-- -- PostgreSQL database dump -- SET statement_timeout = 0; SET client_encoding = 'UTF8'; SET standard_conforming_strings = off; SET check_function_bodies = false; SET client_min_messages = warning; SET escape_string_warning = off; -- -- Name: plpgsql; Type: PROCEDURAL LANGUAGE; Schema: -; Owner: postgres -- CREATE PROCEDURAL LANGUAGE plpgsql; ALTER PROCEDURAL LANGUAGE plpgsql OWNER TO postgres; SET search_path = public, pg_catalog; -- -- Name: add_user(bigint, numeric, integer, integer); Type: FUNCTION; Schema: public; Owner: ibs -- CREATE FUNCTION add_user(bigint, numeric, integer, integer) RETURNS integer LANGUAGE plpgsql AS $_$ DECLARE BEGIN insert into users (user_id, credit, owner_id, group_id) values ($1, $2, $3, $4); return 1; END; $_$; ALTER FUNCTION public.add_user(bigint, numeric, integer, integer) OWNER TO ibs; -- -- Name: change_user_credit(bigint, numeric); Type: FUNCTION; Schema: public; Owner: ibs -- CREATE FUNCTION change_user_credit(bigint, numeric) RETURNS integer LANGUAGE plpgsql AS $_$ DECLARE BEGIN update users set credit = credit + $2 where user_id = $1; return 1; END; $_$; ALTER FUNCTION public.change_user_credit(bigint, numeric) OWNER TO ibs; -- -- Name: delete_group_attr(bigint, text); Type: FUNCTION; Schema: public; Owner: ibs -- CREATE FUNCTION delete_group_attr(bigint, text) RETURNS integer LANGUAGE plpgsql AS $_$ DECLARE BEGIN delete from group_attrs where attr_name = $2 and group_id = $1; return 1; END; $_$; ALTER FUNCTION public.delete_group_attr(bigint, text) OWNER TO ibs; -- -- Name: delete_normal_user(bigint); Type: FUNCTION; Schema: public; Owner: ibs -- CREATE FUNCTION delete_normal_user(bigint) RETURNS integer LANGUAGE plpgsql AS $_$ DECLARE BEGIN delete from normal_users where user_id = $1; return 1; END; $_$; ALTER FUNCTION public.delete_normal_user(bigint) OWNER TO ibs; -- -- Name: delete_user_attr(bigint, text); Type: FUNCTION; Schema: public; Owner: ibs -- CREATE FUNCTION delete_user_attr(bigint, text) RETURNS integer LANGUAGE plpgsql AS $_$ DECLARE BEGIN delete from user_attrs where attr_name = $2 and user_id = $1; return 1; END; $_$; ALTER FUNCTION public.delete_user_attr(bigint, text) OWNER TO ibs; -- -- Name: get_mail_dir(text); Type: FUNCTION; Schema: public; Owner: ibs -- CREATE FUNCTION get_mail_dir(text) RETURNS text LANGUAGE plpgsql AS $_$ DECLARE mail_dir text; BEGIN select into mail_dir email_attr.attr_value||'/' from user_attrs as email_attr where email_attr.attr_name = 'email_address' and email_attr.attr_value = $1 and not exists (select user_attrs.user_id from user_attrs where user_attrs.user_id=email_attr.user_id and user_attrs.attr_name='lock'); return mail_dir; END; $_$; ALTER FUNCTION public.get_mail_dir(text) OWNER TO ibs; -- -- Name: get_mail_quota(text); Type: FUNCTION; Schema: public; Owner: ibs -- CREATE FUNCTION get_mail_quota(text) RETURNS integer LANGUAGE plpgsql AS $_$ DECLARE quota INTEGER; BEGIN select into quota attr_value::integer from user_attrs where attr_name='mail_quota' and exists( select email_attr.user_id from user_attrs as email_attr where user_attrs.user_id=email_attr.user_id and email_attr.attr_name = 'email_address' and email_attr.attr_value = $1); IF NOT FOUND THEN select into quota attr_value::integer from group_attrs where attr_name='mail_quota' and exists( select user_attrs.user_id from user_attrs,users where attr_name='email_address' and attr_value=$1 and user_attrs.user_id=users.user_id and group_attrs.group_id=users.group_id); END IF; return quota; END; $_$; ALTER FUNCTION public.get_mail_quota(text) OWNER TO ibs; -- -- Name: insert_connection_log(bigint, numeric, timestamp without time zone, timestamp without time zone, boolean, smallint, integer, text[], text[]); Type: FUNCTION; Schema: public; Owner: ibs -- CREATE FUNCTION insert_connection_log(bigint, numeric, timestamp without time zone, timestamp without time zone, boolean, smallint, integer, text[], text[]) RETURNS integer LANGUAGE plpgsql AS $_$ DECLARE l_user_id alias for $1; l_credit_used alias for $2; l_login_time alias for $3; l_logout_time alias for $4; l_successful alias for $5; l_service alias for $6; l_ras_id alias for $7; l_names_array alias for $8; l_values_array alias for $9; l_connection_log_id integer; BEGIN l_connection_log_id := nextval('connection_log_id'); insert into connection_log (connection_log_id, user_id, credit_used, login_time, logout_time, successful, service, ras_id) values (l_connection_log_id, l_user_id, l_credit_used, l_login_time, l_logout_time, l_successful, l_service, l_ras_id); FOR i in array_lower(l_names_array,1) .. array_upper(l_names_array,1) LOOP insert into connection_log_details (connection_log_id, name, value) values (l_connection_log_id, l_names_array[i], l_values_array[i]); END LOOP; return 1; END; $_$; ALTER FUNCTION public.insert_connection_log(bigint, numeric, timestamp without time zone, timestamp without time zone, boolean, smallint, integer, text[], text[]) OWNER TO ibs; -- -- Name: insert_group_attr(bigint, text, text); Type: FUNCTION; Schema: public; Owner: ibs -- CREATE FUNCTION insert_group_attr(bigint, text, text) RETURNS integer LANGUAGE plpgsql AS $_$ DECLARE BEGIN insert into group_attrs (group_id, attr_name, attr_value) values($1,$2,$3); return 1; END; $_$; ALTER FUNCTION public.insert_group_attr(bigint, text, text) OWNER TO ibs; -- -- Name: insert_ias_event(bigint, smallint, text, numeric, text, text); Type: FUNCTION; Schema: public; Owner: ibs -- CREATE FUNCTION insert_ias_event(bigint, smallint, text, numeric, text, text) RETURNS integer LANGUAGE plpgsql AS $_$ DECLARE BEGIN insert into ias_event (event_id, event_type, actor, amount, destinations, comment) values ($1, $2, $3, $4, $5, $6); return 1; END; $_$; ALTER FUNCTION public.insert_ias_event(bigint, smallint, text, numeric, text, text) OWNER TO ibs; -- -- Name: insert_normal_user(bigint, text, text); Type: FUNCTION; Schema: public; Owner: ibs -- CREATE FUNCTION insert_normal_user(bigint, text, text) RETURNS integer LANGUAGE plpgsql AS $_$ DECLARE BEGIN insert into normal_users (user_id, normal_username, normal_password) values($1,$2,$3); return 1; END; $_$; ALTER FUNCTION public.insert_normal_user(bigint, text, text) OWNER TO ibs; -- -- Name: insert_user_attr(bigint, text, text); Type: FUNCTION; Schema: public; Owner: ibs -- CREATE FUNCTION insert_user_attr(bigint, text, text) RETURNS integer LANGUAGE plpgsql AS $_$ DECLARE BEGIN insert into user_attrs (user_id, attr_name, attr_value) values($1,$2,$3); return 1; END; $_$; ALTER FUNCTION public.insert_user_attr(bigint, text, text) OWNER TO ibs; -- -- Name: insert_user_audit_log(integer, boolean, bigint, text, text, text); Type: FUNCTION; Schema: public; Owner: ibs -- CREATE FUNCTION insert_user_audit_log(integer, boolean, bigint, text, text, text) RETURNS integer LANGUAGE plpgsql AS $_$ DECLARE BEGIN insert into user_audit_log (admin_id, is_user, object_id, attr_name, old_value, new_value) values ($1, $2, $3, $4, $5, $6); return 1; END; $_$; ALTER FUNCTION public.insert_user_audit_log(integer, boolean, bigint, text, text, text) OWNER TO ibs; -- -- Name: insert_web_analyzer_log(timestamp without time zone, bigint, inet, text, integer, integer, smallint, smallint, smallint, smallint, integer); Type: FUNCTION; Schema: public; Owner: ibs -- CREATE FUNCTION insert_web_analyzer_log(timestamp without time zone, bigint, inet, text, integer, integer, smallint, smallint, smallint, smallint, integer) RETURNS integer LANGUAGE plpgsql AS $_$ DECLARE _id bigint; BEGIN select into _id nextval('web_analyzer_log_log_id'); insert into web_analyzer_log (log_id, _date, user_id, ip_addr, url, elapsed, bytes, miss, hit, successful, failure, _count ) values(_id,$1,$2,$3,$4,$5,$6,$7,$8,$9,$10,$11); return 1; END; $_$; ALTER FUNCTION public.insert_web_analyzer_log(timestamp without time zone, bigint, inet, text, integer, integer, smallint, smallint, smallint, smallint, integer) OWNER TO ibs; -- -- Name: update_group_attr(bigint, text, text); Type: FUNCTION; Schema: public; Owner: ibs -- CREATE FUNCTION update_group_attr(bigint, text, text) RETURNS integer LANGUAGE plpgsql AS $_$ DECLARE BEGIN update group_attrs set attr_value = $3 where attr_name = $2 and group_id = $1; return 1; END; $_$; ALTER FUNCTION public.update_group_attr(bigint, text, text) OWNER TO ibs; -- -- Name: update_normal_user(bigint, text, text); Type: FUNCTION; Schema: public; Owner: ibs -- CREATE FUNCTION update_normal_user(bigint, text, text) RETURNS integer LANGUAGE plpgsql AS $_$ DECLARE BEGIN update normal_users set normal_username = $2, normal_password = $3 where user_id = $1; return 1; END; $_$; ALTER FUNCTION public.update_normal_user(bigint, text, text) OWNER TO ibs; -- -- Name: update_user_attr(bigint, text, text); Type: FUNCTION; Schema: public; Owner: ibs -- CREATE FUNCTION update_user_attr(bigint, text, text) RETURNS integer LANGUAGE plpgsql AS $_$ DECLARE BEGIN update user_attrs set attr_value = $3 where attr_name = $2 and user_id = $1; return 1; END; $_$; ALTER FUNCTION public.update_user_attr(bigint, text, text) OWNER TO ibs; SET default_tablespace = ''; SET default_with_oids = false; -- -- Name: add_user_save_details; Type: TABLE; Schema: public; Owner: ibs; Tablespace: -- CREATE TABLE add_user_save_details ( add_user_save_id integer NOT NULL, user_id bigint NOT NULL, username text, password text ); ALTER TABLE public.add_user_save_details OWNER TO ibs; -- -- Name: add_user_save_id_seq; Type: SEQUENCE; Schema: public; Owner: ibs -- CREATE SEQUENCE add_user_save_id_seq START WITH 1 INCREMENT BY 1 NO MAXVALUE NO MINVALUE CACHE 1; ALTER TABLE public.add_user_save_id_seq OWNER TO ibs; -- -- Name: add_user_save_id_seq; Type: SEQUENCE SET; Schema: public; Owner: ibs -- SELECT pg_catalog.setval('add_user_save_id_seq', 1, false); -- -- Name: add_user_saves; Type: TABLE; Schema: public; Owner: ibs; Tablespace: -- CREATE TABLE add_user_saves ( add_user_save_id integer NOT NULL, add_date timestamp without time zone DEFAULT now(), admin_id integer, type integer, comment text ); ALTER TABLE public.add_user_saves OWNER TO ibs; -- -- Name: admin_deposit_change; Type: TABLE; Schema: public; Owner: ibs; Tablespace: -- CREATE TABLE admin_deposit_change ( admin_deposit_change_id integer NOT NULL, admin_id integer, to_admin_id integer, deposit_change numeric(12,2), change_time timestamp without time zone DEFAULT now(), remote_addr inet, comment text ); ALTER TABLE public.admin_deposit_change OWNER TO ibs; -- -- Name: admin_deposit_change_id; Type: SEQUENCE; Schema: public; Owner: ibs -- CREATE SEQUENCE admin_deposit_change_id START WITH 1 INCREMENT BY 1 NO MAXVALUE NO MINVALUE CACHE 1; ALTER TABLE public.admin_deposit_change_id OWNER TO ibs; -- -- Name: admin_deposit_change_id; Type: SEQUENCE SET; Schema: public; Owner: ibs -- SELECT pg_catalog.setval('admin_deposit_change_id', 2, true); -- -- Name: admin_locks; Type: TABLE; Schema: public; Owner: ibs; Tablespace: -- CREATE TABLE admin_locks ( lock_id bigint NOT NULL, locker_admin_id integer, admin_id integer, reason text ); ALTER TABLE public.admin_locks OWNER TO ibs; -- -- Name: admin_locks_lock_id_seq; Type: SEQUENCE; Schema: public; Owner: ibs -- CREATE SEQUENCE admin_locks_lock_id_seq START WITH 1 INCREMENT BY 1 NO MAXVALUE NO MINVALUE CACHE 1; ALTER TABLE public.admin_locks_lock_id_seq OWNER TO ibs; -- -- Name: admin_locks_lock_id_seq; Type: SEQUENCE SET; Schema: public; Owner: ibs -- SELECT pg_catalog.setval('admin_locks_lock_id_seq', 1, false); -- -- Name: admin_messages; Type: TABLE; Schema: public; Owner: ibs; Tablespace: -- CREATE TABLE admin_messages ( message_id bigint NOT NULL, user_id bigint, message_text text, post_date timestamp without time zone DEFAULT now() ); ALTER TABLE public.admin_messages OWNER TO ibs; -- -- Name: admin_messages_message_id; Type: SEQUENCE; Schema: public; Owner: ibs -- CREATE SEQUENCE admin_messages_message_id START WITH 1 INCREMENT BY 1 NO MAXVALUE NO MINVALUE CACHE 1; ALTER TABLE public.admin_messages_message_id OWNER TO ibs; -- -- Name: admin_messages_message_id; Type: SEQUENCE SET; Schema: public; Owner: ibs -- SELECT pg_catalog.setval('admin_messages_message_id', 1, false); -- -- Name: admin_perm_template_id; Type: SEQUENCE; Schema: public; Owner: ibs -- CREATE SEQUENCE admin_perm_template_id START WITH 1 INCREMENT BY 1 NO MAXVALUE NO MINVALUE CACHE 1; ALTER TABLE public.admin_perm_template_id OWNER TO ibs; -- -- Name: admin_perm_template_id; Type: SEQUENCE SET; Schema: public; Owner: ibs -- SELECT pg_catalog.setval('admin_perm_template_id', 1, false); -- -- Name: admin_perm_templates; Type: TABLE; Schema: public; Owner: ibs; Tablespace: -- CREATE TABLE admin_perm_templates ( template_id integer NOT NULL, template_name text ); ALTER TABLE public.admin_perm_templates OWNER TO ibs; -- -- Name: admin_perm_templates_detail; Type: TABLE; Schema: public; Owner: ibs; Tablespace: -- CREATE TABLE admin_perm_templates_detail ( template_id integer NOT NULL, perm_name text NOT NULL, perm_value text ); ALTER TABLE public.admin_perm_templates_detail OWNER TO ibs; -- -- Name: admin_perms; Type: TABLE; Schema: public; Owner: ibs; Tablespace: -- CREATE TABLE admin_perms ( admin_id integer NOT NULL, perm_name text NOT NULL, perm_value text ); ALTER TABLE public.admin_perms OWNER TO ibs; -- -- Name: admins; Type: TABLE; Schema: public; Owner: ibs; Tablespace: -- CREATE TABLE admins ( admin_id integer NOT NULL, username text, password character(34), deposit numeric(12,2) DEFAULT 0, due numeric(12,2) DEFAULT 0, name text, comment text, creator_id integer ); ALTER TABLE public.admins OWNER TO ibs; -- -- Name: admins_extended_attrs; Type: TABLE; Schema: public; Owner: ibs; Tablespace: -- CREATE TABLE admins_extended_attrs ( admin_id integer NOT NULL, attr_name text NOT NULL, attr_value text ); ALTER TABLE public.admins_extended_attrs OWNER TO ibs; -- -- Name: admins_id_seq; Type: SEQUENCE; Schema: public; Owner: ibs -- CREATE SEQUENCE admins_id_seq START WITH 1 INCREMENT BY 1 NO MAXVALUE NO MINVALUE CACHE 1; ALTER TABLE public.admins_id_seq OWNER TO ibs; -- -- Name: admins_id_seq; Type: SEQUENCE SET; Schema: public; Owner: ibs -- SELECT pg_catalog.setval('admins_id_seq', 2, true); -- -- Name: bw_interface; Type: TABLE; Schema: public; Owner: ibs; Tablespace: -- CREATE TABLE bw_interface ( interface_id integer NOT NULL, interface_name text, comment text ); ALTER TABLE public.bw_interface OWNER TO ibs; -- -- Name: bw_interface_interface_id_seq; Type: SEQUENCE; Schema: public; Owner: ibs -- CREATE SEQUENCE bw_interface_interface_id_seq START WITH 1 INCREMENT BY 1 NO MAXVALUE NO MINVALUE CACHE 1; ALTER TABLE public.bw_interface_interface_id_seq OWNER TO ibs; -- -- Name: bw_interface_interface_id_seq; Type: SEQUENCE SET; Schema: public; Owner: ibs -- SELECT pg_catalog.setval('bw_interface_interface_id_seq', 1, false); -- -- Name: bw_leaf; Type: TABLE; Schema: public; Owner: ibs; Tablespace: -- CREATE TABLE bw_leaf ( leaf_id integer NOT NULL, leaf_name text, interface_id integer, parent_id integer, default_rate_kbits integer, default_ceil_kbits integer, total_rate_kbits integer, total_ceil_kbits integer ); ALTER TABLE public.bw_leaf OWNER TO ibs; -- -- Name: bw_leaf_leaf_id_seq; Type: SEQUENCE; Schema: public; Owner: ibs -- CREATE SEQUENCE bw_leaf_leaf_id_seq START WITH 1 INCREMENT BY 1 NO MAXVALUE NO MINVALUE CACHE 1; ALTER TABLE public.bw_leaf_leaf_id_seq OWNER TO ibs; -- -- Name: bw_leaf_leaf_id_seq; Type: SEQUENCE SET; Schema: public; Owner: ibs -- SELECT pg_catalog.setval('bw_leaf_leaf_id_seq', 1, false); -- -- Name: bw_leaf_services; Type: TABLE; Schema: public; Owner: ibs; Tablespace: -- CREATE TABLE bw_leaf_services ( leaf_service_id integer NOT NULL, leaf_id integer, protocol text, filter text, rate_kbits integer, ceil_kbits integer ); ALTER TABLE public.bw_leaf_services OWNER TO ibs; -- -- Name: bw_leaf_services_leaf_service_id_seq; Type: SEQUENCE; Schema: public; Owner: ibs -- CREATE SEQUENCE bw_leaf_services_leaf_service_id_seq START WITH 1 INCREMENT BY 1 NO MAXVALUE NO MINVALUE CACHE 1; ALTER TABLE public.bw_leaf_services_leaf_service_id_seq OWNER TO ibs; -- -- Name: bw_leaf_services_leaf_service_id_seq; Type: SEQUENCE SET; Schema: public; Owner: ibs -- SELECT pg_catalog.setval('bw_leaf_services_leaf_service_id_seq', 1, false); -- -- Name: bw_node; Type: TABLE; Schema: public; Owner: ibs; Tablespace: -- CREATE TABLE bw_node ( node_id integer NOT NULL, interface_id integer, parent_id integer, rate_kbits integer, ceil_kbits integer ); ALTER TABLE public.bw_node OWNER TO ibs; -- -- Name: bw_node_node_id_seq; Type: SEQUENCE; Schema: public; Owner: ibs -- CREATE SEQUENCE bw_node_node_id_seq START WITH 1 INCREMENT BY 1 NO MAXVALUE NO MINVALUE CACHE 1; ALTER TABLE public.bw_node_node_id_seq OWNER TO ibs; -- -- Name: bw_node_node_id_seq; Type: SEQUENCE SET; Schema: public; Owner: ibs -- SELECT pg_catalog.setval('bw_node_node_id_seq', 1, false); -- -- Name: bw_static_ip; Type: TABLE; Schema: public; Owner: ibs; Tablespace: -- CREATE TABLE bw_static_ip ( bw_static_ip_id integer NOT NULL, ip inet, transmit_leaf_id integer, receive_leaf_id integer ); ALTER TABLE public.bw_static_ip OWNER TO ibs; -- -- Name: bw_static_ip_bw_static_ip_id_seq; Type: SEQUENCE; Schema: public; Owner: ibs -- CREATE SEQUENCE bw_static_ip_bw_static_ip_id_seq START WITH 1 INCREMENT BY 1 NO MAXVALUE NO MINVALUE CACHE 1; ALTER TABLE public.bw_static_ip_bw_static_ip_id_seq OWNER TO ibs; -- -- Name: bw_static_ip_bw_static_ip_id_seq; Type: SEQUENCE SET; Schema: public; Owner: ibs -- SELECT pg_catalog.setval('bw_static_ip_bw_static_ip_id_seq', 1, false); -- -- Name: caller_id_users; Type: TABLE; Schema: public; Owner: ibs; Tablespace: -- CREATE TABLE caller_id_users ( user_id bigint, caller_id text NOT NULL ); ALTER TABLE public.caller_id_users OWNER TO ibs; -- -- Name: charge_rule_day_of_weeks; Type: TABLE; Schema: public; Owner: ibs; Tablespace: -- CREATE TABLE charge_rule_day_of_weeks ( charge_rule_id integer NOT NULL, day_of_week integer NOT NULL ); ALTER TABLE public.charge_rule_day_of_weeks OWNER TO ibs; -- -- Name: charge_rule_ports; Type: TABLE; Schema: public; Owner: ibs; Tablespace: -- CREATE TABLE charge_rule_ports ( charge_rule_id integer NOT NULL, ras_port text NOT NULL ); ALTER TABLE public.charge_rule_ports OWNER TO ibs; -- -- Name: charge_rules; Type: TABLE; Schema: public; Owner: ibs; Tablespace: -- CREATE TABLE charge_rules ( charge_id integer, charge_rule_id integer NOT NULL, start_time time without time zone, end_time time without time zone, time_limit integer, ras_id integer ); ALTER TABLE public.charge_rules OWNER TO ibs; -- -- Name: charge_rules_id_seq; Type: SEQUENCE; Schema: public; Owner: ibs -- CREATE SEQUENCE charge_rules_id_seq START WITH 1 INCREMENT BY 1 NO MAXVALUE NO MINVALUE CACHE 1; ALTER TABLE public.charge_rules_id_seq OWNER TO ibs; -- -- Name: charge_rules_id_seq; Type: SEQUENCE SET; Schema: public; Owner: ibs -- SELECT pg_catalog.setval('charge_rules_id_seq', 1, true); -- -- Name: charges; Type: TABLE; Schema: public; Owner: ibs; Tablespace: -- CREATE TABLE charges ( charge_id integer NOT NULL, name text, charge_type text, comment text, admin_id integer, visible_to_all boolean DEFAULT false ); ALTER TABLE public.charges OWNER TO ibs; -- -- Name: charges_id_seq; Type: SEQUENCE; Schema: public; Owner: ibs -- CREATE SEQUENCE charges_id_seq START WITH 1 INCREMENT BY 1 NO MAXVALUE NO MINVALUE CACHE 1; ALTER TABLE public.charges_id_seq OWNER TO ibs; -- -- Name: charges_id_seq; Type: SEQUENCE SET; Schema: public; Owner: ibs -- SELECT pg_catalog.setval('charges_id_seq', 1, true); -- -- Name: connection_log; Type: TABLE; Schema: public; Owner: ibs; Tablespace: -- CREATE TABLE connection_log ( connection_log_id bigint NOT NULL, user_id bigint, credit_used numeric(12,2), login_time timestamp without time zone, logout_time timestamp without time zone, successful boolean, service smallint, ras_id integer ); ALTER TABLE public.connection_log OWNER TO ibs; -- -- Name: connection_log_details; Type: TABLE; Schema: public; Owner: ibs; Tablespace: -- CREATE TABLE connection_log_details ( connection_log_id bigint NOT NULL, name text NOT NULL, value text ); ALTER TABLE public.connection_log_details OWNER TO ibs; -- -- Name: connection_log_id; Type: SEQUENCE; Schema: public; Owner: ibs -- CREATE SEQUENCE connection_log_id START WITH 1 INCREMENT BY 1 NO MAXVALUE NO MINVALUE CACHE 1; ALTER TABLE public.connection_log_id OWNER TO ibs; -- -- Name: connection_log_id; Type: SEQUENCE SET; Schema: public; Owner: ibs -- SELECT pg_catalog.setval('connection_log_id', 216706, true); -- -- Name: credit_change; Type: TABLE; Schema: public; Owner: ibs; Tablespace: -- CREATE TABLE credit_change ( credit_change_id bigint NOT NULL, admin_id integer, action smallint, per_user_credit numeric(12,2), admin_credit numeric(12,2), change_time timestamp without time zone DEFAULT now(), remote_addr inet, comment text ); ALTER TABLE public.credit_change OWNER TO ibs; -- -- Name: credit_change_id; Type: SEQUENCE; Schema: public; Owner: ibs -- CREATE SEQUENCE credit_change_id START WITH 1 INCREMENT BY 1 NO MAXVALUE NO MINVALUE CACHE 1; ALTER TABLE public.credit_change_id OWNER TO ibs; -- -- Name: credit_change_id; Type: SEQUENCE SET; Schema: public; Owner: ibs -- SELECT pg_catalog.setval('credit_change_id', 538, true); -- -- Name: credit_change_userid; Type: TABLE; Schema: public; Owner: ibs; Tablespace: -- CREATE TABLE credit_change_userid ( credit_change_id bigint NOT NULL, user_id bigint NOT NULL ); ALTER TABLE public.credit_change_userid OWNER TO ibs; -- -- Name: defs; Type: TABLE; Schema: public; Owner: ibs; Tablespace: -- CREATE TABLE defs ( name text NOT NULL, value text, type text ); ALTER TABLE public.defs OWNER TO ibs; -- -- Name: group_attrs; Type: TABLE; Schema: public; Owner: ibs; Tablespace: -- CREATE TABLE group_attrs ( group_id integer NOT NULL, attr_name text NOT NULL, attr_value text ); ALTER TABLE public.group_attrs OWNER TO ibs; -- -- Name: groups; Type: TABLE; Schema: public; Owner: ibs; Tablespace: -- CREATE TABLE groups ( group_id integer NOT NULL, group_name text, owner_id integer, comment text ); ALTER TABLE public.groups OWNER TO ibs; -- -- Name: groups_group_id_seq; Type: SEQUENCE; Schema: public; Owner: ibs -- CREATE SEQUENCE groups_group_id_seq START WITH 1 INCREMENT BY 1 NO MAXVALUE NO MINVALUE CACHE 1; ALTER TABLE public.groups_group_id_seq OWNER TO ibs; -- -- Name: groups_group_id_seq; Type: SEQUENCE SET; Schema: public; Owner: ibs -- SELECT pg_catalog.setval('groups_group_id_seq', 5, true); -- -- Name: ias_event; Type: TABLE; Schema: public; Owner: ibs; Tablespace: -- CREATE TABLE ias_event ( event_id bigint NOT NULL, event_type smallint, event_date timestamp without time zone DEFAULT now(), actor text, amount numeric(12,2), destinations text, comment text ); ALTER TABLE public.ias_event OWNER TO ibs; -- -- Name: ias_event_event_id; Type: SEQUENCE; Schema: public; Owner: ibs -- CREATE SEQUENCE ias_event_event_id START WITH 1 INCREMENT BY 1 NO MAXVALUE NO MINVALUE CACHE 1; ALTER TABLE public.ias_event_event_id OWNER TO ibs; -- -- Name: ias_event_event_id; Type: SEQUENCE SET; Schema: public; Owner: ibs -- SELECT pg_catalog.setval('ias_event_event_id', 1, false); -- -- Name: ias_event_extended; Type: TABLE; Schema: public; Owner: ibs; Tablespace: -- CREATE TABLE ias_event_extended ( event_id bigint NOT NULL, name text NOT NULL, value text ); ALTER TABLE public.ias_event_extended OWNER TO ibs; -- -- Name: ibs_states; Type: TABLE; Schema: public; Owner: ibs; Tablespace: -- CREATE TABLE ibs_states ( name text NOT NULL, value text ); ALTER TABLE public.ibs_states OWNER TO ibs; -- -- Name: internet_bw_snapshot; Type: TABLE; Schema: public; Owner: ibs; Tablespace: -- CREATE TABLE internet_bw_snapshot ( snp_date timestamp without time zone DEFAULT now() NOT NULL, user_id integer NOT NULL, in_rate integer, out_rate integer ); ALTER TABLE public.internet_bw_snapshot OWNER TO ibs; -- -- Name: internet_charge_rules; Type: TABLE; Schema: public; Owner: ibs; Tablespace: -- CREATE TABLE internet_charge_rules ( cpm numeric(12,2), cpk numeric(12,2), assumed_kps integer, bandwidth_limit_kbytes integer DEFAULT (-1), bw_transmit_leaf_id integer, bw_receive_leaf_id integer ) INHERITS (charge_rules); ALTER TABLE public.internet_charge_rules OWNER TO ibs; -- -- Name: internet_onlines_snapshot; Type: TABLE; Schema: public; Owner: ibs; Tablespace: -- CREATE TABLE internet_onlines_snapshot ( snp_date timestamp without time zone DEFAULT now() NOT NULL, ras_id integer NOT NULL, value integer ); ALTER TABLE public.internet_onlines_snapshot OWNER TO ibs; -- -- Name: ippool; Type: TABLE; Schema: public; Owner: ibs; Tablespace: -- CREATE TABLE ippool ( ippool_id integer NOT NULL, ippool_name text, ippool_comment text ); ALTER TABLE public.ippool OWNER TO ibs; -- -- Name: ippool_id_seq; Type: SEQUENCE; Schema: public; Owner: ibs -- CREATE SEQUENCE ippool_id_seq START WITH 1 INCREMENT BY 1 NO MAXVALUE NO MINVALUE CACHE 1; ALTER TABLE public.ippool_id_seq OWNER TO ibs; -- -- Name: ippool_id_seq; Type: SEQUENCE SET; Schema: public; Owner: ibs -- SELECT pg_catalog.setval('ippool_id_seq', 1, false); -- -- Name: ippool_ips; Type: TABLE; Schema: public; Owner: ibs; Tablespace: -- CREATE TABLE ippool_ips ( ippool_id integer NOT NULL, ip inet NOT NULL ); ALTER TABLE public.ippool_ips OWNER TO ibs; -- -- Name: normal_users; Type: TABLE; Schema: public; Owner: ibs; Tablespace: -- CREATE TABLE normal_users ( user_id bigint, normal_username text, normal_password text ); ALTER TABLE public.normal_users OWNER TO ibs; -- -- Name: persistent_lan_users; Type: TABLE; Schema: public; Owner: ibs; Tablespace: -- CREATE TABLE persistent_lan_users ( user_id bigint, persistent_lan_mac macaddr NOT NULL, persistent_lan_ip cidr NOT NULL, persistent_lan_ras_id integer ); ALTER TABLE public.persistent_lan_users OWNER TO ibs; -- -- Name: ras; Type: TABLE; Schema: public; Owner: ibs; Tablespace: -- CREATE TABLE ras ( ras_id integer NOT NULL, ras_description text, ras_ip inet, ras_type text, radius_secret text, active boolean DEFAULT true, comment text ); ALTER TABLE public.ras OWNER TO ibs; -- -- Name: ras_attrs; Type: TABLE; Schema: public; Owner: ibs; Tablespace: -- CREATE TABLE ras_attrs ( ras_id integer NOT NULL, attr_name text NOT NULL, attr_value text ); ALTER TABLE public.ras_attrs OWNER TO ibs; -- -- Name: ras_id_seq; Type: SEQUENCE; Schema: public; Owner: ibs -- CREATE SEQUENCE ras_id_seq START WITH 1 INCREMENT BY 1 NO MAXVALUE NO MINVALUE CACHE 1; ALTER TABLE public.ras_id_seq OWNER TO ibs; -- -- Name: ras_id_seq; Type: SEQUENCE SET; Schema: public; Owner: ibs -- SELECT pg_catalog.setval('ras_id_seq', 4, true); -- -- Name: ras_ippools; Type: TABLE; Schema: public; Owner: ibs; Tablespace: -- CREATE TABLE ras_ippools ( serial integer NOT NULL, ras_id integer, ippool_id integer ); ALTER TABLE public.ras_ippools OWNER TO ibs; -- -- Name: ras_ippools_serial_seq; Type: SEQUENCE; Schema: public; Owner: ibs -- CREATE SEQUENCE ras_ippools_serial_seq START WITH 1 INCREMENT BY 1 NO MAXVALUE NO MINVALUE CACHE 1; ALTER TABLE public.ras_ippools_serial_seq OWNER TO ibs; -- -- Name: ras_ippools_serial_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: ibs -- ALTER SEQUENCE ras_ippools_serial_seq OWNED BY ras_ippools.serial; -- -- Name: ras_ippools_serial_seq; Type: SEQUENCE SET; Schema: public; Owner: ibs -- SELECT pg_catalog.setval('ras_ippools_serial_seq', 1, false); -- -- Name: ras_ports; Type: TABLE; Schema: public; Owner: ibs; Tablespace: -- CREATE TABLE ras_ports ( ras_id integer NOT NULL, port_name text NOT NULL, phone text, type text, comment text ); ALTER TABLE public.ras_ports OWNER TO ibs; -- -- Name: tariff_prefix_list; Type: TABLE; Schema: public; Owner: ibs; Tablespace: -- CREATE TABLE tariff_prefix_list ( tariff_id integer, prefix_id integer NOT NULL, prefix_code text, prefix_name text, cpm numeric(12,2), free_seconds smallint, min_duration smallint, round_to smallint, min_chargable_duration smallint ); ALTER TABLE public.tariff_prefix_list OWNER TO ibs; -- -- Name: tariff_prefix_list_tariff_id_seq; Type: SEQUENCE; Schema: public; Owner: ibs -- CREATE SEQUENCE tariff_prefix_list_tariff_id_seq START WITH 1 INCREMENT BY 1 NO MAXVALUE NO MINVALUE CACHE 1; ALTER TABLE public.tariff_prefix_list_tariff_id_seq OWNER TO ibs; -- -- Name: tariff_prefix_list_tariff_id_seq; Type: SEQUENCE SET; Schema: public; Owner: ibs -- SELECT pg_catalog.setval('tariff_prefix_list_tariff_id_seq', 1, false); -- -- Name: user_attrs; Type: TABLE; Schema: public; Owner: ibs; Tablespace: -- CREATE TABLE user_attrs ( user_id bigint NOT NULL, attr_name text NOT NULL, attr_value text ); ALTER TABLE public.user_attrs OWNER TO ibs; -- -- Name: user_audit_log; Type: TABLE; Schema: public; Owner: ibs; Tablespace: -- CREATE TABLE user_audit_log ( user_audit_log integer NOT NULL, admin_id integer, is_user boolean, object_id bigint, attr_name text, old_value text, new_value text, change_time timestamp without time zone DEFAULT now() ); ALTER TABLE public.user_audit_log OWNER TO ibs; -- -- Name: user_audit_log_user_audit_log_seq; Type: SEQUENCE; Schema: public; Owner: ibs -- CREATE SEQUENCE user_audit_log_user_audit_log_seq START WITH 1 INCREMENT BY 1 NO MAXVALUE NO MINVALUE CACHE 1; ALTER TABLE public.user_audit_log_user_audit_log_seq OWNER TO ibs; -- -- Name: user_audit_log_user_audit_log_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: ibs -- ALTER SEQUENCE user_audit_log_user_audit_log_seq OWNED BY user_audit_log.user_audit_log; -- -- Name: user_audit_log_user_audit_log_seq; Type: SEQUENCE SET; Schema: public; Owner: ibs -- SELECT pg_catalog.setval('user_audit_log_user_audit_log_seq', 877, true); -- -- Name: user_messages; Type: TABLE; Schema: public; Owner: ibs; Tablespace: -- CREATE TABLE user_messages ( message_id bigint NOT NULL, user_id bigint, message_text text, post_date timestamp without time zone DEFAULT now() ); ALTER TABLE public.user_messages OWNER TO ibs; -- -- Name: user_messages_message_id; Type: SEQUENCE; Schema: public; Owner: ibs -- CREATE SEQUENCE user_messages_message_id START WITH 1 INCREMENT BY 1 NO MAXVALUE NO MINVALUE CACHE 1; ALTER TABLE public.user_messages_message_id OWNER TO ibs; -- -- Name: user_messages_message_id; Type: SEQUENCE SET; Schema: public; Owner: ibs -- SELECT pg_catalog.setval('user_messages_message_id', 1, false); -- -- Name: users; Type: TABLE; Schema: public; Owner: ibs; Tablespace: -- CREATE TABLE users ( user_id bigint NOT NULL, owner_id integer, credit numeric(12,2), group_id integer, creation_date timestamp without time zone DEFAULT now() ); ALTER TABLE public.users OWNER TO ibs; -- -- Name: users_user_id_seq; Type: SEQUENCE; Schema: public; Owner: ibs -- CREATE SEQUENCE users_user_id_seq START WITH 1 INCREMENT BY 1 NO MAXVALUE NO MINVALUE CACHE 1; ALTER TABLE public.users_user_id_seq OWNER TO ibs; -- -- Name: users_user_id_seq; Type: SEQUENCE SET; Schema: public; Owner: ibs -- SELECT pg_catalog.setval('users_user_id_seq', 789, true); -- -- Name: voip_charge_rule_tariff; Type: TABLE; Schema: public; Owner: ibs; Tablespace: -- CREATE TABLE voip_charge_rule_tariff ( tariff_id integer NOT NULL, tariff_name text, comment text ); ALTER TABLE public.voip_charge_rule_tariff OWNER TO ibs; -- -- Name: voip_charge_rule_tariff_tariff_id_seq; Type: SEQUENCE; Schema: public; Owner: ibs -- CREATE SEQUENCE voip_charge_rule_tariff_tariff_id_seq START WITH 1 INCREMENT BY 1 NO MAXVALUE NO MINVALUE CACHE 1; ALTER TABLE public.voip_charge_rule_tariff_tariff_id_seq OWNER TO ibs; -- -- Name: voip_charge_rule_tariff_tariff_id_seq; Type: SEQUENCE SET; Schema: public; Owner: ibs -- SELECT pg_catalog.setval('voip_charge_rule_tariff_tariff_id_seq', 1, false); -- -- Name: voip_charge_rules; Type: TABLE; Schema: public; Owner: ibs; Tablespace: -- CREATE TABLE voip_charge_rules ( tariff_id integer ) INHERITS (charge_rules); ALTER TABLE public.voip_charge_rules OWNER TO ibs; -- -- Name: voip_onlines_snapshot; Type: TABLE; Schema: public; Owner: ibs; Tablespace: -- CREATE TABLE voip_onlines_snapshot ( snp_date timestamp without time zone DEFAULT now() NOT NULL, ras_id integer NOT NULL, value integer ); ALTER TABLE public.voip_onlines_snapshot OWNER TO ibs; -- -- Name: voip_users; Type: TABLE; Schema: public; Owner: ibs; Tablespace: -- CREATE TABLE voip_users ( user_id bigint, voip_username text, voip_password text ); ALTER TABLE public.voip_users OWNER TO ibs; -- -- Name: web_analyzer_log; Type: TABLE; Schema: public; Owner: ibs; Tablespace: -- CREATE TABLE web_analyzer_log ( log_id bigint NOT NULL, _date timestamp without time zone DEFAULT now(), user_id bigint, ip_addr inet, url text, elapsed integer, bytes integer, miss smallint, hit smallint, successful smallint, failure smallint, _count integer ); ALTER TABLE public.web_analyzer_log OWNER TO ibs; -- -- Name: web_analyzer_log_log_id; Type: SEQUENCE; Schema: public; Owner: ibs -- CREATE SEQUENCE web_analyzer_log_log_id START WITH 1 INCREMENT BY 1 NO MAXVALUE NO MINVALUE CACHE 1; ALTER TABLE public.web_analyzer_log_log_id OWNER TO ibs; -- -- Name: web_analyzer_log_log_id; Type: SEQUENCE SET; Schema: public; Owner: ibs -- SELECT pg_catalog.setval('web_analyzer_log_log_id', 1, false); -- -- Name: serial; Type: DEFAULT; Schema: public; Owner: ibs -- ALTER TABLE ONLY ras_ippools ALTER COLUMN serial SET DEFAULT nextval('ras_ippools_serial_seq'::regclass); -- -- Name: user_audit_log; Type: DEFAULT; Schema: public; Owner: ibs -- ALTER TABLE ONLY user_audit_log ALTER COLUMN user_audit_log SET DEFAULT nextval('user_audit_log_user_audit_log_seq'::regclass); -- -- Data for Name: add_user_save_details; Type: TABLE DATA; Schema: public; Owner: ibs -- COPY add_user_save_details (add_user_save_id, user_id, username, password) FROM stdin; 117 116 erfankh2013 erfan 122 121 pn8 00 161 160 esi 123 182 181 hedi 123 189 188 210 112233 191 190 samin4813m samin4813m 211 205 farshid 7226 211 206 dehghan 7299 211 207 nazanin 4726 211 208 shahmohammadi 7472 211 209 kasra 8880 211 210 aminsaeedi 09135965595 215 212 alinezhad 6259 215 213 mohammadi 4042 215 214 ali 0182 219 216 ksr ksr123 219 217 alirezazamani Alireza 219 218 mobina mob123 221 220 aminvpn amin1445 225 224 nader 3291 227 226 naader 3291 229 228 heydari 7882 231 230 rashidi 4690 233 232 iranmanesh 7338 235 234 zoha 2141 237 236 mahdi 5541 240 239 arshida 7731 242 241 najafi 0939 244 243 reza 0496 246 245 tahani 8945 248 247 ahmadi 8441 250 249 golmahammad 7651 281 251 amin.insta01 rvd6pv 281 252 amin.insta02 ts23dr 281 253 amin.insta03 cqitqk 281 254 amin.insta04 ahizcw 281 255 amin.insta05 3d5wy4 281 256 amin.insta06 5dx4mi 281 257 amin.insta07 yj75pu 281 258 amin.insta08 wa5ja5 281 259 amin.insta09 yd9snm 281 260 amin.insta10 f9j94u 281 261 amin.insta11 vasfuu 281 262 amin.insta12 rpumjd 281 263 amin.insta13 7nt5ta 281 264 amin.insta14 wsukbc 281 265 amin.insta15 ubkrpc 281 266 amin.insta16 mzfi8a 281 267 amin.insta17 23v73q 281 268 amin.insta18 vvferm 281 269 amin.insta19 jjr76z 281 270 amin.insta20 p4feum 281 271 amin.insta21 u6jpm7 281 272 amin.insta22 v5suqc 281 273 amin.insta23 b5uzuy 281 274 amin.insta24 g4d3ib 281 275 amin.insta25 zakbm5 281 276 amin.insta26 kk4uf3 281 277 amin.insta27 2npbmp 281 278 amin.insta28 kmqkmj 281 279 amin.insta29 fnzn8w 281 280 amin.insta30 f96jhw 283 282 sekonji 6572 285 284 samira 1990887 287 286 hamideh 353086 289 288 asadi 9428 291 290 reza2742 2742 293 292 arabpour 3868 295 294 mahbobeh 8264 297 296 ahmadipour 8593 299 298 rafiei 9266 301 300 rafieii 9266 303 302 pouria 9683 305 304 soleymani 5094 307 306 forozande 3622 309 308 abdilahyar 7381 313 312 mahdavi 1588 315 314 shahriyar 3239 317 316 amine 1002 319 318 shahnaz 7619 321 320 madadi 8055 323 322 majid 5560 326 325 alireza 3754 328 327 amir 4935 330 329 kazemi 0502 332 331 avaanna 8408 334 333 mamal 6940 336 335 amirhosein 5591 338 337 ebrahimi 8307 340 339 shahrooz 2244 342 341 haniyeh 6536 344 343 afarin 0023 348 347 omidsafari 1148 350 349 kamali 6960 352 351 shokokian 4048 354 353 mohammadaskari 0082 356 355 heydari 7882 358 357 arman 1621 360 359 mrg 1568 362 361 amirabbas 1339 364 363 farhad 3232 366 365 amirreza 4691 369 368 mitra 9839 371 370 rasoul 6386 374 373 shojaei 8862 376 375 jamali 3350 378 377 shirin 6961 380 379 khalili 3788 382 381 heydarizadeh 5541 384 383 salimi 4727 389 388 kharazmi 7752 391 390 sharifzadeh 1002 394 393 musanejad 4081 396 395 bcboard bc1445 399 398 alemzadeh 2862 401 400 madadi2 8055 403 402 alireza1 2931 409 408 mansur 2491 413 412 mirzaei 6046 415 414 mohammadali 9820 417 416 alipour 1506 419 418 karamozian 8798 421 420 askari 7200 423 422 tahmasebi 1616 425 424 hashtadani 8732 427 426 mhamidreza81 6462 429 428 mohammadreza 6462 431 430 morteza 4424 433 432 alihosseini 9128 435 434 safarpour 0638 437 436 mahyaarabpour 3606 439 438 shahnaznegarestani 7619 442 441 dehghani 5044 444 443 hamidehfatemi 0050 446 445 mehdizare 0816 448 447 fallahi 3914 450 449 hoorieh 2821 452 451 mohammadmahdi 8179 455 454 heydari1 7882 457 456 mahdiyehalizadeh 2194 463 462 arman1 1621 465 464 abbasaskari 4622 467 466 rasoul56 6756 469 468 farhad1 3232 471 470 musa 8746 473 472 rezasekonji 0496 475 474 kamali1 6960 478 477 mehran 6147 480 479 minaghorbani 5106 482 481 malekpoir 0185 484 483 arash 3837 486 485 houshang 7617 489 488 hamid 1430 491 490 rajaei 4258 500 499 afarin1 0023 502 501 zare 0753 504 503 naeimeh 2999 507 506 seyedmostafa 5980 511 510 ayobi 8973 513 512 kordestani 8006 515 514 mosi 6862 517 516 mohammadjavad 1530 519 518 abravesh 9078 521 520 sedighe 2395 523 522 hashtadani3 8732 527 526 ehsun 4060 529 528 alihosseini1 9128 535 534 mohammadi1 7446 537 536 irannezhad 2283 539 538 sabaghnezhad 4405 541 540 mars 1007 543 542 rostami 1757 546 545 rezaei 8208 549 548 roka 8487 552 551 milan 5983 555 554 Mahin 4774 557 556 hamidsalari 7456 559 558 hamidsalari1 7456 561 560 mobit 1234 563 562 barzegar 4774 565 564 hosseine 1816 567 566 jafari 9816 569 568 mohsenaskari 3588 571 570 moradi 8595 573 572 ebrahimi2 8373 575 574 mansour 9414 577 576 rahmani 7631 579 578 khademi 3291 582 581 saeed9658 9658 584 583 yahodi 2073 586 585 vanila 4042 588 587 farhad2 3232 590 589 kamali2 6960 592 591 godarzi 2316 594 593 yarmohamadi 7916 596 595 sekonji3 0496 598 597 forozandeh1 3622 600 599 zotaher 6507 608 607 alikomsari 0239 610 609 hassan 1087 612 611 yaghobi 7322 614 613 mehrpouyan 7228 616 615 meysam 3891 618 617 hasanahmadi 6288 620 619 kalantary 6037 624 623 hashtadani4 8732 626 625 nilufarrajaei 3445 628 627 rahim 2503 630 629 sarcheshmepour 3205 632 631 ahmadi1 8441 634 633 hadibarzegar 5587 636 635 hatami 0083 638 637 pourshad 2057 640 639 zahra1101 1101 642 641 gohari1 6674 644 643 bazgir 8805 646 645 shadkam 9870 648 647 ghiyasi 0650 650 649 tahmorsi 8952 653 652 laleh 0779 655 654 nekheei 5323 657 656 khalili2 3788 659 658 komeil 0600 661 660 majidsarmast 5100 664 663 ebrahimpour3 7072 666 665 hajghani 5627 669 668 askari5795 5795 672 671 soleymani5056 5056 674 673 rashidi4690 4690 676 675 kalantary6037 6037 678 677 yosefi4232 4232 680 679 motamedi9772 9772 682 681 mirzaei6046 6046 684 683 kamali3 6960 686 685 moslem6940 6940 688 687 farhad3 3232 690 689 sekonji0496 0496 693 692 shahruz 123456 695 694 alipour1506 1506 697 696 charkhandaz3496 3496 699 698 shaghayegh2701 2701 701 700 khaleghi2406 2406 704 703 mohammadabadi 0193 706 705 dortaj3792 3792 708 707 dortaj3792 3792 710 709 iranmanesh4443 4443 712 711 yarmohamadi7916 7916 714 713 yazdani6029 6029 717 716 teymori5660 5660 719 718 akbari0070 0070 721 720 khorasani9135 9135 723 722 morteza4424 4424 725 724 barzegar8595 8595 727 726 mosavi0713 0713 729 728 aminvpnipad amin1445 731 730 aminvpns6 amin1445 733 732 aminvpnpc amin1445 735 734 kharazmi2920 2920 737 736 meghdad1616 1616 739 738 hashtadani5 8732 741 740 ghaderpour6649 66449 743 742 esmaeili1522 1522 745 744 hamid1430 1430 747 746 askarzadeh9013 9013 749 748 daryaei1233 1233 751 750 seyedrezaei2572 2572 753 752 abdolahi0311 0311 755 754 amirzadeh1339 1339 757 756 heydary4246 4246 759 758 dorani4942 4942 761 760 hosseini0093 0093 764 763 mehrpoyan101 7226 766 765 amin.saeedi2 qwerty2 769 768 nasiripour0935 0935 772 771 mhamidreza98 1007 774 773 amiresmaeili0609 0609 776 775 safari2994 2994 778 777 hamid1 0106 780 779 hamid2 0106 783 782 shafiei3462 3462 785 784 shiralinezhad6213 6213 787 786 barzegar8120 8120 789 788 javadi7073 7073 \. -- -- Data for Name: add_user_saves; Type: TABLE DATA; Schema: public; Owner: ibs -- COPY add_user_saves (add_user_save_id, add_date, admin_id, type, comment) FROM stdin; 117 2016-12-10 01:01:23.40154 0 1 122 2017-06-27 22:01:09.125654 0 1 161 2018-05-08 10:34:33.369406 0 1 182 2018-06-10 11:11:05.85055 0 1 189 2018-07-27 19:18:14.699077 0 1 191 2018-08-02 12:27:04.862938 0 1 211 2019-07-06 15:25:55.580399 0 1 215 2019-07-06 15:30:16.99158 0 1 219 2019-07-06 15:34:00.935533 0 1 221 2019-07-06 15:58:29.846919 0 1 225 2019-07-06 20:39:10.647059 0 1 227 2019-07-06 20:52:23.804849 0 1 229 2019-07-07 20:00:26.739292 1 1 231 2019-07-07 20:54:27.139835 1 1 233 2019-07-07 21:10:31.533181 1 1 235 2019-07-10 18:00:56.490699 1 1 237 2019-07-11 11:00:46.698547 1 1 240 2019-07-11 20:09:57.494976 1 1 242 2019-07-13 11:17:26.830975 1 1 244 2019-07-13 16:50:28.661485 1 1 246 2019-07-13 17:41:25.043745 1 1 248 2019-07-13 18:07:35.497409 1 1 250 2019-07-13 19:23:59.163596 1 1 281 2019-07-14 06:24:34.300534 0 1 283 2019-07-14 19:13:24.701679 1 1 285 2019-07-17 12:35:37.934443 1 1 287 2019-07-17 19:43:26.007438 1 1 289 2019-07-18 12:13:24.547855 1 1 291 2019-07-20 10:24:34.638199 1 1 293 2019-07-20 20:48:21.582361 1 1 295 2019-07-21 09:27:42.953302 1 1 297 2019-07-21 12:52:28.722415 1 1 299 2019-07-21 19:47:27.636993 1 1 301 2019-07-21 20:06:59.984281 1 1 303 2019-07-22 12:46:07.588578 1 1 305 2019-07-23 11:59:34.828221 1 1 307 2019-07-24 10:42:44.431794 1 1 309 2019-07-24 11:09:32.800021 1 1 313 2019-07-27 13:11:56.820321 1 1 315 2019-07-27 18:25:44.390152 1 1 317 2019-07-27 18:38:03.589527 1 1 319 2019-07-27 18:53:28.973507 1 1 321 2019-07-29 12:41:39.638666 1 1 323 2019-07-29 19:16:34.073682 1 1 326 2019-07-30 10:38:52.676107 1 1 328 2019-07-31 12:27:03.956229 1 1 330 2019-07-31 19:08:32.074504 1 1 332 2019-07-31 20:10:52.446647 1 1 334 2019-08-01 18:10:20.834529 1 1 336 2019-08-01 19:09:26.115061 1 1 338 2019-08-01 19:11:44.073401 1 1 340 2019-08-01 19:52:34.404182 1 1 342 2019-08-03 19:02:31.685166 1 1 344 2019-08-04 12:57:13.991462 1 1 348 2019-08-05 20:20:08.621127 1 1 350 2019-08-06 12:44:12.46114 1 1 352 2019-08-07 11:28:57.719464 1 1 354 2019-08-07 18:21:08.159697 1 1 356 2019-08-07 19:22:18.830933 1 1 358 2019-08-07 20:13:39.603684 1 1 360 2019-08-07 21:36:51.981693 1 1 362 2019-08-08 19:04:57.708782 1 1 364 2019-08-08 20:47:29.230039 1 1 366 2019-08-10 11:35:07.15646 1 1 369 2019-08-11 12:39:18.364645 1 1 371 2019-08-11 21:08:39.882114 1 1 374 2019-08-13 10:27:40.577265 1 1 376 2019-08-13 20:30:27.579948 1 1 378 2019-08-13 21:45:33.809216 1 1 380 2019-08-14 17:29:31.500162 1 1 382 2019-08-14 17:55:16.493752 1 1 384 2019-08-15 12:19:28.795944 1 1 389 2019-08-17 17:45:29.648097 1 1 391 2019-08-22 13:10:41.764816 1 1 394 2019-08-24 10:16:43.290753 1 1 396 2019-08-24 21:28:17.379133 0 1 399 2019-08-27 17:31:51.69884 1 1 401 2019-08-28 20:29:43.765022 1 1 403 2019-08-28 21:12:23.594831 1 1 409 2019-08-29 11:52:35.966267 1 1 413 2019-08-29 20:36:25.49556 1 1 415 2019-08-29 21:25:56.83783 1 1 417 2019-08-31 08:43:46.531875 1 1 419 2019-08-31 12:35:04.30759 1 1 421 2019-08-31 18:54:01.091434 1 1 423 2019-08-31 20:03:25.240399 1 1 425 2019-09-01 08:56:51.680569 1 1 427 2019-09-01 12:28:09.568098 1 1 429 2019-09-01 12:48:45.752753 1 1 431 2019-09-02 09:40:36.251151 1 1 433 2019-09-02 17:13:03.192891 1 1 435 2019-09-02 18:17:29.939243 1 1 437 2019-09-02 19:45:57.561676 1 1 439 2019-09-02 20:53:19.386106 1 1 442 2019-09-03 16:36:19.870779 1 1 444 2019-09-04 11:54:51.433307 1 1 446 2019-09-05 10:45:15.082519 1 1 448 2019-09-05 10:49:24.919254 1 1 450 2019-09-05 12:36:15.089797 1 1 452 2019-09-05 18:31:56.083944 1 1 455 2019-09-07 18:43:42.424492 1 1 457 2019-09-07 20:53:00.763377 1 1 463 2019-09-14 19:18:55.091293 1 1 465 2019-09-15 10:31:55.57212 1 1 467 2019-09-15 20:12:55.971842 1 1 469 2019-09-16 21:02:14.448304 1 1 471 2019-09-17 19:21:05.290915 1 1 473 2019-09-18 19:06:44.566182 1 1 475 2019-09-19 09:52:11.090688 1 1 478 2019-09-21 17:10:43.756645 1 1 480 2019-09-23 19:33:01.578814 1 1 482 2019-09-23 19:38:03.81201 1 1 484 2019-09-23 19:43:29.36444 1 1 486 2019-09-23 19:45:04.932995 1 1 489 2019-09-24 16:59:39.405912 1 1 491 2019-09-24 20:45:01.96518 1 1 500 2019-09-25 12:14:58.266675 1 1 502 2019-09-25 17:02:09.590917 1 1 504 2019-09-25 20:17:04.645156 1 1 507 2019-09-29 09:16:25.098542 1 1 511 2019-09-29 17:44:51.217629 1 1 513 2019-09-30 08:37:23.808327 1 1 515 2019-09-30 11:06:47.483696 1 1 517 2019-09-30 17:19:47.928303 1 1 519 2019-09-30 18:02:26.019872 1 1 521 2019-10-01 08:45:13.464101 1 1 523 2019-10-02 08:57:05.216152 1 1 527 2019-10-03 10:15:21.460452 1 1 529 2019-10-03 17:23:34.642207 1 1 535 2019-10-05 18:50:44.182362 1 1 537 2019-10-05 20:18:07.370517 1 1 539 2019-10-05 20:31:03.946257 1 1 541 2019-10-06 18:07:37.26132 1 1 543 2019-10-06 19:07:09.560427 1 1 546 2019-10-09 09:59:45.398621 1 1 549 2019-10-09 18:42:14.276625 1 1 552 2019-10-10 20:30:27.632596 1 1 555 2019-10-11 23:43:17.335266 1 1 557 2019-10-12 17:58:48.897379 1 1 559 2019-10-12 18:03:36.601586 1 1 561 2019-10-14 12:21:54.771073 1 1 563 2019-10-14 12:24:12.368728 1 1 565 2019-10-14 17:41:03.729488 1 1 567 2019-10-14 19:22:58.506527 1 1 569 2019-10-15 18:30:15.078473 1 1 571 2019-10-16 21:10:19.12082 1 1 573 2019-10-17 18:18:36.96682 1 1 575 2019-10-19 13:21:37.054365 1 1 577 2019-10-20 09:17:05.10364 1 1 579 2019-10-20 10:01:16.684207 1 1 582 2019-10-20 10:12:40.677204 1 1 584 2019-10-20 12:58:00.718624 1 1 586 2019-10-20 17:04:03.826996 1 1 588 2019-10-20 21:15:56.899591 1 1 590 2019-10-21 10:29:14.014639 1 1 592 2019-10-22 19:15:39.367705 1 1 594 2019-10-22 19:40:15.799007 1 1 596 2019-10-23 12:37:42.369513 1 1 598 2019-10-24 09:56:40.065231 1 1 600 2019-10-24 18:46:05.000761 1 1 608 2019-10-24 19:15:16.132891 0 1 610 2019-10-26 09:39:16.895517 1 1 612 2019-10-26 16:36:03.052194 1 1 614 2019-10-26 16:58:35.048835 1 1 616 2019-10-26 19:12:32.952462 1 1 618 2019-10-28 10:37:39.141122 1 1 620 2019-10-28 10:54:03.978453 1 1 624 2019-11-02 09:03:19.994908 1 1 626 2019-11-02 09:08:22.592128 1 1 628 2019-11-02 12:44:06.701865 1 1 630 2019-11-02 16:51:59.805554 1 1 632 2019-11-03 08:58:57.770733 1 1 634 2019-11-03 10:49:01.571425 1 1 636 2019-11-03 17:48:32.058224 1 1 638 2019-11-04 08:48:06.982598 1 1 640 2019-11-04 18:26:03.989796 1 1 642 2019-11-05 20:14:35.9151 1 1 644 2019-11-05 21:30:50.864677 1 1 646 2019-11-07 10:32:47.79542 1 1 648 2019-11-10 11:42:21.625061 1 1 650 2019-11-10 13:36:14.905973 1 1 653 2019-11-12 11:45:25.812675 1 1 655 2019-11-12 12:47:32.414372 1 1 657 2019-11-13 16:49:51.327248 1 1 659 2019-11-13 19:51:36.548666 1 1 661 2019-11-14 18:15:15.169458 1 1 664 2019-11-16 12:51:59.632048 1 1 666 2019-11-16 17:44:21.592036 1 1 669 2019-11-26 20:08:16.492399 1 1 672 2019-11-28 11:36:33.250022 1 1 674 2019-11-28 12:26:34.686263 1 1 676 2019-11-28 12:33:00.244137 1 1 678 2019-11-28 18:17:06.981154 1 1 680 2019-11-28 18:53:08.883236 1 1 682 2019-11-28 19:41:30.479418 1 1 684 2019-11-30 09:34:44.749102 1 1 686 2019-11-30 17:59:07.658713 1 1 688 2019-11-30 20:16:31.12292 1 1 690 2019-12-01 17:41:49.56797 1 1 693 2019-12-01 21:17:58.212115 1 1 695 2019-12-02 09:21:11.872935 1 1 697 2019-12-02 09:45:16.978864 1 1 699 2019-12-02 19:01:29.24898 1 1 701 2019-12-02 19:04:57.735235 1 1 704 2019-12-02 20:01:06.521574 1 1 706 2019-12-03 08:59:16.944664 1 1 708 2019-12-03 09:03:31.813143 1 1 710 2019-12-03 21:07:37.67097 1 1 712 2019-12-04 19:27:59.051267 1 1 714 2019-12-04 20:23:50.025322 1 1 717 2019-12-04 21:11:08.397211 1 1 719 2019-12-04 21:16:42.619116 1 1 721 2019-12-05 11:36:53.491329 1 1 723 2019-12-05 11:37:13.769094 1 1 725 2019-12-05 17:29:20.799009 1 1 727 2019-12-05 17:31:39.886905 1 1 729 2019-12-06 14:32:11.195362 0 1 731 2019-12-06 14:33:04.947142 0 1 733 2019-12-06 14:33:44.615489 0 1 735 2019-12-07 12:10:15.887685 1 1 737 2019-12-08 19:23:11.6422 1 1 739 2019-12-09 09:12:48.763912 1 1 741 2019-12-09 11:45:09.869536 1 1 743 2019-12-10 17:24:15.416191 1 1 745 2019-12-10 18:23:15.138084 1 1 747 2019-12-11 12:09:51.270041 1 1 749 2019-12-12 09:13:30.062808 1 1 751 2019-12-12 19:32:21.924485 1 1 753 2019-12-16 18:35:45.199057 1 1 755 2019-12-18 18:37:37.097263 1 1 757 2019-12-19 10:12:27.109212 1 1 759 2019-12-21 17:41:18.62743 1 1 761 2019-12-21 17:56:28.435192 1 1 764 2019-12-22 18:31:42.539772 1 1 766 2019-12-24 17:32:47.687828 0 1 769 2019-12-26 19:25:38.741756 1 1 772 2019-12-28 09:10:04.759184 1 1 774 2019-12-28 10:51:12.983286 1 1 776 2019-12-28 18:36:57.630998 1 1 778 2019-12-28 20:21:52.235802 1 1 780 2019-12-28 20:22:12.287939 1 1 783 2019-12-29 10:15:12.684437 1 1 785 2019-12-30 16:58:08.934524 1 1 787 2019-12-30 21:13:33.462947 1 1 789 2019-12-31 10:35:48.095257 1 1 \. -- -- Data for Name: admin_deposit_change; Type: TABLE DATA; Schema: public; Owner: ibs -- COPY admin_deposit_change (admin_deposit_change_id, admin_id, to_admin_id, deposit_change, change_time, remote_addr, comment) FROM stdin; 1 0 1 999.00 2019-07-06 20:25:29.457833 5.119.194.48 2 0 2 100.00 2019-07-11 12:19:55.227615 5.119.77.136 \. -- -- Data for Name: admin_locks; Type: TABLE DATA; Schema: public; Owner: ibs -- COPY admin_locks (lock_id, locker_admin_id, admin_id, reason) FROM stdin; \. -- -- Data for Name: admin_messages; Type: TABLE DATA; Schema: public; Owner: ibs -- COPY admin_messages (message_id, user_id, message_text, post_date) FROM stdin; \. -- -- Data for Name: admin_perm_templates; Type: TABLE DATA; Schema: public; Owner: ibs -- COPY admin_perm_templates (template_id, template_name) FROM stdin; \. -- -- Data for Name: admin_perm_templates_detail; Type: TABLE DATA; Schema: public; Owner: ibs -- COPY admin_perm_templates_detail (template_id, perm_name, perm_value) FROM stdin; \. -- -- Data for Name: admin_perms; Type: TABLE DATA; Schema: public; Owner: ibs -- COPY admin_perms (admin_id, perm_name, perm_value) FROM stdin; 0 GOD 1 ADD NEW USER 2 CHANGE USER ATTRIBUTES Restricted 1 GET USER INFORMATION Restricted 1 SEE BW SNAPSHOTS Restricted 1 SEE CONNECTION LOGS Restricted 1 SEE CREDIT CHANGES Restricted 1 SEE ONLINE SNAPSHOTS 1 SEE ONLINE USERS Restricted 1 SEE REALTIME SNAPSHOTS 1 SEE SAVED USERNAME PASSWORDS Restricted 1 SEE USER AUDIT LOGS Restricted 1 SEE WEB ANALYZER LOGS Restricted 2 CHANGE NORMAL USER ATTRIBUTES Restricted 2 ADD NEW USER 1 GROUP ACCESS 1mahe,2mahe,3mahe,6mahe 2 GET USER INFORMATION Restricted 2 SEE BW SNAPSHOTS Restricted 2 SEE CONNECTION LOGS Restricted 2 SEE CREDIT CHANGES Restricted 2 SEE ONLINE SNAPSHOTS 2 SEE ONLINE USERS Restricted 2 SEE REALTIME SNAPSHOTS 2 SEE SAVED USERNAME PASSWORDS Restricted 2 SEE USER AUDIT LOGS Restricted 2 SEE WEB ANALYZER LOGS Restricted 2 CHANGE MAILBOX 2 GROUP ACCESS 2mahe,1mahe,3mahe 1 CHANGE USER ATTRIBUTES Restricted 1 CHANGE NORMAL USER ATTRIBUTES Restricted 1 CHANGE MAILBOX 1 CHANGE USER CREDIT Restricted 2 CHANGE USER CREDIT Restricted 1 CHANGE VOIP USER ATTRIBUTES Restricted 1 CLEAR USER Restricted 1 DELETE USER Restricted 1 KILL USER Restricted 2 CHANGE VOIP USER ATTRIBUTES Restricted 2 CLEAR USER Restricted 2 DELETE USER Restricted 2 KILL USER Restricted \. -- -- Data for Name: admins; Type: TABLE DATA; Schema: public; Owner: ibs -- COPY admins (admin_id, username, password, deposit, due, name, comment, creator_id) FROM stdin; 2 alireza $1$Mrx6EGMp$mUFmSjvAP0rxwE2hD5BkW1 88.00 0.00 Alireza 0 0 system $1$oCyCBwMA$CXaM8yCrDnA4mQwh5zV04. 20.00 0.00 IBS Internal System Account 0 1 mhamidreza81 $1$Kve5aUaq$4ysYhEEmMdz.p7mCmxnBs. 497.00 0.00 Hamidreza 0 \. -- -- Data for Name: admins_extended_attrs; Type: TABLE DATA; Schema: public; Owner: ibs -- COPY admins_extended_attrs (admin_id, attr_name, attr_value) FROM stdin; \. -- -- Data for Name: bw_interface; Type: TABLE DATA; Schema: public; Owner: ibs -- COPY bw_interface (interface_id, interface_name, comment) FROM stdin; \. -- -- Data for Name: bw_leaf; Type: TABLE DATA; Schema: public; Owner: ibs -- COPY bw_leaf (leaf_id, leaf_name, interface_id, parent_id, default_rate_kbits, default_ceil_kbits, total_rate_kbits, total_ceil_kbits) FROM stdin; \. -- -- Data for Name: bw_leaf_services; Type: TABLE DATA; Schema: public; Owner: ibs -- COPY bw_leaf_services (leaf_service_id, leaf_id, protocol, filter, rate_kbits, ceil_kbits) FROM stdin; \. -- -- Data for Name: bw_node; Type: TABLE DATA; Schema: public; Owner: ibs -- COPY bw_node (node_id, interface_id, parent_id, rate_kbits, ceil_kbits) FROM stdin; \. -- -- Data for Name: bw_static_ip; Type: TABLE DATA; Schema: public; Owner: ibs -- COPY bw_static_ip (bw_static_ip_id, ip, transmit_leaf_id, receive_leaf_id) FROM stdin; \. -- -- Data for Name: caller_id_users; Type: TABLE DATA; Schema: public; Owner: ibs -- COPY caller_id_users (user_id, caller_id) FROM stdin; \. -- -- Data for Name: charge_rule_day_of_weeks; Type: TABLE DATA; Schema: public; Owner: ibs -- COPY charge_rule_day_of_weeks (charge_rule_id, day_of_week) FROM stdin; 1 0 1 1 1 2 1 3 1 4 1 5 1 6 \. -- -- Data for Name: charge_rule_ports; Type: TABLE DATA; Schema: public; Owner: ibs -- COPY charge_rule_ports (charge_rule_id, ras_port) FROM stdin; 1 _ALL_ \. -- -- Data for Name: charge_rules; Type: TABLE DATA; Schema: public; Owner: ibs -- COPY charge_rules (charge_id, charge_rule_id, start_time, end_time, time_limit, ras_id) FROM stdin; \. -- -- Data for Name: charges; Type: TABLE DATA; Schema: public; Owner: ibs -- COPY charges (charge_id, name, charge_type, comment, admin_id, visible_to_all) FROM stdin; 1 24Hours Internet 0 t \. -- -- Data for Name: connection_log; Type: TABLE DATA; Schema: public; Owner: ibs -- COPY connection_log (connection_log_id, user_id, credit_used, login_time, logout_time, successful, service, ras_id) FROM stdin; 72718 220 0.00 2019-07-12 04:02:31 2019-07-12 04:04:45 t 1 1 72720 220 0.00 2019-07-12 04:07:27 2019-07-12 04:09:29 t 1 1 72732 220 0.00 2019-07-12 04:37:58 2019-07-12 04:39:27 t 1 1 71487 224 0.00 2019-07-06 20:58:09 2019-07-06 20:58:13 t 1 2 71489 218 0.00 2019-07-06 22:02:33 2019-07-06 22:38:35 t 1 2 71497 212 0.00 2019-07-06 23:48:03 2019-07-06 23:59:22 t 1 2 71508 204 0.00 2019-07-07 00:15:24 2019-07-07 03:31:36 t 1 2 71509 212 0.00 2019-07-07 06:35:01 2019-07-07 06:35:40 t 1 2 71511 218 0.00 2019-07-07 07:05:46 2019-07-07 07:07:44 t 1 2 71517 207 0.00 2019-07-07 07:58:21 2019-07-07 08:01:07 t 1 2 71519 212 0.00 2019-07-07 08:10:00 2019-07-07 08:11:22 t 1 2 71520 218 0.00 2019-07-07 07:47:13 2019-07-07 08:17:23 t 1 2 71523 207 0.00 2019-07-07 08:17:56 2019-07-07 08:18:07 t 1 2 71525 207 0.00 2019-07-07 08:19:21 2019-07-07 08:19:30 t 1 2 71526 207 0.00 2019-07-07 08:19:47 2019-07-07 08:20:04 t 1 2 71527 207 0.00 2019-07-07 08:20:31 2019-07-07 08:21:31 t 1 2 71528 212 0.00 2019-07-07 08:26:21 2019-07-07 08:26:46 t 1 2 71529 207 0.00 2019-07-07 08:41:32 2019-07-07 08:42:41 t 1 2 71540 217 0.00 2019-07-07 09:11:10 2019-07-07 09:11:10 f 1 2 71544 218 0.00 2019-07-07 09:28:19 2019-07-07 09:29:58 t 1 2 71548 217 0.00 2019-07-07 09:02:32 2019-07-07 09:47:37 t 1 2 71550 218 0.00 2019-07-07 09:31:29 2019-07-07 09:52:06 t 1 2 71552 207 0.00 2019-07-07 09:53:42 2019-07-07 09:54:11 t 1 2 71557 207 0.00 2019-07-07 10:00:08 2019-07-07 10:01:09 t 1 2 71560 207 0.00 2019-07-07 10:04:02 2019-07-07 10:05:46 t 1 2 71564 207 0.00 2019-07-07 10:15:41 2019-07-07 10:15:59 t 1 2 71570 213 0.00 2019-07-07 10:23:13 2019-07-07 10:23:17 t 1 2 71572 207 0.00 2019-07-07 10:23:31 2019-07-07 10:24:32 t 1 2 71573 213 0.00 2019-07-07 10:24:13 2019-07-07 10:25:21 t 1 2 71577 207 0.00 2019-07-07 10:26:48 2019-07-07 10:26:50 t 1 2 71578 207 0.00 2019-07-07 10:27:25 2019-07-07 10:28:28 t 1 2 71584 207 0.00 2019-07-07 10:34:08 2019-07-07 10:34:27 t 1 2 71585 207 0.00 2019-07-07 10:34:57 2019-07-07 10:35:15 t 1 2 71586 207 0.00 2019-07-07 10:35:44 2019-07-07 10:35:55 t 1 2 71593 207 0.00 2019-07-07 10:41:28 2019-07-07 10:41:41 t 1 2 71596 207 0.00 2019-07-07 10:43:19 2019-07-07 10:43:23 t 1 2 71600 207 0.00 2019-07-07 10:45:31 2019-07-07 10:45:41 t 1 2 71837 212 0.00 2019-07-08 05:37:47 2019-07-08 05:38:51 t 1 2 71838 218 0.00 2019-07-08 05:43:12 2019-07-08 05:43:27 t 1 2 71839 212 0.00 2019-07-08 06:49:41 2019-07-08 06:50:32 t 1 2 71841 218 0.00 2019-07-08 07:12:04 2019-07-08 07:12:23 t 1 2 71844 207 0.00 2019-07-08 07:40:22 2019-07-08 07:40:45 t 1 2 71850 207 0.00 2019-07-08 07:51:16 2019-07-08 07:51:27 t 1 2 71852 207 0.00 2019-07-08 07:54:23 2019-07-08 07:54:40 t 1 2 71853 207 0.00 2019-07-08 07:55:05 2019-07-08 07:56:08 t 1 2 71854 207 0.00 2019-07-08 07:56:38 2019-07-08 07:57:01 t 1 2 71858 212 0.00 2019-07-08 08:06:19 2019-07-08 08:07:17 t 1 2 71859 207 0.00 2019-07-08 08:07:39 2019-07-08 08:08:37 t 1 2 71862 207 0.00 2019-07-08 08:12:13 2019-07-08 08:12:22 t 1 2 71863 207 0.00 2019-07-08 08:12:42 2019-07-08 08:12:45 t 1 2 71871 207 0.00 2019-07-08 08:23:48 2019-07-08 08:24:51 t 1 2 71872 212 0.00 2019-07-08 08:32:21 2019-07-08 08:33:01 t 1 2 71877 217 0.00 2019-07-08 08:32:54 2019-07-08 08:43:00 t 1 2 71880 212 0.00 2019-07-08 08:51:15 2019-07-08 08:51:58 t 1 2 71885 217 0.00 2019-07-08 08:42:59 2019-07-08 08:58:05 t 1 2 71889 207 0.00 2019-07-08 09:01:55 2019-07-08 09:02:54 t 1 2 71891 207 0.00 2019-07-08 09:03:05 2019-07-08 09:04:09 t 1 2 71892 207 0.00 2019-07-08 09:06:19 2019-07-08 09:07:14 t 1 2 71898 218 0.00 2019-07-08 09:11:03 2019-07-08 09:21:08 t 1 2 71900 217 0.00 2019-07-08 09:16:44 2019-07-08 09:31:49 t 1 2 71903 217 0.00 2019-07-08 09:31:15 2019-07-08 09:51:21 t 1 2 71909 217 0.00 2019-07-08 10:05:39 2019-07-08 10:06:26 t 1 2 71910 207 0.00 2019-07-08 10:07:13 2019-07-08 10:07:22 t 1 2 71912 207 0.00 2019-07-08 10:10:56 2019-07-08 10:11:06 t 1 2 71913 207 0.00 2019-07-08 10:11:28 2019-07-08 10:11:53 t 1 2 71914 207 0.00 2019-07-08 10:12:45 2019-07-08 10:13:00 t 1 2 71917 207 0.00 2019-07-08 10:15:14 2019-07-08 10:17:51 t 1 2 71919 207 0.00 2019-07-08 10:23:17 2019-07-08 10:24:17 t 1 2 71921 212 0.00 2019-07-08 10:25:12 2019-07-08 10:25:55 t 1 2 71923 212 0.00 2019-07-08 10:27:06 2019-07-08 10:27:57 t 1 2 71930 230 0.00 2019-07-08 11:13:51 2019-07-08 11:14:59 t 1 2 71932 207 0.00 2019-07-08 11:17:25 2019-07-08 11:19:13 t 1 2 71933 212 0.00 2019-07-08 11:25:59 2019-07-08 11:26:26 t 1 2 71936 232 0.00 2019-07-08 11:24:03 2019-07-08 11:40:04 t 1 2 71938 207 0.00 2019-07-08 11:53:40 2019-07-08 11:53:54 t 1 2 71939 207 0.00 2019-07-08 11:54:20 2019-07-08 11:54:46 t 1 2 71948 204 0.00 2019-07-08 12:31:21 2019-07-08 12:57:08 t 1 2 71954 204 0.00 2019-07-08 13:06:55 2019-07-08 13:23:55 t 1 2 71956 212 0.00 2019-07-08 13:32:45 2019-07-08 13:33:53 t 1 2 71960 217 0.00 2019-07-08 13:33:05 2019-07-08 13:43:10 t 1 2 72081 203 0.00 2019-07-09 06:22:03 2019-07-09 06:23:04 t 1 2 72083 207 0.00 2019-07-09 06:48:17 2019-07-09 06:49:18 t 1 2 72084 207 0.00 2019-07-09 06:53:52 2019-07-09 06:54:58 t 1 2 72086 207 0.00 2019-07-09 06:57:08 2019-07-09 06:57:23 t 1 2 72087 207 0.00 2019-07-09 06:57:36 2019-07-09 06:57:41 t 1 2 72089 207 0.00 2019-07-09 07:13:34 2019-07-09 07:14:28 t 1 2 72092 207 0.00 2019-07-09 07:24:13 2019-07-09 07:24:25 t 1 2 72096 218 0.00 2019-07-09 07:49:32 2019-07-09 07:49:58 t 1 2 72097 212 0.00 2019-07-09 08:10:58 2019-07-09 08:11:31 t 1 2 72098 212 0.00 2019-07-09 08:25:54 2019-07-09 08:27:00 t 1 2 72108 207 0.00 2019-07-09 09:18:23 2019-07-09 09:18:37 t 1 2 72109 207 0.00 2019-07-09 09:19:04 2019-07-09 09:19:13 t 1 2 72112 212 0.00 2019-07-09 09:26:54 2019-07-09 09:28:50 t 1 2 72113 212 0.00 2019-07-09 09:43:06 2019-07-09 09:43:34 t 1 2 72114 202 0.00 2019-07-09 09:45:23 2019-07-09 09:46:29 t 1 2 72735 220 0.00 2019-07-12 04:42:42 2019-07-12 04:44:16 t 1 1 72119 217 0.00 2019-07-09 08:47:46 2019-07-09 10:24:46 t 1 2 72120 212 0.00 2019-07-09 10:25:40 2019-07-09 10:26:03 t 1 2 72121 206 0.00 2019-07-09 10:28:28 2019-07-09 10:29:36 t 1 2 72123 206 0.00 2019-07-09 10:29:56 2019-07-09 10:31:03 t 1 2 72127 206 0.00 2019-07-09 10:58:00 2019-07-09 10:59:06 t 1 2 72128 212 0.00 2019-07-09 11:28:22 2019-07-09 11:28:50 t 1 2 72129 213 0.00 2019-07-09 11:29:43 2019-07-09 11:29:43 f 1 2 72133 207 0.00 2019-07-09 11:52:31 2019-07-09 11:52:54 t 1 2 72136 217 0.00 2019-07-09 11:45:21 2019-07-09 12:05:27 t 1 2 72142 212 0.00 2019-07-09 12:13:15 2019-07-09 12:14:09 t 1 2 72143 217 0.00 2019-07-09 12:08:56 2019-07-09 12:16:12 t 1 2 72719 220 0.00 2019-07-12 04:04:45 2019-07-12 04:07:27 t 1 1 72721 220 0.00 2019-07-12 04:09:29 2019-07-12 04:11:20 t 1 1 71479 220 0.00 2019-07-06 15:58:46 2019-07-06 16:03:18 t 1 1 71481 220 0.00 2019-07-06 16:04:47 2019-07-06 16:07:01 t 1 1 71484 220 0.00 2019-07-06 16:10:32 2019-07-06 16:12:18 t 1 1 71488 212 0.00 2019-07-06 22:16:01 2019-07-06 22:16:38 t 1 2 71492 218 0.00 2019-07-06 22:38:23 2019-07-06 23:03:28 t 1 2 71494 218 0.00 2019-07-06 23:06:19 2019-07-06 23:11:47 t 1 2 71495 217 0.00 2019-07-06 23:22:11 2019-07-06 23:23:27 t 1 2 71496 212 0.00 2019-07-06 23:28:52 2019-07-06 23:29:59 t 1 2 71499 217 0.00 2019-07-06 22:43:32 2019-07-07 00:07:06 t 1 2 71500 212 0.00 2019-07-07 00:09:55 2019-07-07 00:10:01 t 1 2 71503 216 0.00 2019-07-06 23:24:48 2019-07-07 00:37:05 t 1 2 71506 212 0.00 2019-07-07 01:07:04 2019-07-07 01:07:43 t 1 2 71510 212 0.00 2019-07-07 07:00:30 2019-07-07 07:05:32 t 1 2 71514 207 0.00 2019-07-07 07:41:57 2019-07-07 07:42:15 t 1 2 71515 207 0.00 2019-07-07 07:42:38 2019-07-07 07:42:49 t 1 2 71516 212 0.00 2019-07-07 07:52:34 2019-07-07 07:54:02 t 1 2 71518 212 0.00 2019-07-07 08:00:18 2019-07-07 08:01:22 t 1 2 71522 212 0.00 2019-07-07 08:16:57 2019-07-07 08:17:45 t 1 2 71524 207 0.00 2019-07-07 08:19:00 2019-07-07 08:19:07 t 1 2 71530 207 0.00 2019-07-07 08:43:21 2019-07-07 08:44:26 t 1 2 71531 207 0.00 2019-07-07 08:45:27 2019-07-07 08:45:36 t 1 2 71532 207 0.00 2019-07-07 08:45:53 2019-07-07 08:46:17 t 1 2 71533 207 0.00 2019-07-07 08:46:25 2019-07-07 08:47:26 t 1 2 71538 217 0.00 2019-07-07 09:09:50 2019-07-07 09:09:50 f 1 2 71539 217 0.00 2019-07-07 09:10:59 2019-07-07 09:10:59 f 1 2 71541 212 0.00 2019-07-07 09:14:34 2019-07-07 09:15:13 t 1 2 71542 220 0.00 2019-07-07 09:22:17 2019-07-07 09:22:17 f 1 2 71543 220 0.00 2019-07-07 09:22:37 2019-07-07 09:22:37 f 1 2 71551 207 0.00 2019-07-07 09:51:31 2019-07-07 09:52:35 t 1 2 71553 207 0.00 2019-07-07 09:54:40 2019-07-07 09:55:38 t 1 2 71554 207 0.00 2019-07-07 09:56:17 2019-07-07 09:57:17 t 1 2 71555 207 0.00 2019-07-07 09:57:34 2019-07-07 09:57:47 t 1 2 71558 207 0.00 2019-07-07 10:01:54 2019-07-07 10:02:57 t 1 2 71562 212 0.00 2019-07-07 10:07:15 2019-07-07 10:07:47 t 1 2 71565 207 0.00 2019-07-07 10:16:44 2019-07-07 10:17:42 t 1 2 71567 207 0.00 2019-07-07 10:19:21 2019-07-07 10:19:31 t 1 2 71571 207 0.00 2019-07-07 10:23:12 2019-07-07 10:23:21 t 1 2 71574 207 0.00 2019-07-07 10:25:03 2019-07-07 10:25:21 t 1 2 71576 213 0.00 2019-07-07 10:25:43 2019-07-07 10:26:48 t 1 2 71582 207 0.00 2019-07-07 10:33:22 2019-07-07 10:33:37 t 1 2 71583 213 0.00 2019-07-07 10:32:48 2019-07-07 10:33:52 t 1 2 71589 207 0.00 2019-07-07 10:37:15 2019-07-07 10:37:33 t 1 2 71590 207 0.00 2019-07-07 10:38:08 2019-07-07 10:38:14 t 1 2 71594 217 0.00 2019-07-07 10:32:18 2019-07-07 10:42:24 t 1 2 71595 207 0.00 2019-07-07 10:42:25 2019-07-07 10:42:37 t 1 2 71597 207 0.00 2019-07-07 10:43:47 2019-07-07 10:44:02 t 1 2 71840 217 0.00 2019-07-08 06:23:08 2019-07-08 06:55:59 t 1 2 71842 217 0.00 2019-07-07 22:12:50 2019-07-08 07:34:05 t 1 2 71845 218 0.00 2019-07-08 07:44:39 2019-07-08 07:45:03 t 1 2 71847 207 0.00 2019-07-08 07:47:53 2019-07-08 07:48:55 t 1 2 71848 207 0.00 2019-07-08 07:49:18 2019-07-08 07:50:21 t 1 2 71849 212 0.00 2019-07-08 07:50:31 2019-07-08 07:51:01 t 1 2 71851 207 0.00 2019-07-08 07:51:41 2019-07-08 07:53:28 t 1 2 71855 207 0.00 2019-07-08 08:00:04 2019-07-08 08:01:10 t 1 2 71857 207 0.00 2019-07-08 08:05:28 2019-07-08 08:06:32 t 1 2 71867 217 0.00 2019-07-08 08:05:07 2019-07-08 08:20:12 t 1 2 71870 207 0.00 2019-07-08 08:23:26 2019-07-08 08:23:34 t 1 2 71874 212 0.00 2019-07-08 08:41:33 2019-07-08 08:42:12 t 1 2 71876 217 0.00 2019-07-08 08:39:43 2019-07-08 08:42:49 t 1 2 71878 212 0.00 2019-07-08 08:46:44 2019-07-08 08:47:08 t 1 2 71886 212 0.00 2019-07-08 08:57:58 2019-07-08 08:58:28 t 1 2 71887 207 0.00 2019-07-08 08:57:36 2019-07-08 08:58:41 t 1 2 71888 207 0.00 2019-07-08 08:59:23 2019-07-08 09:00:24 t 1 2 71893 207 0.00 2019-07-08 09:09:22 2019-07-08 09:09:42 t 1 2 71894 212 0.00 2019-07-08 09:09:52 2019-07-08 09:10:41 t 1 2 71897 217 0.00 2019-07-08 09:08:04 2019-07-08 09:18:09 t 1 2 71899 217 0.00 2019-07-08 09:22:08 2019-07-08 09:23:11 t 1 2 71905 217 0.00 2019-07-08 09:44:47 2019-07-08 09:54:52 t 1 2 71915 207 0.00 2019-07-08 10:13:22 2019-07-08 10:13:47 t 1 2 71916 207 0.00 2019-07-08 10:14:21 2019-07-08 10:14:52 t 1 2 71920 207 0.00 2019-07-08 10:25:17 2019-07-08 10:25:25 t 1 2 71922 207 0.00 2019-07-08 10:26:04 2019-07-08 10:27:10 t 1 2 71925 212 0.00 2019-07-08 10:39:13 2019-07-08 10:40:10 t 1 2 71927 212 0.00 2019-07-08 10:53:06 2019-07-08 10:53:29 t 1 2 71931 206 0.00 2019-07-08 11:15:58 2019-07-08 11:17:01 t 1 2 71934 217 0.00 2019-07-08 11:26:22 2019-07-08 11:26:30 t 1 2 71935 217 0.00 2019-07-08 11:26:45 2019-07-08 11:26:57 t 1 2 71945 212 0.00 2019-07-08 12:43:17 2019-07-08 12:43:45 t 1 2 71946 218 0.00 2019-07-08 12:51:45 2019-07-08 12:52:11 t 1 2 71947 207 0.00 2019-07-08 12:52:50 2019-07-08 12:54:07 t 1 2 71957 218 0.00 2019-07-08 13:35:31 2019-07-08 13:37:40 t 1 2 71961 230 0.00 2019-07-08 12:59:16 2019-07-08 13:43:23 t 1 2 72082 207 0.00 2019-07-09 06:47:13 2019-07-09 06:47:25 t 1 2 72085 207 0.00 2019-07-09 06:56:40 2019-07-09 06:56:54 t 1 2 72088 207 0.00 2019-07-09 06:58:05 2019-07-09 06:59:08 t 1 2 72091 207 0.00 2019-07-09 07:18:14 2019-07-09 07:19:18 t 1 2 72094 212 0.00 2019-07-09 07:38:53 2019-07-09 07:39:21 t 1 2 72095 212 0.00 2019-07-09 07:46:13 2019-07-09 07:47:43 t 1 2 72099 212 0.00 2019-07-09 08:34:20 2019-07-09 08:35:18 t 1 2 72100 217 0.00 2019-07-09 08:32:04 2019-07-09 08:47:09 t 1 2 72102 212 0.00 2019-07-09 08:45:36 2019-07-09 08:49:05 t 1 2 72103 212 0.00 2019-07-09 08:58:12 2019-07-09 08:58:39 t 1 2 72104 217 0.00 2019-07-09 08:40:34 2019-07-09 09:00:39 t 1 2 72110 212 0.00 2019-07-09 09:19:01 2019-07-09 09:19:35 t 1 2 72723 220 0.00 2019-07-12 04:13:04 2019-07-12 04:14:47 t 1 1 72117 212 0.00 2019-07-09 10:03:34 2019-07-09 10:04:01 t 1 2 72122 212 0.00 2019-07-09 10:29:37 2019-07-09 10:30:25 t 1 2 72124 212 0.00 2019-07-09 10:39:51 2019-07-09 10:40:13 t 1 2 72125 212 0.00 2019-07-09 10:45:16 2019-07-09 10:46:18 t 1 2 72130 212 0.00 2019-07-09 11:32:54 2019-07-09 11:34:18 t 1 2 72134 212 0.00 2019-07-09 11:52:08 2019-07-09 11:53:00 t 1 2 72135 212 0.00 2019-07-09 12:01:00 2019-07-09 12:01:54 t 1 2 72138 217 0.00 2019-07-09 12:08:15 2019-07-09 12:08:19 t 1 2 72140 217 0.00 2019-07-09 12:11:31 2019-07-09 12:11:35 t 1 2 72150 218 0.00 2019-07-09 13:02:59 2019-07-09 13:03:44 t 1 2 72722 220 0.00 2019-07-12 04:11:20 2019-07-12 04:13:04 t 1 1 72724 220 0.00 2019-07-12 04:14:47 2019-07-12 04:16:43 t 1 1 72725 220 0.00 2019-07-12 04:16:43 2019-07-12 04:28:31 t 1 1 72727 220 0.00 2019-07-12 04:30:11 2019-07-12 04:31:45 t 1 1 71480 220 0.00 2019-07-06 16:03:18 2019-07-06 16:04:47 t 1 1 71482 220 0.00 2019-07-06 16:07:01 2019-07-06 16:08:48 t 1 1 71483 220 0.00 2019-07-06 16:08:48 2019-07-06 16:10:32 t 1 1 71485 220 0.00 2019-07-06 16:12:18 2019-07-06 19:07:21 t 1 1 72728 220 0.00 2019-07-12 04:31:45 2019-07-12 04:33:15 t 1 1 71490 217 0.00 2019-07-06 22:36:42 2019-07-06 22:43:23 t 1 2 71491 210 0.00 2019-07-06 22:47:09 2019-07-06 22:48:33 t 1 2 72731 220 0.00 2019-07-12 04:36:21 2019-07-12 04:37:58 t 1 1 71498 212 0.00 2019-07-07 00:02:45 2019-07-07 00:04:27 t 1 2 71501 212 0.00 2019-07-07 00:11:07 2019-07-07 00:13:21 t 1 2 71502 210 0.00 2019-07-07 00:27:02 2019-07-07 00:28:15 t 1 2 71504 212 0.00 2019-07-07 00:33:03 2019-07-07 00:43:08 t 1 2 71505 212 0.00 2019-07-07 00:50:02 2019-07-07 00:51:00 t 1 2 71507 212 0.00 2019-07-07 01:37:12 2019-07-07 01:37:40 t 1 2 71512 212 0.00 2019-07-07 07:34:43 2019-07-07 07:34:51 t 1 2 71513 212 0.00 2019-07-07 07:35:29 2019-07-07 07:36:09 t 1 2 71521 207 0.00 2019-07-07 08:17:23 2019-07-07 08:17:30 t 1 2 71534 212 0.00 2019-07-07 08:50:07 2019-07-07 08:50:38 t 1 2 71535 212 0.00 2019-07-07 08:59:08 2019-07-07 08:59:36 t 1 2 71536 217 0.00 2019-07-07 09:09:31 2019-07-07 09:09:31 f 1 2 71537 217 0.00 2019-07-07 09:09:44 2019-07-07 09:09:44 f 1 2 71545 220 0.00 2019-07-07 09:23:29 2019-07-07 09:33:34 t 1 2 71546 217 0.00 2019-07-07 09:03:50 2019-07-07 09:33:55 t 1 2 71547 212 0.00 2019-07-07 09:42:07 2019-07-07 09:42:43 t 1 2 71549 207 0.00 2019-07-07 09:49:02 2019-07-07 09:50:05 t 1 2 71556 207 0.00 2019-07-07 09:58:08 2019-07-07 09:59:13 t 1 2 71559 207 0.00 2019-07-07 10:03:37 2019-07-07 10:03:46 t 1 2 71561 207 0.00 2019-07-07 10:06:09 2019-07-07 10:06:29 t 1 2 71563 207 0.00 2019-07-07 10:06:49 2019-07-07 10:08:04 t 1 2 71566 207 0.00 2019-07-07 10:18:19 2019-07-07 10:18:51 t 1 2 71568 207 0.00 2019-07-07 10:20:29 2019-07-07 10:20:48 t 1 2 71569 207 0.00 2019-07-07 10:21:07 2019-07-07 10:22:13 t 1 2 71575 207 0.00 2019-07-07 10:26:13 2019-07-07 10:26:31 t 1 2 71579 207 0.00 2019-07-07 10:29:09 2019-07-07 10:30:11 t 1 2 71580 207 0.00 2019-07-07 10:30:42 2019-07-07 10:30:53 t 1 2 71581 207 0.00 2019-07-07 10:31:07 2019-07-07 10:32:13 t 1 2 71587 207 0.00 2019-07-07 10:36:09 2019-07-07 10:36:15 t 1 2 71588 207 0.00 2019-07-07 10:36:36 2019-07-07 10:36:57 t 1 2 71591 207 0.00 2019-07-07 10:38:29 2019-07-07 10:38:44 t 1 2 71592 207 0.00 2019-07-07 10:39:05 2019-07-07 10:40:11 t 1 2 71598 207 0.00 2019-07-07 10:45:10 2019-07-07 10:45:18 t 1 2 71599 212 0.00 2019-07-07 10:45:09 2019-07-07 10:45:40 t 1 2 71843 232 0.00 2019-07-08 07:10:58 2019-07-08 07:34:05 t 1 2 71846 207 0.00 2019-07-08 07:45:12 2019-07-08 07:46:56 t 1 2 71856 207 0.00 2019-07-08 08:03:44 2019-07-08 08:04:46 t 1 2 71860 207 0.00 2019-07-08 08:09:04 2019-07-08 08:10:05 t 1 2 71861 207 0.00 2019-07-08 08:10:30 2019-07-08 08:11:33 t 1 2 71864 207 0.00 2019-07-08 08:13:29 2019-07-08 08:14:45 t 1 2 71865 207 0.00 2019-07-08 08:15:57 2019-07-08 08:16:21 t 1 2 71866 207 0.00 2019-07-08 08:17:16 2019-07-08 08:19:04 t 1 2 71868 207 0.00 2019-07-08 08:22:10 2019-07-08 08:22:14 t 1 2 71869 207 0.00 2019-07-08 08:22:32 2019-07-08 08:22:42 t 1 2 71873 212 0.00 2019-07-08 08:33:51 2019-07-08 08:34:39 t 1 2 71875 217 0.00 2019-07-08 08:12:08 2019-07-08 08:42:13 t 1 2 71879 202 0.00 2019-07-08 08:50:03 2019-07-08 08:51:10 t 1 2 71881 202 0.00 2019-07-08 08:51:56 2019-07-08 08:53:01 t 1 2 71882 212 0.00 2019-07-08 08:54:36 2019-07-08 08:55:10 t 1 2 71883 217 0.00 2019-07-08 08:53:14 2019-07-08 08:56:05 t 1 2 71884 207 0.00 2019-07-08 08:56:03 2019-07-08 08:57:04 t 1 2 71890 212 0.00 2019-07-08 09:03:04 2019-07-08 09:03:39 t 1 2 71895 212 0.00 2019-07-08 09:15:25 2019-07-08 09:16:06 t 1 2 71896 217 0.00 2019-07-08 08:56:52 2019-07-08 09:16:57 t 1 2 71901 212 0.00 2019-07-08 09:40:17 2019-07-08 09:41:41 t 1 2 71902 206 0.00 2019-07-08 09:49:50 2019-07-08 09:50:57 t 1 2 71904 217 0.00 2019-07-08 09:10:58 2019-07-08 09:54:29 t 1 2 71906 207 0.00 2019-07-08 10:04:23 2019-07-08 10:04:33 t 1 2 71907 217 0.00 2019-07-08 09:50:11 2019-07-08 10:05:16 t 1 2 71908 207 0.00 2019-07-08 10:04:50 2019-07-08 10:06:05 t 1 2 71911 207 0.00 2019-07-08 10:07:44 2019-07-08 10:08:49 t 1 2 71918 207 0.00 2019-07-08 10:22:24 2019-07-08 10:22:46 t 1 2 71924 212 0.00 2019-07-08 10:32:29 2019-07-08 10:33:04 t 1 2 71926 217 0.00 2019-07-08 09:06:06 2019-07-08 10:45:01 t 1 2 71928 212 0.00 2019-07-08 11:05:42 2019-07-08 11:06:02 t 1 2 71929 230 0.00 2019-07-08 11:08:19 2019-07-08 11:09:22 t 1 2 71937 207 0.00 2019-07-08 11:52:38 2019-07-08 11:52:57 t 1 2 71940 212 0.00 2019-07-08 12:04:08 2019-07-08 12:04:50 t 1 2 71941 218 0.00 2019-07-08 11:02:23 2019-07-08 12:12:28 t 1 2 71942 230 0.00 2019-07-08 11:14:25 2019-07-08 12:26:30 t 1 2 71943 212 0.00 2019-07-08 12:30:02 2019-07-08 12:31:36 t 1 2 71944 212 0.00 2019-07-08 12:36:48 2019-07-08 12:37:35 t 1 2 71949 217 0.00 2019-07-08 12:51:02 2019-07-08 13:01:07 t 1 2 71950 230 0.00 2019-07-08 12:53:14 2019-07-08 13:03:20 t 1 2 71951 217 0.00 2019-07-08 12:54:15 2019-07-08 13:04:20 t 1 2 71952 217 0.00 2019-07-08 13:00:46 2019-07-08 13:15:52 t 1 2 71953 217 0.00 2019-07-08 13:08:03 2019-07-08 13:18:28 t 1 2 71955 217 0.00 2019-07-08 13:18:43 2019-07-08 13:33:48 t 1 2 71958 212 0.00 2019-07-08 13:37:20 2019-07-08 13:37:55 t 1 2 71959 217 0.00 2019-07-08 13:26:00 2019-07-08 13:41:05 t 1 2 72090 207 0.00 2019-07-09 07:15:39 2019-07-09 07:16:44 t 1 2 72093 202 0.00 2019-07-09 07:25:51 2019-07-09 07:26:58 t 1 2 72101 217 0.00 2019-07-09 08:47:03 2019-07-09 08:47:12 t 1 2 72105 217 0.00 2019-07-09 08:50:54 2019-07-09 09:06:00 t 1 2 72106 212 0.00 2019-07-09 09:06:51 2019-07-09 09:07:21 t 1 2 72107 207 0.00 2019-07-09 09:17:32 2019-07-09 09:17:51 t 1 2 72111 207 0.00 2019-07-09 09:19:43 2019-07-09 09:20:43 t 1 2 72118 218 0.00 2019-07-09 10:13:56 2019-07-09 10:20:02 t 1 2 72126 212 0.00 2019-07-09 10:49:29 2019-07-09 10:50:36 t 1 2 72131 217 0.00 2019-07-09 10:18:33 2019-07-09 11:43:38 t 1 2 72132 207 0.00 2019-07-09 11:51:49 2019-07-09 11:52:05 t 1 2 72137 217 0.00 2019-07-09 12:07:03 2019-07-09 12:08:04 t 1 2 72139 217 0.00 2019-07-09 11:58:21 2019-07-09 12:08:27 t 1 2 72141 217 0.00 2019-07-09 12:01:30 2019-07-09 12:11:35 t 1 2 72144 217 0.00 2019-07-09 12:09:02 2019-07-09 12:19:07 t 1 2 71601 207 0.00 2019-07-07 10:46:23 2019-07-07 10:46:34 t 1 2 71602 207 0.00 2019-07-07 10:46:56 2019-07-07 10:47:17 t 1 2 71608 218 0.00 2019-07-07 10:09:17 2019-07-07 11:19:22 t 1 2 71611 220 0.00 2019-07-07 11:17:33 2019-07-07 11:27:38 t 1 2 71613 207 0.00 2019-07-07 12:04:28 2019-07-07 12:04:36 t 1 2 71616 207 0.00 2019-07-07 12:08:26 2019-07-07 12:08:59 t 1 2 71622 207 0.00 2019-07-07 12:20:54 2019-07-07 12:21:32 t 1 2 71623 207 0.00 2019-07-07 12:22:01 2019-07-07 12:22:28 t 1 2 71624 207 0.00 2019-07-07 12:39:31 2019-07-07 12:40:36 t 1 2 71625 207 0.00 2019-07-07 12:40:59 2019-07-07 12:41:11 t 1 2 71626 207 0.00 2019-07-07 12:41:35 2019-07-07 12:41:51 t 1 2 71627 207 0.00 2019-07-07 12:42:16 2019-07-07 12:43:31 t 1 2 71628 207 0.00 2019-07-07 12:45:51 2019-07-07 12:46:18 t 1 2 71629 207 0.00 2019-07-07 12:47:08 2019-07-07 12:47:28 t 1 2 71630 207 0.00 2019-07-07 12:48:09 2019-07-07 12:48:10 t 1 2 71635 207 0.00 2019-07-07 12:54:03 2019-07-07 12:54:19 t 1 2 71636 207 0.00 2019-07-07 12:54:35 2019-07-07 12:54:39 t 1 2 71637 207 0.00 2019-07-07 12:54:56 2019-07-07 12:56:01 t 1 2 71638 207 0.00 2019-07-07 12:56:22 2019-07-07 12:57:23 t 1 2 71639 207 0.00 2019-07-07 12:58:49 2019-07-07 12:59:03 t 1 2 71641 207 0.00 2019-07-07 13:00:38 2019-07-07 13:00:43 t 1 2 71642 207 0.00 2019-07-07 13:01:27 2019-07-07 13:01:41 t 1 2 71649 207 0.00 2019-07-07 13:09:17 2019-07-07 13:09:24 t 1 2 71652 220 0.00 2019-07-07 12:57:49 2019-07-07 13:12:55 t 1 2 71653 207 0.00 2019-07-07 13:13:00 2019-07-07 13:13:28 t 1 2 71662 207 0.00 2019-07-07 13:22:10 2019-07-07 13:22:16 t 1 2 71663 217 0.00 2019-07-07 12:09:37 2019-07-07 13:22:42 t 1 2 71666 207 0.00 2019-07-07 13:23:35 2019-07-07 13:23:41 t 1 2 71669 207 0.00 2019-07-07 13:25:28 2019-07-07 13:25:44 t 1 2 71676 207 0.00 2019-07-07 13:30:41 2019-07-07 13:30:45 t 1 2 71677 207 0.00 2019-07-07 13:31:03 2019-07-07 13:31:19 t 1 2 71679 207 0.00 2019-07-07 13:32:03 2019-07-07 13:32:12 t 1 2 71680 207 0.00 2019-07-07 13:32:34 2019-07-07 13:32:43 t 1 2 71684 207 0.00 2019-07-07 13:36:02 2019-07-07 13:37:04 t 1 2 71685 212 0.00 2019-07-07 13:37:47 2019-07-07 13:37:48 t 1 2 71689 212 0.00 2019-07-07 13:39:11 2019-07-07 13:40:15 t 1 2 71690 207 0.00 2019-07-07 13:40:19 2019-07-07 13:41:22 t 1 2 71691 220 0.00 2019-07-07 13:13:25 2019-07-07 13:43:31 t 1 2 71694 207 0.00 2019-07-07 13:47:13 2019-07-07 13:48:02 t 1 2 71700 204 0.00 2019-07-07 13:47:40 2019-07-07 14:09:41 t 1 2 71962 212 0.00 2019-07-08 13:41:44 2019-07-08 13:45:34 t 1 2 71965 212 0.00 2019-07-08 14:00:31 2019-07-08 14:01:28 t 1 2 71968 218 0.00 2019-07-08 13:59:55 2019-07-08 14:10:00 t 1 2 71970 217 0.00 2019-07-08 13:38:30 2019-07-08 14:18:35 t 1 2 71974 217 0.00 2019-07-08 14:35:22 2019-07-08 14:36:06 t 1 2 71975 217 0.00 2019-07-08 14:40:06 2019-07-08 14:40:40 t 1 2 81042 302 0.00 2019-08-08 02:53:05 2019-08-08 04:36:58 t 1 2 71988 230 0.00 2019-07-08 15:30:07 2019-07-08 15:30:47 t 1 2 71989 207 0.00 2019-07-08 15:31:12 2019-07-08 15:32:12 t 1 2 71990 206 0.00 2019-07-08 15:40:14 2019-07-08 15:41:16 t 1 2 81052 217 0.00 2019-08-08 08:22:50 2019-08-08 08:22:50 f 1 2 71997 217 0.00 2019-07-08 16:00:59 2019-07-08 16:31:05 t 1 2 71998 232 0.00 2019-07-08 13:05:07 2019-07-08 16:40:12 t 1 2 71999 212 0.00 2019-07-08 16:44:41 2019-07-08 16:45:44 t 1 2 72002 212 0.00 2019-07-08 17:02:16 2019-07-08 17:04:05 t 1 2 72006 212 0.00 2019-07-08 17:24:31 2019-07-08 17:30:09 t 1 2 72009 220 0.00 2019-07-08 18:04:40 2019-07-08 18:08:10 t 1 2 72010 212 0.00 2019-07-08 18:10:47 2019-07-08 18:11:16 t 1 2 72012 212 0.00 2019-07-08 18:34:48 2019-07-08 18:35:32 t 1 2 72015 217 0.00 2019-07-08 18:41:38 2019-07-08 18:56:43 t 1 2 72026 217 0.00 2019-07-08 17:13:47 2019-07-08 19:53:26 t 1 2 72027 212 0.00 2019-07-08 20:00:30 2019-07-08 20:00:53 t 1 2 72028 220 0.00 2019-07-08 19:31:35 2019-07-08 20:16:51 t 1 1 81054 247 0.00 2019-08-08 07:50:40 2019-08-08 08:34:45 t 1 2 72032 218 0.00 2019-07-08 16:05:18 2019-07-08 20:30:24 t 1 2 72033 217 0.00 2019-07-08 16:17:36 2019-07-08 20:32:09 t 1 2 72042 212 0.00 2019-07-08 21:56:07 2019-07-08 21:56:47 t 1 2 72043 217 0.00 2019-07-08 21:57:19 2019-07-08 22:12:24 t 1 2 72044 217 0.00 2019-07-08 22:08:56 2019-07-08 22:19:01 t 1 2 72049 217 0.00 2019-07-08 22:40:42 2019-07-08 22:50:47 t 1 2 72050 220 0.00 2019-07-08 21:38:37 2019-07-08 22:58:48 t 1 1 72054 202 0.00 2019-07-08 23:14:29 2019-07-08 23:15:32 t 1 2 72055 218 0.00 2019-07-08 23:15:48 2019-07-08 23:16:16 t 1 2 72057 212 0.00 2019-07-08 23:25:47 2019-07-08 23:26:50 t 1 2 72058 230 0.00 2019-07-08 22:16:57 2019-07-08 23:38:31 t 1 2 72059 212 0.00 2019-07-08 23:34:50 2019-07-08 23:38:39 t 1 2 72064 212 0.00 2019-07-09 00:00:50 2019-07-09 00:01:44 t 1 2 72067 212 0.00 2019-07-09 00:13:35 2019-07-09 00:14:04 t 1 2 72069 212 0.00 2019-07-09 00:20:08 2019-07-09 00:20:48 t 1 2 72076 217 0.00 2019-07-09 01:16:23 2019-07-09 01:51:28 t 1 2 72145 217 0.00 2019-07-09 12:12:27 2019-07-09 12:22:32 t 1 2 72146 212 0.00 2019-07-09 12:33:42 2019-07-09 12:34:07 t 1 2 72148 212 0.00 2019-07-09 12:46:18 2019-07-09 12:46:39 t 1 2 72151 212 0.00 2019-07-09 13:04:53 2019-07-09 13:08:57 t 1 2 72152 212 0.00 2019-07-09 13:11:50 2019-07-09 13:12:45 t 1 2 72153 212 0.00 2019-07-09 13:26:09 2019-07-09 13:27:06 t 1 2 72155 217 0.00 2019-07-09 13:31:20 2019-07-09 13:32:23 t 1 2 72156 217 0.00 2019-07-09 13:32:46 2019-07-09 13:33:03 t 1 2 72159 217 0.00 2019-07-09 13:37:08 2019-07-09 13:38:13 t 1 2 72160 217 0.00 2019-07-09 13:51:18 2019-07-09 13:52:21 t 1 2 72162 217 0.00 2019-07-09 13:52:53 2019-07-09 13:53:56 t 1 2 72164 212 0.00 2019-07-09 14:21:49 2019-07-09 14:22:17 t 1 2 72166 216 0.00 2019-07-09 14:33:19 2019-07-09 14:41:16 t 1 2 72167 212 0.00 2019-07-09 14:41:51 2019-07-09 14:41:52 t 1 2 72168 212 0.00 2019-07-09 14:42:04 2019-07-09 14:42:45 t 1 2 72170 207 0.00 2019-07-09 15:08:52 2019-07-09 15:09:53 t 1 2 72177 207 0.00 2019-07-09 15:24:42 2019-07-09 15:25:45 t 1 2 72179 207 0.00 2019-07-09 15:28:36 2019-07-09 15:29:49 t 1 2 72183 230 0.00 2019-07-09 13:16:40 2019-07-09 16:06:45 t 1 2 72185 212 0.00 2019-07-09 17:28:11 2019-07-09 17:29:21 t 1 2 72186 217 0.00 2019-07-09 17:37:23 2019-07-09 17:52:29 t 1 2 72187 212 0.00 2019-07-09 17:56:38 2019-07-09 17:58:15 t 1 2 72193 217 0.00 2019-07-09 18:43:45 2019-07-09 18:43:51 t 1 2 72194 212 0.00 2019-07-09 18:46:29 2019-07-09 18:47:27 t 1 2 72198 217 0.00 2019-07-09 19:19:36 2019-07-09 19:22:35 t 1 2 72214 217 0.00 2019-07-09 21:22:22 2019-07-09 21:32:02 t 1 2 72726 220 0.00 2019-07-12 04:28:31 2019-07-12 04:30:11 t 1 1 71603 207 0.00 2019-07-07 10:48:02 2019-07-07 10:48:11 t 1 2 71605 212 0.00 2019-07-07 11:05:42 2019-07-07 11:06:46 t 1 2 71609 207 0.00 2019-07-07 11:20:38 2019-07-07 11:20:40 t 1 2 71610 207 0.00 2019-07-07 11:22:10 2019-07-07 11:22:23 t 1 2 71612 213 0.00 2019-07-07 11:41:17 2019-07-07 11:53:42 t 1 2 71614 207 0.00 2019-07-07 12:05:23 2019-07-07 12:05:41 t 1 2 71615 207 0.00 2019-07-07 12:06:42 2019-07-07 12:06:46 t 1 2 71618 207 0.00 2019-07-07 12:10:50 2019-07-07 12:11:03 t 1 2 71619 207 0.00 2019-07-07 12:11:55 2019-07-07 12:11:57 t 1 2 71620 207 0.00 2019-07-07 12:20:01 2019-07-07 12:20:17 t 1 2 71621 207 0.00 2019-07-07 12:20:31 2019-07-07 12:20:40 t 1 2 71634 207 0.00 2019-07-07 12:53:12 2019-07-07 12:53:42 t 1 2 71640 207 0.00 2019-07-07 12:59:27 2019-07-07 12:59:37 t 1 2 71645 207 0.00 2019-07-07 13:05:11 2019-07-07 13:05:14 t 1 2 71648 207 0.00 2019-07-07 13:08:39 2019-07-07 13:08:42 t 1 2 71650 207 0.00 2019-07-07 13:10:20 2019-07-07 13:11:21 t 1 2 71658 207 0.00 2019-07-07 13:19:03 2019-07-07 13:19:22 t 1 2 71659 207 0.00 2019-07-07 13:19:41 2019-07-07 13:19:51 t 1 2 71661 212 0.00 2019-07-07 13:20:37 2019-07-07 13:21:42 t 1 2 72729 220 0.00 2019-07-12 04:33:15 2019-07-12 04:34:49 t 1 1 71667 207 0.00 2019-07-07 13:23:58 2019-07-07 13:24:58 t 1 2 71673 207 0.00 2019-07-07 13:28:19 2019-07-07 13:28:32 t 1 2 71674 207 0.00 2019-07-07 13:29:00 2019-07-07 13:30:04 t 1 2 71675 217 0.00 2019-07-07 13:30:37 2019-07-07 13:30:37 f 1 2 71678 212 0.00 2019-07-07 13:31:13 2019-07-07 13:31:30 t 1 2 71681 212 0.00 2019-07-07 13:32:05 2019-07-07 13:33:06 t 1 2 71688 207 0.00 2019-07-07 13:38:34 2019-07-07 13:39:34 t 1 2 71692 207 0.00 2019-07-07 13:46:37 2019-07-07 13:46:38 t 1 2 71695 217 0.00 2019-07-07 13:29:20 2019-07-07 13:49:25 t 1 2 71697 218 0.00 2019-07-07 13:38:15 2019-07-07 13:53:20 t 1 2 71698 212 0.00 2019-07-07 13:55:24 2019-07-07 13:56:32 t 1 2 71699 217 0.00 2019-07-07 13:25:30 2019-07-07 14:00:35 t 1 2 71963 212 0.00 2019-07-08 13:47:44 2019-07-08 13:48:52 t 1 2 71964 212 0.00 2019-07-08 13:55:07 2019-07-08 13:55:36 t 1 2 71967 217 0.00 2019-07-08 13:57:25 2019-07-08 14:07:30 t 1 2 71969 206 0.00 2019-07-08 14:15:39 2019-07-08 14:16:43 t 1 2 71972 206 0.00 2019-07-08 14:28:40 2019-07-08 14:29:44 t 1 2 71973 212 0.00 2019-07-08 14:30:15 2019-07-08 14:30:46 t 1 2 71979 218 0.00 2019-07-08 14:49:34 2019-07-08 14:50:49 t 1 2 71982 220 0.00 2019-07-08 14:57:23 2019-07-08 15:02:32 t 1 2 71983 217 0.00 2019-07-08 15:02:42 2019-07-08 15:03:15 t 1 2 71986 218 0.00 2019-07-08 15:27:42 2019-07-08 15:27:59 t 1 2 71991 206 0.00 2019-07-08 15:41:37 2019-07-08 15:42:41 t 1 2 71995 217 0.00 2019-07-08 15:40:58 2019-07-08 16:06:03 t 1 2 71996 212 0.00 2019-07-08 16:24:04 2019-07-08 16:25:06 t 1 2 72000 217 0.00 2019-07-08 13:26:10 2019-07-08 16:51:16 t 1 2 72003 217 0.00 2019-07-08 17:11:05 2019-07-08 17:11:06 t 1 2 72004 212 0.00 2019-07-08 17:12:00 2019-07-08 17:12:35 t 1 2 72011 212 0.00 2019-07-08 18:17:49 2019-07-08 18:18:12 t 1 2 81043 302 0.00 2019-08-08 04:41:07 2019-08-08 05:01:13 t 1 2 72018 220 0.00 2019-07-08 18:46:04 2019-07-08 19:15:20 t 1 1 72020 217 0.00 2019-07-08 19:26:06 2019-07-08 19:27:07 t 1 2 72022 220 0.00 2019-07-08 19:31:23 2019-07-08 19:31:23 f 1 1 72034 212 0.00 2019-07-08 20:37:50 2019-07-08 20:38:28 t 1 2 72036 212 0.00 2019-07-08 20:58:18 2019-07-08 20:58:50 t 1 2 72037 212 0.00 2019-07-08 21:32:11 2019-07-08 21:33:02 t 1 2 72039 220 0.00 2019-07-08 20:16:51 2019-07-08 21:38:37 t 1 1 72040 212 0.00 2019-07-08 21:41:42 2019-07-08 21:42:45 t 1 2 72041 217 0.00 2019-07-08 20:32:16 2019-07-08 21:47:21 t 1 2 72045 217 0.00 2019-07-08 22:14:53 2019-07-08 22:24:58 t 1 2 81047 234 0.00 2019-08-08 05:49:08 2019-08-08 06:19:14 t 1 2 72051 217 0.00 2019-07-08 22:56:40 2019-07-08 22:59:00 t 1 2 72056 212 0.00 2019-07-08 23:23:00 2019-07-08 23:23:21 t 1 2 72062 204 0.00 2019-07-08 23:26:34 2019-07-08 23:54:39 t 1 2 72065 212 0.00 2019-07-09 00:05:51 2019-07-09 00:06:20 t 1 2 72071 217 0.00 2019-07-08 23:06:29 2019-07-09 00:56:47 t 1 2 81049 288 0.00 2019-08-08 07:38:50 2019-08-08 07:39:55 t 1 2 72074 218 0.00 2019-07-09 01:36:40 2019-07-09 01:37:00 t 1 2 72075 230 0.00 2019-07-08 23:50:07 2019-07-09 01:46:26 t 1 2 72079 217 0.00 2019-07-09 02:26:10 2019-07-09 02:41:15 t 1 2 72080 217 0.00 2019-07-09 02:49:29 2019-07-09 02:59:34 t 1 2 72147 218 0.00 2019-07-09 12:25:28 2019-07-09 12:35:33 t 1 2 72149 212 0.00 2019-07-09 12:54:19 2019-07-09 12:57:26 t 1 2 72157 217 0.00 2019-07-09 13:33:56 2019-07-09 13:35:03 t 1 2 72158 217 0.00 2019-07-09 13:35:25 2019-07-09 13:36:26 t 1 2 72163 232 0.00 2019-07-09 09:28:31 2019-07-09 14:08:36 t 1 2 72169 220 0.00 2019-07-09 15:01:47 2019-07-09 15:01:53 t 1 2 72171 212 0.00 2019-07-09 15:09:47 2019-07-09 15:10:37 t 1 2 72172 218 0.00 2019-07-09 15:11:40 2019-07-09 15:12:36 t 1 2 72174 217 0.00 2019-07-09 15:03:12 2019-07-09 15:18:17 t 1 2 72176 207 0.00 2019-07-09 15:23:09 2019-07-09 15:24:10 t 1 2 72180 207 0.00 2019-07-09 15:30:16 2019-07-09 15:30:29 t 1 2 81073 288 0.00 2019-08-08 09:36:10 2019-08-08 09:37:13 t 1 2 72184 217 0.00 2019-07-09 15:57:39 2019-07-09 16:22:44 t 1 2 72191 218 0.00 2019-07-09 18:21:57 2019-07-09 18:23:41 t 1 2 72196 217 0.00 2019-07-09 18:28:59 2019-07-09 18:59:04 t 1 2 72199 217 0.00 2019-07-09 19:30:22 2019-07-09 19:45:28 t 1 2 72200 230 0.00 2019-07-09 18:14:51 2019-07-09 19:46:26 t 1 2 72201 220 0.00 2019-07-09 18:33:56 2019-07-09 19:49:01 t 1 2 72203 220 0.00 2019-07-09 19:44:07 2019-07-09 19:54:12 t 1 2 72204 220 0.00 2019-07-09 19:45:42 2019-07-09 19:55:47 t 1 2 72205 217 0.00 2019-07-09 19:48:13 2019-07-09 19:58:19 t 1 2 72207 217 0.00 2019-07-09 20:07:13 2019-07-09 20:22:19 t 1 2 72208 217 0.00 2019-07-09 20:14:12 2019-07-09 20:34:17 t 1 2 72210 217 0.00 2019-07-09 20:26:18 2019-07-09 20:46:23 t 1 2 72212 217 0.00 2019-07-09 20:38:47 2019-07-09 20:53:58 t 1 2 72213 218 0.00 2019-07-09 20:57:57 2019-07-09 21:13:02 t 1 2 72216 212 0.00 2019-07-09 22:05:11 2019-07-09 22:05:51 t 1 2 72219 220 0.00 2019-07-09 22:00:23 2019-07-09 22:18:05 t 1 2 72221 217 0.00 2019-07-09 21:57:08 2019-07-09 22:42:13 t 1 2 72222 217 0.00 2019-07-09 22:43:52 2019-07-09 22:44:58 t 1 2 72230 212 0.00 2019-07-09 23:13:31 2019-07-09 23:13:31 t 1 2 72267 218 0.00 2019-07-10 06:12:51 2019-07-10 06:22:56 t 1 2 72277 212 0.00 2019-07-10 07:55:59 2019-07-10 08:00:08 t 1 2 72280 217 0.00 2019-07-10 08:04:01 2019-07-10 08:19:07 t 1 2 72283 212 0.00 2019-07-10 08:39:57 2019-07-10 09:01:21 t 1 2 72284 220 0.00 2019-07-10 09:09:49 2019-07-10 09:16:12 t 1 2 71604 210 0.00 2019-07-07 10:59:19 2019-07-07 11:02:15 t 1 2 71606 217 0.00 2019-07-07 10:47:25 2019-07-07 11:12:30 t 1 2 71607 218 0.00 2019-07-07 11:14:10 2019-07-07 11:15:08 t 1 2 71617 207 0.00 2019-07-07 12:09:15 2019-07-07 12:09:33 t 1 2 71631 207 0.00 2019-07-07 12:48:52 2019-07-07 12:49:52 t 1 2 71632 207 0.00 2019-07-07 12:50:44 2019-07-07 12:50:48 t 1 2 71633 207 0.00 2019-07-07 12:51:14 2019-07-07 12:52:15 t 1 2 71643 207 0.00 2019-07-07 13:02:31 2019-07-07 13:02:33 t 1 2 71644 207 0.00 2019-07-07 13:03:03 2019-07-07 13:03:14 t 1 2 71646 207 0.00 2019-07-07 13:06:27 2019-07-07 13:06:44 t 1 2 71647 207 0.00 2019-07-07 13:07:10 2019-07-07 13:07:28 t 1 2 71651 207 0.00 2019-07-07 13:12:40 2019-07-07 13:12:42 t 1 2 71654 207 0.00 2019-07-07 13:14:25 2019-07-07 13:14:37 t 1 2 71655 207 0.00 2019-07-07 13:15:33 2019-07-07 13:15:50 t 1 2 71656 207 0.00 2019-07-07 13:16:58 2019-07-07 13:17:08 t 1 2 71657 207 0.00 2019-07-07 13:17:24 2019-07-07 13:18:27 t 1 2 71660 207 0.00 2019-07-07 13:20:19 2019-07-07 13:21:17 t 1 2 71665 207 0.00 2019-07-07 13:22:40 2019-07-07 13:22:57 t 1 2 71668 212 0.00 2019-07-07 13:24:23 2019-07-07 13:25:26 t 1 2 71670 207 0.00 2019-07-07 13:26:08 2019-07-07 13:26:21 t 1 2 71671 207 0.00 2019-07-07 13:26:58 2019-07-07 13:27:08 t 1 2 71672 207 0.00 2019-07-07 13:27:58 2019-07-07 13:28:00 t 1 2 71682 207 0.00 2019-07-07 13:33:58 2019-07-07 13:34:08 t 1 2 71683 207 0.00 2019-07-07 13:34:48 2019-07-07 13:35:09 t 1 2 71686 207 0.00 2019-07-07 13:37:52 2019-07-07 13:37:56 t 1 2 71687 212 0.00 2019-07-07 13:38:57 2019-07-07 13:38:58 t 1 2 71693 216 0.00 2019-07-07 13:31:55 2019-07-07 13:47:12 t 1 2 71696 212 0.00 2019-07-07 13:48:20 2019-07-07 13:49:25 t 1 2 71701 202 0.00 2019-07-07 14:13:06 2019-07-07 14:14:10 t 1 2 71966 212 0.00 2019-07-08 14:04:57 2019-07-08 14:05:38 t 1 2 71971 212 0.00 2019-07-08 14:19:54 2019-07-08 14:20:19 t 1 2 71976 212 0.00 2019-07-08 14:42:55 2019-07-08 14:43:16 t 1 2 71977 218 0.00 2019-07-08 14:42:55 2019-07-08 14:44:19 t 1 2 71980 207 0.00 2019-07-08 14:54:09 2019-07-08 14:54:39 t 1 2 71981 212 0.00 2019-07-08 15:00:12 2019-07-08 15:00:44 t 1 2 71984 217 0.00 2019-07-08 15:04:39 2019-07-08 15:07:15 t 1 2 71985 216 0.00 2019-07-08 14:39:11 2019-07-08 15:11:15 t 1 2 71987 207 0.00 2019-07-08 15:28:10 2019-07-08 15:29:21 t 1 2 71992 217 0.00 2019-07-08 15:34:46 2019-07-08 15:44:51 t 1 2 71994 212 0.00 2019-07-08 15:56:47 2019-07-08 15:57:29 t 1 2 72001 212 0.00 2019-07-08 16:59:38 2019-07-08 17:00:23 t 1 2 72005 216 0.00 2019-07-08 16:19:15 2019-07-08 17:24:50 t 1 2 72007 212 0.00 2019-07-08 17:44:23 2019-07-08 17:45:07 t 1 2 72008 212 0.00 2019-07-08 17:55:38 2019-07-08 17:56:02 t 1 2 72014 217 0.00 2019-07-08 18:49:45 2019-07-08 18:50:28 t 1 2 72016 212 0.00 2019-07-08 19:03:47 2019-07-08 19:04:07 t 1 2 72017 212 0.00 2019-07-08 19:12:59 2019-07-08 19:13:40 t 1 2 72019 217 0.00 2019-07-08 18:49:04 2019-07-08 19:19:09 t 1 2 72021 220 0.00 2019-07-08 19:31:00 2019-07-08 19:31:00 f 1 1 72023 220 0.00 2019-07-08 19:15:20 2019-07-08 19:31:35 t 1 1 72024 212 0.00 2019-07-08 19:46:03 2019-07-08 19:46:22 t 1 2 72730 220 0.00 2019-07-12 04:34:49 2019-07-12 04:36:21 t 1 1 72029 212 0.00 2019-07-08 20:19:17 2019-07-08 20:19:55 t 1 2 72031 212 0.00 2019-07-08 20:29:28 2019-07-08 20:30:05 t 1 2 72035 218 0.00 2019-07-08 20:56:30 2019-07-08 20:57:25 t 1 2 72038 212 0.00 2019-07-08 21:33:13 2019-07-08 21:34:14 t 1 2 72046 204 0.00 2019-07-08 22:20:07 2019-07-08 22:28:34 t 1 2 72048 217 0.00 2019-07-08 22:29:56 2019-07-08 22:40:01 t 1 2 72052 212 0.00 2019-07-08 23:08:06 2019-07-08 23:08:29 t 1 2 72053 212 0.00 2019-07-08 23:11:14 2019-07-08 23:11:36 t 1 2 72060 212 0.00 2019-07-08 23:43:09 2019-07-08 23:44:11 t 1 2 72061 230 0.00 2019-07-08 23:47:20 2019-07-08 23:49:44 t 1 2 72063 212 0.00 2019-07-08 23:58:11 2019-07-08 23:58:37 t 1 2 72066 218 0.00 2019-07-09 00:12:29 2019-07-09 00:13:13 t 1 2 72068 218 0.00 2019-07-09 00:19:02 2019-07-09 00:19:28 t 1 2 72070 232 0.00 2019-07-08 18:53:37 2019-07-09 00:48:42 t 1 2 81044 234 0.00 2019-08-08 04:22:04 2019-08-08 05:12:09 t 1 2 81045 324 0.00 2019-08-08 02:12:48 2019-08-08 05:27:54 t 1 2 72078 217 0.00 2019-07-09 01:50:40 2019-07-09 02:10:45 t 1 2 72154 217 0.00 2019-07-09 13:22:38 2019-07-09 13:29:34 t 1 2 72161 212 0.00 2019-07-09 13:40:35 2019-07-09 13:52:31 t 1 2 72165 212 0.00 2019-07-09 14:30:49 2019-07-09 14:31:10 t 1 2 72173 220 0.00 2019-07-09 15:03:22 2019-07-09 15:13:27 t 1 2 72175 207 0.00 2019-07-09 15:22:34 2019-07-09 15:22:46 t 1 2 72178 207 0.00 2019-07-09 15:26:49 2019-07-09 15:28:03 t 1 2 72182 212 0.00 2019-07-09 15:56:14 2019-07-09 15:56:48 t 1 2 72188 217 0.00 2019-07-09 17:45:13 2019-07-09 18:00:18 t 1 2 72189 217 0.00 2019-07-09 15:01:56 2019-07-09 18:07:01 t 1 2 72190 216 0.00 2019-07-09 14:54:37 2019-07-09 18:18:19 t 1 2 72192 220 0.00 2019-07-09 18:32:40 2019-07-09 18:32:52 t 1 2 72195 217 0.00 2019-07-09 18:44:11 2019-07-09 18:54:16 t 1 2 72197 212 0.00 2019-07-09 19:17:03 2019-07-09 19:17:22 t 1 2 72202 217 0.00 2019-07-09 19:39:04 2019-07-09 19:54:09 t 1 2 72206 217 0.00 2019-07-09 19:53:19 2019-07-09 20:08:25 t 1 2 72209 212 0.00 2019-07-09 20:45:23 2019-07-09 20:45:46 t 1 2 72211 217 0.00 2019-07-09 20:34:10 2019-07-09 20:49:15 t 1 2 72217 218 0.00 2019-07-09 22:09:39 2019-07-09 22:11:19 t 1 2 72218 232 0.00 2019-07-09 18:24:22 2019-07-09 22:14:41 t 1 2 72224 212 0.00 2019-07-09 22:55:12 2019-07-09 22:56:28 t 1 2 72268 207 0.00 2019-07-10 06:42:44 2019-07-10 06:44:21 t 1 2 72270 207 0.00 2019-07-10 07:00:48 2019-07-10 07:01:15 t 1 2 72271 207 0.00 2019-07-10 07:01:52 2019-07-10 07:02:04 t 1 2 81046 355 0.00 2019-08-08 00:37:22 2019-08-08 05:47:27 t 1 2 72275 212 0.00 2019-07-10 07:35:42 2019-07-10 07:38:31 t 1 2 72281 212 0.00 2019-07-10 08:21:35 2019-07-10 08:22:28 t 1 2 72285 217 0.00 2019-07-10 09:15:22 2019-07-10 09:24:23 t 1 2 72286 220 0.00 2019-07-10 09:25:24 2019-07-10 09:45:29 t 1 2 81048 320 0.00 2019-08-08 07:10:57 2019-08-08 07:33:55 t 1 2 72299 220 0.00 2019-07-10 11:33:46 2019-07-10 11:58:51 t 1 2 72301 220 0.00 2019-07-10 12:16:50 2019-07-10 12:26:56 t 1 2 72307 217 0.00 2019-07-10 13:15:55 2019-07-10 13:41:00 t 1 2 72311 217 0.00 2019-07-10 14:27:53 2019-07-10 14:28:09 t 1 2 81051 324 0.00 2019-08-08 07:49:52 2019-08-08 07:56:12 t 1 2 72319 212 0.00 2019-07-10 14:51:43 2019-07-10 14:53:06 t 1 2 72321 212 0.00 2019-07-10 14:53:49 2019-07-10 14:53:59 t 1 2 72733 220 0.00 2019-07-12 04:39:27 2019-07-12 04:41:02 t 1 1 72327 217 0.00 2019-07-10 14:01:03 2019-07-10 15:01:08 t 1 2 71702 217 0.00 2019-07-07 14:01:46 2019-07-07 14:26:05 t 1 2 71703 220 0.00 2019-07-07 14:12:47 2019-07-07 14:32:52 t 1 2 71704 210 0.00 2019-07-07 13:06:52 2019-07-07 14:46:57 t 1 2 71705 207 0.00 2019-07-07 14:47:41 2019-07-07 14:48:07 t 1 2 71708 207 0.00 2019-07-07 14:51:10 2019-07-07 14:53:13 t 1 2 71713 207 0.00 2019-07-07 15:05:58 2019-07-07 15:07:02 t 1 2 71717 207 0.00 2019-07-07 15:14:29 2019-07-07 15:15:04 t 1 2 71720 217 0.00 2019-07-07 15:22:26 2019-07-07 15:32:32 t 1 2 71724 207 0.00 2019-07-07 16:08:28 2019-07-07 16:08:33 t 1 2 71727 217 0.00 2019-07-07 15:49:23 2019-07-07 16:09:28 t 1 2 71728 207 0.00 2019-07-07 16:09:31 2019-07-07 16:10:33 t 1 2 71732 207 0.00 2019-07-07 16:13:23 2019-07-07 16:13:38 t 1 2 71734 207 0.00 2019-07-07 16:14:21 2019-07-07 16:15:44 t 1 2 71738 210 0.00 2019-07-07 16:28:12 2019-07-07 16:41:58 t 1 2 71741 212 0.00 2019-07-07 17:15:49 2019-07-07 17:17:00 t 1 2 71749 212 0.00 2019-07-07 19:36:12 2019-07-07 19:36:46 t 1 2 71753 216 0.00 2019-07-07 18:03:48 2019-07-07 20:24:59 t 1 2 71756 217 0.00 2019-07-07 18:35:44 2019-07-07 20:47:36 t 1 2 71757 218 0.00 2019-07-07 20:41:29 2019-07-07 20:51:34 t 1 2 71758 230 0.00 2019-07-07 20:55:43 2019-07-07 20:56:35 t 1 2 71759 230 0.00 2019-07-07 20:57:14 2019-07-07 20:57:19 t 1 2 71761 216 0.00 2019-07-07 20:25:57 2019-07-07 21:11:35 t 1 2 71766 206 0.00 2019-07-07 21:21:44 2019-07-07 21:22:47 t 1 2 71767 212 0.00 2019-07-07 21:27:15 2019-07-07 21:28:02 t 1 2 72734 220 0.00 2019-07-12 04:41:02 2019-07-12 04:42:42 t 1 1 71774 212 0.00 2019-07-07 22:08:48 2019-07-07 22:09:15 t 1 2 71779 217 0.00 2019-07-07 22:06:07 2019-07-07 22:21:12 t 1 2 71782 217 0.00 2019-07-07 22:25:08 2019-07-07 22:25:08 f 1 2 71785 206 0.00 2019-07-07 22:28:23 2019-07-07 22:29:26 t 1 2 71788 216 0.00 2019-07-07 21:51:47 2019-07-07 22:33:25 t 1 2 71789 212 0.00 2019-07-07 22:32:09 2019-07-07 22:34:20 t 1 2 71795 212 0.00 2019-07-07 22:58:44 2019-07-07 22:58:50 t 1 2 71804 206 0.00 2019-07-07 23:37:05 2019-07-07 23:37:11 t 1 2 71805 206 0.00 2019-07-07 23:37:20 2019-07-07 23:38:27 t 1 2 71806 206 0.00 2019-07-07 23:39:43 2019-07-07 23:40:45 t 1 2 71809 212 0.00 2019-07-07 23:45:12 2019-07-07 23:45:54 t 1 2 72220 220 0.00 2019-07-09 22:18:45 2019-07-09 22:21:45 t 1 2 72223 218 0.00 2019-07-09 22:52:35 2019-07-09 22:56:12 t 1 2 72225 212 0.00 2019-07-09 23:03:02 2019-07-09 23:03:22 t 1 2 72226 217 0.00 2019-07-09 22:39:22 2019-07-09 23:04:27 t 1 2 72227 217 0.00 2019-07-09 23:09:01 2019-07-09 23:10:19 t 1 2 72228 217 0.00 2019-07-09 23:10:11 2019-07-09 23:12:04 t 1 2 72229 212 0.00 2019-07-09 23:12:13 2019-07-09 23:13:11 t 1 2 72269 207 0.00 2019-07-10 06:49:33 2019-07-10 06:50:44 t 1 2 72272 220 0.00 2019-07-10 02:33:41 2019-07-10 07:03:46 t 1 2 72273 212 0.00 2019-07-10 07:28:37 2019-07-10 07:34:05 t 1 2 72276 202 0.00 2019-07-10 07:55:44 2019-07-10 07:56:47 t 1 2 72278 212 0.00 2019-07-10 08:01:13 2019-07-10 08:02:29 t 1 2 72279 212 0.00 2019-07-10 08:06:57 2019-07-10 08:07:29 t 1 2 72282 217 0.00 2019-07-10 08:12:39 2019-07-10 08:22:44 t 1 2 81050 306 0.00 2019-08-08 07:52:18 2019-08-08 07:53:23 t 1 2 72291 217 0.00 2019-07-10 09:56:20 2019-07-10 10:14:56 t 1 2 72294 212 0.00 2019-07-10 11:00:36 2019-07-10 11:01:33 t 1 2 72295 212 0.00 2019-07-10 11:01:43 2019-07-10 11:03:37 t 1 2 72298 218 0.00 2019-07-10 11:32:51 2019-07-10 11:53:49 t 1 2 72300 204 0.00 2019-07-10 12:10:27 2019-07-10 12:24:20 t 1 2 72302 217 0.00 2019-07-10 12:10:46 2019-07-10 12:30:51 t 1 2 72303 217 0.00 2019-07-10 12:28:18 2019-07-10 12:43:23 t 1 2 72306 220 0.00 2019-07-10 13:12:31 2019-07-10 13:34:22 t 1 2 72309 217 0.00 2019-07-10 13:59:59 2019-07-10 14:00:50 t 1 2 72310 212 0.00 2019-07-10 14:27:48 2019-07-10 14:28:01 t 1 2 72312 212 0.00 2019-07-10 14:28:29 2019-07-10 14:28:37 t 1 2 72320 212 0.00 2019-07-10 14:53:23 2019-07-10 14:53:24 t 1 2 72330 217 0.00 2019-07-10 13:30:29 2019-07-10 15:13:21 t 1 2 72341 217 0.00 2019-07-10 15:54:18 2019-07-10 15:56:14 t 1 2 72342 217 0.00 2019-07-10 15:58:45 2019-07-10 15:58:46 t 1 2 72737 220 0.00 2019-07-12 04:46:05 2019-07-12 04:47:39 t 1 1 72744 220 0.00 2019-07-12 04:56:16 2019-07-12 04:56:25 t 1 1 72745 220 0.00 2019-07-12 05:06:46 2019-07-12 05:06:54 t 1 1 72751 212 0.00 2019-07-12 05:46:31 2019-07-12 05:49:23 t 1 2 72754 212 0.00 2019-07-12 05:54:09 2019-07-12 05:57:06 t 1 2 72755 220 0.00 2019-07-12 06:00:05 2019-07-12 06:00:14 t 1 1 72767 220 0.00 2019-07-12 06:53:02 2019-07-12 06:53:11 t 1 1 72357 218 0.00 2019-07-10 16:50:02 2019-07-10 16:52:20 t 1 2 72769 218 0.00 2019-07-12 06:56:55 2019-07-12 06:58:39 t 1 2 72363 217 0.00 2019-07-10 17:13:08 2019-07-10 17:23:13 t 1 2 72364 210 0.00 2019-07-10 17:19:40 2019-07-10 17:24:32 t 1 2 72774 236 0.00 2019-07-11 22:49:03 2019-07-12 07:34:04 t 1 2 81053 288 0.00 2019-08-08 08:27:31 2019-08-08 08:28:35 t 1 2 72777 217 0.00 2019-07-12 07:46:43 2019-07-12 07:56:49 t 1 2 72778 220 0.00 2019-07-12 08:02:36 2019-07-12 08:02:45 t 1 1 72784 220 0.00 2019-07-12 08:24:10 2019-07-12 08:24:18 t 1 1 72785 217 0.00 2019-07-12 08:32:29 2019-07-12 08:32:32 t 1 2 72786 220 0.00 2019-07-12 08:34:40 2019-07-12 08:34:49 t 1 1 72792 220 0.00 2019-07-12 08:46:15 2019-07-12 08:46:24 t 1 1 72797 220 0.00 2019-07-12 09:18:01 2019-07-12 09:18:10 t 1 1 72798 218 0.00 2019-07-12 09:24:32 2019-07-12 09:25:07 t 1 2 72801 220 0.00 2019-07-12 09:27:55 2019-07-12 09:35:56 t 1 1 72802 217 0.00 2019-07-12 08:31:59 2019-07-12 09:38:39 t 1 2 72402 217 0.00 2019-07-10 19:48:31 2019-07-10 19:58:36 t 1 2 72408 212 0.00 2019-07-10 20:15:17 2019-07-10 20:16:10 t 1 2 72808 212 0.00 2019-07-12 10:42:38 2019-07-12 10:43:21 t 1 2 81059 304 0.00 2019-08-08 08:52:03 2019-08-08 09:07:08 t 1 2 72814 236 0.00 2019-07-12 11:14:42 2019-07-12 11:24:47 t 1 2 72815 220 0.00 2019-07-12 10:24:31 2019-07-12 11:30:58 t 1 1 72418 212 0.00 2019-07-10 21:00:58 2019-07-10 21:01:25 t 1 2 72816 210 0.00 2019-07-12 11:33:07 2019-07-12 11:33:53 t 1 2 72819 236 0.00 2019-07-12 11:24:55 2019-07-12 11:40:00 t 1 2 72425 218 0.00 2019-07-10 19:45:22 2019-07-10 21:05:27 t 1 2 72426 212 0.00 2019-07-10 21:10:33 2019-07-10 21:11:00 t 1 2 72821 212 0.00 2019-07-12 12:01:20 2019-07-12 12:08:02 t 1 2 72428 220 0.00 2019-07-10 20:55:39 2019-07-10 21:20:44 t 1 2 72825 234 0.00 2019-07-12 12:22:20 2019-07-12 12:32:25 t 1 2 72826 220 0.00 2019-07-12 12:08:26 2019-07-12 12:35:38 t 1 1 72831 204 0.00 2019-07-12 14:03:50 2019-07-12 14:09:29 t 1 2 72837 220 0.00 2019-07-12 13:03:35 2019-07-12 16:17:52 t 1 1 72475 217 0.00 2019-07-11 07:16:16 2019-07-11 07:16:20 t 1 2 71706 207 0.00 2019-07-07 14:49:19 2019-07-07 14:50:20 t 1 2 71707 207 0.00 2019-07-07 14:50:43 2019-07-07 14:50:52 t 1 2 71709 207 0.00 2019-07-07 14:54:36 2019-07-07 14:55:32 t 1 2 71711 207 0.00 2019-07-07 15:00:46 2019-07-07 15:01:50 t 1 2 71712 207 0.00 2019-07-07 15:02:21 2019-07-07 15:02:56 t 1 2 71714 207 0.00 2019-07-07 15:08:39 2019-07-07 15:08:45 t 1 2 71715 207 0.00 2019-07-07 15:09:24 2019-07-07 15:10:29 t 1 2 71719 212 0.00 2019-07-07 15:25:32 2019-07-07 15:32:11 t 1 2 71721 217 0.00 2019-07-07 15:25:21 2019-07-07 15:35:26 t 1 2 71722 217 0.00 2019-07-07 16:04:52 2019-07-07 16:04:52 f 1 2 71726 207 0.00 2019-07-07 16:09:13 2019-07-07 16:09:17 t 1 2 71730 217 0.00 2019-07-07 15:57:01 2019-07-07 16:12:06 t 1 2 71731 207 0.00 2019-07-07 16:13:05 2019-07-07 16:13:12 t 1 2 71733 207 0.00 2019-07-07 16:14:12 2019-07-07 16:15:39 t 1 2 71737 207 0.00 2019-07-07 16:18:54 2019-07-07 16:33:59 t 1 2 71740 210 0.00 2019-07-07 17:07:09 2019-07-07 17:08:23 t 1 2 71742 212 0.00 2019-07-07 17:39:18 2019-07-07 17:42:16 t 1 2 71743 217 0.00 2019-07-07 17:50:05 2019-07-07 18:00:11 t 1 2 71744 209 0.00 2019-07-07 18:27:44 2019-07-07 18:28:48 t 1 2 71746 207 0.00 2019-07-07 18:29:44 2019-07-07 18:30:48 t 1 2 71750 220 0.00 2019-07-07 19:39:13 2019-07-07 19:49:18 t 1 2 81055 346 0.00 2019-08-08 08:36:10 2019-08-08 08:51:15 t 1 2 81056 320 0.00 2019-08-08 07:35:13 2019-08-08 09:00:18 t 1 2 71754 218 0.00 2019-07-07 15:55:08 2019-07-07 20:30:13 t 1 2 71760 230 0.00 2019-07-07 20:57:48 2019-07-07 20:58:49 t 1 2 71762 232 0.00 2019-07-07 21:12:23 2019-07-07 21:14:19 t 1 2 71763 217 0.00 2019-07-07 21:05:54 2019-07-07 21:16:00 t 1 2 71764 220 0.00 2019-07-07 21:02:56 2019-07-07 21:18:01 t 1 2 71765 206 0.00 2019-07-07 21:19:46 2019-07-07 21:20:50 t 1 2 71772 217 0.00 2019-07-07 22:02:41 2019-07-07 22:03:37 t 1 2 71773 218 0.00 2019-07-07 22:06:46 2019-07-07 22:08:28 t 1 2 71786 212 0.00 2019-07-07 22:11:41 2019-07-07 22:30:31 t 1 2 71787 210 0.00 2019-07-07 22:31:06 2019-07-07 22:32:55 t 1 2 71791 212 0.00 2019-07-07 22:45:31 2019-07-07 22:48:49 t 1 2 71794 217 0.00 2019-07-07 22:54:41 2019-07-07 22:58:32 t 1 2 71796 212 0.00 2019-07-07 22:59:18 2019-07-07 23:00:44 t 1 2 71797 210 0.00 2019-07-07 22:49:06 2019-07-07 23:13:22 t 1 2 71799 217 0.00 2019-07-07 22:57:33 2019-07-07 23:22:39 t 1 2 71801 212 0.00 2019-07-07 23:28:38 2019-07-07 23:28:38 t 1 2 71810 206 0.00 2019-07-07 23:45:57 2019-07-07 23:46:00 t 1 2 71811 210 0.00 2019-07-07 23:47:12 2019-07-07 23:49:05 t 1 2 71812 212 0.00 2019-07-07 23:53:58 2019-07-07 23:55:03 t 1 2 72231 212 0.00 2019-07-09 23:13:45 2019-07-09 23:13:45 t 1 2 72237 220 0.00 2019-07-09 23:19:48 2019-07-09 23:29:53 t 1 2 72244 217 0.00 2019-07-09 23:51:19 2019-07-09 23:51:20 t 1 2 72248 202 0.00 2019-07-09 23:57:29 2019-07-09 23:58:32 t 1 2 72252 217 0.00 2019-07-10 00:02:37 2019-07-10 00:04:56 t 1 2 72257 212 0.00 2019-07-10 00:36:41 2019-07-10 00:37:49 t 1 2 72261 212 0.00 2019-07-10 00:49:44 2019-07-10 00:50:46 t 1 2 72264 220 0.00 2019-07-10 01:59:01 2019-07-10 02:24:44 t 1 2 72265 230 0.00 2019-07-10 00:51:27 2019-07-10 02:31:32 t 1 2 72266 220 0.00 2019-07-10 02:26:45 2019-07-10 02:33:26 t 1 2 72288 212 0.00 2019-07-10 09:54:44 2019-07-10 09:55:35 t 1 2 81058 234 0.00 2019-08-08 08:04:43 2019-08-08 09:04:49 t 1 2 72292 212 0.00 2019-07-10 10:26:24 2019-07-10 10:27:46 t 1 2 72293 232 0.00 2019-07-10 08:27:16 2019-07-10 10:52:22 t 1 2 72296 217 0.00 2019-07-10 08:30:11 2019-07-10 11:09:41 t 1 2 72297 212 0.00 2019-07-10 11:20:59 2019-07-10 11:21:26 t 1 2 72304 204 0.00 2019-07-10 12:28:02 2019-07-10 13:06:10 t 1 2 72305 230 0.00 2019-07-10 12:18:00 2019-07-10 13:08:05 t 1 2 72308 220 0.00 2019-07-10 13:56:01 2019-07-10 13:57:20 t 1 2 72313 212 0.00 2019-07-10 14:28:44 2019-07-10 14:30:27 t 1 2 72736 220 0.00 2019-07-12 04:44:16 2019-07-12 04:46:05 t 1 1 72739 220 0.00 2019-07-12 04:49:13 2019-07-12 04:50:50 t 1 1 72740 220 0.00 2019-07-12 04:50:50 2019-07-12 04:52:32 t 1 1 72318 217 0.00 2019-07-10 14:31:40 2019-07-10 14:51:45 t 1 2 72322 212 0.00 2019-07-10 14:54:49 2019-07-10 14:55:46 t 1 2 72323 212 0.00 2019-07-10 14:55:51 2019-07-10 14:56:49 t 1 2 72324 212 0.00 2019-07-10 14:57:15 2019-07-10 14:58:11 t 1 2 72326 212 0.00 2019-07-10 14:58:20 2019-07-10 15:00:15 t 1 2 72328 230 0.00 2019-07-10 13:13:56 2019-07-10 15:01:10 t 1 2 72742 220 0.00 2019-07-12 04:54:05 2019-07-12 04:55:52 t 1 1 72334 218 0.00 2019-07-10 15:18:36 2019-07-10 15:19:14 t 1 2 72746 220 0.00 2019-07-12 05:17:15 2019-07-12 05:17:24 t 1 1 72747 220 0.00 2019-07-12 05:17:32 2019-07-12 05:17:40 t 1 1 72752 220 0.00 2019-07-12 05:49:33 2019-07-12 05:49:36 t 1 1 72345 212 0.00 2019-07-10 16:01:56 2019-07-10 16:03:20 t 1 2 72349 217 0.00 2019-07-10 15:54:59 2019-07-10 16:05:05 t 1 2 81060 304 0.00 2019-08-08 09:00:14 2019-08-08 09:10:19 t 1 2 72359 212 0.00 2019-07-10 17:03:30 2019-07-10 17:03:59 t 1 2 72361 217 0.00 2019-07-10 17:03:50 2019-07-10 17:12:36 t 1 2 72753 220 0.00 2019-07-12 05:49:43 2019-07-12 05:49:44 t 1 1 72756 212 0.00 2019-07-12 06:04:29 2019-07-12 06:05:33 t 1 2 72760 212 0.00 2019-07-12 06:15:55 2019-07-12 06:16:25 t 1 2 72762 218 0.00 2019-07-12 06:27:09 2019-07-12 06:28:13 t 1 2 72372 212 0.00 2019-07-10 18:09:38 2019-07-10 18:10:07 t 1 2 72763 212 0.00 2019-07-12 06:29:54 2019-07-12 06:31:00 t 1 2 72764 220 0.00 2019-07-12 06:32:03 2019-07-12 06:32:15 t 1 1 72377 217 0.00 2019-07-10 16:39:13 2019-07-10 18:29:59 t 1 2 72378 212 0.00 2019-07-10 18:35:42 2019-07-10 18:36:08 t 1 2 72379 218 0.00 2019-07-10 17:58:04 2019-07-10 18:38:09 t 1 2 72765 212 0.00 2019-07-12 06:39:30 2019-07-12 06:40:05 t 1 2 72383 212 0.00 2019-07-10 18:48:12 2019-07-10 18:48:36 t 1 2 72387 230 0.00 2019-07-10 19:15:08 2019-07-10 19:16:13 t 1 2 72391 234 0.00 2019-07-10 18:44:48 2019-07-10 19:34:53 t 1 2 72392 217 0.00 2019-07-10 19:34:18 2019-07-10 19:39:00 t 1 2 72393 217 0.00 2019-07-10 19:39:29 2019-07-10 19:40:00 t 1 2 72768 220 0.00 2019-07-12 06:53:22 2019-07-12 06:53:22 t 1 1 72405 217 0.00 2019-07-10 19:52:53 2019-07-10 20:05:33 t 1 2 72770 220 0.00 2019-07-12 07:03:47 2019-07-12 07:03:56 t 1 1 72771 220 0.00 2019-07-12 07:09:55 2019-07-12 07:10:06 t 1 1 81062 304 0.00 2019-08-08 09:15:24 2019-08-08 09:15:30 t 1 2 81064 304 0.00 2019-08-08 09:12:15 2019-08-08 09:22:21 t 1 2 72434 218 0.00 2019-07-10 21:43:07 2019-07-10 21:58:13 t 1 2 72476 217 0.00 2019-07-11 07:16:56 2019-07-11 07:26:29 t 1 2 72477 217 0.00 2019-07-11 07:26:35 2019-07-11 07:29:01 t 1 2 72479 217 0.00 2019-07-11 07:29:10 2019-07-11 07:34:05 t 1 2 71710 207 0.00 2019-07-07 14:56:39 2019-07-07 14:57:43 t 1 2 71716 207 0.00 2019-07-07 15:12:26 2019-07-07 15:12:59 t 1 2 71718 207 0.00 2019-07-07 15:15:40 2019-07-07 15:16:41 t 1 2 71723 217 0.00 2019-07-07 16:05:04 2019-07-07 16:05:04 f 1 2 71725 212 0.00 2019-07-07 16:02:56 2019-07-07 16:09:14 t 1 2 71729 207 0.00 2019-07-07 16:11:46 2019-07-07 16:12:04 t 1 2 71735 207 0.00 2019-07-07 16:17:50 2019-07-07 16:17:52 t 1 2 71736 212 0.00 2019-07-07 16:31:14 2019-07-07 16:31:38 t 1 2 71739 217 0.00 2019-07-07 16:57:07 2019-07-07 17:07:59 t 1 2 71745 207 0.00 2019-07-07 18:28:59 2019-07-07 18:29:10 t 1 2 71747 220 0.00 2019-07-07 18:16:21 2019-07-07 18:46:30 t 1 2 71748 212 0.00 2019-07-07 18:50:12 2019-07-07 18:52:07 t 1 2 71755 204 0.00 2019-07-07 20:34:19 2019-07-07 20:35:25 t 1 2 71768 232 0.00 2019-07-07 21:13:05 2019-07-07 21:28:10 t 1 2 72738 220 0.00 2019-07-12 04:47:39 2019-07-12 04:49:13 t 1 1 71771 217 0.00 2019-07-07 21:46:48 2019-07-07 21:56:53 t 1 2 71775 217 0.00 2019-07-07 21:59:30 2019-07-07 22:09:35 t 1 2 71776 217 0.00 2019-07-07 22:16:19 2019-07-07 22:16:19 f 1 2 71777 217 0.00 2019-07-07 22:19:12 2019-07-07 22:19:12 f 1 2 71778 217 0.00 2019-07-07 22:19:40 2019-07-07 22:19:40 f 1 2 71780 217 0.00 2019-07-07 22:23:52 2019-07-07 22:23:52 f 1 2 71781 217 0.00 2019-07-07 22:25:03 2019-07-07 22:25:03 f 1 2 71783 217 0.00 2019-07-07 22:23:40 2019-07-07 22:25:29 t 1 2 71784 217 0.00 2019-07-07 22:25:33 2019-07-07 22:26:17 t 1 2 71790 212 0.00 2019-07-07 22:37:30 2019-07-07 22:38:28 t 1 2 71792 210 0.00 2019-07-07 22:48:54 2019-07-07 22:48:59 t 1 2 71793 217 0.00 2019-07-07 22:38:10 2019-07-07 22:50:34 t 1 2 71798 212 0.00 2019-07-07 23:16:25 2019-07-07 23:17:52 t 1 2 71800 230 0.00 2019-07-07 23:27:08 2019-07-07 23:28:13 t 1 2 71802 230 0.00 2019-07-07 23:29:47 2019-07-07 23:30:53 t 1 2 71803 212 0.00 2019-07-07 23:28:45 2019-07-07 23:32:31 t 1 2 71807 206 0.00 2019-07-07 23:42:29 2019-07-07 23:43:35 t 1 2 71808 206 0.00 2019-07-07 23:44:10 2019-07-07 23:45:19 t 1 2 71813 212 0.00 2019-07-07 23:55:18 2019-07-07 23:55:25 t 1 2 72232 212 0.00 2019-07-09 23:14:00 2019-07-09 23:14:01 t 1 2 72234 217 0.00 2019-07-09 23:14:29 2019-07-09 23:15:02 t 1 2 72235 212 0.00 2019-07-09 23:14:40 2019-07-09 23:18:54 t 1 2 72236 212 0.00 2019-07-09 23:24:47 2019-07-09 23:25:16 t 1 2 72238 220 0.00 2019-07-09 23:20:47 2019-07-09 23:30:52 t 1 2 72241 212 0.00 2019-07-09 23:42:26 2019-07-09 23:43:32 t 1 2 72246 217 0.00 2019-07-09 23:39:41 2019-07-09 23:54:46 t 1 2 72247 212 0.00 2019-07-09 23:57:17 2019-07-09 23:58:25 t 1 2 72249 212 0.00 2019-07-09 23:58:44 2019-07-09 23:59:50 t 1 2 72251 217 0.00 2019-07-09 23:51:23 2019-07-10 00:01:29 t 1 2 72256 212 0.00 2019-07-10 00:34:56 2019-07-10 00:35:58 t 1 2 81057 212 0.00 2019-08-08 08:59:27 2019-08-08 09:00:31 t 1 2 72260 212 0.00 2019-07-10 00:47:59 2019-07-10 00:49:07 t 1 2 72741 220 0.00 2019-07-12 04:52:32 2019-07-12 04:54:05 t 1 1 72743 220 0.00 2019-07-12 04:56:00 2019-07-12 04:56:09 t 1 1 72748 220 0.00 2019-07-12 05:28:14 2019-07-12 05:28:24 t 1 1 72749 220 0.00 2019-07-12 05:28:35 2019-07-12 05:30:53 t 1 1 72750 220 0.00 2019-07-12 05:39:02 2019-07-12 05:39:12 t 1 1 72339 232 0.00 2019-07-10 13:46:08 2019-07-10 15:46:14 t 1 2 72757 212 0.00 2019-07-12 06:10:15 2019-07-12 06:10:35 t 1 2 81061 320 0.00 2019-08-08 08:54:04 2019-08-08 09:14:09 t 1 2 72355 217 0.00 2019-07-10 16:38:26 2019-07-10 16:38:42 t 1 2 72356 212 0.00 2019-07-10 16:48:51 2019-07-10 16:49:14 t 1 2 72758 220 0.00 2019-07-12 06:10:35 2019-07-12 06:10:44 t 1 1 72365 212 0.00 2019-07-10 17:26:02 2019-07-10 17:26:24 t 1 2 72759 220 0.00 2019-07-12 06:10:52 2019-07-12 06:11:52 t 1 1 72367 212 0.00 2019-07-10 17:38:32 2019-07-10 17:39:07 t 1 2 72374 234 0.00 2019-07-10 18:04:08 2019-07-10 18:14:13 t 1 2 72761 220 0.00 2019-07-12 06:21:18 2019-07-12 06:21:29 t 1 1 72766 212 0.00 2019-07-12 06:49:05 2019-07-12 06:49:41 t 1 2 72388 230 0.00 2019-07-10 16:59:12 2019-07-10 19:19:17 t 1 2 72773 220 0.00 2019-07-12 07:31:07 2019-07-12 07:31:15 t 1 1 72398 217 0.00 2019-07-10 19:46:13 2019-07-10 19:48:04 t 1 2 72401 232 0.00 2019-07-10 17:31:53 2019-07-10 19:56:58 t 1 2 72781 220 0.00 2019-07-12 08:13:23 2019-07-12 08:13:32 t 1 1 72406 212 0.00 2019-07-10 20:10:43 2019-07-10 20:12:42 t 1 2 72411 212 0.00 2019-07-10 20:25:19 2019-07-10 20:26:00 t 1 2 72412 217 0.00 2019-07-10 20:25:39 2019-07-10 20:29:58 t 1 2 72788 217 0.00 2019-07-12 08:21:15 2019-07-12 08:36:20 t 1 2 72416 220 0.00 2019-07-10 20:43:28 2019-07-10 20:53:33 t 1 2 72417 212 0.00 2019-07-10 20:53:15 2019-07-10 20:53:43 t 1 2 72791 220 0.00 2019-07-12 08:45:59 2019-07-12 08:46:07 t 1 1 72431 217 0.00 2019-07-10 15:14:25 2019-07-10 21:34:30 t 1 2 72478 217 0.00 2019-07-11 01:41:36 2019-07-11 07:34:05 t 1 2 72481 202 0.00 2019-07-11 08:31:46 2019-07-11 08:32:50 t 1 2 72482 212 0.00 2019-07-11 08:40:20 2019-07-11 08:41:24 t 1 2 81065 296 0.00 2019-08-08 09:19:10 2019-08-08 09:22:31 t 1 2 72490 217 0.00 2019-07-11 09:45:44 2019-07-11 10:00:49 t 1 2 72491 212 0.00 2019-07-11 10:08:53 2019-07-11 10:09:11 t 1 2 72495 234 0.00 2019-07-11 10:58:29 2019-07-11 10:59:40 t 1 2 72503 234 0.00 2019-07-11 11:01:37 2019-07-11 12:11:42 t 1 2 72507 210 0.00 2019-07-11 12:29:43 2019-07-11 12:31:47 t 1 2 72793 220 0.00 2019-07-12 08:56:45 2019-07-12 08:56:53 t 1 1 72512 217 0.00 2019-07-11 12:35:49 2019-07-11 12:35:54 t 1 1 72519 217 0.00 2019-07-11 13:12:13 2019-07-11 13:12:27 t 1 1 72521 234 0.00 2019-07-11 12:53:36 2019-07-11 13:18:41 t 1 2 72522 217 0.00 2019-07-11 13:22:43 2019-07-11 13:22:58 t 1 1 72795 220 0.00 2019-07-12 09:07:15 2019-07-12 09:07:23 t 1 1 72527 217 0.00 2019-07-11 13:43:48 2019-07-11 13:44:02 t 1 1 72796 220 0.00 2019-07-12 09:17:45 2019-07-12 09:17:53 t 1 1 72800 204 0.00 2019-07-12 09:25:41 2019-07-12 09:35:06 t 1 2 72538 234 0.00 2019-07-11 13:59:04 2019-07-11 14:09:09 t 1 2 72806 212 0.00 2019-07-12 10:25:04 2019-07-12 10:27:02 t 1 2 72807 212 0.00 2019-07-12 10:27:55 2019-07-12 10:28:21 t 1 2 72812 212 0.00 2019-07-12 11:20:08 2019-07-12 11:20:31 t 1 2 72813 236 0.00 2019-07-12 11:16:36 2019-07-12 11:24:01 t 1 2 72818 236 0.00 2019-07-12 11:36:45 2019-07-12 11:38:40 t 1 2 72554 216 0.00 2019-07-11 14:24:02 2019-07-11 14:47:52 t 1 2 72820 212 0.00 2019-07-12 11:55:17 2019-07-12 11:55:48 t 1 2 72822 220 0.00 2019-07-12 11:44:24 2019-07-12 12:08:26 t 1 1 72823 234 0.00 2019-07-12 11:58:34 2019-07-12 12:21:24 t 1 2 72560 209 0.00 2019-07-11 15:08:14 2019-07-11 15:09:17 t 1 2 72562 234 0.00 2019-07-11 14:58:35 2019-07-11 15:13:40 t 1 2 71814 212 0.00 2019-07-08 00:00:47 2019-07-08 00:00:52 t 1 2 71818 232 0.00 2019-07-07 21:48:01 2019-07-08 00:08:06 t 1 2 71821 212 0.00 2019-07-08 00:26:23 2019-07-08 00:27:26 t 1 2 71822 232 0.00 2019-07-08 00:16:23 2019-07-08 00:31:28 t 1 2 71823 212 0.00 2019-07-08 00:32:07 2019-07-08 00:32:33 t 1 2 71824 217 0.00 2019-07-08 00:34:33 2019-07-08 00:35:35 t 1 2 71827 217 0.00 2019-07-08 00:36:31 2019-07-08 00:46:36 t 1 2 72233 212 0.00 2019-07-09 23:14:15 2019-07-09 23:14:16 t 1 2 72239 217 0.00 2019-07-09 22:59:18 2019-07-09 23:34:23 t 1 2 72240 212 0.00 2019-07-09 23:38:38 2019-07-09 23:39:27 t 1 2 72242 212 0.00 2019-07-09 23:44:04 2019-07-09 23:45:03 t 1 2 72243 217 0.00 2019-07-09 23:45:37 2019-07-09 23:51:16 t 1 2 72245 217 0.00 2019-07-09 23:38:28 2019-07-09 23:53:33 t 1 2 72250 212 0.00 2019-07-10 00:00:07 2019-07-10 00:01:10 t 1 2 72253 212 0.00 2019-07-10 00:21:01 2019-07-10 00:21:56 t 1 2 72254 212 0.00 2019-07-10 00:22:05 2019-07-10 00:23:09 t 1 2 72255 212 0.00 2019-07-10 00:33:00 2019-07-10 00:34:04 t 1 2 72258 212 0.00 2019-07-10 00:38:41 2019-07-10 00:39:09 t 1 2 81063 304 0.00 2019-08-08 09:15:41 2019-08-08 09:15:47 t 1 2 72263 218 0.00 2019-07-10 01:32:13 2019-07-10 01:36:28 t 1 2 72435 212 0.00 2019-07-10 21:59:20 2019-07-10 22:00:07 t 1 2 72772 220 0.00 2019-07-12 07:20:36 2019-07-12 07:20:46 t 1 1 72775 220 0.00 2019-07-12 07:41:36 2019-07-12 07:41:44 t 1 1 72443 217 0.00 2019-07-10 22:33:10 2019-07-10 22:43:15 t 1 2 72444 217 0.00 2019-07-10 22:34:13 2019-07-10 22:44:18 t 1 2 81066 320 0.00 2019-08-08 09:10:43 2019-08-08 09:25:48 t 1 2 72450 212 0.00 2019-07-10 23:53:12 2019-07-10 23:53:40 t 1 2 72451 220 0.00 2019-07-10 23:52:29 2019-07-10 23:56:05 t 1 2 72453 212 0.00 2019-07-11 00:13:02 2019-07-11 00:13:45 t 1 2 72459 217 0.00 2019-07-11 00:26:11 2019-07-11 00:30:40 t 1 2 72460 212 0.00 2019-07-11 00:40:46 2019-07-11 00:41:51 t 1 2 72469 220 0.00 2019-07-11 01:56:45 2019-07-11 02:11:51 t 1 2 72472 230 0.00 2019-07-11 01:10:22 2019-07-11 02:30:27 t 1 2 81068 234 0.00 2019-08-08 09:00:11 2019-08-08 09:30:16 t 1 2 81069 306 0.00 2019-08-08 09:32:45 2019-08-08 09:33:47 t 1 2 72480 212 0.00 2019-07-11 08:21:46 2019-07-11 08:22:50 t 1 2 72484 209 0.00 2019-07-11 09:42:57 2019-07-11 09:43:58 t 1 2 72486 209 0.00 2019-07-11 09:50:00 2019-07-11 09:51:09 t 1 2 72488 209 0.00 2019-07-11 09:52:11 2019-07-11 09:53:16 t 1 2 72489 212 0.00 2019-07-11 09:55:00 2019-07-11 09:55:55 t 1 2 72496 217 0.00 2019-07-11 11:05:55 2019-07-11 11:08:15 t 1 2 72497 236 0.00 2019-07-11 11:06:58 2019-07-11 11:09:22 t 1 2 72500 217 0.00 2019-07-11 11:11:02 2019-07-11 11:56:31 t 1 2 72501 212 0.00 2019-07-11 11:56:15 2019-07-11 11:58:18 t 1 2 72502 217 0.00 2019-07-11 11:50:14 2019-07-11 12:01:40 t 1 2 72504 236 0.00 2019-07-11 11:46:54 2019-07-11 12:16:59 t 1 2 72505 230 0.00 2019-07-11 11:40:28 2019-07-11 12:18:57 t 1 2 72506 210 0.00 2019-07-11 12:26:08 2019-07-11 12:29:36 t 1 2 72776 220 0.00 2019-07-12 07:52:06 2019-07-12 07:52:14 t 1 1 72779 220 0.00 2019-07-12 08:02:52 2019-07-12 08:03:02 t 1 1 72513 234 0.00 2019-07-11 12:10:03 2019-07-11 12:48:34 t 1 2 72518 217 0.00 2019-07-11 12:36:00 2019-07-11 13:09:28 t 1 1 72524 217 0.00 2019-07-11 13:33:13 2019-07-11 13:33:33 t 1 1 72780 217 0.00 2019-07-12 08:07:17 2019-07-12 08:07:40 t 1 2 72529 217 0.00 2019-07-11 13:49:03 2019-07-11 13:49:17 t 1 1 72782 220 0.00 2019-07-12 08:13:40 2019-07-12 08:13:49 t 1 1 72783 217 0.00 2019-07-12 08:06:31 2019-07-12 08:16:37 t 1 2 72787 220 0.00 2019-07-12 08:34:56 2019-07-12 08:35:05 t 1 1 72789 220 0.00 2019-07-12 08:45:26 2019-07-12 08:45:35 t 1 1 72547 217 0.00 2019-07-11 14:40:38 2019-07-11 14:40:52 t 1 1 72557 217 0.00 2019-07-11 15:02:45 2019-07-11 15:03:10 t 1 1 72561 217 0.00 2019-07-11 15:10:54 2019-07-11 15:11:08 t 1 1 72790 220 0.00 2019-07-12 08:45:43 2019-07-12 08:45:51 t 1 1 72567 207 0.00 2019-07-11 15:34:51 2019-07-11 15:35:11 t 1 2 72568 207 0.00 2019-07-11 15:35:38 2019-07-11 15:35:47 t 1 2 72794 217 0.00 2019-07-12 08:49:02 2019-07-12 08:59:07 t 1 2 72576 217 0.00 2019-07-11 15:41:20 2019-07-11 15:50:56 t 1 1 72577 217 0.00 2019-07-11 15:50:56 2019-07-11 15:51:59 t 1 1 72799 220 0.00 2019-07-12 09:20:05 2019-07-12 09:27:55 t 1 1 72580 232 0.00 2019-07-11 09:32:43 2019-07-11 16:17:48 t 1 2 72581 212 0.00 2019-07-11 16:26:31 2019-07-11 16:27:55 t 1 2 72597 232 0.00 2019-07-11 17:56:17 2019-07-11 18:11:23 t 1 2 72598 218 0.00 2019-07-11 17:57:39 2019-07-11 18:12:44 t 1 2 72599 212 0.00 2019-07-11 18:29:57 2019-07-11 18:31:04 t 1 2 72604 220 0.00 2019-07-11 18:37:16 2019-07-11 18:38:06 t 1 2 72607 234 0.00 2019-07-11 18:40:28 2019-07-11 18:40:28 f 1 2 72615 230 0.00 2019-07-11 18:37:40 2019-07-11 19:32:45 t 1 2 72618 234 0.00 2019-07-11 19:09:19 2019-07-11 20:09:24 t 1 2 72620 206 0.00 2019-07-11 20:45:01 2019-07-11 20:46:05 t 1 2 81074 304 0.00 2019-08-08 09:28:00 2019-08-08 09:38:05 t 1 2 72625 212 0.00 2019-07-11 21:34:44 2019-07-11 21:35:57 t 1 2 72626 234 0.00 2019-07-11 20:36:40 2019-07-11 21:41:45 t 1 2 72635 232 0.00 2019-07-11 20:21:41 2019-07-11 22:23:01 t 1 2 72643 230 0.00 2019-07-11 22:49:03 2019-07-11 22:49:32 t 1 2 72644 220 0.00 2019-07-11 22:47:29 2019-07-11 22:50:13 t 1 1 72645 212 0.00 2019-07-11 22:48:02 2019-07-11 22:51:00 t 1 2 72647 212 0.00 2019-07-11 22:51:05 2019-07-11 22:51:36 t 1 2 72648 212 0.00 2019-07-11 22:51:41 2019-07-11 22:52:12 t 1 2 72650 230 0.00 2019-07-11 22:53:16 2019-07-11 22:53:34 t 1 2 72652 230 0.00 2019-07-11 23:00:07 2019-07-11 23:00:54 t 1 2 72655 212 0.00 2019-07-11 22:52:18 2019-07-11 23:01:37 t 1 2 72664 217 0.00 2019-07-11 23:03:28 2019-07-11 23:13:34 t 1 2 72803 217 0.00 2019-07-12 09:42:38 2019-07-12 09:43:08 t 1 2 72804 220 0.00 2019-07-12 09:35:56 2019-07-12 09:46:54 t 1 1 72805 212 0.00 2019-07-12 10:19:04 2019-07-12 10:19:43 t 1 2 72809 216 0.00 2019-07-12 11:00:41 2019-07-12 11:01:43 t 1 2 72810 216 0.00 2019-07-12 11:01:48 2019-07-12 11:03:31 t 1 2 72817 236 0.00 2019-07-12 11:35:31 2019-07-12 11:36:39 t 1 2 72824 230 0.00 2019-07-12 12:27:06 2019-07-12 12:27:21 t 1 2 72827 236 0.00 2019-07-12 12:45:20 2019-07-12 13:05:25 t 1 2 72828 212 0.00 2019-07-12 13:10:14 2019-07-12 13:10:42 t 1 2 81078 304 0.00 2019-08-08 09:39:15 2019-08-08 09:49:21 t 1 2 72830 217 0.00 2019-07-12 13:46:24 2019-07-12 13:47:38 t 1 2 72833 236 0.00 2019-07-12 14:40:27 2019-07-12 15:35:32 t 1 2 72834 217 0.00 2019-07-12 15:41:59 2019-07-12 15:42:07 t 1 2 72835 218 0.00 2019-07-12 15:35:34 2019-07-12 15:45:39 t 1 2 72838 217 0.00 2019-07-12 16:38:48 2019-07-12 16:40:09 t 1 2 71815 212 0.00 2019-07-08 00:01:09 2019-07-08 00:02:09 t 1 2 72832 202 0.00 2019-07-12 14:52:19 2019-07-12 14:53:28 t 1 2 71826 212 0.00 2019-07-08 00:37:24 2019-07-08 00:38:29 t 1 2 71828 212 0.00 2019-07-08 00:45:33 2019-07-08 00:46:40 t 1 2 71833 217 0.00 2019-07-07 22:59:05 2019-07-08 01:58:17 t 1 2 72436 217 0.00 2019-07-10 22:00:22 2019-07-10 22:01:41 t 1 2 72439 217 0.00 2019-07-10 22:02:00 2019-07-10 22:20:49 t 1 2 72441 217 0.00 2019-07-10 22:32:02 2019-07-10 22:42:45 t 1 2 72446 218 0.00 2019-07-10 22:40:54 2019-07-10 23:16:01 t 1 2 72447 217 0.00 2019-07-10 22:52:47 2019-07-10 23:23:20 t 1 2 72452 218 0.00 2019-07-11 00:00:24 2019-07-11 00:02:17 t 1 2 81067 286 0.00 2019-08-08 09:11:19 2019-08-08 09:26:24 t 1 2 72458 232 0.00 2019-07-10 22:45:28 2019-07-11 00:30:33 t 1 2 72462 217 0.00 2019-07-11 00:26:21 2019-07-11 01:24:48 t 1 2 72465 220 0.00 2019-07-10 23:56:46 2019-07-11 01:33:20 t 1 2 81070 331 0.00 2019-08-08 09:33:30 2019-08-08 09:34:33 t 1 2 72471 220 0.00 2019-07-11 02:20:03 2019-07-11 02:22:33 t 1 2 72483 217 0.00 2019-07-11 09:38:00 2019-07-11 09:42:33 t 1 2 72487 212 0.00 2019-07-11 09:51:35 2019-07-11 09:52:29 t 1 2 72492 218 0.00 2019-07-11 10:10:57 2019-07-11 10:21:02 t 1 2 72493 217 0.00 2019-07-11 10:13:58 2019-07-11 10:28:13 t 1 2 72494 212 0.00 2019-07-11 10:30:14 2019-07-11 10:30:52 t 1 2 72498 236 0.00 2019-07-11 11:09:38 2019-07-11 11:13:15 t 1 2 81071 304 0.00 2019-08-08 09:16:00 2019-08-08 09:36:06 t 1 2 72836 232 0.00 2019-07-12 15:39:19 2019-07-12 16:09:24 t 1 2 72514 234 0.00 2019-07-11 12:50:42 2019-07-11 12:52:37 t 1 2 72840 232 0.00 2019-07-12 17:07:58 2019-07-12 17:58:03 t 1 2 72516 212 0.00 2019-07-11 13:00:23 2019-07-11 13:01:55 t 1 2 81072 320 0.00 2019-08-08 09:21:27 2019-08-08 09:36:32 t 1 2 72844 220 0.00 2019-07-12 18:47:11 2019-07-12 18:56:15 t 1 1 72846 217 0.00 2019-07-12 19:49:26 2019-07-12 19:50:31 t 1 2 72847 234 0.00 2019-07-12 19:53:47 2019-07-12 19:53:51 t 1 2 72854 220 0.00 2019-07-12 21:57:28 2019-07-12 21:58:39 t 1 2 72856 204 0.00 2019-07-12 22:18:47 2019-07-12 22:35:52 t 1 2 72859 232 0.00 2019-07-12 23:29:57 2019-07-13 00:00:02 t 1 2 72537 217 0.00 2019-07-11 13:58:34 2019-07-11 13:58:54 t 1 1 72540 217 0.00 2019-07-11 14:09:04 2019-07-11 14:09:18 t 1 1 72542 217 0.00 2019-07-11 14:19:39 2019-07-11 14:20:00 t 1 1 72860 220 0.00 2019-07-12 23:50:50 2019-07-13 00:04:01 t 1 1 72545 217 0.00 2019-07-11 14:30:08 2019-07-11 14:30:22 t 1 1 72862 232 0.00 2019-07-13 00:00:47 2019-07-13 00:08:45 t 1 2 72550 218 0.00 2019-07-11 12:58:17 2019-07-11 14:43:22 t 1 2 72553 212 0.00 2019-07-11 14:44:14 2019-07-11 14:45:18 t 1 2 72556 217 0.00 2019-07-11 14:49:07 2019-07-11 15:02:45 t 1 1 72866 217 0.00 2019-07-13 05:43:48 2019-07-13 05:44:19 t 1 2 72571 217 0.00 2019-07-11 15:25:38 2019-07-11 15:41:20 t 1 1 72877 241 0.00 2019-07-13 11:18:49 2019-07-13 11:27:07 t 1 2 72578 218 0.00 2019-07-11 15:48:56 2019-07-11 15:59:01 t 1 2 72584 217 0.00 2019-07-11 11:02:45 2019-07-11 16:37:50 t 1 2 72881 241 0.00 2019-07-13 11:32:54 2019-07-13 11:34:16 t 1 2 72589 234 0.00 2019-07-11 17:12:01 2019-07-11 17:37:06 t 1 2 72591 217 0.00 2019-07-11 17:42:34 2019-07-11 17:43:39 t 1 2 72592 217 0.00 2019-07-11 17:28:34 2019-07-11 17:48:39 t 1 2 72594 216 0.00 2019-07-11 17:51:53 2019-07-11 17:54:01 t 1 2 72596 216 0.00 2019-07-11 16:40:06 2019-07-11 17:55:11 t 1 2 72601 230 0.00 2019-07-11 18:36:33 2019-07-11 18:37:40 t 1 2 72606 234 0.00 2019-07-11 18:40:17 2019-07-11 18:40:17 f 1 2 72608 234 0.00 2019-07-11 18:40:40 2019-07-11 18:40:40 f 1 2 72609 234 0.00 2019-07-11 18:41:40 2019-07-11 18:41:40 f 1 2 81079 320 0.00 2019-08-08 09:39:28 2019-08-08 09:49:33 t 1 2 72611 217 0.00 2019-07-11 17:47:27 2019-07-11 18:52:32 t 1 2 72885 220 0.00 2019-07-13 12:37:51 2019-07-13 12:39:14 t 1 2 72613 234 0.00 2019-07-11 18:42:01 2019-07-11 19:02:17 t 1 2 72616 212 0.00 2019-07-11 19:43:15 2019-07-11 19:43:45 t 1 2 72617 216 0.00 2019-07-11 17:56:18 2019-07-11 20:05:52 t 1 2 72621 212 0.00 2019-07-11 21:08:03 2019-07-11 21:08:46 t 1 2 72623 217 0.00 2019-07-11 21:28:07 2019-07-11 21:28:11 t 1 2 72627 218 0.00 2019-07-11 21:18:48 2019-07-11 21:43:54 t 1 2 72628 207 0.00 2019-07-11 21:57:11 2019-07-11 21:57:12 t 1 2 72629 207 0.00 2019-07-11 21:57:40 2019-07-11 21:57:52 t 1 2 72631 207 0.00 2019-07-11 21:59:14 2019-07-11 21:59:16 t 1 2 72632 217 0.00 2019-07-11 21:41:14 2019-07-11 22:06:18 t 1 2 81080 304 0.00 2019-08-08 09:46:43 2019-08-08 10:01:49 t 1 2 72638 220 0.00 2019-07-11 22:25:52 2019-07-11 22:35:34 t 1 2 72640 230 0.00 2019-07-11 22:29:51 2019-07-11 22:43:59 t 1 2 72642 220 0.00 2019-07-11 22:47:11 2019-07-11 22:47:11 f 1 1 72646 230 0.00 2019-07-11 22:50:43 2019-07-11 22:51:03 t 1 2 72651 230 0.00 2019-07-11 22:44:32 2019-07-11 22:54:37 t 1 2 72654 230 0.00 2019-07-11 23:01:14 2019-07-11 23:01:31 t 1 2 81081 243 0.00 2019-08-08 10:06:43 2019-08-08 10:08:49 t 1 2 72659 212 0.00 2019-07-11 23:03:49 2019-07-11 23:04:43 t 1 2 72660 212 0.00 2019-07-11 23:05:14 2019-07-11 23:05:46 t 1 2 81084 306 0.00 2019-08-08 10:33:07 2019-08-08 10:34:13 t 1 2 72663 212 0.00 2019-07-11 23:08:55 2019-07-11 23:12:49 t 1 2 72887 220 0.00 2019-07-13 13:01:25 2019-07-13 13:02:16 t 1 2 72889 220 0.00 2019-07-13 13:06:17 2019-07-13 13:06:32 t 1 2 72890 220 0.00 2019-07-13 13:06:40 2019-07-13 13:07:01 t 1 2 72893 220 0.00 2019-07-13 13:13:29 2019-07-13 13:14:17 t 1 2 72894 220 0.00 2019-07-13 13:31:20 2019-07-13 14:00:05 t 1 2 72895 220 0.00 2019-07-13 14:13:14 2019-07-13 14:36:32 t 1 1 72899 220 0.00 2019-07-13 14:48:24 2019-07-13 14:49:24 t 1 1 72900 220 0.00 2019-07-13 14:50:26 2019-07-13 14:50:33 t 1 1 72907 220 0.00 2019-07-13 15:01:28 2019-07-13 15:01:36 t 1 1 72908 220 0.00 2019-07-13 15:01:44 2019-07-13 15:01:45 t 1 1 72910 220 0.00 2019-07-13 15:22:40 2019-07-13 15:22:41 t 1 1 72912 220 0.00 2019-07-13 15:22:58 2019-07-13 15:23:58 t 1 1 72914 220 0.00 2019-07-13 15:24:50 2019-07-13 15:41:27 t 1 1 72925 245 0.00 2019-07-13 18:16:51 2019-07-13 18:17:55 t 1 2 72930 245 0.00 2019-07-13 18:47:39 2019-07-13 18:48:44 t 1 2 72931 245 0.00 2019-07-13 18:49:15 2019-07-13 18:50:21 t 1 2 72933 212 0.00 2019-07-13 19:14:21 2019-07-13 19:14:48 t 1 2 72939 249 0.00 2019-07-13 19:41:04 2019-07-13 19:42:08 t 1 2 72940 249 0.00 2019-07-13 19:44:27 2019-07-13 19:44:54 t 1 2 72943 247 0.00 2019-07-13 19:48:44 2019-07-13 19:50:46 t 1 2 72947 249 0.00 2019-07-13 19:54:34 2019-07-13 19:55:41 t 1 2 72952 220 0.00 2019-07-13 20:27:28 2019-07-13 20:43:44 t 1 2 72955 212 0.00 2019-07-13 21:00:06 2019-07-13 21:00:51 t 1 2 71817 218 0.00 2019-07-07 22:51:37 2019-07-08 00:06:42 t 1 2 71819 212 0.00 2019-07-08 00:13:07 2019-07-08 00:13:47 t 1 2 71820 212 0.00 2019-07-08 00:21:38 2019-07-08 00:22:15 t 1 2 71825 217 0.00 2019-07-08 00:37:20 2019-07-08 00:38:23 t 1 2 71829 217 0.00 2019-07-08 00:47:48 2019-07-08 00:48:53 t 1 2 71830 212 0.00 2019-07-08 00:50:16 2019-07-08 00:50:27 t 1 2 71831 212 0.00 2019-07-08 00:50:50 2019-07-08 00:51:04 t 1 2 71832 217 0.00 2019-07-08 00:40:21 2019-07-08 00:55:26 t 1 2 81075 288 0.00 2019-08-08 09:37:59 2019-08-08 09:39:05 t 1 2 71835 230 0.00 2019-07-07 23:31:52 2019-07-08 02:19:32 t 1 2 81076 320 0.00 2019-08-08 09:35:24 2019-08-08 09:45:30 t 1 2 72437 217 0.00 2019-07-10 22:01:50 2019-07-10 22:04:50 t 1 2 72442 234 0.00 2019-07-10 21:55:53 2019-07-10 22:42:59 t 1 2 72839 218 0.00 2019-07-12 17:43:38 2019-07-12 17:48:43 t 1 2 72448 212 0.00 2019-07-10 23:28:24 2019-07-10 23:28:58 t 1 2 72455 217 0.00 2019-07-11 00:19:20 2019-07-11 00:21:01 t 1 2 72456 212 0.00 2019-07-11 00:23:38 2019-07-11 00:24:22 t 1 2 72457 234 0.00 2019-07-10 23:08:42 2019-07-11 00:28:47 t 1 2 72461 207 0.00 2019-07-11 01:07:19 2019-07-11 01:07:34 t 1 2 72463 202 0.00 2019-07-11 01:24:22 2019-07-11 01:25:26 t 1 2 81077 320 0.00 2019-08-08 09:45:51 2019-08-08 09:48:51 t 1 2 81082 288 0.00 2019-08-08 10:24:26 2019-08-08 10:25:31 t 1 2 72468 220 0.00 2019-07-11 01:49:25 2019-07-11 02:04:30 t 1 2 72470 220 0.00 2019-07-11 02:18:48 2019-07-11 02:19:08 t 1 2 72841 217 0.00 2019-07-12 17:42:53 2019-07-12 18:12:58 t 1 2 72565 217 0.00 2019-07-11 15:21:24 2019-07-11 15:21:38 t 1 1 72848 217 0.00 2019-07-12 19:53:31 2019-07-12 19:54:12 t 1 2 72569 212 0.00 2019-07-11 15:29:51 2019-07-11 15:36:51 t 1 2 72849 212 0.00 2019-07-12 19:58:02 2019-07-12 19:58:22 t 1 2 72851 234 0.00 2019-07-12 20:02:43 2019-07-12 20:22:48 t 1 2 72582 218 0.00 2019-07-11 16:20:34 2019-07-11 16:30:39 t 1 2 81087 220 0.00 2019-08-08 10:37:22 2019-08-08 10:50:45 t 1 2 72586 217 0.00 2019-07-11 16:32:03 2019-07-11 16:58:14 t 1 2 72587 202 0.00 2019-07-11 17:13:29 2019-07-11 17:14:34 t 1 2 72588 212 0.00 2019-07-11 17:30:04 2019-07-11 17:30:41 t 1 2 72590 217 0.00 2019-07-11 16:47:09 2019-07-11 17:37:14 t 1 2 81093 304 0.00 2019-08-08 10:59:44 2019-08-08 10:59:44 f 1 2 72595 217 0.00 2019-07-11 17:44:15 2019-07-11 17:54:20 t 1 2 81095 304 0.00 2019-08-08 11:00:00 2019-08-08 11:00:00 f 1 2 72602 234 0.00 2019-07-11 18:37:40 2019-07-11 18:37:40 f 1 2 72603 234 0.00 2019-07-11 18:37:58 2019-07-11 18:37:58 f 1 2 72605 234 0.00 2019-07-11 18:40:08 2019-07-11 18:40:08 f 1 2 72614 218 0.00 2019-07-11 19:13:30 2019-07-11 19:23:36 t 1 2 72619 217 0.00 2019-07-11 20:38:05 2019-07-11 20:39:11 t 1 2 72624 217 0.00 2019-07-11 21:28:31 2019-07-11 21:29:30 t 1 2 72630 207 0.00 2019-07-11 21:58:18 2019-07-11 21:58:37 t 1 2 72633 217 0.00 2019-07-11 21:53:08 2019-07-11 22:16:21 t 1 2 72636 212 0.00 2019-07-11 22:22:34 2019-07-11 22:23:01 t 1 2 72637 212 0.00 2019-07-11 22:23:34 2019-07-11 22:26:37 t 1 2 72639 220 0.00 2019-07-11 22:32:31 2019-07-11 22:37:42 t 1 2 72641 220 0.00 2019-07-11 22:47:05 2019-07-11 22:47:05 f 1 1 81098 288 0.00 2019-08-08 10:59:12 2019-08-08 11:00:18 t 1 2 72653 230 0.00 2019-07-11 23:01:07 2019-07-11 23:01:12 t 1 2 72656 212 0.00 2019-07-11 23:01:44 2019-07-11 23:02:08 t 1 2 72657 212 0.00 2019-07-11 23:02:48 2019-07-11 23:03:08 t 1 2 72662 212 0.00 2019-07-11 23:05:54 2019-07-11 23:08:27 t 1 2 72855 217 0.00 2019-07-12 22:02:40 2019-07-12 22:20:13 t 1 2 72857 232 0.00 2019-07-12 23:28:44 2019-07-12 23:38:49 t 1 2 72865 217 0.00 2019-07-13 01:35:27 2019-07-13 01:50:32 t 1 2 72867 232 0.00 2019-07-13 07:23:06 2019-07-13 07:34:04 t 1 2 72869 220 0.00 2019-07-13 08:34:38 2019-07-13 08:36:35 t 1 2 72870 207 0.00 2019-07-13 08:41:26 2019-07-13 08:42:28 t 1 2 72874 217 0.00 2019-07-13 11:02:49 2019-07-13 11:03:41 t 1 2 72875 207 0.00 2019-07-13 11:16:57 2019-07-13 11:17:07 t 1 2 72876 207 0.00 2019-07-13 11:18:05 2019-07-13 11:18:20 t 1 2 72878 241 0.00 2019-07-13 11:27:17 2019-07-13 11:28:58 t 1 2 72879 241 0.00 2019-07-13 11:29:30 2019-07-13 11:30:54 t 1 2 72880 239 0.00 2019-07-13 11:31:56 2019-07-13 11:32:47 t 1 2 72883 217 0.00 2019-07-13 12:16:52 2019-07-13 12:17:58 t 1 2 72886 220 0.00 2019-07-13 12:38:48 2019-07-13 12:45:21 t 1 2 72891 220 0.00 2019-07-13 13:07:29 2019-07-13 13:08:53 t 1 2 72892 220 0.00 2019-07-13 13:13:17 2019-07-13 13:13:26 t 1 2 72901 207 0.00 2019-07-13 14:54:51 2019-07-13 14:55:02 t 1 2 72902 207 0.00 2019-07-13 14:55:23 2019-07-13 14:56:30 t 1 2 72903 207 0.00 2019-07-13 14:58:01 2019-07-13 14:59:05 t 1 2 72904 207 0.00 2019-07-13 14:59:31 2019-07-13 14:59:43 t 1 2 72905 220 0.00 2019-07-13 15:00:56 2019-07-13 15:01:04 t 1 1 72909 220 0.00 2019-07-13 15:12:08 2019-07-13 15:12:17 t 1 1 72911 220 0.00 2019-07-13 15:22:49 2019-07-13 15:22:50 t 1 1 72913 234 0.00 2019-07-13 15:14:19 2019-07-13 15:29:24 t 1 2 72915 209 0.00 2019-07-13 16:27:00 2019-07-13 16:27:44 t 1 2 72918 245 0.00 2019-07-13 17:41:35 2019-07-13 17:42:39 t 1 2 72920 245 0.00 2019-07-13 18:00:07 2019-07-13 18:01:13 t 1 2 72921 245 0.00 2019-07-13 18:03:16 2019-07-13 18:04:19 t 1 2 72924 245 0.00 2019-07-13 18:15:08 2019-07-13 18:16:10 t 1 2 72926 247 0.00 2019-07-13 18:37:27 2019-07-13 18:38:29 t 1 2 72929 245 0.00 2019-07-13 18:42:10 2019-07-13 18:43:15 t 1 2 72935 249 0.00 2019-07-13 19:28:44 2019-07-13 19:29:47 t 1 2 72936 249 0.00 2019-07-13 19:30:00 2019-07-13 19:31:03 t 1 2 72937 249 0.00 2019-07-13 19:32:38 2019-07-13 19:33:45 t 1 2 72938 249 0.00 2019-07-13 19:39:20 2019-07-13 19:40:28 t 1 2 72942 249 0.00 2019-07-13 19:46:57 2019-07-13 19:48:02 t 1 2 72944 249 0.00 2019-07-13 19:50:45 2019-07-13 19:51:48 t 1 2 72946 249 0.00 2019-07-13 19:52:50 2019-07-13 19:53:54 t 1 2 72950 218 0.00 2019-07-13 19:46:16 2019-07-13 20:02:22 t 1 2 72951 212 0.00 2019-07-13 20:19:03 2019-07-13 20:20:07 t 1 2 72953 249 0.00 2019-07-13 20:45:56 2019-07-13 20:47:04 t 1 2 72963 220 0.00 2019-07-13 22:43:48 2019-07-13 22:53:53 t 1 2 72964 212 0.00 2019-07-13 22:51:14 2019-07-13 23:05:41 t 1 2 72965 243 0.00 2019-07-13 23:06:54 2019-07-13 23:11:59 t 1 2 72966 212 0.00 2019-07-13 23:24:15 2019-07-13 23:25:37 t 1 2 81101 304 0.00 2019-08-08 10:42:38 2019-08-08 11:02:44 t 1 2 72974 247 0.00 2019-07-13 23:42:25 2019-07-13 23:47:07 t 1 2 72978 217 0.00 2019-07-14 00:02:16 2019-07-14 00:15:21 t 1 1 72985 217 0.00 2019-07-14 00:53:14 2019-07-14 00:53:25 t 1 1 72987 217 0.00 2019-07-14 01:03:43 2019-07-14 01:03:51 t 1 1 72995 217 0.00 2019-07-14 01:51:30 2019-07-14 01:51:44 t 1 1 72665 212 0.00 2019-07-11 23:12:59 2019-07-11 23:14:17 t 1 2 72671 212 0.00 2019-07-11 23:30:46 2019-07-11 23:31:27 t 1 2 72674 218 0.00 2019-07-11 23:28:32 2019-07-11 23:38:37 t 1 2 72681 212 0.00 2019-07-11 23:39:39 2019-07-11 23:56:07 t 1 2 72684 212 0.00 2019-07-11 23:58:53 2019-07-12 00:00:11 t 1 2 81083 212 0.00 2019-08-08 10:29:05 2019-08-08 10:29:27 t 1 2 72690 212 0.00 2019-07-12 00:08:57 2019-07-12 00:09:39 t 1 2 72691 212 0.00 2019-07-12 00:10:17 2019-07-12 00:11:03 t 1 2 72694 212 0.00 2019-07-12 00:23:17 2019-07-12 00:24:23 t 1 2 72695 212 0.00 2019-07-12 00:25:06 2019-07-12 00:25:23 t 1 2 72697 216 0.00 2019-07-12 00:13:49 2019-07-12 00:26:11 t 1 2 72698 216 0.00 2019-07-12 00:26:29 2019-07-12 00:27:10 t 1 2 72699 212 0.00 2019-07-12 00:27:26 2019-07-12 00:28:29 t 1 2 72701 212 0.00 2019-07-12 00:34:45 2019-07-12 00:35:36 t 1 2 72702 210 0.00 2019-07-12 00:35:29 2019-07-12 00:36:39 t 1 2 72703 234 0.00 2019-07-12 00:30:35 2019-07-12 00:40:41 t 1 2 72713 210 0.00 2019-07-12 01:11:56 2019-07-12 01:13:28 t 1 2 72714 232 0.00 2019-07-12 01:16:23 2019-07-12 01:36:28 t 1 2 81091 217 0.00 2019-08-08 10:58:57 2019-08-08 10:58:57 f 1 2 81096 346 0.00 2019-08-08 08:52:16 2019-08-08 11:00:08 t 1 2 72843 220 0.00 2019-07-12 18:24:48 2019-07-12 18:47:11 t 1 1 72845 232 0.00 2019-07-12 19:00:54 2019-07-12 19:36:00 t 1 2 72850 217 0.00 2019-07-12 19:52:34 2019-07-12 20:02:40 t 1 2 81100 304 0.00 2019-08-08 11:01:14 2019-08-08 11:01:14 f 1 2 72858 234 0.00 2019-07-12 23:41:12 2019-07-12 23:46:36 t 1 2 72861 220 0.00 2019-07-13 00:04:01 2019-07-13 00:08:43 t 1 1 72863 217 0.00 2019-07-13 00:26:18 2019-07-13 00:28:54 t 1 2 72864 218 0.00 2019-07-13 01:13:51 2019-07-13 01:15:28 t 1 2 72868 202 0.00 2019-07-13 08:08:12 2019-07-13 08:09:17 t 1 2 72871 207 0.00 2019-07-13 08:42:51 2019-07-13 08:43:55 t 1 2 72872 232 0.00 2019-07-13 09:17:45 2019-07-13 09:42:50 t 1 2 72873 217 0.00 2019-07-13 11:02:11 2019-07-13 11:02:47 t 1 2 72884 220 0.00 2019-07-13 12:36:25 2019-07-13 12:37:43 t 1 2 72888 220 0.00 2019-07-13 13:04:58 2019-07-13 13:06:11 t 1 2 72896 220 0.00 2019-07-13 14:38:18 2019-07-13 14:38:29 t 1 1 72897 207 0.00 2019-07-13 14:40:52 2019-07-13 14:40:55 t 1 2 72898 207 0.00 2019-07-13 14:41:19 2019-07-13 14:42:01 t 1 2 72906 220 0.00 2019-07-13 15:01:12 2019-07-13 15:01:21 t 1 1 72916 243 0.00 2019-07-13 16:54:05 2019-07-13 16:54:09 t 1 2 72917 243 0.00 2019-07-13 16:54:14 2019-07-13 17:00:35 t 1 2 72919 245 0.00 2019-07-13 17:44:18 2019-07-13 17:45:19 t 1 2 72922 247 0.00 2019-07-13 18:10:08 2019-07-13 18:11:29 t 1 2 72923 247 0.00 2019-07-13 18:13:40 2019-07-13 18:14:15 t 1 2 72927 245 0.00 2019-07-13 18:38:33 2019-07-13 18:39:37 t 1 2 72928 245 0.00 2019-07-13 18:40:04 2019-07-13 18:41:09 t 1 2 72932 234 0.00 2019-07-13 17:59:44 2019-07-13 19:02:39 t 1 2 72934 249 0.00 2019-07-13 19:26:03 2019-07-13 19:27:08 t 1 2 72941 249 0.00 2019-07-13 19:45:25 2019-07-13 19:46:33 t 1 2 72945 217 0.00 2019-07-13 19:27:52 2019-07-13 19:52:42 t 1 2 81103 304 0.00 2019-08-08 10:56:15 2019-08-08 11:06:21 t 1 2 72949 249 0.00 2019-07-13 19:56:03 2019-07-13 19:57:08 t 1 2 72954 249 0.00 2019-07-13 20:47:50 2019-07-13 20:48:55 t 1 2 72957 232 0.00 2019-07-13 15:47:58 2019-07-13 22:18:03 t 1 2 72959 217 0.00 2019-07-13 22:00:32 2019-07-13 22:29:53 t 1 2 72960 212 0.00 2019-07-13 22:32:42 2019-07-13 22:33:24 t 1 2 72961 217 0.00 2019-07-13 22:37:57 2019-07-13 22:42:40 t 1 2 72968 212 0.00 2019-07-13 23:30:41 2019-07-13 23:31:09 t 1 2 72969 217 0.00 2019-07-13 22:42:54 2019-07-13 23:32:59 t 1 2 72972 220 0.00 2019-07-13 23:26:21 2019-07-13 23:46:20 t 1 1 72982 217 0.00 2019-07-14 00:29:42 2019-07-14 00:45:31 t 1 1 72986 218 0.00 2019-07-13 20:54:43 2019-07-14 00:54:48 t 1 2 72988 217 0.00 2019-07-14 01:03:59 2019-07-14 01:04:08 t 1 1 72992 217 0.00 2019-07-14 01:19:46 2019-07-14 01:20:09 t 1 2 72993 217 0.00 2019-07-14 01:30:27 2019-07-14 01:30:37 t 1 1 72998 217 0.00 2019-07-14 02:06:13 2019-07-14 02:06:14 t 1 1 73003 217 0.00 2019-07-14 02:15:25 2019-07-14 02:15:26 t 1 1 73005 217 0.00 2019-07-14 02:22:21 2019-07-14 02:22:31 t 1 1 73006 217 0.00 2019-07-14 02:23:11 2019-07-14 02:24:56 t 1 1 73013 217 0.00 2019-07-14 02:44:03 2019-07-14 02:44:20 t 1 1 73014 217 0.00 2019-07-14 02:45:21 2019-07-14 02:45:30 t 1 1 73016 217 0.00 2019-07-14 02:53:27 2019-07-14 02:53:38 t 1 1 73022 217 0.00 2019-07-14 02:59:27 2019-07-14 02:59:37 t 1 1 73029 217 0.00 2019-07-14 03:04:57 2019-07-14 03:05:05 t 1 1 73030 217 0.00 2019-07-14 03:05:30 2019-07-14 03:05:39 t 1 1 73032 217 0.00 2019-07-14 03:07:31 2019-07-14 03:07:40 t 1 1 73034 217 0.00 2019-07-14 03:08:32 2019-07-14 03:08:41 t 1 1 73035 217 0.00 2019-07-14 03:09:32 2019-07-14 03:09:42 t 1 1 73036 217 0.00 2019-07-14 03:10:33 2019-07-14 03:10:43 t 1 1 73037 217 0.00 2019-07-14 03:11:33 2019-07-14 03:11:43 t 1 1 73041 217 0.00 2019-07-14 03:27:43 2019-07-14 03:27:55 t 1 1 73043 217 0.00 2019-07-14 03:28:28 2019-07-14 03:28:40 t 1 1 73045 217 0.00 2019-07-14 03:29:09 2019-07-14 03:30:56 t 1 1 73049 217 0.00 2019-07-14 03:36:54 2019-07-14 03:37:07 t 1 1 73052 217 0.00 2019-07-14 03:38:47 2019-07-14 03:38:56 t 1 1 73053 217 0.00 2019-07-14 03:39:47 2019-07-14 03:39:57 t 1 1 73054 217 0.00 2019-07-14 03:40:47 2019-07-14 03:40:57 t 1 1 73055 217 0.00 2019-07-14 03:41:47 2019-07-14 03:41:48 t 1 1 73059 217 0.00 2019-07-14 03:43:04 2019-07-14 03:43:14 t 1 1 73070 217 0.00 2019-07-14 03:58:53 2019-07-14 03:59:08 t 1 1 73071 217 0.00 2019-07-14 03:59:53 2019-07-14 03:59:54 t 1 1 73075 217 0.00 2019-07-14 04:01:54 2019-07-14 04:02:01 t 1 1 73078 217 0.00 2019-07-14 04:03:57 2019-07-14 04:04:05 t 1 1 73084 217 0.00 2019-07-14 04:08:59 2019-07-14 04:09:00 t 1 1 73090 217 0.00 2019-07-14 04:12:10 2019-07-14 04:12:19 t 1 1 73093 217 0.00 2019-07-14 04:14:01 2019-07-14 04:14:10 t 1 1 73094 217 0.00 2019-07-14 04:15:01 2019-07-14 04:15:10 t 1 1 73095 217 0.00 2019-07-14 04:16:02 2019-07-14 04:16:03 t 1 1 73099 217 0.00 2019-07-14 04:19:02 2019-07-14 04:19:07 t 1 1 73103 217 0.00 2019-07-14 04:35:10 2019-07-14 04:35:21 t 1 1 73113 217 0.00 2019-07-14 04:41:27 2019-07-14 04:41:37 t 1 1 73114 217 0.00 2019-07-14 04:42:11 2019-07-14 04:42:21 t 1 1 73115 217 0.00 2019-07-14 04:43:11 2019-07-14 04:43:20 t 1 1 73120 217 0.00 2019-07-14 04:47:12 2019-07-14 04:47:21 t 1 1 73121 217 0.00 2019-07-14 04:47:28 2019-07-14 04:47:38 t 1 1 73129 217 0.00 2019-07-14 04:52:21 2019-07-14 04:52:30 t 1 1 73130 217 0.00 2019-07-14 04:52:38 2019-07-14 04:52:46 t 1 1 73132 217 0.00 2019-07-14 04:54:14 2019-07-14 04:54:22 t 1 1 72666 234 0.00 2019-07-11 23:05:58 2019-07-11 23:16:03 t 1 2 72667 212 0.00 2019-07-11 23:14:24 2019-07-11 23:19:15 t 1 2 72670 230 0.00 2019-07-11 23:18:18 2019-07-11 23:28:24 t 1 2 72672 212 0.00 2019-07-11 23:31:37 2019-07-11 23:32:51 t 1 2 72675 217 0.00 2019-07-11 23:07:01 2019-07-11 23:41:32 t 1 2 81085 243 0.00 2019-08-08 10:32:30 2019-08-08 10:45:18 t 1 2 72682 212 0.00 2019-07-11 23:56:23 2019-07-11 23:57:15 t 1 2 72683 217 0.00 2019-07-11 23:57:25 2019-07-11 23:57:40 t 1 2 81086 304 0.00 2019-08-08 10:37:36 2019-08-08 10:47:41 t 1 2 81088 304 0.00 2019-08-08 10:55:12 2019-08-08 10:56:07 t 1 2 72692 216 0.00 2019-07-12 00:12:00 2019-07-12 00:13:08 t 1 2 72700 212 0.00 2019-07-12 00:30:05 2019-07-12 00:31:05 t 1 2 72707 212 0.00 2019-07-12 00:52:25 2019-07-12 00:53:31 t 1 2 72709 212 0.00 2019-07-12 00:55:16 2019-07-12 00:56:23 t 1 2 72710 216 0.00 2019-07-12 00:56:09 2019-07-12 00:56:55 t 1 2 72712 232 0.00 2019-07-11 22:29:41 2019-07-12 01:04:46 t 1 2 72715 230 0.00 2019-07-12 02:03:47 2019-07-12 02:04:03 t 1 2 72956 212 0.00 2019-07-13 21:19:43 2019-07-13 21:20:31 t 1 2 72958 212 0.00 2019-07-13 22:22:18 2019-07-13 22:24:44 t 1 2 72962 217 0.00 2019-07-13 22:33:21 2019-07-13 22:43:27 t 1 2 72967 204 0.00 2019-07-13 22:41:25 2019-07-13 23:27:13 t 1 2 72970 236 0.00 2019-07-13 21:14:33 2019-07-13 23:39:38 t 1 2 72973 220 0.00 2019-07-13 23:46:30 2019-07-13 23:46:32 t 1 1 81090 217 0.00 2019-08-08 10:58:47 2019-08-08 10:58:47 f 1 2 72976 220 0.00 2019-07-13 23:51:41 2019-07-14 00:10:43 t 1 1 72977 212 0.00 2019-07-14 00:10:46 2019-07-14 00:11:50 t 1 2 72979 217 0.00 2019-07-14 00:15:21 2019-07-14 00:24:32 t 1 1 72980 217 0.00 2019-07-14 00:24:32 2019-07-14 00:28:26 t 1 1 72981 212 0.00 2019-07-14 00:33:59 2019-07-14 00:34:39 t 1 2 81097 304 0.00 2019-08-08 11:00:08 2019-08-08 11:00:08 f 1 2 72984 232 0.00 2019-07-13 23:52:49 2019-07-14 00:52:54 t 1 2 72989 217 0.00 2019-07-14 01:14:27 2019-07-14 01:14:36 t 1 1 72990 217 0.00 2019-07-14 01:14:43 2019-07-14 01:14:53 t 1 1 72991 217 0.00 2019-07-14 01:20:05 2019-07-14 01:20:06 t 1 1 72994 217 0.00 2019-07-14 01:40:58 2019-07-14 01:41:09 t 1 1 72996 217 0.00 2019-07-14 02:05:04 2019-07-14 02:05:46 t 1 1 72999 217 0.00 2019-07-14 02:06:25 2019-07-14 02:06:26 t 1 1 73000 217 0.00 2019-07-14 02:07:03 2019-07-14 02:07:04 t 1 1 73007 217 0.00 2019-07-14 02:30:15 2019-07-14 02:30:27 t 1 1 73008 245 0.00 2019-07-14 02:30:27 2019-07-14 02:31:31 t 1 2 73011 217 0.00 2019-07-14 02:36:43 2019-07-14 02:38:56 t 1 1 73012 217 0.00 2019-07-14 02:43:21 2019-07-14 02:43:33 t 1 1 73015 217 0.00 2019-07-14 02:46:21 2019-07-14 02:47:56 t 1 1 73017 217 0.00 2019-07-14 02:54:08 2019-07-14 02:54:25 t 1 1 73018 217 0.00 2019-07-14 02:55:26 2019-07-14 02:55:35 t 1 1 73019 217 0.00 2019-07-14 02:56:26 2019-07-14 02:56:35 t 1 1 73020 217 0.00 2019-07-14 02:57:26 2019-07-14 02:57:35 t 1 1 73021 217 0.00 2019-07-14 02:58:27 2019-07-14 02:58:37 t 1 1 73026 217 0.00 2019-07-14 03:03:29 2019-07-14 03:03:38 t 1 1 73027 217 0.00 2019-07-14 03:04:30 2019-07-14 03:04:40 t 1 1 73031 217 0.00 2019-07-14 03:05:47 2019-07-14 03:06:29 t 1 1 73033 217 0.00 2019-07-14 03:07:47 2019-07-14 03:07:58 t 1 1 73038 217 0.00 2019-07-14 03:12:33 2019-07-14 03:12:34 t 1 1 73039 217 0.00 2019-07-14 03:19:37 2019-07-14 03:19:47 t 1 1 73040 217 0.00 2019-07-14 03:20:37 2019-07-14 03:20:38 t 1 1 73042 217 0.00 2019-07-14 03:28:05 2019-07-14 03:28:18 t 1 1 73044 217 0.00 2019-07-14 03:28:50 2019-07-14 03:28:59 t 1 1 73046 217 0.00 2019-07-14 03:35:46 2019-07-14 03:35:57 t 1 1 73050 217 0.00 2019-07-14 03:37:18 2019-07-14 03:37:18 t 1 1 73051 217 0.00 2019-07-14 03:37:27 2019-07-14 03:37:46 t 1 1 73056 217 0.00 2019-07-14 03:41:56 2019-07-14 03:42:05 t 1 1 73065 217 0.00 2019-07-14 03:53:51 2019-07-14 03:53:52 t 1 1 73066 217 0.00 2019-07-14 03:54:52 2019-07-14 03:55:00 t 1 1 73067 217 0.00 2019-07-14 03:55:52 2019-07-14 03:56:02 t 1 1 73068 217 0.00 2019-07-14 03:56:52 2019-07-14 03:57:01 t 1 1 73069 217 0.00 2019-07-14 03:57:53 2019-07-14 03:58:08 t 1 1 73072 217 0.00 2019-07-14 04:00:01 2019-07-14 04:00:09 t 1 1 73076 217 0.00 2019-07-14 04:02:08 2019-07-14 04:02:18 t 1 1 73077 217 0.00 2019-07-14 04:02:26 2019-07-14 04:02:54 t 1 1 73079 217 0.00 2019-07-14 04:04:13 2019-07-14 04:04:22 t 1 1 73080 217 0.00 2019-07-14 04:04:30 2019-07-14 04:04:56 t 1 1 73081 217 0.00 2019-07-14 04:05:59 2019-07-14 04:06:08 t 1 1 73082 217 0.00 2019-07-14 04:06:59 2019-07-14 04:07:08 t 1 1 73083 217 0.00 2019-07-14 04:08:02 2019-07-14 04:08:19 t 1 1 73085 217 0.00 2019-07-14 04:09:07 2019-07-14 04:09:15 t 1 1 73091 217 0.00 2019-07-14 04:12:27 2019-07-14 04:12:35 t 1 1 73092 217 0.00 2019-07-14 04:13:01 2019-07-14 04:13:10 t 1 1 73096 217 0.00 2019-07-14 04:16:11 2019-07-14 04:16:19 t 1 1 73097 217 0.00 2019-07-14 04:17:02 2019-07-14 04:17:11 t 1 1 73098 217 0.00 2019-07-14 04:18:02 2019-07-14 04:18:11 t 1 1 73104 217 0.00 2019-07-14 04:35:32 2019-07-14 04:35:33 t 1 1 73105 217 0.00 2019-07-14 04:35:49 2019-07-14 04:36:08 t 1 1 73106 217 0.00 2019-07-14 04:37:09 2019-07-14 04:37:18 t 1 1 73107 217 0.00 2019-07-14 04:38:09 2019-07-14 04:38:18 t 1 1 73109 217 0.00 2019-07-14 04:39:09 2019-07-14 04:39:10 t 1 1 73117 217 0.00 2019-07-14 04:45:12 2019-07-14 04:45:49 t 1 1 73122 217 0.00 2019-07-14 04:48:12 2019-07-14 04:48:21 t 1 1 73124 217 0.00 2019-07-14 04:48:38 2019-07-14 04:49:19 t 1 1 73125 217 0.00 2019-07-14 04:50:13 2019-07-14 04:50:22 t 1 1 73126 217 0.00 2019-07-14 04:50:30 2019-07-14 04:50:39 t 1 1 73131 217 0.00 2019-07-14 04:52:55 2019-07-14 04:53:10 t 1 1 73134 217 0.00 2019-07-14 05:00:01 2019-07-14 05:00:19 t 1 1 73135 217 0.00 2019-07-14 05:01:17 2019-07-14 05:02:56 t 1 1 73141 217 0.00 2019-07-14 05:05:57 2019-07-14 05:06:23 t 1 1 73142 217 0.00 2019-07-14 05:07:25 2019-07-14 05:07:34 t 1 1 73143 217 0.00 2019-07-14 05:08:25 2019-07-14 05:08:34 t 1 1 73146 217 0.00 2019-07-14 05:10:25 2019-07-14 05:10:34 t 1 1 73147 217 0.00 2019-07-14 05:10:41 2019-07-14 05:10:51 t 1 1 73151 217 0.00 2019-07-14 05:14:27 2019-07-14 05:14:37 t 1 1 73152 217 0.00 2019-07-14 05:15:28 2019-07-14 05:15:37 t 1 1 73157 217 0.00 2019-07-14 05:26:14 2019-07-14 05:26:32 t 1 1 73164 217 0.00 2019-07-14 05:32:33 2019-07-14 05:32:42 t 1 1 73170 217 0.00 2019-07-14 05:38:34 2019-07-14 05:38:34 t 1 1 73171 217 0.00 2019-07-14 05:45:36 2019-07-14 05:45:45 t 1 1 73177 217 0.00 2019-07-14 06:03:44 2019-07-14 06:03:56 t 1 1 73179 217 0.00 2019-07-14 06:17:47 2019-07-14 06:17:59 t 1 1 73182 217 0.00 2019-07-14 06:26:10 2019-07-14 06:26:24 t 1 1 72668 212 0.00 2019-07-11 23:19:23 2019-07-11 23:20:39 t 1 2 72669 212 0.00 2019-07-11 23:21:11 2019-07-11 23:22:03 t 1 2 81089 288 0.00 2019-08-08 10:55:39 2019-08-08 10:56:44 t 1 2 72676 217 0.00 2019-07-11 23:42:50 2019-07-11 23:42:59 t 1 2 81092 304 0.00 2019-08-08 10:59:31 2019-08-08 10:59:31 f 1 2 72678 217 0.00 2019-07-11 23:46:48 2019-07-11 23:49:24 t 1 2 72679 230 0.00 2019-07-11 23:52:30 2019-07-11 23:53:09 t 1 2 72687 212 0.00 2019-07-12 00:00:44 2019-07-12 00:01:35 t 1 2 72689 218 0.00 2019-07-12 00:05:20 2019-07-12 00:06:20 t 1 2 72693 212 0.00 2019-07-12 00:22:10 2019-07-12 00:23:11 t 1 2 72696 234 0.00 2019-07-12 00:15:34 2019-07-12 00:25:39 t 1 2 72704 216 0.00 2019-07-12 00:40:47 2019-07-12 00:41:17 t 1 2 72705 212 0.00 2019-07-12 00:41:29 2019-07-12 00:42:30 t 1 2 72706 212 0.00 2019-07-12 00:43:52 2019-07-12 00:44:50 t 1 2 72708 212 0.00 2019-07-12 00:54:29 2019-07-12 00:54:35 t 1 2 72711 212 0.00 2019-07-12 00:56:41 2019-07-12 00:57:05 t 1 2 72997 217 0.00 2019-07-14 02:05:54 2019-07-14 02:06:03 t 1 1 73001 217 0.00 2019-07-14 02:14:07 2019-07-14 02:14:19 t 1 1 73002 217 0.00 2019-07-14 02:15:07 2019-07-14 02:15:16 t 1 1 73004 220 0.00 2019-07-14 02:18:11 2019-07-14 02:18:44 t 1 2 73009 217 0.00 2019-07-14 02:36:18 2019-07-14 02:36:30 t 1 1 81094 304 0.00 2019-08-08 10:59:52 2019-08-08 10:59:52 f 1 2 73023 217 0.00 2019-07-14 03:00:28 2019-07-14 03:00:38 t 1 1 73024 217 0.00 2019-07-14 03:01:28 2019-07-14 03:01:37 t 1 1 73025 217 0.00 2019-07-14 03:02:29 2019-07-14 03:02:38 t 1 1 73028 217 0.00 2019-07-14 03:04:48 2019-07-14 03:04:49 t 1 1 73047 217 0.00 2019-07-14 03:36:07 2019-07-14 03:36:17 t 1 1 73048 217 0.00 2019-07-14 03:36:28 2019-07-14 03:36:44 t 1 1 73057 217 0.00 2019-07-14 03:42:12 2019-07-14 03:42:21 t 1 1 73058 217 0.00 2019-07-14 03:42:47 2019-07-14 03:42:57 t 1 1 73060 217 0.00 2019-07-14 03:43:48 2019-07-14 03:43:57 t 1 1 73061 217 0.00 2019-07-14 03:44:04 2019-07-14 03:45:05 t 1 1 73062 217 0.00 2019-07-14 03:50:50 2019-07-14 03:51:00 t 1 1 73063 217 0.00 2019-07-14 03:51:51 2019-07-14 03:52:00 t 1 1 73064 217 0.00 2019-07-14 03:52:51 2019-07-14 03:53:00 t 1 1 73073 217 0.00 2019-07-14 04:00:17 2019-07-14 04:00:26 t 1 1 73074 217 0.00 2019-07-14 04:00:34 2019-07-14 04:00:51 t 1 1 73086 217 0.00 2019-07-14 04:09:24 2019-07-14 04:09:32 t 1 1 73087 217 0.00 2019-07-14 04:09:40 2019-07-14 04:10:00 t 1 1 73088 217 0.00 2019-07-14 04:11:01 2019-07-14 04:11:10 t 1 1 73089 217 0.00 2019-07-14 04:12:01 2019-07-14 04:12:02 t 1 1 73100 217 0.00 2019-07-14 04:26:04 2019-07-14 04:26:26 t 1 1 73101 217 0.00 2019-07-14 04:27:05 2019-07-14 04:27:13 t 1 1 73102 217 0.00 2019-07-14 04:28:05 2019-07-14 04:29:56 t 1 1 73108 217 0.00 2019-07-14 04:38:25 2019-07-14 04:38:35 t 1 1 73110 217 0.00 2019-07-14 04:39:18 2019-07-14 04:39:27 t 1 1 73111 217 0.00 2019-07-14 04:39:35 2019-07-14 04:40:10 t 1 1 73112 217 0.00 2019-07-14 04:41:11 2019-07-14 04:41:20 t 1 1 73116 217 0.00 2019-07-14 04:44:11 2019-07-14 04:44:21 t 1 1 73118 217 0.00 2019-07-14 04:46:12 2019-07-14 04:46:21 t 1 1 73119 217 0.00 2019-07-14 04:46:28 2019-07-14 04:46:39 t 1 1 73123 217 0.00 2019-07-14 04:48:29 2019-07-14 04:48:30 t 1 1 73127 217 0.00 2019-07-14 04:51:13 2019-07-14 04:51:23 t 1 1 73128 217 0.00 2019-07-14 04:52:13 2019-07-14 04:52:14 t 1 1 73137 217 0.00 2019-07-14 05:04:24 2019-07-14 05:04:25 t 1 1 73138 217 0.00 2019-07-14 05:04:33 2019-07-14 05:04:41 t 1 1 73148 217 0.00 2019-07-14 05:10:59 2019-07-14 05:11:25 t 1 1 73149 217 0.00 2019-07-14 05:12:27 2019-07-14 05:12:36 t 1 1 73150 217 0.00 2019-07-14 05:13:27 2019-07-14 05:13:36 t 1 1 73155 217 0.00 2019-07-14 05:25:33 2019-07-14 05:25:45 t 1 1 81104 304 0.00 2019-08-08 11:07:10 2019-08-08 11:07:16 t 1 2 73159 217 0.00 2019-07-14 05:27:33 2019-07-14 05:27:41 t 1 1 73161 217 0.00 2019-07-14 05:29:33 2019-07-14 05:29:42 t 1 1 73173 217 0.00 2019-07-14 05:53:39 2019-07-14 05:53:49 t 1 1 73174 217 0.00 2019-07-14 05:54:39 2019-07-14 05:54:47 t 1 1 73175 217 0.00 2019-07-14 05:55:39 2019-07-14 05:55:49 t 1 1 73176 217 0.00 2019-07-14 05:56:39 2019-07-14 05:56:40 t 1 1 73178 217 0.00 2019-07-14 06:10:45 2019-07-14 06:10:57 t 1 1 73184 217 0.00 2019-07-14 06:26:56 2019-07-14 06:26:58 t 1 1 73188 217 0.00 2019-07-14 06:40:55 2019-07-14 06:41:06 t 1 1 73191 217 0.00 2019-07-14 06:47:57 2019-07-14 06:48:08 t 1 1 73193 217 0.00 2019-07-14 06:48:38 2019-07-14 06:48:55 t 1 1 73194 217 0.00 2019-07-14 06:49:58 2019-07-14 06:49:59 t 1 1 73196 217 0.00 2019-07-14 06:54:13 2019-07-14 06:54:25 t 1 1 73197 217 0.00 2019-07-14 06:54:35 2019-07-14 06:54:59 t 1 1 73198 217 0.00 2019-07-14 06:56:01 2019-07-14 06:56:02 t 1 1 73199 217 0.00 2019-07-14 06:56:43 2019-07-14 06:57:01 t 1 1 73202 217 0.00 2019-07-14 06:57:35 2019-07-14 06:57:36 t 1 1 73203 217 0.00 2019-07-14 06:57:46 2019-07-14 06:58:06 t 1 1 73204 217 0.00 2019-07-14 06:58:16 2019-07-14 06:58:27 t 1 1 73206 217 0.00 2019-07-14 06:58:47 2019-07-14 06:59:03 t 1 1 73210 217 0.00 2019-07-14 06:59:52 2019-07-14 07:00:06 t 1 1 73211 217 0.00 2019-07-14 07:01:07 2019-07-14 07:01:16 t 1 1 73212 217 0.00 2019-07-14 07:02:07 2019-07-14 07:02:16 t 1 1 73213 217 0.00 2019-07-14 07:03:07 2019-07-14 07:03:16 t 1 1 73234 217 0.00 2019-07-14 07:45:21 2019-07-14 07:45:31 t 1 1 73240 217 0.00 2019-07-14 08:06:10 2019-07-14 08:06:24 t 1 1 73241 217 0.00 2019-07-14 08:06:34 2019-07-14 08:06:45 t 1 1 73243 217 0.00 2019-07-14 08:06:55 2019-07-14 08:07:24 t 1 1 73244 217 0.00 2019-07-14 08:07:35 2019-07-14 08:07:47 t 1 1 73255 217 0.00 2019-07-14 08:26:34 2019-07-14 08:26:52 t 1 1 73258 217 0.00 2019-07-14 08:28:50 2019-07-14 08:29:00 t 1 1 73259 217 0.00 2019-07-14 08:29:33 2019-07-14 08:29:43 t 1 1 73264 217 0.00 2019-07-14 08:31:51 2019-07-14 08:32:01 t 1 1 73267 212 0.00 2019-07-14 08:33:19 2019-07-14 08:34:01 t 1 2 73268 217 0.00 2019-07-14 08:34:35 2019-07-14 08:34:45 t 1 1 73269 217 0.00 2019-07-14 08:35:35 2019-07-14 08:35:45 t 1 1 73270 217 0.00 2019-07-14 08:36:36 2019-07-14 08:36:46 t 1 1 73271 217 0.00 2019-07-14 08:37:36 2019-07-14 08:37:45 t 1 1 73273 217 0.00 2019-07-14 08:38:44 2019-07-14 08:38:52 t 1 1 73280 217 0.00 2019-07-14 08:43:37 2019-07-14 08:43:47 t 1 1 73283 217 0.00 2019-07-14 08:44:55 2019-07-14 08:45:04 t 1 1 73289 217 0.00 2019-07-14 08:47:47 2019-07-14 08:47:56 t 1 1 73291 217 0.00 2019-07-14 08:48:39 2019-07-14 08:48:47 t 1 1 73295 212 0.00 2019-07-14 08:51:15 2019-07-14 08:51:40 t 1 2 73303 212 0.00 2019-07-14 09:01:34 2019-07-14 09:02:17 t 1 2 73304 217 0.00 2019-07-14 09:04:44 2019-07-14 09:04:55 t 1 1 73133 217 0.00 2019-07-14 04:59:13 2019-07-14 04:59:51 t 1 1 73136 217 0.00 2019-07-14 05:02:36 2019-07-14 05:03:23 t 1 1 73139 217 0.00 2019-07-14 05:05:24 2019-07-14 05:05:32 t 1 1 73140 217 0.00 2019-07-14 05:05:40 2019-07-14 05:05:50 t 1 1 73144 217 0.00 2019-07-14 05:09:25 2019-07-14 05:09:35 t 1 1 73145 217 0.00 2019-07-14 05:09:43 2019-07-14 05:09:52 t 1 1 73153 217 0.00 2019-07-14 05:16:28 2019-07-14 05:16:38 t 1 1 73154 217 0.00 2019-07-14 05:17:28 2019-07-14 05:17:37 t 1 1 73156 217 0.00 2019-07-14 05:25:55 2019-07-14 05:25:57 t 1 1 73160 217 0.00 2019-07-14 05:28:32 2019-07-14 05:28:43 t 1 1 73162 217 0.00 2019-07-14 05:30:33 2019-07-14 05:30:42 t 1 1 73163 217 0.00 2019-07-14 05:31:33 2019-07-14 05:31:42 t 1 1 73165 217 0.00 2019-07-14 05:33:33 2019-07-14 05:33:43 t 1 1 73166 217 0.00 2019-07-14 05:34:34 2019-07-14 05:34:43 t 1 1 73167 217 0.00 2019-07-14 05:35:34 2019-07-14 05:35:44 t 1 1 73168 217 0.00 2019-07-14 05:36:34 2019-07-14 05:36:43 t 1 1 73169 217 0.00 2019-07-14 05:37:34 2019-07-14 05:37:43 t 1 1 73172 217 0.00 2019-07-14 05:46:37 2019-07-14 05:47:37 t 1 1 73180 217 0.00 2019-07-14 06:18:47 2019-07-14 06:19:00 t 1 1 73181 217 0.00 2019-07-14 06:25:50 2019-07-14 06:26:01 t 1 1 73185 217 0.00 2019-07-14 06:27:08 2019-07-14 06:27:09 t 1 1 73186 217 0.00 2019-07-14 06:27:20 2019-07-14 06:29:56 t 1 1 73189 217 0.00 2019-07-14 06:41:16 2019-07-14 06:41:18 t 1 1 73192 217 0.00 2019-07-14 06:48:18 2019-07-14 06:48:28 t 1 1 73200 217 0.00 2019-07-14 06:57:11 2019-07-14 06:57:13 t 1 1 73207 217 0.00 2019-07-14 06:59:11 2019-07-14 06:59:19 t 1 1 73215 217 0.00 2019-07-14 07:05:08 2019-07-14 07:06:08 t 1 1 73216 217 0.00 2019-07-14 07:12:10 2019-07-14 07:12:19 t 1 1 73217 217 0.00 2019-07-14 07:13:09 2019-07-14 07:13:11 t 1 1 73219 217 0.00 2019-07-14 07:14:10 2019-07-14 07:14:18 t 1 1 73220 217 0.00 2019-07-14 07:15:11 2019-07-14 07:15:20 t 1 1 73221 217 0.00 2019-07-14 07:16:11 2019-07-14 07:16:20 t 1 1 73222 217 0.00 2019-07-14 07:17:11 2019-07-14 07:17:21 t 1 1 73223 217 0.00 2019-07-14 07:18:11 2019-07-14 07:18:12 t 1 1 73225 217 0.00 2019-07-14 07:19:11 2019-07-14 07:19:19 t 1 1 73226 217 0.00 2019-07-14 07:20:10 2019-07-14 07:20:20 t 1 1 73228 217 0.00 2019-07-14 07:27:15 2019-07-14 07:27:27 t 1 1 73229 217 0.00 2019-07-14 07:35:18 2019-07-14 07:35:29 t 1 1 73230 217 0.00 2019-07-14 07:36:00 2019-07-14 07:36:16 t 1 1 73231 217 0.00 2019-07-14 07:37:17 2019-07-14 07:37:26 t 1 1 73232 217 0.00 2019-07-14 07:38:17 2019-07-14 07:38:18 t 1 1 73233 217 0.00 2019-07-14 07:41:20 2019-07-14 07:41:21 t 1 1 73235 217 0.00 2019-07-14 07:45:41 2019-07-14 07:47:56 t 1 1 73236 217 0.00 2019-07-14 07:51:23 2019-07-14 07:51:35 t 1 1 73238 217 0.00 2019-07-14 07:59:55 2019-07-14 08:01:57 t 1 1 73242 212 0.00 2019-07-14 08:04:34 2019-07-14 08:07:04 t 1 2 73245 217 0.00 2019-07-14 08:07:57 2019-07-14 08:07:58 t 1 1 73246 217 0.00 2019-07-14 08:14:29 2019-07-14 08:14:38 t 1 1 73247 217 0.00 2019-07-14 08:15:29 2019-07-14 08:15:39 t 1 1 73248 217 0.00 2019-07-14 08:16:30 2019-07-14 08:16:39 t 1 1 73251 217 0.00 2019-07-14 08:18:30 2019-07-14 08:18:39 t 1 1 73252 217 0.00 2019-07-14 08:19:30 2019-07-14 08:19:39 t 1 1 73254 247 0.00 2019-07-14 08:08:18 2019-07-14 08:23:34 t 1 2 73256 217 0.00 2019-07-14 08:27:22 2019-07-14 08:27:31 t 1 1 73260 217 0.00 2019-07-14 08:30:34 2019-07-14 08:30:35 t 1 1 73261 217 0.00 2019-07-14 08:30:43 2019-07-14 08:30:51 t 1 1 73265 217 0.00 2019-07-14 08:32:08 2019-07-14 08:32:34 t 1 1 73266 217 0.00 2019-07-14 08:33:34 2019-07-14 08:33:43 t 1 1 73272 217 0.00 2019-07-14 08:38:36 2019-07-14 08:38:37 t 1 1 73274 217 0.00 2019-07-14 08:39:00 2019-07-14 08:39:09 t 1 1 73276 217 0.00 2019-07-14 08:40:37 2019-07-14 08:40:45 t 1 1 73284 217 0.00 2019-07-14 08:45:12 2019-07-14 08:45:13 t 1 1 73285 217 0.00 2019-07-14 08:45:38 2019-07-14 08:45:46 t 1 1 73290 217 0.00 2019-07-14 08:48:04 2019-07-14 08:48:12 t 1 1 73292 217 0.00 2019-07-14 08:48:55 2019-07-14 08:48:56 t 1 1 73293 217 0.00 2019-07-14 08:49:38 2019-07-14 08:49:47 t 1 1 73294 217 0.00 2019-07-14 08:50:38 2019-07-14 08:50:47 t 1 1 73298 217 0.00 2019-07-14 08:53:40 2019-07-14 08:53:49 t 1 1 73299 217 0.00 2019-07-14 08:54:39 2019-07-14 08:54:49 t 1 1 73300 217 0.00 2019-07-14 08:55:39 2019-07-14 08:55:49 t 1 1 73301 217 0.00 2019-07-14 08:56:39 2019-07-14 08:56:49 t 1 1 73306 217 0.00 2019-07-14 09:12:29 2019-07-14 09:12:43 t 1 1 73308 217 0.00 2019-07-14 09:13:46 2019-07-14 09:13:54 t 1 1 73309 245 0.00 2019-07-14 09:13:46 2019-07-14 09:14:50 t 1 2 74311 263 0.00 2019-07-15 04:56:58 2019-07-15 04:58:02 t 1 2 74315 212 0.00 2019-07-15 05:42:40 2019-07-15 05:43:44 t 1 2 74321 218 0.00 2019-07-15 09:03:10 2019-07-15 09:17:15 t 1 2 74332 247 0.00 2019-07-15 10:52:55 2019-07-15 10:55:27 t 1 2 74338 263 0.00 2019-07-15 11:56:38 2019-07-15 11:57:44 t 1 2 74339 217 0.00 2019-07-15 11:44:12 2019-07-15 12:04:17 t 1 2 74344 212 0.00 2019-07-15 12:44:23 2019-07-15 12:44:48 t 1 2 74350 220 0.00 2019-07-15 13:03:10 2019-07-15 13:03:19 t 1 1 74353 265 0.00 2019-07-15 12:53:27 2019-07-15 13:05:50 t 1 2 74358 220 0.00 2019-07-15 13:14:57 2019-07-15 13:15:58 t 1 1 74360 251 0.00 2019-07-15 13:10:17 2019-07-15 13:20:22 t 1 2 74361 272 0.00 2019-07-15 12:31:09 2019-07-15 13:21:14 t 1 2 74362 220 0.00 2019-07-15 13:21:46 2019-07-15 13:21:56 t 1 1 74366 247 0.00 2019-07-15 13:26:25 2019-07-15 13:28:12 t 1 2 74370 220 0.00 2019-07-15 13:37:05 2019-07-15 13:37:40 t 1 1 74375 220 0.00 2019-07-15 13:43:30 2019-07-15 13:43:44 t 1 1 74378 236 0.00 2019-07-15 13:35:32 2019-07-15 13:50:37 t 1 2 81099 304 0.00 2019-08-08 11:01:01 2019-08-08 11:01:01 f 1 2 74382 220 0.00 2019-07-15 13:55:49 2019-07-15 13:56:15 t 1 1 74383 220 0.00 2019-07-15 13:57:19 2019-07-15 13:57:27 t 1 1 74389 265 0.00 2019-07-15 13:06:04 2019-07-15 14:11:09 t 1 2 74393 263 0.00 2019-07-15 14:21:53 2019-07-15 14:22:58 t 1 2 74394 218 0.00 2019-07-15 11:40:52 2019-07-15 14:26:47 t 1 2 81107 288 0.00 2019-08-08 11:12:52 2019-08-08 11:13:59 t 1 2 74398 212 0.00 2019-07-15 15:00:41 2019-07-15 15:12:47 t 1 2 74401 265 0.00 2019-07-15 15:31:33 2019-07-15 15:32:41 t 1 2 74405 251 0.00 2019-07-15 15:40:15 2019-07-15 16:20:20 t 1 2 74407 220 0.00 2019-07-15 17:24:01 2019-07-15 17:27:05 t 1 2 74410 263 0.00 2019-07-15 17:49:58 2019-07-15 17:51:04 t 1 2 74414 220 0.00 2019-07-15 18:05:36 2019-07-15 18:06:07 t 1 2 74416 245 0.00 2019-07-15 18:09:18 2019-07-15 18:10:19 t 1 2 74417 271 0.00 2019-07-15 17:20:39 2019-07-15 18:10:42 t 1 2 74419 271 0.00 2019-07-15 18:29:46 2019-07-15 18:39:51 t 1 2 73183 217 0.00 2019-07-14 06:26:34 2019-07-14 06:26:46 t 1 1 73187 217 0.00 2019-07-14 06:33:52 2019-07-14 06:34:04 t 1 1 73190 217 0.00 2019-07-14 06:41:28 2019-07-14 06:41:29 t 1 1 73195 217 0.00 2019-07-14 06:53:50 2019-07-14 06:54:03 t 1 1 73201 217 0.00 2019-07-14 06:57:23 2019-07-14 06:57:25 t 1 1 73205 217 0.00 2019-07-14 06:58:38 2019-07-14 06:58:39 t 1 1 73208 217 0.00 2019-07-14 06:59:27 2019-07-14 06:59:28 t 1 1 73209 217 0.00 2019-07-14 06:59:36 2019-07-14 06:59:44 t 1 1 73214 217 0.00 2019-07-14 07:04:07 2019-07-14 07:04:16 t 1 1 73218 217 0.00 2019-07-14 07:13:18 2019-07-14 07:13:26 t 1 1 73224 217 0.00 2019-07-14 07:18:19 2019-07-14 07:18:27 t 1 1 73227 217 0.00 2019-07-14 07:20:28 2019-07-14 07:20:29 t 1 1 73237 217 0.00 2019-07-14 07:59:36 2019-07-14 07:59:45 t 1 1 73239 217 0.00 2019-07-14 08:05:41 2019-07-14 08:06:01 t 1 1 73249 217 0.00 2019-07-14 08:17:33 2019-07-14 08:17:34 t 1 1 73250 217 0.00 2019-07-14 08:17:42 2019-07-14 08:17:51 t 1 1 73253 217 0.00 2019-07-14 08:19:47 2019-07-14 08:19:48 t 1 1 73257 217 0.00 2019-07-14 08:28:33 2019-07-14 08:28:42 t 1 1 73262 217 0.00 2019-07-14 08:30:59 2019-07-14 08:31:07 t 1 1 73263 217 0.00 2019-07-14 08:31:34 2019-07-14 08:31:44 t 1 1 73275 217 0.00 2019-07-14 08:39:17 2019-07-14 08:39:34 t 1 1 73277 217 0.00 2019-07-14 08:40:53 2019-07-14 08:41:02 t 1 1 73278 217 0.00 2019-07-14 08:41:37 2019-07-14 08:41:47 t 1 1 73279 217 0.00 2019-07-14 08:42:37 2019-07-14 08:42:47 t 1 1 73281 212 0.00 2019-07-14 08:43:14 2019-07-14 08:43:49 t 1 2 73282 217 0.00 2019-07-14 08:44:37 2019-07-14 08:44:47 t 1 1 73286 217 0.00 2019-07-14 08:45:53 2019-07-14 08:46:03 t 1 1 73287 217 0.00 2019-07-14 08:46:38 2019-07-14 08:46:48 t 1 1 73288 217 0.00 2019-07-14 08:47:38 2019-07-14 08:47:40 t 1 1 73296 217 0.00 2019-07-14 08:51:38 2019-07-14 08:51:48 t 1 1 73297 217 0.00 2019-07-14 08:52:38 2019-07-14 08:52:48 t 1 1 73302 217 0.00 2019-07-14 08:57:39 2019-07-14 08:58:40 t 1 1 73305 217 0.00 2019-07-14 09:11:47 2019-07-14 09:11:59 t 1 1 74312 263 0.00 2019-07-15 04:59:23 2019-07-15 05:00:26 t 1 2 74313 263 0.00 2019-07-15 05:24:53 2019-07-15 05:25:57 t 1 2 74316 217 0.00 2019-07-15 05:41:45 2019-07-15 05:51:50 t 1 2 74317 218 0.00 2019-07-15 07:17:44 2019-07-15 07:32:50 t 1 2 74318 232 0.00 2019-07-15 07:25:29 2019-07-15 07:34:03 t 1 2 74320 247 0.00 2019-07-15 09:09:02 2019-07-15 09:09:59 t 1 2 74323 212 0.00 2019-07-15 09:26:58 2019-07-15 09:31:07 t 1 2 74324 218 0.00 2019-07-15 09:11:46 2019-07-15 09:33:57 t 1 2 81102 217 0.00 2019-08-08 11:05:56 2019-08-08 11:05:56 f 1 2 74329 247 0.00 2019-07-15 10:21:53 2019-07-15 10:25:03 t 1 2 74331 212 0.00 2019-07-15 10:35:01 2019-07-15 10:37:06 t 1 2 74335 212 0.00 2019-07-15 11:44:13 2019-07-15 11:44:52 t 1 2 74336 220 0.00 2019-07-15 11:50:32 2019-07-15 11:52:54 t 1 2 74341 247 0.00 2019-07-15 12:20:08 2019-07-15 12:22:34 t 1 2 74342 251 0.00 2019-07-15 11:45:37 2019-07-15 12:30:42 t 1 2 74343 217 0.00 2019-07-15 12:06:37 2019-07-15 12:36:45 t 1 2 74345 217 0.00 2019-07-15 12:42:34 2019-07-15 12:57:39 t 1 2 74346 220 0.00 2019-07-15 13:00:41 2019-07-15 13:01:12 t 1 1 74347 220 0.00 2019-07-15 13:01:36 2019-07-15 13:01:47 t 1 1 74354 220 0.00 2019-07-15 13:05:54 2019-07-15 13:05:55 t 1 1 74355 220 0.00 2019-07-15 13:12:56 2019-07-15 13:13:05 t 1 1 74359 220 0.00 2019-07-15 13:19:58 2019-07-15 13:20:07 t 1 1 74369 220 0.00 2019-07-15 13:35:49 2019-07-15 13:36:03 t 1 1 74374 220 0.00 2019-07-15 13:43:05 2019-07-15 13:43:18 t 1 1 74377 263 0.00 2019-07-15 13:45:42 2019-07-15 13:46:46 t 1 2 74380 220 0.00 2019-07-15 13:51:19 2019-07-15 13:52:59 t 1 1 74381 251 0.00 2019-07-15 13:16:07 2019-07-15 13:56:13 t 1 2 74384 212 0.00 2019-07-15 13:24:29 2019-07-15 14:00:06 t 1 2 74385 220 0.00 2019-07-15 14:00:32 2019-07-15 14:01:37 t 1 1 74386 263 0.00 2019-07-15 14:02:52 2019-07-15 14:03:57 t 1 2 74388 263 0.00 2019-07-15 14:09:30 2019-07-15 14:10:39 t 1 2 74391 263 0.00 2019-07-15 14:18:29 2019-07-15 14:19:34 t 1 2 74395 210 0.00 2019-07-15 14:29:11 2019-07-15 14:32:02 t 1 2 74399 245 0.00 2019-07-15 15:27:20 2019-07-15 15:28:23 t 1 2 74403 217 0.00 2019-07-15 15:57:21 2019-07-15 15:57:24 t 1 2 81105 243 0.00 2019-08-08 11:05:00 2019-08-08 11:07:54 t 1 2 74408 230 0.00 2019-07-15 15:45:18 2019-07-15 17:29:36 t 1 2 74409 220 0.00 2019-07-15 17:34:57 2019-07-15 17:38:25 t 1 2 74413 217 0.00 2019-07-15 16:49:30 2019-07-15 18:04:36 t 1 2 74418 245 0.00 2019-07-15 18:10:33 2019-07-15 18:11:40 t 1 2 74424 230 0.00 2019-07-15 18:27:23 2019-07-15 19:39:49 t 1 2 74426 271 0.00 2019-07-15 19:45:18 2019-07-15 20:00:23 t 1 2 74429 230 0.00 2019-07-15 20:09:07 2019-07-15 20:19:12 t 1 2 74431 247 0.00 2019-07-15 20:35:07 2019-07-15 20:37:24 t 1 2 74433 247 0.00 2019-07-15 21:16:05 2019-07-15 21:17:00 t 1 2 74434 220 0.00 2019-07-15 21:41:33 2019-07-15 21:43:36 t 1 2 74437 212 0.00 2019-07-15 22:41:29 2019-07-15 22:44:52 t 1 2 74439 212 0.00 2019-07-15 22:49:16 2019-07-15 22:50:27 t 1 2 74441 212 0.00 2019-07-15 23:00:21 2019-07-15 23:03:12 t 1 2 74442 243 0.00 2019-07-15 23:03:49 2019-07-15 23:05:53 t 1 2 74446 243 0.00 2019-07-15 23:21:36 2019-07-15 23:27:57 t 1 2 74449 213 0.00 2019-07-16 00:00:51 2019-07-16 00:01:55 t 1 2 74450 213 0.00 2019-07-16 00:02:21 2019-07-16 00:03:25 t 1 2 74451 212 0.00 2019-07-16 00:14:15 2019-07-16 00:15:31 t 1 2 74453 263 0.00 2019-07-16 00:19:21 2019-07-16 00:20:24 t 1 2 74457 230 0.00 2019-07-15 23:30:59 2019-07-16 00:24:10 t 1 2 74459 251 0.00 2019-07-16 00:18:18 2019-07-16 00:33:23 t 1 2 74461 204 0.00 2019-07-16 00:11:17 2019-07-16 00:48:23 t 1 2 74465 263 0.00 2019-07-16 00:58:25 2019-07-16 00:59:28 t 1 2 74466 251 0.00 2019-07-16 00:25:52 2019-07-16 01:00:57 t 1 2 74467 217 0.00 2019-07-16 00:22:39 2019-07-16 01:05:24 t 1 2 81106 212 0.00 2019-08-08 11:11:31 2019-08-08 11:12:01 t 1 2 74469 265 0.00 2019-07-16 01:20:58 2019-07-16 01:22:05 t 1 2 74471 265 0.00 2019-07-16 01:23:11 2019-07-16 01:24:12 t 1 2 74476 234 0.00 2019-07-16 03:46:45 2019-07-16 04:06:50 t 1 2 74483 212 0.00 2019-07-16 09:08:34 2019-07-16 09:09:37 t 1 2 74487 212 0.00 2019-07-16 10:59:49 2019-07-16 11:00:38 t 1 2 74491 212 0.00 2019-07-16 11:27:07 2019-07-16 11:27:36 t 1 2 74495 220 0.00 2019-07-16 12:10:46 2019-07-16 12:19:25 t 1 1 74501 272 0.00 2019-07-16 12:03:55 2019-07-16 13:04:00 t 1 2 74503 218 0.00 2019-07-16 13:03:58 2019-07-16 13:04:40 t 1 2 74504 234 0.00 2019-07-16 11:31:41 2019-07-16 13:06:46 t 1 2 74506 247 0.00 2019-07-16 13:43:51 2019-07-16 13:44:14 t 1 2 74507 217 0.00 2019-07-16 13:55:48 2019-07-16 13:57:47 t 1 2 73307 245 0.00 2019-07-14 09:12:05 2019-07-14 09:13:07 t 1 2 73310 217 0.00 2019-07-14 09:14:46 2019-07-14 09:14:56 t 1 1 74314 212 0.00 2019-07-15 05:40:46 2019-07-15 05:41:52 t 1 2 74319 218 0.00 2019-07-15 08:55:07 2019-07-15 09:03:39 t 1 2 74322 251 0.00 2019-07-15 09:09:13 2019-07-15 09:24:36 t 1 2 74326 232 0.00 2019-07-15 09:01:53 2019-07-15 09:36:58 t 1 2 74327 217 0.00 2019-07-15 10:06:51 2019-07-15 10:07:52 t 1 2 74328 217 0.00 2019-07-15 10:08:28 2019-07-15 10:15:38 t 1 2 74330 245 0.00 2019-07-15 10:29:12 2019-07-15 10:30:13 t 1 2 74333 263 0.00 2019-07-15 11:20:54 2019-07-15 11:21:58 t 1 2 74334 272 0.00 2019-07-15 11:22:04 2019-07-15 11:28:09 t 1 2 74337 263 0.00 2019-07-15 11:53:44 2019-07-15 11:54:50 t 1 2 74340 212 0.00 2019-07-15 12:16:41 2019-07-15 12:17:57 t 1 2 74348 220 0.00 2019-07-15 13:01:55 2019-07-15 13:02:05 t 1 1 74349 220 0.00 2019-07-15 13:02:51 2019-07-15 13:02:59 t 1 1 74351 220 0.00 2019-07-15 13:03:27 2019-07-15 13:03:50 t 1 1 74352 220 0.00 2019-07-15 13:04:53 2019-07-15 13:05:01 t 1 1 74356 220 0.00 2019-07-15 13:13:52 2019-07-15 13:14:01 t 1 1 74357 220 0.00 2019-07-15 13:13:20 2019-07-15 13:14:59 t 1 1 74363 220 0.00 2019-07-15 13:20:58 2019-07-15 13:21:59 t 1 1 74364 220 0.00 2019-07-15 13:22:58 2019-07-15 13:22:59 t 1 1 74365 220 0.00 2019-07-15 13:23:59 2019-07-15 13:24:59 t 1 1 74367 220 0.00 2019-07-15 13:34:24 2019-07-15 13:34:36 t 1 1 74368 220 0.00 2019-07-15 13:34:48 2019-07-15 13:35:06 t 1 1 74371 220 0.00 2019-07-15 13:38:07 2019-07-15 13:39:08 t 1 1 74372 220 0.00 2019-07-15 13:40:11 2019-07-15 13:40:35 t 1 1 74373 220 0.00 2019-07-15 13:41:00 2019-07-15 13:41:12 t 1 1 74376 220 0.00 2019-07-15 13:45:05 2019-07-15 13:45:17 t 1 1 74387 263 0.00 2019-07-15 14:06:16 2019-07-15 14:07:19 t 1 2 74390 263 0.00 2019-07-15 14:13:42 2019-07-15 14:14:41 t 1 2 74392 236 0.00 2019-07-15 13:49:41 2019-07-15 14:19:46 t 1 2 81108 288 0.00 2019-08-08 11:14:26 2019-08-08 11:15:33 t 1 2 74400 202 0.00 2019-07-15 15:31:28 2019-07-15 15:32:35 t 1 2 74402 202 0.00 2019-07-15 15:32:55 2019-07-15 15:34:03 t 1 2 74404 217 0.00 2019-07-15 15:57:26 2019-07-15 16:12:31 t 1 2 74411 220 0.00 2019-07-15 17:59:55 2019-07-15 18:00:16 t 1 2 74412 220 0.00 2019-07-15 17:49:13 2019-07-15 18:04:18 t 1 2 74415 245 0.00 2019-07-15 18:06:47 2019-07-15 18:07:48 t 1 2 74421 218 0.00 2019-07-15 19:21:26 2019-07-15 19:24:30 t 1 2 74423 269 0.00 2019-07-15 19:18:10 2019-07-15 19:30:33 t 1 2 74427 213 0.00 2019-07-15 20:03:47 2019-07-15 20:04:42 t 1 2 74428 213 0.00 2019-07-15 20:07:32 2019-07-15 20:08:11 t 1 2 74436 217 0.00 2019-07-15 21:57:10 2019-07-15 22:37:15 t 1 2 74438 243 0.00 2019-07-15 22:41:35 2019-07-15 22:46:28 t 1 2 74445 247 0.00 2019-07-15 23:14:50 2019-07-15 23:15:53 t 1 2 74452 217 0.00 2019-07-16 00:18:41 2019-07-16 00:18:57 t 1 2 74455 212 0.00 2019-07-16 00:20:24 2019-07-16 00:21:11 t 1 2 74460 230 0.00 2019-07-16 00:27:39 2019-07-16 00:47:45 t 1 2 74462 263 0.00 2019-07-16 00:49:29 2019-07-16 00:50:28 t 1 2 74464 232 0.00 2019-07-15 23:48:05 2019-07-16 00:58:10 t 1 2 74470 230 0.00 2019-07-16 00:38:58 2019-07-16 01:24:03 t 1 2 74474 251 0.00 2019-07-16 02:45:54 2019-07-16 03:06:00 t 1 2 74477 269 0.00 2019-07-16 05:28:22 2019-07-16 05:40:45 t 1 2 74478 269 0.00 2019-07-16 05:43:38 2019-07-16 06:29:01 t 1 2 74479 265 0.00 2019-07-16 07:41:18 2019-07-16 07:42:22 t 1 2 74480 265 0.00 2019-07-16 07:43:49 2019-07-16 07:44:50 t 1 2 74481 212 0.00 2019-07-16 08:19:45 2019-07-16 08:20:47 t 1 2 74482 247 0.00 2019-07-16 09:01:23 2019-07-16 09:04:13 t 1 2 74488 217 0.00 2019-07-16 11:03:55 2019-07-16 11:05:25 t 1 2 74489 269 0.00 2019-07-16 10:18:03 2019-07-16 11:14:23 t 1 2 74490 247 0.00 2019-07-16 11:22:42 2019-07-16 11:24:32 t 1 2 74493 245 0.00 2019-07-16 11:31:12 2019-07-16 11:32:13 t 1 2 74497 245 0.00 2019-07-16 12:37:56 2019-07-16 12:38:59 t 1 2 74500 207 0.00 2019-07-16 12:45:39 2019-07-16 12:46:44 t 1 2 74502 269 0.00 2019-07-16 12:11:09 2019-07-16 13:04:32 t 1 2 74505 217 0.00 2019-07-16 12:06:07 2019-07-16 13:33:59 t 1 2 74509 217 0.00 2019-07-16 13:53:25 2019-07-16 14:03:31 t 1 2 74510 217 0.00 2019-07-16 13:53:45 2019-07-16 14:03:50 t 1 2 74515 232 0.00 2019-07-16 11:20:15 2019-07-16 14:30:20 t 1 2 74517 247 0.00 2019-07-16 14:31:40 2019-07-16 14:36:04 t 1 2 74518 234 0.00 2019-07-16 14:27:48 2019-07-16 14:42:53 t 1 2 74520 234 0.00 2019-07-16 14:43:38 2019-07-16 14:58:43 t 1 2 81114 324 0.00 2019-08-08 11:15:30 2019-08-08 11:24:46 t 1 2 74525 209 0.00 2019-07-16 15:26:24 2019-07-16 15:27:29 t 1 2 74526 269 0.00 2019-07-16 15:19:59 2019-07-16 15:28:22 t 1 2 74527 209 0.00 2019-07-16 15:27:51 2019-07-16 15:28:57 t 1 2 74532 217 0.00 2019-07-16 16:08:09 2019-07-16 16:23:14 t 1 2 74534 220 0.00 2019-07-16 16:09:06 2019-07-16 16:28:08 t 1 1 74536 220 0.00 2019-07-16 16:28:42 2019-07-16 16:28:58 t 1 1 74540 220 0.00 2019-07-16 16:30:09 2019-07-16 16:30:24 t 1 1 74541 220 0.00 2019-07-16 16:30:33 2019-07-16 16:31:01 t 1 1 74544 220 0.00 2019-07-16 16:31:56 2019-07-16 16:32:13 t 1 1 74545 212 0.00 2019-07-16 16:36:47 2019-07-16 16:37:10 t 1 2 74550 220 0.00 2019-07-16 17:11:54 2019-07-16 17:20:34 t 1 1 74552 217 0.00 2019-07-16 17:29:01 2019-07-16 17:44:01 t 1 2 74553 234 0.00 2019-07-16 17:47:50 2019-07-16 17:54:11 t 1 2 74556 234 0.00 2019-07-16 18:01:38 2019-07-16 18:01:40 t 1 2 74557 234 0.00 2019-07-16 18:01:42 2019-07-16 18:04:48 t 1 2 74566 212 0.00 2019-07-16 20:57:03 2019-07-16 20:57:28 t 1 2 74568 247 0.00 2019-07-16 21:33:57 2019-07-16 21:35:55 t 1 2 74574 213 0.00 2019-07-16 22:18:23 2019-07-16 22:19:28 t 1 2 74579 213 0.00 2019-07-16 22:23:25 2019-07-16 22:24:28 t 1 2 74582 213 0.00 2019-07-16 22:44:26 2019-07-16 22:45:33 t 1 2 74585 243 0.00 2019-07-16 22:56:44 2019-07-16 22:56:49 t 1 2 74588 247 0.00 2019-07-16 23:12:55 2019-07-16 23:13:49 t 1 2 74592 212 0.00 2019-07-16 23:48:08 2019-07-16 23:48:32 t 1 2 74595 234 0.00 2019-07-16 23:54:50 2019-07-17 00:04:55 t 1 2 74598 232 0.00 2019-07-16 23:20:08 2019-07-17 00:35:14 t 1 2 74599 234 0.00 2019-07-17 00:35:51 2019-07-17 00:45:56 t 1 2 74600 230 0.00 2019-07-16 22:47:34 2019-07-17 00:50:35 t 1 2 74605 234 0.00 2019-07-17 01:59:09 2019-07-17 01:59:09 f 1 2 74611 202 0.00 2019-07-17 05:38:17 2019-07-17 05:39:21 t 1 2 81116 320 0.00 2019-08-08 11:12:01 2019-08-08 11:27:06 t 1 2 74619 212 0.00 2019-07-17 08:59:18 2019-07-17 09:00:15 t 1 2 74621 247 0.00 2019-07-17 09:21:39 2019-07-17 09:28:11 t 1 2 74625 243 0.00 2019-07-17 10:21:01 2019-07-17 10:25:47 t 1 2 74630 212 0.00 2019-07-17 11:40:40 2019-07-17 11:41:26 t 1 2 73311 217 0.00 2019-07-14 09:15:47 2019-07-14 09:15:56 t 1 1 73312 217 0.00 2019-07-14 09:16:47 2019-07-14 09:16:48 t 1 1 73313 217 0.00 2019-07-14 09:17:46 2019-07-14 09:17:55 t 1 1 73317 217 0.00 2019-07-14 09:32:03 2019-07-14 09:32:04 t 1 1 73320 217 0.00 2019-07-14 09:34:02 2019-07-14 09:34:11 t 1 1 81109 288 0.00 2019-08-08 11:16:47 2019-08-08 11:17:51 t 1 2 73323 217 0.00 2019-07-14 09:34:49 2019-07-14 09:37:10 t 1 1 73325 217 0.00 2019-07-14 09:37:19 2019-07-14 09:37:28 t 1 1 73326 217 0.00 2019-07-14 09:37:36 2019-07-14 09:37:46 t 1 1 73328 243 0.00 2019-07-14 09:34:42 2019-07-14 09:38:25 t 1 2 73330 217 0.00 2019-07-14 09:39:13 2019-07-14 09:39:22 t 1 1 73331 217 0.00 2019-07-14 09:39:29 2019-07-14 09:39:38 t 1 1 73337 217 0.00 2019-07-14 09:42:55 2019-07-14 09:43:11 t 1 1 73341 217 0.00 2019-07-14 09:50:10 2019-07-14 09:50:19 t 1 1 73344 207 0.00 2019-07-14 09:52:29 2019-07-14 09:52:35 t 1 2 73345 217 0.00 2019-07-14 09:51:19 2019-07-14 09:53:14 t 1 1 73347 207 0.00 2019-07-14 09:53:04 2019-07-14 09:54:10 t 1 2 73350 217 0.00 2019-07-14 09:54:48 2019-07-14 09:54:49 t 1 1 73351 217 0.00 2019-07-14 10:01:22 2019-07-14 10:01:34 t 1 1 73355 217 0.00 2019-07-14 10:09:31 2019-07-14 10:09:32 t 1 1 73356 217 0.00 2019-07-14 10:16:28 2019-07-14 10:16:53 t 1 1 73361 217 0.00 2019-07-14 10:20:29 2019-07-14 10:20:39 t 1 1 73367 217 0.00 2019-07-14 10:29:07 2019-07-14 10:29:31 t 1 1 73368 217 0.00 2019-07-14 10:29:41 2019-07-14 10:29:42 t 1 1 73372 217 0.00 2019-07-14 10:38:38 2019-07-14 10:38:47 t 1 1 73373 217 0.00 2019-07-14 10:39:38 2019-07-14 10:39:48 t 1 1 73374 217 0.00 2019-07-14 10:40:38 2019-07-14 10:40:48 t 1 1 73375 217 0.00 2019-07-14 10:41:38 2019-07-14 10:41:48 t 1 1 73376 217 0.00 2019-07-14 10:41:55 2019-07-14 10:42:05 t 1 1 73379 207 0.00 2019-07-14 10:42:02 2019-07-14 10:43:04 t 1 2 73381 217 0.00 2019-07-14 10:43:57 2019-07-14 10:44:06 t 1 1 73382 217 0.00 2019-07-14 10:44:14 2019-07-14 10:44:40 t 1 1 73383 217 0.00 2019-07-14 10:45:41 2019-07-14 10:45:50 t 1 1 73384 217 0.00 2019-07-14 10:46:41 2019-07-14 10:46:51 t 1 1 73385 217 0.00 2019-07-14 10:47:41 2019-07-14 10:47:42 t 1 1 73387 217 0.00 2019-07-14 10:48:41 2019-07-14 10:48:49 t 1 1 73388 217 0.00 2019-07-14 10:49:43 2019-07-14 10:49:53 t 1 1 73393 217 0.00 2019-07-14 10:53:46 2019-07-14 10:53:56 t 1 1 73408 217 0.00 2019-07-14 11:08:12 2019-07-14 11:08:22 t 1 1 73411 209 0.00 2019-07-14 11:15:45 2019-07-14 11:16:51 t 1 2 73415 217 0.00 2019-07-14 11:19:07 2019-07-14 11:19:16 t 1 1 73417 212 0.00 2019-07-14 11:22:00 2019-07-14 11:22:20 t 1 2 73421 217 0.00 2019-07-14 11:27:53 2019-07-14 11:27:54 t 1 1 73426 217 0.00 2019-07-14 11:37:25 2019-07-14 11:37:34 t 1 1 73427 217 0.00 2019-07-14 11:37:42 2019-07-14 11:37:43 t 1 1 73430 217 0.00 2019-07-14 11:39:28 2019-07-14 11:39:37 t 1 1 73433 217 0.00 2019-07-14 11:40:04 2019-07-14 11:40:29 t 1 1 73440 217 0.00 2019-07-14 11:45:59 2019-07-14 11:46:07 t 1 1 73441 217 0.00 2019-07-14 11:46:35 2019-07-14 11:46:44 t 1 1 73442 217 0.00 2019-07-14 11:47:36 2019-07-14 11:47:46 t 1 1 73444 217 0.00 2019-07-14 11:48:46 2019-07-14 11:48:54 t 1 1 73445 217 0.00 2019-07-14 11:49:38 2019-07-14 11:49:47 t 1 1 73446 217 0.00 2019-07-14 11:50:39 2019-07-14 11:50:49 t 1 1 73447 217 0.00 2019-07-14 11:51:40 2019-07-14 11:51:50 t 1 1 73449 217 0.00 2019-07-14 11:52:50 2019-07-14 11:52:58 t 1 1 73455 217 0.00 2019-07-14 11:56:45 2019-07-14 11:56:55 t 1 1 73456 217 0.00 2019-07-14 11:57:46 2019-07-14 11:57:56 t 1 1 73461 217 0.00 2019-07-14 12:00:57 2019-07-14 12:01:06 t 1 1 73462 217 0.00 2019-07-14 12:01:50 2019-07-14 12:02:05 t 1 1 73463 217 0.00 2019-07-14 12:02:51 2019-07-14 12:03:00 t 1 1 73465 217 0.00 2019-07-14 12:04:01 2019-07-14 12:04:09 t 1 1 73468 243 0.00 2019-07-14 11:59:12 2019-07-14 12:05:33 t 1 2 73469 217 0.00 2019-07-14 12:05:54 2019-07-14 12:06:03 t 1 1 73473 217 0.00 2019-07-14 12:07:21 2019-07-14 12:07:30 t 1 1 73474 217 0.00 2019-07-14 12:07:38 2019-07-14 12:07:54 t 1 1 73477 217 0.00 2019-07-14 12:09:58 2019-07-14 12:10:08 t 1 1 73478 217 0.00 2019-07-14 12:10:15 2019-07-14 12:10:25 t 1 1 73481 217 0.00 2019-07-14 12:11:16 2019-07-14 12:11:25 t 1 1 73482 217 0.00 2019-07-14 12:12:00 2019-07-14 12:12:09 t 1 1 73495 217 0.00 2019-07-14 12:43:09 2019-07-14 12:43:21 t 1 1 73497 217 0.00 2019-07-14 12:44:00 2019-07-14 12:45:57 t 1 1 73502 217 0.00 2019-07-14 12:53:11 2019-07-14 12:53:12 t 1 1 73514 204 0.00 2019-07-14 12:44:40 2019-07-14 13:11:04 t 1 2 73515 217 0.00 2019-07-14 10:57:56 2019-07-14 13:13:01 t 1 2 73517 217 0.00 2019-07-14 13:16:28 2019-07-14 13:16:39 t 1 1 73521 217 0.00 2019-07-14 13:17:57 2019-07-14 13:17:59 t 1 1 73523 217 0.00 2019-07-14 13:18:37 2019-07-14 13:18:38 t 1 1 73527 217 0.00 2019-07-14 13:21:06 2019-07-14 13:22:57 t 1 1 73530 217 0.00 2019-07-14 13:24:52 2019-07-14 13:24:53 t 1 1 73535 217 0.00 2019-07-14 13:27:04 2019-07-14 13:27:05 t 1 1 73538 217 0.00 2019-07-14 13:28:55 2019-07-14 13:29:03 t 1 1 73540 247 0.00 2019-07-14 13:33:25 2019-07-14 13:34:08 t 1 2 73544 217 0.00 2019-07-14 13:36:22 2019-07-14 13:36:23 t 1 1 73550 217 0.00 2019-07-14 13:40:58 2019-07-14 13:41:07 t 1 1 73552 217 0.00 2019-07-14 13:42:07 2019-07-14 13:42:16 t 1 1 73553 217 0.00 2019-07-14 13:42:24 2019-07-14 13:42:51 t 1 1 81111 286 0.00 2019-08-08 11:14:03 2019-08-08 11:21:31 t 1 2 73555 247 0.00 2019-07-14 13:41:47 2019-07-14 13:48:53 t 1 2 73557 247 0.00 2019-07-14 13:50:09 2019-07-14 13:52:41 t 1 2 73558 217 0.00 2019-07-14 13:52:06 2019-07-14 13:53:57 t 1 1 73565 210 0.00 2019-07-14 14:05:44 2019-07-14 14:05:52 t 1 2 74420 251 0.00 2019-07-15 18:46:13 2019-07-15 19:06:18 t 1 2 74422 232 0.00 2019-07-15 10:55:19 2019-07-15 19:30:25 t 1 2 74425 272 0.00 2019-07-15 16:39:32 2019-07-15 19:44:38 t 1 2 74430 271 0.00 2019-07-15 20:07:41 2019-07-15 20:34:11 t 1 2 74432 218 0.00 2019-07-15 20:53:41 2019-07-15 20:55:41 t 1 2 74435 217 0.00 2019-07-15 21:13:58 2019-07-15 22:18:34 t 1 2 74440 271 0.00 2019-07-15 22:04:59 2019-07-15 22:53:00 t 1 2 74443 232 0.00 2019-07-15 22:34:52 2019-07-15 23:09:57 t 1 2 74444 212 0.00 2019-07-15 23:06:45 2019-07-15 23:12:31 t 1 2 74447 212 0.00 2019-07-15 23:31:06 2019-07-15 23:31:32 t 1 2 74448 217 0.00 2019-07-15 23:42:18 2019-07-15 23:56:31 t 1 2 74454 217 0.00 2019-07-16 00:19:31 2019-07-16 00:20:49 t 1 2 74456 263 0.00 2019-07-16 00:20:39 2019-07-16 00:21:45 t 1 2 74458 212 0.00 2019-07-16 00:31:40 2019-07-16 00:32:19 t 1 2 74463 212 0.00 2019-07-16 00:54:06 2019-07-16 00:55:05 t 1 2 74472 265 0.00 2019-07-16 01:24:52 2019-07-16 01:25:55 t 1 2 73314 217 0.00 2019-07-14 09:18:46 2019-07-14 09:18:56 t 1 1 73315 217 0.00 2019-07-14 09:19:47 2019-07-14 09:19:49 t 1 1 73335 217 0.00 2019-07-14 09:42:30 2019-07-14 09:42:31 t 1 1 73336 217 0.00 2019-07-14 09:42:39 2019-07-14 09:42:47 t 1 1 73338 217 0.00 2019-07-14 09:44:14 2019-07-14 09:44:22 t 1 1 73339 217 0.00 2019-07-14 09:45:14 2019-07-14 09:45:15 t 1 1 73340 217 0.00 2019-07-14 09:49:20 2019-07-14 09:50:02 t 1 1 73342 207 0.00 2019-07-14 09:50:58 2019-07-14 09:51:21 t 1 2 73343 207 0.00 2019-07-14 09:51:49 2019-07-14 09:52:17 t 1 2 73348 217 0.00 2019-07-14 09:53:46 2019-07-14 09:54:15 t 1 1 73349 217 0.00 2019-07-14 09:54:26 2019-07-14 09:54:38 t 1 1 73352 217 0.00 2019-07-14 10:08:23 2019-07-14 10:08:35 t 1 1 73354 217 0.00 2019-07-14 10:09:04 2019-07-14 10:09:21 t 1 1 73358 217 0.00 2019-07-14 10:17:12 2019-07-14 10:17:26 t 1 1 73359 217 0.00 2019-07-14 10:18:27 2019-07-14 10:18:36 t 1 1 73363 217 0.00 2019-07-14 10:21:29 2019-07-14 10:21:34 t 1 1 73364 212 0.00 2019-07-14 10:23:46 2019-07-14 10:24:14 t 1 2 73366 217 0.00 2019-07-14 10:28:34 2019-07-14 10:28:57 t 1 1 73369 217 0.00 2019-07-14 10:14:09 2019-07-14 10:34:14 t 1 2 73370 217 0.00 2019-07-14 10:36:39 2019-07-14 10:36:48 t 1 1 73371 217 0.00 2019-07-14 10:37:38 2019-07-14 10:37:47 t 1 1 73377 247 0.00 2019-07-14 10:38:31 2019-07-14 10:42:39 t 1 2 73380 217 0.00 2019-07-14 10:43:39 2019-07-14 10:43:49 t 1 1 73396 217 0.00 2019-07-14 10:54:57 2019-07-14 10:55:06 t 1 1 73397 217 0.00 2019-07-14 10:55:46 2019-07-14 10:55:55 t 1 1 73399 217 0.00 2019-07-14 10:56:46 2019-07-14 10:57:47 t 1 1 73402 217 0.00 2019-07-14 11:03:52 2019-07-14 11:04:02 t 1 1 73403 217 0.00 2019-07-14 11:04:52 2019-07-14 11:05:02 t 1 1 73405 217 0.00 2019-07-14 11:06:02 2019-07-14 11:06:11 t 1 1 73406 217 0.00 2019-07-14 11:06:54 2019-07-14 11:07:03 t 1 1 73407 217 0.00 2019-07-14 11:07:55 2019-07-14 11:08:04 t 1 1 73409 217 0.00 2019-07-14 11:08:29 2019-07-14 11:08:55 t 1 1 73414 207 0.00 2019-07-14 11:18:23 2019-07-14 11:18:32 t 1 2 73419 217 0.00 2019-07-14 11:27:18 2019-07-14 11:27:30 t 1 1 73420 217 0.00 2019-07-14 11:27:40 2019-07-14 11:27:42 t 1 1 73422 217 0.00 2019-07-14 11:34:22 2019-07-14 11:34:32 t 1 1 73423 217 0.00 2019-07-14 11:35:23 2019-07-14 11:35:33 t 1 1 73424 217 0.00 2019-07-14 11:36:24 2019-07-14 11:36:25 t 1 1 73425 217 0.00 2019-07-14 11:36:33 2019-07-14 11:36:41 t 1 1 73429 217 0.00 2019-07-14 11:38:00 2019-07-14 11:38:26 t 1 1 73432 217 0.00 2019-07-14 11:39:54 2019-07-14 11:39:55 t 1 1 73434 217 0.00 2019-07-14 11:41:30 2019-07-14 11:41:40 t 1 1 73435 217 0.00 2019-07-14 11:42:31 2019-07-14 11:42:41 t 1 1 73438 217 0.00 2019-07-14 11:45:34 2019-07-14 11:45:35 t 1 1 73439 217 0.00 2019-07-14 11:45:43 2019-07-14 11:45:51 t 1 1 73443 217 0.00 2019-07-14 11:48:37 2019-07-14 11:48:39 t 1 1 73448 217 0.00 2019-07-14 11:52:41 2019-07-14 11:52:42 t 1 1 73450 217 0.00 2019-07-14 11:13:45 2019-07-14 11:53:50 t 1 2 73457 217 0.00 2019-07-14 11:58:47 2019-07-14 11:58:57 t 1 1 73458 217 0.00 2019-07-14 11:59:04 2019-07-14 11:59:14 t 1 1 73459 217 0.00 2019-07-14 11:59:48 2019-07-14 11:59:58 t 1 1 73460 217 0.00 2019-07-14 12:00:49 2019-07-14 12:00:50 t 1 1 73464 217 0.00 2019-07-14 12:03:52 2019-07-14 12:03:54 t 1 1 73472 217 0.00 2019-07-14 12:07:12 2019-07-14 12:07:13 t 1 1 73475 217 0.00 2019-07-14 12:08:57 2019-07-14 12:09:06 t 1 1 73476 212 0.00 2019-07-14 12:09:36 2019-07-14 12:09:46 t 1 2 73479 212 0.00 2019-07-14 12:10:08 2019-07-14 12:10:32 t 1 2 73480 217 0.00 2019-07-14 12:10:59 2019-07-14 12:11:08 t 1 1 73484 217 0.00 2019-07-14 12:19:08 2019-07-14 12:19:17 t 1 1 73485 217 0.00 2019-07-14 12:20:08 2019-07-14 12:20:18 t 1 1 73486 217 0.00 2019-07-14 12:21:09 2019-07-14 12:21:10 t 1 1 73490 247 0.00 2019-07-14 12:36:11 2019-07-14 12:37:24 t 1 2 73493 217 0.00 2019-07-14 12:42:02 2019-07-14 12:42:13 t 1 1 73494 217 0.00 2019-07-14 12:42:23 2019-07-14 12:42:59 t 1 1 73496 217 0.00 2019-07-14 12:43:31 2019-07-14 12:43:50 t 1 1 73500 217 0.00 2019-07-14 12:52:22 2019-07-14 12:52:32 t 1 1 73501 217 0.00 2019-07-14 12:52:43 2019-07-14 12:53:01 t 1 1 73503 247 0.00 2019-07-14 12:55:10 2019-07-14 12:57:15 t 1 2 73504 217 0.00 2019-07-14 12:58:09 2019-07-14 12:58:22 t 1 1 73505 217 0.00 2019-07-14 13:00:11 2019-07-14 13:00:24 t 1 1 73506 217 0.00 2019-07-14 13:00:36 2019-07-14 13:00:38 t 1 1 73507 217 0.00 2019-07-14 12:58:35 2019-07-14 13:00:57 t 1 1 73509 217 0.00 2019-07-14 13:01:17 2019-07-14 13:01:18 t 1 1 73510 217 0.00 2019-07-14 13:01:29 2019-07-14 13:03:57 t 1 1 73511 218 0.00 2019-07-14 13:00:40 2019-07-14 13:06:06 t 1 2 73512 218 0.00 2019-07-14 13:06:27 2019-07-14 13:07:05 t 1 2 73513 217 0.00 2019-07-14 13:08:19 2019-07-14 13:08:31 t 1 1 73519 217 0.00 2019-07-14 13:17:08 2019-07-14 13:17:25 t 1 1 73520 217 0.00 2019-07-14 13:17:35 2019-07-14 13:17:47 t 1 1 73524 217 0.00 2019-07-14 13:20:52 2019-07-14 13:20:54 t 1 1 73525 217 0.00 2019-07-14 13:21:14 2019-07-14 13:21:29 t 1 1 73528 217 0.00 2019-07-14 13:23:34 2019-07-14 13:23:44 t 1 1 73529 217 0.00 2019-07-14 13:24:35 2019-07-14 13:24:45 t 1 1 73534 217 0.00 2019-07-14 13:26:54 2019-07-14 13:26:56 t 1 1 73537 217 0.00 2019-07-14 13:28:38 2019-07-14 13:28:47 t 1 1 73541 212 0.00 2019-07-14 13:33:24 2019-07-14 13:34:11 t 1 2 73543 217 0.00 2019-07-14 13:36:10 2019-07-14 13:36:11 t 1 1 73545 217 0.00 2019-07-14 13:38:12 2019-07-14 13:38:14 t 1 1 73548 217 0.00 2019-07-14 13:40:06 2019-07-14 13:40:15 t 1 1 73549 217 0.00 2019-07-14 13:40:50 2019-07-14 13:40:51 t 1 1 73551 217 0.00 2019-07-14 13:41:51 2019-07-14 13:42:00 t 1 1 73561 217 0.00 2019-07-14 14:00:24 2019-07-14 14:00:26 t 1 1 73562 217 0.00 2019-07-14 14:00:37 2019-07-14 14:00:38 t 1 1 73563 217 0.00 2019-07-14 13:46:12 2019-07-14 14:04:51 t 1 2 73564 217 0.00 2019-07-14 14:05:30 2019-07-14 14:05:39 t 1 1 73568 217 0.00 2019-07-14 14:07:17 2019-07-14 14:07:27 t 1 1 73569 217 0.00 2019-07-14 14:08:18 2019-07-14 14:08:19 t 1 1 74473 263 0.00 2019-07-16 02:00:41 2019-07-16 02:01:44 t 1 2 74475 234 0.00 2019-07-16 01:11:52 2019-07-16 03:26:57 t 1 2 74484 243 0.00 2019-07-16 09:14:35 2019-07-16 09:16:44 t 1 2 74485 232 0.00 2019-07-16 07:39:44 2019-07-16 09:49:49 t 1 2 74486 217 0.00 2019-07-16 10:35:16 2019-07-16 10:40:21 t 1 2 74492 234 0.00 2019-07-16 10:40:58 2019-07-16 11:30:31 t 1 2 74494 217 0.00 2019-07-16 11:57:34 2019-07-16 12:12:40 t 1 2 74496 220 0.00 2019-07-16 12:19:24 2019-07-16 12:19:53 t 1 1 74498 207 0.00 2019-07-16 12:44:52 2019-07-16 12:45:15 t 1 2 74499 213 0.00 2019-07-16 12:45:13 2019-07-16 12:46:19 t 1 2 73316 217 0.00 2019-07-14 09:21:31 2019-07-14 09:21:41 t 1 1 73318 217 0.00 2019-07-14 09:32:13 2019-07-14 09:32:23 t 1 1 73319 217 0.00 2019-07-14 09:33:01 2019-07-14 09:33:10 t 1 1 73321 217 0.00 2019-07-14 09:34:18 2019-07-14 09:34:28 t 1 1 73324 247 0.00 2019-07-14 09:31:36 2019-07-14 09:37:20 t 1 2 73327 217 0.00 2019-07-14 09:37:54 2019-07-14 09:38:11 t 1 1 73329 212 0.00 2019-07-14 09:38:43 2019-07-14 09:39:15 t 1 2 73332 217 0.00 2019-07-14 09:40:14 2019-07-14 09:40:24 t 1 1 73333 217 0.00 2019-07-14 09:41:13 2019-07-14 09:41:22 t 1 1 73334 217 0.00 2019-07-14 09:42:13 2019-07-14 09:42:23 t 1 1 73346 217 0.00 2019-07-14 09:53:23 2019-07-14 09:53:36 t 1 1 73353 217 0.00 2019-07-14 10:08:45 2019-07-14 10:08:54 t 1 1 73357 217 0.00 2019-07-14 10:17:03 2019-07-14 10:17:04 t 1 1 73360 217 0.00 2019-07-14 10:19:27 2019-07-14 10:19:37 t 1 1 73362 217 0.00 2019-07-14 10:20:46 2019-07-14 10:20:47 t 1 1 81110 288 0.00 2019-08-08 11:18:55 2019-08-08 11:19:59 t 1 2 73378 217 0.00 2019-07-14 10:42:38 2019-07-14 10:42:48 t 1 1 73386 217 0.00 2019-07-14 10:47:51 2019-07-14 10:48:00 t 1 1 73389 217 0.00 2019-07-14 10:50:00 2019-07-14 10:50:21 t 1 1 73390 217 0.00 2019-07-14 10:50:43 2019-07-14 10:50:59 t 1 1 73391 217 0.00 2019-07-14 10:51:45 2019-07-14 10:51:54 t 1 1 73392 217 0.00 2019-07-14 10:52:45 2019-07-14 10:52:55 t 1 1 73394 217 0.00 2019-07-14 10:54:03 2019-07-14 10:54:04 t 1 1 73395 217 0.00 2019-07-14 10:54:46 2019-07-14 10:54:49 t 1 1 73398 217 0.00 2019-07-14 10:57:25 2019-07-14 10:57:32 t 1 2 73400 217 0.00 2019-07-14 10:59:49 2019-07-14 11:00:57 t 1 1 73401 212 0.00 2019-07-14 11:01:15 2019-07-14 11:02:11 t 1 2 73404 217 0.00 2019-07-14 11:05:53 2019-07-14 11:05:54 t 1 1 73410 243 0.00 2019-07-14 11:05:03 2019-07-14 11:11:24 t 1 2 73412 217 0.00 2019-07-14 11:17:08 2019-07-14 11:17:20 t 1 1 73413 217 0.00 2019-07-14 11:17:50 2019-07-14 11:18:05 t 1 1 73416 207 0.00 2019-07-14 11:18:50 2019-07-14 11:19:52 t 1 2 73418 247 0.00 2019-07-14 11:26:16 2019-07-14 11:26:56 t 1 2 73428 217 0.00 2019-07-14 11:37:51 2019-07-14 11:37:52 t 1 1 73431 217 0.00 2019-07-14 11:39:45 2019-07-14 11:39:46 t 1 1 73436 217 0.00 2019-07-14 11:43:32 2019-07-14 11:43:42 t 1 1 73437 217 0.00 2019-07-14 11:44:33 2019-07-14 11:44:43 t 1 1 73451 217 0.00 2019-07-14 11:53:42 2019-07-14 11:53:51 t 1 1 73452 217 0.00 2019-07-14 11:54:43 2019-07-14 11:54:53 t 1 1 73453 217 0.00 2019-07-14 11:55:44 2019-07-14 11:55:54 t 1 1 73454 247 0.00 2019-07-14 11:52:00 2019-07-14 11:56:51 t 1 2 73466 217 0.00 2019-07-14 12:04:18 2019-07-14 12:04:27 t 1 1 73467 217 0.00 2019-07-14 12:04:35 2019-07-14 12:04:51 t 1 1 73470 217 0.00 2019-07-14 12:06:10 2019-07-14 12:06:19 t 1 1 73471 217 0.00 2019-07-14 12:06:55 2019-07-14 12:07:04 t 1 1 73483 217 0.00 2019-07-14 12:12:17 2019-07-14 12:12:17 t 1 1 73487 217 0.00 2019-07-14 12:28:19 2019-07-14 12:28:31 t 1 1 73488 217 0.00 2019-07-14 12:31:22 2019-07-14 12:31:34 t 1 1 73489 212 0.00 2019-07-14 12:33:55 2019-07-14 12:34:17 t 1 2 73491 247 0.00 2019-07-14 12:39:43 2019-07-14 12:40:21 t 1 2 73492 217 0.00 2019-07-14 12:38:31 2019-07-14 12:41:52 t 1 1 73498 217 0.00 2019-07-14 12:51:04 2019-07-14 12:51:15 t 1 1 73499 217 0.00 2019-07-14 12:52:02 2019-07-14 12:52:12 t 1 1 73508 217 0.00 2019-07-14 13:00:48 2019-07-14 13:01:07 t 1 1 73516 212 0.00 2019-07-14 13:14:26 2019-07-14 13:14:51 t 1 2 73518 217 0.00 2019-07-14 13:16:49 2019-07-14 13:16:58 t 1 1 73522 217 0.00 2019-07-14 13:18:09 2019-07-14 13:18:27 t 1 1 73526 217 0.00 2019-07-14 13:22:33 2019-07-14 13:22:42 t 1 1 73531 217 0.00 2019-07-14 13:25:01 2019-07-14 13:25:03 t 1 1 73532 217 0.00 2019-07-14 13:25:36 2019-07-14 13:25:45 t 1 1 73533 217 0.00 2019-07-14 13:26:37 2019-07-14 13:26:47 t 1 1 73536 217 0.00 2019-07-14 13:27:13 2019-07-14 13:27:35 t 1 1 73539 217 0.00 2019-07-14 13:29:11 2019-07-14 13:29:12 t 1 1 73542 217 0.00 2019-07-14 13:35:48 2019-07-14 13:36:00 t 1 1 73546 217 0.00 2019-07-14 13:38:35 2019-07-14 13:38:47 t 1 1 73547 217 0.00 2019-07-14 13:39:49 2019-07-14 13:39:58 t 1 1 73556 217 0.00 2019-07-14 13:51:04 2019-07-14 13:51:16 t 1 1 73559 217 0.00 2019-07-14 13:59:12 2019-07-14 13:59:24 t 1 1 73560 217 0.00 2019-07-14 14:00:12 2019-07-14 14:00:14 t 1 1 73566 217 0.00 2019-07-14 14:06:16 2019-07-14 14:06:25 t 1 1 73567 210 0.00 2019-07-14 14:06:33 2019-07-14 14:06:41 t 1 2 73570 217 0.00 2019-07-14 14:09:24 2019-07-14 14:09:35 t 1 1 74508 217 0.00 2019-07-16 14:00:22 2019-07-16 14:00:22 f 1 2 74511 217 0.00 2019-07-16 14:06:01 2019-07-16 14:09:01 t 1 2 74514 234 0.00 2019-07-16 14:27:08 2019-07-16 14:27:58 t 1 2 74516 212 0.00 2019-07-16 14:35:34 2019-07-16 14:36:03 t 1 2 81113 288 0.00 2019-08-08 11:22:16 2019-08-08 11:23:22 t 1 2 74521 261 0.00 2019-07-16 14:53:53 2019-07-16 15:03:29 t 1 2 74522 213 0.00 2019-07-16 15:10:31 2019-07-16 15:10:40 t 1 2 74529 212 0.00 2019-07-16 15:41:11 2019-07-16 15:42:14 t 1 2 74533 213 0.00 2019-07-16 16:24:25 2019-07-16 16:25:31 t 1 2 74535 220 0.00 2019-07-16 16:28:17 2019-07-16 16:28:33 t 1 1 74537 220 0.00 2019-07-16 16:29:07 2019-07-16 16:29:21 t 1 1 74542 220 0.00 2019-07-16 16:31:12 2019-07-16 16:31:27 t 1 1 74547 234 0.00 2019-07-16 15:52:21 2019-07-16 16:52:26 t 1 2 74548 247 0.00 2019-07-16 16:55:16 2019-07-16 16:58:21 t 1 2 74551 243 0.00 2019-07-16 17:35:00 2019-07-16 17:42:10 t 1 2 74558 218 0.00 2019-07-16 18:47:33 2019-07-16 18:49:10 t 1 2 74560 212 0.00 2019-07-16 19:36:16 2019-07-16 19:36:52 t 1 2 74561 272 0.00 2019-07-16 19:44:02 2019-07-16 19:44:14 t 1 2 74564 243 0.00 2019-07-16 20:30:31 2019-07-16 20:36:07 t 1 2 74565 269 0.00 2019-07-16 18:47:46 2019-07-16 20:50:09 t 1 2 81118 288 0.00 2019-08-08 11:30:49 2019-08-08 11:31:53 t 1 2 74571 232 0.00 2019-07-16 15:27:07 2019-07-16 22:07:12 t 1 2 74573 213 0.00 2019-07-16 22:14:48 2019-07-16 22:15:53 t 1 2 74576 212 0.00 2019-07-16 22:21:40 2019-07-16 22:22:48 t 1 2 74578 212 0.00 2019-07-16 22:23:10 2019-07-16 22:24:18 t 1 2 74586 217 0.00 2019-07-16 22:52:23 2019-07-16 23:02:28 t 1 2 81120 288 0.00 2019-08-08 11:34:18 2019-08-08 11:35:24 t 1 2 74593 217 0.00 2019-07-16 22:40:59 2019-07-16 23:51:04 t 1 2 81122 288 0.00 2019-08-08 11:37:06 2019-08-08 11:38:10 t 1 2 74604 212 0.00 2019-07-17 01:51:53 2019-07-17 01:52:56 t 1 2 74606 234 0.00 2019-07-17 01:59:21 2019-07-17 01:59:21 f 1 2 74607 234 0.00 2019-07-17 01:59:56 2019-07-17 01:59:56 f 1 2 74608 217 0.00 2019-07-17 00:16:08 2019-07-17 02:11:13 t 1 2 74609 230 0.00 2019-07-17 01:14:44 2019-07-17 02:24:50 t 1 2 74612 217 0.00 2019-07-17 06:30:04 2019-07-17 06:31:07 t 1 2 73571 217 0.00 2019-07-14 14:11:04 2019-07-14 14:11:19 t 1 1 73574 217 0.00 2019-07-14 14:16:07 2019-07-14 14:16:25 t 1 1 73575 217 0.00 2019-07-14 14:16:35 2019-07-14 14:16:37 t 1 1 73580 251 0.00 2019-07-14 14:19:15 2019-07-14 14:19:19 t 1 2 73581 217 0.00 2019-07-14 14:19:31 2019-07-14 14:19:40 t 1 1 73584 212 0.00 2019-07-14 14:22:57 2019-07-14 14:23:22 t 1 2 73590 217 0.00 2019-07-14 14:32:47 2019-07-14 14:32:55 t 1 1 73599 217 0.00 2019-07-14 14:44:57 2019-07-14 14:44:58 t 1 1 73602 217 0.00 2019-07-14 14:50:02 2019-07-14 14:50:15 t 1 1 81112 288 0.00 2019-08-08 11:20:47 2019-08-08 11:21:52 t 1 2 73610 217 0.00 2019-07-14 14:56:25 2019-07-14 14:56:36 t 1 1 73611 217 0.00 2019-07-14 14:56:46 2019-07-14 14:56:59 t 1 1 73615 217 0.00 2019-07-14 14:59:50 2019-07-14 15:00:06 t 1 1 73617 217 0.00 2019-07-14 15:01:46 2019-07-14 15:02:04 t 1 1 73625 217 0.00 2019-07-14 15:08:24 2019-07-14 15:08:34 t 1 1 73627 232 0.00 2019-07-14 07:59:34 2019-07-14 15:09:39 t 1 2 73629 217 0.00 2019-07-14 15:10:08 2019-07-14 15:10:26 t 1 1 73630 217 0.00 2019-07-14 15:11:08 2019-07-14 15:11:16 t 1 1 73632 217 0.00 2019-07-14 15:12:09 2019-07-14 15:12:19 t 1 1 73633 217 0.00 2019-07-14 15:13:09 2019-07-14 15:13:18 t 1 1 73635 217 0.00 2019-07-14 15:14:18 2019-07-14 15:14:26 t 1 1 73643 212 0.00 2019-07-14 15:22:41 2019-07-14 15:23:12 t 1 2 73652 217 0.00 2019-07-14 15:30:19 2019-07-14 15:30:20 t 1 1 73657 217 0.00 2019-07-14 15:32:36 2019-07-14 15:32:37 t 1 1 73665 217 0.00 2019-07-14 15:36:47 2019-07-14 15:36:56 t 1 1 73667 217 0.00 2019-07-14 15:38:23 2019-07-14 15:38:32 t 1 1 73669 217 0.00 2019-07-14 15:39:24 2019-07-14 15:40:25 t 1 1 73671 217 0.00 2019-07-14 15:46:51 2019-07-14 15:46:53 t 1 1 73672 220 0.00 2019-07-14 15:42:19 2019-07-14 15:51:31 t 1 1 73673 217 0.00 2019-07-14 15:53:34 2019-07-14 15:53:48 t 1 1 73675 217 0.00 2019-07-14 16:00:37 2019-07-14 16:00:46 t 1 1 73678 217 0.00 2019-07-14 16:07:38 2019-07-14 16:07:48 t 1 1 73680 217 0.00 2019-07-14 16:08:47 2019-07-14 16:08:56 t 1 1 73681 217 0.00 2019-07-14 16:09:38 2019-07-14 16:09:47 t 1 1 73682 217 0.00 2019-07-14 16:10:39 2019-07-14 16:10:48 t 1 1 73683 217 0.00 2019-07-14 16:11:39 2019-07-14 16:11:40 t 1 1 73684 217 0.00 2019-07-14 15:15:36 2019-07-14 16:15:41 t 1 2 73685 217 0.00 2019-07-14 16:18:46 2019-07-14 16:19:03 t 1 1 73686 217 0.00 2019-07-14 16:19:46 2019-07-14 16:19:47 t 1 1 73687 212 0.00 2019-07-14 16:20:55 2019-07-14 16:21:26 t 1 2 73691 217 0.00 2019-07-14 16:27:56 2019-07-14 16:28:08 t 1 1 73693 217 0.00 2019-07-14 16:29:00 2019-07-14 16:29:10 t 1 1 73711 217 0.00 2019-07-14 16:41:20 2019-07-14 16:41:21 t 1 1 73717 217 0.00 2019-07-14 16:51:58 2019-07-14 16:52:07 t 1 1 73718 269 0.00 2019-07-14 15:04:44 2019-07-14 16:53:05 t 1 2 73720 217 0.00 2019-07-14 16:53:16 2019-07-14 16:53:17 t 1 1 73721 217 0.00 2019-07-14 16:54:44 2019-07-14 16:55:49 t 1 2 73724 261 0.00 2019-07-14 15:12:06 2019-07-14 17:07:30 t 1 2 73725 217 0.00 2019-07-14 17:08:06 2019-07-14 17:08:15 t 1 1 73728 217 0.00 2019-07-14 17:10:16 2019-07-14 17:10:25 t 1 1 73736 245 0.00 2019-07-14 17:15:59 2019-07-14 17:17:02 t 1 2 73743 217 0.00 2019-07-14 17:25:28 2019-07-14 17:25:30 t 1 1 73746 217 0.00 2019-07-14 17:33:26 2019-07-14 17:33:35 t 1 1 73751 217 0.00 2019-07-14 17:37:28 2019-07-14 17:37:37 t 1 1 73752 217 0.00 2019-07-14 17:37:45 2019-07-14 17:37:53 t 1 1 73754 217 0.00 2019-07-14 17:39:20 2019-07-14 17:39:35 t 1 1 73759 217 0.00 2019-07-14 17:41:57 2019-07-14 17:42:23 t 1 1 73760 217 0.00 2019-07-14 17:43:25 2019-07-14 17:43:35 t 1 1 73763 217 0.00 2019-07-14 17:44:51 2019-07-14 17:44:58 t 1 1 73768 217 0.00 2019-07-14 17:48:28 2019-07-14 17:48:37 t 1 1 73769 217 0.00 2019-07-14 17:49:29 2019-07-14 17:49:38 t 1 1 73772 217 0.00 2019-07-14 17:50:46 2019-07-14 17:50:56 t 1 1 73773 217 0.00 2019-07-14 17:51:30 2019-07-14 17:51:39 t 1 1 73776 217 0.00 2019-07-14 17:53:31 2019-07-14 17:53:40 t 1 1 73777 217 0.00 2019-07-14 17:54:31 2019-07-14 17:54:40 t 1 1 73778 217 0.00 2019-07-14 17:55:32 2019-07-14 17:55:42 t 1 1 73783 217 0.00 2019-07-14 17:58:35 2019-07-14 17:58:36 t 1 1 73785 217 0.00 2019-07-14 17:59:00 2019-07-14 17:59:08 t 1 1 73787 217 0.00 2019-07-14 18:00:37 2019-07-14 18:00:47 t 1 1 73788 217 0.00 2019-07-14 18:01:37 2019-07-14 18:01:38 t 1 1 73793 217 0.00 2019-07-14 18:02:53 2019-07-14 18:02:54 t 1 1 73795 245 0.00 2019-07-14 18:02:29 2019-07-14 18:03:32 t 1 2 73797 217 0.00 2019-07-14 18:04:38 2019-07-14 18:04:48 t 1 1 73801 217 0.00 2019-07-14 18:06:39 2019-07-14 18:06:49 t 1 1 73806 245 0.00 2019-07-14 18:16:08 2019-07-14 18:17:18 t 1 2 73809 217 0.00 2019-07-14 18:18:49 2019-07-14 18:19:02 t 1 1 73810 245 0.00 2019-07-14 18:19:04 2019-07-14 18:20:05 t 1 2 73814 217 0.00 2019-07-14 18:30:17 2019-07-14 18:30:53 t 1 1 73815 217 0.00 2019-07-14 18:31:54 2019-07-14 18:32:03 t 1 1 73816 217 0.00 2019-07-14 18:32:55 2019-07-14 18:33:05 t 1 1 73823 249 0.00 2019-07-14 18:34:37 2019-07-14 18:35:57 t 1 2 73831 249 0.00 2019-07-14 18:38:20 2019-07-14 18:39:24 t 1 2 73835 217 0.00 2019-07-14 18:40:28 2019-07-14 18:40:36 t 1 1 73836 249 0.00 2019-07-14 18:39:49 2019-07-14 18:40:55 t 1 2 73841 217 0.00 2019-07-14 18:43:20 2019-07-14 18:43:30 t 1 1 73847 249 0.00 2019-07-14 18:44:49 2019-07-14 18:45:53 t 1 2 73849 217 0.00 2019-07-14 18:47:06 2019-07-14 18:47:15 t 1 1 73853 217 0.00 2019-07-14 18:49:06 2019-07-14 18:49:16 t 1 1 73855 217 0.00 2019-07-14 18:50:08 2019-07-14 18:50:18 t 1 1 73857 249 0.00 2019-07-14 18:49:35 2019-07-14 18:50:42 t 1 2 74512 217 0.00 2019-07-16 13:59:41 2019-07-16 14:09:47 t 1 2 74513 217 0.00 2019-07-16 13:57:15 2019-07-16 14:12:20 t 1 2 74524 209 0.00 2019-07-16 15:24:17 2019-07-16 15:25:21 t 1 2 81115 288 0.00 2019-08-08 11:23:49 2019-08-08 11:24:53 t 1 2 74530 234 0.00 2019-07-16 15:30:58 2019-07-16 15:43:07 t 1 2 74531 217 0.00 2019-07-16 12:22:51 2019-07-16 15:56:01 t 1 2 74538 220 0.00 2019-07-16 16:29:33 2019-07-16 16:29:35 t 1 1 74539 220 0.00 2019-07-16 16:29:45 2019-07-16 16:30:00 t 1 1 74543 217 0.00 2019-07-16 14:31:33 2019-07-16 16:31:39 t 1 2 81123 288 0.00 2019-08-08 11:38:50 2019-08-08 11:39:53 t 1 2 74549 220 0.00 2019-07-16 16:32:24 2019-07-16 17:03:31 t 1 1 74554 272 0.00 2019-07-16 17:53:58 2019-07-16 17:55:49 t 1 2 74555 234 0.00 2019-07-16 17:55:03 2019-07-16 17:59:11 t 1 2 81127 304 0.00 2019-08-08 11:41:23 2019-08-08 11:41:23 f 1 2 74562 218 0.00 2019-07-16 19:38:29 2019-07-16 19:54:59 t 1 2 74563 272 0.00 2019-07-16 17:58:54 2019-07-16 20:13:59 t 1 2 74569 272 0.00 2019-07-16 21:01:16 2019-07-16 21:36:21 t 1 2 73572 217 0.00 2019-07-14 14:11:29 2019-07-14 14:13:18 t 1 1 73573 217 0.00 2019-07-14 14:15:28 2019-07-14 14:15:58 t 1 1 73577 217 0.00 2019-07-14 14:16:47 2019-07-14 14:16:48 t 1 1 73579 217 0.00 2019-07-14 14:18:30 2019-07-14 14:18:39 t 1 1 73583 217 0.00 2019-07-14 14:20:31 2019-07-14 14:20:32 t 1 1 73586 217 0.00 2019-07-14 14:29:36 2019-07-14 14:29:46 t 1 1 73587 217 0.00 2019-07-14 14:30:37 2019-07-14 14:30:47 t 1 1 73588 217 0.00 2019-07-14 14:31:38 2019-07-14 14:31:48 t 1 1 73589 217 0.00 2019-07-14 14:32:38 2019-07-14 14:32:39 t 1 1 73595 212 0.00 2019-07-14 14:42:09 2019-07-14 14:43:03 t 1 2 73597 217 0.00 2019-07-14 14:44:16 2019-07-14 14:44:18 t 1 1 73598 217 0.00 2019-07-14 14:44:32 2019-07-14 14:44:47 t 1 1 73601 217 0.00 2019-07-14 14:49:34 2019-07-14 14:49:52 t 1 1 73603 217 0.00 2019-07-14 14:50:34 2019-07-14 14:50:51 t 1 1 73607 217 0.00 2019-07-14 14:52:54 2019-07-14 14:53:19 t 1 1 73608 217 0.00 2019-07-14 14:53:55 2019-07-14 14:54:55 t 1 1 73609 217 0.00 2019-07-14 14:55:55 2019-07-14 14:56:14 t 1 1 73613 217 0.00 2019-07-14 14:58:25 2019-07-14 14:58:59 t 1 1 73614 217 0.00 2019-07-14 14:59:09 2019-07-14 14:59:38 t 1 1 81117 286 0.00 2019-08-08 11:23:37 2019-08-08 11:29:37 t 1 2 73623 217 0.00 2019-07-14 15:07:15 2019-07-14 15:07:23 t 1 1 73624 217 0.00 2019-07-14 15:08:07 2019-07-14 15:08:16 t 1 1 73626 217 0.00 2019-07-14 15:09:07 2019-07-14 15:09:16 t 1 1 81121 288 0.00 2019-08-08 11:35:44 2019-08-08 11:36:49 t 1 2 73634 217 0.00 2019-07-14 15:14:09 2019-07-14 15:14:10 t 1 1 73636 217 0.00 2019-07-14 15:15:10 2019-07-14 15:15:18 t 1 1 73638 247 0.00 2019-07-14 15:14:55 2019-07-14 15:17:00 t 1 2 73640 217 0.00 2019-07-14 15:18:20 2019-07-14 15:18:21 t 1 1 73642 265 0.00 2019-07-14 15:18:49 2019-07-14 15:19:56 t 1 2 73646 217 0.00 2019-07-14 15:26:25 2019-07-14 15:26:34 t 1 1 73647 217 0.00 2019-07-14 15:27:18 2019-07-14 15:27:27 t 1 1 73648 217 0.00 2019-07-14 15:28:18 2019-07-14 15:28:27 t 1 1 73650 217 0.00 2019-07-14 15:29:28 2019-07-14 15:29:36 t 1 1 73651 217 0.00 2019-07-14 15:29:44 2019-07-14 15:29:52 t 1 1 73655 217 0.00 2019-07-14 15:31:01 2019-07-14 15:31:16 t 1 1 73656 217 0.00 2019-07-14 15:32:20 2019-07-14 15:32:28 t 1 1 73659 217 0.00 2019-07-14 15:33:20 2019-07-14 15:33:29 t 1 1 73661 217 0.00 2019-07-14 15:33:53 2019-07-14 15:34:19 t 1 1 73662 217 0.00 2019-07-14 15:35:22 2019-07-14 15:35:32 t 1 1 73663 217 0.00 2019-07-14 15:36:22 2019-07-14 15:36:23 t 1 1 73664 217 0.00 2019-07-14 15:36:31 2019-07-14 15:36:39 t 1 1 73668 212 0.00 2019-07-14 15:38:14 2019-07-14 15:39:33 t 1 2 73670 217 0.00 2019-07-14 15:46:30 2019-07-14 15:46:41 t 1 1 73674 217 0.00 2019-07-14 15:53:58 2019-07-14 15:55:57 t 1 1 73679 217 0.00 2019-07-14 16:08:38 2019-07-14 16:08:39 t 1 1 73689 217 0.00 2019-07-14 16:26:49 2019-07-14 16:27:07 t 1 1 73690 217 0.00 2019-07-14 16:27:17 2019-07-14 16:27:46 t 1 1 73692 217 0.00 2019-07-14 16:28:49 2019-07-14 16:28:50 t 1 1 73694 217 0.00 2019-07-14 16:29:28 2019-07-14 16:29:48 t 1 1 73695 217 0.00 2019-07-14 16:30:49 2019-07-14 16:30:58 t 1 1 73696 217 0.00 2019-07-14 16:31:49 2019-07-14 16:31:50 t 1 1 73698 217 0.00 2019-07-14 16:31:58 2019-07-14 16:32:06 t 1 1 73699 217 0.00 2019-07-14 16:32:50 2019-07-14 16:32:59 t 1 1 73703 217 0.00 2019-07-14 16:35:59 2019-07-14 16:36:07 t 1 1 73705 217 0.00 2019-07-14 16:37:07 2019-07-14 16:37:08 t 1 1 73706 217 0.00 2019-07-14 16:38:19 2019-07-14 16:38:29 t 1 1 73710 217 0.00 2019-07-14 16:41:11 2019-07-14 16:41:12 t 1 1 73712 217 0.00 2019-07-14 16:47:56 2019-07-14 16:48:05 t 1 1 73719 217 0.00 2019-07-14 16:52:59 2019-07-14 16:53:08 t 1 1 73722 217 0.00 2019-07-14 17:00:05 2019-07-14 17:00:16 t 1 1 73726 217 0.00 2019-07-14 17:09:07 2019-07-14 17:09:17 t 1 1 73727 217 0.00 2019-07-14 17:10:07 2019-07-14 17:10:08 t 1 1 73732 217 0.00 2019-07-14 17:12:25 2019-07-14 17:12:35 t 1 1 73733 217 0.00 2019-07-14 17:13:09 2019-07-14 17:13:18 t 1 1 73737 212 0.00 2019-07-14 17:19:42 2019-07-14 17:20:39 t 1 2 73738 217 0.00 2019-07-14 17:22:15 2019-07-14 17:22:27 t 1 1 73739 217 0.00 2019-07-14 17:23:16 2019-07-14 17:23:26 t 1 1 73742 217 0.00 2019-07-14 17:25:16 2019-07-14 17:25:18 t 1 1 73744 217 0.00 2019-07-14 17:32:18 2019-07-14 17:32:27 t 1 1 73745 217 0.00 2019-07-14 17:33:18 2019-07-14 17:33:19 t 1 1 73747 217 0.00 2019-07-14 17:34:18 2019-07-14 17:34:27 t 1 1 73748 217 0.00 2019-07-14 17:35:18 2019-07-14 17:35:27 t 1 1 73749 217 0.00 2019-07-14 17:36:19 2019-07-14 17:36:28 t 1 1 73750 217 0.00 2019-07-14 17:37:19 2019-07-14 17:37:20 t 1 1 73755 217 0.00 2019-07-14 17:39:43 2019-07-14 17:39:52 t 1 1 73756 217 0.00 2019-07-14 17:40:00 2019-07-14 17:40:21 t 1 1 73757 217 0.00 2019-07-14 17:41:23 2019-07-14 17:41:32 t 1 1 73758 217 0.00 2019-07-14 17:41:40 2019-07-14 17:41:49 t 1 1 73761 217 0.00 2019-07-14 17:44:25 2019-07-14 17:44:26 t 1 1 73762 217 0.00 2019-07-14 17:44:34 2019-07-14 17:44:43 t 1 1 73766 217 0.00 2019-07-14 17:45:59 2019-07-14 17:46:25 t 1 1 73770 218 0.00 2019-07-14 17:40:16 2019-07-14 17:50:21 t 1 2 73771 217 0.00 2019-07-14 17:50:29 2019-07-14 17:50:38 t 1 1 73774 217 0.00 2019-07-14 17:52:30 2019-07-14 17:52:39 t 1 1 73780 217 0.00 2019-07-14 17:56:06 2019-07-14 17:56:32 t 1 1 73781 212 0.00 2019-07-14 17:56:35 2019-07-14 17:57:33 t 1 2 73782 217 0.00 2019-07-14 17:57:34 2019-07-14 17:57:43 t 1 1 73784 217 0.00 2019-07-14 17:58:43 2019-07-14 17:58:52 t 1 1 73791 230 0.00 2019-07-14 18:02:07 2019-07-14 18:02:31 t 1 2 73792 217 0.00 2019-07-14 18:02:37 2019-07-14 18:02:46 t 1 1 73796 217 0.00 2019-07-14 18:03:38 2019-07-14 18:03:47 t 1 1 73799 217 0.00 2019-07-14 18:05:39 2019-07-14 18:05:48 t 1 1 73802 212 0.00 2019-07-14 18:06:13 2019-07-14 18:06:53 t 1 2 73803 217 0.00 2019-07-14 18:07:40 2019-07-14 18:07:49 t 1 1 73807 217 0.00 2019-07-14 18:17:49 2019-07-14 18:18:00 t 1 1 73808 245 0.00 2019-07-14 18:17:36 2019-07-14 18:18:40 t 1 2 73811 245 0.00 2019-07-14 18:20:41 2019-07-14 18:21:47 t 1 2 73812 212 0.00 2019-07-14 18:23:02 2019-07-14 18:23:23 t 1 2 73818 217 0.00 2019-07-14 18:33:22 2019-07-14 18:33:32 t 1 1 81124 324 0.00 2019-08-08 11:38:52 2019-08-08 11:40:23 t 1 2 73825 217 0.00 2019-07-14 18:36:07 2019-07-14 18:36:15 t 1 1 73827 217 0.00 2019-07-14 18:37:15 2019-07-14 18:37:25 t 1 1 73828 249 0.00 2019-07-14 18:36:49 2019-07-14 18:37:55 t 1 2 73830 217 0.00 2019-07-14 18:39:01 2019-07-14 18:39:11 t 1 1 73832 217 0.00 2019-07-14 18:39:19 2019-07-14 18:39:28 t 1 1 73834 217 0.00 2019-07-14 18:40:18 2019-07-14 18:40:20 t 1 1 73837 217 0.00 2019-07-14 18:40:44 2019-07-14 18:41:03 t 1 1 73576 251 0.00 2019-07-14 14:16:33 2019-07-14 14:16:40 t 1 2 73578 217 0.00 2019-07-14 14:17:25 2019-07-14 14:17:34 t 1 1 73582 217 0.00 2019-07-14 14:19:47 2019-07-14 14:19:57 t 1 1 73585 217 0.00 2019-07-14 14:27:38 2019-07-14 14:27:50 t 1 1 73591 217 0.00 2019-07-14 14:33:39 2019-07-14 14:33:48 t 1 1 73592 217 0.00 2019-07-14 14:34:40 2019-07-14 14:34:50 t 1 1 73593 217 0.00 2019-07-14 14:35:41 2019-07-14 14:35:51 t 1 1 73594 210 0.00 2019-07-14 14:10:35 2019-07-14 14:38:06 t 1 2 73596 217 0.00 2019-07-14 14:43:49 2019-07-14 14:44:06 t 1 1 73600 265 0.00 2019-07-14 14:47:07 2019-07-14 14:48:12 t 1 2 73604 265 0.00 2019-07-14 14:50:32 2019-07-14 14:51:36 t 1 2 73605 217 0.00 2019-07-14 14:51:54 2019-07-14 14:52:02 t 1 1 73612 217 0.00 2019-07-14 14:57:09 2019-07-14 14:57:10 t 1 1 73616 217 0.00 2019-07-14 15:00:17 2019-07-14 15:01:57 t 1 1 73618 217 0.00 2019-07-14 15:02:15 2019-07-14 15:02:16 t 1 1 73620 217 0.00 2019-07-14 15:04:54 2019-07-14 15:05:14 t 1 1 73621 217 0.00 2019-07-14 15:06:06 2019-07-14 15:06:15 t 1 1 73622 217 0.00 2019-07-14 15:07:06 2019-07-14 15:07:07 t 1 1 73631 217 0.00 2019-07-14 15:11:25 2019-07-14 15:11:34 t 1 1 73637 217 0.00 2019-07-14 15:16:10 2019-07-14 15:16:25 t 1 1 73639 217 0.00 2019-07-14 15:17:53 2019-07-14 15:18:10 t 1 1 73641 217 0.00 2019-07-14 15:17:11 2019-07-14 15:18:57 t 1 1 73644 217 0.00 2019-07-14 15:25:17 2019-07-14 15:25:27 t 1 1 73645 217 0.00 2019-07-14 15:26:17 2019-07-14 15:26:18 t 1 1 73649 217 0.00 2019-07-14 15:29:19 2019-07-14 15:29:20 t 1 1 73653 217 0.00 2019-07-14 15:30:28 2019-07-14 15:30:36 t 1 1 73654 217 0.00 2019-07-14 15:30:44 2019-07-14 15:30:53 t 1 1 73658 251 0.00 2019-07-14 14:32:58 2019-07-14 15:33:03 t 1 2 73660 217 0.00 2019-07-14 15:33:36 2019-07-14 15:33:45 t 1 1 73666 217 0.00 2019-07-14 15:37:23 2019-07-14 15:37:31 t 1 1 73676 217 0.00 2019-07-14 16:00:56 2019-07-14 16:00:57 t 1 1 81119 288 0.00 2019-08-08 11:32:13 2019-08-08 11:33:18 t 1 2 73688 236 0.00 2019-07-14 16:04:07 2019-07-14 16:24:12 t 1 2 73697 217 0.00 2019-07-14 16:29:20 2019-07-14 16:31:57 t 1 1 73700 217 0.00 2019-07-14 16:33:50 2019-07-14 16:34:00 t 1 1 73701 217 0.00 2019-07-14 16:34:51 2019-07-14 16:35:00 t 1 1 73702 217 0.00 2019-07-14 16:35:51 2019-07-14 16:35:52 t 1 1 73704 217 0.00 2019-07-14 16:36:51 2019-07-14 16:37:00 t 1 1 73707 217 0.00 2019-07-14 16:38:37 2019-07-14 16:38:52 t 1 1 73708 217 0.00 2019-07-14 16:39:52 2019-07-14 16:40:01 t 1 1 73709 217 0.00 2019-07-14 16:40:53 2019-07-14 16:41:03 t 1 1 73713 217 0.00 2019-07-14 16:48:57 2019-07-14 16:49:06 t 1 1 73714 217 0.00 2019-07-14 16:49:57 2019-07-14 16:50:07 t 1 1 73715 217 0.00 2019-07-14 16:50:58 2019-07-14 16:51:07 t 1 1 73716 234 0.00 2019-07-14 16:36:53 2019-07-14 16:51:58 t 1 2 73723 217 0.00 2019-07-14 17:07:06 2019-07-14 17:07:16 t 1 1 73729 217 0.00 2019-07-14 17:10:33 2019-07-14 17:10:36 t 1 1 73730 217 0.00 2019-07-14 17:10:44 2019-07-14 17:11:06 t 1 1 73731 217 0.00 2019-07-14 17:12:09 2019-07-14 17:12:17 t 1 1 73734 217 0.00 2019-07-14 17:14:10 2019-07-14 17:14:20 t 1 1 73735 217 0.00 2019-07-14 17:15:10 2019-07-14 17:15:11 t 1 1 73740 217 0.00 2019-07-14 17:24:16 2019-07-14 17:24:18 t 1 1 73741 217 0.00 2019-07-14 17:24:28 2019-07-14 17:24:39 t 1 1 73753 217 0.00 2019-07-14 17:38:20 2019-07-14 17:38:29 t 1 1 73764 217 0.00 2019-07-14 17:45:26 2019-07-14 17:45:35 t 1 1 73765 217 0.00 2019-07-14 17:45:42 2019-07-14 17:45:51 t 1 1 73767 217 0.00 2019-07-14 17:47:28 2019-07-14 17:47:37 t 1 1 73775 204 0.00 2019-07-14 17:51:46 2019-07-14 17:52:53 t 1 2 73779 217 0.00 2019-07-14 17:55:49 2019-07-14 17:55:59 t 1 1 73786 217 0.00 2019-07-14 17:59:16 2019-07-14 17:59:36 t 1 1 73789 217 0.00 2019-07-14 18:01:46 2019-07-14 18:01:54 t 1 1 73790 217 0.00 2019-07-14 18:02:02 2019-07-14 18:02:11 t 1 1 73794 217 0.00 2019-07-14 18:03:02 2019-07-14 18:03:10 t 1 1 73798 245 0.00 2019-07-14 18:04:05 2019-07-14 18:05:14 t 1 2 73800 245 0.00 2019-07-14 18:05:34 2019-07-14 18:06:39 t 1 2 73804 217 0.00 2019-07-14 18:08:40 2019-07-14 18:08:50 t 1 1 73805 217 0.00 2019-07-14 18:09:16 2019-07-14 18:09:41 t 1 1 73813 217 0.00 2019-07-14 18:26:53 2019-07-14 18:27:04 t 1 1 73817 217 0.00 2019-07-14 18:33:13 2019-07-14 18:33:14 t 1 1 73819 217 0.00 2019-07-14 18:33:40 2019-07-14 18:33:55 t 1 1 73820 217 0.00 2019-07-14 18:34:58 2019-07-14 18:35:06 t 1 1 73822 249 0.00 2019-07-14 18:34:40 2019-07-14 18:35:47 t 1 2 73824 217 0.00 2019-07-14 18:35:59 2019-07-14 18:36:00 t 1 1 73826 217 0.00 2019-07-14 18:36:59 2019-07-14 18:37:07 t 1 1 73829 217 0.00 2019-07-14 18:37:32 2019-07-14 18:37:58 t 1 1 73833 217 0.00 2019-07-14 18:40:01 2019-07-14 18:40:11 t 1 1 73838 217 0.00 2019-07-14 18:42:04 2019-07-14 18:42:13 t 1 1 73843 217 0.00 2019-07-14 18:44:05 2019-07-14 18:44:14 t 1 1 73845 217 0.00 2019-07-14 18:45:05 2019-07-14 18:45:05 t 1 1 73848 217 0.00 2019-07-14 18:46:06 2019-07-14 18:46:15 t 1 1 73854 217 0.00 2019-07-14 18:49:24 2019-07-14 18:49:34 t 1 1 73856 220 0.00 2019-07-14 18:47:31 2019-07-14 18:50:41 t 1 1 74570 217 0.00 2019-07-16 21:30:58 2019-07-16 21:40:04 t 1 2 74572 213 0.00 2019-07-16 22:13:14 2019-07-16 22:14:17 t 1 2 74575 213 0.00 2019-07-16 22:19:51 2019-07-16 22:20:57 t 1 2 74577 234 0.00 2019-07-16 21:18:36 2019-07-16 22:23:41 t 1 2 74580 218 0.00 2019-07-16 22:31:13 2019-07-16 22:31:13 f 1 2 74581 212 0.00 2019-07-16 22:34:37 2019-07-16 22:35:46 t 1 2 74583 218 0.00 2019-07-16 22:31:36 2019-07-16 22:51:41 t 1 2 74584 212 0.00 2019-07-16 22:51:57 2019-07-16 22:52:28 t 1 2 74587 217 0.00 2019-07-16 23:11:06 2019-07-16 23:12:06 t 1 2 74590 243 0.00 2019-07-16 22:56:58 2019-07-16 23:33:43 t 1 2 74591 210 0.00 2019-07-16 23:42:10 2019-07-16 23:45:11 t 1 2 74594 272 0.00 2019-07-16 22:00:06 2019-07-16 23:56:19 t 1 2 74597 212 0.00 2019-07-17 00:17:45 2019-07-17 00:18:23 t 1 2 74601 234 0.00 2019-07-17 01:02:20 2019-07-17 01:12:25 t 1 2 74602 212 0.00 2019-07-17 01:19:01 2019-07-17 01:19:20 t 1 2 74603 271 0.00 2019-07-17 00:34:35 2019-07-17 01:31:23 t 1 2 74610 234 0.00 2019-07-17 02:00:53 2019-07-17 03:05:58 t 1 2 74613 217 0.00 2019-07-17 06:41:52 2019-07-17 06:42:56 t 1 2 74614 217 0.00 2019-07-17 06:44:30 2019-07-17 06:45:37 t 1 2 74615 212 0.00 2019-07-17 08:03:12 2019-07-17 08:03:57 t 1 2 74618 247 0.00 2019-07-17 08:47:18 2019-07-17 08:48:43 t 1 2 81126 288 0.00 2019-08-08 11:40:12 2019-08-08 11:41:16 t 1 2 74623 217 0.00 2019-07-17 09:37:46 2019-07-17 10:07:52 t 1 2 74626 272 0.00 2019-07-17 08:51:54 2019-07-17 10:31:59 t 1 2 74632 217 0.00 2019-07-17 10:57:47 2019-07-17 12:02:52 t 1 2 73839 249 0.00 2019-07-14 18:41:49 2019-07-14 18:42:54 t 1 2 73840 217 0.00 2019-07-14 18:43:04 2019-07-14 18:43:13 t 1 1 73842 249 0.00 2019-07-14 18:43:09 2019-07-14 18:44:13 t 1 2 73844 217 0.00 2019-07-14 18:44:22 2019-07-14 18:44:32 t 1 1 73846 217 0.00 2019-07-14 18:45:13 2019-07-14 18:45:21 t 1 1 73850 249 0.00 2019-07-14 18:46:18 2019-07-14 18:47:25 t 1 2 73851 217 0.00 2019-07-14 18:48:07 2019-07-14 18:48:16 t 1 1 73852 249 0.00 2019-07-14 18:47:50 2019-07-14 18:49:00 t 1 2 74617 217 0.00 2019-07-17 08:01:08 2019-07-17 08:26:13 t 1 2 74620 269 0.00 2019-07-17 07:52:17 2019-07-17 09:12:40 t 1 2 81125 306 0.00 2019-08-08 11:40:04 2019-08-08 11:41:05 t 1 2 74627 234 0.00 2019-07-17 10:58:39 2019-07-17 11:30:16 t 1 2 81131 304 0.00 2019-08-08 11:42:44 2019-08-08 11:42:44 f 1 2 74629 234 0.00 2019-07-17 11:33:15 2019-07-17 11:37:41 t 1 2 74631 234 0.00 2019-07-17 11:38:27 2019-07-17 11:58:32 t 1 2 74636 272 0.00 2019-07-17 10:34:37 2019-07-17 12:14:42 t 1 2 74641 204 0.00 2019-07-17 12:38:27 2019-07-17 12:38:39 t 1 2 74642 243 0.00 2019-07-17 12:38:46 2019-07-17 12:43:09 t 1 2 74648 217 0.00 2019-07-17 13:27:01 2019-07-17 13:37:07 t 1 2 81135 243 0.00 2019-08-08 11:42:56 2019-08-08 11:43:07 t 1 2 74653 212 0.00 2019-07-17 14:34:00 2019-07-17 14:35:06 t 1 2 74657 217 0.00 2019-07-17 14:43:27 2019-07-17 14:45:17 t 1 2 74658 265 0.00 2019-07-17 14:57:21 2019-07-17 14:58:27 t 1 2 74661 265 0.00 2019-07-17 15:03:45 2019-07-17 15:04:53 t 1 2 74664 217 0.00 2019-07-17 14:45:53 2019-07-17 15:16:20 t 1 2 74667 234 0.00 2019-07-17 15:13:52 2019-07-17 15:23:57 t 1 2 74669 271 0.00 2019-07-17 15:09:42 2019-07-17 15:24:47 t 1 2 74671 245 0.00 2019-07-17 16:07:02 2019-07-17 16:08:05 t 1 2 74673 272 0.00 2019-07-17 15:32:01 2019-07-17 16:12:06 t 1 2 74676 213 0.00 2019-07-17 16:16:27 2019-07-17 16:17:33 t 1 2 74678 243 0.00 2019-07-17 16:13:17 2019-07-17 16:18:14 t 1 2 74687 232 0.00 2019-07-17 07:35:17 2019-07-17 17:30:22 t 1 2 74689 272 0.00 2019-07-17 17:33:16 2019-07-17 18:08:21 t 1 2 74693 284 0.00 2019-07-17 17:22:26 2019-07-17 18:52:31 t 1 2 74696 230 0.00 2019-07-17 17:16:29 2019-07-17 19:06:34 t 1 2 74697 247 0.00 2019-07-17 19:27:05 2019-07-17 19:28:54 t 1 2 74702 234 0.00 2019-07-17 18:25:52 2019-07-17 20:15:57 t 1 2 74707 272 0.00 2019-07-17 19:48:53 2019-07-17 20:48:58 t 1 2 74710 272 0.00 2019-07-17 21:03:12 2019-07-17 21:03:12 f 1 2 74714 218 0.00 2019-07-17 21:06:24 2019-07-17 21:07:15 t 1 2 74715 272 0.00 2019-07-17 21:08:08 2019-07-17 21:08:08 f 1 2 74718 272 0.00 2019-07-17 21:08:29 2019-07-17 21:08:29 f 1 2 74720 272 0.00 2019-07-17 21:09:06 2019-07-17 21:09:06 f 1 2 74731 247 0.00 2019-07-17 22:27:11 2019-07-17 22:27:49 t 1 2 74734 212 0.00 2019-07-17 22:38:16 2019-07-17 22:38:52 t 1 2 74738 243 0.00 2019-07-17 23:08:13 2019-07-17 23:11:02 t 1 2 74739 272 0.00 2019-07-17 22:59:23 2019-07-17 23:14:28 t 1 2 81138 304 0.00 2019-08-08 11:28:31 2019-08-08 11:43:37 t 1 2 74748 251 0.00 2019-07-18 00:20:45 2019-07-18 00:21:50 t 1 2 74749 232 0.00 2019-07-17 23:11:58 2019-07-18 00:52:03 t 1 2 74751 217 0.00 2019-07-18 00:56:15 2019-07-18 01:26:20 t 1 2 74754 230 0.00 2019-07-17 23:33:30 2019-07-18 02:12:54 t 1 2 74755 271 0.00 2019-07-18 01:08:28 2019-07-18 02:13:46 t 1 2 81139 304 0.00 2019-08-08 11:43:46 2019-08-08 11:43:46 t 1 2 81142 304 0.00 2019-08-08 11:38:09 2019-08-08 11:48:15 t 1 2 74762 247 0.00 2019-07-18 08:24:42 2019-07-18 08:26:44 t 1 2 74764 251 0.00 2019-07-18 08:38:41 2019-07-18 08:39:46 t 1 2 74767 212 0.00 2019-07-18 09:33:58 2019-07-18 09:34:31 t 1 2 74769 220 0.00 2019-07-18 10:13:29 2019-07-18 10:14:49 t 1 1 74770 220 0.00 2019-07-18 10:14:58 2019-07-18 10:15:32 t 1 1 74771 247 0.00 2019-07-18 10:15:30 2019-07-18 10:15:52 t 1 2 74773 220 0.00 2019-07-18 10:16:04 2019-07-18 10:16:34 t 1 1 74774 220 0.00 2019-07-18 10:16:43 2019-07-18 10:16:57 t 1 1 74777 220 0.00 2019-07-18 10:18:09 2019-07-18 10:18:38 t 1 1 74778 220 0.00 2019-07-18 10:18:47 2019-07-18 10:19:40 t 1 1 74783 220 0.00 2019-07-18 10:21:52 2019-07-18 10:22:06 t 1 1 74784 220 0.00 2019-07-18 10:22:18 2019-07-18 10:22:44 t 1 1 74786 220 0.00 2019-07-18 10:23:16 2019-07-18 10:24:32 t 1 1 74796 220 0.00 2019-07-18 10:38:55 2019-07-18 10:39:09 t 1 1 74797 220 0.00 2019-07-18 10:39:55 2019-07-18 10:40:09 t 1 1 74799 220 0.00 2019-07-18 10:44:05 2019-07-18 10:44:21 t 1 1 74800 220 0.00 2019-07-18 10:44:57 2019-07-18 10:45:11 t 1 1 74801 220 0.00 2019-07-18 10:45:58 2019-07-18 10:46:12 t 1 1 74806 220 0.00 2019-07-18 10:49:17 2019-07-18 10:49:25 t 1 1 81151 243 0.00 2019-08-08 12:01:35 2019-08-08 12:01:59 t 1 2 74817 220 0.00 2019-07-18 10:57:13 2019-07-18 10:57:26 t 1 1 74818 220 0.00 2019-07-18 10:58:00 2019-07-18 10:58:13 t 1 1 74822 218 0.00 2019-07-18 09:45:19 2019-07-18 11:02:10 t 1 2 74826 220 0.00 2019-07-18 11:04:51 2019-07-18 11:05:15 t 1 1 74827 220 0.00 2019-07-18 11:05:24 2019-07-18 11:05:38 t 1 1 74832 220 0.00 2019-07-18 11:08:01 2019-07-18 11:08:18 t 1 1 74834 220 0.00 2019-07-18 11:08:57 2019-07-18 11:09:21 t 1 1 74835 220 0.00 2019-07-18 11:09:30 2019-07-18 11:09:46 t 1 1 74842 220 0.00 2019-07-18 11:12:57 2019-07-18 11:13:27 t 1 1 74844 220 0.00 2019-07-18 11:13:59 2019-07-18 11:14:29 t 1 1 74845 220 0.00 2019-07-18 11:14:38 2019-07-18 11:14:53 t 1 1 74846 220 0.00 2019-07-18 11:15:02 2019-07-18 11:15:31 t 1 1 74847 220 0.00 2019-07-18 11:15:39 2019-07-18 11:15:54 t 1 1 74853 220 0.00 2019-07-18 11:31:09 2019-07-18 11:31:31 t 1 1 74854 220 0.00 2019-07-18 11:31:36 2019-07-18 11:31:51 t 1 1 74860 212 0.00 2019-07-18 11:42:27 2019-07-18 11:43:35 t 1 2 74868 220 0.00 2019-07-18 11:50:07 2019-07-18 11:50:20 t 1 1 74869 220 0.00 2019-07-18 11:51:08 2019-07-18 11:51:21 t 1 1 74870 220 0.00 2019-07-18 11:54:09 2019-07-18 11:54:23 t 1 1 74871 220 0.00 2019-07-18 11:55:10 2019-07-18 11:55:23 t 1 1 74872 220 0.00 2019-07-18 11:55:58 2019-07-18 11:56:11 t 1 1 74873 220 0.00 2019-07-18 11:57:13 2019-07-18 11:57:26 t 1 1 74874 220 0.00 2019-07-18 11:58:13 2019-07-18 11:58:26 t 1 1 74877 220 0.00 2019-07-18 12:01:16 2019-07-18 12:02:15 t 1 1 74880 220 0.00 2019-07-18 12:04:16 2019-07-18 12:04:30 t 1 1 74882 202 0.00 2019-07-18 12:04:46 2019-07-18 12:05:53 t 1 2 74886 220 0.00 2019-07-18 12:09:19 2019-07-18 12:09:33 t 1 1 74894 288 0.00 2019-07-18 12:23:40 2019-07-18 12:24:44 t 1 2 74902 220 0.00 2019-07-18 12:33:35 2019-07-18 12:33:49 t 1 1 74903 220 0.00 2019-07-18 12:34:37 2019-07-18 12:34:51 t 1 1 74906 220 0.00 2019-07-18 12:36:46 2019-07-18 12:36:47 t 1 1 74907 288 0.00 2019-07-18 12:36:39 2019-07-18 12:37:42 t 1 2 73858 217 0.00 2019-07-14 18:51:08 2019-07-14 18:51:17 t 1 1 73860 249 0.00 2019-07-14 18:51:12 2019-07-14 18:52:15 t 1 2 73866 249 0.00 2019-07-14 18:54:22 2019-07-14 18:55:28 t 1 2 73867 217 0.00 2019-07-14 18:56:10 2019-07-14 18:56:20 t 1 1 73868 217 0.00 2019-07-14 18:57:11 2019-07-14 18:57:21 t 1 1 73872 207 0.00 2019-07-14 19:00:22 2019-07-14 19:00:59 t 1 2 73878 217 0.00 2019-07-14 19:03:13 2019-07-14 19:03:22 t 1 1 73881 249 0.00 2019-07-14 19:03:32 2019-07-14 19:04:36 t 1 2 73888 217 0.00 2019-07-14 19:06:24 2019-07-14 19:06:32 t 1 1 73889 217 0.00 2019-07-14 19:06:40 2019-07-14 19:06:49 t 1 1 73890 249 0.00 2019-07-14 19:07:41 2019-07-14 19:08:45 t 1 2 73891 217 0.00 2019-07-14 19:10:57 2019-07-14 19:11:14 t 1 1 73900 217 0.00 2019-07-14 19:19:30 2019-07-14 19:19:31 t 1 1 73901 217 0.00 2019-07-14 19:19:42 2019-07-14 19:19:43 t 1 1 73910 217 0.00 2019-07-14 19:31:32 2019-07-14 19:31:33 t 1 1 73911 217 0.00 2019-07-14 19:31:41 2019-07-14 19:31:49 t 1 1 73913 217 0.00 2019-07-14 19:32:49 2019-07-14 19:32:58 t 1 1 73917 217 0.00 2019-07-14 19:40:37 2019-07-14 19:41:00 t 1 1 73921 249 0.00 2019-07-14 19:41:33 2019-07-14 19:42:37 t 1 2 73923 249 0.00 2019-07-14 19:42:56 2019-07-14 19:44:00 t 1 2 73928 220 0.00 2019-07-14 19:22:05 2019-07-14 19:46:49 t 1 1 73929 217 0.00 2019-07-14 19:47:07 2019-07-14 19:47:15 t 1 1 73930 217 0.00 2019-07-14 19:47:27 2019-07-14 19:47:39 t 1 1 73933 263 0.00 2019-07-14 19:49:01 2019-07-14 19:50:10 t 1 2 73939 217 0.00 2019-07-14 19:53:53 2019-07-14 19:53:54 t 1 1 73941 217 0.00 2019-07-14 19:56:51 2019-07-14 19:57:00 t 1 1 73944 217 0.00 2019-07-14 19:58:47 2019-07-14 19:58:56 t 1 1 73947 261 0.00 2019-07-14 19:24:21 2019-07-14 20:06:44 t 1 2 73951 217 0.00 2019-07-14 20:08:52 2019-07-14 20:09:01 t 1 1 73955 217 0.00 2019-07-14 20:10:17 2019-07-14 20:10:26 t 1 1 73956 217 0.00 2019-07-14 20:10:34 2019-07-14 20:10:53 t 1 1 73960 212 0.00 2019-07-14 20:11:20 2019-07-14 20:12:25 t 1 2 73961 217 0.00 2019-07-14 20:12:52 2019-07-14 20:13:01 t 1 1 73964 249 0.00 2019-07-14 20:14:02 2019-07-14 20:15:07 t 1 2 73965 249 0.00 2019-07-14 20:15:28 2019-07-14 20:16:31 t 1 2 73971 217 0.00 2019-07-14 20:22:08 2019-07-14 20:22:17 t 1 1 73981 217 0.00 2019-07-14 20:26:12 2019-07-14 20:26:13 t 1 1 73995 217 0.00 2019-07-14 20:38:00 2019-07-14 20:38:09 t 1 1 73996 249 0.00 2019-07-14 20:37:45 2019-07-14 20:38:52 t 1 2 73998 230 0.00 2019-07-14 18:57:40 2019-07-14 20:40:18 t 1 2 74000 217 0.00 2019-07-14 20:40:00 2019-07-14 20:41:04 t 1 1 74001 217 0.00 2019-07-14 20:47:05 2019-07-14 20:47:17 t 1 1 74002 217 0.00 2019-07-14 20:53:07 2019-07-14 20:53:19 t 1 1 74004 217 0.00 2019-07-14 20:53:51 2019-07-14 20:54:03 t 1 1 74014 217 0.00 2019-07-14 21:13:19 2019-07-14 21:13:31 t 1 1 74016 217 0.00 2019-07-14 21:13:53 2019-07-14 21:14:17 t 1 1 74017 217 0.00 2019-07-14 21:14:27 2019-07-14 21:14:38 t 1 1 74020 212 0.00 2019-07-14 21:16:56 2019-07-14 21:17:49 t 1 2 74032 217 0.00 2019-07-14 21:30:07 2019-07-14 21:30:23 t 1 1 74033 217 0.00 2019-07-14 21:31:26 2019-07-14 21:31:35 t 1 1 74034 217 0.00 2019-07-14 21:32:27 2019-07-14 21:32:37 t 1 1 74035 217 0.00 2019-07-14 21:32:44 2019-07-14 21:32:54 t 1 1 74042 249 0.00 2019-07-14 21:44:21 2019-07-14 21:45:26 t 1 2 74044 217 0.00 2019-07-14 21:45:37 2019-07-14 21:47:32 t 1 1 74045 217 0.00 2019-07-14 21:47:40 2019-07-14 21:47:41 t 1 1 74050 217 0.00 2019-07-14 21:50:57 2019-07-14 21:51:06 t 1 1 74052 217 0.00 2019-07-14 21:52:34 2019-07-14 21:52:44 t 1 1 74058 217 0.00 2019-07-14 21:55:08 2019-07-14 21:55:35 t 1 1 74060 217 0.00 2019-07-14 21:56:53 2019-07-14 21:57:03 t 1 1 74063 217 0.00 2019-07-14 22:04:42 2019-07-14 22:04:54 t 1 1 74073 217 0.00 2019-07-14 22:24:48 2019-07-14 22:25:49 t 1 1 74074 217 0.00 2019-07-14 22:31:53 2019-07-14 22:32:05 t 1 1 74075 217 0.00 2019-07-14 22:32:41 2019-07-14 22:32:50 t 1 1 74081 217 0.00 2019-07-14 22:43:58 2019-07-14 22:44:10 t 1 1 74088 217 0.00 2019-07-14 22:55:47 2019-07-14 22:55:59 t 1 1 74095 217 0.00 2019-07-14 22:57:43 2019-07-14 22:58:01 t 1 1 74100 217 0.00 2019-07-14 23:05:09 2019-07-14 23:05:21 t 1 1 74101 217 0.00 2019-07-14 23:05:30 2019-07-14 23:05:40 t 1 1 74103 243 0.00 2019-07-14 23:04:11 2019-07-14 23:10:32 t 1 2 74104 217 0.00 2019-07-14 23:10:46 2019-07-14 23:11:09 t 1 1 74106 251 0.00 2019-07-14 22:51:31 2019-07-14 23:11:36 t 1 2 74107 243 0.00 2019-07-14 23:12:03 2019-07-14 23:18:23 t 1 2 74116 245 0.00 2019-07-14 23:23:26 2019-07-14 23:24:31 t 1 2 74121 218 0.00 2019-07-14 23:13:33 2019-07-14 23:28:38 t 1 2 81128 304 0.00 2019-08-08 11:41:35 2019-08-08 11:41:35 f 1 2 74126 217 0.00 2019-07-14 23:39:19 2019-07-14 23:39:28 t 1 1 74127 217 0.00 2019-07-14 23:40:18 2019-07-14 23:40:28 t 1 1 74128 251 0.00 2019-07-14 23:40:54 2019-07-14 23:41:13 t 1 2 74132 243 0.00 2019-07-14 23:38:10 2019-07-14 23:44:51 t 1 2 74134 243 0.00 2019-07-14 23:45:33 2019-07-14 23:52:15 t 1 2 74139 217 0.00 2019-07-14 23:54:05 2019-07-14 23:56:12 t 1 1 74144 217 0.00 2019-07-15 00:01:00 2019-07-15 00:01:12 t 1 1 74145 217 0.00 2019-07-15 00:01:22 2019-07-15 00:01:47 t 1 1 74147 243 0.00 2019-07-14 23:54:11 2019-07-15 00:04:16 t 1 2 74150 217 0.00 2019-07-15 00:09:14 2019-07-15 00:09:16 t 1 1 74151 217 0.00 2019-07-15 00:09:30 2019-07-15 00:09:44 t 1 1 74152 217 0.00 2019-07-15 00:10:45 2019-07-15 00:11:02 t 1 1 74153 217 0.00 2019-07-15 00:11:45 2019-07-15 00:11:56 t 1 1 74154 217 0.00 2019-07-15 00:12:45 2019-07-15 00:12:56 t 1 1 74156 217 0.00 2019-07-15 00:14:01 2019-07-15 00:14:10 t 1 1 74157 217 0.00 2019-07-15 00:14:47 2019-07-15 00:14:55 t 1 1 74161 217 0.00 2019-07-15 00:16:12 2019-07-15 00:16:22 t 1 1 74162 217 0.00 2019-07-15 00:16:30 2019-07-15 00:16:49 t 1 1 74163 217 0.00 2019-07-15 00:17:48 2019-07-15 00:17:58 t 1 1 74166 217 0.00 2019-07-15 00:20:01 2019-07-15 00:20:10 t 1 1 81130 304 0.00 2019-08-08 11:41:56 2019-08-08 11:41:56 f 1 2 74635 234 0.00 2019-07-17 11:58:24 2019-07-17 12:13:30 t 1 2 74637 247 0.00 2019-07-17 12:13:31 2019-07-17 12:15:17 t 1 2 74643 230 0.00 2019-07-17 12:27:10 2019-07-17 12:58:43 t 1 2 74650 217 0.00 2019-07-17 14:12:09 2019-07-17 14:12:18 t 1 2 74654 230 0.00 2019-07-17 13:34:34 2019-07-17 14:39:39 t 1 2 74655 212 0.00 2019-07-17 14:40:53 2019-07-17 14:41:37 t 1 2 74656 217 0.00 2019-07-17 14:12:23 2019-07-17 14:42:45 t 1 2 74660 265 0.00 2019-07-17 15:02:27 2019-07-17 15:03:31 t 1 2 74663 234 0.00 2019-07-17 13:26:16 2019-07-17 15:10:20 t 1 2 74665 212 0.00 2019-07-17 15:16:07 2019-07-17 15:17:45 t 1 2 74666 217 0.00 2019-07-17 15:17:06 2019-07-17 15:19:27 t 1 2 73859 251 0.00 2019-07-14 18:51:25 2019-07-14 18:51:31 t 1 2 73862 217 0.00 2019-07-14 18:53:09 2019-07-14 18:53:18 t 1 1 73863 249 0.00 2019-07-14 18:52:35 2019-07-14 18:53:39 t 1 2 73865 217 0.00 2019-07-14 18:55:10 2019-07-14 18:55:20 t 1 1 73870 217 0.00 2019-07-14 18:59:11 2019-07-14 18:59:19 t 1 1 73871 217 0.00 2019-07-14 19:00:12 2019-07-14 19:00:21 t 1 1 73873 217 0.00 2019-07-14 19:01:12 2019-07-14 19:01:21 t 1 1 73875 251 0.00 2019-07-14 18:51:42 2019-07-14 19:01:47 t 1 2 73876 217 0.00 2019-07-14 19:02:13 2019-07-14 19:02:22 t 1 1 73879 217 0.00 2019-07-14 19:03:30 2019-07-14 19:03:40 t 1 1 73882 217 0.00 2019-07-14 19:04:30 2019-07-14 19:04:40 t 1 1 73883 217 0.00 2019-07-14 19:05:14 2019-07-14 19:05:15 t 1 1 73886 249 0.00 2019-07-14 19:05:10 2019-07-14 19:06:14 t 1 2 73892 217 0.00 2019-07-14 19:11:25 2019-07-14 19:11:26 t 1 1 73893 217 0.00 2019-07-14 19:11:36 2019-07-14 19:11:38 t 1 1 73895 243 0.00 2019-07-14 19:07:09 2019-07-14 19:17:14 t 1 2 73896 249 0.00 2019-07-14 19:17:17 2019-07-14 19:18:22 t 1 2 73898 217 0.00 2019-07-14 19:18:44 2019-07-14 19:18:57 t 1 1 73902 217 0.00 2019-07-14 19:24:29 2019-07-14 19:26:30 t 1 1 73903 217 0.00 2019-07-14 19:26:37 2019-07-14 19:26:58 t 1 1 73904 217 0.00 2019-07-14 19:27:31 2019-07-14 19:27:41 t 1 1 73906 217 0.00 2019-07-14 19:28:40 2019-07-14 19:28:48 t 1 1 73907 217 0.00 2019-07-14 19:29:31 2019-07-14 19:29:39 t 1 1 73915 217 0.00 2019-07-14 19:33:36 2019-07-14 19:33:45 t 1 1 73916 249 0.00 2019-07-14 19:38:34 2019-07-14 19:39:41 t 1 2 73918 249 0.00 2019-07-14 19:40:08 2019-07-14 19:41:14 t 1 2 73922 247 0.00 2019-07-14 19:42:51 2019-07-14 19:43:49 t 1 2 73925 249 0.00 2019-07-14 19:44:25 2019-07-14 19:45:30 t 1 2 73926 217 0.00 2019-07-14 19:45:38 2019-07-14 19:45:53 t 1 1 73927 217 0.00 2019-07-14 19:46:39 2019-07-14 19:46:40 t 1 1 73932 217 0.00 2019-07-14 19:49:41 2019-07-14 19:49:51 t 1 1 73936 263 0.00 2019-07-14 19:50:54 2019-07-14 19:51:59 t 1 2 73937 217 0.00 2019-07-14 19:52:43 2019-07-14 19:52:44 t 1 1 73940 217 0.00 2019-07-14 19:52:51 2019-07-14 19:54:57 t 1 1 73942 217 0.00 2019-07-14 19:57:08 2019-07-14 19:57:17 t 1 1 73943 217 0.00 2019-07-14 19:57:25 2019-07-14 19:57:45 t 1 1 73945 217 0.00 2019-07-14 20:01:25 2019-07-14 20:01:48 t 1 1 73949 218 0.00 2019-07-14 18:47:27 2019-07-14 20:07:32 t 1 2 73950 217 0.00 2019-07-14 20:07:52 2019-07-14 20:08:00 t 1 1 73952 217 0.00 2019-07-14 20:09:09 2019-07-14 20:09:18 t 1 1 73953 217 0.00 2019-07-14 20:09:52 2019-07-14 20:10:01 t 1 1 73957 217 0.00 2019-07-14 20:11:53 2019-07-14 20:11:54 t 1 1 73959 249 0.00 2019-07-14 20:11:11 2019-07-14 20:12:16 t 1 2 73962 217 0.00 2019-07-14 20:13:08 2019-07-14 20:13:09 t 1 1 73967 220 0.00 2019-07-14 19:46:49 2019-07-14 20:19:45 t 1 1 73968 249 0.00 2019-07-14 20:19:48 2019-07-14 20:20:55 t 1 2 73973 217 0.00 2019-07-14 20:22:36 2019-07-14 20:22:53 t 1 1 73975 249 0.00 2019-07-14 20:23:03 2019-07-14 20:24:10 t 1 2 73976 247 0.00 2019-07-14 20:21:48 2019-07-14 20:24:51 t 1 2 73978 217 0.00 2019-07-14 20:24:56 2019-07-14 20:25:04 t 1 1 73982 249 0.00 2019-07-14 20:25:53 2019-07-14 20:26:58 t 1 2 73983 249 0.00 2019-07-14 20:27:31 2019-07-14 20:28:34 t 1 2 73985 249 0.00 2019-07-14 20:31:01 2019-07-14 20:32:06 t 1 2 73988 249 0.00 2019-07-14 20:32:19 2019-07-14 20:33:28 t 1 2 73991 249 0.00 2019-07-14 20:34:05 2019-07-14 20:35:10 t 1 2 73994 217 0.00 2019-07-14 20:37:00 2019-07-14 20:37:09 t 1 1 73997 217 0.00 2019-07-14 20:39:00 2019-07-14 20:39:09 t 1 1 73999 249 0.00 2019-07-14 20:39:51 2019-07-14 20:40:58 t 1 2 74005 217 0.00 2019-07-14 20:54:14 2019-07-14 20:54:15 t 1 1 74008 217 0.00 2019-07-14 21:01:19 2019-07-14 21:01:39 t 1 1 74010 217 0.00 2019-07-14 21:07:16 2019-07-14 21:08:16 t 1 1 74012 217 0.00 2019-07-14 21:08:25 2019-07-14 21:10:21 t 1 1 74018 217 0.00 2019-07-14 21:14:48 2019-07-14 21:15:17 t 1 1 74023 217 0.00 2019-07-14 21:24:23 2019-07-14 21:24:33 t 1 1 74024 217 0.00 2019-07-14 21:25:23 2019-07-14 21:25:33 t 1 1 74025 217 0.00 2019-07-14 21:26:24 2019-07-14 21:26:33 t 1 1 74026 217 0.00 2019-07-14 21:27:24 2019-07-14 21:27:34 t 1 1 74027 217 0.00 2019-07-14 21:27:44 2019-07-14 21:27:46 t 1 1 74029 217 0.00 2019-07-14 21:29:24 2019-07-14 21:29:34 t 1 1 74030 217 0.00 2019-07-14 21:29:42 2019-07-14 21:29:43 t 1 1 74036 217 0.00 2019-07-14 21:40:28 2019-07-14 21:40:37 t 1 1 74039 247 0.00 2019-07-14 21:39:41 2019-07-14 21:42:02 t 1 2 74040 217 0.00 2019-07-14 21:42:28 2019-07-14 21:42:38 t 1 1 74043 249 0.00 2019-07-14 21:46:16 2019-07-14 21:47:20 t 1 2 74046 217 0.00 2019-07-14 21:48:33 2019-07-14 21:48:42 t 1 1 74047 217 0.00 2019-07-14 21:49:33 2019-07-14 21:49:42 t 1 1 74048 217 0.00 2019-07-14 21:50:33 2019-07-14 21:50:42 t 1 1 74051 217 0.00 2019-07-14 21:51:13 2019-07-14 21:51:33 t 1 1 74053 217 0.00 2019-07-14 21:52:55 2019-07-14 21:53:04 t 1 1 74055 249 0.00 2019-07-14 21:53:29 2019-07-14 21:54:34 t 1 2 74056 217 0.00 2019-07-14 21:54:35 2019-07-14 21:54:43 t 1 1 74061 217 0.00 2019-07-14 21:57:38 2019-07-14 21:58:38 t 1 1 74064 217 0.00 2019-07-14 22:05:04 2019-07-14 22:05:17 t 1 1 74065 217 0.00 2019-07-14 22:05:29 2019-07-14 22:05:39 t 1 1 74067 217 0.00 2019-07-14 22:12:45 2019-07-14 22:12:57 t 1 1 74072 217 0.00 2019-07-14 22:23:47 2019-07-14 22:23:57 t 1 1 74082 217 0.00 2019-07-14 22:44:20 2019-07-14 22:44:29 t 1 1 74083 217 0.00 2019-07-14 22:44:40 2019-07-14 22:44:56 t 1 1 74086 217 0.00 2019-07-14 22:52:02 2019-07-14 22:52:13 t 1 1 74089 217 0.00 2019-07-14 22:56:09 2019-07-14 22:56:20 t 1 1 74091 243 0.00 2019-07-14 22:50:12 2019-07-14 22:56:33 t 1 2 74092 217 0.00 2019-07-14 22:56:42 2019-07-14 22:57:00 t 1 1 74093 217 0.00 2019-07-14 22:57:12 2019-07-14 22:57:33 t 1 1 74094 230 0.00 2019-07-14 21:37:12 2019-07-14 22:57:45 t 1 2 74096 217 0.00 2019-07-14 22:58:13 2019-07-14 22:58:24 t 1 1 74099 243 0.00 2019-07-14 22:57:33 2019-07-14 23:03:53 t 1 2 74102 217 0.00 2019-07-14 23:06:08 2019-07-14 23:06:09 t 1 1 74105 217 0.00 2019-07-14 23:11:19 2019-07-14 23:11:21 t 1 1 74109 217 0.00 2019-07-14 23:18:56 2019-07-14 23:19:13 t 1 1 74110 217 0.00 2019-07-14 23:20:13 2019-07-14 23:20:24 t 1 1 74113 217 0.00 2019-07-14 23:22:14 2019-07-14 23:22:29 t 1 1 74114 217 0.00 2019-07-14 23:23:13 2019-07-14 23:23:25 t 1 1 74117 217 0.00 2019-07-14 23:24:30 2019-07-14 23:24:39 t 1 1 74120 243 0.00 2019-07-14 23:21:05 2019-07-14 23:27:45 t 1 2 81129 304 0.00 2019-08-08 11:41:45 2019-08-08 11:41:45 f 1 2 74129 217 0.00 2019-07-14 23:41:19 2019-07-14 23:41:29 t 1 1 74130 217 0.00 2019-07-14 23:42:19 2019-07-14 23:42:29 t 1 1 73861 217 0.00 2019-07-14 18:52:09 2019-07-14 18:52:24 t 1 1 73864 217 0.00 2019-07-14 18:54:10 2019-07-14 18:54:19 t 1 1 73869 217 0.00 2019-07-14 18:58:10 2019-07-14 18:58:27 t 1 1 73874 249 0.00 2019-07-14 19:00:33 2019-07-14 19:01:39 t 1 2 73877 249 0.00 2019-07-14 19:01:57 2019-07-14 19:03:02 t 1 2 73880 217 0.00 2019-07-14 19:04:14 2019-07-14 19:04:23 t 1 1 73884 217 0.00 2019-07-14 19:05:23 2019-07-14 19:05:31 t 1 1 73885 217 0.00 2019-07-14 19:05:39 2019-07-14 19:05:47 t 1 1 73887 217 0.00 2019-07-14 19:06:15 2019-07-14 19:06:16 t 1 1 73894 249 0.00 2019-07-14 19:15:44 2019-07-14 19:16:48 t 1 2 73897 217 0.00 2019-07-14 19:18:23 2019-07-14 19:18:34 t 1 1 73899 217 0.00 2019-07-14 19:19:07 2019-07-14 19:19:19 t 1 1 73905 217 0.00 2019-07-14 19:28:31 2019-07-14 19:28:32 t 1 1 73908 217 0.00 2019-07-14 19:29:46 2019-07-14 19:29:56 t 1 1 73909 217 0.00 2019-07-14 19:30:32 2019-07-14 19:30:41 t 1 1 73912 217 0.00 2019-07-14 19:32:33 2019-07-14 19:32:41 t 1 1 73914 245 0.00 2019-07-14 19:31:59 2019-07-14 19:33:03 t 1 2 73919 217 0.00 2019-07-14 19:41:10 2019-07-14 19:41:34 t 1 1 73920 217 0.00 2019-07-14 19:41:44 2019-07-14 19:41:45 t 1 1 73924 217 0.00 2019-07-14 19:44:19 2019-07-14 19:44:38 t 1 1 73931 217 0.00 2019-07-14 19:48:42 2019-07-14 19:48:56 t 1 1 73934 217 0.00 2019-07-14 19:50:43 2019-07-14 19:51:03 t 1 1 73935 217 0.00 2019-07-14 19:51:42 2019-07-14 19:51:53 t 1 1 73938 217 0.00 2019-07-14 19:53:26 2019-07-14 19:53:43 t 1 1 73946 217 0.00 2019-07-14 20:01:59 2019-07-14 20:02:00 t 1 1 73948 217 0.00 2019-07-14 20:06:16 2019-07-14 20:06:49 t 1 1 73954 217 0.00 2019-07-14 20:10:08 2019-07-14 20:10:09 t 1 1 73958 217 0.00 2019-07-14 20:12:01 2019-07-14 20:12:09 t 1 1 73963 217 0.00 2019-07-14 20:13:18 2019-07-14 20:13:26 t 1 1 73966 249 0.00 2019-07-14 20:16:58 2019-07-14 20:18:03 t 1 2 73969 217 0.00 2019-07-14 20:20:57 2019-07-14 20:21:09 t 1 1 73970 217 0.00 2019-07-14 20:21:57 2019-07-14 20:21:58 t 1 1 73972 249 0.00 2019-07-14 20:21:16 2019-07-14 20:22:22 t 1 2 73974 217 0.00 2019-07-14 20:23:56 2019-07-14 20:24:05 t 1 1 73977 217 0.00 2019-07-14 20:22:28 2019-07-14 20:24:57 t 1 1 73979 249 0.00 2019-07-14 20:24:36 2019-07-14 20:25:39 t 1 2 73980 217 0.00 2019-07-14 20:25:56 2019-07-14 20:26:05 t 1 1 73984 249 0.00 2019-07-14 20:29:04 2019-07-14 20:30:08 t 1 2 73986 220 0.00 2019-07-14 20:21:27 2019-07-14 20:32:21 t 1 1 73987 217 0.00 2019-07-14 20:32:58 2019-07-14 20:33:08 t 1 1 73989 217 0.00 2019-07-14 20:33:59 2019-07-14 20:34:08 t 1 1 73990 217 0.00 2019-07-14 20:34:59 2019-07-14 20:35:08 t 1 1 73992 217 0.00 2019-07-14 20:35:59 2019-07-14 20:36:08 t 1 1 73993 249 0.00 2019-07-14 20:35:55 2019-07-14 20:37:01 t 1 2 74003 217 0.00 2019-07-14 20:53:28 2019-07-14 20:53:41 t 1 1 74006 217 0.00 2019-07-14 20:54:25 2019-07-14 20:54:27 t 1 1 74007 212 0.00 2019-07-14 20:59:30 2019-07-14 20:59:55 t 1 2 74009 249 0.00 2019-07-14 21:06:08 2019-07-14 21:07:14 t 1 2 74011 249 0.00 2019-07-14 21:07:30 2019-07-14 21:08:36 t 1 2 74013 217 0.00 2019-07-14 21:10:31 2019-07-14 21:10:32 t 1 1 74015 217 0.00 2019-07-14 21:13:41 2019-07-14 21:13:42 t 1 1 74019 217 0.00 2019-07-14 21:15:28 2019-07-14 21:15:29 t 1 1 74021 217 0.00 2019-07-14 21:22:24 2019-07-14 21:22:36 t 1 1 74022 217 0.00 2019-07-14 21:23:06 2019-07-14 21:23:23 t 1 1 74028 217 0.00 2019-07-14 21:27:54 2019-07-14 21:28:25 t 1 1 74031 217 0.00 2019-07-14 21:29:51 2019-07-14 21:29:59 t 1 1 74037 217 0.00 2019-07-14 21:41:28 2019-07-14 21:41:29 t 1 1 74038 217 0.00 2019-07-14 21:41:37 2019-07-14 21:41:45 t 1 1 74041 217 0.00 2019-07-14 21:43:28 2019-07-14 21:43:29 t 1 1 74049 217 0.00 2019-07-14 21:50:49 2019-07-14 21:50:50 t 1 1 74054 217 0.00 2019-07-14 21:53:34 2019-07-14 21:53:42 t 1 1 74057 217 0.00 2019-07-14 21:54:50 2019-07-14 21:55:00 t 1 1 74059 217 0.00 2019-07-14 21:56:38 2019-07-14 21:56:46 t 1 1 74062 218 0.00 2019-07-14 21:48:10 2019-07-14 22:03:16 t 1 2 74066 217 0.00 2019-07-14 22:05:50 2019-07-14 22:05:50 t 1 1 74068 217 0.00 2019-07-14 22:19:47 2019-07-14 22:20:00 t 1 1 74069 217 0.00 2019-07-14 22:20:30 2019-07-14 22:20:46 t 1 1 74070 217 0.00 2019-07-14 22:21:48 2019-07-14 22:21:57 t 1 1 74071 217 0.00 2019-07-14 22:22:48 2019-07-14 22:22:57 t 1 1 74076 217 0.00 2019-07-14 22:33:53 2019-07-14 22:34:01 t 1 1 74077 217 0.00 2019-07-14 22:34:52 2019-07-14 22:35:02 t 1 1 74078 217 0.00 2019-07-14 22:35:52 2019-07-14 22:36:08 t 1 1 74079 217 0.00 2019-07-14 22:36:54 2019-07-14 22:37:03 t 1 1 74080 217 0.00 2019-07-14 22:37:10 2019-07-14 22:38:11 t 1 1 74084 217 0.00 2019-07-14 22:45:07 2019-07-14 22:45:09 t 1 1 74085 243 0.00 2019-07-14 22:43:20 2019-07-14 22:46:49 t 1 2 74087 217 0.00 2019-07-14 22:55:35 2019-07-14 22:55:37 t 1 1 74090 217 0.00 2019-07-14 22:56:31 2019-07-14 22:56:32 t 1 1 74097 217 0.00 2019-07-14 22:58:34 2019-07-14 22:58:35 t 1 1 74098 218 0.00 2019-07-14 22:52:22 2019-07-14 23:02:27 t 1 2 74108 217 0.00 2019-07-14 23:18:14 2019-07-14 23:18:26 t 1 1 74111 217 0.00 2019-07-14 23:21:13 2019-07-14 23:21:27 t 1 1 74112 245 0.00 2019-07-14 23:21:11 2019-07-14 23:22:14 t 1 2 74115 217 0.00 2019-07-14 23:24:13 2019-07-14 23:24:22 t 1 1 74118 217 0.00 2019-07-14 23:25:15 2019-07-14 23:25:16 t 1 1 74119 245 0.00 2019-07-14 23:25:32 2019-07-14 23:26:34 t 1 2 74123 217 0.00 2019-07-14 23:32:19 2019-07-14 23:32:31 t 1 1 74125 243 0.00 2019-07-14 23:28:36 2019-07-14 23:35:17 t 1 2 74133 217 0.00 2019-07-14 23:51:40 2019-07-14 23:51:52 t 1 1 74135 217 0.00 2019-07-14 23:52:02 2019-07-14 23:52:21 t 1 1 74136 217 0.00 2019-07-14 23:52:31 2019-07-14 23:53:21 t 1 1 74138 217 0.00 2019-07-14 23:53:54 2019-07-14 23:53:55 t 1 1 74143 217 0.00 2019-07-14 23:59:49 2019-07-14 23:59:50 t 1 1 74148 212 0.00 2019-07-15 00:04:52 2019-07-15 00:05:43 t 1 2 74149 217 0.00 2019-07-15 00:08:48 2019-07-15 00:09:05 t 1 1 74155 217 0.00 2019-07-15 00:13:45 2019-07-15 00:13:53 t 1 1 74160 217 0.00 2019-07-15 00:16:04 2019-07-15 00:16:05 t 1 1 74164 217 0.00 2019-07-15 00:18:49 2019-07-15 00:18:59 t 1 1 74165 217 0.00 2019-07-15 00:19:52 2019-07-15 00:19:53 t 1 1 74169 217 0.00 2019-07-15 00:20:58 2019-07-15 00:21:06 t 1 1 74170 217 0.00 2019-07-15 00:21:49 2019-07-15 00:22:03 t 1 1 74634 212 0.00 2019-07-17 12:11:55 2019-07-17 12:12:20 t 1 2 74638 234 0.00 2019-07-17 12:09:30 2019-07-17 12:22:47 t 1 2 74639 207 0.00 2019-07-17 12:32:34 2019-07-17 12:32:34 f 1 2 74640 207 0.00 2019-07-17 12:33:04 2019-07-17 12:33:04 f 1 2 74644 272 0.00 2019-07-17 12:43:55 2019-07-17 12:59:00 t 1 2 74645 284 0.00 2019-07-17 12:35:46 2019-07-17 13:15:51 t 1 2 74131 217 0.00 2019-07-14 23:43:19 2019-07-14 23:43:29 t 1 1 74137 217 0.00 2019-07-14 23:53:31 2019-07-14 23:53:43 t 1 1 74140 217 0.00 2019-07-14 23:56:21 2019-07-14 23:56:31 t 1 1 74141 217 0.00 2019-07-14 23:56:58 2019-07-14 23:57:12 t 1 1 74142 217 0.00 2019-07-14 23:57:21 2019-07-14 23:59:39 t 1 1 74146 217 0.00 2019-07-15 00:01:57 2019-07-15 00:03:57 t 1 1 74158 217 0.00 2019-07-15 00:15:03 2019-07-15 00:15:12 t 1 1 74159 217 0.00 2019-07-15 00:15:46 2019-07-15 00:15:56 t 1 1 74167 217 0.00 2019-07-15 00:20:18 2019-07-15 00:20:28 t 1 1 74168 217 0.00 2019-07-15 00:20:49 2019-07-15 00:20:50 t 1 1 74171 217 0.00 2019-07-15 00:22:49 2019-07-15 00:23:00 t 1 1 74646 212 0.00 2019-07-17 13:30:07 2019-07-17 13:31:09 t 1 2 74647 217 0.00 2019-07-17 13:26:33 2019-07-17 13:36:39 t 1 2 81132 288 0.00 2019-08-08 11:41:39 2019-08-08 11:42:47 t 1 2 74652 210 0.00 2019-07-17 14:33:50 2019-07-17 14:35:00 t 1 2 74659 265 0.00 2019-07-17 14:59:06 2019-07-17 15:00:06 t 1 2 74662 265 0.00 2019-07-17 15:06:31 2019-07-17 15:07:38 t 1 2 74672 245 0.00 2019-07-17 16:08:42 2019-07-17 16:09:47 t 1 2 74677 217 0.00 2019-07-17 13:21:44 2019-07-17 16:18:03 t 1 2 74680 247 0.00 2019-07-17 16:28:05 2019-07-17 16:31:14 t 1 2 81143 324 0.00 2019-08-08 11:38:26 2019-08-08 11:48:31 t 1 2 74684 247 0.00 2019-07-17 17:15:22 2019-07-17 17:16:57 t 1 2 74688 269 0.00 2019-07-17 17:27:15 2019-07-17 17:37:38 t 1 2 74690 204 0.00 2019-07-17 18:08:33 2019-07-17 18:09:40 t 1 2 81145 306 0.00 2019-08-08 11:53:01 2019-08-08 11:54:06 t 1 2 74700 286 0.00 2019-07-17 19:44:27 2019-07-17 19:48:36 t 1 2 74701 286 0.00 2019-07-17 19:49:39 2019-07-17 19:59:44 t 1 2 74704 212 0.00 2019-07-17 20:26:56 2019-07-17 20:27:22 t 1 2 74708 247 0.00 2019-07-17 20:57:12 2019-07-17 20:58:29 t 1 2 74711 272 0.00 2019-07-17 21:03:18 2019-07-17 21:03:18 f 1 2 74716 272 0.00 2019-07-17 21:08:14 2019-07-17 21:08:14 f 1 2 74721 272 0.00 2019-07-17 21:09:32 2019-07-17 21:09:32 f 1 2 74722 272 0.00 2019-07-17 21:09:58 2019-07-17 21:09:58 f 1 2 74723 272 0.00 2019-07-17 21:10:47 2019-07-17 21:10:47 f 1 2 74725 212 0.00 2019-07-17 21:23:00 2019-07-17 21:24:50 t 1 2 74729 212 0.00 2019-07-17 22:05:40 2019-07-17 22:06:05 t 1 2 74730 232 0.00 2019-07-17 22:02:04 2019-07-17 22:14:04 t 1 2 74732 212 0.00 2019-07-17 22:26:24 2019-07-17 22:31:15 t 1 2 74733 286 0.00 2019-07-17 20:09:53 2019-07-17 22:34:58 t 1 2 74736 212 0.00 2019-07-17 22:52:39 2019-07-17 22:53:33 t 1 2 74741 230 0.00 2019-07-17 23:04:25 2019-07-17 23:18:01 t 1 2 74743 247 0.00 2019-07-17 23:49:37 2019-07-17 23:51:41 t 1 2 74744 202 0.00 2019-07-17 23:53:58 2019-07-17 23:55:03 t 1 2 81148 296 0.00 2019-08-08 11:54:54 2019-08-08 11:56:46 t 1 2 74750 220 0.00 2019-07-18 00:23:23 2019-07-18 00:54:52 t 1 2 74758 232 0.00 2019-07-18 07:11:43 2019-07-18 07:34:02 t 1 2 74760 247 0.00 2019-07-18 07:44:01 2019-07-18 07:45:10 t 1 2 74763 272 0.00 2019-07-18 08:00:13 2019-07-18 08:29:53 t 1 2 74775 220 0.00 2019-07-18 10:17:06 2019-07-18 10:17:36 t 1 1 74776 220 0.00 2019-07-18 10:17:45 2019-07-18 10:18:00 t 1 1 74779 220 0.00 2019-07-18 10:19:49 2019-07-18 10:20:03 t 1 1 74780 220 0.00 2019-07-18 10:20:13 2019-07-18 10:20:41 t 1 1 74785 220 0.00 2019-07-18 10:22:53 2019-07-18 10:23:07 t 1 1 81149 304 0.00 2019-08-08 11:44:13 2019-08-08 11:59:18 t 1 2 74788 220 0.00 2019-07-18 10:29:57 2019-07-18 10:30:11 t 1 1 74789 220 0.00 2019-07-18 10:30:21 2019-07-18 10:30:50 t 1 1 74793 212 0.00 2019-07-18 10:34:41 2019-07-18 10:36:03 t 1 2 74794 220 0.00 2019-07-18 10:37:14 2019-07-18 10:37:27 t 1 1 74795 220 0.00 2019-07-18 10:37:55 2019-07-18 10:38:09 t 1 1 74804 220 0.00 2019-07-18 10:48:26 2019-07-18 10:48:43 t 1 1 74805 220 0.00 2019-07-18 10:48:49 2019-07-18 10:49:17 t 1 1 74808 220 0.00 2019-07-18 10:50:26 2019-07-18 10:50:27 t 1 1 74809 220 0.00 2019-07-18 10:50:34 2019-07-18 10:50:41 t 1 1 74813 220 0.00 2019-07-18 10:54:02 2019-07-18 10:54:17 t 1 1 74814 220 0.00 2019-07-18 10:55:08 2019-07-18 10:55:21 t 1 1 74815 220 0.00 2019-07-18 10:56:09 2019-07-18 10:56:22 t 1 1 74823 220 0.00 2019-07-18 11:03:18 2019-07-18 11:03:54 t 1 1 74828 220 0.00 2019-07-18 11:05:47 2019-07-18 11:06:17 t 1 1 74829 220 0.00 2019-07-18 11:06:36 2019-07-18 11:06:53 t 1 1 74836 220 0.00 2019-07-18 11:09:54 2019-07-18 11:10:23 t 1 1 74837 220 0.00 2019-07-18 11:10:31 2019-07-18 11:10:46 t 1 1 74838 220 0.00 2019-07-18 11:10:55 2019-07-18 11:11:24 t 1 1 74839 220 0.00 2019-07-18 11:11:33 2019-07-18 11:11:47 t 1 1 74848 220 0.00 2019-07-18 11:16:04 2019-07-18 11:16:31 t 1 1 74849 220 0.00 2019-07-18 11:16:40 2019-07-18 11:16:55 t 1 1 74850 220 0.00 2019-07-18 11:20:17 2019-07-18 11:20:32 t 1 1 74851 217 0.00 2019-07-18 11:24:52 2019-07-18 11:25:47 t 1 2 74852 272 0.00 2019-07-18 11:11:16 2019-07-18 11:31:21 t 1 2 74856 245 0.00 2019-07-18 11:39:12 2019-07-18 11:40:14 t 1 2 81155 331 0.00 2019-08-08 12:04:28 2019-08-08 12:05:29 t 1 2 74859 245 0.00 2019-07-18 11:41:55 2019-07-18 11:43:00 t 1 2 74866 220 0.00 2019-07-18 11:49:09 2019-07-18 11:49:23 t 1 1 74867 220 0.00 2019-07-18 11:38:59 2019-07-18 11:50:10 t 1 2 74879 220 0.00 2019-07-18 12:03:16 2019-07-18 12:03:30 t 1 1 74883 220 0.00 2019-07-18 12:06:17 2019-07-18 12:06:31 t 1 1 74884 220 0.00 2019-07-18 12:07:18 2019-07-18 12:07:31 t 1 1 74885 220 0.00 2019-07-18 12:08:18 2019-07-18 12:08:31 t 1 1 74887 234 0.00 2019-07-18 10:35:25 2019-07-18 12:10:30 t 1 2 74889 288 0.00 2019-07-18 12:17:03 2019-07-18 12:18:10 t 1 2 74891 220 0.00 2019-07-18 12:18:44 2019-07-18 12:18:58 t 1 1 74893 220 0.00 2019-07-18 12:19:36 2019-07-18 12:20:38 t 1 1 74897 220 0.00 2019-07-18 12:28:33 2019-07-18 12:28:47 t 1 1 74898 220 0.00 2019-07-18 12:29:33 2019-07-18 12:29:46 t 1 1 74899 220 0.00 2019-07-18 12:30:36 2019-07-18 12:30:50 t 1 1 74900 220 0.00 2019-07-18 12:31:34 2019-07-18 12:31:47 t 1 1 74901 220 0.00 2019-07-18 12:32:35 2019-07-18 12:32:48 t 1 1 74905 288 0.00 2019-07-18 12:35:04 2019-07-18 12:36:08 t 1 2 74909 288 0.00 2019-07-18 12:37:54 2019-07-18 12:38:57 t 1 2 74916 212 0.00 2019-07-18 12:51:12 2019-07-18 12:52:28 t 1 2 74926 288 0.00 2019-07-18 13:54:24 2019-07-18 13:55:28 t 1 2 74931 230 0.00 2019-07-18 13:31:58 2019-07-18 14:06:05 t 1 2 74934 204 0.00 2019-07-18 13:34:00 2019-07-18 14:10:04 t 1 2 74946 288 0.00 2019-07-18 15:24:46 2019-07-18 15:25:52 t 1 2 74950 220 0.00 2019-07-18 15:39:08 2019-07-18 15:39:22 t 1 1 74952 213 0.00 2019-07-18 15:39:49 2019-07-18 15:40:51 t 1 2 74956 220 0.00 2019-07-18 15:44:10 2019-07-18 15:44:24 t 1 1 74959 220 0.00 2019-07-18 15:58:18 2019-07-18 15:58:32 t 1 1 74172 212 0.00 2019-07-15 00:22:25 2019-07-15 00:23:21 t 1 2 74174 217 0.00 2019-07-15 00:24:05 2019-07-15 00:24:15 t 1 1 74175 217 0.00 2019-07-15 00:24:50 2019-07-15 00:24:51 t 1 1 74180 217 0.00 2019-07-15 00:28:50 2019-07-15 00:29:00 t 1 1 74181 217 0.00 2019-07-15 00:29:51 2019-07-15 00:30:02 t 1 1 74182 217 0.00 2019-07-15 00:30:51 2019-07-15 00:30:59 t 1 1 74183 217 0.00 2019-07-15 00:31:49 2019-07-15 00:32:01 t 1 1 74186 217 0.00 2019-07-15 00:33:09 2019-07-15 00:33:20 t 1 1 81133 304 0.00 2019-08-08 11:42:58 2019-08-08 11:42:58 f 1 2 74193 217 0.00 2019-07-15 00:37:18 2019-07-15 00:37:27 t 1 1 74194 217 0.00 2019-07-15 00:37:54 2019-07-15 00:38:05 t 1 1 74201 217 0.00 2019-07-15 00:46:07 2019-07-15 00:46:16 t 1 1 74204 217 0.00 2019-07-15 00:49:01 2019-07-15 00:49:10 t 1 1 74209 217 0.00 2019-07-15 00:57:57 2019-07-15 00:58:06 t 1 1 74211 217 0.00 2019-07-15 01:00:45 2019-07-15 01:00:56 t 1 1 74213 217 0.00 2019-07-15 01:01:07 2019-07-15 01:01:08 t 1 1 74217 217 0.00 2019-07-15 01:16:12 2019-07-15 01:16:13 t 1 1 74218 204 0.00 2019-07-15 01:01:52 2019-07-15 01:17:53 t 1 2 74227 217 0.00 2019-07-15 01:34:16 2019-07-15 01:34:27 t 1 1 74230 251 0.00 2019-07-15 01:20:34 2019-07-15 01:35:39 t 1 2 74234 217 0.00 2019-07-15 01:39:55 2019-07-15 01:42:19 t 1 1 74250 217 0.00 2019-07-15 02:08:28 2019-07-15 02:08:37 t 1 1 74254 217 0.00 2019-07-15 02:10:31 2019-07-15 02:10:40 t 1 1 74255 217 0.00 2019-07-15 02:11:31 2019-07-15 02:11:41 t 1 1 74260 230 0.00 2019-07-15 00:56:44 2019-07-15 02:16:50 t 1 2 74261 217 0.00 2019-07-15 02:19:37 2019-07-15 02:19:56 t 1 1 74265 217 0.00 2019-07-15 02:30:34 2019-07-15 02:30:45 t 1 1 74267 217 0.00 2019-07-15 02:37:43 2019-07-15 02:37:52 t 1 1 74272 217 0.00 2019-07-15 02:48:47 2019-07-15 02:48:48 t 1 1 74278 217 0.00 2019-07-15 02:53:48 2019-07-15 02:53:58 t 1 1 74279 217 0.00 2019-07-15 02:54:48 2019-07-15 02:54:58 t 1 1 74283 217 0.00 2019-07-15 03:10:54 2019-07-15 03:11:03 t 1 1 74284 217 0.00 2019-07-15 03:11:53 2019-07-15 03:11:54 t 1 1 74285 217 0.00 2019-07-15 03:12:53 2019-07-15 03:13:02 t 1 1 74302 217 0.00 2019-07-15 03:47:01 2019-07-15 03:47:02 t 1 1 74668 269 0.00 2019-07-17 15:14:04 2019-07-17 15:24:04 t 1 2 74670 243 0.00 2019-07-17 15:59:47 2019-07-17 16:03:23 t 1 2 74674 212 0.00 2019-07-17 16:11:46 2019-07-17 16:12:18 t 1 2 74675 245 0.00 2019-07-17 16:13:15 2019-07-17 16:14:17 t 1 2 81136 304 0.00 2019-08-08 11:43:16 2019-08-08 11:43:16 f 1 2 74681 212 0.00 2019-07-17 16:35:03 2019-07-17 16:35:47 t 1 2 74682 269 0.00 2019-07-17 15:28:43 2019-07-17 16:45:04 t 1 2 74685 217 0.00 2019-07-17 15:19:38 2019-07-17 17:23:49 t 1 2 74686 212 0.00 2019-07-17 17:24:23 2019-07-17 17:24:52 t 1 2 74691 269 0.00 2019-07-17 18:11:57 2019-07-17 18:19:20 t 1 2 74692 212 0.00 2019-07-17 18:32:04 2019-07-17 18:32:32 t 1 2 74695 245 0.00 2019-07-17 18:57:07 2019-07-17 18:58:11 t 1 2 74698 212 0.00 2019-07-17 19:45:47 2019-07-17 19:46:32 t 1 2 81141 243 0.00 2019-08-08 11:43:19 2019-08-08 11:46:55 t 1 2 74703 213 0.00 2019-07-17 20:24:00 2019-07-17 20:25:08 t 1 2 74705 269 0.00 2019-07-17 19:38:01 2019-07-17 20:28:24 t 1 2 74706 234 0.00 2019-07-17 20:10:51 2019-07-17 20:35:56 t 1 2 74709 272 0.00 2019-07-17 21:03:04 2019-07-17 21:03:04 f 1 2 74712 272 0.00 2019-07-17 21:03:28 2019-07-17 21:03:28 f 1 2 74713 234 0.00 2019-07-17 20:54:15 2019-07-17 21:04:20 t 1 2 74717 272 0.00 2019-07-17 21:08:20 2019-07-17 21:08:20 f 1 2 74719 272 0.00 2019-07-17 21:08:41 2019-07-17 21:08:41 f 1 2 74724 272 0.00 2019-07-17 20:57:16 2019-07-17 21:12:21 t 1 2 74726 272 0.00 2019-07-17 21:15:56 2019-07-17 21:41:01 t 1 2 74727 263 0.00 2019-07-17 21:47:33 2019-07-17 21:48:39 t 1 2 74728 263 0.00 2019-07-17 21:48:55 2019-07-17 21:49:57 t 1 2 74735 243 0.00 2019-07-17 22:40:17 2019-07-17 22:45:57 t 1 2 74737 247 0.00 2019-07-17 23:09:11 2019-07-17 23:09:48 t 1 2 74740 212 0.00 2019-07-17 23:15:29 2019-07-17 23:15:58 t 1 2 74745 234 0.00 2019-07-17 22:11:13 2019-07-17 23:56:18 t 1 2 74746 251 0.00 2019-07-18 00:17:14 2019-07-18 00:18:17 t 1 2 74752 234 0.00 2019-07-18 00:36:20 2019-07-18 01:46:25 t 1 2 74753 212 0.00 2019-07-18 01:56:51 2019-07-18 01:57:10 t 1 2 74759 272 0.00 2019-07-17 16:57:40 2019-07-18 07:34:02 t 1 2 74761 286 0.00 2019-07-18 08:01:47 2019-07-18 08:16:53 t 1 2 74765 286 0.00 2019-07-18 08:54:00 2019-07-18 09:04:05 t 1 2 74766 212 0.00 2019-07-18 09:04:55 2019-07-18 09:05:25 t 1 2 74768 286 0.00 2019-07-18 09:42:59 2019-07-18 09:53:04 t 1 2 74772 220 0.00 2019-07-18 10:15:40 2019-07-18 10:15:54 t 1 1 74781 220 0.00 2019-07-18 10:20:50 2019-07-18 10:21:05 t 1 1 74782 220 0.00 2019-07-18 10:21:14 2019-07-18 10:21:42 t 1 1 74790 220 0.00 2019-07-18 10:30:59 2019-07-18 10:31:14 t 1 1 74791 220 0.00 2019-07-18 10:31:23 2019-07-18 10:31:55 t 1 1 74792 220 0.00 2019-07-18 10:25:48 2019-07-18 10:35:54 t 1 2 74798 220 0.00 2019-07-18 10:43:56 2019-07-18 10:43:58 t 1 1 74802 220 0.00 2019-07-18 10:46:59 2019-07-18 10:47:15 t 1 1 74803 220 0.00 2019-07-18 10:48:05 2019-07-18 10:48:14 t 1 1 74807 220 0.00 2019-07-18 10:49:32 2019-07-18 10:50:26 t 1 1 74810 220 0.00 2019-07-18 10:51:03 2019-07-18 10:51:17 t 1 1 74811 220 0.00 2019-07-18 10:52:04 2019-07-18 10:52:17 t 1 1 74812 220 0.00 2019-07-18 10:53:05 2019-07-18 10:53:19 t 1 1 74819 220 0.00 2019-07-18 10:59:11 2019-07-18 10:59:24 t 1 1 74820 220 0.00 2019-07-18 11:00:12 2019-07-18 11:00:28 t 1 1 74821 220 0.00 2019-07-18 11:01:13 2019-07-18 11:01:27 t 1 1 74824 220 0.00 2019-07-18 11:04:03 2019-07-18 11:04:18 t 1 1 74825 220 0.00 2019-07-18 11:04:27 2019-07-18 11:04:42 t 1 1 74830 220 0.00 2019-07-18 11:07:09 2019-07-18 11:07:26 t 1 1 74831 220 0.00 2019-07-18 11:07:35 2019-07-18 11:07:52 t 1 1 74833 220 0.00 2019-07-18 11:08:28 2019-07-18 11:08:51 t 1 1 74840 220 0.00 2019-07-18 11:11:56 2019-07-18 11:12:25 t 1 1 74841 220 0.00 2019-07-18 11:12:34 2019-07-18 11:12:48 t 1 1 74843 220 0.00 2019-07-18 11:13:36 2019-07-18 11:13:50 t 1 1 74855 286 0.00 2019-07-18 10:33:36 2019-07-18 11:38:42 t 1 2 74858 245 0.00 2019-07-18 11:40:33 2019-07-18 11:41:38 t 1 2 74861 220 0.00 2019-07-18 11:44:05 2019-07-18 11:44:06 t 1 1 74862 220 0.00 2019-07-18 11:45:05 2019-07-18 11:45:14 t 1 1 74863 220 0.00 2019-07-18 11:46:05 2019-07-18 11:46:19 t 1 1 74864 220 0.00 2019-07-18 11:47:06 2019-07-18 11:47:19 t 1 1 74865 220 0.00 2019-07-18 11:48:06 2019-07-18 11:48:21 t 1 1 74875 220 0.00 2019-07-18 11:59:14 2019-07-18 11:59:27 t 1 1 74876 220 0.00 2019-07-18 12:00:16 2019-07-18 12:00:29 t 1 1 74878 220 0.00 2019-07-18 12:02:15 2019-07-18 12:02:33 t 1 1 74173 217 0.00 2019-07-15 00:23:49 2019-07-15 00:23:58 t 1 1 74184 236 0.00 2019-07-14 23:27:17 2019-07-15 00:32:22 t 1 2 74185 217 0.00 2019-07-15 00:32:54 2019-07-15 00:33:02 t 1 1 74187 217 0.00 2019-07-15 00:33:54 2019-07-15 00:34:05 t 1 1 74188 217 0.00 2019-07-15 00:34:54 2019-07-15 00:35:08 t 1 1 74189 217 0.00 2019-07-15 00:35:54 2019-07-15 00:36:04 t 1 1 74192 217 0.00 2019-07-15 00:37:02 2019-07-15 00:37:10 t 1 1 74195 217 0.00 2019-07-15 00:38:55 2019-07-15 00:39:03 t 1 1 74196 217 0.00 2019-07-15 00:39:55 2019-07-15 00:40:07 t 1 1 74197 217 0.00 2019-07-15 00:40:55 2019-07-15 00:41:08 t 1 1 74198 217 0.00 2019-07-15 00:41:55 2019-07-15 00:42:07 t 1 1 74200 217 0.00 2019-07-15 00:45:48 2019-07-15 00:45:59 t 1 1 74203 217 0.00 2019-07-15 00:47:01 2019-07-15 00:48:53 t 1 1 74210 217 0.00 2019-07-15 00:58:57 2019-07-15 00:59:07 t 1 1 74212 217 0.00 2019-07-15 00:59:57 2019-07-15 01:00:58 t 1 1 74215 217 0.00 2019-07-15 01:15:04 2019-07-15 01:15:17 t 1 1 74216 217 0.00 2019-07-15 01:15:27 2019-07-15 01:16:01 t 1 1 74219 217 0.00 2019-07-14 23:09:26 2019-07-15 01:19:31 t 1 2 74224 217 0.00 2019-07-15 01:29:05 2019-07-15 01:30:06 t 1 1 74226 217 0.00 2019-07-15 01:33:52 2019-07-15 01:34:06 t 1 1 74228 217 0.00 2019-07-15 01:19:25 2019-07-15 01:34:30 t 1 2 74229 217 0.00 2019-07-15 01:34:38 2019-07-15 01:35:06 t 1 1 74231 217 0.00 2019-07-15 01:36:12 2019-07-15 01:37:57 t 1 1 74233 217 0.00 2019-07-15 01:39:02 2019-07-15 01:39:15 t 1 1 74235 217 0.00 2019-07-15 01:43:28 2019-07-15 01:43:29 t 1 1 74236 217 0.00 2019-07-15 01:42:30 2019-07-15 01:43:57 t 1 1 74238 217 0.00 2019-07-15 01:51:11 2019-07-15 01:51:22 t 1 1 74240 217 0.00 2019-07-15 02:00:13 2019-07-15 02:00:23 t 1 1 74241 217 0.00 2019-07-15 02:01:24 2019-07-15 02:01:33 t 1 1 74242 217 0.00 2019-07-15 02:02:26 2019-07-15 02:02:35 t 1 1 74243 217 0.00 2019-07-15 02:03:25 2019-07-15 02:03:35 t 1 1 74247 217 0.00 2019-07-15 02:05:59 2019-07-15 02:06:26 t 1 1 74249 217 0.00 2019-07-15 02:07:45 2019-07-15 02:07:54 t 1 1 74252 212 0.00 2019-07-15 02:08:24 2019-07-15 02:09:14 t 1 2 74257 217 0.00 2019-07-15 02:12:07 2019-07-15 02:12:08 t 1 1 74258 217 0.00 2019-07-15 02:12:33 2019-07-15 02:12:42 t 1 1 74262 217 0.00 2019-07-15 02:26:39 2019-07-15 02:26:51 t 1 1 74263 217 0.00 2019-07-15 02:27:39 2019-07-15 02:27:51 t 1 1 74268 217 0.00 2019-07-15 02:38:42 2019-07-15 02:38:51 t 1 1 74271 217 0.00 2019-07-15 02:47:45 2019-07-15 02:48:46 t 1 1 74280 217 0.00 2019-07-15 02:55:49 2019-07-15 02:56:51 t 1 1 74281 217 0.00 2019-07-15 03:02:55 2019-07-15 03:03:06 t 1 1 74286 217 0.00 2019-07-15 03:13:55 2019-07-15 03:14:05 t 1 1 74287 217 0.00 2019-07-15 03:14:55 2019-07-15 03:15:04 t 1 1 74288 217 0.00 2019-07-15 03:15:55 2019-07-15 03:16:04 t 1 1 74289 217 0.00 2019-07-15 03:16:12 2019-07-15 03:17:12 t 1 1 74290 217 0.00 2019-07-15 03:23:00 2019-07-15 03:23:09 t 1 1 74295 217 0.00 2019-07-15 03:28:00 2019-07-15 03:29:01 t 1 1 74296 217 0.00 2019-07-15 03:33:00 2019-07-15 03:33:18 t 1 1 74298 217 0.00 2019-07-15 03:36:10 2019-07-15 03:39:33 t 1 1 74299 217 0.00 2019-07-15 03:39:43 2019-07-15 03:39:45 t 1 1 74301 217 0.00 2019-07-15 03:46:39 2019-07-15 03:46:50 t 1 1 74308 217 0.00 2019-07-15 03:57:56 2019-07-15 03:58:04 t 1 1 74310 217 0.00 2019-07-15 03:59:05 2019-07-15 03:59:11 t 1 1 74881 220 0.00 2019-07-18 12:05:17 2019-07-18 12:05:33 t 1 1 74888 288 0.00 2019-07-18 12:15:29 2019-07-18 12:16:33 t 1 2 74890 220 0.00 2019-07-18 12:18:21 2019-07-18 12:18:35 t 1 1 74892 220 0.00 2019-07-18 12:19:07 2019-07-18 12:19:27 t 1 1 74895 288 0.00 2019-07-18 12:26:13 2019-07-18 12:27:15 t 1 2 74896 220 0.00 2019-07-18 12:27:32 2019-07-18 12:27:58 t 1 1 74904 220 0.00 2019-07-18 12:35:37 2019-07-18 12:35:50 t 1 1 74908 220 0.00 2019-07-18 12:37:40 2019-07-18 12:38:44 t 1 1 74913 288 0.00 2019-07-18 12:48:20 2019-07-18 12:49:25 t 1 2 74914 271 0.00 2019-07-18 11:15:27 2019-07-18 12:50:32 t 1 2 74917 263 0.00 2019-07-18 12:52:21 2019-07-18 12:53:28 t 1 2 74920 218 0.00 2019-07-18 12:52:03 2019-07-18 13:01:13 t 1 2 74921 272 0.00 2019-07-18 13:14:07 2019-07-18 13:29:12 t 1 2 74922 269 0.00 2019-07-18 13:42:24 2019-07-18 13:43:47 t 1 2 74925 288 0.00 2019-07-18 13:53:07 2019-07-18 13:54:13 t 1 2 74927 212 0.00 2019-07-18 13:55:14 2019-07-18 13:55:42 t 1 2 74928 288 0.00 2019-07-18 13:56:16 2019-07-18 13:57:23 t 1 2 74932 288 0.00 2019-07-18 14:06:02 2019-07-18 14:07:07 t 1 2 74936 213 0.00 2019-07-18 14:21:18 2019-07-18 14:22:25 t 1 2 74939 210 0.00 2019-07-18 14:29:23 2019-07-18 14:30:55 t 1 2 74940 288 0.00 2019-07-18 14:31:30 2019-07-18 14:32:35 t 1 2 74941 212 0.00 2019-07-18 14:13:54 2019-07-18 14:45:19 t 1 2 74942 272 0.00 2019-07-18 13:59:13 2019-07-18 14:54:13 t 1 2 74943 247 0.00 2019-07-18 14:59:24 2019-07-18 15:00:29 t 1 2 74944 271 0.00 2019-07-18 14:13:49 2019-07-18 15:12:07 t 1 2 74948 220 0.00 2019-07-18 15:37:08 2019-07-18 15:37:22 t 1 1 74949 220 0.00 2019-07-18 15:37:43 2019-07-18 15:38:05 t 1 1 74953 220 0.00 2019-07-18 15:41:08 2019-07-18 15:41:23 t 1 1 74954 220 0.00 2019-07-18 15:42:08 2019-07-18 15:42:21 t 1 1 74955 220 0.00 2019-07-18 15:43:09 2019-07-18 15:43:27 t 1 1 74957 217 0.00 2019-07-18 13:53:24 2019-07-18 15:53:29 t 1 2 74960 220 0.00 2019-07-18 15:59:19 2019-07-18 16:00:19 t 1 1 74961 220 0.00 2019-07-18 16:01:18 2019-07-18 16:01:33 t 1 1 74962 220 0.00 2019-07-18 16:01:42 2019-07-18 16:02:13 t 1 1 74966 263 0.00 2019-07-18 14:36:00 2019-07-18 16:06:05 t 1 2 74969 220 0.00 2019-07-18 16:11:22 2019-07-18 16:11:37 t 1 1 74970 220 0.00 2019-07-18 16:11:46 2019-07-18 16:12:22 t 1 1 74971 220 0.00 2019-07-18 16:12:31 2019-07-18 16:12:45 t 1 1 74973 220 0.00 2019-07-18 16:13:31 2019-07-18 16:13:46 t 1 1 74976 271 0.00 2019-07-18 15:23:00 2019-07-18 16:19:53 t 1 2 81134 304 0.00 2019-08-08 11:43:05 2019-08-08 11:43:05 f 1 2 74978 212 0.00 2019-07-18 16:46:28 2019-07-18 16:47:03 t 1 2 81137 304 0.00 2019-08-08 11:43:24 2019-08-08 11:43:24 f 1 2 74986 288 0.00 2019-07-18 17:26:38 2019-07-18 17:27:43 t 1 2 74990 288 0.00 2019-07-18 17:49:46 2019-07-18 17:50:50 t 1 2 74991 212 0.00 2019-07-18 17:55:10 2019-07-18 17:55:40 t 1 2 74995 288 0.00 2019-07-18 17:58:49 2019-07-18 17:59:54 t 1 2 74999 288 0.00 2019-07-18 18:24:03 2019-07-18 18:25:06 t 1 2 75001 288 0.00 2019-07-18 18:27:30 2019-07-18 18:28:36 t 1 2 75013 288 0.00 2019-07-18 18:45:56 2019-07-18 18:47:00 t 1 2 75014 288 0.00 2019-07-18 18:47:18 2019-07-18 18:48:21 t 1 2 75015 230 0.00 2019-07-18 17:21:47 2019-07-18 18:48:42 t 1 2 75016 288 0.00 2019-07-18 18:48:44 2019-07-18 18:49:51 t 1 2 74176 217 0.00 2019-07-15 00:24:59 2019-07-15 00:25:08 t 1 1 74177 217 0.00 2019-07-15 00:25:50 2019-07-15 00:26:00 t 1 1 74178 217 0.00 2019-07-15 00:26:51 2019-07-15 00:26:59 t 1 1 74179 217 0.00 2019-07-15 00:27:51 2019-07-15 00:28:06 t 1 1 74191 217 0.00 2019-07-15 00:36:54 2019-07-15 00:36:55 t 1 1 74199 217 0.00 2019-07-15 00:45:09 2019-07-15 00:45:42 t 1 1 74202 271 0.00 2019-07-14 23:51:12 2019-07-15 00:46:49 t 1 2 74205 217 0.00 2019-07-15 00:49:19 2019-07-15 00:49:27 t 1 1 74206 217 0.00 2019-07-15 00:49:40 2019-07-15 00:49:55 t 1 1 74207 217 0.00 2019-07-15 00:50:56 2019-07-15 00:51:04 t 1 1 74208 217 0.00 2019-07-15 00:51:13 2019-07-15 00:52:13 t 1 1 74214 217 0.00 2019-07-15 01:08:02 2019-07-15 01:08:14 t 1 1 74220 217 0.00 2019-07-15 01:23:05 2019-07-15 01:23:15 t 1 1 74221 217 0.00 2019-07-15 01:26:25 2019-07-15 01:26:35 t 1 1 74222 217 0.00 2019-07-15 01:27:05 2019-07-15 01:27:14 t 1 1 74223 217 0.00 2019-07-15 01:28:05 2019-07-15 01:28:15 t 1 1 74225 217 0.00 2019-07-15 01:33:40 2019-07-15 01:33:42 t 1 1 74232 217 0.00 2019-07-15 01:38:17 2019-07-15 01:38:54 t 1 1 74237 217 0.00 2019-07-15 01:50:30 2019-07-15 01:51:03 t 1 1 74239 217 0.00 2019-07-15 01:59:29 2019-07-15 01:59:43 t 1 1 74244 217 0.00 2019-07-15 02:04:25 2019-07-15 02:04:35 t 1 1 74245 217 0.00 2019-07-15 02:05:25 2019-07-15 02:05:35 t 1 1 74246 217 0.00 2019-07-15 02:05:42 2019-07-15 02:05:51 t 1 1 74248 217 0.00 2019-07-15 02:07:29 2019-07-15 02:07:38 t 1 1 74251 217 0.00 2019-07-15 02:08:45 2019-07-15 02:08:54 t 1 1 74253 217 0.00 2019-07-15 02:09:03 2019-07-15 02:09:29 t 1 1 74256 217 0.00 2019-07-15 02:11:49 2019-07-15 02:11:59 t 1 1 74259 217 0.00 2019-07-15 02:12:54 2019-07-15 02:13:54 t 1 1 74264 217 0.00 2019-07-15 02:28:39 2019-07-15 02:28:41 t 1 1 74266 217 0.00 2019-07-15 02:30:56 2019-07-15 02:30:57 t 1 1 74269 217 0.00 2019-07-15 02:39:42 2019-07-15 02:40:43 t 1 1 74270 217 0.00 2019-07-15 02:46:45 2019-07-15 02:46:54 t 1 1 74273 217 0.00 2019-07-15 02:49:15 2019-07-15 02:49:24 t 1 1 74274 217 0.00 2019-07-15 02:49:47 2019-07-15 02:49:56 t 1 1 74275 217 0.00 2019-07-15 02:50:48 2019-07-15 02:50:57 t 1 1 74276 217 0.00 2019-07-15 02:51:48 2019-07-15 02:51:58 t 1 1 74277 217 0.00 2019-07-15 02:52:48 2019-07-15 02:52:58 t 1 1 74282 217 0.00 2019-07-15 03:03:54 2019-07-15 03:03:55 t 1 1 74291 217 0.00 2019-07-15 03:23:59 2019-07-15 03:24:08 t 1 1 74292 217 0.00 2019-07-15 03:24:59 2019-07-15 03:25:00 t 1 1 74293 217 0.00 2019-07-15 03:25:59 2019-07-15 03:26:08 t 1 1 74294 217 0.00 2019-07-15 03:27:01 2019-07-15 03:27:09 t 1 1 74297 217 0.00 2019-07-15 03:33:31 2019-07-15 03:34:02 t 1 1 74300 217 0.00 2019-07-15 03:39:56 2019-07-15 03:41:58 t 1 1 74303 217 0.00 2019-07-15 03:53:47 2019-07-15 03:53:59 t 1 1 74304 217 0.00 2019-07-15 03:54:44 2019-07-15 03:54:54 t 1 1 74305 217 0.00 2019-07-15 03:55:47 2019-07-15 03:55:56 t 1 1 74306 217 0.00 2019-07-15 03:56:47 2019-07-15 03:56:57 t 1 1 74307 217 0.00 2019-07-15 03:57:47 2019-07-15 03:57:48 t 1 1 74309 217 0.00 2019-07-15 03:58:48 2019-07-15 03:58:57 t 1 1 74910 288 0.00 2019-07-18 12:39:20 2019-07-18 12:40:24 t 1 2 74911 234 0.00 2019-07-18 12:39:04 2019-07-18 12:42:04 t 1 2 74912 288 0.00 2019-07-18 12:46:54 2019-07-18 12:47:57 t 1 2 74915 288 0.00 2019-07-18 12:49:49 2019-07-18 12:50:54 t 1 2 74918 212 0.00 2019-07-18 12:54:53 2019-07-18 12:58:05 t 1 2 74919 288 0.00 2019-07-18 12:59:56 2019-07-18 13:01:00 t 1 2 74923 288 0.00 2019-07-18 13:48:03 2019-07-18 13:49:07 t 1 2 74924 263 0.00 2019-07-18 13:43:42 2019-07-18 13:53:47 t 1 2 74929 288 0.00 2019-07-18 13:57:43 2019-07-18 13:58:48 t 1 2 74930 288 0.00 2019-07-18 14:01:06 2019-07-18 14:02:10 t 1 2 74933 288 0.00 2019-07-18 14:08:28 2019-07-18 14:09:34 t 1 2 74935 288 0.00 2019-07-18 14:10:48 2019-07-18 14:11:51 t 1 2 74937 234 0.00 2019-07-18 13:43:11 2019-07-18 14:23:16 t 1 2 74938 210 0.00 2019-07-18 14:05:53 2019-07-18 14:29:18 t 1 2 81140 335 0.00 2019-08-08 11:04:40 2019-08-08 11:44:45 t 1 2 74947 213 0.00 2019-07-18 15:28:32 2019-07-18 15:29:38 t 1 2 74951 220 0.00 2019-07-18 15:40:08 2019-07-18 15:40:25 t 1 1 74958 220 0.00 2019-07-18 15:57:20 2019-07-18 15:57:38 t 1 1 74963 220 0.00 2019-07-18 16:02:25 2019-07-18 16:02:26 t 1 1 74964 220 0.00 2019-07-18 16:02:37 2019-07-18 16:03:15 t 1 1 74972 220 0.00 2019-07-18 16:12:56 2019-07-18 16:13:21 t 1 1 74974 220 0.00 2019-07-18 16:13:55 2019-07-18 16:14:23 t 1 1 74975 220 0.00 2019-07-18 16:14:32 2019-07-18 16:14:47 t 1 1 81144 320 0.00 2019-08-08 11:43:02 2019-08-08 11:53:07 t 1 2 74983 217 0.00 2019-07-18 16:35:22 2019-07-18 17:00:27 t 1 2 74985 286 0.00 2019-07-18 16:47:31 2019-07-18 17:12:36 t 1 2 74987 288 0.00 2019-07-18 17:42:03 2019-07-18 17:43:10 t 1 2 74989 288 0.00 2019-07-18 17:48:26 2019-07-18 17:49:30 t 1 2 74993 213 0.00 2019-07-18 17:56:25 2019-07-18 17:57:29 t 1 2 74997 288 0.00 2019-07-18 18:16:46 2019-07-18 18:17:49 t 1 2 74998 288 0.00 2019-07-18 18:19:43 2019-07-18 18:20:47 t 1 2 75000 218 0.00 2019-07-18 18:16:01 2019-07-18 18:26:07 t 1 2 75003 288 0.00 2019-07-18 18:34:36 2019-07-18 18:35:40 t 1 2 75004 288 0.00 2019-07-18 18:36:09 2019-07-18 18:37:15 t 1 2 75007 288 0.00 2019-07-18 18:40:56 2019-07-18 18:42:01 t 1 2 81147 306 0.00 2019-08-08 11:54:36 2019-08-08 11:55:39 t 1 2 75009 288 0.00 2019-07-18 18:42:41 2019-07-18 18:43:46 t 1 2 75023 288 0.00 2019-07-18 19:10:14 2019-07-18 19:11:21 t 1 2 75026 288 0.00 2019-07-18 19:14:43 2019-07-18 19:15:48 t 1 2 75031 288 0.00 2019-07-18 19:28:32 2019-07-18 19:29:37 t 1 2 75037 213 0.00 2019-07-18 20:12:02 2019-07-18 20:13:07 t 1 2 75039 232 0.00 2019-07-18 19:27:34 2019-07-18 20:17:40 t 1 2 75041 288 0.00 2019-07-18 20:30:41 2019-07-18 20:31:48 t 1 2 75044 218 0.00 2019-07-18 20:33:15 2019-07-18 20:43:20 t 1 2 75048 288 0.00 2019-07-18 21:55:47 2019-07-18 21:56:53 t 1 2 75050 234 0.00 2019-07-18 20:43:35 2019-07-18 22:08:41 t 1 2 75052 247 0.00 2019-07-18 22:27:38 2019-07-18 22:30:17 t 1 2 75053 212 0.00 2019-07-18 22:25:25 2019-07-18 22:33:48 t 1 2 75058 213 0.00 2019-07-18 23:03:13 2019-07-18 23:04:19 t 1 2 75062 247 0.00 2019-07-18 23:40:14 2019-07-18 23:41:11 t 1 2 75063 234 0.00 2019-07-18 23:18:08 2019-07-18 23:43:14 t 1 2 75067 212 0.00 2019-07-18 23:21:07 2019-07-19 00:06:13 t 1 2 75068 288 0.00 2019-07-19 00:12:33 2019-07-19 00:13:40 t 1 2 75071 217 0.00 2019-07-19 00:31:48 2019-07-19 00:46:53 t 1 2 75072 212 0.00 2019-07-19 00:46:53 2019-07-19 00:47:58 t 1 2 81150 294 0.00 2019-08-08 10:59:32 2019-08-08 11:59:56 t 1 2 75077 271 0.00 2019-07-19 02:13:08 2019-07-19 02:13:13 t 1 2 74965 220 0.00 2019-07-18 16:03:30 2019-07-18 16:05:04 t 1 1 74967 220 0.00 2019-07-18 16:10:21 2019-07-18 16:10:37 t 1 1 74968 220 0.00 2019-07-18 16:10:46 2019-07-18 16:10:55 t 1 1 81146 288 0.00 2019-08-08 11:53:08 2019-08-08 11:54:14 t 1 2 81157 304 0.00 2019-08-08 11:57:43 2019-08-08 12:07:48 t 1 2 81159 320 0.00 2019-08-08 12:03:28 2019-08-08 12:13:33 t 1 2 74988 288 0.00 2019-07-18 17:46:58 2019-07-18 17:48:06 t 1 2 74992 288 0.00 2019-07-18 17:54:39 2019-07-18 17:55:45 t 1 2 74994 288 0.00 2019-07-18 17:56:56 2019-07-18 17:58:03 t 1 2 74996 232 0.00 2019-07-18 12:03:13 2019-07-18 18:08:19 t 1 2 75002 288 0.00 2019-07-18 18:33:06 2019-07-18 18:34:11 t 1 2 75005 288 0.00 2019-07-18 18:37:52 2019-07-18 18:38:57 t 1 2 75006 288 0.00 2019-07-18 18:39:12 2019-07-18 18:40:17 t 1 2 75010 288 0.00 2019-07-18 18:44:05 2019-07-18 18:44:05 t 1 2 75011 288 0.00 2019-07-18 18:44:08 2019-07-18 18:45:11 t 1 2 75012 234 0.00 2019-07-18 18:16:13 2019-07-18 18:46:06 t 1 2 75017 288 0.00 2019-07-18 18:51:33 2019-07-18 18:52:36 t 1 2 75020 212 0.00 2019-07-18 19:00:22 2019-07-18 19:01:07 t 1 2 75021 213 0.00 2019-07-18 19:02:59 2019-07-18 19:04:04 t 1 2 75025 288 0.00 2019-07-18 19:13:14 2019-07-18 19:14:19 t 1 2 75028 288 0.00 2019-07-18 19:18:25 2019-07-18 19:19:29 t 1 2 75029 288 0.00 2019-07-18 19:20:08 2019-07-18 19:20:25 t 1 2 75032 288 0.00 2019-07-18 19:31:33 2019-07-18 19:32:35 t 1 2 75033 288 0.00 2019-07-18 19:33:53 2019-07-18 19:35:01 t 1 2 75035 212 0.00 2019-07-18 19:57:06 2019-07-18 19:57:29 t 1 2 75038 213 0.00 2019-07-18 20:13:37 2019-07-18 20:14:43 t 1 2 75040 212 0.00 2019-07-18 20:19:46 2019-07-18 20:20:23 t 1 2 75043 212 0.00 2019-07-18 20:31:19 2019-07-18 20:32:23 t 1 2 75045 247 0.00 2019-07-18 20:49:48 2019-07-18 20:51:49 t 1 2 75049 286 0.00 2019-07-18 21:57:16 2019-07-18 22:07:22 t 1 2 75054 272 0.00 2019-07-18 22:22:53 2019-07-18 22:42:58 t 1 2 81160 324 0.00 2019-08-08 12:04:05 2019-08-08 12:14:10 t 1 2 81161 217 0.00 2019-08-08 12:20:18 2019-08-08 12:20:18 f 1 2 75059 213 0.00 2019-07-18 23:07:31 2019-07-18 23:08:39 t 1 2 81166 324 0.00 2019-08-08 12:45:52 2019-08-08 12:46:15 t 1 2 75065 288 0.00 2019-07-18 23:57:51 2019-07-18 23:58:58 t 1 2 75066 212 0.00 2019-07-19 00:04:59 2019-07-19 00:06:00 t 1 2 75073 288 0.00 2019-07-19 01:11:50 2019-07-19 01:12:55 t 1 2 75082 234 0.00 2019-07-19 02:22:39 2019-07-19 03:27:44 t 1 2 75083 271 0.00 2019-07-19 03:09:30 2019-07-19 03:29:35 t 1 2 75084 218 0.00 2019-07-19 06:18:09 2019-07-19 06:44:17 t 1 2 75090 218 0.00 2019-07-19 09:17:25 2019-07-19 09:19:11 t 1 2 75095 247 0.00 2019-07-19 10:16:44 2019-07-19 10:18:11 t 1 2 75100 220 0.00 2019-07-19 10:30:30 2019-07-19 10:30:59 t 1 1 75101 220 0.00 2019-07-19 10:31:26 2019-07-19 10:31:39 t 1 1 75109 220 0.00 2019-07-19 10:42:06 2019-07-19 10:42:31 t 1 1 75110 220 0.00 2019-07-19 10:42:40 2019-07-19 10:42:55 t 1 1 75112 220 0.00 2019-07-19 10:43:42 2019-07-19 10:43:56 t 1 1 81168 304 0.00 2019-08-08 12:47:30 2019-08-08 12:57:35 t 1 2 75119 220 0.00 2019-07-19 10:46:46 2019-07-19 10:47:01 t 1 1 75120 220 0.00 2019-07-19 10:47:10 2019-07-19 10:47:37 t 1 1 75122 220 0.00 2019-07-19 10:48:11 2019-07-19 10:48:40 t 1 1 75125 220 0.00 2019-07-19 10:49:14 2019-07-19 10:49:42 t 1 1 75133 220 0.00 2019-07-19 10:52:55 2019-07-19 10:53:09 t 1 1 75135 220 0.00 2019-07-19 10:53:57 2019-07-19 10:54:11 t 1 1 75136 220 0.00 2019-07-19 10:54:20 2019-07-19 10:54:49 t 1 1 75142 217 0.00 2019-07-19 10:46:56 2019-07-19 10:57:01 t 1 2 75149 220 0.00 2019-07-19 11:00:08 2019-07-19 11:00:23 t 1 1 75153 220 0.00 2019-07-19 11:02:12 2019-07-19 11:02:28 t 1 1 75154 220 0.00 2019-07-19 11:02:37 2019-07-19 11:03:03 t 1 1 75156 220 0.00 2019-07-19 11:03:37 2019-07-19 11:04:06 t 1 1 75159 220 0.00 2019-07-19 11:04:40 2019-07-19 11:17:22 t 1 1 75162 220 0.00 2019-07-19 11:22:13 2019-07-19 11:22:28 t 1 1 75163 220 0.00 2019-07-19 11:22:37 2019-07-19 11:23:06 t 1 1 75165 220 0.00 2019-07-19 11:23:39 2019-07-19 11:24:08 t 1 1 75167 220 0.00 2019-07-19 11:24:41 2019-07-19 11:25:08 t 1 1 75172 220 0.00 2019-07-19 11:27:22 2019-07-19 11:27:37 t 1 1 75173 220 0.00 2019-07-19 11:27:46 2019-07-19 11:28:15 t 1 1 75175 220 0.00 2019-07-19 11:28:48 2019-07-19 11:29:17 t 1 1 75176 220 0.00 2019-07-19 11:29:26 2019-07-19 11:29:41 t 1 1 75178 220 0.00 2019-07-19 11:29:50 2019-07-19 11:39:06 t 1 1 75179 218 0.00 2019-07-19 11:24:49 2019-07-19 11:39:55 t 1 2 75188 220 0.00 2019-07-19 12:13:33 2019-07-19 12:14:04 t 1 1 75191 230 0.00 2019-07-19 11:19:25 2019-07-19 12:20:11 t 1 2 75193 288 0.00 2019-07-19 12:23:04 2019-07-19 12:24:11 t 1 2 75195 247 0.00 2019-07-19 13:01:52 2019-07-19 13:03:54 t 1 2 75207 218 0.00 2019-07-19 14:23:55 2019-07-19 14:24:36 t 1 2 75208 288 0.00 2019-07-19 14:38:31 2019-07-19 14:39:39 t 1 2 75210 288 0.00 2019-07-19 14:53:22 2019-07-19 14:54:26 t 1 2 75213 288 0.00 2019-07-19 14:58:17 2019-07-19 14:59:20 t 1 2 75216 288 0.00 2019-07-19 15:03:15 2019-07-19 15:04:21 t 1 2 75219 288 0.00 2019-07-19 15:08:27 2019-07-19 15:09:31 t 1 2 75221 213 0.00 2019-07-19 15:15:15 2019-07-19 15:16:21 t 1 2 75224 288 0.00 2019-07-19 15:19:40 2019-07-19 15:20:45 t 1 2 75225 288 0.00 2019-07-19 15:23:16 2019-07-19 15:24:21 t 1 2 75226 288 0.00 2019-07-19 15:27:08 2019-07-19 15:28:12 t 1 2 75230 288 0.00 2019-07-19 15:40:19 2019-07-19 15:41:03 t 1 2 75231 288 0.00 2019-07-19 15:59:51 2019-07-19 16:00:59 t 1 2 75234 286 0.00 2019-07-19 13:00:14 2019-07-19 16:25:19 t 1 2 75238 213 0.00 2019-07-19 16:34:03 2019-07-19 16:35:10 t 1 2 75240 217 0.00 2019-07-19 16:38:07 2019-07-19 16:39:10 t 1 2 75243 218 0.00 2019-07-19 16:37:18 2019-07-19 16:47:23 t 1 2 75244 247 0.00 2019-07-19 16:52:13 2019-07-19 16:53:16 t 1 2 75246 288 0.00 2019-07-19 16:53:40 2019-07-19 16:54:45 t 1 2 75248 288 0.00 2019-07-19 17:02:45 2019-07-19 17:03:50 t 1 2 75249 288 0.00 2019-07-19 17:07:18 2019-07-19 17:08:26 t 1 2 75252 217 0.00 2019-07-19 16:25:39 2019-07-19 17:30:44 t 1 2 75253 230 0.00 2019-07-19 16:29:51 2019-07-19 17:34:56 t 1 2 75255 217 0.00 2019-07-19 17:55:08 2019-07-19 17:56:12 t 1 2 75261 288 0.00 2019-07-19 18:22:42 2019-07-19 18:23:46 t 1 2 75267 217 0.00 2019-07-19 18:38:02 2019-07-19 18:39:07 t 1 2 75275 218 0.00 2019-07-19 19:06:38 2019-07-19 19:07:01 t 1 2 75280 212 0.00 2019-07-19 19:33:15 2019-07-19 19:33:49 t 1 2 75281 288 0.00 2019-07-19 19:36:52 2019-07-19 19:37:59 t 1 2 75285 288 0.00 2019-07-19 19:52:16 2019-07-19 19:53:19 t 1 2 81176 320 0.00 2019-08-08 13:02:16 2019-08-08 13:17:21 t 1 2 75292 247 0.00 2019-07-19 20:42:50 2019-07-19 20:45:22 t 1 2 75018 288 0.00 2019-07-18 18:53:06 2019-07-18 18:54:10 t 1 2 75019 288 0.00 2019-07-18 18:58:15 2019-07-18 18:59:19 t 1 2 75022 288 0.00 2019-07-18 19:05:42 2019-07-18 19:06:47 t 1 2 75024 288 0.00 2019-07-18 19:11:53 2019-07-18 19:12:58 t 1 2 75027 213 0.00 2019-07-18 19:17:33 2019-07-18 19:18:37 t 1 2 75030 288 0.00 2019-07-18 19:22:17 2019-07-18 19:23:22 t 1 2 81152 349 0.00 2019-08-08 12:01:36 2019-08-08 12:02:42 t 1 2 75036 234 0.00 2019-07-18 19:40:06 2019-07-18 20:10:11 t 1 2 75042 271 0.00 2019-07-18 18:56:54 2019-07-18 20:31:59 t 1 2 81153 243 0.00 2019-08-08 12:04:13 2019-08-08 12:04:17 t 1 2 75047 213 0.00 2019-07-18 21:52:40 2019-07-18 21:53:45 t 1 2 75051 218 0.00 2019-07-18 21:43:47 2019-07-18 22:08:53 t 1 2 75057 213 0.00 2019-07-18 23:01:22 2019-07-18 23:02:26 t 1 2 75060 212 0.00 2019-07-18 23:10:44 2019-07-18 23:11:07 t 1 2 75064 232 0.00 2019-07-18 21:35:00 2019-07-18 23:45:05 t 1 2 75069 288 0.00 2019-07-19 00:24:54 2019-07-19 00:25:59 t 1 2 75070 218 0.00 2019-07-19 00:39:35 2019-07-19 00:40:40 t 1 2 75074 230 0.00 2019-07-19 00:24:54 2019-07-19 01:44:59 t 1 2 75076 271 0.00 2019-07-19 02:12:51 2019-07-19 02:12:58 t 1 2 75079 263 0.00 2019-07-19 03:05:35 2019-07-19 03:05:49 t 1 2 75080 271 0.00 2019-07-19 03:09:09 2019-07-19 03:09:13 t 1 2 75085 218 0.00 2019-07-19 06:15:09 2019-07-19 06:50:15 t 1 2 75087 288 0.00 2019-07-19 08:20:46 2019-07-19 08:21:54 t 1 2 75088 212 0.00 2019-07-19 08:44:31 2019-07-19 08:45:00 t 1 2 75092 232 0.00 2019-07-19 09:30:54 2019-07-19 09:30:58 t 1 2 75096 212 0.00 2019-07-19 10:19:25 2019-07-19 10:19:43 t 1 2 75097 220 0.00 2019-07-19 09:56:54 2019-07-19 10:21:59 t 1 2 81156 243 0.00 2019-08-08 12:04:32 2019-08-08 12:06:19 t 1 2 75102 220 0.00 2019-07-19 10:32:32 2019-07-19 10:34:08 t 1 1 75103 220 0.00 2019-07-19 10:39:30 2019-07-19 10:39:45 t 1 1 75106 218 0.00 2019-07-19 09:25:59 2019-07-19 10:40:54 t 1 2 75111 220 0.00 2019-07-19 10:43:05 2019-07-19 10:43:32 t 1 1 75113 220 0.00 2019-07-19 10:44:06 2019-07-19 10:44:34 t 1 1 75114 220 0.00 2019-07-19 10:44:44 2019-07-19 10:44:59 t 1 1 75117 220 0.00 2019-07-19 10:45:44 2019-07-19 10:45:59 t 1 1 75118 220 0.00 2019-07-19 10:46:08 2019-07-19 10:46:37 t 1 1 75121 220 0.00 2019-07-19 10:47:47 2019-07-19 10:48:02 t 1 1 75123 220 0.00 2019-07-19 10:48:49 2019-07-19 10:49:04 t 1 1 75126 220 0.00 2019-07-19 10:49:51 2019-07-19 10:50:06 t 1 1 75127 220 0.00 2019-07-19 10:50:15 2019-07-19 10:50:44 t 1 1 75130 220 0.00 2019-07-19 10:51:18 2019-07-19 10:51:45 t 1 1 75137 220 0.00 2019-07-19 10:54:59 2019-07-19 10:55:13 t 1 1 75138 220 0.00 2019-07-19 10:55:23 2019-07-19 10:55:52 t 1 1 75141 220 0.00 2019-07-19 10:56:26 2019-07-19 10:56:53 t 1 1 75143 220 0.00 2019-07-19 10:57:02 2019-07-19 10:57:16 t 1 1 75144 220 0.00 2019-07-19 10:57:26 2019-07-19 10:57:54 t 1 1 75146 220 0.00 2019-07-19 10:58:29 2019-07-19 10:58:56 t 1 1 75155 220 0.00 2019-07-19 11:03:13 2019-07-19 11:03:28 t 1 1 75157 220 0.00 2019-07-19 11:04:15 2019-07-19 11:04:31 t 1 1 75158 220 0.00 2019-07-19 11:00:25 2019-07-19 11:10:30 t 1 2 75160 212 0.00 2019-07-19 11:17:05 2019-07-19 11:17:27 t 1 2 75164 220 0.00 2019-07-19 11:23:15 2019-07-19 11:23:30 t 1 1 75166 220 0.00 2019-07-19 11:24:17 2019-07-19 11:24:32 t 1 1 75168 220 0.00 2019-07-19 11:25:18 2019-07-19 11:25:33 t 1 1 75169 220 0.00 2019-07-19 11:25:42 2019-07-19 11:26:11 t 1 1 75180 232 0.00 2019-07-19 09:31:02 2019-07-19 11:46:08 t 1 2 75181 212 0.00 2019-07-19 11:48:38 2019-07-19 11:49:04 t 1 2 75183 217 0.00 2019-07-19 11:01:23 2019-07-19 11:56:28 t 1 2 75187 220 0.00 2019-07-19 12:02:13 2019-07-19 12:13:33 t 1 1 75198 217 0.00 2019-07-19 13:29:02 2019-07-19 13:29:06 t 1 2 75203 213 0.00 2019-07-19 14:04:45 2019-07-19 14:04:48 t 1 2 75204 263 0.00 2019-07-19 14:10:08 2019-07-19 14:11:11 t 1 2 75205 263 0.00 2019-07-19 14:11:29 2019-07-19 14:12:28 t 1 2 75212 288 0.00 2019-07-19 14:56:37 2019-07-19 14:57:44 t 1 2 75218 288 0.00 2019-07-19 15:06:43 2019-07-19 15:07:47 t 1 2 75220 288 0.00 2019-07-19 15:15:03 2019-07-19 15:16:07 t 1 2 75223 288 0.00 2019-07-19 15:18:20 2019-07-19 15:19:23 t 1 2 75227 288 0.00 2019-07-19 15:28:52 2019-07-19 15:29:56 t 1 2 75229 212 0.00 2019-07-19 15:33:08 2019-07-19 15:33:40 t 1 2 81169 324 0.00 2019-08-08 12:55:45 2019-08-08 12:57:35 t 1 2 75235 213 0.00 2019-07-19 16:25:52 2019-07-19 16:26:58 t 1 2 75236 213 0.00 2019-07-19 16:27:21 2019-07-19 16:28:24 t 1 2 75237 212 0.00 2019-07-19 16:32:29 2019-07-19 16:32:47 t 1 2 75239 217 0.00 2019-07-19 16:34:44 2019-07-19 16:35:50 t 1 2 75241 217 0.00 2019-07-19 16:41:18 2019-07-19 16:42:23 t 1 2 75247 288 0.00 2019-07-19 16:57:13 2019-07-19 16:58:16 t 1 2 75250 288 0.00 2019-07-19 17:14:24 2019-07-19 17:15:29 t 1 2 75254 288 0.00 2019-07-19 17:46:16 2019-07-19 17:47:20 t 1 2 75256 286 0.00 2019-07-19 17:42:30 2019-07-19 17:57:35 t 1 2 75263 286 0.00 2019-07-19 18:17:57 2019-07-19 18:28:02 t 1 2 75269 217 0.00 2019-07-19 18:41:30 2019-07-19 18:42:37 t 1 2 75271 217 0.00 2019-07-19 18:46:31 2019-07-19 18:47:36 t 1 2 75272 217 0.00 2019-07-19 18:49:06 2019-07-19 18:50:13 t 1 2 81174 324 0.00 2019-08-08 13:06:10 2019-08-08 13:16:15 t 1 2 75277 247 0.00 2019-07-19 19:18:15 2019-07-19 19:19:33 t 1 2 75278 288 0.00 2019-07-19 19:30:57 2019-07-19 19:31:43 t 1 2 75279 212 0.00 2019-07-19 19:32:48 2019-07-19 19:32:56 t 1 2 75282 203 0.00 2019-07-19 19:39:21 2019-07-19 19:40:24 t 1 2 75283 232 0.00 2019-07-19 15:50:02 2019-07-19 19:45:07 t 1 2 75284 272 0.00 2019-07-19 19:48:31 2019-07-19 19:51:27 t 1 2 81177 220 0.00 2019-08-08 12:43:20 2019-08-08 13:19:51 t 1 1 75295 212 0.00 2019-07-19 22:04:33 2019-07-19 22:05:33 t 1 2 75297 234 0.00 2019-07-19 22:11:33 2019-07-19 22:17:47 t 1 2 75299 213 0.00 2019-07-19 22:26:27 2019-07-19 22:27:30 t 1 2 75307 247 0.00 2019-07-19 23:06:12 2019-07-19 23:07:32 t 1 2 81178 346 0.00 2019-08-08 12:04:57 2019-08-08 13:25:03 t 1 2 75309 213 0.00 2019-07-19 23:24:00 2019-07-19 23:25:04 t 1 2 75321 265 0.00 2019-07-20 00:38:03 2019-07-20 00:39:05 t 1 2 75322 217 0.00 2019-07-19 22:56:25 2019-07-20 00:53:01 t 1 2 75323 212 0.00 2019-07-20 01:04:10 2019-07-20 01:05:02 t 1 2 75324 232 0.00 2019-07-19 22:03:33 2019-07-20 01:23:38 t 1 2 75327 230 0.00 2019-07-20 00:39:12 2019-07-20 01:34:17 t 1 2 75332 218 0.00 2019-07-20 07:21:58 2019-07-20 07:32:03 t 1 2 75334 288 0.00 2019-07-20 07:38:24 2019-07-20 07:39:28 t 1 2 75337 212 0.00 2019-07-20 07:56:07 2019-07-20 07:57:05 t 1 2 75338 218 0.00 2019-07-20 08:10:07 2019-07-20 08:20:13 t 1 2 75341 217 0.00 2019-07-20 08:39:08 2019-07-20 08:40:36 t 1 2 75078 271 0.00 2019-07-19 02:43:14 2019-07-19 02:43:21 t 1 2 75081 271 0.00 2019-07-19 02:43:35 2019-07-19 03:13:41 t 1 2 75086 288 0.00 2019-07-19 08:12:11 2019-07-19 08:13:16 t 1 2 75089 269 0.00 2019-07-19 08:57:28 2019-07-19 09:13:50 t 1 2 75091 212 0.00 2019-07-19 09:20:49 2019-07-19 09:21:07 t 1 2 75093 286 0.00 2019-07-19 09:25:39 2019-07-19 09:40:44 t 1 2 81154 304 0.00 2019-08-08 12:02:14 2019-08-08 12:04:19 t 1 2 75098 236 0.00 2019-07-19 09:54:49 2019-07-19 10:24:54 t 1 2 75104 220 0.00 2019-07-19 10:39:55 2019-07-19 10:40:28 t 1 1 75105 220 0.00 2019-07-19 10:40:37 2019-07-19 10:40:52 t 1 1 75107 220 0.00 2019-07-19 10:41:01 2019-07-19 10:41:29 t 1 1 75108 220 0.00 2019-07-19 10:41:39 2019-07-19 10:41:53 t 1 1 75115 220 0.00 2019-07-19 10:45:08 2019-07-19 10:45:34 t 1 1 75124 272 0.00 2019-07-19 10:39:20 2019-07-19 10:49:25 t 1 2 75128 220 0.00 2019-07-19 10:50:53 2019-07-19 10:51:09 t 1 1 75129 218 0.00 2019-07-19 10:36:33 2019-07-19 10:51:38 t 1 2 75131 220 0.00 2019-07-19 10:51:55 2019-07-19 10:52:10 t 1 1 75132 220 0.00 2019-07-19 10:52:20 2019-07-19 10:52:45 t 1 1 75134 220 0.00 2019-07-19 10:53:19 2019-07-19 10:53:47 t 1 1 75139 220 0.00 2019-07-19 10:56:01 2019-07-19 10:56:17 t 1 1 75140 234 0.00 2019-07-19 10:46:44 2019-07-19 10:56:49 t 1 2 75145 220 0.00 2019-07-19 10:58:03 2019-07-19 10:58:21 t 1 1 75147 220 0.00 2019-07-19 10:59:06 2019-07-19 10:59:21 t 1 1 75148 220 0.00 2019-07-19 10:59:30 2019-07-19 10:59:58 t 1 1 75150 220 0.00 2019-07-19 11:00:32 2019-07-19 11:01:00 t 1 1 75151 220 0.00 2019-07-19 11:01:10 2019-07-19 11:01:24 t 1 1 75152 220 0.00 2019-07-19 11:01:34 2019-07-19 11:02:02 t 1 1 75161 220 0.00 2019-07-19 11:17:22 2019-07-19 11:22:04 t 1 1 75170 220 0.00 2019-07-19 11:26:20 2019-07-19 11:26:35 t 1 1 75171 220 0.00 2019-07-19 11:26:44 2019-07-19 11:27:13 t 1 1 75174 220 0.00 2019-07-19 11:28:24 2019-07-19 11:28:39 t 1 1 75177 288 0.00 2019-07-19 11:35:02 2019-07-19 11:36:07 t 1 2 75182 220 0.00 2019-07-19 11:39:06 2019-07-19 11:49:54 t 1 1 75184 220 0.00 2019-07-19 11:49:54 2019-07-19 12:02:13 t 1 1 75185 288 0.00 2019-07-19 12:06:17 2019-07-19 12:07:23 t 1 2 75186 288 0.00 2019-07-19 12:12:17 2019-07-19 12:13:22 t 1 2 75189 288 0.00 2019-07-19 12:15:28 2019-07-19 12:16:33 t 1 2 75190 288 0.00 2019-07-19 12:18:10 2019-07-19 12:19:14 t 1 2 75192 288 0.00 2019-07-19 12:21:03 2019-07-19 12:22:07 t 1 2 75194 212 0.00 2019-07-19 12:52:52 2019-07-19 12:53:18 t 1 2 75196 217 0.00 2019-07-19 12:52:29 2019-07-19 13:07:34 t 1 2 75197 288 0.00 2019-07-19 13:14:19 2019-07-19 13:15:25 t 1 2 75199 288 0.00 2019-07-19 13:37:52 2019-07-19 13:38:58 t 1 2 75200 288 0.00 2019-07-19 13:39:22 2019-07-19 13:40:28 t 1 2 75201 212 0.00 2019-07-19 13:42:42 2019-07-19 13:43:11 t 1 2 75202 288 0.00 2019-07-19 13:42:39 2019-07-19 13:43:44 t 1 2 75206 247 0.00 2019-07-19 14:17:57 2019-07-19 14:19:14 t 1 2 75209 288 0.00 2019-07-19 14:48:13 2019-07-19 14:49:19 t 1 2 75211 288 0.00 2019-07-19 14:55:00 2019-07-19 14:56:04 t 1 2 75214 288 0.00 2019-07-19 14:59:52 2019-07-19 15:01:00 t 1 2 75215 288 0.00 2019-07-19 15:01:27 2019-07-19 15:02:35 t 1 2 75217 288 0.00 2019-07-19 15:04:48 2019-07-19 15:05:53 t 1 2 75222 288 0.00 2019-07-19 15:16:53 2019-07-19 15:17:57 t 1 2 75228 288 0.00 2019-07-19 15:31:42 2019-07-19 15:32:45 t 1 2 75233 288 0.00 2019-07-19 16:22:47 2019-07-19 16:23:50 t 1 2 75242 212 0.00 2019-07-19 16:45:30 2019-07-19 16:45:50 t 1 2 75245 286 0.00 2019-07-19 16:43:41 2019-07-19 16:53:37 t 1 2 75251 217 0.00 2019-07-19 17:28:55 2019-07-19 17:29:58 t 1 2 75257 212 0.00 2019-07-19 18:01:37 2019-07-19 18:02:32 t 1 2 75258 217 0.00 2019-07-19 18:06:58 2019-07-19 18:08:01 t 1 2 81162 288 0.00 2019-08-08 12:20:10 2019-08-08 12:21:16 t 1 2 75260 217 0.00 2019-07-19 18:11:41 2019-07-19 18:12:46 t 1 2 75262 288 0.00 2019-07-19 18:24:35 2019-07-19 18:25:39 t 1 2 75264 212 0.00 2019-07-19 18:30:06 2019-07-19 18:30:23 t 1 2 75265 217 0.00 2019-07-19 18:34:38 2019-07-19 18:35:41 t 1 2 75266 217 0.00 2019-07-19 18:36:25 2019-07-19 18:37:32 t 1 2 75268 217 0.00 2019-07-19 18:39:45 2019-07-19 18:40:52 t 1 2 75270 217 0.00 2019-07-19 18:44:20 2019-07-19 18:45:28 t 1 2 75274 212 0.00 2019-07-19 19:03:38 2019-07-19 19:04:01 t 1 2 75276 288 0.00 2019-07-19 19:09:06 2019-07-19 19:10:11 t 1 2 75287 286 0.00 2019-07-19 19:27:07 2019-07-19 19:57:12 t 1 2 81170 306 0.00 2019-08-08 12:59:50 2019-08-08 13:00:54 t 1 2 75290 212 0.00 2019-07-19 20:15:29 2019-07-19 20:15:53 t 1 2 75291 212 0.00 2019-07-19 20:35:45 2019-07-19 20:36:02 t 1 2 75304 286 0.00 2019-07-19 22:30:51 2019-07-19 22:53:20 t 1 2 75305 213 0.00 2019-07-19 22:54:13 2019-07-19 22:55:18 t 1 2 75311 217 0.00 2019-07-19 23:07:05 2019-07-19 23:37:10 t 1 2 75313 288 0.00 2019-07-19 23:52:26 2019-07-19 23:53:31 t 1 2 75315 230 0.00 2019-07-19 23:17:21 2019-07-20 00:06:34 t 1 2 75316 286 0.00 2019-07-19 23:25:28 2019-07-20 00:10:33 t 1 2 75320 265 0.00 2019-07-20 00:36:38 2019-07-20 00:37:47 t 1 2 81172 217 0.00 2019-08-08 13:09:40 2019-08-08 13:09:40 f 1 2 75326 217 0.00 2019-07-20 01:02:25 2019-07-20 01:27:30 t 1 2 75328 263 0.00 2019-07-20 01:58:21 2019-07-20 01:59:29 t 1 2 75331 272 0.00 2019-07-20 00:22:37 2019-07-20 03:58:32 t 1 2 75333 217 0.00 2019-07-20 07:30:28 2019-07-20 07:34:02 t 1 2 75336 288 0.00 2019-07-20 07:53:24 2019-07-20 07:54:30 t 1 2 75340 286 0.00 2019-07-20 08:24:07 2019-07-20 08:39:12 t 1 2 75342 288 0.00 2019-07-20 09:07:24 2019-07-20 09:08:31 t 1 2 75343 288 0.00 2019-07-20 09:18:38 2019-07-20 09:19:40 t 1 2 75346 217 0.00 2019-07-20 08:45:26 2019-07-20 09:40:31 t 1 2 75350 288 0.00 2019-07-20 10:05:35 2019-07-20 10:06:44 t 1 2 75351 213 0.00 2019-07-20 10:17:12 2019-07-20 10:18:17 t 1 2 75353 218 0.00 2019-07-20 10:24:28 2019-07-20 10:34:33 t 1 2 75355 290 0.00 2019-07-20 10:37:36 2019-07-20 10:38:59 t 1 2 75358 290 0.00 2019-07-20 10:41:13 2019-07-20 10:51:18 t 1 2 75361 234 0.00 2019-07-20 11:17:24 2019-07-20 11:42:29 t 1 2 75365 272 0.00 2019-07-20 08:59:01 2019-07-20 11:58:08 t 1 2 75368 288 0.00 2019-07-20 12:07:16 2019-07-20 12:08:20 t 1 2 75381 288 0.00 2019-07-20 13:10:58 2019-07-20 13:12:03 t 1 2 75386 271 0.00 2019-07-20 10:57:52 2019-07-20 13:26:54 t 1 2 75388 213 0.00 2019-07-20 13:46:06 2019-07-20 13:47:14 t 1 2 75389 286 0.00 2019-07-20 13:37:00 2019-07-20 13:57:05 t 1 2 75391 234 0.00 2019-07-20 13:51:07 2019-07-20 14:12:46 t 1 2 75395 212 0.00 2019-07-20 14:45:53 2019-07-20 14:46:14 t 1 2 75396 290 0.00 2019-07-20 14:49:42 2019-07-20 14:50:47 t 1 2 75397 234 0.00 2019-07-20 14:48:12 2019-07-20 14:55:12 t 1 2 75293 218 0.00 2019-07-19 20:42:00 2019-07-19 20:52:05 t 1 2 75294 286 0.00 2019-07-19 20:16:18 2019-07-19 20:56:23 t 1 2 75296 218 0.00 2019-07-19 22:04:19 2019-07-19 22:14:24 t 1 2 75298 213 0.00 2019-07-19 22:23:26 2019-07-19 22:24:29 t 1 2 75300 212 0.00 2019-07-19 22:36:32 2019-07-19 22:36:52 t 1 2 75301 218 0.00 2019-07-19 22:28:29 2019-07-19 22:38:34 t 1 2 75302 247 0.00 2019-07-19 22:37:35 2019-07-19 22:38:59 t 1 2 75303 234 0.00 2019-07-19 22:47:11 2019-07-19 22:50:11 t 1 2 75306 286 0.00 2019-07-19 22:53:25 2019-07-19 23:03:30 t 1 2 75310 234 0.00 2019-07-19 23:14:15 2019-07-19 23:29:20 t 1 2 81158 346 0.00 2019-08-08 11:59:17 2019-08-08 12:09:22 t 1 2 75314 213 0.00 2019-07-20 00:05:09 2019-07-20 00:06:12 t 1 2 75317 218 0.00 2019-07-20 00:12:58 2019-07-20 00:13:19 t 1 2 75318 220 0.00 2019-07-20 00:19:30 2019-07-20 00:21:24 t 1 2 75319 265 0.00 2019-07-20 00:35:16 2019-07-20 00:36:19 t 1 2 75329 263 0.00 2019-07-20 02:03:07 2019-07-20 02:04:15 t 1 2 75330 263 0.00 2019-07-20 02:07:10 2019-07-20 02:08:17 t 1 2 75335 212 0.00 2019-07-20 07:41:58 2019-07-20 07:42:34 t 1 2 75339 247 0.00 2019-07-20 08:25:06 2019-07-20 08:27:34 t 1 2 75344 212 0.00 2019-07-20 09:22:00 2019-07-20 09:22:20 t 1 2 75352 288 0.00 2019-07-20 10:30:49 2019-07-20 10:31:56 t 1 2 75356 247 0.00 2019-07-20 10:46:40 2019-07-20 10:47:48 t 1 2 75359 288 0.00 2019-07-20 11:07:22 2019-07-20 11:08:26 t 1 2 75360 234 0.00 2019-07-20 10:59:30 2019-07-20 11:16:40 t 1 2 75362 213 0.00 2019-07-20 11:51:40 2019-07-20 11:52:43 t 1 2 75363 288 0.00 2019-07-20 11:54:46 2019-07-20 11:55:50 t 1 2 75366 247 0.00 2019-07-20 12:00:17 2019-07-20 12:00:38 t 1 2 75369 243 0.00 2019-07-20 11:44:55 2019-07-20 12:10:35 t 1 2 75373 288 0.00 2019-07-20 12:44:42 2019-07-20 12:45:48 t 1 2 75374 232 0.00 2019-07-20 09:08:40 2019-07-20 12:48:45 t 1 2 75376 220 0.00 2019-07-20 12:18:56 2019-07-20 12:54:01 t 1 2 75382 220 0.00 2019-07-20 13:09:12 2019-07-20 13:12:30 t 1 2 75384 272 0.00 2019-07-20 12:49:48 2019-07-20 13:14:53 t 1 2 81163 212 0.00 2019-08-08 12:21:41 2019-08-08 12:22:04 t 1 2 75398 218 0.00 2019-07-20 15:04:26 2019-07-20 15:14:31 t 1 2 75399 263 0.00 2019-07-20 15:18:55 2019-07-20 15:19:57 t 1 2 75401 212 0.00 2019-07-20 15:37:57 2019-07-20 15:38:45 t 1 2 81164 324 0.00 2019-08-08 12:13:49 2019-08-08 12:23:54 t 1 2 75404 288 0.00 2019-07-20 15:53:19 2019-07-20 15:54:22 t 1 2 75407 206 0.00 2019-07-20 16:01:44 2019-07-20 16:02:51 t 1 2 75409 206 0.00 2019-07-20 16:03:36 2019-07-20 16:04:41 t 1 2 75412 206 0.00 2019-07-20 16:06:34 2019-07-20 16:07:38 t 1 2 75413 288 0.00 2019-07-20 16:10:30 2019-07-20 16:11:34 t 1 2 75416 234 0.00 2019-07-20 16:14:22 2019-07-20 16:21:24 t 1 2 75419 288 0.00 2019-07-20 16:33:25 2019-07-20 16:34:31 t 1 2 75421 288 0.00 2019-07-20 16:36:28 2019-07-20 16:37:32 t 1 2 75424 234 0.00 2019-07-20 16:24:39 2019-07-20 16:44:44 t 1 2 75427 212 0.00 2019-07-20 17:03:05 2019-07-20 17:04:07 t 1 2 75432 288 0.00 2019-07-20 17:11:02 2019-07-20 17:12:07 t 1 2 75441 217 0.00 2019-07-20 18:43:15 2019-07-20 18:45:02 t 1 2 75444 288 0.00 2019-07-20 18:55:32 2019-07-20 18:56:38 t 1 2 75448 288 0.00 2019-07-20 19:00:19 2019-07-20 19:01:24 t 1 2 75454 288 0.00 2019-07-20 19:24:08 2019-07-20 19:25:13 t 1 2 75456 288 0.00 2019-07-20 19:45:22 2019-07-20 19:46:28 t 1 2 75462 292 0.00 2019-07-20 20:52:17 2019-07-20 20:53:24 t 1 2 75468 212 0.00 2019-07-20 21:17:27 2019-07-20 21:18:14 t 1 2 75476 288 0.00 2019-07-20 21:48:25 2019-07-20 21:49:31 t 1 2 75480 288 0.00 2019-07-20 22:28:17 2019-07-20 22:29:21 t 1 2 75485 288 0.00 2019-07-20 23:04:26 2019-07-20 23:05:31 t 1 2 75494 247 0.00 2019-07-20 23:04:33 2019-07-20 23:43:56 t 1 2 75495 247 0.00 2019-07-20 23:48:08 2019-07-20 23:52:20 t 1 2 75500 247 0.00 2019-07-21 00:20:10 2019-07-21 00:20:40 t 1 2 75502 212 0.00 2019-07-21 00:36:25 2019-07-21 00:36:59 t 1 2 75504 232 0.00 2019-07-21 00:23:32 2019-07-21 00:40:21 t 1 2 75505 236 0.00 2019-07-20 22:57:11 2019-07-21 00:42:16 t 1 2 75508 234 0.00 2019-07-21 00:42:29 2019-07-21 00:57:35 t 1 2 75509 234 0.00 2019-07-21 01:15:02 2019-07-21 01:35:08 t 1 2 75511 218 0.00 2019-07-21 01:53:28 2019-07-21 02:03:33 t 1 2 75512 217 0.00 2019-07-21 04:08:51 2019-07-21 04:38:57 t 1 2 75513 202 0.00 2019-07-21 06:41:33 2019-07-21 06:42:41 t 1 2 81165 324 0.00 2019-08-08 12:43:26 2019-08-08 12:44:26 t 1 2 75516 288 0.00 2019-07-21 07:13:11 2019-07-21 07:14:15 t 1 2 75524 217 0.00 2019-07-21 07:44:10 2019-07-21 08:04:15 t 1 2 75526 217 0.00 2019-07-21 07:55:24 2019-07-21 08:10:29 t 1 2 75527 212 0.00 2019-07-21 08:10:32 2019-07-21 08:11:17 t 1 2 75528 217 0.00 2019-07-21 08:03:35 2019-07-21 08:23:40 t 1 2 75529 217 0.00 2019-07-21 08:14:59 2019-07-21 08:35:05 t 1 2 75532 217 0.00 2019-07-21 08:50:43 2019-07-21 08:53:56 t 1 2 75536 212 0.00 2019-07-21 09:00:30 2019-07-21 09:00:55 t 1 2 75540 217 0.00 2019-07-21 08:58:54 2019-07-21 09:13:59 t 1 2 75544 212 0.00 2019-07-21 09:45:41 2019-07-21 09:46:05 t 1 2 75550 288 0.00 2019-07-21 10:12:04 2019-07-21 10:13:08 t 1 2 75553 288 0.00 2019-07-21 10:21:19 2019-07-21 10:22:16 t 1 2 75554 288 0.00 2019-07-21 10:25:00 2019-07-21 10:26:03 t 1 2 75557 288 0.00 2019-07-21 10:29:03 2019-07-21 10:30:06 t 1 2 75561 247 0.00 2019-07-21 11:02:52 2019-07-21 11:03:15 t 1 2 75562 288 0.00 2019-07-21 11:02:54 2019-07-21 11:04:01 t 1 2 75565 288 0.00 2019-07-21 11:25:57 2019-07-21 11:27:02 t 1 2 75568 292 0.00 2019-07-21 11:55:30 2019-07-21 11:56:34 t 1 2 75570 212 0.00 2019-07-21 11:43:57 2019-07-21 11:59:16 t 1 2 75577 217 0.00 2019-07-21 12:14:43 2019-07-21 12:14:43 f 1 2 75581 217 0.00 2019-07-21 12:15:45 2019-07-21 12:15:45 f 1 2 75582 217 0.00 2019-07-21 12:16:16 2019-07-21 12:16:16 f 1 2 75585 217 0.00 2019-07-21 12:16:47 2019-07-21 12:16:47 f 1 2 75586 217 0.00 2019-07-21 12:17:18 2019-07-21 12:17:18 f 1 2 75589 217 0.00 2019-07-21 12:18:20 2019-07-21 12:18:20 f 1 2 75591 217 0.00 2019-07-21 12:19:23 2019-07-21 12:19:23 f 1 2 75593 288 0.00 2019-07-21 12:24:08 2019-07-21 12:25:16 t 1 2 75601 247 0.00 2019-07-21 12:49:19 2019-07-21 12:51:28 t 1 2 75606 230 0.00 2019-07-21 13:09:56 2019-07-21 13:11:14 t 1 2 75610 212 0.00 2019-07-21 13:30:05 2019-07-21 13:36:55 t 1 2 75612 243 0.00 2019-07-21 13:33:47 2019-07-21 13:37:35 t 1 2 81167 306 0.00 2019-08-08 12:56:24 2019-08-08 12:57:28 t 1 2 75615 247 0.00 2019-07-21 13:51:29 2019-07-21 13:53:22 t 1 2 75616 220 0.00 2019-07-21 13:40:33 2019-07-21 13:54:28 t 1 2 75619 218 0.00 2019-07-21 14:15:52 2019-07-21 14:25:30 t 1 2 75623 212 0.00 2019-07-21 14:56:48 2019-07-21 14:57:17 t 1 2 75345 212 0.00 2019-07-20 09:35:19 2019-07-20 09:35:42 t 1 2 75347 286 0.00 2019-07-20 09:36:09 2019-07-20 09:46:15 t 1 2 75348 212 0.00 2019-07-20 09:46:38 2019-07-20 09:47:02 t 1 2 75349 212 0.00 2019-07-20 10:02:40 2019-07-20 10:03:07 t 1 2 75354 290 0.00 2019-07-20 10:33:45 2019-07-20 10:34:53 t 1 2 75357 288 0.00 2019-07-20 10:48:33 2019-07-20 10:49:36 t 1 2 75364 288 0.00 2019-07-20 11:56:49 2019-07-20 11:57:55 t 1 2 75367 213 0.00 2019-07-20 12:00:10 2019-07-20 12:01:14 t 1 2 75370 269 0.00 2019-07-20 12:22:22 2019-07-20 12:37:02 t 1 2 75371 247 0.00 2019-07-20 12:37:33 2019-07-20 12:38:03 t 1 2 75372 212 0.00 2019-07-20 12:39:43 2019-07-20 12:41:14 t 1 2 75375 234 0.00 2019-07-20 12:19:00 2019-07-20 12:49:06 t 1 2 75377 218 0.00 2019-07-20 12:47:01 2019-07-20 12:57:06 t 1 2 75378 234 0.00 2019-07-20 12:59:56 2019-07-20 13:03:02 t 1 2 75379 288 0.00 2019-07-20 13:08:17 2019-07-20 13:09:21 t 1 2 75380 213 0.00 2019-07-20 13:11:01 2019-07-20 13:12:02 t 1 2 75383 286 0.00 2019-07-20 13:03:45 2019-07-20 13:13:50 t 1 2 75385 247 0.00 2019-07-20 13:15:56 2019-07-20 13:17:20 t 1 2 75390 286 0.00 2019-07-20 13:54:45 2019-07-20 14:04:50 t 1 2 75392 247 0.00 2019-07-20 14:28:46 2019-07-20 14:30:54 t 1 2 75393 234 0.00 2019-07-20 14:13:04 2019-07-20 14:33:09 t 1 2 75394 230 0.00 2019-07-20 13:43:44 2019-07-20 14:43:49 t 1 2 75400 263 0.00 2019-07-20 15:26:44 2019-07-20 15:28:41 t 1 2 75403 288 0.00 2019-07-20 15:47:42 2019-07-20 15:48:50 t 1 2 81171 217 0.00 2019-08-08 13:09:25 2019-08-08 13:09:25 f 1 2 75408 286 0.00 2019-07-20 15:52:55 2019-07-20 16:03:00 t 1 2 75410 206 0.00 2019-07-20 16:05:12 2019-07-20 16:06:16 t 1 2 75411 288 0.00 2019-07-20 16:05:46 2019-07-20 16:06:51 t 1 2 75414 288 0.00 2019-07-20 16:17:41 2019-07-20 16:18:45 t 1 2 75415 213 0.00 2019-07-20 16:19:58 2019-07-20 16:20:15 t 1 2 75417 288 0.00 2019-07-20 16:22:45 2019-07-20 16:23:48 t 1 2 75422 288 0.00 2019-07-20 16:40:29 2019-07-20 16:41:34 t 1 2 75423 288 0.00 2019-07-20 16:43:19 2019-07-20 16:44:24 t 1 2 75426 288 0.00 2019-07-20 16:58:46 2019-07-20 16:59:50 t 1 2 75430 288 0.00 2019-07-20 17:05:08 2019-07-20 17:06:16 t 1 2 75442 212 0.00 2019-07-20 18:46:18 2019-07-20 18:46:43 t 1 2 75443 213 0.00 2019-07-20 18:48:14 2019-07-20 18:49:16 t 1 2 75445 218 0.00 2019-07-20 18:46:43 2019-07-20 18:56:49 t 1 2 75446 234 0.00 2019-07-20 18:43:26 2019-07-20 18:58:32 t 1 2 75449 288 0.00 2019-07-20 19:04:01 2019-07-20 19:05:04 t 1 2 81200 220 0.00 2019-08-08 14:26:08 2019-08-08 14:26:16 t 1 1 75453 288 0.00 2019-07-20 19:22:22 2019-07-20 19:23:28 t 1 2 75458 269 0.00 2019-07-20 20:00:00 2019-07-20 20:07:23 t 1 2 75460 247 0.00 2019-07-20 20:20:15 2019-07-20 20:20:48 t 1 2 75463 292 0.00 2019-07-20 20:58:47 2019-07-20 20:59:29 t 1 2 75465 288 0.00 2019-07-20 21:05:16 2019-07-20 21:06:19 t 1 2 75466 247 0.00 2019-07-20 21:08:03 2019-07-20 21:09:02 t 1 2 75467 288 0.00 2019-07-20 21:09:19 2019-07-20 21:10:22 t 1 2 75470 212 0.00 2019-07-20 21:28:38 2019-07-20 21:29:14 t 1 2 75471 288 0.00 2019-07-20 21:33:35 2019-07-20 21:34:41 t 1 2 75472 288 0.00 2019-07-20 21:34:59 2019-07-20 21:36:03 t 1 2 75474 288 0.00 2019-07-20 21:40:26 2019-07-20 21:41:28 t 1 2 75479 213 0.00 2019-07-20 22:20:58 2019-07-20 22:22:03 t 1 2 75481 234 0.00 2019-07-20 21:57:47 2019-07-20 22:32:52 t 1 2 75483 236 0.00 2019-07-20 22:30:33 2019-07-20 22:40:39 t 1 2 75488 220 0.00 2019-07-20 22:12:14 2019-07-20 23:12:19 t 1 2 75489 212 0.00 2019-07-20 23:17:36 2019-07-20 23:18:05 t 1 2 75491 232 0.00 2019-07-20 22:47:52 2019-07-20 23:32:58 t 1 2 75492 218 0.00 2019-07-20 23:25:56 2019-07-20 23:36:02 t 1 2 75510 271 0.00 2019-07-20 23:34:24 2019-07-21 01:59:29 t 1 2 75514 202 0.00 2019-07-21 06:43:04 2019-07-21 06:44:10 t 1 2 75517 288 0.00 2019-07-21 07:14:56 2019-07-21 07:16:00 t 1 2 81209 294 0.00 2019-08-08 13:55:18 2019-08-08 14:56:36 t 1 2 75520 243 0.00 2019-07-21 07:23:20 2019-07-21 07:27:08 t 1 2 75521 217 0.00 2019-07-21 07:29:32 2019-07-21 07:34:01 t 1 2 75523 292 0.00 2019-07-21 08:00:38 2019-07-21 08:01:43 t 1 2 75530 272 0.00 2019-07-21 08:09:22 2019-07-21 08:44:28 t 1 2 75533 288 0.00 2019-07-21 08:53:09 2019-07-21 08:54:15 t 1 2 75541 286 0.00 2019-07-21 08:57:15 2019-07-21 09:17:21 t 1 2 75542 294 0.00 2019-07-21 09:29:40 2019-07-21 09:30:53 t 1 2 75543 294 0.00 2019-07-21 09:32:39 2019-07-21 09:37:18 t 1 2 75547 288 0.00 2019-07-21 09:54:14 2019-07-21 09:55:20 t 1 2 75551 288 0.00 2019-07-21 10:16:00 2019-07-21 10:17:05 t 1 2 75552 288 0.00 2019-07-21 10:17:42 2019-07-21 10:18:48 t 1 2 75555 212 0.00 2019-07-21 10:25:41 2019-07-21 10:26:09 t 1 2 75559 290 0.00 2019-07-21 10:17:59 2019-07-21 10:58:05 t 1 2 75560 218 0.00 2019-07-21 10:57:44 2019-07-21 10:58:45 t 1 2 75564 234 0.00 2019-07-21 11:02:07 2019-07-21 11:22:12 t 1 2 75567 243 0.00 2019-07-21 11:31:15 2019-07-21 11:35:32 t 1 2 75573 217 0.00 2019-07-21 12:13:09 2019-07-21 12:13:09 f 1 2 75575 217 0.00 2019-07-21 12:14:12 2019-07-21 12:14:12 f 1 2 75576 217 0.00 2019-07-21 12:14:43 2019-07-21 12:14:43 f 1 2 75579 217 0.00 2019-07-21 12:15:14 2019-07-21 12:15:14 f 1 2 75583 217 0.00 2019-07-21 12:16:16 2019-07-21 12:16:16 f 1 2 75584 217 0.00 2019-07-21 12:16:47 2019-07-21 12:16:47 f 1 2 75587 217 0.00 2019-07-21 12:17:18 2019-07-21 12:17:18 f 1 2 75588 217 0.00 2019-07-21 12:17:49 2019-07-21 12:17:49 f 1 2 75590 217 0.00 2019-07-21 12:18:51 2019-07-21 12:18:51 f 1 2 75595 286 0.00 2019-07-21 12:35:29 2019-07-21 12:37:58 t 1 2 75596 288 0.00 2019-07-21 12:38:17 2019-07-21 12:39:21 t 1 2 75598 292 0.00 2019-07-21 12:38:48 2019-07-21 12:39:51 t 1 2 75608 296 0.00 2019-07-21 12:54:18 2019-07-21 13:18:18 t 1 2 75617 217 0.00 2019-07-21 13:32:23 2019-07-21 14:07:28 t 1 2 75621 217 0.00 2019-07-21 14:28:10 2019-07-21 14:43:15 t 1 2 75624 217 0.00 2019-07-21 15:03:14 2019-07-21 15:03:18 t 1 2 81210 220 0.00 2019-08-08 14:47:55 2019-08-08 14:57:41 t 1 1 75632 294 0.00 2019-07-21 14:30:44 2019-07-21 15:31:08 t 1 2 75633 217 0.00 2019-07-21 15:03:21 2019-07-21 15:34:20 t 1 2 75635 217 0.00 2019-07-21 15:43:23 2019-07-21 15:43:52 t 1 2 75639 247 0.00 2019-07-21 16:03:51 2019-07-21 16:06:35 t 1 2 75640 234 0.00 2019-07-21 15:43:28 2019-07-21 16:08:34 t 1 2 75641 234 0.00 2019-07-21 16:02:00 2019-07-21 16:12:06 t 1 2 75645 294 0.00 2019-07-21 15:40:01 2019-07-21 16:40:25 t 1 2 75648 217 0.00 2019-07-21 16:56:26 2019-07-21 17:06:32 t 1 2 75651 212 0.00 2019-07-21 17:22:49 2019-07-21 17:23:51 t 1 2 75652 218 0.00 2019-07-21 17:23:42 2019-07-21 17:26:15 t 1 2 75655 247 0.00 2019-07-21 18:02:44 2019-07-21 18:05:18 t 1 2 75406 206 0.00 2019-07-20 16:00:04 2019-07-20 16:01:09 t 1 2 75418 272 0.00 2019-07-20 16:22:50 2019-07-20 16:32:55 t 1 2 75420 272 0.00 2019-07-20 16:24:35 2019-07-20 16:34:40 t 1 2 75425 217 0.00 2019-07-20 10:59:54 2019-07-20 16:50:00 t 1 2 75428 288 0.00 2019-07-20 17:03:31 2019-07-20 17:04:37 t 1 2 75429 272 0.00 2019-07-20 16:45:31 2019-07-20 17:05:36 t 1 2 75431 288 0.00 2019-07-20 17:07:29 2019-07-20 17:08:31 t 1 2 75433 217 0.00 2019-07-20 17:04:47 2019-07-20 17:19:52 t 1 2 75434 288 0.00 2019-07-20 17:20:06 2019-07-20 17:21:08 t 1 2 75435 288 0.00 2019-07-20 17:30:06 2019-07-20 17:31:10 t 1 2 75436 212 0.00 2019-07-20 17:36:36 2019-07-20 17:37:26 t 1 2 75437 288 0.00 2019-07-20 17:38:48 2019-07-20 17:39:51 t 1 2 75438 218 0.00 2019-07-20 15:48:58 2019-07-20 18:09:04 t 1 2 75439 247 0.00 2019-07-20 18:27:34 2019-07-20 18:28:14 t 1 2 75440 232 0.00 2019-07-20 17:23:37 2019-07-20 18:38:42 t 1 2 75447 288 0.00 2019-07-20 18:57:45 2019-07-20 18:58:52 t 1 2 75451 271 0.00 2019-07-20 13:28:39 2019-07-20 19:18:44 t 1 2 75452 288 0.00 2019-07-20 19:18:46 2019-07-20 19:19:50 t 1 2 75455 288 0.00 2019-07-20 19:36:38 2019-07-20 19:37:44 t 1 2 75457 269 0.00 2019-07-20 19:42:01 2019-07-20 19:52:25 t 1 2 75459 212 0.00 2019-07-20 20:15:45 2019-07-20 20:16:19 t 1 2 75461 290 0.00 2019-07-20 20:45:49 2019-07-20 20:46:57 t 1 2 75464 292 0.00 2019-07-20 20:59:49 2019-07-20 21:00:55 t 1 2 75469 288 0.00 2019-07-20 21:23:51 2019-07-20 21:24:57 t 1 2 75473 234 0.00 2019-07-20 21:26:29 2019-07-20 21:36:34 t 1 2 75475 247 0.00 2019-07-20 21:42:36 2019-07-20 21:45:28 t 1 2 75477 218 0.00 2019-07-20 20:32:08 2019-07-20 22:07:13 t 1 2 75478 212 0.00 2019-07-20 22:13:20 2019-07-20 22:13:51 t 1 2 75482 288 0.00 2019-07-20 22:32:31 2019-07-20 22:33:35 t 1 2 75484 292 0.00 2019-07-20 23:01:59 2019-07-20 23:03:06 t 1 2 75486 288 0.00 2019-07-20 23:08:50 2019-07-20 23:09:56 t 1 2 81173 306 0.00 2019-08-08 13:13:26 2019-08-08 13:14:30 t 1 2 75490 288 0.00 2019-07-20 23:10:19 2019-07-20 23:20:25 t 1 2 75493 212 0.00 2019-07-20 23:37:24 2019-07-20 23:38:25 t 1 2 75496 286 0.00 2019-07-20 23:42:57 2019-07-20 23:58:02 t 1 2 75497 217 0.00 2019-07-20 23:45:08 2019-07-21 00:10:14 t 1 2 75498 247 0.00 2019-07-21 00:15:09 2019-07-21 00:16:03 t 1 2 75499 212 0.00 2019-07-21 00:16:56 2019-07-21 00:17:20 t 1 2 75501 212 0.00 2019-07-21 00:22:14 2019-07-21 00:24:59 t 1 2 81175 296 0.00 2019-08-08 13:13:11 2019-08-08 13:16:32 t 1 2 75506 212 0.00 2019-07-21 00:55:56 2019-07-21 00:56:05 t 1 2 75507 212 0.00 2019-07-21 00:56:42 2019-07-21 00:57:34 t 1 2 75519 288 0.00 2019-07-21 07:16:22 2019-07-21 07:17:30 t 1 2 75522 217 0.00 2019-07-21 07:35:01 2019-07-21 07:50:06 t 1 2 75525 288 0.00 2019-07-21 08:07:59 2019-07-21 08:09:03 t 1 2 75531 212 0.00 2019-07-21 08:52:24 2019-07-21 08:52:55 t 1 2 75534 217 0.00 2019-07-21 08:42:07 2019-07-21 08:57:12 t 1 2 75535 232 0.00 2019-07-21 08:09:22 2019-07-21 08:58:18 t 1 2 75537 288 0.00 2019-07-21 09:01:40 2019-07-21 09:02:45 t 1 2 75538 247 0.00 2019-07-21 09:01:28 2019-07-21 09:03:41 t 1 2 75539 288 0.00 2019-07-21 09:04:01 2019-07-21 09:05:09 t 1 2 75545 212 0.00 2019-07-21 09:45:33 2019-07-21 09:47:14 t 1 2 75546 288 0.00 2019-07-21 09:49:42 2019-07-21 09:49:50 t 1 2 75548 243 0.00 2019-07-21 09:58:06 2019-07-21 10:04:20 t 1 2 75549 288 0.00 2019-07-21 10:09:42 2019-07-21 10:10:48 t 1 2 75556 247 0.00 2019-07-21 10:24:18 2019-07-21 10:26:27 t 1 2 75558 288 0.00 2019-07-21 10:54:30 2019-07-21 10:55:36 t 1 2 75563 247 0.00 2019-07-21 11:15:17 2019-07-21 11:16:20 t 1 2 75566 217 0.00 2019-07-21 11:04:44 2019-07-21 11:29:49 t 1 2 75569 288 0.00 2019-07-21 11:56:33 2019-07-21 11:57:36 t 1 2 75571 217 0.00 2019-07-21 12:12:35 2019-07-21 12:12:35 f 1 2 75572 217 0.00 2019-07-21 12:12:38 2019-07-21 12:12:38 f 1 2 75574 217 0.00 2019-07-21 12:13:41 2019-07-21 12:13:41 f 1 2 75578 217 0.00 2019-07-21 12:15:14 2019-07-21 12:15:14 f 1 2 75580 217 0.00 2019-07-21 12:15:45 2019-07-21 12:15:45 f 1 2 75592 247 0.00 2019-07-21 12:23:38 2019-07-21 12:24:51 t 1 2 75594 230 0.00 2019-07-21 12:23:44 2019-07-21 12:27:41 t 1 2 75597 212 0.00 2019-07-21 12:38:48 2019-07-21 12:39:31 t 1 2 75599 288 0.00 2019-07-21 12:40:09 2019-07-21 12:41:12 t 1 2 75600 220 0.00 2019-07-21 12:25:39 2019-07-21 12:43:26 t 1 2 75602 217 0.00 2019-07-21 12:56:32 2019-07-21 12:57:31 t 1 2 75603 271 0.00 2019-07-21 12:40:57 2019-07-21 13:06:03 t 1 2 75604 212 0.00 2019-07-21 13:08:58 2019-07-21 13:09:23 t 1 2 75605 217 0.00 2019-07-21 12:50:50 2019-07-21 13:10:56 t 1 2 75607 288 0.00 2019-07-21 13:10:46 2019-07-21 13:11:55 t 1 2 75609 288 0.00 2019-07-21 13:21:30 2019-07-21 13:22:35 t 1 2 75611 272 0.00 2019-07-21 08:28:08 2019-07-21 13:37:01 t 1 2 75614 217 0.00 2019-07-21 13:10:38 2019-07-21 13:45:43 t 1 2 75618 213 0.00 2019-07-21 14:17:18 2019-07-21 14:18:20 t 1 2 75620 296 0.00 2019-07-21 14:30:52 2019-07-21 14:40:20 t 1 2 75622 290 0.00 2019-07-21 14:41:55 2019-07-21 14:57:00 t 1 2 75628 288 0.00 2019-07-21 15:15:06 2019-07-21 15:16:09 t 1 2 75631 217 0.00 2019-07-21 15:02:43 2019-07-21 15:27:48 t 1 2 75637 218 0.00 2019-07-21 15:57:40 2019-07-21 16:02:13 t 1 2 75638 217 0.00 2019-07-21 15:44:48 2019-07-21 16:04:53 t 1 2 75642 272 0.00 2019-07-21 15:11:46 2019-07-21 16:16:51 t 1 2 75646 234 0.00 2019-07-21 16:53:36 2019-07-21 16:54:23 t 1 2 75654 212 0.00 2019-07-21 18:00:54 2019-07-21 18:03:41 t 1 2 75657 296 0.00 2019-07-21 17:15:05 2019-07-21 18:15:25 t 1 2 75662 288 0.00 2019-07-21 18:41:44 2019-07-21 18:42:49 t 1 2 75663 294 0.00 2019-07-21 17:43:47 2019-07-21 18:44:11 t 1 2 75665 234 0.00 2019-07-21 17:45:25 2019-07-21 19:15:30 t 1 2 75672 213 0.00 2019-07-21 19:45:59 2019-07-21 19:47:01 t 1 2 75677 288 0.00 2019-07-21 20:01:28 2019-07-21 20:02:35 t 1 2 75680 217 0.00 2019-07-21 20:07:17 2019-07-21 20:15:00 t 1 2 75682 213 0.00 2019-07-21 20:36:12 2019-07-21 20:36:24 t 1 2 75683 247 0.00 2019-07-21 20:37:31 2019-07-21 20:39:36 t 1 2 75684 288 0.00 2019-07-21 20:46:29 2019-07-21 20:47:33 t 1 2 75685 288 0.00 2019-07-21 20:49:12 2019-07-21 20:50:21 t 1 2 75688 217 0.00 2019-07-21 20:40:42 2019-07-21 21:10:48 t 1 2 75692 288 0.00 2019-07-21 21:18:56 2019-07-21 21:19:59 t 1 2 75694 288 0.00 2019-07-21 21:23:30 2019-07-21 21:24:38 t 1 2 75695 218 0.00 2019-07-21 21:25:47 2019-07-21 21:26:43 t 1 2 75697 271 0.00 2019-07-21 21:33:43 2019-07-21 21:39:21 t 1 2 75700 247 0.00 2019-07-21 21:59:45 2019-07-21 22:02:00 t 1 2 75704 213 0.00 2019-07-21 22:27:39 2019-07-21 22:28:41 t 1 2 75711 212 0.00 2019-07-21 22:41:45 2019-07-21 22:42:08 t 1 2 75625 217 0.00 2019-07-21 14:37:40 2019-07-21 15:07:45 t 1 2 75627 213 0.00 2019-07-21 15:13:26 2019-07-21 15:14:30 t 1 2 75629 292 0.00 2019-07-21 15:15:27 2019-07-21 15:16:32 t 1 2 75630 212 0.00 2019-07-21 15:21:05 2019-07-21 15:21:54 t 1 2 75634 217 0.00 2019-07-21 15:37:13 2019-07-21 15:41:17 t 1 2 75636 288 0.00 2019-07-21 15:58:44 2019-07-21 15:59:52 t 1 2 75643 217 0.00 2019-07-21 16:01:22 2019-07-21 16:18:52 t 1 2 75644 247 0.00 2019-07-21 16:38:18 2019-07-21 16:40:03 t 1 2 75647 234 0.00 2019-07-21 16:54:33 2019-07-21 16:59:23 t 1 2 75649 294 0.00 2019-07-21 16:58:30 2019-07-21 17:13:51 t 1 2 75650 218 0.00 2019-07-21 17:22:36 2019-07-21 17:22:58 t 1 2 75653 234 0.00 2019-07-21 17:02:09 2019-07-21 17:27:14 t 1 2 75658 218 0.00 2019-07-21 18:10:24 2019-07-21 18:20:21 t 1 2 75659 230 0.00 2019-07-21 17:39:31 2019-07-21 18:21:58 t 1 2 75660 288 0.00 2019-07-21 18:29:06 2019-07-21 18:30:11 t 1 2 75664 236 0.00 2019-07-21 18:36:33 2019-07-21 19:11:38 t 1 2 75669 294 0.00 2019-07-21 19:30:15 2019-07-21 19:33:15 t 1 2 75670 220 0.00 2019-07-21 17:58:41 2019-07-21 19:33:46 t 1 2 75676 288 0.00 2019-07-21 19:59:31 2019-07-21 20:00:39 t 1 2 75679 212 0.00 2019-07-21 20:11:52 2019-07-21 20:12:20 t 1 2 75687 247 0.00 2019-07-21 20:57:38 2019-07-21 21:08:28 t 1 2 75689 272 0.00 2019-07-21 17:45:31 2019-07-21 21:15:39 t 1 2 75693 272 0.00 2019-07-21 19:16:49 2019-07-21 21:24:24 t 1 2 75699 288 0.00 2019-07-21 21:59:54 2019-07-21 22:01:00 t 1 2 75703 234 0.00 2019-07-21 21:59:48 2019-07-21 22:28:04 t 1 2 75705 213 0.00 2019-07-21 22:29:42 2019-07-21 22:30:45 t 1 2 75707 213 0.00 2019-07-21 22:34:18 2019-07-21 22:35:21 t 1 2 75709 212 0.00 2019-07-21 22:28:40 2019-07-21 22:38:58 t 1 2 75712 212 0.00 2019-07-21 22:50:53 2019-07-21 22:51:53 t 1 2 75714 213 0.00 2019-07-21 22:53:11 2019-07-21 22:54:16 t 1 2 75716 212 0.00 2019-07-21 23:00:19 2019-07-21 23:01:04 t 1 2 75718 272 0.00 2019-07-21 22:39:01 2019-07-21 23:04:06 t 1 2 75719 212 0.00 2019-07-21 23:26:47 2019-07-21 23:27:20 t 1 2 75722 294 0.00 2019-07-21 22:39:15 2019-07-21 23:39:40 t 1 2 75727 272 0.00 2019-07-21 23:21:28 2019-07-21 23:56:33 t 1 2 75731 288 0.00 2019-07-22 00:25:23 2019-07-22 00:26:26 t 1 2 75733 212 0.00 2019-07-22 00:34:10 2019-07-22 00:34:43 t 1 2 75735 247 0.00 2019-07-22 00:41:25 2019-07-22 00:41:44 t 1 2 81179 357 0.00 2019-08-08 13:28:13 2019-08-08 13:28:17 t 1 2 75737 230 0.00 2019-07-22 00:11:49 2019-07-22 01:10:14 t 1 2 75739 243 0.00 2019-07-22 00:34:15 2019-07-22 01:20:28 t 1 2 75741 294 0.00 2019-07-22 06:50:20 2019-07-22 07:34:01 t 1 2 75743 272 0.00 2019-07-22 07:47:50 2019-07-22 07:57:56 t 1 2 75744 272 0.00 2019-07-22 08:02:34 2019-07-22 08:20:57 t 1 2 75745 272 0.00 2019-07-22 08:21:49 2019-07-22 08:21:54 t 1 2 75746 288 0.00 2019-07-22 08:28:26 2019-07-22 08:29:35 t 1 2 75748 272 0.00 2019-07-22 08:23:28 2019-07-22 08:32:34 t 1 2 75750 286 0.00 2019-07-22 08:36:24 2019-07-22 08:43:49 t 1 2 75752 288 0.00 2019-07-22 08:49:52 2019-07-22 08:50:56 t 1 2 75754 288 0.00 2019-07-22 09:13:43 2019-07-22 09:14:49 t 1 2 75755 288 0.00 2019-07-22 09:15:26 2019-07-22 09:16:33 t 1 2 75757 247 0.00 2019-07-22 09:21:34 2019-07-22 09:22:09 t 1 2 81180 306 0.00 2019-08-08 13:27:41 2019-08-08 13:28:41 t 1 2 81182 234 0.00 2019-08-08 12:44:34 2019-08-08 13:39:39 t 1 2 75772 286 0.00 2019-07-22 10:33:52 2019-07-22 10:43:58 t 1 2 75773 218 0.00 2019-07-22 10:44:58 2019-07-22 10:45:10 t 1 2 75775 288 0.00 2019-07-22 10:59:41 2019-07-22 11:00:49 t 1 2 75776 218 0.00 2019-07-22 10:45:14 2019-07-22 11:02:53 t 1 2 75777 234 0.00 2019-07-22 11:10:47 2019-07-22 11:17:20 t 1 2 75784 288 0.00 2019-07-22 11:56:32 2019-07-22 11:57:36 t 1 2 75785 288 0.00 2019-07-22 11:59:30 2019-07-22 12:00:34 t 1 2 75790 247 0.00 2019-07-22 12:22:19 2019-07-22 12:25:29 t 1 2 75791 286 0.00 2019-07-22 12:25:22 2019-07-22 12:27:15 t 1 2 75795 302 0.00 2019-07-22 12:52:11 2019-07-22 13:02:16 t 1 2 75799 302 0.00 2019-07-22 13:02:57 2019-07-22 13:38:02 t 1 2 75806 234 0.00 2019-07-22 14:20:45 2019-07-22 14:30:50 t 1 2 75810 286 0.00 2019-07-22 14:38:36 2019-07-22 14:48:41 t 1 2 75813 288 0.00 2019-07-22 15:58:11 2019-07-22 15:59:13 t 1 2 75814 292 0.00 2019-07-22 16:02:27 2019-07-22 16:03:31 t 1 2 75815 217 0.00 2019-07-22 15:39:07 2019-07-22 16:04:12 t 1 2 75816 288 0.00 2019-07-22 16:38:28 2019-07-22 16:39:32 t 1 2 75817 216 0.00 2019-07-22 16:47:02 2019-07-22 16:48:58 t 1 2 75818 212 0.00 2019-07-22 15:32:29 2019-07-22 16:56:42 t 1 2 75820 294 0.00 2019-07-22 16:14:40 2019-07-22 16:59:04 t 1 2 75823 247 0.00 2019-07-22 16:59:48 2019-07-22 17:02:06 t 1 2 75826 288 0.00 2019-07-22 17:16:07 2019-07-22 17:17:15 t 1 2 75827 296 0.00 2019-07-22 17:12:21 2019-07-22 17:24:42 t 1 2 75830 288 0.00 2019-07-22 17:31:24 2019-07-22 17:32:31 t 1 2 75833 294 0.00 2019-07-22 16:59:17 2019-07-22 17:59:38 t 1 2 75835 288 0.00 2019-07-22 18:13:07 2019-07-22 18:14:12 t 1 2 75836 288 0.00 2019-07-22 18:17:04 2019-07-22 18:18:07 t 1 2 81183 331 0.00 2019-08-08 13:40:38 2019-08-08 13:41:42 t 1 2 75839 286 0.00 2019-07-22 18:27:36 2019-07-22 18:37:42 t 1 2 75844 247 0.00 2019-07-22 19:05:07 2019-07-22 19:05:57 t 1 2 75846 286 0.00 2019-07-22 18:56:59 2019-07-22 19:07:04 t 1 2 75847 218 0.00 2019-07-22 19:07:10 2019-07-22 19:17:15 t 1 2 75848 232 0.00 2019-07-22 15:35:42 2019-07-22 19:25:47 t 1 2 75849 220 0.00 2019-07-22 19:26:28 2019-07-22 19:27:28 t 1 2 75850 288 0.00 2019-07-22 19:33:16 2019-07-22 19:34:23 t 1 2 75852 294 0.00 2019-07-22 19:16:05 2019-07-22 19:47:41 t 1 2 75860 220 0.00 2019-07-22 21:13:42 2019-07-22 21:15:09 t 1 2 75869 286 0.00 2019-07-22 22:08:49 2019-07-22 22:18:55 t 1 2 75870 286 0.00 2019-07-22 22:18:30 2019-07-22 22:28:36 t 1 2 75874 288 0.00 2019-07-22 22:36:33 2019-07-22 22:37:40 t 1 2 75876 286 0.00 2019-07-22 22:40:17 2019-07-22 22:50:22 t 1 2 75879 212 0.00 2019-07-22 23:07:14 2019-07-22 23:07:38 t 1 2 75881 212 0.00 2019-07-22 23:28:59 2019-07-22 23:29:18 t 1 2 75882 288 0.00 2019-07-22 23:51:21 2019-07-22 23:52:24 t 1 2 75885 218 0.00 2019-07-23 00:05:47 2019-07-23 00:08:47 t 1 2 75890 232 0.00 2019-07-22 23:25:11 2019-07-23 00:51:06 t 1 2 75891 288 0.00 2019-07-23 00:51:14 2019-07-23 00:52:22 t 1 2 75893 217 0.00 2019-07-22 23:36:48 2019-07-23 01:06:53 t 1 2 75895 234 0.00 2019-07-23 00:47:47 2019-07-23 01:17:53 t 1 2 75897 234 0.00 2019-07-23 01:38:13 2019-07-23 02:43:18 t 1 2 75899 234 0.00 2019-07-23 03:18:26 2019-07-23 04:08:31 t 1 2 75903 217 0.00 2019-07-23 06:55:19 2019-07-23 07:25:24 t 1 2 75904 247 0.00 2019-07-23 07:29:31 2019-07-23 07:32:45 t 1 2 75656 217 0.00 2019-07-21 18:07:19 2019-07-21 18:13:14 t 1 2 75661 288 0.00 2019-07-21 18:40:16 2019-07-21 18:41:19 t 1 2 75666 212 0.00 2019-07-21 19:23:07 2019-07-21 19:23:39 t 1 2 75667 212 0.00 2019-07-21 19:28:07 2019-07-21 19:28:44 t 1 2 75668 288 0.00 2019-07-21 19:31:28 2019-07-21 19:32:33 t 1 2 81181 220 0.00 2019-08-08 13:19:51 2019-08-08 13:30:51 t 1 1 75673 269 0.00 2019-07-21 19:35:50 2019-07-21 19:49:13 t 1 2 75675 271 0.00 2019-07-21 17:15:23 2019-07-21 19:55:29 t 1 2 75678 288 0.00 2019-07-21 20:03:21 2019-07-21 20:04:24 t 1 2 75681 218 0.00 2019-07-21 20:17:30 2019-07-21 20:25:27 t 1 2 75686 290 0.00 2019-07-21 20:31:27 2019-07-21 20:56:32 t 1 2 75690 288 0.00 2019-07-21 21:16:49 2019-07-21 21:17:53 t 1 2 75691 212 0.00 2019-07-21 21:19:27 2019-07-21 21:19:50 t 1 2 75696 217 0.00 2019-07-21 21:26:20 2019-07-21 21:37:23 t 1 2 75698 232 0.00 2019-07-21 21:24:59 2019-07-21 21:55:04 t 1 2 75701 213 0.00 2019-07-21 22:12:38 2019-07-21 22:13:44 t 1 2 75702 212 0.00 2019-07-21 22:24:52 2019-07-21 22:27:39 t 1 2 75706 213 0.00 2019-07-21 22:32:20 2019-07-21 22:33:24 t 1 2 75708 213 0.00 2019-07-21 22:35:57 2019-07-21 22:37:00 t 1 2 75710 213 0.00 2019-07-21 22:38:45 2019-07-21 22:39:49 t 1 2 75713 213 0.00 2019-07-21 22:51:29 2019-07-21 22:52:34 t 1 2 75715 213 0.00 2019-07-21 22:54:53 2019-07-21 22:55:58 t 1 2 75723 292 0.00 2019-07-21 23:40:43 2019-07-21 23:41:50 t 1 2 75724 243 0.00 2019-07-21 23:49:07 2019-07-21 23:52:08 t 1 2 75726 220 0.00 2019-07-21 19:28:03 2019-07-21 23:53:10 t 1 2 75740 217 0.00 2019-07-22 02:33:59 2019-07-22 02:54:04 t 1 2 75742 212 0.00 2019-07-22 07:40:36 2019-07-22 07:41:22 t 1 2 75747 209 0.00 2019-07-22 08:29:42 2019-07-22 08:30:50 t 1 2 75753 212 0.00 2019-07-22 09:04:42 2019-07-22 09:05:10 t 1 2 75756 288 0.00 2019-07-22 09:17:21 2019-07-22 09:18:29 t 1 2 75758 288 0.00 2019-07-22 09:36:55 2019-07-22 09:38:00 t 1 2 75760 288 0.00 2019-07-22 09:43:18 2019-07-22 09:44:22 t 1 2 81186 357 0.00 2019-08-08 13:30:19 2019-08-08 14:00:24 t 1 2 75769 296 0.00 2019-07-22 09:40:39 2019-07-22 10:10:03 t 1 2 75770 286 0.00 2019-07-22 10:04:56 2019-07-22 10:35:02 t 1 2 75779 217 0.00 2019-07-22 11:13:40 2019-07-22 11:27:19 t 1 2 75783 296 0.00 2019-07-22 11:46:12 2019-07-22 11:49:35 t 1 2 75787 204 0.00 2019-07-22 12:19:18 2019-07-22 12:23:18 t 1 2 75788 288 0.00 2019-07-22 12:22:52 2019-07-22 12:23:55 t 1 2 75792 217 0.00 2019-07-22 12:08:50 2019-07-22 12:28:55 t 1 2 75793 220 0.00 2019-07-22 12:06:00 2019-07-22 12:31:05 t 1 2 75794 212 0.00 2019-07-22 12:33:19 2019-07-22 12:34:05 t 1 2 81188 357 0.00 2019-08-08 13:53:09 2019-08-08 14:03:14 t 1 2 75798 247 0.00 2019-07-22 13:05:15 2019-07-22 13:08:31 t 1 2 75800 217 0.00 2019-07-22 13:39:01 2019-07-22 13:49:07 t 1 2 75802 247 0.00 2019-07-22 14:21:23 2019-07-22 14:21:58 t 1 2 75805 247 0.00 2019-07-22 14:29:18 2019-07-22 14:30:09 t 1 2 75807 212 0.00 2019-07-22 14:33:00 2019-07-22 14:33:30 t 1 2 75811 288 0.00 2019-07-22 15:46:50 2019-07-22 15:47:55 t 1 2 75812 234 0.00 2019-07-22 15:29:15 2019-07-22 15:49:20 t 1 2 75824 243 0.00 2019-07-22 16:51:55 2019-07-22 17:03:55 t 1 2 75825 288 0.00 2019-07-22 17:09:26 2019-07-22 17:10:32 t 1 2 75828 288 0.00 2019-07-22 17:24:13 2019-07-22 17:25:20 t 1 2 75832 234 0.00 2019-07-22 17:39:17 2019-07-22 17:57:26 t 1 2 75834 292 0.00 2019-07-22 18:03:22 2019-07-22 18:04:31 t 1 2 75838 286 0.00 2019-07-22 18:24:48 2019-07-22 18:28:32 t 1 2 75840 218 0.00 2019-07-22 18:30:03 2019-07-22 18:40:09 t 1 2 75845 220 0.00 2019-07-22 18:55:57 2019-07-22 19:06:03 t 1 2 75854 286 0.00 2019-07-22 20:14:33 2019-07-22 20:24:38 t 1 2 75856 288 0.00 2019-07-22 20:39:45 2019-07-22 20:40:49 t 1 2 75857 290 0.00 2019-07-22 20:29:09 2019-07-22 20:49:14 t 1 2 75862 212 0.00 2019-07-22 21:51:15 2019-07-22 21:51:41 t 1 2 75864 286 0.00 2019-07-22 21:53:43 2019-07-22 21:59:31 t 1 2 75865 286 0.00 2019-07-22 22:00:20 2019-07-22 22:03:20 t 1 2 75866 294 0.00 2019-07-22 21:03:39 2019-07-22 22:04:02 t 1 2 81190 355 0.00 2019-08-08 10:24:21 2019-08-08 14:09:26 t 1 2 75873 286 0.00 2019-07-22 22:32:58 2019-07-22 22:37:07 t 1 2 75875 286 0.00 2019-07-22 22:36:22 2019-07-22 22:40:12 t 1 2 75880 288 0.00 2019-07-22 23:07:25 2019-07-22 23:08:31 t 1 2 75887 288 0.00 2019-07-23 00:22:47 2019-07-23 00:23:55 t 1 2 75892 271 0.00 2019-07-23 00:47:11 2019-07-23 00:57:17 t 1 2 75898 302 0.00 2019-07-23 02:32:18 2019-07-23 03:42:23 t 1 2 75900 217 0.00 2019-07-23 06:28:49 2019-07-23 06:58:54 t 1 2 75907 217 0.00 2019-07-23 07:34:52 2019-07-23 07:41:15 t 1 2 75909 212 0.00 2019-07-23 07:48:26 2019-07-23 07:48:55 t 1 2 75910 288 0.00 2019-07-23 07:53:52 2019-07-23 07:54:56 t 1 2 75916 288 0.00 2019-07-23 08:36:34 2019-07-23 08:37:39 t 1 2 75922 220 0.00 2019-07-23 09:11:01 2019-07-23 09:21:07 t 1 2 75923 288 0.00 2019-07-23 09:27:45 2019-07-23 09:28:51 t 1 2 75924 288 0.00 2019-07-23 09:34:28 2019-07-23 09:35:31 t 1 2 75927 243 0.00 2019-07-23 09:54:10 2019-07-23 10:20:34 t 1 2 75929 230 0.00 2019-07-23 10:36:46 2019-07-23 10:36:48 t 1 2 75934 230 0.00 2019-07-23 10:45:28 2019-07-23 11:18:55 t 1 2 75936 296 0.00 2019-07-23 11:21:06 2019-07-23 11:22:29 t 1 2 75937 296 0.00 2019-07-23 11:23:02 2019-07-23 11:23:31 t 1 2 75938 288 0.00 2019-07-23 11:25:00 2019-07-23 11:26:03 t 1 2 75939 288 0.00 2019-07-23 11:30:36 2019-07-23 11:31:41 t 1 2 75942 288 0.00 2019-07-23 11:39:01 2019-07-23 11:40:07 t 1 2 75943 288 0.00 2019-07-23 11:40:24 2019-07-23 11:41:29 t 1 2 75945 247 0.00 2019-07-23 11:46:30 2019-07-23 11:47:18 t 1 2 75949 288 0.00 2019-07-23 11:54:44 2019-07-23 11:55:48 t 1 2 75951 304 0.00 2019-07-23 12:00:50 2019-07-23 12:10:55 t 1 2 75952 212 0.00 2019-07-23 12:17:33 2019-07-23 12:21:34 t 1 2 75953 288 0.00 2019-07-23 12:32:46 2019-07-23 12:33:51 t 1 2 75960 288 0.00 2019-07-23 13:00:43 2019-07-23 13:01:46 t 1 2 75962 230 0.00 2019-07-23 12:49:10 2019-07-23 13:04:15 t 1 2 75965 234 0.00 2019-07-23 13:11:21 2019-07-23 13:11:24 t 1 2 81194 220 0.00 2019-08-08 14:12:10 2019-08-08 14:19:15 t 1 1 75970 304 0.00 2019-07-23 12:50:48 2019-07-23 13:20:54 t 1 2 75973 304 0.00 2019-07-23 13:28:15 2019-07-23 13:48:20 t 1 2 75979 232 0.00 2019-07-23 14:04:22 2019-07-23 14:05:37 t 1 2 75983 304 0.00 2019-07-23 14:14:04 2019-07-23 14:24:09 t 1 2 75989 304 0.00 2019-07-23 14:40:50 2019-07-23 14:55:55 t 1 2 75996 217 0.00 2019-07-23 15:19:20 2019-07-23 15:19:21 t 1 2 75998 304 0.00 2019-07-23 15:07:23 2019-07-23 15:32:29 t 1 2 76001 288 0.00 2019-07-23 15:34:57 2019-07-23 15:35:50 t 1 2 76006 236 0.00 2019-07-23 13:28:40 2019-07-23 16:03:45 t 1 2 75717 218 0.00 2019-07-21 22:43:30 2019-07-21 23:01:44 t 1 2 75720 234 0.00 2019-07-21 23:29:17 2019-07-21 23:32:17 t 1 2 75721 247 0.00 2019-07-21 23:34:20 2019-07-21 23:35:09 t 1 2 75725 288 0.00 2019-07-21 23:51:09 2019-07-21 23:52:13 t 1 2 75728 243 0.00 2019-07-21 23:57:50 2019-07-22 00:02:26 t 1 2 75729 247 0.00 2019-07-22 00:13:51 2019-07-22 00:15:41 t 1 2 75730 288 0.00 2019-07-22 00:23:22 2019-07-22 00:24:30 t 1 2 81184 220 0.00 2019-08-08 13:30:51 2019-08-08 13:45:32 t 1 1 75734 290 0.00 2019-07-22 00:15:33 2019-07-22 00:40:38 t 1 2 81185 220 0.00 2019-08-08 13:45:32 2019-08-08 13:49:51 t 1 1 75749 294 0.00 2019-07-22 07:42:01 2019-07-22 08:42:24 t 1 2 75751 288 0.00 2019-07-22 08:48:13 2019-07-22 08:49:18 t 1 2 75761 232 0.00 2019-07-22 09:45:00 2019-07-22 09:48:31 t 1 2 75762 288 0.00 2019-07-22 09:47:43 2019-07-22 09:48:47 t 1 2 75763 288 0.00 2019-07-22 09:48:59 2019-07-22 09:50:04 t 1 2 75764 218 0.00 2019-07-22 09:36:22 2019-07-22 09:53:54 t 1 2 75765 288 0.00 2019-07-22 09:53:55 2019-07-22 09:55:01 t 1 2 75766 288 0.00 2019-07-22 10:06:49 2019-07-22 10:07:55 t 1 2 75771 288 0.00 2019-07-22 10:40:50 2019-07-22 10:41:53 t 1 2 75774 234 0.00 2019-07-22 10:12:21 2019-07-22 10:57:26 t 1 2 75778 288 0.00 2019-07-22 11:22:54 2019-07-22 11:23:58 t 1 2 75780 286 0.00 2019-07-22 11:26:25 2019-07-22 11:36:30 t 1 2 75781 247 0.00 2019-07-22 10:48:03 2019-07-22 11:43:24 t 1 2 75782 271 0.00 2019-07-22 11:14:03 2019-07-22 11:44:08 t 1 2 75786 212 0.00 2019-07-22 12:04:31 2019-07-22 12:05:10 t 1 2 75789 288 0.00 2019-07-22 12:24:25 2019-07-22 12:25:27 t 1 2 75796 288 0.00 2019-07-22 13:04:17 2019-07-22 13:05:22 t 1 2 75801 271 0.00 2019-07-22 12:15:54 2019-07-22 13:59:37 t 1 2 75803 217 0.00 2019-07-22 14:16:28 2019-07-22 14:28:40 t 1 2 75804 294 0.00 2019-07-22 13:36:20 2019-07-22 14:29:20 t 1 2 75808 286 0.00 2019-07-22 14:29:02 2019-07-22 14:35:34 t 1 2 75809 286 0.00 2019-07-22 14:37:20 2019-07-22 14:38:20 t 1 2 75819 288 0.00 2019-07-22 16:56:39 2019-07-22 16:57:47 t 1 2 75821 288 0.00 2019-07-22 16:58:26 2019-07-22 16:59:32 t 1 2 75822 288 0.00 2019-07-22 17:00:54 2019-07-22 17:01:59 t 1 2 75829 234 0.00 2019-07-22 16:46:48 2019-07-22 17:31:53 t 1 2 75831 212 0.00 2019-07-22 17:55:54 2019-07-22 17:56:27 t 1 2 75841 212 0.00 2019-07-22 18:50:49 2019-07-22 18:51:29 t 1 2 75842 286 0.00 2019-07-22 18:47:55 2019-07-22 18:58:01 t 1 2 75843 218 0.00 2019-07-22 18:51:57 2019-07-22 19:02:02 t 1 2 75851 220 0.00 2019-07-22 19:29:02 2019-07-22 19:35:32 t 1 2 75853 288 0.00 2019-07-22 19:52:19 2019-07-22 19:53:25 t 1 2 75855 247 0.00 2019-07-22 20:30:02 2019-07-22 20:30:50 t 1 2 75858 296 0.00 2019-07-22 20:47:13 2019-07-22 20:52:36 t 1 2 75859 288 0.00 2019-07-22 20:56:54 2019-07-22 20:58:02 t 1 2 75861 217 0.00 2019-07-22 21:43:32 2019-07-22 21:44:55 t 1 2 75863 288 0.00 2019-07-22 21:51:27 2019-07-22 21:52:36 t 1 2 75868 288 0.00 2019-07-22 22:17:16 2019-07-22 22:18:19 t 1 2 75871 286 0.00 2019-07-22 22:25:43 2019-07-22 22:30:57 t 1 2 75872 286 0.00 2019-07-22 22:31:04 2019-07-22 22:32:06 t 1 2 75877 212 0.00 2019-07-22 22:32:32 2019-07-22 22:55:47 t 1 2 75878 212 0.00 2019-07-22 22:57:57 2019-07-22 22:58:42 t 1 2 75883 247 0.00 2019-07-22 23:50:42 2019-07-22 23:53:16 t 1 2 75884 218 0.00 2019-07-22 23:33:52 2019-07-22 23:53:40 t 1 2 75886 234 0.00 2019-07-23 00:09:18 2019-07-23 00:19:23 t 1 2 75888 296 0.00 2019-07-23 00:27:11 2019-07-23 00:31:35 t 1 2 75889 294 0.00 2019-07-22 23:34:35 2019-07-23 00:34:59 t 1 2 75894 217 0.00 2019-07-23 01:00:02 2019-07-23 01:15:07 t 1 2 75896 302 0.00 2019-07-23 02:13:31 2019-07-23 02:38:37 t 1 2 75901 247 0.00 2019-07-23 07:08:36 2019-07-23 07:09:37 t 1 2 75902 212 0.00 2019-07-23 07:09:50 2019-07-23 07:10:17 t 1 2 75906 217 0.00 2019-07-23 07:22:38 2019-07-23 07:34:00 t 1 2 75911 288 0.00 2019-07-23 08:22:18 2019-07-23 08:23:24 t 1 2 75915 288 0.00 2019-07-23 08:34:38 2019-07-23 08:35:47 t 1 2 75917 288 0.00 2019-07-23 08:39:13 2019-07-23 08:40:17 t 1 2 75918 272 0.00 2019-07-23 08:24:19 2019-07-23 08:52:20 t 1 2 75919 288 0.00 2019-07-23 09:03:49 2019-07-23 09:04:57 t 1 2 75925 247 0.00 2019-07-23 09:47:28 2019-07-23 09:49:37 t 1 2 75928 217 0.00 2019-07-23 10:15:34 2019-07-23 10:30:40 t 1 2 75930 290 0.00 2019-07-23 10:09:11 2019-07-23 10:39:16 t 1 2 75946 217 0.00 2019-07-23 11:18:35 2019-07-23 11:48:41 t 1 2 75948 288 0.00 2019-07-23 11:51:21 2019-07-23 11:52:27 t 1 2 75954 247 0.00 2019-07-23 12:33:14 2019-07-23 12:35:04 t 1 2 75957 288 0.00 2019-07-23 12:48:40 2019-07-23 12:49:47 t 1 2 75958 288 0.00 2019-07-23 12:57:32 2019-07-23 12:58:37 t 1 2 75959 288 0.00 2019-07-23 12:59:11 2019-07-23 13:00:16 t 1 2 75961 288 0.00 2019-07-23 13:02:54 2019-07-23 13:03:59 t 1 2 75963 272 0.00 2019-07-23 12:12:25 2019-07-23 13:05:03 t 1 2 75964 286 0.00 2019-07-23 12:56:51 2019-07-23 13:06:56 t 1 2 75969 272 0.00 2019-07-23 12:24:04 2019-07-23 13:14:09 t 1 2 75971 286 0.00 2019-07-23 13:14:18 2019-07-23 13:24:23 t 1 2 75975 212 0.00 2019-07-23 13:50:49 2019-07-23 13:51:52 t 1 2 75977 286 0.00 2019-07-23 13:54:21 2019-07-23 13:54:25 t 1 2 75978 243 0.00 2019-07-23 13:59:13 2019-07-23 14:01:41 t 1 2 75981 247 0.00 2019-07-23 14:10:47 2019-07-23 14:11:50 t 1 2 75982 304 0.00 2019-07-23 14:05:19 2019-07-23 14:15:24 t 1 2 75984 292 0.00 2019-07-23 14:24:06 2019-07-23 14:25:10 t 1 2 75991 304 0.00 2019-07-23 14:59:39 2019-07-23 15:01:39 t 1 2 75993 304 0.00 2019-07-23 14:48:55 2019-07-23 15:04:00 t 1 2 75994 304 0.00 2019-07-23 15:06:46 2019-07-23 15:07:12 t 1 2 75997 304 0.00 2019-07-23 15:29:29 2019-07-23 15:29:35 t 1 2 75999 288 0.00 2019-07-23 15:31:53 2019-07-23 15:32:57 t 1 2 76000 217 0.00 2019-07-23 15:31:55 2019-07-23 15:34:12 t 1 2 76002 304 0.00 2019-07-23 15:29:53 2019-07-23 15:44:58 t 1 2 76003 294 0.00 2019-07-23 14:46:12 2019-07-23 15:46:44 t 1 2 76007 286 0.00 2019-07-23 15:55:42 2019-07-23 16:05:47 t 1 2 76017 288 0.00 2019-07-23 17:35:01 2019-07-23 17:36:03 t 1 2 76019 294 0.00 2019-07-23 16:46:54 2019-07-23 17:47:15 t 1 2 76021 302 0.00 2019-07-23 18:25:11 2019-07-23 18:50:16 t 1 2 76028 212 0.00 2019-07-23 19:49:23 2019-07-23 19:50:31 t 1 2 76030 247 0.00 2019-07-23 19:55:15 2019-07-23 19:58:37 t 1 2 76033 220 0.00 2019-07-23 20:22:17 2019-07-23 20:32:22 t 1 2 76035 206 0.00 2019-07-23 20:35:04 2019-07-23 20:36:08 t 1 2 76038 272 0.00 2019-07-23 18:46:03 2019-07-23 21:11:08 t 1 2 76043 247 0.00 2019-07-23 21:18:56 2019-07-23 21:21:52 t 1 2 76046 247 0.00 2019-07-23 21:46:33 2019-07-23 21:48:59 t 1 2 76052 292 0.00 2019-07-23 22:13:24 2019-07-23 22:14:28 t 1 2 75905 217 0.00 2019-07-23 07:32:17 2019-07-23 07:34:00 t 1 2 75908 217 0.00 2019-07-23 07:43:03 2019-07-23 07:43:10 t 1 2 4397 55 0.00 2015-08-18 21:50:02 2015-08-18 21:51:35 t 1 1 75912 288 0.00 2019-07-23 08:25:54 2019-07-23 08:26:59 t 1 2 4400 55 0.00 2015-08-18 22:00:01 2015-08-18 22:01:35 t 1 1 4403 55 0.00 2015-08-18 22:10:01 2015-08-18 22:11:35 t 1 1 75913 288 0.00 2019-07-23 08:29:09 2019-07-23 08:30:15 t 1 2 4409 55 0.00 2015-08-18 22:20:01 2015-08-18 22:21:35 t 1 1 75914 217 0.00 2019-07-23 07:43:37 2019-07-23 08:34:13 t 1 2 75920 212 0.00 2019-07-23 09:07:25 2019-07-23 09:08:02 t 1 2 75921 286 0.00 2019-07-23 09:18:17 2019-07-23 09:20:19 t 1 2 75926 220 0.00 2019-07-23 09:53:12 2019-07-23 10:13:18 t 1 2 4421 55 0.00 2015-08-18 23:10:01 2015-08-18 23:11:35 t 1 1 75931 230 0.00 2019-07-23 10:37:05 2019-07-23 10:43:34 t 1 2 4433 55 0.00 2015-08-18 23:55:01 2015-08-18 23:56:35 t 1 1 4435 55 0.00 2015-08-19 00:05:01 2015-08-19 00:06:35 t 1 1 4438 55 0.00 2015-08-19 00:20:01 2015-08-19 00:21:35 t 1 1 75932 247 0.00 2019-07-23 10:55:40 2019-07-23 10:59:26 t 1 2 75933 212 0.00 2019-07-23 11:11:19 2019-07-23 11:12:15 t 1 2 75935 217 0.00 2019-07-23 11:04:17 2019-07-23 11:19:22 t 1 2 75940 218 0.00 2019-07-23 10:57:22 2019-07-23 11:33:56 t 1 2 75941 288 0.00 2019-07-23 11:37:17 2019-07-23 11:38:22 t 1 2 75944 288 0.00 2019-07-23 11:42:27 2019-07-23 11:43:33 t 1 2 75947 288 0.00 2019-07-23 11:48:31 2019-07-23 11:49:38 t 1 2 75950 292 0.00 2019-07-23 11:58:22 2019-07-23 11:59:26 t 1 2 75955 304 0.00 2019-07-23 12:33:17 2019-07-23 12:43:22 t 1 2 75956 288 0.00 2019-07-23 12:42:47 2019-07-23 12:43:51 t 1 2 75966 288 0.00 2019-07-23 13:11:28 2019-07-23 13:12:33 t 1 2 75968 286 0.00 2019-07-23 13:13:54 2019-07-23 13:14:09 t 1 2 75972 247 0.00 2019-07-23 13:32:52 2019-07-23 13:33:30 t 1 2 75974 234 0.00 2019-07-23 13:11:42 2019-07-23 13:51:47 t 1 2 75976 243 0.00 2019-07-23 13:42:12 2019-07-23 13:52:43 t 1 2 75980 304 0.00 2019-07-23 14:01:40 2019-07-23 14:11:46 t 1 2 75985 288 0.00 2019-07-23 14:31:09 2019-07-23 14:32:17 t 1 2 75986 212 0.00 2019-07-23 14:39:11 2019-07-23 14:40:11 t 1 2 75987 304 0.00 2019-07-23 14:40:13 2019-07-23 14:40:41 t 1 2 75988 217 0.00 2019-07-23 10:34:16 2019-07-23 14:46:18 t 1 2 75990 292 0.00 2019-07-23 14:56:47 2019-07-23 14:57:51 t 1 2 75992 304 0.00 2019-07-23 15:03:50 2019-07-23 15:03:57 t 1 2 75995 304 0.00 2019-07-23 15:04:04 2019-07-23 15:14:09 t 1 2 76004 304 0.00 2019-07-23 15:40:22 2019-07-23 15:50:28 t 1 2 76005 217 0.00 2019-07-23 15:37:00 2019-07-23 15:52:05 t 1 2 76009 288 0.00 2019-07-23 16:05:18 2019-07-23 16:06:24 t 1 2 76015 288 0.00 2019-07-23 17:30:42 2019-07-23 17:31:45 t 1 2 76016 288 0.00 2019-07-23 17:32:07 2019-07-23 17:33:13 t 1 2 76018 220 0.00 2019-07-23 17:33:14 2019-07-23 17:41:49 t 1 2 76023 304 0.00 2019-07-23 19:00:59 2019-07-23 19:16:04 t 1 2 76034 206 0.00 2019-07-23 20:32:42 2019-07-23 20:33:45 t 1 2 76039 292 0.00 2019-07-23 21:11:26 2019-07-23 21:11:27 t 1 2 76040 292 0.00 2019-07-23 21:11:32 2019-07-23 21:12:35 t 1 2 76042 302 0.00 2019-07-23 20:20:25 2019-07-23 21:15:30 t 1 2 76049 247 0.00 2019-07-23 22:06:23 2019-07-23 22:07:47 t 1 2 76051 290 0.00 2019-07-23 22:05:17 2019-07-23 22:10:22 t 1 2 76053 288 0.00 2019-07-23 22:15:23 2019-07-23 22:16:31 t 1 2 76056 292 0.00 2019-07-23 22:20:16 2019-07-23 22:21:19 t 1 2 76058 292 0.00 2019-07-23 22:22:18 2019-07-23 22:23:25 t 1 2 76059 217 0.00 2019-07-23 21:59:36 2019-07-23 22:23:53 t 1 2 76075 292 0.00 2019-07-23 22:48:38 2019-07-23 22:49:41 t 1 2 76078 292 0.00 2019-07-23 22:53:50 2019-07-23 22:55:00 t 1 2 76080 212 0.00 2019-07-23 22:48:15 2019-07-23 22:57:53 t 1 2 76083 304 0.00 2019-07-23 22:49:26 2019-07-23 23:04:32 t 1 2 76087 288 0.00 2019-07-23 23:22:53 2019-07-23 23:24:01 t 1 2 76090 304 0.00 2019-07-23 23:24:31 2019-07-23 23:26:28 t 1 2 76092 272 0.00 2019-07-23 23:04:54 2019-07-23 23:29:59 t 1 2 76098 220 0.00 2019-07-24 00:16:57 2019-07-24 00:17:01 t 1 2 76100 212 0.00 2019-07-24 00:20:42 2019-07-24 00:21:02 t 1 2 76101 294 0.00 2019-07-23 23:28:11 2019-07-24 00:28:17 t 1 2 76103 212 0.00 2019-07-24 00:52:04 2019-07-24 00:52:25 t 1 2 76104 212 0.00 2019-07-24 01:15:49 2019-07-24 01:16:16 t 1 2 76106 234 0.00 2019-07-24 00:13:34 2019-07-24 01:18:39 t 1 2 76107 217 0.00 2019-07-23 23:54:48 2019-07-24 01:44:53 t 1 2 76112 288 0.00 2019-07-24 07:06:28 2019-07-24 07:07:33 t 1 2 81187 220 0.00 2019-08-08 12:27:39 2019-08-08 14:02:02 t 1 2 76117 288 0.00 2019-07-24 07:48:20 2019-07-24 07:49:24 t 1 2 76121 288 0.00 2019-07-24 07:57:47 2019-07-24 07:58:51 t 1 2 76126 217 0.00 2019-07-24 08:16:06 2019-07-24 08:36:11 t 1 2 76134 304 0.00 2019-07-24 09:20:53 2019-07-24 09:20:53 f 1 2 76138 304 0.00 2019-07-24 09:22:13 2019-07-24 09:22:13 f 1 2 76139 304 0.00 2019-07-24 09:22:38 2019-07-24 09:22:38 f 1 2 76141 304 0.00 2019-07-24 09:07:54 2019-07-24 09:22:59 t 1 2 76147 286 0.00 2019-07-24 09:14:13 2019-07-24 09:54:18 t 1 2 76148 304 0.00 2019-07-24 09:54:34 2019-07-24 09:54:43 t 1 2 76151 212 0.00 2019-07-24 10:07:07 2019-07-24 10:07:33 t 1 2 76153 304 0.00 2019-07-24 09:55:26 2019-07-24 10:20:32 t 1 2 76154 304 0.00 2019-07-24 10:12:09 2019-07-24 10:22:15 t 1 2 76162 218 0.00 2019-07-24 10:44:55 2019-07-24 10:47:13 t 1 2 76165 212 0.00 2019-07-24 10:48:58 2019-07-24 10:49:31 t 1 2 76172 220 0.00 2019-07-24 09:37:05 2019-07-24 11:12:10 t 1 2 76175 308 0.00 2019-07-24 11:16:10 2019-07-24 11:17:22 t 1 2 76182 304 0.00 2019-07-24 12:00:05 2019-07-24 12:00:05 f 1 2 76186 304 0.00 2019-07-24 12:00:56 2019-07-24 12:00:56 f 1 2 76189 304 0.00 2019-07-24 12:01:29 2019-07-24 12:01:29 f 1 2 76190 304 0.00 2019-07-24 12:01:38 2019-07-24 12:01:38 f 1 2 76192 304 0.00 2019-07-24 12:02:01 2019-07-24 12:02:04 t 1 2 76193 304 0.00 2019-07-24 11:55:26 2019-07-24 12:05:31 t 1 2 76200 243 0.00 2019-07-24 12:31:17 2019-07-24 12:44:23 t 1 2 76201 304 0.00 2019-07-24 12:35:53 2019-07-24 12:45:59 t 1 2 76202 247 0.00 2019-07-24 12:50:25 2019-07-24 12:52:21 t 1 2 76203 304 0.00 2019-07-24 13:07:31 2019-07-24 13:17:36 t 1 2 76205 230 0.00 2019-07-24 13:09:22 2019-07-24 14:01:23 t 1 2 76210 217 0.00 2019-07-24 14:19:51 2019-07-24 14:22:31 t 1 2 76212 304 0.00 2019-07-24 14:28:09 2019-07-24 14:38:14 t 1 2 76218 304 0.00 2019-07-24 14:54:19 2019-07-24 15:04:25 t 1 2 76221 304 0.00 2019-07-24 15:19:51 2019-07-24 15:29:56 t 1 2 76228 294 0.00 2019-07-24 15:07:40 2019-07-24 16:08:04 t 1 2 76232 212 0.00 2019-07-24 16:19:59 2019-07-24 16:21:10 t 1 2 76233 304 0.00 2019-07-24 16:15:31 2019-07-24 16:25:36 t 1 2 76008 212 0.00 2019-07-23 16:03:46 2019-07-23 16:05:49 t 1 2 76010 247 0.00 2019-07-23 16:23:24 2019-07-23 16:25:15 t 1 2 4395 55 0.00 2015-08-18 21:45:01 2015-08-18 21:46:35 t 1 1 76011 218 0.00 2019-07-23 16:39:10 2019-07-23 16:49:33 t 1 2 4401 55 0.00 2015-08-18 22:05:01 2015-08-18 22:06:35 t 1 1 76012 286 0.00 2019-07-23 16:49:10 2019-07-23 16:50:52 t 1 2 76013 286 0.00 2019-07-23 16:53:41 2019-07-23 17:03:47 t 1 2 76014 234 0.00 2019-07-23 16:19:32 2019-07-23 17:14:38 t 1 2 76020 230 0.00 2019-07-23 17:10:35 2019-07-23 18:44:41 t 1 2 76022 304 0.00 2019-07-23 18:40:26 2019-07-23 18:50:31 t 1 2 76024 220 0.00 2019-07-23 18:53:35 2019-07-23 19:18:40 t 1 2 4419 55 0.00 2015-08-18 23:05:01 2015-08-18 23:06:35 t 1 1 4422 55 0.00 2015-08-18 23:15:02 2015-08-18 23:16:35 t 1 1 76025 217 0.00 2019-07-23 19:10:22 2019-07-23 19:25:27 t 1 2 4428 55 0.00 2015-08-18 23:35:02 2015-08-18 23:36:35 t 1 1 76026 217 0.00 2019-07-23 19:18:49 2019-07-23 19:33:55 t 1 2 4431 55 0.00 2015-08-18 23:45:01 2015-08-18 23:46:35 t 1 1 4436 55 0.00 2015-08-19 00:10:01 2015-08-19 00:11:35 t 1 1 76027 234 0.00 2019-07-23 19:11:18 2019-07-23 19:36:23 t 1 2 76029 304 0.00 2019-07-23 19:40:06 2019-07-23 19:55:11 t 1 2 76031 304 0.00 2019-07-23 20:10:53 2019-07-23 20:20:58 t 1 2 76032 206 0.00 2019-07-23 20:30:31 2019-07-23 20:31:36 t 1 2 76036 272 0.00 2019-07-23 18:58:29 2019-07-23 20:58:12 t 1 2 76037 304 0.00 2019-07-23 20:50:59 2019-07-23 21:01:04 t 1 2 76041 304 0.00 2019-07-23 21:04:48 2019-07-23 21:14:53 t 1 2 76044 288 0.00 2019-07-23 21:24:40 2019-07-23 21:25:47 t 1 2 76045 220 0.00 2019-07-23 21:42:13 2019-07-23 21:42:37 t 1 2 76047 294 0.00 2019-07-23 20:59:06 2019-07-23 21:59:30 t 1 2 76048 247 0.00 2019-07-23 21:52:22 2019-07-23 22:00:22 t 1 2 76050 304 0.00 2019-07-23 21:49:39 2019-07-23 22:09:44 t 1 2 76054 292 0.00 2019-07-23 22:15:57 2019-07-23 22:17:01 t 1 2 76055 292 0.00 2019-07-23 22:18:38 2019-07-23 22:19:43 t 1 2 76060 290 0.00 2019-07-23 22:08:57 2019-07-23 22:24:02 t 1 2 76065 288 0.00 2019-07-23 22:33:27 2019-07-23 22:34:30 t 1 2 76067 292 0.00 2019-07-23 22:36:30 2019-07-23 22:37:33 t 1 2 76068 292 0.00 2019-07-23 22:39:23 2019-07-23 22:40:27 t 1 2 76069 292 0.00 2019-07-23 22:41:30 2019-07-23 22:42:33 t 1 2 76070 247 0.00 2019-07-23 22:41:38 2019-07-23 22:43:24 t 1 2 76071 292 0.00 2019-07-23 22:43:09 2019-07-23 22:44:15 t 1 2 76074 292 0.00 2019-07-23 22:47:04 2019-07-23 22:48:10 t 1 2 76084 220 0.00 2019-07-23 22:42:03 2019-07-23 23:07:08 t 1 2 76086 304 0.00 2019-07-23 23:15:19 2019-07-23 23:15:25 t 1 2 76089 294 0.00 2019-07-23 22:25:54 2019-07-23 23:26:14 t 1 2 76095 247 0.00 2019-07-23 23:50:33 2019-07-23 23:50:56 t 1 2 76096 212 0.00 2019-07-23 23:08:18 2019-07-23 23:58:39 t 1 2 76099 220 0.00 2019-07-24 00:17:40 2019-07-24 00:19:26 t 1 2 76113 288 0.00 2019-07-24 07:30:56 2019-07-24 07:32:00 t 1 2 76116 292 0.00 2019-07-24 07:47:52 2019-07-24 07:48:55 t 1 2 76118 288 0.00 2019-07-24 07:50:34 2019-07-24 07:51:40 t 1 2 76122 288 0.00 2019-07-24 08:01:29 2019-07-24 08:02:35 t 1 2 76124 294 0.00 2019-07-24 07:55:04 2019-07-24 08:33:28 t 1 2 76127 217 0.00 2019-07-24 08:27:03 2019-07-24 08:42:08 t 1 2 76129 217 0.00 2019-07-24 08:55:58 2019-07-24 09:07:51 t 1 2 76130 288 0.00 2019-07-24 09:08:28 2019-07-24 09:09:37 t 1 2 76135 304 0.00 2019-07-24 09:21:02 2019-07-24 09:21:02 f 1 2 76136 304 0.00 2019-07-24 09:21:51 2019-07-24 09:21:51 f 1 2 76140 304 0.00 2019-07-24 09:22:47 2019-07-24 09:22:47 f 1 2 76142 304 0.00 2019-07-24 09:14:19 2019-07-24 09:29:24 t 1 2 76144 304 0.00 2019-07-24 09:23:06 2019-07-24 09:43:12 t 1 2 76145 304 0.00 2019-07-24 09:37:19 2019-07-24 09:47:24 t 1 2 76146 304 0.00 2019-07-24 09:54:08 2019-07-24 09:54:17 t 1 2 76149 304 0.00 2019-07-24 09:54:58 2019-07-24 09:55:16 t 1 2 76152 247 0.00 2019-07-24 10:13:24 2019-07-24 10:15:10 t 1 2 76155 272 0.00 2019-07-24 10:07:51 2019-07-24 10:22:56 t 1 2 76164 306 0.00 2019-07-24 10:47:20 2019-07-24 10:48:23 t 1 2 76166 306 0.00 2019-07-24 10:50:55 2019-07-24 10:50:58 t 1 2 76167 288 0.00 2019-07-24 10:50:47 2019-07-24 10:51:52 t 1 2 76171 217 0.00 2019-07-24 11:03:20 2019-07-24 11:12:05 t 1 2 76177 304 0.00 2019-07-24 11:19:15 2019-07-24 11:29:20 t 1 2 76178 247 0.00 2019-07-24 11:32:50 2019-07-24 11:32:58 t 1 2 76179 306 0.00 2019-07-24 11:51:47 2019-07-24 11:52:50 t 1 2 76180 304 0.00 2019-07-24 11:59:45 2019-07-24 11:59:45 f 1 2 76183 304 0.00 2019-07-24 12:00:26 2019-07-24 12:00:26 f 1 2 76187 304 0.00 2019-07-24 12:01:11 2019-07-24 12:01:11 f 1 2 76195 234 0.00 2019-07-24 12:12:14 2019-07-24 12:22:20 t 1 2 76196 288 0.00 2019-07-24 12:40:19 2019-07-24 12:41:27 t 1 2 76199 306 0.00 2019-07-24 12:42:38 2019-07-24 12:43:44 t 1 2 76204 212 0.00 2019-07-24 13:25:22 2019-07-24 13:26:38 t 1 2 76206 306 0.00 2019-07-24 14:01:02 2019-07-24 14:02:06 t 1 2 76207 304 0.00 2019-07-24 13:52:54 2019-07-24 14:08:00 t 1 2 76208 247 0.00 2019-07-24 14:15:29 2019-07-24 14:16:13 t 1 2 76209 304 0.00 2019-07-24 14:02:59 2019-07-24 14:18:04 t 1 2 76211 306 0.00 2019-07-24 14:29:51 2019-07-24 14:30:54 t 1 2 76216 212 0.00 2019-07-24 14:59:03 2019-07-24 14:59:03 t 1 2 76219 294 0.00 2019-07-24 15:07:31 2019-07-24 15:07:34 t 1 2 76220 304 0.00 2019-07-24 14:59:33 2019-07-24 15:09:38 t 1 2 76222 288 0.00 2019-07-24 15:29:50 2019-07-24 15:30:55 t 1 2 76223 288 0.00 2019-07-24 15:34:58 2019-07-24 15:36:02 t 1 2 76224 304 0.00 2019-07-24 15:27:59 2019-07-24 15:38:04 t 1 2 76225 304 0.00 2019-07-24 15:31:45 2019-07-24 15:41:50 t 1 2 76226 217 0.00 2019-07-24 14:54:37 2019-07-24 15:59:42 t 1 2 76231 247 0.00 2019-07-24 16:15:59 2019-07-24 16:18:07 t 1 2 76234 304 0.00 2019-07-24 16:21:04 2019-07-24 16:31:09 t 1 2 76236 306 0.00 2019-07-24 16:54:24 2019-07-24 16:55:26 t 1 2 76237 306 0.00 2019-07-24 16:57:09 2019-07-24 16:58:12 t 1 2 76239 288 0.00 2019-07-24 16:59:12 2019-07-24 17:00:17 t 1 2 76241 304 0.00 2019-07-24 17:11:11 2019-07-24 17:21:16 t 1 2 76242 288 0.00 2019-07-24 17:22:35 2019-07-24 17:23:40 t 1 2 76249 304 0.00 2019-07-24 17:30:11 2019-07-24 17:30:11 f 1 2 76251 304 0.00 2019-07-24 17:15:20 2019-07-24 17:30:26 t 1 2 76252 304 0.00 2019-07-24 17:35:18 2019-07-24 17:35:18 f 1 2 76254 304 0.00 2019-07-24 17:25:28 2019-07-24 17:35:33 t 1 2 76255 304 0.00 2019-07-24 17:38:29 2019-07-24 17:38:29 f 1 2 76257 304 0.00 2019-07-24 17:38:47 2019-07-24 17:38:47 f 1 2 76260 304 0.00 2019-07-24 17:39:24 2019-07-24 17:39:24 f 1 2 76264 304 0.00 2019-07-24 17:40:15 2019-07-24 17:40:15 f 1 2 76267 304 0.00 2019-07-24 17:30:38 2019-07-24 17:40:43 t 1 2 76057 243 0.00 2019-07-23 22:21:13 2019-07-23 22:21:35 t 1 2 4393 55 0.00 2015-08-18 21:40:01 2015-08-18 21:41:35 t 1 1 76061 292 0.00 2019-07-23 22:23:56 2019-07-23 22:25:02 t 1 2 4399 55 0.00 2015-08-18 21:55:01 2015-08-18 21:56:35 t 1 1 4405 55 0.00 2015-08-18 22:15:02 2015-08-18 22:16:35 t 1 1 4411 55 0.00 2015-08-18 22:25:01 2015-08-18 22:26:35 t 1 1 76062 210 0.00 2019-07-23 22:28:31 2019-07-23 22:29:09 t 1 2 4417 55 0.00 2015-08-18 23:00:01 2015-08-18 23:01:35 t 1 1 76063 243 0.00 2019-07-23 22:21:42 2019-07-23 22:30:40 t 1 2 76064 304 0.00 2019-07-23 22:02:43 2019-07-23 22:32:48 t 1 2 76066 232 0.00 2019-07-23 14:26:33 2019-07-23 22:36:38 t 1 2 76072 292 0.00 2019-07-23 22:45:39 2019-07-23 22:46:43 t 1 2 4429 55 0.00 2015-08-18 23:40:01 2015-08-18 23:41:35 t 1 1 4432 55 0.00 2015-08-18 23:50:01 2015-08-18 23:51:35 t 1 1 4434 55 0.00 2015-08-19 00:00:01 2015-08-19 00:01:35 t 1 1 4437 55 0.00 2015-08-19 00:15:01 2015-08-19 00:16:35 t 1 1 76073 212 0.00 2019-07-23 22:25:38 2019-07-23 22:47:48 t 1 2 76076 292 0.00 2019-07-23 22:50:40 2019-07-23 22:51:48 t 1 2 76077 292 0.00 2019-07-23 22:52:13 2019-07-23 22:53:18 t 1 2 76079 292 0.00 2019-07-23 22:56:01 2019-07-23 22:57:09 t 1 2 76081 247 0.00 2019-07-23 22:58:57 2019-07-23 22:59:17 t 1 2 76082 230 0.00 2019-07-23 21:51:54 2019-07-23 23:01:28 t 1 2 76085 288 0.00 2019-07-23 23:10:25 2019-07-23 23:11:30 t 1 2 76088 304 0.00 2019-07-23 23:15:48 2019-07-23 23:25:54 t 1 2 76091 292 0.00 2019-07-23 23:28:19 2019-07-23 23:29:23 t 1 2 76093 218 0.00 2019-07-23 23:20:43 2019-07-23 23:45:22 t 1 2 76094 220 0.00 2019-07-23 23:22:07 2019-07-23 23:47:13 t 1 2 76097 212 0.00 2019-07-24 00:07:45 2019-07-24 00:08:24 t 1 2 76102 212 0.00 2019-07-24 00:36:30 2019-07-24 00:37:03 t 1 2 76105 271 0.00 2019-07-24 01:06:29 2019-07-24 01:16:34 t 1 2 76108 234 0.00 2019-07-24 01:44:13 2019-07-24 02:09:19 t 1 2 76109 296 0.00 2019-07-24 02:07:53 2019-07-24 02:16:14 t 1 2 81189 220 0.00 2019-08-08 14:05:00 2019-08-08 14:05:10 t 1 1 76111 271 0.00 2019-07-24 01:10:51 2019-07-24 03:25:57 t 1 2 76115 288 0.00 2019-07-24 07:46:54 2019-07-24 07:48:00 t 1 2 76119 288 0.00 2019-07-24 07:54:44 2019-07-24 07:55:49 t 1 2 76120 288 0.00 2019-07-24 07:56:25 2019-07-24 07:57:26 t 1 2 76123 288 0.00 2019-07-24 08:03:02 2019-07-24 08:04:06 t 1 2 76125 212 0.00 2019-07-24 08:34:05 2019-07-24 08:35:01 t 1 2 76128 247 0.00 2019-07-24 08:47:10 2019-07-24 08:48:55 t 1 2 76131 304 0.00 2019-07-24 09:03:13 2019-07-24 09:13:18 t 1 2 76132 217 0.00 2019-07-24 09:08:02 2019-07-24 09:18:07 t 1 2 76133 304 0.00 2019-07-24 09:20:40 2019-07-24 09:20:40 f 1 2 76137 304 0.00 2019-07-24 09:22:02 2019-07-24 09:22:02 f 1 2 76143 217 0.00 2019-07-24 09:22:59 2019-07-24 09:43:05 t 1 2 76150 288 0.00 2019-07-24 09:55:52 2019-07-24 09:56:57 t 1 2 76156 288 0.00 2019-07-24 10:30:58 2019-07-24 10:32:01 t 1 2 76157 288 0.00 2019-07-24 10:34:24 2019-07-24 10:35:27 t 1 2 76158 304 0.00 2019-07-24 10:36:15 2019-07-24 10:36:23 t 1 2 76159 304 0.00 2019-07-24 10:36:39 2019-07-24 10:36:41 t 1 2 76160 284 0.00 2019-07-24 10:30:08 2019-07-24 10:40:14 t 1 2 76161 306 0.00 2019-07-24 10:45:11 2019-07-24 10:46:15 t 1 2 76163 304 0.00 2019-07-24 10:37:13 2019-07-24 10:47:18 t 1 2 76168 306 0.00 2019-07-24 10:51:06 2019-07-24 10:52:07 t 1 2 76169 306 0.00 2019-07-24 11:02:41 2019-07-24 11:03:46 t 1 2 76170 217 0.00 2019-07-24 10:47:44 2019-07-24 11:07:49 t 1 2 76173 304 0.00 2019-07-24 11:04:50 2019-07-24 11:14:56 t 1 2 76174 217 0.00 2019-07-24 09:36:08 2019-07-24 11:16:13 t 1 2 76176 288 0.00 2019-07-24 11:18:25 2019-07-24 11:19:28 t 1 2 76181 304 0.00 2019-07-24 11:59:57 2019-07-24 11:59:57 f 1 2 76184 304 0.00 2019-07-24 12:00:35 2019-07-24 12:00:35 f 1 2 76185 304 0.00 2019-07-24 12:00:44 2019-07-24 12:00:44 f 1 2 76188 304 0.00 2019-07-24 12:01:22 2019-07-24 12:01:22 f 1 2 76191 304 0.00 2019-07-24 11:51:51 2019-07-24 12:01:56 t 1 2 76194 304 0.00 2019-07-24 12:02:12 2019-07-24 12:12:17 t 1 2 76197 217 0.00 2019-07-24 12:42:47 2019-07-24 12:43:27 t 1 2 76198 232 0.00 2019-07-24 09:48:37 2019-07-24 12:43:42 t 1 2 76213 304 0.00 2019-07-24 14:31:56 2019-07-24 14:47:02 t 1 2 76214 304 0.00 2019-07-24 14:42:05 2019-07-24 14:57:10 t 1 2 76215 306 0.00 2019-07-24 14:57:23 2019-07-24 14:58:24 t 1 2 76217 212 0.00 2019-07-24 14:59:13 2019-07-24 15:01:21 t 1 2 76227 306 0.00 2019-07-24 16:06:24 2019-07-24 16:07:26 t 1 2 76229 304 0.00 2019-07-24 15:45:25 2019-07-24 16:10:30 t 1 2 76230 304 0.00 2019-07-24 16:05:43 2019-07-24 16:15:48 t 1 2 76243 218 0.00 2019-07-24 17:06:16 2019-07-24 17:26:55 t 1 2 76244 304 0.00 2019-07-24 17:29:34 2019-07-24 17:29:34 f 1 2 76245 304 0.00 2019-07-24 17:29:42 2019-07-24 17:29:42 f 1 2 76247 247 0.00 2019-07-24 17:29:15 2019-07-24 17:30:02 t 1 2 76250 304 0.00 2019-07-24 17:30:22 2019-07-24 17:30:22 f 1 2 76253 304 0.00 2019-07-24 17:35:27 2019-07-24 17:35:27 f 1 2 76258 304 0.00 2019-07-24 17:39:00 2019-07-24 17:39:00 f 1 2 76261 304 0.00 2019-07-24 17:39:37 2019-07-24 17:39:37 f 1 2 76262 304 0.00 2019-07-24 17:39:56 2019-07-24 17:39:56 f 1 2 76265 304 0.00 2019-07-24 17:40:25 2019-07-24 17:40:25 f 1 2 76268 288 0.00 2019-07-24 17:42:24 2019-07-24 17:43:29 t 1 2 76269 304 0.00 2019-07-24 17:35:38 2019-07-24 17:45:43 t 1 2 76272 288 0.00 2019-07-24 17:48:17 2019-07-24 17:49:21 t 1 2 76276 288 0.00 2019-07-24 17:58:00 2019-07-24 17:59:04 t 1 2 76278 220 0.00 2019-07-24 17:51:00 2019-07-24 18:01:06 t 1 2 76280 288 0.00 2019-07-24 18:02:12 2019-07-24 18:02:58 t 1 2 76282 294 0.00 2019-07-24 17:04:41 2019-07-24 18:05:13 t 1 2 76287 306 0.00 2019-07-24 18:11:31 2019-07-24 18:12:35 t 1 2 76290 234 0.00 2019-07-24 18:12:58 2019-07-24 18:38:03 t 1 2 76292 272 0.00 2019-07-24 18:10:12 2019-07-24 18:40:17 t 1 2 76294 209 0.00 2019-07-24 18:53:30 2019-07-24 18:54:34 t 1 2 76304 232 0.00 2019-07-24 13:45:39 2019-07-24 20:00:45 t 1 2 76305 306 0.00 2019-07-24 20:00:48 2019-07-24 20:01:52 t 1 2 76306 306 0.00 2019-07-24 20:02:21 2019-07-24 20:03:22 t 1 2 76308 304 0.00 2019-07-24 20:30:09 2019-07-24 20:40:14 t 1 2 76311 304 0.00 2019-07-24 20:51:29 2019-07-24 21:01:34 t 1 2 76317 288 0.00 2019-07-24 21:15:10 2019-07-24 21:16:18 t 1 2 76319 288 0.00 2019-07-24 21:18:54 2019-07-24 21:19:57 t 1 2 76322 288 0.00 2019-07-24 21:23:55 2019-07-24 21:24:59 t 1 2 76324 288 0.00 2019-07-24 21:27:05 2019-07-24 21:27:08 t 1 2 76325 288 0.00 2019-07-24 21:27:11 2019-07-24 21:28:18 t 1 2 76335 306 0.00 2019-07-24 21:50:38 2019-07-24 21:51:43 t 1 2 76337 217 0.00 2019-07-24 21:41:34 2019-07-24 21:56:40 t 1 2 76235 288 0.00 2019-07-24 16:39:02 2019-07-24 16:40:06 t 1 2 76238 247 0.00 2019-07-24 16:57:42 2019-07-24 16:58:31 t 1 2 76240 288 0.00 2019-07-24 17:13:01 2019-07-24 17:14:06 t 1 2 76246 304 0.00 2019-07-24 17:29:54 2019-07-24 17:29:54 f 1 2 76248 304 0.00 2019-07-24 17:30:03 2019-07-24 17:30:03 f 1 2 76256 304 0.00 2019-07-24 17:38:38 2019-07-24 17:38:38 f 1 2 76259 304 0.00 2019-07-24 17:39:11 2019-07-24 17:39:11 f 1 2 76263 304 0.00 2019-07-24 17:40:07 2019-07-24 17:40:07 f 1 2 76266 304 0.00 2019-07-24 17:40:36 2019-07-24 17:40:36 f 1 2 76271 288 0.00 2019-07-24 17:46:52 2019-07-24 17:47:59 t 1 2 76283 247 0.00 2019-07-24 18:06:29 2019-07-24 18:08:21 t 1 2 76284 234 0.00 2019-07-24 17:15:16 2019-07-24 18:10:21 t 1 2 76286 269 0.00 2019-07-24 18:02:02 2019-07-24 18:11:25 t 1 2 76288 304 0.00 2019-07-24 18:11:52 2019-07-24 18:21:57 t 1 2 76291 288 0.00 2019-07-24 18:39:10 2019-07-24 18:40:14 t 1 2 76295 306 0.00 2019-07-24 18:56:28 2019-07-24 18:57:32 t 1 2 76297 209 0.00 2019-07-24 19:06:57 2019-07-24 19:08:03 t 1 2 81191 220 0.00 2019-08-08 14:03:49 2019-08-08 14:12:08 t 1 2 76299 304 0.00 2019-07-24 19:13:29 2019-07-24 19:23:34 t 1 2 76301 306 0.00 2019-07-24 19:45:53 2019-07-24 19:47:00 t 1 2 76302 306 0.00 2019-07-24 19:52:00 2019-07-24 19:53:06 t 1 2 76307 292 0.00 2019-07-24 20:37:32 2019-07-24 20:38:36 t 1 2 76313 288 0.00 2019-07-24 21:01:56 2019-07-24 21:03:02 t 1 2 76316 288 0.00 2019-07-24 21:13:31 2019-07-24 21:14:34 t 1 2 76327 288 0.00 2019-07-24 21:30:30 2019-07-24 21:31:36 t 1 2 76329 288 0.00 2019-07-24 21:32:22 2019-07-24 21:33:26 t 1 2 76332 288 0.00 2019-07-24 21:38:42 2019-07-24 21:39:45 t 1 2 76338 304 0.00 2019-07-24 21:53:09 2019-07-24 22:03:14 t 1 2 76340 288 0.00 2019-07-24 22:06:14 2019-07-24 22:07:17 t 1 2 76343 217 0.00 2019-07-24 22:24:00 2019-07-24 22:24:46 t 1 2 76347 218 0.00 2019-07-24 21:13:29 2019-07-24 22:50:13 t 1 2 76350 306 0.00 2019-07-24 23:14:01 2019-07-24 23:14:02 t 1 2 76351 306 0.00 2019-07-24 23:14:05 2019-07-24 23:15:10 t 1 2 76354 304 0.00 2019-07-24 23:11:23 2019-07-24 23:21:29 t 1 2 76356 306 0.00 2019-07-24 23:24:08 2019-07-24 23:25:10 t 1 2 76357 308 0.00 2019-07-24 11:17:31 2019-07-24 23:27:36 t 1 2 76358 247 0.00 2019-07-24 23:31:07 2019-07-24 23:34:19 t 1 2 76359 304 0.00 2019-07-24 23:34:55 2019-07-24 23:34:56 t 1 2 76362 304 0.00 2019-07-24 23:35:07 2019-07-24 23:45:13 t 1 2 4842 55 0.00 2015-08-23 23:50:01 2015-08-23 23:51:43 t 1 1 4847 55 0.00 2015-08-24 00:10:01 2015-08-24 00:11:43 t 1 1 4850 55 0.00 2015-08-24 00:25:01 2015-08-24 00:26:43 t 1 1 4853 55 0.00 2015-08-24 00:40:01 2015-08-24 00:41:43 t 1 1 4856 55 0.00 2015-08-24 00:55:01 2015-08-24 00:56:43 t 1 1 4859 55 0.00 2015-08-24 01:10:02 2015-08-24 01:11:43 t 1 1 4865 55 0.00 2015-08-24 01:35:01 2015-08-24 01:36:43 t 1 1 76364 290 0.00 2019-07-24 23:27:39 2019-07-24 23:47:44 t 1 2 76372 247 0.00 2019-07-24 23:57:59 2019-07-25 00:28:20 t 1 2 76374 212 0.00 2019-07-25 01:09:59 2019-07-25 01:10:22 t 1 2 76378 212 0.00 2019-07-25 01:46:40 2019-07-25 01:47:42 t 1 2 81192 304 0.00 2019-08-08 14:02:17 2019-08-08 14:12:22 t 1 2 76384 302 0.00 2019-07-25 04:09:36 2019-07-25 04:54:41 t 1 2 76385 294 0.00 2019-07-25 00:19:49 2019-07-25 07:33:59 t 1 2 76390 212 0.00 2019-07-25 08:39:08 2019-07-25 08:41:04 t 1 2 76391 306 0.00 2019-07-25 08:50:56 2019-07-25 08:52:00 t 1 2 76393 212 0.00 2019-07-25 09:18:38 2019-07-25 09:20:45 t 1 2 76394 220 0.00 2019-07-25 09:20:06 2019-07-25 09:30:11 t 1 2 76396 306 0.00 2019-07-25 09:43:03 2019-07-25 09:44:07 t 1 2 76400 311 0.00 2019-07-25 10:12:06 2019-07-25 10:12:07 t 1 2 76412 251 0.00 2019-07-25 10:21:04 2019-07-25 10:21:24 t 1 2 76416 306 0.00 2019-07-25 10:35:36 2019-07-25 10:36:38 t 1 2 76420 288 0.00 2019-07-25 11:07:31 2019-07-25 11:08:35 t 1 2 76423 288 0.00 2019-07-25 11:12:45 2019-07-25 11:13:49 t 1 2 76424 288 0.00 2019-07-25 11:13:59 2019-07-25 11:15:05 t 1 2 76430 306 0.00 2019-07-25 11:24:52 2019-07-25 11:25:52 t 1 2 76433 304 0.00 2019-07-25 11:32:13 2019-07-25 11:33:15 t 1 2 76438 302 0.00 2019-07-25 11:15:41 2019-07-25 11:39:57 t 1 2 76441 304 0.00 2019-07-25 11:41:03 2019-07-25 11:51:08 t 1 2 76446 288 0.00 2019-07-25 12:04:42 2019-07-25 12:05:49 t 1 2 76447 288 0.00 2019-07-25 12:06:09 2019-07-25 12:07:14 t 1 2 76449 288 0.00 2019-07-25 12:09:06 2019-07-25 12:10:11 t 1 2 76453 288 0.00 2019-07-25 12:14:57 2019-07-25 12:15:59 t 1 2 76457 288 0.00 2019-07-25 12:19:09 2019-07-25 12:20:14 t 1 2 76463 288 0.00 2019-07-25 12:32:32 2019-07-25 12:33:36 t 1 2 76465 304 0.00 2019-07-25 12:35:52 2019-07-25 12:35:53 t 1 2 76469 288 0.00 2019-07-25 12:46:12 2019-07-25 12:47:17 t 1 2 76470 306 0.00 2019-07-25 12:47:50 2019-07-25 12:48:53 t 1 2 76472 306 0.00 2019-07-25 12:51:25 2019-07-25 12:52:30 t 1 2 76474 288 0.00 2019-07-25 12:53:09 2019-07-25 12:54:15 t 1 2 76476 306 0.00 2019-07-25 12:56:37 2019-07-25 12:57:45 t 1 2 76482 234 0.00 2019-07-25 11:51:46 2019-07-25 13:06:51 t 1 2 76483 306 0.00 2019-07-25 13:06:40 2019-07-25 13:07:43 t 1 2 76485 306 0.00 2019-07-25 13:08:02 2019-07-25 13:09:04 t 1 2 76488 288 0.00 2019-07-25 13:14:24 2019-07-25 13:15:31 t 1 2 76489 218 0.00 2019-07-25 13:06:18 2019-07-25 13:16:23 t 1 2 76491 304 0.00 2019-07-25 13:02:11 2019-07-25 13:17:16 t 1 2 76492 288 0.00 2019-07-25 13:17:17 2019-07-25 13:18:21 t 1 2 76495 288 0.00 2019-07-25 13:21:39 2019-07-25 13:22:43 t 1 2 76500 304 0.00 2019-07-25 13:33:51 2019-07-25 13:48:56 t 1 2 76501 304 0.00 2019-07-25 13:43:06 2019-07-25 13:53:11 t 1 2 76507 304 0.00 2019-07-25 14:08:34 2019-07-25 14:23:40 t 1 2 76508 288 0.00 2019-07-25 14:25:50 2019-07-25 14:26:55 t 1 2 76509 304 0.00 2019-07-25 14:20:37 2019-07-25 14:30:42 t 1 2 76511 232 0.00 2019-07-25 09:01:43 2019-07-25 14:31:49 t 1 2 76518 288 0.00 2019-07-25 15:17:17 2019-07-25 15:18:21 t 1 2 76522 272 0.00 2019-07-25 15:45:26 2019-07-25 15:55:31 t 1 2 76533 288 0.00 2019-07-25 18:05:18 2019-07-25 18:06:23 t 1 2 76534 288 0.00 2019-07-25 18:07:44 2019-07-25 18:08:49 t 1 2 76535 288 0.00 2019-07-25 18:11:39 2019-07-25 18:12:46 t 1 2 76539 304 0.00 2019-07-25 18:36:27 2019-07-25 18:46:32 t 1 2 76541 236 0.00 2019-07-25 16:19:12 2019-07-25 18:54:17 t 1 2 76544 311 0.00 2019-07-25 18:30:03 2019-07-25 19:22:25 t 1 2 76547 218 0.00 2019-07-25 19:25:41 2019-07-25 19:35:46 t 1 2 76548 304 0.00 2019-07-25 19:35:45 2019-07-25 19:37:46 t 1 2 76550 296 0.00 2019-07-25 19:46:33 2019-07-25 19:49:57 t 1 2 76555 217 0.00 2019-07-25 19:47:08 2019-07-25 20:17:14 t 1 2 76558 217 0.00 2019-07-25 20:13:36 2019-07-25 20:33:41 t 1 2 76270 288 0.00 2019-07-24 17:45:28 2019-07-24 17:46:34 t 1 2 76273 304 0.00 2019-07-24 17:40:46 2019-07-24 17:50:51 t 1 2 76274 288 0.00 2019-07-24 17:50:45 2019-07-24 17:51:49 t 1 2 76275 288 0.00 2019-07-24 17:52:20 2019-07-24 17:53:26 t 1 2 76277 288 0.00 2019-07-24 17:59:29 2019-07-24 18:00:31 t 1 2 76279 306 0.00 2019-07-24 18:00:24 2019-07-24 18:01:30 t 1 2 76281 288 0.00 2019-07-24 18:03:06 2019-07-24 18:04:11 t 1 2 76285 288 0.00 2019-07-24 18:10:19 2019-07-24 18:11:25 t 1 2 76289 230 0.00 2019-07-24 17:53:53 2019-07-24 18:25:26 t 1 2 76293 304 0.00 2019-07-24 18:41:35 2019-07-24 18:51:40 t 1 2 76296 306 0.00 2019-07-24 18:58:12 2019-07-24 18:59:17 t 1 2 76300 272 0.00 2019-07-24 18:30:35 2019-07-24 19:35:41 t 1 2 76303 306 0.00 2019-07-24 19:53:45 2019-07-24 19:54:52 t 1 2 76309 234 0.00 2019-07-24 20:13:31 2019-07-24 20:43:36 t 1 2 76310 294 0.00 2019-07-24 19:46:24 2019-07-24 20:46:55 t 1 2 76312 212 0.00 2019-07-24 21:00:34 2019-07-24 21:02:48 t 1 2 76314 288 0.00 2019-07-24 21:04:17 2019-07-24 21:05:23 t 1 2 76315 288 0.00 2019-07-24 21:10:05 2019-07-24 21:11:12 t 1 2 76318 288 0.00 2019-07-24 21:17:32 2019-07-24 21:18:34 t 1 2 76320 288 0.00 2019-07-24 21:20:43 2019-07-24 21:21:50 t 1 2 76321 288 0.00 2019-07-24 21:22:23 2019-07-24 21:23:27 t 1 2 76323 288 0.00 2019-07-24 21:25:48 2019-07-24 21:26:53 t 1 2 76326 288 0.00 2019-07-24 21:28:24 2019-07-24 21:29:32 t 1 2 76328 247 0.00 2019-07-24 21:32:05 2019-07-24 21:32:59 t 1 2 76330 288 0.00 2019-07-24 21:34:00 2019-07-24 21:35:04 t 1 2 76331 288 0.00 2019-07-24 21:35:26 2019-07-24 21:36:30 t 1 2 76333 288 0.00 2019-07-24 21:45:59 2019-07-24 21:47:04 t 1 2 76334 288 0.00 2019-07-24 21:47:22 2019-07-24 21:48:25 t 1 2 76336 288 0.00 2019-07-24 21:51:13 2019-07-24 21:52:18 t 1 2 76339 288 0.00 2019-07-24 22:04:31 2019-07-24 22:05:37 t 1 2 76341 234 0.00 2019-07-24 20:34:50 2019-07-24 22:09:55 t 1 2 76342 220 0.00 2019-07-24 22:17:44 2019-07-24 22:19:28 t 1 2 76345 304 0.00 2019-07-24 22:35:41 2019-07-24 22:40:46 t 1 2 76352 212 0.00 2019-07-24 23:16:33 2019-07-24 23:17:10 t 1 2 76355 220 0.00 2019-07-24 23:01:45 2019-07-24 23:21:51 t 1 2 76360 218 0.00 2019-07-24 23:41:19 2019-07-24 23:41:41 t 1 2 76365 220 0.00 2019-07-24 23:44:48 2019-07-24 23:54:53 t 1 2 76367 288 0.00 2019-07-25 00:00:08 2019-07-25 00:01:11 t 1 2 76369 212 0.00 2019-07-25 00:07:43 2019-07-25 00:08:31 t 1 2 76370 304 0.00 2019-07-25 00:04:13 2019-07-25 00:14:18 t 1 2 76371 294 0.00 2019-07-24 23:15:54 2019-07-25 00:16:18 t 1 2 76373 232 0.00 2019-07-24 23:55:49 2019-07-25 00:40:54 t 1 2 76379 212 0.00 2019-07-25 01:49:06 2019-07-25 01:50:06 t 1 2 76381 304 0.00 2019-07-25 03:23:36 2019-07-25 03:33:41 t 1 2 81193 243 0.00 2019-08-08 14:11:53 2019-08-08 14:16:10 t 1 2 76386 217 0.00 2019-07-25 07:38:51 2019-07-25 07:39:59 t 1 2 76388 294 0.00 2019-07-25 07:34:34 2019-07-25 08:34:55 t 1 2 76389 288 0.00 2019-07-25 08:38:48 2019-07-25 08:39:50 t 1 2 76395 304 0.00 2019-07-25 09:19:58 2019-07-25 09:35:03 t 1 2 4841 55 0.00 2015-08-23 23:45:01 2015-08-23 23:46:43 t 1 1 76397 304 0.00 2019-07-25 09:41:10 2019-07-25 09:56:15 t 1 2 4846 55 0.00 2015-08-24 00:05:01 2015-08-24 00:06:43 t 1 1 4849 55 0.00 2015-08-24 00:20:01 2015-08-24 00:21:43 t 1 1 4852 55 0.00 2015-08-24 00:35:02 2015-08-24 00:36:43 t 1 1 4855 55 0.00 2015-08-24 00:50:01 2015-08-24 00:51:43 t 1 1 4858 55 0.00 2015-08-24 01:05:01 2015-08-24 01:06:43 t 1 1 4861 55 0.00 2015-08-24 01:20:01 2015-08-24 01:21:43 t 1 1 4864 55 0.00 2015-08-24 01:30:01 2015-08-24 01:31:43 t 1 1 4867 55 0.00 2015-08-24 01:45:02 2015-08-24 01:46:43 t 1 1 76399 311 0.00 2019-07-25 10:11:57 2019-07-25 10:11:59 t 1 2 76403 311 0.00 2019-07-25 10:13:25 2019-07-25 10:13:26 t 1 2 76405 311 0.00 2019-07-25 10:14:16 2019-07-25 10:14:17 t 1 2 76407 288 0.00 2019-07-25 10:14:58 2019-07-25 10:16:02 t 1 2 76409 288 0.00 2019-07-25 10:16:23 2019-07-25 10:17:32 t 1 2 76410 247 0.00 2019-07-25 10:16:03 2019-07-25 10:17:58 t 1 2 76411 251 0.00 2019-07-25 10:20:58 2019-07-25 10:21:01 t 1 2 76415 311 0.00 2019-07-25 10:17:37 2019-07-25 10:32:42 t 1 2 76417 286 0.00 2019-07-25 10:31:27 2019-07-25 10:37:27 t 1 2 76419 296 0.00 2019-07-25 10:49:13 2019-07-25 10:55:58 t 1 2 76421 304 0.00 2019-07-25 11:09:20 2019-07-25 11:09:28 t 1 2 76422 288 0.00 2019-07-25 11:10:51 2019-07-25 11:11:55 t 1 2 76427 306 0.00 2019-07-25 11:20:03 2019-07-25 11:21:08 t 1 2 76428 306 0.00 2019-07-25 11:23:12 2019-07-25 11:24:17 t 1 2 76431 306 0.00 2019-07-25 11:27:17 2019-07-25 11:28:21 t 1 2 76434 306 0.00 2019-07-25 11:32:26 2019-07-25 11:33:31 t 1 2 76436 288 0.00 2019-07-25 11:34:45 2019-07-25 11:35:50 t 1 2 76439 304 0.00 2019-07-25 11:33:59 2019-07-25 11:44:05 t 1 2 76440 218 0.00 2019-07-25 11:05:27 2019-07-25 11:46:23 t 1 2 76442 288 0.00 2019-07-25 11:58:19 2019-07-25 11:59:22 t 1 2 76450 288 0.00 2019-07-25 12:10:30 2019-07-25 12:11:37 t 1 2 76451 288 0.00 2019-07-25 12:11:59 2019-07-25 12:13:05 t 1 2 76454 304 0.00 2019-07-25 12:02:50 2019-07-25 12:17:56 t 1 2 76456 304 0.00 2019-07-25 12:09:41 2019-07-25 12:19:46 t 1 2 76458 288 0.00 2019-07-25 12:22:36 2019-07-25 12:23:42 t 1 2 76459 288 0.00 2019-07-25 12:24:04 2019-07-25 12:25:06 t 1 2 76461 288 0.00 2019-07-25 12:30:33 2019-07-25 12:31:38 t 1 2 76467 304 0.00 2019-07-25 12:37:07 2019-07-25 12:37:21 t 1 2 76468 306 0.00 2019-07-25 12:45:33 2019-07-25 12:46:37 t 1 2 76471 288 0.00 2019-07-25 12:48:13 2019-07-25 12:49:16 t 1 2 76475 288 0.00 2019-07-25 12:55:42 2019-07-25 12:56:45 t 1 2 76479 306 0.00 2019-07-25 13:00:48 2019-07-25 13:01:49 t 1 2 76480 288 0.00 2019-07-25 13:02:59 2019-07-25 13:04:05 t 1 2 76484 288 0.00 2019-07-25 13:06:56 2019-07-25 13:07:59 t 1 2 76487 288 0.00 2019-07-25 13:12:28 2019-07-25 13:13:35 t 1 2 76496 311 0.00 2019-07-25 11:50:37 2019-07-25 13:25:42 t 1 2 76497 288 0.00 2019-07-25 13:26:18 2019-07-25 13:27:23 t 1 2 76504 306 0.00 2019-07-25 14:01:14 2019-07-25 14:02:16 t 1 2 76505 234 0.00 2019-07-25 13:50:34 2019-07-25 14:05:19 t 1 2 76506 304 0.00 2019-07-25 14:03:25 2019-07-25 14:13:31 t 1 2 76510 294 0.00 2019-07-25 13:24:55 2019-07-25 14:31:16 t 1 2 76514 236 0.00 2019-07-25 12:20:13 2019-07-25 15:00:19 t 1 2 76515 288 0.00 2019-07-25 15:04:25 2019-07-25 15:05:29 t 1 2 76516 272 0.00 2019-07-25 14:12:23 2019-07-25 15:07:28 t 1 2 76517 247 0.00 2019-07-25 15:11:58 2019-07-25 15:14:38 t 1 2 76519 234 0.00 2019-07-25 14:25:23 2019-07-25 15:20:29 t 1 2 76524 304 0.00 2019-07-25 16:02:52 2019-07-25 16:12:57 t 1 2 76525 306 0.00 2019-07-25 16:22:26 2019-07-25 16:23:30 t 1 2 76344 306 0.00 2019-07-24 22:23:53 2019-07-24 22:24:59 t 1 2 76346 304 0.00 2019-07-24 22:36:55 2019-07-24 22:47:01 t 1 2 76348 212 0.00 2019-07-24 22:13:06 2019-07-24 23:00:04 t 1 2 76349 294 0.00 2019-07-24 22:14:17 2019-07-24 23:10:41 t 1 2 76353 296 0.00 2019-07-24 23:12:04 2019-07-24 23:18:27 t 1 2 76361 304 0.00 2019-07-24 23:23:16 2019-07-24 23:43:21 t 1 2 76363 212 0.00 2019-07-24 23:46:18 2019-07-24 23:46:48 t 1 2 76366 212 0.00 2019-07-24 23:56:38 2019-07-24 23:57:10 t 1 2 76368 218 0.00 2019-07-24 23:50:09 2019-07-25 00:08:05 t 1 2 76375 304 0.00 2019-07-25 01:11:34 2019-07-25 01:21:39 t 1 2 76376 212 0.00 2019-07-25 01:41:29 2019-07-25 01:42:32 t 1 2 76377 212 0.00 2019-07-25 01:43:36 2019-07-25 01:44:37 t 1 2 76382 236 0.00 2019-07-25 03:26:58 2019-07-25 03:52:04 t 1 2 76387 306 0.00 2019-07-25 08:23:31 2019-07-25 08:24:34 t 1 2 76392 220 0.00 2019-07-25 09:06:04 2019-07-25 09:16:09 t 1 2 76398 304 0.00 2019-07-25 09:55:31 2019-07-25 10:10:36 t 1 2 76401 311 0.00 2019-07-25 10:12:22 2019-07-25 10:12:23 t 1 2 76402 311 0.00 2019-07-25 10:13:06 2019-07-25 10:13:08 t 1 2 76404 220 0.00 2019-07-25 10:13:59 2019-07-25 10:14:01 t 1 2 76406 304 0.00 2019-07-25 10:05:17 2019-07-25 10:15:22 t 1 2 76408 311 0.00 2019-07-25 10:14:39 2019-07-25 10:17:20 t 1 2 76413 212 0.00 2019-07-25 10:17:29 2019-07-25 10:22:17 t 1 2 76414 288 0.00 2019-07-25 10:27:19 2019-07-25 10:28:25 t 1 2 76418 304 0.00 2019-07-25 10:35:34 2019-07-25 10:45:40 t 1 2 76425 306 0.00 2019-07-25 11:18:30 2019-07-25 11:19:34 t 1 2 76426 304 0.00 2019-07-25 11:10:21 2019-07-25 11:20:27 t 1 2 76429 290 0.00 2019-07-25 10:45:38 2019-07-25 11:25:44 t 1 2 76432 288 0.00 2019-07-25 11:31:42 2019-07-25 11:32:46 t 1 2 76435 306 0.00 2019-07-25 11:34:10 2019-07-25 11:35:17 t 1 2 76437 306 0.00 2019-07-25 11:36:40 2019-07-25 11:37:41 t 1 2 76443 288 0.00 2019-07-25 11:59:59 2019-07-25 12:01:04 t 1 2 76444 288 0.00 2019-07-25 12:01:22 2019-07-25 12:02:28 t 1 2 76445 288 0.00 2019-07-25 12:02:56 2019-07-25 12:04:01 t 1 2 76448 288 0.00 2019-07-25 12:07:35 2019-07-25 12:08:39 t 1 2 76452 288 0.00 2019-07-25 12:13:31 2019-07-25 12:14:35 t 1 2 76455 288 0.00 2019-07-25 12:17:18 2019-07-25 12:18:25 t 1 2 76460 306 0.00 2019-07-25 12:30:03 2019-07-25 12:31:09 t 1 2 76462 247 0.00 2019-07-25 12:32:45 2019-07-25 12:33:09 t 1 2 76464 304 0.00 2019-07-25 12:34:21 2019-07-25 12:35:15 t 1 2 76466 288 0.00 2019-07-25 12:35:49 2019-07-25 12:36:56 t 1 2 76473 304 0.00 2019-07-25 12:37:53 2019-07-25 12:52:59 t 1 2 76477 306 0.00 2019-07-25 12:59:05 2019-07-25 13:00:10 t 1 2 76478 243 0.00 2019-07-25 12:56:16 2019-07-25 13:00:52 t 1 2 76481 288 0.00 2019-07-25 13:04:52 2019-07-25 13:05:58 t 1 2 4843 55 0.00 2015-08-23 23:55:01 2015-08-23 23:56:43 t 1 1 4845 55 0.00 2015-08-24 00:00:01 2015-08-24 00:01:43 t 1 1 4848 55 0.00 2015-08-24 00:15:01 2015-08-24 00:16:43 t 1 1 4851 55 0.00 2015-08-24 00:30:01 2015-08-24 00:31:43 t 1 1 4854 55 0.00 2015-08-24 00:45:01 2015-08-24 00:46:43 t 1 1 4857 55 0.00 2015-08-24 01:00:01 2015-08-24 01:01:43 t 1 1 4860 55 0.00 2015-08-24 01:15:01 2015-08-24 01:16:43 t 1 1 76486 288 0.00 2019-07-25 13:08:31 2019-07-25 13:09:37 t 1 2 4863 55 0.00 2015-08-24 01:25:01 2015-08-24 01:26:43 t 1 1 4866 55 0.00 2015-08-24 01:40:01 2015-08-24 01:41:43 t 1 1 76490 288 0.00 2019-07-25 13:15:54 2019-07-25 13:16:59 t 1 2 76493 288 0.00 2019-07-25 13:18:35 2019-07-25 13:19:39 t 1 2 76494 288 0.00 2019-07-25 13:20:15 2019-07-25 13:21:22 t 1 2 76498 288 0.00 2019-07-25 13:38:37 2019-07-25 13:39:43 t 1 2 76499 212 0.00 2019-07-25 13:43:15 2019-07-25 13:44:18 t 1 2 76502 220 0.00 2019-07-25 13:40:42 2019-07-25 13:55:47 t 1 2 76503 306 0.00 2019-07-25 13:58:24 2019-07-25 13:59:30 t 1 2 76512 288 0.00 2019-07-25 14:41:00 2019-07-25 14:42:07 t 1 2 76513 217 0.00 2019-07-25 14:19:02 2019-07-25 14:54:07 t 1 2 76520 311 0.00 2019-07-25 13:22:49 2019-07-25 15:37:55 t 1 2 76521 288 0.00 2019-07-25 15:39:33 2019-07-25 15:40:39 t 1 2 81195 220 0.00 2019-08-08 14:19:31 2019-08-08 14:19:39 t 1 1 76526 212 0.00 2019-07-25 15:01:44 2019-07-25 16:23:37 t 1 2 76528 294 0.00 2019-07-25 14:46:00 2019-07-25 16:35:21 t 1 2 76531 304 0.00 2019-07-25 16:59:56 2019-07-25 17:10:02 t 1 2 76532 218 0.00 2019-07-25 16:47:21 2019-07-25 17:21:58 t 1 2 76536 217 0.00 2019-07-25 18:19:18 2019-07-25 18:20:22 t 1 2 76538 306 0.00 2019-07-25 18:37:37 2019-07-25 18:38:42 t 1 2 76540 306 0.00 2019-07-25 18:45:36 2019-07-25 18:46:41 t 1 2 76542 213 0.00 2019-07-25 19:06:33 2019-07-25 19:07:11 t 1 2 76543 213 0.00 2019-07-25 19:07:18 2019-07-25 19:07:39 t 1 2 76545 306 0.00 2019-07-25 19:22:09 2019-07-25 19:23:12 t 1 2 76552 234 0.00 2019-07-25 19:29:42 2019-07-25 19:59:47 t 1 2 76554 304 0.00 2019-07-25 19:52:52 2019-07-25 20:12:57 t 1 2 76557 217 0.00 2019-07-25 20:24:31 2019-07-25 20:30:53 t 1 2 76561 304 0.00 2019-07-25 20:40:24 2019-07-25 20:40:24 f 1 2 76565 304 0.00 2019-07-25 20:41:22 2019-07-25 20:41:22 f 1 2 76568 304 0.00 2019-07-25 20:31:47 2019-07-25 20:41:52 t 1 2 76575 304 0.00 2019-07-25 20:50:33 2019-07-25 20:50:33 f 1 2 76576 304 0.00 2019-07-25 20:50:51 2019-07-25 20:50:51 f 1 2 76578 217 0.00 2019-07-25 20:34:46 2019-07-25 20:52:23 t 1 2 76585 217 0.00 2019-07-25 20:54:07 2019-07-25 21:06:02 t 1 2 76590 217 0.00 2019-07-25 21:34:23 2019-07-25 21:34:33 t 1 2 76591 217 0.00 2019-07-25 21:34:39 2019-07-25 21:35:34 t 1 2 76592 217 0.00 2019-07-25 21:37:30 2019-07-25 21:52:35 t 1 2 76595 288 0.00 2019-07-25 22:31:13 2019-07-25 22:32:20 t 1 2 76597 304 0.00 2019-07-25 22:28:10 2019-07-25 22:38:15 t 1 2 76598 304 0.00 2019-07-25 22:30:51 2019-07-25 22:40:56 t 1 2 76603 217 0.00 2019-07-25 23:00:01 2019-07-25 23:25:11 t 1 2 76605 220 0.00 2019-07-25 22:06:07 2019-07-25 23:26:12 t 1 2 76607 212 0.00 2019-07-25 23:28:23 2019-07-25 23:31:37 t 1 2 76608 212 0.00 2019-07-25 23:33:21 2019-07-25 23:33:29 t 1 2 76614 288 0.00 2019-07-26 00:05:21 2019-07-26 00:06:29 t 1 2 76618 294 0.00 2019-07-26 00:22:10 2019-07-26 00:29:33 t 1 2 76622 218 0.00 2019-07-26 00:10:59 2019-07-26 00:42:00 t 1 2 76625 288 0.00 2019-07-26 00:47:32 2019-07-26 00:48:41 t 1 2 76628 247 0.00 2019-07-26 00:54:58 2019-07-26 00:56:14 t 1 2 76631 243 0.00 2019-07-26 01:18:08 2019-07-26 01:19:33 t 1 2 76633 294 0.00 2019-07-26 00:41:13 2019-07-26 01:41:50 t 1 2 76637 212 0.00 2019-07-26 04:15:18 2019-07-26 04:15:44 t 1 2 76638 217 0.00 2019-07-26 07:05:46 2019-07-26 07:33:59 t 1 2 76639 243 0.00 2019-07-26 08:08:33 2019-07-26 08:11:18 t 1 2 76643 311 0.00 2019-07-26 08:40:37 2019-07-26 08:50:43 t 1 2 76527 247 0.00 2019-07-25 16:24:11 2019-07-25 16:24:50 t 1 2 76529 304 0.00 2019-07-25 16:59:22 2019-07-25 16:59:31 t 1 2 76530 234 0.00 2019-07-25 16:05:16 2019-07-25 17:05:21 t 1 2 76537 217 0.00 2019-07-25 18:21:59 2019-07-25 18:23:02 t 1 2 76546 306 0.00 2019-07-25 19:23:58 2019-07-25 19:25:01 t 1 2 76549 304 0.00 2019-07-25 19:39:10 2019-07-25 19:49:15 t 1 2 76551 306 0.00 2019-07-25 19:49:01 2019-07-25 19:50:05 t 1 2 76553 306 0.00 2019-07-25 20:05:41 2019-07-25 20:06:43 t 1 2 76556 217 0.00 2019-07-25 20:09:18 2019-07-25 20:19:24 t 1 2 76559 217 0.00 2019-07-25 19:57:46 2019-07-25 20:33:42 t 1 2 76560 304 0.00 2019-07-25 20:19:54 2019-07-25 20:34:59 t 1 2 76562 304 0.00 2019-07-25 20:40:31 2019-07-25 20:40:31 f 1 2 76563 304 0.00 2019-07-25 20:40:44 2019-07-25 20:40:44 f 1 2 76566 304 0.00 2019-07-25 20:41:31 2019-07-25 20:41:31 f 1 2 76567 304 0.00 2019-07-25 20:41:40 2019-07-25 20:41:40 f 1 2 76571 217 0.00 2019-07-25 20:31:01 2019-07-25 20:46:06 t 1 2 76573 288 0.00 2019-07-25 20:45:21 2019-07-25 20:46:26 t 1 2 76577 304 0.00 2019-07-25 20:41:57 2019-07-25 20:52:02 t 1 2 76579 306 0.00 2019-07-25 20:54:08 2019-07-25 20:55:09 t 1 2 76580 304 0.00 2019-07-25 20:46:41 2019-07-25 20:56:46 t 1 2 76581 306 0.00 2019-07-25 20:57:37 2019-07-25 20:58:42 t 1 2 76583 311 0.00 2019-07-25 19:55:07 2019-07-25 21:00:13 t 1 2 76586 217 0.00 2019-07-25 20:39:16 2019-07-25 21:09:21 t 1 2 76589 212 0.00 2019-07-25 21:21:53 2019-07-25 21:22:54 t 1 2 76593 306 0.00 2019-07-25 21:56:02 2019-07-25 21:57:07 t 1 2 76594 311 0.00 2019-07-25 21:51:42 2019-07-25 22:19:46 t 1 2 76600 306 0.00 2019-07-25 23:14:40 2019-07-25 23:15:42 t 1 2 76602 212 0.00 2019-07-25 23:24:30 2019-07-25 23:24:52 t 1 2 76610 304 0.00 2019-07-25 23:24:52 2019-07-25 23:34:57 t 1 2 76612 218 0.00 2019-07-25 23:31:35 2019-07-25 23:41:40 t 1 2 76615 294 0.00 2019-07-25 23:18:59 2019-07-26 00:19:19 t 1 2 76616 232 0.00 2019-07-25 18:28:58 2019-07-26 00:24:04 t 1 2 76617 243 0.00 2019-07-26 00:09:55 2019-07-26 00:26:17 t 1 2 76619 243 0.00 2019-07-26 00:27:27 2019-07-26 00:33:01 t 1 2 76621 243 0.00 2019-07-26 00:34:42 2019-07-26 00:38:30 t 1 2 76623 217 0.00 2019-07-26 00:23:48 2019-07-26 00:43:53 t 1 2 76627 243 0.00 2019-07-26 00:42:23 2019-07-26 00:53:49 t 1 2 76632 212 0.00 2019-07-26 01:38:09 2019-07-26 01:39:07 t 1 2 76634 234 0.00 2019-07-26 01:50:40 2019-07-26 02:15:46 t 1 2 76635 230 0.00 2019-07-26 01:51:56 2019-07-26 03:07:01 t 1 2 76636 311 0.00 2019-07-26 02:50:36 2019-07-26 03:20:41 t 1 2 76640 218 0.00 2019-07-26 08:15:28 2019-07-26 08:16:02 t 1 2 76641 286 0.00 2019-07-26 07:46:35 2019-07-26 08:16:40 t 1 2 76644 218 0.00 2019-07-26 08:16:06 2019-07-26 08:54:16 t 1 2 76647 292 0.00 2019-07-26 09:00:05 2019-07-26 09:01:06 t 1 2 76650 217 0.00 2019-07-26 09:25:58 2019-07-26 09:27:33 t 1 2 76651 306 0.00 2019-07-26 09:31:33 2019-07-26 09:32:39 t 1 2 76653 202 0.00 2019-07-26 09:35:57 2019-07-26 09:37:03 t 1 2 76654 288 0.00 2019-07-26 09:38:50 2019-07-26 09:39:53 t 1 2 76656 288 0.00 2019-07-26 09:42:12 2019-07-26 09:43:17 t 1 2 76657 212 0.00 2019-07-26 09:45:09 2019-07-26 09:46:05 t 1 2 76660 306 0.00 2019-07-26 10:11:45 2019-07-26 10:12:49 t 1 2 76666 286 0.00 2019-07-26 10:27:28 2019-07-26 10:57:33 t 1 2 76667 306 0.00 2019-07-26 11:02:09 2019-07-26 11:03:15 t 1 2 76669 288 0.00 2019-07-26 11:10:54 2019-07-26 11:11:58 t 1 2 76673 212 0.00 2019-07-26 11:15:01 2019-07-26 11:20:46 t 1 2 76674 306 0.00 2019-07-26 11:21:00 2019-07-26 11:22:03 t 1 2 76676 304 0.00 2019-07-26 11:14:59 2019-07-26 11:25:05 t 1 2 76677 306 0.00 2019-07-26 11:25:32 2019-07-26 11:26:36 t 1 2 76683 288 0.00 2019-07-26 11:56:58 2019-07-26 11:58:02 t 1 2 76685 306 0.00 2019-07-26 12:13:46 2019-07-26 12:14:51 t 1 2 76688 304 0.00 2019-07-26 12:07:24 2019-07-26 12:27:29 t 1 2 76691 306 0.00 2019-07-26 12:47:27 2019-07-26 12:48:34 t 1 2 76692 218 0.00 2019-07-26 10:31:45 2019-07-26 12:51:51 t 1 2 76694 304 0.00 2019-07-26 12:56:49 2019-07-26 13:06:54 t 1 2 76695 220 0.00 2019-07-26 13:02:58 2019-07-26 13:13:04 t 1 2 76696 218 0.00 2019-07-26 13:04:22 2019-07-26 13:14:27 t 1 2 76697 306 0.00 2019-07-26 13:30:45 2019-07-26 13:31:49 t 1 2 76703 306 0.00 2019-07-26 13:42:56 2019-07-26 13:43:58 t 1 2 76704 306 0.00 2019-07-26 13:46:08 2019-07-26 13:47:12 t 1 2 76707 304 0.00 2019-07-26 13:53:05 2019-07-26 13:55:08 t 1 2 76708 306 0.00 2019-07-26 14:05:24 2019-07-26 14:06:29 t 1 2 76711 247 0.00 2019-07-26 14:08:47 2019-07-26 14:09:52 t 1 2 76716 243 0.00 2019-07-26 14:45:49 2019-07-26 14:57:02 t 1 2 76719 294 0.00 2019-07-26 14:07:38 2019-07-26 15:08:02 t 1 2 76727 306 0.00 2019-07-26 15:28:29 2019-07-26 15:29:34 t 1 2 81196 311 0.00 2019-08-08 14:05:05 2019-08-08 14:23:27 t 1 2 76735 220 0.00 2019-07-26 15:32:48 2019-07-26 15:42:54 t 1 2 76736 243 0.00 2019-07-26 15:42:06 2019-07-26 15:44:05 t 1 2 76743 294 0.00 2019-07-26 16:29:30 2019-07-26 16:32:30 t 1 2 76749 311 0.00 2019-07-26 17:02:13 2019-07-26 17:02:19 t 1 2 76753 304 0.00 2019-07-26 16:59:05 2019-07-26 17:09:10 t 1 2 76763 296 0.00 2019-07-26 18:36:09 2019-07-26 18:41:30 t 1 2 76764 306 0.00 2019-07-26 18:47:54 2019-07-26 18:48:57 t 1 2 76765 218 0.00 2019-07-26 18:35:36 2019-07-26 18:55:42 t 1 2 76767 288 0.00 2019-07-26 19:12:02 2019-07-26 19:13:06 t 1 2 76768 288 0.00 2019-07-26 19:15:06 2019-07-26 19:16:13 t 1 2 76770 288 0.00 2019-07-26 19:18:59 2019-07-26 19:20:07 t 1 2 76774 247 0.00 2019-07-26 19:55:39 2019-07-26 19:55:59 t 1 2 76775 218 0.00 2019-07-26 19:54:39 2019-07-26 20:04:44 t 1 2 76778 288 0.00 2019-07-26 20:26:15 2019-07-26 20:27:21 t 1 2 76779 288 0.00 2019-07-26 20:29:30 2019-07-26 20:30:34 t 1 2 76781 294 0.00 2019-07-26 19:35:28 2019-07-26 20:35:52 t 1 2 76783 306 0.00 2019-07-26 20:45:27 2019-07-26 20:46:32 t 1 2 76787 304 0.00 2019-07-26 20:39:48 2019-07-26 20:59:53 t 1 2 76788 304 0.00 2019-07-26 20:51:56 2019-07-26 21:02:01 t 1 2 76790 206 0.00 2019-07-26 21:08:01 2019-07-26 21:09:07 t 1 2 76791 206 0.00 2019-07-26 21:09:59 2019-07-26 21:11:07 t 1 2 76793 206 0.00 2019-07-26 21:11:25 2019-07-26 21:12:28 t 1 2 76795 306 0.00 2019-07-26 21:12:52 2019-07-26 21:13:54 t 1 2 76799 292 0.00 2019-07-26 21:37:13 2019-07-26 21:38:16 t 1 2 76800 288 0.00 2019-07-26 21:37:57 2019-07-26 21:39:00 t 1 2 76804 288 0.00 2019-07-26 21:46:40 2019-07-26 21:47:45 t 1 2 76817 243 0.00 2019-07-26 22:24:09 2019-07-26 22:44:04 t 1 2 76818 217 0.00 2019-07-26 22:52:56 2019-07-26 22:53:52 t 1 2 76819 234 0.00 2019-07-26 22:31:25 2019-07-26 23:01:30 t 1 2 76821 217 0.00 2019-07-26 23:13:12 2019-07-26 23:18:35 t 1 2 76564 304 0.00 2019-07-25 20:41:13 2019-07-25 20:41:13 f 1 2 76569 304 0.00 2019-07-25 20:35:30 2019-07-25 20:45:35 t 1 2 76570 304 0.00 2019-07-25 20:45:59 2019-07-25 20:46:04 t 1 2 76572 304 0.00 2019-07-25 20:46:14 2019-07-25 20:46:21 t 1 2 76574 304 0.00 2019-07-25 20:50:23 2019-07-25 20:50:23 f 1 2 76582 247 0.00 2019-07-25 20:58:13 2019-07-25 20:59:40 t 1 2 76584 304 0.00 2019-07-25 20:54:50 2019-07-25 21:04:56 t 1 2 76587 304 0.00 2019-07-25 21:04:11 2019-07-25 21:14:16 t 1 2 76588 304 0.00 2019-07-25 21:11:03 2019-07-25 21:21:08 t 1 2 76596 294 0.00 2019-07-25 21:36:31 2019-07-25 22:36:52 t 1 2 76599 217 0.00 2019-07-25 22:40:00 2019-07-25 22:41:06 t 1 2 76601 306 0.00 2019-07-25 23:22:29 2019-07-25 23:23:31 t 1 2 76604 288 0.00 2019-07-25 23:24:07 2019-07-25 23:25:14 t 1 2 76606 288 0.00 2019-07-25 23:26:47 2019-07-25 23:27:51 t 1 2 76609 217 0.00 2019-07-25 22:52:15 2019-07-25 23:34:55 t 1 2 76611 212 0.00 2019-07-25 23:37:17 2019-07-25 23:38:12 t 1 2 76613 234 0.00 2019-07-25 22:21:32 2019-07-25 23:49:40 t 1 2 76620 304 0.00 2019-07-26 00:28:05 2019-07-26 00:38:11 t 1 2 76624 288 0.00 2019-07-26 00:46:03 2019-07-26 00:47:07 t 1 2 76626 290 0.00 2019-07-26 00:09:31 2019-07-26 00:49:36 t 1 2 76629 243 0.00 2019-07-26 00:57:38 2019-07-26 01:05:16 t 1 2 76630 217 0.00 2019-07-25 23:41:02 2019-07-26 01:07:15 t 1 2 76642 288 0.00 2019-07-26 08:38:11 2019-07-26 08:39:13 t 1 2 76646 217 0.00 2019-07-26 07:34:30 2019-07-26 09:00:57 t 1 2 76652 202 0.00 2019-07-26 09:33:43 2019-07-26 09:34:46 t 1 2 76655 218 0.00 2019-07-26 09:21:18 2019-07-26 09:41:25 t 1 2 76661 306 0.00 2019-07-26 10:14:24 2019-07-26 10:15:26 t 1 2 76662 304 0.00 2019-07-26 10:11:27 2019-07-26 10:21:32 t 1 2 76663 296 0.00 2019-07-26 10:18:04 2019-07-26 10:36:25 t 1 2 76664 217 0.00 2019-07-26 10:41:32 2019-07-26 10:49:05 t 1 2 76665 306 0.00 2019-07-26 10:56:25 2019-07-26 10:57:27 t 1 2 76668 306 0.00 2019-07-26 11:06:03 2019-07-26 11:07:09 t 1 2 76670 294 0.00 2019-07-26 09:15:01 2019-07-26 11:13:25 t 1 2 76679 234 0.00 2019-07-26 10:53:17 2019-07-26 11:28:22 t 1 2 76680 306 0.00 2019-07-26 11:32:17 2019-07-26 11:33:21 t 1 2 76684 306 0.00 2019-07-26 12:04:43 2019-07-26 12:05:36 t 1 2 76689 296 0.00 2019-07-26 12:10:12 2019-07-26 12:30:35 t 1 2 76693 306 0.00 2019-07-26 12:52:58 2019-07-26 12:54:06 t 1 2 76698 218 0.00 2019-07-26 13:12:02 2019-07-26 13:32:07 t 1 2 76702 304 0.00 2019-07-26 13:29:46 2019-07-26 13:39:51 t 1 2 76709 306 0.00 2019-07-26 14:07:51 2019-07-26 14:07:55 t 1 2 76713 304 0.00 2019-07-26 14:21:28 2019-07-26 14:31:34 t 1 2 76714 243 0.00 2019-07-26 14:33:38 2019-07-26 14:44:28 t 1 2 76717 243 0.00 2019-07-26 14:59:25 2019-07-26 15:02:17 t 1 2 76718 306 0.00 2019-07-26 15:06:41 2019-07-26 15:07:45 t 1 2 76723 212 0.00 2019-07-26 15:19:09 2019-07-26 15:19:35 t 1 2 76724 306 0.00 2019-07-26 15:25:44 2019-07-26 15:26:45 t 1 2 76729 243 0.00 2019-07-26 15:27:44 2019-07-26 15:32:43 t 1 2 76730 288 0.00 2019-07-26 15:35:50 2019-07-26 15:36:56 t 1 2 76733 243 0.00 2019-07-26 15:41:52 2019-07-26 15:41:55 t 1 2 76734 304 0.00 2019-07-26 15:32:33 2019-07-26 15:42:39 t 1 2 76738 218 0.00 2019-07-26 16:00:45 2019-07-26 16:10:50 t 1 2 76739 247 0.00 2019-07-26 16:18:18 2019-07-26 16:19:29 t 1 2 76740 271 0.00 2019-07-26 16:23:28 2019-07-26 16:23:31 t 1 2 76741 294 0.00 2019-07-26 15:25:50 2019-07-26 16:26:14 t 1 2 76750 311 0.00 2019-07-26 16:53:27 2019-07-26 17:03:33 t 1 2 76751 230 0.00 2019-07-26 15:09:39 2019-07-26 17:06:05 t 1 2 76752 217 0.00 2019-07-26 16:44:00 2019-07-26 17:09:05 t 1 2 76755 217 0.00 2019-07-26 17:04:09 2019-07-26 17:14:15 t 1 2 76757 217 0.00 2019-07-26 17:08:10 2019-07-26 17:28:15 t 1 2 76758 234 0.00 2019-07-26 17:18:39 2019-07-26 17:38:44 t 1 2 76759 217 0.00 2019-07-26 17:21:02 2019-07-26 17:46:07 t 1 2 76760 306 0.00 2019-07-26 17:51:03 2019-07-26 17:52:08 t 1 2 76771 288 0.00 2019-07-26 19:22:32 2019-07-26 19:23:35 t 1 2 76773 306 0.00 2019-07-26 19:43:49 2019-07-26 19:44:53 t 1 2 76776 288 0.00 2019-07-26 20:22:11 2019-07-26 20:23:16 t 1 2 76780 218 0.00 2019-07-26 20:25:41 2019-07-26 20:35:47 t 1 2 76784 288 0.00 2019-07-26 20:46:13 2019-07-26 20:47:21 t 1 2 76789 217 0.00 2019-07-26 19:43:00 2019-07-26 21:03:06 t 1 2 76797 218 0.00 2019-07-26 21:14:59 2019-07-26 21:25:04 t 1 2 76801 288 0.00 2019-07-26 21:42:52 2019-07-26 21:43:55 t 1 2 76802 247 0.00 2019-07-26 21:44:44 2019-07-26 21:45:08 t 1 2 76803 302 0.00 2019-07-26 20:47:40 2019-07-26 21:47:45 t 1 2 76806 288 0.00 2019-07-26 21:56:07 2019-07-26 21:57:12 t 1 2 76807 306 0.00 2019-07-26 22:03:39 2019-07-26 22:04:45 t 1 2 76808 294 0.00 2019-07-26 21:15:33 2019-07-26 22:15:56 t 1 2 76809 306 0.00 2019-07-26 22:20:27 2019-07-26 22:20:40 t 1 2 76810 306 0.00 2019-07-26 22:21:07 2019-07-26 22:22:12 t 1 2 76811 306 0.00 2019-07-26 22:23:02 2019-07-26 22:24:06 t 1 2 76812 288 0.00 2019-07-26 22:24:41 2019-07-26 22:25:44 t 1 2 76813 304 0.00 2019-07-26 22:17:10 2019-07-26 22:32:15 t 1 2 76814 288 0.00 2019-07-26 22:33:11 2019-07-26 22:34:16 t 1 2 76816 234 0.00 2019-07-26 22:23:47 2019-07-26 22:38:52 t 1 2 76820 243 0.00 2019-07-26 22:45:24 2019-07-26 23:03:42 t 1 2 76827 247 0.00 2019-07-26 23:40:27 2019-07-26 23:42:08 t 1 2 76829 234 0.00 2019-07-26 23:46:25 2019-07-26 23:56:30 t 1 2 76838 218 0.00 2019-07-27 00:26:51 2019-07-27 00:56:57 t 1 2 76839 212 0.00 2019-07-27 00:56:59 2019-07-27 00:58:06 t 1 2 76840 311 0.00 2019-07-27 00:18:31 2019-07-27 01:03:36 t 1 2 76844 304 0.00 2019-07-27 00:55:19 2019-07-27 01:10:24 t 1 2 76857 217 0.00 2019-07-27 03:47:40 2019-07-27 04:17:58 t 1 2 76858 217 0.00 2019-07-27 04:18:02 2019-07-27 04:28:07 t 1 2 76862 217 0.00 2019-07-27 04:21:03 2019-07-27 06:01:09 t 1 2 76863 288 0.00 2019-07-27 07:31:45 2019-07-27 07:32:52 t 1 2 76864 284 0.00 2019-07-27 03:55:43 2019-07-27 07:33:59 t 1 2 76868 217 0.00 2019-07-27 07:57:19 2019-07-27 08:22:24 t 1 2 76874 218 0.00 2019-07-27 08:46:34 2019-07-27 08:56:39 t 1 2 76880 217 0.00 2019-07-27 09:34:31 2019-07-27 09:38:31 t 1 2 76883 243 0.00 2019-07-27 09:48:29 2019-07-27 09:50:35 t 1 2 76884 288 0.00 2019-07-27 09:50:32 2019-07-27 09:51:37 t 1 2 76885 288 0.00 2019-07-27 09:53:10 2019-07-27 09:54:15 t 1 2 76890 304 0.00 2019-07-27 09:56:17 2019-07-27 10:11:22 t 1 2 76892 218 0.00 2019-07-27 10:17:09 2019-07-27 10:27:14 t 1 2 76893 304 0.00 2019-07-27 10:18:08 2019-07-27 10:28:13 t 1 2 76898 304 0.00 2019-07-27 10:32:36 2019-07-27 10:47:41 t 1 2 76900 220 0.00 2019-07-27 10:46:31 2019-07-27 10:49:31 t 1 2 76901 304 0.00 2019-07-27 10:48:19 2019-07-27 10:58:24 t 1 2 76645 311 0.00 2019-07-26 08:44:45 2019-07-26 08:57:23 t 1 2 76648 212 0.00 2019-07-26 09:05:15 2019-07-26 09:05:36 t 1 2 76649 306 0.00 2019-07-26 09:22:38 2019-07-26 09:23:44 t 1 2 76658 217 0.00 2019-07-26 09:52:09 2019-07-26 09:52:38 t 1 2 76659 288 0.00 2019-07-26 10:00:01 2019-07-26 10:01:05 t 1 2 76671 302 0.00 2019-07-26 11:07:24 2019-07-26 11:17:29 t 1 2 76672 306 0.00 2019-07-26 11:19:10 2019-07-26 11:20:14 t 1 2 76675 302 0.00 2019-07-26 11:10:38 2019-07-26 11:22:35 t 1 2 76678 306 0.00 2019-07-26 11:27:02 2019-07-26 11:28:04 t 1 2 76681 306 0.00 2019-07-26 11:42:38 2019-07-26 11:43:42 t 1 2 76682 306 0.00 2019-07-26 11:44:23 2019-07-26 11:45:26 t 1 2 76686 217 0.00 2019-07-26 11:35:22 2019-07-26 12:18:23 t 1 2 76687 306 0.00 2019-07-26 12:19:47 2019-07-26 12:20:48 t 1 2 76690 306 0.00 2019-07-26 12:31:47 2019-07-26 12:32:54 t 1 2 76699 306 0.00 2019-07-26 13:32:06 2019-07-26 13:33:15 t 1 2 76700 220 0.00 2019-07-26 11:05:40 2019-07-26 13:33:57 t 1 2 76701 306 0.00 2019-07-26 13:34:27 2019-07-26 13:35:31 t 1 2 76705 217 0.00 2019-07-26 13:46:39 2019-07-26 13:49:26 t 1 2 76706 304 0.00 2019-07-26 13:52:51 2019-07-26 13:53:03 t 1 2 76710 306 0.00 2019-07-26 14:08:00 2019-07-26 14:09:01 t 1 2 76712 306 0.00 2019-07-26 14:30:13 2019-07-26 14:31:16 t 1 2 76715 296 0.00 2019-07-26 14:47:05 2019-07-26 14:50:46 t 1 2 76720 286 0.00 2019-07-26 15:03:40 2019-07-26 15:13:46 t 1 2 76721 243 0.00 2019-07-26 15:06:29 2019-07-26 15:16:30 t 1 2 76722 217 0.00 2019-07-26 15:03:27 2019-07-26 15:19:24 t 1 2 76725 243 0.00 2019-07-26 15:27:07 2019-07-26 15:27:13 t 1 2 76726 243 0.00 2019-07-26 15:27:23 2019-07-26 15:27:38 t 1 2 76728 306 0.00 2019-07-26 15:29:57 2019-07-26 15:30:57 t 1 2 76731 306 0.00 2019-07-26 15:36:40 2019-07-26 15:37:41 t 1 2 76737 271 0.00 2019-07-26 15:39:21 2019-07-26 15:59:26 t 1 2 76742 232 0.00 2019-07-26 11:28:48 2019-07-26 16:28:54 t 1 2 76744 271 0.00 2019-07-26 16:23:38 2019-07-26 16:38:43 t 1 2 76745 243 0.00 2019-07-26 16:40:06 2019-07-26 16:41:47 t 1 2 76746 217 0.00 2019-07-26 16:39:20 2019-07-26 16:49:25 t 1 2 76747 286 0.00 2019-07-26 16:46:55 2019-07-26 16:57:00 t 1 2 76748 247 0.00 2019-07-26 17:01:15 2019-07-26 17:01:58 t 1 2 76754 236 0.00 2019-07-26 16:56:58 2019-07-26 17:12:03 t 1 2 76756 217 0.00 2019-07-26 17:19:32 2019-07-26 17:20:57 t 1 2 76761 286 0.00 2019-07-26 18:06:15 2019-07-26 18:16:20 t 1 2 76762 220 0.00 2019-07-26 18:07:39 2019-07-26 18:37:44 t 1 2 76766 247 0.00 2019-07-26 19:03:21 2019-07-26 19:04:42 t 1 2 76769 288 0.00 2019-07-26 19:17:22 2019-07-26 19:18:26 t 1 2 76772 288 0.00 2019-07-26 19:24:27 2019-07-26 19:25:31 t 1 2 76777 247 0.00 2019-07-26 20:24:12 2019-07-26 20:25:12 t 1 2 76782 288 0.00 2019-07-26 20:36:42 2019-07-26 20:37:47 t 1 2 76785 234 0.00 2019-07-26 18:33:33 2019-07-26 20:48:38 t 1 2 76786 288 0.00 2019-07-26 20:53:08 2019-07-26 20:54:12 t 1 2 76792 306 0.00 2019-07-26 21:10:04 2019-07-26 21:11:08 t 1 2 76794 220 0.00 2019-07-26 21:10:41 2019-07-26 21:12:30 t 1 2 76796 296 0.00 2019-07-26 21:11:29 2019-07-26 21:24:37 t 1 2 76798 220 0.00 2019-07-26 21:11:23 2019-07-26 21:30:39 t 1 2 76805 218 0.00 2019-07-26 21:45:31 2019-07-26 21:55:36 t 1 2 76815 206 0.00 2019-07-26 22:33:36 2019-07-26 22:34:42 t 1 2 76822 217 0.00 2019-07-26 23:19:01 2019-07-26 23:27:09 t 1 2 76823 294 0.00 2019-07-26 22:36:32 2019-07-26 23:36:56 t 1 2 76825 206 0.00 2019-07-26 23:38:11 2019-07-26 23:39:15 t 1 2 76830 296 0.00 2019-07-26 23:48:52 2019-07-26 23:57:12 t 1 2 76834 311 0.00 2019-07-27 00:18:08 2019-07-27 00:20:08 t 1 2 76836 218 0.00 2019-07-26 23:33:21 2019-07-27 00:28:27 t 1 2 76846 271 0.00 2019-07-26 23:13:38 2019-07-27 01:38:43 t 1 2 76847 217 0.00 2019-07-27 01:00:53 2019-07-27 01:45:58 t 1 2 76851 234 0.00 2019-07-27 02:30:44 2019-07-27 03:30:49 t 1 2 76852 217 0.00 2019-07-27 03:20:15 2019-07-27 03:35:21 t 1 2 81197 311 0.00 2019-08-08 14:23:31 2019-08-08 14:23:40 t 1 2 76859 206 0.00 2019-07-27 05:30:51 2019-07-27 05:31:54 t 1 2 76860 236 0.00 2019-07-27 03:55:21 2019-07-27 05:50:43 t 1 2 81198 220 0.00 2019-08-08 14:19:46 2019-08-08 14:26:01 t 1 1 76866 306 0.00 2019-07-27 08:03:49 2019-07-27 08:04:54 t 1 2 76867 306 0.00 2019-07-27 08:05:10 2019-07-27 08:06:13 t 1 2 76871 218 0.00 2019-07-27 08:30:12 2019-07-27 08:40:17 t 1 2 76872 306 0.00 2019-07-27 08:48:15 2019-07-27 08:49:20 t 1 2 76873 247 0.00 2019-07-27 08:47:48 2019-07-27 08:51:34 t 1 2 76876 288 0.00 2019-07-27 09:13:35 2019-07-27 09:14:42 t 1 2 76877 288 0.00 2019-07-27 09:19:37 2019-07-27 09:20:45 t 1 2 76879 217 0.00 2019-07-27 09:12:22 2019-07-27 09:37:27 t 1 2 76881 304 0.00 2019-07-27 09:32:01 2019-07-27 09:42:06 t 1 2 76886 288 0.00 2019-07-27 09:54:45 2019-07-27 09:55:50 t 1 2 76887 304 0.00 2019-07-27 09:50:40 2019-07-27 10:00:46 t 1 2 76895 243 0.00 2019-07-27 10:41:06 2019-07-27 10:45:36 t 1 2 76896 220 0.00 2019-07-27 09:59:21 2019-07-27 10:46:28 t 1 2 76897 306 0.00 2019-07-27 10:46:22 2019-07-27 10:47:27 t 1 2 76902 304 0.00 2019-07-27 10:52:05 2019-07-27 11:02:11 t 1 2 76904 247 0.00 2019-07-27 11:13:05 2019-07-27 11:13:28 t 1 2 76905 304 0.00 2019-07-27 11:07:15 2019-07-27 11:17:20 t 1 2 76907 306 0.00 2019-07-27 11:20:09 2019-07-27 11:20:21 t 1 2 76909 304 0.00 2019-07-27 11:13:01 2019-07-27 11:23:06 t 1 2 76910 306 0.00 2019-07-27 11:24:53 2019-07-27 11:25:55 t 1 2 76911 288 0.00 2019-07-27 11:27:43 2019-07-27 11:28:47 t 1 2 76916 304 0.00 2019-07-27 12:00:26 2019-07-27 12:15:31 t 1 2 76919 306 0.00 2019-07-27 12:22:20 2019-07-27 12:23:22 t 1 2 76920 304 0.00 2019-07-27 12:14:55 2019-07-27 12:25:01 t 1 2 76923 288 0.00 2019-07-27 12:26:26 2019-07-27 12:27:29 t 1 2 76929 286 0.00 2019-07-27 12:36:37 2019-07-27 12:46:42 t 1 2 76932 286 0.00 2019-07-27 12:56:52 2019-07-27 12:57:55 t 1 2 76933 286 0.00 2019-07-27 12:50:38 2019-07-27 13:00:43 t 1 2 76938 306 0.00 2019-07-27 13:13:45 2019-07-27 13:13:48 t 1 2 76940 312 0.00 2019-07-27 13:14:37 2019-07-27 13:15:39 t 1 2 76944 306 0.00 2019-07-27 13:24:22 2019-07-27 13:25:25 t 1 2 76945 312 0.00 2019-07-27 13:31:46 2019-07-27 13:32:48 t 1 2 76946 312 0.00 2019-07-27 13:33:51 2019-07-27 13:34:58 t 1 2 76947 312 0.00 2019-07-27 13:35:39 2019-07-27 13:35:58 t 1 2 76948 294 0.00 2019-07-27 13:16:33 2019-07-27 13:37:56 t 1 2 76949 304 0.00 2019-07-27 13:13:36 2019-07-27 13:38:42 t 1 2 76950 312 0.00 2019-07-27 13:38:50 2019-07-27 13:39:55 t 1 2 76951 304 0.00 2019-07-27 13:31:51 2019-07-27 13:41:56 t 1 2 76954 312 0.00 2019-07-27 13:51:51 2019-07-27 13:52:58 t 1 2 76958 312 0.00 2019-07-27 13:57:00 2019-07-27 13:58:05 t 1 2 76824 288 0.00 2019-07-26 23:36:44 2019-07-26 23:37:49 t 1 2 76826 206 0.00 2019-07-26 23:39:46 2019-07-26 23:40:49 t 1 2 81199 320 0.00 2019-08-08 14:06:07 2019-08-08 14:26:12 t 1 2 76831 220 0.00 2019-07-27 00:08:06 2019-07-27 00:08:38 t 1 2 76832 304 0.00 2019-07-27 00:01:22 2019-07-27 00:11:28 t 1 2 76833 311 0.00 2019-07-27 00:16:50 2019-07-27 00:16:52 t 1 2 76835 232 0.00 2019-07-26 22:25:32 2019-07-27 00:20:37 t 1 2 76837 294 0.00 2019-07-27 00:30:37 2019-07-27 00:53:50 t 1 2 76841 304 0.00 2019-07-27 01:04:30 2019-07-27 01:04:37 t 1 2 76842 217 0.00 2019-07-27 00:52:37 2019-07-27 01:07:42 t 1 2 76843 311 0.00 2019-07-27 00:58:45 2019-07-27 01:08:50 t 1 2 76845 304 0.00 2019-07-27 01:04:51 2019-07-27 01:24:56 t 1 2 76848 234 0.00 2019-07-27 01:38:41 2019-07-27 02:03:46 t 1 2 76849 234 0.00 2019-07-27 02:30:34 2019-07-27 02:30:40 t 1 2 76850 217 0.00 2019-07-27 03:15:07 2019-07-27 03:20:09 t 1 2 81217 234 0.00 2019-08-08 14:39:08 2019-08-08 15:09:13 t 1 2 76854 217 0.00 2019-07-27 03:27:11 2019-07-27 03:42:48 t 1 2 76855 217 0.00 2019-07-27 03:43:05 2019-07-27 03:53:10 t 1 2 76865 217 0.00 2019-07-27 07:53:29 2019-07-27 08:03:34 t 1 2 76869 212 0.00 2019-07-27 08:28:58 2019-07-27 08:29:24 t 1 2 76870 294 0.00 2019-07-27 07:52:40 2019-07-27 08:37:04 t 1 2 76875 288 0.00 2019-07-27 09:11:38 2019-07-27 09:12:42 t 1 2 76878 217 0.00 2019-07-27 09:05:48 2019-07-27 09:20:53 t 1 2 76882 218 0.00 2019-07-27 09:34:10 2019-07-27 09:44:15 t 1 2 76888 304 0.00 2019-07-27 10:05:42 2019-07-27 10:07:40 t 1 2 76889 230 0.00 2019-07-27 09:38:59 2019-07-27 10:09:04 t 1 2 76891 304 0.00 2019-07-27 10:09:07 2019-07-27 10:19:12 t 1 2 76894 304 0.00 2019-07-27 10:28:03 2019-07-27 10:38:08 t 1 2 76899 247 0.00 2019-07-27 10:48:31 2019-07-27 10:49:28 t 1 2 76908 306 0.00 2019-07-27 11:20:57 2019-07-27 11:22:01 t 1 2 76912 304 0.00 2019-07-27 11:33:33 2019-07-27 11:48:38 t 1 2 76913 243 0.00 2019-07-27 11:59:06 2019-07-27 12:01:34 t 1 2 76917 217 0.00 2019-07-27 12:02:40 2019-07-27 12:17:45 t 1 2 76918 286 0.00 2019-07-27 11:20:11 2019-07-27 12:22:03 t 1 2 76921 247 0.00 2019-07-27 12:24:37 2019-07-27 12:25:14 t 1 2 76925 304 0.00 2019-07-27 12:23:07 2019-07-27 12:33:12 t 1 2 76926 306 0.00 2019-07-27 12:34:53 2019-07-27 12:35:58 t 1 2 76935 288 0.00 2019-07-27 13:04:25 2019-07-27 13:05:30 t 1 2 76936 294 0.00 2019-07-27 12:58:59 2019-07-27 13:07:39 t 1 2 76937 304 0.00 2019-07-27 13:13:19 2019-07-27 13:13:24 t 1 2 76939 306 0.00 2019-07-27 13:14:02 2019-07-27 13:15:08 t 1 2 76956 218 0.00 2019-07-27 11:36:22 2019-07-27 13:56:28 t 1 2 76957 311 0.00 2019-07-27 13:47:09 2019-07-27 13:57:14 t 1 2 76959 217 0.00 2019-07-27 13:34:55 2019-07-27 14:05:00 t 1 2 76961 232 0.00 2019-07-27 08:29:32 2019-07-27 14:14:37 t 1 2 76964 312 0.00 2019-07-27 14:17:30 2019-07-27 14:18:34 t 1 2 76970 286 0.00 2019-07-27 14:30:06 2019-07-27 14:40:11 t 1 2 76972 286 0.00 2019-07-27 14:37:12 2019-07-27 14:47:18 t 1 2 76978 312 0.00 2019-07-27 15:03:33 2019-07-27 15:04:40 t 1 2 76979 312 0.00 2019-07-27 15:05:22 2019-07-27 15:06:27 t 1 2 76987 294 0.00 2019-07-27 15:13:18 2019-07-27 16:01:41 t 1 2 76990 217 0.00 2019-07-27 16:00:18 2019-07-27 16:06:14 t 1 2 76995 288 0.00 2019-07-27 16:18:41 2019-07-27 16:19:45 t 1 2 76998 288 0.00 2019-07-27 16:27:09 2019-07-27 16:28:18 t 1 2 77001 294 0.00 2019-07-27 16:15:18 2019-07-27 16:50:41 t 1 2 77006 296 0.00 2019-07-27 17:33:08 2019-07-27 17:38:32 t 1 2 77007 206 0.00 2019-07-27 17:38:30 2019-07-27 17:39:33 t 1 2 77009 230 0.00 2019-07-27 17:16:49 2019-07-27 17:44:14 t 1 2 77011 271 0.00 2019-07-27 17:41:38 2019-07-27 17:46:45 t 1 2 77014 217 0.00 2019-07-27 17:30:20 2019-07-27 17:55:26 t 1 2 77015 294 0.00 2019-07-27 17:01:29 2019-07-27 18:01:50 t 1 2 77025 288 0.00 2019-07-27 18:17:22 2019-07-27 18:18:29 t 1 2 77026 217 0.00 2019-07-27 17:58:59 2019-07-27 18:19:04 t 1 2 77028 306 0.00 2019-07-27 18:29:29 2019-07-27 18:30:31 t 1 2 77029 288 0.00 2019-07-27 18:29:48 2019-07-27 18:30:55 t 1 2 77031 232 0.00 2019-07-27 18:32:31 2019-07-27 18:33:34 t 1 2 77032 288 0.00 2019-07-27 18:32:55 2019-07-27 18:34:00 t 1 2 77035 288 0.00 2019-07-27 18:38:02 2019-07-27 18:39:05 t 1 2 77041 306 0.00 2019-07-27 18:47:24 2019-07-27 18:48:29 t 1 2 77043 318 0.00 2019-07-27 18:55:45 2019-07-27 18:58:41 t 1 2 77044 288 0.00 2019-07-27 18:59:06 2019-07-27 19:00:13 t 1 2 77050 288 0.00 2019-07-27 19:27:09 2019-07-27 19:28:14 t 1 2 77052 288 0.00 2019-07-27 19:36:16 2019-07-27 19:37:22 t 1 2 77055 312 0.00 2019-07-27 19:40:12 2019-07-27 19:41:18 t 1 2 77061 312 0.00 2019-07-27 19:46:33 2019-07-27 19:47:40 t 1 2 81229 212 0.00 2019-08-08 15:39:25 2019-08-08 15:40:05 t 1 2 81231 220 0.00 2019-08-08 15:50:13 2019-08-08 15:50:23 t 1 1 77072 212 0.00 2019-07-27 16:52:21 2019-07-27 20:34:30 t 1 2 77501 217 0.00 2019-07-29 04:09:00 2019-07-29 04:10:03 t 1 2 77074 304 0.00 2019-07-27 20:22:39 2019-07-27 20:37:44 t 1 2 77079 230 0.00 2019-07-27 19:52:58 2019-07-27 20:48:03 t 1 2 77080 294 0.00 2019-07-27 19:00:39 2019-07-27 20:54:03 t 1 2 77082 304 0.00 2019-07-27 20:54:15 2019-07-27 21:04:20 t 1 2 77085 288 0.00 2019-07-27 21:17:05 2019-07-27 21:18:11 t 1 2 77087 304 0.00 2019-07-27 21:06:55 2019-07-27 21:27:00 t 1 2 77094 306 0.00 2019-07-27 21:45:45 2019-07-27 21:46:45 t 1 2 77095 306 0.00 2019-07-27 21:47:24 2019-07-27 21:48:27 t 1 2 77096 304 0.00 2019-07-27 21:38:45 2019-07-27 21:48:51 t 1 2 77101 292 0.00 2019-07-27 21:52:49 2019-07-27 22:07:54 t 1 2 77105 306 0.00 2019-07-27 22:14:33 2019-07-27 22:15:37 t 1 2 77106 304 0.00 2019-07-27 22:13:56 2019-07-27 22:24:01 t 1 2 77107 212 0.00 2019-07-27 22:23:40 2019-07-27 22:25:57 t 1 2 77505 217 0.00 2019-07-29 07:15:37 2019-07-29 07:25:42 t 1 2 77117 218 0.00 2019-07-27 22:29:12 2019-07-27 22:39:17 t 1 2 77118 306 0.00 2019-07-27 22:42:18 2019-07-27 22:43:22 t 1 2 77123 212 0.00 2019-07-27 23:05:43 2019-07-27 23:05:56 t 1 2 77124 217 0.00 2019-07-27 22:26:38 2019-07-27 23:06:43 t 1 2 77128 304 0.00 2019-07-27 23:08:52 2019-07-27 23:08:56 t 1 2 77137 286 0.00 2019-07-27 23:25:22 2019-07-27 23:25:22 f 1 2 77142 304 0.00 2019-07-27 23:25:37 2019-07-27 23:35:42 t 1 2 77146 288 0.00 2019-07-27 23:58:46 2019-07-27 23:59:50 t 1 2 77150 212 0.00 2019-07-28 00:20:29 2019-07-28 00:20:47 t 1 2 77151 304 0.00 2019-07-28 00:09:13 2019-07-28 00:24:19 t 1 2 77152 318 0.00 2019-07-28 00:27:49 2019-07-28 00:29:05 t 1 2 77154 304 0.00 2019-07-28 00:41:54 2019-07-28 00:41:55 t 1 2 77155 272 0.00 2019-07-27 21:57:44 2019-07-28 00:50:27 t 1 2 77156 304 0.00 2019-07-28 00:42:07 2019-07-28 00:57:12 t 1 2 76903 234 0.00 2019-07-27 10:18:24 2019-07-27 11:03:29 t 1 2 76906 306 0.00 2019-07-27 11:18:25 2019-07-27 11:19:26 t 1 2 76914 304 0.00 2019-07-27 11:45:13 2019-07-27 12:05:18 t 1 2 76915 294 0.00 2019-07-27 12:12:45 2019-07-27 12:15:24 t 1 2 76922 288 0.00 2019-07-27 12:24:25 2019-07-27 12:25:28 t 1 2 76924 286 0.00 2019-07-27 12:22:12 2019-07-27 12:32:18 t 1 2 76927 286 0.00 2019-07-27 12:31:58 2019-07-27 12:36:35 t 1 2 76928 217 0.00 2019-07-27 11:01:52 2019-07-27 12:40:03 t 1 2 76930 286 0.00 2019-07-27 12:45:40 2019-07-27 12:55:45 t 1 2 76931 217 0.00 2019-07-27 12:37:34 2019-07-27 12:57:39 t 1 2 76934 304 0.00 2019-07-27 12:36:48 2019-07-27 13:01:53 t 1 2 76941 296 0.00 2019-07-27 13:03:47 2019-07-27 13:16:07 t 1 2 76942 312 0.00 2019-07-27 13:15:47 2019-07-27 13:16:51 t 1 2 76943 304 0.00 2019-07-27 12:56:22 2019-07-27 13:21:27 t 1 2 76952 312 0.00 2019-07-27 13:49:45 2019-07-27 13:49:48 t 1 2 76953 312 0.00 2019-07-27 13:50:08 2019-07-27 13:51:07 t 1 2 76955 312 0.00 2019-07-27 13:53:57 2019-07-27 13:54:59 t 1 2 76960 236 0.00 2019-07-27 13:49:28 2019-07-27 14:14:33 t 1 2 76962 304 0.00 2019-07-27 14:05:03 2019-07-27 14:15:08 t 1 2 76966 306 0.00 2019-07-27 14:25:40 2019-07-27 14:26:43 t 1 2 76968 247 0.00 2019-07-27 14:18:13 2019-07-27 14:34:13 t 1 2 76969 206 0.00 2019-07-27 14:36:11 2019-07-27 14:37:17 t 1 2 76971 230 0.00 2019-07-27 13:04:24 2019-07-27 14:46:25 t 1 2 76973 294 0.00 2019-07-27 14:49:29 2019-07-27 14:55:00 t 1 2 76976 304 0.00 2019-07-27 14:40:39 2019-07-27 15:00:44 t 1 2 76977 304 0.00 2019-07-27 14:53:02 2019-07-27 15:03:07 t 1 2 76980 312 0.00 2019-07-27 15:07:46 2019-07-27 15:08:51 t 1 2 76981 271 0.00 2019-07-27 14:56:48 2019-07-27 15:16:53 t 1 2 76983 217 0.00 2019-07-27 15:25:19 2019-07-27 15:30:57 t 1 2 76984 304 0.00 2019-07-27 15:29:56 2019-07-27 15:40:01 t 1 2 76985 271 0.00 2019-07-27 15:11:03 2019-07-27 15:41:37 t 1 2 76986 306 0.00 2019-07-27 15:42:38 2019-07-27 15:43:42 t 1 2 76991 288 0.00 2019-07-27 16:07:19 2019-07-27 16:08:27 t 1 2 76993 306 0.00 2019-07-27 16:14:37 2019-07-27 16:15:38 t 1 2 76994 271 0.00 2019-07-27 15:52:51 2019-07-27 16:17:56 t 1 2 76996 304 0.00 2019-07-27 16:04:44 2019-07-27 16:19:50 t 1 2 76999 286 0.00 2019-07-27 16:31:23 2019-07-27 16:41:28 t 1 2 77000 304 0.00 2019-07-27 16:20:09 2019-07-27 16:45:14 t 1 2 77002 304 0.00 2019-07-27 16:35:53 2019-07-27 16:50:59 t 1 2 77003 247 0.00 2019-07-27 16:54:17 2019-07-27 16:56:19 t 1 2 77005 230 0.00 2019-07-27 15:54:27 2019-07-27 17:19:33 t 1 2 77010 271 0.00 2019-07-27 16:34:19 2019-07-27 17:44:24 t 1 2 77012 312 0.00 2019-07-27 17:46:04 2019-07-27 17:46:48 t 1 2 77016 234 0.00 2019-07-27 17:59:22 2019-07-27 18:03:39 t 1 2 77018 312 0.00 2019-07-27 18:04:37 2019-07-27 18:05:44 t 1 2 77023 306 0.00 2019-07-27 18:10:24 2019-07-27 18:11:28 t 1 2 77024 236 0.00 2019-07-27 16:35:20 2019-07-27 18:15:26 t 1 2 77033 288 0.00 2019-07-27 18:35:22 2019-07-27 18:36:26 t 1 2 77036 288 0.00 2019-07-27 18:41:30 2019-07-27 18:42:37 t 1 2 77502 217 0.00 2019-07-29 04:11:45 2019-07-29 04:12:53 t 1 2 77038 288 0.00 2019-07-27 18:43:08 2019-07-27 18:44:13 t 1 2 77039 304 0.00 2019-07-27 18:41:59 2019-07-27 18:45:51 t 1 2 77042 304 0.00 2019-07-27 18:55:34 2019-07-27 18:55:34 t 1 2 77045 304 0.00 2019-07-27 18:55:43 2019-07-27 19:05:49 t 1 2 77049 306 0.00 2019-07-27 19:23:52 2019-07-27 19:24:59 t 1 2 77054 218 0.00 2019-07-27 19:30:26 2019-07-27 19:40:31 t 1 2 77056 286 0.00 2019-07-27 19:32:40 2019-07-27 19:42:46 t 1 2 77058 304 0.00 2019-07-27 19:45:17 2019-07-27 19:45:30 t 1 2 77062 312 0.00 2019-07-27 19:48:13 2019-07-27 19:49:20 t 1 2 77068 217 0.00 2019-07-27 19:52:02 2019-07-27 20:04:37 t 1 2 77069 218 0.00 2019-07-27 20:01:32 2019-07-27 20:11:37 t 1 2 77071 218 0.00 2019-07-27 20:21:15 2019-07-27 20:31:20 t 1 2 77075 306 0.00 2019-07-27 20:38:23 2019-07-27 20:39:27 t 1 2 77076 304 0.00 2019-07-27 20:29:50 2019-07-27 20:39:55 t 1 2 77077 306 0.00 2019-07-27 20:44:48 2019-07-27 20:45:52 t 1 2 77078 288 0.00 2019-07-27 20:46:12 2019-07-27 20:47:15 t 1 2 77086 288 0.00 2019-07-27 21:19:44 2019-07-27 21:20:49 t 1 2 77088 306 0.00 2019-07-27 21:30:14 2019-07-27 21:31:21 t 1 2 77090 218 0.00 2019-07-27 21:19:43 2019-07-27 21:34:48 t 1 2 77092 212 0.00 2019-07-27 21:34:46 2019-07-27 21:38:34 t 1 2 77097 288 0.00 2019-07-27 21:57:54 2019-07-27 21:58:59 t 1 2 77102 234 0.00 2019-07-27 22:00:38 2019-07-27 22:10:43 t 1 2 77108 212 0.00 2019-07-27 22:26:24 2019-07-27 22:29:50 t 1 2 77110 217 0.00 2019-07-27 22:22:09 2019-07-27 22:32:14 t 1 2 77111 232 0.00 2019-07-27 22:32:20 2019-07-27 22:33:26 t 1 2 77113 232 0.00 2019-07-27 22:34:17 2019-07-27 22:35:23 t 1 2 77114 247 0.00 2019-07-27 22:35:44 2019-07-27 22:37:57 t 1 2 77119 306 0.00 2019-07-27 22:48:33 2019-07-27 22:49:35 t 1 2 77120 212 0.00 2019-07-27 22:31:40 2019-07-27 22:56:02 t 1 2 77125 286 0.00 2019-07-27 22:57:17 2019-07-27 23:06:48 t 1 2 77131 306 0.00 2019-07-27 23:09:45 2019-07-27 23:10:47 t 1 2 77133 212 0.00 2019-07-27 23:19:14 2019-07-27 23:19:45 t 1 2 77135 288 0.00 2019-07-27 23:21:13 2019-07-27 23:22:17 t 1 2 77136 286 0.00 2019-07-27 23:25:14 2019-07-27 23:25:14 f 1 2 77141 312 0.00 2019-07-27 23:33:50 2019-07-27 23:34:57 t 1 2 77145 243 0.00 2019-07-27 23:09:10 2019-07-27 23:42:41 t 1 2 77147 212 0.00 2019-07-28 00:07:47 2019-07-28 00:08:18 t 1 2 77158 212 0.00 2019-07-28 00:59:20 2019-07-28 00:59:37 t 1 2 81201 220 0.00 2019-08-08 14:26:23 2019-08-08 14:26:30 t 1 1 77166 217 0.00 2019-07-28 04:02:20 2019-07-28 04:02:23 t 1 2 77175 314 0.00 2019-07-28 07:33:22 2019-07-28 07:33:58 t 1 2 77182 306 0.00 2019-07-28 08:03:42 2019-07-28 08:04:45 t 1 2 77185 306 0.00 2019-07-28 08:11:04 2019-07-28 08:12:09 t 1 2 77192 306 0.00 2019-07-28 08:36:56 2019-07-28 08:38:01 t 1 2 77194 286 0.00 2019-07-28 07:39:02 2019-07-28 08:39:07 t 1 2 77199 217 0.00 2019-07-28 08:40:27 2019-07-28 08:55:32 t 1 2 77205 304 0.00 2019-07-28 09:07:55 2019-07-28 09:07:55 f 1 2 77207 304 0.00 2019-07-28 09:08:16 2019-07-28 09:08:16 f 1 2 77209 304 0.00 2019-07-28 09:08:37 2019-07-28 09:08:37 f 1 2 77210 304 0.00 2019-07-28 09:08:49 2019-07-28 09:08:49 f 1 2 77214 217 0.00 2019-07-28 09:01:45 2019-07-28 09:11:50 t 1 2 77218 306 0.00 2019-07-28 09:16:31 2019-07-28 09:17:37 t 1 2 77219 296 0.00 2019-07-28 09:15:32 2019-07-28 09:18:30 t 1 2 77220 304 0.00 2019-07-28 09:18:30 2019-07-28 09:18:37 t 1 2 77224 304 0.00 2019-07-28 09:21:59 2019-07-28 09:21:59 f 1 2 77226 304 0.00 2019-07-28 09:22:19 2019-07-28 09:22:19 f 1 2 77230 304 0.00 2019-07-28 09:22:50 2019-07-28 09:22:50 f 1 2 76963 306 0.00 2019-07-27 14:16:10 2019-07-27 14:17:15 t 1 2 76965 306 0.00 2019-07-27 14:23:14 2019-07-27 14:24:15 t 1 2 76967 286 0.00 2019-07-27 14:24:04 2019-07-27 14:27:08 t 1 2 76974 271 0.00 2019-07-27 14:56:16 2019-07-27 14:56:45 t 1 2 76975 271 0.00 2019-07-27 14:44:58 2019-07-27 15:00:03 t 1 2 76982 304 0.00 2019-07-27 15:08:42 2019-07-27 15:18:47 t 1 2 76988 304 0.00 2019-07-27 15:42:39 2019-07-27 16:02:44 t 1 2 76989 218 0.00 2019-07-27 15:54:25 2019-07-27 16:04:30 t 1 2 76992 288 0.00 2019-07-27 16:10:34 2019-07-27 16:11:37 t 1 2 76997 288 0.00 2019-07-27 16:25:01 2019-07-27 16:26:09 t 1 2 77004 220 0.00 2019-07-27 16:36:12 2019-07-27 17:01:17 t 1 2 77008 234 0.00 2019-07-27 17:16:47 2019-07-27 17:39:48 t 1 2 77013 312 0.00 2019-07-27 17:48:39 2019-07-27 17:49:46 t 1 2 77017 288 0.00 2019-07-27 18:03:56 2019-07-27 18:05:04 t 1 2 77019 271 0.00 2019-07-27 18:01:16 2019-07-27 18:06:24 t 1 2 77020 312 0.00 2019-07-27 18:06:25 2019-07-27 18:07:28 t 1 2 77021 217 0.00 2019-07-27 17:48:07 2019-07-27 18:08:12 t 1 2 77022 312 0.00 2019-07-27 18:07:49 2019-07-27 18:08:56 t 1 2 77027 288 0.00 2019-07-27 18:27:48 2019-07-27 18:28:53 t 1 2 77030 306 0.00 2019-07-27 18:30:46 2019-07-27 18:31:50 t 1 2 77034 314 0.00 2019-07-27 18:28:45 2019-07-27 18:38:50 t 1 2 77040 217 0.00 2019-07-27 18:11:22 2019-07-27 18:46:27 t 1 2 77046 288 0.00 2019-07-27 19:05:13 2019-07-27 19:06:17 t 1 2 77047 318 0.00 2019-07-27 19:06:29 2019-07-27 19:07:26 t 1 2 77048 288 0.00 2019-07-27 19:17:05 2019-07-27 19:18:08 t 1 2 77051 288 0.00 2019-07-27 19:36:10 2019-07-27 19:36:13 t 1 2 77053 312 0.00 2019-07-27 19:36:47 2019-07-27 19:37:49 t 1 2 77057 312 0.00 2019-07-27 19:42:11 2019-07-27 19:43:14 t 1 2 77059 312 0.00 2019-07-27 19:44:31 2019-07-27 19:45:35 t 1 2 77060 217 0.00 2019-07-27 19:43:31 2019-07-27 19:46:31 t 1 2 77063 312 0.00 2019-07-27 19:49:49 2019-07-27 19:50:53 t 1 2 77064 312 0.00 2019-07-27 19:51:53 2019-07-27 19:52:58 t 1 2 77065 234 0.00 2019-07-27 19:04:28 2019-07-27 19:54:33 t 1 2 77066 304 0.00 2019-07-27 19:45:45 2019-07-27 19:55:51 t 1 2 77081 272 0.00 2019-07-27 20:39:50 2019-07-27 20:58:46 t 1 2 77083 306 0.00 2019-07-27 21:14:48 2019-07-27 21:15:52 t 1 2 77084 306 0.00 2019-07-27 21:16:34 2019-07-27 21:17:39 t 1 2 77089 306 0.00 2019-07-27 21:31:59 2019-07-27 21:33:01 t 1 2 77091 306 0.00 2019-07-27 21:35:44 2019-07-27 21:36:46 t 1 2 77093 217 0.00 2019-07-27 21:17:09 2019-07-27 21:42:14 t 1 2 77098 304 0.00 2019-07-27 21:45:45 2019-07-27 22:00:50 t 1 2 77099 206 0.00 2019-07-27 22:02:53 2019-07-27 22:03:54 t 1 2 77100 206 0.00 2019-07-27 22:04:21 2019-07-27 22:05:25 t 1 2 77103 232 0.00 2019-07-27 22:10:17 2019-07-27 22:11:23 t 1 2 77104 306 0.00 2019-07-27 22:12:52 2019-07-27 22:13:53 t 1 2 77109 232 0.00 2019-07-27 22:30:31 2019-07-27 22:31:38 t 1 2 77115 234 0.00 2019-07-27 22:28:17 2019-07-27 22:38:22 t 1 2 77116 232 0.00 2019-07-27 22:37:37 2019-07-27 22:38:45 t 1 2 77121 288 0.00 2019-07-27 23:03:20 2019-07-27 23:04:25 t 1 2 77122 304 0.00 2019-07-27 23:05:18 2019-07-27 23:05:24 t 1 2 77126 212 0.00 2019-07-27 23:06:16 2019-07-27 23:07:13 t 1 2 77127 212 0.00 2019-07-27 23:07:22 2019-07-27 23:07:45 t 1 2 77129 243 0.00 2019-07-27 23:09:00 2019-07-27 23:09:04 t 1 2 77130 304 0.00 2019-07-27 23:09:09 2019-07-27 23:09:18 t 1 2 77132 304 0.00 2019-07-27 23:05:34 2019-07-27 23:15:39 t 1 2 77134 304 0.00 2019-07-27 23:09:40 2019-07-27 23:19:45 t 1 2 77138 286 0.00 2019-07-27 23:25:33 2019-07-27 23:25:33 f 1 2 77139 286 0.00 2019-07-27 23:16:14 2019-07-27 23:26:19 t 1 2 77140 286 0.00 2019-07-27 23:20:12 2019-07-27 23:30:17 t 1 2 77143 212 0.00 2019-07-27 23:39:07 2019-07-27 23:39:58 t 1 2 77144 296 0.00 2019-07-27 23:39:32 2019-07-27 23:42:32 t 1 2 77148 247 0.00 2019-07-28 00:10:13 2019-07-28 00:15:19 t 1 2 77149 318 0.00 2019-07-28 00:11:13 2019-07-28 00:17:35 t 1 2 81202 306 0.00 2019-08-08 14:28:08 2019-08-08 14:29:13 t 1 2 77157 212 0.00 2019-07-28 00:58:32 2019-07-28 00:58:51 t 1 2 77159 212 0.00 2019-07-28 01:00:08 2019-07-28 01:00:51 t 1 2 77160 271 0.00 2019-07-27 21:45:07 2019-07-28 01:20:13 t 1 2 77161 217 0.00 2019-07-28 01:30:11 2019-07-28 01:45:16 t 1 2 77167 217 0.00 2019-07-28 04:02:36 2019-07-28 04:03:42 t 1 2 77172 217 0.00 2019-07-28 07:19:04 2019-07-28 07:29:09 t 1 2 77174 294 0.00 2019-07-28 07:11:10 2019-07-28 07:33:58 t 1 2 77186 304 0.00 2019-07-28 08:03:18 2019-07-28 08:13:23 t 1 2 77188 217 0.00 2019-07-28 08:07:08 2019-07-28 08:32:14 t 1 2 77190 312 0.00 2019-07-28 08:32:46 2019-07-28 08:33:52 t 1 2 77196 312 0.00 2019-07-28 08:41:09 2019-07-28 08:42:13 t 1 2 77204 304 0.00 2019-07-28 09:07:46 2019-07-28 09:07:46 f 1 2 77206 304 0.00 2019-07-28 09:08:05 2019-07-28 09:08:05 f 1 2 77208 304 0.00 2019-07-28 09:08:24 2019-07-28 09:08:24 f 1 2 77211 304 0.00 2019-07-28 09:09:10 2019-07-28 09:09:10 f 1 2 77213 217 0.00 2019-07-28 08:49:59 2019-07-28 09:10:04 t 1 2 77217 306 0.00 2019-07-28 09:14:15 2019-07-28 09:15:19 t 1 2 77225 304 0.00 2019-07-28 09:22:10 2019-07-28 09:22:10 f 1 2 77229 304 0.00 2019-07-28 09:22:43 2019-07-28 09:22:43 f 1 2 77235 304 0.00 2019-07-28 09:23:53 2019-07-28 09:23:53 f 1 2 77237 304 0.00 2019-07-28 09:24:16 2019-07-28 09:24:16 f 1 2 77245 218 0.00 2019-07-28 09:41:15 2019-07-28 09:46:33 t 1 2 77250 304 0.00 2019-07-28 09:59:58 2019-07-28 10:10:03 t 1 2 77260 220 0.00 2019-07-28 09:56:54 2019-07-28 10:47:00 t 1 2 77264 288 0.00 2019-07-28 10:54:26 2019-07-28 10:55:29 t 1 2 77266 306 0.00 2019-07-28 11:02:23 2019-07-28 11:03:27 t 1 2 77268 217 0.00 2019-07-28 10:55:38 2019-07-28 11:05:43 t 1 2 77273 306 0.00 2019-07-28 11:17:26 2019-07-28 11:18:31 t 1 2 77276 296 0.00 2019-07-28 11:36:51 2019-07-28 11:40:12 t 1 2 77285 272 0.00 2019-07-28 12:05:09 2019-07-28 12:20:14 t 1 2 77306 288 0.00 2019-07-28 13:39:11 2019-07-28 13:40:15 t 1 2 77312 306 0.00 2019-07-28 13:53:22 2019-07-28 13:54:24 t 1 2 77320 288 0.00 2019-07-28 14:16:15 2019-07-28 14:17:22 t 1 2 77323 217 0.00 2019-07-28 14:10:38 2019-07-28 14:20:43 t 1 2 77325 306 0.00 2019-07-28 14:23:16 2019-07-28 14:24:22 t 1 2 77329 294 0.00 2019-07-28 14:13:29 2019-07-28 14:49:33 t 1 2 77332 302 0.00 2019-07-28 14:12:55 2019-07-28 14:50:33 t 1 2 77334 306 0.00 2019-07-28 14:52:27 2019-07-28 14:53:28 t 1 2 77336 304 0.00 2019-07-28 14:57:27 2019-07-28 15:07:32 t 1 2 77339 306 0.00 2019-07-28 15:17:07 2019-07-28 15:18:04 t 1 2 77344 288 0.00 2019-07-28 15:44:50 2019-07-28 15:45:53 t 1 2 77350 288 0.00 2019-07-28 16:00:10 2019-07-28 16:01:15 t 1 2 77353 288 0.00 2019-07-28 16:09:45 2019-07-28 16:10:53 t 1 2 77162 234 0.00 2019-07-28 00:22:52 2019-07-28 02:17:57 t 1 2 77163 294 0.00 2019-07-28 00:29:00 2019-07-28 02:24:25 t 1 2 77165 217 0.00 2019-07-28 04:00:00 2019-07-28 04:01:04 t 1 2 77168 302 0.00 2019-07-28 03:45:26 2019-07-28 06:15:32 t 1 2 77503 218 0.00 2019-07-29 05:48:19 2019-07-29 05:58:24 t 1 2 77170 294 0.00 2019-07-28 06:24:52 2019-07-28 07:04:24 t 1 2 77171 218 0.00 2019-07-28 07:17:21 2019-07-28 07:27:27 t 1 2 77173 217 0.00 2019-07-28 07:25:39 2019-07-28 07:33:58 t 1 2 77177 212 0.00 2019-07-28 07:35:42 2019-07-28 07:36:18 t 1 2 77184 271 0.00 2019-07-28 07:57:04 2019-07-28 08:12:09 t 1 2 77504 288 0.00 2019-07-29 07:20:26 2019-07-29 07:21:31 t 1 2 77195 312 0.00 2019-07-28 08:39:18 2019-07-28 08:40:22 t 1 2 77197 312 0.00 2019-07-28 08:34:50 2019-07-28 08:44:55 t 1 2 77200 243 0.00 2019-07-28 08:50:16 2019-07-28 08:56:42 t 1 2 77201 304 0.00 2019-07-28 09:07:14 2019-07-28 09:07:14 f 1 2 77203 304 0.00 2019-07-28 09:07:35 2019-07-28 09:07:35 f 1 2 77212 304 0.00 2019-07-28 08:59:15 2019-07-28 09:09:20 t 1 2 77216 304 0.00 2019-07-28 09:02:51 2019-07-28 09:12:56 t 1 2 77223 304 0.00 2019-07-28 09:21:49 2019-07-28 09:21:49 f 1 2 77228 304 0.00 2019-07-28 09:22:31 2019-07-28 09:22:31 f 1 2 77232 304 0.00 2019-07-28 09:23:02 2019-07-28 09:23:02 f 1 2 77240 304 0.00 2019-07-28 09:09:39 2019-07-28 09:24:44 t 1 2 77244 212 0.00 2019-07-28 09:39:47 2019-07-28 09:40:25 t 1 2 77246 304 0.00 2019-07-28 09:25:52 2019-07-28 09:55:57 t 1 2 77248 217 0.00 2019-07-28 09:29:35 2019-07-28 10:04:40 t 1 2 81203 220 0.00 2019-08-08 14:31:02 2019-08-08 14:36:51 t 1 1 77256 206 0.00 2019-07-28 10:25:34 2019-07-28 10:26:40 t 1 2 77258 304 0.00 2019-07-28 10:16:14 2019-07-28 10:36:19 t 1 2 77261 286 0.00 2019-07-28 09:50:21 2019-07-28 10:47:30 t 1 2 77263 304 0.00 2019-07-28 10:42:50 2019-07-28 10:52:55 t 1 2 77265 217 0.00 2019-07-28 10:20:43 2019-07-28 11:00:49 t 1 2 81205 355 0.00 2019-08-08 14:26:45 2019-08-08 14:41:50 t 1 2 77272 286 0.00 2019-07-28 10:46:09 2019-07-28 11:16:14 t 1 2 77274 217 0.00 2019-07-28 11:01:10 2019-07-28 11:21:15 t 1 2 77277 217 0.00 2019-07-28 11:18:23 2019-07-28 11:43:28 t 1 2 77281 288 0.00 2019-07-28 12:04:39 2019-07-28 12:05:45 t 1 2 77282 304 0.00 2019-07-28 11:56:51 2019-07-28 12:11:56 t 1 2 77283 217 0.00 2019-07-28 11:37:06 2019-07-28 12:12:11 t 1 2 77286 288 0.00 2019-07-28 12:19:15 2019-07-28 12:20:19 t 1 2 77290 220 0.00 2019-07-28 12:28:21 2019-07-28 12:34:16 t 1 2 77291 217 0.00 2019-07-28 11:43:05 2019-07-28 12:38:10 t 1 2 77292 288 0.00 2019-07-28 12:40:09 2019-07-28 12:41:13 t 1 2 77293 304 0.00 2019-07-28 12:35:19 2019-07-28 12:45:24 t 1 2 77301 217 0.00 2019-07-28 12:11:39 2019-07-28 13:31:44 t 1 2 77303 288 0.00 2019-07-28 13:35:17 2019-07-28 13:36:23 t 1 2 77307 212 0.00 2019-07-28 13:40:29 2019-07-28 13:41:12 t 1 2 77310 304 0.00 2019-07-28 13:31:53 2019-07-28 13:51:58 t 1 2 77314 306 0.00 2019-07-28 13:57:08 2019-07-28 13:58:11 t 1 2 77316 288 0.00 2019-07-28 14:07:27 2019-07-28 14:08:33 t 1 2 77318 288 0.00 2019-07-28 14:08:55 2019-07-28 14:09:57 t 1 2 77319 217 0.00 2019-07-28 13:29:21 2019-07-28 14:16:54 t 1 2 77322 217 0.00 2019-07-28 14:12:29 2019-07-28 14:19:03 t 1 2 77324 247 0.00 2019-07-28 14:17:10 2019-07-28 14:21:49 t 1 2 77326 288 0.00 2019-07-28 14:33:37 2019-07-28 14:34:44 t 1 2 77328 306 0.00 2019-07-28 14:46:37 2019-07-28 14:47:39 t 1 2 77333 218 0.00 2019-07-28 14:17:07 2019-07-28 14:50:33 t 1 2 77335 304 0.00 2019-07-28 14:57:03 2019-07-28 14:57:09 t 1 2 77337 314 0.00 2019-07-28 15:12:17 2019-07-28 15:12:22 t 1 2 81206 220 0.00 2019-08-08 14:37:28 2019-08-08 14:47:19 t 1 1 77340 318 0.00 2019-07-28 15:07:22 2019-07-28 15:23:48 t 1 2 77341 288 0.00 2019-07-28 15:27:13 2019-07-28 15:28:21 t 1 2 77342 304 0.00 2019-07-28 15:15:13 2019-07-28 15:30:19 t 1 2 77345 234 0.00 2019-07-28 15:36:16 2019-07-28 15:46:21 t 1 2 77347 288 0.00 2019-07-28 15:51:35 2019-07-28 15:52:39 t 1 2 77348 304 0.00 2019-07-28 15:52:14 2019-07-28 15:58:45 t 1 2 77351 288 0.00 2019-07-28 16:01:24 2019-07-28 16:02:28 t 1 2 77352 288 0.00 2019-07-28 16:04:01 2019-07-28 16:05:05 t 1 2 77354 288 0.00 2019-07-28 16:11:17 2019-07-28 16:12:23 t 1 2 77356 288 0.00 2019-07-28 16:13:03 2019-07-28 16:14:12 t 1 2 77361 247 0.00 2019-07-28 17:01:34 2019-07-28 17:04:18 t 1 2 77365 243 0.00 2019-07-28 17:24:47 2019-07-28 17:25:01 t 1 2 77371 304 0.00 2019-07-28 17:35:01 2019-07-28 17:45:06 t 1 2 77513 212 0.00 2019-07-29 08:24:00 2019-07-29 08:27:24 t 1 2 77375 306 0.00 2019-07-28 17:50:02 2019-07-28 17:51:09 t 1 2 77383 312 0.00 2019-07-28 18:07:51 2019-07-28 18:08:58 t 1 2 81208 247 0.00 2019-08-08 14:49:59 2019-08-08 14:51:13 t 1 2 77387 312 0.00 2019-07-28 18:11:07 2019-07-28 18:12:13 t 1 2 77391 304 0.00 2019-07-28 18:10:23 2019-07-28 18:20:28 t 1 2 77394 306 0.00 2019-07-28 18:35:23 2019-07-28 18:36:24 t 1 2 81214 220 0.00 2019-08-08 14:58:18 2019-08-08 15:08:10 t 1 1 77401 306 0.00 2019-07-28 18:56:13 2019-07-28 18:57:19 t 1 2 77404 218 0.00 2019-07-28 19:03:27 2019-07-28 19:06:15 t 1 2 77405 306 0.00 2019-07-28 19:06:20 2019-07-28 19:06:22 t 1 2 77407 306 0.00 2019-07-28 19:07:44 2019-07-28 19:08:50 t 1 2 77417 304 0.00 2019-07-28 20:16:35 2019-07-28 20:31:40 t 1 2 77419 206 0.00 2019-07-28 20:41:18 2019-07-28 20:42:23 t 1 2 77424 234 0.00 2019-07-28 20:55:16 2019-07-28 21:03:12 t 1 2 77431 304 0.00 2019-07-28 21:20:45 2019-07-28 21:35:51 t 1 2 77442 306 0.00 2019-07-28 21:58:10 2019-07-28 21:59:18 t 1 2 77443 306 0.00 2019-07-28 22:00:13 2019-07-28 22:00:15 t 1 2 77444 290 0.00 2019-07-28 22:00:13 2019-07-28 22:01:14 t 1 2 77447 306 0.00 2019-07-28 22:02:08 2019-07-28 22:03:12 t 1 2 77449 294 0.00 2019-07-28 21:08:43 2019-07-28 22:09:06 t 1 2 77455 312 0.00 2019-07-28 22:39:32 2019-07-28 22:40:34 t 1 2 77464 306 0.00 2019-07-28 22:54:14 2019-07-28 22:55:16 t 1 2 77465 232 0.00 2019-07-28 22:59:31 2019-07-28 23:00:39 t 1 2 77466 232 0.00 2019-07-28 23:01:43 2019-07-28 23:02:48 t 1 2 77469 312 0.00 2019-07-28 23:14:55 2019-07-28 23:15:59 t 1 2 77478 232 0.00 2019-07-28 23:42:34 2019-07-28 23:43:39 t 1 2 77482 243 0.00 2019-07-28 23:58:38 2019-07-29 00:11:47 t 1 2 77486 288 0.00 2019-07-29 00:13:49 2019-07-29 00:14:54 t 1 2 77489 212 0.00 2019-07-29 00:23:28 2019-07-29 00:24:12 t 1 2 77490 243 0.00 2019-07-29 00:28:03 2019-07-29 00:31:11 t 1 2 77492 304 0.00 2019-07-29 00:39:05 2019-07-29 00:54:10 t 1 2 77495 318 0.00 2019-07-29 00:50:57 2019-07-29 01:12:48 t 1 2 77497 217 0.00 2019-07-29 01:42:55 2019-07-29 02:03:01 t 1 2 77500 294 0.00 2019-07-29 01:44:19 2019-07-29 02:44:43 t 1 2 77507 217 0.00 2019-07-29 07:21:12 2019-07-29 07:33:58 t 1 2 77178 217 0.00 2019-07-28 07:37:47 2019-07-28 07:47:52 t 1 2 77179 217 0.00 2019-07-28 07:41:43 2019-07-28 07:56:48 t 1 2 77180 304 0.00 2019-07-28 08:03:05 2019-07-28 08:03:11 t 1 2 77181 288 0.00 2019-07-28 08:02:33 2019-07-28 08:03:37 t 1 2 77183 306 0.00 2019-07-28 08:09:07 2019-07-28 08:10:08 t 1 2 77187 312 0.00 2019-07-28 08:30:42 2019-07-28 08:31:45 t 1 2 77191 312 0.00 2019-07-28 08:36:11 2019-07-28 08:37:16 t 1 2 77193 312 0.00 2019-07-28 08:37:31 2019-07-28 08:38:36 t 1 2 77198 212 0.00 2019-07-28 08:49:54 2019-07-28 08:50:18 t 1 2 77202 304 0.00 2019-07-28 09:07:25 2019-07-28 09:07:25 f 1 2 77215 247 0.00 2019-07-28 09:10:46 2019-07-28 09:12:09 t 1 2 77221 288 0.00 2019-07-28 09:19:09 2019-07-28 09:20:12 t 1 2 77222 304 0.00 2019-07-28 09:21:41 2019-07-28 09:21:41 f 1 2 77227 296 0.00 2019-07-28 09:18:40 2019-07-28 09:22:27 t 1 2 77231 306 0.00 2019-07-28 09:21:51 2019-07-28 09:22:55 t 1 2 77239 306 0.00 2019-07-28 09:23:19 2019-07-28 09:24:25 t 1 2 77241 304 0.00 2019-07-28 09:24:49 2019-07-28 09:24:58 t 1 2 77243 217 0.00 2019-07-28 09:05:25 2019-07-28 09:35:30 t 1 2 77249 306 0.00 2019-07-28 10:08:50 2019-07-28 10:09:53 t 1 2 77255 294 0.00 2019-07-28 09:18:23 2019-07-28 10:25:46 t 1 2 77259 304 0.00 2019-07-28 10:33:36 2019-07-28 10:37:29 t 1 2 77271 306 0.00 2019-07-28 11:13:48 2019-07-28 11:14:54 t 1 2 77275 304 0.00 2019-07-28 11:04:56 2019-07-28 11:25:02 t 1 2 77279 212 0.00 2019-07-28 11:49:38 2019-07-28 11:49:58 t 1 2 77280 234 0.00 2019-07-28 10:51:51 2019-07-28 11:56:56 t 1 2 77284 247 0.00 2019-07-28 12:11:00 2019-07-28 12:12:44 t 1 2 77287 304 0.00 2019-07-28 12:12:11 2019-07-28 12:27:16 t 1 2 77288 288 0.00 2019-07-28 12:30:30 2019-07-28 12:31:34 t 1 2 77296 218 0.00 2019-07-28 12:44:09 2019-07-28 12:54:15 t 1 2 77298 217 0.00 2019-07-28 12:50:23 2019-07-28 13:20:29 t 1 2 77300 304 0.00 2019-07-28 13:18:55 2019-07-28 13:29:00 t 1 2 77302 288 0.00 2019-07-28 13:32:59 2019-07-28 13:34:03 t 1 2 77304 217 0.00 2019-07-28 13:11:56 2019-07-28 13:37:01 t 1 2 77305 234 0.00 2019-07-28 12:59:52 2019-07-28 13:39:57 t 1 2 77315 306 0.00 2019-07-28 13:58:49 2019-07-28 13:59:52 t 1 2 77317 304 0.00 2019-07-28 13:59:10 2019-07-28 14:09:15 t 1 2 77525 306 0.00 2019-07-29 09:02:21 2019-07-29 09:03:27 t 1 2 77331 230 0.00 2019-07-28 11:39:54 2019-07-28 14:50:33 t 1 2 77363 288 0.00 2019-07-28 17:18:42 2019-07-28 17:19:45 t 1 2 77370 243 0.00 2019-07-28 17:35:46 2019-07-28 17:41:11 t 1 2 77374 306 0.00 2019-07-28 17:48:32 2019-07-28 17:49:29 t 1 2 77376 306 0.00 2019-07-28 17:51:52 2019-07-28 17:52:55 t 1 2 77380 288 0.00 2019-07-28 18:03:20 2019-07-28 18:04:25 t 1 2 77384 312 0.00 2019-07-28 18:09:35 2019-07-28 18:10:38 t 1 2 77385 306 0.00 2019-07-28 18:10:17 2019-07-28 18:11:23 t 1 2 77388 306 0.00 2019-07-28 18:11:57 2019-07-28 18:12:57 t 1 2 77392 312 0.00 2019-07-28 18:20:20 2019-07-28 18:21:23 t 1 2 77393 306 0.00 2019-07-28 18:33:12 2019-07-28 18:34:14 t 1 2 77395 217 0.00 2019-07-28 18:24:47 2019-07-28 18:39:53 t 1 2 77399 306 0.00 2019-07-28 18:48:37 2019-07-28 18:49:41 t 1 2 77400 306 0.00 2019-07-28 18:52:35 2019-07-28 18:53:40 t 1 2 77412 294 0.00 2019-07-28 18:40:42 2019-07-28 19:33:14 t 1 2 77418 290 0.00 2019-07-28 20:31:50 2019-07-28 20:32:58 t 1 2 77421 306 0.00 2019-07-28 20:51:20 2019-07-28 20:52:25 t 1 2 77422 292 0.00 2019-07-28 20:58:21 2019-07-28 20:59:27 t 1 2 77423 304 0.00 2019-07-28 20:32:18 2019-07-28 21:02:24 t 1 2 77426 218 0.00 2019-07-28 20:52:38 2019-07-28 21:12:43 t 1 2 77428 292 0.00 2019-07-28 21:14:07 2019-07-28 21:15:10 t 1 2 77429 296 0.00 2019-07-28 21:11:16 2019-07-28 21:21:39 t 1 2 77432 306 0.00 2019-07-28 21:37:28 2019-07-28 21:38:30 t 1 2 77450 288 0.00 2019-07-28 22:22:07 2019-07-28 22:23:11 t 1 2 77457 288 0.00 2019-07-28 22:41:11 2019-07-28 22:42:16 t 1 2 77458 312 0.00 2019-07-28 22:42:22 2019-07-28 22:43:29 t 1 2 77460 312 0.00 2019-07-28 22:43:45 2019-07-28 22:44:48 t 1 2 77462 306 0.00 2019-07-28 22:52:33 2019-07-28 22:53:41 t 1 2 77468 212 0.00 2019-07-28 22:56:28 2019-07-28 23:06:33 t 1 2 77470 306 0.00 2019-07-28 23:16:49 2019-07-28 23:17:51 t 1 2 77472 212 0.00 2019-07-28 23:19:22 2019-07-28 23:20:05 t 1 2 77474 306 0.00 2019-07-28 23:27:29 2019-07-28 23:28:31 t 1 2 77476 206 0.00 2019-07-28 23:29:12 2019-07-28 23:30:16 t 1 2 77481 212 0.00 2019-07-28 23:20:11 2019-07-29 00:10:57 t 1 2 77484 220 0.00 2019-07-28 23:58:26 2019-07-29 00:13:31 t 1 2 77496 294 0.00 2019-07-29 00:17:03 2019-07-29 01:17:27 t 1 2 77527 304 0.00 2019-07-29 09:12:57 2019-07-29 09:13:09 t 1 2 77528 212 0.00 2019-07-29 09:12:09 2019-07-29 09:15:00 t 1 2 77529 304 0.00 2019-07-29 08:57:35 2019-07-29 09:17:40 t 1 2 77533 288 0.00 2019-07-29 09:30:46 2019-07-29 09:31:49 t 1 2 77540 306 0.00 2019-07-29 09:44:53 2019-07-29 09:45:57 t 1 2 77541 306 0.00 2019-07-29 09:52:22 2019-07-29 09:53:25 t 1 2 77543 304 0.00 2019-07-29 09:41:56 2019-07-29 09:57:02 t 1 2 77546 304 0.00 2019-07-29 10:06:43 2019-07-29 10:06:43 f 1 2 77551 304 0.00 2019-07-29 10:07:33 2019-07-29 10:07:33 f 1 2 77563 306 0.00 2019-07-29 10:16:01 2019-07-29 10:17:06 t 1 2 77565 212 0.00 2019-07-29 10:23:32 2019-07-29 10:24:02 t 1 2 77575 202 0.00 2019-07-29 11:15:41 2019-07-29 11:16:45 t 1 2 77577 304 0.00 2019-07-29 11:11:50 2019-07-29 11:21:55 t 1 2 77578 232 0.00 2019-07-29 11:22:04 2019-07-29 11:23:06 t 1 2 77579 243 0.00 2019-07-29 11:22:46 2019-07-29 11:26:26 t 1 2 77581 286 0.00 2019-07-29 11:24:12 2019-07-29 11:34:17 t 1 2 77595 304 0.00 2019-07-29 12:09:30 2019-07-29 12:09:38 t 1 2 77597 304 0.00 2019-07-29 12:09:52 2019-07-29 12:19:57 t 1 2 77598 212 0.00 2019-07-29 12:19:53 2019-07-29 12:22:48 t 1 2 77602 212 0.00 2019-07-29 12:39:32 2019-07-29 12:39:53 t 1 2 77604 296 0.00 2019-07-29 12:41:41 2019-07-29 12:43:05 t 1 2 77607 304 0.00 2019-07-29 12:38:18 2019-07-29 12:48:23 t 1 2 77610 320 0.00 2019-07-29 12:46:17 2019-07-29 13:01:22 t 1 2 77611 243 0.00 2019-07-29 13:00:35 2019-07-29 13:03:42 t 1 2 77614 306 0.00 2019-07-29 13:12:06 2019-07-29 13:13:10 t 1 2 77624 304 0.00 2019-07-29 13:54:04 2019-07-29 14:09:09 t 1 2 77625 204 0.00 2019-07-29 13:51:34 2019-07-29 14:12:34 t 1 2 77636 306 0.00 2019-07-29 15:05:34 2019-07-29 15:06:39 t 1 2 77642 306 0.00 2019-07-29 15:16:52 2019-07-29 15:17:55 t 1 2 77649 304 0.00 2019-07-29 15:29:30 2019-07-29 15:49:35 t 1 2 77656 312 0.00 2019-07-29 16:21:36 2019-07-29 16:22:39 t 1 2 77661 220 0.00 2019-07-29 15:28:34 2019-07-29 16:40:14 t 1 2 77672 217 0.00 2019-07-29 17:18:06 2019-07-29 17:28:11 t 1 2 77233 304 0.00 2019-07-28 09:23:30 2019-07-28 09:23:30 f 1 2 77234 304 0.00 2019-07-28 09:23:44 2019-07-28 09:23:44 f 1 2 77236 304 0.00 2019-07-28 09:24:07 2019-07-28 09:24:07 f 1 2 77238 304 0.00 2019-07-28 09:24:24 2019-07-28 09:24:24 f 1 2 77242 304 0.00 2019-07-28 09:18:48 2019-07-28 09:28:53 t 1 2 77247 304 0.00 2019-07-28 09:51:11 2019-07-28 09:56:14 t 1 2 77251 304 0.00 2019-07-28 10:15:46 2019-07-28 10:15:56 t 1 2 77253 212 0.00 2019-07-28 10:18:55 2019-07-28 10:20:26 t 1 2 77254 217 0.00 2019-07-28 10:00:24 2019-07-28 10:25:29 t 1 2 77257 206 0.00 2019-07-28 10:27:16 2019-07-28 10:28:20 t 1 2 77262 218 0.00 2019-07-28 10:30:27 2019-07-28 10:50:32 t 1 2 77267 212 0.00 2019-07-28 11:04:44 2019-07-28 11:05:06 t 1 2 77269 306 0.00 2019-07-28 11:06:58 2019-07-28 11:08:07 t 1 2 77278 218 0.00 2019-07-28 11:36:27 2019-07-28 11:46:33 t 1 2 77289 304 0.00 2019-07-28 12:23:22 2019-07-28 12:33:27 t 1 2 77294 217 0.00 2019-07-28 12:44:23 2019-07-28 12:45:33 t 1 2 77295 304 0.00 2019-07-28 12:43:51 2019-07-28 12:53:56 t 1 2 77297 217 0.00 2019-07-28 12:44:53 2019-07-28 12:59:58 t 1 2 77508 294 0.00 2019-07-29 07:13:58 2019-07-29 07:33:58 t 1 2 77308 217 0.00 2019-07-28 13:21:25 2019-07-28 13:41:30 t 1 2 77309 217 0.00 2019-07-28 13:29:50 2019-07-28 13:49:56 t 1 2 77311 306 0.00 2019-07-28 13:53:14 2019-07-28 13:53:18 t 1 2 77313 220 0.00 2019-07-28 13:25:18 2019-07-28 13:55:23 t 1 2 77321 304 0.00 2019-07-28 14:02:41 2019-07-28 14:17:46 t 1 2 81204 220 0.00 2019-08-08 14:36:51 2019-08-08 14:36:59 t 1 1 77509 296 0.00 2019-07-29 07:55:03 2019-07-29 07:57:19 t 1 2 77346 288 0.00 2019-07-28 15:44:40 2019-07-28 15:46:34 t 1 2 77349 288 0.00 2019-07-28 15:57:59 2019-07-28 15:59:03 t 1 2 77355 302 0.00 2019-07-28 15:08:20 2019-07-28 16:13:25 t 1 2 77360 234 0.00 2019-07-28 16:22:48 2019-07-28 17:02:53 t 1 2 77362 292 0.00 2019-07-28 17:12:31 2019-07-28 17:13:36 t 1 2 77366 243 0.00 2019-07-28 17:25:10 2019-07-28 17:26:00 t 1 2 77367 243 0.00 2019-07-28 17:26:05 2019-07-28 17:28:55 t 1 2 77372 306 0.00 2019-07-28 17:45:23 2019-07-28 17:46:27 t 1 2 77377 306 0.00 2019-07-28 17:54:11 2019-07-28 17:55:14 t 1 2 77379 306 0.00 2019-07-28 18:01:43 2019-07-28 18:02:49 t 1 2 77382 312 0.00 2019-07-28 18:06:06 2019-07-28 18:07:12 t 1 2 77397 306 0.00 2019-07-28 18:45:04 2019-07-28 18:46:05 t 1 2 77398 247 0.00 2019-07-28 18:48:33 2019-07-28 18:49:39 t 1 2 77402 304 0.00 2019-07-28 18:50:47 2019-07-28 19:00:53 t 1 2 77403 217 0.00 2019-07-28 18:34:12 2019-07-28 19:04:17 t 1 2 77406 306 0.00 2019-07-28 19:06:26 2019-07-28 19:07:29 t 1 2 77408 306 0.00 2019-07-28 19:09:12 2019-07-28 19:10:19 t 1 2 77409 234 0.00 2019-07-28 18:54:36 2019-07-28 19:19:42 t 1 2 77411 288 0.00 2019-07-28 19:21:53 2019-07-28 19:22:59 t 1 2 77413 247 0.00 2019-07-28 19:46:13 2019-07-28 19:49:50 t 1 2 77414 294 0.00 2019-07-28 19:36:24 2019-07-28 19:55:45 t 1 2 77420 306 0.00 2019-07-28 20:47:04 2019-07-28 20:48:08 t 1 2 77430 234 0.00 2019-07-28 21:06:45 2019-07-28 21:26:50 t 1 2 77433 218 0.00 2019-07-28 21:31:19 2019-07-28 21:41:24 t 1 2 77436 218 0.00 2019-07-28 21:42:27 2019-07-28 21:52:32 t 1 2 77437 290 0.00 2019-07-28 21:54:09 2019-07-28 21:54:13 t 1 2 77439 306 0.00 2019-07-28 21:58:00 2019-07-28 21:58:01 t 1 2 77440 306 0.00 2019-07-28 21:58:07 2019-07-28 21:58:08 t 1 2 77445 306 0.00 2019-07-28 22:00:20 2019-07-28 22:01:22 t 1 2 77453 306 0.00 2019-07-28 22:34:30 2019-07-28 22:35:37 t 1 2 77454 306 0.00 2019-07-28 22:37:51 2019-07-28 22:38:55 t 1 2 77456 312 0.00 2019-07-28 22:40:48 2019-07-28 22:41:55 t 1 2 77467 247 0.00 2019-07-28 23:02:35 2019-07-28 23:06:05 t 1 2 77471 212 0.00 2019-07-28 23:02:22 2019-07-28 23:18:55 t 1 2 77473 304 0.00 2019-07-28 23:13:28 2019-07-28 23:23:33 t 1 2 77475 288 0.00 2019-07-28 23:27:51 2019-07-28 23:28:55 t 1 2 81207 220 0.00 2019-08-08 14:47:19 2019-08-08 14:47:20 t 1 1 77479 218 0.00 2019-07-28 22:26:03 2019-07-28 23:51:08 t 1 2 77483 288 0.00 2019-07-29 00:11:51 2019-07-29 00:12:55 t 1 2 77487 212 0.00 2019-07-29 00:14:42 2019-07-29 00:15:13 t 1 2 77491 243 0.00 2019-07-29 00:35:47 2019-07-29 00:36:05 t 1 2 77494 234 0.00 2019-07-29 00:32:49 2019-07-29 00:57:54 t 1 2 77510 286 0.00 2019-07-29 08:08:50 2019-07-29 08:09:12 t 1 2 77511 212 0.00 2019-07-29 08:08:26 2019-07-29 08:09:30 t 1 2 77512 288 0.00 2019-07-29 08:20:11 2019-07-29 08:21:15 t 1 2 77515 318 0.00 2019-07-29 08:20:18 2019-07-29 08:35:58 t 1 2 77517 218 0.00 2019-07-29 07:53:02 2019-07-29 08:38:07 t 1 2 77519 306 0.00 2019-07-29 08:39:16 2019-07-29 08:40:19 t 1 2 77523 217 0.00 2019-07-29 08:09:14 2019-07-29 08:59:20 t 1 2 77524 304 0.00 2019-07-29 08:42:44 2019-07-29 09:02:49 t 1 2 77526 308 0.00 2019-07-29 09:07:34 2019-07-29 09:07:52 t 1 2 77530 232 0.00 2019-07-29 09:19:17 2019-07-29 09:20:25 t 1 2 77531 212 0.00 2019-07-29 09:24:55 2019-07-29 09:25:21 t 1 2 77537 243 0.00 2019-07-29 09:36:02 2019-07-29 09:37:08 t 1 2 77545 288 0.00 2019-07-29 10:05:19 2019-07-29 10:06:26 t 1 2 77547 304 0.00 2019-07-29 10:06:53 2019-07-29 10:06:53 f 1 2 77549 304 0.00 2019-07-29 10:07:15 2019-07-29 10:07:15 f 1 2 77553 304 0.00 2019-07-29 10:07:55 2019-07-29 10:07:55 f 1 2 77555 304 0.00 2019-07-29 10:08:16 2019-07-29 10:08:16 f 1 2 77557 304 0.00 2019-07-29 10:08:36 2019-07-29 10:08:36 f 1 2 77558 304 0.00 2019-07-29 09:54:37 2019-07-29 10:09:42 t 1 2 77561 306 0.00 2019-07-29 10:10:42 2019-07-29 10:11:46 t 1 2 77564 306 0.00 2019-07-29 10:20:57 2019-07-29 10:22:02 t 1 2 77571 306 0.00 2019-07-29 10:57:31 2019-07-29 10:58:36 t 1 2 77576 304 0.00 2019-07-29 11:07:18 2019-07-29 11:17:23 t 1 2 77586 306 0.00 2019-07-29 11:53:41 2019-07-29 11:54:46 t 1 2 77591 234 0.00 2019-07-29 12:03:09 2019-07-29 12:03:09 f 1 2 77592 306 0.00 2019-07-29 12:03:02 2019-07-29 12:04:02 t 1 2 77594 288 0.00 2019-07-29 12:07:02 2019-07-29 12:08:05 t 1 2 77600 306 0.00 2019-07-29 12:27:45 2019-07-29 12:28:48 t 1 2 77612 304 0.00 2019-07-29 13:00:59 2019-07-29 13:11:04 t 1 2 77616 288 0.00 2019-07-29 13:22:15 2019-07-29 13:23:19 t 1 2 77617 304 0.00 2019-07-29 13:24:04 2019-07-29 13:34:09 t 1 2 77618 302 0.00 2019-07-29 13:21:52 2019-07-29 13:36:57 t 1 2 77629 217 0.00 2019-07-29 14:12:06 2019-07-29 14:22:11 t 1 2 77631 296 0.00 2019-07-29 14:43:57 2019-07-29 14:58:43 t 1 2 77634 217 0.00 2019-07-29 14:39:21 2019-07-29 15:04:26 t 1 2 77637 294 0.00 2019-07-29 14:09:33 2019-07-29 15:10:13 t 1 2 77640 306 0.00 2019-07-29 15:16:27 2019-07-29 15:16:31 t 1 2 77647 232 0.00 2019-07-29 15:39:49 2019-07-29 15:40:54 t 1 2 77654 236 0.00 2019-07-29 15:32:00 2019-07-29 16:17:06 t 1 2 77357 288 0.00 2019-07-28 16:15:42 2019-07-28 16:16:46 t 1 2 77358 212 0.00 2019-07-28 16:54:21 2019-07-28 16:55:02 t 1 2 77359 304 0.00 2019-07-28 16:47:42 2019-07-28 16:57:48 t 1 2 77364 288 0.00 2019-07-28 17:20:26 2019-07-28 17:21:31 t 1 2 77368 288 0.00 2019-07-28 17:31:22 2019-07-28 17:32:25 t 1 2 77369 247 0.00 2019-07-28 17:31:23 2019-07-28 17:34:16 t 1 2 77378 306 0.00 2019-07-28 18:00:10 2019-07-28 18:01:14 t 1 2 77381 288 0.00 2019-07-28 18:05:25 2019-07-28 18:06:30 t 1 2 77389 304 0.00 2019-07-28 17:56:21 2019-07-28 18:16:26 t 1 2 77390 306 0.00 2019-07-28 18:18:28 2019-07-28 18:19:29 t 1 2 77410 304 0.00 2019-07-28 19:12:09 2019-07-28 19:22:15 t 1 2 77415 243 0.00 2019-07-28 19:46:38 2019-07-28 19:56:57 t 1 2 77416 288 0.00 2019-07-28 20:09:13 2019-07-28 20:10:18 t 1 2 77427 292 0.00 2019-07-28 21:11:52 2019-07-28 21:12:57 t 1 2 77434 306 0.00 2019-07-28 21:40:34 2019-07-28 21:41:38 t 1 2 77435 304 0.00 2019-07-28 21:40:37 2019-07-28 21:50:42 t 1 2 77438 306 0.00 2019-07-28 21:55:12 2019-07-28 21:56:14 t 1 2 77441 304 0.00 2019-07-28 21:48:51 2019-07-28 21:58:56 t 1 2 77446 304 0.00 2019-07-28 21:53:03 2019-07-28 22:03:08 t 1 2 77448 306 0.00 2019-07-28 22:03:58 2019-07-28 22:05:00 t 1 2 77451 288 0.00 2019-07-28 22:29:40 2019-07-28 22:30:43 t 1 2 77452 306 0.00 2019-07-28 22:34:26 2019-07-28 22:34:27 t 1 2 77459 306 0.00 2019-07-28 22:42:38 2019-07-28 22:43:31 t 1 2 77461 294 0.00 2019-07-28 22:12:03 2019-07-28 22:45:27 t 1 2 77463 212 0.00 2019-07-28 22:19:01 2019-07-28 22:54:07 t 1 2 77480 304 0.00 2019-07-28 23:54:56 2019-07-29 00:05:01 t 1 2 77485 247 0.00 2019-07-29 00:13:48 2019-07-29 00:14:04 t 1 2 77488 218 0.00 2019-07-29 00:10:25 2019-07-29 00:20:30 t 1 2 77493 212 0.00 2019-07-29 00:57:06 2019-07-29 00:57:32 t 1 2 77498 272 0.00 2019-07-28 22:01:08 2019-07-29 02:29:00 t 1 2 77499 304 0.00 2019-07-29 02:22:29 2019-07-29 02:42:34 t 1 2 77514 243 0.00 2019-07-29 08:26:12 2019-07-29 08:33:35 t 1 2 77520 247 0.00 2019-07-29 08:42:47 2019-07-29 08:47:16 t 1 2 77522 306 0.00 2019-07-29 08:56:16 2019-07-29 08:57:17 t 1 2 77532 217 0.00 2019-07-29 09:11:31 2019-07-29 09:31:36 t 1 2 77535 304 0.00 2019-07-29 09:13:19 2019-07-29 09:33:24 t 1 2 77539 304 0.00 2019-07-29 09:23:50 2019-07-29 09:43:55 t 1 2 77548 304 0.00 2019-07-29 10:07:05 2019-07-29 10:07:05 f 1 2 77550 304 0.00 2019-07-29 10:07:24 2019-07-29 10:07:24 f 1 2 77552 304 0.00 2019-07-29 10:07:46 2019-07-29 10:07:46 f 1 2 77554 304 0.00 2019-07-29 10:08:06 2019-07-29 10:08:06 f 1 2 77556 304 0.00 2019-07-29 10:08:25 2019-07-29 10:08:25 f 1 2 77560 243 0.00 2019-07-29 10:07:26 2019-07-29 10:11:02 t 1 2 77562 304 0.00 2019-07-29 10:03:32 2019-07-29 10:13:37 t 1 2 77569 286 0.00 2019-07-29 10:44:37 2019-07-29 10:54:42 t 1 2 77570 212 0.00 2019-07-29 10:54:52 2019-07-29 10:55:18 t 1 2 77573 304 0.00 2019-07-29 10:55:56 2019-07-29 11:11:02 t 1 2 77574 247 0.00 2019-07-29 11:13:05 2019-07-29 11:13:49 t 1 2 77580 294 0.00 2019-07-29 11:12:16 2019-07-29 11:27:39 t 1 2 77584 304 0.00 2019-07-29 11:39:41 2019-07-29 11:49:46 t 1 2 77588 286 0.00 2019-07-29 11:29:03 2019-07-29 11:59:08 t 1 2 77590 304 0.00 2019-07-29 11:55:29 2019-07-29 12:03:04 t 1 2 77599 234 0.00 2019-07-29 12:03:46 2019-07-29 12:23:52 t 1 2 77606 306 0.00 2019-07-29 12:46:57 2019-07-29 12:47:58 t 1 2 77608 218 0.00 2019-07-29 09:13:27 2019-07-29 12:53:32 t 1 2 77609 247 0.00 2019-07-29 12:57:39 2019-07-29 12:58:56 t 1 2 77613 306 0.00 2019-07-29 13:10:35 2019-07-29 13:11:39 t 1 2 77615 304 0.00 2019-07-29 13:04:17 2019-07-29 13:14:22 t 1 2 77619 320 0.00 2019-07-29 13:03:00 2019-07-29 13:38:06 t 1 2 77621 306 0.00 2019-07-29 13:46:35 2019-07-29 13:47:40 t 1 2 77622 294 0.00 2019-07-29 13:18:46 2019-07-29 13:53:10 t 1 2 77626 217 0.00 2019-07-29 14:16:09 2019-07-29 14:18:37 t 1 2 77628 212 0.00 2019-07-29 14:20:52 2019-07-29 14:21:14 t 1 2 77633 304 0.00 2019-07-29 14:52:35 2019-07-29 15:02:40 t 1 2 77638 234 0.00 2019-07-29 14:32:26 2019-07-29 15:12:31 t 1 2 77639 218 0.00 2019-07-29 15:03:51 2019-07-29 15:13:56 t 1 2 77641 217 0.00 2019-07-29 14:57:44 2019-07-29 15:17:49 t 1 2 77644 230 0.00 2019-07-29 13:56:58 2019-07-29 15:27:04 t 1 2 77645 220 0.00 2019-07-29 15:06:18 2019-07-29 15:31:23 t 1 2 77646 304 0.00 2019-07-29 15:26:02 2019-07-29 15:36:07 t 1 2 77648 290 0.00 2019-07-29 15:45:03 2019-07-29 15:46:06 t 1 2 77653 304 0.00 2019-07-29 16:00:48 2019-07-29 16:15:53 t 1 2 77660 304 0.00 2019-07-29 16:29:30 2019-07-29 16:39:35 t 1 2 77664 234 0.00 2019-07-29 16:40:13 2019-07-29 16:55:18 t 1 2 77665 218 0.00 2019-07-29 16:34:30 2019-07-29 17:09:35 t 1 2 77668 320 0.00 2019-07-29 17:04:21 2019-07-29 17:14:27 t 1 2 77675 320 0.00 2019-07-29 17:33:13 2019-07-29 17:43:19 t 1 2 77678 320 0.00 2019-07-29 17:45:05 2019-07-29 17:55:10 t 1 2 77684 234 0.00 2019-07-29 18:10:27 2019-07-29 18:20:32 t 1 2 77686 288 0.00 2019-07-29 18:22:12 2019-07-29 18:23:16 t 1 2 77688 288 0.00 2019-07-29 18:30:38 2019-07-29 18:31:46 t 1 2 77692 217 0.00 2019-07-29 17:51:44 2019-07-29 18:56:49 t 1 2 77699 288 0.00 2019-07-29 19:02:26 2019-07-29 19:03:32 t 1 2 77700 218 0.00 2019-07-29 17:11:12 2019-07-29 19:06:17 t 1 2 77705 322 0.00 2019-07-29 19:24:36 2019-07-29 19:25:38 t 1 2 77706 322 0.00 2019-07-29 19:26:17 2019-07-29 19:26:20 t 1 2 77711 288 0.00 2019-07-29 19:45:21 2019-07-29 19:46:25 t 1 2 77712 230 0.00 2019-07-29 17:44:14 2019-07-29 19:49:19 t 1 2 77718 304 0.00 2019-07-29 20:06:19 2019-07-29 20:06:28 t 1 2 77721 218 0.00 2019-07-29 19:02:12 2019-07-29 20:22:17 t 1 2 77722 304 0.00 2019-07-29 20:25:16 2019-07-29 20:35:21 t 1 2 77725 212 0.00 2019-07-29 20:43:45 2019-07-29 20:44:05 t 1 2 77732 288 0.00 2019-07-29 21:08:12 2019-07-29 21:09:18 t 1 2 77737 288 0.00 2019-07-29 21:31:57 2019-07-29 21:33:00 t 1 2 77739 320 0.00 2019-07-29 21:29:50 2019-07-29 21:34:37 t 1 2 77741 288 0.00 2019-07-29 21:36:45 2019-07-29 21:37:49 t 1 2 77743 234 0.00 2019-07-29 20:49:46 2019-07-29 21:39:38 t 1 2 77747 288 0.00 2019-07-29 21:43:48 2019-07-29 21:44:55 t 1 2 77751 306 0.00 2019-07-29 21:59:52 2019-07-29 22:00:53 t 1 2 77754 218 0.00 2019-07-29 22:09:35 2019-07-29 22:19:40 t 1 2 77757 304 0.00 2019-07-29 22:26:05 2019-07-29 22:26:05 f 1 2 77759 304 0.00 2019-07-29 22:26:34 2019-07-29 22:26:34 f 1 2 77764 304 0.00 2019-07-29 22:27:46 2019-07-29 22:27:46 f 1 2 77766 304 0.00 2019-07-29 22:28:22 2019-07-29 22:28:22 f 1 2 77767 304 0.00 2019-07-29 22:28:45 2019-07-29 22:28:45 f 1 2 77769 304 0.00 2019-07-29 22:29:07 2019-07-29 22:29:07 f 1 2 77772 304 0.00 2019-07-29 22:30:40 2019-07-29 22:30:40 f 1 2 77516 304 0.00 2019-07-29 08:16:59 2019-07-29 08:37:04 t 1 2 77518 304 0.00 2019-07-29 08:29:11 2019-07-29 08:39:16 t 1 2 77521 212 0.00 2019-07-29 08:56:03 2019-07-29 08:56:38 t 1 2 77534 306 0.00 2019-07-29 09:32:02 2019-07-29 09:33:04 t 1 2 77536 306 0.00 2019-07-29 09:33:56 2019-07-29 09:34:59 t 1 2 77538 243 0.00 2019-07-29 09:37:13 2019-07-29 09:43:49 t 1 2 77542 288 0.00 2019-07-29 09:55:24 2019-07-29 09:56:28 t 1 2 77544 217 0.00 2019-07-29 09:23:27 2019-07-29 09:58:32 t 1 2 77559 247 0.00 2019-07-29 10:06:52 2019-07-29 10:09:52 t 1 2 77566 286 0.00 2019-07-29 09:05:21 2019-07-29 10:25:26 t 1 2 77567 304 0.00 2019-07-29 10:18:27 2019-07-29 10:28:33 t 1 2 77568 212 0.00 2019-07-29 10:36:59 2019-07-29 10:38:10 t 1 2 77572 212 0.00 2019-07-29 11:07:21 2019-07-29 11:10:53 t 1 2 77582 212 0.00 2019-07-29 11:39:27 2019-07-29 11:39:49 t 1 2 77583 288 0.00 2019-07-29 11:46:16 2019-07-29 11:47:19 t 1 2 77585 288 0.00 2019-07-29 11:52:04 2019-07-29 11:53:09 t 1 2 77587 217 0.00 2019-07-29 11:30:12 2019-07-29 11:55:17 t 1 2 77589 234 0.00 2019-07-29 12:02:28 2019-07-29 12:02:28 f 1 2 77593 212 0.00 2019-07-29 12:04:23 2019-07-29 12:04:57 t 1 2 77596 306 0.00 2019-07-29 12:14:57 2019-07-29 12:16:07 t 1 2 77601 304 0.00 2019-07-29 12:19:19 2019-07-29 12:29:24 t 1 2 77603 306 0.00 2019-07-29 12:40:47 2019-07-29 12:41:51 t 1 2 77605 320 0.00 2019-07-29 12:43:37 2019-07-29 12:46:05 t 1 2 77620 212 0.00 2019-07-29 13:24:25 2019-07-29 13:39:30 t 1 2 77623 247 0.00 2019-07-29 14:02:26 2019-07-29 14:04:47 t 1 2 77627 217 0.00 2019-07-29 13:40:07 2019-07-29 14:20:12 t 1 2 77630 217 0.00 2019-07-29 14:18:42 2019-07-29 14:38:47 t 1 2 77632 304 0.00 2019-07-29 14:48:53 2019-07-29 14:58:58 t 1 2 77635 320 0.00 2019-07-29 14:54:30 2019-07-29 15:04:36 t 1 2 77643 290 0.00 2019-07-29 15:21:58 2019-07-29 15:23:04 t 1 2 77650 306 0.00 2019-07-29 15:49:56 2019-07-29 15:50:58 t 1 2 77651 320 0.00 2019-07-29 15:10:41 2019-07-29 16:00:47 t 1 2 77652 294 0.00 2019-07-29 15:57:02 2019-07-29 16:07:26 t 1 2 77655 304 0.00 2019-07-29 16:09:35 2019-07-29 16:19:40 t 1 2 77658 306 0.00 2019-07-29 16:31:39 2019-07-29 16:32:41 t 1 2 77659 247 0.00 2019-07-29 16:31:02 2019-07-29 16:35:55 t 1 2 77662 212 0.00 2019-07-29 16:41:37 2019-07-29 16:42:17 t 1 2 77663 212 0.00 2019-07-29 16:54:38 2019-07-29 16:55:10 t 1 2 77670 320 0.00 2019-07-29 17:14:03 2019-07-29 17:19:33 t 1 2 77676 304 0.00 2019-07-29 17:40:56 2019-07-29 17:51:01 t 1 2 77679 212 0.00 2019-07-29 18:01:53 2019-07-29 18:02:33 t 1 2 77682 288 0.00 2019-07-29 18:14:34 2019-07-29 18:15:37 t 1 2 77690 288 0.00 2019-07-29 18:36:39 2019-07-29 18:37:44 t 1 2 77695 288 0.00 2019-07-29 18:56:05 2019-07-29 18:57:13 t 1 2 77697 304 0.00 2019-07-29 18:49:10 2019-07-29 18:59:15 t 1 2 77702 288 0.00 2019-07-29 19:18:34 2019-07-29 19:19:40 t 1 2 77717 306 0.00 2019-07-29 20:03:43 2019-07-29 20:04:46 t 1 2 77719 294 0.00 2019-07-29 19:43:44 2019-07-29 20:12:05 t 1 2 77723 294 0.00 2019-07-29 20:18:27 2019-07-29 20:40:06 t 1 2 77729 304 0.00 2019-07-29 20:57:45 2019-07-29 21:02:50 t 1 2 77731 304 0.00 2019-07-29 20:58:51 2019-07-29 21:08:56 t 1 2 77750 304 0.00 2019-07-29 21:49:39 2019-07-29 21:59:45 t 1 2 77752 304 0.00 2019-07-29 22:15:29 2019-07-29 22:15:43 t 1 2 77756 304 0.00 2019-07-29 22:25:55 2019-07-29 22:25:55 f 1 2 77760 304 0.00 2019-07-29 22:26:44 2019-07-29 22:26:44 f 1 2 77762 304 0.00 2019-07-29 22:27:01 2019-07-29 22:27:01 f 1 2 77770 304 0.00 2019-07-29 22:30:06 2019-07-29 22:30:06 f 1 2 77774 304 0.00 2019-07-29 22:15:53 2019-07-29 22:30:58 t 1 2 77777 217 0.00 2019-07-29 22:34:38 2019-07-29 22:37:17 t 1 2 77779 217 0.00 2019-07-29 22:38:02 2019-07-29 22:38:33 t 1 2 77788 320 0.00 2019-07-29 22:33:26 2019-07-29 22:53:32 t 1 2 77789 217 0.00 2019-07-29 22:39:54 2019-07-29 22:54:59 t 1 2 77793 212 0.00 2019-07-29 22:26:02 2019-07-29 23:05:09 t 1 2 77799 243 0.00 2019-07-29 22:59:32 2019-07-29 23:12:29 t 1 2 77802 304 0.00 2019-07-29 23:12:28 2019-07-29 23:27:33 t 1 2 77803 312 0.00 2019-07-29 23:33:12 2019-07-29 23:34:21 t 1 2 77806 247 0.00 2019-07-29 23:36:02 2019-07-29 23:38:19 t 1 2 77810 312 0.00 2019-07-29 23:41:37 2019-07-29 23:42:43 t 1 2 77814 247 0.00 2019-07-30 00:13:55 2019-07-30 00:14:26 t 1 2 77816 304 0.00 2019-07-30 00:11:08 2019-07-30 00:21:13 t 1 2 77818 288 0.00 2019-07-30 00:23:23 2019-07-30 00:24:27 t 1 2 77830 212 0.00 2019-07-30 01:39:13 2019-07-30 01:39:14 t 1 2 77833 322 0.00 2019-07-30 02:05:44 2019-07-30 02:17:44 t 1 2 77842 302 0.00 2019-07-30 02:57:49 2019-07-30 05:47:54 t 1 2 81211 220 0.00 2019-08-08 14:57:41 2019-08-08 14:57:49 t 1 1 77868 272 0.00 2019-07-30 09:18:06 2019-07-30 09:50:04 t 1 2 77870 304 0.00 2019-07-30 09:46:57 2019-07-30 10:02:02 t 1 2 77874 247 0.00 2019-07-30 10:21:44 2019-07-30 10:22:45 t 1 2 77876 212 0.00 2019-07-30 10:38:15 2019-07-30 10:38:34 t 1 2 77882 325 0.00 2019-07-30 11:00:31 2019-07-30 11:02:54 t 1 2 77885 304 0.00 2019-07-30 11:17:12 2019-07-30 11:27:17 t 1 2 77887 304 0.00 2019-07-30 11:33:38 2019-07-30 11:43:44 t 1 2 77891 212 0.00 2019-07-30 11:51:30 2019-07-30 11:51:48 t 1 2 77893 286 0.00 2019-07-30 11:36:28 2019-07-30 12:01:33 t 1 2 77896 304 0.00 2019-07-30 11:59:33 2019-07-30 12:09:38 t 1 2 77905 292 0.00 2019-07-30 12:34:11 2019-07-30 12:35:17 t 1 2 77906 212 0.00 2019-07-30 12:44:51 2019-07-30 12:45:43 t 1 2 77907 312 0.00 2019-07-30 12:46:20 2019-07-30 12:47:23 t 1 2 77913 312 0.00 2019-07-30 13:00:29 2019-07-30 13:01:31 t 1 2 77915 312 0.00 2019-07-30 13:03:18 2019-07-30 13:04:22 t 1 2 77926 306 0.00 2019-07-30 13:53:44 2019-07-30 13:54:52 t 1 2 77930 304 0.00 2019-07-30 13:53:18 2019-07-30 14:03:23 t 1 2 77933 230 0.00 2019-07-30 12:21:58 2019-07-30 14:12:03 t 1 2 77942 218 0.00 2019-07-30 14:25:38 2019-07-30 14:30:38 t 1 2 77945 320 0.00 2019-07-30 14:11:26 2019-07-30 14:31:32 t 1 2 77953 304 0.00 2019-07-30 14:33:48 2019-07-30 14:53:53 t 1 2 77954 212 0.00 2019-07-30 14:57:02 2019-07-30 15:01:17 t 1 2 77956 304 0.00 2019-07-30 14:59:37 2019-07-30 15:09:43 t 1 2 81212 304 0.00 2019-08-08 14:49:31 2019-08-08 14:59:36 t 1 2 77963 294 0.00 2019-07-30 13:39:18 2019-07-30 15:35:42 t 1 2 77965 234 0.00 2019-07-30 15:17:26 2019-07-30 15:52:32 t 1 2 77966 302 0.00 2019-07-30 14:33:21 2019-07-30 15:58:26 t 1 2 77969 247 0.00 2019-07-30 16:17:37 2019-07-30 16:18:02 t 1 2 77970 217 0.00 2019-07-30 14:24:21 2019-07-30 16:28:06 t 1 2 77974 304 0.00 2019-07-30 16:51:18 2019-07-30 17:06:24 t 1 2 77975 304 0.00 2019-07-30 17:01:06 2019-07-30 17:11:11 t 1 2 77977 288 0.00 2019-07-30 17:16:17 2019-07-30 17:17:20 t 1 2 77657 212 0.00 2019-07-29 16:22:17 2019-07-29 16:22:48 t 1 2 77666 236 0.00 2019-07-29 16:25:22 2019-07-29 17:10:27 t 1 2 77667 292 0.00 2019-07-29 17:12:38 2019-07-29 17:13:41 t 1 2 77669 217 0.00 2019-07-29 17:04:32 2019-07-29 17:14:37 t 1 2 77671 212 0.00 2019-07-29 17:21:09 2019-07-29 17:21:39 t 1 2 77673 320 0.00 2019-07-29 17:22:50 2019-07-29 17:31:11 t 1 2 77680 234 0.00 2019-07-29 18:08:13 2019-07-29 18:09:52 t 1 2 77681 304 0.00 2019-07-29 17:54:05 2019-07-29 18:14:10 t 1 2 77683 320 0.00 2019-07-29 18:10:25 2019-07-29 18:17:30 t 1 2 77685 304 0.00 2019-07-29 18:07:10 2019-07-29 18:22:15 t 1 2 77687 304 0.00 2019-07-29 18:17:31 2019-07-29 18:27:37 t 1 2 77694 232 0.00 2019-07-29 18:56:06 2019-07-29 18:57:09 t 1 2 77696 212 0.00 2019-07-29 18:58:34 2019-07-29 18:58:52 t 1 2 77701 212 0.00 2019-07-29 19:14:32 2019-07-29 19:15:14 t 1 2 77704 322 0.00 2019-07-29 19:22:58 2019-07-29 19:24:04 t 1 2 77708 322 0.00 2019-07-29 19:26:25 2019-07-29 19:27:27 t 1 2 77709 243 0.00 2019-07-29 19:37:40 2019-07-29 19:40:00 t 1 2 77710 243 0.00 2019-07-29 19:40:11 2019-07-29 19:44:29 t 1 2 77714 288 0.00 2019-07-29 19:51:37 2019-07-29 19:52:44 t 1 2 77716 212 0.00 2019-07-29 20:00:49 2019-07-29 20:01:22 t 1 2 77720 304 0.00 2019-07-29 20:06:39 2019-07-29 20:16:45 t 1 2 77727 288 0.00 2019-07-29 20:59:14 2019-07-29 21:00:20 t 1 2 77734 318 0.00 2019-07-29 20:52:49 2019-07-29 21:27:55 t 1 2 77736 288 0.00 2019-07-29 21:30:12 2019-07-29 21:31:17 t 1 2 77738 288 0.00 2019-07-29 21:33:28 2019-07-29 21:34:35 t 1 2 77740 304 0.00 2019-07-29 21:26:11 2019-07-29 21:36:16 t 1 2 77742 288 0.00 2019-07-29 21:38:07 2019-07-29 21:39:11 t 1 2 77746 288 0.00 2019-07-29 21:42:25 2019-07-29 21:43:29 t 1 2 77748 306 0.00 2019-07-29 21:44:43 2019-07-29 21:45:46 t 1 2 77753 288 0.00 2019-07-29 22:18:22 2019-07-29 22:19:30 t 1 2 77755 320 0.00 2019-07-29 22:13:34 2019-07-29 22:23:39 t 1 2 77758 304 0.00 2019-07-29 22:26:26 2019-07-29 22:26:26 f 1 2 77765 304 0.00 2019-07-29 22:28:05 2019-07-29 22:28:05 f 1 2 77768 304 0.00 2019-07-29 22:28:55 2019-07-29 22:28:55 f 1 2 77773 304 0.00 2019-07-29 22:30:52 2019-07-29 22:30:52 f 1 2 77778 217 0.00 2019-07-29 22:37:33 2019-07-29 22:37:49 t 1 2 77781 217 0.00 2019-07-29 22:39:46 2019-07-29 22:39:52 t 1 2 77784 294 0.00 2019-07-29 21:41:28 2019-07-29 22:41:48 t 1 2 77785 243 0.00 2019-07-29 22:37:55 2019-07-29 22:48:32 t 1 2 77786 217 0.00 2019-07-29 22:40:06 2019-07-29 22:50:01 t 1 2 77791 217 0.00 2019-07-29 21:23:51 2019-07-29 23:01:31 t 1 2 77795 217 0.00 2019-07-29 23:01:58 2019-07-29 23:08:51 t 1 2 77797 306 0.00 2019-07-29 23:10:20 2019-07-29 23:11:26 t 1 2 77800 212 0.00 2019-07-29 23:12:51 2019-07-29 23:13:54 t 1 2 77805 312 0.00 2019-07-29 23:36:46 2019-07-29 23:37:51 t 1 2 77812 218 0.00 2019-07-29 23:33:16 2019-07-29 23:48:21 t 1 2 77813 212 0.00 2019-07-30 00:04:31 2019-07-30 00:05:13 t 1 2 77820 212 0.00 2019-07-30 00:28:25 2019-07-30 00:28:56 t 1 2 77825 230 0.00 2019-07-30 00:18:50 2019-07-30 00:59:49 t 1 2 77827 304 0.00 2019-07-30 01:00:48 2019-07-30 01:10:53 t 1 2 77828 320 0.00 2019-07-29 22:53:17 2019-07-30 01:13:22 t 1 2 77832 318 0.00 2019-07-30 01:44:18 2019-07-30 01:46:39 t 1 2 77838 324 0.00 2019-07-30 03:06:56 2019-07-30 03:08:03 t 1 2 77841 322 0.00 2019-07-30 03:22:20 2019-07-30 03:29:19 t 1 2 77843 218 0.00 2019-07-30 05:47:05 2019-07-30 06:42:10 t 1 2 77848 236 0.00 2019-07-30 03:36:31 2019-07-30 07:33:58 t 1 2 77850 217 0.00 2019-07-30 07:35:27 2019-07-30 07:48:14 t 1 2 77851 247 0.00 2019-07-30 07:49:33 2019-07-30 07:52:04 t 1 2 77853 320 0.00 2019-07-30 07:46:11 2019-07-30 07:56:16 t 1 2 77857 306 0.00 2019-07-30 08:32:22 2019-07-30 08:33:27 t 1 2 77861 294 0.00 2019-07-30 07:59:27 2019-07-30 08:54:51 t 1 2 77865 286 0.00 2019-07-30 09:15:51 2019-07-30 09:35:57 t 1 2 77866 247 0.00 2019-07-30 09:47:51 2019-07-30 09:48:41 t 1 2 77869 320 0.00 2019-07-30 09:49:35 2019-07-30 09:59:40 t 1 2 77871 286 0.00 2019-07-30 09:38:14 2019-07-30 10:03:19 t 1 2 77872 304 0.00 2019-07-30 09:54:08 2019-07-30 10:14:14 t 1 2 77873 212 0.00 2019-07-30 10:17:08 2019-07-30 10:17:56 t 1 2 77880 304 0.00 2019-07-30 10:39:16 2019-07-30 10:54:21 t 1 2 77883 304 0.00 2019-07-30 11:20:54 2019-07-30 11:21:02 t 1 2 77886 304 0.00 2019-07-30 11:21:22 2019-07-30 11:31:27 t 1 2 77890 217 0.00 2019-07-30 11:50:45 2019-07-30 11:50:56 t 1 2 77894 324 0.00 2019-07-30 12:06:03 2019-07-30 12:07:10 t 1 2 77895 324 0.00 2019-07-30 12:08:14 2019-07-30 12:09:16 t 1 2 77897 306 0.00 2019-07-30 12:14:04 2019-07-30 12:15:10 t 1 2 77900 292 0.00 2019-07-30 12:26:00 2019-07-30 12:27:08 t 1 2 77902 306 0.00 2019-07-30 12:29:58 2019-07-30 12:31:00 t 1 2 77909 306 0.00 2019-07-30 12:46:43 2019-07-30 12:47:49 t 1 2 77910 312 0.00 2019-07-30 12:52:41 2019-07-30 12:53:45 t 1 2 77914 312 0.00 2019-07-30 13:01:49 2019-07-30 13:02:52 t 1 2 77916 312 0.00 2019-07-30 13:04:38 2019-07-30 13:05:43 t 1 2 77921 204 0.00 2019-07-30 12:18:51 2019-07-30 13:26:00 t 1 2 77925 306 0.00 2019-07-30 13:45:59 2019-07-30 13:47:03 t 1 2 77928 217 0.00 2019-07-30 11:48:13 2019-07-30 13:56:36 t 1 2 77938 234 0.00 2019-07-30 12:56:29 2019-07-30 14:19:37 t 1 2 77941 217 0.00 2019-07-30 14:24:57 2019-07-30 14:28:06 t 1 2 77943 217 0.00 2019-07-30 14:30:16 2019-07-30 14:31:18 t 1 2 77950 217 0.00 2019-07-30 14:35:50 2019-07-30 14:36:30 t 1 2 77962 296 0.00 2019-07-30 14:34:57 2019-07-30 15:35:22 t 1 2 77968 304 0.00 2019-07-30 16:06:13 2019-07-30 16:16:18 t 1 2 77981 288 0.00 2019-07-30 17:27:04 2019-07-30 17:28:09 t 1 2 77983 218 0.00 2019-07-30 14:51:40 2019-07-30 17:56:46 t 1 2 77987 288 0.00 2019-07-30 18:08:32 2019-07-30 18:09:35 t 1 2 77988 322 0.00 2019-07-30 18:13:09 2019-07-30 18:14:10 t 1 2 77990 322 0.00 2019-07-30 18:18:31 2019-07-30 18:19:38 t 1 2 77991 322 0.00 2019-07-30 18:24:18 2019-07-30 18:25:23 t 1 2 77999 230 0.00 2019-07-30 18:25:08 2019-07-30 19:01:22 t 1 2 78002 320 0.00 2019-07-30 19:24:57 2019-07-30 19:35:02 t 1 2 78004 217 0.00 2019-07-30 19:47:13 2019-07-30 19:53:24 t 1 2 78005 217 0.00 2019-07-30 19:53:26 2019-07-30 19:53:36 t 1 2 78006 304 0.00 2019-07-30 19:49:53 2019-07-30 19:59:58 t 1 2 78009 320 0.00 2019-07-30 20:03:09 2019-07-30 20:13:14 t 1 2 78010 217 0.00 2019-07-30 20:04:46 2019-07-30 20:14:51 t 1 2 78012 212 0.00 2019-07-30 20:21:16 2019-07-30 20:22:02 t 1 2 78014 304 0.00 2019-07-30 20:36:11 2019-07-30 20:51:16 t 1 2 78015 288 0.00 2019-07-30 20:53:08 2019-07-30 20:54:11 t 1 2 78016 288 0.00 2019-07-30 20:57:24 2019-07-30 20:58:30 t 1 2 78024 288 0.00 2019-07-30 21:26:10 2019-07-30 21:27:18 t 1 2 77674 212 0.00 2019-07-29 17:42:08 2019-07-29 17:42:28 t 1 2 77677 320 0.00 2019-07-29 17:42:54 2019-07-29 17:52:59 t 1 2 77689 296 0.00 2019-07-29 18:35:01 2019-07-29 18:37:25 t 1 2 77691 212 0.00 2019-07-29 18:42:55 2019-07-29 18:43:13 t 1 2 77693 294 0.00 2019-07-29 17:56:43 2019-07-29 18:57:04 t 1 2 77698 288 0.00 2019-07-29 18:59:38 2019-07-29 19:00:45 t 1 2 77703 288 0.00 2019-07-29 19:22:45 2019-07-29 19:23:51 t 1 2 77707 320 0.00 2019-07-29 19:13:08 2019-07-29 19:26:44 t 1 2 77713 306 0.00 2019-07-29 19:50:17 2019-07-29 19:51:22 t 1 2 77715 304 0.00 2019-07-29 19:51:10 2019-07-29 20:01:15 t 1 2 77724 320 0.00 2019-07-29 20:30:58 2019-07-29 20:41:04 t 1 2 77726 272 0.00 2019-07-29 19:05:32 2019-07-29 20:52:31 t 1 2 77728 217 0.00 2019-07-29 20:42:04 2019-07-29 21:02:09 t 1 2 77730 212 0.00 2019-07-29 21:02:53 2019-07-29 21:03:53 t 1 2 77733 212 0.00 2019-07-29 21:09:54 2019-07-29 21:10:19 t 1 2 77735 320 0.00 2019-07-29 20:34:42 2019-07-29 21:29:23 t 1 2 77744 288 0.00 2019-07-29 21:39:46 2019-07-29 21:40:45 t 1 2 77745 288 0.00 2019-07-29 21:40:50 2019-07-29 21:41:54 t 1 2 77749 247 0.00 2019-07-29 21:50:51 2019-07-29 21:56:13 t 1 2 77761 304 0.00 2019-07-29 22:26:51 2019-07-29 22:26:51 f 1 2 77763 304 0.00 2019-07-29 22:27:36 2019-07-29 22:27:36 f 1 2 77771 304 0.00 2019-07-29 22:30:27 2019-07-29 22:30:27 f 1 2 77775 217 0.00 2019-07-29 22:34:01 2019-07-29 22:34:15 t 1 2 77782 217 0.00 2019-07-29 22:40:00 2019-07-29 22:40:04 t 1 2 77787 232 0.00 2019-07-29 22:52:00 2019-07-29 22:53:08 t 1 2 77792 217 0.00 2019-07-29 23:02:55 2019-07-29 23:02:57 t 1 2 77794 217 0.00 2019-07-29 23:03:00 2019-07-29 23:06:21 t 1 2 77796 306 0.00 2019-07-29 23:09:41 2019-07-29 23:09:49 t 1 2 77798 304 0.00 2019-07-29 23:12:12 2019-07-29 23:12:16 t 1 2 77804 312 0.00 2019-07-29 23:34:38 2019-07-29 23:35:45 t 1 2 77807 312 0.00 2019-07-29 23:38:22 2019-07-29 23:39:27 t 1 2 77809 206 0.00 2019-07-29 23:40:36 2019-07-29 23:41:38 t 1 2 77811 312 0.00 2019-07-29 23:43:28 2019-07-29 23:44:32 t 1 2 77815 296 0.00 2019-07-30 00:17:10 2019-07-30 00:18:33 t 1 2 77819 204 0.00 2019-07-30 00:03:37 2019-07-30 00:24:42 t 1 2 77821 324 0.00 2019-07-30 00:43:10 2019-07-30 00:44:13 t 1 2 77823 217 0.00 2019-07-30 00:09:12 2019-07-30 00:49:17 t 1 2 77824 308 0.00 2019-07-29 09:08:11 2019-07-30 00:53:17 t 1 2 77826 304 0.00 2019-07-30 00:52:48 2019-07-30 01:07:53 t 1 2 77829 320 0.00 2019-07-30 01:11:04 2019-07-30 01:21:09 t 1 2 77834 322 0.00 2019-07-30 02:20:11 2019-07-30 02:36:11 t 1 2 77836 324 0.00 2019-07-30 03:02:25 2019-07-30 03:03:27 t 1 2 77837 324 0.00 2019-07-30 03:05:36 2019-07-30 03:06:42 t 1 2 77839 234 0.00 2019-07-30 00:58:43 2019-07-30 03:08:48 t 1 2 77844 318 0.00 2019-07-30 06:54:11 2019-07-30 07:24:16 t 1 2 77845 218 0.00 2019-07-30 07:26:59 2019-07-30 07:31:30 t 1 2 77849 217 0.00 2019-07-30 07:29:20 2019-07-30 07:33:58 t 1 2 77854 218 0.00 2019-07-30 07:55:27 2019-07-30 07:56:26 t 1 2 77855 217 0.00 2019-07-30 07:51:17 2019-07-30 08:06:22 t 1 2 77859 320 0.00 2019-07-30 07:55:44 2019-07-30 08:45:49 t 1 2 77862 306 0.00 2019-07-30 08:54:13 2019-07-30 08:55:19 t 1 2 77863 212 0.00 2019-07-30 09:20:25 2019-07-30 09:20:34 t 1 2 77867 304 0.00 2019-07-30 09:29:36 2019-07-30 09:49:41 t 1 2 77875 304 0.00 2019-07-30 10:09:03 2019-07-30 10:24:08 t 1 2 77881 212 0.00 2019-07-30 10:54:48 2019-07-30 10:55:09 t 1 2 77889 217 0.00 2019-07-30 11:45:15 2019-07-30 11:46:28 t 1 2 77898 320 0.00 2019-07-30 12:05:31 2019-07-30 12:15:36 t 1 2 77903 312 0.00 2019-07-30 12:29:54 2019-07-30 12:31:01 t 1 2 77912 312 0.00 2019-07-30 12:58:38 2019-07-30 12:59:41 t 1 2 77917 304 0.00 2019-07-30 12:58:35 2019-07-30 13:08:41 t 1 2 77919 296 0.00 2019-07-30 12:47:25 2019-07-30 13:11:49 t 1 2 77920 320 0.00 2019-07-30 12:07:56 2019-07-30 13:18:01 t 1 2 77923 306 0.00 2019-07-30 13:43:42 2019-07-30 13:44:48 t 1 2 77931 272 0.00 2019-07-30 14:06:22 2019-07-30 14:06:27 t 1 2 77935 320 0.00 2019-07-30 13:36:11 2019-07-30 14:16:17 t 1 2 77940 218 0.00 2019-07-30 14:25:46 2019-07-30 14:25:58 t 1 2 77944 212 0.00 2019-07-30 14:31:05 2019-07-30 14:31:25 t 1 2 77946 217 0.00 2019-07-30 14:31:44 2019-07-30 14:32:06 t 1 2 77948 304 0.00 2019-07-30 14:24:05 2019-07-30 14:34:10 t 1 2 77958 304 0.00 2019-07-30 15:07:38 2019-07-30 15:17:44 t 1 2 77967 272 0.00 2019-07-30 14:06:48 2019-07-30 16:06:54 t 1 2 77971 296 0.00 2019-07-30 16:22:06 2019-07-30 16:29:27 t 1 2 77973 325 0.00 2019-07-30 17:02:21 2019-07-30 17:03:48 t 1 2 77978 288 0.00 2019-07-30 17:21:51 2019-07-30 17:22:55 t 1 2 77982 288 0.00 2019-07-30 17:30:30 2019-07-30 17:31:37 t 1 2 77984 288 0.00 2019-07-30 17:57:22 2019-07-30 17:58:29 t 1 2 77986 272 0.00 2019-07-30 16:16:10 2019-07-30 18:02:42 t 1 2 77989 322 0.00 2019-07-30 18:16:57 2019-07-30 18:18:02 t 1 2 77993 322 0.00 2019-07-30 18:26:16 2019-07-30 18:27:18 t 1 2 77997 288 0.00 2019-07-30 18:54:06 2019-07-30 18:55:10 t 1 2 78011 306 0.00 2019-07-30 20:17:41 2019-07-30 20:18:42 t 1 2 78017 320 0.00 2019-07-30 20:50:13 2019-07-30 21:00:18 t 1 2 78021 320 0.00 2019-07-30 20:59:51 2019-07-30 21:09:56 t 1 2 78029 306 0.00 2019-07-30 21:48:17 2019-07-30 21:49:19 t 1 2 78032 288 0.00 2019-07-30 21:58:46 2019-07-30 21:59:51 t 1 2 78036 288 0.00 2019-07-30 22:06:48 2019-07-30 22:07:54 t 1 2 78038 204 0.00 2019-07-30 22:08:40 2019-07-30 22:11:39 t 1 2 78040 212 0.00 2019-07-30 22:14:32 2019-07-30 22:15:30 t 1 2 78047 324 0.00 2019-07-30 22:24:49 2019-07-30 22:25:09 t 1 2 78050 306 0.00 2019-07-30 22:37:07 2019-07-30 22:38:15 t 1 2 78053 312 0.00 2019-07-30 22:52:22 2019-07-30 22:53:25 t 1 2 78055 212 0.00 2019-07-30 22:29:40 2019-07-30 22:55:12 t 1 2 78065 288 0.00 2019-07-30 23:25:27 2019-07-30 23:26:31 t 1 2 78066 212 0.00 2019-07-30 23:27:00 2019-07-30 23:27:33 t 1 2 78073 288 0.00 2019-07-30 23:34:58 2019-07-30 23:36:03 t 1 2 78074 288 0.00 2019-07-30 23:37:47 2019-07-30 23:38:53 t 1 2 78076 308 0.00 2019-07-30 23:36:38 2019-07-30 23:41:38 t 1 2 78086 212 0.00 2019-07-31 00:26:12 2019-07-31 00:27:16 t 1 2 78088 304 0.00 2019-07-31 00:21:06 2019-07-31 00:36:11 t 1 2 78089 304 0.00 2019-07-31 00:28:48 2019-07-31 00:38:53 t 1 2 78091 296 0.00 2019-07-31 00:36:23 2019-07-31 00:40:47 t 1 2 78097 217 0.00 2019-07-31 02:30:09 2019-07-31 02:50:14 t 1 2 78099 320 0.00 2019-07-31 05:35:15 2019-07-31 05:45:20 t 1 2 78101 218 0.00 2019-07-31 05:50:05 2019-07-31 06:55:10 t 1 2 78104 218 0.00 2019-07-31 07:09:09 2019-07-31 07:19:14 t 1 2 78106 294 0.00 2019-07-31 07:22:56 2019-07-31 07:33:58 t 1 2 78108 320 0.00 2019-07-31 07:50:00 2019-07-31 08:00:05 t 1 2 77776 304 0.00 2019-07-29 22:25:21 2019-07-29 22:35:27 t 1 2 77780 217 0.00 2019-07-29 22:39:23 2019-07-29 22:39:40 t 1 2 77783 304 0.00 2019-07-29 22:31:00 2019-07-29 22:41:05 t 1 2 77790 288 0.00 2019-07-29 22:55:12 2019-07-29 22:56:21 t 1 2 77801 304 0.00 2019-07-29 23:04:42 2019-07-29 23:14:47 t 1 2 77808 312 0.00 2019-07-29 23:40:17 2019-07-29 23:41:22 t 1 2 77817 288 0.00 2019-07-30 00:21:28 2019-07-30 00:22:33 t 1 2 77822 234 0.00 2019-07-29 22:05:48 2019-07-30 00:45:53 t 1 2 77831 212 0.00 2019-07-30 01:39:23 2019-07-30 01:39:49 t 1 2 81213 346 0.00 2019-08-08 13:26:49 2019-08-08 15:01:54 t 1 2 77840 217 0.00 2019-07-30 02:15:41 2019-07-30 03:20:46 t 1 2 77847 217 0.00 2019-07-30 07:25:00 2019-07-30 07:33:58 t 1 2 77852 294 0.00 2019-07-30 07:53:27 2019-07-30 07:55:51 t 1 2 77856 306 0.00 2019-07-30 08:26:49 2019-07-30 08:27:55 t 1 2 77858 212 0.00 2019-07-30 08:40:45 2019-07-30 08:41:43 t 1 2 77860 247 0.00 2019-07-30 08:50:03 2019-07-30 08:51:26 t 1 2 77864 212 0.00 2019-07-30 09:21:00 2019-07-30 09:22:25 t 1 2 77877 325 0.00 2019-07-30 10:41:06 2019-07-30 10:41:40 t 1 2 77878 220 0.00 2019-07-30 10:37:12 2019-07-30 10:42:35 t 1 2 77879 325 0.00 2019-07-30 10:42:01 2019-07-30 10:48:08 t 1 2 77884 294 0.00 2019-07-30 11:17:05 2019-07-30 11:25:26 t 1 2 77888 217 0.00 2019-07-30 11:42:29 2019-07-30 11:44:30 t 1 2 77892 217 0.00 2019-07-30 11:51:15 2019-07-30 11:52:23 t 1 2 77899 304 0.00 2019-07-30 12:04:56 2019-07-30 12:20:02 t 1 2 77901 312 0.00 2019-07-30 12:27:58 2019-07-30 12:29:02 t 1 2 77904 292 0.00 2019-07-30 12:31:39 2019-07-30 12:32:44 t 1 2 77908 247 0.00 2019-07-30 12:44:06 2019-07-30 12:47:41 t 1 2 77911 312 0.00 2019-07-30 12:56:59 2019-07-30 12:58:05 t 1 2 77918 292 0.00 2019-07-30 13:10:25 2019-07-30 13:11:26 t 1 2 77922 304 0.00 2019-07-30 13:30:07 2019-07-30 13:40:12 t 1 2 81221 220 0.00 2019-08-08 15:19:15 2019-08-08 15:29:06 t 1 1 77927 306 0.00 2019-07-30 13:55:16 2019-07-30 13:56:18 t 1 2 77929 243 0.00 2019-07-30 13:50:48 2019-07-30 14:01:14 t 1 2 77932 218 0.00 2019-07-30 10:00:46 2019-07-30 14:10:52 t 1 2 77934 243 0.00 2019-07-30 14:05:16 2019-07-30 14:15:26 t 1 2 77936 218 0.00 2019-07-30 14:17:34 2019-07-30 14:17:38 t 1 2 77937 206 0.00 2019-07-30 14:18:16 2019-07-30 14:19:19 t 1 2 77939 247 0.00 2019-07-30 14:20:38 2019-07-30 14:22:30 t 1 2 77947 302 0.00 2019-07-30 14:22:42 2019-07-30 14:32:48 t 1 2 77949 217 0.00 2019-07-30 14:34:52 2019-07-30 14:35:58 t 1 2 77951 217 0.00 2019-07-30 14:37:09 2019-07-30 14:37:29 t 1 2 77952 212 0.00 2019-07-30 14:33:57 2019-07-30 14:43:07 t 1 2 77955 304 0.00 2019-07-30 14:50:29 2019-07-30 15:05:34 t 1 2 77957 212 0.00 2019-07-30 15:09:15 2019-07-30 15:10:25 t 1 2 77959 325 0.00 2019-07-30 15:12:30 2019-07-30 15:21:47 t 1 2 77961 320 0.00 2019-07-30 15:01:12 2019-07-30 15:31:17 t 1 2 77964 320 0.00 2019-07-30 15:25:40 2019-07-30 15:35:46 t 1 2 77972 294 0.00 2019-07-30 15:38:59 2019-07-30 16:39:32 t 1 2 77976 325 0.00 2019-07-30 17:04:08 2019-07-30 17:14:13 t 1 2 77992 304 0.00 2019-07-30 18:26:01 2019-07-30 18:26:09 t 1 2 77994 304 0.00 2019-07-30 18:21:35 2019-07-30 18:31:40 t 1 2 78001 324 0.00 2019-07-30 19:17:30 2019-07-30 19:18:34 t 1 2 78008 217 0.00 2019-07-30 19:53:46 2019-07-30 20:04:42 t 1 2 78013 272 0.00 2019-07-30 16:32:50 2019-07-30 20:41:28 t 1 2 78019 212 0.00 2019-07-30 21:06:33 2019-07-30 21:07:31 t 1 2 78020 304 0.00 2019-07-30 20:43:32 2019-07-30 21:08:38 t 1 2 78023 304 0.00 2019-07-30 21:04:15 2019-07-30 21:14:20 t 1 2 78025 304 0.00 2019-07-30 21:19:24 2019-07-30 21:29:30 t 1 2 78027 320 0.00 2019-07-30 21:21:11 2019-07-30 21:31:16 t 1 2 78030 320 0.00 2019-07-30 21:41:06 2019-07-30 21:51:11 t 1 2 78033 288 0.00 2019-07-30 22:01:38 2019-07-30 22:02:46 t 1 2 78035 306 0.00 2019-07-30 22:04:36 2019-07-30 22:05:39 t 1 2 78042 288 0.00 2019-07-30 22:15:07 2019-07-30 22:16:11 t 1 2 78046 324 0.00 2019-07-30 22:24:09 2019-07-30 22:24:09 f 1 2 78048 324 0.00 2019-07-30 22:27:26 2019-07-30 22:28:31 t 1 2 78049 306 0.00 2019-07-30 22:32:24 2019-07-30 22:33:26 t 1 2 78060 212 0.00 2019-07-30 23:12:47 2019-07-30 23:13:05 t 1 2 78061 292 0.00 2019-07-30 23:13:51 2019-07-30 23:13:56 t 1 2 78064 288 0.00 2019-07-30 23:23:30 2019-07-30 23:24:34 t 1 2 78067 288 0.00 2019-07-30 23:26:56 2019-07-30 23:28:00 t 1 2 78068 288 0.00 2019-07-30 23:30:07 2019-07-30 23:31:15 t 1 2 78069 324 0.00 2019-07-30 23:31:17 2019-07-30 23:32:20 t 1 2 78080 212 0.00 2019-07-30 23:53:39 2019-07-30 23:55:58 t 1 2 78082 325 0.00 2019-07-30 21:06:51 2019-07-31 00:06:04 t 1 2 78090 302 0.00 2019-07-31 00:17:32 2019-07-31 00:40:15 t 1 2 78094 320 0.00 2019-07-30 23:07:06 2019-07-31 02:30:45 t 1 2 78095 217 0.00 2019-07-31 02:22:28 2019-07-31 02:37:33 t 1 2 78096 322 0.00 2019-07-31 00:47:08 2019-07-31 02:48:37 t 1 2 78098 272 0.00 2019-07-30 22:24:54 2019-07-31 03:48:22 t 1 2 78100 302 0.00 2019-07-31 00:41:44 2019-07-31 06:11:50 t 1 2 78102 212 0.00 2019-07-31 06:59:45 2019-07-31 07:00:50 t 1 2 81223 306 0.00 2019-08-08 15:29:04 2019-08-08 15:30:06 t 1 2 78110 288 0.00 2019-07-31 08:09:55 2019-07-31 08:10:58 t 1 2 78121 288 0.00 2019-07-31 09:13:35 2019-07-31 09:14:38 t 1 2 78127 232 0.00 2019-07-31 09:31:41 2019-07-31 09:32:45 t 1 2 78141 288 0.00 2019-07-31 10:29:37 2019-07-31 10:30:45 t 1 2 78146 325 0.00 2019-07-31 10:34:20 2019-07-31 10:37:27 t 1 2 78148 304 0.00 2019-07-31 10:35:07 2019-07-31 10:45:12 t 1 2 78149 217 0.00 2019-07-31 10:26:54 2019-07-31 10:47:00 t 1 2 78150 306 0.00 2019-07-31 10:49:59 2019-07-31 10:51:06 t 1 2 78153 217 0.00 2019-07-31 10:39:28 2019-07-31 10:59:34 t 1 2 78157 288 0.00 2019-07-31 11:23:26 2019-07-31 11:24:32 t 1 2 78169 320 0.00 2019-07-31 11:55:30 2019-07-31 12:10:35 t 1 2 78173 304 0.00 2019-07-31 12:31:25 2019-07-31 12:51:30 t 1 2 78177 234 0.00 2019-07-31 12:06:02 2019-07-31 13:10:15 t 1 2 78181 218 0.00 2019-07-31 13:08:30 2019-07-31 13:27:00 t 1 2 78190 306 0.00 2019-07-31 13:44:27 2019-07-31 13:45:31 t 1 2 78194 306 0.00 2019-07-31 13:50:23 2019-07-31 13:51:29 t 1 2 78195 288 0.00 2019-07-31 13:53:14 2019-07-31 13:54:19 t 1 2 78199 320 0.00 2019-07-31 13:40:46 2019-07-31 14:10:51 t 1 2 78206 288 0.00 2019-07-31 14:39:44 2019-07-31 14:40:50 t 1 2 78207 306 0.00 2019-07-31 14:47:20 2019-07-31 14:48:24 t 1 2 78216 290 0.00 2019-07-31 15:48:04 2019-07-31 15:49:10 t 1 2 78220 320 0.00 2019-07-31 15:36:16 2019-07-31 16:01:21 t 1 2 78229 247 0.00 2019-07-31 16:40:25 2019-07-31 16:42:27 t 1 2 78230 320 0.00 2019-07-31 16:30:54 2019-07-31 16:45:59 t 1 2 78234 306 0.00 2019-07-31 16:51:24 2019-07-31 16:52:29 t 1 2 77979 325 0.00 2019-07-30 17:06:30 2019-07-30 17:23:14 t 1 2 77980 288 0.00 2019-07-30 17:25:07 2019-07-30 17:26:09 t 1 2 77985 294 0.00 2019-07-30 17:04:50 2019-07-30 18:01:11 t 1 2 77995 304 0.00 2019-07-30 18:26:43 2019-07-30 18:36:48 t 1 2 77996 322 0.00 2019-07-30 18:27:39 2019-07-30 18:52:44 t 1 2 77998 288 0.00 2019-07-30 18:55:59 2019-07-30 18:57:03 t 1 2 78000 304 0.00 2019-07-30 18:55:28 2019-07-30 19:05:33 t 1 2 78003 288 0.00 2019-07-30 19:50:48 2019-07-30 19:51:53 t 1 2 78007 306 0.00 2019-07-30 19:59:57 2019-07-30 20:01:01 t 1 2 78018 304 0.00 2019-07-30 21:02:59 2019-07-30 21:03:10 t 1 2 78022 288 0.00 2019-07-30 21:13:11 2019-07-30 21:14:14 t 1 2 78037 304 0.00 2019-07-30 21:53:06 2019-07-30 22:08:11 t 1 2 78039 272 0.00 2019-07-30 18:17:14 2019-07-30 22:12:19 t 1 2 78041 218 0.00 2019-07-30 22:00:42 2019-07-30 22:15:47 t 1 2 78044 288 0.00 2019-07-30 22:16:42 2019-07-30 22:17:46 t 1 2 78045 288 0.00 2019-07-30 22:19:46 2019-07-30 22:20:51 t 1 2 78052 320 0.00 2019-07-30 22:31:54 2019-07-30 22:46:59 t 1 2 78057 320 0.00 2019-07-30 22:51:36 2019-07-30 23:01:41 t 1 2 81215 220 0.00 2019-08-08 15:08:09 2019-08-08 15:08:17 t 1 1 78062 288 0.00 2019-07-30 23:19:14 2019-07-30 23:20:17 t 1 2 78071 324 0.00 2019-07-30 23:32:57 2019-07-30 23:34:00 t 1 2 78075 288 0.00 2019-07-30 23:39:18 2019-07-30 23:40:24 t 1 2 78077 212 0.00 2019-07-30 23:42:33 2019-07-30 23:42:57 t 1 2 78078 304 0.00 2019-07-30 23:36:13 2019-07-30 23:46:18 t 1 2 78083 220 0.00 2019-07-30 22:21:39 2019-07-31 00:19:04 t 1 2 78084 212 0.00 2019-07-31 00:24:22 2019-07-31 00:25:25 t 1 2 78087 243 0.00 2019-07-31 00:30:02 2019-07-31 00:30:05 t 1 2 78092 243 0.00 2019-07-31 00:30:20 2019-07-31 00:42:16 t 1 2 78093 234 0.00 2019-07-31 00:49:38 2019-07-31 00:52:38 t 1 2 78103 292 0.00 2019-07-31 07:04:58 2019-07-31 07:06:07 t 1 2 78111 306 0.00 2019-07-31 08:14:10 2019-07-31 08:15:14 t 1 2 78113 288 0.00 2019-07-31 08:49:53 2019-07-31 08:50:58 t 1 2 78116 306 0.00 2019-07-31 09:01:21 2019-07-31 09:02:09 t 1 2 78120 288 0.00 2019-07-31 09:12:12 2019-07-31 09:13:16 t 1 2 78125 247 0.00 2019-07-31 09:23:46 2019-07-31 09:24:46 t 1 2 78130 304 0.00 2019-07-31 09:38:40 2019-07-31 09:48:45 t 1 2 78134 204 0.00 2019-07-31 09:39:55 2019-07-31 09:58:57 t 1 2 78135 288 0.00 2019-07-31 10:01:03 2019-07-31 10:02:06 t 1 2 78137 217 0.00 2019-07-31 09:52:05 2019-07-31 10:07:11 t 1 2 78138 304 0.00 2019-07-31 10:01:45 2019-07-31 10:11:50 t 1 2 78142 306 0.00 2019-07-31 10:29:48 2019-07-31 10:30:53 t 1 2 78154 288 0.00 2019-07-31 11:05:37 2019-07-31 11:06:40 t 1 2 78155 288 0.00 2019-07-31 11:12:36 2019-07-31 11:13:39 t 1 2 78156 288 0.00 2019-07-31 11:21:19 2019-07-31 11:22:24 t 1 2 78161 306 0.00 2019-07-31 11:29:47 2019-07-31 11:30:51 t 1 2 78163 220 0.00 2019-07-31 11:26:58 2019-07-31 11:42:03 t 1 2 78166 288 0.00 2019-07-31 11:53:25 2019-07-31 11:54:32 t 1 2 78167 286 0.00 2019-07-31 10:54:33 2019-07-31 12:04:38 t 1 2 78171 304 0.00 2019-07-31 12:14:09 2019-07-31 12:24:15 t 1 2 78175 306 0.00 2019-07-31 12:54:21 2019-07-31 12:55:25 t 1 2 78179 217 0.00 2019-07-31 13:23:52 2019-07-31 13:24:56 t 1 2 78183 217 0.00 2019-07-31 13:29:27 2019-07-31 13:30:33 t 1 2 78188 306 0.00 2019-07-31 13:42:05 2019-07-31 13:43:09 t 1 2 78193 327 0.00 2019-07-31 12:47:42 2019-07-31 13:48:06 t 1 2 78197 218 0.00 2019-07-31 09:36:13 2019-07-31 14:01:18 t 1 2 78201 304 0.00 2019-07-31 14:16:26 2019-07-31 14:26:31 t 1 2 78203 306 0.00 2019-07-31 14:30:46 2019-07-31 14:31:47 t 1 2 78208 327 0.00 2019-07-31 13:50:23 2019-07-31 14:50:38 t 1 2 78210 320 0.00 2019-07-31 14:53:43 2019-07-31 15:03:49 t 1 2 78213 234 0.00 2019-07-31 15:20:37 2019-07-31 15:35:42 t 1 2 78215 232 0.00 2019-07-31 15:44:10 2019-07-31 15:45:13 t 1 2 78217 288 0.00 2019-07-31 15:49:19 2019-07-31 15:50:22 t 1 2 78223 306 0.00 2019-07-31 16:12:13 2019-07-31 16:13:17 t 1 2 78228 230 0.00 2019-07-31 14:12:34 2019-07-31 16:38:55 t 1 2 78239 327 0.00 2019-07-31 15:42:43 2019-07-31 17:05:12 t 1 2 78240 304 0.00 2019-07-31 16:57:33 2019-07-31 17:07:38 t 1 2 78243 304 0.00 2019-07-31 17:07:30 2019-07-31 17:17:35 t 1 2 78249 314 0.00 2019-07-31 17:00:58 2019-07-31 18:01:04 t 1 2 78254 218 0.00 2019-07-31 18:24:58 2019-07-31 18:35:04 t 1 2 78257 292 0.00 2019-07-31 18:36:58 2019-07-31 18:38:03 t 1 2 78260 306 0.00 2019-07-31 18:48:56 2019-07-31 18:50:03 t 1 2 78263 218 0.00 2019-07-31 19:09:24 2019-07-31 19:10:14 t 1 2 78264 329 0.00 2019-07-31 19:11:15 2019-07-31 19:12:21 t 1 2 78265 329 0.00 2019-07-31 19:14:24 2019-07-31 19:15:14 t 1 2 78266 329 0.00 2019-07-31 19:16:37 2019-07-31 19:18:40 t 1 2 78267 318 0.00 2019-07-31 18:32:57 2019-07-31 19:23:02 t 1 2 78268 304 0.00 2019-07-31 19:09:39 2019-07-31 19:24:44 t 1 2 78274 218 0.00 2019-07-31 19:34:54 2019-07-31 19:49:59 t 1 2 78279 304 0.00 2019-07-31 19:44:47 2019-07-31 19:59:52 t 1 2 78284 212 0.00 2019-07-31 20:14:18 2019-07-31 20:14:27 t 1 2 78291 314 0.00 2019-07-31 20:25:08 2019-07-31 20:26:53 t 1 2 78293 288 0.00 2019-07-31 20:29:56 2019-07-31 20:31:05 t 1 2 78299 306 0.00 2019-07-31 20:36:53 2019-07-31 20:37:55 t 1 2 78302 320 0.00 2019-07-31 20:30:12 2019-07-31 20:40:17 t 1 2 78310 234 0.00 2019-07-31 20:55:27 2019-07-31 21:10:32 t 1 2 78312 320 0.00 2019-07-31 21:16:34 2019-07-31 21:26:39 t 1 2 78313 311 0.00 2019-07-31 21:03:46 2019-07-31 21:28:51 t 1 2 78315 331 0.00 2019-07-31 21:40:59 2019-07-31 21:41:06 t 1 2 78319 306 0.00 2019-07-31 21:50:07 2019-07-31 21:51:09 t 1 2 78321 212 0.00 2019-07-31 22:01:29 2019-07-31 22:02:34 t 1 2 78328 212 0.00 2019-07-31 22:24:07 2019-07-31 22:25:11 t 1 2 78334 212 0.00 2019-07-31 22:29:55 2019-07-31 22:30:57 t 1 2 78340 306 0.00 2019-07-31 22:37:08 2019-07-31 22:38:15 t 1 2 78341 288 0.00 2019-07-31 22:40:08 2019-07-31 22:41:13 t 1 2 78344 294 0.00 2019-07-31 21:45:24 2019-07-31 22:45:48 t 1 2 78345 212 0.00 2019-07-31 22:48:01 2019-07-31 22:49:06 t 1 2 78349 306 0.00 2019-07-31 23:00:28 2019-07-31 23:01:32 t 1 2 78354 212 0.00 2019-07-31 23:06:32 2019-07-31 23:07:07 t 1 2 78363 304 0.00 2019-07-31 23:13:57 2019-07-31 23:24:02 t 1 2 78367 212 0.00 2019-07-31 23:32:32 2019-07-31 23:33:36 t 1 2 81219 220 0.00 2019-08-08 15:18:38 2019-08-08 15:18:50 t 1 1 78374 304 0.00 2019-07-31 23:44:27 2019-08-01 00:04:32 t 1 2 78376 290 0.00 2019-07-31 23:17:34 2019-08-01 00:07:39 t 1 2 78377 247 0.00 2019-08-01 00:11:57 2019-08-01 00:13:48 t 1 2 78378 288 0.00 2019-08-01 00:18:47 2019-08-01 00:19:53 t 1 2 78391 218 0.00 2019-08-01 01:01:41 2019-08-01 01:11:47 t 1 2 78393 320 0.00 2019-08-01 00:15:16 2019-08-01 01:20:21 t 1 2 78026 288 0.00 2019-07-30 21:28:28 2019-07-30 21:29:31 t 1 2 78028 218 0.00 2019-07-30 18:06:13 2019-07-30 21:31:18 t 1 2 78031 212 0.00 2019-07-30 21:50:40 2019-07-30 21:51:28 t 1 2 78034 288 0.00 2019-07-30 22:03:32 2019-07-30 22:04:37 t 1 2 78043 212 0.00 2019-07-30 22:15:37 2019-07-30 22:16:30 t 1 2 78051 204 0.00 2019-07-30 22:26:05 2019-07-30 22:46:06 t 1 2 78054 306 0.00 2019-07-30 22:53:44 2019-07-30 22:54:47 t 1 2 78056 218 0.00 2019-07-30 22:47:15 2019-07-30 22:57:20 t 1 2 78059 247 0.00 2019-07-30 23:02:19 2019-07-30 23:05:54 t 1 2 78063 288 0.00 2019-07-30 23:21:21 2019-07-30 23:22:27 t 1 2 78070 288 0.00 2019-07-30 23:32:04 2019-07-30 23:33:07 t 1 2 78072 288 0.00 2019-07-30 23:33:32 2019-07-30 23:34:38 t 1 2 78079 294 0.00 2019-07-30 21:58:19 2019-07-30 23:49:43 t 1 2 78081 218 0.00 2019-07-30 23:44:25 2019-07-31 00:04:30 t 1 2 78085 304 0.00 2019-07-31 00:17:07 2019-07-31 00:27:12 t 1 2 78105 320 0.00 2019-07-31 07:18:06 2019-07-31 07:28:11 t 1 2 78109 247 0.00 2019-07-31 08:03:22 2019-07-31 08:09:19 t 1 2 78117 288 0.00 2019-07-31 09:05:57 2019-07-31 09:07:00 t 1 2 78118 288 0.00 2019-07-31 09:07:26 2019-07-31 09:08:32 t 1 2 78119 296 0.00 2019-07-31 09:06:39 2019-07-31 09:11:03 t 1 2 78123 288 0.00 2019-07-31 09:17:30 2019-07-31 09:18:37 t 1 2 78126 325 0.00 2019-07-31 09:28:14 2019-07-31 09:32:36 t 1 2 78128 232 0.00 2019-07-31 09:33:25 2019-07-31 09:34:29 t 1 2 78131 306 0.00 2019-07-31 09:49:33 2019-07-31 09:50:39 t 1 2 78133 314 0.00 2019-07-31 08:32:53 2019-07-31 09:57:58 t 1 2 78136 304 0.00 2019-07-31 09:50:26 2019-07-31 10:05:31 t 1 2 78139 306 0.00 2019-07-31 10:18:57 2019-07-31 10:20:01 t 1 2 78140 304 0.00 2019-07-31 10:07:52 2019-07-31 10:22:58 t 1 2 78144 217 0.00 2019-07-31 10:18:44 2019-07-31 10:33:49 t 1 2 78151 217 0.00 2019-07-31 10:53:29 2019-07-31 10:54:56 t 1 2 78159 304 0.00 2019-07-31 11:08:49 2019-07-31 11:28:54 t 1 2 78164 232 0.00 2019-07-31 11:41:11 2019-07-31 11:42:15 t 1 2 78172 327 0.00 2019-07-31 12:29:05 2019-07-31 12:31:11 t 1 2 78174 306 0.00 2019-07-31 12:52:14 2019-07-31 12:53:17 t 1 2 78180 217 0.00 2019-07-31 13:25:31 2019-07-31 13:26:33 t 1 2 78182 304 0.00 2019-07-31 13:17:54 2019-07-31 13:28:00 t 1 2 78187 306 0.00 2019-07-31 13:33:27 2019-07-31 13:34:29 t 1 2 78191 306 0.00 2019-07-31 13:45:53 2019-07-31 13:46:59 t 1 2 78205 247 0.00 2019-07-31 14:37:51 2019-07-31 14:39:33 t 1 2 78209 314 0.00 2019-07-31 14:22:13 2019-07-31 14:53:37 t 1 2 78214 232 0.00 2019-07-31 15:42:22 2019-07-31 15:43:28 t 1 2 78218 220 0.00 2019-07-31 15:38:47 2019-07-31 15:56:27 t 1 2 78222 306 0.00 2019-07-31 16:07:57 2019-07-31 16:09:04 t 1 2 81216 335 0.00 2019-08-08 13:43:33 2019-08-08 15:08:38 t 1 2 78232 306 0.00 2019-07-31 16:49:12 2019-07-31 16:50:18 t 1 2 78233 218 0.00 2019-07-31 16:36:21 2019-07-31 16:51:26 t 1 2 78236 311 0.00 2019-07-31 16:35:13 2019-07-31 17:00:18 t 1 2 78241 247 0.00 2019-07-31 17:10:21 2019-07-31 17:12:16 t 1 2 78250 218 0.00 2019-07-31 17:51:02 2019-07-31 18:01:07 t 1 2 78251 236 0.00 2019-07-31 17:56:50 2019-07-31 18:06:55 t 1 2 78255 320 0.00 2019-07-31 18:25:04 2019-07-31 18:35:09 t 1 2 78262 320 0.00 2019-07-31 18:39:25 2019-07-31 18:59:30 t 1 2 78270 234 0.00 2019-07-31 19:16:09 2019-07-31 19:31:14 t 1 2 78272 311 0.00 2019-07-31 19:28:39 2019-07-31 19:34:58 t 1 2 78275 306 0.00 2019-07-31 19:49:03 2019-07-31 19:50:09 t 1 2 81218 220 0.00 2019-08-08 15:08:46 2019-08-08 15:18:38 t 1 1 78285 331 0.00 2019-07-31 20:14:42 2019-07-31 20:15:47 t 1 2 78287 212 0.00 2019-07-31 20:17:43 2019-07-31 20:19:35 t 1 2 78289 331 0.00 2019-07-31 20:19:32 2019-07-31 20:20:38 t 1 2 78290 212 0.00 2019-07-31 20:22:47 2019-07-31 20:23:38 t 1 2 78296 288 0.00 2019-07-31 20:34:05 2019-07-31 20:35:10 t 1 2 78297 331 0.00 2019-07-31 20:35:13 2019-07-31 20:36:17 t 1 2 78317 306 0.00 2019-07-31 21:44:00 2019-07-31 21:45:04 t 1 2 78323 292 0.00 2019-07-31 22:08:16 2019-07-31 22:09:22 t 1 2 78325 217 0.00 2019-07-31 22:03:11 2019-07-31 22:11:41 t 1 2 78335 212 0.00 2019-07-31 22:31:44 2019-07-31 22:31:53 t 1 2 78337 212 0.00 2019-07-31 22:34:29 2019-07-31 22:34:38 t 1 2 78346 212 0.00 2019-07-31 22:55:05 2019-07-31 22:55:52 t 1 2 78358 218 0.00 2019-07-31 21:30:47 2019-07-31 23:15:52 t 1 2 78361 306 0.00 2019-07-31 23:17:54 2019-07-31 23:18:57 t 1 2 78368 234 0.00 2019-07-31 23:07:10 2019-07-31 23:37:15 t 1 2 78373 212 0.00 2019-07-31 23:57:16 2019-07-31 23:58:17 t 1 2 78375 288 0.00 2019-08-01 00:05:16 2019-08-01 00:06:21 t 1 2 78379 320 0.00 2019-07-31 23:30:41 2019-08-01 00:20:46 t 1 2 78381 288 0.00 2019-08-01 00:20:23 2019-08-01 00:21:32 t 1 2 78383 218 0.00 2019-07-31 23:39:13 2019-08-01 00:24:18 t 1 2 78385 288 0.00 2019-08-01 00:25:47 2019-08-01 00:26:51 t 1 2 78396 288 0.00 2019-08-01 01:26:13 2019-08-01 01:27:18 t 1 2 78397 288 0.00 2019-08-01 01:28:50 2019-08-01 01:29:55 t 1 2 78405 288 0.00 2019-08-01 01:59:02 2019-08-01 02:00:08 t 1 2 78413 288 0.00 2019-08-01 02:21:37 2019-08-01 02:22:44 t 1 2 78415 322 0.00 2019-08-01 01:26:04 2019-08-01 03:15:21 t 1 2 78418 288 0.00 2019-08-01 03:50:30 2019-08-01 03:51:37 t 1 2 78425 288 0.00 2019-08-01 04:01:32 2019-08-01 04:02:39 t 1 2 78427 288 0.00 2019-08-01 04:04:35 2019-08-01 04:05:39 t 1 2 78431 288 0.00 2019-08-01 04:25:00 2019-08-01 04:26:06 t 1 2 78438 212 0.00 2019-08-01 08:51:42 2019-08-01 08:52:49 t 1 2 78443 288 0.00 2019-08-01 09:01:02 2019-08-01 09:02:05 t 1 2 78445 288 0.00 2019-08-01 09:04:21 2019-08-01 09:05:24 t 1 2 78458 304 0.00 2019-08-01 09:34:45 2019-08-01 09:49:50 t 1 2 78461 304 0.00 2019-08-01 09:56:01 2019-08-01 09:56:05 t 1 2 78464 331 0.00 2019-08-01 09:59:39 2019-08-01 10:00:43 t 1 2 78466 331 0.00 2019-08-01 10:04:02 2019-08-01 10:05:06 t 1 2 78468 304 0.00 2019-08-01 09:56:13 2019-08-01 10:06:18 t 1 2 78470 288 0.00 2019-08-01 10:07:41 2019-08-01 10:08:46 t 1 2 78471 320 0.00 2019-08-01 10:03:27 2019-08-01 10:13:32 t 1 2 78474 232 0.00 2019-08-01 10:20:07 2019-08-01 10:21:14 t 1 2 78479 304 0.00 2019-08-01 10:24:59 2019-08-01 10:24:59 f 1 2 78491 292 0.00 2019-08-01 10:46:52 2019-08-01 10:47:55 t 1 2 78493 320 0.00 2019-08-01 10:46:29 2019-08-01 10:56:34 t 1 2 78497 212 0.00 2019-08-01 11:29:33 2019-08-01 11:30:20 t 1 2 78504 220 0.00 2019-08-01 11:01:34 2019-08-01 11:51:40 t 1 2 78511 304 0.00 2019-08-01 12:12:18 2019-08-01 12:22:23 t 1 2 78514 206 0.00 2019-08-01 12:38:36 2019-08-01 12:39:41 t 1 2 78523 288 0.00 2019-08-01 13:00:37 2019-08-01 13:01:41 t 1 2 78533 290 0.00 2019-08-01 13:32:24 2019-08-01 13:33:29 t 1 2 78537 320 0.00 2019-08-01 13:03:00 2019-08-01 13:58:06 t 1 2 78112 306 0.00 2019-07-31 08:45:20 2019-07-31 08:46:23 t 1 2 78114 288 0.00 2019-07-31 08:52:05 2019-07-31 08:53:07 t 1 2 78115 288 0.00 2019-07-31 08:59:16 2019-07-31 09:00:23 t 1 2 78122 325 0.00 2019-07-31 09:08:31 2019-07-31 09:18:37 t 1 2 78124 288 0.00 2019-07-31 09:22:45 2019-07-31 09:23:50 t 1 2 78129 232 0.00 2019-07-31 09:35:07 2019-07-31 09:36:13 t 1 2 78132 306 0.00 2019-07-31 09:50:52 2019-07-31 09:51:58 t 1 2 78143 306 0.00 2019-07-31 10:31:41 2019-07-31 10:32:43 t 1 2 78145 288 0.00 2019-07-31 10:35:43 2019-07-31 10:36:49 t 1 2 78147 288 0.00 2019-07-31 10:37:42 2019-07-31 10:38:46 t 1 2 78152 304 0.00 2019-07-31 10:49:04 2019-07-31 10:59:09 t 1 2 78158 234 0.00 2019-07-31 10:57:16 2019-07-31 11:27:22 t 1 2 78160 288 0.00 2019-07-31 11:28:13 2019-07-31 11:29:17 t 1 2 78162 243 0.00 2019-07-31 11:21:51 2019-07-31 11:31:58 t 1 2 78165 304 0.00 2019-07-31 11:42:53 2019-07-31 11:52:58 t 1 2 78168 304 0.00 2019-07-31 11:55:43 2019-07-31 12:05:48 t 1 2 78170 288 0.00 2019-07-31 12:12:18 2019-07-31 12:13:23 t 1 2 78176 306 0.00 2019-07-31 12:56:18 2019-07-31 12:57:23 t 1 2 78178 304 0.00 2019-07-31 12:57:23 2019-07-31 13:12:28 t 1 2 78184 306 0.00 2019-07-31 13:31:06 2019-07-31 13:32:10 t 1 2 78185 306 0.00 2019-07-31 13:33:05 2019-07-31 13:33:09 t 1 2 78186 288 0.00 2019-07-31 13:32:31 2019-07-31 13:33:34 t 1 2 78189 320 0.00 2019-07-31 12:34:42 2019-07-31 13:44:48 t 1 2 78192 212 0.00 2019-07-31 13:44:46 2019-07-31 13:47:08 t 1 2 78196 306 0.00 2019-07-31 13:58:44 2019-07-31 13:59:51 t 1 2 78198 220 0.00 2019-07-31 14:09:28 2019-07-31 14:09:52 t 1 2 78200 218 0.00 2019-07-31 14:08:21 2019-07-31 14:18:26 t 1 2 78202 220 0.00 2019-07-31 14:09:57 2019-07-31 14:30:02 t 1 2 78204 306 0.00 2019-07-31 14:36:08 2019-07-31 14:37:14 t 1 2 78211 304 0.00 2019-07-31 14:55:10 2019-07-31 15:05:15 t 1 2 78212 234 0.00 2019-07-31 13:23:23 2019-07-31 15:18:29 t 1 2 78219 220 0.00 2019-07-31 15:56:38 2019-07-31 16:00:38 t 1 2 78221 320 0.00 2019-07-31 15:53:05 2019-07-31 16:08:10 t 1 2 78224 304 0.00 2019-07-31 16:06:48 2019-07-31 16:16:53 t 1 2 78225 290 0.00 2019-07-31 16:25:39 2019-07-31 16:26:40 t 1 2 78226 306 0.00 2019-07-31 16:29:25 2019-07-31 16:30:25 t 1 2 78227 320 0.00 2019-07-31 16:11:52 2019-07-31 16:31:57 t 1 2 78237 320 0.00 2019-07-31 16:51:12 2019-07-31 17:01:18 t 1 2 78244 234 0.00 2019-07-31 17:14:38 2019-07-31 17:17:38 t 1 2 78245 212 0.00 2019-07-31 17:42:31 2019-07-31 17:43:19 t 1 2 78247 236 0.00 2019-07-31 17:56:40 2019-07-31 17:56:44 t 1 2 78248 320 0.00 2019-07-31 16:56:55 2019-07-31 17:57:00 t 1 2 78252 320 0.00 2019-07-31 17:59:56 2019-07-31 18:10:02 t 1 2 78256 232 0.00 2019-07-31 18:35:16 2019-07-31 18:36:22 t 1 2 78269 329 0.00 2019-07-31 19:18:51 2019-07-31 19:28:57 t 1 2 78273 218 0.00 2019-07-31 19:24:58 2019-07-31 19:35:03 t 1 2 78277 236 0.00 2019-07-31 17:59:04 2019-07-31 19:59:09 t 1 2 78286 288 0.00 2019-07-31 20:14:57 2019-07-31 20:16:03 t 1 2 78294 331 0.00 2019-07-31 20:32:06 2019-07-31 20:33:09 t 1 2 78300 331 0.00 2019-07-31 20:38:38 2019-07-31 20:39:45 t 1 2 78307 306 0.00 2019-07-31 21:06:31 2019-07-31 21:07:37 t 1 2 78309 306 0.00 2019-07-31 21:08:07 2019-07-31 21:09:10 t 1 2 78316 294 0.00 2019-07-31 21:32:26 2019-07-31 21:42:50 t 1 2 78322 292 0.00 2019-07-31 22:01:46 2019-07-31 22:02:46 t 1 2 78324 212 0.00 2019-07-31 22:09:30 2019-07-31 22:10:33 t 1 2 78329 212 0.00 2019-07-31 22:26:11 2019-07-31 22:27:15 t 1 2 78330 304 0.00 2019-07-31 22:27:21 2019-07-31 22:27:30 t 1 2 78331 212 0.00 2019-07-31 22:27:36 2019-07-31 22:28:37 t 1 2 78332 234 0.00 2019-07-31 22:14:16 2019-07-31 22:29:46 t 1 2 78333 311 0.00 2019-07-31 21:42:35 2019-07-31 22:30:14 t 1 2 78336 212 0.00 2019-07-31 22:32:12 2019-07-31 22:33:17 t 1 2 78338 212 0.00 2019-07-31 22:34:56 2019-07-31 22:36:00 t 1 2 78343 212 0.00 2019-07-31 22:44:33 2019-07-31 22:45:22 t 1 2 78347 306 0.00 2019-07-31 22:57:49 2019-07-31 22:58:52 t 1 2 78350 232 0.00 2019-07-31 23:00:42 2019-07-31 23:01:45 t 1 2 78355 331 0.00 2019-07-31 23:07:56 2019-07-31 23:09:00 t 1 2 78356 220 0.00 2019-07-31 21:21:45 2019-07-31 23:15:09 t 1 2 78359 288 0.00 2019-07-31 23:14:49 2019-07-31 23:15:53 t 1 2 78362 288 0.00 2019-07-31 23:19:30 2019-07-31 23:20:33 t 1 2 78365 320 0.00 2019-07-31 22:51:07 2019-07-31 23:31:12 t 1 2 78370 212 0.00 2019-07-31 23:46:32 2019-07-31 23:46:55 t 1 2 78371 304 0.00 2019-07-31 23:34:20 2019-07-31 23:49:25 t 1 2 78380 243 0.00 2019-08-01 00:04:46 2019-08-01 00:20:53 t 1 2 78386 308 0.00 2019-07-31 19:47:12 2019-08-01 00:27:18 t 1 2 78388 288 0.00 2019-08-01 00:27:40 2019-08-01 00:28:45 t 1 2 78390 217 0.00 2019-08-01 00:38:54 2019-08-01 01:03:59 t 1 2 78404 288 0.00 2019-08-01 01:57:29 2019-08-01 01:58:36 t 1 2 78410 288 0.00 2019-08-01 02:06:57 2019-08-01 02:08:03 t 1 2 78416 288 0.00 2019-08-01 03:17:54 2019-08-01 03:18:57 t 1 2 78419 288 0.00 2019-08-01 03:51:55 2019-08-01 03:52:58 t 1 2 78421 288 0.00 2019-08-01 03:54:54 2019-08-01 03:55:59 t 1 2 78423 288 0.00 2019-08-01 03:57:52 2019-08-01 03:58:55 t 1 2 78426 288 0.00 2019-08-01 04:03:14 2019-08-01 04:04:17 t 1 2 78429 288 0.00 2019-08-01 04:07:18 2019-08-01 04:08:23 t 1 2 78430 288 0.00 2019-08-01 04:23:28 2019-08-01 04:24:31 t 1 2 78433 304 0.00 2019-08-01 06:34:52 2019-08-01 06:44:57 t 1 2 78436 306 0.00 2019-08-01 08:33:18 2019-08-01 08:34:23 t 1 2 78437 304 0.00 2019-08-01 08:26:59 2019-08-01 08:37:04 t 1 2 78449 288 0.00 2019-08-01 09:16:17 2019-08-01 09:17:22 t 1 2 78451 288 0.00 2019-08-01 09:17:45 2019-08-01 09:18:49 t 1 2 78455 304 0.00 2019-08-01 09:23:04 2019-08-01 09:33:09 t 1 2 78462 306 0.00 2019-08-01 09:55:10 2019-08-01 09:56:14 t 1 2 78463 306 0.00 2019-08-01 09:58:01 2019-08-01 09:59:04 t 1 2 78477 288 0.00 2019-08-01 10:22:27 2019-08-01 10:23:32 t 1 2 78478 304 0.00 2019-08-01 10:24:48 2019-08-01 10:24:48 f 1 2 78480 304 0.00 2019-08-01 10:25:14 2019-08-01 10:25:14 f 1 2 78487 304 0.00 2019-08-01 10:26:58 2019-08-01 10:37:03 t 1 2 78492 212 0.00 2019-08-01 10:55:04 2019-08-01 10:55:28 t 1 2 78494 320 0.00 2019-08-01 10:55:15 2019-08-01 11:05:20 t 1 2 78498 320 0.00 2019-08-01 11:20:40 2019-08-01 11:30:45 t 1 2 78502 304 0.00 2019-08-01 11:47:02 2019-08-01 11:47:07 t 1 2 78508 247 0.00 2019-08-01 12:04:11 2019-08-01 12:04:47 t 1 2 78513 327 0.00 2019-08-01 11:32:34 2019-08-01 12:32:58 t 1 2 78516 206 0.00 2019-08-01 12:39:57 2019-08-01 12:41:01 t 1 2 78518 306 0.00 2019-08-01 12:48:48 2019-08-01 12:49:54 t 1 2 78520 306 0.00 2019-08-01 12:55:49 2019-08-01 12:56:53 t 1 2 78521 288 0.00 2019-08-01 12:56:34 2019-08-01 12:57:42 t 1 2 78235 230 0.00 2019-07-31 16:45:27 2019-07-31 16:53:52 t 1 2 78238 304 0.00 2019-07-31 16:43:50 2019-07-31 17:03:55 t 1 2 78242 218 0.00 2019-07-31 17:06:35 2019-07-31 17:16:41 t 1 2 78246 304 0.00 2019-07-31 17:44:30 2019-07-31 17:54:35 t 1 2 78253 320 0.00 2019-07-31 18:13:33 2019-07-31 18:23:38 t 1 2 78258 306 0.00 2019-07-31 18:41:17 2019-07-31 18:42:26 t 1 2 78259 306 0.00 2019-07-31 18:45:16 2019-07-31 18:46:20 t 1 2 78261 304 0.00 2019-07-31 18:45:30 2019-07-31 18:55:35 t 1 2 78271 311 0.00 2019-07-31 17:39:44 2019-07-31 19:34:49 t 1 2 78276 306 0.00 2019-07-31 19:53:18 2019-07-31 19:54:25 t 1 2 78278 320 0.00 2019-07-31 19:49:22 2019-07-31 19:59:28 t 1 2 78281 311 0.00 2019-07-31 19:46:06 2019-07-31 20:01:11 t 1 2 78282 306 0.00 2019-07-31 20:10:56 2019-07-31 20:12:03 t 1 2 78283 331 0.00 2019-07-31 20:13:18 2019-07-31 20:14:20 t 1 2 78288 314 0.00 2019-07-31 18:41:14 2019-07-31 20:19:56 t 1 2 78292 288 0.00 2019-07-31 20:28:14 2019-07-31 20:29:20 t 1 2 78295 331 0.00 2019-07-31 20:33:27 2019-07-31 20:34:35 t 1 2 78298 288 0.00 2019-07-31 20:35:44 2019-07-31 20:36:49 t 1 2 78301 234 0.00 2019-07-31 19:59:43 2019-07-31 20:39:48 t 1 2 78303 304 0.00 2019-07-31 20:38:40 2019-07-31 20:48:45 t 1 2 78304 220 0.00 2019-07-31 20:40:55 2019-07-31 20:52:01 t 1 2 78305 243 0.00 2019-07-31 20:54:58 2019-07-31 20:56:43 t 1 2 78306 320 0.00 2019-07-31 20:53:23 2019-07-31 21:03:28 t 1 2 78308 212 0.00 2019-07-31 21:07:36 2019-07-31 21:08:15 t 1 2 78311 247 0.00 2019-07-31 21:14:16 2019-07-31 21:16:08 t 1 2 78314 320 0.00 2019-07-31 21:23:50 2019-07-31 21:38:56 t 1 2 78318 320 0.00 2019-07-31 21:40:56 2019-07-31 21:51:01 t 1 2 78320 320 0.00 2019-07-31 21:52:23 2019-07-31 22:02:28 t 1 2 78326 212 0.00 2019-07-31 22:22:40 2019-07-31 22:23:42 t 1 2 78327 306 0.00 2019-07-31 22:23:56 2019-07-31 22:24:56 t 1 2 78339 212 0.00 2019-07-31 22:36:41 2019-07-31 22:37:48 t 1 2 78342 304 0.00 2019-07-31 22:27:40 2019-07-31 22:42:45 t 1 2 78348 306 0.00 2019-07-31 22:58:11 2019-07-31 22:59:12 t 1 2 78351 232 0.00 2019-07-31 23:02:17 2019-07-31 23:03:25 t 1 2 78352 247 0.00 2019-07-31 23:05:41 2019-07-31 23:06:19 t 1 2 78353 212 0.00 2019-07-31 23:06:24 2019-07-31 23:06:24 t 1 2 78357 212 0.00 2019-07-31 23:14:56 2019-07-31 23:15:32 t 1 2 78360 288 0.00 2019-07-31 23:16:22 2019-07-31 23:17:27 t 1 2 78364 212 0.00 2019-07-31 23:30:05 2019-07-31 23:30:33 t 1 2 78366 304 0.00 2019-07-31 23:32:53 2019-07-31 23:32:54 t 1 2 78369 204 0.00 2019-07-31 23:14:01 2019-07-31 23:38:02 t 1 2 78382 290 0.00 2019-08-01 00:21:28 2019-08-01 00:22:28 t 1 2 78384 290 0.00 2019-08-01 00:24:13 2019-08-01 00:25:14 t 1 2 78387 243 0.00 2019-08-01 00:23:02 2019-08-01 00:27:52 t 1 2 81220 306 0.00 2019-08-08 15:20:32 2019-08-08 15:21:34 t 1 2 78392 290 0.00 2019-08-01 01:16:15 2019-08-01 01:17:20 t 1 2 78395 322 0.00 2019-08-01 01:03:09 2019-08-01 01:24:09 t 1 2 78398 288 0.00 2019-08-01 01:33:43 2019-08-01 01:34:48 t 1 2 78401 318 0.00 2019-08-01 01:43:08 2019-08-01 01:45:33 t 1 2 78406 288 0.00 2019-08-01 02:00:48 2019-08-01 02:01:54 t 1 2 78408 288 0.00 2019-08-01 02:04:00 2019-08-01 02:05:03 t 1 2 81224 243 0.00 2019-08-08 15:27:33 2019-08-08 15:30:52 t 1 2 78412 288 0.00 2019-08-01 02:17:07 2019-08-01 02:18:12 t 1 2 78417 288 0.00 2019-08-01 03:48:52 2019-08-01 03:49:58 t 1 2 78422 288 0.00 2019-08-01 03:56:25 2019-08-01 03:57:32 t 1 2 78428 288 0.00 2019-08-01 04:05:44 2019-08-01 04:06:48 t 1 2 78434 288 0.00 2019-08-01 08:29:43 2019-08-01 08:30:51 t 1 2 78439 320 0.00 2019-08-01 08:44:50 2019-08-01 08:54:55 t 1 2 78441 320 0.00 2019-08-01 08:51:18 2019-08-01 09:01:23 t 1 2 78447 288 0.00 2019-08-01 09:11:42 2019-08-01 09:12:48 t 1 2 78452 304 0.00 2019-08-01 09:00:52 2019-08-01 09:20:58 t 1 2 78454 304 0.00 2019-08-01 09:16:13 2019-08-01 09:26:19 t 1 2 78456 247 0.00 2019-08-01 09:32:45 2019-08-01 09:34:36 t 1 2 78459 247 0.00 2019-08-01 09:50:50 2019-08-01 09:51:30 t 1 2 78460 288 0.00 2019-08-01 09:52:56 2019-08-01 09:54:00 t 1 2 78467 288 0.00 2019-08-01 10:04:12 2019-08-01 10:05:16 t 1 2 78469 212 0.00 2019-08-01 10:07:18 2019-08-01 10:07:35 t 1 2 78475 212 0.00 2019-08-01 10:21:15 2019-08-01 10:21:44 t 1 2 78476 232 0.00 2019-08-01 10:22:24 2019-08-01 10:23:27 t 1 2 78482 304 0.00 2019-08-01 10:05:41 2019-08-01 10:25:46 t 1 2 78484 304 0.00 2019-08-01 10:26:16 2019-08-01 10:26:19 t 1 2 78486 304 0.00 2019-08-01 10:19:41 2019-08-01 10:29:46 t 1 2 78488 218 0.00 2019-08-01 10:27:58 2019-08-01 10:38:03 t 1 2 78490 288 0.00 2019-08-01 10:39:45 2019-08-01 10:40:47 t 1 2 78496 304 0.00 2019-08-01 11:05:39 2019-08-01 11:20:44 t 1 2 78500 288 0.00 2019-08-01 11:39:30 2019-08-01 11:40:35 t 1 2 78503 218 0.00 2019-08-01 11:40:25 2019-08-01 11:50:30 t 1 2 78506 286 0.00 2019-08-01 11:47:43 2019-08-01 11:57:49 t 1 2 78507 212 0.00 2019-08-01 12:00:23 2019-08-01 12:00:51 t 1 2 78509 311 0.00 2019-08-01 11:18:37 2019-08-01 12:13:42 t 1 2 78510 304 0.00 2019-08-01 12:05:15 2019-08-01 12:20:20 t 1 2 78512 306 0.00 2019-08-01 12:31:39 2019-08-01 12:32:44 t 1 2 78515 318 0.00 2019-08-01 11:20:30 2019-08-01 12:39:53 t 1 2 78519 304 0.00 2019-08-01 12:41:48 2019-08-01 12:51:53 t 1 2 78524 218 0.00 2019-08-01 12:48:36 2019-08-01 13:08:41 t 1 2 78526 304 0.00 2019-08-01 12:56:57 2019-08-01 13:12:02 t 1 2 78529 234 0.00 2019-08-01 12:10:47 2019-08-01 13:15:53 t 1 2 78535 288 0.00 2019-08-01 13:47:35 2019-08-01 13:48:41 t 1 2 78538 306 0.00 2019-08-01 13:57:30 2019-08-01 13:58:35 t 1 2 78540 306 0.00 2019-08-01 13:59:07 2019-08-01 14:00:11 t 1 2 78542 220 0.00 2019-08-01 13:49:07 2019-08-01 14:08:58 t 1 2 78545 294 0.00 2019-08-01 14:06:33 2019-08-01 14:13:57 t 1 2 78548 288 0.00 2019-08-01 14:26:17 2019-08-01 14:27:22 t 1 2 78549 288 0.00 2019-08-01 14:32:34 2019-08-01 14:33:41 t 1 2 78552 304 0.00 2019-08-01 14:33:39 2019-08-01 14:43:44 t 1 2 78556 234 0.00 2019-08-01 14:35:39 2019-08-01 15:00:44 t 1 2 78561 304 0.00 2019-08-01 15:05:37 2019-08-01 15:25:42 t 1 2 78562 304 0.00 2019-08-01 15:17:40 2019-08-01 15:32:45 t 1 2 78564 304 0.00 2019-08-01 15:33:06 2019-08-01 15:43:11 t 1 2 78570 306 0.00 2019-08-01 16:20:12 2019-08-01 16:21:17 t 1 2 78576 320 0.00 2019-08-01 16:26:13 2019-08-01 16:41:18 t 1 2 78577 247 0.00 2019-08-01 16:41:34 2019-08-01 16:44:02 t 1 2 78579 212 0.00 2019-08-01 17:14:28 2019-08-01 17:15:09 t 1 2 78586 247 0.00 2019-08-01 18:06:42 2019-08-01 18:07:35 t 1 2 78588 333 0.00 2019-08-01 18:13:05 2019-08-01 18:19:35 t 1 2 78592 306 0.00 2019-08-01 18:31:44 2019-08-01 18:32:44 t 1 2 78595 304 0.00 2019-08-01 18:47:53 2019-08-01 18:47:53 f 1 2 78394 320 0.00 2019-08-01 01:12:46 2019-08-01 01:22:51 t 1 2 78399 288 0.00 2019-08-01 01:35:11 2019-08-01 01:36:16 t 1 2 78400 288 0.00 2019-08-01 01:41:54 2019-08-01 01:43:01 t 1 2 78402 288 0.00 2019-08-01 01:48:07 2019-08-01 01:49:11 t 1 2 78403 288 0.00 2019-08-01 01:55:27 2019-08-01 01:56:34 t 1 2 78407 288 0.00 2019-08-01 02:02:16 2019-08-01 02:03:26 t 1 2 78409 288 0.00 2019-08-01 02:05:30 2019-08-01 02:06:36 t 1 2 81222 220 0.00 2019-08-08 15:29:06 2019-08-08 15:29:37 t 1 1 78420 288 0.00 2019-08-01 03:53:31 2019-08-01 03:54:33 t 1 2 78424 288 0.00 2019-08-01 03:59:58 2019-08-01 04:01:01 t 1 2 78432 218 0.00 2019-08-01 05:48:03 2019-08-01 06:13:08 t 1 2 78435 304 0.00 2019-08-01 08:22:23 2019-08-01 08:32:28 t 1 2 78440 304 0.00 2019-08-01 08:45:57 2019-08-01 08:56:03 t 1 2 78442 318 0.00 2019-08-01 08:59:08 2019-08-01 09:01:50 t 1 2 78444 318 0.00 2019-08-01 09:02:26 2019-08-01 09:04:12 t 1 2 78446 304 0.00 2019-08-01 08:53:26 2019-08-01 09:08:31 t 1 2 78448 218 0.00 2019-08-01 09:13:19 2019-08-01 09:14:17 t 1 2 78450 306 0.00 2019-08-01 09:16:44 2019-08-01 09:17:50 t 1 2 78453 325 0.00 2019-08-01 09:24:55 2019-08-01 09:24:56 t 1 2 78457 304 0.00 2019-08-01 09:26:27 2019-08-01 09:41:32 t 1 2 78465 304 0.00 2019-08-01 09:44:57 2019-08-01 10:05:02 t 1 2 78472 288 0.00 2019-08-01 10:13:02 2019-08-01 10:14:05 t 1 2 78473 212 0.00 2019-08-01 10:19:14 2019-08-01 10:21:09 t 1 2 78481 232 0.00 2019-08-01 10:24:23 2019-08-01 10:25:24 t 1 2 78483 304 0.00 2019-08-01 10:25:53 2019-08-01 10:26:00 t 1 2 78485 304 0.00 2019-08-01 10:26:30 2019-08-01 10:26:37 t 1 2 78489 294 0.00 2019-08-01 10:38:05 2019-08-01 10:40:29 t 1 2 78495 304 0.00 2019-08-01 11:01:12 2019-08-01 11:11:17 t 1 2 78499 288 0.00 2019-08-01 11:37:08 2019-08-01 11:38:10 t 1 2 78501 320 0.00 2019-08-01 11:33:52 2019-08-01 11:43:57 t 1 2 78505 304 0.00 2019-08-01 11:47:16 2019-08-01 11:57:21 t 1 2 78517 304 0.00 2019-08-01 12:36:49 2019-08-01 12:46:54 t 1 2 78522 306 0.00 2019-08-01 12:57:13 2019-08-01 12:58:19 t 1 2 78528 311 0.00 2019-08-01 12:39:35 2019-08-01 13:14:40 t 1 2 78530 272 0.00 2019-08-01 12:33:12 2019-08-01 13:23:18 t 1 2 78531 306 0.00 2019-08-01 13:24:36 2019-08-01 13:25:41 t 1 2 78534 272 0.00 2019-08-01 13:18:42 2019-08-01 13:38:47 t 1 2 78536 304 0.00 2019-08-01 13:42:41 2019-08-01 13:57:46 t 1 2 78543 212 0.00 2019-08-01 14:10:31 2019-08-01 14:11:14 t 1 2 78555 234 0.00 2019-08-01 14:53:50 2019-08-01 14:57:14 t 1 2 78559 212 0.00 2019-08-01 15:22:30 2019-08-01 15:23:29 t 1 2 78563 217 0.00 2019-08-01 14:07:45 2019-08-01 15:34:06 t 1 2 78567 304 0.00 2019-08-01 15:43:50 2019-08-01 15:58:55 t 1 2 78568 304 0.00 2019-08-01 15:52:13 2019-08-01 16:02:18 t 1 2 78572 212 0.00 2019-08-01 16:28:38 2019-08-01 16:29:10 t 1 2 78578 218 0.00 2019-08-01 16:47:01 2019-08-01 16:57:06 t 1 2 78580 234 0.00 2019-08-01 16:50:46 2019-08-01 17:15:51 t 1 2 78582 212 0.00 2019-08-01 17:31:50 2019-08-01 17:32:13 t 1 2 78589 232 0.00 2019-08-01 18:28:03 2019-08-01 18:29:07 t 1 2 78591 286 0.00 2019-08-01 18:21:22 2019-08-01 18:31:27 t 1 2 78596 304 0.00 2019-08-01 18:48:00 2019-08-01 18:48:00 f 1 2 78597 304 0.00 2019-08-01 18:24:35 2019-08-01 18:49:40 t 1 2 78619 311 0.00 2019-08-01 19:31:59 2019-08-01 19:52:04 t 1 2 78622 234 0.00 2019-08-01 18:51:04 2019-08-01 19:56:09 t 1 2 78626 304 0.00 2019-08-01 20:00:15 2019-08-01 20:10:20 t 1 2 81225 306 0.00 2019-08-08 15:30:30 2019-08-08 15:31:33 t 1 2 78641 335 0.00 2019-08-01 20:20:46 2019-08-01 21:40:51 t 1 2 78647 306 0.00 2019-08-01 21:56:33 2019-08-01 21:56:38 t 1 2 78652 247 0.00 2019-08-01 22:04:37 2019-08-01 22:07:16 t 1 2 78662 212 0.00 2019-08-01 22:29:01 2019-08-01 22:39:07 t 1 2 78665 272 0.00 2019-08-01 22:32:16 2019-08-01 22:42:21 t 1 2 78667 306 0.00 2019-08-01 22:42:44 2019-08-01 22:43:46 t 1 2 78671 296 0.00 2019-08-01 22:36:55 2019-08-01 22:47:23 t 1 2 78672 234 0.00 2019-08-01 22:03:29 2019-08-01 22:50:18 t 1 2 78674 218 0.00 2019-08-01 22:47:23 2019-08-01 22:57:28 t 1 2 78677 304 0.00 2019-08-01 23:02:27 2019-08-01 23:12:32 t 1 2 78679 212 0.00 2019-08-01 23:18:30 2019-08-01 23:19:13 t 1 2 78680 324 0.00 2019-08-01 23:25:16 2019-08-01 23:26:00 t 1 2 78683 288 0.00 2019-08-01 23:32:20 2019-08-01 23:33:24 t 1 2 78686 243 0.00 2019-08-01 23:39:10 2019-08-01 23:46:41 t 1 2 78689 294 0.00 2019-08-01 22:54:25 2019-08-01 23:54:46 t 1 2 78698 320 0.00 2019-08-01 22:40:20 2019-08-02 00:25:25 t 1 2 78699 324 0.00 2019-08-01 23:38:08 2019-08-02 00:28:13 t 1 2 78702 236 0.00 2019-08-01 20:59:12 2019-08-02 00:34:17 t 1 2 78707 312 0.00 2019-08-02 00:39:54 2019-08-02 00:40:56 t 1 2 78708 312 0.00 2019-08-02 00:42:38 2019-08-02 00:43:43 t 1 2 78711 312 0.00 2019-08-02 00:46:57 2019-08-02 00:47:59 t 1 2 78714 320 0.00 2019-08-02 00:18:33 2019-08-02 01:33:38 t 1 2 78717 331 0.00 2019-08-02 01:40:15 2019-08-02 01:41:05 t 1 2 81228 220 0.00 2019-08-08 15:39:33 2019-08-08 15:39:41 t 1 1 78728 302 0.00 2019-08-02 02:35:05 2019-08-02 04:20:10 t 1 2 78734 312 0.00 2019-08-02 05:23:43 2019-08-02 05:24:51 t 1 2 78738 312 0.00 2019-08-02 05:36:53 2019-08-02 05:37:57 t 1 2 78749 312 0.00 2019-08-02 07:27:16 2019-08-02 07:28:24 t 1 2 78751 312 0.00 2019-08-02 07:30:28 2019-08-02 07:31:33 t 1 2 78752 312 0.00 2019-08-02 07:32:44 2019-08-02 07:33:46 t 1 2 78755 312 0.00 2019-08-02 07:36:03 2019-08-02 07:37:11 t 1 2 78760 294 0.00 2019-08-02 08:08:07 2019-08-02 09:08:30 t 1 2 78761 212 0.00 2019-08-02 09:25:47 2019-08-02 09:26:05 t 1 2 78763 247 0.00 2019-08-02 09:42:07 2019-08-02 09:43:26 t 1 2 78768 306 0.00 2019-08-02 10:28:53 2019-08-02 10:29:55 t 1 2 78774 217 0.00 2019-08-02 08:51:59 2019-08-02 10:51:08 t 1 2 78777 304 0.00 2019-08-02 10:59:51 2019-08-02 11:09:57 t 1 2 78779 306 0.00 2019-08-02 11:23:14 2019-08-02 11:24:18 t 1 2 78788 212 0.00 2019-08-02 12:08:56 2019-08-02 12:09:12 t 1 2 78791 302 0.00 2019-08-02 12:26:36 2019-08-02 12:26:38 t 1 2 78792 318 0.00 2019-08-02 12:14:02 2019-08-02 12:27:32 t 1 2 78794 212 0.00 2019-08-02 12:30:11 2019-08-02 12:30:30 t 1 2 78797 304 0.00 2019-08-02 12:36:05 2019-08-02 12:46:10 t 1 2 78798 306 0.00 2019-08-02 12:46:17 2019-08-02 12:46:20 t 1 2 78800 296 0.00 2019-08-02 12:20:57 2019-08-02 12:52:32 t 1 2 78804 247 0.00 2019-08-02 13:15:40 2019-08-02 13:17:01 t 1 2 78806 306 0.00 2019-08-02 13:21:54 2019-08-02 13:23:02 t 1 2 78811 212 0.00 2019-08-02 13:37:14 2019-08-02 13:37:37 t 1 2 78812 335 0.00 2019-08-02 13:29:56 2019-08-02 13:40:01 t 1 2 78813 304 0.00 2019-08-02 13:44:59 2019-08-02 13:55:04 t 1 2 78817 304 0.00 2019-08-02 13:52:56 2019-08-02 14:08:01 t 1 2 78525 212 0.00 2019-08-01 13:09:31 2019-08-01 13:10:15 t 1 2 78527 320 0.00 2019-08-01 13:02:16 2019-08-01 13:12:21 t 1 2 78532 217 0.00 2019-08-01 10:37:17 2019-08-01 13:31:36 t 1 2 78544 217 0.00 2019-08-01 09:07:57 2019-08-01 14:13:04 t 1 2 78550 234 0.00 2019-08-01 14:35:35 2019-08-01 14:35:37 t 1 2 78554 318 0.00 2019-08-01 14:35:36 2019-08-01 14:50:41 t 1 2 78560 218 0.00 2019-08-01 15:13:41 2019-08-01 15:23:46 t 1 2 78565 306 0.00 2019-08-01 15:49:40 2019-08-01 15:50:42 t 1 2 78566 311 0.00 2019-08-01 13:38:24 2019-08-01 15:53:29 t 1 2 78569 320 0.00 2019-08-01 16:03:41 2019-08-01 16:13:46 t 1 2 78573 236 0.00 2019-08-01 15:13:40 2019-08-01 16:33:45 t 1 2 78575 294 0.00 2019-08-01 15:35:19 2019-08-01 16:35:43 t 1 2 78584 218 0.00 2019-08-01 17:39:42 2019-08-01 17:49:47 t 1 2 78593 304 0.00 2019-08-01 18:13:09 2019-08-01 18:33:15 t 1 2 78594 306 0.00 2019-08-01 18:38:59 2019-08-01 18:40:05 t 1 2 78599 320 0.00 2019-08-01 18:38:06 2019-08-01 18:53:11 t 1 2 78600 304 0.00 2019-08-01 18:40:06 2019-08-01 18:55:11 t 1 2 78603 290 0.00 2019-08-01 18:17:43 2019-08-01 19:07:48 t 1 2 78606 304 0.00 2019-08-01 19:06:24 2019-08-01 19:16:29 t 1 2 78608 304 0.00 2019-08-01 19:10:34 2019-08-01 19:20:39 t 1 2 78610 337 0.00 2019-08-01 19:22:10 2019-08-01 19:22:21 t 1 2 78614 304 0.00 2019-08-01 19:25:40 2019-08-01 19:35:46 t 1 2 78615 306 0.00 2019-08-01 19:38:47 2019-08-01 19:39:49 t 1 2 78618 337 0.00 2019-08-01 19:49:33 2019-08-01 19:50:25 t 1 2 78623 337 0.00 2019-08-01 19:50:57 2019-08-01 20:01:03 t 1 2 78629 294 0.00 2019-08-01 20:24:27 2019-08-01 20:28:50 t 1 2 78631 339 0.00 2019-08-01 19:56:47 2019-08-01 20:57:10 t 1 2 78632 318 0.00 2019-08-01 20:58:40 2019-08-01 21:01:00 t 1 2 78634 212 0.00 2019-08-01 21:06:51 2019-08-01 21:07:10 t 1 2 78636 202 0.00 2019-08-01 21:11:12 2019-08-01 21:12:17 t 1 2 78638 220 0.00 2019-08-01 19:54:35 2019-08-01 21:25:08 t 1 1 78640 212 0.00 2019-08-01 21:34:53 2019-08-01 21:35:29 t 1 2 78643 212 0.00 2019-08-01 21:42:07 2019-08-01 21:42:30 t 1 2 78645 335 0.00 2019-08-01 21:38:33 2019-08-01 21:46:51 t 1 2 78656 212 0.00 2019-08-01 22:15:49 2019-08-01 22:16:46 t 1 2 78657 212 0.00 2019-08-01 22:16:52 2019-08-01 22:17:37 t 1 2 78661 333 0.00 2019-08-01 22:37:11 2019-08-01 22:39:05 t 1 2 78664 306 0.00 2019-08-01 22:40:52 2019-08-01 22:41:58 t 1 2 78673 212 0.00 2019-08-01 22:52:32 2019-08-01 22:52:57 t 1 2 78678 232 0.00 2019-08-01 23:13:19 2019-08-01 23:14:25 t 1 2 78685 212 0.00 2019-08-01 23:45:59 2019-08-01 23:46:38 t 1 2 78691 212 0.00 2019-08-02 00:10:35 2019-08-02 00:11:40 t 1 2 78700 220 0.00 2019-08-02 00:00:05 2019-08-02 00:30:10 t 1 2 78705 312 0.00 2019-08-02 00:36:20 2019-08-02 00:37:27 t 1 2 78710 312 0.00 2019-08-02 00:45:40 2019-08-02 00:46:43 t 1 2 78712 333 0.00 2019-08-02 00:30:17 2019-08-02 01:03:31 t 1 2 78718 302 0.00 2019-08-02 01:33:09 2019-08-02 02:03:14 t 1 2 78719 311 0.00 2019-08-02 00:32:51 2019-08-02 02:13:25 t 1 2 78721 302 0.00 2019-08-02 02:06:01 2019-08-02 02:41:06 t 1 2 78729 312 0.00 2019-08-02 05:16:33 2019-08-02 05:17:37 t 1 2 78731 312 0.00 2019-08-02 05:19:19 2019-08-02 05:20:25 t 1 2 78740 312 0.00 2019-08-02 05:38:33 2019-08-02 05:39:35 t 1 2 78742 312 0.00 2019-08-02 05:41:53 2019-08-02 05:42:58 t 1 2 81226 355 0.00 2019-08-08 14:57:49 2019-08-08 15:32:54 t 1 2 78747 312 0.00 2019-08-02 07:08:31 2019-08-02 07:09:35 t 1 2 78750 312 0.00 2019-08-02 07:29:13 2019-08-02 07:30:14 t 1 2 78754 312 0.00 2019-08-02 07:34:34 2019-08-02 07:35:40 t 1 2 78759 318 0.00 2019-08-02 08:05:05 2019-08-02 09:04:07 t 1 2 78765 230 0.00 2019-08-02 09:21:08 2019-08-02 10:16:14 t 1 2 78770 304 0.00 2019-08-02 10:32:29 2019-08-02 10:32:38 t 1 2 78778 304 0.00 2019-08-02 11:03:22 2019-08-02 11:13:27 t 1 2 78780 335 0.00 2019-08-02 10:59:49 2019-08-02 11:25:49 t 1 2 78785 286 0.00 2019-08-02 11:30:34 2019-08-02 11:40:39 t 1 2 78786 318 0.00 2019-08-02 11:37:12 2019-08-02 11:58:22 t 1 2 78790 304 0.00 2019-08-02 12:10:27 2019-08-02 12:20:32 t 1 2 78801 212 0.00 2019-08-02 12:52:51 2019-08-02 12:53:47 t 1 2 78802 335 0.00 2019-08-02 12:28:07 2019-08-02 12:58:12 t 1 2 78803 294 0.00 2019-08-02 11:45:19 2019-08-02 13:07:43 t 1 2 78815 306 0.00 2019-08-02 14:02:15 2019-08-02 14:03:19 t 1 2 78824 304 0.00 2019-08-02 14:10:11 2019-08-02 14:25:16 t 1 2 78827 217 0.00 2019-08-02 14:04:52 2019-08-02 14:34:58 t 1 2 78828 304 0.00 2019-08-02 14:29:27 2019-08-02 14:39:33 t 1 2 78829 247 0.00 2019-08-02 14:39:13 2019-08-02 14:42:01 t 1 2 78831 304 0.00 2019-08-02 14:51:24 2019-08-02 15:01:29 t 1 2 78833 320 0.00 2019-08-02 14:13:11 2019-08-02 15:03:16 t 1 2 78836 212 0.00 2019-08-02 15:12:08 2019-08-02 15:12:52 t 1 2 78838 312 0.00 2019-08-02 15:27:34 2019-08-02 15:28:39 t 1 2 78844 312 0.00 2019-08-02 15:34:10 2019-08-02 15:35:12 t 1 2 81232 220 0.00 2019-08-08 15:50:32 2019-08-08 15:50:34 t 1 1 78860 212 0.00 2019-08-02 16:26:12 2019-08-02 16:26:54 t 1 2 78863 320 0.00 2019-08-02 15:39:59 2019-08-02 16:35:04 t 1 2 78864 306 0.00 2019-08-02 16:44:45 2019-08-02 16:45:53 t 1 2 78868 212 0.00 2019-08-02 16:51:52 2019-08-02 16:52:39 t 1 2 78872 320 0.00 2019-08-02 16:43:14 2019-08-02 17:23:19 t 1 2 78873 320 0.00 2019-08-02 17:16:50 2019-08-02 17:31:55 t 1 2 78876 232 0.00 2019-08-02 17:51:43 2019-08-02 17:52:47 t 1 2 78878 212 0.00 2019-08-02 18:19:55 2019-08-02 18:21:03 t 1 2 78879 320 0.00 2019-08-02 18:09:32 2019-08-02 18:29:37 t 1 2 78884 212 0.00 2019-08-02 19:25:01 2019-08-02 19:25:42 t 1 2 78885 288 0.00 2019-08-02 19:28:39 2019-08-02 19:29:45 t 1 2 78887 217 0.00 2019-08-02 19:40:40 2019-08-02 19:40:43 t 1 2 78889 288 0.00 2019-08-02 19:46:52 2019-08-02 19:47:57 t 1 2 78893 217 0.00 2019-08-02 19:43:09 2019-08-02 19:58:14 t 1 2 78894 288 0.00 2019-08-02 20:01:05 2019-08-02 20:02:11 t 1 2 78901 288 0.00 2019-08-02 20:09:53 2019-08-02 20:11:00 t 1 2 78905 288 0.00 2019-08-02 20:19:10 2019-08-02 20:20:14 t 1 2 78917 320 0.00 2019-08-02 20:30:22 2019-08-02 20:36:13 t 1 2 78924 320 0.00 2019-08-02 20:40:46 2019-08-02 20:42:12 t 1 2 78925 304 0.00 2019-08-02 20:33:44 2019-08-02 20:43:49 t 1 2 78926 320 0.00 2019-08-02 20:43:59 2019-08-02 20:44:24 t 1 2 78929 220 0.00 2019-08-02 20:33:17 2019-08-02 20:54:48 t 1 1 78930 296 0.00 2019-08-02 20:36:47 2019-08-02 20:55:11 t 1 2 78933 218 0.00 2019-08-02 20:45:52 2019-08-02 21:05:57 t 1 2 78935 288 0.00 2019-08-02 21:06:16 2019-08-02 21:07:22 t 1 2 78943 306 0.00 2019-08-02 21:20:11 2019-08-02 21:21:15 t 1 2 78945 288 0.00 2019-08-02 21:25:40 2019-08-02 21:26:47 t 1 2 78947 288 0.00 2019-08-02 21:29:26 2019-08-02 21:30:30 t 1 2 78539 247 0.00 2019-08-01 13:56:18 2019-08-01 13:58:44 t 1 2 78541 304 0.00 2019-08-01 13:57:22 2019-08-01 14:07:27 t 1 2 78546 234 0.00 2019-08-01 13:40:18 2019-08-01 14:20:23 t 1 2 78547 325 0.00 2019-08-01 14:02:15 2019-08-01 14:27:21 t 1 2 78551 230 0.00 2019-08-01 13:37:15 2019-08-01 14:41:31 t 1 2 78553 288 0.00 2019-08-01 14:49:16 2019-08-01 14:50:23 t 1 2 78557 320 0.00 2019-08-01 13:49:35 2019-08-01 15:09:40 t 1 2 81227 220 0.00 2019-08-08 15:29:39 2019-08-08 15:39:34 t 1 1 78571 234 0.00 2019-08-01 15:32:21 2019-08-01 16:27:27 t 1 2 78574 318 0.00 2019-08-01 16:20:04 2019-08-01 16:35:10 t 1 2 78581 304 0.00 2019-08-01 17:19:29 2019-08-01 17:29:34 t 1 2 78583 304 0.00 2019-08-01 17:22:29 2019-08-01 17:32:34 t 1 2 78585 320 0.00 2019-08-01 17:56:40 2019-08-01 18:06:45 t 1 2 78587 304 0.00 2019-08-01 18:03:46 2019-08-01 18:13:51 t 1 2 78590 212 0.00 2019-08-01 18:28:45 2019-08-01 18:29:28 t 1 2 78601 333 0.00 2019-08-01 18:23:59 2019-08-01 18:58:52 t 1 2 78602 304 0.00 2019-08-01 19:01:24 2019-08-01 19:03:13 t 1 2 78604 335 0.00 2019-08-01 19:12:20 2019-08-01 19:13:51 t 1 2 78609 212 0.00 2019-08-01 18:51:47 2019-08-01 19:21:52 t 1 2 78611 218 0.00 2019-08-01 19:07:54 2019-08-01 19:23:00 t 1 2 78613 337 0.00 2019-08-01 19:31:43 2019-08-01 19:34:44 t 1 2 78624 220 0.00 2019-08-01 19:39:37 2019-08-01 20:01:44 t 1 2 78628 212 0.00 2019-08-01 20:20:49 2019-08-01 20:21:07 t 1 2 78630 247 0.00 2019-08-01 20:32:17 2019-08-01 20:34:14 t 1 2 78635 288 0.00 2019-08-01 21:10:09 2019-08-01 21:11:15 t 1 2 78644 320 0.00 2019-08-01 21:21:11 2019-08-01 21:46:16 t 1 2 78648 212 0.00 2019-08-01 21:55:49 2019-08-01 21:56:47 t 1 2 78649 212 0.00 2019-08-01 21:57:08 2019-08-01 21:57:45 t 1 2 78651 320 0.00 2019-08-01 21:49:29 2019-08-01 21:59:34 t 1 2 78653 247 0.00 2019-08-01 22:07:29 2019-08-01 22:07:52 t 1 2 78654 306 0.00 2019-08-01 22:09:54 2019-08-01 22:10:58 t 1 2 78658 247 0.00 2019-08-01 22:11:19 2019-08-01 22:25:48 t 1 2 78666 294 0.00 2019-08-01 20:55:09 2019-08-01 22:43:33 t 1 2 78668 212 0.00 2019-08-01 22:43:50 2019-08-01 22:44:53 t 1 2 78669 247 0.00 2019-08-01 22:45:10 2019-08-01 22:45:45 t 1 2 78676 247 0.00 2019-08-01 23:06:50 2019-08-01 23:07:22 t 1 2 78684 247 0.00 2019-08-01 23:45:27 2019-08-01 23:46:24 t 1 2 78687 230 0.00 2019-08-01 22:03:26 2019-08-01 23:47:30 t 1 2 78690 218 0.00 2019-08-02 00:00:58 2019-08-02 00:11:03 t 1 2 78692 234 0.00 2019-08-01 23:47:54 2019-08-02 00:12:59 t 1 2 78694 243 0.00 2019-08-02 00:08:10 2019-08-02 00:18:17 t 1 2 78695 243 0.00 2019-08-02 00:18:45 2019-08-02 00:19:49 t 1 2 78696 318 0.00 2019-08-02 00:19:55 2019-08-02 00:20:18 t 1 2 78701 243 0.00 2019-08-02 00:29:08 2019-08-02 00:31:56 t 1 2 78703 312 0.00 2019-08-02 00:34:44 2019-08-02 00:35:46 t 1 2 78709 312 0.00 2019-08-02 00:44:16 2019-08-02 00:45:22 t 1 2 78713 331 0.00 2019-08-02 01:32:32 2019-08-02 01:33:37 t 1 2 81237 220 0.00 2019-08-08 16:12:08 2019-08-08 16:12:09 t 1 1 78723 324 0.00 2019-08-02 03:08:42 2019-08-02 03:09:17 t 1 2 78726 212 0.00 2019-08-02 03:42:08 2019-08-02 03:43:12 t 1 2 78730 312 0.00 2019-08-02 05:17:54 2019-08-02 05:18:58 t 1 2 78733 312 0.00 2019-08-02 05:22:25 2019-08-02 05:23:29 t 1 2 78737 312 0.00 2019-08-02 05:35:28 2019-08-02 05:36:32 t 1 2 78758 306 0.00 2019-08-02 08:56:36 2019-08-02 08:57:42 t 1 2 78762 311 0.00 2019-08-02 09:12:17 2019-08-02 09:42:22 t 1 2 78766 304 0.00 2019-08-02 10:13:46 2019-08-02 10:23:51 t 1 2 78769 304 0.00 2019-08-02 10:32:19 2019-08-02 10:32:22 t 1 2 78773 320 0.00 2019-08-02 10:39:29 2019-08-02 10:49:34 t 1 2 78775 218 0.00 2019-08-02 10:49:54 2019-08-02 10:59:59 t 1 2 78776 212 0.00 2019-08-02 11:01:51 2019-08-02 11:03:31 t 1 2 78781 286 0.00 2019-08-02 10:28:27 2019-08-02 11:28:32 t 1 2 81240 306 0.00 2019-08-08 16:19:11 2019-08-08 16:20:18 t 1 2 78784 218 0.00 2019-08-02 11:13:04 2019-08-02 11:38:09 t 1 2 78795 320 0.00 2019-08-02 12:26:05 2019-08-02 12:36:11 t 1 2 78796 217 0.00 2019-08-02 12:35:31 2019-08-02 12:45:36 t 1 2 78805 306 0.00 2019-08-02 13:17:00 2019-08-02 13:18:03 t 1 2 78809 220 0.00 2019-08-02 13:12:45 2019-08-02 13:30:16 t 1 2 78810 218 0.00 2019-08-02 12:56:12 2019-08-02 13:36:18 t 1 2 78821 331 0.00 2019-08-02 14:15:20 2019-08-02 14:16:28 t 1 2 78823 333 0.00 2019-08-02 14:20:53 2019-08-02 14:22:09 t 1 2 78825 212 0.00 2019-08-02 14:33:07 2019-08-02 14:33:33 t 1 2 78834 296 0.00 2019-08-02 15:03:18 2019-08-02 15:05:41 t 1 2 78843 212 0.00 2019-08-02 15:34:24 2019-08-02 15:34:43 t 1 2 78846 312 0.00 2019-08-02 15:36:59 2019-08-02 15:38:03 t 1 2 78848 312 0.00 2019-08-02 15:40:39 2019-08-02 15:41:42 t 1 2 78849 312 0.00 2019-08-02 15:43:41 2019-08-02 15:44:45 t 1 2 78854 312 0.00 2019-08-02 15:50:47 2019-08-02 15:51:53 t 1 2 78857 312 0.00 2019-08-02 15:54:32 2019-08-02 15:55:37 t 1 2 78871 294 0.00 2019-08-02 15:29:36 2019-08-02 17:19:00 t 1 2 78874 294 0.00 2019-08-02 17:44:13 2019-08-02 17:49:36 t 1 2 78880 304 0.00 2019-08-02 18:45:41 2019-08-02 18:55:46 t 1 2 78888 217 0.00 2019-08-02 19:22:41 2019-08-02 19:47:46 t 1 2 78890 288 0.00 2019-08-02 19:48:39 2019-08-02 19:49:46 t 1 2 78891 288 0.00 2019-08-02 19:54:35 2019-08-02 19:55:39 t 1 2 78892 288 0.00 2019-08-02 19:56:55 2019-08-02 19:57:59 t 1 2 78895 288 0.00 2019-08-02 20:02:42 2019-08-02 20:03:47 t 1 2 78897 339 0.00 2019-08-02 19:44:44 2019-08-02 20:07:16 t 1 2 78900 217 0.00 2019-08-02 19:54:04 2019-08-02 20:09:09 t 1 2 78903 304 0.00 2019-08-02 20:10:36 2019-08-02 20:16:55 t 1 2 78909 304 0.00 2019-08-02 20:17:23 2019-08-02 20:27:28 t 1 2 78913 288 0.00 2019-08-02 20:30:28 2019-08-02 20:31:33 t 1 2 78914 288 0.00 2019-08-02 20:32:16 2019-08-02 20:33:24 t 1 2 78920 288 0.00 2019-08-02 20:38:10 2019-08-02 20:39:13 t 1 2 78923 217 0.00 2019-08-02 20:11:58 2019-08-02 20:42:03 t 1 2 78928 288 0.00 2019-08-02 20:47:25 2019-08-02 20:48:31 t 1 2 78932 320 0.00 2019-08-02 21:01:05 2019-08-02 21:02:29 t 1 2 78937 288 0.00 2019-08-02 21:08:58 2019-08-02 21:10:04 t 1 2 78942 306 0.00 2019-08-02 21:20:07 2019-08-02 21:20:08 t 1 2 78946 288 0.00 2019-08-02 21:27:35 2019-08-02 21:28:41 t 1 2 78949 288 0.00 2019-08-02 21:31:03 2019-08-02 21:32:09 t 1 2 78950 288 0.00 2019-08-02 21:32:25 2019-08-02 21:32:26 t 1 2 78960 331 0.00 2019-08-02 21:42:30 2019-08-02 21:43:25 t 1 2 78962 333 0.00 2019-08-02 21:44:15 2019-08-02 21:45:40 t 1 2 78964 320 0.00 2019-08-02 21:02:52 2019-08-02 21:47:57 t 1 2 78965 220 0.00 2019-08-02 20:54:48 2019-08-02 21:49:48 t 1 1 78968 306 0.00 2019-08-02 22:00:18 2019-08-02 22:01:21 t 1 2 78972 234 0.00 2019-08-02 22:14:43 2019-08-02 22:24:48 t 1 2 78598 218 0.00 2019-08-01 18:40:48 2019-08-01 18:50:53 t 1 2 78605 335 0.00 2019-08-01 19:14:42 2019-08-01 19:14:54 t 1 2 78607 335 0.00 2019-08-01 19:16:03 2019-08-01 19:18:31 t 1 2 78612 337 0.00 2019-08-01 19:30:50 2019-08-01 19:31:40 t 1 2 78616 212 0.00 2019-08-01 19:45:42 2019-08-01 19:46:02 t 1 2 78617 335 0.00 2019-08-01 19:30:50 2019-08-01 19:50:09 t 1 2 78620 306 0.00 2019-08-01 19:52:28 2019-08-01 19:53:30 t 1 2 78621 339 0.00 2019-08-01 19:52:49 2019-08-01 19:55:13 t 1 2 78625 304 0.00 2019-08-01 19:49:43 2019-08-01 20:04:48 t 1 2 78627 320 0.00 2019-08-01 19:53:44 2019-08-01 20:13:49 t 1 2 78637 306 0.00 2019-08-01 21:12:37 2019-08-01 21:13:41 t 1 2 78639 288 0.00 2019-08-01 21:29:35 2019-08-01 21:30:43 t 1 2 78642 218 0.00 2019-08-01 20:07:16 2019-08-01 21:42:22 t 1 2 78646 320 0.00 2019-08-01 21:41:17 2019-08-01 21:51:22 t 1 2 78650 306 0.00 2019-08-01 21:57:02 2019-08-01 21:58:06 t 1 2 78655 217 0.00 2019-08-01 20:34:16 2019-08-01 22:12:11 t 1 2 78659 331 0.00 2019-08-01 22:30:21 2019-08-01 22:31:21 t 1 2 78660 304 0.00 2019-08-01 22:14:10 2019-08-01 22:34:15 t 1 2 78663 335 0.00 2019-08-01 22:20:09 2019-08-01 22:40:14 t 1 2 78670 232 0.00 2019-08-01 22:45:07 2019-08-01 22:46:10 t 1 2 78675 318 0.00 2019-08-01 22:18:39 2019-08-01 23:03:44 t 1 2 78681 308 0.00 2019-08-01 11:32:15 2019-08-01 23:27:21 t 1 2 78682 212 0.00 2019-08-01 23:31:33 2019-08-01 23:32:21 t 1 2 78688 335 0.00 2019-08-01 23:30:39 2019-08-01 23:50:44 t 1 2 78693 335 0.00 2019-08-02 00:06:26 2019-08-02 00:16:31 t 1 2 78697 212 0.00 2019-08-02 00:23:26 2019-08-02 00:23:51 t 1 2 78704 288 0.00 2019-08-02 00:35:38 2019-08-02 00:36:42 t 1 2 78706 312 0.00 2019-08-02 00:37:59 2019-08-02 00:39:03 t 1 2 78715 331 0.00 2019-08-02 01:34:48 2019-08-02 01:35:50 t 1 2 78716 331 0.00 2019-08-02 01:38:12 2019-08-02 01:39:16 t 1 2 78724 339 0.00 2019-08-02 01:29:32 2019-08-02 03:25:56 t 1 2 78725 212 0.00 2019-08-02 03:35:25 2019-08-02 03:36:12 t 1 2 78727 217 0.00 2019-08-02 03:42:33 2019-08-02 03:52:39 t 1 2 78732 312 0.00 2019-08-02 05:20:40 2019-08-02 05:21:46 t 1 2 78735 312 0.00 2019-08-02 05:25:04 2019-08-02 05:26:08 t 1 2 78736 218 0.00 2019-08-02 05:24:41 2019-08-02 05:34:46 t 1 2 78739 234 0.00 2019-08-02 04:58:06 2019-08-02 05:38:11 t 1 2 78741 312 0.00 2019-08-02 05:40:05 2019-08-02 05:41:07 t 1 2 78743 312 0.00 2019-08-02 05:43:26 2019-08-02 05:44:32 t 1 2 78745 288 0.00 2019-08-02 06:46:45 2019-08-02 06:47:53 t 1 2 78746 312 0.00 2019-08-02 07:06:53 2019-08-02 07:08:01 t 1 2 78748 312 0.00 2019-08-02 07:09:54 2019-08-02 07:10:56 t 1 2 78753 294 0.00 2019-08-02 07:21:41 2019-08-02 07:33:56 t 1 2 78756 320 0.00 2019-08-02 08:23:10 2019-08-02 08:33:15 t 1 2 78757 212 0.00 2019-08-02 08:49:04 2019-08-02 08:49:37 t 1 2 78764 212 0.00 2019-08-02 10:14:45 2019-08-02 10:15:09 t 1 2 81230 220 0.00 2019-08-08 15:40:08 2019-08-08 15:48:37 t 1 1 78771 320 0.00 2019-08-02 09:35:24 2019-08-02 10:40:29 t 1 2 78772 304 0.00 2019-08-02 10:33:20 2019-08-02 10:43:26 t 1 2 78782 212 0.00 2019-08-02 11:31:00 2019-08-02 11:31:28 t 1 2 78787 212 0.00 2019-08-02 12:00:02 2019-08-02 12:00:22 t 1 2 78789 304 0.00 2019-08-02 11:59:30 2019-08-02 12:19:35 t 1 2 78793 320 0.00 2019-08-02 11:23:22 2019-08-02 12:28:27 t 1 2 78799 306 0.00 2019-08-02 12:48:37 2019-08-02 12:49:44 t 1 2 78807 302 0.00 2019-08-02 12:26:51 2019-08-02 13:26:57 t 1 2 78808 335 0.00 2019-08-02 13:24:58 2019-08-02 13:28:46 t 1 2 78814 212 0.00 2019-08-02 13:55:36 2019-08-02 13:55:58 t 1 2 78816 217 0.00 2019-08-02 13:40:33 2019-08-02 14:05:38 t 1 2 78818 217 0.00 2019-08-02 14:00:53 2019-08-02 14:10:58 t 1 2 78820 331 0.00 2019-08-02 14:13:51 2019-08-02 14:14:58 t 1 2 78826 306 0.00 2019-08-02 14:33:22 2019-08-02 14:34:25 t 1 2 78830 306 0.00 2019-08-02 14:45:48 2019-08-02 14:46:55 t 1 2 78832 335 0.00 2019-08-02 14:58:36 2019-08-02 15:01:48 t 1 2 78835 320 0.00 2019-08-02 14:57:48 2019-08-02 15:07:53 t 1 2 78841 312 0.00 2019-08-02 15:29:16 2019-08-02 15:30:22 t 1 2 78847 312 0.00 2019-08-02 15:38:34 2019-08-02 15:39:38 t 1 2 78851 312 0.00 2019-08-02 15:45:30 2019-08-02 15:46:39 t 1 2 78855 312 0.00 2019-08-02 15:52:38 2019-08-02 15:53:42 t 1 2 78856 312 0.00 2019-08-02 15:54:28 2019-08-02 15:54:28 t 1 2 78858 212 0.00 2019-08-02 16:04:21 2019-08-02 16:04:39 t 1 2 78861 304 0.00 2019-08-02 16:13:13 2019-08-02 16:28:18 t 1 2 78867 318 0.00 2019-08-02 16:48:05 2019-08-02 16:48:11 t 1 2 78875 320 0.00 2019-08-02 17:41:47 2019-08-02 17:51:53 t 1 2 78877 232 0.00 2019-08-02 17:53:27 2019-08-02 17:54:31 t 1 2 81234 320 0.00 2019-08-08 14:20:27 2019-08-08 16:05:32 t 1 2 78899 288 0.00 2019-08-02 20:07:54 2019-08-02 20:08:57 t 1 2 78906 288 0.00 2019-08-02 20:21:05 2019-08-02 20:22:10 t 1 2 78908 288 0.00 2019-08-02 20:26:10 2019-08-02 20:27:16 t 1 2 78916 320 0.00 2019-08-02 20:19:44 2019-08-02 20:34:49 t 1 2 78919 288 0.00 2019-08-02 20:36:56 2019-08-02 20:38:03 t 1 2 81236 220 0.00 2019-08-08 16:11:47 2019-08-08 16:11:58 t 1 1 78931 320 0.00 2019-08-02 20:46:14 2019-08-02 20:59:22 t 1 2 78934 217 0.00 2019-08-02 20:36:25 2019-08-02 21:06:31 t 1 2 78939 288 0.00 2019-08-02 21:11:17 2019-08-02 21:12:25 t 1 2 78948 217 0.00 2019-08-02 21:00:39 2019-08-02 21:30:44 t 1 2 78953 288 0.00 2019-08-02 21:34:08 2019-08-02 21:35:14 t 1 2 78979 290 0.00 2019-08-02 22:41:39 2019-08-02 22:42:44 t 1 2 78986 324 0.00 2019-08-02 21:33:07 2019-08-02 23:04:37 t 1 2 78988 212 0.00 2019-08-02 23:06:11 2019-08-02 23:07:00 t 1 2 78990 320 0.00 2019-08-02 22:03:48 2019-08-02 23:08:53 t 1 2 78991 290 0.00 2019-08-02 23:15:35 2019-08-02 23:16:39 t 1 2 78995 247 0.00 2019-08-02 23:26:03 2019-08-02 23:28:01 t 1 2 78997 304 0.00 2019-08-02 23:16:55 2019-08-02 23:37:00 t 1 2 78999 212 0.00 2019-08-02 23:42:34 2019-08-02 23:42:55 t 1 2 79003 324 0.00 2019-08-02 23:41:50 2019-08-02 23:55:01 t 1 2 79004 218 0.00 2019-08-02 23:48:58 2019-08-03 00:04:03 t 1 2 81238 220 0.00 2019-08-08 16:12:24 2019-08-08 16:12:36 t 1 1 79014 234 0.00 2019-08-02 23:09:07 2019-08-03 00:39:12 t 1 2 79021 234 0.00 2019-08-03 00:41:43 2019-08-03 00:56:48 t 1 2 79025 217 0.00 2019-08-03 00:55:59 2019-08-03 01:11:04 t 1 2 81241 294 0.00 2019-08-08 16:06:10 2019-08-08 16:21:33 t 1 2 79030 212 0.00 2019-08-03 01:32:41 2019-08-03 01:32:45 t 1 2 79033 324 0.00 2019-08-03 00:22:10 2019-08-03 02:07:35 t 1 2 79042 302 0.00 2019-08-03 01:26:23 2019-08-03 02:16:28 t 1 2 79044 320 0.00 2019-08-02 23:40:08 2019-08-03 02:40:14 t 1 2 79047 217 0.00 2019-08-03 02:23:09 2019-08-03 02:43:14 t 1 2 79053 324 0.00 2019-08-03 02:23:19 2019-08-03 04:10:08 t 1 2 78819 331 0.00 2019-08-02 14:13:31 2019-08-02 14:13:38 t 1 2 78822 304 0.00 2019-08-02 14:02:15 2019-08-02 14:17:20 t 1 2 78837 217 0.00 2019-08-02 14:50:36 2019-08-02 15:15:41 t 1 2 78839 306 0.00 2019-08-02 15:28:12 2019-08-02 15:29:13 t 1 2 78840 217 0.00 2019-08-02 13:00:19 2019-08-02 15:29:52 t 1 2 78842 312 0.00 2019-08-02 15:32:21 2019-08-02 15:33:26 t 1 2 78845 312 0.00 2019-08-02 15:35:27 2019-08-02 15:36:31 t 1 2 78852 312 0.00 2019-08-02 15:47:45 2019-08-02 15:48:49 t 1 2 78853 234 0.00 2019-08-02 15:04:20 2019-08-02 15:49:25 t 1 2 78859 324 0.00 2019-08-02 15:50:06 2019-08-02 16:06:42 t 1 2 78862 288 0.00 2019-08-02 16:29:28 2019-08-02 16:30:34 t 1 2 78865 318 0.00 2019-08-02 16:46:51 2019-08-02 16:46:56 t 1 2 78866 318 0.00 2019-08-02 16:47:07 2019-08-02 16:47:35 t 1 2 78869 306 0.00 2019-08-02 16:56:23 2019-08-02 16:57:23 t 1 2 78870 311 0.00 2019-08-02 14:35:55 2019-08-02 17:16:01 t 1 2 78881 292 0.00 2019-08-02 18:20:27 2019-08-02 19:00:32 t 1 2 78882 218 0.00 2019-08-02 15:58:01 2019-08-02 19:03:06 t 1 2 78886 320 0.00 2019-08-02 19:07:23 2019-08-02 19:37:28 t 1 2 78896 288 0.00 2019-08-02 20:05:16 2019-08-02 20:06:22 t 1 2 78898 292 0.00 2019-08-02 19:58:45 2019-08-02 20:08:51 t 1 2 78902 288 0.00 2019-08-02 20:14:29 2019-08-02 20:15:38 t 1 2 78904 218 0.00 2019-08-02 19:44:14 2019-08-02 20:19:20 t 1 2 78907 304 0.00 2019-08-02 20:26:07 2019-08-02 20:26:37 t 1 2 78910 320 0.00 2019-08-02 20:08:19 2019-08-02 20:28:24 t 1 2 78911 294 0.00 2019-08-02 19:29:43 2019-08-02 20:30:04 t 1 2 78912 304 0.00 2019-08-02 20:30:12 2019-08-02 20:30:18 t 1 2 78915 288 0.00 2019-08-02 20:33:43 2019-08-02 20:34:46 t 1 2 78918 320 0.00 2019-08-02 20:36:36 2019-08-02 20:37:51 t 1 2 78921 320 0.00 2019-08-02 20:38:40 2019-08-02 20:40:00 t 1 2 78922 212 0.00 2019-08-02 20:40:24 2019-08-02 20:41:30 t 1 2 78936 217 0.00 2019-08-02 21:07:39 2019-08-02 21:08:42 t 1 2 78938 304 0.00 2019-08-02 21:02:05 2019-08-02 21:12:10 t 1 2 78940 288 0.00 2019-08-02 21:12:41 2019-08-02 21:13:49 t 1 2 78941 288 0.00 2019-08-02 21:17:27 2019-08-02 21:18:33 t 1 2 78944 288 0.00 2019-08-02 21:23:41 2019-08-02 21:24:47 t 1 2 78951 288 0.00 2019-08-02 21:32:29 2019-08-02 21:33:32 t 1 2 78955 288 0.00 2019-08-02 21:36:10 2019-08-02 21:37:14 t 1 2 78957 212 0.00 2019-08-02 21:37:22 2019-08-02 21:37:59 t 1 2 78959 232 0.00 2019-08-02 21:38:27 2019-08-02 21:39:30 t 1 2 78961 292 0.00 2019-08-02 21:25:04 2019-08-02 21:45:10 t 1 2 78963 217 0.00 2019-08-02 21:22:05 2019-08-02 21:47:10 t 1 2 78966 204 0.00 2019-08-02 21:09:33 2019-08-02 21:58:38 t 1 2 78967 212 0.00 2019-08-02 22:00:02 2019-08-02 22:00:22 t 1 2 78969 218 0.00 2019-08-02 21:52:13 2019-08-02 22:02:18 t 1 2 78970 320 0.00 2019-08-02 21:44:42 2019-08-02 22:09:48 t 1 2 78974 212 0.00 2019-08-02 22:29:22 2019-08-02 22:29:48 t 1 2 78981 308 0.00 2019-08-02 17:36:41 2019-08-02 22:51:46 t 1 2 78987 304 0.00 2019-08-02 22:51:05 2019-08-02 23:06:10 t 1 2 78993 304 0.00 2019-08-02 23:08:19 2019-08-02 23:23:24 t 1 2 78994 218 0.00 2019-08-02 22:34:51 2019-08-02 23:24:56 t 1 2 79000 217 0.00 2019-08-02 23:44:33 2019-08-02 23:45:36 t 1 2 79005 304 0.00 2019-08-02 23:56:08 2019-08-03 00:06:14 t 1 2 79011 324 0.00 2019-08-03 00:32:34 2019-08-03 00:32:44 t 1 2 79012 324 0.00 2019-08-03 00:33:55 2019-08-03 00:34:04 t 1 2 79013 324 0.00 2019-08-03 00:34:36 2019-08-03 00:35:39 t 1 2 79019 324 0.00 2019-08-03 00:46:28 2019-08-03 00:47:07 t 1 2 79020 217 0.00 2019-08-03 00:47:19 2019-08-03 00:52:28 t 1 2 79022 272 0.00 2019-08-03 00:46:44 2019-08-03 01:01:49 t 1 2 79023 324 0.00 2019-08-03 00:49:20 2019-08-03 01:04:31 t 1 2 79024 212 0.00 2019-08-03 01:10:29 2019-08-03 01:10:59 t 1 2 79026 318 0.00 2019-08-03 00:48:05 2019-08-03 01:13:10 t 1 2 79034 302 0.00 2019-08-03 02:11:05 2019-08-03 02:11:05 f 1 2 79036 302 0.00 2019-08-03 02:11:27 2019-08-03 02:11:27 f 1 2 79041 302 0.00 2019-08-03 02:16:06 2019-08-03 02:16:06 f 1 2 79046 302 0.00 2019-08-03 02:43:04 2019-08-03 02:43:04 f 1 2 79049 302 0.00 2019-08-03 02:33:44 2019-08-03 02:48:49 t 1 2 79052 217 0.00 2019-08-03 03:15:28 2019-08-03 03:30:33 t 1 2 79054 302 0.00 2019-08-03 02:43:31 2019-08-03 04:53:36 t 1 2 79055 218 0.00 2019-08-03 05:59:24 2019-08-03 06:09:29 t 1 2 79057 218 0.00 2019-08-03 06:32:43 2019-08-03 06:52:48 t 1 2 79058 212 0.00 2019-08-03 07:02:13 2019-08-03 07:03:00 t 1 2 79061 217 0.00 2019-08-03 07:23:31 2019-08-03 07:29:14 t 1 2 79063 288 0.00 2019-08-03 07:45:07 2019-08-03 07:46:11 t 1 2 79066 217 0.00 2019-08-03 07:54:21 2019-08-03 07:54:22 t 1 2 79070 320 0.00 2019-08-03 07:59:21 2019-08-03 08:09:26 t 1 2 79076 212 0.00 2019-08-03 08:49:57 2019-08-03 08:50:28 t 1 2 79078 202 0.00 2019-08-03 08:50:25 2019-08-03 08:51:31 t 1 2 79081 288 0.00 2019-08-03 08:53:43 2019-08-03 08:54:52 t 1 2 79084 217 0.00 2019-08-03 08:36:51 2019-08-03 08:56:56 t 1 2 79090 217 0.00 2019-08-03 08:51:03 2019-08-03 09:01:08 t 1 2 79095 217 0.00 2019-08-03 09:05:14 2019-08-03 09:15:19 t 1 2 79098 243 0.00 2019-08-03 09:04:39 2019-08-03 09:20:04 t 1 2 79101 331 0.00 2019-08-03 09:23:18 2019-08-03 09:24:21 t 1 2 79107 232 0.00 2019-08-03 09:39:41 2019-08-03 09:40:48 t 1 2 79110 247 0.00 2019-08-03 09:49:08 2019-08-03 09:50:25 t 1 2 79113 243 0.00 2019-08-03 10:03:13 2019-08-03 10:03:23 t 1 2 79114 243 0.00 2019-08-03 10:03:43 2019-08-03 10:05:23 t 1 2 79119 304 0.00 2019-08-03 10:07:37 2019-08-03 10:07:37 f 1 2 79126 304 0.00 2019-08-03 09:54:25 2019-08-03 10:09:30 t 1 2 79135 304 0.00 2019-08-03 10:31:21 2019-08-03 10:31:26 t 1 2 79137 304 0.00 2019-08-03 10:31:40 2019-08-03 10:32:37 t 1 2 79138 324 0.00 2019-08-03 10:36:29 2019-08-03 10:37:33 t 1 2 79141 217 0.00 2019-08-03 10:42:12 2019-08-03 10:42:12 f 1 2 79143 288 0.00 2019-08-03 10:49:18 2019-08-03 10:50:21 t 1 2 79145 234 0.00 2019-08-03 10:07:59 2019-08-03 10:53:05 t 1 2 79146 212 0.00 2019-08-03 10:55:43 2019-08-03 10:56:14 t 1 2 79154 217 0.00 2019-08-03 11:05:20 2019-08-03 11:15:27 t 1 2 79158 306 0.00 2019-08-03 11:31:47 2019-08-03 11:32:55 t 1 2 79159 304 0.00 2019-08-03 11:20:51 2019-08-03 11:35:56 t 1 2 79161 286 0.00 2019-08-03 11:35:07 2019-08-03 11:45:12 t 1 2 79163 212 0.00 2019-08-03 11:55:51 2019-08-03 11:56:22 t 1 2 79165 288 0.00 2019-08-03 11:57:49 2019-08-03 11:58:53 t 1 2 79170 288 0.00 2019-08-03 12:02:22 2019-08-03 12:03:29 t 1 2 79172 288 0.00 2019-08-03 12:03:53 2019-08-03 12:04:59 t 1 2 79185 217 0.00 2019-08-03 12:31:45 2019-08-03 12:32:47 t 1 2 79195 320 0.00 2019-08-03 12:37:46 2019-08-03 12:57:51 t 1 2 79205 288 0.00 2019-08-03 13:26:53 2019-08-03 13:27:56 t 1 2 78952 335 0.00 2019-08-02 21:19:35 2019-08-02 21:34:40 t 1 2 78954 217 0.00 2019-08-02 21:35:02 2019-08-02 21:36:03 t 1 2 78956 218 0.00 2019-08-02 21:22:40 2019-08-02 21:37:45 t 1 2 78958 288 0.00 2019-08-02 21:38:10 2019-08-02 21:39:16 t 1 2 78971 212 0.00 2019-08-02 22:19:56 2019-08-02 22:20:24 t 1 2 78973 218 0.00 2019-08-02 22:14:45 2019-08-02 22:24:50 t 1 2 78977 304 0.00 2019-08-02 22:29:21 2019-08-02 22:39:27 t 1 2 78978 217 0.00 2019-08-02 22:16:49 2019-08-02 22:41:54 t 1 2 78982 212 0.00 2019-08-02 22:53:55 2019-08-02 22:54:29 t 1 2 78985 335 0.00 2019-08-02 22:19:54 2019-08-02 23:04:25 t 1 2 78992 294 0.00 2019-08-02 22:18:47 2019-08-02 23:19:06 t 1 2 78996 290 0.00 2019-08-02 23:31:38 2019-08-02 23:32:45 t 1 2 78998 243 0.00 2019-08-02 23:17:49 2019-08-02 23:38:24 t 1 2 79001 217 0.00 2019-08-02 23:46:35 2019-08-02 23:47:40 t 1 2 79002 243 0.00 2019-08-02 23:50:29 2019-08-02 23:54:15 t 1 2 79007 212 0.00 2019-08-03 00:10:38 2019-08-03 00:11:02 t 1 2 79009 212 0.00 2019-08-03 00:27:59 2019-08-03 00:28:32 t 1 2 79010 324 0.00 2019-08-02 23:05:14 2019-08-03 00:30:19 t 1 2 81233 220 0.00 2019-08-08 16:01:06 2019-08-08 16:01:16 t 1 1 79017 324 0.00 2019-08-03 00:43:14 2019-08-03 00:46:18 t 1 2 79031 212 0.00 2019-08-03 01:33:26 2019-08-03 01:34:07 t 1 2 79037 302 0.00 2019-08-03 02:12:15 2019-08-03 02:12:15 f 1 2 79039 302 0.00 2019-08-03 02:14:46 2019-08-03 02:14:46 f 1 2 79043 302 0.00 2019-08-03 02:06:49 2019-08-03 02:16:54 t 1 2 79050 217 0.00 2019-08-03 02:37:14 2019-08-03 03:07:19 t 1 2 79056 212 0.00 2019-08-03 06:50:45 2019-08-03 06:51:42 t 1 2 79065 217 0.00 2019-08-03 07:42:39 2019-08-03 07:52:44 t 1 2 79068 212 0.00 2019-08-03 08:04:50 2019-08-03 08:04:56 t 1 2 79072 292 0.00 2019-08-03 08:13:23 2019-08-03 08:28:28 t 1 2 79073 217 0.00 2019-08-03 07:55:14 2019-08-03 08:30:20 t 1 2 79079 288 0.00 2019-08-03 08:51:36 2019-08-03 08:52:39 t 1 2 79085 288 0.00 2019-08-03 08:56:35 2019-08-03 08:57:39 t 1 2 79086 217 0.00 2019-08-03 08:47:59 2019-08-03 08:58:04 t 1 2 79088 294 0.00 2019-08-03 07:59:44 2019-08-03 09:00:07 t 1 2 79091 288 0.00 2019-08-03 09:00:52 2019-08-03 09:01:57 t 1 2 79094 217 0.00 2019-08-03 08:54:05 2019-08-03 09:14:10 t 1 2 79096 247 0.00 2019-08-03 09:12:16 2019-08-03 09:16:35 t 1 2 79105 306 0.00 2019-08-03 09:36:13 2019-08-03 09:37:14 t 1 2 79109 217 0.00 2019-08-03 09:27:59 2019-08-03 09:48:04 t 1 2 79124 304 0.00 2019-08-03 10:09:07 2019-08-03 10:09:07 f 1 2 79130 296 0.00 2019-08-03 10:09:16 2019-08-03 10:15:36 t 1 2 79132 320 0.00 2019-08-03 10:10:39 2019-08-03 10:20:44 t 1 2 79134 324 0.00 2019-08-03 10:09:05 2019-08-03 10:28:25 t 1 2 79140 217 0.00 2019-08-03 10:41:47 2019-08-03 10:41:47 f 1 2 79147 306 0.00 2019-08-03 10:57:27 2019-08-03 10:58:29 t 1 2 79149 306 0.00 2019-08-03 11:00:34 2019-08-03 11:01:37 t 1 2 79150 306 0.00 2019-08-03 11:02:13 2019-08-03 11:03:16 t 1 2 79152 306 0.00 2019-08-03 11:03:52 2019-08-03 11:04:57 t 1 2 79160 304 0.00 2019-08-03 11:40:34 2019-08-03 11:44:36 t 1 2 79164 288 0.00 2019-08-03 11:56:08 2019-08-03 11:57:14 t 1 2 79175 304 0.00 2019-08-03 11:57:52 2019-08-03 12:07:57 t 1 2 79177 243 0.00 2019-08-03 12:02:50 2019-08-03 12:09:28 t 1 2 79182 296 0.00 2019-08-03 12:23:48 2019-08-03 12:26:24 t 1 2 79190 304 0.00 2019-08-03 12:37:36 2019-08-03 12:47:42 t 1 2 79191 304 0.00 2019-08-03 12:53:21 2019-08-03 12:53:28 t 1 2 79192 212 0.00 2019-08-03 12:54:11 2019-08-03 12:54:40 t 1 2 79194 304 0.00 2019-08-03 12:42:27 2019-08-03 12:57:32 t 1 2 79197 212 0.00 2019-08-03 13:03:02 2019-08-03 13:03:09 t 1 2 79200 212 0.00 2019-08-03 13:03:30 2019-08-03 13:04:16 t 1 2 79206 212 0.00 2019-08-03 13:11:45 2019-08-03 13:33:06 t 1 2 81235 247 0.00 2019-08-08 16:10:13 2019-08-08 16:10:49 t 1 2 79213 318 0.00 2019-08-03 13:31:47 2019-08-03 13:46:52 t 1 2 79220 304 0.00 2019-08-03 13:55:55 2019-08-03 14:06:00 t 1 2 79222 335 0.00 2019-08-03 13:47:31 2019-08-03 14:07:36 t 1 2 79223 247 0.00 2019-08-03 14:09:29 2019-08-03 14:10:44 t 1 2 79228 306 0.00 2019-08-03 14:19:56 2019-08-03 14:21:01 t 1 2 79239 212 0.00 2019-08-03 15:00:46 2019-08-03 15:01:28 t 1 2 79242 217 0.00 2019-08-03 14:51:24 2019-08-03 15:06:29 t 1 2 79244 218 0.00 2019-08-03 09:58:16 2019-08-03 15:13:22 t 1 2 79247 339 0.00 2019-08-03 14:16:09 2019-08-03 15:16:38 t 1 2 79250 243 0.00 2019-08-03 15:32:36 2019-08-03 15:36:10 t 1 2 79256 212 0.00 2019-08-03 15:56:34 2019-08-03 15:56:58 t 1 2 79261 243 0.00 2019-08-03 16:06:45 2019-08-03 16:12:33 t 1 2 79262 306 0.00 2019-08-03 16:13:42 2019-08-03 16:14:44 t 1 2 79263 212 0.00 2019-08-03 16:18:52 2019-08-03 16:19:22 t 1 2 79281 236 0.00 2019-08-03 14:29:32 2019-08-03 17:04:38 t 1 2 79283 243 0.00 2019-08-03 17:14:36 2019-08-03 17:16:23 t 1 2 79287 230 0.00 2019-08-03 16:53:17 2019-08-03 17:41:49 t 1 2 79289 217 0.00 2019-08-03 17:48:19 2019-08-03 17:49:23 t 1 2 79293 217 0.00 2019-08-03 17:53:16 2019-08-03 17:54:22 t 1 2 79296 220 0.00 2019-08-03 18:13:40 2019-08-03 18:16:10 t 1 1 79298 217 0.00 2019-08-03 18:09:39 2019-08-03 18:24:44 t 1 2 79299 304 0.00 2019-08-03 18:19:40 2019-08-03 18:29:45 t 1 2 79301 306 0.00 2019-08-03 18:34:52 2019-08-03 18:35:56 t 1 2 79305 220 0.00 2019-08-03 18:16:10 2019-08-03 18:40:29 t 1 1 79309 212 0.00 2019-08-03 18:43:12 2019-08-03 18:59:57 t 1 2 79312 341 0.00 2019-08-03 19:06:56 2019-08-03 19:07:02 t 1 2 79315 341 0.00 2019-08-03 19:12:30 2019-08-03 19:14:21 t 1 2 79329 217 0.00 2019-08-03 20:09:27 2019-08-03 20:10:31 t 1 2 79331 304 0.00 2019-08-03 20:05:42 2019-08-03 20:15:47 t 1 2 79333 218 0.00 2019-08-03 19:05:31 2019-08-03 20:18:39 t 1 2 79341 288 0.00 2019-08-03 20:35:34 2019-08-03 20:36:30 t 1 2 79343 218 0.00 2019-08-03 16:51:22 2019-08-03 20:41:27 t 1 2 79351 212 0.00 2019-08-03 21:26:08 2019-08-03 21:26:42 t 1 2 79353 217 0.00 2019-08-03 21:36:05 2019-08-03 21:37:20 t 1 2 79355 320 0.00 2019-08-03 21:28:28 2019-08-03 21:38:33 t 1 2 79356 217 0.00 2019-08-03 21:21:17 2019-08-03 21:41:23 t 1 2 79360 296 0.00 2019-08-03 21:45:10 2019-08-03 21:50:33 t 1 2 79364 217 0.00 2019-08-03 21:38:04 2019-08-03 22:03:09 t 1 2 79365 320 0.00 2019-08-03 21:54:34 2019-08-03 22:04:39 t 1 2 79366 212 0.00 2019-08-03 22:16:52 2019-08-03 22:17:50 t 1 2 79367 324 0.00 2019-08-03 21:47:50 2019-08-03 22:21:54 t 1 2 79383 243 0.00 2019-08-03 23:11:34 2019-08-03 23:25:19 t 1 2 79384 232 0.00 2019-08-03 23:26:12 2019-08-03 23:27:17 t 1 2 79386 217 0.00 2019-08-03 23:29:19 2019-08-03 23:30:22 t 1 2 79388 232 0.00 2019-08-03 23:34:50 2019-08-03 23:35:56 t 1 2 79395 306 0.00 2019-08-03 23:50:46 2019-08-03 23:51:49 t 1 2 78975 217 0.00 2019-08-02 22:35:29 2019-08-02 22:38:00 t 1 2 78976 220 0.00 2019-08-02 21:49:48 2019-08-02 22:38:48 t 1 1 78980 217 0.00 2019-08-02 22:51:04 2019-08-02 22:51:12 t 1 2 78983 304 0.00 2019-08-02 22:39:27 2019-08-02 22:59:32 t 1 2 78984 217 0.00 2019-08-02 22:38:04 2019-08-02 23:03:09 t 1 2 78989 324 0.00 2019-08-02 23:04:21 2019-08-02 23:07:12 t 1 2 79006 243 0.00 2019-08-02 23:59:28 2019-08-03 00:07:26 t 1 2 79016 324 0.00 2019-08-03 00:39:06 2019-08-03 00:43:06 t 1 2 79018 335 0.00 2019-08-03 00:38:17 2019-08-03 00:46:38 t 1 2 81239 306 0.00 2019-08-08 16:17:07 2019-08-08 16:18:09 t 1 2 79029 302 0.00 2019-08-03 01:26:05 2019-08-03 01:26:10 t 1 2 81248 304 0.00 2019-08-08 16:23:44 2019-08-08 16:33:50 t 1 2 79035 302 0.00 2019-08-03 02:11:17 2019-08-03 02:11:17 f 1 2 79038 302 0.00 2019-08-03 02:13:21 2019-08-03 02:13:21 f 1 2 79040 302 0.00 2019-08-03 02:15:56 2019-08-03 02:15:56 f 1 2 79045 302 0.00 2019-08-03 02:42:58 2019-08-03 02:42:58 f 1 2 79048 302 0.00 2019-08-03 02:18:16 2019-08-03 02:43:21 t 1 2 79051 217 0.00 2019-08-03 02:59:18 2019-08-03 03:15:22 t 1 2 79059 217 0.00 2019-08-03 07:11:37 2019-08-03 07:26:42 t 1 2 79060 217 0.00 2019-08-03 07:18:59 2019-08-03 07:29:04 t 1 2 79069 212 0.00 2019-08-03 08:05:20 2019-08-03 08:05:43 t 1 2 79075 288 0.00 2019-08-03 08:46:14 2019-08-03 08:47:18 t 1 2 79077 288 0.00 2019-08-03 08:50:02 2019-08-03 08:51:05 t 1 2 79080 304 0.00 2019-08-03 08:38:07 2019-08-03 08:53:12 t 1 2 79083 320 0.00 2019-08-03 08:46:11 2019-08-03 08:56:17 t 1 2 79089 288 0.00 2019-08-03 08:59:21 2019-08-03 09:00:29 t 1 2 79092 306 0.00 2019-08-03 09:02:30 2019-08-03 09:03:34 t 1 2 79097 217 0.00 2019-08-03 09:09:16 2019-08-03 09:19:21 t 1 2 79100 306 0.00 2019-08-03 09:19:42 2019-08-03 09:20:48 t 1 2 79102 217 0.00 2019-08-03 09:12:28 2019-08-03 09:32:33 t 1 2 79103 217 0.00 2019-08-03 09:24:11 2019-08-03 09:34:16 t 1 2 79106 304 0.00 2019-08-03 09:27:25 2019-08-03 09:37:30 t 1 2 79111 212 0.00 2019-08-03 09:54:36 2019-08-03 09:55:01 t 1 2 79115 220 0.00 2019-08-03 09:47:18 2019-08-03 10:06:41 t 1 2 79117 304 0.00 2019-08-03 10:07:18 2019-08-03 10:07:18 f 1 2 79121 304 0.00 2019-08-03 10:08:20 2019-08-03 10:08:20 f 1 2 79125 304 0.00 2019-08-03 10:09:27 2019-08-03 10:09:27 f 1 2 79128 304 0.00 2019-08-03 10:03:40 2019-08-03 10:13:45 t 1 2 79131 217 0.00 2019-08-03 09:49:05 2019-08-03 10:19:10 t 1 2 79133 212 0.00 2019-08-03 10:21:21 2019-08-03 10:22:17 t 1 2 79136 304 0.00 2019-08-03 10:17:17 2019-08-03 10:32:22 t 1 2 79144 217 0.00 2019-08-03 10:42:50 2019-08-03 10:52:57 t 1 2 79153 320 0.00 2019-08-03 10:33:55 2019-08-03 11:09:00 t 1 2 79155 304 0.00 2019-08-03 10:51:44 2019-08-03 11:16:49 t 1 2 79168 306 0.00 2019-08-03 12:01:12 2019-08-03 12:02:19 t 1 2 79169 304 0.00 2019-08-03 11:52:25 2019-08-03 12:02:30 t 1 2 81250 220 0.00 2019-08-08 16:34:06 2019-08-08 16:35:06 t 1 1 79173 217 0.00 2019-08-03 11:47:03 2019-08-03 12:07:08 t 1 2 79176 288 0.00 2019-08-03 12:07:03 2019-08-03 12:08:11 t 1 2 79178 220 0.00 2019-08-03 11:47:32 2019-08-03 12:15:57 t 1 2 79179 217 0.00 2019-08-03 11:58:35 2019-08-03 12:18:40 t 1 2 79183 304 0.00 2019-08-03 12:13:55 2019-08-03 12:29:00 t 1 2 79186 306 0.00 2019-08-03 12:34:20 2019-08-03 12:35:22 t 1 2 79188 320 0.00 2019-08-03 11:54:41 2019-08-03 12:39:46 t 1 2 79189 304 0.00 2019-08-03 12:41:58 2019-08-03 12:42:06 t 1 2 79198 335 0.00 2019-08-03 12:16:52 2019-08-03 13:03:16 t 1 2 79201 243 0.00 2019-08-03 12:59:08 2019-08-03 13:04:18 t 1 2 79207 304 0.00 2019-08-03 13:23:09 2019-08-03 13:33:14 t 1 2 79208 324 0.00 2019-08-03 12:47:46 2019-08-03 13:36:48 t 1 2 79209 243 0.00 2019-08-03 13:35:24 2019-08-03 13:39:00 t 1 2 79214 339 0.00 2019-08-03 13:11:31 2019-08-03 13:46:54 t 1 2 79218 217 0.00 2019-08-03 13:33:41 2019-08-03 14:03:46 t 1 2 79219 243 0.00 2019-08-03 13:49:06 2019-08-03 14:04:33 t 1 2 79225 243 0.00 2019-08-03 14:07:57 2019-08-03 14:14:01 t 1 2 79232 272 0.00 2019-08-03 13:49:53 2019-08-03 14:29:58 t 1 2 79234 304 0.00 2019-08-03 14:35:51 2019-08-03 14:45:56 t 1 2 79237 306 0.00 2019-08-03 14:55:56 2019-08-03 14:56:59 t 1 2 79238 306 0.00 2019-08-03 14:57:20 2019-08-03 14:58:25 t 1 2 79240 212 0.00 2019-08-03 15:01:30 2019-08-03 15:02:12 t 1 2 79241 218 0.00 2019-08-03 14:02:56 2019-08-03 15:03:40 t 1 2 79246 335 0.00 2019-08-03 14:14:11 2019-08-03 15:14:50 t 1 2 79249 288 0.00 2019-08-03 15:26:44 2019-08-03 15:27:51 t 1 2 79251 320 0.00 2019-08-03 15:01:06 2019-08-03 15:36:11 t 1 2 79257 294 0.00 2019-08-03 14:57:53 2019-08-03 15:58:17 t 1 2 79259 304 0.00 2019-08-03 15:43:51 2019-08-03 15:58:56 t 1 2 79266 304 0.00 2019-08-03 16:06:32 2019-08-03 16:26:37 t 1 2 79269 217 0.00 2019-08-03 15:54:49 2019-08-03 16:35:43 t 1 2 79270 306 0.00 2019-08-03 16:36:14 2019-08-03 16:37:17 t 1 2 79272 306 0.00 2019-08-03 16:37:42 2019-08-03 16:38:42 t 1 2 79274 306 0.00 2019-08-03 16:40:43 2019-08-03 16:41:44 t 1 2 79286 288 0.00 2019-08-03 17:38:41 2019-08-03 17:39:47 t 1 2 79288 339 0.00 2019-08-03 17:42:10 2019-08-03 17:46:15 t 1 2 79292 217 0.00 2019-08-03 17:51:07 2019-08-03 17:52:13 t 1 2 79300 320 0.00 2019-08-03 17:25:18 2019-08-03 18:30:23 t 1 2 79313 304 0.00 2019-08-03 18:56:59 2019-08-03 19:07:04 t 1 2 79314 341 0.00 2019-08-03 19:07:09 2019-08-03 19:07:17 t 1 2 79317 341 0.00 2019-08-03 19:07:46 2019-08-03 19:17:52 t 1 2 79319 320 0.00 2019-08-03 19:09:03 2019-08-03 19:19:08 t 1 2 79334 288 0.00 2019-08-03 20:17:39 2019-08-03 20:18:42 t 1 2 79337 292 0.00 2019-08-03 19:42:36 2019-08-03 20:27:42 t 1 2 79339 212 0.00 2019-08-03 20:31:35 2019-08-03 20:31:56 t 1 2 79344 324 0.00 2019-08-03 20:34:08 2019-08-03 20:51:13 t 1 2 79358 324 0.00 2019-08-03 19:56:55 2019-08-03 21:47:00 t 1 2 79361 320 0.00 2019-08-03 21:40:29 2019-08-03 21:50:34 t 1 2 79373 220 0.00 2019-08-03 22:48:16 2019-08-03 22:51:16 t 1 1 79376 306 0.00 2019-08-03 22:59:50 2019-08-03 23:00:55 t 1 2 79381 324 0.00 2019-08-03 20:28:53 2019-08-03 23:23:58 t 1 2 79389 220 0.00 2019-08-03 23:07:46 2019-08-03 23:42:25 t 1 1 79393 304 0.00 2019-08-03 23:36:52 2019-08-03 23:46:58 t 1 2 79396 339 0.00 2019-08-03 22:54:57 2019-08-03 23:54:20 t 1 2 79403 247 0.00 2019-08-04 00:06:55 2019-08-04 00:08:22 t 1 2 81253 324 0.00 2019-08-08 16:09:41 2019-08-08 16:39:46 t 1 2 79406 217 0.00 2019-08-03 23:55:05 2019-08-04 00:15:10 t 1 2 79409 230 0.00 2019-08-03 23:53:11 2019-08-04 00:23:09 t 1 2 79410 212 0.00 2019-08-04 00:24:38 2019-08-04 00:25:26 t 1 2 79412 304 0.00 2019-08-04 00:14:40 2019-08-04 00:29:45 t 1 2 79420 218 0.00 2019-08-04 00:35:54 2019-08-04 00:45:59 t 1 2 79062 312 0.00 2019-08-03 07:41:02 2019-08-03 07:42:05 t 1 2 79064 312 0.00 2019-08-03 07:45:25 2019-08-03 07:46:31 t 1 2 79067 320 0.00 2019-08-03 07:58:44 2019-08-03 07:58:44 t 1 2 79071 212 0.00 2019-08-03 08:20:53 2019-08-03 08:21:36 t 1 2 79074 292 0.00 2019-08-03 08:33:52 2019-08-03 08:43:58 t 1 2 79082 217 0.00 2019-08-03 08:54:13 2019-08-03 08:55:16 t 1 2 79087 288 0.00 2019-08-03 08:57:57 2019-08-03 08:59:01 t 1 2 79093 304 0.00 2019-08-03 09:04:03 2019-08-03 09:14:09 t 1 2 79099 320 0.00 2019-08-03 09:10:25 2019-08-03 09:20:30 t 1 2 79104 212 0.00 2019-08-03 09:35:40 2019-08-03 09:36:04 t 1 2 79108 304 0.00 2019-08-03 09:31:44 2019-08-03 09:46:49 t 1 2 79112 304 0.00 2019-08-03 09:41:31 2019-08-03 09:56:36 t 1 2 79116 304 0.00 2019-08-03 10:07:08 2019-08-03 10:07:08 f 1 2 79118 304 0.00 2019-08-03 10:07:33 2019-08-03 10:07:33 f 1 2 79120 304 0.00 2019-08-03 10:08:07 2019-08-03 10:08:07 f 1 2 79122 304 0.00 2019-08-03 10:08:31 2019-08-03 10:08:31 f 1 2 79123 304 0.00 2019-08-03 10:08:41 2019-08-03 10:08:41 f 1 2 79127 304 0.00 2019-08-03 10:09:35 2019-08-03 10:13:25 t 1 2 79129 306 0.00 2019-08-03 10:13:37 2019-08-03 10:14:40 t 1 2 79139 247 0.00 2019-08-03 10:36:10 2019-08-03 10:37:44 t 1 2 79142 304 0.00 2019-08-03 10:37:34 2019-08-03 10:47:39 t 1 2 79148 306 0.00 2019-08-03 10:59:13 2019-08-03 11:00:17 t 1 2 79151 286 0.00 2019-08-03 11:02:47 2019-08-03 11:04:44 t 1 2 79156 306 0.00 2019-08-03 11:22:35 2019-08-03 11:23:41 t 1 2 79157 304 0.00 2019-08-03 11:11:52 2019-08-03 11:26:57 t 1 2 79162 212 0.00 2019-08-03 11:45:19 2019-08-03 11:45:39 t 1 2 79166 288 0.00 2019-08-03 11:59:13 2019-08-03 12:00:17 t 1 2 79167 288 0.00 2019-08-03 12:00:32 2019-08-03 12:01:37 t 1 2 79174 217 0.00 2019-08-03 12:06:41 2019-08-03 12:07:44 t 1 2 79180 288 0.00 2019-08-03 12:22:34 2019-08-03 12:23:38 t 1 2 79181 288 0.00 2019-08-03 12:24:57 2019-08-03 12:25:59 t 1 2 79184 217 0.00 2019-08-03 12:09:44 2019-08-03 12:29:49 t 1 2 79187 318 0.00 2019-08-03 12:25:00 2019-08-03 12:35:50 t 1 2 79193 243 0.00 2019-08-03 12:44:50 2019-08-03 12:56:51 t 1 2 79196 324 0.00 2019-08-03 12:47:57 2019-08-03 12:58:02 t 1 2 79199 304 0.00 2019-08-03 12:53:36 2019-08-03 13:03:41 t 1 2 79202 304 0.00 2019-08-03 13:01:37 2019-08-03 13:11:42 t 1 2 79203 220 0.00 2019-08-03 12:58:48 2019-08-03 13:12:11 t 1 2 79204 217 0.00 2019-08-03 13:04:41 2019-08-03 13:24:46 t 1 2 79230 311 0.00 2019-08-03 14:07:04 2019-08-03 14:27:09 t 1 2 79233 212 0.00 2019-08-03 14:38:46 2019-08-03 14:42:22 t 1 2 79236 217 0.00 2019-08-03 14:41:07 2019-08-03 14:56:12 t 1 2 79243 220 0.00 2019-08-03 15:09:43 2019-08-03 15:12:45 t 1 1 79245 234 0.00 2019-08-03 12:44:04 2019-08-03 15:14:09 t 1 2 79248 243 0.00 2019-08-03 15:12:29 2019-08-03 15:21:43 t 1 2 79252 288 0.00 2019-08-03 15:46:11 2019-08-03 15:47:16 t 1 2 79253 304 0.00 2019-08-03 15:23:44 2019-08-03 15:48:49 t 1 2 79254 212 0.00 2019-08-03 15:55:57 2019-08-03 15:55:57 t 1 2 79255 212 0.00 2019-08-03 15:56:04 2019-08-03 15:56:18 t 1 2 79265 306 0.00 2019-08-03 16:24:21 2019-08-03 16:25:25 t 1 2 79268 318 0.00 2019-08-03 16:20:12 2019-08-03 16:29:41 t 1 2 79273 306 0.00 2019-08-03 16:39:11 2019-08-03 16:40:13 t 1 2 79279 296 0.00 2019-08-03 16:56:14 2019-08-03 17:02:38 t 1 2 81242 220 0.00 2019-08-08 16:22:54 2019-08-08 16:23:06 t 1 1 79285 247 0.00 2019-08-03 17:27:08 2019-08-03 17:29:29 t 1 2 79291 263 0.00 2019-08-03 17:39:00 2019-08-03 17:50:20 t 1 2 79294 339 0.00 2019-08-03 17:57:25 2019-08-03 17:59:49 t 1 2 79295 220 0.00 2019-08-03 18:04:11 2019-08-03 18:13:40 t 1 1 79297 204 0.00 2019-08-03 17:24:35 2019-08-03 18:24:41 t 1 2 79303 324 0.00 2019-08-03 18:37:41 2019-08-03 18:37:57 t 1 2 79306 217 0.00 2019-08-03 18:29:43 2019-08-03 18:49:48 t 1 2 79307 288 0.00 2019-08-03 18:50:26 2019-08-03 18:51:30 t 1 2 79310 296 0.00 2019-08-03 18:58:16 2019-08-03 19:02:37 t 1 2 79311 304 0.00 2019-08-03 18:50:23 2019-08-03 19:05:28 t 1 2 79316 217 0.00 2019-08-03 18:40:53 2019-08-03 19:15:58 t 1 2 79320 212 0.00 2019-08-03 19:20:28 2019-08-03 19:20:49 t 1 2 79324 292 0.00 2019-08-03 19:42:31 2019-08-03 19:42:35 t 1 2 79326 324 0.00 2019-08-03 19:12:40 2019-08-03 19:51:18 t 1 2 79327 217 0.00 2019-08-03 18:47:58 2019-08-03 19:58:32 t 1 2 79336 294 0.00 2019-08-03 19:26:26 2019-08-03 20:26:48 t 1 2 79338 288 0.00 2019-08-03 20:27:47 2019-08-03 20:28:51 t 1 2 79340 304 0.00 2019-08-03 20:25:19 2019-08-03 20:35:24 t 1 2 79342 217 0.00 2019-08-03 20:30:52 2019-08-03 20:40:58 t 1 2 79345 324 0.00 2019-08-03 20:53:35 2019-08-03 20:55:28 t 1 2 79348 324 0.00 2019-08-03 21:09:40 2019-08-03 21:17:14 t 1 2 79354 218 0.00 2019-08-03 21:18:21 2019-08-03 21:38:27 t 1 2 79357 217 0.00 2019-08-03 21:06:28 2019-08-03 21:46:47 t 1 2 79359 324 0.00 2019-08-03 20:55:36 2019-08-03 21:47:38 t 1 2 79362 212 0.00 2019-08-03 21:55:59 2019-08-03 21:56:26 t 1 2 79363 247 0.00 2019-08-03 21:59:43 2019-08-03 22:02:48 t 1 2 79368 304 0.00 2019-08-03 22:17:24 2019-08-03 22:27:29 t 1 2 79369 218 0.00 2019-08-03 22:19:28 2019-08-03 22:29:34 t 1 2 79370 220 0.00 2019-08-03 20:17:15 2019-08-03 22:44:46 t 1 1 79371 306 0.00 2019-08-03 22:45:13 2019-08-03 22:46:16 t 1 2 79374 212 0.00 2019-08-03 22:18:12 2019-08-03 22:53:04 t 1 2 79375 243 0.00 2019-08-03 22:12:00 2019-08-03 23:00:23 t 1 2 79378 220 0.00 2019-08-03 22:51:16 2019-08-03 23:07:46 t 1 1 79382 204 0.00 2019-08-03 22:13:30 2019-08-03 23:24:49 t 1 2 79385 288 0.00 2019-08-03 23:29:01 2019-08-03 23:30:05 t 1 2 79391 318 0.00 2019-08-03 23:12:10 2019-08-03 23:43:12 t 1 2 79392 308 0.00 2019-08-03 20:19:50 2019-08-03 23:44:55 t 1 2 79394 286 0.00 2019-08-03 23:38:20 2019-08-03 23:48:25 t 1 2 79397 335 0.00 2019-08-03 23:04:49 2019-08-03 23:54:55 t 1 2 79400 217 0.00 2019-08-03 23:43:04 2019-08-04 00:03:10 t 1 2 79402 247 0.00 2019-08-04 00:04:42 2019-08-04 00:05:29 t 1 2 79407 218 0.00 2019-08-04 00:08:08 2019-08-04 00:15:49 t 1 2 79411 236 0.00 2019-08-03 23:59:23 2019-08-04 00:29:28 t 1 2 79418 304 0.00 2019-08-04 00:24:23 2019-08-04 00:39:28 t 1 2 79419 318 0.00 2019-08-03 23:57:40 2019-08-04 00:45:19 t 1 2 79424 294 0.00 2019-08-04 00:06:11 2019-08-04 01:06:35 t 1 2 79426 320 0.00 2019-08-03 23:02:44 2019-08-04 01:07:49 t 1 2 79435 217 0.00 2019-08-04 01:01:13 2019-08-04 02:11:18 t 1 2 79436 234 0.00 2019-08-04 01:44:30 2019-08-04 02:14:35 t 1 2 79437 324 0.00 2019-08-04 02:34:06 2019-08-04 02:36:12 t 1 2 79442 217 0.00 2019-08-04 02:32:27 2019-08-04 03:37:32 t 1 2 79443 324 0.00 2019-08-04 02:14:21 2019-08-04 04:19:26 t 1 2 79444 339 0.00 2019-08-04 04:02:03 2019-08-04 05:02:26 t 1 2 79210 288 0.00 2019-08-03 13:41:52 2019-08-03 13:42:57 t 1 2 79212 324 0.00 2019-08-03 13:45:18 2019-08-03 13:46:02 t 1 2 79215 327 0.00 2019-08-03 11:02:16 2019-08-03 13:47:21 t 1 2 79216 304 0.00 2019-08-03 13:43:26 2019-08-03 13:53:31 t 1 2 79217 212 0.00 2019-08-03 13:59:22 2019-08-03 13:59:53 t 1 2 79221 320 0.00 2019-08-03 13:51:51 2019-08-03 14:06:56 t 1 2 79224 335 0.00 2019-08-03 14:13:28 2019-08-03 14:13:37 t 1 2 79226 292 0.00 2019-08-03 14:03:58 2019-08-03 14:14:03 t 1 2 79227 243 0.00 2019-08-03 14:15:53 2019-08-03 14:18:38 t 1 2 79229 243 0.00 2019-08-03 14:23:25 2019-08-03 14:26:39 t 1 2 79231 296 0.00 2019-08-03 14:23:02 2019-08-03 14:29:26 t 1 2 79235 217 0.00 2019-08-03 14:28:57 2019-08-03 14:49:03 t 1 2 79258 212 0.00 2019-08-03 15:57:18 2019-08-03 15:58:18 t 1 2 79260 304 0.00 2019-08-03 15:52:38 2019-08-03 16:02:44 t 1 2 79264 324 0.00 2019-08-03 16:17:19 2019-08-03 16:21:24 t 1 2 79267 306 0.00 2019-08-03 16:25:58 2019-08-03 16:27:01 t 1 2 79271 247 0.00 2019-08-03 16:36:17 2019-08-03 16:38:34 t 1 2 79275 318 0.00 2019-08-03 16:29:59 2019-08-03 16:42:25 t 1 2 79276 304 0.00 2019-08-03 16:32:53 2019-08-03 16:47:59 t 1 2 79277 304 0.00 2019-08-03 16:40:06 2019-08-03 16:50:12 t 1 2 79278 320 0.00 2019-08-03 15:33:36 2019-08-03 16:58:42 t 1 2 79280 320 0.00 2019-08-03 16:54:01 2019-08-03 17:04:07 t 1 2 81243 234 0.00 2019-08-08 15:57:33 2019-08-08 16:26:14 t 1 2 79290 288 0.00 2019-08-03 17:48:59 2019-08-03 17:50:04 t 1 2 79302 217 0.00 2019-08-03 18:17:46 2019-08-03 18:37:51 t 1 2 79304 234 0.00 2019-08-03 17:14:25 2019-08-03 18:39:31 t 1 2 79308 272 0.00 2019-08-03 18:46:15 2019-08-03 18:56:20 t 1 2 79318 290 0.00 2019-08-03 19:17:13 2019-08-03 19:18:20 t 1 2 79321 335 0.00 2019-08-03 19:08:30 2019-08-03 19:23:35 t 1 2 79322 304 0.00 2019-08-03 19:29:53 2019-08-03 19:30:06 t 1 2 79323 247 0.00 2019-08-03 19:33:36 2019-08-03 19:40:41 t 1 2 79325 304 0.00 2019-08-03 19:30:48 2019-08-03 19:50:54 t 1 2 79328 288 0.00 2019-08-03 20:07:19 2019-08-03 20:08:24 t 1 2 79330 212 0.00 2019-08-03 20:11:34 2019-08-03 20:12:04 t 1 2 79332 220 0.00 2019-08-03 18:40:29 2019-08-03 20:17:15 t 1 1 79335 320 0.00 2019-08-03 20:09:45 2019-08-03 20:19:51 t 1 2 79346 288 0.00 2019-08-03 20:55:26 2019-08-03 20:56:29 t 1 2 79347 272 0.00 2019-08-03 18:46:59 2019-08-03 21:17:04 t 1 2 79349 324 0.00 2019-08-03 21:09:00 2019-08-03 21:19:05 t 1 2 79350 217 0.00 2019-08-03 21:10:17 2019-08-03 21:25:22 t 1 2 79352 320 0.00 2019-08-03 21:19:45 2019-08-03 21:29:51 t 1 2 79372 220 0.00 2019-08-03 22:44:46 2019-08-03 22:48:16 t 1 1 79377 247 0.00 2019-08-03 23:01:45 2019-08-03 23:02:32 t 1 2 79379 212 0.00 2019-08-03 23:17:55 2019-08-03 23:18:41 t 1 2 79380 217 0.00 2019-08-03 21:46:50 2019-08-03 23:22:43 t 1 2 79387 286 0.00 2019-08-03 23:20:53 2019-08-03 23:30:58 t 1 2 79390 212 0.00 2019-08-03 23:41:57 2019-08-03 23:43:09 t 1 2 79398 212 0.00 2019-08-03 23:56:07 2019-08-03 23:57:10 t 1 2 79399 324 0.00 2019-08-03 23:46:15 2019-08-04 00:00:59 t 1 2 79401 294 0.00 2019-08-03 23:04:42 2019-08-04 00:05:05 t 1 2 79405 220 0.00 2019-08-03 23:46:15 2019-08-04 00:10:32 t 1 1 79415 218 0.00 2019-08-04 00:13:21 2019-08-04 00:35:26 t 1 2 79416 324 0.00 2019-08-04 00:35:43 2019-08-04 00:36:03 t 1 2 79417 324 0.00 2019-08-04 00:38:28 2019-08-04 00:39:08 t 1 2 79421 212 0.00 2019-08-04 00:46:12 2019-08-04 00:46:57 t 1 2 79428 234 0.00 2019-08-04 01:40:06 2019-08-04 01:40:06 f 1 2 81245 306 0.00 2019-08-08 16:31:40 2019-08-08 16:32:43 t 1 2 79439 324 0.00 2019-08-04 02:36:56 2019-08-04 02:56:27 t 1 2 79445 322 0.00 2019-08-04 04:09:47 2019-08-04 05:51:59 t 1 2 79451 288 0.00 2019-08-04 07:15:20 2019-08-04 07:16:24 t 1 2 79453 288 0.00 2019-08-04 07:28:16 2019-08-04 07:29:23 t 1 2 79454 294 0.00 2019-08-04 07:12:57 2019-08-04 07:33:56 t 1 2 79456 288 0.00 2019-08-04 07:37:20 2019-08-04 07:38:27 t 1 2 79458 288 0.00 2019-08-04 07:42:43 2019-08-04 07:43:51 t 1 2 79463 288 0.00 2019-08-04 08:27:26 2019-08-04 08:28:33 t 1 2 79474 288 0.00 2019-08-04 09:28:41 2019-08-04 09:29:43 t 1 2 79476 304 0.00 2019-08-04 09:30:43 2019-08-04 09:30:43 f 1 2 79478 304 0.00 2019-08-04 09:31:00 2019-08-04 09:31:00 f 1 2 79482 306 0.00 2019-08-04 09:33:49 2019-08-04 09:34:54 t 1 2 79484 212 0.00 2019-08-04 09:47:17 2019-08-04 09:47:36 t 1 2 79492 304 0.00 2019-08-04 10:03:01 2019-08-04 10:03:01 f 1 2 79494 304 0.00 2019-08-04 10:03:17 2019-08-04 10:03:17 f 1 2 79502 304 0.00 2019-08-04 10:15:14 2019-08-04 10:25:20 t 1 2 79507 243 0.00 2019-08-04 10:46:51 2019-08-04 10:52:26 t 1 2 79509 306 0.00 2019-08-04 10:54:17 2019-08-04 10:55:20 t 1 2 79510 306 0.00 2019-08-04 11:09:13 2019-08-04 11:10:13 t 1 2 79511 217 0.00 2019-08-04 10:55:45 2019-08-04 11:15:50 t 1 2 79517 263 0.00 2019-08-04 11:25:25 2019-08-04 11:26:34 t 1 2 79521 263 0.00 2019-08-04 11:30:24 2019-08-04 11:31:28 t 1 2 79526 306 0.00 2019-08-04 11:37:34 2019-08-04 11:38:37 t 1 2 79531 230 0.00 2019-08-04 11:16:23 2019-08-04 11:58:16 t 1 2 79534 217 0.00 2019-08-04 11:20:25 2019-08-04 12:00:31 t 1 2 79537 324 0.00 2019-08-04 11:50:43 2019-08-04 12:13:42 t 1 2 79545 212 0.00 2019-08-04 12:44:35 2019-08-04 12:45:00 t 1 2 79548 217 0.00 2019-08-04 12:51:52 2019-08-04 12:52:57 t 1 2 79553 324 0.00 2019-08-04 13:00:40 2019-08-04 13:01:44 t 1 2 79555 335 0.00 2019-08-04 13:02:09 2019-08-04 13:05:36 t 1 2 79558 324 0.00 2019-08-04 13:07:53 2019-08-04 13:08:12 t 1 2 79569 204 0.00 2019-08-04 13:14:28 2019-08-04 13:46:31 t 1 2 79571 306 0.00 2019-08-04 13:51:27 2019-08-04 13:52:30 t 1 2 79577 306 0.00 2019-08-04 14:04:17 2019-08-04 14:05:20 t 1 2 79586 288 0.00 2019-08-04 14:24:37 2019-08-04 14:25:41 t 1 2 79589 218 0.00 2019-08-04 14:00:49 2019-08-04 14:35:54 t 1 2 79592 320 0.00 2019-08-04 14:02:43 2019-08-04 14:37:49 t 1 2 79594 234 0.00 2019-08-04 14:18:01 2019-08-04 14:43:06 t 1 2 81251 306 0.00 2019-08-08 16:34:08 2019-08-08 16:35:16 t 1 2 79613 335 0.00 2019-08-04 13:28:34 2019-08-04 15:45:24 t 1 2 79615 247 0.00 2019-08-04 15:57:03 2019-08-04 15:59:16 t 1 2 79623 217 0.00 2019-08-04 11:56:41 2019-08-04 16:36:47 t 1 2 79626 217 0.00 2019-08-04 13:55:37 2019-08-04 16:38:17 t 1 2 79633 320 0.00 2019-08-04 16:07:26 2019-08-04 17:02:31 t 1 2 79635 304 0.00 2019-08-04 16:57:53 2019-08-04 17:12:59 t 1 2 79638 304 0.00 2019-08-04 17:07:42 2019-08-04 17:17:47 t 1 2 79639 288 0.00 2019-08-04 17:20:05 2019-08-04 17:21:08 t 1 2 79641 337 0.00 2019-08-04 17:31:22 2019-08-04 17:32:09 t 1 2 79645 304 0.00 2019-08-04 17:29:18 2019-08-04 17:39:23 t 1 2 79657 230 0.00 2019-08-04 18:04:04 2019-08-04 18:24:10 t 1 2 79408 217 0.00 2019-08-04 00:07:49 2019-08-04 00:22:54 t 1 2 79413 324 0.00 2019-08-03 23:46:47 2019-08-04 00:31:52 t 1 2 79414 324 0.00 2019-08-04 00:33:10 2019-08-04 00:34:16 t 1 2 79422 304 0.00 2019-08-04 00:32:42 2019-08-04 00:47:48 t 1 2 79427 234 0.00 2019-08-04 01:39:57 2019-08-04 01:39:57 f 1 2 79429 234 0.00 2019-08-04 01:40:22 2019-08-04 01:40:22 f 1 2 79431 234 0.00 2019-08-03 22:49:10 2019-08-04 01:44:15 t 1 2 79441 335 0.00 2019-08-04 02:10:16 2019-08-04 03:25:21 t 1 2 79446 218 0.00 2019-08-04 05:49:00 2019-08-04 05:59:05 t 1 2 79447 247 0.00 2019-08-04 06:55:19 2019-08-04 06:56:13 t 1 2 79457 288 0.00 2019-08-04 07:38:46 2019-08-04 07:39:52 t 1 2 79459 212 0.00 2019-08-04 08:13:14 2019-08-04 08:13:50 t 1 2 79461 320 0.00 2019-08-04 08:08:41 2019-08-04 08:18:46 t 1 2 79462 320 0.00 2019-08-04 08:17:51 2019-08-04 08:27:56 t 1 2 79464 212 0.00 2019-08-04 08:27:23 2019-08-04 08:29:31 t 1 2 79466 292 0.00 2019-08-04 08:24:22 2019-08-04 08:34:27 t 1 2 79468 324 0.00 2019-08-04 08:30:32 2019-08-04 08:58:17 t 1 2 79470 320 0.00 2019-08-04 08:55:21 2019-08-04 09:05:27 t 1 2 79473 324 0.00 2019-08-04 08:06:32 2019-08-04 09:21:38 t 1 2 79483 304 0.00 2019-08-04 09:26:32 2019-08-04 09:36:37 t 1 2 79485 218 0.00 2019-08-04 07:37:22 2019-08-04 09:49:32 t 1 2 79487 304 0.00 2019-08-04 09:31:25 2019-08-04 09:51:30 t 1 2 79488 304 0.00 2019-08-04 10:01:48 2019-08-04 10:01:48 f 1 2 79490 304 0.00 2019-08-04 10:02:11 2019-08-04 10:02:11 f 1 2 79500 217 0.00 2019-08-04 10:07:45 2019-08-04 10:22:51 t 1 2 79503 232 0.00 2019-08-04 10:30:08 2019-08-04 10:31:13 t 1 2 79506 217 0.00 2019-08-04 10:16:19 2019-08-04 10:41:24 t 1 2 79513 217 0.00 2019-08-04 11:11:35 2019-08-04 11:17:37 t 1 2 79519 294 0.00 2019-08-04 11:25:38 2019-08-04 11:27:01 t 1 2 79520 263 0.00 2019-08-04 11:28:50 2019-08-04 11:29:54 t 1 2 79523 263 0.00 2019-08-04 11:33:57 2019-08-04 11:35:02 t 1 2 79527 286 0.00 2019-08-04 11:38:29 2019-08-04 11:41:14 t 1 2 79529 217 0.00 2019-08-04 11:19:47 2019-08-04 11:44:52 t 1 2 79532 304 0.00 2019-08-04 11:54:40 2019-08-04 11:58:40 t 1 2 79540 247 0.00 2019-08-04 12:29:03 2019-08-04 12:30:06 t 1 2 79543 304 0.00 2019-08-04 12:23:14 2019-08-04 12:38:19 t 1 2 79544 308 0.00 2019-08-04 11:38:35 2019-08-04 12:43:40 t 1 2 79554 320 0.00 2019-08-04 13:05:14 2019-08-04 13:05:15 t 1 2 79559 304 0.00 2019-08-04 12:58:48 2019-08-04 13:08:53 t 1 2 79562 343 0.00 2019-08-04 13:14:32 2019-08-04 13:15:34 t 1 2 79564 230 0.00 2019-08-04 12:46:11 2019-08-04 13:17:10 t 1 2 79568 217 0.00 2019-08-04 13:44:10 2019-08-04 13:44:40 t 1 2 79574 304 0.00 2019-08-04 13:44:36 2019-08-04 13:59:41 t 1 2 79576 304 0.00 2019-08-04 13:53:57 2019-08-04 14:04:02 t 1 2 79579 306 0.00 2019-08-04 14:05:34 2019-08-04 14:06:37 t 1 2 79582 234 0.00 2019-08-04 14:15:40 2019-08-04 14:16:18 t 1 2 79601 324 0.00 2019-08-04 15:08:36 2019-08-04 15:09:41 t 1 2 79605 320 0.00 2019-08-04 15:13:18 2019-08-04 15:23:23 t 1 2 79609 320 0.00 2019-08-04 15:24:25 2019-08-04 15:34:30 t 1 2 79610 304 0.00 2019-08-04 15:26:15 2019-08-04 15:36:20 t 1 2 79616 320 0.00 2019-08-04 15:35:48 2019-08-04 16:00:53 t 1 2 79620 320 0.00 2019-08-04 16:04:52 2019-08-04 16:14:57 t 1 2 79627 230 0.00 2019-08-04 15:47:23 2019-08-04 16:38:51 t 1 2 79629 306 0.00 2019-08-04 16:54:49 2019-08-04 16:55:49 t 1 2 79632 320 0.00 2019-08-04 16:58:41 2019-08-04 17:01:41 t 1 2 79637 288 0.00 2019-08-04 17:15:51 2019-08-04 17:16:56 t 1 2 79644 212 0.00 2019-08-04 17:38:50 2019-08-04 17:39:11 t 1 2 79647 320 0.00 2019-08-04 17:22:04 2019-08-04 17:47:09 t 1 2 79649 304 0.00 2019-08-04 17:33:52 2019-08-04 17:48:57 t 1 2 79653 304 0.00 2019-08-04 18:02:18 2019-08-04 18:12:23 t 1 2 79654 294 0.00 2019-08-04 18:03:40 2019-08-04 18:17:41 t 1 2 79655 304 0.00 2019-08-04 18:11:30 2019-08-04 18:21:36 t 1 2 79659 212 0.00 2019-08-04 18:25:22 2019-08-04 18:25:39 t 1 2 79660 212 0.00 2019-08-04 18:31:29 2019-08-04 18:31:46 t 1 2 79662 220 0.00 2019-08-04 18:22:02 2019-08-04 18:40:25 t 1 2 79667 304 0.00 2019-08-04 18:58:35 2019-08-04 19:03:41 t 1 2 79668 232 0.00 2019-08-04 19:04:31 2019-08-04 19:05:33 t 1 2 79675 286 0.00 2019-08-04 19:06:04 2019-08-04 19:21:09 t 1 2 79677 288 0.00 2019-08-04 19:22:50 2019-08-04 19:23:57 t 1 2 79685 324 0.00 2019-08-04 19:45:15 2019-08-04 19:46:13 t 1 2 79688 286 0.00 2019-08-04 19:48:32 2019-08-04 19:58:37 t 1 2 79689 324 0.00 2019-08-04 20:05:25 2019-08-04 20:06:23 t 1 2 79693 302 0.00 2019-08-04 18:28:36 2019-08-04 20:13:42 t 1 2 79694 306 0.00 2019-08-04 20:16:06 2019-08-04 20:17:09 t 1 2 79696 320 0.00 2019-08-04 20:23:18 2019-08-04 20:23:18 f 1 2 79697 320 0.00 2019-08-04 20:15:27 2019-08-04 20:25:32 t 1 2 79701 296 0.00 2019-08-04 20:30:16 2019-08-04 20:34:37 t 1 2 79703 230 0.00 2019-08-04 20:29:58 2019-08-04 20:39:03 t 1 2 79708 217 0.00 2019-08-04 20:25:52 2019-08-04 20:45:58 t 1 2 79710 320 0.00 2019-08-04 20:25:38 2019-08-04 20:50:43 t 1 2 79713 286 0.00 2019-08-04 20:50:51 2019-08-04 21:00:56 t 1 2 79719 306 0.00 2019-08-04 21:12:21 2019-08-04 21:13:26 t 1 2 79721 304 0.00 2019-08-04 21:20:53 2019-08-04 21:20:53 f 1 2 79730 324 0.00 2019-08-04 21:44:45 2019-08-04 21:45:50 t 1 2 79737 212 0.00 2019-08-04 22:02:02 2019-08-04 22:02:28 t 1 2 79741 272 0.00 2019-08-04 21:33:22 2019-08-04 22:13:28 t 1 2 79747 217 0.00 2019-08-04 22:26:05 2019-08-04 22:27:07 t 1 2 79748 212 0.00 2019-08-04 22:24:07 2019-08-04 22:27:22 t 1 2 79752 217 0.00 2019-08-04 22:28:45 2019-08-04 22:29:41 t 1 2 79757 247 0.00 2019-08-04 22:27:22 2019-08-04 22:38:32 t 1 2 79762 306 0.00 2019-08-04 22:43:08 2019-08-04 22:44:12 t 1 2 79764 204 0.00 2019-08-04 22:45:50 2019-08-04 22:45:50 f 1 2 79767 320 0.00 2019-08-04 22:34:22 2019-08-04 22:49:28 t 1 2 79770 324 0.00 2019-08-04 22:35:45 2019-08-04 22:51:38 t 1 2 79775 243 0.00 2019-08-04 22:58:34 2019-08-04 22:59:48 t 1 2 79790 304 0.00 2019-08-04 23:30:36 2019-08-04 23:45:42 t 1 2 79793 212 0.00 2019-08-04 23:49:43 2019-08-04 23:50:00 t 1 2 79805 304 0.00 2019-08-05 00:19:27 2019-08-05 00:19:27 f 1 2 79809 304 0.00 2019-08-05 00:19:55 2019-08-05 00:19:55 f 1 2 79815 304 0.00 2019-08-05 00:20:55 2019-08-05 00:20:55 f 1 2 79817 304 0.00 2019-08-05 00:21:18 2019-08-05 00:21:18 f 1 2 79826 304 0.00 2019-08-05 00:23:02 2019-08-05 00:23:02 f 1 2 79828 304 0.00 2019-08-05 00:23:21 2019-08-05 00:23:21 f 1 2 79831 304 0.00 2019-08-05 00:24:20 2019-08-05 00:24:20 f 1 2 81244 306 0.00 2019-08-08 16:26:57 2019-08-08 16:28:03 t 1 2 79841 304 0.00 2019-08-05 00:24:48 2019-08-05 00:39:53 t 1 2 79842 308 0.00 2019-08-04 23:01:14 2019-08-05 00:46:20 t 1 2 79423 304 0.00 2019-08-04 00:55:11 2019-08-04 01:05:16 t 1 2 79425 304 0.00 2019-08-04 00:57:16 2019-08-04 01:07:22 t 1 2 79430 234 0.00 2019-08-04 01:43:08 2019-08-04 01:43:08 f 1 2 79432 234 0.00 2019-08-04 01:37:17 2019-08-04 01:47:22 t 1 2 79434 320 0.00 2019-08-04 01:58:46 2019-08-04 02:08:52 t 1 2 79438 217 0.00 2019-08-04 02:19:17 2019-08-04 02:39:22 t 1 2 79440 324 0.00 2019-08-04 03:00:39 2019-08-04 03:16:40 t 1 2 79448 217 0.00 2019-08-04 06:57:26 2019-08-04 06:58:30 t 1 2 79449 212 0.00 2019-08-04 07:02:43 2019-08-04 07:03:48 t 1 2 79452 288 0.00 2019-08-04 07:23:41 2019-08-04 07:24:48 t 1 2 79455 218 0.00 2019-08-04 06:57:26 2019-08-04 07:33:56 t 1 2 79467 306 0.00 2019-08-04 08:52:16 2019-08-04 08:53:22 t 1 2 79469 324 0.00 2019-08-04 08:59:27 2019-08-04 09:01:25 t 1 2 79471 212 0.00 2019-08-04 09:16:36 2019-08-04 09:17:01 t 1 2 79475 217 0.00 2019-08-04 09:29:13 2019-08-04 09:30:18 t 1 2 79479 304 0.00 2019-08-04 09:21:17 2019-08-04 09:31:22 t 1 2 79480 212 0.00 2019-08-04 09:31:33 2019-08-04 09:34:00 t 1 2 79486 288 0.00 2019-08-04 09:48:47 2019-08-04 09:49:55 t 1 2 79489 304 0.00 2019-08-04 10:01:58 2019-08-04 10:01:58 f 1 2 79491 304 0.00 2019-08-04 10:02:28 2019-08-04 10:02:28 f 1 2 79495 304 0.00 2019-08-04 09:43:23 2019-08-04 10:03:29 t 1 2 79496 304 0.00 2019-08-04 10:03:32 2019-08-04 10:03:39 t 1 2 79497 304 0.00 2019-08-04 09:56:11 2019-08-04 10:06:16 t 1 2 79498 320 0.00 2019-08-04 10:00:49 2019-08-04 10:10:54 t 1 2 79504 212 0.00 2019-08-04 10:31:46 2019-08-04 10:32:51 t 1 2 79512 217 0.00 2019-08-04 11:06:49 2019-08-04 11:16:54 t 1 2 79514 304 0.00 2019-08-04 11:17:54 2019-08-04 11:18:03 t 1 2 79516 304 0.00 2019-08-04 11:12:52 2019-08-04 11:22:57 t 1 2 79522 218 0.00 2019-08-04 10:09:03 2019-08-04 11:34:08 t 1 2 79524 320 0.00 2019-08-04 11:36:14 2019-08-04 11:36:55 t 1 2 79528 217 0.00 2019-08-04 11:42:59 2019-08-04 11:44:03 t 1 2 79530 286 0.00 2019-08-04 11:40:28 2019-08-04 11:50:33 t 1 2 79533 304 0.00 2019-08-04 11:59:11 2019-08-04 11:59:19 t 1 2 79535 304 0.00 2019-08-04 11:38:51 2019-08-04 12:03:57 t 1 2 79536 318 0.00 2019-08-04 11:46:18 2019-08-04 12:07:04 t 1 2 79541 304 0.00 2019-08-04 12:11:14 2019-08-04 12:31:19 t 1 2 79549 304 0.00 2019-08-04 12:38:02 2019-08-04 12:53:08 t 1 2 79550 335 0.00 2019-08-04 12:35:23 2019-08-04 12:55:28 t 1 2 79551 324 0.00 2019-08-04 12:57:06 2019-08-04 12:58:11 t 1 2 79552 324 0.00 2019-08-04 12:58:47 2019-08-04 12:59:28 t 1 2 79561 343 0.00 2019-08-04 13:12:18 2019-08-04 13:13:25 t 1 2 79563 318 0.00 2019-08-04 13:11:22 2019-08-04 13:15:55 t 1 2 79565 218 0.00 2019-08-04 11:09:03 2019-08-04 13:34:08 t 1 2 79567 304 0.00 2019-08-04 13:33:05 2019-08-04 13:43:10 t 1 2 79573 320 0.00 2019-08-04 13:05:39 2019-08-04 13:55:44 t 1 2 79578 327 0.00 2019-08-04 10:33:16 2019-08-04 14:05:40 t 1 2 79580 234 0.00 2019-08-04 13:48:56 2019-08-04 14:12:22 t 1 2 79581 217 0.00 2019-08-04 13:49:27 2019-08-04 14:14:32 t 1 2 81246 220 0.00 2019-08-08 16:33:21 2019-08-08 16:33:29 t 1 1 79587 206 0.00 2019-08-04 14:33:30 2019-08-04 14:34:34 t 1 2 79590 206 0.00 2019-08-04 14:35:10 2019-08-04 14:36:13 t 1 2 79593 320 0.00 2019-08-04 14:31:15 2019-08-04 14:41:20 t 1 2 79596 343 0.00 2019-08-04 14:54:34 2019-08-04 14:55:38 t 1 2 79597 212 0.00 2019-08-04 13:41:27 2019-08-04 14:56:33 t 1 2 81247 220 0.00 2019-08-08 16:33:36 2019-08-08 16:33:43 t 1 1 79602 296 0.00 2019-08-04 14:58:28 2019-08-04 15:11:52 t 1 2 79604 234 0.00 2019-08-04 15:01:49 2019-08-04 15:21:54 t 1 2 79607 218 0.00 2019-08-04 14:52:39 2019-08-04 15:27:44 t 1 2 79608 217 0.00 2019-08-04 14:53:09 2019-08-04 15:30:23 t 1 2 79614 212 0.00 2019-08-04 15:57:53 2019-08-04 15:58:24 t 1 2 79618 217 0.00 2019-08-04 15:40:19 2019-08-04 16:05:24 t 1 2 79619 288 0.00 2019-08-04 16:10:32 2019-08-04 16:11:35 t 1 2 79621 288 0.00 2019-08-04 16:15:43 2019-08-04 16:16:46 t 1 2 79622 294 0.00 2019-08-04 15:18:44 2019-08-04 16:19:05 t 1 2 79624 212 0.00 2019-08-04 16:36:39 2019-08-04 16:37:00 t 1 2 79630 306 0.00 2019-08-04 16:56:41 2019-08-04 16:57:45 t 1 2 79631 335 0.00 2019-08-04 16:51:31 2019-08-04 17:01:36 t 1 2 79634 212 0.00 2019-08-04 16:59:12 2019-08-04 17:05:19 t 1 2 79636 234 0.00 2019-08-04 16:23:19 2019-08-04 17:13:25 t 1 2 79646 294 0.00 2019-08-04 16:20:13 2019-08-04 17:39:37 t 1 2 79650 337 0.00 2019-08-04 17:52:12 2019-08-04 17:52:33 t 1 2 79651 320 0.00 2019-08-04 17:51:57 2019-08-04 18:02:02 t 1 2 79652 212 0.00 2019-08-04 18:10:52 2019-08-04 18:11:32 t 1 2 79656 306 0.00 2019-08-04 18:20:56 2019-08-04 18:22:01 t 1 2 79663 304 0.00 2019-08-04 18:31:02 2019-08-04 18:41:07 t 1 2 79670 232 0.00 2019-08-04 19:07:04 2019-08-04 19:07:09 t 1 2 79671 232 0.00 2019-08-04 19:10:11 2019-08-04 19:11:16 t 1 2 79679 217 0.00 2019-08-04 19:08:40 2019-08-04 19:28:45 t 1 2 79684 320 0.00 2019-08-04 18:50:25 2019-08-04 19:45:30 t 1 2 79686 217 0.00 2019-08-04 19:21:36 2019-08-04 19:46:41 t 1 2 79690 320 0.00 2019-08-04 20:03:41 2019-08-04 20:06:41 t 1 2 79695 320 0.00 2019-08-04 20:23:01 2019-08-04 20:23:01 f 1 2 79698 335 0.00 2019-08-04 20:06:09 2019-08-04 20:26:14 t 1 2 79700 320 0.00 2019-08-04 20:18:54 2019-08-04 20:28:59 t 1 2 79702 234 0.00 2019-08-04 20:07:24 2019-08-04 20:36:29 t 1 2 79705 304 0.00 2019-08-04 20:31:21 2019-08-04 20:41:26 t 1 2 79707 217 0.00 2019-08-04 20:42:10 2019-08-04 20:43:17 t 1 2 79714 217 0.00 2019-08-04 20:43:46 2019-08-04 21:03:51 t 1 2 79720 217 0.00 2019-08-04 20:57:29 2019-08-04 21:17:34 t 1 2 79723 212 0.00 2019-08-04 21:20:12 2019-08-04 21:21:06 t 1 2 79727 320 0.00 2019-08-04 21:07:04 2019-08-04 21:37:09 t 1 2 79731 220 0.00 2019-08-04 21:22:43 2019-08-04 21:49:41 t 1 1 79739 220 0.00 2019-08-04 22:13:00 2019-08-04 22:13:15 t 1 1 79745 220 0.00 2019-08-04 22:23:32 2019-08-04 22:23:44 t 1 1 79751 217 0.00 2019-08-04 22:28:22 2019-08-04 22:28:31 t 1 2 79756 243 0.00 2019-08-04 22:32:30 2019-08-04 22:37:10 t 1 2 79760 212 0.00 2019-08-04 22:38:44 2019-08-04 22:39:17 t 1 2 79766 220 0.00 2019-08-04 22:33:16 2019-08-04 22:47:01 t 1 1 81252 220 0.00 2019-08-08 14:25:39 2019-08-08 16:35:45 t 1 2 79784 212 0.00 2019-08-04 23:18:06 2019-08-04 23:19:10 t 1 2 79787 217 0.00 2019-08-04 23:20:25 2019-08-04 23:21:32 t 1 2 79795 234 0.00 2019-08-04 22:25:00 2019-08-04 23:58:14 t 1 2 79798 333 0.00 2019-08-05 00:07:45 2019-08-05 00:09:00 t 1 2 79802 247 0.00 2019-08-05 00:16:39 2019-08-05 00:17:51 t 1 2 79806 304 0.00 2019-08-05 00:19:37 2019-08-05 00:19:37 f 1 2 79808 217 0.00 2019-08-05 00:18:48 2019-08-05 00:19:52 t 1 2 79810 304 0.00 2019-08-05 00:20:07 2019-08-05 00:20:07 f 1 2 79450 212 0.00 2019-08-04 07:05:52 2019-08-04 07:06:24 t 1 2 79460 288 0.00 2019-08-04 08:17:36 2019-08-04 08:18:41 t 1 2 79465 306 0.00 2019-08-04 08:32:53 2019-08-04 08:33:56 t 1 2 79472 306 0.00 2019-08-04 09:20:03 2019-08-04 09:21:09 t 1 2 79477 304 0.00 2019-08-04 09:30:51 2019-08-04 09:30:51 f 1 2 79481 320 0.00 2019-08-04 09:24:03 2019-08-04 09:34:08 t 1 2 79493 304 0.00 2019-08-04 10:03:08 2019-08-04 10:03:08 f 1 2 79499 234 0.00 2019-08-04 10:06:17 2019-08-04 10:16:22 t 1 2 79501 304 0.00 2019-08-04 10:03:53 2019-08-04 10:23:58 t 1 2 79505 212 0.00 2019-08-04 10:33:34 2019-08-04 10:33:37 t 1 2 79508 232 0.00 2019-08-04 10:53:20 2019-08-04 10:54:24 t 1 2 79515 320 0.00 2019-08-04 11:08:02 2019-08-04 11:18:08 t 1 2 79518 236 0.00 2019-08-04 11:06:50 2019-08-04 11:26:55 t 1 2 79525 217 0.00 2019-08-04 11:37:26 2019-08-04 11:38:30 t 1 2 79538 304 0.00 2019-08-04 11:59:33 2019-08-04 12:14:38 t 1 2 79539 324 0.00 2019-08-04 12:25:58 2019-08-04 12:28:43 t 1 2 79542 320 0.00 2019-08-04 12:23:49 2019-08-04 12:33:54 t 1 2 79546 234 0.00 2019-08-04 12:20:13 2019-08-04 12:50:18 t 1 2 79547 320 0.00 2019-08-04 12:41:51 2019-08-04 12:51:56 t 1 2 79556 217 0.00 2019-08-04 12:55:32 2019-08-04 13:05:38 t 1 2 79557 234 0.00 2019-08-04 12:56:17 2019-08-04 13:06:12 t 1 2 79560 204 0.00 2019-08-04 12:59:00 2019-08-04 13:10:58 t 1 2 79566 217 0.00 2019-08-04 11:33:04 2019-08-04 13:37:37 t 1 2 79570 232 0.00 2019-08-04 13:45:34 2019-08-04 13:46:40 t 1 2 79572 304 0.00 2019-08-04 13:37:43 2019-08-04 13:52:48 t 1 2 79575 247 0.00 2019-08-04 14:02:34 2019-08-04 14:03:42 t 1 2 79583 247 0.00 2019-08-04 14:22:46 2019-08-04 14:23:12 t 1 2 79585 230 0.00 2019-08-04 13:20:25 2019-08-04 14:25:30 t 1 2 79588 318 0.00 2019-08-04 14:09:31 2019-08-04 14:34:36 t 1 2 79591 206 0.00 2019-08-04 14:36:29 2019-08-04 14:37:32 t 1 2 79595 236 0.00 2019-08-04 12:02:00 2019-08-04 14:47:05 t 1 2 79599 314 0.00 2019-08-04 10:01:48 2019-08-04 15:06:40 t 1 2 79603 304 0.00 2019-08-04 15:02:03 2019-08-04 15:12:08 t 1 2 79606 339 0.00 2019-08-04 13:32:26 2019-08-04 15:24:06 t 1 2 79611 331 0.00 2019-08-04 15:40:11 2019-08-04 15:40:44 t 1 2 79612 320 0.00 2019-08-04 15:34:26 2019-08-04 15:44:31 t 1 2 79617 324 0.00 2019-08-04 15:43:22 2019-08-04 16:03:13 t 1 2 79625 331 0.00 2019-08-04 16:36:28 2019-08-04 16:37:27 t 1 2 79628 217 0.00 2019-08-04 16:27:24 2019-08-04 16:52:29 t 1 2 79640 318 0.00 2019-08-04 17:17:41 2019-08-04 17:28:41 t 1 2 79642 304 0.00 2019-08-04 17:13:29 2019-08-04 17:33:34 t 1 2 79643 306 0.00 2019-08-04 17:34:00 2019-08-04 17:35:04 t 1 2 79648 324 0.00 2019-08-04 17:48:33 2019-08-04 17:48:50 t 1 2 79658 320 0.00 2019-08-04 18:09:45 2019-08-04 18:24:50 t 1 2 79661 320 0.00 2019-08-04 18:30:04 2019-08-04 18:40:09 t 1 2 79666 232 0.00 2019-08-04 19:03:09 2019-08-04 19:03:40 t 1 2 79672 288 0.00 2019-08-04 19:14:00 2019-08-04 19:15:02 t 1 2 79676 288 0.00 2019-08-04 19:21:23 2019-08-04 19:22:28 t 1 2 79678 232 0.00 2019-08-04 19:24:16 2019-08-04 19:25:20 t 1 2 79680 234 0.00 2019-08-04 18:58:42 2019-08-04 19:28:47 t 1 2 81249 220 0.00 2019-08-08 16:33:51 2019-08-08 16:33:59 t 1 1 79683 212 0.00 2019-08-04 19:36:16 2019-08-04 19:36:36 t 1 2 79687 288 0.00 2019-08-04 19:48:41 2019-08-04 19:49:46 t 1 2 79692 320 0.00 2019-08-04 19:50:47 2019-08-04 20:10:52 t 1 2 79699 212 0.00 2019-08-04 20:27:41 2019-08-04 20:28:01 t 1 2 79711 286 0.00 2019-08-04 20:42:20 2019-08-04 20:52:25 t 1 2 79716 320 0.00 2019-08-04 20:56:34 2019-08-04 21:06:39 t 1 2 79724 304 0.00 2019-08-04 21:12:54 2019-08-04 21:23:00 t 1 2 79726 304 0.00 2019-08-04 21:21:08 2019-08-04 21:31:13 t 1 2 79728 335 0.00 2019-08-04 21:31:31 2019-08-04 21:41:36 t 1 2 79733 306 0.00 2019-08-04 21:57:01 2019-08-04 21:58:04 t 1 2 79735 306 0.00 2019-08-04 21:59:33 2019-08-04 22:00:39 t 1 2 79736 220 0.00 2019-08-04 22:01:57 2019-08-04 22:02:17 t 1 1 79740 320 0.00 2019-08-04 21:33:19 2019-08-04 22:13:25 t 1 2 79742 333 0.00 2019-08-04 21:22:44 2019-08-04 22:14:58 t 1 2 79744 294 0.00 2019-08-04 21:21:44 2019-08-04 22:22:08 t 1 2 79746 335 0.00 2019-08-04 22:14:45 2019-08-04 22:24:50 t 1 2 79754 212 0.00 2019-08-04 22:34:19 2019-08-04 22:34:54 t 1 2 79758 204 0.00 2019-08-04 22:38:49 2019-08-04 22:38:49 f 1 2 79771 220 0.00 2019-08-04 22:50:07 2019-08-04 22:53:03 t 1 1 79772 220 0.00 2019-08-04 22:53:03 2019-08-04 22:56:22 t 1 1 79774 220 0.00 2019-08-04 22:56:22 2019-08-04 22:59:18 t 1 1 79776 220 0.00 2019-08-04 22:59:18 2019-08-04 23:02:11 t 1 1 79777 220 0.00 2019-08-04 23:02:11 2019-08-04 23:05:49 t 1 1 79778 335 0.00 2019-08-04 22:46:21 2019-08-04 23:06:26 t 1 2 79780 320 0.00 2019-08-04 22:49:47 2019-08-04 23:09:52 t 1 2 79781 220 0.00 2019-08-04 23:05:49 2019-08-04 23:10:22 t 1 1 79783 243 0.00 2019-08-04 23:01:26 2019-08-04 23:18:35 t 1 2 79785 333 0.00 2019-08-04 23:02:18 2019-08-04 23:19:12 t 1 2 79791 247 0.00 2019-08-04 23:47:33 2019-08-04 23:48:49 t 1 2 79792 212 0.00 2019-08-04 23:49:25 2019-08-04 23:49:35 t 1 2 79796 234 0.00 2019-08-05 00:03:27 2019-08-05 00:03:27 f 1 2 79799 234 0.00 2019-08-04 23:59:16 2019-08-05 00:09:21 t 1 2 79803 217 0.00 2019-08-05 00:17:07 2019-08-05 00:18:11 t 1 2 79811 218 0.00 2019-08-04 22:00:03 2019-08-05 00:20:09 t 1 2 79813 304 0.00 2019-08-05 00:20:34 2019-08-05 00:20:34 f 1 2 79820 304 0.00 2019-08-05 00:21:48 2019-08-05 00:21:48 f 1 2 79822 304 0.00 2019-08-05 00:22:08 2019-08-05 00:22:08 f 1 2 79824 304 0.00 2019-08-05 00:22:36 2019-08-05 00:22:36 f 1 2 79833 286 0.00 2019-08-05 00:14:37 2019-08-05 00:24:42 t 1 2 79844 202 0.00 2019-08-05 01:25:19 2019-08-05 01:26:27 t 1 2 79849 217 0.00 2019-08-05 01:35:33 2019-08-05 01:45:39 t 1 2 79851 324 0.00 2019-08-05 02:30:55 2019-08-05 03:06:00 t 1 2 79853 288 0.00 2019-08-05 04:30:14 2019-08-05 04:31:18 t 1 2 79855 288 0.00 2019-08-05 04:33:29 2019-08-05 04:34:37 t 1 2 79868 324 0.00 2019-08-05 03:06:21 2019-08-05 05:11:27 t 1 2 79869 288 0.00 2019-08-05 05:12:52 2019-08-05 05:13:55 t 1 2 79870 288 0.00 2019-08-05 05:16:51 2019-08-05 05:17:55 t 1 2 79871 288 0.00 2019-08-05 05:19:44 2019-08-05 05:20:47 t 1 2 79873 288 0.00 2019-08-05 05:26:57 2019-08-05 05:28:01 t 1 2 79875 288 0.00 2019-08-05 06:00:17 2019-08-05 06:01:22 t 1 2 79888 320 0.00 2019-08-05 08:21:57 2019-08-05 08:37:03 t 1 2 79892 212 0.00 2019-08-05 08:43:55 2019-08-05 08:44:58 t 1 2 79905 220 0.00 2019-08-05 09:27:50 2019-08-05 09:27:59 t 1 1 79914 304 0.00 2019-08-05 09:19:15 2019-08-05 09:44:20 t 1 2 79919 217 0.00 2019-08-05 09:55:49 2019-08-05 10:15:54 t 1 2 79922 288 0.00 2019-08-05 10:19:36 2019-08-05 10:19:39 t 1 2 81254 320 0.00 2019-08-08 16:02:27 2019-08-08 16:42:32 t 1 2 79665 304 0.00 2019-08-04 18:58:17 2019-08-04 18:58:32 t 1 2 79669 288 0.00 2019-08-04 19:05:14 2019-08-04 19:06:17 t 1 2 79673 232 0.00 2019-08-04 19:16:17 2019-08-04 19:17:25 t 1 2 79674 212 0.00 2019-08-04 18:57:20 2019-08-04 19:19:24 t 1 2 79681 247 0.00 2019-08-04 19:28:33 2019-08-04 19:30:16 t 1 2 79691 212 0.00 2019-08-04 20:06:55 2019-08-04 20:07:29 t 1 2 79704 217 0.00 2019-08-04 20:40:01 2019-08-04 20:41:06 t 1 2 79706 217 0.00 2019-08-04 20:39:41 2019-08-04 20:42:41 t 1 2 79709 217 0.00 2019-08-04 20:36:31 2019-08-04 20:46:36 t 1 2 79712 218 0.00 2019-08-04 15:31:36 2019-08-04 20:56:41 t 1 2 79715 320 0.00 2019-08-04 21:06:16 2019-08-04 21:06:16 f 1 2 79717 320 0.00 2019-08-04 21:01:53 2019-08-04 21:11:58 t 1 2 79718 335 0.00 2019-08-04 20:27:30 2019-08-04 21:12:35 t 1 2 79722 304 0.00 2019-08-04 21:05:51 2019-08-04 21:20:57 t 1 2 79725 272 0.00 2019-08-04 21:10:03 2019-08-04 21:30:08 t 1 2 79729 212 0.00 2019-08-04 21:40:47 2019-08-04 21:41:57 t 1 2 79732 220 0.00 2019-08-04 21:49:41 2019-08-04 21:56:15 t 1 1 79734 324 0.00 2019-08-04 21:10:06 2019-08-04 22:00:11 t 1 2 79738 220 0.00 2019-08-04 22:02:32 2019-08-04 22:02:40 t 1 1 79743 212 0.00 2019-08-04 22:15:22 2019-08-04 22:16:57 t 1 2 79749 217 0.00 2019-08-04 22:27:31 2019-08-04 22:27:37 t 1 2 79750 304 0.00 2019-08-04 22:18:17 2019-08-04 22:28:23 t 1 2 79753 324 0.00 2019-08-04 22:28:55 2019-08-04 22:30:22 t 1 2 79755 320 0.00 2019-08-04 22:07:02 2019-08-04 22:37:07 t 1 2 79759 204 0.00 2019-08-04 22:39:12 2019-08-04 22:39:12 f 1 2 79761 306 0.00 2019-08-04 22:40:49 2019-08-04 22:41:52 t 1 2 79763 286 0.00 2019-08-04 22:34:15 2019-08-04 22:44:20 t 1 2 79765 306 0.00 2019-08-04 22:44:59 2019-08-04 22:46:04 t 1 2 79768 220 0.00 2019-08-04 22:47:01 2019-08-04 22:50:07 t 1 1 79773 243 0.00 2019-08-04 22:48:15 2019-08-04 22:57:59 t 1 2 79779 304 0.00 2019-08-04 22:52:12 2019-08-04 23:07:18 t 1 2 79782 306 0.00 2019-08-04 23:11:13 2019-08-04 23:12:15 t 1 2 79786 296 0.00 2019-08-04 23:18:25 2019-08-04 23:19:48 t 1 2 79788 324 0.00 2019-08-04 23:09:55 2019-08-04 23:34:51 t 1 2 81259 220 0.00 2019-08-08 16:45:09 2019-08-08 16:45:18 t 1 1 79794 243 0.00 2019-08-04 23:31:36 2019-08-04 23:53:51 t 1 2 79797 333 0.00 2019-08-04 23:53:46 2019-08-05 00:06:30 t 1 2 79800 217 0.00 2019-08-05 00:15:23 2019-08-05 00:16:31 t 1 2 79801 217 0.00 2019-08-05 00:17:00 2019-08-05 00:17:04 t 1 2 79804 234 0.00 2019-08-05 00:04:09 2019-08-05 00:19:14 t 1 2 79807 304 0.00 2019-08-05 00:19:45 2019-08-05 00:19:45 f 1 2 79812 304 0.00 2019-08-05 00:20:27 2019-08-05 00:20:27 f 1 2 79819 304 0.00 2019-08-05 00:21:37 2019-08-05 00:21:37 f 1 2 79821 304 0.00 2019-08-05 00:21:58 2019-08-05 00:21:58 f 1 2 79823 304 0.00 2019-08-05 00:22:19 2019-08-05 00:22:19 f 1 2 79832 304 0.00 2019-08-05 00:09:23 2019-08-05 00:24:29 t 1 2 79834 243 0.00 2019-08-05 00:15:14 2019-08-05 00:25:20 t 1 2 79838 318 0.00 2019-08-04 23:08:54 2019-08-05 00:29:00 t 1 2 81261 247 0.00 2019-08-08 16:45:34 2019-08-08 16:45:51 t 1 2 79840 324 0.00 2019-08-05 00:29:09 2019-08-05 00:35:21 t 1 2 79843 230 0.00 2019-08-04 22:52:21 2019-08-05 01:17:26 t 1 2 79848 217 0.00 2019-08-05 01:32:25 2019-08-05 01:42:30 t 1 2 79850 320 0.00 2019-08-04 23:21:42 2019-08-05 02:31:47 t 1 2 79854 288 0.00 2019-08-05 04:31:57 2019-08-05 04:33:01 t 1 2 79856 288 0.00 2019-08-05 04:34:55 2019-08-05 04:35:59 t 1 2 79857 288 0.00 2019-08-05 04:45:20 2019-08-05 04:46:23 t 1 2 79859 288 0.00 2019-08-05 04:50:42 2019-08-05 04:51:45 t 1 2 79866 294 0.00 2019-08-05 04:10:28 2019-08-05 05:10:52 t 1 2 79878 288 0.00 2019-08-05 06:24:09 2019-08-05 06:25:13 t 1 2 79883 288 0.00 2019-08-05 07:39:05 2019-08-05 07:40:08 t 1 2 79884 320 0.00 2019-08-05 07:34:29 2019-08-05 07:49:34 t 1 2 79885 212 0.00 2019-08-05 08:14:55 2019-08-05 08:15:59 t 1 2 79887 247 0.00 2019-08-05 08:31:19 2019-08-05 08:33:23 t 1 2 79895 306 0.00 2019-08-05 08:55:54 2019-08-05 08:57:00 t 1 2 79902 337 0.00 2019-08-05 09:15:40 2019-08-05 09:15:56 t 1 2 79903 288 0.00 2019-08-05 09:22:59 2019-08-05 09:24:03 t 1 2 79904 220 0.00 2019-08-05 09:11:18 2019-08-05 09:27:32 t 1 1 79906 220 0.00 2019-08-05 09:28:07 2019-08-05 09:28:15 t 1 1 79911 220 0.00 2019-08-05 09:37:42 2019-08-05 09:42:07 t 1 1 79915 304 0.00 2019-08-05 09:43:05 2019-08-05 09:58:10 t 1 2 79917 304 0.00 2019-08-05 09:50:57 2019-08-05 10:11:03 t 1 2 79921 217 0.00 2019-08-05 10:08:49 2019-08-05 10:18:54 t 1 2 79923 217 0.00 2019-08-05 10:19:11 2019-08-05 10:21:17 t 1 2 79925 217 0.00 2019-08-05 10:15:46 2019-08-05 10:25:51 t 1 2 79934 304 0.00 2019-08-05 10:33:26 2019-08-05 10:43:31 t 1 2 79935 302 0.00 2019-08-05 10:14:22 2019-08-05 10:49:27 t 1 2 79937 286 0.00 2019-08-05 10:47:45 2019-08-05 10:57:50 t 1 2 79939 304 0.00 2019-08-05 10:48:22 2019-08-05 11:03:27 t 1 2 79941 304 0.00 2019-08-05 10:57:33 2019-08-05 11:07:38 t 1 2 79947 320 0.00 2019-08-05 11:25:03 2019-08-05 11:40:09 t 1 2 79951 335 0.00 2019-08-05 10:43:32 2019-08-05 11:48:37 t 1 2 79960 324 0.00 2019-08-05 12:26:46 2019-08-05 12:27:36 t 1 2 79963 217 0.00 2019-08-05 12:33:32 2019-08-05 12:48:38 t 1 2 79965 304 0.00 2019-08-05 12:53:21 2019-08-05 12:53:25 t 1 2 79967 346 0.00 2019-08-05 12:59:05 2019-08-05 12:59:12 t 1 2 79970 204 0.00 2019-08-05 13:02:55 2019-08-05 13:02:55 f 1 2 79973 304 0.00 2019-08-05 12:54:08 2019-08-05 13:09:13 t 1 2 79974 346 0.00 2019-08-05 12:59:22 2019-08-05 13:19:32 t 1 2 79976 286 0.00 2019-08-05 13:14:44 2019-08-05 13:24:50 t 1 2 79979 212 0.00 2019-08-05 13:40:02 2019-08-05 13:40:23 t 1 2 79980 304 0.00 2019-08-05 13:32:52 2019-08-05 13:42:57 t 1 2 79983 327 0.00 2019-08-05 12:54:05 2019-08-05 13:54:26 t 1 2 79985 236 0.00 2019-08-05 12:04:48 2019-08-05 13:59:53 t 1 2 79989 247 0.00 2019-08-05 14:04:19 2019-08-05 14:19:43 t 1 2 79993 220 0.00 2019-08-05 14:30:36 2019-08-05 14:31:30 t 1 2 79994 218 0.00 2019-08-05 07:34:28 2019-08-05 14:34:34 t 1 2 80006 304 0.00 2019-08-05 14:44:40 2019-08-05 14:59:45 t 1 2 80007 218 0.00 2019-08-05 14:59:42 2019-08-05 15:02:42 t 1 2 80010 217 0.00 2019-08-05 14:04:19 2019-08-05 15:14:28 t 1 2 80013 304 0.00 2019-08-05 15:13:07 2019-08-05 15:23:12 t 1 2 80015 230 0.00 2019-08-05 13:04:27 2019-08-05 15:46:55 t 1 2 80016 212 0.00 2019-08-05 15:47:23 2019-08-05 15:48:31 t 1 2 80018 247 0.00 2019-08-05 15:49:51 2019-08-05 15:50:49 t 1 2 80019 212 0.00 2019-08-05 15:52:15 2019-08-05 15:53:39 t 1 2 80026 220 0.00 2019-08-05 14:56:24 2019-08-05 16:06:29 t 1 2 80030 304 0.00 2019-08-05 15:56:02 2019-08-05 16:16:07 t 1 2 79814 304 0.00 2019-08-05 00:20:45 2019-08-05 00:20:45 f 1 2 79816 304 0.00 2019-08-05 00:21:05 2019-08-05 00:21:05 f 1 2 79818 304 0.00 2019-08-05 00:21:28 2019-08-05 00:21:28 f 1 2 79825 304 0.00 2019-08-05 00:22:45 2019-08-05 00:22:45 f 1 2 79827 304 0.00 2019-08-05 00:23:11 2019-08-05 00:23:11 f 1 2 79829 304 0.00 2019-08-05 00:23:31 2019-08-05 00:23:31 f 1 2 79830 304 0.00 2019-08-05 00:23:43 2019-08-05 00:23:43 f 1 2 79835 304 0.00 2019-08-05 00:16:17 2019-08-05 00:26:22 t 1 2 79837 243 0.00 2019-08-05 00:25:36 2019-08-05 00:28:03 t 1 2 79845 217 0.00 2019-08-05 01:13:13 2019-08-05 01:28:18 t 1 2 79846 337 0.00 2019-08-04 17:53:18 2019-08-05 01:33:24 t 1 2 79847 217 0.00 2019-08-05 01:22:46 2019-08-05 01:37:52 t 1 2 79852 217 0.00 2019-08-05 01:41:19 2019-08-05 03:24:49 t 1 2 79858 236 0.00 2019-08-05 00:08:46 2019-08-05 04:48:51 t 1 2 79861 288 0.00 2019-08-05 04:54:59 2019-08-05 04:56:05 t 1 2 79863 288 0.00 2019-08-05 04:58:31 2019-08-05 04:59:37 t 1 2 79864 288 0.00 2019-08-05 05:01:49 2019-08-05 05:02:55 t 1 2 79867 288 0.00 2019-08-05 05:10:18 2019-08-05 05:11:26 t 1 2 79874 324 0.00 2019-08-05 05:08:13 2019-08-05 05:39:10 t 1 2 79879 288 0.00 2019-08-05 06:32:11 2019-08-05 06:33:15 t 1 2 81255 346 0.00 2019-08-08 16:38:47 2019-08-08 16:42:48 t 1 2 79881 288 0.00 2019-08-05 07:28:49 2019-08-05 07:29:51 t 1 2 79891 306 0.00 2019-08-05 08:42:42 2019-08-05 08:43:44 t 1 2 79896 320 0.00 2019-08-05 08:47:29 2019-08-05 08:57:34 t 1 2 79897 286 0.00 2019-08-05 08:48:45 2019-08-05 08:58:50 t 1 2 79899 304 0.00 2019-08-05 08:53:41 2019-08-05 09:03:46 t 1 2 79900 212 0.00 2019-08-05 09:06:58 2019-08-05 09:07:58 t 1 2 79907 220 0.00 2019-08-05 09:27:42 2019-08-05 09:29:42 t 1 1 79908 220 0.00 2019-08-05 09:28:22 2019-08-05 09:36:40 t 1 1 79909 324 0.00 2019-08-05 08:43:00 2019-08-05 09:40:29 t 1 2 79912 306 0.00 2019-08-05 09:41:05 2019-08-05 09:42:07 t 1 2 79920 304 0.00 2019-08-05 10:08:11 2019-08-05 10:18:16 t 1 2 79926 212 0.00 2019-08-05 10:26:23 2019-08-05 10:26:58 t 1 2 79928 217 0.00 2019-08-05 10:21:19 2019-08-05 10:36:24 t 1 2 79929 304 0.00 2019-08-05 10:37:43 2019-08-05 10:37:54 t 1 2 79930 304 0.00 2019-08-05 10:38:26 2019-08-05 10:38:39 t 1 2 79931 220 0.00 2019-08-05 10:22:17 2019-08-05 10:40:51 t 1 1 79944 217 0.00 2019-08-05 11:20:39 2019-08-05 11:21:44 t 1 2 79948 304 0.00 2019-08-05 11:28:43 2019-08-05 11:43:48 t 1 2 79949 243 0.00 2019-08-05 11:41:49 2019-08-05 11:47:07 t 1 2 79952 304 0.00 2019-08-05 11:37:23 2019-08-05 11:57:28 t 1 2 79955 304 0.00 2019-08-05 11:53:02 2019-08-05 12:13:08 t 1 2 79964 288 0.00 2019-08-05 12:47:35 2019-08-05 12:48:39 t 1 2 79969 294 0.00 2019-08-05 12:31:50 2019-08-05 13:02:13 t 1 2 79972 204 0.00 2019-08-05 13:08:05 2019-08-05 13:08:05 f 1 2 79982 320 0.00 2019-08-05 13:37:47 2019-08-05 13:52:52 t 1 2 79991 304 0.00 2019-08-05 14:03:56 2019-08-05 14:24:02 t 1 2 79992 247 0.00 2019-08-05 14:26:03 2019-08-05 14:27:54 t 1 2 79995 209 0.00 2019-08-05 14:41:07 2019-08-05 14:41:07 f 1 2 79997 209 0.00 2019-08-05 14:41:34 2019-08-05 14:41:34 f 1 2 80000 218 0.00 2019-08-05 14:37:43 2019-08-05 14:47:48 t 1 2 80001 220 0.00 2019-08-05 14:31:33 2019-08-05 14:51:38 t 1 2 80004 296 0.00 2019-08-05 14:44:14 2019-08-05 14:54:34 t 1 2 81263 306 0.00 2019-08-08 16:45:13 2019-08-08 16:46:19 t 1 2 80008 217 0.00 2019-08-05 13:11:09 2019-08-05 15:06:14 t 1 2 80014 212 0.00 2019-08-05 15:32:30 2019-08-05 15:34:58 t 1 2 80020 306 0.00 2019-08-05 15:55:37 2019-08-05 15:56:42 t 1 2 80022 320 0.00 2019-08-05 15:57:42 2019-08-05 16:00:42 t 1 2 80024 320 0.00 2019-08-05 14:14:02 2019-08-05 16:04:08 t 1 2 80027 288 0.00 2019-08-05 16:07:51 2019-08-05 16:08:55 t 1 2 80034 306 0.00 2019-08-05 16:44:28 2019-08-05 16:45:32 t 1 2 80036 218 0.00 2019-08-05 16:41:54 2019-08-05 16:56:59 t 1 2 80039 288 0.00 2019-08-05 17:22:49 2019-08-05 17:23:52 t 1 2 80046 218 0.00 2019-08-05 17:41:42 2019-08-05 17:51:47 t 1 2 80051 320 0.00 2019-08-05 17:57:31 2019-08-05 18:07:36 t 1 2 80057 220 0.00 2019-08-05 17:02:32 2019-08-05 18:32:38 t 1 2 80060 230 0.00 2019-08-05 18:20:31 2019-08-05 18:37:25 t 1 2 80063 218 0.00 2019-08-05 18:30:44 2019-08-05 18:40:49 t 1 2 80066 234 0.00 2019-08-05 16:30:37 2019-08-05 18:50:20 t 1 2 80067 217 0.00 2019-08-05 18:50:48 2019-08-05 18:51:52 t 1 2 80069 306 0.00 2019-08-05 18:54:44 2019-08-05 18:55:52 t 1 2 80071 304 0.00 2019-08-05 18:54:38 2019-08-05 19:04:43 t 1 2 80076 218 0.00 2019-08-05 18:43:29 2019-08-05 19:18:34 t 1 2 80077 217 0.00 2019-08-05 18:56:28 2019-08-05 19:19:58 t 1 2 80078 220 0.00 2019-08-05 18:25:27 2019-08-05 19:25:32 t 1 2 80079 304 0.00 2019-08-05 19:12:24 2019-08-05 19:27:29 t 1 2 80080 304 0.00 2019-08-05 19:32:45 2019-08-05 19:32:49 t 1 2 80081 304 0.00 2019-08-05 19:23:13 2019-08-05 19:38:18 t 1 2 80084 304 0.00 2019-08-05 19:33:06 2019-08-05 19:43:11 t 1 2 80087 243 0.00 2019-08-05 19:51:34 2019-08-05 19:53:58 t 1 2 80089 302 0.00 2019-08-05 19:44:49 2019-08-05 19:59:54 t 1 2 80093 286 0.00 2019-08-05 20:03:16 2019-08-05 20:13:21 t 1 2 80095 247 0.00 2019-08-05 20:11:02 2019-08-05 20:14:13 t 1 2 80098 347 0.00 2019-08-05 20:23:58 2019-08-05 20:24:34 t 1 2 80102 243 0.00 2019-08-05 20:34:06 2019-08-05 20:39:06 t 1 2 80108 347 0.00 2019-08-05 20:46:01 2019-08-05 20:47:08 t 1 2 80110 335 0.00 2019-08-05 20:40:12 2019-08-05 20:50:17 t 1 2 80112 347 0.00 2019-08-05 20:58:41 2019-08-05 20:59:45 t 1 2 80113 335 0.00 2019-08-05 20:45:31 2019-08-05 21:00:36 t 1 2 80115 286 0.00 2019-08-05 20:47:29 2019-08-05 21:02:34 t 1 2 80125 347 0.00 2019-08-05 21:47:18 2019-08-05 21:48:21 t 1 2 80127 212 0.00 2019-08-05 21:49:39 2019-08-05 21:51:56 t 1 2 80128 212 0.00 2019-08-05 21:54:47 2019-08-05 21:54:57 t 1 2 80141 212 0.00 2019-08-05 22:31:36 2019-08-05 22:51:41 t 1 2 80146 288 0.00 2019-08-05 23:02:36 2019-08-05 23:03:44 t 1 2 80151 212 0.00 2019-08-05 23:33:44 2019-08-05 23:34:13 t 1 2 80157 306 0.00 2019-08-05 23:45:17 2019-08-05 23:46:22 t 1 2 80161 324 0.00 2019-08-05 23:44:47 2019-08-05 23:54:52 t 1 2 80162 212 0.00 2019-08-05 23:58:44 2019-08-05 23:59:48 t 1 2 80163 286 0.00 2019-08-05 23:48:46 2019-08-06 00:03:51 t 1 2 80164 217 0.00 2019-08-06 00:06:00 2019-08-06 00:06:00 f 1 2 80165 217 0.00 2019-08-06 00:07:20 2019-08-06 00:07:20 f 1 2 80175 234 0.00 2019-08-05 22:34:16 2019-08-06 01:34:21 t 1 2 80179 234 0.00 2019-08-06 01:29:27 2019-08-06 01:59:33 t 1 2 80183 324 0.00 2019-08-06 03:51:41 2019-08-06 04:06:47 t 1 2 80185 234 0.00 2019-08-06 06:40:07 2019-08-06 06:55:12 t 1 2 80189 218 0.00 2019-08-06 07:04:30 2019-08-06 07:04:30 f 1 2 79860 288 0.00 2019-08-05 04:52:59 2019-08-05 04:54:02 t 1 2 79862 288 0.00 2019-08-05 04:56:42 2019-08-05 04:57:45 t 1 2 79865 288 0.00 2019-08-05 05:06:50 2019-08-05 05:07:58 t 1 2 79872 288 0.00 2019-08-05 05:23:47 2019-08-05 05:24:50 t 1 2 79876 218 0.00 2019-08-05 05:54:10 2019-08-05 06:04:15 t 1 2 79877 288 0.00 2019-08-05 06:07:28 2019-08-05 06:08:33 t 1 2 79882 218 0.00 2019-08-05 07:14:57 2019-08-05 07:33:55 t 1 2 79886 288 0.00 2019-08-05 08:20:45 2019-08-05 08:21:51 t 1 2 79889 320 0.00 2019-08-05 08:29:50 2019-08-05 08:39:55 t 1 2 79890 314 0.00 2019-08-05 08:41:18 2019-08-05 08:42:24 t 1 2 79893 306 0.00 2019-08-05 08:53:27 2019-08-05 08:54:29 t 1 2 79894 304 0.00 2019-08-05 08:56:42 2019-08-05 08:56:42 f 1 2 79898 304 0.00 2019-08-05 08:50:16 2019-08-05 09:00:21 t 1 2 79901 220 0.00 2019-08-05 09:11:11 2019-08-05 09:12:12 t 1 1 79910 320 0.00 2019-08-05 09:33:41 2019-08-05 09:40:42 t 1 2 79913 306 0.00 2019-08-05 09:42:34 2019-08-05 09:43:37 t 1 2 79916 217 0.00 2019-08-05 09:47:49 2019-08-05 10:02:54 t 1 2 79918 217 0.00 2019-08-05 10:12:16 2019-08-05 10:12:27 t 1 2 79924 217 0.00 2019-08-05 10:12:33 2019-08-05 10:22:39 t 1 2 79927 247 0.00 2019-08-05 10:34:08 2019-08-05 10:34:55 t 1 2 79933 220 0.00 2019-08-05 10:40:51 2019-08-05 10:43:20 t 1 1 79936 304 0.00 2019-08-05 10:38:59 2019-08-05 10:54:04 t 1 2 79940 288 0.00 2019-08-05 11:06:34 2019-08-05 11:07:37 t 1 2 79942 212 0.00 2019-08-05 11:10:05 2019-08-05 11:10:44 t 1 2 79945 304 0.00 2019-08-05 11:09:16 2019-08-05 11:29:21 t 1 2 79950 320 0.00 2019-08-05 11:37:37 2019-08-05 11:47:43 t 1 2 79953 327 0.00 2019-08-05 11:05:02 2019-08-05 12:05:26 t 1 2 79954 346 0.00 2019-08-05 12:09:51 2019-08-05 12:10:55 t 1 2 79958 306 0.00 2019-08-05 12:21:51 2019-08-05 12:22:55 t 1 2 79959 217 0.00 2019-08-05 12:12:06 2019-08-05 12:27:11 t 1 2 79968 247 0.00 2019-08-05 13:00:33 2019-08-05 13:01:13 t 1 2 79971 204 0.00 2019-08-05 13:07:57 2019-08-05 13:07:57 f 1 2 79977 304 0.00 2019-08-05 13:19:49 2019-08-05 13:29:54 t 1 2 79990 212 0.00 2019-08-05 14:22:38 2019-08-05 14:23:12 t 1 2 79996 209 0.00 2019-08-05 14:41:17 2019-08-05 14:41:17 f 1 2 79999 327 0.00 2019-08-05 14:29:07 2019-08-05 14:47:31 t 1 2 80025 288 0.00 2019-08-05 16:04:42 2019-08-05 16:05:46 t 1 2 80032 304 0.00 2019-08-05 16:16:14 2019-08-05 16:26:19 t 1 2 80035 304 0.00 2019-08-05 16:35:53 2019-08-05 16:45:58 t 1 2 80044 320 0.00 2019-08-05 17:26:17 2019-08-05 17:36:22 t 1 2 80045 288 0.00 2019-08-05 17:37:48 2019-08-05 17:38:54 t 1 2 80047 243 0.00 2019-08-05 17:50:38 2019-08-05 17:52:47 t 1 2 80050 217 0.00 2019-08-05 14:50:40 2019-08-05 17:58:22 t 1 2 80061 306 0.00 2019-08-05 18:37:04 2019-08-05 18:38:07 t 1 2 80062 335 0.00 2019-08-05 18:20:26 2019-08-05 18:40:31 t 1 2 80064 302 0.00 2019-08-05 18:26:49 2019-08-05 18:46:54 t 1 2 80075 302 0.00 2019-08-05 19:02:11 2019-08-05 19:17:17 t 1 2 80096 304 0.00 2019-08-05 20:11:22 2019-08-05 20:21:27 t 1 2 80097 347 0.00 2019-08-05 20:23:30 2019-08-05 20:23:35 t 1 2 80104 217 0.00 2019-08-05 20:28:56 2019-08-05 20:40:34 t 1 2 80119 320 0.00 2019-08-05 21:02:21 2019-08-05 21:12:26 t 1 2 80122 347 0.00 2019-08-05 21:27:52 2019-08-05 21:28:56 t 1 2 80124 347 0.00 2019-08-05 21:31:24 2019-08-05 21:32:30 t 1 2 80126 347 0.00 2019-08-05 21:48:58 2019-08-05 21:50:03 t 1 2 80129 324 0.00 2019-08-05 21:51:41 2019-08-05 22:01:47 t 1 2 80130 320 0.00 2019-08-05 21:40:21 2019-08-05 22:05:26 t 1 2 80139 347 0.00 2019-08-05 22:18:53 2019-08-05 22:28:58 t 1 2 80144 212 0.00 2019-08-05 22:55:51 2019-08-05 22:57:23 t 1 2 80145 212 0.00 2019-08-05 22:49:17 2019-08-05 22:59:22 t 1 2 80150 243 0.00 2019-08-05 23:09:03 2019-08-05 23:17:44 t 1 2 80154 217 0.00 2019-08-05 23:41:28 2019-08-05 23:41:28 f 1 2 80155 286 0.00 2019-08-05 23:30:00 2019-08-05 23:45:05 t 1 2 80156 243 0.00 2019-08-05 23:42:38 2019-08-05 23:45:24 t 1 2 80170 308 0.00 2019-08-05 10:55:49 2019-08-06 00:30:55 t 1 2 80173 212 0.00 2019-08-06 01:00:19 2019-08-06 01:00:43 t 1 2 80176 331 0.00 2019-08-06 01:43:04 2019-08-06 01:44:06 t 1 2 80180 217 0.00 2019-08-06 02:08:51 2019-08-06 02:08:51 f 1 2 80181 294 0.00 2019-08-06 00:51:39 2019-08-06 02:40:57 t 1 2 80182 324 0.00 2019-08-06 02:36:25 2019-08-06 03:41:16 t 1 2 80184 302 0.00 2019-08-06 02:49:12 2019-08-06 06:54:17 t 1 2 80192 217 0.00 2019-08-06 07:15:23 2019-08-06 07:15:23 f 1 2 80202 288 0.00 2019-08-06 08:10:06 2019-08-06 08:11:12 t 1 2 80206 320 0.00 2019-08-06 07:44:14 2019-08-06 08:24:19 t 1 2 80213 217 0.00 2019-08-06 08:49:32 2019-08-06 08:49:32 f 1 2 80218 247 0.00 2019-08-06 09:13:41 2019-08-06 09:15:37 t 1 2 80224 304 0.00 2019-08-06 09:35:37 2019-08-06 09:50:43 t 1 2 80227 339 0.00 2019-08-06 10:00:17 2019-08-06 10:00:53 t 1 2 80231 218 0.00 2019-08-06 10:13:07 2019-08-06 10:13:07 f 1 2 80233 304 0.00 2019-08-06 10:24:02 2019-08-06 10:24:08 t 1 2 80247 220 0.00 2019-08-06 10:58:34 2019-08-06 11:15:45 t 1 1 80248 220 0.00 2019-08-06 11:16:05 2019-08-06 11:16:21 t 1 1 80252 304 0.00 2019-08-06 11:24:15 2019-08-06 11:24:15 f 1 2 80261 304 0.00 2019-08-06 11:26:57 2019-08-06 11:26:57 f 1 2 80264 304 0.00 2019-08-06 11:12:30 2019-08-06 11:27:35 t 1 2 80267 304 0.00 2019-08-06 11:21:48 2019-08-06 11:31:53 t 1 2 80271 320 0.00 2019-08-06 11:28:30 2019-08-06 11:38:35 t 1 2 80290 243 0.00 2019-08-06 12:15:53 2019-08-06 12:33:39 t 1 2 80292 220 0.00 2019-08-06 12:37:31 2019-08-06 12:38:10 t 1 1 80293 220 0.00 2019-08-06 12:38:10 2019-08-06 12:38:45 t 1 1 80295 220 0.00 2019-08-06 12:39:23 2019-08-06 12:39:58 t 1 1 80297 220 0.00 2019-08-06 12:40:35 2019-08-06 12:41:10 t 1 1 80299 220 0.00 2019-08-06 12:41:08 2019-08-06 12:41:48 t 1 1 80305 220 0.00 2019-08-06 12:44:42 2019-08-06 12:45:21 t 1 1 80314 269 0.00 2019-08-06 12:37:47 2019-08-06 13:06:10 t 1 2 80317 318 0.00 2019-08-06 13:00:58 2019-08-06 13:21:03 t 1 2 80321 212 0.00 2019-08-06 13:28:09 2019-08-06 13:28:52 t 1 2 80322 318 0.00 2019-08-06 13:19:14 2019-08-06 13:29:19 t 1 2 80324 296 0.00 2019-08-06 13:32:35 2019-08-06 13:36:59 t 1 2 80327 304 0.00 2019-08-06 13:40:39 2019-08-06 13:50:44 t 1 2 80329 320 0.00 2019-08-06 13:43:29 2019-08-06 13:53:34 t 1 2 81256 306 0.00 2019-08-08 16:43:30 2019-08-08 16:44:34 t 1 2 80338 306 0.00 2019-08-06 14:13:35 2019-08-06 14:14:38 t 1 2 80343 217 0.00 2019-08-06 14:20:51 2019-08-06 14:20:51 f 1 2 80347 217 0.00 2019-08-06 14:26:29 2019-08-06 14:26:29 f 1 2 80350 304 0.00 2019-08-06 14:22:03 2019-08-06 14:32:08 t 1 2 80354 306 0.00 2019-08-06 14:44:22 2019-08-06 14:45:25 t 1 2 80357 220 0.00 2019-08-06 14:52:05 2019-08-06 15:01:06 t 1 1 79932 306 0.00 2019-08-05 10:41:34 2019-08-05 10:42:38 t 1 2 79938 217 0.00 2019-08-05 10:32:24 2019-08-05 11:02:29 t 1 2 79943 217 0.00 2019-08-05 11:18:32 2019-08-05 11:19:37 t 1 2 79946 337 0.00 2019-08-05 09:16:22 2019-08-05 11:31:27 t 1 2 79956 304 0.00 2019-08-05 12:05:45 2019-08-05 12:15:51 t 1 2 79957 212 0.00 2019-08-05 12:22:09 2019-08-05 12:22:48 t 1 2 79961 304 0.00 2019-08-05 12:23:52 2019-08-05 12:33:57 t 1 2 79962 217 0.00 2019-08-05 12:20:54 2019-08-05 12:40:59 t 1 2 79966 304 0.00 2019-08-05 12:53:40 2019-08-05 12:53:53 t 1 2 79975 346 0.00 2019-08-05 12:10:43 2019-08-05 13:20:56 t 1 2 79978 234 0.00 2019-08-05 13:14:45 2019-08-05 13:33:49 t 1 2 79981 306 0.00 2019-08-05 13:44:09 2019-08-05 13:45:17 t 1 2 79984 304 0.00 2019-08-05 13:44:49 2019-08-05 13:54:54 t 1 2 79986 304 0.00 2019-08-05 14:00:17 2019-08-05 14:10:22 t 1 2 79987 272 0.00 2019-08-05 14:03:27 2019-08-05 14:13:33 t 1 2 79988 335 0.00 2019-08-05 12:36:05 2019-08-05 14:16:10 t 1 2 79998 217 0.00 2019-08-05 12:51:12 2019-08-05 14:46:43 t 1 2 80002 212 0.00 2019-08-05 14:52:22 2019-08-05 14:52:44 t 1 2 80003 212 0.00 2019-08-05 14:52:46 2019-08-05 14:53:20 t 1 2 80009 335 0.00 2019-08-05 14:42:53 2019-08-05 15:12:58 t 1 2 80011 217 0.00 2019-08-05 15:17:37 2019-08-05 15:18:34 t 1 2 80012 209 0.00 2019-08-05 15:22:37 2019-08-05 15:22:37 f 1 2 81257 220 0.00 2019-08-08 16:44:30 2019-08-08 16:44:41 t 1 1 80021 218 0.00 2019-08-05 15:48:56 2019-08-05 15:59:02 t 1 2 80023 304 0.00 2019-08-05 15:47:31 2019-08-05 16:02:36 t 1 2 80028 220 0.00 2019-08-05 15:54:43 2019-08-05 16:09:14 t 1 2 80029 217 0.00 2019-08-05 15:18:41 2019-08-05 16:12:10 t 1 2 80031 304 0.00 2019-08-05 16:08:28 2019-08-05 16:23:33 t 1 2 80037 294 0.00 2019-08-05 16:03:35 2019-08-05 17:03:59 t 1 2 80038 320 0.00 2019-08-05 17:11:52 2019-08-05 17:21:57 t 1 2 80041 346 0.00 2019-08-05 13:50:54 2019-08-05 17:30:59 t 1 2 80043 304 0.00 2019-08-05 17:22:49 2019-08-05 17:32:54 t 1 2 80049 217 0.00 2019-08-05 17:41:32 2019-08-05 17:56:37 t 1 2 80052 304 0.00 2019-08-05 18:08:36 2019-08-05 18:08:40 t 1 2 80053 296 0.00 2019-08-05 18:06:48 2019-08-05 18:13:11 t 1 2 80056 212 0.00 2019-08-05 18:25:42 2019-08-05 18:26:23 t 1 2 80058 314 0.00 2019-08-05 13:57:50 2019-08-05 18:32:56 t 1 2 80059 318 0.00 2019-08-05 14:23:13 2019-08-05 18:34:24 t 1 2 80073 286 0.00 2019-08-05 18:59:33 2019-08-05 19:09:39 t 1 2 80074 286 0.00 2019-08-05 19:07:02 2019-08-05 19:17:07 t 1 2 80083 320 0.00 2019-08-05 19:00:45 2019-08-05 19:40:50 t 1 2 80085 243 0.00 2019-08-05 19:44:50 2019-08-05 19:45:01 t 1 2 80088 220 0.00 2019-08-05 19:30:31 2019-08-05 19:55:25 t 1 2 80091 251 0.00 2019-08-05 19:27:08 2019-08-05 20:07:13 t 1 2 80092 320 0.00 2019-08-05 20:05:53 2019-08-05 20:08:48 t 1 2 80099 347 0.00 2019-08-05 20:24:48 2019-08-05 20:24:55 t 1 2 80100 292 0.00 2019-08-05 20:30:30 2019-08-05 20:31:33 t 1 2 80103 335 0.00 2019-08-05 20:19:20 2019-08-05 20:39:25 t 1 2 80105 272 0.00 2019-08-05 20:01:53 2019-08-05 20:42:04 t 1 2 80106 320 0.00 2019-08-05 20:15:25 2019-08-05 20:45:31 t 1 2 80111 347 0.00 2019-08-05 20:56:41 2019-08-05 20:57:46 t 1 2 80117 347 0.00 2019-08-05 21:05:00 2019-08-05 21:06:07 t 1 2 80120 247 0.00 2019-08-05 21:25:06 2019-08-05 21:26:07 t 1 2 80131 217 0.00 2019-08-05 21:01:50 2019-08-05 22:06:44 t 1 2 80132 346 0.00 2019-08-05 22:09:53 2019-08-05 22:09:57 t 1 2 80133 204 0.00 2019-08-05 22:13:05 2019-08-05 22:13:05 f 1 2 80134 324 0.00 2019-08-05 22:11:57 2019-08-05 22:15:18 t 1 2 80136 335 0.00 2019-08-05 22:02:56 2019-08-05 22:18:01 t 1 2 80138 347 0.00 2019-08-05 22:21:39 2019-08-05 22:22:46 t 1 2 80140 217 0.00 2019-08-05 21:57:58 2019-08-05 22:31:42 t 1 2 80143 218 0.00 2019-08-05 20:46:40 2019-08-05 22:56:45 t 1 2 80147 212 0.00 2019-08-05 23:04:34 2019-08-05 23:04:58 t 1 2 80148 243 0.00 2019-08-05 22:50:59 2019-08-05 23:08:11 t 1 2 80149 217 0.00 2019-08-05 21:23:43 2019-08-05 23:17:44 t 1 2 80152 243 0.00 2019-08-05 23:31:52 2019-08-05 23:38:14 t 1 2 81258 220 0.00 2019-08-08 16:44:50 2019-08-08 16:44:59 t 1 1 80159 296 0.00 2019-08-05 23:48:12 2019-08-05 23:51:35 t 1 2 80172 324 0.00 2019-08-06 00:56:19 2019-08-06 00:56:53 t 1 2 80174 339 0.00 2019-08-06 00:06:03 2019-08-06 01:06:08 t 1 2 80186 218 0.00 2019-08-06 06:58:47 2019-08-06 06:58:47 f 1 2 80191 269 0.00 2019-08-06 06:50:03 2019-08-06 07:06:26 t 1 2 80193 217 0.00 2019-08-06 07:15:38 2019-08-06 07:15:38 f 1 2 80197 294 0.00 2019-08-06 07:18:51 2019-08-06 07:33:55 t 1 2 80203 217 0.00 2019-08-06 08:12:03 2019-08-06 08:12:03 f 1 2 80205 347 0.00 2019-08-06 08:14:03 2019-08-06 08:15:09 t 1 2 80207 347 0.00 2019-08-06 08:36:18 2019-08-06 08:37:26 t 1 2 80211 306 0.00 2019-08-06 08:40:06 2019-08-06 08:41:11 t 1 2 80222 331 0.00 2019-08-06 09:26:06 2019-08-06 09:27:11 t 1 2 80234 304 0.00 2019-08-06 10:24:26 2019-08-06 10:24:39 t 1 2 80242 247 0.00 2019-08-06 10:43:53 2019-08-06 10:44:52 t 1 2 80244 324 0.00 2019-08-06 10:52:11 2019-08-06 11:02:16 t 1 2 80255 304 0.00 2019-08-06 11:24:56 2019-08-06 11:24:56 f 1 2 80257 220 0.00 2019-08-06 11:23:56 2019-08-06 11:25:48 t 1 1 80259 304 0.00 2019-08-06 11:26:12 2019-08-06 11:26:12 f 1 2 80263 304 0.00 2019-08-06 11:27:18 2019-08-06 11:27:18 f 1 2 80265 212 0.00 2019-08-06 11:28:59 2019-08-06 11:29:27 t 1 2 80270 304 0.00 2019-08-06 11:27:39 2019-08-06 11:37:44 t 1 2 80273 217 0.00 2019-08-06 11:39:57 2019-08-06 11:39:57 f 1 2 80276 324 0.00 2019-08-06 11:53:44 2019-08-06 11:54:49 t 1 2 80277 324 0.00 2019-08-06 11:55:00 2019-08-06 11:55:08 t 1 2 80278 324 0.00 2019-08-06 11:55:12 2019-08-06 11:55:15 t 1 2 80285 269 0.00 2019-08-06 11:57:50 2019-08-06 12:08:13 t 1 2 80288 304 0.00 2019-08-06 12:09:43 2019-08-06 12:19:48 t 1 2 80302 220 0.00 2019-08-06 12:42:56 2019-08-06 12:43:32 t 1 1 80307 349 0.00 2019-08-06 12:44:43 2019-08-06 12:45:48 t 1 2 80311 220 0.00 2019-08-06 12:46:31 2019-08-06 12:47:44 t 1 1 80319 320 0.00 2019-08-06 13:14:45 2019-08-06 13:24:50 t 1 2 80326 327 0.00 2019-08-06 12:47:33 2019-08-06 13:47:38 t 1 2 80328 324 0.00 2019-08-06 13:28:55 2019-08-06 13:52:58 t 1 2 80330 304 0.00 2019-08-06 14:01:52 2019-08-06 14:01:59 t 1 2 80331 304 0.00 2019-08-06 14:02:20 2019-08-06 14:02:29 t 1 2 80340 304 0.00 2019-08-06 14:02:44 2019-08-06 14:17:49 t 1 2 80341 217 0.00 2019-08-06 14:19:38 2019-08-06 14:19:38 f 1 2 80348 217 0.00 2019-08-06 14:26:44 2019-08-06 14:26:44 f 1 2 80359 335 0.00 2019-08-06 14:33:26 2019-08-06 15:13:31 t 1 2 80361 217 0.00 2019-08-06 15:20:32 2019-08-06 15:20:32 f 1 2 80364 304 0.00 2019-08-06 15:19:07 2019-08-06 15:29:12 t 1 2 80033 234 0.00 2019-08-05 16:30:09 2019-08-05 16:30:09 f 1 2 80040 304 0.00 2019-08-05 17:16:05 2019-08-05 17:26:11 t 1 2 80042 324 0.00 2019-08-05 17:22:21 2019-08-05 17:32:27 t 1 2 80048 320 0.00 2019-08-05 17:45:33 2019-08-05 17:55:38 t 1 2 80054 304 0.00 2019-08-05 18:02:20 2019-08-05 18:17:25 t 1 2 80055 288 0.00 2019-08-05 18:23:43 2019-08-05 18:24:48 t 1 2 80065 320 0.00 2019-08-05 18:09:39 2019-08-05 18:49:44 t 1 2 80068 304 0.00 2019-08-05 18:54:21 2019-08-05 18:54:26 t 1 2 80070 217 0.00 2019-08-05 18:44:34 2019-08-05 18:59:39 t 1 2 80072 304 0.00 2019-08-05 18:58:41 2019-08-05 19:08:46 t 1 2 80082 212 0.00 2019-08-05 19:39:06 2019-08-05 19:40:09 t 1 2 80086 243 0.00 2019-08-05 19:47:07 2019-08-05 19:50:25 t 1 2 80090 286 0.00 2019-08-05 19:55:06 2019-08-05 20:05:11 t 1 2 80094 218 0.00 2019-08-05 19:43:54 2019-08-05 20:13:59 t 1 2 80101 306 0.00 2019-08-05 20:32:05 2019-08-05 20:33:10 t 1 2 80107 320 0.00 2019-08-05 20:36:41 2019-08-05 20:46:46 t 1 2 80109 347 0.00 2019-08-05 20:48:59 2019-08-05 20:50:04 t 1 2 80114 347 0.00 2019-08-05 21:00:35 2019-08-05 21:01:43 t 1 2 80116 347 0.00 2019-08-05 21:02:38 2019-08-05 21:03:45 t 1 2 80118 217 0.00 2019-08-05 20:42:58 2019-08-05 21:07:35 t 1 2 80121 347 0.00 2019-08-05 21:26:06 2019-08-05 21:27:09 t 1 2 80123 304 0.00 2019-08-05 21:19:09 2019-08-05 21:29:14 t 1 2 80135 324 0.00 2019-08-05 22:15:48 2019-08-05 22:17:26 t 1 2 80137 327 0.00 2019-08-05 21:19:00 2019-08-05 22:19:24 t 1 2 80142 304 0.00 2019-08-05 22:46:13 2019-08-05 22:56:18 t 1 2 80153 217 0.00 2019-08-05 23:38:48 2019-08-05 23:38:48 f 1 2 80160 247 0.00 2019-08-05 23:46:24 2019-08-05 23:52:16 t 1 2 80166 304 0.00 2019-08-05 23:57:28 2019-08-06 00:12:33 t 1 2 80167 335 0.00 2019-08-05 23:49:01 2019-08-06 00:14:06 t 1 2 80168 217 0.00 2019-08-06 00:16:15 2019-08-06 00:16:15 f 1 2 80169 212 0.00 2019-08-06 00:18:17 2019-08-06 00:18:45 t 1 2 80171 320 0.00 2019-08-05 23:40:25 2019-08-06 00:55:31 t 1 2 81260 220 0.00 2019-08-08 16:45:27 2019-08-08 16:45:36 t 1 1 80178 346 0.00 2019-08-06 01:23:43 2019-08-06 01:58:48 t 1 2 80187 218 0.00 2019-08-06 06:59:08 2019-08-06 06:59:08 f 1 2 80188 294 0.00 2019-08-06 06:01:29 2019-08-06 07:01:52 t 1 2 80190 218 0.00 2019-08-06 07:04:56 2019-08-06 07:04:56 f 1 2 80194 217 0.00 2019-08-06 07:15:50 2019-08-06 07:15:50 f 1 2 80196 320 0.00 2019-08-06 07:17:00 2019-08-06 07:27:06 t 1 2 80199 306 0.00 2019-08-06 08:07:54 2019-08-06 08:08:56 t 1 2 80208 320 0.00 2019-08-06 08:18:24 2019-08-06 08:38:29 t 1 2 80209 218 0.00 2019-08-06 08:39:07 2019-08-06 08:39:07 f 1 2 80219 320 0.00 2019-08-06 09:09:52 2019-08-06 09:19:57 t 1 2 80223 272 0.00 2019-08-06 09:13:15 2019-08-06 09:42:39 t 1 2 80225 306 0.00 2019-08-06 09:50:49 2019-08-06 09:51:52 t 1 2 80226 304 0.00 2019-08-06 09:44:16 2019-08-06 09:54:21 t 1 2 80228 288 0.00 2019-08-06 09:59:55 2019-08-06 10:01:01 t 1 2 80230 306 0.00 2019-08-06 10:03:34 2019-08-06 10:04:40 t 1 2 80236 217 0.00 2019-08-06 10:31:30 2019-08-06 10:31:30 f 1 2 80237 234 0.00 2019-08-06 10:26:48 2019-08-06 10:36:53 t 1 2 80239 217 0.00 2019-08-06 10:38:01 2019-08-06 10:38:01 f 1 2 80240 286 0.00 2019-08-06 10:03:22 2019-08-06 10:40:32 t 1 2 80245 304 0.00 2019-08-06 10:49:42 2019-08-06 11:09:47 t 1 2 80246 324 0.00 2019-08-06 11:13:30 2019-08-06 11:13:57 t 1 2 80250 304 0.00 2019-08-06 11:23:41 2019-08-06 11:23:41 f 1 2 80254 304 0.00 2019-08-06 11:24:40 2019-08-06 11:24:40 f 1 2 80258 304 0.00 2019-08-06 11:25:52 2019-08-06 11:25:52 f 1 2 80262 304 0.00 2019-08-06 11:27:08 2019-08-06 11:27:08 f 1 2 81274 288 0.00 2019-08-08 17:28:22 2019-08-08 17:29:28 t 1 2 80268 220 0.00 2019-08-06 11:27:07 2019-08-06 11:32:20 t 1 1 80269 304 0.00 2019-08-06 11:32:44 2019-08-06 11:36:44 t 1 2 80272 217 0.00 2019-08-06 11:39:45 2019-08-06 11:39:45 f 1 2 80274 217 0.00 2019-08-06 11:40:13 2019-08-06 11:40:13 f 1 2 80275 324 0.00 2019-08-06 11:52:18 2019-08-06 11:53:24 t 1 2 80279 243 0.00 2019-08-06 11:51:36 2019-08-06 11:55:43 t 1 2 80280 220 0.00 2019-08-06 11:45:10 2019-08-06 11:56:57 t 1 1 80281 335 0.00 2019-08-06 11:16:52 2019-08-06 11:56:57 t 1 2 80286 234 0.00 2019-08-06 11:56:45 2019-08-06 12:16:50 t 1 2 80287 327 0.00 2019-08-06 12:07:18 2019-08-06 12:18:39 t 1 2 80294 220 0.00 2019-08-06 12:38:45 2019-08-06 12:39:23 t 1 1 80296 220 0.00 2019-08-06 12:39:58 2019-08-06 12:40:35 t 1 1 80298 306 0.00 2019-08-06 12:40:23 2019-08-06 12:41:23 t 1 2 80301 220 0.00 2019-08-06 12:42:19 2019-08-06 12:42:57 t 1 1 80303 220 0.00 2019-08-06 12:43:32 2019-08-06 12:44:08 t 1 1 80304 220 0.00 2019-08-06 12:44:07 2019-08-06 12:44:43 t 1 1 80306 294 0.00 2019-08-06 12:07:02 2019-08-06 12:45:26 t 1 2 80308 220 0.00 2019-08-06 12:45:20 2019-08-06 12:45:54 t 1 1 80309 220 0.00 2019-08-06 12:45:53 2019-08-06 12:46:21 t 1 1 80313 230 0.00 2019-08-06 11:40:43 2019-08-06 12:50:48 t 1 2 80315 320 0.00 2019-08-06 12:57:16 2019-08-06 13:07:21 t 1 2 80316 308 0.00 2019-08-06 13:07:15 2019-08-06 13:09:17 t 1 2 80323 306 0.00 2019-08-06 13:33:18 2019-08-06 13:34:19 t 1 2 80325 349 0.00 2019-08-06 13:40:32 2019-08-06 13:41:38 t 1 2 80333 272 0.00 2019-08-06 13:46:45 2019-08-06 14:06:51 t 1 2 80335 247 0.00 2019-08-06 14:07:26 2019-08-06 14:08:54 t 1 2 80337 306 0.00 2019-08-06 14:12:08 2019-08-06 14:13:13 t 1 2 80342 217 0.00 2019-08-06 14:20:19 2019-08-06 14:20:19 f 1 2 80344 318 0.00 2019-08-06 13:36:57 2019-08-06 14:22:02 t 1 2 80346 220 0.00 2019-08-06 14:17:13 2019-08-06 14:24:35 t 1 1 80349 217 0.00 2019-08-06 14:27:09 2019-08-06 14:27:09 f 1 2 80351 220 0.00 2019-08-06 14:24:35 2019-08-06 14:33:36 t 1 1 80352 220 0.00 2019-08-06 14:33:36 2019-08-06 14:43:33 t 1 1 80356 220 0.00 2019-08-06 14:43:33 2019-08-06 14:52:05 t 1 1 80360 217 0.00 2019-08-06 15:20:20 2019-08-06 15:20:20 f 1 2 80363 217 0.00 2019-08-06 15:22:13 2019-08-06 15:22:13 f 1 2 80365 318 0.00 2019-08-06 14:49:43 2019-08-06 15:29:48 t 1 2 80370 230 0.00 2019-08-06 12:58:19 2019-08-06 15:35:07 t 1 2 80374 306 0.00 2019-08-06 15:43:49 2019-08-06 15:44:56 t 1 2 80375 320 0.00 2019-08-06 15:40:40 2019-08-06 15:50:45 t 1 2 80376 234 0.00 2019-08-06 15:39:54 2019-08-06 15:59:59 t 1 2 80378 212 0.00 2019-08-06 16:13:07 2019-08-06 16:13:53 t 1 2 80380 320 0.00 2019-08-06 16:23:25 2019-08-06 16:33:30 t 1 2 81276 220 0.00 2019-08-08 17:30:03 2019-08-08 17:33:26 t 1 2 80392 304 0.00 2019-08-06 16:55:11 2019-08-06 17:10:16 t 1 2 80395 272 0.00 2019-08-06 16:20:38 2019-08-06 17:15:43 t 1 2 80398 269 0.00 2019-08-06 17:25:56 2019-08-06 17:27:19 t 1 2 80400 269 0.00 2019-08-06 17:31:21 2019-08-06 17:32:44 t 1 2 80195 202 0.00 2019-08-06 07:16:50 2019-08-06 07:17:57 t 1 2 80198 217 0.00 2019-08-06 07:53:12 2019-08-06 07:53:12 f 1 2 80200 331 0.00 2019-08-06 08:08:53 2019-08-06 08:09:57 t 1 2 80201 306 0.00 2019-08-06 08:09:13 2019-08-06 08:10:20 t 1 2 80204 212 0.00 2019-08-06 08:14:31 2019-08-06 08:15:00 t 1 2 80210 347 0.00 2019-08-06 08:39:44 2019-08-06 08:40:49 t 1 2 80212 217 0.00 2019-08-06 08:49:24 2019-08-06 08:49:24 f 1 2 80214 217 0.00 2019-08-06 08:53:35 2019-08-06 08:53:35 f 1 2 80215 212 0.00 2019-08-06 08:55:19 2019-08-06 08:55:40 t 1 2 80216 212 0.00 2019-08-06 09:01:49 2019-08-06 09:02:56 t 1 2 80217 294 0.00 2019-08-06 08:44:10 2019-08-06 09:13:50 t 1 2 80220 306 0.00 2019-08-06 09:18:56 2019-08-06 09:20:01 t 1 2 80221 304 0.00 2019-08-06 09:15:36 2019-08-06 09:25:41 t 1 2 80229 288 0.00 2019-08-06 10:02:24 2019-08-06 10:03:28 t 1 2 80232 234 0.00 2019-08-06 09:40:45 2019-08-06 10:20:50 t 1 2 80235 304 0.00 2019-08-06 10:19:34 2019-08-06 10:29:39 t 1 2 80238 304 0.00 2019-08-06 10:26:59 2019-08-06 10:37:04 t 1 2 80241 306 0.00 2019-08-06 10:44:33 2019-08-06 10:44:41 t 1 2 80243 324 0.00 2019-08-06 10:52:43 2019-08-06 10:54:28 t 1 2 80249 294 0.00 2019-08-06 11:05:30 2019-08-06 11:18:02 t 1 2 80251 304 0.00 2019-08-06 11:23:58 2019-08-06 11:23:58 f 1 2 80253 304 0.00 2019-08-06 11:24:25 2019-08-06 11:24:25 f 1 2 80256 304 0.00 2019-08-06 11:25:39 2019-08-06 11:25:39 f 1 2 80260 304 0.00 2019-08-06 11:26:43 2019-08-06 11:26:43 f 1 2 80282 324 0.00 2019-08-06 11:55:54 2019-08-06 11:57:52 t 1 2 80283 204 0.00 2019-08-06 11:59:24 2019-08-06 11:59:24 f 1 2 80284 324 0.00 2019-08-06 12:03:57 2019-08-06 12:06:23 t 1 2 80289 288 0.00 2019-08-06 12:26:23 2019-08-06 12:27:28 t 1 2 80291 220 0.00 2019-08-06 11:56:57 2019-08-06 12:37:32 t 1 1 80300 220 0.00 2019-08-06 12:41:48 2019-08-06 12:42:20 t 1 1 80310 349 0.00 2019-08-06 12:46:17 2019-08-06 12:47:22 t 1 2 80312 304 0.00 2019-08-06 12:38:50 2019-08-06 12:48:55 t 1 2 80318 234 0.00 2019-08-06 13:04:58 2019-08-06 13:21:40 t 1 2 80320 296 0.00 2019-08-06 12:26:16 2019-08-06 13:26:37 t 1 2 80332 212 0.00 2019-08-06 14:04:46 2019-08-06 14:05:24 t 1 2 80336 220 0.00 2019-08-06 13:16:08 2019-08-06 14:09:37 t 1 2 80339 220 0.00 2019-08-06 13:15:29 2019-08-06 14:17:13 t 1 1 80345 294 0.00 2019-08-06 13:27:21 2019-08-06 14:22:44 t 1 2 80353 296 0.00 2019-08-06 14:38:12 2019-08-06 14:44:36 t 1 2 80355 236 0.00 2019-08-06 14:21:13 2019-08-06 14:46:19 t 1 2 80362 217 0.00 2019-08-06 15:21:02 2019-08-06 15:21:02 f 1 2 80368 217 0.00 2019-08-06 15:34:19 2019-08-06 15:34:19 f 1 2 80372 217 0.00 2019-08-06 15:35:52 2019-08-06 15:35:52 f 1 2 80382 217 0.00 2019-08-06 16:38:57 2019-08-06 16:38:57 f 1 2 80384 217 0.00 2019-08-06 16:39:21 2019-08-06 16:39:21 f 1 2 80385 304 0.00 2019-08-06 16:47:54 2019-08-06 16:47:58 t 1 2 80389 236 0.00 2019-08-06 14:43:13 2019-08-06 16:53:18 t 1 2 80394 306 0.00 2019-08-06 17:12:45 2019-08-06 17:13:50 t 1 2 80396 335 0.00 2019-08-06 15:34:27 2019-08-06 17:19:33 t 1 2 80404 320 0.00 2019-08-06 16:30:08 2019-08-06 17:50:13 t 1 2 80406 286 0.00 2019-08-06 17:50:18 2019-08-06 18:00:24 t 1 2 80408 212 0.00 2019-08-06 18:04:02 2019-08-06 18:05:26 t 1 2 80409 304 0.00 2019-08-06 18:01:01 2019-08-06 18:11:06 t 1 2 80414 320 0.00 2019-08-06 18:29:55 2019-08-06 18:40:00 t 1 2 80416 312 0.00 2019-08-06 19:11:01 2019-08-06 19:12:07 t 1 2 80419 324 0.00 2019-08-06 19:04:16 2019-08-06 19:14:21 t 1 2 80422 324 0.00 2019-08-06 19:06:35 2019-08-06 19:16:38 t 1 2 80431 312 0.00 2019-08-06 19:26:48 2019-08-06 19:27:55 t 1 2 80436 349 0.00 2019-08-06 19:31:45 2019-08-06 19:32:49 t 1 2 80437 312 0.00 2019-08-06 19:32:22 2019-08-06 19:33:24 t 1 2 80440 349 0.00 2019-08-06 19:34:42 2019-08-06 19:35:48 t 1 2 80444 312 0.00 2019-08-06 19:38:24 2019-08-06 19:39:29 t 1 2 80447 312 0.00 2019-08-06 19:41:12 2019-08-06 19:42:17 t 1 2 80451 349 0.00 2019-08-06 19:45:15 2019-08-06 19:46:19 t 1 2 80454 220 0.00 2019-08-06 19:29:26 2019-08-06 19:54:50 t 1 2 80457 217 0.00 2019-08-06 20:03:16 2019-08-06 20:03:16 f 1 2 80458 320 0.00 2019-08-06 19:59:29 2019-08-06 20:09:34 t 1 2 80462 349 0.00 2019-08-06 20:12:33 2019-08-06 20:13:41 t 1 2 80465 349 0.00 2019-08-06 20:17:23 2019-08-06 20:18:29 t 1 2 80466 349 0.00 2019-08-06 20:24:02 2019-08-06 20:25:08 t 1 2 80469 349 0.00 2019-08-06 20:27:03 2019-08-06 20:28:06 t 1 2 81262 220 0.00 2019-08-08 16:45:45 2019-08-08 16:45:55 t 1 1 80486 343 0.00 2019-08-06 19:31:17 2019-08-06 20:56:22 t 1 2 80489 304 0.00 2019-08-06 20:59:49 2019-08-06 20:59:50 t 1 2 80492 304 0.00 2019-08-06 20:48:34 2019-08-06 21:08:39 t 1 2 80494 304 0.00 2019-08-06 21:00:28 2019-08-06 21:15:33 t 1 2 80498 320 0.00 2019-08-06 21:12:53 2019-08-06 21:22:58 t 1 2 80501 306 0.00 2019-08-06 21:26:51 2019-08-06 21:27:57 t 1 2 80509 346 0.00 2019-08-06 20:24:58 2019-08-06 21:45:03 t 1 2 80513 318 0.00 2019-08-06 21:47:27 2019-08-06 21:52:52 t 1 2 80523 202 0.00 2019-08-06 22:16:15 2019-08-06 22:16:15 f 1 2 80528 320 0.00 2019-08-06 21:52:04 2019-08-06 22:22:10 t 1 2 80535 217 0.00 2019-08-06 22:37:15 2019-08-06 22:37:15 f 1 2 80539 306 0.00 2019-08-06 22:47:03 2019-08-06 22:48:08 t 1 2 80551 304 0.00 2019-08-06 22:50:24 2019-08-06 23:05:29 t 1 2 80557 204 0.00 2019-08-06 23:12:59 2019-08-06 23:12:59 f 1 2 80559 220 0.00 2019-08-06 23:21:18 2019-08-06 23:21:26 t 1 1 80567 217 0.00 2019-08-06 23:38:52 2019-08-06 23:38:52 f 1 2 80573 312 0.00 2019-08-06 23:50:31 2019-08-06 23:51:37 t 1 2 80575 324 0.00 2019-08-06 23:31:25 2019-08-06 23:56:30 t 1 2 80576 217 0.00 2019-08-06 23:58:21 2019-08-06 23:58:21 f 1 2 80577 217 0.00 2019-08-06 23:59:23 2019-08-06 23:59:23 f 1 2 80579 288 0.00 2019-08-07 00:01:05 2019-08-07 00:02:13 t 1 2 80581 304 0.00 2019-08-07 00:08:31 2019-08-07 00:08:35 t 1 2 80584 304 0.00 2019-08-07 00:20:58 2019-08-07 00:20:59 t 1 2 80587 320 0.00 2019-08-06 22:47:44 2019-08-07 00:22:50 t 1 2 80589 220 0.00 2019-08-07 00:31:49 2019-08-07 00:31:57 t 1 1 80590 220 0.00 2019-08-07 00:32:05 2019-08-07 00:32:13 t 1 1 81265 220 0.00 2019-08-08 16:56:26 2019-08-08 16:56:35 t 1 1 80597 247 0.00 2019-08-07 00:48:08 2019-08-07 00:49:21 t 1 2 80608 220 0.00 2019-08-07 01:42:38 2019-08-07 01:42:47 t 1 1 80609 220 0.00 2019-08-07 01:49:03 2019-08-07 01:49:11 t 1 1 80610 220 0.00 2019-08-07 01:49:19 2019-08-07 01:49:27 t 1 1 80616 220 0.00 2019-08-07 02:21:40 2019-08-07 02:21:52 t 1 1 80617 220 0.00 2019-08-07 02:22:02 2019-08-07 02:22:03 t 1 1 80618 220 0.00 2019-08-07 02:32:26 2019-08-07 02:32:36 t 1 1 80625 220 0.00 2019-08-07 03:15:32 2019-08-07 03:15:42 t 1 1 80358 220 0.00 2019-08-06 15:01:06 2019-08-06 15:08:25 t 1 1 80367 234 0.00 2019-08-06 14:16:36 2019-08-06 15:33:52 t 1 2 80369 217 0.00 2019-08-06 15:34:49 2019-08-06 15:34:49 f 1 2 80373 217 0.00 2019-08-06 15:36:23 2019-08-06 15:36:23 f 1 2 80377 247 0.00 2019-08-06 16:08:59 2019-08-06 16:12:47 t 1 2 80379 218 0.00 2019-08-06 16:33:12 2019-08-06 16:33:12 f 1 2 80381 306 0.00 2019-08-06 16:37:47 2019-08-06 16:38:52 t 1 2 80383 217 0.00 2019-08-06 16:39:08 2019-08-06 16:39:08 f 1 2 80386 304 0.00 2019-08-06 16:48:04 2019-08-06 16:48:09 t 1 2 80387 304 0.00 2019-08-06 16:37:51 2019-08-06 16:52:56 t 1 2 80390 304 0.00 2019-08-06 16:48:24 2019-08-06 17:03:29 t 1 2 80393 243 0.00 2019-08-06 17:08:01 2019-08-06 17:12:29 t 1 2 80401 304 0.00 2019-08-06 17:23:19 2019-08-06 17:38:24 t 1 2 80403 288 0.00 2019-08-06 17:42:13 2019-08-06 17:43:17 t 1 2 80407 288 0.00 2019-08-06 18:03:12 2019-08-06 18:04:17 t 1 2 80410 218 0.00 2019-08-06 18:11:19 2019-08-06 18:11:19 f 1 2 80411 320 0.00 2019-08-06 18:02:22 2019-08-06 18:17:28 t 1 2 80412 230 0.00 2019-08-06 16:13:37 2019-08-06 18:18:42 t 1 2 80413 294 0.00 2019-08-06 17:21:33 2019-08-06 18:21:57 t 1 2 80418 312 0.00 2019-08-06 19:12:26 2019-08-06 19:13:34 t 1 2 80420 312 0.00 2019-08-06 19:13:48 2019-08-06 19:14:52 t 1 2 80421 312 0.00 2019-08-06 19:15:10 2019-08-06 19:16:18 t 1 2 80424 312 0.00 2019-08-06 19:16:57 2019-08-06 19:18:01 t 1 2 80427 312 0.00 2019-08-06 19:22:33 2019-08-06 19:23:36 t 1 2 80434 304 0.00 2019-08-06 19:20:55 2019-08-06 19:31:00 t 1 2 80438 349 0.00 2019-08-06 19:33:15 2019-08-06 19:34:21 t 1 2 80442 349 0.00 2019-08-06 19:36:01 2019-08-06 19:37:05 t 1 2 80443 312 0.00 2019-08-06 19:37:08 2019-08-06 19:38:11 t 1 2 80445 312 0.00 2019-08-06 19:39:48 2019-08-06 19:40:53 t 1 2 80453 234 0.00 2019-08-06 19:27:22 2019-08-06 19:54:15 t 1 2 80456 217 0.00 2019-08-06 20:02:45 2019-08-06 20:02:45 f 1 2 80459 349 0.00 2019-08-06 20:09:26 2019-08-06 20:10:32 t 1 2 80467 349 0.00 2019-08-06 20:25:36 2019-08-06 20:26:43 t 1 2 80468 335 0.00 2019-08-06 19:37:14 2019-08-06 20:27:19 t 1 2 80470 294 0.00 2019-08-06 19:28:54 2019-08-06 20:29:18 t 1 2 80473 349 0.00 2019-08-06 20:30:59 2019-08-06 20:32:05 t 1 2 80476 349 0.00 2019-08-06 20:37:18 2019-08-06 20:38:23 t 1 2 81264 306 0.00 2019-08-08 16:47:34 2019-08-08 16:48:33 t 1 2 80490 304 0.00 2019-08-06 21:00:06 2019-08-06 21:00:12 t 1 2 80497 294 0.00 2019-08-06 21:10:31 2019-08-06 21:21:55 t 1 2 80504 220 0.00 2019-08-06 20:51:53 2019-08-06 21:36:58 t 1 2 80506 320 0.00 2019-08-06 21:31:35 2019-08-06 21:41:40 t 1 2 80508 290 0.00 2019-08-06 21:42:52 2019-08-06 21:43:57 t 1 2 80510 349 0.00 2019-08-06 21:47:23 2019-08-06 21:48:26 t 1 2 80512 220 0.00 2019-08-06 21:38:23 2019-08-06 21:50:20 t 1 1 80517 212 0.00 2019-08-06 22:07:36 2019-08-06 22:08:14 t 1 2 80522 202 0.00 2019-08-06 22:14:48 2019-08-06 22:14:48 f 1 2 80524 202 0.00 2019-08-06 22:16:26 2019-08-06 22:16:26 f 1 2 80526 220 0.00 2019-08-06 22:20:49 2019-08-06 22:21:01 t 1 1 80529 304 0.00 2019-08-06 22:16:02 2019-08-06 22:26:07 t 1 2 80546 217 0.00 2019-08-06 22:58:35 2019-08-06 22:58:35 f 1 2 80547 304 0.00 2019-08-06 22:39:47 2019-08-06 22:59:52 t 1 2 80548 220 0.00 2019-08-06 23:00:03 2019-08-06 23:00:12 t 1 1 80549 220 0.00 2019-08-06 23:00:20 2019-08-06 23:00:28 t 1 1 80550 304 0.00 2019-08-06 23:01:33 2019-08-06 23:01:39 t 1 2 80556 204 0.00 2019-08-06 23:12:49 2019-08-06 23:12:49 f 1 2 80560 304 0.00 2019-08-06 23:01:51 2019-08-06 23:21:57 t 1 2 80561 304 0.00 2019-08-06 23:14:09 2019-08-06 23:24:14 t 1 2 80562 346 0.00 2019-08-06 23:28:10 2019-08-06 23:28:17 t 1 2 80569 202 0.00 2019-08-06 23:48:39 2019-08-06 23:48:39 f 1 2 80570 220 0.00 2019-08-06 23:49:33 2019-08-06 23:49:43 t 1 1 80583 212 0.00 2019-08-07 00:17:09 2019-08-07 00:17:50 t 1 2 80593 220 0.00 2019-08-07 00:42:34 2019-08-07 00:42:42 t 1 1 80594 220 0.00 2019-08-07 00:42:50 2019-08-07 00:42:58 t 1 1 80596 302 0.00 2019-08-07 00:36:39 2019-08-07 00:46:45 t 1 2 80603 220 0.00 2019-08-07 01:21:07 2019-08-07 01:21:16 t 1 1 80604 220 0.00 2019-08-07 01:31:37 2019-08-07 01:31:45 t 1 1 80605 220 0.00 2019-08-07 01:31:53 2019-08-07 01:32:01 t 1 1 80606 346 0.00 2019-08-07 01:24:26 2019-08-07 01:34:31 t 1 2 80612 220 0.00 2019-08-07 01:59:48 2019-08-07 01:59:56 t 1 1 80621 220 0.00 2019-08-07 02:54:02 2019-08-07 02:54:13 t 1 1 80622 220 0.00 2019-08-07 02:54:22 2019-08-07 02:54:23 t 1 1 80634 220 0.00 2019-08-07 03:58:22 2019-08-07 03:59:22 t 1 1 80635 220 0.00 2019-08-07 04:08:47 2019-08-07 04:08:57 t 1 1 80652 220 0.00 2019-08-07 05:45:23 2019-08-07 05:45:34 t 1 1 80663 220 0.00 2019-08-07 06:18:36 2019-08-07 06:18:46 t 1 1 80665 220 0.00 2019-08-07 06:18:56 2019-08-07 06:20:46 t 1 1 80673 220 0.00 2019-08-07 06:50:47 2019-08-07 06:50:55 t 1 1 80674 220 0.00 2019-08-07 07:01:17 2019-08-07 07:01:25 t 1 1 80680 220 0.00 2019-08-07 07:33:26 2019-08-07 07:34:00 t 1 1 80682 220 0.00 2019-08-07 07:43:56 2019-08-07 07:44:05 t 1 1 80686 220 0.00 2019-08-07 08:05:10 2019-08-07 08:06:48 t 1 1 80691 218 0.00 2019-08-07 08:31:23 2019-08-07 08:31:23 f 1 2 80694 320 0.00 2019-08-07 08:26:37 2019-08-07 08:36:42 t 1 2 80699 324 0.00 2019-08-07 07:50:39 2019-08-07 08:47:15 t 1 2 80702 220 0.00 2019-08-07 08:58:37 2019-08-07 08:58:49 t 1 1 80704 288 0.00 2019-08-07 09:00:58 2019-08-07 09:02:02 t 1 2 80710 220 0.00 2019-08-07 09:09:20 2019-08-07 09:09:28 t 1 1 80716 320 0.00 2019-08-07 09:04:00 2019-08-07 09:19:05 t 1 2 80724 306 0.00 2019-08-07 09:29:58 2019-08-07 09:31:03 t 1 2 80727 247 0.00 2019-08-07 09:31:20 2019-08-07 09:36:50 t 1 2 80728 220 0.00 2019-08-07 09:41:06 2019-08-07 09:41:14 t 1 1 80739 220 0.00 2019-08-07 10:12:52 2019-08-07 10:13:54 t 1 1 80740 304 0.00 2019-08-07 10:18:05 2019-08-07 10:18:10 t 1 2 80743 306 0.00 2019-08-07 10:26:49 2019-08-07 10:27:53 t 1 2 80756 220 0.00 2019-08-07 10:58:09 2019-08-07 10:59:50 t 1 1 80767 306 0.00 2019-08-07 11:34:56 2019-08-07 11:34:58 t 1 2 80768 306 0.00 2019-08-07 11:35:04 2019-08-07 11:35:10 t 1 2 80771 306 0.00 2019-08-07 11:39:46 2019-08-07 11:40:47 t 1 2 80772 351 0.00 2019-08-07 11:40:46 2019-08-07 11:41:51 t 1 2 80779 306 0.00 2019-08-07 11:45:21 2019-08-07 11:46:22 t 1 2 80781 288 0.00 2019-08-07 11:48:01 2019-08-07 11:49:05 t 1 2 80786 304 0.00 2019-08-07 12:02:32 2019-08-07 12:02:38 t 1 2 80787 304 0.00 2019-08-07 11:50:40 2019-08-07 12:10:45 t 1 2 80789 304 0.00 2019-08-07 12:03:23 2019-08-07 12:18:29 t 1 2 80793 304 0.00 2019-08-07 12:28:23 2019-08-07 12:43:28 t 1 2 80799 292 0.00 2019-08-07 13:15:01 2019-08-07 13:16:06 t 1 2 80366 320 0.00 2019-08-06 14:10:57 2019-08-06 15:31:03 t 1 2 80371 217 0.00 2019-08-06 15:35:21 2019-08-06 15:35:21 f 1 2 80391 288 0.00 2019-08-06 17:03:54 2019-08-06 17:05:02 t 1 2 80397 290 0.00 2019-08-06 17:24:52 2019-08-06 17:25:58 t 1 2 80399 304 0.00 2019-08-06 17:13:24 2019-08-06 17:28:29 t 1 2 80402 217 0.00 2019-08-06 17:42:56 2019-08-06 17:42:56 f 1 2 80405 320 0.00 2019-08-06 17:51:46 2019-08-06 17:54:46 t 1 2 80417 286 0.00 2019-08-06 18:48:04 2019-08-06 19:13:10 t 1 2 80423 286 0.00 2019-08-06 19:07:45 2019-08-06 19:17:50 t 1 2 80425 312 0.00 2019-08-06 19:19:31 2019-08-06 19:20:39 t 1 2 80426 312 0.00 2019-08-06 19:20:58 2019-08-06 19:22:05 t 1 2 80428 312 0.00 2019-08-06 19:24:01 2019-08-06 19:25:06 t 1 2 80429 320 0.00 2019-08-06 19:15:14 2019-08-06 19:25:19 t 1 2 80432 312 0.00 2019-08-06 19:28:09 2019-08-06 19:29:14 t 1 2 80433 312 0.00 2019-08-06 19:29:28 2019-08-06 19:30:35 t 1 2 80441 312 0.00 2019-08-06 19:35:36 2019-08-06 19:36:41 t 1 2 80449 286 0.00 2019-08-06 19:19:09 2019-08-06 19:44:14 t 1 2 80452 349 0.00 2019-08-06 19:47:14 2019-08-06 19:48:21 t 1 2 80461 349 0.00 2019-08-06 20:10:45 2019-08-06 20:11:50 t 1 2 80463 349 0.00 2019-08-06 20:14:33 2019-08-06 20:15:37 t 1 2 80472 349 0.00 2019-08-06 20:29:44 2019-08-06 20:30:47 t 1 2 80475 234 0.00 2019-08-06 19:56:39 2019-08-06 20:36:45 t 1 2 80477 349 0.00 2019-08-06 20:39:02 2019-08-06 20:40:07 t 1 2 81266 320 0.00 2019-08-08 16:50:36 2019-08-08 17:00:42 t 1 2 80488 349 0.00 2019-08-06 20:57:44 2019-08-06 20:58:53 t 1 2 80495 286 0.00 2019-08-06 21:09:18 2019-08-06 21:17:54 t 1 2 80496 220 0.00 2019-08-06 21:12:25 2019-08-06 21:20:27 t 1 1 80499 304 0.00 2019-08-06 21:11:21 2019-08-06 21:26:26 t 1 2 80502 220 0.00 2019-08-06 21:20:27 2019-08-06 21:30:52 t 1 1 80505 220 0.00 2019-08-06 21:30:52 2019-08-06 21:38:23 t 1 1 80511 306 0.00 2019-08-06 21:48:55 2019-08-06 21:49:56 t 1 2 80516 304 0.00 2019-08-06 21:56:53 2019-08-06 22:06:59 t 1 2 80518 220 0.00 2019-08-06 21:50:20 2019-08-06 22:12:38 t 1 1 80519 202 0.00 2019-08-06 22:13:09 2019-08-06 22:13:09 f 1 2 80525 220 0.00 2019-08-06 22:20:02 2019-08-06 22:20:14 t 1 1 80530 343 0.00 2019-08-06 21:38:21 2019-08-06 22:28:27 t 1 2 80531 220 0.00 2019-08-06 22:32:15 2019-08-06 22:32:50 t 1 1 80532 217 0.00 2019-08-06 22:34:28 2019-08-06 22:34:28 f 1 2 80533 217 0.00 2019-08-06 22:36:23 2019-08-06 22:36:23 f 1 2 80537 212 0.00 2019-08-06 22:42:35 2019-08-06 22:44:07 t 1 2 80541 304 0.00 2019-08-06 22:50:11 2019-08-06 22:50:12 t 1 2 80542 324 0.00 2019-08-06 22:17:20 2019-08-06 22:52:25 t 1 2 80553 212 0.00 2019-08-06 23:07:58 2019-08-06 23:08:19 t 1 2 80554 220 0.00 2019-08-06 23:10:49 2019-08-06 23:10:58 t 1 1 80563 220 0.00 2019-08-06 23:31:47 2019-08-06 23:31:55 t 1 1 80564 243 0.00 2019-08-06 23:32:20 2019-08-06 23:35:08 t 1 2 80565 217 0.00 2019-08-06 23:37:23 2019-08-06 23:37:23 f 1 2 80574 346 0.00 2019-08-06 23:28:35 2019-08-06 23:53:40 t 1 2 80578 220 0.00 2019-08-07 00:00:04 2019-08-07 00:00:13 t 1 1 80580 212 0.00 2019-08-07 00:01:46 2019-08-07 00:02:13 t 1 2 80585 220 0.00 2019-08-07 00:21:03 2019-08-07 00:21:12 t 1 1 80586 220 0.00 2019-08-07 00:21:19 2019-08-07 00:21:27 t 1 1 80588 304 0.00 2019-08-07 00:08:47 2019-08-07 00:28:52 t 1 2 80591 335 0.00 2019-08-07 00:17:28 2019-08-07 00:32:33 t 1 2 80598 220 0.00 2019-08-07 00:49:18 2019-08-07 00:49:27 t 1 1 80599 220 0.00 2019-08-07 00:59:48 2019-08-07 00:59:56 t 1 1 80600 220 0.00 2019-08-07 01:00:04 2019-08-07 01:00:12 t 1 1 80601 296 0.00 2019-08-07 00:51:58 2019-08-07 01:03:21 t 1 2 80611 236 0.00 2019-08-07 01:17:58 2019-08-07 01:53:04 t 1 2 80619 220 0.00 2019-08-07 02:43:09 2019-08-07 02:43:19 t 1 1 80620 220 0.00 2019-08-07 02:43:29 2019-08-07 02:43:30 t 1 1 80636 220 0.00 2019-08-07 04:19:29 2019-08-07 04:19:40 t 1 1 80637 220 0.00 2019-08-07 04:30:12 2019-08-07 04:30:23 t 1 1 80640 302 0.00 2019-08-07 03:37:52 2019-08-07 04:42:57 t 1 2 80642 220 0.00 2019-08-07 04:52:20 2019-08-07 04:52:30 t 1 1 80647 220 0.00 2019-08-07 05:13:50 2019-08-07 05:14:00 t 1 1 80650 343 0.00 2019-08-07 03:18:14 2019-08-07 05:38:20 t 1 2 80654 220 0.00 2019-08-07 05:45:44 2019-08-07 05:47:46 t 1 1 80655 318 0.00 2019-08-07 05:30:10 2019-08-07 05:50:16 t 1 2 80656 220 0.00 2019-08-07 05:56:40 2019-08-07 05:56:48 t 1 1 80657 220 0.00 2019-08-07 05:57:01 2019-08-07 05:57:10 t 1 1 80668 220 0.00 2019-08-07 06:29:17 2019-08-07 06:29:26 t 1 1 80672 304 0.00 2019-08-07 06:25:20 2019-08-07 06:45:25 t 1 2 80675 220 0.00 2019-08-07 07:11:45 2019-08-07 07:11:54 t 1 1 80676 220 0.00 2019-08-07 07:22:14 2019-08-07 07:22:23 t 1 1 80693 335 0.00 2019-08-07 08:25:17 2019-08-07 08:35:22 t 1 2 80698 304 0.00 2019-08-07 08:31:55 2019-08-07 08:42:00 t 1 2 80700 220 0.00 2019-08-07 08:47:54 2019-08-07 08:48:04 t 1 1 80705 243 0.00 2019-08-07 08:59:02 2019-08-07 09:02:30 t 1 2 80708 288 0.00 2019-08-07 09:05:51 2019-08-07 09:06:54 t 1 2 80711 335 0.00 2019-08-07 08:50:23 2019-08-07 09:10:28 t 1 2 80717 220 0.00 2019-08-07 09:19:51 2019-08-07 09:19:58 t 1 1 80719 312 0.00 2019-08-07 09:24:39 2019-08-07 09:25:43 t 1 2 80721 220 0.00 2019-08-07 09:30:20 2019-08-07 09:30:28 t 1 1 80725 288 0.00 2019-08-07 09:31:59 2019-08-07 09:33:06 t 1 2 80726 320 0.00 2019-08-07 09:24:42 2019-08-07 09:34:47 t 1 2 80731 220 0.00 2019-08-07 09:46:58 2019-08-07 09:47:52 t 1 2 80734 288 0.00 2019-08-07 10:00:39 2019-08-07 10:01:45 t 1 2 80735 220 0.00 2019-08-07 10:02:06 2019-08-07 10:02:15 t 1 1 80744 304 0.00 2019-08-07 10:27:52 2019-08-07 10:27:58 t 1 2 80747 304 0.00 2019-08-07 10:18:17 2019-08-07 10:33:23 t 1 2 80750 320 0.00 2019-08-07 10:28:53 2019-08-07 10:38:58 t 1 2 80757 288 0.00 2019-08-07 10:59:04 2019-08-07 11:00:10 t 1 2 80762 349 0.00 2019-08-07 11:17:47 2019-08-07 11:18:52 t 1 2 80764 217 0.00 2019-08-07 11:27:18 2019-08-07 11:27:18 f 1 2 80765 230 0.00 2019-08-07 11:30:18 2019-08-07 11:30:18 f 1 2 80773 288 0.00 2019-08-07 11:41:01 2019-08-07 11:42:07 t 1 2 80780 351 0.00 2019-08-07 11:47:03 2019-08-07 11:48:05 t 1 2 80782 304 0.00 2019-08-07 11:40:04 2019-08-07 11:50:09 t 1 2 80791 320 0.00 2019-08-07 12:11:37 2019-08-07 12:26:42 t 1 2 80794 320 0.00 2019-08-07 12:21:04 2019-08-07 12:46:09 t 1 2 80796 220 0.00 2019-08-07 12:23:44 2019-08-07 12:57:39 t 1 2 80798 335 0.00 2019-08-07 12:34:53 2019-08-07 13:06:53 t 1 2 80801 346 0.00 2019-08-07 09:57:42 2019-08-07 13:17:47 t 1 2 80811 327 0.00 2019-08-07 11:01:05 2019-08-07 13:41:29 t 1 2 80816 335 0.00 2019-08-07 13:32:35 2019-08-07 13:55:28 t 1 2 80817 247 0.00 2019-08-07 13:56:41 2019-08-07 13:59:54 t 1 2 80415 312 0.00 2019-08-06 19:09:42 2019-08-06 19:10:45 t 1 2 80430 312 0.00 2019-08-06 19:25:19 2019-08-06 19:26:23 t 1 2 80435 312 0.00 2019-08-06 19:30:55 2019-08-06 19:31:58 t 1 2 80439 312 0.00 2019-08-06 19:33:58 2019-08-06 19:35:01 t 1 2 80446 320 0.00 2019-08-06 19:31:58 2019-08-06 19:42:03 t 1 2 80448 217 0.00 2019-08-06 19:43:28 2019-08-06 19:43:28 f 1 2 80450 312 0.00 2019-08-06 19:43:58 2019-08-06 19:45:04 t 1 2 80455 217 0.00 2019-08-06 20:02:14 2019-08-06 20:02:14 f 1 2 80460 324 0.00 2019-08-06 19:46:27 2019-08-06 20:11:32 t 1 2 80464 349 0.00 2019-08-06 20:15:50 2019-08-06 20:16:55 t 1 2 80471 349 0.00 2019-08-06 20:28:17 2019-08-06 20:29:25 t 1 2 80474 349 0.00 2019-08-06 20:32:26 2019-08-06 20:33:33 t 1 2 81267 306 0.00 2019-08-08 17:01:09 2019-08-08 17:02:17 t 1 2 81270 288 0.00 2019-08-08 17:08:13 2019-08-08 17:09:19 t 1 2 80483 218 0.00 2019-08-06 20:44:22 2019-08-06 20:44:22 f 1 2 80484 320 0.00 2019-08-06 20:42:46 2019-08-06 20:46:46 t 1 2 80485 296 0.00 2019-08-06 20:54:51 2019-08-06 20:56:15 t 1 2 80487 339 0.00 2019-08-06 19:57:06 2019-08-06 20:57:37 t 1 2 80491 286 0.00 2019-08-06 20:47:44 2019-08-06 21:02:49 t 1 2 80493 220 0.00 2019-08-06 21:03:43 2019-08-06 21:12:25 t 1 1 80500 286 0.00 2019-08-06 21:17:38 2019-08-06 21:27:43 t 1 2 80503 304 0.00 2019-08-06 21:20:47 2019-08-06 21:30:53 t 1 2 80507 343 0.00 2019-08-06 21:06:36 2019-08-06 21:41:41 t 1 2 80514 346 0.00 2019-08-06 22:00:45 2019-08-06 22:02:44 t 1 2 80515 247 0.00 2019-08-06 22:05:28 2019-08-06 22:06:26 t 1 2 80520 202 0.00 2019-08-06 22:13:27 2019-08-06 22:13:27 f 1 2 80521 202 0.00 2019-08-06 22:14:35 2019-08-06 22:14:35 f 1 2 80527 220 0.00 2019-08-06 22:21:46 2019-08-06 22:21:54 t 1 1 80534 212 0.00 2019-08-06 22:31:31 2019-08-06 22:36:58 t 1 2 80536 220 0.00 2019-08-06 22:42:45 2019-08-06 22:42:56 t 1 1 80538 304 0.00 2019-08-06 22:30:12 2019-08-06 22:45:17 t 1 2 80540 220 0.00 2019-08-06 22:49:34 2019-08-06 22:49:56 t 1 1 80543 286 0.00 2019-08-06 22:43:01 2019-08-06 22:53:06 t 1 2 80544 218 0.00 2019-08-06 22:54:06 2019-08-06 22:54:06 f 1 2 80545 318 0.00 2019-08-06 22:37:11 2019-08-06 22:57:17 t 1 2 81271 220 0.00 2019-08-08 17:17:26 2019-08-08 17:17:40 t 1 1 80555 243 0.00 2019-08-06 22:46:57 2019-08-06 23:12:17 t 1 2 80558 294 0.00 2019-08-06 22:16:56 2019-08-06 23:17:19 t 1 2 80566 217 0.00 2019-08-06 23:37:35 2019-08-06 23:37:35 f 1 2 80568 220 0.00 2019-08-06 23:42:17 2019-08-06 23:42:26 t 1 1 80571 312 0.00 2019-08-06 23:49:10 2019-08-06 23:50:15 t 1 2 80572 212 0.00 2019-08-06 23:50:59 2019-08-06 23:51:26 t 1 2 80582 220 0.00 2019-08-07 00:10:34 2019-08-07 00:10:42 t 1 1 80592 304 0.00 2019-08-07 00:21:08 2019-08-07 00:36:13 t 1 2 80602 220 0.00 2019-08-07 01:10:34 2019-08-07 01:10:47 t 1 1 80607 220 0.00 2019-08-07 01:42:22 2019-08-07 01:42:30 t 1 1 80613 220 0.00 2019-08-07 02:00:31 2019-08-07 02:01:31 t 1 1 80614 220 0.00 2019-08-07 02:10:56 2019-08-07 02:11:06 t 1 1 80615 220 0.00 2019-08-07 02:11:16 2019-08-07 02:11:17 t 1 1 80623 220 0.00 2019-08-07 03:04:48 2019-08-07 03:04:58 t 1 1 80624 220 0.00 2019-08-07 03:05:08 2019-08-07 03:05:09 t 1 1 80627 220 0.00 2019-08-07 03:26:14 2019-08-07 03:26:23 t 1 1 80628 220 0.00 2019-08-07 03:36:13 2019-08-07 03:36:24 t 1 1 80629 220 0.00 2019-08-07 03:46:43 2019-08-07 03:46:44 t 1 1 80630 220 0.00 2019-08-07 03:46:52 2019-08-07 03:46:53 t 1 1 80631 220 0.00 2019-08-07 03:47:01 2019-08-07 03:47:09 t 1 1 80638 220 0.00 2019-08-07 04:30:33 2019-08-07 04:31:01 t 1 1 80641 335 0.00 2019-08-07 04:01:17 2019-08-07 04:46:22 t 1 2 80643 220 0.00 2019-08-07 04:52:40 2019-08-07 04:52:41 t 1 1 80644 220 0.00 2019-08-07 05:03:04 2019-08-07 05:03:16 t 1 1 80645 220 0.00 2019-08-07 05:03:26 2019-08-07 05:03:26 t 1 1 80648 220 0.00 2019-08-07 05:24:31 2019-08-07 05:24:39 t 1 1 80653 220 0.00 2019-08-07 05:46:11 2019-08-07 05:46:22 t 1 1 80658 220 0.00 2019-08-07 06:07:31 2019-08-07 06:07:39 t 1 1 80659 220 0.00 2019-08-07 06:07:46 2019-08-07 06:07:48 t 1 1 80660 220 0.00 2019-08-07 06:07:55 2019-08-07 06:07:56 t 1 1 80661 220 0.00 2019-08-07 06:08:04 2019-08-07 06:08:05 t 1 1 80662 220 0.00 2019-08-07 06:08:12 2019-08-07 06:10:46 t 1 1 80664 217 0.00 2019-08-07 06:20:22 2019-08-07 06:20:22 f 1 2 80666 217 0.00 2019-08-07 06:21:18 2019-08-07 06:21:18 f 1 2 80667 217 0.00 2019-08-07 06:22:50 2019-08-07 06:22:50 f 1 2 80669 220 0.00 2019-08-07 06:39:47 2019-08-07 06:39:54 t 1 1 80670 220 0.00 2019-08-07 06:40:02 2019-08-07 06:40:10 t 1 1 80671 220 0.00 2019-08-07 06:40:18 2019-08-07 06:40:26 t 1 1 80677 220 0.00 2019-08-07 07:22:58 2019-08-07 07:23:06 t 1 1 80679 320 0.00 2019-08-07 07:29:45 2019-08-07 07:33:55 t 1 2 80681 212 0.00 2019-08-07 07:39:09 2019-08-07 07:39:48 t 1 2 80684 220 0.00 2019-08-07 07:54:40 2019-08-07 07:54:49 t 1 1 80685 335 0.00 2019-08-07 08:05:47 2019-08-07 08:06:48 t 1 2 80687 220 0.00 2019-08-07 08:15:33 2019-08-07 08:15:42 t 1 1 80688 306 0.00 2019-08-07 08:22:11 2019-08-07 08:23:16 t 1 2 80692 349 0.00 2019-08-07 08:32:46 2019-08-07 08:33:49 t 1 2 80701 288 0.00 2019-08-07 08:52:49 2019-08-07 08:53:52 t 1 2 80703 324 0.00 2019-08-07 09:00:17 2019-08-07 09:00:58 t 1 2 80707 288 0.00 2019-08-07 09:04:32 2019-08-07 09:05:36 t 1 2 80712 288 0.00 2019-08-07 09:09:50 2019-08-07 09:10:57 t 1 2 80714 288 0.00 2019-08-07 09:16:19 2019-08-07 09:17:22 t 1 2 80715 243 0.00 2019-08-07 09:14:42 2019-08-07 09:19:04 t 1 2 80723 247 0.00 2019-08-07 09:26:07 2019-08-07 09:30:55 t 1 2 80736 217 0.00 2019-08-07 10:02:29 2019-08-07 10:02:29 f 1 2 80742 335 0.00 2019-08-07 10:14:02 2019-08-07 10:24:07 t 1 2 80745 306 0.00 2019-08-07 10:28:26 2019-08-07 10:29:34 t 1 2 80746 286 0.00 2019-08-07 10:22:14 2019-08-07 10:32:20 t 1 2 80748 220 0.00 2019-08-07 10:34:11 2019-08-07 10:34:21 t 1 1 80749 220 0.00 2019-08-07 10:34:31 2019-08-07 10:34:32 t 1 1 80752 304 0.00 2019-08-07 10:28:10 2019-08-07 10:43:16 t 1 2 80754 220 0.00 2019-08-07 10:47:39 2019-08-07 10:49:06 t 1 1 80763 304 0.00 2019-08-07 11:10:28 2019-08-07 11:20:33 t 1 2 80766 230 0.00 2019-08-07 11:30:30 2019-08-07 11:30:30 f 1 2 80776 351 0.00 2019-08-07 11:42:24 2019-08-07 11:43:29 t 1 2 80778 304 0.00 2019-08-07 11:35:12 2019-08-07 11:45:17 t 1 2 80783 351 0.00 2019-08-07 11:50:07 2019-08-07 11:51:11 t 1 2 80784 296 0.00 2019-08-07 11:31:05 2019-08-07 11:57:26 t 1 2 80785 306 0.00 2019-08-07 11:59:07 2019-08-07 12:00:11 t 1 2 80788 314 0.00 2019-08-07 12:17:55 2019-08-07 12:17:56 t 1 2 80790 351 0.00 2019-08-07 12:24:52 2019-08-07 12:25:57 t 1 2 80792 220 0.00 2019-08-07 12:24:07 2019-08-07 12:32:30 t 1 2 80626 220 0.00 2019-08-07 03:15:52 2019-08-07 03:15:53 t 1 1 80632 220 0.00 2019-08-07 03:57:30 2019-08-07 03:57:38 t 1 1 80633 220 0.00 2019-08-07 03:58:13 2019-08-07 03:58:14 t 1 1 80639 220 0.00 2019-08-07 04:41:33 2019-08-07 04:41:46 t 1 1 80646 324 0.00 2019-08-07 02:45:38 2019-08-07 05:05:43 t 1 2 80649 220 0.00 2019-08-07 05:35:00 2019-08-07 05:36:46 t 1 1 80651 218 0.00 2019-08-07 05:43:54 2019-08-07 05:43:54 f 1 2 80678 294 0.00 2019-08-07 07:26:42 2019-08-07 07:33:55 t 1 2 80683 220 0.00 2019-08-07 07:54:25 2019-08-07 07:54:33 t 1 1 80689 220 0.00 2019-08-07 08:26:15 2019-08-07 08:26:26 t 1 1 80690 320 0.00 2019-08-07 07:45:44 2019-08-07 08:30:50 t 1 2 80695 217 0.00 2019-08-07 08:36:54 2019-08-07 08:36:54 f 1 2 80696 220 0.00 2019-08-07 08:36:58 2019-08-07 08:37:08 t 1 1 80697 220 0.00 2019-08-07 08:37:18 2019-08-07 08:37:19 t 1 1 80706 320 0.00 2019-08-07 08:53:56 2019-08-07 09:04:01 t 1 2 80709 288 0.00 2019-08-07 09:07:12 2019-08-07 09:08:15 t 1 2 80713 324 0.00 2019-08-07 08:48:45 2019-08-07 09:12:43 t 1 2 80718 312 0.00 2019-08-07 09:23:13 2019-08-07 09:24:19 t 1 2 80720 320 0.00 2019-08-07 09:17:13 2019-08-07 09:27:18 t 1 2 80722 220 0.00 2019-08-07 09:30:36 2019-08-07 09:30:44 t 1 1 80729 288 0.00 2019-08-07 09:41:03 2019-08-07 09:42:12 t 1 2 80730 220 0.00 2019-08-07 09:44:14 2019-08-07 09:45:18 t 1 2 80732 220 0.00 2019-08-07 09:51:36 2019-08-07 09:51:44 t 1 1 80733 306 0.00 2019-08-07 09:53:33 2019-08-07 09:54:38 t 1 2 80737 217 0.00 2019-08-07 10:02:39 2019-08-07 10:02:39 f 1 2 80738 220 0.00 2019-08-07 10:12:36 2019-08-07 10:12:45 t 1 1 80741 220 0.00 2019-08-07 10:23:27 2019-08-07 10:23:38 t 1 1 80751 296 0.00 2019-08-07 10:38:42 2019-08-07 10:43:03 t 1 2 80753 220 0.00 2019-08-07 10:44:57 2019-08-07 10:45:08 t 1 1 80755 220 0.00 2019-08-07 10:58:22 2019-08-07 10:58:33 t 1 1 80758 320 0.00 2019-08-07 10:58:44 2019-08-07 11:08:49 t 1 2 80759 220 0.00 2019-08-07 11:08:52 2019-08-07 11:09:03 t 1 1 80760 286 0.00 2019-08-07 11:03:35 2019-08-07 11:13:40 t 1 2 80761 304 0.00 2019-08-07 11:06:43 2019-08-07 11:16:48 t 1 2 80769 351 0.00 2019-08-07 11:35:28 2019-08-07 11:36:31 t 1 2 80770 306 0.00 2019-08-07 11:38:22 2019-08-07 11:39:22 t 1 2 80774 306 0.00 2019-08-07 11:41:06 2019-08-07 11:42:08 t 1 2 80775 351 0.00 2019-08-07 11:42:14 2019-08-07 11:42:18 t 1 2 80777 306 0.00 2019-08-07 11:44:05 2019-08-07 11:45:08 t 1 2 80795 304 0.00 2019-08-07 12:38:12 2019-08-07 12:53:17 t 1 2 80802 304 0.00 2019-08-07 13:19:32 2019-08-07 13:19:41 t 1 2 80805 331 0.00 2019-08-07 13:23:37 2019-08-07 13:24:40 t 1 2 80810 304 0.00 2019-08-07 13:20:27 2019-08-07 13:35:33 t 1 2 80815 320 0.00 2019-08-07 12:49:09 2019-08-07 13:49:15 t 1 2 80833 234 0.00 2019-08-07 14:39:37 2019-08-07 14:49:43 t 1 2 80835 324 0.00 2019-08-07 14:59:03 2019-08-07 15:00:08 t 1 2 80838 324 0.00 2019-08-07 15:01:52 2019-08-07 15:02:59 t 1 2 80839 324 0.00 2019-08-07 15:04:59 2019-08-07 15:06:04 t 1 2 80849 288 0.00 2019-08-07 15:29:02 2019-08-07 15:30:05 t 1 2 80852 306 0.00 2019-08-07 15:34:53 2019-08-07 15:35:53 t 1 2 80856 220 0.00 2019-08-07 15:36:41 2019-08-07 15:43:39 t 1 1 80860 234 0.00 2019-08-07 15:36:34 2019-08-07 15:56:40 t 1 2 80862 234 0.00 2019-08-07 15:59:11 2019-08-07 16:04:39 t 1 2 80863 294 0.00 2019-08-07 15:34:07 2019-08-07 16:10:31 t 1 2 80868 288 0.00 2019-08-07 16:47:54 2019-08-07 16:48:57 t 1 2 80869 286 0.00 2019-08-07 16:45:55 2019-08-07 16:56:00 t 1 2 80873 346 0.00 2019-08-07 16:42:16 2019-08-07 17:17:21 t 1 2 80882 288 0.00 2019-08-07 17:48:53 2019-08-07 17:49:56 t 1 2 80887 286 0.00 2019-08-07 17:48:41 2019-08-07 17:58:47 t 1 2 80889 304 0.00 2019-08-07 18:06:22 2019-08-07 18:06:22 f 1 2 80891 335 0.00 2019-08-07 17:11:55 2019-08-07 18:07:01 t 1 2 80893 304 0.00 2019-08-07 18:07:15 2019-08-07 18:07:15 f 1 2 80895 304 0.00 2019-08-07 18:07:37 2019-08-07 18:07:37 f 1 2 80902 304 0.00 2019-08-07 18:09:53 2019-08-07 18:09:53 f 1 2 80904 304 0.00 2019-08-07 18:10:24 2019-08-07 18:10:24 f 1 2 80911 349 0.00 2019-08-07 17:36:36 2019-08-07 18:16:42 t 1 2 80912 234 0.00 2019-08-07 18:08:41 2019-08-07 18:17:16 t 1 2 80915 353 0.00 2019-08-07 18:21:46 2019-08-07 18:22:35 t 1 2 80919 353 0.00 2019-08-07 18:24:44 2019-08-07 18:34:49 t 1 2 80923 312 0.00 2019-08-07 18:49:16 2019-08-07 18:50:21 t 1 2 80932 243 0.00 2019-08-07 19:11:48 2019-08-07 19:22:02 t 1 2 80934 304 0.00 2019-08-07 19:13:51 2019-08-07 19:23:56 t 1 2 80940 320 0.00 2019-08-07 18:59:57 2019-08-07 19:55:03 t 1 2 80947 324 0.00 2019-08-07 20:15:22 2019-08-07 20:23:31 t 1 2 80948 357 0.00 2019-08-07 20:21:34 2019-08-07 20:24:52 t 1 2 80952 306 0.00 2019-08-07 20:44:53 2019-08-07 20:45:59 t 1 2 80954 294 0.00 2019-08-07 20:19:40 2019-08-07 20:48:00 t 1 2 80955 304 0.00 2019-08-07 20:43:52 2019-08-07 20:53:57 t 1 2 80957 351 0.00 2019-08-07 20:50:09 2019-08-07 20:55:55 t 1 2 80960 236 0.00 2019-08-07 21:05:50 2019-08-07 21:15:55 t 1 2 80961 324 0.00 2019-08-07 21:18:45 2019-08-07 21:19:35 t 1 2 80964 306 0.00 2019-08-07 21:35:58 2019-08-07 21:36:59 t 1 2 80967 359 0.00 2019-08-07 21:42:37 2019-08-07 21:43:50 t 1 2 80969 290 0.00 2019-08-07 21:55:27 2019-08-07 21:56:29 t 1 2 80977 286 0.00 2019-08-07 21:58:09 2019-08-07 22:08:14 t 1 2 80978 212 0.00 2019-08-07 22:09:43 2019-08-07 22:11:58 t 1 2 80981 236 0.00 2019-08-07 21:15:23 2019-08-07 22:20:28 t 1 2 80984 220 0.00 2019-08-07 22:26:26 2019-08-07 22:26:34 t 1 1 80992 220 0.00 2019-08-07 22:42:43 2019-08-07 22:43:47 t 1 2 80994 220 0.00 2019-08-07 22:44:10 2019-08-07 22:47:17 t 1 1 80995 220 0.00 2019-08-07 22:47:17 2019-08-07 22:49:38 t 1 1 80996 304 0.00 2019-08-07 22:40:01 2019-08-07 22:50:07 t 1 2 81006 294 0.00 2019-08-07 22:11:12 2019-08-07 23:11:36 t 1 2 81007 212 0.00 2019-08-07 23:13:18 2019-08-07 23:13:41 t 1 2 81009 212 0.00 2019-08-07 23:22:19 2019-08-07 23:22:40 t 1 2 81011 324 0.00 2019-08-07 23:17:22 2019-08-07 23:32:18 t 1 2 81012 212 0.00 2019-08-07 23:34:20 2019-08-07 23:34:41 t 1 2 81015 355 0.00 2019-08-07 20:23:05 2019-08-07 23:48:11 t 1 2 81018 288 0.00 2019-08-07 23:50:34 2019-08-07 23:51:40 t 1 2 81020 308 0.00 2019-08-07 22:42:48 2019-08-07 23:52:54 t 1 2 81026 290 0.00 2019-08-08 00:11:27 2019-08-08 00:12:30 t 1 2 81268 220 0.00 2019-08-08 17:06:57 2019-08-08 17:07:04 t 1 1 81273 220 0.00 2019-08-08 17:27:55 2019-08-08 17:28:04 t 1 1 81282 234 0.00 2019-08-08 18:01:41 2019-08-08 18:06:29 t 1 2 81285 243 0.00 2019-08-08 18:06:39 2019-08-08 18:10:41 t 1 2 81287 335 0.00 2019-08-08 17:13:13 2019-08-08 18:18:18 t 1 2 81291 335 0.00 2019-08-08 18:18:22 2019-08-08 18:33:27 t 1 2 80797 304 0.00 2019-08-07 12:49:40 2019-08-07 13:04:46 t 1 2 80804 304 0.00 2019-08-07 13:06:06 2019-08-07 13:21:11 t 1 2 80806 236 0.00 2019-08-07 11:50:10 2019-08-07 13:25:15 t 1 2 80813 296 0.00 2019-08-07 13:41:02 2019-08-07 13:44:25 t 1 2 80814 351 0.00 2019-08-07 13:46:24 2019-08-07 13:48:15 t 1 2 80818 306 0.00 2019-08-07 14:01:23 2019-08-07 14:02:28 t 1 2 80826 234 0.00 2019-08-07 14:17:41 2019-08-07 14:32:46 t 1 2 80827 320 0.00 2019-08-07 14:25:53 2019-08-07 14:35:58 t 1 2 80840 288 0.00 2019-08-07 15:09:06 2019-08-07 15:10:09 t 1 2 80843 288 0.00 2019-08-07 15:16:45 2019-08-07 15:17:52 t 1 2 80847 288 0.00 2019-08-07 15:26:35 2019-08-07 15:27:42 t 1 2 80853 337 0.00 2019-08-07 15:35:37 2019-08-07 15:36:00 t 1 2 80861 304 0.00 2019-08-07 15:47:21 2019-08-07 15:57:26 t 1 2 80870 304 0.00 2019-08-07 16:51:57 2019-08-07 17:02:02 t 1 2 80871 304 0.00 2019-08-07 17:01:15 2019-08-07 17:11:21 t 1 2 80872 234 0.00 2019-08-07 16:14:46 2019-08-07 17:14:51 t 1 2 80876 304 0.00 2019-08-07 17:14:50 2019-08-07 17:24:55 t 1 2 80879 217 0.00 2019-08-07 17:39:34 2019-08-07 17:39:34 f 1 2 80884 346 0.00 2019-08-07 17:16:10 2019-08-07 17:56:15 t 1 2 80886 320 0.00 2019-08-07 17:38:10 2019-08-07 17:58:16 t 1 2 80897 304 0.00 2019-08-07 18:07:57 2019-08-07 18:07:57 f 1 2 80899 304 0.00 2019-08-07 18:08:25 2019-08-07 18:08:25 f 1 2 80901 304 0.00 2019-08-07 18:09:28 2019-08-07 18:09:28 f 1 2 80906 304 0.00 2019-08-07 18:10:43 2019-08-07 18:10:43 f 1 2 80909 304 0.00 2019-08-07 18:02:09 2019-08-07 18:12:14 t 1 2 80910 243 0.00 2019-08-07 18:09:16 2019-08-07 18:14:49 t 1 2 80914 318 0.00 2019-08-07 17:21:14 2019-08-07 18:21:19 t 1 2 80917 217 0.00 2019-08-07 18:25:09 2019-08-07 18:25:09 f 1 2 80924 320 0.00 2019-08-07 18:15:36 2019-08-07 18:50:33 t 1 2 80927 324 0.00 2019-08-07 18:51:14 2019-08-07 19:01:19 t 1 2 80930 331 0.00 2019-08-07 19:07:43 2019-08-07 19:08:41 t 1 2 80933 331 0.00 2019-08-07 19:22:17 2019-08-07 19:23:21 t 1 2 80935 355 0.00 2019-08-07 19:22:55 2019-08-07 19:33:01 t 1 2 80937 218 0.00 2019-08-07 19:36:58 2019-08-07 19:36:58 f 1 2 80942 320 0.00 2019-08-07 19:56:56 2019-08-07 20:07:01 t 1 2 80943 304 0.00 2019-08-07 19:57:30 2019-08-07 20:12:35 t 1 2 80944 357 0.00 2019-08-07 20:15:00 2019-08-07 20:15:10 t 1 2 80951 306 0.00 2019-08-07 20:43:04 2019-08-07 20:44:05 t 1 2 80959 351 0.00 2019-08-07 21:04:18 2019-08-07 21:15:06 t 1 2 80965 304 0.00 2019-08-07 21:29:22 2019-08-07 21:39:27 t 1 2 80966 359 0.00 2019-08-07 21:39:25 2019-08-07 21:42:26 t 1 2 80968 296 0.00 2019-08-07 21:03:09 2019-08-07 21:49:32 t 1 2 80971 220 0.00 2019-08-07 21:52:17 2019-08-07 22:00:52 t 1 1 80973 217 0.00 2019-08-07 22:01:06 2019-08-07 22:01:06 f 1 2 80975 304 0.00 2019-08-07 21:47:35 2019-08-07 22:02:40 t 1 2 80985 335 0.00 2019-08-07 20:39:16 2019-08-07 22:34:21 t 1 2 80987 220 0.00 2019-08-07 22:37:16 2019-08-07 22:38:19 t 1 2 80988 220 0.00 2019-08-07 22:38:57 2019-08-07 22:40:04 t 1 2 80990 220 0.00 2019-08-07 22:40:24 2019-08-07 22:41:28 t 1 2 80993 220 0.00 2019-08-07 22:27:17 2019-08-07 22:44:10 t 1 1 80999 320 0.00 2019-08-07 22:18:37 2019-08-07 22:53:42 t 1 2 81010 304 0.00 2019-08-07 23:15:57 2019-08-07 23:26:02 t 1 2 81014 324 0.00 2019-08-07 22:14:29 2019-08-07 23:43:54 t 1 2 81019 243 0.00 2019-08-07 23:44:26 2019-08-07 23:51:50 t 1 2 81024 288 0.00 2019-08-08 00:06:27 2019-08-08 00:07:34 t 1 2 81027 234 0.00 2019-08-08 00:13:26 2019-08-08 00:13:26 f 1 2 81028 320 0.00 2019-08-07 22:49:00 2019-08-08 00:14:05 t 1 2 81032 234 0.00 2019-08-08 00:13:54 2019-08-08 00:48:59 t 1 2 81033 346 0.00 2019-08-07 22:51:52 2019-08-08 00:51:57 t 1 2 81035 359 0.00 2019-08-08 00:18:34 2019-08-08 01:03:39 t 1 2 81037 212 0.00 2019-08-08 01:27:15 2019-08-08 01:27:41 t 1 2 81038 243 0.00 2019-08-08 01:44:24 2019-08-08 01:50:47 t 1 2 81269 306 0.00 2019-08-08 17:07:32 2019-08-08 17:08:40 t 1 2 81275 212 0.00 2019-08-08 17:30:09 2019-08-08 17:30:46 t 1 2 81277 234 0.00 2019-08-08 17:03:50 2019-08-08 17:37:19 t 1 2 81278 346 0.00 2019-08-08 17:28:48 2019-08-08 17:38:54 t 1 2 81281 218 0.00 2019-08-08 17:57:14 2019-08-08 17:57:14 f 1 2 81284 320 0.00 2019-08-08 17:34:45 2019-08-08 18:09:50 t 1 2 81286 346 0.00 2019-08-08 17:38:09 2019-08-08 18:13:14 t 1 2 81289 306 0.00 2019-08-08 18:26:43 2019-08-08 18:27:50 t 1 2 81300 312 0.00 2019-08-08 18:46:58 2019-08-08 18:48:03 t 1 2 81301 361 0.00 2019-08-08 19:10:02 2019-08-08 19:10:24 t 1 2 81307 288 0.00 2019-08-08 19:23:08 2019-08-08 19:24:12 t 1 2 81322 320 0.00 2019-08-08 19:05:01 2019-08-08 20:30:06 t 1 2 81324 346 0.00 2019-08-08 20:38:22 2019-08-08 20:53:27 t 1 2 81325 292 0.00 2019-08-08 20:54:26 2019-08-08 20:55:32 t 1 2 81332 361 0.00 2019-08-08 19:21:02 2019-08-08 21:14:04 t 1 2 81333 220 0.00 2019-08-08 21:22:38 2019-08-08 21:25:02 t 1 2 81341 320 0.00 2019-08-08 21:41:43 2019-08-08 22:01:48 t 1 2 81347 339 0.00 2019-08-08 21:25:13 2019-08-08 22:25:37 t 1 2 81358 306 0.00 2019-08-08 22:51:26 2019-08-08 22:52:30 t 1 2 81362 243 0.00 2019-08-08 22:47:31 2019-08-08 23:11:01 t 1 2 81363 355 0.00 2019-08-08 23:11:31 2019-08-08 23:11:33 t 1 2 81373 243 0.00 2019-08-08 23:23:49 2019-08-08 23:33:06 t 1 2 81382 324 0.00 2019-08-08 22:17:54 2019-08-09 00:17:59 t 1 2 81384 335 0.00 2019-08-09 00:31:48 2019-08-09 00:41:53 t 1 2 81385 212 0.00 2019-08-09 00:27:14 2019-08-09 00:45:23 t 1 2 81391 331 0.00 2019-08-09 00:54:26 2019-08-09 00:55:32 t 1 2 81393 335 0.00 2019-08-09 00:47:02 2019-08-09 00:57:07 t 1 2 81401 355 0.00 2019-08-09 00:15:04 2019-08-09 02:40:09 t 1 2 81404 212 0.00 2019-08-09 02:51:50 2019-08-09 02:52:52 t 1 2 81406 302 0.00 2019-08-09 03:18:32 2019-08-09 03:26:49 t 1 2 81409 339 0.00 2019-08-09 01:37:07 2019-08-09 04:14:30 t 1 2 81412 339 0.00 2019-08-09 04:47:50 2019-08-09 05:37:14 t 1 2 81417 306 0.00 2019-08-09 07:53:40 2019-08-09 07:54:45 t 1 2 81420 306 0.00 2019-08-09 08:02:23 2019-08-09 08:03:24 t 1 2 81428 320 0.00 2019-08-09 08:40:37 2019-08-09 08:50:42 t 1 2 81435 320 0.00 2019-08-09 09:44:50 2019-08-09 09:54:55 t 1 2 81439 247 0.00 2019-08-09 10:00:16 2019-08-09 10:03:33 t 1 2 81440 247 0.00 2019-08-09 10:03:41 2019-08-09 10:05:50 t 1 2 81446 320 0.00 2019-08-09 09:50:00 2019-08-09 10:30:05 t 1 2 81450 320 0.00 2019-08-09 10:36:56 2019-08-09 10:47:01 t 1 2 81452 212 0.00 2019-08-09 10:55:49 2019-08-09 10:56:05 t 1 2 81456 363 0.00 2019-08-09 11:11:18 2019-08-09 11:11:18 f 1 2 81460 351 0.00 2019-08-09 11:32:19 2019-08-09 11:35:34 t 1 2 81463 243 0.00 2019-08-09 11:40:24 2019-08-09 11:43:34 t 1 2 81466 335 0.00 2019-08-09 11:44:09 2019-08-09 11:59:14 t 1 2 80800 304 0.00 2019-08-07 13:16:20 2019-08-07 13:17:43 t 1 2 80803 304 0.00 2019-08-07 13:20:07 2019-08-07 13:20:17 t 1 2 80807 220 0.00 2019-08-07 13:31:11 2019-08-07 13:32:25 t 1 1 80808 331 0.00 2019-08-07 13:31:30 2019-08-07 13:32:35 t 1 2 80809 331 0.00 2019-08-07 13:33:20 2019-08-07 13:34:21 t 1 2 80812 220 0.00 2019-08-07 13:33:44 2019-08-07 13:43:11 t 1 2 80821 220 0.00 2019-08-07 14:09:31 2019-08-07 14:11:32 t 1 2 80822 320 0.00 2019-08-07 14:06:54 2019-08-07 14:16:59 t 1 2 80831 304 0.00 2019-08-07 14:38:48 2019-08-07 14:43:53 t 1 2 80832 212 0.00 2019-08-07 14:48:10 2019-08-07 14:49:19 t 1 2 80834 304 0.00 2019-08-07 14:40:09 2019-08-07 14:55:14 t 1 2 80844 286 0.00 2019-08-07 15:11:00 2019-08-07 15:21:06 t 1 2 80848 220 0.00 2019-08-07 15:21:20 2019-08-07 15:28:32 t 1 1 80850 217 0.00 2019-08-07 15:30:37 2019-08-07 15:30:37 f 1 2 80851 234 0.00 2019-08-07 15:35:20 2019-08-07 15:35:28 t 1 2 80854 220 0.00 2019-08-07 15:28:32 2019-08-07 15:36:41 t 1 1 80855 288 0.00 2019-08-07 15:35:42 2019-08-07 15:36:49 t 1 2 80857 320 0.00 2019-08-07 14:29:39 2019-08-07 15:44:44 t 1 2 80859 304 0.00 2019-08-07 15:43:26 2019-08-07 15:53:31 t 1 2 80866 247 0.00 2019-08-07 16:18:55 2019-08-07 16:39:19 t 1 2 80874 324 0.00 2019-08-07 17:03:18 2019-08-07 17:18:24 t 1 2 80877 234 0.00 2019-08-07 17:15:59 2019-08-07 17:27:43 t 1 2 80881 234 0.00 2019-08-07 17:34:22 2019-08-07 17:44:27 t 1 2 80888 286 0.00 2019-08-07 17:55:41 2019-08-07 18:05:47 t 1 2 80892 304 0.00 2019-08-07 18:07:02 2019-08-07 18:07:02 f 1 2 80894 304 0.00 2019-08-07 18:07:24 2019-08-07 18:07:24 f 1 2 80900 304 0.00 2019-08-07 17:53:22 2019-08-07 18:08:27 t 1 2 80903 304 0.00 2019-08-07 18:10:01 2019-08-07 18:10:01 f 1 2 80905 304 0.00 2019-08-07 18:10:33 2019-08-07 18:10:33 f 1 2 80907 234 0.00 2019-08-07 17:55:51 2019-08-07 18:10:56 t 1 2 80918 304 0.00 2019-08-07 18:12:16 2019-08-07 18:32:21 t 1 2 80920 324 0.00 2019-08-07 18:34:47 2019-08-07 18:35:39 t 1 2 80925 203 0.00 2019-08-07 17:25:04 2019-08-07 19:00:09 t 1 2 80928 327 0.00 2019-08-07 18:47:09 2019-08-07 19:04:32 t 1 2 80929 304 0.00 2019-08-07 18:57:09 2019-08-07 19:07:14 t 1 2 80931 335 0.00 2019-08-07 18:18:52 2019-08-07 19:08:58 t 1 2 80936 296 0.00 2019-08-07 19:31:11 2019-08-07 19:35:51 t 1 2 80938 324 0.00 2019-08-07 19:24:53 2019-08-07 19:39:58 t 1 2 80941 288 0.00 2019-08-07 20:00:38 2019-08-07 20:01:44 t 1 2 80949 324 0.00 2019-08-07 20:31:24 2019-08-07 20:31:51 t 1 2 80970 286 0.00 2019-08-07 21:48:57 2019-08-07 21:59:03 t 1 2 80974 320 0.00 2019-08-07 20:41:22 2019-08-07 22:01:27 t 1 2 80979 320 0.00 2019-08-07 22:05:14 2019-08-07 22:15:55 t 1 2 80982 286 0.00 2019-08-07 22:07:09 2019-08-07 22:22:14 t 1 2 80989 247 0.00 2019-08-07 22:37:43 2019-08-07 22:40:09 t 1 2 80997 220 0.00 2019-08-07 22:49:38 2019-08-07 22:53:01 t 1 1 80998 212 0.00 2019-08-07 22:52:47 2019-08-07 22:53:10 t 1 2 81000 220 0.00 2019-08-07 22:53:01 2019-08-07 22:54:22 t 1 1 81002 286 0.00 2019-08-07 22:48:44 2019-08-07 22:58:49 t 1 2 81003 306 0.00 2019-08-07 23:05:41 2019-08-07 23:06:46 t 1 2 81004 212 0.00 2019-08-07 23:07:10 2019-08-07 23:07:27 t 1 2 81016 306 0.00 2019-08-07 23:49:15 2019-08-07 23:50:18 t 1 2 81017 212 0.00 2019-08-07 23:51:19 2019-08-07 23:51:35 t 1 2 81023 311 0.00 2019-08-07 23:54:47 2019-08-08 00:04:32 t 1 2 81030 294 0.00 2019-08-07 23:21:55 2019-08-08 00:22:19 t 1 2 81034 212 0.00 2019-08-08 00:52:16 2019-08-08 00:52:52 t 1 2 81041 234 0.00 2019-08-08 02:54:08 2019-08-08 03:54:13 t 1 2 81272 294 0.00 2019-08-08 17:14:19 2019-08-08 17:26:43 t 1 2 81279 220 0.00 2019-08-08 17:38:24 2019-08-08 17:38:59 t 1 1 81280 306 0.00 2019-08-08 17:44:40 2019-08-08 17:45:43 t 1 2 81293 234 0.00 2019-08-08 18:14:24 2019-08-08 18:35:09 t 1 2 81294 346 0.00 2019-08-08 18:27:29 2019-08-08 18:37:44 t 1 2 81298 346 0.00 2019-08-08 18:43:59 2019-08-08 18:45:44 t 1 2 81302 361 0.00 2019-08-08 19:10:26 2019-08-08 19:10:43 t 1 2 81303 361 0.00 2019-08-08 19:11:02 2019-08-08 19:11:07 t 1 2 81306 306 0.00 2019-08-08 19:17:25 2019-08-08 19:18:29 t 1 2 81309 288 0.00 2019-08-08 19:26:46 2019-08-08 19:27:50 t 1 2 81310 346 0.00 2019-08-08 19:14:51 2019-08-08 19:29:56 t 1 2 81311 220 0.00 2019-08-08 19:01:18 2019-08-08 19:32:38 t 1 2 81313 296 0.00 2019-08-08 19:33:18 2019-08-08 19:35:41 t 1 2 81318 324 0.00 2019-08-08 19:43:46 2019-08-08 20:03:51 t 1 2 81319 335 0.00 2019-08-08 20:04:15 2019-08-08 20:14:21 t 1 2 81321 220 0.00 2019-08-08 20:05:43 2019-08-08 20:24:50 t 1 1 81329 320 0.00 2019-08-08 20:56:38 2019-08-08 21:06:43 t 1 2 81331 324 0.00 2019-08-08 21:12:01 2019-08-08 21:13:03 t 1 2 81334 212 0.00 2019-08-08 21:24:52 2019-08-08 21:25:09 t 1 2 81339 335 0.00 2019-08-08 21:35:01 2019-08-08 21:45:06 t 1 2 81340 288 0.00 2019-08-08 21:56:27 2019-08-08 21:57:31 t 1 2 81342 234 0.00 2019-08-08 21:33:30 2019-08-08 22:02:26 t 1 2 81349 236 0.00 2019-08-08 20:55:51 2019-08-08 22:30:57 t 1 2 81350 306 0.00 2019-08-08 22:33:05 2019-08-08 22:34:10 t 1 2 81351 251 0.00 2019-08-08 22:11:39 2019-08-08 22:36:44 t 1 2 81364 251 0.00 2019-08-08 22:56:39 2019-08-08 23:11:44 t 1 2 81370 212 0.00 2019-08-08 23:20:12 2019-08-08 23:21:56 t 1 2 81375 324 0.00 2019-08-08 23:42:21 2019-08-08 23:44:43 t 1 2 81376 212 0.00 2019-08-08 23:44:04 2019-08-08 23:47:45 t 1 2 81378 220 0.00 2019-08-08 23:43:40 2019-08-09 00:00:03 t 1 2 81379 335 0.00 2019-08-08 23:38:44 2019-08-09 00:03:49 t 1 2 81380 355 0.00 2019-08-08 23:11:40 2019-08-09 00:16:45 t 1 2 81389 220 0.00 2019-08-09 00:49:20 2019-08-09 00:53:43 t 1 2 81402 324 0.00 2019-08-09 02:29:18 2019-08-09 02:44:23 t 1 2 81407 346 0.00 2019-08-09 03:12:19 2019-08-09 03:27:24 t 1 2 81410 324 0.00 2019-08-09 03:53:31 2019-08-09 04:43:36 t 1 2 81415 343 0.00 2019-08-09 02:11:09 2019-08-09 07:33:54 t 1 2 81418 306 0.00 2019-08-09 07:56:22 2019-08-09 07:57:30 t 1 2 81422 306 0.00 2019-08-09 08:06:32 2019-08-09 08:07:38 t 1 2 81424 306 0.00 2019-08-09 08:13:29 2019-08-09 08:14:34 t 1 2 81434 247 0.00 2019-08-09 09:53:09 2019-08-09 09:54:17 t 1 2 81437 306 0.00 2019-08-09 09:58:39 2019-08-09 09:59:40 t 1 2 81438 247 0.00 2019-08-09 09:59:42 2019-08-09 10:00:13 t 1 2 81454 234 0.00 2019-08-09 10:42:04 2019-08-09 11:07:09 t 1 2 81465 247 0.00 2019-08-09 11:39:26 2019-08-09 11:47:59 t 1 2 81473 202 0.00 2019-08-09 12:06:40 2019-08-09 12:06:40 f 1 2 81476 288 0.00 2019-08-09 12:09:12 2019-08-09 12:10:17 t 1 2 81479 247 0.00 2019-08-09 12:29:41 2019-08-09 12:31:35 t 1 2 81482 339 0.00 2019-08-09 11:40:10 2019-08-09 12:40:33 t 1 2 81487 355 0.00 2019-08-09 11:53:33 2019-08-09 12:53:38 t 1 2 80819 304 0.00 2019-08-07 13:52:08 2019-08-07 14:07:14 t 1 2 80820 220 0.00 2019-08-07 12:38:39 2019-08-07 14:08:44 t 1 2 80823 220 0.00 2019-08-07 14:08:54 2019-08-07 14:17:22 t 1 2 80824 217 0.00 2019-08-07 14:18:17 2019-08-07 14:18:17 f 1 2 80825 331 0.00 2019-08-07 14:23:14 2019-08-07 14:24:17 t 1 2 80828 220 0.00 2019-08-07 14:35:50 2019-08-07 14:36:53 t 1 2 80829 220 0.00 2019-08-07 14:40:20 2019-08-07 14:41:26 t 1 2 80830 346 0.00 2019-08-07 14:28:07 2019-08-07 14:43:34 t 1 2 80836 234 0.00 2019-08-07 14:41:42 2019-08-07 15:01:47 t 1 2 80837 220 0.00 2019-08-07 14:50:45 2019-08-07 15:01:59 t 1 1 80841 220 0.00 2019-08-07 15:01:59 2019-08-07 15:12:43 t 1 1 80842 288 0.00 2019-08-07 15:12:28 2019-08-07 15:13:31 t 1 2 80845 220 0.00 2019-08-07 15:12:43 2019-08-07 15:21:19 t 1 1 80846 288 0.00 2019-08-07 15:25:04 2019-08-07 15:26:09 t 1 2 80858 320 0.00 2019-08-07 15:38:17 2019-08-07 15:48:22 t 1 2 80864 288 0.00 2019-08-07 16:21:00 2019-08-07 16:21:23 t 1 2 80865 306 0.00 2019-08-07 16:37:11 2019-08-07 16:38:13 t 1 2 80867 318 0.00 2019-08-07 15:25:28 2019-08-07 16:40:33 t 1 2 80875 320 0.00 2019-08-07 16:40:11 2019-08-07 17:20:17 t 1 2 80878 304 0.00 2019-08-07 17:18:46 2019-08-07 17:33:51 t 1 2 80880 220 0.00 2019-08-07 17:37:30 2019-08-07 17:39:53 t 1 2 80883 234 0.00 2019-08-07 17:44:17 2019-08-07 17:54:43 t 1 2 80885 324 0.00 2019-08-07 17:54:18 2019-08-07 17:56:42 t 1 2 80890 304 0.00 2019-08-07 18:06:46 2019-08-07 18:06:46 f 1 2 80896 304 0.00 2019-08-07 18:07:48 2019-08-07 18:07:48 f 1 2 80898 304 0.00 2019-08-07 18:08:11 2019-08-07 18:08:11 f 1 2 80908 304 0.00 2019-08-07 18:08:55 2019-08-07 18:10:57 t 1 2 80913 335 0.00 2019-08-07 18:17:00 2019-08-07 18:18:45 t 1 2 80916 212 0.00 2019-08-07 18:24:06 2019-08-07 18:25:07 t 1 2 80921 234 0.00 2019-08-07 18:17:44 2019-08-07 18:42:49 t 1 2 80922 324 0.00 2019-08-07 17:09:57 2019-08-07 18:50:02 t 1 2 80926 331 0.00 2019-08-07 18:59:21 2019-08-07 19:00:23 t 1 2 80939 212 0.00 2019-08-07 19:53:29 2019-08-07 19:54:38 t 1 2 80945 357 0.00 2019-08-07 20:18:47 2019-08-07 20:21:22 t 1 2 80946 314 0.00 2019-08-07 20:21:29 2019-08-07 20:22:27 t 1 2 80950 234 0.00 2019-08-07 19:54:32 2019-08-07 20:34:47 t 1 2 80953 351 0.00 2019-08-07 20:37:01 2019-08-07 20:47:40 t 1 2 80956 304 0.00 2019-08-07 20:45:37 2019-08-07 20:55:42 t 1 2 80958 324 0.00 2019-08-07 20:20:58 2019-08-07 21:00:43 t 1 2 80962 346 0.00 2019-08-07 20:43:48 2019-08-07 21:23:42 t 1 2 80963 346 0.00 2019-08-07 21:13:03 2019-08-07 21:31:04 t 1 2 80972 217 0.00 2019-08-07 22:01:01 2019-08-07 22:01:01 f 1 2 80976 220 0.00 2019-08-07 22:03:01 2019-08-07 22:05:16 t 1 1 80980 324 0.00 2019-08-07 21:35:16 2019-08-07 22:20:21 t 1 2 80983 220 0.00 2019-08-07 22:14:34 2019-08-07 22:25:25 t 1 1 80986 212 0.00 2019-08-07 22:22:06 2019-08-07 22:35:32 t 1 2 80991 286 0.00 2019-08-07 22:32:05 2019-08-07 22:42:11 t 1 2 81001 304 0.00 2019-08-07 22:42:58 2019-08-07 22:58:04 t 1 2 81005 331 0.00 2019-08-07 23:06:31 2019-08-07 23:07:37 t 1 2 81008 304 0.00 2019-08-07 23:08:30 2019-08-07 23:18:35 t 1 2 81013 234 0.00 2019-08-07 21:34:42 2019-08-07 23:37:07 t 1 2 81021 304 0.00 2019-08-07 23:44:22 2019-08-07 23:54:27 t 1 2 81022 327 0.00 2019-08-07 23:28:21 2019-08-08 00:00:43 t 1 2 81025 304 0.00 2019-08-07 23:51:50 2019-08-08 00:11:56 t 1 2 81029 355 0.00 2019-08-07 23:49:46 2019-08-08 00:14:51 t 1 2 81031 320 0.00 2019-08-08 00:17:41 2019-08-08 00:27:46 t 1 2 81036 349 0.00 2019-08-08 01:11:52 2019-08-08 01:13:00 t 1 2 81039 320 0.00 2019-08-08 00:27:18 2019-08-08 02:22:23 t 1 2 81040 339 0.00 2019-08-08 02:02:27 2019-08-08 03:02:50 t 1 2 81283 296 0.00 2019-08-08 18:00:25 2019-08-08 18:07:18 t 1 2 81288 288 0.00 2019-08-08 18:25:09 2019-08-08 18:26:13 t 1 2 81290 288 0.00 2019-08-08 18:29:11 2019-08-08 18:30:16 t 1 2 81292 288 0.00 2019-08-08 18:33:10 2019-08-08 18:34:16 t 1 2 81299 243 0.00 2019-08-08 18:42:26 2019-08-08 18:47:51 t 1 2 81305 247 0.00 2019-08-08 19:15:10 2019-08-08 19:17:18 t 1 2 81314 212 0.00 2019-08-08 19:37:35 2019-08-08 19:37:54 t 1 2 81326 353 0.00 2019-08-08 20:55:18 2019-08-08 20:56:19 t 1 2 81328 346 0.00 2019-08-08 21:04:28 2019-08-08 21:04:38 t 1 2 81330 363 0.00 2019-08-08 20:47:40 2019-08-08 21:07:45 t 1 2 81336 320 0.00 2019-08-08 20:58:31 2019-08-08 21:28:36 t 1 2 81344 290 0.00 2019-08-08 22:19:44 2019-08-08 22:20:46 t 1 2 81346 331 0.00 2019-08-08 22:24:29 2019-08-08 22:25:33 t 1 2 81353 355 0.00 2019-08-08 21:34:16 2019-08-08 22:39:22 t 1 2 81355 353 0.00 2019-08-08 22:44:03 2019-08-08 22:44:38 t 1 2 81357 306 0.00 2019-08-08 22:51:16 2019-08-08 22:51:22 t 1 2 81360 247 0.00 2019-08-08 22:54:29 2019-08-08 22:57:52 t 1 2 81361 247 0.00 2019-08-08 23:07:25 2019-08-08 23:08:32 t 1 2 81366 212 0.00 2019-08-08 23:15:41 2019-08-08 23:16:10 t 1 2 81371 335 0.00 2019-08-08 23:16:27 2019-08-08 23:26:33 t 1 2 81374 335 0.00 2019-08-08 23:22:52 2019-08-08 23:37:57 t 1 2 81383 234 0.00 2019-08-08 22:29:35 2019-08-09 00:34:40 t 1 2 81387 302 0.00 2019-08-09 00:33:06 2019-08-09 00:48:12 t 1 2 81390 346 0.00 2019-08-09 00:53:45 2019-08-09 00:54:48 t 1 2 81392 220 0.00 2019-08-09 00:46:49 2019-08-09 00:56:54 t 1 2 81394 288 0.00 2019-08-09 01:01:22 2019-08-09 01:02:26 t 1 2 81396 339 0.00 2019-08-09 00:59:37 2019-08-09 01:18:01 t 1 2 81398 304 0.00 2019-08-09 01:32:35 2019-08-09 01:47:40 t 1 2 81408 324 0.00 2019-08-09 03:47:02 2019-08-09 03:51:54 t 1 2 81411 322 0.00 2019-08-09 03:32:30 2019-08-09 04:51:44 t 1 2 81413 320 0.00 2019-08-09 07:25:49 2019-08-09 07:33:54 t 1 2 81416 306 0.00 2019-08-09 07:42:16 2019-08-09 07:43:21 t 1 2 81421 324 0.00 2019-08-09 08:03:06 2019-08-09 08:03:31 t 1 2 81423 306 0.00 2019-08-09 08:09:04 2019-08-09 08:10:06 t 1 2 81425 306 0.00 2019-08-09 08:15:52 2019-08-09 08:16:58 t 1 2 81426 304 0.00 2019-08-09 08:28:16 2019-08-09 08:38:21 t 1 2 81429 218 0.00 2019-08-09 08:57:51 2019-08-09 08:57:51 f 1 2 81430 294 0.00 2019-08-09 08:06:41 2019-08-09 09:07:04 t 1 2 81431 320 0.00 2019-08-09 08:50:56 2019-08-09 09:16:02 t 1 2 81436 212 0.00 2019-08-09 09:55:06 2019-08-09 09:56:09 t 1 2 81441 363 0.00 2019-08-09 09:43:05 2019-08-09 10:13:10 t 1 2 81442 363 0.00 2019-08-09 10:13:58 2019-08-09 10:14:06 t 1 2 81443 212 0.00 2019-08-09 10:00:30 2019-08-09 10:16:45 t 1 2 81444 234 0.00 2019-08-09 10:08:37 2019-08-09 10:18:42 t 1 2 81449 335 0.00 2019-08-09 10:31:33 2019-08-09 10:41:38 t 1 2 81453 286 0.00 2019-08-09 10:35:16 2019-08-09 11:00:22 t 1 2 81457 320 0.00 2019-08-09 10:57:36 2019-08-09 11:27:41 t 1 2 81459 304 0.00 2019-08-09 11:29:58 2019-08-09 11:30:09 t 1 2 81295 355 0.00 2019-08-08 15:28:25 2019-08-08 18:38:30 t 1 2 81296 320 0.00 2019-08-08 18:33:40 2019-08-08 18:43:45 t 1 2 81297 335 0.00 2019-08-08 18:34:09 2019-08-08 18:44:14 t 1 2 81304 288 0.00 2019-08-08 19:15:52 2019-08-08 19:16:57 t 1 2 81308 335 0.00 2019-08-08 19:09:50 2019-08-08 19:24:55 t 1 2 81312 306 0.00 2019-08-08 19:33:02 2019-08-08 19:34:08 t 1 2 81315 306 0.00 2019-08-08 19:52:53 2019-08-08 19:53:56 t 1 2 81316 343 0.00 2019-08-08 19:17:24 2019-08-08 19:57:30 t 1 2 81317 234 0.00 2019-08-08 18:53:10 2019-08-08 20:03:15 t 1 2 81320 335 0.00 2019-08-08 20:09:50 2019-08-08 20:19:56 t 1 2 81323 296 0.00 2019-08-08 20:36:30 2019-08-08 20:38:53 t 1 2 81327 217 0.00 2019-08-08 20:57:58 2019-08-08 20:57:58 f 1 2 81335 335 0.00 2019-08-08 20:17:51 2019-08-08 21:27:56 t 1 2 81337 292 0.00 2019-08-08 21:36:19 2019-08-08 21:37:24 t 1 2 81338 320 0.00 2019-08-08 21:29:27 2019-08-08 21:39:32 t 1 2 81343 294 0.00 2019-08-08 21:02:11 2019-08-08 22:02:35 t 1 2 81345 331 0.00 2019-08-08 22:22:50 2019-08-08 22:23:46 t 1 2 81348 335 0.00 2019-08-08 22:18:40 2019-08-08 22:28:45 t 1 2 81352 353 0.00 2019-08-08 22:39:19 2019-08-08 22:39:20 t 1 2 81354 335 0.00 2019-08-08 22:31:30 2019-08-08 22:41:35 t 1 2 81356 212 0.00 2019-08-08 22:21:16 2019-08-08 22:47:34 t 1 2 81359 335 0.00 2019-08-08 22:46:26 2019-08-08 22:56:31 t 1 2 81365 346 0.00 2019-08-08 21:05:10 2019-08-08 23:14:53 t 1 2 81367 335 0.00 2019-08-08 22:57:13 2019-08-08 23:17:19 t 1 2 81368 212 0.00 2019-08-08 23:19:48 2019-08-08 23:19:56 t 1 2 81369 324 0.00 2019-08-08 21:54:29 2019-08-08 23:20:19 t 1 2 81372 306 0.00 2019-08-08 23:31:25 2019-08-08 23:32:27 t 1 2 81377 294 0.00 2019-08-08 22:53:47 2019-08-08 23:54:11 t 1 2 81381 247 0.00 2019-08-09 00:16:07 2019-08-09 00:16:52 t 1 2 81386 296 0.00 2019-08-09 00:42:27 2019-08-09 00:46:50 t 1 2 81388 346 0.00 2019-08-09 00:52:14 2019-08-09 00:53:16 t 1 2 81395 288 0.00 2019-08-09 01:02:54 2019-08-09 01:04:00 t 1 2 81397 363 0.00 2019-08-08 21:53:54 2019-08-09 01:18:59 t 1 2 81399 308 0.00 2019-08-08 13:08:29 2019-08-09 02:03:34 t 1 2 81400 335 0.00 2019-08-09 02:12:12 2019-08-09 02:22:17 t 1 2 81403 346 0.00 2019-08-09 02:43:52 2019-08-09 02:47:53 t 1 2 81405 320 0.00 2019-08-08 22:02:55 2019-08-09 03:23:01 t 1 2 81414 302 0.00 2019-08-09 03:36:10 2019-08-09 07:33:54 t 1 2 81419 306 0.00 2019-08-09 07:59:58 2019-08-09 08:01:05 t 1 2 81427 320 0.00 2019-08-09 08:26:21 2019-08-09 08:41:26 t 1 2 81432 320 0.00 2019-08-09 09:21:07 2019-08-09 09:31:12 t 1 2 81433 247 0.00 2019-08-09 09:43:59 2019-08-09 09:46:22 t 1 2 81445 363 0.00 2019-08-09 10:09:43 2019-08-09 10:19:49 t 1 2 81447 296 0.00 2019-08-09 10:37:46 2019-08-09 10:39:07 t 1 2 81448 247 0.00 2019-08-09 10:33:45 2019-08-09 10:41:04 t 1 2 81451 320 0.00 2019-08-09 10:41:51 2019-08-09 10:51:56 t 1 2 81455 363 0.00 2019-08-09 10:15:07 2019-08-09 11:10:16 t 1 2 81458 218 0.00 2019-08-09 11:28:31 2019-08-09 11:28:31 f 1 2 81464 320 0.00 2019-08-09 11:29:34 2019-08-09 11:44:40 t 1 2 81467 320 0.00 2019-08-09 11:45:41 2019-08-09 12:00:46 t 1 2 81468 288 0.00 2019-08-09 12:04:06 2019-08-09 12:05:11 t 1 2 81470 202 0.00 2019-08-09 12:06:05 2019-08-09 12:06:05 f 1 2 81472 202 0.00 2019-08-09 12:06:21 2019-08-09 12:06:21 f 1 2 81481 286 0.00 2019-08-09 12:30:05 2019-08-09 12:36:37 t 1 2 81483 361 0.00 2019-08-09 10:40:59 2019-08-09 12:43:26 t 1 2 81484 320 0.00 2019-08-09 11:59:22 2019-08-09 12:44:27 t 1 2 81488 320 0.00 2019-08-09 12:44:02 2019-08-09 12:54:07 t 1 2 81492 335 0.00 2019-08-09 12:41:47 2019-08-09 13:11:52 t 1 2 81496 324 0.00 2019-08-09 13:12:01 2019-08-09 13:32:06 t 1 2 81501 202 0.00 2019-08-09 13:52:40 2019-08-09 13:52:40 f 1 2 81504 220 0.00 2019-08-09 11:24:04 2019-08-09 13:59:01 t 1 1 81510 355 0.00 2019-08-09 13:40:52 2019-08-09 14:35:57 t 1 2 81514 296 0.00 2019-08-09 14:44:02 2019-08-09 14:52:25 t 1 2 81520 320 0.00 2019-08-09 14:06:46 2019-08-09 15:38:15 t 1 2 81526 331 0.00 2019-08-09 15:47:27 2019-08-09 15:48:29 t 1 2 81528 331 0.00 2019-08-09 15:53:06 2019-08-09 15:54:06 t 1 2 81531 355 0.00 2019-08-09 15:25:38 2019-08-09 16:05:43 t 1 2 81535 320 0.00 2019-08-09 16:15:12 2019-08-09 16:30:17 t 1 2 81538 286 0.00 2019-08-09 16:43:40 2019-08-09 16:53:45 t 1 2 81545 346 0.00 2019-08-09 17:05:47 2019-08-09 17:15:52 t 1 2 81546 335 0.00 2019-08-09 16:24:02 2019-08-09 17:24:07 t 1 2 81549 220 0.00 2019-08-09 13:59:01 2019-08-09 17:29:25 t 1 1 81552 296 0.00 2019-08-09 17:28:45 2019-08-09 17:40:06 t 1 2 81557 247 0.00 2019-08-09 18:08:13 2019-08-09 18:08:51 t 1 2 81570 335 0.00 2019-08-09 19:12:15 2019-08-09 19:12:15 f 1 2 81573 212 0.00 2019-08-09 19:12:32 2019-08-09 19:13:31 t 1 2 81576 335 0.00 2019-08-09 19:06:44 2019-08-09 19:16:49 t 1 2 81582 353 0.00 2019-08-09 19:37:32 2019-08-09 19:38:36 t 1 2 81588 349 0.00 2019-08-09 20:03:21 2019-08-09 20:04:27 t 1 2 81591 234 0.00 2019-08-09 20:23:44 2019-08-09 20:23:44 f 1 2 81595 335 0.00 2019-08-09 20:33:58 2019-08-09 20:44:04 t 1 2 81596 346 0.00 2019-08-09 20:38:49 2019-08-09 20:44:22 t 1 2 81605 212 0.00 2019-08-09 20:57:44 2019-08-09 20:58:39 t 1 2 81607 335 0.00 2019-08-09 20:58:49 2019-08-09 20:58:49 f 1 2 81609 335 0.00 2019-08-09 20:59:24 2019-08-09 20:59:24 f 1 2 81619 294 0.00 2019-08-09 21:10:25 2019-08-09 21:22:48 t 1 2 81629 220 0.00 2019-08-09 20:21:08 2019-08-09 22:03:27 t 1 1 81631 220 0.00 2019-08-09 22:00:49 2019-08-09 22:11:07 t 1 2 81640 353 0.00 2019-08-09 22:33:41 2019-08-09 22:43:46 t 1 2 81643 331 0.00 2019-08-09 22:46:45 2019-08-09 22:47:47 t 1 2 81649 251 0.00 2019-08-09 22:59:30 2019-08-09 23:08:48 t 1 2 81656 335 0.00 2019-08-09 23:14:14 2019-08-09 23:24:19 t 1 2 81664 220 0.00 2019-08-09 23:13:10 2019-08-09 23:41:23 t 1 1 81665 306 0.00 2019-08-09 23:42:00 2019-08-09 23:42:02 t 1 2 81666 306 0.00 2019-08-09 23:42:05 2019-08-09 23:43:09 t 1 2 81669 212 0.00 2019-08-09 23:43:48 2019-08-09 23:49:09 t 1 2 81674 220 0.00 2019-08-09 23:51:42 2019-08-09 23:51:51 t 1 1 81681 212 0.00 2019-08-09 23:58:18 2019-08-10 00:05:54 t 1 2 81684 212 0.00 2019-08-10 00:08:17 2019-08-10 00:08:38 t 1 2 81692 346 0.00 2019-08-09 23:25:12 2019-08-10 00:24:36 t 1 2 81694 335 0.00 2019-08-10 00:22:56 2019-08-10 00:38:01 t 1 2 81695 302 0.00 2019-08-10 00:24:39 2019-08-10 00:39:44 t 1 2 81698 212 0.00 2019-08-10 00:50:31 2019-08-10 00:50:46 t 1 2 81700 212 0.00 2019-08-10 01:07:14 2019-08-10 01:07:51 t 1 2 81702 335 0.00 2019-08-10 01:24:03 2019-08-10 01:24:03 f 1 2 81705 288 0.00 2019-08-10 01:28:08 2019-08-10 01:29:12 t 1 2 81709 322 0.00 2019-08-10 01:49:02 2019-08-10 01:51:00 t 1 2 81461 243 0.00 2019-08-09 11:39:59 2019-08-09 11:40:03 t 1 2 81462 304 0.00 2019-08-09 11:30:17 2019-08-09 11:40:22 t 1 2 81471 202 0.00 2019-08-09 12:06:13 2019-08-09 12:06:13 f 1 2 81475 335 0.00 2019-08-09 11:59:56 2019-08-09 12:10:01 t 1 2 81478 363 0.00 2019-08-09 11:11:26 2019-08-09 12:31:32 t 1 2 81480 311 0.00 2019-08-09 12:26:58 2019-08-09 12:35:40 t 1 2 81489 286 0.00 2019-08-09 12:47:37 2019-08-09 12:57:42 t 1 2 81491 288 0.00 2019-08-09 13:02:45 2019-08-09 13:03:53 t 1 2 81493 286 0.00 2019-08-09 13:03:20 2019-08-09 13:13:25 t 1 2 81495 335 0.00 2019-08-09 13:11:42 2019-08-09 13:21:47 t 1 2 81497 296 0.00 2019-08-09 12:39:55 2019-08-09 13:40:16 t 1 2 81499 355 0.00 2019-08-09 12:54:08 2019-08-09 13:44:13 t 1 2 81502 202 0.00 2019-08-09 13:52:53 2019-08-09 13:52:53 f 1 2 81503 335 0.00 2019-08-09 13:20:03 2019-08-09 13:55:08 t 1 2 81506 346 0.00 2019-08-09 13:10:34 2019-08-09 14:12:31 t 1 2 81508 335 0.00 2019-08-09 13:51:35 2019-08-09 14:21:40 t 1 2 81517 324 0.00 2019-08-09 15:05:21 2019-08-09 15:05:53 t 1 2 81521 363 0.00 2019-08-09 14:22:07 2019-08-09 15:42:12 t 1 2 81524 320 0.00 2019-08-09 15:44:53 2019-08-09 15:45:04 t 1 2 81525 331 0.00 2019-08-09 15:46:20 2019-08-09 15:46:27 t 1 2 81529 320 0.00 2019-08-09 15:45:11 2019-08-09 15:55:16 t 1 2 81534 335 0.00 2019-08-09 16:14:05 2019-08-09 16:29:10 t 1 2 81536 306 0.00 2019-08-09 16:31:24 2019-08-09 16:32:27 t 1 2 81539 212 0.00 2019-08-09 16:46:31 2019-08-09 16:54:54 t 1 2 81541 320 0.00 2019-08-09 16:46:19 2019-08-09 17:01:24 t 1 2 81547 320 0.00 2019-08-09 17:14:59 2019-08-09 17:25:05 t 1 2 81551 306 0.00 2019-08-09 17:38:21 2019-08-09 17:39:24 t 1 2 81560 306 0.00 2019-08-09 18:24:15 2019-08-09 18:25:19 t 1 2 81561 363 0.00 2019-08-09 18:16:30 2019-08-09 18:28:36 t 1 2 81565 335 0.00 2019-08-09 18:36:06 2019-08-09 18:51:11 t 1 2 81567 363 0.00 2019-08-09 18:34:50 2019-08-09 19:09:55 t 1 2 81569 335 0.00 2019-08-09 19:12:08 2019-08-09 19:12:08 f 1 2 81580 335 0.00 2019-08-09 19:27:04 2019-08-09 19:37:09 t 1 2 81597 306 0.00 2019-08-09 20:44:06 2019-08-09 20:45:07 t 1 2 81606 335 0.00 2019-08-09 20:58:41 2019-08-09 20:58:41 f 1 2 81608 335 0.00 2019-08-09 20:59:14 2019-08-09 20:59:14 f 1 2 81617 286 0.00 2019-08-09 21:09:13 2019-08-09 21:19:19 t 1 2 81618 346 0.00 2019-08-09 20:49:06 2019-08-09 21:22:29 t 1 2 81626 335 0.00 2019-08-09 21:30:20 2019-08-09 21:40:25 t 1 2 81628 306 0.00 2019-08-09 22:01:08 2019-08-09 22:02:10 t 1 2 81638 234 0.00 2019-08-09 22:24:47 2019-08-09 22:24:47 f 1 2 81639 331 0.00 2019-08-09 22:34:54 2019-08-09 22:35:58 t 1 2 81642 353 0.00 2019-08-09 22:46:24 2019-08-09 22:47:28 t 1 2 81646 243 0.00 2019-08-09 22:51:18 2019-08-09 23:01:51 t 1 2 81647 220 0.00 2019-08-09 22:08:52 2019-08-09 23:06:08 t 1 1 81652 335 0.00 2019-08-09 22:59:07 2019-08-09 23:14:12 t 1 2 81655 346 0.00 2019-08-09 22:23:51 2019-08-09 23:23:36 t 1 2 81658 308 0.00 2019-08-09 13:35:27 2019-08-09 23:25:33 t 1 2 81659 247 0.00 2019-08-09 23:31:18 2019-08-09 23:33:27 t 1 2 81662 311 0.00 2019-08-09 22:48:11 2019-08-09 23:38:16 t 1 2 81663 363 0.00 2019-08-09 23:29:33 2019-08-09 23:39:38 t 1 2 81672 355 0.00 2019-08-09 22:55:30 2019-08-09 23:50:35 t 1 2 81676 212 0.00 2019-08-09 23:49:29 2019-08-09 23:56:34 t 1 2 81680 363 0.00 2019-08-09 23:35:05 2019-08-10 00:05:10 t 1 2 81687 324 0.00 2019-08-09 18:34:37 2019-08-10 00:19:43 t 1 2 81689 288 0.00 2019-08-10 00:22:53 2019-08-10 00:23:56 t 1 2 81690 306 0.00 2019-08-10 00:23:23 2019-08-10 00:24:25 t 1 2 81697 324 0.00 2019-08-10 00:46:26 2019-08-10 00:47:15 t 1 2 81701 335 0.00 2019-08-10 01:23:54 2019-08-10 01:23:54 f 1 2 81704 320 0.00 2019-08-09 21:12:39 2019-08-10 01:27:44 t 1 2 81712 288 0.00 2019-08-10 02:07:03 2019-08-10 02:08:11 t 1 2 81716 251 0.00 2019-08-10 02:00:34 2019-08-10 02:30:39 t 1 2 81723 322 0.00 2019-08-10 01:51:56 2019-08-10 04:27:13 t 1 2 81726 346 0.00 2019-08-10 05:59:38 2019-08-10 06:19:43 t 1 2 81730 217 0.00 2019-08-10 07:25:18 2019-08-10 07:25:18 f 1 2 81731 294 0.00 2019-08-10 04:17:33 2019-08-10 07:33:53 t 1 2 81732 304 0.00 2019-08-10 07:40:54 2019-08-10 07:50:59 t 1 2 81736 306 0.00 2019-08-10 08:12:04 2019-08-10 08:13:08 t 1 2 81740 320 0.00 2019-08-10 08:09:58 2019-08-10 08:35:03 t 1 2 81743 212 0.00 2019-08-10 08:40:12 2019-08-10 08:41:01 t 1 2 81745 288 0.00 2019-08-10 08:50:35 2019-08-10 08:51:41 t 1 2 81755 324 0.00 2019-08-10 09:41:01 2019-08-10 09:42:06 t 1 2 81757 304 0.00 2019-08-10 09:34:07 2019-08-10 09:49:12 t 1 2 81764 306 0.00 2019-08-10 10:04:20 2019-08-10 10:05:28 t 1 2 81768 324 0.00 2019-08-10 10:32:52 2019-08-10 10:33:06 t 1 2 81774 304 0.00 2019-08-10 10:55:18 2019-08-10 10:55:25 t 1 2 81776 212 0.00 2019-08-10 11:03:04 2019-08-10 11:03:24 t 1 2 81779 286 0.00 2019-08-10 10:50:36 2019-08-10 11:10:42 t 1 2 81780 212 0.00 2019-08-10 11:32:46 2019-08-10 11:33:32 t 1 2 81782 365 0.00 2019-08-10 11:37:45 2019-08-10 11:38:14 t 1 2 81786 217 0.00 2019-08-10 11:44:04 2019-08-10 11:44:04 f 1 2 81791 212 0.00 2019-08-10 11:53:49 2019-08-10 11:54:06 t 1 2 81794 212 0.00 2019-08-10 11:56:37 2019-08-10 11:57:35 t 1 2 81797 288 0.00 2019-08-10 12:05:09 2019-08-10 12:06:14 t 1 2 81800 288 0.00 2019-08-10 12:19:47 2019-08-10 12:20:51 t 1 2 81803 320 0.00 2019-08-10 12:17:02 2019-08-10 12:27:07 t 1 2 81806 320 0.00 2019-08-10 12:26:26 2019-08-10 12:36:31 t 1 2 81816 335 0.00 2019-08-10 13:02:15 2019-08-10 13:12:20 t 1 2 81818 335 0.00 2019-08-10 13:08:57 2019-08-10 13:19:02 t 1 2 81826 311 0.00 2019-08-10 12:01:03 2019-08-10 13:48:19 t 1 2 81833 304 0.00 2019-08-10 14:41:48 2019-08-10 14:41:54 t 1 2 81838 236 0.00 2019-08-10 14:51:14 2019-08-10 14:51:14 f 1 2 81841 236 0.00 2019-08-10 14:57:41 2019-08-10 14:57:41 f 1 2 81849 220 0.00 2019-08-10 15:20:21 2019-08-10 15:21:25 t 1 2 81857 355 0.00 2019-08-10 15:06:08 2019-08-10 15:31:13 t 1 2 81862 311 0.00 2019-08-10 15:03:22 2019-08-10 16:13:44 t 1 2 81863 349 0.00 2019-08-10 16:16:23 2019-08-10 16:17:28 t 1 2 81870 355 0.00 2019-08-10 15:48:52 2019-08-10 16:28:58 t 1 2 81873 212 0.00 2019-08-10 16:37:16 2019-08-10 16:38:04 t 1 2 81879 320 0.00 2019-08-10 16:44:55 2019-08-10 16:55:00 t 1 2 81882 288 0.00 2019-08-10 17:04:20 2019-08-10 17:05:25 t 1 2 81884 296 0.00 2019-08-10 17:10:30 2019-08-10 17:13:53 t 1 2 81891 324 0.00 2019-08-10 17:47:08 2019-08-10 17:47:43 t 1 2 81894 212 0.00 2019-08-10 17:53:46 2019-08-10 17:54:18 t 1 2 81899 335 0.00 2019-08-10 18:03:04 2019-08-10 18:13:09 t 1 2 81905 288 0.00 2019-08-10 18:20:18 2019-08-10 18:21:22 t 1 2 81908 346 0.00 2019-08-10 17:20:07 2019-08-10 18:25:12 t 1 2 81469 247 0.00 2019-08-09 12:04:38 2019-08-09 12:05:14 t 1 2 81474 202 0.00 2019-08-09 12:07:09 2019-08-09 12:07:09 f 1 2 81477 335 0.00 2019-08-09 12:07:48 2019-08-09 12:17:53 t 1 2 81485 335 0.00 2019-08-09 12:19:24 2019-08-09 12:44:29 t 1 2 81486 286 0.00 2019-08-09 12:37:24 2019-08-09 12:47:29 t 1 2 81494 324 0.00 2019-08-09 13:12:29 2019-08-09 13:19:05 t 1 2 81498 320 0.00 2019-08-09 13:13:32 2019-08-09 13:43:37 t 1 2 81500 324 0.00 2019-08-09 13:30:31 2019-08-09 13:52:01 t 1 2 81505 288 0.00 2019-08-09 14:03:15 2019-08-09 14:04:20 t 1 2 81507 361 0.00 2019-08-09 13:18:38 2019-08-09 14:14:34 t 1 2 81511 335 0.00 2019-08-09 14:29:49 2019-08-09 14:39:54 t 1 2 81512 251 0.00 2019-08-09 14:27:38 2019-08-09 14:42:44 t 1 2 81515 247 0.00 2019-08-09 14:56:03 2019-08-09 14:56:28 t 1 2 81516 234 0.00 2019-08-09 14:37:12 2019-08-09 15:02:18 t 1 2 81518 361 0.00 2019-08-09 14:15:31 2019-08-09 15:14:00 t 1 2 81523 331 0.00 2019-08-09 15:43:50 2019-08-09 15:44:56 t 1 2 81530 361 0.00 2019-08-09 15:30:57 2019-08-09 16:01:25 t 1 2 81537 320 0.00 2019-08-09 16:32:35 2019-08-09 16:42:40 t 1 2 81540 355 0.00 2019-08-09 16:34:49 2019-08-09 16:59:54 t 1 2 81548 363 0.00 2019-08-09 16:52:30 2019-08-09 17:27:26 t 1 2 81554 220 0.00 2019-08-09 17:29:25 2019-08-09 17:43:33 t 1 1 81555 335 0.00 2019-08-09 17:38:13 2019-08-09 17:48:18 t 1 2 81556 335 0.00 2019-08-09 17:45:10 2019-08-09 18:00:15 t 1 2 81558 335 0.00 2019-08-09 17:56:25 2019-08-09 18:21:30 t 1 2 81562 355 0.00 2019-08-09 17:53:48 2019-08-09 18:28:53 t 1 2 81571 335 0.00 2019-08-09 18:57:34 2019-08-09 19:12:39 t 1 2 81575 286 0.00 2019-08-09 19:04:59 2019-08-09 19:15:04 t 1 2 81577 247 0.00 2019-08-09 19:17:16 2019-08-09 19:18:36 t 1 2 81579 247 0.00 2019-08-09 19:28:36 2019-08-09 19:28:48 t 1 2 81583 294 0.00 2019-08-09 18:40:35 2019-08-09 19:40:59 t 1 2 81584 218 0.00 2019-08-09 19:45:58 2019-08-09 19:45:58 f 1 2 81585 349 0.00 2019-08-09 19:53:01 2019-08-09 19:54:07 t 1 2 81586 349 0.00 2019-08-09 20:02:05 2019-08-09 20:03:09 t 1 2 81592 234 0.00 2019-08-09 20:26:41 2019-08-09 20:26:41 f 1 2 81594 324 0.00 2019-08-09 20:39:54 2019-08-09 20:42:54 t 1 2 81598 296 0.00 2019-08-09 20:32:53 2019-08-09 20:47:16 t 1 2 81599 306 0.00 2019-08-09 20:50:04 2019-08-09 20:51:06 t 1 2 81601 306 0.00 2019-08-09 20:52:45 2019-08-09 20:53:51 t 1 2 81604 335 0.00 2019-08-09 20:58:35 2019-08-09 20:58:35 f 1 2 81611 335 0.00 2019-08-09 21:00:02 2019-08-09 21:00:02 f 1 2 81613 335 0.00 2019-08-09 20:53:37 2019-08-09 21:03:43 t 1 2 81614 217 0.00 2019-08-09 21:06:24 2019-08-09 21:06:24 f 1 2 81616 335 0.00 2019-08-09 20:56:45 2019-08-09 21:06:50 t 1 2 81620 286 0.00 2019-08-09 21:12:51 2019-08-09 21:22:56 t 1 2 81622 296 0.00 2019-08-09 21:23:29 2019-08-09 21:25:53 t 1 2 81623 335 0.00 2019-08-09 21:16:08 2019-08-09 21:26:13 t 1 2 81625 306 0.00 2019-08-09 21:38:48 2019-08-09 21:39:47 t 1 2 81627 355 0.00 2019-08-09 18:41:43 2019-08-09 22:01:49 t 1 2 81630 306 0.00 2019-08-09 22:05:52 2019-08-09 22:06:55 t 1 2 81632 353 0.00 2019-08-09 22:14:32 2019-08-09 22:15:36 t 1 2 81633 353 0.00 2019-08-09 22:19:49 2019-08-09 22:20:52 t 1 2 81635 346 0.00 2019-08-09 21:26:11 2019-08-09 22:22:59 t 1 2 81636 346 0.00 2019-08-09 22:23:21 2019-08-09 22:23:28 t 1 2 81641 306 0.00 2019-08-09 22:45:23 2019-08-09 22:46:26 t 1 2 81645 286 0.00 2019-08-09 22:42:03 2019-08-09 22:57:08 t 1 2 81648 324 0.00 2019-08-09 23:08:05 2019-08-09 23:08:33 t 1 2 81654 324 0.00 2019-08-09 23:09:11 2019-08-09 23:19:36 t 1 2 81657 346 0.00 2019-08-09 23:24:17 2019-08-09 23:24:21 t 1 2 81660 269 0.00 2019-08-09 23:02:20 2019-08-09 23:33:44 t 1 2 81661 361 0.00 2019-08-09 23:28:10 2019-08-09 23:38:16 t 1 2 81668 355 0.00 2019-08-09 23:45:15 2019-08-09 23:45:16 t 1 2 81670 220 0.00 2019-08-09 23:41:23 2019-08-09 23:50:08 t 1 1 81671 220 0.00 2019-08-09 23:50:18 2019-08-09 23:50:27 t 1 1 81675 311 0.00 2019-08-09 23:42:52 2019-08-09 23:56:17 t 1 2 81677 218 0.00 2019-08-10 00:00:54 2019-08-10 00:00:54 f 1 2 81678 220 0.00 2019-08-09 23:54:47 2019-08-10 00:04:39 t 1 1 81679 220 0.00 2019-08-10 00:04:47 2019-08-10 00:04:55 t 1 1 81682 355 0.00 2019-08-09 23:46:05 2019-08-10 00:06:11 t 1 2 81683 247 0.00 2019-08-10 00:06:12 2019-08-10 00:07:16 t 1 2 81685 251 0.00 2019-08-09 23:33:50 2019-08-10 00:08:55 t 1 2 81686 335 0.00 2019-08-10 00:08:57 2019-08-10 00:19:02 t 1 2 81693 212 0.00 2019-08-10 00:28:57 2019-08-10 00:29:15 t 1 2 81696 288 0.00 2019-08-10 00:41:52 2019-08-10 00:42:57 t 1 2 81703 335 0.00 2019-08-10 00:54:19 2019-08-10 01:24:24 t 1 2 81707 346 0.00 2019-08-10 00:41:45 2019-08-10 01:31:37 t 1 2 81713 355 0.00 2019-08-10 00:49:07 2019-08-10 02:09:13 t 1 2 81718 355 0.00 2019-08-10 02:46:20 2019-08-10 03:11:26 t 1 2 81720 324 0.00 2019-08-10 03:08:57 2019-08-10 03:13:32 t 1 2 81721 335 0.00 2019-08-10 02:51:54 2019-08-10 03:21:59 t 1 2 81724 335 0.00 2019-08-10 04:39:55 2019-08-10 04:42:55 t 1 2 81725 346 0.00 2019-08-10 05:59:16 2019-08-10 05:59:18 t 1 2 81735 306 0.00 2019-08-10 08:08:29 2019-08-10 08:09:30 t 1 2 81737 320 0.00 2019-08-10 07:44:31 2019-08-10 08:14:37 t 1 2 81741 288 0.00 2019-08-10 08:36:32 2019-08-10 08:37:40 t 1 2 81742 296 0.00 2019-08-10 08:35:00 2019-08-10 08:40:39 t 1 2 81744 247 0.00 2019-08-10 08:42:49 2019-08-10 08:43:46 t 1 2 81746 306 0.00 2019-08-10 08:59:45 2019-08-10 09:00:49 t 1 2 81751 217 0.00 2019-08-10 09:28:55 2019-08-10 09:28:55 f 1 2 81754 304 0.00 2019-08-10 09:25:21 2019-08-10 09:40:26 t 1 2 81762 306 0.00 2019-08-10 09:58:59 2019-08-10 10:00:02 t 1 2 81766 212 0.00 2019-08-10 10:25:36 2019-08-10 10:26:19 t 1 2 81769 304 0.00 2019-08-10 10:23:42 2019-08-10 10:33:47 t 1 2 81778 306 0.00 2019-08-10 11:07:29 2019-08-10 11:08:29 t 1 2 81788 365 0.00 2019-08-10 11:38:44 2019-08-10 11:48:50 t 1 2 81789 320 0.00 2019-08-10 11:46:50 2019-08-10 11:49:16 t 1 2 81793 243 0.00 2019-08-10 11:54:33 2019-08-10 11:57:07 t 1 2 81795 320 0.00 2019-08-10 11:52:47 2019-08-10 12:02:52 t 1 2 81796 251 0.00 2019-08-10 11:45:46 2019-08-10 12:05:51 t 1 2 81799 324 0.00 2019-08-10 12:15:29 2019-08-10 12:15:48 t 1 2 81809 220 0.00 2019-08-10 12:25:17 2019-08-10 12:51:41 t 1 2 81813 346 0.00 2019-08-10 13:02:12 2019-08-10 13:03:17 t 1 2 81814 346 0.00 2019-08-10 12:26:17 2019-08-10 13:09:04 t 1 2 81815 243 0.00 2019-08-10 13:04:38 2019-08-10 13:11:40 t 1 2 81817 290 0.00 2019-08-10 13:14:06 2019-08-10 13:15:12 t 1 2 81820 212 0.00 2019-08-10 13:20:53 2019-08-10 13:21:41 t 1 2 81821 361 0.00 2019-08-10 11:26:16 2019-08-10 13:23:58 t 1 2 81825 272 0.00 2019-08-10 12:44:38 2019-08-10 13:39:43 t 1 2 81490 355 0.00 2019-08-09 12:53:22 2019-08-09 13:03:27 t 1 2 81509 251 0.00 2019-08-09 14:13:10 2019-08-09 14:33:15 t 1 2 81513 247 0.00 2019-08-09 14:43:43 2019-08-09 14:44:01 t 1 2 81519 355 0.00 2019-08-09 15:22:27 2019-08-09 15:22:44 t 1 2 81522 331 0.00 2019-08-09 15:42:46 2019-08-09 15:42:53 t 1 2 81527 331 0.00 2019-08-09 15:49:09 2019-08-09 15:50:13 t 1 2 81532 320 0.00 2019-08-09 15:57:53 2019-08-09 16:07:58 t 1 2 81533 294 0.00 2019-08-09 10:15:52 2019-08-09 16:21:54 t 1 2 81542 212 0.00 2019-08-09 17:00:18 2019-08-09 17:09:12 t 1 2 81543 286 0.00 2019-08-09 17:02:07 2019-08-09 17:12:12 t 1 2 81544 320 0.00 2019-08-09 17:14:53 2019-08-09 17:14:55 t 1 2 81550 335 0.00 2019-08-09 17:22:44 2019-08-09 17:37:50 t 1 2 81553 335 0.00 2019-08-09 17:31:56 2019-08-09 17:42:02 t 1 2 81559 212 0.00 2019-08-09 18:20:05 2019-08-09 18:23:33 t 1 2 81563 363 0.00 2019-08-09 18:34:14 2019-08-09 18:34:20 t 1 2 81564 335 0.00 2019-08-09 18:22:36 2019-08-09 18:42:42 t 1 2 81566 286 0.00 2019-08-09 19:01:36 2019-08-09 19:06:26 t 1 2 81568 335 0.00 2019-08-09 19:11:56 2019-08-09 19:11:56 f 1 2 81572 324 0.00 2019-08-09 19:11:12 2019-08-09 19:13:25 t 1 2 81574 324 0.00 2019-08-09 19:12:04 2019-08-09 19:14:08 t 1 2 81578 335 0.00 2019-08-09 19:12:47 2019-08-09 19:27:52 t 1 2 81581 288 0.00 2019-08-09 19:36:35 2019-08-09 19:37:40 t 1 2 81587 320 0.00 2019-08-09 19:54:10 2019-08-09 20:04:15 t 1 2 81589 335 0.00 2019-08-09 20:08:56 2019-08-09 20:19:01 t 1 2 81590 324 0.00 2019-08-09 20:10:36 2019-08-09 20:21:21 t 1 2 81593 335 0.00 2019-08-09 20:31:58 2019-08-09 20:42:04 t 1 2 81600 220 0.00 2019-08-09 19:57:18 2019-08-09 20:52:50 t 1 2 81602 353 0.00 2019-08-09 20:55:00 2019-08-09 20:56:05 t 1 2 81603 335 0.00 2019-08-09 20:58:28 2019-08-09 20:58:28 f 1 2 81610 335 0.00 2019-08-09 20:59:44 2019-08-09 20:59:44 f 1 2 81612 335 0.00 2019-08-09 21:00:16 2019-08-09 21:00:16 f 1 2 81615 217 0.00 2019-08-09 21:06:32 2019-08-09 21:06:32 f 1 2 81621 247 0.00 2019-08-09 21:23:58 2019-08-09 21:25:20 t 1 2 81624 361 0.00 2019-08-09 19:03:15 2019-08-09 21:31:45 t 1 2 81634 363 0.00 2019-08-09 22:18:54 2019-08-09 22:21:54 t 1 2 81637 363 0.00 2019-08-09 21:29:09 2019-08-09 22:24:14 t 1 2 81644 353 0.00 2019-08-09 22:51:18 2019-08-09 22:52:19 t 1 2 81650 349 0.00 2019-08-09 23:10:15 2019-08-09 23:11:20 t 1 2 81651 220 0.00 2019-08-09 23:06:08 2019-08-09 23:13:17 t 1 1 81653 296 0.00 2019-08-09 23:02:01 2019-08-09 23:15:24 t 1 2 81667 335 0.00 2019-08-09 23:34:55 2019-08-09 23:45:00 t 1 2 81673 220 0.00 2019-08-09 23:51:11 2019-08-09 23:51:34 t 1 1 81688 212 0.00 2019-08-10 00:19:25 2019-08-10 00:19:46 t 1 2 81691 302 0.00 2019-08-10 00:24:22 2019-08-10 00:24:30 t 1 2 81699 355 0.00 2019-08-10 00:06:50 2019-08-10 00:56:55 t 1 2 81706 335 0.00 2019-08-10 01:20:36 2019-08-10 01:30:42 t 1 2 81708 361 0.00 2019-08-09 23:30:59 2019-08-10 01:47:23 t 1 2 81710 335 0.00 2019-08-10 01:41:00 2019-08-10 01:56:05 t 1 2 81711 335 0.00 2019-08-10 01:54:13 2019-08-10 02:05:08 t 1 2 81727 288 0.00 2019-08-10 06:37:26 2019-08-10 06:38:31 t 1 2 81728 343 0.00 2019-08-10 01:21:35 2019-08-10 06:46:40 t 1 2 81729 320 0.00 2019-08-10 07:06:49 2019-08-10 07:16:54 t 1 2 81747 212 0.00 2019-08-10 09:07:02 2019-08-10 09:07:42 t 1 2 81749 251 0.00 2019-08-10 09:01:17 2019-08-10 09:16:22 t 1 2 81750 320 0.00 2019-08-10 08:41:57 2019-08-10 09:22:03 t 1 2 81752 304 0.00 2019-08-10 09:33:09 2019-08-10 09:33:21 t 1 2 81753 212 0.00 2019-08-10 09:38:10 2019-08-10 09:38:45 t 1 2 81758 304 0.00 2019-08-10 09:49:08 2019-08-10 09:49:23 t 1 2 81763 306 0.00 2019-08-10 10:01:46 2019-08-10 10:02:54 t 1 2 81765 346 0.00 2019-08-10 10:01:36 2019-08-10 10:23:33 t 1 2 81775 292 0.00 2019-08-10 10:58:49 2019-08-10 10:59:56 t 1 2 81781 331 0.00 2019-08-10 11:35:56 2019-08-10 11:37:00 t 1 2 81783 288 0.00 2019-08-10 11:38:29 2019-08-10 11:39:33 t 1 2 81790 288 0.00 2019-08-10 11:49:13 2019-08-10 11:50:20 t 1 2 81802 346 0.00 2019-08-10 12:25:06 2019-08-10 12:25:29 t 1 2 81804 251 0.00 2019-08-10 12:09:45 2019-08-10 12:29:50 t 1 2 81811 234 0.00 2019-08-10 12:59:08 2019-08-10 12:59:08 f 1 2 81819 212 0.00 2019-08-10 13:20:21 2019-08-10 13:20:27 t 1 2 81822 296 0.00 2019-08-10 13:16:03 2019-08-10 13:26:10 t 1 2 81829 327 0.00 2019-08-10 12:56:37 2019-08-10 13:57:00 t 1 2 81840 236 0.00 2019-08-10 14:57:28 2019-08-10 14:57:28 f 1 2 81844 251 0.00 2019-08-10 14:51:46 2019-08-10 15:01:51 t 1 2 81846 251 0.00 2019-08-10 14:54:55 2019-08-10 15:05:00 t 1 2 81850 335 0.00 2019-08-10 15:02:20 2019-08-10 15:22:25 t 1 2 81855 288 0.00 2019-08-10 15:25:47 2019-08-10 15:26:54 t 1 2 81858 288 0.00 2019-08-10 15:41:55 2019-08-10 15:43:02 t 1 2 81859 335 0.00 2019-08-10 15:35:58 2019-08-10 15:46:03 t 1 2 81865 304 0.00 2019-08-10 16:22:21 2019-08-10 16:22:25 t 1 2 81866 324 0.00 2019-08-10 16:22:18 2019-08-10 16:23:23 t 1 2 81869 333 0.00 2019-08-10 16:14:54 2019-08-10 16:28:20 t 1 2 81871 304 0.00 2019-08-10 16:22:38 2019-08-10 16:32:43 t 1 2 81877 288 0.00 2019-08-10 16:48:33 2019-08-10 16:49:40 t 1 2 81881 212 0.00 2019-08-10 17:02:26 2019-08-10 17:03:31 t 1 2 81883 288 0.00 2019-08-10 17:08:53 2019-08-10 17:09:59 t 1 2 81885 288 0.00 2019-08-10 17:13:15 2019-08-10 17:14:20 t 1 2 81888 304 0.00 2019-08-10 17:12:22 2019-08-10 17:22:27 t 1 2 81892 288 0.00 2019-08-10 17:46:40 2019-08-10 17:47:46 t 1 2 81896 320 0.00 2019-08-10 17:54:44 2019-08-10 18:04:50 t 1 2 81900 324 0.00 2019-08-10 18:12:24 2019-08-10 18:13:29 t 1 2 81902 349 0.00 2019-08-10 18:15:41 2019-08-10 18:16:46 t 1 2 81904 220 0.00 2019-08-10 17:48:15 2019-08-10 18:19:36 t 1 2 81906 335 0.00 2019-08-10 18:11:19 2019-08-10 18:21:24 t 1 2 81918 363 0.00 2019-08-10 18:28:13 2019-08-10 19:28:19 t 1 2 81920 335 0.00 2019-08-10 18:29:05 2019-08-10 19:29:10 t 1 2 81922 220 0.00 2019-08-10 19:37:28 2019-08-10 19:40:13 t 1 2 81932 355 0.00 2019-08-10 20:31:57 2019-08-10 20:37:57 t 1 2 81933 294 0.00 2019-08-10 19:40:30 2019-08-10 20:40:54 t 1 2 81934 320 0.00 2019-08-10 20:22:41 2019-08-10 20:42:46 t 1 2 81936 296 0.00 2019-08-10 20:52:31 2019-08-10 20:56:55 t 1 2 81940 320 0.00 2019-08-10 20:54:41 2019-08-10 21:04:46 t 1 2 81942 324 0.00 2019-08-10 20:49:41 2019-08-10 21:07:31 t 1 2 81946 367 0.00 2019-08-10 21:20:07 2019-08-10 21:20:14 t 1 2 81956 220 0.00 2019-08-10 21:19:46 2019-08-10 21:52:50 t 1 1 81957 220 0.00 2019-08-10 21:53:01 2019-08-10 21:53:11 t 1 1 81960 306 0.00 2019-08-10 21:52:46 2019-08-10 21:53:50 t 1 2 81991 220 0.00 2019-08-10 22:57:52 2019-08-10 23:09:31 t 1 1 81998 361 0.00 2019-08-10 22:47:30 2019-08-10 23:24:04 t 1 2 81714 302 0.00 2019-08-10 00:42:47 2019-08-10 02:17:52 t 1 2 81715 355 0.00 2019-08-10 02:05:32 2019-08-10 02:30:37 t 1 2 81717 335 0.00 2019-08-10 02:07:32 2019-08-10 02:42:37 t 1 2 81719 236 0.00 2019-08-10 01:58:02 2019-08-10 03:13:07 t 1 2 81722 324 0.00 2019-08-10 03:33:11 2019-08-10 03:58:16 t 1 2 81733 304 0.00 2019-08-10 07:45:06 2019-08-10 07:55:11 t 1 2 81734 306 0.00 2019-08-10 08:04:22 2019-08-10 08:05:28 t 1 2 81738 306 0.00 2019-08-10 08:18:34 2019-08-10 08:19:37 t 1 2 81739 306 0.00 2019-08-10 08:25:54 2019-08-10 08:26:57 t 1 2 81748 306 0.00 2019-08-10 09:07:15 2019-08-10 09:08:21 t 1 2 81756 306 0.00 2019-08-10 09:41:54 2019-08-10 09:42:55 t 1 2 81759 212 0.00 2019-08-10 09:50:35 2019-08-10 09:51:08 t 1 2 81760 286 0.00 2019-08-10 09:36:32 2019-08-10 09:56:37 t 1 2 81761 304 0.00 2019-08-10 09:49:35 2019-08-10 09:59:41 t 1 2 81767 286 0.00 2019-08-10 10:18:06 2019-08-10 10:28:11 t 1 2 81770 320 0.00 2019-08-10 10:26:06 2019-08-10 10:36:11 t 1 2 81771 296 0.00 2019-08-10 10:37:58 2019-08-10 10:39:22 t 1 2 81772 306 0.00 2019-08-10 10:42:31 2019-08-10 10:43:35 t 1 2 81773 306 0.00 2019-08-10 10:48:15 2019-08-10 10:49:18 t 1 2 81777 304 0.00 2019-08-10 10:56:58 2019-08-10 11:07:03 t 1 2 81784 320 0.00 2019-08-10 11:30:52 2019-08-10 11:40:58 t 1 2 81785 324 0.00 2019-08-10 11:40:38 2019-08-10 11:41:36 t 1 2 81787 217 0.00 2019-08-10 11:44:17 2019-08-10 11:44:17 f 1 2 81792 220 0.00 2019-08-10 11:41:27 2019-08-10 11:56:47 t 1 2 81798 288 0.00 2019-08-10 12:13:38 2019-08-10 12:14:43 t 1 2 81801 346 0.00 2019-08-10 11:39:40 2019-08-10 12:24:43 t 1 2 81805 247 0.00 2019-08-10 12:32:18 2019-08-10 12:35:15 t 1 2 81807 365 0.00 2019-08-10 12:32:01 2019-08-10 12:40:32 t 1 2 81808 272 0.00 2019-08-10 12:44:15 2019-08-10 12:44:21 t 1 2 81810 212 0.00 2019-08-10 12:53:52 2019-08-10 12:54:17 t 1 2 81812 320 0.00 2019-08-10 12:42:43 2019-08-10 13:02:49 t 1 2 81823 314 0.00 2019-08-10 13:25:21 2019-08-10 13:26:28 t 1 2 81824 324 0.00 2019-08-10 13:30:14 2019-08-10 13:35:38 t 1 2 81831 355 0.00 2019-08-10 11:50:38 2019-08-10 14:35:43 t 1 2 81834 304 0.00 2019-08-10 14:43:24 2019-08-10 14:43:30 t 1 2 81835 304 0.00 2019-08-10 14:42:13 2019-08-10 14:44:05 t 1 2 81837 296 0.00 2019-08-10 14:41:03 2019-08-10 14:49:27 t 1 2 81839 236 0.00 2019-08-10 14:51:26 2019-08-10 14:51:26 f 1 2 81842 251 0.00 2019-08-10 14:57:59 2019-08-10 14:57:59 f 1 2 81847 355 0.00 2019-08-10 15:05:41 2019-08-10 15:05:57 t 1 2 81852 220 0.00 2019-08-10 15:23:42 2019-08-10 15:24:47 t 1 2 81853 335 0.00 2019-08-10 15:15:20 2019-08-10 15:25:25 t 1 2 81856 339 0.00 2019-08-10 14:26:42 2019-08-10 15:27:14 t 1 2 81868 272 0.00 2019-08-10 13:41:30 2019-08-10 16:26:35 t 1 2 81872 335 0.00 2019-08-10 16:12:31 2019-08-10 16:37:36 t 1 2 81878 288 0.00 2019-08-10 16:52:36 2019-08-10 16:53:41 t 1 2 81880 288 0.00 2019-08-10 16:58:51 2019-08-10 16:59:59 t 1 2 81893 324 0.00 2019-08-10 17:48:30 2019-08-10 17:49:06 t 1 2 81897 304 0.00 2019-08-10 17:58:34 2019-08-10 18:08:39 t 1 2 81901 320 0.00 2019-08-10 18:05:53 2019-08-10 18:15:59 t 1 2 81903 349 0.00 2019-08-10 18:17:18 2019-08-10 18:18:25 t 1 2 81907 320 0.00 2019-08-10 18:13:39 2019-08-10 18:23:44 t 1 2 81909 335 0.00 2019-08-10 18:16:08 2019-08-10 18:26:13 t 1 2 81910 218 0.00 2019-08-10 18:28:11 2019-08-10 18:28:11 f 1 2 81912 251 0.00 2019-08-10 18:29:28 2019-08-10 18:39:33 t 1 2 81913 324 0.00 2019-08-10 18:56:34 2019-08-10 18:58:19 t 1 2 81923 320 0.00 2019-08-10 19:31:38 2019-08-10 19:41:43 t 1 2 81925 335 0.00 2019-08-10 19:41:12 2019-08-10 19:51:17 t 1 2 81927 288 0.00 2019-08-10 20:05:14 2019-08-10 20:06:18 t 1 2 81937 335 0.00 2019-08-10 20:38:38 2019-08-10 20:58:43 t 1 2 81951 367 0.00 2019-08-10 21:25:54 2019-08-10 21:28:12 t 1 2 81954 247 0.00 2019-08-10 21:45:04 2019-08-10 21:47:01 t 1 2 81958 361 0.00 2019-08-10 21:44:09 2019-08-10 21:53:12 t 1 2 81961 335 0.00 2019-08-10 21:44:46 2019-08-10 21:54:51 t 1 2 81963 320 0.00 2019-08-10 21:47:33 2019-08-10 21:57:38 t 1 2 81964 335 0.00 2019-08-10 21:57:09 2019-08-10 22:07:14 t 1 2 81968 349 0.00 2019-08-10 22:15:50 2019-08-10 22:16:57 t 1 2 81969 349 0.00 2019-08-10 22:17:10 2019-08-10 22:18:16 t 1 2 81971 220 0.00 2019-08-10 22:13:06 2019-08-10 22:19:38 t 1 1 81974 349 0.00 2019-08-10 22:21:01 2019-08-10 22:22:09 t 1 2 81976 206 0.00 2019-08-10 22:27:26 2019-08-10 22:27:26 f 1 2 81985 320 0.00 2019-08-10 22:42:44 2019-08-10 22:52:49 t 1 2 81988 212 0.00 2019-08-10 22:55:20 2019-08-10 22:58:53 t 1 2 81994 306 0.00 2019-08-10 23:16:37 2019-08-10 23:17:42 t 1 2 81996 288 0.00 2019-08-10 23:21:02 2019-08-10 23:22:07 t 1 2 81999 288 0.00 2019-08-10 23:23:21 2019-08-10 23:24:26 t 1 2 82003 220 0.00 2019-08-10 23:25:06 2019-08-10 23:28:40 t 1 1 82004 212 0.00 2019-08-10 23:36:13 2019-08-10 23:40:06 t 1 2 82007 247 0.00 2019-08-10 23:47:53 2019-08-10 23:50:31 t 1 2 82008 304 0.00 2019-08-10 23:42:45 2019-08-10 23:52:50 t 1 2 82011 324 0.00 2019-08-11 00:03:55 2019-08-11 00:09:30 t 1 2 82021 212 0.00 2019-08-11 01:37:21 2019-08-11 01:38:09 t 1 2 82023 346 0.00 2019-08-11 01:27:56 2019-08-11 02:33:02 t 1 2 82029 302 0.00 2019-08-11 03:32:26 2019-08-11 03:47:31 t 1 2 82030 324 0.00 2019-08-11 02:42:01 2019-08-11 04:25:54 t 1 2 82033 294 0.00 2019-08-11 04:51:35 2019-08-11 05:51:58 t 1 2 82034 346 0.00 2019-08-11 05:52:03 2019-08-11 06:02:08 t 1 2 82035 324 0.00 2019-08-11 06:11:24 2019-08-11 06:12:31 t 1 2 82038 220 0.00 2019-08-11 06:24:19 2019-08-11 06:25:02 t 1 1 82039 220 0.00 2019-08-11 06:25:10 2019-08-11 06:25:17 t 1 1 82042 220 0.00 2019-08-11 06:45:48 2019-08-11 06:45:48 t 1 1 82043 220 0.00 2019-08-11 06:45:56 2019-08-11 06:46:04 t 1 1 82049 220 0.00 2019-08-11 06:48:34 2019-08-11 06:48:49 t 1 1 82054 220 0.00 2019-08-11 06:51:52 2019-08-11 06:52:53 t 1 1 82059 220 0.00 2019-08-11 07:06:55 2019-08-11 07:07:04 t 1 1 82062 220 0.00 2019-08-11 07:09:56 2019-08-11 07:10:05 t 1 1 82067 220 0.00 2019-08-11 07:23:59 2019-08-11 07:23:59 t 1 1 82070 320 0.00 2019-08-11 07:15:54 2019-08-11 07:25:59 t 1 2 82071 220 0.00 2019-08-11 07:26:01 2019-08-11 07:26:10 t 1 1 82074 220 0.00 2019-08-11 07:33:08 2019-08-11 07:33:09 t 1 1 82075 220 0.00 2019-08-11 07:33:16 2019-08-11 07:33:24 t 1 1 82082 220 0.00 2019-08-11 07:35:43 2019-08-11 07:35:44 t 1 1 82086 220 0.00 2019-08-11 07:43:18 2019-08-11 07:43:26 t 1 1 82094 217 0.00 2019-08-11 08:00:05 2019-08-11 08:00:05 f 1 2 82098 220 0.00 2019-08-11 08:07:42 2019-08-11 08:07:49 t 1 1 82105 220 0.00 2019-08-11 08:10:24 2019-08-11 08:10:41 t 1 1 82109 251 0.00 2019-08-11 07:51:34 2019-08-11 08:16:40 t 1 2 81827 304 0.00 2019-08-10 13:39:24 2019-08-10 13:49:29 t 1 2 81828 247 0.00 2019-08-10 13:55:09 2019-08-10 13:56:17 t 1 2 81830 247 0.00 2019-08-10 14:01:54 2019-08-10 14:03:16 t 1 2 81832 304 0.00 2019-08-10 14:39:35 2019-08-10 14:41:13 t 1 2 81836 335 0.00 2019-08-10 13:57:57 2019-08-10 14:48:03 t 1 2 81843 320 0.00 2019-08-10 13:05:41 2019-08-10 15:00:46 t 1 2 81845 304 0.00 2019-08-10 14:43:45 2019-08-10 15:03:50 t 1 2 81848 304 0.00 2019-08-10 14:56:58 2019-08-10 15:17:03 t 1 2 81851 220 0.00 2019-08-10 15:21:40 2019-08-10 15:22:44 t 1 2 81854 220 0.00 2019-08-10 15:25:00 2019-08-10 15:26:06 t 1 2 81860 304 0.00 2019-08-10 15:44:01 2019-08-10 15:54:06 t 1 2 81861 346 0.00 2019-08-10 15:15:20 2019-08-10 16:10:06 t 1 2 81864 349 0.00 2019-08-10 16:17:43 2019-08-10 16:18:48 t 1 2 81867 324 0.00 2019-08-10 16:23:44 2019-08-10 16:24:19 t 1 2 81874 220 0.00 2019-08-10 16:22:32 2019-08-10 16:38:55 t 1 2 81875 349 0.00 2019-08-10 16:41:33 2019-08-10 16:42:37 t 1 2 81876 320 0.00 2019-08-10 14:54:48 2019-08-10 16:44:53 t 1 2 81886 288 0.00 2019-08-10 17:16:24 2019-08-10 17:17:30 t 1 2 81887 346 0.00 2019-08-10 17:17:16 2019-08-10 17:19:15 t 1 2 81889 288 0.00 2019-08-10 17:21:37 2019-08-10 17:22:41 t 1 2 81890 320 0.00 2019-08-10 17:36:27 2019-08-10 17:46:33 t 1 2 81895 217 0.00 2019-08-10 17:56:22 2019-08-10 17:56:22 f 1 2 81898 294 0.00 2019-08-10 17:08:43 2019-08-10 18:09:03 t 1 2 81914 320 0.00 2019-08-10 18:54:49 2019-08-10 19:04:54 t 1 2 81917 357 0.00 2019-08-10 16:47:15 2019-08-10 19:27:20 t 1 2 81921 294 0.00 2019-08-10 18:34:06 2019-08-10 19:34:27 t 1 2 81924 212 0.00 2019-08-10 19:46:10 2019-08-10 19:46:33 t 1 2 81928 320 0.00 2019-08-10 20:03:15 2019-08-10 20:28:20 t 1 2 81929 247 0.00 2019-08-10 20:30:42 2019-08-10 20:31:24 t 1 2 81930 335 0.00 2019-08-10 20:24:12 2019-08-10 20:34:17 t 1 2 81931 346 0.00 2019-08-10 20:27:09 2019-08-10 20:37:14 t 1 2 81935 320 0.00 2019-08-10 20:42:22 2019-08-10 20:52:27 t 1 2 81938 304 0.00 2019-08-10 20:52:04 2019-08-10 21:02:10 t 1 2 81939 335 0.00 2019-08-10 20:54:00 2019-08-10 21:04:05 t 1 2 81944 335 0.00 2019-08-10 21:09:35 2019-08-10 21:19:41 t 1 2 81947 357 0.00 2019-08-10 20:19:07 2019-08-10 21:24:12 t 1 2 81949 367 0.00 2019-08-10 21:25:28 2019-08-10 21:25:31 t 1 2 81953 212 0.00 2019-08-10 21:40:49 2019-08-10 21:41:58 t 1 2 81955 320 0.00 2019-08-10 21:47:01 2019-08-10 21:47:14 t 1 2 81965 220 0.00 2019-08-10 21:53:30 2019-08-10 22:09:57 t 1 1 81972 335 0.00 2019-08-10 22:10:03 2019-08-10 22:20:08 t 1 2 81978 217 0.00 2019-08-10 22:31:37 2019-08-10 22:31:37 f 1 2 81980 335 0.00 2019-08-10 22:14:12 2019-08-10 22:34:17 t 1 2 81982 320 0.00 2019-08-10 22:31:59 2019-08-10 22:42:04 t 1 2 81986 247 0.00 2019-08-10 22:51:35 2019-08-10 22:53:13 t 1 2 81989 335 0.00 2019-08-10 22:56:26 2019-08-10 23:06:32 t 1 2 81992 212 0.00 2019-08-10 23:10:25 2019-08-10 23:11:43 t 1 2 81997 212 0.00 2019-08-10 23:22:35 2019-08-10 23:22:55 t 1 2 82002 288 0.00 2019-08-10 23:26:42 2019-08-10 23:27:46 t 1 2 82009 212 0.00 2019-08-11 00:00:00 2019-08-11 00:00:59 t 1 2 82010 247 0.00 2019-08-11 00:06:20 2019-08-11 00:07:27 t 1 2 82014 294 0.00 2019-08-10 23:57:55 2019-08-11 00:58:20 t 1 2 82019 346 0.00 2019-08-11 01:27:19 2019-08-11 01:27:37 t 1 2 82020 346 0.00 2019-08-11 01:27:42 2019-08-11 01:27:50 t 1 2 82022 320 0.00 2019-08-10 23:19:12 2019-08-11 02:04:17 t 1 2 82027 355 0.00 2019-08-11 01:26:00 2019-08-11 03:31:05 t 1 2 82031 302 0.00 2019-08-11 03:41:57 2019-08-11 05:17:02 t 1 2 82036 220 0.00 2019-08-11 06:21:54 2019-08-11 06:22:51 t 1 1 82040 220 0.00 2019-08-11 06:35:38 2019-08-11 06:35:51 t 1 1 82044 220 0.00 2019-08-11 06:46:48 2019-08-11 06:46:56 t 1 1 82045 220 0.00 2019-08-11 06:47:03 2019-08-11 06:47:11 t 1 1 82050 220 0.00 2019-08-11 06:49:51 2019-08-11 06:49:59 t 1 1 82055 247 0.00 2019-08-11 06:52:00 2019-08-11 06:56:17 t 1 2 82056 220 0.00 2019-08-11 06:58:54 2019-08-11 06:59:03 t 1 1 82060 220 0.00 2019-08-11 07:07:55 2019-08-11 07:08:02 t 1 1 82063 220 0.00 2019-08-11 07:10:56 2019-08-11 07:11:03 t 1 1 82068 220 0.00 2019-08-11 07:24:07 2019-08-11 07:24:07 t 1 1 82072 220 0.00 2019-08-11 07:27:02 2019-08-11 07:27:03 t 1 1 82083 220 0.00 2019-08-11 07:40:15 2019-08-11 07:40:24 t 1 1 82088 320 0.00 2019-08-11 07:34:35 2019-08-11 07:44:41 t 1 2 82089 220 0.00 2019-08-11 07:45:20 2019-08-11 07:45:27 t 1 1 82092 220 0.00 2019-08-11 07:55:32 2019-08-11 07:55:42 t 1 1 82093 220 0.00 2019-08-11 07:55:51 2019-08-11 07:55:52 t 1 1 82106 220 0.00 2019-08-11 08:11:45 2019-08-11 08:11:46 t 1 1 82112 220 0.00 2019-08-11 08:23:04 2019-08-11 08:24:04 t 1 1 82117 220 0.00 2019-08-11 08:33:06 2019-08-11 08:33:13 t 1 1 82119 220 0.00 2019-08-11 08:34:07 2019-08-11 08:35:07 t 1 1 82120 220 0.00 2019-08-11 08:35:08 2019-08-11 08:36:09 t 1 1 82130 320 0.00 2019-08-11 07:43:42 2019-08-11 08:53:47 t 1 2 82133 220 0.00 2019-08-11 09:00:33 2019-08-11 09:00:41 t 1 1 82139 306 0.00 2019-08-11 09:05:06 2019-08-11 09:06:09 t 1 2 82153 220 0.00 2019-08-11 09:27:00 2019-08-11 09:27:09 t 1 1 82155 220 0.00 2019-08-11 09:28:10 2019-08-11 09:28:17 t 1 1 82159 304 0.00 2019-08-11 09:28:58 2019-08-11 09:31:58 t 1 2 82174 220 0.00 2019-08-11 09:41:30 2019-08-11 09:41:38 t 1 1 82175 320 0.00 2019-08-11 09:31:53 2019-08-11 09:41:58 t 1 2 82176 306 0.00 2019-08-11 09:42:07 2019-08-11 09:42:11 t 1 2 82180 220 0.00 2019-08-11 09:43:32 2019-08-11 09:43:39 t 1 1 82181 220 0.00 2019-08-11 09:43:46 2019-08-11 09:44:34 t 1 1 82182 220 0.00 2019-08-11 09:45:19 2019-08-11 09:45:26 t 1 1 82186 220 0.00 2019-08-11 09:47:21 2019-08-11 09:48:21 t 1 1 82187 296 0.00 2019-08-11 09:30:31 2019-08-11 09:49:54 t 1 2 82189 220 0.00 2019-08-11 09:54:28 2019-08-11 09:54:36 t 1 1 82192 220 0.00 2019-08-11 09:57:31 2019-08-11 09:57:38 t 1 1 82198 355 0.00 2019-08-11 10:01:15 2019-08-11 10:02:02 t 1 2 82199 220 0.00 2019-08-11 10:02:36 2019-08-11 10:02:45 t 1 1 82206 220 0.00 2019-08-11 10:13:47 2019-08-11 10:14:47 t 1 1 82212 220 0.00 2019-08-11 10:20:07 2019-08-11 10:20:53 t 1 1 82220 320 0.00 2019-08-11 10:15:26 2019-08-11 10:25:31 t 1 2 82227 220 0.00 2019-08-11 10:28:34 2019-08-11 10:29:02 t 1 1 82231 220 0.00 2019-08-11 10:31:07 2019-08-11 10:31:15 t 1 1 82232 220 0.00 2019-08-11 10:31:22 2019-08-11 10:31:30 t 1 1 82238 220 0.00 2019-08-11 10:40:15 2019-08-11 10:40:16 t 1 1 82240 220 0.00 2019-08-11 10:48:22 2019-08-11 10:48:22 t 1 1 82241 220 0.00 2019-08-11 10:48:30 2019-08-11 10:48:31 t 1 1 82246 220 0.00 2019-08-11 10:52:26 2019-08-11 10:52:26 t 1 1 82250 220 0.00 2019-08-11 10:59:32 2019-08-11 10:59:43 t 1 1 81911 320 0.00 2019-08-10 18:19:58 2019-08-10 18:35:03 t 1 2 81915 296 0.00 2019-08-10 18:57:06 2019-08-10 19:05:30 t 1 2 81916 304 0.00 2019-08-10 19:00:55 2019-08-10 19:11:00 t 1 2 81919 320 0.00 2019-08-10 19:18:46 2019-08-10 19:28:51 t 1 2 81926 324 0.00 2019-08-10 20:03:59 2019-08-10 20:04:12 t 1 2 81941 320 0.00 2019-08-10 20:57:02 2019-08-10 21:07:08 t 1 2 81943 335 0.00 2019-08-10 20:59:33 2019-08-10 21:14:38 t 1 2 81945 251 0.00 2019-08-10 21:09:40 2019-08-10 21:19:45 t 1 2 81948 367 0.00 2019-08-10 21:24:34 2019-08-10 21:24:37 t 1 2 81950 367 0.00 2019-08-10 21:25:39 2019-08-10 21:25:42 t 1 2 81952 335 0.00 2019-08-10 21:29:07 2019-08-10 21:39:12 t 1 2 81959 247 0.00 2019-08-10 21:51:20 2019-08-10 21:53:46 t 1 2 81962 306 0.00 2019-08-10 21:54:32 2019-08-10 21:55:38 t 1 2 81966 346 0.00 2019-08-10 22:11:11 2019-08-10 22:12:16 t 1 2 81967 349 0.00 2019-08-10 22:14:31 2019-08-10 22:15:37 t 1 2 81970 349 0.00 2019-08-10 22:18:24 2019-08-10 22:19:31 t 1 2 81973 320 0.00 2019-08-10 21:50:18 2019-08-10 22:20:23 t 1 2 81975 327 0.00 2019-08-10 21:25:18 2019-08-10 22:25:41 t 1 2 81977 206 0.00 2019-08-10 22:27:36 2019-08-10 22:27:36 f 1 2 81979 324 0.00 2019-08-10 22:31:59 2019-08-10 22:32:40 t 1 2 81981 363 0.00 2019-08-10 19:34:29 2019-08-10 22:34:34 t 1 2 81983 220 0.00 2019-08-10 22:39:01 2019-08-10 22:47:57 t 1 1 81984 212 0.00 2019-08-10 22:17:36 2019-08-10 22:51:05 t 1 2 81987 220 0.00 2019-08-10 22:47:57 2019-08-10 22:57:52 t 1 1 81990 308 0.00 2019-08-10 22:41:29 2019-08-10 23:06:34 t 1 2 81993 247 0.00 2019-08-10 23:15:29 2019-08-10 23:16:11 t 1 2 81995 220 0.00 2019-08-10 23:09:31 2019-08-10 23:19:22 t 1 1 82000 220 0.00 2019-08-10 23:19:22 2019-08-10 23:25:06 t 1 1 82005 288 0.00 2019-08-10 23:39:53 2019-08-10 23:40:58 t 1 2 82015 361 0.00 2019-08-11 00:24:32 2019-08-11 01:03:39 t 1 2 82017 355 0.00 2019-08-11 00:21:18 2019-08-11 01:16:24 t 1 2 82025 363 0.00 2019-08-11 01:18:49 2019-08-11 02:53:54 t 1 2 82026 302 0.00 2019-08-11 02:43:42 2019-08-11 03:18:47 t 1 2 82028 302 0.00 2019-08-11 03:15:27 2019-08-11 03:40:32 t 1 2 82032 346 0.00 2019-08-11 05:51:38 2019-08-11 05:51:44 t 1 2 82037 220 0.00 2019-08-11 06:22:51 2019-08-11 06:24:19 t 1 1 82041 220 0.00 2019-08-11 06:44:48 2019-08-11 06:45:00 t 1 1 82053 346 0.00 2019-08-11 06:37:41 2019-08-11 06:52:46 t 1 2 82058 218 0.00 2019-08-11 07:06:37 2019-08-11 07:06:37 f 1 2 82061 220 0.00 2019-08-11 07:08:56 2019-08-11 07:09:03 t 1 1 82064 220 0.00 2019-08-11 07:11:56 2019-08-11 07:12:56 t 1 1 82073 220 0.00 2019-08-11 07:32:07 2019-08-11 07:32:16 t 1 1 82076 320 0.00 2019-08-11 07:24:04 2019-08-11 07:33:53 t 1 2 82077 220 0.00 2019-08-11 07:34:09 2019-08-11 07:34:18 t 1 1 82078 220 0.00 2019-08-11 07:35:10 2019-08-11 07:35:11 t 1 1 82079 220 0.00 2019-08-11 07:35:18 2019-08-11 07:35:19 t 1 1 82080 220 0.00 2019-08-11 07:35:27 2019-08-11 07:35:27 t 1 1 82081 220 0.00 2019-08-11 07:35:35 2019-08-11 07:35:35 t 1 1 82085 220 0.00 2019-08-11 07:42:17 2019-08-11 07:42:25 t 1 1 82087 220 0.00 2019-08-11 07:44:19 2019-08-11 07:44:26 t 1 1 82091 220 0.00 2019-08-11 07:47:22 2019-08-11 07:47:29 t 1 1 82095 220 0.00 2019-08-11 08:02:40 2019-08-11 08:02:49 t 1 1 82096 220 0.00 2019-08-11 08:05:40 2019-08-11 08:05:56 t 1 1 82097 220 0.00 2019-08-11 08:06:41 2019-08-11 08:06:49 t 1 1 82102 220 0.00 2019-08-11 08:09:44 2019-08-11 08:09:52 t 1 1 82103 220 0.00 2019-08-11 08:09:59 2019-08-11 08:10:08 t 1 1 82104 220 0.00 2019-08-11 08:10:15 2019-08-11 08:10:17 t 1 1 82111 220 0.00 2019-08-11 08:22:56 2019-08-11 08:22:56 t 1 1 82114 220 0.00 2019-08-11 08:30:03 2019-08-11 08:30:11 t 1 1 82118 346 0.00 2019-08-11 08:06:02 2019-08-11 08:34:14 t 1 2 82121 220 0.00 2019-08-11 08:42:17 2019-08-11 08:42:27 t 1 1 82124 304 0.00 2019-08-11 08:32:05 2019-08-11 08:47:10 t 1 2 82126 220 0.00 2019-08-11 08:50:23 2019-08-11 08:50:23 t 1 1 82127 220 0.00 2019-08-11 08:51:24 2019-08-11 08:51:32 t 1 1 82131 306 0.00 2019-08-11 08:58:05 2019-08-11 08:59:08 t 1 2 82138 220 0.00 2019-08-11 09:05:38 2019-08-11 09:05:38 t 1 1 82140 220 0.00 2019-08-11 09:05:46 2019-08-11 09:06:46 t 1 1 82142 306 0.00 2019-08-11 09:10:20 2019-08-11 09:11:22 t 1 2 82144 288 0.00 2019-08-11 09:12:01 2019-08-11 09:13:03 t 1 2 82145 220 0.00 2019-08-11 09:13:07 2019-08-11 09:13:44 t 1 1 82146 220 0.00 2019-08-11 09:03:20 2019-08-11 09:16:41 t 1 2 82147 220 0.00 2019-08-11 09:16:50 2019-08-11 09:17:04 t 1 1 82151 320 0.00 2019-08-11 09:10:05 2019-08-11 09:20:11 t 1 2 82161 320 0.00 2019-08-11 09:23:24 2019-08-11 09:33:29 t 1 2 82162 346 0.00 2019-08-11 08:40:11 2019-08-11 09:35:14 t 1 2 82168 220 0.00 2019-08-11 09:38:10 2019-08-11 09:38:18 t 1 1 82171 220 0.00 2019-08-11 09:40:13 2019-08-11 09:40:14 t 1 1 82172 220 0.00 2019-08-11 09:40:21 2019-08-11 09:40:28 t 1 1 82179 220 0.00 2019-08-11 09:43:17 2019-08-11 09:43:24 t 1 1 82184 306 0.00 2019-08-11 09:44:55 2019-08-11 09:45:59 t 1 2 82185 220 0.00 2019-08-11 09:46:20 2019-08-11 09:46:27 t 1 1 82188 288 0.00 2019-08-11 09:51:41 2019-08-11 09:52:47 t 1 2 82194 220 0.00 2019-08-11 09:59:32 2019-08-11 09:59:40 t 1 1 82195 220 0.00 2019-08-11 10:00:34 2019-08-11 10:00:42 t 1 1 82201 286 0.00 2019-08-11 09:51:56 2019-08-11 10:07:01 t 1 2 82202 320 0.00 2019-08-11 09:58:33 2019-08-11 10:08:38 t 1 2 82205 288 0.00 2019-08-11 10:12:47 2019-08-11 10:13:53 t 1 2 82208 220 0.00 2019-08-11 10:16:50 2019-08-11 10:16:57 t 1 1 82214 220 0.00 2019-08-11 10:22:56 2019-08-11 10:23:05 t 1 1 82218 220 0.00 2019-08-11 10:24:43 2019-08-11 10:24:55 t 1 1 82223 220 0.00 2019-08-11 10:26:30 2019-08-11 10:26:37 t 1 1 82224 220 0.00 2019-08-11 10:26:44 2019-08-11 10:26:59 t 1 1 82226 220 0.00 2019-08-11 10:28:18 2019-08-11 10:28:27 t 1 1 82242 220 0.00 2019-08-11 10:48:39 2019-08-11 10:48:46 t 1 1 82243 220 0.00 2019-08-11 10:49:23 2019-08-11 10:49:30 t 1 1 82247 308 0.00 2019-08-11 10:50:53 2019-08-11 10:53:17 t 1 2 82251 220 0.00 2019-08-11 11:00:32 2019-08-11 11:01:58 t 1 1 82254 220 0.00 2019-08-11 11:14:37 2019-08-11 11:14:46 t 1 1 82262 288 0.00 2019-08-11 11:21:22 2019-08-11 11:22:25 t 1 2 82266 220 0.00 2019-08-11 11:27:41 2019-08-11 11:27:49 t 1 1 82271 220 0.00 2019-08-11 11:30:43 2019-08-11 11:30:52 t 1 1 82273 220 0.00 2019-08-11 11:32:43 2019-08-11 11:33:44 t 1 1 82282 288 0.00 2019-08-11 11:45:37 2019-08-11 11:46:42 t 1 2 82283 220 0.00 2019-08-11 11:46:51 2019-08-11 11:47:00 t 1 1 82284 220 0.00 2019-08-11 11:47:51 2019-08-11 11:48:00 t 1 1 82290 324 0.00 2019-08-11 11:35:53 2019-08-11 11:50:58 t 1 2 82298 288 0.00 2019-08-11 11:56:55 2019-08-11 11:58:01 t 1 2 82001 294 0.00 2019-08-10 22:25:43 2019-08-10 23:26:06 t 1 2 82006 220 0.00 2019-08-10 23:47:24 2019-08-10 23:49:47 t 1 2 82012 355 0.00 2019-08-10 22:47:35 2019-08-11 00:17:40 t 1 2 82013 251 0.00 2019-08-11 00:08:40 2019-08-11 00:23:45 t 1 2 82016 346 0.00 2019-08-11 00:24:06 2019-08-11 01:03:42 t 1 2 82018 363 0.00 2019-08-10 22:36:51 2019-08-11 01:21:57 t 1 2 82024 339 0.00 2019-08-11 00:56:42 2019-08-11 02:53:05 t 1 2 82046 220 0.00 2019-08-11 06:47:48 2019-08-11 06:47:55 t 1 1 82047 220 0.00 2019-08-11 06:48:03 2019-08-11 06:48:11 t 1 1 82048 220 0.00 2019-08-11 06:48:18 2019-08-11 06:48:27 t 1 1 82051 220 0.00 2019-08-11 06:50:51 2019-08-11 06:50:59 t 1 1 82052 220 0.00 2019-08-11 06:51:06 2019-08-11 06:51:15 t 1 1 82057 220 0.00 2019-08-11 06:59:54 2019-08-11 06:59:55 t 1 1 82065 220 0.00 2019-08-11 07:15:59 2019-08-11 07:16:11 t 1 1 82066 220 0.00 2019-08-11 07:22:59 2019-08-11 07:23:10 t 1 1 82069 220 0.00 2019-08-11 07:25:00 2019-08-11 07:25:01 t 1 1 82084 220 0.00 2019-08-11 07:41:16 2019-08-11 07:41:24 t 1 1 82090 220 0.00 2019-08-11 07:46:21 2019-08-11 07:46:30 t 1 1 82099 220 0.00 2019-08-11 08:08:43 2019-08-11 08:08:50 t 1 1 82100 220 0.00 2019-08-11 08:08:58 2019-08-11 08:09:06 t 1 1 82101 220 0.00 2019-08-11 08:09:13 2019-08-11 08:09:21 t 1 1 82107 220 0.00 2019-08-11 08:15:51 2019-08-11 08:16:02 t 1 1 82108 220 0.00 2019-08-11 08:16:12 2019-08-11 08:16:13 t 1 1 82110 220 0.00 2019-08-11 08:21:55 2019-08-11 08:22:03 t 1 1 82113 288 0.00 2019-08-11 08:28:22 2019-08-11 08:29:25 t 1 2 82125 220 0.00 2019-08-11 08:49:22 2019-08-11 08:49:30 t 1 1 82129 220 0.00 2019-08-11 08:52:25 2019-08-11 08:53:25 t 1 1 82134 220 0.00 2019-08-11 09:01:34 2019-08-11 09:01:42 t 1 1 82135 220 0.00 2019-08-11 09:02:35 2019-08-11 09:02:36 t 1 1 82136 220 0.00 2019-08-11 09:03:36 2019-08-11 09:03:43 t 1 1 82141 212 0.00 2019-08-11 09:08:26 2019-08-11 09:09:29 t 1 2 82143 220 0.00 2019-08-11 09:12:47 2019-08-11 09:12:57 t 1 1 82149 220 0.00 2019-08-11 09:18:52 2019-08-11 09:18:53 t 1 1 82150 220 0.00 2019-08-11 09:19:00 2019-08-11 09:19:08 t 1 1 82154 220 0.00 2019-08-11 09:28:01 2019-08-11 09:28:02 t 1 1 82157 220 0.00 2019-08-11 09:29:02 2019-08-11 09:30:03 t 1 1 82158 220 0.00 2019-08-11 09:31:04 2019-08-11 09:31:13 t 1 1 82160 220 0.00 2019-08-11 09:32:05 2019-08-11 09:33:05 t 1 1 82164 304 0.00 2019-08-11 09:20:40 2019-08-11 09:35:46 t 1 2 82165 220 0.00 2019-08-11 09:36:09 2019-08-11 09:36:21 t 1 1 82167 220 0.00 2019-08-11 09:37:11 2019-08-11 09:37:53 t 1 2 82169 220 0.00 2019-08-11 09:38:04 2019-08-11 09:39:11 t 1 2 82170 220 0.00 2019-08-11 09:39:11 2019-08-11 09:39:20 t 1 1 82177 220 0.00 2019-08-11 09:41:45 2019-08-11 09:42:13 t 1 1 82178 306 0.00 2019-08-11 09:42:13 2019-08-11 09:43:18 t 1 2 82183 220 0.00 2019-08-11 09:45:34 2019-08-11 09:45:42 t 1 1 82190 220 0.00 2019-08-11 09:55:29 2019-08-11 09:55:36 t 1 1 82193 220 0.00 2019-08-11 09:58:32 2019-08-11 09:58:39 t 1 1 82204 220 0.00 2019-08-11 10:11:45 2019-08-11 10:12:45 t 1 1 82207 220 0.00 2019-08-11 10:15:49 2019-08-11 10:16:02 t 1 1 82210 320 0.00 2019-08-11 10:08:51 2019-08-11 10:18:56 t 1 2 82213 220 0.00 2019-08-11 10:21:56 2019-08-11 10:22:04 t 1 1 82215 220 0.00 2019-08-11 10:23:58 2019-08-11 10:24:06 t 1 1 82216 220 0.00 2019-08-11 10:24:13 2019-08-11 10:24:21 t 1 1 82217 220 0.00 2019-08-11 10:24:28 2019-08-11 10:24:36 t 1 1 82221 220 0.00 2019-08-11 10:25:59 2019-08-11 10:26:07 t 1 1 82222 220 0.00 2019-08-11 10:26:14 2019-08-11 10:26:23 t 1 1 82228 220 0.00 2019-08-11 10:30:06 2019-08-11 10:30:14 t 1 1 82229 220 0.00 2019-08-11 10:30:21 2019-08-11 10:30:28 t 1 1 82233 220 0.00 2019-08-11 10:31:38 2019-08-11 10:31:46 t 1 1 82234 220 0.00 2019-08-11 10:32:08 2019-08-11 10:32:09 t 1 1 82235 220 0.00 2019-08-11 10:32:16 2019-08-11 10:32:17 t 1 1 82236 320 0.00 2019-08-11 10:23:50 2019-08-11 10:33:55 t 1 2 82249 288 0.00 2019-08-11 10:56:37 2019-08-11 10:57:42 t 1 2 82258 220 0.00 2019-08-11 11:17:38 2019-08-11 11:17:46 t 1 1 82261 288 0.00 2019-08-11 11:19:51 2019-08-11 11:20:56 t 1 2 82263 217 0.00 2019-08-11 11:25:39 2019-08-11 11:25:39 f 1 2 82264 220 0.00 2019-08-11 11:25:41 2019-08-11 11:25:50 t 1 1 82265 220 0.00 2019-08-11 11:26:42 2019-08-11 11:26:50 t 1 1 82270 306 0.00 2019-08-11 11:29:42 2019-08-11 11:30:44 t 1 2 82285 288 0.00 2019-08-11 11:47:34 2019-08-11 11:48:38 t 1 2 82289 220 0.00 2019-08-11 11:50:14 2019-08-11 11:50:22 t 1 1 82296 288 0.00 2019-08-11 11:55:21 2019-08-11 11:56:24 t 1 2 82297 220 0.00 2019-08-11 11:56:55 2019-08-11 11:57:04 t 1 1 82302 288 0.00 2019-08-11 11:58:21 2019-08-11 11:59:25 t 1 2 82304 288 0.00 2019-08-11 12:01:49 2019-08-11 12:02:53 t 1 2 82309 288 0.00 2019-08-11 12:05:26 2019-08-11 12:06:32 t 1 2 82315 288 0.00 2019-08-11 12:11:23 2019-08-11 12:12:31 t 1 2 82318 220 0.00 2019-08-11 12:14:02 2019-08-11 12:15:03 t 1 1 82326 288 0.00 2019-08-11 12:22:35 2019-08-11 12:23:43 t 1 2 82328 220 0.00 2019-08-11 12:25:07 2019-08-11 12:25:15 t 1 1 82342 306 0.00 2019-08-11 12:37:03 2019-08-11 12:38:07 t 1 2 82350 212 0.00 2019-08-11 12:46:51 2019-08-11 12:47:26 t 1 2 82351 288 0.00 2019-08-11 12:48:35 2019-08-11 12:49:40 t 1 2 82353 220 0.00 2019-08-11 12:54:40 2019-08-11 12:55:21 t 1 1 82364 220 0.00 2019-08-11 12:58:53 2019-08-11 12:59:02 t 1 1 82365 220 0.00 2019-08-11 12:59:10 2019-08-11 12:59:17 t 1 1 82369 220 0.00 2019-08-11 13:00:00 2019-08-11 13:00:08 t 1 1 82370 220 0.00 2019-08-11 13:00:16 2019-08-11 13:00:17 t 1 1 82371 220 0.00 2019-08-11 13:00:20 2019-08-11 13:06:48 t 1 1 82374 220 0.00 2019-08-11 13:07:47 2019-08-11 13:07:56 t 1 1 82378 220 0.00 2019-08-11 13:15:51 2019-08-11 13:16:00 t 1 1 82380 220 0.00 2019-08-11 13:16:51 2019-08-11 13:17:14 t 1 1 82383 306 0.00 2019-08-11 13:17:34 2019-08-11 13:18:39 t 1 2 82385 220 0.00 2019-08-11 13:18:52 2019-08-11 13:19:29 t 1 1 82387 220 0.00 2019-08-11 13:19:29 2019-08-11 13:25:56 t 1 1 82390 220 0.00 2019-08-11 13:26:56 2019-08-11 13:27:05 t 1 1 82392 212 0.00 2019-08-11 13:37:29 2019-08-11 13:38:46 t 1 2 82403 251 0.00 2019-08-11 13:24:20 2019-08-11 13:44:25 t 1 2 82409 346 0.00 2019-08-11 13:23:08 2019-08-11 13:53:13 t 1 2 82412 220 0.00 2019-08-11 13:55:08 2019-08-11 13:55:16 t 1 1 82418 346 0.00 2019-08-11 13:56:31 2019-08-11 14:09:00 t 1 2 82419 220 0.00 2019-08-11 14:11:15 2019-08-11 14:11:24 t 1 1 82423 220 0.00 2019-08-11 14:14:16 2019-08-11 14:14:25 t 1 1 82431 220 0.00 2019-08-11 14:20:18 2019-08-11 14:20:27 t 1 1 82435 220 0.00 2019-08-11 14:30:23 2019-08-11 14:30:31 t 1 1 82439 288 0.00 2019-08-11 14:32:01 2019-08-11 14:33:06 t 1 2 82115 220 0.00 2019-08-11 08:31:04 2019-08-11 08:31:12 t 1 1 82116 220 0.00 2019-08-11 08:32:05 2019-08-11 08:32:13 t 1 1 82122 220 0.00 2019-08-11 08:42:36 2019-08-11 08:42:37 t 1 1 82123 286 0.00 2019-08-11 08:35:15 2019-08-11 08:45:20 t 1 2 82128 306 0.00 2019-08-11 08:50:30 2019-08-11 08:51:33 t 1 2 82132 220 0.00 2019-08-11 08:59:32 2019-08-11 08:59:40 t 1 1 82137 220 0.00 2019-08-11 09:04:37 2019-08-11 09:05:15 t 1 1 82148 220 0.00 2019-08-11 09:17:51 2019-08-11 09:17:52 t 1 1 82152 220 0.00 2019-08-11 09:19:53 2019-08-11 09:20:53 t 1 1 82156 314 0.00 2019-08-11 09:28:17 2019-08-11 09:29:21 t 1 2 82163 286 0.00 2019-08-11 09:26:44 2019-08-11 09:35:24 t 1 2 82166 220 0.00 2019-08-11 09:37:10 2019-08-11 09:37:18 t 1 1 82173 220 0.00 2019-08-11 09:41:14 2019-08-11 09:41:22 t 1 1 82191 220 0.00 2019-08-11 09:56:30 2019-08-11 09:56:37 t 1 1 82196 306 0.00 2019-08-11 09:59:48 2019-08-11 10:00:54 t 1 2 82197 220 0.00 2019-08-11 10:01:35 2019-08-11 10:01:42 t 1 1 82200 220 0.00 2019-08-11 10:03:37 2019-08-11 10:04:37 t 1 1 82203 220 0.00 2019-08-11 10:10:44 2019-08-11 10:10:53 t 1 1 82209 220 0.00 2019-08-11 10:17:51 2019-08-11 10:17:58 t 1 1 82211 220 0.00 2019-08-11 10:18:52 2019-08-11 10:19:52 t 1 1 82219 286 0.00 2019-08-11 10:15:10 2019-08-11 10:25:15 t 1 2 82225 220 0.00 2019-08-11 10:28:03 2019-08-11 10:28:11 t 1 1 82230 218 0.00 2019-08-11 10:31:13 2019-08-11 10:31:13 f 1 2 82237 220 0.00 2019-08-11 10:39:15 2019-08-11 10:39:24 t 1 1 82239 220 0.00 2019-08-11 10:47:21 2019-08-11 10:47:31 t 1 1 82244 220 0.00 2019-08-11 10:50:24 2019-08-11 10:50:31 t 1 1 82245 220 0.00 2019-08-11 10:51:24 2019-08-11 10:51:25 t 1 1 82248 304 0.00 2019-08-11 10:45:49 2019-08-11 10:55:54 t 1 2 82253 335 0.00 2019-08-11 11:02:35 2019-08-11 11:12:40 t 1 2 82255 220 0.00 2019-08-11 11:15:36 2019-08-11 11:15:58 t 1 1 82256 220 0.00 2019-08-11 11:16:36 2019-08-11 11:16:45 t 1 1 82259 220 0.00 2019-08-11 11:18:37 2019-08-11 11:18:39 t 1 1 82260 220 0.00 2019-08-11 11:18:46 2019-08-11 11:18:48 t 1 1 82267 220 0.00 2019-08-11 11:28:43 2019-08-11 11:28:51 t 1 1 82268 220 0.00 2019-08-11 11:29:42 2019-08-11 11:29:51 t 1 1 82272 220 0.00 2019-08-11 11:31:43 2019-08-11 11:31:52 t 1 1 82275 220 0.00 2019-08-11 11:39:50 2019-08-11 11:40:00 t 1 1 82276 220 0.00 2019-08-11 11:40:10 2019-08-11 11:40:11 t 1 1 82278 288 0.00 2019-08-11 11:40:36 2019-08-11 11:41:40 t 1 2 82280 361 0.00 2019-08-11 11:35:13 2019-08-11 11:45:18 t 1 2 82291 288 0.00 2019-08-11 11:50:52 2019-08-11 11:51:56 t 1 2 82293 288 0.00 2019-08-11 11:52:41 2019-08-11 11:53:45 t 1 2 82299 220 0.00 2019-08-11 11:57:56 2019-08-11 11:58:04 t 1 1 82300 220 0.00 2019-08-11 11:58:11 2019-08-11 11:58:13 t 1 1 82303 288 0.00 2019-08-11 12:00:15 2019-08-11 12:01:19 t 1 2 82305 288 0.00 2019-08-11 12:03:54 2019-08-11 12:05:00 t 1 2 82311 288 0.00 2019-08-11 12:07:13 2019-08-11 12:08:19 t 1 2 82320 288 0.00 2019-08-11 12:15:48 2019-08-11 12:16:53 t 1 2 82321 355 0.00 2019-08-11 10:02:10 2019-08-11 12:17:15 t 1 2 82334 288 0.00 2019-08-11 12:27:38 2019-08-11 12:28:45 t 1 2 82339 288 0.00 2019-08-11 12:33:48 2019-08-11 12:34:56 t 1 2 82343 220 0.00 2019-08-11 12:35:39 2019-08-11 12:40:02 t 1 1 82347 288 0.00 2019-08-11 12:44:25 2019-08-11 12:45:29 t 1 2 82360 220 0.00 2019-08-11 12:57:41 2019-08-11 12:57:50 t 1 1 82361 220 0.00 2019-08-11 12:57:57 2019-08-11 12:58:05 t 1 1 82366 220 0.00 2019-08-11 12:59:31 2019-08-11 12:59:45 t 1 1 82379 220 0.00 2019-08-11 13:16:29 2019-08-11 13:16:52 t 1 1 82382 220 0.00 2019-08-11 13:17:51 2019-08-11 13:18:00 t 1 1 82384 220 0.00 2019-08-11 13:18:28 2019-08-11 13:18:53 t 1 1 82394 361 0.00 2019-08-11 12:38:58 2019-08-11 13:38:59 t 1 2 82396 320 0.00 2019-08-11 13:17:03 2019-08-11 13:42:08 t 1 2 82399 220 0.00 2019-08-11 13:43:03 2019-08-11 13:43:11 t 1 1 82401 220 0.00 2019-08-11 13:44:03 2019-08-11 13:44:12 t 1 1 82405 220 0.00 2019-08-11 13:45:04 2019-08-11 13:45:13 t 1 1 82422 220 0.00 2019-08-11 14:13:15 2019-08-11 14:13:23 t 1 1 82424 220 0.00 2019-08-11 14:15:16 2019-08-11 14:15:38 t 1 1 82425 220 0.00 2019-08-11 14:16:17 2019-08-11 14:16:18 t 1 1 82426 220 0.00 2019-08-11 14:16:25 2019-08-11 14:16:33 t 1 1 82436 236 0.00 2019-08-11 14:31:24 2019-08-11 14:31:24 f 1 2 82445 296 0.00 2019-08-11 14:26:36 2019-08-11 14:40:00 t 1 2 82446 220 0.00 2019-08-11 14:40:28 2019-08-11 14:40:35 t 1 1 82450 220 0.00 2019-08-11 14:44:30 2019-08-11 14:45:30 t 1 1 82460 220 0.00 2019-08-11 14:56:34 2019-08-11 14:56:43 t 1 1 82461 220 0.00 2019-08-11 14:57:35 2019-08-11 14:57:36 t 1 1 82465 220 0.00 2019-08-11 15:01:36 2019-08-11 15:01:37 t 1 1 82470 220 0.00 2019-08-11 15:10:42 2019-08-11 15:10:52 t 1 1 82480 346 0.00 2019-08-11 15:23:55 2019-08-11 15:43:43 t 1 2 82484 355 0.00 2019-08-11 15:40:09 2019-08-11 15:50:14 t 1 2 82489 339 0.00 2019-08-11 15:04:20 2019-08-11 16:04:43 t 1 2 82490 220 0.00 2019-08-11 16:04:56 2019-08-11 16:04:57 t 1 1 82492 212 0.00 2019-08-11 16:07:57 2019-08-11 16:08:34 t 1 2 82497 220 0.00 2019-08-11 16:18:03 2019-08-11 16:18:15 t 1 1 82500 304 0.00 2019-08-11 16:21:34 2019-08-11 16:31:39 t 1 2 82502 320 0.00 2019-08-11 16:23:33 2019-08-11 16:33:38 t 1 2 82504 220 0.00 2019-08-11 16:55:11 2019-08-11 16:55:21 t 1 1 82508 361 0.00 2019-08-11 16:30:50 2019-08-11 16:59:02 t 1 2 82509 346 0.00 2019-08-11 17:04:34 2019-08-11 17:04:38 t 1 2 82511 292 0.00 2019-08-11 17:11:25 2019-08-11 17:12:32 t 1 2 82518 320 0.00 2019-08-11 17:19:40 2019-08-11 17:29:45 t 1 2 82519 346 0.00 2019-08-11 17:20:14 2019-08-11 17:30:19 t 1 2 82524 220 0.00 2019-08-11 18:03:31 2019-08-11 18:03:41 t 1 1 82525 220 0.00 2019-08-11 18:03:49 2019-08-11 18:03:53 t 1 1 82528 288 0.00 2019-08-11 18:13:26 2019-08-11 18:14:31 t 1 2 82531 365 0.00 2019-08-11 18:15:26 2019-08-11 18:19:23 t 1 2 82532 220 0.00 2019-08-11 18:22:37 2019-08-11 18:22:54 t 1 1 82533 324 0.00 2019-08-11 18:25:28 2019-08-11 18:26:32 t 1 2 82535 288 0.00 2019-08-11 18:27:44 2019-08-11 18:28:52 t 1 2 82537 292 0.00 2019-08-11 18:58:26 2019-08-11 18:59:30 t 1 2 82541 331 0.00 2019-08-11 19:18:37 2019-08-11 19:19:42 t 1 2 82546 220 0.00 2019-08-11 19:40:22 2019-08-11 19:55:08 t 1 1 82559 220 0.00 2019-08-11 20:17:21 2019-08-11 20:17:37 t 1 1 82562 220 0.00 2019-08-11 20:25:23 2019-08-11 20:25:32 t 1 1 82570 220 0.00 2019-08-11 20:42:53 2019-08-11 20:42:54 t 1 1 82578 220 0.00 2019-08-11 20:59:14 2019-08-11 20:59:31 t 1 1 82580 346 0.00 2019-08-11 20:03:19 2019-08-11 21:02:13 t 1 2 82583 292 0.00 2019-08-11 21:07:55 2019-08-11 21:09:01 t 1 2 82586 370 0.00 2019-08-11 21:11:58 2019-08-11 21:13:05 t 1 2 82252 220 0.00 2019-08-11 11:07:35 2019-08-11 11:07:45 t 1 1 82257 288 0.00 2019-08-11 11:16:24 2019-08-11 11:17:28 t 1 2 82269 288 0.00 2019-08-11 11:28:50 2019-08-11 11:29:54 t 1 2 82274 320 0.00 2019-08-11 11:26:35 2019-08-11 11:36:40 t 1 2 82277 306 0.00 2019-08-11 11:39:45 2019-08-11 11:40:49 t 1 2 82279 288 0.00 2019-08-11 11:41:58 2019-08-11 11:43:03 t 1 2 82281 288 0.00 2019-08-11 11:44:13 2019-08-11 11:45:20 t 1 2 82286 220 0.00 2019-08-11 11:48:52 2019-08-11 11:48:59 t 1 1 82287 220 0.00 2019-08-11 11:49:52 2019-08-11 11:50:01 t 1 1 82288 288 0.00 2019-08-11 11:49:09 2019-08-11 11:50:17 t 1 2 82292 220 0.00 2019-08-11 11:51:55 2019-08-11 11:52:58 t 1 1 82294 220 0.00 2019-08-11 11:54:36 2019-08-11 11:54:52 t 1 1 82295 220 0.00 2019-08-11 11:55:55 2019-08-11 11:56:03 t 1 1 82306 220 0.00 2019-08-11 12:05:00 2019-08-11 12:05:09 t 1 1 82307 212 0.00 2019-08-11 10:28:25 2019-08-11 12:05:53 t 1 2 82308 220 0.00 2019-08-11 12:05:59 2019-08-11 12:06:07 t 1 1 82314 288 0.00 2019-08-11 12:10:01 2019-08-11 12:11:05 t 1 2 82317 288 0.00 2019-08-11 12:13:50 2019-08-11 12:14:58 t 1 2 82322 220 0.00 2019-08-11 12:17:06 2019-08-11 12:17:18 t 1 1 82323 220 0.00 2019-08-11 12:17:28 2019-08-11 12:17:29 t 1 1 82327 220 0.00 2019-08-11 12:24:07 2019-08-11 12:24:17 t 1 1 82331 288 0.00 2019-08-11 12:25:49 2019-08-11 12:26:53 t 1 2 82332 220 0.00 2019-08-11 12:27:08 2019-08-11 12:27:17 t 1 1 82333 220 0.00 2019-08-11 12:28:08 2019-08-11 12:28:16 t 1 1 82335 220 0.00 2019-08-11 12:29:09 2019-08-11 12:29:18 t 1 1 82337 220 0.00 2019-08-11 12:30:09 2019-08-11 12:30:18 t 1 1 82340 220 0.00 2019-08-11 12:30:58 2019-08-11 12:35:39 t 1 1 82341 306 0.00 2019-08-11 12:35:11 2019-08-11 12:36:16 t 1 2 82344 286 0.00 2019-08-11 12:31:03 2019-08-11 12:41:08 t 1 2 82345 220 0.00 2019-08-11 12:40:02 2019-08-11 12:44:31 t 1 1 82348 220 0.00 2019-08-11 12:45:33 2019-08-11 12:45:41 t 1 1 82349 220 0.00 2019-08-11 12:45:48 2019-08-11 12:45:50 t 1 1 82352 217 0.00 2019-08-11 12:55:05 2019-08-11 12:55:05 f 1 2 82354 220 0.00 2019-08-11 12:55:29 2019-08-11 12:55:39 t 1 1 82356 220 0.00 2019-08-11 12:56:07 2019-08-11 12:56:08 t 1 1 82358 220 0.00 2019-08-11 12:56:24 2019-08-11 12:56:38 t 1 1 82362 220 0.00 2019-08-11 12:58:13 2019-08-11 12:58:19 t 1 1 82363 220 0.00 2019-08-11 12:58:19 2019-08-11 12:58:54 t 1 1 82367 220 0.00 2019-08-11 12:59:44 2019-08-11 12:59:53 t 1 1 82368 296 0.00 2019-08-11 12:37:38 2019-08-11 13:00:01 t 1 2 82373 220 0.00 2019-08-11 13:07:26 2019-08-11 13:07:47 t 1 1 82375 220 0.00 2019-08-11 13:08:24 2019-08-11 13:08:48 t 1 1 82377 220 0.00 2019-08-11 13:09:25 2019-08-11 13:15:52 t 1 1 82389 220 0.00 2019-08-11 13:26:33 2019-08-11 13:26:56 t 1 1 82391 220 0.00 2019-08-11 13:35:02 2019-08-11 13:35:13 t 1 1 82397 220 0.00 2019-08-11 13:42:03 2019-08-11 13:42:19 t 1 1 82402 212 0.00 2019-08-11 13:41:46 2019-08-11 13:44:20 t 1 2 82406 314 0.00 2019-08-11 13:44:41 2019-08-11 13:45:46 t 1 2 82407 220 0.00 2019-08-11 13:46:04 2019-08-11 13:46:05 t 1 1 82411 220 0.00 2019-08-11 13:54:08 2019-08-11 13:54:15 t 1 1 82414 220 0.00 2019-08-11 14:03:15 2019-08-11 14:03:24 t 1 1 82415 367 0.00 2019-08-11 13:22:12 2019-08-11 14:07:17 t 1 2 82416 212 0.00 2019-08-11 14:07:07 2019-08-11 14:07:35 t 1 2 82427 220 0.00 2019-08-11 14:17:17 2019-08-11 14:17:26 t 1 1 82430 220 0.00 2019-08-11 14:19:18 2019-08-11 14:19:26 t 1 1 82432 220 0.00 2019-08-11 14:21:19 2019-08-11 14:22:21 t 1 1 82434 220 0.00 2019-08-11 14:29:23 2019-08-11 14:29:31 t 1 1 82437 220 0.00 2019-08-11 14:31:24 2019-08-11 14:31:25 t 1 1 82438 220 0.00 2019-08-11 14:31:32 2019-08-11 14:31:33 t 1 1 82440 288 0.00 2019-08-11 14:33:41 2019-08-11 14:34:46 t 1 2 82441 346 0.00 2019-08-11 14:09:10 2019-08-11 14:37:46 t 1 2 82442 220 0.00 2019-08-11 14:38:27 2019-08-11 14:38:36 t 1 1 82443 220 0.00 2019-08-11 14:39:28 2019-08-11 14:39:36 t 1 1 82457 220 0.00 2019-08-11 14:53:41 2019-08-11 14:53:49 t 1 1 82472 286 0.00 2019-08-11 14:44:54 2019-08-11 15:20:00 t 1 2 82473 367 0.00 2019-08-11 15:20:13 2019-08-11 15:20:25 t 1 2 82474 251 0.00 2019-08-11 14:57:41 2019-08-11 15:22:46 t 1 2 82476 243 0.00 2019-08-11 15:33:17 2019-08-11 15:33:33 t 1 2 82487 327 0.00 2019-08-11 13:06:42 2019-08-11 16:00:06 t 1 2 82495 288 0.00 2019-08-11 16:14:36 2019-08-11 16:15:43 t 1 2 82499 343 0.00 2019-08-11 16:24:38 2019-08-11 16:25:40 t 1 2 82501 343 0.00 2019-08-11 16:31:42 2019-08-11 16:32:44 t 1 2 82505 335 0.00 2019-08-11 16:45:34 2019-08-11 16:55:39 t 1 2 82507 220 0.00 2019-08-11 16:55:29 2019-08-11 16:58:00 t 1 1 82512 346 0.00 2019-08-11 17:05:05 2019-08-11 17:15:10 t 1 2 82513 306 0.00 2019-08-11 17:16:27 2019-08-11 17:17:29 t 1 2 82514 361 0.00 2019-08-11 17:15:40 2019-08-11 17:20:56 t 1 2 82515 294 0.00 2019-08-11 17:16:59 2019-08-11 17:24:00 t 1 2 82523 288 0.00 2019-08-11 17:37:51 2019-08-11 17:38:55 t 1 2 82526 212 0.00 2019-08-11 18:03:14 2019-08-11 18:04:08 t 1 2 82534 306 0.00 2019-08-11 18:26:41 2019-08-11 18:27:46 t 1 2 82536 294 0.00 2019-08-11 17:43:13 2019-08-11 18:43:37 t 1 2 82539 331 0.00 2019-08-11 19:05:39 2019-08-11 19:06:41 t 1 2 82542 320 0.00 2019-08-11 18:44:41 2019-08-11 19:19:46 t 1 2 82543 220 0.00 2019-08-11 19:39:25 2019-08-11 19:39:58 t 1 1 82544 324 0.00 2019-08-11 19:09:23 2019-08-11 19:49:28 t 1 2 82545 306 0.00 2019-08-11 19:51:58 2019-08-11 19:53:02 t 1 2 82548 220 0.00 2019-08-11 19:56:21 2019-08-11 19:56:22 t 1 1 82550 346 0.00 2019-08-11 19:37:37 2019-08-11 20:01:00 t 1 2 82554 367 0.00 2019-08-11 19:58:18 2019-08-11 20:04:43 t 1 2 82555 220 0.00 2019-08-11 20:10:19 2019-08-11 20:10:35 t 1 1 82561 306 0.00 2019-08-11 20:22:59 2019-08-11 20:24:01 t 1 2 82568 324 0.00 2019-08-11 20:30:15 2019-08-11 20:40:20 t 1 2 82572 220 0.00 2019-08-11 20:49:52 2019-08-11 20:49:53 t 1 1 82574 335 0.00 2019-08-11 20:37:08 2019-08-11 20:52:13 t 1 2 82575 357 0.00 2019-08-11 17:03:32 2019-08-11 20:53:37 t 1 2 82579 351 0.00 2019-08-11 20:58:31 2019-08-11 21:00:25 t 1 2 82584 247 0.00 2019-08-11 21:11:12 2019-08-11 21:12:33 t 1 2 82589 220 0.00 2019-08-11 21:08:36 2019-08-11 21:18:43 t 1 1 82594 304 0.00 2019-08-11 21:33:53 2019-08-11 21:43:58 t 1 2 82596 346 0.00 2019-08-11 21:25:26 2019-08-11 22:00:31 t 1 2 82599 212 0.00 2019-08-11 22:27:12 2019-08-11 22:37:41 t 1 2 82601 294 0.00 2019-08-11 21:00:04 2019-08-11 22:49:28 t 1 2 82604 306 0.00 2019-08-11 22:59:08 2019-08-11 23:00:05 t 1 2 82608 243 0.00 2019-08-11 23:10:50 2019-08-11 23:15:29 t 1 2 82609 308 0.00 2019-08-11 14:32:52 2019-08-11 23:17:58 t 1 2 82610 324 0.00 2019-08-11 22:54:32 2019-08-11 23:19:38 t 1 2 82301 220 0.00 2019-08-11 11:58:20 2019-08-11 11:58:21 t 1 1 82310 220 0.00 2019-08-11 12:07:00 2019-08-11 12:08:00 t 1 1 82312 288 0.00 2019-08-11 12:08:34 2019-08-11 12:09:38 t 1 2 82313 333 0.00 2019-08-11 11:48:46 2019-08-11 12:10:10 t 1 2 82316 220 0.00 2019-08-11 12:13:02 2019-08-11 12:13:11 t 1 1 82319 320 0.00 2019-08-11 12:05:26 2019-08-11 12:15:31 t 1 2 82324 361 0.00 2019-08-11 11:41:21 2019-08-11 12:18:14 t 1 2 82325 288 0.00 2019-08-11 12:21:01 2019-08-11 12:22:06 t 1 2 82329 288 0.00 2019-08-11 12:24:09 2019-08-11 12:25:17 t 1 2 82330 220 0.00 2019-08-11 12:26:07 2019-08-11 12:26:15 t 1 1 82336 320 0.00 2019-08-11 12:19:35 2019-08-11 12:29:40 t 1 2 82338 220 0.00 2019-08-11 12:29:07 2019-08-11 12:31:26 t 1 2 82346 368 0.00 2019-08-11 12:41:25 2019-08-11 12:44:40 t 1 2 82355 220 0.00 2019-08-11 12:55:48 2019-08-11 12:55:58 t 1 1 82357 220 0.00 2019-08-11 12:52:30 2019-08-11 12:56:24 t 1 1 82359 220 0.00 2019-08-11 12:57:00 2019-08-11 12:57:42 t 1 1 82372 220 0.00 2019-08-11 13:06:47 2019-08-11 13:06:57 t 1 1 82376 220 0.00 2019-08-11 13:08:47 2019-08-11 13:09:25 t 1 1 82381 220 0.00 2019-08-11 13:17:29 2019-08-11 13:17:51 t 1 1 82386 320 0.00 2019-08-11 12:44:27 2019-08-11 13:19:32 t 1 2 82388 220 0.00 2019-08-11 13:25:56 2019-08-11 13:26:05 t 1 1 82393 355 0.00 2019-08-11 12:52:59 2019-08-11 13:38:59 t 1 2 82395 220 0.00 2019-08-11 13:27:33 2019-08-11 13:42:04 t 1 1 82398 220 0.00 2019-08-11 13:42:41 2019-08-11 13:43:03 t 1 1 82400 220 0.00 2019-08-11 13:43:40 2019-08-11 13:44:04 t 1 1 82404 220 0.00 2019-08-11 13:44:41 2019-08-11 13:45:04 t 1 1 82408 247 0.00 2019-08-11 13:45:21 2019-08-11 13:46:56 t 1 2 82410 220 0.00 2019-08-11 13:53:07 2019-08-11 13:53:16 t 1 1 82413 220 0.00 2019-08-11 13:56:09 2019-08-11 13:56:10 t 1 1 82417 306 0.00 2019-08-11 14:07:33 2019-08-11 14:08:36 t 1 2 82420 220 0.00 2019-08-11 14:12:15 2019-08-11 14:12:16 t 1 1 82421 220 0.00 2019-08-11 14:12:24 2019-08-11 14:12:32 t 1 1 82428 286 0.00 2019-08-11 13:57:47 2019-08-11 14:17:52 t 1 2 82429 220 0.00 2019-08-11 14:18:17 2019-08-11 14:18:26 t 1 1 82433 220 0.00 2019-08-11 14:28:22 2019-08-11 14:28:31 t 1 1 82444 288 0.00 2019-08-11 14:38:41 2019-08-11 14:39:50 t 1 2 82449 220 0.00 2019-08-11 14:43:29 2019-08-11 14:43:36 t 1 1 82452 304 0.00 2019-08-11 14:39:12 2019-08-11 14:49:17 t 1 2 82455 220 0.00 2019-08-11 14:52:41 2019-08-11 14:52:42 t 1 1 82456 220 0.00 2019-08-11 14:53:33 2019-08-11 14:53:34 t 1 1 82459 220 0.00 2019-08-11 14:55:34 2019-08-11 14:55:42 t 1 1 82463 220 0.00 2019-08-11 14:59:35 2019-08-11 14:59:44 t 1 1 82464 220 0.00 2019-08-11 15:00:35 2019-08-11 15:00:36 t 1 1 82467 220 0.00 2019-08-11 15:03:36 2019-08-11 15:04:36 t 1 1 82469 355 0.00 2019-08-11 13:39:50 2019-08-11 15:09:55 t 1 2 82471 346 0.00 2019-08-11 14:22:15 2019-08-11 15:15:38 t 1 2 82475 288 0.00 2019-08-11 15:24:21 2019-08-11 15:25:25 t 1 2 82477 243 0.00 2019-08-11 15:34:13 2019-08-11 15:34:29 t 1 2 82479 320 0.00 2019-08-11 15:30:16 2019-08-11 15:40:21 t 1 2 82481 247 0.00 2019-08-11 15:42:18 2019-08-11 15:46:27 t 1 2 82483 288 0.00 2019-08-11 15:49:08 2019-08-11 15:50:11 t 1 2 82486 335 0.00 2019-08-11 15:49:09 2019-08-11 15:59:15 t 1 2 82491 294 0.00 2019-08-11 15:06:53 2019-08-11 16:07:17 t 1 2 82493 247 0.00 2019-08-11 16:10:25 2019-08-11 16:11:06 t 1 2 82494 290 0.00 2019-08-11 16:13:57 2019-08-11 16:15:01 t 1 2 82498 320 0.00 2019-08-11 16:09:11 2019-08-11 16:19:16 t 1 2 82503 306 0.00 2019-08-11 16:52:41 2019-08-11 16:53:45 t 1 2 82506 335 0.00 2019-08-11 16:47:13 2019-08-11 16:57:18 t 1 2 82516 367 0.00 2019-08-11 17:24:07 2019-08-11 17:25:38 t 1 2 82517 220 0.00 2019-08-11 17:26:23 2019-08-11 17:26:33 t 1 1 82521 288 0.00 2019-08-11 17:31:31 2019-08-11 17:32:35 t 1 2 82530 296 0.00 2019-08-11 18:10:51 2019-08-11 18:19:15 t 1 2 82538 306 0.00 2019-08-11 19:04:30 2019-08-11 19:05:33 t 1 2 82547 220 0.00 2019-08-11 19:56:05 2019-08-11 19:56:13 t 1 1 82549 220 0.00 2019-08-11 19:56:30 2019-08-11 19:56:31 t 1 1 82551 220 0.00 2019-08-11 20:03:17 2019-08-11 20:03:26 t 1 1 82553 363 0.00 2019-08-11 17:22:45 2019-08-11 20:04:29 t 1 2 82563 220 0.00 2019-08-11 20:26:23 2019-08-11 20:26:31 t 1 1 82564 220 0.00 2019-08-11 20:27:23 2019-08-11 20:28:23 t 1 1 82565 296 0.00 2019-08-11 20:22:39 2019-08-11 20:34:03 t 1 2 82567 324 0.00 2019-08-11 20:29:31 2019-08-11 20:39:36 t 1 2 82571 220 0.00 2019-08-11 20:49:32 2019-08-11 20:49:42 t 1 1 82573 324 0.00 2019-08-11 20:30:36 2019-08-11 20:50:42 t 1 2 82581 220 0.00 2019-08-11 21:06:36 2019-08-11 21:06:44 t 1 1 82587 292 0.00 2019-08-11 21:14:45 2019-08-11 21:15:51 t 1 2 82590 370 0.00 2019-08-11 21:09:44 2019-08-11 21:19:49 t 1 2 82600 292 0.00 2019-08-11 22:44:00 2019-08-11 22:45:04 t 1 2 82607 243 0.00 2019-08-11 23:06:07 2019-08-11 23:10:16 t 1 2 82612 363 0.00 2019-08-11 23:28:53 2019-08-11 23:28:54 t 1 2 82614 363 0.00 2019-08-11 21:34:58 2019-08-11 23:35:03 t 1 2 82616 220 0.00 2019-08-11 23:45:20 2019-08-11 23:51:02 t 1 1 82620 320 0.00 2019-08-11 23:46:41 2019-08-11 23:56:46 t 1 2 82626 355 0.00 2019-08-11 23:57:36 2019-08-12 00:07:41 t 1 2 82630 288 0.00 2019-08-12 00:32:37 2019-08-12 00:33:44 t 1 2 82634 247 0.00 2019-08-12 00:47:35 2019-08-12 00:49:10 t 1 2 82644 346 0.00 2019-08-12 02:40:16 2019-08-12 02:46:47 t 1 2 82645 320 0.00 2019-08-12 02:54:41 2019-08-12 03:04:46 t 1 2 82647 320 0.00 2019-08-12 03:31:39 2019-08-12 03:41:45 t 1 2 82648 320 0.00 2019-08-12 03:37:54 2019-08-12 03:47:59 t 1 2 82649 320 0.00 2019-08-12 03:48:08 2019-08-12 03:48:10 t 1 2 82650 346 0.00 2019-08-12 02:49:38 2019-08-12 03:58:01 t 1 2 82652 339 0.00 2019-08-12 02:58:23 2019-08-12 04:01:47 t 1 2 82657 335 0.00 2019-08-12 07:33:09 2019-08-12 07:33:53 t 1 2 82666 247 0.00 2019-08-12 09:35:58 2019-08-12 09:37:12 t 1 2 82672 220 0.00 2019-08-12 09:57:42 2019-08-12 09:58:46 t 1 2 82678 306 0.00 2019-08-12 10:13:57 2019-08-12 10:15:00 t 1 2 82681 324 0.00 2019-08-12 10:08:00 2019-08-12 10:18:43 t 1 2 82685 306 0.00 2019-08-12 10:24:00 2019-08-12 10:25:08 t 1 2 82687 346 0.00 2019-08-12 10:14:05 2019-08-12 10:34:10 t 1 2 82688 294 0.00 2019-08-12 10:33:47 2019-08-12 10:39:10 t 1 2 82701 320 0.00 2019-08-12 11:14:29 2019-08-12 11:24:34 t 1 2 82704 288 0.00 2019-08-12 11:36:15 2019-08-12 11:37:18 t 1 2 82710 220 0.00 2019-08-12 12:10:39 2019-08-12 12:11:46 t 1 2 82713 302 0.00 2019-08-12 11:22:37 2019-08-12 12:22:42 t 1 2 82714 288 0.00 2019-08-12 12:22:27 2019-08-12 12:23:33 t 1 2 82716 306 0.00 2019-08-12 12:23:29 2019-08-12 12:24:32 t 1 2 82718 324 0.00 2019-08-12 12:20:56 2019-08-12 12:34:42 t 1 2 82447 220 0.00 2019-08-11 14:41:29 2019-08-11 14:41:38 t 1 1 82448 220 0.00 2019-08-11 14:42:29 2019-08-11 14:42:36 t 1 1 82451 212 0.00 2019-08-11 14:45:10 2019-08-11 14:45:52 t 1 2 82453 220 0.00 2019-08-11 14:51:32 2019-08-11 14:51:42 t 1 1 82454 220 0.00 2019-08-11 14:52:33 2019-08-11 14:52:34 t 1 1 82458 220 0.00 2019-08-11 14:54:34 2019-08-11 14:54:43 t 1 1 82462 220 0.00 2019-08-11 14:57:44 2019-08-11 14:58:44 t 1 1 82466 220 0.00 2019-08-11 15:02:36 2019-08-11 15:02:45 t 1 1 82468 361 0.00 2019-08-11 14:10:33 2019-08-11 15:07:21 t 1 2 82478 320 0.00 2019-08-11 14:05:57 2019-08-11 15:36:02 t 1 2 82482 324 0.00 2019-08-11 15:49:21 2019-08-11 15:49:52 t 1 2 82485 288 0.00 2019-08-11 15:54:11 2019-08-11 15:55:15 t 1 2 82488 220 0.00 2019-08-11 16:03:38 2019-08-11 16:03:54 t 1 1 82496 346 0.00 2019-08-11 15:57:51 2019-08-11 16:16:09 t 1 2 82510 357 0.00 2019-08-11 16:49:44 2019-08-11 17:09:50 t 1 2 82520 306 0.00 2019-08-11 17:29:49 2019-08-11 17:30:57 t 1 2 82522 286 0.00 2019-08-11 17:27:32 2019-08-11 17:37:37 t 1 2 82527 320 0.00 2019-08-11 17:44:15 2019-08-11 18:04:20 t 1 2 82529 320 0.00 2019-08-11 18:04:57 2019-08-11 18:15:02 t 1 2 82540 288 0.00 2019-08-11 19:14:07 2019-08-11 19:15:13 t 1 2 82552 355 0.00 2019-08-11 20:03:15 2019-08-11 20:03:55 t 1 2 82556 220 0.00 2019-08-11 20:10:45 2019-08-11 20:13:00 t 1 1 82557 335 0.00 2019-08-11 19:54:39 2019-08-11 20:14:44 t 1 2 82558 335 0.00 2019-08-11 20:07:29 2019-08-11 20:17:35 t 1 2 82560 220 0.00 2019-08-11 20:17:47 2019-08-11 20:18:19 t 1 1 82566 220 0.00 2019-08-11 20:34:28 2019-08-11 20:34:38 t 1 1 82569 220 0.00 2019-08-11 20:42:31 2019-08-11 20:42:43 t 1 1 82576 220 0.00 2019-08-11 20:56:35 2019-08-11 20:56:45 t 1 1 82577 220 0.00 2019-08-11 20:56:55 2019-08-11 20:59:00 t 1 1 82582 220 0.00 2019-08-11 21:07:36 2019-08-11 21:07:44 t 1 1 82585 324 0.00 2019-08-11 19:37:31 2019-08-11 21:12:37 t 1 2 82591 363 0.00 2019-08-11 20:06:51 2019-08-11 21:31:58 t 1 2 82602 217 0.00 2019-08-11 22:53:33 2019-08-11 22:53:33 f 1 2 82603 220 0.00 2019-08-11 19:41:34 2019-08-11 22:57:59 t 1 2 82619 320 0.00 2019-08-11 23:54:06 2019-08-11 23:56:38 t 1 2 82622 247 0.00 2019-08-11 23:55:38 2019-08-12 00:00:50 t 1 2 82624 212 0.00 2019-08-12 00:04:28 2019-08-12 00:04:47 t 1 2 82632 220 0.00 2019-08-12 00:44:44 2019-08-12 00:45:47 t 1 2 82637 363 0.00 2019-08-12 00:36:29 2019-08-12 02:06:34 t 1 2 82640 320 0.00 2019-08-12 02:08:27 2019-08-12 02:28:32 t 1 2 82646 324 0.00 2019-08-12 02:35:49 2019-08-12 03:10:54 t 1 2 82653 320 0.00 2019-08-12 05:37:56 2019-08-12 05:48:01 t 1 2 82654 302 0.00 2019-08-12 02:31:31 2019-08-12 07:33:53 t 1 2 82658 320 0.00 2019-08-12 07:59:39 2019-08-12 08:09:45 t 1 2 82662 212 0.00 2019-08-12 09:19:19 2019-08-12 09:20:12 t 1 2 82669 288 0.00 2019-08-12 09:52:48 2019-08-12 09:53:57 t 1 2 82670 320 0.00 2019-08-12 09:36:53 2019-08-12 09:56:59 t 1 2 82676 320 0.00 2019-08-12 09:57:47 2019-08-12 10:12:52 t 1 2 82684 247 0.00 2019-08-12 10:23:49 2019-08-12 10:24:30 t 1 2 82686 306 0.00 2019-08-12 10:25:25 2019-08-12 10:26:25 t 1 2 82689 346 0.00 2019-08-12 10:26:00 2019-08-12 10:41:05 t 1 2 82702 357 0.00 2019-08-12 07:34:43 2019-08-12 11:24:48 t 1 2 82712 306 0.00 2019-08-12 12:19:12 2019-08-12 12:20:13 t 1 2 82721 355 0.00 2019-08-12 11:08:49 2019-08-12 12:38:54 t 1 2 82724 346 0.00 2019-08-12 12:45:15 2019-08-12 12:46:22 t 1 2 82734 218 0.00 2019-08-12 13:12:14 2019-08-12 13:12:14 f 1 2 82747 324 0.00 2019-08-12 13:55:32 2019-08-12 14:30:38 t 1 2 82752 217 0.00 2019-08-12 15:00:29 2019-08-12 15:00:29 f 1 2 82755 217 0.00 2019-08-12 15:02:03 2019-08-12 15:02:03 f 1 2 82757 335 0.00 2019-08-12 14:52:50 2019-08-12 15:12:55 t 1 2 82758 355 0.00 2019-08-12 15:16:25 2019-08-12 15:16:39 t 1 2 82760 355 0.00 2019-08-12 15:20:58 2019-08-12 15:21:09 t 1 2 82765 251 0.00 2019-08-12 15:20:13 2019-08-12 15:30:18 t 1 2 82768 220 0.00 2019-08-12 15:59:13 2019-08-12 16:00:13 t 1 2 82771 217 0.00 2019-08-12 16:11:46 2019-08-12 16:11:46 f 1 2 82775 220 0.00 2019-08-12 15:32:33 2019-08-12 16:30:57 t 1 2 82778 243 0.00 2019-08-12 16:29:32 2019-08-12 16:33:26 t 1 2 82794 212 0.00 2019-08-12 17:43:56 2019-08-12 17:45:01 t 1 2 82801 311 0.00 2019-08-12 17:33:11 2019-08-12 18:13:31 t 1 2 82809 212 0.00 2019-08-12 18:55:34 2019-08-12 18:56:24 t 1 2 82811 361 0.00 2019-08-12 18:11:28 2019-08-12 19:04:49 t 1 2 82814 304 0.00 2019-08-12 18:53:28 2019-08-12 19:08:33 t 1 2 82816 212 0.00 2019-08-12 19:13:35 2019-08-12 19:14:33 t 1 2 82817 288 0.00 2019-08-12 19:20:37 2019-08-12 19:21:41 t 1 2 82821 247 0.00 2019-08-12 19:30:30 2019-08-12 19:31:33 t 1 2 82823 212 0.00 2019-08-12 19:33:57 2019-08-12 19:35:01 t 1 2 82826 220 0.00 2019-08-12 19:26:46 2019-08-12 19:40:09 t 1 2 82827 361 0.00 2019-08-12 19:08:09 2019-08-12 19:43:14 t 1 2 82829 212 0.00 2019-08-12 19:48:43 2019-08-12 19:49:06 t 1 2 82830 324 0.00 2019-08-12 18:32:27 2019-08-12 19:52:32 t 1 2 82831 212 0.00 2019-08-12 19:58:20 2019-08-12 19:59:12 t 1 2 82833 355 0.00 2019-08-12 20:03:12 2019-08-12 20:03:38 t 1 2 82834 355 0.00 2019-08-12 20:04:17 2019-08-12 20:04:40 t 1 2 82839 296 0.00 2019-08-12 20:34:17 2019-08-12 20:38:41 t 1 2 82840 220 0.00 2019-08-12 20:40:43 2019-08-12 20:41:47 t 1 2 82846 372 0.00 2019-08-12 20:55:18 2019-08-12 20:56:28 t 1 2 82848 212 0.00 2019-08-12 21:04:41 2019-08-12 21:05:48 t 1 2 82851 220 0.00 2019-08-12 20:11:46 2019-08-12 21:13:10 t 1 2 82853 212 0.00 2019-08-12 21:15:17 2019-08-12 21:17:05 t 1 2 82862 346 0.00 2019-08-12 21:47:00 2019-08-12 21:48:03 t 1 2 82864 361 0.00 2019-08-12 20:59:35 2019-08-12 21:49:40 t 1 2 82866 212 0.00 2019-08-12 21:48:33 2019-08-12 21:53:32 t 1 2 82868 320 0.00 2019-08-12 21:55:30 2019-08-12 21:56:09 t 1 2 82875 367 0.00 2019-08-12 22:14:44 2019-08-12 22:15:53 t 1 2 82876 346 0.00 2019-08-12 22:15:26 2019-08-12 22:16:29 t 1 2 82877 365 0.00 2019-08-12 21:31:40 2019-08-12 22:22:29 t 1 2 82882 361 0.00 2019-08-12 22:42:00 2019-08-12 22:49:29 t 1 2 82884 320 0.00 2019-08-12 22:39:23 2019-08-12 22:54:28 t 1 2 82889 243 0.00 2019-08-12 23:05:08 2019-08-12 23:05:08 f 1 2 82891 243 0.00 2019-08-12 23:05:21 2019-08-12 23:05:21 f 1 2 82893 243 0.00 2019-08-12 23:05:36 2019-08-12 23:05:36 f 1 2 82903 220 0.00 2019-08-12 23:31:18 2019-08-12 23:32:23 t 1 2 82904 306 0.00 2019-08-12 23:32:50 2019-08-12 23:33:54 t 1 2 82906 220 0.00 2019-08-12 23:02:08 2019-08-12 23:35:52 t 1 1 82909 220 0.00 2019-08-12 23:42:23 2019-08-12 23:43:30 t 1 2 82913 220 0.00 2019-08-12 23:35:52 2019-08-12 23:52:47 t 1 1 82920 212 0.00 2019-08-12 22:55:12 2019-08-13 00:11:26 t 1 2 82588 288 0.00 2019-08-11 21:15:02 2019-08-11 21:16:07 t 1 2 82592 346 0.00 2019-08-11 21:03:11 2019-08-11 21:33:17 t 1 2 82593 306 0.00 2019-08-11 21:42:38 2019-08-11 21:43:42 t 1 2 82595 212 0.00 2019-08-11 21:59:16 2019-08-11 21:59:59 t 1 2 82597 220 0.00 2019-08-11 22:14:13 2019-08-11 22:15:36 t 1 2 82598 220 0.00 2019-08-11 22:27:27 2019-08-11 22:30:53 t 1 2 82605 286 0.00 2019-08-11 22:51:43 2019-08-11 23:01:49 t 1 2 82606 346 0.00 2019-08-11 22:14:20 2019-08-11 23:04:25 t 1 2 82615 320 0.00 2019-08-11 23:32:53 2019-08-11 23:46:12 t 1 2 82628 212 0.00 2019-08-12 00:27:15 2019-08-12 00:31:41 t 1 2 82629 220 0.00 2019-08-12 00:31:41 2019-08-12 00:32:44 t 1 2 82631 363 0.00 2019-08-11 23:29:14 2019-08-12 00:44:19 t 1 2 82633 361 0.00 2019-08-12 00:20:19 2019-08-12 00:48:37 t 1 2 82635 212 0.00 2019-08-12 00:52:51 2019-08-12 01:00:00 t 1 2 82643 355 0.00 2019-08-12 01:55:51 2019-08-12 02:45:04 t 1 2 82651 320 0.00 2019-08-12 03:48:19 2019-08-12 03:58:24 t 1 2 82655 357 0.00 2019-08-12 03:22:45 2019-08-12 07:33:53 t 1 2 82659 335 0.00 2019-08-12 08:06:39 2019-08-12 08:16:44 t 1 2 82661 220 0.00 2019-08-12 08:47:11 2019-08-12 09:16:47 t 1 1 82663 220 0.00 2019-08-12 09:16:47 2019-08-12 09:27:25 t 1 1 82664 306 0.00 2019-08-12 09:33:44 2019-08-12 09:34:49 t 1 2 82665 320 0.00 2019-08-12 09:29:06 2019-08-12 09:36:29 t 1 2 82673 296 0.00 2019-08-12 09:57:40 2019-08-12 10:01:03 t 1 2 82677 324 0.00 2019-08-12 10:04:48 2019-08-12 10:14:54 t 1 2 82680 306 0.00 2019-08-12 10:15:39 2019-08-12 10:16:45 t 1 2 82682 324 0.00 2019-08-12 10:20:33 2019-08-12 10:21:37 t 1 2 82694 355 0.00 2019-08-12 10:50:27 2019-08-12 11:00:32 t 1 2 82695 288 0.00 2019-08-12 11:05:50 2019-08-12 11:06:57 t 1 2 82696 247 0.00 2019-08-12 11:14:39 2019-08-12 11:16:20 t 1 2 82698 346 0.00 2019-08-12 11:08:30 2019-08-12 11:18:35 t 1 2 82699 306 0.00 2019-08-12 11:19:34 2019-08-12 11:20:40 t 1 2 82700 306 0.00 2019-08-12 11:21:36 2019-08-12 11:22:37 t 1 2 82706 286 0.00 2019-08-12 10:39:46 2019-08-12 11:49:51 t 1 2 82707 346 0.00 2019-08-12 11:30:27 2019-08-12 11:52:48 t 1 2 82715 320 0.00 2019-08-12 11:54:02 2019-08-12 12:24:08 t 1 2 82720 320 0.00 2019-08-12 12:25:37 2019-08-12 12:35:42 t 1 2 82722 306 0.00 2019-08-12 12:38:22 2019-08-12 12:39:25 t 1 2 82725 212 0.00 2019-08-12 12:45:48 2019-08-12 12:46:24 t 1 2 82727 346 0.00 2019-08-12 12:48:28 2019-08-12 12:49:33 t 1 2 82729 220 0.00 2019-08-12 12:51:44 2019-08-12 12:52:47 t 1 2 82733 324 0.00 2019-08-12 13:10:24 2019-08-12 13:10:51 t 1 2 82741 367 0.00 2019-08-12 13:31:55 2019-08-12 13:32:58 t 1 2 82746 212 0.00 2019-08-12 13:42:13 2019-08-12 14:25:33 t 1 2 82748 346 0.00 2019-08-12 14:30:26 2019-08-12 14:31:30 t 1 2 82754 217 0.00 2019-08-12 15:01:31 2019-08-12 15:01:31 f 1 2 82756 251 0.00 2019-08-12 14:40:29 2019-08-12 15:05:34 t 1 2 82761 355 0.00 2019-08-12 15:25:25 2019-08-12 15:25:35 t 1 2 82767 363 0.00 2019-08-12 14:43:43 2019-08-12 15:58:48 t 1 2 82769 320 0.00 2019-08-12 13:34:29 2019-08-12 16:04:35 t 1 2 82770 320 0.00 2019-08-12 15:58:29 2019-08-12 16:08:35 t 1 2 82772 212 0.00 2019-08-12 16:01:34 2019-08-12 16:15:21 t 1 2 82776 361 0.00 2019-08-12 15:15:33 2019-08-12 16:30:59 t 1 2 82779 288 0.00 2019-08-12 16:36:30 2019-08-12 16:37:33 t 1 2 82781 363 0.00 2019-08-12 16:08:00 2019-08-12 17:00:05 t 1 2 82784 320 0.00 2019-08-12 16:17:36 2019-08-12 17:02:41 t 1 2 82785 363 0.00 2019-08-12 17:02:49 2019-08-12 17:02:56 t 1 2 82787 306 0.00 2019-08-12 17:13:00 2019-08-12 17:14:05 t 1 2 82789 247 0.00 2019-08-12 17:17:53 2019-08-12 17:19:41 t 1 2 82795 212 0.00 2019-08-12 17:45:25 2019-08-12 17:46:27 t 1 2 82797 327 0.00 2019-08-12 17:37:02 2019-08-12 17:54:47 t 1 2 82799 361 0.00 2019-08-12 17:39:35 2019-08-12 18:06:59 t 1 2 82800 288 0.00 2019-08-12 18:08:39 2019-08-12 18:09:43 t 1 2 82802 306 0.00 2019-08-12 18:22:51 2019-08-12 18:23:54 t 1 2 82803 308 0.00 2019-08-12 11:47:18 2019-08-12 18:27:23 t 1 2 82806 343 0.00 2019-08-12 18:29:52 2019-08-12 18:44:57 t 1 2 82807 292 0.00 2019-08-12 18:51:25 2019-08-12 18:52:30 t 1 2 82812 212 0.00 2019-08-12 19:04:43 2019-08-12 19:05:16 t 1 2 82815 288 0.00 2019-08-12 19:12:32 2019-08-12 19:13:36 t 1 2 82824 306 0.00 2019-08-12 19:34:21 2019-08-12 19:35:26 t 1 2 82835 212 0.00 2019-08-12 20:04:28 2019-08-12 20:05:33 t 1 2 82836 363 0.00 2019-08-12 18:17:38 2019-08-12 20:12:43 t 1 2 82843 304 0.00 2019-08-12 20:38:53 2019-08-12 20:48:58 t 1 2 82844 320 0.00 2019-08-12 20:32:12 2019-08-12 20:51:42 t 1 2 82849 372 0.00 2019-08-12 20:56:33 2019-08-12 21:06:06 t 1 2 82854 212 0.00 2019-08-12 21:23:46 2019-08-12 21:24:48 t 1 2 82860 212 0.00 2019-08-12 21:28:11 2019-08-12 21:40:43 t 1 2 82861 320 0.00 2019-08-12 21:42:42 2019-08-12 21:44:16 t 1 2 82872 294 0.00 2019-08-12 21:53:21 2019-08-12 22:01:44 t 1 2 82873 306 0.00 2019-08-12 22:07:59 2019-08-12 22:09:03 t 1 2 82874 346 0.00 2019-08-12 22:12:24 2019-08-12 22:13:28 t 1 2 82880 212 0.00 2019-08-12 22:16:25 2019-08-12 22:37:54 t 1 2 82881 361 0.00 2019-08-12 21:53:36 2019-08-12 22:43:41 t 1 2 82886 247 0.00 2019-08-12 22:58:00 2019-08-12 22:59:16 t 1 2 82894 335 0.00 2019-08-12 22:56:02 2019-08-12 23:06:07 t 1 2 82897 306 0.00 2019-08-12 23:14:09 2019-08-12 23:15:13 t 1 2 82898 220 0.00 2019-08-12 23:16:20 2019-08-12 23:17:26 t 1 2 82900 220 0.00 2019-08-12 23:29:56 2019-08-12 23:30:58 t 1 2 82901 324 0.00 2019-08-12 23:31:06 2019-08-12 23:31:22 t 1 2 82905 220 0.00 2019-08-12 23:33:03 2019-08-12 23:34:08 t 1 2 82907 220 0.00 2019-08-12 23:37:57 2019-08-12 23:39:00 t 1 2 82908 220 0.00 2019-08-12 23:39:39 2019-08-12 23:40:45 t 1 2 82911 220 0.00 2019-08-12 23:43:46 2019-08-12 23:44:52 t 1 2 82922 367 0.00 2019-08-12 23:02:13 2019-08-13 00:17:01 t 1 2 82924 346 0.00 2019-08-13 00:20:04 2019-08-13 00:23:04 t 1 2 82925 251 0.00 2019-08-13 00:04:48 2019-08-13 00:24:53 t 1 2 82930 294 0.00 2019-08-12 23:45:33 2019-08-13 00:45:57 t 1 2 82931 212 0.00 2019-08-13 00:58:52 2019-08-13 00:59:18 t 1 2 82932 320 0.00 2019-08-12 22:52:17 2019-08-13 01:02:22 t 1 2 82934 363 0.00 2019-08-12 23:00:24 2019-08-13 01:10:29 t 1 2 82935 372 0.00 2019-08-13 00:52:02 2019-08-13 01:12:46 t 1 2 82938 339 0.00 2019-08-13 02:50:48 2019-08-13 03:51:20 t 1 2 82939 324 0.00 2019-08-13 03:29:28 2019-08-13 04:13:02 t 1 2 82942 220 0.00 2019-08-13 06:00:48 2019-08-13 06:01:55 t 1 2 82943 320 0.00 2019-08-13 06:46:14 2019-08-13 06:56:19 t 1 2 82945 294 0.00 2019-08-13 06:33:56 2019-08-13 07:33:53 t 1 2 82947 212 0.00 2019-08-13 07:50:34 2019-08-13 07:50:56 t 1 2 82949 286 0.00 2019-08-13 07:54:14 2019-08-13 08:04:19 t 1 2 82611 324 0.00 2019-08-11 22:41:15 2019-08-11 23:28:42 t 1 2 82613 243 0.00 2019-08-11 23:30:26 2019-08-11 23:34:11 t 1 2 82617 320 0.00 2019-08-11 23:50:09 2019-08-11 23:53:29 t 1 2 82618 220 0.00 2019-08-11 23:51:02 2019-08-11 23:55:10 t 1 1 82621 220 0.00 2019-08-11 23:55:10 2019-08-12 00:00:39 t 1 1 82623 355 0.00 2019-08-11 23:54:09 2019-08-12 00:04:15 t 1 2 82625 320 0.00 2019-08-11 23:56:48 2019-08-12 00:06:54 t 1 2 82627 324 0.00 2019-08-11 21:29:38 2019-08-12 00:29:44 t 1 2 82636 355 0.00 2019-08-12 01:15:33 2019-08-12 01:40:38 t 1 2 82638 320 0.00 2019-08-12 01:57:59 2019-08-12 02:08:04 t 1 2 82639 320 0.00 2019-08-12 02:08:12 2019-08-12 02:08:15 t 1 2 82641 320 0.00 2019-08-12 02:22:18 2019-08-12 02:37:23 t 1 2 82642 302 0.00 2019-08-12 02:28:33 2019-08-12 02:38:38 t 1 2 82656 355 0.00 2019-08-12 03:04:58 2019-08-12 07:33:53 t 1 2 82660 304 0.00 2019-08-12 08:43:28 2019-08-12 08:53:33 t 1 2 82667 288 0.00 2019-08-12 09:39:37 2019-08-12 09:40:44 t 1 2 82668 220 0.00 2019-08-12 09:36:14 2019-08-12 09:49:38 t 1 2 82671 355 0.00 2019-08-12 09:33:26 2019-08-12 09:58:31 t 1 2 82674 220 0.00 2019-08-12 10:01:33 2019-08-12 10:02:40 t 1 2 82675 288 0.00 2019-08-12 10:07:46 2019-08-12 10:08:50 t 1 2 82679 324 0.00 2019-08-12 10:05:56 2019-08-12 10:16:01 t 1 2 82683 320 0.00 2019-08-12 10:13:14 2019-08-12 10:23:19 t 1 2 82690 346 0.00 2019-08-12 10:38:57 2019-08-12 10:49:02 t 1 2 82691 320 0.00 2019-08-12 10:18:03 2019-08-12 10:53:09 t 1 2 82692 220 0.00 2019-08-12 10:58:10 2019-08-12 10:59:12 t 1 2 82693 346 0.00 2019-08-12 10:59:16 2019-08-12 10:59:28 t 1 2 82697 361 0.00 2019-08-12 10:07:04 2019-08-12 11:16:54 t 1 2 82703 302 0.00 2019-08-12 11:21:04 2019-08-12 11:31:09 t 1 2 82705 324 0.00 2019-08-12 11:39:54 2019-08-12 11:41:00 t 1 2 82708 288 0.00 2019-08-12 11:54:57 2019-08-12 11:56:01 t 1 2 82709 346 0.00 2019-08-12 11:59:29 2019-08-12 12:09:35 t 1 2 82711 212 0.00 2019-08-12 12:15:19 2019-08-12 12:16:02 t 1 2 82717 212 0.00 2019-08-12 12:25:45 2019-08-12 12:26:31 t 1 2 82719 306 0.00 2019-08-12 12:33:55 2019-08-12 12:34:57 t 1 2 82723 306 0.00 2019-08-12 12:44:23 2019-08-12 12:45:27 t 1 2 82726 288 0.00 2019-08-12 12:46:50 2019-08-12 12:47:53 t 1 2 82728 346 0.00 2019-08-12 12:51:10 2019-08-12 12:52:14 t 1 2 82730 306 0.00 2019-08-12 13:00:02 2019-08-12 13:01:06 t 1 2 82731 361 0.00 2019-08-12 11:47:43 2019-08-12 13:06:41 t 1 2 82732 320 0.00 2019-08-12 12:38:41 2019-08-12 13:08:46 t 1 2 82736 346 0.00 2019-08-12 13:17:29 2019-08-12 13:18:33 t 1 2 82739 306 0.00 2019-08-12 13:24:20 2019-08-12 13:25:25 t 1 2 82743 247 0.00 2019-08-12 13:45:19 2019-08-12 13:46:45 t 1 2 82744 294 0.00 2019-08-12 11:54:11 2019-08-12 13:49:35 t 1 2 82745 306 0.00 2019-08-12 14:10:31 2019-08-12 14:11:33 t 1 2 82749 361 0.00 2019-08-12 13:38:12 2019-08-12 14:54:25 t 1 2 82750 217 0.00 2019-08-12 14:59:27 2019-08-12 14:59:27 f 1 2 82753 217 0.00 2019-08-12 15:01:00 2019-08-12 15:01:00 f 1 2 82759 355 0.00 2019-08-12 15:19:29 2019-08-12 15:20:32 t 1 2 82764 355 0.00 2019-08-12 15:26:41 2019-08-12 15:26:51 t 1 2 82766 212 0.00 2019-08-12 15:06:43 2019-08-12 15:56:19 t 1 2 82773 324 0.00 2019-08-12 15:06:23 2019-08-12 16:20:22 t 1 2 82774 212 0.00 2019-08-12 16:20:33 2019-08-12 16:27:29 t 1 2 82777 288 0.00 2019-08-12 16:32:11 2019-08-12 16:33:15 t 1 2 82783 363 0.00 2019-08-12 17:02:18 2019-08-12 17:02:25 t 1 2 82786 306 0.00 2019-08-12 17:12:38 2019-08-12 17:12:41 t 1 2 82791 324 0.00 2019-08-12 17:32:12 2019-08-12 17:32:54 t 1 2 82793 361 0.00 2019-08-12 17:25:34 2019-08-12 17:37:11 t 1 2 82796 212 0.00 2019-08-12 17:46:42 2019-08-12 17:47:49 t 1 2 82798 363 0.00 2019-08-12 17:05:39 2019-08-12 17:55:44 t 1 2 82805 288 0.00 2019-08-12 18:35:22 2019-08-12 18:36:26 t 1 2 82808 320 0.00 2019-08-12 18:42:52 2019-08-12 18:52:57 t 1 2 82810 304 0.00 2019-08-12 18:40:39 2019-08-12 19:00:44 t 1 2 82813 355 0.00 2019-08-12 19:06:38 2019-08-12 19:06:54 t 1 2 82819 346 0.00 2019-08-12 15:06:26 2019-08-12 19:26:31 t 1 2 82820 212 0.00 2019-08-12 19:29:36 2019-08-12 19:30:39 t 1 2 82822 288 0.00 2019-08-12 19:33:35 2019-08-12 19:34:39 t 1 2 82852 363 0.00 2019-08-12 21:15:50 2019-08-12 21:15:56 t 1 2 82856 331 0.00 2019-08-12 21:30:49 2019-08-12 21:31:50 t 1 2 82858 331 0.00 2019-08-12 21:33:30 2019-08-12 21:34:34 t 1 2 82865 372 0.00 2019-08-12 21:06:45 2019-08-12 21:51:50 t 1 2 82871 363 0.00 2019-08-12 21:16:30 2019-08-12 22:01:36 t 1 2 82878 320 0.00 2019-08-12 22:02:01 2019-08-12 22:27:06 t 1 2 82888 220 0.00 2019-08-12 21:09:08 2019-08-12 23:04:13 t 1 2 82895 306 0.00 2019-08-12 23:05:49 2019-08-12 23:06:51 t 1 2 82899 220 0.00 2019-08-12 23:26:28 2019-08-12 23:27:33 t 1 2 82902 346 0.00 2019-08-12 23:31:05 2019-08-12 23:31:48 t 1 2 82910 247 0.00 2019-08-12 23:43:58 2019-08-12 23:44:21 t 1 2 82912 220 0.00 2019-08-12 23:45:18 2019-08-12 23:46:22 t 1 2 82914 220 0.00 2019-08-12 23:59:01 2019-08-13 00:00:03 t 1 2 82917 324 0.00 2019-08-13 00:00:46 2019-08-13 00:01:48 t 1 2 82918 346 0.00 2019-08-12 23:42:18 2019-08-13 00:03:43 t 1 2 82940 322 0.00 2019-08-13 03:57:15 2019-08-13 04:47:18 t 1 2 82944 286 0.00 2019-08-13 07:11:09 2019-08-13 07:21:14 t 1 2 82951 212 0.00 2019-08-13 08:08:32 2019-08-13 08:09:41 t 1 2 82959 288 0.00 2019-08-13 08:32:54 2019-08-13 08:33:58 t 1 2 82960 288 0.00 2019-08-13 08:38:13 2019-08-13 08:39:18 t 1 2 82962 288 0.00 2019-08-13 08:42:15 2019-08-13 08:43:21 t 1 2 82965 304 0.00 2019-08-13 08:39:17 2019-08-13 08:49:22 t 1 2 82968 361 0.00 2019-08-13 08:46:34 2019-08-13 08:56:04 t 1 2 82969 320 0.00 2019-08-13 08:48:42 2019-08-13 08:58:47 t 1 2 82972 320 0.00 2019-08-13 08:53:40 2019-08-13 09:03:45 t 1 2 82978 212 0.00 2019-08-13 09:14:16 2019-08-13 09:16:58 t 1 2 82980 320 0.00 2019-08-13 09:23:14 2019-08-13 09:23:14 f 1 2 82981 320 0.00 2019-08-13 09:23:41 2019-08-13 09:23:41 f 1 2 82983 320 0.00 2019-08-13 09:24:36 2019-08-13 09:24:36 f 1 2 82985 320 0.00 2019-08-13 09:10:23 2019-08-13 09:25:29 t 1 2 82988 320 0.00 2019-08-13 09:28:49 2019-08-13 09:28:49 f 1 2 82994 288 0.00 2019-08-13 09:51:35 2019-08-13 09:52:40 t 1 2 82995 288 0.00 2019-08-13 09:52:56 2019-08-13 09:54:04 t 1 2 82997 355 0.00 2019-08-13 09:53:42 2019-08-13 10:03:48 t 1 2 83000 247 0.00 2019-08-13 10:14:39 2019-08-13 10:15:23 t 1 2 83003 346 0.00 2019-08-13 10:19:18 2019-08-13 10:19:45 t 1 2 83007 346 0.00 2019-08-13 10:04:36 2019-08-13 10:29:42 t 1 2 83008 373 0.00 2019-08-13 10:35:11 2019-08-13 10:35:32 t 1 2 83011 251 0.00 2019-08-13 09:54:48 2019-08-13 10:44:54 t 1 2 83016 349 0.00 2019-08-13 10:54:59 2019-08-13 10:56:02 t 1 2 82735 346 0.00 2019-08-12 13:16:05 2019-08-12 13:17:10 t 1 2 82737 346 0.00 2019-08-12 13:19:08 2019-08-12 13:20:13 t 1 2 82738 367 0.00 2019-08-12 13:22:43 2019-08-12 13:23:47 t 1 2 82740 296 0.00 2019-08-12 13:22:48 2019-08-12 13:27:12 t 1 2 82742 346 0.00 2019-08-12 13:41:04 2019-08-12 13:42:07 t 1 2 82751 217 0.00 2019-08-12 14:59:58 2019-08-12 14:59:58 f 1 2 82762 355 0.00 2019-08-12 15:25:47 2019-08-12 15:25:56 t 1 2 82763 355 0.00 2019-08-12 15:26:23 2019-08-12 15:26:26 t 1 2 82780 296 0.00 2019-08-12 16:52:40 2019-08-12 16:55:03 t 1 2 82782 363 0.00 2019-08-12 17:00:56 2019-08-12 17:01:02 t 1 2 82788 220 0.00 2019-08-12 16:50:51 2019-08-12 17:14:32 t 1 2 82790 335 0.00 2019-08-12 17:09:44 2019-08-12 17:19:49 t 1 2 82792 212 0.00 2019-08-12 17:21:05 2019-08-12 17:36:10 t 1 2 82804 320 0.00 2019-08-12 17:34:39 2019-08-12 18:34:45 t 1 2 82818 320 0.00 2019-08-12 19:15:48 2019-08-12 19:25:53 t 1 2 82825 212 0.00 2019-08-12 19:37:50 2019-08-12 19:38:56 t 1 2 82828 212 0.00 2019-08-12 19:43:58 2019-08-12 19:44:21 t 1 2 82832 304 0.00 2019-08-12 19:52:47 2019-08-12 20:02:52 t 1 2 82837 320 0.00 2019-08-12 20:05:54 2019-08-12 20:15:59 t 1 2 82838 306 0.00 2019-08-12 20:25:12 2019-08-12 20:26:14 t 1 2 82841 220 0.00 2019-08-12 20:43:46 2019-08-12 20:44:50 t 1 2 82842 220 0.00 2019-08-12 20:47:21 2019-08-12 20:48:24 t 1 2 82845 220 0.00 2019-08-12 20:50:49 2019-08-12 20:51:54 t 1 2 82847 247 0.00 2019-08-12 21:04:55 2019-08-12 21:05:13 t 1 2 82850 220 0.00 2019-08-12 21:08:40 2019-08-12 21:08:50 t 1 2 82855 335 0.00 2019-08-12 21:26:03 2019-08-12 21:30:03 t 1 2 82857 294 0.00 2019-08-12 20:33:18 2019-08-12 21:33:42 t 1 2 82859 346 0.00 2019-08-12 21:21:20 2019-08-12 21:36:25 t 1 2 82863 324 0.00 2019-08-12 20:48:17 2019-08-12 21:48:54 t 1 2 82867 320 0.00 2019-08-12 21:44:43 2019-08-12 21:53:59 t 1 2 82869 212 0.00 2019-08-12 21:57:01 2019-08-12 21:57:49 t 1 2 82870 320 0.00 2019-08-12 21:57:55 2019-08-12 22:00:52 t 1 2 82879 306 0.00 2019-08-12 22:28:15 2019-08-12 22:29:18 t 1 2 82883 212 0.00 2019-08-12 22:40:02 2019-08-12 22:52:52 t 1 2 82885 306 0.00 2019-08-12 22:53:51 2019-08-12 22:54:54 t 1 2 82887 363 0.00 2019-08-12 23:00:13 2019-08-12 23:00:17 t 1 2 82890 243 0.00 2019-08-12 23:05:15 2019-08-12 23:05:15 f 1 2 82892 243 0.00 2019-08-12 23:05:30 2019-08-12 23:05:30 f 1 2 82896 306 0.00 2019-08-12 23:12:25 2019-08-12 23:13:29 t 1 2 82915 243 0.00 2019-08-13 00:00:58 2019-08-13 00:00:58 f 1 2 82916 324 0.00 2019-08-13 00:00:34 2019-08-13 00:01:47 t 1 2 82919 343 0.00 2019-08-12 23:56:37 2019-08-13 00:06:58 t 1 2 82921 243 0.00 2019-08-13 00:13:53 2019-08-13 00:13:53 f 1 2 82923 212 0.00 2019-08-13 00:15:17 2019-08-13 00:19:54 t 1 2 82926 361 0.00 2019-08-12 23:28:03 2019-08-13 00:33:29 t 1 2 82936 335 0.00 2019-08-13 01:20:25 2019-08-13 01:30:30 t 1 2 82937 212 0.00 2019-08-13 01:40:12 2019-08-13 01:41:19 t 1 2 82941 212 0.00 2019-08-13 05:35:47 2019-08-13 05:36:28 t 1 2 82950 320 0.00 2019-08-13 07:54:31 2019-08-13 08:04:37 t 1 2 82953 292 0.00 2019-08-13 08:11:18 2019-08-13 08:12:24 t 1 2 82963 308 0.00 2019-08-13 08:46:40 2019-08-13 08:46:41 t 1 2 82964 288 0.00 2019-08-13 08:45:45 2019-08-13 08:46:52 t 1 2 82967 320 0.00 2019-08-13 08:42:55 2019-08-13 08:53:01 t 1 2 82984 320 0.00 2019-08-13 09:25:17 2019-08-13 09:25:17 f 1 2 82990 320 0.00 2019-08-13 09:19:23 2019-08-13 09:29:28 t 1 2 83006 320 0.00 2019-08-13 09:34:33 2019-08-13 10:29:38 t 1 2 83013 373 0.00 2019-08-13 10:35:36 2019-08-13 10:45:42 t 1 2 83014 212 0.00 2019-08-13 10:48:38 2019-08-13 10:49:00 t 1 2 83023 288 0.00 2019-08-13 11:35:39 2019-08-13 11:36:45 t 1 2 83030 220 0.00 2019-08-13 11:55:36 2019-08-13 11:55:55 t 1 1 83044 212 0.00 2019-08-13 12:58:28 2019-08-13 12:58:49 t 1 2 83046 288 0.00 2019-08-13 13:19:54 2019-08-13 13:20:58 t 1 2 83050 288 0.00 2019-08-13 13:28:06 2019-08-13 13:29:11 t 1 2 83053 327 0.00 2019-08-13 12:38:20 2019-08-13 13:38:43 t 1 2 83054 220 0.00 2019-08-13 13:12:10 2019-08-13 13:41:21 t 1 1 83062 306 0.00 2019-08-13 14:05:13 2019-08-13 14:06:18 t 1 2 83063 263 0.00 2019-08-13 13:43:48 2019-08-13 14:08:23 t 1 1 83065 320 0.00 2019-08-13 13:57:55 2019-08-13 14:13:00 t 1 2 83067 355 0.00 2019-08-13 14:23:00 2019-08-13 14:23:00 f 1 2 83071 355 0.00 2019-08-13 14:22:12 2019-08-13 14:24:06 t 1 2 83073 346 0.00 2019-08-13 14:11:32 2019-08-13 14:36:37 t 1 2 83081 288 0.00 2019-08-13 14:52:41 2019-08-13 14:53:44 t 1 2 83089 212 0.00 2019-08-13 15:07:36 2019-08-13 15:07:57 t 1 2 83091 288 0.00 2019-08-13 15:17:43 2019-08-13 15:18:46 t 1 2 83095 243 0.00 2019-08-13 15:36:17 2019-08-13 15:36:17 f 1 2 83096 212 0.00 2019-08-13 15:39:25 2019-08-13 15:39:53 t 1 2 83097 220 0.00 2019-08-13 15:40:15 2019-08-13 15:41:23 t 1 2 83100 349 0.00 2019-08-13 16:01:14 2019-08-13 16:02:20 t 1 2 83101 220 0.00 2019-08-13 16:09:09 2019-08-13 16:10:36 t 1 2 83104 251 0.00 2019-08-13 16:15:15 2019-08-13 16:15:15 f 1 2 83107 288 0.00 2019-08-13 16:33:21 2019-08-13 16:34:25 t 1 2 83118 372 0.00 2019-08-13 16:41:46 2019-08-13 17:29:37 t 1 2 83120 212 0.00 2019-08-13 17:30:44 2019-08-13 17:31:47 t 1 2 83121 327 0.00 2019-08-13 15:45:08 2019-08-13 17:32:32 t 1 2 83122 288 0.00 2019-08-13 17:35:44 2019-08-13 17:36:47 t 1 2 83125 320 0.00 2019-08-13 17:32:23 2019-08-13 17:42:29 t 1 2 83137 220 0.00 2019-08-13 18:35:58 2019-08-13 18:38:05 t 1 1 83142 220 0.00 2019-08-13 18:40:07 2019-08-13 18:45:19 t 1 1 83148 212 0.00 2019-08-13 19:02:49 2019-08-13 19:03:53 t 1 2 83151 288 0.00 2019-08-13 19:08:45 2019-08-13 19:09:49 t 1 2 83154 363 0.00 2019-08-13 17:59:02 2019-08-13 19:19:07 t 1 2 83162 294 0.00 2019-08-13 19:44:28 2019-08-13 19:51:07 t 1 2 83165 263 0.00 2019-08-13 20:23:05 2019-08-13 20:23:05 f 1 1 83167 220 0.00 2019-08-13 19:43:18 2019-08-13 20:24:15 t 1 1 83173 306 0.00 2019-08-13 20:41:46 2019-08-13 20:41:46 t 1 2 83176 346 0.00 2019-08-13 20:48:34 2019-08-13 20:48:35 t 1 2 83177 217 0.00 2019-08-13 20:48:38 2019-08-13 20:48:38 f 1 2 83186 288 0.00 2019-08-13 21:02:33 2019-08-13 21:02:37 t 1 2 83190 202 0.00 2019-08-13 21:12:43 2019-08-13 21:12:43 f 1 2 83192 220 0.00 2019-08-13 21:13:03 2019-08-13 21:19:09 t 1 1 83197 292 0.00 2019-08-13 21:25:26 2019-08-13 21:25:31 t 1 2 83203 288 0.00 2019-08-13 21:33:40 2019-08-13 21:34:44 t 1 2 83205 247 0.00 2019-08-13 21:33:43 2019-08-13 21:36:54 t 1 2 83210 377 0.00 2019-08-13 21:48:13 2019-08-13 21:49:16 t 1 2 83214 263 0.00 2019-08-13 21:49:56 2019-08-13 21:49:56 f 1 1 83220 263 0.00 2019-08-13 22:02:47 2019-08-13 22:02:47 f 1 1 83223 377 0.00 2019-08-13 22:03:39 2019-08-13 22:04:46 t 1 2 82927 372 0.00 2019-08-12 23:57:12 2019-08-13 00:37:15 t 1 2 82928 212 0.00 2019-08-13 00:25:36 2019-08-13 00:39:33 t 1 2 82929 355 0.00 2019-08-13 00:45:46 2019-08-13 00:45:48 t 1 2 82933 320 0.00 2019-08-13 00:55:09 2019-08-13 01:10:14 t 1 2 82946 343 0.00 2019-08-13 01:37:07 2019-08-13 07:33:53 t 1 2 82948 288 0.00 2019-08-13 07:50:19 2019-08-13 07:51:23 t 1 2 82954 218 0.00 2019-08-13 08:13:31 2019-08-13 08:13:31 f 1 2 82955 306 0.00 2019-08-13 08:18:37 2019-08-13 08:19:42 t 1 2 82956 320 0.00 2019-08-13 08:21:58 2019-08-13 08:21:59 t 1 2 82957 320 0.00 2019-08-13 08:17:19 2019-08-13 08:27:24 t 1 2 82961 212 0.00 2019-08-13 08:38:52 2019-08-13 08:40:21 t 1 2 82966 320 0.00 2019-08-13 08:52:51 2019-08-13 08:52:51 f 1 2 82975 308 0.00 2019-08-13 08:46:44 2019-08-13 09:11:50 t 1 2 82977 288 0.00 2019-08-13 09:14:43 2019-08-13 09:15:47 t 1 2 82979 320 0.00 2019-08-13 09:22:47 2019-08-13 09:22:47 f 1 2 82982 320 0.00 2019-08-13 09:24:08 2019-08-13 09:24:08 f 1 2 82986 320 0.00 2019-08-13 09:27:43 2019-08-13 09:27:43 f 1 2 82987 320 0.00 2019-08-13 09:28:38 2019-08-13 09:28:38 f 1 2 82989 320 0.00 2019-08-13 09:29:19 2019-08-13 09:29:19 f 1 2 82993 212 0.00 2019-08-13 09:51:08 2019-08-13 09:51:25 t 1 2 82999 324 0.00 2019-08-13 10:12:33 2019-08-13 10:13:38 t 1 2 83004 346 0.00 2019-08-13 10:16:00 2019-08-13 10:26:05 t 1 2 83009 346 0.00 2019-08-13 10:24:53 2019-08-13 10:39:59 t 1 2 83010 288 0.00 2019-08-13 10:42:34 2019-08-13 10:43:39 t 1 2 83015 302 0.00 2019-08-13 10:26:12 2019-08-13 10:51:17 t 1 2 83017 346 0.00 2019-08-13 10:41:55 2019-08-13 10:57:00 t 1 2 83018 212 0.00 2019-08-13 11:07:08 2019-08-13 11:07:32 t 1 2 83020 346 0.00 2019-08-13 10:43:53 2019-08-13 11:18:58 t 1 2 83021 212 0.00 2019-08-13 11:29:25 2019-08-13 11:29:54 t 1 2 83024 212 0.00 2019-08-13 11:37:36 2019-08-13 11:38:55 t 1 2 83036 220 0.00 2019-08-13 11:55:55 2019-08-13 12:19:12 t 1 1 83038 346 0.00 2019-08-13 12:19:49 2019-08-13 12:29:54 t 1 2 83039 320 0.00 2019-08-13 12:31:34 2019-08-13 12:41:39 t 1 2 83043 247 0.00 2019-08-13 12:52:29 2019-08-13 12:54:02 t 1 2 83049 304 0.00 2019-08-13 13:18:50 2019-08-13 13:28:55 t 1 2 83055 304 0.00 2019-08-13 13:32:40 2019-08-13 13:42:45 t 1 2 83056 288 0.00 2019-08-13 13:46:44 2019-08-13 13:47:48 t 1 2 83057 288 0.00 2019-08-13 13:49:57 2019-08-13 13:51:03 t 1 2 83064 212 0.00 2019-08-13 14:12:27 2019-08-13 14:12:59 t 1 2 83070 355 0.00 2019-08-13 13:03:53 2019-08-13 14:23:59 t 1 2 83075 346 0.00 2019-08-13 14:06:42 2019-08-13 14:41:47 t 1 2 83082 355 0.00 2019-08-13 14:24:06 2019-08-13 14:55:07 t 1 2 83083 288 0.00 2019-08-13 14:58:18 2019-08-13 14:59:22 t 1 2 83090 361 0.00 2019-08-13 11:52:22 2019-08-13 15:14:13 t 1 2 83092 288 0.00 2019-08-13 15:19:36 2019-08-13 15:20:41 t 1 2 83098 288 0.00 2019-08-13 15:41:07 2019-08-13 15:42:13 t 1 2 83102 263 0.00 2019-08-13 15:58:48 2019-08-13 16:11:26 t 1 1 83105 251 0.00 2019-08-13 16:15:51 2019-08-13 16:15:51 f 1 2 83109 372 0.00 2019-08-13 16:34:57 2019-08-13 16:50:02 t 1 2 83115 212 0.00 2019-08-13 17:10:57 2019-08-13 17:11:27 t 1 2 83117 304 0.00 2019-08-13 17:10:03 2019-08-13 17:20:08 t 1 2 83119 304 0.00 2019-08-13 17:20:31 2019-08-13 17:30:36 t 1 2 83124 306 0.00 2019-08-13 17:40:25 2019-08-13 17:41:28 t 1 2 83127 220 0.00 2019-08-13 17:23:45 2019-08-13 17:45:35 t 1 1 83129 292 0.00 2019-08-13 17:47:03 2019-08-13 17:48:09 t 1 2 83131 363 0.00 2019-08-13 17:58:15 2019-08-13 17:58:18 t 1 2 83132 220 0.00 2019-08-13 17:50:00 2019-08-13 18:10:45 t 1 1 83133 292 0.00 2019-08-13 18:13:27 2019-08-13 18:14:34 t 1 2 83135 320 0.00 2019-08-13 18:19:16 2019-08-13 18:29:21 t 1 2 83136 346 0.00 2019-08-13 17:35:15 2019-08-13 18:35:20 t 1 2 83143 320 0.00 2019-08-13 18:40:23 2019-08-13 18:48:01 t 1 2 83144 292 0.00 2019-08-13 18:53:25 2019-08-13 18:53:56 t 1 2 83146 296 0.00 2019-08-13 18:45:53 2019-08-13 18:56:17 t 1 2 83147 247 0.00 2019-08-13 18:58:16 2019-08-13 18:59:08 t 1 2 83159 212 0.00 2019-08-13 19:31:43 2019-08-13 19:32:29 t 1 2 83171 375 0.00 2019-08-13 20:32:20 2019-08-13 20:36:23 t 1 2 83172 375 0.00 2019-08-13 20:36:29 2019-08-13 20:36:34 t 1 2 83187 324 0.00 2019-08-13 21:08:06 2019-08-13 21:09:26 t 1 2 83198 292 0.00 2019-08-13 21:25:55 2019-08-13 21:26:59 t 1 2 83208 377 0.00 2019-08-13 21:46:54 2019-08-13 21:47:57 t 1 2 83213 263 0.00 2019-08-13 21:49:41 2019-08-13 21:49:41 f 1 1 83222 296 0.00 2019-08-13 22:03:07 2019-08-13 22:04:31 t 1 2 83238 292 0.00 2019-08-13 22:22:47 2019-08-13 22:22:47 t 1 2 83239 288 0.00 2019-08-13 22:22:17 2019-08-13 22:23:20 t 1 2 83243 377 0.00 2019-08-13 22:26:17 2019-08-13 22:27:20 t 1 2 83250 372 0.00 2019-08-13 23:00:04 2019-08-13 23:03:15 t 1 2 83254 220 0.00 2019-08-13 23:14:36 2019-08-13 23:15:40 t 1 2 83258 377 0.00 2019-08-13 23:25:26 2019-08-13 23:26:31 t 1 2 83261 331 0.00 2019-08-13 23:31:41 2019-08-13 23:32:45 t 1 2 83264 212 0.00 2019-08-13 22:25:59 2019-08-13 23:33:41 t 1 2 83268 212 0.00 2019-08-13 23:33:59 2019-08-13 23:40:27 t 1 2 83271 377 0.00 2019-08-13 23:46:03 2019-08-13 23:47:07 t 1 2 83286 220 0.00 2019-08-14 00:08:52 2019-08-14 00:48:01 t 1 1 83288 346 0.00 2019-08-14 00:55:47 2019-08-14 01:09:45 t 1 2 83295 346 0.00 2019-08-14 02:30:46 2019-08-14 02:40:51 t 1 2 83299 363 0.00 2019-08-14 00:35:24 2019-08-14 05:35:29 t 1 2 83301 343 0.00 2019-08-14 01:28:27 2019-08-14 06:23:37 t 1 2 83308 220 0.00 2019-08-14 07:12:46 2019-08-14 07:15:48 t 1 1 83311 363 0.00 2019-08-14 07:33:28 2019-08-14 07:33:53 t 1 2 83315 363 0.00 2019-08-14 07:35:27 2019-08-14 08:00:32 t 1 2 83316 304 0.00 2019-08-14 07:52:39 2019-08-14 08:02:44 t 1 2 83326 288 0.00 2019-08-14 08:38:14 2019-08-14 08:39:23 t 1 2 83330 288 0.00 2019-08-14 09:00:39 2019-08-14 09:01:44 t 1 2 83331 220 0.00 2019-08-14 09:01:15 2019-08-14 09:02:19 t 1 2 83345 306 0.00 2019-08-14 09:43:09 2019-08-14 09:44:11 t 1 2 83358 377 0.00 2019-08-14 10:16:30 2019-08-14 10:17:38 t 1 2 83362 346 0.00 2019-08-14 09:27:36 2019-08-14 10:32:41 t 1 2 83363 212 0.00 2019-08-14 10:36:09 2019-08-14 10:36:33 t 1 2 83365 372 0.00 2019-08-14 10:40:18 2019-08-14 10:40:21 t 1 2 83370 288 0.00 2019-08-14 10:47:33 2019-08-14 10:48:35 t 1 2 83372 288 0.00 2019-08-14 10:51:01 2019-08-14 10:52:04 t 1 2 83374 306 0.00 2019-08-14 10:54:29 2019-08-14 10:55:33 t 1 2 83380 355 0.00 2019-08-14 08:56:35 2019-08-14 11:21:40 t 1 2 83386 306 0.00 2019-08-14 11:31:20 2019-08-14 11:32:22 t 1 2 83402 288 0.00 2019-08-14 12:40:49 2019-08-14 12:41:52 t 1 2 83403 367 0.00 2019-08-14 12:28:31 2019-08-14 12:45:41 t 1 2 83409 212 0.00 2019-08-14 13:01:55 2019-08-14 13:02:28 t 1 2 82952 292 0.00 2019-08-13 08:09:23 2019-08-13 08:10:28 t 1 2 82958 320 0.00 2019-08-13 08:23:06 2019-08-13 08:33:12 t 1 2 82970 288 0.00 2019-08-13 08:57:53 2019-08-13 08:58:57 t 1 2 82971 247 0.00 2019-08-13 09:00:10 2019-08-13 09:03:01 t 1 2 82973 304 0.00 2019-08-13 08:53:57 2019-08-13 09:04:02 t 1 2 82974 212 0.00 2019-08-13 09:07:11 2019-08-13 09:07:57 t 1 2 82976 288 0.00 2019-08-13 09:12:37 2019-08-13 09:13:41 t 1 2 82991 320 0.00 2019-08-13 09:25:46 2019-08-13 09:35:51 t 1 2 82992 306 0.00 2019-08-13 09:47:43 2019-08-13 09:48:45 t 1 2 82996 212 0.00 2019-08-13 09:53:28 2019-08-13 10:03:33 t 1 2 82998 212 0.00 2019-08-13 10:04:45 2019-08-13 10:05:50 t 1 2 83001 346 0.00 2019-08-13 10:14:20 2019-08-13 10:15:27 t 1 2 83002 346 0.00 2019-08-13 10:06:34 2019-08-13 10:16:39 t 1 2 83005 346 0.00 2019-08-13 10:18:32 2019-08-13 10:28:37 t 1 2 83012 288 0.00 2019-08-13 10:44:03 2019-08-13 10:45:07 t 1 2 83019 212 0.00 2019-08-13 11:08:26 2019-08-13 11:09:07 t 1 2 83022 324 0.00 2019-08-13 09:49:42 2019-08-13 11:34:47 t 1 2 83026 212 0.00 2019-08-13 11:42:33 2019-08-13 11:44:33 t 1 2 83027 373 0.00 2019-08-13 11:46:58 2019-08-13 11:48:00 t 1 2 83029 220 0.00 2019-08-13 11:52:59 2019-08-13 11:55:33 t 1 2 83031 373 0.00 2019-08-13 11:57:05 2019-08-13 11:58:10 t 1 2 83033 372 0.00 2019-08-13 12:00:25 2019-08-13 12:10:30 t 1 2 83035 247 0.00 2019-08-13 12:14:50 2019-08-13 12:16:21 t 1 2 83037 220 0.00 2019-08-13 12:22:18 2019-08-13 12:23:21 t 1 1 83040 302 0.00 2019-08-13 12:33:08 2019-08-13 12:48:13 t 1 2 83042 220 0.00 2019-08-13 12:48:39 2019-08-13 12:50:02 t 1 1 83051 288 0.00 2019-08-13 13:30:17 2019-08-13 13:31:21 t 1 2 83058 327 0.00 2019-08-13 13:45:14 2019-08-13 13:56:32 t 1 2 83060 288 0.00 2019-08-13 14:00:05 2019-08-13 14:01:07 t 1 2 83061 349 0.00 2019-08-13 14:02:57 2019-08-13 14:04:03 t 1 2 83066 355 0.00 2019-08-13 14:22:48 2019-08-13 14:22:48 f 1 2 83068 355 0.00 2019-08-13 14:23:14 2019-08-13 14:23:14 f 1 2 83069 355 0.00 2019-08-13 14:23:57 2019-08-13 14:23:57 f 1 2 83074 247 0.00 2019-08-13 14:36:45 2019-08-13 14:38:12 t 1 2 83077 320 0.00 2019-08-13 14:34:10 2019-08-13 14:44:15 t 1 2 83079 324 0.00 2019-08-13 14:18:16 2019-08-13 14:46:25 t 1 2 83080 296 0.00 2019-08-13 14:42:24 2019-08-13 14:52:44 t 1 2 83085 263 0.00 2019-08-13 14:57:20 2019-08-13 15:00:43 t 1 1 83087 220 0.00 2019-08-13 15:03:31 2019-08-13 15:04:40 t 1 2 83093 220 0.00 2019-08-13 15:12:38 2019-08-13 15:22:43 t 1 2 83094 220 0.00 2019-08-13 13:40:42 2019-08-13 15:31:55 t 1 1 83099 288 0.00 2019-08-13 15:42:56 2019-08-13 15:44:02 t 1 2 83103 372 0.00 2019-08-13 16:03:23 2019-08-13 16:13:28 t 1 2 83108 243 0.00 2019-08-13 16:49:48 2019-08-13 16:49:48 f 1 2 83110 288 0.00 2019-08-13 16:53:30 2019-08-13 16:54:34 t 1 2 83112 363 0.00 2019-08-13 15:38:59 2019-08-13 16:59:05 t 1 2 83114 218 0.00 2019-08-13 17:10:18 2019-08-13 17:10:18 f 1 2 83123 212 0.00 2019-08-13 17:36:17 2019-08-13 17:36:57 t 1 2 83128 220 0.00 2019-08-13 17:45:35 2019-08-13 17:46:42 t 1 1 83134 306 0.00 2019-08-13 18:16:41 2019-08-13 18:17:44 t 1 2 83138 365 0.00 2019-08-13 18:36:22 2019-08-13 18:38:05 t 1 2 83139 220 0.00 2019-08-13 18:38:33 2019-08-13 18:40:08 t 1 1 83140 272 0.00 2019-08-13 18:39:14 2019-08-13 18:41:08 t 1 2 83149 346 0.00 2019-08-13 17:58:51 2019-08-13 19:03:56 t 1 2 83152 220 0.00 2019-08-13 18:45:48 2019-08-13 19:10:33 t 1 1 83153 220 0.00 2019-08-13 19:14:39 2019-08-13 19:17:38 t 1 1 83156 272 0.00 2019-08-13 19:15:08 2019-08-13 19:25:13 t 1 2 83168 320 0.00 2019-08-13 20:08:51 2019-08-13 20:24:57 t 1 2 83169 294 0.00 2019-08-13 20:19:43 2019-08-13 20:31:06 t 1 2 83174 306 0.00 2019-08-13 20:41:51 2019-08-13 20:42:56 t 1 2 83179 357 0.00 2019-08-13 16:25:32 2019-08-13 20:50:38 t 1 2 83181 346 0.00 2019-08-13 20:43:31 2019-08-13 20:53:36 t 1 2 83182 304 0.00 2019-08-13 20:44:49 2019-08-13 20:54:54 t 1 2 83185 288 0.00 2019-08-13 20:58:17 2019-08-13 20:59:23 t 1 2 83189 288 0.00 2019-08-13 21:10:40 2019-08-13 21:11:47 t 1 2 83191 375 0.00 2019-08-13 20:57:53 2019-08-13 21:12:58 t 1 2 83193 288 0.00 2019-08-13 21:18:17 2019-08-13 21:19:23 t 1 2 83199 288 0.00 2019-08-13 21:29:17 2019-08-13 21:30:23 t 1 2 83201 312 0.00 2019-08-13 21:31:14 2019-08-13 21:32:19 t 1 2 83204 212 0.00 2019-08-13 21:33:53 2019-08-13 21:34:57 t 1 2 83207 288 0.00 2019-08-13 21:43:23 2019-08-13 21:44:26 t 1 2 83211 346 0.00 2019-08-13 21:29:23 2019-08-13 21:49:28 t 1 2 83215 372 0.00 2019-08-13 21:44:01 2019-08-13 21:54:06 t 1 2 83216 346 0.00 2019-08-13 21:41:23 2019-08-13 21:56:28 t 1 2 83218 220 0.00 2019-08-13 21:31:33 2019-08-13 21:57:56 t 1 1 83221 304 0.00 2019-08-13 21:53:40 2019-08-13 22:03:46 t 1 2 83224 288 0.00 2019-08-13 22:04:57 2019-08-13 22:06:05 t 1 2 83225 363 0.00 2019-08-13 22:06:30 2019-08-13 22:06:35 t 1 2 83226 363 0.00 2019-08-13 22:07:43 2019-08-13 22:07:48 t 1 2 83227 363 0.00 2019-08-13 22:08:08 2019-08-13 22:08:13 t 1 2 83230 288 0.00 2019-08-13 22:09:39 2019-08-13 22:10:46 t 1 2 83234 292 0.00 2019-08-13 22:15:53 2019-08-13 22:17:01 t 1 2 83240 377 0.00 2019-08-13 22:22:37 2019-08-13 22:23:40 t 1 2 83241 292 0.00 2019-08-13 22:22:54 2019-08-13 22:24:00 t 1 2 83245 377 0.00 2019-08-13 22:27:54 2019-08-13 22:29:02 t 1 2 83252 220 0.00 2019-08-13 23:13:05 2019-08-13 23:14:06 t 1 2 83260 331 0.00 2019-08-13 23:30:04 2019-08-13 23:31:10 t 1 2 83265 331 0.00 2019-08-13 23:33:25 2019-08-13 23:34:24 t 1 2 83269 377 0.00 2019-08-13 23:41:35 2019-08-13 23:42:39 t 1 2 83273 331 0.00 2019-08-13 23:51:55 2019-08-13 23:53:00 t 1 2 83276 324 0.00 2019-08-13 23:55:48 2019-08-13 23:58:16 t 1 2 83281 220 0.00 2019-08-14 00:14:13 2019-08-14 00:15:15 t 1 2 83284 363 0.00 2019-08-14 00:34:49 2019-08-14 00:34:53 t 1 2 83285 355 0.00 2019-08-14 00:28:59 2019-08-14 00:44:05 t 1 2 83291 372 0.00 2019-08-14 01:43:31 2019-08-14 01:47:57 t 1 2 83292 346 0.00 2019-08-14 01:14:12 2019-08-14 02:10:39 t 1 2 83298 346 0.00 2019-08-14 02:10:55 2019-08-14 03:12:07 t 1 2 83300 247 0.00 2019-08-14 06:10:29 2019-08-14 06:10:51 t 1 2 83302 220 0.00 2019-08-14 06:14:29 2019-08-14 06:31:43 t 1 1 83305 220 0.00 2019-08-14 06:47:01 2019-08-14 06:54:59 t 1 1 83307 220 0.00 2019-08-14 06:57:38 2019-08-14 07:02:18 t 1 1 83313 302 0.00 2019-08-14 03:10:09 2019-08-14 07:33:53 t 1 2 83318 320 0.00 2019-08-14 07:44:58 2019-08-14 08:10:03 t 1 2 83321 288 0.00 2019-08-14 08:15:51 2019-08-14 08:16:56 t 1 2 83325 306 0.00 2019-08-14 08:28:08 2019-08-14 08:29:09 t 1 2 83328 320 0.00 2019-08-14 08:34:52 2019-08-14 08:49:58 t 1 2 83334 288 0.00 2019-08-14 09:03:54 2019-08-14 09:04:57 t 1 2 83025 355 0.00 2019-08-13 11:25:52 2019-08-13 11:40:33 t 1 2 83028 306 0.00 2019-08-13 11:53:54 2019-08-13 11:55:03 t 1 2 83032 220 0.00 2019-08-13 12:09:38 2019-08-13 12:10:19 t 1 2 83034 320 0.00 2019-08-13 12:05:38 2019-08-13 12:15:43 t 1 2 83041 220 0.00 2019-08-13 12:24:04 2019-08-13 12:48:39 t 1 1 83045 212 0.00 2019-08-13 13:10:10 2019-08-13 13:11:13 t 1 2 83047 304 0.00 2019-08-13 13:13:54 2019-08-13 13:23:59 t 1 2 83048 212 0.00 2019-08-13 13:24:09 2019-08-13 13:24:31 t 1 2 83052 288 0.00 2019-08-13 13:32:37 2019-08-13 13:33:40 t 1 2 83059 320 0.00 2019-08-13 12:44:51 2019-08-13 13:59:56 t 1 2 83072 357 0.00 2019-08-13 09:55:50 2019-08-13 14:25:55 t 1 2 83076 212 0.00 2019-08-13 14:41:19 2019-08-13 14:41:50 t 1 2 83078 288 0.00 2019-08-13 14:43:55 2019-08-13 14:44:58 t 1 2 83084 346 0.00 2019-08-13 12:54:29 2019-08-13 14:59:34 t 1 2 83086 351 0.00 2019-08-13 15:00:33 2019-08-13 15:02:12 t 1 2 83088 212 0.00 2019-08-13 15:07:20 2019-08-13 15:07:26 t 1 2 83106 306 0.00 2019-08-13 16:15:27 2019-08-13 16:16:31 t 1 2 83111 247 0.00 2019-08-13 16:53:38 2019-08-13 16:55:11 t 1 2 83113 218 0.00 2019-08-13 17:10:10 2019-08-13 17:10:10 f 1 2 83116 288 0.00 2019-08-13 17:13:36 2019-08-13 17:14:39 t 1 2 83126 343 0.00 2019-08-13 17:42:34 2019-08-13 17:43:39 t 1 2 83130 294 0.00 2019-08-13 16:06:39 2019-08-13 17:52:03 t 1 2 83141 306 0.00 2019-08-13 18:40:43 2019-08-13 18:41:46 t 1 2 83145 272 0.00 2019-08-13 18:39:21 2019-08-13 18:54:26 t 1 2 83150 212 0.00 2019-08-13 19:04:51 2019-08-13 19:05:55 t 1 2 83155 294 0.00 2019-08-13 18:20:39 2019-08-13 19:21:03 t 1 2 83157 288 0.00 2019-08-13 19:25:48 2019-08-13 19:26:52 t 1 2 83158 324 0.00 2019-08-13 16:54:24 2019-08-13 19:29:29 t 1 2 83160 212 0.00 2019-08-13 19:39:53 2019-08-13 19:40:36 t 1 2 83161 220 0.00 2019-08-13 19:34:30 2019-08-13 19:42:39 t 1 1 83163 372 0.00 2019-08-13 20:13:49 2019-08-13 20:14:03 t 1 2 83164 220 0.00 2019-08-13 20:15:04 2019-08-13 20:16:19 t 1 2 83166 263 0.00 2019-08-13 18:16:18 2019-08-13 20:24:03 t 1 1 83170 220 0.00 2019-08-13 20:24:21 2019-08-13 20:32:14 t 1 1 83175 212 0.00 2019-08-13 20:44:42 2019-08-13 20:45:55 t 1 2 83178 220 0.00 2019-08-13 20:37:21 2019-08-13 20:50:04 t 1 2 83180 346 0.00 2019-08-13 20:48:45 2019-08-13 20:52:19 t 1 2 83183 346 0.00 2019-08-13 20:46:39 2019-08-13 20:56:44 t 1 2 83184 361 0.00 2019-08-13 18:10:17 2019-08-13 20:58:10 t 1 2 83188 288 0.00 2019-08-13 21:09:56 2019-08-13 21:10:05 t 1 2 83194 288 0.00 2019-08-13 21:21:32 2019-08-13 21:22:37 t 1 2 83195 292 0.00 2019-08-13 21:25:09 2019-08-13 21:25:16 t 1 2 83196 320 0.00 2019-08-13 20:55:22 2019-08-13 21:25:27 t 1 2 83200 324 0.00 2019-08-13 21:30:24 2019-08-13 21:31:31 t 1 2 83202 324 0.00 2019-08-13 21:31:43 2019-08-13 21:32:51 t 1 2 83206 247 0.00 2019-08-13 21:41:04 2019-08-13 21:41:58 t 1 2 83209 263 0.00 2019-08-13 21:49:13 2019-08-13 21:49:13 f 1 1 83212 263 0.00 2019-08-13 21:49:35 2019-08-13 21:49:35 f 1 1 83217 220 0.00 2019-08-13 21:55:37 2019-08-13 21:56:41 t 1 2 83219 220 0.00 2019-08-13 21:58:05 2019-08-13 21:59:10 t 1 2 83231 372 0.00 2019-08-13 22:06:41 2019-08-13 22:12:04 t 1 2 83233 288 0.00 2019-08-13 22:13:43 2019-08-13 22:14:48 t 1 2 83235 212 0.00 2019-08-13 22:18:53 2019-08-13 22:19:21 t 1 2 83237 288 0.00 2019-08-13 22:20:56 2019-08-13 22:21:59 t 1 2 83242 288 0.00 2019-08-13 22:23:43 2019-08-13 22:24:51 t 1 2 83246 288 0.00 2019-08-13 22:28:40 2019-08-13 22:29:43 t 1 2 83249 324 0.00 2019-08-13 20:56:50 2019-08-13 22:56:38 t 1 2 83255 220 0.00 2019-08-13 23:15:55 2019-08-13 23:16:58 t 1 2 83257 375 0.00 2019-08-13 22:43:27 2019-08-13 23:23:33 t 1 2 83259 294 0.00 2019-08-13 22:26:11 2019-08-13 23:26:35 t 1 2 83262 346 0.00 2019-08-13 23:17:42 2019-08-13 23:32:47 t 1 2 83266 247 0.00 2019-08-13 23:34:13 2019-08-13 23:34:38 t 1 2 83270 306 0.00 2019-08-13 23:43:33 2019-08-13 23:44:37 t 1 2 83272 331 0.00 2019-08-13 23:49:51 2019-08-13 23:50:58 t 1 2 83277 373 0.00 2019-08-13 23:58:22 2019-08-13 23:59:24 t 1 2 83278 373 0.00 2019-08-14 00:05:24 2019-08-14 00:06:27 t 1 2 83279 372 0.00 2019-08-14 00:00:09 2019-08-14 00:14:52 t 1 2 83287 355 0.00 2019-08-14 00:40:36 2019-08-14 00:50:41 t 1 2 83293 372 0.00 2019-08-14 02:02:32 2019-08-14 02:12:37 t 1 2 83294 346 0.00 2019-08-14 02:30:12 2019-08-14 02:30:20 t 1 2 83296 346 0.00 2019-08-14 02:29:09 2019-08-14 02:44:14 t 1 2 83303 220 0.00 2019-08-14 06:31:43 2019-08-14 06:40:34 t 1 1 83304 220 0.00 2019-08-14 06:40:37 2019-08-14 06:47:00 t 1 1 83310 288 0.00 2019-08-14 07:22:05 2019-08-14 07:23:09 t 1 2 83312 272 0.00 2019-08-13 21:20:00 2019-08-14 07:33:53 t 1 2 83317 306 0.00 2019-08-14 08:06:13 2019-08-14 08:07:18 t 1 2 83320 212 0.00 2019-08-14 08:15:49 2019-08-14 08:16:55 t 1 2 83322 320 0.00 2019-08-14 08:12:01 2019-08-14 08:22:06 t 1 2 83323 212 0.00 2019-08-14 08:24:27 2019-08-14 08:25:30 t 1 2 83327 212 0.00 2019-08-14 08:48:50 2019-08-14 08:49:53 t 1 2 83332 272 0.00 2019-08-14 08:32:23 2019-08-14 09:02:28 t 1 2 83337 288 0.00 2019-08-14 09:13:12 2019-08-14 09:14:15 t 1 2 83339 251 0.00 2019-08-14 09:21:57 2019-08-14 09:21:57 f 1 2 83341 247 0.00 2019-08-14 09:31:00 2019-08-14 09:31:34 t 1 2 83342 288 0.00 2019-08-14 09:33:00 2019-08-14 09:34:04 t 1 2 83344 288 0.00 2019-08-14 09:36:42 2019-08-14 09:37:45 t 1 2 83352 304 0.00 2019-08-14 09:52:05 2019-08-14 10:07:11 t 1 2 83353 286 0.00 2019-08-14 10:00:15 2019-08-14 10:10:20 t 1 2 83364 372 0.00 2019-08-14 10:40:02 2019-08-14 10:40:08 t 1 2 83366 306 0.00 2019-08-14 10:40:16 2019-08-14 10:40:27 t 1 2 83368 212 0.00 2019-08-14 10:45:36 2019-08-14 10:45:54 t 1 2 83375 320 0.00 2019-08-14 10:51:48 2019-08-14 11:01:53 t 1 2 83377 251 0.00 2019-08-14 11:03:03 2019-08-14 11:03:03 f 1 2 83378 372 0.00 2019-08-14 11:10:51 2019-08-14 11:11:26 t 1 2 83379 288 0.00 2019-08-14 11:16:05 2019-08-14 11:17:04 t 1 2 83382 320 0.00 2019-08-14 11:27:05 2019-08-14 11:29:04 t 1 2 83383 212 0.00 2019-08-14 11:29:45 2019-08-14 11:30:07 t 1 2 83387 306 0.00 2019-08-14 11:41:52 2019-08-14 11:42:49 t 1 2 83389 247 0.00 2019-08-14 11:43:17 2019-08-14 11:45:21 t 1 2 83390 251 0.00 2019-08-14 12:00:34 2019-08-14 12:00:34 f 1 2 83391 212 0.00 2019-08-14 12:03:10 2019-08-14 12:03:38 t 1 2 83394 212 0.00 2019-08-14 12:15:15 2019-08-14 12:15:32 t 1 2 83395 304 0.00 2019-08-14 12:16:26 2019-08-14 12:16:28 t 1 2 83397 372 0.00 2019-08-14 12:20:26 2019-08-14 12:27:43 t 1 2 83399 320 0.00 2019-08-14 12:01:48 2019-08-14 12:36:53 t 1 2 83400 288 0.00 2019-08-14 12:39:27 2019-08-14 12:40:33 t 1 2 83404 212 0.00 2019-08-14 12:47:00 2019-08-14 12:47:40 t 1 2 83228 288 0.00 2019-08-13 22:07:46 2019-08-13 22:08:50 t 1 2 83229 292 0.00 2019-08-13 22:09:37 2019-08-13 22:10:41 t 1 2 83232 288 0.00 2019-08-13 22:12:21 2019-08-13 22:13:25 t 1 2 83236 377 0.00 2019-08-13 22:18:19 2019-08-13 22:19:25 t 1 2 83244 288 0.00 2019-08-13 22:26:35 2019-08-13 22:27:42 t 1 2 83247 220 0.00 2019-08-13 22:33:04 2019-08-13 22:34:07 t 1 2 83248 320 0.00 2019-08-13 22:34:53 2019-08-13 22:44:58 t 1 2 83251 220 0.00 2019-08-13 23:10:38 2019-08-13 23:11:45 t 1 2 83253 220 0.00 2019-08-13 23:04:48 2019-08-13 23:14:53 t 1 2 83256 361 0.00 2019-08-13 21:03:15 2019-08-13 23:18:29 t 1 2 83263 306 0.00 2019-08-13 23:32:17 2019-08-13 23:33:19 t 1 2 83267 331 0.00 2019-08-13 23:35:03 2019-08-13 23:36:01 t 1 2 83274 322 0.00 2019-08-13 23:05:52 2019-08-13 23:53:54 t 1 2 83275 320 0.00 2019-08-13 23:24:02 2019-08-13 23:57:57 t 1 2 83280 355 0.00 2019-08-13 23:05:01 2019-08-14 00:15:06 t 1 2 83282 363 0.00 2019-08-13 22:10:04 2019-08-14 00:17:29 t 1 2 83283 212 0.00 2019-08-14 00:30:22 2019-08-14 00:30:48 t 1 2 83289 212 0.00 2019-08-14 01:11:46 2019-08-14 01:12:07 t 1 2 83290 320 0.00 2019-08-14 00:00:24 2019-08-14 01:25:29 t 1 2 83297 375 0.00 2019-08-14 01:41:54 2019-08-14 03:12:00 t 1 2 83306 220 0.00 2019-08-14 06:54:59 2019-08-14 06:57:38 t 1 1 83309 294 0.00 2019-08-14 06:19:29 2019-08-14 07:19:53 t 1 2 83314 363 0.00 2019-08-14 07:35:11 2019-08-14 07:35:16 t 1 2 83319 363 0.00 2019-08-14 07:56:02 2019-08-14 08:16:08 t 1 2 83324 247 0.00 2019-08-14 08:26:27 2019-08-14 08:26:44 t 1 2 83329 288 0.00 2019-08-14 08:59:15 2019-08-14 09:00:21 t 1 2 83333 288 0.00 2019-08-14 09:02:04 2019-08-14 09:03:08 t 1 2 83335 288 0.00 2019-08-14 09:07:55 2019-08-14 09:09:00 t 1 2 83338 320 0.00 2019-08-14 08:54:35 2019-08-14 09:14:40 t 1 2 83340 251 0.00 2019-08-14 09:22:04 2019-08-14 09:22:04 f 1 2 83343 288 0.00 2019-08-14 09:34:39 2019-08-14 09:35:45 t 1 2 83347 288 0.00 2019-08-14 09:45:23 2019-08-14 09:46:32 t 1 2 83348 306 0.00 2019-08-14 09:48:14 2019-08-14 09:49:16 t 1 2 83351 212 0.00 2019-08-14 09:55:33 2019-08-14 09:56:03 t 1 2 83355 288 0.00 2019-08-14 10:12:47 2019-08-14 10:13:55 t 1 2 83356 212 0.00 2019-08-14 10:13:58 2019-08-14 10:14:31 t 1 2 83360 288 0.00 2019-08-14 10:19:31 2019-08-14 10:20:36 t 1 2 83371 288 0.00 2019-08-14 10:49:17 2019-08-14 10:50:21 t 1 2 83373 306 0.00 2019-08-14 10:53:04 2019-08-14 10:54:02 t 1 2 83376 372 0.00 2019-08-14 10:40:29 2019-08-14 11:02:52 t 1 2 83385 306 0.00 2019-08-14 11:30:49 2019-08-14 11:30:55 t 1 2 83393 372 0.00 2019-08-14 12:12:43 2019-08-14 12:13:01 t 1 2 83396 304 0.00 2019-08-14 12:16:36 2019-08-14 12:26:41 t 1 2 83413 314 0.00 2019-08-14 10:43:31 2019-08-14 13:13:36 t 1 2 83419 272 0.00 2019-08-14 13:22:42 2019-08-14 13:22:42 f 1 2 83427 272 0.00 2019-08-14 13:43:32 2019-08-14 13:43:32 f 1 2 83428 272 0.00 2019-08-14 13:43:41 2019-08-14 13:43:41 f 1 2 83432 306 0.00 2019-08-14 13:53:34 2019-08-14 13:54:40 t 1 2 83435 346 0.00 2019-08-14 14:02:30 2019-08-14 14:04:43 t 1 2 83437 220 0.00 2019-08-14 14:09:04 2019-08-14 14:10:06 t 1 2 83438 220 0.00 2019-08-14 14:10:34 2019-08-14 14:11:40 t 1 2 83439 220 0.00 2019-08-14 14:18:28 2019-08-14 14:19:34 t 1 2 83441 220 0.00 2019-08-14 14:25:05 2019-08-14 14:26:09 t 1 2 83443 220 0.00 2019-08-14 14:26:32 2019-08-14 14:27:34 t 1 2 83445 292 0.00 2019-08-14 14:27:43 2019-08-14 14:28:44 t 1 2 83452 220 0.00 2019-08-14 14:23:36 2019-08-14 14:38:41 t 1 2 83455 377 0.00 2019-08-14 14:54:56 2019-08-14 14:56:04 t 1 2 83456 377 0.00 2019-08-14 14:56:13 2019-08-14 14:57:19 t 1 2 83463 355 0.00 2019-08-14 13:51:14 2019-08-14 15:16:19 t 1 2 83469 212 0.00 2019-08-14 15:46:17 2019-08-14 15:47:32 t 1 2 83480 349 0.00 2019-08-14 16:10:10 2019-08-14 16:11:14 t 1 2 83484 294 0.00 2019-08-14 14:17:42 2019-08-14 16:15:06 t 1 2 83487 306 0.00 2019-08-14 16:21:51 2019-08-14 16:22:53 t 1 2 83492 324 0.00 2019-08-14 17:07:39 2019-08-14 17:07:41 t 1 2 83493 346 0.00 2019-08-14 17:08:23 2019-08-14 17:08:39 t 1 2 83500 320 0.00 2019-08-14 17:41:56 2019-08-14 17:41:56 f 1 2 83502 320 0.00 2019-08-14 17:36:38 2019-08-14 17:46:43 t 1 2 83503 288 0.00 2019-08-14 17:49:23 2019-08-14 17:50:29 t 1 2 83505 363 0.00 2019-08-14 16:25:52 2019-08-14 17:55:58 t 1 2 83507 220 0.00 2019-08-14 16:29:01 2019-08-14 18:04:06 t 1 2 83509 381 0.00 2019-08-14 17:57:20 2019-08-14 18:07:25 t 1 2 83514 320 0.00 2019-08-14 18:04:16 2019-08-14 18:14:21 t 1 2 83517 373 0.00 2019-08-14 18:39:26 2019-08-14 18:40:32 t 1 2 83523 288 0.00 2019-08-14 18:45:36 2019-08-14 18:46:39 t 1 2 83546 288 0.00 2019-08-14 19:47:37 2019-08-14 19:48:40 t 1 2 83547 320 0.00 2019-08-14 19:41:47 2019-08-14 19:51:52 t 1 2 83550 324 0.00 2019-08-14 19:55:29 2019-08-14 19:56:32 t 1 2 83553 346 0.00 2019-08-14 19:10:09 2019-08-14 20:04:23 t 1 2 83557 324 0.00 2019-08-14 20:14:23 2019-08-14 20:24:28 t 1 2 83558 324 0.00 2019-08-14 20:18:08 2019-08-14 20:28:47 t 1 2 83563 346 0.00 2019-08-14 20:13:46 2019-08-14 20:33:51 t 1 2 83566 324 0.00 2019-08-14 20:42:23 2019-08-14 20:43:28 t 1 2 83568 324 0.00 2019-08-14 20:32:56 2019-08-14 20:48:01 t 1 2 83573 294 0.00 2019-08-14 20:09:04 2019-08-14 21:09:28 t 1 2 83576 373 0.00 2019-08-14 21:44:34 2019-08-14 21:45:39 t 1 2 83577 346 0.00 2019-08-14 21:46:47 2019-08-14 21:46:50 t 1 2 83578 346 0.00 2019-08-14 21:46:58 2019-08-14 21:47:27 t 1 2 83592 220 0.00 2019-08-14 22:13:48 2019-08-14 22:14:29 t 1 1 83594 373 0.00 2019-08-14 22:20:32 2019-08-14 22:21:37 t 1 2 83618 212 0.00 2019-08-14 23:17:00 2019-08-14 23:17:38 t 1 2 83625 212 0.00 2019-08-14 23:22:43 2019-08-14 23:22:52 t 1 2 83627 212 0.00 2019-08-14 23:23:14 2019-08-14 23:23:43 t 1 2 83634 220 0.00 2019-08-14 23:19:26 2019-08-14 23:40:29 t 1 2 83637 212 0.00 2019-08-14 23:44:06 2019-08-14 23:44:47 t 1 2 83638 355 0.00 2019-08-14 22:38:28 2019-08-14 23:48:33 t 1 2 83643 247 0.00 2019-08-14 23:51:26 2019-08-14 23:56:02 t 1 2 83645 212 0.00 2019-08-15 00:01:48 2019-08-15 00:02:56 t 1 2 83647 212 0.00 2019-08-15 00:05:47 2019-08-15 00:06:20 t 1 2 83648 304 0.00 2019-08-15 00:12:00 2019-08-15 00:12:00 f 1 2 83650 379 0.00 2019-08-14 20:57:39 2019-08-15 00:12:44 t 1 2 83652 288 0.00 2019-08-15 00:14:46 2019-08-15 00:15:51 t 1 2 83664 304 0.00 2019-08-15 00:24:03 2019-08-15 00:39:08 t 1 2 83667 220 0.00 2019-08-15 00:56:02 2019-08-15 00:57:06 t 1 2 83671 220 0.00 2019-08-15 01:00:20 2019-08-15 01:01:25 t 1 2 83672 220 0.00 2019-08-15 01:01:44 2019-08-15 01:02:46 t 1 2 83674 304 0.00 2019-08-15 00:50:53 2019-08-15 01:05:58 t 1 2 83678 217 0.00 2019-08-15 01:07:06 2019-08-15 01:07:06 f 1 2 83336 288 0.00 2019-08-14 09:11:30 2019-08-14 09:12:33 t 1 2 83346 306 0.00 2019-08-14 09:45:25 2019-08-14 09:46:26 t 1 2 83349 320 0.00 2019-08-14 09:42:55 2019-08-14 09:53:00 t 1 2 83350 320 0.00 2019-08-14 09:44:59 2019-08-14 09:55:04 t 1 2 83354 288 0.00 2019-08-14 10:09:19 2019-08-14 10:10:24 t 1 2 83357 304 0.00 2019-08-14 10:01:01 2019-08-14 10:16:06 t 1 2 83359 377 0.00 2019-08-14 10:18:10 2019-08-14 10:19:13 t 1 2 83361 302 0.00 2019-08-14 09:52:08 2019-08-14 10:22:13 t 1 2 83367 306 0.00 2019-08-14 10:40:49 2019-08-14 10:41:52 t 1 2 83369 288 0.00 2019-08-14 10:45:22 2019-08-14 10:46:24 t 1 2 83381 357 0.00 2019-08-14 08:57:07 2019-08-14 11:27:12 t 1 2 83384 306 0.00 2019-08-14 11:29:12 2019-08-14 11:30:15 t 1 2 83388 365 0.00 2019-08-14 11:27:50 2019-08-14 11:42:56 t 1 2 83392 372 0.00 2019-08-14 12:12:26 2019-08-14 12:12:27 t 1 2 83398 372 0.00 2019-08-14 12:13:13 2019-08-14 12:28:19 t 1 2 83401 375 0.00 2019-08-14 12:16:18 2019-08-14 12:41:24 t 1 2 83405 288 0.00 2019-08-14 12:52:57 2019-08-14 12:54:04 t 1 2 83406 320 0.00 2019-08-14 12:47:13 2019-08-14 12:57:19 t 1 2 83408 306 0.00 2019-08-14 12:59:15 2019-08-14 13:00:15 t 1 2 83414 324 0.00 2019-08-14 12:44:22 2019-08-14 13:14:28 t 1 2 83416 212 0.00 2019-08-14 13:17:42 2019-08-14 13:18:17 t 1 2 83423 247 0.00 2019-08-14 13:29:26 2019-08-14 13:30:07 t 1 2 83424 292 0.00 2019-08-14 13:29:14 2019-08-14 13:30:20 t 1 2 83434 292 0.00 2019-08-14 14:00:25 2019-08-14 14:01:28 t 1 2 83450 327 0.00 2019-08-14 13:12:03 2019-08-14 14:37:09 t 1 2 83467 320 0.00 2019-08-14 15:27:57 2019-08-14 15:38:02 t 1 2 83470 320 0.00 2019-08-14 15:41:10 2019-08-14 15:51:15 t 1 2 83471 272 0.00 2019-08-14 15:53:22 2019-08-14 15:53:22 f 1 2 83473 320 0.00 2019-08-14 15:48:07 2019-08-14 15:58:12 t 1 2 83478 349 0.00 2019-08-14 16:09:45 2019-08-14 16:10:04 t 1 2 83479 373 0.00 2019-08-14 16:09:43 2019-08-14 16:10:45 t 1 2 83482 320 0.00 2019-08-14 16:02:19 2019-08-14 16:12:25 t 1 2 83494 346 0.00 2019-08-14 16:58:41 2019-08-14 17:13:38 t 1 2 83497 379 0.00 2019-08-14 17:29:39 2019-08-14 17:37:39 t 1 2 83498 379 0.00 2019-08-14 17:37:51 2019-08-14 17:37:57 t 1 2 83506 320 0.00 2019-08-14 17:50:46 2019-08-14 18:00:51 t 1 2 83513 363 0.00 2019-08-14 17:52:54 2019-08-14 18:11:00 t 1 2 83516 306 0.00 2019-08-14 18:34:52 2019-08-14 18:35:58 t 1 2 83519 373 0.00 2019-08-14 18:41:42 2019-08-14 18:42:46 t 1 2 83524 373 0.00 2019-08-14 18:48:02 2019-08-14 18:49:06 t 1 2 83525 288 0.00 2019-08-14 18:49:50 2019-08-14 18:50:56 t 1 2 83529 288 0.00 2019-08-14 18:55:35 2019-08-14 18:56:42 t 1 2 83533 357 0.00 2019-08-14 16:29:43 2019-08-14 19:04:48 t 1 2 83542 288 0.00 2019-08-14 19:38:18 2019-08-14 19:39:27 t 1 2 83543 220 0.00 2019-08-14 19:39:54 2019-08-14 19:41:00 t 1 2 83544 288 0.00 2019-08-14 19:41:09 2019-08-14 19:41:10 t 1 2 83545 288 0.00 2019-08-14 19:41:13 2019-08-14 19:42:19 t 1 2 83556 320 0.00 2019-08-14 20:04:27 2019-08-14 20:19:33 t 1 2 83559 324 0.00 2019-08-14 20:28:51 2019-08-14 20:29:09 t 1 2 83564 346 0.00 2019-08-14 20:25:52 2019-08-14 20:40:57 t 1 2 83567 296 0.00 2019-08-14 20:23:01 2019-08-14 20:44:25 t 1 2 83574 373 0.00 2019-08-14 21:35:11 2019-08-14 21:36:18 t 1 2 83579 346 0.00 2019-08-14 21:47:37 2019-08-14 21:48:39 t 1 2 83581 346 0.00 2019-08-14 21:49:39 2019-08-14 21:50:43 t 1 2 83582 247 0.00 2019-08-14 21:52:16 2019-08-14 21:52:46 t 1 2 83583 346 0.00 2019-08-14 21:54:38 2019-08-14 21:55:41 t 1 2 83585 220 0.00 2019-08-14 22:03:07 2019-08-14 22:04:13 t 1 2 83586 220 0.00 2019-08-14 22:09:27 2019-08-14 22:10:30 t 1 2 83587 220 0.00 2019-08-14 22:10:50 2019-08-14 22:11:26 t 1 1 83589 220 0.00 2019-08-14 22:12:00 2019-08-14 22:12:36 t 1 1 83593 220 0.00 2019-08-14 22:14:29 2019-08-14 22:15:02 t 1 1 83596 212 0.00 2019-08-14 22:09:57 2019-08-14 22:29:17 t 1 2 83597 220 0.00 2019-08-14 22:00:06 2019-08-14 22:33:05 t 1 1 83598 333 0.00 2019-08-14 22:30:14 2019-08-14 22:33:29 t 1 2 83603 372 0.00 2019-08-14 22:43:49 2019-08-14 22:45:35 t 1 2 83608 324 0.00 2019-08-14 20:43:22 2019-08-14 22:55:41 t 1 2 83610 247 0.00 2019-08-14 22:58:33 2019-08-14 22:58:53 t 1 2 83612 349 0.00 2019-08-14 23:03:10 2019-08-14 23:04:18 t 1 2 83616 372 0.00 2019-08-14 23:02:27 2019-08-14 23:12:32 t 1 2 83620 306 0.00 2019-08-14 23:18:51 2019-08-14 23:19:53 t 1 2 83623 306 0.00 2019-08-14 23:22:24 2019-08-14 23:22:30 t 1 2 83624 220 0.00 2019-08-14 23:21:41 2019-08-14 23:22:46 t 1 2 83626 306 0.00 2019-08-14 23:22:36 2019-08-14 23:23:41 t 1 2 83630 212 0.00 2019-08-14 23:30:00 2019-08-14 23:30:24 t 1 2 83633 212 0.00 2019-08-14 23:35:59 2019-08-14 23:36:15 t 1 2 83635 361 0.00 2019-08-14 22:19:37 2019-08-14 23:41:38 t 1 2 83641 220 0.00 2019-08-14 23:47:53 2019-08-14 23:50:34 t 1 1 83642 220 0.00 2019-08-14 23:52:16 2019-08-14 23:53:20 t 1 2 83654 346 0.00 2019-08-14 23:34:23 2019-08-15 00:30:09 t 1 2 83658 304 0.00 2019-08-15 00:38:01 2019-08-15 00:38:01 f 1 2 83660 304 0.00 2019-08-15 00:38:17 2019-08-15 00:38:17 f 1 2 83663 304 0.00 2019-08-15 00:39:03 2019-08-15 00:39:03 f 1 2 83669 304 0.00 2019-08-15 00:39:17 2019-08-15 00:59:22 t 1 2 83683 220 0.00 2019-08-14 23:42:15 2019-08-15 01:21:17 t 1 2 83684 355 0.00 2019-08-15 01:21:33 2019-08-15 01:21:35 t 1 2 83693 324 0.00 2019-08-15 01:58:26 2019-08-15 02:07:29 t 1 2 83695 361 0.00 2019-08-15 00:20:35 2019-08-15 02:15:40 t 1 2 83701 363 0.00 2019-08-14 23:38:22 2019-08-15 03:03:28 t 1 2 83702 346 0.00 2019-08-15 03:13:07 2019-08-15 03:27:20 t 1 2 83704 346 0.00 2019-08-15 04:04:02 2019-08-15 04:19:07 t 1 2 83711 322 0.00 2019-08-15 06:20:00 2019-08-15 07:33:52 t 1 2 83716 212 0.00 2019-08-15 08:07:29 2019-08-15 08:08:07 t 1 2 83720 212 0.00 2019-08-15 08:49:27 2019-08-15 08:50:25 t 1 2 83723 212 0.00 2019-08-15 09:00:10 2019-08-15 09:00:36 t 1 2 83727 304 0.00 2019-08-15 09:00:56 2019-08-15 09:00:56 f 1 2 83729 304 0.00 2019-08-15 09:01:21 2019-08-15 09:01:21 f 1 2 83736 304 0.00 2019-08-15 09:02:39 2019-08-15 09:02:39 f 1 2 83738 304 0.00 2019-08-15 09:03:02 2019-08-15 09:03:02 f 1 2 83743 304 0.00 2019-08-15 09:06:20 2019-08-15 09:09:20 t 1 2 83745 288 0.00 2019-08-15 09:13:36 2019-08-15 09:14:41 t 1 2 83750 288 0.00 2019-08-15 09:26:21 2019-08-15 09:27:29 t 1 2 83753 306 0.00 2019-08-15 09:37:19 2019-08-15 09:38:22 t 1 2 83772 306 0.00 2019-08-15 10:41:51 2019-08-15 10:42:54 t 1 2 83778 306 0.00 2019-08-15 11:10:09 2019-08-15 11:11:11 t 1 2 83783 349 0.00 2019-08-15 11:19:23 2019-08-15 11:20:27 t 1 2 83789 349 0.00 2019-08-15 11:25:59 2019-08-15 11:27:04 t 1 2 83792 349 0.00 2019-08-15 11:29:47 2019-08-15 11:30:52 t 1 2 83407 306 0.00 2019-08-14 12:59:08 2019-08-14 12:59:10 t 1 2 83410 346 0.00 2019-08-14 12:42:38 2019-08-14 13:07:43 t 1 2 83411 263 0.00 2019-08-14 13:09:24 2019-08-14 13:09:24 f 1 1 83415 212 0.00 2019-08-14 13:17:35 2019-08-14 13:17:36 t 1 2 83420 272 0.00 2019-08-14 13:22:54 2019-08-14 13:22:54 f 1 2 83422 212 0.00 2019-08-14 13:28:59 2019-08-14 13:29:46 t 1 2 83426 272 0.00 2019-08-14 13:43:24 2019-08-14 13:43:24 f 1 2 83429 220 0.00 2019-08-14 13:44:06 2019-08-14 13:44:12 t 1 2 83431 320 0.00 2019-08-14 13:42:45 2019-08-14 13:52:50 t 1 2 83436 320 0.00 2019-08-14 13:54:32 2019-08-14 14:09:37 t 1 2 83440 220 0.00 2019-08-14 14:21:35 2019-08-14 14:22:41 t 1 2 83447 286 0.00 2019-08-14 14:19:32 2019-08-14 14:29:37 t 1 2 83453 292 0.00 2019-08-14 14:50:04 2019-08-14 14:51:11 t 1 2 83454 377 0.00 2019-08-14 14:53:36 2019-08-14 14:54:33 t 1 2 83458 377 0.00 2019-08-14 14:57:28 2019-08-14 14:58:36 t 1 2 83459 377 0.00 2019-08-14 14:59:56 2019-08-14 15:00:58 t 1 2 83460 372 0.00 2019-08-14 15:02:19 2019-08-14 15:04:25 t 1 2 83462 306 0.00 2019-08-14 15:14:46 2019-08-14 15:14:53 t 1 2 83464 306 0.00 2019-08-14 15:17:48 2019-08-14 15:17:53 t 1 2 83465 247 0.00 2019-08-14 15:23:26 2019-08-14 15:24:03 t 1 2 83468 220 0.00 2019-08-14 15:43:28 2019-08-14 15:44:32 t 1 2 83474 288 0.00 2019-08-14 15:57:38 2019-08-14 15:58:42 t 1 2 83476 304 0.00 2019-08-14 15:54:50 2019-08-14 16:04:55 t 1 2 83481 288 0.00 2019-08-14 16:10:42 2019-08-14 16:11:49 t 1 2 83483 212 0.00 2019-08-14 16:12:45 2019-08-14 16:13:53 t 1 2 83486 363 0.00 2019-08-14 16:21:08 2019-08-14 16:21:19 t 1 2 83489 320 0.00 2019-08-14 16:26:31 2019-08-14 16:36:36 t 1 2 83490 320 0.00 2019-08-14 16:36:22 2019-08-14 16:46:27 t 1 2 83491 247 0.00 2019-08-14 17:00:32 2019-08-14 17:00:50 t 1 2 83499 320 0.00 2019-08-14 17:41:46 2019-08-14 17:41:46 f 1 2 83508 308 0.00 2019-08-14 13:41:00 2019-08-14 18:06:05 t 1 2 83511 304 0.00 2019-08-14 17:59:21 2019-08-14 18:09:26 t 1 2 83512 377 0.00 2019-08-14 18:09:41 2019-08-14 18:10:49 t 1 2 83515 251 0.00 2019-08-14 18:31:53 2019-08-14 18:31:53 f 1 2 83522 373 0.00 2019-08-14 18:44:21 2019-08-14 18:45:26 t 1 2 83527 288 0.00 2019-08-14 18:52:17 2019-08-14 18:53:24 t 1 2 83530 288 0.00 2019-08-14 18:58:07 2019-08-14 18:59:11 t 1 2 83531 327 0.00 2019-08-14 17:04:31 2019-08-14 19:01:43 t 1 2 83534 363 0.00 2019-08-14 18:20:41 2019-08-14 19:10:46 t 1 2 83536 324 0.00 2019-08-14 18:50:55 2019-08-14 19:25:23 t 1 2 83538 288 0.00 2019-08-14 19:29:46 2019-08-14 19:30:50 t 1 2 83539 288 0.00 2019-08-14 19:31:27 2019-08-14 19:32:31 t 1 2 83540 320 0.00 2019-08-14 19:31:18 2019-08-14 19:33:51 t 1 2 83548 363 0.00 2019-08-14 19:23:09 2019-08-14 19:53:14 t 1 2 83549 218 0.00 2019-08-14 19:53:45 2019-08-14 19:53:45 f 1 2 83554 372 0.00 2019-08-14 19:56:50 2019-08-14 20:10:25 t 1 2 83561 314 0.00 2019-08-14 20:20:22 2019-08-14 20:30:27 t 1 2 83570 346 0.00 2019-08-14 20:38:20 2019-08-14 20:58:25 t 1 2 83572 320 0.00 2019-08-14 20:55:17 2019-08-14 21:05:22 t 1 2 83575 320 0.00 2019-08-14 21:34:46 2019-08-14 21:44:51 t 1 2 83590 220 0.00 2019-08-14 22:12:36 2019-08-14 22:13:11 t 1 1 83591 220 0.00 2019-08-14 22:13:11 2019-08-14 22:13:48 t 1 1 83595 324 0.00 2019-08-14 20:59:04 2019-08-14 22:23:10 t 1 2 83599 212 0.00 2019-08-14 22:33:28 2019-08-14 22:33:50 t 1 2 83601 308 0.00 2019-08-14 22:20:45 2019-08-14 22:40:51 t 1 2 83605 212 0.00 2019-08-14 22:48:05 2019-08-14 22:48:25 t 1 2 83609 304 0.00 2019-08-14 22:58:11 2019-08-14 22:58:17 t 1 2 83611 306 0.00 2019-08-14 23:03:06 2019-08-14 23:04:10 t 1 2 83613 304 0.00 2019-08-14 22:58:38 2019-08-14 23:08:43 t 1 2 83615 294 0.00 2019-08-14 22:12:00 2019-08-14 23:12:20 t 1 2 83617 212 0.00 2019-08-14 23:11:00 2019-08-14 23:16:19 t 1 2 83622 306 0.00 2019-08-14 23:20:35 2019-08-14 23:21:41 t 1 2 83632 363 0.00 2019-08-14 23:14:59 2019-08-14 23:34:56 t 1 2 83640 220 0.00 2019-08-14 23:48:49 2019-08-14 23:49:54 t 1 2 83644 212 0.00 2019-08-15 00:00:00 2019-08-15 00:01:02 t 1 2 83651 304 0.00 2019-08-15 00:05:30 2019-08-15 00:15:35 t 1 2 83655 346 0.00 2019-08-15 00:30:44 2019-08-15 00:31:09 t 1 2 83666 346 0.00 2019-08-15 00:26:07 2019-08-15 00:46:33 t 1 2 83676 220 0.00 2019-08-15 01:05:32 2019-08-15 01:06:36 t 1 2 83677 217 0.00 2019-08-15 01:07:00 2019-08-15 01:07:00 f 1 2 83679 220 0.00 2019-08-15 01:06:48 2019-08-15 01:07:54 t 1 2 83682 220 0.00 2019-08-15 01:12:41 2019-08-15 01:13:42 t 1 2 83688 346 0.00 2019-08-15 00:31:54 2019-08-15 01:31:40 t 1 2 83690 220 0.00 2019-08-15 01:34:44 2019-08-15 01:35:40 t 1 2 83694 324 0.00 2019-08-15 02:08:00 2019-08-15 02:08:50 t 1 2 83696 349 0.00 2019-08-15 02:21:13 2019-08-15 02:22:19 t 1 2 83698 343 0.00 2019-08-15 02:29:50 2019-08-15 02:43:56 t 1 2 83700 324 0.00 2019-08-15 02:08:53 2019-08-15 02:58:40 t 1 2 83705 346 0.00 2019-08-15 04:14:26 2019-08-15 04:24:32 t 1 2 83707 220 0.00 2019-08-15 06:40:55 2019-08-15 06:44:28 t 1 1 83708 247 0.00 2019-08-15 06:50:10 2019-08-15 06:51:09 t 1 2 83713 302 0.00 2019-08-15 03:13:10 2019-08-15 07:33:52 t 1 2 83718 306 0.00 2019-08-15 08:36:37 2019-08-15 08:37:40 t 1 2 83719 320 0.00 2019-08-15 08:07:36 2019-08-15 08:47:41 t 1 2 83721 304 0.00 2019-08-15 09:00:17 2019-08-15 09:00:17 f 1 2 83725 304 0.00 2019-08-15 09:00:47 2019-08-15 09:00:47 f 1 2 83731 304 0.00 2019-08-15 09:01:38 2019-08-15 09:01:38 f 1 2 83733 304 0.00 2019-08-15 09:02:16 2019-08-15 09:02:16 f 1 2 83735 304 0.00 2019-08-15 09:02:33 2019-08-15 09:02:33 f 1 2 83740 304 0.00 2019-08-15 08:45:40 2019-08-15 09:05:45 t 1 2 83741 304 0.00 2019-08-15 08:56:09 2019-08-15 09:06:14 t 1 2 83748 220 0.00 2019-08-15 09:22:35 2019-08-15 09:23:37 t 1 2 83756 320 0.00 2019-08-15 09:40:18 2019-08-15 09:50:23 t 1 2 83759 320 0.00 2019-08-15 09:57:27 2019-08-15 10:07:32 t 1 2 83764 306 0.00 2019-08-15 10:26:09 2019-08-15 10:27:11 t 1 2 83768 220 0.00 2019-08-15 10:37:28 2019-08-15 10:38:33 t 1 2 83770 220 0.00 2019-08-15 10:38:54 2019-08-15 10:40:00 t 1 2 83775 306 0.00 2019-08-15 10:56:24 2019-08-15 10:57:27 t 1 2 83776 212 0.00 2019-08-15 11:03:22 2019-08-15 11:03:41 t 1 2 83784 349 0.00 2019-08-15 11:20:40 2019-08-15 11:21:47 t 1 2 83785 306 0.00 2019-08-15 11:21:29 2019-08-15 11:22:30 t 1 2 83787 349 0.00 2019-08-15 11:23:30 2019-08-15 11:24:36 t 1 2 83790 349 0.00 2019-08-15 11:27:15 2019-08-15 11:28:18 t 1 2 83793 349 0.00 2019-08-15 11:31:17 2019-08-15 11:32:21 t 1 2 83795 306 0.00 2019-08-15 11:33:41 2019-08-15 11:34:46 t 1 2 83802 220 0.00 2019-08-15 11:38:16 2019-08-15 12:03:09 t 1 1 85199 346 0.00 2019-08-18 05:49:16 2019-08-18 05:50:17 t 1 2 83412 263 0.00 2019-08-14 13:10:32 2019-08-14 13:10:32 f 1 1 83417 324 0.00 2019-08-14 13:05:26 2019-08-14 13:22:25 t 1 2 83418 272 0.00 2019-08-14 13:22:34 2019-08-14 13:22:34 f 1 2 83421 320 0.00 2019-08-14 12:52:51 2019-08-14 13:27:56 t 1 2 83425 220 0.00 2019-08-14 13:30:12 2019-08-14 13:42:49 t 1 1 83430 220 0.00 2019-08-14 13:42:49 2019-08-14 13:45:15 t 1 1 83433 306 0.00 2019-08-14 13:58:17 2019-08-14 13:59:23 t 1 2 83442 292 0.00 2019-08-14 14:25:30 2019-08-14 14:26:31 t 1 2 83444 324 0.00 2019-08-14 14:19:04 2019-08-14 14:28:06 t 1 2 83446 220 0.00 2019-08-14 13:44:21 2019-08-14 14:29:26 t 1 2 83448 220 0.00 2019-08-14 14:31:18 2019-08-14 14:31:24 t 1 2 83449 220 0.00 2019-08-14 14:31:32 2019-08-14 14:32:39 t 1 2 83451 324 0.00 2019-08-14 14:31:12 2019-08-14 14:37:45 t 1 2 83457 292 0.00 2019-08-14 14:56:47 2019-08-14 14:57:50 t 1 2 83461 346 0.00 2019-08-14 14:06:59 2019-08-14 15:07:24 t 1 2 83466 372 0.00 2019-08-14 15:04:47 2019-08-14 15:29:52 t 1 2 83472 304 0.00 2019-08-14 15:46:28 2019-08-14 15:56:33 t 1 2 83475 324 0.00 2019-08-14 15:12:26 2019-08-14 16:02:31 t 1 2 83477 373 0.00 2019-08-14 16:07:25 2019-08-14 16:08:31 t 1 2 83485 320 0.00 2019-08-14 16:17:16 2019-08-14 16:20:17 t 1 2 83488 212 0.00 2019-08-14 16:16:37 2019-08-14 16:23:22 t 1 2 83495 320 0.00 2019-08-14 17:05:19 2019-08-14 17:15:25 t 1 2 83496 292 0.00 2019-08-14 17:28:47 2019-08-14 17:29:51 t 1 2 83501 320 0.00 2019-08-14 17:32:12 2019-08-14 17:42:17 t 1 2 83504 294 0.00 2019-08-14 16:51:02 2019-08-14 17:51:25 t 1 2 83510 373 0.00 2019-08-14 18:07:37 2019-08-14 18:08:44 t 1 2 83518 288 0.00 2019-08-14 18:40:39 2019-08-14 18:41:43 t 1 2 83520 288 0.00 2019-08-14 18:42:48 2019-08-14 18:43:51 t 1 2 83521 288 0.00 2019-08-14 18:44:09 2019-08-14 18:45:13 t 1 2 83526 373 0.00 2019-08-14 18:50:53 2019-08-14 18:52:01 t 1 2 83528 288 0.00 2019-08-14 18:53:48 2019-08-14 18:54:54 t 1 2 83532 288 0.00 2019-08-14 19:03:18 2019-08-14 19:04:21 t 1 2 83535 288 0.00 2019-08-14 19:24:06 2019-08-14 19:25:12 t 1 2 83537 320 0.00 2019-08-14 19:23:50 2019-08-14 19:27:09 t 1 2 83541 288 0.00 2019-08-14 19:35:48 2019-08-14 19:36:52 t 1 2 83551 324 0.00 2019-08-14 19:56:51 2019-08-14 19:57:56 t 1 2 83552 361 0.00 2019-08-14 16:35:06 2019-08-14 19:59:47 t 1 2 83555 375 0.00 2019-08-14 20:02:10 2019-08-14 20:12:15 t 1 2 83560 288 0.00 2019-08-14 20:29:02 2019-08-14 20:30:07 t 1 2 83562 220 0.00 2019-08-14 19:37:14 2019-08-14 20:33:21 t 1 2 83565 288 0.00 2019-08-14 20:41:27 2019-08-14 20:42:32 t 1 2 83569 346 0.00 2019-08-14 20:35:21 2019-08-14 20:50:46 t 1 2 83571 320 0.00 2019-08-14 20:17:01 2019-08-14 21:02:06 t 1 2 83580 212 0.00 2019-08-14 21:48:56 2019-08-14 21:50:04 t 1 2 83584 304 0.00 2019-08-14 21:46:09 2019-08-14 22:01:14 t 1 2 83588 220 0.00 2019-08-14 22:11:26 2019-08-14 22:12:01 t 1 1 83600 212 0.00 2019-08-14 22:36:15 2019-08-14 22:37:36 t 1 2 83602 212 0.00 2019-08-14 22:43:23 2019-08-14 22:44:10 t 1 2 83604 346 0.00 2019-08-14 22:20:48 2019-08-14 22:45:54 t 1 2 83606 372 0.00 2019-08-14 22:47:38 2019-08-14 22:49:35 t 1 2 83607 220 0.00 2019-08-14 22:15:02 2019-08-14 22:51:40 t 1 1 83614 372 0.00 2019-08-14 22:57:05 2019-08-14 23:12:10 t 1 2 83619 363 0.00 2019-08-14 22:58:11 2019-08-14 23:18:16 t 1 2 83621 304 0.00 2019-08-14 23:01:32 2019-08-14 23:21:37 t 1 2 83628 220 0.00 2019-08-14 23:23:31 2019-08-14 23:24:34 t 1 2 83629 220 0.00 2019-08-14 23:24:57 2019-08-14 23:25:59 t 1 2 83631 220 0.00 2019-08-14 23:30:08 2019-08-14 23:31:14 t 1 2 83636 220 0.00 2019-08-14 23:41:40 2019-08-14 23:42:43 t 1 2 83639 372 0.00 2019-08-14 23:47:28 2019-08-14 23:49:39 t 1 2 83646 220 0.00 2019-08-15 00:04:27 2019-08-15 00:04:39 t 1 2 83649 304 0.00 2019-08-15 00:02:07 2019-08-15 00:12:12 t 1 2 83653 212 0.00 2019-08-15 00:16:48 2019-08-15 00:17:30 t 1 2 83656 304 0.00 2019-08-15 00:12:16 2019-08-15 00:32:21 t 1 2 83657 212 0.00 2019-08-15 00:33:27 2019-08-15 00:33:54 t 1 2 83659 304 0.00 2019-08-15 00:38:10 2019-08-15 00:38:10 f 1 2 83661 304 0.00 2019-08-15 00:38:34 2019-08-15 00:38:34 f 1 2 83662 304 0.00 2019-08-15 00:38:50 2019-08-15 00:38:50 f 1 2 83665 304 0.00 2019-08-15 00:33:17 2019-08-15 00:43:22 t 1 2 83668 220 0.00 2019-08-15 00:57:36 2019-08-15 00:58:40 t 1 2 83670 220 0.00 2019-08-15 00:58:59 2019-08-15 01:00:02 t 1 2 83673 220 0.00 2019-08-15 01:04:04 2019-08-15 01:05:09 t 1 2 83675 372 0.00 2019-08-15 00:41:24 2019-08-15 01:06:30 t 1 2 83680 381 0.00 2019-08-15 00:13:40 2019-08-15 01:08:45 t 1 2 83681 355 0.00 2019-08-15 00:02:04 2019-08-15 01:12:09 t 1 2 83686 212 0.00 2019-08-15 01:22:08 2019-08-15 01:22:27 t 1 2 83706 288 0.00 2019-08-15 05:06:09 2019-08-15 05:07:14 t 1 2 83709 220 0.00 2019-08-15 06:21:33 2019-08-15 07:20:37 t 1 2 83714 294 0.00 2019-08-15 07:03:55 2019-08-15 07:33:52 t 1 2 83715 322 0.00 2019-08-15 07:49:11 2019-08-15 08:02:10 t 1 2 83717 363 0.00 2019-08-15 07:34:55 2019-08-15 08:15:00 t 1 2 83726 288 0.00 2019-08-15 08:59:46 2019-08-15 09:00:48 t 1 2 83728 304 0.00 2019-08-15 09:01:09 2019-08-15 09:01:09 f 1 2 83730 304 0.00 2019-08-15 09:01:29 2019-08-15 09:01:29 f 1 2 83737 304 0.00 2019-08-15 09:02:49 2019-08-15 09:02:49 f 1 2 83739 306 0.00 2019-08-15 09:03:19 2019-08-15 09:04:23 t 1 2 83742 306 0.00 2019-08-15 09:06:58 2019-08-15 09:08:00 t 1 2 83744 306 0.00 2019-08-15 09:08:47 2019-08-15 09:09:52 t 1 2 83747 288 0.00 2019-08-15 09:20:44 2019-08-15 09:21:46 t 1 2 83749 212 0.00 2019-08-15 09:24:39 2019-08-15 09:24:56 t 1 2 83752 288 0.00 2019-08-15 09:31:41 2019-08-15 09:32:44 t 1 2 83757 220 0.00 2019-08-15 09:50:28 2019-08-15 09:51:32 t 1 2 83758 212 0.00 2019-08-15 10:03:18 2019-08-15 10:03:34 t 1 2 83761 306 0.00 2019-08-15 10:08:54 2019-08-15 10:09:56 t 1 2 83766 286 0.00 2019-08-15 09:47:05 2019-08-15 10:32:10 t 1 2 83777 306 0.00 2019-08-15 11:02:41 2019-08-15 11:03:45 t 1 2 83779 288 0.00 2019-08-15 11:10:43 2019-08-15 11:11:50 t 1 2 83780 302 0.00 2019-08-15 10:14:09 2019-08-15 11:14:15 t 1 2 83781 349 0.00 2019-08-15 11:17:54 2019-08-15 11:19:00 t 1 2 83797 288 0.00 2019-08-15 11:37:40 2019-08-15 11:38:44 t 1 2 83799 288 0.00 2019-08-15 11:54:59 2019-08-15 11:56:05 t 1 2 83801 357 0.00 2019-08-15 09:05:46 2019-08-15 12:00:52 t 1 2 83805 346 0.00 2019-08-15 12:08:30 2019-08-15 12:09:26 t 1 2 83808 212 0.00 2019-08-15 12:19:39 2019-08-15 12:20:24 t 1 2 85200 361 0.00 2019-08-17 23:59:02 2019-08-18 05:59:23 t 1 2 85208 288 0.00 2019-08-18 08:01:18 2019-08-18 08:02:24 t 1 2 83821 373 0.00 2019-08-15 12:50:17 2019-08-15 12:51:20 t 1 2 83822 306 0.00 2019-08-15 12:52:50 2019-08-15 12:53:54 t 1 2 83685 320 0.00 2019-08-14 22:57:15 2019-08-15 01:22:20 t 1 2 83687 220 0.00 2019-08-15 01:23:13 2019-08-15 01:24:15 t 1 2 83689 220 0.00 2019-08-15 01:33:19 2019-08-15 01:34:22 t 1 2 83691 355 0.00 2019-08-15 01:33:43 2019-08-15 01:40:21 t 1 2 83692 324 0.00 2019-08-15 01:52:11 2019-08-15 01:58:01 t 1 2 83697 343 0.00 2019-08-15 01:44:16 2019-08-15 02:29:22 t 1 2 83699 361 0.00 2019-08-15 02:08:56 2019-08-15 02:45:26 t 1 2 83703 324 0.00 2019-08-15 03:31:47 2019-08-15 03:33:52 t 1 2 83710 373 0.00 2019-08-15 07:29:00 2019-08-15 07:30:04 t 1 2 83712 379 0.00 2019-08-15 07:03:06 2019-08-15 07:33:52 t 1 2 83722 304 0.00 2019-08-15 09:00:29 2019-08-15 09:00:29 f 1 2 83724 304 0.00 2019-08-15 09:00:40 2019-08-15 09:00:40 f 1 2 83732 304 0.00 2019-08-15 09:01:52 2019-08-15 09:01:52 f 1 2 83734 304 0.00 2019-08-15 09:02:23 2019-08-15 09:02:23 f 1 2 83746 251 0.00 2019-08-15 09:16:29 2019-08-15 09:16:29 f 1 2 83751 288 0.00 2019-08-15 09:28:10 2019-08-15 09:29:14 t 1 2 83754 320 0.00 2019-08-15 09:31:35 2019-08-15 09:41:40 t 1 2 83755 220 0.00 2019-08-15 09:47:38 2019-08-15 09:48:42 t 1 2 83760 304 0.00 2019-08-15 09:53:00 2019-08-15 10:08:26 t 1 2 83762 306 0.00 2019-08-15 10:10:30 2019-08-15 10:11:33 t 1 2 83763 320 0.00 2019-08-15 10:04:03 2019-08-15 10:14:08 t 1 2 83765 306 0.00 2019-08-15 10:27:52 2019-08-15 10:28:54 t 1 2 83767 220 0.00 2019-08-15 10:35:31 2019-08-15 10:36:33 t 1 2 83769 320 0.00 2019-08-15 10:29:12 2019-08-15 10:39:17 t 1 2 83771 372 0.00 2019-08-15 10:27:40 2019-08-15 10:42:39 t 1 2 83773 306 0.00 2019-08-15 10:44:22 2019-08-15 10:45:24 t 1 2 83774 288 0.00 2019-08-15 10:53:35 2019-08-15 10:54:40 t 1 2 83782 288 0.00 2019-08-15 11:18:12 2019-08-15 11:19:16 t 1 2 83786 349 0.00 2019-08-15 11:22:07 2019-08-15 11:23:14 t 1 2 83788 349 0.00 2019-08-15 11:24:45 2019-08-15 11:25:49 t 1 2 83791 349 0.00 2019-08-15 11:28:31 2019-08-15 11:29:38 t 1 2 83794 288 0.00 2019-08-15 11:33:30 2019-08-15 11:34:36 t 1 2 83798 288 0.00 2019-08-15 11:39:25 2019-08-15 11:40:31 t 1 2 83800 367 0.00 2019-08-15 11:51:05 2019-08-15 11:59:33 t 1 2 83803 367 0.00 2019-08-15 11:44:02 2019-08-15 12:07:11 t 1 2 83804 220 0.00 2019-08-15 12:07:27 2019-08-15 12:08:31 t 1 2 85201 346 0.00 2019-08-18 06:16:06 2019-08-18 06:21:22 t 1 2 83812 320 0.00 2019-08-15 12:17:35 2019-08-15 12:27:41 t 1 2 85204 294 0.00 2019-08-18 07:03:19 2019-08-18 07:33:51 t 1 2 83826 288 0.00 2019-08-15 13:05:21 2019-08-15 13:06:26 t 1 2 83829 212 0.00 2019-08-15 13:14:10 2019-08-15 13:14:32 t 1 2 83836 288 0.00 2019-08-15 13:25:05 2019-08-15 13:26:09 t 1 2 83838 327 0.00 2019-08-15 13:24:04 2019-08-15 13:29:27 t 1 2 83846 288 0.00 2019-08-15 13:46:10 2019-08-15 13:47:15 t 1 2 83850 220 0.00 2019-08-15 13:51:21 2019-08-15 13:51:56 t 1 1 83853 355 0.00 2019-08-15 10:13:51 2019-08-15 13:53:57 t 1 2 83854 288 0.00 2019-08-15 13:54:38 2019-08-15 13:55:46 t 1 2 83856 220 0.00 2019-08-15 13:53:27 2019-08-15 13:56:47 t 1 1 83858 220 0.00 2019-08-15 13:57:21 2019-08-15 13:57:56 t 1 1 83864 288 0.00 2019-08-15 13:59:14 2019-08-15 14:00:20 t 1 2 83867 220 0.00 2019-08-15 14:00:54 2019-08-15 14:01:29 t 1 1 83870 343 0.00 2019-08-15 13:02:30 2019-08-15 14:02:35 t 1 2 83872 220 0.00 2019-08-15 14:02:39 2019-08-15 14:03:17 t 1 1 83884 324 0.00 2019-08-15 14:11:58 2019-08-15 14:12:37 t 1 2 83887 220 0.00 2019-08-15 14:13:51 2019-08-15 14:14:55 t 1 2 83891 220 0.00 2019-08-15 14:16:19 2019-08-15 14:17:18 t 1 1 83902 288 0.00 2019-08-15 14:23:52 2019-08-15 14:24:58 t 1 2 83908 220 0.00 2019-08-15 14:26:52 2019-08-15 14:30:10 t 1 1 83910 288 0.00 2019-08-15 14:30:21 2019-08-15 14:31:28 t 1 2 83913 220 0.00 2019-08-15 14:30:47 2019-08-15 14:32:41 t 1 1 83916 220 0.00 2019-08-15 14:33:19 2019-08-15 14:33:49 t 1 1 83919 220 0.00 2019-08-15 14:35:06 2019-08-15 14:35:39 t 1 1 83921 220 0.00 2019-08-15 14:35:39 2019-08-15 14:37:10 t 1 1 83931 304 0.00 2019-08-15 14:43:55 2019-08-15 14:54:00 t 1 2 83932 346 0.00 2019-08-15 14:33:38 2019-08-15 15:00:10 t 1 2 83935 346 0.00 2019-08-15 15:01:28 2019-08-15 15:02:32 t 1 2 83936 346 0.00 2019-08-15 14:21:04 2019-08-15 15:06:09 t 1 2 83938 288 0.00 2019-08-15 15:07:44 2019-08-15 15:08:47 t 1 2 83940 346 0.00 2019-08-15 15:13:28 2019-08-15 15:14:29 t 1 2 83944 375 0.00 2019-08-15 14:20:02 2019-08-15 15:18:53 t 1 2 83947 304 0.00 2019-08-15 15:18:04 2019-08-15 15:28:09 t 1 2 83954 212 0.00 2019-08-15 15:56:57 2019-08-15 15:58:11 t 1 2 83955 247 0.00 2019-08-15 15:59:34 2019-08-15 16:01:00 t 1 2 83956 346 0.00 2019-08-15 16:03:17 2019-08-15 16:04:22 t 1 2 83959 346 0.00 2019-08-15 16:11:53 2019-08-15 16:12:57 t 1 2 83961 372 0.00 2019-08-15 16:20:28 2019-08-15 16:23:11 t 1 2 83964 372 0.00 2019-08-15 16:30:07 2019-08-15 16:32:13 t 1 2 83968 320 0.00 2019-08-15 16:42:14 2019-08-15 16:52:19 t 1 2 83970 320 0.00 2019-08-15 16:46:56 2019-08-15 16:57:02 t 1 2 83971 363 0.00 2019-08-15 14:44:19 2019-08-15 16:59:25 t 1 2 83972 372 0.00 2019-08-15 16:47:06 2019-08-15 17:02:55 t 1 2 83981 288 0.00 2019-08-15 18:05:07 2019-08-15 18:06:11 t 1 2 83984 288 0.00 2019-08-15 18:17:27 2019-08-15 18:18:34 t 1 2 83988 220 0.00 2019-08-15 18:16:19 2019-08-15 18:26:24 t 1 2 83989 288 0.00 2019-08-15 18:28:11 2019-08-15 18:29:16 t 1 2 83990 220 0.00 2019-08-15 18:35:25 2019-08-15 18:36:29 t 1 2 83992 320 0.00 2019-08-15 18:31:42 2019-08-15 18:41:47 t 1 2 83998 320 0.00 2019-08-15 19:04:41 2019-08-15 19:09:25 t 1 2 84001 292 0.00 2019-08-15 19:17:55 2019-08-15 19:19:00 t 1 2 84003 292 0.00 2019-08-15 19:28:59 2019-08-15 19:30:03 t 1 2 84007 355 0.00 2019-08-15 18:16:23 2019-08-15 19:41:29 t 1 2 84015 212 0.00 2019-08-15 20:11:22 2019-08-15 20:11:45 t 1 2 84023 247 0.00 2019-08-15 20:40:34 2019-08-15 20:41:15 t 1 2 84030 220 0.00 2019-08-15 20:56:06 2019-08-15 21:04:03 t 1 1 84031 220 0.00 2019-08-15 21:04:55 2019-08-15 21:05:06 t 1 1 85207 212 0.00 2019-08-18 07:34:55 2019-08-18 07:35:59 t 1 2 84035 346 0.00 2019-08-15 21:08:24 2019-08-15 21:11:45 t 1 2 84040 379 0.00 2019-08-15 20:51:48 2019-08-15 21:21:53 t 1 2 84043 320 0.00 2019-08-15 21:17:32 2019-08-15 21:27:37 t 1 2 84044 306 0.00 2019-08-15 21:33:21 2019-08-15 21:34:24 t 1 2 84052 363 0.00 2019-08-15 22:05:11 2019-08-15 22:05:19 t 1 2 84058 373 0.00 2019-08-15 22:12:53 2019-08-15 22:13:59 t 1 2 84059 220 0.00 2019-08-15 22:17:40 2019-08-15 22:17:50 t 1 1 84061 304 0.00 2019-08-15 22:26:26 2019-08-15 22:26:26 t 1 2 84063 220 0.00 2019-08-15 22:28:11 2019-08-15 22:28:23 t 1 1 84066 220 0.00 2019-08-15 22:35:03 2019-08-15 22:36:07 t 1 2 84068 220 0.00 2019-08-15 22:28:45 2019-08-15 22:38:41 t 1 1 83796 294 0.00 2019-08-15 11:15:58 2019-08-15 11:37:15 t 1 2 83806 381 0.00 2019-08-15 11:28:58 2019-08-15 12:14:03 t 1 2 83807 306 0.00 2019-08-15 12:18:07 2019-08-15 12:19:08 t 1 2 83813 296 0.00 2019-08-15 12:19:24 2019-08-15 12:27:44 t 1 2 83815 331 0.00 2019-08-15 12:29:16 2019-08-15 12:30:21 t 1 2 85202 247 0.00 2019-08-18 06:38:16 2019-08-18 06:40:29 t 1 2 85205 302 0.00 2019-08-18 02:55:48 2019-08-18 07:33:51 t 1 2 83827 375 0.00 2019-08-15 12:49:20 2019-08-15 13:09:26 t 1 2 83828 320 0.00 2019-08-15 13:02:08 2019-08-15 13:12:14 t 1 2 83831 288 0.00 2019-08-15 13:18:06 2019-08-15 13:19:11 t 1 2 83834 288 0.00 2019-08-15 13:22:05 2019-08-15 13:23:08 t 1 2 83837 288 0.00 2019-08-15 13:26:40 2019-08-15 13:27:46 t 1 2 83839 247 0.00 2019-08-15 13:26:35 2019-08-15 13:29:35 t 1 2 83840 272 0.00 2019-08-15 13:34:14 2019-08-15 13:34:14 f 1 2 83844 288 0.00 2019-08-15 13:42:42 2019-08-15 13:43:47 t 1 2 83849 220 0.00 2019-08-15 13:50:48 2019-08-15 13:51:21 t 1 1 83852 220 0.00 2019-08-15 13:52:52 2019-08-15 13:53:28 t 1 1 83855 306 0.00 2019-08-15 13:55:03 2019-08-15 13:56:07 t 1 2 83857 220 0.00 2019-08-15 13:56:46 2019-08-15 13:57:22 t 1 1 83859 288 0.00 2019-08-15 13:57:13 2019-08-15 13:58:20 t 1 2 83862 220 0.00 2019-08-15 13:59:06 2019-08-15 13:59:42 t 1 1 83874 220 0.00 2019-08-15 14:03:17 2019-08-15 14:03:52 t 1 1 83877 220 0.00 2019-08-15 14:05:03 2019-08-15 14:05:42 t 1 1 83883 296 0.00 2019-08-15 14:05:57 2019-08-15 14:12:21 t 1 2 83889 220 0.00 2019-08-15 14:15:44 2019-08-15 14:16:19 t 1 1 83893 220 0.00 2019-08-15 14:17:17 2019-08-15 14:19:02 t 1 1 83897 220 0.00 2019-08-15 14:20:49 2019-08-15 14:22:01 t 1 1 83899 288 0.00 2019-08-15 14:21:56 2019-08-15 14:23:04 t 1 2 83904 220 0.00 2019-08-15 14:26:18 2019-08-15 14:26:52 t 1 1 83911 220 0.00 2019-08-15 14:30:25 2019-08-15 14:31:31 t 1 2 83914 288 0.00 2019-08-15 14:32:08 2019-08-15 14:33:15 t 1 2 83920 288 0.00 2019-08-15 14:35:12 2019-08-15 14:36:19 t 1 2 83923 220 0.00 2019-08-15 14:37:41 2019-08-15 14:38:28 t 1 1 83924 220 0.00 2019-08-15 14:38:27 2019-08-15 14:39:52 t 1 1 83930 304 0.00 2019-08-15 14:34:09 2019-08-15 14:49:15 t 1 2 83939 220 0.00 2019-08-15 14:42:05 2019-08-15 15:13:11 t 1 1 83942 220 0.00 2019-08-15 15:13:11 2019-08-15 15:16:56 t 1 1 83949 220 0.00 2019-08-15 15:34:46 2019-08-15 15:35:48 t 1 2 83952 212 0.00 2019-08-15 15:41:45 2019-08-15 15:42:38 t 1 2 83960 304 0.00 2019-08-15 16:11:31 2019-08-15 16:21:36 t 1 2 83962 306 0.00 2019-08-15 16:27:19 2019-08-15 16:28:25 t 1 2 83965 212 0.00 2019-08-15 16:32:33 2019-08-15 16:32:53 t 1 2 83969 296 0.00 2019-08-15 16:50:02 2019-08-15 16:55:28 t 1 2 83978 320 0.00 2019-08-15 17:22:44 2019-08-15 17:32:49 t 1 2 83980 385 0.00 2019-08-15 16:29:01 2019-08-15 17:49:24 t 1 2 83994 218 0.00 2019-08-15 18:58:02 2019-08-15 18:58:02 f 1 2 83999 320 0.00 2019-08-15 19:10:32 2019-08-15 19:10:34 t 1 2 84011 372 0.00 2019-08-15 20:00:11 2019-08-15 20:02:27 t 1 2 84016 346 0.00 2019-08-15 20:12:20 2019-08-15 20:17:14 t 1 2 84018 365 0.00 2019-08-15 20:16:30 2019-08-15 20:31:35 t 1 2 84022 372 0.00 2019-08-15 20:35:45 2019-08-15 20:36:48 t 1 2 84025 304 0.00 2019-08-15 20:38:02 2019-08-15 20:48:08 t 1 2 84027 292 0.00 2019-08-15 20:53:31 2019-08-15 20:54:31 t 1 2 84037 304 0.00 2019-08-15 21:06:24 2019-08-15 21:16:30 t 1 2 84042 220 0.00 2019-08-15 21:25:12 2019-08-15 21:25:24 t 1 1 84048 220 0.00 2019-08-15 21:46:12 2019-08-15 21:46:23 t 1 1 84049 212 0.00 2019-08-15 21:48:34 2019-08-15 21:49:11 t 1 2 84053 220 0.00 2019-08-15 22:07:11 2019-08-15 22:07:23 t 1 1 84054 212 0.00 2019-08-15 22:10:38 2019-08-15 22:10:59 t 1 2 84056 373 0.00 2019-08-15 22:10:46 2019-08-15 22:11:51 t 1 2 84069 220 0.00 2019-08-15 22:38:41 2019-08-15 22:38:53 t 1 1 84076 212 0.00 2019-08-15 22:49:08 2019-08-15 22:49:29 t 1 2 84079 292 0.00 2019-08-15 22:52:46 2019-08-15 22:53:50 t 1 2 84083 292 0.00 2019-08-15 22:58:31 2019-08-15 22:59:35 t 1 2 84098 288 0.00 2019-08-15 23:28:27 2019-08-15 23:29:31 t 1 2 84100 306 0.00 2019-08-15 23:33:09 2019-08-15 23:34:15 t 1 2 84102 306 0.00 2019-08-15 23:35:01 2019-08-15 23:36:04 t 1 2 84108 304 0.00 2019-08-15 23:38:53 2019-08-15 23:53:59 t 1 2 84113 355 0.00 2019-08-15 23:09:00 2019-08-16 00:14:05 t 1 2 84121 220 0.00 2019-08-16 00:22:46 2019-08-16 00:23:52 t 1 2 84129 220 0.00 2019-08-16 00:40:33 2019-08-16 00:40:40 t 1 1 84130 220 0.00 2019-08-16 00:40:48 2019-08-16 00:40:56 t 1 1 84134 220 0.00 2019-08-16 01:01:42 2019-08-16 01:01:52 t 1 1 84135 220 0.00 2019-08-16 01:02:01 2019-08-16 01:02:11 t 1 1 84136 220 0.00 2019-08-16 01:02:21 2019-08-16 01:02:31 t 1 1 84148 320 0.00 2019-08-16 01:27:46 2019-08-16 01:37:51 t 1 2 84151 220 0.00 2019-08-16 01:45:58 2019-08-16 01:46:05 t 1 1 84152 288 0.00 2019-08-16 01:47:55 2019-08-16 01:48:57 t 1 2 84155 220 0.00 2019-08-16 01:56:43 2019-08-16 01:56:50 t 1 1 84161 220 0.00 2019-08-16 02:12:13 2019-08-16 02:12:24 t 1 1 84163 220 0.00 2019-08-16 02:22:42 2019-08-16 02:22:55 t 1 1 84164 294 0.00 2019-08-16 01:24:18 2019-08-16 02:24:42 t 1 2 84168 220 0.00 2019-08-16 02:54:05 2019-08-16 02:54:12 t 1 1 84169 220 0.00 2019-08-16 02:54:20 2019-08-16 02:54:21 t 1 1 84170 220 0.00 2019-08-16 02:54:28 2019-08-16 02:54:30 t 1 1 84173 220 0.00 2019-08-16 03:05:13 2019-08-16 03:05:22 t 1 1 84178 372 0.00 2019-08-16 03:25:29 2019-08-16 03:26:13 t 1 2 84179 220 0.00 2019-08-16 03:26:38 2019-08-16 03:26:49 t 1 1 84186 372 0.00 2019-08-16 03:37:03 2019-08-16 03:47:08 t 1 2 84188 372 0.00 2019-08-16 03:40:22 2019-08-16 03:50:27 t 1 2 84192 372 0.00 2019-08-16 03:54:25 2019-08-16 03:54:25 f 1 2 84197 372 0.00 2019-08-16 03:56:02 2019-08-16 03:56:02 f 1 2 84200 372 0.00 2019-08-16 04:00:59 2019-08-16 04:00:59 f 1 2 84201 372 0.00 2019-08-16 04:01:06 2019-08-16 04:01:06 f 1 2 84203 372 0.00 2019-08-16 04:01:33 2019-08-16 04:01:33 f 1 2 84206 220 0.00 2019-08-16 04:01:47 2019-08-16 04:01:55 t 1 1 84207 220 0.00 2019-08-16 04:02:02 2019-08-16 04:02:03 t 1 1 84209 372 0.00 2019-08-16 04:04:56 2019-08-16 04:04:56 f 1 2 84212 372 0.00 2019-08-16 04:00:22 2019-08-16 04:10:28 t 1 2 84213 220 0.00 2019-08-16 04:12:25 2019-08-16 04:12:37 t 1 1 84215 220 0.00 2019-08-16 04:22:53 2019-08-16 04:23:01 t 1 1 84216 220 0.00 2019-08-16 04:23:14 2019-08-16 04:23:22 t 1 1 84222 220 0.00 2019-08-16 04:51:58 2019-08-16 04:52:07 t 1 1 84223 220 0.00 2019-08-16 04:52:14 2019-08-16 04:52:22 t 1 1 84229 220 0.00 2019-08-16 05:24:35 2019-08-16 05:24:44 t 1 1 84230 220 0.00 2019-08-16 05:24:54 2019-08-16 05:25:03 t 1 1 84231 220 0.00 2019-08-16 05:25:13 2019-08-16 05:25:13 t 1 1 83811 320 0.00 2019-08-15 12:12:06 2019-08-15 12:27:12 t 1 2 83820 304 0.00 2019-08-15 12:40:48 2019-08-15 12:50:54 t 1 2 83823 320 0.00 2019-08-15 12:41:11 2019-08-15 12:56:16 t 1 2 83824 306 0.00 2019-08-15 12:58:04 2019-08-15 12:59:09 t 1 2 83825 288 0.00 2019-08-15 13:02:47 2019-08-15 13:03:55 t 1 2 83830 212 0.00 2019-08-15 13:17:18 2019-08-15 13:17:32 t 1 2 83832 324 0.00 2019-08-15 13:20:27 2019-08-15 13:21:15 t 1 2 83835 288 0.00 2019-08-15 13:23:30 2019-08-15 13:24:37 t 1 2 83842 212 0.00 2019-08-15 13:37:20 2019-08-15 13:37:26 t 1 2 83845 288 0.00 2019-08-15 13:44:15 2019-08-15 13:45:22 t 1 2 83866 304 0.00 2019-08-15 14:01:21 2019-08-15 14:01:24 t 1 2 83868 220 0.00 2019-08-15 14:01:29 2019-08-15 14:02:06 t 1 1 83871 220 0.00 2019-08-15 14:02:05 2019-08-15 14:02:39 t 1 1 83876 220 0.00 2019-08-15 14:04:29 2019-08-15 14:05:04 t 1 1 83878 220 0.00 2019-08-15 14:05:41 2019-08-15 14:06:16 t 1 1 83879 220 0.00 2019-08-15 14:06:16 2019-08-15 14:08:04 t 1 1 83880 220 0.00 2019-08-15 14:08:04 2019-08-15 14:08:39 t 1 1 83885 220 0.00 2019-08-15 14:11:39 2019-08-15 14:12:49 t 1 1 83894 220 0.00 2019-08-15 14:19:02 2019-08-15 14:20:14 t 1 1 83896 220 0.00 2019-08-15 14:20:14 2019-08-15 14:20:50 t 1 1 83903 220 0.00 2019-08-15 14:23:48 2019-08-15 14:26:19 t 1 1 83905 346 0.00 2019-08-15 14:17:03 2019-08-15 14:27:09 t 1 2 83907 288 0.00 2019-08-15 14:28:13 2019-08-15 14:29:16 t 1 2 83912 288 0.00 2019-08-15 14:32:02 2019-08-15 14:32:05 t 1 2 83918 220 0.00 2019-08-15 14:34:22 2019-08-15 14:35:07 t 1 1 83925 304 0.00 2019-08-15 14:29:49 2019-08-15 14:39:54 t 1 2 83928 288 0.00 2019-08-15 14:42:48 2019-08-15 14:43:52 t 1 2 83937 320 0.00 2019-08-15 13:42:09 2019-08-15 15:07:14 t 1 2 83943 361 0.00 2019-08-15 15:07:36 2019-08-15 15:17:41 t 1 2 83945 324 0.00 2019-08-15 15:20:19 2019-08-15 15:20:44 t 1 2 83953 220 0.00 2019-08-15 15:36:52 2019-08-15 15:42:58 t 1 2 83957 346 0.00 2019-08-15 16:10:12 2019-08-15 16:11:15 t 1 2 83963 385 0.00 2019-08-15 15:04:47 2019-08-15 16:29:52 t 1 2 83966 355 0.00 2019-08-15 15:30:49 2019-08-15 16:35:54 t 1 2 83967 324 0.00 2019-08-15 16:15:23 2019-08-15 16:48:37 t 1 2 83974 320 0.00 2019-08-15 17:02:40 2019-08-15 17:12:45 t 1 2 83975 372 0.00 2019-08-15 17:18:59 2019-08-15 17:20:29 t 1 2 83976 320 0.00 2019-08-15 17:14:53 2019-08-15 17:24:58 t 1 2 83979 372 0.00 2019-08-15 17:45:02 2019-08-15 17:46:49 t 1 2 83982 320 0.00 2019-08-15 17:47:12 2019-08-15 18:07:18 t 1 2 83986 288 0.00 2019-08-15 18:22:06 2019-08-15 18:23:09 t 1 2 83987 320 0.00 2019-08-15 18:15:04 2019-08-15 18:25:09 t 1 2 83997 372 0.00 2019-08-15 19:02:33 2019-08-15 19:03:49 t 1 2 84000 247 0.00 2019-08-15 19:11:12 2019-08-15 19:11:58 t 1 2 84002 304 0.00 2019-08-15 19:16:20 2019-08-15 19:26:25 t 1 2 84004 320 0.00 2019-08-15 19:10:42 2019-08-15 19:30:47 t 1 2 84009 372 0.00 2019-08-15 19:44:24 2019-08-15 19:53:06 t 1 2 84010 288 0.00 2019-08-15 19:58:06 2019-08-15 19:59:11 t 1 2 84013 346 0.00 2019-08-15 19:29:35 2019-08-15 20:11:15 t 1 2 84017 243 0.00 2019-08-15 20:22:44 2019-08-15 20:22:44 f 1 2 84020 372 0.00 2019-08-15 20:34:03 2019-08-15 20:34:38 t 1 2 84026 220 0.00 2019-08-15 20:39:05 2019-08-15 20:52:21 t 1 1 84029 292 0.00 2019-08-15 20:58:21 2019-08-15 20:59:27 t 1 2 84034 306 0.00 2019-08-15 21:09:32 2019-08-15 21:10:38 t 1 2 84041 212 0.00 2019-08-15 21:22:50 2019-08-15 21:23:08 t 1 2 84045 220 0.00 2019-08-15 21:35:42 2019-08-15 21:35:54 t 1 1 84046 375 0.00 2019-08-15 21:01:44 2019-08-15 21:41:49 t 1 2 84050 324 0.00 2019-08-15 21:42:16 2019-08-15 21:49:24 t 1 2 84051 220 0.00 2019-08-15 21:56:41 2019-08-15 21:56:53 t 1 1 84060 288 0.00 2019-08-15 22:22:17 2019-08-15 22:23:22 t 1 2 84065 212 0.00 2019-08-15 22:32:07 2019-08-15 22:35:15 t 1 2 84067 304 0.00 2019-08-15 22:26:40 2019-08-15 22:36:45 t 1 2 84070 220 0.00 2019-08-15 22:37:54 2019-08-15 22:39:00 t 1 2 84073 220 0.00 2019-08-15 22:43:13 2019-08-15 22:44:18 t 1 2 84078 355 0.00 2019-08-15 21:33:07 2019-08-15 22:53:12 t 1 2 84084 220 0.00 2019-08-15 22:58:05 2019-08-15 23:00:52 t 1 1 84088 373 0.00 2019-08-15 23:13:24 2019-08-15 23:14:32 t 1 2 84089 220 0.00 2019-08-15 23:13:56 2019-08-15 23:19:24 t 1 1 84093 212 0.00 2019-08-15 23:26:26 2019-08-15 23:26:56 t 1 2 84096 361 0.00 2019-08-15 18:00:03 2019-08-15 23:27:45 t 1 2 84099 306 0.00 2019-08-15 23:30:02 2019-08-15 23:31:08 t 1 2 84103 212 0.00 2019-08-15 23:40:37 2019-08-15 23:40:55 t 1 2 84105 220 0.00 2019-08-15 23:30:19 2019-08-15 23:43:17 t 1 1 84106 220 0.00 2019-08-15 23:46:17 2019-08-15 23:46:18 t 1 1 84110 220 0.00 2019-08-16 00:04:13 2019-08-16 00:04:23 t 1 1 84114 220 0.00 2019-08-16 00:14:44 2019-08-16 00:14:57 t 1 1 84115 220 0.00 2019-08-16 00:19:05 2019-08-16 00:19:13 t 1 1 84116 220 0.00 2019-08-16 00:19:20 2019-08-16 00:19:28 t 1 1 84117 220 0.00 2019-08-16 00:19:36 2019-08-16 00:19:37 t 1 1 84118 212 0.00 2019-08-16 00:19:55 2019-08-16 00:20:20 t 1 2 84120 247 0.00 2019-08-16 00:19:09 2019-08-16 00:21:53 t 1 2 84122 212 0.00 2019-08-16 00:25:08 2019-08-16 00:25:46 t 1 2 84127 212 0.00 2019-08-16 00:33:03 2019-08-16 00:33:23 t 1 2 84128 294 0.00 2019-08-15 23:49:20 2019-08-16 00:35:21 t 1 2 84131 212 0.00 2019-08-16 00:41:14 2019-08-16 00:43:35 t 1 2 84133 220 0.00 2019-08-16 00:51:21 2019-08-16 00:53:21 t 1 1 84137 220 0.00 2019-08-16 01:02:40 2019-08-16 01:02:42 t 1 1 84138 220 0.00 2019-08-16 01:13:15 2019-08-16 01:13:25 t 1 1 84142 343 0.00 2019-08-16 01:21:33 2019-08-16 01:22:41 t 1 2 84145 320 0.00 2019-08-15 21:22:28 2019-08-16 01:32:34 t 1 2 84146 220 0.00 2019-08-16 01:35:28 2019-08-16 01:35:37 t 1 1 84156 288 0.00 2019-08-16 01:57:45 2019-08-16 01:57:47 t 1 2 84158 361 0.00 2019-08-15 23:55:07 2019-08-16 02:00:29 t 1 2 84159 363 0.00 2019-08-15 23:00:45 2019-08-16 02:05:51 t 1 2 84162 346 0.00 2019-08-16 01:34:17 2019-08-16 02:14:51 t 1 2 84171 220 0.00 2019-08-16 02:54:37 2019-08-16 02:54:38 t 1 1 84174 355 0.00 2019-08-16 00:42:05 2019-08-16 03:12:10 t 1 2 84189 220 0.00 2019-08-16 03:50:38 2019-08-16 03:50:46 t 1 1 84190 220 0.00 2019-08-16 03:50:53 2019-08-16 03:50:55 t 1 1 84191 220 0.00 2019-08-16 03:51:02 2019-08-16 03:51:10 t 1 1 84194 372 0.00 2019-08-16 03:54:39 2019-08-16 03:54:39 f 1 2 84202 372 0.00 2019-08-16 04:01:26 2019-08-16 04:01:26 f 1 2 84205 372 0.00 2019-08-16 04:01:49 2019-08-16 04:01:49 f 1 2 84211 343 0.00 2019-08-16 04:10:15 2019-08-16 04:10:20 t 1 2 84218 220 0.00 2019-08-16 04:30:45 2019-08-16 04:30:56 t 1 1 84220 220 0.00 2019-08-16 04:41:29 2019-08-16 04:41:37 t 1 1 84225 220 0.00 2019-08-16 04:52:46 2019-08-16 04:53:48 t 1 1 83833 288 0.00 2019-08-15 13:20:14 2019-08-15 13:21:16 t 1 2 83841 272 0.00 2019-08-15 13:34:19 2019-08-15 13:34:19 f 1 2 83843 212 0.00 2019-08-15 13:37:49 2019-08-15 13:38:18 t 1 2 83847 288 0.00 2019-08-15 13:47:44 2019-08-15 13:48:48 t 1 2 83848 220 0.00 2019-08-15 13:38:21 2019-08-15 13:50:49 t 1 1 83851 220 0.00 2019-08-15 13:51:56 2019-08-15 13:52:52 t 1 1 83860 220 0.00 2019-08-15 13:57:56 2019-08-15 13:58:29 t 1 1 83861 220 0.00 2019-08-15 13:58:29 2019-08-15 13:59:08 t 1 1 83863 220 0.00 2019-08-15 13:59:42 2019-08-15 14:00:18 t 1 1 83865 220 0.00 2019-08-15 14:00:18 2019-08-15 14:00:54 t 1 1 83869 288 0.00 2019-08-15 14:01:17 2019-08-15 14:02:23 t 1 2 83873 212 0.00 2019-08-15 14:02:36 2019-08-15 14:03:44 t 1 2 83875 220 0.00 2019-08-15 14:03:51 2019-08-15 14:04:30 t 1 1 83881 220 0.00 2019-08-15 14:08:38 2019-08-15 14:11:39 t 1 1 83882 304 0.00 2019-08-15 14:01:34 2019-08-15 14:11:39 t 1 2 83886 220 0.00 2019-08-15 14:12:29 2019-08-15 14:13:29 t 1 2 83888 220 0.00 2019-08-15 14:12:48 2019-08-15 14:15:45 t 1 1 83890 346 0.00 2019-08-15 13:16:01 2019-08-15 14:16:56 t 1 2 83892 288 0.00 2019-08-15 14:17:44 2019-08-15 14:18:46 t 1 2 83895 288 0.00 2019-08-15 14:19:15 2019-08-15 14:20:19 t 1 2 83898 220 0.00 2019-08-15 14:22:01 2019-08-15 14:22:35 t 1 1 83900 220 0.00 2019-08-15 14:22:35 2019-08-15 14:23:12 t 1 1 83901 220 0.00 2019-08-15 14:23:12 2019-08-15 14:23:48 t 1 1 83906 288 0.00 2019-08-15 14:26:04 2019-08-15 14:27:09 t 1 2 83909 220 0.00 2019-08-15 14:30:10 2019-08-15 14:30:47 t 1 1 83915 220 0.00 2019-08-15 14:32:41 2019-08-15 14:33:19 t 1 1 83917 220 0.00 2019-08-15 14:33:49 2019-08-15 14:34:22 t 1 1 83922 220 0.00 2019-08-15 14:37:10 2019-08-15 14:37:42 t 1 1 83926 288 0.00 2019-08-15 14:39:00 2019-08-15 14:40:05 t 1 2 83927 220 0.00 2019-08-15 14:39:51 2019-08-15 14:42:05 t 1 1 83929 288 0.00 2019-08-15 14:44:29 2019-08-15 14:45:35 t 1 2 83933 361 0.00 2019-08-15 10:41:00 2019-08-15 15:01:00 t 1 2 83934 324 0.00 2019-08-15 14:11:39 2019-08-15 15:02:00 t 1 2 83941 346 0.00 2019-08-15 15:05:37 2019-08-15 15:15:42 t 1 2 83946 220 0.00 2019-08-15 15:16:56 2019-08-15 15:21:22 t 1 1 83948 355 0.00 2019-08-15 13:55:13 2019-08-15 15:30:18 t 1 2 83950 324 0.00 2019-08-15 15:29:01 2019-08-15 15:38:01 t 1 2 83951 324 0.00 2019-08-15 15:38:03 2019-08-15 15:38:08 t 1 2 83958 304 0.00 2019-08-15 16:11:11 2019-08-15 16:11:17 t 1 2 83973 294 0.00 2019-08-15 16:10:32 2019-08-15 17:11:11 t 1 2 83977 324 0.00 2019-08-15 16:50:25 2019-08-15 17:25:16 t 1 2 83983 288 0.00 2019-08-15 18:07:18 2019-08-15 18:08:23 t 1 2 83985 288 0.00 2019-08-15 18:19:18 2019-08-15 18:20:24 t 1 2 83991 220 0.00 2019-08-15 18:31:22 2019-08-15 18:37:43 t 1 1 83993 306 0.00 2019-08-15 18:43:11 2019-08-15 18:44:18 t 1 2 83995 212 0.00 2019-08-15 18:58:56 2019-08-15 18:59:28 t 1 2 83996 220 0.00 2019-08-15 18:38:59 2019-08-15 19:02:55 t 1 2 84005 320 0.00 2019-08-15 19:24:22 2019-08-15 19:34:27 t 1 2 84006 292 0.00 2019-08-15 19:39:58 2019-08-15 19:41:03 t 1 2 84008 324 0.00 2019-08-15 19:18:02 2019-08-15 19:48:29 t 1 2 84012 346 0.00 2019-08-15 19:17:39 2019-08-15 20:02:44 t 1 2 84014 357 0.00 2019-08-15 16:26:40 2019-08-15 20:11:45 t 1 2 84019 372 0.00 2019-08-15 20:32:18 2019-08-15 20:33:24 t 1 2 84021 294 0.00 2019-08-15 19:43:55 2019-08-15 20:35:04 t 1 2 84024 357 0.00 2019-08-15 20:47:04 2019-08-15 20:47:12 t 1 2 84028 220 0.00 2019-08-15 20:55:36 2019-08-15 20:55:53 t 1 1 85203 324 0.00 2019-08-18 07:11:54 2019-08-18 07:12:56 t 1 2 84036 220 0.00 2019-08-15 21:14:42 2019-08-15 21:14:55 t 1 1 84038 320 0.00 2019-08-15 21:08:33 2019-08-15 21:18:38 t 1 2 84039 346 0.00 2019-08-15 21:12:13 2019-08-15 21:21:38 t 1 2 84047 324 0.00 2019-08-15 21:04:53 2019-08-15 21:44:18 t 1 2 84055 218 0.00 2019-08-15 22:11:30 2019-08-15 22:11:30 f 1 2 84057 220 0.00 2019-08-15 22:12:06 2019-08-15 22:13:46 t 1 1 84062 220 0.00 2019-08-15 22:26:20 2019-08-15 22:28:12 t 1 1 84064 324 0.00 2019-08-15 22:23:26 2019-08-15 22:30:13 t 1 2 84071 220 0.00 2019-08-15 22:39:15 2019-08-15 22:42:42 t 1 1 84074 220 0.00 2019-08-15 22:44:34 2019-08-15 22:45:37 t 1 2 84080 212 0.00 2019-08-15 22:55:12 2019-08-15 22:56:02 t 1 2 84085 220 0.00 2019-08-15 23:00:51 2019-08-15 23:01:05 t 1 1 84086 363 0.00 2019-08-15 22:47:22 2019-08-15 23:07:27 t 1 2 84087 306 0.00 2019-08-15 23:10:07 2019-08-15 23:11:13 t 1 2 84091 306 0.00 2019-08-15 23:20:00 2019-08-15 23:21:05 t 1 2 84094 220 0.00 2019-08-15 23:20:14 2019-08-15 23:27:11 t 1 1 84109 220 0.00 2019-08-15 23:56:51 2019-08-15 23:57:00 t 1 1 84111 324 0.00 2019-08-15 23:34:01 2019-08-16 00:10:47 t 1 2 84123 220 0.00 2019-08-16 00:24:50 2019-08-16 00:25:53 t 1 2 84132 212 0.00 2019-08-16 00:49:29 2019-08-16 00:50:26 t 1 2 84147 288 0.00 2019-08-16 01:36:12 2019-08-16 01:37:19 t 1 2 84150 288 0.00 2019-08-16 01:42:12 2019-08-16 01:43:18 t 1 2 84153 288 0.00 2019-08-16 01:54:13 2019-08-16 01:55:19 t 1 2 84160 220 0.00 2019-08-16 02:07:12 2019-08-16 02:07:25 t 1 1 84167 361 0.00 2019-08-16 02:18:58 2019-08-16 02:48:50 t 1 2 84172 372 0.00 2019-08-16 02:58:50 2019-08-16 02:59:24 t 1 2 84175 324 0.00 2019-08-16 02:21:13 2019-08-16 03:15:03 t 1 2 84180 372 0.00 2019-08-16 03:26:43 2019-08-16 03:26:56 t 1 2 84181 220 0.00 2019-08-16 03:26:59 2019-08-16 03:27:00 t 1 1 84183 372 0.00 2019-08-16 03:35:30 2019-08-16 03:36:22 t 1 2 84184 220 0.00 2019-08-16 03:37:21 2019-08-16 03:37:30 t 1 1 84185 220 0.00 2019-08-16 03:40:09 2019-08-16 03:40:20 t 1 1 84193 372 0.00 2019-08-16 03:54:33 2019-08-16 03:54:33 f 1 2 84196 372 0.00 2019-08-16 03:55:40 2019-08-16 03:55:40 f 1 2 84198 372 0.00 2019-08-16 03:56:09 2019-08-16 03:56:09 f 1 2 84204 220 0.00 2019-08-16 04:01:31 2019-08-16 04:01:39 t 1 1 84208 372 0.00 2019-08-16 03:52:48 2019-08-16 04:02:53 t 1 2 84210 343 0.00 2019-08-16 01:49:00 2019-08-16 04:09:05 t 1 2 84217 372 0.00 2019-08-16 04:12:08 2019-08-16 04:26:49 t 1 2 84219 220 0.00 2019-08-16 04:41:13 2019-08-16 04:41:21 t 1 1 84239 220 0.00 2019-08-16 06:07:15 2019-08-16 06:07:25 t 1 1 84247 220 0.00 2019-08-16 06:49:45 2019-08-16 06:49:54 t 1 1 84248 220 0.00 2019-08-16 07:00:14 2019-08-16 07:00:22 t 1 1 84249 220 0.00 2019-08-16 07:00:30 2019-08-16 07:00:37 t 1 1 84251 324 0.00 2019-08-16 06:47:32 2019-08-16 07:02:38 t 1 2 84257 220 0.00 2019-08-16 07:32:42 2019-08-16 07:32:43 t 1 1 84258 220 0.00 2019-08-16 07:32:50 2019-08-16 07:32:59 t 1 1 84259 220 0.00 2019-08-16 07:33:06 2019-08-16 07:33:13 t 1 1 84260 220 0.00 2019-08-16 07:33:21 2019-08-16 07:33:30 t 1 1 84267 220 0.00 2019-08-16 08:15:50 2019-08-16 08:15:59 t 1 1 84072 220 0.00 2019-08-15 22:41:51 2019-08-15 22:42:58 t 1 2 84075 220 0.00 2019-08-15 22:49:11 2019-08-15 22:49:22 t 1 1 84077 363 0.00 2019-08-15 22:05:46 2019-08-15 22:50:52 t 1 2 84081 220 0.00 2019-08-15 22:56:26 2019-08-15 22:56:37 t 1 1 84082 220 0.00 2019-08-15 22:56:41 2019-08-15 22:56:59 t 1 1 84090 220 0.00 2019-08-15 23:19:24 2019-08-15 23:19:55 t 1 1 84092 288 0.00 2019-08-15 23:20:29 2019-08-15 23:21:35 t 1 2 84095 306 0.00 2019-08-15 23:26:14 2019-08-15 23:27:17 t 1 2 84097 367 0.00 2019-08-15 21:52:01 2019-08-15 23:28:58 t 1 2 84101 220 0.00 2019-08-15 23:35:44 2019-08-15 23:35:53 t 1 1 84104 220 0.00 2019-08-15 23:40:30 2019-08-15 23:41:38 t 1 2 84107 385 0.00 2019-08-15 22:58:41 2019-08-15 23:53:56 t 1 2 84112 346 0.00 2019-08-15 23:37:58 2019-08-16 00:13:51 t 1 2 84119 220 0.00 2019-08-16 00:19:47 2019-08-16 00:20:54 t 1 2 84124 220 0.00 2019-08-16 00:26:29 2019-08-16 00:27:32 t 1 2 84125 373 0.00 2019-08-16 00:28:51 2019-08-16 00:29:57 t 1 2 84126 220 0.00 2019-08-16 00:29:58 2019-08-16 00:30:12 t 1 1 84139 220 0.00 2019-08-16 01:13:34 2019-08-16 01:13:44 t 1 1 84140 220 0.00 2019-08-16 01:13:53 2019-08-16 01:14:02 t 1 1 84141 220 0.00 2019-08-16 01:14:12 2019-08-16 01:14:14 t 1 1 84143 220 0.00 2019-08-16 01:24:46 2019-08-16 01:24:56 t 1 1 84144 220 0.00 2019-08-16 01:25:06 2019-08-16 01:25:07 t 1 1 84149 343 0.00 2019-08-16 01:39:11 2019-08-16 01:40:14 t 1 2 84154 220 0.00 2019-08-16 01:56:27 2019-08-16 01:56:35 t 1 1 84157 288 0.00 2019-08-16 01:58:18 2019-08-16 01:59:21 t 1 2 84165 220 0.00 2019-08-16 02:33:15 2019-08-16 02:34:21 t 1 1 84166 220 0.00 2019-08-16 02:43:34 2019-08-16 02:43:43 t 1 1 84176 220 0.00 2019-08-16 03:15:55 2019-08-16 03:16:05 t 1 1 84177 372 0.00 2019-08-16 02:59:39 2019-08-16 03:25:12 t 1 2 84182 372 0.00 2019-08-16 03:26:51 2019-08-16 03:27:03 t 1 2 84187 372 0.00 2019-08-16 03:50:05 2019-08-16 03:50:05 f 1 2 84195 372 0.00 2019-08-16 03:54:44 2019-08-16 03:54:44 f 1 2 84199 372 0.00 2019-08-16 03:48:44 2019-08-16 03:58:50 t 1 2 84214 372 0.00 2019-08-16 04:03:24 2019-08-16 04:13:29 t 1 2 84221 343 0.00 2019-08-16 04:36:31 2019-08-16 04:43:22 t 1 2 84224 220 0.00 2019-08-16 04:52:30 2019-08-16 04:52:38 t 1 1 84226 220 0.00 2019-08-16 05:03:10 2019-08-16 05:03:20 t 1 1 84232 220 0.00 2019-08-16 05:35:37 2019-08-16 05:35:48 t 1 1 84233 220 0.00 2019-08-16 05:46:19 2019-08-16 05:46:29 t 1 1 84236 220 0.00 2019-08-16 05:53:58 2019-08-16 05:55:04 t 1 2 84243 220 0.00 2019-08-16 06:28:39 2019-08-16 06:28:46 t 1 1 84244 220 0.00 2019-08-16 06:39:07 2019-08-16 06:39:16 t 1 1 84245 220 0.00 2019-08-16 06:39:23 2019-08-16 06:39:25 t 1 1 84253 220 0.00 2019-08-16 07:21:42 2019-08-16 07:21:50 t 1 1 84255 220 0.00 2019-08-16 07:32:10 2019-08-16 07:32:18 t 1 1 84256 220 0.00 2019-08-16 07:32:26 2019-08-16 07:32:34 t 1 1 84264 304 0.00 2019-08-16 07:42:32 2019-08-16 07:52:37 t 1 2 84265 220 0.00 2019-08-16 07:54:50 2019-08-16 07:55:00 t 1 1 84266 220 0.00 2019-08-16 08:05:21 2019-08-16 08:05:34 t 1 1 84278 220 0.00 2019-08-16 08:46:10 2019-08-16 08:47:13 t 1 2 84282 220 0.00 2019-08-16 08:51:04 2019-08-16 08:52:10 t 1 2 84303 220 0.00 2019-08-16 09:50:44 2019-08-16 09:50:44 t 1 1 84309 220 0.00 2019-08-16 10:11:30 2019-08-16 10:15:52 t 1 1 84312 247 0.00 2019-08-16 10:16:19 2019-08-16 10:17:11 t 1 2 84321 220 0.00 2019-08-16 10:35:21 2019-08-16 10:35:41 t 1 1 84324 272 0.00 2019-08-16 10:43:11 2019-08-16 10:43:11 f 1 2 84326 220 0.00 2019-08-16 10:36:14 2019-08-16 10:46:09 t 1 1 84335 363 0.00 2019-08-16 10:40:51 2019-08-16 11:00:38 t 1 2 84341 363 0.00 2019-08-16 11:02:40 2019-08-16 11:12:46 t 1 2 84347 220 0.00 2019-08-16 11:33:34 2019-08-16 11:33:42 t 1 1 84348 220 0.00 2019-08-16 11:33:49 2019-08-16 11:33:58 t 1 1 84349 220 0.00 2019-08-16 11:34:05 2019-08-16 11:34:12 t 1 1 84350 220 0.00 2019-08-16 11:34:20 2019-08-16 11:34:21 t 1 1 84352 375 0.00 2019-08-16 11:14:20 2019-08-16 11:44:25 t 1 2 84354 320 0.00 2019-08-16 11:37:28 2019-08-16 11:47:33 t 1 2 84356 312 0.00 2019-08-16 11:52:38 2019-08-16 11:53:42 t 1 2 84361 320 0.00 2019-08-16 11:49:04 2019-08-16 11:59:09 t 1 2 84362 312 0.00 2019-08-16 12:00:36 2019-08-16 12:01:41 t 1 2 84371 320 0.00 2019-08-16 12:05:35 2019-08-16 12:15:40 t 1 2 84372 220 0.00 2019-08-16 12:16:10 2019-08-16 12:16:17 t 1 1 84373 367 0.00 2019-08-16 11:38:41 2019-08-16 12:16:37 t 1 2 84384 220 0.00 2019-08-16 12:38:47 2019-08-16 12:38:56 t 1 1 84386 288 0.00 2019-08-16 12:56:32 2019-08-16 12:57:35 t 1 2 84387 220 0.00 2019-08-16 12:59:50 2019-08-16 13:00:01 t 1 1 84389 294 0.00 2019-08-16 12:04:44 2019-08-16 13:05:08 t 1 2 84391 346 0.00 2019-08-16 12:07:52 2019-08-16 13:07:57 t 1 2 84394 288 0.00 2019-08-16 13:09:48 2019-08-16 13:10:52 t 1 2 84399 220 0.00 2019-08-16 13:31:34 2019-08-16 13:31:43 t 1 1 84405 361 0.00 2019-08-16 12:37:15 2019-08-16 13:50:08 t 1 2 84415 286 0.00 2019-08-16 14:07:09 2019-08-16 14:17:55 t 1 2 84418 311 0.00 2019-08-16 14:20:19 2019-08-16 14:27:58 t 1 2 84420 288 0.00 2019-08-16 14:29:58 2019-08-16 14:31:01 t 1 2 84425 322 0.00 2019-08-16 13:07:08 2019-08-16 14:35:14 t 1 2 84427 320 0.00 2019-08-16 14:28:42 2019-08-16 14:38:48 t 1 2 84428 220 0.00 2019-08-16 14:45:34 2019-08-16 14:45:43 t 1 1 84429 372 0.00 2019-08-16 14:45:20 2019-08-16 14:46:23 t 1 2 84432 220 0.00 2019-08-16 14:56:04 2019-08-16 14:56:12 t 1 1 84433 220 0.00 2019-08-16 14:56:19 2019-08-16 14:56:20 t 1 1 84435 372 0.00 2019-08-16 14:50:58 2019-08-16 14:58:32 t 1 2 84437 220 0.00 2019-08-16 15:06:42 2019-08-16 15:06:54 t 1 1 84438 346 0.00 2019-08-16 14:18:13 2019-08-16 15:11:03 t 1 2 84444 220 0.00 2019-08-16 15:27:41 2019-08-16 15:28:14 t 1 1 84445 306 0.00 2019-08-16 15:31:22 2019-08-16 15:32:23 t 1 2 84454 220 0.00 2019-08-16 15:39:24 2019-08-16 15:39:28 t 1 1 84461 220 0.00 2019-08-16 15:50:12 2019-08-16 15:50:19 t 1 1 84464 306 0.00 2019-08-16 16:03:45 2019-08-16 16:04:49 t 1 2 84471 220 0.00 2019-08-16 16:21:39 2019-08-16 16:21:47 t 1 1 84472 220 0.00 2019-08-16 16:32:08 2019-08-16 16:32:16 t 1 1 84473 220 0.00 2019-08-16 16:32:23 2019-08-16 16:32:31 t 1 1 84478 220 0.00 2019-08-16 16:43:16 2019-08-16 16:43:25 t 1 1 84479 220 0.00 2019-08-16 16:43:32 2019-08-16 16:43:34 t 1 1 84484 304 0.00 2019-08-16 16:38:07 2019-08-16 16:48:12 t 1 2 84491 220 0.00 2019-08-16 17:06:05 2019-08-16 17:06:40 t 1 1 84496 346 0.00 2019-08-16 17:01:06 2019-08-16 17:11:06 t 1 2 84499 220 0.00 2019-08-16 17:18:04 2019-08-16 17:18:11 t 1 1 84500 247 0.00 2019-08-16 17:21:20 2019-08-16 17:22:48 t 1 2 84503 220 0.00 2019-08-16 17:28:33 2019-08-16 17:28:41 t 1 1 84227 220 0.00 2019-08-16 05:13:52 2019-08-16 05:14:02 t 1 1 84228 220 0.00 2019-08-16 05:14:12 2019-08-16 05:14:14 t 1 1 84237 324 0.00 2019-08-16 05:56:48 2019-08-16 05:57:41 t 1 2 84240 220 0.00 2019-08-16 06:17:55 2019-08-16 06:18:03 t 1 1 84242 220 0.00 2019-08-16 06:28:23 2019-08-16 06:28:31 t 1 1 84250 220 0.00 2019-08-16 07:00:44 2019-08-16 07:00:52 t 1 1 84262 220 0.00 2019-08-16 07:44:06 2019-08-16 07:44:14 t 1 1 84263 220 0.00 2019-08-16 07:44:21 2019-08-16 07:44:29 t 1 1 84268 212 0.00 2019-08-16 08:16:55 2019-08-16 08:17:43 t 1 2 84281 220 0.00 2019-08-16 08:49:17 2019-08-16 08:50:20 t 1 2 84285 220 0.00 2019-08-16 08:57:58 2019-08-16 08:58:07 t 1 1 84286 220 0.00 2019-08-16 08:58:14 2019-08-16 08:58:16 t 1 1 84287 220 0.00 2019-08-16 08:58:23 2019-08-16 08:58:24 t 1 1 84289 220 0.00 2019-08-16 09:08:45 2019-08-16 09:08:58 t 1 1 84291 220 0.00 2019-08-16 09:19:15 2019-08-16 09:19:23 t 1 1 84292 288 0.00 2019-08-16 09:26:08 2019-08-16 09:26:13 t 1 2 84294 220 0.00 2019-08-16 09:28:58 2019-08-16 09:29:06 t 1 1 84295 220 0.00 2019-08-16 09:29:14 2019-08-16 09:29:22 t 1 1 84298 306 0.00 2019-08-16 09:44:51 2019-08-16 09:45:53 t 1 2 84300 306 0.00 2019-08-16 09:47:42 2019-08-16 09:48:48 t 1 2 84311 220 0.00 2019-08-16 10:15:31 2019-08-16 10:16:35 t 1 2 84313 320 0.00 2019-08-16 09:12:56 2019-08-16 10:18:01 t 1 2 84315 220 0.00 2019-08-16 10:25:12 2019-08-16 10:25:24 t 1 1 84319 220 0.00 2019-08-16 10:32:50 2019-08-16 10:33:57 t 1 2 84323 322 0.00 2019-08-16 08:47:02 2019-08-16 10:41:14 t 1 2 84325 272 0.00 2019-08-16 10:43:18 2019-08-16 10:43:18 f 1 2 84327 220 0.00 2019-08-16 10:46:09 2019-08-16 10:46:44 t 1 1 84328 220 0.00 2019-08-16 10:46:51 2019-08-16 10:46:59 t 1 1 84329 220 0.00 2019-08-16 10:47:07 2019-08-16 10:47:08 t 1 1 84330 220 0.00 2019-08-16 10:47:15 2019-08-16 10:47:23 t 1 1 84331 220 0.00 2019-08-16 10:47:31 2019-08-16 10:49:23 t 1 1 84332 220 0.00 2019-08-16 10:47:32 2019-08-16 10:51:19 t 1 1 84334 304 0.00 2019-08-16 10:42:41 2019-08-16 10:52:46 t 1 2 84336 220 0.00 2019-08-16 10:54:11 2019-08-16 11:01:47 t 1 1 84338 320 0.00 2019-08-16 11:01:28 2019-08-16 11:11:33 t 1 2 84340 220 0.00 2019-08-16 11:12:21 2019-08-16 11:12:30 t 1 1 84344 220 0.00 2019-08-16 11:22:51 2019-08-16 11:22:58 t 1 1 84346 220 0.00 2019-08-16 11:33:19 2019-08-16 11:33:26 t 1 1 84360 320 0.00 2019-08-16 11:58:27 2019-08-16 11:58:27 f 1 2 84363 320 0.00 2019-08-16 11:53:12 2019-08-16 12:03:17 t 1 2 84364 220 0.00 2019-08-16 12:05:40 2019-08-16 12:05:52 t 1 1 84368 220 0.00 2019-08-16 12:07:07 2019-08-16 12:11:11 t 1 2 84370 314 0.00 2019-08-16 11:52:30 2019-08-16 12:12:35 t 1 2 84375 220 0.00 2019-08-16 12:26:39 2019-08-16 12:26:46 t 1 1 84376 220 0.00 2019-08-16 12:26:54 2019-08-16 12:27:02 t 1 1 84377 220 0.00 2019-08-16 12:27:09 2019-08-16 12:27:16 t 1 1 84378 220 0.00 2019-08-16 12:27:24 2019-08-16 12:27:31 t 1 1 84383 247 0.00 2019-08-16 12:36:03 2019-08-16 12:36:47 t 1 2 84393 220 0.00 2019-08-16 13:10:24 2019-08-16 13:10:34 t 1 1 84396 294 0.00 2019-08-16 13:10:12 2019-08-16 13:19:35 t 1 2 84402 220 0.00 2019-08-16 13:42:18 2019-08-16 13:42:20 t 1 1 84406 292 0.00 2019-08-16 13:49:53 2019-08-16 13:51:00 t 1 2 84409 320 0.00 2019-08-16 12:23:11 2019-08-16 13:53:16 t 1 2 84410 220 0.00 2019-08-16 14:03:12 2019-08-16 14:03:24 t 1 1 84411 220 0.00 2019-08-16 14:06:01 2019-08-16 14:07:03 t 1 2 84413 306 0.00 2019-08-16 14:09:17 2019-08-16 14:10:18 t 1 2 84421 220 0.00 2019-08-16 14:34:39 2019-08-16 14:34:48 t 1 1 84430 220 0.00 2019-08-16 14:49:40 2019-08-16 14:54:46 t 1 2 84436 294 0.00 2019-08-16 14:04:37 2019-08-16 15:05:00 t 1 2 84441 220 0.00 2019-08-16 15:17:12 2019-08-16 15:17:20 t 1 1 84442 324 0.00 2019-08-16 15:24:25 2019-08-16 15:25:31 t 1 2 84448 220 0.00 2019-08-16 15:28:15 2019-08-16 15:38:11 t 1 1 84450 220 0.00 2019-08-16 15:38:46 2019-08-16 15:38:49 t 1 1 84456 220 0.00 2019-08-16 15:39:42 2019-08-16 15:39:50 t 1 1 84457 363 0.00 2019-08-16 12:20:20 2019-08-16 15:40:25 t 1 2 84463 220 0.00 2019-08-16 16:00:40 2019-08-16 16:00:48 t 1 1 84466 306 0.00 2019-08-16 16:08:09 2019-08-16 16:09:16 t 1 2 84480 220 0.00 2019-08-16 16:43:41 2019-08-16 16:43:42 t 1 1 84481 220 0.00 2019-08-16 16:43:50 2019-08-16 16:43:51 t 1 1 84489 220 0.00 2019-08-16 17:02:14 2019-08-16 17:05:31 t 1 1 84506 292 0.00 2019-08-16 17:32:01 2019-08-16 17:33:05 t 1 2 84509 320 0.00 2019-08-16 17:30:44 2019-08-16 17:40:49 t 1 2 84510 220 0.00 2019-08-16 17:41:57 2019-08-16 17:42:24 t 1 1 84511 220 0.00 2019-08-16 17:49:31 2019-08-16 17:49:39 t 1 1 84512 220 0.00 2019-08-16 17:49:47 2019-08-16 17:49:55 t 1 1 84521 220 0.00 2019-08-16 18:11:00 2019-08-16 18:11:13 t 1 1 84523 306 0.00 2019-08-16 18:11:35 2019-08-16 18:12:40 t 1 2 84540 286 0.00 2019-08-16 18:24:44 2019-08-16 18:34:49 t 1 2 84542 220 0.00 2019-08-16 18:38:12 2019-08-16 18:38:24 t 1 1 84543 304 0.00 2019-08-16 18:30:30 2019-08-16 18:40:36 t 1 2 84546 294 0.00 2019-08-16 17:46:20 2019-08-16 18:43:44 t 1 2 84554 220 0.00 2019-08-16 18:59:41 2019-08-16 18:59:49 t 1 1 84555 220 0.00 2019-08-16 18:59:57 2019-08-16 19:00:05 t 1 1 84560 286 0.00 2019-08-16 19:12:46 2019-08-16 19:22:51 t 1 2 84566 286 0.00 2019-08-16 19:35:10 2019-08-16 19:45:15 t 1 2 84568 220 0.00 2019-08-16 19:45:27 2019-08-16 19:45:37 t 1 1 84569 220 0.00 2019-08-16 19:47:41 2019-08-16 19:48:47 t 1 2 84570 288 0.00 2019-08-16 19:49:03 2019-08-16 19:50:08 t 1 2 84573 306 0.00 2019-08-16 19:52:26 2019-08-16 19:53:33 t 1 2 84580 306 0.00 2019-08-16 19:57:51 2019-08-16 19:58:58 t 1 2 84586 220 0.00 2019-08-16 20:02:56 2019-08-16 20:03:59 t 1 2 84589 306 0.00 2019-08-16 20:05:50 2019-08-16 20:06:50 t 1 2 84592 220 0.00 2019-08-16 20:07:07 2019-08-16 20:07:41 t 1 1 84594 306 0.00 2019-08-16 20:07:21 2019-08-16 20:08:24 t 1 2 84596 288 0.00 2019-08-16 20:09:50 2019-08-16 20:10:54 t 1 2 84602 220 0.00 2019-08-16 20:18:25 2019-08-16 20:18:33 t 1 1 84607 296 0.00 2019-08-16 20:24:51 2019-08-16 20:28:11 t 1 2 84609 306 0.00 2019-08-16 20:31:53 2019-08-16 20:32:58 t 1 2 84610 220 0.00 2019-08-16 20:33:10 2019-08-16 20:34:16 t 1 2 84615 304 0.00 2019-08-16 20:29:31 2019-08-16 20:39:36 t 1 2 84617 346 0.00 2019-08-16 20:29:49 2019-08-16 20:39:54 t 1 2 84620 286 0.00 2019-08-16 20:44:39 2019-08-16 20:44:39 f 1 2 84622 220 0.00 2019-08-16 20:50:21 2019-08-16 20:50:31 t 1 1 84625 220 0.00 2019-08-16 20:54:38 2019-08-16 20:55:42 t 1 2 84627 220 0.00 2019-08-16 21:02:23 2019-08-16 21:02:39 t 1 1 84637 292 0.00 2019-08-16 21:22:33 2019-08-16 21:23:39 t 1 2 84638 320 0.00 2019-08-16 21:14:23 2019-08-16 21:24:29 t 1 2 84234 296 0.00 2019-08-16 05:48:00 2019-08-16 05:52:24 t 1 2 84235 375 0.00 2019-08-16 04:14:46 2019-08-16 05:54:46 t 1 2 84238 220 0.00 2019-08-16 05:56:52 2019-08-16 05:58:21 t 1 1 84241 324 0.00 2019-08-16 05:58:23 2019-08-16 06:24:15 t 1 2 84246 324 0.00 2019-08-16 06:28:26 2019-08-16 06:44:21 t 1 2 84252 220 0.00 2019-08-16 07:11:13 2019-08-16 07:11:26 t 1 1 84254 373 0.00 2019-08-16 07:29:33 2019-08-16 07:30:40 t 1 2 84261 220 0.00 2019-08-16 07:33:37 2019-08-16 07:33:46 t 1 1 84269 220 0.00 2019-08-16 08:16:57 2019-08-16 08:17:59 t 1 2 84270 220 0.00 2019-08-16 08:20:04 2019-08-16 08:21:07 t 1 2 84272 373 0.00 2019-08-16 08:23:17 2019-08-16 08:24:24 t 1 2 84277 220 0.00 2019-08-16 08:43:54 2019-08-16 08:44:57 t 1 2 84280 220 0.00 2019-08-16 08:47:31 2019-08-16 08:48:34 t 1 2 84283 220 0.00 2019-08-16 08:53:34 2019-08-16 08:54:39 t 1 2 84293 288 0.00 2019-08-16 09:26:16 2019-08-16 09:27:20 t 1 2 84296 220 0.00 2019-08-16 09:39:43 2019-08-16 09:39:51 t 1 1 84297 220 0.00 2019-08-16 09:39:58 2019-08-16 09:40:06 t 1 1 84299 306 0.00 2019-08-16 09:46:15 2019-08-16 09:47:21 t 1 2 84301 220 0.00 2019-08-16 09:50:27 2019-08-16 09:50:28 t 1 1 84302 220 0.00 2019-08-16 09:50:35 2019-08-16 09:50:36 t 1 1 84308 220 0.00 2019-08-16 10:11:51 2019-08-16 10:12:01 t 1 1 84317 346 0.00 2019-08-16 10:33:43 2019-08-16 10:33:51 t 1 2 84333 220 0.00 2019-08-16 10:51:19 2019-08-16 10:51:28 t 1 1 84337 220 0.00 2019-08-16 11:01:47 2019-08-16 11:01:55 t 1 1 84345 220 0.00 2019-08-16 11:24:04 2019-08-16 11:30:34 t 1 1 84351 361 0.00 2019-08-16 10:25:55 2019-08-16 11:41:00 t 1 2 84355 320 0.00 2019-08-16 11:48:58 2019-08-16 11:48:59 t 1 2 84359 312 0.00 2019-08-16 11:56:04 2019-08-16 11:57:12 t 1 2 84365 346 0.00 2019-08-16 11:58:49 2019-08-16 12:07:27 t 1 2 84366 363 0.00 2019-08-16 12:07:32 2019-08-16 12:07:32 f 1 2 84379 220 0.00 2019-08-16 12:27:39 2019-08-16 12:27:47 t 1 1 84380 220 0.00 2019-08-16 12:27:54 2019-08-16 12:28:01 t 1 1 84381 220 0.00 2019-08-16 12:28:09 2019-08-16 12:28:16 t 1 1 84382 220 0.00 2019-08-16 12:28:24 2019-08-16 12:28:25 t 1 1 84388 304 0.00 2019-08-16 12:51:35 2019-08-16 13:01:40 t 1 2 84390 381 0.00 2019-08-16 12:16:37 2019-08-16 13:06:42 t 1 2 84397 220 0.00 2019-08-16 13:21:05 2019-08-16 13:21:14 t 1 1 84404 292 0.00 2019-08-16 13:49:15 2019-08-16 13:49:22 t 1 2 84407 346 0.00 2019-08-16 13:41:06 2019-08-16 13:51:11 t 1 2 84414 220 0.00 2019-08-16 14:13:41 2019-08-16 14:13:48 t 1 1 84422 288 0.00 2019-08-16 14:33:43 2019-08-16 14:34:49 t 1 2 84424 220 0.00 2019-08-16 14:35:10 2019-08-16 14:35:12 t 1 1 84426 220 0.00 2019-08-16 14:26:13 2019-08-16 14:37:22 t 1 2 84431 355 0.00 2019-08-16 13:19:55 2019-08-16 14:55:00 t 1 2 84434 320 0.00 2019-08-16 14:37:53 2019-08-16 14:57:59 t 1 2 84443 220 0.00 2019-08-16 15:17:47 2019-08-16 15:27:41 t 1 1 84446 306 0.00 2019-08-16 15:32:42 2019-08-16 15:33:46 t 1 2 84449 220 0.00 2019-08-16 15:38:11 2019-08-16 15:38:19 t 1 1 84451 220 0.00 2019-08-16 15:38:49 2019-08-16 15:38:56 t 1 1 84452 220 0.00 2019-08-16 15:39:10 2019-08-16 15:39:11 t 1 1 84453 220 0.00 2019-08-16 15:39:19 2019-08-16 15:39:20 t 1 1 84459 220 0.00 2019-08-16 15:40:03 2019-08-16 15:48:50 t 1 1 84465 306 0.00 2019-08-16 16:06:40 2019-08-16 16:07:42 t 1 2 84467 346 0.00 2019-08-16 16:08:20 2019-08-16 16:09:25 t 1 2 84469 346 0.00 2019-08-16 16:01:56 2019-08-16 16:12:02 t 1 2 84476 373 0.00 2019-08-16 16:33:09 2019-08-16 16:34:15 t 1 2 84477 361 0.00 2019-08-16 15:17:40 2019-08-16 16:42:04 t 1 2 84483 220 0.00 2019-08-16 16:46:15 2019-08-16 16:46:45 t 1 1 84485 349 0.00 2019-08-16 16:40:20 2019-08-16 16:50:25 t 1 2 84486 220 0.00 2019-08-16 16:46:46 2019-08-16 16:53:20 t 1 1 84487 385 0.00 2019-08-16 14:40:38 2019-08-16 16:55:44 t 1 2 84493 220 0.00 2019-08-16 17:06:40 2019-08-16 17:07:13 t 1 1 84495 220 0.00 2019-08-16 17:07:34 2019-08-16 17:07:47 t 1 1 84497 346 0.00 2019-08-16 17:02:39 2019-08-16 17:12:44 t 1 2 84498 220 0.00 2019-08-16 17:08:09 2019-08-16 17:18:04 t 1 1 84501 292 0.00 2019-08-16 17:26:28 2019-08-16 17:27:34 t 1 2 84504 220 0.00 2019-08-16 17:29:16 2019-08-16 17:31:17 t 1 1 84508 220 0.00 2019-08-16 17:39:01 2019-08-16 17:39:10 t 1 1 84515 220 0.00 2019-08-16 18:00:15 2019-08-16 18:00:24 t 1 1 84522 372 0.00 2019-08-16 18:11:14 2019-08-16 18:12:20 t 1 2 84524 212 0.00 2019-08-16 18:11:45 2019-08-16 18:12:48 t 1 2 84525 372 0.00 2019-08-16 18:12:35 2019-08-16 18:13:41 t 1 2 84533 324 0.00 2019-08-16 18:13:16 2019-08-16 18:23:21 t 1 2 84534 346 0.00 2019-08-16 17:10:50 2019-08-16 18:25:55 t 1 2 84537 385 0.00 2019-08-16 18:31:46 2019-08-16 18:31:53 t 1 2 84547 288 0.00 2019-08-16 18:47:45 2019-08-16 18:48:48 t 1 2 84551 363 0.00 2019-08-16 17:25:42 2019-08-16 18:50:47 t 1 2 84556 220 0.00 2019-08-16 19:10:26 2019-08-16 19:10:39 t 1 1 84558 220 0.00 2019-08-16 19:20:55 2019-08-16 19:21:04 t 1 1 84559 220 0.00 2019-08-16 19:21:11 2019-08-16 19:21:12 t 1 1 84562 220 0.00 2019-08-16 19:34:40 2019-08-16 19:34:55 t 1 1 84563 220 0.00 2019-08-16 19:35:05 2019-08-16 19:35:06 t 1 1 84571 220 0.00 2019-08-16 19:50:06 2019-08-16 19:51:08 t 1 2 84575 220 0.00 2019-08-16 19:55:58 2019-08-16 19:56:07 t 1 1 84578 306 0.00 2019-08-16 19:56:18 2019-08-16 19:57:21 t 1 2 84581 306 0.00 2019-08-16 19:59:15 2019-08-16 20:00:16 t 1 2 84583 324 0.00 2019-08-16 19:41:27 2019-08-16 20:00:42 t 1 2 84584 220 0.00 2019-08-16 20:00:19 2019-08-16 20:01:22 t 1 2 84587 346 0.00 2019-08-16 20:04:07 2019-08-16 20:04:56 t 1 2 84591 346 0.00 2019-08-16 20:07:29 2019-08-16 20:07:35 t 1 2 84593 220 0.00 2019-08-16 20:07:41 2019-08-16 20:07:48 t 1 1 84598 220 0.00 2019-08-16 20:08:12 2019-08-16 20:18:10 t 1 1 84604 247 0.00 2019-08-16 20:21:30 2019-08-16 20:22:33 t 1 2 84605 346 0.00 2019-08-16 20:19:09 2019-08-16 20:23:51 t 1 2 84611 320 0.00 2019-08-16 20:24:13 2019-08-16 20:34:19 t 1 2 84613 220 0.00 2019-08-16 20:37:46 2019-08-16 20:38:51 t 1 2 84624 324 0.00 2019-08-16 20:30:06 2019-08-16 20:52:35 t 1 2 84626 220 0.00 2019-08-16 21:01:05 2019-08-16 21:01:48 t 1 1 84629 247 0.00 2019-08-16 21:08:51 2019-08-16 21:09:39 t 1 2 84632 220 0.00 2019-08-16 21:13:38 2019-08-16 21:13:52 t 1 1 84648 355 0.00 2019-08-16 20:17:18 2019-08-16 21:47:24 t 1 2 84651 220 0.00 2019-08-16 21:55:44 2019-08-16 21:55:51 t 1 1 84652 220 0.00 2019-08-16 21:55:59 2019-08-16 21:56:07 t 1 1 84653 220 0.00 2019-08-16 21:56:14 2019-08-16 21:56:22 t 1 1 84655 220 0.00 2019-08-16 21:56:38 2019-08-16 21:56:47 t 1 1 84662 220 0.00 2019-08-16 22:07:16 2019-08-16 22:07:29 t 1 1 84670 220 0.00 2019-08-16 22:28:16 2019-08-16 22:28:24 t 1 1 84271 220 0.00 2019-08-16 08:21:42 2019-08-16 08:22:47 t 1 2 84273 220 0.00 2019-08-16 08:26:19 2019-08-16 08:26:30 t 1 1 84274 220 0.00 2019-08-16 08:36:47 2019-08-16 08:36:56 t 1 1 84275 220 0.00 2019-08-16 08:37:03 2019-08-16 08:37:12 t 1 1 84276 220 0.00 2019-08-16 08:37:19 2019-08-16 08:37:27 t 1 1 84279 220 0.00 2019-08-16 08:47:29 2019-08-16 08:47:37 t 1 1 84284 220 0.00 2019-08-16 08:56:10 2019-08-16 08:57:13 t 1 2 84288 320 0.00 2019-08-16 08:54:34 2019-08-16 09:04:39 t 1 2 84290 320 0.00 2019-08-16 09:00:46 2019-08-16 09:10:51 t 1 2 84304 286 0.00 2019-08-16 08:28:45 2019-08-16 09:53:50 t 1 2 84305 220 0.00 2019-08-16 10:01:08 2019-08-16 10:01:17 t 1 1 84306 220 0.00 2019-08-16 10:01:27 2019-08-16 10:01:28 t 1 1 84307 306 0.00 2019-08-16 10:09:37 2019-08-16 10:10:41 t 1 2 84310 220 0.00 2019-08-16 10:15:52 2019-08-16 10:16:25 t 1 1 84314 220 0.00 2019-08-16 10:16:24 2019-08-16 10:25:12 t 1 1 84316 220 0.00 2019-08-16 10:12:42 2019-08-16 10:26:51 t 1 2 84318 217 0.00 2019-08-16 10:33:55 2019-08-16 10:33:55 f 1 2 84320 220 0.00 2019-08-16 10:25:50 2019-08-16 10:35:21 t 1 1 84322 220 0.00 2019-08-16 10:35:41 2019-08-16 10:35:48 t 1 1 84339 220 0.00 2019-08-16 11:02:38 2019-08-16 11:12:22 t 1 1 84342 320 0.00 2019-08-16 11:08:12 2019-08-16 11:18:17 t 1 2 84343 220 0.00 2019-08-16 11:12:57 2019-08-16 11:22:51 t 1 1 84353 220 0.00 2019-08-16 11:44:42 2019-08-16 11:44:51 t 1 1 84357 306 0.00 2019-08-16 11:53:46 2019-08-16 11:54:50 t 1 2 84358 220 0.00 2019-08-16 11:55:11 2019-08-16 11:55:19 t 1 1 84367 320 0.00 2019-08-16 12:01:05 2019-08-16 12:11:10 t 1 2 84369 363 0.00 2019-08-16 12:07:39 2019-08-16 12:11:52 t 1 2 84374 320 0.00 2019-08-16 12:11:30 2019-08-16 12:26:35 t 1 2 84385 355 0.00 2019-08-16 10:42:35 2019-08-16 12:42:40 t 1 2 84392 355 0.00 2019-08-16 12:47:54 2019-08-16 13:07:59 t 1 2 84395 288 0.00 2019-08-16 13:17:51 2019-08-16 13:18:57 t 1 2 84398 220 0.00 2019-08-16 13:22:27 2019-08-16 13:23:31 t 1 2 84400 247 0.00 2019-08-16 13:35:47 2019-08-16 13:36:32 t 1 2 84401 220 0.00 2019-08-16 13:42:04 2019-08-16 13:42:11 t 1 1 84403 292 0.00 2019-08-16 13:46:39 2019-08-16 13:47:43 t 1 2 84408 220 0.00 2019-08-16 13:52:42 2019-08-16 13:52:51 t 1 1 84412 346 0.00 2019-08-16 13:11:42 2019-08-16 14:09:41 t 1 2 84416 346 0.00 2019-08-16 13:42:18 2019-08-16 14:21:17 t 1 2 84417 220 0.00 2019-08-16 14:24:09 2019-08-16 14:24:18 t 1 1 84419 247 0.00 2019-08-16 14:27:28 2019-08-16 14:28:16 t 1 2 84423 220 0.00 2019-08-16 14:34:55 2019-08-16 14:35:03 t 1 1 84439 212 0.00 2019-08-16 15:13:39 2019-08-16 15:15:25 t 1 2 84440 220 0.00 2019-08-16 15:09:38 2019-08-16 15:17:12 t 1 1 84447 306 0.00 2019-08-16 15:34:31 2019-08-16 15:35:35 t 1 2 84455 220 0.00 2019-08-16 15:39:27 2019-08-16 15:39:35 t 1 1 84458 320 0.00 2019-08-16 15:07:30 2019-08-16 15:42:36 t 1 2 84460 320 0.00 2019-08-16 15:34:47 2019-08-16 15:49:52 t 1 2 84462 320 0.00 2019-08-16 15:50:15 2019-08-16 16:00:20 t 1 2 84468 220 0.00 2019-08-16 16:11:10 2019-08-16 16:11:22 t 1 1 84470 372 0.00 2019-08-16 16:03:34 2019-08-16 16:19:28 t 1 2 84474 220 0.00 2019-08-16 16:32:39 2019-08-16 16:32:40 t 1 1 84475 220 0.00 2019-08-16 16:32:48 2019-08-16 16:32:56 t 1 1 84482 220 0.00 2019-08-16 16:45:47 2019-08-16 16:46:15 t 1 1 84488 220 0.00 2019-08-16 16:57:06 2019-08-16 16:57:39 t 1 1 84490 220 0.00 2019-08-16 17:05:31 2019-08-16 17:06:06 t 1 1 84492 361 0.00 2019-08-16 16:50:05 2019-08-16 17:06:41 t 1 2 84494 220 0.00 2019-08-16 17:07:13 2019-08-16 17:07:34 t 1 1 84502 220 0.00 2019-08-16 17:18:36 2019-08-16 17:28:33 t 1 1 84505 320 0.00 2019-08-16 16:01:36 2019-08-16 17:31:41 t 1 2 84507 324 0.00 2019-08-16 17:28:24 2019-08-16 17:38:29 t 1 2 84513 320 0.00 2019-08-16 17:41:32 2019-08-16 17:51:37 t 1 2 84514 304 0.00 2019-08-16 17:44:01 2019-08-16 17:54:06 t 1 2 84517 381 0.00 2019-08-16 14:45:47 2019-08-16 18:00:53 t 1 2 84519 372 0.00 2019-08-16 18:05:45 2019-08-16 18:07:26 t 1 2 84520 320 0.00 2019-08-16 17:59:57 2019-08-16 18:10:02 t 1 2 84527 288 0.00 2019-08-16 18:13:32 2019-08-16 18:14:36 t 1 2 84528 324 0.00 2019-08-16 18:15:49 2019-08-16 18:16:22 t 1 2 84530 220 0.00 2019-08-16 18:21:30 2019-08-16 18:21:38 t 1 1 84531 220 0.00 2019-08-16 18:21:46 2019-08-16 18:21:54 t 1 1 84532 220 0.00 2019-08-16 18:22:01 2019-08-16 18:22:09 t 1 1 84535 339 0.00 2019-08-16 17:26:19 2019-08-16 18:26:42 t 1 2 84536 355 0.00 2019-08-16 16:54:22 2019-08-16 18:29:27 t 1 2 84541 220 0.00 2019-08-16 18:33:03 2019-08-16 18:36:56 t 1 1 84544 288 0.00 2019-08-16 18:40:52 2019-08-16 18:41:55 t 1 2 84545 320 0.00 2019-08-16 18:33:33 2019-08-16 18:43:38 t 1 2 84552 320 0.00 2019-08-16 18:41:41 2019-08-16 18:51:46 t 1 2 84557 311 0.00 2019-08-16 17:21:12 2019-08-16 19:16:17 t 1 2 84565 372 0.00 2019-08-16 19:34:04 2019-08-16 19:44:09 t 1 2 84572 288 0.00 2019-08-16 19:51:03 2019-08-16 19:52:06 t 1 2 84574 306 0.00 2019-08-16 19:54:42 2019-08-16 19:55:44 t 1 2 84576 220 0.00 2019-08-16 19:56:14 2019-08-16 19:56:15 t 1 1 84577 220 0.00 2019-08-16 19:55:18 2019-08-16 19:56:23 t 1 2 84579 320 0.00 2019-08-16 19:41:15 2019-08-16 19:57:43 t 1 2 84582 294 0.00 2019-08-16 19:00:06 2019-08-16 20:00:29 t 1 2 84585 306 0.00 2019-08-16 20:00:59 2019-08-16 20:02:03 t 1 2 84588 220 0.00 2019-08-16 19:58:46 2019-08-16 20:06:37 t 1 1 84595 306 0.00 2019-08-16 20:09:38 2019-08-16 20:10:45 t 1 2 84597 320 0.00 2019-08-16 20:05:53 2019-08-16 20:15:59 t 1 2 84600 346 0.00 2019-08-16 20:08:15 2019-08-16 20:18:21 t 1 2 84601 306 0.00 2019-08-16 20:17:28 2019-08-16 20:18:32 t 1 2 84603 346 0.00 2019-08-16 20:19:03 2019-08-16 20:19:55 t 1 2 84608 220 0.00 2019-08-16 20:31:34 2019-08-16 20:32:37 t 1 2 84612 220 0.00 2019-08-16 20:36:17 2019-08-16 20:37:22 t 1 2 84614 220 0.00 2019-08-16 20:39:20 2019-08-16 20:39:29 t 1 1 84616 220 0.00 2019-08-16 20:39:39 2019-08-16 20:39:49 t 1 1 84618 320 0.00 2019-08-16 20:31:55 2019-08-16 20:42:00 t 1 2 84619 346 0.00 2019-08-16 20:34:23 2019-08-16 20:44:29 t 1 2 84621 320 0.00 2019-08-16 20:37:22 2019-08-16 20:47:27 t 1 2 84623 220 0.00 2019-08-16 20:50:40 2019-08-16 20:50:41 t 1 1 84628 320 0.00 2019-08-16 20:48:51 2019-08-16 21:08:57 t 1 2 84630 220 0.00 2019-08-16 21:13:11 2019-08-16 21:13:22 t 1 1 84631 220 0.00 2019-08-16 20:18:42 2019-08-16 21:13:38 t 1 1 84633 385 0.00 2019-08-16 21:12:24 2019-08-16 21:15:24 t 1 2 84634 220 0.00 2019-08-16 21:13:45 2019-08-16 21:18:14 t 1 2 84636 220 0.00 2019-08-16 21:14:10 2019-08-16 21:20:33 t 1 1 84645 346 0.00 2019-08-16 21:31:52 2019-08-16 21:41:58 t 1 2 84656 220 0.00 2019-08-16 21:56:54 2019-08-16 21:56:55 t 1 1 84516 220 0.00 2019-08-16 18:00:31 2019-08-16 18:00:39 t 1 1 84518 372 0.00 2019-08-16 16:59:17 2019-08-16 18:03:30 t 1 2 84526 306 0.00 2019-08-16 18:13:34 2019-08-16 18:14:34 t 1 2 84529 372 0.00 2019-08-16 18:07:34 2019-08-16 18:17:39 t 1 2 84538 220 0.00 2019-08-16 18:32:30 2019-08-16 18:32:38 t 1 1 84539 220 0.00 2019-08-16 18:32:45 2019-08-16 18:32:53 t 1 1 84548 220 0.00 2019-08-16 18:48:41 2019-08-16 18:48:49 t 1 1 84549 220 0.00 2019-08-16 18:48:57 2019-08-16 18:49:05 t 1 1 84550 220 0.00 2019-08-16 18:49:12 2019-08-16 18:49:20 t 1 1 84553 288 0.00 2019-08-16 18:53:55 2019-08-16 18:54:58 t 1 2 84561 247 0.00 2019-08-16 19:31:24 2019-08-16 19:32:31 t 1 2 84564 320 0.00 2019-08-16 19:28:33 2019-08-16 19:38:38 t 1 2 84567 220 0.00 2019-08-16 19:44:34 2019-08-16 19:45:36 t 1 2 84590 220 0.00 2019-08-16 20:06:36 2019-08-16 20:07:07 t 1 1 84599 220 0.00 2019-08-16 20:18:09 2019-08-16 20:18:18 t 1 1 84606 311 0.00 2019-08-16 19:06:40 2019-08-16 20:26:45 t 1 2 84635 306 0.00 2019-08-16 21:19:19 2019-08-16 21:20:25 t 1 2 84639 220 0.00 2019-08-16 21:24:07 2019-08-16 21:24:40 t 1 1 84644 320 0.00 2019-08-16 21:31:40 2019-08-16 21:41:45 t 1 2 84647 220 0.00 2019-08-16 21:45:15 2019-08-16 21:45:24 t 1 1 84649 220 0.00 2019-08-16 21:44:11 2019-08-16 21:50:48 t 1 1 84654 220 0.00 2019-08-16 21:56:30 2019-08-16 21:56:31 t 1 1 84658 365 0.00 2019-08-16 22:02:16 2019-08-16 22:02:16 f 1 2 84660 365 0.00 2019-08-16 22:02:39 2019-08-16 22:02:39 f 1 2 84661 324 0.00 2019-08-16 21:42:10 2019-08-16 22:03:24 t 1 2 84663 355 0.00 2019-08-16 21:50:04 2019-08-16 22:10:09 t 1 2 84667 220 0.00 2019-08-16 22:17:45 2019-08-16 22:17:59 t 1 1 84669 365 0.00 2019-08-16 22:23:29 2019-08-16 22:23:29 f 1 2 84672 363 0.00 2019-08-16 22:22:30 2019-08-16 22:30:08 t 1 2 84673 220 0.00 2019-08-16 22:38:58 2019-08-16 22:39:07 t 1 1 84676 220 0.00 2019-08-16 22:47:09 2019-08-16 22:47:22 t 1 1 84678 220 0.00 2019-08-16 22:47:22 2019-08-16 22:47:33 t 1 1 84690 220 0.00 2019-08-16 22:49:30 2019-08-16 22:49:41 t 1 1 84692 220 0.00 2019-08-16 22:49:40 2019-08-16 22:51:15 t 1 1 84694 220 0.00 2019-08-16 22:51:25 2019-08-16 22:51:35 t 1 1 84699 220 0.00 2019-08-16 22:52:29 2019-08-16 22:52:41 t 1 1 84703 220 0.00 2019-08-16 22:52:50 2019-08-16 22:53:00 t 1 1 84706 218 0.00 2019-08-16 23:03:48 2019-08-16 23:03:48 f 1 2 84712 220 0.00 2019-08-16 23:14:15 2019-08-16 23:14:28 t 1 1 84715 220 0.00 2019-08-16 23:25:12 2019-08-16 23:25:22 t 1 1 84716 220 0.00 2019-08-16 23:25:31 2019-08-16 23:25:32 t 1 1 84723 212 0.00 2019-08-16 23:31:16 2019-08-16 23:49:18 t 1 2 84725 212 0.00 2019-08-16 23:52:23 2019-08-16 23:53:07 t 1 2 84729 212 0.00 2019-08-17 00:03:28 2019-08-17 00:03:46 t 1 2 84730 220 0.00 2019-08-17 00:08:05 2019-08-17 00:08:17 t 1 1 84731 372 0.00 2019-08-17 00:10:42 2019-08-17 00:11:18 t 1 2 84735 212 0.00 2019-08-17 00:20:30 2019-08-17 00:21:21 t 1 2 84748 294 0.00 2019-08-16 23:58:01 2019-08-17 00:58:24 t 1 2 84757 220 0.00 2019-08-17 01:32:32 2019-08-17 01:32:39 t 1 1 84758 220 0.00 2019-08-17 01:32:47 2019-08-17 01:32:55 t 1 1 84759 220 0.00 2019-08-17 01:33:02 2019-08-17 01:33:11 t 1 1 84761 320 0.00 2019-08-16 22:43:26 2019-08-17 01:43:32 t 1 2 84764 343 0.00 2019-08-17 01:43:24 2019-08-17 01:44:27 t 1 2 84766 346 0.00 2019-08-17 01:01:08 2019-08-17 01:46:13 t 1 2 84787 220 0.00 2019-08-17 04:08:01 2019-08-17 04:08:13 t 1 1 84788 220 0.00 2019-08-17 04:18:31 2019-08-17 04:18:32 t 1 1 84801 220 0.00 2019-08-17 05:22:36 2019-08-17 05:22:44 t 1 1 84802 220 0.00 2019-08-17 05:22:51 2019-08-17 05:22:59 t 1 1 84803 220 0.00 2019-08-17 05:23:06 2019-08-17 05:23:14 t 1 1 84806 220 0.00 2019-08-17 05:38:54 2019-08-17 05:39:58 t 1 2 84816 324 0.00 2019-08-17 06:30:17 2019-08-17 06:31:22 t 1 2 84822 220 0.00 2019-08-17 06:50:40 2019-08-17 06:51:43 t 1 2 84826 220 0.00 2019-08-17 07:32:55 2019-08-17 07:33:51 t 1 2 84828 320 0.00 2019-08-17 07:44:16 2019-08-17 07:54:21 t 1 2 84830 363 0.00 2019-08-17 07:44:38 2019-08-17 08:04:43 t 1 2 84833 212 0.00 2019-08-17 08:18:38 2019-08-17 08:19:09 t 1 2 84839 288 0.00 2019-08-17 08:52:50 2019-08-17 08:53:53 t 1 2 84842 212 0.00 2019-08-17 09:00:01 2019-08-17 09:00:35 t 1 2 84843 220 0.00 2019-08-17 09:01:50 2019-08-17 09:03:26 t 1 1 84844 288 0.00 2019-08-17 09:05:13 2019-08-17 09:06:17 t 1 2 84847 288 0.00 2019-08-17 09:11:04 2019-08-17 09:12:07 t 1 2 84849 288 0.00 2019-08-17 09:21:07 2019-08-17 09:22:11 t 1 2 84854 306 0.00 2019-08-17 09:52:59 2019-08-17 09:54:00 t 1 2 84855 296 0.00 2019-08-17 09:57:52 2019-08-17 10:02:16 t 1 2 84856 296 0.00 2019-08-17 10:02:18 2019-08-17 10:04:41 t 1 2 84862 212 0.00 2019-08-17 10:35:02 2019-08-17 10:35:35 t 1 2 84863 220 0.00 2019-08-17 10:40:07 2019-08-17 10:41:10 t 1 2 84865 372 0.00 2019-08-17 10:42:34 2019-08-17 10:43:41 t 1 2 84871 372 0.00 2019-08-17 10:51:22 2019-08-17 10:52:25 t 1 2 84873 385 0.00 2019-08-17 10:54:26 2019-08-17 11:04:47 t 1 2 84876 320 0.00 2019-08-17 11:04:01 2019-08-17 11:19:06 t 1 2 84878 306 0.00 2019-08-17 11:31:07 2019-08-17 11:32:07 t 1 2 84879 327 0.00 2019-08-17 10:44:06 2019-08-17 11:34:30 t 1 2 84883 320 0.00 2019-08-17 11:22:27 2019-08-17 11:47:32 t 1 2 84895 306 0.00 2019-08-17 12:21:15 2019-08-17 12:22:23 t 1 2 84903 372 0.00 2019-08-17 12:28:06 2019-08-17 12:29:10 t 1 2 84908 343 0.00 2019-08-17 12:35:54 2019-08-17 12:36:57 t 1 2 84909 306 0.00 2019-08-17 12:36:29 2019-08-17 12:37:36 t 1 2 84914 349 0.00 2019-08-17 13:02:55 2019-08-17 13:03:57 t 1 2 84917 346 0.00 2019-08-17 12:48:17 2019-08-17 13:13:03 t 1 2 84932 220 0.00 2019-08-17 14:00:14 2019-08-17 14:00:43 t 1 1 84934 220 0.00 2019-08-17 14:01:05 2019-08-17 14:01:40 t 1 1 84939 220 0.00 2019-08-17 14:03:43 2019-08-17 14:04:16 t 1 1 84940 220 0.00 2019-08-17 14:04:16 2019-08-17 14:04:49 t 1 1 84951 220 0.00 2019-08-17 14:10:59 2019-08-17 14:11:33 t 1 1 84957 346 0.00 2019-08-17 13:15:09 2019-08-17 14:15:34 t 1 2 84960 220 0.00 2019-08-17 14:16:26 2019-08-17 14:17:05 t 1 1 84964 220 0.00 2019-08-17 14:21:59 2019-08-17 14:25:09 t 1 1 84966 220 0.00 2019-08-17 14:25:09 2019-08-17 14:25:41 t 1 1 84973 220 0.00 2019-08-17 14:31:10 2019-08-17 14:31:45 t 1 1 84974 292 0.00 2019-08-17 14:33:33 2019-08-17 14:34:38 t 1 2 84977 220 0.00 2019-08-17 14:36:06 2019-08-17 14:36:38 t 1 1 84988 220 0.00 2019-08-17 14:45:26 2019-08-17 14:46:00 t 1 1 84991 220 0.00 2019-08-17 14:47:14 2019-08-17 14:47:49 t 1 1 84994 220 0.00 2019-08-17 14:49:00 2019-08-17 14:49:34 t 1 1 84998 220 0.00 2019-08-17 14:50:47 2019-08-17 14:51:36 t 1 1 85000 220 0.00 2019-08-17 14:51:35 2019-08-17 14:52:11 t 1 1 84640 288 0.00 2019-08-16 21:31:30 2019-08-16 21:32:33 t 1 2 84641 220 0.00 2019-08-16 21:34:37 2019-08-16 21:34:45 t 1 1 84642 220 0.00 2019-08-16 21:34:53 2019-08-16 21:34:54 t 1 1 84643 320 0.00 2019-08-16 21:28:00 2019-08-16 21:38:05 t 1 2 84646 385 0.00 2019-08-16 21:05:06 2019-08-16 21:45:11 t 1 2 84650 324 0.00 2019-08-16 20:24:08 2019-08-16 21:52:35 t 1 2 84657 220 0.00 2019-08-16 21:56:29 2019-08-16 21:57:40 t 1 2 84659 365 0.00 2019-08-16 22:02:26 2019-08-16 22:02:26 f 1 2 84664 361 0.00 2019-08-16 18:53:25 2019-08-16 22:10:51 t 1 2 84665 212 0.00 2019-08-16 22:11:38 2019-08-16 22:12:20 t 1 2 84668 320 0.00 2019-08-16 22:11:59 2019-08-16 22:22:04 t 1 2 84675 220 0.00 2019-08-16 22:02:29 2019-08-16 22:47:09 t 1 1 84677 263 0.00 2019-08-16 22:47:26 2019-08-16 22:47:26 f 1 1 84693 220 0.00 2019-08-16 22:51:15 2019-08-16 22:51:25 t 1 1 84701 220 0.00 2019-08-16 22:52:52 2019-08-16 22:52:54 t 1 1 84704 288 0.00 2019-08-16 22:53:20 2019-08-16 22:54:25 t 1 2 84705 220 0.00 2019-08-16 23:03:32 2019-08-16 23:03:43 t 1 1 84709 288 0.00 2019-08-16 23:07:57 2019-08-16 23:09:02 t 1 2 84711 220 0.00 2019-08-16 23:12:31 2019-08-16 23:13:37 t 1 2 84717 294 0.00 2019-08-16 22:26:39 2019-08-16 23:27:03 t 1 2 84727 220 0.00 2019-08-16 23:56:52 2019-08-16 23:57:26 t 1 1 84733 220 0.00 2019-08-17 00:18:35 2019-08-17 00:18:43 t 1 1 84740 346 0.00 2019-08-17 00:24:14 2019-08-17 00:34:19 t 1 2 84743 220 0.00 2019-08-17 00:39:48 2019-08-17 00:39:55 t 1 1 84752 220 0.00 2019-08-17 01:11:20 2019-08-17 01:11:32 t 1 1 84753 346 0.00 2019-08-17 00:17:23 2019-08-17 01:13:53 t 1 2 84765 320 0.00 2019-08-17 01:35:00 2019-08-17 01:45:05 t 1 2 84767 220 0.00 2019-08-17 01:54:16 2019-08-17 01:54:24 t 1 1 84769 361 0.00 2019-08-16 23:18:58 2019-08-17 02:12:06 t 1 2 84772 220 0.00 2019-08-17 02:23:36 2019-08-17 02:23:48 t 1 1 84773 220 0.00 2019-08-17 02:34:05 2019-08-17 02:34:13 t 1 1 84789 220 0.00 2019-08-17 04:18:39 2019-08-17 04:18:47 t 1 1 84790 220 0.00 2019-08-17 04:18:55 2019-08-17 04:19:02 t 1 1 84791 220 0.00 2019-08-17 04:19:10 2019-08-17 04:19:17 t 1 1 84792 220 0.00 2019-08-17 04:19:25 2019-08-17 04:19:33 t 1 1 84794 220 0.00 2019-08-17 04:21:35 2019-08-17 04:24:58 t 1 1 84797 220 0.00 2019-08-17 04:50:46 2019-08-17 04:50:55 t 1 1 84798 220 0.00 2019-08-17 05:01:16 2019-08-17 05:01:24 t 1 1 84804 220 0.00 2019-08-17 05:23:21 2019-08-17 05:23:45 t 1 1 84805 220 0.00 2019-08-17 05:34:06 2019-08-17 05:34:14 t 1 1 84807 220 0.00 2019-08-17 05:44:35 2019-08-17 05:44:44 t 1 1 84808 220 0.00 2019-08-17 05:44:51 2019-08-17 05:44:59 t 1 1 84809 220 0.00 2019-08-17 05:45:06 2019-08-17 05:45:07 t 1 1 84810 220 0.00 2019-08-17 05:45:15 2019-08-17 05:45:22 t 1 1 84819 220 0.00 2019-08-17 06:37:50 2019-08-17 06:37:59 t 1 1 84820 220 0.00 2019-08-17 06:38:06 2019-08-17 06:38:15 t 1 1 84836 247 0.00 2019-08-17 08:27:39 2019-08-17 08:29:35 t 1 2 84840 288 0.00 2019-08-17 08:58:15 2019-08-17 08:59:23 t 1 2 84851 308 0.00 2019-08-17 08:23:02 2019-08-17 09:38:08 t 1 2 84852 320 0.00 2019-08-17 09:29:44 2019-08-17 09:39:50 t 1 2 84853 357 0.00 2019-08-17 09:37:43 2019-08-17 09:52:49 t 1 2 84858 304 0.00 2019-08-17 10:16:24 2019-08-17 10:21:24 t 1 2 84868 372 0.00 2019-08-17 10:46:55 2019-08-17 10:48:02 t 1 2 84870 372 0.00 2019-08-17 10:49:04 2019-08-17 10:50:08 t 1 2 84875 218 0.00 2019-08-17 11:14:57 2019-08-17 11:14:57 f 1 2 84877 220 0.00 2019-08-17 11:29:21 2019-08-17 11:30:28 t 1 2 84880 306 0.00 2019-08-17 11:34:35 2019-08-17 11:35:38 t 1 2 84885 357 0.00 2019-08-17 11:51:38 2019-08-17 11:51:45 t 1 2 84886 320 0.00 2019-08-17 11:44:52 2019-08-17 11:54:57 t 1 2 84888 306 0.00 2019-08-17 12:03:43 2019-08-17 12:04:49 t 1 2 84889 320 0.00 2019-08-17 11:57:42 2019-08-17 12:07:47 t 1 2 84890 372 0.00 2019-08-17 12:16:00 2019-08-17 12:17:03 t 1 2 84891 372 0.00 2019-08-17 12:17:22 2019-08-17 12:17:26 t 1 2 84892 372 0.00 2019-08-17 12:17:32 2019-08-17 12:18:35 t 1 2 84910 372 0.00 2019-08-17 12:37:06 2019-08-17 12:38:27 t 1 2 84912 306 0.00 2019-08-17 12:38:38 2019-08-17 12:39:40 t 1 2 84922 306 0.00 2019-08-17 13:34:49 2019-08-17 13:35:55 t 1 2 84925 320 0.00 2019-08-17 13:35:48 2019-08-17 13:45:53 t 1 2 84930 220 0.00 2019-08-17 13:58:38 2019-08-17 13:59:38 t 1 1 84935 220 0.00 2019-08-17 14:01:40 2019-08-17 14:02:29 t 1 1 84937 327 0.00 2019-08-17 13:03:09 2019-08-17 14:03:33 t 1 2 84938 220 0.00 2019-08-17 14:03:02 2019-08-17 14:03:44 t 1 1 84941 220 0.00 2019-08-17 14:04:49 2019-08-17 14:05:24 t 1 1 84944 220 0.00 2019-08-17 14:06:33 2019-08-17 14:07:07 t 1 1 84948 220 0.00 2019-08-17 14:09:04 2019-08-17 14:10:25 t 1 1 84950 372 0.00 2019-08-17 13:59:44 2019-08-17 14:11:19 t 1 2 84953 220 0.00 2019-08-17 14:12:04 2019-08-17 14:13:32 t 1 1 84954 220 0.00 2019-08-17 14:13:32 2019-08-17 14:14:03 t 1 1 84963 220 0.00 2019-08-17 14:21:18 2019-08-17 14:21:59 t 1 1 84967 220 0.00 2019-08-17 14:25:40 2019-08-17 14:30:07 t 1 1 84970 220 0.00 2019-08-17 14:30:06 2019-08-17 14:30:38 t 1 1 84975 220 0.00 2019-08-17 14:31:45 2019-08-17 14:35:32 t 1 1 84978 220 0.00 2019-08-17 14:36:38 2019-08-17 14:37:18 t 1 1 84983 212 0.00 2019-08-17 14:41:31 2019-08-17 14:42:21 t 1 2 84985 220 0.00 2019-08-17 14:42:49 2019-08-17 14:44:51 t 1 1 84992 220 0.00 2019-08-17 14:47:49 2019-08-17 14:48:20 t 1 1 84993 220 0.00 2019-08-17 14:48:20 2019-08-17 14:49:00 t 1 1 84996 220 0.00 2019-08-17 14:50:12 2019-08-17 14:50:48 t 1 1 84997 324 0.00 2019-08-17 14:51:06 2019-08-17 14:51:26 t 1 2 84999 355 0.00 2019-08-17 12:12:01 2019-08-17 14:52:06 t 1 2 85012 306 0.00 2019-08-17 15:07:01 2019-08-17 15:08:04 t 1 2 85016 381 0.00 2019-08-17 12:15:45 2019-08-17 15:20:51 t 1 2 13202 79 0.00 2015-11-24 18:50:01 2015-11-24 18:51:05 t 1 1 85018 327 0.00 2019-08-17 14:42:35 2019-08-17 15:42:40 t 1 2 13205 79 0.00 2015-11-24 19:00:02 2015-11-24 19:01:05 t 1 1 13208 79 0.00 2015-11-24 19:15:01 2015-11-24 19:16:05 t 1 1 85022 367 0.00 2019-08-17 15:55:57 2019-08-17 15:56:23 t 1 2 85025 247 0.00 2019-08-17 16:07:52 2019-08-17 16:09:02 t 1 2 85027 304 0.00 2019-08-17 16:06:26 2019-08-17 16:16:31 t 1 2 85028 212 0.00 2019-08-17 16:17:10 2019-08-17 16:17:35 t 1 2 85034 292 0.00 2019-08-17 17:04:52 2019-08-17 17:05:57 t 1 2 85040 306 0.00 2019-08-17 17:35:34 2019-08-17 17:36:34 t 1 2 85042 306 0.00 2019-08-17 17:37:43 2019-08-17 17:38:49 t 1 2 85206 220 0.00 2019-08-18 07:25:20 2019-08-18 07:33:51 t 1 2 85052 320 0.00 2019-08-17 16:33:49 2019-08-17 18:08:54 t 1 2 85213 306 0.00 2019-08-18 08:21:31 2019-08-18 08:22:31 t 1 2 85061 363 0.00 2019-08-17 16:45:11 2019-08-17 18:30:16 t 1 2 84666 363 0.00 2019-08-16 22:02:42 2019-08-16 22:16:59 t 1 2 84674 320 0.00 2019-08-16 22:29:14 2019-08-16 22:39:20 t 1 2 84680 220 0.00 2019-08-16 22:47:43 2019-08-16 22:47:54 t 1 1 84682 220 0.00 2019-08-16 22:48:04 2019-08-16 22:48:16 t 1 1 84685 220 0.00 2019-08-16 22:48:37 2019-08-16 22:48:48 t 1 1 84687 220 0.00 2019-08-16 22:48:58 2019-08-16 22:49:09 t 1 1 84689 220 0.00 2019-08-16 22:49:19 2019-08-16 22:49:30 t 1 1 84691 324 0.00 2019-08-16 22:01:43 2019-08-16 22:50:02 t 1 2 84696 220 0.00 2019-08-16 22:51:45 2019-08-16 22:51:55 t 1 1 84698 220 0.00 2019-08-16 22:52:05 2019-08-16 22:52:30 t 1 1 84700 220 0.00 2019-08-16 22:52:40 2019-08-16 22:52:48 t 1 1 84707 220 0.00 2019-08-16 23:04:07 2019-08-16 23:05:13 t 1 2 84710 220 0.00 2019-08-16 23:10:37 2019-08-16 23:11:40 t 1 2 84713 220 0.00 2019-08-16 23:14:38 2019-08-16 23:14:39 t 1 1 84724 220 0.00 2019-08-16 23:49:22 2019-08-16 23:50:29 t 1 2 84726 220 0.00 2019-08-16 23:56:02 2019-08-16 23:57:06 t 1 2 84736 220 0.00 2019-08-17 00:23:57 2019-08-17 00:25:00 t 1 2 84741 343 0.00 2019-08-16 21:30:46 2019-08-17 00:35:52 t 1 2 84742 324 0.00 2019-08-17 00:38:51 2019-08-17 00:39:20 t 1 2 84744 212 0.00 2019-08-17 00:45:38 2019-08-17 00:46:03 t 1 2 84746 220 0.00 2019-08-17 00:50:16 2019-08-17 00:50:21 t 1 1 84747 385 0.00 2019-08-16 21:56:58 2019-08-17 00:53:19 t 1 2 84750 324 0.00 2019-08-17 01:00:44 2019-08-17 01:01:21 t 1 2 84771 346 0.00 2019-08-17 01:58:31 2019-08-17 02:20:00 t 1 2 84780 339 0.00 2019-08-17 01:19:13 2019-08-17 03:15:37 t 1 2 84781 220 0.00 2019-08-17 03:15:43 2019-08-17 03:15:44 t 1 1 84782 220 0.00 2019-08-17 03:26:09 2019-08-17 03:26:18 t 1 1 84786 302 0.00 2019-08-17 02:53:01 2019-08-17 03:48:06 t 1 2 84793 324 0.00 2019-08-17 02:08:32 2019-08-17 04:22:18 t 1 2 84795 220 0.00 2019-08-17 04:29:53 2019-08-17 04:30:56 t 1 1 84817 324 0.00 2019-08-17 06:31:41 2019-08-17 06:32:06 t 1 2 84818 220 0.00 2019-08-17 06:37:33 2019-08-17 06:37:51 t 1 1 84821 220 0.00 2019-08-17 06:38:25 2019-08-17 06:40:06 t 1 1 84824 220 0.00 2019-08-17 06:59:21 2019-08-17 06:59:47 t 1 1 84825 294 0.00 2019-08-17 06:07:13 2019-08-17 07:07:36 t 1 2 84829 220 0.00 2019-08-17 07:56:07 2019-08-17 07:57:11 t 1 2 84831 320 0.00 2019-08-17 07:53:44 2019-08-17 08:13:49 t 1 2 84837 320 0.00 2019-08-17 08:36:13 2019-08-17 08:46:19 t 1 2 84845 320 0.00 2019-08-17 08:39:40 2019-08-17 09:09:46 t 1 2 84848 288 0.00 2019-08-17 09:14:52 2019-08-17 09:15:56 t 1 2 84857 324 0.00 2019-08-17 10:11:42 2019-08-17 10:16:04 t 1 2 84860 320 0.00 2019-08-17 10:27:24 2019-08-17 10:30:24 t 1 2 84861 320 0.00 2019-08-17 10:22:55 2019-08-17 10:33:00 t 1 2 84864 372 0.00 2019-08-17 10:40:44 2019-08-17 10:41:50 t 1 2 84866 346 0.00 2019-08-17 09:56:29 2019-08-17 10:46:34 t 1 2 84872 220 0.00 2019-08-17 10:47:49 2019-08-17 10:56:34 t 1 1 84884 288 0.00 2019-08-17 11:49:51 2019-08-17 11:50:56 t 1 2 84887 327 0.00 2019-08-17 11:45:49 2019-08-17 12:01:12 t 1 2 84893 372 0.00 2019-08-17 12:18:54 2019-08-17 12:19:59 t 1 2 84896 349 0.00 2019-08-17 12:21:52 2019-08-17 12:22:59 t 1 2 84897 288 0.00 2019-08-17 12:22:39 2019-08-17 12:23:46 t 1 2 84898 306 0.00 2019-08-17 12:24:31 2019-08-17 12:25:35 t 1 2 84900 306 0.00 2019-08-17 12:27:16 2019-08-17 12:28:21 t 1 2 84901 372 0.00 2019-08-17 12:28:37 2019-08-17 12:28:37 f 1 2 84905 247 0.00 2019-08-17 12:29:37 2019-08-17 12:32:16 t 1 2 84913 372 0.00 2019-08-17 12:47:20 2019-08-17 12:57:25 t 1 2 84916 320 0.00 2019-08-17 12:23:00 2019-08-17 13:08:05 t 1 2 84918 212 0.00 2019-08-17 13:20:31 2019-08-17 13:20:58 t 1 2 84920 306 0.00 2019-08-17 13:26:54 2019-08-17 13:28:02 t 1 2 84921 306 0.00 2019-08-17 13:33:03 2019-08-17 13:34:08 t 1 2 84928 247 0.00 2019-08-17 13:54:45 2019-08-17 13:56:04 t 1 2 84933 220 0.00 2019-08-17 14:00:53 2019-08-17 14:01:05 t 1 1 84936 220 0.00 2019-08-17 14:02:29 2019-08-17 14:03:09 t 1 1 84942 220 0.00 2019-08-17 14:05:23 2019-08-17 14:05:58 t 1 1 84945 220 0.00 2019-08-17 14:07:06 2019-08-17 14:07:40 t 1 1 84949 220 0.00 2019-08-17 14:10:24 2019-08-17 14:10:59 t 1 1 84955 220 0.00 2019-08-17 14:14:03 2019-08-17 14:14:39 t 1 1 84959 220 0.00 2019-08-17 14:15:48 2019-08-17 14:16:26 t 1 1 84965 346 0.00 2019-08-17 14:19:25 2019-08-17 14:25:25 t 1 2 84972 220 0.00 2019-08-17 14:30:38 2019-08-17 14:31:10 t 1 1 84976 220 0.00 2019-08-17 14:35:32 2019-08-17 14:36:06 t 1 1 84979 220 0.00 2019-08-17 14:37:17 2019-08-17 14:37:50 t 1 1 84982 220 0.00 2019-08-17 14:38:23 2019-08-17 14:42:14 t 1 1 84984 220 0.00 2019-08-17 14:42:13 2019-08-17 14:42:50 t 1 1 84987 220 0.00 2019-08-17 14:44:51 2019-08-17 14:45:26 t 1 1 84990 220 0.00 2019-08-17 14:46:39 2019-08-17 14:47:14 t 1 1 85002 220 0.00 2019-08-17 14:52:45 2019-08-17 14:53:28 t 1 1 85003 220 0.00 2019-08-17 14:53:28 2019-08-17 14:54:16 t 1 1 85006 220 0.00 2019-08-17 14:55:37 2019-08-17 14:56:10 t 1 1 85008 375 0.00 2019-08-17 13:39:10 2019-08-17 14:57:14 t 1 2 85011 288 0.00 2019-08-17 15:06:56 2019-08-17 15:08:00 t 1 2 85021 220 0.00 2019-08-17 14:56:45 2019-08-17 15:54:59 t 1 1 85024 320 0.00 2019-08-17 15:54:09 2019-08-17 16:04:14 t 1 2 85032 286 0.00 2019-08-17 16:51:55 2019-08-17 16:51:55 f 1 2 85035 212 0.00 2019-08-17 17:13:09 2019-08-17 17:13:28 t 1 2 85038 220 0.00 2019-08-17 17:21:12 2019-08-17 17:31:55 t 1 1 85043 212 0.00 2019-08-17 17:44:15 2019-08-17 17:44:44 t 1 2 13203 79 0.00 2015-11-24 18:55:01 2015-11-24 18:56:05 t 1 1 13206 79 0.00 2015-11-24 19:05:02 2015-11-24 19:06:05 t 1 1 13209 79 0.00 2015-11-24 19:20:02 2015-11-24 19:21:05 t 1 1 85058 306 0.00 2019-08-17 18:20:22 2019-08-17 18:21:26 t 1 2 85059 220 0.00 2019-08-17 18:22:46 2019-08-17 18:27:07 t 1 1 85063 296 0.00 2019-08-17 18:34:48 2019-08-17 18:37:12 t 1 2 85064 324 0.00 2019-08-17 18:38:45 2019-08-17 18:38:48 t 1 2 85068 324 0.00 2019-08-17 17:56:23 2019-08-17 18:41:28 t 1 2 85071 220 0.00 2019-08-17 18:54:35 2019-08-17 18:57:06 t 1 1 85074 320 0.00 2019-08-17 18:58:41 2019-08-17 19:08:46 t 1 2 85077 357 0.00 2019-08-17 19:24:06 2019-08-17 19:24:10 t 1 2 85080 288 0.00 2019-08-17 19:32:41 2019-08-17 19:33:47 t 1 2 85084 288 0.00 2019-08-17 19:55:20 2019-08-17 19:56:24 t 1 2 85086 320 0.00 2019-08-17 19:54:19 2019-08-17 20:04:25 t 1 2 85092 320 0.00 2019-08-17 20:18:45 2019-08-17 20:28:50 t 1 2 85094 220 0.00 2019-08-17 20:13:10 2019-08-17 20:30:40 t 1 1 85097 320 0.00 2019-08-17 20:34:57 2019-08-17 20:45:02 t 1 2 85103 220 0.00 2019-08-17 21:07:55 2019-08-17 21:10:24 t 1 1 85108 346 0.00 2019-08-17 21:07:44 2019-08-17 21:22:49 t 1 2 85110 379 0.00 2019-08-17 12:58:56 2019-08-17 21:39:01 t 1 2 84671 220 0.00 2019-08-16 22:28:36 2019-08-16 22:28:37 t 1 1 84679 220 0.00 2019-08-16 22:47:32 2019-08-16 22:47:44 t 1 1 84681 220 0.00 2019-08-16 22:47:54 2019-08-16 22:48:05 t 1 1 84683 220 0.00 2019-08-16 22:48:16 2019-08-16 22:48:27 t 1 1 84684 220 0.00 2019-08-16 22:48:27 2019-08-16 22:48:37 t 1 1 84686 220 0.00 2019-08-16 22:48:48 2019-08-16 22:48:58 t 1 1 84688 220 0.00 2019-08-16 22:49:09 2019-08-16 22:49:20 t 1 1 84695 220 0.00 2019-08-16 22:51:34 2019-08-16 22:51:45 t 1 1 84697 220 0.00 2019-08-16 22:51:54 2019-08-16 22:52:05 t 1 1 84702 304 0.00 2019-08-16 22:37:50 2019-08-16 22:52:55 t 1 2 84708 220 0.00 2019-08-16 23:06:33 2019-08-16 23:07:36 t 1 2 84714 220 0.00 2019-08-16 23:14:48 2019-08-16 23:17:24 t 1 1 84718 306 0.00 2019-08-16 23:26:29 2019-08-16 23:27:30 t 1 2 84719 220 0.00 2019-08-16 23:35:53 2019-08-16 23:36:02 t 1 1 84720 247 0.00 2019-08-16 23:38:43 2019-08-16 23:39:33 t 1 2 84721 220 0.00 2019-08-16 23:46:23 2019-08-16 23:46:31 t 1 1 84722 220 0.00 2019-08-16 23:48:36 2019-08-16 23:49:15 t 1 2 84728 220 0.00 2019-08-16 23:57:36 2019-08-16 23:57:45 t 1 1 84732 355 0.00 2019-08-16 23:56:23 2019-08-17 00:16:29 t 1 2 84734 212 0.00 2019-08-17 00:20:01 2019-08-17 00:20:12 t 1 2 84737 324 0.00 2019-08-16 23:35:57 2019-08-17 00:25:58 t 1 2 84738 220 0.00 2019-08-17 00:29:04 2019-08-17 00:29:12 t 1 1 84739 220 0.00 2019-08-17 00:29:19 2019-08-17 00:29:27 t 1 1 84745 288 0.00 2019-08-17 00:46:44 2019-08-17 00:47:50 t 1 2 84749 220 0.00 2019-08-17 01:00:42 2019-08-17 01:00:59 t 1 1 84751 372 0.00 2019-08-17 00:48:40 2019-08-17 01:04:51 t 1 2 84754 212 0.00 2019-08-17 01:13:44 2019-08-17 01:13:59 t 1 2 84755 220 0.00 2019-08-17 01:21:49 2019-08-17 01:21:56 t 1 1 84756 220 0.00 2019-08-17 01:22:04 2019-08-17 01:22:12 t 1 1 84760 379 0.00 2019-08-17 00:22:17 2019-08-17 01:37:22 t 1 2 84762 220 0.00 2019-08-17 01:43:31 2019-08-17 01:43:39 t 1 1 84763 220 0.00 2019-08-17 01:43:47 2019-08-17 01:43:55 t 1 1 84768 220 0.00 2019-08-17 02:02:40 2019-08-17 02:02:57 t 1 1 84770 220 0.00 2019-08-17 02:13:08 2019-08-17 02:13:16 t 1 1 84774 220 0.00 2019-08-17 02:44:33 2019-08-17 02:44:41 t 1 1 84775 379 0.00 2019-08-17 01:41:01 2019-08-17 02:51:06 t 1 2 84776 220 0.00 2019-08-17 02:51:11 2019-08-17 02:51:22 t 1 1 84777 220 0.00 2019-08-17 03:01:40 2019-08-17 03:01:50 t 1 1 84778 220 0.00 2019-08-17 03:05:00 2019-08-17 03:05:20 t 1 1 84779 220 0.00 2019-08-17 03:15:28 2019-08-17 03:15:35 t 1 1 84783 363 0.00 2019-08-16 22:41:32 2019-08-17 03:36:37 t 1 2 84784 220 0.00 2019-08-17 03:36:39 2019-08-17 03:36:46 t 1 1 84785 220 0.00 2019-08-17 03:47:08 2019-08-17 03:47:16 t 1 1 84796 381 0.00 2019-08-16 23:32:05 2019-08-17 04:42:10 t 1 2 84799 220 0.00 2019-08-17 05:11:46 2019-08-17 05:11:58 t 1 1 84800 220 0.00 2019-08-17 05:22:15 2019-08-17 05:22:29 t 1 1 84811 220 0.00 2019-08-17 05:55:44 2019-08-17 05:55:51 t 1 1 84812 220 0.00 2019-08-17 06:06:12 2019-08-17 06:06:25 t 1 1 84813 220 0.00 2019-08-17 06:16:41 2019-08-17 06:16:50 t 1 1 84814 220 0.00 2019-08-17 06:16:57 2019-08-17 06:16:59 t 1 1 84815 220 0.00 2019-08-17 06:27:21 2019-08-17 06:27:30 t 1 1 84823 220 0.00 2019-08-17 06:40:06 2019-08-17 06:59:21 t 1 1 84827 320 0.00 2019-08-17 07:27:55 2019-08-17 07:33:51 t 1 2 84832 320 0.00 2019-08-17 08:08:39 2019-08-17 08:18:44 t 1 2 84834 288 0.00 2019-08-17 08:26:13 2019-08-17 08:27:18 t 1 2 84835 306 0.00 2019-08-17 08:27:22 2019-08-17 08:28:26 t 1 2 84838 288 0.00 2019-08-17 08:45:44 2019-08-17 08:46:50 t 1 2 84841 220 0.00 2019-08-17 07:03:58 2019-08-17 09:00:12 t 1 1 84846 288 0.00 2019-08-17 09:09:32 2019-08-17 09:10:38 t 1 2 84850 288 0.00 2019-08-17 09:33:46 2019-08-17 09:34:50 t 1 2 84859 320 0.00 2019-08-17 10:16:38 2019-08-17 10:26:43 t 1 2 84867 372 0.00 2019-08-17 10:45:39 2019-08-17 10:46:44 t 1 2 84869 220 0.00 2019-08-17 10:47:03 2019-08-17 10:48:10 t 1 2 84874 302 0.00 2019-08-17 10:41:23 2019-08-17 11:14:24 t 1 2 84881 306 0.00 2019-08-17 11:36:11 2019-08-17 11:37:12 t 1 2 84882 296 0.00 2019-08-17 11:42:53 2019-08-17 11:47:29 t 1 2 84894 217 0.00 2019-08-17 12:20:13 2019-08-17 12:20:13 f 1 2 84899 212 0.00 2019-08-17 12:25:33 2019-08-17 12:26:05 t 1 2 84902 372 0.00 2019-08-17 12:29:02 2019-08-17 12:29:02 f 1 2 84904 320 0.00 2019-08-17 12:16:26 2019-08-17 12:31:31 t 1 2 84906 372 0.00 2019-08-17 12:29:19 2019-08-17 12:32:49 t 1 2 84907 372 0.00 2019-08-17 12:26:38 2019-08-17 12:36:43 t 1 2 84911 346 0.00 2019-08-17 12:18:15 2019-08-17 12:38:28 t 1 2 84915 349 0.00 2019-08-17 13:06:26 2019-08-17 13:07:30 t 1 2 13201 79 0.00 2015-11-24 18:45:02 2015-11-24 18:46:05 t 1 1 13207 79 0.00 2015-11-24 19:10:01 2015-11-24 19:11:05 t 1 1 13211 79 0.00 2015-11-24 19:25:01 2015-11-24 19:26:05 t 1 1 13213 79 0.00 2015-11-24 19:30:01 2015-11-24 19:31:05 t 1 1 84919 220 0.00 2019-08-17 09:03:26 2019-08-17 13:22:22 t 1 1 84923 220 0.00 2019-08-17 13:36:14 2019-08-17 13:43:04 t 1 1 84924 220 0.00 2019-08-17 13:43:15 2019-08-17 13:44:18 t 1 2 84926 357 0.00 2019-08-17 11:53:46 2019-08-17 13:48:52 t 1 2 84927 220 0.00 2019-08-17 13:53:17 2019-08-17 13:54:21 t 1 2 84929 220 0.00 2019-08-17 13:22:47 2019-08-17 13:58:39 t 1 1 84931 220 0.00 2019-08-17 13:59:38 2019-08-17 14:00:18 t 1 1 84943 220 0.00 2019-08-17 14:05:58 2019-08-17 14:06:33 t 1 1 84946 220 0.00 2019-08-17 14:07:39 2019-08-17 14:08:17 t 1 1 84947 220 0.00 2019-08-17 14:08:17 2019-08-17 14:09:05 t 1 1 84952 220 0.00 2019-08-17 14:11:33 2019-08-17 14:12:04 t 1 1 84956 220 0.00 2019-08-17 14:14:38 2019-08-17 14:15:16 t 1 1 84958 220 0.00 2019-08-17 14:15:16 2019-08-17 14:15:48 t 1 1 84961 220 0.00 2019-08-17 14:17:04 2019-08-17 14:17:40 t 1 1 84962 220 0.00 2019-08-17 14:17:39 2019-08-17 14:21:18 t 1 1 84968 212 0.00 2019-08-17 14:30:03 2019-08-17 14:30:13 t 1 2 84969 311 0.00 2019-08-17 14:00:28 2019-08-17 14:30:34 t 1 2 84971 212 0.00 2019-08-17 14:30:25 2019-08-17 14:30:50 t 1 2 84980 220 0.00 2019-08-17 14:37:50 2019-08-17 14:38:23 t 1 1 84981 212 0.00 2019-08-17 14:40:19 2019-08-17 14:41:16 t 1 2 84986 320 0.00 2019-08-17 14:20:04 2019-08-17 14:45:09 t 1 2 84989 220 0.00 2019-08-17 14:45:59 2019-08-17 14:46:39 t 1 1 84995 220 0.00 2019-08-17 14:49:34 2019-08-17 14:50:13 t 1 1 85001 220 0.00 2019-08-17 14:52:11 2019-08-17 14:52:53 t 1 1 85005 220 0.00 2019-08-17 14:54:51 2019-08-17 14:55:37 t 1 1 85014 306 0.00 2019-08-17 15:15:31 2019-08-17 15:16:34 t 1 2 85015 296 0.00 2019-08-17 15:14:59 2019-08-17 15:19:23 t 1 2 85019 361 0.00 2019-08-17 11:09:01 2019-08-17 15:42:44 t 1 2 85020 311 0.00 2019-08-17 15:17:20 2019-08-17 15:52:25 t 1 2 85004 220 0.00 2019-08-17 14:54:16 2019-08-17 14:54:51 t 1 1 85007 220 0.00 2019-08-17 14:56:10 2019-08-17 14:56:46 t 1 1 85009 288 0.00 2019-08-17 15:04:56 2019-08-17 15:06:00 t 1 2 85010 306 0.00 2019-08-17 15:06:25 2019-08-17 15:06:30 t 1 2 85013 288 0.00 2019-08-17 15:08:16 2019-08-17 15:09:22 t 1 2 85017 220 0.00 2019-08-17 14:04:43 2019-08-17 15:34:48 t 1 2 85023 320 0.00 2019-08-17 14:42:38 2019-08-17 15:57:43 t 1 2 85026 288 0.00 2019-08-17 16:14:29 2019-08-17 16:15:36 t 1 2 85030 288 0.00 2019-08-17 16:24:05 2019-08-17 16:25:10 t 1 2 85031 355 0.00 2019-08-17 16:11:23 2019-08-17 16:46:28 t 1 2 85037 294 0.00 2019-08-17 16:16:52 2019-08-17 17:17:15 t 1 2 85039 306 0.00 2019-08-17 17:33:15 2019-08-17 17:34:18 t 1 2 85057 294 0.00 2019-08-17 17:18:38 2019-08-17 18:19:18 t 1 2 85062 288 0.00 2019-08-17 18:35:53 2019-08-17 18:36:58 t 1 2 85067 324 0.00 2019-08-17 18:38:50 2019-08-17 18:40:57 t 1 2 85072 327 0.00 2019-08-17 18:06:45 2019-08-17 19:06:48 t 1 2 85083 367 0.00 2019-08-17 19:54:01 2019-08-17 19:55:19 t 1 2 85099 367 0.00 2019-08-17 20:38:14 2019-08-17 20:46:02 t 1 2 85100 220 0.00 2019-08-17 21:00:41 2019-08-17 21:06:35 t 1 1 85102 320 0.00 2019-08-17 20:57:23 2019-08-17 21:07:28 t 1 2 85109 292 0.00 2019-08-17 21:24:40 2019-08-17 21:25:25 t 1 2 85114 220 0.00 2019-08-17 21:45:56 2019-08-17 21:46:29 t 1 1 85120 220 0.00 2019-08-17 21:49:14 2019-08-17 21:49:49 t 1 1 85122 220 0.00 2019-08-17 21:49:49 2019-08-17 21:50:52 t 1 1 85128 220 0.00 2019-08-17 21:53:42 2019-08-17 21:53:45 t 1 1 85139 220 0.00 2019-08-17 21:56:59 2019-08-17 21:57:33 t 1 1 85146 220 0.00 2019-08-17 22:06:25 2019-08-17 22:07:01 t 1 1 85148 220 0.00 2019-08-17 22:04:13 2019-08-17 22:08:30 t 1 2 85152 306 0.00 2019-08-17 22:14:56 2019-08-17 22:16:05 t 1 2 85159 346 0.00 2019-08-17 21:57:36 2019-08-17 22:44:03 t 1 2 85162 220 0.00 2019-08-17 22:49:31 2019-08-17 22:53:02 t 1 1 85165 308 0.00 2019-08-17 22:18:36 2019-08-17 23:08:42 t 1 2 85188 346 0.00 2019-08-18 00:12:10 2019-08-18 00:50:45 t 1 2 85190 320 0.00 2019-08-17 22:51:10 2019-08-18 01:31:15 t 1 2 85196 363 0.00 2019-08-17 22:20:12 2019-08-18 02:30:17 t 1 2 85198 324 0.00 2019-08-18 03:18:39 2019-08-18 03:19:47 t 1 2 85209 306 0.00 2019-08-18 08:13:27 2019-08-18 08:14:32 t 1 2 85212 306 0.00 2019-08-18 08:19:27 2019-08-18 08:20:27 t 1 2 85216 320 0.00 2019-08-18 08:16:06 2019-08-18 08:26:11 t 1 2 85217 288 0.00 2019-08-18 08:28:19 2019-08-18 08:29:23 t 1 2 85218 306 0.00 2019-08-18 08:31:40 2019-08-18 08:32:43 t 1 2 85227 306 0.00 2019-08-18 09:28:02 2019-08-18 09:29:05 t 1 2 85232 346 0.00 2019-08-18 09:39:05 2019-08-18 09:39:26 t 1 2 85234 220 0.00 2019-08-18 09:26:56 2019-08-18 09:42:05 t 1 1 85236 304 0.00 2019-08-18 09:39:23 2019-08-18 09:49:28 t 1 2 85239 306 0.00 2019-08-18 09:49:41 2019-08-18 09:50:49 t 1 2 85240 220 0.00 2019-08-18 09:42:04 2019-08-18 10:07:22 t 1 1 85244 304 0.00 2019-08-18 10:22:33 2019-08-18 10:32:38 t 1 2 85245 346 0.00 2019-08-18 10:26:08 2019-08-18 10:35:27 t 1 2 85258 288 0.00 2019-08-18 11:20:48 2019-08-18 11:21:55 t 1 2 85259 220 0.00 2019-08-18 11:08:58 2019-08-18 11:28:04 t 1 1 85266 306 0.00 2019-08-18 11:55:19 2019-08-18 11:56:24 t 1 2 85271 331 0.00 2019-08-18 11:51:32 2019-08-18 12:06:39 t 1 2 85276 320 0.00 2019-08-18 12:09:40 2019-08-18 12:09:40 f 1 2 85278 220 0.00 2019-08-18 12:09:28 2019-08-18 12:11:15 t 1 1 85287 220 0.00 2019-08-18 12:11:20 2019-08-18 12:20:14 t 1 1 85292 220 0.00 2019-08-18 12:24:18 2019-08-18 12:29:21 t 1 1 85296 220 0.00 2019-08-18 12:29:20 2019-08-18 12:44:12 t 1 1 85305 220 0.00 2019-08-18 12:47:46 2019-08-18 12:54:55 t 1 1 85306 355 0.00 2019-08-18 12:55:37 2019-08-18 12:56:03 t 1 2 85324 318 0.00 2019-08-18 13:25:38 2019-08-18 13:26:50 t 1 2 85328 296 0.00 2019-08-18 13:33:33 2019-08-18 13:36:49 t 1 2 85332 320 0.00 2019-08-18 13:37:50 2019-08-18 13:47:55 t 1 2 85333 379 0.00 2019-08-18 09:58:15 2019-08-18 13:52:21 t 1 2 85334 379 0.00 2019-08-18 13:52:27 2019-08-18 13:52:36 t 1 2 85337 306 0.00 2019-08-18 14:01:08 2019-08-18 14:02:12 t 1 2 85349 306 0.00 2019-08-18 14:46:39 2019-08-18 14:47:43 t 1 2 85352 324 0.00 2019-08-18 13:41:38 2019-08-18 14:51:41 t 1 2 85353 220 0.00 2019-08-18 14:39:05 2019-08-18 14:54:10 t 1 1 85357 220 0.00 2019-08-18 14:09:12 2019-08-18 15:08:49 t 1 1 85362 220 0.00 2019-08-18 15:12:45 2019-08-18 15:13:20 t 1 1 85363 220 0.00 2019-08-18 15:13:18 2019-08-18 15:13:55 t 1 1 85367 220 0.00 2019-08-18 15:15:03 2019-08-18 15:15:37 t 1 1 85376 355 0.00 2019-08-18 15:24:07 2019-08-18 15:25:12 t 1 2 85378 220 0.00 2019-08-18 15:36:01 2019-08-18 15:36:34 t 1 1 85381 220 0.00 2019-08-18 15:37:09 2019-08-18 15:37:47 t 1 1 85384 220 0.00 2019-08-18 15:38:52 2019-08-18 15:39:15 t 1 1 85388 385 0.00 2019-08-18 15:16:12 2019-08-18 15:52:36 t 1 2 85389 288 0.00 2019-08-18 15:55:30 2019-08-18 15:55:33 t 1 2 85397 292 0.00 2019-08-18 16:02:47 2019-08-18 16:03:52 t 1 2 85398 375 0.00 2019-08-18 15:18:00 2019-08-18 16:04:36 t 1 2 85400 292 0.00 2019-08-18 16:05:45 2019-08-18 16:06:49 t 1 2 85407 346 0.00 2019-08-18 16:19:11 2019-08-18 16:35:04 t 1 2 85415 220 0.00 2019-08-18 16:57:09 2019-08-18 16:57:22 t 1 1 85426 220 0.00 2019-08-18 16:53:39 2019-08-18 17:17:34 t 1 1 85434 220 0.00 2019-08-18 16:59:01 2019-08-18 17:39:37 t 1 1 85435 324 0.00 2019-08-18 16:23:39 2019-08-18 17:40:05 t 1 2 85437 361 0.00 2019-08-18 15:00:04 2019-08-18 17:40:55 t 1 2 85443 306 0.00 2019-08-18 17:48:19 2019-08-18 17:49:26 t 1 2 85446 324 0.00 2019-08-18 17:50:24 2019-08-18 18:00:55 t 1 2 85449 288 0.00 2019-08-18 18:08:54 2019-08-18 18:10:00 t 1 2 85451 304 0.00 2019-08-18 18:07:30 2019-08-18 18:17:35 t 1 2 85458 220 0.00 2019-08-18 17:38:58 2019-08-18 18:31:30 t 1 2 85459 306 0.00 2019-08-18 18:34:11 2019-08-18 18:35:13 t 1 2 85461 318 0.00 2019-08-18 18:30:42 2019-08-18 18:38:14 t 1 2 85466 306 0.00 2019-08-18 18:52:51 2019-08-18 18:53:55 t 1 2 85470 296 0.00 2019-08-18 18:56:05 2019-08-18 19:03:25 t 1 2 85473 375 0.00 2019-08-18 18:26:17 2019-08-18 19:11:22 t 1 2 85477 220 0.00 2019-08-18 19:23:45 2019-08-18 19:24:37 t 1 1 85480 220 0.00 2019-08-18 19:05:18 2019-08-18 19:44:48 t 1 1 85481 349 0.00 2019-08-18 18:19:40 2019-08-18 19:54:45 t 1 2 85484 367 0.00 2019-08-18 19:57:01 2019-08-18 20:02:21 t 1 2 85489 288 0.00 2019-08-18 20:12:15 2019-08-18 20:13:22 t 1 2 85490 288 0.00 2019-08-18 20:15:19 2019-08-18 20:16:24 t 1 2 85491 324 0.00 2019-08-18 20:10:22 2019-08-18 20:22:02 t 1 2 85493 367 0.00 2019-08-18 19:52:55 2019-08-18 20:24:20 t 1 2 85494 292 0.00 2019-08-18 20:40:44 2019-08-18 20:41:48 t 1 2 85029 306 0.00 2019-08-17 16:20:22 2019-08-17 16:21:26 t 1 2 85033 367 0.00 2019-08-17 15:57:12 2019-08-17 16:55:52 t 1 2 85036 367 0.00 2019-08-17 17:05:07 2019-08-17 17:17:09 t 1 2 85041 324 0.00 2019-08-17 17:37:00 2019-08-17 17:37:33 t 1 2 85210 218 0.00 2019-08-18 08:19:29 2019-08-18 08:19:29 f 1 2 85214 306 0.00 2019-08-18 08:23:31 2019-08-18 08:24:38 t 1 2 85047 343 0.00 2019-08-17 17:39:46 2019-08-17 17:59:51 t 1 2 85223 306 0.00 2019-08-18 09:14:56 2019-08-18 09:16:00 t 1 2 85049 288 0.00 2019-08-17 18:04:36 2019-08-17 18:05:42 t 1 2 85225 288 0.00 2019-08-18 09:25:27 2019-08-18 09:26:30 t 1 2 85231 306 0.00 2019-08-18 09:37:55 2019-08-18 09:38:58 t 1 2 85056 346 0.00 2019-08-17 17:42:49 2019-08-17 18:19:02 t 1 2 85066 304 0.00 2019-08-17 18:30:51 2019-08-17 18:40:56 t 1 2 85076 361 0.00 2019-08-17 17:08:30 2019-08-17 19:23:36 t 1 2 85081 320 0.00 2019-08-17 19:37:11 2019-08-17 19:47:17 t 1 2 85085 292 0.00 2019-08-17 20:00:11 2019-08-17 20:01:17 t 1 2 85087 306 0.00 2019-08-17 20:05:26 2019-08-17 20:06:29 t 1 2 85088 372 0.00 2019-08-17 20:07:24 2019-08-17 20:09:19 t 1 2 85091 304 0.00 2019-08-17 20:13:22 2019-08-17 20:28:27 t 1 2 85093 324 0.00 2019-08-17 20:28:34 2019-08-17 20:30:34 t 1 2 85095 372 0.00 2019-08-17 20:11:59 2019-08-17 20:35:54 t 1 2 85096 324 0.00 2019-08-17 20:41:33 2019-08-17 20:44:16 t 1 2 85098 363 0.00 2019-08-17 18:25:44 2019-08-17 20:45:49 t 1 2 85101 220 0.00 2019-08-17 21:06:35 2019-08-17 21:07:10 t 1 1 85105 247 0.00 2019-08-17 21:13:19 2019-08-17 21:16:03 t 1 2 85106 292 0.00 2019-08-17 21:16:19 2019-08-17 21:16:33 t 1 2 85112 220 0.00 2019-08-17 21:07:10 2019-08-17 21:45:22 t 1 1 85115 220 0.00 2019-08-17 21:46:28 2019-08-17 21:47:01 t 1 1 85117 220 0.00 2019-08-17 21:47:35 2019-08-17 21:48:08 t 1 1 85118 220 0.00 2019-08-17 21:48:08 2019-08-17 21:48:40 t 1 1 85125 220 0.00 2019-08-17 21:51:58 2019-08-17 21:52:35 t 1 1 85131 220 0.00 2019-08-17 21:54:40 2019-08-17 21:54:50 t 1 1 85135 220 0.00 2019-08-17 21:55:49 2019-08-17 21:56:00 t 1 1 85137 220 0.00 2019-08-17 21:56:24 2019-08-17 21:56:36 t 1 1 85142 220 0.00 2019-08-17 22:04:39 2019-08-17 22:05:15 t 1 1 85144 372 0.00 2019-08-17 22:04:32 2019-08-17 22:06:03 t 1 2 85151 306 0.00 2019-08-17 22:11:13 2019-08-17 22:12:20 t 1 2 85153 320 0.00 2019-08-17 21:55:25 2019-08-17 22:20:30 t 1 2 85155 312 0.00 2019-08-17 22:21:59 2019-08-17 22:23:02 t 1 2 85158 212 0.00 2019-08-17 22:35:41 2019-08-17 22:38:33 t 1 2 85166 212 0.00 2019-08-17 23:22:26 2019-08-17 23:22:41 t 1 2 85171 324 0.00 2019-08-17 23:24:30 2019-08-17 23:25:29 t 1 2 85172 212 0.00 2019-08-17 23:26:29 2019-08-17 23:31:39 t 1 2 85176 324 0.00 2019-08-17 23:55:56 2019-08-17 23:57:39 t 1 2 85178 220 0.00 2019-08-17 23:55:19 2019-08-18 00:05:25 t 1 2 85180 220 0.00 2019-08-18 00:05:12 2019-08-18 00:07:45 t 1 1 85181 355 0.00 2019-08-18 00:10:30 2019-08-18 00:11:34 t 1 2 85182 355 0.00 2019-08-18 00:13:26 2019-08-18 00:14:32 t 1 2 85187 355 0.00 2019-08-18 00:30:41 2019-08-18 00:40:46 t 1 2 85193 343 0.00 2019-08-18 01:35:20 2019-08-18 01:36:24 t 1 2 85233 306 0.00 2019-08-18 09:39:47 2019-08-18 09:40:49 t 1 2 85237 324 0.00 2019-08-18 09:47:17 2019-08-18 09:49:36 t 1 2 85241 306 0.00 2019-08-18 10:07:27 2019-08-18 10:08:36 t 1 2 85249 320 0.00 2019-08-18 10:47:03 2019-08-18 10:57:08 t 1 2 85252 220 0.00 2019-08-18 10:57:37 2019-08-18 11:01:52 t 1 1 85253 375 0.00 2019-08-18 09:36:06 2019-08-18 11:06:11 t 1 2 85260 220 0.00 2019-08-18 11:28:10 2019-08-18 11:41:38 t 1 1 85261 346 0.00 2019-08-18 11:13:51 2019-08-18 11:48:56 t 1 2 85272 367 0.00 2019-08-18 12:06:13 2019-08-18 12:07:10 t 1 2 85279 324 0.00 2019-08-18 12:06:42 2019-08-18 12:12:08 t 1 2 85284 320 0.00 2019-08-18 12:03:51 2019-08-18 12:13:56 t 1 2 85288 324 0.00 2019-08-18 12:20:11 2019-08-18 12:21:09 t 1 2 85297 372 0.00 2019-08-18 12:42:48 2019-08-18 12:45:13 t 1 2 85300 212 0.00 2019-08-18 12:49:35 2019-08-18 12:49:40 t 1 2 85303 355 0.00 2019-08-18 12:53:16 2019-08-18 12:54:28 t 1 2 85307 355 0.00 2019-08-18 12:56:19 2019-08-18 12:57:21 t 1 2 85308 357 0.00 2019-08-18 11:03:24 2019-08-18 12:58:29 t 1 2 85310 367 0.00 2019-08-18 12:58:24 2019-08-18 12:58:41 t 1 2 85315 355 0.00 2019-08-18 13:04:49 2019-08-18 13:05:57 t 1 2 85317 220 0.00 2019-08-18 13:01:02 2019-08-18 13:08:08 t 1 1 85326 212 0.00 2019-08-18 13:27:25 2019-08-18 13:27:39 t 1 2 85327 212 0.00 2019-08-18 13:27:57 2019-08-18 13:28:15 t 1 2 85329 367 0.00 2019-08-18 13:27:20 2019-08-18 13:38:01 t 1 2 85331 247 0.00 2019-08-18 13:44:27 2019-08-18 13:46:11 t 1 2 85336 272 0.00 2019-08-18 13:54:50 2019-08-18 13:54:50 f 1 2 85338 339 0.00 2019-08-18 13:30:25 2019-08-18 14:02:12 t 1 2 85339 367 0.00 2019-08-18 13:31:21 2019-08-18 14:03:56 t 1 2 85340 304 0.00 2019-08-18 13:51:43 2019-08-18 14:06:48 t 1 2 85341 324 0.00 2019-08-18 14:20:15 2019-08-18 14:23:51 t 1 2 85343 324 0.00 2019-08-18 14:27:39 2019-08-18 14:27:56 t 1 2 85345 212 0.00 2019-08-18 14:32:35 2019-08-18 14:33:06 t 1 2 85350 346 0.00 2019-08-18 14:47:20 2019-08-18 14:48:22 t 1 2 85351 355 0.00 2019-08-18 13:55:00 2019-08-18 14:50:05 t 1 2 85355 346 0.00 2019-08-18 14:57:24 2019-08-18 14:57:39 t 1 2 85359 306 0.00 2019-08-18 15:10:35 2019-08-18 15:11:37 t 1 2 85365 220 0.00 2019-08-18 15:14:27 2019-08-18 15:15:03 t 1 1 85369 220 0.00 2019-08-18 15:16:10 2019-08-18 15:16:47 t 1 1 85374 220 0.00 2019-08-18 15:18:44 2019-08-18 15:19:20 t 1 1 85380 220 0.00 2019-08-18 15:03:26 2019-08-18 15:37:41 t 1 1 85385 220 0.00 2019-08-18 15:39:15 2019-08-18 15:39:25 t 1 1 85387 306 0.00 2019-08-18 15:45:53 2019-08-18 15:46:54 t 1 2 85390 288 0.00 2019-08-18 15:55:36 2019-08-18 15:56:40 t 1 2 85393 355 0.00 2019-08-18 16:00:04 2019-08-18 16:01:08 t 1 2 85394 292 0.00 2019-08-18 16:01:29 2019-08-18 16:01:35 t 1 2 85403 220 0.00 2019-08-18 15:59:03 2019-08-18 16:24:08 t 1 2 85412 220 0.00 2019-08-18 16:55:18 2019-08-18 16:55:40 t 1 1 85417 220 0.00 2019-08-18 16:57:38 2019-08-18 16:57:49 t 1 1 85419 220 0.00 2019-08-18 16:58:04 2019-08-18 16:58:15 t 1 1 85422 220 0.00 2019-08-18 16:58:39 2019-08-18 16:59:01 t 1 1 85424 306 0.00 2019-08-18 17:12:14 2019-08-18 17:13:21 t 1 2 85427 367 0.00 2019-08-18 17:10:41 2019-08-18 17:20:33 t 1 2 85429 220 0.00 2019-08-18 17:17:41 2019-08-18 17:22:16 t 1 1 85430 220 0.00 2019-08-18 16:27:59 2019-08-18 17:28:23 t 1 2 85431 346 0.00 2019-08-18 17:28:28 2019-08-18 17:28:28 f 1 2 85432 346 0.00 2019-08-18 17:28:46 2019-08-18 17:28:46 f 1 2 85440 346 0.00 2019-08-18 17:30:17 2019-08-18 17:47:47 t 1 2 85441 306 0.00 2019-08-18 17:46:58 2019-08-18 17:48:00 t 1 2 85065 306 0.00 2019-08-17 18:39:43 2019-08-17 18:40:48 t 1 2 85069 306 0.00 2019-08-17 18:44:15 2019-08-17 18:45:22 t 1 2 85070 320 0.00 2019-08-17 18:37:52 2019-08-17 18:47:57 t 1 2 85073 288 0.00 2019-08-17 19:06:44 2019-08-17 19:07:47 t 1 2 85075 346 0.00 2019-08-17 18:19:44 2019-08-17 19:19:48 t 1 2 85078 357 0.00 2019-08-17 19:25:13 2019-08-17 19:25:20 t 1 2 85079 212 0.00 2019-08-17 19:32:55 2019-08-17 19:33:22 t 1 2 85082 292 0.00 2019-08-17 19:52:04 2019-08-17 19:53:08 t 1 2 85089 324 0.00 2019-08-17 19:37:19 2019-08-17 20:17:14 t 1 2 85090 306 0.00 2019-08-17 20:23:10 2019-08-17 20:24:12 t 1 2 85104 355 0.00 2019-08-17 19:15:29 2019-08-17 21:10:35 t 1 2 85107 361 0.00 2019-08-17 19:22:15 2019-08-17 21:20:38 t 1 2 85111 294 0.00 2019-08-17 20:43:09 2019-08-17 21:43:33 t 1 2 85113 220 0.00 2019-08-17 21:45:22 2019-08-17 21:45:56 t 1 1 85123 220 0.00 2019-08-17 21:50:51 2019-08-17 21:51:27 t 1 1 85126 220 0.00 2019-08-17 21:52:34 2019-08-17 21:53:09 t 1 1 85127 220 0.00 2019-08-17 21:53:09 2019-08-17 21:53:42 t 1 1 85129 220 0.00 2019-08-17 21:53:44 2019-08-17 21:54:15 t 1 1 85133 220 0.00 2019-08-17 21:55:13 2019-08-17 21:55:25 t 1 1 85138 220 0.00 2019-08-17 21:56:36 2019-08-17 21:56:59 t 1 1 85140 220 0.00 2019-08-17 21:58:10 2019-08-17 22:04:33 t 1 2 85143 220 0.00 2019-08-17 22:05:15 2019-08-17 22:05:48 t 1 1 85147 220 0.00 2019-08-17 22:07:00 2019-08-17 22:07:36 t 1 1 85150 292 0.00 2019-08-17 22:10:51 2019-08-17 22:11:54 t 1 2 85157 288 0.00 2019-08-17 22:30:48 2019-08-17 22:31:55 t 1 2 85160 294 0.00 2019-08-17 21:48:06 2019-08-17 22:48:29 t 1 2 85170 212 0.00 2019-08-17 23:25:06 2019-08-17 23:25:22 t 1 2 85173 324 0.00 2019-08-17 23:33:20 2019-08-17 23:33:41 t 1 2 85174 346 0.00 2019-08-17 23:05:57 2019-08-17 23:46:56 t 1 2 85184 324 0.00 2019-08-18 00:27:14 2019-08-18 00:27:19 t 1 2 85189 372 0.00 2019-08-18 00:52:28 2019-08-18 00:53:14 t 1 2 85192 346 0.00 2019-08-18 01:00:51 2019-08-18 01:35:57 t 1 2 85197 343 0.00 2019-08-18 02:22:32 2019-08-18 02:30:44 t 1 2 85211 288 0.00 2019-08-18 08:18:51 2019-08-18 08:19:58 t 1 2 85219 346 0.00 2019-08-18 08:08:53 2019-08-18 08:33:58 t 1 2 85221 202 0.00 2019-08-18 08:57:38 2019-08-18 08:57:38 f 1 2 85222 306 0.00 2019-08-18 09:13:32 2019-08-18 09:14:36 t 1 2 85224 304 0.00 2019-08-18 09:19:23 2019-08-18 09:24:30 t 1 2 85235 306 0.00 2019-08-18 09:42:56 2019-08-18 09:44:04 t 1 2 85246 220 0.00 2019-08-18 10:16:21 2019-08-18 10:36:54 t 1 1 85247 212 0.00 2019-08-18 10:49:33 2019-08-18 10:50:04 t 1 2 85248 304 0.00 2019-08-18 10:42:47 2019-08-18 10:52:52 t 1 2 85251 327 0.00 2019-08-18 10:17:43 2019-08-18 10:58:06 t 1 2 85255 220 0.00 2019-08-18 11:06:27 2019-08-18 11:07:36 t 1 1 85262 331 0.00 2019-08-18 11:51:14 2019-08-18 11:51:19 t 1 2 85265 306 0.00 2019-08-18 11:53:53 2019-08-18 11:54:56 t 1 2 85269 220 0.00 2019-08-18 11:54:15 2019-08-18 12:04:41 t 1 1 85270 220 0.00 2019-08-18 12:04:47 2019-08-18 12:05:14 t 1 1 85274 367 0.00 2019-08-18 12:07:42 2019-08-18 12:08:19 t 1 2 85281 320 0.00 2019-08-18 12:02:20 2019-08-18 12:12:25 t 1 2 85283 324 0.00 2019-08-18 12:12:48 2019-08-18 12:13:14 t 1 2 85289 324 0.00 2019-08-18 12:13:27 2019-08-18 12:23:34 t 1 2 85293 320 0.00 2019-08-18 12:21:37 2019-08-18 12:31:10 t 1 2 85294 367 0.00 2019-08-18 12:24:18 2019-08-18 12:34:23 t 1 2 85295 324 0.00 2019-08-18 12:33:03 2019-08-18 12:37:25 t 1 2 85298 220 0.00 2019-08-18 12:44:18 2019-08-18 12:45:52 t 1 1 85302 355 0.00 2019-08-18 12:53:38 2019-08-18 12:53:38 t 1 2 85304 355 0.00 2019-08-18 12:53:55 2019-08-18 12:54:51 t 1 2 85313 220 0.00 2019-08-18 12:59:11 2019-08-18 13:00:56 t 1 1 85314 355 0.00 2019-08-18 13:00:19 2019-08-18 13:01:17 t 1 2 85316 296 0.00 2019-08-18 13:05:14 2019-08-18 13:06:38 t 1 2 85319 355 0.00 2019-08-18 13:02:17 2019-08-18 13:12:23 t 1 2 85325 355 0.00 2019-08-18 13:07:29 2019-08-18 13:27:34 t 1 2 85330 324 0.00 2019-08-18 13:07:54 2019-08-18 13:45:06 t 1 2 85335 355 0.00 2019-08-18 13:54:46 2019-08-18 13:54:50 t 1 2 85344 324 0.00 2019-08-18 14:29:04 2019-08-18 14:30:44 t 1 2 85348 346 0.00 2019-08-18 14:45:25 2019-08-18 14:46:27 t 1 2 85356 220 0.00 2019-08-18 14:54:10 2019-08-18 15:03:26 t 1 1 85358 320 0.00 2019-08-18 13:51:17 2019-08-18 15:11:22 t 1 2 85360 220 0.00 2019-08-18 15:08:49 2019-08-18 15:12:11 t 1 1 85368 220 0.00 2019-08-18 15:15:36 2019-08-18 15:16:10 t 1 1 85370 220 0.00 2019-08-18 15:16:47 2019-08-18 15:17:22 t 1 1 85373 220 0.00 2019-08-18 15:18:32 2019-08-18 15:18:44 t 1 1 85377 220 0.00 2019-08-18 15:19:19 2019-08-18 15:36:01 t 1 1 85379 220 0.00 2019-08-18 15:36:34 2019-08-18 15:37:10 t 1 1 85386 304 0.00 2019-08-18 15:36:25 2019-08-18 15:46:30 t 1 2 85391 355 0.00 2019-08-18 15:56:36 2019-08-18 15:57:42 t 1 2 85401 292 0.00 2019-08-18 16:08:30 2019-08-18 16:09:31 t 1 2 85404 220 0.00 2019-08-18 15:37:46 2019-08-18 16:24:57 t 1 1 85405 292 0.00 2019-08-18 16:28:27 2019-08-18 16:29:32 t 1 2 85408 306 0.00 2019-08-18 16:49:07 2019-08-18 16:50:11 t 1 2 85410 220 0.00 2019-08-18 15:43:09 2019-08-18 16:53:39 t 1 1 85413 220 0.00 2019-08-18 16:55:39 2019-08-18 16:55:50 t 1 1 85416 220 0.00 2019-08-18 16:57:21 2019-08-18 16:57:38 t 1 1 85418 220 0.00 2019-08-18 16:57:49 2019-08-18 16:58:05 t 1 1 85420 220 0.00 2019-08-18 16:58:15 2019-08-18 16:58:29 t 1 1 85421 220 0.00 2019-08-18 16:58:28 2019-08-18 16:58:39 t 1 1 85423 327 0.00 2019-08-18 16:46:04 2019-08-18 17:07:19 t 1 2 85428 296 0.00 2019-08-18 17:17:46 2019-08-18 17:21:10 t 1 2 85433 212 0.00 2019-08-18 17:37:12 2019-08-18 17:37:30 t 1 2 85436 218 0.00 2019-08-18 17:40:45 2019-08-18 17:40:45 f 1 2 85439 306 0.00 2019-08-18 17:45:27 2019-08-18 17:46:31 t 1 2 85442 288 0.00 2019-08-18 17:47:59 2019-08-18 17:49:02 t 1 2 85453 320 0.00 2019-08-18 18:10:08 2019-08-18 18:20:13 t 1 2 85456 220 0.00 2019-08-18 17:39:55 2019-08-18 18:26:29 t 1 1 85457 375 0.00 2019-08-18 18:10:26 2019-08-18 18:30:31 t 1 2 85464 306 0.00 2019-08-18 18:49:21 2019-08-18 18:50:26 t 1 2 85468 213 0.00 2019-08-18 18:58:26 2019-08-18 18:59:28 t 1 2 85472 212 0.00 2019-08-18 19:04:10 2019-08-18 19:04:52 t 1 2 85478 343 0.00 2019-08-18 18:14:25 2019-08-18 19:29:30 t 1 2 85482 346 0.00 2019-08-18 18:26:36 2019-08-18 19:56:42 t 1 2 85485 288 0.00 2019-08-18 20:03:29 2019-08-18 20:04:37 t 1 2 85486 288 0.00 2019-08-18 20:06:38 2019-08-18 20:07:40 t 1 2 85492 306 0.00 2019-08-18 20:22:52 2019-08-18 20:23:58 t 1 2 85496 320 0.00 2019-08-18 20:45:47 2019-08-18 20:55:52 t 1 2 85500 220 0.00 2019-08-18 21:23:16 2019-08-18 21:23:54 t 1 1 85506 220 0.00 2019-08-18 21:38:02 2019-08-18 21:45:07 t 1 2 85116 220 0.00 2019-08-17 21:47:00 2019-08-17 21:47:35 t 1 1 85119 220 0.00 2019-08-17 21:48:39 2019-08-17 21:49:15 t 1 1 85121 296 0.00 2019-08-17 21:37:41 2019-08-17 21:50:05 t 1 2 85124 220 0.00 2019-08-17 21:51:26 2019-08-17 21:51:59 t 1 1 85130 220 0.00 2019-08-17 21:54:15 2019-08-17 21:54:40 t 1 1 85132 220 0.00 2019-08-17 21:54:50 2019-08-17 21:55:14 t 1 1 85134 220 0.00 2019-08-17 21:55:25 2019-08-17 21:55:49 t 1 1 85136 220 0.00 2019-08-17 21:56:00 2019-08-17 21:56:24 t 1 1 85141 220 0.00 2019-08-17 21:57:33 2019-08-17 22:04:40 t 1 1 85145 220 0.00 2019-08-17 22:05:48 2019-08-17 22:06:25 t 1 1 85149 220 0.00 2019-08-17 22:08:55 2019-08-17 22:10:08 t 1 1 85154 312 0.00 2019-08-17 22:20:28 2019-08-17 22:21:35 t 1 2 85156 312 0.00 2019-08-17 22:23:24 2019-08-17 22:24:30 t 1 2 85161 220 0.00 2019-08-17 22:07:36 2019-08-17 22:49:31 t 1 1 85163 212 0.00 2019-08-17 23:03:09 2019-08-17 23:03:58 t 1 2 85164 220 0.00 2019-08-17 22:53:02 2019-08-17 23:07:38 t 1 1 85167 212 0.00 2019-08-17 23:23:10 2019-08-17 23:23:54 t 1 2 85168 212 0.00 2019-08-17 23:24:19 2019-08-17 23:24:21 t 1 2 85169 247 0.00 2019-08-17 23:22:22 2019-08-17 23:25:20 t 1 2 85175 381 0.00 2019-08-17 22:47:27 2019-08-17 23:52:32 t 1 2 85177 346 0.00 2019-08-17 23:57:51 2019-08-18 00:05:00 t 1 2 85179 288 0.00 2019-08-18 00:06:15 2019-08-18 00:07:20 t 1 2 85183 355 0.00 2019-08-18 00:15:14 2019-08-18 00:16:18 t 1 2 85185 355 0.00 2019-08-18 00:30:16 2019-08-18 00:30:33 t 1 2 85186 324 0.00 2019-08-18 00:27:25 2019-08-18 00:37:30 t 1 2 85191 212 0.00 2019-08-18 01:34:59 2019-08-18 01:35:39 t 1 2 85194 343 0.00 2019-08-18 01:37:29 2019-08-18 01:38:15 t 1 2 85195 343 0.00 2019-08-18 02:18:06 2019-08-18 02:18:26 t 1 2 85215 288 0.00 2019-08-18 08:24:21 2019-08-18 08:25:23 t 1 2 85220 379 0.00 2019-08-18 08:42:51 2019-08-18 08:46:45 t 1 2 85226 212 0.00 2019-08-18 09:27:25 2019-08-18 09:27:49 t 1 2 85228 306 0.00 2019-08-18 09:30:29 2019-08-18 09:31:32 t 1 2 85229 306 0.00 2019-08-18 09:33:34 2019-08-18 09:34:38 t 1 2 85230 324 0.00 2019-08-18 09:31:52 2019-08-18 09:37:05 t 1 2 85238 346 0.00 2019-08-18 09:39:56 2019-08-18 09:50:01 t 1 2 85242 324 0.00 2019-08-18 10:02:41 2019-08-18 10:11:12 t 1 2 85243 220 0.00 2019-08-18 08:08:21 2019-08-18 10:20:19 t 1 1 85250 220 0.00 2019-08-18 10:37:00 2019-08-18 10:57:32 t 1 1 85254 220 0.00 2019-08-18 11:02:19 2019-08-18 11:06:22 t 1 1 85256 220 0.00 2019-08-18 11:07:53 2019-08-18 11:08:52 t 1 1 85257 302 0.00 2019-08-18 09:47:02 2019-08-18 11:17:07 t 1 2 85263 306 0.00 2019-08-18 11:53:44 2019-08-18 11:53:47 t 1 2 85264 220 0.00 2019-08-18 11:48:44 2019-08-18 11:54:10 t 1 1 85267 333 0.00 2019-08-18 11:42:45 2019-08-18 11:56:39 t 1 2 85268 320 0.00 2019-08-18 11:53:09 2019-08-18 12:03:14 t 1 2 85273 367 0.00 2019-08-18 12:07:02 2019-08-18 12:07:16 t 1 2 85275 220 0.00 2019-08-18 12:05:20 2019-08-18 12:09:22 t 1 1 85277 320 0.00 2019-08-18 12:10:19 2019-08-18 12:10:19 f 1 2 85280 288 0.00 2019-08-18 12:02:13 2019-08-18 12:12:18 t 1 2 85282 320 0.00 2019-08-18 12:13:09 2019-08-18 12:13:09 f 1 2 85285 320 0.00 2019-08-18 12:12:55 2019-08-18 12:14:28 t 1 2 85286 324 0.00 2019-08-18 12:18:15 2019-08-18 12:20:00 t 1 2 85290 220 0.00 2019-08-18 12:20:20 2019-08-18 12:24:12 t 1 1 85291 324 0.00 2019-08-18 12:25:17 2019-08-18 12:26:23 t 1 2 85299 247 0.00 2019-08-18 12:47:38 2019-08-18 12:48:07 t 1 2 85301 212 0.00 2019-08-18 12:49:48 2019-08-18 12:51:06 t 1 2 85309 220 0.00 2019-08-18 12:55:03 2019-08-18 12:58:33 t 1 1 85311 355 0.00 2019-08-18 12:58:03 2019-08-18 12:59:10 t 1 2 85312 355 0.00 2019-08-18 12:59:55 2019-08-18 12:59:57 t 1 2 85318 318 0.00 2019-08-18 12:16:46 2019-08-18 13:11:51 t 1 2 85320 220 0.00 2019-08-18 13:08:13 2019-08-18 13:16:50 t 1 1 85321 220 0.00 2019-08-18 13:17:00 2019-08-18 13:24:54 t 1 1 85322 318 0.00 2019-08-18 13:24:25 2019-08-18 13:25:09 t 1 2 85323 318 0.00 2019-08-18 13:25:12 2019-08-18 13:25:15 t 1 2 85342 324 0.00 2019-08-18 14:24:41 2019-08-18 14:27:21 t 1 2 85346 220 0.00 2019-08-18 13:25:01 2019-08-18 14:39:05 t 1 1 85347 346 0.00 2019-08-18 14:43:45 2019-08-18 14:44:50 t 1 2 85354 346 0.00 2019-08-18 14:55:13 2019-08-18 14:55:35 t 1 2 85361 220 0.00 2019-08-18 15:12:11 2019-08-18 15:12:46 t 1 1 85364 220 0.00 2019-08-18 15:13:55 2019-08-18 15:14:28 t 1 1 85366 304 0.00 2019-08-18 15:05:11 2019-08-18 15:15:16 t 1 2 85371 220 0.00 2019-08-18 15:17:22 2019-08-18 15:17:57 t 1 1 85372 220 0.00 2019-08-18 15:17:57 2019-08-18 15:18:04 t 1 1 85375 212 0.00 2019-08-18 15:23:42 2019-08-18 15:24:25 t 1 2 85382 220 0.00 2019-08-18 15:37:47 2019-08-18 15:38:21 t 1 1 85383 220 0.00 2019-08-18 15:38:21 2019-08-18 15:38:52 t 1 1 85392 220 0.00 2019-08-18 15:39:30 2019-08-18 15:58:53 t 1 2 85395 324 0.00 2019-08-18 16:01:49 2019-08-18 16:02:38 t 1 2 85396 212 0.00 2019-08-18 16:02:32 2019-08-18 16:02:57 t 1 2 85399 247 0.00 2019-08-18 16:03:39 2019-08-18 16:05:13 t 1 2 85402 320 0.00 2019-08-18 16:04:25 2019-08-18 16:14:30 t 1 2 85406 220 0.00 2019-08-18 16:27:47 2019-08-18 16:33:56 t 1 2 85409 320 0.00 2019-08-18 16:42:16 2019-08-18 16:52:22 t 1 2 85411 220 0.00 2019-08-18 16:26:13 2019-08-18 16:55:19 t 1 1 85414 220 0.00 2019-08-18 16:55:50 2019-08-18 16:57:10 t 1 1 85425 379 0.00 2019-08-18 13:52:38 2019-08-18 17:16:06 t 1 2 85438 320 0.00 2019-08-18 17:25:53 2019-08-18 17:45:58 t 1 2 85444 324 0.00 2019-08-18 17:39:48 2019-08-18 17:50:14 t 1 2 85452 247 0.00 2019-08-18 18:19:18 2019-08-18 18:20:01 t 1 2 85455 363 0.00 2019-08-18 18:21:47 2019-08-18 18:21:53 t 1 2 85460 306 0.00 2019-08-18 18:36:02 2019-08-18 18:37:06 t 1 2 85462 363 0.00 2019-08-18 18:22:12 2019-08-18 18:47:17 t 1 2 85467 306 0.00 2019-08-18 18:54:45 2019-08-18 18:55:51 t 1 2 85474 302 0.00 2019-08-18 19:03:56 2019-08-18 19:19:02 t 1 2 85475 320 0.00 2019-08-18 19:12:06 2019-08-18 19:22:11 t 1 2 85476 220 0.00 2019-08-18 18:40:50 2019-08-18 19:23:40 t 1 1 85488 212 0.00 2019-08-18 20:11:43 2019-08-18 20:12:35 t 1 2 85497 375 0.00 2019-08-18 20:33:15 2019-08-18 20:58:20 t 1 2 85498 212 0.00 2019-08-18 21:03:20 2019-08-18 21:04:05 t 1 2 85503 367 0.00 2019-08-18 21:06:11 2019-08-18 21:35:38 t 1 2 85505 288 0.00 2019-08-18 21:39:58 2019-08-18 21:41:02 t 1 2 85509 220 0.00 2019-08-18 21:45:14 2019-08-18 21:46:21 t 1 1 85515 272 0.00 2019-08-18 22:01:10 2019-08-18 22:01:10 f 1 2 85516 220 0.00 2019-08-18 21:47:30 2019-08-18 22:07:24 t 1 1 85518 220 0.00 2019-08-18 22:07:29 2019-08-18 22:10:33 t 1 1 85519 324 0.00 2019-08-18 21:08:53 2019-08-18 22:17:24 t 1 2 85521 220 0.00 2019-08-18 22:10:38 2019-08-18 22:21:49 t 1 1 85445 306 0.00 2019-08-18 17:54:28 2019-08-18 17:55:34 t 1 2 85447 324 0.00 2019-08-18 17:26:52 2019-08-18 18:03:44 t 1 2 85448 320 0.00 2019-08-18 17:57:04 2019-08-18 18:07:09 t 1 2 85450 306 0.00 2019-08-18 18:12:37 2019-08-18 18:13:40 t 1 2 85454 288 0.00 2019-08-18 18:19:34 2019-08-18 18:20:39 t 1 2 85463 367 0.00 2019-08-18 18:45:29 2019-08-18 18:49:29 t 1 2 85465 306 0.00 2019-08-18 18:51:21 2019-08-18 18:52:26 t 1 2 85469 213 0.00 2019-08-18 19:00:29 2019-08-18 19:01:31 t 1 2 85471 320 0.00 2019-08-18 18:34:22 2019-08-18 19:04:27 t 1 2 85479 357 0.00 2019-08-18 16:44:50 2019-08-18 19:40:09 t 1 2 85483 361 0.00 2019-08-18 18:26:01 2019-08-18 19:57:07 t 1 2 85487 288 0.00 2019-08-18 20:08:26 2019-08-18 20:09:30 t 1 2 85501 306 0.00 2019-08-18 21:30:00 2019-08-18 21:31:00 t 1 2 85511 306 0.00 2019-08-18 21:53:35 2019-08-18 21:54:40 t 1 2 85517 220 0.00 2019-08-18 21:48:04 2019-08-18 22:08:01 t 1 1 85526 327 0.00 2019-08-18 21:27:08 2019-08-18 22:27:32 t 1 2 85530 320 0.00 2019-08-18 22:35:58 2019-08-18 22:46:03 t 1 2 85535 306 0.00 2019-08-18 23:06:31 2019-08-18 23:07:36 t 1 2 85537 306 0.00 2019-08-18 23:09:32 2019-08-18 23:10:39 t 1 2 85541 306 0.00 2019-08-18 23:18:34 2019-08-18 23:19:36 t 1 2 85543 306 0.00 2019-08-18 23:21:54 2019-08-18 23:22:58 t 1 2 85547 306 0.00 2019-08-18 23:26:59 2019-08-18 23:28:02 t 1 2 85552 320 0.00 2019-08-18 23:43:15 2019-08-18 23:53:20 t 1 2 85555 361 0.00 2019-08-18 23:33:15 2019-08-19 00:05:48 t 1 2 85561 212 0.00 2019-08-19 00:27:52 2019-08-19 00:28:38 t 1 2 85562 288 0.00 2019-08-19 00:50:56 2019-08-19 00:52:01 t 1 2 85566 288 0.00 2019-08-19 00:59:40 2019-08-19 01:00:45 t 1 2 85568 288 0.00 2019-08-19 01:03:03 2019-08-19 01:04:06 t 1 2 85573 288 0.00 2019-08-19 01:07:35 2019-08-19 01:08:39 t 1 2 85577 318 0.00 2019-08-19 01:14:29 2019-08-19 01:27:09 t 1 2 85581 363 0.00 2019-08-19 00:59:55 2019-08-19 01:45:01 t 1 2 85589 355 0.00 2019-08-18 23:45:21 2019-08-19 04:40:26 t 1 2 85590 379 0.00 2019-08-19 01:59:15 2019-08-19 05:19:20 t 1 2 85601 320 0.00 2019-08-19 07:53:37 2019-08-19 08:08:42 t 1 2 85604 306 0.00 2019-08-19 08:19:33 2019-08-19 08:20:39 t 1 2 85605 320 0.00 2019-08-19 08:11:41 2019-08-19 08:26:46 t 1 2 85608 320 0.00 2019-08-19 08:24:58 2019-08-19 08:35:03 t 1 2 85618 324 0.00 2019-08-19 09:31:41 2019-08-19 09:32:35 t 1 2 85627 294 0.00 2019-08-19 09:39:06 2019-08-19 09:41:29 t 1 2 85631 212 0.00 2019-08-19 09:59:53 2019-08-19 10:01:24 t 1 2 85634 220 0.00 2019-08-19 09:29:44 2019-08-19 10:16:23 t 1 1 85644 288 0.00 2019-08-19 10:59:10 2019-08-19 11:00:13 t 1 2 85646 367 0.00 2019-08-19 10:57:14 2019-08-19 11:02:48 t 1 2 85654 220 0.00 2019-08-19 11:24:25 2019-08-19 11:24:57 t 1 1 85658 220 0.00 2019-08-19 11:26:05 2019-08-19 11:26:38 t 1 1 85664 220 0.00 2019-08-19 11:29:21 2019-08-19 11:29:57 t 1 1 85671 220 0.00 2019-08-19 11:32:37 2019-08-19 11:33:12 t 1 1 85672 220 0.00 2019-08-19 11:33:12 2019-08-19 11:33:45 t 1 1 85677 220 0.00 2019-08-19 11:36:02 2019-08-19 11:36:37 t 1 1 85679 302 0.00 2019-08-19 11:02:08 2019-08-19 11:37:13 t 1 2 85683 220 0.00 2019-08-19 11:39:32 2019-08-19 11:40:04 t 1 1 85688 220 0.00 2019-08-19 11:42:23 2019-08-19 11:42:57 t 1 1 85696 220 0.00 2019-08-19 11:46:15 2019-08-19 11:47:27 t 1 2 85698 288 0.00 2019-08-19 11:47:06 2019-08-19 11:48:09 t 1 2 85699 220 0.00 2019-08-19 11:47:49 2019-08-19 11:48:52 t 1 1 85704 220 0.00 2019-08-19 11:50:35 2019-08-19 11:51:37 t 1 1 85709 220 0.00 2019-08-19 11:53:58 2019-08-19 11:54:31 t 1 1 85711 220 0.00 2019-08-19 11:54:31 2019-08-19 11:55:05 t 1 1 85713 220 0.00 2019-08-19 11:55:05 2019-08-19 11:55:39 t 1 1 85716 220 0.00 2019-08-19 11:56:13 2019-08-19 11:56:49 t 1 1 85720 324 0.00 2019-08-19 11:55:48 2019-08-19 11:58:08 t 1 2 85722 320 0.00 2019-08-19 11:43:48 2019-08-19 11:58:53 t 1 2 85724 220 0.00 2019-08-19 11:58:57 2019-08-19 11:59:30 t 1 1 85726 220 0.00 2019-08-19 11:59:29 2019-08-19 12:00:08 t 1 1 85738 220 0.00 2019-08-19 12:06:43 2019-08-19 12:07:14 t 1 1 85741 220 0.00 2019-08-19 12:08:29 2019-08-19 12:09:06 t 1 1 85745 220 0.00 2019-08-19 12:10:13 2019-08-19 12:10:46 t 1 1 85747 220 0.00 2019-08-19 12:11:55 2019-08-19 12:13:31 t 1 1 85748 320 0.00 2019-08-19 12:05:15 2019-08-19 12:15:20 t 1 2 85749 220 0.00 2019-08-19 12:13:30 2019-08-19 12:18:15 t 1 1 85751 355 0.00 2019-08-19 10:29:04 2019-08-19 12:19:09 t 1 2 85755 351 0.00 2019-08-19 12:37:22 2019-08-19 12:39:06 t 1 2 85760 320 0.00 2019-08-19 12:44:14 2019-08-19 12:54:19 t 1 2 85763 220 0.00 2019-08-19 13:08:03 2019-08-19 13:09:25 t 1 1 85764 306 0.00 2019-08-19 13:13:09 2019-08-19 13:14:13 t 1 2 85772 220 0.00 2019-08-19 13:24:35 2019-08-19 13:24:47 t 1 1 85774 220 0.00 2019-08-19 13:24:59 2019-08-19 13:25:10 t 1 1 85776 220 0.00 2019-08-19 13:25:21 2019-08-19 13:25:33 t 1 1 85783 220 0.00 2019-08-19 13:26:44 2019-08-19 13:26:57 t 1 1 85786 367 0.00 2019-08-19 13:23:27 2019-08-19 13:37:47 t 1 2 85788 355 0.00 2019-08-19 12:44:44 2019-08-19 13:49:50 t 1 2 85798 220 0.00 2019-08-19 14:04:23 2019-08-19 14:04:55 t 1 1 85807 220 0.00 2019-08-19 14:08:05 2019-08-19 14:08:10 t 1 1 85808 220 0.00 2019-08-19 14:08:10 2019-08-19 14:08:46 t 1 1 85815 220 0.00 2019-08-19 14:11:35 2019-08-19 14:12:08 t 1 1 85818 220 0.00 2019-08-19 14:13:12 2019-08-19 14:13:47 t 1 1 85832 220 0.00 2019-08-19 14:19:48 2019-08-19 14:23:27 t 1 1 85833 220 0.00 2019-08-19 14:23:27 2019-08-19 14:24:00 t 1 1 85838 220 0.00 2019-08-19 14:27:07 2019-08-19 14:27:45 t 1 1 85843 220 0.00 2019-08-19 14:29:31 2019-08-19 14:30:03 t 1 1 85854 220 0.00 2019-08-19 14:58:58 2019-08-19 14:59:34 t 1 1 85857 220 0.00 2019-08-19 15:00:38 2019-08-19 15:01:32 t 1 1 85860 220 0.00 2019-08-19 15:02:42 2019-08-19 15:03:15 t 1 1 85866 220 0.00 2019-08-19 15:05:40 2019-08-19 15:06:14 t 1 1 85869 220 0.00 2019-08-19 15:07:26 2019-08-19 15:08:02 t 1 1 85874 220 0.00 2019-08-19 15:09:45 2019-08-19 15:10:18 t 1 1 85877 220 0.00 2019-08-19 15:11:33 2019-08-19 15:12:09 t 1 1 85881 220 0.00 2019-08-19 15:15:04 2019-08-19 15:15:36 t 1 1 85886 220 0.00 2019-08-19 15:17:48 2019-08-19 15:18:34 t 1 1 85887 220 0.00 2019-08-19 15:18:34 2019-08-19 15:19:08 t 1 1 85888 220 0.00 2019-08-19 15:19:08 2019-08-19 15:20:48 t 1 1 85892 220 0.00 2019-08-19 15:21:59 2019-08-19 15:22:33 t 1 1 85896 220 0.00 2019-08-19 15:24:44 2019-08-19 15:25:20 t 1 1 85900 220 0.00 2019-08-19 15:28:06 2019-08-19 15:28:41 t 1 1 85903 220 0.00 2019-08-19 15:29:51 2019-08-19 15:31:08 t 1 1 85905 220 0.00 2019-08-19 15:31:44 2019-08-19 15:32:17 t 1 1 85907 212 0.00 2019-08-19 15:31:14 2019-08-19 15:33:19 t 1 2 85495 373 0.00 2019-08-18 20:46:41 2019-08-18 20:47:42 t 1 2 85499 212 0.00 2019-08-18 21:12:37 2019-08-18 21:14:30 t 1 2 85502 245 0.00 2019-08-18 21:35:32 2019-08-18 21:35:32 f 1 2 85504 220 0.00 2019-08-18 21:24:57 2019-08-18 21:36:45 t 1 2 85507 220 0.00 2019-08-18 21:24:03 2019-08-18 21:45:09 t 1 1 85508 247 0.00 2019-08-18 21:43:52 2019-08-18 21:45:22 t 1 2 85510 212 0.00 2019-08-18 21:50:34 2019-08-18 21:50:57 t 1 2 85514 373 0.00 2019-08-18 22:00:29 2019-08-18 22:00:51 t 1 2 85520 220 0.00 2019-08-18 22:11:22 2019-08-18 22:21:29 t 1 2 85522 220 0.00 2019-08-18 22:21:51 2019-08-18 22:22:09 t 1 1 85524 355 0.00 2019-08-18 18:28:05 2019-08-18 22:23:10 t 1 2 85527 220 0.00 2019-08-18 22:16:08 2019-08-18 22:36:13 t 1 2 85529 288 0.00 2019-08-18 22:42:28 2019-08-18 22:43:33 t 1 2 85532 355 0.00 2019-08-18 22:24:24 2019-08-18 22:59:29 t 1 2 85534 308 0.00 2019-08-18 10:47:07 2019-08-18 23:07:12 t 1 2 85546 212 0.00 2019-08-18 23:27:23 2019-08-18 23:27:50 t 1 2 85548 306 0.00 2019-08-18 23:28:35 2019-08-18 23:29:38 t 1 2 85549 346 0.00 2019-08-18 23:12:37 2019-08-18 23:32:43 t 1 2 85550 355 0.00 2019-08-18 22:58:32 2019-08-18 23:38:38 t 1 2 85554 320 0.00 2019-08-18 23:53:13 2019-08-19 00:03:18 t 1 2 85556 324 0.00 2019-08-19 00:09:43 2019-08-19 00:16:39 t 1 2 85557 372 0.00 2019-08-19 00:08:13 2019-08-19 00:22:44 t 1 2 85563 288 0.00 2019-08-19 00:53:09 2019-08-19 00:54:14 t 1 2 85571 372 0.00 2019-08-19 01:04:42 2019-08-19 01:06:26 t 1 2 85575 288 0.00 2019-08-19 01:11:00 2019-08-19 01:12:04 t 1 2 85579 212 0.00 2019-08-19 01:42:51 2019-08-19 01:43:15 t 1 2 85584 346 0.00 2019-08-19 00:57:41 2019-08-19 02:12:46 t 1 2 85586 339 0.00 2019-08-19 01:22:47 2019-08-19 02:22:10 t 1 2 85591 212 0.00 2019-08-19 06:05:23 2019-08-19 06:24:11 t 1 2 85593 220 0.00 2019-08-19 06:13:18 2019-08-19 06:40:16 t 1 1 85596 346 0.00 2019-08-18 21:17:33 2019-08-19 07:33:51 t 1 2 85600 324 0.00 2019-08-19 07:50:22 2019-08-19 07:53:38 t 1 2 85610 304 0.00 2019-08-19 08:29:16 2019-08-19 08:44:22 t 1 2 85611 306 0.00 2019-08-19 09:04:27 2019-08-19 09:05:28 t 1 2 85613 320 0.00 2019-08-19 09:03:44 2019-08-19 09:13:49 t 1 2 85614 324 0.00 2019-08-19 09:23:22 2019-08-19 09:24:25 t 1 2 85622 288 0.00 2019-08-19 09:35:37 2019-08-19 09:36:39 t 1 2 85636 302 0.00 2019-08-19 10:16:42 2019-08-19 10:26:47 t 1 2 85640 220 0.00 2019-08-19 10:38:22 2019-08-19 10:46:25 t 1 1 85643 318 0.00 2019-08-19 10:52:01 2019-08-19 10:56:42 t 1 2 85649 220 0.00 2019-08-19 11:05:41 2019-08-19 11:13:04 t 1 2 85651 373 0.00 2019-08-19 11:17:54 2019-08-19 11:18:54 t 1 2 85653 220 0.00 2019-08-19 10:49:57 2019-08-19 11:24:26 t 1 1 85655 220 0.00 2019-08-19 11:24:57 2019-08-19 11:25:32 t 1 1 85657 220 0.00 2019-08-19 11:25:32 2019-08-19 11:26:05 t 1 1 85660 220 0.00 2019-08-19 11:27:11 2019-08-19 11:27:46 t 1 1 85663 220 0.00 2019-08-19 11:28:49 2019-08-19 11:29:22 t 1 1 85666 220 0.00 2019-08-19 11:30:28 2019-08-19 11:31:02 t 1 1 85668 367 0.00 2019-08-19 11:06:32 2019-08-19 11:31:59 t 1 2 85674 220 0.00 2019-08-19 11:34:20 2019-08-19 11:34:56 t 1 1 85682 220 0.00 2019-08-19 11:38:57 2019-08-19 11:39:32 t 1 1 85685 220 0.00 2019-08-19 11:40:38 2019-08-19 11:41:13 t 1 1 85687 220 0.00 2019-08-19 11:41:48 2019-08-19 11:42:23 t 1 1 85691 220 0.00 2019-08-19 11:43:31 2019-08-19 11:44:56 t 1 1 85701 220 0.00 2019-08-19 11:49:27 2019-08-19 11:50:01 t 1 1 85703 375 0.00 2019-08-19 11:41:29 2019-08-19 11:51:34 t 1 2 85706 220 0.00 2019-08-19 11:52:09 2019-08-19 11:52:44 t 1 1 85712 339 0.00 2019-08-19 11:44:06 2019-08-19 11:55:30 t 1 2 85714 220 0.00 2019-08-19 11:55:39 2019-08-19 11:56:14 t 1 1 85725 220 0.00 2019-08-19 11:56:42 2019-08-19 11:59:36 t 1 2 85728 220 0.00 2019-08-19 12:00:42 2019-08-19 12:01:58 t 1 1 85731 220 0.00 2019-08-19 12:03:22 2019-08-19 12:03:57 t 1 1 85735 220 0.00 2019-08-19 12:05:05 2019-08-19 12:05:38 t 1 1 85740 220 0.00 2019-08-19 12:07:54 2019-08-19 12:08:29 t 1 1 85744 220 0.00 2019-08-19 12:09:37 2019-08-19 12:10:13 t 1 1 85750 318 0.00 2019-08-19 12:03:26 2019-08-19 12:18:32 t 1 2 85754 367 0.00 2019-08-19 12:01:34 2019-08-19 12:37:42 t 1 2 85757 220 0.00 2019-08-19 12:19:18 2019-08-19 12:48:27 t 1 1 85758 355 0.00 2019-08-19 12:19:50 2019-08-19 12:49:56 t 1 2 85767 220 0.00 2019-08-19 13:09:47 2019-08-19 13:23:46 t 1 2 85769 220 0.00 2019-08-19 13:24:01 2019-08-19 13:24:13 t 1 1 85771 220 0.00 2019-08-19 13:24:23 2019-08-19 13:24:36 t 1 1 85778 220 0.00 2019-08-19 13:25:44 2019-08-19 13:25:55 t 1 1 85780 220 0.00 2019-08-19 13:26:11 2019-08-19 13:26:23 t 1 1 85787 375 0.00 2019-08-19 12:42:47 2019-08-19 13:37:52 t 1 2 85790 381 0.00 2019-08-19 13:49:07 2019-08-19 13:51:10 t 1 2 85794 220 0.00 2019-08-19 13:28:02 2019-08-19 14:02:42 t 1 1 85797 220 0.00 2019-08-19 14:03:50 2019-08-19 14:04:23 t 1 1 85799 346 0.00 2019-08-19 13:00:20 2019-08-19 14:05:25 t 1 2 85803 220 0.00 2019-08-19 14:06:04 2019-08-19 14:06:38 t 1 1 85805 220 0.00 2019-08-19 14:07:13 2019-08-19 14:07:36 t 1 1 85810 220 0.00 2019-08-19 14:09:17 2019-08-19 14:09:54 t 1 1 85812 311 0.00 2019-08-19 13:46:47 2019-08-19 14:10:50 t 1 2 85814 220 0.00 2019-08-19 14:11:01 2019-08-19 14:11:35 t 1 1 85817 220 0.00 2019-08-19 14:12:40 2019-08-19 14:13:12 t 1 1 85819 220 0.00 2019-08-19 14:13:47 2019-08-19 14:14:22 t 1 1 85821 220 0.00 2019-08-19 14:14:22 2019-08-19 14:14:53 t 1 1 85826 220 0.00 2019-08-19 14:19:13 2019-08-19 14:19:48 t 1 1 85829 381 0.00 2019-08-19 14:21:45 2019-08-19 14:21:45 f 1 2 85831 381 0.00 2019-08-19 14:22:06 2019-08-19 14:22:06 f 1 2 85834 381 0.00 2019-08-19 14:14:05 2019-08-19 14:24:10 t 1 2 85836 220 0.00 2019-08-19 14:24:32 2019-08-19 14:25:07 t 1 1 85837 220 0.00 2019-08-19 14:25:06 2019-08-19 14:27:07 t 1 1 85839 381 0.00 2019-08-19 14:18:07 2019-08-19 14:28:12 t 1 2 85842 220 0.00 2019-08-19 14:28:56 2019-08-19 14:29:31 t 1 1 85845 320 0.00 2019-08-19 13:16:15 2019-08-19 14:36:21 t 1 2 85849 296 0.00 2019-08-19 14:47:42 2019-08-19 14:51:03 t 1 2 85852 220 0.00 2019-08-19 14:30:46 2019-08-19 14:58:38 t 1 1 85861 220 0.00 2019-08-19 15:03:15 2019-08-19 15:03:51 t 1 1 85868 220 0.00 2019-08-19 15:06:54 2019-08-19 15:07:27 t 1 1 85871 379 0.00 2019-08-19 08:18:45 2019-08-19 15:08:51 t 1 2 85876 220 0.00 2019-08-19 15:10:51 2019-08-19 15:11:33 t 1 1 85879 220 0.00 2019-08-19 15:12:44 2019-08-19 15:13:19 t 1 1 85883 220 0.00 2019-08-19 15:16:08 2019-08-19 15:16:39 t 1 1 85890 220 0.00 2019-08-19 15:21:18 2019-08-19 15:21:59 t 1 1 85898 220 0.00 2019-08-19 15:25:52 2019-08-19 15:26:25 t 1 1 85899 220 0.00 2019-08-19 15:26:25 2019-08-19 15:28:07 t 1 1 85512 373 0.00 2019-08-18 21:56:32 2019-08-18 21:56:42 t 1 2 85513 306 0.00 2019-08-18 21:59:00 2019-08-18 22:00:04 t 1 2 85531 220 0.00 2019-08-18 22:08:01 2019-08-18 22:57:00 t 1 1 85533 247 0.00 2019-08-18 23:05:38 2019-08-18 23:06:30 t 1 2 85536 292 0.00 2019-08-18 23:09:13 2019-08-18 23:10:15 t 1 2 85538 320 0.00 2019-08-18 23:02:23 2019-08-18 23:12:28 t 1 2 85540 306 0.00 2019-08-18 23:17:15 2019-08-18 23:18:21 t 1 2 85542 306 0.00 2019-08-18 23:20:24 2019-08-18 23:21:25 t 1 2 85544 306 0.00 2019-08-18 23:23:24 2019-08-18 23:24:28 t 1 2 85545 306 0.00 2019-08-18 23:24:58 2019-08-18 23:26:02 t 1 2 85553 367 0.00 2019-08-18 23:26:01 2019-08-19 00:00:54 t 1 2 85559 294 0.00 2019-08-18 23:25:01 2019-08-19 00:25:14 t 1 2 85565 288 0.00 2019-08-19 00:58:18 2019-08-19 00:59:23 t 1 2 85570 220 0.00 2019-08-18 23:58:41 2019-08-19 01:05:30 t 1 1 85578 324 0.00 2019-08-19 01:30:52 2019-08-19 01:35:00 t 1 2 85580 361 0.00 2019-08-19 01:00:18 2019-08-19 01:43:53 t 1 2 85582 212 0.00 2019-08-19 02:01:29 2019-08-19 02:07:04 t 1 2 85583 324 0.00 2019-08-19 02:03:24 2019-08-19 02:09:28 t 1 2 85585 320 0.00 2019-08-19 00:11:53 2019-08-19 02:21:59 t 1 2 85592 373 0.00 2019-08-19 06:37:48 2019-08-19 06:38:54 t 1 2 85594 212 0.00 2019-08-19 06:43:36 2019-08-19 06:44:52 t 1 2 85595 288 0.00 2019-08-19 07:28:08 2019-08-19 07:29:17 t 1 2 85598 308 0.00 2019-08-19 07:30:32 2019-08-19 07:33:51 t 1 2 85599 320 0.00 2019-08-19 07:38:17 2019-08-19 07:48:23 t 1 2 85603 212 0.00 2019-08-19 08:19:23 2019-08-19 08:19:44 t 1 2 85609 304 0.00 2019-08-19 08:26:04 2019-08-19 08:36:10 t 1 2 85612 288 0.00 2019-08-19 09:07:41 2019-08-19 09:08:45 t 1 2 85616 324 0.00 2019-08-19 09:29:10 2019-08-19 09:31:08 t 1 2 85619 288 0.00 2019-08-19 09:32:55 2019-08-19 09:33:59 t 1 2 85620 288 0.00 2019-08-19 09:34:11 2019-08-19 09:35:15 t 1 2 85623 220 0.00 2019-08-19 09:27:11 2019-08-19 09:37:16 t 1 2 85625 288 0.00 2019-08-19 09:37:33 2019-08-19 09:38:40 t 1 2 85632 320 0.00 2019-08-19 09:55:10 2019-08-19 10:05:16 t 1 2 85635 247 0.00 2019-08-19 10:21:00 2019-08-19 10:22:29 t 1 2 85637 324 0.00 2019-08-19 10:36:15 2019-08-19 10:37:48 t 1 2 85642 220 0.00 2019-08-19 10:46:31 2019-08-19 10:49:31 t 1 2 85645 324 0.00 2019-08-19 10:39:06 2019-08-19 11:00:51 t 1 2 85648 361 0.00 2019-08-19 09:45:07 2019-08-19 11:07:31 t 1 2 85650 320 0.00 2019-08-19 11:11:23 2019-08-19 11:13:15 t 1 2 85659 220 0.00 2019-08-19 11:26:38 2019-08-19 11:27:11 t 1 1 85665 220 0.00 2019-08-19 11:29:56 2019-08-19 11:30:28 t 1 1 85670 220 0.00 2019-08-19 11:32:05 2019-08-19 11:32:37 t 1 1 85673 220 0.00 2019-08-19 11:33:45 2019-08-19 11:34:20 t 1 1 85676 220 0.00 2019-08-19 11:35:30 2019-08-19 11:36:03 t 1 1 85689 220 0.00 2019-08-19 11:42:57 2019-08-19 11:43:32 t 1 1 85693 220 0.00 2019-08-19 11:45:30 2019-08-19 11:46:05 t 1 1 85694 220 0.00 2019-08-19 11:46:05 2019-08-19 11:46:40 t 1 1 85700 220 0.00 2019-08-19 11:48:52 2019-08-19 11:49:27 t 1 1 85705 220 0.00 2019-08-19 11:51:37 2019-08-19 11:52:10 t 1 1 85708 220 0.00 2019-08-19 11:53:16 2019-08-19 11:53:58 t 1 1 85710 324 0.00 2019-08-19 11:53:51 2019-08-19 11:54:56 t 1 2 85717 220 0.00 2019-08-19 11:56:48 2019-08-19 11:57:24 t 1 1 85723 220 0.00 2019-08-19 11:57:55 2019-08-19 11:58:58 t 1 1 85730 220 0.00 2019-08-19 12:02:31 2019-08-19 12:03:22 t 1 1 85733 220 0.00 2019-08-19 12:04:31 2019-08-19 12:05:05 t 1 1 85734 361 0.00 2019-08-19 11:16:52 2019-08-19 12:05:18 t 1 2 85737 220 0.00 2019-08-19 12:06:09 2019-08-19 12:06:44 t 1 1 85742 220 0.00 2019-08-19 12:09:05 2019-08-19 12:09:38 t 1 1 85752 320 0.00 2019-08-19 12:11:20 2019-08-19 12:21:25 t 1 2 85773 220 0.00 2019-08-19 13:24:46 2019-08-19 13:24:59 t 1 1 85775 220 0.00 2019-08-19 13:25:10 2019-08-19 13:25:22 t 1 1 85782 220 0.00 2019-08-19 13:26:33 2019-08-19 13:26:45 t 1 1 85784 220 0.00 2019-08-19 13:26:57 2019-08-19 13:27:08 t 1 1 85791 306 0.00 2019-08-19 13:50:11 2019-08-19 13:51:14 t 1 2 85793 212 0.00 2019-08-19 13:54:37 2019-08-19 13:55:19 t 1 2 85801 220 0.00 2019-08-19 14:05:30 2019-08-19 14:06:04 t 1 1 85802 381 0.00 2019-08-19 13:51:22 2019-08-19 14:06:27 t 1 2 85809 220 0.00 2019-08-19 14:08:45 2019-08-19 14:09:18 t 1 1 85820 324 0.00 2019-08-19 14:13:22 2019-08-19 14:14:30 t 1 2 85823 220 0.00 2019-08-19 14:15:28 2019-08-19 14:16:02 t 1 1 85825 220 0.00 2019-08-19 14:16:02 2019-08-19 14:19:13 t 1 1 85828 381 0.00 2019-08-19 14:20:47 2019-08-19 14:20:47 f 1 2 85851 318 0.00 2019-08-19 14:55:39 2019-08-19 14:58:34 t 1 2 85856 220 0.00 2019-08-19 15:00:05 2019-08-19 15:00:39 t 1 1 85859 220 0.00 2019-08-19 15:02:04 2019-08-19 15:02:42 t 1 1 85863 220 0.00 2019-08-19 15:04:24 2019-08-19 15:05:00 t 1 1 85865 220 0.00 2019-08-19 15:05:00 2019-08-19 15:05:40 t 1 1 85870 220 0.00 2019-08-19 15:08:02 2019-08-19 15:08:36 t 1 1 85873 220 0.00 2019-08-19 15:09:10 2019-08-19 15:09:45 t 1 1 85880 220 0.00 2019-08-19 15:13:19 2019-08-19 15:15:04 t 1 1 85882 220 0.00 2019-08-19 15:15:36 2019-08-19 15:16:08 t 1 1 85885 220 0.00 2019-08-19 15:17:14 2019-08-19 15:17:48 t 1 1 85889 220 0.00 2019-08-19 15:20:47 2019-08-19 15:21:19 t 1 1 85891 361 0.00 2019-08-19 15:15:49 2019-08-19 15:22:02 t 1 2 85895 220 0.00 2019-08-19 15:23:47 2019-08-19 15:24:44 t 1 1 85901 220 0.00 2019-08-19 15:28:41 2019-08-19 15:29:17 t 1 1 85904 220 0.00 2019-08-19 15:31:08 2019-08-19 15:31:44 t 1 1 85909 220 0.00 2019-08-19 15:33:43 2019-08-19 15:34:21 t 1 1 85917 220 0.00 2019-08-19 15:41:56 2019-08-19 15:42:48 t 1 1 85922 220 0.00 2019-08-19 15:45:24 2019-08-19 15:45:58 t 1 1 85927 220 0.00 2019-08-19 15:48:20 2019-08-19 15:48:56 t 1 1 85934 220 0.00 2019-08-19 15:54:03 2019-08-19 15:54:42 t 1 1 85939 220 0.00 2019-08-19 15:57:15 2019-08-19 15:57:53 t 1 1 85942 220 0.00 2019-08-19 15:59:14 2019-08-19 15:59:52 t 1 1 85948 220 0.00 2019-08-19 16:02:39 2019-08-19 16:02:53 t 1 1 85951 220 0.00 2019-08-19 16:04:03 2019-08-19 16:04:36 t 1 1 85954 220 0.00 2019-08-19 16:05:43 2019-08-19 16:06:17 t 1 1 85959 320 0.00 2019-08-19 15:59:24 2019-08-19 16:09:30 t 1 2 85961 318 0.00 2019-08-19 16:01:34 2019-08-19 16:10:23 t 1 2 85962 220 0.00 2019-08-19 16:09:55 2019-08-19 16:12:12 t 1 1 85966 220 0.00 2019-08-19 16:14:29 2019-08-19 16:15:01 t 1 1 85973 220 0.00 2019-08-19 16:17:52 2019-08-19 16:18:28 t 1 1 85974 220 0.00 2019-08-19 16:18:27 2019-08-19 16:19:03 t 1 1 85977 220 0.00 2019-08-19 16:20:08 2019-08-19 16:20:43 t 1 1 85983 220 0.00 2019-08-19 16:24:21 2019-08-19 16:25:10 t 1 1 85986 220 0.00 2019-08-19 16:26:24 2019-08-19 16:26:58 t 1 1 85989 220 0.00 2019-08-19 16:28:10 2019-08-19 16:28:41 t 1 1 85523 220 0.00 2019-08-18 22:22:14 2019-08-18 22:22:26 t 1 1 85525 355 0.00 2019-08-18 22:23:49 2019-08-18 22:23:58 t 1 2 85528 212 0.00 2019-08-18 22:40:02 2019-08-18 22:41:34 t 1 2 85539 247 0.00 2019-08-18 23:12:53 2019-08-18 23:18:05 t 1 2 85551 220 0.00 2019-08-18 23:10:00 2019-08-18 23:44:24 t 1 2 85558 324 0.00 2019-08-19 00:24:08 2019-08-19 00:24:13 t 1 2 85560 324 0.00 2019-08-19 00:25:02 2019-08-19 00:27:12 t 1 2 85564 288 0.00 2019-08-19 00:55:09 2019-08-19 00:56:13 t 1 2 85567 288 0.00 2019-08-19 01:01:22 2019-08-19 01:02:30 t 1 2 85569 363 0.00 2019-08-18 21:24:09 2019-08-19 01:04:14 t 1 2 85572 288 0.00 2019-08-19 01:05:48 2019-08-19 01:06:56 t 1 2 85574 288 0.00 2019-08-19 01:09:22 2019-08-19 01:10:26 t 1 2 85576 343 0.00 2019-08-19 01:16:10 2019-08-19 01:21:19 t 1 2 85587 346 0.00 2019-08-19 00:30:33 2019-08-19 02:55:38 t 1 2 85588 322 0.00 2019-08-19 02:17:56 2019-08-19 03:55:05 t 1 2 85597 294 0.00 2019-08-19 07:26:34 2019-08-19 07:33:51 t 1 2 85602 306 0.00 2019-08-19 08:15:25 2019-08-19 08:16:31 t 1 2 85606 247 0.00 2019-08-19 08:30:52 2019-08-19 08:32:35 t 1 2 85607 288 0.00 2019-08-19 08:33:34 2019-08-19 08:34:40 t 1 2 85615 306 0.00 2019-08-19 09:29:23 2019-08-19 09:29:32 t 1 2 85617 306 0.00 2019-08-19 09:30:20 2019-08-19 09:31:22 t 1 2 85621 324 0.00 2019-08-19 09:35:09 2019-08-19 09:35:34 t 1 2 85624 320 0.00 2019-08-19 09:28:10 2019-08-19 09:38:15 t 1 2 85626 288 0.00 2019-08-19 09:39:41 2019-08-19 09:40:43 t 1 2 85628 304 0.00 2019-08-19 09:32:46 2019-08-19 09:42:51 t 1 2 85629 288 0.00 2019-08-19 09:48:12 2019-08-19 09:49:19 t 1 2 85630 288 0.00 2019-08-19 09:56:09 2019-08-19 09:57:12 t 1 2 85633 220 0.00 2019-08-19 09:42:54 2019-08-19 10:05:23 t 1 2 85638 304 0.00 2019-08-19 10:08:19 2019-08-19 10:43:24 t 1 2 85639 304 0.00 2019-08-19 10:34:35 2019-08-19 10:44:40 t 1 2 85641 367 0.00 2019-08-19 09:25:15 2019-08-19 10:48:14 t 1 2 85647 304 0.00 2019-08-19 10:55:24 2019-08-19 11:05:29 t 1 2 85652 212 0.00 2019-08-19 11:20:22 2019-08-19 11:21:19 t 1 2 85656 373 0.00 2019-08-19 11:25:31 2019-08-19 11:25:44 t 1 2 85661 220 0.00 2019-08-19 11:27:46 2019-08-19 11:28:18 t 1 1 85662 220 0.00 2019-08-19 11:28:18 2019-08-19 11:28:49 t 1 1 85667 220 0.00 2019-08-19 11:31:01 2019-08-19 11:31:33 t 1 1 85669 220 0.00 2019-08-19 11:31:33 2019-08-19 11:32:05 t 1 1 85675 220 0.00 2019-08-19 11:34:55 2019-08-19 11:35:30 t 1 1 85678 220 0.00 2019-08-19 11:36:37 2019-08-19 11:37:11 t 1 1 85680 220 0.00 2019-08-19 11:37:11 2019-08-19 11:38:27 t 1 1 85681 220 0.00 2019-08-19 11:38:26 2019-08-19 11:38:57 t 1 1 85684 220 0.00 2019-08-19 11:40:03 2019-08-19 11:40:39 t 1 1 85686 220 0.00 2019-08-19 11:41:13 2019-08-19 11:41:48 t 1 1 85690 324 0.00 2019-08-19 11:44:16 2019-08-19 11:44:44 t 1 2 85692 220 0.00 2019-08-19 11:44:56 2019-08-19 11:45:30 t 1 1 85695 220 0.00 2019-08-19 11:46:40 2019-08-19 11:47:15 t 1 1 85697 220 0.00 2019-08-19 11:47:14 2019-08-19 11:47:50 t 1 1 85702 220 0.00 2019-08-19 11:50:01 2019-08-19 11:50:35 t 1 1 85707 220 0.00 2019-08-19 11:52:44 2019-08-19 11:53:16 t 1 1 85715 324 0.00 2019-08-19 11:56:14 2019-08-19 11:56:26 t 1 2 85718 324 0.00 2019-08-19 11:56:31 2019-08-19 11:57:32 t 1 2 85719 220 0.00 2019-08-19 11:57:23 2019-08-19 11:57:55 t 1 1 85721 324 0.00 2019-08-19 11:57:37 2019-08-19 11:58:40 t 1 2 85727 220 0.00 2019-08-19 12:00:08 2019-08-19 12:00:42 t 1 1 85729 220 0.00 2019-08-19 12:01:58 2019-08-19 12:02:31 t 1 1 85732 220 0.00 2019-08-19 12:03:57 2019-08-19 12:04:32 t 1 1 85736 220 0.00 2019-08-19 12:05:38 2019-08-19 12:06:09 t 1 1 85739 220 0.00 2019-08-19 12:07:14 2019-08-19 12:07:54 t 1 1 85743 373 0.00 2019-08-19 12:08:36 2019-08-19 12:09:40 t 1 2 85746 220 0.00 2019-08-19 12:10:46 2019-08-19 12:11:20 t 1 1 85753 288 0.00 2019-08-19 12:33:56 2019-08-19 12:35:02 t 1 2 85756 320 0.00 2019-08-19 12:36:51 2019-08-19 12:46:57 t 1 2 85759 373 0.00 2019-08-19 12:49:34 2019-08-19 12:50:39 t 1 2 85761 373 0.00 2019-08-19 13:03:24 2019-08-19 13:04:28 t 1 2 85762 220 0.00 2019-08-19 12:48:27 2019-08-19 13:07:00 t 1 1 85765 318 0.00 2019-08-19 12:20:38 2019-08-19 13:15:43 t 1 2 85766 220 0.00 2019-08-19 12:11:20 2019-08-19 13:18:55 t 1 1 85768 220 0.00 2019-08-19 13:09:46 2019-08-19 13:24:02 t 1 1 85770 220 0.00 2019-08-19 13:24:12 2019-08-19 13:24:24 t 1 1 85777 220 0.00 2019-08-19 13:25:32 2019-08-19 13:25:44 t 1 1 85779 220 0.00 2019-08-19 13:25:54 2019-08-19 13:26:12 t 1 1 85781 220 0.00 2019-08-19 13:26:22 2019-08-19 13:26:34 t 1 1 85785 220 0.00 2019-08-19 13:27:07 2019-08-19 13:27:20 t 1 1 85789 247 0.00 2019-08-19 13:49:54 2019-08-19 13:50:26 t 1 2 85792 212 0.00 2019-08-19 12:09:21 2019-08-19 13:52:10 t 1 2 85795 220 0.00 2019-08-19 14:02:42 2019-08-19 14:03:15 t 1 1 85796 220 0.00 2019-08-19 14:03:15 2019-08-19 14:03:50 t 1 1 85800 220 0.00 2019-08-19 14:04:55 2019-08-19 14:05:30 t 1 1 85804 220 0.00 2019-08-19 14:06:38 2019-08-19 14:07:13 t 1 1 85806 220 0.00 2019-08-19 14:07:35 2019-08-19 14:08:02 t 1 1 85811 220 0.00 2019-08-19 14:09:54 2019-08-19 14:10:27 t 1 1 85813 220 0.00 2019-08-19 14:10:27 2019-08-19 14:11:02 t 1 1 85816 220 0.00 2019-08-19 14:12:08 2019-08-19 14:12:40 t 1 1 85822 220 0.00 2019-08-19 14:14:53 2019-08-19 14:15:28 t 1 1 85824 304 0.00 2019-08-19 14:06:08 2019-08-19 14:16:13 t 1 2 85827 381 0.00 2019-08-19 14:20:32 2019-08-19 14:20:32 f 1 2 85830 381 0.00 2019-08-19 14:21:58 2019-08-19 14:21:58 f 1 2 85835 220 0.00 2019-08-19 14:24:00 2019-08-19 14:24:32 t 1 1 85840 220 0.00 2019-08-19 14:27:44 2019-08-19 14:28:20 t 1 1 85841 220 0.00 2019-08-19 14:28:19 2019-08-19 14:28:56 t 1 1 85844 324 0.00 2019-08-19 14:34:18 2019-08-19 14:34:39 t 1 2 85846 372 0.00 2019-08-19 14:24:45 2019-08-19 14:36:38 t 1 2 85847 318 0.00 2019-08-19 13:52:18 2019-08-19 14:39:20 t 1 2 85848 212 0.00 2019-08-19 14:49:39 2019-08-19 14:50:16 t 1 2 85850 367 0.00 2019-08-19 13:43:57 2019-08-19 14:55:05 t 1 2 85853 220 0.00 2019-08-19 14:30:02 2019-08-19 14:58:58 t 1 1 85855 220 0.00 2019-08-19 14:59:34 2019-08-19 15:00:06 t 1 1 85858 220 0.00 2019-08-19 15:01:31 2019-08-19 15:02:04 t 1 1 85862 220 0.00 2019-08-19 15:03:50 2019-08-19 15:04:24 t 1 1 85864 318 0.00 2019-08-19 14:59:02 2019-08-19 15:05:23 t 1 2 85867 220 0.00 2019-08-19 15:06:14 2019-08-19 15:06:54 t 1 1 85872 220 0.00 2019-08-19 15:08:36 2019-08-19 15:09:10 t 1 1 85875 220 0.00 2019-08-19 15:10:18 2019-08-19 15:10:51 t 1 1 85878 220 0.00 2019-08-19 15:12:09 2019-08-19 15:12:44 t 1 1 85884 220 0.00 2019-08-19 15:16:39 2019-08-19 15:17:14 t 1 1 85893 220 0.00 2019-08-19 15:22:33 2019-08-19 15:23:05 t 1 1 85894 220 0.00 2019-08-19 15:23:04 2019-08-19 15:23:47 t 1 1 85897 220 0.00 2019-08-19 15:25:19 2019-08-19 15:25:52 t 1 1 85906 220 0.00 2019-08-19 15:32:16 2019-08-19 15:32:53 t 1 1 85913 220 0.00 2019-08-19 15:36:45 2019-08-19 15:37:31 t 1 1 85918 220 0.00 2019-08-19 15:42:48 2019-08-19 15:43:22 t 1 1 85919 220 0.00 2019-08-19 15:43:21 2019-08-19 15:44:02 t 1 1 85921 220 0.00 2019-08-19 15:44:34 2019-08-19 15:45:24 t 1 1 85924 220 0.00 2019-08-19 15:47:11 2019-08-19 15:47:50 t 1 1 85928 220 0.00 2019-08-19 15:48:56 2019-08-19 15:51:40 t 1 1 85932 220 0.00 2019-08-19 15:52:52 2019-08-19 15:53:29 t 1 1 85933 220 0.00 2019-08-19 15:53:28 2019-08-19 15:54:03 t 1 1 85935 355 0.00 2019-08-19 15:45:15 2019-08-19 15:55:21 t 1 2 85938 220 0.00 2019-08-19 15:55:58 2019-08-19 15:57:15 t 1 1 85944 220 0.00 2019-08-19 16:00:28 2019-08-19 16:00:59 t 1 1 85957 220 0.00 2019-08-19 15:03:49 2019-08-19 16:09:13 t 1 2 85965 220 0.00 2019-08-19 16:13:51 2019-08-19 16:14:29 t 1 1 85968 220 0.00 2019-08-19 16:15:33 2019-08-19 16:16:08 t 1 1 85970 220 0.00 2019-08-19 16:16:07 2019-08-19 16:16:43 t 1 1 85976 220 0.00 2019-08-19 16:19:34 2019-08-19 16:20:08 t 1 1 85979 220 0.00 2019-08-19 16:21:15 2019-08-19 16:22:26 t 1 1 85982 220 0.00 2019-08-19 16:23:45 2019-08-19 16:24:21 t 1 1 85985 220 0.00 2019-08-19 16:25:43 2019-08-19 16:26:24 t 1 1 85988 220 0.00 2019-08-19 16:27:33 2019-08-19 16:28:10 t 1 1 85991 220 0.00 2019-08-19 16:29:12 2019-08-19 16:29:47 t 1 1 85996 220 0.00 2019-08-19 16:32:03 2019-08-19 16:32:40 t 1 1 86000 220 0.00 2019-08-19 16:34:17 2019-08-19 16:34:49 t 1 1 86002 220 0.00 2019-08-19 16:35:31 2019-08-19 16:36:10 t 1 1 86005 220 0.00 2019-08-19 16:37:25 2019-08-19 16:38:01 t 1 1 86010 220 0.00 2019-08-19 16:39:50 2019-08-19 16:40:29 t 1 1 86013 220 0.00 2019-08-19 16:41:57 2019-08-19 16:42:30 t 1 1 86015 220 0.00 2019-08-19 16:42:30 2019-08-19 16:44:00 t 1 1 86019 247 0.00 2019-08-19 16:45:58 2019-08-19 16:46:10 t 1 2 86031 220 0.00 2019-08-19 16:52:44 2019-08-19 16:53:25 t 1 1 86032 220 0.00 2019-08-19 16:53:24 2019-08-19 16:53:59 t 1 1 86035 220 0.00 2019-08-19 16:55:14 2019-08-19 16:56:01 t 1 1 86038 220 0.00 2019-08-19 16:57:31 2019-08-19 16:58:04 t 1 1 86042 220 0.00 2019-08-19 16:59:30 2019-08-19 17:00:13 t 1 1 86046 220 0.00 2019-08-19 17:01:25 2019-08-19 17:02:05 t 1 1 86048 220 0.00 2019-08-19 17:02:39 2019-08-19 17:03:17 t 1 1 86049 220 0.00 2019-08-19 17:03:16 2019-08-19 17:03:58 t 1 1 86054 220 0.00 2019-08-19 17:05:47 2019-08-19 17:06:54 t 1 1 86060 220 0.00 2019-08-19 17:09:29 2019-08-19 17:10:03 t 1 1 86063 220 0.00 2019-08-19 17:11:34 2019-08-19 17:12:16 t 1 1 86066 367 0.00 2019-08-19 17:00:20 2019-08-19 17:13:05 t 1 2 86072 220 0.00 2019-08-19 17:16:00 2019-08-19 17:16:35 t 1 1 86078 220 0.00 2019-08-19 17:19:02 2019-08-19 17:19:39 t 1 1 86082 220 0.00 2019-08-19 16:33:56 2019-08-19 17:22:02 t 1 2 86087 324 0.00 2019-08-19 16:32:17 2019-08-19 17:23:54 t 1 2 86093 292 0.00 2019-08-19 17:30:20 2019-08-19 17:31:23 t 1 2 86094 288 0.00 2019-08-19 17:33:07 2019-08-19 17:34:12 t 1 2 86096 220 0.00 2019-08-19 17:40:58 2019-08-19 17:46:53 t 1 2 86100 212 0.00 2019-08-19 18:07:50 2019-08-19 18:09:29 t 1 2 86104 288 0.00 2019-08-19 18:29:23 2019-08-19 18:30:27 t 1 2 86109 320 0.00 2019-08-19 18:42:28 2019-08-19 18:52:33 t 1 2 86110 294 0.00 2019-08-19 17:53:34 2019-08-19 18:53:58 t 1 2 86116 220 0.00 2019-08-19 18:44:57 2019-08-19 19:07:29 t 1 1 86117 346 0.00 2019-08-19 19:10:46 2019-08-19 19:10:54 t 1 2 86119 220 0.00 2019-08-19 19:07:29 2019-08-19 19:22:14 t 1 1 86123 363 0.00 2019-08-19 17:21:27 2019-08-19 19:26:32 t 1 2 86131 324 0.00 2019-08-19 20:07:19 2019-08-19 20:12:09 t 1 2 86135 220 0.00 2019-08-19 19:22:14 2019-08-19 20:43:56 t 1 1 86141 306 0.00 2019-08-19 21:01:00 2019-08-19 21:02:07 t 1 2 86146 346 0.00 2019-08-19 20:57:52 2019-08-19 21:17:58 t 1 2 86147 324 0.00 2019-08-19 20:30:40 2019-08-19 21:20:45 t 1 2 86148 306 0.00 2019-08-19 21:22:50 2019-08-19 21:23:52 t 1 2 86149 355 0.00 2019-08-19 21:18:29 2019-08-19 21:28:34 t 1 2 86151 363 0.00 2019-08-19 21:31:48 2019-08-19 21:31:57 t 1 2 86153 363 0.00 2019-08-19 20:38:25 2019-08-19 21:33:30 t 1 2 86154 292 0.00 2019-08-19 21:36:05 2019-08-19 21:37:09 t 1 2 86158 304 0.00 2019-08-19 21:50:39 2019-08-19 22:00:44 t 1 2 86160 320 0.00 2019-08-19 21:17:36 2019-08-19 22:02:41 t 1 2 86167 339 0.00 2019-08-19 21:39:40 2019-08-19 22:40:12 t 1 2 86170 292 0.00 2019-08-19 22:45:43 2019-08-19 22:46:49 t 1 2 86173 288 0.00 2019-08-19 22:55:01 2019-08-19 22:56:06 t 1 2 86176 288 0.00 2019-08-19 23:08:09 2019-08-19 23:09:13 t 1 2 86178 220 0.00 2019-08-19 21:27:16 2019-08-19 23:10:44 t 1 1 86181 212 0.00 2019-08-19 23:17:40 2019-08-19 23:18:13 t 1 2 86184 212 0.00 2019-08-19 23:39:29 2019-08-19 23:39:51 t 1 2 86188 220 0.00 2019-08-19 23:46:45 2019-08-20 00:16:31 t 1 1 86192 288 0.00 2019-08-20 00:30:41 2019-08-20 00:31:46 t 1 2 86195 212 0.00 2019-08-20 00:38:21 2019-08-20 00:38:56 t 1 2 86200 320 0.00 2019-08-20 00:40:18 2019-08-20 00:50:23 t 1 2 86201 220 0.00 2019-08-20 00:45:45 2019-08-20 00:54:31 t 1 1 86217 220 0.00 2019-08-20 01:53:31 2019-08-20 01:59:09 t 1 1 86226 320 0.00 2019-08-20 01:07:10 2019-08-20 04:22:15 t 1 2 86231 320 0.00 2019-08-20 07:28:12 2019-08-20 07:33:50 t 1 2 86234 351 0.00 2019-08-20 08:45:39 2019-08-20 08:46:42 t 1 2 86240 220 0.00 2019-08-20 09:04:54 2019-08-20 09:09:36 t 1 1 86241 220 0.00 2019-08-20 09:09:35 2019-08-20 09:15:06 t 1 1 86246 304 0.00 2019-08-20 09:22:15 2019-08-20 09:32:20 t 1 2 86247 212 0.00 2019-08-20 09:35:22 2019-08-20 09:35:43 t 1 2 86254 320 0.00 2019-08-20 09:56:11 2019-08-20 10:06:16 t 1 2 86260 220 0.00 2019-08-20 09:18:15 2019-08-20 10:24:03 t 1 1 86264 346 0.00 2019-08-20 10:27:49 2019-08-20 10:37:54 t 1 2 86267 320 0.00 2019-08-20 10:42:28 2019-08-20 10:52:33 t 1 2 86270 346 0.00 2019-08-20 11:08:05 2019-08-20 11:09:06 t 1 2 86277 367 0.00 2019-08-20 11:04:56 2019-08-20 11:30:37 t 1 2 86279 324 0.00 2019-08-20 11:30:18 2019-08-20 11:32:37 t 1 2 86281 367 0.00 2019-08-20 11:28:23 2019-08-20 11:38:28 t 1 2 86284 220 0.00 2019-08-20 11:24:36 2019-08-20 11:46:22 t 1 2 86286 306 0.00 2019-08-20 12:11:37 2019-08-20 12:12:39 t 1 2 86289 288 0.00 2019-08-20 12:15:03 2019-08-20 12:16:07 t 1 2 86293 372 0.00 2019-08-20 12:23:07 2019-08-20 12:24:13 t 1 2 86298 346 0.00 2019-08-20 12:31:00 2019-08-20 12:31:00 t 1 2 86299 320 0.00 2019-08-20 12:16:08 2019-08-20 12:31:13 t 1 2 86314 306 0.00 2019-08-20 13:02:34 2019-08-20 13:03:35 t 1 2 86315 306 0.00 2019-08-20 13:05:36 2019-08-20 13:06:38 t 1 2 85902 220 0.00 2019-08-19 15:29:17 2019-08-19 15:29:51 t 1 1 85910 220 0.00 2019-08-19 15:34:21 2019-08-19 15:35:05 t 1 1 85912 324 0.00 2019-08-19 15:36:11 2019-08-19 15:36:46 t 1 2 85920 220 0.00 2019-08-19 15:44:02 2019-08-19 15:44:34 t 1 1 85923 220 0.00 2019-08-19 15:45:57 2019-08-19 15:47:12 t 1 1 85925 220 0.00 2019-08-19 15:47:49 2019-08-19 15:48:20 t 1 1 85929 220 0.00 2019-08-19 15:51:39 2019-08-19 15:52:10 t 1 1 85931 320 0.00 2019-08-19 15:43:02 2019-08-19 15:53:08 t 1 2 85936 220 0.00 2019-08-19 15:54:41 2019-08-19 15:55:23 t 1 1 85946 220 0.00 2019-08-19 15:41:32 2019-08-19 16:02:36 t 1 2 85952 220 0.00 2019-08-19 16:04:35 2019-08-19 16:05:08 t 1 1 85955 220 0.00 2019-08-19 16:06:17 2019-08-19 16:07:15 t 1 1 85958 220 0.00 2019-08-19 16:07:47 2019-08-19 16:09:21 t 1 1 85960 220 0.00 2019-08-19 16:09:20 2019-08-19 16:09:56 t 1 1 85963 220 0.00 2019-08-19 16:12:12 2019-08-19 16:12:46 t 1 1 85964 220 0.00 2019-08-19 16:12:46 2019-08-19 16:13:51 t 1 1 85971 220 0.00 2019-08-19 16:16:42 2019-08-19 16:17:17 t 1 1 85980 220 0.00 2019-08-19 16:22:26 2019-08-19 16:23:04 t 1 1 85981 220 0.00 2019-08-19 16:23:04 2019-08-19 16:23:45 t 1 1 85984 220 0.00 2019-08-19 16:25:10 2019-08-19 16:25:43 t 1 1 85992 220 0.00 2019-08-19 16:29:46 2019-08-19 16:30:21 t 1 1 85995 220 0.00 2019-08-19 16:31:28 2019-08-19 16:32:04 t 1 1 85997 220 0.00 2019-08-19 16:32:39 2019-08-19 16:33:11 t 1 1 85998 220 0.00 2019-08-19 16:33:11 2019-08-19 16:33:45 t 1 1 86006 220 0.00 2019-08-19 16:37:57 2019-08-19 16:38:35 t 1 1 86009 220 0.00 2019-08-19 16:39:10 2019-08-19 16:39:51 t 1 1 86012 220 0.00 2019-08-19 16:41:05 2019-08-19 16:41:57 t 1 1 86021 346 0.00 2019-08-19 16:35:17 2019-08-19 16:47:20 t 1 2 86025 220 0.00 2019-08-19 16:49:24 2019-08-19 16:50:04 t 1 1 86030 220 0.00 2019-08-19 16:52:04 2019-08-19 16:52:45 t 1 1 86041 367 0.00 2019-08-19 17:00:04 2019-08-19 17:00:09 t 1 2 86043 220 0.00 2019-08-19 17:00:13 2019-08-19 17:00:48 t 1 1 86050 220 0.00 2019-08-19 17:03:57 2019-08-19 17:04:32 t 1 1 86052 220 0.00 2019-08-19 17:04:32 2019-08-19 17:05:11 t 1 1 86055 220 0.00 2019-08-19 17:06:54 2019-08-19 17:07:28 t 1 1 86064 220 0.00 2019-08-19 17:12:16 2019-08-19 17:12:51 t 1 1 86067 220 0.00 2019-08-19 17:12:51 2019-08-19 17:13:24 t 1 1 86068 220 0.00 2019-08-19 17:13:24 2019-08-19 17:13:57 t 1 1 86071 220 0.00 2019-08-19 17:15:21 2019-08-19 17:16:01 t 1 1 86074 220 0.00 2019-08-19 17:17:09 2019-08-19 17:17:45 t 1 1 86079 220 0.00 2019-08-19 17:19:36 2019-08-19 17:20:15 t 1 1 86081 220 0.00 2019-08-19 17:20:50 2019-08-19 17:21:30 t 1 1 86083 220 0.00 2019-08-19 17:21:30 2019-08-19 17:22:03 t 1 1 86088 220 0.00 2019-08-19 17:23:52 2019-08-19 17:24:07 t 1 1 86092 288 0.00 2019-08-19 17:27:57 2019-08-19 17:29:02 t 1 2 86095 294 0.00 2019-08-19 16:43:07 2019-08-19 17:43:31 t 1 2 86105 357 0.00 2019-08-19 18:38:59 2019-08-19 18:39:07 t 1 2 86108 320 0.00 2019-08-19 18:51:19 2019-08-19 18:51:19 f 1 2 86115 296 0.00 2019-08-19 18:26:58 2019-08-19 19:03:34 t 1 2 86126 294 0.00 2019-08-19 19:26:34 2019-08-19 19:50:05 t 1 2 86128 346 0.00 2019-08-19 19:54:56 2019-08-19 20:05:01 t 1 2 86129 385 0.00 2019-08-19 20:04:38 2019-08-19 20:11:01 t 1 2 86133 355 0.00 2019-08-19 18:12:08 2019-08-19 20:17:13 t 1 2 86144 292 0.00 2019-08-19 21:12:19 2019-08-19 21:13:24 t 1 2 86145 343 0.00 2019-08-19 21:12:33 2019-08-19 21:16:09 t 1 2 86162 212 0.00 2019-08-19 22:20:44 2019-08-19 22:24:23 t 1 2 86163 361 0.00 2019-08-19 21:06:51 2019-08-19 22:28:29 t 1 2 86165 304 0.00 2019-08-19 22:19:28 2019-08-19 22:29:33 t 1 2 86166 212 0.00 2019-08-19 22:29:58 2019-08-19 22:33:04 t 1 2 86169 367 0.00 2019-08-19 21:50:01 2019-08-19 22:46:25 t 1 2 86171 318 0.00 2019-08-19 22:47:13 2019-08-19 22:52:00 t 1 2 86172 212 0.00 2019-08-19 22:44:29 2019-08-19 22:54:34 t 1 2 86185 385 0.00 2019-08-19 23:45:55 2019-08-19 23:52:39 t 1 2 86187 247 0.00 2019-08-20 00:09:11 2019-08-20 00:11:25 t 1 2 86190 320 0.00 2019-08-20 00:19:13 2019-08-20 00:20:07 t 1 2 86198 304 0.00 2019-08-20 00:37:05 2019-08-20 00:47:10 t 1 2 86199 363 0.00 2019-08-19 21:34:02 2019-08-20 00:49:07 t 1 2 86210 212 0.00 2019-08-20 01:34:01 2019-08-20 01:34:20 t 1 2 86214 220 0.00 2019-08-20 01:41:24 2019-08-20 01:42:00 t 1 1 86219 339 0.00 2019-08-20 02:28:35 2019-08-20 03:16:13 t 1 2 86224 346 0.00 2019-08-20 03:06:58 2019-08-20 03:34:11 t 1 2 86227 324 0.00 2019-08-20 05:13:10 2019-08-20 05:22:38 t 1 2 86230 302 0.00 2019-08-20 03:20:25 2019-08-20 07:33:50 t 1 2 86235 212 0.00 2019-08-20 08:46:15 2019-08-20 08:47:19 t 1 2 86237 351 0.00 2019-08-20 08:58:54 2019-08-20 09:00:02 t 1 2 86243 324 0.00 2019-08-20 09:24:22 2019-08-20 09:27:15 t 1 2 86245 212 0.00 2019-08-20 09:29:37 2019-08-20 09:30:05 t 1 2 86252 212 0.00 2019-08-20 10:02:29 2019-08-20 10:03:03 t 1 2 86253 247 0.00 2019-08-20 10:02:04 2019-08-20 10:04:24 t 1 2 86259 220 0.00 2019-08-20 09:21:25 2019-08-20 10:23:32 t 1 2 86261 320 0.00 2019-08-20 10:14:12 2019-08-20 10:24:17 t 1 2 86265 346 0.00 2019-08-20 10:32:02 2019-08-20 10:40:43 t 1 2 86266 212 0.00 2019-08-20 10:49:47 2019-08-20 10:50:12 t 1 2 86275 367 0.00 2019-08-20 11:30:05 2019-08-20 11:30:05 f 1 2 86292 372 0.00 2019-08-20 12:21:21 2019-08-20 12:22:25 t 1 2 86294 288 0.00 2019-08-20 12:23:51 2019-08-20 12:24:55 t 1 2 86305 385 0.00 2019-08-20 10:37:36 2019-08-20 12:40:00 t 1 2 86307 324 0.00 2019-08-20 12:18:13 2019-08-20 12:41:38 t 1 2 86309 367 0.00 2019-08-20 12:28:22 2019-08-20 12:51:44 t 1 2 86316 306 0.00 2019-08-20 13:07:32 2019-08-20 13:08:35 t 1 2 86328 339 0.00 2019-08-20 11:57:35 2019-08-20 13:30:59 t 1 2 86335 212 0.00 2019-08-20 13:45:41 2019-08-20 13:56:52 t 1 2 86337 212 0.00 2019-08-20 13:58:26 2019-08-20 13:58:49 t 1 2 86340 212 0.00 2019-08-20 14:04:37 2019-08-20 14:06:26 t 1 2 86341 212 0.00 2019-08-20 14:13:23 2019-08-20 14:13:55 t 1 2 86347 306 0.00 2019-08-20 14:32:16 2019-08-20 14:33:21 t 1 2 86349 306 0.00 2019-08-20 14:34:39 2019-08-20 14:35:32 t 1 2 86350 381 0.00 2019-08-20 14:07:18 2019-08-20 14:37:23 t 1 2 86352 324 0.00 2019-08-20 14:35:37 2019-08-20 14:39:47 t 1 2 86353 220 0.00 2019-08-20 14:39:17 2019-08-20 14:49:22 t 1 2 86358 306 0.00 2019-08-20 14:54:34 2019-08-20 14:55:38 t 1 2 86366 306 0.00 2019-08-20 15:10:16 2019-08-20 15:11:22 t 1 2 86369 306 0.00 2019-08-20 15:11:57 2019-08-20 15:12:59 t 1 2 86371 361 0.00 2019-08-20 14:36:05 2019-08-20 15:22:10 t 1 2 86372 212 0.00 2019-08-20 15:23:10 2019-08-20 15:23:35 t 1 2 86375 220 0.00 2019-08-20 15:24:57 2019-08-20 15:34:52 t 1 1 86377 220 0.00 2019-08-20 15:34:52 2019-08-20 15:47:04 t 1 1 85908 220 0.00 2019-08-19 15:32:53 2019-08-19 15:33:43 t 1 1 85911 220 0.00 2019-08-19 15:35:05 2019-08-19 15:36:46 t 1 1 85914 220 0.00 2019-08-19 15:37:30 2019-08-19 15:39:10 t 1 1 85915 220 0.00 2019-08-19 15:39:09 2019-08-19 15:41:25 t 1 1 85916 220 0.00 2019-08-19 15:41:25 2019-08-19 15:41:56 t 1 1 85926 247 0.00 2019-08-19 15:47:16 2019-08-19 15:48:48 t 1 2 85930 220 0.00 2019-08-19 15:52:10 2019-08-19 15:52:53 t 1 1 85937 220 0.00 2019-08-19 15:55:23 2019-08-19 15:55:58 t 1 1 85940 220 0.00 2019-08-19 15:57:52 2019-08-19 15:58:25 t 1 1 85941 220 0.00 2019-08-19 15:58:24 2019-08-19 15:59:17 t 1 1 85943 220 0.00 2019-08-19 15:59:51 2019-08-19 16:00:29 t 1 1 85945 220 0.00 2019-08-19 16:00:58 2019-08-19 16:01:32 t 1 1 85947 220 0.00 2019-08-19 16:01:31 2019-08-19 16:02:39 t 1 1 85949 220 0.00 2019-08-19 16:02:52 2019-08-19 16:03:29 t 1 1 85950 220 0.00 2019-08-19 16:03:28 2019-08-19 16:04:04 t 1 1 85953 220 0.00 2019-08-19 16:05:08 2019-08-19 16:05:43 t 1 1 85956 220 0.00 2019-08-19 16:07:14 2019-08-19 16:07:47 t 1 1 85967 220 0.00 2019-08-19 16:15:01 2019-08-19 16:15:33 t 1 1 85969 304 0.00 2019-08-19 16:01:23 2019-08-19 16:16:28 t 1 2 85972 220 0.00 2019-08-19 16:17:17 2019-08-19 16:17:52 t 1 1 85975 220 0.00 2019-08-19 16:19:02 2019-08-19 16:19:34 t 1 1 85978 220 0.00 2019-08-19 16:20:42 2019-08-19 16:21:15 t 1 1 85987 220 0.00 2019-08-19 16:26:58 2019-08-19 16:27:33 t 1 1 85990 220 0.00 2019-08-19 16:28:41 2019-08-19 16:29:13 t 1 1 85993 220 0.00 2019-08-19 16:30:21 2019-08-19 16:30:53 t 1 1 85999 220 0.00 2019-08-19 16:33:45 2019-08-19 16:34:18 t 1 1 86001 220 0.00 2019-08-19 16:34:48 2019-08-19 16:35:32 t 1 1 86004 220 0.00 2019-08-19 16:36:49 2019-08-19 16:37:26 t 1 1 86007 320 0.00 2019-08-19 16:28:36 2019-08-19 16:38:41 t 1 2 86014 294 0.00 2019-08-19 15:42:08 2019-08-19 16:42:32 t 1 2 86017 220 0.00 2019-08-19 16:44:38 2019-08-19 16:45:28 t 1 1 86020 372 0.00 2019-08-19 16:42:58 2019-08-19 16:46:22 t 1 2 86022 220 0.00 2019-08-19 16:46:10 2019-08-19 16:47:42 t 1 1 86026 220 0.00 2019-08-19 16:50:04 2019-08-19 16:50:42 t 1 1 86028 367 0.00 2019-08-19 16:22:42 2019-08-19 16:52:02 t 1 2 86034 220 0.00 2019-08-19 16:54:38 2019-08-19 16:55:14 t 1 1 86037 220 0.00 2019-08-19 16:56:38 2019-08-19 16:57:32 t 1 1 86040 220 0.00 2019-08-19 16:58:51 2019-08-19 16:59:30 t 1 1 86045 220 0.00 2019-08-19 17:00:48 2019-08-19 17:01:25 t 1 1 86053 220 0.00 2019-08-19 17:05:10 2019-08-19 17:05:47 t 1 1 86056 220 0.00 2019-08-19 17:07:28 2019-08-19 17:08:08 t 1 1 86057 220 0.00 2019-08-19 17:08:04 2019-08-19 17:08:50 t 1 1 86059 220 0.00 2019-08-19 17:08:45 2019-08-19 17:09:29 t 1 1 86062 220 0.00 2019-08-19 17:10:59 2019-08-19 17:11:34 t 1 1 86069 220 0.00 2019-08-19 17:13:57 2019-08-19 17:14:45 t 1 1 86076 220 0.00 2019-08-19 17:17:45 2019-08-19 17:18:31 t 1 1 86077 220 0.00 2019-08-19 17:18:31 2019-08-19 17:19:03 t 1 1 86080 220 0.00 2019-08-19 17:20:15 2019-08-19 17:20:50 t 1 1 86084 220 0.00 2019-08-19 17:22:03 2019-08-19 17:22:43 t 1 1 86089 220 0.00 2019-08-19 17:24:56 2019-08-19 17:26:31 t 1 1 86091 220 0.00 2019-08-19 17:24:06 2019-08-19 17:27:47 t 1 1 86106 220 0.00 2019-08-19 18:26:26 2019-08-19 18:41:50 t 1 1 86111 318 0.00 2019-08-19 18:34:03 2019-08-19 18:54:08 t 1 2 86113 320 0.00 2019-08-19 18:47:24 2019-08-19 18:57:30 t 1 2 86114 346 0.00 2019-08-19 18:50:16 2019-08-19 19:03:10 t 1 2 86118 357 0.00 2019-08-19 18:39:38 2019-08-19 19:19:43 t 1 2 86121 372 0.00 2019-08-19 18:55:36 2019-08-19 19:25:00 t 1 2 86124 320 0.00 2019-08-19 19:17:24 2019-08-19 19:27:29 t 1 2 86125 324 0.00 2019-08-19 19:44:51 2019-08-19 19:45:54 t 1 2 86127 324 0.00 2019-08-19 18:14:46 2019-08-19 19:58:54 t 1 2 86132 324 0.00 2019-08-19 20:16:03 2019-08-19 20:17:07 t 1 2 86136 320 0.00 2019-08-19 20:29:04 2019-08-19 20:44:10 t 1 2 86138 292 0.00 2019-08-19 20:45:37 2019-08-19 20:46:45 t 1 2 86139 306 0.00 2019-08-19 20:52:44 2019-08-19 20:53:47 t 1 2 86142 361 0.00 2019-08-19 19:40:18 2019-08-19 21:04:56 t 1 2 86143 212 0.00 2019-08-19 21:07:07 2019-08-19 21:08:23 t 1 2 86155 367 0.00 2019-08-19 21:41:20 2019-08-19 21:49:14 t 1 2 86159 372 0.00 2019-08-19 22:00:25 2019-08-19 22:01:21 t 1 2 86164 288 0.00 2019-08-19 22:28:11 2019-08-19 22:29:17 t 1 2 86168 318 0.00 2019-08-19 22:42:20 2019-08-19 22:44:09 t 1 2 86177 324 0.00 2019-08-19 23:07:37 2019-08-19 23:09:32 t 1 2 86179 220 0.00 2019-08-19 21:55:11 2019-08-19 23:11:08 t 1 2 86180 324 0.00 2019-08-19 23:12:40 2019-08-19 23:13:55 t 1 2 86182 324 0.00 2019-08-19 23:17:39 2019-08-19 23:21:02 t 1 2 86194 296 0.00 2019-08-20 00:35:08 2019-08-20 00:36:31 t 1 2 86196 355 0.00 2019-08-19 21:25:27 2019-08-20 00:40:32 t 1 2 86197 220 0.00 2019-08-20 00:16:31 2019-08-20 00:45:45 t 1 1 86202 288 0.00 2019-08-20 00:57:48 2019-08-20 00:58:53 t 1 2 86203 320 0.00 2019-08-20 00:50:37 2019-08-20 01:00:42 t 1 2 86205 355 0.00 2019-08-20 00:53:22 2019-08-20 01:03:28 t 1 2 86206 212 0.00 2019-08-20 01:09:29 2019-08-20 01:09:53 t 1 2 86209 351 0.00 2019-08-20 01:28:42 2019-08-20 01:29:45 t 1 2 86211 220 0.00 2019-08-20 01:36:05 2019-08-20 01:38:42 t 1 1 86215 220 0.00 2019-08-20 01:42:00 2019-08-20 01:52:56 t 1 1 86218 294 0.00 2019-08-20 01:13:58 2019-08-20 03:05:21 t 1 2 86221 346 0.00 2019-08-20 03:18:52 2019-08-20 03:18:58 t 1 2 86222 324 0.00 2019-08-20 03:07:32 2019-08-20 03:22:37 t 1 2 86223 322 0.00 2019-08-20 01:22:10 2019-08-20 03:28:24 t 1 2 86228 324 0.00 2019-08-20 05:32:48 2019-08-20 05:43:43 t 1 2 86229 343 0.00 2019-08-20 02:47:53 2019-08-20 07:33:50 t 1 2 86232 212 0.00 2019-08-20 08:35:55 2019-08-20 08:36:33 t 1 2 86238 247 0.00 2019-08-20 09:04:52 2019-08-20 09:05:48 t 1 2 86248 346 0.00 2019-08-20 09:46:56 2019-08-20 09:47:01 t 1 2 86249 318 0.00 2019-08-20 09:43:16 2019-08-20 09:49:39 t 1 2 86251 306 0.00 2019-08-20 09:58:47 2019-08-20 09:59:53 t 1 2 86256 320 0.00 2019-08-20 10:04:06 2019-08-20 10:14:12 t 1 2 86258 288 0.00 2019-08-20 10:21:27 2019-08-20 10:22:31 t 1 2 86262 346 0.00 2019-08-20 10:31:37 2019-08-20 10:31:45 t 1 2 86272 212 0.00 2019-08-20 11:14:14 2019-08-20 11:14:36 t 1 2 86274 367 0.00 2019-08-20 11:27:54 2019-08-20 11:28:18 t 1 2 86282 372 0.00 2019-08-20 11:31:31 2019-08-20 11:42:57 t 1 2 86287 320 0.00 2019-08-20 12:04:20 2019-08-20 12:14:25 t 1 2 86288 306 0.00 2019-08-20 12:14:44 2019-08-20 12:15:47 t 1 2 86291 306 0.00 2019-08-20 12:19:30 2019-08-20 12:19:39 t 1 2 86297 367 0.00 2019-08-20 12:27:29 2019-08-20 12:28:20 t 1 2 86301 220 0.00 2019-08-20 12:24:03 2019-08-20 12:34:26 t 1 2 86302 220 0.00 2019-08-20 12:28:26 2019-08-20 12:38:31 t 1 2 85994 220 0.00 2019-08-19 16:30:53 2019-08-19 16:31:29 t 1 1 86003 220 0.00 2019-08-19 16:36:10 2019-08-19 16:36:50 t 1 1 86008 220 0.00 2019-08-19 16:38:35 2019-08-19 16:39:11 t 1 1 86011 220 0.00 2019-08-19 16:40:28 2019-08-19 16:41:05 t 1 1 86016 220 0.00 2019-08-19 16:43:59 2019-08-19 16:44:39 t 1 1 86018 220 0.00 2019-08-19 16:45:24 2019-08-19 16:46:10 t 1 1 86023 220 0.00 2019-08-19 16:47:41 2019-08-19 16:48:28 t 1 1 86024 220 0.00 2019-08-19 16:48:28 2019-08-19 16:49:24 t 1 1 86027 220 0.00 2019-08-19 16:50:41 2019-08-19 16:51:19 t 1 1 86029 220 0.00 2019-08-19 16:51:19 2019-08-19 16:52:08 t 1 1 86033 220 0.00 2019-08-19 16:53:59 2019-08-19 16:54:38 t 1 1 86036 220 0.00 2019-08-19 16:56:00 2019-08-19 16:56:38 t 1 1 86039 220 0.00 2019-08-19 16:58:04 2019-08-19 16:58:55 t 1 1 86044 212 0.00 2019-08-19 16:58:23 2019-08-19 17:01:19 t 1 2 86047 220 0.00 2019-08-19 17:02:04 2019-08-19 17:02:39 t 1 1 86051 372 0.00 2019-08-19 16:47:07 2019-08-19 17:04:36 t 1 2 86058 230 0.00 2019-08-19 17:09:16 2019-08-19 17:09:16 f 1 2 86061 220 0.00 2019-08-19 17:10:03 2019-08-19 17:10:59 t 1 1 86065 318 0.00 2019-08-19 17:12:49 2019-08-19 17:12:53 t 1 2 86070 220 0.00 2019-08-19 17:14:45 2019-08-19 17:15:21 t 1 1 86073 220 0.00 2019-08-19 17:16:35 2019-08-19 17:17:09 t 1 1 86075 320 0.00 2019-08-19 17:03:02 2019-08-19 17:18:08 t 1 2 86085 220 0.00 2019-08-19 17:22:42 2019-08-19 17:23:15 t 1 1 86086 220 0.00 2019-08-19 17:23:15 2019-08-19 17:23:52 t 1 1 86090 288 0.00 2019-08-19 17:26:01 2019-08-19 17:27:04 t 1 2 86097 304 0.00 2019-08-19 17:38:40 2019-08-19 17:48:46 t 1 2 86098 357 0.00 2019-08-19 17:48:06 2019-08-19 18:03:11 t 1 2 86099 355 0.00 2019-08-19 17:39:20 2019-08-19 18:09:25 t 1 2 86101 220 0.00 2019-08-19 17:28:08 2019-08-19 18:16:39 t 1 1 86102 372 0.00 2019-08-19 18:10:07 2019-08-19 18:25:13 t 1 2 86103 372 0.00 2019-08-19 18:22:11 2019-08-19 18:29:53 t 1 2 86107 361 0.00 2019-08-19 15:28:28 2019-08-19 18:48:45 t 1 2 86112 324 0.00 2019-08-19 18:45:23 2019-08-19 18:54:43 t 1 2 86120 304 0.00 2019-08-19 19:13:55 2019-08-19 19:24:01 t 1 2 86122 346 0.00 2019-08-19 19:11:16 2019-08-19 19:26:21 t 1 2 86130 385 0.00 2019-08-19 20:10:34 2019-08-19 20:11:29 t 1 2 86134 247 0.00 2019-08-19 20:38:32 2019-08-19 20:41:29 t 1 2 86137 346 0.00 2019-08-19 20:26:20 2019-08-19 20:46:25 t 1 2 86140 346 0.00 2019-08-19 20:48:11 2019-08-19 20:58:17 t 1 2 86150 247 0.00 2019-08-19 21:28:03 2019-08-19 21:28:55 t 1 2 86152 363 0.00 2019-08-19 21:32:34 2019-08-19 21:32:49 t 1 2 86156 343 0.00 2019-08-19 21:44:47 2019-08-19 21:49:40 t 1 2 86157 372 0.00 2019-08-19 21:14:20 2019-08-19 21:54:25 t 1 2 86161 385 0.00 2019-08-19 20:11:43 2019-08-19 22:04:07 t 1 2 86174 212 0.00 2019-08-19 23:04:33 2019-08-19 23:05:05 t 1 2 86175 308 0.00 2019-08-19 07:43:40 2019-08-19 23:08:46 t 1 2 86183 212 0.00 2019-08-19 23:22:15 2019-08-19 23:22:43 t 1 2 86186 212 0.00 2019-08-20 00:01:18 2019-08-20 00:01:49 t 1 2 86189 320 0.00 2019-08-20 00:16:19 2019-08-20 00:18:04 t 1 2 86191 320 0.00 2019-08-20 00:21:41 2019-08-20 00:31:46 t 1 2 86193 288 0.00 2019-08-20 00:34:19 2019-08-20 00:35:24 t 1 2 86204 324 0.00 2019-08-20 00:57:01 2019-08-20 01:02:01 t 1 2 86207 311 0.00 2019-08-20 00:11:50 2019-08-20 01:21:56 t 1 2 86208 355 0.00 2019-08-20 00:59:13 2019-08-20 01:29:18 t 1 2 86212 220 0.00 2019-08-20 01:38:42 2019-08-20 01:39:17 t 1 1 86213 220 0.00 2019-08-20 01:39:17 2019-08-20 01:41:24 t 1 1 86216 220 0.00 2019-08-20 01:52:55 2019-08-20 01:53:31 t 1 1 86220 324 0.00 2019-08-20 03:06:18 2019-08-20 03:16:23 t 1 2 86225 346 0.00 2019-08-20 03:19:16 2019-08-20 03:44:21 t 1 2 86233 220 0.00 2019-08-20 02:01:26 2019-08-20 08:38:33 t 1 1 86236 220 0.00 2019-08-20 08:47:45 2019-08-20 08:48:29 t 1 1 86239 288 0.00 2019-08-20 09:08:07 2019-08-20 09:09:10 t 1 2 86242 324 0.00 2019-08-20 09:08:50 2019-08-20 09:24:08 t 1 2 86244 355 0.00 2019-08-20 09:27:58 2019-08-20 09:28:32 t 1 2 86250 324 0.00 2019-08-20 09:32:31 2019-08-20 09:54:58 t 1 2 86255 346 0.00 2019-08-20 09:47:16 2019-08-20 10:07:21 t 1 2 86257 288 0.00 2019-08-20 10:20:08 2019-08-20 10:21:11 t 1 2 86263 355 0.00 2019-08-20 09:37:47 2019-08-20 10:32:52 t 1 2 86268 367 0.00 2019-08-20 10:58:20 2019-08-20 10:59:25 t 1 2 86269 367 0.00 2019-08-20 10:57:40 2019-08-20 11:07:45 t 1 2 86271 294 0.00 2019-08-20 10:13:54 2019-08-20 11:14:18 t 1 2 86273 220 0.00 2019-08-20 10:44:45 2019-08-20 11:24:23 t 1 2 86276 367 0.00 2019-08-20 11:30:20 2019-08-20 11:30:20 f 1 2 86278 320 0.00 2019-08-20 11:21:57 2019-08-20 11:32:03 t 1 2 86280 294 0.00 2019-08-20 11:16:30 2019-08-20 11:36:54 t 1 2 86283 296 0.00 2019-08-20 10:44:28 2019-08-20 11:44:34 t 1 2 86285 367 0.00 2019-08-20 11:30:39 2019-08-20 11:56:26 t 1 2 86290 306 0.00 2019-08-20 12:17:54 2019-08-20 12:19:01 t 1 2 86295 372 0.00 2019-08-20 12:24:27 2019-08-20 12:25:32 t 1 2 86296 220 0.00 2019-08-20 12:28:05 2019-08-20 12:28:14 t 1 2 86300 375 0.00 2019-08-20 11:47:28 2019-08-20 12:34:21 t 1 2 86303 346 0.00 2019-08-20 12:28:53 2019-08-20 12:38:58 t 1 2 86306 355 0.00 2019-08-20 11:45:05 2019-08-20 12:40:10 t 1 2 86311 212 0.00 2019-08-20 12:54:54 2019-08-20 12:55:12 t 1 2 86313 304 0.00 2019-08-20 12:50:34 2019-08-20 13:00:39 t 1 2 86318 318 0.00 2019-08-20 12:31:04 2019-08-20 13:11:09 t 1 2 86320 306 0.00 2019-08-20 13:11:25 2019-08-20 13:12:33 t 1 2 86322 306 0.00 2019-08-20 13:13:26 2019-08-20 13:14:33 t 1 2 86325 306 0.00 2019-08-20 13:23:09 2019-08-20 13:24:10 t 1 2 86332 320 0.00 2019-08-20 13:36:15 2019-08-20 13:49:56 t 1 2 86344 306 0.00 2019-08-20 14:30:50 2019-08-20 14:31:53 t 1 2 86348 343 0.00 2019-08-20 13:53:19 2019-08-20 14:33:24 t 1 2 86359 306 0.00 2019-08-20 14:56:34 2019-08-20 14:57:35 t 1 2 86362 306 0.00 2019-08-20 15:02:25 2019-08-20 15:03:28 t 1 2 86370 294 0.00 2019-08-20 14:15:44 2019-08-20 15:16:05 t 1 2 86374 346 0.00 2019-08-20 15:20:27 2019-08-20 15:29:45 t 1 2 86376 385 0.00 2019-08-20 13:47:23 2019-08-20 15:45:36 t 1 2 86380 212 0.00 2019-08-20 15:59:08 2019-08-20 15:59:56 t 1 2 86384 306 0.00 2019-08-20 16:26:38 2019-08-20 16:27:45 t 1 2 86386 306 0.00 2019-08-20 16:28:53 2019-08-20 16:29:57 t 1 2 86391 306 0.00 2019-08-20 16:40:21 2019-08-20 16:41:25 t 1 2 86392 306 0.00 2019-08-20 16:42:16 2019-08-20 16:42:26 t 1 2 86396 306 0.00 2019-08-20 16:45:00 2019-08-20 16:46:02 t 1 2 86412 288 0.00 2019-08-20 17:09:21 2019-08-20 17:10:24 t 1 2 86416 304 0.00 2019-08-20 17:26:01 2019-08-20 17:36:06 t 1 2 86420 306 0.00 2019-08-20 17:44:55 2019-08-20 17:46:01 t 1 2 86428 220 0.00 2019-08-20 17:31:09 2019-08-20 18:08:14 t 1 2 86304 247 0.00 2019-08-20 12:38:01 2019-08-20 12:39:14 t 1 2 86308 220 0.00 2019-08-20 12:15:39 2019-08-20 12:45:51 t 1 1 86310 220 0.00 2019-08-20 12:49:51 2019-08-20 12:52:57 t 1 2 86312 306 0.00 2019-08-20 12:55:23 2019-08-20 12:56:28 t 1 2 86329 304 0.00 2019-08-20 13:25:42 2019-08-20 13:35:47 t 1 2 86334 343 0.00 2019-08-20 13:31:29 2019-08-20 13:56:35 t 1 2 86336 320 0.00 2019-08-20 13:51:41 2019-08-20 13:58:11 t 1 2 86342 306 0.00 2019-08-20 14:20:17 2019-08-20 14:21:21 t 1 2 86343 346 0.00 2019-08-20 13:26:58 2019-08-20 14:31:28 t 1 2 86345 355 0.00 2019-08-20 12:32:03 2019-08-20 14:32:08 t 1 2 86346 339 0.00 2019-08-20 13:43:55 2019-08-20 14:32:18 t 1 2 86356 306 0.00 2019-08-20 14:52:48 2019-08-20 14:53:55 t 1 2 86357 306 0.00 2019-08-20 14:54:11 2019-08-20 14:54:30 t 1 2 86363 306 0.00 2019-08-20 15:06:26 2019-08-20 15:07:25 t 1 2 86365 306 0.00 2019-08-20 15:09:15 2019-08-20 15:10:03 t 1 2 86367 373 0.00 2019-08-20 15:10:31 2019-08-20 15:11:37 t 1 2 86388 306 0.00 2019-08-20 16:32:35 2019-08-20 16:33:39 t 1 2 86397 292 0.00 2019-08-20 16:45:47 2019-08-20 16:46:44 t 1 2 86398 292 0.00 2019-08-20 16:47:09 2019-08-20 16:47:24 t 1 2 86400 292 0.00 2019-08-20 16:48:11 2019-08-20 16:49:20 t 1 2 86403 306 0.00 2019-08-20 16:58:56 2019-08-20 17:00:00 t 1 2 86409 324 0.00 2019-08-20 17:04:36 2019-08-20 17:05:41 t 1 2 86414 373 0.00 2019-08-20 17:23:25 2019-08-20 17:24:29 t 1 2 86417 306 0.00 2019-08-20 17:39:16 2019-08-20 17:40:20 t 1 2 86422 288 0.00 2019-08-20 17:48:53 2019-08-20 17:49:56 t 1 2 86426 355 0.00 2019-08-20 14:51:55 2019-08-20 17:57:00 t 1 2 86429 288 0.00 2019-08-20 18:07:14 2019-08-20 18:08:20 t 1 2 86434 294 0.00 2019-08-20 17:23:12 2019-08-20 18:23:36 t 1 2 86438 346 0.00 2019-08-20 18:33:51 2019-08-20 18:33:55 t 1 2 86444 306 0.00 2019-08-20 18:56:10 2019-08-20 18:57:14 t 1 2 86446 355 0.00 2019-08-20 18:43:16 2019-08-20 19:33:21 t 1 2 86450 346 0.00 2019-08-20 19:16:59 2019-08-20 19:43:30 t 1 2 86455 288 0.00 2019-08-20 19:51:02 2019-08-20 19:52:08 t 1 2 86457 288 0.00 2019-08-20 19:54:14 2019-08-20 19:55:06 t 1 2 86462 288 0.00 2019-08-20 20:00:30 2019-08-20 20:01:35 t 1 2 86465 288 0.00 2019-08-20 20:06:47 2019-08-20 20:07:52 t 1 2 86470 288 0.00 2019-08-20 20:11:09 2019-08-20 20:12:11 t 1 2 86476 220 0.00 2019-08-20 20:14:55 2019-08-20 20:15:30 t 1 1 86478 288 0.00 2019-08-20 20:16:34 2019-08-20 20:17:37 t 1 2 86480 288 0.00 2019-08-20 20:23:34 2019-08-20 20:24:38 t 1 2 86484 355 0.00 2019-08-20 20:20:32 2019-08-20 20:30:37 t 1 2 86487 320 0.00 2019-08-20 20:31:04 2019-08-20 20:41:09 t 1 2 86489 220 0.00 2019-08-20 20:37:08 2019-08-20 20:46:23 t 1 1 86495 294 0.00 2019-08-20 19:14:12 2019-08-20 21:09:35 t 1 2 86497 292 0.00 2019-08-20 20:56:25 2019-08-20 21:26:31 t 1 2 86527 288 0.00 2019-08-20 23:24:57 2019-08-20 23:26:01 t 1 2 86530 320 0.00 2019-08-20 23:31:47 2019-08-20 23:32:05 t 1 2 86532 343 0.00 2019-08-20 23:43:35 2019-08-20 23:48:00 t 1 2 86537 346 0.00 2019-08-20 23:26:29 2019-08-20 23:56:34 t 1 2 86541 361 0.00 2019-08-20 22:59:28 2019-08-21 00:00:47 t 1 2 86548 220 0.00 2019-08-21 00:06:18 2019-08-21 00:11:17 t 1 1 86551 346 0.00 2019-08-20 23:51:48 2019-08-21 00:51:53 t 1 2 86552 324 0.00 2019-08-20 19:35:26 2019-08-21 01:05:31 t 1 2 86553 318 0.00 2019-08-21 00:46:49 2019-08-21 01:16:54 t 1 2 86557 343 0.00 2019-08-21 01:44:15 2019-08-21 01:49:10 t 1 2 86558 375 0.00 2019-08-21 00:47:21 2019-08-21 01:59:01 t 1 2 86564 324 0.00 2019-08-21 02:28:28 2019-08-21 02:29:19 t 1 2 86566 381 0.00 2019-08-21 02:26:16 2019-08-21 02:41:21 t 1 2 86567 381 0.00 2019-08-21 02:37:11 2019-08-21 02:47:16 t 1 2 86572 320 0.00 2019-08-21 03:05:38 2019-08-21 03:15:43 t 1 2 86573 324 0.00 2019-08-21 03:06:35 2019-08-21 03:25:04 t 1 2 86576 302 0.00 2019-08-21 03:54:54 2019-08-21 04:09:59 t 1 2 86577 339 0.00 2019-08-21 02:59:01 2019-08-21 04:50:24 t 1 2 86579 346 0.00 2019-08-21 05:11:17 2019-08-21 05:12:42 t 1 2 86582 288 0.00 2019-08-21 06:58:47 2019-08-21 06:59:49 t 1 2 86583 220 0.00 2019-08-21 06:42:48 2019-08-21 07:09:11 t 1 2 86584 220 0.00 2019-08-21 07:13:08 2019-08-21 07:15:44 t 1 1 86588 294 0.00 2019-08-21 06:51:41 2019-08-21 07:33:50 t 1 2 86589 220 0.00 2019-08-21 07:34:52 2019-08-21 07:56:15 t 1 2 86593 320 0.00 2019-08-21 07:51:18 2019-08-21 08:01:23 t 1 2 86598 292 0.00 2019-08-21 08:28:22 2019-08-21 08:28:22 t 1 2 86600 292 0.00 2019-08-21 08:30:51 2019-08-21 08:30:51 f 1 2 86608 292 0.00 2019-08-21 08:31:54 2019-08-21 08:31:54 f 1 2 86610 292 0.00 2019-08-21 08:32:37 2019-08-21 08:32:37 f 1 2 86614 292 0.00 2019-08-21 08:34:58 2019-08-21 08:34:58 f 1 2 86620 306 0.00 2019-08-21 09:03:33 2019-08-21 09:04:39 t 1 2 86625 304 0.00 2019-08-21 09:18:59 2019-08-21 09:22:34 t 1 2 86629 318 0.00 2019-08-21 08:54:56 2019-08-21 09:28:17 t 1 2 86630 288 0.00 2019-08-21 09:32:37 2019-08-21 09:33:45 t 1 2 86638 355 0.00 2019-08-21 08:52:39 2019-08-21 09:57:45 t 1 2 86639 306 0.00 2019-08-21 10:00:12 2019-08-21 10:01:18 t 1 2 86641 320 0.00 2019-08-21 09:56:46 2019-08-21 10:06:51 t 1 2 86648 220 0.00 2019-08-21 09:39:58 2019-08-21 10:22:46 t 1 1 86652 346 0.00 2019-08-21 10:24:48 2019-08-21 10:34:11 t 1 2 86656 372 0.00 2019-08-21 10:52:43 2019-08-21 10:53:55 t 1 2 86657 367 0.00 2019-08-21 10:56:52 2019-08-21 11:01:20 t 1 2 86661 220 0.00 2019-08-21 11:04:38 2019-08-21 11:05:09 t 1 1 86662 220 0.00 2019-08-21 11:05:09 2019-08-21 11:06:04 t 1 1 86665 304 0.00 2019-08-21 10:53:17 2019-08-21 11:08:22 t 1 2 86670 304 0.00 2019-08-21 11:07:48 2019-08-21 11:17:53 t 1 2 86674 220 0.00 2019-08-21 11:21:41 2019-08-21 11:22:38 t 1 1 86680 220 0.00 2019-08-21 11:25:06 2019-08-21 11:25:41 t 1 1 86682 220 0.00 2019-08-21 11:25:41 2019-08-21 11:26:15 t 1 1 86685 220 0.00 2019-08-21 11:27:20 2019-08-21 11:27:52 t 1 1 86697 220 0.00 2019-08-21 11:32:36 2019-08-21 11:33:12 t 1 1 86702 220 0.00 2019-08-21 11:36:01 2019-08-21 11:36:34 t 1 1 86705 220 0.00 2019-08-21 11:37:08 2019-08-21 11:37:42 t 1 1 86712 351 0.00 2019-08-21 11:31:43 2019-08-21 11:41:48 t 1 2 86715 320 0.00 2019-08-21 11:33:23 2019-08-21 11:43:28 t 1 2 86717 306 0.00 2019-08-21 11:43:40 2019-08-21 11:44:41 t 1 2 86718 220 0.00 2019-08-21 11:42:01 2019-08-21 11:45:41 t 1 1 86720 306 0.00 2019-08-21 11:46:56 2019-08-21 11:48:01 t 1 2 86726 331 0.00 2019-08-21 11:59:03 2019-08-21 12:00:10 t 1 2 86731 220 0.00 2019-08-21 12:02:19 2019-08-21 12:10:15 t 1 1 86735 220 0.00 2019-08-21 12:10:39 2019-08-21 12:12:43 t 1 2 86738 349 0.00 2019-08-21 12:13:53 2019-08-21 12:14:59 t 1 2 86739 306 0.00 2019-08-21 12:16:38 2019-08-21 12:17:47 t 1 2 86317 306 0.00 2019-08-20 13:09:19 2019-08-20 13:10:20 t 1 2 86319 306 0.00 2019-08-20 13:11:43 2019-08-20 13:11:43 t 1 2 86321 306 0.00 2019-08-20 13:11:55 2019-08-20 13:13:00 t 1 2 86323 288 0.00 2019-08-20 13:18:26 2019-08-20 13:19:31 t 1 2 86324 306 0.00 2019-08-20 13:22:56 2019-08-20 13:22:56 t 1 2 86326 324 0.00 2019-08-20 13:26:57 2019-08-20 13:28:33 t 1 2 86327 288 0.00 2019-08-20 13:29:33 2019-08-20 13:30:38 t 1 2 86330 351 0.00 2019-08-20 13:43:17 2019-08-20 13:44:20 t 1 2 86331 247 0.00 2019-08-20 13:48:36 2019-08-20 13:48:55 t 1 2 86333 381 0.00 2019-08-20 13:43:46 2019-08-20 13:53:51 t 1 2 86338 212 0.00 2019-08-20 14:01:03 2019-08-20 14:02:36 t 1 2 86339 294 0.00 2019-08-20 13:05:53 2019-08-20 14:06:14 t 1 2 86351 212 0.00 2019-08-20 14:37:55 2019-08-20 14:38:43 t 1 2 86354 343 0.00 2019-08-20 14:31:38 2019-08-20 14:50:49 t 1 2 86355 220 0.00 2019-08-20 14:51:44 2019-08-20 14:53:17 t 1 2 86360 318 0.00 2019-08-20 14:12:30 2019-08-20 14:58:19 t 1 2 86361 306 0.00 2019-08-20 15:00:03 2019-08-20 15:01:07 t 1 2 86364 306 0.00 2019-08-20 15:08:17 2019-08-20 15:08:27 t 1 2 86368 320 0.00 2019-08-20 14:02:37 2019-08-20 15:12:42 t 1 2 86373 367 0.00 2019-08-20 14:36:52 2019-08-20 15:29:18 t 1 2 86383 306 0.00 2019-08-20 16:26:10 2019-08-20 16:26:30 t 1 2 86387 306 0.00 2019-08-20 16:31:06 2019-08-20 16:32:03 t 1 2 86389 306 0.00 2019-08-20 16:35:33 2019-08-20 16:36:35 t 1 2 86390 306 0.00 2019-08-20 16:38:25 2019-08-20 16:38:40 t 1 2 86393 306 0.00 2019-08-20 16:43:00 2019-08-20 16:44:07 t 1 2 86399 339 0.00 2019-08-20 16:46:14 2019-08-20 16:48:31 t 1 2 86401 320 0.00 2019-08-20 16:42:15 2019-08-20 16:52:21 t 1 2 86402 294 0.00 2019-08-20 15:23:35 2019-08-20 16:57:56 t 1 2 86404 306 0.00 2019-08-20 17:00:34 2019-08-20 17:01:36 t 1 2 86405 385 0.00 2019-08-20 16:26:08 2019-08-20 17:04:04 t 1 2 86406 306 0.00 2019-08-20 17:03:08 2019-08-20 17:04:13 t 1 2 86410 306 0.00 2019-08-20 17:05:10 2019-08-20 17:06:15 t 1 2 86413 220 0.00 2019-08-20 17:07:10 2019-08-20 17:10:48 t 1 1 86419 288 0.00 2019-08-20 17:44:11 2019-08-20 17:45:18 t 1 2 86421 367 0.00 2019-08-20 17:46:41 2019-08-20 17:47:41 t 1 2 86424 288 0.00 2019-08-20 17:53:48 2019-08-20 17:54:56 t 1 2 86427 220 0.00 2019-08-20 17:30:34 2019-08-20 18:07:46 t 1 1 86431 363 0.00 2019-08-20 16:34:35 2019-08-20 18:09:40 t 1 2 86436 220 0.00 2019-08-20 18:26:40 2019-08-20 18:29:03 t 1 2 86441 306 0.00 2019-08-20 18:52:59 2019-08-20 18:54:05 t 1 2 86445 339 0.00 2019-08-20 18:54:06 2019-08-20 19:31:26 t 1 2 86448 320 0.00 2019-08-20 18:57:25 2019-08-20 19:42:30 t 1 2 86451 304 0.00 2019-08-20 19:37:30 2019-08-20 19:47:35 t 1 2 86453 288 0.00 2019-08-20 19:48:23 2019-08-20 19:49:29 t 1 2 86458 288 0.00 2019-08-20 19:55:12 2019-08-20 19:56:18 t 1 2 86464 212 0.00 2019-08-20 18:47:00 2019-08-20 20:03:45 t 1 2 86468 220 0.00 2019-08-20 20:10:07 2019-08-20 20:11:02 t 1 1 86472 220 0.00 2019-08-20 20:12:37 2019-08-20 20:13:12 t 1 1 86473 220 0.00 2019-08-20 20:13:12 2019-08-20 20:13:45 t 1 1 86479 288 0.00 2019-08-20 20:21:40 2019-08-20 20:22:44 t 1 2 86482 220 0.00 2019-08-20 20:25:55 2019-08-20 20:26:30 t 1 1 86485 220 0.00 2019-08-20 20:26:30 2019-08-20 20:31:52 t 1 1 86488 346 0.00 2019-08-20 20:18:20 2019-08-20 20:44:00 t 1 2 86490 320 0.00 2019-08-20 20:47:26 2019-08-20 20:57:31 t 1 2 86491 212 0.00 2019-08-20 20:03:58 2019-08-20 20:59:16 t 1 2 86492 339 0.00 2019-08-20 21:00:38 2019-08-20 21:02:02 t 1 2 86494 247 0.00 2019-08-20 21:07:04 2019-08-20 21:08:03 t 1 2 86498 220 0.00 2019-08-20 20:54:23 2019-08-20 21:31:40 t 1 1 86502 220 0.00 2019-08-20 20:59:20 2019-08-20 21:37:40 t 1 2 86506 367 0.00 2019-08-20 21:25:24 2019-08-20 22:00:36 t 1 2 86512 212 0.00 2019-08-20 22:13:55 2019-08-20 22:19:46 t 1 2 86515 346 0.00 2019-08-20 22:39:19 2019-08-20 22:49:24 t 1 2 86517 355 0.00 2019-08-20 21:14:29 2019-08-20 22:59:34 t 1 2 86520 212 0.00 2019-08-20 23:05:06 2019-08-20 23:08:10 t 1 2 86528 247 0.00 2019-08-20 23:24:33 2019-08-20 23:26:09 t 1 2 86531 306 0.00 2019-08-20 23:45:27 2019-08-20 23:46:30 t 1 2 86534 346 0.00 2019-08-20 23:44:47 2019-08-20 23:51:18 t 1 2 86536 324 0.00 2019-08-20 23:53:58 2019-08-20 23:54:19 t 1 2 86539 306 0.00 2019-08-20 23:58:32 2019-08-20 23:59:34 t 1 2 86542 346 0.00 2019-08-20 23:45:02 2019-08-21 00:00:51 t 1 2 86546 373 0.00 2019-08-21 00:08:44 2019-08-21 00:09:47 t 1 2 86550 304 0.00 2019-08-21 00:27:56 2019-08-21 00:32:00 t 1 2 86554 363 0.00 2019-08-20 19:03:14 2019-08-21 01:28:20 t 1 2 86555 212 0.00 2019-08-21 01:30:57 2019-08-21 01:31:17 t 1 2 86562 324 0.00 2019-08-21 02:23:27 2019-08-21 02:24:52 t 1 2 86568 381 0.00 2019-08-21 02:48:46 2019-08-21 02:50:35 t 1 2 86569 381 0.00 2019-08-21 02:48:21 2019-08-21 02:53:26 t 1 2 86571 324 0.00 2019-08-21 02:54:21 2019-08-21 03:03:28 t 1 2 86578 355 0.00 2019-08-20 23:11:40 2019-08-21 05:01:46 t 1 2 86580 322 0.00 2019-08-21 04:20:27 2019-08-21 05:28:34 t 1 2 86585 220 0.00 2019-08-21 07:17:59 2019-08-21 07:28:04 t 1 2 86586 288 0.00 2019-08-21 07:29:42 2019-08-21 07:30:47 t 1 2 86592 288 0.00 2019-08-21 08:00:07 2019-08-21 08:01:16 t 1 2 86597 306 0.00 2019-08-21 08:20:56 2019-08-21 08:22:03 t 1 2 86599 320 0.00 2019-08-21 08:29:46 2019-08-21 08:29:47 t 1 2 86602 292 0.00 2019-08-21 08:31:04 2019-08-21 08:31:04 f 1 2 86604 292 0.00 2019-08-21 08:31:17 2019-08-21 08:31:17 f 1 2 86606 292 0.00 2019-08-21 08:31:31 2019-08-21 08:31:31 f 1 2 86611 292 0.00 2019-08-21 08:33:07 2019-08-21 08:33:07 f 1 2 86612 292 0.00 2019-08-21 08:33:46 2019-08-21 08:33:46 f 1 2 86617 292 0.00 2019-08-21 08:28:25 2019-08-21 08:38:30 t 1 2 86618 320 0.00 2019-08-21 08:30:08 2019-08-21 08:40:13 t 1 2 86621 294 0.00 2019-08-21 08:41:07 2019-08-21 09:06:43 t 1 2 86632 306 0.00 2019-08-21 09:35:39 2019-08-21 09:36:43 t 1 2 86634 220 0.00 2019-08-21 09:37:07 2019-08-21 09:38:12 t 1 1 86640 304 0.00 2019-08-21 09:43:13 2019-08-21 10:03:18 t 1 2 86645 304 0.00 2019-08-21 10:06:53 2019-08-21 10:16:58 t 1 2 86647 306 0.00 2019-08-21 10:19:19 2019-08-21 10:20:24 t 1 2 86650 304 0.00 2019-08-21 10:14:50 2019-08-21 10:24:56 t 1 2 86653 212 0.00 2019-08-21 10:41:48 2019-08-21 10:42:52 t 1 2 86654 372 0.00 2019-08-21 10:31:22 2019-08-21 10:45:11 t 1 2 86658 346 0.00 2019-08-21 10:37:43 2019-08-21 11:02:48 t 1 2 86663 220 0.00 2019-08-21 11:06:02 2019-08-21 11:06:39 t 1 1 86667 220 0.00 2019-08-21 11:07:13 2019-08-21 11:09:11 t 1 1 86668 346 0.00 2019-08-21 11:03:11 2019-08-21 11:13:16 t 1 2 86669 220 0.00 2019-08-21 11:10:31 2019-08-21 11:17:51 t 1 1 86672 220 0.00 2019-08-21 11:17:51 2019-08-21 11:21:08 t 1 1 86378 318 0.00 2019-08-20 15:30:39 2019-08-20 15:49:15 t 1 2 86379 324 0.00 2019-08-20 15:58:52 2019-08-20 15:58:53 t 1 2 86381 361 0.00 2019-08-20 15:27:55 2019-08-20 16:06:23 t 1 2 86382 346 0.00 2019-08-20 16:01:03 2019-08-20 16:26:08 t 1 2 86385 304 0.00 2019-08-20 16:18:42 2019-08-20 16:28:47 t 1 2 86394 247 0.00 2019-08-20 16:42:46 2019-08-20 16:44:34 t 1 2 86395 247 0.00 2019-08-20 16:44:49 2019-08-20 16:45:57 t 1 2 86407 288 0.00 2019-08-20 17:04:07 2019-08-20 17:05:09 t 1 2 86408 320 0.00 2019-08-20 16:50:25 2019-08-20 17:05:31 t 1 2 86411 251 0.00 2019-08-20 17:09:52 2019-08-20 17:09:52 f 1 2 86415 308 0.00 2019-08-20 09:16:13 2019-08-20 17:26:19 t 1 2 86418 288 0.00 2019-08-20 17:40:58 2019-08-20 17:42:01 t 1 2 86423 306 0.00 2019-08-20 17:51:43 2019-08-20 17:52:49 t 1 2 86425 288 0.00 2019-08-20 17:55:15 2019-08-20 17:56:21 t 1 2 86433 306 0.00 2019-08-20 18:17:13 2019-08-20 18:18:17 t 1 2 86439 346 0.00 2019-08-20 18:34:03 2019-08-20 18:36:16 t 1 2 86440 212 0.00 2019-08-20 18:38:19 2019-08-20 18:38:39 t 1 2 86442 320 0.00 2019-08-20 18:45:30 2019-08-20 18:55:36 t 1 2 86443 269 0.00 2019-08-20 18:56:35 2019-08-20 18:56:35 f 1 2 86460 288 0.00 2019-08-20 19:58:53 2019-08-20 20:00:00 t 1 2 86463 288 0.00 2019-08-20 20:02:24 2019-08-20 20:03:27 t 1 2 86466 288 0.00 2019-08-20 20:08:14 2019-08-20 20:09:13 t 1 2 86467 288 0.00 2019-08-20 20:09:18 2019-08-20 20:10:22 t 1 2 86471 220 0.00 2019-08-20 20:12:04 2019-08-20 20:12:37 t 1 1 86475 220 0.00 2019-08-20 20:14:20 2019-08-20 20:14:55 t 1 1 86493 304 0.00 2019-08-20 20:55:08 2019-08-20 21:05:13 t 1 2 86503 318 0.00 2019-08-20 20:57:26 2019-08-20 21:44:23 t 1 2 86504 372 0.00 2019-08-20 21:27:34 2019-08-20 21:52:39 t 1 2 86505 220 0.00 2019-08-20 21:52:13 2019-08-20 21:55:30 t 1 1 86507 288 0.00 2019-08-20 22:07:23 2019-08-20 22:08:27 t 1 2 86509 288 0.00 2019-08-20 22:14:05 2019-08-20 22:15:08 t 1 2 86511 349 0.00 2019-08-20 22:17:34 2019-08-20 22:18:37 t 1 2 86513 349 0.00 2019-08-20 22:18:48 2019-08-20 22:19:54 t 1 2 86519 212 0.00 2019-08-20 23:02:37 2019-08-20 23:04:34 t 1 2 86521 349 0.00 2019-08-20 23:07:25 2019-08-20 23:08:32 t 1 2 86522 212 0.00 2019-08-20 23:10:53 2019-08-20 23:11:41 t 1 2 86524 320 0.00 2019-08-20 23:11:53 2019-08-20 23:21:58 t 1 2 86525 220 0.00 2019-08-20 21:15:52 2019-08-20 23:23:39 t 1 2 86538 320 0.00 2019-08-20 23:32:17 2019-08-20 23:57:22 t 1 2 86543 296 0.00 2019-08-20 23:59:39 2019-08-21 00:02:02 t 1 2 86545 333 0.00 2019-08-20 23:39:04 2019-08-21 00:08:08 t 1 2 86556 318 0.00 2019-08-21 01:26:47 2019-08-21 01:31:30 t 1 2 86559 320 0.00 2019-08-21 01:35:12 2019-08-21 02:00:17 t 1 2 86560 220 0.00 2019-08-21 01:31:38 2019-08-21 02:03:01 t 1 2 86563 381 0.00 2019-08-21 02:12:58 2019-08-21 02:28:03 t 1 2 86565 324 0.00 2019-08-21 02:31:16 2019-08-21 02:31:23 t 1 2 86574 322 0.00 2019-08-21 01:57:21 2019-08-21 03:36:32 t 1 2 86575 343 0.00 2019-08-21 03:38:06 2019-08-21 03:42:44 t 1 2 86581 318 0.00 2019-08-21 06:45:29 2019-08-21 06:48:19 t 1 2 86594 212 0.00 2019-08-21 08:01:46 2019-08-21 08:03:17 t 1 2 86607 292 0.00 2019-08-21 08:31:38 2019-08-21 08:31:38 f 1 2 86609 292 0.00 2019-08-21 08:32:30 2019-08-21 08:32:30 f 1 2 86623 247 0.00 2019-08-21 09:12:11 2019-08-21 09:15:11 t 1 2 86628 306 0.00 2019-08-21 09:26:05 2019-08-21 09:27:13 t 1 2 86635 304 0.00 2019-08-21 09:26:34 2019-08-21 09:46:40 t 1 2 86642 306 0.00 2019-08-21 10:06:20 2019-08-21 10:07:24 t 1 2 86643 304 0.00 2019-08-21 09:57:42 2019-08-21 10:12:47 t 1 2 86644 304 0.00 2019-08-21 10:14:00 2019-08-21 10:14:04 t 1 2 86646 306 0.00 2019-08-21 10:18:05 2019-08-21 10:19:06 t 1 2 86649 346 0.00 2019-08-21 10:24:19 2019-08-21 10:24:23 t 1 2 86651 220 0.00 2019-08-21 10:23:06 2019-08-21 10:30:27 t 1 2 86655 304 0.00 2019-08-21 10:53:04 2019-08-21 10:53:10 t 1 2 86660 220 0.00 2019-08-21 10:22:46 2019-08-21 11:04:38 t 1 1 86673 220 0.00 2019-08-21 11:21:08 2019-08-21 11:21:42 t 1 1 86677 220 0.00 2019-08-21 11:23:12 2019-08-21 11:23:47 t 1 1 86679 220 0.00 2019-08-21 11:23:46 2019-08-21 11:25:07 t 1 1 86701 220 0.00 2019-08-21 11:33:11 2019-08-21 11:36:02 t 1 1 86706 220 0.00 2019-08-21 11:37:41 2019-08-21 11:38:14 t 1 1 86707 220 0.00 2019-08-21 11:38:13 2019-08-21 11:38:49 t 1 1 86711 306 0.00 2019-08-21 11:40:31 2019-08-21 11:41:32 t 1 2 86713 220 0.00 2019-08-21 11:41:28 2019-08-21 11:42:01 t 1 1 86716 288 0.00 2019-08-21 11:42:42 2019-08-21 11:43:46 t 1 2 86721 220 0.00 2019-08-21 11:44:51 2019-08-21 11:56:57 t 1 2 86723 220 0.00 2019-08-21 11:57:13 2019-08-21 11:57:49 t 1 1 86730 220 0.00 2019-08-21 12:03:25 2019-08-21 12:09:31 t 1 2 86732 220 0.00 2019-08-21 11:45:55 2019-08-21 12:10:34 t 1 1 86733 220 0.00 2019-08-21 12:10:34 2019-08-21 12:11:09 t 1 1 86745 220 0.00 2019-08-21 12:15:29 2019-08-21 12:35:59 t 1 1 86747 304 0.00 2019-08-21 12:28:17 2019-08-21 12:38:22 t 1 2 86750 331 0.00 2019-08-21 12:55:19 2019-08-21 12:56:21 t 1 2 86763 320 0.00 2019-08-21 12:56:56 2019-08-21 13:12:01 t 1 2 86769 296 0.00 2019-08-21 13:49:07 2019-08-21 13:56:30 t 1 2 86778 306 0.00 2019-08-21 14:25:37 2019-08-21 14:26:41 t 1 2 86780 306 0.00 2019-08-21 14:30:37 2019-08-21 14:31:39 t 1 2 86781 288 0.00 2019-08-21 14:34:07 2019-08-21 14:35:10 t 1 2 86785 220 0.00 2019-08-21 14:29:32 2019-08-21 14:42:55 t 1 2 86786 306 0.00 2019-08-21 14:47:57 2019-08-21 14:48:58 t 1 2 86787 320 0.00 2019-08-21 14:41:55 2019-08-21 14:52:00 t 1 2 86792 324 0.00 2019-08-21 15:07:03 2019-08-21 15:08:07 t 1 2 86794 324 0.00 2019-08-21 15:09:21 2019-08-21 15:10:25 t 1 2 86799 296 0.00 2019-08-21 15:25:50 2019-08-21 15:30:11 t 1 2 86802 339 0.00 2019-08-21 14:32:16 2019-08-21 15:32:39 t 1 2 86804 304 0.00 2019-08-21 15:21:28 2019-08-21 15:36:33 t 1 2 86806 220 0.00 2019-08-21 15:34:17 2019-08-21 15:40:59 t 1 1 86810 306 0.00 2019-08-21 15:55:47 2019-08-21 15:56:52 t 1 2 86815 220 0.00 2019-08-21 16:02:30 2019-08-21 16:07:56 t 1 1 86816 306 0.00 2019-08-21 16:15:28 2019-08-21 16:16:32 t 1 2 86819 306 0.00 2019-08-21 16:18:39 2019-08-21 16:19:42 t 1 2 86820 220 0.00 2019-08-21 16:18:54 2019-08-21 16:22:15 t 1 1 86822 296 0.00 2019-08-21 16:26:56 2019-08-21 16:33:20 t 1 2 86825 294 0.00 2019-08-21 15:35:55 2019-08-21 16:36:00 t 1 2 86829 220 0.00 2019-08-21 16:34:33 2019-08-21 16:42:38 t 1 2 86833 355 0.00 2019-08-21 16:09:08 2019-08-21 16:49:13 t 1 2 86838 367 0.00 2019-08-21 16:53:46 2019-08-21 17:01:23 t 1 2 86843 212 0.00 2019-08-21 17:37:43 2019-08-21 17:39:42 t 1 2 86846 349 0.00 2019-08-21 17:44:09 2019-08-21 17:45:12 t 1 2 86848 349 0.00 2019-08-21 17:49:01 2019-08-21 17:50:05 t 1 2 86430 220 0.00 2019-08-20 18:07:48 2019-08-20 18:08:58 t 1 1 86432 346 0.00 2019-08-20 17:52:31 2019-08-20 18:11:07 t 1 2 86435 288 0.00 2019-08-20 18:23:32 2019-08-20 18:24:37 t 1 2 86437 361 0.00 2019-08-20 18:16:36 2019-08-20 18:29:57 t 1 2 86447 324 0.00 2019-08-20 19:34:45 2019-08-20 19:34:49 t 1 2 86449 288 0.00 2019-08-20 19:42:15 2019-08-20 19:43:19 t 1 2 86452 220 0.00 2019-08-20 19:26:19 2019-08-20 19:47:42 t 1 2 86454 288 0.00 2019-08-20 19:49:41 2019-08-20 19:50:48 t 1 2 86456 288 0.00 2019-08-20 19:52:48 2019-08-20 19:53:53 t 1 2 86459 288 0.00 2019-08-20 19:57:05 2019-08-20 19:58:09 t 1 2 86461 346 0.00 2019-08-20 19:46:19 2019-08-20 20:01:24 t 1 2 86469 220 0.00 2019-08-20 20:11:01 2019-08-20 20:12:05 t 1 1 86474 220 0.00 2019-08-20 20:13:45 2019-08-20 20:14:20 t 1 1 86477 220 0.00 2019-08-20 20:15:30 2019-08-20 20:16:05 t 1 1 86481 220 0.00 2019-08-20 20:16:05 2019-08-20 20:25:55 t 1 1 86483 288 0.00 2019-08-20 20:26:44 2019-08-20 20:27:48 t 1 2 86486 288 0.00 2019-08-20 20:37:01 2019-08-20 20:38:04 t 1 2 86496 379 0.00 2019-08-20 20:34:51 2019-08-20 21:24:56 t 1 2 86499 220 0.00 2019-08-20 21:31:40 2019-08-20 21:31:47 t 1 1 86500 296 0.00 2019-08-20 21:31:32 2019-08-20 21:33:52 t 1 2 86501 320 0.00 2019-08-20 21:27:18 2019-08-20 21:37:23 t 1 2 86508 288 0.00 2019-08-20 22:10:40 2019-08-20 22:11:48 t 1 2 86510 294 0.00 2019-08-20 21:15:10 2019-08-20 22:15:34 t 1 2 86514 349 0.00 2019-08-20 22:24:23 2019-08-20 22:25:29 t 1 2 86516 220 0.00 2019-08-20 22:33:46 2019-08-20 22:53:51 t 1 2 86518 212 0.00 2019-08-20 23:02:26 2019-08-20 23:02:27 t 1 2 86523 212 0.00 2019-08-20 23:16:34 2019-08-20 23:17:10 t 1 2 86526 294 0.00 2019-08-20 22:24:05 2019-08-20 23:24:29 t 1 2 86529 322 0.00 2019-08-20 22:53:09 2019-08-20 23:28:11 t 1 2 86533 306 0.00 2019-08-20 23:48:33 2019-08-20 23:49:40 t 1 2 86535 306 0.00 2019-08-20 23:50:35 2019-08-20 23:51:39 t 1 2 86540 320 0.00 2019-08-20 23:50:39 2019-08-21 00:00:44 t 1 2 86544 324 0.00 2019-08-21 00:01:28 2019-08-21 00:02:16 t 1 2 86547 324 0.00 2019-08-20 23:33:43 2019-08-21 00:10:50 t 1 2 86549 288 0.00 2019-08-21 00:15:37 2019-08-21 00:16:42 t 1 2 86561 220 0.00 2019-08-21 01:15:14 2019-08-21 02:17:18 t 1 2 86570 220 0.00 2019-08-21 00:52:13 2019-08-21 02:58:02 t 1 1 86587 220 0.00 2019-08-21 07:15:52 2019-08-21 07:33:50 t 1 2 86590 288 0.00 2019-08-21 07:58:41 2019-08-21 07:59:46 t 1 2 86591 346 0.00 2019-08-21 07:45:10 2019-08-21 08:00:15 t 1 2 86595 292 0.00 2019-08-21 08:14:01 2019-08-21 08:14:49 t 1 2 86596 292 0.00 2019-08-21 08:14:51 2019-08-21 08:14:53 t 1 2 86601 212 0.00 2019-08-21 08:30:14 2019-08-21 08:31:01 t 1 2 86603 292 0.00 2019-08-21 08:31:11 2019-08-21 08:31:11 f 1 2 86605 292 0.00 2019-08-21 08:31:26 2019-08-21 08:31:26 f 1 2 86613 292 0.00 2019-08-21 08:34:08 2019-08-21 08:34:08 f 1 2 86615 292 0.00 2019-08-21 08:14:56 2019-08-21 08:35:01 t 1 2 86616 294 0.00 2019-08-21 07:36:43 2019-08-21 08:37:06 t 1 2 86619 306 0.00 2019-08-21 09:03:26 2019-08-21 09:03:28 t 1 2 86622 304 0.00 2019-08-21 08:58:04 2019-08-21 09:08:09 t 1 2 86624 220 0.00 2019-08-21 08:50:55 2019-08-21 09:18:54 t 1 1 86626 292 0.00 2019-08-21 08:35:07 2019-08-21 09:24:58 t 1 2 86627 304 0.00 2019-08-21 09:25:12 2019-08-21 09:25:19 t 1 2 86631 212 0.00 2019-08-21 09:35:53 2019-08-21 09:36:28 t 1 2 86633 220 0.00 2019-08-21 09:18:54 2019-08-21 09:37:07 t 1 1 86636 306 0.00 2019-08-21 09:47:57 2019-08-21 09:49:02 t 1 2 86637 320 0.00 2019-08-21 09:42:22 2019-08-21 09:52:27 t 1 2 86659 346 0.00 2019-08-21 10:33:23 2019-08-21 11:03:28 t 1 2 86664 220 0.00 2019-08-21 11:06:38 2019-08-21 11:07:13 t 1 1 86666 220 0.00 2019-08-21 11:05:16 2019-08-21 11:08:23 t 1 2 86671 306 0.00 2019-08-21 11:19:45 2019-08-21 11:20:52 t 1 2 86675 306 0.00 2019-08-21 11:21:49 2019-08-21 11:22:52 t 1 2 86681 351 0.00 2019-08-21 11:25:09 2019-08-21 11:26:07 t 1 2 86684 220 0.00 2019-08-21 11:26:45 2019-08-21 11:27:20 t 1 1 86686 220 0.00 2019-08-21 11:27:52 2019-08-21 11:28:25 t 1 1 86687 220 0.00 2019-08-21 11:28:25 2019-08-21 11:28:57 t 1 1 86688 306 0.00 2019-08-21 11:28:16 2019-08-21 11:29:19 t 1 2 86690 212 0.00 2019-08-21 11:29:15 2019-08-21 11:29:46 t 1 2 86693 306 0.00 2019-08-21 11:30:06 2019-08-21 11:31:10 t 1 2 86696 306 0.00 2019-08-21 11:32:04 2019-08-21 11:33:05 t 1 2 86698 212 0.00 2019-08-21 11:31:55 2019-08-21 11:33:18 t 1 2 86699 212 0.00 2019-08-21 11:34:18 2019-08-21 11:34:22 t 1 2 86703 220 0.00 2019-08-21 11:36:34 2019-08-21 11:36:35 t 1 1 86704 220 0.00 2019-08-21 11:36:39 2019-08-21 11:37:08 t 1 1 86708 220 0.00 2019-08-21 11:38:49 2019-08-21 11:40:12 t 1 1 86710 220 0.00 2019-08-21 11:40:46 2019-08-21 11:41:28 t 1 1 86724 220 0.00 2019-08-21 11:57:55 2019-08-21 11:58:43 t 1 1 86729 327 0.00 2019-08-21 11:08:29 2019-08-21 12:09:01 t 1 2 86734 220 0.00 2019-08-21 12:11:09 2019-08-21 12:11:42 t 1 1 86736 220 0.00 2019-08-21 12:11:42 2019-08-21 12:12:53 t 1 1 86744 304 0.00 2019-08-21 12:27:56 2019-08-21 12:28:03 t 1 2 86751 367 0.00 2019-08-21 12:49:46 2019-08-21 12:58:10 t 1 2 86752 361 0.00 2019-08-21 11:23:29 2019-08-21 12:58:35 t 1 2 86755 320 0.00 2019-08-21 12:50:11 2019-08-21 13:00:16 t 1 2 86757 331 0.00 2019-08-21 13:02:15 2019-08-21 13:03:20 t 1 2 86759 331 0.00 2019-08-21 13:05:53 2019-08-21 13:06:56 t 1 2 86760 304 0.00 2019-08-21 12:58:50 2019-08-21 13:08:55 t 1 2 86762 372 0.00 2019-08-21 13:05:37 2019-08-21 13:11:45 t 1 2 86764 306 0.00 2019-08-21 13:12:54 2019-08-21 13:14:03 t 1 2 86765 306 0.00 2019-08-21 13:27:17 2019-08-21 13:28:17 t 1 2 86772 318 0.00 2019-08-21 12:01:04 2019-08-21 14:05:11 t 1 2 86776 346 0.00 2019-08-21 13:38:45 2019-08-21 14:18:50 t 1 2 86779 306 0.00 2019-08-21 14:28:38 2019-08-21 14:29:43 t 1 2 86782 212 0.00 2019-08-21 14:37:10 2019-08-21 14:38:00 t 1 2 86784 220 0.00 2019-08-21 14:33:01 2019-08-21 14:41:43 t 1 2 86793 220 0.00 2019-08-21 14:39:49 2019-08-21 15:09:00 t 1 1 86796 355 0.00 2019-08-21 10:23:57 2019-08-21 15:19:02 t 1 2 86798 324 0.00 2019-08-21 15:18:03 2019-08-21 15:21:02 t 1 2 86805 367 0.00 2019-08-21 14:55:35 2019-08-21 15:40:40 t 1 2 86813 220 0.00 2019-08-21 15:41:02 2019-08-21 16:02:27 t 1 1 86821 324 0.00 2019-08-21 16:08:51 2019-08-21 16:33:01 t 1 2 86824 351 0.00 2019-08-21 16:05:48 2019-08-21 16:35:53 t 1 2 86828 247 0.00 2019-08-21 16:40:02 2019-08-21 16:42:37 t 1 2 86831 320 0.00 2019-08-21 16:16:58 2019-08-21 16:47:03 t 1 2 86832 367 0.00 2019-08-21 16:23:48 2019-08-21 16:48:54 t 1 2 86835 220 0.00 2019-08-21 16:50:48 2019-08-21 16:53:02 t 1 1 86839 220 0.00 2019-08-21 16:57:32 2019-08-21 17:03:17 t 1 1 86676 220 0.00 2019-08-21 11:22:37 2019-08-21 11:23:13 t 1 1 86678 220 0.00 2019-08-21 11:19:18 2019-08-21 11:24:23 t 1 2 86683 220 0.00 2019-08-21 11:26:14 2019-08-21 11:26:45 t 1 1 86689 220 0.00 2019-08-21 11:28:57 2019-08-21 11:29:30 t 1 1 86691 220 0.00 2019-08-21 11:29:29 2019-08-21 11:30:04 t 1 1 86692 220 0.00 2019-08-21 11:26:14 2019-08-21 11:30:20 t 1 2 86694 220 0.00 2019-08-21 11:30:04 2019-08-21 11:31:22 t 1 1 86695 220 0.00 2019-08-21 11:31:21 2019-08-21 11:32:37 t 1 1 86700 306 0.00 2019-08-21 11:34:02 2019-08-21 11:35:06 t 1 2 86709 220 0.00 2019-08-21 11:40:12 2019-08-21 11:40:47 t 1 1 86714 220 0.00 2019-08-21 11:33:05 2019-08-21 11:43:10 t 1 2 86719 296 0.00 2019-08-21 10:46:25 2019-08-21 11:46:46 t 1 2 86722 220 0.00 2019-08-21 11:44:47 2019-08-21 11:57:07 t 1 1 86725 220 0.00 2019-08-21 11:58:49 2019-08-21 12:00:04 t 1 1 86727 220 0.00 2019-08-21 12:00:39 2019-08-21 12:02:14 t 1 1 86728 304 0.00 2019-08-21 11:51:16 2019-08-21 12:06:22 t 1 2 86737 306 0.00 2019-08-21 12:12:43 2019-08-21 12:13:45 t 1 2 86740 220 0.00 2019-08-21 12:13:10 2019-08-21 12:22:43 t 1 1 86741 306 0.00 2019-08-21 12:25:03 2019-08-21 12:26:08 t 1 2 86746 367 0.00 2019-08-21 11:50:43 2019-08-21 12:36:34 t 1 2 86748 212 0.00 2019-08-21 12:40:46 2019-08-21 12:41:55 t 1 2 86756 331 0.00 2019-08-21 12:59:55 2019-08-21 13:00:56 t 1 2 86761 306 0.00 2019-08-21 13:10:31 2019-08-21 13:11:32 t 1 2 86766 212 0.00 2019-08-21 13:35:21 2019-08-21 13:36:11 t 1 2 86773 306 0.00 2019-08-21 14:04:35 2019-08-21 14:05:37 t 1 2 86775 306 0.00 2019-08-21 14:10:47 2019-08-21 14:11:50 t 1 2 86783 320 0.00 2019-08-21 14:30:49 2019-08-21 14:40:54 t 1 2 86788 212 0.00 2019-08-21 14:50:01 2019-08-21 14:52:03 t 1 2 86790 306 0.00 2019-08-21 15:01:05 2019-08-21 15:02:08 t 1 2 86791 306 0.00 2019-08-21 15:04:19 2019-08-21 15:05:23 t 1 2 86795 212 0.00 2019-08-21 15:13:22 2019-08-21 15:14:01 t 1 2 86800 327 0.00 2019-08-21 12:33:50 2019-08-21 15:30:14 t 1 2 86801 379 0.00 2019-08-21 09:57:08 2019-08-21 15:32:13 t 1 2 86803 367 0.00 2019-08-21 15:32:21 2019-08-21 15:32:54 t 1 2 86807 304 0.00 2019-08-21 15:31:34 2019-08-21 15:41:39 t 1 2 86808 306 0.00 2019-08-21 15:51:01 2019-08-21 15:52:04 t 1 2 86811 306 0.00 2019-08-21 15:57:10 2019-08-21 15:58:10 t 1 2 86823 220 0.00 2019-08-21 16:23:44 2019-08-21 16:34:49 t 1 2 86827 306 0.00 2019-08-21 16:41:15 2019-08-21 16:42:21 t 1 2 86830 220 0.00 2019-08-21 16:22:15 2019-08-21 16:45:50 t 1 1 86834 212 0.00 2019-08-21 16:51:39 2019-08-21 16:52:13 t 1 2 86836 324 0.00 2019-08-21 16:37:57 2019-08-21 16:55:18 t 1 2 86837 220 0.00 2019-08-21 16:53:02 2019-08-21 16:57:32 t 1 1 86841 306 0.00 2019-08-21 17:19:58 2019-08-21 17:21:01 t 1 2 86844 355 0.00 2019-08-21 17:19:39 2019-08-21 17:39:45 t 1 2 86845 294 0.00 2019-08-21 16:42:18 2019-08-21 17:42:42 t 1 2 86849 296 0.00 2019-08-21 16:49:57 2019-08-21 17:50:17 t 1 2 86850 318 0.00 2019-08-21 17:45:54 2019-08-21 17:52:45 t 1 2 86851 324 0.00 2019-08-21 17:55:54 2019-08-21 17:56:58 t 1 2 86860 294 0.00 2019-08-21 18:05:45 2019-08-21 18:18:09 t 1 2 86868 343 0.00 2019-08-21 18:37:59 2019-08-21 18:39:04 t 1 2 86869 296 0.00 2019-08-21 18:52:21 2019-08-21 18:55:44 t 1 2 86881 217 0.00 2019-08-21 19:24:35 2019-08-21 19:24:35 f 1 2 86895 331 0.00 2019-08-21 20:06:14 2019-08-21 20:07:18 t 1 2 86896 292 0.00 2019-08-21 20:00:30 2019-08-21 20:10:35 t 1 2 86906 357 0.00 2019-08-21 16:28:59 2019-08-21 20:44:05 t 1 2 86910 343 0.00 2019-08-21 20:56:05 2019-08-21 20:57:10 t 1 2 86920 247 0.00 2019-08-21 21:37:07 2019-08-21 21:39:24 t 1 2 86922 320 0.00 2019-08-21 21:16:48 2019-08-21 21:51:53 t 1 2 86924 306 0.00 2019-08-21 21:57:23 2019-08-21 21:58:26 t 1 2 86931 212 0.00 2019-08-21 22:24:49 2019-08-21 22:35:56 t 1 2 86936 220 0.00 2019-08-21 22:46:55 2019-08-21 22:47:28 t 1 1 86942 220 0.00 2019-08-21 22:49:45 2019-08-21 22:50:19 t 1 1 86945 220 0.00 2019-08-21 22:51:25 2019-08-21 22:51:58 t 1 1 86949 220 0.00 2019-08-21 22:53:37 2019-08-21 22:54:11 t 1 1 86952 220 0.00 2019-08-21 22:55:19 2019-08-21 22:55:51 t 1 1 86958 220 0.00 2019-08-21 22:58:38 2019-08-21 22:59:13 t 1 1 86962 306 0.00 2019-08-21 23:00:28 2019-08-21 23:01:36 t 1 2 86964 220 0.00 2019-08-21 23:01:36 2019-08-21 23:02:10 t 1 1 86966 220 0.00 2019-08-21 23:02:45 2019-08-21 23:02:56 t 1 1 86971 306 0.00 2019-08-21 23:03:06 2019-08-21 23:04:09 t 1 2 86975 220 0.00 2019-08-21 23:05:08 2019-08-21 23:05:39 t 1 1 86979 220 0.00 2019-08-21 23:06:44 2019-08-21 23:07:17 t 1 1 86982 220 0.00 2019-08-21 23:08:23 2019-08-21 23:08:59 t 1 1 86984 306 0.00 2019-08-21 23:10:44 2019-08-21 23:11:46 t 1 2 86988 324 0.00 2019-08-21 22:35:28 2019-08-21 23:20:53 t 1 2 86992 355 0.00 2019-08-21 20:18:53 2019-08-21 23:23:58 t 1 2 87010 212 0.00 2019-08-22 00:33:01 2019-08-22 00:33:32 t 1 2 87011 296 0.00 2019-08-22 00:33:41 2019-08-22 00:37:02 t 1 2 87015 294 0.00 2019-08-22 00:08:03 2019-08-22 01:08:21 t 1 2 87028 324 0.00 2019-08-22 03:45:11 2019-08-22 04:03:22 t 1 2 87037 349 0.00 2019-08-22 07:53:58 2019-08-22 07:55:01 t 1 2 87039 320 0.00 2019-08-22 08:02:16 2019-08-22 08:12:22 t 1 2 87042 320 0.00 2019-08-22 08:10:07 2019-08-22 08:25:12 t 1 2 87044 320 0.00 2019-08-22 08:18:02 2019-08-22 08:28:07 t 1 2 87047 212 0.00 2019-08-22 08:36:40 2019-08-22 08:37:20 t 1 2 87050 294 0.00 2019-08-22 07:46:29 2019-08-22 08:45:50 t 1 2 87053 324 0.00 2019-08-22 08:22:52 2019-08-22 08:57:20 t 1 2 87059 212 0.00 2019-08-22 09:15:10 2019-08-22 09:16:06 t 1 2 87076 304 0.00 2019-08-22 10:18:08 2019-08-22 10:18:08 f 1 2 87078 304 0.00 2019-08-22 10:18:30 2019-08-22 10:18:30 f 1 2 87082 306 0.00 2019-08-22 10:20:56 2019-08-22 10:21:57 t 1 2 87083 320 0.00 2019-08-22 10:12:32 2019-08-22 10:22:37 t 1 2 87087 220 0.00 2019-08-22 10:24:23 2019-08-22 10:28:01 t 1 1 87088 220 0.00 2019-08-22 10:28:01 2019-08-22 10:28:39 t 1 1 87093 220 0.00 2019-08-22 10:30:59 2019-08-22 10:31:33 t 1 1 87098 220 0.00 2019-08-22 10:32:44 2019-08-22 10:33:23 t 1 1 87099 220 0.00 2019-08-22 10:33:23 2019-08-22 10:33:54 t 1 1 87106 220 0.00 2019-08-22 10:36:47 2019-08-22 10:37:38 t 1 1 87112 220 0.00 2019-08-22 10:41:31 2019-08-22 10:42:10 t 1 1 87124 304 0.00 2019-08-22 10:58:48 2019-08-22 11:08:53 t 1 2 87125 220 0.00 2019-08-22 11:06:17 2019-08-22 11:11:55 t 1 1 87126 306 0.00 2019-08-22 11:18:31 2019-08-22 11:19:32 t 1 2 87131 322 0.00 2019-08-22 10:14:23 2019-08-22 11:36:31 t 1 2 87134 343 0.00 2019-08-22 11:49:49 2019-08-22 11:50:56 t 1 2 87141 304 0.00 2019-08-22 12:05:01 2019-08-22 12:05:01 f 1 2 87150 304 0.00 2019-08-22 12:07:06 2019-08-22 12:07:06 f 1 2 86742 304 0.00 2019-08-21 12:27:02 2019-08-21 12:27:07 t 1 2 86743 304 0.00 2019-08-21 12:27:27 2019-08-21 12:27:33 t 1 2 86749 331 0.00 2019-08-21 12:53:24 2019-08-21 12:54:28 t 1 2 86753 331 0.00 2019-08-21 12:57:39 2019-08-21 12:58:45 t 1 2 86754 288 0.00 2019-08-21 12:58:13 2019-08-21 12:59:18 t 1 2 86758 331 0.00 2019-08-21 13:04:24 2019-08-21 13:05:29 t 1 2 86767 343 0.00 2019-08-21 13:41:04 2019-08-21 13:41:56 t 1 2 86768 304 0.00 2019-08-21 13:38:28 2019-08-21 13:48:33 t 1 2 86770 346 0.00 2019-08-21 14:02:40 2019-08-21 14:03:40 t 1 2 86771 212 0.00 2019-08-21 14:03:15 2019-08-21 14:04:50 t 1 2 86774 339 0.00 2019-08-21 14:04:04 2019-08-21 14:06:27 t 1 2 86777 306 0.00 2019-08-21 14:20:39 2019-08-21 14:21:43 t 1 2 86789 361 0.00 2019-08-21 13:58:38 2019-08-21 14:59:30 t 1 2 86797 220 0.00 2019-08-21 14:50:48 2019-08-21 15:20:53 t 1 2 86809 361 0.00 2019-08-21 15:23:47 2019-08-21 15:55:06 t 1 2 86812 324 0.00 2019-08-21 16:00:35 2019-08-21 16:01:39 t 1 2 86814 306 0.00 2019-08-21 16:04:47 2019-08-21 16:05:52 t 1 2 86817 304 0.00 2019-08-21 16:06:33 2019-08-21 16:16:38 t 1 2 86818 306 0.00 2019-08-21 16:16:58 2019-08-21 16:17:59 t 1 2 86826 379 0.00 2019-08-21 16:23:36 2019-08-21 16:38:36 t 1 2 86840 212 0.00 2019-08-21 17:13:03 2019-08-21 17:18:30 t 1 2 86847 349 0.00 2019-08-21 17:47:30 2019-08-21 17:48:35 t 1 2 86852 304 0.00 2019-08-21 17:48:44 2019-08-21 17:58:49 t 1 2 86854 304 0.00 2019-08-21 17:57:49 2019-08-21 18:07:54 t 1 2 86855 296 0.00 2019-08-21 18:06:20 2019-08-21 18:08:43 t 1 2 86861 247 0.00 2019-08-21 18:13:56 2019-08-21 18:18:18 t 1 2 86870 343 0.00 2019-08-21 19:02:51 2019-08-21 19:03:58 t 1 2 86873 363 0.00 2019-08-21 19:04:36 2019-08-21 19:07:36 t 1 2 86875 320 0.00 2019-08-21 18:38:19 2019-08-21 19:13:24 t 1 2 86876 346 0.00 2019-08-21 19:12:57 2019-08-21 19:14:46 t 1 2 86878 304 0.00 2019-08-21 19:01:48 2019-08-21 19:16:53 t 1 2 86883 324 0.00 2019-08-21 19:26:20 2019-08-21 19:28:34 t 1 2 86884 306 0.00 2019-08-21 19:32:42 2019-08-21 19:33:44 t 1 2 86886 306 0.00 2019-08-21 19:37:11 2019-08-21 19:38:16 t 1 2 86888 220 0.00 2019-08-21 19:04:21 2019-08-21 19:57:39 t 1 1 86890 306 0.00 2019-08-21 19:59:35 2019-08-21 20:00:43 t 1 2 86900 331 0.00 2019-08-21 20:24:17 2019-08-21 20:25:21 t 1 2 86901 320 0.00 2019-08-21 20:21:01 2019-08-21 20:31:06 t 1 2 86904 220 0.00 2019-08-21 20:31:58 2019-08-21 20:36:22 t 1 2 86908 212 0.00 2019-08-21 20:54:41 2019-08-21 20:55:09 t 1 2 86915 296 0.00 2019-08-21 21:23:15 2019-08-21 21:25:39 t 1 2 86916 296 0.00 2019-08-21 21:28:10 2019-08-21 21:29:31 t 1 2 86921 346 0.00 2019-08-21 21:31:37 2019-08-21 21:46:42 t 1 2 86925 361 0.00 2019-08-21 20:04:02 2019-08-21 22:04:07 t 1 2 86928 306 0.00 2019-08-21 22:17:40 2019-08-21 22:18:46 t 1 2 86934 220 0.00 2019-08-21 21:13:52 2019-08-21 22:46:56 t 1 1 86938 220 0.00 2019-08-21 22:48:02 2019-08-21 22:48:36 t 1 1 86940 220 0.00 2019-08-21 22:49:10 2019-08-21 22:49:45 t 1 1 86944 220 0.00 2019-08-21 22:50:50 2019-08-21 22:51:25 t 1 1 86947 220 0.00 2019-08-21 22:52:31 2019-08-21 22:53:03 t 1 1 86951 220 0.00 2019-08-21 22:54:46 2019-08-21 22:55:19 t 1 1 86954 220 0.00 2019-08-21 22:56:24 2019-08-21 22:56:59 t 1 1 86960 220 0.00 2019-08-21 22:59:44 2019-08-21 23:00:17 t 1 1 86963 220 0.00 2019-08-21 23:00:56 2019-08-21 23:01:36 t 1 1 86967 220 0.00 2019-08-21 22:53:52 2019-08-21 23:03:15 t 1 2 86969 320 0.00 2019-08-21 22:48:42 2019-08-21 23:03:47 t 1 2 86972 212 0.00 2019-08-21 23:03:32 2019-08-21 23:04:10 t 1 2 86974 220 0.00 2019-08-21 23:04:33 2019-08-21 23:05:08 t 1 1 86976 306 0.00 2019-08-21 23:04:42 2019-08-21 23:05:45 t 1 2 86981 220 0.00 2019-08-21 23:07:48 2019-08-21 23:08:26 t 1 1 86986 304 0.00 2019-08-21 23:00:20 2019-08-21 23:15:25 t 1 2 86990 220 0.00 2019-08-21 23:21:55 2019-08-21 23:22:28 t 1 1 86994 355 0.00 2019-08-21 23:37:22 2019-08-21 23:40:58 t 1 2 86995 292 0.00 2019-08-21 23:41:33 2019-08-21 23:42:54 t 1 2 86996 379 0.00 2019-08-21 23:29:30 2019-08-21 23:44:44 t 1 2 86999 220 0.00 2019-08-21 23:34:31 2019-08-21 23:46:59 t 1 2 87000 212 0.00 2019-08-21 23:47:01 2019-08-21 23:47:36 t 1 2 87007 355 0.00 2019-08-22 00:17:11 2019-08-22 00:19:42 t 1 2 87008 367 0.00 2019-08-21 22:44:43 2019-08-22 00:23:21 t 1 2 87017 212 0.00 2019-08-22 01:33:50 2019-08-22 01:34:21 t 1 2 87019 296 0.00 2019-08-22 01:47:56 2019-08-22 01:51:19 t 1 2 87022 324 0.00 2019-08-22 02:00:11 2019-08-22 02:10:17 t 1 2 87025 320 0.00 2019-08-22 00:37:20 2019-08-22 03:32:25 t 1 2 87026 320 0.00 2019-08-22 03:28:25 2019-08-22 03:38:31 t 1 2 87029 355 0.00 2019-08-22 06:14:51 2019-08-22 06:20:23 t 1 2 87031 220 0.00 2019-08-22 06:50:07 2019-08-22 06:50:42 t 1 1 87033 220 0.00 2019-08-22 06:51:14 2019-08-22 06:51:47 t 1 1 87036 288 0.00 2019-08-22 07:43:44 2019-08-22 07:44:48 t 1 2 87040 346 0.00 2019-08-22 07:36:12 2019-08-22 08:12:31 t 1 2 87051 288 0.00 2019-08-22 08:51:08 2019-08-22 08:52:11 t 1 2 87056 220 0.00 2019-08-22 09:01:31 2019-08-22 09:12:05 t 1 1 87063 304 0.00 2019-08-22 09:06:50 2019-08-22 09:21:55 t 1 2 87066 304 0.00 2019-08-22 09:14:02 2019-08-22 09:24:07 t 1 2 87067 306 0.00 2019-08-22 09:23:19 2019-08-22 09:24:23 t 1 2 87068 320 0.00 2019-08-22 09:24:08 2019-08-22 09:34:14 t 1 2 87071 331 0.00 2019-08-22 09:53:37 2019-08-22 09:54:40 t 1 2 87073 294 0.00 2019-08-22 08:56:52 2019-08-22 09:57:15 t 1 2 87080 306 0.00 2019-08-22 10:18:38 2019-08-22 10:19:42 t 1 2 87090 220 0.00 2019-08-22 10:29:11 2019-08-22 10:29:49 t 1 1 87095 218 0.00 2019-08-22 10:31:38 2019-08-22 10:31:38 f 1 2 87101 220 0.00 2019-08-22 10:34:31 2019-08-22 10:35:02 t 1 1 87103 220 0.00 2019-08-22 10:35:40 2019-08-22 10:36:10 t 1 1 87105 220 0.00 2019-08-22 10:36:10 2019-08-22 10:36:48 t 1 1 87108 304 0.00 2019-08-22 10:18:40 2019-08-22 10:38:45 t 1 2 87111 220 0.00 2019-08-22 10:39:50 2019-08-22 10:41:32 t 1 1 87116 217 0.00 2019-08-22 10:56:45 2019-08-22 10:56:45 f 1 2 87127 220 0.00 2019-08-22 11:12:00 2019-08-22 11:23:23 t 1 1 87130 343 0.00 2019-08-22 11:32:54 2019-08-22 11:33:58 t 1 2 87136 304 0.00 2019-08-22 11:46:44 2019-08-22 11:56:49 t 1 2 87138 304 0.00 2019-08-22 12:04:25 2019-08-22 12:04:25 f 1 2 87143 304 0.00 2019-08-22 12:05:38 2019-08-22 12:05:38 f 1 2 87145 304 0.00 2019-08-22 12:05:54 2019-08-22 12:05:54 f 1 2 87147 304 0.00 2019-08-22 12:06:14 2019-08-22 12:06:14 f 1 2 87165 324 0.00 2019-08-22 12:37:32 2019-08-22 12:38:56 t 1 2 87169 306 0.00 2019-08-22 12:55:07 2019-08-22 12:56:07 t 1 2 87173 320 0.00 2019-08-22 13:05:53 2019-08-22 13:05:57 t 1 2 87176 367 0.00 2019-08-22 12:59:37 2019-08-22 13:19:38 t 1 2 86842 220 0.00 2019-08-21 17:03:17 2019-08-21 17:36:50 t 1 1 86856 320 0.00 2019-08-21 17:24:08 2019-08-21 18:09:13 t 1 2 86857 296 0.00 2019-08-21 18:07:55 2019-08-21 18:12:16 t 1 2 86859 363 0.00 2019-08-21 17:22:07 2019-08-21 18:17:12 t 1 2 86862 306 0.00 2019-08-21 18:20:39 2019-08-21 18:21:46 t 1 2 86863 343 0.00 2019-08-21 18:24:44 2019-08-21 18:25:06 t 1 2 86865 363 0.00 2019-08-21 18:14:15 2019-08-21 18:34:20 t 1 2 86866 320 0.00 2019-08-21 18:12:51 2019-08-21 18:37:56 t 1 2 86867 296 0.00 2019-08-21 18:35:42 2019-08-21 18:38:05 t 1 2 86871 220 0.00 2019-08-21 18:13:31 2019-08-21 19:04:21 t 1 1 86877 212 0.00 2019-08-21 18:06:48 2019-08-21 19:15:36 t 1 2 86880 217 0.00 2019-08-21 19:20:51 2019-08-21 19:20:51 f 1 2 86889 288 0.00 2019-08-21 19:57:07 2019-08-21 19:58:13 t 1 2 86891 306 0.00 2019-08-21 20:01:22 2019-08-21 20:02:25 t 1 2 86893 331 0.00 2019-08-21 20:02:54 2019-08-21 20:03:47 t 1 2 86897 247 0.00 2019-08-21 20:07:44 2019-08-21 20:10:58 t 1 2 86898 306 0.00 2019-08-21 20:16:56 2019-08-21 20:18:01 t 1 2 86899 288 0.00 2019-08-21 20:21:41 2019-08-21 20:22:47 t 1 2 86902 220 0.00 2019-08-21 19:41:31 2019-08-21 20:31:37 t 1 2 86907 346 0.00 2019-08-21 20:42:42 2019-08-21 20:52:47 t 1 2 86909 320 0.00 2019-08-21 20:45:27 2019-08-21 20:55:33 t 1 2 86912 306 0.00 2019-08-21 21:00:47 2019-08-21 21:01:51 t 1 2 86913 320 0.00 2019-08-21 21:02:07 2019-08-21 21:12:12 t 1 2 86914 220 0.00 2019-08-21 16:57:21 2019-08-21 21:13:39 t 1 2 86917 346 0.00 2019-08-21 21:30:10 2019-08-21 21:30:17 t 1 2 86923 372 0.00 2019-08-21 21:46:19 2019-08-21 21:56:09 t 1 2 86926 220 0.00 2019-08-21 22:05:51 2019-08-21 22:17:14 t 1 2 86932 306 0.00 2019-08-21 22:42:38 2019-08-21 22:43:43 t 1 2 86935 212 0.00 2019-08-21 22:46:19 2019-08-21 22:46:56 t 1 2 86939 220 0.00 2019-08-21 22:48:35 2019-08-21 22:49:10 t 1 1 86941 320 0.00 2019-08-21 22:35:13 2019-08-21 22:50:18 t 1 2 86946 220 0.00 2019-08-21 22:51:58 2019-08-21 22:52:31 t 1 1 86953 220 0.00 2019-08-21 22:55:51 2019-08-21 22:56:24 t 1 1 86956 220 0.00 2019-08-21 22:57:30 2019-08-21 22:58:05 t 1 1 86957 220 0.00 2019-08-21 22:58:05 2019-08-21 22:58:39 t 1 1 86961 220 0.00 2019-08-21 23:00:17 2019-08-21 23:00:57 t 1 1 86978 220 0.00 2019-08-21 23:06:13 2019-08-21 23:06:45 t 1 1 86983 306 0.00 2019-08-21 23:08:45 2019-08-21 23:09:50 t 1 2 86991 304 0.00 2019-08-21 23:23:21 2019-08-21 23:23:33 t 1 2 86993 304 0.00 2019-08-21 23:23:51 2019-08-21 23:24:49 t 1 2 86997 346 0.00 2019-08-21 23:19:22 2019-08-21 23:45:05 t 1 2 86998 346 0.00 2019-08-21 23:45:15 2019-08-21 23:45:22 t 1 2 87001 294 0.00 2019-08-21 22:01:42 2019-08-21 23:51:06 t 1 2 87004 324 0.00 2019-08-21 23:41:28 2019-08-22 00:04:00 t 1 2 87005 294 0.00 2019-08-22 00:07:44 2019-08-22 00:07:49 t 1 2 87006 355 0.00 2019-08-21 23:59:24 2019-08-22 00:08:32 t 1 2 87012 220 0.00 2019-08-21 23:22:28 2019-08-22 00:44:09 t 1 1 87013 220 0.00 2019-08-22 00:42:03 2019-08-22 00:57:08 t 1 2 87016 339 0.00 2019-08-22 00:31:24 2019-08-22 01:31:44 t 1 2 87018 346 0.00 2019-08-22 00:34:23 2019-08-22 01:34:28 t 1 2 87030 220 0.00 2019-08-22 06:49:02 2019-08-22 06:50:07 t 1 1 87032 220 0.00 2019-08-22 06:50:41 2019-08-22 06:51:15 t 1 1 87038 349 0.00 2019-08-22 07:58:47 2019-08-22 07:59:53 t 1 2 87043 212 0.00 2019-08-22 08:26:40 2019-08-22 08:27:23 t 1 2 87046 324 0.00 2019-08-22 08:22:09 2019-08-22 08:32:14 t 1 2 87048 306 0.00 2019-08-22 08:40:59 2019-08-22 08:42:02 t 1 2 87052 306 0.00 2019-08-22 08:51:31 2019-08-22 08:52:35 t 1 2 87054 306 0.00 2019-08-22 09:09:46 2019-08-22 09:10:48 t 1 2 87057 357 0.00 2019-08-22 08:49:36 2019-08-22 09:14:41 t 1 2 87058 324 0.00 2019-08-22 09:10:33 2019-08-22 09:15:30 t 1 2 87060 306 0.00 2019-08-22 09:17:00 2019-08-22 09:18:05 t 1 2 87061 324 0.00 2019-08-22 09:09:35 2019-08-22 09:19:40 t 1 2 87064 220 0.00 2019-08-22 09:12:08 2019-08-22 09:22:06 t 1 1 87065 306 0.00 2019-08-22 09:22:20 2019-08-22 09:22:27 t 1 2 87070 331 0.00 2019-08-22 09:51:26 2019-08-22 09:52:25 t 1 2 87072 324 0.00 2019-08-22 09:54:24 2019-08-22 09:55:27 t 1 2 87074 306 0.00 2019-08-22 10:11:14 2019-08-22 10:12:14 t 1 2 87075 304 0.00 2019-08-22 10:17:59 2019-08-22 10:17:59 f 1 2 87077 304 0.00 2019-08-22 10:18:20 2019-08-22 10:18:20 f 1 2 87079 304 0.00 2019-08-22 10:16:42 2019-08-22 10:18:39 t 1 2 87084 220 0.00 2019-08-22 09:43:59 2019-08-22 10:23:16 t 1 1 87085 306 0.00 2019-08-22 10:22:29 2019-08-22 10:23:33 t 1 2 87086 220 0.00 2019-08-22 10:23:20 2019-08-22 10:24:23 t 1 1 87089 220 0.00 2019-08-22 10:28:38 2019-08-22 10:29:11 t 1 1 87092 220 0.00 2019-08-22 10:30:23 2019-08-22 10:30:59 t 1 1 87094 218 0.00 2019-08-22 10:31:34 2019-08-22 10:31:34 f 1 2 87097 220 0.00 2019-08-22 10:32:10 2019-08-22 10:32:45 t 1 1 87100 220 0.00 2019-08-22 10:33:54 2019-08-22 10:34:31 t 1 1 87104 212 0.00 2019-08-22 10:35:33 2019-08-22 10:36:14 t 1 2 87107 220 0.00 2019-08-22 10:37:38 2019-08-22 10:38:16 t 1 1 87110 220 0.00 2019-08-22 10:39:14 2019-08-22 10:39:51 t 1 1 87115 217 0.00 2019-08-22 10:52:58 2019-08-22 10:52:58 f 1 2 87117 220 0.00 2019-08-22 10:58:32 2019-08-22 10:59:32 t 1 1 87122 220 0.00 2019-08-22 10:59:36 2019-08-22 11:06:18 t 1 1 87128 306 0.00 2019-08-22 11:29:49 2019-08-22 11:30:55 t 1 2 87132 288 0.00 2019-08-22 11:39:56 2019-08-22 11:41:02 t 1 2 87133 355 0.00 2019-08-22 11:33:26 2019-08-22 11:48:32 t 1 2 87140 304 0.00 2019-08-22 12:04:50 2019-08-22 12:04:50 f 1 2 87142 304 0.00 2019-08-22 12:05:20 2019-08-22 12:05:20 f 1 2 87149 304 0.00 2019-08-22 12:06:45 2019-08-22 12:06:45 f 1 2 87151 304 0.00 2019-08-22 12:07:15 2019-08-22 12:07:15 f 1 2 87152 220 0.00 2019-08-22 11:57:47 2019-08-22 12:08:11 t 1 1 87155 304 0.00 2019-08-22 12:09:55 2019-08-22 12:09:55 f 1 2 87157 304 0.00 2019-08-22 12:00:46 2019-08-22 12:10:51 t 1 2 87159 359 0.00 2019-08-22 12:03:08 2019-08-22 12:13:13 t 1 2 87161 346 0.00 2019-08-22 11:48:41 2019-08-22 12:21:39 t 1 2 87163 306 0.00 2019-08-22 12:31:25 2019-08-22 12:32:28 t 1 2 87164 212 0.00 2019-08-22 12:35:09 2019-08-22 12:37:08 t 1 2 87166 306 0.00 2019-08-22 12:42:40 2019-08-22 12:43:42 t 1 2 87172 361 0.00 2019-08-22 12:42:23 2019-08-22 13:03:26 t 1 2 87174 357 0.00 2019-08-22 10:57:02 2019-08-22 13:07:07 t 1 2 87182 306 0.00 2019-08-22 13:32:06 2019-08-22 13:33:09 t 1 2 87186 346 0.00 2019-08-22 13:47:39 2019-08-22 13:54:57 t 1 2 87188 324 0.00 2019-08-22 13:46:17 2019-08-22 14:01:22 t 1 2 87190 306 0.00 2019-08-22 14:04:24 2019-08-22 14:05:30 t 1 2 87193 324 0.00 2019-08-22 13:57:07 2019-08-22 14:07:12 t 1 2 87195 306 0.00 2019-08-22 14:17:48 2019-08-22 14:18:53 t 1 2 86853 247 0.00 2019-08-21 18:04:17 2019-08-21 18:04:36 t 1 2 86858 220 0.00 2019-08-21 17:36:50 2019-08-21 18:13:31 t 1 1 86864 355 0.00 2019-08-21 17:55:03 2019-08-21 18:25:08 t 1 2 86872 343 0.00 2019-08-21 19:04:24 2019-08-21 19:05:28 t 1 2 86874 343 0.00 2019-08-21 19:06:44 2019-08-21 19:07:50 t 1 2 86879 217 0.00 2019-08-21 19:20:31 2019-08-21 19:20:31 f 1 2 86882 355 0.00 2019-08-21 18:26:37 2019-08-21 19:26:42 t 1 2 86885 306 0.00 2019-08-21 19:35:14 2019-08-21 19:36:18 t 1 2 86887 212 0.00 2019-08-21 19:41:32 2019-08-21 19:42:24 t 1 2 86892 320 0.00 2019-08-21 19:53:13 2019-08-21 20:03:18 t 1 2 86894 331 0.00 2019-08-21 20:04:42 2019-08-21 20:05:45 t 1 2 86903 306 0.00 2019-08-21 20:34:14 2019-08-21 20:35:18 t 1 2 86905 320 0.00 2019-08-21 20:33:35 2019-08-21 20:43:40 t 1 2 86911 372 0.00 2019-08-21 20:57:20 2019-08-21 20:59:35 t 1 2 86918 346 0.00 2019-08-21 21:31:15 2019-08-21 21:31:22 t 1 2 86919 212 0.00 2019-08-21 21:31:54 2019-08-21 21:32:24 t 1 2 86927 361 0.00 2019-08-21 22:01:14 2019-08-21 22:17:21 t 1 2 86929 318 0.00 2019-08-21 21:18:50 2019-08-21 22:20:32 t 1 2 86930 372 0.00 2019-08-21 22:17:23 2019-08-21 22:31:17 t 1 2 86933 306 0.00 2019-08-21 22:45:08 2019-08-21 22:46:10 t 1 2 86937 220 0.00 2019-08-21 22:47:28 2019-08-21 22:48:03 t 1 1 86943 220 0.00 2019-08-21 22:50:19 2019-08-21 22:50:50 t 1 1 86948 220 0.00 2019-08-21 22:53:03 2019-08-21 22:53:37 t 1 1 86950 220 0.00 2019-08-21 22:54:11 2019-08-21 22:54:46 t 1 1 86955 220 0.00 2019-08-21 22:56:58 2019-08-21 22:57:30 t 1 1 86959 220 0.00 2019-08-21 22:59:13 2019-08-21 22:59:45 t 1 1 86965 220 0.00 2019-08-21 23:02:10 2019-08-21 23:02:45 t 1 1 86968 220 0.00 2019-08-21 23:03:01 2019-08-21 23:03:22 t 1 1 86970 220 0.00 2019-08-21 23:03:22 2019-08-21 23:03:56 t 1 1 86973 220 0.00 2019-08-21 23:03:56 2019-08-21 23:04:33 t 1 1 86977 220 0.00 2019-08-21 23:05:38 2019-08-21 23:06:13 t 1 1 86980 220 0.00 2019-08-21 23:07:17 2019-08-21 23:07:48 t 1 1 86985 346 0.00 2019-08-21 23:13:58 2019-08-21 23:14:23 t 1 2 86987 306 0.00 2019-08-21 23:19:42 2019-08-21 23:20:48 t 1 2 86989 220 0.00 2019-08-21 23:08:59 2019-08-21 23:21:55 t 1 1 87002 288 0.00 2019-08-21 23:50:30 2019-08-21 23:51:22 t 1 2 87003 320 0.00 2019-08-21 23:41:54 2019-08-21 23:57:00 t 1 2 87009 212 0.00 2019-08-22 00:26:31 2019-08-22 00:27:57 t 1 2 87014 212 0.00 2019-08-22 01:02:49 2019-08-22 01:03:50 t 1 2 87020 372 0.00 2019-08-22 01:42:36 2019-08-22 01:52:29 t 1 2 87021 363 0.00 2019-08-21 22:24:55 2019-08-22 02:05:00 t 1 2 87023 343 0.00 2019-08-22 02:24:45 2019-08-22 02:31:52 t 1 2 87024 324 0.00 2019-08-22 03:00:41 2019-08-22 03:30:47 t 1 2 87027 320 0.00 2019-08-22 03:39:42 2019-08-22 03:49:47 t 1 2 87034 288 0.00 2019-08-22 07:37:19 2019-08-22 07:38:25 t 1 2 87035 220 0.00 2019-08-22 06:51:47 2019-08-22 07:40:21 t 1 1 87041 296 0.00 2019-08-22 08:09:38 2019-08-22 08:12:38 t 1 2 87045 288 0.00 2019-08-22 08:28:35 2019-08-22 08:29:38 t 1 2 87049 288 0.00 2019-08-22 08:42:26 2019-08-22 08:43:30 t 1 2 87055 212 0.00 2019-08-22 09:10:34 2019-08-22 09:10:58 t 1 2 87062 306 0.00 2019-08-22 09:19:43 2019-08-22 09:20:45 t 1 2 87069 220 0.00 2019-08-22 09:24:31 2019-08-22 09:35:13 t 1 1 87081 304 0.00 2019-08-22 10:05:34 2019-08-22 10:20:39 t 1 2 87091 220 0.00 2019-08-22 10:29:48 2019-08-22 10:30:23 t 1 1 87096 220 0.00 2019-08-22 10:31:32 2019-08-22 10:32:11 t 1 1 87102 220 0.00 2019-08-22 10:35:02 2019-08-22 10:35:41 t 1 1 87109 220 0.00 2019-08-22 10:38:16 2019-08-22 10:39:14 t 1 1 87113 220 0.00 2019-08-22 10:42:09 2019-08-22 10:42:49 t 1 1 87114 220 0.00 2019-08-22 10:42:48 2019-08-22 10:51:41 t 1 1 87118 306 0.00 2019-08-22 11:00:26 2019-08-22 11:01:31 t 1 2 87119 324 0.00 2019-08-22 11:02:47 2019-08-22 11:03:52 t 1 2 87120 212 0.00 2019-08-22 11:03:57 2019-08-22 11:04:38 t 1 2 87121 324 0.00 2019-08-22 11:04:29 2019-08-22 11:05:32 t 1 2 87123 288 0.00 2019-08-22 11:05:20 2019-08-22 11:06:23 t 1 2 87129 306 0.00 2019-08-22 11:31:53 2019-08-22 11:32:58 t 1 2 87135 220 0.00 2019-08-22 11:28:51 2019-08-22 11:56:06 t 1 1 87137 304 0.00 2019-08-22 12:04:09 2019-08-22 12:04:09 f 1 2 87139 304 0.00 2019-08-22 12:04:36 2019-08-22 12:04:36 f 1 2 87144 304 0.00 2019-08-22 12:05:46 2019-08-22 12:05:46 f 1 2 87146 304 0.00 2019-08-22 12:06:03 2019-08-22 12:06:03 f 1 2 87148 304 0.00 2019-08-22 12:06:32 2019-08-22 12:06:32 f 1 2 87153 304 0.00 2019-08-22 12:08:16 2019-08-22 12:08:16 f 1 2 87158 324 0.00 2019-08-22 12:07:56 2019-08-22 12:11:02 t 1 2 87160 212 0.00 2019-08-22 12:19:19 2019-08-22 12:20:16 t 1 2 87162 220 0.00 2019-08-22 12:08:13 2019-08-22 12:22:00 t 1 1 87168 372 0.00 2019-08-22 12:34:27 2019-08-22 12:54:32 t 1 2 87170 220 0.00 2019-08-22 12:22:06 2019-08-22 12:56:43 t 1 1 87171 346 0.00 2019-08-22 12:34:56 2019-08-22 12:59:31 t 1 2 87179 306 0.00 2019-08-22 13:27:03 2019-08-22 13:28:11 t 1 2 87180 306 0.00 2019-08-22 13:29:55 2019-08-22 13:30:58 t 1 2 87185 212 0.00 2019-08-22 13:44:16 2019-08-22 13:44:45 t 1 2 87196 320 0.00 2019-08-22 13:55:04 2019-08-22 14:20:09 t 1 2 87201 306 0.00 2019-08-22 14:24:12 2019-08-22 14:25:15 t 1 2 87205 306 0.00 2019-08-22 14:29:17 2019-08-22 14:30:18 t 1 2 87206 320 0.00 2019-08-22 14:25:46 2019-08-22 14:35:51 t 1 2 87210 288 0.00 2019-08-22 14:41:50 2019-08-22 14:42:58 t 1 2 87212 306 0.00 2019-08-22 14:48:00 2019-08-22 14:49:04 t 1 2 87217 355 0.00 2019-08-22 13:01:57 2019-08-22 15:12:03 t 1 2 87218 306 0.00 2019-08-22 15:14:08 2019-08-22 15:15:15 t 1 2 87221 324 0.00 2019-08-22 13:04:27 2019-08-22 15:23:32 t 1 2 87222 314 0.00 2019-08-22 11:50:18 2019-08-22 15:25:23 t 1 2 87223 294 0.00 2019-08-22 15:28:48 2019-08-22 15:32:12 t 1 2 87235 220 0.00 2019-08-22 15:44:57 2019-08-22 15:45:36 t 1 1 87245 220 0.00 2019-08-22 15:49:59 2019-08-22 15:50:38 t 1 1 87247 220 0.00 2019-08-22 15:51:13 2019-08-22 15:51:51 t 1 1 87248 361 0.00 2019-08-22 15:49:51 2019-08-22 15:52:05 t 1 2 87253 220 0.00 2019-08-22 15:53:00 2019-08-22 15:53:34 t 1 1 87255 288 0.00 2019-08-22 15:53:56 2019-08-22 15:55:00 t 1 2 87259 355 0.00 2019-08-22 15:43:34 2019-08-22 16:00:24 t 1 2 87266 367 0.00 2019-08-22 16:13:29 2019-08-22 16:14:16 t 1 2 87275 288 0.00 2019-08-22 16:33:19 2019-08-22 16:34:24 t 1 2 87279 357 0.00 2019-08-22 16:23:12 2019-08-22 16:43:17 t 1 2 87281 212 0.00 2019-08-22 16:49:16 2019-08-22 16:49:53 t 1 2 87284 367 0.00 2019-08-22 17:02:34 2019-08-22 17:03:37 t 1 2 87285 367 0.00 2019-08-22 17:04:34 2019-08-22 17:05:40 t 1 2 87289 306 0.00 2019-08-22 17:25:22 2019-08-22 17:26:24 t 1 2 87290 306 0.00 2019-08-22 17:28:04 2019-08-22 17:29:13 t 1 2 87154 304 0.00 2019-08-22 12:09:46 2019-08-22 12:09:46 f 1 2 87156 304 0.00 2019-08-22 12:10:01 2019-08-22 12:10:01 f 1 2 87167 302 0.00 2019-08-22 12:48:49 2019-08-22 12:48:49 f 1 2 87175 327 0.00 2019-08-22 12:08:02 2019-08-22 13:08:26 t 1 2 87177 306 0.00 2019-08-22 13:23:39 2019-08-22 13:24:44 t 1 2 87181 375 0.00 2019-08-22 13:21:16 2019-08-22 13:31:21 t 1 2 87184 320 0.00 2019-08-22 13:06:25 2019-08-22 13:41:30 t 1 2 87189 306 0.00 2019-08-22 14:02:14 2019-08-22 14:03:18 t 1 2 87191 306 0.00 2019-08-22 14:05:47 2019-08-22 14:06:48 t 1 2 87197 247 0.00 2019-08-22 14:14:28 2019-08-22 14:20:34 t 1 2 87199 306 0.00 2019-08-22 14:22:04 2019-08-22 14:23:09 t 1 2 87207 324 0.00 2019-08-22 14:37:37 2019-08-22 14:38:20 t 1 2 87214 361 0.00 2019-08-22 14:13:45 2019-08-22 14:53:33 t 1 2 87220 294 0.00 2019-08-22 14:31:15 2019-08-22 15:20:39 t 1 2 87224 220 0.00 2019-08-22 15:04:13 2019-08-22 15:39:10 t 1 1 87226 220 0.00 2019-08-22 15:39:10 2019-08-22 15:39:50 t 1 1 87229 220 0.00 2019-08-22 15:41:07 2019-08-22 15:41:51 t 1 1 87232 220 0.00 2019-08-22 15:43:01 2019-08-22 15:43:45 t 1 1 87239 306 0.00 2019-08-22 15:46:50 2019-08-22 15:47:57 t 1 2 87242 220 0.00 2019-08-22 15:48:38 2019-08-22 15:48:47 t 1 1 87244 220 0.00 2019-08-22 15:49:24 2019-08-22 15:50:00 t 1 1 87246 220 0.00 2019-08-22 15:50:37 2019-08-22 15:51:13 t 1 1 87249 288 0.00 2019-08-22 15:51:07 2019-08-22 15:52:11 t 1 2 87251 306 0.00 2019-08-22 15:51:54 2019-08-22 15:53:00 t 1 2 87256 212 0.00 2019-08-22 15:56:58 2019-08-22 15:57:43 t 1 2 87260 288 0.00 2019-08-22 16:04:51 2019-08-22 16:05:58 t 1 2 87267 288 0.00 2019-08-22 16:13:58 2019-08-22 16:15:03 t 1 2 87268 288 0.00 2019-08-22 16:17:20 2019-08-22 16:18:24 t 1 2 87272 288 0.00 2019-08-22 16:26:25 2019-08-22 16:27:29 t 1 2 87276 320 0.00 2019-08-22 16:19:49 2019-08-22 16:34:54 t 1 2 87277 288 0.00 2019-08-22 16:35:25 2019-08-22 16:36:30 t 1 2 87278 220 0.00 2019-08-22 16:17:38 2019-08-22 16:38:38 t 1 2 87280 320 0.00 2019-08-22 16:44:59 2019-08-22 16:46:08 t 1 2 87283 306 0.00 2019-08-22 16:53:19 2019-08-22 16:54:25 t 1 2 87287 212 0.00 2019-08-22 17:14:07 2019-08-22 17:14:39 t 1 2 87288 367 0.00 2019-08-22 17:06:12 2019-08-22 17:18:10 t 1 2 87291 306 0.00 2019-08-22 17:30:06 2019-08-22 17:31:11 t 1 2 87292 306 0.00 2019-08-22 17:33:21 2019-08-22 17:34:24 t 1 2 87295 306 0.00 2019-08-22 17:37:33 2019-08-22 17:38:34 t 1 2 87297 306 0.00 2019-08-22 17:41:07 2019-08-22 17:42:13 t 1 2 87307 306 0.00 2019-08-22 18:09:15 2019-08-22 18:10:21 t 1 2 87308 318 0.00 2019-08-22 14:03:40 2019-08-22 18:12:49 t 1 2 87311 220 0.00 2019-08-22 15:58:51 2019-08-22 18:18:44 t 1 2 87321 314 0.00 2019-08-22 16:35:56 2019-08-22 18:41:01 t 1 2 87322 212 0.00 2019-08-22 18:51:32 2019-08-22 18:51:55 t 1 2 87329 306 0.00 2019-08-22 19:22:05 2019-08-22 19:23:07 t 1 2 87332 306 0.00 2019-08-22 19:33:09 2019-08-22 19:33:16 t 1 2 87334 306 0.00 2019-08-22 19:35:08 2019-08-22 19:36:10 t 1 2 87347 363 0.00 2019-08-22 18:27:34 2019-08-22 20:12:39 t 1 2 87351 311 0.00 2019-08-22 20:18:17 2019-08-22 20:43:22 t 1 2 87357 212 0.00 2019-08-22 20:53:00 2019-08-22 20:53:44 t 1 2 87359 247 0.00 2019-08-22 20:59:34 2019-08-22 21:00:49 t 1 2 87361 320 0.00 2019-08-22 20:52:07 2019-08-22 21:02:12 t 1 2 87363 292 0.00 2019-08-22 21:19:49 2019-08-22 21:20:52 t 1 2 87364 306 0.00 2019-08-22 21:22:59 2019-08-22 21:24:03 t 1 2 87368 306 0.00 2019-08-22 21:27:05 2019-08-22 21:28:11 t 1 2 87373 306 0.00 2019-08-22 21:35:27 2019-08-22 21:36:29 t 1 2 87397 372 0.00 2019-08-22 21:40:53 2019-08-22 22:25:58 t 1 2 87399 320 0.00 2019-08-22 22:20:24 2019-08-22 22:34:59 t 1 2 87404 318 0.00 2019-08-22 21:15:05 2019-08-22 22:43:04 t 1 2 87411 212 0.00 2019-08-22 23:28:12 2019-08-22 23:28:55 t 1 2 87414 306 0.00 2019-08-22 23:30:32 2019-08-22 23:31:35 t 1 2 87419 220 0.00 2019-08-22 22:39:39 2019-08-22 23:52:34 t 1 1 87421 320 0.00 2019-08-22 23:24:26 2019-08-22 23:54:31 t 1 2 87424 372 0.00 2019-08-23 00:08:35 2019-08-23 00:09:39 t 1 2 87428 288 0.00 2019-08-23 00:12:50 2019-08-23 00:13:55 t 1 2 87435 372 0.00 2019-08-23 00:22:50 2019-08-23 00:23:53 t 1 2 87437 372 0.00 2019-08-23 00:27:13 2019-08-23 00:28:18 t 1 2 87438 372 0.00 2019-08-23 00:28:29 2019-08-23 00:29:34 t 1 2 87439 355 0.00 2019-08-23 00:07:17 2019-08-23 00:30:42 t 1 2 87441 372 0.00 2019-08-23 00:26:11 2019-08-23 00:36:16 t 1 2 87444 320 0.00 2019-08-23 00:39:10 2019-08-23 00:39:12 t 1 2 87445 320 0.00 2019-08-23 00:39:34 2019-08-23 00:39:37 t 1 2 87447 320 0.00 2019-08-23 00:40:32 2019-08-23 00:40:33 t 1 2 87452 318 0.00 2019-08-23 00:26:33 2019-08-23 00:46:14 t 1 2 87455 318 0.00 2019-08-23 00:46:50 2019-08-23 01:01:55 t 1 2 87456 331 0.00 2019-08-23 01:04:27 2019-08-23 01:05:32 t 1 2 87458 331 0.00 2019-08-23 01:11:49 2019-08-23 01:11:50 t 1 2 87460 331 0.00 2019-08-23 01:13:20 2019-08-23 01:14:23 t 1 2 87461 331 0.00 2019-08-23 01:16:58 2019-08-23 01:18:05 t 1 2 87462 331 0.00 2019-08-23 01:23:53 2019-08-23 01:24:56 t 1 2 87464 331 0.00 2019-08-23 01:30:39 2019-08-23 01:31:40 t 1 2 87466 331 0.00 2019-08-23 01:32:59 2019-08-23 01:33:58 t 1 2 87468 331 0.00 2019-08-23 01:54:51 2019-08-23 01:55:59 t 1 2 87470 355 0.00 2019-08-23 01:41:07 2019-08-23 02:08:15 t 1 2 87476 346 0.00 2019-08-23 01:40:48 2019-08-23 02:25:54 t 1 2 87478 367 0.00 2019-08-23 02:31:02 2019-08-23 02:32:05 t 1 2 87479 367 0.00 2019-08-23 02:33:33 2019-08-23 02:34:40 t 1 2 87489 372 0.00 2019-08-23 03:52:03 2019-08-23 04:02:08 t 1 2 87492 288 0.00 2019-08-23 07:00:08 2019-08-23 07:01:13 t 1 2 87497 288 0.00 2019-08-23 07:09:35 2019-08-23 07:10:38 t 1 2 87498 294 0.00 2019-08-23 07:32:55 2019-08-23 07:33:49 t 1 2 87500 212 0.00 2019-08-23 08:27:28 2019-08-23 08:28:36 t 1 2 87503 220 0.00 2019-08-23 08:58:48 2019-08-23 09:05:36 t 1 1 87507 320 0.00 2019-08-23 08:59:10 2019-08-23 09:19:15 t 1 2 87512 320 0.00 2019-08-23 09:23:14 2019-08-23 09:23:15 t 1 2 87515 212 0.00 2019-08-23 09:50:07 2019-08-23 09:50:29 t 1 2 87517 306 0.00 2019-08-23 09:51:49 2019-08-23 09:52:52 t 1 2 87526 306 0.00 2019-08-23 10:55:19 2019-08-23 10:56:23 t 1 2 87527 385 0.00 2019-08-23 10:55:28 2019-08-23 10:57:38 t 1 2 87529 220 0.00 2019-08-23 11:00:00 2019-08-23 11:06:34 t 1 1 87531 220 0.00 2019-08-23 11:06:50 2019-08-23 11:07:02 t 1 1 87533 220 0.00 2019-08-23 11:07:12 2019-08-23 11:07:23 t 1 1 87543 220 0.00 2019-08-23 11:08:38 2019-08-23 11:08:50 t 1 1 87545 220 0.00 2019-08-23 11:09:02 2019-08-23 11:09:13 t 1 1 87547 220 0.00 2019-08-23 11:09:23 2019-08-23 11:09:35 t 1 1 87551 363 0.00 2019-08-23 10:31:31 2019-08-23 11:26:36 t 1 2 87178 306 0.00 2019-08-22 13:25:27 2019-08-22 13:26:29 t 1 2 87183 306 0.00 2019-08-22 13:33:37 2019-08-22 13:34:41 t 1 2 87187 318 0.00 2019-08-22 14:00:26 2019-08-22 14:00:54 t 1 2 87192 220 0.00 2019-08-22 13:54:01 2019-08-22 14:07:02 t 1 1 87194 306 0.00 2019-08-22 14:07:33 2019-08-22 14:08:38 t 1 2 87200 212 0.00 2019-08-22 14:24:11 2019-08-22 14:24:35 t 1 2 87203 306 0.00 2019-08-22 14:27:55 2019-08-22 14:29:00 t 1 2 87209 320 0.00 2019-08-22 14:31:52 2019-08-22 14:41:57 t 1 2 87211 288 0.00 2019-08-22 14:43:16 2019-08-22 14:44:24 t 1 2 87213 288 0.00 2019-08-22 14:50:08 2019-08-22 14:51:11 t 1 2 87216 320 0.00 2019-08-22 14:36:35 2019-08-22 15:06:40 t 1 2 87225 306 0.00 2019-08-22 15:38:33 2019-08-22 15:39:34 t 1 2 87228 220 0.00 2019-08-22 15:40:29 2019-08-22 15:41:07 t 1 1 87231 220 0.00 2019-08-22 15:42:30 2019-08-22 15:43:02 t 1 1 87234 220 0.00 2019-08-22 15:44:20 2019-08-22 15:45:01 t 1 1 87237 220 0.00 2019-08-22 15:46:13 2019-08-22 15:46:47 t 1 1 87263 212 0.00 2019-08-22 16:05:29 2019-08-22 16:08:14 t 1 2 87264 304 0.00 2019-08-22 16:10:55 2019-08-22 16:10:55 f 1 2 87270 320 0.00 2019-08-22 16:06:58 2019-08-22 16:22:03 t 1 2 87271 367 0.00 2019-08-22 16:26:06 2019-08-22 16:27:04 t 1 2 87274 294 0.00 2019-08-22 15:33:08 2019-08-22 16:33:32 t 1 2 87286 306 0.00 2019-08-22 17:09:58 2019-08-22 17:11:02 t 1 2 87296 306 0.00 2019-08-22 17:39:54 2019-08-22 17:40:50 t 1 2 87302 343 0.00 2019-08-22 17:51:42 2019-08-22 17:52:51 t 1 2 87304 320 0.00 2019-08-22 16:46:23 2019-08-22 18:01:29 t 1 2 87306 320 0.00 2019-08-22 17:55:58 2019-08-22 18:06:03 t 1 2 87314 306 0.00 2019-08-22 18:20:09 2019-08-22 18:21:11 t 1 2 87315 363 0.00 2019-08-22 17:43:01 2019-08-22 18:23:57 t 1 2 87318 306 0.00 2019-08-22 18:37:29 2019-08-22 18:38:33 t 1 2 87320 306 0.00 2019-08-22 18:39:44 2019-08-22 18:40:46 t 1 2 87323 220 0.00 2019-08-22 18:40:28 2019-08-22 19:04:35 t 1 1 87326 318 0.00 2019-08-22 19:07:08 2019-08-22 19:17:14 t 1 2 87330 212 0.00 2019-08-22 19:24:22 2019-08-22 19:24:51 t 1 2 87333 306 0.00 2019-08-22 19:33:48 2019-08-22 19:34:52 t 1 2 87337 212 0.00 2019-08-22 19:41:48 2019-08-22 19:42:14 t 1 2 87345 220 0.00 2019-08-22 20:07:59 2019-08-22 20:09:03 t 1 1 87346 351 0.00 2019-08-22 19:54:21 2019-08-22 20:09:26 t 1 2 87348 294 0.00 2019-08-22 17:42:48 2019-08-22 20:26:11 t 1 2 87352 357 0.00 2019-08-22 16:38:42 2019-08-22 20:43:47 t 1 2 87354 355 0.00 2019-08-22 19:02:02 2019-08-22 20:47:07 t 1 2 87367 306 0.00 2019-08-22 21:25:47 2019-08-22 21:26:49 t 1 2 87369 306 0.00 2019-08-22 21:28:55 2019-08-22 21:30:01 t 1 2 87371 306 0.00 2019-08-22 21:31:51 2019-08-22 21:32:53 t 1 2 87372 306 0.00 2019-08-22 21:33:35 2019-08-22 21:34:40 t 1 2 87375 306 0.00 2019-08-22 21:36:54 2019-08-22 21:37:57 t 1 2 87378 306 0.00 2019-08-22 21:40:34 2019-08-22 21:41:38 t 1 2 87386 381 0.00 2019-08-22 22:02:54 2019-08-22 22:02:54 f 1 2 87390 381 0.00 2019-08-22 21:57:06 2019-08-22 22:07:11 t 1 2 87391 324 0.00 2019-08-22 22:08:29 2019-08-22 22:11:44 t 1 2 87396 320 0.00 2019-08-22 21:30:19 2019-08-22 22:25:25 t 1 2 87405 320 0.00 2019-08-22 22:42:15 2019-08-22 22:44:14 t 1 2 87406 212 0.00 2019-08-22 22:25:30 2019-08-22 22:50:53 t 1 2 87407 320 0.00 2019-08-22 22:45:09 2019-08-22 22:58:06 t 1 2 87413 220 0.00 2019-08-22 23:20:44 2019-08-22 23:31:24 t 1 2 87418 372 0.00 2019-08-22 23:45:01 2019-08-22 23:52:00 t 1 2 87420 247 0.00 2019-08-22 23:53:41 2019-08-22 23:54:23 t 1 2 87422 306 0.00 2019-08-22 23:59:08 2019-08-23 00:00:10 t 1 2 87423 306 0.00 2019-08-23 00:03:45 2019-08-23 00:04:52 t 1 2 87427 372 0.00 2019-08-23 00:12:47 2019-08-23 00:13:49 t 1 2 87429 372 0.00 2019-08-23 00:15:50 2019-08-23 00:16:53 t 1 2 87431 372 0.00 2019-08-23 00:19:17 2019-08-23 00:20:23 t 1 2 87434 212 0.00 2019-08-23 00:23:19 2019-08-23 00:23:40 t 1 2 87451 355 0.00 2019-08-23 00:37:10 2019-08-23 00:42:18 t 1 2 87467 324 0.00 2019-08-23 01:40:52 2019-08-23 01:48:24 t 1 2 87469 288 0.00 2019-08-23 02:04:01 2019-08-23 02:05:08 t 1 2 87471 346 0.00 2019-08-23 01:20:49 2019-08-23 02:15:54 t 1 2 87473 320 0.00 2019-08-23 00:42:42 2019-08-23 02:17:47 t 1 2 87475 331 0.00 2019-08-23 02:24:50 2019-08-23 02:25:52 t 1 2 87481 367 0.00 2019-08-23 02:36:51 2019-08-23 02:37:54 t 1 2 87484 379 0.00 2019-08-23 01:13:28 2019-08-23 03:18:33 t 1 2 87485 320 0.00 2019-08-23 02:40:01 2019-08-23 03:20:07 t 1 2 87486 372 0.00 2019-08-23 03:14:05 2019-08-23 03:39:10 t 1 2 87487 346 0.00 2019-08-23 02:37:21 2019-08-23 03:42:27 t 1 2 87490 322 0.00 2019-08-23 01:52:25 2019-08-23 04:25:42 t 1 2 87491 320 0.00 2019-08-23 06:06:30 2019-08-23 06:16:35 t 1 2 87494 288 0.00 2019-08-23 07:05:30 2019-08-23 07:06:33 t 1 2 87496 331 0.00 2019-08-23 07:08:40 2019-08-23 07:09:40 t 1 2 87502 320 0.00 2019-08-23 08:58:42 2019-08-23 08:58:44 t 1 2 87505 355 0.00 2019-08-23 09:11:44 2019-08-23 09:13:39 t 1 2 87511 320 0.00 2019-08-23 09:22:37 2019-08-23 09:22:39 t 1 2 87514 320 0.00 2019-08-23 09:23:48 2019-08-23 09:33:54 t 1 2 87516 296 0.00 2019-08-23 09:45:15 2019-08-23 09:50:38 t 1 2 87519 306 0.00 2019-08-23 10:02:33 2019-08-23 10:03:40 t 1 2 87524 306 0.00 2019-08-23 10:29:26 2019-08-23 10:30:34 t 1 2 87532 220 0.00 2019-08-23 11:07:01 2019-08-23 11:07:12 t 1 1 87542 220 0.00 2019-08-23 11:08:28 2019-08-23 11:08:39 t 1 1 87544 220 0.00 2019-08-23 11:08:49 2019-08-23 11:09:02 t 1 1 87546 220 0.00 2019-08-23 11:09:13 2019-08-23 11:09:24 t 1 1 87552 296 0.00 2019-08-23 11:11:33 2019-08-23 11:26:57 t 1 2 87553 212 0.00 2019-08-23 11:29:23 2019-08-23 11:29:44 t 1 2 87558 220 0.00 2019-08-23 11:44:58 2019-08-23 11:45:10 t 1 1 87560 220 0.00 2019-08-23 11:45:20 2019-08-23 11:45:31 t 1 1 87567 220 0.00 2019-08-23 11:46:35 2019-08-23 11:46:47 t 1 1 87569 220 0.00 2019-08-23 11:47:03 2019-08-23 11:47:14 t 1 1 87572 306 0.00 2019-08-23 11:51:06 2019-08-23 11:52:11 t 1 2 87578 331 0.00 2019-08-23 12:09:27 2019-08-23 12:10:32 t 1 2 87584 318 0.00 2019-08-23 09:59:05 2019-08-23 12:25:48 t 1 2 87586 324 0.00 2019-08-23 10:13:29 2019-08-23 12:28:34 t 1 2 87594 320 0.00 2019-08-23 12:26:50 2019-08-23 12:46:55 t 1 2 87595 220 0.00 2019-08-23 12:44:10 2019-08-23 12:49:12 t 1 1 87596 320 0.00 2019-08-23 12:42:12 2019-08-23 12:52:17 t 1 2 87599 306 0.00 2019-08-23 12:58:32 2019-08-23 12:59:38 t 1 2 87600 306 0.00 2019-08-23 13:00:04 2019-08-23 13:00:05 t 1 2 87602 320 0.00 2019-08-23 12:55:53 2019-08-23 13:05:58 t 1 2 87603 372 0.00 2019-08-23 13:14:42 2019-08-23 13:16:06 t 1 2 87605 306 0.00 2019-08-23 13:22:39 2019-08-23 13:22:45 t 1 2 87608 306 0.00 2019-08-23 13:25:29 2019-08-23 13:26:36 t 1 2 87198 306 0.00 2019-08-22 14:19:48 2019-08-22 14:20:49 t 1 2 87202 306 0.00 2019-08-22 14:27:30 2019-08-22 14:27:30 t 1 2 87204 320 0.00 2019-08-22 14:14:59 2019-08-22 14:30:04 t 1 2 87208 288 0.00 2019-08-22 14:38:32 2019-08-22 14:39:36 t 1 2 87215 296 0.00 2019-08-22 14:55:14 2019-08-22 14:58:34 t 1 2 87219 320 0.00 2019-08-22 15:07:07 2019-08-22 15:17:12 t 1 2 87227 220 0.00 2019-08-22 15:39:50 2019-08-22 15:40:30 t 1 1 87230 220 0.00 2019-08-22 15:41:51 2019-08-22 15:42:30 t 1 1 87233 220 0.00 2019-08-22 15:43:45 2019-08-22 15:44:20 t 1 1 87236 220 0.00 2019-08-22 15:45:35 2019-08-22 15:46:14 t 1 1 87238 220 0.00 2019-08-22 15:46:47 2019-08-22 15:47:25 t 1 1 87240 220 0.00 2019-08-22 15:47:25 2019-08-22 15:48:00 t 1 1 87241 220 0.00 2019-08-22 15:48:00 2019-08-22 15:48:38 t 1 1 87243 220 0.00 2019-08-22 15:48:46 2019-08-22 15:49:25 t 1 1 87250 220 0.00 2019-08-22 15:51:50 2019-08-22 15:52:22 t 1 1 87252 220 0.00 2019-08-22 15:52:22 2019-08-22 15:53:00 t 1 1 87254 306 0.00 2019-08-22 15:53:30 2019-08-22 15:54:38 t 1 2 87257 288 0.00 2019-08-22 15:57:30 2019-08-22 15:58:35 t 1 2 87258 288 0.00 2019-08-22 15:58:52 2019-08-22 15:59:58 t 1 2 87261 220 0.00 2019-08-22 15:53:34 2019-08-22 16:06:11 t 1 1 87262 288 0.00 2019-08-22 16:06:24 2019-08-22 16:07:30 t 1 2 87265 247 0.00 2019-08-22 16:11:56 2019-08-22 16:12:59 t 1 2 87269 288 0.00 2019-08-22 16:20:24 2019-08-22 16:21:29 t 1 2 87273 288 0.00 2019-08-22 16:29:33 2019-08-22 16:30:41 t 1 2 87282 320 0.00 2019-08-22 16:37:23 2019-08-22 16:52:28 t 1 2 87299 324 0.00 2019-08-22 17:47:26 2019-08-22 17:48:31 t 1 2 87300 343 0.00 2019-08-22 17:49:52 2019-08-22 17:51:01 t 1 2 87301 324 0.00 2019-08-22 17:51:30 2019-08-22 17:52:36 t 1 2 87305 306 0.00 2019-08-22 18:00:33 2019-08-22 18:01:38 t 1 2 87310 306 0.00 2019-08-22 18:15:45 2019-08-22 18:16:50 t 1 2 87312 306 0.00 2019-08-22 18:17:51 2019-08-22 18:18:54 t 1 2 87316 346 0.00 2019-08-22 18:19:41 2019-08-22 18:33:14 t 1 2 87317 306 0.00 2019-08-22 18:34:44 2019-08-22 18:35:46 t 1 2 87319 351 0.00 2019-08-22 13:35:27 2019-08-22 18:40:33 t 1 2 87324 320 0.00 2019-08-22 19:06:48 2019-08-22 19:16:53 t 1 2 87327 385 0.00 2019-08-22 18:22:35 2019-08-22 19:18:14 t 1 2 87328 320 0.00 2019-08-22 19:09:57 2019-08-22 19:20:02 t 1 2 87331 306 0.00 2019-08-22 19:29:36 2019-08-22 19:30:37 t 1 2 87336 306 0.00 2019-08-22 19:39:14 2019-08-22 19:40:16 t 1 2 87338 306 0.00 2019-08-22 19:45:55 2019-08-22 19:46:58 t 1 2 87340 306 0.00 2019-08-22 19:48:55 2019-08-22 19:49:59 t 1 2 87343 320 0.00 2019-08-22 19:53:10 2019-08-22 20:03:15 t 1 2 87350 320 0.00 2019-08-22 20:25:22 2019-08-22 20:40:27 t 1 2 87353 372 0.00 2019-08-22 20:42:27 2019-08-22 20:44:46 t 1 2 87356 306 0.00 2019-08-22 20:52:13 2019-08-22 20:53:20 t 1 2 87358 296 0.00 2019-08-22 20:01:05 2019-08-22 20:54:28 t 1 2 87360 320 0.00 2019-08-22 20:45:52 2019-08-22 21:00:57 t 1 2 87365 306 0.00 2019-08-22 21:24:21 2019-08-22 21:25:25 t 1 2 87370 306 0.00 2019-08-22 21:30:22 2019-08-22 21:31:22 t 1 2 87376 306 0.00 2019-08-22 21:38:38 2019-08-22 21:39:43 t 1 2 87379 220 0.00 2019-08-22 21:01:13 2019-08-22 21:43:23 t 1 1 87383 381 0.00 2019-08-22 21:34:01 2019-08-22 21:49:06 t 1 2 87385 381 0.00 2019-08-22 22:02:45 2019-08-22 22:02:45 f 1 2 87387 361 0.00 2019-08-22 20:31:19 2019-08-22 22:03:58 t 1 2 87389 381 0.00 2019-08-22 21:45:44 2019-08-22 22:05:49 t 1 2 87392 349 0.00 2019-08-22 22:16:09 2019-08-22 22:17:14 t 1 2 87394 349 0.00 2019-08-22 22:18:48 2019-08-22 22:19:55 t 1 2 87400 320 0.00 2019-08-22 22:36:21 2019-08-22 22:36:22 t 1 2 87401 320 0.00 2019-08-22 22:37:00 2019-08-22 22:37:04 t 1 2 87403 320 0.00 2019-08-22 22:38:05 2019-08-22 22:40:33 t 1 2 87408 372 0.00 2019-08-22 22:55:22 2019-08-22 23:05:28 t 1 2 87416 355 0.00 2019-08-22 21:13:55 2019-08-22 23:41:24 t 1 2 87425 372 0.00 2019-08-23 00:09:56 2019-08-23 00:11:01 t 1 2 87432 372 0.00 2019-08-23 00:20:48 2019-08-23 00:21:50 t 1 2 87436 372 0.00 2019-08-23 00:24:28 2019-08-23 00:25:31 t 1 2 87440 372 0.00 2019-08-23 00:30:06 2019-08-23 00:31:11 t 1 2 87446 320 0.00 2019-08-23 00:40:00 2019-08-23 00:40:03 t 1 2 87448 320 0.00 2019-08-23 00:40:58 2019-08-23 00:41:02 t 1 2 87450 320 0.00 2019-08-23 00:41:33 2019-08-23 00:41:34 t 1 2 87453 324 0.00 2019-08-22 18:48:29 2019-08-23 00:48:35 t 1 2 87459 331 0.00 2019-08-23 01:11:58 2019-08-23 01:13:05 t 1 2 87465 363 0.00 2019-08-22 20:57:05 2019-08-23 01:32:10 t 1 2 87472 346 0.00 2019-08-23 02:07:11 2019-08-23 02:17:16 t 1 2 87474 302 0.00 2019-08-23 02:24:24 2019-08-23 02:24:24 f 1 2 87482 367 0.00 2019-08-23 02:38:07 2019-08-23 02:39:11 t 1 2 87493 288 0.00 2019-08-23 07:01:26 2019-08-23 07:02:29 t 1 2 87495 288 0.00 2019-08-23 07:08:05 2019-08-23 07:09:10 t 1 2 87504 306 0.00 2019-08-23 09:08:07 2019-08-23 09:09:12 t 1 2 87506 320 0.00 2019-08-23 09:15:16 2019-08-23 09:15:17 t 1 2 87508 292 0.00 2019-08-23 09:19:22 2019-08-23 09:20:29 t 1 2 87509 320 0.00 2019-08-23 09:21:47 2019-08-23 09:21:48 t 1 2 87513 320 0.00 2019-08-23 09:15:28 2019-08-23 09:25:33 t 1 2 87521 324 0.00 2019-08-23 10:12:35 2019-08-23 10:12:39 t 1 2 87522 324 0.00 2019-08-23 10:13:09 2019-08-23 10:13:24 t 1 2 87525 355 0.00 2019-08-23 10:42:26 2019-08-23 10:51:24 t 1 2 87528 320 0.00 2019-08-23 10:51:19 2019-08-23 11:01:24 t 1 2 87534 212 0.00 2019-08-23 11:07:01 2019-08-23 11:07:29 t 1 2 87536 220 0.00 2019-08-23 11:07:33 2019-08-23 11:07:45 t 1 1 87538 220 0.00 2019-08-23 11:07:55 2019-08-23 11:08:07 t 1 1 87540 220 0.00 2019-08-23 11:08:17 2019-08-23 11:08:28 t 1 1 87541 306 0.00 2019-08-23 11:07:37 2019-08-23 11:08:39 t 1 2 87548 220 0.00 2019-08-23 11:09:34 2019-08-23 11:09:36 t 1 1 87555 320 0.00 2019-08-23 11:28:14 2019-08-23 11:38:19 t 1 2 87561 220 0.00 2019-08-23 11:45:31 2019-08-23 11:45:42 t 1 1 87563 220 0.00 2019-08-23 11:45:53 2019-08-23 11:46:04 t 1 1 87565 220 0.00 2019-08-23 11:46:14 2019-08-23 11:46:25 t 1 1 87571 212 0.00 2019-08-23 11:51:37 2019-08-23 11:51:57 t 1 2 87574 320 0.00 2019-08-23 11:42:40 2019-08-23 11:52:45 t 1 2 87575 324 0.00 2019-08-23 10:57:07 2019-08-23 11:55:06 t 1 2 87579 212 0.00 2019-08-23 12:12:46 2019-08-23 12:13:07 t 1 2 87581 331 0.00 2019-08-23 12:14:19 2019-08-23 12:15:23 t 1 2 87585 202 0.00 2019-08-23 12:28:00 2019-08-23 12:28:00 f 1 2 87587 220 0.00 2019-08-23 12:05:44 2019-08-23 12:28:55 t 1 1 87590 220 0.00 2019-08-23 12:33:22 2019-08-23 12:43:11 t 1 1 87591 220 0.00 2019-08-23 12:43:14 2019-08-23 12:44:08 t 1 1 87607 320 0.00 2019-08-23 12:59:15 2019-08-23 13:24:20 t 1 2 87610 306 0.00 2019-08-23 13:29:58 2019-08-23 13:31:03 t 1 2 87293 306 0.00 2019-08-22 17:34:41 2019-08-22 17:35:46 t 1 2 87294 288 0.00 2019-08-22 17:36:27 2019-08-22 17:37:35 t 1 2 87298 306 0.00 2019-08-22 17:43:45 2019-08-22 17:44:51 t 1 2 87303 372 0.00 2019-08-22 17:39:02 2019-08-22 17:57:03 t 1 2 87309 306 0.00 2019-08-22 18:13:13 2019-08-22 18:14:17 t 1 2 87313 308 0.00 2019-08-22 13:45:44 2019-08-22 18:20:49 t 1 2 87325 212 0.00 2019-08-22 19:16:36 2019-08-22 19:16:56 t 1 2 87335 306 0.00 2019-08-22 19:36:34 2019-08-22 19:37:42 t 1 2 87339 306 0.00 2019-08-22 19:47:24 2019-08-22 19:48:29 t 1 2 87341 306 0.00 2019-08-22 19:51:14 2019-08-22 19:52:14 t 1 2 87342 306 0.00 2019-08-22 19:55:55 2019-08-22 19:56:55 t 1 2 87344 220 0.00 2019-08-22 20:05:54 2019-08-22 20:08:55 t 1 1 87349 361 0.00 2019-08-22 19:50:33 2019-08-22 20:28:34 t 1 2 87355 212 0.00 2019-08-22 20:52:33 2019-08-22 20:52:41 t 1 2 87362 306 0.00 2019-08-22 21:07:06 2019-08-22 21:08:08 t 1 2 87366 212 0.00 2019-08-22 21:26:12 2019-08-22 21:26:45 t 1 2 87374 320 0.00 2019-08-22 21:06:43 2019-08-22 21:36:48 t 1 2 87377 296 0.00 2019-08-22 21:38:31 2019-08-22 21:39:54 t 1 2 87380 381 0.00 2019-08-22 21:45:06 2019-08-22 21:45:11 t 1 2 87381 220 0.00 2019-08-22 20:09:06 2019-08-22 21:47:48 t 1 1 87382 212 0.00 2019-08-22 21:47:16 2019-08-22 21:47:52 t 1 2 87384 294 0.00 2019-08-22 20:53:03 2019-08-22 21:53:27 t 1 2 87388 306 0.00 2019-08-22 22:03:25 2019-08-22 22:04:30 t 1 2 87393 349 0.00 2019-08-22 22:17:31 2019-08-22 22:18:36 t 1 2 87395 220 0.00 2019-08-22 21:47:48 2019-08-22 22:22:27 t 1 1 87398 247 0.00 2019-08-22 22:31:00 2019-08-22 22:33:40 t 1 2 87402 349 0.00 2019-08-22 22:36:40 2019-08-22 22:37:28 t 1 2 87409 212 0.00 2019-08-22 23:07:42 2019-08-22 23:08:52 t 1 2 87410 212 0.00 2019-08-22 23:16:36 2019-08-22 23:17:19 t 1 2 87412 306 0.00 2019-08-22 23:28:41 2019-08-22 23:29:44 t 1 2 87415 306 0.00 2019-08-22 23:31:54 2019-08-22 23:32:58 t 1 2 87417 372 0.00 2019-08-22 23:10:10 2019-08-22 23:44:11 t 1 2 87426 372 0.00 2019-08-23 00:11:19 2019-08-23 00:12:22 t 1 2 87430 372 0.00 2019-08-23 00:17:37 2019-08-23 00:18:41 t 1 2 87433 372 0.00 2019-08-23 00:22:06 2019-08-23 00:22:42 t 1 2 87442 220 0.00 2019-08-23 00:12:50 2019-08-23 00:38:13 t 1 2 87443 320 0.00 2019-08-23 00:38:33 2019-08-23 00:38:34 t 1 2 87449 288 0.00 2019-08-23 00:40:12 2019-08-23 00:41:16 t 1 2 87454 220 0.00 2019-08-23 00:41:20 2019-08-23 01:01:25 t 1 2 87457 355 0.00 2019-08-23 01:06:28 2019-08-23 01:06:51 t 1 2 87463 331 0.00 2019-08-23 01:29:17 2019-08-23 01:30:22 t 1 2 87477 361 0.00 2019-08-23 00:47:12 2019-08-23 02:30:21 t 1 2 87480 346 0.00 2019-08-23 02:10:45 2019-08-23 02:36:33 t 1 2 87483 339 0.00 2019-08-23 02:09:38 2019-08-23 03:10:10 t 1 2 87488 372 0.00 2019-08-23 03:47:27 2019-08-23 03:57:32 t 1 2 87499 294 0.00 2019-08-23 07:36:41 2019-08-23 07:39:41 t 1 2 87501 320 0.00 2019-08-23 08:57:12 2019-08-23 08:57:13 t 1 2 87510 320 0.00 2019-08-23 09:22:09 2019-08-23 09:22:11 t 1 2 87518 324 0.00 2019-08-23 09:38:16 2019-08-23 09:58:21 t 1 2 87520 294 0.00 2019-08-23 09:10:52 2019-08-23 10:11:16 t 1 2 87523 320 0.00 2019-08-23 09:29:04 2019-08-23 10:24:09 t 1 2 87530 220 0.00 2019-08-23 10:37:06 2019-08-23 11:06:50 t 1 1 87535 220 0.00 2019-08-23 11:07:23 2019-08-23 11:07:34 t 1 1 87537 220 0.00 2019-08-23 11:07:44 2019-08-23 11:07:56 t 1 1 87539 220 0.00 2019-08-23 11:08:06 2019-08-23 11:08:17 t 1 1 87549 361 0.00 2019-08-23 11:14:00 2019-08-23 11:24:15 t 1 2 87550 324 0.00 2019-08-23 11:24:37 2019-08-23 11:25:49 t 1 2 87556 296 0.00 2019-08-23 11:39:38 2019-08-23 11:43:01 t 1 2 87562 220 0.00 2019-08-23 11:45:42 2019-08-23 11:45:53 t 1 1 87564 220 0.00 2019-08-23 11:46:04 2019-08-23 11:46:15 t 1 1 87566 220 0.00 2019-08-23 11:46:25 2019-08-23 11:46:36 t 1 1 87570 294 0.00 2019-08-23 10:46:56 2019-08-23 11:47:19 t 1 2 87576 296 0.00 2019-08-23 11:50:00 2019-08-23 11:56:19 t 1 2 87589 212 0.00 2019-08-23 12:25:26 2019-08-23 12:38:58 t 1 2 87592 331 0.00 2019-08-23 12:44:50 2019-08-23 12:45:51 t 1 2 87597 306 0.00 2019-08-23 12:57:05 2019-08-23 12:57:11 t 1 2 87598 320 0.00 2019-08-23 12:59:05 2019-08-23 12:59:09 t 1 2 87601 306 0.00 2019-08-23 13:00:12 2019-08-23 13:01:17 t 1 2 87612 306 0.00 2019-08-23 13:33:34 2019-08-23 13:33:34 t 1 2 87614 306 0.00 2019-08-23 13:35:12 2019-08-23 13:36:19 t 1 2 87616 296 0.00 2019-08-23 13:37:40 2019-08-23 13:50:10 t 1 2 87621 306 0.00 2019-08-23 13:55:37 2019-08-23 13:56:38 t 1 2 87631 306 0.00 2019-08-23 14:37:00 2019-08-23 14:38:03 t 1 2 87635 212 0.00 2019-08-23 14:59:53 2019-08-23 15:00:51 t 1 2 87637 346 0.00 2019-08-23 14:57:51 2019-08-23 15:04:26 t 1 2 87646 306 0.00 2019-08-23 15:33:57 2019-08-23 15:35:01 t 1 2 87648 220 0.00 2019-08-23 15:37:16 2019-08-23 15:39:49 t 1 1 87650 367 0.00 2019-08-23 15:04:15 2019-08-23 15:48:47 t 1 2 87657 306 0.00 2019-08-23 16:22:44 2019-08-23 16:22:58 t 1 2 87661 296 0.00 2019-08-23 16:24:21 2019-08-23 16:25:42 t 1 2 87664 367 0.00 2019-08-23 15:56:44 2019-08-23 16:51:14 t 1 2 87667 343 0.00 2019-08-23 16:54:17 2019-08-23 17:04:57 t 1 2 87677 220 0.00 2019-08-23 17:17:45 2019-08-23 17:18:17 t 1 1 87678 220 0.00 2019-08-23 17:18:16 2019-08-23 17:18:51 t 1 1 87684 220 0.00 2019-08-23 17:21:02 2019-08-23 17:21:36 t 1 1 87687 220 0.00 2019-08-23 17:22:45 2019-08-23 17:23:20 t 1 1 87688 220 0.00 2019-08-23 17:23:19 2019-08-23 17:23:55 t 1 1 87694 220 0.00 2019-08-23 17:26:44 2019-08-23 17:27:19 t 1 1 87700 220 0.00 2019-08-23 17:30:02 2019-08-23 17:30:36 t 1 1 87703 220 0.00 2019-08-23 17:31:45 2019-08-23 17:32:19 t 1 1 87707 220 0.00 2019-08-23 17:34:02 2019-08-23 17:34:37 t 1 1 87712 220 0.00 2019-08-23 17:36:54 2019-08-23 17:37:26 t 1 1 87716 220 0.00 2019-08-23 17:39:04 2019-08-23 17:39:39 t 1 1 87723 220 0.00 2019-08-23 17:42:27 2019-08-23 17:43:00 t 1 1 87729 220 0.00 2019-08-23 17:45:51 2019-08-23 17:46:26 t 1 1 87732 220 0.00 2019-08-23 17:47:35 2019-08-23 17:48:08 t 1 1 87733 220 0.00 2019-08-23 17:48:08 2019-08-23 17:48:43 t 1 1 87738 220 0.00 2019-08-23 17:51:02 2019-08-23 17:51:35 t 1 1 87741 220 0.00 2019-08-23 17:52:43 2019-08-23 17:53:18 t 1 1 87742 220 0.00 2019-08-23 17:53:18 2019-08-23 17:53:49 t 1 1 87750 220 0.00 2019-08-23 18:03:07 2019-08-23 18:03:40 t 1 1 87755 220 0.00 2019-08-23 18:05:54 2019-08-23 18:06:26 t 1 1 87758 220 0.00 2019-08-23 18:07:28 2019-08-23 18:08:00 t 1 1 87761 220 0.00 2019-08-23 18:09:08 2019-08-23 18:09:42 t 1 1 87764 220 0.00 2019-08-23 18:09:42 2019-08-23 18:10:14 t 1 1 87767 220 0.00 2019-08-23 18:11:20 2019-08-23 18:11:54 t 1 1 87770 288 0.00 2019-08-23 18:16:03 2019-08-23 18:17:08 t 1 2 87554 324 0.00 2019-08-23 11:29:02 2019-08-23 11:30:41 t 1 2 87557 220 0.00 2019-08-23 11:09:45 2019-08-23 11:44:59 t 1 1 87559 220 0.00 2019-08-23 11:45:09 2019-08-23 11:45:21 t 1 1 87568 220 0.00 2019-08-23 11:46:46 2019-08-23 11:47:03 t 1 1 87573 355 0.00 2019-08-23 11:49:41 2019-08-23 11:52:41 t 1 2 87577 220 0.00 2019-08-23 11:47:14 2019-08-23 12:05:39 t 1 1 87580 351 0.00 2019-08-23 11:48:58 2019-08-23 12:14:03 t 1 2 87582 306 0.00 2019-08-23 12:17:14 2019-08-23 12:18:19 t 1 2 87583 306 0.00 2019-08-23 12:20:26 2019-08-23 12:21:30 t 1 2 87588 331 0.00 2019-08-23 12:37:23 2019-08-23 12:38:24 t 1 2 87593 292 0.00 2019-08-23 12:45:14 2019-08-23 12:46:21 t 1 2 87604 324 0.00 2019-08-23 13:17:36 2019-08-23 13:21:10 t 1 2 87606 306 0.00 2019-08-23 13:23:14 2019-08-23 13:24:18 t 1 2 87609 296 0.00 2019-08-23 13:25:53 2019-08-23 13:27:17 t 1 2 87615 306 0.00 2019-08-23 13:36:44 2019-08-23 13:37:50 t 1 2 87617 372 0.00 2019-08-23 13:50:49 2019-08-23 13:50:52 t 1 2 87619 372 0.00 2019-08-23 13:54:02 2019-08-23 13:54:05 t 1 2 87620 306 0.00 2019-08-23 13:54:11 2019-08-23 13:54:11 t 1 2 87622 324 0.00 2019-08-23 14:00:15 2019-08-23 14:10:21 t 1 2 87624 220 0.00 2019-08-23 13:58:57 2019-08-23 14:12:05 t 1 1 87626 212 0.00 2019-08-23 14:19:09 2019-08-23 14:19:50 t 1 2 87629 355 0.00 2019-08-23 14:33:42 2019-08-23 14:33:49 t 1 2 87630 355 0.00 2019-08-23 14:34:00 2019-08-23 14:34:09 t 1 2 87632 351 0.00 2019-08-23 14:28:26 2019-08-23 14:38:31 t 1 2 87634 306 0.00 2019-08-23 14:48:58 2019-08-23 14:50:00 t 1 2 87636 212 0.00 2019-08-23 15:01:11 2019-08-23 15:01:53 t 1 2 87638 220 0.00 2019-08-23 15:05:21 2019-08-23 15:08:51 t 1 1 87642 220 0.00 2019-08-23 15:10:34 2019-08-23 15:10:39 t 1 1 87644 311 0.00 2019-08-23 14:53:19 2019-08-23 15:26:54 t 1 2 87649 324 0.00 2019-08-23 15:41:52 2019-08-23 15:44:12 t 1 2 87652 320 0.00 2019-08-23 13:45:53 2019-08-23 15:55:58 t 1 2 87653 292 0.00 2019-08-23 15:59:55 2019-08-23 16:01:02 t 1 2 87656 320 0.00 2019-08-23 16:06:07 2019-08-23 16:16:12 t 1 2 87660 306 0.00 2019-08-23 16:24:22 2019-08-23 16:24:30 t 1 2 87665 292 0.00 2019-08-23 16:52:08 2019-08-23 16:53:12 t 1 2 87669 220 0.00 2019-08-23 11:39:54 2019-08-23 17:12:15 t 1 2 87670 212 0.00 2019-08-23 17:14:56 2019-08-23 17:15:15 t 1 2 87673 306 0.00 2019-08-23 17:16:32 2019-08-23 17:16:46 t 1 2 87675 220 0.00 2019-08-23 17:17:10 2019-08-23 17:17:45 t 1 1 87680 220 0.00 2019-08-23 17:19:23 2019-08-23 17:19:58 t 1 1 87682 220 0.00 2019-08-23 17:20:31 2019-08-23 17:21:02 t 1 1 87690 220 0.00 2019-08-23 17:24:26 2019-08-23 17:25:00 t 1 1 87693 220 0.00 2019-08-23 17:26:09 2019-08-23 17:26:45 t 1 1 87696 220 0.00 2019-08-23 17:27:50 2019-08-23 17:28:23 t 1 1 87697 220 0.00 2019-08-23 17:28:23 2019-08-23 17:28:57 t 1 1 87705 220 0.00 2019-08-23 17:32:54 2019-08-23 17:33:30 t 1 1 87706 220 0.00 2019-08-23 17:33:29 2019-08-23 17:34:03 t 1 1 87709 220 0.00 2019-08-23 17:35:12 2019-08-23 17:35:46 t 1 1 87714 220 0.00 2019-08-23 17:37:57 2019-08-23 17:38:30 t 1 1 87715 220 0.00 2019-08-23 17:38:29 2019-08-23 17:39:05 t 1 1 87718 220 0.00 2019-08-23 17:40:14 2019-08-23 17:40:49 t 1 1 87722 220 0.00 2019-08-23 17:41:53 2019-08-23 17:42:27 t 1 1 87726 220 0.00 2019-08-23 17:44:05 2019-08-23 17:44:41 t 1 1 87731 220 0.00 2019-08-23 17:47:00 2019-08-23 17:47:35 t 1 1 87735 220 0.00 2019-08-23 17:49:16 2019-08-23 17:49:51 t 1 1 87744 220 0.00 2019-08-23 17:54:22 2019-08-23 17:54:57 t 1 1 87747 220 0.00 2019-08-23 17:56:02 2019-08-23 17:56:37 t 1 1 87752 220 0.00 2019-08-23 18:04:14 2019-08-23 18:04:46 t 1 1 87757 220 0.00 2019-08-23 18:06:57 2019-08-23 18:07:28 t 1 1 87760 220 0.00 2019-08-23 18:08:34 2019-08-23 18:09:09 t 1 1 87762 220 0.00 2019-08-23 09:42:18 2019-08-23 18:10:01 t 1 2 87766 220 0.00 2019-08-23 18:10:48 2019-08-23 18:11:20 t 1 1 87773 320 0.00 2019-08-23 17:04:39 2019-08-23 18:34:44 t 1 2 87777 306 0.00 2019-08-23 18:42:28 2019-08-23 18:42:32 t 1 2 87779 306 0.00 2019-08-23 18:43:19 2019-08-23 18:44:22 t 1 2 87786 324 0.00 2019-08-23 18:55:38 2019-08-23 18:56:01 t 1 2 87787 288 0.00 2019-08-23 18:59:07 2019-08-23 19:00:13 t 1 2 87789 372 0.00 2019-08-23 19:02:12 2019-08-23 19:04:24 t 1 2 87792 213 0.00 2019-08-23 19:03:45 2019-08-23 19:04:49 t 1 2 87794 363 0.00 2019-08-23 19:05:52 2019-08-23 19:05:59 t 1 2 87804 306 0.00 2019-08-23 19:12:31 2019-08-23 19:13:33 t 1 2 87809 220 0.00 2019-08-23 17:26:59 2019-08-23 19:30:27 t 1 2 87810 351 0.00 2019-08-23 19:40:25 2019-08-23 19:40:41 t 1 2 87814 346 0.00 2019-08-23 19:52:53 2019-08-23 19:54:52 t 1 2 87816 288 0.00 2019-08-23 20:06:09 2019-08-23 20:07:13 t 1 2 87818 318 0.00 2019-08-23 20:22:00 2019-08-23 20:22:32 t 1 2 87822 292 0.00 2019-08-23 20:31:53 2019-08-23 20:31:54 t 1 2 87823 292 0.00 2019-08-23 20:32:00 2019-08-23 20:33:03 t 1 2 87825 324 0.00 2019-08-23 20:32:26 2019-08-23 20:33:54 t 1 2 87831 292 0.00 2019-08-23 20:42:39 2019-08-23 20:43:43 t 1 2 87832 220 0.00 2019-08-23 20:42:03 2019-08-23 20:45:39 t 1 1 87837 220 0.00 2019-08-23 20:46:53 2019-08-23 20:47:25 t 1 1 87841 220 0.00 2019-08-23 20:48:01 2019-08-23 20:48:31 t 1 1 87846 220 0.00 2019-08-23 20:49:13 2019-08-23 20:49:44 t 1 1 87848 220 0.00 2019-08-23 20:49:48 2019-08-23 20:50:21 t 1 1 87859 220 0.00 2019-08-23 21:18:31 2019-08-23 21:20:46 t 1 1 87861 220 0.00 2019-08-23 21:21:20 2019-08-23 21:21:56 t 1 1 87867 220 0.00 2019-08-23 21:24:51 2019-08-23 21:25:30 t 1 1 87870 220 0.00 2019-08-23 21:26:46 2019-08-23 21:27:24 t 1 1 87874 220 0.00 2019-08-23 21:29:09 2019-08-23 21:29:47 t 1 1 87878 220 0.00 2019-08-23 21:30:56 2019-08-23 21:31:31 t 1 1 87881 220 0.00 2019-08-23 21:32:42 2019-08-23 21:33:18 t 1 1 87882 220 0.00 2019-08-23 21:33:18 2019-08-23 21:33:52 t 1 1 87884 346 0.00 2019-08-23 19:54:45 2019-08-23 21:34:50 t 1 2 87889 220 0.00 2019-08-23 21:36:51 2019-08-23 21:37:26 t 1 1 87896 220 0.00 2019-08-23 21:39:51 2019-08-23 21:40:30 t 1 1 87901 220 0.00 2019-08-23 21:43:00 2019-08-23 21:43:33 t 1 1 87902 220 0.00 2019-08-23 21:43:33 2019-08-23 21:44:08 t 1 1 87905 220 0.00 2019-08-23 21:45:18 2019-08-23 21:45:53 t 1 1 87909 220 0.00 2019-08-23 21:47:03 2019-08-23 21:47:37 t 1 1 87911 220 0.00 2019-08-23 21:43:22 2019-08-23 21:48:28 t 1 2 87914 220 0.00 2019-08-23 21:49:07 2019-08-23 21:49:21 t 1 1 87924 296 0.00 2019-08-23 21:51:10 2019-08-23 21:54:31 t 1 2 87931 220 0.00 2019-08-23 21:56:29 2019-08-23 21:57:05 t 1 1 87936 306 0.00 2019-08-23 21:59:26 2019-08-23 22:00:29 t 1 2 87939 220 0.00 2019-08-23 22:01:33 2019-08-23 22:03:04 t 1 1 87940 220 0.00 2019-08-23 22:03:04 2019-08-23 22:03:37 t 1 1 87611 306 0.00 2019-08-23 13:31:39 2019-08-23 13:32:36 t 1 2 87613 306 0.00 2019-08-23 13:33:46 2019-08-23 13:34:50 t 1 2 87618 372 0.00 2019-08-23 13:50:59 2019-08-23 13:53:06 t 1 2 87623 385 0.00 2019-08-23 11:01:19 2019-08-23 14:11:00 t 1 2 87625 220 0.00 2019-08-23 14:12:08 2019-08-23 14:14:54 t 1 1 87627 355 0.00 2019-08-23 14:32:11 2019-08-23 14:33:12 t 1 2 87628 355 0.00 2019-08-23 14:33:29 2019-08-23 14:33:34 t 1 2 87639 220 0.00 2019-08-23 15:08:50 2019-08-23 15:09:25 t 1 1 87641 220 0.00 2019-08-23 15:10:00 2019-08-23 15:10:34 t 1 1 87645 220 0.00 2019-08-23 15:11:09 2019-08-23 15:30:37 t 1 1 87651 367 0.00 2019-08-23 15:49:17 2019-08-23 15:51:46 t 1 2 87654 346 0.00 2019-08-23 16:00:17 2019-08-23 16:09:20 t 1 2 87662 320 0.00 2019-08-23 16:17:33 2019-08-23 16:27:38 t 1 2 87663 320 0.00 2019-08-23 16:31:15 2019-08-23 16:41:20 t 1 2 87668 351 0.00 2019-08-23 15:17:06 2019-08-23 17:07:12 t 1 2 87672 220 0.00 2019-08-23 16:58:45 2019-08-23 17:16:36 t 1 1 87681 220 0.00 2019-08-23 17:19:57 2019-08-23 17:20:31 t 1 1 87685 220 0.00 2019-08-23 17:21:36 2019-08-23 17:22:10 t 1 1 87691 220 0.00 2019-08-23 17:25:00 2019-08-23 17:25:35 t 1 1 87695 220 0.00 2019-08-23 17:27:19 2019-08-23 17:27:50 t 1 1 87698 220 0.00 2019-08-23 17:28:57 2019-08-23 17:29:29 t 1 1 87701 220 0.00 2019-08-23 17:30:36 2019-08-23 17:31:11 t 1 1 87704 220 0.00 2019-08-23 17:32:19 2019-08-23 17:32:55 t 1 1 87710 220 0.00 2019-08-23 17:35:45 2019-08-23 17:36:21 t 1 1 87713 220 0.00 2019-08-23 17:37:26 2019-08-23 17:37:57 t 1 1 87719 220 0.00 2019-08-23 17:40:49 2019-08-23 17:41:22 t 1 1 87721 385 0.00 2019-08-23 17:10:31 2019-08-23 17:42:16 t 1 2 87727 220 0.00 2019-08-23 17:44:41 2019-08-23 17:45:16 t 1 1 87730 220 0.00 2019-08-23 17:46:25 2019-08-23 17:47:00 t 1 1 87736 220 0.00 2019-08-23 17:49:51 2019-08-23 17:50:27 t 1 1 87739 220 0.00 2019-08-23 17:51:35 2019-08-23 17:52:09 t 1 1 87745 220 0.00 2019-08-23 17:54:56 2019-08-23 17:55:32 t 1 1 87749 220 0.00 2019-08-23 17:57:12 2019-08-23 18:02:54 t 1 1 87753 220 0.00 2019-08-23 18:04:45 2019-08-23 18:05:19 t 1 1 87756 220 0.00 2019-08-23 18:06:26 2019-08-23 18:06:57 t 1 1 87765 220 0.00 2019-08-23 18:10:14 2019-08-23 18:10:48 t 1 1 87772 331 0.00 2019-08-23 18:27:37 2019-08-23 18:28:37 t 1 2 87778 212 0.00 2019-08-23 18:42:00 2019-08-23 18:42:56 t 1 2 87781 306 0.00 2019-08-23 18:47:18 2019-08-23 18:48:19 t 1 2 87782 306 0.00 2019-08-23 18:50:30 2019-08-23 18:51:28 t 1 2 87784 220 0.00 2019-08-23 18:45:44 2019-08-23 18:53:58 t 1 1 87788 306 0.00 2019-08-23 19:03:01 2019-08-23 19:03:11 t 1 2 87798 346 0.00 2019-08-23 18:58:59 2019-08-23 19:09:04 t 1 2 87803 306 0.00 2019-08-23 19:10:27 2019-08-23 19:11:31 t 1 2 87806 324 0.00 2019-08-23 19:04:04 2019-08-23 19:23:11 t 1 2 87811 294 0.00 2019-08-23 19:12:00 2019-08-23 19:42:23 t 1 2 87813 288 0.00 2019-08-23 19:40:09 2019-08-23 19:50:14 t 1 2 87821 220 0.00 2019-08-23 20:27:16 2019-08-23 20:28:59 t 1 1 87826 292 0.00 2019-08-23 20:34:48 2019-08-23 20:35:50 t 1 2 87827 212 0.00 2019-08-23 20:38:39 2019-08-23 20:39:12 t 1 2 87834 220 0.00 2019-08-23 20:45:39 2019-08-23 20:46:19 t 1 1 87836 220 0.00 2019-08-23 20:46:18 2019-08-23 20:46:53 t 1 1 87838 220 0.00 2019-08-23 20:47:24 2019-08-23 20:47:26 t 1 1 87840 220 0.00 2019-08-23 20:47:56 2019-08-23 20:48:01 t 1 1 87842 220 0.00 2019-08-23 20:48:30 2019-08-23 20:48:36 t 1 1 87843 292 0.00 2019-08-23 20:48:00 2019-08-23 20:49:06 t 1 2 87847 220 0.00 2019-08-23 20:49:44 2019-08-23 20:49:49 t 1 1 87849 220 0.00 2019-08-23 20:50:21 2019-08-23 20:50:23 t 1 1 87854 220 0.00 2019-08-23 20:51:36 2019-08-23 20:52:11 t 1 1 87860 220 0.00 2019-08-23 21:20:45 2019-08-23 21:21:20 t 1 1 87862 220 0.00 2019-08-23 21:21:56 2019-08-23 21:22:31 t 1 1 87866 220 0.00 2019-08-23 21:24:15 2019-08-23 21:24:51 t 1 1 87869 220 0.00 2019-08-23 21:26:09 2019-08-23 21:26:46 t 1 1 87877 220 0.00 2019-08-23 21:30:23 2019-08-23 21:30:56 t 1 1 87880 220 0.00 2019-08-23 21:32:06 2019-08-23 21:32:43 t 1 1 87883 220 0.00 2019-08-23 21:33:51 2019-08-23 21:34:28 t 1 1 87885 220 0.00 2019-08-23 21:34:27 2019-08-23 21:35:04 t 1 1 87888 220 0.00 2019-08-23 21:36:15 2019-08-23 21:36:51 t 1 1 87891 220 0.00 2019-08-23 21:38:03 2019-08-23 21:38:39 t 1 1 87895 346 0.00 2019-08-23 19:59:51 2019-08-23 21:39:56 t 1 2 87899 220 0.00 2019-08-23 21:16:49 2019-08-23 21:41:55 t 1 2 87908 220 0.00 2019-08-23 21:46:28 2019-08-23 21:47:03 t 1 1 87912 220 0.00 2019-08-23 21:48:09 2019-08-23 21:48:32 t 1 1 87913 220 0.00 2019-08-23 21:48:32 2019-08-23 21:49:07 t 1 1 87942 220 0.00 2019-08-23 22:05:12 2019-08-23 22:05:46 t 1 1 87945 220 0.00 2019-08-23 22:09:54 2019-08-23 22:11:19 t 1 1 87947 220 0.00 2019-08-23 22:11:18 2019-08-23 22:12:35 t 1 1 87948 220 0.00 2019-08-23 22:12:35 2019-08-23 22:14:21 t 1 1 87951 220 0.00 2019-08-23 22:15:31 2019-08-23 22:16:10 t 1 1 87953 220 0.00 2019-08-23 22:16:09 2019-08-23 22:16:48 t 1 1 87956 220 0.00 2019-08-23 22:17:57 2019-08-23 22:18:32 t 1 1 87963 306 0.00 2019-08-23 22:23:28 2019-08-23 22:24:32 t 1 2 87968 346 0.00 2019-08-23 22:17:18 2019-08-23 22:26:37 t 1 2 87971 220 0.00 2019-08-23 22:29:25 2019-08-23 22:29:48 t 1 1 87973 220 0.00 2019-08-23 22:30:22 2019-08-23 22:31:27 t 1 1 87978 220 0.00 2019-08-23 22:33:07 2019-08-23 22:33:53 t 1 1 87994 212 0.00 2019-08-23 22:51:10 2019-08-23 22:51:48 t 1 2 87997 320 0.00 2019-08-23 22:33:42 2019-08-23 22:53:47 t 1 2 88005 363 0.00 2019-08-23 23:00:10 2019-08-23 23:00:19 t 1 2 88009 320 0.00 2019-08-23 22:47:47 2019-08-23 23:02:52 t 1 2 88018 220 0.00 2019-08-23 22:36:16 2019-08-23 23:27:01 t 1 1 88021 220 0.00 2019-08-23 23:24:31 2019-08-23 23:38:12 t 1 1 88023 288 0.00 2019-08-23 23:39:53 2019-08-23 23:40:58 t 1 2 88025 320 0.00 2019-08-23 23:10:13 2019-08-23 23:50:18 t 1 2 88027 392 0.00 2019-08-23 23:53:10 2019-08-24 00:03:15 t 1 2 88033 212 0.00 2019-08-24 00:38:50 2019-08-24 00:39:53 t 1 2 88035 311 0.00 2019-08-24 00:47:49 2019-08-24 00:57:29 t 1 2 88043 324 0.00 2019-08-24 02:13:46 2019-08-24 02:56:42 t 1 2 88048 363 0.00 2019-08-24 03:01:07 2019-08-24 03:46:13 t 1 2 88050 294 0.00 2019-08-23 23:48:29 2019-08-24 04:20:53 t 1 2 88051 322 0.00 2019-08-24 03:43:59 2019-08-24 05:18:10 t 1 2 88056 294 0.00 2019-08-24 04:23:03 2019-08-24 07:33:48 t 1 2 88057 212 0.00 2019-08-24 07:54:34 2019-08-24 07:54:54 t 1 2 88061 288 0.00 2019-08-24 08:17:33 2019-08-24 08:18:38 t 1 2 88064 288 0.00 2019-08-24 08:23:58 2019-08-24 08:25:02 t 1 2 88069 288 0.00 2019-08-24 08:57:38 2019-08-24 08:58:43 t 1 2 88072 306 0.00 2019-08-24 09:24:46 2019-08-24 09:25:48 t 1 2 87633 355 0.00 2019-08-23 14:34:23 2019-08-23 14:44:28 t 1 2 87640 220 0.00 2019-08-23 15:09:22 2019-08-23 15:10:00 t 1 1 87643 247 0.00 2019-08-23 15:12:56 2019-08-23 15:13:53 t 1 2 87647 212 0.00 2019-08-23 15:38:24 2019-08-23 15:38:52 t 1 2 87655 294 0.00 2019-08-23 15:10:33 2019-08-23 16:10:56 t 1 2 87658 306 0.00 2019-08-23 16:23:02 2019-08-23 16:23:59 t 1 2 87659 306 0.00 2019-08-23 16:24:09 2019-08-23 16:24:16 t 1 2 87666 355 0.00 2019-08-23 16:52:22 2019-08-23 16:56:47 t 1 2 87671 306 0.00 2019-08-23 17:16:14 2019-08-23 17:16:19 t 1 2 87674 220 0.00 2019-08-23 17:16:35 2019-08-23 17:17:10 t 1 1 87676 306 0.00 2019-08-23 17:16:54 2019-08-23 17:17:57 t 1 2 87679 220 0.00 2019-08-23 17:18:51 2019-08-23 17:19:23 t 1 1 87683 247 0.00 2019-08-23 17:20:35 2019-08-23 17:21:25 t 1 2 87686 220 0.00 2019-08-23 17:22:10 2019-08-23 17:22:45 t 1 1 87689 220 0.00 2019-08-23 17:23:54 2019-08-23 17:24:26 t 1 1 87692 220 0.00 2019-08-23 17:25:34 2019-08-23 17:26:10 t 1 1 87699 220 0.00 2019-08-23 17:29:28 2019-08-23 17:30:02 t 1 1 87702 220 0.00 2019-08-23 17:31:11 2019-08-23 17:31:46 t 1 1 87708 220 0.00 2019-08-23 17:34:37 2019-08-23 17:35:12 t 1 1 87711 220 0.00 2019-08-23 17:36:20 2019-08-23 17:36:54 t 1 1 87717 220 0.00 2019-08-23 17:39:39 2019-08-23 17:40:14 t 1 1 87720 220 0.00 2019-08-23 17:41:22 2019-08-23 17:41:53 t 1 1 87724 220 0.00 2019-08-23 17:43:00 2019-08-23 17:43:33 t 1 1 87725 220 0.00 2019-08-23 17:43:33 2019-08-23 17:44:06 t 1 1 87728 220 0.00 2019-08-23 17:45:16 2019-08-23 17:45:51 t 1 1 87734 220 0.00 2019-08-23 17:48:42 2019-08-23 17:49:17 t 1 1 87737 220 0.00 2019-08-23 17:50:26 2019-08-23 17:51:02 t 1 1 87740 220 0.00 2019-08-23 17:52:09 2019-08-23 17:52:43 t 1 1 87743 220 0.00 2019-08-23 17:53:49 2019-08-23 17:54:22 t 1 1 87746 220 0.00 2019-08-23 17:55:31 2019-08-23 17:56:03 t 1 1 87748 220 0.00 2019-08-23 17:56:37 2019-08-23 17:56:43 t 1 1 87751 220 0.00 2019-08-23 18:03:40 2019-08-23 18:04:14 t 1 1 87754 220 0.00 2019-08-23 18:05:19 2019-08-23 18:05:54 t 1 1 87759 220 0.00 2019-08-23 18:08:00 2019-08-23 18:08:35 t 1 1 87763 288 0.00 2019-08-23 18:09:08 2019-08-23 18:10:11 t 1 2 87768 220 0.00 2019-08-23 18:11:54 2019-08-23 18:12:27 t 1 1 87769 288 0.00 2019-08-23 18:13:53 2019-08-23 18:14:56 t 1 2 87771 288 0.00 2019-08-23 18:21:46 2019-08-23 18:22:47 t 1 2 87776 306 0.00 2019-08-23 18:40:50 2019-08-23 18:41:53 t 1 2 87790 306 0.00 2019-08-23 19:03:35 2019-08-23 19:04:35 t 1 2 87793 363 0.00 2019-08-23 19:05:26 2019-08-23 19:05:34 t 1 2 87795 306 0.00 2019-08-23 19:05:21 2019-08-23 19:06:23 t 1 2 87797 363 0.00 2019-08-23 18:18:59 2019-08-23 19:09:04 t 1 2 87800 306 0.00 2019-08-23 19:10:08 2019-08-23 19:10:18 t 1 2 87801 213 0.00 2019-08-23 19:10:36 2019-08-23 19:10:39 t 1 2 87802 213 0.00 2019-08-23 19:10:48 2019-08-23 19:10:53 t 1 2 87807 288 0.00 2019-08-23 19:24:12 2019-08-23 19:25:22 t 1 2 87808 306 0.00 2019-08-23 19:27:12 2019-08-23 19:27:17 t 1 2 87812 318 0.00 2019-08-23 17:01:54 2019-08-23 19:46:59 t 1 2 87819 324 0.00 2019-08-23 20:22:42 2019-08-23 20:23:32 t 1 2 87820 220 0.00 2019-08-23 20:18:24 2019-08-23 20:25:03 t 1 1 87824 343 0.00 2019-08-23 20:13:04 2019-08-23 20:33:09 t 1 2 87829 220 0.00 2019-08-23 20:29:06 2019-08-23 20:40:56 t 1 1 87830 247 0.00 2019-08-23 20:41:22 2019-08-23 20:42:18 t 1 2 87833 355 0.00 2019-08-23 20:08:35 2019-08-23 20:45:48 t 1 2 87839 220 0.00 2019-08-23 20:47:25 2019-08-23 20:47:57 t 1 1 87845 220 0.00 2019-08-23 20:49:05 2019-08-23 20:49:14 t 1 1 87850 220 0.00 2019-08-23 20:50:23 2019-08-23 20:50:57 t 1 1 87852 220 0.00 2019-08-23 20:51:01 2019-08-23 20:51:34 t 1 1 87855 220 0.00 2019-08-23 20:52:11 2019-08-23 20:52:46 t 1 1 87857 220 0.00 2019-08-23 20:53:20 2019-08-23 21:18:28 t 1 1 87858 320 0.00 2019-08-23 20:08:33 2019-08-23 21:18:38 t 1 2 87863 220 0.00 2019-08-23 21:22:30 2019-08-23 21:23:05 t 1 1 87864 220 0.00 2019-08-23 21:23:04 2019-08-23 21:23:41 t 1 1 87872 220 0.00 2019-08-23 21:27:59 2019-08-23 21:28:35 t 1 1 87873 220 0.00 2019-08-23 21:28:35 2019-08-23 21:29:10 t 1 1 87875 355 0.00 2019-08-23 21:11:29 2019-08-23 21:29:51 t 1 2 87886 220 0.00 2019-08-23 21:35:04 2019-08-23 21:35:39 t 1 1 87893 220 0.00 2019-08-23 21:38:39 2019-08-23 21:39:15 t 1 1 87894 220 0.00 2019-08-23 21:39:15 2019-08-23 21:39:51 t 1 1 87898 296 0.00 2019-08-23 21:21:26 2019-08-23 21:41:46 t 1 2 87900 220 0.00 2019-08-23 21:41:05 2019-08-23 21:43:00 t 1 1 87904 220 0.00 2019-08-23 21:44:44 2019-08-23 21:45:19 t 1 1 87906 351 0.00 2019-08-23 21:05:57 2019-08-23 21:46:02 t 1 2 87916 220 0.00 2019-08-23 21:49:56 2019-08-23 21:50:32 t 1 1 87917 220 0.00 2019-08-23 21:50:32 2019-08-23 21:51:08 t 1 1 87919 220 0.00 2019-08-23 21:51:39 2019-08-23 21:52:13 t 1 1 87921 220 0.00 2019-08-23 21:52:12 2019-08-23 21:52:53 t 1 1 87926 220 0.00 2019-08-23 21:54:43 2019-08-23 21:55:20 t 1 1 87928 346 0.00 2019-08-23 21:56:06 2019-08-23 21:56:10 t 1 2 87930 220 0.00 2019-08-23 21:55:56 2019-08-23 21:56:30 t 1 1 87933 220 0.00 2019-08-23 21:57:39 2019-08-23 21:58:14 t 1 1 87934 220 0.00 2019-08-23 21:58:14 2019-08-23 21:58:49 t 1 1 87938 220 0.00 2019-08-23 22:01:01 2019-08-23 22:01:34 t 1 1 87949 220 0.00 2019-08-23 22:14:21 2019-08-23 22:14:56 t 1 1 87954 220 0.00 2019-08-23 22:16:48 2019-08-23 22:17:25 t 1 1 87958 220 0.00 2019-08-23 22:19:48 2019-08-23 22:20:27 t 1 1 87961 220 0.00 2019-08-23 22:21:41 2019-08-23 22:22:14 t 1 1 87965 212 0.00 2019-08-23 22:25:54 2019-08-23 22:26:28 t 1 2 87969 346 0.00 2019-08-23 21:39:15 2019-08-23 22:29:21 t 1 2 87976 306 0.00 2019-08-23 22:31:56 2019-08-23 22:33:00 t 1 2 87979 220 0.00 2019-08-23 22:33:47 2019-08-23 22:34:37 t 1 1 87981 288 0.00 2019-08-23 22:34:25 2019-08-23 22:35:30 t 1 2 87987 288 0.00 2019-08-23 22:41:10 2019-08-23 22:42:16 t 1 2 87993 392 0.00 2019-08-23 22:49:07 2019-08-23 22:50:13 t 1 2 87998 363 0.00 2019-08-23 22:55:01 2019-08-23 22:55:01 f 1 2 87999 346 0.00 2019-08-23 22:55:02 2019-08-23 22:55:19 t 1 2 88004 288 0.00 2019-08-23 22:58:22 2019-08-23 22:59:30 t 1 2 88008 363 0.00 2019-08-23 23:02:26 2019-08-23 23:02:40 t 1 2 88011 320 0.00 2019-08-23 22:57:48 2019-08-23 23:07:53 t 1 2 88012 247 0.00 2019-08-23 23:11:38 2019-08-23 23:13:18 t 1 2 88014 296 0.00 2019-08-23 23:13:03 2019-08-23 23:14:24 t 1 2 88017 375 0.00 2019-08-23 22:19:25 2019-08-23 23:24:30 t 1 2 88020 351 0.00 2019-08-23 23:22:37 2019-08-23 23:37:42 t 1 2 88032 220 0.00 2019-08-24 00:21:26 2019-08-24 00:36:32 t 1 2 88034 392 0.00 2019-08-24 00:08:13 2019-08-24 00:53:04 t 1 2 88038 346 0.00 2019-08-24 00:32:35 2019-08-24 01:52:40 t 1 2 87774 346 0.00 2019-08-23 18:26:50 2019-08-23 18:36:55 t 1 2 87775 306 0.00 2019-08-23 18:39:16 2019-08-23 18:40:20 t 1 2 87780 220 0.00 2019-08-23 18:12:27 2019-08-23 18:45:41 t 1 1 87783 306 0.00 2019-08-23 18:51:40 2019-08-23 18:51:46 t 1 2 87785 306 0.00 2019-08-23 18:53:49 2019-08-23 18:54:55 t 1 2 87791 320 0.00 2019-08-23 18:54:32 2019-08-23 19:04:37 t 1 2 87796 306 0.00 2019-08-23 19:06:53 2019-08-23 19:07:51 t 1 2 87799 306 0.00 2019-08-23 19:08:16 2019-08-23 19:09:14 t 1 2 87805 355 0.00 2019-08-23 19:17:08 2019-08-23 19:20:11 t 1 2 87815 320 0.00 2019-08-23 19:53:10 2019-08-23 20:03:15 t 1 2 87817 220 0.00 2019-08-23 20:10:11 2019-08-23 20:18:25 t 1 1 87828 306 0.00 2019-08-23 20:39:15 2019-08-23 20:40:17 t 1 2 87835 212 0.00 2019-08-23 20:45:53 2019-08-23 20:46:31 t 1 2 87844 220 0.00 2019-08-23 20:48:36 2019-08-23 20:49:06 t 1 1 87851 220 0.00 2019-08-23 20:50:56 2019-08-23 20:51:01 t 1 1 87853 220 0.00 2019-08-23 20:51:33 2019-08-23 20:51:36 t 1 1 87856 220 0.00 2019-08-23 20:52:46 2019-08-23 20:53:20 t 1 1 87865 220 0.00 2019-08-23 21:23:40 2019-08-23 21:24:16 t 1 1 87868 220 0.00 2019-08-23 21:25:29 2019-08-23 21:26:10 t 1 1 87871 220 0.00 2019-08-23 21:27:24 2019-08-23 21:28:00 t 1 1 87876 220 0.00 2019-08-23 21:29:47 2019-08-23 21:30:23 t 1 1 87879 220 0.00 2019-08-23 21:31:31 2019-08-23 21:32:07 t 1 1 87887 220 0.00 2019-08-23 21:35:39 2019-08-23 21:36:15 t 1 1 87890 220 0.00 2019-08-23 21:37:26 2019-08-23 21:38:04 t 1 1 87892 212 0.00 2019-08-23 21:38:37 2019-08-23 21:39:15 t 1 2 87897 220 0.00 2019-08-23 21:40:29 2019-08-23 21:41:05 t 1 1 87903 220 0.00 2019-08-23 21:44:08 2019-08-23 21:44:44 t 1 1 87907 220 0.00 2019-08-23 21:45:53 2019-08-23 21:46:28 t 1 1 87910 220 0.00 2019-08-23 21:47:37 2019-08-23 21:48:09 t 1 1 87915 220 0.00 2019-08-23 21:49:21 2019-08-23 21:49:57 t 1 1 87918 220 0.00 2019-08-23 21:51:08 2019-08-23 21:51:39 t 1 1 87920 346 0.00 2019-08-23 21:50:42 2019-08-23 21:52:51 t 1 2 87922 220 0.00 2019-08-23 21:52:53 2019-08-23 21:53:31 t 1 1 87923 220 0.00 2019-08-23 21:53:30 2019-08-23 21:54:06 t 1 1 87925 220 0.00 2019-08-23 21:54:06 2019-08-23 21:54:43 t 1 1 87927 220 0.00 2019-08-23 21:55:19 2019-08-23 21:55:57 t 1 1 87929 306 0.00 2019-08-23 21:55:24 2019-08-23 21:56:26 t 1 2 87932 220 0.00 2019-08-23 21:57:04 2019-08-23 21:57:40 t 1 1 87935 220 0.00 2019-08-23 21:58:49 2019-08-23 21:59:25 t 1 1 87937 220 0.00 2019-08-23 21:59:25 2019-08-23 22:01:01 t 1 1 87941 220 0.00 2019-08-23 22:03:37 2019-08-23 22:05:12 t 1 1 87944 220 0.00 2019-08-23 22:09:20 2019-08-23 22:09:55 t 1 1 87950 220 0.00 2019-08-23 22:14:56 2019-08-23 22:15:31 t 1 1 87952 346 0.00 2019-08-23 21:56:15 2019-08-23 22:16:20 t 1 2 87957 220 0.00 2019-08-23 22:18:32 2019-08-23 22:19:48 t 1 1 87960 220 0.00 2019-08-23 22:20:51 2019-08-23 22:21:41 t 1 1 87966 220 0.00 2019-08-23 22:23:03 2019-08-23 22:26:29 t 1 1 87970 220 0.00 2019-08-23 22:27:30 2019-08-23 22:29:26 t 1 1 87974 220 0.00 2019-08-23 22:31:36 2019-08-23 22:31:50 t 1 1 87975 324 0.00 2019-08-23 22:14:12 2019-08-23 22:32:06 t 1 2 87977 220 0.00 2019-08-23 22:31:50 2019-08-23 22:33:07 t 1 1 87984 306 0.00 2019-08-23 22:38:56 2019-08-23 22:40:03 t 1 2 87985 355 0.00 2019-08-23 22:37:55 2019-08-23 22:41:52 t 1 2 87988 346 0.00 2019-08-23 22:31:41 2019-08-23 22:45:41 t 1 2 87991 288 0.00 2019-08-23 22:47:40 2019-08-23 22:48:43 t 1 2 87995 392 0.00 2019-08-23 22:51:08 2019-08-23 22:52:11 t 1 2 87996 363 0.00 2019-08-23 22:52:58 2019-08-23 22:52:58 f 1 2 88000 363 0.00 2019-08-23 22:55:53 2019-08-23 22:55:59 t 1 2 88001 363 0.00 2019-08-23 22:56:25 2019-08-23 22:56:32 t 1 2 88003 296 0.00 2019-08-23 22:56:37 2019-08-23 22:58:00 t 1 2 88006 363 0.00 2019-08-23 23:01:04 2019-08-23 23:01:12 t 1 2 88007 363 0.00 2019-08-23 23:01:23 2019-08-23 23:01:28 t 1 2 88015 212 0.00 2019-08-23 23:16:37 2019-08-23 23:16:56 t 1 2 88024 212 0.00 2019-08-23 23:41:06 2019-08-23 23:41:42 t 1 2 88028 320 0.00 2019-08-23 23:55:38 2019-08-24 00:05:44 t 1 2 88029 392 0.00 2019-08-23 23:56:24 2019-08-24 00:11:30 t 1 2 88030 212 0.00 2019-08-24 00:13:23 2019-08-24 00:13:45 t 1 2 88036 320 0.00 2019-08-24 00:57:16 2019-08-24 01:07:21 t 1 2 88042 324 0.00 2019-08-24 02:11:48 2019-08-24 02:21:53 t 1 2 88044 363 0.00 2019-08-24 02:10:22 2019-08-24 03:05:28 t 1 2 88052 212 0.00 2019-08-24 07:19:06 2019-08-24 07:19:46 t 1 2 88058 288 0.00 2019-08-24 08:09:30 2019-08-24 08:10:36 t 1 2 88059 288 0.00 2019-08-24 08:12:50 2019-08-24 08:13:56 t 1 2 88066 288 0.00 2019-08-24 08:33:32 2019-08-24 08:34:38 t 1 2 88071 351 0.00 2019-08-24 09:13:48 2019-08-24 09:15:17 t 1 2 88075 288 0.00 2019-08-24 09:29:41 2019-08-24 09:30:46 t 1 2 88078 296 0.00 2019-08-24 09:02:25 2019-08-24 10:02:49 t 1 2 88084 393 0.00 2019-08-24 10:18:53 2019-08-24 10:33:58 t 1 2 88085 320 0.00 2019-08-24 10:26:50 2019-08-24 10:36:55 t 1 2 88087 393 0.00 2019-08-24 10:42:46 2019-08-24 10:43:42 t 1 2 88093 320 0.00 2019-08-24 10:55:08 2019-08-24 11:05:13 t 1 2 88097 306 0.00 2019-08-24 11:10:33 2019-08-24 11:11:40 t 1 2 88103 220 0.00 2019-08-24 11:30:36 2019-08-24 11:31:12 t 1 1 88111 220 0.00 2019-08-24 11:34:43 2019-08-24 11:35:17 t 1 1 88113 324 0.00 2019-08-24 11:31:59 2019-08-24 11:35:59 t 1 2 88115 220 0.00 2019-08-24 11:19:37 2019-08-24 11:36:41 t 1 2 88128 220 0.00 2019-08-24 11:49:22 2019-08-24 11:55:57 t 1 1 88130 220 0.00 2019-08-24 11:56:00 2019-08-24 11:56:34 t 1 1 88138 220 0.00 2019-08-24 12:05:10 2019-08-24 12:07:30 t 1 1 88149 220 0.00 2019-08-24 12:11:39 2019-08-24 12:12:11 t 1 1 88152 392 0.00 2019-08-24 11:41:33 2019-08-24 12:14:11 t 1 2 88158 220 0.00 2019-08-24 12:16:19 2019-08-24 12:17:41 t 1 1 88161 220 0.00 2019-08-24 12:18:12 2019-08-24 12:19:03 t 1 1 88165 220 0.00 2019-08-24 12:20:08 2019-08-24 12:20:41 t 1 1 88171 220 0.00 2019-08-24 12:23:38 2019-08-24 12:24:36 t 1 1 88174 220 0.00 2019-08-24 12:25:58 2019-08-24 12:26:40 t 1 1 88178 220 0.00 2019-08-24 12:27:45 2019-08-24 12:28:21 t 1 1 88179 220 0.00 2019-08-24 12:28:21 2019-08-24 12:29:06 t 1 1 88181 220 0.00 2019-08-24 12:29:05 2019-08-24 12:29:40 t 1 1 88191 220 0.00 2019-08-24 12:34:39 2019-08-24 12:35:19 t 1 1 88194 220 0.00 2019-08-24 12:36:29 2019-08-24 12:37:04 t 1 1 88198 220 0.00 2019-08-24 12:39:08 2019-08-24 12:39:45 t 1 1 88201 220 0.00 2019-08-24 12:41:03 2019-08-24 12:41:51 t 1 1 88205 220 0.00 2019-08-24 12:45:01 2019-08-24 12:49:16 t 1 1 88208 220 0.00 2019-08-24 12:50:36 2019-08-24 12:51:12 t 1 1 88213 306 0.00 2019-08-24 12:52:52 2019-08-24 12:53:56 t 1 2 88220 220 0.00 2019-08-24 12:56:32 2019-08-24 12:57:09 t 1 1 87943 220 0.00 2019-08-23 22:05:46 2019-08-23 22:09:20 t 1 1 87946 320 0.00 2019-08-23 22:02:21 2019-08-23 22:12:26 t 1 2 87955 220 0.00 2019-08-23 22:17:25 2019-08-23 22:17:57 t 1 1 87959 220 0.00 2019-08-23 22:20:27 2019-08-23 22:20:52 t 1 1 87962 220 0.00 2019-08-23 22:22:14 2019-08-23 22:23:04 t 1 1 87964 296 0.00 2019-08-23 22:19:05 2019-08-23 22:25:28 t 1 2 87967 220 0.00 2019-08-23 22:26:29 2019-08-23 22:26:33 t 1 1 87972 220 0.00 2019-08-23 22:29:48 2019-08-23 22:30:22 t 1 1 87980 220 0.00 2019-08-23 22:34:32 2019-08-23 22:35:19 t 1 1 87982 306 0.00 2019-08-23 22:35:34 2019-08-23 22:36:40 t 1 2 87983 306 0.00 2019-08-23 22:37:03 2019-08-23 22:38:09 t 1 2 87986 324 0.00 2019-08-23 22:41:51 2019-08-23 22:42:05 t 1 2 87989 220 0.00 2019-08-23 22:35:18 2019-08-23 22:45:43 t 1 1 87990 367 0.00 2019-08-23 22:40:16 2019-08-23 22:48:36 t 1 2 87992 392 0.00 2019-08-23 22:47:39 2019-08-23 22:48:44 t 1 2 88002 288 0.00 2019-08-23 22:55:50 2019-08-23 22:56:57 t 1 2 88010 363 0.00 2019-08-23 23:03:44 2019-08-23 23:03:53 t 1 2 88013 363 0.00 2019-08-23 23:04:09 2019-08-23 23:14:14 t 1 2 88016 294 0.00 2019-08-23 21:19:46 2019-08-23 23:24:10 t 1 2 88019 318 0.00 2019-08-23 23:16:14 2019-08-23 23:27:52 t 1 2 88022 288 0.00 2019-08-23 23:38:13 2019-08-23 23:39:17 t 1 2 88026 320 0.00 2019-08-23 23:49:50 2019-08-23 23:59:55 t 1 2 88031 363 0.00 2019-08-23 23:04:48 2019-08-24 00:24:53 t 1 2 88037 392 0.00 2019-08-24 01:19:44 2019-08-24 01:49:26 t 1 2 88039 363 0.00 2019-08-24 01:39:26 2019-08-24 02:08:02 t 1 2 88045 346 0.00 2019-08-24 02:17:06 2019-08-24 03:12:11 t 1 2 88046 346 0.00 2019-08-24 03:04:37 2019-08-24 03:24:42 t 1 2 88049 355 0.00 2019-08-23 22:52:58 2019-08-24 03:56:53 t 1 2 88053 288 0.00 2019-08-24 07:26:47 2019-08-24 07:27:52 t 1 2 88055 247 0.00 2019-08-24 07:30:34 2019-08-24 07:30:54 t 1 2 88060 212 0.00 2019-08-24 08:13:00 2019-08-24 08:14:01 t 1 2 88067 306 0.00 2019-08-24 08:34:24 2019-08-24 08:35:29 t 1 2 88070 351 0.00 2019-08-24 09:13:22 2019-08-24 09:13:29 t 1 2 88077 220 0.00 2019-08-24 08:25:09 2019-08-24 09:56:41 t 1 1 88081 311 0.00 2019-08-24 09:26:47 2019-08-24 10:19:55 t 1 2 88086 220 0.00 2019-08-24 09:57:45 2019-08-24 10:39:54 t 1 1 88088 220 0.00 2019-08-24 10:39:59 2019-08-24 10:43:47 t 1 1 88092 393 0.00 2019-08-24 10:44:01 2019-08-24 10:58:57 t 1 2 88094 320 0.00 2019-08-24 10:56:19 2019-08-24 11:06:24 t 1 2 88095 331 0.00 2019-08-24 11:07:52 2019-08-24 11:08:54 t 1 2 88098 331 0.00 2019-08-24 11:12:08 2019-08-24 11:13:12 t 1 2 88099 306 0.00 2019-08-24 11:14:38 2019-08-24 11:15:45 t 1 2 88100 220 0.00 2019-08-24 11:05:13 2019-08-24 11:20:37 t 1 2 88102 220 0.00 2019-08-24 11:30:02 2019-08-24 11:30:36 t 1 1 88105 220 0.00 2019-08-24 11:31:46 2019-08-24 11:32:22 t 1 1 88107 220 0.00 2019-08-24 11:32:21 2019-08-24 11:32:55 t 1 1 88118 220 0.00 2019-08-24 11:38:43 2019-08-24 11:40:19 t 1 1 88120 220 0.00 2019-08-24 11:41:07 2019-08-24 11:41:41 t 1 1 88126 220 0.00 2019-08-24 11:44:44 2019-08-24 11:46:36 t 1 1 88133 320 0.00 2019-08-24 11:52:58 2019-08-24 12:03:03 t 1 2 88134 220 0.00 2019-08-24 11:57:04 2019-08-24 12:04:44 t 1 1 88142 220 0.00 2019-08-24 12:07:58 2019-08-24 12:09:17 t 1 1 88143 220 0.00 2019-08-24 12:07:29 2019-08-24 12:09:32 t 1 2 88154 220 0.00 2019-08-24 12:14:34 2019-08-24 12:15:10 t 1 1 88156 220 0.00 2019-08-24 12:15:45 2019-08-24 12:16:20 t 1 1 88164 220 0.00 2019-08-24 12:19:34 2019-08-24 12:20:09 t 1 1 88167 220 0.00 2019-08-24 12:21:21 2019-08-24 12:21:55 t 1 1 88173 220 0.00 2019-08-24 12:25:24 2019-08-24 12:25:59 t 1 1 88175 220 0.00 2019-08-24 12:17:17 2019-08-24 12:26:40 t 1 2 88183 220 0.00 2019-08-24 12:30:16 2019-08-24 12:30:52 t 1 1 88186 220 0.00 2019-08-24 12:32:02 2019-08-24 12:32:44 t 1 1 88189 220 0.00 2019-08-24 12:34:04 2019-08-24 12:34:40 t 1 1 88193 220 0.00 2019-08-24 12:35:54 2019-08-24 12:36:30 t 1 1 88196 220 0.00 2019-08-24 12:37:52 2019-08-24 12:38:25 t 1 1 88197 220 0.00 2019-08-24 12:38:25 2019-08-24 12:39:08 t 1 1 88200 220 0.00 2019-08-24 12:40:30 2019-08-24 12:41:03 t 1 1 88203 220 0.00 2019-08-24 12:42:27 2019-08-24 12:43:23 t 1 1 88204 220 0.00 2019-08-24 12:43:22 2019-08-24 12:43:58 t 1 1 88207 220 0.00 2019-08-24 12:49:59 2019-08-24 12:50:36 t 1 1 88210 220 0.00 2019-08-24 12:51:46 2019-08-24 12:52:26 t 1 1 88212 220 0.00 2019-08-24 12:53:01 2019-08-24 12:53:37 t 1 1 88215 220 0.00 2019-08-24 12:54:11 2019-08-24 12:54:51 t 1 1 88219 220 0.00 2019-08-24 12:55:57 2019-08-24 12:56:32 t 1 1 88222 220 0.00 2019-08-24 12:57:46 2019-08-24 12:58:22 t 1 1 88223 220 0.00 2019-08-24 12:58:22 2019-08-24 12:58:55 t 1 1 88225 220 0.00 2019-08-24 12:59:29 2019-08-24 13:00:04 t 1 1 88227 220 0.00 2019-08-24 13:00:04 2019-08-24 13:00:41 t 1 1 88228 296 0.00 2019-08-24 12:58:57 2019-08-24 13:01:13 t 1 2 88230 361 0.00 2019-08-24 12:11:57 2019-08-24 13:01:47 t 1 2 88232 220 0.00 2019-08-24 13:01:50 2019-08-24 13:02:26 t 1 1 88236 220 0.00 2019-08-24 13:03:00 2019-08-24 13:03:37 t 1 1 88237 220 0.00 2019-08-24 13:03:36 2019-08-24 13:04:13 t 1 1 88239 220 0.00 2019-08-24 13:04:48 2019-08-24 13:05:23 t 1 1 88245 318 0.00 2019-08-24 12:24:50 2019-08-24 13:07:42 t 1 2 88247 220 0.00 2019-08-24 13:08:17 2019-08-24 13:08:51 t 1 1 88251 220 0.00 2019-08-24 13:10:00 2019-08-24 13:10:37 t 1 1 88255 220 0.00 2019-08-24 13:11:43 2019-08-24 13:12:20 t 1 1 88259 296 0.00 2019-08-24 13:22:16 2019-08-24 13:25:40 t 1 2 88264 220 0.00 2019-08-24 13:28:39 2019-08-24 13:29:10 t 1 1 88266 220 0.00 2019-08-24 13:29:49 2019-08-24 13:30:22 t 1 1 88269 220 0.00 2019-08-24 13:31:34 2019-08-24 13:32:13 t 1 1 88273 220 0.00 2019-08-24 13:33:53 2019-08-24 13:34:29 t 1 1 88276 220 0.00 2019-08-24 13:35:41 2019-08-24 13:36:14 t 1 1 88278 220 0.00 2019-08-24 13:36:48 2019-08-24 13:37:23 t 1 1 88280 220 0.00 2019-08-24 13:37:23 2019-08-24 13:38:01 t 1 1 88285 220 0.00 2019-08-24 13:39:43 2019-08-24 13:40:17 t 1 1 88288 220 0.00 2019-08-24 13:41:29 2019-08-24 13:42:02 t 1 1 88294 220 0.00 2019-08-24 14:08:29 2019-08-24 14:09:48 t 1 1 88297 306 0.00 2019-08-24 14:30:23 2019-08-24 14:31:26 t 1 2 88301 379 0.00 2019-08-24 09:47:33 2019-08-24 14:37:38 t 1 2 88303 306 0.00 2019-08-24 14:37:37 2019-08-24 14:38:42 t 1 2 88310 392 0.00 2019-08-24 14:08:03 2019-08-24 14:42:04 t 1 2 88316 220 0.00 2019-08-24 14:44:08 2019-08-24 14:44:40 t 1 1 88318 220 0.00 2019-08-24 14:44:42 2019-08-24 14:45:14 t 1 1 88325 220 0.00 2019-08-24 14:46:40 2019-08-24 14:47:03 t 1 1 88336 220 0.00 2019-08-24 14:51:02 2019-08-24 14:51:36 t 1 1 88337 220 0.00 2019-08-24 14:51:36 2019-08-24 14:52:10 t 1 1 88040 392 0.00 2019-08-24 02:11:18 2019-08-24 02:14:06 t 1 2 88041 324 0.00 2019-08-24 01:41:39 2019-08-24 02:16:44 t 1 2 88047 392 0.00 2019-08-24 03:24:32 2019-08-24 03:32:09 t 1 2 88054 288 0.00 2019-08-24 07:28:32 2019-08-24 07:29:36 t 1 2 88062 306 0.00 2019-08-24 08:18:07 2019-08-24 08:19:13 t 1 2 88063 288 0.00 2019-08-24 08:21:41 2019-08-24 08:22:47 t 1 2 88065 288 0.00 2019-08-24 08:26:27 2019-08-24 08:27:30 t 1 2 88068 212 0.00 2019-08-24 08:36:35 2019-08-24 08:36:58 t 1 2 88073 320 0.00 2019-08-24 07:51:18 2019-08-24 09:26:23 t 1 2 88083 306 0.00 2019-08-24 10:30:17 2019-08-24 10:31:22 t 1 2 88090 296 0.00 2019-08-24 10:13:33 2019-08-24 10:52:56 t 1 2 88101 220 0.00 2019-08-24 11:19:54 2019-08-24 11:30:03 t 1 1 88108 220 0.00 2019-08-24 11:32:55 2019-08-24 11:33:33 t 1 1 88109 220 0.00 2019-08-24 11:33:33 2019-08-24 11:34:08 t 1 1 88112 220 0.00 2019-08-24 11:35:17 2019-08-24 11:35:55 t 1 1 88117 220 0.00 2019-08-24 11:37:27 2019-08-24 11:38:44 t 1 1 88119 220 0.00 2019-08-24 11:40:22 2019-08-24 11:41:08 t 1 1 88122 220 0.00 2019-08-24 11:41:59 2019-08-24 11:42:19 t 1 1 88124 220 0.00 2019-08-24 11:42:54 2019-08-24 11:43:33 t 1 1 88125 220 0.00 2019-08-24 11:43:36 2019-08-24 11:44:41 t 1 1 88127 220 0.00 2019-08-24 11:46:39 2019-08-24 11:49:20 t 1 1 88129 220 0.00 2019-08-24 11:44:06 2019-08-24 11:56:09 t 1 1 88131 220 0.00 2019-08-24 11:56:37 2019-08-24 11:57:01 t 1 1 88132 306 0.00 2019-08-24 12:00:49 2019-08-24 12:01:54 t 1 2 88136 220 0.00 2019-08-24 12:05:52 2019-08-24 12:06:22 t 1 1 88140 220 0.00 2019-08-24 12:07:25 2019-08-24 12:07:58 t 1 1 88141 320 0.00 2019-08-24 11:58:34 2019-08-24 12:08:39 t 1 2 88144 306 0.00 2019-08-24 12:09:21 2019-08-24 12:10:22 t 1 2 88146 375 0.00 2019-08-24 11:45:58 2019-08-24 12:11:03 t 1 2 88148 324 0.00 2019-08-24 12:07:55 2019-08-24 12:11:48 t 1 2 88150 220 0.00 2019-08-24 12:12:11 2019-08-24 12:13:24 t 1 1 88151 220 0.00 2019-08-24 12:13:24 2019-08-24 12:13:56 t 1 1 88155 220 0.00 2019-08-24 12:15:09 2019-08-24 12:15:45 t 1 1 88157 373 0.00 2019-08-24 12:16:26 2019-08-24 12:16:35 t 1 2 88159 220 0.00 2019-08-24 12:17:39 2019-08-24 12:18:12 t 1 1 88163 372 0.00 2019-08-24 12:05:19 2019-08-24 12:19:39 t 1 2 88168 220 0.00 2019-08-24 12:21:54 2019-08-24 12:22:33 t 1 1 88176 220 0.00 2019-08-24 12:26:40 2019-08-24 12:27:13 t 1 1 88184 220 0.00 2019-08-24 12:30:51 2019-08-24 12:31:30 t 1 1 88187 220 0.00 2019-08-24 12:32:43 2019-08-24 12:33:19 t 1 1 88188 220 0.00 2019-08-24 12:33:19 2019-08-24 12:34:05 t 1 1 88190 212 0.00 2019-08-24 12:34:17 2019-08-24 12:35:19 t 1 2 88192 220 0.00 2019-08-24 12:35:19 2019-08-24 12:35:54 t 1 1 88195 220 0.00 2019-08-24 12:37:03 2019-08-24 12:37:53 t 1 1 88206 220 0.00 2019-08-24 12:43:58 2019-08-24 12:50:01 t 1 1 88209 220 0.00 2019-08-24 12:51:12 2019-08-24 12:51:46 t 1 1 88211 220 0.00 2019-08-24 12:52:26 2019-08-24 12:53:01 t 1 1 88216 220 0.00 2019-08-24 12:54:51 2019-08-24 12:55:25 t 1 1 88218 320 0.00 2019-08-24 12:45:56 2019-08-24 12:56:01 t 1 2 88221 220 0.00 2019-08-24 12:57:09 2019-08-24 12:57:46 t 1 1 88229 220 0.00 2019-08-24 13:00:40 2019-08-24 13:01:16 t 1 1 88231 220 0.00 2019-08-24 13:01:16 2019-08-24 13:01:51 t 1 1 88233 220 0.00 2019-08-24 13:02:26 2019-08-24 13:02:41 t 1 1 88235 247 0.00 2019-08-24 13:00:45 2019-08-24 13:03:05 t 1 2 88238 220 0.00 2019-08-24 13:04:13 2019-08-24 13:04:49 t 1 1 88243 306 0.00 2019-08-24 13:06:37 2019-08-24 13:07:42 t 1 2 88248 220 0.00 2019-08-24 13:08:51 2019-08-24 13:09:26 t 1 1 88250 220 0.00 2019-08-24 13:09:25 2019-08-24 13:10:00 t 1 1 88253 306 0.00 2019-08-24 13:10:07 2019-08-24 13:11:10 t 1 2 88256 220 0.00 2019-08-24 13:12:20 2019-08-24 13:12:54 t 1 1 88258 393 0.00 2019-08-24 11:01:30 2019-08-24 13:21:36 t 1 2 88260 220 0.00 2019-08-24 13:12:54 2019-08-24 13:27:29 t 1 1 88265 220 0.00 2019-08-24 13:29:10 2019-08-24 13:29:50 t 1 1 88267 220 0.00 2019-08-24 13:30:22 2019-08-24 13:31:00 t 1 1 88270 220 0.00 2019-08-24 13:32:12 2019-08-24 13:32:47 t 1 1 88274 220 0.00 2019-08-24 13:34:29 2019-08-24 13:35:04 t 1 1 88286 220 0.00 2019-08-24 13:40:17 2019-08-24 13:40:53 t 1 1 88292 306 0.00 2019-08-24 14:05:18 2019-08-24 14:06:21 t 1 2 88295 381 0.00 2019-08-24 14:11:29 2019-08-24 14:11:36 t 1 2 88300 306 0.00 2019-08-24 14:36:14 2019-08-24 14:37:18 t 1 2 88305 361 0.00 2019-08-24 13:25:00 2019-08-24 14:39:52 t 1 2 88307 220 0.00 2019-08-24 14:40:46 2019-08-24 14:41:20 t 1 1 88309 306 0.00 2019-08-24 14:40:47 2019-08-24 14:41:53 t 1 2 88313 220 0.00 2019-08-24 14:43:03 2019-08-24 14:43:37 t 1 1 88314 220 0.00 2019-08-24 14:43:36 2019-08-24 14:44:03 t 1 1 88321 220 0.00 2019-08-24 14:45:50 2019-08-24 14:45:52 t 1 1 88323 220 0.00 2019-08-24 14:46:05 2019-08-24 14:46:27 t 1 1 88328 220 0.00 2019-08-24 14:47:37 2019-08-24 14:47:49 t 1 1 88330 220 0.00 2019-08-24 14:48:15 2019-08-24 14:48:24 t 1 1 88331 220 0.00 2019-08-24 14:48:24 2019-08-24 14:48:49 t 1 1 88333 220 0.00 2019-08-24 14:49:23 2019-08-24 14:49:55 t 1 1 88335 220 0.00 2019-08-24 14:50:28 2019-08-24 14:51:03 t 1 1 88343 220 0.00 2019-08-24 14:54:25 2019-08-24 14:54:58 t 1 1 88346 392 0.00 2019-08-24 14:49:31 2019-08-24 14:55:34 t 1 2 88348 355 0.00 2019-08-24 14:31:16 2019-08-24 14:56:21 t 1 2 88351 220 0.00 2019-08-24 14:57:12 2019-08-24 14:57:45 t 1 1 88354 288 0.00 2019-08-24 15:03:24 2019-08-24 15:04:26 t 1 2 88359 306 0.00 2019-08-24 15:10:44 2019-08-24 15:11:48 t 1 2 88365 306 0.00 2019-08-24 15:24:14 2019-08-24 15:25:20 t 1 2 88373 220 0.00 2019-08-24 15:48:02 2019-08-24 16:02:32 t 1 1 88383 288 0.00 2019-08-24 16:13:02 2019-08-24 16:14:06 t 1 2 88389 288 0.00 2019-08-24 16:24:34 2019-08-24 16:25:38 t 1 2 88391 351 0.00 2019-08-24 14:13:50 2019-08-24 16:48:55 t 1 2 88399 320 0.00 2019-08-24 17:22:38 2019-08-24 18:02:43 t 1 2 88412 320 0.00 2019-08-24 18:44:35 2019-08-24 19:19:41 t 1 2 88415 357 0.00 2019-08-24 16:17:47 2019-08-24 19:42:52 t 1 2 88419 320 0.00 2019-08-24 19:47:47 2019-08-24 19:57:53 t 1 2 88423 220 0.00 2019-08-24 20:01:50 2019-08-24 20:02:21 t 1 1 88425 220 0.00 2019-08-24 20:02:54 2019-08-24 20:03:26 t 1 1 88427 220 0.00 2019-08-24 18:46:11 2019-08-24 20:04:19 t 1 2 88430 288 0.00 2019-08-24 20:11:44 2019-08-24 20:12:52 t 1 2 88432 220 0.00 2019-08-24 19:48:30 2019-08-24 20:15:11 t 1 2 88439 357 0.00 2019-08-24 20:57:48 2019-08-24 21:07:54 t 1 2 88444 392 0.00 2019-08-24 21:09:19 2019-08-24 21:14:20 t 1 2 88449 220 0.00 2019-08-24 21:17:32 2019-08-24 21:18:07 t 1 1 88450 220 0.00 2019-08-24 21:18:06 2019-08-24 21:18:43 t 1 1 88453 220 0.00 2019-08-24 21:19:51 2019-08-24 21:20:22 t 1 1 88074 320 0.00 2019-08-24 09:18:37 2019-08-24 09:28:42 t 1 2 88076 355 0.00 2019-08-24 09:27:08 2019-08-24 09:51:37 t 1 2 88079 331 0.00 2019-08-24 10:13:43 2019-08-24 10:14:44 t 1 2 88080 393 0.00 2019-08-24 10:17:59 2019-08-24 10:18:36 t 1 2 88082 220 0.00 2019-08-24 10:28:47 2019-08-24 10:30:01 t 1 2 88089 212 0.00 2019-08-24 10:44:54 2019-08-24 10:45:57 t 1 2 88091 318 0.00 2019-08-24 09:55:08 2019-08-24 10:55:13 t 1 2 88096 331 0.00 2019-08-24 11:10:05 2019-08-24 11:11:12 t 1 2 88104 220 0.00 2019-08-24 11:31:12 2019-08-24 11:31:46 t 1 1 88106 324 0.00 2019-08-24 11:31:33 2019-08-24 11:32:34 t 1 2 88110 220 0.00 2019-08-24 11:34:08 2019-08-24 11:34:43 t 1 1 88114 220 0.00 2019-08-24 11:35:55 2019-08-24 11:36:26 t 1 1 88116 220 0.00 2019-08-24 11:36:25 2019-08-24 11:37:28 t 1 1 88121 220 0.00 2019-08-24 11:41:41 2019-08-24 11:41:56 t 1 1 88123 220 0.00 2019-08-24 11:42:19 2019-08-24 11:42:54 t 1 1 88135 220 0.00 2019-08-24 11:56:08 2019-08-24 12:04:58 t 1 1 88137 220 0.00 2019-08-24 12:06:25 2019-08-24 12:07:26 t 1 1 88139 306 0.00 2019-08-24 12:06:45 2019-08-24 12:07:47 t 1 2 88145 220 0.00 2019-08-24 12:09:17 2019-08-24 12:10:54 t 1 1 88147 220 0.00 2019-08-24 12:10:54 2019-08-24 12:11:39 t 1 1 88153 220 0.00 2019-08-24 12:13:56 2019-08-24 12:14:35 t 1 1 88160 320 0.00 2019-08-24 12:08:33 2019-08-24 12:18:38 t 1 2 88162 220 0.00 2019-08-24 12:19:03 2019-08-24 12:19:34 t 1 1 88166 220 0.00 2019-08-24 12:20:40 2019-08-24 12:21:21 t 1 1 88169 220 0.00 2019-08-24 12:22:32 2019-08-24 12:23:05 t 1 1 88170 220 0.00 2019-08-24 12:23:05 2019-08-24 12:23:38 t 1 1 88172 220 0.00 2019-08-24 12:24:35 2019-08-24 12:25:24 t 1 1 88177 220 0.00 2019-08-24 12:27:12 2019-08-24 12:27:46 t 1 1 88180 320 0.00 2019-08-24 12:19:35 2019-08-24 12:29:40 t 1 2 88182 220 0.00 2019-08-24 12:29:40 2019-08-24 12:30:17 t 1 1 88185 220 0.00 2019-08-24 12:31:29 2019-08-24 12:32:02 t 1 1 88199 220 0.00 2019-08-24 12:39:44 2019-08-24 12:40:30 t 1 1 88202 220 0.00 2019-08-24 12:41:51 2019-08-24 12:42:27 t 1 1 88214 220 0.00 2019-08-24 12:53:37 2019-08-24 12:54:11 t 1 1 88217 220 0.00 2019-08-24 12:55:25 2019-08-24 12:55:57 t 1 1 88224 220 0.00 2019-08-24 12:58:55 2019-08-24 12:59:30 t 1 1 88226 357 0.00 2019-08-24 12:15:30 2019-08-24 13:00:35 t 1 2 88234 220 0.00 2019-08-24 13:02:47 2019-08-24 13:03:01 t 1 1 88241 220 0.00 2019-08-24 13:05:57 2019-08-24 13:06:30 t 1 1 88246 220 0.00 2019-08-24 13:07:42 2019-08-24 13:08:17 t 1 1 88262 220 0.00 2019-08-24 13:28:02 2019-08-24 13:28:39 t 1 1 88268 220 0.00 2019-08-24 13:30:59 2019-08-24 13:31:34 t 1 1 88271 220 0.00 2019-08-24 13:32:46 2019-08-24 13:33:22 t 1 1 88272 220 0.00 2019-08-24 13:33:22 2019-08-24 13:33:53 t 1 1 88279 288 0.00 2019-08-24 13:36:29 2019-08-24 13:37:33 t 1 2 88283 220 0.00 2019-08-24 13:39:10 2019-08-24 13:39:43 t 1 1 88287 220 0.00 2019-08-24 13:40:52 2019-08-24 13:41:29 t 1 1 88289 220 0.00 2019-08-24 13:42:02 2019-08-24 13:58:56 t 1 1 88293 306 0.00 2019-08-24 14:07:34 2019-08-24 14:08:43 t 1 2 88296 381 0.00 2019-08-24 14:17:36 2019-08-24 14:17:49 t 1 2 88299 306 0.00 2019-08-24 14:34:26 2019-08-24 14:35:28 t 1 2 88302 381 0.00 2019-08-24 14:18:15 2019-08-24 14:38:20 t 1 2 88304 393 0.00 2019-08-24 13:33:55 2019-08-24 14:39:00 t 1 2 88312 220 0.00 2019-08-24 14:42:28 2019-08-24 14:43:03 t 1 1 88315 220 0.00 2019-08-24 14:44:03 2019-08-24 14:44:09 t 1 1 88320 220 0.00 2019-08-24 14:45:16 2019-08-24 14:45:50 t 1 1 88322 220 0.00 2019-08-24 14:45:51 2019-08-24 14:46:06 t 1 1 88327 220 0.00 2019-08-24 14:47:14 2019-08-24 14:47:37 t 1 1 88329 220 0.00 2019-08-24 14:47:49 2019-08-24 14:48:15 t 1 1 88332 220 0.00 2019-08-24 14:48:49 2019-08-24 14:49:23 t 1 1 88334 220 0.00 2019-08-24 14:49:54 2019-08-24 14:50:28 t 1 1 88338 306 0.00 2019-08-24 14:51:10 2019-08-24 14:52:16 t 1 2 88352 220 0.00 2019-08-24 14:57:45 2019-08-24 14:58:18 t 1 1 88357 306 0.00 2019-08-24 15:08:39 2019-08-24 15:09:46 t 1 2 88363 381 0.00 2019-08-24 15:09:04 2019-08-24 15:24:09 t 1 2 88366 306 0.00 2019-08-24 15:25:55 2019-08-24 15:27:02 t 1 2 88370 212 0.00 2019-08-24 15:54:38 2019-08-24 15:57:13 t 1 2 88376 212 0.00 2019-08-24 16:03:08 2019-08-24 16:03:36 t 1 2 88378 288 0.00 2019-08-24 16:04:24 2019-08-24 16:05:26 t 1 2 88382 288 0.00 2019-08-24 16:11:35 2019-08-24 16:12:40 t 1 2 88384 288 0.00 2019-08-24 16:19:34 2019-08-24 16:20:37 t 1 2 88387 318 0.00 2019-08-24 15:47:08 2019-08-24 16:22:13 t 1 2 88388 220 0.00 2019-08-24 14:22:39 2019-08-24 16:24:02 t 1 2 88392 306 0.00 2019-08-24 16:57:00 2019-08-24 16:58:06 t 1 2 88393 306 0.00 2019-08-24 16:59:38 2019-08-24 17:00:41 t 1 2 88402 346 0.00 2019-08-24 18:07:24 2019-08-24 18:27:29 t 1 2 88403 367 0.00 2019-08-24 17:28:22 2019-08-24 18:32:58 t 1 2 88404 306 0.00 2019-08-24 18:34:57 2019-08-24 18:36:03 t 1 2 88408 363 0.00 2019-08-24 17:28:16 2019-08-24 18:43:21 t 1 2 88409 363 0.00 2019-08-24 18:36:36 2019-08-24 19:01:41 t 1 2 88418 346 0.00 2019-08-24 19:46:20 2019-08-24 19:47:45 t 1 2 88421 220 0.00 2019-08-24 18:02:34 2019-08-24 20:01:14 t 1 1 88424 220 0.00 2019-08-24 20:02:21 2019-08-24 20:02:54 t 1 1 88426 220 0.00 2019-08-24 20:03:25 2019-08-24 20:04:02 t 1 1 88431 346 0.00 2019-08-24 20:03:34 2019-08-24 20:13:39 t 1 2 88435 363 0.00 2019-08-24 20:15:50 2019-08-24 20:35:55 t 1 2 88436 306 0.00 2019-08-24 20:55:41 2019-08-24 20:56:44 t 1 2 88438 357 0.00 2019-08-24 20:02:57 2019-08-24 21:03:02 t 1 2 88440 247 0.00 2019-08-24 21:07:31 2019-08-24 21:09:05 t 1 2 88443 320 0.00 2019-08-24 21:04:00 2019-08-24 21:14:05 t 1 2 88446 220 0.00 2019-08-24 21:16:19 2019-08-24 21:16:22 t 1 1 88454 220 0.00 2019-08-24 21:20:22 2019-08-24 21:20:57 t 1 1 88457 220 0.00 2019-08-24 21:22:04 2019-08-24 21:22:38 t 1 1 88460 220 0.00 2019-08-24 21:23:43 2019-08-24 21:24:16 t 1 1 88468 220 0.00 2019-08-24 21:26:59 2019-08-24 21:27:35 t 1 1 88473 220 0.00 2019-08-24 21:29:20 2019-08-24 21:29:54 t 1 1 88483 220 0.00 2019-08-24 21:34:22 2019-08-24 21:34:54 t 1 1 88488 320 0.00 2019-08-24 21:27:13 2019-08-24 21:37:18 t 1 2 88496 220 0.00 2019-08-24 21:41:03 2019-08-24 21:41:36 t 1 1 88501 220 0.00 2019-08-24 21:43:18 2019-08-24 21:43:50 t 1 1 88504 220 0.00 2019-08-24 21:44:57 2019-08-24 21:45:31 t 1 1 88506 320 0.00 2019-08-24 21:36:03 2019-08-24 21:46:08 t 1 2 88514 220 0.00 2019-08-24 21:49:30 2019-08-24 21:50:03 t 1 1 88517 220 0.00 2019-08-24 21:51:12 2019-08-24 21:51:47 t 1 1 88520 220 0.00 2019-08-24 21:52:55 2019-08-24 21:53:29 t 1 1 88521 220 0.00 2019-08-24 21:53:29 2019-08-24 21:54:01 t 1 1 88525 220 0.00 2019-08-24 21:57:04 2019-08-24 21:57:44 t 1 1 88240 220 0.00 2019-08-24 13:05:22 2019-08-24 13:05:57 t 1 1 88242 220 0.00 2019-08-24 13:06:29 2019-08-24 13:07:05 t 1 1 88244 220 0.00 2019-08-24 13:07:05 2019-08-24 13:07:42 t 1 1 88249 306 0.00 2019-08-24 13:08:26 2019-08-24 13:09:30 t 1 2 88252 220 0.00 2019-08-24 13:10:37 2019-08-24 13:11:08 t 1 1 88254 220 0.00 2019-08-24 13:11:08 2019-08-24 13:11:44 t 1 1 88257 220 0.00 2019-08-24 12:17:41 2019-08-24 13:13:51 t 1 2 88261 220 0.00 2019-08-24 13:27:28 2019-08-24 13:28:03 t 1 1 88263 393 0.00 2019-08-24 13:28:30 2019-08-24 13:28:45 t 1 2 88275 220 0.00 2019-08-24 13:35:04 2019-08-24 13:35:41 t 1 1 88277 220 0.00 2019-08-24 13:36:13 2019-08-24 13:36:48 t 1 1 88281 220 0.00 2019-08-24 13:38:01 2019-08-24 13:38:36 t 1 1 88282 220 0.00 2019-08-24 13:38:36 2019-08-24 13:39:10 t 1 1 88284 393 0.00 2019-08-24 13:29:53 2019-08-24 13:39:59 t 1 2 88290 212 0.00 2019-08-24 13:48:07 2019-08-24 14:03:08 t 1 2 88291 355 0.00 2019-08-24 10:43:40 2019-08-24 14:05:46 t 1 2 88298 306 0.00 2019-08-24 14:32:22 2019-08-24 14:33:23 t 1 2 88306 220 0.00 2019-08-24 14:09:46 2019-08-24 14:40:46 t 1 1 88308 220 0.00 2019-08-24 14:41:19 2019-08-24 14:41:51 t 1 1 88311 220 0.00 2019-08-24 14:41:51 2019-08-24 14:42:28 t 1 1 88317 220 0.00 2019-08-24 14:44:39 2019-08-24 14:44:42 t 1 1 88319 220 0.00 2019-08-24 14:45:13 2019-08-24 14:45:17 t 1 1 88324 220 0.00 2019-08-24 14:46:27 2019-08-24 14:46:40 t 1 1 88326 220 0.00 2019-08-24 14:47:02 2019-08-24 14:47:14 t 1 1 88340 220 0.00 2019-08-24 14:52:44 2019-08-24 14:53:19 t 1 1 88341 220 0.00 2019-08-24 14:53:19 2019-08-24 14:53:52 t 1 1 88345 220 0.00 2019-08-24 14:54:58 2019-08-24 14:55:33 t 1 1 88347 220 0.00 2019-08-24 14:55:33 2019-08-24 14:56:06 t 1 1 88349 220 0.00 2019-08-24 14:56:06 2019-08-24 14:56:41 t 1 1 88353 220 0.00 2019-08-24 14:58:18 2019-08-24 14:58:28 t 1 1 88356 381 0.00 2019-08-24 15:02:54 2019-08-24 15:08:49 t 1 2 88358 381 0.00 2019-08-24 14:50:41 2019-08-24 15:10:47 t 1 2 88362 212 0.00 2019-08-24 15:22:06 2019-08-24 15:23:01 t 1 2 88364 355 0.00 2019-08-24 15:21:41 2019-08-24 15:24:41 t 1 2 88367 381 0.00 2019-08-24 15:18:22 2019-08-24 15:33:27 t 1 2 88369 320 0.00 2019-08-24 13:08:07 2019-08-24 15:48:12 t 1 2 88371 306 0.00 2019-08-24 15:57:26 2019-08-24 15:58:32 t 1 2 88372 306 0.00 2019-08-24 15:59:39 2019-08-24 16:00:45 t 1 2 88381 212 0.00 2019-08-24 16:09:01 2019-08-24 16:10:00 t 1 2 88385 324 0.00 2019-08-24 16:05:47 2019-08-24 16:20:52 t 1 2 88390 392 0.00 2019-08-24 16:30:39 2019-08-24 16:33:05 t 1 2 88396 306 0.00 2019-08-24 17:15:30 2019-08-24 17:16:34 t 1 2 88398 220 0.00 2019-08-24 17:39:32 2019-08-24 17:51:27 t 1 1 88406 327 0.00 2019-08-24 18:03:13 2019-08-24 18:42:37 t 1 2 88410 361 0.00 2019-08-24 16:28:23 2019-08-24 19:13:04 t 1 2 88411 306 0.00 2019-08-24 19:13:54 2019-08-24 19:14:59 t 1 2 88413 331 0.00 2019-08-24 19:34:54 2019-08-24 19:35:28 t 1 2 88414 220 0.00 2019-08-24 19:13:13 2019-08-24 19:38:19 t 1 2 88416 361 0.00 2019-08-24 19:32:56 2019-08-24 19:43:25 t 1 2 88417 363 0.00 2019-08-24 19:01:15 2019-08-24 19:46:20 t 1 2 88420 367 0.00 2019-08-24 18:58:38 2019-08-24 20:01:10 t 1 2 88433 367 0.00 2019-08-24 20:15:08 2019-08-24 20:19:02 t 1 2 88437 324 0.00 2019-08-24 20:57:13 2019-08-24 20:57:58 t 1 2 88441 306 0.00 2019-08-24 21:09:53 2019-08-24 21:10:58 t 1 2 88448 220 0.00 2019-08-24 21:16:56 2019-08-24 21:17:33 t 1 1 88455 220 0.00 2019-08-24 21:20:57 2019-08-24 21:21:31 t 1 1 88458 220 0.00 2019-08-24 21:22:38 2019-08-24 21:23:11 t 1 1 88459 220 0.00 2019-08-24 21:23:11 2019-08-24 21:23:44 t 1 1 88465 220 0.00 2019-08-24 21:25:56 2019-08-24 21:26:28 t 1 1 88474 220 0.00 2019-08-24 21:29:54 2019-08-24 21:30:25 t 1 1 88476 220 0.00 2019-08-24 21:30:25 2019-08-24 21:30:59 t 1 1 88478 220 0.00 2019-08-24 21:31:29 2019-08-24 21:32:03 t 1 1 88484 220 0.00 2019-08-24 21:34:53 2019-08-24 21:35:27 t 1 1 88493 220 0.00 2019-08-24 21:39:24 2019-08-24 21:39:58 t 1 1 88495 220 0.00 2019-08-24 21:40:31 2019-08-24 21:41:04 t 1 1 88498 220 0.00 2019-08-24 21:42:08 2019-08-24 21:42:43 t 1 1 88500 306 0.00 2019-08-24 21:42:45 2019-08-24 21:43:47 t 1 2 88502 220 0.00 2019-08-24 21:43:50 2019-08-24 21:44:25 t 1 1 88509 220 0.00 2019-08-24 21:17:12 2019-08-24 21:47:21 t 1 2 88518 220 0.00 2019-08-24 21:51:47 2019-08-24 21:52:20 t 1 1 88522 320 0.00 2019-08-24 21:45:28 2019-08-24 21:55:33 t 1 2 88526 220 0.00 2019-08-24 21:57:44 2019-08-24 21:58:19 t 1 1 88532 220 0.00 2019-08-24 22:00:46 2019-08-24 22:01:20 t 1 1 88535 349 0.00 2019-08-24 22:04:35 2019-08-24 22:05:40 t 1 2 88546 346 0.00 2019-08-24 22:26:55 2019-08-24 22:42:00 t 1 2 88548 220 0.00 2019-08-24 22:01:20 2019-08-24 22:47:48 t 1 1 88550 220 0.00 2019-08-24 22:49:12 2019-08-24 22:49:48 t 1 1 88552 220 0.00 2019-08-24 22:49:48 2019-08-24 22:51:26 t 1 1 88555 306 0.00 2019-08-24 22:55:15 2019-08-24 22:56:18 t 1 2 88561 395 0.00 2019-08-24 22:29:06 2019-08-24 23:11:12 t 1 2 88571 212 0.00 2019-08-25 00:10:09 2019-08-25 00:10:35 t 1 2 88572 220 0.00 2019-08-25 00:07:46 2019-08-25 00:12:47 t 1 1 88573 355 0.00 2019-08-24 23:43:31 2019-08-25 00:24:52 t 1 2 88575 320 0.00 2019-08-24 23:29:51 2019-08-25 00:39:56 t 1 2 88577 379 0.00 2019-08-24 22:31:42 2019-08-25 00:41:48 t 1 2 88584 392 0.00 2019-08-25 01:28:27 2019-08-25 01:37:42 t 1 2 88590 324 0.00 2019-08-25 03:10:34 2019-08-25 03:31:04 t 1 2 88592 294 0.00 2019-08-24 21:31:15 2019-08-25 05:28:40 t 1 2 88594 220 0.00 2019-08-25 06:28:02 2019-08-25 06:32:55 t 1 1 88598 212 0.00 2019-08-25 07:47:05 2019-08-25 07:47:43 t 1 2 88600 220 0.00 2019-08-25 07:52:40 2019-08-25 07:55:28 t 1 1 88603 220 0.00 2019-08-25 07:56:51 2019-08-25 07:57:22 t 1 1 88607 220 0.00 2019-08-25 07:59:08 2019-08-25 07:59:42 t 1 1 88610 220 0.00 2019-08-25 07:59:41 2019-08-25 08:09:17 t 1 1 88614 220 0.00 2019-08-25 08:10:58 2019-08-25 08:11:32 t 1 1 88618 220 0.00 2019-08-25 08:12:35 2019-08-25 08:13:06 t 1 1 88619 220 0.00 2019-08-25 08:13:06 2019-08-25 08:13:39 t 1 1 88624 220 0.00 2019-08-25 08:15:49 2019-08-25 08:16:23 t 1 1 88625 220 0.00 2019-08-25 08:16:23 2019-08-25 08:18:20 t 1 1 88626 220 0.00 2019-08-25 08:18:19 2019-08-25 08:18:50 t 1 1 88630 220 0.00 2019-08-25 08:20:39 2019-08-25 08:21:15 t 1 1 88632 220 0.00 2019-08-25 08:21:46 2019-08-25 08:22:21 t 1 1 88636 220 0.00 2019-08-25 08:26:03 2019-08-25 08:26:37 t 1 1 88641 320 0.00 2019-08-25 08:20:46 2019-08-25 08:30:52 t 1 2 88646 220 0.00 2019-08-25 08:33:12 2019-08-25 08:34:55 t 1 1 88651 220 0.00 2019-08-25 08:39:15 2019-08-25 08:39:47 t 1 1 88653 294 0.00 2019-08-25 07:41:40 2019-08-25 08:42:04 t 1 2 88339 220 0.00 2019-08-24 14:52:09 2019-08-24 14:52:45 t 1 1 88342 220 0.00 2019-08-24 14:53:52 2019-08-24 14:54:25 t 1 1 88344 355 0.00 2019-08-24 14:51:46 2019-08-24 14:55:23 t 1 2 88350 220 0.00 2019-08-24 14:56:41 2019-08-24 14:57:13 t 1 1 88355 372 0.00 2019-08-24 15:01:17 2019-08-24 15:08:24 t 1 2 88360 372 0.00 2019-08-24 15:10:47 2019-08-24 15:11:51 t 1 2 88361 220 0.00 2019-08-24 14:58:53 2019-08-24 15:17:43 t 1 1 88368 343 0.00 2019-08-24 14:11:56 2019-08-24 15:37:01 t 1 2 88374 288 0.00 2019-08-24 16:01:28 2019-08-24 16:02:33 t 1 2 88375 381 0.00 2019-08-24 15:28:08 2019-08-24 16:03:13 t 1 2 88377 288 0.00 2019-08-24 16:02:56 2019-08-24 16:04:01 t 1 2 88379 288 0.00 2019-08-24 16:07:55 2019-08-24 16:08:58 t 1 2 88380 247 0.00 2019-08-24 16:08:03 2019-08-24 16:09:06 t 1 2 88386 288 0.00 2019-08-24 16:20:52 2019-08-24 16:21:59 t 1 2 88394 306 0.00 2019-08-24 17:07:23 2019-08-24 17:08:27 t 1 2 88395 392 0.00 2019-08-24 17:04:56 2019-08-24 17:14:35 t 1 2 88397 296 0.00 2019-08-24 17:13:07 2019-08-24 17:36:30 t 1 2 88400 320 0.00 2019-08-24 17:56:43 2019-08-24 18:06:48 t 1 2 88401 220 0.00 2019-08-24 18:02:34 2019-08-24 18:20:31 t 1 2 88405 220 0.00 2019-08-24 17:59:16 2019-08-24 18:40:19 t 1 2 88407 212 0.00 2019-08-24 18:42:17 2019-08-24 18:43:03 t 1 2 88422 220 0.00 2019-08-24 20:01:14 2019-08-24 20:01:50 t 1 1 88428 220 0.00 2019-08-24 20:04:01 2019-08-24 20:04:35 t 1 1 88429 220 0.00 2019-08-24 20:04:35 2019-08-24 20:11:00 t 1 1 88434 294 0.00 2019-08-24 20:09:40 2019-08-24 20:26:03 t 1 2 88442 212 0.00 2019-08-24 21:10:39 2019-08-24 21:11:14 t 1 2 88445 392 0.00 2019-08-24 20:55:04 2019-08-24 21:15:09 t 1 2 88447 220 0.00 2019-08-24 21:16:21 2019-08-24 21:16:57 t 1 1 88451 220 0.00 2019-08-24 21:18:43 2019-08-24 21:19:18 t 1 1 88452 220 0.00 2019-08-24 21:19:18 2019-08-24 21:19:52 t 1 1 88461 220 0.00 2019-08-24 21:24:16 2019-08-24 21:24:49 t 1 1 88463 320 0.00 2019-08-24 21:15:50 2019-08-24 21:25:55 t 1 2 88466 220 0.00 2019-08-24 21:26:28 2019-08-24 21:26:59 t 1 1 88469 220 0.00 2019-08-24 21:27:34 2019-08-24 21:28:08 t 1 1 88475 361 0.00 2019-08-24 19:47:00 2019-08-24 21:30:29 t 1 2 88477 220 0.00 2019-08-24 21:30:58 2019-08-24 21:31:30 t 1 1 88480 220 0.00 2019-08-24 21:32:37 2019-08-24 21:33:12 t 1 1 88481 220 0.00 2019-08-24 21:33:12 2019-08-24 21:33:47 t 1 1 88487 220 0.00 2019-08-24 21:36:37 2019-08-24 21:37:08 t 1 1 88489 220 0.00 2019-08-24 21:37:08 2019-08-24 21:37:41 t 1 1 88492 220 0.00 2019-08-24 21:38:49 2019-08-24 21:39:24 t 1 1 88494 220 0.00 2019-08-24 21:39:58 2019-08-24 21:40:31 t 1 1 88497 220 0.00 2019-08-24 21:41:35 2019-08-24 21:42:09 t 1 1 88499 220 0.00 2019-08-24 21:42:42 2019-08-24 21:43:19 t 1 1 88505 220 0.00 2019-08-24 21:45:31 2019-08-24 21:46:04 t 1 1 88507 220 0.00 2019-08-24 21:46:04 2019-08-24 21:46:41 t 1 1 88511 220 0.00 2019-08-24 21:47:47 2019-08-24 21:48:22 t 1 1 88512 220 0.00 2019-08-24 21:48:22 2019-08-24 21:48:56 t 1 1 88515 220 0.00 2019-08-24 21:50:03 2019-08-24 21:50:38 t 1 1 88528 220 0.00 2019-08-24 21:58:19 2019-08-24 21:59:03 t 1 1 88541 320 0.00 2019-08-24 22:11:23 2019-08-24 22:26:28 t 1 2 88549 220 0.00 2019-08-24 22:47:47 2019-08-24 22:49:13 t 1 1 88562 212 0.00 2019-08-24 23:12:36 2019-08-24 23:12:36 t 1 2 88568 212 0.00 2019-08-24 23:51:01 2019-08-24 23:51:56 t 1 2 88578 212 0.00 2019-08-25 00:42:46 2019-08-25 00:43:08 t 1 2 88579 212 0.00 2019-08-25 00:54:06 2019-08-25 00:55:10 t 1 2 88580 363 0.00 2019-08-24 23:43:47 2019-08-25 01:03:53 t 1 2 88581 296 0.00 2019-08-25 00:50:14 2019-08-25 01:06:37 t 1 2 88586 346 0.00 2019-08-25 01:39:06 2019-08-25 02:04:11 t 1 2 88593 393 0.00 2019-08-25 04:53:05 2019-08-25 05:38:11 t 1 2 88599 220 0.00 2019-08-25 07:22:05 2019-08-25 07:52:40 t 1 1 88601 220 0.00 2019-08-25 07:55:28 2019-08-25 07:56:01 t 1 1 88604 220 0.00 2019-08-25 07:57:22 2019-08-25 07:57:55 t 1 1 88611 220 0.00 2019-08-25 08:09:17 2019-08-25 08:09:48 t 1 1 88616 320 0.00 2019-08-25 08:02:00 2019-08-25 08:12:05 t 1 2 88622 220 0.00 2019-08-25 08:14:43 2019-08-25 08:15:14 t 1 1 88627 220 0.00 2019-08-25 08:18:50 2019-08-25 08:20:08 t 1 1 88629 320 0.00 2019-08-25 08:10:40 2019-08-25 08:20:46 t 1 2 88631 220 0.00 2019-08-25 08:21:15 2019-08-25 08:21:47 t 1 1 88644 220 0.00 2019-08-25 08:32:05 2019-08-25 08:32:37 t 1 1 88650 220 0.00 2019-08-25 08:38:42 2019-08-25 08:39:16 t 1 1 88652 320 0.00 2019-08-25 08:29:55 2019-08-25 08:40:00 t 1 2 88654 324 0.00 2019-08-25 08:42:29 2019-08-25 08:42:40 t 1 2 88662 395 0.00 2019-08-25 08:47:11 2019-08-25 08:52:52 t 1 2 88665 220 0.00 2019-08-25 08:54:07 2019-08-25 08:54:59 t 1 1 88675 296 0.00 2019-08-25 08:54:13 2019-08-25 09:07:37 t 1 2 88676 324 0.00 2019-08-25 09:08:03 2019-08-25 09:09:11 t 1 2 88678 395 0.00 2019-08-25 09:12:04 2019-08-25 09:12:04 f 1 2 88682 306 0.00 2019-08-25 09:15:07 2019-08-25 09:16:12 t 1 2 88686 324 0.00 2019-08-25 09:05:47 2019-08-25 09:24:55 t 1 2 88687 306 0.00 2019-08-25 09:24:59 2019-08-25 09:26:04 t 1 2 88692 288 0.00 2019-08-25 09:32:17 2019-08-25 09:33:21 t 1 2 88694 306 0.00 2019-08-25 09:35:13 2019-08-25 09:36:16 t 1 2 88703 220 0.00 2019-08-25 09:57:59 2019-08-25 09:58:34 t 1 1 88704 220 0.00 2019-08-25 09:58:33 2019-08-25 09:59:12 t 1 1 88708 220 0.00 2019-08-25 10:01:31 2019-08-25 10:02:09 t 1 1 88714 220 0.00 2019-08-25 10:07:31 2019-08-25 10:08:07 t 1 1 88719 220 0.00 2019-08-25 10:12:18 2019-08-25 10:12:52 t 1 1 88726 288 0.00 2019-08-25 10:21:12 2019-08-25 10:22:16 t 1 2 88730 220 0.00 2019-08-25 10:23:03 2019-08-25 10:23:36 t 1 1 88731 220 0.00 2019-08-25 10:23:36 2019-08-25 10:24:10 t 1 1 88740 288 0.00 2019-08-25 10:32:51 2019-08-25 10:33:58 t 1 2 88745 346 0.00 2019-08-25 10:41:46 2019-08-25 10:51:51 t 1 2 88746 220 0.00 2019-08-25 10:39:43 2019-08-25 10:54:59 t 1 1 88754 288 0.00 2019-08-25 11:12:37 2019-08-25 11:13:39 t 1 2 88756 220 0.00 2019-08-25 11:27:33 2019-08-25 11:28:42 t 1 1 88757 220 0.00 2019-08-25 10:55:02 2019-08-25 11:36:12 t 1 1 88758 355 0.00 2019-08-25 11:28:49 2019-08-25 11:42:12 t 1 2 88759 346 0.00 2019-08-25 09:17:27 2019-08-25 11:47:33 t 1 2 88764 331 0.00 2019-08-25 12:00:37 2019-08-25 12:01:38 t 1 2 88766 212 0.00 2019-08-25 11:49:34 2019-08-25 12:12:14 t 1 2 88770 346 0.00 2019-08-25 12:14:29 2019-08-25 12:29:35 t 1 2 88773 379 0.00 2019-08-25 12:38:42 2019-08-25 12:44:42 t 1 2 88776 357 0.00 2019-08-25 10:32:16 2019-08-25 13:02:22 t 1 2 88781 288 0.00 2019-08-25 13:14:31 2019-08-25 13:15:35 t 1 2 88783 288 0.00 2019-08-25 13:16:40 2019-08-25 13:17:46 t 1 2 88786 392 0.00 2019-08-25 13:38:42 2019-08-25 13:41:42 t 1 2 88456 220 0.00 2019-08-24 21:21:31 2019-08-24 21:22:04 t 1 1 88462 220 0.00 2019-08-24 21:24:49 2019-08-24 21:25:21 t 1 1 88464 220 0.00 2019-08-24 21:25:21 2019-08-24 21:25:56 t 1 1 88467 306 0.00 2019-08-24 21:25:59 2019-08-24 21:27:03 t 1 2 88470 306 0.00 2019-08-24 21:27:34 2019-08-24 21:28:37 t 1 2 88471 220 0.00 2019-08-24 21:28:08 2019-08-24 21:28:45 t 1 1 88472 220 0.00 2019-08-24 21:28:45 2019-08-24 21:29:20 t 1 1 88479 220 0.00 2019-08-24 21:32:02 2019-08-24 21:32:38 t 1 1 88482 220 0.00 2019-08-24 21:33:47 2019-08-24 21:34:22 t 1 1 88485 220 0.00 2019-08-24 21:35:27 2019-08-24 21:36:03 t 1 1 88486 220 0.00 2019-08-24 21:36:02 2019-08-24 21:36:37 t 1 1 88490 220 0.00 2019-08-24 21:37:41 2019-08-24 21:38:16 t 1 1 88491 220 0.00 2019-08-24 21:38:15 2019-08-24 21:38:49 t 1 1 88503 220 0.00 2019-08-24 21:44:25 2019-08-24 21:44:58 t 1 1 88508 220 0.00 2019-08-24 21:46:41 2019-08-24 21:47:12 t 1 1 88510 220 0.00 2019-08-24 21:47:12 2019-08-24 21:47:47 t 1 1 88513 220 0.00 2019-08-24 21:48:56 2019-08-24 21:49:31 t 1 1 88516 220 0.00 2019-08-24 21:50:38 2019-08-24 21:51:12 t 1 1 88519 220 0.00 2019-08-24 21:52:20 2019-08-24 21:52:55 t 1 1 88523 220 0.00 2019-08-24 21:54:01 2019-08-24 21:56:30 t 1 1 88524 220 0.00 2019-08-24 21:56:30 2019-08-24 21:57:05 t 1 1 88527 355 0.00 2019-08-24 21:40:22 2019-08-24 21:59:01 t 1 2 88529 220 0.00 2019-08-24 21:59:03 2019-08-24 21:59:36 t 1 1 88534 320 0.00 2019-08-24 21:53:08 2019-08-24 22:03:13 t 1 2 88538 288 0.00 2019-08-24 22:17:32 2019-08-24 22:18:38 t 1 2 88539 363 0.00 2019-08-24 22:19:02 2019-08-24 22:19:08 t 1 2 88544 220 0.00 2019-08-24 22:27:13 2019-08-24 22:32:14 t 1 2 88554 306 0.00 2019-08-24 22:53:38 2019-08-24 22:54:42 t 1 2 88557 392 0.00 2019-08-24 22:48:58 2019-08-24 22:57:18 t 1 2 88558 220 0.00 2019-08-24 22:52:49 2019-08-24 22:58:53 t 1 1 88559 212 0.00 2019-08-24 22:58:54 2019-08-24 22:59:21 t 1 2 88560 220 0.00 2019-08-24 21:19:48 2019-08-24 23:11:11 t 1 2 88565 288 0.00 2019-08-24 23:33:08 2019-08-24 23:34:11 t 1 2 88566 220 0.00 2019-08-24 22:51:25 2019-08-24 23:39:40 t 1 1 88569 220 0.00 2019-08-24 23:40:06 2019-08-24 23:56:52 t 1 1 88582 392 0.00 2019-08-25 00:54:52 2019-08-25 01:10:38 t 1 2 88585 296 0.00 2019-08-25 01:47:45 2019-08-25 01:54:07 t 1 2 88589 395 0.00 2019-08-25 03:10:09 2019-08-25 03:14:11 t 1 2 88591 322 0.00 2019-08-25 02:17:23 2019-08-25 03:43:32 t 1 2 88595 247 0.00 2019-08-25 06:45:37 2019-08-25 06:48:31 t 1 2 88596 393 0.00 2019-08-25 05:57:41 2019-08-25 06:59:42 t 1 2 88597 294 0.00 2019-08-25 07:23:42 2019-08-25 07:33:48 t 1 2 88602 220 0.00 2019-08-25 07:56:01 2019-08-25 07:56:52 t 1 1 88608 288 0.00 2019-08-25 08:05:03 2019-08-25 08:06:11 t 1 2 88609 288 0.00 2019-08-25 08:07:46 2019-08-25 08:08:54 t 1 2 88612 220 0.00 2019-08-25 08:09:48 2019-08-25 08:10:24 t 1 1 88613 220 0.00 2019-08-25 08:10:23 2019-08-25 08:10:59 t 1 1 88615 220 0.00 2019-08-25 08:11:32 2019-08-25 08:12:03 t 1 1 88620 220 0.00 2019-08-25 08:13:39 2019-08-25 08:14:12 t 1 1 88623 220 0.00 2019-08-25 08:15:14 2019-08-25 08:15:50 t 1 1 88628 220 0.00 2019-08-25 08:20:07 2019-08-25 08:20:40 t 1 1 88633 306 0.00 2019-08-25 08:21:51 2019-08-25 08:22:53 t 1 2 88634 393 0.00 2019-08-25 07:49:36 2019-08-25 08:24:41 t 1 2 88638 212 0.00 2019-08-25 08:27:02 2019-08-25 08:27:21 t 1 2 88640 346 0.00 2019-08-25 08:10:15 2019-08-25 08:30:21 t 1 2 88642 220 0.00 2019-08-25 08:27:44 2019-08-25 08:31:32 t 1 1 88645 220 0.00 2019-08-25 08:32:37 2019-08-25 08:33:12 t 1 1 88648 220 0.00 2019-08-25 08:35:30 2019-08-25 08:38:12 t 1 1 88649 220 0.00 2019-08-25 08:38:12 2019-08-25 08:38:43 t 1 1 88656 220 0.00 2019-08-25 08:42:55 2019-08-25 08:43:34 t 1 1 88657 220 0.00 2019-08-25 08:43:34 2019-08-25 08:44:09 t 1 1 88663 220 0.00 2019-08-25 08:49:34 2019-08-25 08:53:28 t 1 1 88664 220 0.00 2019-08-25 08:53:27 2019-08-25 08:54:07 t 1 1 88666 220 0.00 2019-08-25 08:54:59 2019-08-25 08:55:33 t 1 1 88669 220 0.00 2019-08-25 08:57:18 2019-08-25 08:57:55 t 1 1 88672 220 0.00 2019-08-25 08:59:01 2019-08-25 09:00:46 t 1 1 88673 212 0.00 2019-08-25 09:04:23 2019-08-25 09:04:49 t 1 2 88674 288 0.00 2019-08-25 09:05:12 2019-08-25 09:06:15 t 1 2 88680 346 0.00 2019-08-25 07:35:55 2019-08-25 09:16:01 t 1 2 88683 306 0.00 2019-08-25 09:17:23 2019-08-25 09:18:25 t 1 2 88685 306 0.00 2019-08-25 09:20:31 2019-08-25 09:21:35 t 1 2 88688 346 0.00 2019-08-25 09:17:51 2019-08-25 09:27:57 t 1 2 88690 355 0.00 2019-08-25 09:29:18 2019-08-25 09:30:40 t 1 2 88695 331 0.00 2019-08-25 09:40:04 2019-08-25 09:41:05 t 1 2 88698 288 0.00 2019-08-25 09:43:18 2019-08-25 09:44:22 t 1 2 88699 346 0.00 2019-08-25 09:51:39 2019-08-25 09:53:29 t 1 2 88700 306 0.00 2019-08-25 09:55:11 2019-08-25 09:56:18 t 1 2 88702 220 0.00 2019-08-25 09:01:38 2019-08-25 09:57:59 t 1 1 88715 306 0.00 2019-08-25 10:08:33 2019-08-25 10:09:36 t 1 2 88720 220 0.00 2019-08-25 10:12:52 2019-08-25 10:13:25 t 1 1 88721 220 0.00 2019-08-25 10:05:20 2019-08-25 10:15:25 t 1 2 88724 220 0.00 2019-08-25 10:17:35 2019-08-25 10:18:17 t 1 1 88725 220 0.00 2019-08-25 10:18:17 2019-08-25 10:19:02 t 1 1 88727 220 0.00 2019-08-25 10:19:01 2019-08-25 10:22:28 t 1 1 88729 220 0.00 2019-08-25 10:22:28 2019-08-25 10:23:03 t 1 1 88734 220 0.00 2019-08-25 10:25:16 2019-08-25 10:28:02 t 1 1 88735 220 0.00 2019-08-25 10:28:02 2019-08-25 10:29:35 t 1 1 88741 288 0.00 2019-08-25 10:35:02 2019-08-25 10:36:05 t 1 2 88744 375 0.00 2019-08-25 10:40:10 2019-08-25 10:41:14 t 1 2 88750 324 0.00 2019-08-25 10:59:14 2019-08-25 11:00:24 t 1 2 88762 331 0.00 2019-08-25 11:56:53 2019-08-25 11:57:55 t 1 2 88765 346 0.00 2019-08-25 11:43:28 2019-08-25 12:03:33 t 1 2 88767 294 0.00 2019-08-25 11:28:20 2019-08-25 12:21:43 t 1 2 88771 392 0.00 2019-08-25 12:11:11 2019-08-25 12:31:03 t 1 2 88774 327 0.00 2019-08-25 12:49:49 2019-08-25 12:50:24 t 1 2 88779 220 0.00 2019-08-25 12:58:07 2019-08-25 13:15:26 t 1 2 88784 212 0.00 2019-08-25 13:26:56 2019-08-25 13:27:03 t 1 2 88787 372 0.00 2019-08-25 12:57:53 2019-08-25 13:42:58 t 1 2 88788 288 0.00 2019-08-25 13:45:13 2019-08-25 13:46:20 t 1 2 88795 306 0.00 2019-08-25 13:58:47 2019-08-25 13:59:49 t 1 2 88796 306 0.00 2019-08-25 14:05:40 2019-08-25 14:06:41 t 1 2 88800 212 0.00 2019-08-25 14:10:11 2019-08-25 14:10:37 t 1 2 88805 220 0.00 2019-08-25 14:10:24 2019-08-25 14:15:35 t 1 1 88812 288 0.00 2019-08-25 14:43:45 2019-08-25 14:44:48 t 1 2 88824 306 0.00 2019-08-25 15:04:48 2019-08-25 15:05:52 t 1 2 88825 306 0.00 2019-08-25 15:15:43 2019-08-25 15:16:48 t 1 2 88828 327 0.00 2019-08-25 14:49:32 2019-08-25 15:25:41 t 1 2 88530 220 0.00 2019-08-24 21:59:36 2019-08-24 22:00:11 t 1 1 88531 220 0.00 2019-08-24 22:00:11 2019-08-24 22:00:46 t 1 1 88533 349 0.00 2019-08-24 22:01:58 2019-08-24 22:03:01 t 1 2 88536 320 0.00 2019-08-24 21:56:58 2019-08-24 22:07:03 t 1 2 88537 320 0.00 2019-08-24 22:04:49 2019-08-24 22:14:54 t 1 2 88540 346 0.00 2019-08-24 22:22:49 2019-08-24 22:22:54 t 1 2 88542 212 0.00 2019-08-24 22:23:27 2019-08-24 22:27:09 t 1 2 88543 379 0.00 2019-08-24 21:00:23 2019-08-24 22:31:35 t 1 2 88545 306 0.00 2019-08-24 22:39:58 2019-08-24 22:41:01 t 1 2 88547 320 0.00 2019-08-24 22:23:16 2019-08-24 22:43:22 t 1 2 88551 355 0.00 2019-08-24 22:47:45 2019-08-24 22:50:45 t 1 2 88553 324 0.00 2019-08-24 22:47:05 2019-08-24 22:52:34 t 1 2 88556 220 0.00 2019-08-24 22:00:20 2019-08-24 22:57:11 t 1 2 88563 212 0.00 2019-08-24 23:12:43 2019-08-24 23:13:15 t 1 2 88564 212 0.00 2019-08-24 23:33:42 2019-08-24 23:34:09 t 1 2 88567 363 0.00 2019-08-24 22:19:21 2019-08-24 23:49:26 t 1 2 88570 220 0.00 2019-08-24 23:56:52 2019-08-25 00:07:46 t 1 1 88574 393 0.00 2019-08-24 23:08:12 2019-08-25 00:33:18 t 1 2 88576 395 0.00 2019-08-24 23:52:46 2019-08-25 00:41:15 t 1 2 88583 346 0.00 2019-08-25 00:49:38 2019-08-25 01:29:44 t 1 2 88587 296 0.00 2019-08-25 02:22:10 2019-08-25 02:29:33 t 1 2 88588 346 0.00 2019-08-25 01:55:01 2019-08-25 02:35:07 t 1 2 88605 220 0.00 2019-08-25 07:57:54 2019-08-25 07:58:28 t 1 1 88606 220 0.00 2019-08-25 07:58:28 2019-08-25 07:59:08 t 1 1 88617 220 0.00 2019-08-25 08:12:03 2019-08-25 08:12:35 t 1 1 88621 220 0.00 2019-08-25 08:14:11 2019-08-25 08:14:43 t 1 1 88635 220 0.00 2019-08-25 08:22:21 2019-08-25 08:26:04 t 1 1 88637 220 0.00 2019-08-25 08:26:37 2019-08-25 08:27:12 t 1 1 88639 220 0.00 2019-08-25 08:27:11 2019-08-25 08:27:45 t 1 1 88643 220 0.00 2019-08-25 08:31:31 2019-08-25 08:32:05 t 1 1 88647 220 0.00 2019-08-25 08:34:55 2019-08-25 08:35:30 t 1 1 88655 220 0.00 2019-08-25 08:39:47 2019-08-25 08:42:53 t 1 1 88658 220 0.00 2019-08-25 08:44:08 2019-08-25 08:44:43 t 1 1 88660 220 0.00 2019-08-25 08:45:15 2019-08-25 08:49:00 t 1 1 88667 220 0.00 2019-08-25 08:55:33 2019-08-25 08:56:06 t 1 1 88677 306 0.00 2019-08-25 09:08:20 2019-08-25 09:09:22 t 1 2 88684 306 0.00 2019-08-25 09:18:58 2019-08-25 09:20:03 t 1 2 88697 331 0.00 2019-08-25 09:42:33 2019-08-25 09:43:41 t 1 2 88707 220 0.00 2019-08-25 10:00:58 2019-08-25 10:01:32 t 1 1 88710 220 0.00 2019-08-25 10:02:39 2019-08-25 10:03:14 t 1 1 88711 220 0.00 2019-08-25 10:03:14 2019-08-25 10:03:48 t 1 1 88713 220 0.00 2019-08-25 10:04:23 2019-08-25 10:07:31 t 1 1 88718 220 0.00 2019-08-25 10:11:42 2019-08-25 10:12:19 t 1 1 88722 220 0.00 2019-08-25 10:13:24 2019-08-25 10:16:48 t 1 1 88728 306 0.00 2019-08-25 10:21:58 2019-08-25 10:23:03 t 1 2 88733 220 0.00 2019-08-25 10:24:45 2019-08-25 10:25:17 t 1 1 88738 220 0.00 2019-08-25 10:32:10 2019-08-25 10:32:43 t 1 1 88739 324 0.00 2019-08-25 10:15:35 2019-08-25 10:33:02 t 1 2 88742 220 0.00 2019-08-25 10:32:42 2019-08-25 10:36:38 t 1 1 88743 220 0.00 2019-08-25 10:36:37 2019-08-25 10:39:17 t 1 1 88749 306 0.00 2019-08-25 10:59:04 2019-08-25 11:00:05 t 1 2 88752 306 0.00 2019-08-25 11:10:38 2019-08-25 11:11:40 t 1 2 88753 212 0.00 2019-08-25 11:12:48 2019-08-25 11:13:15 t 1 2 88755 220 0.00 2019-08-25 10:00:35 2019-08-25 11:18:28 t 1 1 88760 220 0.00 2019-08-25 11:36:31 2019-08-25 11:50:39 t 1 2 88761 296 0.00 2019-08-25 11:56:20 2019-08-25 11:56:52 t 1 2 88763 220 0.00 2019-08-25 11:56:22 2019-08-25 11:59:27 t 1 2 88772 320 0.00 2019-08-25 12:29:37 2019-08-25 12:39:42 t 1 2 88775 220 0.00 2019-08-25 12:25:58 2019-08-25 12:55:27 t 1 1 88777 288 0.00 2019-08-25 13:04:21 2019-08-25 13:05:27 t 1 2 88778 346 0.00 2019-08-25 12:09:00 2019-08-25 13:14:05 t 1 2 88782 311 0.00 2019-08-25 09:25:31 2019-08-25 13:15:36 t 1 2 88790 247 0.00 2019-08-25 13:48:32 2019-08-25 13:50:34 t 1 2 88793 306 0.00 2019-08-25 13:54:38 2019-08-25 13:55:38 t 1 2 88794 320 0.00 2019-08-25 13:49:33 2019-08-25 13:59:38 t 1 2 88798 324 0.00 2019-08-25 14:07:47 2019-08-25 14:08:54 t 1 2 88802 355 0.00 2019-08-25 13:21:44 2019-08-25 14:13:21 t 1 2 88804 288 0.00 2019-08-25 14:14:22 2019-08-25 14:15:25 t 1 2 88807 288 0.00 2019-08-25 14:17:18 2019-08-25 14:18:24 t 1 2 88813 220 0.00 2019-08-25 14:16:09 2019-08-25 14:48:35 t 1 1 88815 296 0.00 2019-08-25 14:41:56 2019-08-25 14:49:22 t 1 2 88820 306 0.00 2019-08-25 14:53:56 2019-08-25 14:55:02 t 1 2 88821 288 0.00 2019-08-25 14:57:46 2019-08-25 14:58:53 t 1 2 88823 320 0.00 2019-08-25 14:55:38 2019-08-25 15:05:43 t 1 2 88832 361 0.00 2019-08-25 15:41:36 2019-08-25 15:57:24 t 1 2 88838 320 0.00 2019-08-25 16:28:04 2019-08-25 16:38:10 t 1 2 88842 220 0.00 2019-08-25 15:10:15 2019-08-25 17:05:49 t 1 2 88850 357 0.00 2019-08-25 18:07:04 2019-08-25 18:08:07 t 1 2 88855 357 0.00 2019-08-25 18:21:45 2019-08-25 18:22:49 t 1 2 88859 357 0.00 2019-08-25 18:27:48 2019-08-25 18:28:53 t 1 2 88864 247 0.00 2019-08-25 18:35:19 2019-08-25 18:35:53 t 1 2 88865 357 0.00 2019-08-25 18:36:03 2019-08-25 18:36:04 t 1 2 88872 306 0.00 2019-08-25 18:51:51 2019-08-25 18:52:55 t 1 2 88873 306 0.00 2019-08-25 18:53:15 2019-08-25 18:54:17 t 1 2 88876 306 0.00 2019-08-25 18:56:05 2019-08-25 18:57:08 t 1 2 88879 357 0.00 2019-08-25 18:59:16 2019-08-25 19:00:20 t 1 2 88889 357 0.00 2019-08-25 19:09:04 2019-08-25 19:10:05 t 1 2 88891 357 0.00 2019-08-25 19:10:50 2019-08-25 19:11:54 t 1 2 88893 320 0.00 2019-08-25 19:11:15 2019-08-25 19:21:20 t 1 2 88894 363 0.00 2019-08-25 19:24:03 2019-08-25 19:24:03 f 1 2 88897 294 0.00 2019-08-25 18:26:02 2019-08-25 19:26:26 t 1 2 88903 306 0.00 2019-08-25 19:46:27 2019-08-25 19:47:31 t 1 2 88912 296 0.00 2019-08-25 20:27:15 2019-08-25 20:31:39 t 1 2 88913 355 0.00 2019-08-25 20:30:52 2019-08-25 20:40:57 t 1 2 88921 333 0.00 2019-08-25 21:07:35 2019-08-25 21:19:44 t 1 2 88925 220 0.00 2019-08-25 21:20:42 2019-08-25 21:21:17 t 1 1 88927 220 0.00 2019-08-25 21:21:48 2019-08-25 21:22:23 t 1 1 88929 220 0.00 2019-08-25 21:22:23 2019-08-25 21:22:58 t 1 1 88931 355 0.00 2019-08-25 21:26:37 2019-08-25 21:27:40 t 1 2 88932 220 0.00 2019-08-25 21:23:31 2019-08-25 21:31:01 t 1 1 88938 220 0.00 2019-08-25 21:35:00 2019-08-25 21:35:33 t 1 1 88940 306 0.00 2019-08-25 21:38:22 2019-08-25 21:39:27 t 1 2 88944 220 0.00 2019-08-25 21:48:54 2019-08-25 21:49:30 t 1 1 88946 220 0.00 2019-08-25 21:49:29 2019-08-25 21:50:05 t 1 1 88948 220 0.00 2019-08-25 21:50:39 2019-08-25 21:51:15 t 1 1 88951 395 0.00 2019-08-25 21:17:58 2019-08-25 21:52:04 t 1 2 88953 220 0.00 2019-08-25 21:52:30 2019-08-25 21:53:05 t 1 1 88659 220 0.00 2019-08-25 08:44:43 2019-08-25 08:45:16 t 1 1 88661 220 0.00 2019-08-25 08:49:00 2019-08-25 08:49:34 t 1 1 88668 220 0.00 2019-08-25 08:56:06 2019-08-25 08:57:18 t 1 1 88670 324 0.00 2019-08-25 08:57:13 2019-08-25 08:58:07 t 1 2 88671 220 0.00 2019-08-25 08:57:54 2019-08-25 08:59:01 t 1 1 88679 395 0.00 2019-08-25 09:12:28 2019-08-25 09:13:33 t 1 2 88681 395 0.00 2019-08-25 09:15:01 2019-08-25 09:16:05 t 1 2 88689 306 0.00 2019-08-25 09:26:56 2019-08-25 09:28:01 t 1 2 88691 306 0.00 2019-08-25 09:30:56 2019-08-25 09:32:04 t 1 2 88693 324 0.00 2019-08-25 09:33:52 2019-08-25 09:34:40 t 1 2 88696 288 0.00 2019-08-25 09:41:16 2019-08-25 09:42:21 t 1 2 88701 306 0.00 2019-08-25 09:56:35 2019-08-25 09:57:37 t 1 2 88705 220 0.00 2019-08-25 09:59:12 2019-08-25 09:59:45 t 1 1 88706 220 0.00 2019-08-25 09:59:45 2019-08-25 10:00:58 t 1 1 88709 220 0.00 2019-08-25 10:02:08 2019-08-25 10:02:39 t 1 1 88712 220 0.00 2019-08-25 10:03:47 2019-08-25 10:04:24 t 1 1 88716 212 0.00 2019-08-25 10:09:54 2019-08-25 10:10:19 t 1 2 88717 220 0.00 2019-08-25 10:08:07 2019-08-25 10:11:42 t 1 1 88723 220 0.00 2019-08-25 10:16:48 2019-08-25 10:17:35 t 1 1 88732 220 0.00 2019-08-25 10:24:10 2019-08-25 10:24:45 t 1 1 88736 212 0.00 2019-08-25 10:29:50 2019-08-25 10:30:13 t 1 2 88737 220 0.00 2019-08-25 10:29:34 2019-08-25 10:32:10 t 1 1 88747 306 0.00 2019-08-25 10:54:55 2019-08-25 10:56:00 t 1 2 88748 322 0.00 2019-08-25 10:56:14 2019-08-25 10:56:18 t 1 2 88751 324 0.00 2019-08-25 10:42:25 2019-08-25 11:11:06 t 1 2 88768 220 0.00 2019-08-25 11:37:42 2019-08-25 12:24:40 t 1 1 88769 355 0.00 2019-08-25 12:25:08 2019-08-25 12:29:18 t 1 2 88780 346 0.00 2019-08-25 13:05:07 2019-08-25 13:15:27 t 1 2 88785 212 0.00 2019-08-25 13:27:18 2019-08-25 13:28:10 t 1 2 88791 288 0.00 2019-08-25 13:50:05 2019-08-25 13:51:09 t 1 2 88792 288 0.00 2019-08-25 13:53:20 2019-08-25 13:54:29 t 1 2 88799 288 0.00 2019-08-25 14:08:44 2019-08-25 14:09:47 t 1 2 88801 288 0.00 2019-08-25 14:10:14 2019-08-25 14:11:19 t 1 2 88806 346 0.00 2019-08-25 14:07:19 2019-08-25 14:17:24 t 1 2 88810 306 0.00 2019-08-25 14:38:01 2019-08-25 14:39:02 t 1 2 88816 306 0.00 2019-08-25 14:51:06 2019-08-25 14:52:10 t 1 2 88818 306 0.00 2019-08-25 14:52:37 2019-08-25 14:53:41 t 1 2 88819 220 0.00 2019-08-25 14:18:45 2019-08-25 14:54:08 t 1 2 88822 355 0.00 2019-08-25 14:59:18 2019-08-25 15:01:04 t 1 2 88826 306 0.00 2019-08-25 15:17:23 2019-08-25 15:18:27 t 1 2 88833 392 0.00 2019-08-25 15:49:31 2019-08-25 16:04:01 t 1 2 88835 306 0.00 2019-08-25 16:13:47 2019-08-25 16:14:52 t 1 2 88837 247 0.00 2019-08-25 16:28:53 2019-08-25 16:30:25 t 1 2 88841 320 0.00 2019-08-25 16:47:12 2019-08-25 17:02:17 t 1 2 88846 381 0.00 2019-08-25 16:50:08 2019-08-25 17:25:14 t 1 2 88849 357 0.00 2019-08-25 18:05:25 2019-08-25 18:06:29 t 1 2 88862 392 0.00 2019-08-25 18:20:04 2019-08-25 18:35:09 t 1 2 88863 357 0.00 2019-08-25 18:34:23 2019-08-25 18:35:27 t 1 2 88868 361 0.00 2019-08-25 18:33:49 2019-08-25 18:43:54 t 1 2 88869 306 0.00 2019-08-25 18:43:22 2019-08-25 18:44:28 t 1 2 88871 306 0.00 2019-08-25 18:50:34 2019-08-25 18:51:36 t 1 2 88880 306 0.00 2019-08-25 18:59:50 2019-08-25 19:00:52 t 1 2 88883 357 0.00 2019-08-25 19:02:40 2019-08-25 19:03:44 t 1 2 88885 357 0.00 2019-08-25 19:05:19 2019-08-25 19:06:23 t 1 2 88895 357 0.00 2019-08-25 19:25:06 2019-08-25 19:26:11 t 1 2 88898 379 0.00 2019-08-25 18:31:32 2019-08-25 19:26:37 t 1 2 88902 361 0.00 2019-08-25 18:34:45 2019-08-25 19:42:29 t 1 2 88904 306 0.00 2019-08-25 19:52:14 2019-08-25 19:53:17 t 1 2 88907 320 0.00 2019-08-25 19:58:14 2019-08-25 20:08:19 t 1 2 88915 324 0.00 2019-08-25 20:50:31 2019-08-25 20:51:56 t 1 2 88918 357 0.00 2019-08-25 20:07:40 2019-08-25 21:07:45 t 1 2 88920 372 0.00 2019-08-25 21:04:28 2019-08-25 21:15:57 t 1 2 88922 220 0.00 2019-08-25 20:27:59 2019-08-25 21:20:08 t 1 1 88924 220 0.00 2019-08-25 21:20:08 2019-08-25 21:20:42 t 1 1 88926 220 0.00 2019-08-25 21:21:17 2019-08-25 21:21:49 t 1 1 88928 343 0.00 2019-08-25 21:21:35 2019-08-25 21:22:42 t 1 2 88930 220 0.00 2019-08-25 21:22:58 2019-08-25 21:23:31 t 1 1 88937 306 0.00 2019-08-25 21:34:11 2019-08-25 21:35:17 t 1 2 88939 306 0.00 2019-08-25 21:37:00 2019-08-25 21:38:03 t 1 2 88945 355 0.00 2019-08-25 21:48:43 2019-08-25 21:49:48 t 1 2 88947 220 0.00 2019-08-25 21:50:05 2019-08-25 21:50:40 t 1 1 88952 220 0.00 2019-08-25 21:51:50 2019-08-25 21:52:30 t 1 1 88955 220 0.00 2019-08-25 21:53:39 2019-08-25 21:54:11 t 1 1 88958 220 0.00 2019-08-25 21:55:25 2019-08-25 21:56:00 t 1 1 88959 220 0.00 2019-08-25 21:55:59 2019-08-25 21:56:35 t 1 1 88963 220 0.00 2019-08-25 21:57:15 2019-08-25 21:57:50 t 1 1 88968 220 0.00 2019-08-25 21:59:33 2019-08-25 22:00:08 t 1 1 88970 220 0.00 2019-08-25 22:00:42 2019-08-25 22:01:16 t 1 1 88975 220 0.00 2019-08-25 22:01:57 2019-08-25 22:02:31 t 1 1 88977 220 0.00 2019-08-25 22:03:44 2019-08-25 22:04:18 t 1 1 88980 355 0.00 2019-08-25 22:05:37 2019-08-25 22:06:45 t 1 2 88982 392 0.00 2019-08-25 21:53:01 2019-08-25 22:08:06 t 1 2 88983 220 0.00 2019-08-25 22:08:04 2019-08-25 22:08:42 t 1 1 88986 220 0.00 2019-08-25 22:09:59 2019-08-25 22:10:32 t 1 1 88989 220 0.00 2019-08-25 22:11:49 2019-08-25 22:12:25 t 1 1 88992 220 0.00 2019-08-25 22:13:38 2019-08-25 22:14:26 t 1 1 88994 220 0.00 2019-08-25 22:14:25 2019-08-25 22:15:09 t 1 1 88996 220 0.00 2019-08-25 22:15:07 2019-08-25 22:15:43 t 1 1 88999 220 0.00 2019-08-25 22:17:01 2019-08-25 22:17:40 t 1 1 89007 220 0.00 2019-08-25 22:21:39 2019-08-25 22:22:14 t 1 1 89011 220 0.00 2019-08-25 22:24:04 2019-08-25 22:24:38 t 1 1 89012 220 0.00 2019-08-25 22:24:37 2019-08-25 22:25:45 t 1 1 89014 220 0.00 2019-08-25 22:26:20 2019-08-25 22:27:00 t 1 1 89020 220 0.00 2019-08-25 22:28:47 2019-08-25 22:29:28 t 1 1 89024 220 0.00 2019-08-25 22:30:03 2019-08-25 22:30:39 t 1 1 89026 220 0.00 2019-08-25 22:31:14 2019-08-25 22:31:54 t 1 1 89031 220 0.00 2019-08-25 22:33:41 2019-08-25 22:34:16 t 1 1 89034 220 0.00 2019-08-25 22:35:23 2019-08-25 22:35:56 t 1 1 89037 220 0.00 2019-08-25 22:37:05 2019-08-25 22:37:38 t 1 1 89043 220 0.00 2019-08-25 22:42:07 2019-08-25 22:42:46 t 1 1 89045 220 0.00 2019-08-25 22:43:20 2019-08-25 22:45:38 t 1 1 89047 220 0.00 2019-08-25 22:46:12 2019-08-25 22:46:57 t 1 1 89054 220 0.00 2019-08-25 22:49:20 2019-08-25 22:49:41 t 1 1 89056 220 0.00 2019-08-25 22:49:54 2019-08-25 22:50:30 t 1 1 89061 220 0.00 2019-08-25 22:51:50 2019-08-25 22:52:16 t 1 1 89065 320 0.00 2019-08-25 22:40:15 2019-08-25 22:53:36 t 1 2 89066 220 0.00 2019-08-25 22:53:25 2019-08-25 22:53:45 t 1 1 88789 288 0.00 2019-08-25 13:47:27 2019-08-25 13:48:31 t 1 2 88797 306 0.00 2019-08-25 14:07:46 2019-08-25 14:08:50 t 1 2 88803 288 0.00 2019-08-25 14:12:42 2019-08-25 14:13:47 t 1 2 88808 306 0.00 2019-08-25 14:22:05 2019-08-25 14:23:11 t 1 2 88809 288 0.00 2019-08-25 14:24:40 2019-08-25 14:25:46 t 1 2 88811 288 0.00 2019-08-25 14:38:07 2019-08-25 14:39:15 t 1 2 88814 346 0.00 2019-08-25 13:58:45 2019-08-25 14:48:50 t 1 2 88817 392 0.00 2019-08-25 14:47:51 2019-08-25 14:52:20 t 1 2 88827 212 0.00 2019-08-25 15:24:26 2019-08-25 15:24:48 t 1 2 88829 306 0.00 2019-08-25 15:33:07 2019-08-25 15:34:13 t 1 2 88831 288 0.00 2019-08-25 15:45:11 2019-08-25 15:46:14 t 1 2 88834 306 0.00 2019-08-25 16:05:05 2019-08-25 16:06:05 t 1 2 88836 306 0.00 2019-08-25 16:15:27 2019-08-25 16:16:30 t 1 2 88839 294 0.00 2019-08-25 15:45:02 2019-08-25 16:39:25 t 1 2 88840 357 0.00 2019-08-25 16:26:13 2019-08-25 16:46:18 t 1 2 88843 393 0.00 2019-08-25 16:53:27 2019-08-25 17:08:32 t 1 2 88844 355 0.00 2019-08-25 17:19:39 2019-08-25 17:20:43 t 1 2 88852 357 0.00 2019-08-25 18:09:51 2019-08-25 18:10:59 t 1 2 88854 306 0.00 2019-08-25 18:20:37 2019-08-25 18:21:42 t 1 2 88856 346 0.00 2019-08-25 17:59:28 2019-08-25 18:24:33 t 1 2 88858 247 0.00 2019-08-25 18:27:24 2019-08-25 18:28:41 t 1 2 88861 288 0.00 2019-08-25 18:29:41 2019-08-25 18:30:46 t 1 2 88866 306 0.00 2019-08-25 18:40:49 2019-08-25 18:41:52 t 1 2 88875 357 0.00 2019-08-25 18:54:00 2019-08-25 18:55:02 t 1 2 88878 357 0.00 2019-08-25 18:56:55 2019-08-25 18:58:00 t 1 2 88881 357 0.00 2019-08-25 19:00:57 2019-08-25 19:02:01 t 1 2 88882 306 0.00 2019-08-25 19:02:07 2019-08-25 19:03:11 t 1 2 88884 355 0.00 2019-08-25 17:58:58 2019-08-25 19:04:03 t 1 2 88886 357 0.00 2019-08-25 19:07:04 2019-08-25 19:07:12 t 1 2 88887 346 0.00 2019-08-25 18:43:18 2019-08-25 19:07:31 t 1 2 88896 288 0.00 2019-08-25 19:25:11 2019-08-25 19:26:15 t 1 2 88899 357 0.00 2019-08-25 19:26:43 2019-08-25 19:27:49 t 1 2 88900 355 0.00 2019-08-25 19:19:15 2019-08-25 19:30:24 t 1 2 88905 357 0.00 2019-08-25 19:55:56 2019-08-25 19:57:01 t 1 2 88910 306 0.00 2019-08-25 20:26:52 2019-08-25 20:27:56 t 1 2 88911 372 0.00 2019-08-25 20:14:50 2019-08-25 20:28:18 t 1 2 88914 320 0.00 2019-08-25 20:23:01 2019-08-25 20:43:06 t 1 2 88917 355 0.00 2019-08-25 21:04:04 2019-08-25 21:05:09 t 1 2 88919 392 0.00 2019-08-25 21:03:13 2019-08-25 21:11:26 t 1 2 88923 346 0.00 2019-08-25 20:55:07 2019-08-25 21:20:12 t 1 2 88935 355 0.00 2019-08-25 21:31:38 2019-08-25 21:32:42 t 1 2 88943 220 0.00 2019-08-25 21:43:49 2019-08-25 21:43:50 t 1 1 88950 220 0.00 2019-08-25 21:51:15 2019-08-25 21:51:51 t 1 1 88957 220 0.00 2019-08-25 21:54:49 2019-08-25 21:55:25 t 1 1 88962 220 0.00 2019-08-25 21:56:34 2019-08-25 21:57:15 t 1 1 88965 220 0.00 2019-08-25 21:58:23 2019-08-25 21:58:57 t 1 1 88967 355 0.00 2019-08-25 21:58:31 2019-08-25 21:59:37 t 1 2 88971 372 0.00 2019-08-25 21:51:19 2019-08-25 22:01:24 t 1 2 88973 220 0.00 2019-08-25 22:01:16 2019-08-25 22:01:57 t 1 1 88976 220 0.00 2019-08-25 22:02:31 2019-08-25 22:03:44 t 1 1 88978 220 0.00 2019-08-25 22:04:18 2019-08-25 22:04:26 t 1 1 88993 247 0.00 2019-08-25 22:13:49 2019-08-25 22:14:31 t 1 2 88995 363 0.00 2019-08-25 19:25:09 2019-08-25 22:15:14 t 1 2 88998 220 0.00 2019-08-25 22:16:26 2019-08-25 22:17:02 t 1 1 89002 220 0.00 2019-08-25 22:19:10 2019-08-25 22:19:50 t 1 1 89009 220 0.00 2019-08-25 22:22:49 2019-08-25 22:23:24 t 1 1 89010 220 0.00 2019-08-25 22:23:24 2019-08-25 22:24:04 t 1 1 89015 220 0.00 2019-08-25 22:25:36 2019-08-25 22:27:30 t 1 1 89017 306 0.00 2019-08-25 22:26:54 2019-08-25 22:27:58 t 1 2 89019 220 0.00 2019-08-25 22:28:10 2019-08-25 22:28:48 t 1 1 89023 220 0.00 2019-08-25 22:29:27 2019-08-25 22:30:03 t 1 1 89025 220 0.00 2019-08-25 22:30:39 2019-08-25 22:31:15 t 1 1 89027 331 0.00 2019-08-25 22:31:03 2019-08-25 22:32:05 t 1 2 89033 220 0.00 2019-08-25 22:34:49 2019-08-25 22:35:23 t 1 1 89036 220 0.00 2019-08-25 22:36:31 2019-08-25 22:37:05 t 1 1 89042 220 0.00 2019-08-25 22:41:34 2019-08-25 22:42:08 t 1 1 89048 247 0.00 2019-08-25 22:46:41 2019-08-25 22:47:02 t 1 2 89053 220 0.00 2019-08-25 22:48:39 2019-08-25 22:49:21 t 1 1 89058 220 0.00 2019-08-25 22:50:42 2019-08-25 22:51:05 t 1 1 89063 220 0.00 2019-08-25 22:52:25 2019-08-25 22:52:51 t 1 1 89067 220 0.00 2019-08-25 22:53:44 2019-08-25 22:53:57 t 1 1 89069 220 0.00 2019-08-25 22:54:20 2019-08-25 22:54:34 t 1 1 89071 355 0.00 2019-08-25 22:53:51 2019-08-25 22:54:56 t 1 2 89075 355 0.00 2019-08-25 22:55:17 2019-08-25 22:56:25 t 1 2 89079 220 0.00 2019-08-25 22:57:36 2019-08-25 22:58:11 t 1 1 89080 220 0.00 2019-08-25 22:58:10 2019-08-25 22:58:49 t 1 1 89083 220 0.00 2019-08-25 23:00:11 2019-08-25 23:00:47 t 1 1 89086 220 0.00 2019-08-25 23:02:04 2019-08-25 23:02:42 t 1 1 89089 220 0.00 2019-08-25 23:03:51 2019-08-25 23:04:27 t 1 1 89093 355 0.00 2019-08-25 23:05:52 2019-08-25 23:06:28 t 1 2 89096 220 0.00 2019-08-25 23:07:33 2019-08-25 23:08:09 t 1 1 89097 220 0.00 2019-08-25 23:08:09 2019-08-25 23:09:14 t 1 1 89100 220 0.00 2019-08-25 23:10:27 2019-08-25 23:11:04 t 1 1 89106 346 0.00 2019-08-25 23:34:03 2019-08-25 23:34:13 t 1 2 89110 324 0.00 2019-08-25 23:37:52 2019-08-25 23:38:08 t 1 2 89112 346 0.00 2019-08-25 23:38:21 2019-08-25 23:48:26 t 1 2 89117 363 0.00 2019-08-25 22:09:59 2019-08-26 00:05:04 t 1 2 89118 327 0.00 2019-08-26 00:04:23 2019-08-26 00:08:11 t 1 2 89119 320 0.00 2019-08-26 00:08:41 2019-08-26 00:08:42 t 1 2 89122 355 0.00 2019-08-26 00:14:27 2019-08-26 00:15:32 t 1 2 89135 395 0.00 2019-08-26 01:17:20 2019-08-26 01:21:06 t 1 2 89137 346 0.00 2019-08-26 00:54:16 2019-08-26 01:44:21 t 1 2 89139 320 0.00 2019-08-26 01:43:06 2019-08-26 01:53:12 t 1 2 89143 322 0.00 2019-08-26 00:55:02 2019-08-26 02:08:09 t 1 2 89147 372 0.00 2019-08-26 02:39:39 2019-08-26 02:39:39 f 1 2 89149 372 0.00 2019-08-26 02:40:07 2019-08-26 02:40:07 f 1 2 89151 372 0.00 2019-08-26 02:40:18 2019-08-26 02:40:18 f 1 2 89159 372 0.00 2019-08-26 02:50:45 2019-08-26 02:51:08 t 1 2 89161 343 0.00 2019-08-26 03:03:15 2019-08-26 03:03:22 t 1 2 89162 343 0.00 2019-08-26 03:03:26 2019-08-26 03:05:19 t 1 2 89163 372 0.00 2019-08-26 03:10:04 2019-08-26 03:10:04 f 1 2 89168 372 0.00 2019-08-26 03:11:41 2019-08-26 03:11:41 f 1 2 89170 372 0.00 2019-08-26 03:12:15 2019-08-26 03:12:15 f 1 2 89171 372 0.00 2019-08-26 03:03:53 2019-08-26 03:13:59 t 1 2 89175 395 0.00 2019-08-26 03:48:51 2019-08-26 04:13:58 t 1 2 89178 212 0.00 2019-08-26 07:19:18 2019-08-26 07:20:21 t 1 2 89181 288 0.00 2019-08-26 07:37:32 2019-08-26 07:38:39 t 1 2 88830 292 0.00 2019-08-25 15:34:51 2019-08-25 15:35:56 t 1 2 88845 361 0.00 2019-08-25 16:04:32 2019-08-25 17:22:04 t 1 2 88847 296 0.00 2019-08-25 16:41:01 2019-08-25 17:30:24 t 1 2 88848 212 0.00 2019-08-25 17:40:14 2019-08-25 17:40:34 t 1 2 88851 357 0.00 2019-08-25 18:09:18 2019-08-25 18:09:19 t 1 2 88853 306 0.00 2019-08-25 18:18:20 2019-08-25 18:19:23 t 1 2 88857 357 0.00 2019-08-25 18:26:14 2019-08-25 18:27:17 t 1 2 88860 381 0.00 2019-08-25 18:08:59 2019-08-25 18:29:04 t 1 2 88867 346 0.00 2019-08-25 18:32:37 2019-08-25 18:42:44 t 1 2 88870 306 0.00 2019-08-25 18:49:07 2019-08-25 18:50:12 t 1 2 88874 320 0.00 2019-08-25 18:44:26 2019-08-25 18:54:31 t 1 2 88877 296 0.00 2019-08-25 18:53:49 2019-08-25 18:57:10 t 1 2 88888 357 0.00 2019-08-25 19:07:31 2019-08-25 19:08:36 t 1 2 88890 320 0.00 2019-08-25 19:00:14 2019-08-25 19:10:19 t 1 2 88892 320 0.00 2019-08-25 19:04:47 2019-08-25 19:14:52 t 1 2 88901 357 0.00 2019-08-25 19:34:30 2019-08-25 19:35:35 t 1 2 88906 320 0.00 2019-08-25 19:49:49 2019-08-25 19:59:54 t 1 2 88908 355 0.00 2019-08-25 20:00:58 2019-08-25 20:13:21 t 1 2 88909 320 0.00 2019-08-25 20:00:02 2019-08-25 20:25:08 t 1 2 88916 372 0.00 2019-08-25 21:03:07 2019-08-25 21:03:15 t 1 2 88933 355 0.00 2019-08-25 21:30:17 2019-08-25 21:31:20 t 1 2 88934 220 0.00 2019-08-25 21:32:29 2019-08-25 21:32:36 t 1 1 88936 346 0.00 2019-08-25 21:19:13 2019-08-25 21:34:18 t 1 2 88941 220 0.00 2019-08-25 21:35:33 2019-08-25 21:42:38 t 1 1 88942 220 0.00 2019-08-25 21:42:56 2019-08-25 21:43:05 t 1 1 88949 355 0.00 2019-08-25 21:50:13 2019-08-25 21:51:17 t 1 2 88956 220 0.00 2019-08-25 21:54:11 2019-08-25 21:54:50 t 1 1 88961 292 0.00 2019-08-25 21:56:05 2019-08-25 21:57:11 t 1 2 88966 220 0.00 2019-08-25 21:58:57 2019-08-25 21:59:33 t 1 1 88981 220 0.00 2019-08-25 22:04:52 2019-08-25 22:08:04 t 1 1 88987 220 0.00 2019-08-25 22:10:31 2019-08-25 22:11:14 t 1 1 88990 220 0.00 2019-08-25 22:12:25 2019-08-25 22:13:01 t 1 1 88991 220 0.00 2019-08-25 22:13:00 2019-08-25 22:13:38 t 1 1 89003 220 0.00 2019-08-25 22:19:50 2019-08-25 22:20:29 t 1 1 89005 320 0.00 2019-08-25 21:36:03 2019-08-25 22:21:08 t 1 2 89008 220 0.00 2019-08-25 22:22:14 2019-08-25 22:22:50 t 1 1 89016 220 0.00 2019-08-25 22:26:59 2019-08-25 22:27:33 t 1 1 89018 220 0.00 2019-08-25 22:27:32 2019-08-25 22:28:11 t 1 1 89022 306 0.00 2019-08-25 22:28:45 2019-08-25 22:29:51 t 1 2 89028 220 0.00 2019-08-25 22:31:54 2019-08-25 22:32:28 t 1 1 89032 220 0.00 2019-08-25 22:34:15 2019-08-25 22:34:49 t 1 1 89040 220 0.00 2019-08-25 22:38:48 2019-08-25 22:39:20 t 1 1 89049 220 0.00 2019-08-25 22:46:56 2019-08-25 22:47:28 t 1 1 89052 294 0.00 2019-08-25 21:48:26 2019-08-25 22:48:49 t 1 2 89057 220 0.00 2019-08-25 22:50:30 2019-08-25 22:50:43 t 1 1 89059 220 0.00 2019-08-25 22:51:05 2019-08-25 22:51:18 t 1 1 89064 220 0.00 2019-08-25 22:52:51 2019-08-25 22:53:26 t 1 1 89068 220 0.00 2019-08-25 22:53:57 2019-08-25 22:54:20 t 1 1 89072 220 0.00 2019-08-25 22:54:53 2019-08-25 22:55:09 t 1 1 89074 220 0.00 2019-08-25 22:55:30 2019-08-25 22:55:44 t 1 1 89081 220 0.00 2019-08-25 22:58:48 2019-08-25 22:59:35 t 1 1 89084 220 0.00 2019-08-25 23:00:47 2019-08-25 23:01:29 t 1 1 89087 220 0.00 2019-08-25 23:02:42 2019-08-25 23:03:15 t 1 1 89088 220 0.00 2019-08-25 23:03:14 2019-08-25 23:03:51 t 1 1 89091 220 0.00 2019-08-25 23:05:04 2019-08-25 23:05:42 t 1 1 89103 220 0.00 2019-08-25 23:11:41 2019-08-25 23:18:42 t 1 1 89105 212 0.00 2019-08-25 23:25:34 2019-08-25 23:29:32 t 1 2 89108 346 0.00 2019-08-25 23:35:29 2019-08-25 23:35:39 t 1 2 89124 395 0.00 2019-08-26 00:17:49 2019-08-26 00:18:53 t 1 2 89125 220 0.00 2019-08-26 00:03:50 2019-08-26 00:19:18 t 1 1 89127 395 0.00 2019-08-26 00:21:01 2019-08-26 00:21:57 t 1 2 89128 363 0.00 2019-08-26 00:12:45 2019-08-26 00:27:51 t 1 2 89133 395 0.00 2019-08-26 00:33:06 2019-08-26 00:54:11 t 1 2 89134 392 0.00 2019-08-26 01:16:56 2019-08-26 01:20:03 t 1 2 89136 395 0.00 2019-08-26 01:27:34 2019-08-26 01:35:38 t 1 2 89140 320 0.00 2019-08-26 01:50:25 2019-08-26 02:00:30 t 1 2 89148 372 0.00 2019-08-26 02:39:50 2019-08-26 02:39:50 f 1 2 89150 372 0.00 2019-08-26 02:40:13 2019-08-26 02:40:13 f 1 2 89152 372 0.00 2019-08-26 02:40:35 2019-08-26 02:40:35 f 1 2 89169 372 0.00 2019-08-26 03:11:49 2019-08-26 03:11:49 f 1 2 89172 372 0.00 2019-08-26 02:45:04 2019-08-26 03:15:09 t 1 2 89176 324 0.00 2019-08-26 04:24:42 2019-08-26 04:27:42 t 1 2 89179 294 0.00 2019-08-26 06:43:24 2019-08-26 07:33:47 t 1 2 89183 220 0.00 2019-08-26 07:47:21 2019-08-26 07:47:56 t 1 1 89186 220 0.00 2019-08-26 07:49:07 2019-08-26 07:49:39 t 1 1 89189 220 0.00 2019-08-26 08:00:39 2019-08-26 08:01:16 t 1 1 89192 220 0.00 2019-08-26 08:02:20 2019-08-26 08:02:55 t 1 1 89199 306 0.00 2019-08-26 08:16:19 2019-08-26 08:17:22 t 1 2 89204 320 0.00 2019-08-26 08:36:58 2019-08-26 08:47:03 t 1 2 89219 306 0.00 2019-08-26 09:34:33 2019-08-26 09:35:33 t 1 2 89221 306 0.00 2019-08-26 09:38:26 2019-08-26 09:39:31 t 1 2 89225 220 0.00 2019-08-26 09:44:31 2019-08-26 09:45:09 t 1 1 89228 220 0.00 2019-08-26 09:46:19 2019-08-26 09:46:53 t 1 1 89233 220 0.00 2019-08-26 09:48:46 2019-08-26 09:49:21 t 1 1 89236 220 0.00 2019-08-26 09:50:33 2019-08-26 09:51:14 t 1 1 89241 220 0.00 2019-08-26 09:55:44 2019-08-26 09:56:19 t 1 1 89245 220 0.00 2019-08-26 09:58:37 2019-08-26 09:59:12 t 1 1 89254 220 0.00 2019-08-26 10:04:17 2019-08-26 10:04:53 t 1 1 89256 346 0.00 2019-08-26 09:25:55 2019-08-26 10:06:00 t 1 2 89258 220 0.00 2019-08-26 10:06:06 2019-08-26 10:06:46 t 1 1 89262 361 0.00 2019-08-26 10:06:28 2019-08-26 10:17:09 t 1 2 89269 392 0.00 2019-08-26 10:29:35 2019-08-26 10:46:02 t 1 2 89271 220 0.00 2019-08-26 10:24:51 2019-08-26 10:48:24 t 1 1 89273 346 0.00 2019-08-26 10:53:03 2019-08-26 10:53:42 t 1 2 89277 306 0.00 2019-08-26 11:04:33 2019-08-26 11:05:37 t 1 2 89279 346 0.00 2019-08-26 10:58:52 2019-08-26 11:23:58 t 1 2 89280 288 0.00 2019-08-26 11:23:24 2019-08-26 11:24:28 t 1 2 89292 346 0.00 2019-08-26 11:37:36 2019-08-26 11:37:51 t 1 2 89293 212 0.00 2019-08-26 11:37:00 2019-08-26 11:37:59 t 1 2 89296 220 0.00 2019-08-26 11:38:29 2019-08-26 11:39:27 t 1 1 89297 220 0.00 2019-08-26 11:39:26 2019-08-26 11:40:46 t 1 1 89302 339 0.00 2019-08-26 10:45:16 2019-08-26 11:45:40 t 1 2 89305 220 0.00 2019-08-26 11:47:20 2019-08-26 11:50:43 t 1 1 89307 346 0.00 2019-08-26 11:38:16 2019-08-26 11:52:01 t 1 2 89310 324 0.00 2019-08-26 11:11:28 2019-08-26 11:53:37 t 1 2 89312 220 0.00 2019-08-26 11:54:10 2019-08-26 11:55:07 t 1 1 89317 306 0.00 2019-08-26 11:56:50 2019-08-26 11:57:55 t 1 2 88954 220 0.00 2019-08-25 21:53:05 2019-08-25 21:53:39 t 1 1 88960 212 0.00 2019-08-25 21:56:02 2019-08-25 21:56:53 t 1 2 88964 220 0.00 2019-08-25 21:57:50 2019-08-25 21:58:23 t 1 1 88969 220 0.00 2019-08-25 22:00:07 2019-08-25 22:00:42 t 1 1 88972 355 0.00 2019-08-25 22:00:29 2019-08-25 22:01:33 t 1 2 88974 392 0.00 2019-08-25 22:00:05 2019-08-25 22:02:25 t 1 2 88979 220 0.00 2019-08-25 22:04:00 2019-08-25 22:04:28 t 1 1 88984 220 0.00 2019-08-25 22:08:41 2019-08-25 22:09:15 t 1 1 88985 220 0.00 2019-08-25 22:09:15 2019-08-25 22:10:00 t 1 1 88988 220 0.00 2019-08-25 22:11:13 2019-08-25 22:11:50 t 1 1 88997 220 0.00 2019-08-25 22:15:43 2019-08-25 22:16:26 t 1 1 89000 220 0.00 2019-08-25 22:17:40 2019-08-25 22:18:32 t 1 1 89001 220 0.00 2019-08-25 22:18:31 2019-08-25 22:19:11 t 1 1 89004 220 0.00 2019-08-25 22:20:28 2019-08-25 22:21:03 t 1 1 89006 220 0.00 2019-08-25 22:21:03 2019-08-25 22:21:39 t 1 1 89013 220 0.00 2019-08-25 22:25:44 2019-08-25 22:26:20 t 1 1 89021 372 0.00 2019-08-25 22:28:39 2019-08-25 22:29:45 t 1 2 89029 220 0.00 2019-08-25 22:32:27 2019-08-25 22:33:06 t 1 1 89030 220 0.00 2019-08-25 22:33:06 2019-08-25 22:33:41 t 1 1 89035 220 0.00 2019-08-25 22:35:56 2019-08-25 22:36:31 t 1 1 89038 220 0.00 2019-08-25 22:37:38 2019-08-25 22:38:12 t 1 1 89039 220 0.00 2019-08-25 22:38:12 2019-08-25 22:38:48 t 1 1 89041 220 0.00 2019-08-25 22:39:20 2019-08-25 22:41:34 t 1 1 89044 220 0.00 2019-08-25 22:42:46 2019-08-25 22:43:20 t 1 1 89046 220 0.00 2019-08-25 22:45:38 2019-08-25 22:46:12 t 1 1 89050 220 0.00 2019-08-25 22:47:28 2019-08-25 22:48:05 t 1 1 89051 220 0.00 2019-08-25 22:48:04 2019-08-25 22:48:39 t 1 1 89055 220 0.00 2019-08-25 22:49:40 2019-08-25 22:49:55 t 1 1 89060 220 0.00 2019-08-25 22:51:18 2019-08-25 22:51:51 t 1 1 89062 220 0.00 2019-08-25 22:52:14 2019-08-25 22:52:26 t 1 1 89076 220 0.00 2019-08-25 22:55:44 2019-08-25 22:56:25 t 1 1 89078 220 0.00 2019-08-25 22:56:58 2019-08-25 22:57:36 t 1 1 89082 220 0.00 2019-08-25 22:59:34 2019-08-25 23:00:11 t 1 1 89085 220 0.00 2019-08-25 23:01:29 2019-08-25 23:02:05 t 1 1 89095 220 0.00 2019-08-25 23:06:55 2019-08-25 23:07:33 t 1 1 89099 220 0.00 2019-08-25 23:09:48 2019-08-25 23:10:29 t 1 1 89104 212 0.00 2019-08-25 23:25:23 2019-08-25 23:25:25 t 1 2 89107 346 0.00 2019-08-25 23:34:49 2019-08-25 23:35:19 t 1 2 89111 346 0.00 2019-08-25 23:43:08 2019-08-25 23:43:15 t 1 2 89113 220 0.00 2019-08-25 22:29:03 2019-08-25 23:50:42 t 1 2 89115 392 0.00 2019-08-25 23:42:20 2019-08-25 23:56:54 t 1 2 89120 320 0.00 2019-08-25 22:56:52 2019-08-26 00:11:57 t 1 2 89121 355 0.00 2019-08-26 00:12:34 2019-08-26 00:13:36 t 1 2 89130 395 0.00 2019-08-26 00:28:33 2019-08-26 00:29:34 t 1 2 89132 320 0.00 2019-08-26 00:34:17 2019-08-26 00:44:22 t 1 2 89138 339 0.00 2019-08-26 00:44:06 2019-08-26 01:44:29 t 1 2 89142 375 0.00 2019-08-26 02:05:17 2019-08-26 02:06:22 t 1 2 89144 395 0.00 2019-08-26 01:52:27 2019-08-26 02:18:09 t 1 2 89146 372 0.00 2019-08-26 02:39:18 2019-08-26 02:39:18 f 1 2 89153 372 0.00 2019-08-26 02:41:12 2019-08-26 02:41:12 f 1 2 89154 372 0.00 2019-08-26 02:42:45 2019-08-26 02:42:45 f 1 2 89157 372 0.00 2019-08-26 02:29:55 2019-08-26 02:45:00 t 1 2 89158 372 0.00 2019-08-26 02:36:38 2019-08-26 02:46:43 t 1 2 89165 372 0.00 2019-08-26 03:11:07 2019-08-26 03:11:07 f 1 2 89167 372 0.00 2019-08-26 03:11:35 2019-08-26 03:11:35 f 1 2 89174 372 0.00 2019-08-26 03:23:21 2019-08-26 03:24:25 t 1 2 89177 292 0.00 2019-08-26 06:06:33 2019-08-26 06:06:36 t 1 2 89190 220 0.00 2019-08-26 08:01:16 2019-08-26 08:01:46 t 1 1 89196 220 0.00 2019-08-26 08:04:39 2019-08-26 08:05:14 t 1 1 89200 306 0.00 2019-08-26 08:18:17 2019-08-26 08:19:18 t 1 2 89208 357 0.00 2019-08-26 08:56:22 2019-08-26 08:56:30 t 1 2 89213 346 0.00 2019-08-26 09:14:14 2019-08-26 09:16:21 t 1 2 89214 288 0.00 2019-08-26 09:26:01 2019-08-26 09:27:07 t 1 2 89215 320 0.00 2019-08-26 09:18:47 2019-08-26 09:28:52 t 1 2 89217 320 0.00 2019-08-26 09:21:25 2019-08-26 09:31:30 t 1 2 89220 296 0.00 2019-08-26 09:24:46 2019-08-26 09:36:46 t 1 2 89222 220 0.00 2019-08-26 09:41:29 2019-08-26 09:43:25 t 1 1 89223 220 0.00 2019-08-26 09:43:25 2019-08-26 09:43:59 t 1 1 89226 220 0.00 2019-08-26 09:45:09 2019-08-26 09:45:44 t 1 1 89234 220 0.00 2019-08-26 09:49:21 2019-08-26 09:50:00 t 1 1 89237 220 0.00 2019-08-26 09:51:14 2019-08-26 09:51:49 t 1 1 89242 220 0.00 2019-08-26 09:56:19 2019-08-26 09:57:21 t 1 1 89246 220 0.00 2019-08-26 09:59:11 2019-08-26 10:00:36 t 1 1 89249 220 0.00 2019-08-26 10:01:49 2019-08-26 10:02:24 t 1 1 89251 212 0.00 2019-08-26 10:01:28 2019-08-26 10:03:26 t 1 2 89252 220 0.00 2019-08-26 10:03:05 2019-08-26 10:03:44 t 1 1 89261 220 0.00 2019-08-26 10:08:01 2019-08-26 10:08:35 t 1 1 89264 220 0.00 2019-08-26 10:08:35 2019-08-26 10:24:20 t 1 1 89266 331 0.00 2019-08-26 10:27:53 2019-08-26 10:28:57 t 1 2 89270 220 0.00 2019-08-26 10:35:15 2019-08-26 10:48:21 t 1 2 89275 346 0.00 2019-08-26 10:26:38 2019-08-26 11:01:43 t 1 2 89276 346 0.00 2019-08-26 10:53:59 2019-08-26 11:04:04 t 1 2 89283 288 0.00 2019-08-26 11:30:58 2019-08-26 11:32:02 t 1 2 89284 220 0.00 2019-08-26 10:16:33 2019-08-26 11:34:19 t 1 1 89286 288 0.00 2019-08-26 11:33:49 2019-08-26 11:34:52 t 1 2 89288 220 0.00 2019-08-26 11:35:02 2019-08-26 11:35:32 t 1 1 89291 220 0.00 2019-08-26 11:36:07 2019-08-26 11:37:47 t 1 1 89294 220 0.00 2019-08-26 11:37:46 2019-08-26 11:38:29 t 1 1 89298 220 0.00 2019-08-26 11:40:44 2019-08-26 11:42:33 t 1 1 89300 346 0.00 2019-08-26 11:28:15 2019-08-26 11:43:20 t 1 2 89303 220 0.00 2019-08-26 11:43:15 2019-08-26 11:46:38 t 1 1 89314 220 0.00 2019-08-26 11:55:06 2019-08-26 11:55:37 t 1 1 89322 220 0.00 2019-08-26 11:57:11 2019-08-26 12:03:52 t 1 1 89326 294 0.00 2019-08-26 12:07:54 2019-08-26 12:29:30 t 1 2 89330 220 0.00 2019-08-26 11:57:42 2019-08-26 12:33:56 t 1 1 89334 220 0.00 2019-08-26 12:06:59 2019-08-26 12:41:05 t 1 2 89337 357 0.00 2019-08-26 09:10:34 2019-08-26 12:55:39 t 1 2 89342 372 0.00 2019-08-26 13:11:28 2019-08-26 13:16:41 t 1 2 89344 288 0.00 2019-08-26 13:20:21 2019-08-26 13:21:26 t 1 2 89349 320 0.00 2019-08-26 13:21:31 2019-08-26 13:41:36 t 1 2 89352 306 0.00 2019-08-26 13:41:03 2019-08-26 13:42:10 t 1 2 89355 220 0.00 2019-08-26 13:52:43 2019-08-26 13:53:18 t 1 1 89356 220 0.00 2019-08-26 13:53:18 2019-08-26 13:53:59 t 1 1 89361 296 0.00 2019-08-26 13:33:48 2019-08-26 13:57:12 t 1 2 89363 306 0.00 2019-08-26 14:04:05 2019-08-26 14:05:09 t 1 2 89369 288 0.00 2019-08-26 14:24:18 2019-08-26 14:25:21 t 1 2 89372 288 0.00 2019-08-26 14:37:13 2019-08-26 14:38:16 t 1 2 89070 220 0.00 2019-08-25 22:54:34 2019-08-25 22:54:54 t 1 1 89073 220 0.00 2019-08-25 22:55:09 2019-08-25 22:55:11 t 1 1 89077 220 0.00 2019-08-25 22:56:24 2019-08-25 22:56:58 t 1 1 89090 220 0.00 2019-08-25 23:04:27 2019-08-25 23:05:04 t 1 1 89092 220 0.00 2019-08-25 23:05:41 2019-08-25 23:06:18 t 1 1 89094 220 0.00 2019-08-25 23:06:17 2019-08-25 23:06:55 t 1 1 89098 220 0.00 2019-08-25 23:09:13 2019-08-25 23:09:49 t 1 1 89101 220 0.00 2019-08-25 23:11:04 2019-08-25 23:11:42 t 1 1 89102 324 0.00 2019-08-25 22:38:55 2019-08-25 23:17:55 t 1 2 89109 346 0.00 2019-08-25 23:36:26 2019-08-25 23:37:06 t 1 2 89114 346 0.00 2019-08-25 23:53:03 2019-08-25 23:53:08 t 1 2 89116 247 0.00 2019-08-26 00:03:37 2019-08-26 00:04:11 t 1 2 89123 311 0.00 2019-08-25 23:41:05 2019-08-26 00:16:53 t 1 2 89126 320 0.00 2019-08-26 00:09:29 2019-08-26 00:19:34 t 1 2 89129 247 0.00 2019-08-26 00:18:58 2019-08-26 00:28:17 t 1 2 89131 395 0.00 2019-08-26 00:30:09 2019-08-26 00:31:14 t 1 2 89141 375 0.00 2019-08-26 02:02:38 2019-08-26 02:03:44 t 1 2 89145 392 0.00 2019-08-26 02:22:58 2019-08-26 02:26:34 t 1 2 89155 372 0.00 2019-08-26 02:42:54 2019-08-26 02:42:54 f 1 2 89156 372 0.00 2019-08-26 02:44:30 2019-08-26 02:44:30 f 1 2 89160 372 0.00 2019-08-26 02:51:26 2019-08-26 03:02:19 t 1 2 89164 372 0.00 2019-08-26 03:11:01 2019-08-26 03:11:01 f 1 2 89166 372 0.00 2019-08-26 03:11:15 2019-08-26 03:11:15 f 1 2 89173 372 0.00 2019-08-26 03:22:00 2019-08-26 03:23:04 t 1 2 89180 379 0.00 2019-08-26 06:50:08 2019-08-26 07:33:47 t 1 2 89182 220 0.00 2019-08-26 07:37:39 2019-08-26 07:47:21 t 1 1 89187 220 0.00 2019-08-26 07:49:43 2019-08-26 08:00:39 t 1 1 89191 220 0.00 2019-08-26 08:01:46 2019-08-26 08:02:20 t 1 1 89195 220 0.00 2019-08-26 08:04:06 2019-08-26 08:04:39 t 1 1 89201 306 0.00 2019-08-26 08:19:34 2019-08-26 08:20:42 t 1 2 89205 212 0.00 2019-08-26 08:46:37 2019-08-26 08:47:13 t 1 2 89207 247 0.00 2019-08-26 08:52:54 2019-08-26 08:54:04 t 1 2 89211 346 0.00 2019-08-26 09:03:13 2019-08-26 09:08:54 t 1 2 89218 288 0.00 2019-08-26 09:32:27 2019-08-26 09:33:31 t 1 2 89224 220 0.00 2019-08-26 09:43:59 2019-08-26 09:44:32 t 1 1 89227 220 0.00 2019-08-26 09:45:44 2019-08-26 09:46:19 t 1 1 89230 220 0.00 2019-08-26 09:47:33 2019-08-26 09:48:09 t 1 1 89231 220 0.00 2019-08-26 09:48:09 2019-08-26 09:48:46 t 1 1 89235 220 0.00 2019-08-26 09:49:59 2019-08-26 09:50:33 t 1 1 89248 220 0.00 2019-08-26 10:01:13 2019-08-26 10:01:49 t 1 1 89253 220 0.00 2019-08-26 10:03:43 2019-08-26 10:04:17 t 1 1 89260 220 0.00 2019-08-26 10:07:21 2019-08-26 10:08:01 t 1 1 89267 346 0.00 2019-08-26 09:18:39 2019-08-26 10:33:44 t 1 2 89268 288 0.00 2019-08-26 10:39:13 2019-08-26 10:40:17 t 1 2 89272 220 0.00 2019-08-26 10:49:02 2019-08-26 10:50:07 t 1 1 89274 212 0.00 2019-08-26 10:56:43 2019-08-26 10:58:21 t 1 2 89278 379 0.00 2019-08-26 09:38:02 2019-08-26 11:13:08 t 1 2 89285 220 0.00 2019-08-26 11:23:44 2019-08-26 11:34:23 t 1 1 89287 220 0.00 2019-08-26 11:34:23 2019-08-26 11:35:02 t 1 1 89290 346 0.00 2019-08-26 11:27:40 2019-08-26 11:37:45 t 1 2 89304 220 0.00 2019-08-26 11:46:38 2019-08-26 11:47:20 t 1 1 89309 220 0.00 2019-08-26 11:52:29 2019-08-26 11:53:08 t 1 1 89313 306 0.00 2019-08-26 11:54:30 2019-08-26 11:55:34 t 1 2 89320 375 0.00 2019-08-26 12:00:20 2019-08-26 12:01:24 t 1 2 89325 220 0.00 2019-08-26 12:04:54 2019-08-26 12:25:34 t 1 1 89329 322 0.00 2019-08-26 10:58:33 2019-08-26 12:31:44 t 1 2 89338 324 0.00 2019-08-26 13:00:55 2019-08-26 13:01:45 t 1 2 89339 372 0.00 2019-08-26 12:59:48 2019-08-26 13:03:50 t 1 2 89340 288 0.00 2019-08-26 13:11:51 2019-08-26 13:12:57 t 1 2 89348 349 0.00 2019-08-26 13:32:52 2019-08-26 13:33:56 t 1 2 89350 288 0.00 2019-08-26 13:40:44 2019-08-26 13:41:48 t 1 2 89354 220 0.00 2019-08-26 13:51:59 2019-08-26 13:52:43 t 1 1 89358 220 0.00 2019-08-26 13:46:45 2019-08-26 13:54:34 t 1 1 89360 324 0.00 2019-08-26 13:54:17 2019-08-26 13:56:25 t 1 2 89366 247 0.00 2019-08-26 14:08:49 2019-08-26 14:09:59 t 1 2 89367 220 0.00 2019-08-26 14:02:28 2019-08-26 14:12:50 t 1 1 89370 379 0.00 2019-08-26 12:20:34 2019-08-26 14:25:39 t 1 2 89374 220 0.00 2019-08-26 14:20:14 2019-08-26 14:44:50 t 1 1 89377 220 0.00 2019-08-26 14:44:49 2019-08-26 14:46:36 t 1 1 89379 288 0.00 2019-08-26 14:46:25 2019-08-26 14:47:31 t 1 2 89382 392 0.00 2019-08-26 14:24:43 2019-08-26 14:48:43 t 1 2 89392 220 0.00 2019-08-26 15:02:17 2019-08-26 15:02:54 t 1 1 89400 220 0.00 2019-08-26 15:07:03 2019-08-26 15:07:40 t 1 1 89403 346 0.00 2019-08-26 14:24:29 2019-08-26 15:09:34 t 1 2 89405 220 0.00 2019-08-26 15:09:34 2019-08-26 15:10:11 t 1 1 89407 220 0.00 2019-08-26 15:10:46 2019-08-26 15:11:21 t 1 1 89411 324 0.00 2019-08-26 15:10:23 2019-08-26 15:13:37 t 1 2 89421 288 0.00 2019-08-26 15:44:57 2019-08-26 15:46:04 t 1 2 89423 220 0.00 2019-08-26 14:26:15 2019-08-26 15:48:38 t 1 2 89426 288 0.00 2019-08-26 15:54:16 2019-08-26 15:55:20 t 1 2 89427 220 0.00 2019-08-26 15:27:02 2019-08-26 16:02:12 t 1 1 89429 220 0.00 2019-08-26 16:03:57 2019-08-26 16:05:20 t 1 1 89430 320 0.00 2019-08-26 16:06:04 2019-08-26 16:16:09 t 1 2 89437 346 0.00 2019-08-26 16:29:07 2019-08-26 16:39:12 t 1 2 89438 288 0.00 2019-08-26 16:48:06 2019-08-26 16:49:10 t 1 2 89442 339 0.00 2019-08-26 15:57:28 2019-08-26 16:57:51 t 1 2 89447 220 0.00 2019-08-26 17:16:49 2019-08-26 17:17:55 t 1 2 89455 288 0.00 2019-08-26 17:30:38 2019-08-26 17:31:46 t 1 2 89458 220 0.00 2019-08-26 17:23:45 2019-08-26 17:38:53 t 1 2 89459 288 0.00 2019-08-26 17:46:36 2019-08-26 17:47:40 t 1 2 89462 349 0.00 2019-08-26 17:54:20 2019-08-26 17:55:26 t 1 2 89465 288 0.00 2019-08-26 18:07:38 2019-08-26 18:08:42 t 1 2 89468 346 0.00 2019-08-26 17:56:48 2019-08-26 18:11:53 t 1 2 89469 288 0.00 2019-08-26 18:11:47 2019-08-26 18:13:43 t 1 2 89471 367 0.00 2019-08-26 17:41:15 2019-08-26 18:21:20 t 1 2 89473 212 0.00 2019-08-26 18:20:29 2019-08-26 18:23:11 t 1 2 89475 288 0.00 2019-08-26 18:24:20 2019-08-26 18:25:23 t 1 2 89479 306 0.00 2019-08-26 18:43:03 2019-08-26 18:44:10 t 1 2 89486 306 0.00 2019-08-26 18:55:43 2019-08-26 18:56:45 t 1 2 89488 288 0.00 2019-08-26 19:02:43 2019-08-26 19:03:48 t 1 2 89491 306 0.00 2019-08-26 19:27:10 2019-08-26 19:28:12 t 1 2 89493 349 0.00 2019-08-26 19:29:08 2019-08-26 19:30:12 t 1 2 89497 375 0.00 2019-08-26 19:46:38 2019-08-26 19:47:41 t 1 2 89499 320 0.00 2019-08-26 19:47:37 2019-08-26 19:57:42 t 1 2 89502 220 0.00 2019-08-26 19:59:43 2019-08-26 20:00:36 t 1 1 89506 220 0.00 2019-08-26 20:03:54 2019-08-26 20:04:29 t 1 1 89521 349 0.00 2019-08-26 20:48:19 2019-08-26 20:49:23 t 1 2 89184 220 0.00 2019-08-26 07:47:56 2019-08-26 07:48:32 t 1 1 89185 220 0.00 2019-08-26 07:48:32 2019-08-26 07:49:08 t 1 1 89188 306 0.00 2019-08-26 07:59:58 2019-08-26 08:00:58 t 1 2 89193 220 0.00 2019-08-26 08:02:55 2019-08-26 08:03:32 t 1 1 89194 220 0.00 2019-08-26 08:03:32 2019-08-26 08:04:07 t 1 1 89197 220 0.00 2019-08-26 08:05:14 2019-08-26 08:05:51 t 1 1 89198 220 0.00 2019-08-26 08:05:50 2019-08-26 08:15:17 t 1 1 89202 320 0.00 2019-08-26 08:21:53 2019-08-26 08:41:59 t 1 2 89203 288 0.00 2019-08-26 08:43:52 2019-08-26 08:44:50 t 1 2 89206 306 0.00 2019-08-26 08:50:53 2019-08-26 08:51:55 t 1 2 89209 346 0.00 2019-08-26 08:50:05 2019-08-26 08:58:18 t 1 2 89210 220 0.00 2019-08-26 08:31:45 2019-08-26 09:07:59 t 1 1 89212 346 0.00 2019-08-26 09:09:03 2019-08-26 09:14:01 t 1 2 89216 220 0.00 2019-08-26 09:15:07 2019-08-26 09:30:45 t 1 1 89229 220 0.00 2019-08-26 09:46:52 2019-08-26 09:47:33 t 1 1 89232 220 0.00 2019-08-26 09:39:11 2019-08-26 09:49:16 t 1 2 89238 220 0.00 2019-08-26 09:51:49 2019-08-26 09:53:10 t 1 1 89239 220 0.00 2019-08-26 09:53:10 2019-08-26 09:53:45 t 1 1 89240 220 0.00 2019-08-26 09:53:45 2019-08-26 09:55:45 t 1 1 89243 220 0.00 2019-08-26 09:57:21 2019-08-26 09:57:56 t 1 1 89244 220 0.00 2019-08-26 09:57:56 2019-08-26 09:58:37 t 1 1 89247 220 0.00 2019-08-26 10:00:36 2019-08-26 10:01:13 t 1 1 89250 220 0.00 2019-08-26 10:02:23 2019-08-26 10:03:05 t 1 1 89255 220 0.00 2019-08-26 10:04:52 2019-08-26 10:05:33 t 1 1 89257 220 0.00 2019-08-26 10:05:31 2019-08-26 10:06:06 t 1 1 89259 220 0.00 2019-08-26 10:06:46 2019-08-26 10:07:21 t 1 1 89263 220 0.00 2019-08-26 10:01:40 2019-08-26 10:23:49 t 1 2 89265 212 0.00 2019-08-26 10:28:04 2019-08-26 10:28:45 t 1 2 89281 375 0.00 2019-08-26 11:24:06 2019-08-26 11:25:12 t 1 2 89282 320 0.00 2019-08-26 11:18:17 2019-08-26 11:28:22 t 1 2 89289 220 0.00 2019-08-26 11:35:31 2019-08-26 11:36:08 t 1 1 89295 288 0.00 2019-08-26 11:37:51 2019-08-26 11:38:53 t 1 2 89299 220 0.00 2019-08-26 11:42:33 2019-08-26 11:43:16 t 1 1 89301 288 0.00 2019-08-26 11:44:18 2019-08-26 11:45:21 t 1 2 89306 220 0.00 2019-08-26 11:50:43 2019-08-26 11:51:33 t 1 1 89308 220 0.00 2019-08-26 11:51:32 2019-08-26 11:52:30 t 1 1 89311 220 0.00 2019-08-26 11:53:08 2019-08-26 11:54:10 t 1 1 89315 220 0.00 2019-08-26 11:32:31 2019-08-26 11:56:46 t 1 2 89316 220 0.00 2019-08-26 11:55:40 2019-08-26 11:57:01 t 1 1 89318 288 0.00 2019-08-26 11:57:56 2019-08-26 11:59:00 t 1 2 89321 220 0.00 2019-08-26 11:59:41 2019-08-26 12:03:43 t 1 2 89323 306 0.00 2019-08-26 12:09:20 2019-08-26 12:10:25 t 1 2 89328 212 0.00 2019-08-26 12:28:52 2019-08-26 12:29:41 t 1 2 89332 294 0.00 2019-08-26 12:33:49 2019-08-26 12:35:10 t 1 2 89333 220 0.00 2019-08-26 12:25:39 2019-08-26 12:40:43 t 1 1 89335 212 0.00 2019-08-26 12:49:57 2019-08-26 12:50:18 t 1 2 89347 288 0.00 2019-08-26 13:25:08 2019-08-26 13:26:11 t 1 2 89351 349 0.00 2019-08-26 13:40:48 2019-08-26 13:41:52 t 1 2 89353 220 0.00 2019-08-26 13:27:46 2019-08-26 13:52:00 t 1 1 89362 306 0.00 2019-08-26 14:02:38 2019-08-26 14:03:41 t 1 2 89364 288 0.00 2019-08-26 14:07:16 2019-08-26 14:08:18 t 1 2 89371 306 0.00 2019-08-26 14:32:06 2019-08-26 14:33:04 t 1 2 89375 288 0.00 2019-08-26 14:44:04 2019-08-26 14:45:12 t 1 2 89381 220 0.00 2019-08-26 14:47:46 2019-08-26 14:48:24 t 1 1 89383 220 0.00 2019-08-26 14:48:24 2019-08-26 14:49:01 t 1 1 89385 306 0.00 2019-08-26 14:54:15 2019-08-26 14:55:17 t 1 2 89388 220 0.00 2019-08-26 15:00:00 2019-08-26 15:00:37 t 1 1 89391 220 0.00 2019-08-26 15:01:41 2019-08-26 15:02:17 t 1 1 89393 220 0.00 2019-08-26 15:02:54 2019-08-26 15:03:26 t 1 1 89394 220 0.00 2019-08-26 15:03:25 2019-08-26 15:04:02 t 1 1 89397 220 0.00 2019-08-26 15:05:15 2019-08-26 15:05:52 t 1 1 89399 220 0.00 2019-08-26 15:06:28 2019-08-26 15:07:03 t 1 1 89404 220 0.00 2019-08-26 15:08:55 2019-08-26 15:09:34 t 1 1 89409 220 0.00 2019-08-26 15:11:57 2019-08-26 15:12:32 t 1 1 89414 220 0.00 2019-08-26 15:12:32 2019-08-26 15:19:24 t 1 1 89415 346 0.00 2019-08-26 15:02:10 2019-08-26 15:22:16 t 1 2 89416 296 0.00 2019-08-26 15:06:01 2019-08-26 15:30:21 t 1 2 89419 395 0.00 2019-08-26 14:54:30 2019-08-26 15:36:08 t 1 2 89431 220 0.00 2019-08-26 16:07:07 2019-08-26 16:22:48 t 1 1 89435 220 0.00 2019-08-26 16:27:57 2019-08-26 16:33:39 t 1 1 89439 294 0.00 2019-08-26 14:49:01 2019-08-26 16:49:24 t 1 2 89444 288 0.00 2019-08-26 17:02:55 2019-08-26 17:04:00 t 1 2 89445 395 0.00 2019-08-26 17:12:53 2019-08-26 17:16:58 t 1 2 89448 220 0.00 2019-08-26 16:33:48 2019-08-26 17:18:07 t 1 1 89452 349 0.00 2019-08-26 17:27:32 2019-08-26 17:28:40 t 1 2 89456 392 0.00 2019-08-26 17:26:12 2019-08-26 17:32:21 t 1 2 89457 361 0.00 2019-08-26 17:15:12 2019-08-26 17:33:56 t 1 2 89461 288 0.00 2019-08-26 17:49:55 2019-08-26 17:50:59 t 1 2 89463 375 0.00 2019-08-26 17:54:53 2019-08-26 17:55:56 t 1 2 89487 220 0.00 2019-08-26 18:50:57 2019-08-26 18:57:15 t 1 2 89492 357 0.00 2019-08-26 16:28:12 2019-08-26 19:28:17 t 1 2 89500 288 0.00 2019-08-26 19:57:10 2019-08-26 19:58:15 t 1 2 89504 294 0.00 2019-08-26 19:01:35 2019-08-26 20:01:59 t 1 2 89510 220 0.00 2019-08-26 18:31:19 2019-08-26 20:26:24 t 1 2 89514 349 0.00 2019-08-26 20:38:26 2019-08-26 20:39:32 t 1 2 89517 220 0.00 2019-08-26 20:08:15 2019-08-26 20:42:04 t 1 1 89520 349 0.00 2019-08-26 20:45:59 2019-08-26 20:47:04 t 1 2 89524 306 0.00 2019-08-26 20:56:59 2019-08-26 20:58:03 t 1 2 89526 220 0.00 2019-08-26 21:01:36 2019-08-26 21:02:18 t 1 1 89535 247 0.00 2019-08-26 21:04:14 2019-08-26 21:05:25 t 1 2 89544 220 0.00 2019-08-26 21:09:18 2019-08-26 21:09:47 t 1 1 89546 220 0.00 2019-08-26 21:09:53 2019-08-26 21:10:58 t 1 1 89555 220 0.00 2019-08-26 21:15:27 2019-08-26 21:16:01 t 1 1 89557 220 0.00 2019-08-26 21:16:01 2019-08-26 21:16:44 t 1 1 89559 220 0.00 2019-08-26 21:16:50 2019-08-26 21:17:15 t 1 1 89561 220 0.00 2019-08-26 21:17:52 2019-08-26 21:18:09 t 1 1 89562 220 0.00 2019-08-26 21:18:09 2019-08-26 21:18:45 t 1 1 89565 306 0.00 2019-08-26 21:19:10 2019-08-26 21:19:58 t 1 2 89566 361 0.00 2019-08-26 21:13:02 2019-08-26 21:20:30 t 1 2 89570 220 0.00 2019-08-26 21:21:54 2019-08-26 21:23:18 t 1 1 89571 220 0.00 2019-08-26 21:23:18 2019-08-26 21:24:35 t 1 1 89572 220 0.00 2019-08-26 21:24:34 2019-08-26 21:26:41 t 1 1 89573 220 0.00 2019-08-26 21:26:40 2019-08-26 21:28:44 t 1 1 89575 220 0.00 2019-08-26 21:30:13 2019-08-26 21:32:51 t 1 1 89576 220 0.00 2019-08-26 21:32:50 2019-08-26 21:33:59 t 1 1 89581 346 0.00 2019-08-26 21:22:35 2019-08-26 21:37:40 t 1 2 89587 306 0.00 2019-08-26 21:45:07 2019-08-26 21:46:11 t 1 2 89319 212 0.00 2019-08-26 12:00:37 2019-08-26 12:01:03 t 1 2 89324 339 0.00 2019-08-26 12:09:45 2019-08-26 12:11:18 t 1 2 89327 346 0.00 2019-08-26 12:04:29 2019-08-26 12:29:34 t 1 2 89331 346 0.00 2019-08-26 12:03:57 2019-08-26 12:34:02 t 1 2 89336 320 0.00 2019-08-26 12:33:32 2019-08-26 12:53:38 t 1 2 89341 288 0.00 2019-08-26 13:14:11 2019-08-26 13:15:13 t 1 2 89343 220 0.00 2019-08-26 13:11:05 2019-08-26 13:18:28 t 1 2 89345 306 0.00 2019-08-26 13:21:05 2019-08-26 13:22:09 t 1 2 89346 311 0.00 2019-08-26 13:18:16 2019-08-26 13:25:37 t 1 2 89357 220 0.00 2019-08-26 13:53:58 2019-08-26 13:54:32 t 1 1 89359 220 0.00 2019-08-26 13:54:32 2019-08-26 13:56:18 t 1 1 89365 288 0.00 2019-08-26 14:08:47 2019-08-26 14:09:54 t 1 2 89368 306 0.00 2019-08-26 14:13:42 2019-08-26 14:14:46 t 1 2 89373 346 0.00 2019-08-26 13:28:20 2019-08-26 14:38:25 t 1 2 89376 343 0.00 2019-08-26 14:44:15 2019-08-26 14:45:42 t 1 2 89378 220 0.00 2019-08-26 14:46:36 2019-08-26 14:47:10 t 1 1 89380 220 0.00 2019-08-26 14:47:09 2019-08-26 14:47:46 t 1 1 89386 296 0.00 2019-08-26 13:58:28 2019-08-26 14:58:52 t 1 2 89389 220 0.00 2019-08-26 15:00:37 2019-08-26 15:01:08 t 1 1 89395 220 0.00 2019-08-26 15:04:02 2019-08-26 15:04:37 t 1 1 89408 220 0.00 2019-08-26 15:11:21 2019-08-26 15:11:57 t 1 1 89410 320 0.00 2019-08-26 15:03:09 2019-08-26 15:13:14 t 1 2 89418 288 0.00 2019-08-26 15:34:28 2019-08-26 15:35:33 t 1 2 89425 288 0.00 2019-08-26 15:50:02 2019-08-26 15:51:10 t 1 2 89432 357 0.00 2019-08-26 16:27:35 2019-08-26 16:27:40 t 1 2 89434 346 0.00 2019-08-26 16:28:45 2019-08-26 16:28:52 t 1 2 89446 288 0.00 2019-08-26 17:16:36 2019-08-26 17:17:41 t 1 2 89449 247 0.00 2019-08-26 17:16:44 2019-08-26 17:18:21 t 1 2 89460 379 0.00 2019-08-26 14:34:12 2019-08-26 17:49:17 t 1 2 89464 306 0.00 2019-08-26 17:55:37 2019-08-26 17:56:41 t 1 2 89467 220 0.00 2019-08-26 17:18:17 2019-08-26 18:10:02 t 1 1 89470 296 0.00 2019-08-26 17:54:11 2019-08-26 18:19:35 t 1 2 89474 294 0.00 2019-08-26 17:29:17 2019-08-26 18:24:40 t 1 2 89477 288 0.00 2019-08-26 18:34:09 2019-08-26 18:35:15 t 1 2 89478 361 0.00 2019-08-26 17:44:31 2019-08-26 18:37:50 t 1 2 89481 306 0.00 2019-08-26 18:46:17 2019-08-26 18:47:21 t 1 2 89483 306 0.00 2019-08-26 18:49:20 2019-08-26 18:50:26 t 1 2 89489 346 0.00 2019-08-26 19:08:16 2019-08-26 19:18:21 t 1 2 89496 288 0.00 2019-08-26 19:44:49 2019-08-26 19:45:51 t 1 2 89503 220 0.00 2019-08-26 20:00:36 2019-08-26 20:01:10 t 1 1 89508 288 0.00 2019-08-26 20:05:31 2019-08-26 20:06:39 t 1 2 89509 349 0.00 2019-08-26 20:21:12 2019-08-26 20:22:16 t 1 2 89511 349 0.00 2019-08-26 20:29:58 2019-08-26 20:31:06 t 1 2 89512 349 0.00 2019-08-26 20:32:47 2019-08-26 20:33:52 t 1 2 89519 363 0.00 2019-08-26 19:16:06 2019-08-26 20:46:11 t 1 2 89522 288 0.00 2019-08-26 20:55:03 2019-08-26 20:56:08 t 1 2 89539 220 0.00 2019-08-26 21:06:26 2019-08-26 21:06:59 t 1 1 89545 220 0.00 2019-08-26 21:09:46 2019-08-26 21:09:53 t 1 1 89549 220 0.00 2019-08-26 21:11:31 2019-08-26 21:12:49 t 1 1 89558 220 0.00 2019-08-26 21:16:44 2019-08-26 21:16:50 t 1 1 89564 220 0.00 2019-08-26 21:18:44 2019-08-26 21:19:19 t 1 1 89567 306 0.00 2019-08-26 21:20:04 2019-08-26 21:21:08 t 1 2 89578 220 0.00 2019-08-26 21:34:40 2019-08-26 21:35:38 t 1 1 89582 220 0.00 2019-08-26 21:36:18 2019-08-26 21:37:47 t 1 1 89586 292 0.00 2019-08-26 21:42:14 2019-08-26 21:42:19 t 1 2 89592 355 0.00 2019-08-26 18:10:30 2019-08-26 22:00:14 t 1 2 89596 372 0.00 2019-08-26 21:59:56 2019-08-26 22:25:01 t 1 2 89602 375 0.00 2019-08-26 22:52:23 2019-08-26 22:53:29 t 1 2 89608 220 0.00 2019-08-26 23:02:55 2019-08-26 23:03:12 t 1 1 89611 355 0.00 2019-08-26 22:52:36 2019-08-26 23:08:15 t 1 2 89614 331 0.00 2019-08-26 23:26:13 2019-08-26 23:26:23 t 1 2 89618 346 0.00 2019-08-26 23:30:52 2019-08-26 23:40:57 t 1 2 89624 363 0.00 2019-08-26 23:20:08 2019-08-26 23:49:38 t 1 2 89625 363 0.00 2019-08-26 23:49:54 2019-08-26 23:49:59 t 1 2 89630 355 0.00 2019-08-26 23:56:27 2019-08-27 00:02:19 t 1 2 89636 288 0.00 2019-08-27 00:31:03 2019-08-27 00:32:08 t 1 2 89637 296 0.00 2019-08-27 00:31:31 2019-08-27 00:37:55 t 1 2 89642 324 0.00 2019-08-27 00:46:49 2019-08-27 00:52:01 t 1 2 89647 346 0.00 2019-08-27 01:01:02 2019-08-27 01:31:07 t 1 2 89650 393 0.00 2019-08-27 01:25:34 2019-08-27 01:35:39 t 1 2 89652 363 0.00 2019-08-27 00:46:22 2019-08-27 01:41:27 t 1 2 89658 288 0.00 2019-08-27 01:51:59 2019-08-27 01:53:03 t 1 2 89666 393 0.00 2019-08-27 03:53:01 2019-08-27 04:38:06 t 1 2 89668 294 0.00 2019-08-26 20:06:37 2019-08-27 06:29:02 t 1 2 89672 346 0.00 2019-08-27 01:34:34 2019-08-27 07:33:47 t 1 2 89681 395 0.00 2019-08-27 08:45:23 2019-08-27 08:46:22 t 1 2 89690 320 0.00 2019-08-27 08:47:21 2019-08-27 08:57:26 t 1 2 89694 395 0.00 2019-08-27 09:02:49 2019-08-27 09:02:49 t 1 2 89697 395 0.00 2019-08-27 09:07:41 2019-08-27 09:08:47 t 1 2 89702 220 0.00 2019-08-27 08:34:27 2019-08-27 09:35:50 t 1 1 89710 288 0.00 2019-08-27 09:45:03 2019-08-27 09:46:11 t 1 2 89715 324 0.00 2019-08-27 09:54:25 2019-08-27 10:02:42 t 1 2 89717 288 0.00 2019-08-27 10:11:43 2019-08-27 10:12:47 t 1 2 89724 220 0.00 2019-08-27 10:18:57 2019-08-27 10:35:40 t 1 1 89726 288 0.00 2019-08-27 10:36:15 2019-08-27 10:37:20 t 1 2 89731 392 0.00 2019-08-27 10:57:45 2019-08-27 11:18:25 t 1 2 89733 292 0.00 2019-08-27 11:33:25 2019-08-27 11:33:40 t 1 2 89735 220 0.00 2019-08-27 11:35:10 2019-08-27 11:38:32 t 1 2 89736 220 0.00 2019-08-27 11:41:23 2019-08-27 11:41:26 t 1 1 89740 318 0.00 2019-08-27 11:47:59 2019-08-27 11:47:59 f 1 2 89750 220 0.00 2019-08-27 12:06:14 2019-08-27 12:45:37 t 1 2 89751 357 0.00 2019-08-27 10:41:46 2019-08-27 12:51:51 t 1 2 89754 346 0.00 2019-08-27 13:04:30 2019-08-27 13:05:38 t 1 2 89761 247 0.00 2019-08-27 13:31:29 2019-08-27 13:33:05 t 1 2 89767 324 0.00 2019-08-27 13:49:45 2019-08-27 14:01:26 t 1 2 89768 288 0.00 2019-08-27 14:02:47 2019-08-27 14:03:51 t 1 2 89774 346 0.00 2019-08-27 14:08:21 2019-08-27 14:09:26 t 1 2 89790 324 0.00 2019-08-27 14:42:24 2019-08-27 14:52:29 t 1 2 89793 296 0.00 2019-08-27 14:41:23 2019-08-27 14:56:46 t 1 2 89797 306 0.00 2019-08-27 15:09:32 2019-08-27 15:10:36 t 1 2 89798 306 0.00 2019-08-27 15:12:52 2019-08-27 15:13:53 t 1 2 89804 306 0.00 2019-08-27 15:20:23 2019-08-27 15:21:27 t 1 2 89806 306 0.00 2019-08-27 15:23:00 2019-08-27 15:24:03 t 1 2 89807 306 0.00 2019-08-27 15:26:36 2019-08-27 15:27:40 t 1 2 89809 355 0.00 2019-08-27 15:15:02 2019-08-27 15:30:15 t 1 2 89810 306 0.00 2019-08-27 15:33:19 2019-08-27 15:34:23 t 1 2 89815 220 0.00 2019-08-27 14:52:10 2019-08-27 15:46:56 t 1 1 89384 220 0.00 2019-08-26 14:49:01 2019-08-26 14:49:29 t 1 1 89387 220 0.00 2019-08-26 14:49:37 2019-08-26 15:00:00 t 1 1 89390 220 0.00 2019-08-26 15:01:08 2019-08-26 15:01:42 t 1 1 89396 220 0.00 2019-08-26 15:04:37 2019-08-26 15:05:15 t 1 1 89398 220 0.00 2019-08-26 15:05:51 2019-08-26 15:06:28 t 1 1 89401 220 0.00 2019-08-26 15:07:40 2019-08-26 15:08:15 t 1 1 89402 220 0.00 2019-08-26 15:08:15 2019-08-26 15:08:55 t 1 1 89406 220 0.00 2019-08-26 15:10:10 2019-08-26 15:10:47 t 1 1 89412 346 0.00 2019-08-26 15:15:44 2019-08-26 15:15:47 t 1 2 89413 346 0.00 2019-08-26 15:16:03 2019-08-26 15:17:50 t 1 2 89417 288 0.00 2019-08-26 15:33:13 2019-08-26 15:34:16 t 1 2 89420 288 0.00 2019-08-26 15:36:28 2019-08-26 15:37:32 t 1 2 89422 212 0.00 2019-08-26 15:47:36 2019-08-26 15:48:09 t 1 2 89424 288 0.00 2019-08-26 15:48:33 2019-08-26 15:49:38 t 1 2 89428 306 0.00 2019-08-26 16:03:29 2019-08-26 16:04:33 t 1 2 89433 357 0.00 2019-08-26 16:27:58 2019-08-26 16:28:03 t 1 2 89436 395 0.00 2019-08-26 15:39:24 2019-08-26 16:35:28 t 1 2 89440 346 0.00 2019-08-26 16:54:10 2019-08-26 16:54:19 t 1 2 89441 392 0.00 2019-08-26 16:46:51 2019-08-26 16:56:39 t 1 2 89443 296 0.00 2019-08-26 16:49:43 2019-08-26 17:01:43 t 1 2 89450 288 0.00 2019-08-26 17:20:21 2019-08-26 17:21:27 t 1 2 89451 220 0.00 2019-08-26 16:41:09 2019-08-26 17:27:40 t 1 1 89453 355 0.00 2019-08-26 17:18:41 2019-08-26 17:28:46 t 1 2 89454 349 0.00 2019-08-26 17:28:59 2019-08-26 17:30:02 t 1 2 89466 375 0.00 2019-08-26 18:08:41 2019-08-26 18:09:45 t 1 2 89472 288 0.00 2019-08-26 18:20:34 2019-08-26 18:21:43 t 1 2 89476 375 0.00 2019-08-26 18:25:35 2019-08-26 18:26:42 t 1 2 89480 306 0.00 2019-08-26 18:45:00 2019-08-26 18:46:06 t 1 2 89482 306 0.00 2019-08-26 18:48:01 2019-08-26 18:49:04 t 1 2 89484 306 0.00 2019-08-26 18:53:43 2019-08-26 18:54:44 t 1 2 89485 288 0.00 2019-08-26 18:55:18 2019-08-26 18:56:24 t 1 2 89490 320 0.00 2019-08-26 18:58:49 2019-08-26 19:18:55 t 1 2 89494 306 0.00 2019-08-26 19:41:29 2019-08-26 19:42:33 t 1 2 89495 306 0.00 2019-08-26 19:43:42 2019-08-26 19:44:45 t 1 2 89498 288 0.00 2019-08-26 19:52:09 2019-08-26 19:53:16 t 1 2 89501 220 0.00 2019-08-26 18:42:59 2019-08-26 19:59:43 t 1 1 89505 220 0.00 2019-08-26 20:01:09 2019-08-26 20:03:54 t 1 1 89507 220 0.00 2019-08-26 20:04:28 2019-08-26 20:05:29 t 1 1 89513 349 0.00 2019-08-26 20:35:44 2019-08-26 20:36:50 t 1 2 89515 349 0.00 2019-08-26 20:39:49 2019-08-26 20:40:54 t 1 2 89516 288 0.00 2019-08-26 20:40:10 2019-08-26 20:41:16 t 1 2 89518 349 0.00 2019-08-26 20:41:09 2019-08-26 20:42:15 t 1 2 89525 220 0.00 2019-08-26 20:42:04 2019-08-26 21:01:36 t 1 1 89528 220 0.00 2019-08-26 21:02:55 2019-08-26 21:03:31 t 1 1 89529 220 0.00 2019-08-26 21:03:31 2019-08-26 21:04:08 t 1 1 89531 220 0.00 2019-08-26 21:04:12 2019-08-26 21:04:42 t 1 1 89533 220 0.00 2019-08-26 21:04:45 2019-08-26 21:05:17 t 1 1 89537 220 0.00 2019-08-26 21:05:54 2019-08-26 21:05:56 t 1 1 89540 220 0.00 2019-08-26 21:06:59 2019-08-26 21:07:41 t 1 1 89542 220 0.00 2019-08-26 21:07:50 2019-08-26 21:08:13 t 1 1 89543 220 0.00 2019-08-26 21:08:13 2019-08-26 21:09:18 t 1 1 89547 288 0.00 2019-08-26 21:10:02 2019-08-26 21:11:09 t 1 2 89552 220 0.00 2019-08-26 21:13:57 2019-08-26 21:14:03 t 1 1 89554 220 0.00 2019-08-26 21:14:32 2019-08-26 21:15:27 t 1 1 89556 306 0.00 2019-08-26 21:15:03 2019-08-26 21:16:06 t 1 2 89560 220 0.00 2019-08-26 21:17:15 2019-08-26 21:17:32 t 1 1 89563 306 0.00 2019-08-26 21:17:53 2019-08-26 21:18:56 t 1 2 89568 220 0.00 2019-08-26 21:19:18 2019-08-26 21:21:54 t 1 1 89569 320 0.00 2019-08-26 21:12:31 2019-08-26 21:22:36 t 1 2 89580 220 0.00 2019-08-26 21:35:38 2019-08-26 21:36:23 t 1 1 89584 220 0.00 2019-08-26 21:38:29 2019-08-26 21:40:57 t 1 1 89585 292 0.00 2019-08-26 21:41:27 2019-08-26 21:41:35 t 1 2 89589 367 0.00 2019-08-26 21:27:15 2019-08-26 21:57:02 t 1 2 89590 320 0.00 2019-08-26 21:49:08 2019-08-26 21:59:13 t 1 2 89594 372 0.00 2019-08-26 21:47:23 2019-08-26 22:02:28 t 1 2 89595 392 0.00 2019-08-26 22:12:47 2019-08-26 22:24:41 t 1 2 89599 306 0.00 2019-08-26 22:40:20 2019-08-26 22:41:24 t 1 2 89601 247 0.00 2019-08-26 22:48:33 2019-08-26 22:50:32 t 1 2 89603 292 0.00 2019-08-26 22:54:15 2019-08-26 22:55:19 t 1 2 89605 320 0.00 2019-08-26 22:01:07 2019-08-26 22:58:56 t 1 2 89606 288 0.00 2019-08-26 22:59:15 2019-08-26 23:00:24 t 1 2 89607 220 0.00 2019-08-26 22:57:13 2019-08-26 23:02:56 t 1 1 89613 355 0.00 2019-08-26 23:16:07 2019-08-26 23:21:53 t 1 2 89623 306 0.00 2019-08-26 23:46:40 2019-08-26 23:47:43 t 1 2 89626 346 0.00 2019-08-26 23:42:49 2019-08-26 23:52:54 t 1 2 89627 306 0.00 2019-08-26 23:54:33 2019-08-26 23:55:38 t 1 2 89629 375 0.00 2019-08-27 00:01:06 2019-08-27 00:02:10 t 1 2 89631 247 0.00 2019-08-27 00:15:39 2019-08-27 00:18:14 t 1 2 89633 355 0.00 2019-08-27 00:20:03 2019-08-27 00:28:14 t 1 2 89635 288 0.00 2019-08-27 00:28:50 2019-08-27 00:29:54 t 1 2 89638 375 0.00 2019-08-27 00:38:49 2019-08-27 00:39:55 t 1 2 89644 346 0.00 2019-08-27 00:55:35 2019-08-27 01:00:57 t 1 2 89646 343 0.00 2019-08-27 01:18:34 2019-08-27 01:19:40 t 1 2 89657 288 0.00 2019-08-27 01:50:34 2019-08-27 01:51:41 t 1 2 89661 322 0.00 2019-08-27 01:45:37 2019-08-27 02:53:42 t 1 2 89664 392 0.00 2019-08-27 01:08:50 2019-08-27 03:51:43 t 1 2 89667 324 0.00 2019-08-27 04:08:02 2019-08-27 04:53:08 t 1 2 89676 288 0.00 2019-08-27 08:12:07 2019-08-27 08:13:15 t 1 2 89677 288 0.00 2019-08-27 08:14:43 2019-08-27 08:15:47 t 1 2 89683 395 0.00 2019-08-27 08:46:52 2019-08-27 08:47:56 t 1 2 89688 395 0.00 2019-08-27 08:55:04 2019-08-27 08:56:08 t 1 2 89695 395 0.00 2019-08-27 09:02:58 2019-08-27 09:04:03 t 1 2 89698 395 0.00 2019-08-27 09:09:41 2019-08-27 09:10:43 t 1 2 89700 320 0.00 2019-08-27 09:13:36 2019-08-27 09:23:41 t 1 2 89704 395 0.00 2019-08-27 09:38:04 2019-08-27 09:39:07 t 1 2 89706 320 0.00 2019-08-27 09:31:33 2019-08-27 09:41:38 t 1 2 89708 220 0.00 2019-08-27 09:35:56 2019-08-27 09:43:52 t 1 1 89713 288 0.00 2019-08-27 09:53:33 2019-08-27 09:54:40 t 1 2 89716 288 0.00 2019-08-27 10:07:15 2019-08-27 10:08:23 t 1 2 89720 220 0.00 2019-08-27 10:15:02 2019-08-27 10:17:09 t 1 1 89722 288 0.00 2019-08-27 10:20:27 2019-08-27 10:21:31 t 1 2 89723 288 0.00 2019-08-27 10:23:04 2019-08-27 10:24:07 t 1 2 89739 220 0.00 2019-08-27 11:44:13 2019-08-27 11:45:11 t 1 1 89741 318 0.00 2019-08-27 11:48:05 2019-08-27 11:48:05 f 1 2 89743 324 0.00 2019-08-27 11:58:25 2019-08-27 11:59:21 t 1 2 89744 220 0.00 2019-08-27 11:38:55 2019-08-27 12:05:18 t 1 2 89748 318 0.00 2019-08-27 12:34:42 2019-08-27 12:34:42 f 1 2 89523 288 0.00 2019-08-26 20:56:41 2019-08-26 20:57:46 t 1 2 89527 220 0.00 2019-08-26 21:02:11 2019-08-26 21:02:56 t 1 1 89530 220 0.00 2019-08-26 21:04:08 2019-08-26 21:04:12 t 1 1 89532 220 0.00 2019-08-26 21:04:42 2019-08-26 21:04:46 t 1 1 89534 220 0.00 2019-08-26 21:05:17 2019-08-26 21:05:21 t 1 1 89536 220 0.00 2019-08-26 21:05:20 2019-08-26 21:05:54 t 1 1 89538 220 0.00 2019-08-26 21:05:55 2019-08-26 21:06:26 t 1 1 89541 220 0.00 2019-08-26 21:07:40 2019-08-26 21:07:51 t 1 1 89548 220 0.00 2019-08-26 21:10:58 2019-08-26 21:11:32 t 1 1 89550 220 0.00 2019-08-26 21:12:48 2019-08-26 21:13:25 t 1 1 89551 220 0.00 2019-08-26 21:13:24 2019-08-26 21:13:58 t 1 1 89553 220 0.00 2019-08-26 21:14:02 2019-08-26 21:14:32 t 1 1 89574 220 0.00 2019-08-26 21:28:44 2019-08-26 21:30:13 t 1 1 89577 220 0.00 2019-08-26 21:33:59 2019-08-26 21:34:45 t 1 1 89579 320 0.00 2019-08-26 21:25:57 2019-08-26 21:36:02 t 1 2 89583 220 0.00 2019-08-26 21:37:46 2019-08-26 21:38:12 t 1 1 89593 296 0.00 2019-08-26 20:59:56 2019-08-26 22:00:19 t 1 2 89598 324 0.00 2019-08-26 20:56:02 2019-08-26 22:36:07 t 1 2 89600 306 0.00 2019-08-26 22:41:57 2019-08-26 22:43:01 t 1 2 89609 220 0.00 2019-08-26 20:20:20 2019-08-26 23:03:26 t 1 2 89612 363 0.00 2019-08-26 22:52:44 2019-08-26 23:19:57 t 1 2 89615 331 0.00 2019-08-26 23:26:31 2019-08-26 23:27:37 t 1 2 89617 392 0.00 2019-08-26 23:14:27 2019-08-26 23:39:27 t 1 2 89619 288 0.00 2019-08-26 23:42:19 2019-08-26 23:43:23 t 1 2 89620 306 0.00 2019-08-26 23:45:08 2019-08-26 23:46:15 t 1 2 89621 306 0.00 2019-08-26 23:46:17 2019-08-26 23:46:26 t 1 2 89640 361 0.00 2019-08-26 23:02:33 2019-08-27 00:48:09 t 1 2 89643 346 0.00 2019-08-27 00:44:08 2019-08-27 00:55:20 t 1 2 89648 220 0.00 2019-08-27 01:18:35 2019-08-27 01:34:24 t 1 1 89654 343 0.00 2019-08-27 01:46:12 2019-08-27 01:46:58 t 1 2 89656 288 0.00 2019-08-27 01:48:56 2019-08-27 01:50:01 t 1 2 89659 343 0.00 2019-08-27 01:47:13 2019-08-27 02:07:18 t 1 2 89663 393 0.00 2019-08-27 02:54:17 2019-08-27 03:34:22 t 1 2 89669 247 0.00 2019-08-27 06:57:34 2019-08-27 06:59:46 t 1 2 89670 346 0.00 2019-08-27 07:01:04 2019-08-27 07:26:09 t 1 2 89671 294 0.00 2019-08-27 07:04:30 2019-08-27 07:33:47 t 1 2 89673 306 0.00 2019-08-27 08:05:37 2019-08-27 08:06:43 t 1 2 89678 288 0.00 2019-08-27 08:18:42 2019-08-27 08:19:48 t 1 2 89680 395 0.00 2019-08-27 08:43:24 2019-08-27 08:44:27 t 1 2 89684 395 0.00 2019-08-27 08:48:28 2019-08-27 08:49:31 t 1 2 89686 395 0.00 2019-08-27 08:51:51 2019-08-27 08:52:57 t 1 2 89689 212 0.00 2019-08-27 08:54:00 2019-08-27 08:56:24 t 1 2 89691 212 0.00 2019-08-27 08:57:24 2019-08-27 08:59:28 t 1 2 89693 395 0.00 2019-08-27 09:01:25 2019-08-27 09:02:29 t 1 2 89699 288 0.00 2019-08-27 09:17:37 2019-08-27 09:18:42 t 1 2 89701 212 0.00 2019-08-27 09:24:11 2019-08-27 09:24:49 t 1 2 89705 288 0.00 2019-08-27 09:38:17 2019-08-27 09:39:21 t 1 2 89707 288 0.00 2019-08-27 09:40:54 2019-08-27 09:41:57 t 1 2 89709 288 0.00 2019-08-27 09:42:57 2019-08-27 09:44:01 t 1 2 89712 288 0.00 2019-08-27 09:51:09 2019-08-27 09:52:14 t 1 2 89714 288 0.00 2019-08-27 09:55:20 2019-08-27 09:56:24 t 1 2 89718 220 0.00 2019-08-27 09:45:23 2019-08-27 10:14:26 t 1 1 89725 220 0.00 2019-08-27 10:35:57 2019-08-27 10:37:05 t 1 1 89727 220 0.00 2019-08-27 10:37:26 2019-08-27 10:47:54 t 1 1 89728 296 0.00 2019-08-27 10:50:02 2019-08-27 11:02:26 t 1 2 89730 220 0.00 2019-08-27 11:06:43 2019-08-27 11:07:49 t 1 2 89737 296 0.00 2019-08-27 11:41:19 2019-08-27 11:42:42 t 1 2 89738 220 0.00 2019-08-27 11:43:56 2019-08-27 11:44:02 t 1 1 89742 320 0.00 2019-08-27 11:46:54 2019-08-27 11:56:59 t 1 2 89746 312 0.00 2019-08-27 12:08:15 2019-08-27 12:08:15 f 1 2 89747 296 0.00 2019-08-27 12:31:36 2019-08-27 12:31:54 t 1 2 89753 306 0.00 2019-08-27 12:56:00 2019-08-27 12:57:07 t 1 2 89755 320 0.00 2019-08-27 12:47:51 2019-08-27 13:07:56 t 1 2 89757 361 0.00 2019-08-27 11:27:17 2019-08-27 13:17:22 t 1 2 89766 392 0.00 2019-08-27 13:29:40 2019-08-27 13:57:04 t 1 2 89772 346 0.00 2019-08-27 14:06:56 2019-08-27 14:08:00 t 1 2 89778 327 0.00 2019-08-27 12:20:35 2019-08-27 14:12:59 t 1 2 89779 346 0.00 2019-08-27 13:55:22 2019-08-27 14:15:27 t 1 2 89780 346 0.00 2019-08-27 14:08:46 2019-08-27 14:16:29 t 1 2 89781 361 0.00 2019-08-27 14:01:11 2019-08-27 14:18:29 t 1 2 89789 220 0.00 2019-08-27 14:04:51 2019-08-27 14:52:10 t 1 1 89796 392 0.00 2019-08-27 14:48:40 2019-08-27 15:10:27 t 1 2 89801 306 0.00 2019-08-27 15:16:59 2019-08-27 15:18:03 t 1 2 89803 361 0.00 2019-08-27 14:21:45 2019-08-27 15:20:02 t 1 2 89808 306 0.00 2019-08-27 15:28:52 2019-08-27 15:29:55 t 1 2 89811 320 0.00 2019-08-27 15:06:03 2019-08-27 15:36:08 t 1 2 89812 306 0.00 2019-08-27 15:37:36 2019-08-27 15:38:40 t 1 2 89821 306 0.00 2019-08-27 16:12:59 2019-08-27 16:14:02 t 1 2 89825 306 0.00 2019-08-27 16:25:39 2019-08-27 16:26:46 t 1 2 89826 346 0.00 2019-08-27 16:28:53 2019-08-27 16:29:13 t 1 2 89828 392 0.00 2019-08-27 16:05:58 2019-08-27 16:30:34 t 1 2 89831 379 0.00 2019-08-27 08:48:54 2019-08-27 16:38:59 t 1 2 89832 288 0.00 2019-08-27 16:42:22 2019-08-27 16:43:27 t 1 2 89833 306 0.00 2019-08-27 16:44:36 2019-08-27 16:45:43 t 1 2 89837 306 0.00 2019-08-27 16:56:49 2019-08-27 16:57:53 t 1 2 89840 306 0.00 2019-08-27 16:59:22 2019-08-27 17:00:27 t 1 2 89842 346 0.00 2019-08-27 17:00:36 2019-08-27 17:01:41 t 1 2 89843 292 0.00 2019-08-27 17:01:52 2019-08-27 17:01:55 t 1 2 89846 220 0.00 2019-08-27 17:03:34 2019-08-27 17:05:03 t 1 1 89849 306 0.00 2019-08-27 17:13:38 2019-08-27 17:14:41 t 1 2 89854 294 0.00 2019-08-27 15:31:00 2019-08-27 17:20:23 t 1 2 89857 288 0.00 2019-08-27 17:25:59 2019-08-27 17:27:02 t 1 2 89858 306 0.00 2019-08-27 17:31:07 2019-08-27 17:32:10 t 1 2 89861 392 0.00 2019-08-27 17:30:09 2019-08-27 17:37:34 t 1 2 89865 292 0.00 2019-08-27 17:51:05 2019-08-27 17:52:10 t 1 2 89866 306 0.00 2019-08-27 17:57:39 2019-08-27 17:58:42 t 1 2 89867 220 0.00 2019-08-27 17:57:05 2019-08-27 18:02:28 t 1 2 89875 320 0.00 2019-08-27 18:26:15 2019-08-27 18:46:20 t 1 2 89876 212 0.00 2019-08-27 18:48:10 2019-08-27 18:49:11 t 1 2 89883 355 0.00 2019-08-27 19:06:40 2019-08-27 19:22:16 t 1 2 89888 363 0.00 2019-08-27 17:24:53 2019-08-27 19:29:58 t 1 2 89890 306 0.00 2019-08-27 19:37:48 2019-08-27 19:38:54 t 1 2 89893 392 0.00 2019-08-27 19:09:38 2019-08-27 19:42:06 t 1 2 89897 381 0.00 2019-08-27 19:19:10 2019-08-27 19:54:15 t 1 2 89899 346 0.00 2019-08-27 19:57:28 2019-08-27 19:58:33 t 1 2 89903 324 0.00 2019-08-27 20:11:54 2019-08-27 20:24:22 t 1 2 89910 351 0.00 2019-08-27 20:32:45 2019-08-27 20:50:46 t 1 2 89588 367 0.00 2019-08-26 21:45:03 2019-08-26 21:50:16 t 1 2 89591 372 0.00 2019-08-26 21:59:42 2019-08-26 21:59:47 t 1 2 89597 349 0.00 2019-08-26 22:27:20 2019-08-26 22:28:25 t 1 2 89604 220 0.00 2019-08-26 22:45:51 2019-08-26 22:57:08 t 1 1 89610 393 0.00 2019-08-26 22:26:47 2019-08-26 23:06:53 t 1 2 89616 346 0.00 2019-08-26 23:03:49 2019-08-26 23:33:54 t 1 2 89622 306 0.00 2019-08-26 23:46:36 2019-08-26 23:46:38 t 1 2 89628 296 0.00 2019-08-26 23:56:46 2019-08-26 23:59:05 t 1 2 89632 346 0.00 2019-08-26 23:49:19 2019-08-27 00:19:24 t 1 2 89634 212 0.00 2019-08-27 00:27:54 2019-08-27 00:29:39 t 1 2 89639 363 0.00 2019-08-26 23:50:16 2019-08-27 00:46:10 t 1 2 89641 324 0.00 2019-08-26 23:28:06 2019-08-27 00:48:11 t 1 2 89645 220 0.00 2019-08-26 23:28:37 2019-08-27 01:08:07 t 1 1 89649 320 0.00 2019-08-26 22:59:35 2019-08-27 01:34:40 t 1 2 89651 372 0.00 2019-08-27 00:58:11 2019-08-27 01:36:43 t 1 2 89653 288 0.00 2019-08-27 01:42:11 2019-08-27 01:43:17 t 1 2 89655 288 0.00 2019-08-27 01:46:58 2019-08-27 01:48:01 t 1 2 89660 393 0.00 2019-08-27 02:06:12 2019-08-27 02:51:17 t 1 2 89662 361 0.00 2019-08-27 02:24:31 2019-08-27 03:20:27 t 1 2 89665 346 0.00 2019-08-27 03:34:15 2019-08-27 03:54:20 t 1 2 89674 306 0.00 2019-08-27 08:08:17 2019-08-27 08:09:22 t 1 2 89675 296 0.00 2019-08-27 08:08:14 2019-08-27 08:11:37 t 1 2 89679 288 0.00 2019-08-27 08:21:11 2019-08-27 08:22:15 t 1 2 89682 349 0.00 2019-08-27 08:45:58 2019-08-27 08:47:03 t 1 2 89685 395 0.00 2019-08-27 08:49:49 2019-08-27 08:50:55 t 1 2 89687 395 0.00 2019-08-27 08:53:38 2019-08-27 08:54:42 t 1 2 89692 395 0.00 2019-08-27 08:59:24 2019-08-27 09:00:30 t 1 2 89696 395 0.00 2019-08-27 09:05:40 2019-08-27 09:06:46 t 1 2 89703 288 0.00 2019-08-27 09:36:53 2019-08-27 09:37:56 t 1 2 89711 288 0.00 2019-08-27 09:46:28 2019-08-27 09:47:33 t 1 2 89719 288 0.00 2019-08-27 10:15:45 2019-08-27 10:16:47 t 1 2 89721 288 0.00 2019-08-27 10:19:08 2019-08-27 10:20:11 t 1 2 89729 361 0.00 2019-08-27 10:36:50 2019-08-27 11:06:18 t 1 2 89732 294 0.00 2019-08-27 10:29:51 2019-08-27 11:21:14 t 1 2 89734 292 0.00 2019-08-27 11:34:47 2019-08-27 11:35:55 t 1 2 89745 312 0.00 2019-08-27 12:08:03 2019-08-27 12:08:03 f 1 2 89749 346 0.00 2019-08-27 12:33:40 2019-08-27 12:41:33 t 1 2 89756 367 0.00 2019-08-27 13:11:00 2019-08-27 13:16:29 t 1 2 89763 294 0.00 2019-08-27 13:35:26 2019-08-27 13:39:49 t 1 2 89765 220 0.00 2019-08-27 11:51:26 2019-08-27 13:49:56 t 1 1 89769 324 0.00 2019-08-27 14:04:27 2019-08-27 14:04:46 t 1 2 89771 375 0.00 2019-08-27 14:06:28 2019-08-27 14:07:33 t 1 2 89773 346 0.00 2019-08-27 14:06:29 2019-08-27 14:08:28 t 1 2 89776 324 0.00 2019-08-27 14:12:07 2019-08-27 14:12:46 t 1 2 89782 346 0.00 2019-08-27 14:20:45 2019-08-27 14:23:45 t 1 2 89783 346 0.00 2019-08-27 14:16:34 2019-08-27 14:26:39 t 1 2 89786 212 0.00 2019-08-27 14:38:37 2019-08-27 14:38:49 t 1 2 89794 288 0.00 2019-08-27 14:56:53 2019-08-27 14:57:58 t 1 2 89799 375 0.00 2019-08-27 15:13:12 2019-08-27 15:14:15 t 1 2 89816 306 0.00 2019-08-27 15:46:26 2019-08-27 15:47:26 t 1 2 89817 306 0.00 2019-08-27 15:55:40 2019-08-27 15:56:44 t 1 2 89818 393 0.00 2019-08-27 15:17:42 2019-08-27 15:59:23 t 1 2 89829 292 0.00 2019-08-27 16:31:05 2019-08-27 16:32:02 t 1 2 89830 288 0.00 2019-08-27 16:34:15 2019-08-27 16:35:18 t 1 2 89834 306 0.00 2019-08-27 16:52:32 2019-08-27 16:53:37 t 1 2 89835 320 0.00 2019-08-27 16:46:04 2019-08-27 16:56:09 t 1 2 89838 296 0.00 2019-08-27 16:53:30 2019-08-27 16:59:53 t 1 2 89847 288 0.00 2019-08-27 17:05:37 2019-08-27 17:06:44 t 1 2 89852 292 0.00 2019-08-27 17:19:21 2019-08-27 17:19:37 t 1 2 89856 361 0.00 2019-08-27 16:57:58 2019-08-27 17:25:36 t 1 2 89860 398 0.00 2019-08-27 17:34:22 2019-08-27 17:35:28 t 1 2 89864 346 0.00 2019-08-27 17:39:20 2019-08-27 17:46:36 t 1 2 89868 292 0.00 2019-08-27 18:02:41 2019-08-27 18:03:47 t 1 2 89869 294 0.00 2019-08-27 17:21:19 2019-08-27 18:21:50 t 1 2 89870 311 0.00 2019-08-27 18:02:45 2019-08-27 18:32:51 t 1 2 89877 346 0.00 2019-08-27 17:51:24 2019-08-27 18:50:38 t 1 2 89881 372 0.00 2019-08-27 19:03:49 2019-08-27 19:18:55 t 1 2 89886 288 0.00 2019-08-27 19:28:24 2019-08-27 19:29:27 t 1 2 89889 346 0.00 2019-08-27 19:37:20 2019-08-27 19:38:24 t 1 2 89892 306 0.00 2019-08-27 19:39:19 2019-08-27 19:40:20 t 1 2 89894 306 0.00 2019-08-27 19:42:01 2019-08-27 19:43:08 t 1 2 89895 346 0.00 2019-08-27 19:43:46 2019-08-27 19:47:40 t 1 2 89898 346 0.00 2019-08-27 19:56:25 2019-08-27 19:56:31 t 1 2 89905 311 0.00 2019-08-27 19:34:21 2019-08-27 20:36:01 t 1 2 89906 357 0.00 2019-08-27 17:35:36 2019-08-27 20:45:42 t 1 2 89909 306 0.00 2019-08-27 20:49:03 2019-08-27 20:50:05 t 1 2 89913 220 0.00 2019-08-27 18:12:49 2019-08-27 21:05:57 t 1 2 89916 220 0.00 2019-08-27 21:10:57 2019-08-27 21:11:31 t 1 1 89919 220 0.00 2019-08-27 21:12:41 2019-08-27 21:13:19 t 1 1 89920 220 0.00 2019-08-27 21:13:19 2019-08-27 21:13:53 t 1 1 89922 220 0.00 2019-08-27 21:14:10 2019-08-27 21:14:30 t 1 1 89927 220 0.00 2019-08-27 21:15:37 2019-08-27 21:15:58 t 1 1 89929 220 0.00 2019-08-27 21:16:14 2019-08-27 21:16:31 t 1 1 89934 220 0.00 2019-08-27 21:17:48 2019-08-27 21:18:00 t 1 1 89936 220 0.00 2019-08-27 21:18:19 2019-08-27 21:18:37 t 1 1 89937 220 0.00 2019-08-27 21:18:37 2019-08-27 21:18:56 t 1 1 89939 220 0.00 2019-08-27 21:19:11 2019-08-27 21:19:33 t 1 1 89944 220 0.00 2019-08-27 21:20:46 2019-08-27 21:20:59 t 1 1 89946 220 0.00 2019-08-27 21:21:22 2019-08-27 21:21:36 t 1 1 89951 220 0.00 2019-08-27 21:22:46 2019-08-27 21:23:08 t 1 1 89954 220 0.00 2019-08-27 21:23:43 2019-08-27 21:24:00 t 1 1 89956 220 0.00 2019-08-27 21:24:21 2019-08-27 21:24:34 t 1 1 89961 220 0.00 2019-08-27 21:25:49 2019-08-27 21:26:05 t 1 1 89964 220 0.00 2019-08-27 21:27:02 2019-08-27 21:27:36 t 1 1 89965 220 0.00 2019-08-27 21:27:36 2019-08-27 21:28:13 t 1 1 89966 220 0.00 2019-08-27 21:28:13 2019-08-27 21:28:49 t 1 1 89970 220 0.00 2019-08-27 21:29:58 2019-08-27 21:30:35 t 1 1 89975 220 0.00 2019-08-27 21:32:57 2019-08-27 21:33:32 t 1 1 89976 220 0.00 2019-08-27 21:33:32 2019-08-27 21:34:10 t 1 1 89979 220 0.00 2019-08-27 21:35:22 2019-08-27 21:35:54 t 1 1 89989 288 0.00 2019-08-27 21:53:00 2019-08-27 21:54:04 t 1 2 89993 288 0.00 2019-08-27 22:23:37 2019-08-27 22:24:42 t 1 2 89994 346 0.00 2019-08-27 22:00:51 2019-08-27 22:28:26 t 1 2 89998 343 0.00 2019-08-27 22:42:43 2019-08-27 22:43:46 t 1 2 90000 288 0.00 2019-08-27 22:48:57 2019-08-27 22:50:05 t 1 2 90007 212 0.00 2019-08-27 23:09:14 2019-08-27 23:10:17 t 1 2 90008 346 0.00 2019-08-27 23:02:39 2019-08-27 23:12:44 t 1 2 89752 355 0.00 2019-08-27 12:34:50 2019-08-27 12:53:27 t 1 2 89758 306 0.00 2019-08-27 13:20:38 2019-08-27 13:21:45 t 1 2 89759 346 0.00 2019-08-27 12:49:21 2019-08-27 13:24:27 t 1 2 89760 346 0.00 2019-08-27 12:07:06 2019-08-27 13:27:11 t 1 2 89762 324 0.00 2019-08-27 13:34:35 2019-08-27 13:35:28 t 1 2 89764 212 0.00 2019-08-27 13:40:19 2019-08-27 13:41:27 t 1 2 89770 346 0.00 2019-08-27 14:05:27 2019-08-27 14:06:29 t 1 2 89775 306 0.00 2019-08-27 14:09:02 2019-08-27 14:10:07 t 1 2 89777 375 0.00 2019-08-27 14:11:55 2019-08-27 14:12:59 t 1 2 89784 346 0.00 2019-08-27 14:11:55 2019-08-27 14:27:00 t 1 2 89785 306 0.00 2019-08-27 14:35:38 2019-08-27 14:36:44 t 1 2 89787 212 0.00 2019-08-27 14:39:08 2019-08-27 14:39:39 t 1 2 89788 306 0.00 2019-08-27 14:48:05 2019-08-27 14:49:06 t 1 2 89791 346 0.00 2019-08-27 14:22:51 2019-08-27 14:52:57 t 1 2 89792 288 0.00 2019-08-27 14:55:19 2019-08-27 14:56:23 t 1 2 89795 306 0.00 2019-08-27 15:03:54 2019-08-27 15:04:58 t 1 2 89800 393 0.00 2019-08-27 15:16:59 2019-08-27 15:17:13 t 1 2 89802 306 0.00 2019-08-27 15:18:47 2019-08-27 15:19:51 t 1 2 89805 306 0.00 2019-08-27 15:21:45 2019-08-27 15:22:49 t 1 2 89813 367 0.00 2019-08-27 15:39:39 2019-08-27 15:41:46 t 1 2 89814 306 0.00 2019-08-27 15:44:18 2019-08-27 15:45:22 t 1 2 89819 349 0.00 2019-08-27 16:07:24 2019-08-27 16:08:28 t 1 2 89820 318 0.00 2019-08-27 16:13:52 2019-08-27 16:13:52 f 1 2 89823 288 0.00 2019-08-27 16:15:05 2019-08-27 16:16:09 t 1 2 89827 346 0.00 2019-08-27 16:29:20 2019-08-27 16:30:26 t 1 2 89836 306 0.00 2019-08-27 16:55:25 2019-08-27 16:56:26 t 1 2 89839 247 0.00 2019-08-27 16:57:38 2019-08-27 17:00:25 t 1 2 89841 306 0.00 2019-08-27 17:00:36 2019-08-27 17:01:40 t 1 2 89845 306 0.00 2019-08-27 17:03:39 2019-08-27 17:04:42 t 1 2 89850 288 0.00 2019-08-27 17:16:40 2019-08-27 17:17:44 t 1 2 89853 288 0.00 2019-08-27 17:18:51 2019-08-27 17:19:55 t 1 2 89862 346 0.00 2019-08-27 17:38:39 2019-08-27 17:38:43 t 1 2 89863 375 0.00 2019-08-27 17:40:04 2019-08-27 17:41:08 t 1 2 89871 367 0.00 2019-08-27 18:23:04 2019-08-27 18:35:06 t 1 2 89873 296 0.00 2019-08-27 18:35:29 2019-08-27 18:37:53 t 1 2 89878 306 0.00 2019-08-27 18:50:24 2019-08-27 18:51:30 t 1 2 89880 346 0.00 2019-08-27 19:17:25 2019-08-27 19:18:30 t 1 2 89887 212 0.00 2019-08-27 19:29:32 2019-08-27 19:29:52 t 1 2 89900 220 0.00 2019-08-27 19:46:37 2019-08-27 19:59:04 t 1 1 89904 212 0.00 2019-08-27 20:28:39 2019-08-27 20:29:48 t 1 2 89908 220 0.00 2019-08-27 20:18:36 2019-08-27 20:48:52 t 1 1 89924 220 0.00 2019-08-27 21:14:44 2019-08-27 21:15:05 t 1 1 89931 220 0.00 2019-08-27 21:16:49 2019-08-27 21:17:08 t 1 1 89941 220 0.00 2019-08-27 21:19:48 2019-08-27 21:20:08 t 1 1 89948 220 0.00 2019-08-27 21:21:54 2019-08-27 21:22:12 t 1 1 89958 220 0.00 2019-08-27 21:24:53 2019-08-27 21:25:12 t 1 1 89972 220 0.00 2019-08-27 21:31:09 2019-08-27 21:31:45 t 1 1 89978 220 0.00 2019-08-27 21:34:45 2019-08-27 21:35:23 t 1 1 89982 220 0.00 2019-08-27 21:37:05 2019-08-27 21:37:43 t 1 1 89985 220 0.00 2019-08-27 21:38:15 2019-08-27 21:48:19 t 1 1 89987 296 0.00 2019-08-27 21:44:16 2019-08-27 21:48:39 t 1 2 89992 398 0.00 2019-08-27 22:17:35 2019-08-27 22:23:00 t 1 2 89999 220 0.00 2019-08-27 21:27:55 2019-08-27 22:44:18 t 1 1 90001 306 0.00 2019-08-27 22:55:32 2019-08-27 22:56:38 t 1 2 90009 346 0.00 2019-08-27 23:14:58 2019-08-27 23:16:01 t 1 2 90011 349 0.00 2019-08-27 23:21:00 2019-08-27 23:22:03 t 1 2 90018 363 0.00 2019-08-27 22:37:11 2019-08-27 23:37:17 t 1 2 90024 392 0.00 2019-08-27 23:19:16 2019-08-27 23:44:21 t 1 2 90028 288 0.00 2019-08-28 00:01:16 2019-08-28 00:02:21 t 1 2 90037 339 0.00 2019-08-28 00:47:14 2019-08-28 00:50:37 t 1 2 90040 220 0.00 2019-08-28 00:51:17 2019-08-28 01:06:12 t 1 1 90044 392 0.00 2019-08-28 01:07:17 2019-08-28 01:34:24 t 1 2 90045 346 0.00 2019-08-28 01:22:07 2019-08-28 01:42:13 t 1 2 90046 324 0.00 2019-08-28 01:30:09 2019-08-28 01:50:14 t 1 2 90050 346 0.00 2019-08-28 01:53:06 2019-08-28 02:13:11 t 1 2 90053 346 0.00 2019-08-28 02:04:34 2019-08-28 02:19:39 t 1 2 90061 288 0.00 2019-08-28 03:53:37 2019-08-28 03:54:42 t 1 2 90063 288 0.00 2019-08-28 04:03:39 2019-08-28 04:04:43 t 1 2 90072 346 0.00 2019-08-28 07:33:05 2019-08-28 07:33:47 t 1 2 90074 306 0.00 2019-08-28 07:56:35 2019-08-28 07:57:37 t 1 2 90077 306 0.00 2019-08-28 08:13:19 2019-08-28 08:14:25 t 1 2 90079 375 0.00 2019-08-28 08:21:57 2019-08-28 08:23:04 t 1 2 90084 288 0.00 2019-08-28 08:30:48 2019-08-28 08:31:53 t 1 2 90085 288 0.00 2019-08-28 08:32:29 2019-08-28 08:33:36 t 1 2 90087 398 0.00 2019-08-28 08:34:17 2019-08-28 08:35:22 t 1 2 90093 220 0.00 2019-08-28 08:38:41 2019-08-28 08:39:18 t 1 1 90098 220 0.00 2019-08-28 08:40:16 2019-08-28 08:40:51 t 1 1 90101 288 0.00 2019-08-28 08:41:11 2019-08-28 08:42:18 t 1 2 90109 288 0.00 2019-08-28 08:47:28 2019-08-28 08:48:36 t 1 2 90111 220 0.00 2019-08-28 08:48:29 2019-08-28 08:49:09 t 1 1 90119 220 0.00 2019-08-28 08:52:03 2019-08-28 08:52:36 t 1 1 90123 220 0.00 2019-08-28 08:54:24 2019-08-28 08:54:57 t 1 1 90132 220 0.00 2019-08-28 08:58:59 2019-08-28 09:00:31 t 1 1 90135 220 0.00 2019-08-28 09:01:38 2019-08-28 09:02:14 t 1 1 90139 220 0.00 2019-08-28 09:04:11 2019-08-28 09:04:49 t 1 1 90142 220 0.00 2019-08-28 09:06:11 2019-08-28 09:07:29 t 1 1 90146 220 0.00 2019-08-28 09:09:14 2019-08-28 09:09:45 t 1 1 90150 220 0.00 2019-08-28 09:11:30 2019-08-28 09:11:35 t 1 1 90151 306 0.00 2019-08-28 09:13:52 2019-08-28 09:14:56 t 1 2 90154 346 0.00 2019-08-28 08:56:11 2019-08-28 09:31:16 t 1 2 90156 306 0.00 2019-08-28 09:38:01 2019-08-28 09:39:03 t 1 2 90159 331 0.00 2019-08-28 09:42:43 2019-08-28 09:43:43 t 1 2 90164 220 0.00 2019-08-28 09:49:59 2019-08-28 09:50:33 t 1 1 90167 220 0.00 2019-08-28 09:51:41 2019-08-28 09:52:13 t 1 1 90175 220 0.00 2019-08-28 09:55:40 2019-08-28 09:56:42 t 1 1 90185 220 0.00 2019-08-28 10:02:13 2019-08-28 10:02:47 t 1 1 90186 220 0.00 2019-08-28 10:02:47 2019-08-28 10:03:45 t 1 1 90197 220 0.00 2019-08-28 10:10:46 2019-08-28 10:11:20 t 1 1 90200 220 0.00 2019-08-28 10:12:28 2019-08-28 10:13:03 t 1 1 90201 212 0.00 2019-08-28 10:13:04 2019-08-28 10:13:32 t 1 2 90202 220 0.00 2019-08-28 10:13:03 2019-08-28 10:13:39 t 1 1 90204 294 0.00 2019-08-28 10:14:05 2019-08-28 10:16:29 t 1 2 90216 349 0.00 2019-08-28 11:13:16 2019-08-28 11:14:22 t 1 2 90221 220 0.00 2019-08-28 10:19:40 2019-08-28 11:28:35 t 1 1 90223 220 0.00 2019-08-28 11:30:18 2019-08-28 11:30:52 t 1 1 90231 220 0.00 2019-08-28 11:38:13 2019-08-28 11:48:07 t 1 1 90233 220 0.00 2019-08-28 11:51:00 2019-08-28 11:52:29 t 1 1 89822 288 0.00 2019-08-27 16:13:20 2019-08-27 16:14:29 t 1 2 89824 288 0.00 2019-08-27 16:20:17 2019-08-27 16:21:21 t 1 2 89844 306 0.00 2019-08-27 17:02:16 2019-08-27 17:03:19 t 1 2 89848 288 0.00 2019-08-27 17:07:55 2019-08-27 17:08:58 t 1 2 89851 357 0.00 2019-08-27 16:29:03 2019-08-27 17:19:08 t 1 2 89855 346 0.00 2019-08-27 13:19:23 2019-08-27 17:24:28 t 1 2 89859 398 0.00 2019-08-27 17:33:36 2019-08-27 17:34:05 t 1 2 89872 381 0.00 2019-08-27 18:21:47 2019-08-27 18:36:52 t 1 2 89874 346 0.00 2019-08-27 18:34:50 2019-08-27 18:44:55 t 1 2 89879 247 0.00 2019-08-27 18:54:10 2019-08-27 18:56:32 t 1 2 89882 320 0.00 2019-08-27 18:45:12 2019-08-27 19:20:17 t 1 2 89884 381 0.00 2019-08-27 19:07:31 2019-08-27 19:22:36 t 1 2 89885 306 0.00 2019-08-27 19:27:56 2019-08-27 19:29:03 t 1 2 89891 296 0.00 2019-08-27 19:35:24 2019-08-27 19:39:47 t 1 2 89896 346 0.00 2019-08-27 19:45:44 2019-08-27 19:49:18 t 1 2 89901 288 0.00 2019-08-27 20:02:42 2019-08-27 20:03:45 t 1 2 89902 331 0.00 2019-08-27 20:18:24 2019-08-27 20:19:28 t 1 2 89907 361 0.00 2019-08-27 17:40:26 2019-08-27 20:48:06 t 1 2 89911 220 0.00 2019-08-27 20:49:09 2019-08-27 20:52:40 t 1 1 89914 220 0.00 2019-08-27 21:05:34 2019-08-27 21:10:18 t 1 1 89917 220 0.00 2019-08-27 21:11:31 2019-08-27 21:12:09 t 1 1 89923 220 0.00 2019-08-27 21:14:29 2019-08-27 21:14:45 t 1 1 89925 220 0.00 2019-08-27 21:15:05 2019-08-27 21:15:23 t 1 1 89930 220 0.00 2019-08-27 21:16:31 2019-08-27 21:16:50 t 1 1 89932 220 0.00 2019-08-27 21:17:08 2019-08-27 21:17:25 t 1 1 89940 220 0.00 2019-08-27 21:19:33 2019-08-27 21:19:48 t 1 1 89942 220 0.00 2019-08-27 21:20:08 2019-08-27 21:20:24 t 1 1 89947 220 0.00 2019-08-27 21:21:36 2019-08-27 21:21:54 t 1 1 89949 220 0.00 2019-08-27 21:22:12 2019-08-27 21:22:32 t 1 1 89957 220 0.00 2019-08-27 21:24:33 2019-08-27 21:24:53 t 1 1 89959 220 0.00 2019-08-27 21:25:11 2019-08-27 21:25:29 t 1 1 89968 220 0.00 2019-08-27 21:26:31 2019-08-27 21:29:34 t 1 2 89973 220 0.00 2019-08-27 21:31:45 2019-08-27 21:32:20 t 1 1 89977 220 0.00 2019-08-27 21:34:10 2019-08-27 21:34:45 t 1 1 89980 220 0.00 2019-08-27 21:35:54 2019-08-27 21:36:31 t 1 1 89983 220 0.00 2019-08-27 21:37:43 2019-08-27 21:38:15 t 1 1 89984 372 0.00 2019-08-27 21:36:04 2019-08-27 21:40:36 t 1 2 89988 220 0.00 2019-08-27 21:48:19 2019-08-27 21:49:17 t 1 1 89997 351 0.00 2019-08-27 22:34:14 2019-08-27 22:37:25 t 1 2 90005 324 0.00 2019-08-27 19:38:34 2019-08-27 23:08:39 t 1 2 90006 212 0.00 2019-08-27 23:08:47 2019-08-27 23:08:54 t 1 2 90010 212 0.00 2019-08-27 23:19:28 2019-08-27 23:20:14 t 1 2 90014 220 0.00 2019-08-27 21:49:17 2019-08-27 23:24:25 t 1 1 90016 306 0.00 2019-08-27 23:33:04 2019-08-27 23:34:00 t 1 2 90017 306 0.00 2019-08-27 23:34:41 2019-08-27 23:35:43 t 1 2 90019 220 0.00 2019-08-27 23:34:53 2019-08-27 23:38:26 t 1 1 90021 361 0.00 2019-08-27 20:48:09 2019-08-27 23:42:07 t 1 2 90029 296 0.00 2019-08-28 00:03:13 2019-08-28 00:04:37 t 1 2 90031 288 0.00 2019-08-28 00:13:43 2019-08-28 00:14:46 t 1 2 90032 212 0.00 2019-08-28 00:27:43 2019-08-28 00:28:30 t 1 2 90033 320 0.00 2019-08-27 21:49:38 2019-08-28 00:29:43 t 1 2 90035 220 0.00 2019-08-28 00:37:22 2019-08-28 00:43:00 t 1 2 90036 220 0.00 2019-08-28 00:44:33 2019-08-28 00:49:56 t 1 2 90038 363 0.00 2019-08-27 23:29:20 2019-08-28 00:59:25 t 1 2 90039 320 0.00 2019-08-28 00:55:00 2019-08-28 01:05:05 t 1 2 90041 392 0.00 2019-08-28 00:13:39 2019-08-28 01:07:11 t 1 2 90043 320 0.00 2019-08-28 01:08:58 2019-08-28 01:19:03 t 1 2 90052 320 0.00 2019-08-28 01:26:13 2019-08-28 02:16:18 t 1 2 90054 361 0.00 2019-08-28 01:07:31 2019-08-28 02:49:16 t 1 2 90055 392 0.00 2019-08-28 02:34:19 2019-08-28 02:51:54 t 1 2 90056 343 0.00 2019-08-28 01:50:19 2019-08-28 03:25:24 t 1 2 90059 288 0.00 2019-08-28 03:46:21 2019-08-28 03:47:26 t 1 2 90064 324 0.00 2019-08-28 01:41:19 2019-08-28 04:10:09 t 1 2 90068 220 0.00 2019-08-28 05:22:55 2019-08-28 05:24:08 t 1 1 90075 306 0.00 2019-08-28 07:59:19 2019-08-28 08:00:21 t 1 2 90078 398 0.00 2019-08-28 08:21:51 2019-08-28 08:22:54 t 1 2 90080 398 0.00 2019-08-28 08:23:48 2019-08-28 08:24:50 t 1 2 90086 398 0.00 2019-08-28 08:32:47 2019-08-28 08:33:51 t 1 2 90090 288 0.00 2019-08-28 08:36:59 2019-08-28 08:38:06 t 1 2 90096 288 0.00 2019-08-28 08:39:59 2019-08-28 08:40:03 t 1 2 90100 296 0.00 2019-08-28 08:36:42 2019-08-28 08:42:03 t 1 2 90102 220 0.00 2019-08-28 08:42:02 2019-08-28 08:42:39 t 1 1 90103 324 0.00 2019-08-28 08:12:22 2019-08-28 08:45:42 t 1 2 90104 220 0.00 2019-08-28 08:42:39 2019-08-28 08:46:20 t 1 1 90106 288 0.00 2019-08-28 08:46:03 2019-08-28 08:47:08 t 1 2 90108 220 0.00 2019-08-28 08:47:48 2019-08-28 08:48:29 t 1 1 90110 395 0.00 2019-08-28 08:46:08 2019-08-28 08:48:48 t 1 2 90113 288 0.00 2019-08-28 08:48:57 2019-08-28 08:50:01 t 1 2 90117 220 0.00 2019-08-28 08:50:54 2019-08-28 08:51:27 t 1 1 90120 220 0.00 2019-08-28 08:52:36 2019-08-28 08:53:10 t 1 1 90121 220 0.00 2019-08-28 08:53:10 2019-08-28 08:53:48 t 1 1 90127 220 0.00 2019-08-28 08:56:41 2019-08-28 08:57:13 t 1 1 90129 346 0.00 2019-08-28 08:42:50 2019-08-28 08:57:55 t 1 2 90133 220 0.00 2019-08-28 09:00:30 2019-08-28 09:01:05 t 1 1 90136 220 0.00 2019-08-28 09:02:14 2019-08-28 09:02:56 t 1 1 90143 220 0.00 2019-08-28 09:07:28 2019-08-28 09:08:03 t 1 1 90144 220 0.00 2019-08-28 09:08:03 2019-08-28 09:08:38 t 1 1 90149 220 0.00 2019-08-28 09:10:53 2019-08-28 09:11:30 t 1 1 90161 395 0.00 2019-08-28 09:45:18 2019-08-28 09:46:22 t 1 2 90165 220 0.00 2019-08-28 09:50:32 2019-08-28 09:51:07 t 1 1 90168 220 0.00 2019-08-28 09:52:13 2019-08-28 09:52:46 t 1 1 90171 220 0.00 2019-08-28 09:53:58 2019-08-28 09:54:31 t 1 1 90181 220 0.00 2019-08-28 09:59:43 2019-08-28 10:00:33 t 1 1 90183 212 0.00 2019-08-28 10:01:37 2019-08-28 10:01:57 t 1 2 90190 220 0.00 2019-08-28 10:06:57 2019-08-28 10:07:32 t 1 1 90193 220 0.00 2019-08-28 10:08:49 2019-08-28 10:09:36 t 1 1 90198 220 0.00 2019-08-28 10:11:20 2019-08-28 10:11:54 t 1 1 90205 220 0.00 2019-08-28 10:15:06 2019-08-28 10:17:36 t 1 1 90208 220 0.00 2019-08-28 10:18:44 2019-08-28 10:18:58 t 1 1 90213 392 0.00 2019-08-28 10:34:46 2019-08-28 10:54:24 t 1 2 90215 306 0.00 2019-08-28 11:04:57 2019-08-28 11:05:59 t 1 2 90217 306 0.00 2019-08-28 11:16:24 2019-08-28 11:17:29 t 1 2 90218 392 0.00 2019-08-28 11:12:00 2019-08-28 11:19:36 t 1 2 90229 212 0.00 2019-08-28 11:42:47 2019-08-28 11:43:23 t 1 2 90230 346 0.00 2019-08-28 11:43:12 2019-08-28 11:45:30 t 1 2 90232 288 0.00 2019-08-28 11:51:19 2019-08-28 11:52:23 t 1 2 90236 361 0.00 2019-08-28 11:50:48 2019-08-28 11:55:28 t 1 2 89912 220 0.00 2019-08-27 20:50:01 2019-08-27 21:05:35 t 1 1 89915 220 0.00 2019-08-27 21:10:18 2019-08-27 21:10:58 t 1 1 89918 220 0.00 2019-08-27 21:12:09 2019-08-27 21:12:41 t 1 1 89921 220 0.00 2019-08-27 21:13:52 2019-08-27 21:14:10 t 1 1 89926 220 0.00 2019-08-27 21:15:23 2019-08-27 21:15:37 t 1 1 89928 220 0.00 2019-08-27 21:15:58 2019-08-27 21:16:15 t 1 1 89933 220 0.00 2019-08-27 21:17:24 2019-08-27 21:17:48 t 1 1 89935 220 0.00 2019-08-27 21:18:00 2019-08-27 21:18:19 t 1 1 89938 220 0.00 2019-08-27 21:18:56 2019-08-27 21:19:12 t 1 1 89943 220 0.00 2019-08-27 21:20:23 2019-08-27 21:20:46 t 1 1 89945 220 0.00 2019-08-27 21:20:59 2019-08-27 21:21:22 t 1 1 89950 220 0.00 2019-08-27 21:22:32 2019-08-27 21:22:46 t 1 1 89952 220 0.00 2019-08-27 21:23:08 2019-08-27 21:23:23 t 1 1 89953 220 0.00 2019-08-27 21:23:23 2019-08-27 21:23:44 t 1 1 89955 220 0.00 2019-08-27 21:24:00 2019-08-27 21:24:21 t 1 1 89960 220 0.00 2019-08-27 21:25:28 2019-08-27 21:25:50 t 1 1 89962 220 0.00 2019-08-27 21:26:05 2019-08-27 21:26:25 t 1 1 89963 220 0.00 2019-08-27 21:26:24 2019-08-27 21:27:02 t 1 1 89967 220 0.00 2019-08-27 21:28:48 2019-08-27 21:29:26 t 1 1 89969 220 0.00 2019-08-27 21:29:26 2019-08-27 21:29:58 t 1 1 89971 220 0.00 2019-08-27 21:30:34 2019-08-27 21:31:09 t 1 1 89974 220 0.00 2019-08-27 21:32:20 2019-08-27 21:32:58 t 1 1 89981 220 0.00 2019-08-27 21:36:30 2019-08-27 21:37:05 t 1 1 89986 346 0.00 2019-08-27 21:47:22 2019-08-27 21:48:28 t 1 2 89990 324 0.00 2019-08-27 22:02:16 2019-08-27 22:12:21 t 1 2 89991 306 0.00 2019-08-27 22:16:33 2019-08-27 22:17:40 t 1 2 89995 294 0.00 2019-08-27 20:39:14 2019-08-27 22:35:38 t 1 2 89996 331 0.00 2019-08-27 22:36:24 2019-08-27 22:36:33 t 1 2 90002 306 0.00 2019-08-27 22:57:14 2019-08-27 22:58:16 t 1 2 90003 212 0.00 2019-08-27 22:53:50 2019-08-27 23:00:13 t 1 2 90004 346 0.00 2019-08-27 23:05:18 2019-08-27 23:06:19 t 1 2 90012 220 0.00 2019-08-27 21:41:58 2019-08-27 23:22:35 t 1 2 90023 346 0.00 2019-08-27 23:35:13 2019-08-27 23:43:24 t 1 2 90025 212 0.00 2019-08-27 23:45:00 2019-08-27 23:45:37 t 1 2 90026 385 0.00 2019-08-27 23:14:38 2019-08-27 23:48:16 t 1 2 90030 212 0.00 2019-08-28 00:08:52 2019-08-28 00:09:46 t 1 2 90048 392 0.00 2019-08-28 01:54:35 2019-08-28 02:04:41 t 1 2 90051 393 0.00 2019-08-28 01:45:54 2019-08-28 02:15:59 t 1 2 90057 392 0.00 2019-08-28 03:10:50 2019-08-28 03:40:28 t 1 2 90058 322 0.00 2019-08-28 02:39:35 2019-08-28 03:45:41 t 1 2 90060 288 0.00 2019-08-28 03:47:40 2019-08-28 03:48:44 t 1 2 90062 288 0.00 2019-08-28 03:55:23 2019-08-28 03:56:28 t 1 2 90065 343 0.00 2019-08-28 04:17:45 2019-08-28 04:22:55 t 1 2 90066 220 0.00 2019-08-28 04:47:48 2019-08-28 05:06:10 t 1 1 90069 294 0.00 2019-08-28 05:39:36 2019-08-28 06:39:59 t 1 2 90070 395 0.00 2019-08-28 07:12:54 2019-08-28 07:24:28 t 1 2 90073 346 0.00 2019-08-28 00:04:18 2019-08-28 07:33:47 t 1 2 90081 398 0.00 2019-08-28 08:26:29 2019-08-28 08:27:33 t 1 2 90083 288 0.00 2019-08-28 08:29:28 2019-08-28 08:30:31 t 1 2 90088 220 0.00 2019-08-28 07:48:23 2019-08-28 08:36:44 t 1 1 90089 398 0.00 2019-08-28 08:36:27 2019-08-28 08:37:30 t 1 2 90091 220 0.00 2019-08-28 08:36:43 2019-08-28 08:38:42 t 1 1 90092 398 0.00 2019-08-28 08:38:03 2019-08-28 08:39:10 t 1 2 90094 288 0.00 2019-08-28 08:38:35 2019-08-28 08:39:40 t 1 2 90095 212 0.00 2019-08-28 08:38:55 2019-08-28 08:39:59 t 1 2 90099 220 0.00 2019-08-28 08:40:51 2019-08-28 08:42:02 t 1 1 90105 220 0.00 2019-08-28 08:46:20 2019-08-28 08:46:58 t 1 1 90112 220 0.00 2019-08-28 08:49:09 2019-08-28 08:49:45 t 1 1 90115 212 0.00 2019-08-28 08:49:32 2019-08-28 08:50:34 t 1 2 90118 220 0.00 2019-08-28 08:51:27 2019-08-28 08:52:03 t 1 1 90124 220 0.00 2019-08-28 08:54:56 2019-08-28 08:55:34 t 1 1 90128 220 0.00 2019-08-28 08:57:12 2019-08-28 08:57:49 t 1 1 90134 220 0.00 2019-08-28 09:01:05 2019-08-28 09:01:39 t 1 1 90140 220 0.00 2019-08-28 09:04:48 2019-08-28 09:05:32 t 1 1 90147 220 0.00 2019-08-28 09:09:45 2019-08-28 09:10:19 t 1 1 90158 331 0.00 2019-08-28 09:41:01 2019-08-28 09:42:07 t 1 2 90163 220 0.00 2019-08-28 09:12:00 2019-08-28 09:49:59 t 1 1 90166 220 0.00 2019-08-28 09:51:07 2019-08-28 09:51:42 t 1 1 90173 220 0.00 2019-08-28 09:54:31 2019-08-28 09:55:05 t 1 1 90176 220 0.00 2019-08-28 09:56:42 2019-08-28 09:57:17 t 1 1 90179 346 0.00 2019-08-28 09:32:32 2019-08-28 09:59:24 t 1 2 90182 220 0.00 2019-08-28 10:00:33 2019-08-28 10:01:08 t 1 1 90187 220 0.00 2019-08-28 10:03:45 2019-08-28 10:04:19 t 1 1 90188 220 0.00 2019-08-28 10:04:18 2019-08-28 10:06:00 t 1 1 90194 220 0.00 2019-08-28 10:09:36 2019-08-28 10:10:12 t 1 1 90196 367 0.00 2019-08-28 09:54:59 2019-08-28 10:11:06 t 1 2 90203 220 0.00 2019-08-28 10:13:39 2019-08-28 10:15:06 t 1 1 90206 220 0.00 2019-08-28 10:17:36 2019-08-28 10:18:09 t 1 1 90207 220 0.00 2019-08-28 10:18:09 2019-08-28 10:18:44 t 1 1 90209 331 0.00 2019-08-28 10:21:36 2019-08-28 10:22:41 t 1 2 90210 212 0.00 2019-08-28 10:25:54 2019-08-28 10:26:11 t 1 2 90212 346 0.00 2019-08-28 10:08:09 2019-08-28 10:38:15 t 1 2 90224 220 0.00 2019-08-28 11:30:51 2019-08-28 11:31:22 t 1 1 90226 288 0.00 2019-08-28 11:32:14 2019-08-28 11:33:17 t 1 2 90235 220 0.00 2019-08-28 11:52:34 2019-08-28 11:55:19 t 1 1 90238 288 0.00 2019-08-28 11:56:40 2019-08-28 11:57:43 t 1 2 90243 288 0.00 2019-08-28 12:03:00 2019-08-28 12:04:05 t 1 2 90244 220 0.00 2019-08-28 12:04:21 2019-08-28 12:04:34 t 1 1 90246 375 0.00 2019-08-28 12:04:48 2019-08-28 12:05:51 t 1 2 90263 357 0.00 2019-08-28 10:19:04 2019-08-28 13:04:10 t 1 2 90265 320 0.00 2019-08-28 13:06:18 2019-08-28 13:06:18 f 1 2 90269 346 0.00 2019-08-28 10:32:00 2019-08-28 13:17:05 t 1 2 90278 320 0.00 2019-08-28 13:36:29 2019-08-28 13:36:29 f 1 2 90282 247 0.00 2019-08-28 13:47:05 2019-08-28 13:47:17 t 1 2 90284 346 0.00 2019-08-28 14:01:16 2019-08-28 14:11:36 t 1 2 90287 392 0.00 2019-08-28 14:15:55 2019-08-28 14:20:44 t 1 2 90289 212 0.00 2019-08-28 14:25:02 2019-08-28 14:25:25 t 1 2 90294 327 0.00 2019-08-28 13:40:40 2019-08-28 14:40:58 t 1 2 90309 306 0.00 2019-08-28 15:13:21 2019-08-28 15:14:29 t 1 2 90318 212 0.00 2019-08-28 15:37:05 2019-08-28 15:37:42 t 1 2 90323 346 0.00 2019-08-28 15:19:24 2019-08-28 15:56:21 t 1 2 90325 395 0.00 2019-08-28 15:44:30 2019-08-28 16:00:52 t 1 2 90326 346 0.00 2019-08-28 16:00:57 2019-08-28 16:03:07 t 1 2 90328 346 0.00 2019-08-28 16:03:09 2019-08-28 16:04:02 t 1 2 90329 324 0.00 2019-08-28 16:04:03 2019-08-28 16:04:09 t 1 2 90330 324 0.00 2019-08-28 16:04:13 2019-08-28 16:04:20 t 1 2 90332 346 0.00 2019-08-28 16:04:32 2019-08-28 16:06:25 t 1 2 90013 372 0.00 2019-08-27 21:31:08 2019-08-27 23:22:46 t 1 2 90015 381 0.00 2019-08-27 23:33:01 2019-08-27 23:33:13 t 1 2 90020 247 0.00 2019-08-27 23:38:42 2019-08-27 23:40:10 t 1 2 90022 395 0.00 2019-08-27 23:32:59 2019-08-27 23:42:35 t 1 2 90027 392 0.00 2019-08-27 23:50:52 2019-08-27 23:58:51 t 1 2 90034 320 0.00 2019-08-28 00:27:04 2019-08-28 00:37:10 t 1 2 90042 392 0.00 2019-08-28 00:54:08 2019-08-28 01:17:42 t 1 2 90047 346 0.00 2019-08-28 01:36:39 2019-08-28 01:52:52 t 1 2 90049 346 0.00 2019-08-28 01:59:14 2019-08-28 02:09:19 t 1 2 90067 220 0.00 2019-08-28 05:06:10 2019-08-28 05:22:55 t 1 1 90071 294 0.00 2019-08-28 06:56:22 2019-08-28 07:33:47 t 1 2 90076 320 0.00 2019-08-28 07:46:27 2019-08-28 08:01:32 t 1 2 90082 398 0.00 2019-08-28 08:28:15 2019-08-28 08:29:18 t 1 2 90097 220 0.00 2019-08-28 08:39:18 2019-08-28 08:40:16 t 1 1 90107 220 0.00 2019-08-28 08:46:57 2019-08-28 08:47:49 t 1 1 90114 220 0.00 2019-08-28 08:49:45 2019-08-28 08:50:20 t 1 1 90116 220 0.00 2019-08-28 08:50:20 2019-08-28 08:50:54 t 1 1 90122 220 0.00 2019-08-28 08:53:47 2019-08-28 08:54:24 t 1 1 90125 220 0.00 2019-08-28 08:55:34 2019-08-28 08:56:06 t 1 1 90126 220 0.00 2019-08-28 08:56:05 2019-08-28 08:56:41 t 1 1 90130 220 0.00 2019-08-28 08:57:49 2019-08-28 08:58:21 t 1 1 90131 220 0.00 2019-08-28 08:58:21 2019-08-28 08:58:59 t 1 1 90137 220 0.00 2019-08-28 09:02:56 2019-08-28 09:03:37 t 1 1 90138 220 0.00 2019-08-28 09:03:37 2019-08-28 09:04:12 t 1 1 90141 220 0.00 2019-08-28 09:05:32 2019-08-28 09:06:11 t 1 1 90145 220 0.00 2019-08-28 09:08:37 2019-08-28 09:09:15 t 1 1 90148 220 0.00 2019-08-28 09:10:19 2019-08-28 09:10:53 t 1 1 90152 306 0.00 2019-08-28 09:15:17 2019-08-28 09:16:20 t 1 2 90153 306 0.00 2019-08-28 09:17:41 2019-08-28 09:18:44 t 1 2 90155 212 0.00 2019-08-28 09:36:52 2019-08-28 09:37:26 t 1 2 90157 395 0.00 2019-08-28 09:40:54 2019-08-28 09:41:58 t 1 2 90160 395 0.00 2019-08-28 09:42:48 2019-08-28 09:43:52 t 1 2 90162 395 0.00 2019-08-28 09:46:39 2019-08-28 09:47:43 t 1 2 90169 220 0.00 2019-08-28 09:52:46 2019-08-28 09:53:24 t 1 1 90170 220 0.00 2019-08-28 09:53:23 2019-08-28 09:53:58 t 1 1 90172 320 0.00 2019-08-28 09:34:53 2019-08-28 09:54:58 t 1 2 90174 220 0.00 2019-08-28 09:55:05 2019-08-28 09:55:40 t 1 1 90177 220 0.00 2019-08-28 09:57:16 2019-08-28 09:58:18 t 1 1 90178 220 0.00 2019-08-28 09:58:18 2019-08-28 09:59:11 t 1 1 90180 220 0.00 2019-08-28 09:59:10 2019-08-28 09:59:44 t 1 1 90184 220 0.00 2019-08-28 10:01:07 2019-08-28 10:02:13 t 1 1 90189 220 0.00 2019-08-28 10:06:00 2019-08-28 10:06:57 t 1 1 90191 220 0.00 2019-08-28 10:07:32 2019-08-28 10:08:14 t 1 1 90192 220 0.00 2019-08-28 10:08:14 2019-08-28 10:08:49 t 1 1 90195 220 0.00 2019-08-28 10:10:11 2019-08-28 10:10:46 t 1 1 90199 220 0.00 2019-08-28 10:11:53 2019-08-28 10:12:29 t 1 1 90211 346 0.00 2019-08-28 10:20:59 2019-08-28 10:38:12 t 1 2 90214 373 0.00 2019-08-28 11:00:06 2019-08-28 11:01:09 t 1 2 90219 212 0.00 2019-08-28 11:20:24 2019-08-28 11:21:12 t 1 2 90220 306 0.00 2019-08-28 11:25:55 2019-08-28 11:26:58 t 1 2 90222 220 0.00 2019-08-28 11:28:35 2019-08-28 11:30:19 t 1 1 90225 346 0.00 2019-08-28 11:00:12 2019-08-28 11:32:46 t 1 2 90227 324 0.00 2019-08-28 10:55:57 2019-08-28 11:33:51 t 1 2 90228 346 0.00 2019-08-28 11:21:45 2019-08-28 11:41:50 t 1 2 90237 361 0.00 2019-08-28 09:40:54 2019-08-28 11:55:59 t 1 2 90240 306 0.00 2019-08-28 11:59:54 2019-08-28 12:00:55 t 1 2 90241 288 0.00 2019-08-28 12:00:23 2019-08-28 12:01:29 t 1 2 90248 247 0.00 2019-08-28 12:04:29 2019-08-28 12:06:45 t 1 2 90252 306 0.00 2019-08-28 12:26:42 2019-08-28 12:27:44 t 1 2 90254 220 0.00 2019-08-28 11:31:22 2019-08-28 12:34:09 t 1 1 90256 220 0.00 2019-08-28 12:17:23 2019-08-28 12:34:53 t 1 1 90260 220 0.00 2019-08-28 11:36:47 2019-08-28 12:46:11 t 1 2 90276 346 0.00 2019-08-28 12:34:46 2019-08-28 13:34:51 t 1 2 90279 320 0.00 2019-08-28 13:36:44 2019-08-28 13:36:44 f 1 2 90283 346 0.00 2019-08-28 13:56:38 2019-08-28 13:57:42 t 1 2 90295 372 0.00 2019-08-28 14:24:52 2019-08-28 14:44:57 t 1 2 90299 306 0.00 2019-08-28 14:52:13 2019-08-28 14:53:19 t 1 2 90300 306 0.00 2019-08-28 14:54:38 2019-08-28 14:55:41 t 1 2 90301 372 0.00 2019-08-28 14:48:01 2019-08-28 14:58:06 t 1 2 90303 288 0.00 2019-08-28 14:59:11 2019-08-28 15:00:16 t 1 2 90308 306 0.00 2019-08-28 15:04:28 2019-08-28 15:05:34 t 1 2 90315 320 0.00 2019-08-28 15:35:22 2019-08-28 15:35:22 f 1 2 90319 306 0.00 2019-08-28 15:39:17 2019-08-28 15:40:24 t 1 2 90324 346 0.00 2019-08-28 16:00:01 2019-08-28 16:00:51 t 1 2 90327 324 0.00 2019-08-28 16:03:43 2019-08-28 16:03:49 t 1 2 90335 324 0.00 2019-08-28 16:04:35 2019-08-28 16:09:34 t 1 2 90343 349 0.00 2019-08-28 16:55:49 2019-08-28 16:56:55 t 1 2 90345 346 0.00 2019-08-28 17:06:09 2019-08-28 17:07:16 t 1 2 90346 346 0.00 2019-08-28 16:42:45 2019-08-28 17:12:50 t 1 2 90354 220 0.00 2019-08-28 17:29:23 2019-08-28 17:32:49 t 1 1 90369 220 0.00 2019-08-28 17:39:34 2019-08-28 17:40:08 t 1 1 90372 220 0.00 2019-08-28 17:41:17 2019-08-28 17:41:58 t 1 1 90376 220 0.00 2019-08-28 17:43:43 2019-08-28 17:45:08 t 1 1 90379 220 0.00 2019-08-28 17:46:19 2019-08-28 17:46:54 t 1 1 90385 220 0.00 2019-08-28 17:51:55 2019-08-28 17:52:31 t 1 1 90387 220 0.00 2019-08-28 17:52:30 2019-08-28 17:53:02 t 1 1 90391 220 0.00 2019-08-28 17:56:24 2019-08-28 17:56:59 t 1 1 90395 324 0.00 2019-08-28 16:32:41 2019-08-28 18:00:44 t 1 2 90397 220 0.00 2019-08-28 18:00:58 2019-08-28 18:01:33 t 1 1 90399 220 0.00 2019-08-28 18:01:33 2019-08-28 18:04:32 t 1 1 90401 220 0.00 2019-08-28 18:04:31 2019-08-28 18:05:04 t 1 1 90409 339 0.00 2019-08-28 17:09:55 2019-08-28 18:10:19 t 1 2 90411 220 0.00 2019-08-28 18:10:26 2019-08-28 18:11:00 t 1 1 90416 346 0.00 2019-08-28 17:22:15 2019-08-28 18:12:20 t 1 2 90420 220 0.00 2019-08-28 18:14:31 2019-08-28 18:15:02 t 1 1 90423 220 0.00 2019-08-28 18:16:09 2019-08-28 18:16:59 t 1 1 90427 220 0.00 2019-08-28 18:19:11 2019-08-28 18:19:52 t 1 1 90429 220 0.00 2019-08-28 18:20:30 2019-08-28 18:21:11 t 1 1 90431 306 0.00 2019-08-28 18:21:05 2019-08-28 18:22:07 t 1 2 90437 220 0.00 2019-08-28 18:25:47 2019-08-28 18:26:47 t 1 1 90440 367 0.00 2019-08-28 17:49:53 2019-08-28 18:28:49 t 1 2 90442 220 0.00 2019-08-28 18:29:08 2019-08-28 18:30:07 t 1 1 90444 220 0.00 2019-08-28 18:30:07 2019-08-28 18:30:39 t 1 1 90451 306 0.00 2019-08-28 18:46:43 2019-08-28 18:47:46 t 1 2 90453 367 0.00 2019-08-28 18:30:01 2019-08-28 18:52:50 t 1 2 90454 294 0.00 2019-08-28 17:55:26 2019-08-28 18:55:49 t 1 2 90458 355 0.00 2019-08-28 19:06:32 2019-08-28 19:06:50 t 1 2 90234 288 0.00 2019-08-28 11:53:09 2019-08-28 11:54:15 t 1 2 90239 288 0.00 2019-08-28 11:58:58 2019-08-28 12:00:04 t 1 2 90245 288 0.00 2019-08-28 12:04:15 2019-08-28 12:05:19 t 1 2 90251 212 0.00 2019-08-28 12:10:36 2019-08-28 12:11:13 t 1 2 90257 306 0.00 2019-08-28 12:35:51 2019-08-28 12:36:57 t 1 2 90259 346 0.00 2019-08-28 11:32:32 2019-08-28 12:42:37 t 1 2 90266 320 0.00 2019-08-28 13:13:34 2019-08-28 13:13:34 f 1 2 90267 320 0.00 2019-08-28 13:13:56 2019-08-28 13:13:56 f 1 2 90271 212 0.00 2019-08-28 13:17:17 2019-08-28 13:17:44 t 1 2 90272 346 0.00 2019-08-28 12:25:27 2019-08-28 13:20:32 t 1 2 90274 372 0.00 2019-08-28 12:51:48 2019-08-28 13:24:59 t 1 2 90277 320 0.00 2019-08-28 13:36:17 2019-08-28 13:36:17 f 1 2 90281 288 0.00 2019-08-28 13:44:29 2019-08-28 13:45:34 t 1 2 90285 306 0.00 2019-08-28 14:12:11 2019-08-28 14:13:13 t 1 2 90291 346 0.00 2019-08-28 14:27:50 2019-08-28 14:30:50 t 1 2 90292 220 0.00 2019-08-28 12:48:40 2019-08-28 14:31:20 t 1 1 90293 346 0.00 2019-08-28 14:35:38 2019-08-28 14:37:06 t 1 2 90297 212 0.00 2019-08-28 14:47:00 2019-08-28 14:47:06 t 1 2 90302 361 0.00 2019-08-28 13:59:27 2019-08-28 14:58:53 t 1 2 90305 212 0.00 2019-08-28 14:47:28 2019-08-28 15:01:35 t 1 2 90306 306 0.00 2019-08-28 15:03:47 2019-08-28 15:03:47 t 1 2 90307 306 0.00 2019-08-28 15:04:19 2019-08-28 15:04:26 t 1 2 90310 306 0.00 2019-08-28 15:14:45 2019-08-28 15:15:51 t 1 2 90311 346 0.00 2019-08-28 15:17:56 2019-08-28 15:18:17 t 1 2 90314 346 0.00 2019-08-28 14:56:24 2019-08-28 15:26:30 t 1 2 90317 294 0.00 2019-08-28 14:35:38 2019-08-28 15:36:01 t 1 2 90320 306 0.00 2019-08-28 15:42:24 2019-08-28 15:43:29 t 1 2 90331 346 0.00 2019-08-28 15:40:18 2019-08-28 16:05:24 t 1 2 90337 346 0.00 2019-08-28 16:10:06 2019-08-28 16:12:00 t 1 2 90339 306 0.00 2019-08-28 16:50:38 2019-08-28 16:51:43 t 1 2 90340 349 0.00 2019-08-28 16:54:35 2019-08-28 16:55:38 t 1 2 90341 346 0.00 2019-08-28 11:46:18 2019-08-28 16:55:54 t 1 2 90348 212 0.00 2019-08-28 17:21:54 2019-08-28 17:22:11 t 1 2 90350 392 0.00 2019-08-28 17:04:39 2019-08-28 17:25:45 t 1 2 90353 320 0.00 2019-08-28 17:31:02 2019-08-28 17:31:02 f 1 2 90356 346 0.00 2019-08-28 17:21:03 2019-08-28 17:33:35 t 1 2 90357 220 0.00 2019-08-28 17:33:26 2019-08-28 17:34:02 t 1 1 90359 363 0.00 2019-08-28 17:04:48 2019-08-28 17:34:53 t 1 2 90362 220 0.00 2019-08-28 17:35:54 2019-08-28 17:36:30 t 1 1 90367 247 0.00 2019-08-28 17:37:57 2019-08-28 17:38:58 t 1 2 90370 220 0.00 2019-08-28 17:40:07 2019-08-28 17:40:44 t 1 1 90377 220 0.00 2019-08-28 17:45:07 2019-08-28 17:45:44 t 1 1 90383 220 0.00 2019-08-28 17:48:38 2019-08-28 17:49:13 t 1 1 90389 220 0.00 2019-08-28 17:53:36 2019-08-28 17:56:25 t 1 1 90394 220 0.00 2019-08-28 17:57:40 2019-08-28 17:58:15 t 1 1 90398 379 0.00 2019-08-28 15:07:41 2019-08-28 18:02:47 t 1 2 90403 288 0.00 2019-08-28 18:05:19 2019-08-28 18:06:22 t 1 2 90405 306 0.00 2019-08-28 18:05:49 2019-08-28 18:06:54 t 1 2 90406 220 0.00 2019-08-28 18:06:34 2019-08-28 18:09:06 t 1 1 90408 331 0.00 2019-08-28 18:08:48 2019-08-28 18:09:50 t 1 2 90413 220 0.00 2019-08-28 18:10:59 2019-08-28 18:11:35 t 1 1 90415 220 0.00 2019-08-28 18:11:35 2019-08-28 18:12:10 t 1 1 90417 220 0.00 2019-08-28 18:12:10 2019-08-28 18:12:59 t 1 1 90421 220 0.00 2019-08-28 18:15:02 2019-08-28 18:15:38 t 1 1 90425 220 0.00 2019-08-28 18:17:32 2019-08-28 18:18:38 t 1 1 90430 220 0.00 2019-08-28 18:21:11 2019-08-28 18:21:45 t 1 1 90432 220 0.00 2019-08-28 18:21:45 2019-08-28 18:22:39 t 1 1 90434 212 0.00 2019-08-28 18:23:39 2019-08-28 18:24:05 t 1 2 90449 306 0.00 2019-08-28 18:36:15 2019-08-28 18:37:19 t 1 2 90461 306 0.00 2019-08-28 19:11:05 2019-08-28 19:12:06 t 1 2 90466 212 0.00 2019-08-28 19:40:54 2019-08-28 19:40:55 t 1 2 90467 212 0.00 2019-08-28 19:41:04 2019-08-28 19:41:05 t 1 2 90473 212 0.00 2019-08-28 19:43:41 2019-08-28 19:45:37 t 1 2 90475 212 0.00 2019-08-28 19:47:32 2019-08-28 19:48:08 t 1 2 90484 346 0.00 2019-08-28 19:55:17 2019-08-28 20:20:22 t 1 2 90487 320 0.00 2019-08-28 20:28:09 2019-08-28 20:28:09 f 1 2 90489 320 0.00 2019-08-28 20:28:30 2019-08-28 20:28:30 f 1 2 90493 288 0.00 2019-08-28 20:37:35 2019-08-28 20:38:38 t 1 2 90494 346 0.00 2019-08-28 20:30:45 2019-08-28 20:40:50 t 1 2 90497 392 0.00 2019-08-28 20:23:59 2019-08-28 20:43:26 t 1 2 90504 400 0.00 2019-08-28 20:44:51 2019-08-28 20:44:51 f 1 2 90509 288 0.00 2019-08-28 20:49:05 2019-08-28 20:50:09 t 1 2 90512 220 0.00 2019-08-28 20:50:15 2019-08-28 20:56:04 t 1 1 90519 372 0.00 2019-08-28 20:56:43 2019-08-28 21:06:48 t 1 2 90524 385 0.00 2019-08-28 20:46:17 2019-08-28 21:23:40 t 1 2 90532 220 0.00 2019-08-28 20:57:53 2019-08-28 21:42:20 t 1 1 90534 220 0.00 2019-08-28 21:42:48 2019-08-28 21:46:00 t 1 1 90535 220 0.00 2019-08-28 21:46:16 2019-08-28 21:46:50 t 1 1 90537 220 0.00 2019-08-28 21:47:00 2019-08-28 21:47:23 t 1 1 90539 400 0.00 2019-08-28 21:40:49 2019-08-28 21:50:54 t 1 2 90541 294 0.00 2019-08-28 21:36:13 2019-08-28 22:01:47 t 1 2 90545 220 0.00 2019-08-28 22:06:38 2019-08-28 22:16:25 t 1 1 90547 402 0.00 2019-08-28 21:49:09 2019-08-28 22:24:14 t 1 2 90549 372 0.00 2019-08-28 22:34:55 2019-08-28 22:37:21 t 1 2 90554 331 0.00 2019-08-28 22:56:23 2019-08-28 22:57:31 t 1 2 90557 306 0.00 2019-08-28 23:07:13 2019-08-28 23:08:14 t 1 2 90560 324 0.00 2019-08-28 23:12:36 2019-08-28 23:16:08 t 1 2 90561 361 0.00 2019-08-28 21:29:19 2019-08-28 23:16:26 t 1 2 90576 212 0.00 2019-08-28 23:43:42 2019-08-28 23:45:34 t 1 2 90577 220 0.00 2019-08-28 23:20:02 2019-08-28 23:50:10 t 1 1 90582 220 0.00 2019-08-28 23:52:07 2019-08-28 23:52:47 t 1 1 90583 212 0.00 2019-08-28 23:52:48 2019-08-28 23:53:07 t 1 2 90585 288 0.00 2019-08-28 23:53:19 2019-08-28 23:54:21 t 1 2 90587 220 0.00 2019-08-28 23:53:22 2019-08-29 00:01:32 t 1 1 90597 220 0.00 2019-08-29 00:40:03 2019-08-29 00:40:34 t 1 1 90600 220 0.00 2019-08-29 00:41:41 2019-08-29 00:42:17 t 1 1 90602 400 0.00 2019-08-28 21:45:17 2019-08-29 00:55:22 t 1 2 90607 294 0.00 2019-08-29 00:08:20 2019-08-29 01:08:44 t 1 2 90618 324 0.00 2019-08-29 02:32:51 2019-08-29 02:32:51 f 1 2 90619 324 0.00 2019-08-29 02:34:21 2019-08-29 02:34:21 f 1 2 90624 324 0.00 2019-08-29 06:16:24 2019-08-29 06:16:24 f 1 2 90627 324 0.00 2019-08-29 06:17:43 2019-08-29 06:17:43 f 1 2 90631 294 0.00 2019-08-29 07:16:09 2019-08-29 07:33:47 t 1 2 90634 306 0.00 2019-08-29 07:59:42 2019-08-29 08:00:43 t 1 2 90644 400 0.00 2019-08-29 08:11:28 2019-08-29 08:21:33 t 1 2 90655 294 0.00 2019-08-29 07:43:53 2019-08-29 09:06:13 t 1 2 90657 306 0.00 2019-08-29 09:05:47 2019-08-29 09:06:48 t 1 2 90242 324 0.00 2019-08-28 12:01:18 2019-08-28 12:01:53 t 1 2 90247 320 0.00 2019-08-28 11:56:13 2019-08-28 12:06:19 t 1 2 90249 320 0.00 2019-08-28 12:05:00 2019-08-28 12:07:10 t 1 2 90250 288 0.00 2019-08-28 12:09:57 2019-08-28 12:11:02 t 1 2 90253 306 0.00 2019-08-28 12:32:03 2019-08-28 12:33:05 t 1 2 90255 306 0.00 2019-08-28 12:33:41 2019-08-28 12:34:45 t 1 2 90258 306 0.00 2019-08-28 12:38:29 2019-08-28 12:39:33 t 1 2 90261 220 0.00 2019-08-28 12:35:04 2019-08-28 12:47:25 t 1 1 90262 306 0.00 2019-08-28 13:01:59 2019-08-28 13:03:02 t 1 2 90264 320 0.00 2019-08-28 13:05:25 2019-08-28 13:05:25 f 1 2 90268 361 0.00 2019-08-28 12:20:05 2019-08-28 13:15:10 t 1 2 90270 220 0.00 2019-08-28 13:14:20 2019-08-28 13:17:43 t 1 2 90273 296 0.00 2019-08-28 13:00:22 2019-08-28 13:21:46 t 1 2 90275 212 0.00 2019-08-28 13:33:15 2019-08-28 13:33:40 t 1 2 90280 320 0.00 2019-08-28 13:36:57 2019-08-28 13:36:57 f 1 2 90286 306 0.00 2019-08-28 14:18:30 2019-08-28 14:19:33 t 1 2 90288 379 0.00 2019-08-28 08:26:31 2019-08-28 14:21:36 t 1 2 90290 392 0.00 2019-08-28 14:22:32 2019-08-28 14:28:03 t 1 2 90296 372 0.00 2019-08-28 14:43:21 2019-08-28 14:45:49 t 1 2 90298 306 0.00 2019-08-28 14:50:19 2019-08-28 14:51:22 t 1 2 90304 392 0.00 2019-08-28 14:31:14 2019-08-28 15:01:05 t 1 2 90312 247 0.00 2019-08-28 15:19:11 2019-08-28 15:19:33 t 1 2 90313 306 0.00 2019-08-28 15:24:40 2019-08-28 15:25:44 t 1 2 90316 220 0.00 2019-08-28 15:09:16 2019-08-28 15:35:53 t 1 1 90321 288 0.00 2019-08-28 15:48:02 2019-08-28 15:49:05 t 1 2 90322 320 0.00 2019-08-28 15:53:47 2019-08-28 15:53:47 f 1 2 90333 296 0.00 2019-08-28 16:05:22 2019-08-28 16:06:33 t 1 2 90336 346 0.00 2019-08-28 16:04:52 2019-08-28 16:10:02 t 1 2 90347 346 0.00 2019-08-28 16:56:25 2019-08-28 17:19:42 t 1 2 90351 324 0.00 2019-08-28 17:11:56 2019-08-28 17:28:06 t 1 2 90355 220 0.00 2019-08-28 17:32:49 2019-08-28 17:33:26 t 1 1 90358 220 0.00 2019-08-28 17:34:01 2019-08-28 17:34:40 t 1 1 90360 220 0.00 2019-08-28 17:34:39 2019-08-28 17:35:15 t 1 1 90363 220 0.00 2019-08-28 17:36:30 2019-08-28 17:37:08 t 1 1 90365 220 0.00 2019-08-28 17:37:43 2019-08-28 17:38:20 t 1 1 90366 220 0.00 2019-08-28 17:38:20 2019-08-28 17:38:56 t 1 1 90373 220 0.00 2019-08-28 17:41:58 2019-08-28 17:42:33 t 1 1 90380 220 0.00 2019-08-28 17:46:54 2019-08-28 17:47:29 t 1 1 90384 220 0.00 2019-08-28 17:49:13 2019-08-28 17:51:55 t 1 1 90388 220 0.00 2019-08-28 17:53:02 2019-08-28 17:53:36 t 1 1 90392 320 0.00 2019-08-28 17:57:00 2019-08-28 17:57:00 f 1 2 90396 220 0.00 2019-08-28 17:58:15 2019-08-28 18:00:58 t 1 1 90402 220 0.00 2019-08-28 18:05:03 2019-08-28 18:05:58 t 1 1 90407 220 0.00 2019-08-28 18:09:05 2019-08-28 18:09:41 t 1 1 90424 220 0.00 2019-08-28 18:16:59 2019-08-28 18:17:32 t 1 1 90428 220 0.00 2019-08-28 18:19:52 2019-08-28 18:20:31 t 1 1 90435 220 0.00 2019-08-28 18:23:11 2019-08-28 18:25:12 t 1 1 90438 220 0.00 2019-08-28 18:26:47 2019-08-28 18:27:23 t 1 1 90441 220 0.00 2019-08-28 18:28:34 2019-08-28 18:29:09 t 1 1 90445 220 0.00 2019-08-28 18:30:38 2019-08-28 18:31:21 t 1 1 90448 220 0.00 2019-08-28 18:31:51 2019-08-28 18:36:51 t 1 1 90450 306 0.00 2019-08-28 18:38:18 2019-08-28 18:39:18 t 1 2 90455 367 0.00 2019-08-28 18:53:16 2019-08-28 18:56:56 t 1 2 90456 392 0.00 2019-08-28 18:36:12 2019-08-28 18:59:36 t 1 2 90457 220 0.00 2019-08-28 17:01:53 2019-08-28 19:02:04 t 1 2 90459 357 0.00 2019-08-28 16:27:35 2019-08-28 19:07:41 t 1 2 90469 212 0.00 2019-08-28 19:42:44 2019-08-28 19:43:22 t 1 2 90472 212 0.00 2019-08-28 19:44:52 2019-08-28 19:45:08 t 1 2 90476 220 0.00 2019-08-28 18:50:55 2019-08-28 19:58:16 t 1 1 90477 294 0.00 2019-08-28 19:21:48 2019-08-28 20:00:12 t 1 2 90482 346 0.00 2019-08-28 20:08:24 2019-08-28 20:09:30 t 1 2 90483 288 0.00 2019-08-28 20:15:50 2019-08-28 20:16:55 t 1 2 90490 306 0.00 2019-08-28 20:27:41 2019-08-28 20:28:46 t 1 2 90492 346 0.00 2019-08-28 20:30:25 2019-08-28 20:30:28 t 1 2 90496 400 0.00 2019-08-28 20:43:20 2019-08-28 20:43:20 f 1 2 90500 247 0.00 2019-08-28 20:42:53 2019-08-28 20:44:10 t 1 2 90502 400 0.00 2019-08-28 20:44:27 2019-08-28 20:44:27 f 1 2 90511 324 0.00 2019-08-28 20:14:32 2019-08-28 20:52:38 t 1 2 90516 346 0.00 2019-08-28 20:57:27 2019-08-28 20:57:45 t 1 2 90520 346 0.00 2019-08-28 21:12:00 2019-08-28 21:12:47 t 1 2 90525 346 0.00 2019-08-28 21:12:16 2019-08-28 21:27:21 t 1 2 90533 288 0.00 2019-08-28 21:44:55 2019-08-28 21:45:59 t 1 2 90548 220 0.00 2019-08-28 21:47:56 2019-08-28 22:32:45 t 1 1 90550 288 0.00 2019-08-28 22:37:44 2019-08-28 22:38:49 t 1 2 90556 346 0.00 2019-08-28 22:11:38 2019-08-28 23:06:43 t 1 2 90558 306 0.00 2019-08-28 23:08:38 2019-08-28 23:09:39 t 1 2 90564 306 0.00 2019-08-28 23:17:20 2019-08-28 23:18:24 t 1 2 90566 220 0.00 2019-08-28 23:21:27 2019-08-28 23:23:08 t 1 2 90567 220 0.00 2019-08-28 23:25:36 2019-08-28 23:27:50 t 1 2 90569 306 0.00 2019-08-28 23:27:38 2019-08-28 23:28:44 t 1 2 90571 306 0.00 2019-08-28 23:33:33 2019-08-28 23:34:28 t 1 2 90572 306 0.00 2019-08-28 23:37:03 2019-08-28 23:38:05 t 1 2 90573 306 0.00 2019-08-28 23:39:46 2019-08-28 23:40:51 t 1 2 90575 306 0.00 2019-08-28 23:44:00 2019-08-28 23:45:03 t 1 2 90578 220 0.00 2019-08-28 23:50:10 2019-08-28 23:50:46 t 1 1 90580 294 0.00 2019-08-28 22:51:36 2019-08-28 23:52:00 t 1 2 90591 346 0.00 2019-08-29 00:10:21 2019-08-29 00:15:51 t 1 2 90595 220 0.00 2019-08-29 00:38:56 2019-08-29 00:39:28 t 1 1 90598 220 0.00 2019-08-29 00:40:34 2019-08-29 00:41:09 t 1 1 90601 220 0.00 2019-08-29 00:42:17 2019-08-29 00:42:48 t 1 1 90605 400 0.00 2019-08-29 00:52:48 2019-08-29 01:02:53 t 1 2 90608 379 0.00 2019-08-28 22:59:04 2019-08-29 01:14:09 t 1 2 90609 361 0.00 2019-08-29 00:25:49 2019-08-29 01:25:56 t 1 2 90613 343 0.00 2019-08-29 01:31:17 2019-08-29 01:53:53 t 1 2 90616 363 0.00 2019-08-29 01:04:28 2019-08-29 02:24:33 t 1 2 90622 324 0.00 2019-08-29 02:34:48 2019-08-29 02:34:48 f 1 2 90623 372 0.00 2019-08-29 02:45:22 2019-08-29 03:05:28 t 1 2 90625 324 0.00 2019-08-29 06:16:48 2019-08-29 06:16:48 f 1 2 90628 355 0.00 2019-08-28 23:32:45 2019-08-29 06:32:50 t 1 2 90630 402 0.00 2019-08-29 07:09:34 2019-08-29 07:19:39 t 1 2 90637 324 0.00 2019-08-29 08:13:06 2019-08-29 08:13:06 f 1 2 90639 324 0.00 2019-08-29 08:13:37 2019-08-29 08:13:37 f 1 2 90640 324 0.00 2019-08-29 08:13:50 2019-08-29 08:13:50 f 1 2 90642 296 0.00 2019-08-29 08:13:04 2019-08-29 08:18:25 t 1 2 90651 212 0.00 2019-08-29 08:48:23 2019-08-29 08:49:03 t 1 2 90652 220 0.00 2019-08-29 09:01:36 2019-08-29 09:05:20 t 1 1 90654 220 0.00 2019-08-29 09:05:19 2019-08-29 09:05:55 t 1 1 90334 220 0.00 2019-08-28 15:57:36 2019-08-28 16:07:41 t 1 2 90338 346 0.00 2019-08-28 16:10:32 2019-08-28 16:30:37 t 1 2 90342 212 0.00 2019-08-28 16:55:32 2019-08-28 16:56:03 t 1 2 90344 346 0.00 2019-08-28 16:55:55 2019-08-28 17:06:00 t 1 2 90349 361 0.00 2019-08-28 15:39:18 2019-08-28 17:22:25 t 1 2 90352 320 0.00 2019-08-28 17:30:45 2019-08-28 17:30:45 f 1 2 90361 220 0.00 2019-08-28 17:35:15 2019-08-28 17:35:54 t 1 1 90364 220 0.00 2019-08-28 17:37:07 2019-08-28 17:37:43 t 1 1 90368 220 0.00 2019-08-28 17:38:55 2019-08-28 17:39:35 t 1 1 90371 220 0.00 2019-08-28 17:40:44 2019-08-28 17:41:17 t 1 1 90374 220 0.00 2019-08-28 17:42:33 2019-08-28 17:43:08 t 1 1 90375 220 0.00 2019-08-28 17:43:08 2019-08-28 17:43:44 t 1 1 90378 220 0.00 2019-08-28 17:45:43 2019-08-28 17:46:20 t 1 1 90381 220 0.00 2019-08-28 17:47:28 2019-08-28 17:48:04 t 1 1 90382 220 0.00 2019-08-28 17:48:04 2019-08-28 17:48:39 t 1 1 90386 220 0.00 2019-08-28 17:35:15 2019-08-28 17:52:35 t 1 2 90390 320 0.00 2019-08-28 17:56:34 2019-08-28 17:56:34 f 1 2 90393 220 0.00 2019-08-28 17:56:59 2019-08-28 17:57:40 t 1 1 90400 392 0.00 2019-08-28 17:49:27 2019-08-28 18:04:32 t 1 2 90404 220 0.00 2019-08-28 18:05:58 2019-08-28 18:06:35 t 1 1 90410 220 0.00 2019-08-28 18:09:41 2019-08-28 18:10:28 t 1 1 90412 288 0.00 2019-08-28 18:10:23 2019-08-28 18:11:27 t 1 2 90414 363 0.00 2019-08-28 17:31:36 2019-08-28 18:11:41 t 1 2 90418 220 0.00 2019-08-28 18:12:59 2019-08-28 18:13:34 t 1 1 90419 220 0.00 2019-08-28 18:13:34 2019-08-28 18:14:31 t 1 1 90422 220 0.00 2019-08-28 18:15:38 2019-08-28 18:16:09 t 1 1 90426 220 0.00 2019-08-28 18:18:37 2019-08-28 18:19:11 t 1 1 90433 220 0.00 2019-08-28 18:22:39 2019-08-28 18:23:11 t 1 1 90436 220 0.00 2019-08-28 18:25:12 2019-08-28 18:25:47 t 1 1 90439 220 0.00 2019-08-28 18:27:22 2019-08-28 18:28:34 t 1 1 90443 346 0.00 2019-08-28 18:05:30 2019-08-28 18:30:35 t 1 2 90446 220 0.00 2019-08-28 18:31:20 2019-08-28 18:31:51 t 1 1 90447 306 0.00 2019-08-28 18:33:35 2019-08-28 18:34:39 t 1 2 90452 292 0.00 2019-08-28 18:50:20 2019-08-28 18:51:24 t 1 2 90462 346 0.00 2019-08-28 19:02:32 2019-08-28 19:12:38 t 1 2 90464 385 0.00 2019-08-28 19:18:10 2019-08-28 19:19:42 t 1 2 90465 296 0.00 2019-08-28 19:25:30 2019-08-28 19:35:53 t 1 2 90468 346 0.00 2019-08-28 19:32:46 2019-08-28 19:42:51 t 1 2 90471 392 0.00 2019-08-28 19:33:30 2019-08-28 19:44:05 t 1 2 90474 392 0.00 2019-08-28 19:44:12 2019-08-28 19:46:01 t 1 2 90478 220 0.00 2019-08-28 19:58:23 2019-08-28 20:01:48 t 1 1 90480 385 0.00 2019-08-28 20:00:09 2019-08-28 20:06:36 t 1 2 90481 324 0.00 2019-08-28 20:08:16 2019-08-28 20:08:48 t 1 2 90488 320 0.00 2019-08-28 20:28:20 2019-08-28 20:28:20 f 1 2 90498 400 0.00 2019-08-28 20:43:28 2019-08-28 20:43:28 f 1 2 90499 400 0.00 2019-08-28 20:43:55 2019-08-28 20:43:55 f 1 2 90503 400 0.00 2019-08-28 20:44:42 2019-08-28 20:44:42 f 1 2 90507 346 0.00 2019-08-28 20:45:19 2019-08-28 20:46:53 t 1 2 90510 400 0.00 2019-08-28 20:40:26 2019-08-28 20:50:31 t 1 2 90515 349 0.00 2019-08-28 20:56:18 2019-08-28 20:57:24 t 1 2 90517 212 0.00 2019-08-28 19:48:10 2019-08-28 20:58:46 t 1 2 90518 400 0.00 2019-08-28 20:45:03 2019-08-28 21:05:08 t 1 2 90522 402 0.00 2019-08-28 21:16:31 2019-08-28 21:18:14 t 1 2 90523 400 0.00 2019-08-28 21:06:07 2019-08-28 21:21:12 t 1 2 90526 346 0.00 2019-08-28 21:22:02 2019-08-28 21:32:07 t 1 2 90529 288 0.00 2019-08-28 21:35:02 2019-08-28 21:36:06 t 1 2 90530 346 0.00 2019-08-28 21:28:19 2019-08-28 21:38:24 t 1 2 90531 212 0.00 2019-08-28 21:13:29 2019-08-28 21:40:19 t 1 2 90536 220 0.00 2019-08-28 21:46:49 2019-08-28 21:47:01 t 1 1 90538 220 0.00 2019-08-28 21:47:22 2019-08-28 21:47:34 t 1 1 90542 346 0.00 2019-08-28 21:33:04 2019-08-28 22:03:09 t 1 2 90543 220 0.00 2019-08-28 22:01:42 2019-08-28 22:05:25 t 1 1 90546 220 0.00 2019-08-28 22:11:57 2019-08-28 22:17:05 t 1 2 90552 212 0.00 2019-08-28 22:06:35 2019-08-28 22:54:47 t 1 2 90553 212 0.00 2019-08-28 22:54:59 2019-08-28 22:55:21 t 1 2 90555 220 0.00 2019-08-28 18:04:00 2019-08-28 23:01:53 t 1 2 90563 247 0.00 2019-08-28 23:16:16 2019-08-28 23:17:54 t 1 2 90565 288 0.00 2019-08-28 23:18:31 2019-08-28 23:19:40 t 1 2 90568 324 0.00 2019-08-28 23:03:39 2019-08-28 23:28:44 t 1 2 90570 306 0.00 2019-08-28 23:31:44 2019-08-28 23:32:50 t 1 2 90586 220 0.00 2019-08-28 23:21:52 2019-08-28 23:55:24 t 1 2 90588 212 0.00 2019-08-29 00:02:31 2019-08-29 00:02:53 t 1 2 90589 402 0.00 2019-08-28 23:04:19 2019-08-29 00:09:24 t 1 2 90590 220 0.00 2019-08-28 23:25:44 2019-08-29 00:15:48 t 1 2 90596 220 0.00 2019-08-29 00:39:28 2019-08-29 00:40:03 t 1 1 90599 220 0.00 2019-08-29 00:41:09 2019-08-29 00:41:42 t 1 1 90606 363 0.00 2019-08-28 20:58:44 2019-08-29 01:04:10 t 1 2 90610 361 0.00 2019-08-29 01:19:17 2019-08-29 01:31:08 t 1 2 90611 220 0.00 2019-08-29 00:42:48 2019-08-29 01:41:24 t 1 1 90612 220 0.00 2019-08-29 01:41:30 2019-08-29 01:41:33 t 1 1 90615 220 0.00 2019-08-29 02:14:23 2019-08-29 02:17:09 t 1 1 90620 324 0.00 2019-08-29 02:34:28 2019-08-29 02:34:28 f 1 2 90626 324 0.00 2019-08-29 06:17:23 2019-08-29 06:17:23 f 1 2 90632 346 0.00 2019-08-29 07:32:21 2019-08-29 07:33:47 t 1 2 90635 306 0.00 2019-08-29 08:01:20 2019-08-29 08:02:24 t 1 2 90638 324 0.00 2019-08-29 08:13:23 2019-08-29 08:13:23 f 1 2 90646 212 0.00 2019-08-29 08:28:32 2019-08-29 08:29:06 t 1 2 90648 402 0.00 2019-08-29 08:20:41 2019-08-29 08:31:34 t 1 2 90653 324 0.00 2019-08-29 09:05:33 2019-08-29 09:05:33 f 1 2 90659 220 0.00 2019-08-29 09:07:04 2019-08-29 09:07:55 t 1 1 90665 324 0.00 2019-08-29 09:09:20 2019-08-29 09:09:20 f 1 2 90672 288 0.00 2019-08-29 09:10:04 2019-08-29 09:11:09 t 1 2 90676 220 0.00 2019-08-29 09:11:47 2019-08-29 09:12:19 t 1 1 90678 306 0.00 2019-08-29 09:11:51 2019-08-29 09:12:56 t 1 2 90682 306 0.00 2019-08-29 09:13:15 2019-08-29 09:14:18 t 1 2 90687 220 0.00 2019-08-29 09:15:06 2019-08-29 09:15:38 t 1 1 90688 392 0.00 2019-08-29 09:15:14 2019-08-29 09:16:13 t 1 2 90698 306 0.00 2019-08-29 09:20:27 2019-08-29 09:20:30 t 1 2 90701 306 0.00 2019-08-29 09:22:19 2019-08-29 09:23:20 t 1 2 90712 400 0.00 2019-08-29 09:34:09 2019-08-29 09:44:14 t 1 2 90714 346 0.00 2019-08-29 09:37:27 2019-08-29 09:47:02 t 1 2 90717 288 0.00 2019-08-29 09:48:18 2019-08-29 09:49:20 t 1 2 90720 395 0.00 2019-08-29 09:49:07 2019-08-29 09:50:11 t 1 2 90731 346 0.00 2019-08-29 10:06:36 2019-08-29 10:07:40 t 1 2 90733 306 0.00 2019-08-29 10:09:07 2019-08-29 10:10:09 t 1 2 90734 346 0.00 2019-08-29 10:10:58 2019-08-29 10:14:40 t 1 2 90739 220 0.00 2019-08-29 10:10:20 2019-08-29 10:26:31 t 1 1 90460 306 0.00 2019-08-28 19:08:13 2019-08-28 19:09:15 t 1 2 90463 306 0.00 2019-08-28 19:14:23 2019-08-28 19:15:19 t 1 2 90470 220 0.00 2019-08-28 19:03:32 2019-08-28 19:44:04 t 1 2 90479 346 0.00 2019-08-28 20:05:33 2019-08-28 20:06:31 t 1 2 90485 379 0.00 2019-08-28 19:19:22 2019-08-28 20:24:28 t 1 2 90486 320 0.00 2019-08-28 20:27:56 2019-08-28 20:27:56 f 1 2 90491 320 0.00 2019-08-28 20:28:49 2019-08-28 20:28:49 f 1 2 90495 400 0.00 2019-08-28 20:43:09 2019-08-28 20:43:09 f 1 2 90501 400 0.00 2019-08-28 20:44:14 2019-08-28 20:44:14 f 1 2 90505 400 0.00 2019-08-28 20:29:56 2019-08-28 20:45:01 t 1 2 90506 346 0.00 2019-08-28 20:36:33 2019-08-28 20:46:39 t 1 2 90508 324 0.00 2019-08-28 20:47:22 2019-08-28 20:48:13 t 1 2 90513 324 0.00 2019-08-28 20:51:53 2019-08-28 20:56:40 t 1 2 90514 363 0.00 2019-08-28 19:44:30 2019-08-28 20:57:03 t 1 2 90521 346 0.00 2019-08-28 21:13:42 2019-08-28 21:15:36 t 1 2 90527 402 0.00 2019-08-28 21:18:32 2019-08-28 21:33:37 t 1 2 90528 400 0.00 2019-08-28 21:24:49 2019-08-28 21:34:54 t 1 2 90540 220 0.00 2019-08-28 21:47:33 2019-08-28 22:01:01 t 1 1 90544 288 0.00 2019-08-28 22:06:58 2019-08-28 22:08:02 t 1 2 90551 331 0.00 2019-08-28 22:47:10 2019-08-28 22:48:14 t 1 2 90559 306 0.00 2019-08-28 23:11:04 2019-08-28 23:12:10 t 1 2 90562 288 0.00 2019-08-28 23:16:32 2019-08-28 23:17:37 t 1 2 90574 306 0.00 2019-08-28 23:41:48 2019-08-28 23:42:49 t 1 2 90579 220 0.00 2019-08-28 23:50:45 2019-08-28 23:51:22 t 1 1 90581 220 0.00 2019-08-28 23:51:21 2019-08-28 23:52:07 t 1 1 90584 220 0.00 2019-08-28 23:52:47 2019-08-28 23:53:22 t 1 1 90592 212 0.00 2019-08-29 00:31:43 2019-08-29 00:32:08 t 1 2 90593 220 0.00 2019-08-29 00:32:57 2019-08-29 00:38:21 t 1 1 90594 220 0.00 2019-08-29 00:38:21 2019-08-29 00:38:56 t 1 1 90603 392 0.00 2019-08-28 23:33:44 2019-08-29 00:59:24 t 1 2 90604 346 0.00 2019-08-29 00:57:50 2019-08-29 01:01:51 t 1 2 90614 324 0.00 2019-08-29 01:58:44 2019-08-29 01:58:44 f 1 2 90617 220 0.00 2019-08-29 02:23:02 2019-08-29 02:25:13 t 1 1 90621 324 0.00 2019-08-29 02:34:39 2019-08-29 02:34:39 f 1 2 90629 247 0.00 2019-08-29 06:41:30 2019-08-29 06:42:07 t 1 2 90633 306 0.00 2019-08-29 07:54:45 2019-08-29 07:55:51 t 1 2 90636 306 0.00 2019-08-29 08:04:38 2019-08-29 08:05:40 t 1 2 90641 306 0.00 2019-08-29 08:16:15 2019-08-29 08:17:23 t 1 2 90643 306 0.00 2019-08-29 08:18:09 2019-08-29 08:19:11 t 1 2 90645 398 0.00 2019-08-29 08:24:56 2019-08-29 08:25:59 t 1 2 90647 306 0.00 2019-08-29 08:28:13 2019-08-29 08:29:15 t 1 2 90649 346 0.00 2019-08-29 08:08:01 2019-08-29 08:38:06 t 1 2 90650 288 0.00 2019-08-29 08:47:31 2019-08-29 08:48:37 t 1 2 90656 220 0.00 2019-08-29 09:05:54 2019-08-29 09:06:30 t 1 1 90658 220 0.00 2019-08-29 09:06:30 2019-08-29 09:07:04 t 1 1 90660 220 0.00 2019-08-29 09:07:55 2019-08-29 09:08:29 t 1 1 90663 220 0.00 2019-08-29 09:08:28 2019-08-29 09:09:04 t 1 1 90668 220 0.00 2019-08-29 09:09:38 2019-08-29 09:10:12 t 1 1 90674 220 0.00 2019-08-29 09:11:14 2019-08-29 09:11:47 t 1 1 90684 324 0.00 2019-08-29 09:14:49 2019-08-29 09:14:49 f 1 2 90689 288 0.00 2019-08-29 09:15:31 2019-08-29 09:16:35 t 1 2 90699 288 0.00 2019-08-29 09:20:27 2019-08-29 09:21:32 t 1 2 90705 346 0.00 2019-08-29 09:31:29 2019-08-29 09:33:03 t 1 2 90711 306 0.00 2019-08-29 09:41:50 2019-08-29 09:42:52 t 1 2 90716 402 0.00 2019-08-29 08:39:06 2019-08-29 09:48:40 t 1 2 90723 395 0.00 2019-08-29 09:56:56 2019-08-29 09:57:59 t 1 2 90726 306 0.00 2019-08-29 10:00:56 2019-08-29 10:02:00 t 1 2 90732 306 0.00 2019-08-29 10:06:42 2019-08-29 10:07:43 t 1 2 90740 288 0.00 2019-08-29 10:33:24 2019-08-29 10:34:29 t 1 2 90747 220 0.00 2019-08-29 10:40:46 2019-08-29 10:41:31 t 1 1 90750 398 0.00 2019-08-29 10:45:37 2019-08-29 10:46:43 t 1 2 90751 402 0.00 2019-08-29 10:44:10 2019-08-29 10:48:43 t 1 2 90752 346 0.00 2019-08-29 10:19:21 2019-08-29 10:49:26 t 1 2 90754 220 0.00 2019-08-29 10:42:06 2019-08-29 10:55:05 t 1 1 90763 220 0.00 2019-08-29 11:03:38 2019-08-29 11:04:11 t 1 1 90766 220 0.00 2019-08-29 11:05:20 2019-08-29 11:05:56 t 1 1 90774 220 0.00 2019-08-29 11:08:44 2019-08-29 11:09:20 t 1 1 90776 220 0.00 2019-08-29 11:09:20 2019-08-29 11:09:54 t 1 1 90779 220 0.00 2019-08-29 11:11:36 2019-08-29 11:12:07 t 1 1 90782 402 0.00 2019-08-29 11:13:26 2019-08-29 11:15:21 t 1 2 90785 220 0.00 2019-08-29 11:15:56 2019-08-29 11:17:18 t 1 1 90793 220 0.00 2019-08-29 11:26:22 2019-08-29 11:27:27 t 1 2 90796 375 0.00 2019-08-29 11:47:53 2019-08-29 11:48:58 t 1 2 90797 402 0.00 2019-08-29 11:41:30 2019-08-29 11:51:36 t 1 2 90798 220 0.00 2019-08-29 11:19:00 2019-08-29 11:55:49 t 1 1 90801 408 0.00 2019-08-29 12:02:29 2019-08-29 12:02:39 t 1 2 90808 288 0.00 2019-08-29 12:12:46 2019-08-29 12:13:52 t 1 2 90809 306 0.00 2019-08-29 12:13:33 2019-08-29 12:14:35 t 1 2 90812 212 0.00 2019-08-29 12:16:26 2019-08-29 12:17:00 t 1 2 90814 306 0.00 2019-08-29 12:18:58 2019-08-29 12:20:05 t 1 2 90819 212 0.00 2019-08-29 12:37:23 2019-08-29 12:37:43 t 1 2 90822 346 0.00 2019-08-29 09:23:46 2019-08-29 12:48:52 t 1 2 90830 306 0.00 2019-08-29 12:58:26 2019-08-29 12:59:27 t 1 2 90834 288 0.00 2019-08-29 13:03:05 2019-08-29 13:04:09 t 1 2 90838 346 0.00 2019-08-29 12:39:33 2019-08-29 13:09:38 t 1 2 90840 288 0.00 2019-08-29 13:12:21 2019-08-29 13:13:27 t 1 2 90842 400 0.00 2019-08-29 13:07:52 2019-08-29 13:17:58 t 1 2 90846 400 0.00 2019-08-29 13:12:14 2019-08-29 13:22:19 t 1 2 90848 392 0.00 2019-08-29 12:52:27 2019-08-29 13:24:24 t 1 2 90855 324 0.00 2019-08-29 13:34:42 2019-08-29 13:34:42 f 1 2 90858 306 0.00 2019-08-29 13:36:06 2019-08-29 13:37:13 t 1 2 90860 306 0.00 2019-08-29 13:37:39 2019-08-29 13:38:43 t 1 2 90863 294 0.00 2019-08-29 13:26:33 2019-08-29 13:41:56 t 1 2 90866 306 0.00 2019-08-29 13:43:13 2019-08-29 13:44:19 t 1 2 90867 247 0.00 2019-08-29 13:43:52 2019-08-29 13:47:12 t 1 2 90868 288 0.00 2019-08-29 13:50:18 2019-08-29 13:51:21 t 1 2 90871 288 0.00 2019-08-29 13:57:20 2019-08-29 13:58:23 t 1 2 90875 306 0.00 2019-08-29 14:05:47 2019-08-29 14:06:50 t 1 2 90878 306 0.00 2019-08-29 14:11:40 2019-08-29 14:12:44 t 1 2 90880 306 0.00 2019-08-29 14:18:02 2019-08-29 14:19:02 t 1 2 90881 408 0.00 2019-08-29 14:14:11 2019-08-29 14:22:19 t 1 2 90883 306 0.00 2019-08-29 14:23:47 2019-08-29 14:23:48 t 1 2 90888 296 0.00 2019-08-29 14:17:26 2019-08-29 14:27:49 t 1 2 90889 306 0.00 2019-08-29 14:27:25 2019-08-29 14:28:28 t 1 2 90891 288 0.00 2019-08-29 14:34:43 2019-08-29 14:35:49 t 1 2 90898 306 0.00 2019-08-29 14:38:41 2019-08-29 14:38:42 t 1 2 90899 349 0.00 2019-08-29 14:37:50 2019-08-29 14:38:56 t 1 2 90661 324 0.00 2019-08-29 09:08:31 2019-08-29 09:08:31 f 1 2 90662 324 0.00 2019-08-29 09:08:43 2019-08-29 09:08:43 f 1 2 90666 220 0.00 2019-08-29 09:09:03 2019-08-29 09:09:38 t 1 1 90667 324 0.00 2019-08-29 09:10:08 2019-08-29 09:10:08 f 1 2 90669 324 0.00 2019-08-29 09:10:22 2019-08-29 09:10:22 f 1 2 90671 306 0.00 2019-08-29 09:09:44 2019-08-29 09:10:49 t 1 2 90677 220 0.00 2019-08-29 09:12:19 2019-08-29 09:12:54 t 1 1 90680 220 0.00 2019-08-29 09:12:53 2019-08-29 09:13:27 t 1 1 90681 220 0.00 2019-08-29 09:13:27 2019-08-29 09:14:00 t 1 1 90692 288 0.00 2019-08-29 09:16:50 2019-08-29 09:17:56 t 1 2 90694 220 0.00 2019-08-29 09:15:38 2019-08-29 09:19:19 t 1 1 90696 306 0.00 2019-08-29 09:19:02 2019-08-29 09:20:08 t 1 2 90697 220 0.00 2019-08-29 09:19:53 2019-08-29 09:20:28 t 1 1 90703 288 0.00 2019-08-29 09:25:30 2019-08-29 09:26:34 t 1 2 90704 288 0.00 2019-08-29 09:28:16 2019-08-29 09:29:24 t 1 2 90706 306 0.00 2019-08-29 09:33:42 2019-08-29 09:33:45 t 1 2 90707 306 0.00 2019-08-29 09:33:48 2019-08-29 09:34:51 t 1 2 90708 288 0.00 2019-08-29 09:36:57 2019-08-29 09:38:01 t 1 2 90709 288 0.00 2019-08-29 09:39:59 2019-08-29 09:41:02 t 1 2 90710 288 0.00 2019-08-29 09:41:23 2019-08-29 09:42:25 t 1 2 90713 395 0.00 2019-08-29 09:45:52 2019-08-29 09:46:54 t 1 2 90719 212 0.00 2019-08-29 09:49:11 2019-08-29 09:49:28 t 1 2 90721 402 0.00 2019-08-29 09:49:50 2019-08-29 09:51:49 t 1 2 90722 395 0.00 2019-08-29 09:55:17 2019-08-29 09:56:26 t 1 2 90725 306 0.00 2019-08-29 10:00:49 2019-08-29 10:00:51 t 1 2 90728 306 0.00 2019-08-29 10:02:00 2019-08-29 10:03:03 t 1 2 90730 220 0.00 2019-08-29 09:20:27 2019-08-29 10:04:15 t 1 1 90735 220 0.00 2019-08-29 10:13:04 2019-08-29 10:17:27 t 1 2 90736 402 0.00 2019-08-29 10:00:34 2019-08-29 10:19:13 t 1 2 90738 220 0.00 2019-08-29 10:21:04 2019-08-29 10:26:12 t 1 2 90741 400 0.00 2019-08-29 10:25:18 2019-08-29 10:35:24 t 1 2 90742 220 0.00 2019-08-29 10:26:34 2019-08-29 10:36:59 t 1 1 90743 398 0.00 2019-08-29 10:38:10 2019-08-29 10:39:12 t 1 2 90745 220 0.00 2019-08-29 10:40:15 2019-08-29 10:40:36 t 1 1 90746 220 0.00 2019-08-29 10:40:40 2019-08-29 10:40:46 t 1 1 90749 375 0.00 2019-08-29 10:45:24 2019-08-29 10:46:29 t 1 2 90758 220 0.00 2019-08-29 11:00:28 2019-08-29 11:01:03 t 1 1 90761 220 0.00 2019-08-29 11:02:12 2019-08-29 11:03:07 t 1 1 90762 220 0.00 2019-08-29 11:03:07 2019-08-29 11:03:38 t 1 1 90769 220 0.00 2019-08-29 11:06:28 2019-08-29 11:07:03 t 1 1 90771 220 0.00 2019-08-29 11:07:37 2019-08-29 11:08:11 t 1 1 90773 220 0.00 2019-08-29 11:08:11 2019-08-29 11:08:44 t 1 1 90775 306 0.00 2019-08-29 11:08:36 2019-08-29 11:09:41 t 1 2 90777 220 0.00 2019-08-29 11:09:53 2019-08-29 11:10:28 t 1 1 90781 220 0.00 2019-08-29 11:13:24 2019-08-29 11:13:59 t 1 1 90783 220 0.00 2019-08-29 11:13:59 2019-08-29 11:15:25 t 1 1 90800 408 0.00 2019-08-29 12:01:59 2019-08-29 12:02:21 t 1 2 90803 288 0.00 2019-08-29 12:05:31 2019-08-29 12:06:36 t 1 2 90810 400 0.00 2019-08-29 11:50:05 2019-08-29 12:15:10 t 1 2 90823 400 0.00 2019-08-29 12:24:58 2019-08-29 12:50:04 t 1 2 90826 402 0.00 2019-08-29 12:44:39 2019-08-29 12:54:44 t 1 2 90828 212 0.00 2019-08-29 12:56:55 2019-08-29 12:57:17 t 1 2 90835 212 0.00 2019-08-29 13:05:08 2019-08-29 13:06:05 t 1 2 90839 408 0.00 2019-08-29 12:41:38 2019-08-29 13:10:59 t 1 2 90849 306 0.00 2019-08-29 13:23:36 2019-08-29 13:24:40 t 1 2 90850 306 0.00 2019-08-29 13:25:47 2019-08-29 13:26:50 t 1 2 90854 306 0.00 2019-08-29 13:33:08 2019-08-29 13:34:10 t 1 2 90859 288 0.00 2019-08-29 13:36:32 2019-08-29 13:37:38 t 1 2 90861 395 0.00 2019-08-29 13:34:05 2019-08-29 13:39:38 t 1 2 90873 288 0.00 2019-08-29 14:00:57 2019-08-29 14:02:02 t 1 2 90874 296 0.00 2019-08-29 14:03:57 2019-08-29 14:05:21 t 1 2 90877 363 0.00 2019-08-29 13:56:11 2019-08-29 14:11:59 t 1 2 90879 306 0.00 2019-08-29 14:16:00 2019-08-29 14:17:05 t 1 2 90884 306 0.00 2019-08-29 14:23:55 2019-08-29 14:24:57 t 1 2 90887 400 0.00 2019-08-29 13:27:20 2019-08-29 14:27:25 t 1 2 90893 400 0.00 2019-08-29 14:20:16 2019-08-29 14:37:04 t 1 2 90896 395 0.00 2019-08-29 14:32:06 2019-08-29 14:38:24 t 1 2 90909 400 0.00 2019-08-29 14:52:09 2019-08-29 14:52:09 f 1 2 90910 400 0.00 2019-08-29 14:37:31 2019-08-29 14:52:37 t 1 2 90913 400 0.00 2019-08-29 14:45:36 2019-08-29 14:55:41 t 1 2 90915 288 0.00 2019-08-29 14:57:17 2019-08-29 14:58:25 t 1 2 90917 400 0.00 2019-08-29 14:52:49 2019-08-29 15:02:54 t 1 2 90918 346 0.00 2019-08-29 14:54:44 2019-08-29 15:04:49 t 1 2 90921 400 0.00 2019-08-29 14:58:17 2019-08-29 15:08:22 t 1 2 90926 306 0.00 2019-08-29 15:21:03 2019-08-29 15:22:06 t 1 2 90928 288 0.00 2019-08-29 15:23:06 2019-08-29 15:24:11 t 1 2 90930 402 0.00 2019-08-29 15:12:25 2019-08-29 15:24:54 t 1 2 90934 288 0.00 2019-08-29 15:27:18 2019-08-29 15:28:23 t 1 2 90936 346 0.00 2019-08-29 15:09:00 2019-08-29 15:34:05 t 1 2 90939 220 0.00 2019-08-29 14:25:51 2019-08-29 15:39:21 t 1 2 90942 392 0.00 2019-08-29 15:29:34 2019-08-29 15:40:48 t 1 2 90945 288 0.00 2019-08-29 15:42:59 2019-08-29 15:44:04 t 1 2 90948 288 0.00 2019-08-29 15:45:55 2019-08-29 15:47:00 t 1 2 90950 288 0.00 2019-08-29 15:49:15 2019-08-29 15:50:20 t 1 2 90955 288 0.00 2019-08-29 15:56:05 2019-08-29 15:57:09 t 1 2 90969 288 0.00 2019-08-29 16:37:16 2019-08-29 16:38:24 t 1 2 90971 288 0.00 2019-08-29 16:43:28 2019-08-29 16:44:35 t 1 2 91145 346 0.00 2019-08-30 04:10:16 2019-08-30 04:25:21 t 1 2 91147 346 0.00 2019-08-29 20:27:49 2019-08-30 04:27:54 t 1 2 91154 343 0.00 2019-08-30 04:22:11 2019-08-30 07:33:47 t 1 2 91156 408 0.00 2019-08-30 08:08:49 2019-08-30 08:13:15 t 1 2 91158 220 0.00 2019-08-30 08:25:47 2019-08-30 08:30:39 t 1 1 91159 306 0.00 2019-08-30 08:30:10 2019-08-30 08:31:14 t 1 2 91165 220 0.00 2019-08-30 08:38:16 2019-08-30 08:58:47 t 1 1 91166 220 0.00 2019-08-30 08:58:51 2019-08-30 08:59:23 t 1 1 91167 306 0.00 2019-08-30 08:59:43 2019-08-30 09:00:46 t 1 2 91168 306 0.00 2019-08-30 09:01:56 2019-08-30 09:02:58 t 1 2 91169 220 0.00 2019-08-30 08:59:27 2019-08-30 09:05:13 t 1 1 91170 306 0.00 2019-08-30 09:14:21 2019-08-30 09:15:25 t 1 2 91173 220 0.00 2019-08-30 09:10:41 2019-08-30 09:40:27 t 1 1 91177 220 0.00 2019-08-30 09:41:37 2019-08-30 09:46:56 t 1 1 91180 220 0.00 2019-08-30 09:47:27 2019-08-30 09:47:41 t 1 1 91182 220 0.00 2019-08-30 09:47:40 2019-08-30 09:47:53 t 1 1 91186 220 0.00 2019-08-30 09:48:18 2019-08-30 09:48:36 t 1 1 91187 220 0.00 2019-08-30 09:48:35 2019-08-30 09:49:00 t 1 1 91190 220 0.00 2019-08-30 09:49:24 2019-08-30 09:49:37 t 1 1 91191 220 0.00 2019-08-30 09:49:37 2019-08-30 09:49:57 t 1 1 90664 306 0.00 2019-08-29 09:08:07 2019-08-29 09:09:14 t 1 2 90670 220 0.00 2019-08-29 09:10:11 2019-08-29 09:10:43 t 1 1 90673 220 0.00 2019-08-29 09:10:42 2019-08-29 09:11:14 t 1 1 90675 324 0.00 2019-08-29 09:12:15 2019-08-29 09:12:15 f 1 2 90679 324 0.00 2019-08-29 09:13:11 2019-08-29 09:13:11 f 1 2 90683 220 0.00 2019-08-29 09:14:00 2019-08-29 09:14:36 t 1 1 90685 220 0.00 2019-08-29 09:14:35 2019-08-29 09:15:07 t 1 1 90686 288 0.00 2019-08-29 09:14:50 2019-08-29 09:15:24 t 1 2 90690 306 0.00 2019-08-29 09:16:01 2019-08-29 09:17:09 t 1 2 90691 212 0.00 2019-08-29 09:17:22 2019-08-29 09:17:38 t 1 2 90693 306 0.00 2019-08-29 09:17:32 2019-08-29 09:18:38 t 1 2 90695 220 0.00 2019-08-29 09:19:19 2019-08-29 09:19:53 t 1 1 90700 306 0.00 2019-08-29 09:20:35 2019-08-29 09:21:36 t 1 2 90702 306 0.00 2019-08-29 09:23:45 2019-08-29 09:24:46 t 1 2 90715 395 0.00 2019-08-29 09:47:24 2019-08-29 09:48:26 t 1 2 90718 306 0.00 2019-08-29 09:48:24 2019-08-29 09:49:27 t 1 2 90724 351 0.00 2019-08-29 09:48:06 2019-08-29 09:58:11 t 1 2 90727 402 0.00 2019-08-29 09:52:28 2019-08-29 10:02:33 t 1 2 90729 288 0.00 2019-08-29 10:03:01 2019-08-29 10:04:05 t 1 2 90737 346 0.00 2019-08-29 10:24:22 2019-08-29 10:24:54 t 1 2 90744 220 0.00 2019-08-29 10:38:20 2019-08-29 10:40:15 t 1 1 90753 288 0.00 2019-08-29 10:49:03 2019-08-29 10:50:10 t 1 2 90756 402 0.00 2019-08-29 10:49:36 2019-08-29 10:59:41 t 1 2 90759 220 0.00 2019-08-29 11:01:03 2019-08-29 11:01:38 t 1 1 90765 220 0.00 2019-08-29 11:04:46 2019-08-29 11:05:20 t 1 1 90767 220 0.00 2019-08-29 10:35:40 2019-08-29 11:06:10 t 1 2 90770 220 0.00 2019-08-29 11:07:03 2019-08-29 11:07:38 t 1 1 90778 220 0.00 2019-08-29 11:10:28 2019-08-29 11:11:37 t 1 1 90784 220 0.00 2019-08-29 11:15:25 2019-08-29 11:15:57 t 1 1 90787 220 0.00 2019-08-29 11:17:51 2019-08-29 11:18:27 t 1 1 90788 220 0.00 2019-08-29 11:18:27 2019-08-29 11:19:01 t 1 1 90791 346 0.00 2019-08-29 09:49:26 2019-08-29 11:26:28 t 1 2 90799 220 0.00 2019-08-29 11:55:49 2019-08-29 11:59:29 t 1 1 90802 346 0.00 2019-08-29 12:04:12 2019-08-29 12:05:20 t 1 2 90805 288 0.00 2019-08-29 12:07:03 2019-08-29 12:08:07 t 1 2 90806 288 0.00 2019-08-29 12:09:49 2019-08-29 12:10:53 t 1 2 90817 400 0.00 2019-08-29 12:15:36 2019-08-29 12:25:41 t 1 2 90818 288 0.00 2019-08-29 12:32:18 2019-08-29 12:33:23 t 1 2 90820 398 0.00 2019-08-29 12:40:55 2019-08-29 12:40:58 t 1 2 90824 398 0.00 2019-08-29 12:50:26 2019-08-29 12:51:27 t 1 2 90831 400 0.00 2019-08-29 12:50:26 2019-08-29 13:00:31 t 1 2 90833 402 0.00 2019-08-29 12:47:19 2019-08-29 13:02:24 t 1 2 90836 372 0.00 2019-08-29 12:52:25 2019-08-29 13:07:38 t 1 2 90841 402 0.00 2019-08-29 12:58:27 2019-08-29 13:13:33 t 1 2 90844 220 0.00 2019-08-29 12:57:59 2019-08-29 13:21:33 t 1 1 90847 346 0.00 2019-08-29 13:21:21 2019-08-29 13:22:25 t 1 2 90852 288 0.00 2019-08-29 13:27:18 2019-08-29 13:28:21 t 1 2 90856 400 0.00 2019-08-29 13:24:42 2019-08-29 13:34:47 t 1 2 90864 346 0.00 2019-08-29 12:37:03 2019-08-29 13:42:08 t 1 2 90872 355 0.00 2019-08-29 13:11:41 2019-08-29 14:00:52 t 1 2 90876 306 0.00 2019-08-29 14:09:47 2019-08-29 14:10:51 t 1 2 90882 306 0.00 2019-08-29 14:21:19 2019-08-29 14:22:22 t 1 2 90886 306 0.00 2019-08-29 14:25:27 2019-08-29 14:26:29 t 1 2 90892 220 0.00 2019-08-29 14:23:53 2019-08-29 14:36:12 t 1 1 90895 343 0.00 2019-08-29 14:35:36 2019-08-29 14:38:19 t 1 2 90900 288 0.00 2019-08-29 14:38:29 2019-08-29 14:39:36 t 1 2 90907 400 0.00 2019-08-29 14:51:32 2019-08-29 14:51:32 f 1 2 90916 379 0.00 2019-08-29 13:08:56 2019-08-29 14:59:01 t 1 2 90920 408 0.00 2019-08-29 14:27:53 2019-08-29 15:07:09 t 1 2 90924 288 0.00 2019-08-29 15:14:08 2019-08-29 15:15:13 t 1 2 90925 402 0.00 2019-08-29 15:10:12 2019-08-29 15:20:17 t 1 2 90933 306 0.00 2019-08-29 15:25:47 2019-08-29 15:26:51 t 1 2 90949 288 0.00 2019-08-29 15:47:43 2019-08-29 15:48:46 t 1 2 90957 288 0.00 2019-08-29 15:58:29 2019-08-29 15:59:32 t 1 2 90959 288 0.00 2019-08-29 16:02:10 2019-08-29 16:03:13 t 1 2 90961 346 0.00 2019-08-29 15:24:53 2019-08-29 16:04:59 t 1 2 90963 220 0.00 2019-08-29 16:09:45 2019-08-29 16:12:29 t 1 1 90968 346 0.00 2019-08-29 16:31:56 2019-08-29 16:32:58 t 1 2 91146 363 0.00 2019-08-30 03:40:33 2019-08-30 04:25:38 t 1 2 91148 220 0.00 2019-08-30 06:13:42 2019-08-30 06:15:05 t 1 2 91150 220 0.00 2019-08-30 06:49:40 2019-08-30 06:49:49 t 1 1 91151 220 0.00 2019-08-30 06:49:53 2019-08-30 06:55:29 t 1 1 91152 220 0.00 2019-08-30 06:55:29 2019-08-30 06:58:40 t 1 1 91153 220 0.00 2019-08-30 06:58:40 2019-08-30 07:08:31 t 1 1 91160 220 0.00 2019-08-30 08:30:43 2019-08-30 08:38:12 t 1 1 91161 247 0.00 2019-08-30 08:42:10 2019-08-30 08:46:13 t 1 2 91162 306 0.00 2019-08-30 08:48:18 2019-08-30 08:49:20 t 1 2 91171 400 0.00 2019-08-30 09:00:09 2019-08-30 09:25:14 t 1 2 91176 412 0.00 2019-08-29 23:46:43 2019-08-30 09:46:55 t 1 1 91179 220 0.00 2019-08-30 09:47:08 2019-08-30 09:47:27 t 1 1 91181 220 0.00 2019-08-30 09:40:27 2019-08-30 09:47:49 t 1 1 91183 220 0.00 2019-08-30 09:47:53 2019-08-30 09:48:06 t 1 1 91185 220 0.00 2019-08-30 09:48:06 2019-08-30 09:48:19 t 1 1 91189 220 0.00 2019-08-30 09:49:12 2019-08-30 09:49:24 t 1 1 91193 220 0.00 2019-08-30 09:50:11 2019-08-30 09:50:23 t 1 1 91197 306 0.00 2019-08-30 09:59:58 2019-08-30 10:01:04 t 1 2 91199 400 0.00 2019-08-30 09:53:29 2019-08-30 10:08:34 t 1 2 91201 402 0.00 2019-08-30 10:05:35 2019-08-30 10:15:40 t 1 2 91203 408 0.00 2019-08-30 09:12:41 2019-08-30 10:16:39 t 1 2 91204 220 0.00 2019-08-30 09:51:27 2019-08-30 10:19:56 t 1 1 91206 346 0.00 2019-08-30 09:10:21 2019-08-30 10:30:26 t 1 2 91211 412 0.00 2019-08-30 10:33:57 2019-08-30 10:42:48 t 1 1 91217 220 0.00 2019-08-30 10:40:54 2019-08-30 10:57:38 t 1 1 91221 220 0.00 2019-08-30 10:58:43 2019-08-30 11:00:51 t 1 1 91226 220 0.00 2019-08-30 10:49:58 2019-08-30 11:03:58 t 1 2 91228 220 0.00 2019-08-30 11:03:25 2019-08-30 11:04:05 t 1 1 91231 220 0.00 2019-08-30 11:04:35 2019-08-30 11:04:46 t 1 1 91236 220 0.00 2019-08-30 11:07:12 2019-08-30 11:07:23 t 1 1 91238 220 0.00 2019-08-30 11:07:59 2019-08-30 11:08:11 t 1 1 91241 220 0.00 2019-08-30 11:10:00 2019-08-30 11:10:55 t 1 1 91247 220 0.00 2019-08-30 11:13:42 2019-08-30 11:13:53 t 1 1 91248 220 0.00 2019-08-30 11:13:53 2019-08-30 11:14:11 t 1 1 91249 220 0.00 2019-08-30 11:14:10 2019-08-30 11:14:22 t 1 1 91253 212 0.00 2019-08-30 11:18:11 2019-08-30 11:18:36 t 1 2 91254 400 0.00 2019-08-30 11:10:07 2019-08-30 11:20:12 t 1 2 91260 220 0.00 2019-08-30 11:25:27 2019-08-30 11:25:39 t 1 1 91262 220 0.00 2019-08-30 11:25:38 2019-08-30 11:27:51 t 1 1 90748 220 0.00 2019-08-29 10:41:31 2019-08-29 10:42:06 t 1 1 90755 220 0.00 2019-08-29 10:55:05 2019-08-29 10:55:39 t 1 1 90757 220 0.00 2019-08-29 10:55:39 2019-08-29 11:00:28 t 1 1 90760 220 0.00 2019-08-29 11:01:37 2019-08-29 11:02:12 t 1 1 90764 220 0.00 2019-08-29 11:04:11 2019-08-29 11:04:46 t 1 1 90768 220 0.00 2019-08-29 11:05:56 2019-08-29 11:06:28 t 1 1 90772 212 0.00 2019-08-29 11:07:56 2019-08-29 11:08:30 t 1 2 90780 220 0.00 2019-08-29 11:12:07 2019-08-29 11:13:24 t 1 1 90786 220 0.00 2019-08-29 11:17:18 2019-08-29 11:17:52 t 1 1 90789 355 0.00 2019-08-29 10:54:20 2019-08-29 11:19:55 t 1 2 90790 402 0.00 2019-08-29 11:22:38 2019-08-29 11:24:49 t 1 2 90792 212 0.00 2019-08-29 11:26:24 2019-08-29 11:26:48 t 1 2 90794 402 0.00 2019-08-29 11:21:06 2019-08-29 11:31:11 t 1 2 90795 306 0.00 2019-08-29 11:36:46 2019-08-29 11:37:48 t 1 2 90804 402 0.00 2019-08-29 11:57:05 2019-08-29 12:07:10 t 1 2 90807 402 0.00 2019-08-29 12:02:36 2019-08-29 12:11:56 t 1 2 90811 288 0.00 2019-08-29 12:14:19 2019-08-29 12:15:25 t 1 2 90813 288 0.00 2019-08-29 12:17:41 2019-08-29 12:18:45 t 1 2 90815 402 0.00 2019-08-29 12:12:06 2019-08-29 12:22:11 t 1 2 90816 288 0.00 2019-08-29 12:23:51 2019-08-29 12:24:59 t 1 2 90821 220 0.00 2019-08-29 11:30:23 2019-08-29 12:43:28 t 1 2 90825 288 0.00 2019-08-29 12:50:35 2019-08-29 12:51:40 t 1 2 90827 220 0.00 2019-08-29 11:59:29 2019-08-29 12:55:17 t 1 1 90829 220 0.00 2019-08-29 12:55:34 2019-08-29 12:58:53 t 1 1 90832 306 0.00 2019-08-29 13:00:31 2019-08-29 13:01:31 t 1 2 90837 379 0.00 2019-08-29 12:22:38 2019-08-29 13:08:46 t 1 2 90843 288 0.00 2019-08-29 13:18:41 2019-08-29 13:19:47 t 1 2 90845 288 0.00 2019-08-29 13:20:53 2019-08-29 13:21:56 t 1 2 90851 220 0.00 2019-08-29 11:20:30 2019-08-29 13:27:22 t 1 2 90853 324 0.00 2019-08-29 13:30:50 2019-08-29 13:30:50 f 1 2 90857 306 0.00 2019-08-29 13:34:28 2019-08-29 13:35:29 t 1 2 90862 306 0.00 2019-08-29 13:39:53 2019-08-29 13:40:58 t 1 2 90865 306 0.00 2019-08-29 13:41:33 2019-08-29 13:42:39 t 1 2 90869 392 0.00 2019-08-29 13:48:56 2019-08-29 13:53:18 t 1 2 90870 288 0.00 2019-08-29 13:55:57 2019-08-29 13:57:01 t 1 2 90885 220 0.00 2019-08-29 14:15:30 2019-08-29 14:25:23 t 1 2 90890 288 0.00 2019-08-29 14:32:37 2019-08-29 14:33:43 t 1 2 90894 288 0.00 2019-08-29 14:36:18 2019-08-29 14:37:22 t 1 2 90897 288 0.00 2019-08-29 14:37:33 2019-08-29 14:38:24 t 1 2 90901 306 0.00 2019-08-29 14:38:44 2019-08-29 14:39:49 t 1 2 90902 212 0.00 2019-08-29 14:40:59 2019-08-29 14:41:16 t 1 2 90904 220 0.00 2019-08-29 14:47:50 2019-08-29 14:48:01 t 1 1 90906 400 0.00 2019-08-29 14:50:56 2019-08-29 14:50:56 f 1 2 90912 288 0.00 2019-08-29 14:53:10 2019-08-29 14:54:13 t 1 2 90919 288 0.00 2019-08-29 15:05:16 2019-08-29 15:06:19 t 1 2 90922 306 0.00 2019-08-29 15:07:30 2019-08-29 15:08:33 t 1 2 90923 288 0.00 2019-08-29 15:08:48 2019-08-29 15:09:52 t 1 2 90929 220 0.00 2019-08-29 15:15:14 2019-08-29 15:24:18 t 1 2 90931 355 0.00 2019-08-29 14:37:57 2019-08-29 15:25:03 t 1 2 90932 288 0.00 2019-08-29 15:25:27 2019-08-29 15:26:32 t 1 2 90938 395 0.00 2019-08-29 15:38:41 2019-08-29 15:38:41 t 1 2 90940 288 0.00 2019-08-29 15:38:27 2019-08-29 15:39:33 t 1 2 90943 288 0.00 2019-08-29 15:39:58 2019-08-29 15:41:05 t 1 2 90944 288 0.00 2019-08-29 15:41:30 2019-08-29 15:42:29 t 1 2 90946 288 0.00 2019-08-29 15:44:23 2019-08-29 15:45:26 t 1 2 90953 288 0.00 2019-08-29 15:52:38 2019-08-29 15:53:46 t 1 2 90960 212 0.00 2019-08-29 16:03:52 2019-08-29 16:04:22 t 1 2 90965 395 0.00 2019-08-29 15:39:17 2019-08-29 16:15:55 t 1 2 90970 372 0.00 2019-08-29 16:40:40 2019-08-29 16:43:35 t 1 2 91149 212 0.00 2019-08-30 06:37:06 2019-08-30 06:37:28 t 1 2 91155 294 0.00 2019-08-30 06:59:27 2019-08-30 07:33:47 t 1 2 91157 324 0.00 2019-08-30 08:13:20 2019-08-30 08:13:20 f 1 2 91163 294 0.00 2019-08-30 07:49:07 2019-08-30 08:49:31 t 1 2 91164 402 0.00 2019-08-30 08:25:25 2019-08-30 08:58:40 t 1 2 91172 306 0.00 2019-08-30 09:36:47 2019-08-30 09:37:50 t 1 2 91174 411 0.00 2019-08-30 08:18:30 2019-08-30 09:41:37 t 1 1 91175 212 0.00 2019-08-30 09:42:33 2019-08-30 09:43:00 t 1 2 91178 220 0.00 2019-08-30 09:46:55 2019-08-30 09:47:09 t 1 1 91184 400 0.00 2019-08-30 09:38:03 2019-08-30 09:48:08 t 1 2 91188 220 0.00 2019-08-30 09:48:54 2019-08-30 09:49:12 t 1 1 91192 220 0.00 2019-08-30 09:49:56 2019-08-30 09:50:12 t 1 1 91195 212 0.00 2019-08-30 09:53:47 2019-08-30 09:54:03 t 1 2 91196 294 0.00 2019-08-30 08:59:34 2019-08-30 10:00:05 t 1 2 91200 375 0.00 2019-08-30 10:13:00 2019-08-30 10:14:04 t 1 2 91208 220 0.00 2019-08-30 10:07:35 2019-08-30 10:40:16 t 1 1 91210 288 0.00 2019-08-30 10:40:56 2019-08-30 10:42:00 t 1 2 91212 212 0.00 2019-08-30 10:42:29 2019-08-30 10:43:03 t 1 2 91214 296 0.00 2019-08-30 10:48:04 2019-08-30 10:52:27 t 1 2 91215 400 0.00 2019-08-30 10:46:31 2019-08-30 10:56:36 t 1 2 91216 412 0.00 2019-08-30 10:42:48 2019-08-30 10:57:37 t 1 1 91223 220 0.00 2019-08-30 11:02:37 2019-08-30 11:02:48 t 1 1 91225 220 0.00 2019-08-30 11:03:14 2019-08-30 11:03:25 t 1 1 91227 412 0.00 2019-08-30 11:03:52 2019-08-30 11:04:04 t 1 1 91230 220 0.00 2019-08-30 11:04:15 2019-08-30 11:04:35 t 1 1 91232 220 0.00 2019-08-30 11:04:45 2019-08-30 11:06:44 t 1 1 91233 220 0.00 2019-08-30 11:06:43 2019-08-30 11:06:54 t 1 1 91235 220 0.00 2019-08-30 11:06:54 2019-08-30 11:07:12 t 1 1 91237 220 0.00 2019-08-30 11:07:22 2019-08-30 11:07:59 t 1 1 91242 220 0.00 2019-08-30 11:10:54 2019-08-30 11:11:26 t 1 1 91244 220 0.00 2019-08-30 11:11:54 2019-08-30 11:12:05 t 1 1 91246 220 0.00 2019-08-30 11:12:05 2019-08-30 11:13:43 t 1 1 91251 220 0.00 2019-08-30 11:17:24 2019-08-30 11:17:35 t 1 1 91252 414 0.00 2019-08-30 11:13:11 2019-08-30 11:18:06 t 1 1 91255 220 0.00 2019-08-30 11:17:35 2019-08-30 11:20:35 t 1 1 91257 220 0.00 2019-08-30 11:21:25 2019-08-30 11:21:35 t 1 1 91258 400 0.00 2019-08-30 11:14:21 2019-08-30 11:24:27 t 1 2 91259 220 0.00 2019-08-30 11:21:34 2019-08-30 11:25:28 t 1 1 91263 220 0.00 2019-08-30 11:27:48 2019-08-30 11:28:01 t 1 1 91264 414 0.00 2019-08-30 11:26:02 2019-08-30 11:29:51 t 1 1 91265 220 0.00 2019-08-30 11:28:01 2019-08-30 11:32:25 t 1 1 91267 400 0.00 2019-08-30 11:45:58 2019-08-30 11:51:58 t 1 2 91268 212 0.00 2019-08-30 11:55:09 2019-08-30 11:55:45 t 1 2 91269 294 0.00 2019-08-30 10:58:32 2019-08-30 11:58:56 t 1 2 91272 306 0.00 2019-08-30 12:04:08 2019-08-30 12:04:09 t 1 2 91273 306 0.00 2019-08-30 12:09:41 2019-08-30 12:10:42 t 1 2 91274 220 0.00 2019-08-30 12:13:10 2019-08-30 12:18:02 t 1 1 91275 212 0.00 2019-08-30 12:51:32 2019-08-30 12:52:19 t 1 2 90903 288 0.00 2019-08-29 14:40:18 2019-08-29 14:41:22 t 1 2 90905 400 0.00 2019-08-29 14:50:23 2019-08-29 14:50:23 f 1 2 90908 400 0.00 2019-08-29 14:51:51 2019-08-29 14:51:51 f 1 2 90911 306 0.00 2019-08-29 14:52:35 2019-08-29 14:53:36 t 1 2 90914 288 0.00 2019-08-29 14:55:40 2019-08-29 14:56:45 t 1 2 90927 288 0.00 2019-08-29 15:21:47 2019-08-29 15:22:51 t 1 2 90935 288 0.00 2019-08-29 15:28:40 2019-08-29 15:29:44 t 1 2 90937 288 0.00 2019-08-29 15:35:04 2019-08-29 15:36:09 t 1 2 90941 212 0.00 2019-08-29 15:39:05 2019-08-29 15:39:35 t 1 2 90947 355 0.00 2019-08-29 15:42:17 2019-08-29 15:46:17 t 1 2 90951 288 0.00 2019-08-29 15:50:57 2019-08-29 15:52:01 t 1 2 90952 306 0.00 2019-08-29 15:52:03 2019-08-29 15:53:07 t 1 2 90954 288 0.00 2019-08-29 15:54:08 2019-08-29 15:55:13 t 1 2 90956 306 0.00 2019-08-29 15:57:36 2019-08-29 15:58:40 t 1 2 90958 288 0.00 2019-08-29 16:00:48 2019-08-29 16:01:52 t 1 2 90962 306 0.00 2019-08-29 16:10:43 2019-08-29 16:11:48 t 1 2 90964 220 0.00 2019-08-29 16:12:29 2019-08-29 16:14:29 t 1 1 90966 346 0.00 2019-08-29 16:27:40 2019-08-29 16:28:45 t 1 2 90967 331 0.00 2019-08-29 16:31:37 2019-08-29 16:32:43 t 1 2 91194 220 0.00 2019-08-30 09:05:40 2019-08-30 09:51:21 t 1 2 91198 220 0.00 2019-08-30 09:50:23 2019-08-30 10:07:30 t 1 1 91202 400 0.00 2019-08-30 10:05:49 2019-08-30 10:15:55 t 1 2 91205 220 0.00 2019-08-30 10:29:49 2019-08-30 10:30:15 t 1 2 91207 400 0.00 2019-08-30 10:13:46 2019-08-30 10:33:51 t 1 2 91209 402 0.00 2019-08-30 10:07:00 2019-08-30 10:40:38 t 1 2 91213 346 0.00 2019-08-30 10:39:05 2019-08-30 10:49:10 t 1 2 91218 220 0.00 2019-08-30 10:57:37 2019-08-30 10:57:48 t 1 1 91219 355 0.00 2019-08-30 10:57:13 2019-08-30 10:58:26 t 1 2 91220 220 0.00 2019-08-30 10:57:48 2019-08-30 10:58:43 t 1 1 91222 220 0.00 2019-08-30 11:00:50 2019-08-30 11:02:38 t 1 1 91224 220 0.00 2019-08-30 11:02:48 2019-08-30 11:03:14 t 1 1 91229 220 0.00 2019-08-30 11:04:04 2019-08-30 11:04:15 t 1 1 91234 247 0.00 2019-08-30 11:03:46 2019-08-30 11:06:59 t 1 2 91239 414 0.00 2019-08-30 11:02:24 2019-08-30 11:09:24 t 1 1 91240 220 0.00 2019-08-30 11:08:10 2019-08-30 11:10:00 t 1 1 91243 220 0.00 2019-08-30 11:11:31 2019-08-30 11:11:55 t 1 1 91245 400 0.00 2019-08-30 11:03:28 2019-08-30 11:13:33 t 1 2 91250 220 0.00 2019-08-30 11:14:21 2019-08-30 11:17:25 t 1 1 91256 220 0.00 2019-08-30 11:20:41 2019-08-30 11:21:25 t 1 1 91261 414 0.00 2019-08-30 11:21:52 2019-08-30 11:26:02 t 1 1 91270 306 0.00 2019-08-30 12:03:20 2019-08-30 12:03:22 t 1 2 91271 306 0.00 2019-08-30 12:03:56 2019-08-30 12:03:58 t 1 2 91279 247 0.00 2019-08-30 13:13:04 2019-08-30 13:14:17 t 1 2 91290 306 0.00 2019-08-30 13:46:11 2019-08-30 13:47:16 t 1 2 91297 408 0.00 2019-08-30 13:09:28 2019-08-30 14:09:52 t 1 2 91301 400 0.00 2019-08-30 13:04:22 2019-08-30 14:29:28 t 1 2 91303 400 0.00 2019-08-30 14:36:23 2019-08-30 14:36:24 t 1 2 91308 351 0.00 2019-08-30 14:10:23 2019-08-30 14:50:29 t 1 2 91316 411 0.00 2019-08-30 14:59:44 2019-08-30 15:08:19 t 1 1 91319 400 0.00 2019-08-30 15:03:38 2019-08-30 15:13:43 t 1 2 91320 212 0.00 2019-08-30 15:15:27 2019-08-30 15:15:45 t 1 2 91321 346 0.00 2019-08-30 15:18:36 2019-08-30 15:19:41 t 1 2 91324 292 0.00 2019-08-30 15:37:56 2019-08-30 15:39:00 t 1 2 91326 355 0.00 2019-08-30 15:34:31 2019-08-30 15:46:39 t 1 2 91327 402 0.00 2019-08-30 15:22:46 2019-08-30 15:47:51 t 1 2 91328 306 0.00 2019-08-30 15:47:28 2019-08-30 15:48:33 t 1 2 91329 306 0.00 2019-08-30 15:54:51 2019-08-30 15:55:53 t 1 2 91338 346 0.00 2019-08-30 15:16:05 2019-08-30 16:21:10 t 1 2 91343 296 0.00 2019-08-30 16:21:26 2019-08-30 16:30:50 t 1 2 91345 311 0.00 2019-08-30 16:30:13 2019-08-30 16:31:47 t 1 2 91347 346 0.00 2019-08-30 16:39:46 2019-08-30 16:40:20 t 1 2 91351 400 0.00 2019-08-30 15:42:12 2019-08-30 16:52:18 t 1 2 91355 400 0.00 2019-08-30 16:43:07 2019-08-30 16:58:12 t 1 2 91356 306 0.00 2019-08-30 16:58:28 2019-08-30 16:59:29 t 1 2 91360 385 0.00 2019-08-30 16:55:25 2019-08-30 17:22:35 t 1 2 91363 212 0.00 2019-08-30 17:44:46 2019-08-30 17:45:08 t 1 2 91366 412 0.00 2019-08-30 17:34:06 2019-08-30 17:55:29 t 1 1 91367 288 0.00 2019-08-30 17:54:09 2019-08-30 17:56:23 t 1 1 91369 220 0.00 2019-08-30 18:06:01 2019-08-30 18:07:37 t 1 1 91372 247 0.00 2019-08-30 18:16:15 2019-08-30 18:17:48 t 1 2 91373 346 0.00 2019-08-30 18:17:39 2019-08-30 18:18:39 t 1 2 91378 306 0.00 2019-08-30 18:40:57 2019-08-30 18:42:02 t 1 2 91379 361 0.00 2019-08-30 17:59:42 2019-08-30 18:43:51 t 1 2 91380 402 0.00 2019-08-30 18:31:43 2019-08-30 18:51:48 t 1 2 91381 212 0.00 2019-08-30 18:53:27 2019-08-30 18:53:45 t 1 2 91382 363 0.00 2019-08-30 18:08:25 2019-08-30 18:55:13 t 1 2 91391 402 0.00 2019-08-30 19:01:29 2019-08-30 19:21:34 t 1 2 91394 355 0.00 2019-08-30 19:13:36 2019-08-30 19:33:41 t 1 2 91397 372 0.00 2019-08-30 19:37:24 2019-08-30 19:38:48 t 1 2 91400 306 0.00 2019-08-30 19:52:48 2019-08-30 19:53:55 t 1 2 91403 306 0.00 2019-08-30 20:01:24 2019-08-30 20:02:22 t 1 2 91405 361 0.00 2019-08-30 19:19:52 2019-08-30 20:07:21 t 1 2 91406 220 0.00 2019-08-30 20:01:35 2019-08-30 20:08:51 t 1 1 91411 385 0.00 2019-08-30 19:58:08 2019-08-30 20:24:03 t 1 2 91419 306 0.00 2019-08-30 20:59:15 2019-08-30 21:00:18 t 1 2 91424 346 0.00 2019-08-30 21:11:02 2019-08-30 21:26:07 t 1 2 91425 411 0.00 2019-08-30 15:08:19 2019-08-30 21:26:42 t 1 1 91430 411 0.00 2019-08-30 21:31:12 2019-08-30 21:32:13 t 1 1 91433 220 0.00 2019-08-30 21:33:44 2019-08-30 21:34:57 t 1 1 91441 220 0.00 2019-08-30 22:07:40 2019-08-30 22:08:58 t 1 2 91445 296 0.00 2019-08-30 22:26:11 2019-08-30 22:27:34 t 1 2 91447 220 0.00 2019-08-30 21:29:19 2019-08-30 22:34:24 t 1 2 91449 363 0.00 2019-08-30 21:26:18 2019-08-30 22:36:24 t 1 2 91450 306 0.00 2019-08-30 22:36:20 2019-08-30 22:37:22 t 1 2 91452 306 0.00 2019-08-30 22:41:07 2019-08-30 22:42:10 t 1 2 91457 331 0.00 2019-08-30 22:51:32 2019-08-30 22:51:50 t 1 2 91462 306 0.00 2019-08-30 22:54:42 2019-08-30 22:55:46 t 1 2 91463 331 0.00 2019-08-30 22:55:52 2019-08-30 22:56:49 t 1 2 91464 212 0.00 2019-08-30 22:57:05 2019-08-30 22:57:26 t 1 2 91469 412 0.00 2019-08-30 23:12:46 2019-08-30 23:13:47 t 1 1 91472 212 0.00 2019-08-30 23:15:07 2019-08-30 23:15:51 t 1 2 91473 306 0.00 2019-08-30 23:15:48 2019-08-30 23:16:52 t 1 2 91475 247 0.00 2019-08-30 23:16:49 2019-08-30 23:19:22 t 1 2 91476 331 0.00 2019-08-30 23:20:14 2019-08-30 23:21:15 t 1 2 91479 412 0.00 2019-08-30 23:23:11 2019-08-30 23:27:50 t 1 1 91481 212 0.00 2019-08-30 23:33:13 2019-08-30 23:34:57 t 1 2 91483 296 0.00 2019-08-30 23:24:32 2019-08-30 23:37:56 t 1 2 91003 363 0.00 2019-08-29 18:13:24 2019-08-29 18:23:40 t 1 2 91006 306 0.00 2019-08-29 18:42:01 2019-08-29 18:43:04 t 1 2 91010 220 0.00 2019-08-29 18:26:11 2019-08-29 18:55:18 t 1 1 91011 324 0.00 2019-08-29 19:01:36 2019-08-29 19:01:36 f 1 2 91017 324 0.00 2019-08-29 19:19:27 2019-08-29 19:19:27 f 1 2 91019 324 0.00 2019-08-29 19:19:41 2019-08-29 19:19:41 f 1 2 91022 400 0.00 2019-08-29 19:22:52 2019-08-29 19:32:57 t 1 2 91024 367 0.00 2019-08-29 19:51:31 2019-08-29 19:52:37 t 1 2 91025 400 0.00 2019-08-29 19:57:02 2019-08-29 19:57:02 f 1 2 91027 400 0.00 2019-08-29 19:53:21 2019-08-29 20:03:26 t 1 2 91028 220 0.00 2019-08-29 20:07:54 2019-08-29 20:10:54 t 1 2 91029 400 0.00 2019-08-29 19:57:41 2019-08-29 20:17:46 t 1 2 91035 398 0.00 2019-08-29 20:38:01 2019-08-29 20:39:06 t 1 2 91037 398 0.00 2019-08-29 20:41:14 2019-08-29 20:42:16 t 1 2 91040 372 0.00 2019-08-29 20:39:27 2019-08-29 20:58:34 t 1 2 91041 400 0.00 2019-08-29 20:44:04 2019-08-29 20:59:10 t 1 2 91042 400 0.00 2019-08-29 20:55:07 2019-08-29 21:05:13 t 1 2 91043 385 0.00 2019-08-29 20:58:54 2019-08-29 21:07:17 t 1 2 91045 220 0.00 2019-08-29 19:49:11 2019-08-29 21:16:22 t 1 1 91046 247 0.00 2019-08-29 21:21:38 2019-08-29 21:30:07 t 1 2 91047 306 0.00 2019-08-29 21:35:11 2019-08-29 21:36:14 t 1 2 91048 324 0.00 2019-08-29 21:42:07 2019-08-29 21:42:07 f 1 2 91057 318 0.00 2019-08-29 22:23:37 2019-08-29 22:23:37 f 1 2 91066 375 0.00 2019-08-29 22:51:18 2019-08-29 22:52:24 t 1 2 91067 375 0.00 2019-08-29 22:54:26 2019-08-29 22:55:32 t 1 2 91072 367 0.00 2019-08-29 23:14:53 2019-08-29 23:15:58 t 1 2 91073 212 0.00 2019-08-29 23:18:20 2019-08-29 23:18:42 t 1 2 91076 324 0.00 2019-08-29 23:22:59 2019-08-29 23:22:59 f 1 2 91084 220 0.00 2019-08-29 23:34:19 2019-08-29 23:34:54 t 1 1 91085 220 0.00 2019-08-29 23:34:53 2019-08-29 23:35:27 t 1 1 91086 220 0.00 2019-08-29 23:35:27 2019-08-29 23:36:01 t 1 1 91094 220 0.00 2019-08-29 23:40:02 2019-08-29 23:40:37 t 1 1 91101 220 0.00 2019-08-29 23:44:06 2019-08-29 23:44:42 t 1 1 91103 220 0.00 2019-08-29 23:45:17 2019-08-29 23:45:52 t 1 1 91105 220 0.00 2019-08-29 23:45:51 2019-08-29 23:45:58 t 1 1 91108 400 0.00 2019-08-29 23:41:20 2019-08-29 23:51:25 t 1 2 91111 324 0.00 2019-08-30 00:01:00 2019-08-30 00:01:00 f 1 2 91115 361 0.00 2019-08-29 23:40:54 2019-08-30 00:04:31 t 1 2 91119 220 0.00 2019-08-29 23:59:46 2019-08-30 00:16:23 t 1 2 91120 220 0.00 2019-08-30 00:08:14 2019-08-30 00:26:53 t 1 1 91126 220 0.00 2019-08-30 00:25:34 2019-08-30 00:41:57 t 1 2 91127 212 0.00 2019-08-30 01:08:24 2019-08-30 01:08:35 t 1 2 91128 212 0.00 2019-08-30 01:08:54 2019-08-30 01:09:14 t 1 2 91129 398 0.00 2019-08-30 01:13:54 2019-08-30 01:14:57 t 1 2 91130 220 0.00 2019-08-30 00:26:53 2019-08-30 01:17:54 t 1 1 91131 398 0.00 2019-08-30 01:33:39 2019-08-30 01:34:46 t 1 2 91134 398 0.00 2019-08-30 01:58:26 2019-08-30 01:59:35 t 1 2 91135 296 0.00 2019-08-30 01:01:26 2019-08-30 02:01:47 t 1 2 91140 372 0.00 2019-08-30 02:37:49 2019-08-30 02:40:57 t 1 2 91266 400 0.00 2019-08-30 11:30:15 2019-08-30 11:40:20 t 1 2 91276 288 0.00 2019-08-30 12:53:17 2019-08-30 12:54:25 t 1 2 91278 288 0.00 2019-08-30 13:10:52 2019-08-30 13:11:57 t 1 2 91280 306 0.00 2019-08-30 13:18:39 2019-08-30 13:19:45 t 1 2 91281 288 0.00 2019-08-30 13:20:47 2019-08-30 13:20:48 t 1 2 91283 220 0.00 2019-08-30 11:29:01 2019-08-30 13:25:05 t 1 1 91285 355 0.00 2019-08-30 13:16:07 2019-08-30 13:31:12 t 1 2 91287 212 0.00 2019-08-30 13:37:37 2019-08-30 13:38:01 t 1 2 91288 220 0.00 2019-08-30 13:30:14 2019-08-30 13:40:19 t 1 2 91289 367 0.00 2019-08-30 13:44:17 2019-08-30 13:45:23 t 1 2 91292 306 0.00 2019-08-30 13:58:48 2019-08-30 13:59:50 t 1 2 91295 306 0.00 2019-08-30 14:01:43 2019-08-30 14:02:48 t 1 2 91298 288 0.00 2019-08-30 14:14:25 2019-08-30 14:15:29 t 1 2 91300 306 0.00 2019-08-30 14:22:23 2019-08-30 14:23:19 t 1 2 91304 400 0.00 2019-08-30 14:29:50 2019-08-30 14:39:55 t 1 2 91305 220 0.00 2019-08-30 14:41:36 2019-08-30 14:43:35 t 1 2 91306 346 0.00 2019-08-30 14:48:56 2019-08-30 14:49:58 t 1 2 91310 361 0.00 2019-08-30 13:43:08 2019-08-30 14:58:22 t 1 2 91313 220 0.00 2019-08-30 14:53:38 2019-08-30 15:02:18 t 1 1 91315 400 0.00 2019-08-30 14:55:57 2019-08-30 15:06:02 t 1 2 91317 381 0.00 2019-08-30 14:53:44 2019-08-30 15:08:49 t 1 2 91318 288 0.00 2019-08-30 15:03:40 2019-08-30 15:10:46 t 1 1 91323 220 0.00 2019-08-30 15:16:04 2019-08-30 15:30:43 t 1 1 91330 306 0.00 2019-08-30 15:56:20 2019-08-30 15:57:23 t 1 2 91331 220 0.00 2019-08-30 15:14:11 2019-08-30 15:58:18 t 1 2 91332 220 0.00 2019-08-30 15:55:05 2019-08-30 16:00:17 t 1 1 91334 306 0.00 2019-08-30 16:08:04 2019-08-30 16:09:09 t 1 2 91335 306 0.00 2019-08-30 16:09:47 2019-08-30 16:10:53 t 1 2 91337 306 0.00 2019-08-30 16:11:11 2019-08-30 16:12:15 t 1 2 91339 292 0.00 2019-08-30 16:21:07 2019-08-30 16:22:11 t 1 2 91342 306 0.00 2019-08-30 16:27:33 2019-08-30 16:28:39 t 1 2 91346 306 0.00 2019-08-30 16:33:51 2019-08-30 16:34:53 t 1 2 91348 306 0.00 2019-08-30 16:39:37 2019-08-30 16:40:41 t 1 2 91349 220 0.00 2019-08-30 16:41:44 2019-08-30 16:43:05 t 1 1 91350 385 0.00 2019-08-30 15:52:35 2019-08-30 16:50:56 t 1 2 91353 247 0.00 2019-08-30 16:50:06 2019-08-30 16:53:59 t 1 2 91354 220 0.00 2019-08-30 16:53:05 2019-08-30 16:55:28 t 1 2 91357 412 0.00 2019-08-30 13:11:32 2019-08-30 17:01:06 t 1 1 91359 306 0.00 2019-08-30 17:10:05 2019-08-30 17:11:09 t 1 2 91362 408 0.00 2019-08-30 16:34:19 2019-08-30 17:34:38 t 1 2 91364 288 0.00 2019-08-30 17:39:12 2019-08-30 17:53:31 t 1 1 91370 288 0.00 2019-08-30 17:55:29 2019-08-30 18:08:40 t 1 1 91374 400 0.00 2019-08-30 18:08:48 2019-08-30 18:18:53 t 1 2 91385 402 0.00 2019-08-30 18:47:14 2019-08-30 19:01:11 t 1 2 91386 400 0.00 2019-08-30 18:52:35 2019-08-30 19:02:40 t 1 2 91387 363 0.00 2019-08-30 18:55:26 2019-08-30 19:14:23 t 1 2 91388 412 0.00 2019-08-30 18:24:35 2019-08-30 19:16:39 t 1 1 91389 355 0.00 2019-08-30 17:52:15 2019-08-30 19:17:20 t 1 2 91390 346 0.00 2019-08-30 18:23:01 2019-08-30 19:18:06 t 1 2 91395 372 0.00 2019-08-30 19:37:04 2019-08-30 19:37:05 t 1 2 91404 294 0.00 2019-08-30 19:03:54 2019-08-30 20:04:17 t 1 2 91407 220 0.00 2019-08-30 20:08:54 2019-08-30 20:10:17 t 1 1 91408 402 0.00 2019-08-30 19:48:12 2019-08-30 20:13:33 t 1 2 91410 220 0.00 2019-08-30 20:10:48 2019-08-30 20:22:21 t 1 1 91415 292 0.00 2019-08-30 20:31:29 2019-08-30 20:32:35 t 1 2 91417 408 0.00 2019-08-30 20:23:47 2019-08-30 20:43:13 t 1 2 91418 306 0.00 2019-08-30 20:46:13 2019-08-30 20:47:19 t 1 2 91427 346 0.00 2019-08-30 21:19:43 2019-08-30 21:29:48 t 1 2 91004 212 0.00 2019-08-29 18:36:37 2019-08-29 18:36:57 t 1 2 91007 306 0.00 2019-08-29 18:43:34 2019-08-29 18:44:42 t 1 2 91013 408 0.00 2019-08-29 18:43:05 2019-08-29 19:09:04 t 1 2 91016 294 0.00 2019-08-29 18:18:35 2019-08-29 19:18:59 t 1 2 91018 411 0.00 2019-08-29 19:18:57 2019-08-29 19:19:32 t 1 1 91020 220 0.00 2019-08-29 19:17:57 2019-08-29 19:28:02 t 1 2 91026 400 0.00 2019-08-29 19:42:07 2019-08-29 19:57:12 t 1 2 91030 411 0.00 2019-08-29 19:19:56 2019-08-29 20:22:59 t 1 1 91031 311 0.00 2019-08-29 20:03:17 2019-08-29 20:28:22 t 1 2 91034 220 0.00 2019-08-29 20:12:30 2019-08-29 20:33:53 t 1 2 91036 212 0.00 2019-08-29 20:41:00 2019-08-29 20:41:42 t 1 2 91049 414 0.00 2019-08-29 21:46:09 2019-08-29 21:46:37 t 1 1 91050 414 0.00 2019-08-29 21:52:27 2019-08-29 21:52:30 t 1 1 91054 294 0.00 2019-08-29 21:16:56 2019-08-29 22:17:17 t 1 2 91056 318 0.00 2019-08-29 22:23:05 2019-08-29 22:23:05 f 1 2 91058 381 0.00 2019-08-29 22:16:38 2019-08-29 22:26:43 t 1 2 91061 212 0.00 2019-08-29 22:36:19 2019-08-29 22:36:48 t 1 2 91063 411 0.00 2019-08-29 20:22:59 2019-08-29 22:37:29 t 1 1 91064 220 0.00 2019-08-29 22:21:00 2019-08-29 22:38:08 t 1 1 91070 355 0.00 2019-08-29 22:41:43 2019-08-29 23:06:33 t 1 2 91074 367 0.00 2019-08-29 23:17:36 2019-08-29 23:18:43 t 1 2 91077 212 0.00 2019-08-29 23:22:41 2019-08-29 23:23:03 t 1 2 91078 247 0.00 2019-08-29 23:25:08 2019-08-29 23:27:31 t 1 2 91080 400 0.00 2019-08-29 22:39:37 2019-08-29 23:32:26 t 1 2 91082 220 0.00 2019-08-29 23:32:56 2019-08-29 23:33:47 t 1 1 91083 220 0.00 2019-08-29 23:33:47 2019-08-29 23:34:19 t 1 1 91089 220 0.00 2019-08-29 23:37:09 2019-08-29 23:37:44 t 1 1 91092 220 0.00 2019-08-29 23:38:54 2019-08-29 23:39:28 t 1 1 91093 220 0.00 2019-08-29 23:39:28 2019-08-29 23:40:02 t 1 1 91095 220 0.00 2019-08-29 23:40:37 2019-08-29 23:41:13 t 1 1 91096 220 0.00 2019-08-29 23:41:12 2019-08-29 23:41:46 t 1 1 91097 220 0.00 2019-08-29 23:41:46 2019-08-29 23:42:21 t 1 1 91099 220 0.00 2019-08-29 23:42:56 2019-08-29 23:43:31 t 1 1 91100 220 0.00 2019-08-29 23:43:31 2019-08-29 23:44:07 t 1 1 91102 220 0.00 2019-08-29 23:44:42 2019-08-29 23:45:17 t 1 1 91104 372 0.00 2019-08-29 23:44:48 2019-08-29 23:45:52 t 1 2 91107 372 0.00 2019-08-29 23:49:39 2019-08-29 23:50:45 t 1 2 91112 324 0.00 2019-08-30 00:01:07 2019-08-30 00:01:07 f 1 2 91113 212 0.00 2019-08-30 00:01:54 2019-08-30 00:02:39 t 1 2 91117 355 0.00 2019-08-30 00:04:32 2019-08-30 00:08:51 t 1 2 91118 392 0.00 2019-08-29 23:59:51 2019-08-30 00:10:38 t 1 2 91122 400 0.00 2019-08-29 23:54:01 2019-08-30 00:29:06 t 1 2 91123 220 0.00 2019-08-30 00:23:46 2019-08-30 00:33:51 t 1 2 91124 212 0.00 2019-08-30 00:33:51 2019-08-30 00:34:20 t 1 2 91125 408 0.00 2019-08-29 23:04:25 2019-08-30 00:38:16 t 1 2 91132 331 0.00 2019-08-30 01:40:41 2019-08-30 01:41:45 t 1 2 91133 398 0.00 2019-08-30 01:48:13 2019-08-30 01:49:19 t 1 2 91136 363 0.00 2019-08-29 23:01:12 2019-08-30 02:10:59 t 1 2 91139 363 0.00 2019-08-30 02:15:11 2019-08-30 02:40:16 t 1 2 91141 294 0.00 2019-08-30 00:54:15 2019-08-30 02:46:39 t 1 2 91142 311 0.00 2019-08-30 01:28:47 2019-08-30 03:08:52 t 1 2 91144 372 0.00 2019-08-30 02:56:49 2019-08-30 03:41:54 t 1 2 91277 361 0.00 2019-08-30 11:31:20 2019-08-30 13:02:15 t 1 2 91282 288 0.00 2019-08-30 13:20:53 2019-08-30 13:22:00 t 1 2 91284 220 0.00 2019-08-30 13:26:21 2019-08-30 13:29:35 t 1 2 91286 296 0.00 2019-08-30 13:30:22 2019-08-30 13:31:45 t 1 2 91291 288 0.00 2019-08-30 13:53:42 2019-08-30 13:54:46 t 1 2 91293 306 0.00 2019-08-30 14:00:14 2019-08-30 14:01:15 t 1 2 91294 212 0.00 2019-08-30 14:01:32 2019-08-30 14:01:51 t 1 2 91296 385 0.00 2019-08-30 13:19:08 2019-08-30 14:07:31 t 1 2 91299 247 0.00 2019-08-30 14:16:22 2019-08-30 14:18:39 t 1 2 91302 408 0.00 2019-08-30 14:16:02 2019-08-30 14:34:28 t 1 2 91307 212 0.00 2019-08-30 14:49:45 2019-08-30 14:50:16 t 1 2 91309 400 0.00 2019-08-30 14:36:37 2019-08-30 14:51:43 t 1 2 91311 400 0.00 2019-08-30 14:44:43 2019-08-30 14:59:48 t 1 2 91312 355 0.00 2019-08-30 14:55:29 2019-08-30 15:01:15 t 1 2 91314 288 0.00 2019-08-30 14:58:31 2019-08-30 15:03:40 t 1 1 91322 400 0.00 2019-08-30 15:14:30 2019-08-30 15:24:35 t 1 2 91325 306 0.00 2019-08-30 15:42:03 2019-08-30 15:43:04 t 1 2 91333 306 0.00 2019-08-30 16:03:12 2019-08-30 16:04:18 t 1 2 91336 212 0.00 2019-08-30 16:11:33 2019-08-30 16:11:52 t 1 2 91340 306 0.00 2019-08-30 16:21:38 2019-08-30 16:22:44 t 1 2 91341 220 0.00 2019-08-30 16:21:08 2019-08-30 16:23:31 t 1 2 91344 306 0.00 2019-08-30 16:30:36 2019-08-30 16:31:40 t 1 2 91352 306 0.00 2019-08-30 16:52:42 2019-08-30 16:53:44 t 1 2 91358 306 0.00 2019-08-30 17:00:39 2019-08-30 17:01:43 t 1 2 91361 349 0.00 2019-08-30 17:26:08 2019-08-30 17:27:17 t 1 2 91365 400 0.00 2019-08-30 17:45:04 2019-08-30 17:55:09 t 1 2 91368 408 0.00 2019-08-30 17:51:26 2019-08-30 17:56:57 t 1 2 91371 306 0.00 2019-08-30 18:12:02 2019-08-30 18:13:07 t 1 2 91375 412 0.00 2019-08-30 18:08:40 2019-08-30 18:24:35 t 1 1 91376 294 0.00 2019-08-30 16:36:28 2019-08-30 18:25:52 t 1 2 91377 402 0.00 2019-08-30 18:23:36 2019-08-30 18:31:41 t 1 2 91383 247 0.00 2019-08-30 18:47:03 2019-08-30 18:55:41 t 1 2 91384 296 0.00 2019-08-30 18:58:49 2019-08-30 19:00:10 t 1 2 91392 306 0.00 2019-08-30 19:24:51 2019-08-30 19:25:52 t 1 2 91393 306 0.00 2019-08-30 19:27:30 2019-08-30 19:28:32 t 1 2 91396 292 0.00 2019-08-30 19:36:51 2019-08-30 19:37:56 t 1 2 91398 288 0.00 2019-08-30 19:16:39 2019-08-30 19:47:39 t 1 1 91399 220 0.00 2019-08-30 18:28:52 2019-08-30 19:52:50 t 1 1 91401 385 0.00 2019-08-30 18:06:25 2019-08-30 19:55:37 t 1 2 91402 400 0.00 2019-08-30 18:57:17 2019-08-30 20:02:22 t 1 2 91409 400 0.00 2019-08-30 20:06:07 2019-08-30 20:16:12 t 1 2 91412 339 0.00 2019-08-30 19:23:45 2019-08-30 20:24:15 t 1 2 91413 292 0.00 2019-08-30 20:24:10 2019-08-30 20:25:19 t 1 2 91414 292 0.00 2019-08-30 20:28:27 2019-08-30 20:29:32 t 1 2 91416 247 0.00 2019-08-30 20:34:34 2019-08-30 20:36:08 t 1 2 91420 385 0.00 2019-08-30 20:24:28 2019-08-30 21:14:33 t 1 2 91421 355 0.00 2019-08-30 21:15:00 2019-08-30 21:15:18 t 1 2 91422 349 0.00 2019-08-30 21:17:42 2019-08-30 21:18:47 t 1 2 91423 220 0.00 2019-08-30 20:36:40 2019-08-30 21:23:37 t 1 1 91426 346 0.00 2019-08-30 21:26:36 2019-08-30 21:27:38 t 1 2 91429 346 0.00 2019-08-30 21:29:05 2019-08-30 21:30:09 t 1 2 91436 412 0.00 2019-08-30 21:45:12 2019-08-30 21:45:22 t 1 1 91437 411 0.00 2019-08-30 21:48:48 2019-08-30 21:49:55 t 1 1 91438 402 0.00 2019-08-30 21:04:08 2019-08-30 21:54:14 t 1 2 91439 212 0.00 2019-08-30 20:28:19 2019-08-30 21:58:24 t 1 2 91005 220 0.00 2019-08-29 18:26:15 2019-08-29 18:37:38 t 1 2 91008 220 0.00 2019-08-29 18:51:59 2019-08-29 18:53:14 t 1 2 91009 220 0.00 2019-08-29 18:25:09 2019-08-29 18:55:16 t 1 2 91012 324 0.00 2019-08-29 19:01:47 2019-08-29 19:01:47 f 1 2 91014 363 0.00 2019-08-29 18:24:35 2019-08-29 19:09:40 t 1 2 91015 324 0.00 2019-08-29 19:15:37 2019-08-29 19:15:37 f 1 2 91021 220 0.00 2019-08-29 19:21:11 2019-08-29 19:31:16 t 1 2 91023 355 0.00 2019-08-29 19:21:32 2019-08-29 19:34:08 t 1 2 91032 400 0.00 2019-08-29 20:18:48 2019-08-29 20:28:53 t 1 2 91033 402 0.00 2019-08-29 20:09:31 2019-08-29 20:30:04 t 1 2 91038 412 0.00 2019-08-29 20:45:46 2019-08-29 20:46:22 t 1 1 91039 357 0.00 2019-08-29 20:39:36 2019-08-29 20:49:41 t 1 2 91044 395 0.00 2019-08-29 21:08:14 2019-08-29 21:09:23 t 1 2 91051 311 0.00 2019-08-29 21:54:01 2019-08-29 21:56:11 t 1 2 91052 408 0.00 2019-08-29 20:59:46 2019-08-29 22:00:10 t 1 2 91053 400 0.00 2019-08-29 21:09:30 2019-08-29 22:04:35 t 1 2 91055 212 0.00 2019-08-29 22:19:29 2019-08-29 22:19:55 t 1 2 91059 398 0.00 2019-08-29 22:29:04 2019-08-29 22:30:07 t 1 2 91060 400 0.00 2019-08-29 22:18:27 2019-08-29 22:33:32 t 1 2 91062 381 0.00 2019-08-29 22:21:47 2019-08-29 22:36:52 t 1 2 91065 375 0.00 2019-08-29 22:49:26 2019-08-29 22:50:33 t 1 2 91068 220 0.00 2019-08-29 22:38:11 2019-08-29 22:56:50 t 1 1 91069 381 0.00 2019-08-29 22:32:10 2019-08-29 22:57:15 t 1 2 91071 212 0.00 2019-08-29 23:09:37 2019-08-29 23:09:56 t 1 2 91075 367 0.00 2019-08-29 23:18:54 2019-08-29 23:20:00 t 1 2 91079 412 0.00 2019-08-29 20:46:27 2019-08-29 23:27:41 t 1 1 91081 220 0.00 2019-08-29 22:56:53 2019-08-29 23:32:56 t 1 1 91087 220 0.00 2019-08-29 23:36:01 2019-08-29 23:36:35 t 1 1 91088 220 0.00 2019-08-29 23:36:35 2019-08-29 23:37:09 t 1 1 91090 220 0.00 2019-08-29 23:37:44 2019-08-29 23:38:19 t 1 1 91091 220 0.00 2019-08-29 23:38:19 2019-08-29 23:38:54 t 1 1 91098 220 0.00 2019-08-29 23:42:21 2019-08-29 23:42:56 t 1 1 91106 372 0.00 2019-08-29 23:14:47 2019-08-29 23:49:52 t 1 2 91109 212 0.00 2019-08-29 23:55:19 2019-08-29 23:55:41 t 1 2 91110 220 0.00 2019-08-29 23:46:27 2019-08-29 23:59:26 t 1 1 91114 220 0.00 2019-08-29 23:59:29 2019-08-30 00:04:28 t 1 1 91116 220 0.00 2019-08-30 00:04:31 2019-08-30 00:08:11 t 1 1 91121 294 0.00 2019-08-29 23:27:44 2019-08-30 00:28:07 t 1 2 91137 398 0.00 2019-08-30 02:29:54 2019-08-30 02:31:00 t 1 2 91138 372 0.00 2019-08-30 02:25:02 2019-08-30 02:35:07 t 1 2 91143 311 0.00 2019-08-30 03:05:53 2019-08-30 03:20:59 t 1 2 91428 346 0.00 2019-08-30 21:28:25 2019-08-30 21:29:58 t 1 2 91431 346 0.00 2019-08-30 21:22:34 2019-08-30 21:32:39 t 1 2 91432 355 0.00 2019-08-30 21:29:03 2019-08-30 21:34:07 t 1 2 91434 346 0.00 2019-08-30 21:29:48 2019-08-30 21:39:53 t 1 2 91435 220 0.00 2019-08-30 21:39:10 2019-08-30 21:41:14 t 1 1 91443 306 0.00 2019-08-30 22:15:55 2019-08-30 22:16:58 t 1 2 91448 212 0.00 2019-08-30 22:26:16 2019-08-30 22:34:33 t 1 2 91453 220 0.00 2019-08-30 22:07:57 2019-08-30 22:43:58 t 1 2 91454 331 0.00 2019-08-30 22:49:30 2019-08-30 22:49:46 t 1 2 91456 306 0.00 2019-08-30 22:50:13 2019-08-30 22:51:20 t 1 2 91458 355 0.00 2019-08-30 22:52:41 2019-08-30 22:53:49 t 1 2 91459 306 0.00 2019-08-30 22:53:17 2019-08-30 22:54:17 t 1 2 91461 331 0.00 2019-08-30 22:53:53 2019-08-30 22:54:54 t 1 2 91465 220 0.00 2019-08-30 22:52:42 2019-08-30 23:02:48 t 1 2 91466 212 0.00 2019-08-30 23:11:20 2019-08-30 23:12:12 t 1 2 91470 220 0.00 2019-08-30 22:48:45 2019-08-30 23:13:50 t 1 2 91471 306 0.00 2019-08-30 23:14:11 2019-08-30 23:15:15 t 1 2 91477 333 0.00 2019-08-30 23:04:41 2019-08-30 23:21:42 t 1 2 91492 220 0.00 2019-08-30 23:59:52 2019-08-31 00:03:46 t 1 1 91495 375 0.00 2019-08-31 00:10:51 2019-08-31 00:11:54 t 1 2 91502 288 0.00 2019-08-31 00:29:40 2019-08-31 00:32:51 t 1 1 91503 412 0.00 2019-08-31 00:25:38 2019-08-31 00:33:20 t 1 1 91505 363 0.00 2019-08-30 23:13:54 2019-08-31 00:38:41 t 1 2 91506 412 0.00 2019-08-31 00:35:19 2019-08-31 00:39:47 t 1 1 91507 379 0.00 2019-08-30 22:36:23 2019-08-31 00:41:28 t 1 2 91510 412 0.00 2019-08-31 00:43:01 2019-08-31 00:45:37 t 1 1 91511 412 0.00 2019-08-31 00:45:37 2019-08-31 00:54:25 t 1 1 91515 392 0.00 2019-08-31 00:32:40 2019-08-31 01:37:53 t 1 2 91517 395 0.00 2019-08-31 02:18:30 2019-08-31 02:26:50 t 1 2 91519 339 0.00 2019-08-31 01:38:31 2019-08-31 02:38:54 t 1 2 91520 346 0.00 2019-08-31 03:21:15 2019-08-31 03:22:10 t 1 2 91522 343 0.00 2019-08-31 03:17:08 2019-08-31 03:29:08 t 1 2 91524 363 0.00 2019-08-31 02:10:59 2019-08-31 03:45:47 t 1 2 91527 363 0.00 2019-08-31 03:46:52 2019-08-31 05:16:17 t 1 2 91531 363 0.00 2019-08-31 05:17:20 2019-08-31 06:27:26 t 1 2 91532 220 0.00 2019-08-31 06:03:23 2019-08-31 06:33:01 t 1 1 91537 346 0.00 2019-08-30 20:49:41 2019-08-31 07:33:48 t 1 2 91539 212 0.00 2019-08-31 07:53:09 2019-08-31 07:53:28 t 1 2 91545 306 0.00 2019-08-31 08:07:19 2019-08-31 08:08:26 t 1 2 91546 220 0.00 2019-08-31 07:52:29 2019-08-31 08:10:18 t 1 1 91547 220 0.00 2019-08-31 08:20:24 2019-08-31 08:31:47 t 1 2 91548 247 0.00 2019-08-31 08:34:13 2019-08-31 08:35:55 t 1 2 91550 212 0.00 2019-08-31 08:52:33 2019-08-31 08:53:03 t 1 2 91553 288 0.00 2019-08-31 09:01:02 2019-08-31 09:11:11 t 1 1 91558 288 0.00 2019-08-31 09:11:11 2019-08-31 09:22:21 t 1 1 91561 288 0.00 2019-08-31 09:37:22 2019-08-31 09:39:51 t 1 1 91563 412 0.00 2019-08-31 02:13:37 2019-08-31 09:44:15 t 1 1 91568 220 0.00 2019-08-31 08:05:50 2019-08-31 10:10:56 t 1 2 91571 416 0.00 2019-08-31 10:12:34 2019-08-31 10:15:55 t 1 1 91576 288 0.00 2019-08-31 10:24:34 2019-08-31 10:25:57 t 1 1 91582 288 0.00 2019-08-31 10:29:12 2019-08-31 10:49:30 t 1 1 91584 306 0.00 2019-08-31 10:52:46 2019-08-31 10:53:47 t 1 2 91587 416 0.00 2019-08-31 11:04:40 2019-08-31 11:09:21 t 1 1 91591 416 0.00 2019-08-31 11:11:57 2019-08-31 11:16:14 t 1 1 91592 288 0.00 2019-08-31 10:49:30 2019-08-31 11:18:07 t 1 1 91594 402 0.00 2019-08-31 09:07:02 2019-08-31 11:21:58 t 1 2 91600 372 0.00 2019-08-31 11:32:30 2019-08-31 11:33:36 t 1 2 91603 306 0.00 2019-08-31 11:38:59 2019-08-31 11:40:04 t 1 2 91604 416 0.00 2019-08-31 11:25:31 2019-08-31 11:41:09 t 1 1 91608 212 0.00 2019-08-31 11:47:47 2019-08-31 11:48:10 t 1 2 91609 351 0.00 2019-08-31 11:30:37 2019-08-31 11:50:43 t 1 2 91611 400 0.00 2019-08-31 11:43:40 2019-08-31 11:53:45 t 1 2 91614 212 0.00 2019-08-31 12:07:33 2019-08-31 12:07:53 t 1 2 91617 306 0.00 2019-08-31 12:19:29 2019-08-31 12:20:34 t 1 2 91620 400 0.00 2019-08-31 12:22:27 2019-08-31 12:42:33 t 1 2 91623 288 0.00 2019-08-31 12:45:00 2019-08-31 13:00:57 t 1 1 91440 346 0.00 2019-08-30 21:34:00 2019-08-30 22:04:06 t 1 2 91442 220 0.00 2019-08-30 22:04:09 2019-08-30 22:14:34 t 1 1 91444 400 0.00 2019-08-30 22:02:15 2019-08-30 22:17:21 t 1 2 91446 400 0.00 2019-08-30 22:22:32 2019-08-30 22:32:37 t 1 2 91451 220 0.00 2019-08-30 20:25:30 2019-08-30 22:40:36 t 1 2 91455 331 0.00 2019-08-30 22:50:40 2019-08-30 22:50:48 t 1 2 91460 220 0.00 2019-08-30 22:14:25 2019-08-30 22:54:20 t 1 1 91467 412 0.00 2019-08-30 21:47:47 2019-08-30 23:12:33 t 1 1 91468 306 0.00 2019-08-30 23:12:37 2019-08-30 23:13:43 t 1 2 91474 363 0.00 2019-08-30 22:37:13 2019-08-30 23:17:18 t 1 2 91478 412 0.00 2019-08-30 23:21:01 2019-08-30 23:23:04 t 1 1 91480 412 0.00 2019-08-30 23:27:57 2019-08-30 23:29:09 t 1 1 91482 294 0.00 2019-08-30 20:51:42 2019-08-30 23:36:05 t 1 2 91485 355 0.00 2019-08-30 23:20:15 2019-08-30 23:45:20 t 1 2 91486 288 0.00 2019-08-30 22:32:15 2019-08-30 23:49:11 t 1 1 91488 324 0.00 2019-08-30 23:56:26 2019-08-30 23:56:26 f 1 2 91494 212 0.00 2019-08-31 00:00:36 2019-08-31 00:09:28 t 1 2 91496 408 0.00 2019-08-30 23:39:49 2019-08-31 00:12:15 t 1 2 91499 346 0.00 2019-08-31 00:02:34 2019-08-31 00:27:40 t 1 2 91504 412 0.00 2019-08-31 00:33:44 2019-08-31 00:34:55 t 1 1 91508 355 0.00 2019-08-31 00:37:56 2019-08-31 00:41:33 t 1 2 91509 412 0.00 2019-08-31 00:39:47 2019-08-31 00:43:02 t 1 1 91512 400 0.00 2019-08-30 23:13:05 2019-08-31 00:58:10 t 1 2 91513 412 0.00 2019-08-31 00:55:52 2019-08-31 01:00:30 t 1 1 91514 372 0.00 2019-08-31 01:02:00 2019-08-31 01:18:32 t 1 2 91525 346 0.00 2019-08-31 03:53:28 2019-08-31 03:56:14 t 1 2 91526 212 0.00 2019-08-31 03:59:07 2019-08-31 03:59:26 t 1 2 91528 220 0.00 2019-08-31 05:48:34 2019-08-31 05:54:00 t 1 1 91530 220 0.00 2019-08-31 00:36:14 2019-08-31 06:21:06 t 1 2 91533 400 0.00 2019-08-31 06:42:10 2019-08-31 06:52:15 t 1 2 91534 346 0.00 2019-08-31 06:59:46 2019-08-31 07:00:52 t 1 2 91538 306 0.00 2019-08-31 07:51:29 2019-08-31 07:52:33 t 1 2 91543 306 0.00 2019-08-31 08:04:39 2019-08-31 08:05:44 t 1 2 91551 288 0.00 2019-08-31 08:37:41 2019-08-31 09:01:02 t 1 1 91552 220 0.00 2019-08-31 08:32:46 2019-08-31 09:10:41 t 1 1 91555 343 0.00 2019-08-31 09:10:33 2019-08-31 09:12:00 t 1 2 91559 288 0.00 2019-08-31 09:23:18 2019-08-31 09:35:44 t 1 1 91560 416 0.00 2019-08-31 08:51:59 2019-08-31 09:37:19 t 1 1 91562 288 0.00 2019-08-31 09:39:53 2019-08-31 09:41:01 t 1 2 91565 346 0.00 2019-08-31 09:51:16 2019-08-31 09:51:26 t 1 2 91566 346 0.00 2019-08-31 09:51:31 2019-08-31 09:52:03 t 1 2 91567 416 0.00 2019-08-31 09:44:15 2019-08-31 10:01:45 t 1 1 91569 220 0.00 2019-08-31 08:44:37 2019-08-31 10:12:39 t 1 2 91570 288 0.00 2019-08-31 10:12:22 2019-08-31 10:13:25 t 1 2 91572 288 0.00 2019-08-31 10:13:30 2019-08-31 10:16:54 t 1 1 91574 288 0.00 2019-08-31 10:20:12 2019-08-31 10:24:34 t 1 1 91575 416 0.00 2019-08-31 10:21:59 2019-08-31 10:25:40 t 1 1 91577 349 0.00 2019-08-31 10:29:01 2019-08-31 10:30:05 t 1 2 91578 349 0.00 2019-08-31 10:30:18 2019-08-31 10:31:23 t 1 2 91579 416 0.00 2019-08-31 10:27:52 2019-08-31 10:32:51 t 1 1 91583 306 0.00 2019-08-31 10:50:13 2019-08-31 10:51:16 t 1 2 91585 306 0.00 2019-08-31 10:54:36 2019-08-31 10:55:36 t 1 2 91586 416 0.00 2019-08-31 10:33:03 2019-08-31 11:04:40 t 1 1 91588 212 0.00 2019-08-31 11:10:59 2019-08-31 11:11:26 t 1 2 91593 416 0.00 2019-08-31 11:16:31 2019-08-31 11:18:08 t 1 1 91599 372 0.00 2019-08-31 11:31:35 2019-08-31 11:32:30 t 1 2 91601 372 0.00 2019-08-31 11:34:04 2019-08-31 11:35:10 t 1 2 91606 306 0.00 2019-08-31 11:42:00 2019-08-31 11:43:07 t 1 2 91615 400 0.00 2019-08-31 12:08:10 2019-08-31 12:18:15 t 1 2 91616 220 0.00 2019-08-31 11:24:29 2019-08-31 12:19:35 t 1 2 91618 402 0.00 2019-08-31 11:37:54 2019-08-31 12:29:52 t 1 2 91621 418 0.00 2019-08-31 12:42:23 2019-08-31 12:44:12 t 1 1 91622 288 0.00 2019-08-31 12:40:18 2019-08-31 12:45:51 t 1 1 91625 306 0.00 2019-08-31 13:09:57 2019-08-31 13:10:59 t 1 2 91627 212 0.00 2019-08-31 13:27:29 2019-08-31 13:28:05 t 1 2 91635 220 0.00 2019-08-31 13:52:27 2019-08-31 13:53:10 t 1 2 91637 351 0.00 2019-08-31 13:09:18 2019-08-31 13:54:23 t 1 2 91638 212 0.00 2019-08-31 13:57:39 2019-08-31 13:57:46 t 1 2 91640 220 0.00 2019-08-31 13:54:43 2019-08-31 13:59:46 t 1 1 91644 306 0.00 2019-08-31 14:15:28 2019-08-31 14:16:24 t 1 2 91656 306 0.00 2019-08-31 14:53:03 2019-08-31 14:54:04 t 1 2 91662 220 0.00 2019-08-31 15:03:59 2019-08-31 15:04:37 t 1 1 91663 220 0.00 2019-08-31 15:04:37 2019-08-31 15:05:11 t 1 1 91666 220 0.00 2019-08-31 13:08:35 2019-08-31 15:06:40 t 1 2 91669 220 0.00 2019-08-31 15:07:25 2019-08-31 15:07:59 t 1 1 91671 220 0.00 2019-08-31 15:07:59 2019-08-31 15:08:35 t 1 1 91672 220 0.00 2019-08-31 15:08:35 2019-08-31 15:09:08 t 1 1 91683 346 0.00 2019-08-31 14:39:30 2019-08-31 15:14:36 t 1 2 91684 220 0.00 2019-08-31 15:14:23 2019-08-31 15:14:55 t 1 1 91689 220 0.00 2019-08-31 15:16:06 2019-08-31 15:16:40 t 1 1 91690 220 0.00 2019-08-31 15:16:40 2019-08-31 15:17:13 t 1 1 91693 220 0.00 2019-08-31 15:17:50 2019-08-31 15:18:24 t 1 1 91696 220 0.00 2019-08-31 15:18:57 2019-08-31 15:19:31 t 1 1 91697 220 0.00 2019-08-31 15:19:31 2019-08-31 15:20:07 t 1 1 91702 220 0.00 2019-08-31 15:22:28 2019-08-31 15:23:01 t 1 1 91704 220 0.00 2019-08-31 15:23:01 2019-08-31 15:23:38 t 1 1 91705 220 0.00 2019-08-31 15:23:37 2019-08-31 15:24:08 t 1 1 91711 220 0.00 2019-08-31 15:27:01 2019-08-31 15:27:33 t 1 1 91713 220 0.00 2019-08-31 15:28:19 2019-08-31 15:28:50 t 1 1 91714 220 0.00 2019-08-31 15:28:50 2019-08-31 15:29:25 t 1 1 91715 220 0.00 2019-08-31 15:29:24 2019-08-31 15:29:58 t 1 1 91716 220 0.00 2019-08-31 15:29:58 2019-08-31 15:33:25 t 1 1 91718 220 0.00 2019-08-31 15:09:58 2019-08-31 15:50:04 t 1 2 91721 392 0.00 2019-08-31 15:14:28 2019-08-31 15:59:00 t 1 2 91724 402 0.00 2019-08-31 16:17:55 2019-08-31 16:20:23 t 1 2 91725 212 0.00 2019-08-31 16:20:51 2019-08-31 16:21:32 t 1 2 91727 355 0.00 2019-08-31 16:25:58 2019-08-31 16:28:58 t 1 2 91729 247 0.00 2019-08-31 16:33:45 2019-08-31 16:34:37 t 1 2 91730 372 0.00 2019-08-31 15:12:04 2019-08-31 16:37:09 t 1 2 91732 294 0.00 2019-08-31 15:44:36 2019-08-31 16:45:00 t 1 2 91735 306 0.00 2019-08-31 16:51:55 2019-08-31 16:53:02 t 1 2 91736 306 0.00 2019-08-31 16:53:47 2019-08-31 16:54:53 t 1 2 91741 288 0.00 2019-08-31 17:00:27 2019-08-31 17:02:03 t 1 1 91742 306 0.00 2019-08-31 17:02:44 2019-08-31 17:03:48 t 1 2 91743 363 0.00 2019-08-31 17:04:38 2019-08-31 17:04:42 t 1 2 91747 220 0.00 2019-08-31 15:59:55 2019-08-31 17:23:30 t 1 1 91748 220 0.00 2019-08-31 17:23:34 2019-08-31 17:26:04 t 1 1 91484 398 0.00 2019-08-30 23:39:38 2019-08-30 23:40:44 t 1 2 91487 212 0.00 2019-08-30 23:42:57 2019-08-30 23:51:53 t 1 2 91489 355 0.00 2019-08-30 23:38:07 2019-08-30 23:58:12 t 1 2 91490 412 0.00 2019-08-30 23:29:40 2019-08-30 23:59:47 t 1 1 91491 412 0.00 2019-08-30 23:59:47 2019-08-31 00:02:27 t 1 1 91493 355 0.00 2019-08-30 23:59:49 2019-08-31 00:04:22 t 1 2 91497 412 0.00 2019-08-31 00:04:37 2019-08-31 00:12:53 t 1 1 91498 412 0.00 2019-08-31 00:21:47 2019-08-31 00:24:46 t 1 1 91500 288 0.00 2019-08-30 23:49:13 2019-08-31 00:29:40 t 1 1 91501 346 0.00 2019-08-31 00:20:52 2019-08-31 00:32:42 t 1 2 91516 363 0.00 2019-08-31 00:44:09 2019-08-31 02:09:07 t 1 2 91518 361 0.00 2019-08-31 00:42:15 2019-08-31 02:29:25 t 1 2 91521 392 0.00 2019-08-31 02:17:38 2019-08-31 03:24:30 t 1 2 91523 346 0.00 2019-08-31 03:23:25 2019-08-31 03:35:28 t 1 2 91529 220 0.00 2019-08-31 05:55:37 2019-08-31 06:03:18 t 1 1 91535 220 0.00 2019-08-31 06:51:01 2019-08-31 07:07:45 t 1 1 91536 220 0.00 2019-08-31 07:07:44 2019-08-31 07:28:26 t 1 1 91540 306 0.00 2019-08-31 07:53:07 2019-08-31 07:54:13 t 1 2 91541 306 0.00 2019-08-31 07:59:20 2019-08-31 08:00:25 t 1 2 91542 306 0.00 2019-08-31 08:02:00 2019-08-31 08:03:01 t 1 2 91544 212 0.00 2019-08-31 08:05:08 2019-08-31 08:06:55 t 1 2 91549 416 0.00 2019-08-31 08:50:51 2019-08-31 08:52:00 t 1 1 91554 402 0.00 2019-08-31 08:41:17 2019-08-31 09:11:22 t 1 2 91556 346 0.00 2019-08-31 09:16:06 2019-08-31 09:16:09 t 1 2 91557 346 0.00 2019-08-31 09:16:13 2019-08-31 09:17:15 t 1 2 91564 212 0.00 2019-08-31 09:48:12 2019-08-31 09:48:44 t 1 2 91573 288 0.00 2019-08-31 10:16:54 2019-08-31 10:20:12 t 1 1 91580 212 0.00 2019-08-31 10:32:35 2019-08-31 10:33:21 t 1 2 91581 392 0.00 2019-08-31 10:29:59 2019-08-31 10:40:09 t 1 2 91589 400 0.00 2019-08-31 10:07:26 2019-08-31 11:12:31 t 1 2 91590 416 0.00 2019-08-31 11:11:37 2019-08-31 11:12:58 t 1 1 91595 218 0.00 2019-08-31 11:24:19 2019-08-31 11:24:19 f 1 2 91596 306 0.00 2019-08-31 11:25:16 2019-08-31 11:26:19 t 1 2 91597 372 0.00 2019-08-31 11:27:53 2019-08-31 11:28:59 t 1 2 91598 306 0.00 2019-08-31 11:30:32 2019-08-31 11:31:37 t 1 2 91602 306 0.00 2019-08-31 11:37:14 2019-08-31 11:38:16 t 1 2 91605 306 0.00 2019-08-31 11:40:30 2019-08-31 11:41:37 t 1 2 91607 372 0.00 2019-08-31 11:33:35 2019-08-31 11:43:40 t 1 2 91610 416 0.00 2019-08-31 11:41:14 2019-08-31 11:51:01 t 1 1 91612 355 0.00 2019-08-31 11:46:45 2019-08-31 11:58:59 t 1 2 91613 288 0.00 2019-08-31 11:18:07 2019-08-31 12:00:29 t 1 1 91619 288 0.00 2019-08-31 12:00:29 2019-08-31 12:40:18 t 1 1 91624 288 0.00 2019-08-31 13:01:54 2019-08-31 13:03:13 t 1 1 91628 418 0.00 2019-08-31 13:23:42 2019-08-31 13:28:20 t 1 1 91629 212 0.00 2019-08-31 13:29:57 2019-08-31 13:32:58 t 1 2 91636 220 0.00 2019-08-31 13:50:43 2019-08-31 13:53:13 t 1 1 91639 212 0.00 2019-08-31 13:58:01 2019-08-31 13:58:40 t 1 2 91642 402 0.00 2019-08-31 13:29:43 2019-08-31 14:05:39 t 1 2 91645 220 0.00 2019-08-31 14:01:35 2019-08-31 14:16:51 t 1 1 91646 355 0.00 2019-08-31 14:15:12 2019-08-31 14:24:25 t 1 2 91648 402 0.00 2019-08-31 14:16:01 2019-08-31 14:32:29 t 1 2 91649 306 0.00 2019-08-31 14:32:04 2019-08-31 14:33:08 t 1 2 91652 220 0.00 2019-08-31 14:18:18 2019-08-31 14:51:18 t 1 1 91653 220 0.00 2019-08-31 14:51:22 2019-08-31 14:52:26 t 1 1 91660 220 0.00 2019-08-31 15:02:52 2019-08-31 15:03:22 t 1 1 91661 220 0.00 2019-08-31 15:03:22 2019-08-31 15:04:00 t 1 1 91670 247 0.00 2019-08-31 15:03:20 2019-08-31 15:08:00 t 1 2 91674 288 0.00 2019-08-31 14:51:25 2019-08-31 15:09:55 t 1 1 91676 220 0.00 2019-08-31 15:10:17 2019-08-31 15:10:54 t 1 1 91677 220 0.00 2019-08-31 15:10:54 2019-08-31 15:11:27 t 1 1 91679 220 0.00 2019-08-31 15:12:05 2019-08-31 15:12:37 t 1 1 91681 220 0.00 2019-08-31 15:13:12 2019-08-31 15:13:46 t 1 1 91682 220 0.00 2019-08-31 15:13:46 2019-08-31 15:14:23 t 1 1 91685 361 0.00 2019-08-31 14:41:17 2019-08-31 15:15:01 t 1 2 91687 220 0.00 2019-08-31 15:14:55 2019-08-31 15:15:32 t 1 1 91688 220 0.00 2019-08-31 15:15:32 2019-08-31 15:16:06 t 1 1 91691 220 0.00 2019-08-31 15:17:13 2019-08-31 15:17:50 t 1 1 91692 212 0.00 2019-08-31 15:17:22 2019-08-31 15:18:03 t 1 2 91694 346 0.00 2019-08-31 14:08:34 2019-08-31 15:18:39 t 1 2 91695 220 0.00 2019-08-31 15:18:23 2019-08-31 15:18:57 t 1 1 91700 220 0.00 2019-08-31 15:21:17 2019-08-31 15:21:50 t 1 1 91703 212 0.00 2019-08-31 15:22:03 2019-08-31 15:23:01 t 1 2 91709 220 0.00 2019-08-31 15:25:54 2019-08-31 15:26:28 t 1 1 91710 220 0.00 2019-08-31 15:26:28 2019-08-31 15:27:02 t 1 1 91712 220 0.00 2019-08-31 15:27:33 2019-08-31 15:28:19 t 1 1 91719 220 0.00 2019-08-31 15:52:18 2019-08-31 15:57:42 t 1 2 91722 400 0.00 2019-08-31 13:14:34 2019-08-31 15:59:40 t 1 2 91723 402 0.00 2019-08-31 14:50:01 2019-08-31 16:05:06 t 1 2 91731 375 0.00 2019-08-31 16:36:40 2019-08-31 16:37:46 t 1 2 91733 288 0.00 2019-08-31 16:35:26 2019-08-31 16:45:42 t 1 1 91737 306 0.00 2019-08-31 16:55:38 2019-08-31 16:56:41 t 1 2 91740 363 0.00 2019-08-31 17:01:14 2019-08-31 17:01:23 t 1 2 91744 392 0.00 2019-08-31 17:02:26 2019-08-31 17:06:26 t 1 2 91746 400 0.00 2019-08-31 17:00:54 2019-08-31 17:16:00 t 1 2 91750 220 0.00 2019-08-31 17:26:04 2019-08-31 17:34:21 t 1 1 91752 346 0.00 2019-08-31 17:35:26 2019-08-31 17:45:31 t 1 2 91753 288 0.00 2019-08-31 17:03:15 2019-08-31 17:46:05 t 1 1 91755 288 0.00 2019-08-31 17:47:55 2019-08-31 17:50:54 t 1 1 91757 327 0.00 2019-08-31 17:43:36 2019-08-31 17:53:44 t 1 2 91763 251 0.00 2019-08-31 18:06:46 2019-08-31 18:06:46 f 1 2 91773 212 0.00 2019-08-31 18:36:47 2019-08-31 18:39:16 t 1 2 91776 367 0.00 2019-08-31 17:45:43 2019-08-31 18:45:54 t 1 2 91780 306 0.00 2019-08-31 19:17:04 2019-08-31 19:18:09 t 1 2 91781 212 0.00 2019-08-31 19:18:24 2019-08-31 19:19:05 t 1 2 91782 420 0.00 2019-08-31 19:16:54 2019-08-31 19:19:56 t 1 1 91785 392 0.00 2019-08-31 19:12:49 2019-08-31 19:24:51 t 1 2 91789 346 0.00 2019-08-31 19:26:57 2019-08-31 19:38:54 t 1 2 91794 400 0.00 2019-08-31 19:51:11 2019-08-31 20:01:17 t 1 2 91799 288 0.00 2019-08-31 20:14:02 2019-08-31 20:14:17 t 1 1 91802 361 0.00 2019-08-31 19:45:55 2019-08-31 20:16:00 t 1 2 91804 212 0.00 2019-08-31 20:20:49 2019-08-31 20:21:10 t 1 2 91807 408 0.00 2019-08-31 19:24:39 2019-08-31 20:25:02 t 1 2 91809 306 0.00 2019-08-31 20:26:25 2019-08-31 20:27:30 t 1 2 91813 355 0.00 2019-08-31 20:31:14 2019-08-31 20:33:53 t 1 2 91814 306 0.00 2019-08-31 20:36:00 2019-08-31 20:37:05 t 1 2 91815 306 0.00 2019-08-31 20:39:26 2019-08-31 20:40:30 t 1 2 91818 306 0.00 2019-08-31 20:44:59 2019-08-31 20:46:07 t 1 2 91626 296 0.00 2019-08-31 13:22:57 2019-08-31 13:24:20 t 1 2 91630 288 0.00 2019-08-31 13:03:20 2019-08-31 13:36:19 t 1 1 91631 288 0.00 2019-08-31 13:37:51 2019-08-31 13:43:03 t 1 1 91632 220 0.00 2019-08-31 13:41:54 2019-08-31 13:44:36 t 1 1 91633 363 0.00 2019-08-31 13:49:09 2019-08-31 13:49:14 t 1 2 91634 220 0.00 2019-08-31 13:48:12 2019-08-31 13:50:13 t 1 1 91641 288 0.00 2019-08-31 13:43:29 2019-08-31 14:00:13 t 1 1 91643 346 0.00 2019-08-31 14:06:42 2019-08-31 14:07:46 t 1 2 91647 379 0.00 2019-08-31 09:29:19 2019-08-31 14:29:25 t 1 2 91650 212 0.00 2019-08-31 14:40:06 2019-08-31 14:47:54 t 1 2 91651 361 0.00 2019-08-31 14:40:44 2019-08-31 14:50:49 t 1 2 91654 306 0.00 2019-08-31 14:51:31 2019-08-31 14:52:36 t 1 2 91655 220 0.00 2019-08-31 14:52:26 2019-08-31 14:53:57 t 1 1 91657 296 0.00 2019-08-31 14:46:37 2019-08-31 14:55:01 t 1 2 91658 411 0.00 2019-08-31 15:00:24 2019-08-31 15:01:16 t 1 1 91659 220 0.00 2019-08-31 14:53:57 2019-08-31 15:02:52 t 1 1 91664 220 0.00 2019-08-31 15:05:11 2019-08-31 15:05:43 t 1 1 91665 220 0.00 2019-08-31 15:05:43 2019-08-31 15:06:17 t 1 1 91667 220 0.00 2019-08-31 15:06:17 2019-08-31 15:06:52 t 1 1 91668 220 0.00 2019-08-31 15:06:52 2019-08-31 15:07:25 t 1 1 91673 220 0.00 2019-08-31 15:09:08 2019-08-31 15:09:44 t 1 1 91675 220 0.00 2019-08-31 15:09:43 2019-08-31 15:10:17 t 1 1 91678 220 0.00 2019-08-31 15:11:27 2019-08-31 15:12:05 t 1 1 91680 220 0.00 2019-08-31 15:12:37 2019-08-31 15:13:13 t 1 1 91686 288 0.00 2019-08-31 15:09:55 2019-08-31 15:15:23 t 1 1 91698 220 0.00 2019-08-31 15:20:06 2019-08-31 15:20:39 t 1 1 91699 220 0.00 2019-08-31 15:20:39 2019-08-31 15:21:17 t 1 1 91701 220 0.00 2019-08-31 15:21:50 2019-08-31 15:22:29 t 1 1 91706 220 0.00 2019-08-31 15:24:08 2019-08-31 15:24:46 t 1 1 91707 220 0.00 2019-08-31 15:24:45 2019-08-31 15:25:17 t 1 1 91708 220 0.00 2019-08-31 15:25:17 2019-08-31 15:25:54 t 1 1 91717 355 0.00 2019-08-31 15:31:35 2019-08-31 15:36:17 t 1 2 91720 220 0.00 2019-08-31 15:33:28 2019-08-31 15:57:53 t 1 1 91726 212 0.00 2019-08-31 16:23:18 2019-08-31 16:23:44 t 1 2 91728 288 0.00 2019-08-31 15:17:24 2019-08-31 16:34:04 t 1 1 91734 402 0.00 2019-08-31 16:24:06 2019-08-31 16:49:11 t 1 2 91738 288 0.00 2019-08-31 16:45:42 2019-08-31 17:00:27 t 1 1 91739 363 0.00 2019-08-31 13:49:30 2019-08-31 17:01:00 t 1 2 91745 363 0.00 2019-08-31 17:05:34 2019-08-31 17:15:39 t 1 2 91751 220 0.00 2019-08-31 17:34:37 2019-08-31 17:39:52 t 1 1 91756 288 0.00 2019-08-31 17:50:58 2019-08-31 17:52:07 t 1 2 91758 296 0.00 2019-08-31 17:51:25 2019-08-31 17:53:49 t 1 2 91759 367 0.00 2019-08-31 17:45:04 2019-08-31 17:55:09 t 1 2 91760 294 0.00 2019-08-31 17:39:21 2019-08-31 18:01:44 t 1 2 91765 296 0.00 2019-08-31 18:04:38 2019-08-31 18:09:01 t 1 2 91767 220 0.00 2019-08-31 17:52:39 2019-08-31 18:17:45 t 1 2 91769 220 0.00 2019-08-31 18:05:36 2019-08-31 18:19:56 t 1 1 91771 346 0.00 2019-08-31 18:27:19 2019-08-31 18:29:11 t 1 2 91772 220 0.00 2019-08-31 18:23:30 2019-08-31 18:30:57 t 1 1 91775 306 0.00 2019-08-31 18:43:54 2019-08-31 18:44:57 t 1 2 91777 357 0.00 2019-08-31 18:35:54 2019-08-31 18:51:00 t 1 2 91786 306 0.00 2019-08-31 19:24:00 2019-08-31 19:25:01 t 1 2 91788 306 0.00 2019-08-31 19:31:56 2019-08-31 19:33:01 t 1 2 91790 306 0.00 2019-08-31 19:40:53 2019-08-31 19:41:54 t 1 2 91791 212 0.00 2019-08-31 19:42:33 2019-08-31 19:43:28 t 1 2 91793 400 0.00 2019-08-31 19:24:19 2019-08-31 19:54:24 t 1 2 91798 288 0.00 2019-08-31 19:58:06 2019-08-31 20:11:01 t 1 1 91800 422 0.00 2019-08-31 20:04:46 2019-08-31 20:14:51 t 1 2 91805 346 0.00 2019-08-31 19:42:04 2019-08-31 20:21:52 t 1 2 91810 294 0.00 2019-08-31 19:09:54 2019-08-31 20:31:18 t 1 2 91812 400 0.00 2019-08-31 20:12:14 2019-08-31 20:32:19 t 1 2 91817 306 0.00 2019-08-31 20:41:37 2019-08-31 20:42:41 t 1 2 91821 306 0.00 2019-08-31 21:06:06 2019-08-31 21:07:09 t 1 2 91822 220 0.00 2019-08-31 21:00:04 2019-08-31 21:10:09 t 1 2 91823 306 0.00 2019-08-31 21:10:43 2019-08-31 21:11:44 t 1 2 91831 420 0.00 2019-08-31 21:38:36 2019-08-31 21:43:29 t 1 1 91837 247 0.00 2019-08-31 21:52:21 2019-08-31 21:55:56 t 1 2 91839 402 0.00 2019-08-31 20:26:27 2019-08-31 21:57:16 t 1 2 91841 392 0.00 2019-08-31 21:47:24 2019-08-31 22:14:37 t 1 2 91845 306 0.00 2019-08-31 22:17:30 2019-08-31 22:18:33 t 1 2 91846 402 0.00 2019-08-31 21:58:32 2019-08-31 22:20:21 t 1 2 91848 220 0.00 2019-08-31 22:15:06 2019-08-31 22:25:12 t 1 2 91849 361 0.00 2019-08-31 22:22:25 2019-08-31 22:26:52 t 1 2 91850 212 0.00 2019-08-31 20:50:28 2019-08-31 22:30:33 t 1 2 91851 420 0.00 2019-08-31 22:23:36 2019-08-31 22:32:45 t 1 1 91856 420 0.00 2019-08-31 22:38:20 2019-08-31 22:43:54 t 1 1 91857 296 0.00 2019-08-31 22:38:48 2019-08-31 22:44:11 t 1 2 91860 306 0.00 2019-08-31 22:52:14 2019-08-31 22:53:16 t 1 2 91862 395 0.00 2019-08-31 22:52:42 2019-08-31 22:55:47 t 1 2 91869 220 0.00 2019-08-31 18:04:55 2019-08-31 23:17:22 t 1 2 91872 395 0.00 2019-08-31 22:56:30 2019-08-31 23:20:54 t 1 2 91874 306 0.00 2019-08-31 23:20:10 2019-08-31 23:21:15 t 1 2 91879 395 0.00 2019-08-31 23:24:43 2019-08-31 23:30:30 t 1 2 91881 372 0.00 2019-08-31 23:36:29 2019-08-31 23:37:38 t 1 2 91882 361 0.00 2019-08-31 22:41:39 2019-08-31 23:41:26 t 1 2 91885 331 0.00 2019-08-31 23:43:27 2019-08-31 23:44:12 t 1 2 91890 212 0.00 2019-08-31 23:57:18 2019-08-31 23:57:53 t 1 2 91894 400 0.00 2019-09-01 00:01:41 2019-09-01 00:11:47 t 1 2 91895 212 0.00 2019-09-01 00:14:09 2019-09-01 00:14:29 t 1 2 91900 349 0.00 2019-09-01 00:27:32 2019-09-01 00:28:37 t 1 2 91902 349 0.00 2019-09-01 00:33:22 2019-09-01 00:34:27 t 1 2 91905 212 0.00 2019-09-01 00:38:59 2019-09-01 00:39:56 t 1 2 91906 363 0.00 2019-09-01 00:09:30 2019-09-01 00:41:48 t 1 2 91910 400 0.00 2019-09-01 01:15:27 2019-09-01 01:39:14 t 1 2 91912 363 0.00 2019-09-01 01:33:48 2019-09-01 01:53:53 t 1 2 91914 361 0.00 2019-09-01 00:05:55 2019-09-01 02:03:16 t 1 2 91915 412 0.00 2019-09-01 02:02:59 2019-09-01 02:14:39 t 1 1 91916 392 0.00 2019-09-01 00:23:57 2019-09-01 02:15:40 t 1 2 91917 400 0.00 2019-09-01 01:51:23 2019-09-01 02:26:28 t 1 2 91918 412 0.00 2019-09-01 02:14:39 2019-09-01 02:34:31 t 1 1 91919 220 0.00 2019-09-01 02:22:05 2019-09-01 02:35:18 t 1 1 91920 361 0.00 2019-09-01 02:10:06 2019-09-01 03:07:16 t 1 2 91922 411 0.00 2019-08-31 23:09:05 2019-09-01 04:19:29 t 1 1 91925 400 0.00 2019-09-01 05:25:25 2019-09-01 05:37:47 t 1 2 91927 346 0.00 2019-08-31 21:16:56 2019-09-01 06:27:02 t 1 2 91929 212 0.00 2019-09-01 06:43:57 2019-09-01 06:44:30 t 1 2 91940 420 0.00 2019-09-01 07:08:01 2019-09-01 07:14:16 t 1 1 91749 363 0.00 2019-08-31 17:12:35 2019-08-31 17:32:40 t 1 2 91754 220 0.00 2019-08-31 17:40:04 2019-08-31 17:47:13 t 1 1 91761 212 0.00 2019-08-31 17:30:51 2019-08-31 18:03:03 t 1 2 91762 288 0.00 2019-08-31 18:03:52 2019-08-31 18:04:57 t 1 2 91764 306 0.00 2019-08-31 18:07:25 2019-08-31 18:08:29 t 1 2 91766 392 0.00 2019-08-31 18:01:17 2019-08-31 18:09:44 t 1 2 91768 418 0.00 2019-08-31 18:12:16 2019-08-31 18:19:26 t 1 1 91770 220 0.00 2019-08-31 17:19:13 2019-08-31 18:24:36 t 1 2 91774 306 0.00 2019-08-31 18:39:04 2019-08-31 18:40:10 t 1 2 91778 395 0.00 2019-08-31 17:52:49 2019-08-31 18:59:55 t 1 2 91779 420 0.00 2019-08-31 19:07:46 2019-08-31 19:16:42 t 1 1 91783 306 0.00 2019-08-31 19:19:08 2019-08-31 19:20:10 t 1 2 91784 306 0.00 2019-08-31 19:22:14 2019-08-31 19:23:19 t 1 2 91787 400 0.00 2019-08-31 19:09:44 2019-08-31 19:29:49 t 1 2 91792 306 0.00 2019-08-31 19:53:12 2019-08-31 19:54:15 t 1 2 91795 422 0.00 2019-08-31 20:04:09 2019-08-31 20:04:41 t 1 2 91796 385 0.00 2019-08-31 19:55:54 2019-08-31 20:06:17 t 1 2 91797 346 0.00 2019-08-31 20:07:52 2019-08-31 20:08:53 t 1 2 91801 288 0.00 2019-08-31 20:14:19 2019-08-31 20:15:23 t 1 2 91803 392 0.00 2019-08-31 20:04:44 2019-08-31 20:18:21 t 1 2 91806 306 0.00 2019-08-31 20:21:18 2019-08-31 20:22:20 t 1 2 91808 402 0.00 2019-08-31 20:07:09 2019-08-31 20:25:49 t 1 2 91811 306 0.00 2019-08-31 20:31:10 2019-08-31 20:32:19 t 1 2 91816 385 0.00 2019-08-31 20:06:01 2019-08-31 20:42:25 t 1 2 91819 400 0.00 2019-08-31 20:33:34 2019-08-31 20:48:39 t 1 2 91820 306 0.00 2019-08-31 21:03:07 2019-08-31 21:04:10 t 1 2 91824 306 0.00 2019-08-31 21:12:16 2019-08-31 21:13:23 t 1 2 91825 400 0.00 2019-08-31 21:05:42 2019-08-31 21:15:47 t 1 2 91826 395 0.00 2019-08-31 21:04:21 2019-08-31 21:35:27 t 1 2 91827 420 0.00 2019-08-31 21:31:39 2019-08-31 21:38:36 t 1 1 91828 400 0.00 2019-08-31 21:19:06 2019-08-31 21:39:11 t 1 2 91830 373 0.00 2019-08-31 21:43:05 2019-08-31 21:43:21 t 1 2 91832 400 0.00 2019-08-31 21:34:08 2019-08-31 21:44:13 t 1 2 91835 306 0.00 2019-08-31 21:53:32 2019-08-31 21:54:36 t 1 2 91840 400 0.00 2019-08-31 21:58:14 2019-08-31 22:13:19 t 1 2 91844 420 0.00 2019-08-31 22:11:44 2019-08-31 22:17:51 t 1 1 91858 395 0.00 2019-08-31 21:59:42 2019-08-31 22:45:49 t 1 2 91859 420 0.00 2019-08-31 22:43:54 2019-08-31 22:49:26 t 1 1 91864 411 0.00 2019-08-31 22:37:28 2019-08-31 22:58:35 t 1 1 91865 411 0.00 2019-08-31 22:58:35 2019-08-31 23:09:04 t 1 1 91866 294 0.00 2019-08-31 22:09:54 2019-08-31 23:10:15 t 1 2 91870 212 0.00 2019-08-31 23:14:48 2019-08-31 23:19:23 t 1 2 91871 220 0.00 2019-08-31 23:19:54 2019-08-31 23:20:52 t 1 2 91873 402 0.00 2019-08-31 22:25:55 2019-08-31 23:21:00 t 1 2 91875 306 0.00 2019-08-31 23:22:30 2019-08-31 23:23:36 t 1 2 91876 212 0.00 2019-08-31 23:25:51 2019-08-31 23:26:11 t 1 2 91877 292 0.00 2019-08-31 23:28:23 2019-08-31 23:29:28 t 1 2 91878 212 0.00 2019-08-31 23:29:59 2019-08-31 23:30:26 t 1 2 91884 212 0.00 2019-08-31 23:43:47 2019-08-31 23:44:11 t 1 2 91887 385 0.00 2019-08-31 22:57:54 2019-08-31 23:51:15 t 1 2 91888 212 0.00 2019-08-31 23:51:53 2019-08-31 23:52:21 t 1 2 91893 363 0.00 2019-08-31 22:20:59 2019-09-01 00:09:16 t 1 2 91896 381 0.00 2019-08-31 23:17:44 2019-09-01 00:17:49 t 1 2 91897 349 0.00 2019-09-01 00:23:42 2019-09-01 00:24:45 t 1 2 91899 220 0.00 2019-09-01 00:15:19 2019-09-01 00:28:35 t 1 1 91904 395 0.00 2019-09-01 00:32:03 2019-09-01 00:38:25 t 1 2 91907 379 0.00 2019-08-31 23:20:07 2019-09-01 01:10:12 t 1 2 91923 294 0.00 2019-09-01 03:48:33 2019-09-01 04:48:57 t 1 2 91924 212 0.00 2019-09-01 04:49:41 2019-09-01 04:50:44 t 1 2 91926 212 0.00 2019-09-01 05:43:28 2019-09-01 05:44:23 t 1 2 91933 247 0.00 2019-09-01 06:48:24 2019-09-01 06:49:56 t 1 2 91934 420 0.00 2019-09-01 06:48:37 2019-09-01 06:51:54 t 1 1 91935 420 0.00 2019-09-01 06:51:54 2019-09-01 06:57:29 t 1 1 91936 420 0.00 2019-09-01 06:57:29 2019-09-01 07:04:03 t 1 1 91937 346 0.00 2019-09-01 07:02:37 2019-09-01 07:05:51 t 1 2 91939 306 0.00 2019-09-01 07:08:17 2019-09-01 07:09:21 t 1 2 91941 420 0.00 2019-09-01 07:14:16 2019-09-01 07:17:23 t 1 1 91942 306 0.00 2019-09-01 07:23:30 2019-09-01 07:24:33 t 1 2 91943 420 0.00 2019-09-01 07:17:23 2019-09-01 07:26:23 t 1 1 91946 306 0.00 2019-09-01 07:54:41 2019-09-01 07:55:44 t 1 2 91948 296 0.00 2019-09-01 07:57:55 2019-09-01 07:59:19 t 1 2 91955 402 0.00 2019-09-01 08:01:02 2019-09-01 08:46:07 t 1 2 91956 420 0.00 2019-09-01 08:50:04 2019-09-01 08:50:50 t 1 1 91959 292 0.00 2019-09-01 09:08:59 2019-09-01 09:09:00 t 1 2 91960 292 0.00 2019-09-01 09:09:05 2019-09-01 09:10:09 t 1 2 91961 346 0.00 2019-09-01 09:16:57 2019-09-01 09:18:00 t 1 2 91962 220 0.00 2019-09-01 09:20:59 2019-09-01 09:22:43 t 1 1 91967 306 0.00 2019-09-01 09:45:17 2019-09-01 09:46:21 t 1 2 91968 306 0.00 2019-09-01 09:48:19 2019-09-01 09:49:25 t 1 2 91969 306 0.00 2019-09-01 09:51:09 2019-09-01 09:52:12 t 1 2 91979 294 0.00 2019-09-01 10:11:02 2019-09-01 10:27:34 t 1 2 91984 212 0.00 2019-09-01 10:47:09 2019-09-01 10:48:36 t 1 2 91985 220 0.00 2019-09-01 10:47:25 2019-09-01 10:52:36 t 1 1 91986 306 0.00 2019-09-01 10:53:32 2019-09-01 10:54:35 t 1 2 91988 400 0.00 2019-09-01 11:01:55 2019-09-01 11:12:00 t 1 2 91991 296 0.00 2019-09-01 11:13:55 2019-09-01 11:21:15 t 1 2 91999 395 0.00 2019-09-01 11:35:13 2019-09-01 11:39:38 t 1 2 92001 395 0.00 2019-09-01 11:39:43 2019-09-01 11:53:03 t 1 2 92003 306 0.00 2019-09-01 11:56:32 2019-09-01 11:57:37 t 1 2 92006 395 0.00 2019-09-01 11:53:13 2019-09-01 12:06:29 t 1 2 92008 212 0.00 2019-09-01 12:43:20 2019-09-01 12:43:40 t 1 2 92009 306 0.00 2019-09-01 12:43:49 2019-09-01 12:44:53 t 1 2 92014 400 0.00 2019-09-01 12:49:45 2019-09-01 12:55:42 t 1 2 92015 346 0.00 2019-09-01 12:56:18 2019-09-01 12:57:21 t 1 2 92016 306 0.00 2019-09-01 12:58:39 2019-09-01 12:59:34 t 1 2 92018 428 0.00 2019-09-01 12:59:08 2019-09-01 13:02:19 t 1 1 92023 346 0.00 2019-09-01 11:36:39 2019-09-01 13:16:44 t 1 2 92025 306 0.00 2019-09-01 13:23:12 2019-09-01 13:24:20 t 1 2 92028 346 0.00 2019-09-01 13:08:15 2019-09-01 13:27:02 t 1 2 92030 361 0.00 2019-09-01 13:23:36 2019-09-01 13:38:42 t 1 2 92032 361 0.00 2019-09-01 13:31:59 2019-09-01 13:47:04 t 1 2 92034 296 0.00 2019-09-01 13:52:17 2019-09-01 13:55:40 t 1 2 92037 220 0.00 2019-09-01 13:56:08 2019-09-01 14:06:49 t 1 1 92039 220 0.00 2019-09-01 14:08:23 2019-09-01 14:12:47 t 1 1 92040 400 0.00 2019-09-01 14:15:41 2019-09-01 14:16:35 t 1 2 92048 220 0.00 2019-09-01 14:30:07 2019-09-01 14:30:14 t 1 1 92050 420 0.00 2019-09-01 14:22:03 2019-09-01 14:31:17 t 1 1 91829 294 0.00 2019-08-31 20:51:39 2019-08-31 21:42:03 t 1 2 91833 311 0.00 2019-08-31 21:09:53 2019-08-31 21:44:58 t 1 2 91834 355 0.00 2019-08-31 21:15:56 2019-08-31 21:51:01 t 1 2 91836 346 0.00 2019-08-31 21:36:29 2019-08-31 21:55:05 t 1 2 91838 400 0.00 2019-08-31 21:41:01 2019-08-31 21:56:07 t 1 2 91842 292 0.00 2019-08-31 22:13:41 2019-08-31 22:14:45 t 1 2 91843 306 0.00 2019-08-31 22:14:12 2019-08-31 22:15:15 t 1 2 91847 420 0.00 2019-08-31 22:17:51 2019-08-31 22:23:36 t 1 1 91852 212 0.00 2019-08-31 22:34:47 2019-08-31 22:35:19 t 1 2 91853 420 0.00 2019-08-31 22:32:45 2019-08-31 22:38:20 t 1 1 91854 306 0.00 2019-08-31 22:39:06 2019-08-31 22:40:08 t 1 2 91855 306 0.00 2019-08-31 22:40:34 2019-08-31 22:41:38 t 1 2 91861 420 0.00 2019-08-31 22:49:26 2019-08-31 22:53:40 t 1 1 91863 420 0.00 2019-08-31 22:53:40 2019-08-31 22:57:23 t 1 1 91867 212 0.00 2019-08-31 22:53:43 2019-08-31 23:11:10 t 1 2 91868 212 0.00 2019-08-31 23:11:47 2019-08-31 23:12:47 t 1 2 91880 220 0.00 2019-08-31 22:24:55 2019-08-31 23:34:32 t 1 1 91883 220 0.00 2019-08-31 23:30:44 2019-08-31 23:44:07 t 1 2 91886 212 0.00 2019-08-31 23:47:58 2019-08-31 23:48:20 t 1 2 91889 247 0.00 2019-08-31 23:56:01 2019-08-31 23:57:00 t 1 2 91891 355 0.00 2019-08-31 22:50:46 2019-09-01 00:08:33 t 1 2 91892 220 0.00 2019-09-01 00:08:45 2019-09-01 00:09:07 t 1 2 91898 349 0.00 2019-09-01 00:26:08 2019-09-01 00:27:12 t 1 2 91901 349 0.00 2019-09-01 00:28:55 2019-09-01 00:30:01 t 1 2 91903 349 0.00 2019-09-01 00:34:49 2019-09-01 00:35:55 t 1 2 91908 395 0.00 2019-09-01 00:40:25 2019-09-01 01:30:28 t 1 2 91909 363 0.00 2019-09-01 00:43:43 2019-09-01 01:38:49 t 1 2 91911 400 0.00 2019-09-01 01:45:22 2019-09-01 01:48:07 t 1 2 91913 412 0.00 2019-09-01 00:55:09 2019-09-01 02:02:59 t 1 1 91921 422 0.00 2019-09-01 02:33:29 2019-09-01 03:27:40 t 1 2 91928 400 0.00 2019-09-01 06:27:58 2019-09-01 06:38:03 t 1 2 91930 420 0.00 2019-09-01 06:42:00 2019-09-01 06:44:52 t 1 1 91931 294 0.00 2019-09-01 06:41:01 2019-09-01 06:45:01 t 1 2 91932 420 0.00 2019-09-01 06:44:52 2019-09-01 06:48:37 t 1 1 91938 420 0.00 2019-09-01 07:04:03 2019-09-01 07:08:01 t 1 1 91945 306 0.00 2019-09-01 07:34:43 2019-09-01 07:35:46 t 1 2 91947 400 0.00 2019-09-01 07:41:23 2019-09-01 07:56:29 t 1 2 91952 294 0.00 2019-09-01 07:47:17 2019-09-01 08:19:41 t 1 2 91954 346 0.00 2019-09-01 08:29:42 2019-09-01 08:33:43 t 1 2 91957 420 0.00 2019-09-01 08:50:50 2019-09-01 08:51:16 t 1 1 91958 400 0.00 2019-09-01 08:48:10 2019-09-01 08:58:16 t 1 2 91965 412 0.00 2019-09-01 02:34:31 2019-09-01 09:40:41 t 1 1 91975 220 0.00 2019-09-01 09:30:40 2019-09-01 10:09:34 t 1 1 91978 424 0.00 2019-09-01 10:24:46 2019-09-01 10:27:10 t 1 2 91983 395 0.00 2019-09-01 10:23:29 2019-09-01 10:45:49 t 1 2 91987 212 0.00 2019-09-01 11:03:03 2019-09-01 11:03:30 t 1 2 91989 395 0.00 2019-09-01 10:50:31 2019-09-01 11:19:38 t 1 2 91990 402 0.00 2019-09-01 11:11:12 2019-09-01 11:20:02 t 1 2 91992 400 0.00 2019-09-01 11:20:19 2019-09-01 11:22:20 t 1 2 91993 392 0.00 2019-09-01 11:23:03 2019-09-01 11:24:03 t 1 2 91995 392 0.00 2019-09-01 11:04:13 2019-09-01 11:29:19 t 1 2 91997 424 0.00 2019-09-01 11:23:22 2019-09-01 11:36:45 t 1 2 92005 349 0.00 2019-09-01 11:59:57 2019-09-01 12:01:01 t 1 2 92007 220 0.00 2019-09-01 11:37:35 2019-09-01 12:24:16 t 1 1 92010 428 0.00 2019-09-01 12:49:17 2019-09-01 12:50:30 t 1 1 92011 428 0.00 2019-09-01 12:50:39 2019-09-01 12:51:53 t 1 1 92012 296 0.00 2019-09-01 12:52:34 2019-09-01 12:53:46 t 1 2 92013 428 0.00 2019-09-01 12:52:05 2019-09-01 12:55:32 t 1 1 92017 212 0.00 2019-09-01 13:01:32 2019-09-01 13:01:57 t 1 2 92022 400 0.00 2019-09-01 12:56:15 2019-09-01 13:16:20 t 1 2 92026 247 0.00 2019-09-01 13:22:30 2019-09-01 13:25:15 t 1 2 92029 346 0.00 2019-09-01 13:24:10 2019-09-01 13:34:15 t 1 2 92036 324 0.00 2019-09-01 13:58:24 2019-09-01 13:58:24 f 1 2 92038 402 0.00 2019-09-01 13:46:43 2019-09-01 14:11:48 t 1 2 92041 420 0.00 2019-09-01 14:12:03 2019-09-01 14:17:08 t 1 1 92042 420 0.00 2019-09-01 14:17:08 2019-09-01 14:22:03 t 1 1 92046 372 0.00 2019-09-01 14:29:30 2019-09-01 14:29:45 t 1 2 92047 220 0.00 2019-09-01 14:29:32 2019-09-01 14:30:07 t 1 1 92049 220 0.00 2019-09-01 14:30:18 2019-09-01 14:31:11 t 1 1 92056 220 0.00 2019-09-01 14:31:11 2019-09-01 14:47:57 t 1 1 92060 428 0.00 2019-09-01 14:35:49 2019-09-01 14:56:58 t 1 1 92063 412 0.00 2019-09-01 15:10:46 2019-09-01 15:18:01 t 1 1 92064 400 0.00 2019-09-01 14:52:59 2019-09-01 15:19:48 t 1 2 92066 306 0.00 2019-09-01 15:24:16 2019-09-01 15:25:21 t 1 2 92068 420 0.00 2019-09-01 14:54:59 2019-09-01 15:29:43 t 1 1 92070 318 0.00 2019-09-01 15:30:20 2019-09-01 15:30:20 f 1 2 92076 420 0.00 2019-09-01 15:29:43 2019-09-01 15:37:23 t 1 1 92079 220 0.00 2019-09-01 15:41:04 2019-09-01 15:44:27 t 1 2 92081 355 0.00 2019-09-01 15:04:40 2019-09-01 15:50:00 t 1 2 92082 306 0.00 2019-09-01 15:50:16 2019-09-01 15:51:18 t 1 2 92084 428 0.00 2019-09-01 15:54:05 2019-09-01 15:54:15 t 1 1 92085 428 0.00 2019-09-01 15:55:11 2019-09-01 15:55:28 t 1 1 92086 400 0.00 2019-09-01 15:20:34 2019-09-01 15:55:55 t 1 2 92092 381 0.00 2019-09-01 15:41:50 2019-09-01 16:01:56 t 1 2 92095 412 0.00 2019-09-01 16:06:10 2019-09-01 16:08:09 t 1 1 92099 349 0.00 2019-09-01 16:23:09 2019-09-01 16:24:15 t 1 2 92103 349 0.00 2019-09-01 16:24:41 2019-09-01 16:25:45 t 1 2 92107 306 0.00 2019-09-01 16:49:18 2019-09-01 16:50:21 t 1 2 92108 306 0.00 2019-09-01 16:50:37 2019-09-01 16:51:39 t 1 2 92109 212 0.00 2019-09-01 16:56:08 2019-09-01 16:56:30 t 1 2 92111 306 0.00 2019-09-01 16:56:27 2019-09-01 16:57:33 t 1 2 92112 392 0.00 2019-09-01 16:46:43 2019-09-01 16:58:38 t 1 2 92114 212 0.00 2019-09-01 17:08:05 2019-09-01 17:08:55 t 1 2 92116 363 0.00 2019-09-01 16:59:48 2019-09-01 17:14:53 t 1 2 92123 306 0.00 2019-09-01 17:33:02 2019-09-01 17:34:04 t 1 2 92124 428 0.00 2019-09-01 16:46:30 2019-09-01 17:35:49 t 1 1 92126 346 0.00 2019-09-01 14:14:23 2019-09-01 17:45:14 t 1 2 92127 212 0.00 2019-09-01 18:00:27 2019-09-01 18:00:47 t 1 2 92130 306 0.00 2019-09-01 18:19:05 2019-09-01 18:20:09 t 1 2 92131 363 0.00 2019-09-01 17:14:13 2019-09-01 18:34:18 t 1 2 92136 294 0.00 2019-09-01 17:54:37 2019-09-01 18:54:58 t 1 2 92137 392 0.00 2019-09-01 18:55:46 2019-09-01 18:57:59 t 1 2 92144 306 0.00 2019-09-01 19:21:28 2019-09-01 19:22:34 t 1 2 92150 220 0.00 2019-09-01 19:16:42 2019-09-01 19:46:55 t 1 1 92151 372 0.00 2019-09-01 19:46:04 2019-09-01 19:50:57 t 1 2 92152 422 0.00 2019-09-01 19:37:20 2019-09-01 20:01:19 t 1 2 92154 212 0.00 2019-09-01 20:02:45 2019-09-01 20:03:27 t 1 2 91944 346 0.00 2019-09-01 06:57:16 2019-09-01 07:33:48 t 1 2 91949 398 0.00 2019-09-01 08:13:06 2019-09-01 08:14:09 t 1 2 91950 212 0.00 2019-09-01 08:15:16 2019-09-01 08:15:36 t 1 2 91951 363 0.00 2019-09-01 08:03:54 2019-09-01 08:18:59 t 1 2 91953 212 0.00 2019-09-01 08:21:10 2019-09-01 08:21:57 t 1 2 91963 220 0.00 2019-09-01 09:22:46 2019-09-01 09:30:37 t 1 1 91964 212 0.00 2019-09-01 09:36:49 2019-09-01 09:37:15 t 1 2 91966 400 0.00 2019-09-01 09:33:36 2019-09-01 09:43:41 t 1 2 91970 306 0.00 2019-09-01 09:52:37 2019-09-01 09:53:40 t 1 2 91971 402 0.00 2019-09-01 08:57:22 2019-09-01 09:55:14 t 1 2 91972 424 0.00 2019-09-01 08:58:30 2019-09-01 09:58:54 t 1 2 91973 294 0.00 2019-09-01 09:50:19 2019-09-01 10:01:51 t 1 2 91974 212 0.00 2019-09-01 10:04:00 2019-09-01 10:04:23 t 1 2 91976 395 0.00 2019-09-01 09:38:54 2019-09-01 10:22:12 t 1 2 91977 355 0.00 2019-09-01 09:28:04 2019-09-01 10:23:10 t 1 2 91980 212 0.00 2019-09-01 10:34:47 2019-09-01 10:35:33 t 1 2 91981 400 0.00 2019-09-01 10:27:36 2019-09-01 10:37:41 t 1 2 91982 212 0.00 2019-09-01 10:40:19 2019-09-01 10:40:35 t 1 2 91994 212 0.00 2019-09-01 11:26:48 2019-09-01 11:27:04 t 1 2 91996 395 0.00 2019-09-01 11:19:49 2019-09-01 11:35:07 t 1 2 91998 220 0.00 2019-09-01 10:52:39 2019-09-01 11:37:32 t 1 1 92000 212 0.00 2019-09-01 11:40:33 2019-09-01 11:40:52 t 1 2 92002 402 0.00 2019-09-01 11:20:24 2019-09-01 11:55:29 t 1 2 92004 212 0.00 2019-09-01 11:57:10 2019-09-01 11:57:43 t 1 2 92019 220 0.00 2019-09-01 12:24:19 2019-09-01 13:12:56 t 1 1 92020 296 0.00 2019-09-01 12:56:35 2019-09-01 13:13:55 t 1 2 92021 220 0.00 2019-09-01 13:13:22 2019-09-01 13:16:05 t 1 1 92024 220 0.00 2019-09-01 13:20:27 2019-09-01 13:22:06 t 1 1 92027 220 0.00 2019-09-01 13:18:00 2019-09-01 13:26:50 t 1 2 92031 212 0.00 2019-09-01 13:44:01 2019-09-01 13:44:34 t 1 2 92033 392 0.00 2019-09-01 13:42:24 2019-09-01 13:54:38 t 1 2 92035 311 0.00 2019-09-01 13:50:55 2019-09-01 13:57:37 t 1 2 92043 402 0.00 2019-09-01 14:12:41 2019-09-01 14:22:46 t 1 2 92044 220 0.00 2019-09-01 14:19:14 2019-09-01 14:28:58 t 1 1 92045 220 0.00 2019-09-01 14:28:57 2019-09-01 14:29:33 t 1 1 92051 361 0.00 2019-09-01 14:14:17 2019-09-01 14:37:50 t 1 2 92053 355 0.00 2019-09-01 13:37:19 2019-09-01 14:42:24 t 1 2 92054 392 0.00 2019-09-01 14:30:59 2019-09-01 14:43:39 t 1 2 92055 361 0.00 2019-09-01 14:44:38 2019-09-01 14:44:45 t 1 2 92057 420 0.00 2019-09-01 14:31:20 2019-09-01 14:52:04 t 1 1 92059 420 0.00 2019-09-01 14:52:04 2019-09-01 14:54:59 t 1 1 92062 412 0.00 2019-09-01 09:40:41 2019-09-01 15:10:04 t 1 1 92065 306 0.00 2019-09-01 15:22:43 2019-09-01 15:23:46 t 1 2 92071 212 0.00 2019-09-01 15:32:35 2019-09-01 15:33:23 t 1 2 92074 306 0.00 2019-09-01 15:34:27 2019-09-01 15:35:30 t 1 2 92075 294 0.00 2019-09-01 15:19:46 2019-09-01 15:37:09 t 1 2 92078 420 0.00 2019-09-01 15:37:23 2019-09-01 15:44:11 t 1 1 92088 346 0.00 2019-09-01 15:31:06 2019-09-01 15:56:12 t 1 2 92090 412 0.00 2019-09-01 15:18:01 2019-09-01 16:00:32 t 1 1 92096 346 0.00 2019-09-01 15:53:53 2019-09-01 16:08:58 t 1 2 92097 381 0.00 2019-09-01 15:57:13 2019-09-01 16:17:19 t 1 2 92098 212 0.00 2019-09-01 16:21:02 2019-09-01 16:21:47 t 1 2 92100 412 0.00 2019-09-01 16:09:31 2019-09-01 16:24:54 t 1 1 92102 402 0.00 2019-09-01 16:15:29 2019-09-01 16:25:34 t 1 2 92110 363 0.00 2019-09-01 16:37:22 2019-09-01 16:57:28 t 1 2 92115 294 0.00 2019-09-01 16:28:04 2019-09-01 17:14:36 t 1 2 92117 346 0.00 2019-09-01 16:28:03 2019-09-01 17:18:09 t 1 2 92121 424 0.00 2019-09-01 14:56:31 2019-09-01 17:28:53 t 1 2 92122 294 0.00 2019-09-01 17:17:24 2019-09-01 17:34:01 t 1 2 92129 428 0.00 2019-09-01 17:42:53 2019-09-01 18:14:03 t 1 1 92138 220 0.00 2019-09-01 16:18:11 2019-09-01 18:59:02 t 1 2 92141 296 0.00 2019-09-01 18:59:31 2019-09-01 19:10:52 t 1 2 92142 220 0.00 2019-09-01 18:47:44 2019-09-01 19:16:42 t 1 1 92143 212 0.00 2019-09-01 19:20:01 2019-09-01 19:20:33 t 1 2 92145 306 0.00 2019-09-01 19:22:52 2019-09-01 19:23:57 t 1 2 92149 412 0.00 2019-09-01 19:34:08 2019-09-01 19:40:26 t 1 1 92153 296 0.00 2019-09-01 19:57:56 2019-09-01 20:03:19 t 1 2 92155 363 0.00 2019-09-01 18:40:53 2019-09-01 20:05:59 t 1 2 92158 306 0.00 2019-09-01 20:08:10 2019-09-01 20:09:13 t 1 2 92159 311 0.00 2019-09-01 19:09:21 2019-09-01 20:11:02 t 1 2 92162 395 0.00 2019-09-01 20:20:59 2019-09-01 20:24:58 t 1 2 92164 247 0.00 2019-09-01 20:25:26 2019-09-01 20:30:50 t 1 2 92167 247 0.00 2019-09-01 20:34:45 2019-09-01 20:36:43 t 1 2 92169 346 0.00 2019-09-01 14:46:23 2019-09-01 20:39:14 t 1 2 92170 349 0.00 2019-09-01 20:49:39 2019-09-01 20:50:42 t 1 2 92171 392 0.00 2019-09-01 20:34:52 2019-09-01 21:01:28 t 1 2 92175 247 0.00 2019-09-01 21:19:54 2019-09-01 21:20:49 t 1 2 92178 220 0.00 2019-09-01 19:14:06 2019-09-01 21:37:57 t 1 2 92179 220 0.00 2019-09-01 20:08:25 2019-09-01 21:40:01 t 1 1 188641 639 0.00 2019-12-07 04:04:04 2019-12-07 04:04:41 t 1 1 92192 349 0.00 2019-09-01 22:17:22 2019-09-01 22:18:26 t 1 2 92193 411 0.00 2019-09-01 04:20:36 2019-09-01 22:19:01 t 1 1 92195 349 0.00 2019-09-01 22:18:35 2019-09-01 22:19:38 t 1 2 188642 639 0.00 2019-12-07 04:03:33 2019-12-07 04:05:22 t 1 1 92200 385 0.00 2019-09-01 22:24:18 2019-09-01 22:39:56 t 1 2 92202 220 0.00 2019-09-01 22:26:20 2019-09-01 22:45:04 t 1 1 92206 212 0.00 2019-09-01 22:55:29 2019-09-01 22:55:47 t 1 2 92208 420 0.00 2019-09-01 22:49:31 2019-09-01 22:58:17 t 1 1 92214 375 0.00 2019-09-01 23:12:28 2019-09-01 23:13:32 t 1 2 92217 306 0.00 2019-09-01 23:17:14 2019-09-01 23:18:17 t 1 2 92218 400 0.00 2019-09-01 22:31:24 2019-09-01 23:21:29 t 1 2 92221 247 0.00 2019-09-01 23:27:18 2019-09-01 23:28:49 t 1 2 92222 247 0.00 2019-09-01 23:30:07 2019-09-01 23:32:41 t 1 2 92230 212 0.00 2019-09-02 00:01:29 2019-09-02 00:01:55 t 1 2 92234 392 0.00 2019-09-01 23:58:12 2019-09-02 00:14:34 t 1 2 92240 220 0.00 2019-09-02 00:11:29 2019-09-02 00:26:34 t 1 2 188645 639 0.00 2019-12-07 04:08:27 2019-12-07 04:08:32 t 1 1 92245 212 0.00 2019-09-02 00:51:51 2019-09-02 00:52:09 t 1 2 92246 220 0.00 2019-09-02 01:07:26 2019-09-02 01:17:31 t 1 2 92247 379 0.00 2019-09-01 23:58:34 2019-09-02 01:38:40 t 1 2 92249 392 0.00 2019-09-02 01:15:01 2019-09-02 02:14:42 t 1 2 92252 220 0.00 2019-09-02 05:50:45 2019-09-02 06:00:24 t 1 1 92253 220 0.00 2019-09-02 06:00:24 2019-09-02 06:03:08 t 1 1 92254 220 0.00 2019-09-02 06:21:35 2019-09-02 06:28:01 t 1 1 92255 220 0.00 2019-09-02 06:28:01 2019-09-02 06:37:45 t 1 1 92257 220 0.00 2019-09-02 06:46:21 2019-09-02 06:55:47 t 1 1 92258 220 0.00 2019-09-02 06:55:47 2019-09-02 06:55:56 t 1 1 92052 375 0.00 2019-09-01 14:38:29 2019-09-01 14:39:33 t 1 2 92058 400 0.00 2019-09-01 14:25:05 2019-09-01 14:52:40 t 1 2 92061 212 0.00 2019-09-01 15:02:46 2019-09-01 15:03:04 t 1 2 92067 306 0.00 2019-09-01 15:27:07 2019-09-01 15:28:13 t 1 2 92069 428 0.00 2019-09-01 15:26:13 2019-09-01 15:29:57 t 1 1 92072 306 0.00 2019-09-01 15:33:01 2019-09-01 15:34:05 t 1 2 92073 428 0.00 2019-09-01 15:29:57 2019-09-01 15:35:18 t 1 1 92077 220 0.00 2019-09-01 15:41:02 2019-09-01 15:44:02 t 1 2 92080 306 0.00 2019-09-01 15:43:32 2019-09-01 15:44:33 t 1 2 92083 428 0.00 2019-09-01 15:39:44 2019-09-01 15:54:05 t 1 1 92087 220 0.00 2019-09-01 15:53:38 2019-09-01 15:56:01 t 1 2 92089 212 0.00 2019-09-01 15:55:51 2019-09-01 15:56:40 t 1 2 92091 288 0.00 2019-09-01 16:00:04 2019-09-01 16:01:07 t 1 2 92093 412 0.00 2019-09-01 16:00:32 2019-09-01 16:01:58 t 1 1 92094 247 0.00 2019-09-01 15:59:26 2019-09-01 16:03:10 t 1 2 92101 294 0.00 2019-09-01 16:24:08 2019-09-01 16:25:28 t 1 2 92104 400 0.00 2019-09-01 15:56:29 2019-09-01 16:36:34 t 1 2 92105 428 0.00 2019-09-01 16:20:18 2019-09-01 16:46:30 t 1 1 92106 212 0.00 2019-09-01 16:49:08 2019-09-01 16:49:43 t 1 2 92113 306 0.00 2019-09-01 17:03:21 2019-09-01 17:04:29 t 1 2 92118 212 0.00 2019-09-01 17:18:32 2019-09-01 17:18:52 t 1 2 92119 400 0.00 2019-09-01 17:15:29 2019-09-01 17:25:34 t 1 2 92120 212 0.00 2019-09-01 17:28:16 2019-09-01 17:28:37 t 1 2 92125 346 0.00 2019-09-01 17:34:22 2019-09-01 17:44:28 t 1 2 92128 306 0.00 2019-09-01 18:02:52 2019-09-01 18:03:55 t 1 2 92132 428 0.00 2019-09-01 18:14:03 2019-09-01 18:38:00 t 1 1 92133 212 0.00 2019-09-01 18:42:29 2019-09-01 18:43:14 t 1 2 92134 306 0.00 2019-09-01 18:43:49 2019-09-01 18:44:52 t 1 2 92135 363 0.00 2019-09-01 18:35:53 2019-09-01 18:45:58 t 1 2 92139 212 0.00 2019-09-01 19:05:25 2019-09-01 19:06:06 t 1 2 92140 306 0.00 2019-09-01 19:06:43 2019-09-01 19:07:47 t 1 2 92146 355 0.00 2019-09-01 19:24:46 2019-09-01 19:27:25 t 1 2 92147 412 0.00 2019-09-01 16:46:14 2019-09-01 19:34:09 t 1 1 92148 400 0.00 2019-09-01 19:16:45 2019-09-01 19:36:50 t 1 2 92161 395 0.00 2019-09-01 20:00:16 2019-09-01 20:18:50 t 1 2 92163 294 0.00 2019-09-01 20:13:37 2019-09-01 20:30:01 t 1 2 92165 306 0.00 2019-09-01 20:34:50 2019-09-01 20:35:53 t 1 2 92166 402 0.00 2019-09-01 20:11:06 2019-09-01 20:36:11 t 1 2 92172 355 0.00 2019-09-01 21:00:55 2019-09-01 21:07:27 t 1 2 92174 346 0.00 2019-09-01 21:18:09 2019-09-01 21:18:17 t 1 2 92176 294 0.00 2019-09-01 20:30:57 2019-09-01 21:31:21 t 1 2 92177 212 0.00 2019-09-01 21:31:52 2019-09-01 21:32:13 t 1 2 92181 247 0.00 2019-09-01 21:41:10 2019-09-01 21:42:32 t 1 2 92182 400 0.00 2019-09-01 21:23:13 2019-09-01 21:43:18 t 1 2 92184 247 0.00 2019-09-01 21:51:05 2019-09-01 22:02:31 t 1 2 188643 689 0.00 2019-12-07 04:05:29 2019-12-07 04:05:54 t 1 1 92189 400 0.00 2019-09-01 21:46:48 2019-09-01 22:11:54 t 1 2 188644 639 0.00 2019-12-07 04:06:27 2019-12-07 04:06:36 t 1 1 92191 349 0.00 2019-09-01 22:15:59 2019-09-01 22:17:03 t 1 2 92203 420 0.00 2019-09-01 22:45:04 2019-09-01 22:49:31 t 1 1 92205 346 0.00 2019-09-01 21:30:07 2019-09-01 22:49:52 t 1 2 92209 247 0.00 2019-09-01 22:04:10 2019-09-01 23:04:31 t 1 2 92210 306 0.00 2019-09-01 23:08:11 2019-09-01 23:09:13 t 1 2 92211 306 0.00 2019-09-01 23:11:00 2019-09-01 23:12:02 t 1 2 92213 306 0.00 2019-09-01 23:12:14 2019-09-01 23:13:20 t 1 2 188647 689 0.00 2019-12-07 04:10:53 2019-12-07 04:11:22 t 1 1 92220 375 0.00 2019-09-01 23:25:47 2019-09-01 23:26:54 t 1 2 188651 639 0.00 2019-12-07 04:16:12 2019-12-07 04:17:17 t 1 1 92224 220 0.00 2019-09-01 23:05:25 2019-09-01 23:40:30 t 1 2 92225 363 0.00 2019-09-01 23:18:38 2019-09-01 23:43:44 t 1 2 92227 212 0.00 2019-09-01 23:48:05 2019-09-01 23:48:25 t 1 2 92229 355 0.00 2019-09-01 23:41:05 2019-09-01 23:54:44 t 1 2 92236 363 0.00 2019-09-01 23:40:09 2019-09-02 00:15:46 t 1 2 92237 212 0.00 2019-09-02 00:18:09 2019-09-02 00:18:35 t 1 2 92238 212 0.00 2019-09-02 00:21:56 2019-09-02 00:22:24 t 1 2 92239 395 0.00 2019-09-02 00:14:48 2019-09-02 00:26:08 t 1 2 92243 212 0.00 2019-09-02 00:43:30 2019-09-02 00:43:58 t 1 2 92244 331 0.00 2019-09-02 00:44:27 2019-09-02 00:45:31 t 1 2 92256 220 0.00 2019-09-02 06:37:45 2019-09-02 06:46:21 t 1 1 92261 346 0.00 2019-09-02 06:26:59 2019-09-02 07:33:48 t 1 2 92263 220 0.00 2019-09-02 07:39:05 2019-09-02 07:41:26 t 1 1 92273 363 0.00 2019-09-02 08:21:52 2019-09-02 08:56:58 t 1 2 92279 379 0.00 2019-09-02 09:18:10 2019-09-02 09:33:15 t 1 2 92287 349 0.00 2019-09-02 10:09:35 2019-09-02 10:10:40 t 1 2 188654 639 0.00 2019-12-07 04:20:56 2019-12-07 04:22:22 t 1 1 92296 220 0.00 2019-09-02 10:12:01 2019-09-02 10:28:51 t 1 1 92302 351 0.00 2019-09-02 10:38:31 2019-09-02 10:39:23 t 1 2 92304 220 0.00 2019-09-02 10:41:11 2019-09-02 10:43:18 t 1 1 92305 220 0.00 2019-09-02 10:43:21 2019-09-02 10:47:30 t 1 1 92310 430 0.00 2019-09-02 11:03:16 2019-09-02 11:03:40 t 1 1 92317 212 0.00 2019-09-02 11:31:24 2019-09-02 11:31:54 t 1 2 92318 400 0.00 2019-09-02 11:14:06 2019-09-02 11:39:12 t 1 2 92319 349 0.00 2019-09-02 11:44:35 2019-09-02 11:45:41 t 1 2 92322 420 0.00 2019-09-02 11:48:20 2019-09-02 11:52:53 t 1 1 92323 420 0.00 2019-09-02 11:52:53 2019-09-02 12:06:40 t 1 1 92325 430 0.00 2019-09-02 12:12:04 2019-09-02 12:15:33 t 1 1 92328 400 0.00 2019-09-02 12:02:49 2019-09-02 12:22:55 t 1 2 92332 430 0.00 2019-09-02 12:33:19 2019-09-02 12:33:27 t 1 1 92333 420 0.00 2019-09-02 12:06:40 2019-09-02 12:35:27 t 1 1 92334 361 0.00 2019-09-02 11:50:52 2019-09-02 12:35:57 t 1 2 92335 430 0.00 2019-09-02 12:37:17 2019-09-02 12:37:19 t 1 1 92338 420 0.00 2019-09-02 12:48:28 2019-09-02 12:52:03 t 1 1 92341 385 0.00 2019-09-02 13:05:10 2019-09-02 13:06:33 t 1 2 92343 385 0.00 2019-09-02 13:13:00 2019-09-02 13:17:23 t 1 2 92344 220 0.00 2019-09-02 12:12:50 2019-09-02 13:17:55 t 1 2 92348 247 0.00 2019-09-02 13:22:09 2019-09-02 13:25:21 t 1 2 92350 296 0.00 2019-09-02 13:37:03 2019-09-02 13:41:26 t 1 2 92353 220 0.00 2019-09-02 13:41:51 2019-09-02 13:47:36 t 1 1 92359 392 0.00 2019-09-02 13:34:06 2019-09-02 14:00:18 t 1 2 92361 420 0.00 2019-09-02 13:59:21 2019-09-02 14:00:42 t 1 1 92362 420 0.00 2019-09-02 14:00:42 2019-09-02 14:01:45 t 1 1 92369 355 0.00 2019-09-02 14:02:25 2019-09-02 14:12:30 t 1 2 92370 212 0.00 2019-09-02 14:14:40 2019-09-02 14:15:38 t 1 2 92371 420 0.00 2019-09-02 14:11:40 2019-09-02 14:15:59 t 1 1 92382 363 0.00 2019-09-02 13:32:30 2019-09-02 15:07:36 t 1 2 92383 212 0.00 2019-09-02 15:07:06 2019-09-02 15:08:06 t 1 2 92384 420 0.00 2019-09-02 15:06:14 2019-09-02 15:10:36 t 1 1 92156 361 0.00 2019-09-01 18:52:18 2019-09-01 20:08:03 t 1 2 92157 346 0.00 2019-09-01 20:05:48 2019-09-01 20:08:28 t 1 2 92160 306 0.00 2019-09-01 20:11:16 2019-09-01 20:12:15 t 1 2 92168 379 0.00 2019-09-01 07:58:40 2019-09-01 20:38:46 t 1 2 92173 346 0.00 2019-09-01 21:10:23 2019-09-01 21:12:13 t 1 2 92180 424 0.00 2019-09-01 21:25:15 2019-09-01 21:40:39 t 1 2 92183 385 0.00 2019-09-01 21:34:58 2019-09-01 21:44:21 t 1 2 188646 639 0.00 2019-12-07 04:10:59 2019-12-07 04:11:06 t 1 1 188648 639 0.00 2019-12-07 04:13:45 2019-12-07 04:13:49 t 1 1 92194 402 0.00 2019-09-01 21:59:07 2019-09-01 22:19:12 t 1 2 188649 639 0.00 2019-12-07 04:14:46 2019-12-07 04:14:59 t 1 1 92198 220 0.00 2019-09-01 19:10:04 2019-09-01 22:38:17 t 1 2 92199 212 0.00 2019-09-01 22:38:48 2019-09-01 22:39:11 t 1 2 92201 292 0.00 2019-09-01 22:41:34 2019-09-01 22:42:41 t 1 2 92204 296 0.00 2019-09-01 22:47:18 2019-09-01 22:49:39 t 1 2 188650 689 0.00 2019-12-07 04:16:23 2019-12-07 04:16:51 t 1 1 92212 212 0.00 2019-09-01 23:10:45 2019-09-01 23:13:07 t 1 2 92215 306 0.00 2019-09-01 23:14:00 2019-09-01 23:15:07 t 1 2 92216 212 0.00 2019-09-01 23:15:50 2019-09-01 23:16:13 t 1 2 92226 402 0.00 2019-09-01 23:37:09 2019-09-01 23:47:14 t 1 2 92228 361 0.00 2019-09-01 22:29:55 2019-09-01 23:54:10 t 1 2 92231 247 0.00 2019-09-02 00:01:03 2019-09-02 00:02:03 t 1 2 92232 400 0.00 2019-09-01 23:18:20 2019-09-02 00:03:26 t 1 2 92233 212 0.00 2019-09-02 00:09:04 2019-09-02 00:09:29 t 1 2 92235 212 0.00 2019-09-02 00:15:17 2019-09-02 00:15:37 t 1 2 92241 212 0.00 2019-09-02 00:31:28 2019-09-02 00:32:32 t 1 2 92248 363 0.00 2019-09-02 00:28:29 2019-09-02 01:53:34 t 1 2 92250 306 0.00 2019-09-02 03:46:00 2019-09-02 03:47:04 t 1 2 92251 220 0.00 2019-09-02 03:38:09 2019-09-02 03:48:15 t 1 2 92259 349 0.00 2019-09-02 07:06:17 2019-09-02 07:07:23 t 1 2 92262 294 0.00 2019-09-02 06:46:20 2019-09-02 07:33:48 t 1 2 92264 212 0.00 2019-09-02 07:57:59 2019-09-02 07:58:24 t 1 2 188652 639 0.00 2019-12-07 04:17:12 2019-12-07 04:19:22 t 1 1 92275 247 0.00 2019-09-02 09:01:28 2019-09-02 09:03:01 t 1 2 92277 212 0.00 2019-09-02 09:17:03 2019-09-02 09:17:21 t 1 2 92282 220 0.00 2019-09-02 09:45:36 2019-09-02 09:47:14 t 1 1 92283 430 0.00 2019-09-02 09:43:27 2019-09-02 09:50:05 t 1 1 92286 349 0.00 2019-09-02 10:05:01 2019-09-02 10:06:05 t 1 2 92289 220 0.00 2019-09-02 10:01:46 2019-09-02 10:10:52 t 1 1 92291 349 0.00 2019-09-02 10:10:54 2019-09-02 10:11:58 t 1 2 92293 430 0.00 2019-09-02 09:50:27 2019-09-02 10:17:04 t 1 1 92298 220 0.00 2019-09-02 10:25:06 2019-09-02 10:30:12 t 1 2 92299 343 0.00 2019-09-02 10:31:01 2019-09-02 10:31:34 t 1 2 92300 343 0.00 2019-09-02 10:31:38 2019-09-02 10:36:25 t 1 2 92301 220 0.00 2019-09-02 10:32:02 2019-09-02 10:39:11 t 1 1 92303 346 0.00 2019-09-02 10:25:28 2019-09-02 10:40:33 t 1 2 92308 355 0.00 2019-09-02 10:43:17 2019-09-02 11:02:57 t 1 2 92312 351 0.00 2019-09-02 10:52:02 2019-09-02 11:08:43 t 1 2 92313 402 0.00 2019-09-02 08:43:01 2019-09-02 11:17:54 t 1 2 92314 220 0.00 2019-09-02 11:10:51 2019-09-02 11:22:30 t 1 1 92320 349 0.00 2019-09-02 11:49:17 2019-09-02 11:50:21 t 1 2 92324 400 0.00 2019-09-02 11:52:39 2019-09-02 12:07:44 t 1 2 92327 430 0.00 2019-09-02 12:16:01 2019-09-02 12:17:30 t 1 1 92330 327 0.00 2019-09-02 11:31:12 2019-09-02 12:31:36 t 1 2 92331 430 0.00 2019-09-02 12:32:09 2019-09-02 12:33:19 t 1 1 92336 420 0.00 2019-09-02 12:35:27 2019-09-02 12:48:28 t 1 1 92337 422 0.00 2019-09-02 11:32:07 2019-09-02 12:48:55 t 1 2 92342 220 0.00 2019-09-02 13:06:13 2019-09-02 13:07:36 t 1 2 92345 385 0.00 2019-09-02 13:16:23 2019-09-02 13:18:46 t 1 2 92347 424 0.00 2019-09-02 13:12:12 2019-09-02 13:23:36 t 1 2 92349 220 0.00 2019-09-02 13:18:10 2019-09-02 13:33:49 t 1 1 92352 220 0.00 2019-09-02 13:25:54 2019-09-02 13:47:04 t 1 2 92354 220 0.00 2019-09-02 13:48:15 2019-09-02 13:50:42 t 1 1 92355 420 0.00 2019-09-02 13:47:40 2019-09-02 13:51:38 t 1 1 92356 420 0.00 2019-09-02 13:51:38 2019-09-02 13:55:14 t 1 1 92357 412 0.00 2019-09-02 11:46:06 2019-09-02 13:59:21 t 1 1 92358 420 0.00 2019-09-02 13:55:14 2019-09-02 14:00:16 t 1 1 92364 220 0.00 2019-09-02 14:01:51 2019-09-02 14:03:45 t 1 1 92365 220 0.00 2019-09-02 14:03:49 2019-09-02 14:08:03 t 1 1 92368 420 0.00 2019-09-02 14:02:14 2019-09-02 14:11:40 t 1 1 92374 220 0.00 2019-09-02 14:16:02 2019-09-02 14:16:30 t 1 1 92375 220 0.00 2019-09-02 14:16:34 2019-09-02 14:19:02 t 1 1 92376 428 0.00 2019-09-02 13:53:41 2019-09-02 14:31:58 t 1 1 92377 400 0.00 2019-09-02 13:01:37 2019-09-02 14:51:42 t 1 2 92380 367 0.00 2019-09-02 14:41:26 2019-09-02 14:58:23 t 1 2 92381 372 0.00 2019-09-02 14:50:03 2019-09-02 15:05:08 t 1 2 92386 420 0.00 2019-09-02 15:10:36 2019-09-02 15:16:04 t 1 1 92387 420 0.00 2019-09-02 15:16:04 2019-09-02 15:19:40 t 1 1 92389 420 0.00 2019-09-02 15:19:40 2019-09-02 15:23:31 t 1 1 92390 402 0.00 2019-09-02 13:24:08 2019-09-02 15:24:14 t 1 2 92393 324 0.00 2019-09-02 15:43:58 2019-09-02 15:43:58 f 1 2 92399 400 0.00 2019-09-02 15:44:05 2019-09-02 15:54:10 t 1 2 92402 220 0.00 2019-09-02 15:54:02 2019-09-02 16:01:06 t 1 1 92406 372 0.00 2019-09-02 16:16:15 2019-09-02 16:22:07 t 1 2 92413 212 0.00 2019-09-02 17:17:08 2019-09-02 17:20:36 t 1 2 92415 400 0.00 2019-09-02 17:10:56 2019-09-02 17:21:01 t 1 2 92423 318 0.00 2019-09-02 17:47:20 2019-09-02 17:47:20 f 1 2 92426 430 0.00 2019-09-02 17:40:35 2019-09-02 17:49:51 t 1 1 92427 432 0.00 2019-09-02 17:51:06 2019-09-02 17:52:06 t 1 1 92428 432 0.00 2019-09-02 17:53:15 2019-09-02 17:55:06 t 1 1 92429 420 0.00 2019-09-02 14:16:03 2019-09-02 17:56:59 t 1 1 92430 220 0.00 2019-09-02 17:19:13 2019-09-02 17:58:25 t 1 2 92433 430 0.00 2019-09-02 17:49:51 2019-09-02 18:00:15 t 1 1 92437 375 0.00 2019-09-02 18:06:30 2019-09-02 18:08:54 t 1 1 92438 331 0.00 2019-09-02 18:10:07 2019-09-02 18:11:14 t 1 2 92446 432 0.00 2019-09-02 18:34:25 2019-09-02 18:34:58 t 1 1 92449 432 0.00 2019-09-02 18:37:10 2019-09-02 18:38:17 t 1 1 188653 689 0.00 2019-12-07 04:21:50 2019-12-07 04:22:15 t 1 1 92453 420 0.00 2019-09-02 18:56:46 2019-09-02 19:00:03 t 1 1 92459 420 0.00 2019-09-02 19:00:03 2019-09-02 19:06:58 t 1 1 92463 346 0.00 2019-09-02 19:42:05 2019-09-02 19:43:52 t 1 2 92464 294 0.00 2019-09-02 18:50:12 2019-09-02 19:50:53 t 1 2 188657 639 0.00 2019-12-07 04:25:16 2019-12-07 04:25:39 t 1 1 92468 220 0.00 2019-09-02 19:53:07 2019-09-02 19:54:18 t 1 1 92470 430 0.00 2019-09-02 19:55:58 2019-09-02 19:56:04 t 1 1 92471 430 0.00 2019-09-02 19:58:14 2019-09-02 19:58:22 t 1 1 92473 400 0.00 2019-09-02 19:55:50 2019-09-02 19:58:43 t 1 2 92260 343 0.00 2019-09-02 03:22:11 2019-09-02 07:33:48 t 1 2 92265 296 0.00 2019-09-02 07:51:52 2019-09-02 08:02:16 t 1 2 92266 212 0.00 2019-09-02 08:18:58 2019-09-02 08:19:37 t 1 2 92267 402 0.00 2019-09-02 08:17:25 2019-09-02 08:21:14 t 1 2 92268 294 0.00 2019-09-02 07:56:39 2019-09-02 08:22:02 t 1 2 92270 247 0.00 2019-09-02 08:46:47 2019-09-02 08:47:40 t 1 2 92271 247 0.00 2019-09-02 08:49:09 2019-09-02 08:50:05 t 1 2 92272 247 0.00 2019-09-02 08:50:29 2019-09-02 08:51:38 t 1 2 92274 400 0.00 2019-09-02 08:24:48 2019-09-02 08:59:53 t 1 2 92276 247 0.00 2019-09-02 09:05:28 2019-09-02 09:06:52 t 1 2 92278 247 0.00 2019-09-02 09:11:28 2019-09-02 09:19:09 t 1 2 92280 212 0.00 2019-09-02 09:33:39 2019-09-02 09:34:15 t 1 2 92281 346 0.00 2019-09-02 09:34:12 2019-09-02 09:43:01 t 1 2 92284 220 0.00 2019-09-02 09:47:30 2019-09-02 10:00:38 t 1 2 92285 349 0.00 2019-09-02 10:03:43 2019-09-02 10:04:50 t 1 2 92288 220 0.00 2019-09-02 10:04:33 2019-09-02 10:10:40 t 1 2 92290 220 0.00 2019-09-02 10:10:55 2019-09-02 10:11:55 t 1 1 92294 430 0.00 2019-09-02 10:17:21 2019-09-02 10:17:35 t 1 1 92295 349 0.00 2019-09-02 10:18:53 2019-09-02 10:19:58 t 1 2 92297 220 0.00 2019-09-02 10:28:54 2019-09-02 10:30:11 t 1 1 92306 351 0.00 2019-09-02 10:51:46 2019-09-02 10:51:52 t 1 2 92307 212 0.00 2019-09-02 10:25:50 2019-09-02 10:52:14 t 1 2 92309 430 0.00 2019-09-02 11:03:10 2019-09-02 11:03:16 t 1 1 92311 346 0.00 2019-09-02 10:56:13 2019-09-02 11:06:18 t 1 2 92315 220 0.00 2019-09-02 11:22:27 2019-09-02 11:24:54 t 1 1 92316 412 0.00 2019-09-01 20:35:54 2019-09-02 11:27:17 t 1 1 92321 212 0.00 2019-09-02 11:50:59 2019-09-02 11:52:17 t 1 2 92326 424 0.00 2019-09-02 11:48:33 2019-09-02 12:16:56 t 1 2 92329 430 0.00 2019-09-02 12:22:27 2019-09-02 12:31:18 t 1 1 92339 420 0.00 2019-09-02 12:52:08 2019-09-02 12:53:12 t 1 1 92340 430 0.00 2019-09-02 12:38:00 2019-09-02 12:55:26 t 1 1 92346 385 0.00 2019-09-02 13:18:20 2019-09-02 13:19:43 t 1 2 92351 220 0.00 2019-09-02 13:33:53 2019-09-02 13:41:48 t 1 1 92360 220 0.00 2019-09-02 13:51:00 2019-09-02 14:00:25 t 1 1 92363 220 0.00 2019-09-02 14:00:32 2019-09-02 14:01:48 t 1 1 92366 355 0.00 2019-09-02 13:43:53 2019-09-02 14:08:59 t 1 2 92367 220 0.00 2019-09-02 14:08:02 2019-09-02 14:11:10 t 1 1 92372 220 0.00 2019-09-02 14:11:59 2019-09-02 14:15:59 t 1 1 92373 212 0.00 2019-09-02 14:15:46 2019-09-02 14:16:21 t 1 2 92378 346 0.00 2019-09-02 13:29:11 2019-09-02 14:54:17 t 1 2 92379 372 0.00 2019-09-02 14:46:04 2019-09-02 14:56:09 t 1 2 92385 424 0.00 2019-09-02 14:29:44 2019-09-02 15:12:08 t 1 2 92391 327 0.00 2019-09-02 14:24:56 2019-09-02 15:25:17 t 1 2 92394 346 0.00 2019-09-02 15:45:20 2019-09-02 15:46:24 t 1 2 92395 392 0.00 2019-09-02 15:35:25 2019-09-02 15:49:04 t 1 2 92396 379 0.00 2019-09-02 13:18:30 2019-09-02 15:51:09 t 1 2 92398 220 0.00 2019-09-02 15:52:44 2019-09-02 15:54:02 t 1 1 92403 402 0.00 2019-09-02 15:59:56 2019-09-02 16:02:33 t 1 2 92404 355 0.00 2019-09-02 15:06:55 2019-09-02 16:13:27 t 1 2 92405 372 0.00 2019-09-02 15:35:42 2019-09-02 16:15:48 t 1 2 92408 220 0.00 2019-09-02 16:39:26 2019-09-02 16:56:35 t 1 1 92411 220 0.00 2019-09-02 16:56:38 2019-09-02 17:03:02 t 1 1 92414 432 0.00 2019-09-02 17:18:35 2019-09-02 17:20:55 t 1 1 92416 432 0.00 2019-09-02 17:21:50 2019-09-02 17:23:06 t 1 1 92418 430 0.00 2019-09-02 17:17:23 2019-09-02 17:30:47 t 1 1 92420 432 0.00 2019-09-02 17:37:56 2019-09-02 17:38:44 t 1 1 92421 430 0.00 2019-09-02 17:30:47 2019-09-02 17:40:35 t 1 1 92425 424 0.00 2019-09-02 15:21:36 2019-09-02 17:48:58 t 1 2 92435 430 0.00 2019-09-02 18:00:15 2019-09-02 18:05:01 t 1 1 92439 402 0.00 2019-09-02 16:24:07 2019-09-02 18:14:12 t 1 2 92440 430 0.00 2019-09-02 18:05:01 2019-09-02 18:15:59 t 1 1 92442 430 0.00 2019-09-02 18:15:59 2019-09-02 18:20:58 t 1 1 92443 432 0.00 2019-09-02 18:08:02 2019-09-02 18:23:21 t 1 1 92444 434 0.00 2019-09-02 18:19:58 2019-09-02 18:29:40 t 1 2 92452 294 0.00 2019-09-02 18:08:43 2019-09-02 18:46:07 t 1 2 92454 395 0.00 2019-09-02 19:01:36 2019-09-02 19:02:09 t 1 2 92455 220 0.00 2019-09-02 18:38:56 2019-09-02 19:02:59 t 1 1 92456 375 0.00 2019-09-02 18:21:10 2019-09-02 19:04:27 t 1 1 92461 400 0.00 2019-09-02 18:56:59 2019-09-02 19:17:04 t 1 2 92465 430 0.00 2019-09-02 19:46:51 2019-09-02 19:52:59 t 1 1 92469 432 0.00 2019-09-02 19:52:59 2019-09-02 19:55:33 t 1 1 92472 430 0.00 2019-09-02 19:58:28 2019-09-02 19:58:40 t 1 1 92475 430 0.00 2019-09-02 20:00:15 2019-09-02 20:00:17 t 1 1 92480 400 0.00 2019-09-02 19:53:32 2019-09-02 20:03:38 t 1 2 92483 398 0.00 2019-09-02 20:07:11 2019-09-02 20:08:16 t 1 2 92484 363 0.00 2019-09-02 19:10:12 2019-09-02 20:10:18 t 1 2 92486 292 0.00 2019-09-02 20:14:53 2019-09-02 20:15:58 t 1 2 92489 400 0.00 2019-09-02 20:08:53 2019-09-02 20:18:58 t 1 2 92492 430 0.00 2019-09-02 20:22:19 2019-09-02 20:22:26 t 1 1 92500 430 0.00 2019-09-02 20:25:05 2019-09-02 20:25:32 t 1 1 92503 355 0.00 2019-09-02 20:20:20 2019-09-02 20:27:53 t 1 2 92504 436 0.00 2019-09-02 20:06:51 2019-09-02 20:31:17 t 1 1 92506 432 0.00 2019-09-02 20:23:03 2019-09-02 20:32:29 t 1 1 92508 432 0.00 2019-09-02 20:35:01 2019-09-02 20:35:03 t 1 1 92515 400 0.00 2019-09-02 20:34:20 2019-09-02 20:44:25 t 1 2 188655 689 0.00 2019-12-07 04:22:24 2019-12-07 04:22:48 t 1 1 92526 357 0.00 2019-09-02 20:01:09 2019-09-02 20:51:14 t 1 2 92528 212 0.00 2019-09-02 21:00:13 2019-09-02 21:00:45 t 1 2 92532 400 0.00 2019-09-02 21:00:38 2019-09-02 21:10:43 t 1 2 92533 349 0.00 2019-09-02 21:12:13 2019-09-02 21:13:20 t 1 2 92535 432 0.00 2019-09-02 21:07:42 2019-09-02 21:16:28 t 1 1 92536 432 0.00 2019-09-02 21:20:50 2019-09-02 21:20:59 t 1 1 92539 349 0.00 2019-09-02 21:23:17 2019-09-02 21:24:23 t 1 2 92549 247 0.00 2019-09-02 21:34:34 2019-09-02 21:39:35 t 1 2 92552 402 0.00 2019-09-02 21:38:27 2019-09-02 21:53:32 t 1 2 92554 294 0.00 2019-09-02 20:08:28 2019-09-02 21:58:53 t 1 2 92557 400 0.00 2019-09-02 21:58:36 2019-09-02 22:08:41 t 1 2 92561 220 0.00 2019-09-02 22:23:27 2019-09-02 22:34:50 t 1 2 92564 432 0.00 2019-09-02 22:28:40 2019-09-02 22:43:03 t 1 1 188656 639 0.00 2019-12-07 04:23:57 2019-12-07 04:24:06 t 1 1 92581 363 0.00 2019-09-02 23:28:25 2019-09-02 23:48:30 t 1 2 92582 402 0.00 2019-09-02 23:14:15 2019-09-02 23:49:21 t 1 2 92583 432 0.00 2019-09-02 22:47:39 2019-09-02 23:54:23 t 1 1 92585 420 0.00 2019-09-02 23:49:15 2019-09-02 23:57:25 t 1 1 92586 212 0.00 2019-09-02 23:58:07 2019-09-02 23:59:14 t 1 2 92591 346 0.00 2019-09-02 23:34:51 2019-09-03 00:15:09 t 1 2 92603 372 0.00 2019-09-03 00:53:22 2019-09-03 01:28:27 t 1 2 92388 430 0.00 2019-09-02 15:06:09 2019-09-02 15:21:08 t 1 1 92392 420 0.00 2019-09-02 15:23:31 2019-09-02 15:26:15 t 1 1 92397 220 0.00 2019-09-02 13:49:21 2019-09-02 15:51:46 t 1 2 92400 385 0.00 2019-09-02 15:14:33 2019-09-02 15:57:10 t 1 2 92401 400 0.00 2019-09-02 15:48:29 2019-09-02 15:58:34 t 1 2 92407 392 0.00 2019-09-02 16:37:13 2019-09-02 16:42:02 t 1 2 92409 292 0.00 2019-09-02 16:59:03 2019-09-02 17:00:07 t 1 2 92410 292 0.00 2019-09-02 17:00:49 2019-09-02 17:01:53 t 1 2 92412 430 0.00 2019-09-02 16:51:17 2019-09-02 17:17:22 t 1 1 92417 432 0.00 2019-09-02 17:26:09 2019-09-02 17:26:45 t 1 1 92419 432 0.00 2019-09-02 17:32:01 2019-09-02 17:32:39 t 1 1 92422 432 0.00 2019-09-02 17:43:50 2019-09-02 17:44:31 t 1 1 92424 392 0.00 2019-09-02 17:30:36 2019-09-02 17:47:45 t 1 2 92431 220 0.00 2019-09-02 17:03:38 2019-09-02 17:58:32 t 1 1 92432 432 0.00 2019-09-02 17:58:32 2019-09-02 17:59:06 t 1 1 92434 331 0.00 2019-09-02 18:03:51 2019-09-02 18:04:55 t 1 2 92436 432 0.00 2019-09-02 18:04:30 2019-09-02 18:05:08 t 1 1 92441 375 0.00 2019-09-02 18:09:10 2019-09-02 18:20:55 t 1 1 92445 432 0.00 2019-09-02 18:23:05 2019-09-02 18:30:41 t 1 1 92447 400 0.00 2019-09-02 18:25:00 2019-09-02 18:35:05 t 1 2 92448 432 0.00 2019-09-02 18:36:06 2019-09-02 18:36:23 t 1 1 92451 346 0.00 2019-09-02 18:45:57 2019-09-02 18:46:01 t 1 2 92457 375 0.00 2019-09-02 19:04:27 2019-09-02 19:05:54 t 1 1 92458 430 0.00 2019-09-02 18:57:41 2019-09-02 19:06:24 t 1 1 92460 430 0.00 2019-09-02 19:05:54 2019-09-02 19:09:21 t 1 1 92462 400 0.00 2019-09-02 19:22:23 2019-09-02 19:32:28 t 1 2 92466 220 0.00 2019-09-02 19:10:00 2019-09-02 19:53:04 t 1 1 92476 411 0.00 2019-09-02 13:18:39 2019-09-02 20:01:02 t 1 1 92477 430 0.00 2019-09-02 20:01:02 2019-09-02 20:01:30 t 1 1 92478 430 0.00 2019-09-02 20:01:45 2019-09-02 20:02:13 t 1 1 92481 430 0.00 2019-09-02 20:02:40 2019-09-02 20:04:11 t 1 1 92487 375 0.00 2019-09-02 19:12:10 2019-09-02 20:16:03 t 1 1 188658 639 0.00 2019-12-07 04:26:47 2019-12-07 04:27:18 t 1 1 92495 430 0.00 2019-09-02 20:24:13 2019-09-02 20:24:20 t 1 1 92497 361 0.00 2019-09-02 19:59:32 2019-09-02 20:24:38 t 1 2 92498 430 0.00 2019-09-02 20:24:58 2019-09-02 20:24:59 t 1 1 92502 361 0.00 2019-09-02 20:17:30 2019-09-02 20:27:26 t 1 2 92509 432 0.00 2019-09-02 20:35:31 2019-09-02 20:35:40 t 1 1 92510 432 0.00 2019-09-02 20:36:04 2019-09-02 20:36:21 t 1 1 92514 432 0.00 2019-09-02 20:42:33 2019-09-02 20:44:06 t 1 1 92517 375 0.00 2019-09-02 20:21:11 2019-09-02 20:45:37 t 1 1 92518 402 0.00 2019-09-02 20:06:29 2019-09-02 20:46:35 t 1 2 92520 322 0.00 2019-09-02 20:46:22 2019-09-02 20:47:25 t 1 2 92522 432 0.00 2019-09-02 20:47:34 2019-09-02 20:48:23 t 1 1 188660 639 0.00 2019-12-07 04:28:29 2019-12-07 04:28:37 t 1 1 92524 296 0.00 2019-09-02 20:46:24 2019-09-02 20:50:17 t 1 2 92529 432 0.00 2019-09-02 20:50:58 2019-09-02 21:03:33 t 1 1 92530 432 0.00 2019-09-02 21:04:39 2019-09-02 21:04:42 t 1 1 188663 689 0.00 2019-12-07 04:29:57 2019-12-07 04:30:20 t 1 1 92537 349 0.00 2019-09-02 21:20:51 2019-09-02 21:21:56 t 1 2 92538 432 0.00 2019-09-02 21:23:56 2019-09-02 21:24:05 t 1 1 92540 432 0.00 2019-09-02 21:24:33 2019-09-02 21:24:42 t 1 1 92541 432 0.00 2019-09-02 21:24:59 2019-09-02 21:25:09 t 1 1 92543 247 0.00 2019-09-02 21:29:24 2019-09-02 21:30:41 t 1 2 92550 432 0.00 2019-09-02 21:40:11 2019-09-02 21:40:11 f 1 1 92553 355 0.00 2019-09-02 21:30:39 2019-09-02 21:57:37 t 1 2 92555 400 0.00 2019-09-02 21:45:24 2019-09-02 22:00:29 t 1 2 92556 212 0.00 2019-09-02 21:32:32 2019-09-02 22:02:37 t 1 2 92562 422 0.00 2019-09-02 21:39:55 2019-09-02 22:39:49 t 1 2 92563 375 0.00 2019-09-02 20:52:13 2019-09-02 22:42:58 t 1 1 188668 689 0.00 2019-12-07 04:35:03 2019-12-07 04:35:25 t 1 1 92566 375 0.00 2019-09-02 22:43:03 2019-09-02 22:47:39 t 1 1 92569 220 0.00 2019-09-02 22:58:38 2019-09-02 22:59:16 t 1 2 92571 220 0.00 2019-09-02 22:54:43 2019-09-02 23:04:48 t 1 2 92573 402 0.00 2019-09-02 23:11:17 2019-09-02 23:14:04 t 1 2 92574 296 0.00 2019-09-02 23:05:26 2019-09-02 23:15:46 t 1 2 92575 212 0.00 2019-09-02 22:38:25 2019-09-02 23:17:23 t 1 2 92576 212 0.00 2019-09-02 23:19:00 2019-09-02 23:20:00 t 1 2 92579 363 0.00 2019-09-02 23:28:13 2019-09-02 23:28:23 t 1 2 92580 346 0.00 2019-09-02 23:31:35 2019-09-02 23:31:39 t 1 2 92584 212 0.00 2019-09-02 23:53:50 2019-09-02 23:54:43 t 1 2 92588 212 0.00 2019-09-03 00:01:40 2019-09-03 00:02:34 t 1 2 92589 420 0.00 2019-09-02 23:57:25 2019-09-03 00:03:32 t 1 1 92593 402 0.00 2019-09-03 00:13:45 2019-09-03 00:23:51 t 1 2 92594 395 0.00 2019-09-03 00:14:02 2019-09-03 00:30:24 t 1 2 92595 424 0.00 2019-09-02 23:32:32 2019-09-03 00:32:53 t 1 2 92597 432 0.00 2019-09-02 23:54:23 2019-09-03 00:44:07 t 1 1 92599 432 0.00 2019-09-03 00:44:07 2019-09-03 00:46:22 t 1 1 92600 392 0.00 2019-09-02 23:50:12 2019-09-03 00:58:58 t 1 2 188669 639 0.00 2019-12-07 04:36:08 2019-12-07 04:36:33 t 1 1 92607 392 0.00 2019-09-03 01:24:40 2019-09-03 01:57:08 t 1 2 92613 363 0.00 2019-09-03 02:24:31 2019-09-03 02:54:37 t 1 2 92615 400 0.00 2019-09-02 22:24:24 2019-09-03 03:54:30 t 1 2 92616 343 0.00 2019-09-03 04:31:37 2019-09-03 04:32:31 t 1 2 92619 412 0.00 2019-09-03 04:53:31 2019-09-03 05:16:31 t 1 1 92622 412 0.00 2019-09-03 05:33:27 2019-09-03 05:45:32 t 1 1 92623 412 0.00 2019-09-03 05:45:32 2019-09-03 05:52:19 t 1 1 92624 412 0.00 2019-09-03 05:54:40 2019-09-03 05:56:14 t 1 1 92626 412 0.00 2019-09-03 05:56:14 2019-09-03 06:03:39 t 1 1 92627 412 0.00 2019-09-03 06:03:39 2019-09-03 06:04:58 t 1 1 92628 412 0.00 2019-09-03 06:08:05 2019-09-03 06:10:55 t 1 1 92629 375 0.00 2019-09-03 06:10:55 2019-09-03 06:17:12 t 1 1 92633 412 0.00 2019-09-03 06:25:10 2019-09-03 06:26:24 t 1 1 92637 220 0.00 2019-09-03 06:26:02 2019-09-03 06:39:26 t 1 1 92639 420 0.00 2019-09-03 06:41:14 2019-09-03 06:48:40 t 1 1 92643 430 0.00 2019-09-03 07:13:17 2019-09-03 07:14:57 t 1 1 92644 294 0.00 2019-09-03 06:25:04 2019-09-03 07:25:28 t 1 2 92645 400 0.00 2019-09-03 07:22:57 2019-09-03 07:33:02 t 1 2 92647 422 0.00 2019-09-03 04:40:31 2019-09-03 07:33:48 t 1 2 92650 402 0.00 2019-09-03 07:20:54 2019-09-03 07:33:48 t 1 2 92651 412 0.00 2019-09-03 06:33:29 2019-09-03 07:35:45 t 1 1 92655 436 0.00 2019-09-03 07:55:53 2019-09-03 08:09:57 t 1 1 92656 212 0.00 2019-09-03 08:58:15 2019-09-03 08:58:47 t 1 2 92657 363 0.00 2019-09-03 08:30:35 2019-09-03 09:00:40 t 1 2 92658 346 0.00 2019-09-03 07:37:09 2019-09-03 09:13:09 t 1 2 92660 212 0.00 2019-09-03 09:24:30 2019-09-03 09:25:59 t 1 2 92661 212 0.00 2019-09-03 09:37:35 2019-09-03 09:37:51 t 1 2 92474 430 0.00 2019-09-02 19:59:37 2019-09-02 20:00:09 t 1 1 92479 430 0.00 2019-09-02 20:02:21 2019-09-02 20:02:27 t 1 1 92482 436 0.00 2019-09-02 19:57:17 2019-09-02 20:06:51 t 1 1 188659 689 0.00 2019-12-07 04:27:16 2019-12-07 04:28:07 t 1 1 92490 375 0.00 2019-09-02 20:16:03 2019-09-02 20:21:08 t 1 1 92491 430 0.00 2019-09-02 20:09:41 2019-09-02 20:22:13 t 1 1 92493 430 0.00 2019-09-02 19:59:30 2019-09-02 20:23:03 t 1 1 92494 430 0.00 2019-09-02 20:23:45 2019-09-02 20:23:52 t 1 1 92496 212 0.00 2019-09-02 20:24:12 2019-09-02 20:24:35 t 1 2 92499 430 0.00 2019-09-02 20:24:26 2019-09-02 20:25:05 t 1 1 92501 430 0.00 2019-09-02 20:25:31 2019-09-02 20:25:37 t 1 1 92505 430 0.00 2019-09-02 20:26:22 2019-09-02 20:31:32 t 1 1 92507 436 0.00 2019-09-02 20:34:39 2019-09-02 20:34:57 t 1 1 92511 432 0.00 2019-09-02 20:37:17 2019-09-02 20:37:59 t 1 1 92512 432 0.00 2019-09-02 20:38:45 2019-09-02 20:38:59 t 1 1 92513 430 0.00 2019-09-02 20:39:33 2019-09-02 20:40:12 t 1 1 92516 220 0.00 2019-09-02 20:22:51 2019-09-02 20:45:34 t 1 1 92519 220 0.00 2019-09-02 20:45:34 2019-09-02 20:46:57 t 1 1 92521 375 0.00 2019-09-02 20:46:22 2019-09-02 20:47:40 t 1 1 92527 375 0.00 2019-09-02 20:47:42 2019-09-02 20:51:31 t 1 1 92534 346 0.00 2019-09-02 20:59:53 2019-09-02 21:14:59 t 1 2 92542 402 0.00 2019-09-02 20:46:09 2019-09-02 21:27:45 t 1 2 92544 346 0.00 2019-09-02 21:14:37 2019-09-02 21:34:42 t 1 2 92545 220 0.00 2019-09-02 21:26:13 2019-09-02 21:36:19 t 1 2 92546 432 0.00 2019-09-02 21:27:10 2019-09-02 21:37:49 t 1 1 92547 402 0.00 2019-09-02 21:36:31 2019-09-02 21:38:20 t 1 2 92548 432 0.00 2019-09-02 21:38:35 2019-09-02 21:38:45 t 1 1 92551 432 0.00 2019-09-02 21:39:44 2019-09-02 21:41:06 t 1 1 92558 400 0.00 2019-09-02 22:07:24 2019-09-02 22:17:29 t 1 2 92559 432 0.00 2019-09-02 21:59:25 2019-09-02 22:28:40 t 1 1 92560 333 0.00 2019-09-02 22:12:12 2019-09-02 22:28:55 t 1 2 92567 220 0.00 2019-09-02 22:45:59 2019-09-02 22:52:19 t 1 2 92568 385 0.00 2019-09-02 22:26:31 2019-09-02 22:54:54 t 1 2 92570 363 0.00 2019-09-02 21:58:54 2019-09-02 23:03:59 t 1 2 92572 402 0.00 2019-09-02 23:07:42 2019-09-02 23:11:12 t 1 2 92578 430 0.00 2019-09-02 23:13:19 2019-09-02 23:24:04 t 1 1 92587 212 0.00 2019-09-02 23:21:51 2019-09-03 00:01:56 t 1 2 92590 379 0.00 2019-09-02 15:51:14 2019-09-03 00:11:20 t 1 2 92592 398 0.00 2019-09-03 00:15:50 2019-09-03 00:16:54 t 1 2 92596 212 0.00 2019-09-03 00:33:37 2019-09-03 00:34:20 t 1 2 92598 212 0.00 2019-09-03 00:45:04 2019-09-03 00:46:08 t 1 2 92601 212 0.00 2019-09-03 01:23:22 2019-09-03 01:24:25 t 1 2 92605 212 0.00 2019-09-03 01:40:28 2019-09-03 01:41:07 t 1 2 92608 212 0.00 2019-09-03 02:26:29 2019-09-03 02:27:29 t 1 2 92617 343 0.00 2019-09-03 04:32:35 2019-09-03 04:33:31 t 1 2 92618 412 0.00 2019-09-02 22:11:15 2019-09-03 04:53:13 t 1 1 92630 220 0.00 2019-09-03 02:32:02 2019-09-03 06:17:42 t 1 1 92631 412 0.00 2019-09-03 06:17:12 2019-09-03 06:22:40 t 1 1 92632 220 0.00 2019-09-03 06:17:42 2019-09-03 06:26:02 t 1 1 92634 420 0.00 2019-09-03 06:23:14 2019-09-03 06:28:18 t 1 1 92635 412 0.00 2019-09-03 06:30:32 2019-09-03 06:33:24 t 1 1 92636 420 0.00 2019-09-03 06:28:18 2019-09-03 06:36:35 t 1 1 92648 346 0.00 2019-09-03 00:19:34 2019-09-03 07:33:48 t 1 2 92654 400 0.00 2019-09-03 07:45:03 2019-09-03 07:55:08 t 1 2 92659 212 0.00 2019-09-03 09:11:37 2019-09-03 09:13:44 t 1 2 92672 430 0.00 2019-09-03 10:04:19 2019-09-03 10:13:35 t 1 1 92673 412 0.00 2019-09-03 09:43:56 2019-09-03 10:13:54 t 1 1 92681 220 0.00 2019-09-03 10:34:56 2019-09-03 10:36:07 t 1 1 92684 432 0.00 2019-09-03 10:38:20 2019-09-03 10:38:40 t 1 1 92686 432 0.00 2019-09-02 20:48:52 2019-09-03 10:44:25 t 1 1 92687 355 0.00 2019-09-03 10:43:41 2019-09-03 10:48:46 t 1 2 92688 212 0.00 2019-09-03 10:50:20 2019-09-03 10:50:44 t 1 2 92702 367 0.00 2019-09-03 11:20:42 2019-09-03 11:21:50 t 1 2 92704 367 0.00 2019-09-03 11:15:45 2019-09-03 11:25:50 t 1 2 92705 346 0.00 2019-09-03 11:02:27 2019-09-03 11:33:41 t 1 2 92712 212 0.00 2019-09-03 11:56:54 2019-09-03 11:57:03 t 1 2 92714 346 0.00 2019-09-03 12:08:08 2019-09-03 12:09:15 t 1 2 92717 346 0.00 2019-09-03 10:57:38 2019-09-03 12:11:33 t 1 2 92719 430 0.00 2019-09-03 12:14:30 2019-09-03 12:15:50 t 1 1 92727 392 0.00 2019-09-03 12:22:33 2019-09-03 12:32:38 t 1 2 92730 392 0.00 2019-09-03 12:26:56 2019-09-03 12:47:02 t 1 2 92731 361 0.00 2019-09-03 11:38:48 2019-09-03 12:48:54 t 1 2 92732 296 0.00 2019-09-03 12:49:25 2019-09-03 12:52:48 t 1 2 92739 432 0.00 2019-09-03 13:21:12 2019-09-03 13:30:35 t 1 1 92743 411 0.00 2019-09-03 13:30:35 2019-09-03 13:41:38 t 1 1 92744 411 0.00 2019-09-03 13:41:38 2019-09-03 13:42:26 t 1 1 92745 349 0.00 2019-09-03 13:42:53 2019-09-03 13:43:59 t 1 2 92753 212 0.00 2019-09-03 13:59:08 2019-09-03 13:59:27 t 1 2 92754 296 0.00 2019-09-03 13:55:22 2019-09-03 14:00:45 t 1 2 92758 432 0.00 2019-09-03 13:57:25 2019-09-03 14:14:25 t 1 1 92761 432 0.00 2019-09-03 14:18:56 2019-09-03 14:19:34 t 1 1 92764 355 0.00 2019-09-03 14:00:54 2019-09-03 14:32:19 t 1 2 92768 430 0.00 2019-09-03 14:41:41 2019-09-03 14:42:27 t 1 1 92770 430 0.00 2019-09-03 14:43:26 2019-09-03 14:43:28 t 1 1 92772 212 0.00 2019-09-03 14:43:43 2019-09-03 14:47:11 t 1 2 92773 430 0.00 2019-09-03 14:44:06 2019-09-03 14:49:25 t 1 1 92777 400 0.00 2019-09-03 14:07:22 2019-09-03 14:57:27 t 1 2 92782 220 0.00 2019-09-03 15:20:23 2019-09-03 15:23:48 t 1 2 92785 432 0.00 2019-09-03 15:28:09 2019-09-03 15:28:29 t 1 1 92786 432 0.00 2019-09-03 15:30:51 2019-09-03 15:30:54 t 1 1 92787 432 0.00 2019-09-03 15:30:09 2019-09-03 15:31:25 t 1 1 92789 432 0.00 2019-09-03 15:31:10 2019-09-03 15:32:12 t 1 1 92793 432 0.00 2019-09-03 15:38:59 2019-09-03 15:54:19 t 1 1 92794 363 0.00 2019-09-03 15:03:34 2019-09-03 15:58:39 t 1 2 92798 361 0.00 2019-09-03 16:17:07 2019-09-03 16:21:53 t 1 2 92805 402 0.00 2019-09-03 16:40:46 2019-09-03 16:55:51 t 1 2 92808 294 0.00 2019-09-03 16:47:43 2019-09-03 17:04:06 t 1 2 92811 247 0.00 2019-09-03 17:08:52 2019-09-03 17:10:24 t 1 2 92813 411 0.00 2019-09-03 17:10:12 2019-09-03 17:20:17 t 1 1 92817 361 0.00 2019-09-03 16:26:31 2019-09-03 17:26:36 t 1 2 92820 379 0.00 2019-09-03 16:44:36 2019-09-03 17:39:42 t 1 2 92824 430 0.00 2019-09-03 17:29:36 2019-09-03 17:44:17 t 1 1 92829 220 0.00 2019-09-03 17:44:51 2019-09-03 17:48:18 t 1 1 92832 213 0.00 2019-09-03 17:56:00 2019-09-03 17:56:25 t 1 2 188661 689 0.00 2019-12-07 04:28:27 2019-12-07 04:29:07 t 1 1 92836 355 0.00 2019-09-03 17:34:36 2019-09-03 17:59:41 t 1 2 92838 220 0.00 2019-09-03 17:59:20 2019-09-03 18:00:49 t 1 1 92604 436 0.00 2019-09-03 01:31:47 2019-09-03 01:37:36 t 1 1 92606 363 0.00 2019-09-02 23:41:11 2019-09-03 01:54:27 t 1 2 92609 212 0.00 2019-09-03 02:28:46 2019-09-03 02:29:51 t 1 2 92610 363 0.00 2019-09-03 01:56:30 2019-09-03 02:31:36 t 1 2 92611 220 0.00 2019-09-03 02:20:11 2019-09-03 02:32:03 t 1 1 92612 322 0.00 2019-09-03 01:58:22 2019-09-03 02:38:25 t 1 2 92614 392 0.00 2019-09-03 03:27:37 2019-09-03 03:41:11 t 1 2 92620 412 0.00 2019-09-03 05:21:46 2019-09-03 05:31:50 t 1 1 92621 412 0.00 2019-09-03 05:33:05 2019-09-03 05:33:27 t 1 1 92625 430 0.00 2019-09-03 05:52:45 2019-09-03 06:02:05 t 1 1 92638 420 0.00 2019-09-03 06:36:35 2019-09-03 06:41:14 t 1 1 92640 220 0.00 2019-09-03 06:39:26 2019-09-03 06:54:05 t 1 1 92641 220 0.00 2019-09-03 06:54:05 2019-09-03 07:00:14 t 1 1 92642 346 0.00 2019-09-03 06:22:01 2019-09-03 07:11:12 t 1 2 92646 343 0.00 2019-09-03 04:33:38 2019-09-03 07:33:48 t 1 2 92649 346 0.00 2019-09-03 07:26:04 2019-09-03 07:33:48 t 1 2 92652 412 0.00 2019-09-03 07:36:03 2019-09-03 07:37:15 t 1 1 92653 220 0.00 2019-09-03 07:00:14 2019-09-03 07:54:40 t 1 1 92664 402 0.00 2019-09-03 08:20:42 2019-09-03 09:45:47 t 1 2 92665 220 0.00 2019-09-03 09:46:04 2019-09-03 09:47:57 t 1 1 92670 220 0.00 2019-09-03 09:48:16 2019-09-03 10:04:15 t 1 2 92674 430 0.00 2019-09-03 10:13:35 2019-09-03 10:17:34 t 1 1 92675 432 0.00 2019-09-03 10:04:07 2019-09-03 10:21:38 t 1 1 92677 432 0.00 2019-09-03 10:21:38 2019-09-03 10:31:30 t 1 1 92678 432 0.00 2019-09-03 10:31:30 2019-09-03 10:33:02 t 1 1 92685 357 0.00 2019-09-03 10:40:01 2019-09-03 10:40:10 t 1 2 92689 357 0.00 2019-09-03 10:40:46 2019-09-03 10:50:51 t 1 2 92691 333 0.00 2019-09-03 10:46:56 2019-09-03 11:00:37 t 1 2 92694 346 0.00 2019-09-03 11:10:20 2019-09-03 11:11:25 t 1 2 92696 432 0.00 2019-09-03 11:00:34 2019-09-03 11:15:54 t 1 1 92697 411 0.00 2019-09-03 11:15:54 2019-09-03 11:16:47 t 1 1 92703 212 0.00 2019-09-03 11:23:37 2019-09-03 11:23:57 t 1 2 92706 346 0.00 2019-09-03 11:32:44 2019-09-03 11:33:48 t 1 2 92708 355 0.00 2019-09-03 11:12:41 2019-09-03 11:37:46 t 1 2 92711 220 0.00 2019-09-03 11:39:57 2019-09-03 11:50:18 t 1 2 92713 212 0.00 2019-09-03 11:57:21 2019-09-03 11:58:02 t 1 2 92715 400 0.00 2019-09-03 11:54:35 2019-09-03 12:09:40 t 1 2 92718 430 0.00 2019-09-03 12:08:28 2019-09-03 12:13:46 t 1 1 92720 430 0.00 2019-09-03 12:16:22 2019-09-03 12:16:35 t 1 1 92721 430 0.00 2019-09-03 12:18:16 2019-09-03 12:18:59 t 1 1 92723 292 0.00 2019-09-03 12:20:32 2019-09-03 12:20:54 t 1 2 92724 346 0.00 2019-09-03 12:20:06 2019-09-03 12:21:03 t 1 2 92726 212 0.00 2019-09-03 12:21:20 2019-09-03 12:21:39 t 1 2 92728 220 0.00 2019-09-03 12:21:02 2019-09-03 12:34:07 t 1 2 92733 400 0.00 2019-09-03 12:24:12 2019-09-03 12:54:17 t 1 2 92734 361 0.00 2019-09-03 12:42:29 2019-09-03 13:12:31 t 1 2 92735 247 0.00 2019-09-03 13:12:18 2019-09-03 13:13:13 t 1 2 92737 357 0.00 2019-09-03 11:22:38 2019-09-03 13:17:43 t 1 2 92741 212 0.00 2019-09-03 13:38:16 2019-09-03 13:38:42 t 1 2 92746 402 0.00 2019-09-03 13:13:20 2019-09-03 13:44:22 t 1 2 92747 412 0.00 2019-09-03 12:04:37 2019-09-03 13:52:22 t 1 1 92748 432 0.00 2019-09-03 13:42:26 2019-09-03 13:53:10 t 1 1 92751 432 0.00 2019-09-03 13:55:52 2019-09-03 13:56:05 t 1 1 92752 432 0.00 2019-09-03 13:56:58 2019-09-03 13:57:07 t 1 1 92755 247 0.00 2019-09-03 13:58:24 2019-09-03 14:03:33 t 1 2 92756 351 0.00 2019-09-03 13:59:00 2019-09-03 14:04:55 t 1 2 92757 361 0.00 2019-09-03 13:33:28 2019-09-03 14:13:33 t 1 2 92759 402 0.00 2019-09-03 13:45:05 2019-09-03 14:16:17 t 1 2 92760 432 0.00 2019-09-03 14:14:25 2019-09-03 14:17:33 t 1 1 92762 432 0.00 2019-09-03 14:21:20 2019-09-03 14:21:30 t 1 1 92763 220 0.00 2019-09-03 14:02:27 2019-09-03 14:28:36 t 1 1 92765 430 0.00 2019-09-03 14:00:04 2019-09-03 14:39:07 t 1 1 92769 430 0.00 2019-09-03 14:42:46 2019-09-03 14:42:54 t 1 1 92774 432 0.00 2019-09-03 14:48:29 2019-09-03 14:53:15 t 1 1 92775 220 0.00 2019-09-03 14:52:32 2019-09-03 14:54:55 t 1 2 92776 412 0.00 2019-09-03 14:49:24 2019-09-03 14:56:33 t 1 1 92779 212 0.00 2019-09-03 15:18:08 2019-09-03 15:18:36 t 1 2 92780 432 0.00 2019-09-03 14:55:22 2019-09-03 15:22:45 t 1 1 92788 288 0.00 2019-09-03 15:30:35 2019-09-03 15:31:41 t 1 2 92791 436 0.00 2019-09-03 15:35:33 2019-09-03 15:40:12 t 1 1 92792 402 0.00 2019-09-03 14:16:33 2019-09-03 15:41:38 t 1 2 92800 361 0.00 2019-09-03 16:25:35 2019-09-03 16:26:27 t 1 2 92803 400 0.00 2019-09-03 16:39:21 2019-09-03 16:49:26 t 1 2 92804 346 0.00 2019-09-03 13:09:48 2019-09-03 16:50:45 t 1 2 92809 432 0.00 2019-09-03 16:54:49 2019-09-03 17:07:57 t 1 1 92819 355 0.00 2019-09-03 16:55:53 2019-09-03 17:35:59 t 1 2 92821 385 0.00 2019-09-03 17:07:35 2019-09-03 17:42:02 t 1 2 92822 212 0.00 2019-09-03 17:43:10 2019-09-03 17:43:56 t 1 2 92827 220 0.00 2019-09-03 17:45:46 2019-09-03 17:46:27 t 1 2 92830 349 0.00 2019-09-03 17:47:18 2019-09-03 17:48:22 t 1 2 92831 430 0.00 2019-09-03 17:44:40 2019-09-03 17:49:04 t 1 1 92833 346 0.00 2019-09-03 17:48:16 2019-09-03 17:58:21 t 1 2 92835 220 0.00 2019-09-03 17:48:54 2019-09-03 17:59:18 t 1 1 92843 430 0.00 2019-09-03 18:07:32 2019-09-03 18:07:38 t 1 1 92845 430 0.00 2019-09-03 18:07:44 2019-09-03 18:08:12 t 1 1 92850 294 0.00 2019-09-03 17:09:27 2019-09-03 18:09:50 t 1 2 92857 430 0.00 2019-09-03 18:12:56 2019-09-03 18:16:56 t 1 1 92858 402 0.00 2019-09-03 17:01:28 2019-09-03 18:17:59 t 1 2 92860 213 0.00 2019-09-03 18:17:07 2019-09-03 18:18:09 t 1 2 92862 212 0.00 2019-09-03 18:19:20 2019-09-03 18:19:59 t 1 2 92867 392 0.00 2019-09-03 18:01:37 2019-09-03 18:23:10 t 1 2 92869 402 0.00 2019-09-03 18:23:45 2019-09-03 18:23:52 t 1 2 92871 385 0.00 2019-09-03 17:45:17 2019-09-03 18:24:03 t 1 2 92877 432 0.00 2019-09-03 18:13:03 2019-09-03 18:28:55 t 1 1 92879 430 0.00 2019-09-03 18:30:10 2019-09-03 18:30:16 t 1 1 92880 432 0.00 2019-09-03 18:29:45 2019-09-03 18:30:42 t 1 1 92882 213 0.00 2019-09-03 18:30:26 2019-09-03 18:31:28 t 1 2 92887 430 0.00 2019-09-03 18:33:58 2019-09-03 18:34:11 t 1 1 92889 432 0.00 2019-09-03 18:34:10 2019-09-03 18:35:11 t 1 1 92891 430 0.00 2019-09-03 18:36:05 2019-09-03 18:36:23 t 1 1 92901 357 0.00 2019-09-03 18:40:32 2019-09-03 18:40:41 t 1 2 92905 430 0.00 2019-09-03 18:41:38 2019-09-03 18:41:44 t 1 1 92906 432 0.00 2019-09-03 18:41:07 2019-09-03 18:42:08 t 1 1 92908 361 0.00 2019-09-03 17:27:21 2019-09-03 18:42:27 t 1 2 92909 430 0.00 2019-09-03 18:42:57 2019-09-03 18:42:59 t 1 1 92913 430 0.00 2019-09-03 18:45:29 2019-09-03 18:45:36 t 1 1 92914 430 0.00 2019-09-03 18:46:03 2019-09-03 18:46:05 t 1 1 92662 220 0.00 2019-09-03 09:24:31 2019-09-03 09:38:29 t 1 1 92663 412 0.00 2019-09-03 07:37:33 2019-09-03 09:43:57 t 1 1 92666 346 0.00 2019-09-03 09:17:59 2019-09-03 09:53:04 t 1 2 92667 220 0.00 2019-09-03 09:48:00 2019-09-03 09:55:21 t 1 1 92668 212 0.00 2019-09-03 09:56:06 2019-09-03 09:56:20 t 1 2 92669 432 0.00 2019-09-03 08:47:31 2019-09-03 10:04:07 t 1 1 92671 430 0.00 2019-09-03 09:51:23 2019-09-03 10:04:18 t 1 1 188662 689 0.00 2019-12-07 04:29:23 2019-12-07 04:29:48 t 1 1 92679 220 0.00 2019-09-03 10:32:25 2019-09-03 10:33:28 t 1 1 92680 432 0.00 2019-09-03 10:34:40 2019-09-03 10:34:49 t 1 1 92682 432 0.00 2019-09-03 10:36:07 2019-09-03 10:36:12 t 1 1 92683 432 0.00 2019-09-03 10:37:07 2019-09-03 10:37:16 t 1 1 92690 327 0.00 2019-09-03 09:59:44 2019-09-03 11:00:08 t 1 2 92692 220 0.00 2019-09-03 10:57:33 2019-09-03 11:02:38 t 1 1 92693 288 0.00 2019-09-03 11:08:45 2019-09-03 11:09:52 t 1 2 92695 212 0.00 2019-09-03 11:11:02 2019-09-03 11:11:49 t 1 2 92698 346 0.00 2019-09-03 11:16:48 2019-09-03 11:17:47 t 1 2 92699 367 0.00 2019-09-03 11:16:55 2019-09-03 11:18:02 t 1 2 92700 346 0.00 2019-09-03 11:18:12 2019-09-03 11:19:15 t 1 2 92701 367 0.00 2019-09-03 11:19:16 2019-09-03 11:20:20 t 1 2 92707 346 0.00 2019-09-03 11:21:14 2019-09-03 11:36:19 t 1 2 92709 346 0.00 2019-09-03 10:57:43 2019-09-03 11:37:48 t 1 2 92710 220 0.00 2019-09-03 11:04:20 2019-09-03 11:44:21 t 1 1 92716 346 0.00 2019-09-03 12:10:02 2019-09-03 12:11:03 t 1 2 92722 346 0.00 2019-09-03 12:14:17 2019-09-03 12:19:29 t 1 2 92725 430 0.00 2019-09-03 12:19:43 2019-09-03 12:21:10 t 1 1 92729 398 0.00 2019-09-03 12:43:05 2019-09-03 12:44:11 t 1 2 92736 212 0.00 2019-09-03 13:16:15 2019-09-03 13:16:35 t 1 2 92738 392 0.00 2019-09-03 13:19:18 2019-09-03 13:30:00 t 1 2 92740 212 0.00 2019-09-03 13:37:47 2019-09-03 13:37:56 t 1 2 92742 361 0.00 2019-09-03 13:15:59 2019-09-03 13:41:04 t 1 2 92749 412 0.00 2019-09-03 13:52:22 2019-09-03 13:53:48 t 1 1 92750 432 0.00 2019-09-03 13:53:48 2019-09-03 13:54:20 t 1 1 92766 430 0.00 2019-09-03 14:40:06 2019-09-03 14:41:20 t 1 1 92767 432 0.00 2019-09-03 14:23:54 2019-09-03 14:42:16 t 1 1 92771 430 0.00 2019-09-03 14:43:34 2019-09-03 14:43:41 t 1 1 92778 395 0.00 2019-09-03 14:27:25 2019-09-03 15:00:49 t 1 2 92781 432 0.00 2019-09-03 15:23:17 2019-09-03 15:23:23 t 1 1 92783 432 0.00 2019-09-03 15:25:49 2019-09-03 15:26:04 t 1 1 92784 432 0.00 2019-09-03 15:26:30 2019-09-03 15:27:45 t 1 1 92790 432 0.00 2019-09-03 15:35:44 2019-09-03 15:36:16 t 1 1 92795 392 0.00 2019-09-03 15:41:03 2019-09-03 16:02:04 t 1 2 92796 434 0.00 2019-09-03 16:03:36 2019-09-03 16:04:59 t 1 2 92797 294 0.00 2019-09-03 15:11:48 2019-09-03 16:12:12 t 1 2 92799 412 0.00 2019-09-03 15:37:34 2019-09-03 16:22:25 t 1 1 92801 346 0.00 2019-09-03 16:43:18 2019-09-03 16:44:14 t 1 2 188664 639 0.00 2019-12-07 04:29:04 2019-12-07 04:31:22 t 1 1 92806 212 0.00 2019-09-03 16:58:30 2019-09-03 16:59:26 t 1 2 92807 402 0.00 2019-09-03 16:50:05 2019-09-03 17:00:10 t 1 2 92810 385 0.00 2019-09-03 16:46:43 2019-09-03 17:08:14 t 1 2 92812 441 0.00 2019-09-03 17:15:29 2019-09-03 17:20:14 t 1 1 92814 212 0.00 2019-09-03 16:59:40 2019-09-03 17:22:17 t 1 2 92815 441 0.00 2019-09-03 17:20:25 2019-09-03 17:22:59 t 1 1 92816 441 0.00 2019-09-03 17:23:17 2019-09-03 17:23:55 t 1 1 92818 411 0.00 2019-09-03 17:20:23 2019-09-03 17:30:32 t 1 1 92823 220 0.00 2019-09-03 17:08:51 2019-09-03 17:43:59 t 1 2 92825 220 0.00 2019-09-03 17:42:10 2019-09-03 17:44:17 t 1 1 92826 220 0.00 2019-09-03 17:44:17 2019-09-03 17:44:51 t 1 1 92828 346 0.00 2019-09-03 17:47:35 2019-09-03 17:47:39 t 1 2 92837 430 0.00 2019-09-03 17:49:16 2019-09-03 18:00:17 t 1 1 92839 430 0.00 2019-09-03 18:01:23 2019-09-03 18:03:11 t 1 1 92844 212 0.00 2019-09-03 18:07:21 2019-09-03 18:07:39 t 1 2 92847 411 0.00 2019-09-03 18:08:35 2019-09-03 18:08:42 t 1 1 92848 430 0.00 2019-09-03 18:08:17 2019-09-03 18:09:18 t 1 1 92852 430 0.00 2019-09-03 18:10:12 2019-09-03 18:10:35 t 1 1 92853 430 0.00 2019-09-03 18:11:19 2019-09-03 18:11:25 t 1 1 92854 430 0.00 2019-09-03 18:11:31 2019-09-03 18:12:31 t 1 1 92856 220 0.00 2019-09-03 18:01:43 2019-09-03 18:15:58 t 1 1 92859 430 0.00 2019-09-03 18:17:02 2019-09-03 18:18:02 t 1 1 92861 213 0.00 2019-09-03 18:18:43 2019-09-03 18:19:45 t 1 2 92863 213 0.00 2019-09-03 18:20:29 2019-09-03 18:21:36 t 1 2 92864 430 0.00 2019-09-03 18:21:26 2019-09-03 18:22:31 t 1 1 92865 430 0.00 2019-09-03 18:18:08 2019-09-03 18:22:54 t 1 1 92872 220 0.00 2019-09-03 18:17:19 2019-09-03 18:24:23 t 1 1 92873 430 0.00 2019-09-03 18:24:32 2019-09-03 18:24:40 t 1 1 92881 432 0.00 2019-09-03 18:30:42 2019-09-03 18:30:44 t 1 1 92883 432 0.00 2019-09-03 18:32:46 2019-09-03 18:32:48 t 1 1 92884 331 0.00 2019-09-03 18:23:34 2019-09-03 18:33:17 t 1 2 92886 430 0.00 2019-09-03 18:33:29 2019-09-03 18:33:31 t 1 1 92892 213 0.00 2019-09-03 18:35:31 2019-09-03 18:36:34 t 1 2 92894 432 0.00 2019-09-03 18:37:49 2019-09-03 18:37:52 t 1 1 92895 213 0.00 2019-09-03 18:36:54 2019-09-03 18:37:58 t 1 2 92897 357 0.00 2019-09-03 18:39:34 2019-09-03 18:39:43 t 1 2 92900 220 0.00 2019-09-03 18:38:19 2019-09-03 18:40:10 t 1 1 92902 402 0.00 2019-09-03 18:24:23 2019-09-03 18:41:00 t 1 2 92904 213 0.00 2019-09-03 18:40:09 2019-09-03 18:41:14 t 1 2 92910 213 0.00 2019-09-03 18:42:29 2019-09-03 18:43:33 t 1 2 92912 441 0.00 2019-09-03 18:44:39 2019-09-03 18:45:14 t 1 1 92918 430 0.00 2019-09-03 18:49:35 2019-09-03 18:49:52 t 1 1 92924 432 0.00 2019-09-03 18:53:38 2019-09-03 18:53:47 t 1 1 92925 430 0.00 2019-09-03 18:54:51 2019-09-03 18:54:52 t 1 1 92932 432 0.00 2019-09-03 19:04:47 2019-09-03 19:05:29 t 1 1 92934 213 0.00 2019-09-03 19:04:37 2019-09-03 19:06:10 t 1 1 92936 349 0.00 2019-09-03 19:08:48 2019-09-03 19:09:53 t 1 2 92937 331 0.00 2019-09-03 19:09:47 2019-09-03 19:10:54 t 1 2 92938 213 0.00 2019-09-03 19:10:38 2019-09-03 19:13:42 t 1 1 92940 412 0.00 2019-09-03 18:43:58 2019-09-03 19:16:51 t 1 1 92941 412 0.00 2019-09-03 19:17:18 2019-09-03 19:18:48 t 1 1 92942 432 0.00 2019-09-03 19:19:24 2019-09-03 19:19:51 t 1 1 92946 402 0.00 2019-09-03 18:42:02 2019-09-03 19:27:07 t 1 2 92947 432 0.00 2019-09-03 19:31:29 2019-09-03 19:32:15 t 1 1 92948 400 0.00 2019-09-03 19:18:10 2019-09-03 19:33:15 t 1 2 92950 213 0.00 2019-09-03 19:31:09 2019-09-03 19:36:46 t 1 1 92952 220 0.00 2019-09-03 19:42:45 2019-09-03 19:43:45 t 1 1 92953 432 0.00 2019-09-03 19:34:46 2019-09-03 19:44:51 t 1 1 92960 220 0.00 2019-09-03 19:50:40 2019-09-03 19:51:33 t 1 1 92965 346 0.00 2019-09-03 19:51:10 2019-09-03 20:04:57 t 1 2 92840 430 0.00 2019-09-03 18:02:53 2019-09-03 18:03:17 t 1 1 92841 327 0.00 2019-09-03 17:34:15 2019-09-03 18:05:33 t 1 2 92842 430 0.00 2019-09-03 18:06:06 2019-09-03 18:06:13 t 1 1 92846 441 0.00 2019-09-03 17:30:32 2019-09-03 18:08:29 t 1 1 92849 441 0.00 2019-09-03 18:08:42 2019-09-03 18:09:46 t 1 1 92851 416 0.00 2019-09-03 18:07:49 2019-09-03 18:10:12 t 1 1 92855 400 0.00 2019-09-03 18:02:30 2019-09-03 18:12:36 t 1 2 92866 213 0.00 2019-09-03 18:22:03 2019-09-03 18:23:07 t 1 2 92868 430 0.00 2019-09-03 18:23:23 2019-09-03 18:23:29 t 1 1 92870 430 0.00 2019-09-03 18:23:48 2019-09-03 18:24:01 t 1 1 92874 213 0.00 2019-09-03 18:24:42 2019-09-03 18:25:48 t 1 2 92875 430 0.00 2019-09-03 18:26:22 2019-09-03 18:26:35 t 1 1 92876 430 0.00 2019-09-03 18:27:38 2019-09-03 18:27:45 t 1 1 92878 220 0.00 2019-09-03 18:25:45 2019-09-03 18:29:42 t 1 1 92885 213 0.00 2019-09-03 18:32:22 2019-09-03 18:33:25 t 1 2 92888 213 0.00 2019-09-03 18:33:54 2019-09-03 18:35:00 t 1 2 92890 432 0.00 2019-09-03 18:36:03 2019-09-03 18:36:11 t 1 1 92893 430 0.00 2019-09-03 18:37:28 2019-09-03 18:37:30 t 1 1 92896 220 0.00 2019-09-03 18:29:42 2019-09-03 18:39:15 t 1 1 92898 213 0.00 2019-09-03 18:38:43 2019-09-03 18:39:46 t 1 2 92899 432 0.00 2019-09-03 18:39:58 2019-09-03 18:40:06 t 1 1 92903 430 0.00 2019-09-03 18:40:56 2019-09-03 18:41:02 t 1 1 92907 432 0.00 2019-09-03 18:42:19 2019-09-03 18:42:21 t 1 1 92911 220 0.00 2019-09-03 18:42:31 2019-09-03 18:43:38 t 1 1 92915 430 0.00 2019-09-03 18:46:45 2019-09-03 18:46:51 t 1 1 92916 430 0.00 2019-09-03 18:46:56 2019-09-03 18:47:12 t 1 1 92917 432 0.00 2019-09-03 18:48:43 2019-09-03 18:49:14 t 1 1 92919 355 0.00 2019-09-03 18:01:16 2019-09-03 18:50:49 t 1 2 92921 432 0.00 2019-09-03 18:50:09 2019-09-03 18:51:10 t 1 1 92923 432 0.00 2019-09-03 18:52:48 2019-09-03 18:52:55 t 1 1 92927 213 0.00 2019-09-03 18:58:42 2019-09-03 18:59:16 t 1 1 92933 392 0.00 2019-09-03 18:58:19 2019-09-03 19:05:33 t 1 2 92943 432 0.00 2019-09-03 19:20:58 2019-09-03 19:21:35 t 1 1 92945 432 0.00 2019-09-03 19:26:25 2019-09-03 19:26:29 t 1 1 92949 363 0.00 2019-09-03 16:23:42 2019-09-03 19:33:48 t 1 2 92955 213 0.00 2019-09-03 19:46:21 2019-09-03 19:47:25 t 1 1 92956 220 0.00 2019-09-03 19:43:49 2019-09-03 19:48:12 t 1 1 92957 220 0.00 2019-09-03 19:48:15 2019-09-03 19:49:31 t 1 1 188665 689 0.00 2019-12-07 04:33:50 2019-12-07 04:34:22 t 1 1 92961 395 0.00 2019-09-03 19:53:19 2019-09-03 19:54:22 t 1 2 92963 220 0.00 2019-09-03 19:57:35 2019-09-03 19:59:34 t 1 1 92964 220 0.00 2019-09-03 19:59:44 2019-09-03 20:04:47 t 1 1 92967 220 0.00 2019-09-03 20:12:55 2019-09-03 20:16:20 t 1 1 92970 213 0.00 2019-09-03 20:30:33 2019-09-03 20:32:00 t 1 1 92973 220 0.00 2019-09-03 20:30:18 2019-09-03 20:37:32 t 1 1 92974 213 0.00 2019-09-03 20:33:46 2019-09-03 20:38:27 t 1 1 92980 432 0.00 2019-09-03 20:56:11 2019-09-03 20:57:48 t 1 1 92981 436 0.00 2019-09-03 20:55:25 2019-09-03 20:58:22 t 1 1 92982 432 0.00 2019-09-03 20:58:45 2019-09-03 20:58:47 t 1 1 92985 220 0.00 2019-09-03 20:58:33 2019-09-03 21:00:35 t 1 1 92987 220 0.00 2019-09-03 21:01:53 2019-09-03 21:02:44 t 1 1 92998 331 0.00 2019-09-03 21:18:43 2019-09-03 21:19:45 t 1 2 92999 220 0.00 2019-09-03 21:19:21 2019-09-03 21:19:56 t 1 1 93003 220 0.00 2019-09-03 21:21:04 2019-09-03 21:21:38 t 1 1 93010 220 0.00 2019-09-03 21:23:51 2019-09-03 21:24:26 t 1 1 93011 220 0.00 2019-09-03 21:24:26 2019-09-03 21:24:59 t 1 1 93015 247 0.00 2019-09-03 21:15:40 2019-09-03 21:26:27 t 1 2 93017 331 0.00 2019-09-03 21:25:43 2019-09-03 21:26:46 t 1 2 93018 220 0.00 2019-09-03 21:26:40 2019-09-03 21:27:13 t 1 1 93020 220 0.00 2019-09-03 21:27:48 2019-09-03 21:28:23 t 1 1 93026 213 0.00 2019-09-03 21:28:39 2019-09-03 21:31:08 t 1 1 93028 400 0.00 2019-09-03 21:06:26 2019-09-03 21:31:31 t 1 2 93029 220 0.00 2019-09-03 21:31:16 2019-09-03 21:32:14 t 1 1 93031 432 0.00 2019-09-03 21:34:12 2019-09-03 21:35:00 t 1 1 93035 432 0.00 2019-09-03 21:49:45 2019-09-03 21:50:28 t 1 1 93046 412 0.00 2019-09-03 20:43:27 2019-09-03 22:14:45 t 1 1 93047 212 0.00 2019-09-03 22:17:31 2019-09-03 22:18:23 t 1 2 93056 432 0.00 2019-09-03 22:18:43 2019-09-03 22:37:40 t 1 1 93060 220 0.00 2019-09-03 21:58:31 2019-09-03 22:48:53 t 1 1 93061 361 0.00 2019-09-03 21:22:18 2019-09-03 22:51:08 t 1 2 93062 436 0.00 2019-09-03 22:53:03 2019-09-03 22:53:27 t 1 1 93065 400 0.00 2019-09-03 22:50:54 2019-09-03 23:00:59 t 1 2 93067 220 0.00 2019-09-03 23:00:18 2019-09-03 23:01:27 t 1 1 93068 220 0.00 2019-09-03 23:01:27 2019-09-03 23:02:03 t 1 1 93070 220 0.00 2019-09-03 23:03:30 2019-09-03 23:04:05 t 1 1 93071 220 0.00 2019-09-03 23:04:04 2019-09-03 23:05:25 t 1 1 93072 220 0.00 2019-09-03 23:05:25 2019-09-03 23:06:00 t 1 1 93075 400 0.00 2019-09-03 23:04:03 2019-09-03 23:07:35 t 1 2 93077 220 0.00 2019-09-03 23:07:57 2019-09-03 23:08:29 t 1 1 93078 213 0.00 2019-09-03 22:51:38 2019-09-03 23:12:54 t 1 1 93080 220 0.00 2019-09-03 23:14:52 2019-09-03 23:15:29 t 1 1 93082 220 0.00 2019-09-03 23:16:11 2019-09-03 23:16:44 t 1 1 93083 220 0.00 2019-09-03 23:16:43 2019-09-03 23:17:17 t 1 1 93085 220 0.00 2019-09-03 23:17:49 2019-09-03 23:18:29 t 1 1 93086 220 0.00 2019-09-03 23:18:28 2019-09-03 23:19:01 t 1 1 93091 220 0.00 2019-09-03 23:20:12 2019-09-03 23:20:51 t 1 1 93095 213 0.00 2019-09-03 23:21:17 2019-09-03 23:23:23 t 1 1 93096 385 0.00 2019-09-03 22:45:10 2019-09-03 23:24:33 t 1 2 93100 220 0.00 2019-09-03 23:26:24 2019-09-03 23:31:17 t 1 1 93102 220 0.00 2019-09-03 23:31:51 2019-09-03 23:33:55 t 1 1 93110 220 0.00 2019-09-03 23:39:03 2019-09-03 23:39:40 t 1 1 93111 220 0.00 2019-09-03 23:39:39 2019-09-03 23:40:15 t 1 1 93116 220 0.00 2019-09-03 23:42:40 2019-09-03 23:43:16 t 1 1 93120 432 0.00 2019-09-03 23:54:59 2019-09-04 00:01:32 t 1 1 93121 432 0.00 2019-09-04 00:01:32 2019-09-04 00:06:59 t 1 1 93122 402 0.00 2019-09-03 22:49:56 2019-09-04 00:10:01 t 1 2 93124 212 0.00 2019-09-03 23:42:14 2019-09-04 00:17:20 t 1 2 93126 212 0.00 2019-09-04 00:27:35 2019-09-04 00:28:16 t 1 2 93128 346 0.00 2019-09-04 00:15:27 2019-09-04 00:35:32 t 1 2 93130 343 0.00 2019-09-04 00:39:50 2019-09-04 00:39:50 f 1 2 93133 212 0.00 2019-09-04 01:12:53 2019-09-04 01:13:11 t 1 2 93136 212 0.00 2019-09-04 01:35:40 2019-09-04 01:35:57 t 1 2 93137 400 0.00 2019-09-04 01:37:13 2019-09-04 01:47:18 t 1 2 93141 392 0.00 2019-09-04 01:27:43 2019-09-04 02:19:25 t 1 2 93145 372 0.00 2019-09-04 02:38:54 2019-09-04 02:58:59 t 1 2 93150 220 0.00 2019-09-04 04:58:04 2019-09-04 05:05:05 t 1 1 93154 430 0.00 2019-09-04 05:10:33 2019-09-04 05:16:02 t 1 1 92920 331 0.00 2019-09-03 18:40:47 2019-09-03 18:50:52 t 1 2 92922 213 0.00 2019-09-03 18:50:21 2019-09-03 18:51:47 t 1 1 92926 432 0.00 2019-09-03 18:58:55 2019-09-03 18:59:15 t 1 1 92928 213 0.00 2019-09-03 18:59:15 2019-09-03 18:59:34 t 1 1 92929 430 0.00 2019-09-03 18:59:48 2019-09-03 18:59:54 t 1 1 92930 430 0.00 2019-09-03 19:00:56 2019-09-03 19:01:27 t 1 1 92931 430 0.00 2019-09-03 19:02:49 2019-09-03 19:03:56 t 1 1 92935 213 0.00 2019-09-03 19:06:25 2019-09-03 19:07:57 t 1 1 92939 432 0.00 2019-09-03 19:15:38 2019-09-03 19:16:40 t 1 1 92944 432 0.00 2019-09-03 19:25:58 2019-09-03 19:26:25 t 1 1 92951 220 0.00 2019-09-03 18:55:17 2019-09-03 19:42:42 t 1 1 92954 213 0.00 2019-09-03 19:46:05 2019-09-03 19:46:22 t 1 1 92959 220 0.00 2019-09-03 19:49:35 2019-09-03 19:50:38 t 1 1 92962 220 0.00 2019-09-03 19:51:36 2019-09-03 19:57:32 t 1 1 92968 220 0.00 2019-09-03 20:25:25 2019-09-03 20:29:10 t 1 1 92969 411 0.00 2019-09-03 19:21:52 2019-09-03 20:32:00 t 1 1 92971 213 0.00 2019-09-03 20:32:00 2019-09-03 20:33:46 t 1 1 92972 424 0.00 2019-09-03 18:48:04 2019-09-03 20:35:28 t 1 2 92978 432 0.00 2019-09-03 20:03:26 2019-09-03 20:55:48 t 1 1 92988 432 0.00 2019-09-03 21:05:36 2019-09-03 21:05:50 t 1 1 92989 392 0.00 2019-09-03 20:46:45 2019-09-03 21:07:58 t 1 2 92991 432 0.00 2019-09-03 21:11:04 2019-09-03 21:11:35 t 1 1 92992 400 0.00 2019-09-03 21:02:09 2019-09-03 21:12:14 t 1 2 92993 212 0.00 2019-09-03 21:11:55 2019-09-03 21:12:59 t 1 2 93001 432 0.00 2019-09-03 21:16:51 2019-09-03 21:20:55 t 1 1 93002 220 0.00 2019-09-03 21:20:30 2019-09-03 21:21:05 t 1 1 93005 220 0.00 2019-09-03 21:21:37 2019-09-03 21:22:11 t 1 1 93006 220 0.00 2019-09-03 21:22:11 2019-09-03 21:22:42 t 1 1 93009 331 0.00 2019-09-03 21:23:18 2019-09-03 21:24:23 t 1 2 93013 220 0.00 2019-09-03 21:25:35 2019-09-03 21:26:08 t 1 1 93021 220 0.00 2019-09-03 21:28:23 2019-09-03 21:28:57 t 1 1 93022 220 0.00 2019-09-03 21:28:57 2019-09-03 21:29:32 t 1 1 93023 220 0.00 2019-09-03 21:29:32 2019-09-03 21:30:06 t 1 1 93025 220 0.00 2019-09-03 21:30:06 2019-09-03 21:30:41 t 1 1 93032 331 0.00 2019-09-03 21:38:46 2019-09-03 21:39:50 t 1 2 93037 212 0.00 2019-09-03 21:51:11 2019-09-03 21:51:31 t 1 2 93040 220 0.00 2019-09-03 21:32:48 2019-09-03 21:58:32 t 1 1 93045 432 0.00 2019-09-03 22:04:07 2019-09-03 22:12:49 t 1 1 93048 392 0.00 2019-09-03 21:48:55 2019-09-03 22:18:35 t 1 2 93053 411 0.00 2019-09-03 22:22:37 2019-09-03 22:31:09 t 1 1 93058 346 0.00 2019-09-03 22:34:36 2019-09-03 22:44:42 t 1 2 93059 296 0.00 2019-09-03 22:44:19 2019-09-03 22:45:39 t 1 2 93063 247 0.00 2019-09-03 22:58:54 2019-09-03 22:59:45 t 1 2 93064 220 0.00 2019-09-03 22:56:57 2019-09-03 23:00:19 t 1 1 93066 379 0.00 2019-09-03 22:33:11 2019-09-03 23:01:11 t 1 2 93076 220 0.00 2019-09-03 23:07:18 2019-09-03 23:07:58 t 1 1 93079 220 0.00 2019-09-03 23:08:29 2019-09-03 23:14:57 t 1 1 93081 220 0.00 2019-09-03 23:15:28 2019-09-03 23:16:12 t 1 1 93087 212 0.00 2019-09-03 23:16:11 2019-09-03 23:19:19 t 1 2 93089 220 0.00 2019-09-03 23:19:01 2019-09-03 23:19:41 t 1 1 93090 220 0.00 2019-09-03 23:19:41 2019-09-03 23:20:12 t 1 1 93092 220 0.00 2019-09-03 23:20:50 2019-09-03 23:21:25 t 1 1 93093 220 0.00 2019-09-03 23:21:25 2019-09-03 23:22:36 t 1 1 93098 220 0.00 2019-09-03 23:23:11 2019-09-03 23:25:50 t 1 1 93099 220 0.00 2019-09-03 23:25:49 2019-09-03 23:26:24 t 1 1 93103 212 0.00 2019-09-03 23:33:35 2019-09-03 23:34:18 t 1 2 93108 220 0.00 2019-09-03 23:36:01 2019-09-03 23:38:29 t 1 1 93109 220 0.00 2019-09-03 23:38:28 2019-09-03 23:39:03 t 1 1 93118 220 0.00 2019-09-03 23:43:49 2019-09-03 23:53:29 t 1 1 93119 432 0.00 2019-09-03 23:34:19 2019-09-03 23:54:59 t 1 1 93129 343 0.00 2019-09-04 00:39:33 2019-09-04 00:39:33 f 1 2 93131 392 0.00 2019-09-04 00:30:38 2019-09-04 00:57:47 t 1 2 93134 412 0.00 2019-09-03 22:14:45 2019-09-04 01:24:56 t 1 1 93138 363 0.00 2019-09-03 23:52:23 2019-09-04 01:52:29 t 1 2 93144 324 0.00 2019-09-04 02:51:37 2019-09-04 02:51:37 f 1 2 93146 346 0.00 2019-09-04 01:27:16 2019-09-04 03:12:22 t 1 2 93147 434 0.00 2019-09-04 02:23:00 2019-09-04 03:23:20 t 1 2 93148 343 0.00 2019-09-04 03:27:42 2019-09-04 03:27:42 f 1 2 93151 220 0.00 2019-09-04 05:05:10 2019-09-04 05:06:33 t 1 1 93153 430 0.00 2019-09-04 05:06:45 2019-09-04 05:06:47 t 1 1 93156 430 0.00 2019-09-04 05:16:51 2019-09-04 05:16:53 t 1 1 93157 430 0.00 2019-09-04 05:19:24 2019-09-04 05:19:30 t 1 1 93159 430 0.00 2019-09-04 05:26:30 2019-09-04 05:28:15 t 1 1 93170 296 0.00 2019-09-04 07:09:19 2019-09-04 07:16:43 t 1 2 93172 346 0.00 2019-09-04 07:15:40 2019-09-04 07:30:45 t 1 2 93173 220 0.00 2019-09-04 06:34:26 2019-09-04 07:31:03 t 1 1 93176 220 0.00 2019-09-04 07:32:14 2019-09-04 07:33:30 t 1 1 93178 294 0.00 2019-09-04 07:21:18 2019-09-04 07:33:49 t 1 2 93181 220 0.00 2019-09-04 07:34:03 2019-09-04 07:38:06 t 1 1 93191 220 0.00 2019-09-04 07:44:08 2019-09-04 07:44:43 t 1 1 93192 220 0.00 2019-09-04 07:44:43 2019-09-04 07:45:20 t 1 1 93196 220 0.00 2019-09-04 07:46:20 2019-09-04 07:46:47 t 1 1 93197 220 0.00 2019-09-04 07:46:46 2019-09-04 07:47:34 t 1 1 93199 220 0.00 2019-09-04 07:48:09 2019-09-04 07:48:50 t 1 1 93201 400 0.00 2019-09-04 07:34:26 2019-09-04 07:49:32 t 1 2 93202 220 0.00 2019-09-04 07:49:22 2019-09-04 07:50:50 t 1 1 93203 220 0.00 2019-09-04 07:50:50 2019-09-04 07:51:25 t 1 1 93204 220 0.00 2019-09-04 07:51:25 2019-09-04 07:51:59 t 1 1 93206 311 0.00 2019-09-04 07:49:05 2019-09-04 08:04:10 t 1 2 93208 402 0.00 2019-09-04 07:49:30 2019-09-04 08:24:36 t 1 2 93209 402 0.00 2019-09-04 08:37:54 2019-09-04 08:40:08 t 1 2 93212 220 0.00 2019-09-04 08:42:04 2019-09-04 08:43:31 t 1 1 93214 220 0.00 2019-09-04 08:44:17 2019-09-04 08:46:38 t 1 1 93216 220 0.00 2019-09-04 08:54:42 2019-09-04 08:56:31 t 1 1 93218 220 0.00 2019-09-04 08:56:58 2019-09-04 09:00:43 t 1 1 93220 346 0.00 2019-09-04 08:47:51 2019-09-04 09:06:57 t 1 2 188666 639 0.00 2019-12-07 04:33:30 2019-12-07 04:34:32 t 1 1 93227 379 0.00 2019-09-04 07:59:30 2019-09-04 09:14:35 t 1 2 93230 220 0.00 2019-09-04 09:15:35 2019-09-04 09:25:42 t 1 1 93233 294 0.00 2019-09-04 08:52:30 2019-09-04 09:35:54 t 1 2 93236 411 0.00 2019-09-03 22:31:09 2019-09-04 09:56:36 t 1 1 93245 306 0.00 2019-09-04 10:17:03 2019-09-04 10:18:08 t 1 2 93246 306 0.00 2019-09-04 10:18:43 2019-09-04 10:19:43 t 1 2 93247 288 0.00 2019-09-04 10:21:26 2019-09-04 10:22:31 t 1 2 93255 306 0.00 2019-09-04 10:43:43 2019-09-04 10:44:49 t 1 2 93259 212 0.00 2019-09-04 10:59:52 2019-09-04 11:00:18 t 1 2 93261 306 0.00 2019-09-04 11:09:47 2019-09-04 11:10:51 t 1 2 92966 220 0.00 2019-09-03 20:05:01 2019-09-03 20:12:55 t 1 1 92975 430 0.00 2019-09-03 20:35:58 2019-09-03 20:38:56 t 1 1 92976 412 0.00 2019-09-03 20:05:16 2019-09-03 20:43:27 t 1 1 92977 363 0.00 2019-09-03 20:07:43 2019-09-03 20:44:40 t 1 2 92979 361 0.00 2019-09-03 19:12:40 2019-09-03 20:57:46 t 1 2 92983 213 0.00 2019-09-03 20:49:26 2019-09-03 20:59:25 t 1 1 92984 355 0.00 2019-09-03 20:36:48 2019-09-03 21:00:08 t 1 2 92986 432 0.00 2019-09-03 20:59:39 2019-09-03 21:02:11 t 1 1 92990 220 0.00 2019-09-03 21:02:46 2019-09-03 21:11:00 t 1 1 92994 292 0.00 2019-09-03 21:15:07 2019-09-03 21:16:12 t 1 2 92995 220 0.00 2019-09-03 21:16:01 2019-09-03 21:18:19 t 1 1 92996 220 0.00 2019-09-03 21:18:18 2019-09-03 21:18:48 t 1 1 92997 220 0.00 2019-09-03 21:18:48 2019-09-03 21:19:21 t 1 1 93000 220 0.00 2019-09-03 21:19:56 2019-09-03 21:20:31 t 1 1 93004 331 0.00 2019-09-03 21:20:56 2019-09-03 21:22:00 t 1 2 93007 220 0.00 2019-09-03 21:22:42 2019-09-03 21:23:16 t 1 1 93008 220 0.00 2019-09-03 21:23:16 2019-09-03 21:23:51 t 1 1 93012 220 0.00 2019-09-03 21:24:59 2019-09-03 21:25:36 t 1 1 93014 432 0.00 2019-09-03 21:25:48 2019-09-03 21:26:19 t 1 1 93016 220 0.00 2019-09-03 21:26:07 2019-09-03 21:26:40 t 1 1 93019 220 0.00 2019-09-03 21:27:13 2019-09-03 21:27:48 t 1 1 93024 432 0.00 2019-09-03 21:29:10 2019-09-03 21:30:11 t 1 1 93027 220 0.00 2019-09-03 21:30:41 2019-09-03 21:31:16 t 1 1 93030 220 0.00 2019-09-03 21:32:14 2019-09-03 21:32:48 t 1 1 93033 288 0.00 2019-09-03 21:42:15 2019-09-03 21:43:22 t 1 2 93034 432 0.00 2019-09-03 21:44:02 2019-09-03 21:44:33 t 1 1 93036 213 0.00 2019-09-03 21:34:17 2019-09-03 21:51:11 t 1 1 93038 432 0.00 2019-09-03 21:53:51 2019-09-03 21:54:52 t 1 1 93039 430 0.00 2019-09-03 21:53:03 2019-09-03 21:55:18 t 1 1 93041 213 0.00 2019-09-03 21:56:02 2019-09-03 21:58:44 t 1 1 93042 430 0.00 2019-09-03 21:57:11 2019-09-03 22:00:52 t 1 1 93043 432 0.00 2019-09-03 21:54:53 2019-09-03 22:04:07 t 1 1 93044 213 0.00 2019-09-03 22:09:29 2019-09-03 22:11:10 t 1 1 93049 432 0.00 2019-09-03 22:12:49 2019-09-03 22:18:43 t 1 1 93050 400 0.00 2019-09-03 22:04:19 2019-09-03 22:19:25 t 1 2 93051 213 0.00 2019-09-03 22:17:23 2019-09-03 22:21:07 t 1 1 93052 213 0.00 2019-09-03 22:22:54 2019-09-03 22:23:06 t 1 1 93054 430 0.00 2019-09-03 22:23:06 2019-09-03 22:33:17 t 1 1 93055 213 0.00 2019-09-03 22:33:17 2019-09-03 22:37:04 t 1 1 93057 213 0.00 2019-09-03 22:42:52 2019-09-03 22:44:12 t 1 1 93069 220 0.00 2019-09-03 23:02:03 2019-09-03 23:03:30 t 1 1 93073 220 0.00 2019-09-03 23:06:00 2019-09-03 23:06:37 t 1 1 93074 220 0.00 2019-09-03 23:06:37 2019-09-03 23:07:18 t 1 1 93084 220 0.00 2019-09-03 23:17:17 2019-09-03 23:17:50 t 1 1 93088 213 0.00 2019-09-03 23:12:53 2019-09-03 23:19:35 t 1 1 93094 220 0.00 2019-09-03 23:22:36 2019-09-03 23:23:11 t 1 1 93097 212 0.00 2019-09-03 23:24:29 2019-09-03 23:24:56 t 1 2 93101 220 0.00 2019-09-03 23:31:17 2019-09-03 23:31:51 t 1 1 93104 432 0.00 2019-09-03 23:02:55 2019-09-03 23:34:19 t 1 1 93105 220 0.00 2019-09-03 23:33:55 2019-09-03 23:34:29 t 1 1 93106 220 0.00 2019-09-03 23:34:28 2019-09-03 23:35:29 t 1 1 93107 220 0.00 2019-09-03 23:35:29 2019-09-03 23:36:02 t 1 1 93112 220 0.00 2019-09-03 23:40:15 2019-09-03 23:40:53 t 1 1 93113 220 0.00 2019-09-03 23:40:53 2019-09-03 23:41:24 t 1 1 93114 220 0.00 2019-09-03 23:41:24 2019-09-03 23:42:05 t 1 1 93115 220 0.00 2019-09-03 23:42:05 2019-09-03 23:42:40 t 1 1 93117 220 0.00 2019-09-03 23:43:16 2019-09-03 23:43:49 t 1 1 93123 220 0.00 2019-09-04 00:06:59 2019-09-04 00:11:27 t 1 1 93125 220 0.00 2019-09-04 00:22:26 2019-09-04 00:22:53 t 1 1 93127 432 0.00 2019-09-04 00:11:27 2019-09-04 00:35:30 t 1 1 188667 689 0.00 2019-12-07 04:34:30 2019-12-07 04:34:53 t 1 1 93135 346 0.00 2019-09-04 01:26:48 2019-09-04 01:26:57 t 1 2 93139 220 0.00 2019-09-04 01:16:02 2019-09-04 01:56:17 t 1 1 93140 213 0.00 2019-09-04 02:10:17 2019-09-04 02:14:41 t 1 1 93142 213 0.00 2019-09-04 02:24:02 2019-09-04 02:25:59 t 1 1 93143 306 0.00 2019-09-04 02:28:03 2019-09-04 02:29:06 t 1 2 93149 322 0.00 2019-09-04 01:52:55 2019-09-04 03:59:06 t 1 2 93152 430 0.00 2019-09-04 04:51:58 2019-09-04 05:06:37 t 1 1 93155 430 0.00 2019-09-04 05:16:11 2019-09-04 05:16:17 t 1 1 93158 220 0.00 2019-09-04 05:06:15 2019-09-04 05:22:31 t 1 1 93161 220 0.00 2019-09-04 05:22:31 2019-09-04 05:30:55 t 1 1 93163 430 0.00 2019-09-04 05:36:14 2019-09-04 05:48:00 t 1 1 93164 430 0.00 2019-09-04 05:49:41 2019-09-04 05:49:44 t 1 1 93168 346 0.00 2019-09-03 23:13:03 2019-09-04 06:38:08 t 1 2 93171 294 0.00 2019-09-03 20:27:41 2019-09-04 07:21:05 t 1 2 93179 379 0.00 2019-09-04 06:14:06 2019-09-04 07:33:49 t 1 2 93180 220 0.00 2019-09-04 07:33:29 2019-09-04 07:34:04 t 1 1 93186 220 0.00 2019-09-04 07:41:18 2019-09-04 07:41:52 t 1 1 93187 220 0.00 2019-09-04 07:41:52 2019-09-04 07:42:27 t 1 1 93189 220 0.00 2019-09-04 07:43:01 2019-09-04 07:43:35 t 1 1 93190 220 0.00 2019-09-04 07:43:35 2019-09-04 07:44:09 t 1 1 93194 220 0.00 2019-09-04 07:45:37 2019-09-04 07:46:07 t 1 1 93195 220 0.00 2019-09-04 07:46:09 2019-09-04 07:46:21 t 1 1 93198 220 0.00 2019-09-04 07:47:34 2019-09-04 07:48:09 t 1 1 93200 220 0.00 2019-09-04 07:48:50 2019-09-04 07:49:22 t 1 1 93205 432 0.00 2019-09-04 07:29:16 2019-09-04 07:52:02 t 1 1 93207 220 0.00 2019-09-04 07:51:59 2019-09-04 08:12:46 t 1 1 93219 306 0.00 2019-09-04 09:05:48 2019-09-04 09:06:50 t 1 2 93221 220 0.00 2019-09-04 09:02:05 2019-09-04 09:08:28 t 1 1 93222 306 0.00 2019-09-04 09:07:55 2019-09-04 09:09:00 t 1 2 93224 212 0.00 2019-09-04 09:10:31 2019-09-04 09:11:29 t 1 2 93226 220 0.00 2019-09-04 09:08:31 2019-09-04 09:12:26 t 1 1 93228 220 0.00 2019-09-04 09:12:57 2019-09-04 09:14:51 t 1 1 93231 220 0.00 2019-09-04 09:26:00 2019-09-04 09:32:15 t 1 1 93232 402 0.00 2019-09-04 08:58:05 2019-09-04 09:34:54 t 1 2 93234 220 0.00 2019-09-04 09:32:58 2019-09-04 09:41:36 t 1 1 93235 331 0.00 2019-09-04 09:43:15 2019-09-04 09:44:21 t 1 2 93243 430 0.00 2019-09-04 10:07:06 2019-09-04 10:07:49 t 1 1 93248 306 0.00 2019-09-04 10:21:32 2019-09-04 10:22:34 t 1 2 93251 306 0.00 2019-09-04 10:28:41 2019-09-04 10:29:48 t 1 2 93254 306 0.00 2019-09-04 10:38:18 2019-09-04 10:39:17 t 1 2 93257 351 0.00 2019-09-04 10:56:25 2019-09-04 10:58:12 t 1 2 93260 306 0.00 2019-09-04 11:00:33 2019-09-04 11:01:35 t 1 2 93263 306 0.00 2019-09-04 11:14:02 2019-09-04 11:15:03 t 1 2 93267 432 0.00 2019-09-04 11:23:23 2019-09-04 11:24:22 t 1 1 93271 213 0.00 2019-09-04 11:32:12 2019-09-04 11:34:39 t 1 1 93278 306 0.00 2019-09-04 11:49:55 2019-09-04 11:51:01 t 1 2 93160 430 0.00 2019-09-04 05:28:24 2019-09-04 05:28:25 t 1 1 93162 430 0.00 2019-09-04 05:28:31 2019-09-04 05:36:14 t 1 1 93165 430 0.00 2019-09-04 05:54:42 2019-09-04 05:56:13 t 1 1 93166 430 0.00 2019-09-04 05:59:49 2019-09-04 05:59:50 t 1 1 93167 430 0.00 2019-09-04 06:09:59 2019-09-04 06:10:00 t 1 1 93169 292 0.00 2019-09-04 06:37:33 2019-09-04 06:38:36 t 1 2 93174 220 0.00 2019-09-04 07:31:03 2019-09-04 07:31:39 t 1 1 93175 220 0.00 2019-09-04 07:31:39 2019-09-04 07:32:14 t 1 1 93177 402 0.00 2019-09-04 07:14:43 2019-09-04 07:33:49 t 1 2 93182 220 0.00 2019-09-04 07:38:06 2019-09-04 07:38:49 t 1 1 93183 220 0.00 2019-09-04 07:38:48 2019-09-04 07:39:19 t 1 1 93184 220 0.00 2019-09-04 07:39:19 2019-09-04 07:40:45 t 1 1 93185 220 0.00 2019-09-04 07:40:45 2019-09-04 07:41:18 t 1 1 93188 220 0.00 2019-09-04 07:42:27 2019-09-04 07:43:01 t 1 1 93193 220 0.00 2019-09-04 07:45:20 2019-09-04 07:45:37 t 1 1 93210 220 0.00 2019-09-04 08:12:54 2019-09-04 08:41:32 t 1 1 93211 402 0.00 2019-09-04 08:32:03 2019-09-04 08:42:09 t 1 2 93213 220 0.00 2019-09-04 08:43:31 2019-09-04 08:44:17 t 1 1 93215 402 0.00 2019-09-04 08:48:17 2019-09-04 08:56:07 t 1 2 93217 400 0.00 2019-09-04 08:30:18 2019-09-04 09:00:23 t 1 2 93225 213 0.00 2019-09-04 09:09:19 2019-09-04 09:11:34 t 1 1 93229 213 0.00 2019-09-04 09:23:28 2019-09-04 09:25:13 t 1 1 93237 213 0.00 2019-09-04 09:55:40 2019-09-04 09:57:04 t 1 1 93238 213 0.00 2019-09-04 09:59:57 2019-09-04 10:02:45 t 1 1 93239 306 0.00 2019-09-04 10:03:34 2019-09-04 10:04:37 t 1 2 93240 213 0.00 2019-09-04 10:04:08 2019-09-04 10:05:27 t 1 1 93241 306 0.00 2019-09-04 10:05:13 2019-09-04 10:06:15 t 1 2 93242 213 0.00 2019-09-04 10:05:40 2019-09-04 10:07:08 t 1 1 93244 416 0.00 2019-09-04 10:07:21 2019-09-04 10:12:13 t 1 1 93249 212 0.00 2019-09-04 10:23:50 2019-09-04 10:25:57 t 1 2 93250 306 0.00 2019-09-04 10:26:16 2019-09-04 10:27:20 t 1 2 93252 306 0.00 2019-09-04 10:30:21 2019-09-04 10:31:24 t 1 2 93253 306 0.00 2019-09-04 10:33:22 2019-09-04 10:34:27 t 1 2 93256 306 0.00 2019-09-04 10:45:58 2019-09-04 10:47:02 t 1 2 93258 306 0.00 2019-09-04 10:57:33 2019-09-04 10:58:38 t 1 2 93266 432 0.00 2019-09-04 11:22:21 2019-09-04 11:23:24 t 1 1 93272 306 0.00 2019-09-04 11:33:43 2019-09-04 11:34:46 t 1 2 93274 306 0.00 2019-09-04 11:37:15 2019-09-04 11:38:19 t 1 2 93275 306 0.00 2019-09-04 11:38:43 2019-09-04 11:39:47 t 1 2 93283 331 0.00 2019-09-04 12:08:57 2019-09-04 12:09:58 t 1 2 93287 392 0.00 2019-09-04 12:04:33 2019-09-04 12:16:12 t 1 2 93291 346 0.00 2019-09-04 12:09:36 2019-09-04 12:24:41 t 1 2 93295 379 0.00 2019-09-04 10:00:34 2019-09-04 12:55:39 t 1 2 93307 296 0.00 2019-09-04 14:00:02 2019-09-04 14:04:26 t 1 2 93308 400 0.00 2019-09-04 13:31:22 2019-09-04 14:06:28 t 1 2 93309 402 0.00 2019-09-04 13:57:30 2019-09-04 14:07:35 t 1 2 93310 306 0.00 2019-09-04 14:06:59 2019-09-04 14:08:01 t 1 2 93311 306 0.00 2019-09-04 14:08:13 2019-09-04 14:09:18 t 1 2 93317 424 0.00 2019-09-04 14:32:21 2019-09-04 14:49:52 t 1 2 93323 432 0.00 2019-09-04 15:09:53 2019-09-04 15:16:37 t 1 1 93327 432 0.00 2019-09-04 15:26:08 2019-09-04 15:26:14 t 1 1 93329 220 0.00 2019-09-04 15:13:31 2019-09-04 15:28:37 t 1 2 93330 432 0.00 2019-09-04 15:30:23 2019-09-04 15:31:57 t 1 1 93331 220 0.00 2019-09-04 15:33:04 2019-09-04 15:35:17 t 1 1 93333 212 0.00 2019-09-04 15:50:45 2019-09-04 15:52:17 t 1 2 93334 424 0.00 2019-09-04 14:58:25 2019-09-04 16:04:49 t 1 2 93336 402 0.00 2019-09-04 16:06:23 2019-09-04 16:13:07 t 1 2 93338 247 0.00 2019-09-04 16:28:23 2019-09-04 16:30:18 t 1 2 93339 400 0.00 2019-09-04 16:30:34 2019-09-04 16:40:39 t 1 2 93340 212 0.00 2019-09-04 16:43:23 2019-09-04 16:43:33 t 1 2 93341 212 0.00 2019-09-04 16:43:56 2019-09-04 16:43:56 t 1 2 93342 424 0.00 2019-09-04 16:19:28 2019-09-04 16:45:49 t 1 2 93344 400 0.00 2019-09-04 16:38:03 2019-09-04 16:48:08 t 1 2 93345 422 0.00 2019-09-04 16:22:59 2019-09-04 16:57:38 t 1 2 93347 212 0.00 2019-09-04 17:16:33 2019-09-04 17:17:04 t 1 2 93349 294 0.00 2019-09-04 16:24:05 2019-09-04 17:24:45 t 1 2 93351 213 0.00 2019-09-04 17:26:16 2019-09-04 17:29:14 t 1 1 93352 220 0.00 2019-09-04 16:57:47 2019-09-04 17:33:12 t 1 1 93353 402 0.00 2019-09-04 16:25:16 2019-09-04 17:35:31 t 1 2 93355 217 0.00 2019-09-04 17:39:43 2019-09-04 17:39:43 f 1 2 93357 392 0.00 2019-09-04 17:10:01 2019-09-04 17:45:22 t 1 2 93359 363 0.00 2019-09-04 16:00:53 2019-09-04 17:45:59 t 1 2 93364 385 0.00 2019-09-04 18:02:41 2019-09-04 18:04:20 t 1 2 93365 402 0.00 2019-09-04 18:01:24 2019-09-04 18:09:05 t 1 2 93366 379 0.00 2019-09-04 15:57:09 2019-09-04 18:17:14 t 1 2 93371 412 0.00 2019-09-04 17:13:45 2019-09-04 18:45:26 t 1 1 93378 213 0.00 2019-09-04 19:21:58 2019-09-04 19:23:55 t 1 1 93379 402 0.00 2019-09-04 19:16:43 2019-09-04 19:26:48 t 1 2 188670 639 0.00 2019-12-07 04:37:08 2019-12-07 04:37:31 t 1 1 93389 412 0.00 2019-09-04 18:45:26 2019-09-04 19:53:30 t 1 1 93391 412 0.00 2019-09-04 19:53:29 2019-09-04 20:08:00 t 1 1 93393 412 0.00 2019-09-04 20:08:21 2019-09-04 20:12:14 t 1 1 93395 430 0.00 2019-09-04 20:12:52 2019-09-04 20:13:21 t 1 1 93396 361 0.00 2019-09-04 19:56:12 2019-09-04 20:13:57 t 1 2 93398 213 0.00 2019-09-04 20:13:43 2019-09-04 20:17:22 t 1 1 93405 432 0.00 2019-09-04 20:41:52 2019-09-04 20:43:05 t 1 1 93408 213 0.00 2019-09-04 20:44:35 2019-09-04 20:47:45 t 1 1 93409 392 0.00 2019-09-04 20:38:16 2019-09-04 20:48:15 t 1 2 93410 432 0.00 2019-09-04 20:46:27 2019-09-04 20:56:21 t 1 1 93411 412 0.00 2019-09-04 20:25:03 2019-09-04 20:57:52 t 1 1 93412 430 0.00 2019-09-04 20:56:21 2019-09-04 21:07:17 t 1 1 93413 432 0.00 2019-09-04 21:09:07 2019-09-04 21:09:13 t 1 1 93417 412 0.00 2019-09-04 20:59:25 2019-09-04 21:16:01 t 1 1 93418 434 0.00 2019-09-04 21:14:30 2019-09-04 21:19:44 t 1 2 93421 432 0.00 2019-09-04 21:22:09 2019-09-04 21:25:07 t 1 1 93427 288 0.00 2019-09-04 21:36:24 2019-09-04 21:37:31 t 1 2 93428 412 0.00 2019-09-04 21:37:24 2019-09-04 21:37:56 t 1 1 93432 288 0.00 2019-09-04 21:38:09 2019-09-04 21:44:06 t 1 1 93435 432 0.00 2019-09-04 21:49:55 2019-09-04 21:50:00 t 1 1 93438 412 0.00 2019-09-04 21:51:32 2019-09-04 21:53:12 t 1 1 93440 213 0.00 2019-09-04 21:47:04 2019-09-04 21:53:25 t 1 1 93441 432 0.00 2019-09-04 21:55:14 2019-09-04 21:56:44 t 1 1 93442 412 0.00 2019-09-04 21:57:52 2019-09-04 21:58:05 t 1 1 93445 412 0.00 2019-09-04 21:58:05 2019-09-04 22:06:19 t 1 1 93447 247 0.00 2019-09-04 22:11:40 2019-09-04 22:13:07 t 1 2 93451 220 0.00 2019-09-04 22:22:11 2019-09-04 22:32:25 t 1 1 93459 213 0.00 2019-09-04 22:44:28 2019-09-04 22:48:07 t 1 1 93262 306 0.00 2019-09-04 11:12:09 2019-09-04 11:13:15 t 1 2 93264 346 0.00 2019-09-04 11:00:56 2019-09-04 11:16:32 t 1 2 93265 392 0.00 2019-09-04 11:09:13 2019-09-04 11:22:30 t 1 2 93268 213 0.00 2019-09-04 11:22:46 2019-09-04 11:25:51 t 1 1 93269 306 0.00 2019-09-04 11:29:29 2019-09-04 11:30:37 t 1 2 93270 306 0.00 2019-09-04 11:31:38 2019-09-04 11:31:43 t 1 2 93273 306 0.00 2019-09-04 11:35:30 2019-09-04 11:36:35 t 1 2 93276 306 0.00 2019-09-04 11:40:08 2019-09-04 11:41:12 t 1 2 93277 306 0.00 2019-09-04 11:48:30 2019-09-04 11:49:31 t 1 2 93279 306 0.00 2019-09-04 11:52:18 2019-09-04 11:53:21 t 1 2 93281 355 0.00 2019-09-04 11:26:29 2019-09-04 12:01:35 t 1 2 93282 306 0.00 2019-09-04 12:05:20 2019-09-04 12:06:26 t 1 2 93284 346 0.00 2019-09-04 12:10:42 2019-09-04 12:12:57 t 1 2 93288 346 0.00 2019-09-04 12:15:16 2019-09-04 12:16:23 t 1 2 93293 361 0.00 2019-09-04 09:55:48 2019-09-04 12:37:19 t 1 2 93296 346 0.00 2019-09-04 12:37:04 2019-09-04 12:55:53 t 1 2 93297 361 0.00 2019-09-04 12:40:25 2019-09-04 12:59:10 t 1 2 93301 220 0.00 2019-09-04 13:11:17 2019-09-04 13:35:59 t 1 1 93303 402 0.00 2019-09-04 13:27:28 2019-09-04 13:37:34 t 1 2 93304 392 0.00 2019-09-04 13:33:36 2019-09-04 13:38:32 t 1 2 93306 212 0.00 2019-09-04 13:47:04 2019-09-04 13:48:29 t 1 2 93313 220 0.00 2019-09-04 13:56:15 2019-09-04 14:15:03 t 1 1 93315 392 0.00 2019-09-04 14:01:21 2019-09-04 14:26:20 t 1 2 93316 400 0.00 2019-09-04 14:11:59 2019-09-04 14:37:04 t 1 2 93321 361 0.00 2019-09-04 14:47:26 2019-09-04 15:05:17 t 1 2 93326 385 0.00 2019-09-04 14:55:49 2019-09-04 15:25:54 t 1 2 93335 395 0.00 2019-09-04 15:52:15 2019-09-04 16:06:40 t 1 2 93337 395 0.00 2019-09-04 16:10:52 2019-09-04 16:16:01 t 1 2 93348 357 0.00 2019-09-04 17:17:52 2019-09-04 17:18:06 t 1 2 93350 432 0.00 2019-09-04 16:51:51 2019-09-04 17:28:32 t 1 1 93354 346 0.00 2019-09-04 17:39:27 2019-09-04 17:39:27 f 1 2 93356 346 0.00 2019-09-04 17:40:12 2019-09-04 17:40:12 f 1 2 93358 292 0.00 2019-09-04 17:44:26 2019-09-04 17:45:30 t 1 2 93361 213 0.00 2019-09-04 17:59:14 2019-09-04 18:00:47 t 1 1 93362 306 0.00 2019-09-04 18:00:40 2019-09-04 18:01:44 t 1 2 93363 346 0.00 2019-09-04 18:02:31 2019-09-04 18:02:31 f 1 2 93368 430 0.00 2019-09-04 18:12:11 2019-09-04 18:29:50 t 1 1 93370 430 0.00 2019-09-04 18:29:50 2019-09-04 18:37:51 t 1 1 93372 392 0.00 2019-09-04 18:46:04 2019-09-04 18:56:24 t 1 2 93374 247 0.00 2019-09-04 18:59:31 2019-09-04 19:00:50 t 1 2 93376 424 0.00 2019-09-04 18:20:40 2019-09-04 19:05:04 t 1 2 93377 294 0.00 2019-09-04 18:08:49 2019-09-04 19:09:12 t 1 2 93381 306 0.00 2019-09-04 19:26:58 2019-09-04 19:28:01 t 1 2 93383 430 0.00 2019-09-04 19:23:06 2019-09-04 19:33:50 t 1 1 93384 213 0.00 2019-09-04 19:27:48 2019-09-04 19:35:42 t 1 1 93385 361 0.00 2019-09-04 18:28:01 2019-09-04 19:38:39 t 1 2 93387 402 0.00 2019-09-04 19:29:14 2019-09-04 19:39:20 t 1 2 93388 306 0.00 2019-09-04 19:46:41 2019-09-04 19:47:43 t 1 2 93392 213 0.00 2019-09-04 20:01:16 2019-09-04 20:10:27 t 1 1 93394 412 0.00 2019-09-04 20:12:14 2019-09-04 20:12:55 t 1 1 93399 385 0.00 2019-09-04 19:41:02 2019-09-04 20:21:07 t 1 2 93400 412 0.00 2019-09-04 20:12:59 2019-09-04 20:24:55 t 1 1 93402 400 0.00 2019-09-04 20:05:00 2019-09-04 20:30:05 t 1 2 93406 213 0.00 2019-09-04 20:17:22 2019-09-04 20:43:36 t 1 1 93415 432 0.00 2019-09-04 21:10:45 2019-09-04 21:10:47 t 1 1 93422 432 0.00 2019-09-04 21:31:24 2019-09-04 21:31:58 t 1 1 93425 432 0.00 2019-09-04 21:35:47 2019-09-04 21:35:54 t 1 1 93431 247 0.00 2019-09-04 21:06:20 2019-09-04 21:43:44 t 1 2 93436 432 0.00 2019-09-04 21:47:15 2019-09-04 21:50:23 t 1 1 93439 288 0.00 2019-09-04 21:50:53 2019-09-04 21:53:23 t 1 1 93443 430 0.00 2019-09-04 22:01:58 2019-09-04 22:02:25 t 1 1 93448 392 0.00 2019-09-04 22:07:43 2019-09-04 22:30:17 t 1 2 93450 213 0.00 2019-09-04 22:00:03 2019-09-04 22:31:00 t 1 1 93452 432 0.00 2019-09-04 22:36:43 2019-09-04 22:40:49 t 1 1 93453 432 0.00 2019-09-04 22:41:12 2019-09-04 22:41:22 t 1 1 93454 432 0.00 2019-09-04 22:42:22 2019-09-04 22:42:36 t 1 1 93457 400 0.00 2019-09-04 22:43:26 2019-09-04 22:46:40 t 1 2 93458 432 0.00 2019-09-04 22:47:12 2019-09-04 22:47:22 t 1 1 93460 402 0.00 2019-09-04 22:33:03 2019-09-04 22:48:09 t 1 2 93463 288 0.00 2019-09-04 21:53:23 2019-09-04 22:52:57 t 1 1 93467 432 0.00 2019-09-04 22:47:46 2019-09-04 23:01:18 t 1 1 93470 392 0.00 2019-09-04 23:00:43 2019-09-04 23:10:42 t 1 2 93471 213 0.00 2019-09-04 23:09:13 2019-09-04 23:13:11 t 1 1 93472 385 0.00 2019-09-04 23:15:39 2019-09-04 23:17:38 t 1 2 93474 432 0.00 2019-09-04 23:19:00 2019-09-04 23:20:19 t 1 1 93475 212 0.00 2019-09-04 23:20:23 2019-09-04 23:21:36 t 1 2 93478 346 0.00 2019-09-04 23:28:18 2019-09-04 23:28:18 f 1 2 93480 400 0.00 2019-09-04 23:19:08 2019-09-04 23:29:13 t 1 2 93482 402 0.00 2019-09-04 23:18:35 2019-09-04 23:34:20 t 1 2 93483 212 0.00 2019-09-04 23:35:43 2019-09-04 23:36:03 t 1 2 93486 247 0.00 2019-09-04 23:36:38 2019-09-04 23:40:12 t 1 2 93487 213 0.00 2019-09-04 23:38:51 2019-09-04 23:42:11 t 1 1 93490 400 0.00 2019-09-04 23:32:25 2019-09-05 00:03:18 t 1 2 93493 363 0.00 2019-09-04 23:39:57 2019-09-05 00:20:02 t 1 2 93494 212 0.00 2019-09-05 00:25:27 2019-09-05 00:25:49 t 1 2 93503 400 0.00 2019-09-05 00:07:29 2019-09-05 01:22:34 t 1 2 93508 372 0.00 2019-09-05 02:15:53 2019-09-05 02:39:46 t 1 2 93509 363 0.00 2019-09-05 01:45:53 2019-09-05 02:40:59 t 1 2 93513 322 0.00 2019-09-05 03:58:48 2019-09-05 04:12:46 t 1 2 93519 213 0.00 2019-09-05 05:36:22 2019-09-05 05:44:45 t 1 1 93520 213 0.00 2019-09-05 05:44:56 2019-09-05 05:47:21 t 1 1 93521 296 0.00 2019-09-05 05:45:55 2019-09-05 05:53:16 t 1 2 93522 213 0.00 2019-09-05 05:54:49 2019-09-05 05:59:37 t 1 1 93525 306 0.00 2019-09-05 06:32:40 2019-09-05 06:33:45 t 1 2 93526 306 0.00 2019-09-05 06:36:17 2019-09-05 06:37:21 t 1 2 93537 432 0.00 2019-09-05 08:17:58 2019-09-05 08:18:13 t 1 1 93538 349 0.00 2019-09-05 08:18:16 2019-09-05 08:19:20 t 1 2 93545 306 0.00 2019-09-05 08:44:14 2019-09-05 08:45:18 t 1 2 93546 212 0.00 2019-09-05 08:45:30 2019-09-05 08:46:34 t 1 2 93550 220 0.00 2019-09-05 08:02:17 2019-09-05 08:54:06 t 1 1 93556 220 0.00 2019-09-05 08:56:57 2019-09-05 08:57:06 t 1 1 93558 220 0.00 2019-09-05 08:57:29 2019-09-05 08:58:05 t 1 1 93563 220 0.00 2019-09-05 09:00:17 2019-09-05 09:00:51 t 1 1 93564 220 0.00 2019-09-05 09:00:50 2019-09-05 09:01:24 t 1 1 93565 220 0.00 2019-09-05 09:01:24 2019-09-05 09:01:58 t 1 1 93567 220 0.00 2019-09-05 09:02:28 2019-09-05 09:03:04 t 1 1 93572 220 0.00 2019-09-05 09:05:09 2019-09-05 09:05:44 t 1 1 93280 306 0.00 2019-09-04 11:55:16 2019-09-04 11:56:19 t 1 2 93285 306 0.00 2019-09-04 12:12:19 2019-09-04 12:13:27 t 1 2 93286 306 0.00 2019-09-04 12:13:44 2019-09-04 12:14:45 t 1 2 93289 402 0.00 2019-09-04 11:58:50 2019-09-04 12:20:56 t 1 2 93290 212 0.00 2019-09-04 12:23:40 2019-09-04 12:24:18 t 1 2 93292 306 0.00 2019-09-04 12:31:28 2019-09-04 12:32:32 t 1 2 93294 443 0.00 2019-09-04 12:46:54 2019-09-04 12:50:34 t 1 1 93298 213 0.00 2019-09-04 12:59:44 2019-09-04 13:01:29 t 1 1 93299 306 0.00 2019-09-04 13:12:11 2019-09-04 13:13:13 t 1 2 93300 247 0.00 2019-09-04 13:28:56 2019-09-04 13:30:51 t 1 2 93302 400 0.00 2019-09-04 13:21:15 2019-09-04 13:36:20 t 1 2 93305 220 0.00 2019-09-04 13:31:02 2019-09-04 13:41:07 t 1 2 93312 432 0.00 2019-09-04 14:01:25 2019-09-04 14:10:12 t 1 1 93314 361 0.00 2019-09-04 13:53:21 2019-09-04 14:15:20 t 1 2 93318 346 0.00 2019-09-04 14:54:53 2019-09-04 14:54:53 f 1 2 93319 346 0.00 2019-09-04 14:55:43 2019-09-04 14:55:43 f 1 2 93320 436 0.00 2019-09-04 14:57:42 2019-09-04 14:59:53 t 1 1 188671 639 0.00 2019-12-07 04:38:07 2019-12-07 04:38:16 t 1 1 93324 327 0.00 2019-09-04 14:22:06 2019-09-04 15:22:30 t 1 2 93325 432 0.00 2019-09-04 15:24:46 2019-09-04 15:25:34 t 1 1 93328 432 0.00 2019-09-04 15:26:34 2019-09-04 15:26:44 t 1 1 93332 355 0.00 2019-09-04 14:18:00 2019-09-04 15:43:05 t 1 2 93343 212 0.00 2019-09-04 16:44:02 2019-09-04 16:46:12 t 1 2 93346 412 0.00 2019-09-04 01:28:04 2019-09-04 17:13:45 t 1 1 93360 402 0.00 2019-09-04 17:39:57 2019-09-04 17:58:04 t 1 2 93367 220 0.00 2019-09-04 18:13:21 2019-09-04 18:28:33 t 1 1 93369 400 0.00 2019-09-04 17:56:00 2019-09-04 18:36:05 t 1 2 93373 213 0.00 2019-09-04 18:58:14 2019-09-04 18:59:42 t 1 1 93375 306 0.00 2019-09-04 19:01:47 2019-09-04 19:02:50 t 1 2 93382 220 0.00 2019-09-04 18:07:39 2019-09-04 19:29:56 t 1 2 93386 296 0.00 2019-09-04 19:37:25 2019-09-04 19:38:48 t 1 2 93390 213 0.00 2019-09-04 19:52:55 2019-09-04 19:58:43 t 1 1 93397 392 0.00 2019-09-04 20:07:35 2019-09-04 20:14:58 t 1 2 93401 357 0.00 2019-09-04 20:11:59 2019-09-04 20:27:04 t 1 2 93403 311 0.00 2019-09-04 20:20:17 2019-09-04 20:35:23 t 1 2 93404 247 0.00 2019-09-04 20:40:51 2019-09-04 20:41:58 t 1 2 93407 432 0.00 2019-09-04 20:43:05 2019-09-04 20:45:07 t 1 1 93414 430 0.00 2019-09-04 21:07:21 2019-09-04 21:10:45 t 1 1 93416 432 0.00 2019-09-04 21:14:11 2019-09-04 21:14:15 t 1 1 93419 213 0.00 2019-09-04 20:50:12 2019-09-04 21:22:51 t 1 1 93420 412 0.00 2019-09-04 21:18:28 2019-09-04 21:23:36 t 1 1 93423 432 0.00 2019-09-04 21:32:09 2019-09-04 21:33:17 t 1 1 93424 432 0.00 2019-09-04 21:34:01 2019-09-04 21:34:10 t 1 1 93426 412 0.00 2019-09-04 21:24:09 2019-09-04 21:37:25 t 1 1 93429 432 0.00 2019-09-04 21:37:56 2019-09-04 21:38:02 t 1 1 93430 213 0.00 2019-09-04 21:35:20 2019-09-04 21:39:02 t 1 1 93433 296 0.00 2019-09-04 21:42:31 2019-09-04 21:44:52 t 1 2 93434 288 0.00 2019-09-04 21:44:06 2019-09-04 21:47:37 t 1 1 93437 288 0.00 2019-09-04 21:47:37 2019-09-04 21:50:53 t 1 1 93444 432 0.00 2019-09-04 22:05:48 2019-09-04 22:05:59 t 1 1 93446 432 0.00 2019-09-04 22:06:19 2019-09-04 22:06:35 t 1 1 93449 432 0.00 2019-09-04 22:08:34 2019-09-04 22:30:37 t 1 1 93455 432 0.00 2019-09-04 22:44:39 2019-09-04 22:44:52 t 1 1 93456 432 0.00 2019-09-04 22:45:31 2019-09-04 22:45:38 t 1 1 93462 212 0.00 2019-09-04 21:56:12 2019-09-04 22:50:46 t 1 2 93464 400 0.00 2019-09-04 22:50:06 2019-09-04 23:00:11 t 1 2 93465 213 0.00 2019-09-04 22:50:02 2019-09-04 23:01:10 t 1 1 93469 212 0.00 2019-09-04 23:03:43 2019-09-04 23:06:00 t 1 2 93473 432 0.00 2019-09-04 23:06:06 2019-09-04 23:18:38 t 1 1 93477 346 0.00 2019-09-04 23:28:04 2019-09-04 23:28:04 f 1 2 93481 361 0.00 2019-09-04 22:49:17 2019-09-04 23:29:22 t 1 2 93484 331 0.00 2019-09-04 23:35:34 2019-09-04 23:36:37 t 1 2 93495 424 0.00 2019-09-05 00:08:57 2019-09-05 00:25:53 t 1 2 93497 213 0.00 2019-09-05 00:45:04 2019-09-05 00:46:52 t 1 1 93498 355 0.00 2019-09-04 23:54:31 2019-09-05 00:49:36 t 1 2 93500 213 0.00 2019-09-05 00:48:55 2019-09-05 00:57:18 t 1 1 93501 351 0.00 2019-09-05 00:59:13 2019-09-05 01:02:13 t 1 2 188673 639 0.00 2019-12-07 04:39:38 2019-12-07 04:39:46 t 1 1 93504 402 0.00 2019-09-05 00:21:21 2019-09-05 01:31:26 t 1 2 93506 363 0.00 2019-09-05 00:31:26 2019-09-05 01:44:52 t 1 2 93512 322 0.00 2019-09-05 03:45:50 2019-09-05 03:58:47 t 1 2 93514 213 0.00 2019-09-05 05:17:42 2019-09-05 05:20:54 t 1 1 93515 213 0.00 2019-09-05 05:20:53 2019-09-05 05:22:55 t 1 1 93518 213 0.00 2019-09-05 05:36:07 2019-09-05 05:36:22 t 1 1 93523 306 0.00 2019-09-05 06:28:59 2019-09-05 06:30:04 t 1 2 93524 306 0.00 2019-09-05 06:30:33 2019-09-05 06:31:37 t 1 2 93527 306 0.00 2019-09-05 06:37:49 2019-09-05 06:38:52 t 1 2 93528 220 0.00 2019-09-05 06:48:50 2019-09-05 06:49:10 t 1 1 93533 306 0.00 2019-09-05 07:41:12 2019-09-05 07:42:15 t 1 2 93534 432 0.00 2019-09-05 07:51:06 2019-09-05 08:04:32 t 1 1 93536 349 0.00 2019-09-05 08:16:51 2019-09-05 08:17:56 t 1 2 93539 349 0.00 2019-09-05 08:20:01 2019-09-05 08:21:07 t 1 2 93540 349 0.00 2019-09-05 08:21:55 2019-09-05 08:23:00 t 1 2 93544 402 0.00 2019-09-05 08:39:59 2019-09-05 08:44:49 t 1 2 93548 412 0.00 2019-09-05 08:29:14 2019-09-05 08:51:20 t 1 1 93553 220 0.00 2019-09-05 08:55:17 2019-09-05 08:55:50 t 1 1 93554 220 0.00 2019-09-05 08:55:50 2019-09-05 08:56:22 t 1 1 93555 220 0.00 2019-09-05 08:56:21 2019-09-05 08:56:57 t 1 1 93561 220 0.00 2019-09-05 08:59:10 2019-09-05 08:59:43 t 1 1 93562 220 0.00 2019-09-05 08:59:43 2019-09-05 09:00:17 t 1 1 93570 220 0.00 2019-09-05 09:04:10 2019-09-05 09:04:34 t 1 1 93571 220 0.00 2019-09-05 09:04:34 2019-09-05 09:05:09 t 1 1 93579 220 0.00 2019-09-05 09:09:05 2019-09-05 09:09:40 t 1 1 93580 220 0.00 2019-09-05 09:09:40 2019-09-05 09:10:15 t 1 1 93582 220 0.00 2019-09-05 09:10:15 2019-09-05 09:10:47 t 1 1 93583 220 0.00 2019-09-05 09:10:47 2019-09-05 09:11:19 t 1 1 93586 220 0.00 2019-09-05 09:12:23 2019-09-05 09:12:58 t 1 1 93591 220 0.00 2019-09-05 09:15:07 2019-09-05 09:17:25 t 1 1 93594 220 0.00 2019-09-05 09:17:57 2019-09-05 09:19:26 t 1 1 93596 331 0.00 2019-09-05 09:19:45 2019-09-05 09:20:49 t 1 2 93597 220 0.00 2019-09-05 09:20:00 2019-09-05 09:23:10 t 1 1 93599 432 0.00 2019-09-05 09:16:06 2019-09-05 09:25:49 t 1 1 93601 220 0.00 2019-09-05 09:23:42 2019-09-05 09:27:42 t 1 1 93603 220 0.00 2019-09-05 09:28:15 2019-09-05 09:28:46 t 1 1 93604 220 0.00 2019-09-05 09:28:46 2019-09-05 09:29:18 t 1 1 93606 220 0.00 2019-09-05 09:29:55 2019-09-05 09:30:28 t 1 1 93615 306 0.00 2019-09-05 09:47:32 2019-09-05 09:48:36 t 1 2 93461 213 0.00 2019-09-04 22:48:07 2019-09-04 22:50:02 t 1 1 93466 288 0.00 2019-09-04 22:56:52 2019-09-04 23:01:10 t 1 1 93468 432 0.00 2019-09-04 23:01:24 2019-09-04 23:05:51 t 1 1 93476 213 0.00 2019-09-04 23:13:11 2019-09-04 23:24:53 t 1 1 93479 331 0.00 2019-09-04 23:27:58 2019-09-04 23:29:03 t 1 2 93485 213 0.00 2019-09-04 23:37:55 2019-09-04 23:38:51 t 1 1 93488 402 0.00 2019-09-04 23:35:10 2019-09-04 23:45:15 t 1 2 93489 385 0.00 2019-09-04 21:40:17 2019-09-04 23:52:20 t 1 2 93491 212 0.00 2019-09-05 00:12:32 2019-09-05 00:12:53 t 1 2 93492 220 0.00 2019-09-04 23:59:45 2019-09-05 00:12:59 t 1 1 93496 363 0.00 2019-09-05 00:18:45 2019-09-05 00:33:50 t 1 2 188672 639 0.00 2019-12-07 04:36:48 2019-12-07 04:38:22 t 1 1 93505 355 0.00 2019-09-05 01:28:16 2019-09-05 01:36:09 t 1 2 93507 392 0.00 2019-09-05 00:33:32 2019-09-05 02:06:19 t 1 2 93510 361 0.00 2019-09-05 00:59:20 2019-09-05 02:59:41 t 1 2 93511 339 0.00 2019-09-05 02:08:07 2019-09-05 03:08:30 t 1 2 93516 213 0.00 2019-09-05 05:22:55 2019-09-05 05:30:12 t 1 1 93517 213 0.00 2019-09-05 05:30:11 2019-09-05 05:32:39 t 1 1 93529 306 0.00 2019-09-05 06:57:34 2019-09-05 06:58:40 t 1 2 93530 306 0.00 2019-09-05 07:06:19 2019-09-05 07:07:22 t 1 2 93531 294 0.00 2019-09-05 06:22:51 2019-09-05 07:23:14 t 1 2 93532 220 0.00 2019-09-05 07:26:39 2019-09-05 07:34:18 t 1 1 93535 432 0.00 2019-09-05 08:05:39 2019-09-05 08:08:31 t 1 1 93541 306 0.00 2019-09-05 08:22:14 2019-09-05 08:23:16 t 1 2 93542 432 0.00 2019-09-05 08:23:24 2019-09-05 08:27:37 t 1 1 93543 213 0.00 2019-09-05 08:32:04 2019-09-05 08:36:12 t 1 1 93547 432 0.00 2019-09-05 08:39:33 2019-09-05 08:51:20 t 1 1 93549 411 0.00 2019-09-05 08:32:41 2019-09-05 08:51:53 t 1 1 93551 220 0.00 2019-09-05 08:54:06 2019-09-05 08:54:42 t 1 1 93552 220 0.00 2019-09-05 08:54:42 2019-09-05 08:55:17 t 1 1 93557 220 0.00 2019-09-05 08:57:06 2019-09-05 08:57:30 t 1 1 93559 220 0.00 2019-09-05 08:58:04 2019-09-05 08:58:36 t 1 1 93560 220 0.00 2019-09-05 08:58:36 2019-09-05 08:59:10 t 1 1 93566 220 0.00 2019-09-05 09:01:57 2019-09-05 09:02:29 t 1 1 93568 220 0.00 2019-09-05 09:03:03 2019-09-05 09:03:37 t 1 1 93569 220 0.00 2019-09-05 09:03:37 2019-09-05 09:04:11 t 1 1 93574 220 0.00 2019-09-05 09:06:16 2019-09-05 09:06:50 t 1 1 93575 220 0.00 2019-09-05 09:06:50 2019-09-05 09:07:23 t 1 1 93577 220 0.00 2019-09-05 09:07:58 2019-09-05 09:08:31 t 1 1 93578 220 0.00 2019-09-05 09:08:30 2019-09-05 09:09:05 t 1 1 93581 412 0.00 2019-09-05 08:51:20 2019-09-05 09:10:20 t 1 1 93589 220 0.00 2019-09-05 09:14:01 2019-09-05 09:14:32 t 1 1 93590 220 0.00 2019-09-05 09:14:32 2019-09-05 09:15:07 t 1 1 93592 220 0.00 2019-09-05 09:17:25 2019-09-05 09:17:57 t 1 1 93593 306 0.00 2019-09-05 09:18:02 2019-09-05 09:19:06 t 1 2 93600 220 0.00 2019-09-05 09:24:14 2019-09-05 09:27:25 t 1 1 93602 220 0.00 2019-09-05 09:27:42 2019-09-05 09:28:15 t 1 1 93605 220 0.00 2019-09-05 09:29:18 2019-09-05 09:29:55 t 1 1 93607 331 0.00 2019-09-05 09:29:30 2019-09-05 09:30:37 t 1 2 93609 402 0.00 2019-09-05 09:36:23 2019-09-05 09:37:26 t 1 2 93610 220 0.00 2019-09-05 09:34:47 2019-09-05 09:38:24 t 1 1 93612 306 0.00 2019-09-05 09:43:01 2019-09-05 09:44:02 t 1 2 93613 306 0.00 2019-09-05 09:44:40 2019-09-05 09:45:44 t 1 2 93616 432 0.00 2019-09-05 09:26:19 2019-09-05 10:07:30 t 1 1 93620 213 0.00 2019-09-05 10:15:52 2019-09-05 10:18:47 t 1 1 93622 434 0.00 2019-09-05 10:13:54 2019-09-05 10:26:14 t 1 2 93623 402 0.00 2019-09-05 09:38:56 2019-09-05 10:27:42 t 1 2 93624 220 0.00 2019-09-05 10:17:09 2019-09-05 10:28:00 t 1 1 93626 351 0.00 2019-09-05 10:27:42 2019-09-05 10:33:49 t 1 2 93627 375 0.00 2019-09-05 10:14:50 2019-09-05 10:39:34 t 1 1 93628 375 0.00 2019-09-05 10:39:34 2019-09-05 10:43:37 t 1 1 93630 213 0.00 2019-09-05 10:47:00 2019-09-05 10:49:06 t 1 1 93636 400 0.00 2019-09-05 08:50:25 2019-09-05 11:10:30 t 1 2 93638 220 0.00 2019-09-05 10:29:28 2019-09-05 11:12:37 t 1 1 93640 220 0.00 2019-09-05 11:16:02 2019-09-05 11:16:35 t 1 1 93643 220 0.00 2019-09-05 11:16:35 2019-09-05 11:23:06 t 1 1 93653 375 0.00 2019-09-05 11:20:54 2019-09-05 11:30:16 t 1 1 93657 445 0.00 2019-09-05 11:29:34 2019-09-05 11:36:07 t 1 1 93658 220 0.00 2019-09-05 11:30:33 2019-09-05 11:36:54 t 1 1 93661 445 0.00 2019-09-05 11:36:06 2019-09-05 11:42:04 t 1 1 93669 447 0.00 2019-09-05 11:46:04 2019-09-05 11:49:28 t 1 1 93674 432 0.00 2019-09-05 11:58:33 2019-09-05 11:58:34 t 1 1 93675 432 0.00 2019-09-05 11:58:53 2019-09-05 11:59:04 t 1 1 93678 445 0.00 2019-09-05 11:59:45 2019-09-05 12:03:44 t 1 1 93679 212 0.00 2019-09-05 12:07:28 2019-09-05 12:07:50 t 1 2 93681 432 0.00 2019-09-05 12:00:22 2019-09-05 12:09:51 t 1 1 93688 432 0.00 2019-09-05 12:25:16 2019-09-05 12:25:42 t 1 1 93689 367 0.00 2019-09-05 11:41:58 2019-09-05 12:27:03 t 1 2 93691 445 0.00 2019-09-05 12:29:11 2019-09-05 12:29:22 t 1 1 93695 432 0.00 2019-09-05 12:35:44 2019-09-05 12:35:55 t 1 1 93698 375 0.00 2019-09-05 11:48:32 2019-09-05 12:41:21 t 1 1 93702 411 0.00 2019-09-05 12:49:04 2019-09-05 12:50:10 t 1 1 93718 445 0.00 2019-09-05 13:33:36 2019-09-05 13:38:15 t 1 1 93719 355 0.00 2019-09-05 13:31:55 2019-09-05 13:41:51 t 1 2 93724 306 0.00 2019-09-05 13:47:04 2019-09-05 13:48:06 t 1 2 93725 306 0.00 2019-09-05 13:48:29 2019-09-05 13:49:32 t 1 2 93726 445 0.00 2019-09-05 13:46:57 2019-09-05 13:51:17 t 1 1 93727 411 0.00 2019-09-05 13:07:59 2019-09-05 13:57:54 t 1 1 93728 411 0.00 2019-09-05 13:57:54 2019-09-05 14:01:14 t 1 1 93731 392 0.00 2019-09-05 14:00:12 2019-09-05 14:16:49 t 1 2 93735 432 0.00 2019-09-05 14:29:00 2019-09-05 14:43:47 t 1 1 93737 392 0.00 2019-09-05 14:34:24 2019-09-05 14:46:12 t 1 2 188676 639 0.00 2019-12-07 04:44:08 2019-12-07 04:44:18 t 1 1 93743 400 0.00 2019-09-05 14:56:32 2019-09-05 15:06:38 t 1 2 188677 689 0.00 2019-12-07 04:44:44 2019-12-07 04:45:12 t 1 1 93747 392 0.00 2019-09-05 15:08:22 2019-09-05 15:08:28 t 1 2 188678 639 0.00 2019-12-07 04:43:39 2019-12-07 04:45:22 t 1 1 93751 306 0.00 2019-09-05 15:14:24 2019-09-05 15:15:26 t 1 2 93753 363 0.00 2019-09-05 15:02:50 2019-09-05 15:20:52 t 1 2 93754 445 0.00 2019-09-05 14:50:32 2019-09-05 15:25:46 t 1 1 93757 392 0.00 2019-09-05 15:10:50 2019-09-05 15:31:07 t 1 2 93759 212 0.00 2019-09-05 15:32:32 2019-09-05 15:37:56 t 1 2 93761 449 0.00 2019-09-05 15:41:09 2019-09-05 15:55:29 t 1 1 93763 294 0.00 2019-09-05 15:28:33 2019-09-05 15:55:56 t 1 2 93773 422 0.00 2019-09-05 13:11:03 2019-09-05 16:32:05 t 1 2 93777 213 0.00 2019-09-05 16:36:41 2019-09-05 16:39:53 t 1 1 93787 445 0.00 2019-09-05 16:52:25 2019-09-05 17:06:12 t 1 1 93573 220 0.00 2019-09-05 09:05:44 2019-09-05 09:06:16 t 1 1 93576 220 0.00 2019-09-05 09:07:23 2019-09-05 09:07:59 t 1 1 93584 220 0.00 2019-09-05 09:11:19 2019-09-05 09:11:52 t 1 1 93585 220 0.00 2019-09-05 09:11:52 2019-09-05 09:12:23 t 1 1 93587 220 0.00 2019-09-05 09:12:58 2019-09-05 09:13:29 t 1 1 93588 220 0.00 2019-09-05 09:13:29 2019-09-05 09:14:01 t 1 1 93595 220 0.00 2019-09-05 09:19:25 2019-09-05 09:20:00 t 1 1 93598 220 0.00 2019-09-05 09:23:09 2019-09-05 09:23:42 t 1 1 93608 220 0.00 2019-09-05 09:30:28 2019-09-05 09:30:43 t 1 1 93611 212 0.00 2019-09-05 09:42:37 2019-09-05 09:43:33 t 1 2 93614 212 0.00 2019-09-05 09:46:28 2019-09-05 09:47:15 t 1 2 93619 212 0.00 2019-09-05 10:15:53 2019-09-05 10:16:11 t 1 2 93621 361 0.00 2019-09-05 10:05:47 2019-09-05 10:25:52 t 1 2 93625 220 0.00 2019-09-05 10:28:03 2019-09-05 10:29:23 t 1 1 93631 402 0.00 2019-09-05 10:29:31 2019-09-05 10:50:48 t 1 2 93632 447 0.00 2019-09-05 10:56:59 2019-09-05 11:00:10 t 1 1 93634 445 0.00 2019-09-05 10:50:52 2019-09-05 11:05:34 t 1 1 93637 445 0.00 2019-09-05 11:08:11 2019-09-05 11:10:37 t 1 1 93639 220 0.00 2019-09-05 11:12:36 2019-09-05 11:16:02 t 1 1 93642 375 0.00 2019-09-05 11:04:33 2019-09-05 11:20:31 t 1 1 93646 220 0.00 2019-09-05 11:24:14 2019-09-05 11:24:47 t 1 1 93647 220 0.00 2019-09-05 11:24:47 2019-09-05 11:25:22 t 1 1 93648 220 0.00 2019-09-05 11:25:21 2019-09-05 11:25:56 t 1 1 93650 355 0.00 2019-09-05 11:08:06 2019-09-05 11:28:12 t 1 2 93652 220 0.00 2019-09-05 11:25:55 2019-09-05 11:29:47 t 1 1 93656 349 0.00 2019-09-05 11:34:55 2019-09-05 11:36:01 t 1 2 93663 220 0.00 2019-09-05 11:42:08 2019-09-05 11:42:42 t 1 1 93664 375 0.00 2019-09-05 11:29:20 2019-09-05 11:43:08 t 1 1 93665 447 0.00 2019-09-05 11:00:14 2019-09-05 11:44:54 t 1 1 93666 213 0.00 2019-09-05 11:39:19 2019-09-05 11:46:31 t 1 1 93668 213 0.00 2019-09-05 11:46:30 2019-09-05 11:48:42 t 1 1 93671 355 0.00 2019-09-05 11:35:10 2019-09-05 11:55:15 t 1 2 93672 445 0.00 2019-09-05 11:42:04 2019-09-05 11:57:29 t 1 1 93673 432 0.00 2019-09-05 11:05:28 2019-09-05 11:58:07 t 1 1 93676 432 0.00 2019-09-05 11:59:47 2019-09-05 11:59:56 t 1 1 93677 355 0.00 2019-09-05 11:46:25 2019-09-05 12:03:39 t 1 2 93683 432 0.00 2019-09-05 12:10:39 2019-09-05 12:10:51 t 1 1 93684 432 0.00 2019-09-05 12:13:00 2019-09-05 12:13:13 t 1 1 93687 411 0.00 2019-09-05 12:16:35 2019-09-05 12:17:41 t 1 1 93690 445 0.00 2019-09-05 12:03:43 2019-09-05 12:29:11 t 1 1 93694 402 0.00 2019-09-05 11:26:38 2019-09-05 12:31:43 t 1 2 93696 447 0.00 2019-09-05 12:30:02 2019-09-05 12:36:47 t 1 1 93700 306 0.00 2019-09-05 12:45:56 2019-09-05 12:47:02 t 1 2 93704 432 0.00 2019-09-05 12:51:34 2019-09-05 12:52:00 t 1 1 93708 432 0.00 2019-09-05 13:00:29 2019-09-05 13:02:12 t 1 1 93710 411 0.00 2019-09-05 12:50:09 2019-09-05 13:07:58 t 1 1 188674 689 0.00 2019-12-07 04:39:19 2019-12-07 04:39:47 t 1 1 93717 445 0.00 2019-09-05 12:45:18 2019-09-05 13:33:36 t 1 1 93722 392 0.00 2019-09-05 13:20:22 2019-09-05 13:45:27 t 1 2 93723 445 0.00 2019-09-05 13:42:44 2019-09-05 13:46:57 t 1 1 93733 402 0.00 2019-09-05 13:26:07 2019-09-05 14:22:01 t 1 2 93736 432 0.00 2019-09-05 14:43:55 2019-09-05 14:45:45 t 1 1 93738 445 0.00 2019-09-05 13:51:17 2019-09-05 14:48:56 t 1 1 93739 402 0.00 2019-09-05 14:22:46 2019-09-05 14:52:51 t 1 2 93740 288 0.00 2019-09-05 14:52:05 2019-09-05 14:53:08 t 1 2 93741 296 0.00 2019-09-05 14:56:14 2019-09-05 15:01:35 t 1 2 93746 392 0.00 2019-09-05 15:07:58 2019-09-05 15:08:01 t 1 2 93752 355 0.00 2019-09-05 15:12:06 2019-09-05 15:15:29 t 1 2 93755 434 0.00 2019-09-05 15:16:55 2019-09-05 15:26:59 t 1 2 93756 213 0.00 2019-09-05 15:22:04 2019-09-05 15:28:23 t 1 1 93760 449 0.00 2019-09-05 14:48:42 2019-09-05 15:41:09 t 1 1 93762 432 0.00 2019-09-05 15:25:46 2019-09-05 15:55:33 t 1 1 93764 445 0.00 2019-09-05 15:55:19 2019-09-05 15:56:47 t 1 1 93765 445 0.00 2019-09-05 15:56:51 2019-09-05 15:57:54 t 1 1 93769 220 0.00 2019-09-05 16:10:32 2019-09-05 16:19:32 t 1 1 93770 296 0.00 2019-09-05 16:22:24 2019-09-05 16:29:47 t 1 2 93774 432 0.00 2019-09-05 16:31:26 2019-09-05 16:32:42 t 1 1 93776 385 0.00 2019-09-05 13:18:11 2019-09-05 16:38:16 t 1 2 93778 292 0.00 2019-09-05 16:43:47 2019-09-05 16:44:55 t 1 2 93781 372 0.00 2019-09-05 16:44:15 2019-09-05 16:47:15 t 1 2 93782 392 0.00 2019-09-05 16:37:10 2019-09-05 16:48:21 t 1 2 93783 402 0.00 2019-09-05 15:12:33 2019-09-05 16:50:52 t 1 2 93784 445 0.00 2019-09-05 16:45:53 2019-09-05 16:52:19 t 1 1 93786 402 0.00 2019-09-05 16:54:42 2019-09-05 16:58:10 t 1 2 93789 445 0.00 2019-09-05 17:09:56 2019-09-05 17:12:31 t 1 1 93792 445 0.00 2019-09-05 17:16:15 2019-09-05 17:16:50 t 1 1 93794 445 0.00 2019-09-05 17:17:16 2019-09-05 17:18:07 t 1 1 93797 402 0.00 2019-09-05 17:01:51 2019-09-05 17:21:56 t 1 2 93798 445 0.00 2019-09-05 17:21:23 2019-09-05 17:23:08 t 1 1 93802 333 0.00 2019-09-05 17:23:53 2019-09-05 17:39:12 t 1 2 93804 306 0.00 2019-09-05 17:51:20 2019-09-05 17:52:21 t 1 2 93806 372 0.00 2019-09-05 17:42:32 2019-09-05 18:02:08 t 1 2 93807 372 0.00 2019-09-05 18:03:57 2019-09-05 18:04:03 t 1 2 93809 372 0.00 2019-09-05 18:02:11 2019-09-05 18:12:17 t 1 2 93811 402 0.00 2019-09-05 18:09:33 2019-09-05 18:14:39 t 1 2 93812 402 0.00 2019-09-05 18:15:11 2019-09-05 18:16:04 t 1 2 93814 372 0.00 2019-09-05 18:28:15 2019-09-05 18:31:15 t 1 2 93816 451 0.00 2019-09-05 18:37:12 2019-09-05 18:37:53 t 1 1 93817 375 0.00 2019-09-05 17:06:52 2019-09-05 18:38:56 t 1 1 93825 451 0.00 2019-09-05 19:18:09 2019-09-05 19:20:50 t 1 1 93830 213 0.00 2019-09-05 19:26:49 2019-09-05 19:29:50 t 1 1 93834 412 0.00 2019-09-05 13:28:38 2019-09-05 19:52:30 t 1 1 93835 400 0.00 2019-09-05 19:45:46 2019-09-05 19:55:51 t 1 2 93836 213 0.00 2019-09-05 19:49:26 2019-09-05 19:57:12 t 1 1 93839 213 0.00 2019-09-05 20:15:48 2019-09-05 20:19:01 t 1 1 93844 294 0.00 2019-09-05 20:28:22 2019-09-05 20:46:45 t 1 2 93846 296 0.00 2019-09-05 20:26:26 2019-09-05 20:47:49 t 1 2 93850 412 0.00 2019-09-05 19:54:14 2019-09-05 20:54:00 t 1 1 93855 213 0.00 2019-09-05 20:58:39 2019-09-05 21:04:09 t 1 1 93857 213 0.00 2019-09-05 21:06:29 2019-09-05 21:09:00 t 1 1 93859 306 0.00 2019-09-05 21:18:23 2019-09-05 21:19:24 t 1 2 93860 220 0.00 2019-09-05 19:47:58 2019-09-05 21:19:57 t 1 1 93861 220 0.00 2019-09-05 21:19:56 2019-09-05 21:21:03 t 1 1 93864 213 0.00 2019-09-05 21:17:50 2019-09-05 21:24:10 t 1 1 93867 220 0.00 2019-09-05 21:28:02 2019-09-05 21:28:57 t 1 1 93869 306 0.00 2019-09-05 21:30:15 2019-09-05 21:31:17 t 1 2 93871 400 0.00 2019-09-05 21:12:20 2019-09-05 21:42:25 t 1 2 93617 375 0.00 2019-09-05 09:56:53 2019-09-05 10:10:37 t 1 1 93618 375 0.00 2019-09-05 10:10:37 2019-09-05 10:14:50 t 1 1 93629 355 0.00 2019-09-05 10:29:07 2019-09-05 10:47:16 t 1 2 93633 375 0.00 2019-09-05 10:43:44 2019-09-05 11:04:28 t 1 1 93635 296 0.00 2019-09-05 11:05:35 2019-09-05 11:09:58 t 1 2 93641 361 0.00 2019-09-05 10:21:18 2019-09-05 11:19:08 t 1 2 93644 220 0.00 2019-09-05 11:23:06 2019-09-05 11:23:41 t 1 1 93645 220 0.00 2019-09-05 11:23:41 2019-09-05 11:24:14 t 1 1 93649 402 0.00 2019-09-05 11:21:21 2019-09-05 11:26:34 t 1 2 93651 445 0.00 2019-09-05 11:11:31 2019-09-05 11:29:35 t 1 1 93654 220 0.00 2019-09-05 11:29:46 2019-09-05 11:30:34 t 1 1 93655 400 0.00 2019-09-05 11:04:32 2019-09-05 11:34:37 t 1 2 93659 220 0.00 2019-09-05 11:36:54 2019-09-05 11:37:35 t 1 1 93660 367 0.00 2019-09-05 11:41:45 2019-09-05 11:41:51 t 1 2 93662 220 0.00 2019-09-05 11:37:34 2019-09-05 11:42:09 t 1 1 93667 375 0.00 2019-09-05 11:43:21 2019-09-05 11:46:48 t 1 1 93670 296 0.00 2019-09-05 11:51:19 2019-09-05 11:54:42 t 1 2 93680 220 0.00 2019-09-05 11:42:41 2019-09-05 12:09:06 t 1 1 93682 220 0.00 2019-09-05 12:09:06 2019-09-05 12:10:39 t 1 1 93685 432 0.00 2019-09-05 12:15:25 2019-09-05 12:15:36 t 1 1 93686 411 0.00 2019-09-05 08:51:59 2019-09-05 12:16:35 t 1 1 93692 447 0.00 2019-09-05 12:29:28 2019-09-05 12:29:51 t 1 1 93693 400 0.00 2019-09-05 12:20:00 2019-09-05 12:30:05 t 1 2 93697 327 0.00 2019-09-05 11:41:11 2019-09-05 12:41:17 t 1 2 93699 432 0.00 2019-09-05 12:41:29 2019-09-05 12:41:31 t 1 1 93701 411 0.00 2019-09-05 12:17:47 2019-09-05 12:48:57 t 1 1 93703 449 0.00 2019-09-05 12:51:23 2019-09-05 12:51:34 t 1 1 93705 213 0.00 2019-09-05 12:50:22 2019-09-05 12:52:15 t 1 1 93706 449 0.00 2019-09-05 12:53:20 2019-09-05 12:55:28 t 1 1 93707 379 0.00 2019-09-05 09:19:34 2019-09-05 12:59:39 t 1 2 93709 212 0.00 2019-09-05 13:02:30 2019-09-05 13:02:57 t 1 2 93711 392 0.00 2019-09-05 13:14:32 2019-09-05 13:20:17 t 1 2 93712 432 0.00 2019-09-05 13:06:03 2019-09-05 13:25:46 t 1 1 93713 432 0.00 2019-09-05 13:26:24 2019-09-05 13:27:24 t 1 1 93714 432 0.00 2019-09-05 13:26:39 2019-09-05 13:28:05 t 1 1 93715 375 0.00 2019-09-05 12:42:32 2019-09-05 13:29:02 t 1 1 93720 445 0.00 2019-09-05 13:38:15 2019-09-05 13:42:44 t 1 1 93721 349 0.00 2019-09-05 13:44:12 2019-09-05 13:44:12 f 1 2 93729 247 0.00 2019-09-05 14:04:47 2019-09-05 14:05:26 t 1 2 93730 436 0.00 2019-09-05 14:11:26 2019-09-05 14:16:22 t 1 1 93732 212 0.00 2019-09-05 14:17:36 2019-09-05 14:17:58 t 1 2 93734 400 0.00 2019-09-05 13:41:33 2019-09-05 14:26:38 t 1 2 93744 402 0.00 2019-09-05 14:47:31 2019-09-05 15:07:00 t 1 2 93748 392 0.00 2019-09-05 15:10:17 2019-09-05 15:10:26 t 1 2 93750 213 0.00 2019-09-05 15:08:37 2019-09-05 15:13:00 t 1 1 93758 220 0.00 2019-09-05 14:36:04 2019-09-05 15:36:25 t 1 2 93766 445 0.00 2019-09-05 15:57:59 2019-09-05 16:01:45 t 1 1 93767 247 0.00 2019-09-05 16:06:08 2019-09-05 16:08:30 t 1 2 93768 432 0.00 2019-09-05 16:18:10 2019-09-05 16:18:47 t 1 1 93771 432 0.00 2019-09-05 16:20:05 2019-09-05 16:29:48 t 1 1 93772 432 0.00 2019-09-05 16:30:16 2019-09-05 16:30:29 t 1 1 93775 218 0.00 2019-09-05 16:35:16 2019-09-05 16:35:16 f 1 2 93779 445 0.00 2019-09-05 16:01:50 2019-09-05 16:45:31 t 1 1 93780 432 0.00 2019-09-05 16:33:34 2019-09-05 16:46:28 t 1 1 93785 363 0.00 2019-09-05 15:23:34 2019-09-05 16:53:39 t 1 2 93788 445 0.00 2019-09-05 17:06:27 2019-09-05 17:09:46 t 1 1 93791 445 0.00 2019-09-05 17:14:07 2019-09-05 17:16:03 t 1 1 93796 445 0.00 2019-09-05 17:18:09 2019-09-05 17:21:27 t 1 1 93799 445 0.00 2019-09-05 17:23:25 2019-09-05 17:24:18 t 1 1 93808 402 0.00 2019-09-05 17:52:42 2019-09-05 18:07:46 t 1 2 93813 372 0.00 2019-09-05 18:14:51 2019-09-05 18:27:57 t 1 2 93815 306 0.00 2019-09-05 18:32:59 2019-09-05 18:34:03 t 1 2 93818 306 0.00 2019-09-05 18:38:24 2019-09-05 18:39:26 t 1 2 93819 451 0.00 2019-09-05 18:37:57 2019-09-05 18:40:45 t 1 1 93820 402 0.00 2019-09-05 18:15:53 2019-09-05 18:48:53 t 1 2 93821 402 0.00 2019-09-05 18:48:08 2019-09-05 19:03:13 t 1 2 93822 220 0.00 2019-09-05 18:59:11 2019-09-05 19:09:16 t 1 2 93823 375 0.00 2019-09-05 18:39:38 2019-09-05 19:13:33 t 1 1 93824 247 0.00 2019-09-05 19:19:01 2019-09-05 19:19:50 t 1 2 93828 402 0.00 2019-09-05 19:19:13 2019-09-05 19:29:19 t 1 2 93831 213 0.00 2019-09-05 19:30:24 2019-09-05 19:31:38 t 1 1 93832 451 0.00 2019-09-05 19:37:36 2019-09-05 19:40:14 t 1 1 188675 639 0.00 2019-12-07 04:41:07 2019-12-07 04:41:30 t 1 1 93837 402 0.00 2019-09-05 19:49:47 2019-09-05 20:03:55 t 1 2 93841 402 0.00 2019-09-05 20:20:08 2019-09-05 20:30:14 t 1 2 93843 213 0.00 2019-09-05 20:32:52 2019-09-05 20:36:06 t 1 1 93851 357 0.00 2019-09-05 17:44:24 2019-09-05 20:54:29 t 1 2 93852 400 0.00 2019-09-05 20:54:28 2019-09-05 20:55:18 t 1 2 93856 306 0.00 2019-09-05 21:03:13 2019-09-05 21:04:13 t 1 2 93858 213 0.00 2019-09-05 21:10:41 2019-09-05 21:15:17 t 1 1 93863 220 0.00 2019-09-05 21:23:36 2019-09-05 21:23:42 t 1 1 93866 292 0.00 2019-09-05 21:27:08 2019-09-05 21:28:10 t 1 2 93872 213 0.00 2019-09-05 21:31:00 2019-09-05 21:44:45 t 1 1 93873 420 0.00 2019-09-05 21:38:13 2019-09-05 21:48:39 t 1 1 93874 449 0.00 2019-09-05 18:55:56 2019-09-05 21:50:57 t 1 1 93881 400 0.00 2019-09-05 21:42:06 2019-09-05 21:57:11 t 1 2 93884 432 0.00 2019-09-05 22:03:28 2019-09-05 22:04:08 t 1 1 93885 220 0.00 2019-09-05 21:56:12 2019-09-05 22:10:32 t 1 1 93887 422 0.00 2019-09-05 22:12:04 2019-09-05 22:13:20 t 1 2 93888 432 0.00 2019-09-05 22:13:12 2019-09-05 22:15:44 t 1 1 93890 432 0.00 2019-09-05 22:18:31 2019-09-05 22:19:05 t 1 1 93891 346 0.00 2019-09-05 22:19:39 2019-09-05 22:19:39 f 1 2 93892 432 0.00 2019-09-05 22:19:53 2019-09-05 22:19:59 t 1 1 93895 213 0.00 2019-09-05 22:18:43 2019-09-05 22:23:56 t 1 1 93899 432 0.00 2019-09-05 22:31:21 2019-09-05 22:32:08 t 1 1 93904 432 0.00 2019-09-05 22:34:15 2019-09-05 22:34:22 t 1 1 93906 335 0.00 2019-09-05 22:22:51 2019-09-05 22:42:56 t 1 2 93907 213 0.00 2019-09-05 22:34:56 2019-09-05 22:46:32 t 1 1 93909 335 0.00 2019-09-05 22:41:53 2019-09-05 22:51:58 t 1 2 93910 385 0.00 2019-09-05 22:20:12 2019-09-05 22:53:01 t 1 2 93913 408 0.00 2019-09-05 22:51:38 2019-09-05 22:55:32 t 1 2 93914 335 0.00 2019-09-05 22:47:51 2019-09-05 22:57:56 t 1 2 93917 335 0.00 2019-09-05 22:56:25 2019-09-05 23:06:30 t 1 2 93927 212 0.00 2019-09-05 23:16:52 2019-09-05 23:27:26 t 1 2 93930 432 0.00 2019-09-05 23:23:51 2019-09-05 23:31:35 t 1 1 93932 432 0.00 2019-09-05 23:31:35 2019-09-05 23:36:27 t 1 1 93935 402 0.00 2019-09-05 23:36:29 2019-09-05 23:43:57 t 1 2 93790 445 0.00 2019-09-05 17:12:38 2019-09-05 17:14:02 t 1 1 93793 392 0.00 2019-09-05 17:14:13 2019-09-05 17:17:01 t 1 2 188679 639 0.00 2019-12-07 04:47:09 2019-12-07 04:47:33 t 1 1 93800 428 0.00 2019-09-05 17:24:18 2019-09-05 17:31:33 t 1 1 93801 288 0.00 2019-09-05 17:33:35 2019-09-05 17:34:39 t 1 2 93803 212 0.00 2019-09-05 17:07:14 2019-09-05 17:52:19 t 1 2 93805 402 0.00 2019-09-05 17:49:55 2019-09-05 17:52:47 t 1 2 93810 212 0.00 2019-09-05 18:13:44 2019-09-05 18:14:05 t 1 2 93826 375 0.00 2019-09-05 19:13:33 2019-09-05 19:21:14 t 1 1 93827 294 0.00 2019-09-05 19:04:23 2019-09-05 19:27:55 t 1 2 93829 375 0.00 2019-09-05 19:22:16 2019-09-05 19:29:39 t 1 1 93838 213 0.00 2019-09-05 20:13:33 2019-09-05 20:15:29 t 1 1 93840 402 0.00 2019-09-05 20:14:23 2019-09-05 20:24:28 t 1 2 93842 375 0.00 2019-09-05 19:36:21 2019-09-05 20:30:21 t 1 1 93845 220 0.00 2019-09-05 20:37:44 2019-09-05 20:47:49 t 1 2 93847 375 0.00 2019-09-05 20:30:31 2019-09-05 20:49:25 t 1 1 93848 402 0.00 2019-09-05 20:33:43 2019-09-05 20:51:06 t 1 2 93849 331 0.00 2019-09-05 20:51:06 2019-09-05 20:52:07 t 1 2 93853 213 0.00 2019-09-05 20:54:58 2019-09-05 20:58:40 t 1 1 93854 400 0.00 2019-09-05 20:25:06 2019-09-05 21:00:11 t 1 2 93862 220 0.00 2019-09-05 21:21:02 2019-09-05 21:22:48 t 1 1 93865 220 0.00 2019-09-05 21:23:42 2019-09-05 21:28:02 t 1 1 93868 213 0.00 2019-09-05 21:25:01 2019-09-05 21:30:05 t 1 1 93870 306 0.00 2019-09-05 21:39:02 2019-09-05 21:40:06 t 1 2 93877 432 0.00 2019-09-05 21:54:00 2019-09-05 21:54:18 t 1 1 93879 247 0.00 2019-09-05 21:51:57 2019-09-05 21:55:41 t 1 2 93880 294 0.00 2019-09-05 20:56:07 2019-09-05 21:56:31 t 1 2 93882 432 0.00 2019-09-05 21:58:20 2019-09-05 21:58:28 t 1 1 93883 213 0.00 2019-09-05 21:59:28 2019-09-05 22:02:11 t 1 1 93886 432 0.00 2019-09-05 22:08:07 2019-09-05 22:12:27 t 1 1 93894 432 0.00 2019-09-05 22:21:27 2019-09-05 22:22:41 t 1 1 93898 402 0.00 2019-09-05 22:19:34 2019-09-05 22:29:39 t 1 2 93900 411 0.00 2019-09-05 14:01:14 2019-09-05 22:32:52 t 1 1 93901 432 0.00 2019-09-05 22:32:52 2019-09-05 22:33:00 t 1 1 93903 213 0.00 2019-09-05 22:32:13 2019-09-05 22:34:12 t 1 1 93911 392 0.00 2019-09-05 22:43:40 2019-09-05 22:53:32 t 1 2 93918 432 0.00 2019-09-05 22:35:31 2019-09-05 23:07:56 t 1 1 93921 213 0.00 2019-09-05 23:09:22 2019-09-05 23:16:54 t 1 1 93922 335 0.00 2019-09-05 23:04:24 2019-09-05 23:19:29 t 1 2 93926 213 0.00 2019-09-05 23:24:18 2019-09-05 23:26:33 t 1 1 93928 402 0.00 2019-09-05 22:44:32 2019-09-05 23:27:45 t 1 2 93931 402 0.00 2019-09-05 23:30:06 2019-09-05 23:35:04 t 1 2 93933 212 0.00 2019-09-05 23:40:38 2019-09-05 23:41:46 t 1 2 93934 408 0.00 2019-09-05 23:42:15 2019-09-05 23:43:20 t 1 2 93941 432 0.00 2019-09-05 23:46:20 2019-09-05 23:53:09 t 1 1 188693 639 0.00 2019-12-07 04:57:57 2019-12-07 04:58:25 t 1 1 93946 432 0.00 2019-09-05 23:55:47 2019-09-05 23:59:38 t 1 1 93951 213 0.00 2019-09-06 00:10:18 2019-09-06 00:13:02 t 1 1 93952 212 0.00 2019-09-06 00:13:30 2019-09-06 00:13:54 t 1 2 93953 432 0.00 2019-09-06 00:10:35 2019-09-06 00:15:25 t 1 1 93955 213 0.00 2019-09-06 00:13:41 2019-09-06 00:17:34 t 1 1 93958 355 0.00 2019-09-06 00:21:16 2019-09-06 00:38:11 t 1 2 93962 392 0.00 2019-09-06 00:58:22 2019-09-06 01:00:42 t 1 2 93963 412 0.00 2019-09-06 00:45:10 2019-09-06 01:01:15 t 1 1 93965 212 0.00 2019-09-06 01:02:41 2019-09-06 01:03:01 t 1 2 93974 392 0.00 2019-09-06 03:16:30 2019-09-06 03:19:00 t 1 2 93975 335 0.00 2019-09-06 02:55:50 2019-09-06 03:30:55 t 1 2 93978 213 0.00 2019-09-06 03:53:39 2019-09-06 03:56:03 t 1 1 93979 335 0.00 2019-09-06 03:44:59 2019-09-06 04:05:04 t 1 2 93981 420 0.00 2019-09-06 06:40:05 2019-09-06 06:56:21 t 1 1 93982 420 0.00 2019-09-06 06:56:21 2019-09-06 07:09:54 t 1 1 93984 420 0.00 2019-09-06 07:09:54 2019-09-06 07:24:34 t 1 1 93987 220 0.00 2019-09-06 07:41:49 2019-09-06 07:45:28 t 1 1 93996 220 0.00 2019-09-06 08:34:43 2019-09-06 09:01:39 t 1 1 93998 220 0.00 2019-09-06 09:01:28 2019-09-06 09:02:37 t 1 1 94001 294 0.00 2019-09-06 08:10:16 2019-09-06 09:10:40 t 1 2 94003 361 0.00 2019-09-06 08:13:45 2019-09-06 09:15:57 t 1 2 94007 408 0.00 2019-09-06 09:26:41 2019-09-06 09:29:05 t 1 2 94011 346 0.00 2019-09-06 09:35:47 2019-09-06 09:35:47 f 1 2 94012 296 0.00 2019-09-06 09:34:57 2019-09-06 09:37:17 t 1 2 94013 385 0.00 2019-09-06 09:06:48 2019-09-06 09:41:07 t 1 2 94014 430 0.00 2019-09-06 09:42:28 2019-09-06 09:44:23 t 1 1 94018 430 0.00 2019-09-06 09:51:27 2019-09-06 09:53:15 t 1 1 94019 430 0.00 2019-09-06 09:54:34 2019-09-06 09:54:38 t 1 1 94023 294 0.00 2019-09-06 09:22:49 2019-09-06 10:05:29 t 1 2 94028 402 0.00 2019-09-06 10:14:24 2019-09-06 10:15:53 t 1 2 94029 400 0.00 2019-09-06 10:08:30 2019-09-06 10:23:35 t 1 2 94032 306 0.00 2019-09-06 10:32:11 2019-09-06 10:33:17 t 1 2 94033 402 0.00 2019-09-06 10:28:56 2019-09-06 10:35:01 t 1 2 94035 306 0.00 2019-09-06 10:42:36 2019-09-06 10:43:39 t 1 2 94036 213 0.00 2019-09-06 10:39:59 2019-09-06 10:46:03 t 1 1 94039 213 0.00 2019-09-06 10:46:03 2019-09-06 10:50:36 t 1 1 94050 306 0.00 2019-09-06 11:04:52 2019-09-06 11:05:53 t 1 2 94051 430 0.00 2019-09-06 11:03:47 2019-09-06 11:07:47 t 1 1 94052 335 0.00 2019-09-06 10:56:22 2019-09-06 11:08:07 t 1 2 94057 335 0.00 2019-09-06 11:09:22 2019-09-06 11:34:27 t 1 2 94059 402 0.00 2019-09-06 11:03:26 2019-09-06 11:36:26 t 1 2 94061 306 0.00 2019-09-06 11:36:43 2019-09-06 11:37:47 t 1 2 94064 335 0.00 2019-09-06 11:35:46 2019-09-06 11:45:51 t 1 2 94068 412 0.00 2019-09-06 11:49:48 2019-09-06 12:01:37 t 1 1 94072 402 0.00 2019-09-06 11:48:37 2019-09-06 12:10:24 t 1 2 94083 385 0.00 2019-09-06 12:14:07 2019-09-06 12:15:30 t 1 2 94084 385 0.00 2019-09-06 12:15:23 2019-09-06 12:17:43 t 1 2 94087 220 0.00 2019-09-06 12:21:16 2019-09-06 12:21:52 t 1 1 94090 220 0.00 2019-09-06 12:25:56 2019-09-06 12:26:31 t 1 1 94091 449 0.00 2019-09-06 12:12:25 2019-09-06 12:27:13 t 1 1 94092 220 0.00 2019-09-06 12:26:30 2019-09-06 12:27:17 t 1 1 94094 385 0.00 2019-09-06 12:18:21 2019-09-06 12:32:44 t 1 2 94100 220 0.00 2019-09-06 12:36:09 2019-09-06 12:36:42 t 1 1 94114 220 0.00 2019-09-06 12:42:25 2019-09-06 12:43:00 t 1 1 94116 220 0.00 2019-09-06 12:43:00 2019-09-06 12:43:33 t 1 1 94120 385 0.00 2019-09-06 12:47:31 2019-09-06 12:47:31 f 1 2 94121 306 0.00 2019-09-06 12:46:54 2019-09-06 12:47:57 t 1 2 94122 220 0.00 2019-09-06 12:47:19 2019-09-06 12:48:12 t 1 1 94123 432 0.00 2019-09-06 12:48:13 2019-09-06 12:48:55 t 1 1 94126 220 0.00 2019-09-06 12:49:40 2019-09-06 12:50:11 t 1 1 94128 346 0.00 2019-09-06 12:52:49 2019-09-06 12:52:49 f 1 2 93875 213 0.00 2019-09-05 21:48:54 2019-09-05 21:51:51 t 1 1 93876 432 0.00 2019-09-05 20:54:00 2019-09-05 21:52:14 t 1 1 93878 449 0.00 2019-09-05 21:50:56 2019-09-05 21:54:30 t 1 1 188680 639 0.00 2019-12-07 04:47:48 2019-12-07 04:48:17 t 1 1 93893 432 0.00 2019-09-05 22:20:59 2019-09-05 22:21:28 t 1 1 93896 392 0.00 2019-09-05 21:51:36 2019-09-05 22:25:21 t 1 2 93897 213 0.00 2019-09-05 22:27:23 2019-09-05 22:28:43 t 1 1 93902 212 0.00 2019-09-05 22:32:51 2019-09-05 22:33:14 t 1 2 93905 420 0.00 2019-09-05 22:35:45 2019-09-05 22:40:29 t 1 1 93908 420 0.00 2019-09-05 22:40:29 2019-09-05 22:48:18 t 1 1 93912 213 0.00 2019-09-05 22:51:22 2019-09-05 22:53:48 t 1 1 93915 213 0.00 2019-09-05 22:54:34 2019-09-05 23:01:51 t 1 1 93916 213 0.00 2019-09-05 23:02:36 2019-09-05 23:04:06 t 1 1 93919 294 0.00 2019-09-05 22:13:18 2019-09-05 23:13:41 t 1 2 93920 445 0.00 2019-09-05 23:01:02 2019-09-05 23:15:28 t 1 1 93923 355 0.00 2019-09-05 23:17:16 2019-09-05 23:22:39 t 1 2 93924 432 0.00 2019-09-05 23:07:56 2019-09-05 23:23:51 t 1 1 93925 445 0.00 2019-09-05 23:15:28 2019-09-05 23:26:08 t 1 1 93929 392 0.00 2019-09-05 23:09:58 2019-09-05 23:29:45 t 1 2 93937 361 0.00 2019-09-05 23:18:40 2019-09-05 23:48:45 t 1 2 93939 335 0.00 2019-09-05 23:36:29 2019-09-05 23:51:34 t 1 2 93942 432 0.00 2019-09-05 23:53:09 2019-09-05 23:54:27 t 1 1 93945 402 0.00 2019-09-05 23:53:18 2019-09-05 23:58:35 t 1 2 93947 355 0.00 2019-09-06 00:00:41 2019-09-06 00:05:54 t 1 2 93959 335 0.00 2019-09-06 00:25:26 2019-09-06 00:45:31 t 1 2 93966 392 0.00 2019-09-06 01:00:49 2019-09-06 01:35:17 t 1 2 93967 335 0.00 2019-09-06 01:34:21 2019-09-06 01:44:27 t 1 2 93968 385 0.00 2019-09-05 23:39:58 2019-09-06 01:52:25 t 1 2 93971 346 0.00 2019-09-06 02:39:08 2019-09-06 02:39:08 f 1 2 93972 339 0.00 2019-09-06 01:48:11 2019-09-06 02:48:50 t 1 2 93976 322 0.00 2019-09-06 02:24:19 2019-09-06 03:38:26 t 1 2 93980 422 0.00 2019-09-06 05:48:57 2019-09-06 06:41:45 t 1 2 93983 294 0.00 2019-09-06 06:21:43 2019-09-06 07:22:06 t 1 2 93986 402 0.00 2019-09-06 00:11:33 2019-09-06 07:33:49 t 1 2 93988 212 0.00 2019-09-06 07:55:30 2019-09-06 07:55:53 t 1 2 93989 212 0.00 2019-09-06 08:08:41 2019-09-06 08:10:10 t 1 2 93990 402 0.00 2019-09-06 08:04:12 2019-09-06 08:22:18 t 1 2 93991 306 0.00 2019-09-06 08:26:36 2019-09-06 08:27:43 t 1 2 93992 306 0.00 2019-09-06 08:29:24 2019-09-06 08:30:28 t 1 2 93993 402 0.00 2019-09-06 08:22:38 2019-09-06 08:32:32 t 1 2 93994 292 0.00 2019-09-06 08:49:53 2019-09-06 08:50:57 t 1 2 93995 408 0.00 2019-09-06 08:20:32 2019-09-06 08:55:52 t 1 2 93997 212 0.00 2019-09-06 09:01:05 2019-09-06 09:02:08 t 1 2 93999 220 0.00 2019-09-06 09:03:07 2019-09-06 09:04:27 t 1 1 94000 213 0.00 2019-09-06 09:07:02 2019-09-06 09:09:55 t 1 1 94002 213 0.00 2019-09-06 09:09:54 2019-09-06 09:11:26 t 1 1 94004 212 0.00 2019-09-06 09:18:05 2019-09-06 09:18:24 t 1 2 94005 306 0.00 2019-09-06 09:26:58 2019-09-06 09:28:06 t 1 2 94006 346 0.00 2019-09-06 09:28:57 2019-09-06 09:28:57 f 1 2 94008 220 0.00 2019-09-06 09:04:53 2019-09-06 09:30:05 t 1 1 94015 430 0.00 2019-09-06 09:46:18 2019-09-06 09:46:20 t 1 1 94022 430 0.00 2019-09-06 09:58:22 2019-09-06 10:00:51 t 1 1 94024 400 0.00 2019-09-06 09:26:27 2019-09-06 10:06:32 t 1 2 94027 432 0.00 2019-09-06 10:07:23 2019-09-06 10:13:31 t 1 1 94030 402 0.00 2019-09-06 10:20:28 2019-09-06 10:27:14 t 1 2 94038 408 0.00 2019-09-06 10:46:36 2019-09-06 10:49:23 t 1 2 94041 430 0.00 2019-09-06 10:51:14 2019-09-06 10:52:15 t 1 1 94042 213 0.00 2019-09-06 10:50:36 2019-09-06 10:52:59 t 1 1 94044 430 0.00 2019-09-06 10:55:24 2019-09-06 10:58:02 t 1 1 94045 430 0.00 2019-09-06 10:59:34 2019-09-06 10:59:35 t 1 1 94046 213 0.00 2019-09-06 10:57:16 2019-09-06 11:00:50 t 1 1 94047 430 0.00 2019-09-06 10:59:38 2019-09-06 11:02:21 t 1 1 94053 430 0.00 2019-09-06 11:08:39 2019-09-06 11:09:51 t 1 1 94058 335 0.00 2019-09-06 11:26:19 2019-09-06 11:36:24 t 1 2 94060 213 0.00 2019-09-06 11:34:38 2019-09-06 11:37:36 t 1 1 94063 402 0.00 2019-09-06 11:36:42 2019-09-06 11:45:20 t 1 2 94065 430 0.00 2019-09-06 11:36:42 2019-09-06 11:46:52 t 1 1 94067 430 0.00 2019-09-06 11:47:33 2019-09-06 11:49:48 t 1 1 94069 220 0.00 2019-09-06 11:34:17 2019-09-06 12:03:13 t 1 1 94073 306 0.00 2019-09-06 12:09:51 2019-09-06 12:11:01 t 1 2 94075 385 0.00 2019-09-06 11:40:26 2019-09-06 12:11:49 t 1 2 94077 449 0.00 2019-09-06 11:47:24 2019-09-06 12:12:25 t 1 1 94079 385 0.00 2019-09-06 12:14:26 2019-09-06 12:14:26 f 1 2 94081 420 0.00 2019-09-06 12:03:15 2019-09-06 12:14:49 t 1 1 94101 294 0.00 2019-09-06 11:54:17 2019-09-06 12:36:56 t 1 2 94103 402 0.00 2019-09-06 12:24:10 2019-09-06 12:37:26 t 1 2 94105 220 0.00 2019-09-06 12:37:46 2019-09-06 12:38:21 t 1 1 94106 220 0.00 2019-09-06 12:38:21 2019-09-06 12:39:02 t 1 1 94109 449 0.00 2019-09-06 12:34:35 2019-09-06 12:40:22 t 1 1 94110 220 0.00 2019-09-06 12:40:08 2019-09-06 12:40:43 t 1 1 94111 220 0.00 2019-09-06 12:40:43 2019-09-06 12:41:17 t 1 1 94117 335 0.00 2019-09-06 12:26:49 2019-09-06 12:46:54 t 1 2 94118 385 0.00 2019-09-06 12:46:59 2019-09-06 12:46:59 f 1 2 94127 392 0.00 2019-09-06 12:07:12 2019-09-06 12:51:07 t 1 2 94131 385 0.00 2019-09-06 12:49:43 2019-09-06 12:56:06 t 1 2 94134 220 0.00 2019-09-06 12:56:24 2019-09-06 12:57:46 t 1 1 94136 432 0.00 2019-09-06 12:58:23 2019-09-06 12:58:30 t 1 1 94137 220 0.00 2019-09-06 12:58:20 2019-09-06 12:59:05 t 1 1 94140 220 0.00 2019-09-06 12:59:39 2019-09-06 13:01:08 t 1 1 94145 220 0.00 2019-09-06 13:05:14 2019-09-06 13:05:49 t 1 1 94146 220 0.00 2019-09-06 13:05:49 2019-09-06 13:06:53 t 1 1 94147 432 0.00 2019-09-06 13:07:11 2019-09-06 13:07:17 t 1 1 94149 213 0.00 2019-09-06 13:01:00 2019-09-06 13:07:39 t 1 1 94152 432 0.00 2019-09-06 13:08:16 2019-09-06 13:09:17 t 1 1 94154 220 0.00 2019-09-06 13:09:42 2019-09-06 13:10:17 t 1 1 94159 402 0.00 2019-09-06 13:09:56 2019-09-06 13:13:24 t 1 2 94162 220 0.00 2019-09-06 13:14:13 2019-09-06 13:14:48 t 1 1 94163 220 0.00 2019-09-06 13:14:48 2019-09-06 13:15:21 t 1 1 94164 220 0.00 2019-09-06 13:15:21 2019-09-06 13:15:58 t 1 1 94168 220 0.00 2019-09-06 13:17:41 2019-09-06 13:18:16 t 1 1 94170 220 0.00 2019-09-06 13:18:16 2019-09-06 13:18:51 t 1 1 94171 220 0.00 2019-09-06 13:18:50 2019-09-06 13:19:26 t 1 1 94172 220 0.00 2019-09-06 13:19:26 2019-09-06 13:20:03 t 1 1 94178 306 0.00 2019-09-06 13:38:37 2019-09-06 13:39:41 t 1 2 94180 213 0.00 2019-09-06 13:38:10 2019-09-06 13:41:33 t 1 1 94183 335 0.00 2019-09-06 13:32:35 2019-09-06 13:42:41 t 1 2 94184 306 0.00 2019-09-06 13:42:22 2019-09-06 13:43:24 t 1 2 93936 432 0.00 2019-09-05 23:36:27 2019-09-05 23:46:20 t 1 1 188681 639 0.00 2019-12-07 04:46:33 2019-12-07 04:48:22 t 1 1 93940 402 0.00 2019-09-05 23:49:38 2019-09-05 23:51:43 t 1 2 93943 381 0.00 2019-09-05 23:42:56 2019-09-05 23:58:01 t 1 2 93948 402 0.00 2019-09-06 00:03:51 2019-09-06 00:10:09 t 1 2 93949 381 0.00 2019-09-05 23:50:34 2019-09-06 00:10:39 t 1 2 93950 361 0.00 2019-09-05 23:50:17 2019-09-06 00:11:42 t 1 2 93954 432 0.00 2019-09-06 00:15:30 2019-09-06 00:17:11 t 1 1 93956 292 0.00 2019-09-06 00:24:46 2019-09-06 00:25:50 t 1 2 93957 220 0.00 2019-09-06 00:15:35 2019-09-06 00:31:22 t 1 1 93960 445 0.00 2019-09-05 23:26:08 2019-09-06 00:54:31 t 1 1 93961 335 0.00 2019-09-06 00:50:36 2019-09-06 01:00:41 t 1 2 93964 392 0.00 2019-09-06 00:07:30 2019-09-06 01:02:35 t 1 2 93969 400 0.00 2019-09-06 00:25:56 2019-09-06 02:21:01 t 1 2 93970 335 0.00 2019-09-06 02:17:46 2019-09-06 02:27:51 t 1 2 93973 392 0.00 2019-09-06 01:48:55 2019-09-06 03:10:10 t 1 2 93977 213 0.00 2019-09-06 03:45:15 2019-09-06 03:49:25 t 1 1 93985 420 0.00 2019-09-06 07:24:34 2019-09-06 07:26:36 t 1 1 94009 346 0.00 2019-09-06 09:30:34 2019-09-06 09:30:34 f 1 2 94010 346 0.00 2019-09-06 09:35:35 2019-09-06 09:35:35 f 1 2 94016 402 0.00 2019-09-06 08:32:45 2019-09-06 09:47:50 t 1 2 94017 402 0.00 2019-09-06 09:45:23 2019-09-06 09:50:59 t 1 2 94020 430 0.00 2019-09-06 09:56:04 2019-09-06 09:56:21 t 1 1 94021 430 0.00 2019-09-06 09:56:30 2019-09-06 09:58:50 t 1 1 94025 400 0.00 2019-09-06 10:00:33 2019-09-06 10:10:38 t 1 2 94026 212 0.00 2019-09-06 10:12:16 2019-09-06 10:13:22 t 1 2 94031 306 0.00 2019-09-06 10:30:13 2019-09-06 10:31:16 t 1 2 94034 306 0.00 2019-09-06 10:36:03 2019-09-06 10:37:09 t 1 2 94037 385 0.00 2019-09-06 09:21:21 2019-09-06 10:46:26 t 1 2 94040 430 0.00 2019-09-06 10:50:28 2019-09-06 10:50:39 t 1 1 94043 212 0.00 2019-09-06 10:56:36 2019-09-06 10:57:00 t 1 2 94048 402 0.00 2019-09-06 11:03:05 2019-09-06 11:03:13 t 1 2 94049 220 0.00 2019-09-06 11:02:46 2019-09-06 11:04:55 t 1 1 94054 220 0.00 2019-09-06 11:04:58 2019-09-06 11:15:22 t 1 1 94055 335 0.00 2019-09-06 11:08:27 2019-09-06 11:18:32 t 1 2 94056 220 0.00 2019-09-06 11:15:22 2019-09-06 11:34:14 t 1 1 94062 212 0.00 2019-09-06 11:40:11 2019-09-06 11:40:46 t 1 2 94066 449 0.00 2019-09-06 10:44:10 2019-09-06 11:47:24 t 1 1 94070 432 0.00 2019-09-06 11:56:59 2019-09-06 12:03:34 t 1 1 94071 355 0.00 2019-09-06 11:59:48 2019-09-06 12:08:29 t 1 2 94074 402 0.00 2019-09-06 12:11:33 2019-09-06 12:11:36 t 1 2 94076 400 0.00 2019-09-06 10:47:05 2019-09-06 12:12:10 t 1 2 94078 213 0.00 2019-09-06 12:09:51 2019-09-06 12:13:27 t 1 1 94080 385 0.00 2019-09-06 12:14:45 2019-09-06 12:14:45 f 1 2 94082 385 0.00 2019-09-06 12:13:55 2019-09-06 12:15:17 t 1 2 94085 220 0.00 2019-09-06 12:03:34 2019-09-06 12:20:36 t 1 1 94086 220 0.00 2019-09-06 12:20:35 2019-09-06 12:21:16 t 1 1 94088 402 0.00 2019-09-06 12:12:41 2019-09-06 12:23:54 t 1 2 94089 220 0.00 2019-09-06 12:21:51 2019-09-06 12:25:56 t 1 1 94093 220 0.00 2019-09-06 12:27:16 2019-09-06 12:28:09 t 1 1 94095 432 0.00 2019-09-06 12:32:48 2019-09-06 12:33:07 t 1 1 94096 449 0.00 2019-09-06 12:27:13 2019-09-06 12:34:35 t 1 1 94097 220 0.00 2019-09-06 12:28:09 2019-09-06 12:34:53 t 1 1 94098 220 0.00 2019-09-06 12:34:52 2019-09-06 12:35:27 t 1 1 94099 220 0.00 2019-09-06 12:35:27 2019-09-06 12:36:09 t 1 1 94102 220 0.00 2019-09-06 12:36:42 2019-09-06 12:37:15 t 1 1 94104 220 0.00 2019-09-06 12:37:15 2019-09-06 12:37:46 t 1 1 94107 220 0.00 2019-09-06 12:39:02 2019-09-06 12:39:36 t 1 1 94108 220 0.00 2019-09-06 12:39:36 2019-09-06 12:40:08 t 1 1 94112 220 0.00 2019-09-06 12:41:17 2019-09-06 12:41:52 t 1 1 94113 220 0.00 2019-09-06 12:41:51 2019-09-06 12:42:25 t 1 1 94115 432 0.00 2019-09-06 12:42:35 2019-09-06 12:43:04 t 1 1 94119 220 0.00 2019-09-06 12:43:33 2019-09-06 12:47:19 t 1 1 94124 220 0.00 2019-09-06 12:48:12 2019-09-06 12:49:40 t 1 1 94125 306 0.00 2019-09-06 12:49:05 2019-09-06 12:50:10 t 1 2 94132 220 0.00 2019-09-06 12:50:11 2019-09-06 12:56:25 t 1 1 94138 220 0.00 2019-09-06 12:59:05 2019-09-06 12:59:40 t 1 1 94141 220 0.00 2019-09-06 13:01:08 2019-09-06 13:01:40 t 1 1 94142 220 0.00 2019-09-06 13:01:40 2019-09-06 13:02:15 t 1 1 94148 220 0.00 2019-09-06 13:06:52 2019-09-06 13:07:28 t 1 1 94150 220 0.00 2019-09-06 13:07:27 2019-09-06 13:08:38 t 1 1 94151 220 0.00 2019-09-06 13:08:38 2019-09-06 13:09:09 t 1 1 94153 220 0.00 2019-09-06 13:09:09 2019-09-06 13:09:42 t 1 1 94156 247 0.00 2019-09-06 12:13:45 2019-09-06 13:12:12 t 1 2 94158 220 0.00 2019-09-06 13:12:33 2019-09-06 13:13:09 t 1 1 94160 220 0.00 2019-09-06 13:13:08 2019-09-06 13:13:40 t 1 1 94165 220 0.00 2019-09-06 13:15:57 2019-09-06 13:16:32 t 1 1 94166 220 0.00 2019-09-06 13:16:32 2019-09-06 13:17:07 t 1 1 94173 402 0.00 2019-09-06 13:13:42 2019-09-06 13:23:47 t 1 2 94174 432 0.00 2019-09-06 13:25:52 2019-09-06 13:27:46 t 1 1 94175 400 0.00 2019-09-06 12:33:26 2019-09-06 13:28:31 t 1 2 94185 213 0.00 2019-09-06 13:42:10 2019-09-06 13:44:45 t 1 1 94187 335 0.00 2019-09-06 13:36:27 2019-09-06 13:51:33 t 1 2 94190 400 0.00 2019-09-06 13:55:56 2019-09-06 14:06:01 t 1 2 94192 355 0.00 2019-09-06 13:51:15 2019-09-06 14:20:09 t 1 2 94194 379 0.00 2019-09-06 12:52:49 2019-09-06 14:22:54 t 1 2 94196 432 0.00 2019-09-06 14:21:40 2019-09-06 14:29:39 t 1 1 94199 432 0.00 2019-09-06 14:30:14 2019-09-06 14:36:15 t 1 1 94201 306 0.00 2019-09-06 14:47:15 2019-09-06 14:48:19 t 1 2 94206 402 0.00 2019-09-06 14:22:36 2019-09-06 14:58:48 t 1 2 94211 392 0.00 2019-09-06 15:25:29 2019-09-06 15:26:26 t 1 2 94214 385 0.00 2019-09-06 12:55:13 2019-09-06 15:29:35 t 1 2 94216 392 0.00 2019-09-06 15:29:21 2019-09-06 15:30:18 t 1 2 94218 392 0.00 2019-09-06 15:32:26 2019-09-06 15:32:34 t 1 2 94220 212 0.00 2019-09-06 15:36:56 2019-09-06 15:37:25 t 1 2 94225 385 0.00 2019-09-06 15:53:24 2019-09-06 15:54:14 t 1 2 94230 392 0.00 2019-09-06 16:07:16 2019-09-06 16:07:22 t 1 2 94231 335 0.00 2019-09-06 16:09:01 2019-09-06 16:09:22 t 1 2 94240 220 0.00 2019-09-06 16:16:16 2019-09-06 16:16:53 t 1 1 94241 220 0.00 2019-09-06 16:16:53 2019-09-06 16:17:28 t 1 1 94245 220 0.00 2019-09-06 16:18:04 2019-09-06 16:18:38 t 1 1 94246 220 0.00 2019-09-06 16:18:37 2019-09-06 16:19:12 t 1 1 94248 220 0.00 2019-09-06 16:19:12 2019-09-06 16:19:47 t 1 1 94249 220 0.00 2019-09-06 16:19:47 2019-09-06 16:20:20 t 1 1 94255 306 0.00 2019-09-06 16:39:34 2019-09-06 16:39:35 t 1 2 94263 402 0.00 2019-09-06 16:46:52 2019-09-06 16:54:43 t 1 2 94264 402 0.00 2019-09-06 16:55:26 2019-09-06 16:55:32 t 1 2 94129 432 0.00 2019-09-06 12:54:18 2019-09-06 12:55:01 t 1 1 94130 432 0.00 2019-09-06 12:55:47 2019-09-06 12:55:54 t 1 1 94133 212 0.00 2019-09-06 12:14:10 2019-09-06 12:57:43 t 1 2 94135 220 0.00 2019-09-06 12:57:46 2019-09-06 12:58:21 t 1 1 94139 432 0.00 2019-09-06 12:59:42 2019-09-06 12:59:49 t 1 1 94143 220 0.00 2019-09-06 13:02:15 2019-09-06 13:02:48 t 1 1 94144 220 0.00 2019-09-06 13:02:48 2019-09-06 13:05:14 t 1 1 94155 432 0.00 2019-09-06 13:11:02 2019-09-06 13:11:55 t 1 1 94157 220 0.00 2019-09-06 13:10:17 2019-09-06 13:12:34 t 1 1 94161 220 0.00 2019-09-06 13:13:40 2019-09-06 13:14:13 t 1 1 94167 220 0.00 2019-09-06 13:17:07 2019-09-06 13:17:41 t 1 1 94169 432 0.00 2019-09-06 13:18:14 2019-09-06 13:18:34 t 1 1 94176 451 0.00 2019-09-06 13:13:44 2019-09-06 13:32:18 t 1 1 94177 335 0.00 2019-09-06 12:40:33 2019-09-06 13:35:38 t 1 2 94179 306 0.00 2019-09-06 13:40:24 2019-09-06 13:41:26 t 1 2 94181 451 0.00 2019-09-06 13:38:00 2019-09-06 13:41:46 t 1 1 94182 213 0.00 2019-09-06 13:41:33 2019-09-06 13:42:10 t 1 1 94186 400 0.00 2019-09-06 13:39:30 2019-09-06 13:49:35 t 1 2 94189 212 0.00 2019-09-06 13:59:31 2019-09-06 13:59:49 t 1 2 94191 220 0.00 2019-09-06 13:20:03 2019-09-06 14:09:37 t 1 1 94193 335 0.00 2019-09-06 14:01:16 2019-09-06 14:21:21 t 1 2 94198 412 0.00 2019-09-06 12:01:37 2019-09-06 14:36:15 t 1 1 94202 213 0.00 2019-09-06 14:44:22 2019-09-06 14:49:42 t 1 1 94204 306 0.00 2019-09-06 14:50:20 2019-09-06 14:51:26 t 1 2 94207 451 0.00 2019-09-06 14:54:11 2019-09-06 15:07:54 t 1 1 94209 400 0.00 2019-09-06 15:04:41 2019-09-06 15:14:46 t 1 2 94210 306 0.00 2019-09-06 15:25:23 2019-09-06 15:26:10 t 1 2 94219 213 0.00 2019-09-06 15:21:29 2019-09-06 15:34:09 t 1 1 94221 220 0.00 2019-09-06 15:35:05 2019-09-06 15:45:10 t 1 2 94222 402 0.00 2019-09-06 14:58:51 2019-09-06 15:48:56 t 1 2 94223 392 0.00 2019-09-06 15:32:40 2019-09-06 15:51:34 t 1 2 94226 392 0.00 2019-09-06 15:56:14 2019-09-06 15:56:19 t 1 2 94227 400 0.00 2019-09-06 15:57:21 2019-09-06 15:57:48 t 1 2 94228 213 0.00 2019-09-06 15:55:05 2019-09-06 16:05:44 t 1 1 94232 335 0.00 2019-09-06 16:09:25 2019-09-06 16:09:30 t 1 2 94233 335 0.00 2019-09-06 16:09:44 2019-09-06 16:09:54 t 1 2 94237 355 0.00 2019-09-06 16:12:13 2019-09-06 16:13:10 t 1 2 94243 213 0.00 2019-09-06 16:10:33 2019-09-06 16:17:54 t 1 1 94250 220 0.00 2019-09-06 16:20:19 2019-09-06 16:20:54 t 1 1 94257 392 0.00 2019-09-06 16:40:14 2019-09-06 16:40:22 t 1 2 94259 392 0.00 2019-09-06 16:44:00 2019-09-06 16:44:57 t 1 2 94268 213 0.00 2019-09-06 17:01:47 2019-09-06 17:05:19 t 1 1 94269 402 0.00 2019-09-06 16:55:56 2019-09-06 17:06:01 t 1 2 94270 247 0.00 2019-09-06 17:06:07 2019-09-06 17:08:16 t 1 2 94271 306 0.00 2019-09-06 17:08:23 2019-09-06 17:09:29 t 1 2 94274 306 0.00 2019-09-06 17:09:54 2019-09-06 17:10:59 t 1 2 94284 451 0.00 2019-09-06 17:18:55 2019-09-06 17:22:05 t 1 1 94286 213 0.00 2019-09-06 17:25:01 2019-09-06 17:28:22 t 1 1 94287 213 0.00 2019-09-06 17:28:29 2019-09-06 17:29:42 t 1 1 94289 430 0.00 2019-09-06 17:24:20 2019-09-06 17:31:59 t 1 1 94291 213 0.00 2019-09-06 17:40:40 2019-09-06 17:42:22 t 1 1 94294 400 0.00 2019-09-06 17:30:12 2019-09-06 17:45:17 t 1 2 94297 430 0.00 2019-09-06 17:43:55 2019-09-06 17:48:03 t 1 1 94300 430 0.00 2019-09-06 17:48:03 2019-09-06 17:50:14 t 1 1 94302 430 0.00 2019-09-06 17:49:46 2019-09-06 17:51:15 t 1 1 94303 213 0.00 2019-09-06 17:54:11 2019-09-06 17:57:43 t 1 1 94306 422 0.00 2019-09-06 17:46:04 2019-09-06 18:16:04 t 1 2 94307 402 0.00 2019-09-06 17:48:05 2019-09-06 18:17:20 t 1 2 94308 292 0.00 2019-09-06 18:16:55 2019-09-06 18:17:59 t 1 2 94316 385 0.00 2019-09-06 18:30:45 2019-09-06 18:30:45 f 1 2 94317 385 0.00 2019-09-06 18:31:10 2019-09-06 18:31:10 f 1 2 94320 213 0.00 2019-09-06 18:30:32 2019-09-06 18:33:28 t 1 1 94324 400 0.00 2019-09-06 18:26:30 2019-09-06 18:36:35 t 1 2 94327 213 0.00 2019-09-06 18:36:12 2019-09-06 18:41:40 t 1 1 94332 420 0.00 2019-09-06 18:49:59 2019-09-06 18:51:00 t 1 1 94334 213 0.00 2019-09-06 18:51:06 2019-09-06 18:54:36 t 1 1 94338 213 0.00 2019-09-06 19:03:03 2019-09-06 19:03:20 t 1 1 94343 372 0.00 2019-09-06 19:03:01 2019-09-06 19:09:23 t 1 2 94344 402 0.00 2019-09-06 19:01:01 2019-09-06 19:11:06 t 1 2 94346 412 0.00 2019-09-06 19:12:12 2019-09-06 19:13:15 t 1 1 94348 453 0.00 2019-09-06 18:33:28 2019-09-06 19:13:33 t 1 2 94353 367 0.00 2019-09-06 18:38:05 2019-09-06 19:20:29 t 1 2 94365 213 0.00 2019-09-06 19:44:41 2019-09-06 19:46:12 t 1 1 94366 292 0.00 2019-09-06 19:48:05 2019-09-06 19:49:06 t 1 2 94370 385 0.00 2019-09-06 19:51:06 2019-09-06 19:56:09 t 1 2 94374 212 0.00 2019-09-06 20:10:45 2019-09-06 20:16:09 t 1 2 94375 392 0.00 2019-09-06 19:24:46 2019-09-06 20:19:51 t 1 2 94378 400 0.00 2019-09-06 20:20:02 2019-09-06 20:30:07 t 1 2 94384 400 0.00 2019-09-06 20:32:04 2019-09-06 20:47:09 t 1 2 94388 400 0.00 2019-09-06 20:41:18 2019-09-06 20:51:23 t 1 2 94389 213 0.00 2019-09-06 20:52:50 2019-09-06 20:57:44 t 1 1 94393 402 0.00 2019-09-06 21:18:46 2019-09-06 21:20:10 t 1 2 94396 306 0.00 2019-09-06 21:36:58 2019-09-06 21:38:01 t 1 2 94404 402 0.00 2019-09-06 22:10:56 2019-09-06 22:12:06 t 1 2 188682 639 0.00 2019-12-07 04:49:49 2019-12-07 04:49:51 t 1 1 94409 451 0.00 2019-09-06 22:15:09 2019-09-06 22:17:53 t 1 1 94410 213 0.00 2019-09-06 22:19:00 2019-09-06 22:22:28 t 1 1 94414 402 0.00 2019-09-06 22:37:29 2019-09-06 22:39:19 t 1 2 94422 402 0.00 2019-09-06 22:43:55 2019-09-06 22:49:49 t 1 2 94424 400 0.00 2019-09-06 22:48:35 2019-09-06 22:58:40 t 1 2 94426 422 0.00 2019-09-06 22:39:57 2019-09-06 23:01:18 t 1 2 94433 212 0.00 2019-09-06 23:18:12 2019-09-06 23:18:32 t 1 2 94434 372 0.00 2019-09-06 23:18:41 2019-09-06 23:19:43 t 1 2 94435 453 0.00 2019-09-06 23:20:18 2019-09-06 23:20:21 t 1 2 94438 445 0.00 2019-09-06 23:27:13 2019-09-06 23:42:20 t 1 1 94441 212 0.00 2019-09-06 23:44:55 2019-09-06 23:45:57 t 1 2 94445 451 0.00 2019-09-06 23:35:39 2019-09-06 23:49:24 t 1 1 94449 432 0.00 2019-09-06 22:41:17 2019-09-07 00:14:48 t 1 1 94450 213 0.00 2019-09-07 00:12:51 2019-09-07 00:16:10 t 1 1 94452 355 0.00 2019-09-07 00:20:11 2019-09-07 00:20:11 f 1 2 94456 355 0.00 2019-09-07 00:27:56 2019-09-07 00:27:56 f 1 2 94466 392 0.00 2019-09-07 01:23:19 2019-09-07 01:39:03 t 1 2 94469 412 0.00 2019-09-07 01:23:32 2019-09-07 01:52:33 t 1 1 94471 422 0.00 2019-09-07 01:45:50 2019-09-07 01:55:56 t 1 2 94472 445 0.00 2019-09-07 01:52:54 2019-09-07 02:00:53 t 1 1 94473 412 0.00 2019-09-07 01:52:33 2019-09-07 02:03:35 t 1 1 94479 339 0.00 2019-09-07 01:01:01 2019-09-07 02:56:25 t 1 2 94188 213 0.00 2019-09-06 13:48:01 2019-09-06 13:53:08 t 1 1 94195 335 0.00 2019-09-06 14:13:55 2019-09-06 14:24:01 t 1 2 94197 296 0.00 2019-09-06 14:26:04 2019-09-06 14:33:28 t 1 2 94200 306 0.00 2019-09-06 14:45:00 2019-09-06 14:45:54 t 1 2 94203 212 0.00 2019-09-06 14:50:23 2019-09-06 14:51:04 t 1 2 94205 451 0.00 2019-09-06 14:37:31 2019-09-06 14:54:11 t 1 1 94208 212 0.00 2019-09-06 15:07:34 2019-09-06 15:09:21 t 1 2 94212 392 0.00 2019-09-06 15:07:57 2019-09-06 15:28:02 t 1 2 94213 392 0.00 2019-09-06 15:28:53 2019-09-06 15:29:00 t 1 2 94215 422 0.00 2019-09-06 14:19:34 2019-09-06 15:29:39 t 1 2 94217 392 0.00 2019-09-06 15:30:26 2019-09-06 15:32:22 t 1 2 94224 400 0.00 2019-09-06 15:37:23 2019-09-06 15:52:28 t 1 2 94229 212 0.00 2019-09-06 16:06:33 2019-09-06 16:07:05 t 1 2 94234 213 0.00 2019-09-06 16:05:44 2019-09-06 16:10:12 t 1 1 94235 392 0.00 2019-09-06 16:07:35 2019-09-06 16:11:34 t 1 2 94236 400 0.00 2019-09-06 15:58:00 2019-09-06 16:13:05 t 1 2 94238 220 0.00 2019-09-06 14:57:04 2019-09-06 16:15:44 t 1 1 94239 220 0.00 2019-09-06 16:15:43 2019-09-06 16:16:16 t 1 1 94242 355 0.00 2019-09-06 16:14:30 2019-09-06 16:17:46 t 1 2 94244 220 0.00 2019-09-06 16:17:27 2019-09-06 16:18:05 t 1 1 94247 213 0.00 2019-09-06 16:17:54 2019-09-06 16:19:32 t 1 1 94251 220 0.00 2019-09-06 16:20:53 2019-09-06 16:21:00 t 1 1 94252 213 0.00 2019-09-06 16:22:35 2019-09-06 16:29:01 t 1 1 94253 220 0.00 2019-09-06 16:21:26 2019-09-06 16:30:26 t 1 1 94254 339 0.00 2019-09-06 16:21:52 2019-09-06 16:32:16 t 1 2 188683 689 0.00 2019-12-07 04:50:13 2019-12-07 04:50:41 t 1 1 94258 213 0.00 2019-09-06 16:40:20 2019-09-06 16:43:10 t 1 1 94260 392 0.00 2019-09-06 16:45:03 2019-09-06 16:45:12 t 1 2 94261 349 0.00 2019-09-06 16:49:48 2019-09-06 16:49:48 f 1 2 94262 400 0.00 2019-09-06 16:21:01 2019-09-06 16:51:06 t 1 2 94267 402 0.00 2019-09-06 17:05:11 2019-09-06 17:05:16 t 1 2 94276 445 0.00 2019-09-06 17:04:41 2019-09-06 17:14:12 t 1 1 94277 451 0.00 2019-09-06 17:00:30 2019-09-06 17:15:01 t 1 1 94280 430 0.00 2019-09-06 17:19:05 2019-09-06 17:19:09 t 1 1 94281 445 0.00 2019-09-06 17:14:12 2019-09-06 17:19:56 t 1 1 94283 367 0.00 2019-09-06 17:18:42 2019-09-06 17:20:49 t 1 2 94285 430 0.00 2019-09-06 17:21:55 2019-09-06 17:24:22 t 1 1 94292 430 0.00 2019-09-06 17:31:59 2019-09-06 17:43:55 t 1 1 94295 213 0.00 2019-09-06 17:45:43 2019-09-06 17:46:57 t 1 1 94296 402 0.00 2019-09-06 17:47:53 2019-09-06 17:48:01 t 1 2 94298 213 0.00 2019-09-06 17:46:58 2019-09-06 17:49:53 t 1 1 94301 402 0.00 2019-09-06 17:06:00 2019-09-06 17:51:06 t 1 2 94304 213 0.00 2019-09-06 18:03:38 2019-09-06 18:06:29 t 1 1 94305 213 0.00 2019-09-06 18:06:29 2019-09-06 18:09:09 t 1 1 94309 247 0.00 2019-09-06 18:19:01 2019-09-06 18:20:40 t 1 2 94311 402 0.00 2019-09-06 18:22:22 2019-09-06 18:24:08 t 1 2 94314 402 0.00 2019-09-06 18:18:00 2019-09-06 18:28:06 t 1 2 94318 217 0.00 2019-09-06 18:31:21 2019-09-06 18:31:21 f 1 2 94323 335 0.00 2019-09-06 18:26:27 2019-09-06 18:36:32 t 1 2 94326 212 0.00 2019-09-06 18:40:42 2019-09-06 18:41:12 t 1 2 94328 402 0.00 2019-09-06 18:33:53 2019-09-06 18:43:58 t 1 2 94330 420 0.00 2019-09-06 18:44:22 2019-09-06 18:48:20 t 1 1 94331 420 0.00 2019-09-06 18:48:23 2019-09-06 18:49:31 t 1 1 94337 445 0.00 2019-09-06 18:26:38 2019-09-06 19:03:16 t 1 1 94340 363 0.00 2019-09-06 17:19:18 2019-09-06 19:04:24 t 1 2 94341 402 0.00 2019-09-06 18:55:54 2019-09-06 19:05:59 t 1 2 94345 296 0.00 2019-09-06 19:08:34 2019-09-06 19:11:57 t 1 2 94349 420 0.00 2019-09-06 19:13:22 2019-09-06 19:17:04 t 1 1 188686 639 0.00 2019-12-07 04:52:30 2019-12-07 04:52:37 t 1 1 94352 213 0.00 2019-09-06 19:04:08 2019-09-06 19:20:09 t 1 1 94359 306 0.00 2019-09-06 19:32:23 2019-09-06 19:33:26 t 1 2 94360 335 0.00 2019-09-06 19:24:26 2019-09-06 19:34:31 t 1 2 94361 213 0.00 2019-09-06 19:32:56 2019-09-06 19:35:21 t 1 1 94362 213 0.00 2019-09-06 19:35:21 2019-09-06 19:37:14 t 1 1 94368 412 0.00 2019-09-06 19:21:16 2019-09-06 19:55:22 t 1 1 94376 412 0.00 2019-09-06 19:55:22 2019-09-06 20:27:56 t 1 1 94380 453 0.00 2019-09-06 19:17:17 2019-09-06 20:32:22 t 1 2 94382 213 0.00 2019-09-06 20:39:22 2019-09-06 20:40:32 t 1 1 94386 412 0.00 2019-09-06 20:27:56 2019-09-06 20:49:15 t 1 1 94387 335 0.00 2019-09-06 20:20:59 2019-09-06 20:51:04 t 1 2 94390 212 0.00 2019-09-06 20:59:06 2019-09-06 20:59:25 t 1 2 94391 247 0.00 2019-09-06 21:06:25 2019-09-06 21:07:03 t 1 2 94394 400 0.00 2019-09-06 21:22:15 2019-09-06 21:32:21 t 1 2 94395 294 0.00 2019-09-06 20:32:51 2019-09-06 21:33:15 t 1 2 94397 361 0.00 2019-09-06 20:18:23 2019-09-06 21:38:28 t 1 2 94399 432 0.00 2019-09-06 21:36:23 2019-09-06 21:50:05 t 1 1 94401 432 0.00 2019-09-06 21:54:43 2019-09-06 21:59:23 t 1 1 94405 432 0.00 2019-09-06 21:59:23 2019-09-06 22:14:55 t 1 1 94408 420 0.00 2019-09-06 21:56:21 2019-09-06 22:17:47 t 1 1 94411 402 0.00 2019-09-06 22:25:29 2019-09-06 22:26:56 t 1 2 94412 402 0.00 2019-09-06 22:30:23 2019-09-06 22:31:39 t 1 2 94416 432 0.00 2019-09-06 22:40:08 2019-09-06 22:40:18 t 1 1 94418 212 0.00 2019-09-06 21:46:39 2019-09-06 22:40:44 t 1 2 94427 402 0.00 2019-09-06 22:56:36 2019-09-06 23:07:21 t 1 2 94428 220 0.00 2019-09-06 23:10:10 2019-09-06 23:10:14 t 1 2 94429 451 0.00 2019-09-06 22:52:29 2019-09-06 23:12:20 t 1 1 94430 372 0.00 2019-09-06 23:14:20 2019-09-06 23:15:25 t 1 2 94431 372 0.00 2019-09-06 23:15:42 2019-09-06 23:16:46 t 1 2 94432 372 0.00 2019-09-06 23:17:24 2019-09-06 23:18:30 t 1 2 94436 453 0.00 2019-09-06 23:20:37 2019-09-06 23:22:04 t 1 2 94437 451 0.00 2019-09-06 23:21:34 2019-09-06 23:35:39 t 1 1 94444 392 0.00 2019-09-06 23:39:32 2019-09-06 23:49:07 t 1 2 94448 292 0.00 2019-09-07 00:02:05 2019-09-07 00:03:10 t 1 2 94453 355 0.00 2019-09-07 00:20:18 2019-09-07 00:20:18 f 1 2 94455 212 0.00 2019-09-07 00:23:46 2019-09-07 00:24:10 t 1 2 94457 385 0.00 2019-09-06 23:58:44 2019-09-07 00:29:25 t 1 2 94458 372 0.00 2019-09-07 00:41:17 2019-09-07 00:42:15 t 1 2 94462 445 0.00 2019-09-06 23:42:20 2019-09-07 01:13:32 t 1 1 94463 412 0.00 2019-09-07 00:30:07 2019-09-07 01:23:32 t 1 1 94470 445 0.00 2019-09-07 01:49:43 2019-09-07 01:52:54 t 1 1 94474 445 0.00 2019-09-07 02:00:53 2019-09-07 02:06:28 t 1 1 188687 639 0.00 2019-12-07 04:53:35 2019-12-07 04:53:53 t 1 1 94480 422 0.00 2019-09-07 03:25:11 2019-09-07 04:40:35 t 1 2 94481 422 0.00 2019-09-07 04:40:51 2019-09-07 04:56:37 t 1 2 94483 220 0.00 2019-09-07 06:16:33 2019-09-07 06:24:01 t 1 1 94490 420 0.00 2019-09-07 06:48:35 2019-09-07 06:50:20 t 1 1 94492 402 0.00 2019-09-07 06:42:33 2019-09-07 07:17:38 t 1 2 94265 213 0.00 2019-09-06 16:46:34 2019-09-06 16:56:43 t 1 1 94266 445 0.00 2019-09-06 16:12:27 2019-09-06 17:04:41 t 1 1 94272 335 0.00 2019-09-06 16:10:06 2019-09-06 17:09:53 t 1 2 94273 213 0.00 2019-09-06 17:06:29 2019-09-06 17:10:29 t 1 1 94275 430 0.00 2019-09-06 17:12:25 2019-09-06 17:14:03 t 1 1 94278 451 0.00 2019-09-06 17:15:01 2019-09-06 17:18:55 t 1 1 94279 430 0.00 2019-09-06 17:14:03 2019-09-06 17:19:05 t 1 1 94282 400 0.00 2019-09-06 17:00:09 2019-09-06 17:20:15 t 1 2 94288 385 0.00 2019-09-06 17:01:34 2019-09-06 17:31:39 t 1 2 94290 355 0.00 2019-09-06 17:33:51 2019-09-06 17:40:20 t 1 2 94293 213 0.00 2019-09-06 17:42:21 2019-09-06 17:44:41 t 1 1 94299 430 0.00 2019-09-06 17:49:53 2019-09-06 17:49:53 f 1 1 94310 367 0.00 2019-09-06 17:47:33 2019-09-06 18:21:50 t 1 2 94312 445 0.00 2019-09-06 17:19:56 2019-09-06 18:26:35 t 1 1 94313 367 0.00 2019-09-06 18:23:59 2019-09-06 18:26:46 t 1 2 94315 385 0.00 2019-09-06 18:30:36 2019-09-06 18:30:36 f 1 2 94319 385 0.00 2019-09-06 18:31:30 2019-09-06 18:31:30 f 1 2 94321 385 0.00 2019-09-06 18:13:27 2019-09-06 18:33:32 t 1 2 94322 412 0.00 2019-09-06 17:43:36 2019-09-06 18:34:15 t 1 1 94325 385 0.00 2019-09-06 18:26:36 2019-09-06 18:36:41 t 1 2 94329 213 0.00 2019-09-06 18:44:35 2019-09-06 18:46:32 t 1 1 94333 420 0.00 2019-09-06 18:51:03 2019-09-06 18:52:16 t 1 1 94335 213 0.00 2019-09-06 18:54:51 2019-09-06 18:55:39 t 1 1 94336 213 0.00 2019-09-06 18:55:39 2019-09-06 18:58:31 t 1 1 94339 445 0.00 2019-09-06 19:03:20 2019-09-06 19:04:08 t 1 1 94342 335 0.00 2019-09-06 18:37:11 2019-09-06 19:07:16 t 1 2 94347 420 0.00 2019-09-06 18:52:42 2019-09-06 19:13:20 t 1 1 94350 445 0.00 2019-09-06 19:15:56 2019-09-06 19:17:30 t 1 1 94354 306 0.00 2019-09-06 19:22:13 2019-09-06 19:23:20 t 1 2 94355 212 0.00 2019-09-06 19:24:02 2019-09-06 19:24:56 t 1 2 94356 213 0.00 2019-09-06 19:20:08 2019-09-06 19:27:57 t 1 1 94357 213 0.00 2019-09-06 19:28:00 2019-09-06 19:29:30 t 1 1 94358 451 0.00 2019-09-06 19:30:06 2019-09-06 19:33:07 t 1 1 94363 213 0.00 2019-09-06 19:41:27 2019-09-06 19:44:33 t 1 1 94364 385 0.00 2019-09-06 19:15:19 2019-09-06 19:44:58 t 1 2 94367 335 0.00 2019-09-06 19:34:11 2019-09-06 19:49:16 t 1 2 94369 400 0.00 2019-09-06 19:15:40 2019-09-06 19:55:45 t 1 2 94371 367 0.00 2019-09-06 19:54:50 2019-09-06 19:57:55 t 1 2 188684 689 0.00 2019-12-07 04:50:50 2019-12-07 04:51:13 t 1 1 94373 367 0.00 2019-09-06 20:00:16 2019-09-06 20:15:21 t 1 2 94377 306 0.00 2019-09-06 20:28:29 2019-09-06 20:29:33 t 1 2 94379 402 0.00 2019-09-06 20:29:13 2019-09-06 20:30:49 t 1 2 94381 392 0.00 2019-09-06 20:37:15 2019-09-06 20:40:15 t 1 2 94383 213 0.00 2019-09-06 20:40:46 2019-09-06 20:44:43 t 1 1 94385 306 0.00 2019-09-06 20:46:40 2019-09-06 20:47:44 t 1 2 94392 400 0.00 2019-09-06 21:05:01 2019-09-06 21:15:06 t 1 2 94398 213 0.00 2019-09-06 21:38:02 2019-09-06 21:43:02 t 1 1 94400 432 0.00 2019-09-06 21:50:05 2019-09-06 21:54:43 t 1 1 94402 400 0.00 2019-09-06 21:24:46 2019-09-06 21:59:51 t 1 2 94403 361 0.00 2019-09-06 21:38:36 2019-09-06 22:11:49 t 1 2 94407 451 0.00 2019-09-06 21:54:42 2019-09-06 22:15:09 t 1 1 94413 213 0.00 2019-09-06 22:31:01 2019-09-06 22:37:17 t 1 1 94415 432 0.00 2019-09-06 22:27:02 2019-09-06 22:39:29 t 1 1 94417 432 0.00 2019-09-06 22:40:35 2019-09-06 22:40:44 t 1 1 94419 400 0.00 2019-09-06 22:11:05 2019-09-06 22:41:10 t 1 2 94420 361 0.00 2019-09-06 22:22:24 2019-09-06 22:42:37 t 1 2 94421 335 0.00 2019-09-06 21:34:20 2019-09-06 22:44:26 t 1 2 94423 294 0.00 2019-09-06 21:56:10 2019-09-06 22:56:34 t 1 2 94425 212 0.00 2019-09-06 22:59:53 2019-09-06 23:00:11 t 1 2 94439 335 0.00 2019-09-06 22:43:00 2019-09-06 23:43:05 t 1 2 94440 212 0.00 2019-09-06 23:43:36 2019-09-06 23:44:13 t 1 2 188685 689 0.00 2019-12-07 04:51:23 2019-12-07 04:51:45 t 1 1 94443 212 0.00 2019-09-06 23:46:26 2019-09-06 23:47:29 t 1 2 94446 400 0.00 2019-09-06 23:41:30 2019-09-06 23:56:35 t 1 2 94447 402 0.00 2019-09-06 23:35:56 2019-09-07 00:01:01 t 1 2 94451 355 0.00 2019-09-07 00:20:04 2019-09-07 00:20:04 f 1 2 94454 355 0.00 2019-09-07 00:20:24 2019-09-07 00:20:24 f 1 2 94459 372 0.00 2019-09-07 00:42:24 2019-09-07 00:44:15 t 1 2 94460 372 0.00 2019-09-07 00:48:27 2019-09-07 00:50:17 t 1 2 94461 392 0.00 2019-09-07 00:00:12 2019-09-07 01:03:03 t 1 2 94464 445 0.00 2019-09-07 01:13:32 2019-09-07 01:33:08 t 1 1 94465 445 0.00 2019-09-07 01:33:08 2019-09-07 01:37:34 t 1 1 94467 445 0.00 2019-09-07 01:37:34 2019-09-07 01:42:37 t 1 1 94468 445 0.00 2019-09-07 01:42:37 2019-09-07 01:49:43 t 1 1 94475 361 0.00 2019-09-07 00:09:48 2019-09-07 02:11:15 t 1 2 94476 445 0.00 2019-09-07 02:06:28 2019-09-07 02:15:20 t 1 1 94478 385 0.00 2019-09-07 02:35:32 2019-09-07 02:45:24 t 1 2 94482 213 0.00 2019-09-07 05:22:44 2019-09-07 05:25:41 t 1 1 94485 346 0.00 2019-09-07 06:27:23 2019-09-07 06:27:23 f 1 2 94486 420 0.00 2019-09-07 06:21:04 2019-09-07 06:31:43 t 1 1 94489 420 0.00 2019-09-07 06:47:27 2019-09-07 06:49:31 t 1 1 94495 294 0.00 2019-09-07 06:55:02 2019-09-07 07:33:49 t 1 2 94499 306 0.00 2019-09-07 07:51:47 2019-09-07 07:52:52 t 1 2 94500 445 0.00 2019-09-07 07:48:23 2019-09-07 07:57:34 t 1 1 94502 445 0.00 2019-09-07 07:57:34 2019-09-07 07:59:15 t 1 1 94504 445 0.00 2019-09-07 07:59:34 2019-09-07 08:02:27 t 1 1 94510 412 0.00 2019-09-07 08:28:42 2019-09-07 08:34:26 t 1 1 94511 306 0.00 2019-09-07 08:44:13 2019-09-07 08:45:18 t 1 2 94514 363 0.00 2019-09-07 08:14:53 2019-09-07 08:49:59 t 1 2 94515 453 0.00 2019-09-07 08:36:37 2019-09-07 08:56:42 t 1 2 94524 220 0.00 2019-09-07 09:13:53 2019-09-07 09:14:58 t 1 1 94527 453 0.00 2019-09-07 08:50:32 2019-09-07 09:20:37 t 1 2 94528 453 0.00 2019-09-07 09:21:01 2019-09-07 09:21:15 t 1 2 94529 306 0.00 2019-09-07 09:22:27 2019-09-07 09:23:28 t 1 2 94532 453 0.00 2019-09-07 09:12:03 2019-09-07 09:27:08 t 1 2 94534 213 0.00 2019-09-07 09:27:39 2019-09-07 09:29:45 t 1 1 94538 432 0.00 2019-09-07 09:36:24 2019-09-07 09:36:26 t 1 1 94540 432 0.00 2019-09-07 09:44:49 2019-09-07 09:45:33 t 1 1 94542 432 0.00 2019-09-07 09:44:37 2019-09-07 09:46:18 t 1 1 94546 453 0.00 2019-09-07 09:43:02 2019-09-07 09:53:07 t 1 2 94549 445 0.00 2019-09-07 09:52:33 2019-09-07 09:58:01 t 1 1 94551 432 0.00 2019-09-07 10:00:02 2019-09-07 10:00:24 t 1 1 94563 306 0.00 2019-09-07 10:12:26 2019-09-07 10:13:34 t 1 2 94564 432 0.00 2019-09-07 10:17:35 2019-09-07 10:18:00 t 1 1 94569 220 0.00 2019-09-07 10:07:31 2019-09-07 10:22:32 t 1 1 94576 213 0.00 2019-09-07 10:49:13 2019-09-07 10:51:04 t 1 1 94580 213 0.00 2019-09-07 10:51:47 2019-09-07 10:54:12 t 1 1 94484 220 0.00 2019-09-07 06:24:01 2019-09-07 06:26:56 t 1 1 94487 420 0.00 2019-09-07 06:41:52 2019-09-07 06:46:34 t 1 1 94488 420 0.00 2019-09-07 06:46:34 2019-09-07 06:47:28 t 1 1 94491 420 0.00 2019-09-07 06:50:22 2019-09-07 06:57:00 t 1 1 94493 306 0.00 2019-09-07 07:26:06 2019-09-07 07:27:15 t 1 2 94496 306 0.00 2019-09-07 07:36:24 2019-09-07 07:37:26 t 1 2 94497 306 0.00 2019-09-07 07:39:11 2019-09-07 07:40:16 t 1 2 94498 306 0.00 2019-09-07 07:48:14 2019-09-07 07:49:18 t 1 2 94501 306 0.00 2019-09-07 07:57:23 2019-09-07 07:58:26 t 1 2 94503 363 0.00 2019-09-07 07:41:05 2019-09-07 08:01:10 t 1 2 94505 306 0.00 2019-09-07 08:20:30 2019-09-07 08:21:38 t 1 2 94508 445 0.00 2019-09-07 08:02:27 2019-09-07 08:26:01 t 1 1 94509 412 0.00 2019-09-07 02:03:35 2019-09-07 08:28:42 t 1 1 94513 400 0.00 2019-09-07 08:37:47 2019-09-07 08:47:52 t 1 2 94517 355 0.00 2019-09-07 08:59:25 2019-09-07 08:59:25 f 1 2 94521 220 0.00 2019-09-07 08:27:22 2019-09-07 09:08:25 t 1 1 94523 220 0.00 2019-09-07 09:08:25 2019-09-07 09:13:50 t 1 1 94525 220 0.00 2019-09-07 09:15:48 2019-09-07 09:18:48 t 1 1 94526 306 0.00 2019-09-07 09:18:33 2019-09-07 09:19:35 t 1 2 94530 400 0.00 2019-09-07 09:14:49 2019-09-07 09:24:54 t 1 2 94536 453 0.00 2019-09-07 09:22:41 2019-09-07 09:32:46 t 1 2 94537 432 0.00 2019-09-07 09:32:34 2019-09-07 09:32:54 t 1 1 94539 385 0.00 2019-09-07 09:01:38 2019-09-07 09:44:36 t 1 2 94541 400 0.00 2019-09-07 09:30:32 2019-09-07 09:45:37 t 1 2 94545 432 0.00 2019-09-07 09:50:52 2019-09-07 09:51:27 t 1 1 94547 400 0.00 2019-09-07 09:45:16 2019-09-07 09:55:21 t 1 2 94552 453 0.00 2019-09-07 09:50:22 2019-09-07 10:00:27 t 1 2 94556 220 0.00 2019-09-07 09:48:35 2019-09-07 10:07:05 t 1 1 94557 432 0.00 2019-09-07 10:07:07 2019-09-07 10:07:42 t 1 1 94559 432 0.00 2019-09-07 10:08:43 2019-09-07 10:08:52 t 1 1 94573 445 0.00 2019-09-07 10:01:54 2019-09-07 10:45:27 t 1 1 94577 445 0.00 2019-09-07 10:47:11 2019-09-07 10:51:15 t 1 1 94579 220 0.00 2019-09-07 10:51:28 2019-09-07 10:52:38 t 1 1 94587 306 0.00 2019-09-07 11:11:46 2019-09-07 11:12:49 t 1 2 94588 453 0.00 2019-09-07 11:12:15 2019-09-07 11:12:54 t 1 2 94590 220 0.00 2019-09-07 10:52:44 2019-09-07 11:14:44 t 1 1 94592 220 0.00 2019-09-07 11:14:47 2019-09-07 11:15:59 t 1 1 94595 220 0.00 2019-09-07 11:17:08 2019-09-07 11:17:42 t 1 1 94596 445 0.00 2019-09-07 10:51:25 2019-09-07 11:21:13 t 1 1 94598 432 0.00 2019-09-07 10:29:52 2019-09-07 11:22:51 t 1 1 94599 430 0.00 2019-09-07 11:19:20 2019-09-07 11:23:03 t 1 1 94606 212 0.00 2019-09-07 11:32:15 2019-09-07 11:32:49 t 1 2 94607 327 0.00 2019-09-07 10:24:40 2019-09-07 11:35:32 t 1 2 94608 436 0.00 2019-09-07 11:33:01 2019-09-07 11:39:19 t 1 1 94609 220 0.00 2019-09-07 11:30:32 2019-09-07 11:40:58 t 1 1 94610 220 0.00 2019-09-07 11:22:28 2019-09-07 11:44:52 t 1 2 94621 449 0.00 2019-09-07 12:03:44 2019-09-07 12:10:43 t 1 1 94625 311 0.00 2019-09-07 11:48:52 2019-09-07 12:13:57 t 1 2 94632 372 0.00 2019-09-07 12:08:46 2019-09-07 12:18:51 t 1 2 94633 420 0.00 2019-09-07 12:13:37 2019-09-07 12:20:31 t 1 1 94641 400 0.00 2019-09-07 12:18:10 2019-09-07 12:28:15 t 1 2 94643 220 0.00 2019-09-07 12:25:58 2019-09-07 12:29:04 t 1 2 94646 213 0.00 2019-09-07 12:35:04 2019-09-07 12:37:49 t 1 1 94647 392 0.00 2019-09-07 12:08:44 2019-09-07 12:40:41 t 1 2 94651 213 0.00 2019-09-07 12:42:59 2019-09-07 12:45:27 t 1 1 94652 445 0.00 2019-09-07 12:33:29 2019-09-07 12:49:44 t 1 1 94653 402 0.00 2019-09-07 12:48:17 2019-09-07 12:51:34 t 1 2 94654 402 0.00 2019-09-07 12:51:46 2019-09-07 12:53:40 t 1 2 94659 247 0.00 2019-09-07 13:18:31 2019-09-07 13:22:47 t 1 2 94663 402 0.00 2019-09-07 12:53:36 2019-09-07 13:33:41 t 1 2 94667 220 0.00 2019-09-07 13:28:22 2019-09-07 13:37:38 t 1 2 94670 445 0.00 2019-09-07 13:36:58 2019-09-07 13:56:09 t 1 1 94672 411 0.00 2019-09-07 13:43:24 2019-09-07 14:02:44 t 1 1 94674 220 0.00 2019-09-07 13:46:06 2019-09-07 14:05:08 t 1 1 94676 445 0.00 2019-09-07 14:04:19 2019-09-07 14:06:01 t 1 1 94678 220 0.00 2019-09-07 14:06:17 2019-09-07 14:07:46 t 1 1 94681 220 0.00 2019-09-07 14:09:00 2019-09-07 14:09:35 t 1 1 94682 220 0.00 2019-09-07 14:09:35 2019-09-07 14:10:15 t 1 1 94691 220 0.00 2019-09-07 14:14:53 2019-09-07 14:15:29 t 1 1 94692 220 0.00 2019-09-07 14:15:29 2019-09-07 14:16:03 t 1 1 94696 220 0.00 2019-09-07 14:17:39 2019-09-07 14:18:14 t 1 1 94698 430 0.00 2019-09-07 14:17:28 2019-09-07 14:20:32 t 1 1 94701 411 0.00 2019-09-07 14:14:45 2019-09-07 14:26:43 t 1 1 94703 220 0.00 2019-09-07 14:18:14 2019-09-07 14:27:29 t 1 1 94705 213 0.00 2019-09-07 14:20:04 2019-09-07 14:31:46 t 1 1 94711 220 0.00 2019-09-07 14:32:59 2019-09-07 14:33:23 t 1 1 94717 372 0.00 2019-09-07 14:34:01 2019-09-07 14:34:01 f 1 2 94720 220 0.00 2019-09-07 14:34:21 2019-09-07 14:34:32 t 1 1 94724 220 0.00 2019-09-07 14:35:05 2019-09-07 14:35:28 t 1 1 94727 220 0.00 2019-09-07 14:35:44 2019-09-07 14:36:11 t 1 1 94729 411 0.00 2019-09-07 14:26:43 2019-09-07 14:38:50 t 1 1 94730 372 0.00 2019-09-07 14:29:39 2019-09-07 14:39:44 t 1 2 94731 220 0.00 2019-09-07 14:36:10 2019-09-07 14:40:09 t 1 1 94733 372 0.00 2019-09-07 14:30:21 2019-09-07 14:40:26 t 1 2 94734 220 0.00 2019-09-07 14:40:20 2019-09-07 14:42:10 t 1 1 94740 296 0.00 2019-09-07 14:33:50 2019-09-07 14:44:10 t 1 2 94744 420 0.00 2019-09-07 14:38:38 2019-09-07 14:45:55 t 1 1 94747 411 0.00 2019-09-07 14:38:50 2019-09-07 14:50:54 t 1 1 94749 213 0.00 2019-09-07 14:51:19 2019-09-07 14:56:30 t 1 1 94752 213 0.00 2019-09-07 15:03:45 2019-09-07 15:11:02 t 1 1 94754 430 0.00 2019-09-07 15:13:29 2019-09-07 15:13:30 t 1 1 94758 453 0.00 2019-09-07 13:38:12 2019-09-07 15:18:17 t 1 2 94763 212 0.00 2019-09-07 15:22:41 2019-09-07 15:23:03 t 1 2 94769 420 0.00 2019-09-07 14:54:15 2019-09-07 15:30:13 t 1 1 94774 430 0.00 2019-09-07 15:38:07 2019-09-07 15:39:08 t 1 1 94779 430 0.00 2019-09-07 15:47:56 2019-09-07 15:48:32 t 1 1 94781 247 0.00 2019-09-07 15:51:13 2019-09-07 15:52:13 t 1 2 94782 430 0.00 2019-09-07 15:51:57 2019-09-07 15:53:41 t 1 1 94786 430 0.00 2019-09-07 15:57:11 2019-09-07 16:00:18 t 1 1 94792 213 0.00 2019-09-07 16:09:17 2019-09-07 16:13:45 t 1 1 94793 430 0.00 2019-09-07 16:14:18 2019-09-07 16:14:53 t 1 1 94797 430 0.00 2019-09-07 16:19:59 2019-09-07 16:20:02 t 1 1 94798 213 0.00 2019-09-07 16:19:07 2019-09-07 16:22:47 t 1 1 94799 430 0.00 2019-09-07 16:25:01 2019-09-07 16:26:01 t 1 1 94803 432 0.00 2019-09-07 16:05:43 2019-09-07 16:29:59 t 1 1 94804 420 0.00 2019-09-07 16:27:38 2019-09-07 16:33:14 t 1 1 94806 420 0.00 2019-09-07 16:33:17 2019-09-07 16:37:47 t 1 1 94494 306 0.00 2019-09-07 07:31:56 2019-09-07 07:32:56 t 1 2 94506 212 0.00 2019-09-07 08:20:47 2019-09-07 08:21:48 t 1 2 94507 400 0.00 2019-09-07 07:55:04 2019-09-07 08:25:09 t 1 2 94512 453 0.00 2019-09-07 08:25:52 2019-09-07 08:45:57 t 1 2 94516 402 0.00 2019-09-07 07:35:19 2019-09-07 08:59:09 t 1 2 94518 306 0.00 2019-09-07 09:01:19 2019-09-07 09:02:22 t 1 2 94519 306 0.00 2019-09-07 09:04:23 2019-09-07 09:05:24 t 1 2 94520 432 0.00 2019-09-07 09:01:34 2019-09-07 09:08:25 t 1 1 94522 306 0.00 2019-09-07 09:07:52 2019-09-07 09:08:53 t 1 2 94531 306 0.00 2019-09-07 09:24:09 2019-09-07 09:25:13 t 1 2 94533 306 0.00 2019-09-07 09:26:43 2019-09-07 09:27:49 t 1 2 94535 220 0.00 2019-09-07 09:19:19 2019-09-07 09:32:33 t 1 1 94543 445 0.00 2019-09-07 08:26:01 2019-09-07 09:48:48 t 1 1 94544 432 0.00 2019-09-07 09:49:36 2019-09-07 09:49:45 t 1 1 94548 306 0.00 2019-09-07 09:54:28 2019-09-07 09:55:30 t 1 2 94550 445 0.00 2019-09-07 09:57:48 2019-09-07 09:59:05 t 1 1 94553 445 0.00 2019-09-07 09:59:16 2019-09-07 10:00:49 t 1 1 94554 432 0.00 2019-09-07 10:03:33 2019-09-07 10:05:05 t 1 1 94555 432 0.00 2019-09-07 10:05:51 2019-09-07 10:06:15 t 1 1 94558 432 0.00 2019-09-07 10:08:23 2019-09-07 10:08:28 t 1 1 94560 432 0.00 2019-09-07 10:10:31 2019-09-07 10:10:37 t 1 1 94561 432 0.00 2019-09-07 10:10:58 2019-09-07 10:11:05 t 1 1 94562 432 0.00 2019-09-07 10:11:51 2019-09-07 10:12:10 t 1 1 94565 213 0.00 2019-09-07 10:17:09 2019-09-07 10:19:31 t 1 1 94566 432 0.00 2019-09-07 10:20:15 2019-09-07 10:20:33 t 1 1 94567 432 0.00 2019-09-07 10:21:43 2019-09-07 10:21:47 t 1 1 94568 432 0.00 2019-09-07 10:22:02 2019-09-07 10:22:07 t 1 1 94570 213 0.00 2019-09-07 10:24:57 2019-09-07 10:27:35 t 1 1 94571 451 0.00 2019-09-07 10:24:15 2019-09-07 10:28:17 t 1 1 94572 451 0.00 2019-09-07 10:28:27 2019-09-07 10:35:58 t 1 1 94574 449 0.00 2019-09-07 10:44:40 2019-09-07 10:48:40 t 1 1 94575 213 0.00 2019-09-07 10:46:57 2019-09-07 10:48:56 t 1 1 94578 220 0.00 2019-09-07 10:23:52 2019-09-07 10:51:25 t 1 1 94581 453 0.00 2019-09-07 10:38:14 2019-09-07 10:58:19 t 1 2 94584 400 0.00 2019-09-07 10:57:09 2019-09-07 11:07:14 t 1 2 94585 430 0.00 2019-09-07 11:06:23 2019-09-07 11:11:26 t 1 1 94591 453 0.00 2019-09-07 11:05:08 2019-09-07 11:15:13 t 1 2 94594 220 0.00 2019-09-07 11:16:04 2019-09-07 11:17:05 t 1 1 94601 220 0.00 2019-09-07 11:17:45 2019-09-07 11:27:57 t 1 1 94603 220 0.00 2019-09-07 11:27:59 2019-09-07 11:30:20 t 1 1 94604 445 0.00 2019-09-07 11:29:01 2019-09-07 11:30:51 t 1 1 94615 306 0.00 2019-09-07 12:01:27 2019-09-07 12:02:30 t 1 2 94618 451 0.00 2019-09-07 11:49:43 2019-09-07 12:04:48 t 1 1 94619 220 0.00 2019-09-07 11:41:01 2019-09-07 12:09:52 t 1 1 94624 213 0.00 2019-09-07 12:10:35 2019-09-07 12:13:48 t 1 1 94627 220 0.00 2019-09-07 12:10:48 2019-09-07 12:16:05 t 1 1 94629 372 0.00 2019-09-07 12:16:59 2019-09-07 12:16:59 f 1 2 94631 451 0.00 2019-09-07 12:10:51 2019-09-07 12:17:47 t 1 1 94634 445 0.00 2019-09-07 12:04:27 2019-09-07 12:21:34 t 1 1 94635 220 0.00 2019-09-07 12:20:53 2019-09-07 12:21:59 t 1 2 94637 420 0.00 2019-09-07 12:20:31 2019-09-07 12:24:19 t 1 1 94639 220 0.00 2019-09-07 12:23:02 2019-09-07 12:25:24 t 1 1 94640 451 0.00 2019-09-07 12:17:47 2019-09-07 12:26:00 t 1 1 94642 398 0.00 2019-09-07 12:27:44 2019-09-07 12:28:46 t 1 2 94644 453 0.00 2019-09-07 11:27:13 2019-09-07 12:32:18 t 1 2 94645 445 0.00 2019-09-07 12:21:34 2019-09-07 12:33:10 t 1 1 94648 213 0.00 2019-09-07 12:41:28 2019-09-07 12:42:59 t 1 1 94655 453 0.00 2019-09-07 12:46:06 2019-09-07 12:56:11 t 1 2 94656 213 0.00 2019-09-07 13:00:29 2019-09-07 13:03:02 t 1 1 94658 432 0.00 2019-09-07 12:00:46 2019-09-07 13:21:32 t 1 1 94660 392 0.00 2019-09-07 12:59:05 2019-09-07 13:24:07 t 1 2 94661 220 0.00 2019-09-07 13:25:48 2019-09-07 13:27:48 t 1 2 94664 445 0.00 2019-09-07 12:49:43 2019-09-07 13:33:42 t 1 1 94665 445 0.00 2019-09-07 13:33:59 2019-09-07 13:35:12 t 1 1 94679 220 0.00 2019-09-07 14:07:45 2019-09-07 14:08:20 t 1 1 94680 220 0.00 2019-09-07 14:08:20 2019-09-07 14:09:00 t 1 1 94684 451 0.00 2019-09-07 14:05:52 2019-09-07 14:11:45 t 1 1 94685 220 0.00 2019-09-07 14:10:46 2019-09-07 14:12:13 t 1 1 94688 411 0.00 2019-09-07 14:02:44 2019-09-07 14:14:45 t 1 1 94689 220 0.00 2019-09-07 14:13:40 2019-09-07 14:14:53 t 1 1 94690 213 0.00 2019-09-07 14:06:54 2019-09-07 14:15:24 t 1 1 94699 212 0.00 2019-09-07 14:22:29 2019-09-07 14:22:58 t 1 2 94702 372 0.00 2019-09-07 14:27:11 2019-09-07 14:27:17 t 1 2 94708 220 0.00 2019-09-07 14:31:57 2019-09-07 14:32:30 t 1 1 94710 220 0.00 2019-09-07 14:32:47 2019-09-07 14:32:59 t 1 1 94714 372 0.00 2019-09-07 14:33:55 2019-09-07 14:33:55 f 1 2 94716 220 0.00 2019-09-07 14:33:33 2019-09-07 14:33:59 t 1 1 94719 220 0.00 2019-09-07 14:34:09 2019-09-07 14:34:22 t 1 1 94723 220 0.00 2019-09-07 14:34:53 2019-09-07 14:35:05 t 1 1 94726 220 0.00 2019-09-07 14:15:22 2019-09-07 14:36:02 t 1 2 94728 420 0.00 2019-09-07 14:33:40 2019-09-07 14:38:23 t 1 1 94737 220 0.00 2019-09-07 14:42:20 2019-09-07 14:43:08 t 1 1 94741 220 0.00 2019-09-07 14:43:25 2019-09-07 14:44:13 t 1 1 94743 412 0.00 2019-09-07 08:34:47 2019-09-07 14:45:37 t 1 1 94745 392 0.00 2019-09-07 14:33:46 2019-09-07 14:46:55 t 1 2 94746 412 0.00 2019-09-07 14:46:24 2019-09-07 14:49:35 t 1 1 94751 430 0.00 2019-09-07 14:56:56 2019-09-07 15:10:29 t 1 1 94753 400 0.00 2019-09-07 15:03:14 2019-09-07 15:13:20 t 1 2 94755 430 0.00 2019-09-07 15:15:08 2019-09-07 15:15:11 t 1 1 94759 306 0.00 2019-09-07 15:17:44 2019-09-07 15:18:47 t 1 2 94760 430 0.00 2019-09-07 15:19:34 2019-09-07 15:19:46 t 1 1 94762 430 0.00 2019-09-07 15:21:40 2019-09-07 15:21:50 t 1 1 94764 430 0.00 2019-09-07 15:22:50 2019-09-07 15:23:20 t 1 1 94768 381 0.00 2019-09-07 14:48:50 2019-09-07 15:28:55 t 1 2 94770 220 0.00 2019-09-07 15:22:14 2019-09-07 15:32:19 t 1 2 94772 430 0.00 2019-09-07 15:33:04 2019-09-07 15:34:19 t 1 1 94775 412 0.00 2019-09-07 15:37:56 2019-09-07 15:39:09 t 1 1 94776 430 0.00 2019-09-07 15:43:12 2019-09-07 15:43:19 t 1 1 94777 430 0.00 2019-09-07 15:43:19 2019-09-07 15:44:19 t 1 1 94778 445 0.00 2019-09-07 15:06:30 2019-09-07 15:47:56 t 1 1 94784 430 0.00 2019-09-07 15:53:56 2019-09-07 15:56:41 t 1 1 94785 220 0.00 2019-09-07 15:43:02 2019-09-07 15:59:42 t 1 1 94787 420 0.00 2019-09-07 15:54:01 2019-09-07 16:03:34 t 1 1 94791 430 0.00 2019-09-07 16:02:39 2019-09-07 16:13:26 t 1 1 94795 213 0.00 2019-09-07 16:13:45 2019-09-07 16:15:49 t 1 1 94796 213 0.00 2019-09-07 16:15:53 2019-09-07 16:17:54 t 1 1 94805 451 0.00 2019-09-07 16:27:55 2019-09-07 16:37:44 t 1 1 94582 213 0.00 2019-09-07 10:56:29 2019-09-07 11:03:02 t 1 1 94583 402 0.00 2019-09-07 09:57:31 2019-09-07 11:06:37 t 1 2 94586 306 0.00 2019-09-07 11:11:00 2019-09-07 11:11:29 t 1 2 94589 430 0.00 2019-09-07 11:11:50 2019-09-07 11:14:13 t 1 1 94593 430 0.00 2019-09-07 11:14:45 2019-09-07 11:16:24 t 1 1 94597 445 0.00 2019-09-07 11:21:12 2019-09-07 11:22:18 t 1 1 94600 445 0.00 2019-09-07 11:22:19 2019-09-07 11:26:34 t 1 1 94602 445 0.00 2019-09-07 11:26:34 2019-09-07 11:29:01 t 1 1 94605 385 0.00 2019-09-07 11:12:01 2019-09-07 11:32:24 t 1 2 94611 432 0.00 2019-09-07 11:22:51 2019-09-07 11:47:11 t 1 1 94612 449 0.00 2019-09-07 10:48:40 2019-09-07 11:48:04 t 1 1 94613 432 0.00 2019-09-07 11:47:11 2019-09-07 12:00:47 t 1 1 94614 449 0.00 2019-09-07 11:58:33 2019-09-07 12:01:41 t 1 1 94616 213 0.00 2019-09-07 11:59:34 2019-09-07 12:02:47 t 1 1 94617 445 0.00 2019-09-07 11:30:50 2019-09-07 12:04:27 t 1 1 94620 213 0.00 2019-09-07 12:05:32 2019-09-07 12:10:36 t 1 1 94622 451 0.00 2019-09-07 12:04:48 2019-09-07 12:10:51 t 1 1 94623 400 0.00 2019-09-07 12:03:25 2019-09-07 12:13:31 t 1 2 94626 247 0.00 2019-09-07 12:10:13 2019-09-07 12:15:19 t 1 2 94628 372 0.00 2019-09-07 12:16:54 2019-09-07 12:16:54 f 1 2 94630 220 0.00 2019-09-07 12:16:09 2019-09-07 12:17:31 t 1 1 94636 220 0.00 2019-09-07 12:17:46 2019-09-07 12:22:40 t 1 1 94638 372 0.00 2019-09-07 12:09:47 2019-09-07 12:24:52 t 1 2 94649 451 0.00 2019-09-07 12:36:43 2019-09-07 12:43:01 t 1 1 94650 402 0.00 2019-09-07 11:53:15 2019-09-07 12:45:10 t 1 2 94657 294 0.00 2019-09-07 12:40:29 2019-09-07 13:16:52 t 1 2 94662 327 0.00 2019-09-07 13:26:56 2019-09-07 13:28:39 t 1 2 94666 445 0.00 2019-09-07 13:34:35 2019-09-07 13:35:50 t 1 1 94668 372 0.00 2019-09-07 13:39:58 2019-09-07 13:40:23 t 1 2 94669 213 0.00 2019-09-07 13:35:11 2019-09-07 13:45:29 t 1 1 94671 213 0.00 2019-09-07 13:45:29 2019-09-07 13:59:13 t 1 1 94673 445 0.00 2019-09-07 13:56:07 2019-09-07 14:04:13 t 1 1 94675 220 0.00 2019-09-07 14:05:08 2019-09-07 14:05:43 t 1 1 94677 220 0.00 2019-09-07 14:05:43 2019-09-07 14:06:18 t 1 1 94683 220 0.00 2019-09-07 14:10:15 2019-09-07 14:10:46 t 1 1 94686 220 0.00 2019-09-07 14:12:13 2019-09-07 14:13:07 t 1 1 94687 220 0.00 2019-09-07 14:13:07 2019-09-07 14:13:41 t 1 1 94693 220 0.00 2019-09-07 14:16:03 2019-09-07 14:16:31 t 1 1 94694 220 0.00 2019-09-07 14:16:31 2019-09-07 14:17:04 t 1 1 94695 220 0.00 2019-09-07 14:17:04 2019-09-07 14:17:40 t 1 1 94697 306 0.00 2019-09-07 14:19:12 2019-09-07 14:20:18 t 1 2 94700 402 0.00 2019-09-07 13:38:43 2019-09-07 14:23:48 t 1 2 94704 220 0.00 2019-09-07 14:27:29 2019-09-07 14:31:34 t 1 1 94706 220 0.00 2019-09-07 14:21:04 2019-09-07 14:31:46 t 1 1 94707 220 0.00 2019-09-07 14:31:46 2019-09-07 14:31:58 t 1 1 94709 220 0.00 2019-09-07 14:32:29 2019-09-07 14:32:47 t 1 1 94712 220 0.00 2019-09-07 14:33:22 2019-09-07 14:33:33 t 1 1 94713 372 0.00 2019-09-07 14:33:45 2019-09-07 14:33:45 f 1 2 94715 445 0.00 2019-09-07 14:06:00 2019-09-07 14:33:58 t 1 1 94718 220 0.00 2019-09-07 14:33:58 2019-09-07 14:34:10 t 1 1 94721 220 0.00 2019-09-07 14:34:32 2019-09-07 14:34:43 t 1 1 94722 220 0.00 2019-09-07 14:34:43 2019-09-07 14:34:54 t 1 1 94725 220 0.00 2019-09-07 14:35:27 2019-09-07 14:35:44 t 1 1 94732 220 0.00 2019-09-07 14:40:09 2019-09-07 14:40:21 t 1 1 94735 220 0.00 2019-09-07 14:42:08 2019-09-07 14:42:20 t 1 1 94736 306 0.00 2019-09-07 14:41:51 2019-09-07 14:43:00 t 1 2 94738 220 0.00 2019-09-07 14:43:07 2019-09-07 14:43:23 t 1 1 94739 379 0.00 2019-09-07 09:44:05 2019-09-07 14:44:10 t 1 2 94742 430 0.00 2019-09-07 14:42:06 2019-09-07 14:44:16 t 1 1 94748 420 0.00 2019-09-07 14:46:03 2019-09-07 14:54:12 t 1 1 94750 411 0.00 2019-09-07 14:50:54 2019-09-07 15:03:08 t 1 1 94756 411 0.00 2019-09-07 15:03:08 2019-09-07 15:15:14 t 1 1 94757 306 0.00 2019-09-07 15:16:31 2019-09-07 15:17:28 t 1 2 94761 430 0.00 2019-09-07 15:20:12 2019-09-07 15:21:12 t 1 1 94765 220 0.00 2019-09-07 15:22:39 2019-09-07 15:23:38 t 1 1 94766 372 0.00 2019-09-07 15:15:58 2019-09-07 15:25:29 t 1 2 94767 430 0.00 2019-09-07 15:27:58 2019-09-07 15:28:01 t 1 1 94771 306 0.00 2019-09-07 15:31:43 2019-09-07 15:32:50 t 1 2 94773 412 0.00 2019-09-07 14:49:34 2019-09-07 15:37:32 t 1 1 94780 213 0.00 2019-09-07 15:48:43 2019-09-07 15:50:56 t 1 1 94783 420 0.00 2019-09-07 15:39:28 2019-09-07 15:53:56 t 1 1 94788 432 0.00 2019-09-07 15:38:22 2019-09-07 16:05:43 t 1 1 94789 213 0.00 2019-09-07 16:01:33 2019-09-07 16:06:40 t 1 1 94790 420 0.00 2019-09-07 16:04:50 2019-09-07 16:10:00 t 1 1 94794 420 0.00 2019-09-07 16:10:00 2019-09-07 16:15:24 t 1 1 94800 411 0.00 2019-09-07 15:15:14 2019-09-07 16:26:28 t 1 1 94801 420 0.00 2019-09-07 16:15:27 2019-09-07 16:27:38 t 1 1 94802 451 0.00 2019-09-07 16:09:06 2019-09-07 16:27:55 t 1 1 94808 212 0.00 2019-09-07 16:41:08 2019-09-07 16:41:57 t 1 2 94810 451 0.00 2019-09-07 16:37:44 2019-09-07 16:44:22 t 1 1 94812 402 0.00 2019-09-07 16:36:54 2019-09-07 16:44:52 t 1 2 94814 430 0.00 2019-09-07 16:43:54 2019-09-07 16:56:29 t 1 1 94816 306 0.00 2019-09-07 16:57:25 2019-09-07 16:58:31 t 1 2 94817 220 0.00 2019-09-07 16:54:56 2019-09-07 17:00:03 t 1 2 94820 412 0.00 2019-09-07 16:54:56 2019-09-07 17:18:42 t 1 1 94823 432 0.00 2019-09-07 17:03:17 2019-09-07 17:25:47 t 1 1 94828 430 0.00 2019-09-07 17:33:06 2019-09-07 17:33:11 t 1 1 94831 213 0.00 2019-09-07 17:34:27 2019-09-07 17:36:54 t 1 1 94835 420 0.00 2019-09-07 17:37:58 2019-09-07 17:39:54 t 1 1 94836 367 0.00 2019-09-07 17:40:15 2019-09-07 17:41:20 t 1 2 94837 412 0.00 2019-09-07 17:40:20 2019-09-07 17:41:46 t 1 1 94839 430 0.00 2019-09-07 17:38:20 2019-09-07 17:44:05 t 1 1 94842 367 0.00 2019-09-07 17:47:45 2019-09-07 17:48:49 t 1 2 94847 412 0.00 2019-09-07 17:41:40 2019-09-07 17:53:48 t 1 1 94849 453 0.00 2019-09-07 17:45:18 2019-09-07 17:55:23 t 1 2 94850 432 0.00 2019-09-07 17:56:13 2019-09-07 17:56:45 t 1 1 94851 213 0.00 2019-09-07 17:57:10 2019-09-07 18:03:14 t 1 1 94854 335 0.00 2019-09-07 17:52:40 2019-09-07 18:07:45 t 1 2 94856 213 0.00 2019-09-07 18:03:14 2019-09-07 18:08:52 t 1 1 94857 432 0.00 2019-09-07 18:08:57 2019-09-07 18:09:03 t 1 1 94860 372 0.00 2019-09-07 18:18:24 2019-09-07 18:21:02 t 1 2 94862 213 0.00 2019-09-07 18:23:35 2019-09-07 18:24:17 t 1 1 94867 432 0.00 2019-09-07 18:27:55 2019-09-07 18:33:07 t 1 1 94875 213 0.00 2019-09-07 18:40:52 2019-09-07 18:42:26 t 1 1 94876 296 0.00 2019-09-07 18:33:31 2019-09-07 18:42:55 t 1 2 94881 454 0.00 2019-09-07 18:50:54 2019-09-07 18:50:56 t 1 1 94883 454 0.00 2019-09-07 18:52:29 2019-09-07 18:52:34 t 1 1 94807 430 0.00 2019-09-07 16:38:41 2019-09-07 16:41:31 t 1 1 94811 432 0.00 2019-09-07 16:29:59 2019-09-07 16:44:51 t 1 1 188688 639 0.00 2019-12-07 04:52:07 2019-12-07 04:54:22 t 1 1 94825 400 0.00 2019-09-07 17:16:44 2019-09-07 17:26:49 t 1 2 94833 432 0.00 2019-09-07 17:38:23 2019-09-07 17:38:57 t 1 1 94841 367 0.00 2019-09-07 17:44:08 2019-09-07 17:45:16 t 1 2 94845 432 0.00 2019-09-07 17:50:44 2019-09-07 17:50:51 t 1 1 94846 420 0.00 2019-09-07 17:40:17 2019-09-07 17:52:15 t 1 1 94853 432 0.00 2019-09-07 18:06:45 2019-09-07 18:06:58 t 1 1 94855 432 0.00 2019-09-07 18:07:48 2019-09-07 18:08:10 t 1 1 94861 420 0.00 2019-09-07 18:23:03 2019-09-07 18:24:17 t 1 1 94864 335 0.00 2019-09-07 18:15:19 2019-09-07 18:25:24 t 1 2 94865 432 0.00 2019-09-07 18:18:16 2019-09-07 18:27:56 t 1 1 94870 213 0.00 2019-09-07 18:24:34 2019-09-07 18:37:00 t 1 1 94872 306 0.00 2019-09-07 18:37:45 2019-09-07 18:38:48 t 1 2 94874 402 0.00 2019-09-07 18:38:36 2019-09-07 18:39:50 t 1 2 94877 445 0.00 2019-09-07 17:18:06 2019-09-07 18:43:30 t 1 1 94878 213 0.00 2019-09-07 18:42:59 2019-09-07 18:44:27 t 1 1 94879 411 0.00 2019-09-07 16:26:21 2019-09-07 18:46:00 t 1 1 94882 454 0.00 2019-09-07 18:51:47 2019-09-07 18:52:29 t 1 1 94884 355 0.00 2019-09-07 18:53:27 2019-09-07 18:53:27 f 1 1 94886 454 0.00 2019-09-07 18:52:34 2019-09-07 18:53:34 t 1 1 94888 454 0.00 2019-09-07 18:54:07 2019-09-07 18:55:09 t 1 1 94889 454 0.00 2019-09-07 18:55:18 2019-09-07 18:56:03 t 1 2 94891 454 0.00 2019-09-07 18:56:12 2019-09-07 18:57:12 t 1 1 94897 372 0.00 2019-09-07 18:42:58 2019-09-07 19:08:03 t 1 2 94899 335 0.00 2019-09-07 19:13:54 2019-09-07 19:13:59 t 1 2 94901 335 0.00 2019-09-07 19:07:55 2019-09-07 19:18:00 t 1 2 94903 402 0.00 2019-09-07 19:12:00 2019-09-07 19:19:47 t 1 2 94906 372 0.00 2019-09-07 19:16:56 2019-09-07 19:27:01 t 1 2 94909 372 0.00 2019-09-07 19:23:28 2019-09-07 19:33:33 t 1 2 94914 445 0.00 2019-09-07 19:45:33 2019-09-07 19:47:15 t 1 1 94919 335 0.00 2019-09-07 20:00:57 2019-09-07 20:11:03 t 1 2 94921 213 0.00 2019-09-07 20:10:28 2019-09-07 20:12:03 t 1 1 188690 689 0.00 2019-12-07 04:55:41 2019-12-07 04:56:07 t 1 1 94927 454 0.00 2019-09-07 20:25:39 2019-09-07 20:25:50 t 1 2 94928 454 0.00 2019-09-07 20:26:07 2019-09-07 20:26:14 t 1 2 94931 402 0.00 2019-09-07 20:31:14 2019-09-07 20:33:03 t 1 2 94932 213 0.00 2019-09-07 20:32:20 2019-09-07 20:34:42 t 1 1 94934 432 0.00 2019-09-07 20:35:50 2019-09-07 20:36:26 t 1 1 94935 454 0.00 2019-09-07 20:27:11 2019-09-07 20:37:16 t 1 2 94940 432 0.00 2019-09-07 20:41:01 2019-09-07 20:41:08 t 1 1 94942 432 0.00 2019-09-07 20:44:06 2019-09-07 20:44:46 t 1 1 94943 432 0.00 2019-09-07 20:44:46 2019-09-07 20:45:30 t 1 1 94945 392 0.00 2019-09-07 20:39:36 2019-09-07 20:53:23 t 1 2 94948 456 0.00 2019-09-07 20:56:48 2019-09-07 20:56:48 f 1 1 94949 432 0.00 2019-09-07 20:56:49 2019-09-07 20:56:54 t 1 1 94951 456 0.00 2019-09-07 20:57:07 2019-09-07 21:00:20 t 1 1 94953 445 0.00 2019-09-07 20:45:33 2019-09-07 21:01:12 t 1 1 94958 432 0.00 2019-09-07 21:05:53 2019-09-07 21:06:05 t 1 1 94961 432 0.00 2019-09-07 21:13:03 2019-09-07 21:13:45 t 1 1 94965 432 0.00 2019-09-07 21:20:34 2019-09-07 21:20:41 t 1 1 94968 220 0.00 2019-09-07 21:11:53 2019-09-07 21:25:02 t 1 2 94970 449 0.00 2019-09-07 21:23:09 2019-09-07 21:27:08 t 1 1 94975 306 0.00 2019-09-07 21:34:16 2019-09-07 21:35:21 t 1 2 94978 432 0.00 2019-09-07 21:38:36 2019-09-07 21:38:49 t 1 1 94981 432 0.00 2019-09-07 21:48:31 2019-09-07 21:48:57 t 1 1 94984 335 0.00 2019-09-07 21:43:52 2019-09-07 21:53:57 t 1 2 94985 432 0.00 2019-09-07 21:54:38 2019-09-07 21:55:00 t 1 1 94986 372 0.00 2019-09-07 21:27:59 2019-09-07 21:56:13 t 1 2 94990 363 0.00 2019-09-07 22:01:52 2019-09-07 22:01:52 f 1 2 94994 432 0.00 2019-09-07 22:04:12 2019-09-07 22:04:18 t 1 1 94996 363 0.00 2019-09-07 22:06:07 2019-09-07 22:06:07 f 1 2 95001 292 0.00 2019-09-07 22:09:15 2019-09-07 22:10:20 t 1 2 95003 432 0.00 2019-09-07 22:13:43 2019-09-07 22:13:54 t 1 1 95006 411 0.00 2019-09-07 18:46:04 2019-09-07 22:15:14 t 1 1 95007 432 0.00 2019-09-07 22:16:08 2019-09-07 22:19:13 t 1 1 95009 432 0.00 2019-09-07 22:21:40 2019-09-07 22:21:49 t 1 1 95011 220 0.00 2019-09-07 22:23:52 2019-09-07 22:27:42 t 1 1 95016 213 0.00 2019-09-07 22:18:34 2019-09-07 22:34:39 t 1 1 95019 213 0.00 2019-09-07 22:42:38 2019-09-07 22:45:50 t 1 1 95020 392 0.00 2019-09-07 22:32:40 2019-09-07 22:48:59 t 1 2 95022 212 0.00 2019-09-07 22:44:05 2019-09-07 22:50:37 t 1 2 95026 445 0.00 2019-09-07 22:18:04 2019-09-07 22:57:28 t 1 1 95028 213 0.00 2019-09-07 22:54:06 2019-09-07 23:01:44 t 1 1 95030 451 0.00 2019-09-07 23:07:06 2019-09-07 23:12:00 t 1 1 95032 351 0.00 2019-09-07 23:08:17 2019-09-07 23:13:37 t 1 2 95034 445 0.00 2019-09-07 23:12:05 2019-09-07 23:14:32 t 1 1 95035 335 0.00 2019-09-07 23:00:30 2019-09-07 23:17:35 t 1 2 95053 432 0.00 2019-09-07 23:49:27 2019-09-07 23:50:10 t 1 1 95056 432 0.00 2019-09-07 23:52:39 2019-09-07 23:53:05 t 1 1 95060 451 0.00 2019-09-07 23:52:28 2019-09-07 23:57:46 t 1 1 95062 432 0.00 2019-09-07 23:57:24 2019-09-07 23:59:21 t 1 1 95063 432 0.00 2019-09-08 00:01:17 2019-09-08 00:01:24 t 1 1 95067 296 0.00 2019-09-08 00:06:22 2019-09-08 00:07:42 t 1 2 95069 432 0.00 2019-09-08 00:10:36 2019-09-08 00:11:18 t 1 1 95071 456 0.00 2019-09-07 23:49:10 2019-09-08 00:12:59 t 1 1 95073 375 0.00 2019-09-07 20:26:33 2019-09-08 00:18:09 t 1 1 95075 432 0.00 2019-09-08 00:20:38 2019-09-08 00:21:03 t 1 1 95077 432 0.00 2019-09-08 00:23:26 2019-09-08 00:23:38 t 1 1 95078 220 0.00 2019-09-07 23:56:56 2019-09-08 00:24:17 t 1 1 95094 375 0.00 2019-09-08 00:45:09 2019-09-08 00:51:48 t 1 1 95096 430 0.00 2019-09-08 00:54:08 2019-09-08 00:55:39 t 1 1 95098 400 0.00 2019-09-08 00:35:40 2019-09-08 01:00:45 t 1 2 95100 220 0.00 2019-09-08 01:07:00 2019-09-08 01:09:05 t 1 2 95104 220 0.00 2019-09-08 01:13:15 2019-09-08 01:28:20 t 1 2 95107 432 0.00 2019-09-08 01:38:05 2019-09-08 01:40:46 t 1 1 95110 432 0.00 2019-09-08 01:40:46 2019-09-08 01:56:43 t 1 1 95113 432 0.00 2019-09-08 02:11:58 2019-09-08 02:23:20 t 1 1 95114 372 0.00 2019-09-08 02:01:37 2019-09-08 02:36:42 t 1 2 95119 430 0.00 2019-09-08 04:51:40 2019-09-08 05:06:14 t 1 1 95120 430 0.00 2019-09-08 05:06:58 2019-09-08 05:07:37 t 1 1 95122 294 0.00 2019-09-08 04:14:08 2019-09-08 05:14:31 t 1 2 95124 430 0.00 2019-09-08 06:52:15 2019-09-08 06:53:37 t 1 1 95132 430 0.00 2019-09-08 07:20:31 2019-09-08 07:29:19 t 1 1 95137 213 0.00 2019-09-08 08:00:20 2019-09-08 08:02:22 t 1 1 95141 375 0.00 2019-09-08 06:54:38 2019-09-08 08:08:50 t 1 1 94809 335 0.00 2019-09-07 16:24:12 2019-09-07 16:44:17 t 1 2 94813 424 0.00 2019-09-07 16:23:29 2019-09-07 16:56:23 t 1 2 94815 420 0.00 2019-09-07 16:37:49 2019-09-07 16:56:55 t 1 1 94818 432 0.00 2019-09-07 16:44:51 2019-09-07 17:03:17 t 1 1 94819 420 0.00 2019-09-07 17:12:53 2019-09-07 17:18:06 t 1 1 94821 335 0.00 2019-09-07 17:09:46 2019-09-07 17:18:50 t 1 2 94824 213 0.00 2019-09-07 17:23:31 2019-09-07 17:25:50 t 1 1 94826 335 0.00 2019-09-07 17:20:00 2019-09-07 17:30:05 t 1 2 94827 430 0.00 2019-09-07 17:29:13 2019-09-07 17:32:53 t 1 1 94829 430 0.00 2019-09-07 17:34:44 2019-09-07 17:35:12 t 1 1 94830 430 0.00 2019-09-07 17:36:07 2019-09-07 17:36:19 t 1 1 94832 432 0.00 2019-09-07 17:25:47 2019-09-07 17:37:54 t 1 1 94834 412 0.00 2019-09-07 17:18:42 2019-09-07 17:39:52 t 1 1 94838 367 0.00 2019-09-07 17:41:46 2019-09-07 17:42:53 t 1 2 94840 367 0.00 2019-09-07 17:38:20 2019-09-07 17:44:20 t 1 2 94843 432 0.00 2019-09-07 17:48:38 2019-09-07 17:49:14 t 1 1 94844 432 0.00 2019-09-07 17:50:09 2019-09-07 17:50:16 t 1 1 94848 412 0.00 2019-09-07 17:53:48 2019-09-07 17:53:48 t 1 1 94852 385 0.00 2019-09-07 17:52:46 2019-09-07 18:04:09 t 1 2 94858 420 0.00 2019-09-07 18:07:13 2019-09-07 18:12:52 t 1 1 94859 372 0.00 2019-09-07 18:08:28 2019-09-07 18:18:34 t 1 2 94863 213 0.00 2019-09-07 18:24:17 2019-09-07 18:24:34 t 1 1 94866 247 0.00 2019-09-07 18:25:35 2019-09-07 18:28:41 t 1 2 94868 392 0.00 2019-09-07 18:09:11 2019-09-07 18:33:45 t 1 2 94869 335 0.00 2019-09-07 18:26:37 2019-09-07 18:36:42 t 1 2 94871 402 0.00 2019-09-07 18:36:01 2019-09-07 18:37:09 t 1 2 94873 367 0.00 2019-09-07 18:27:26 2019-09-07 18:38:49 t 1 2 94880 420 0.00 2019-09-07 18:46:05 2019-09-07 18:47:37 t 1 1 94892 402 0.00 2019-09-07 18:53:42 2019-09-07 18:57:31 t 1 2 94894 213 0.00 2019-09-07 19:04:56 2019-09-07 19:06:13 t 1 1 94902 372 0.00 2019-09-07 19:03:06 2019-09-07 19:18:11 t 1 2 94904 445 0.00 2019-09-07 19:07:04 2019-09-07 19:19:49 t 1 1 94912 422 0.00 2019-09-07 15:10:23 2019-09-07 19:41:37 t 1 2 94913 445 0.00 2019-09-07 19:20:21 2019-09-07 19:45:22 t 1 1 94915 402 0.00 2019-09-07 19:20:39 2019-09-07 20:00:44 t 1 2 94916 445 0.00 2019-09-07 19:47:15 2019-09-07 20:00:55 t 1 1 94918 213 0.00 2019-09-07 20:08:06 2019-09-07 20:10:28 t 1 1 94925 212 0.00 2019-09-07 20:22:30 2019-09-07 20:22:51 t 1 2 94926 375 0.00 2019-09-07 20:24:06 2019-09-07 20:25:26 t 1 1 94929 335 0.00 2019-09-07 20:07:11 2019-09-07 20:32:16 t 1 2 94938 292 0.00 2019-09-07 20:38:47 2019-09-07 20:39:50 t 1 2 94939 220 0.00 2019-09-07 20:36:34 2019-09-07 20:40:57 t 1 2 94941 445 0.00 2019-09-07 20:36:01 2019-09-07 20:41:15 t 1 1 94947 456 0.00 2019-09-07 20:56:20 2019-09-07 20:56:20 f 1 1 94950 432 0.00 2019-09-07 20:59:20 2019-09-07 20:59:27 t 1 1 94954 456 0.00 2019-09-07 21:00:41 2019-09-07 21:03:01 t 1 1 94956 335 0.00 2019-09-07 20:45:27 2019-09-07 21:05:32 t 1 2 94957 412 0.00 2019-09-07 17:54:49 2019-09-07 21:06:04 t 1 1 94960 400 0.00 2019-09-07 20:57:56 2019-09-07 21:13:02 t 1 2 94962 432 0.00 2019-09-07 21:15:38 2019-09-07 21:15:44 t 1 1 94963 432 0.00 2019-09-07 21:18:04 2019-09-07 21:18:07 t 1 1 94964 335 0.00 2019-09-07 21:05:22 2019-09-07 21:20:27 t 1 2 94973 213 0.00 2019-09-07 21:21:41 2019-09-07 21:32:47 t 1 1 94974 432 0.00 2019-09-07 21:33:33 2019-09-07 21:34:18 t 1 1 94976 213 0.00 2019-09-07 21:32:46 2019-09-07 21:35:50 t 1 1 94983 247 0.00 2019-09-07 21:39:59 2019-09-07 21:51:15 t 1 2 94987 212 0.00 2019-09-07 21:55:49 2019-09-07 21:56:36 t 1 2 94988 432 0.00 2019-09-07 22:00:19 2019-09-07 22:00:52 t 1 1 94989 363 0.00 2019-09-07 22:01:24 2019-09-07 22:01:24 f 1 2 94997 363 0.00 2019-09-07 18:36:15 2019-09-07 22:06:21 t 1 2 94999 432 0.00 2019-09-07 22:09:51 2019-09-07 22:10:03 t 1 1 95002 432 0.00 2019-09-07 22:12:06 2019-09-07 22:13:22 t 1 1 95012 402 0.00 2019-09-07 20:38:10 2019-09-07 22:28:15 t 1 2 95014 335 0.00 2019-09-07 22:11:31 2019-09-07 22:31:36 t 1 2 95015 432 0.00 2019-09-07 22:32:52 2019-09-07 22:33:33 t 1 1 95017 296 0.00 2019-09-07 22:36:58 2019-09-07 22:41:22 t 1 2 95023 451 0.00 2019-09-07 22:39:59 2019-09-07 22:53:58 t 1 1 95027 432 0.00 2019-09-07 22:56:58 2019-09-07 22:57:51 t 1 1 95033 220 0.00 2019-09-07 23:10:16 2019-09-07 23:13:51 t 1 2 95036 247 0.00 2019-09-07 23:15:13 2019-09-07 23:19:41 t 1 2 95037 432 0.00 2019-09-07 23:00:45 2019-09-07 23:21:36 t 1 1 95039 220 0.00 2019-09-07 22:28:48 2019-09-07 23:23:16 t 1 1 95040 451 0.00 2019-09-07 23:21:45 2019-09-07 23:24:32 t 1 1 95043 432 0.00 2019-09-07 23:31:47 2019-09-07 23:32:30 t 1 1 95049 432 0.00 2019-09-07 23:39:58 2019-09-07 23:45:15 t 1 1 95051 402 0.00 2019-09-07 23:43:29 2019-09-07 23:49:01 t 1 2 95054 212 0.00 2019-09-07 23:49:52 2019-09-07 23:50:21 t 1 2 95059 306 0.00 2019-09-07 23:55:20 2019-09-07 23:56:24 t 1 2 95065 296 0.00 2019-09-08 00:04:32 2019-09-08 00:06:56 t 1 2 95068 432 0.00 2019-09-08 00:08:33 2019-09-08 00:08:35 t 1 1 95076 212 0.00 2019-09-08 00:20:32 2019-09-08 00:21:38 t 1 2 95079 392 0.00 2019-09-07 23:50:01 2019-09-08 00:24:21 t 1 2 95080 432 0.00 2019-09-08 00:25:07 2019-09-08 00:25:50 t 1 1 95081 432 0.00 2019-09-08 00:26:04 2019-09-08 00:26:09 t 1 1 95082 432 0.00 2019-09-08 00:26:46 2019-09-08 00:26:59 t 1 1 95083 432 0.00 2019-09-08 00:28:51 2019-09-08 00:28:54 t 1 1 95085 456 0.00 2019-09-08 00:12:59 2019-09-08 00:29:12 t 1 1 95086 432 0.00 2019-09-08 00:30:09 2019-09-08 00:30:23 t 1 1 95087 375 0.00 2019-09-08 00:29:08 2019-09-08 00:34:47 t 1 1 95088 392 0.00 2019-09-08 00:27:16 2019-09-08 00:34:56 t 1 2 95090 432 0.00 2019-09-08 00:35:37 2019-09-08 00:38:04 t 1 1 95108 375 0.00 2019-09-08 01:03:35 2019-09-08 01:42:48 t 1 1 95109 445 0.00 2019-09-08 00:12:23 2019-09-08 01:50:05 t 1 1 188689 639 0.00 2019-12-07 04:55:16 2019-12-07 04:55:23 t 1 1 95118 372 0.00 2019-09-08 02:53:50 2019-09-08 03:03:55 t 1 2 95121 430 0.00 2019-09-08 05:08:42 2019-09-08 05:09:43 t 1 1 95126 212 0.00 2019-09-08 06:53:46 2019-09-08 06:54:51 t 1 2 95127 453 0.00 2019-09-07 22:20:44 2019-09-08 07:10:49 t 1 2 95128 346 0.00 2019-09-08 07:11:52 2019-09-08 07:11:52 f 1 2 95129 346 0.00 2019-09-08 07:12:14 2019-09-08 07:12:14 f 1 2 95134 430 0.00 2019-09-08 07:29:19 2019-09-08 07:37:24 t 1 1 95135 213 0.00 2019-09-08 07:41:45 2019-09-08 08:00:20 t 1 1 95136 220 0.00 2019-09-08 07:56:30 2019-09-08 08:02:15 t 1 1 95139 306 0.00 2019-09-08 08:04:33 2019-09-08 08:05:35 t 1 2 95149 306 0.00 2019-09-08 08:21:00 2019-09-08 08:22:04 t 1 2 95160 456 0.00 2019-09-08 08:44:41 2019-09-08 08:52:57 t 1 1 95163 456 0.00 2019-09-08 08:55:50 2019-09-08 09:03:27 t 1 1 94885 445 0.00 2019-09-07 18:43:30 2019-09-07 18:53:31 t 1 1 94887 355 0.00 2019-09-07 18:54:35 2019-09-07 18:54:35 f 1 2 94890 454 0.00 2019-09-07 18:56:43 2019-09-07 18:57:03 t 1 2 94893 379 0.00 2019-09-07 17:23:38 2019-09-07 19:03:44 t 1 2 94895 335 0.00 2019-09-07 18:56:40 2019-09-07 19:06:45 t 1 2 94896 445 0.00 2019-09-07 18:53:31 2019-09-07 19:07:13 t 1 1 94898 292 0.00 2019-09-07 19:09:54 2019-09-07 19:10:56 t 1 2 94900 335 0.00 2019-09-07 19:14:31 2019-09-07 19:14:32 t 1 2 94905 212 0.00 2019-09-07 19:21:53 2019-09-07 19:22:16 t 1 2 94907 213 0.00 2019-09-07 19:25:41 2019-09-07 19:27:36 t 1 1 94908 213 0.00 2019-09-07 19:27:36 2019-09-07 19:33:09 t 1 1 188691 639 0.00 2019-12-07 04:56:14 2019-12-07 04:56:23 t 1 1 94911 392 0.00 2019-09-07 19:26:08 2019-09-07 19:38:01 t 1 2 94917 375 0.00 2019-09-07 19:55:36 2019-09-07 20:08:19 t 1 1 94920 375 0.00 2019-09-07 20:09:59 2019-09-07 20:11:59 t 1 1 94922 400 0.00 2019-09-07 19:39:57 2019-09-07 20:15:02 t 1 2 94924 445 0.00 2019-09-07 20:00:54 2019-09-07 20:16:12 t 1 1 94930 432 0.00 2019-09-07 20:27:37 2019-09-07 20:32:18 t 1 1 94933 445 0.00 2019-09-07 20:16:13 2019-09-07 20:36:02 t 1 1 94936 432 0.00 2019-09-07 20:38:36 2019-09-07 20:38:46 t 1 1 94937 402 0.00 2019-09-07 20:33:13 2019-09-07 20:39:01 t 1 2 94944 445 0.00 2019-09-07 20:41:47 2019-09-07 20:45:33 t 1 1 94946 432 0.00 2019-09-07 20:55:22 2019-09-07 20:56:01 t 1 1 94952 456 0.00 2019-09-07 21:00:26 2019-09-07 21:00:30 t 1 1 94955 432 0.00 2019-09-07 21:05:06 2019-09-07 21:05:10 t 1 1 94959 306 0.00 2019-09-07 21:07:04 2019-09-07 21:08:09 t 1 2 94966 432 0.00 2019-09-07 21:22:19 2019-09-07 21:22:24 t 1 1 94967 212 0.00 2019-09-07 20:31:42 2019-09-07 21:24:59 t 1 2 94969 445 0.00 2019-09-07 21:01:03 2019-09-07 21:25:52 t 1 1 94971 432 0.00 2019-09-07 21:27:47 2019-09-07 21:28:22 t 1 1 94972 247 0.00 2019-09-07 21:31:45 2019-09-07 21:32:08 t 1 2 94977 432 0.00 2019-09-07 21:37:07 2019-09-07 21:37:12 t 1 1 94979 432 0.00 2019-09-07 21:39:48 2019-09-07 21:40:39 t 1 1 94980 213 0.00 2019-09-07 21:42:27 2019-09-07 21:45:26 t 1 1 94982 335 0.00 2019-09-07 21:25:12 2019-09-07 21:50:17 t 1 2 94991 363 0.00 2019-09-07 22:03:23 2019-09-07 22:03:23 f 1 2 94992 363 0.00 2019-09-07 22:03:58 2019-09-07 22:03:58 f 1 2 94993 363 0.00 2019-09-07 22:04:15 2019-09-07 22:04:15 f 1 2 94995 363 0.00 2019-09-07 22:04:40 2019-09-07 22:04:40 f 1 2 94998 335 0.00 2019-09-07 21:58:22 2019-09-07 22:08:27 t 1 2 95000 432 0.00 2019-09-07 21:25:52 2019-09-07 22:10:15 t 1 1 95004 392 0.00 2019-09-07 21:57:40 2019-09-07 22:14:01 t 1 2 95005 432 0.00 2019-09-07 22:14:54 2019-09-07 22:15:05 t 1 1 188692 639 0.00 2019-12-07 04:56:52 2019-12-07 04:58:22 t 1 1 95010 432 0.00 2019-09-07 22:26:47 2019-09-07 22:27:37 t 1 1 95013 220 0.00 2019-09-07 22:27:45 2019-09-07 22:28:45 t 1 1 95018 432 0.00 2019-09-07 22:39:15 2019-09-07 22:43:40 t 1 1 95021 449 0.00 2019-09-07 22:37:52 2019-09-07 22:50:28 t 1 1 95024 213 0.00 2019-09-07 22:53:22 2019-09-07 22:54:06 t 1 1 95025 432 0.00 2019-09-07 22:43:28 2019-09-07 22:56:28 t 1 1 95029 451 0.00 2019-09-07 22:53:58 2019-09-07 23:07:06 t 1 1 95031 445 0.00 2019-09-07 22:57:25 2019-09-07 23:12:04 t 1 1 95038 451 0.00 2019-09-07 23:12:01 2019-09-07 23:21:45 t 1 1 95041 432 0.00 2019-09-07 23:25:49 2019-09-07 23:26:42 t 1 1 95042 432 0.00 2019-09-07 23:27:44 2019-09-07 23:27:49 t 1 1 95044 212 0.00 2019-09-07 23:33:18 2019-09-07 23:33:41 t 1 2 95045 220 0.00 2019-09-07 23:23:16 2019-09-07 23:33:58 t 1 1 95046 220 0.00 2019-09-07 23:33:58 2019-09-07 23:35:14 t 1 1 95047 449 0.00 2019-09-07 23:40:36 2019-09-07 23:42:46 t 1 1 95048 339 0.00 2019-09-07 23:42:34 2019-09-07 23:44:51 t 1 2 95050 432 0.00 2019-09-07 23:46:46 2019-09-07 23:47:12 t 1 1 95052 456 0.00 2019-09-07 23:48:00 2019-09-07 23:49:06 t 1 1 95055 451 0.00 2019-09-07 23:43:05 2019-09-07 23:52:28 t 1 1 95057 454 0.00 2019-09-07 22:43:08 2019-09-07 23:54:19 t 1 2 95058 220 0.00 2019-09-07 23:35:14 2019-09-07 23:55:24 t 1 1 95061 432 0.00 2019-09-07 23:58:56 2019-09-07 23:59:01 t 1 1 95064 432 0.00 2019-09-08 00:03:15 2019-09-08 00:03:28 t 1 1 95066 432 0.00 2019-09-08 00:06:48 2019-09-08 00:07:02 t 1 1 95070 445 0.00 2019-09-07 23:15:30 2019-09-08 00:12:23 t 1 1 95072 294 0.00 2019-09-07 22:24:19 2019-09-08 00:13:43 t 1 2 95074 212 0.00 2019-09-08 00:19:05 2019-09-08 00:20:10 t 1 2 95084 375 0.00 2019-09-08 00:18:09 2019-09-08 00:29:08 t 1 1 95089 375 0.00 2019-09-08 00:34:47 2019-09-08 00:36:27 t 1 1 95091 432 0.00 2019-09-08 00:40:04 2019-09-08 00:40:17 t 1 1 95092 375 0.00 2019-09-08 00:36:27 2019-09-08 00:45:09 t 1 1 95093 432 0.00 2019-09-08 00:44:09 2019-09-08 00:46:31 t 1 1 95095 392 0.00 2019-09-08 00:41:55 2019-09-08 00:55:09 t 1 2 95097 375 0.00 2019-09-08 00:51:48 2019-09-08 00:58:09 t 1 1 95099 375 0.00 2019-09-08 00:58:09 2019-09-08 01:03:35 t 1 1 95101 220 0.00 2019-09-07 23:56:33 2019-09-08 01:09:56 t 1 2 95102 220 0.00 2019-09-08 01:10:45 2019-09-08 01:20:50 t 1 2 95103 220 0.00 2019-09-08 00:24:17 2019-09-08 01:22:14 t 1 1 95105 402 0.00 2019-09-07 23:49:25 2019-09-08 01:29:30 t 1 2 95106 432 0.00 2019-09-08 01:26:01 2019-09-08 01:38:05 t 1 1 95112 432 0.00 2019-09-08 01:56:43 2019-09-08 02:11:58 t 1 1 95115 220 0.00 2019-09-08 02:35:41 2019-09-08 02:36:58 t 1 1 95116 432 0.00 2019-09-08 02:23:21 2019-09-08 02:46:33 t 1 1 95117 375 0.00 2019-09-08 01:42:48 2019-09-08 03:03:12 t 1 1 95123 375 0.00 2019-09-08 03:03:12 2019-09-08 06:43:41 t 1 1 95125 375 0.00 2019-09-08 06:43:40 2019-09-08 06:54:39 t 1 1 95130 346 0.00 2019-09-08 07:14:53 2019-09-08 07:14:53 f 1 2 95131 346 0.00 2019-09-08 07:15:03 2019-09-08 07:15:03 f 1 2 95133 294 0.00 2019-09-08 07:06:41 2019-09-08 07:33:55 t 1 2 95138 306 0.00 2019-09-08 08:03:24 2019-09-08 08:03:33 t 1 2 95140 306 0.00 2019-09-08 08:07:14 2019-09-08 08:08:19 t 1 2 95143 306 0.00 2019-09-08 08:10:16 2019-09-08 08:11:21 t 1 2 95144 306 0.00 2019-09-08 08:11:45 2019-09-08 08:12:50 t 1 2 95146 412 0.00 2019-09-07 21:06:04 2019-09-08 08:16:25 t 1 1 95147 306 0.00 2019-09-08 08:17:00 2019-09-08 08:18:04 t 1 2 95152 400 0.00 2019-09-08 08:15:42 2019-09-08 08:25:47 t 1 2 95153 213 0.00 2019-09-08 08:29:51 2019-09-08 08:33:46 t 1 1 95154 220 0.00 2019-09-08 08:36:50 2019-09-08 08:43:52 t 1 1 95155 456 0.00 2019-09-08 08:35:29 2019-09-08 08:44:41 t 1 1 95157 306 0.00 2019-09-08 08:46:32 2019-09-08 08:47:40 t 1 2 95159 220 0.00 2019-09-08 08:43:52 2019-09-08 08:52:20 t 1 1 95165 220 0.00 2019-09-08 08:52:20 2019-09-08 09:14:04 t 1 1 95166 456 0.00 2019-09-08 09:03:27 2019-09-08 09:16:12 t 1 1 95142 306 0.00 2019-09-08 08:08:42 2019-09-08 08:09:49 t 1 2 95145 306 0.00 2019-09-08 08:15:19 2019-09-08 08:16:23 t 1 2 95148 306 0.00 2019-09-08 08:19:22 2019-09-08 08:20:25 t 1 2 95150 220 0.00 2019-09-08 08:20:39 2019-09-08 08:22:25 t 1 1 95151 375 0.00 2019-09-08 08:08:50 2019-09-08 08:24:58 t 1 1 95156 306 0.00 2019-09-08 08:45:09 2019-09-08 08:46:14 t 1 2 95158 306 0.00 2019-09-08 08:48:05 2019-09-08 08:49:09 t 1 2 95161 456 0.00 2019-09-08 08:52:57 2019-09-08 08:55:25 t 1 1 95162 212 0.00 2019-09-08 08:08:13 2019-09-08 08:58:18 t 1 2 95164 306 0.00 2019-09-08 09:06:25 2019-09-08 09:07:30 t 1 2 95167 453 0.00 2019-09-08 08:46:38 2019-09-08 09:16:22 t 1 2 95168 456 0.00 2019-09-08 09:16:12 2019-09-08 09:20:13 t 1 1 95176 432 0.00 2019-09-08 09:01:47 2019-09-08 10:03:53 t 1 1 95178 454 0.00 2019-09-08 10:06:09 2019-09-08 10:16:15 t 1 2 95181 306 0.00 2019-09-08 10:25:17 2019-09-08 10:26:24 t 1 2 95192 220 0.00 2019-09-08 10:40:31 2019-09-08 10:42:50 t 1 1 95193 306 0.00 2019-09-08 10:46:08 2019-09-08 10:47:12 t 1 2 95194 392 0.00 2019-09-08 10:24:02 2019-09-08 10:47:59 t 1 2 95196 220 0.00 2019-09-08 10:49:58 2019-09-08 10:50:24 t 1 1 95197 220 0.00 2019-09-08 10:50:24 2019-09-08 10:50:59 t 1 1 95199 213 0.00 2019-09-08 10:41:12 2019-09-08 10:51:37 t 1 1 95201 220 0.00 2019-09-08 10:52:06 2019-09-08 10:52:39 t 1 1 95204 306 0.00 2019-09-08 10:53:08 2019-09-08 10:54:13 t 1 2 95207 213 0.00 2019-09-08 10:52:06 2019-09-08 10:55:23 t 1 1 95212 220 0.00 2019-09-08 10:57:04 2019-09-08 10:57:43 t 1 1 95220 213 0.00 2019-09-08 11:05:59 2019-09-08 11:09:23 t 1 1 95223 220 0.00 2019-09-08 11:18:14 2019-09-08 11:31:42 t 1 1 95225 375 0.00 2019-09-08 10:18:51 2019-09-08 11:34:56 t 1 1 95226 213 0.00 2019-09-08 11:32:31 2019-09-08 11:46:49 t 1 1 95227 436 0.00 2019-09-08 11:44:48 2019-09-08 11:50:10 t 1 1 95228 432 0.00 2019-09-08 10:12:50 2019-09-08 11:51:29 t 1 1 95232 375 0.00 2019-09-08 11:35:02 2019-09-08 12:05:32 t 1 1 95244 212 0.00 2019-09-08 12:50:56 2019-09-08 12:52:37 t 1 2 95245 432 0.00 2019-09-08 11:51:28 2019-09-08 12:56:14 t 1 1 95246 213 0.00 2019-09-08 12:50:04 2019-09-08 12:59:18 t 1 1 95247 306 0.00 2019-09-08 13:04:25 2019-09-08 13:05:29 t 1 2 95249 306 0.00 2019-09-08 13:16:50 2019-09-08 13:17:52 t 1 2 95253 456 0.00 2019-09-08 13:21:37 2019-09-08 13:25:37 t 1 1 95259 212 0.00 2019-09-08 13:30:57 2019-09-08 13:31:34 t 1 2 95261 412 0.00 2019-09-08 13:18:24 2019-09-08 13:38:33 t 1 1 95262 445 0.00 2019-09-08 13:34:58 2019-09-08 13:40:00 t 1 1 95264 400 0.00 2019-09-08 13:07:31 2019-09-08 13:47:36 t 1 2 95265 451 0.00 2019-09-08 13:47:40 2019-09-08 13:54:56 t 1 1 95270 373 0.00 2019-09-08 14:12:49 2019-09-08 14:13:51 t 1 2 95272 402 0.00 2019-09-08 14:07:49 2019-09-08 14:16:19 t 1 2 95280 306 0.00 2019-09-08 14:44:02 2019-09-08 14:45:05 t 1 2 95285 400 0.00 2019-09-08 14:52:13 2019-09-08 15:02:18 t 1 2 95286 220 0.00 2019-09-08 14:16:15 2019-09-08 15:03:08 t 1 1 95287 451 0.00 2019-09-08 15:08:46 2019-09-08 15:11:20 t 1 1 95288 432 0.00 2019-09-08 15:11:20 2019-09-08 15:11:59 t 1 1 95292 220 0.00 2019-09-08 15:03:08 2019-09-08 15:16:38 t 1 1 95293 432 0.00 2019-09-08 15:16:56 2019-09-08 15:17:09 t 1 1 95296 363 0.00 2019-09-08 15:27:14 2019-09-08 15:27:14 f 1 2 95298 400 0.00 2019-09-08 15:21:56 2019-09-08 15:32:01 t 1 2 95301 335 0.00 2019-09-08 15:38:42 2019-09-08 15:38:42 f 1 2 95302 335 0.00 2019-09-08 15:39:19 2019-09-08 15:39:19 f 1 2 95304 335 0.00 2019-09-08 15:24:37 2019-09-08 15:39:42 t 1 2 95306 432 0.00 2019-09-08 15:34:52 2019-09-08 15:46:47 t 1 1 95307 335 0.00 2019-09-08 15:39:55 2019-09-08 15:50:00 t 1 2 95309 432 0.00 2019-09-08 15:54:36 2019-09-08 15:54:39 t 1 1 95312 432 0.00 2019-09-08 16:01:41 2019-09-08 16:02:03 t 1 1 95313 432 0.00 2019-09-08 16:04:25 2019-09-08 16:04:37 t 1 1 95314 402 0.00 2019-09-08 16:00:22 2019-09-08 16:06:44 t 1 2 95319 432 0.00 2019-09-08 16:13:28 2019-09-08 16:17:03 t 1 1 95321 335 0.00 2019-09-08 16:03:44 2019-09-08 16:18:49 t 1 2 95323 400 0.00 2019-09-08 15:44:39 2019-09-08 16:19:44 t 1 2 95324 213 0.00 2019-09-08 16:17:19 2019-09-08 16:21:34 t 1 1 95325 306 0.00 2019-09-08 16:22:21 2019-09-08 16:23:26 t 1 2 95326 212 0.00 2019-09-08 16:26:21 2019-09-08 16:27:04 t 1 2 95328 432 0.00 2019-09-08 16:29:55 2019-09-08 16:29:59 t 1 1 95330 335 0.00 2019-09-08 16:22:08 2019-09-08 16:32:13 t 1 2 95331 213 0.00 2019-09-08 16:29:46 2019-09-08 16:35:24 t 1 1 95332 402 0.00 2019-09-08 16:09:37 2019-09-08 16:38:29 t 1 2 95337 432 0.00 2019-09-08 16:45:22 2019-09-08 16:46:01 t 1 1 95339 372 0.00 2019-09-08 16:46:06 2019-09-08 16:46:53 t 1 2 95340 432 0.00 2019-09-08 16:50:20 2019-09-08 16:50:32 t 1 1 95345 422 0.00 2019-09-08 16:48:44 2019-09-08 16:58:49 t 1 2 95346 400 0.00 2019-09-08 16:50:23 2019-09-08 17:00:28 t 1 2 95347 402 0.00 2019-09-08 16:58:46 2019-09-08 17:02:41 t 1 2 95348 454 0.00 2019-09-08 15:28:21 2019-09-08 17:03:41 t 1 2 95349 432 0.00 2019-09-08 16:51:11 2019-09-08 17:05:28 t 1 1 95350 432 0.00 2019-09-08 17:05:36 2019-09-08 17:09:41 t 1 1 95352 381 0.00 2019-09-08 17:05:33 2019-09-08 17:20:38 t 1 2 95354 402 0.00 2019-09-08 17:19:27 2019-09-08 17:23:33 t 1 2 95357 420 0.00 2019-09-08 17:18:47 2019-09-08 17:26:20 t 1 1 95358 453 0.00 2019-09-08 17:18:19 2019-09-08 17:28:24 t 1 2 95360 385 0.00 2019-09-08 17:29:57 2019-09-08 17:30:02 t 1 2 95362 445 0.00 2019-09-08 17:30:31 2019-09-08 17:31:56 t 1 1 95371 306 0.00 2019-09-08 17:53:21 2019-09-08 17:54:25 t 1 2 95373 306 0.00 2019-09-08 17:56:32 2019-09-08 17:57:38 t 1 2 188694 639 0.00 2019-12-07 04:58:25 2019-12-07 04:59:08 t 1 1 95376 411 0.00 2019-09-08 16:18:11 2019-09-08 18:00:44 t 1 1 95377 420 0.00 2019-09-08 17:26:26 2019-09-08 18:01:14 t 1 1 95378 306 0.00 2019-09-08 18:00:38 2019-09-08 18:01:44 t 1 2 95379 213 0.00 2019-09-08 18:01:14 2019-09-08 18:02:29 t 1 1 95381 306 0.00 2019-09-08 18:02:19 2019-09-08 18:03:23 t 1 2 95383 335 0.00 2019-09-08 17:53:03 2019-09-08 18:08:08 t 1 2 95385 458 0.00 2019-09-08 18:19:29 2019-09-08 18:19:52 t 1 2 95387 420 0.00 2019-09-08 18:02:29 2019-09-08 18:24:33 t 1 1 95388 335 0.00 2019-09-08 18:16:21 2019-09-08 18:26:26 t 1 2 95390 213 0.00 2019-09-08 18:30:42 2019-09-08 18:35:04 t 1 1 95391 379 0.00 2019-09-08 17:12:12 2019-09-08 18:37:19 t 1 2 95392 213 0.00 2019-09-08 18:35:03 2019-09-08 18:38:38 t 1 1 95396 456 0.00 2019-09-08 18:49:07 2019-09-08 18:49:44 t 1 1 95397 412 0.00 2019-09-08 17:24:41 2019-09-08 18:52:10 t 1 1 95398 335 0.00 2019-09-08 18:42:56 2019-09-08 18:53:01 t 1 2 95402 420 0.00 2019-09-08 19:01:03 2019-09-08 19:03:51 t 1 1 95169 220 0.00 2019-09-08 09:23:27 2019-09-08 09:25:52 t 1 1 95170 331 0.00 2019-09-08 09:30:45 2019-09-08 09:31:51 t 1 2 95172 375 0.00 2019-09-08 08:24:57 2019-09-08 09:44:58 t 1 1 95175 402 0.00 2019-09-08 08:05:58 2019-09-08 10:03:04 t 1 2 95180 220 0.00 2019-09-08 10:22:19 2019-09-08 10:23:30 t 1 1 95182 456 0.00 2019-09-08 10:19:53 2019-09-08 10:28:30 t 1 1 95185 306 0.00 2019-09-08 10:30:02 2019-09-08 10:31:08 t 1 2 95187 220 0.00 2019-09-08 10:30:39 2019-09-08 10:31:48 t 1 1 95188 451 0.00 2019-09-08 10:31:24 2019-09-08 10:33:39 t 1 1 95190 213 0.00 2019-09-08 10:13:49 2019-09-08 10:34:40 t 1 1 95198 220 0.00 2019-09-08 10:50:59 2019-09-08 10:51:32 t 1 1 95202 220 0.00 2019-09-08 10:52:39 2019-09-08 10:53:13 t 1 1 95205 220 0.00 2019-09-08 10:53:44 2019-09-08 10:54:19 t 1 1 95208 220 0.00 2019-09-08 10:54:50 2019-09-08 10:55:25 t 1 1 95209 220 0.00 2019-09-08 10:55:25 2019-09-08 10:55:57 t 1 1 95215 306 0.00 2019-09-08 10:58:47 2019-09-08 10:59:55 t 1 2 95218 351 0.00 2019-09-08 10:59:44 2019-09-08 11:06:16 t 1 2 95219 212 0.00 2019-09-08 11:08:48 2019-09-08 11:09:22 t 1 2 95221 213 0.00 2019-09-08 11:14:43 2019-09-08 11:25:53 t 1 1 95229 213 0.00 2019-09-08 11:46:48 2019-09-08 11:51:52 t 1 1 95231 213 0.00 2019-09-08 11:56:35 2019-09-08 11:58:33 t 1 1 95233 454 0.00 2019-09-08 12:03:42 2019-09-08 12:05:53 t 1 2 95240 420 0.00 2019-09-08 12:42:15 2019-09-08 12:45:27 t 1 1 95241 402 0.00 2019-09-08 12:32:46 2019-09-08 12:47:51 t 1 2 95243 213 0.00 2019-09-08 12:48:45 2019-09-08 12:50:04 t 1 1 95251 412 0.00 2019-09-08 08:16:25 2019-09-08 13:18:24 t 1 1 95252 451 0.00 2019-09-08 13:07:33 2019-09-08 13:23:39 t 1 1 95254 213 0.00 2019-09-08 13:18:12 2019-09-08 13:26:31 t 1 1 95256 456 0.00 2019-09-08 13:24:43 2019-09-08 13:29:49 t 1 1 95258 306 0.00 2019-09-08 13:30:14 2019-09-08 13:31:17 t 1 2 95266 445 0.00 2019-09-08 13:42:18 2019-09-08 14:00:17 t 1 1 95268 451 0.00 2019-09-08 13:54:56 2019-09-08 14:06:50 t 1 1 95271 220 0.00 2019-09-08 14:02:39 2019-09-08 14:16:15 t 1 1 95273 411 0.00 2019-09-08 07:43:56 2019-09-08 14:17:18 t 1 1 95274 400 0.00 2019-09-08 14:04:09 2019-09-08 14:19:14 t 1 2 95276 400 0.00 2019-09-08 14:17:23 2019-09-08 14:27:28 t 1 2 95277 411 0.00 2019-09-08 14:17:18 2019-09-08 14:35:42 t 1 1 95278 213 0.00 2019-09-08 14:34:26 2019-09-08 14:36:47 t 1 1 95279 306 0.00 2019-09-08 14:41:43 2019-09-08 14:42:46 t 1 2 95281 411 0.00 2019-09-08 14:35:42 2019-09-08 14:46:38 t 1 1 95283 432 0.00 2019-09-08 14:44:02 2019-09-08 14:57:04 t 1 1 95291 432 0.00 2019-09-08 15:15:50 2019-09-08 15:15:57 t 1 1 95295 432 0.00 2019-09-08 15:20:36 2019-09-08 15:21:37 t 1 1 95303 335 0.00 2019-09-08 15:39:33 2019-09-08 15:39:33 f 1 2 95310 402 0.00 2019-09-08 15:25:53 2019-09-08 15:59:27 t 1 2 95311 432 0.00 2019-09-08 15:59:20 2019-09-08 16:00:25 t 1 1 95315 306 0.00 2019-09-08 16:07:03 2019-09-08 16:08:08 t 1 2 95322 432 0.00 2019-09-08 16:17:03 2019-09-08 16:19:11 t 1 1 95327 432 0.00 2019-09-08 16:27:04 2019-09-08 16:27:25 t 1 1 95334 372 0.00 2019-09-08 16:38:13 2019-09-08 16:40:27 t 1 2 95335 213 0.00 2019-09-08 16:43:19 2019-09-08 16:44:37 t 1 1 95336 335 0.00 2019-09-08 16:35:07 2019-09-08 16:45:12 t 1 2 95341 213 0.00 2019-09-08 16:44:37 2019-09-08 16:51:11 t 1 1 95342 422 0.00 2019-09-08 14:17:45 2019-09-08 16:52:50 t 1 2 95344 402 0.00 2019-09-08 16:45:26 2019-09-08 16:55:39 t 1 2 95353 453 0.00 2019-09-08 17:08:22 2019-09-08 17:23:27 t 1 2 95355 412 0.00 2019-09-08 13:38:33 2019-09-08 17:24:41 t 1 1 95359 381 0.00 2019-09-08 17:28:36 2019-09-08 17:28:36 f 1 2 95364 306 0.00 2019-09-08 17:32:08 2019-09-08 17:33:13 t 1 2 95365 385 0.00 2019-09-08 17:34:01 2019-09-08 17:34:07 t 1 2 95367 385 0.00 2019-09-08 17:34:23 2019-09-08 17:34:27 t 1 2 95368 381 0.00 2019-09-08 17:25:05 2019-09-08 17:35:10 t 1 2 95372 324 0.00 2019-09-08 17:54:32 2019-09-08 17:54:32 f 1 2 95380 456 0.00 2019-09-08 18:01:34 2019-09-08 18:02:45 t 1 1 95393 220 0.00 2019-09-08 17:38:10 2019-09-08 18:39:50 t 1 1 95395 220 0.00 2019-09-08 18:39:50 2019-09-08 18:43:15 t 1 1 95399 220 0.00 2019-09-08 18:46:52 2019-09-08 18:53:46 t 1 1 95400 456 0.00 2019-09-08 18:49:49 2019-09-08 19:00:33 t 1 1 95401 400 0.00 2019-09-08 18:53:11 2019-09-08 19:03:16 t 1 2 95403 456 0.00 2019-09-08 19:06:27 2019-09-08 19:09:31 t 1 1 95405 335 0.00 2019-09-08 19:05:16 2019-09-08 19:20:21 t 1 2 95414 420 0.00 2019-09-08 19:37:03 2019-09-08 19:38:48 t 1 1 95415 392 0.00 2019-09-08 19:25:09 2019-09-08 19:40:14 t 1 2 95416 392 0.00 2019-09-08 19:40:43 2019-09-08 19:41:41 t 1 2 95417 306 0.00 2019-09-08 19:53:29 2019-09-08 19:54:30 t 1 2 95418 306 0.00 2019-09-08 19:55:51 2019-09-08 19:56:58 t 1 2 95422 349 0.00 2019-09-08 19:58:51 2019-09-08 19:58:51 f 1 2 95425 445 0.00 2019-09-08 19:33:53 2019-09-08 20:04:37 t 1 1 95427 449 0.00 2019-09-08 20:07:16 2019-09-08 20:07:54 t 1 1 95431 392 0.00 2019-09-08 20:06:46 2019-09-08 20:10:45 t 1 2 95436 213 0.00 2019-09-08 20:17:16 2019-09-08 20:21:07 t 1 1 188695 639 0.00 2019-12-07 04:59:22 2019-12-07 04:59:29 t 1 1 95440 412 0.00 2019-09-08 20:20:46 2019-09-08 20:25:14 t 1 1 95447 213 0.00 2019-09-08 20:37:26 2019-09-08 20:42:33 t 1 1 95451 422 0.00 2019-09-08 19:23:30 2019-09-08 20:50:47 t 1 2 95457 212 0.00 2019-09-08 21:00:43 2019-09-08 21:03:40 t 1 2 95458 400 0.00 2019-09-08 20:56:53 2019-09-08 21:06:59 t 1 2 95459 432 0.00 2019-09-08 21:11:07 2019-09-08 21:15:04 t 1 1 95462 335 0.00 2019-09-08 21:06:14 2019-09-08 21:21:19 t 1 2 95465 346 0.00 2019-09-08 21:36:15 2019-09-08 21:36:15 f 1 2 188696 639 0.00 2019-12-07 04:59:43 2019-12-07 05:01:22 t 1 1 95468 292 0.00 2019-09-08 21:43:03 2019-09-08 21:44:10 t 1 2 95469 412 0.00 2019-09-08 21:03:08 2019-09-08 21:50:25 t 1 1 95470 400 0.00 2019-09-08 21:00:48 2019-09-08 22:00:53 t 1 2 95472 213 0.00 2019-09-08 22:01:21 2019-09-08 22:03:56 t 1 1 95475 445 0.00 2019-09-08 22:22:34 2019-09-08 22:23:09 t 1 1 95479 213 0.00 2019-09-08 22:29:14 2019-09-08 22:41:47 t 1 1 95480 212 0.00 2019-09-08 22:57:30 2019-09-08 22:58:31 t 1 2 95481 432 0.00 2019-09-08 22:36:23 2019-09-08 23:02:13 t 1 1 95483 432 0.00 2019-09-08 23:04:39 2019-09-08 23:06:25 t 1 1 95484 213 0.00 2019-09-08 22:53:57 2019-09-08 23:06:54 t 1 1 95485 402 0.00 2019-09-08 21:50:15 2019-09-08 23:08:36 t 1 2 95489 213 0.00 2019-09-08 23:16:08 2019-09-08 23:17:20 t 1 1 95493 453 0.00 2019-09-08 22:21:18 2019-09-08 23:26:23 t 1 2 95495 402 0.00 2019-09-08 23:08:58 2019-09-08 23:29:03 t 1 2 95496 432 0.00 2019-09-08 23:30:15 2019-09-08 23:30:50 t 1 1 95499 213 0.00 2019-09-08 23:41:15 2019-09-08 23:42:44 t 1 1 95171 306 0.00 2019-09-08 09:42:08 2019-09-08 09:43:13 t 1 2 95173 213 0.00 2019-09-08 09:49:52 2019-09-08 09:57:42 t 1 1 95174 212 0.00 2019-09-08 09:57:01 2019-09-08 09:58:09 t 1 2 95177 454 0.00 2019-09-08 10:14:00 2019-09-08 10:15:39 t 1 2 95179 375 0.00 2019-09-08 09:44:08 2019-09-08 10:18:43 t 1 1 95183 430 0.00 2019-09-08 10:28:13 2019-09-08 10:28:58 t 1 1 95184 220 0.00 2019-09-08 10:26:06 2019-09-08 10:30:14 t 1 1 95186 451 0.00 2019-09-08 10:30:14 2019-09-08 10:31:24 t 1 1 95189 306 0.00 2019-09-08 10:33:23 2019-09-08 10:34:28 t 1 2 95191 220 0.00 2019-09-08 10:31:52 2019-09-08 10:40:25 t 1 1 95195 220 0.00 2019-09-08 10:42:50 2019-09-08 10:49:58 t 1 1 95200 220 0.00 2019-09-08 10:51:31 2019-09-08 10:52:06 t 1 1 95203 220 0.00 2019-09-08 10:53:13 2019-09-08 10:53:45 t 1 1 95206 220 0.00 2019-09-08 10:54:19 2019-09-08 10:54:51 t 1 1 95210 220 0.00 2019-09-08 10:55:56 2019-09-08 10:56:31 t 1 1 95211 220 0.00 2019-09-08 10:56:31 2019-09-08 10:57:04 t 1 1 95213 220 0.00 2019-09-08 10:57:43 2019-09-08 10:58:16 t 1 1 95214 220 0.00 2019-09-08 10:58:16 2019-09-08 10:58:51 t 1 1 95216 306 0.00 2019-09-08 11:04:09 2019-09-08 11:05:13 t 1 2 95217 220 0.00 2019-09-08 10:58:50 2019-09-08 11:06:12 t 1 1 95222 213 0.00 2019-09-08 11:26:40 2019-09-08 11:30:01 t 1 1 95224 306 0.00 2019-09-08 11:32:31 2019-09-08 11:32:36 t 1 2 95230 213 0.00 2019-09-08 11:51:51 2019-09-08 11:56:35 t 1 1 95234 456 0.00 2019-09-08 12:17:51 2019-09-08 12:24:04 t 1 1 95235 375 0.00 2019-09-08 12:05:38 2019-09-08 12:28:13 t 1 1 95236 375 0.00 2019-09-08 12:28:16 2019-09-08 12:29:19 t 1 1 95237 402 0.00 2019-09-08 11:45:15 2019-09-08 12:30:20 t 1 2 95238 375 0.00 2019-09-08 12:29:33 2019-09-08 12:30:34 t 1 1 95239 402 0.00 2019-09-08 12:30:31 2019-09-08 12:32:31 t 1 2 95242 445 0.00 2019-09-08 12:23:11 2019-09-08 12:49:06 t 1 1 95248 220 0.00 2019-09-08 12:56:31 2019-09-08 13:10:01 t 1 1 95250 213 0.00 2019-09-08 13:06:22 2019-09-08 13:18:12 t 1 1 95255 453 0.00 2019-09-08 11:14:41 2019-09-08 13:29:47 t 1 2 95257 445 0.00 2019-09-08 12:49:41 2019-09-08 13:31:13 t 1 1 188697 639 0.00 2019-12-07 05:01:32 2019-12-07 05:01:33 t 1 1 95263 306 0.00 2019-09-08 13:39:13 2019-09-08 13:40:17 t 1 2 95267 392 0.00 2019-09-08 13:40:54 2019-09-08 14:06:35 t 1 2 95269 454 0.00 2019-09-08 13:38:37 2019-09-08 14:08:19 t 1 2 95275 213 0.00 2019-09-08 14:20:16 2019-09-08 14:22:30 t 1 1 95282 213 0.00 2019-09-08 14:48:47 2019-09-08 14:54:34 t 1 1 95284 432 0.00 2019-09-08 14:59:11 2019-09-08 14:59:42 t 1 1 95289 213 0.00 2019-09-08 15:00:15 2019-09-08 15:12:41 t 1 1 95290 432 0.00 2019-09-08 15:12:47 2019-09-08 15:12:54 t 1 1 95294 213 0.00 2019-09-08 15:12:45 2019-09-08 15:17:38 t 1 1 95297 402 0.00 2019-09-08 14:18:27 2019-09-08 15:28:32 t 1 2 95299 432 0.00 2019-09-08 15:21:52 2019-09-08 15:34:46 t 1 1 95300 335 0.00 2019-09-08 15:38:33 2019-09-08 15:38:33 f 1 2 95305 335 0.00 2019-09-08 15:35:49 2019-09-08 15:45:54 t 1 2 95308 432 0.00 2019-09-08 15:52:06 2019-09-08 15:52:54 t 1 1 95316 306 0.00 2019-09-08 16:09:12 2019-09-08 16:10:16 t 1 2 95317 432 0.00 2019-09-08 16:10:54 2019-09-08 16:11:13 t 1 1 95318 375 0.00 2019-09-08 12:30:34 2019-09-08 16:14:08 t 1 1 95320 411 0.00 2019-09-08 14:46:43 2019-09-08 16:17:57 t 1 1 95329 306 0.00 2019-09-08 16:30:35 2019-09-08 16:31:35 t 1 2 95333 432 0.00 2019-09-08 16:39:47 2019-09-08 16:40:06 t 1 1 95338 400 0.00 2019-09-08 16:30:56 2019-09-08 16:46:01 t 1 2 95343 372 0.00 2019-09-08 16:44:52 2019-09-08 16:54:57 t 1 2 95351 392 0.00 2019-09-08 16:44:15 2019-09-08 17:18:51 t 1 2 95356 445 0.00 2019-09-08 14:00:17 2019-09-08 17:25:24 t 1 1 95361 445 0.00 2019-09-08 17:25:23 2019-09-08 17:30:22 t 1 1 95363 402 0.00 2019-09-08 17:26:52 2019-09-08 17:33:02 t 1 2 95366 381 0.00 2019-09-08 17:14:19 2019-09-08 17:34:24 t 1 2 95369 385 0.00 2019-09-08 17:34:38 2019-09-08 17:44:59 t 1 2 95370 306 0.00 2019-09-08 17:45:21 2019-09-08 17:46:25 t 1 2 95375 306 0.00 2019-09-08 17:59:11 2019-09-08 18:00:12 t 1 2 95382 411 0.00 2019-09-08 18:00:50 2019-09-08 18:06:06 t 1 1 95384 220 0.00 2019-09-08 18:02:45 2019-09-08 18:11:28 t 1 1 95386 306 0.00 2019-09-08 18:20:27 2019-09-08 18:21:33 t 1 2 188699 639 0.00 2019-12-07 05:01:52 2019-12-07 05:02:00 t 1 1 95394 422 0.00 2019-09-08 16:58:09 2019-09-08 18:42:29 t 1 2 95404 445 0.00 2019-09-08 17:31:56 2019-09-08 19:10:16 t 1 1 95407 213 0.00 2019-09-08 19:16:07 2019-09-08 19:20:52 t 1 1 95409 335 0.00 2019-09-08 19:17:28 2019-09-08 19:27:33 t 1 2 95410 213 0.00 2019-09-08 19:23:35 2019-09-08 19:28:48 t 1 1 95411 445 0.00 2019-09-08 19:26:30 2019-09-08 19:29:55 t 1 1 95413 412 0.00 2019-09-08 18:52:09 2019-09-08 19:37:03 t 1 1 95420 412 0.00 2019-09-08 19:42:11 2019-09-08 19:58:05 t 1 1 95424 453 0.00 2019-09-08 20:03:02 2019-09-08 20:04:15 t 1 2 95426 213 0.00 2019-09-08 20:02:36 2019-09-08 20:04:42 t 1 1 95429 335 0.00 2019-09-08 19:54:44 2019-09-08 20:09:49 t 1 2 95432 213 0.00 2019-09-08 20:04:42 2019-09-08 20:11:39 t 1 1 95433 453 0.00 2019-09-08 20:10:38 2019-09-08 20:13:42 t 1 2 95435 445 0.00 2019-09-08 20:05:00 2019-09-08 20:18:03 t 1 1 95437 212 0.00 2019-09-08 20:20:05 2019-09-08 20:21:08 t 1 2 95439 213 0.00 2019-09-08 20:21:07 2019-09-08 20:23:56 t 1 1 95442 213 0.00 2019-09-08 20:23:56 2019-09-08 20:29:49 t 1 1 95444 213 0.00 2019-09-08 20:29:49 2019-09-08 20:33:32 t 1 1 95445 213 0.00 2019-09-08 20:33:32 2019-09-08 20:37:26 t 1 1 95450 412 0.00 2019-09-08 20:44:23 2019-09-08 20:48:42 t 1 1 95452 412 0.00 2019-09-08 20:48:47 2019-09-08 20:53:52 t 1 1 95454 335 0.00 2019-09-08 20:39:23 2019-09-08 20:59:28 t 1 2 95455 412 0.00 2019-09-08 21:00:24 2019-09-08 21:01:25 t 1 1 95456 412 0.00 2019-09-08 21:01:33 2019-09-08 21:03:08 t 1 1 95466 335 0.00 2019-09-08 21:22:18 2019-09-08 21:37:23 t 1 2 95471 213 0.00 2019-09-08 21:53:58 2019-09-08 22:01:20 t 1 1 95474 411 0.00 2019-09-08 18:06:12 2019-09-08 22:20:51 t 1 1 95477 213 0.00 2019-09-08 22:03:56 2019-09-08 22:29:14 t 1 1 95482 212 0.00 2019-09-08 23:03:45 2019-09-08 23:04:10 t 1 2 95490 432 0.00 2019-09-08 23:18:52 2019-09-08 23:19:07 t 1 1 95494 420 0.00 2019-09-08 22:34:18 2019-09-08 23:28:58 t 1 1 95497 212 0.00 2019-09-08 23:32:05 2019-09-08 23:32:32 t 1 2 95498 430 0.00 2019-09-08 23:31:57 2019-09-08 23:42:40 t 1 1 95503 432 0.00 2019-09-08 23:39:56 2019-09-08 23:56:35 t 1 1 95504 432 0.00 2019-09-08 23:56:35 2019-09-08 23:59:53 t 1 1 95507 451 0.00 2019-09-09 00:03:08 2019-09-09 00:09:54 t 1 1 95510 212 0.00 2019-09-09 00:15:15 2019-09-09 00:15:37 t 1 2 95511 430 0.00 2019-09-09 00:10:56 2019-09-09 00:17:40 t 1 1 95406 453 0.00 2019-09-08 19:05:43 2019-09-08 19:20:48 t 1 2 95408 445 0.00 2019-09-08 19:10:16 2019-09-08 19:25:44 t 1 1 95412 392 0.00 2019-09-08 19:33:23 2019-09-08 19:34:40 t 1 2 95419 400 0.00 2019-09-08 19:47:44 2019-09-08 19:57:49 t 1 2 95421 412 0.00 2019-09-08 19:58:04 2019-09-08 19:58:28 t 1 1 95423 412 0.00 2019-09-08 19:58:28 2019-09-08 20:01:14 t 1 1 95428 392 0.00 2019-09-08 19:49:24 2019-09-08 20:09:29 t 1 2 188698 689 0.00 2019-12-07 05:01:06 2019-12-07 05:01:36 t 1 1 95434 213 0.00 2019-09-08 20:11:39 2019-09-08 20:17:16 t 1 1 95441 449 0.00 2019-09-08 20:25:29 2019-09-08 20:27:05 t 1 1 95443 412 0.00 2019-09-08 20:25:14 2019-09-08 20:33:08 t 1 1 95446 335 0.00 2019-09-08 20:30:52 2019-09-08 20:40:57 t 1 2 95448 400 0.00 2019-09-08 20:18:43 2019-09-08 20:43:49 t 1 2 95449 213 0.00 2019-09-08 20:42:33 2019-09-08 20:47:44 t 1 1 95453 213 0.00 2019-09-08 20:47:44 2019-09-08 20:54:35 t 1 1 188700 639 0.00 2019-12-07 05:03:09 2019-12-07 05:03:17 t 1 1 95461 213 0.00 2019-09-08 20:54:35 2019-09-08 21:20:17 t 1 1 188701 520 0.00 2019-12-07 04:58:44 2019-12-07 05:03:54 t 1 1 95464 432 0.00 2019-09-08 21:18:13 2019-09-08 21:25:55 t 1 1 95473 212 0.00 2019-09-08 22:04:29 2019-09-08 22:05:00 t 1 2 95476 445 0.00 2019-09-08 21:41:04 2019-09-08 22:23:10 t 1 1 95478 420 0.00 2019-09-08 22:25:39 2019-09-08 22:34:18 t 1 1 95486 432 0.00 2019-09-08 23:08:47 2019-09-08 23:09:01 t 1 1 95487 213 0.00 2019-09-08 23:06:54 2019-09-08 23:10:40 t 1 1 95488 213 0.00 2019-09-08 23:10:40 2019-09-08 23:16:08 t 1 1 95491 220 0.00 2019-09-08 22:02:32 2019-09-08 23:22:38 t 1 2 95492 432 0.00 2019-09-08 23:24:23 2019-09-08 23:24:58 t 1 1 95500 451 0.00 2019-09-08 23:20:44 2019-09-08 23:46:16 t 1 1 95505 449 0.00 2019-09-08 23:45:47 2019-09-09 00:04:45 t 1 1 95515 432 0.00 2019-09-09 00:27:39 2019-09-09 00:28:16 t 1 1 95522 432 0.00 2019-09-09 00:49:01 2019-09-09 00:54:53 t 1 1 95524 400 0.00 2019-09-09 00:18:19 2019-09-09 01:33:24 t 1 2 95525 412 0.00 2019-09-08 21:51:08 2019-09-09 01:47:15 t 1 1 95529 412 0.00 2019-09-09 01:47:15 2019-09-09 02:10:25 t 1 1 95532 392 0.00 2019-09-09 02:05:05 2019-09-09 02:40:10 t 1 2 95534 392 0.00 2019-09-09 01:24:07 2019-09-09 04:57:27 t 1 2 95535 392 0.00 2019-09-09 05:07:39 2019-09-09 05:10:06 t 1 2 95536 392 0.00 2019-09-09 05:11:22 2019-09-09 05:26:17 t 1 2 95542 220 0.00 2019-09-09 07:10:10 2019-09-09 07:33:49 t 1 2 95544 212 0.00 2019-09-09 07:52:53 2019-09-09 07:54:09 t 1 2 95554 213 0.00 2019-09-09 08:53:47 2019-09-09 09:09:01 t 1 1 95557 220 0.00 2019-09-09 09:23:21 2019-09-09 09:25:21 t 1 1 95559 420 0.00 2019-09-09 09:25:23 2019-09-09 09:36:55 t 1 1 95561 420 0.00 2019-09-09 09:36:55 2019-09-09 09:43:27 t 1 1 95564 294 0.00 2019-09-09 09:51:24 2019-09-09 10:10:48 t 1 2 95566 400 0.00 2019-09-09 09:32:23 2019-09-09 10:12:29 t 1 2 95567 213 0.00 2019-09-09 10:15:13 2019-09-09 10:21:04 t 1 1 95572 432 0.00 2019-09-09 10:36:06 2019-09-09 10:36:30 t 1 1 95575 212 0.00 2019-09-09 10:42:40 2019-09-09 10:42:58 t 1 2 95578 445 0.00 2019-09-09 10:40:28 2019-09-09 10:52:06 t 1 1 95580 432 0.00 2019-09-09 10:58:18 2019-09-09 11:01:37 t 1 1 95592 213 0.00 2019-09-09 11:31:03 2019-09-09 11:32:27 t 1 1 95593 432 0.00 2019-09-09 11:33:25 2019-09-09 11:34:01 t 1 1 95596 432 0.00 2019-09-09 11:44:01 2019-09-09 11:44:22 t 1 1 95602 220 0.00 2019-09-09 11:41:22 2019-09-09 11:49:11 t 1 1 95604 402 0.00 2019-09-09 11:32:31 2019-09-09 11:50:58 t 1 2 95606 451 0.00 2019-09-09 11:52:40 2019-09-09 11:55:26 t 1 1 95607 432 0.00 2019-09-09 11:56:06 2019-09-09 11:56:08 t 1 1 95609 432 0.00 2019-09-09 11:59:54 2019-09-09 12:00:27 t 1 1 95613 220 0.00 2019-09-09 12:10:43 2019-09-09 12:12:00 t 1 1 95618 335 0.00 2019-09-09 12:20:30 2019-09-09 12:20:30 f 1 2 95622 432 0.00 2019-09-09 12:21:57 2019-09-09 12:22:27 t 1 1 95624 220 0.00 2019-09-09 12:13:44 2019-09-09 12:23:49 t 1 2 95626 296 0.00 2019-09-09 12:23:26 2019-09-09 12:30:53 t 1 2 95629 335 0.00 2019-09-09 12:36:41 2019-09-09 12:36:41 f 1 2 95635 294 0.00 2019-09-09 11:43:37 2019-09-09 12:44:01 t 1 2 95639 420 0.00 2019-09-09 12:42:41 2019-09-09 12:47:43 t 1 1 95647 453 0.00 2019-09-09 12:38:32 2019-09-09 13:08:37 t 1 2 95649 432 0.00 2019-09-09 13:12:54 2019-09-09 13:13:18 t 1 1 95655 432 0.00 2019-09-09 13:27:58 2019-09-09 13:28:40 t 1 1 95658 432 0.00 2019-09-09 13:35:19 2019-09-09 13:36:15 t 1 1 95659 432 0.00 2019-09-09 13:36:38 2019-09-09 13:37:24 t 1 1 95670 220 0.00 2019-09-09 13:54:09 2019-09-09 14:19:54 t 1 1 95671 220 0.00 2019-09-09 14:19:54 2019-09-09 14:23:04 t 1 1 95676 212 0.00 2019-09-09 14:51:04 2019-09-09 14:52:02 t 1 2 95680 432 0.00 2019-09-09 15:14:57 2019-09-09 15:29:29 t 1 1 95681 400 0.00 2019-09-09 14:09:54 2019-09-09 15:29:59 t 1 2 95683 432 0.00 2019-09-09 15:29:39 2019-09-09 15:32:12 t 1 1 95685 432 0.00 2019-09-09 15:32:11 2019-09-09 15:33:32 t 1 1 95687 213 0.00 2019-09-09 15:13:47 2019-09-09 15:41:31 t 1 1 95698 451 0.00 2019-09-09 15:59:54 2019-09-09 16:07:30 t 1 1 95700 432 0.00 2019-09-09 16:05:20 2019-09-09 16:12:40 t 1 1 95701 247 0.00 2019-09-09 16:20:52 2019-09-09 16:22:23 t 1 2 95707 213 0.00 2019-09-09 16:37:04 2019-09-09 16:38:39 t 1 1 95710 432 0.00 2019-09-09 16:37:55 2019-09-09 16:49:19 t 1 1 95714 306 0.00 2019-09-09 16:58:32 2019-09-09 16:59:39 t 1 2 95715 432 0.00 2019-09-09 16:49:19 2019-09-09 17:01:30 t 1 1 95720 213 0.00 2019-09-09 17:08:07 2019-09-09 17:17:01 t 1 1 95722 445 0.00 2019-09-09 16:58:20 2019-09-09 17:18:22 t 1 1 95725 432 0.00 2019-09-09 17:14:24 2019-09-09 17:26:15 t 1 1 95726 306 0.00 2019-09-09 17:36:00 2019-09-09 17:37:03 t 1 2 95728 220 0.00 2019-09-09 17:17:56 2019-09-09 17:40:03 t 1 1 95732 424 0.00 2019-09-09 17:44:43 2019-09-09 17:46:06 t 1 2 95734 432 0.00 2019-09-09 17:48:23 2019-09-09 17:48:25 t 1 1 95735 432 0.00 2019-09-09 17:49:03 2019-09-09 17:49:14 t 1 1 95740 432 0.00 2019-09-09 18:01:22 2019-09-09 18:02:56 t 1 1 95742 445 0.00 2019-09-09 17:26:19 2019-09-09 18:13:49 t 1 1 95747 213 0.00 2019-09-09 18:15:59 2019-09-09 18:25:57 t 1 1 95750 456 0.00 2019-09-09 18:26:54 2019-09-09 18:28:17 t 1 1 95753 213 0.00 2019-09-09 18:28:44 2019-09-09 18:31:35 t 1 1 95755 220 0.00 2019-09-09 18:27:47 2019-09-09 18:36:36 t 1 1 95757 294 0.00 2019-09-09 17:45:20 2019-09-09 18:45:43 t 1 2 95765 456 0.00 2019-09-09 18:59:26 2019-09-09 19:05:49 t 1 1 95773 453 0.00 2019-09-09 19:30:56 2019-09-09 19:31:02 t 1 2 95775 400 0.00 2019-09-09 19:24:33 2019-09-09 19:34:38 t 1 2 95779 213 0.00 2019-09-09 19:39:23 2019-09-09 19:39:34 t 1 1 95782 306 0.00 2019-09-09 19:45:22 2019-09-09 19:46:25 t 1 2 95501 213 0.00 2019-09-08 23:51:47 2019-09-08 23:53:51 t 1 1 95502 454 0.00 2019-09-08 23:01:04 2019-09-08 23:55:24 t 1 2 95506 430 0.00 2019-09-08 23:59:53 2019-09-09 00:07:42 t 1 1 95508 432 0.00 2019-09-09 00:10:50 2019-09-09 00:11:19 t 1 1 95509 449 0.00 2019-09-09 00:04:45 2019-09-09 00:15:04 t 1 1 95513 432 0.00 2019-09-09 00:21:07 2019-09-09 00:21:39 t 1 1 95514 454 0.00 2019-09-09 00:22:48 2019-09-09 00:24:08 t 1 2 95516 432 0.00 2019-09-09 00:28:44 2019-09-09 00:28:54 t 1 1 95519 432 0.00 2019-09-09 00:29:45 2019-09-09 00:38:38 t 1 1 95523 432 0.00 2019-09-09 00:54:53 2019-09-09 01:03:58 t 1 1 95526 430 0.00 2019-09-09 01:37:48 2019-09-09 01:47:16 t 1 1 95527 430 0.00 2019-09-09 01:47:16 2019-09-09 01:55:43 t 1 1 95528 430 0.00 2019-09-09 01:55:43 2019-09-09 02:03:26 t 1 1 95530 412 0.00 2019-09-09 02:10:25 2019-09-09 02:25:17 t 1 1 95537 220 0.00 2019-09-09 05:56:15 2019-09-09 06:01:00 t 1 1 95538 220 0.00 2019-09-09 06:01:00 2019-09-09 06:04:38 t 1 1 95539 445 0.00 2019-09-09 00:19:00 2019-09-09 06:28:11 t 1 1 95540 212 0.00 2019-09-09 07:03:25 2019-09-09 07:04:04 t 1 2 95541 453 0.00 2019-09-09 07:32:26 2019-09-09 07:33:49 t 1 2 95547 430 0.00 2019-09-09 08:08:12 2019-09-09 08:20:14 t 1 1 95548 430 0.00 2019-09-09 08:25:05 2019-09-09 08:26:06 t 1 1 95550 212 0.00 2019-09-09 08:39:51 2019-09-09 08:40:12 t 1 2 95552 220 0.00 2019-09-09 07:35:45 2019-09-09 08:50:50 t 1 2 95556 213 0.00 2019-09-09 09:11:23 2019-09-09 09:13:42 t 1 1 95560 453 0.00 2019-09-09 09:38:08 2019-09-09 09:38:13 t 1 2 95565 432 0.00 2019-09-09 10:10:21 2019-09-09 10:12:10 t 1 1 95570 432 0.00 2019-09-09 10:25:09 2019-09-09 10:28:24 t 1 1 95579 432 0.00 2019-09-09 10:49:21 2019-09-09 10:56:55 t 1 1 95581 432 0.00 2019-09-09 11:03:48 2019-09-09 11:06:32 t 1 1 95582 445 0.00 2019-09-09 10:52:06 2019-09-09 11:11:56 t 1 1 95584 220 0.00 2019-09-09 11:07:32 2019-09-09 11:12:45 t 1 1 95586 432 0.00 2019-09-09 11:17:47 2019-09-09 11:18:49 t 1 1 95589 220 0.00 2019-09-09 11:22:14 2019-09-09 11:23:49 t 1 1 95591 432 0.00 2019-09-09 11:27:34 2019-09-09 11:28:09 t 1 1 95594 375 0.00 2019-09-09 10:15:54 2019-09-09 11:39:11 t 1 1 95595 213 0.00 2019-09-09 11:36:59 2019-09-09 11:41:37 t 1 1 95597 213 0.00 2019-09-09 11:41:37 2019-09-09 11:45:40 t 1 1 95599 213 0.00 2019-09-09 11:47:27 2019-09-09 11:47:37 t 1 1 95600 420 0.00 2019-09-09 11:31:11 2019-09-09 11:48:42 t 1 1 95601 213 0.00 2019-09-09 11:49:06 2019-09-09 11:49:10 t 1 1 95608 432 0.00 2019-09-09 11:56:18 2019-09-09 11:56:19 t 1 1 95614 432 0.00 2019-09-09 12:16:05 2019-09-09 12:16:33 t 1 1 95619 335 0.00 2019-09-09 12:20:47 2019-09-09 12:20:47 f 1 2 95620 335 0.00 2019-09-09 12:21:01 2019-09-09 12:21:01 f 1 2 95625 432 0.00 2019-09-09 12:27:49 2019-09-09 12:28:20 t 1 1 95627 432 0.00 2019-09-09 12:33:27 2019-09-09 12:34:10 t 1 1 95630 335 0.00 2019-09-09 12:36:54 2019-09-09 12:36:54 f 1 2 95633 400 0.00 2019-09-09 12:28:58 2019-09-09 12:39:03 t 1 2 95636 432 0.00 2019-09-09 12:36:06 2019-09-09 12:45:18 t 1 1 95637 432 0.00 2019-09-09 12:45:37 2019-09-09 12:46:08 t 1 1 95638 432 0.00 2019-09-09 12:46:59 2019-09-09 12:47:06 t 1 1 95641 420 0.00 2019-09-09 12:47:43 2019-09-09 12:52:20 t 1 1 95644 420 0.00 2019-09-09 12:52:20 2019-09-09 12:57:31 t 1 1 95646 220 0.00 2019-09-09 12:55:51 2019-09-09 13:06:42 t 1 1 95651 247 0.00 2019-09-09 13:15:11 2019-09-09 13:21:16 t 1 2 95652 432 0.00 2019-09-09 13:22:16 2019-09-09 13:22:46 t 1 1 95656 432 0.00 2019-09-09 13:31:20 2019-09-09 13:31:41 t 1 1 95662 288 0.00 2019-09-09 13:42:34 2019-09-09 13:43:40 t 1 2 95663 432 0.00 2019-09-09 13:48:05 2019-09-09 13:49:11 t 1 1 95667 213 0.00 2019-09-09 14:00:12 2019-09-09 14:02:39 t 1 1 95668 213 0.00 2019-09-09 14:02:39 2019-09-09 14:16:31 t 1 1 95674 432 0.00 2019-09-09 14:28:59 2019-09-09 14:41:05 t 1 1 95675 294 0.00 2019-09-09 13:01:22 2019-09-09 14:50:45 t 1 2 95678 306 0.00 2019-09-09 15:18:52 2019-09-09 15:19:53 t 1 2 95686 306 0.00 2019-09-09 15:33:29 2019-09-09 15:34:34 t 1 2 95688 453 0.00 2019-09-09 15:17:06 2019-09-09 15:42:11 t 1 2 95689 432 0.00 2019-09-09 15:33:31 2019-09-09 15:45:35 t 1 1 95690 453 0.00 2019-09-09 15:38:09 2019-09-09 15:48:15 t 1 2 95691 213 0.00 2019-09-09 15:45:35 2019-09-09 15:49:33 t 1 1 95694 327 0.00 2019-09-09 15:53:56 2019-09-09 15:54:37 t 1 2 95697 432 0.00 2019-09-09 15:49:33 2019-09-09 16:05:20 t 1 1 95699 306 0.00 2019-09-09 16:08:08 2019-09-09 16:09:13 t 1 2 95702 432 0.00 2019-09-09 16:27:25 2019-09-09 16:30:57 t 1 1 95704 272 0.00 2019-09-09 16:35:27 2019-09-09 16:35:27 f 1 2 95708 306 0.00 2019-09-09 16:40:11 2019-09-09 16:41:17 t 1 2 95709 306 0.00 2019-09-09 16:41:52 2019-09-09 16:42:52 t 1 2 95712 327 0.00 2019-09-09 16:17:02 2019-09-09 16:54:19 t 1 2 95713 445 0.00 2019-09-09 15:10:56 2019-09-09 16:58:20 t 1 1 95716 424 0.00 2019-09-09 16:03:36 2019-09-09 17:04:00 t 1 2 95717 213 0.00 2019-09-09 17:03:41 2019-09-09 17:05:19 t 1 1 95718 213 0.00 2019-09-09 17:05:18 2019-09-09 17:07:21 t 1 1 95723 327 0.00 2019-09-09 17:02:43 2019-09-09 17:22:09 t 1 2 95724 445 0.00 2019-09-09 17:18:21 2019-09-09 17:25:55 t 1 1 95727 432 0.00 2019-09-09 17:26:15 2019-09-09 17:39:54 t 1 1 95729 213 0.00 2019-09-09 17:42:39 2019-09-09 17:45:11 t 1 1 95730 432 0.00 2019-09-09 17:45:11 2019-09-09 17:45:18 t 1 1 95736 424 0.00 2019-09-09 17:45:10 2019-09-09 17:52:34 t 1 2 95737 220 0.00 2019-09-09 17:50:34 2019-09-09 17:53:50 t 1 1 95739 432 0.00 2019-09-09 17:57:24 2019-09-09 17:57:27 t 1 1 95741 212 0.00 2019-09-09 18:03:42 2019-09-09 18:04:27 t 1 2 95745 220 0.00 2019-09-09 17:55:04 2019-09-09 18:18:48 t 1 1 95746 400 0.00 2019-09-09 18:04:26 2019-09-09 18:24:31 t 1 2 95748 456 0.00 2019-09-09 18:25:02 2019-09-09 18:26:54 t 1 1 95754 456 0.00 2019-09-09 18:29:32 2019-09-09 18:33:23 t 1 1 95758 220 0.00 2019-09-09 18:40:16 2019-09-09 18:48:16 t 1 1 95760 220 0.00 2019-09-09 18:48:16 2019-09-09 18:53:32 t 1 1 95761 220 0.00 2019-09-09 18:53:32 2019-09-09 18:54:52 t 1 1 95763 445 0.00 2019-09-09 18:13:49 2019-09-09 18:59:57 t 1 1 95766 296 0.00 2019-09-09 19:02:18 2019-09-09 19:08:41 t 1 2 95768 445 0.00 2019-09-09 19:00:22 2019-09-09 19:15:49 t 1 1 95769 456 0.00 2019-09-09 19:09:28 2019-09-09 19:16:29 t 1 1 95770 306 0.00 2019-09-09 19:18:29 2019-09-09 19:19:34 t 1 2 95771 445 0.00 2019-09-09 19:15:49 2019-09-09 19:24:34 t 1 1 95772 402 0.00 2019-09-09 18:40:13 2019-09-09 19:30:18 t 1 2 95774 445 0.00 2019-09-09 19:24:33 2019-09-09 19:34:29 t 1 1 95780 247 0.00 2019-09-09 19:41:10 2019-09-09 19:43:10 t 1 2 95785 453 0.00 2019-09-09 19:41:52 2019-09-09 19:51:58 t 1 2 95512 445 0.00 2019-09-08 22:23:19 2019-09-09 00:19:01 t 1 1 95517 346 0.00 2019-09-09 00:30:23 2019-09-09 00:30:23 f 1 2 95518 392 0.00 2019-09-09 00:33:50 2019-09-09 00:36:06 t 1 2 95520 212 0.00 2019-09-09 00:39:09 2019-09-09 00:40:10 t 1 2 95521 432 0.00 2019-09-09 00:38:38 2019-09-09 00:49:01 t 1 1 95531 412 0.00 2019-09-09 02:25:17 2019-09-09 02:35:22 t 1 1 95533 412 0.00 2019-09-09 02:35:22 2019-09-09 02:50:49 t 1 1 95543 422 0.00 2019-09-09 03:40:08 2019-09-09 07:33:49 t 1 2 95545 430 0.00 2019-09-09 07:57:32 2019-09-09 08:08:12 t 1 1 95546 454 0.00 2019-09-09 08:17:10 2019-09-09 08:20:08 t 1 2 95549 213 0.00 2019-09-09 08:17:42 2019-09-09 08:32:40 t 1 1 95551 247 0.00 2019-09-09 08:45:29 2019-09-09 08:50:16 t 1 2 95553 213 0.00 2019-09-09 08:32:40 2019-09-09 08:53:47 t 1 1 95555 213 0.00 2019-09-09 09:09:01 2019-09-09 09:11:23 t 1 1 95558 453 0.00 2019-09-09 09:04:09 2019-09-09 09:29:14 t 1 2 95562 402 0.00 2019-09-09 07:34:34 2019-09-09 10:07:46 t 1 2 95563 432 0.00 2019-09-09 10:06:13 2019-09-09 10:10:17 t 1 1 95568 432 0.00 2019-09-09 10:12:03 2019-09-09 10:21:21 t 1 1 95569 432 0.00 2019-09-09 10:24:44 2019-09-09 10:24:48 t 1 1 95571 445 0.00 2019-09-09 10:16:46 2019-09-09 10:31:56 t 1 1 95573 445 0.00 2019-09-09 10:31:56 2019-09-09 10:40:28 t 1 1 95574 432 0.00 2019-09-09 10:40:25 2019-09-09 10:41:28 t 1 1 95576 402 0.00 2019-09-09 10:07:59 2019-09-09 10:43:04 t 1 2 95577 432 0.00 2019-09-09 10:46:08 2019-09-09 10:47:49 t 1 1 95583 294 0.00 2019-09-09 10:11:44 2019-09-09 11:12:07 t 1 2 95585 432 0.00 2019-09-09 11:14:18 2019-09-09 11:14:40 t 1 1 95587 445 0.00 2019-09-09 11:11:56 2019-09-09 11:19:11 t 1 1 95588 432 0.00 2019-09-09 11:20:21 2019-09-09 11:23:18 t 1 1 95590 445 0.00 2019-09-09 11:19:11 2019-09-09 11:27:34 t 1 1 95598 375 0.00 2019-09-09 11:39:11 2019-09-09 11:46:19 t 1 1 95603 375 0.00 2019-09-09 11:46:19 2019-09-09 11:49:13 t 1 1 95605 432 0.00 2019-09-09 11:54:05 2019-09-09 11:54:46 t 1 1 95610 432 0.00 2019-09-09 12:05:43 2019-09-09 12:06:19 t 1 1 95611 220 0.00 2019-09-09 11:49:13 2019-09-09 12:10:43 t 1 1 95612 213 0.00 2019-09-09 11:49:28 2019-09-09 12:11:15 t 1 1 95615 412 0.00 2019-09-09 02:50:49 2019-09-09 12:19:40 t 1 1 95616 335 0.00 2019-09-09 12:19:53 2019-09-09 12:19:53 f 1 2 95617 335 0.00 2019-09-09 12:20:09 2019-09-09 12:20:09 f 1 2 95621 335 0.00 2019-09-09 12:21:17 2019-09-09 12:21:17 f 1 2 95623 212 0.00 2019-09-09 12:22:46 2019-09-09 12:23:10 t 1 2 95628 335 0.00 2019-09-09 12:36:35 2019-09-09 12:36:35 f 1 2 95631 335 0.00 2019-09-09 12:22:08 2019-09-09 12:37:14 t 1 2 95632 412 0.00 2019-09-09 12:19:40 2019-09-09 12:38:23 t 1 1 95634 335 0.00 2019-09-09 12:32:23 2019-09-09 12:42:28 t 1 2 95640 432 0.00 2019-09-09 12:48:32 2019-09-09 12:50:14 t 1 1 95642 432 0.00 2019-09-09 12:52:10 2019-09-09 12:52:49 t 1 1 95643 220 0.00 2019-09-09 12:21:33 2019-09-09 12:55:51 t 1 1 95645 432 0.00 2019-09-09 13:02:39 2019-09-09 13:03:05 t 1 1 95648 400 0.00 2019-09-09 12:53:40 2019-09-09 13:08:45 t 1 2 95650 432 0.00 2019-09-09 13:16:50 2019-09-09 13:17:00 t 1 1 95653 432 0.00 2019-09-09 13:24:45 2019-09-09 13:24:53 t 1 1 95654 335 0.00 2019-09-09 12:41:09 2019-09-09 13:26:15 t 1 2 95657 412 0.00 2019-09-09 12:38:23 2019-09-09 13:36:11 t 1 1 95660 432 0.00 2019-09-09 13:40:30 2019-09-09 13:41:32 t 1 1 95661 432 0.00 2019-09-09 13:42:38 2019-09-09 13:43:16 t 1 1 95664 402 0.00 2019-09-09 12:05:39 2019-09-09 13:50:44 t 1 2 95665 212 0.00 2019-09-09 13:50:58 2019-09-09 13:51:16 t 1 2 95666 432 0.00 2019-09-09 13:52:37 2019-09-09 13:52:42 t 1 1 95669 422 0.00 2019-09-09 14:14:11 2019-09-09 14:19:01 t 1 2 95672 432 0.00 2019-09-09 13:57:01 2019-09-09 14:26:03 t 1 1 95673 306 0.00 2019-09-09 14:31:57 2019-09-09 14:33:02 t 1 2 95677 445 0.00 2019-09-09 13:19:04 2019-09-09 15:10:56 t 1 1 95679 306 0.00 2019-09-09 15:28:54 2019-09-09 15:28:55 t 1 2 95682 306 0.00 2019-09-09 15:29:04 2019-09-09 15:30:05 t 1 2 95684 306 0.00 2019-09-09 15:31:14 2019-09-09 15:32:18 t 1 2 95692 327 0.00 2019-09-09 15:48:33 2019-09-09 15:49:52 t 1 2 95693 327 0.00 2019-09-09 15:49:57 2019-09-09 15:50:06 t 1 2 95695 451 0.00 2019-09-09 15:43:01 2019-09-09 15:59:54 t 1 1 95696 424 0.00 2019-09-09 15:03:50 2019-09-09 16:03:30 t 1 2 95703 213 0.00 2019-09-09 16:28:17 2019-09-09 16:33:01 t 1 1 95705 272 0.00 2019-09-09 16:35:32 2019-09-09 16:35:32 f 1 2 95706 432 0.00 2019-09-09 16:31:03 2019-09-09 16:37:55 t 1 1 95711 306 0.00 2019-09-09 16:49:40 2019-09-09 16:50:43 t 1 2 95719 432 0.00 2019-09-09 17:01:30 2019-09-09 17:14:24 t 1 1 95721 400 0.00 2019-09-09 16:52:38 2019-09-09 17:17:43 t 1 2 95731 220 0.00 2019-09-09 17:40:16 2019-09-09 17:45:48 t 1 1 95733 213 0.00 2019-09-09 17:45:18 2019-09-09 17:47:57 t 1 1 95738 432 0.00 2019-09-09 17:54:18 2019-09-09 17:55:06 t 1 1 188702 639 0.00 2019-12-07 05:03:46 2019-12-07 05:04:04 t 1 1 95744 306 0.00 2019-09-09 18:17:02 2019-09-09 18:18:09 t 1 2 95749 220 0.00 2019-09-09 18:18:48 2019-09-09 18:27:47 t 1 1 95751 456 0.00 2019-09-09 18:28:16 2019-09-09 18:29:32 t 1 1 95752 454 0.00 2019-09-09 18:30:17 2019-09-09 18:30:50 t 1 2 95756 453 0.00 2019-09-09 18:03:32 2019-09-09 18:38:37 t 1 2 95759 400 0.00 2019-09-09 18:33:00 2019-09-09 18:53:05 t 1 2 95762 456 0.00 2019-09-09 18:55:01 2019-09-09 18:59:18 t 1 1 95764 213 0.00 2019-09-09 18:59:28 2019-09-09 19:02:31 t 1 1 95767 306 0.00 2019-09-09 19:14:19 2019-09-09 19:15:21 t 1 2 95776 453 0.00 2019-09-09 19:37:39 2019-09-09 19:37:44 t 1 2 95777 456 0.00 2019-09-09 19:30:09 2019-09-09 19:38:33 t 1 1 95778 432 0.00 2019-09-09 19:36:02 2019-09-09 19:39:23 t 1 1 95781 400 0.00 2019-09-09 19:30:30 2019-09-09 19:45:35 t 1 2 95793 400 0.00 2019-09-09 20:05:59 2019-09-09 20:16:04 t 1 2 95796 445 0.00 2019-09-09 20:05:04 2019-09-09 20:20:16 t 1 1 95798 213 0.00 2019-09-09 20:24:50 2019-09-09 20:26:45 t 1 1 95801 213 0.00 2019-09-09 20:35:11 2019-09-09 20:39:26 t 1 1 95815 456 0.00 2019-09-09 21:22:17 2019-09-09 21:33:17 t 1 1 95816 213 0.00 2019-09-09 21:30:05 2019-09-09 21:37:42 t 1 1 95820 449 0.00 2019-09-09 21:39:01 2019-09-09 21:48:32 t 1 1 95821 213 0.00 2019-09-09 21:51:53 2019-09-09 21:53:59 t 1 1 95832 247 0.00 2019-09-09 22:20:47 2019-09-09 22:21:16 t 1 2 95845 220 0.00 2019-09-09 21:30:04 2019-09-09 22:41:06 t 1 1 95849 311 0.00 2019-09-09 22:46:21 2019-09-09 22:53:05 t 1 2 95852 212 0.00 2019-09-09 23:01:28 2019-09-09 23:01:49 t 1 2 95854 213 0.00 2019-09-09 22:57:45 2019-09-09 23:15:50 t 1 1 95858 402 0.00 2019-09-09 21:34:19 2019-09-09 23:23:57 t 1 2 95861 213 0.00 2019-09-09 23:42:06 2019-09-09 23:45:19 t 1 1 95783 306 0.00 2019-09-09 19:47:58 2019-09-09 19:49:05 t 1 2 95784 456 0.00 2019-09-09 19:38:33 2019-09-09 19:51:37 t 1 1 95786 327 0.00 2019-09-09 19:55:10 2019-09-09 20:00:12 t 1 2 95797 213 0.00 2019-09-09 20:15:43 2019-09-09 20:24:50 t 1 1 95799 220 0.00 2019-09-09 20:26:23 2019-09-09 20:27:08 t 1 1 95803 327 0.00 2019-09-09 20:00:54 2019-09-09 20:54:17 t 1 2 95805 432 0.00 2019-09-09 20:43:13 2019-09-09 20:59:48 t 1 1 95806 412 0.00 2019-09-09 13:36:11 2019-09-09 21:03:22 t 1 1 95811 220 0.00 2019-09-09 20:50:03 2019-09-09 21:18:30 t 1 1 95812 296 0.00 2019-09-09 21:15:46 2019-09-09 21:23:06 t 1 2 95813 213 0.00 2019-09-09 21:11:12 2019-09-09 21:30:06 t 1 1 95814 449 0.00 2019-09-09 21:29:19 2019-09-09 21:32:05 t 1 1 95823 456 0.00 2019-09-09 21:46:25 2019-09-09 21:54:33 t 1 1 95824 212 0.00 2019-09-09 21:57:20 2019-09-09 21:57:50 t 1 2 95825 213 0.00 2019-09-09 21:54:59 2019-09-09 21:58:48 t 1 1 95827 420 0.00 2019-09-09 22:08:37 2019-09-09 22:13:29 t 1 1 95831 400 0.00 2019-09-09 22:11:01 2019-09-09 22:21:07 t 1 2 95834 213 0.00 2019-09-09 22:21:05 2019-09-09 22:23:15 t 1 1 95835 420 0.00 2019-09-09 22:18:52 2019-09-09 22:24:30 t 1 1 95836 306 0.00 2019-09-09 22:24:28 2019-09-09 22:25:31 t 1 2 95837 420 0.00 2019-09-09 22:24:30 2019-09-09 22:26:43 t 1 1 95839 212 0.00 2019-09-09 22:28:38 2019-09-09 22:29:15 t 1 2 95840 247 0.00 2019-09-09 22:29:09 2019-09-09 22:31:20 t 1 2 95841 445 0.00 2019-09-09 22:16:11 2019-09-09 22:34:49 t 1 1 95846 420 0.00 2019-09-09 22:41:06 2019-09-09 22:41:27 t 1 1 95847 220 0.00 2019-09-09 22:42:41 2019-09-09 22:44:31 t 1 1 95848 453 0.00 2019-09-09 21:06:21 2019-09-09 22:50:01 t 1 2 95850 213 0.00 2019-09-09 22:52:11 2019-09-09 22:57:07 t 1 1 95853 306 0.00 2019-09-09 23:05:33 2019-09-09 23:06:24 t 1 2 95855 213 0.00 2019-09-09 23:15:50 2019-09-09 23:18:24 t 1 1 95856 445 0.00 2019-09-09 23:18:24 2019-09-09 23:19:48 t 1 1 95857 247 0.00 2019-09-09 23:21:21 2019-09-09 23:22:18 t 1 2 95859 213 0.00 2019-09-09 23:19:48 2019-09-09 23:28:26 t 1 1 95862 294 0.00 2019-09-09 22:51:29 2019-09-09 23:51:52 t 1 2 95863 432 0.00 2019-09-09 23:37:21 2019-09-09 23:59:59 t 1 1 95864 432 0.00 2019-09-10 00:05:18 2019-09-10 00:05:46 t 1 1 95868 432 0.00 2019-09-10 00:12:43 2019-09-10 00:12:57 t 1 1 95869 432 0.00 2019-09-10 00:13:28 2019-09-10 00:13:55 t 1 1 95870 432 0.00 2019-09-10 00:15:49 2019-09-10 00:17:36 t 1 1 95873 432 0.00 2019-09-10 00:24:42 2019-09-10 00:26:31 t 1 1 95875 454 0.00 2019-09-10 00:27:39 2019-09-10 00:27:54 t 1 2 95876 432 0.00 2019-09-10 00:27:57 2019-09-10 00:29:32 t 1 1 95877 432 0.00 2019-09-10 00:29:52 2019-09-10 00:29:55 t 1 1 95878 346 0.00 2019-09-10 00:31:16 2019-09-10 00:31:16 f 1 2 95882 432 0.00 2019-09-10 00:35:58 2019-09-10 00:36:10 t 1 1 95887 400 0.00 2019-09-10 00:46:12 2019-09-10 01:01:17 t 1 2 95889 294 0.00 2019-09-10 00:05:40 2019-09-10 01:06:03 t 1 2 95891 449 0.00 2019-09-10 00:57:35 2019-09-10 01:13:02 t 1 1 95900 449 0.00 2019-09-10 01:50:19 2019-09-10 01:55:34 t 1 1 95901 456 0.00 2019-09-10 01:46:16 2019-09-10 01:59:48 t 1 1 95903 412 0.00 2019-09-10 02:05:54 2019-09-10 02:37:07 t 1 1 95909 422 0.00 2019-09-10 03:39:30 2019-09-10 04:10:33 t 1 2 95912 445 0.00 2019-09-10 02:55:17 2019-09-10 06:21:26 t 1 1 95913 420 0.00 2019-09-09 23:24:58 2019-09-10 07:28:31 t 1 1 95915 379 0.00 2019-09-10 07:02:49 2019-09-10 07:33:50 t 1 2 95916 379 0.00 2019-09-10 07:42:36 2019-09-10 07:52:41 t 1 2 95918 247 0.00 2019-09-10 08:09:53 2019-09-10 08:11:24 t 1 2 95922 420 0.00 2019-09-10 08:27:57 2019-09-10 08:29:08 t 1 1 95927 306 0.00 2019-09-10 09:05:26 2019-09-10 09:06:30 t 1 2 95929 306 0.00 2019-09-10 09:09:29 2019-09-10 09:10:31 t 1 2 95931 453 0.00 2019-09-10 09:04:52 2019-09-10 09:14:57 t 1 2 95935 213 0.00 2019-09-10 09:25:46 2019-09-10 09:25:58 t 1 1 95939 306 0.00 2019-09-10 09:30:51 2019-09-10 09:31:55 t 1 2 95940 432 0.00 2019-09-10 09:33:04 2019-09-10 09:34:47 t 1 1 95941 453 0.00 2019-09-10 09:37:28 2019-09-10 09:37:32 t 1 2 95942 432 0.00 2019-09-10 09:34:44 2019-09-10 09:38:08 t 1 1 95946 420 0.00 2019-09-10 08:32:35 2019-09-10 09:53:12 t 1 1 95959 220 0.00 2019-09-10 10:09:04 2019-09-10 10:09:42 t 1 1 95960 220 0.00 2019-09-10 10:09:42 2019-09-10 10:10:17 t 1 1 95964 420 0.00 2019-09-10 10:01:07 2019-09-10 10:12:20 t 1 1 95969 296 0.00 2019-09-10 10:12:25 2019-09-10 10:17:48 t 1 2 95970 220 0.00 2019-09-10 10:16:19 2019-09-10 10:20:40 t 1 1 95972 220 0.00 2019-09-10 10:21:17 2019-09-10 10:21:52 t 1 1 95973 220 0.00 2019-09-10 10:21:52 2019-09-10 10:22:29 t 1 1 95979 220 0.00 2019-09-10 10:24:54 2019-09-10 10:25:30 t 1 1 95986 220 0.00 2019-09-10 10:28:32 2019-09-10 10:28:40 t 1 1 95987 220 0.00 2019-09-10 10:28:39 2019-09-10 10:29:03 t 1 1 95990 220 0.00 2019-09-10 10:29:38 2019-09-10 10:29:51 t 1 1 95991 220 0.00 2019-09-10 10:29:51 2019-09-10 10:30:28 t 1 1 95995 220 0.00 2019-09-10 10:31:14 2019-09-10 10:31:42 t 1 1 95999 220 0.00 2019-09-10 10:32:25 2019-09-10 10:32:49 t 1 1 96002 220 0.00 2019-09-10 10:34:05 2019-09-10 10:34:38 t 1 1 96003 220 0.00 2019-09-10 10:34:37 2019-09-10 10:35:16 t 1 1 96007 220 0.00 2019-09-10 10:37:20 2019-09-10 10:37:35 t 1 1 96008 220 0.00 2019-09-10 10:37:58 2019-09-10 10:39:58 t 1 1 96010 213 0.00 2019-09-10 10:41:15 2019-09-10 10:43:26 t 1 1 96012 220 0.00 2019-09-10 10:44:13 2019-09-10 10:46:46 t 1 1 96014 220 0.00 2019-09-10 10:48:44 2019-09-10 10:50:43 t 1 1 96020 294 0.00 2019-09-10 10:15:41 2019-09-10 11:16:05 t 1 2 96021 220 0.00 2019-09-10 11:21:24 2019-09-10 11:21:33 t 1 2 96025 220 0.00 2019-09-10 11:25:30 2019-09-10 11:25:35 t 1 2 96029 420 0.00 2019-09-10 11:03:28 2019-09-10 11:44:49 t 1 1 96030 420 0.00 2019-09-10 11:44:49 2019-09-10 11:45:51 t 1 1 96032 220 0.00 2019-09-10 11:48:59 2019-09-10 11:49:03 t 1 2 96033 402 0.00 2019-09-10 11:28:03 2019-09-10 11:50:21 t 1 2 96035 420 0.00 2019-09-10 11:46:03 2019-09-10 11:51:12 t 1 1 96038 445 0.00 2019-09-10 09:50:21 2019-09-10 12:01:08 t 1 1 96039 213 0.00 2019-09-10 12:06:36 2019-09-10 12:10:33 t 1 1 96040 213 0.00 2019-09-10 12:10:33 2019-09-10 12:12:38 t 1 1 96044 213 0.00 2019-09-10 12:31:36 2019-09-10 12:34:21 t 1 1 96046 432 0.00 2019-09-10 12:29:24 2019-09-10 12:38:41 t 1 1 96048 412 0.00 2019-09-10 08:20:03 2019-09-10 12:41:23 t 1 1 96049 432 0.00 2019-09-10 12:40:45 2019-09-10 12:44:13 t 1 1 96050 445 0.00 2019-09-10 12:00:41 2019-09-10 12:49:58 t 1 1 96051 412 0.00 2019-09-10 12:41:23 2019-09-10 12:55:54 t 1 1 96053 432 0.00 2019-09-10 12:46:11 2019-09-10 13:02:17 t 1 1 96054 432 0.00 2019-09-10 13:04:47 2019-09-10 13:04:57 t 1 1 95787 432 0.00 2019-09-09 19:45:03 2019-09-09 20:02:25 t 1 1 95788 432 0.00 2019-09-09 20:02:25 2019-09-09 20:03:35 t 1 1 95789 445 0.00 2019-09-09 19:34:46 2019-09-09 20:04:24 t 1 1 95790 445 0.00 2019-09-09 20:04:24 2019-09-09 20:05:04 t 1 1 95791 213 0.00 2019-09-09 19:53:50 2019-09-09 20:08:39 t 1 1 95792 220 0.00 2019-09-09 20:10:27 2019-09-09 20:13:14 t 1 1 95794 220 0.00 2019-09-09 20:13:14 2019-09-09 20:16:47 t 1 1 95795 220 0.00 2019-09-09 20:16:59 2019-09-09 20:18:57 t 1 1 95800 306 0.00 2019-09-09 20:36:34 2019-09-09 20:37:36 t 1 2 95802 213 0.00 2019-09-09 20:39:26 2019-09-09 20:42:15 t 1 1 95804 400 0.00 2019-09-09 20:32:05 2019-09-09 20:57:10 t 1 2 95807 294 0.00 2019-09-09 20:31:51 2019-09-09 21:10:15 t 1 2 95808 213 0.00 2019-09-09 20:43:42 2019-09-09 21:11:12 t 1 1 95809 247 0.00 2019-09-09 21:11:21 2019-09-09 21:11:56 t 1 2 95810 445 0.00 2019-09-09 20:21:20 2019-09-09 21:16:23 t 1 1 95817 449 0.00 2019-09-09 21:32:05 2019-09-09 21:39:01 t 1 1 95818 400 0.00 2019-09-09 21:11:59 2019-09-09 21:42:04 t 1 2 95819 213 0.00 2019-09-09 21:41:53 2019-09-09 21:43:26 t 1 1 95822 327 0.00 2019-09-09 20:55:04 2019-09-09 21:54:28 t 1 2 95826 420 0.00 2019-09-09 22:04:41 2019-09-09 22:08:37 t 1 1 95828 213 0.00 2019-09-09 22:12:23 2019-09-09 22:13:34 t 1 1 95829 445 0.00 2019-09-09 21:16:23 2019-09-09 22:15:48 t 1 1 95830 420 0.00 2019-09-09 22:13:29 2019-09-09 22:18:52 t 1 1 95833 294 0.00 2019-09-09 21:21:00 2019-09-09 22:21:23 t 1 2 95838 213 0.00 2019-09-09 22:26:18 2019-09-09 22:27:56 t 1 1 95842 213 0.00 2019-09-09 22:32:32 2019-09-09 22:34:49 t 1 1 95843 213 0.00 2019-09-09 22:34:49 2019-09-09 22:38:45 t 1 1 95844 420 0.00 2019-09-09 22:26:54 2019-09-09 22:40:40 t 1 1 95851 306 0.00 2019-09-09 22:57:14 2019-09-09 22:58:19 t 1 2 95860 213 0.00 2019-09-09 23:28:26 2019-09-09 23:42:06 t 1 1 95866 432 0.00 2019-09-10 00:08:00 2019-09-10 00:08:06 t 1 1 95871 432 0.00 2019-09-10 00:18:53 2019-09-10 00:19:53 t 1 1 95879 346 0.00 2019-09-10 00:31:24 2019-09-10 00:31:24 f 1 2 95881 212 0.00 2019-09-10 00:33:55 2019-09-10 00:34:21 t 1 2 95885 432 0.00 2019-09-10 00:43:52 2019-09-10 00:43:53 t 1 1 95886 432 0.00 2019-09-10 00:45:13 2019-09-10 00:46:31 t 1 1 95890 412 0.00 2019-09-09 21:03:22 2019-09-10 01:12:25 t 1 1 95892 449 0.00 2019-09-10 01:13:02 2019-09-10 01:21:43 t 1 1 95893 456 0.00 2019-09-10 01:04:14 2019-09-10 01:22:03 t 1 1 95894 379 0.00 2019-09-10 00:50:08 2019-09-10 01:30:14 t 1 2 95895 449 0.00 2019-09-10 01:21:43 2019-09-10 01:32:14 t 1 1 95897 456 0.00 2019-09-10 01:22:09 2019-09-10 01:46:16 t 1 1 95898 412 0.00 2019-09-10 01:42:47 2019-09-10 01:49:03 t 1 1 95904 402 0.00 2019-09-09 23:24:16 2019-09-10 02:39:21 t 1 2 95907 412 0.00 2019-09-10 03:06:01 2019-09-10 03:20:19 t 1 1 95910 213 0.00 2019-09-10 04:17:32 2019-09-10 04:20:07 t 1 1 95917 400 0.00 2019-09-10 07:59:41 2019-09-10 08:09:46 t 1 2 95919 212 0.00 2019-09-10 08:24:14 2019-09-10 08:24:49 t 1 2 95923 420 0.00 2019-09-10 08:29:41 2019-09-10 08:32:29 t 1 1 95928 306 0.00 2019-09-10 09:07:01 2019-09-10 09:08:04 t 1 2 95930 400 0.00 2019-09-10 09:03:40 2019-09-10 09:13:45 t 1 2 95932 212 0.00 2019-09-10 09:15:01 2019-09-10 09:15:19 t 1 2 95933 432 0.00 2019-09-10 09:13:57 2019-09-10 09:24:15 t 1 1 95936 454 0.00 2019-09-10 09:26:11 2019-09-10 09:26:53 t 1 2 95937 213 0.00 2019-09-10 09:25:58 2019-09-10 09:29:38 t 1 1 95938 432 0.00 2019-09-10 09:29:37 2019-09-10 09:30:23 t 1 1 95944 453 0.00 2019-09-10 09:39:43 2019-09-10 09:49:49 t 1 2 95948 220 0.00 2019-09-10 09:51:11 2019-09-10 10:02:16 t 1 1 95951 402 0.00 2019-09-10 09:35:04 2019-09-10 10:05:01 t 1 2 95952 220 0.00 2019-09-10 10:04:57 2019-09-10 10:05:32 t 1 1 95953 220 0.00 2019-09-10 10:05:32 2019-09-10 10:06:11 t 1 1 95956 220 0.00 2019-09-10 10:07:23 2019-09-10 10:07:54 t 1 1 95961 220 0.00 2019-09-10 10:10:17 2019-09-10 10:10:53 t 1 1 95962 220 0.00 2019-09-10 10:10:53 2019-09-10 10:11:27 t 1 1 95963 220 0.00 2019-09-10 10:11:27 2019-09-10 10:12:05 t 1 1 95965 220 0.00 2019-09-10 10:12:04 2019-09-10 10:13:25 t 1 1 95966 220 0.00 2019-09-10 10:13:24 2019-09-10 10:14:03 t 1 1 188703 639 0.00 2019-12-07 05:04:18 2019-12-07 05:05:06 t 1 1 95980 306 0.00 2019-09-10 10:25:32 2019-09-10 10:25:39 t 1 2 95981 220 0.00 2019-09-10 10:25:29 2019-09-10 10:26:07 t 1 1 95984 220 0.00 2019-09-10 10:27:19 2019-09-10 10:27:54 t 1 1 95988 220 0.00 2019-09-10 10:29:03 2019-09-10 10:29:17 t 1 1 95992 220 0.00 2019-09-10 10:30:28 2019-09-10 10:30:39 t 1 1 95993 220 0.00 2019-09-10 10:30:39 2019-09-10 10:31:03 t 1 1 95996 220 0.00 2019-09-10 10:31:42 2019-09-10 10:31:47 t 1 1 95997 220 0.00 2019-09-10 10:31:46 2019-09-10 10:32:17 t 1 1 96004 220 0.00 2019-09-10 10:35:15 2019-09-10 10:35:53 t 1 1 96005 220 0.00 2019-09-10 10:35:50 2019-09-10 10:36:45 t 1 1 96006 220 0.00 2019-09-10 10:36:45 2019-09-10 10:37:20 t 1 1 96009 220 0.00 2019-09-10 10:39:58 2019-09-10 10:42:00 t 1 1 96011 220 0.00 2019-09-10 10:42:00 2019-09-10 10:44:13 t 1 1 96013 220 0.00 2019-09-10 10:46:46 2019-09-10 10:48:44 t 1 1 96015 220 0.00 2019-09-10 10:50:43 2019-09-10 10:54:57 t 1 1 96016 420 0.00 2019-09-10 10:14:04 2019-09-10 11:01:51 t 1 1 96017 220 0.00 2019-09-10 10:54:57 2019-09-10 11:03:42 t 1 1 96019 213 0.00 2019-09-10 11:02:40 2019-09-10 11:06:21 t 1 1 96022 402 0.00 2019-09-10 10:05:14 2019-09-10 11:24:43 t 1 2 96023 402 0.00 2019-09-10 11:25:12 2019-09-10 11:25:13 t 1 2 96028 220 0.00 2019-09-10 11:29:19 2019-09-10 11:33:42 t 1 2 96034 453 0.00 2019-09-10 11:38:33 2019-09-10 11:50:21 t 1 2 96052 213 0.00 2019-09-10 12:55:30 2019-09-10 12:58:58 t 1 1 96057 432 0.00 2019-09-10 13:07:54 2019-09-10 13:08:04 t 1 1 96065 432 0.00 2019-09-10 13:48:43 2019-09-10 13:51:43 t 1 1 96066 432 0.00 2019-09-10 13:51:59 2019-09-10 13:59:12 t 1 1 96067 432 0.00 2019-09-10 14:01:36 2019-09-10 14:05:09 t 1 1 96070 445 0.00 2019-09-10 14:05:35 2019-09-10 14:13:04 t 1 1 96077 420 0.00 2019-09-10 14:42:43 2019-09-10 14:50:31 t 1 1 96080 420 0.00 2019-09-10 14:50:31 2019-09-10 14:55:42 t 1 1 96083 420 0.00 2019-09-10 14:55:42 2019-09-10 15:00:36 t 1 1 96085 213 0.00 2019-09-10 15:00:36 2019-09-10 15:00:38 t 1 1 96088 412 0.00 2019-09-10 15:04:17 2019-09-10 15:05:53 t 1 1 96089 213 0.00 2019-09-10 15:05:24 2019-09-10 15:08:39 t 1 1 96092 213 0.00 2019-09-10 15:08:39 2019-09-10 15:17:45 t 1 1 96093 213 0.00 2019-09-10 15:26:01 2019-09-10 15:26:58 t 1 1 96097 213 0.00 2019-09-10 15:46:10 2019-09-10 15:58:13 t 1 1 96103 412 0.00 2019-09-10 16:18:51 2019-09-10 16:48:37 t 1 1 96105 213 0.00 2019-09-10 17:07:05 2019-09-10 17:08:56 t 1 1 95865 432 0.00 2019-09-10 00:07:28 2019-09-10 00:07:31 t 1 1 95867 212 0.00 2019-09-10 00:11:18 2019-09-10 00:11:35 t 1 2 95872 432 0.00 2019-09-10 00:21:20 2019-09-10 00:22:22 t 1 1 95874 454 0.00 2019-09-10 00:26:31 2019-09-10 00:26:44 t 1 2 95880 432 0.00 2019-09-10 00:34:06 2019-09-10 00:34:12 t 1 1 95883 454 0.00 2019-09-10 00:33:22 2019-09-10 00:38:11 t 1 2 95884 432 0.00 2019-09-10 00:42:15 2019-09-10 00:42:17 t 1 1 95888 424 0.00 2019-09-10 00:04:39 2019-09-10 01:05:00 t 1 2 95896 412 0.00 2019-09-10 01:12:25 2019-09-10 01:42:47 t 1 1 95899 449 0.00 2019-09-10 01:32:14 2019-09-10 01:50:19 t 1 1 95902 400 0.00 2019-09-10 00:53:44 2019-09-10 02:23:50 t 1 2 95905 445 0.00 2019-09-10 00:14:20 2019-09-10 02:55:17 t 1 1 95906 412 0.00 2019-09-10 02:37:07 2019-09-10 03:06:01 t 1 1 95908 412 0.00 2019-09-10 03:20:19 2019-09-10 03:35:18 t 1 1 95911 220 0.00 2019-09-10 05:22:14 2019-09-10 05:30:20 t 1 1 95914 212 0.00 2019-09-10 07:28:12 2019-09-10 07:28:45 t 1 2 95920 306 0.00 2019-09-10 08:24:11 2019-09-10 08:25:18 t 1 2 95921 420 0.00 2019-09-10 07:28:47 2019-09-10 08:27:52 t 1 1 95924 212 0.00 2019-09-10 08:40:43 2019-09-10 08:41:16 t 1 2 95925 212 0.00 2019-09-10 08:56:09 2019-09-10 09:02:34 t 1 2 95926 453 0.00 2019-09-10 09:04:16 2019-09-10 09:04:20 t 1 2 95934 432 0.00 2019-09-10 09:24:15 2019-09-10 09:24:23 t 1 1 95943 400 0.00 2019-09-10 09:29:54 2019-09-10 09:39:59 t 1 2 95945 220 0.00 2019-09-10 09:48:18 2019-09-10 09:51:11 t 1 1 95947 420 0.00 2019-09-10 09:52:59 2019-09-10 10:01:06 t 1 1 95949 220 0.00 2019-09-10 10:02:16 2019-09-10 10:02:53 t 1 1 95950 220 0.00 2019-09-10 10:02:53 2019-09-10 10:04:57 t 1 1 95954 220 0.00 2019-09-10 10:06:10 2019-09-10 10:06:46 t 1 1 95955 220 0.00 2019-09-10 10:06:45 2019-09-10 10:07:24 t 1 1 95957 220 0.00 2019-09-10 10:07:54 2019-09-10 10:08:32 t 1 1 95958 220 0.00 2019-09-10 10:08:32 2019-09-10 10:09:04 t 1 1 95967 220 0.00 2019-09-10 10:14:02 2019-09-10 10:15:42 t 1 1 95968 220 0.00 2019-09-10 10:15:42 2019-09-10 10:16:19 t 1 1 95971 220 0.00 2019-09-10 10:20:40 2019-09-10 10:21:18 t 1 1 95974 220 0.00 2019-09-10 10:22:29 2019-09-10 10:23:05 t 1 1 95976 220 0.00 2019-09-10 10:23:04 2019-09-10 10:23:43 t 1 1 95977 220 0.00 2019-09-10 10:23:43 2019-09-10 10:24:17 t 1 1 95978 220 0.00 2019-09-10 10:24:17 2019-09-10 10:24:55 t 1 1 95982 220 0.00 2019-09-10 10:26:06 2019-09-10 10:26:41 t 1 1 95983 220 0.00 2019-09-10 10:26:41 2019-09-10 10:27:19 t 1 1 95985 220 0.00 2019-09-10 10:27:54 2019-09-10 10:28:32 t 1 1 95989 220 0.00 2019-09-10 10:29:16 2019-09-10 10:29:38 t 1 1 95994 220 0.00 2019-09-10 10:31:03 2019-09-10 10:31:14 t 1 1 95998 220 0.00 2019-09-10 10:32:17 2019-09-10 10:32:25 t 1 1 96000 220 0.00 2019-09-10 10:32:49 2019-09-10 10:33:00 t 1 1 96001 220 0.00 2019-09-10 10:32:59 2019-09-10 10:34:06 t 1 1 96018 220 0.00 2019-09-10 11:03:42 2019-09-10 11:06:02 t 1 1 96024 402 0.00 2019-09-10 11:25:23 2019-09-10 11:25:23 t 1 2 96026 220 0.00 2019-09-10 11:28:46 2019-09-10 11:28:49 t 1 2 96027 220 0.00 2019-09-10 11:28:59 2019-09-10 11:29:07 t 1 2 96031 220 0.00 2019-09-10 11:35:03 2019-09-10 11:47:49 t 1 2 96036 420 0.00 2019-09-10 11:51:12 2019-09-10 11:55:26 t 1 1 96037 335 0.00 2019-09-10 11:55:15 2019-09-10 11:57:20 t 1 2 96041 420 0.00 2019-09-10 12:05:14 2019-09-10 12:15:30 t 1 1 96042 420 0.00 2019-09-10 12:15:30 2019-09-10 12:21:41 t 1 1 96043 420 0.00 2019-09-10 12:21:41 2019-09-10 12:29:06 t 1 1 96045 213 0.00 2019-09-10 12:35:29 2019-09-10 12:36:21 t 1 1 96047 213 0.00 2019-09-10 12:36:20 2019-09-10 12:39:33 t 1 1 96055 432 0.00 2019-09-10 13:05:40 2019-09-10 13:05:46 t 1 1 96059 432 0.00 2019-09-10 13:12:33 2019-09-10 13:13:11 t 1 1 96060 432 0.00 2019-09-10 13:13:31 2019-09-10 13:14:34 t 1 1 96062 420 0.00 2019-09-10 12:29:06 2019-09-10 13:24:36 t 1 1 96064 213 0.00 2019-09-10 13:02:09 2019-09-10 13:38:42 t 1 1 96068 445 0.00 2019-09-10 13:19:01 2019-09-10 14:05:35 t 1 1 96069 412 0.00 2019-09-10 12:55:54 2019-09-10 14:06:23 t 1 1 96071 220 0.00 2019-09-10 13:37:04 2019-09-10 14:22:38 t 1 1 96073 220 0.00 2019-09-10 14:19:21 2019-09-10 14:29:47 t 1 1 96074 412 0.00 2019-09-10 14:06:23 2019-09-10 14:33:26 t 1 1 96075 445 0.00 2019-09-10 14:27:49 2019-09-10 14:38:28 t 1 1 96076 220 0.00 2019-09-10 14:37:25 2019-09-10 14:39:05 t 1 1 96079 412 0.00 2019-09-10 14:33:26 2019-09-10 14:51:18 t 1 1 96081 213 0.00 2019-09-10 14:53:17 2019-09-10 14:57:49 t 1 1 96082 220 0.00 2019-09-10 14:41:22 2019-09-10 15:00:28 t 1 1 96086 412 0.00 2019-09-10 14:51:18 2019-09-10 15:04:17 t 1 1 96091 220 0.00 2019-09-10 15:00:28 2019-09-10 15:12:24 t 1 1 96094 213 0.00 2019-09-10 15:26:58 2019-09-10 15:38:10 t 1 1 96096 456 0.00 2019-09-10 15:32:24 2019-09-10 15:55:16 t 1 1 96098 220 0.00 2019-09-10 15:50:10 2019-09-10 16:14:55 t 1 1 96100 456 0.00 2019-09-10 16:16:45 2019-09-10 16:23:37 t 1 1 96104 213 0.00 2019-09-10 16:49:19 2019-09-10 16:59:09 t 1 1 96106 213 0.00 2019-09-10 17:34:06 2019-09-10 17:40:28 t 1 1 96109 213 0.00 2019-09-10 17:43:43 2019-09-10 17:46:45 t 1 1 96116 213 0.00 2019-09-10 18:17:37 2019-09-10 18:36:08 t 1 1 96118 420 0.00 2019-09-10 18:37:03 2019-09-10 18:41:08 t 1 1 96120 420 0.00 2019-09-10 18:47:27 2019-09-10 18:50:45 t 1 1 96121 213 0.00 2019-09-10 18:57:42 2019-09-10 19:03:32 t 1 1 96125 220 0.00 2019-09-10 18:17:11 2019-09-10 19:24:35 t 1 1 96130 456 0.00 2019-09-10 19:28:34 2019-09-10 19:34:21 t 1 1 96137 213 0.00 2019-09-10 20:28:33 2019-09-10 20:29:24 t 1 1 96141 445 0.00 2019-09-10 20:44:55 2019-09-10 20:58:42 t 1 1 96143 445 0.00 2019-09-10 20:59:54 2019-09-10 21:00:23 t 1 1 96146 436 0.00 2019-09-10 21:27:34 2019-09-10 21:27:39 t 1 1 96147 220 0.00 2019-09-10 21:24:14 2019-09-10 21:32:58 t 1 1 96148 220 0.00 2019-09-10 21:37:03 2019-09-10 21:38:10 t 1 1 96149 213 0.00 2019-09-10 21:37:25 2019-09-10 21:39:55 t 1 1 96151 213 0.00 2019-09-10 22:14:24 2019-09-10 22:17:06 t 1 1 96155 213 0.00 2019-09-10 23:05:29 2019-09-10 23:07:19 t 1 1 96156 456 0.00 2019-09-10 22:41:52 2019-09-10 23:20:53 t 1 1 96160 412 0.00 2019-09-10 20:52:26 2019-09-11 00:38:51 t 1 1 96161 445 0.00 2019-09-10 21:49:35 2019-09-11 00:46:58 t 1 1 96167 422 0.00 2019-09-11 03:52:15 2019-09-11 03:55:57 t 1 1 96169 422 0.00 2019-09-11 04:00:29 2019-09-11 04:03:56 t 1 1 96171 445 0.00 2019-09-11 00:54:07 2019-09-11 04:10:58 t 1 1 96172 422 0.00 2019-09-11 04:08:45 2019-09-11 04:12:38 t 1 1 96177 445 0.00 2019-09-11 04:41:46 2019-09-11 06:17:25 t 1 1 96185 445 0.00 2019-09-11 08:31:36 2019-09-11 08:50:58 t 1 1 96189 213 0.00 2019-09-11 09:53:51 2019-09-11 10:01:35 t 1 1 96056 432 0.00 2019-09-10 13:06:47 2019-09-10 13:07:20 t 1 1 96058 445 0.00 2019-09-10 12:49:58 2019-09-10 13:09:25 t 1 1 96061 445 0.00 2019-09-10 13:09:25 2019-09-10 13:18:58 t 1 1 96063 220 0.00 2019-09-10 13:33:58 2019-09-10 13:36:33 t 1 1 96072 445 0.00 2019-09-10 14:13:04 2019-09-10 14:27:49 t 1 1 96078 213 0.00 2019-09-10 14:43:57 2019-09-10 14:50:38 t 1 1 96084 213 0.00 2019-09-10 14:59:41 2019-09-10 15:00:36 t 1 1 96087 420 0.00 2019-09-10 15:00:56 2019-09-10 15:05:25 t 1 1 96090 420 0.00 2019-09-10 15:09:09 2019-09-10 15:11:18 t 1 1 96095 220 0.00 2019-09-10 15:12:24 2019-09-10 15:50:10 t 1 1 96099 412 0.00 2019-09-10 16:06:02 2019-09-10 16:18:51 t 1 1 96101 445 0.00 2019-09-10 14:38:37 2019-09-10 16:29:58 t 1 1 96102 213 0.00 2019-09-10 16:25:08 2019-09-10 16:31:53 t 1 1 96112 220 0.00 2019-09-10 18:00:26 2019-09-10 18:05:00 t 1 1 96113 220 0.00 2019-09-10 18:05:00 2019-09-10 18:11:11 t 1 1 96114 220 0.00 2019-09-10 18:11:11 2019-09-10 18:17:11 t 1 1 96115 420 0.00 2019-09-10 18:30:30 2019-09-10 18:36:08 t 1 1 96119 420 0.00 2019-09-10 18:41:14 2019-09-10 18:45:09 t 1 1 96124 213 0.00 2019-09-10 19:09:13 2019-09-10 19:18:04 t 1 1 96126 412 0.00 2019-09-10 19:17:45 2019-09-10 19:27:46 t 1 1 96132 213 0.00 2019-09-10 19:41:20 2019-09-10 19:44:07 t 1 1 96138 213 0.00 2019-09-10 20:29:24 2019-09-10 20:32:25 t 1 1 96140 412 0.00 2019-09-10 20:19:05 2019-09-10 20:52:26 t 1 1 96142 445 0.00 2019-09-10 20:58:41 2019-09-10 20:59:55 t 1 1 96152 213 0.00 2019-09-10 22:19:52 2019-09-10 22:22:55 t 1 1 96153 220 0.00 2019-09-10 22:28:56 2019-09-10 22:45:28 t 1 1 96154 420 0.00 2019-09-10 22:44:29 2019-09-10 22:51:58 t 1 1 96159 449 0.00 2019-09-11 00:19:42 2019-09-11 00:20:36 t 1 1 96163 412 0.00 2019-09-11 00:38:51 2019-09-11 01:04:19 t 1 1 96165 422 0.00 2019-09-11 03:49:50 2019-09-11 03:50:00 t 1 1 96168 422 0.00 2019-09-11 03:55:57 2019-09-11 04:00:29 t 1 1 96170 422 0.00 2019-09-11 04:03:56 2019-09-11 04:08:45 t 1 1 96176 445 0.00 2019-09-11 04:21:40 2019-09-11 04:41:46 t 1 1 96178 445 0.00 2019-09-11 06:17:37 2019-09-11 06:23:21 t 1 1 96179 420 0.00 2019-09-11 06:38:32 2019-09-11 06:53:08 t 1 1 96182 412 0.00 2019-09-11 03:11:56 2019-09-11 08:34:52 t 1 1 96186 445 0.00 2019-09-11 08:50:58 2019-09-11 09:05:28 t 1 1 96187 445 0.00 2019-09-11 09:05:27 2019-09-11 09:24:50 t 1 1 96190 445 0.00 2019-09-11 09:26:21 2019-09-11 10:08:52 t 1 1 96203 445 0.00 2019-09-11 10:49:33 2019-09-11 10:52:21 t 1 1 96212 213 0.00 2019-09-11 11:40:06 2019-09-11 11:42:48 t 1 1 96213 449 0.00 2019-09-11 11:42:20 2019-09-11 11:46:04 t 1 1 96215 449 0.00 2019-09-11 11:46:04 2019-09-11 11:55:05 t 1 1 96219 220 0.00 2019-09-11 11:59:03 2019-09-11 11:59:38 t 1 1 96220 220 0.00 2019-09-11 11:59:38 2019-09-11 12:00:13 t 1 1 96233 220 0.00 2019-09-11 12:39:40 2019-09-11 12:41:46 t 1 1 96236 220 0.00 2019-09-11 12:42:43 2019-09-11 12:45:21 t 1 1 96237 220 0.00 2019-09-11 12:45:26 2019-09-11 12:46:43 t 1 1 96240 213 0.00 2019-09-11 12:45:00 2019-09-11 12:54:25 t 1 1 96242 220 0.00 2019-09-11 12:57:48 2019-09-11 12:57:59 t 1 1 96245 220 0.00 2019-09-11 13:08:03 2019-09-11 13:10:41 t 1 1 96251 220 0.00 2019-09-11 13:23:01 2019-09-11 13:28:05 t 1 1 96254 445 0.00 2019-09-11 13:38:51 2019-09-11 13:41:48 t 1 1 96255 445 0.00 2019-09-11 13:42:14 2019-09-11 13:43:16 t 1 1 96256 213 0.00 2019-09-11 13:41:49 2019-09-11 13:44:43 t 1 1 96258 213 0.00 2019-09-11 13:53:28 2019-09-11 13:56:38 t 1 1 96259 220 0.00 2019-09-11 13:56:50 2019-09-11 13:57:54 t 1 1 96263 451 0.00 2019-09-11 14:19:00 2019-09-11 14:27:23 t 1 1 96265 432 0.00 2019-09-11 14:10:05 2019-09-11 14:38:45 t 1 1 96271 432 0.00 2019-09-11 15:27:21 2019-09-11 15:39:29 t 1 1 96275 213 0.00 2019-09-11 15:52:56 2019-09-11 15:58:01 t 1 1 96282 432 0.00 2019-09-11 16:49:50 2019-09-11 16:56:42 t 1 1 96283 412 0.00 2019-09-11 14:34:46 2019-09-11 17:12:53 t 1 1 96284 213 0.00 2019-09-11 17:24:31 2019-09-11 17:27:55 t 1 1 96286 400 0.00 2019-09-11 17:30:08 2019-09-11 17:32:30 t 1 1 96288 412 0.00 2019-09-11 17:12:53 2019-09-11 17:37:31 t 1 1 96290 400 0.00 2019-09-11 17:32:30 2019-09-11 17:39:17 t 1 1 96295 432 0.00 2019-09-11 17:53:57 2019-09-11 17:54:32 t 1 1 96298 451 0.00 2019-09-11 17:51:11 2019-09-11 18:00:55 t 1 1 96302 400 0.00 2019-09-11 17:56:56 2019-09-11 18:18:10 t 1 1 96307 213 0.00 2019-09-11 18:40:01 2019-09-11 18:47:16 t 1 1 96308 213 0.00 2019-09-11 18:47:57 2019-09-11 18:50:44 t 1 1 96309 432 0.00 2019-09-11 18:34:06 2019-09-11 18:57:49 t 1 1 96313 220 0.00 2019-09-12 14:29:31 2019-09-12 14:32:39 t 1 1 96315 220 0.00 2019-09-12 14:48:55 2019-09-12 14:51:21 t 1 1 96320 220 0.00 2019-09-12 15:06:49 2019-09-12 15:06:49 t 1 2 96321 220 0.00 2019-09-12 14:52:20 2019-09-12 15:07:32 t 1 1 96325 220 0.00 2019-09-12 15:08:36 2019-09-12 15:09:09 t 1 1 96326 220 0.00 2019-09-12 15:09:09 2019-09-12 15:09:41 t 1 1 96328 220 0.00 2019-09-12 15:10:14 2019-09-12 15:10:46 t 1 1 96331 220 0.00 2019-09-12 15:15:15 2019-09-12 15:19:12 t 1 2 96332 432 0.00 2019-09-12 15:13:16 2019-09-12 15:20:22 t 1 1 96334 428 0.00 2019-09-12 15:20:36 2019-09-12 15:22:20 t 1 1 96335 220 0.00 2019-09-12 15:19:18 2019-09-12 15:24:31 t 1 2 96348 220 0.00 2019-09-12 15:42:59 2019-09-12 15:43:07 t 1 1 96349 428 0.00 2019-09-12 15:20:47 2019-09-12 15:48:44 t 1 1 96353 432 0.00 2019-09-12 15:54:38 2019-09-12 16:00:27 t 1 1 96354 400 0.00 2019-09-12 15:46:39 2019-09-12 16:02:04 t 1 1 96355 432 0.00 2019-09-12 16:00:27 2019-09-12 16:03:47 t 1 1 96357 220 0.00 2019-09-12 16:04:45 2019-09-12 16:04:53 t 1 1 96360 445 0.00 2019-09-12 15:40:25 2019-09-12 16:12:57 t 1 1 96364 220 0.00 2019-09-12 16:15:28 2019-09-12 16:15:37 t 1 1 96366 428 0.00 2019-09-12 16:10:25 2019-09-12 16:20:40 t 1 1 96370 459 0.00 2019-09-12 16:23:37 2019-09-12 16:23:39 t 1 2 96373 392 0.00 2019-09-12 16:24:31 2019-09-12 16:24:32 t 1 2 96375 428 0.00 2019-09-12 16:25:40 2019-09-12 16:28:16 t 1 1 96376 220 0.00 2019-09-12 16:22:50 2019-09-12 16:38:57 t 1 1 96377 220 0.00 2019-09-12 16:49:17 2019-09-12 16:49:25 t 1 1 96380 220 0.00 2019-09-12 16:59:46 2019-09-12 16:59:54 t 1 1 96382 220 0.00 2019-09-12 17:10:37 2019-09-12 17:10:46 t 1 1 96387 220 0.00 2019-09-12 17:31:33 2019-09-12 17:32:08 t 1 1 96390 451 0.00 2019-09-12 17:43:01 2019-09-12 17:47:53 t 1 1 96397 220 0.00 2019-09-12 18:03:00 2019-09-12 18:03:08 t 1 1 96398 220 0.00 2019-09-12 18:03:15 2019-09-12 18:03:23 t 1 1 96399 428 0.00 2019-09-12 17:17:45 2019-09-12 18:05:11 t 1 1 96400 400 0.00 2019-09-12 18:03:44 2019-09-12 18:06:00 t 1 1 96406 220 0.00 2019-09-12 18:13:59 2019-09-12 18:14:07 t 1 1 96107 220 0.00 2019-09-10 16:14:55 2019-09-10 17:43:41 t 1 1 96108 213 0.00 2019-09-10 17:40:27 2019-09-10 17:43:43 t 1 1 96110 220 0.00 2019-09-10 17:43:41 2019-09-10 17:51:56 t 1 1 96111 220 0.00 2019-09-10 17:51:56 2019-09-10 18:00:26 t 1 1 96117 213 0.00 2019-09-10 18:36:08 2019-09-10 18:37:03 t 1 1 96122 445 0.00 2019-09-10 16:30:34 2019-09-10 19:06:01 t 1 1 96123 412 0.00 2019-09-10 16:48:37 2019-09-10 19:17:45 t 1 1 96127 213 0.00 2019-09-10 19:18:04 2019-09-10 19:28:34 t 1 1 96128 445 0.00 2019-09-10 19:06:01 2019-09-10 19:29:31 t 1 1 96129 445 0.00 2019-09-10 19:29:31 2019-09-10 19:34:02 t 1 1 96131 213 0.00 2019-09-10 19:38:41 2019-09-10 19:41:20 t 1 1 96133 213 0.00 2019-09-10 19:49:00 2019-09-10 19:53:33 t 1 1 96134 213 0.00 2019-09-10 19:55:14 2019-09-10 19:59:27 t 1 1 96135 445 0.00 2019-09-10 19:34:02 2019-09-10 20:13:15 t 1 1 96136 412 0.00 2019-09-10 19:27:46 2019-09-10 20:19:05 t 1 1 96139 445 0.00 2019-09-10 20:13:34 2019-09-10 20:44:46 t 1 1 96144 445 0.00 2019-09-10 21:00:23 2019-09-10 21:00:49 t 1 1 96145 436 0.00 2019-09-10 21:11:11 2019-09-10 21:27:34 t 1 1 96150 445 0.00 2019-09-10 21:00:49 2019-09-10 21:50:11 t 1 1 96157 220 0.00 2019-09-10 23:17:04 2019-09-10 23:28:20 t 1 1 96158 213 0.00 2019-09-10 23:50:14 2019-09-10 23:52:00 t 1 1 96162 445 0.00 2019-09-11 00:47:14 2019-09-11 00:53:59 t 1 1 96164 412 0.00 2019-09-11 01:04:19 2019-09-11 03:06:28 t 1 1 96166 422 0.00 2019-09-11 03:50:45 2019-09-11 03:52:15 t 1 1 96173 422 0.00 2019-09-11 04:12:38 2019-09-11 04:14:45 t 1 1 96174 422 0.00 2019-09-11 04:14:45 2019-09-11 04:15:40 t 1 1 96175 445 0.00 2019-09-11 04:11:11 2019-09-11 04:21:42 t 1 1 96180 445 0.00 2019-09-11 06:23:41 2019-09-11 07:01:09 t 1 1 96181 445 0.00 2019-09-11 07:01:09 2019-09-11 08:31:37 t 1 1 96183 412 0.00 2019-09-11 08:34:57 2019-09-11 08:36:20 t 1 1 96184 412 0.00 2019-09-11 08:38:09 2019-09-11 08:39:34 t 1 1 96188 213 0.00 2019-09-11 09:50:10 2019-09-11 09:53:51 t 1 1 96192 445 0.00 2019-09-11 10:12:53 2019-09-11 10:13:39 t 1 1 96194 445 0.00 2019-09-11 10:14:39 2019-09-11 10:17:23 t 1 1 96196 213 0.00 2019-09-11 10:28:42 2019-09-11 10:31:17 t 1 1 96197 445 0.00 2019-09-11 10:17:25 2019-09-11 10:32:24 t 1 1 96198 445 0.00 2019-09-11 10:32:23 2019-09-11 10:36:29 t 1 1 96199 445 0.00 2019-09-11 10:37:09 2019-09-11 10:38:58 t 1 1 96201 445 0.00 2019-09-11 10:45:41 2019-09-11 10:46:41 t 1 1 96202 445 0.00 2019-09-11 10:46:46 2019-09-11 10:49:04 t 1 1 96205 456 0.00 2019-09-11 11:08:24 2019-09-11 11:11:01 t 1 1 96209 445 0.00 2019-09-11 11:21:29 2019-09-11 11:22:17 t 1 1 96210 436 0.00 2019-09-11 11:39:49 2019-09-11 11:39:54 t 1 1 96211 449 0.00 2019-09-11 11:39:54 2019-09-11 11:42:20 t 1 1 96217 220 0.00 2019-09-11 11:57:49 2019-09-11 11:58:30 t 1 1 96218 220 0.00 2019-09-11 11:58:30 2019-09-11 11:59:03 t 1 1 96221 220 0.00 2019-09-11 12:00:12 2019-09-11 12:00:15 t 1 1 96222 420 0.00 2019-09-11 11:56:20 2019-09-11 12:02:47 t 1 1 96226 213 0.00 2019-09-11 12:11:30 2019-09-11 12:15:22 t 1 1 96229 445 0.00 2019-09-11 12:16:03 2019-09-11 12:25:05 t 1 1 96230 445 0.00 2019-09-11 12:25:05 2019-09-11 12:34:05 t 1 1 96234 220 0.00 2019-09-11 12:42:03 2019-09-11 12:42:38 t 1 1 96244 220 0.00 2019-09-11 13:06:50 2019-09-11 13:08:00 t 1 1 96246 220 0.00 2019-09-11 13:11:08 2019-09-11 13:12:08 t 1 1 96247 213 0.00 2019-09-11 13:09:35 2019-09-11 13:12:35 t 1 1 96249 213 0.00 2019-09-11 13:12:34 2019-09-11 13:13:59 t 1 1 96250 220 0.00 2019-09-11 13:12:11 2019-09-11 13:22:57 t 1 1 96253 445 0.00 2019-09-11 13:13:01 2019-09-11 13:38:21 t 1 1 96266 220 0.00 2019-09-11 14:19:20 2019-09-11 14:41:29 t 1 1 96267 451 0.00 2019-09-11 14:31:24 2019-09-11 14:55:28 t 1 1 96272 432 0.00 2019-09-11 15:42:46 2019-09-11 15:43:15 t 1 1 96273 432 0.00 2019-09-11 15:54:58 2019-09-11 15:55:25 t 1 1 96276 220 0.00 2019-09-11 15:27:49 2019-09-11 16:01:39 t 1 1 96277 451 0.00 2019-09-11 15:50:13 2019-09-11 16:04:45 t 1 1 96281 432 0.00 2019-09-11 16:32:12 2019-09-11 16:49:50 t 1 1 96285 400 0.00 2019-09-11 17:28:11 2019-09-11 17:29:56 t 1 1 96289 422 0.00 2019-09-11 17:17:39 2019-09-11 17:38:12 t 1 1 96294 445 0.00 2019-09-11 17:46:13 2019-09-11 17:53:57 t 1 1 96296 412 0.00 2019-09-11 17:37:31 2019-09-11 17:58:38 t 1 1 96297 432 0.00 2019-09-11 17:59:47 2019-09-11 18:00:25 t 1 1 96304 432 0.00 2019-09-11 18:18:12 2019-09-11 18:21:35 t 1 1 96305 432 0.00 2019-09-11 18:21:51 2019-09-11 18:22:35 t 1 1 96306 432 0.00 2019-09-11 18:24:26 2019-09-11 18:30:03 t 1 1 96310 327 0.00 2019-09-11 19:00:04 2019-09-11 19:01:01 t 1 1 96311 327 0.00 2019-09-11 19:01:09 2019-09-11 19:01:36 t 1 1 96312 327 0.00 2019-09-11 19:01:35 2019-09-11 19:02:38 t 1 1 96314 220 0.00 2019-09-12 14:46:55 2019-09-12 14:48:21 t 1 1 96317 402 0.00 2019-09-12 14:46:24 2019-09-12 15:03:50 t 1 2 96318 220 0.00 2019-09-12 15:04:49 2019-09-12 15:04:54 t 1 2 96322 220 0.00 2019-09-12 15:07:31 2019-09-12 15:08:04 t 1 1 96330 220 0.00 2019-09-12 15:11:21 2019-09-12 15:19:09 t 1 1 96336 220 0.00 2019-09-12 15:24:47 2019-09-12 15:24:53 t 1 2 96337 449 0.00 2019-09-12 15:08:34 2019-09-12 15:25:43 t 1 1 96338 402 0.00 2019-09-12 15:29:06 2019-09-12 15:29:07 t 1 2 96339 402 0.00 2019-09-12 15:29:19 2019-09-12 15:29:21 t 1 2 96341 402 0.00 2019-09-12 15:30:20 2019-09-12 15:30:21 t 1 2 96343 449 0.00 2019-09-12 15:25:43 2019-09-12 15:31:11 t 1 1 96344 402 0.00 2019-09-12 15:31:21 2019-09-12 15:31:22 t 1 2 96345 220 0.00 2019-09-12 15:31:34 2019-09-12 15:32:28 t 1 1 96350 220 0.00 2019-09-12 15:53:28 2019-09-12 15:53:35 t 1 1 96351 220 0.00 2019-09-12 15:53:42 2019-09-12 15:53:53 t 1 1 96358 432 0.00 2019-09-12 16:03:47 2019-09-12 16:07:33 t 1 1 96359 247 0.00 2019-09-12 15:53:46 2019-09-12 16:09:01 t 1 2 96361 432 0.00 2019-09-12 16:07:33 2019-09-12 16:13:02 t 1 1 96367 453 0.00 2019-09-12 16:21:08 2019-09-12 16:21:08 t 1 2 96374 453 0.00 2019-09-12 16:24:45 2019-09-12 16:24:46 t 1 2 96378 385 0.00 2019-09-12 16:54:26 2019-09-12 16:54:29 t 1 2 96384 220 0.00 2019-09-12 17:21:05 2019-09-12 17:21:13 t 1 1 96386 451 0.00 2019-09-12 17:17:44 2019-09-12 17:30:50 t 1 1 96388 220 0.00 2019-09-12 17:42:04 2019-09-12 17:42:12 t 1 1 96391 220 0.00 2019-09-12 17:52:32 2019-09-12 17:52:40 t 1 1 96392 402 0.00 2019-09-12 17:55:38 2019-09-12 17:55:38 t 1 2 96395 402 0.00 2019-09-12 17:58:38 2019-09-12 17:58:38 t 1 2 96401 451 0.00 2019-09-12 18:00:30 2019-09-12 18:10:50 t 1 1 96404 220 0.00 2019-09-12 18:13:43 2019-09-12 18:13:52 t 1 1 96408 220 0.00 2019-09-12 18:14:15 2019-09-12 18:14:23 t 1 1 96409 445 0.00 2019-09-12 18:06:26 2019-09-12 18:15:36 t 1 1 96191 445 0.00 2019-09-11 10:09:45 2019-09-11 10:11:12 t 1 1 96193 445 0.00 2019-09-11 10:13:55 2019-09-11 10:14:39 t 1 1 96195 213 0.00 2019-09-11 10:15:57 2019-09-11 10:18:34 t 1 1 96200 445 0.00 2019-09-11 10:39:08 2019-09-11 10:45:42 t 1 1 96204 445 0.00 2019-09-11 10:52:31 2019-09-11 11:02:32 t 1 1 96206 445 0.00 2019-09-11 11:02:37 2019-09-11 11:11:18 t 1 1 96207 445 0.00 2019-09-11 11:11:26 2019-09-11 11:18:50 t 1 1 96208 213 0.00 2019-09-11 11:15:38 2019-09-11 11:21:59 t 1 1 96214 436 0.00 2019-09-11 11:39:59 2019-09-11 11:46:47 t 1 1 96216 220 0.00 2019-09-11 11:51:06 2019-09-11 11:57:49 t 1 1 96223 445 0.00 2019-09-11 11:22:16 2019-09-11 12:08:05 t 1 1 96224 420 0.00 2019-09-11 12:03:14 2019-09-11 12:09:46 t 1 1 96225 420 0.00 2019-09-11 12:09:46 2019-09-11 12:12:48 t 1 1 96227 449 0.00 2019-09-11 11:55:05 2019-09-11 12:15:35 t 1 1 96228 445 0.00 2019-09-11 12:08:39 2019-09-11 12:16:04 t 1 1 96231 220 0.00 2019-09-11 12:18:12 2019-09-11 12:36:19 t 1 1 96232 220 0.00 2019-09-11 12:38:37 2019-09-11 12:39:27 t 1 1 96235 220 0.00 2019-09-11 12:41:48 2019-09-11 12:42:58 t 1 1 96238 445 0.00 2019-09-11 12:34:34 2019-09-11 12:51:38 t 1 1 96239 220 0.00 2019-09-11 12:46:48 2019-09-11 12:53:59 t 1 1 96241 220 0.00 2019-09-11 12:56:54 2019-09-11 12:57:32 t 1 1 96243 220 0.00 2019-09-11 12:58:02 2019-09-11 13:06:47 t 1 1 96248 445 0.00 2019-09-11 12:52:15 2019-09-11 13:13:16 t 1 1 96252 213 0.00 2019-09-11 13:32:00 2019-09-11 13:35:15 t 1 1 96257 220 0.00 2019-09-11 13:28:08 2019-09-11 13:56:06 t 1 1 96260 213 0.00 2019-09-11 14:02:55 2019-09-11 14:07:23 t 1 1 96261 432 0.00 2019-09-11 13:53:46 2019-09-11 14:08:17 t 1 1 96262 432 0.00 2019-09-11 14:08:17 2019-09-11 14:09:45 t 1 1 96264 412 0.00 2019-09-11 09:38:29 2019-09-11 14:34:46 t 1 1 96268 449 0.00 2019-09-11 15:07:06 2019-09-11 15:08:56 t 1 1 96269 213 0.00 2019-09-11 15:21:39 2019-09-11 15:33:54 t 1 1 96270 445 0.00 2019-09-11 13:43:19 2019-09-11 15:35:06 t 1 1 96274 432 0.00 2019-09-11 15:56:54 2019-09-11 15:56:56 t 1 1 96278 213 0.00 2019-09-11 16:04:42 2019-09-11 16:11:09 t 1 1 96279 220 0.00 2019-09-11 16:10:36 2019-09-11 16:15:34 t 1 1 96280 432 0.00 2019-09-11 15:57:22 2019-09-11 16:32:12 t 1 1 96287 213 0.00 2019-09-11 17:32:44 2019-09-11 17:34:13 t 1 1 96291 445 0.00 2019-09-11 15:35:06 2019-09-11 17:46:13 t 1 1 96292 432 0.00 2019-09-11 16:57:25 2019-09-11 17:50:39 t 1 1 96293 400 0.00 2019-09-11 17:40:36 2019-09-11 17:51:28 t 1 1 96299 213 0.00 2019-09-11 17:59:57 2019-09-11 18:02:53 t 1 1 96300 432 0.00 2019-09-11 18:10:16 2019-09-11 18:10:48 t 1 1 96301 432 0.00 2019-09-11 18:16:24 2019-09-11 18:16:42 t 1 1 96303 449 0.00 2019-09-11 18:19:37 2019-09-11 18:20:18 t 1 1 96316 220 0.00 2019-09-12 15:03:19 2019-09-12 15:03:41 t 1 2 96319 220 0.00 2019-09-12 15:06:27 2019-09-12 15:06:28 t 1 2 96323 449 0.00 2019-09-12 14:52:21 2019-09-12 15:08:34 t 1 1 96324 220 0.00 2019-09-12 15:08:04 2019-09-12 15:08:36 t 1 1 96327 220 0.00 2019-09-12 15:09:40 2019-09-12 15:10:15 t 1 1 96329 220 0.00 2019-09-12 15:10:45 2019-09-12 15:11:02 t 1 1 96333 220 0.00 2019-09-12 15:20:06 2019-09-12 15:21:23 t 1 1 96340 402 0.00 2019-09-12 15:30:04 2019-09-12 15:30:05 t 1 2 96342 402 0.00 2019-09-12 15:30:42 2019-09-12 15:30:42 t 1 2 96346 402 0.00 2019-09-12 15:32:37 2019-09-12 15:32:39 t 1 2 96347 220 0.00 2019-09-12 15:42:44 2019-09-12 15:42:52 t 1 1 96352 220 0.00 2019-09-12 15:54:00 2019-09-12 15:54:07 t 1 1 96356 220 0.00 2019-09-12 16:04:29 2019-09-12 16:04:37 t 1 1 96362 432 0.00 2019-09-12 16:12:57 2019-09-12 16:14:09 t 1 1 96363 220 0.00 2019-09-12 16:15:13 2019-09-12 16:15:21 t 1 1 96365 432 0.00 2019-09-12 16:14:28 2019-09-12 16:15:52 t 1 1 96368 428 0.00 2019-09-12 16:20:38 2019-09-12 16:22:58 t 1 1 96369 453 0.00 2019-09-12 16:23:20 2019-09-12 16:23:20 t 1 2 96371 428 0.00 2019-09-12 16:22:57 2019-09-12 16:24:08 t 1 1 96372 385 0.00 2019-09-12 16:24:19 2019-09-12 16:24:21 t 1 2 96379 453 0.00 2019-09-12 16:54:34 2019-09-12 16:54:34 t 1 2 96381 220 0.00 2019-09-12 17:10:14 2019-09-12 17:10:29 t 1 1 96383 445 0.00 2019-09-12 16:34:50 2019-09-12 17:17:45 t 1 1 96385 453 0.00 2019-09-12 17:23:42 2019-09-12 17:23:43 t 1 2 96389 451 0.00 2019-09-12 17:30:50 2019-09-12 17:43:01 t 1 1 96393 402 0.00 2019-09-12 17:55:45 2019-09-12 17:55:45 t 1 2 96394 402 0.00 2019-09-12 17:56:39 2019-09-12 17:56:39 t 1 2 96396 456 0.00 2019-09-12 17:58:44 2019-09-12 18:00:30 t 1 1 96402 398 0.00 2019-09-12 18:13:30 2019-09-12 18:13:32 t 1 2 96403 398 0.00 2019-09-12 18:13:46 2019-09-12 18:13:49 t 1 2 96405 398 0.00 2019-09-12 18:13:55 2019-09-12 18:13:56 t 1 2 96407 398 0.00 2019-09-12 18:14:15 2019-09-12 18:14:16 t 1 2 96410 412 0.00 2019-09-12 16:31:58 2019-09-12 18:18:08 t 1 1 96411 445 0.00 2019-09-12 18:15:37 2019-09-12 18:20:54 t 1 1 96415 445 0.00 2019-09-12 18:24:17 2019-09-12 18:28:03 t 1 1 96417 220 0.00 2019-09-12 18:35:28 2019-09-12 18:35:37 t 1 1 96418 445 0.00 2019-09-12 18:29:17 2019-09-12 18:37:45 t 1 1 96420 445 0.00 2019-09-12 18:41:20 2019-09-12 18:45:13 t 1 1 96424 331 0.00 2019-09-12 19:06:16 2019-09-12 19:06:17 t 1 2 96430 420 0.00 2019-09-12 19:17:18 2019-09-12 19:18:01 t 1 1 96432 220 0.00 2019-09-12 19:28:00 2019-09-12 19:28:08 t 1 1 96433 220 0.00 2019-09-12 19:28:15 2019-09-12 19:28:23 t 1 1 96436 220 0.00 2019-09-12 19:38:59 2019-09-12 19:39:35 t 1 1 96437 451 0.00 2019-09-12 19:29:56 2019-09-12 19:43:57 t 1 1 96440 220 0.00 2019-09-12 19:49:46 2019-09-12 19:49:54 t 1 1 96447 445 0.00 2019-09-12 19:51:08 2019-09-12 19:54:38 t 1 1 96452 392 0.00 2019-09-12 19:59:51 2019-09-12 19:59:52 t 1 2 96454 220 0.00 2019-09-12 20:01:15 2019-09-12 20:01:23 t 1 1 96455 445 0.00 2019-09-12 20:01:24 2019-09-12 20:02:15 t 1 1 96462 351 0.00 2019-09-12 20:12:48 2019-09-12 20:12:48 t 1 2 96466 220 0.00 2019-09-12 20:23:00 2019-09-12 20:23:08 t 1 1 96467 220 0.00 2019-09-12 20:23:15 2019-09-12 20:23:24 t 1 1 96471 220 0.00 2019-09-12 20:34:38 2019-09-12 20:34:46 t 1 1 96472 445 0.00 2019-09-12 20:06:29 2019-09-12 20:38:04 t 1 1 96475 445 0.00 2019-09-12 20:38:04 2019-09-12 20:46:56 t 1 1 96476 395 0.00 2019-09-12 20:15:33 2019-09-12 20:48:56 t 1 2 96479 220 0.00 2019-09-12 20:55:38 2019-09-12 20:56:12 t 1 1 96483 445 0.00 2019-09-12 20:53:14 2019-09-12 21:02:22 t 1 1 96485 220 0.00 2019-09-12 21:06:07 2019-09-12 21:06:15 t 1 1 96487 432 0.00 2019-09-12 21:10:59 2019-09-12 21:16:36 t 1 1 96489 400 0.00 2019-09-12 21:17:42 2019-09-12 21:19:06 t 1 1 96492 432 0.00 2019-09-12 21:22:56 2019-09-12 21:25:04 t 1 1 96501 432 0.00 2019-09-12 21:34:19 2019-09-12 21:39:42 t 1 1 96412 445 0.00 2019-09-12 18:21:18 2019-09-12 18:22:23 t 1 1 96414 220 0.00 2019-09-12 18:24:43 2019-09-12 18:24:52 t 1 1 96416 220 0.00 2019-09-12 18:35:13 2019-09-12 18:35:21 t 1 1 96419 445 0.00 2019-09-12 18:38:25 2019-09-12 18:39:28 t 1 1 96422 445 0.00 2019-09-12 18:45:15 2019-09-12 18:48:16 t 1 1 96423 220 0.00 2019-09-12 18:56:27 2019-09-12 18:57:02 t 1 1 96425 220 0.00 2019-09-12 19:06:57 2019-09-12 19:07:33 t 1 1 96426 400 0.00 2019-09-12 19:07:28 2019-09-12 19:08:26 t 1 1 96428 400 0.00 2019-09-12 19:08:26 2019-09-12 19:10:14 t 1 1 96431 220 0.00 2019-09-12 19:17:28 2019-09-12 19:18:02 t 1 1 96435 445 0.00 2019-09-12 18:48:16 2019-09-12 19:32:36 t 1 1 96438 445 0.00 2019-09-12 19:32:43 2019-09-12 19:48:52 t 1 1 96439 220 0.00 2019-09-12 19:49:31 2019-09-12 19:49:39 t 1 1 96442 220 0.00 2019-09-12 19:50:16 2019-09-12 19:50:24 t 1 1 96443 220 0.00 2019-09-12 19:50:30 2019-09-12 19:50:31 t 1 1 96445 220 0.00 2019-09-12 19:50:46 2019-09-12 19:50:54 t 1 1 96446 445 0.00 2019-09-12 19:50:16 2019-09-12 19:51:08 t 1 1 96448 428 0.00 2019-09-12 19:28:55 2019-09-12 19:54:56 t 1 1 96451 400 0.00 2019-09-12 19:57:52 2019-09-12 19:59:22 t 1 1 96460 220 0.00 2019-09-12 20:11:59 2019-09-12 20:12:08 t 1 1 96461 351 0.00 2019-09-12 20:12:40 2019-09-12 20:12:40 t 1 2 96465 220 0.00 2019-09-12 20:22:44 2019-09-12 20:22:52 t 1 1 96469 220 0.00 2019-09-12 20:23:47 2019-09-12 20:23:55 t 1 1 96470 220 0.00 2019-09-12 20:34:16 2019-09-12 20:34:31 t 1 1 96477 445 0.00 2019-09-12 20:46:56 2019-09-12 20:53:14 t 1 1 96478 220 0.00 2019-09-12 20:45:44 2019-09-12 20:55:38 t 1 1 96481 402 0.00 2019-09-12 21:00:43 2019-09-12 21:00:43 t 1 2 96482 454 0.00 2019-09-12 21:02:10 2019-09-12 21:02:11 t 1 2 96484 220 0.00 2019-09-12 20:56:12 2019-09-12 21:06:07 t 1 1 96486 220 0.00 2019-09-12 21:06:42 2019-09-12 21:10:59 t 1 1 96488 220 0.00 2019-09-12 21:16:36 2019-09-12 21:16:44 t 1 1 96495 451 0.00 2019-09-12 21:12:28 2019-09-12 21:27:25 t 1 1 96498 220 0.00 2019-09-12 21:29:59 2019-09-12 21:37:50 t 1 1 96500 412 0.00 2019-09-12 18:18:08 2019-09-12 21:39:18 t 1 1 96503 456 0.00 2019-09-12 21:35:48 2019-09-12 21:46:48 t 1 1 96505 220 0.00 2019-09-12 21:48:24 2019-09-12 21:48:56 t 1 1 96507 420 0.00 2019-09-12 21:38:16 2019-09-12 21:50:52 t 1 1 96508 451 0.00 2019-09-12 21:44:51 2019-09-12 21:52:25 t 1 1 96512 220 0.00 2019-09-12 21:58:54 2019-09-12 21:59:02 t 1 1 96514 451 0.00 2019-09-12 21:58:11 2019-09-12 22:09:19 t 1 1 96515 220 0.00 2019-09-12 21:59:27 2019-09-12 22:09:24 t 1 1 96519 327 0.00 2019-09-12 22:05:11 2019-09-12 22:20:35 t 1 2 96523 220 0.00 2019-09-12 21:50:39 2019-09-12 22:30:46 t 1 2 96524 451 0.00 2019-09-12 22:21:58 2019-09-12 22:31:22 t 1 1 96525 445 0.00 2019-09-12 22:04:26 2019-09-12 22:37:48 t 1 1 96529 220 0.00 2019-09-12 22:40:52 2019-09-12 22:40:59 t 1 1 96534 220 0.00 2019-09-12 22:51:56 2019-09-12 22:54:42 t 1 1 96536 445 0.00 2019-09-12 22:37:55 2019-09-12 22:54:56 t 1 1 96542 432 0.00 2019-09-12 22:41:31 2019-09-12 23:07:22 t 1 1 96553 220 0.00 2019-09-12 19:03:58 2019-09-12 23:39:08 t 1 2 96557 453 0.00 2019-09-12 23:46:07 2019-09-12 23:46:08 t 1 2 96558 461 0.00 2019-09-12 23:49:06 2019-09-12 23:49:06 t 1 2 96559 451 0.00 2019-09-12 23:41:31 2019-09-12 23:49:23 t 1 1 96562 220 0.00 2019-09-12 23:38:54 2019-09-12 23:51:12 t 1 1 96564 458 0.00 2019-09-12 23:53:12 2019-09-12 23:53:13 t 1 2 96565 385 0.00 2019-09-12 23:53:29 2019-09-12 23:53:29 t 1 2 96567 220 0.00 2019-09-12 23:53:31 2019-09-13 00:03:32 t 1 1 96573 461 0.00 2019-09-13 00:03:48 2019-09-13 00:23:23 t 1 2 96574 220 0.00 2019-09-13 00:16:17 2019-09-13 00:24:46 t 1 1 96576 379 0.00 2019-09-13 00:29:06 2019-09-13 00:29:07 t 1 2 96577 379 0.00 2019-09-13 00:29:36 2019-09-13 00:29:36 t 1 2 96582 220 0.00 2019-09-13 00:37:38 2019-09-13 00:45:44 t 1 1 96584 220 0.00 2019-09-13 00:46:01 2019-09-13 00:46:09 t 1 1 96585 220 0.00 2019-09-13 00:46:16 2019-09-13 00:46:23 t 1 1 96587 395 0.00 2019-09-12 23:34:58 2019-09-13 00:50:31 t 1 2 96592 220 0.00 2019-09-13 01:07:28 2019-09-13 01:07:35 t 1 1 96595 412 0.00 2019-09-12 23:54:19 2019-09-13 01:08:34 t 1 1 96596 411 0.00 2019-09-13 00:05:12 2019-09-13 01:13:38 t 1 1 96598 220 0.00 2019-09-13 01:18:27 2019-09-13 01:18:37 t 1 1 96599 288 0.00 2019-09-13 01:21:54 2019-09-13 01:21:54 t 1 2 96605 220 0.00 2019-09-13 01:39:55 2019-09-13 01:40:03 t 1 1 96607 220 0.00 2019-09-13 01:40:26 2019-09-13 01:40:33 t 1 1 96608 220 0.00 2019-09-13 01:50:54 2019-09-13 01:51:02 t 1 1 96613 400 0.00 2019-09-13 01:58:41 2019-09-13 02:11:50 t 1 1 96614 220 0.00 2019-09-13 02:12:07 2019-09-13 02:12:15 t 1 1 96617 220 0.00 2019-09-13 02:12:53 2019-09-13 02:13:01 t 1 1 96618 220 0.00 2019-09-13 02:23:22 2019-09-13 02:23:30 t 1 1 96625 220 0.00 2019-09-13 02:46:03 2019-09-13 02:46:13 t 1 1 96626 220 0.00 2019-09-13 02:46:22 2019-09-13 02:47:04 t 1 1 96627 220 0.00 2019-09-13 02:47:14 2019-09-13 02:47:15 t 1 1 96633 412 0.00 2019-09-13 01:08:34 2019-09-13 03:11:18 t 1 1 96634 220 0.00 2019-09-13 03:15:02 2019-09-13 03:15:14 t 1 1 96636 385 0.00 2019-09-12 23:54:43 2019-09-13 03:35:12 t 1 2 96639 220 0.00 2019-09-13 03:46:42 2019-09-13 03:46:49 t 1 1 96643 220 0.00 2019-09-13 04:07:59 2019-09-13 04:08:07 t 1 1 96646 412 0.00 2019-09-13 04:17:38 2019-09-13 04:28:31 t 1 1 96647 220 0.00 2019-09-13 04:28:58 2019-09-13 04:29:06 t 1 1 96650 220 0.00 2019-09-13 04:41:05 2019-09-13 04:41:13 t 1 1 96655 412 0.00 2019-09-13 04:55:17 2019-09-13 05:00:51 t 1 1 96659 322 0.00 2019-09-13 05:12:43 2019-09-13 05:12:44 t 1 2 96663 322 0.00 2019-09-13 05:13:31 2019-09-13 05:13:31 t 1 2 96666 322 0.00 2019-09-13 05:15:27 2019-09-13 05:15:27 t 1 2 96668 220 0.00 2019-09-13 05:23:50 2019-09-13 05:23:58 t 1 1 96669 220 0.00 2019-09-13 05:24:05 2019-09-13 05:24:14 t 1 1 96675 220 0.00 2019-09-13 06:06:30 2019-09-13 06:06:38 t 1 1 96680 220 0.00 2019-09-13 06:37:57 2019-09-13 06:38:04 t 1 1 96681 220 0.00 2019-09-13 06:38:11 2019-09-13 06:38:19 t 1 1 96684 420 0.00 2019-09-13 06:32:05 2019-09-13 06:49:27 t 1 1 96685 220 0.00 2019-09-13 06:49:28 2019-09-13 06:49:29 t 1 1 96687 420 0.00 2019-09-13 06:49:27 2019-09-13 07:02:07 t 1 1 96688 220 0.00 2019-09-13 07:07:42 2019-09-13 07:07:53 t 1 1 96689 220 0.00 2019-09-13 07:18:10 2019-09-13 07:18:45 t 1 1 96693 220 0.00 2019-09-13 07:29:27 2019-09-13 07:29:35 t 1 1 96695 220 0.00 2019-09-13 07:50:24 2019-09-13 07:50:32 t 1 1 96701 220 0.00 2019-09-13 08:22:41 2019-09-13 08:22:48 t 1 1 96704 220 0.00 2019-09-13 08:33:09 2019-09-13 08:33:16 t 1 1 96705 220 0.00 2019-09-13 08:39:10 2019-09-13 08:43:38 t 1 1 96413 451 0.00 2019-09-12 18:16:13 2019-09-12 18:24:29 t 1 1 96421 220 0.00 2019-09-12 18:45:58 2019-09-12 18:46:06 t 1 1 96427 247 0.00 2019-09-12 19:05:55 2019-09-12 19:08:46 t 1 2 96429 294 0.00 2019-09-12 18:59:27 2019-09-12 19:17:50 t 1 2 96434 220 0.00 2019-09-12 19:28:31 2019-09-12 19:28:38 t 1 1 96441 220 0.00 2019-09-12 19:50:02 2019-09-12 19:50:09 t 1 1 96444 220 0.00 2019-09-12 19:50:31 2019-09-12 19:50:38 t 1 1 96449 220 0.00 2019-09-12 19:51:08 2019-09-12 19:57:33 t 1 1 96450 445 0.00 2019-09-12 19:54:56 2019-09-12 19:58:39 t 1 1 96453 220 0.00 2019-09-12 19:57:33 2019-09-12 20:01:16 t 1 1 96456 395 0.00 2019-09-12 20:03:06 2019-09-12 20:04:36 t 1 2 96457 220 0.00 2019-09-12 20:02:17 2019-09-12 20:05:26 t 1 1 96458 220 0.00 2019-09-12 20:07:06 2019-09-12 20:10:45 t 1 1 96459 220 0.00 2019-09-12 20:11:44 2019-09-12 20:11:52 t 1 1 96463 351 0.00 2019-09-12 20:13:08 2019-09-12 20:13:09 t 1 2 96464 220 0.00 2019-09-12 20:22:29 2019-09-12 20:22:37 t 1 1 96468 220 0.00 2019-09-12 20:23:31 2019-09-12 20:23:39 t 1 1 96473 220 0.00 2019-09-12 20:44:34 2019-09-12 20:45:09 t 1 1 96474 220 0.00 2019-09-12 20:45:09 2019-09-12 20:45:24 t 1 1 96480 402 0.00 2019-09-12 21:00:35 2019-09-12 21:00:36 t 1 2 96490 220 0.00 2019-09-12 21:17:35 2019-09-12 21:21:58 t 1 1 96491 432 0.00 2019-09-12 21:22:23 2019-09-12 21:22:37 t 1 1 96493 432 0.00 2019-09-12 21:25:25 2019-09-12 21:26:57 t 1 1 96494 220 0.00 2019-09-12 21:27:05 2019-09-12 21:27:14 t 1 1 96496 220 0.00 2019-09-12 21:27:21 2019-09-12 21:27:29 t 1 1 96497 451 0.00 2019-09-12 21:31:13 2019-09-12 21:34:33 t 1 1 96499 220 0.00 2019-09-12 21:37:50 2019-09-12 21:38:05 t 1 1 96502 451 0.00 2019-09-12 21:34:33 2019-09-12 21:44:51 t 1 1 96504 220 0.00 2019-09-12 21:38:22 2019-09-12 21:48:25 t 1 1 96506 220 0.00 2019-09-12 21:02:22 2019-09-12 21:48:59 t 1 1 96509 420 0.00 2019-09-12 21:53:19 2019-09-12 21:55:45 t 1 1 96510 451 0.00 2019-09-12 21:52:25 2019-09-12 21:58:11 t 1 1 96516 220 0.00 2019-09-12 22:09:23 2019-09-12 22:09:32 t 1 1 96517 220 0.00 2019-09-12 22:09:57 2019-09-12 22:19:53 t 1 1 96521 220 0.00 2019-09-12 22:20:25 2019-09-12 22:30:23 t 1 1 96526 451 0.00 2019-09-12 22:31:22 2019-09-12 22:39:27 t 1 1 96530 456 0.00 2019-09-12 22:40:17 2019-09-12 22:50:16 t 1 1 96531 220 0.00 2019-09-12 22:41:27 2019-09-12 22:51:21 t 1 1 96535 220 0.00 2019-09-12 22:54:42 2019-09-12 22:54:54 t 1 1 96540 220 0.00 2019-09-12 23:05:27 2019-09-12 23:05:35 t 1 1 96543 220 0.00 2019-09-12 23:08:35 2019-09-12 23:15:56 t 1 1 96547 220 0.00 2019-09-12 23:17:49 2019-09-12 23:26:47 t 1 1 96549 220 0.00 2019-09-12 23:27:03 2019-09-12 23:27:11 t 1 1 96552 220 0.00 2019-09-12 23:38:44 2019-09-12 23:38:45 t 1 1 96556 412 0.00 2019-09-12 21:39:18 2019-09-12 23:43:18 t 1 1 96560 461 0.00 2019-09-12 23:49:21 2019-09-12 23:49:26 t 1 2 96561 220 0.00 2019-09-12 23:42:37 2019-09-12 23:50:45 t 1 1 96563 445 0.00 2019-09-12 23:50:45 2019-09-12 23:52:58 t 1 1 96568 220 0.00 2019-09-13 00:03:32 2019-09-13 00:03:46 t 1 1 96569 411 0.00 2019-09-13 00:02:13 2019-09-13 00:05:12 t 1 1 96570 220 0.00 2019-09-13 00:05:50 2019-09-13 00:14:02 t 1 1 96575 220 0.00 2019-09-13 00:24:46 2019-09-13 00:24:55 t 1 1 96578 220 0.00 2019-09-13 00:25:25 2019-09-13 00:35:16 t 1 1 96580 346 0.00 2019-09-13 00:38:08 2019-09-13 00:38:08 f 1 2 96583 220 0.00 2019-09-13 00:45:44 2019-09-13 00:45:54 t 1 1 96588 400 0.00 2019-09-13 00:44:16 2019-09-13 00:55:40 t 1 1 96589 220 0.00 2019-09-13 00:47:18 2019-09-13 00:56:59 t 1 1 96594 220 0.00 2019-09-13 01:07:58 2019-09-13 01:08:10 t 1 1 96600 288 0.00 2019-09-13 01:22:04 2019-09-13 01:23:37 t 1 1 96604 220 0.00 2019-09-13 01:29:26 2019-09-13 01:29:35 t 1 1 96606 220 0.00 2019-09-13 01:40:10 2019-09-13 01:40:18 t 1 1 96609 400 0.00 2019-09-13 00:58:42 2019-09-13 01:56:10 t 1 1 96611 220 0.00 2019-09-13 02:01:38 2019-09-13 02:01:46 t 1 1 96616 220 0.00 2019-09-13 02:12:38 2019-09-13 02:12:46 t 1 1 96620 220 0.00 2019-09-13 02:23:46 2019-09-13 02:23:53 t 1 1 96622 220 0.00 2019-09-13 02:35:00 2019-09-13 02:35:08 t 1 1 96624 220 0.00 2019-09-13 02:35:30 2019-09-13 02:35:32 t 1 1 96628 456 0.00 2019-09-13 02:30:43 2019-09-13 02:47:46 t 1 1 96632 220 0.00 2019-09-13 03:08:23 2019-09-13 03:08:31 t 1 1 96635 220 0.00 2019-09-13 03:25:31 2019-09-13 03:25:38 t 1 1 96637 220 0.00 2019-09-13 03:35:59 2019-09-13 03:36:06 t 1 1 96638 220 0.00 2019-09-13 03:36:13 2019-09-13 03:36:22 t 1 1 96640 412 0.00 2019-09-13 03:11:18 2019-09-13 03:56:17 t 1 1 96642 220 0.00 2019-09-13 03:57:30 2019-09-13 03:57:38 t 1 1 96644 412 0.00 2019-09-13 03:56:17 2019-09-13 04:17:38 t 1 1 96649 412 0.00 2019-09-13 04:28:31 2019-09-13 04:39:35 t 1 1 96651 412 0.00 2019-09-13 04:39:35 2019-09-13 04:49:08 t 1 1 96653 220 0.00 2019-09-13 04:51:53 2019-09-13 04:52:01 t 1 1 96654 412 0.00 2019-09-13 04:49:08 2019-09-13 04:55:17 t 1 1 96657 220 0.00 2019-09-13 05:02:37 2019-09-13 05:02:45 t 1 1 96660 432 0.00 2019-09-13 05:03:09 2019-09-13 05:12:51 t 1 1 96661 220 0.00 2019-09-13 05:13:06 2019-09-13 05:13:13 t 1 1 96662 220 0.00 2019-09-13 05:13:20 2019-09-13 05:13:29 t 1 1 96671 220 0.00 2019-09-13 05:45:03 2019-09-13 05:45:10 t 1 1 96673 220 0.00 2019-09-13 05:55:47 2019-09-13 05:55:55 t 1 1 96674 220 0.00 2019-09-13 06:06:16 2019-09-13 06:06:23 t 1 1 96676 412 0.00 2019-09-13 05:09:54 2019-09-13 06:14:58 t 1 1 96677 220 0.00 2019-09-13 06:16:59 2019-09-13 06:17:07 t 1 1 96678 220 0.00 2019-09-13 06:27:28 2019-09-13 06:27:36 t 1 1 96691 220 0.00 2019-09-13 07:28:55 2019-09-13 07:29:03 t 1 1 96692 220 0.00 2019-09-13 07:29:11 2019-09-13 07:29:19 t 1 1 96700 220 0.00 2019-09-13 08:22:25 2019-09-13 08:22:34 t 1 1 96703 212 0.00 2019-09-13 08:28:36 2019-09-13 08:28:37 t 1 2 96706 220 0.00 2019-09-13 08:43:38 2019-09-13 08:43:46 t 1 1 96710 220 0.00 2019-09-13 08:54:38 2019-09-13 08:54:46 t 1 1 96711 402 0.00 2019-09-13 08:59:59 2019-09-13 09:00:00 t 1 2 96715 220 0.00 2019-09-13 09:05:42 2019-09-13 09:15:35 t 1 1 96723 220 0.00 2019-09-13 09:37:11 2019-09-13 09:37:19 t 1 1 96726 456 0.00 2019-09-13 09:38:00 2019-09-13 09:45:58 t 1 1 96728 220 0.00 2019-09-13 09:47:40 2019-09-13 09:47:48 t 1 1 96752 400 0.00 2019-09-13 10:31:30 2019-09-13 10:33:08 t 1 1 96755 327 0.00 2019-09-13 10:50:15 2019-09-13 10:50:25 t 1 1 96758 220 0.00 2019-09-13 10:52:05 2019-09-13 10:52:05 t 1 1 96759 327 0.00 2019-09-13 10:52:20 2019-09-13 10:53:01 t 1 1 96763 461 0.00 2019-09-13 10:20:30 2019-09-13 10:58:43 t 1 2 96764 327 0.00 2019-09-13 10:59:23 2019-09-13 10:59:56 t 1 1 96769 327 0.00 2019-09-13 11:00:27 2019-09-13 11:02:21 t 1 1 96511 220 0.00 2019-09-12 21:48:56 2019-09-12 21:58:54 t 1 1 96513 432 0.00 2019-09-12 21:43:16 2019-09-12 22:01:09 t 1 1 96518 220 0.00 2019-09-12 22:19:52 2019-09-12 22:20:25 t 1 1 96520 451 0.00 2019-09-12 22:09:19 2019-09-12 22:21:58 t 1 1 96522 220 0.00 2019-09-12 22:30:23 2019-09-12 22:30:30 t 1 1 96527 220 0.00 2019-09-12 22:31:16 2019-09-12 22:40:36 t 1 1 96528 220 0.00 2019-09-12 22:40:40 2019-09-12 22:40:52 t 1 1 96532 220 0.00 2019-09-12 22:51:21 2019-09-12 22:51:29 t 1 1 96533 400 0.00 2019-09-12 22:49:33 2019-09-12 22:52:46 t 1 1 96537 247 0.00 2019-09-12 23:01:58 2019-09-12 23:03:53 t 1 2 96538 220 0.00 2019-09-12 22:55:17 2019-09-12 23:05:11 t 1 1 96539 220 0.00 2019-09-12 23:05:11 2019-09-12 23:05:19 t 1 1 96541 445 0.00 2019-09-12 22:54:56 2019-09-12 23:06:08 t 1 1 96544 220 0.00 2019-09-12 23:15:56 2019-09-12 23:16:11 t 1 1 96545 220 0.00 2019-09-12 23:16:18 2019-09-12 23:16:26 t 1 1 96546 392 0.00 2019-09-12 23:19:27 2019-09-12 23:19:27 t 1 2 96548 220 0.00 2019-09-12 23:26:47 2019-09-12 23:26:56 t 1 1 96550 445 0.00 2019-09-12 23:06:11 2019-09-12 23:38:06 t 1 1 96551 220 0.00 2019-09-12 23:38:06 2019-09-12 23:38:34 t 1 1 96554 220 0.00 2019-09-12 23:27:27 2019-09-12 23:41:55 t 1 1 96555 220 0.00 2019-09-12 23:41:55 2019-09-12 23:42:37 t 1 1 96566 220 0.00 2019-09-12 23:52:58 2019-09-12 23:53:31 t 1 1 96571 220 0.00 2019-09-13 00:14:02 2019-09-13 00:14:10 t 1 1 96572 220 0.00 2019-09-13 00:14:18 2019-09-13 00:14:25 t 1 1 96579 220 0.00 2019-09-13 00:35:16 2019-09-13 00:35:23 t 1 1 96581 400 0.00 2019-09-12 23:39:33 2019-09-13 00:44:47 t 1 1 96586 220 0.00 2019-09-13 00:46:31 2019-09-13 00:46:38 t 1 1 96590 220 0.00 2019-09-13 00:56:59 2019-09-13 00:57:07 t 1 1 96591 220 0.00 2019-09-13 00:57:59 2019-09-13 01:07:28 t 1 1 96593 220 0.00 2019-09-13 01:07:43 2019-09-13 01:07:51 t 1 1 96597 220 0.00 2019-09-13 01:09:51 2019-09-13 01:18:27 t 1 1 96601 220 0.00 2019-09-13 01:26:31 2019-09-13 01:27:32 t 1 1 96602 220 0.00 2019-09-13 01:28:55 2019-09-13 01:29:03 t 1 1 96603 220 0.00 2019-09-13 01:29:10 2019-09-13 01:29:19 t 1 1 96610 220 0.00 2019-09-13 02:01:23 2019-09-13 02:01:31 t 1 1 96612 456 0.00 2019-09-13 01:44:14 2019-09-13 02:02:08 t 1 1 96615 220 0.00 2019-09-13 02:12:23 2019-09-13 02:12:30 t 1 1 96619 220 0.00 2019-09-13 02:23:38 2019-09-13 02:23:38 t 1 1 96621 220 0.00 2019-09-13 02:34:14 2019-09-13 02:34:21 t 1 1 96623 220 0.00 2019-09-13 02:35:15 2019-09-13 02:35:23 t 1 1 96629 456 0.00 2019-09-13 02:47:46 2019-09-13 02:49:26 t 1 1 96630 220 0.00 2019-09-13 02:57:36 2019-09-13 02:57:45 t 1 1 96631 220 0.00 2019-09-13 03:08:06 2019-09-13 03:08:15 t 1 1 96641 220 0.00 2019-09-13 03:57:10 2019-09-13 03:57:18 t 1 1 96645 220 0.00 2019-09-13 04:18:28 2019-09-13 04:18:43 t 1 1 96648 220 0.00 2019-09-13 04:30:36 2019-09-13 04:30:47 t 1 1 96652 220 0.00 2019-09-13 04:51:33 2019-09-13 04:51:43 t 1 1 96656 220 0.00 2019-09-13 05:02:22 2019-09-13 05:02:29 t 1 1 96658 412 0.00 2019-09-13 05:00:51 2019-09-13 05:09:54 t 1 1 96664 322 0.00 2019-09-13 05:14:00 2019-09-13 05:14:00 t 1 2 96665 322 0.00 2019-09-13 05:14:35 2019-09-13 05:14:35 t 1 2 96667 432 0.00 2019-09-13 05:12:51 2019-09-13 05:19:35 t 1 1 96670 220 0.00 2019-09-13 05:34:35 2019-09-13 05:34:46 t 1 1 96672 220 0.00 2019-09-13 05:45:18 2019-09-13 05:45:26 t 1 1 96679 288 0.00 2019-09-13 06:28:18 2019-09-13 06:29:40 t 1 1 96682 220 0.00 2019-09-13 06:38:26 2019-09-13 06:38:35 t 1 1 96683 220 0.00 2019-09-13 06:49:08 2019-09-13 06:49:18 t 1 1 96686 220 0.00 2019-09-13 06:59:50 2019-09-13 06:59:58 t 1 1 96690 220 0.00 2019-09-13 07:28:39 2019-09-13 07:28:48 t 1 1 96694 220 0.00 2019-09-13 07:39:56 2019-09-13 07:40:03 t 1 1 96696 220 0.00 2019-09-13 08:00:53 2019-09-13 08:00:58 t 1 1 96697 220 0.00 2019-09-13 08:11:14 2019-09-13 08:11:35 t 1 1 96698 220 0.00 2019-09-13 08:22:01 2019-09-13 08:22:02 t 1 1 96699 220 0.00 2019-09-13 08:22:10 2019-09-13 08:22:18 t 1 1 96702 247 0.00 2019-09-13 08:18:35 2019-09-13 08:28:18 t 1 2 96716 220 0.00 2019-09-13 09:15:35 2019-09-13 09:15:42 t 1 1 96717 220 0.00 2019-09-13 09:15:49 2019-09-13 09:15:57 t 1 1 96718 220 0.00 2019-09-13 09:16:04 2019-09-13 09:16:08 t 1 1 96719 220 0.00 2019-09-13 09:16:08 2019-09-13 09:26:32 t 1 1 96721 220 0.00 2019-09-13 09:26:47 2019-09-13 09:26:48 t 1 1 96722 220 0.00 2019-09-13 09:27:02 2019-09-13 09:37:11 t 1 1 96724 420 0.00 2019-09-13 09:35:18 2019-09-13 09:38:30 t 1 1 96725 451 0.00 2019-09-13 09:30:44 2019-09-13 09:41:48 t 1 1 96730 220 0.00 2019-09-13 09:48:05 2019-09-13 09:48:12 t 1 1 96732 220 0.00 2019-09-13 09:48:14 2019-09-13 09:48:20 t 1 1 96736 400 0.00 2019-09-13 09:15:47 2019-09-13 09:50:48 t 1 1 96737 420 0.00 2019-09-13 09:48:14 2019-09-13 09:57:39 t 1 1 96738 451 0.00 2019-09-13 09:50:22 2019-09-13 09:58:16 t 1 1 96739 220 0.00 2019-09-13 09:59:02 2019-09-13 09:59:12 t 1 1 96740 220 0.00 2019-09-13 09:59:22 2019-09-13 09:59:23 t 1 1 96742 395 0.00 2019-09-13 09:34:21 2019-09-13 10:08:21 t 1 2 96743 220 0.00 2019-09-13 10:09:47 2019-09-13 10:09:56 t 1 1 96745 220 0.00 2019-09-13 09:48:55 2019-09-13 10:14:20 t 1 1 96746 327 0.00 2019-09-13 09:58:25 2019-09-13 10:16:02 t 1 1 96747 220 0.00 2019-09-13 10:20:19 2019-09-13 10:20:21 t 1 1 96748 451 0.00 2019-09-13 10:11:35 2019-09-13 10:21:45 t 1 1 96749 327 0.00 2019-09-13 10:16:02 2019-09-13 10:25:39 t 1 1 96750 220 0.00 2019-09-13 10:30:45 2019-09-13 10:30:55 t 1 1 96753 220 0.00 2019-09-13 10:41:19 2019-09-13 10:41:20 t 1 1 96754 327 0.00 2019-09-13 10:48:50 2019-09-13 10:49:30 t 1 1 96757 220 0.00 2019-09-13 10:51:44 2019-09-13 10:51:55 t 1 1 96762 420 0.00 2019-09-13 10:54:27 2019-09-13 10:56:26 t 1 1 96766 327 0.00 2019-09-13 11:00:11 2019-09-13 11:00:12 t 1 1 96768 327 0.00 2019-09-13 11:01:38 2019-09-13 11:02:06 t 1 1 96771 400 0.00 2019-09-13 11:01:03 2019-09-13 11:03:31 t 1 1 96776 220 0.00 2019-09-13 11:12:57 2019-09-13 11:13:05 t 1 1 96780 400 0.00 2019-09-13 11:18:02 2019-09-13 11:20:09 t 1 1 96782 220 0.00 2019-09-13 11:23:26 2019-09-13 11:23:34 t 1 1 96789 432 0.00 2019-09-13 11:41:37 2019-09-13 11:43:07 t 1 1 96790 445 0.00 2019-09-13 11:45:21 2019-09-13 11:47:22 t 1 1 96793 220 0.00 2019-09-13 11:57:51 2019-09-13 11:58:00 t 1 1 96794 327 0.00 2019-09-13 11:26:09 2019-09-13 11:58:38 t 1 1 96798 432 0.00 2019-09-13 11:44:24 2019-09-13 12:11:09 t 1 1 96800 432 0.00 2019-09-13 12:11:09 2019-09-13 12:12:41 t 1 1 96802 432 0.00 2019-09-13 12:13:32 2019-09-13 12:14:12 t 1 1 96805 220 0.00 2019-09-13 12:14:52 2019-09-13 12:14:53 t 1 1 96806 220 0.00 2019-09-13 12:03:24 2019-09-13 12:15:52 t 1 1 96707 220 0.00 2019-09-13 08:43:53 2019-09-13 08:44:01 t 1 1 96708 220 0.00 2019-09-13 08:44:09 2019-09-13 08:44:13 t 1 1 96709 220 0.00 2019-09-13 08:44:13 2019-09-13 08:54:38 t 1 1 96712 220 0.00 2019-09-13 08:55:13 2019-09-13 09:05:07 t 1 1 96713 220 0.00 2019-09-13 09:05:06 2019-09-13 09:05:14 t 1 1 96714 294 0.00 2019-09-13 01:01:38 2019-09-13 09:15:02 t 1 2 96720 220 0.00 2019-09-13 09:26:31 2019-09-13 09:26:40 t 1 1 96727 220 0.00 2019-09-13 09:37:44 2019-09-13 09:47:41 t 1 1 96729 220 0.00 2019-09-13 09:47:56 2019-09-13 09:47:57 t 1 1 96731 420 0.00 2019-09-13 09:39:36 2019-09-13 09:48:14 t 1 1 96733 220 0.00 2019-09-13 09:48:19 2019-09-13 09:48:27 t 1 1 96734 456 0.00 2019-09-13 09:45:58 2019-09-13 09:49:43 t 1 1 96735 451 0.00 2019-09-13 09:44:13 2019-09-13 09:50:22 t 1 1 96741 420 0.00 2019-09-13 09:57:39 2019-09-13 10:04:45 t 1 1 96744 451 0.00 2019-09-13 10:05:59 2019-09-13 10:11:35 t 1 1 96751 327 0.00 2019-09-13 10:29:13 2019-09-13 10:31:01 t 1 1 96756 327 0.00 2019-09-13 10:50:01 2019-09-13 10:51:21 t 1 1 96760 451 0.00 2019-09-13 10:45:31 2019-09-13 10:54:06 t 1 1 96761 420 0.00 2019-09-13 10:04:45 2019-09-13 10:54:24 t 1 1 96765 327 0.00 2019-09-13 11:00:03 2019-09-13 11:00:04 t 1 1 96767 327 0.00 2019-09-13 11:00:19 2019-09-13 11:00:20 t 1 1 96770 220 0.00 2019-09-13 11:02:27 2019-09-13 11:02:36 t 1 1 96772 451 0.00 2019-09-13 10:54:06 2019-09-13 11:03:51 t 1 1 96773 327 0.00 2019-09-13 11:05:12 2019-09-13 11:06:10 t 1 1 96778 327 0.00 2019-09-13 11:18:49 2019-09-13 11:19:19 t 1 1 96783 451 0.00 2019-09-13 11:13:57 2019-09-13 11:29:36 t 1 1 96784 432 0.00 2019-09-13 11:31:01 2019-09-13 11:31:26 t 1 1 96786 432 0.00 2019-09-13 11:35:48 2019-09-13 11:36:49 t 1 1 96788 385 0.00 2019-09-13 09:45:04 2019-09-13 11:37:27 t 1 2 96799 412 0.00 2019-09-13 06:14:58 2019-09-13 12:12:20 t 1 1 96801 451 0.00 2019-09-13 11:58:44 2019-09-13 12:12:56 t 1 1 96804 220 0.00 2019-09-13 12:14:33 2019-09-13 12:14:42 t 1 1 96807 220 0.00 2019-09-13 12:16:35 2019-09-13 12:17:06 t 1 1 96808 432 0.00 2019-09-13 12:17:48 2019-09-13 12:18:03 t 1 1 96812 220 0.00 2019-09-13 12:16:17 2019-09-13 12:25:40 t 1 2 96815 220 0.00 2019-09-13 12:27:05 2019-09-13 12:27:13 t 1 1 96816 220 0.00 2019-09-13 12:27:21 2019-09-13 12:27:29 t 1 1 96819 220 0.00 2019-09-13 12:28:07 2019-09-13 12:28:08 t 1 1 96820 220 0.00 2019-09-13 12:28:16 2019-09-13 12:28:16 t 1 1 96827 456 0.00 2019-09-13 12:34:01 2019-09-13 12:39:38 t 1 1 96828 432 0.00 2019-09-13 12:41:23 2019-09-13 12:42:00 t 1 1 96831 432 0.00 2019-09-13 12:47:19 2019-09-13 12:47:53 t 1 1 96832 220 0.00 2019-09-13 12:41:12 2019-09-13 12:49:08 t 1 1 96841 220 0.00 2019-09-13 13:00:08 2019-09-13 13:00:17 t 1 1 96844 220 0.00 2019-09-13 13:00:54 2019-09-13 13:01:02 t 1 1 96845 220 0.00 2019-09-13 13:01:09 2019-09-13 13:01:17 t 1 1 96851 327 0.00 2019-09-13 13:08:22 2019-09-13 13:09:10 t 1 1 96852 220 0.00 2019-09-13 13:11:52 2019-09-13 13:12:00 t 1 1 96855 327 0.00 2019-09-13 13:15:48 2019-09-13 13:21:10 t 1 1 96858 400 0.00 2019-09-13 13:16:58 2019-09-13 13:25:57 t 1 1 96859 327 0.00 2019-09-13 13:25:24 2019-09-13 13:27:22 t 1 1 96860 432 0.00 2019-09-13 12:54:32 2019-09-13 13:28:18 t 1 1 96864 220 0.00 2019-09-13 13:43:44 2019-09-13 13:43:58 t 1 1 96865 327 0.00 2019-09-13 13:44:41 2019-09-13 13:45:06 t 1 1 96867 456 0.00 2019-09-13 13:37:54 2019-09-13 13:51:17 t 1 1 96868 385 0.00 2019-09-13 13:27:31 2019-09-13 13:53:54 t 1 2 96869 220 0.00 2019-09-13 13:54:15 2019-09-13 13:54:23 t 1 1 96872 220 0.00 2019-09-13 13:55:01 2019-09-13 13:55:08 t 1 1 96875 220 0.00 2019-09-13 14:05:29 2019-09-13 14:05:38 t 1 1 96876 327 0.00 2019-09-13 14:09:19 2019-09-13 14:09:52 t 1 1 96877 327 0.00 2019-09-13 14:14:26 2019-09-13 14:14:31 t 1 1 96880 420 0.00 2019-09-13 14:12:18 2019-09-13 14:23:00 t 1 1 96884 327 0.00 2019-09-13 14:35:02 2019-09-13 14:35:34 t 1 1 96885 220 0.00 2019-09-13 14:36:58 2019-09-13 14:37:07 t 1 1 96890 220 0.00 2019-09-13 14:47:42 2019-09-13 14:47:50 t 1 1 96893 220 0.00 2019-09-13 14:49:39 2019-09-13 14:57:40 t 1 1 96897 420 0.00 2019-09-13 14:52:36 2019-09-13 15:00:52 t 1 1 96902 420 0.00 2019-09-13 15:06:20 2019-09-13 15:10:30 t 1 1 96906 327 0.00 2019-09-13 15:16:09 2019-09-13 15:16:38 t 1 1 96907 327 0.00 2019-09-13 15:17:10 2019-09-13 15:17:22 t 1 1 96909 220 0.00 2019-09-13 15:20:00 2019-09-13 15:20:10 t 1 1 96914 220 0.00 2019-09-13 15:21:41 2019-09-13 15:21:43 t 1 1 96917 220 0.00 2019-09-13 15:32:03 2019-09-13 15:32:23 t 1 1 96921 402 0.00 2019-09-13 15:39:44 2019-09-13 15:39:45 t 1 2 96922 220 0.00 2019-09-13 15:32:38 2019-09-13 15:42:39 t 1 1 96924 402 0.00 2019-09-13 15:52:43 2019-09-13 15:52:44 t 1 2 96926 327 0.00 2019-09-13 15:25:23 2019-09-13 16:01:00 t 1 1 96930 456 0.00 2019-09-13 16:09:08 2019-09-13 16:10:11 t 1 1 96935 456 0.00 2019-09-13 16:10:22 2019-09-13 16:13:57 t 1 1 96936 311 0.00 2019-09-13 16:14:19 2019-09-13 16:14:19 t 1 2 96939 327 0.00 2019-09-13 16:21:47 2019-09-13 16:21:53 t 1 1 96940 311 0.00 2019-09-13 16:22:49 2019-09-13 16:22:49 t 1 2 96948 327 0.00 2019-09-13 16:44:00 2019-09-13 16:44:21 t 1 1 96951 327 0.00 2019-09-13 16:46:09 2019-09-13 16:46:39 t 1 1 96955 412 0.00 2019-09-13 12:12:20 2019-09-13 16:55:16 t 1 1 96958 400 0.00 2019-09-13 17:01:19 2019-09-13 17:05:29 t 1 1 96959 392 0.00 2019-09-13 17:16:01 2019-09-13 17:16:01 t 1 2 96960 400 0.00 2019-09-13 17:07:44 2019-09-13 17:19:15 t 1 1 96965 220 0.00 2019-09-13 17:28:38 2019-09-13 17:37:58 t 1 1 96968 220 0.00 2019-09-13 17:40:07 2019-09-13 17:43:40 t 1 1 96970 220 0.00 2019-09-13 17:52:33 2019-09-13 17:58:43 t 1 1 96971 220 0.00 2019-09-13 17:57:34 2019-09-13 17:59:53 t 1 2 96980 220 0.00 2019-09-13 18:31:59 2019-09-13 18:32:07 t 1 1 96982 220 0.00 2019-09-13 18:32:50 2019-09-13 18:32:58 t 1 1 96986 420 0.00 2019-09-13 18:32:41 2019-09-13 18:47:08 t 1 1 96987 445 0.00 2019-09-13 18:25:57 2019-09-13 18:47:28 t 1 1 96994 220 0.00 2019-09-13 19:05:29 2019-09-13 19:06:10 t 1 1 96999 432 0.00 2019-09-13 19:18:23 2019-09-13 19:18:33 t 1 1 97001 372 0.00 2019-09-13 19:23:02 2019-09-13 19:23:03 t 1 2 97002 372 0.00 2019-09-13 19:23:22 2019-09-13 19:23:23 t 1 2 97005 220 0.00 2019-09-13 19:23:58 2019-09-13 19:24:07 t 1 1 97006 372 0.00 2019-09-13 19:24:14 2019-09-13 19:24:15 t 1 2 97010 432 0.00 2019-09-13 19:31:43 2019-09-13 19:38:09 t 1 1 97011 392 0.00 2019-09-13 19:41:03 2019-09-13 19:41:04 t 1 2 97012 220 0.00 2019-09-13 19:51:32 2019-09-13 19:51:33 t 1 2 97015 449 0.00 2019-09-13 19:52:52 2019-09-13 19:53:00 t 1 1 97019 432 0.00 2019-09-13 20:03:15 2019-09-13 20:12:53 t 1 1 96774 327 0.00 2019-09-13 11:06:45 2019-09-13 11:07:33 t 1 1 96775 327 0.00 2019-09-13 11:08:17 2019-09-13 11:08:49 t 1 1 96777 451 0.00 2019-09-13 11:03:51 2019-09-13 11:13:57 t 1 1 96779 432 0.00 2019-09-13 10:57:02 2019-09-13 11:19:56 t 1 1 96781 432 0.00 2019-09-13 11:22:41 2019-09-13 11:23:34 t 1 1 96785 400 0.00 2019-09-13 11:30:01 2019-09-13 11:31:55 t 1 1 96787 220 0.00 2019-09-13 11:27:04 2019-09-13 11:37:02 t 1 1 96791 220 0.00 2019-09-13 11:47:22 2019-09-13 11:47:32 t 1 1 96792 263 0.00 2019-09-13 11:55:41 2019-09-13 11:55:41 f 1 2 96795 220 0.00 2019-09-13 11:58:33 2019-09-13 11:58:42 t 1 1 96796 220 0.00 2019-09-13 11:58:49 2019-09-13 11:58:57 t 1 1 96797 213 0.00 2019-09-13 12:08:24 2019-09-13 12:10:43 t 1 1 96803 220 0.00 2019-09-13 12:13:56 2019-09-13 12:14:23 t 1 1 96809 432 0.00 2019-09-13 12:19:24 2019-09-13 12:20:05 t 1 1 96813 432 0.00 2019-09-13 12:25:38 2019-09-13 12:26:11 t 1 1 96818 220 0.00 2019-09-13 12:27:52 2019-09-13 12:28:00 t 1 1 96824 432 0.00 2019-09-13 12:34:11 2019-09-13 12:34:23 t 1 1 96826 220 0.00 2019-09-13 12:38:37 2019-09-13 12:38:46 t 1 1 96834 220 0.00 2019-09-13 12:49:23 2019-09-13 12:49:31 t 1 1 96835 220 0.00 2019-09-13 12:49:39 2019-09-13 12:49:45 t 1 1 96837 432 0.00 2019-09-13 12:52:42 2019-09-13 12:52:44 t 1 1 96840 220 0.00 2019-09-13 12:49:45 2019-09-13 12:55:38 t 1 1 96843 220 0.00 2019-09-13 13:00:39 2019-09-13 13:00:46 t 1 1 96847 327 0.00 2019-09-13 11:58:38 2019-09-13 13:02:53 t 1 1 96848 327 0.00 2019-09-13 13:03:49 2019-09-13 13:03:50 t 1 1 96849 327 0.00 2019-09-13 13:04:35 2019-09-13 13:04:47 t 1 1 96850 420 0.00 2019-09-13 12:30:19 2019-09-13 13:05:29 t 1 1 96854 327 0.00 2019-09-13 13:14:04 2019-09-13 13:14:31 t 1 1 96856 220 0.00 2019-09-13 13:22:30 2019-09-13 13:22:39 t 1 1 96857 327 0.00 2019-09-13 13:24:46 2019-09-13 13:25:16 t 1 1 96861 220 0.00 2019-09-13 13:32:59 2019-09-13 13:33:08 t 1 1 96862 220 0.00 2019-09-13 13:33:15 2019-09-13 13:33:24 t 1 1 96866 327 0.00 2019-09-13 13:50:39 2019-09-13 13:51:09 t 1 1 96871 220 0.00 2019-09-13 13:54:45 2019-09-13 13:54:53 t 1 1 96873 327 0.00 2019-09-13 13:55:27 2019-09-13 13:56:02 t 1 1 96874 327 0.00 2019-09-13 14:04:47 2019-09-13 14:05:20 t 1 1 96879 327 0.00 2019-09-13 14:16:03 2019-09-13 14:16:33 t 1 1 96881 220 0.00 2019-09-13 14:26:27 2019-09-13 14:26:37 t 1 1 96882 327 0.00 2019-09-13 14:31:53 2019-09-13 14:32:16 t 1 1 96886 327 0.00 2019-09-13 14:38:35 2019-09-13 14:39:01 t 1 1 96888 327 0.00 2019-09-13 14:44:10 2019-09-13 14:44:37 t 1 1 96889 220 0.00 2019-09-13 14:47:27 2019-09-13 14:47:34 t 1 1 96892 420 0.00 2019-09-13 14:41:46 2019-09-13 14:52:36 t 1 1 96894 220 0.00 2019-09-13 14:58:10 2019-09-13 14:58:26 t 1 1 96898 420 0.00 2019-09-13 15:00:52 2019-09-13 15:06:20 t 1 1 96899 400 0.00 2019-09-13 15:05:40 2019-09-13 15:08:08 t 1 1 96901 220 0.00 2019-09-13 15:09:25 2019-09-13 15:09:26 t 1 1 96905 220 0.00 2019-09-13 15:09:35 2019-09-13 15:12:22 t 1 1 96910 327 0.00 2019-09-13 15:19:38 2019-09-13 15:20:40 t 1 1 96912 220 0.00 2019-09-13 15:21:03 2019-09-13 15:21:12 t 1 1 96913 220 0.00 2019-09-13 15:21:21 2019-09-13 15:21:31 t 1 1 96916 220 0.00 2019-09-13 14:59:11 2019-09-13 15:32:04 t 1 1 96919 424 0.00 2019-09-13 15:31:31 2019-09-13 15:35:27 t 1 2 96920 402 0.00 2019-09-13 15:39:36 2019-09-13 15:39:36 t 1 2 96923 220 0.00 2019-09-13 15:42:39 2019-09-13 15:42:52 t 1 1 96925 385 0.00 2019-09-13 14:01:57 2019-09-13 15:57:20 t 1 2 96927 327 0.00 2019-09-13 16:02:22 2019-09-13 16:02:55 t 1 1 96928 327 0.00 2019-09-13 16:05:11 2019-09-13 16:05:38 t 1 1 96931 311 0.00 2019-09-13 16:10:17 2019-09-13 16:10:19 t 1 2 96938 445 0.00 2019-09-13 16:14:45 2019-09-13 16:21:47 t 1 1 96943 327 0.00 2019-09-13 16:30:20 2019-09-13 16:30:52 t 1 1 96946 339 0.00 2019-09-13 15:14:51 2019-09-13 16:36:05 t 1 2 96947 327 0.00 2019-09-13 16:41:18 2019-09-13 16:41:48 t 1 1 96949 445 0.00 2019-09-13 16:35:39 2019-09-13 16:45:51 t 1 1 96954 327 0.00 2019-09-13 16:50:46 2019-09-13 16:51:12 t 1 1 96957 400 0.00 2019-09-13 16:54:54 2019-09-13 17:00:28 t 1 1 96961 220 0.00 2019-09-13 17:18:11 2019-09-13 17:27:30 t 1 1 96969 220 0.00 2019-09-13 17:43:43 2019-09-13 17:45:05 t 1 1 96974 220 0.00 2019-09-13 18:15:46 2019-09-13 18:15:54 t 1 1 96976 247 0.00 2019-09-13 18:16:25 2019-09-13 18:18:57 t 1 2 96978 220 0.00 2019-09-13 18:26:32 2019-09-13 18:26:33 t 1 1 96979 220 0.00 2019-09-13 18:31:37 2019-09-13 18:31:52 t 1 1 96981 220 0.00 2019-09-13 18:32:33 2019-09-13 18:32:42 t 1 1 96989 220 0.00 2019-09-13 18:51:57 2019-09-13 18:54:50 t 1 1 96991 220 0.00 2019-09-13 18:58:15 2019-09-13 19:00:45 t 1 1 96993 420 0.00 2019-09-13 19:00:58 2019-09-13 19:03:45 t 1 1 96995 220 0.00 2019-09-13 19:07:17 2019-09-13 19:07:18 t 1 1 96996 220 0.00 2019-09-13 19:10:13 2019-09-13 19:10:14 t 1 1 96997 220 0.00 2019-09-13 19:11:44 2019-09-13 19:11:53 t 1 1 96998 432 0.00 2019-09-13 18:58:23 2019-09-13 19:13:57 t 1 1 97004 372 0.00 2019-09-13 19:23:37 2019-09-13 19:23:37 t 1 2 97007 432 0.00 2019-09-13 19:26:50 2019-09-13 19:27:27 t 1 1 97009 395 0.00 2019-09-13 19:29:45 2019-09-13 19:29:46 t 1 2 97014 449 0.00 2019-09-13 19:34:16 2019-09-13 19:52:52 t 1 1 97017 412 0.00 2019-09-13 17:27:59 2019-09-13 19:55:32 t 1 1 97024 288 0.00 2019-09-13 20:19:43 2019-09-13 20:22:43 t 1 1 97025 461 0.00 2019-09-13 19:50:43 2019-09-13 20:25:57 t 1 2 97027 392 0.00 2019-09-13 20:34:19 2019-09-13 20:34:20 t 1 2 97029 288 0.00 2019-09-13 20:36:29 2019-09-13 20:45:44 t 1 1 97030 212 0.00 2019-09-13 20:52:18 2019-09-13 20:52:19 t 1 2 97033 212 0.00 2019-09-13 20:52:52 2019-09-13 20:52:53 t 1 2 97038 432 0.00 2019-09-13 20:17:03 2019-09-13 20:53:35 t 1 1 97040 375 0.00 2019-09-13 20:39:17 2019-09-13 21:00:41 t 1 1 97042 402 0.00 2019-09-13 21:04:46 2019-09-13 21:04:46 t 1 2 97044 402 0.00 2019-09-13 21:05:59 2019-09-13 21:05:59 t 1 2 97050 461 0.00 2019-09-13 20:27:03 2019-09-13 21:17:08 t 1 2 97054 296 0.00 2019-09-13 21:30:22 2019-09-13 21:31:45 t 1 2 97061 445 0.00 2019-09-13 21:50:02 2019-09-13 21:50:21 t 1 1 97066 220 0.00 2019-09-13 22:00:56 2019-09-13 22:01:13 t 1 1 97067 220 0.00 2019-09-13 22:01:22 2019-09-13 22:01:23 t 1 1 97072 335 0.00 2019-09-13 22:13:10 2019-09-13 22:13:10 f 1 2 97073 335 0.00 2019-09-13 22:13:38 2019-09-13 22:13:38 f 1 2 97076 400 0.00 2019-09-13 22:12:16 2019-09-13 22:14:28 t 1 1 97077 335 0.00 2019-09-13 22:16:50 2019-09-13 22:16:50 f 1 2 97080 335 0.00 2019-09-13 22:19:11 2019-09-13 22:20:18 t 1 2 97081 335 0.00 2019-09-13 22:21:13 2019-09-13 22:22:16 t 1 2 97084 335 0.00 2019-09-13 22:22:45 2019-09-13 22:23:51 t 1 2 96810 451 0.00 2019-09-13 12:12:56 2019-09-13 12:20:53 t 1 1 96811 432 0.00 2019-09-13 12:20:19 2019-09-13 12:21:20 t 1 1 96814 432 0.00 2019-09-13 12:27:03 2019-09-13 12:27:10 t 1 1 96817 220 0.00 2019-09-13 12:27:37 2019-09-13 12:27:44 t 1 1 96821 420 0.00 2019-09-13 10:57:35 2019-09-13 12:30:19 t 1 1 96822 432 0.00 2019-09-13 12:29:34 2019-09-13 12:31:21 t 1 1 96823 432 0.00 2019-09-13 12:32:28 2019-09-13 12:33:01 t 1 1 96825 432 0.00 2019-09-13 12:36:08 2019-09-13 12:36:13 t 1 1 96829 445 0.00 2019-09-13 12:20:53 2019-09-13 12:44:19 t 1 1 96830 451 0.00 2019-09-13 12:44:19 2019-09-13 12:45:23 t 1 1 96833 220 0.00 2019-09-13 12:49:07 2019-09-13 12:49:16 t 1 1 96836 432 0.00 2019-09-13 12:50:23 2019-09-13 12:50:40 t 1 1 96838 432 0.00 2019-09-13 12:51:16 2019-09-13 12:53:04 t 1 1 96839 432 0.00 2019-09-13 12:53:39 2019-09-13 12:53:42 t 1 1 96842 220 0.00 2019-09-13 13:00:24 2019-09-13 13:00:31 t 1 1 96846 220 0.00 2019-09-13 13:01:24 2019-09-13 13:01:31 t 1 1 96853 220 0.00 2019-09-13 13:12:07 2019-09-13 13:12:08 t 1 1 96863 327 0.00 2019-09-13 13:40:30 2019-09-13 13:41:46 t 1 1 96870 220 0.00 2019-09-13 13:54:30 2019-09-13 13:54:38 t 1 1 96878 220 0.00 2019-09-13 14:15:58 2019-09-13 14:16:06 t 1 1 96883 327 0.00 2019-09-13 14:33:57 2019-09-13 14:34:14 t 1 1 96887 327 0.00 2019-09-13 14:41:55 2019-09-13 14:42:04 t 1 1 96891 220 0.00 2019-09-13 14:47:57 2019-09-13 14:48:06 t 1 1 96895 220 0.00 2019-09-13 14:58:26 2019-09-13 14:58:34 t 1 1 96896 220 0.00 2019-09-13 14:58:41 2019-09-13 14:59:12 t 1 1 96900 220 0.00 2019-09-13 15:09:05 2019-09-13 15:09:15 t 1 1 96903 327 0.00 2019-09-13 15:10:15 2019-09-13 15:10:46 t 1 1 96904 327 0.00 2019-09-13 15:11:32 2019-09-13 15:12:08 t 1 1 96908 420 0.00 2019-09-13 15:10:30 2019-09-13 15:19:08 t 1 1 96911 220 0.00 2019-09-13 15:20:19 2019-09-13 15:20:53 t 1 1 96915 400 0.00 2019-09-13 15:30:55 2019-09-13 15:31:50 t 1 1 96918 400 0.00 2019-09-13 15:31:50 2019-09-13 15:32:59 t 1 1 96929 311 0.00 2019-09-13 16:10:06 2019-09-13 16:10:08 t 1 2 96932 327 0.00 2019-09-13 16:11:39 2019-09-13 16:12:09 t 1 1 96933 311 0.00 2019-09-13 16:13:12 2019-09-13 16:13:13 t 1 2 96934 311 0.00 2019-09-13 16:13:43 2019-09-13 16:13:44 t 1 2 96937 311 0.00 2019-09-13 16:14:26 2019-09-13 16:14:26 t 1 2 96941 311 0.00 2019-09-13 16:23:05 2019-09-13 16:23:05 t 1 2 96942 327 0.00 2019-09-13 16:24:51 2019-09-13 16:25:21 t 1 1 96944 327 0.00 2019-09-13 16:34:18 2019-09-13 16:34:47 t 1 1 96945 400 0.00 2019-09-13 16:32:27 2019-09-13 16:35:39 t 1 1 96950 327 0.00 2019-09-13 16:45:30 2019-09-13 16:45:55 t 1 1 96952 379 0.00 2019-09-13 16:47:02 2019-09-13 16:47:04 t 1 2 96953 445 0.00 2019-09-13 16:46:30 2019-09-13 16:50:16 t 1 1 96956 327 0.00 2019-09-13 16:57:41 2019-09-13 16:57:43 t 1 1 96962 412 0.00 2019-09-13 16:55:16 2019-09-13 17:27:59 t 1 1 96963 220 0.00 2019-09-13 17:27:19 2019-09-13 17:28:31 t 1 1 96964 400 0.00 2019-09-13 17:20:14 2019-09-13 17:29:22 t 1 1 96966 220 0.00 2019-09-13 17:38:10 2019-09-13 17:40:12 t 1 1 96967 432 0.00 2019-09-13 17:37:34 2019-09-13 17:41:01 t 1 1 96972 445 0.00 2019-09-13 17:31:23 2019-09-13 18:02:23 t 1 1 96973 220 0.00 2019-09-13 17:58:55 2019-09-13 18:05:24 t 1 1 96975 220 0.00 2019-09-13 17:44:52 2019-09-13 18:17:47 t 1 1 96977 220 0.00 2019-09-13 18:26:15 2019-09-13 18:26:24 t 1 1 96983 461 0.00 2019-09-13 18:38:23 2019-09-13 18:42:23 t 1 2 96984 220 0.00 2019-09-13 18:43:20 2019-09-13 18:43:28 t 1 1 96985 220 0.00 2019-09-13 18:43:36 2019-09-13 18:44:36 t 1 1 96988 220 0.00 2019-09-13 18:47:28 2019-09-13 18:47:29 t 1 1 96990 296 0.00 2019-09-13 18:50:45 2019-09-13 18:57:07 t 1 2 96992 420 0.00 2019-09-13 18:47:08 2019-09-13 19:00:58 t 1 1 97000 432 0.00 2019-09-13 19:18:57 2019-09-13 19:20:24 t 1 1 97003 372 0.00 2019-09-13 19:23:28 2019-09-13 19:23:28 t 1 2 97008 395 0.00 2019-09-13 19:29:29 2019-09-13 19:29:29 t 1 2 97013 220 0.00 2019-09-13 19:51:46 2019-09-13 19:51:47 t 1 2 97016 400 0.00 2019-09-13 19:26:41 2019-09-13 19:53:39 t 1 1 97018 432 0.00 2019-09-13 19:41:15 2019-09-13 20:03:15 t 1 1 97020 445 0.00 2019-09-13 19:37:21 2019-09-13 20:13:51 t 1 1 97021 432 0.00 2019-09-13 20:13:51 2019-09-13 20:14:30 t 1 1 97023 288 0.00 2019-09-13 20:16:41 2019-09-13 20:19:44 t 1 1 97032 212 0.00 2019-09-13 20:52:43 2019-09-13 20:52:44 t 1 2 97036 212 0.00 2019-09-13 20:53:26 2019-09-13 20:53:27 t 1 2 97043 402 0.00 2019-09-13 21:05:52 2019-09-13 21:05:53 t 1 2 97045 375 0.00 2019-09-13 21:00:41 2019-09-13 21:06:04 t 1 1 97046 402 0.00 2019-09-13 21:06:07 2019-09-13 21:06:08 t 1 2 97047 402 0.00 2019-09-13 21:06:26 2019-09-13 21:06:26 t 1 2 97051 402 0.00 2019-09-13 21:18:14 2019-09-13 21:18:14 t 1 2 97056 372 0.00 2019-09-13 21:41:02 2019-09-13 21:41:02 t 1 2 97057 400 0.00 2019-09-13 21:25:28 2019-09-13 21:42:32 t 1 1 97058 445 0.00 2019-09-13 20:19:04 2019-09-13 21:46:45 t 1 1 97059 220 0.00 2019-09-13 21:49:46 2019-09-13 21:50:02 t 1 1 97063 220 0.00 2019-09-13 21:49:40 2019-09-13 21:51:23 t 1 1 97065 385 0.00 2019-09-13 21:51:28 2019-09-13 22:00:51 t 1 2 97069 220 0.00 2019-09-13 22:11:44 2019-09-13 22:11:53 t 1 1 97071 335 0.00 2019-09-13 22:12:51 2019-09-13 22:12:51 f 1 2 97075 335 0.00 2019-09-13 22:14:13 2019-09-13 22:14:14 t 1 2 97078 400 0.00 2019-09-13 22:14:33 2019-09-13 22:17:13 t 1 1 97079 335 0.00 2019-09-13 22:17:20 2019-09-13 22:18:23 t 1 2 97082 220 0.00 2019-09-13 22:20:40 2019-09-13 22:22:45 t 1 1 97083 220 0.00 2019-09-13 22:22:53 2019-09-13 22:23:00 t 1 1 97087 335 0.00 2019-09-13 22:25:54 2019-09-13 22:26:57 t 1 2 97089 451 0.00 2019-09-13 21:55:44 2019-09-13 22:27:23 t 1 1 97090 220 0.00 2019-09-13 22:33:21 2019-09-13 22:33:28 t 1 1 97091 432 0.00 2019-09-13 22:17:29 2019-09-13 22:45:06 t 1 1 97092 220 0.00 2019-09-13 22:38:26 2019-09-13 22:45:24 t 1 1 97094 288 0.00 2019-09-13 20:46:07 2019-09-13 22:48:15 t 1 1 97095 327 0.00 2019-09-13 22:54:34 2019-09-13 22:55:13 t 1 1 97096 451 0.00 2019-09-13 22:42:37 2019-09-13 22:55:39 t 1 1 97097 445 0.00 2019-09-13 22:25:51 2019-09-13 22:59:23 t 1 1 97103 220 0.00 2019-09-13 23:19:01 2019-09-13 23:19:09 t 1 1 97108 220 0.00 2019-09-13 23:26:35 2019-09-13 23:27:53 t 1 1 97112 220 0.00 2019-09-13 23:30:28 2019-09-13 23:30:29 t 1 1 97114 220 0.00 2019-09-13 23:33:40 2019-09-13 23:33:52 t 1 1 97117 327 0.00 2019-09-13 23:21:40 2019-09-13 23:41:21 t 1 1 97119 220 0.00 2019-09-13 23:45:42 2019-09-13 23:45:52 t 1 1 97120 335 0.00 2019-09-13 23:47:35 2019-09-13 23:48:42 t 1 2 97121 335 0.00 2019-09-13 23:49:04 2019-09-13 23:50:05 t 1 2 97125 220 0.00 2019-09-13 23:56:13 2019-09-13 23:56:21 t 1 1 97022 288 0.00 2019-09-13 19:44:44 2019-09-13 20:16:41 t 1 1 97026 372 0.00 2019-09-13 20:32:17 2019-09-13 20:32:18 t 1 2 97028 288 0.00 2019-09-13 20:23:30 2019-09-13 20:36:29 t 1 1 97031 212 0.00 2019-09-13 20:52:33 2019-09-13 20:52:34 t 1 2 97034 212 0.00 2019-09-13 20:52:57 2019-09-13 20:52:58 t 1 2 97035 212 0.00 2019-09-13 20:53:18 2019-09-13 20:53:19 t 1 2 97037 247 0.00 2019-09-13 20:51:14 2019-09-13 20:53:34 t 1 2 97039 212 0.00 2019-09-13 20:53:52 2019-09-13 20:53:53 t 1 2 97041 402 0.00 2019-09-13 21:03:08 2019-09-13 21:03:09 t 1 2 97048 402 0.00 2019-09-13 21:08:46 2019-09-13 21:08:46 t 1 2 97049 375 0.00 2019-09-13 21:06:04 2019-09-13 21:13:09 t 1 1 97052 375 0.00 2019-09-13 21:13:09 2019-09-13 21:23:21 t 1 1 97053 375 0.00 2019-09-13 21:23:21 2019-09-13 21:30:18 t 1 1 97055 451 0.00 2019-09-13 21:36:13 2019-09-13 21:39:37 t 1 1 97060 375 0.00 2019-09-13 21:30:18 2019-09-13 21:50:20 t 1 1 97062 220 0.00 2019-09-13 21:50:31 2019-09-13 21:50:32 t 1 1 97064 451 0.00 2019-09-13 21:39:37 2019-09-13 21:55:44 t 1 1 97068 392 0.00 2019-09-13 22:09:58 2019-09-13 22:09:59 t 1 2 97070 335 0.00 2019-09-13 22:12:17 2019-09-13 22:12:17 f 1 2 97074 335 0.00 2019-09-13 22:14:00 2019-09-13 22:14:00 t 1 2 97093 327 0.00 2019-09-13 22:43:50 2019-09-13 22:47:30 t 1 1 97100 451 0.00 2019-09-13 23:06:27 2019-09-13 23:12:02 t 1 1 97101 445 0.00 2019-09-13 22:59:23 2019-09-13 23:14:09 t 1 1 97102 220 0.00 2019-09-13 23:18:46 2019-09-13 23:18:53 t 1 1 97105 327 0.00 2019-09-13 23:05:09 2019-09-13 23:21:40 t 1 1 97106 461 0.00 2019-09-13 22:38:20 2019-09-13 23:22:43 t 1 2 97107 445 0.00 2019-09-13 23:14:09 2019-09-13 23:24:45 t 1 1 97110 247 0.00 2019-09-13 23:28:25 2019-09-13 23:30:02 t 1 2 97111 220 0.00 2019-09-13 23:29:50 2019-09-13 23:30:18 t 1 1 97124 220 0.00 2019-09-13 23:46:13 2019-09-13 23:56:13 t 1 1 97128 220 0.00 2019-09-14 00:06:41 2019-09-14 00:06:49 t 1 1 97131 220 0.00 2019-09-14 00:07:45 2019-09-14 00:10:11 t 1 1 97138 220 0.00 2019-09-14 00:15:09 2019-09-14 00:15:45 t 1 1 97139 220 0.00 2019-09-14 00:15:45 2019-09-14 00:16:35 t 1 1 97142 220 0.00 2019-09-14 00:17:25 2019-09-14 00:17:33 t 1 1 97143 220 0.00 2019-09-14 00:17:55 2019-09-14 00:18:01 t 1 1 97148 311 0.00 2019-09-14 00:19:57 2019-09-14 00:19:57 t 1 2 97150 220 0.00 2019-09-14 00:20:25 2019-09-14 00:20:59 t 1 1 97151 220 0.00 2019-09-14 00:20:58 2019-09-14 00:21:33 t 1 1 97165 220 0.00 2019-09-14 00:27:52 2019-09-14 00:27:55 t 1 1 97167 220 0.00 2019-09-14 00:28:29 2019-09-14 00:29:05 t 1 1 97168 220 0.00 2019-09-14 00:29:04 2019-09-14 00:29:38 t 1 1 97170 220 0.00 2019-09-14 00:29:38 2019-09-14 00:30:13 t 1 1 97171 220 0.00 2019-09-14 00:28:29 2019-09-14 00:30:23 t 1 1 97176 220 0.00 2019-09-14 00:32:17 2019-09-14 00:32:52 t 1 1 97177 220 0.00 2019-09-14 00:32:51 2019-09-14 00:33:27 t 1 1 97187 220 0.00 2019-09-14 00:39:26 2019-09-14 00:40:04 t 1 1 97189 220 0.00 2019-09-14 00:40:37 2019-09-14 00:41:11 t 1 1 97190 220 0.00 2019-09-14 00:41:11 2019-09-14 00:41:46 t 1 1 97191 220 0.00 2019-09-14 00:41:46 2019-09-14 00:42:23 t 1 1 97195 220 0.00 2019-09-14 00:44:07 2019-09-14 00:45:31 t 1 1 97197 220 0.00 2019-09-14 00:44:50 2019-09-14 00:46:06 t 1 1 97202 220 0.00 2019-09-14 00:58:24 2019-09-14 00:58:25 t 1 1 97203 220 0.00 2019-09-14 00:58:35 2019-09-14 01:01:23 t 1 1 97205 220 0.00 2019-09-14 01:08:58 2019-09-14 01:09:07 t 1 1 97206 220 0.00 2019-09-14 01:09:17 2019-09-14 01:09:19 t 1 1 97208 220 0.00 2019-09-14 01:19:40 2019-09-14 01:19:49 t 1 1 97209 220 0.00 2019-09-14 01:20:14 2019-09-14 01:30:09 t 1 1 97210 220 0.00 2019-09-14 01:30:08 2019-09-14 01:30:16 t 1 1 97211 220 0.00 2019-09-14 01:30:43 2019-09-14 01:30:51 t 1 1 97214 220 0.00 2019-09-14 01:31:25 2019-09-14 01:41:20 t 1 1 97221 220 0.00 2019-09-14 02:12:47 2019-09-14 02:12:55 t 1 1 97224 395 0.00 2019-09-14 01:52:39 2019-09-14 02:28:00 t 1 2 97225 220 0.00 2019-09-14 02:23:50 2019-09-14 02:33:46 t 1 1 97235 220 0.00 2019-09-14 00:47:41 2019-09-14 02:54:00 t 1 1 97237 220 0.00 2019-09-14 02:55:28 2019-09-14 02:55:37 t 1 1 97240 422 0.00 2019-09-14 02:53:43 2019-09-14 02:58:47 t 1 1 97242 220 0.00 2019-09-14 02:56:03 2019-09-14 03:06:29 t 1 1 97244 220 0.00 2019-09-14 03:07:03 2019-09-14 03:16:58 t 1 1 97249 220 0.00 2019-09-14 03:27:27 2019-09-14 03:27:35 t 1 1 97254 422 0.00 2019-09-14 03:34:56 2019-09-14 03:40:47 t 1 1 97255 220 0.00 2019-09-14 03:40:55 2019-09-14 03:41:03 t 1 1 97256 220 0.00 2019-09-14 03:41:11 2019-09-14 03:41:19 t 1 1 97258 395 0.00 2019-09-14 02:46:03 2019-09-14 03:44:26 t 1 2 97262 220 0.00 2019-09-14 04:02:24 2019-09-14 04:02:32 t 1 1 97263 395 0.00 2019-09-14 04:00:33 2019-09-14 04:04:16 t 1 2 97268 220 0.00 2019-09-14 04:13:38 2019-09-14 04:13:46 t 1 1 97270 220 0.00 2019-09-14 04:24:23 2019-09-14 04:24:31 t 1 1 97277 445 0.00 2019-09-14 04:48:32 2019-09-14 05:04:08 t 1 1 97281 220 0.00 2019-09-14 05:23:28 2019-09-14 05:23:35 t 1 1 97285 220 0.00 2019-09-14 05:44:56 2019-09-14 05:45:04 t 1 1 97287 220 0.00 2019-09-14 05:45:26 2019-09-14 05:45:34 t 1 1 97291 220 0.00 2019-09-14 05:56:41 2019-09-14 05:56:50 t 1 1 97292 220 0.00 2019-09-14 06:07:11 2019-09-14 06:07:20 t 1 1 97295 220 0.00 2019-09-14 06:07:58 2019-09-14 06:08:06 t 1 1 97296 220 0.00 2019-09-14 06:08:14 2019-09-14 06:08:21 t 1 1 97299 220 0.00 2019-09-14 06:18:58 2019-09-14 06:19:06 t 1 1 97300 220 0.00 2019-09-14 06:19:14 2019-09-14 06:19:21 t 1 1 97301 220 0.00 2019-09-14 06:19:33 2019-09-14 06:29:43 t 1 1 97309 220 0.00 2019-09-14 07:01:25 2019-09-14 07:01:33 t 1 1 97310 445 0.00 2019-09-14 05:10:47 2019-09-14 07:02:19 t 1 1 97317 400 0.00 2019-09-14 07:24:11 2019-09-14 07:28:36 t 1 1 97322 220 0.00 2019-09-14 07:33:40 2019-09-14 07:33:41 t 1 1 97328 220 0.00 2019-09-14 07:48:30 2019-09-14 07:50:37 t 1 1 97330 220 0.00 2019-09-14 07:57:09 2019-09-14 07:57:17 t 1 1 97331 220 0.00 2019-09-14 07:57:25 2019-09-14 07:57:33 t 1 1 97332 220 0.00 2019-09-14 07:57:40 2019-09-14 07:57:49 t 1 1 97333 220 0.00 2019-09-14 07:57:56 2019-09-14 07:58:05 t 1 1 97335 395 0.00 2019-09-14 07:57:33 2019-09-14 07:59:44 t 1 2 97338 402 0.00 2019-09-14 08:07:59 2019-09-14 08:07:59 t 1 2 97342 220 0.00 2019-09-14 08:08:44 2019-09-14 08:08:52 t 1 1 97347 220 0.00 2019-09-14 08:19:43 2019-09-14 08:19:50 t 1 1 97349 220 0.00 2019-09-14 08:20:13 2019-09-14 08:20:20 t 1 1 97354 220 0.00 2019-09-14 08:30:57 2019-09-14 08:31:06 t 1 1 97355 220 0.00 2019-09-14 08:31:13 2019-09-14 08:31:21 t 1 1 97358 247 0.00 2019-09-14 08:39:40 2019-09-14 08:42:03 t 1 2 97359 220 0.00 2019-09-14 08:42:21 2019-09-14 08:52:11 t 1 1 97085 400 0.00 2019-09-13 22:17:28 2019-09-13 22:24:48 t 1 1 97086 335 0.00 2019-09-13 22:24:10 2019-09-13 22:25:14 t 1 2 97088 385 0.00 2019-09-13 22:21:57 2019-09-13 22:27:20 t 1 2 97098 451 0.00 2019-09-13 23:04:17 2019-09-13 23:06:27 t 1 1 97099 220 0.00 2019-09-13 22:46:10 2019-09-13 23:08:24 t 1 1 97104 372 0.00 2019-09-13 23:20:49 2019-09-13 23:20:50 t 1 2 97109 445 0.00 2019-09-13 23:24:45 2019-09-13 23:29:50 t 1 1 97113 220 0.00 2019-09-13 23:27:56 2019-09-13 23:33:40 t 1 1 97115 220 0.00 2019-09-13 23:34:15 2019-09-13 23:35:14 t 1 1 97116 220 0.00 2019-09-13 23:35:14 2019-09-13 23:35:26 t 1 1 97118 220 0.00 2019-09-13 23:35:47 2019-09-13 23:45:42 t 1 1 97122 372 0.00 2019-09-13 23:51:59 2019-09-13 23:52:00 t 1 2 97123 461 0.00 2019-09-13 23:41:03 2019-09-13 23:56:08 t 1 2 97126 220 0.00 2019-09-13 23:56:47 2019-09-13 23:56:50 t 1 1 97127 327 0.00 2019-09-13 23:41:21 2019-09-14 00:01:09 t 1 1 97130 400 0.00 2019-09-13 22:56:12 2019-09-14 00:09:44 t 1 1 97132 220 0.00 2019-09-14 00:10:11 2019-09-14 00:10:47 t 1 1 97134 220 0.00 2019-09-14 00:11:30 2019-09-14 00:12:06 t 1 1 97135 220 0.00 2019-09-14 00:12:05 2019-09-14 00:12:49 t 1 1 97147 220 0.00 2019-09-14 00:19:13 2019-09-14 00:19:47 t 1 1 97149 220 0.00 2019-09-14 00:19:47 2019-09-14 00:20:25 t 1 1 97155 220 0.00 2019-09-14 00:23:21 2019-09-14 00:23:57 t 1 1 97156 220 0.00 2019-09-14 00:23:56 2019-09-14 00:24:31 t 1 1 97158 220 0.00 2019-09-14 00:24:31 2019-09-14 00:25:08 t 1 1 97160 220 0.00 2019-09-14 00:25:26 2019-09-14 00:26:01 t 1 1 97161 220 0.00 2019-09-14 00:26:01 2019-09-14 00:26:36 t 1 1 97162 220 0.00 2019-09-14 00:26:36 2019-09-14 00:27:20 t 1 1 97164 220 0.00 2019-09-14 00:27:19 2019-09-14 00:27:53 t 1 1 97166 220 0.00 2019-09-14 00:27:54 2019-09-14 00:28:29 t 1 1 97169 327 0.00 2019-09-14 00:01:09 2019-09-14 00:30:00 t 1 1 97173 456 0.00 2019-09-14 00:05:13 2019-09-14 00:31:26 t 1 1 97174 220 0.00 2019-09-14 00:30:54 2019-09-14 00:31:27 t 1 1 97175 220 0.00 2019-09-14 00:31:26 2019-09-14 00:32:18 t 1 1 97180 220 0.00 2019-09-14 00:34:38 2019-09-14 00:35:12 t 1 1 97184 220 0.00 2019-09-14 00:37:32 2019-09-14 00:38:06 t 1 1 97185 220 0.00 2019-09-14 00:38:06 2019-09-14 00:38:53 t 1 1 97186 220 0.00 2019-09-14 00:38:53 2019-09-14 00:39:26 t 1 1 97188 220 0.00 2019-09-14 00:40:03 2019-09-14 00:40:37 t 1 1 97194 220 0.00 2019-09-14 00:43:35 2019-09-14 00:44:07 t 1 1 97196 456 0.00 2019-09-14 00:31:26 2019-09-14 00:46:03 t 1 1 97201 220 0.00 2019-09-14 00:58:05 2019-09-14 00:58:15 t 1 1 97204 395 0.00 2019-09-14 01:05:32 2019-09-14 01:08:36 t 1 2 97212 220 0.00 2019-09-14 01:30:51 2019-09-14 01:30:59 t 1 1 97213 400 0.00 2019-09-14 00:11:08 2019-09-14 01:37:02 t 1 1 97215 220 0.00 2019-09-14 01:41:19 2019-09-14 01:41:28 t 1 1 97216 220 0.00 2019-09-14 01:41:50 2019-09-14 01:51:49 t 1 1 97218 220 0.00 2019-09-14 01:52:23 2019-09-14 02:02:19 t 1 1 97222 220 0.00 2019-09-14 02:13:22 2019-09-14 02:23:17 t 1 1 97226 220 0.00 2019-09-14 02:33:46 2019-09-14 02:33:59 t 1 1 97227 220 0.00 2019-09-14 02:34:07 2019-09-14 02:34:16 t 1 1 97228 220 0.00 2019-09-14 02:34:19 2019-09-14 02:34:29 t 1 1 97230 422 0.00 2019-09-14 02:35:36 2019-09-14 02:35:36 t 1 2 97231 422 0.00 2019-09-14 02:35:44 2019-09-14 02:44:36 t 1 1 97232 220 0.00 2019-09-14 02:35:04 2019-09-14 02:44:59 t 1 1 97234 422 0.00 2019-09-14 02:44:36 2019-09-14 02:53:43 t 1 1 97243 220 0.00 2019-09-14 03:06:28 2019-09-14 03:06:36 t 1 1 97245 220 0.00 2019-09-14 03:16:57 2019-09-14 03:17:06 t 1 1 97247 422 0.00 2019-09-14 03:22:21 2019-09-14 03:24:59 t 1 1 97251 422 0.00 2019-09-14 03:24:59 2019-09-14 03:28:37 t 1 1 97252 220 0.00 2019-09-14 03:30:26 2019-09-14 03:30:38 t 1 1 97253 422 0.00 2019-09-14 03:28:37 2019-09-14 03:34:56 t 1 1 97261 422 0.00 2019-09-14 03:46:34 2019-09-14 03:52:18 t 1 1 97264 412 0.00 2019-09-13 19:55:31 2019-09-14 04:07:52 t 1 1 97265 220 0.00 2019-09-14 04:12:53 2019-09-14 04:13:01 t 1 1 97266 220 0.00 2019-09-14 04:13:08 2019-09-14 04:13:16 t 1 1 97269 220 0.00 2019-09-14 04:13:53 2019-09-14 04:14:01 t 1 1 97272 395 0.00 2019-09-14 04:19:17 2019-09-14 04:41:03 t 1 2 97273 220 0.00 2019-09-14 04:41:04 2019-09-14 04:41:15 t 1 1 97274 220 0.00 2019-09-14 04:51:35 2019-09-14 04:51:44 t 1 1 97278 445 0.00 2019-09-14 05:04:08 2019-09-14 05:10:47 t 1 1 97282 220 0.00 2019-09-14 05:33:56 2019-09-14 05:34:07 t 1 1 97283 220 0.00 2019-09-14 05:44:25 2019-09-14 05:44:33 t 1 1 97288 220 0.00 2019-09-14 05:55:56 2019-09-14 05:56:04 t 1 1 97289 220 0.00 2019-09-14 05:56:11 2019-09-14 05:56:19 t 1 1 97293 220 0.00 2019-09-14 06:07:27 2019-09-14 06:07:35 t 1 1 97297 220 0.00 2019-09-14 06:08:29 2019-09-14 06:08:37 t 1 1 97298 220 0.00 2019-09-14 06:13:10 2019-09-14 06:18:58 t 1 1 97306 220 0.00 2019-09-14 06:50:41 2019-09-14 06:50:49 t 1 1 97308 220 0.00 2019-09-14 06:51:13 2019-09-14 07:01:25 t 1 1 97313 220 0.00 2019-09-14 07:11:54 2019-09-14 07:12:02 t 1 1 97316 220 0.00 2019-09-14 07:22:23 2019-09-14 07:22:31 t 1 1 97319 220 0.00 2019-09-14 07:32:52 2019-09-14 07:33:01 t 1 1 97320 220 0.00 2019-09-14 07:33:08 2019-09-14 07:33:16 t 1 1 97323 220 0.00 2019-09-14 07:33:48 2019-09-14 07:33:49 t 1 1 97324 220 0.00 2019-09-14 07:35:51 2019-09-14 07:44:11 t 1 1 97327 220 0.00 2019-09-14 07:46:40 2019-09-14 07:46:52 t 1 1 97336 402 0.00 2019-09-14 08:07:45 2019-09-14 08:07:45 t 1 2 97340 220 0.00 2019-09-14 07:57:47 2019-09-14 08:08:11 t 1 2 97341 220 0.00 2019-09-14 07:58:22 2019-09-14 08:08:44 t 1 1 97343 220 0.00 2019-09-14 08:08:59 2019-09-14 08:09:07 t 1 1 97344 220 0.00 2019-09-14 08:09:14 2019-09-14 08:09:22 t 1 1 97346 220 0.00 2019-09-14 08:11:38 2019-09-14 08:19:43 t 1 1 97348 220 0.00 2019-09-14 08:19:58 2019-09-14 08:20:06 t 1 1 97350 220 0.00 2019-09-14 08:20:28 2019-09-14 08:20:36 t 1 1 97352 400 0.00 2019-09-14 08:26:05 2019-09-14 08:27:51 t 1 1 97353 220 0.00 2019-09-14 08:22:45 2019-09-14 08:30:57 t 1 1 97357 220 0.00 2019-09-14 08:41:42 2019-09-14 08:41:50 t 1 1 97360 220 0.00 2019-09-14 08:52:11 2019-09-14 08:52:19 t 1 1 97362 220 0.00 2019-09-14 08:52:46 2019-09-14 08:53:56 t 1 1 97369 445 0.00 2019-09-14 09:08:46 2019-09-14 09:13:45 t 1 1 97374 445 0.00 2019-09-14 09:17:55 2019-09-14 09:18:43 t 1 1 97376 220 0.00 2019-09-14 09:24:30 2019-09-14 09:24:38 t 1 1 97379 220 0.00 2019-09-14 09:25:01 2019-09-14 09:25:09 t 1 1 97380 395 0.00 2019-09-14 08:01:00 2019-09-14 09:27:22 t 1 2 97382 220 0.00 2019-09-14 09:35:30 2019-09-14 09:35:38 t 1 1 97385 375 0.00 2019-09-14 09:24:56 2019-09-14 09:41:40 t 1 1 97386 416 0.00 2019-09-14 09:35:19 2019-09-14 09:43:47 t 1 1 97129 220 0.00 2019-09-14 00:06:56 2019-09-14 00:07:04 t 1 1 97133 220 0.00 2019-09-14 00:10:46 2019-09-14 00:11:30 t 1 1 97136 220 0.00 2019-09-14 00:12:49 2019-09-14 00:13:24 t 1 1 97137 220 0.00 2019-09-14 00:13:24 2019-09-14 00:15:09 t 1 1 97140 220 0.00 2019-09-14 00:16:34 2019-09-14 00:17:09 t 1 1 97141 220 0.00 2019-09-14 00:17:09 2019-09-14 00:17:25 t 1 1 97144 220 0.00 2019-09-14 00:18:00 2019-09-14 00:18:05 t 1 1 97145 220 0.00 2019-09-14 00:18:05 2019-09-14 00:19:13 t 1 1 97146 311 0.00 2019-09-14 00:19:32 2019-09-14 00:19:33 t 1 2 97152 220 0.00 2019-09-14 00:21:33 2019-09-14 00:22:08 t 1 1 97153 220 0.00 2019-09-14 00:22:08 2019-09-14 00:22:46 t 1 1 97154 220 0.00 2019-09-14 00:22:46 2019-09-14 00:23:21 t 1 1 97157 220 0.00 2019-09-13 23:59:55 2019-09-14 00:24:59 t 1 2 97159 220 0.00 2019-09-14 00:25:08 2019-09-14 00:25:26 t 1 1 97163 451 0.00 2019-09-14 00:13:12 2019-09-14 00:27:34 t 1 1 97172 220 0.00 2019-09-14 00:30:13 2019-09-14 00:30:54 t 1 1 97178 220 0.00 2019-09-14 00:33:27 2019-09-14 00:34:01 t 1 1 97179 220 0.00 2019-09-14 00:34:01 2019-09-14 00:34:38 t 1 1 97181 220 0.00 2019-09-14 00:35:12 2019-09-14 00:35:53 t 1 1 97182 220 0.00 2019-09-14 00:35:52 2019-09-14 00:36:25 t 1 1 97183 220 0.00 2019-09-14 00:36:25 2019-09-14 00:37:32 t 1 1 97192 220 0.00 2019-09-14 00:42:22 2019-09-14 00:42:58 t 1 1 97193 220 0.00 2019-09-14 00:42:57 2019-09-14 00:43:36 t 1 1 97198 445 0.00 2019-09-13 23:34:11 2019-09-14 00:47:11 t 1 1 97199 220 0.00 2019-09-14 00:47:11 2019-09-14 00:47:32 t 1 1 97200 385 0.00 2019-09-13 23:26:06 2019-09-14 00:48:29 t 1 2 97207 220 0.00 2019-09-14 00:46:06 2019-09-14 01:19:40 t 1 1 97217 220 0.00 2019-09-14 01:51:48 2019-09-14 01:51:57 t 1 1 97219 220 0.00 2019-09-14 02:02:19 2019-09-14 02:02:26 t 1 1 97220 220 0.00 2019-09-14 02:02:51 2019-09-14 02:12:48 t 1 1 97223 220 0.00 2019-09-14 02:23:17 2019-09-14 02:23:25 t 1 1 97229 220 0.00 2019-09-14 02:34:29 2019-09-14 02:34:37 t 1 1 97233 220 0.00 2019-09-14 02:44:58 2019-09-14 02:45:07 t 1 1 97236 220 0.00 2019-09-14 02:45:28 2019-09-14 02:55:29 t 1 1 97238 220 0.00 2019-09-14 02:55:44 2019-09-14 02:55:52 t 1 1 97239 220 0.00 2019-09-14 02:56:00 2019-09-14 02:56:03 t 1 1 97241 422 0.00 2019-09-14 02:58:47 2019-09-14 03:03:49 t 1 1 97246 422 0.00 2019-09-14 03:03:49 2019-09-14 03:22:21 t 1 1 97248 220 0.00 2019-09-14 03:17:29 2019-09-14 03:27:27 t 1 1 97250 220 0.00 2019-09-14 03:27:42 2019-09-14 03:27:50 t 1 1 97257 220 0.00 2019-09-14 03:41:26 2019-09-14 03:41:34 t 1 1 97259 422 0.00 2019-09-14 03:40:47 2019-09-14 03:46:34 t 1 1 97260 220 0.00 2019-09-14 03:51:55 2019-09-14 03:52:05 t 1 1 97267 220 0.00 2019-09-14 04:13:23 2019-09-14 04:13:31 t 1 1 97271 220 0.00 2019-09-14 04:30:35 2019-09-14 04:30:47 t 1 1 97275 220 0.00 2019-09-14 05:02:04 2019-09-14 05:02:12 t 1 1 97276 220 0.00 2019-09-14 05:02:19 2019-09-14 05:02:20 t 1 1 97279 220 0.00 2019-09-14 05:12:43 2019-09-14 05:12:51 t 1 1 97280 220 0.00 2019-09-14 05:23:12 2019-09-14 05:23:20 t 1 1 97284 220 0.00 2019-09-14 05:44:40 2019-09-14 05:44:49 t 1 1 97286 220 0.00 2019-09-14 05:45:11 2019-09-14 05:45:19 t 1 1 97290 220 0.00 2019-09-14 05:56:26 2019-09-14 05:56:34 t 1 1 97294 220 0.00 2019-09-14 06:07:43 2019-09-14 06:07:51 t 1 1 97302 220 0.00 2019-09-14 06:29:43 2019-09-14 06:29:51 t 1 1 97303 220 0.00 2019-09-14 06:30:16 2019-09-14 06:40:12 t 1 1 97304 220 0.00 2019-09-14 06:40:12 2019-09-14 06:40:20 t 1 1 97305 220 0.00 2019-09-14 06:40:46 2019-09-14 06:50:41 t 1 1 97307 220 0.00 2019-09-14 06:50:56 2019-09-14 06:51:04 t 1 1 97311 445 0.00 2019-09-14 07:03:16 2019-09-14 07:04:50 t 1 1 97312 220 0.00 2019-09-14 07:02:00 2019-09-14 07:11:54 t 1 1 97314 412 0.00 2019-09-14 04:07:52 2019-09-14 07:14:51 t 1 1 97315 220 0.00 2019-09-14 07:12:26 2019-09-14 07:22:23 t 1 1 97318 220 0.00 2019-09-14 07:23:39 2019-09-14 07:32:52 t 1 1 97321 220 0.00 2019-09-14 07:33:24 2019-09-14 07:33:32 t 1 1 97325 220 0.00 2019-09-14 07:44:10 2019-09-14 07:44:19 t 1 1 97326 220 0.00 2019-09-14 07:45:00 2019-09-14 07:46:40 t 1 1 97329 220 0.00 2019-09-14 07:51:16 2019-09-14 07:57:09 t 1 1 97334 220 0.00 2019-09-14 07:58:12 2019-09-14 07:58:22 t 1 1 97337 402 0.00 2019-09-14 08:07:52 2019-09-14 08:07:53 t 1 2 97339 400 0.00 2019-09-14 08:04:56 2019-09-14 08:08:07 t 1 1 97345 220 0.00 2019-09-14 08:10:41 2019-09-14 08:11:35 t 1 1 97351 400 0.00 2019-09-14 08:19:17 2019-09-14 08:21:25 t 1 1 97356 220 0.00 2019-09-14 08:32:03 2019-09-14 08:41:42 t 1 1 97361 220 0.00 2019-09-14 08:52:32 2019-09-14 08:52:39 t 1 1 97363 400 0.00 2019-09-14 08:53:03 2019-09-14 08:54:48 t 1 1 97364 220 0.00 2019-09-14 09:03:00 2019-09-14 09:03:08 t 1 1 97365 220 0.00 2019-09-14 09:03:15 2019-09-14 09:03:24 t 1 1 97368 445 0.00 2019-09-14 09:07:43 2019-09-14 09:08:47 t 1 1 97370 220 0.00 2019-09-14 09:13:45 2019-09-14 09:13:54 t 1 1 97373 445 0.00 2019-09-14 09:15:13 2019-09-14 09:17:48 t 1 1 97377 220 0.00 2019-09-14 09:24:45 2019-09-14 09:24:53 t 1 1 97381 416 0.00 2019-09-14 09:23:45 2019-09-14 09:30:45 t 1 1 97396 416 0.00 2019-09-14 09:54:50 2019-09-14 10:13:52 t 1 1 97397 220 0.00 2019-09-14 10:18:16 2019-09-14 10:18:26 t 1 1 97398 220 0.00 2019-09-14 10:18:35 2019-09-14 10:18:37 t 1 1 97400 451 0.00 2019-09-14 10:15:04 2019-09-14 10:23:29 t 1 1 97401 445 0.00 2019-09-14 10:22:49 2019-09-14 10:24:30 t 1 1 97402 327 0.00 2019-09-14 10:18:31 2019-09-14 10:27:36 t 1 1 97405 451 0.00 2019-09-14 10:23:29 2019-09-14 10:33:17 t 1 1 97407 306 0.00 2019-09-14 10:33:37 2019-09-14 10:34:54 t 1 1 97411 451 0.00 2019-09-14 10:33:27 2019-09-14 10:43:41 t 1 1 97414 451 0.00 2019-09-14 10:43:41 2019-09-14 10:50:43 t 1 1 97419 451 0.00 2019-09-14 10:59:08 2019-09-14 11:08:00 t 1 1 97424 379 0.00 2019-09-14 11:20:37 2019-09-14 11:20:38 t 1 2 97425 220 0.00 2019-09-14 11:21:40 2019-09-14 11:21:48 t 1 1 97427 432 0.00 2019-09-14 11:14:06 2019-09-14 11:23:14 t 1 1 97432 420 0.00 2019-09-14 11:30:10 2019-09-14 11:30:56 t 1 1 97435 220 0.00 2019-09-14 11:32:39 2019-09-14 11:32:47 t 1 1 97441 445 0.00 2019-09-14 11:40:59 2019-09-14 11:41:36 t 1 1 97443 220 0.00 2019-09-14 11:43:39 2019-09-14 11:43:47 t 1 1 97444 306 0.00 2019-09-14 11:36:43 2019-09-14 11:47:11 t 1 1 97445 432 0.00 2019-09-14 11:27:56 2019-09-14 11:48:45 t 1 1 97452 220 0.00 2019-09-14 11:55:07 2019-09-14 11:55:14 t 1 1 97453 306 0.00 2019-09-14 11:59:32 2019-09-14 12:04:15 t 1 1 97459 451 0.00 2019-09-14 12:03:32 2019-09-14 12:12:01 t 1 1 97461 220 0.00 2019-09-14 12:06:06 2019-09-14 12:16:04 t 1 1 97466 306 0.00 2019-09-14 12:20:40 2019-09-14 12:23:08 t 1 1 97366 445 0.00 2019-09-14 07:04:55 2019-09-14 09:06:23 t 1 1 97367 445 0.00 2019-09-14 09:06:31 2019-09-14 09:07:42 t 1 1 97371 220 0.00 2019-09-14 09:14:01 2019-09-14 09:14:09 t 1 1 97372 327 0.00 2019-09-14 09:14:54 2019-09-14 09:15:05 t 1 1 97375 445 0.00 2019-09-14 09:18:43 2019-09-14 09:24:14 t 1 1 97378 375 0.00 2019-09-14 09:16:20 2019-09-14 09:24:56 t 1 1 97383 416 0.00 2019-09-14 09:32:24 2019-09-14 09:35:49 t 1 1 97384 220 0.00 2019-09-14 09:36:14 2019-09-14 09:36:22 t 1 1 97387 220 0.00 2019-09-14 09:46:46 2019-09-14 09:46:48 t 1 1 97390 416 0.00 2019-09-14 09:47:44 2019-09-14 09:53:08 t 1 1 97393 445 0.00 2019-09-14 09:26:54 2019-09-14 09:58:01 t 1 1 97394 461 0.00 2019-09-14 09:23:41 2019-09-14 10:03:44 t 1 2 97408 306 0.00 2019-09-14 10:34:53 2019-09-14 10:37:24 t 1 1 97410 445 0.00 2019-09-14 10:24:30 2019-09-14 10:41:20 t 1 1 97413 220 0.00 2019-09-14 10:50:12 2019-09-14 10:50:20 t 1 1 97415 451 0.00 2019-09-14 10:50:43 2019-09-14 10:59:08 t 1 1 97418 220 0.00 2019-09-14 10:06:48 2019-09-14 11:05:59 t 1 2 97420 456 0.00 2019-09-14 11:08:00 2019-09-14 11:10:57 t 1 1 97421 220 0.00 2019-09-14 11:11:10 2019-09-14 11:11:19 t 1 1 97426 220 0.00 2019-09-14 11:21:56 2019-09-14 11:22:03 t 1 1 97428 296 0.00 2019-09-14 11:19:34 2019-09-14 11:24:58 t 1 2 97429 420 0.00 2019-09-14 11:22:55 2019-09-14 11:25:52 t 1 1 97431 306 0.00 2019-09-14 10:38:53 2019-09-14 11:30:28 t 1 1 97433 445 0.00 2019-09-14 11:18:19 2019-09-14 11:31:09 t 1 1 97436 220 0.00 2019-09-14 11:32:55 2019-09-14 11:33:03 t 1 1 97437 220 0.00 2019-09-14 11:33:10 2019-09-14 11:33:18 t 1 1 97438 461 0.00 2019-09-14 11:28:22 2019-09-14 11:38:27 t 1 2 97440 420 0.00 2019-09-14 11:30:59 2019-09-14 11:40:00 t 1 1 97442 220 0.00 2019-09-14 11:42:42 2019-09-14 11:43:39 t 1 1 97446 420 0.00 2019-09-14 11:40:04 2019-09-14 11:48:53 t 1 1 97447 451 0.00 2019-09-14 11:35:34 2019-09-14 11:52:48 t 1 1 97448 220 0.00 2019-09-14 11:44:14 2019-09-14 11:54:08 t 1 1 97451 220 0.00 2019-09-14 11:54:52 2019-09-14 11:54:59 t 1 1 97455 220 0.00 2019-09-14 12:05:35 2019-09-14 12:05:43 t 1 1 97457 432 0.00 2019-09-14 11:48:45 2019-09-14 12:09:22 t 1 1 97465 456 0.00 2019-09-14 12:12:51 2019-09-14 12:16:43 t 1 1 97467 451 0.00 2019-09-14 12:21:08 2019-09-14 12:23:24 t 1 1 97473 420 0.00 2019-09-14 12:30:59 2019-09-14 12:38:40 t 1 1 97476 296 0.00 2019-09-14 12:40:35 2019-09-14 12:41:58 t 1 2 97478 220 0.00 2019-09-14 12:36:29 2019-09-14 12:44:41 t 1 1 97480 451 0.00 2019-09-14 12:39:39 2019-09-14 12:48:43 t 1 1 97482 220 0.00 2019-09-14 12:49:52 2019-09-14 12:49:53 t 1 1 97484 220 0.00 2019-09-14 12:50:26 2019-09-14 12:50:27 t 1 1 97487 220 0.00 2019-09-14 12:52:42 2019-09-14 12:52:44 t 1 1 97489 220 0.00 2019-09-14 12:39:10 2019-09-14 12:54:07 t 1 1 97494 416 0.00 2019-09-14 12:56:15 2019-09-14 13:03:06 t 1 1 97498 416 0.00 2019-09-14 13:06:18 2019-09-14 13:07:45 t 1 1 97506 432 0.00 2019-09-14 13:10:15 2019-09-14 13:20:10 t 1 1 97511 220 0.00 2019-09-14 13:24:16 2019-09-14 13:24:50 t 1 1 97512 416 0.00 2019-09-14 13:24:17 2019-09-14 13:26:21 t 1 1 97517 445 0.00 2019-09-14 12:43:49 2019-09-14 13:37:24 t 1 1 97518 461 0.00 2019-09-14 12:45:42 2019-09-14 13:40:47 t 1 2 97520 220 0.00 2019-09-14 13:45:16 2019-09-14 13:45:27 t 1 1 97522 451 0.00 2019-09-14 13:52:50 2019-09-14 13:57:38 t 1 1 97524 461 0.00 2019-09-14 13:56:25 2019-09-14 14:06:31 t 1 2 97526 220 0.00 2019-09-14 14:06:46 2019-09-14 14:06:54 t 1 1 97531 400 0.00 2019-09-14 13:47:44 2019-09-14 14:12:37 t 1 1 97535 445 0.00 2019-09-14 13:38:04 2019-09-14 14:21:35 t 1 1 97540 220 0.00 2019-09-14 14:27:42 2019-09-14 14:28:17 t 1 1 97542 327 0.00 2019-09-14 14:28:34 2019-09-14 14:28:47 t 1 1 97547 445 0.00 2019-09-14 14:33:31 2019-09-14 14:36:08 t 1 1 97548 220 0.00 2019-09-14 14:38:14 2019-09-14 14:38:49 t 1 1 97553 220 0.00 2019-09-14 14:49:56 2019-09-14 14:50:04 t 1 1 97558 220 0.00 2019-09-14 14:56:10 2019-09-14 14:56:23 t 1 1 97564 400 0.00 2019-09-14 15:11:01 2019-09-14 15:12:47 t 1 1 97565 432 0.00 2019-09-14 15:09:37 2019-09-14 15:14:55 t 1 1 97568 220 0.00 2019-09-14 14:43:59 2019-09-14 15:17:27 t 1 2 97570 445 0.00 2019-09-14 15:14:55 2019-09-14 15:25:10 t 1 1 97571 416 0.00 2019-09-14 15:01:00 2019-09-14 15:25:44 t 1 1 97572 416 0.00 2019-09-14 15:25:51 2019-09-14 15:28:56 t 1 1 97578 220 0.00 2019-09-14 15:31:48 2019-09-14 15:31:56 t 1 1 97580 220 0.00 2019-09-14 15:35:02 2019-09-14 15:35:10 t 1 1 97585 392 0.00 2019-09-14 15:43:39 2019-09-14 15:43:39 t 1 2 97589 432 0.00 2019-09-14 15:47:22 2019-09-14 15:49:23 t 1 1 97593 395 0.00 2019-09-14 14:35:24 2019-09-14 15:53:48 t 1 2 97595 416 0.00 2019-09-14 15:55:11 2019-09-14 15:55:16 t 1 1 97598 220 0.00 2019-09-14 15:57:30 2019-09-14 15:57:38 t 1 1 97602 220 0.00 2019-09-14 15:58:25 2019-09-14 15:58:26 t 1 1 97603 220 0.00 2019-09-14 15:59:41 2019-09-14 15:59:52 t 1 1 97604 327 0.00 2019-09-14 15:30:05 2019-09-14 16:03:35 t 1 1 97606 432 0.00 2019-09-14 15:55:59 2019-09-14 16:04:13 t 1 1 97608 327 0.00 2019-09-14 16:05:47 2019-09-14 16:06:20 t 1 1 97614 247 0.00 2019-09-14 16:08:44 2019-09-14 16:11:43 t 1 2 97622 306 0.00 2019-09-14 16:28:27 2019-09-14 16:29:40 t 1 1 97624 432 0.00 2019-09-14 16:33:39 2019-09-14 16:37:12 t 1 1 97626 306 0.00 2019-09-14 16:40:39 2019-09-14 16:44:02 t 1 1 97627 395 0.00 2019-09-14 16:13:15 2019-09-14 16:49:47 t 1 2 97628 395 0.00 2019-09-14 16:50:17 2019-09-14 16:52:40 t 1 2 97638 288 0.00 2019-09-14 17:27:46 2019-09-14 17:30:48 t 1 1 97641 395 0.00 2019-09-14 17:09:25 2019-09-14 17:33:49 t 1 2 97642 402 0.00 2019-09-14 17:34:53 2019-09-14 17:34:53 t 1 2 97644 451 0.00 2019-09-14 17:19:37 2019-09-14 17:38:43 t 1 1 97645 416 0.00 2019-09-14 17:35:21 2019-09-14 17:40:11 t 1 1 97648 288 0.00 2019-09-14 17:33:28 2019-09-14 17:45:33 t 1 1 97650 288 0.00 2019-09-14 17:46:40 2019-09-14 17:58:24 t 1 1 97660 461 0.00 2019-09-14 18:00:54 2019-09-14 18:10:59 t 1 2 97661 379 0.00 2019-09-14 18:07:24 2019-09-14 18:15:02 t 1 1 97665 416 0.00 2019-09-14 18:15:16 2019-09-14 18:36:40 t 1 1 97667 288 0.00 2019-09-14 18:29:35 2019-09-14 18:40:05 t 1 1 97672 220 0.00 2019-09-14 18:51:37 2019-09-14 18:53:21 t 1 1 97680 451 0.00 2019-09-14 18:58:00 2019-09-14 19:07:47 t 1 1 97681 220 0.00 2019-09-14 19:00:28 2019-09-14 19:09:38 t 1 1 97682 432 0.00 2019-09-14 19:11:18 2019-09-14 19:16:51 t 1 1 97684 335 0.00 2019-09-14 19:17:57 2019-09-14 19:18:55 t 1 2 97687 335 0.00 2019-09-14 19:19:58 2019-09-14 19:20:49 t 1 2 97691 432 0.00 2019-09-14 19:32:01 2019-09-14 19:32:41 t 1 1 97697 220 0.00 2019-09-14 19:40:01 2019-09-14 19:50:45 t 1 1 97388 416 0.00 2019-09-14 09:43:53 2019-09-14 09:47:33 t 1 1 97389 379 0.00 2019-09-14 09:52:49 2019-09-14 09:52:50 t 1 2 97391 327 0.00 2019-09-14 09:57:11 2019-09-14 09:57:12 t 1 1 97392 220 0.00 2019-09-14 09:57:12 2019-09-14 09:57:21 t 1 1 97395 220 0.00 2019-09-14 10:07:43 2019-09-14 10:07:44 t 1 1 97399 445 0.00 2019-09-14 09:58:10 2019-09-14 10:22:49 t 1 1 97403 375 0.00 2019-09-14 09:41:39 2019-09-14 10:27:44 t 1 1 97404 220 0.00 2019-09-14 10:28:58 2019-09-14 10:29:07 t 1 1 97406 451 0.00 2019-09-14 10:33:17 2019-09-14 10:33:18 t 1 1 97409 220 0.00 2019-09-14 10:39:27 2019-09-14 10:39:34 t 1 1 97412 220 0.00 2019-09-14 10:49:56 2019-09-14 10:50:04 t 1 1 97416 445 0.00 2019-09-14 10:42:26 2019-09-14 10:59:13 t 1 1 97417 220 0.00 2019-09-14 11:00:41 2019-09-14 11:00:49 t 1 1 97422 445 0.00 2019-09-14 10:59:13 2019-09-14 11:18:17 t 1 1 97423 456 0.00 2019-09-14 11:12:16 2019-09-14 11:19:25 t 1 1 97430 420 0.00 2019-09-14 11:25:52 2019-09-14 11:30:10 t 1 1 97434 220 0.00 2019-09-14 11:32:24 2019-09-14 11:32:32 t 1 1 97439 445 0.00 2019-09-14 11:31:32 2019-09-14 11:39:45 t 1 1 97449 220 0.00 2019-09-14 11:54:08 2019-09-14 11:54:15 t 1 1 97450 220 0.00 2019-09-14 11:54:42 2019-09-14 11:54:52 t 1 1 97454 220 0.00 2019-09-14 11:55:25 2019-09-14 12:05:35 t 1 1 97456 445 0.00 2019-09-14 11:41:36 2019-09-14 12:07:56 t 1 1 97458 306 0.00 2019-09-14 12:07:49 2019-09-14 12:09:41 t 1 1 97460 306 0.00 2019-09-14 12:10:48 2019-09-14 12:15:38 t 1 1 97462 220 0.00 2019-09-14 12:16:04 2019-09-14 12:16:12 t 1 1 97463 220 0.00 2019-09-14 12:16:19 2019-09-14 12:16:28 t 1 1 97464 220 0.00 2019-09-14 12:16:35 2019-09-14 12:16:37 t 1 1 97469 432 0.00 2019-09-14 12:09:22 2019-09-14 12:27:56 t 1 1 97470 220 0.00 2019-09-14 12:27:58 2019-09-14 12:28:08 t 1 1 97471 420 0.00 2019-09-14 12:29:26 2019-09-14 12:30:56 t 1 1 97472 220 0.00 2019-09-14 12:16:36 2019-09-14 12:31:41 t 1 1 97474 220 0.00 2019-09-14 12:38:40 2019-09-14 12:38:50 t 1 1 97479 432 0.00 2019-09-14 12:27:56 2019-09-14 12:46:57 t 1 1 97488 220 0.00 2019-09-14 12:50:37 2019-09-14 12:53:23 t 1 1 97491 220 0.00 2019-09-14 12:51:47 2019-09-14 12:59:11 t 1 2 97493 220 0.00 2019-09-14 12:59:56 2019-09-14 13:03:04 t 1 1 97496 416 0.00 2019-09-14 13:04:34 2019-09-14 13:05:43 t 1 1 97497 422 0.00 2019-09-14 13:03:22 2019-09-14 13:06:38 t 1 1 97499 432 0.00 2019-09-14 12:46:57 2019-09-14 13:10:15 t 1 1 97500 220 0.00 2019-09-14 13:03:38 2019-09-14 13:13:39 t 1 1 97502 416 0.00 2019-09-14 13:07:45 2019-09-14 13:15:15 t 1 1 97503 220 0.00 2019-09-14 13:14:12 2019-09-14 13:18:06 t 1 1 97504 400 0.00 2019-09-14 13:18:13 2019-09-14 13:18:44 t 1 1 97505 416 0.00 2019-09-14 13:18:44 2019-09-14 13:19:39 t 1 1 97507 402 0.00 2019-09-14 13:21:12 2019-09-14 13:21:13 t 1 2 97508 402 0.00 2019-09-14 13:21:21 2019-09-14 13:21:21 t 1 2 97510 416 0.00 2019-09-14 13:20:31 2019-09-14 13:23:41 t 1 1 97514 416 0.00 2019-09-14 13:26:21 2019-09-14 13:30:49 t 1 1 97515 306 0.00 2019-09-14 13:21:47 2019-09-14 13:33:01 t 1 1 97516 220 0.00 2019-09-14 13:34:45 2019-09-14 13:35:21 t 1 1 97521 220 0.00 2019-09-14 13:55:44 2019-09-14 13:56:20 t 1 1 97527 456 0.00 2019-09-14 13:57:24 2019-09-14 14:06:56 t 1 1 97529 456 0.00 2019-09-14 14:08:36 2019-09-14 14:08:43 t 1 1 97532 416 0.00 2019-09-14 14:12:49 2019-09-14 14:15:57 t 1 1 97543 379 0.00 2019-09-14 12:26:00 2019-09-14 14:29:19 t 1 1 97544 451 0.00 2019-09-14 14:23:41 2019-09-14 14:32:44 t 1 1 97549 220 0.00 2019-09-14 14:38:57 2019-09-14 14:39:05 t 1 1 97550 451 0.00 2019-09-14 14:32:44 2019-09-14 14:42:54 t 1 1 97551 220 0.00 2019-09-14 14:49:26 2019-09-14 14:49:34 t 1 1 97557 416 0.00 2019-09-14 14:54:16 2019-09-14 14:56:02 t 1 1 97559 445 0.00 2019-09-14 14:56:23 2019-09-14 14:58:27 t 1 1 97561 400 0.00 2019-09-14 14:57:04 2019-09-14 15:07:58 t 1 1 97566 220 0.00 2019-09-14 15:12:44 2019-09-14 15:14:55 t 1 1 97573 327 0.00 2019-09-14 14:29:19 2019-09-14 15:29:37 t 1 1 97575 432 0.00 2019-09-14 15:25:09 2019-09-14 15:30:22 t 1 1 97581 220 0.00 2019-09-14 15:35:17 2019-09-14 15:35:25 t 1 1 97586 432 0.00 2019-09-14 15:43:51 2019-09-14 15:45:20 t 1 1 97587 220 0.00 2019-09-14 15:46:01 2019-09-14 15:46:38 t 1 1 97590 372 0.00 2019-09-14 15:51:24 2019-09-14 15:51:25 t 1 2 97591 416 0.00 2019-09-14 15:47:28 2019-09-14 15:52:51 t 1 1 97594 400 0.00 2019-09-14 15:52:51 2019-09-14 15:55:11 t 1 1 97599 220 0.00 2019-09-14 15:57:45 2019-09-14 15:57:54 t 1 1 97605 327 0.00 2019-09-14 16:03:52 2019-09-14 16:04:06 t 1 1 97607 327 0.00 2019-09-14 16:04:16 2019-09-14 16:05:26 t 1 1 97611 379 0.00 2019-09-14 16:08:13 2019-09-14 16:09:03 t 1 1 97612 432 0.00 2019-09-14 16:09:03 2019-09-14 16:09:21 t 1 1 97615 296 0.00 2019-09-14 16:11:47 2019-09-14 16:14:08 t 1 2 97616 432 0.00 2019-09-14 16:14:58 2019-09-14 16:15:27 t 1 1 97617 411 0.00 2019-09-14 13:27:03 2019-09-14 16:17:14 t 1 1 97618 416 0.00 2019-09-14 16:10:11 2019-09-14 16:17:37 t 1 1 97619 288 0.00 2019-09-14 16:17:37 2019-09-14 16:18:43 t 1 1 97620 306 0.00 2019-09-14 16:15:17 2019-09-14 16:23:36 t 1 1 97621 400 0.00 2019-09-14 16:22:36 2019-09-14 16:27:20 t 1 1 97625 432 0.00 2019-09-14 16:37:57 2019-09-14 16:43:49 t 1 1 97635 416 0.00 2019-09-14 17:15:52 2019-09-14 17:26:52 t 1 1 97636 461 0.00 2019-09-14 17:24:23 2019-09-14 17:27:23 t 1 2 97640 288 0.00 2019-09-14 17:31:27 2019-09-14 17:33:28 t 1 1 97643 402 0.00 2019-09-14 17:35:03 2019-09-14 17:35:04 t 1 2 97646 306 0.00 2019-09-14 17:40:11 2019-09-14 17:41:49 t 1 1 97649 306 0.00 2019-09-14 17:52:37 2019-09-14 17:54:33 t 1 1 97652 416 0.00 2019-09-14 17:57:41 2019-09-14 17:58:29 t 1 1 97653 288 0.00 2019-09-14 17:58:29 2019-09-14 17:59:29 t 1 1 97654 400 0.00 2019-09-14 18:01:48 2019-09-14 18:03:57 t 1 1 97655 445 0.00 2019-09-14 18:04:52 2019-09-14 18:06:46 t 1 1 97656 445 0.00 2019-09-14 18:06:46 2019-09-14 18:07:24 t 1 1 97659 402 0.00 2019-09-14 18:10:21 2019-09-14 18:10:21 t 1 2 97662 288 0.00 2019-09-14 18:14:44 2019-09-14 18:15:57 t 1 1 97670 296 0.00 2019-09-14 18:37:28 2019-09-14 18:41:51 t 1 2 97673 288 0.00 2019-09-14 18:46:53 2019-09-14 18:53:44 t 1 1 97674 288 0.00 2019-09-14 18:53:44 2019-09-14 18:54:38 t 1 1 97676 416 0.00 2019-09-14 18:53:21 2019-09-14 19:00:28 t 1 1 97677 445 0.00 2019-09-14 18:37:36 2019-09-14 19:01:58 t 1 1 97683 335 0.00 2019-09-14 19:16:37 2019-09-14 19:17:34 t 1 2 97686 432 0.00 2019-09-14 19:19:01 2019-09-14 19:19:47 t 1 1 97688 445 0.00 2019-09-14 19:06:31 2019-09-14 19:23:28 t 1 1 97690 432 0.00 2019-09-14 19:26:08 2019-09-14 19:26:45 t 1 1 97692 462 0.00 2019-09-14 19:24:01 2019-09-14 19:33:21 t 1 1 97468 379 0.00 2019-09-14 12:01:56 2019-09-14 12:26:00 t 1 1 97475 220 0.00 2019-09-14 12:38:59 2019-09-14 12:39:00 t 1 1 97477 445 0.00 2019-09-14 12:07:56 2019-09-14 12:43:50 t 1 1 97481 220 0.00 2019-09-14 12:49:33 2019-09-14 12:49:42 t 1 1 97483 220 0.00 2019-09-14 12:50:03 2019-09-14 12:50:16 t 1 1 97485 451 0.00 2019-09-14 12:49:06 2019-09-14 12:52:05 t 1 1 97486 220 0.00 2019-09-14 12:52:05 2019-09-14 12:52:18 t 1 1 97490 420 0.00 2019-09-14 12:55:49 2019-09-14 12:57:01 t 1 1 97492 420 0.00 2019-09-14 12:57:13 2019-09-14 12:59:48 t 1 1 97495 220 0.00 2019-09-14 13:03:04 2019-09-14 13:03:39 t 1 1 97501 220 0.00 2019-09-14 13:13:39 2019-09-14 13:14:12 t 1 1 97509 402 0.00 2019-09-14 13:21:42 2019-09-14 13:21:42 t 1 2 97513 422 0.00 2019-09-14 13:06:38 2019-09-14 13:28:14 t 1 1 97519 416 0.00 2019-09-14 13:36:02 2019-09-14 13:45:16 t 1 1 97523 220 0.00 2019-09-14 14:06:15 2019-09-14 14:06:23 t 1 1 97525 220 0.00 2019-09-14 14:06:30 2019-09-14 14:06:38 t 1 1 97528 327 0.00 2019-09-14 13:25:26 2019-09-14 14:08:07 t 1 1 97530 456 0.00 2019-09-14 14:06:56 2019-09-14 14:09:31 t 1 1 97533 220 0.00 2019-09-14 14:17:15 2019-09-14 14:17:22 t 1 1 97534 220 0.00 2019-09-14 14:19:38 2019-09-14 14:20:32 t 1 1 97536 436 0.00 2019-09-14 14:14:49 2019-09-14 14:21:49 t 1 1 97537 416 0.00 2019-09-14 14:16:14 2019-09-14 14:22:38 t 1 1 97538 451 0.00 2019-09-14 14:12:44 2019-09-14 14:23:30 t 1 1 97539 416 0.00 2019-09-14 14:22:47 2019-09-14 14:27:05 t 1 1 97541 327 0.00 2019-09-14 14:08:07 2019-09-14 14:28:19 t 1 1 97545 445 0.00 2019-09-14 14:21:51 2019-09-14 14:32:59 t 1 1 97546 416 0.00 2019-09-14 14:27:11 2019-09-14 14:33:41 t 1 1 97552 220 0.00 2019-09-14 14:49:41 2019-09-14 14:49:49 t 1 1 97554 451 0.00 2019-09-14 14:42:54 2019-09-14 14:52:17 t 1 1 97555 416 0.00 2019-09-14 14:37:52 2019-09-14 14:54:09 t 1 1 97556 220 0.00 2019-09-14 14:55:02 2019-09-14 14:55:45 t 1 1 97560 416 0.00 2019-09-14 14:56:18 2019-09-14 14:58:51 t 1 1 97562 451 0.00 2019-09-14 14:52:17 2019-09-14 15:08:23 t 1 1 97563 445 0.00 2019-09-14 14:58:33 2019-09-14 15:12:44 t 1 1 97567 451 0.00 2019-09-14 15:08:23 2019-09-14 15:16:59 t 1 1 97569 306 0.00 2019-09-14 15:15:54 2019-09-14 15:17:32 t 1 1 97574 327 0.00 2019-09-14 15:29:50 2019-09-14 15:29:58 t 1 1 97576 220 0.00 2019-09-14 15:27:28 2019-09-14 15:31:09 t 1 1 97577 432 0.00 2019-09-14 15:31:39 2019-09-14 15:31:48 t 1 1 97579 416 0.00 2019-09-14 15:31:01 2019-09-14 15:34:56 t 1 1 97582 220 0.00 2019-09-14 15:35:33 2019-09-14 15:35:42 t 1 1 97583 451 0.00 2019-09-14 15:24:54 2019-09-14 15:37:25 t 1 1 97584 432 0.00 2019-09-14 15:37:58 2019-09-14 15:38:38 t 1 1 97588 416 0.00 2019-09-14 15:35:20 2019-09-14 15:47:20 t 1 1 97592 432 0.00 2019-09-14 15:52:30 2019-09-14 15:53:07 t 1 1 97596 220 0.00 2019-09-14 15:56:32 2019-09-14 15:56:39 t 1 1 97597 220 0.00 2019-09-14 15:57:15 2019-09-14 15:57:22 t 1 1 97600 220 0.00 2019-09-14 15:58:01 2019-09-14 15:58:08 t 1 1 97601 220 0.00 2019-09-14 15:58:16 2019-09-14 15:58:17 t 1 1 97609 432 0.00 2019-09-14 16:05:55 2019-09-14 16:06:36 t 1 1 97610 327 0.00 2019-09-14 16:07:06 2019-09-14 16:07:25 t 1 1 97613 432 0.00 2019-09-14 16:09:30 2019-09-14 16:09:44 t 1 1 97623 432 0.00 2019-09-14 16:16:47 2019-09-14 16:31:26 t 1 1 97629 432 0.00 2019-09-14 16:46:30 2019-09-14 16:52:48 t 1 1 97630 400 0.00 2019-09-14 17:03:56 2019-09-14 17:05:31 t 1 1 97631 327 0.00 2019-09-14 16:17:14 2019-09-14 17:06:27 t 1 1 97632 416 0.00 2019-09-14 16:18:43 2019-09-14 17:15:32 t 1 1 97633 327 0.00 2019-09-14 17:06:27 2019-09-14 17:23:21 t 1 1 97634 461 0.00 2019-09-14 17:14:41 2019-09-14 17:24:46 t 1 2 97637 288 0.00 2019-09-14 17:26:52 2019-09-14 17:27:47 t 1 1 97639 445 0.00 2019-09-14 17:05:42 2019-09-14 17:32:40 t 1 1 97647 451 0.00 2019-09-14 17:38:43 2019-09-14 17:42:15 t 1 1 97651 379 0.00 2019-09-14 17:32:40 2019-09-14 17:58:25 t 1 1 97657 379 0.00 2019-09-14 18:00:10 2019-09-14 18:07:25 t 1 1 97658 456 0.00 2019-09-14 17:51:45 2019-09-14 18:09:59 t 1 1 97663 288 0.00 2019-09-14 18:16:20 2019-09-14 18:25:34 t 1 1 97664 445 0.00 2019-09-14 18:15:07 2019-09-14 18:28:11 t 1 1 97666 461 0.00 2019-09-14 18:29:56 2019-09-14 18:40:01 t 1 2 97668 306 0.00 2019-09-14 18:36:40 2019-09-14 18:40:13 t 1 1 97669 288 0.00 2019-09-14 18:40:05 2019-09-14 18:41:16 t 1 1 97671 288 0.00 2019-09-14 18:41:15 2019-09-14 18:46:53 t 1 1 97675 451 0.00 2019-09-14 18:40:59 2019-09-14 18:58:00 t 1 1 97678 445 0.00 2019-09-14 19:02:40 2019-09-14 19:05:47 t 1 1 97679 445 0.00 2019-09-14 19:05:47 2019-09-14 19:06:32 t 1 1 97685 462 0.00 2019-09-14 19:19:45 2019-09-14 19:19:45 t 1 2 97689 432 0.00 2019-09-14 19:25:22 2019-09-14 19:26:22 t 1 1 97698 432 0.00 2019-09-14 20:00:01 2019-09-14 20:00:13 t 1 1 97701 306 0.00 2019-09-14 19:32:38 2019-09-14 20:02:28 t 1 1 97702 432 0.00 2019-09-14 20:03:21 2019-09-14 20:04:03 t 1 1 97703 290 0.00 2019-09-14 20:04:49 2019-09-14 20:04:50 t 1 2 97706 392 0.00 2019-09-14 20:05:45 2019-09-14 20:05:45 t 1 2 97709 288 0.00 2019-09-14 20:05:31 2019-09-14 20:10:34 t 1 1 97721 432 0.00 2019-09-14 20:38:41 2019-09-14 20:57:00 t 1 1 97724 432 0.00 2019-09-14 21:01:56 2019-09-14 21:02:35 t 1 1 97726 432 0.00 2019-09-14 21:08:07 2019-09-14 21:08:19 t 1 1 97736 400 0.00 2019-09-14 22:01:58 2019-09-14 22:04:54 t 1 1 97737 456 0.00 2019-09-14 22:03:54 2019-09-14 22:08:32 t 1 1 97739 327 0.00 2019-09-14 22:12:21 2019-09-14 22:12:45 t 1 1 97740 247 0.00 2019-09-14 22:11:54 2019-09-14 22:13:50 t 1 2 97742 445 0.00 2019-09-14 21:10:51 2019-09-14 22:15:38 t 1 1 97744 327 0.00 2019-09-14 22:21:38 2019-09-14 22:22:07 t 1 1 97746 327 0.00 2019-09-14 22:24:36 2019-09-14 22:24:48 t 1 1 97748 422 0.00 2019-09-14 22:29:22 2019-09-14 22:33:08 t 1 1 97750 220 0.00 2019-09-14 22:34:20 2019-09-14 22:35:17 t 1 2 97756 422 0.00 2019-09-14 22:43:32 2019-09-14 22:47:06 t 1 1 97757 220 0.00 2019-09-14 22:35:40 2019-09-14 22:49:03 t 1 2 97763 327 0.00 2019-09-14 22:55:52 2019-09-14 22:56:17 t 1 1 97765 445 0.00 2019-09-14 22:58:16 2019-09-14 22:58:46 t 1 1 97769 327 0.00 2019-09-14 23:07:07 2019-09-14 23:07:15 t 1 1 97774 220 0.00 2019-09-14 23:07:11 2019-09-14 23:18:13 t 1 1 97776 451 0.00 2019-09-14 23:12:16 2019-09-14 23:24:32 t 1 1 97777 456 0.00 2019-09-14 23:19:52 2019-09-14 23:27:42 t 1 1 97779 327 0.00 2019-09-14 23:28:20 2019-09-14 23:28:52 t 1 1 97784 422 0.00 2019-09-14 23:02:10 2019-09-14 23:41:46 t 1 1 97785 456 0.00 2019-09-14 23:30:17 2019-09-14 23:43:42 t 1 1 97786 392 0.00 2019-09-14 23:43:58 2019-09-14 23:43:58 t 1 2 97789 327 0.00 2019-09-14 23:45:28 2019-09-14 23:46:18 t 1 1 97693 432 0.00 2019-09-14 19:33:55 2019-09-14 19:34:05 t 1 1 97694 432 0.00 2019-09-14 19:39:15 2019-09-14 19:39:52 t 1 1 97695 432 0.00 2019-09-14 19:49:48 2019-09-14 19:50:13 t 1 1 97696 288 0.00 2019-09-14 19:23:27 2019-09-14 19:50:44 t 1 1 97699 288 0.00 2019-09-14 20:00:19 2019-09-14 20:01:07 t 1 1 97700 432 0.00 2019-09-14 20:01:33 2019-09-14 20:01:37 t 1 1 97704 290 0.00 2019-09-14 20:05:20 2019-09-14 20:05:20 t 1 2 97705 290 0.00 2019-09-14 20:05:39 2019-09-14 20:05:39 t 1 2 97707 290 0.00 2019-09-14 20:06:28 2019-09-14 20:07:25 t 1 2 97711 416 0.00 2019-09-14 19:51:15 2019-09-14 20:14:18 t 1 1 97712 462 0.00 2019-09-14 20:08:01 2019-09-14 20:27:46 t 1 1 97714 456 0.00 2019-09-14 20:37:50 2019-09-14 20:37:50 f 1 1 97715 306 0.00 2019-09-14 20:34:05 2019-09-14 20:38:22 t 1 1 97718 306 0.00 2019-09-14 20:45:54 2019-09-14 20:49:16 t 1 1 97725 432 0.00 2019-09-14 21:03:31 2019-09-14 21:04:16 t 1 1 97728 445 0.00 2019-09-14 20:56:06 2019-09-14 21:10:51 t 1 1 97730 220 0.00 2019-09-14 21:25:24 2019-09-14 21:29:47 t 1 2 97731 461 0.00 2019-09-14 21:48:11 2019-09-14 21:49:36 t 1 2 97732 327 0.00 2019-09-14 21:52:00 2019-09-14 21:52:29 t 1 1 97734 306 0.00 2019-09-14 21:06:13 2019-09-14 22:01:32 t 1 1 97735 327 0.00 2019-09-14 22:01:09 2019-09-14 22:02:16 t 1 1 97738 220 0.00 2019-09-14 22:02:28 2019-09-14 22:08:52 t 1 2 97745 306 0.00 2019-09-14 22:14:36 2019-09-14 22:24:35 t 1 1 97749 327 0.00 2019-09-14 22:33:08 2019-09-14 22:33:32 t 1 1 97752 247 0.00 2019-09-14 22:21:05 2019-09-14 22:38:25 t 1 2 97753 327 0.00 2019-09-14 22:38:54 2019-09-14 22:39:18 t 1 1 97754 327 0.00 2019-09-14 22:42:34 2019-09-14 22:42:59 t 1 1 97755 445 0.00 2019-09-14 22:24:54 2019-09-14 22:44:19 t 1 1 97759 327 0.00 2019-09-14 22:52:23 2019-09-14 22:53:27 t 1 1 97762 327 0.00 2019-09-14 22:54:40 2019-09-14 22:55:09 t 1 1 97766 422 0.00 2019-09-14 22:53:50 2019-09-14 23:02:10 t 1 1 97767 220 0.00 2019-09-14 23:00:46 2019-09-14 23:03:08 t 1 1 97770 451 0.00 2019-09-14 22:59:09 2019-09-14 23:12:16 t 1 1 97771 379 0.00 2019-09-14 22:50:11 2019-09-14 23:14:00 t 1 1 97772 296 0.00 2019-09-14 23:14:01 2019-09-14 23:15:21 t 1 2 97775 294 0.00 2019-09-14 21:46:12 2019-09-14 23:23:36 t 1 2 97781 451 0.00 2019-09-14 23:28:48 2019-09-14 23:38:31 t 1 1 97782 327 0.00 2019-09-14 23:39:00 2019-09-14 23:39:25 t 1 1 97788 392 0.00 2019-09-14 23:44:51 2019-09-14 23:44:51 t 1 2 97793 327 0.00 2019-09-14 23:55:40 2019-09-14 23:56:06 t 1 1 97798 327 0.00 2019-09-15 00:05:23 2019-09-15 00:05:47 t 1 1 97808 456 0.00 2019-09-15 00:33:18 2019-09-15 00:42:08 t 1 1 97810 451 0.00 2019-09-15 00:42:34 2019-09-15 00:43:36 t 1 1 97811 451 0.00 2019-09-15 00:43:15 2019-09-15 00:44:49 t 1 1 97813 327 0.00 2019-09-15 01:18:49 2019-09-15 01:18:50 t 1 1 97816 327 0.00 2019-09-15 01:33:16 2019-09-15 01:33:26 t 1 1 97819 327 0.00 2019-09-15 01:48:27 2019-09-15 01:50:23 t 1 1 97820 456 0.00 2019-09-15 00:43:36 2019-09-15 02:32:59 t 1 1 97822 456 0.00 2019-09-15 02:59:29 2019-09-15 04:30:48 t 1 1 97827 456 0.00 2019-09-15 04:30:51 2019-09-15 06:23:28 t 1 1 97834 288 0.00 2019-09-15 08:47:19 2019-09-15 08:52:56 t 1 1 97837 220 0.00 2019-09-15 09:20:20 2019-09-15 09:20:50 t 1 1 97838 288 0.00 2019-09-15 08:52:56 2019-09-15 09:26:53 t 1 1 97844 220 0.00 2019-09-15 09:41:48 2019-09-15 09:41:55 t 1 1 97849 306 0.00 2019-09-15 09:47:05 2019-09-15 09:58:18 t 1 1 97850 220 0.00 2019-09-15 10:03:22 2019-09-15 10:03:30 t 1 1 97852 416 0.00 2019-09-15 09:34:58 2019-09-15 10:09:13 t 1 1 97854 220 0.00 2019-09-15 10:13:51 2019-09-15 10:13:59 t 1 1 97855 220 0.00 2019-09-15 10:14:07 2019-09-15 10:14:15 t 1 1 97857 416 0.00 2019-09-15 10:11:55 2019-09-15 10:26:34 t 1 1 97860 395 0.00 2019-09-15 09:45:34 2019-09-15 10:31:56 t 1 2 97861 220 0.00 2019-09-15 10:35:05 2019-09-15 10:35:14 t 1 1 97863 220 0.00 2019-09-15 10:45:36 2019-09-15 10:46:10 t 1 1 97865 430 0.00 2019-09-15 10:48:18 2019-09-15 10:55:20 t 1 1 97866 220 0.00 2019-09-15 10:56:05 2019-09-15 10:56:14 t 1 1 97868 430 0.00 2019-09-15 10:55:38 2019-09-15 11:00:41 t 1 1 97870 220 0.00 2019-09-15 11:06:35 2019-09-15 11:07:11 t 1 1 97871 464 0.00 2019-09-15 11:07:33 2019-09-15 11:07:47 t 1 1 97876 220 0.00 2019-09-15 11:17:38 2019-09-15 11:17:46 t 1 1 97877 306 0.00 2019-09-15 10:09:32 2019-09-15 11:19:49 t 1 1 97880 220 0.00 2019-09-15 11:28:07 2019-09-15 11:28:43 t 1 1 97889 306 0.00 2019-09-15 11:40:59 2019-09-15 11:46:31 t 1 1 97891 220 0.00 2019-09-15 11:59:35 2019-09-15 12:00:12 t 1 1 97895 220 0.00 2019-09-15 12:10:23 2019-09-15 12:10:32 t 1 1 97899 220 0.00 2019-09-15 12:11:25 2019-09-15 12:11:34 t 1 1 97901 462 0.00 2019-09-15 11:45:06 2019-09-15 12:14:12 t 1 1 97902 420 0.00 2019-09-15 12:13:49 2019-09-15 12:19:07 t 1 1 97906 461 0.00 2019-09-15 12:24:19 2019-09-15 12:25:03 t 1 2 97908 461 0.00 2019-09-15 12:25:58 2019-09-15 12:26:00 t 1 2 97910 420 0.00 2019-09-15 12:22:56 2019-09-15 12:26:09 t 1 1 97916 220 0.00 2019-09-15 12:32:38 2019-09-15 12:32:46 t 1 1 97921 379 0.00 2019-09-15 10:03:05 2019-09-15 12:48:25 t 1 1 97923 430 0.00 2019-09-15 12:48:33 2019-09-15 12:53:32 t 1 1 97927 327 0.00 2019-09-15 13:00:05 2019-09-15 13:02:16 t 1 1 97929 306 0.00 2019-09-15 13:04:14 2019-09-15 13:10:35 t 1 1 97933 327 0.00 2019-09-15 13:05:03 2019-09-15 13:20:10 t 1 1 97934 422 0.00 2019-09-15 12:35:51 2019-09-15 13:24:31 t 1 1 97938 220 0.00 2019-09-15 13:25:47 2019-09-15 13:25:55 t 1 1 97941 420 0.00 2019-09-15 12:53:50 2019-09-15 13:33:01 t 1 1 97942 420 0.00 2019-09-15 13:33:05 2019-09-15 13:33:42 t 1 1 97943 430 0.00 2019-09-15 13:14:58 2019-09-15 13:34:22 t 1 1 97948 422 0.00 2019-09-15 13:40:15 2019-09-15 13:41:17 t 1 1 97952 420 0.00 2019-09-15 13:42:58 2019-09-15 13:43:41 t 1 1 97953 327 0.00 2019-09-15 13:43:34 2019-09-15 13:44:00 t 1 1 97954 306 0.00 2019-09-15 13:43:42 2019-09-15 13:47:11 t 1 1 97957 220 0.00 2019-09-15 13:53:55 2019-09-15 13:54:23 t 1 1 97964 451 0.00 2019-09-15 13:28:47 2019-09-15 14:14:21 t 1 1 97968 420 0.00 2019-09-15 14:15:26 2019-09-15 14:19:09 t 1 1 97972 327 0.00 2019-09-15 14:10:54 2019-09-15 14:26:41 t 1 1 97977 327 0.00 2019-09-15 14:30:11 2019-09-15 14:30:59 t 1 1 97981 400 0.00 2019-09-15 14:25:01 2019-09-15 14:36:00 t 1 1 97982 288 0.00 2019-09-15 14:20:30 2019-09-15 14:37:32 t 1 1 97985 220 0.00 2019-09-15 14:42:32 2019-09-15 14:43:42 t 1 1 97990 306 0.00 2019-09-15 14:44:34 2019-09-15 14:46:04 t 1 1 97992 220 0.00 2019-09-15 14:47:26 2019-09-15 14:48:01 t 1 1 97994 220 0.00 2019-09-15 14:49:51 2019-09-15 14:50:27 t 1 1 98002 220 0.00 2019-09-15 14:55:12 2019-09-15 14:56:46 t 1 1 97708 462 0.00 2019-09-14 19:33:21 2019-09-14 20:08:00 t 1 1 97710 247 0.00 2019-09-14 20:09:40 2019-09-14 20:10:55 t 1 2 97713 432 0.00 2019-09-14 20:10:34 2019-09-14 20:34:06 t 1 1 97716 327 0.00 2019-09-14 20:37:46 2019-09-14 20:38:29 t 1 1 97717 462 0.00 2019-09-14 20:27:47 2019-09-14 20:44:23 t 1 1 97719 445 0.00 2019-09-14 20:26:47 2019-09-14 20:55:34 t 1 1 97720 456 0.00 2019-09-14 20:38:06 2019-09-14 20:56:24 t 1 1 97722 306 0.00 2019-09-14 20:54:41 2019-09-14 20:57:28 t 1 1 97723 432 0.00 2019-09-14 20:59:51 2019-09-14 21:00:29 t 1 1 97727 432 0.00 2019-09-14 21:09:11 2019-09-14 21:10:24 t 1 1 97729 416 0.00 2019-09-14 21:17:05 2019-09-14 21:22:53 t 1 1 97733 327 0.00 2019-09-14 21:54:41 2019-09-14 22:00:02 t 1 1 97741 327 0.00 2019-09-14 22:12:53 2019-09-14 22:14:23 t 1 1 97743 327 0.00 2019-09-14 22:15:38 2019-09-14 22:16:09 t 1 1 97747 327 0.00 2019-09-14 22:28:13 2019-09-14 22:28:38 t 1 1 97751 220 0.00 2019-09-14 22:35:32 2019-09-14 22:35:36 t 1 2 97758 379 0.00 2019-09-14 22:33:12 2019-09-14 22:50:11 t 1 1 97760 422 0.00 2019-09-14 22:47:05 2019-09-14 22:53:50 t 1 1 97761 451 0.00 2019-09-14 22:43:25 2019-09-14 22:54:27 t 1 1 97764 445 0.00 2019-09-14 22:44:19 2019-09-14 22:57:42 t 1 1 97768 327 0.00 2019-09-14 23:06:39 2019-09-14 23:06:59 t 1 1 97773 327 0.00 2019-09-14 23:17:46 2019-09-14 23:18:12 t 1 1 97778 451 0.00 2019-09-14 23:24:32 2019-09-14 23:28:48 t 1 1 97780 456 0.00 2019-09-14 23:27:59 2019-09-14 23:29:57 t 1 1 97783 451 0.00 2019-09-14 23:38:30 2019-09-14 23:41:26 t 1 1 97787 327 0.00 2019-09-14 23:43:42 2019-09-14 23:44:17 t 1 1 97790 327 0.00 2019-09-14 23:52:36 2019-09-14 23:53:23 t 1 1 97795 456 0.00 2019-09-15 00:01:33 2019-09-15 00:02:09 t 1 1 97800 327 0.00 2019-09-15 00:09:44 2019-09-15 00:10:14 t 1 1 97801 327 0.00 2019-09-15 00:11:03 2019-09-15 00:11:30 t 1 1 97802 445 0.00 2019-09-14 22:58:46 2019-09-15 00:21:09 t 1 1 97803 451 0.00 2019-09-15 00:22:25 2019-09-15 00:23:46 t 1 1 97804 456 0.00 2019-09-15 00:23:46 2019-09-15 00:33:18 t 1 1 97805 400 0.00 2019-09-14 23:21:58 2019-09-15 00:34:59 t 1 1 97812 327 0.00 2019-09-15 00:53:31 2019-09-15 00:53:53 t 1 1 97818 327 0.00 2019-09-15 01:37:49 2019-09-15 01:38:16 t 1 1 97821 456 0.00 2019-09-15 02:33:21 2019-09-15 02:59:25 t 1 1 97823 445 0.00 2019-09-15 00:37:13 2019-09-15 04:35:43 t 1 1 97824 445 0.00 2019-09-15 04:35:45 2019-09-15 04:56:15 t 1 1 97825 445 0.00 2019-09-15 04:56:21 2019-09-15 05:32:15 t 1 1 97826 379 0.00 2019-09-14 23:14:00 2019-09-15 06:03:18 t 1 1 97830 220 0.00 2019-09-15 07:53:17 2019-09-15 07:59:51 t 1 1 97831 432 0.00 2019-09-14 21:22:53 2019-09-15 08:21:06 t 1 1 97833 306 0.00 2019-09-15 08:26:04 2019-09-15 08:44:51 t 1 1 97835 462 0.00 2019-09-15 09:00:02 2019-09-15 09:11:33 t 1 1 97839 220 0.00 2019-09-15 09:30:48 2019-09-15 09:30:59 t 1 1 97841 456 0.00 2019-09-15 09:28:02 2019-09-15 09:35:30 t 1 1 97842 220 0.00 2019-09-15 09:41:17 2019-09-15 09:41:25 t 1 1 97845 220 0.00 2019-09-15 09:42:02 2019-09-15 09:42:10 t 1 1 97846 220 0.00 2019-09-15 09:42:17 2019-09-15 09:42:25 t 1 1 97848 220 0.00 2019-09-15 09:52:46 2019-09-15 09:53:27 t 1 1 97851 400 0.00 2019-09-15 10:04:03 2019-09-15 10:06:01 t 1 1 97853 412 0.00 2019-09-14 07:57:54 2019-09-15 10:12:18 t 1 1 97856 220 0.00 2019-09-15 10:24:36 2019-09-15 10:25:10 t 1 1 97858 462 0.00 2019-09-15 09:11:33 2019-09-15 10:28:03 t 1 1 97867 392 0.00 2019-09-15 10:59:00 2019-09-15 10:59:01 t 1 2 97873 400 0.00 2019-09-15 11:03:03 2019-09-15 11:16:15 t 1 1 97874 220 0.00 2019-09-15 11:17:06 2019-09-15 11:17:15 t 1 1 97878 420 0.00 2019-09-15 11:23:20 2019-09-15 11:24:13 t 1 1 97883 420 0.00 2019-09-15 11:30:04 2019-09-15 11:37:42 t 1 1 97884 220 0.00 2019-09-15 11:38:37 2019-09-15 11:38:46 t 1 1 97886 420 0.00 2019-09-15 11:40:42 2019-09-15 11:42:16 t 1 1 97887 420 0.00 2019-09-15 11:42:21 2019-09-15 11:43:41 t 1 1 97888 462 0.00 2019-09-15 11:27:12 2019-09-15 11:45:07 t 1 1 97890 220 0.00 2019-09-15 11:49:06 2019-09-15 11:49:15 t 1 1 97892 306 0.00 2019-09-15 11:52:22 2019-09-15 12:02:36 t 1 1 97896 220 0.00 2019-09-15 12:10:39 2019-09-15 12:10:46 t 1 1 97900 220 0.00 2019-09-15 12:11:41 2019-09-15 12:11:49 t 1 1 97903 220 0.00 2019-09-15 12:22:09 2019-09-15 12:22:42 t 1 1 97909 461 0.00 2019-09-15 12:26:07 2019-09-15 12:26:08 t 1 2 97914 327 0.00 2019-09-15 12:27:43 2019-09-15 12:28:50 t 1 1 97917 422 0.00 2019-09-15 11:59:22 2019-09-15 12:35:51 t 1 1 97918 462 0.00 2019-09-15 12:14:59 2019-09-15 12:41:02 t 1 1 97920 220 0.00 2019-09-15 12:43:07 2019-09-15 12:43:43 t 1 1 97924 220 0.00 2019-09-15 12:53:38 2019-09-15 12:53:46 t 1 1 97928 220 0.00 2019-09-15 13:04:06 2019-09-15 13:04:42 t 1 1 97932 456 0.00 2019-09-15 13:11:43 2019-09-15 13:16:59 t 1 1 97936 220 0.00 2019-09-15 13:25:17 2019-09-15 13:25:25 t 1 1 97939 220 0.00 2019-09-15 13:26:02 2019-09-15 13:26:10 t 1 1 97940 220 0.00 2019-09-15 13:26:17 2019-09-15 13:26:25 t 1 1 97945 220 0.00 2019-09-15 13:36:46 2019-09-15 13:37:20 t 1 1 97946 422 0.00 2019-09-15 13:40:14 2019-09-15 13:40:15 t 1 2 97951 420 0.00 2019-09-15 13:33:44 2019-09-15 13:42:46 t 1 1 97955 220 0.00 2019-09-15 13:50:41 2019-09-15 13:50:51 t 1 1 97956 327 0.00 2019-09-15 13:45:34 2019-09-15 13:52:32 t 1 1 97958 220 0.00 2019-09-15 13:54:33 2019-09-15 13:54:33 t 1 1 97959 306 0.00 2019-09-15 13:48:20 2019-09-15 13:55:28 t 1 1 97960 327 0.00 2019-09-15 13:56:31 2019-09-15 14:00:54 t 1 1 97961 220 0.00 2019-09-15 14:04:57 2019-09-15 14:05:07 t 1 1 97962 306 0.00 2019-09-15 13:59:07 2019-09-15 14:07:49 t 1 1 97965 420 0.00 2019-09-15 14:08:34 2019-09-15 14:15:27 t 1 1 97967 306 0.00 2019-09-15 14:07:45 2019-09-15 14:16:05 t 1 1 97971 220 0.00 2019-09-15 14:26:31 2019-09-15 14:26:40 t 1 1 97974 220 0.00 2019-09-15 14:27:57 2019-09-15 14:29:48 t 1 1 97976 220 0.00 2019-09-15 14:30:21 2019-09-15 14:30:30 t 1 1 97979 220 0.00 2019-09-15 14:31:34 2019-09-15 14:31:42 t 1 1 97984 327 0.00 2019-09-15 14:40:55 2019-09-15 14:42:36 t 1 1 97989 220 0.00 2019-09-15 14:44:52 2019-09-15 14:45:27 t 1 1 97993 220 0.00 2019-09-15 14:48:01 2019-09-15 14:49:52 t 1 1 97997 327 0.00 2019-09-15 14:51:13 2019-09-15 14:51:42 t 1 1 97998 220 0.00 2019-09-15 14:50:27 2019-09-15 14:52:07 t 1 1 97999 220 0.00 2019-09-15 14:52:07 2019-09-15 14:52:42 t 1 1 98003 400 0.00 2019-09-15 14:35:59 2019-09-15 14:57:14 t 1 1 98004 220 0.00 2019-09-15 14:56:44 2019-09-15 14:57:19 t 1 1 98006 288 0.00 2019-09-15 14:37:32 2019-09-15 14:58:03 t 1 1 98008 220 0.00 2019-09-15 14:58:29 2019-09-15 15:00:19 t 1 1 98013 327 0.00 2019-09-15 15:01:45 2019-09-15 15:02:28 t 1 1 97791 451 0.00 2019-09-14 23:48:06 2019-09-14 23:53:28 t 1 1 97792 327 0.00 2019-09-14 23:54:39 2019-09-14 23:55:10 t 1 1 97794 327 0.00 2019-09-14 23:58:34 2019-09-14 23:58:56 t 1 1 97796 327 0.00 2019-09-15 00:03:00 2019-09-15 00:03:26 t 1 1 97797 327 0.00 2019-09-15 00:04:16 2019-09-15 00:04:53 t 1 1 97799 327 0.00 2019-09-15 00:08:05 2019-09-15 00:08:17 t 1 1 97806 445 0.00 2019-09-15 00:21:09 2019-09-15 00:37:13 t 1 1 97807 220 0.00 2019-09-15 00:30:31 2019-09-15 00:37:35 t 1 1 97809 220 0.00 2019-09-15 00:37:35 2019-09-15 00:43:35 t 1 1 97814 327 0.00 2019-09-15 01:18:57 2019-09-15 01:18:58 t 1 1 97815 327 0.00 2019-09-15 01:19:05 2019-09-15 01:21:23 t 1 1 97817 327 0.00 2019-09-15 01:33:36 2019-09-15 01:33:48 t 1 1 97828 445 0.00 2019-09-15 05:32:38 2019-09-15 06:59:26 t 1 1 97829 400 0.00 2019-09-15 07:28:49 2019-09-15 07:32:56 t 1 1 97832 416 0.00 2019-09-15 08:21:06 2019-09-15 08:44:35 t 1 1 97836 220 0.00 2019-09-15 09:18:22 2019-09-15 09:18:22 t 1 2 97840 416 0.00 2019-09-15 08:48:47 2019-09-15 09:34:55 t 1 1 97843 220 0.00 2019-09-15 09:41:32 2019-09-15 09:41:40 t 1 1 97847 306 0.00 2019-09-15 09:21:36 2019-09-15 09:47:06 t 1 1 97859 372 0.00 2019-09-15 10:29:11 2019-09-15 10:31:05 t 1 2 97862 400 0.00 2019-09-15 10:43:32 2019-09-15 10:45:31 t 1 1 97864 430 0.00 2019-09-15 10:31:05 2019-09-15 10:48:18 t 1 1 97869 464 0.00 2019-09-15 10:33:27 2019-09-15 11:02:15 t 1 1 97872 430 0.00 2019-09-15 11:00:46 2019-09-15 11:14:44 t 1 1 97875 220 0.00 2019-09-15 11:17:23 2019-09-15 11:17:31 t 1 1 97879 462 0.00 2019-09-15 10:30:38 2019-09-15 11:27:12 t 1 1 97881 420 0.00 2019-09-15 11:24:13 2019-09-15 11:29:12 t 1 1 97882 420 0.00 2019-09-15 11:29:15 2019-09-15 11:30:02 t 1 1 97885 420 0.00 2019-09-15 11:37:42 2019-09-15 11:40:49 t 1 1 97893 402 0.00 2019-09-15 12:07:22 2019-09-15 12:07:23 t 1 2 97894 220 0.00 2019-09-15 12:10:06 2019-09-15 12:10:16 t 1 1 97897 220 0.00 2019-09-15 12:10:54 2019-09-15 12:11:02 t 1 1 97898 220 0.00 2019-09-15 12:11:09 2019-09-15 12:11:18 t 1 1 97904 420 0.00 2019-09-15 12:19:07 2019-09-15 12:22:56 t 1 1 97905 327 0.00 2019-09-15 12:14:41 2019-09-15 12:24:18 t 1 1 97907 461 0.00 2019-09-15 12:25:28 2019-09-15 12:25:31 t 1 2 97911 453 0.00 2019-09-15 12:26:23 2019-09-15 12:26:25 t 1 2 97912 420 0.00 2019-09-15 12:26:18 2019-09-15 12:27:49 t 1 1 97913 420 0.00 2019-09-15 12:27:52 2019-09-15 12:28:48 t 1 1 97915 420 0.00 2019-09-15 12:28:51 2019-09-15 12:30:26 t 1 1 97919 400 0.00 2019-09-15 12:39:43 2019-09-15 12:41:56 t 1 1 97922 420 0.00 2019-09-15 12:30:29 2019-09-15 12:49:53 t 1 1 97925 420 0.00 2019-09-15 12:49:53 2019-09-15 12:53:50 t 1 1 97926 327 0.00 2019-09-15 12:49:59 2019-09-15 12:58:13 t 1 1 97930 412 0.00 2019-09-15 10:12:18 2019-09-15 13:14:43 t 1 1 97931 220 0.00 2019-09-15 13:14:37 2019-09-15 13:15:10 t 1 1 97935 296 0.00 2019-09-15 13:20:39 2019-09-15 13:25:02 t 1 2 97937 220 0.00 2019-09-15 13:25:32 2019-09-15 13:25:40 t 1 1 97944 430 0.00 2019-09-15 13:34:22 2019-09-15 13:35:46 t 1 1 97947 306 0.00 2019-09-15 13:26:44 2019-09-15 13:40:57 t 1 1 97949 327 0.00 2019-09-15 13:21:37 2019-09-15 13:41:57 t 1 1 97950 327 0.00 2019-09-15 13:42:10 2019-09-15 13:42:27 t 1 1 97963 420 0.00 2019-09-15 13:43:43 2019-09-15 14:08:34 t 1 1 97966 220 0.00 2019-09-15 14:15:30 2019-09-15 14:16:01 t 1 1 97969 306 0.00 2019-09-15 14:21:36 2019-09-15 14:25:35 t 1 1 97970 220 0.00 2019-09-15 14:09:41 2019-09-15 14:26:32 t 1 1 97973 220 0.00 2019-09-15 14:27:17 2019-09-15 14:27:57 t 1 1 97975 220 0.00 2019-09-15 14:29:47 2019-09-15 14:30:22 t 1 1 97978 220 0.00 2019-09-15 14:30:59 2019-09-15 14:31:34 t 1 1 97980 220 0.00 2019-09-15 14:31:50 2019-09-15 14:31:57 t 1 1 97983 220 0.00 2019-09-15 14:33:23 2019-09-15 14:42:32 t 1 1 97986 327 0.00 2019-09-15 14:43:00 2019-09-15 14:44:02 t 1 1 97987 220 0.00 2019-09-15 14:43:41 2019-09-15 14:44:16 t 1 1 97988 220 0.00 2019-09-15 14:44:16 2019-09-15 14:44:53 t 1 1 97991 220 0.00 2019-09-15 14:45:26 2019-09-15 14:47:27 t 1 1 97995 327 0.00 2019-09-15 14:48:24 2019-09-15 14:50:56 t 1 1 97996 451 0.00 2019-09-15 14:14:34 2019-09-15 14:51:19 t 1 1 98000 220 0.00 2019-09-15 14:52:42 2019-09-15 14:54:37 t 1 1 98001 220 0.00 2019-09-15 14:54:37 2019-09-15 14:55:12 t 1 1 98005 220 0.00 2019-09-15 14:57:18 2019-09-15 14:57:56 t 1 1 98009 220 0.00 2019-09-15 15:00:19 2019-09-15 15:00:50 t 1 1 98010 220 0.00 2019-09-15 15:00:50 2019-09-15 15:01:30 t 1 1 98011 306 0.00 2019-09-15 14:56:57 2019-09-15 15:01:47 t 1 1 98014 306 0.00 2019-09-15 15:01:47 2019-09-15 15:03:21 t 1 1 98016 327 0.00 2019-09-15 15:03:39 2019-09-15 15:04:08 t 1 1 98017 220 0.00 2019-09-15 15:02:04 2019-09-15 15:04:54 t 1 1 98019 220 0.00 2019-09-15 15:04:54 2019-09-15 15:05:23 t 1 1 98021 220 0.00 2019-09-15 15:05:23 2019-09-15 15:05:33 t 1 1 98022 220 0.00 2019-09-15 15:05:40 2019-09-15 15:06:24 t 1 1 98023 456 0.00 2019-09-15 15:05:12 2019-09-15 15:08:51 t 1 1 98024 327 0.00 2019-09-15 15:14:11 2019-09-15 15:14:44 t 1 1 98026 372 0.00 2019-09-15 15:16:11 2019-09-15 15:16:12 t 1 2 98027 372 0.00 2019-09-15 15:16:18 2019-09-15 15:16:19 t 1 2 98029 220 0.00 2019-09-15 15:16:19 2019-09-15 15:16:54 t 1 1 98033 220 0.00 2019-09-15 15:27:14 2019-09-15 15:27:22 t 1 1 98037 459 0.00 2019-09-15 15:34:47 2019-09-15 15:34:47 f 1 2 98041 220 0.00 2019-09-15 15:38:16 2019-09-15 15:38:48 t 1 1 98044 459 0.00 2019-09-15 15:41:40 2019-09-15 15:41:40 f 1 2 98047 220 0.00 2019-09-15 15:49:04 2019-09-15 15:49:13 t 1 1 98051 247 0.00 2019-09-15 15:56:47 2019-09-15 15:59:58 t 1 2 98052 220 0.00 2019-09-15 16:00:49 2019-09-15 16:10:02 t 1 1 98053 220 0.00 2019-09-15 16:10:02 2019-09-15 16:10:37 t 1 1 98054 430 0.00 2019-09-15 14:51:43 2019-09-15 16:13:37 t 1 1 98057 412 0.00 2019-09-15 13:14:43 2019-09-15 16:16:54 t 1 1 98060 327 0.00 2019-09-15 16:19:11 2019-09-15 16:20:35 t 1 1 98062 220 0.00 2019-09-15 16:22:05 2019-09-15 16:31:22 t 1 1 98064 220 0.00 2019-09-15 16:31:37 2019-09-15 16:31:46 t 1 1 98070 306 0.00 2019-09-15 16:34:08 2019-09-15 16:40:32 t 1 1 98072 220 0.00 2019-09-15 16:39:34 2019-09-15 16:42:23 t 1 1 98075 220 0.00 2019-09-15 16:43:49 2019-09-15 16:44:47 t 1 1 98076 327 0.00 2019-09-15 16:44:20 2019-09-15 16:45:17 t 1 1 98080 306 0.00 2019-09-15 16:49:50 2019-09-15 16:51:20 t 1 1 98084 379 0.00 2019-09-15 16:40:08 2019-09-15 16:56:42 t 1 1 98088 339 0.00 2019-09-15 16:13:32 2019-09-15 17:00:55 t 1 2 98091 430 0.00 2019-09-15 16:54:18 2019-09-15 17:01:51 t 1 1 98094 462 0.00 2019-09-15 17:01:28 2019-09-15 17:06:15 t 1 1 98102 327 0.00 2019-09-15 17:11:04 2019-09-15 17:12:10 t 1 1 98007 220 0.00 2019-09-15 14:57:55 2019-09-15 14:58:29 t 1 1 98012 220 0.00 2019-09-15 15:01:29 2019-09-15 15:02:04 t 1 1 98015 436 0.00 2019-09-15 14:54:50 2019-09-15 15:04:02 t 1 1 98018 456 0.00 2019-09-15 14:53:45 2019-09-15 15:05:13 t 1 1 98025 456 0.00 2019-09-15 15:08:50 2019-09-15 15:15:13 t 1 1 98028 220 0.00 2019-09-15 15:07:10 2019-09-15 15:16:19 t 1 1 98031 288 0.00 2019-09-15 15:05:31 2019-09-15 15:23:07 t 1 1 98034 220 0.00 2019-09-15 15:27:29 2019-09-15 15:27:38 t 1 1 98035 220 0.00 2019-09-15 15:27:45 2019-09-15 15:27:50 t 1 1 98040 220 0.00 2019-09-15 15:27:49 2019-09-15 15:38:16 t 1 1 98042 459 0.00 2019-09-15 15:41:14 2019-09-15 15:41:14 f 1 2 98046 220 0.00 2019-09-15 15:39:48 2019-09-15 15:49:04 t 1 1 98048 428 0.00 2019-09-15 15:06:38 2019-09-15 15:58:00 t 1 1 98050 220 0.00 2019-09-15 15:59:33 2019-09-15 15:59:52 t 1 1 98055 311 0.00 2019-09-15 16:15:20 2019-09-15 16:15:20 t 1 2 98059 220 0.00 2019-09-15 16:10:48 2019-09-15 16:20:32 t 1 1 98065 327 0.00 2019-09-15 16:29:09 2019-09-15 16:35:23 t 1 1 98068 220 0.00 2019-09-15 16:38:37 2019-09-15 16:39:13 t 1 1 98069 379 0.00 2019-09-15 12:48:25 2019-09-15 16:40:08 t 1 1 98073 220 0.00 2019-09-15 16:42:22 2019-09-15 16:43:02 t 1 1 98074 220 0.00 2019-09-15 16:43:01 2019-09-15 16:43:50 t 1 1 98077 220 0.00 2019-09-15 16:44:46 2019-09-15 16:45:24 t 1 1 98081 296 0.00 2019-09-15 16:49:20 2019-09-15 16:52:44 t 1 2 98086 420 0.00 2019-09-15 16:53:14 2019-09-15 16:58:36 t 1 1 98093 379 0.00 2019-09-15 16:56:42 2019-09-15 17:06:14 t 1 1 98095 420 0.00 2019-09-15 16:58:36 2019-09-15 17:07:53 t 1 1 98096 220 0.00 2019-09-15 17:03:42 2019-09-15 17:09:53 t 1 1 98101 220 0.00 2019-09-15 17:11:41 2019-09-15 17:11:57 t 1 1 98103 400 0.00 2019-09-15 17:09:05 2019-09-15 17:12:13 t 1 1 98104 220 0.00 2019-09-15 17:11:56 2019-09-15 17:12:20 t 1 1 98108 220 0.00 2019-09-15 17:13:16 2019-09-15 17:13:37 t 1 1 98112 220 0.00 2019-09-15 17:14:21 2019-09-15 17:14:36 t 1 1 98117 327 0.00 2019-09-15 17:16:06 2019-09-15 17:17:16 t 1 1 98120 420 0.00 2019-09-15 17:14:08 2019-09-15 17:18:33 t 1 1 98121 220 0.00 2019-09-15 17:18:09 2019-09-15 17:18:47 t 1 1 98129 306 0.00 2019-09-15 17:15:32 2019-09-15 17:22:51 t 1 1 98132 430 0.00 2019-09-15 17:22:25 2019-09-15 17:24:08 t 1 1 98133 220 0.00 2019-09-15 17:23:48 2019-09-15 17:24:25 t 1 1 98136 220 0.00 2019-09-15 17:25:03 2019-09-15 17:25:40 t 1 1 98146 220 0.00 2019-09-15 17:28:04 2019-09-15 17:28:42 t 1 1 98147 220 0.00 2019-09-15 17:28:42 2019-09-15 17:29:22 t 1 1 98148 220 0.00 2019-09-15 17:29:21 2019-09-15 17:29:59 t 1 1 98149 327 0.00 2019-09-15 17:29:44 2019-09-15 17:30:16 t 1 1 98150 220 0.00 2019-09-15 17:29:59 2019-09-15 17:30:32 t 1 1 98155 306 0.00 2019-09-15 17:30:21 2019-09-15 17:33:32 t 1 1 98164 220 0.00 2019-09-15 17:37:32 2019-09-15 17:38:04 t 1 1 98165 220 0.00 2019-09-15 17:38:04 2019-09-15 17:38:41 t 1 1 98166 220 0.00 2019-09-15 17:38:41 2019-09-15 17:39:17 t 1 1 98168 220 0.00 2019-09-15 17:39:16 2019-09-15 17:39:54 t 1 1 98170 327 0.00 2019-09-15 17:40:14 2019-09-15 17:40:47 t 1 1 98175 220 0.00 2019-09-15 17:43:03 2019-09-15 17:43:06 t 1 1 98177 220 0.00 2019-09-15 17:43:42 2019-09-15 17:43:45 t 1 1 98181 220 0.00 2019-09-15 17:44:56 2019-09-15 17:45:34 t 1 1 98184 464 0.00 2019-09-15 17:45:35 2019-09-15 17:46:37 t 1 1 98187 327 0.00 2019-09-15 17:43:51 2019-09-15 17:49:19 t 1 1 98189 220 0.00 2019-09-15 17:49:56 2019-09-15 17:50:32 t 1 1 98190 220 0.00 2019-09-15 17:50:32 2019-09-15 17:51:08 t 1 1 98194 327 0.00 2019-09-15 17:52:25 2019-09-15 17:52:58 t 1 1 98197 220 0.00 2019-09-15 17:53:02 2019-09-15 17:53:39 t 1 1 98204 220 0.00 2019-09-15 17:57:29 2019-09-15 17:59:10 t 1 1 98206 412 0.00 2019-09-15 16:16:54 2019-09-15 17:59:18 t 1 1 98207 220 0.00 2019-09-15 17:59:10 2019-09-15 18:00:04 t 1 1 98212 220 0.00 2019-09-15 18:03:30 2019-09-15 18:04:11 t 1 1 98218 220 0.00 2019-09-15 18:07:27 2019-09-15 18:09:20 t 1 1 98223 306 0.00 2019-09-15 18:07:39 2019-09-15 18:12:09 t 1 1 98229 379 0.00 2019-09-15 18:14:02 2019-09-15 18:16:01 t 1 1 98230 220 0.00 2019-09-15 18:15:44 2019-09-15 18:16:19 t 1 1 98233 220 0.00 2019-09-15 18:16:19 2019-09-15 18:16:54 t 1 1 98234 461 0.00 2019-09-15 18:17:09 2019-09-15 18:17:16 t 1 2 98236 420 0.00 2019-09-15 18:10:54 2019-09-15 18:18:09 t 1 1 98239 220 0.00 2019-09-15 18:19:28 2019-09-15 18:21:17 t 1 1 98240 288 0.00 2019-09-15 17:56:13 2019-09-15 18:22:17 t 1 1 98244 220 0.00 2019-09-15 18:24:28 2019-09-15 18:25:30 t 1 1 98249 220 0.00 2019-09-15 18:27:44 2019-09-15 18:28:22 t 1 1 98253 327 0.00 2019-09-15 18:27:58 2019-09-15 18:30:44 t 1 1 98258 220 0.00 2019-09-15 18:34:43 2019-09-15 18:35:24 t 1 1 98263 327 0.00 2019-09-15 18:35:03 2019-09-15 18:38:27 t 1 1 98266 288 0.00 2019-09-15 18:36:02 2019-09-15 18:41:09 t 1 1 98267 220 0.00 2019-09-15 18:40:38 2019-09-15 18:41:15 t 1 1 98268 395 0.00 2019-09-15 17:10:10 2019-09-15 18:42:30 t 1 2 98273 220 0.00 2019-09-15 18:44:51 2019-09-15 18:47:07 t 1 1 98275 327 0.00 2019-09-15 18:39:20 2019-09-15 18:52:08 t 1 1 98276 400 0.00 2019-09-15 18:53:34 2019-09-15 18:57:48 t 1 1 98277 288 0.00 2019-09-15 18:43:40 2019-09-15 18:59:11 t 1 1 98279 462 0.00 2019-09-15 17:11:56 2019-09-15 19:11:47 t 1 1 98285 220 0.00 2019-09-15 19:40:04 2019-09-15 19:44:43 t 1 1 98286 462 0.00 2019-09-15 19:11:47 2019-09-15 19:47:52 t 1 1 98288 288 0.00 2019-09-15 19:42:22 2019-09-15 19:54:41 t 1 1 98289 461 0.00 2019-09-15 19:57:04 2019-09-15 19:57:05 t 1 2 98294 462 0.00 2019-09-15 19:47:52 2019-09-15 20:13:41 t 1 1 98296 296 0.00 2019-09-15 20:24:14 2019-09-15 20:25:35 t 1 2 98301 451 0.00 2019-09-15 20:34:21 2019-09-15 20:44:59 t 1 1 98304 428 0.00 2019-09-15 20:14:21 2019-09-15 20:48:22 t 1 1 98306 451 0.00 2019-09-15 20:44:59 2019-09-15 20:54:33 t 1 1 98314 375 0.00 2019-09-15 21:20:08 2019-09-15 21:21:51 t 1 1 98315 420 0.00 2019-09-15 21:17:37 2019-09-15 21:22:37 t 1 1 98319 466 0.00 2019-09-15 21:24:33 2019-09-15 21:32:53 t 1 1 98320 400 0.00 2019-09-15 21:34:37 2019-09-15 21:36:38 t 1 1 98323 375 0.00 2019-09-15 21:29:13 2019-09-15 21:52:08 t 1 1 98327 400 0.00 2019-09-15 21:54:33 2019-09-15 21:55:49 t 1 1 98328 288 0.00 2019-09-15 21:52:42 2019-09-15 21:56:15 t 1 1 98329 456 0.00 2019-09-15 21:53:09 2019-09-15 21:58:23 t 1 1 98334 451 0.00 2019-09-15 21:46:54 2019-09-15 22:10:38 t 1 1 98335 420 0.00 2019-09-15 22:03:46 2019-09-15 22:11:56 t 1 1 98336 451 0.00 2019-09-15 22:10:37 2019-09-15 22:12:51 t 1 1 98339 420 0.00 2019-09-15 22:14:20 2019-09-15 22:16:42 t 1 1 98340 375 0.00 2019-09-15 21:55:25 2019-09-15 22:17:37 t 1 1 98020 288 0.00 2019-09-15 14:58:03 2019-09-15 15:05:31 t 1 1 98030 456 0.00 2019-09-15 15:15:13 2019-09-15 15:18:07 t 1 1 98032 220 0.00 2019-09-15 15:17:19 2019-09-15 15:27:14 t 1 1 98036 459 0.00 2019-09-15 15:34:39 2019-09-15 15:34:39 f 1 2 98038 459 0.00 2019-09-15 15:35:56 2019-09-15 15:35:56 f 1 2 98039 459 0.00 2019-09-15 15:36:17 2019-09-15 15:36:17 f 1 2 98043 459 0.00 2019-09-15 15:41:23 2019-09-15 15:41:23 f 1 2 98045 400 0.00 2019-09-15 15:40:18 2019-09-15 15:42:12 t 1 1 98049 220 0.00 2019-09-15 15:49:55 2019-09-15 15:59:33 t 1 1 98056 311 0.00 2019-09-15 16:15:43 2019-09-15 16:15:43 t 1 2 98058 327 0.00 2019-09-15 15:17:01 2019-09-15 16:18:47 t 1 1 98061 220 0.00 2019-09-15 16:20:32 2019-09-15 16:21:08 t 1 1 98063 220 0.00 2019-09-15 16:31:22 2019-09-15 16:31:30 t 1 1 98066 327 0.00 2019-09-15 16:37:09 2019-09-15 16:37:45 t 1 1 98067 220 0.00 2019-09-15 16:33:07 2019-09-15 16:38:37 t 1 1 98071 430 0.00 2019-09-15 16:36:25 2019-09-15 16:40:57 t 1 1 98078 220 0.00 2019-09-15 16:45:24 2019-09-15 16:46:24 t 1 1 98079 430 0.00 2019-09-15 16:40:57 2019-09-15 16:50:08 t 1 1 98082 430 0.00 2019-09-15 16:50:08 2019-09-15 16:54:18 t 1 1 98083 306 0.00 2019-09-15 16:53:59 2019-09-15 16:56:06 t 1 1 98085 327 0.00 2019-09-15 16:55:14 2019-09-15 16:58:29 t 1 1 98087 306 0.00 2019-09-15 16:56:05 2019-09-15 16:58:37 t 1 1 98089 327 0.00 2019-09-15 17:00:35 2019-09-15 17:01:04 t 1 1 98090 462 0.00 2019-09-15 16:18:54 2019-09-15 17:01:28 t 1 1 98092 306 0.00 2019-09-15 17:01:15 2019-09-15 17:03:54 t 1 1 98097 220 0.00 2019-09-15 17:09:40 2019-09-15 17:10:27 t 1 1 98098 220 0.00 2019-09-15 17:10:27 2019-09-15 17:11:06 t 1 1 98099 220 0.00 2019-09-15 17:11:06 2019-09-15 17:11:41 t 1 1 98100 462 0.00 2019-09-15 17:06:15 2019-09-15 17:11:56 t 1 1 98105 220 0.00 2019-09-15 17:12:20 2019-09-15 17:12:34 t 1 1 98109 220 0.00 2019-09-15 17:13:37 2019-09-15 17:13:54 t 1 1 98113 220 0.00 2019-09-15 17:14:35 2019-09-15 17:14:59 t 1 1 98115 220 0.00 2019-09-15 17:15:38 2019-09-15 17:16:17 t 1 1 98118 220 0.00 2019-09-15 17:16:55 2019-09-15 17:17:34 t 1 1 98123 220 0.00 2019-09-15 17:18:47 2019-09-15 17:19:26 t 1 1 98125 220 0.00 2019-09-15 17:20:02 2019-09-15 17:20:42 t 1 1 98126 220 0.00 2019-09-15 17:20:41 2019-09-15 17:21:20 t 1 1 98128 220 0.00 2019-09-15 17:21:58 2019-09-15 17:22:34 t 1 1 98130 220 0.00 2019-09-15 17:22:34 2019-09-15 17:23:11 t 1 1 98131 220 0.00 2019-09-15 17:23:10 2019-09-15 17:23:48 t 1 1 98140 327 0.00 2019-09-15 17:25:26 2019-09-15 17:27:02 t 1 1 98141 220 0.00 2019-09-15 17:26:54 2019-09-15 17:27:32 t 1 1 98142 220 0.00 2019-09-15 17:27:31 2019-09-15 17:28:04 t 1 1 98144 327 0.00 2019-09-15 17:27:35 2019-09-15 17:28:21 t 1 1 98151 220 0.00 2019-09-15 17:30:32 2019-09-15 17:31:09 t 1 1 98152 220 0.00 2019-09-15 17:31:09 2019-09-15 17:31:46 t 1 1 98153 220 0.00 2019-09-15 17:31:45 2019-09-15 17:32:25 t 1 1 98156 220 0.00 2019-09-15 17:32:59 2019-09-15 17:33:37 t 1 1 98157 220 0.00 2019-09-15 17:33:37 2019-09-15 17:34:32 t 1 1 98159 288 0.00 2019-09-15 15:23:07 2019-09-15 17:35:30 t 1 1 98161 220 0.00 2019-09-15 17:35:41 2019-09-15 17:36:19 t 1 1 98169 288 0.00 2019-09-15 17:35:29 2019-09-15 17:40:10 t 1 1 98171 220 0.00 2019-09-15 17:39:54 2019-09-15 17:40:51 t 1 1 98172 220 0.00 2019-09-15 17:40:50 2019-09-15 17:41:28 t 1 1 98173 220 0.00 2019-09-15 17:41:27 2019-09-15 17:42:30 t 1 1 98178 220 0.00 2019-09-15 17:43:45 2019-09-15 17:44:20 t 1 1 98182 464 0.00 2019-09-15 17:40:00 2019-09-15 17:45:35 t 1 1 98183 220 0.00 2019-09-15 17:45:34 2019-09-15 17:46:24 t 1 1 98185 379 0.00 2019-09-15 17:06:14 2019-09-15 17:48:11 t 1 1 98188 220 0.00 2019-09-15 17:46:24 2019-09-15 17:49:56 t 1 1 98191 327 0.00 2019-09-15 17:50:55 2019-09-15 17:51:29 t 1 1 98193 220 0.00 2019-09-15 17:51:46 2019-09-15 17:52:27 t 1 1 98195 220 0.00 2019-09-15 17:52:26 2019-09-15 17:53:02 t 1 1 98199 327 0.00 2019-09-15 17:53:50 2019-09-15 17:54:59 t 1 1 98201 220 0.00 2019-09-15 17:55:00 2019-09-15 17:55:41 t 1 1 98203 220 0.00 2019-09-15 17:56:51 2019-09-15 17:57:29 t 1 1 98205 327 0.00 2019-09-15 17:58:42 2019-09-15 17:59:17 t 1 1 98210 420 0.00 2019-09-15 17:55:53 2019-09-15 18:01:42 t 1 1 98213 220 0.00 2019-09-15 18:04:10 2019-09-15 18:05:28 t 1 1 98219 220 0.00 2019-09-15 18:09:19 2019-09-15 18:09:56 t 1 1 98220 420 0.00 2019-09-15 18:06:28 2019-09-15 18:10:54 t 1 1 98221 220 0.00 2019-09-15 18:09:55 2019-09-15 18:11:06 t 1 1 98222 220 0.00 2019-09-15 18:11:05 2019-09-15 18:11:40 t 1 1 98224 327 0.00 2019-09-15 18:06:15 2019-09-15 18:12:24 t 1 1 98225 220 0.00 2019-09-15 18:11:40 2019-09-15 18:13:40 t 1 1 98228 220 0.00 2019-09-15 18:14:16 2019-09-15 18:15:44 t 1 1 98231 453 0.00 2019-09-15 18:16:40 2019-09-15 18:16:43 t 1 2 98235 220 0.00 2019-09-15 18:16:53 2019-09-15 18:17:57 t 1 1 98241 220 0.00 2019-09-15 18:21:16 2019-09-15 18:22:29 t 1 1 98242 220 0.00 2019-09-15 18:22:26 2019-09-15 18:23:49 t 1 1 98243 220 0.00 2019-09-15 18:23:48 2019-09-15 18:24:29 t 1 1 98248 327 0.00 2019-09-15 18:26:07 2019-09-15 18:27:50 t 1 1 98252 220 0.00 2019-09-15 18:30:01 2019-09-15 18:30:40 t 1 1 98254 220 0.00 2019-09-15 18:30:40 2019-09-15 18:32:23 t 1 1 98256 306 0.00 2019-09-15 18:33:13 2019-09-15 18:34:34 t 1 1 98259 220 0.00 2019-09-15 18:35:23 2019-09-15 18:36:02 t 1 1 98265 220 0.00 2019-09-15 18:39:56 2019-09-15 18:40:38 t 1 1 98269 220 0.00 2019-09-15 18:41:14 2019-09-15 18:42:31 t 1 1 98278 412 0.00 2019-09-15 17:59:18 2019-09-15 19:09:58 t 1 1 98281 456 0.00 2019-09-15 19:18:35 2019-09-15 19:22:09 t 1 1 98290 400 0.00 2019-09-15 19:56:27 2019-09-15 19:57:47 t 1 1 98291 428 0.00 2019-09-15 15:58:20 2019-09-15 20:01:49 t 1 1 98292 220 0.00 2019-09-15 19:44:53 2019-09-15 20:08:16 t 1 2 98295 400 0.00 2019-09-15 20:14:55 2019-09-15 20:16:29 t 1 1 98299 451 0.00 2019-09-15 20:27:57 2019-09-15 20:34:21 t 1 1 98300 466 0.00 2019-09-15 20:13:45 2019-09-15 20:44:31 t 1 1 98302 288 0.00 2019-09-15 20:15:18 2019-09-15 20:45:14 t 1 1 98303 385 0.00 2019-09-15 20:46:14 2019-09-15 20:46:14 f 1 2 98309 288 0.00 2019-09-15 20:45:14 2019-09-15 21:07:28 t 1 1 98310 466 0.00 2019-09-15 21:01:53 2019-09-15 21:11:16 t 1 1 98311 288 0.00 2019-09-15 21:07:28 2019-09-15 21:11:46 t 1 1 98312 466 0.00 2019-09-15 21:11:16 2019-09-15 21:17:38 t 1 1 98316 247 0.00 2019-09-15 21:19:46 2019-09-15 21:23:15 t 1 2 98321 451 0.00 2019-09-15 21:33:09 2019-09-15 21:46:54 t 1 1 98326 375 0.00 2019-09-15 21:53:40 2019-09-15 21:54:54 t 1 1 98332 420 0.00 2019-09-15 21:43:27 2019-09-15 22:03:46 t 1 1 98333 288 0.00 2019-09-15 22:01:02 2019-09-15 22:09:51 t 1 1 98106 220 0.00 2019-09-15 17:12:33 2019-09-15 17:12:58 t 1 1 98107 220 0.00 2019-09-15 17:12:57 2019-09-15 17:13:16 t 1 1 98110 420 0.00 2019-09-15 17:07:53 2019-09-15 17:14:08 t 1 1 98111 220 0.00 2019-09-15 17:13:54 2019-09-15 17:14:22 t 1 1 98114 220 0.00 2019-09-15 17:14:59 2019-09-15 17:15:39 t 1 1 98116 220 0.00 2019-09-15 17:16:16 2019-09-15 17:16:56 t 1 1 98119 220 0.00 2019-09-15 17:17:33 2019-09-15 17:18:10 t 1 1 98122 327 0.00 2019-09-15 17:18:36 2019-09-15 17:19:03 t 1 1 98124 220 0.00 2019-09-15 17:19:25 2019-09-15 17:20:03 t 1 1 98127 220 0.00 2019-09-15 17:21:20 2019-09-15 17:21:59 t 1 1 98134 327 0.00 2019-09-15 17:19:13 2019-09-15 17:24:27 t 1 1 98135 220 0.00 2019-09-15 17:24:24 2019-09-15 17:25:03 t 1 1 98137 306 0.00 2019-09-15 17:24:33 2019-09-15 17:26:08 t 1 1 98138 220 0.00 2019-09-15 17:25:39 2019-09-15 17:26:17 t 1 1 98139 220 0.00 2019-09-15 17:26:17 2019-09-15 17:26:55 t 1 1 98143 306 0.00 2019-09-15 17:26:51 2019-09-15 17:28:17 t 1 1 98145 327 0.00 2019-09-15 17:28:33 2019-09-15 17:28:41 t 1 1 98154 220 0.00 2019-09-15 17:32:24 2019-09-15 17:33:00 t 1 1 98158 220 0.00 2019-09-15 17:34:32 2019-09-15 17:35:09 t 1 1 98160 220 0.00 2019-09-15 17:35:09 2019-09-15 17:35:41 t 1 1 98162 220 0.00 2019-09-15 17:36:19 2019-09-15 17:36:54 t 1 1 98163 220 0.00 2019-09-15 17:36:54 2019-09-15 17:37:32 t 1 1 98167 430 0.00 2019-09-15 17:36:16 2019-09-15 17:39:19 t 1 1 98174 220 0.00 2019-09-15 17:42:29 2019-09-15 17:43:04 t 1 1 98176 220 0.00 2019-09-15 17:43:06 2019-09-15 17:43:43 t 1 1 98179 220 0.00 2019-09-15 17:44:20 2019-09-15 17:44:56 t 1 1 98180 220 0.00 2019-09-15 17:44:20 2019-09-15 17:45:24 t 1 1 98186 400 0.00 2019-09-15 17:12:13 2019-09-15 17:49:13 t 1 1 98192 220 0.00 2019-09-15 17:51:07 2019-09-15 17:51:46 t 1 1 98196 288 0.00 2019-09-15 17:43:20 2019-09-15 17:53:34 t 1 1 98198 220 0.00 2019-09-15 17:53:38 2019-09-15 17:54:16 t 1 1 98200 220 0.00 2019-09-15 17:54:15 2019-09-15 17:55:01 t 1 1 98202 220 0.00 2019-09-15 17:55:41 2019-09-15 17:56:52 t 1 1 98208 220 0.00 2019-09-15 18:00:03 2019-09-15 18:00:46 t 1 1 98209 220 0.00 2019-09-15 18:00:46 2019-09-15 18:01:32 t 1 1 98211 220 0.00 2019-09-15 18:01:32 2019-09-15 18:03:31 t 1 1 98214 220 0.00 2019-09-15 18:05:27 2019-09-15 18:06:08 t 1 1 98215 420 0.00 2019-09-15 18:01:42 2019-09-15 18:06:28 t 1 1 98216 220 0.00 2019-09-15 18:06:08 2019-09-15 18:06:46 t 1 1 98217 220 0.00 2019-09-15 18:06:45 2019-09-15 18:07:28 t 1 1 98226 379 0.00 2019-09-15 17:57:13 2019-09-15 18:14:02 t 1 1 98227 220 0.00 2019-09-15 18:13:39 2019-09-15 18:14:16 t 1 1 98232 461 0.00 2019-09-15 18:16:50 2019-09-15 18:16:50 f 1 2 98237 220 0.00 2019-09-15 18:17:56 2019-09-15 18:18:35 t 1 1 98238 220 0.00 2019-09-15 18:18:34 2019-09-15 18:19:29 t 1 1 98245 288 0.00 2019-09-15 18:22:17 2019-09-15 18:26:20 t 1 1 98246 220 0.00 2019-09-15 18:25:29 2019-09-15 18:26:46 t 1 1 98247 220 0.00 2019-09-15 18:26:46 2019-09-15 18:27:45 t 1 1 98250 296 0.00 2019-09-15 18:26:03 2019-09-15 18:28:26 t 1 2 98251 220 0.00 2019-09-15 18:28:22 2019-09-15 18:30:01 t 1 1 98255 220 0.00 2019-09-15 18:32:22 2019-09-15 18:33:00 t 1 1 98257 220 0.00 2019-09-15 18:33:00 2019-09-15 18:34:44 t 1 1 98260 288 0.00 2019-09-15 18:26:34 2019-09-15 18:36:02 t 1 1 98261 220 0.00 2019-09-15 18:36:01 2019-09-15 18:36:40 t 1 1 98262 220 0.00 2019-09-15 18:36:40 2019-09-15 18:37:56 t 1 1 98264 220 0.00 2019-09-15 18:37:53 2019-09-15 18:39:56 t 1 1 98270 220 0.00 2019-09-15 18:42:31 2019-09-15 18:43:08 t 1 1 98271 288 0.00 2019-09-15 18:41:36 2019-09-15 18:43:40 t 1 1 98272 220 0.00 2019-09-15 18:43:06 2019-09-15 18:44:51 t 1 1 98274 220 0.00 2019-09-15 18:47:07 2019-09-15 18:48:42 t 1 1 98280 288 0.00 2019-09-15 18:59:11 2019-09-15 19:18:27 t 1 1 98282 220 0.00 2019-09-15 18:31:09 2019-09-15 19:22:37 t 1 2 98283 220 0.00 2019-09-15 18:48:41 2019-09-15 19:24:51 t 1 1 98284 288 0.00 2019-09-15 19:18:36 2019-09-15 19:42:10 t 1 1 98287 400 0.00 2019-09-15 19:26:11 2019-09-15 19:51:52 t 1 1 98293 288 0.00 2019-09-15 19:54:41 2019-09-15 20:11:45 t 1 1 98297 451 0.00 2019-09-15 20:16:27 2019-09-15 20:27:58 t 1 1 98298 462 0.00 2019-09-15 20:13:41 2019-09-15 20:32:10 t 1 1 98305 449 0.00 2019-09-15 20:47:54 2019-09-15 20:48:49 t 1 1 98307 372 0.00 2019-09-15 20:56:10 2019-09-15 20:56:10 t 1 2 98308 466 0.00 2019-09-15 20:44:30 2019-09-15 21:01:53 t 1 1 98313 375 0.00 2019-09-15 21:01:48 2019-09-15 21:20:02 t 1 1 98317 466 0.00 2019-09-15 21:17:38 2019-09-15 21:24:33 t 1 1 98318 375 0.00 2019-09-15 21:22:36 2019-09-15 21:27:45 t 1 1 98322 247 0.00 2019-09-15 21:48:56 2019-09-15 21:50:49 t 1 2 98324 288 0.00 2019-09-15 21:11:46 2019-09-15 21:52:45 t 1 1 98325 327 0.00 2019-09-15 21:52:14 2019-09-15 21:54:38 t 1 1 98330 288 0.00 2019-09-15 21:56:14 2019-09-15 21:58:29 t 1 1 98331 288 0.00 2019-09-15 21:58:59 2019-09-15 22:01:03 t 1 1 98337 420 0.00 2019-09-15 22:11:55 2019-09-15 22:14:22 t 1 1 98338 451 0.00 2019-09-15 22:12:51 2019-09-15 22:16:12 t 1 1 98341 375 0.00 2019-09-15 22:17:36 2019-09-15 22:24:31 t 1 1 98343 335 0.00 2019-09-15 22:35:58 2019-09-15 22:37:00 t 1 2 98348 327 0.00 2019-09-15 22:45:09 2019-09-15 22:45:20 t 1 1 98357 327 0.00 2019-09-15 23:12:53 2019-09-15 23:13:26 t 1 1 98365 451 0.00 2019-09-15 23:25:28 2019-09-15 23:32:12 t 1 1 98366 327 0.00 2019-09-15 23:34:05 2019-09-15 23:34:35 t 1 1 98369 451 0.00 2019-09-15 23:32:12 2019-09-15 23:40:50 t 1 1 98371 327 0.00 2019-09-15 23:44:38 2019-09-15 23:45:11 t 1 1 98374 375 0.00 2019-09-15 23:05:31 2019-09-15 23:51:59 t 1 1 98377 375 0.00 2019-09-15 23:51:59 2019-09-15 23:56:04 t 1 1 98378 327 0.00 2019-09-15 23:53:48 2019-09-15 23:58:05 t 1 1 98382 327 0.00 2019-09-15 23:59:05 2019-09-16 00:00:06 t 1 1 98384 327 0.00 2019-09-15 23:59:54 2019-09-16 00:06:23 t 1 1 98386 327 0.00 2019-09-16 00:09:02 2019-09-16 00:09:35 t 1 1 98389 327 0.00 2019-09-16 00:17:25 2019-09-16 00:17:50 t 1 1 98390 327 0.00 2019-09-16 00:18:02 2019-09-16 00:18:32 t 1 1 98391 327 0.00 2019-09-16 00:19:26 2019-09-16 00:19:55 t 1 1 98392 375 0.00 2019-09-16 00:07:45 2019-09-16 00:20:21 t 1 1 98395 220 0.00 2019-09-16 00:21:43 2019-09-16 00:22:17 t 1 1 98398 327 0.00 2019-09-16 00:23:58 2019-09-16 00:24:33 t 1 1 98401 327 0.00 2019-09-16 00:25:54 2019-09-16 00:26:58 t 1 1 98402 375 0.00 2019-09-16 00:24:56 2019-09-16 00:32:00 t 1 1 98407 430 0.00 2019-09-16 00:35:00 2019-09-16 00:43:15 t 1 1 98408 335 0.00 2019-09-16 00:42:35 2019-09-16 00:43:30 t 1 2 98414 466 0.00 2019-09-15 22:55:54 2019-09-16 00:52:22 t 1 1 98418 220 0.00 2019-09-16 01:02:10 2019-09-16 01:02:19 t 1 1 98342 311 0.00 2019-09-15 22:36:01 2019-09-15 22:36:01 t 1 2 98344 335 0.00 2019-09-15 22:37:36 2019-09-15 22:38:39 t 1 2 98352 466 0.00 2019-09-15 21:32:53 2019-09-15 22:55:54 t 1 1 98356 379 0.00 2019-09-15 18:18:25 2019-09-15 23:09:15 t 1 1 98359 392 0.00 2019-09-15 23:14:32 2019-09-15 23:14:32 t 1 2 98362 247 0.00 2019-09-15 23:22:57 2019-09-15 23:23:54 t 1 2 98364 451 0.00 2019-09-15 23:18:40 2019-09-15 23:25:28 t 1 1 98372 220 0.00 2019-09-15 23:44:54 2019-09-15 23:45:32 t 1 1 98373 220 0.00 2019-09-15 23:45:32 2019-09-15 23:46:15 t 1 1 98375 327 0.00 2019-09-15 23:52:37 2019-09-15 23:53:11 t 1 1 98376 306 0.00 2019-09-15 23:42:27 2019-09-15 23:55:34 t 1 1 98380 220 0.00 2019-09-15 23:46:10 2019-09-15 23:59:03 t 1 1 98381 375 0.00 2019-09-15 23:58:11 2019-09-15 23:59:45 t 1 1 98383 375 0.00 2019-09-16 00:00:16 2019-09-16 00:05:57 t 1 1 98385 327 0.00 2019-09-16 00:07:22 2019-09-16 00:07:31 t 1 1 98387 296 0.00 2019-09-16 00:05:44 2019-09-16 00:10:08 t 1 2 98393 220 0.00 2019-09-16 00:20:27 2019-09-16 00:21:29 t 1 1 98396 327 0.00 2019-09-16 00:22:02 2019-09-16 00:23:00 t 1 1 98406 464 0.00 2019-09-16 00:30:49 2019-09-16 00:40:39 t 1 1 98413 220 0.00 2019-09-16 00:51:38 2019-09-16 00:52:14 t 1 1 98416 430 0.00 2019-09-16 00:51:53 2019-09-16 00:58:15 t 1 1 98419 288 0.00 2019-09-16 00:59:38 2019-09-16 01:02:25 t 1 1 98421 375 0.00 2019-09-16 00:56:00 2019-09-16 01:07:47 t 1 1 98422 430 0.00 2019-09-16 01:01:58 2019-09-16 01:08:15 t 1 1 98426 220 0.00 2019-09-16 01:23:28 2019-09-16 01:23:36 t 1 1 98430 400 0.00 2019-09-16 01:09:33 2019-09-16 01:52:40 t 1 1 98433 412 0.00 2019-09-15 23:50:26 2019-09-16 02:14:04 t 1 1 98434 220 0.00 2019-09-16 02:15:56 2019-09-16 02:16:05 t 1 1 98435 220 0.00 2019-09-16 02:26:27 2019-09-16 02:27:04 t 1 1 98436 220 0.00 2019-09-16 02:27:11 2019-09-16 02:27:20 t 1 1 98439 220 0.00 2019-09-16 02:28:00 2019-09-16 02:28:10 t 1 1 98440 220 0.00 2019-09-16 02:38:31 2019-09-16 02:38:39 t 1 1 98444 220 0.00 2019-09-16 02:49:48 2019-09-16 02:49:56 t 1 1 98446 220 0.00 2019-09-16 03:10:47 2019-09-16 03:10:56 t 1 1 98447 220 0.00 2019-09-16 03:11:36 2019-09-16 03:11:47 t 1 1 98448 220 0.00 2019-09-16 03:22:06 2019-09-16 03:22:14 t 1 1 98449 311 0.00 2019-09-16 03:25:34 2019-09-16 03:25:34 t 1 2 98453 220 0.00 2019-09-16 03:52:34 2019-09-16 03:52:45 t 1 1 98454 220 0.00 2019-09-16 04:03:04 2019-09-16 04:03:13 t 1 1 98455 220 0.00 2019-09-16 04:13:33 2019-09-16 04:13:42 t 1 1 98459 220 0.00 2019-09-16 04:24:50 2019-09-16 04:24:58 t 1 1 98461 220 0.00 2019-09-16 04:25:22 2019-09-16 04:25:31 t 1 1 98465 220 0.00 2019-09-16 04:51:37 2019-09-16 04:51:45 t 1 1 98470 220 0.00 2019-09-16 05:33:51 2019-09-16 05:34:14 t 1 1 98471 220 0.00 2019-09-16 05:44:19 2019-09-16 05:44:27 t 1 1 98476 220 0.00 2019-09-16 05:55:53 2019-09-16 05:56:01 t 1 1 98477 220 0.00 2019-09-16 06:06:22 2019-09-16 06:06:30 t 1 1 98478 420 0.00 2019-09-16 06:42:30 2019-09-16 06:44:12 t 1 1 98479 420 0.00 2019-09-16 06:44:12 2019-09-16 06:57:32 t 1 1 98481 420 0.00 2019-09-16 06:57:32 2019-09-16 07:02:59 t 1 1 98484 327 0.00 2019-09-16 07:33:30 2019-09-16 07:39:49 t 1 1 98486 220 0.00 2019-09-16 07:36:48 2019-09-16 07:46:50 t 1 1 98487 220 0.00 2019-09-16 07:46:50 2019-09-16 07:52:44 t 1 1 98490 430 0.00 2019-09-16 08:13:07 2019-09-16 08:24:15 t 1 1 98493 306 0.00 2019-09-16 08:38:39 2019-09-16 08:46:22 t 1 1 98497 306 0.00 2019-09-16 08:46:22 2019-09-16 08:58:25 t 1 1 98503 400 0.00 2019-09-16 09:27:38 2019-09-16 09:29:02 t 1 1 98504 306 0.00 2019-09-16 09:29:35 2019-09-16 09:29:42 t 1 1 98513 327 0.00 2019-09-16 09:56:10 2019-09-16 09:56:59 t 1 1 98514 220 0.00 2019-09-16 09:49:16 2019-09-16 10:10:28 t 1 1 98515 306 0.00 2019-09-16 10:10:21 2019-09-16 10:12:54 t 1 1 98516 220 0.00 2019-09-16 10:10:26 2019-09-16 10:13:43 t 1 1 98518 339 0.00 2019-09-16 09:31:43 2019-09-16 10:27:07 t 1 2 98521 416 0.00 2019-09-16 10:27:14 2019-09-16 10:38:29 t 1 1 98526 464 0.00 2019-09-16 10:58:53 2019-09-16 10:59:40 t 1 1 98527 464 0.00 2019-09-16 10:59:40 2019-09-16 11:01:06 t 1 1 98530 306 0.00 2019-09-16 11:13:27 2019-09-16 11:18:29 t 1 1 98532 379 0.00 2019-09-16 11:19:00 2019-09-16 11:32:15 t 1 1 98534 449 0.00 2019-09-16 11:32:12 2019-09-16 11:33:59 t 1 1 98537 456 0.00 2019-09-16 11:50:38 2019-09-16 11:59:14 t 1 1 98539 392 0.00 2019-09-16 12:02:45 2019-09-16 12:02:46 t 1 2 98541 379 0.00 2019-09-16 12:01:16 2019-09-16 12:14:36 t 1 1 98542 400 0.00 2019-09-16 12:15:09 2019-09-16 12:17:00 t 1 1 98547 456 0.00 2019-09-16 12:13:32 2019-09-16 12:23:41 t 1 1 98550 451 0.00 2019-09-16 12:22:19 2019-09-16 12:31:28 t 1 1 98556 327 0.00 2019-09-16 12:38:59 2019-09-16 12:39:46 t 1 1 98559 327 0.00 2019-09-16 12:55:45 2019-09-16 12:57:16 t 1 1 98563 327 0.00 2019-09-16 13:10:35 2019-09-16 13:17:22 t 1 1 98564 306 0.00 2019-09-16 13:18:44 2019-09-16 13:20:34 t 1 1 98572 327 0.00 2019-09-16 13:35:17 2019-09-16 13:35:34 t 1 1 98573 451 0.00 2019-09-16 13:28:59 2019-09-16 13:39:48 t 1 1 98574 464 0.00 2019-09-16 13:33:33 2019-09-16 13:40:53 t 1 1 98576 464 0.00 2019-09-16 13:47:08 2019-09-16 13:49:42 t 1 1 98582 428 0.00 2019-09-16 13:55:50 2019-09-16 14:04:40 t 1 1 98585 327 0.00 2019-09-16 14:10:22 2019-09-16 14:10:52 t 1 1 98586 395 0.00 2019-09-16 14:10:12 2019-09-16 14:12:35 t 1 2 98588 220 0.00 2019-09-16 13:25:47 2019-09-16 14:18:59 t 1 2 98597 327 0.00 2019-09-16 14:49:32 2019-09-16 14:51:06 t 1 1 98598 327 0.00 2019-09-16 14:51:27 2019-09-16 14:51:36 t 1 1 98601 327 0.00 2019-09-16 15:04:26 2019-09-16 15:05:25 t 1 1 98608 327 0.00 2019-09-16 15:09:33 2019-09-16 15:09:34 t 1 1 98614 327 0.00 2019-09-16 15:15:57 2019-09-16 15:16:50 t 1 1 98616 327 0.00 2019-09-16 15:17:47 2019-09-16 15:18:32 t 1 1 98619 220 0.00 2019-09-16 15:22:05 2019-09-16 15:23:31 t 1 1 98622 327 0.00 2019-09-16 15:28:35 2019-09-16 15:29:27 t 1 1 98629 422 0.00 2019-09-16 15:30:01 2019-09-16 15:37:14 t 1 1 98630 327 0.00 2019-09-16 15:37:12 2019-09-16 15:37:37 t 1 1 98637 379 0.00 2019-09-16 15:20:21 2019-09-16 15:44:01 t 1 1 98639 288 0.00 2019-09-16 15:30:10 2019-09-16 15:49:38 t 1 1 98640 327 0.00 2019-09-16 15:52:53 2019-09-16 15:54:15 t 1 1 98643 327 0.00 2019-09-16 15:55:47 2019-09-16 15:56:13 t 1 1 98644 327 0.00 2019-09-16 15:55:32 2019-09-16 15:57:25 t 1 1 98651 379 0.00 2019-09-16 15:59:20 2019-09-16 16:05:22 t 1 1 98656 288 0.00 2019-09-16 16:06:58 2019-09-16 16:09:28 t 1 1 98657 422 0.00 2019-09-16 16:06:21 2019-09-16 16:10:52 t 1 1 98659 306 0.00 2019-09-16 16:03:24 2019-09-16 16:16:22 t 1 1 98660 400 0.00 2019-09-16 16:15:56 2019-09-16 16:17:52 t 1 1 98345 327 0.00 2019-09-15 22:26:23 2019-09-15 22:40:55 t 1 1 98346 327 0.00 2019-09-15 22:41:06 2019-09-15 22:41:15 t 1 1 98347 327 0.00 2019-09-15 22:44:28 2019-09-15 22:44:58 t 1 1 98349 420 0.00 2019-09-15 22:24:02 2019-09-15 22:46:54 t 1 1 98350 327 0.00 2019-09-15 22:47:05 2019-09-15 22:47:27 t 1 1 98351 220 0.00 2019-09-15 22:47:41 2019-09-15 22:50:17 t 1 1 98353 327 0.00 2019-09-15 22:53:57 2019-09-15 23:01:22 t 1 1 98354 327 0.00 2019-09-15 23:02:22 2019-09-15 23:02:32 t 1 1 98355 375 0.00 2019-09-15 22:24:39 2019-09-15 23:05:31 t 1 1 98358 379 0.00 2019-09-15 23:09:15 2019-09-15 23:14:29 t 1 1 98360 451 0.00 2019-09-15 23:12:55 2019-09-15 23:18:40 t 1 1 98361 456 0.00 2019-09-15 23:01:06 2019-09-15 23:21:37 t 1 1 98363 327 0.00 2019-09-15 23:23:31 2019-09-15 23:23:55 t 1 1 98367 306 0.00 2019-09-15 23:09:13 2019-09-15 23:38:14 t 1 1 98368 220 0.00 2019-09-15 23:05:07 2019-09-15 23:40:04 t 1 1 98370 220 0.00 2019-09-15 23:40:04 2019-09-15 23:44:55 t 1 1 98379 375 0.00 2019-09-15 23:56:03 2019-09-15 23:58:11 t 1 1 98388 327 0.00 2019-09-16 00:11:51 2019-09-16 00:15:19 t 1 1 98394 400 0.00 2019-09-15 22:44:00 2019-09-16 00:21:43 t 1 1 98397 375 0.00 2019-09-16 00:20:21 2019-09-16 00:24:32 t 1 1 98399 327 0.00 2019-09-16 00:24:58 2019-09-16 00:25:42 t 1 1 98400 220 0.00 2019-09-16 00:07:21 2019-09-16 00:26:41 t 1 2 98403 220 0.00 2019-09-16 00:32:16 2019-09-16 00:33:23 t 1 1 98404 430 0.00 2019-09-16 00:31:03 2019-09-16 00:35:00 t 1 1 98405 375 0.00 2019-09-16 00:32:00 2019-09-16 00:38:32 t 1 1 98409 220 0.00 2019-09-16 00:43:19 2019-09-16 00:43:54 t 1 1 98410 335 0.00 2019-09-16 00:43:34 2019-09-16 00:44:39 t 1 2 98411 400 0.00 2019-09-16 00:44:07 2019-09-16 00:45:36 t 1 1 98412 430 0.00 2019-09-16 00:43:15 2019-09-16 00:51:53 t 1 1 98415 375 0.00 2019-09-16 00:38:32 2019-09-16 00:56:00 t 1 1 98417 430 0.00 2019-09-16 00:58:15 2019-09-16 01:01:58 t 1 1 98423 375 0.00 2019-09-16 01:07:47 2019-09-16 01:11:19 t 1 1 98425 220 0.00 2019-09-16 01:12:57 2019-09-16 01:13:33 t 1 1 98431 220 0.00 2019-09-16 01:54:58 2019-09-16 01:55:06 t 1 1 98438 220 0.00 2019-09-16 02:27:43 2019-09-16 02:27:52 t 1 1 98442 220 0.00 2019-09-16 02:39:03 2019-09-16 02:39:12 t 1 1 98443 220 0.00 2019-09-16 02:49:33 2019-09-16 02:49:40 t 1 1 98445 220 0.00 2019-09-16 03:00:18 2019-09-16 03:00:26 t 1 1 98450 220 0.00 2019-09-16 03:32:36 2019-09-16 03:32:45 t 1 1 98456 220 0.00 2019-09-16 04:24:03 2019-09-16 04:24:11 t 1 1 98457 220 0.00 2019-09-16 04:24:19 2019-09-16 04:24:27 t 1 1 98462 220 0.00 2019-09-16 04:25:39 2019-09-16 04:25:46 t 1 1 98466 220 0.00 2019-09-16 04:51:53 2019-09-16 04:52:02 t 1 1 98467 220 0.00 2019-09-16 05:02:22 2019-09-16 05:02:30 t 1 1 98472 220 0.00 2019-09-16 05:44:35 2019-09-16 05:44:43 t 1 1 98474 220 0.00 2019-09-16 05:55:20 2019-09-16 05:55:28 t 1 1 98480 220 0.00 2019-09-16 06:07:57 2019-09-16 07:02:55 t 1 1 98485 327 0.00 2019-09-16 07:43:18 2019-09-16 07:45:08 t 1 1 98489 400 0.00 2019-09-16 08:09:53 2019-09-16 08:16:58 t 1 1 98491 375 0.00 2019-09-16 01:47:36 2019-09-16 08:32:14 t 1 1 98494 294 0.00 2019-09-15 23:15:07 2019-09-16 08:46:31 t 1 2 98495 430 0.00 2019-09-16 08:47:13 2019-09-16 08:47:24 t 1 1 98498 327 0.00 2019-09-16 08:48:54 2019-09-16 09:03:40 t 1 1 98500 375 0.00 2019-09-16 08:32:13 2019-09-16 09:10:45 t 1 1 98501 464 0.00 2019-09-16 09:10:35 2019-09-16 09:13:10 t 1 1 98505 306 0.00 2019-09-16 09:29:44 2019-09-16 09:29:44 t 1 2 98508 327 0.00 2019-09-16 09:33:43 2019-09-16 09:36:03 t 1 1 98509 327 0.00 2019-09-16 09:36:33 2019-09-16 09:39:58 t 1 1 98510 220 0.00 2019-09-16 09:31:24 2019-09-16 09:49:16 t 1 1 98511 220 0.00 2019-09-16 09:15:05 2019-09-16 09:53:29 t 1 2 98519 416 0.00 2019-09-16 10:16:19 2019-09-16 10:27:14 t 1 1 98520 306 0.00 2019-09-16 10:14:24 2019-09-16 10:34:03 t 1 1 98522 306 0.00 2019-09-16 10:38:33 2019-09-16 10:43:40 t 1 1 98538 379 0.00 2019-09-16 11:32:15 2019-09-16 12:01:16 t 1 1 98543 327 0.00 2019-09-16 12:13:58 2019-09-16 12:17:22 t 1 1 98544 327 0.00 2019-09-16 12:17:36 2019-09-16 12:18:09 t 1 1 98548 306 0.00 2019-09-16 12:20:30 2019-09-16 12:24:35 t 1 1 98549 327 0.00 2019-09-16 12:28:05 2019-09-16 12:29:52 t 1 1 98553 420 0.00 2019-09-16 12:34:59 2019-09-16 12:37:55 t 1 1 98554 327 0.00 2019-09-16 12:37:31 2019-09-16 12:38:25 t 1 1 98555 420 0.00 2019-09-16 12:37:55 2019-09-16 12:39:34 t 1 1 98557 296 0.00 2019-09-16 12:29:22 2019-09-16 12:43:01 t 1 2 98558 327 0.00 2019-09-16 12:46:08 2019-09-16 12:48:36 t 1 1 98565 327 0.00 2019-09-16 13:17:22 2019-09-16 13:24:04 t 1 1 98568 327 0.00 2019-09-16 13:32:26 2019-09-16 13:32:50 t 1 1 98569 327 0.00 2019-09-16 13:32:58 2019-09-16 13:33:29 t 1 1 98571 327 0.00 2019-09-16 13:34:20 2019-09-16 13:35:06 t 1 1 98578 379 0.00 2019-09-16 12:14:36 2019-09-16 13:53:27 t 1 1 98579 428 0.00 2019-09-16 13:54:08 2019-09-16 13:55:38 t 1 1 98581 306 0.00 2019-09-16 13:42:00 2019-09-16 14:01:26 t 1 1 98583 327 0.00 2019-09-16 13:36:51 2019-09-16 14:08:03 t 1 1 98584 327 0.00 2019-09-16 14:08:42 2019-09-16 14:08:50 t 1 1 98589 464 0.00 2019-09-16 14:09:22 2019-09-16 14:19:20 t 1 1 98590 327 0.00 2019-09-16 14:20:57 2019-09-16 14:21:49 t 1 1 98599 379 0.00 2019-09-16 13:53:28 2019-09-16 14:52:56 t 1 1 98603 327 0.00 2019-09-16 15:05:33 2019-09-16 15:06:35 t 1 1 98604 379 0.00 2019-09-16 14:52:56 2019-09-16 15:07:18 t 1 1 98606 288 0.00 2019-09-16 15:06:02 2019-09-16 15:09:04 t 1 1 98612 422 0.00 2019-09-16 15:04:22 2019-09-16 15:14:24 t 1 1 98615 288 0.00 2019-09-16 15:12:33 2019-09-16 15:17:24 t 1 1 98623 422 0.00 2019-09-16 15:14:24 2019-09-16 15:30:01 t 1 1 98624 288 0.00 2019-09-16 15:23:40 2019-09-16 15:30:11 t 1 1 98626 327 0.00 2019-09-16 15:30:15 2019-09-16 15:32:06 t 1 1 98628 327 0.00 2019-09-16 15:35:13 2019-09-16 15:35:43 t 1 1 98631 306 0.00 2019-09-16 15:05:06 2019-09-16 15:38:45 t 1 1 98632 327 0.00 2019-09-16 15:40:36 2019-09-16 15:41:24 t 1 1 98633 327 0.00 2019-09-16 15:41:32 2019-09-16 15:42:14 t 1 1 98635 428 0.00 2019-09-16 15:36:10 2019-09-16 15:43:13 t 1 1 98641 428 0.00 2019-09-16 15:49:09 2019-09-16 15:55:01 t 1 1 98642 327 0.00 2019-09-16 15:54:23 2019-09-16 15:55:24 t 1 1 98645 327 0.00 2019-09-16 15:57:27 2019-09-16 15:58:10 t 1 1 98647 422 0.00 2019-09-16 15:49:29 2019-09-16 15:59:04 t 1 1 98648 428 0.00 2019-09-16 15:55:55 2019-09-16 15:59:07 t 1 1 98649 379 0.00 2019-09-16 15:44:01 2019-09-16 15:59:20 t 1 1 98652 288 0.00 2019-09-16 15:51:17 2019-09-16 16:06:12 t 1 1 98655 327 0.00 2019-09-16 16:08:46 2019-09-16 16:09:19 t 1 1 98658 379 0.00 2019-09-16 16:05:22 2019-09-16 16:13:58 t 1 1 98420 220 0.00 2019-09-16 01:02:27 2019-09-16 01:02:36 t 1 1 98424 430 0.00 2019-09-16 01:08:15 2019-09-16 01:13:07 t 1 1 98427 220 0.00 2019-09-16 01:33:58 2019-09-16 01:34:07 t 1 1 98428 220 0.00 2019-09-16 01:44:28 2019-09-16 01:44:37 t 1 1 98429 375 0.00 2019-09-16 01:11:19 2019-09-16 01:47:36 t 1 1 98432 220 0.00 2019-09-16 02:05:27 2019-09-16 02:05:35 t 1 1 98437 220 0.00 2019-09-16 02:27:27 2019-09-16 02:27:35 t 1 1 98441 220 0.00 2019-09-16 02:38:47 2019-09-16 02:38:55 t 1 1 98451 220 0.00 2019-09-16 03:43:06 2019-09-16 03:43:14 t 1 1 98452 220 0.00 2019-09-16 03:43:21 2019-09-16 03:43:29 t 1 1 98458 220 0.00 2019-09-16 04:24:35 2019-09-16 04:24:42 t 1 1 98460 220 0.00 2019-09-16 04:25:06 2019-09-16 04:25:14 t 1 1 98463 220 0.00 2019-09-16 04:30:36 2019-09-16 04:30:49 t 1 1 98464 220 0.00 2019-09-16 04:41:06 2019-09-16 04:41:20 t 1 1 98468 220 0.00 2019-09-16 05:12:52 2019-09-16 05:13:00 t 1 1 98469 220 0.00 2019-09-16 05:23:21 2019-09-16 05:23:30 t 1 1 98473 220 0.00 2019-09-16 05:44:51 2019-09-16 05:45:00 t 1 1 98475 220 0.00 2019-09-16 05:55:36 2019-09-16 05:55:45 t 1 1 98482 327 0.00 2019-09-16 07:32:49 2019-09-16 07:33:21 t 1 1 98483 220 0.00 2019-09-16 07:31:32 2019-09-16 07:36:48 t 1 1 98488 430 0.00 2019-09-16 07:58:13 2019-09-16 08:13:07 t 1 1 98492 400 0.00 2019-09-16 08:38:37 2019-09-16 08:40:27 t 1 1 98496 327 0.00 2019-09-16 08:04:25 2019-09-16 08:48:54 t 1 1 98499 306 0.00 2019-09-16 08:59:30 2019-09-16 09:06:54 t 1 1 98502 400 0.00 2019-09-16 09:24:47 2019-09-16 09:26:32 t 1 1 98506 327 0.00 2019-09-16 09:27:13 2019-09-16 09:33:36 t 1 1 98507 400 0.00 2019-09-16 09:34:07 2019-09-16 09:35:30 t 1 1 98512 327 0.00 2019-09-16 09:43:40 2019-09-16 09:54:29 t 1 1 98517 416 0.00 2019-09-16 10:01:15 2019-09-16 10:16:21 t 1 1 98523 412 0.00 2019-09-16 02:14:04 2019-09-16 10:48:40 t 1 1 98524 379 0.00 2019-09-16 10:23:41 2019-09-16 10:54:32 t 1 1 98525 306 0.00 2019-09-16 10:48:08 2019-09-16 10:59:27 t 1 1 98528 379 0.00 2019-09-16 10:54:32 2019-09-16 11:01:06 t 1 1 98529 379 0.00 2019-09-16 11:01:06 2019-09-16 11:11:51 t 1 1 98531 379 0.00 2019-09-16 11:11:51 2019-09-16 11:19:00 t 1 1 98533 398 0.00 2019-09-16 11:33:17 2019-09-16 11:33:17 t 1 2 98535 306 0.00 2019-09-16 11:33:44 2019-09-16 11:35:18 t 1 1 98536 306 0.00 2019-09-16 11:44:00 2019-09-16 11:46:25 t 1 1 98540 327 0.00 2019-09-16 11:58:09 2019-09-16 12:07:27 t 1 1 98545 451 0.00 2019-09-16 12:17:26 2019-09-16 12:22:19 t 1 1 98546 311 0.00 2019-09-16 12:22:41 2019-09-16 12:22:43 t 1 2 98551 372 0.00 2019-09-16 12:32:48 2019-09-16 12:32:49 t 1 2 98552 451 0.00 2019-09-16 12:31:28 2019-09-16 12:35:43 t 1 1 98560 327 0.00 2019-09-16 12:59:35 2019-09-16 13:04:02 t 1 1 98561 327 0.00 2019-09-16 13:05:15 2019-09-16 13:06:55 t 1 1 98562 306 0.00 2019-09-16 12:59:40 2019-09-16 13:10:17 t 1 1 98566 385 0.00 2019-09-16 13:27:37 2019-09-16 13:27:37 f 1 2 98567 327 0.00 2019-09-16 13:24:04 2019-09-16 13:30:22 t 1 1 98570 247 0.00 2019-09-16 13:33:40 2019-09-16 13:34:27 t 1 2 98575 464 0.00 2019-09-16 13:41:02 2019-09-16 13:46:58 t 1 1 98577 220 0.00 2019-09-16 10:13:40 2019-09-16 13:51:37 t 1 1 98580 220 0.00 2019-09-16 13:51:42 2019-09-16 14:00:22 t 1 1 98587 306 0.00 2019-09-16 14:01:22 2019-09-16 14:12:43 t 1 1 98591 412 0.00 2019-09-16 10:48:40 2019-09-16 14:33:46 t 1 1 98592 327 0.00 2019-09-16 14:31:45 2019-09-16 14:35:05 t 1 1 98593 327 0.00 2019-09-16 14:38:54 2019-09-16 14:39:24 t 1 1 98594 400 0.00 2019-09-16 14:32:12 2019-09-16 14:40:15 t 1 1 98595 451 0.00 2019-09-16 14:36:29 2019-09-16 14:42:04 t 1 1 98596 327 0.00 2019-09-16 14:40:40 2019-09-16 14:49:04 t 1 1 98600 327 0.00 2019-09-16 14:53:52 2019-09-16 14:54:19 t 1 1 98602 395 0.00 2019-09-16 15:01:13 2019-09-16 15:05:28 t 1 2 98605 327 0.00 2019-09-16 15:07:08 2019-09-16 15:07:34 t 1 1 98607 327 0.00 2019-09-16 15:08:32 2019-09-16 15:09:25 t 1 1 98609 327 0.00 2019-09-16 15:10:11 2019-09-16 15:10:56 t 1 1 98610 288 0.00 2019-09-16 15:09:04 2019-09-16 15:12:16 t 1 1 98611 327 0.00 2019-09-16 15:12:26 2019-09-16 15:13:00 t 1 1 98613 327 0.00 2019-09-16 15:13:56 2019-09-16 15:14:42 t 1 1 98617 379 0.00 2019-09-16 15:07:18 2019-09-16 15:20:21 t 1 1 98618 288 0.00 2019-09-16 15:17:24 2019-09-16 15:21:18 t 1 1 98620 288 0.00 2019-09-16 15:21:18 2019-09-16 15:23:40 t 1 1 98621 220 0.00 2019-09-16 14:00:38 2019-09-16 15:27:01 t 1 2 98625 327 0.00 2019-09-16 15:29:35 2019-09-16 15:31:25 t 1 1 98627 327 0.00 2019-09-16 15:34:36 2019-09-16 15:35:02 t 1 1 98634 327 0.00 2019-09-16 15:42:22 2019-09-16 15:42:54 t 1 1 98636 422 0.00 2019-09-16 15:37:14 2019-09-16 15:43:52 t 1 1 98638 422 0.00 2019-09-16 15:43:52 2019-09-16 15:49:29 t 1 1 98646 294 0.00 2019-09-16 14:55:38 2019-09-16 15:59:00 t 1 2 98650 220 0.00 2019-09-16 15:59:20 2019-09-16 16:05:19 t 1 1 98653 422 0.00 2019-09-16 15:59:04 2019-09-16 16:06:21 t 1 1 98654 327 0.00 2019-09-16 16:08:13 2019-09-16 16:08:39 t 1 1 98663 288 0.00 2019-09-16 16:08:43 2019-09-16 16:21:07 t 1 1 98664 327 0.00 2019-09-16 16:19:17 2019-09-16 16:21:21 t 1 1 98665 327 0.00 2019-09-16 16:21:29 2019-09-16 16:22:29 t 1 1 98669 327 0.00 2019-09-16 16:23:39 2019-09-16 16:24:12 t 1 1 98671 420 0.00 2019-09-16 16:27:07 2019-09-16 16:32:15 t 1 1 98673 451 0.00 2019-09-16 16:27:10 2019-09-16 16:35:05 t 1 1 98675 420 0.00 2019-09-16 16:38:14 2019-09-16 16:42:18 t 1 1 98676 420 0.00 2019-09-16 16:42:18 2019-09-16 16:43:18 t 1 1 98678 451 0.00 2019-09-16 16:35:05 2019-09-16 16:44:04 t 1 1 98679 327 0.00 2019-09-16 16:44:39 2019-09-16 16:45:13 t 1 1 98683 327 0.00 2019-09-16 16:55:07 2019-09-16 16:56:15 t 1 1 98685 428 0.00 2019-09-16 16:19:57 2019-09-16 16:57:05 t 1 1 98686 420 0.00 2019-09-16 16:48:37 2019-09-16 16:57:48 t 1 1 98687 400 0.00 2019-09-16 16:57:31 2019-09-16 16:58:47 t 1 1 98691 422 0.00 2019-09-16 17:07:44 2019-09-16 17:17:10 t 1 1 98693 420 0.00 2019-09-16 16:58:13 2019-09-16 17:23:23 t 1 1 98694 422 0.00 2019-09-16 17:17:10 2019-09-16 17:27:05 t 1 1 98695 372 0.00 2019-09-16 17:27:53 2019-09-16 17:27:54 t 1 2 98697 420 0.00 2019-09-16 17:23:22 2019-09-16 17:32:51 t 1 1 98699 428 0.00 2019-09-16 17:08:56 2019-09-16 17:42:47 t 1 1 98701 327 0.00 2019-09-16 17:03:37 2019-09-16 17:46:16 t 1 1 98703 306 0.00 2019-09-16 17:43:10 2019-09-16 17:46:40 t 1 1 98706 420 0.00 2019-09-16 17:47:41 2019-09-16 17:51:51 t 1 1 98709 288 0.00 2019-09-16 16:21:13 2019-09-16 17:52:54 t 1 1 98714 327 0.00 2019-09-16 18:00:37 2019-09-16 18:01:28 t 1 1 98716 464 0.00 2019-09-16 17:58:01 2019-09-16 18:11:11 t 1 1 98718 379 0.00 2019-09-16 16:56:11 2019-09-16 18:13:01 t 1 1 98661 412 0.00 2019-09-16 14:33:46 2019-09-16 16:19:05 t 1 1 98666 306 0.00 2019-09-16 16:16:22 2019-09-16 16:23:22 t 1 1 98668 220 0.00 2019-09-16 16:05:19 2019-09-16 16:24:04 t 1 1 98674 420 0.00 2019-09-16 16:32:18 2019-09-16 16:38:14 t 1 1 98682 379 0.00 2019-09-16 16:13:58 2019-09-16 16:56:11 t 1 1 98684 422 0.00 2019-09-16 16:47:48 2019-09-16 16:56:20 t 1 1 98688 220 0.00 2019-09-16 16:53:14 2019-09-16 17:06:37 t 1 2 98690 422 0.00 2019-09-16 16:56:20 2019-09-16 17:07:44 t 1 1 98692 306 0.00 2019-09-16 16:23:21 2019-09-16 17:23:14 t 1 1 98696 400 0.00 2019-09-16 17:25:48 2019-09-16 17:27:55 t 1 1 98700 375 0.00 2019-09-16 17:36:16 2019-09-16 17:46:06 t 1 1 98704 327 0.00 2019-09-16 17:46:50 2019-09-16 17:47:50 t 1 1 98705 327 0.00 2019-09-16 17:48:53 2019-09-16 17:50:42 t 1 1 98707 288 0.00 2019-09-16 17:51:58 2019-09-16 17:52:18 t 1 1 98711 400 0.00 2019-09-16 17:54:17 2019-09-16 17:56:50 t 1 1 98713 464 0.00 2019-09-16 17:55:24 2019-09-16 17:57:58 t 1 1 98715 327 0.00 2019-09-16 18:01:35 2019-09-16 18:03:19 t 1 1 98717 464 0.00 2019-09-16 18:11:14 2019-09-16 18:12:22 t 1 1 98720 464 0.00 2019-09-16 18:13:10 2019-09-16 18:14:14 t 1 1 98723 327 0.00 2019-09-16 18:18:15 2019-09-16 18:19:26 t 1 1 98729 327 0.00 2019-09-16 18:30:01 2019-09-16 18:30:41 t 1 1 98730 220 0.00 2019-09-16 18:08:18 2019-09-16 18:37:06 t 1 1 98735 306 0.00 2019-09-16 18:19:55 2019-09-16 18:42:46 t 1 1 98740 428 0.00 2019-09-16 17:43:49 2019-09-16 18:46:32 t 1 1 98741 375 0.00 2019-09-16 18:43:36 2019-09-16 18:48:18 t 1 1 98744 335 0.00 2019-09-16 18:59:51 2019-09-16 18:59:52 t 1 2 98747 335 0.00 2019-09-16 19:01:50 2019-09-16 19:01:50 f 1 2 98754 451 0.00 2019-09-16 18:43:51 2019-09-16 19:17:16 t 1 1 98755 451 0.00 2019-09-16 19:18:16 2019-09-16 19:22:47 t 1 1 98756 412 0.00 2019-09-16 16:19:05 2019-09-16 19:24:26 t 1 1 98758 375 0.00 2019-09-16 19:05:18 2019-09-16 19:30:16 t 1 1 98760 462 0.00 2019-09-16 19:30:03 2019-09-16 19:32:59 t 1 1 98763 375 0.00 2019-09-16 19:32:28 2019-09-16 19:41:51 t 1 1 98765 375 0.00 2019-09-16 19:41:51 2019-09-16 19:46:13 t 1 1 98775 459 0.00 2019-09-16 20:19:15 2019-09-16 20:19:15 f 1 2 98777 220 0.00 2019-09-16 20:11:51 2019-09-16 20:19:40 t 1 1 98779 327 0.00 2019-09-16 20:26:11 2019-09-16 20:27:17 t 1 1 98780 306 0.00 2019-09-16 20:21:30 2019-09-16 20:28:39 t 1 1 98784 375 0.00 2019-09-16 20:22:02 2019-09-16 20:38:14 t 1 1 98789 395 0.00 2019-09-16 20:27:54 2019-09-16 20:58:17 t 1 2 98790 327 0.00 2019-09-16 20:59:27 2019-09-16 21:00:00 t 1 1 98792 468 0.00 2019-09-16 21:03:20 2019-09-16 21:03:21 t 1 2 98793 375 0.00 2019-09-16 21:03:18 2019-09-16 21:04:47 t 1 1 98798 451 0.00 2019-09-16 21:01:32 2019-09-16 21:15:22 t 1 1 98799 468 0.00 2019-09-16 21:15:45 2019-09-16 21:15:45 f 1 1 98800 327 0.00 2019-09-16 21:20:27 2019-09-16 21:20:59 t 1 1 98801 451 0.00 2019-09-16 21:15:22 2019-09-16 21:28:06 t 1 1 98807 339 0.00 2019-09-16 21:04:52 2019-09-16 21:46:15 t 1 2 98812 375 0.00 2019-09-16 21:05:52 2019-09-16 21:49:33 t 1 1 98813 375 0.00 2019-09-16 21:49:33 2019-09-16 21:50:51 t 1 1 98815 468 0.00 2019-09-16 21:16:05 2019-09-16 21:59:47 t 1 1 98816 468 0.00 2019-09-16 21:59:57 2019-09-16 22:01:59 t 1 1 98817 375 0.00 2019-09-16 21:51:45 2019-09-16 22:06:39 t 1 1 98820 327 0.00 2019-09-16 22:10:12 2019-09-16 22:10:54 t 1 1 98822 428 0.00 2019-09-16 21:01:16 2019-09-16 22:13:18 t 1 1 98826 327 0.00 2019-09-16 22:18:54 2019-09-16 22:25:41 t 1 1 98830 327 0.00 2019-09-16 22:35:42 2019-09-16 22:36:28 t 1 1 98835 220 0.00 2019-09-16 22:43:43 2019-09-16 22:46:28 t 1 1 98838 220 0.00 2019-09-16 22:49:23 2019-09-16 22:51:44 t 1 1 98844 220 0.00 2019-09-16 22:55:37 2019-09-16 23:00:44 t 1 1 98850 220 0.00 2019-09-16 23:09:28 2019-09-16 23:17:03 t 1 1 98852 220 0.00 2019-09-16 23:17:03 2019-09-16 23:22:24 t 1 1 98864 220 0.00 2019-09-16 23:32:42 2019-09-16 23:38:46 t 1 1 98865 220 0.00 2019-09-16 23:10:55 2019-09-16 23:39:33 t 1 1 98869 422 0.00 2019-09-16 23:41:40 2019-09-16 23:47:37 t 1 1 98871 327 0.00 2019-09-16 23:48:17 2019-09-16 23:48:17 t 1 1 98874 422 0.00 2019-09-16 23:47:37 2019-09-16 23:51:49 t 1 1 98876 311 0.00 2019-09-16 22:35:44 2019-09-16 23:53:58 t 1 2 98887 468 0.00 2019-09-16 23:59:09 2019-09-17 00:21:25 t 1 1 98888 468 0.00 2019-09-17 00:22:09 2019-09-17 00:59:48 t 1 1 98894 400 0.00 2019-09-17 01:07:49 2019-09-17 02:18:58 t 1 1 98896 468 0.00 2019-09-17 02:03:27 2019-09-17 02:33:49 t 1 1 98897 311 0.00 2019-09-17 01:30:40 2019-09-17 02:37:03 t 1 2 98901 464 0.00 2019-09-17 03:16:09 2019-09-17 03:17:57 t 1 1 98904 468 0.00 2019-09-17 03:18:45 2019-09-17 03:54:16 t 1 1 98905 468 0.00 2019-09-17 03:54:16 2019-09-17 03:58:04 t 1 1 98906 468 0.00 2019-09-17 03:58:04 2019-09-17 04:01:30 t 1 1 98910 393 0.00 2019-09-17 05:01:03 2019-09-17 05:01:11 t 1 2 98911 393 0.00 2019-09-17 05:01:27 2019-09-17 05:01:28 t 1 2 98916 393 0.00 2019-09-17 05:03:41 2019-09-17 05:03:42 t 1 2 98917 393 0.00 2019-09-17 05:16:54 2019-09-17 05:16:55 t 1 2 98926 464 0.00 2019-09-17 08:12:14 2019-09-17 08:12:55 t 1 1 98927 220 0.00 2019-09-17 08:10:18 2019-09-17 08:14:51 t 1 1 98931 400 0.00 2019-09-17 08:59:47 2019-09-17 09:02:04 t 1 1 98935 451 0.00 2019-09-17 09:13:04 2019-09-17 09:29:19 t 1 1 98937 327 0.00 2019-09-17 08:06:56 2019-09-17 09:32:58 t 1 1 98938 327 0.00 2019-09-17 09:33:12 2019-09-17 09:33:46 t 1 1 98943 412 0.00 2019-09-16 21:43:40 2019-09-17 09:42:42 t 1 1 98946 306 0.00 2019-09-17 09:48:59 2019-09-17 09:51:10 t 1 1 98948 220 0.00 2019-09-17 09:54:09 2019-09-17 09:55:34 t 1 1 98950 451 0.00 2019-09-17 09:42:21 2019-09-17 09:58:38 t 1 1 98951 451 0.00 2019-09-17 10:03:11 2019-09-17 10:05:42 t 1 1 98953 306 0.00 2019-09-17 10:11:11 2019-09-17 10:12:57 t 1 1 98956 327 0.00 2019-09-17 09:34:07 2019-09-17 10:14:08 t 1 1 98963 220 0.00 2019-09-17 10:17:31 2019-09-17 10:18:06 t 1 1 98964 220 0.00 2019-09-17 10:18:05 2019-09-17 10:18:44 t 1 1 98965 220 0.00 2019-09-17 10:18:44 2019-09-17 10:19:19 t 1 1 98970 220 0.00 2019-09-17 10:20:29 2019-09-17 10:21:03 t 1 1 98971 220 0.00 2019-09-17 10:21:03 2019-09-17 10:21:32 t 1 1 98974 400 0.00 2019-09-17 10:17:36 2019-09-17 10:22:49 t 1 1 98977 220 0.00 2019-09-17 10:23:48 2019-09-17 10:24:22 t 1 1 98979 220 0.00 2019-09-17 10:24:58 2019-09-17 10:25:36 t 1 1 98984 327 0.00 2019-09-17 10:19:57 2019-09-17 10:28:22 t 1 1 98988 220 0.00 2019-09-17 10:29:45 2019-09-17 10:30:18 t 1 1 98992 416 0.00 2019-09-17 09:55:46 2019-09-17 10:31:26 t 1 1 98993 220 0.00 2019-09-17 10:30:56 2019-09-17 10:31:36 t 1 1 98996 306 0.00 2019-09-17 10:17:39 2019-09-17 10:32:44 t 1 1 98662 428 0.00 2019-09-16 15:59:06 2019-09-16 16:19:57 t 1 1 98667 327 0.00 2019-09-16 16:22:40 2019-09-16 16:23:23 t 1 1 98670 220 0.00 2019-09-16 16:24:04 2019-09-16 16:26:48 t 1 1 98672 327 0.00 2019-09-16 16:34:09 2019-09-16 16:34:43 t 1 1 98677 400 0.00 2019-09-16 16:39:37 2019-09-16 16:43:24 t 1 1 98680 422 0.00 2019-09-16 16:10:52 2019-09-16 16:47:48 t 1 1 98681 420 0.00 2019-09-16 16:43:21 2019-09-16 16:48:37 t 1 1 98689 296 0.00 2019-09-16 17:01:40 2019-09-16 17:07:02 t 1 2 98698 306 0.00 2019-09-16 17:32:18 2019-09-16 17:36:13 t 1 1 98702 327 0.00 2019-09-16 17:46:23 2019-09-16 17:46:31 t 1 1 98708 306 0.00 2019-09-16 17:48:29 2019-09-16 17:52:50 t 1 1 98710 375 0.00 2019-09-16 17:49:48 2019-09-16 17:55:08 t 1 1 98712 420 0.00 2019-09-16 17:51:55 2019-09-16 17:57:11 t 1 1 98719 327 0.00 2019-09-16 18:13:16 2019-09-16 18:13:47 t 1 1 98721 464 0.00 2019-09-16 18:14:18 2019-09-16 18:15:29 t 1 1 98722 306 0.00 2019-09-16 18:12:56 2019-09-16 18:17:06 t 1 1 98727 335 0.00 2019-09-16 18:26:15 2019-09-16 18:27:23 t 1 2 98728 335 0.00 2019-09-16 18:27:37 2019-09-16 18:28:37 t 1 2 98732 327 0.00 2019-09-16 18:40:12 2019-09-16 18:41:29 t 1 1 98737 375 0.00 2019-09-16 18:40:16 2019-09-16 18:43:13 t 1 1 98739 420 0.00 2019-09-16 18:41:34 2019-09-16 18:44:17 t 1 1 98742 335 0.00 2019-09-16 18:52:41 2019-09-16 18:53:44 t 1 2 98745 335 0.00 2019-09-16 18:59:54 2019-09-16 19:00:57 t 1 2 98746 335 0.00 2019-09-16 19:01:40 2019-09-16 19:01:40 f 1 2 98748 306 0.00 2019-09-16 18:42:46 2019-09-16 19:02:12 t 1 1 98749 335 0.00 2019-09-16 19:02:15 2019-09-16 19:02:15 f 1 2 98751 335 0.00 2019-09-16 19:02:48 2019-09-16 19:02:48 f 1 2 98752 335 0.00 2019-09-16 19:03:13 2019-09-16 19:03:32 t 1 2 98753 375 0.00 2019-09-16 19:03:36 2019-09-16 19:05:19 t 1 1 98757 462 0.00 2019-09-16 18:50:58 2019-09-16 19:30:03 t 1 1 98759 375 0.00 2019-09-16 19:30:16 2019-09-16 19:32:20 t 1 1 98761 400 0.00 2019-09-16 19:31:19 2019-09-16 19:34:57 t 1 1 98762 428 0.00 2019-09-16 18:46:25 2019-09-16 19:35:42 t 1 1 98764 456 0.00 2019-09-16 19:39:05 2019-09-16 19:44:33 t 1 1 98767 456 0.00 2019-09-16 19:44:50 2019-09-16 19:50:10 t 1 1 98768 375 0.00 2019-09-16 19:48:44 2019-09-16 19:50:43 t 1 1 98771 462 0.00 2019-09-16 19:32:59 2019-09-16 20:05:32 t 1 1 98774 327 0.00 2019-09-16 20:15:42 2019-09-16 20:16:15 t 1 1 98776 375 0.00 2019-09-16 20:15:39 2019-09-16 20:19:23 t 1 1 98778 464 0.00 2019-09-16 20:09:30 2019-09-16 20:22:47 t 1 1 98783 327 0.00 2019-09-16 20:37:13 2019-09-16 20:37:53 t 1 1 98786 327 0.00 2019-09-16 20:47:51 2019-09-16 20:49:33 t 1 1 98787 428 0.00 2019-09-16 20:10:38 2019-09-16 20:50:43 t 1 1 98794 375 0.00 2019-09-16 21:04:47 2019-09-16 21:05:52 t 1 1 98795 327 0.00 2019-09-16 21:09:57 2019-09-16 21:10:30 t 1 1 98796 468 0.00 2019-09-16 21:14:54 2019-09-16 21:14:54 f 1 1 98805 306 0.00 2019-09-16 21:34:38 2019-09-16 21:45:13 t 1 1 98806 400 0.00 2019-09-16 21:41:31 2019-09-16 21:45:53 t 1 1 98810 220 0.00 2019-09-16 21:47:54 2019-09-16 21:48:09 t 1 2 98819 375 0.00 2019-09-16 22:06:46 2019-09-16 22:10:01 t 1 1 98821 327 0.00 2019-09-16 22:11:59 2019-09-16 22:12:32 t 1 1 98825 247 0.00 2019-09-16 22:13:22 2019-09-16 22:22:42 t 1 2 98827 375 0.00 2019-09-16 22:10:35 2019-09-16 22:26:10 t 1 1 98828 311 0.00 2019-09-16 22:34:21 2019-09-16 22:34:21 t 1 2 98833 220 0.00 2019-09-16 22:41:51 2019-09-16 22:43:43 t 1 1 98834 375 0.00 2019-09-16 22:26:14 2019-09-16 22:45:57 t 1 1 98836 327 0.00 2019-09-16 22:46:29 2019-09-16 22:47:23 t 1 1 98837 220 0.00 2019-09-16 22:46:28 2019-09-16 22:49:23 t 1 1 98841 220 0.00 2019-09-16 22:53:49 2019-09-16 22:55:37 t 1 1 98842 395 0.00 2019-09-16 22:02:24 2019-09-16 22:56:46 t 1 2 98843 327 0.00 2019-09-16 22:57:28 2019-09-16 22:58:12 t 1 1 98845 468 0.00 2019-09-16 22:29:29 2019-09-16 23:01:56 t 1 1 98848 220 0.00 2019-09-16 23:05:53 2019-09-16 23:09:28 t 1 1 98849 392 0.00 2019-09-16 23:13:27 2019-09-16 23:13:28 t 1 2 98851 327 0.00 2019-09-16 23:18:57 2019-09-16 23:20:02 t 1 1 98854 327 0.00 2019-09-16 23:25:57 2019-09-16 23:26:22 t 1 1 98859 247 0.00 2019-09-16 23:27:18 2019-09-16 23:30:28 t 1 2 98860 296 0.00 2019-09-16 23:29:01 2019-09-16 23:32:25 t 1 2 98863 424 0.00 2019-09-16 23:35:03 2019-09-16 23:37:21 t 1 2 98866 220 0.00 2019-09-16 23:38:46 2019-09-16 23:40:38 t 1 1 98868 422 0.00 2019-09-16 23:01:04 2019-09-16 23:41:40 t 1 1 98873 327 0.00 2019-09-16 23:49:55 2019-09-16 23:50:42 t 1 1 98875 327 0.00 2019-09-16 23:52:35 2019-09-16 23:53:06 t 1 1 98878 220 0.00 2019-09-16 23:49:51 2019-09-16 23:55:07 t 1 1 98882 400 0.00 2019-09-16 22:43:51 2019-09-16 23:58:53 t 1 1 98884 327 0.00 2019-09-17 00:03:06 2019-09-17 00:03:39 t 1 1 98886 327 0.00 2019-09-17 00:13:37 2019-09-17 00:14:09 t 1 1 98889 422 0.00 2019-09-16 23:58:24 2019-09-17 01:04:00 t 1 1 98890 395 0.00 2019-09-17 01:14:21 2019-09-17 01:25:36 t 1 2 98891 311 0.00 2019-09-17 00:56:01 2019-09-17 01:27:22 t 1 2 98892 468 0.00 2019-09-17 01:01:08 2019-09-17 01:53:09 t 1 1 98893 468 0.00 2019-09-17 01:53:09 2019-09-17 02:03:27 t 1 1 98895 400 0.00 2019-09-17 02:20:44 2019-09-17 02:22:33 t 1 1 98903 464 0.00 2019-09-17 03:17:57 2019-09-17 03:19:12 t 1 1 98907 468 0.00 2019-09-17 04:02:18 2019-09-17 04:11:46 t 1 1 98912 393 0.00 2019-09-17 05:01:48 2019-09-17 05:01:49 t 1 2 98920 327 0.00 2019-09-17 07:55:07 2019-09-17 07:55:52 t 1 1 98921 327 0.00 2019-09-17 08:00:03 2019-09-17 08:00:36 t 1 1 98923 220 0.00 2019-09-17 07:59:20 2019-09-17 08:07:07 t 1 1 98924 464 0.00 2019-09-17 08:06:49 2019-09-17 08:07:37 t 1 1 98932 306 0.00 2019-09-17 09:02:57 2019-09-17 09:04:45 t 1 1 98934 220 0.00 2019-09-17 09:23:51 2019-09-17 09:28:37 t 1 1 98941 220 0.00 2019-09-17 09:35:52 2019-09-17 09:41:51 t 1 1 98942 451 0.00 2019-09-17 09:39:44 2019-09-17 09:42:21 t 1 1 98944 468 0.00 2019-09-17 09:36:38 2019-09-17 09:42:45 t 1 1 98945 306 0.00 2019-09-17 09:28:52 2019-09-17 09:47:12 t 1 1 98952 296 0.00 2019-09-17 10:09:29 2019-09-17 10:10:52 t 1 2 98954 220 0.00 2019-09-17 10:01:03 2019-09-17 10:12:59 t 1 1 98955 220 0.00 2019-09-17 10:12:59 2019-09-17 10:13:50 t 1 1 98958 327 0.00 2019-09-17 10:14:23 2019-09-17 10:15:02 t 1 1 98961 220 0.00 2019-09-17 10:15:49 2019-09-17 10:16:53 t 1 1 98962 220 0.00 2019-09-17 10:16:53 2019-09-17 10:17:31 t 1 1 98967 327 0.00 2019-09-17 10:15:21 2019-09-17 10:19:48 t 1 1 98968 220 0.00 2019-09-17 10:19:48 2019-09-17 10:19:56 t 1 1 98972 220 0.00 2019-09-17 10:21:32 2019-09-17 10:21:41 t 1 1 98975 220 0.00 2019-09-17 10:22:07 2019-09-17 10:23:10 t 1 1 98976 220 0.00 2019-09-17 10:23:09 2019-09-17 10:23:48 t 1 1 98724 327 0.00 2019-09-16 18:19:32 2019-09-16 18:19:41 t 1 1 98725 335 0.00 2019-09-16 18:20:42 2019-09-16 18:21:48 t 1 2 98726 335 0.00 2019-09-16 18:21:56 2019-09-16 18:22:59 t 1 2 98731 375 0.00 2019-09-16 17:55:08 2019-09-16 18:40:17 t 1 1 98733 420 0.00 2019-09-16 18:36:11 2019-09-16 18:41:34 t 1 1 98734 395 0.00 2019-09-16 17:50:08 2019-09-16 18:42:30 t 1 2 98736 464 0.00 2019-09-16 18:15:49 2019-09-16 18:42:54 t 1 1 98738 464 0.00 2019-09-16 18:43:00 2019-09-16 18:44:04 t 1 1 98743 335 0.00 2019-09-16 18:56:26 2019-09-16 18:57:36 t 1 2 98750 375 0.00 2019-09-16 18:49:28 2019-09-16 19:02:44 t 1 1 98766 375 0.00 2019-09-16 19:46:13 2019-09-16 19:48:44 t 1 1 98769 327 0.00 2019-09-16 19:53:32 2019-09-16 19:55:05 t 1 1 98770 375 0.00 2019-09-16 19:52:36 2019-09-16 20:03:41 t 1 1 98772 327 0.00 2019-09-16 20:05:00 2019-09-16 20:05:43 t 1 1 98773 428 0.00 2019-09-16 19:37:26 2019-09-16 20:10:02 t 1 1 98781 461 0.00 2019-09-16 20:19:35 2019-09-16 20:29:40 t 1 2 98782 392 0.00 2019-09-16 20:32:17 2019-09-16 20:32:18 t 1 2 98785 430 0.00 2019-09-16 20:43:15 2019-09-16 20:47:06 t 1 1 98788 449 0.00 2019-09-16 20:45:01 2019-09-16 20:50:51 t 1 1 98791 375 0.00 2019-09-16 20:39:16 2019-09-16 21:02:54 t 1 1 98797 468 0.00 2019-09-16 21:15:16 2019-09-16 21:15:16 f 1 1 98802 220 0.00 2019-09-16 21:36:10 2019-09-16 21:36:10 t 1 2 98803 402 0.00 2019-09-16 21:36:30 2019-09-16 21:36:30 t 1 2 98804 430 0.00 2019-09-16 21:37:58 2019-09-16 21:38:10 t 1 1 98808 220 0.00 2019-09-16 21:46:17 2019-09-16 21:46:22 t 1 2 98809 220 0.00 2019-09-16 21:46:55 2019-09-16 21:47:19 t 1 2 98811 220 0.00 2019-09-16 19:17:18 2019-09-16 21:48:13 t 1 2 98814 395 0.00 2019-09-16 21:50:53 2019-09-16 21:59:15 t 1 2 98818 327 0.00 2019-09-16 21:30:35 2019-09-16 22:06:52 t 1 1 98823 379 0.00 2019-09-16 18:13:17 2019-09-16 22:14:12 t 1 1 98824 464 0.00 2019-09-16 22:09:45 2019-09-16 22:22:10 t 1 1 98829 220 0.00 2019-09-16 22:27:46 2019-09-16 22:34:40 t 1 1 98831 220 0.00 2019-09-16 22:04:47 2019-09-16 22:40:07 t 1 2 98832 220 0.00 2019-09-16 22:34:53 2019-09-16 22:40:59 t 1 2 98839 220 0.00 2019-09-16 22:01:06 2019-09-16 22:52:06 t 1 2 98840 220 0.00 2019-09-16 22:51:44 2019-09-16 22:53:49 t 1 1 98846 220 0.00 2019-09-16 23:00:44 2019-09-16 23:05:53 t 1 1 98847 327 0.00 2019-09-16 23:08:08 2019-09-16 23:08:48 t 1 1 98853 220 0.00 2019-09-16 23:19:13 2019-09-16 23:22:39 t 1 2 98855 468 0.00 2019-09-16 23:02:55 2019-09-16 23:26:57 t 1 1 98856 220 0.00 2019-09-16 23:22:24 2019-09-16 23:27:17 t 1 1 98857 379 0.00 2019-09-16 22:36:45 2019-09-16 23:28:08 t 1 1 98858 451 0.00 2019-09-16 23:23:26 2019-09-16 23:28:43 t 1 1 98861 220 0.00 2019-09-16 23:27:17 2019-09-16 23:32:42 t 1 1 98862 327 0.00 2019-09-16 23:36:28 2019-09-16 23:37:00 t 1 1 98867 220 0.00 2019-09-16 23:40:38 2019-09-16 23:40:54 t 1 1 98870 327 0.00 2019-09-16 23:46:57 2019-09-16 23:48:09 t 1 1 98872 220 0.00 2019-09-16 23:44:12 2019-09-16 23:49:51 t 1 1 98877 422 0.00 2019-09-16 23:51:49 2019-09-16 23:54:39 t 1 1 98879 451 0.00 2019-09-16 23:48:10 2019-09-16 23:55:46 t 1 1 98880 220 0.00 2019-09-16 23:55:07 2019-09-16 23:56:32 t 1 1 98881 422 0.00 2019-09-16 23:54:39 2019-09-16 23:58:24 t 1 1 98883 468 0.00 2019-09-16 23:26:57 2019-09-16 23:59:09 t 1 1 98885 451 0.00 2019-09-16 23:55:46 2019-09-17 00:05:26 t 1 1 98898 456 0.00 2019-09-17 01:44:49 2019-09-17 02:37:23 t 1 1 98899 464 0.00 2019-09-17 03:06:10 2019-09-17 03:14:07 t 1 1 98900 464 0.00 2019-09-17 03:14:10 2019-09-17 03:16:10 t 1 1 98902 468 0.00 2019-09-17 02:33:49 2019-09-17 03:18:45 t 1 1 98908 379 0.00 2019-09-16 23:28:08 2019-09-17 04:32:15 t 1 1 98909 393 0.00 2019-09-17 05:00:49 2019-09-17 05:00:50 t 1 2 98913 393 0.00 2019-09-17 05:02:01 2019-09-17 05:02:03 t 1 2 98914 393 0.00 2019-09-17 05:02:36 2019-09-17 05:02:38 t 1 2 98915 393 0.00 2019-09-17 05:03:18 2019-09-17 05:03:18 t 1 2 98918 296 0.00 2019-09-17 06:56:40 2019-09-17 07:09:04 t 1 2 98919 220 0.00 2019-09-17 07:51:41 2019-09-17 07:51:42 t 1 1 98922 327 0.00 2019-09-17 08:04:18 2019-09-17 08:05:21 t 1 1 98925 220 0.00 2019-09-17 08:07:07 2019-09-17 08:10:18 t 1 1 98928 379 0.00 2019-09-17 08:54:25 2019-09-17 08:54:25 t 1 2 98929 451 0.00 2019-09-17 08:40:56 2019-09-17 08:57:22 t 1 1 98930 306 0.00 2019-09-17 08:18:25 2019-09-17 08:59:43 t 1 1 98933 306 0.00 2019-09-17 09:25:38 2019-09-17 09:28:19 t 1 1 98936 220 0.00 2019-09-17 09:28:37 2019-09-17 09:30:46 t 1 1 98939 468 0.00 2019-09-17 09:20:58 2019-09-17 09:36:38 t 1 1 98940 451 0.00 2019-09-17 09:29:19 2019-09-17 09:39:45 t 1 1 98947 416 0.00 2019-09-17 09:32:40 2019-09-17 09:51:12 t 1 1 98949 400 0.00 2019-09-17 09:31:49 2019-09-17 09:55:34 t 1 1 98957 220 0.00 2019-09-17 10:13:50 2019-09-17 10:14:27 t 1 1 98959 220 0.00 2019-09-17 10:14:26 2019-09-17 10:15:13 t 1 1 98960 220 0.00 2019-09-17 10:15:12 2019-09-17 10:15:49 t 1 1 98966 220 0.00 2019-09-17 10:19:19 2019-09-17 10:19:45 t 1 1 98969 220 0.00 2019-09-17 10:19:56 2019-09-17 10:20:29 t 1 1 98973 220 0.00 2019-09-17 10:21:37 2019-09-17 10:22:08 t 1 1 98983 220 0.00 2019-09-17 10:27:21 2019-09-17 10:27:56 t 1 1 98986 220 0.00 2019-09-17 10:28:32 2019-09-17 10:29:07 t 1 1 98989 379 0.00 2019-09-17 08:54:41 2019-09-17 10:30:19 t 1 1 98994 327 0.00 2019-09-17 10:31:31 2019-09-17 10:32:03 t 1 1 98995 220 0.00 2019-09-17 10:31:36 2019-09-17 10:32:13 t 1 1 98997 327 0.00 2019-09-17 10:32:12 2019-09-17 10:32:46 t 1 1 98999 220 0.00 2019-09-17 10:32:47 2019-09-17 10:33:25 t 1 1 99001 456 0.00 2019-09-17 10:31:14 2019-09-17 10:34:06 t 1 1 99005 220 0.00 2019-09-17 10:34:47 2019-09-17 10:35:21 t 1 1 99008 220 0.00 2019-09-17 10:35:58 2019-09-17 10:36:00 t 1 1 99009 220 0.00 2019-09-17 10:36:00 2019-09-17 10:36:32 t 1 1 99014 220 0.00 2019-09-17 10:37:13 2019-09-17 10:37:53 t 1 1 99015 220 0.00 2019-09-17 10:37:52 2019-09-17 10:38:26 t 1 1 99018 327 0.00 2019-09-17 10:37:23 2019-09-17 10:39:29 t 1 1 99021 220 0.00 2019-09-17 10:39:54 2019-09-17 10:40:28 t 1 1 99032 220 0.00 2019-09-17 10:45:43 2019-09-17 10:46:17 t 1 1 99035 220 0.00 2019-09-17 10:46:54 2019-09-17 10:47:04 t 1 1 99036 220 0.00 2019-09-17 10:47:03 2019-09-17 10:47:44 t 1 1 99037 220 0.00 2019-09-17 10:47:40 2019-09-17 10:48:19 t 1 1 99039 220 0.00 2019-09-17 10:48:19 2019-09-17 10:48:54 t 1 1 99043 306 0.00 2019-09-17 10:51:39 2019-09-17 10:53:45 t 1 1 99047 327 0.00 2019-09-17 11:00:33 2019-09-17 11:01:14 t 1 1 99048 327 0.00 2019-09-17 11:01:42 2019-09-17 11:02:43 t 1 1 99049 288 0.00 2019-09-17 10:30:43 2019-09-17 11:04:07 t 1 1 99053 306 0.00 2019-09-17 10:59:47 2019-09-17 11:09:27 t 1 1 98978 220 0.00 2019-09-17 10:24:22 2019-09-17 10:24:58 t 1 1 98980 220 0.00 2019-09-17 10:25:36 2019-09-17 10:26:14 t 1 1 98981 220 0.00 2019-09-17 10:26:13 2019-09-17 10:26:45 t 1 1 98982 220 0.00 2019-09-17 10:26:45 2019-09-17 10:27:21 t 1 1 98985 220 0.00 2019-09-17 10:27:56 2019-09-17 10:28:33 t 1 1 98987 220 0.00 2019-09-17 10:29:07 2019-09-17 10:29:45 t 1 1 98990 220 0.00 2019-09-17 10:30:18 2019-09-17 10:30:56 t 1 1 98991 327 0.00 2019-09-17 10:29:19 2019-09-17 10:31:19 t 1 1 99000 327 0.00 2019-09-17 10:32:55 2019-09-17 10:33:32 t 1 1 99004 220 0.00 2019-09-17 10:34:10 2019-09-17 10:34:47 t 1 1 99007 220 0.00 2019-09-17 10:35:21 2019-09-17 10:35:58 t 1 1 99011 451 0.00 2019-09-17 10:24:05 2019-09-17 10:37:04 t 1 1 99012 220 0.00 2019-09-17 10:36:37 2019-09-17 10:37:13 t 1 1 99013 327 0.00 2019-09-17 10:35:00 2019-09-17 10:37:23 t 1 1 99022 327 0.00 2019-09-17 10:39:43 2019-09-17 10:40:38 t 1 1 99023 220 0.00 2019-09-17 10:40:28 2019-09-17 10:41:05 t 1 1 99024 220 0.00 2019-09-17 10:41:05 2019-09-17 10:41:43 t 1 1 99025 220 0.00 2019-09-17 10:41:42 2019-09-17 10:42:21 t 1 1 99030 220 0.00 2019-09-17 10:44:15 2019-09-17 10:45:01 t 1 1 99034 220 0.00 2019-09-17 10:46:33 2019-09-17 10:46:55 t 1 1 99038 451 0.00 2019-09-17 10:37:04 2019-09-17 10:48:51 t 1 1 99045 428 0.00 2019-09-17 09:10:01 2019-09-17 10:58:46 t 1 1 99046 327 0.00 2019-09-17 10:43:35 2019-09-17 11:00:34 t 1 1 99050 327 0.00 2019-09-17 11:03:00 2019-09-17 11:05:02 t 1 1 99051 327 0.00 2019-09-17 11:05:02 2019-09-17 11:06:05 t 1 1 99055 327 0.00 2019-09-17 11:11:18 2019-09-17 11:12:22 t 1 1 99056 327 0.00 2019-09-17 11:12:30 2019-09-17 11:13:20 t 1 1 99061 327 0.00 2019-09-17 11:17:33 2019-09-17 11:18:08 t 1 1 99063 327 0.00 2019-09-17 11:18:39 2019-09-17 11:26:49 t 1 1 99070 288 0.00 2019-09-17 11:37:04 2019-09-17 11:46:32 t 1 1 99074 327 0.00 2019-09-17 12:02:05 2019-09-17 12:03:00 t 1 1 99076 464 0.00 2019-09-17 12:02:43 2019-09-17 12:08:59 t 1 1 99077 327 0.00 2019-09-17 12:04:11 2019-09-17 12:09:51 t 1 1 99079 464 0.00 2019-09-17 12:09:13 2019-09-17 12:11:49 t 1 1 99080 464 0.00 2019-09-17 12:12:02 2019-09-17 12:13:58 t 1 1 99088 420 0.00 2019-09-17 12:26:14 2019-09-17 12:32:47 t 1 1 99089 462 0.00 2019-09-17 12:08:40 2019-09-17 12:32:50 t 1 1 99090 306 0.00 2019-09-17 12:50:20 2019-09-17 12:53:00 t 1 1 99094 412 0.00 2019-09-17 09:42:42 2019-09-17 12:58:41 t 1 1 99095 400 0.00 2019-09-17 12:21:15 2019-09-17 13:01:04 t 1 1 99096 428 0.00 2019-09-17 13:03:36 2019-09-17 13:08:49 t 1 1 99100 220 0.00 2019-09-17 13:05:10 2019-09-17 13:12:08 t 1 1 99103 461 0.00 2019-09-17 13:15:07 2019-09-17 13:15:53 t 1 2 99107 288 0.00 2019-09-17 13:15:47 2019-09-17 13:19:23 t 1 1 99110 379 0.00 2019-09-17 10:30:19 2019-09-17 13:28:22 t 1 1 99112 456 0.00 2019-09-17 13:31:55 2019-09-17 13:34:21 t 1 1 99115 288 0.00 2019-09-17 13:36:01 2019-09-17 13:36:27 t 1 1 99116 288 0.00 2019-09-17 13:36:25 2019-09-17 13:38:38 t 1 1 99117 327 0.00 2019-09-17 13:34:44 2019-09-17 13:41:35 t 1 1 99118 327 0.00 2019-09-17 13:41:49 2019-09-17 13:42:22 t 1 1 99122 327 0.00 2019-09-17 13:47:49 2019-09-17 13:48:14 t 1 1 99124 451 0.00 2019-09-17 13:23:46 2019-09-17 13:48:17 t 1 1 99126 288 0.00 2019-09-17 13:46:46 2019-09-17 13:52:12 t 1 1 99132 327 0.00 2019-09-17 13:57:26 2019-09-17 13:58:00 t 1 1 99137 420 0.00 2019-09-17 12:32:47 2019-09-17 14:04:46 t 1 1 99138 327 0.00 2019-09-17 14:04:25 2019-09-17 14:05:14 t 1 1 99139 327 0.00 2019-09-17 14:05:53 2019-09-17 14:06:23 t 1 1 99140 375 0.00 2019-09-17 13:48:16 2019-09-17 14:07:06 t 1 1 99141 327 0.00 2019-09-17 14:06:40 2019-09-17 14:07:20 t 1 1 99142 327 0.00 2019-09-17 14:07:47 2019-09-17 14:08:20 t 1 1 99143 327 0.00 2019-09-17 14:09:24 2019-09-17 14:09:53 t 1 1 99148 420 0.00 2019-09-17 14:13:49 2019-09-17 14:14:48 t 1 1 99150 420 0.00 2019-09-17 14:14:50 2019-09-17 14:16:02 t 1 1 99154 420 0.00 2019-09-17 14:16:05 2019-09-17 14:21:04 t 1 1 99158 375 0.00 2019-09-17 14:21:06 2019-09-17 14:22:43 t 1 1 99159 288 0.00 2019-09-17 14:02:48 2019-09-17 14:23:48 t 1 1 99163 288 0.00 2019-09-17 14:23:56 2019-09-17 14:35:45 t 1 1 99168 220 0.00 2019-09-17 14:21:49 2019-09-17 14:43:33 t 1 1 99169 296 0.00 2019-09-17 14:41:52 2019-09-17 14:45:12 t 1 2 99170 220 0.00 2019-09-17 14:43:33 2019-09-17 14:45:15 t 1 1 99172 220 0.00 2019-09-17 14:45:50 2019-09-17 14:48:06 t 1 1 99173 220 0.00 2019-09-17 14:48:06 2019-09-17 14:48:41 t 1 1 99174 220 0.00 2019-09-17 14:48:41 2019-09-17 14:49:28 t 1 1 99176 220 0.00 2019-09-17 14:49:27 2019-09-17 14:50:03 t 1 1 99181 220 0.00 2019-09-17 14:52:41 2019-09-17 14:53:24 t 1 1 99183 220 0.00 2019-09-17 14:53:24 2019-09-17 14:53:57 t 1 1 99187 327 0.00 2019-09-17 14:57:14 2019-09-17 14:57:34 t 1 1 99189 220 0.00 2019-09-17 14:58:26 2019-09-17 14:59:20 t 1 1 99192 327 0.00 2019-09-17 15:04:28 2019-09-17 15:05:00 t 1 1 99193 327 0.00 2019-09-17 15:06:01 2019-09-17 15:06:30 t 1 1 99194 220 0.00 2019-09-17 15:06:10 2019-09-17 15:08:04 t 1 1 99195 327 0.00 2019-09-17 15:07:13 2019-09-17 15:08:49 t 1 1 99196 288 0.00 2019-09-17 14:39:25 2019-09-17 15:09:51 t 1 1 99198 311 0.00 2019-09-17 15:08:30 2019-09-17 15:13:53 t 1 2 99205 220 0.00 2019-09-17 15:24:22 2019-09-17 15:26:50 t 1 1 99210 327 0.00 2019-09-17 15:32:00 2019-09-17 15:34:02 t 1 1 99211 327 0.00 2019-09-17 15:34:14 2019-09-17 15:34:23 t 1 1 99212 311 0.00 2019-09-17 15:24:19 2019-09-17 15:35:44 t 1 2 99215 327 0.00 2019-09-17 15:39:15 2019-09-17 15:39:46 t 1 1 99217 327 0.00 2019-09-17 15:42:43 2019-09-17 15:43:17 t 1 1 99220 327 0.00 2019-09-17 15:45:06 2019-09-17 15:46:06 t 1 1 99221 451 0.00 2019-09-17 14:50:17 2019-09-17 15:47:07 t 1 1 99224 327 0.00 2019-09-17 15:50:08 2019-09-17 15:51:03 t 1 1 99225 327 0.00 2019-09-17 15:51:13 2019-09-17 15:51:40 t 1 1 99229 327 0.00 2019-09-17 15:55:37 2019-09-17 15:56:07 t 1 1 99230 327 0.00 2019-09-17 15:57:00 2019-09-17 15:57:35 t 1 1 99236 327 0.00 2019-09-17 16:01:30 2019-09-17 16:01:58 t 1 1 99240 327 0.00 2019-09-17 16:04:22 2019-09-17 16:06:22 t 1 1 99242 327 0.00 2019-09-17 16:10:04 2019-09-17 16:10:50 t 1 1 99243 327 0.00 2019-09-17 16:11:21 2019-09-17 16:11:48 t 1 1 99244 327 0.00 2019-09-17 16:13:45 2019-09-17 16:16:19 t 1 1 99248 327 0.00 2019-09-17 16:20:09 2019-09-17 16:21:14 t 1 1 99249 327 0.00 2019-09-17 16:22:16 2019-09-17 16:23:02 t 1 1 99250 327 0.00 2019-09-17 16:23:16 2019-09-17 16:23:24 t 1 1 99252 327 0.00 2019-09-17 16:24:53 2019-09-17 16:26:29 t 1 1 99254 400 0.00 2019-09-17 16:26:56 2019-09-17 16:30:50 t 1 1 99261 327 0.00 2019-09-17 16:43:53 2019-09-17 16:44:55 t 1 1 98998 220 0.00 2019-09-17 10:32:13 2019-09-17 10:32:48 t 1 1 99002 220 0.00 2019-09-17 10:33:25 2019-09-17 10:34:10 t 1 1 99003 327 0.00 2019-09-17 10:33:45 2019-09-17 10:34:35 t 1 1 99006 416 0.00 2019-09-17 10:34:19 2019-09-17 10:35:47 t 1 1 99010 220 0.00 2019-09-17 10:36:32 2019-09-17 10:36:37 t 1 1 99016 220 0.00 2019-09-17 10:38:26 2019-09-17 10:39:04 t 1 1 99017 220 0.00 2019-09-17 10:39:04 2019-09-17 10:39:16 t 1 1 99019 220 0.00 2019-09-17 10:39:15 2019-09-17 10:39:38 t 1 1 99020 220 0.00 2019-09-17 10:39:37 2019-09-17 10:39:54 t 1 1 99026 327 0.00 2019-09-17 10:41:00 2019-09-17 10:42:49 t 1 1 99027 327 0.00 2019-09-17 10:42:57 2019-09-17 10:43:26 t 1 1 99028 220 0.00 2019-09-17 10:42:20 2019-09-17 10:43:38 t 1 1 99029 220 0.00 2019-09-17 10:43:38 2019-09-17 10:44:15 t 1 1 99031 220 0.00 2019-09-17 10:45:01 2019-09-17 10:45:43 t 1 1 99033 220 0.00 2019-09-17 10:46:17 2019-09-17 10:46:33 t 1 1 99040 220 0.00 2019-09-17 10:48:54 2019-09-17 10:50:05 t 1 1 99041 306 0.00 2019-09-17 10:45:45 2019-09-17 10:51:12 t 1 1 99042 220 0.00 2019-09-17 10:52:31 2019-09-17 10:53:33 t 1 2 99044 416 0.00 2019-09-17 10:36:40 2019-09-17 10:56:18 t 1 1 99052 327 0.00 2019-09-17 11:06:15 2019-09-17 11:07:51 t 1 1 99058 327 0.00 2019-09-17 11:13:30 2019-09-17 11:14:01 t 1 1 99059 327 0.00 2019-09-17 11:14:07 2019-09-17 11:16:40 t 1 1 99060 327 0.00 2019-09-17 11:16:51 2019-09-17 11:17:25 t 1 1 99066 220 0.00 2019-09-17 10:58:44 2019-09-17 11:31:50 t 1 1 99069 288 0.00 2019-09-17 11:13:27 2019-09-17 11:37:04 t 1 1 99071 288 0.00 2019-09-17 11:46:31 2019-09-17 11:56:34 t 1 1 99072 327 0.00 2019-09-17 11:34:13 2019-09-17 12:01:59 t 1 1 99073 464 0.00 2019-09-17 12:01:12 2019-09-17 12:02:32 t 1 1 99078 327 0.00 2019-09-17 12:10:15 2019-09-17 12:10:44 t 1 1 99081 400 0.00 2019-09-17 12:12:44 2019-09-17 12:16:02 t 1 1 99082 306 0.00 2019-09-17 11:27:50 2019-09-17 12:21:26 t 1 1 99084 220 0.00 2019-09-17 11:31:53 2019-09-17 12:27:22 t 1 1 99086 456 0.00 2019-09-17 12:24:18 2019-09-17 12:32:16 t 1 1 99091 288 0.00 2019-09-17 12:41:47 2019-09-17 12:53:51 t 1 1 99101 220 0.00 2019-09-17 13:13:23 2019-09-17 13:13:36 t 1 1 99102 288 0.00 2019-09-17 12:56:59 2019-09-17 13:15:24 t 1 1 99106 461 0.00 2019-09-17 13:18:04 2019-09-17 13:19:09 t 1 2 99111 464 0.00 2019-09-17 13:31:12 2019-09-17 13:34:12 t 1 1 99113 327 0.00 2019-09-17 13:16:22 2019-09-17 13:34:44 t 1 1 99119 327 0.00 2019-09-17 13:42:50 2019-09-17 13:44:19 t 1 1 99123 375 0.00 2019-09-17 13:46:35 2019-09-17 13:48:16 t 1 1 99127 327 0.00 2019-09-17 13:51:38 2019-09-17 13:53:39 t 1 1 99128 296 0.00 2019-09-17 13:50:27 2019-09-17 13:54:47 t 1 2 99130 247 0.00 2019-09-17 13:55:00 2019-09-17 13:55:55 t 1 2 99133 288 0.00 2019-09-17 13:53:33 2019-09-17 14:00:25 t 1 1 99135 288 0.00 2019-09-17 14:00:25 2019-09-17 14:02:49 t 1 1 99136 327 0.00 2019-09-17 14:01:36 2019-09-17 14:04:14 t 1 1 99145 306 0.00 2019-09-17 14:10:18 2019-09-17 14:13:17 t 1 1 99147 327 0.00 2019-09-17 14:12:48 2019-09-17 14:14:03 t 1 1 99152 327 0.00 2019-09-17 14:17:41 2019-09-17 14:18:12 t 1 1 99153 327 0.00 2019-09-17 14:18:39 2019-09-17 14:19:08 t 1 1 99155 375 0.00 2019-09-17 14:07:06 2019-09-17 14:21:06 t 1 1 99162 327 0.00 2019-09-17 14:30:19 2019-09-17 14:33:59 t 1 1 99165 288 0.00 2019-09-17 14:36:51 2019-09-17 14:39:09 t 1 1 99175 327 0.00 2019-09-17 14:36:57 2019-09-17 14:50:02 t 1 1 99179 220 0.00 2019-09-17 14:51:26 2019-09-17 14:52:07 t 1 1 99180 220 0.00 2019-09-17 14:52:07 2019-09-17 14:52:42 t 1 1 99182 327 0.00 2019-09-17 14:53:07 2019-09-17 14:53:44 t 1 1 99184 327 0.00 2019-09-17 14:56:12 2019-09-17 14:56:36 t 1 1 99191 327 0.00 2019-09-17 15:03:45 2019-09-17 15:04:15 t 1 1 99199 327 0.00 2019-09-17 15:10:04 2019-09-17 15:18:14 t 1 1 99200 412 0.00 2019-09-17 12:58:42 2019-09-17 15:21:20 t 1 1 99202 375 0.00 2019-09-17 15:11:43 2019-09-17 15:22:34 t 1 1 99204 327 0.00 2019-09-17 15:23:45 2019-09-17 15:25:13 t 1 1 99206 327 0.00 2019-09-17 15:26:02 2019-09-17 15:27:04 t 1 1 99207 306 0.00 2019-09-17 15:24:48 2019-09-17 15:28:10 t 1 1 99209 400 0.00 2019-09-17 15:03:56 2019-09-17 15:31:49 t 1 1 99213 327 0.00 2019-09-17 15:36:29 2019-09-17 15:37:50 t 1 1 99218 306 0.00 2019-09-17 15:28:25 2019-09-17 15:43:40 t 1 1 99219 220 0.00 2019-09-17 15:30:20 2019-09-17 15:45:29 t 1 1 99223 327 0.00 2019-09-17 15:48:33 2019-09-17 15:49:02 t 1 1 99226 327 0.00 2019-09-17 15:52:46 2019-09-17 15:53:19 t 1 1 99227 220 0.00 2019-09-17 15:45:43 2019-09-17 15:54:34 t 1 1 99231 451 0.00 2019-09-17 15:47:07 2019-09-17 15:57:56 t 1 1 99233 400 0.00 2019-09-17 15:57:03 2019-09-17 15:58:53 t 1 1 99238 327 0.00 2019-09-17 16:02:29 2019-09-17 16:02:51 t 1 1 99241 327 0.00 2019-09-17 16:07:33 2019-09-17 16:08:54 t 1 1 99247 327 0.00 2019-09-17 16:16:57 2019-09-17 16:19:27 t 1 1 99256 327 0.00 2019-09-17 16:34:30 2019-09-17 16:34:44 t 1 1 99257 327 0.00 2019-09-17 16:37:19 2019-09-17 16:37:59 t 1 1 99259 379 0.00 2019-09-17 13:28:31 2019-09-17 16:41:18 t 1 1 99262 327 0.00 2019-09-17 16:45:08 2019-09-17 16:45:32 t 1 1 99263 327 0.00 2019-09-17 16:46:10 2019-09-17 16:46:42 t 1 1 99266 375 0.00 2019-09-17 16:42:53 2019-09-17 17:01:46 t 1 1 99269 306 0.00 2019-09-17 16:59:40 2019-09-17 17:03:28 t 1 1 99270 468 0.00 2019-09-17 17:03:31 2019-09-17 17:03:46 t 1 1 99272 220 0.00 2019-09-17 17:00:55 2019-09-17 17:15:57 t 1 1 99273 375 0.00 2019-09-17 17:11:24 2019-09-17 17:17:02 t 1 1 99275 220 0.00 2019-09-17 17:16:08 2019-09-17 17:18:05 t 1 1 99276 400 0.00 2019-09-17 17:16:52 2019-09-17 17:18:33 t 1 1 99279 375 0.00 2019-09-17 17:17:01 2019-09-17 17:20:32 t 1 1 99282 428 0.00 2019-09-17 14:32:52 2019-09-17 17:35:06 t 1 1 99283 327 0.00 2019-09-17 17:26:16 2019-09-17 17:37:45 t 1 1 99288 220 0.00 2019-09-17 17:18:08 2019-09-17 17:45:46 t 1 1 99293 327 0.00 2019-09-17 17:46:54 2019-09-17 17:56:12 t 1 1 99296 379 0.00 2019-09-17 17:59:42 2019-09-17 18:00:39 t 1 1 99299 247 0.00 2019-09-17 18:09:05 2019-09-17 18:10:25 t 1 2 99306 420 0.00 2019-09-17 18:29:47 2019-09-17 18:41:27 t 1 1 99309 420 0.00 2019-09-17 18:41:28 2019-09-17 18:46:22 t 1 1 99311 420 0.00 2019-09-17 18:46:31 2019-09-17 18:51:43 t 1 1 99312 420 0.00 2019-09-17 18:51:47 2019-09-17 18:52:47 t 1 1 99313 462 0.00 2019-09-17 18:43:39 2019-09-17 18:53:33 t 1 1 99316 400 0.00 2019-09-17 18:46:25 2019-09-17 18:57:03 t 1 1 99321 428 0.00 2019-09-17 18:59:54 2019-09-17 19:11:42 t 1 1 99322 306 0.00 2019-09-17 19:14:20 2019-09-17 19:24:35 t 1 1 99332 470 0.00 2019-09-17 19:48:27 2019-09-17 20:10:23 t 1 1 99333 311 0.00 2019-09-17 20:10:53 2019-09-17 20:13:16 t 1 2 99054 327 0.00 2019-09-17 11:08:10 2019-09-17 11:11:02 t 1 1 99057 288 0.00 2019-09-17 11:04:39 2019-09-17 11:13:27 t 1 1 99062 456 0.00 2019-09-17 11:19:23 2019-09-17 11:21:37 t 1 1 99064 327 0.00 2019-09-17 11:27:05 2019-09-17 11:30:21 t 1 1 99065 327 0.00 2019-09-17 11:30:54 2019-09-17 11:31:27 t 1 1 99067 327 0.00 2019-09-17 11:31:47 2019-09-17 11:33:55 t 1 1 99068 416 0.00 2019-09-17 10:56:25 2019-09-17 11:35:05 t 1 1 99075 288 0.00 2019-09-17 11:57:46 2019-09-17 12:03:20 t 1 1 99083 420 0.00 2019-09-17 12:25:10 2019-09-17 12:26:14 t 1 1 99085 464 0.00 2019-09-17 12:28:12 2019-09-17 12:29:41 t 1 1 99087 288 0.00 2019-09-17 12:04:21 2019-09-17 12:32:40 t 1 1 99092 462 0.00 2019-09-17 12:32:49 2019-09-17 12:56:12 t 1 1 99093 288 0.00 2019-09-17 12:53:51 2019-09-17 12:57:00 t 1 1 99097 400 0.00 2019-09-17 13:01:04 2019-09-17 13:09:47 t 1 1 99098 327 0.00 2019-09-17 12:13:20 2019-09-17 13:10:18 t 1 1 99099 327 0.00 2019-09-17 13:11:12 2019-09-17 13:12:02 t 1 1 99104 327 0.00 2019-09-17 13:13:40 2019-09-17 13:16:10 t 1 1 99105 461 0.00 2019-09-17 13:16:01 2019-09-17 13:17:00 t 1 2 99108 375 0.00 2019-09-17 13:18:36 2019-09-17 13:21:34 t 1 1 99109 306 0.00 2019-09-17 12:53:19 2019-09-17 13:25:16 t 1 1 99114 288 0.00 2019-09-17 13:19:38 2019-09-17 13:35:43 t 1 1 99120 375 0.00 2019-09-17 13:21:41 2019-09-17 13:46:35 t 1 1 99121 288 0.00 2019-09-17 13:38:53 2019-09-17 13:46:50 t 1 1 99125 327 0.00 2019-09-17 13:49:51 2019-09-17 13:51:39 t 1 1 99129 327 0.00 2019-09-17 13:54:27 2019-09-17 13:55:22 t 1 1 99131 327 0.00 2019-09-17 13:55:32 2019-09-17 13:56:01 t 1 1 99134 327 0.00 2019-09-17 13:59:03 2019-09-17 14:00:42 t 1 1 99144 327 0.00 2019-09-17 14:10:07 2019-09-17 14:10:38 t 1 1 99146 420 0.00 2019-09-17 14:07:13 2019-09-17 14:13:46 t 1 1 99149 327 0.00 2019-09-17 14:15:13 2019-09-17 14:15:43 t 1 1 99151 327 0.00 2019-09-17 14:16:49 2019-09-17 14:17:32 t 1 1 99156 327 0.00 2019-09-17 14:19:28 2019-09-17 14:22:01 t 1 1 99157 327 0.00 2019-09-17 14:22:19 2019-09-17 14:22:42 t 1 1 99160 416 0.00 2019-09-17 12:58:25 2019-09-17 14:28:08 t 1 1 99161 327 0.00 2019-09-17 14:26:34 2019-09-17 14:30:03 t 1 1 99164 327 0.00 2019-09-17 14:34:08 2019-09-17 14:36:38 t 1 1 99166 306 0.00 2019-09-17 14:39:41 2019-09-17 14:41:46 t 1 1 99167 306 0.00 2019-09-17 14:41:52 2019-09-17 14:41:53 t 1 2 99171 220 0.00 2019-09-17 14:45:11 2019-09-17 14:45:50 t 1 1 99177 220 0.00 2019-09-17 14:50:03 2019-09-17 14:50:51 t 1 1 99178 220 0.00 2019-09-17 14:50:51 2019-09-17 14:51:26 t 1 1 99185 220 0.00 2019-09-17 14:56:22 2019-09-17 14:56:40 t 1 1 99186 220 0.00 2019-09-17 14:53:56 2019-09-17 14:57:19 t 1 1 99188 306 0.00 2019-09-17 14:53:03 2019-09-17 14:59:18 t 1 1 99190 327 0.00 2019-09-17 14:58:28 2019-09-17 15:02:48 t 1 1 99197 375 0.00 2019-09-17 14:22:43 2019-09-17 15:11:43 t 1 1 99201 327 0.00 2019-09-17 15:18:31 2019-09-17 15:21:30 t 1 1 99203 220 0.00 2019-09-17 15:09:23 2019-09-17 15:24:23 t 1 1 99208 327 0.00 2019-09-17 15:28:08 2019-09-17 15:29:51 t 1 1 99214 400 0.00 2019-09-17 15:33:53 2019-09-17 15:39:25 t 1 1 99216 327 0.00 2019-09-17 15:41:06 2019-09-17 15:41:51 t 1 1 99222 306 0.00 2019-09-17 15:43:40 2019-09-17 15:48:22 t 1 1 99228 327 0.00 2019-09-17 15:54:11 2019-09-17 15:54:35 t 1 1 99232 327 0.00 2019-09-17 15:57:34 2019-09-17 15:58:01 t 1 1 99234 468 0.00 2019-09-17 15:47:35 2019-09-17 15:58:58 t 1 1 99235 327 0.00 2019-09-17 15:59:07 2019-09-17 15:59:40 t 1 1 99237 327 0.00 2019-09-17 16:01:08 2019-09-17 16:02:29 t 1 1 99239 220 0.00 2019-09-17 13:22:26 2019-09-17 16:04:39 t 1 2 99245 327 0.00 2019-09-17 16:16:15 2019-09-17 16:17:01 t 1 1 99246 220 0.00 2019-09-17 15:59:52 2019-09-17 16:18:58 t 1 1 99251 327 0.00 2019-09-17 16:23:34 2019-09-17 16:24:04 t 1 1 99253 306 0.00 2019-09-17 16:27:37 2019-09-17 16:28:51 t 1 1 99255 327 0.00 2019-09-17 16:25:05 2019-09-17 16:34:15 t 1 1 99258 327 0.00 2019-09-17 16:39:01 2019-09-17 16:39:27 t 1 1 99260 375 0.00 2019-09-17 15:22:34 2019-09-17 16:42:53 t 1 1 99264 327 0.00 2019-09-17 16:48:54 2019-09-17 16:48:55 t 1 1 99267 468 0.00 2019-09-17 17:01:34 2019-09-17 17:01:54 t 1 1 99268 375 0.00 2019-09-17 17:01:46 2019-09-17 17:02:53 t 1 1 99277 379 0.00 2019-09-17 16:41:18 2019-09-17 17:18:38 t 1 1 99278 327 0.00 2019-09-17 17:19:21 2019-09-17 17:20:31 t 1 1 99280 420 0.00 2019-09-17 16:50:45 2019-09-17 17:20:54 t 1 1 99285 412 0.00 2019-09-17 15:47:00 2019-09-17 17:41:20 t 1 1 99286 375 0.00 2019-09-17 17:20:32 2019-09-17 17:43:44 t 1 1 99289 327 0.00 2019-09-17 17:46:20 2019-09-17 17:46:46 t 1 1 99290 428 0.00 2019-09-17 17:36:01 2019-09-17 17:47:22 t 1 1 99291 468 0.00 2019-09-17 17:03:46 2019-09-17 17:48:46 t 1 1 99292 428 0.00 2019-09-17 17:48:20 2019-09-17 17:54:05 t 1 1 99295 451 0.00 2019-09-17 17:55:32 2019-09-17 18:00:05 t 1 1 99298 451 0.00 2019-09-17 18:00:05 2019-09-17 18:06:32 t 1 1 99300 311 0.00 2019-09-17 18:07:33 2019-09-17 18:10:56 t 1 2 99301 311 0.00 2019-09-17 18:11:02 2019-09-17 18:19:25 t 1 2 99302 306 0.00 2019-09-17 17:52:25 2019-09-17 18:21:03 t 1 1 99303 306 0.00 2019-09-17 18:34:21 2019-09-17 18:36:29 t 1 1 99305 400 0.00 2019-09-17 18:37:51 2019-09-17 18:40:21 t 1 1 99308 220 0.00 2019-09-17 17:46:18 2019-09-17 18:42:27 t 1 1 99315 420 0.00 2019-09-17 18:53:33 2019-09-17 18:54:31 t 1 1 99317 428 0.00 2019-09-17 18:45:38 2019-09-17 18:59:37 t 1 1 99324 464 0.00 2019-09-17 19:30:09 2019-09-17 19:30:29 t 1 1 99326 311 0.00 2019-09-17 19:04:28 2019-09-17 19:43:51 t 1 2 99329 306 0.00 2019-09-17 19:38:20 2019-09-17 19:59:32 t 1 1 99330 468 0.00 2019-09-17 19:06:12 2019-09-17 20:00:28 t 1 1 99340 327 0.00 2019-09-17 20:39:59 2019-09-17 20:40:35 t 1 1 99344 411 0.00 2019-09-17 10:35:22 2019-09-17 20:53:13 t 1 1 99353 400 0.00 2019-09-17 21:01:58 2019-09-17 21:07:27 t 1 1 99354 420 0.00 2019-09-17 21:07:48 2019-09-17 21:09:01 t 1 1 99356 420 0.00 2019-09-17 21:09:21 2019-09-17 21:11:41 t 1 1 99358 420 0.00 2019-09-17 21:11:45 2019-09-17 21:14:25 t 1 1 99359 327 0.00 2019-09-17 21:13:21 2019-09-17 21:18:34 t 1 1 99363 464 0.00 2019-09-17 21:31:27 2019-09-17 21:36:23 t 1 1 99364 464 0.00 2019-09-17 21:36:23 2019-09-17 21:41:37 t 1 1 99366 470 0.00 2019-09-17 21:13:35 2019-09-17 21:44:19 t 1 1 99367 464 0.00 2019-09-17 21:41:37 2019-09-17 21:45:28 t 1 1 99369 464 0.00 2019-09-17 21:45:28 2019-09-17 21:46:55 t 1 1 99370 220 0.00 2019-09-17 21:46:36 2019-09-17 21:48:00 t 1 2 99377 311 0.00 2019-09-17 22:16:40 2019-09-17 22:21:03 t 1 2 99378 470 0.00 2019-09-17 21:48:51 2019-09-17 22:21:54 t 1 1 99381 220 0.00 2019-09-17 22:26:42 2019-09-17 22:36:25 t 1 1 99265 420 0.00 2019-09-17 16:40:54 2019-09-17 16:50:45 t 1 1 99271 375 0.00 2019-09-17 17:02:53 2019-09-17 17:11:19 t 1 1 99274 327 0.00 2019-09-17 17:16:42 2019-09-17 17:17:56 t 1 1 99281 420 0.00 2019-09-17 17:21:53 2019-09-17 17:22:55 t 1 1 99284 327 0.00 2019-09-17 17:38:02 2019-09-17 17:38:12 t 1 1 99287 327 0.00 2019-09-17 17:38:20 2019-09-17 17:45:38 t 1 1 99294 379 0.00 2019-09-17 17:18:38 2019-09-17 17:59:41 t 1 1 99297 379 0.00 2019-09-17 18:00:39 2019-09-17 18:01:44 t 1 1 99304 468 0.00 2019-09-17 17:48:46 2019-09-17 18:36:45 t 1 1 99307 428 0.00 2019-09-17 18:34:28 2019-09-17 18:41:52 t 1 1 99310 412 0.00 2019-09-17 17:41:19 2019-09-17 18:48:11 t 1 1 99314 420 0.00 2019-09-17 18:52:49 2019-09-17 18:53:33 t 1 1 99318 420 0.00 2019-09-17 18:54:38 2019-09-17 19:01:01 t 1 1 99319 456 0.00 2019-09-17 18:50:18 2019-09-17 19:04:50 t 1 1 99320 468 0.00 2019-09-17 18:36:45 2019-09-17 19:06:12 t 1 1 99323 428 0.00 2019-09-17 19:11:41 2019-09-17 19:24:55 t 1 1 99325 306 0.00 2019-09-17 19:24:35 2019-09-17 19:38:20 t 1 1 99327 470 0.00 2019-09-17 19:26:43 2019-09-17 19:48:27 t 1 1 99328 220 0.00 2019-09-17 19:55:10 2019-09-17 19:58:41 t 1 1 99331 468 0.00 2019-09-17 20:00:28 2019-09-17 20:06:43 t 1 1 99334 468 0.00 2019-09-17 20:05:49 2019-09-17 20:17:08 t 1 1 99335 306 0.00 2019-09-17 20:09:31 2019-09-17 20:18:57 t 1 1 99336 462 0.00 2019-09-17 20:18:57 2019-09-17 20:22:09 t 1 1 99338 296 0.00 2019-09-17 20:11:25 2019-09-17 20:25:48 t 1 2 99341 327 0.00 2019-09-17 20:41:34 2019-09-17 20:42:29 t 1 1 99342 247 0.00 2019-09-17 20:37:53 2019-09-17 20:46:04 t 1 2 99346 420 0.00 2019-09-17 20:55:21 2019-09-17 20:59:39 t 1 1 99349 420 0.00 2019-09-17 21:00:26 2019-09-17 21:01:58 t 1 1 99351 412 0.00 2019-09-17 18:47:16 2019-09-17 21:04:59 t 1 1 99352 420 0.00 2019-09-17 21:05:11 2019-09-17 21:06:49 t 1 1 99357 412 0.00 2019-09-17 21:04:59 2019-09-17 21:13:19 t 1 1 99362 306 0.00 2019-09-17 21:34:16 2019-09-17 21:36:12 t 1 1 99365 220 0.00 2019-09-17 21:11:03 2019-09-17 21:43:29 t 1 2 99368 220 0.00 2019-09-17 21:45:48 2019-09-17 21:46:23 t 1 2 99371 468 0.00 2019-09-17 20:46:28 2019-09-17 21:49:55 t 1 1 99373 379 0.00 2019-09-17 18:02:51 2019-09-17 22:09:50 t 1 1 99380 468 0.00 2019-09-17 22:14:55 2019-09-17 22:29:55 t 1 1 99383 220 0.00 2019-09-17 20:58:27 2019-09-17 22:51:36 t 1 1 99384 327 0.00 2019-09-17 21:39:40 2019-09-17 22:58:43 t 1 1 99388 306 0.00 2019-09-17 22:54:54 2019-09-17 23:05:47 t 1 1 99389 372 0.00 2019-09-17 23:07:08 2019-09-17 23:07:09 t 1 2 99392 432 0.00 2019-09-17 23:11:34 2019-09-17 23:16:07 t 1 1 99395 430 0.00 2019-09-17 23:07:34 2019-09-17 23:21:55 t 1 1 99401 432 0.00 2019-09-17 23:20:46 2019-09-17 23:32:37 t 1 1 99410 432 0.00 2019-09-17 23:39:46 2019-09-17 23:39:59 t 1 1 99411 220 0.00 2019-09-17 22:29:34 2019-09-17 23:41:26 t 1 2 99413 220 0.00 2019-09-17 23:09:22 2019-09-17 23:42:30 t 1 2 99414 432 0.00 2019-09-17 23:40:12 2019-09-17 23:43:41 t 1 1 99416 468 0.00 2019-09-17 22:30:42 2019-09-17 23:45:01 t 1 1 99417 327 0.00 2019-09-17 23:48:18 2019-09-17 23:49:04 t 1 1 99422 327 0.00 2019-09-18 00:03:10 2019-09-18 00:03:39 t 1 1 99428 327 0.00 2019-09-18 00:24:20 2019-09-18 00:25:25 t 1 1 99429 464 0.00 2019-09-18 00:24:49 2019-09-18 00:27:50 t 1 1 99431 220 0.00 2019-09-18 00:29:24 2019-09-18 00:53:59 t 1 1 99437 400 0.00 2019-09-18 01:21:15 2019-09-18 01:22:54 t 1 1 99439 468 0.00 2019-09-18 00:59:22 2019-09-18 01:24:48 t 1 1 99443 468 0.00 2019-09-18 01:24:48 2019-09-18 01:34:44 t 1 1 99444 468 0.00 2019-09-18 01:34:44 2019-09-18 01:57:58 t 1 1 99445 468 0.00 2019-09-18 01:57:58 2019-09-18 02:03:31 t 1 1 99448 468 0.00 2019-09-18 02:03:31 2019-09-18 02:25:56 t 1 1 99451 412 0.00 2019-09-18 02:52:31 2019-09-18 03:28:50 t 1 1 99452 220 0.00 2019-09-18 06:24:23 2019-09-18 06:25:02 t 1 1 99454 220 0.00 2019-09-18 06:30:03 2019-09-18 06:30:15 t 1 1 99455 220 0.00 2019-09-18 06:19:06 2019-09-18 06:37:36 t 1 1 99456 220 0.00 2019-09-18 06:40:50 2019-09-18 06:41:01 t 1 1 99457 220 0.00 2019-09-18 06:46:21 2019-09-18 06:46:51 t 1 1 99458 220 0.00 2019-09-18 06:47:21 2019-09-18 06:47:36 t 1 1 99462 220 0.00 2019-09-18 07:01:04 2019-09-18 07:01:12 t 1 1 99463 220 0.00 2019-09-18 07:01:56 2019-09-18 07:01:56 t 1 1 99464 220 0.00 2019-09-18 07:07:45 2019-09-18 07:08:04 t 1 1 99465 220 0.00 2019-09-18 07:08:27 2019-09-18 07:08:29 t 1 1 99476 220 0.00 2019-09-18 07:43:56 2019-09-18 07:44:29 t 1 1 99478 430 0.00 2019-09-18 07:49:27 2019-09-18 07:50:49 t 1 1 99480 430 0.00 2019-09-18 07:59:26 2019-09-18 07:59:40 t 1 1 99485 220 0.00 2019-09-18 08:05:43 2019-09-18 08:06:24 t 1 1 99487 468 0.00 2019-09-18 08:05:34 2019-09-18 08:15:17 t 1 1 99489 220 0.00 2019-09-18 08:17:11 2019-09-18 08:17:21 t 1 1 99498 430 0.00 2019-09-18 08:25:53 2019-09-18 08:37:54 t 1 1 99502 220 0.00 2019-09-18 08:40:19 2019-09-18 08:42:15 t 1 1 99504 220 0.00 2019-09-18 08:44:35 2019-09-18 08:45:12 t 1 1 99510 220 0.00 2019-09-18 08:50:21 2019-09-18 08:52:44 t 1 2 99511 220 0.00 2019-09-18 08:52:15 2019-09-18 08:53:26 t 1 1 99513 220 0.00 2019-09-18 08:54:14 2019-09-18 08:54:47 t 1 1 99514 220 0.00 2019-09-18 08:47:28 2019-09-18 08:55:30 t 1 1 99521 220 0.00 2019-09-18 08:59:18 2019-09-18 09:00:51 t 1 1 99522 220 0.00 2019-09-18 09:01:47 2019-09-18 09:06:11 t 1 1 99525 430 0.00 2019-09-18 08:38:38 2019-09-18 09:09:43 t 1 1 99528 327 0.00 2019-09-18 09:00:10 2019-09-18 09:14:46 t 1 1 99531 220 0.00 2019-09-18 09:15:57 2019-09-18 09:17:30 t 1 1 99532 220 0.00 2019-09-18 09:17:30 2019-09-18 09:18:23 t 1 1 99533 432 0.00 2019-09-18 09:22:37 2019-09-18 09:25:21 t 1 1 99534 430 0.00 2019-09-18 09:09:45 2019-09-18 09:27:19 t 1 1 99537 327 0.00 2019-09-18 09:16:01 2019-09-18 09:35:44 t 1 1 99545 220 0.00 2019-09-18 09:51:19 2019-09-18 10:02:22 t 1 1 99546 220 0.00 2019-09-18 09:56:01 2019-09-18 10:04:04 t 1 1 99550 220 0.00 2019-09-18 10:02:22 2019-09-18 10:10:01 t 1 1 99556 327 0.00 2019-09-18 10:24:51 2019-09-18 10:26:19 t 1 1 99560 416 0.00 2019-09-18 10:32:28 2019-09-18 10:36:24 t 1 1 99562 327 0.00 2019-09-18 10:32:03 2019-09-18 10:38:09 t 1 1 99564 327 0.00 2019-09-18 10:42:07 2019-09-18 10:44:03 t 1 1 99569 220 0.00 2019-09-18 10:54:30 2019-09-18 10:55:01 t 1 1 99570 220 0.00 2019-09-18 10:55:02 2019-09-18 11:02:18 t 1 1 99575 220 0.00 2019-09-18 11:15:58 2019-09-18 11:16:41 t 1 1 99576 306 0.00 2019-09-18 10:44:03 2019-09-18 11:18:01 t 1 1 99579 220 0.00 2019-09-18 11:27:34 2019-09-18 11:27:50 t 1 1 99581 220 0.00 2019-09-18 11:30:30 2019-09-18 11:30:56 t 1 1 99583 220 0.00 2019-09-18 11:32:26 2019-09-18 11:32:38 t 1 1 99337 462 0.00 2019-09-17 20:22:09 2019-09-17 20:23:30 t 1 1 99339 327 0.00 2019-09-17 20:39:11 2019-09-17 20:39:48 t 1 1 99343 327 0.00 2019-09-17 20:44:35 2019-09-17 20:53:03 t 1 1 99345 220 0.00 2019-09-17 20:58:03 2019-09-17 20:58:28 t 1 1 99347 400 0.00 2019-09-17 20:59:39 2019-09-17 21:00:26 t 1 1 99348 306 0.00 2019-09-17 20:23:57 2019-09-17 21:01:21 t 1 1 99350 327 0.00 2019-09-17 21:03:22 2019-09-17 21:03:56 t 1 1 99355 306 0.00 2019-09-17 21:10:20 2019-09-17 21:11:24 t 1 1 99360 456 0.00 2019-09-17 21:25:46 2019-09-17 21:28:22 t 1 1 99361 327 0.00 2019-09-17 21:29:00 2019-09-17 21:29:48 t 1 1 99372 468 0.00 2019-09-17 22:00:10 2019-09-17 22:03:20 t 1 1 99374 306 0.00 2019-09-17 22:10:09 2019-09-17 22:12:44 t 1 1 99375 400 0.00 2019-09-17 22:12:44 2019-09-17 22:13:20 t 1 1 99376 379 0.00 2019-09-17 22:09:50 2019-09-17 22:20:44 t 1 1 99379 220 0.00 2019-09-17 21:47:57 2019-09-17 22:29:17 t 1 2 99385 220 0.00 2019-09-17 22:52:25 2019-09-17 23:00:16 t 1 1 99387 220 0.00 2019-09-17 23:00:16 2019-09-17 23:03:52 t 1 1 99390 220 0.00 2019-09-17 23:03:55 2019-09-17 23:08:19 t 1 2 99391 327 0.00 2019-09-17 23:08:40 2019-09-17 23:09:15 t 1 1 99394 327 0.00 2019-09-17 23:19:28 2019-09-17 23:19:47 t 1 1 99398 430 0.00 2019-09-17 23:28:45 2019-09-17 23:29:15 t 1 1 99399 327 0.00 2019-09-17 23:30:00 2019-09-17 23:30:37 t 1 1 99400 430 0.00 2019-09-17 23:30:44 2019-09-17 23:31:14 t 1 1 99402 430 0.00 2019-09-17 23:34:27 2019-09-17 23:34:57 t 1 1 99404 432 0.00 2019-09-17 23:35:38 2019-09-17 23:36:17 t 1 1 99409 430 0.00 2019-09-17 23:38:48 2019-09-17 23:39:38 t 1 1 99415 430 0.00 2019-09-17 23:43:06 2019-09-17 23:44:08 t 1 1 99418 432 0.00 2019-09-17 23:46:59 2019-09-17 23:52:53 t 1 1 99423 327 0.00 2019-09-18 00:13:42 2019-09-18 00:14:14 t 1 1 99426 247 0.00 2019-09-18 00:13:41 2019-09-18 00:18:46 t 1 2 99430 468 0.00 2019-09-17 23:45:01 2019-09-18 00:31:29 t 1 1 99432 468 0.00 2019-09-18 00:31:29 2019-09-18 00:59:07 t 1 1 99434 470 0.00 2019-09-17 23:56:55 2019-09-18 01:05:59 t 1 1 99435 400 0.00 2019-09-17 23:30:28 2019-09-18 01:20:49 t 1 1 99436 400 0.00 2019-09-18 01:20:49 2019-09-18 01:21:16 t 1 1 99438 400 0.00 2019-09-18 01:22:59 2019-09-18 01:24:06 t 1 1 99440 400 0.00 2019-09-18 01:24:06 2019-09-18 01:25:40 t 1 1 99442 470 0.00 2019-09-18 01:28:34 2019-09-18 01:31:06 t 1 1 99446 412 0.00 2019-09-17 22:40:21 2019-09-18 02:13:14 t 1 1 99453 220 0.00 2019-09-18 06:25:22 2019-09-18 06:25:23 t 1 1 99461 220 0.00 2019-09-18 06:55:24 2019-09-18 06:56:14 t 1 1 99468 220 0.00 2019-09-18 07:23:14 2019-09-18 07:23:30 t 1 1 99470 420 0.00 2019-09-18 07:14:43 2019-09-18 07:30:04 t 1 1 99471 220 0.00 2019-09-18 07:29:01 2019-09-18 07:30:29 t 1 1 99472 220 0.00 2019-09-18 07:27:35 2019-09-18 07:39:24 t 1 1 99474 220 0.00 2019-09-18 07:40:02 2019-09-18 07:43:20 t 1 1 99479 220 0.00 2019-09-18 07:54:54 2019-09-18 07:55:07 t 1 1 99481 468 0.00 2019-09-18 07:52:26 2019-09-18 08:00:37 t 1 1 99482 468 0.00 2019-09-18 08:00:36 2019-09-18 08:05:10 t 1 1 99483 220 0.00 2019-09-18 08:03:20 2019-09-18 08:05:33 t 1 1 99486 412 0.00 2019-09-18 08:06:34 2019-09-18 08:12:34 t 1 1 99492 220 0.00 2019-09-18 08:27:56 2019-09-18 08:28:07 t 1 1 99493 220 0.00 2019-09-18 07:45:09 2019-09-18 08:33:56 t 1 1 99494 220 0.00 2019-09-18 08:33:56 2019-09-18 08:35:07 t 1 1 99500 220 0.00 2019-09-18 08:38:58 2019-09-18 08:39:14 t 1 1 99503 220 0.00 2019-09-18 08:42:15 2019-09-18 08:44:35 t 1 1 99508 220 0.00 2019-09-18 08:49:33 2019-09-18 08:50:13 t 1 1 99516 220 0.00 2019-09-18 08:55:35 2019-09-18 08:56:10 t 1 1 99517 220 0.00 2019-09-18 08:56:10 2019-09-18 08:57:13 t 1 1 99524 400 0.00 2019-09-18 09:06:35 2019-09-18 09:08:20 t 1 1 99527 220 0.00 2019-09-18 09:11:10 2019-09-18 09:11:19 t 1 1 99538 220 0.00 2019-09-18 09:18:23 2019-09-18 09:37:34 t 1 1 99539 220 0.00 2019-09-18 09:38:34 2019-09-18 09:38:46 t 1 1 99541 220 0.00 2019-09-18 09:25:04 2019-09-18 09:51:28 t 1 2 99542 296 0.00 2019-09-18 09:40:28 2019-09-18 09:53:51 t 1 2 99544 306 0.00 2019-09-18 08:47:35 2019-09-18 10:00:58 t 1 1 99548 432 0.00 2019-09-18 10:02:02 2019-09-18 10:07:20 t 1 1 99553 432 0.00 2019-09-18 10:20:40 2019-09-18 10:21:55 t 1 1 99557 327 0.00 2019-09-18 10:30:47 2019-09-18 10:31:47 t 1 1 99558 416 0.00 2019-09-18 10:28:31 2019-09-18 10:32:28 t 1 1 99559 220 0.00 2019-09-18 10:33:06 2019-09-18 10:33:14 t 1 1 99561 220 0.00 2019-09-18 08:54:31 2019-09-18 10:37:09 t 1 2 99563 327 0.00 2019-09-18 10:39:35 2019-09-18 10:41:23 t 1 1 99565 220 0.00 2019-09-18 10:43:37 2019-09-18 10:44:27 t 1 1 99567 416 0.00 2019-09-18 10:35:29 2019-09-18 10:53:52 t 1 1 99568 220 0.00 2019-09-18 10:44:27 2019-09-18 10:54:30 t 1 1 99572 220 0.00 2019-09-18 11:05:01 2019-09-18 11:05:12 t 1 1 99574 220 0.00 2019-09-18 11:05:32 2019-09-18 11:06:34 t 1 1 99585 462 0.00 2019-09-18 09:16:06 2019-09-18 11:40:51 t 1 1 99590 220 0.00 2019-09-18 11:54:06 2019-09-18 11:54:40 t 1 1 99593 220 0.00 2019-09-18 12:04:37 2019-09-18 12:04:46 t 1 1 99594 420 0.00 2019-09-18 11:59:38 2019-09-18 12:05:58 t 1 1 99599 220 0.00 2019-09-18 12:15:42 2019-09-18 12:15:51 t 1 1 99606 430 0.00 2019-09-18 11:04:32 2019-09-18 12:28:43 t 1 1 99611 372 0.00 2019-09-18 12:37:33 2019-09-18 12:37:33 t 1 2 99613 430 0.00 2019-09-18 12:37:13 2019-09-18 12:38:33 t 1 1 99614 220 0.00 2019-09-18 12:36:26 2019-09-18 12:39:58 t 1 2 99615 430 0.00 2019-09-18 12:38:33 2019-09-18 12:40:15 t 1 1 99623 462 0.00 2019-09-18 12:13:39 2019-09-18 12:54:57 t 1 1 99625 470 0.00 2019-09-18 12:46:34 2019-09-18 12:59:08 t 1 1 99626 327 0.00 2019-09-18 12:58:08 2019-09-18 12:59:22 t 1 1 99628 327 0.00 2019-09-18 13:09:22 2019-09-18 13:10:20 t 1 1 99635 430 0.00 2019-09-18 13:15:38 2019-09-18 13:15:42 t 1 1 99636 430 0.00 2019-09-18 13:18:11 2019-09-18 13:18:40 t 1 1 99637 430 0.00 2019-09-18 13:18:48 2019-09-18 13:19:56 t 1 1 99639 220 0.00 2019-09-18 13:20:09 2019-09-18 13:20:20 t 1 1 99651 327 0.00 2019-09-18 13:44:19 2019-09-18 13:44:43 t 1 1 99654 327 0.00 2019-09-18 13:46:59 2019-09-18 13:47:16 t 1 1 99656 220 0.00 2019-09-18 13:53:14 2019-09-18 13:53:27 t 1 1 99657 327 0.00 2019-09-18 13:51:06 2019-09-18 13:54:31 t 1 1 99658 470 0.00 2019-09-18 13:48:08 2019-09-18 13:56:30 t 1 1 99659 420 0.00 2019-09-18 13:53:43 2019-09-18 13:57:48 t 1 1 99660 432 0.00 2019-09-18 13:54:53 2019-09-18 14:02:54 t 1 1 99665 327 0.00 2019-09-18 14:04:37 2019-09-18 14:05:13 t 1 1 99666 430 0.00 2019-09-18 13:55:56 2019-09-18 14:05:42 t 1 1 99667 400 0.00 2019-09-18 14:04:54 2019-09-18 14:07:54 t 1 1 99669 220 0.00 2019-09-18 14:14:29 2019-09-18 14:14:39 t 1 1 99382 412 0.00 2019-09-17 21:13:19 2019-09-17 22:40:21 t 1 1 99386 220 0.00 2019-09-17 22:49:38 2019-09-17 23:03:02 t 1 2 99393 456 0.00 2019-09-17 22:53:51 2019-09-17 23:19:28 t 1 1 99396 430 0.00 2019-09-17 23:21:55 2019-09-17 23:27:05 t 1 1 99397 430 0.00 2019-09-17 23:27:34 2019-09-17 23:28:05 t 1 1 99403 220 0.00 2019-09-17 23:29:33 2019-09-17 23:35:11 t 1 1 99405 296 0.00 2019-09-17 23:28:40 2019-09-17 23:37:01 t 1 2 99406 430 0.00 2019-09-17 23:37:28 2019-09-17 23:37:39 t 1 1 99407 327 0.00 2019-09-17 23:37:45 2019-09-17 23:38:17 t 1 1 99408 432 0.00 2019-09-17 23:38:18 2019-09-17 23:39:14 t 1 1 99412 430 0.00 2019-09-17 23:40:30 2019-09-17 23:42:27 t 1 1 99419 327 0.00 2019-09-17 23:52:36 2019-09-17 23:53:07 t 1 1 99420 470 0.00 2019-09-17 22:21:53 2019-09-17 23:56:55 t 1 1 99421 220 0.00 2019-09-18 00:00:42 2019-09-18 00:02:55 t 1 1 99424 220 0.00 2019-09-18 00:02:57 2019-09-18 00:15:13 t 1 1 99425 220 0.00 2019-09-18 00:15:13 2019-09-18 00:17:21 t 1 1 99427 451 0.00 2019-09-18 00:21:40 2019-09-18 00:25:17 t 1 1 99433 430 0.00 2019-09-18 00:49:08 2019-09-18 01:02:50 t 1 1 99441 470 0.00 2019-09-18 01:13:07 2019-09-18 01:28:34 t 1 1 99447 392 0.00 2019-09-18 02:21:10 2019-09-18 02:21:10 t 1 2 99449 412 0.00 2019-09-18 02:13:14 2019-09-18 02:30:09 t 1 1 99450 412 0.00 2019-09-18 02:30:09 2019-09-18 02:52:31 t 1 1 99459 220 0.00 2019-09-18 06:47:48 2019-09-18 06:47:49 t 1 1 99460 220 0.00 2019-09-18 06:53:57 2019-09-18 06:54:07 t 1 1 99466 220 0.00 2019-09-18 07:17:26 2019-09-18 07:17:35 t 1 1 99467 220 0.00 2019-09-18 07:18:14 2019-09-18 07:18:22 t 1 1 99469 220 0.00 2019-09-18 07:27:21 2019-09-18 07:27:28 t 1 1 99473 220 0.00 2019-09-18 07:39:23 2019-09-18 07:39:33 t 1 1 99475 220 0.00 2019-09-18 07:43:20 2019-09-18 07:43:29 t 1 1 99477 220 0.00 2019-09-18 07:44:29 2019-09-18 07:45:09 t 1 1 99484 412 0.00 2019-09-18 03:28:49 2019-09-18 08:06:19 t 1 1 99488 412 0.00 2019-09-18 08:12:34 2019-09-18 08:15:38 t 1 1 99490 400 0.00 2019-09-18 08:20:13 2019-09-18 08:23:12 t 1 1 99491 430 0.00 2019-09-18 08:23:29 2019-09-18 08:25:22 t 1 1 99495 220 0.00 2019-09-18 08:35:07 2019-09-18 08:35:40 t 1 1 99496 220 0.00 2019-09-18 08:35:39 2019-09-18 08:37:07 t 1 1 99497 220 0.00 2019-09-18 08:37:07 2019-09-18 08:37:40 t 1 1 99499 220 0.00 2019-09-18 08:37:40 2019-09-18 08:39:12 t 1 1 99501 220 0.00 2019-09-18 08:39:11 2019-09-18 08:40:19 t 1 1 99505 220 0.00 2019-09-18 08:47:00 2019-09-18 08:47:11 t 1 1 99506 220 0.00 2019-09-18 08:45:12 2019-09-18 08:48:57 t 1 1 99507 220 0.00 2019-09-18 08:48:57 2019-09-18 08:49:34 t 1 1 99509 220 0.00 2019-09-18 08:50:13 2019-09-18 08:52:16 t 1 1 99512 220 0.00 2019-09-18 08:53:25 2019-09-18 08:54:14 t 1 1 99515 220 0.00 2019-09-18 08:54:47 2019-09-18 08:55:35 t 1 1 99518 220 0.00 2019-09-18 08:57:12 2019-09-18 08:57:49 t 1 1 99519 220 0.00 2019-09-18 08:57:49 2019-09-18 08:58:42 t 1 1 99520 220 0.00 2019-09-18 08:58:42 2019-09-18 08:59:18 t 1 1 99523 220 0.00 2019-09-18 09:06:10 2019-09-18 09:06:19 t 1 1 99526 220 0.00 2019-09-18 09:07:53 2019-09-18 09:11:10 t 1 1 99529 220 0.00 2019-09-18 09:13:15 2019-09-18 09:15:07 t 1 1 99530 220 0.00 2019-09-18 09:15:07 2019-09-18 09:15:16 t 1 1 99535 220 0.00 2019-09-18 09:27:57 2019-09-18 09:28:08 t 1 1 99536 430 0.00 2019-09-18 09:33:50 2019-09-18 09:34:11 t 1 1 99540 220 0.00 2019-09-18 09:49:30 2019-09-18 09:49:39 t 1 1 99543 327 0.00 2019-09-18 09:35:44 2019-09-18 09:55:18 t 1 1 99547 327 0.00 2019-09-18 10:02:05 2019-09-18 10:06:56 t 1 1 99549 220 0.00 2019-09-18 10:09:25 2019-09-18 10:09:33 t 1 1 99551 327 0.00 2019-09-18 10:13:45 2019-09-18 10:14:18 t 1 1 99552 220 0.00 2019-09-18 10:17:30 2019-09-18 10:17:31 t 1 1 99554 327 0.00 2019-09-18 10:18:05 2019-09-18 10:21:59 t 1 1 99555 220 0.00 2019-09-18 10:22:35 2019-09-18 10:22:46 t 1 1 99566 220 0.00 2019-09-18 10:33:29 2019-09-18 10:45:09 t 1 1 99571 416 0.00 2019-09-18 10:54:40 2019-09-18 11:03:35 t 1 1 99573 416 0.00 2019-09-18 11:05:04 2019-09-18 11:05:13 t 1 1 99577 306 0.00 2019-09-18 11:18:01 2019-09-18 11:27:21 t 1 1 99578 306 0.00 2019-09-18 11:27:21 2019-09-18 11:27:34 t 1 1 99580 402 0.00 2019-09-18 11:28:08 2019-09-18 11:28:09 t 1 2 99582 220 0.00 2019-09-18 11:17:04 2019-09-18 11:32:03 t 1 1 99584 220 0.00 2019-09-18 11:32:38 2019-09-18 11:33:13 t 1 1 99586 220 0.00 2019-09-18 11:33:13 2019-09-18 11:41:58 t 1 1 99589 420 0.00 2019-09-18 11:49:36 2019-09-18 11:53:08 t 1 1 99598 220 0.00 2019-09-18 12:15:24 2019-09-18 12:15:34 t 1 1 99603 420 0.00 2019-09-18 12:19:16 2019-09-18 12:21:05 t 1 1 99604 327 0.00 2019-09-18 12:06:52 2019-09-18 12:23:06 t 1 1 99608 430 0.00 2019-09-18 12:35:02 2019-09-18 12:35:33 t 1 1 99609 470 0.00 2019-09-18 10:50:09 2019-09-18 12:36:35 t 1 1 99610 220 0.00 2019-09-18 12:36:43 2019-09-18 12:36:52 t 1 1 99612 220 0.00 2019-09-18 12:37:01 2019-09-18 12:38:02 t 1 1 99616 430 0.00 2019-09-18 12:40:15 2019-09-18 12:42:48 t 1 1 99618 451 0.00 2019-09-18 12:30:11 2019-09-18 12:46:40 t 1 1 99619 220 0.00 2019-09-18 12:47:28 2019-09-18 12:47:39 t 1 1 99622 327 0.00 2019-09-18 12:53:16 2019-09-18 12:53:49 t 1 1 99629 470 0.00 2019-09-18 12:59:08 2019-09-18 13:10:26 t 1 1 99630 327 0.00 2019-09-18 13:10:27 2019-09-18 13:10:29 t 1 1 99631 296 0.00 2019-09-18 13:09:59 2019-09-18 13:11:20 t 1 2 99634 430 0.00 2019-09-18 13:01:41 2019-09-18 13:15:33 t 1 1 99638 468 0.00 2019-09-18 13:13:35 2019-09-18 13:19:59 t 1 1 99640 470 0.00 2019-09-18 13:10:26 2019-09-18 13:21:26 t 1 1 99641 327 0.00 2019-09-18 13:21:22 2019-09-18 13:22:26 t 1 1 99643 470 0.00 2019-09-18 13:21:26 2019-09-18 13:28:56 t 1 1 99644 220 0.00 2019-09-18 13:30:55 2019-09-18 13:31:07 t 1 1 99647 432 0.00 2019-09-18 13:21:02 2019-09-18 13:36:53 t 1 1 99648 470 0.00 2019-09-18 13:28:56 2019-09-18 13:39:13 t 1 1 99655 470 0.00 2019-09-18 13:39:13 2019-09-18 13:48:08 t 1 1 99663 470 0.00 2019-09-18 13:56:30 2019-09-18 14:04:35 t 1 1 99679 470 0.00 2019-09-18 14:26:23 2019-09-18 14:33:19 t 1 1 99684 422 0.00 2019-09-18 14:36:05 2019-09-18 14:42:25 t 1 1 99692 288 0.00 2019-09-18 13:33:55 2019-09-18 14:51:43 t 1 1 99697 220 0.00 2019-09-18 14:57:15 2019-09-18 14:57:29 t 1 1 99701 422 0.00 2019-09-18 14:57:12 2019-09-18 15:03:05 t 1 1 99702 451 0.00 2019-09-18 14:51:37 2019-09-18 15:05:29 t 1 1 99704 220 0.00 2019-09-18 15:08:00 2019-09-18 15:08:09 t 1 1 99709 220 0.00 2019-09-18 15:09:11 2019-09-18 15:18:33 t 1 1 99713 422 0.00 2019-09-18 15:18:00 2019-09-18 15:21:20 t 1 1 99715 220 0.00 2019-09-18 15:19:06 2019-09-18 15:27:00 t 1 1 99717 422 0.00 2019-09-18 15:21:20 2019-09-18 15:30:21 t 1 1 99587 220 0.00 2019-09-18 11:43:35 2019-09-18 11:44:07 t 1 1 99588 456 0.00 2019-09-18 11:41:22 2019-09-18 11:47:51 t 1 1 99591 400 0.00 2019-09-18 10:51:16 2019-09-18 11:57:43 t 1 1 99592 420 0.00 2019-09-18 11:53:08 2019-09-18 11:59:38 t 1 1 99595 432 0.00 2019-09-18 12:03:47 2019-09-18 12:07:23 t 1 1 99596 462 0.00 2019-09-18 11:40:51 2019-09-18 12:13:39 t 1 1 99597 220 0.00 2019-09-18 12:15:08 2019-09-18 12:15:16 t 1 1 99600 420 0.00 2019-09-18 12:05:58 2019-09-18 12:16:24 t 1 1 99601 420 0.00 2019-09-18 12:16:40 2019-09-18 12:17:43 t 1 1 99602 420 0.00 2019-09-18 12:17:46 2019-09-18 12:19:06 t 1 1 99605 220 0.00 2019-09-18 12:26:12 2019-09-18 12:26:21 t 1 1 99607 327 0.00 2019-09-18 12:27:55 2019-09-18 12:30:05 t 1 1 99617 470 0.00 2019-09-18 12:36:35 2019-09-18 12:46:34 t 1 1 99620 327 0.00 2019-09-18 12:49:27 2019-09-18 12:50:28 t 1 1 99621 327 0.00 2019-09-18 12:51:29 2019-09-18 12:52:10 t 1 1 99624 220 0.00 2019-09-18 12:58:06 2019-09-18 12:58:51 t 1 1 99627 220 0.00 2019-09-18 13:09:24 2019-09-18 13:09:35 t 1 1 99632 327 0.00 2019-09-18 13:10:38 2019-09-18 13:11:27 t 1 1 99633 468 0.00 2019-09-18 12:47:48 2019-09-18 13:13:35 t 1 1 99642 220 0.00 2019-09-18 13:07:20 2019-09-18 13:22:40 t 1 2 99645 327 0.00 2019-09-18 13:32:31 2019-09-18 13:33:03 t 1 1 99646 288 0.00 2019-09-18 12:43:56 2019-09-18 13:33:55 t 1 1 99649 430 0.00 2019-09-18 13:39:35 2019-09-18 13:39:45 t 1 1 99650 220 0.00 2019-09-18 13:41:41 2019-09-18 13:42:24 t 1 1 99652 306 0.00 2019-09-18 13:20:18 2019-09-18 13:45:12 t 1 1 99653 327 0.00 2019-09-18 13:44:56 2019-09-18 13:45:52 t 1 1 99661 420 0.00 2019-09-18 13:57:48 2019-09-18 14:03:31 t 1 1 99662 220 0.00 2019-09-18 14:03:59 2019-09-18 14:04:08 t 1 1 99664 400 0.00 2019-09-18 14:02:25 2019-09-18 14:04:54 t 1 1 99668 420 0.00 2019-09-18 14:03:31 2019-09-18 14:10:18 t 1 1 99670 327 0.00 2019-09-18 14:15:16 2019-09-18 14:16:37 t 1 1 99671 470 0.00 2019-09-18 14:04:36 2019-09-18 14:18:24 t 1 1 99673 432 0.00 2019-09-18 14:23:41 2019-09-18 14:25:04 t 1 1 99674 220 0.00 2019-09-18 14:25:01 2019-09-18 14:25:15 t 1 1 99676 470 0.00 2019-09-18 14:18:24 2019-09-18 14:26:23 t 1 1 99677 327 0.00 2019-09-18 14:26:38 2019-09-18 14:27:07 t 1 1 99682 470 0.00 2019-09-18 14:33:19 2019-09-18 14:38:23 t 1 1 99683 420 0.00 2019-09-18 14:30:30 2019-09-18 14:39:39 t 1 1 99686 327 0.00 2019-09-18 14:43:36 2019-09-18 14:44:37 t 1 1 99688 422 0.00 2019-09-18 14:42:25 2019-09-18 14:46:58 t 1 1 99690 470 0.00 2019-09-18 14:38:23 2019-09-18 14:49:39 t 1 1 99695 470 0.00 2019-09-18 14:50:58 2019-09-18 14:56:24 t 1 1 99698 327 0.00 2019-09-18 14:52:29 2019-09-18 14:59:44 t 1 1 99699 470 0.00 2019-09-18 14:56:23 2019-09-18 15:01:01 t 1 1 99700 339 0.00 2019-09-18 12:52:40 2019-09-18 15:02:04 t 1 2 99705 470 0.00 2019-09-18 15:01:19 2019-09-18 15:10:35 t 1 1 99708 422 0.00 2019-09-18 15:03:05 2019-09-18 15:18:00 t 1 1 99710 306 0.00 2019-09-18 14:58:01 2019-09-18 15:18:42 t 1 1 99714 451 0.00 2019-09-18 15:05:29 2019-09-18 15:24:01 t 1 1 99719 306 0.00 2019-09-18 15:32:14 2019-09-18 15:35:41 t 1 1 99720 220 0.00 2019-09-18 15:39:38 2019-09-18 15:39:48 t 1 1 99721 432 0.00 2019-09-18 15:30:06 2019-09-18 15:49:35 t 1 1 99727 327 0.00 2019-09-18 16:07:33 2019-09-18 16:08:06 t 1 1 99730 327 0.00 2019-09-18 16:17:10 2019-09-18 16:17:40 t 1 1 99731 306 0.00 2019-09-18 16:18:31 2019-09-18 16:22:13 t 1 1 99740 288 0.00 2019-09-18 14:51:41 2019-09-18 16:41:05 t 1 1 99741 327 0.00 2019-09-18 16:18:35 2019-09-18 16:45:13 t 1 1 99743 451 0.00 2019-09-18 16:45:56 2019-09-18 16:46:34 t 1 1 99745 327 0.00 2019-09-18 16:49:05 2019-09-18 16:49:38 t 1 1 99747 220 0.00 2019-09-18 16:42:57 2019-09-18 16:51:38 t 1 1 99766 462 0.00 2019-09-18 17:11:43 2019-09-18 17:26:59 t 1 1 99768 220 0.00 2019-09-18 17:31:01 2019-09-18 17:31:09 t 1 1 99772 432 0.00 2019-09-18 17:36:04 2019-09-18 17:40:03 t 1 1 99773 220 0.00 2019-09-18 17:19:39 2019-09-18 17:41:02 t 1 2 99774 220 0.00 2019-09-18 17:41:31 2019-09-18 17:43:31 t 1 1 99778 445 0.00 2019-09-18 16:39:16 2019-09-18 17:48:35 t 1 1 99781 379 0.00 2019-09-18 17:49:43 2019-09-18 17:52:28 t 1 1 99784 470 0.00 2019-09-18 17:46:05 2019-09-18 17:58:19 t 1 1 99791 327 0.00 2019-09-18 18:06:59 2019-09-18 18:07:24 t 1 1 99800 432 0.00 2019-09-18 18:02:44 2019-09-18 18:18:34 t 1 1 99808 327 0.00 2019-09-18 18:27:38 2019-09-18 18:28:39 t 1 1 99816 432 0.00 2019-09-18 18:40:46 2019-09-18 18:41:03 t 1 1 99818 432 0.00 2019-09-18 18:45:42 2019-09-18 18:45:47 t 1 1 99820 220 0.00 2019-09-18 18:26:52 2019-09-18 18:49:11 t 1 2 99822 220 0.00 2019-09-18 18:56:49 2019-09-18 18:57:01 t 1 1 99825 220 0.00 2019-09-18 19:07:38 2019-09-18 19:07:49 t 1 1 99826 306 0.00 2019-09-18 18:38:42 2019-09-18 19:09:07 t 1 1 99832 400 0.00 2019-09-18 19:15:09 2019-09-18 19:20:22 t 1 1 99833 420 0.00 2019-09-18 18:57:48 2019-09-18 19:25:04 t 1 1 99837 400 0.00 2019-09-18 19:28:12 2019-09-18 19:35:50 t 1 1 99838 470 0.00 2019-09-18 18:51:43 2019-09-18 19:36:18 t 1 1 99840 432 0.00 2019-09-18 19:43:51 2019-09-18 19:44:35 t 1 1 99843 470 0.00 2019-09-18 19:36:17 2019-09-18 19:51:48 t 1 1 99847 411 0.00 2019-09-18 08:57:31 2019-09-18 20:08:32 t 1 1 99849 306 0.00 2019-09-18 19:34:11 2019-09-18 20:08:55 t 1 1 99851 462 0.00 2019-09-18 20:08:52 2019-09-18 20:16:33 t 1 1 99854 420 0.00 2019-09-18 19:25:11 2019-09-18 20:21:53 t 1 1 99857 306 0.00 2019-09-18 20:27:05 2019-09-18 20:29:12 t 1 1 99858 432 0.00 2019-09-18 20:29:35 2019-09-18 20:30:35 t 1 1 99860 432 0.00 2019-09-18 20:31:11 2019-09-18 20:31:58 t 1 1 99862 470 0.00 2019-09-18 20:19:57 2019-09-18 20:36:13 t 1 1 99865 432 0.00 2019-09-18 20:38:49 2019-09-18 20:38:55 t 1 1 99866 451 0.00 2019-09-18 20:34:06 2019-09-18 20:39:24 t 1 1 99869 445 0.00 2019-09-18 20:01:30 2019-09-18 20:43:04 t 1 1 99871 432 0.00 2019-09-18 20:44:51 2019-09-18 20:45:15 t 1 1 99873 430 0.00 2019-09-18 19:49:44 2019-09-18 20:46:17 t 1 1 99874 432 0.00 2019-09-18 20:47:31 2019-09-18 20:47:56 t 1 1 99876 432 0.00 2019-09-18 20:50:32 2019-09-18 20:50:38 t 1 1 99877 432 0.00 2019-09-18 20:51:59 2019-09-18 20:52:12 t 1 1 99879 432 0.00 2019-09-18 20:59:42 2019-09-18 21:00:29 t 1 1 99880 432 0.00 2019-09-18 21:02:00 2019-09-18 21:02:09 t 1 1 99881 412 0.00 2019-09-18 20:48:05 2019-09-18 21:03:55 t 1 1 99885 432 0.00 2019-09-18 21:04:55 2019-09-18 21:05:07 t 1 1 99886 327 0.00 2019-09-18 21:04:55 2019-09-18 21:05:22 t 1 1 99891 327 0.00 2019-09-18 21:08:24 2019-09-18 21:13:25 t 1 1 99893 327 0.00 2019-09-18 21:14:27 2019-09-18 21:15:01 t 1 1 99895 220 0.00 2019-09-18 21:15:41 2019-09-18 21:17:00 t 1 1 99672 432 0.00 2019-09-18 14:11:17 2019-09-18 14:23:35 t 1 1 99675 432 0.00 2019-09-18 14:25:04 2019-09-18 14:25:27 t 1 1 99678 420 0.00 2019-09-18 14:21:37 2019-09-18 14:30:30 t 1 1 99680 422 0.00 2019-09-18 14:22:37 2019-09-18 14:36:05 t 1 1 99681 432 0.00 2019-09-18 14:37:21 2019-09-18 14:37:47 t 1 1 99685 327 0.00 2019-09-18 14:36:43 2019-09-18 14:43:07 t 1 1 99687 220 0.00 2019-09-18 14:46:03 2019-09-18 14:46:14 t 1 1 99689 432 0.00 2019-09-18 14:47:33 2019-09-18 14:47:57 t 1 1 99691 470 0.00 2019-09-18 14:49:39 2019-09-18 14:50:58 t 1 1 99693 456 0.00 2019-09-18 14:43:41 2019-09-18 14:53:55 t 1 1 99694 432 0.00 2019-09-18 14:53:26 2019-09-18 14:54:21 t 1 1 99696 422 0.00 2019-09-18 14:46:58 2019-09-18 14:57:12 t 1 1 99703 220 0.00 2019-09-18 14:48:58 2019-09-18 15:08:00 t 1 1 99706 327 0.00 2019-09-18 15:09:46 2019-09-18 15:11:03 t 1 1 99707 432 0.00 2019-09-18 14:54:21 2019-09-18 15:12:50 t 1 1 99711 220 0.00 2019-09-18 15:18:32 2019-09-18 15:18:47 t 1 1 99712 400 0.00 2019-09-18 15:15:03 2019-09-18 15:20:02 t 1 1 99716 220 0.00 2019-09-18 15:29:07 2019-09-18 15:29:40 t 1 1 99718 422 0.00 2019-09-18 15:30:21 2019-09-18 15:30:32 t 1 1 99722 432 0.00 2019-09-18 15:49:32 2019-09-18 15:49:45 t 1 1 99728 220 0.00 2019-09-18 16:11:16 2019-09-18 16:11:26 t 1 1 99734 432 0.00 2019-09-18 15:59:03 2019-09-18 16:28:17 t 1 1 99735 464 0.00 2019-09-18 16:31:11 2019-09-18 16:31:34 t 1 1 99739 379 0.00 2019-09-18 10:29:49 2019-09-18 16:35:02 t 1 1 99742 432 0.00 2019-09-18 16:34:50 2019-09-18 16:46:28 t 1 1 99744 327 0.00 2019-09-18 16:46:19 2019-09-18 16:46:52 t 1 1 99749 470 0.00 2019-09-18 16:28:03 2019-09-18 16:55:07 t 1 1 99750 327 0.00 2019-09-18 16:57:01 2019-09-18 16:57:34 t 1 1 99751 432 0.00 2019-09-18 16:46:28 2019-09-18 16:59:33 t 1 1 99752 432 0.00 2019-09-18 16:59:46 2019-09-18 16:59:55 t 1 1 99754 462 0.00 2019-09-18 16:52:25 2019-09-18 17:01:32 t 1 1 99755 220 0.00 2019-09-18 16:59:54 2019-09-18 17:02:15 t 1 2 99760 462 0.00 2019-09-18 17:01:32 2019-09-18 17:11:43 t 1 1 99761 451 0.00 2019-09-18 16:46:33 2019-09-18 17:12:55 t 1 1 99763 420 0.00 2019-09-18 17:06:52 2019-09-18 17:17:18 t 1 1 99764 220 0.00 2019-09-18 17:20:32 2019-09-18 17:20:40 t 1 1 99765 327 0.00 2019-09-18 17:21:09 2019-09-18 17:21:41 t 1 1 99767 420 0.00 2019-09-18 17:17:18 2019-09-18 17:28:32 t 1 1 99769 327 0.00 2019-09-18 17:31:42 2019-09-18 17:32:56 t 1 1 99770 432 0.00 2019-09-18 17:20:10 2019-09-18 17:35:33 t 1 1 99775 327 0.00 2019-09-18 17:42:52 2019-09-18 17:43:33 t 1 1 99779 379 0.00 2019-09-18 16:35:02 2019-09-18 17:49:39 t 1 1 99782 327 0.00 2019-09-18 17:53:31 2019-09-18 17:54:04 t 1 1 99785 432 0.00 2019-09-18 17:59:09 2019-09-18 17:59:18 t 1 1 99786 432 0.00 2019-09-18 18:01:04 2019-09-18 18:02:36 t 1 1 99788 445 0.00 2019-09-18 17:48:35 2019-09-18 18:03:15 t 1 1 99790 462 0.00 2019-09-18 17:37:25 2019-09-18 18:05:24 t 1 1 99795 220 0.00 2019-09-18 18:13:48 2019-09-18 18:13:59 t 1 1 99798 220 0.00 2019-09-18 12:09:48 2019-09-18 18:17:03 t 1 2 99799 464 0.00 2019-09-18 18:17:24 2019-09-18 18:17:38 t 1 1 99803 468 0.00 2019-09-18 18:16:42 2019-09-18 18:21:45 t 1 1 99809 327 0.00 2019-09-18 18:27:58 2019-09-18 18:28:55 t 1 1 99810 327 0.00 2019-09-18 18:29:22 2019-09-18 18:29:51 t 1 1 99811 432 0.00 2019-09-18 18:21:19 2019-09-18 18:30:39 t 1 1 99814 220 0.00 2019-09-18 18:35:54 2019-09-18 18:36:02 t 1 1 99815 432 0.00 2019-09-18 18:38:21 2019-09-18 18:38:46 t 1 1 99817 462 0.00 2019-09-18 18:20:29 2019-09-18 18:45:15 t 1 1 99824 420 0.00 2019-09-18 18:07:50 2019-09-18 18:57:49 t 1 1 99829 432 0.00 2019-09-18 19:10:36 2019-09-18 19:12:15 t 1 1 99834 220 0.00 2019-09-18 19:24:40 2019-09-18 19:25:54 t 1 1 99835 472 0.00 2019-09-18 19:17:32 2019-09-18 19:27:37 t 1 2 99848 462 0.00 2019-09-18 19:31:35 2019-09-18 20:08:52 t 1 1 99853 432 0.00 2019-09-18 20:17:28 2019-09-18 20:17:44 t 1 1 99855 220 0.00 2019-09-18 20:09:01 2019-09-18 20:26:41 t 1 1 99856 432 0.00 2019-09-18 20:18:59 2019-09-18 20:27:42 t 1 1 99859 306 0.00 2019-09-18 20:29:26 2019-09-18 20:31:44 t 1 1 99863 472 0.00 2019-09-18 20:31:44 2019-09-18 20:37:53 t 1 2 99864 432 0.00 2019-09-18 20:38:21 2019-09-18 20:38:25 t 1 1 99867 432 0.00 2019-09-18 20:39:18 2019-09-18 20:39:24 t 1 1 99870 306 0.00 2019-09-18 20:41:33 2019-09-18 20:44:53 t 1 1 99872 220 0.00 2019-09-18 20:45:00 2019-09-18 20:45:58 t 1 1 99875 412 0.00 2019-09-18 20:09:35 2019-09-18 20:48:05 t 1 1 99878 432 0.00 2019-09-18 20:54:16 2019-09-18 20:55:45 t 1 1 99883 432 0.00 2019-09-18 21:04:03 2019-09-18 21:04:43 t 1 1 99887 220 0.00 2019-09-18 21:04:29 2019-09-18 21:05:32 t 1 1 99888 327 0.00 2019-09-18 21:05:51 2019-09-18 21:06:19 t 1 1 99899 432 0.00 2019-09-18 21:19:16 2019-09-18 21:20:32 t 1 1 99902 327 0.00 2019-09-18 21:25:09 2019-09-18 21:25:37 t 1 1 99904 220 0.00 2019-09-18 21:27:10 2019-09-18 21:27:34 t 1 1 99906 306 0.00 2019-09-18 21:14:48 2019-09-18 21:30:14 t 1 1 99907 432 0.00 2019-09-18 21:27:28 2019-09-18 21:30:56 t 1 1 99909 220 0.00 2019-09-18 21:38:10 2019-09-18 21:38:55 t 1 1 99911 220 0.00 2019-09-18 21:49:25 2019-09-18 21:49:35 t 1 1 99913 412 0.00 2019-09-18 21:17:53 2019-09-18 21:53:29 t 1 1 99914 306 0.00 2019-09-18 21:47:54 2019-09-18 21:54:37 t 1 1 99919 420 0.00 2019-09-18 22:05:04 2019-09-18 22:06:14 t 1 1 99922 327 0.00 2019-09-18 22:10:09 2019-09-18 22:11:25 t 1 1 99923 327 0.00 2019-09-18 22:11:37 2019-09-18 22:12:58 t 1 1 99925 327 0.00 2019-09-18 22:13:57 2019-09-18 22:14:23 t 1 1 99928 420 0.00 2019-09-18 22:13:25 2019-09-18 22:19:33 t 1 1 99929 432 0.00 2019-09-18 21:33:16 2019-09-18 22:23:06 t 1 1 99931 420 0.00 2019-09-18 22:24:38 2019-09-18 22:25:42 t 1 1 99934 247 0.00 2019-09-18 22:27:21 2019-09-18 22:29:36 t 1 2 99936 327 0.00 2019-09-18 22:36:15 2019-09-18 22:36:55 t 1 1 99939 327 0.00 2019-09-18 22:42:50 2019-09-18 22:44:05 t 1 1 99941 451 0.00 2019-09-18 22:39:09 2019-09-18 22:49:33 t 1 1 99943 432 0.00 2019-09-18 22:50:30 2019-09-18 22:51:04 t 1 1 99945 468 0.00 2019-09-18 22:16:52 2019-09-18 22:54:35 t 1 1 99948 451 0.00 2019-09-18 22:54:24 2019-09-18 22:55:55 t 1 1 99959 472 0.00 2019-09-18 23:03:58 2019-09-18 23:07:11 t 1 2 99963 220 0.00 2019-09-18 22:52:37 2019-09-18 23:10:59 t 1 2 99964 400 0.00 2019-09-18 23:07:30 2019-09-18 23:11:20 t 1 1 99966 432 0.00 2019-09-18 22:53:21 2019-09-18 23:12:45 t 1 1 99967 327 0.00 2019-09-18 23:12:57 2019-09-18 23:14:01 t 1 1 99968 311 0.00 2019-09-18 22:49:20 2019-09-18 23:14:48 t 1 2 99975 327 0.00 2019-09-18 23:22:32 2019-09-18 23:22:58 t 1 1 99977 472 0.00 2019-09-18 23:21:09 2019-09-18 23:24:32 t 1 2 99723 220 0.00 2019-09-18 15:50:09 2019-09-18 15:50:23 t 1 1 99724 327 0.00 2019-09-18 15:18:01 2019-09-18 15:57:32 t 1 1 99725 220 0.00 2019-09-18 16:00:41 2019-09-18 16:01:21 t 1 1 99726 327 0.00 2019-09-18 15:57:32 2019-09-18 16:05:59 t 1 1 99729 220 0.00 2019-09-18 16:11:37 2019-09-18 16:13:31 t 1 1 99732 220 0.00 2019-09-18 16:22:05 2019-09-18 16:22:16 t 1 1 99733 395 0.00 2019-09-18 11:29:33 2019-09-18 16:24:57 t 1 2 99736 445 0.00 2019-09-18 15:48:04 2019-09-18 16:32:07 t 1 1 99737 220 0.00 2019-09-18 16:32:51 2019-09-18 16:33:02 t 1 1 99738 432 0.00 2019-09-18 16:28:16 2019-09-18 16:34:19 t 1 1 99746 327 0.00 2019-09-18 16:50:56 2019-09-18 16:51:29 t 1 1 99748 220 0.00 2019-09-18 16:53:50 2019-09-18 16:54:04 t 1 1 99753 432 0.00 2019-09-18 17:00:32 2019-09-18 17:00:41 t 1 1 99756 220 0.00 2019-09-18 17:04:38 2019-09-18 17:04:50 t 1 1 99757 432 0.00 2019-09-18 17:05:51 2019-09-18 17:06:26 t 1 1 99758 220 0.00 2019-09-18 17:09:24 2019-09-18 17:09:44 t 1 1 99759 327 0.00 2019-09-18 17:05:05 2019-09-18 17:11:08 t 1 1 99762 432 0.00 2019-09-18 17:16:17 2019-09-18 17:16:40 t 1 1 99771 462 0.00 2019-09-18 17:26:59 2019-09-18 17:37:25 t 1 1 99776 470 0.00 2019-09-18 17:26:46 2019-09-18 17:46:05 t 1 1 99777 420 0.00 2019-09-18 17:34:24 2019-09-18 17:46:56 t 1 1 99780 220 0.00 2019-09-18 17:52:08 2019-09-18 17:52:20 t 1 1 99783 432 0.00 2019-09-18 17:49:17 2019-09-18 17:55:36 t 1 1 99787 220 0.00 2019-09-18 18:03:02 2019-09-18 18:03:14 t 1 1 99789 327 0.00 2019-09-18 18:02:48 2019-09-18 18:03:51 t 1 1 99792 420 0.00 2019-09-18 17:46:59 2019-09-18 18:07:48 t 1 1 99793 327 0.00 2019-09-18 18:07:36 2019-09-18 18:08:21 t 1 1 99794 470 0.00 2019-09-18 17:58:20 2019-09-18 18:13:48 t 1 1 99796 327 0.00 2019-09-18 18:11:44 2019-09-18 18:14:10 t 1 1 99797 327 0.00 2019-09-18 18:14:27 2019-09-18 18:14:56 t 1 1 99801 424 0.00 2019-09-18 18:10:38 2019-09-18 18:20:01 t 1 2 99802 462 0.00 2019-09-18 18:05:24 2019-09-18 18:20:29 t 1 1 99804 220 0.00 2019-09-18 18:21:18 2019-09-18 18:24:41 t 1 2 99805 220 0.00 2019-09-18 18:24:52 2019-09-18 18:25:01 t 1 1 99806 327 0.00 2019-09-18 18:24:58 2019-09-18 18:25:31 t 1 1 99807 327 0.00 2019-09-18 18:25:56 2019-09-18 18:27:30 t 1 1 99812 327 0.00 2019-09-18 18:31:04 2019-09-18 18:32:31 t 1 1 99813 220 0.00 2019-09-18 18:35:23 2019-09-18 18:35:46 t 1 1 99819 432 0.00 2019-09-18 18:46:17 2019-09-18 18:48:32 t 1 1 99821 430 0.00 2019-09-18 18:27:18 2019-09-18 18:51:06 t 1 1 99823 412 0.00 2019-09-18 08:15:37 2019-09-18 18:57:17 t 1 1 99827 432 0.00 2019-09-18 18:50:22 2019-09-18 19:09:26 t 1 1 99828 306 0.00 2019-09-18 19:09:07 2019-09-18 19:10:22 t 1 1 99830 306 0.00 2019-09-18 19:11:17 2019-09-18 19:14:23 t 1 1 99831 220 0.00 2019-09-18 19:18:25 2019-09-18 19:18:35 t 1 1 99836 432 0.00 2019-09-18 19:12:43 2019-09-18 19:32:27 t 1 1 99839 432 0.00 2019-09-18 19:32:47 2019-09-18 19:42:30 t 1 1 99841 432 0.00 2019-09-18 19:45:19 2019-09-18 19:46:39 t 1 1 99842 430 0.00 2019-09-18 19:30:18 2019-09-18 19:49:44 t 1 1 99844 432 0.00 2019-09-18 19:47:16 2019-09-18 19:59:44 t 1 1 99845 445 0.00 2019-09-18 18:03:58 2019-09-18 20:00:39 t 1 1 99846 392 0.00 2019-09-18 20:03:44 2019-09-18 20:03:47 t 1 2 99850 432 0.00 2019-09-18 19:59:43 2019-09-18 20:16:27 t 1 1 99852 456 0.00 2019-09-18 20:13:03 2019-09-18 20:17:21 t 1 1 99861 432 0.00 2019-09-18 20:34:29 2019-09-18 20:35:16 t 1 1 99868 470 0.00 2019-09-18 20:37:26 2019-09-18 20:40:10 t 1 1 99882 445 0.00 2019-09-18 20:43:00 2019-09-18 21:04:26 t 1 1 99884 392 0.00 2019-09-18 21:04:58 2019-09-18 21:04:59 t 1 2 99889 400 0.00 2019-09-18 20:31:39 2019-09-18 21:08:16 t 1 1 99890 432 0.00 2019-09-18 21:07:03 2019-09-18 21:09:58 t 1 1 99892 306 0.00 2019-09-18 20:44:53 2019-09-18 21:14:48 t 1 1 99894 432 0.00 2019-09-18 21:14:10 2019-09-18 21:16:14 t 1 1 99896 412 0.00 2019-09-18 21:03:55 2019-09-18 21:17:53 t 1 1 99901 432 0.00 2019-09-18 21:21:50 2019-09-18 21:21:54 t 1 1 99903 220 0.00 2019-09-18 20:48:25 2019-09-18 21:25:46 t 1 2 99905 400 0.00 2019-09-18 21:28:29 2019-09-18 21:30:05 t 1 1 99908 470 0.00 2019-09-18 21:22:32 2019-09-18 21:31:08 t 1 1 99912 400 0.00 2019-09-18 21:49:37 2019-09-18 21:51:11 t 1 1 99915 220 0.00 2019-09-18 21:52:14 2019-09-18 21:54:54 t 1 1 99916 470 0.00 2019-09-18 21:32:33 2019-09-18 21:56:14 t 1 1 99918 288 0.00 2019-09-18 21:40:29 2019-09-18 22:05:39 t 1 1 99920 327 0.00 2019-09-18 22:05:00 2019-09-18 22:08:33 t 1 1 99926 327 0.00 2019-09-18 22:15:26 2019-09-18 22:15:54 t 1 1 99927 327 0.00 2019-09-18 22:17:45 2019-09-18 22:18:18 t 1 1 99930 420 0.00 2019-09-18 22:19:33 2019-09-18 22:24:38 t 1 1 99932 412 0.00 2019-09-18 21:53:29 2019-09-18 22:25:46 t 1 1 99933 327 0.00 2019-09-18 22:25:19 2019-09-18 22:26:18 t 1 1 99938 327 0.00 2019-09-18 22:40:15 2019-09-18 22:40:58 t 1 1 99942 445 0.00 2019-09-18 22:48:01 2019-09-18 22:50:03 t 1 1 99949 472 0.00 2019-09-18 22:51:05 2019-09-18 22:56:25 t 1 2 99950 220 0.00 2019-09-18 22:00:50 2019-09-18 22:57:14 t 1 2 99952 451 0.00 2019-09-18 22:57:05 2019-09-18 22:58:50 t 1 1 99953 456 0.00 2019-09-18 22:47:11 2019-09-18 23:00:49 t 1 1 99958 451 0.00 2019-09-18 23:03:40 2019-09-18 23:06:41 t 1 1 99961 400 0.00 2019-09-18 23:01:53 2019-09-18 23:07:30 t 1 1 99965 327 0.00 2019-09-18 23:07:01 2019-09-18 23:11:23 t 1 1 99970 451 0.00 2019-09-18 23:06:40 2019-09-18 23:17:35 t 1 1 99972 327 0.00 2019-09-18 23:18:11 2019-09-18 23:19:39 t 1 1 99973 327 0.00 2019-09-18 23:20:49 2019-09-18 23:22:07 t 1 1 99974 445 0.00 2019-09-18 23:18:37 2019-09-18 23:22:23 t 1 1 99979 220 0.00 2019-09-18 23:23:59 2019-09-18 23:25:23 t 1 2 99982 445 0.00 2019-09-18 23:26:23 2019-09-18 23:27:51 t 1 1 99986 327 0.00 2019-09-18 23:37:07 2019-09-18 23:37:41 t 1 1 99988 456 0.00 2019-09-18 23:35:37 2019-09-18 23:38:47 t 1 1 99990 327 0.00 2019-09-18 23:43:02 2019-09-18 23:43:14 t 1 1 99995 327 0.00 2019-09-18 23:52:35 2019-09-18 23:53:07 t 1 1 99997 327 0.00 2019-09-19 00:03:09 2019-09-19 00:03:43 t 1 1 99998 327 0.00 2019-09-19 00:03:51 2019-09-19 00:04:52 t 1 1 99999 327 0.00 2019-09-19 00:06:59 2019-09-19 00:07:34 t 1 1 100005 400 0.00 2019-09-18 23:11:20 2019-09-19 00:17:18 t 1 1 100006 468 0.00 2019-09-18 23:09:19 2019-09-19 00:18:54 t 1 1 100009 445 0.00 2019-09-19 00:11:37 2019-09-19 00:26:15 t 1 1 100010 327 0.00 2019-09-19 00:28:36 2019-09-19 00:29:59 t 1 1 100011 445 0.00 2019-09-19 00:27:21 2019-09-19 00:35:23 t 1 1 100024 468 0.00 2019-09-19 03:17:24 2019-09-19 03:28:42 t 1 1 100025 430 0.00 2019-09-19 04:12:51 2019-09-19 04:13:35 t 1 1 100027 379 0.00 2019-09-18 17:53:03 2019-09-19 06:04:14 t 1 1 99897 400 0.00 2019-09-18 21:18:50 2019-09-18 21:19:52 t 1 1 99898 432 0.00 2019-09-18 21:19:34 2019-09-18 21:20:19 t 1 1 99900 294 0.00 2019-09-18 21:10:48 2019-09-18 21:21:46 t 1 2 99910 306 0.00 2019-09-18 21:30:13 2019-09-18 21:45:53 t 1 1 99917 327 0.00 2019-09-18 21:34:48 2019-09-18 22:04:41 t 1 1 99921 400 0.00 2019-09-18 22:08:52 2019-09-18 22:11:25 t 1 1 99924 420 0.00 2019-09-18 22:06:14 2019-09-18 22:13:25 t 1 1 99935 445 0.00 2019-09-18 21:04:26 2019-09-18 22:33:07 t 1 1 99937 432 0.00 2019-09-18 22:23:06 2019-09-18 22:40:35 t 1 1 99940 432 0.00 2019-09-18 22:40:35 2019-09-18 22:46:56 t 1 1 99944 445 0.00 2019-09-18 22:50:38 2019-09-18 22:52:41 t 1 1 99946 306 0.00 2019-09-18 22:53:23 2019-09-18 22:55:02 t 1 1 99947 327 0.00 2019-09-18 22:54:21 2019-09-18 22:55:48 t 1 1 99951 327 0.00 2019-09-18 22:56:19 2019-09-18 22:57:32 t 1 1 99954 451 0.00 2019-09-18 22:59:38 2019-09-18 23:01:01 t 1 1 99955 470 0.00 2019-09-18 22:02:42 2019-09-18 23:05:13 t 1 1 99956 468 0.00 2019-09-18 22:54:35 2019-09-18 23:05:52 t 1 1 99957 327 0.00 2019-09-18 22:59:26 2019-09-18 23:06:37 t 1 1 99960 456 0.00 2019-09-18 23:02:15 2019-09-18 23:07:16 t 1 1 99962 470 0.00 2019-09-18 23:05:59 2019-09-18 23:08:10 t 1 1 99969 327 0.00 2019-09-18 23:16:34 2019-09-18 23:17:10 t 1 1 99971 445 0.00 2019-09-18 22:56:25 2019-09-18 23:18:37 t 1 1 99976 327 0.00 2019-09-18 23:24:10 2019-09-18 23:24:31 t 1 1 99980 327 0.00 2019-09-18 23:26:09 2019-09-18 23:26:37 t 1 1 99981 311 0.00 2019-09-18 23:14:38 2019-09-18 23:27:17 t 1 2 99984 327 0.00 2019-09-18 23:32:37 2019-09-18 23:33:06 t 1 1 99987 470 0.00 2019-09-18 23:09:05 2019-09-18 23:38:01 t 1 1 99989 327 0.00 2019-09-18 23:42:38 2019-09-18 23:42:51 t 1 1 99993 311 0.00 2019-09-18 23:32:44 2019-09-18 23:50:14 t 1 2 99996 445 0.00 2019-09-18 23:58:30 2019-09-19 00:01:06 t 1 1 100000 445 0.00 2019-09-19 00:01:06 2019-09-19 00:07:57 t 1 1 100001 327 0.00 2019-09-19 00:08:29 2019-09-19 00:08:58 t 1 1 100003 327 0.00 2019-09-19 00:15:17 2019-09-19 00:15:43 t 1 1 100004 327 0.00 2019-09-19 00:16:15 2019-09-19 00:16:41 t 1 1 100008 327 0.00 2019-09-19 00:20:10 2019-09-19 00:20:40 t 1 1 100013 468 0.00 2019-09-19 00:18:54 2019-09-19 00:40:14 t 1 1 100016 470 0.00 2019-09-18 23:44:53 2019-09-19 00:56:47 t 1 1 100018 468 0.00 2019-09-19 00:43:00 2019-09-19 01:15:07 t 1 1 100020 468 0.00 2019-09-19 02:04:05 2019-09-19 02:23:26 t 1 1 100022 430 0.00 2019-09-19 03:07:01 2019-09-19 03:09:33 t 1 1 100026 220 0.00 2019-09-19 01:17:46 2019-09-19 04:38:47 t 1 1 100033 420 0.00 2019-09-19 06:23:09 2019-09-19 06:29:24 t 1 1 100034 468 0.00 2019-09-19 06:22:03 2019-09-19 06:32:15 t 1 1 100036 420 0.00 2019-09-19 06:33:56 2019-09-19 06:37:26 t 1 1 100037 311 0.00 2019-09-19 06:23:30 2019-09-19 06:44:53 t 1 2 100039 220 0.00 2019-09-19 07:50:43 2019-09-19 07:52:44 t 1 1 100040 220 0.00 2019-09-19 07:52:44 2019-09-19 07:53:30 t 1 1 100041 468 0.00 2019-09-19 07:45:29 2019-09-19 07:56:49 t 1 1 100042 468 0.00 2019-09-19 07:56:48 2019-09-19 08:00:29 t 1 1 100049 470 0.00 2019-09-19 01:06:16 2019-09-19 09:03:59 t 1 1 100052 432 0.00 2019-09-19 09:01:35 2019-09-19 09:42:33 t 1 1 100061 474 0.00 2019-09-19 10:01:17 2019-09-19 10:01:18 t 1 2 100063 464 0.00 2019-09-19 10:07:02 2019-09-19 10:10:22 t 1 1 100075 306 0.00 2019-09-19 10:16:24 2019-09-19 10:26:30 t 1 1 100076 220 0.00 2019-09-19 10:17:21 2019-09-19 10:28:19 t 1 1 100079 432 0.00 2019-09-19 10:33:04 2019-09-19 10:33:12 t 1 1 100080 474 0.00 2019-09-19 10:11:32 2019-09-19 10:34:14 t 1 1 100081 306 0.00 2019-09-19 10:33:06 2019-09-19 10:36:15 t 1 1 100084 472 0.00 2019-09-19 10:43:30 2019-09-19 10:43:55 t 1 2 100085 474 0.00 2019-09-19 10:34:13 2019-09-19 10:49:34 t 1 1 100087 474 0.00 2019-09-19 10:49:38 2019-09-19 10:52:00 t 1 1 100096 375 0.00 2019-09-19 11:04:05 2019-09-19 11:11:36 t 1 1 100101 462 0.00 2019-09-19 11:06:40 2019-09-19 11:15:55 t 1 1 100109 400 0.00 2019-09-19 11:33:40 2019-09-19 11:36:29 t 1 1 100112 464 0.00 2019-09-19 11:47:23 2019-09-19 11:48:21 t 1 1 100114 375 0.00 2019-09-19 11:48:40 2019-09-19 11:48:58 t 1 1 100115 464 0.00 2019-09-19 11:48:24 2019-09-19 11:49:42 t 1 1 100116 375 0.00 2019-09-19 11:48:59 2019-09-19 11:53:19 t 1 1 100118 220 0.00 2019-09-19 11:48:51 2019-09-19 11:54:14 t 1 1 100123 220 0.00 2019-09-19 11:54:37 2019-09-19 12:03:43 t 1 1 100127 375 0.00 2019-09-19 12:05:43 2019-09-19 12:07:48 t 1 1 100135 470 0.00 2019-09-19 12:14:38 2019-09-19 12:37:03 t 1 1 100138 379 0.00 2019-09-19 08:26:26 2019-09-19 12:52:53 t 1 1 100141 327 0.00 2019-09-19 12:32:34 2019-09-19 12:57:31 t 1 1 100142 220 0.00 2019-09-19 12:11:40 2019-09-19 12:58:37 t 1 1 100144 327 0.00 2019-09-19 12:57:31 2019-09-19 13:00:17 t 1 1 100149 461 0.00 2019-09-19 12:56:13 2019-09-19 13:06:18 t 1 2 100151 400 0.00 2019-09-19 13:06:02 2019-09-19 13:14:11 t 1 1 100157 327 0.00 2019-09-19 13:35:58 2019-09-19 13:36:32 t 1 1 100158 456 0.00 2019-09-19 13:33:52 2019-09-19 13:41:42 t 1 1 100162 327 0.00 2019-09-19 13:46:28 2019-09-19 13:48:19 t 1 1 100168 432 0.00 2019-09-19 13:49:33 2019-09-19 13:52:13 t 1 1 100169 464 0.00 2019-09-19 13:50:09 2019-09-19 13:52:34 t 1 1 100170 432 0.00 2019-09-19 13:52:19 2019-09-19 13:55:27 t 1 1 100173 464 0.00 2019-09-19 13:53:24 2019-09-19 13:57:20 t 1 1 100177 420 0.00 2019-09-19 13:59:12 2019-09-19 14:05:27 t 1 1 100179 220 0.00 2019-09-19 13:44:35 2019-09-19 14:08:02 t 1 1 100181 375 0.00 2019-09-19 14:05:01 2019-09-19 14:11:07 t 1 1 100182 470 0.00 2019-09-19 13:48:57 2019-09-19 14:11:55 t 1 1 100183 379 0.00 2019-09-19 12:57:03 2019-09-19 14:13:54 t 1 1 100185 247 0.00 2019-09-19 14:12:20 2019-09-19 14:14:31 t 1 2 100197 461 0.00 2019-09-19 12:47:00 2019-09-19 14:50:27 t 1 2 100198 290 0.00 2019-09-19 14:51:35 2019-09-19 14:51:36 t 1 2 100203 456 0.00 2019-09-19 15:00:49 2019-09-19 15:09:32 t 1 1 100206 290 0.00 2019-09-19 15:12:08 2019-09-19 15:12:09 t 1 2 100207 290 0.00 2019-09-19 15:12:29 2019-09-19 15:12:30 t 1 2 100208 220 0.00 2019-09-19 15:11:31 2019-09-19 15:13:19 t 1 1 100213 290 0.00 2019-09-19 15:15:50 2019-09-19 15:15:50 t 1 2 100214 290 0.00 2019-09-19 15:16:30 2019-09-19 15:16:30 t 1 2 100215 290 0.00 2019-09-19 15:17:15 2019-09-19 15:17:16 t 1 2 100218 470 0.00 2019-09-19 15:01:50 2019-09-19 15:19:41 t 1 1 100220 451 0.00 2019-09-19 15:34:19 2019-09-19 15:41:28 t 1 1 100225 451 0.00 2019-09-19 15:46:47 2019-09-19 15:47:31 t 1 1 100228 420 0.00 2019-09-19 15:48:28 2019-09-19 15:53:28 t 1 1 100229 220 0.00 2019-09-19 15:52:13 2019-09-19 15:54:30 t 1 1 100233 379 0.00 2019-09-19 14:13:54 2019-09-19 15:58:40 t 1 1 100235 420 0.00 2019-09-19 15:53:28 2019-09-19 16:02:20 t 1 1 99978 445 0.00 2019-09-18 23:22:23 2019-09-18 23:25:21 t 1 1 99983 327 0.00 2019-09-18 23:27:17 2019-09-18 23:28:40 t 1 1 99985 327 0.00 2019-09-18 23:34:09 2019-09-18 23:34:35 t 1 1 99991 327 0.00 2019-09-18 23:46:20 2019-09-18 23:46:46 t 1 1 99992 327 0.00 2019-09-18 23:47:25 2019-09-18 23:47:56 t 1 1 99994 445 0.00 2019-09-18 23:27:51 2019-09-18 23:53:03 t 1 1 100002 327 0.00 2019-09-19 00:11:37 2019-09-19 00:12:05 t 1 1 100007 327 0.00 2019-09-19 00:18:35 2019-09-19 00:19:05 t 1 1 100012 451 0.00 2019-09-19 00:14:33 2019-09-19 00:39:22 t 1 1 100014 451 0.00 2019-09-19 00:39:22 2019-09-19 00:47:20 t 1 1 100015 451 0.00 2019-09-19 00:47:20 2019-09-19 00:54:30 t 1 1 100017 451 0.00 2019-09-19 00:54:30 2019-09-19 01:10:51 t 1 1 100019 468 0.00 2019-09-19 01:17:50 2019-09-19 02:04:05 t 1 1 100021 468 0.00 2019-09-19 02:24:28 2019-09-19 02:57:47 t 1 1 100023 468 0.00 2019-09-19 02:57:47 2019-09-19 03:16:32 t 1 1 100028 420 0.00 2019-09-19 06:03:31 2019-09-19 06:07:41 t 1 1 100029 311 0.00 2019-09-18 23:56:51 2019-09-19 06:09:14 t 1 2 100030 420 0.00 2019-09-19 06:07:47 2019-09-19 06:12:59 t 1 1 100031 420 0.00 2019-09-19 06:12:59 2019-09-19 06:19:06 t 1 1 100035 420 0.00 2019-09-19 06:29:24 2019-09-19 06:33:56 t 1 1 100038 220 0.00 2019-09-19 07:45:22 2019-09-19 07:50:43 t 1 1 100043 412 0.00 2019-09-18 22:25:46 2019-09-19 08:22:41 t 1 1 100044 306 0.00 2019-09-19 08:20:48 2019-09-19 08:25:33 t 1 1 100048 432 0.00 2019-09-19 08:40:25 2019-09-19 09:00:59 t 1 1 100050 400 0.00 2019-09-19 09:12:11 2019-09-19 09:15:07 t 1 1 100051 220 0.00 2019-09-19 09:10:08 2019-09-19 09:25:42 t 1 1 100057 474 0.00 2019-09-19 09:54:06 2019-09-19 09:54:08 t 1 2 100058 474 0.00 2019-09-19 09:54:24 2019-09-19 09:54:27 t 1 2 100060 296 0.00 2019-09-19 09:48:46 2019-09-19 09:58:09 t 1 2 100062 432 0.00 2019-09-19 10:01:20 2019-09-19 10:01:45 t 1 1 100064 464 0.00 2019-09-19 10:10:29 2019-09-19 10:10:33 t 1 1 100069 432 0.00 2019-09-19 10:17:20 2019-09-19 10:17:49 t 1 1 100071 220 0.00 2019-09-19 10:19:55 2019-09-19 10:23:16 t 1 2 100077 432 0.00 2019-09-19 10:28:32 2019-09-19 10:28:38 t 1 1 100078 432 0.00 2019-09-19 10:30:51 2019-09-19 10:31:24 t 1 1 100088 472 0.00 2019-09-19 10:44:02 2019-09-19 10:52:27 t 1 2 100089 375 0.00 2019-09-19 10:46:21 2019-09-19 10:53:37 t 1 1 100091 464 0.00 2019-09-19 10:59:57 2019-09-19 11:02:21 t 1 1 100094 472 0.00 2019-09-19 10:55:17 2019-09-19 11:05:44 t 1 2 100097 375 0.00 2019-09-19 11:11:44 2019-09-19 11:12:22 t 1 1 100098 375 0.00 2019-09-19 11:12:22 2019-09-19 11:13:43 t 1 1 100100 472 0.00 2019-09-19 11:11:41 2019-09-19 11:14:55 t 1 2 100103 306 0.00 2019-09-19 11:18:39 2019-09-19 11:20:09 t 1 1 100105 375 0.00 2019-09-19 11:19:31 2019-09-19 11:25:59 t 1 1 100108 474 0.00 2019-09-19 11:32:39 2019-09-19 11:34:58 t 1 1 100113 375 0.00 2019-09-19 11:26:14 2019-09-19 11:48:33 t 1 1 100117 220 0.00 2019-09-19 11:48:44 2019-09-19 11:53:33 t 1 1 100119 220 0.00 2019-09-19 11:54:14 2019-09-19 11:54:24 t 1 1 100122 412 0.00 2019-09-19 08:22:41 2019-09-19 11:58:35 t 1 1 100125 470 0.00 2019-09-19 09:03:59 2019-09-19 12:06:24 t 1 1 100128 375 0.00 2019-09-19 12:09:11 2019-09-19 12:12:14 t 1 1 100130 375 0.00 2019-09-19 12:12:19 2019-09-19 12:15:38 t 1 1 100131 220 0.00 2019-09-19 12:11:51 2019-09-19 12:18:14 t 1 2 100132 375 0.00 2019-09-19 12:15:48 2019-09-19 12:19:59 t 1 1 100134 327 0.00 2019-09-19 12:09:02 2019-09-19 12:32:34 t 1 1 100139 379 0.00 2019-09-19 12:52:53 2019-09-19 12:54:03 t 1 1 100143 375 0.00 2019-09-19 12:46:08 2019-09-19 13:00:17 t 1 1 100146 327 0.00 2019-09-19 13:01:18 2019-09-19 13:02:00 t 1 1 100147 375 0.00 2019-09-19 13:00:21 2019-09-19 13:02:35 t 1 1 100150 470 0.00 2019-09-19 12:37:03 2019-09-19 13:13:12 t 1 1 100153 306 0.00 2019-09-19 12:19:15 2019-09-19 13:18:34 t 1 1 100156 456 0.00 2019-09-19 13:31:51 2019-09-19 13:33:32 t 1 1 100161 464 0.00 2019-09-19 13:45:02 2019-09-19 13:46:33 t 1 1 100165 432 0.00 2019-09-19 13:45:36 2019-09-19 13:49:27 t 1 1 100166 451 0.00 2019-09-19 13:41:44 2019-09-19 13:50:03 t 1 1 100167 464 0.00 2019-09-19 13:50:13 2019-09-19 13:51:22 t 1 1 100171 420 0.00 2019-09-19 13:49:44 2019-09-19 13:56:00 t 1 1 100174 420 0.00 2019-09-19 13:56:00 2019-09-19 13:59:12 t 1 1 100175 375 0.00 2019-09-19 13:03:50 2019-09-19 14:03:27 t 1 1 100186 375 0.00 2019-09-19 14:11:07 2019-09-19 14:16:51 t 1 1 100187 470 0.00 2019-09-19 14:11:55 2019-09-19 14:26:07 t 1 1 100189 375 0.00 2019-09-19 14:16:52 2019-09-19 14:28:33 t 1 1 100192 395 0.00 2019-09-19 12:10:14 2019-09-19 14:33:42 t 1 2 100201 290 0.00 2019-09-19 14:55:18 2019-09-19 14:55:19 t 1 2 100209 290 0.00 2019-09-19 15:13:34 2019-09-19 15:13:35 t 1 2 100211 412 0.00 2019-09-19 15:12:41 2019-09-19 15:13:58 t 1 1 100212 290 0.00 2019-09-19 15:14:42 2019-09-19 15:14:42 t 1 2 100216 290 0.00 2019-09-19 15:17:30 2019-09-19 15:17:31 t 1 2 100223 220 0.00 2019-09-19 15:41:54 2019-09-19 15:45:39 t 1 1 100224 451 0.00 2019-09-19 15:41:36 2019-09-19 15:46:47 t 1 1 100227 470 0.00 2019-09-19 15:41:28 2019-09-19 15:51:27 t 1 1 100230 220 0.00 2019-09-19 15:55:57 2019-09-19 15:57:35 t 1 1 100232 220 0.00 2019-09-19 15:57:35 2019-09-19 15:58:39 t 1 1 100234 470 0.00 2019-09-19 15:51:27 2019-09-19 16:00:23 t 1 1 100241 451 0.00 2019-09-19 15:47:30 2019-09-19 16:17:52 t 1 1 100244 451 0.00 2019-09-19 16:17:52 2019-09-19 16:23:54 t 1 1 100246 445 0.00 2019-09-19 15:05:08 2019-09-19 16:26:57 t 1 1 100254 385 0.00 2019-09-19 16:36:13 2019-09-19 16:36:13 f 1 2 100259 461 0.00 2019-09-19 16:36:32 2019-09-19 16:40:24 t 1 2 100263 306 0.00 2019-09-19 16:42:37 2019-09-19 16:47:00 t 1 1 100264 306 0.00 2019-09-19 16:53:00 2019-09-19 16:54:32 t 1 1 100265 470 0.00 2019-09-19 16:38:24 2019-09-19 16:57:30 t 1 1 100270 385 0.00 2019-09-19 17:04:27 2019-09-19 17:04:27 f 1 2 100273 461 0.00 2019-09-19 17:05:24 2019-09-19 17:05:27 t 1 2 100282 470 0.00 2019-09-19 17:30:00 2019-09-19 17:35:05 t 1 1 100290 288 0.00 2019-09-19 17:37:24 2019-09-19 17:52:03 t 1 1 100292 464 0.00 2019-09-19 17:40:17 2019-09-19 17:56:00 t 1 1 100294 468 0.00 2019-09-19 16:50:42 2019-09-19 18:04:23 t 1 1 100299 311 0.00 2019-09-19 18:13:55 2019-09-19 18:15:18 t 1 2 100300 432 0.00 2019-09-19 17:53:03 2019-09-19 18:24:54 t 1 1 100302 432 0.00 2019-09-19 18:24:54 2019-09-19 18:46:50 t 1 1 100309 432 0.00 2019-09-19 18:54:12 2019-09-19 18:54:39 t 1 1 100310 288 0.00 2019-09-19 18:51:12 2019-09-19 18:57:38 t 1 1 100315 432 0.00 2019-09-19 19:08:44 2019-09-19 19:08:53 t 1 1 100318 432 0.00 2019-09-19 19:11:38 2019-09-19 19:12:12 t 1 1 100320 432 0.00 2019-09-19 19:14:21 2019-09-19 19:14:45 t 1 1 100322 432 0.00 2019-09-19 19:30:26 2019-09-19 19:31:02 t 1 1 100032 420 0.00 2019-09-19 06:19:06 2019-09-19 06:23:09 t 1 1 100045 379 0.00 2019-09-19 08:14:14 2019-09-19 08:26:26 t 1 1 100046 432 0.00 2019-09-19 08:28:19 2019-09-19 08:39:23 t 1 1 100047 306 0.00 2019-09-19 08:40:35 2019-09-19 08:45:04 t 1 1 100053 432 0.00 2019-09-19 09:44:39 2019-09-19 09:46:52 t 1 1 100054 306 0.00 2019-09-19 09:47:01 2019-09-19 09:49:12 t 1 1 100055 432 0.00 2019-09-19 09:48:51 2019-09-19 09:52:09 t 1 1 100056 432 0.00 2019-09-19 09:52:46 2019-09-19 09:53:04 t 1 1 100059 432 0.00 2019-09-19 09:53:39 2019-09-19 09:57:47 t 1 1 100065 432 0.00 2019-09-19 10:11:38 2019-09-19 10:12:08 t 1 1 100066 464 0.00 2019-09-19 10:10:39 2019-09-19 10:13:51 t 1 1 100067 432 0.00 2019-09-19 10:15:43 2019-09-19 10:15:52 t 1 1 100068 464 0.00 2019-09-19 10:13:57 2019-09-19 10:16:57 t 1 1 100070 451 0.00 2019-09-19 09:33:32 2019-09-19 10:18:44 t 1 1 100072 432 0.00 2019-09-19 10:22:59 2019-09-19 10:23:53 t 1 1 100073 432 0.00 2019-09-19 10:24:22 2019-09-19 10:24:32 t 1 1 100074 464 0.00 2019-09-19 10:22:42 2019-09-19 10:25:21 t 1 1 100082 220 0.00 2019-09-19 10:23:36 2019-09-19 10:40:00 t 1 2 100083 432 0.00 2019-09-19 10:35:47 2019-09-19 10:41:13 t 1 1 100086 474 0.00 2019-09-19 10:48:39 2019-09-19 10:49:34 t 1 1 100090 375 0.00 2019-09-19 10:55:06 2019-09-19 11:00:49 t 1 1 100092 375 0.00 2019-09-19 11:01:26 2019-09-19 11:03:47 t 1 1 100093 474 0.00 2019-09-19 10:52:49 2019-09-19 11:04:42 t 1 1 100095 462 0.00 2019-09-19 10:48:39 2019-09-19 11:06:40 t 1 1 100099 375 0.00 2019-09-19 11:13:10 2019-09-19 11:14:23 t 1 1 100102 375 0.00 2019-09-19 11:15:01 2019-09-19 11:18:16 t 1 1 100104 306 0.00 2019-09-19 11:23:12 2019-09-19 11:25:56 t 1 1 100106 474 0.00 2019-09-19 11:05:06 2019-09-19 11:27:39 t 1 1 100107 474 0.00 2019-09-19 11:27:39 2019-09-19 11:31:00 t 1 1 100110 456 0.00 2019-09-19 11:29:12 2019-09-19 11:42:08 t 1 1 100111 220 0.00 2019-09-19 11:20:54 2019-09-19 11:45:33 t 1 1 100120 220 0.00 2019-09-19 11:54:24 2019-09-19 11:54:38 t 1 1 100121 296 0.00 2019-09-19 11:54:13 2019-09-19 11:55:33 t 1 2 100124 375 0.00 2019-09-19 11:53:29 2019-09-19 12:05:38 t 1 1 100126 327 0.00 2019-09-19 12:06:21 2019-09-19 12:06:57 t 1 1 100129 470 0.00 2019-09-19 12:06:24 2019-09-19 12:14:38 t 1 1 100133 375 0.00 2019-09-19 12:21:16 2019-09-19 12:22:41 t 1 1 100136 392 0.00 2019-09-19 12:42:54 2019-09-19 12:42:54 t 1 2 100137 375 0.00 2019-09-19 12:22:40 2019-09-19 12:46:08 t 1 1 100140 461 0.00 2019-09-19 12:56:04 2019-09-19 12:56:06 t 1 2 100145 220 0.00 2019-09-19 12:58:40 2019-09-19 13:01:58 t 1 1 100148 327 0.00 2019-09-19 13:03:02 2019-09-19 13:03:11 t 1 1 100152 327 0.00 2019-09-19 13:13:33 2019-09-19 13:15:16 t 1 1 100154 327 0.00 2019-09-19 13:25:20 2019-09-19 13:26:02 t 1 1 100155 470 0.00 2019-09-19 13:13:12 2019-09-19 13:27:57 t 1 1 100159 220 0.00 2019-09-19 13:02:00 2019-09-19 13:43:30 t 1 1 100160 432 0.00 2019-09-19 13:37:00 2019-09-19 13:46:30 t 1 1 100163 470 0.00 2019-09-19 13:27:57 2019-09-19 13:48:57 t 1 1 100164 464 0.00 2019-09-19 13:47:52 2019-09-19 13:49:22 t 1 1 100172 306 0.00 2019-09-19 13:39:37 2019-09-19 13:56:42 t 1 1 100176 375 0.00 2019-09-19 14:04:03 2019-09-19 14:04:10 t 1 1 100178 464 0.00 2019-09-19 14:06:25 2019-09-19 14:06:45 t 1 1 100180 420 0.00 2019-09-19 14:05:27 2019-09-19 14:08:04 t 1 1 100184 400 0.00 2019-09-19 14:00:14 2019-09-19 14:14:04 t 1 1 100188 470 0.00 2019-09-19 14:26:06 2019-09-19 14:27:11 t 1 1 100190 470 0.00 2019-09-19 14:28:30 2019-09-19 14:29:39 t 1 1 100191 220 0.00 2019-09-19 14:17:43 2019-09-19 14:33:40 t 1 1 100193 470 0.00 2019-09-19 14:37:50 2019-09-19 14:39:34 t 1 1 100194 420 0.00 2019-09-19 14:36:10 2019-09-19 14:40:37 t 1 1 100195 420 0.00 2019-09-19 14:40:37 2019-09-19 14:49:46 t 1 1 100196 470 0.00 2019-09-19 14:38:01 2019-09-19 14:50:26 t 1 1 100199 290 0.00 2019-09-19 14:52:56 2019-09-19 14:53:36 t 1 2 100200 290 0.00 2019-09-19 14:53:42 2019-09-19 14:54:36 t 1 2 100202 470 0.00 2019-09-19 14:50:26 2019-09-19 14:57:14 t 1 1 100204 412 0.00 2019-09-19 14:59:03 2019-09-19 15:09:48 t 1 1 100205 290 0.00 2019-09-19 15:11:57 2019-09-19 15:11:57 t 1 2 100210 290 0.00 2019-09-19 15:13:44 2019-09-19 15:13:45 t 1 2 100217 306 0.00 2019-09-19 14:16:25 2019-09-19 15:18:21 t 1 1 100219 400 0.00 2019-09-19 15:28:30 2019-09-19 15:29:41 t 1 1 100221 470 0.00 2019-09-19 15:19:41 2019-09-19 15:41:28 t 1 1 100222 220 0.00 2019-09-19 15:28:25 2019-09-19 15:41:51 t 1 1 100226 220 0.00 2019-09-19 15:45:51 2019-09-19 15:51:23 t 1 1 100231 306 0.00 2019-09-19 15:52:58 2019-09-19 15:58:25 t 1 1 100237 395 0.00 2019-09-19 15:56:19 2019-09-19 16:13:51 t 1 2 100239 379 0.00 2019-09-19 16:05:00 2019-09-19 16:15:54 t 1 1 100242 470 0.00 2019-09-19 16:00:23 2019-09-19 16:21:14 t 1 1 100243 220 0.00 2019-09-19 16:22:04 2019-09-19 16:23:34 t 1 1 100249 379 0.00 2019-09-19 16:15:54 2019-09-19 16:30:44 t 1 1 100250 445 0.00 2019-09-19 16:27:23 2019-09-19 16:32:06 t 1 1 100251 385 0.00 2019-09-19 16:32:41 2019-09-19 16:32:41 f 1 2 100252 306 0.00 2019-09-19 16:29:08 2019-09-19 16:33:49 t 1 1 100258 379 0.00 2019-09-19 16:33:03 2019-09-19 16:40:17 t 1 1 100262 468 0.00 2019-09-19 16:44:53 2019-09-19 16:46:42 t 1 1 100266 220 0.00 2019-09-19 16:39:26 2019-09-19 16:58:33 t 1 1 100267 412 0.00 2019-09-19 16:56:31 2019-09-19 16:59:35 t 1 1 100268 412 0.00 2019-09-19 16:59:35 2019-09-19 17:00:47 t 1 1 100271 385 0.00 2019-09-19 17:04:45 2019-09-19 17:04:45 f 1 2 100272 385 0.00 2019-09-19 17:04:59 2019-09-19 17:04:59 f 1 2 100275 306 0.00 2019-09-19 17:10:37 2019-09-19 17:17:15 t 1 1 100276 432 0.00 2019-09-19 17:11:25 2019-09-19 17:19:03 t 1 1 100277 432 0.00 2019-09-19 17:18:09 2019-09-19 17:21:06 t 1 1 100278 296 0.00 2019-09-19 17:19:58 2019-09-19 17:22:23 t 1 2 100279 288 0.00 2019-09-19 17:09:41 2019-09-19 17:26:07 t 1 1 100280 445 0.00 2019-09-19 16:31:48 2019-09-19 17:31:08 t 1 1 100281 400 0.00 2019-09-19 17:04:47 2019-09-19 17:34:30 t 1 1 100285 445 0.00 2019-09-19 17:31:23 2019-09-19 17:40:50 t 1 1 100289 432 0.00 2019-09-19 17:44:30 2019-09-19 17:51:15 t 1 1 100295 451 0.00 2019-09-19 17:57:55 2019-09-19 18:05:34 t 1 1 100296 220 0.00 2019-09-19 18:04:06 2019-09-19 18:12:12 t 1 1 100297 311 0.00 2019-09-19 18:09:29 2019-09-19 18:12:28 t 1 2 100305 412 0.00 2019-09-19 18:21:02 2019-09-19 18:49:40 t 1 1 100308 288 0.00 2019-09-19 18:36:56 2019-09-19 18:50:50 t 1 1 100312 432 0.00 2019-09-19 18:57:16 2019-09-19 19:02:52 t 1 1 100313 432 0.00 2019-09-19 19:04:20 2019-09-19 19:05:59 t 1 1 100316 432 0.00 2019-09-19 19:10:06 2019-09-19 19:10:29 t 1 1 100325 400 0.00 2019-09-19 19:27:56 2019-09-19 19:35:11 t 1 1 100327 432 0.00 2019-09-19 19:33:41 2019-09-19 19:39:54 t 1 1 100236 379 0.00 2019-09-19 15:58:40 2019-09-19 16:05:00 t 1 1 100238 420 0.00 2019-09-19 16:02:29 2019-09-19 16:14:23 t 1 1 100240 306 0.00 2019-09-19 16:04:49 2019-09-19 16:15:56 t 1 1 100245 306 0.00 2019-09-19 16:15:56 2019-09-19 16:25:45 t 1 1 100247 220 0.00 2019-09-19 12:17:44 2019-09-19 16:29:07 t 1 2 100248 470 0.00 2019-09-19 16:21:14 2019-09-19 16:30:02 t 1 1 100253 385 0.00 2019-09-19 16:35:32 2019-09-19 16:35:32 f 1 2 100255 432 0.00 2019-09-19 16:04:06 2019-09-19 16:37:41 t 1 1 100256 470 0.00 2019-09-19 16:30:02 2019-09-19 16:38:24 t 1 1 100257 432 0.00 2019-09-19 16:37:57 2019-09-19 16:39:14 t 1 1 100260 412 0.00 2019-09-19 16:15:41 2019-09-19 16:40:27 t 1 1 100261 379 0.00 2019-09-19 16:40:27 2019-09-19 16:41:53 t 1 1 100269 220 0.00 2019-09-19 16:45:48 2019-09-19 17:01:49 t 1 1 100274 470 0.00 2019-09-19 17:08:34 2019-09-19 17:10:48 t 1 1 100283 288 0.00 2019-09-19 17:26:07 2019-09-19 17:36:48 t 1 1 100284 451 0.00 2019-09-19 17:23:49 2019-09-19 17:38:09 t 1 1 100286 445 0.00 2019-09-19 17:40:48 2019-09-19 17:42:02 t 1 1 100287 432 0.00 2019-09-19 17:20:42 2019-09-19 17:44:30 t 1 1 100288 445 0.00 2019-09-19 17:42:20 2019-09-19 17:48:37 t 1 1 100291 432 0.00 2019-09-19 17:51:15 2019-09-19 17:53:03 t 1 1 100293 464 0.00 2019-09-19 17:59:35 2019-09-19 18:00:09 t 1 1 100298 220 0.00 2019-09-19 18:12:12 2019-09-19 18:13:36 t 1 1 100301 288 0.00 2019-09-19 17:52:08 2019-09-19 18:36:23 t 1 1 100303 468 0.00 2019-09-19 18:04:23 2019-09-19 18:47:14 t 1 1 100304 445 0.00 2019-09-19 17:48:54 2019-09-19 18:49:29 t 1 1 100306 220 0.00 2019-09-19 18:25:42 2019-09-19 18:50:10 t 1 1 100307 432 0.00 2019-09-19 18:47:55 2019-09-19 18:50:16 t 1 1 100311 468 0.00 2019-09-19 18:47:14 2019-09-19 18:59:32 t 1 1 100314 432 0.00 2019-09-19 19:08:17 2019-09-19 19:08:29 t 1 1 100317 288 0.00 2019-09-19 18:57:57 2019-09-19 19:11:28 t 1 1 100319 339 0.00 2019-09-19 12:21:54 2019-09-19 19:14:19 t 1 2 100321 432 0.00 2019-09-19 19:20:04 2019-09-19 19:20:38 t 1 1 100323 470 0.00 2019-09-19 18:27:27 2019-09-19 19:31:12 t 1 1 100324 461 0.00 2019-09-19 18:04:26 2019-09-19 19:34:31 t 1 2 100333 432 0.00 2019-09-19 19:48:34 2019-09-19 19:49:12 t 1 1 100337 432 0.00 2019-09-19 19:50:29 2019-09-19 19:51:19 t 1 1 100342 395 0.00 2019-09-19 19:00:17 2019-09-19 20:01:36 t 1 2 100346 420 0.00 2019-09-19 20:05:12 2019-09-19 20:06:01 t 1 1 100349 296 0.00 2019-09-19 20:07:40 2019-09-19 20:09:03 t 1 2 100355 432 0.00 2019-09-19 20:05:48 2019-09-19 20:20:44 t 1 1 100356 430 0.00 2019-09-19 20:06:43 2019-09-19 20:22:44 t 1 1 100367 470 0.00 2019-09-19 20:20:23 2019-09-19 20:39:58 t 1 1 100368 220 0.00 2019-09-19 20:22:32 2019-09-19 20:46:44 t 1 1 100370 468 0.00 2019-09-19 19:39:28 2019-09-19 20:47:16 t 1 1 100375 445 0.00 2019-09-19 20:37:56 2019-09-19 20:59:21 t 1 1 100379 420 0.00 2019-09-19 20:06:00 2019-09-19 21:08:02 t 1 1 100380 470 0.00 2019-09-19 20:54:41 2019-09-19 21:10:41 t 1 1 100381 445 0.00 2019-09-19 21:01:21 2019-09-19 21:11:33 t 1 1 100383 445 0.00 2019-09-19 21:11:34 2019-09-19 21:15:19 t 1 1 100384 451 0.00 2019-09-19 21:04:04 2019-09-19 21:20:40 t 1 1 100389 247 0.00 2019-09-19 21:10:28 2019-09-19 21:29:35 t 1 2 100394 395 0.00 2019-09-19 20:23:24 2019-09-19 21:35:58 t 1 2 100396 420 0.00 2019-09-19 21:26:53 2019-09-19 21:40:25 t 1 1 100399 468 0.00 2019-09-19 21:32:41 2019-09-19 21:44:09 t 1 1 100401 412 0.00 2019-09-19 21:44:08 2019-09-19 21:45:43 t 1 1 100407 375 0.00 2019-09-19 21:47:29 2019-09-19 21:58:19 t 1 1 100408 327 0.00 2019-09-19 21:58:35 2019-09-19 22:00:24 t 1 1 100409 375 0.00 2019-09-19 21:59:48 2019-09-19 22:01:32 t 1 1 100413 464 0.00 2019-09-19 21:57:19 2019-09-19 22:07:35 t 1 1 100418 430 0.00 2019-09-19 22:03:00 2019-09-19 22:13:54 t 1 1 100421 220 0.00 2019-09-19 22:15:41 2019-09-19 22:16:57 t 1 1 100422 327 0.00 2019-09-19 22:06:50 2019-09-19 22:18:28 t 1 1 100425 432 0.00 2019-09-19 22:24:34 2019-09-19 22:26:41 t 1 1 100427 470 0.00 2019-09-19 22:06:59 2019-09-19 22:27:38 t 1 1 100434 451 0.00 2019-09-19 22:32:21 2019-09-19 22:38:46 t 1 1 100441 412 0.00 2019-09-19 22:43:15 2019-09-19 22:44:13 t 1 1 100442 445 0.00 2019-09-19 22:43:43 2019-09-19 22:45:01 t 1 1 100443 464 0.00 2019-09-19 22:47:41 2019-09-19 22:49:22 t 1 1 100446 306 0.00 2019-09-19 22:58:00 2019-09-19 23:00:33 t 1 1 100447 445 0.00 2019-09-19 22:45:03 2019-09-19 23:02:14 t 1 1 100448 395 0.00 2019-09-19 22:11:40 2019-09-19 23:04:01 t 1 2 100450 470 0.00 2019-09-19 22:37:45 2019-09-19 23:06:18 t 1 1 100454 375 0.00 2019-09-19 23:19:47 2019-09-19 23:20:01 t 1 1 100458 220 0.00 2019-09-19 23:29:30 2019-09-19 23:36:03 t 1 1 100467 451 0.00 2019-09-19 23:46:46 2019-09-20 00:08:51 t 1 1 100469 432 0.00 2019-09-20 00:01:04 2019-09-20 00:18:30 t 1 1 100472 411 0.00 2019-09-19 10:58:17 2019-09-20 00:30:57 t 1 1 100479 412 0.00 2019-09-20 00:41:03 2019-09-20 00:54:19 t 1 1 100480 412 0.00 2019-09-20 00:54:18 2019-09-20 00:56:08 t 1 1 100490 456 0.00 2019-09-20 02:20:04 2019-09-20 02:33:29 t 1 1 100493 456 0.00 2019-09-20 02:41:34 2019-09-20 02:41:34 f 1 1 100496 456 0.00 2019-09-20 02:41:52 2019-09-20 02:53:21 t 1 1 100498 445 0.00 2019-09-19 23:40:20 2019-09-20 03:10:53 t 1 1 100499 445 0.00 2019-09-20 03:11:18 2019-09-20 03:20:07 t 1 1 100500 464 0.00 2019-09-20 04:08:11 2019-09-20 04:14:22 t 1 1 100503 220 0.00 2019-09-20 05:44:01 2019-09-20 05:48:10 t 1 1 100507 420 0.00 2019-09-20 06:40:41 2019-09-20 07:05:33 t 1 1 100515 402 0.00 2019-09-20 08:01:56 2019-09-20 08:17:01 t 1 2 100516 412 0.00 2019-09-20 08:10:41 2019-09-20 08:28:31 t 1 1 100524 445 0.00 2019-09-20 08:48:05 2019-09-20 09:14:06 t 1 1 100528 306 0.00 2019-09-20 09:24:54 2019-09-20 09:28:25 t 1 1 100531 220 0.00 2019-09-20 07:37:05 2019-09-20 09:57:23 t 1 1 100533 461 0.00 2019-09-20 09:20:17 2019-09-20 10:00:22 t 1 2 100537 220 0.00 2019-09-20 10:00:27 2019-09-20 10:10:55 t 1 1 100541 327 0.00 2019-09-20 10:27:17 2019-09-20 10:35:29 t 1 1 100545 327 0.00 2019-09-20 10:52:15 2019-09-20 10:53:39 t 1 1 100551 306 0.00 2019-09-20 11:06:32 2019-09-20 11:09:18 t 1 1 100552 400 0.00 2019-09-20 09:12:44 2019-09-20 11:11:35 t 1 1 100556 412 0.00 2019-09-20 11:22:20 2019-09-20 11:35:44 t 1 1 100558 432 0.00 2019-09-20 11:32:07 2019-09-20 11:36:29 t 1 1 100560 402 0.00 2019-09-20 11:39:08 2019-09-20 11:40:09 t 1 2 100563 327 0.00 2019-09-20 11:08:27 2019-09-20 11:54:53 t 1 1 100564 461 0.00 2019-09-20 11:26:48 2019-09-20 11:58:05 t 1 2 100567 412 0.00 2019-09-20 11:59:56 2019-09-20 12:01:23 t 1 1 100569 327 0.00 2019-09-20 11:54:53 2019-09-20 12:08:16 t 1 1 100570 327 0.00 2019-09-20 12:10:05 2019-09-20 12:10:50 t 1 1 100571 468 0.00 2019-09-20 12:07:54 2019-09-20 12:12:22 t 1 1 100326 468 0.00 2019-09-19 18:59:32 2019-09-19 19:39:28 t 1 1 100328 456 0.00 2019-09-19 19:24:56 2019-09-19 19:40:06 t 1 1 100329 306 0.00 2019-09-19 19:28:07 2019-09-19 19:40:57 t 1 1 100334 412 0.00 2019-09-19 19:47:40 2019-09-19 19:50:23 t 1 1 100340 470 0.00 2019-09-19 19:44:05 2019-09-19 19:57:40 t 1 1 100344 420 0.00 2019-09-19 19:58:10 2019-09-19 20:05:03 t 1 1 100347 430 0.00 2019-09-19 19:43:33 2019-09-19 20:06:43 t 1 1 100348 306 0.00 2019-09-19 19:55:52 2019-09-19 20:08:52 t 1 1 100350 220 0.00 2019-09-19 19:31:43 2019-09-19 20:10:00 t 1 1 100352 445 0.00 2019-09-19 19:51:09 2019-09-19 20:14:11 t 1 1 100353 296 0.00 2019-09-19 20:08:37 2019-09-19 20:18:01 t 1 2 100357 464 0.00 2019-09-19 20:22:32 2019-09-19 20:23:56 t 1 1 100362 306 0.00 2019-09-19 20:28:47 2019-09-19 20:31:15 t 1 1 100364 327 0.00 2019-09-19 20:36:50 2019-09-19 20:38:49 t 1 1 100366 451 0.00 2019-09-19 20:27:21 2019-09-19 20:39:54 t 1 1 100373 400 0.00 2019-09-19 20:54:21 2019-09-19 20:55:46 t 1 1 100376 296 0.00 2019-09-19 20:48:40 2019-09-19 21:02:04 t 1 2 100377 451 0.00 2019-09-19 20:47:38 2019-09-19 21:04:04 t 1 1 100382 400 0.00 2019-09-19 21:12:35 2019-09-19 21:14:08 t 1 1 100385 400 0.00 2019-09-19 21:19:53 2019-09-19 21:22:05 t 1 1 100387 420 0.00 2019-09-19 21:08:02 2019-09-19 21:26:53 t 1 1 100388 220 0.00 2019-09-19 20:35:12 2019-09-19 21:27:43 t 1 2 100391 220 0.00 2019-09-19 21:24:22 2019-09-19 21:30:46 t 1 1 100395 306 0.00 2019-09-19 21:34:17 2019-09-19 21:37:07 t 1 1 100397 470 0.00 2019-09-19 21:10:41 2019-09-19 21:40:46 t 1 1 100398 412 0.00 2019-09-19 21:39:55 2019-09-19 21:42:00 t 1 1 100404 412 0.00 2019-09-19 21:47:21 2019-09-19 21:48:05 t 1 1 100405 220 0.00 2019-09-19 21:29:42 2019-09-19 21:48:46 t 1 1 100406 464 0.00 2019-09-19 21:52:38 2019-09-19 21:57:11 t 1 1 100412 470 0.00 2019-09-19 21:40:46 2019-09-19 22:06:59 t 1 1 100414 375 0.00 2019-09-19 22:05:07 2019-09-19 22:08:07 t 1 1 100415 372 0.00 2019-09-19 22:08:28 2019-09-19 22:09:11 t 1 2 100416 375 0.00 2019-09-19 22:08:07 2019-09-19 22:09:25 t 1 1 100417 472 0.00 2019-09-19 22:02:27 2019-09-19 22:11:37 t 1 2 100419 445 0.00 2019-09-19 21:35:11 2019-09-19 22:13:59 t 1 1 100423 432 0.00 2019-09-19 20:35:45 2019-09-19 22:23:59 t 1 1 100424 400 0.00 2019-09-19 22:07:10 2019-09-19 22:24:43 t 1 1 100428 220 0.00 2019-09-19 22:21:11 2019-09-19 22:28:20 t 1 1 100432 432 0.00 2019-09-19 22:32:22 2019-09-19 22:32:49 t 1 1 100433 432 0.00 2019-09-19 22:38:03 2019-09-19 22:38:41 t 1 1 100436 432 0.00 2019-09-19 22:39:25 2019-09-19 22:39:59 t 1 1 100437 400 0.00 2019-09-19 22:38:50 2019-09-19 22:40:50 t 1 1 100438 432 0.00 2019-09-19 22:40:52 2019-09-19 22:41:16 t 1 1 100440 445 0.00 2019-09-19 22:33:22 2019-09-19 22:43:44 t 1 1 100445 379 0.00 2019-09-19 22:53:37 2019-09-19 22:58:36 t 1 1 100449 372 0.00 2019-09-19 22:09:20 2019-09-19 23:04:26 t 1 2 100451 400 0.00 2019-09-19 23:08:55 2019-09-19 23:10:43 t 1 1 100452 445 0.00 2019-09-19 23:02:13 2019-09-19 23:14:25 t 1 1 100455 306 0.00 2019-09-19 23:24:24 2019-09-19 23:28:23 t 1 1 100459 445 0.00 2019-09-19 23:28:51 2019-09-19 23:40:20 t 1 1 100460 464 0.00 2019-09-19 23:30:22 2019-09-19 23:44:30 t 1 1 100462 432 0.00 2019-09-19 23:29:44 2019-09-19 23:53:42 t 1 1 100465 470 0.00 2019-09-19 23:49:39 2019-09-20 00:07:15 t 1 1 100468 400 0.00 2019-09-19 23:13:58 2019-09-20 00:15:41 t 1 1 100471 400 0.00 2019-09-20 00:23:31 2019-09-20 00:28:36 t 1 1 100473 470 0.00 2019-09-20 00:13:07 2019-09-20 00:32:02 t 1 1 100475 412 0.00 2019-09-19 22:44:15 2019-09-20 00:38:47 t 1 1 100477 451 0.00 2019-09-20 00:40:20 2019-09-20 00:49:47 t 1 1 100482 412 0.00 2019-09-20 00:56:46 2019-09-20 00:58:33 t 1 1 100484 412 0.00 2019-09-20 00:58:23 2019-09-20 01:55:47 t 1 1 100487 468 0.00 2019-09-20 00:58:34 2019-09-20 02:14:14 t 1 1 100488 456 0.00 2019-09-20 02:18:47 2019-09-20 02:20:00 t 1 1 100489 372 0.00 2019-09-20 02:07:40 2019-09-20 02:26:53 t 1 2 100491 456 0.00 2019-09-20 02:33:44 2019-09-20 02:35:16 t 1 1 100494 395 0.00 2019-09-19 23:25:59 2019-09-20 02:49:46 t 1 2 100497 470 0.00 2019-09-20 02:57:54 2019-09-20 02:58:27 t 1 1 100501 220 0.00 2019-09-20 03:56:46 2019-09-20 04:17:10 t 1 1 100504 420 0.00 2019-09-20 06:23:25 2019-09-20 06:26:45 t 1 1 100506 420 0.00 2019-09-20 06:37:33 2019-09-20 06:40:28 t 1 1 100508 420 0.00 2019-09-20 07:13:41 2019-09-20 07:23:12 t 1 1 100510 420 0.00 2019-09-20 07:23:12 2019-09-20 07:40:22 t 1 1 100513 412 0.00 2019-09-20 01:55:47 2019-09-20 07:57:08 t 1 1 100514 412 0.00 2019-09-20 07:57:08 2019-09-20 08:02:05 t 1 1 100517 430 0.00 2019-09-20 08:32:31 2019-09-20 08:42:00 t 1 1 100518 445 0.00 2019-09-20 07:55:34 2019-09-20 08:44:46 t 1 1 100519 445 0.00 2019-09-20 08:44:49 2019-09-20 08:48:03 t 1 1 100525 420 0.00 2019-09-20 09:15:02 2019-09-20 09:15:06 t 1 1 100527 420 0.00 2019-09-20 09:15:15 2019-09-20 09:19:22 t 1 1 100529 472 0.00 2019-09-20 09:42:58 2019-09-20 09:45:40 t 1 2 100534 220 0.00 2019-09-20 09:37:20 2019-09-20 10:00:27 t 1 1 100542 461 0.00 2019-09-20 10:28:35 2019-09-20 10:38:40 t 1 2 100543 327 0.00 2019-09-20 10:43:48 2019-09-20 10:44:21 t 1 1 100544 327 0.00 2019-09-20 10:51:52 2019-09-20 10:52:56 t 1 1 100546 306 0.00 2019-09-20 10:45:49 2019-09-20 10:54:01 t 1 1 100549 327 0.00 2019-09-20 11:03:57 2019-09-20 11:05:36 t 1 1 100557 306 0.00 2019-09-20 11:33:09 2019-09-20 11:36:08 t 1 1 100565 412 0.00 2019-09-20 11:39:08 2019-09-20 11:59:56 t 1 1 100566 306 0.00 2019-09-20 11:39:09 2019-09-20 12:01:08 t 1 1 100576 306 0.00 2019-09-20 12:30:06 2019-09-20 12:31:46 t 1 1 100578 306 0.00 2019-09-20 12:32:20 2019-09-20 12:35:00 t 1 1 100579 220 0.00 2019-09-20 12:34:14 2019-09-20 12:37:34 t 1 2 100580 327 0.00 2019-09-20 12:19:22 2019-09-20 12:38:36 t 1 1 100581 327 0.00 2019-09-20 12:40:28 2019-09-20 12:41:24 t 1 1 100582 400 0.00 2019-09-20 12:30:12 2019-09-20 12:42:27 t 1 1 100585 430 0.00 2019-09-20 11:44:27 2019-09-20 12:45:16 t 1 1 100590 327 0.00 2019-09-20 12:50:04 2019-09-20 12:50:18 t 1 1 100592 464 0.00 2019-09-20 12:52:07 2019-09-20 12:52:34 t 1 1 100594 430 0.00 2019-09-20 12:45:16 2019-09-20 12:55:53 t 1 1 100595 306 0.00 2019-09-20 12:55:26 2019-09-20 12:56:15 t 1 1 100597 461 0.00 2019-09-20 12:19:47 2019-09-20 13:00:49 t 1 2 100599 311 0.00 2019-09-20 12:37:16 2019-09-20 13:02:39 t 1 2 100601 402 0.00 2019-09-20 11:42:54 2019-09-20 13:03:00 t 1 2 100603 432 0.00 2019-09-20 13:02:59 2019-09-20 13:03:17 t 1 1 100605 430 0.00 2019-09-20 13:02:35 2019-09-20 13:10:49 t 1 1 100606 468 0.00 2019-09-20 13:07:53 2019-09-20 13:11:15 t 1 1 100607 432 0.00 2019-09-20 13:13:11 2019-09-20 13:13:32 t 1 1 100612 327 0.00 2019-09-20 13:18:57 2019-09-20 13:19:27 t 1 1 100330 445 0.00 2019-09-19 18:49:40 2019-09-19 19:41:48 t 1 1 100331 470 0.00 2019-09-19 19:31:12 2019-09-19 19:44:05 t 1 1 100332 412 0.00 2019-09-19 19:43:55 2019-09-19 19:46:28 t 1 1 100335 432 0.00 2019-09-19 19:50:23 2019-09-19 19:50:24 t 1 1 100336 445 0.00 2019-09-19 19:42:15 2019-09-19 19:51:11 t 1 1 100338 424 0.00 2019-09-19 19:31:59 2019-09-19 19:53:20 t 1 2 100339 306 0.00 2019-09-19 19:49:34 2019-09-19 19:55:52 t 1 1 100341 420 0.00 2019-09-19 19:52:03 2019-09-19 19:58:10 t 1 1 100343 400 0.00 2019-09-19 19:54:57 2019-09-19 20:02:12 t 1 1 100345 432 0.00 2019-09-19 19:54:51 2019-09-19 20:05:49 t 1 1 100351 220 0.00 2019-09-19 20:00:14 2019-09-19 20:12:58 t 1 2 100354 470 0.00 2019-09-19 19:57:40 2019-09-19 20:20:23 t 1 1 100358 306 0.00 2019-09-19 20:22:04 2019-09-19 20:24:33 t 1 1 100359 474 0.00 2019-09-19 20:23:45 2019-09-19 20:25:19 t 1 1 100360 430 0.00 2019-09-19 20:22:44 2019-09-19 20:26:46 t 1 1 100361 400 0.00 2019-09-19 20:14:03 2019-09-19 20:27:52 t 1 1 100363 445 0.00 2019-09-19 20:14:11 2019-09-19 20:37:04 t 1 1 100365 474 0.00 2019-09-19 20:25:19 2019-09-19 20:39:54 t 1 1 100369 306 0.00 2019-09-19 20:42:05 2019-09-19 20:47:10 t 1 1 100371 451 0.00 2019-09-19 20:40:06 2019-09-19 20:47:38 t 1 1 100372 436 0.00 2019-09-19 20:52:49 2019-09-19 20:55:40 t 1 1 100374 430 0.00 2019-09-19 20:36:49 2019-09-19 20:56:10 t 1 1 100378 461 0.00 2019-09-19 21:07:31 2019-09-19 21:07:49 t 1 2 100386 468 0.00 2019-09-19 20:49:15 2019-09-19 21:24:36 t 1 1 100390 220 0.00 2019-09-19 20:51:48 2019-09-19 21:29:42 t 1 1 100392 306 0.00 2019-09-19 21:28:55 2019-09-19 21:33:53 t 1 1 100393 445 0.00 2019-09-19 21:15:29 2019-09-19 21:34:31 t 1 1 100400 420 0.00 2019-09-19 21:40:25 2019-09-19 21:45:25 t 1 1 100402 412 0.00 2019-09-19 21:45:43 2019-09-19 21:47:16 t 1 1 100403 400 0.00 2019-09-19 21:45:58 2019-09-19 21:47:30 t 1 1 100410 430 0.00 2019-09-19 20:56:10 2019-09-19 22:03:00 t 1 1 100411 375 0.00 2019-09-19 22:02:29 2019-09-19 22:03:47 t 1 1 100420 220 0.00 2019-09-19 21:34:44 2019-09-19 22:15:42 t 1 1 100426 220 0.00 2019-09-19 22:00:35 2019-09-19 22:26:52 t 1 1 100429 220 0.00 2019-09-19 22:28:32 2019-09-19 22:30:15 t 1 1 100430 451 0.00 2019-09-19 22:09:33 2019-09-19 22:32:21 t 1 1 100431 445 0.00 2019-09-19 22:13:58 2019-09-19 22:32:29 t 1 1 100435 412 0.00 2019-09-19 21:48:12 2019-09-19 22:39:34 t 1 1 100439 220 0.00 2019-09-19 22:38:09 2019-09-19 22:42:19 t 1 1 100444 375 0.00 2019-09-19 22:11:24 2019-09-19 22:57:51 t 1 1 100453 375 0.00 2019-09-19 22:58:02 2019-09-19 23:19:34 t 1 1 100456 445 0.00 2019-09-19 23:16:28 2019-09-19 23:28:52 t 1 1 100457 432 0.00 2019-09-19 22:57:36 2019-09-19 23:29:44 t 1 1 100461 470 0.00 2019-09-19 23:06:18 2019-09-19 23:49:39 t 1 1 100463 432 0.00 2019-09-19 23:57:16 2019-09-19 23:58:36 t 1 1 100464 456 0.00 2019-09-19 23:40:34 2019-09-20 00:02:19 t 1 1 100466 470 0.00 2019-09-20 00:07:15 2019-09-20 00:07:58 t 1 1 100470 432 0.00 2019-09-20 00:18:30 2019-09-20 00:27:07 t 1 1 100474 400 0.00 2019-09-20 00:28:35 2019-09-20 00:35:22 t 1 1 100476 470 0.00 2019-09-20 00:32:15 2019-09-20 00:39:55 t 1 1 100478 474 0.00 2019-09-20 00:51:25 2019-09-20 00:54:18 t 1 1 100481 412 0.00 2019-09-20 00:56:28 2019-09-20 00:56:46 t 1 1 100483 470 0.00 2019-09-20 00:42:03 2019-09-20 00:59:14 t 1 1 100485 400 0.00 2019-09-20 00:35:22 2019-09-20 02:00:22 t 1 1 100486 470 0.00 2019-09-20 02:02:18 2019-09-20 02:10:53 t 1 1 100492 468 0.00 2019-09-20 02:23:56 2019-09-20 02:39:46 t 1 1 100495 372 0.00 2019-09-20 02:27:10 2019-09-20 02:52:15 t 1 2 100502 220 0.00 2019-09-20 05:34:59 2019-09-20 05:35:57 t 1 1 100505 420 0.00 2019-09-20 06:26:45 2019-09-20 06:37:33 t 1 1 100509 445 0.00 2019-09-20 03:20:26 2019-09-20 07:35:03 t 1 1 100511 420 0.00 2019-09-20 07:40:22 2019-09-20 07:47:19 t 1 1 100512 445 0.00 2019-09-20 07:35:11 2019-09-20 07:55:35 t 1 1 100520 430 0.00 2019-09-20 08:42:00 2019-09-20 08:49:20 t 1 1 100521 464 0.00 2019-09-20 08:44:44 2019-09-20 08:59:08 t 1 1 100522 464 0.00 2019-09-20 08:59:28 2019-09-20 08:59:41 t 1 1 100523 402 0.00 2019-09-20 09:06:14 2019-09-20 09:08:04 t 1 2 100526 445 0.00 2019-09-20 09:14:17 2019-09-20 09:15:58 t 1 1 100530 412 0.00 2019-09-20 08:28:31 2019-09-20 09:50:40 t 1 1 100532 306 0.00 2019-09-20 09:31:22 2019-09-20 09:57:46 t 1 1 100535 461 0.00 2019-09-20 09:57:56 2019-09-20 10:06:20 t 1 2 100536 412 0.00 2019-09-20 09:51:33 2019-09-20 10:08:54 t 1 1 100538 468 0.00 2019-09-20 10:04:00 2019-09-20 10:19:26 t 1 1 100539 402 0.00 2019-09-20 09:12:12 2019-09-20 10:30:10 t 1 2 100540 306 0.00 2019-09-20 09:57:53 2019-09-20 10:33:45 t 1 1 100547 327 0.00 2019-09-20 10:55:51 2019-09-20 10:57:28 t 1 1 100548 461 0.00 2019-09-20 10:49:47 2019-09-20 10:59:52 t 1 2 100550 327 0.00 2019-09-20 11:04:10 2019-09-20 11:05:44 t 1 1 100553 400 0.00 2019-09-20 11:12:50 2019-09-20 11:15:01 t 1 1 100554 412 0.00 2019-09-20 11:11:18 2019-09-20 11:22:20 t 1 1 100555 306 0.00 2019-09-20 11:09:23 2019-09-20 11:29:06 t 1 1 100559 412 0.00 2019-09-20 11:36:55 2019-09-20 11:39:08 t 1 1 100561 400 0.00 2019-09-20 11:35:39 2019-09-20 11:44:23 t 1 1 100562 400 0.00 2019-09-20 11:53:10 2019-09-20 11:54:52 t 1 1 100568 306 0.00 2019-09-20 12:05:36 2019-09-20 12:06:19 t 1 1 100574 420 0.00 2019-09-20 12:09:15 2019-09-20 12:22:14 t 1 1 100584 327 0.00 2019-09-20 12:43:27 2019-09-20 12:43:43 t 1 1 100593 432 0.00 2019-09-20 12:53:55 2019-09-20 12:54:40 t 1 1 100598 430 0.00 2019-09-20 12:55:53 2019-09-20 13:02:35 t 1 1 100600 327 0.00 2019-09-20 13:02:17 2019-09-20 13:02:58 t 1 1 100602 296 0.00 2019-09-20 12:58:48 2019-09-20 13:03:09 t 1 2 100608 306 0.00 2019-09-20 13:11:15 2019-09-20 13:13:47 t 1 1 100610 327 0.00 2019-09-20 13:15:10 2019-09-20 13:17:00 t 1 1 100613 400 0.00 2019-09-20 13:15:31 2019-09-20 13:19:39 t 1 1 100614 412 0.00 2019-09-20 13:18:46 2019-09-20 13:20:40 t 1 1 100629 400 0.00 2019-09-20 13:52:35 2019-09-20 13:54:46 t 1 1 100630 400 0.00 2019-09-20 13:54:46 2019-09-20 13:55:49 t 1 1 100636 432 0.00 2019-09-20 14:03:35 2019-09-20 14:04:23 t 1 1 100639 432 0.00 2019-09-20 14:09:43 2019-09-20 14:10:35 t 1 1 100641 327 0.00 2019-09-20 14:14:22 2019-09-20 14:14:55 t 1 1 100642 451 0.00 2019-09-20 14:14:26 2019-09-20 14:15:43 t 1 1 100643 432 0.00 2019-09-20 14:19:47 2019-09-20 14:20:32 t 1 1 100644 220 0.00 2019-09-20 12:33:47 2019-09-20 14:22:10 t 1 2 100647 432 0.00 2019-09-20 14:23:10 2019-09-20 14:28:13 t 1 1 100648 412 0.00 2019-09-20 13:21:45 2019-09-20 14:31:10 t 1 1 100650 327 0.00 2019-09-20 14:35:44 2019-09-20 14:36:49 t 1 1 100658 412 0.00 2019-09-20 14:31:06 2019-09-20 14:49:52 t 1 1 100661 432 0.00 2019-09-20 14:38:35 2019-09-20 14:54:09 t 1 1 100572 432 0.00 2019-09-20 12:12:24 2019-09-20 12:16:38 t 1 1 100573 468 0.00 2019-09-20 12:14:12 2019-09-20 12:19:03 t 1 1 100575 456 0.00 2019-09-20 12:14:48 2019-09-20 12:25:06 t 1 1 100577 220 0.00 2019-09-20 12:33:12 2019-09-20 12:33:19 t 1 2 100583 327 0.00 2019-09-20 12:41:39 2019-09-20 12:43:20 t 1 1 100586 327 0.00 2019-09-20 12:44:48 2019-09-20 12:46:04 t 1 1 100587 432 0.00 2019-09-20 12:26:10 2019-09-20 12:47:57 t 1 1 100588 432 0.00 2019-09-20 12:48:27 2019-09-20 12:48:42 t 1 1 100589 327 0.00 2019-09-20 12:49:26 2019-09-20 12:49:56 t 1 1 100591 327 0.00 2019-09-20 12:50:25 2019-09-20 12:52:16 t 1 1 100596 432 0.00 2019-09-20 12:56:15 2019-09-20 12:56:20 t 1 1 100604 468 0.00 2019-09-20 12:19:24 2019-09-20 13:04:51 t 1 1 100609 327 0.00 2019-09-20 13:12:55 2019-09-20 13:14:08 t 1 1 100611 327 0.00 2019-09-20 13:18:17 2019-09-20 13:18:46 t 1 1 100615 430 0.00 2019-09-20 13:10:49 2019-09-20 13:20:52 t 1 1 100617 430 0.00 2019-09-20 13:20:52 2019-09-20 13:28:01 t 1 1 100618 400 0.00 2019-09-20 13:22:22 2019-09-20 13:29:05 t 1 1 100619 327 0.00 2019-09-20 13:29:31 2019-09-20 13:30:01 t 1 1 100620 432 0.00 2019-09-20 13:14:35 2019-09-20 13:34:02 t 1 1 100621 468 0.00 2019-09-20 13:34:02 2019-09-20 13:34:41 t 1 1 100623 430 0.00 2019-09-20 13:28:01 2019-09-20 13:38:18 t 1 1 100625 402 0.00 2019-09-20 13:27:43 2019-09-20 13:41:19 t 1 2 100627 468 0.00 2019-09-20 13:48:20 2019-09-20 13:50:49 t 1 1 100632 432 0.00 2019-09-20 13:50:49 2019-09-20 14:00:01 t 1 1 100634 461 0.00 2019-09-20 13:51:35 2019-09-20 14:01:40 t 1 2 100637 432 0.00 2019-09-20 14:04:22 2019-09-20 14:04:24 t 1 1 100646 327 0.00 2019-09-20 14:24:53 2019-09-20 14:25:47 t 1 1 100651 456 0.00 2019-09-20 14:20:08 2019-09-20 14:37:09 t 1 1 100652 327 0.00 2019-09-20 14:37:56 2019-09-20 14:38:11 t 1 1 100654 327 0.00 2019-09-20 14:38:19 2019-09-20 14:40:11 t 1 1 100656 468 0.00 2019-09-20 14:26:18 2019-09-20 14:47:19 t 1 1 100657 220 0.00 2019-09-20 12:37:54 2019-09-20 14:48:17 t 1 2 100665 327 0.00 2019-09-20 15:00:44 2019-09-20 15:01:47 t 1 1 100668 461 0.00 2019-09-20 15:01:30 2019-09-20 15:08:11 t 1 2 100675 468 0.00 2019-09-20 15:16:49 2019-09-20 15:20:12 t 1 1 100677 432 0.00 2019-09-20 15:19:45 2019-09-20 15:21:22 t 1 1 100678 432 0.00 2019-09-20 15:22:13 2019-09-20 15:22:37 t 1 1 100679 461 0.00 2019-09-20 15:08:15 2019-09-20 15:23:43 t 1 2 100686 461 0.00 2019-09-20 15:27:40 2019-09-20 15:37:46 t 1 2 100692 432 0.00 2019-09-20 15:36:49 2019-09-20 15:48:10 t 1 1 100693 306 0.00 2019-09-20 15:34:38 2019-09-20 15:49:30 t 1 1 100699 327 0.00 2019-09-20 16:06:53 2019-09-20 16:07:40 t 1 1 100700 402 0.00 2019-09-20 14:31:48 2019-09-20 16:11:54 t 1 2 100703 327 0.00 2019-09-20 16:19:51 2019-09-20 16:19:51 f 1 1 100704 327 0.00 2019-09-20 16:19:06 2019-09-20 16:20:36 t 1 1 100705 327 0.00 2019-09-20 16:22:52 2019-09-20 16:22:52 f 1 1 100706 327 0.00 2019-09-20 16:22:37 2019-09-20 16:24:36 t 1 1 100709 306 0.00 2019-09-20 16:24:36 2019-09-20 16:30:38 t 1 1 100710 430 0.00 2019-09-20 16:29:04 2019-09-20 16:34:58 t 1 1 100714 412 0.00 2019-09-20 16:42:56 2019-09-20 16:53:09 t 1 1 100715 220 0.00 2019-09-20 15:11:01 2019-09-20 16:53:18 t 1 2 100717 430 0.00 2019-09-20 16:49:14 2019-09-20 16:59:18 t 1 1 100722 220 0.00 2019-09-20 17:12:17 2019-09-20 17:14:40 t 1 2 100724 220 0.00 2019-09-20 13:35:59 2019-09-20 17:33:18 t 1 1 100729 400 0.00 2019-09-20 17:50:06 2019-09-20 17:52:20 t 1 1 100736 461 0.00 2019-09-20 17:54:21 2019-09-20 18:08:41 t 1 2 100740 327 0.00 2019-09-20 17:56:03 2019-09-20 18:15:09 t 1 1 100742 327 0.00 2019-09-20 18:16:19 2019-09-20 18:16:52 t 1 1 100743 220 0.00 2019-09-20 17:35:04 2019-09-20 18:20:53 t 1 1 100744 451 0.00 2019-09-20 18:09:16 2019-09-20 18:23:17 t 1 1 100749 327 0.00 2019-09-20 18:37:31 2019-09-20 18:38:03 t 1 1 100751 220 0.00 2019-09-20 18:20:57 2019-09-20 18:39:08 t 1 1 100752 451 0.00 2019-09-20 18:34:44 2019-09-20 18:41:14 t 1 1 100756 306 0.00 2019-09-20 18:51:26 2019-09-20 18:53:45 t 1 1 100757 327 0.00 2019-09-20 18:53:48 2019-09-20 18:54:29 t 1 1 100758 400 0.00 2019-09-20 18:55:35 2019-09-20 18:57:20 t 1 1 100759 420 0.00 2019-09-20 18:21:03 2019-09-20 19:06:32 t 1 1 100760 420 0.00 2019-09-20 19:06:36 2019-09-20 19:07:22 t 1 1 100762 420 0.00 2019-09-20 19:08:09 2019-09-20 19:09:45 t 1 1 100764 432 0.00 2019-09-20 19:16:38 2019-09-20 19:17:39 t 1 1 100766 432 0.00 2019-09-20 19:19:07 2019-09-20 19:20:41 t 1 1 100771 311 0.00 2019-09-20 19:40:15 2019-09-20 19:44:39 t 1 2 100774 420 0.00 2019-09-20 19:45:54 2019-09-20 19:47:23 t 1 1 100787 327 0.00 2019-09-20 20:04:49 2019-09-20 20:14:50 t 1 1 100795 420 0.00 2019-09-20 19:56:05 2019-09-20 20:28:22 t 1 1 100801 306 0.00 2019-09-20 20:26:58 2019-09-20 20:31:31 t 1 1 100803 420 0.00 2019-09-20 20:31:47 2019-09-20 20:33:06 t 1 1 100809 220 0.00 2019-09-20 20:38:13 2019-09-20 20:40:26 t 1 1 100815 306 0.00 2019-09-20 20:42:37 2019-09-20 20:43:56 t 1 1 100816 412 0.00 2019-09-20 20:44:31 2019-09-20 20:46:17 t 1 1 100819 412 0.00 2019-09-20 20:46:33 2019-09-20 20:47:51 t 1 1 100821 220 0.00 2019-09-20 20:47:43 2019-09-20 20:50:17 t 1 1 100822 220 0.00 2019-09-20 20:49:23 2019-09-20 20:51:00 t 1 1 100824 220 0.00 2019-09-20 20:51:58 2019-09-20 20:53:36 t 1 1 100825 220 0.00 2019-09-20 20:53:47 2019-09-20 20:54:49 t 1 1 100830 468 0.00 2019-09-20 20:50:31 2019-09-20 21:01:33 t 1 1 100832 464 0.00 2019-09-20 20:51:10 2019-09-20 21:04:39 t 1 1 100837 468 0.00 2019-09-20 21:01:33 2019-09-20 21:21:08 t 1 1 100841 468 0.00 2019-09-20 21:24:45 2019-09-20 21:29:08 t 1 1 100845 464 0.00 2019-09-20 21:30:39 2019-09-20 21:38:49 t 1 1 100848 290 0.00 2019-09-20 21:41:20 2019-09-20 21:42:23 t 1 2 100849 400 0.00 2019-09-20 21:22:41 2019-09-20 21:43:58 t 1 1 100855 327 0.00 2019-09-20 21:36:07 2019-09-20 21:54:09 t 1 1 100860 432 0.00 2019-09-20 21:40:13 2019-09-20 22:03:02 t 1 1 100862 402 0.00 2019-09-20 21:39:28 2019-09-20 22:06:20 t 1 2 100868 464 0.00 2019-09-20 22:14:22 2019-09-20 22:22:09 t 1 1 100872 306 0.00 2019-09-20 22:26:53 2019-09-20 22:34:06 t 1 1 100876 220 0.00 2019-09-20 22:40:23 2019-09-20 22:41:46 t 1 2 100882 220 0.00 2019-09-20 19:19:40 2019-09-20 23:02:38 t 1 2 100885 432 0.00 2019-09-20 22:42:25 2019-09-20 23:05:05 t 1 1 100888 432 0.00 2019-09-20 23:05:05 2019-09-20 23:10:01 t 1 1 100889 327 0.00 2019-09-20 23:12:21 2019-09-20 23:12:54 t 1 1 100893 461 0.00 2019-09-20 23:09:45 2019-09-20 23:24:50 t 1 2 100895 400 0.00 2019-09-20 23:15:58 2019-09-20 23:29:28 t 1 1 100898 327 0.00 2019-09-20 23:34:49 2019-09-20 23:38:45 t 1 1 100908 451 0.00 2019-09-20 23:46:30 2019-09-20 23:54:16 t 1 1 100913 451 0.00 2019-09-20 23:54:16 2019-09-21 00:00:01 t 1 1 100616 220 0.00 2019-09-20 09:57:26 2019-09-20 13:25:22 t 1 1 100622 220 0.00 2019-09-20 13:25:22 2019-09-20 13:35:59 t 1 1 100624 327 0.00 2019-09-20 13:40:02 2019-09-20 13:41:10 t 1 1 100626 432 0.00 2019-09-20 13:34:47 2019-09-20 13:46:07 t 1 1 100628 327 0.00 2019-09-20 13:51:31 2019-09-20 13:53:14 t 1 1 100631 306 0.00 2019-09-20 13:39:23 2019-09-20 13:59:00 t 1 1 100633 432 0.00 2019-09-20 14:00:18 2019-09-20 14:00:34 t 1 1 100635 402 0.00 2019-09-20 13:41:54 2019-09-20 14:01:59 t 1 2 100638 327 0.00 2019-09-20 14:03:15 2019-09-20 14:04:24 t 1 1 100640 432 0.00 2019-09-20 14:14:32 2019-09-20 14:14:42 t 1 1 100645 306 0.00 2019-09-20 13:58:40 2019-09-20 14:23:54 t 1 1 100649 296 0.00 2019-09-20 14:23:46 2019-09-20 14:34:10 t 1 2 100653 432 0.00 2019-09-20 14:28:13 2019-09-20 14:38:35 t 1 1 100655 372 0.00 2019-09-20 14:34:26 2019-09-20 14:40:12 t 1 2 100659 327 0.00 2019-09-20 14:50:12 2019-09-20 14:50:41 t 1 1 100660 220 0.00 2019-09-20 14:21:42 2019-09-20 14:52:05 t 1 2 100663 220 0.00 2019-09-20 14:55:23 2019-09-20 14:56:46 t 1 2 100670 432 0.00 2019-09-20 15:11:10 2019-09-20 15:12:47 t 1 1 100676 306 0.00 2019-09-20 15:09:15 2019-09-20 15:20:30 t 1 1 100680 220 0.00 2019-09-20 14:50:19 2019-09-20 15:23:43 t 1 2 100682 327 0.00 2019-09-20 15:23:42 2019-09-20 15:24:39 t 1 1 100683 432 0.00 2019-09-20 15:28:08 2019-09-20 15:28:29 t 1 1 100685 468 0.00 2019-09-20 15:25:52 2019-09-20 15:36:20 t 1 1 100688 220 0.00 2019-09-20 15:07:00 2019-09-20 15:40:24 t 1 2 100689 430 0.00 2019-09-20 15:38:47 2019-09-20 15:41:38 t 1 1 100691 220 0.00 2019-09-20 15:41:35 2019-09-20 15:46:58 t 1 2 100694 220 0.00 2019-09-20 15:53:36 2019-09-20 15:56:36 t 1 2 100696 400 0.00 2019-09-20 15:36:38 2019-09-20 15:57:52 t 1 1 100697 449 0.00 2019-09-20 15:56:11 2019-09-20 15:59:18 t 1 1 100698 468 0.00 2019-09-20 15:37:36 2019-09-20 16:00:45 t 1 1 100707 476 0.00 2019-09-20 16:24:33 2019-09-20 16:24:42 t 1 2 100708 430 0.00 2019-09-20 16:22:36 2019-09-20 16:29:04 t 1 1 100712 430 0.00 2019-09-20 16:34:58 2019-09-20 16:47:03 t 1 1 100719 220 0.00 2019-09-20 16:53:13 2019-09-20 17:03:37 t 1 2 100720 412 0.00 2019-09-20 16:53:09 2019-09-20 17:06:54 t 1 1 100721 379 0.00 2019-09-20 12:54:54 2019-09-20 17:08:24 t 1 1 100723 379 0.00 2019-09-20 17:08:24 2019-09-20 17:18:58 t 1 1 100725 220 0.00 2019-09-20 17:31:49 2019-09-20 17:38:13 t 1 2 100727 400 0.00 2019-09-20 17:38:19 2019-09-20 17:41:19 t 1 1 100730 327 0.00 2019-09-20 17:09:19 2019-09-20 17:56:03 t 1 1 100733 400 0.00 2019-09-20 18:02:13 2019-09-20 18:05:30 t 1 1 100734 402 0.00 2019-09-20 18:05:07 2019-09-20 18:06:50 t 1 2 100735 290 0.00 2019-09-20 17:18:03 2019-09-20 18:08:09 t 1 2 100737 306 0.00 2019-09-20 17:59:19 2019-09-20 18:08:42 t 1 1 100746 327 0.00 2019-09-20 18:26:50 2019-09-20 18:27:33 t 1 1 100765 306 0.00 2019-09-20 19:12:19 2019-09-20 19:19:38 t 1 1 100767 472 0.00 2019-09-20 19:23:42 2019-09-20 19:25:07 t 1 2 100772 420 0.00 2019-09-20 19:09:48 2019-09-20 19:45:50 t 1 1 100773 333 0.00 2019-09-20 19:24:07 2019-09-20 19:46:30 t 1 2 100775 306 0.00 2019-09-20 19:19:38 2019-09-20 19:49:04 t 1 1 100776 420 0.00 2019-09-20 19:47:28 2019-09-20 19:49:47 t 1 1 100781 220 0.00 2019-09-20 19:49:27 2019-09-20 19:56:50 t 1 1 100782 220 0.00 2019-09-20 19:56:56 2019-09-20 20:01:26 t 1 1 100783 333 0.00 2019-09-20 19:47:51 2019-09-20 20:03:06 t 1 2 100784 327 0.00 2019-09-20 19:01:11 2019-09-20 20:04:49 t 1 1 100785 220 0.00 2019-09-20 20:01:39 2019-09-20 20:07:31 t 1 1 100788 470 0.00 2019-09-20 20:07:49 2019-09-20 20:15:26 t 1 1 100790 327 0.00 2019-09-20 20:16:02 2019-09-20 20:16:35 t 1 1 100792 412 0.00 2019-09-20 20:17:49 2019-09-20 20:19:39 t 1 1 100794 327 0.00 2019-09-20 20:26:41 2019-09-20 20:28:11 t 1 1 100796 327 0.00 2019-09-20 20:28:58 2019-09-20 20:29:26 t 1 1 100798 470 0.00 2019-09-20 20:15:26 2019-09-20 20:29:39 t 1 1 100800 470 0.00 2019-09-20 20:29:35 2019-09-20 20:30:55 t 1 1 100802 327 0.00 2019-09-20 20:32:02 2019-09-20 20:32:42 t 1 1 100804 327 0.00 2019-09-20 20:32:51 2019-09-20 20:33:07 t 1 1 100805 327 0.00 2019-09-20 20:33:16 2019-09-20 20:33:27 t 1 1 100806 327 0.00 2019-09-20 20:35:01 2019-09-20 20:36:38 t 1 1 100807 327 0.00 2019-09-20 20:36:47 2019-09-20 20:37:30 t 1 1 100810 220 0.00 2019-09-20 20:40:52 2019-09-20 20:41:41 t 1 1 100812 220 0.00 2019-09-20 20:41:41 2019-09-20 20:42:22 t 1 1 100813 470 0.00 2019-09-20 20:38:18 2019-09-20 20:43:40 t 1 1 100823 220 0.00 2019-09-20 20:51:06 2019-09-20 20:51:53 t 1 1 100828 327 0.00 2019-09-20 20:55:34 2019-09-20 20:55:48 t 1 1 100829 327 0.00 2019-09-20 20:55:55 2019-09-20 20:56:09 t 1 1 100833 464 0.00 2019-09-20 21:04:39 2019-09-20 21:06:10 t 1 1 100838 402 0.00 2019-09-20 20:55:55 2019-09-20 21:24:03 t 1 2 100839 468 0.00 2019-09-20 21:21:18 2019-09-20 21:24:45 t 1 1 100844 290 0.00 2019-09-20 21:36:13 2019-09-20 21:37:17 t 1 2 100852 464 0.00 2019-09-20 21:46:21 2019-09-20 21:47:17 t 1 1 100857 464 0.00 2019-09-20 21:47:21 2019-09-20 21:56:35 t 1 1 100864 420 0.00 2019-09-20 22:00:57 2019-09-20 22:07:30 t 1 1 100869 464 0.00 2019-09-20 22:22:09 2019-09-20 22:23:58 t 1 1 100870 327 0.00 2019-09-20 22:27:36 2019-09-20 22:28:10 t 1 1 100871 464 0.00 2019-09-20 22:23:58 2019-09-20 22:29:44 t 1 1 100873 464 0.00 2019-09-20 22:29:44 2019-09-20 22:36:07 t 1 1 100880 220 0.00 2019-09-20 22:41:29 2019-09-20 22:55:52 t 1 2 100883 395 0.00 2019-09-20 22:18:26 2019-09-20 23:02:49 t 1 2 100886 327 0.00 2019-09-20 23:03:49 2019-09-20 23:05:27 t 1 1 100887 306 0.00 2019-09-20 23:06:11 2019-09-20 23:09:39 t 1 1 100896 327 0.00 2019-09-20 23:29:07 2019-09-20 23:29:39 t 1 1 100897 445 0.00 2019-09-20 23:22:59 2019-09-20 23:34:00 t 1 1 100899 445 0.00 2019-09-20 23:34:00 2019-09-20 23:40:51 t 1 1 100900 464 0.00 2019-09-20 23:35:28 2019-09-20 23:41:30 t 1 1 100901 327 0.00 2019-09-20 23:45:35 2019-09-20 23:46:20 t 1 1 100902 220 0.00 2019-09-20 23:38:00 2019-09-20 23:47:20 t 1 1 100904 400 0.00 2019-09-20 23:44:52 2019-09-20 23:48:20 t 1 1 100906 395 0.00 2019-09-20 23:15:48 2019-09-20 23:51:31 t 1 2 100910 412 0.00 2019-09-20 22:53:58 2019-09-20 23:56:41 t 1 1 100911 400 0.00 2019-09-20 23:53:23 2019-09-20 23:57:46 t 1 1 100915 220 0.00 2019-09-21 00:00:10 2019-09-21 00:00:51 t 1 1 100929 451 0.00 2019-09-21 00:03:27 2019-09-21 00:09:36 t 1 1 100935 474 0.00 2019-09-21 00:15:54 2019-09-21 00:20:37 t 1 1 100937 474 0.00 2019-09-21 00:31:43 2019-09-21 00:33:21 t 1 1 100939 476 0.00 2019-09-21 00:52:33 2019-09-21 01:04:14 t 1 2 100940 451 0.00 2019-09-21 01:25:26 2019-09-21 01:31:34 t 1 1 100942 400 0.00 2019-09-21 01:39:04 2019-09-21 01:40:15 t 1 1 100945 468 0.00 2019-09-21 01:52:25 2019-09-21 02:01:43 t 1 1 100662 412 0.00 2019-09-20 14:51:52 2019-09-20 14:55:09 t 1 1 100664 468 0.00 2019-09-20 14:47:19 2019-09-20 14:56:59 t 1 1 100666 306 0.00 2019-09-20 14:52:33 2019-09-20 15:02:59 t 1 1 100667 400 0.00 2019-09-20 15:04:47 2019-09-20 15:07:49 t 1 1 100669 432 0.00 2019-09-20 14:54:09 2019-09-20 15:11:10 t 1 1 100671 327 0.00 2019-09-20 15:11:44 2019-09-20 15:13:02 t 1 1 100672 327 0.00 2019-09-20 15:13:09 2019-09-20 15:13:42 t 1 1 100673 432 0.00 2019-09-20 15:14:00 2019-09-20 15:14:33 t 1 1 100674 412 0.00 2019-09-20 14:56:59 2019-09-20 15:16:02 t 1 1 100681 412 0.00 2019-09-20 15:20:24 2019-09-20 15:24:10 t 1 1 100684 327 0.00 2019-09-20 15:34:49 2019-09-20 15:35:14 t 1 1 100687 430 0.00 2019-09-20 13:38:18 2019-09-20 15:38:47 t 1 1 100690 327 0.00 2019-09-20 15:45:21 2019-09-20 15:45:54 t 1 1 100695 327 0.00 2019-09-20 15:56:00 2019-09-20 15:56:54 t 1 1 100701 461 0.00 2019-09-20 15:29:57 2019-09-20 16:12:47 t 1 2 100702 468 0.00 2019-09-20 16:00:45 2019-09-20 16:18:20 t 1 1 100711 327 0.00 2019-09-20 16:18:00 2019-09-20 16:37:05 t 1 1 100713 430 0.00 2019-09-20 16:47:03 2019-09-20 16:48:46 t 1 1 100716 474 0.00 2019-09-20 16:52:22 2019-09-20 16:55:12 t 1 1 100718 327 0.00 2019-09-20 16:49:17 2019-09-20 17:02:43 t 1 1 100726 296 0.00 2019-09-20 17:39:14 2019-09-20 17:40:37 t 1 2 100728 400 0.00 2019-09-20 17:42:30 2019-09-20 17:45:30 t 1 1 100731 220 0.00 2019-09-20 17:57:42 2019-09-20 17:58:47 t 1 2 100732 400 0.00 2019-09-20 17:57:14 2019-09-20 17:59:28 t 1 1 100738 461 0.00 2019-09-20 18:08:55 2019-09-20 18:09:57 t 1 2 100739 402 0.00 2019-09-20 18:07:43 2019-09-20 18:10:18 t 1 2 100741 306 0.00 2019-09-20 18:15:08 2019-09-20 18:16:39 t 1 1 100745 402 0.00 2019-09-20 18:10:35 2019-09-20 18:25:40 t 1 2 100747 400 0.00 2019-09-20 18:06:49 2019-09-20 18:27:59 t 1 1 100748 451 0.00 2019-09-20 18:23:17 2019-09-20 18:34:44 t 1 1 100750 306 0.00 2019-09-20 18:27:17 2019-09-20 18:39:02 t 1 1 100753 412 0.00 2019-09-20 17:06:54 2019-09-20 18:43:04 t 1 1 100754 327 0.00 2019-09-20 18:43:15 2019-09-20 18:43:49 t 1 1 100755 451 0.00 2019-09-20 18:41:13 2019-09-20 18:47:03 t 1 1 100761 420 0.00 2019-09-20 19:07:25 2019-09-20 19:08:07 t 1 1 100763 432 0.00 2019-09-20 19:01:20 2019-09-20 19:16:07 t 1 1 100768 296 0.00 2019-09-20 19:26:01 2019-09-20 19:27:25 t 1 2 100769 472 0.00 2019-09-20 19:26:07 2019-09-20 19:30:03 t 1 2 100770 290 0.00 2019-09-20 19:31:36 2019-09-20 19:32:38 t 1 2 100777 220 0.00 2019-09-20 18:44:19 2019-09-20 19:50:21 t 1 1 100778 420 0.00 2019-09-20 19:49:50 2019-09-20 19:52:56 t 1 1 100779 420 0.00 2019-09-20 19:52:59 2019-09-20 19:53:24 t 1 1 100780 420 0.00 2019-09-20 19:53:27 2019-09-20 19:56:06 t 1 1 100786 470 0.00 2019-09-20 19:59:43 2019-09-20 20:07:49 t 1 1 100789 412 0.00 2019-09-20 18:58:09 2019-09-20 20:15:27 t 1 1 100791 412 0.00 2019-09-20 20:15:36 2019-09-20 20:17:08 t 1 1 100793 311 0.00 2019-09-20 19:45:00 2019-09-20 20:20:44 t 1 2 100797 327 0.00 2019-09-20 20:28:24 2019-09-20 20:29:27 t 1 1 100799 327 0.00 2019-09-20 20:29:48 2019-09-20 20:30:28 t 1 1 100808 470 0.00 2019-09-20 20:30:54 2019-09-20 20:38:19 t 1 1 100811 327 0.00 2019-09-20 20:41:49 2019-09-20 20:42:16 t 1 1 100814 412 0.00 2019-09-20 20:20:10 2019-09-20 20:43:46 t 1 1 100817 468 0.00 2019-09-20 20:16:33 2019-09-20 20:47:13 t 1 1 100818 220 0.00 2019-09-20 20:42:22 2019-09-20 20:47:45 t 1 1 100820 420 0.00 2019-09-20 20:41:52 2019-09-20 20:47:55 t 1 1 100826 420 0.00 2019-09-20 20:47:55 2019-09-20 20:55:03 t 1 1 100827 327 0.00 2019-09-20 20:52:19 2019-09-20 20:55:27 t 1 1 100831 220 0.00 2019-09-20 20:50:32 2019-09-20 21:04:23 t 1 2 100834 327 0.00 2019-09-20 21:06:25 2019-09-20 21:07:27 t 1 1 100835 306 0.00 2019-09-20 21:08:10 2019-09-20 21:12:14 t 1 1 100836 327 0.00 2019-09-20 21:07:47 2019-09-20 21:13:27 t 1 1 100840 327 0.00 2019-09-20 21:23:23 2019-09-20 21:26:11 t 1 1 100842 468 0.00 2019-09-20 21:29:08 2019-09-20 21:34:36 t 1 1 100843 220 0.00 2019-09-20 21:11:19 2019-09-20 21:36:29 t 1 1 100846 402 0.00 2019-09-20 21:24:20 2019-09-20 21:39:13 t 1 2 100847 290 0.00 2019-09-20 21:39:01 2019-09-20 21:40:04 t 1 2 100850 290 0.00 2019-09-20 21:43:30 2019-09-20 21:44:30 t 1 2 100851 412 0.00 2019-09-20 20:47:57 2019-09-20 21:47:10 t 1 1 100853 420 0.00 2019-09-20 20:55:03 2019-09-20 21:48:03 t 1 1 100854 412 0.00 2019-09-20 21:47:25 2019-09-20 21:49:37 t 1 1 100856 327 0.00 2019-09-20 21:54:18 2019-09-20 21:55:27 t 1 1 100858 306 0.00 2019-09-20 21:54:05 2019-09-20 21:59:27 t 1 1 100859 420 0.00 2019-09-20 21:48:02 2019-09-20 22:00:57 t 1 1 100861 416 0.00 2019-09-20 21:29:54 2019-09-20 22:03:26 t 1 1 100863 327 0.00 2019-09-20 22:05:33 2019-09-20 22:07:00 t 1 1 100865 327 0.00 2019-09-20 22:17:04 2019-09-20 22:17:30 t 1 1 100866 306 0.00 2019-09-20 22:07:53 2019-09-20 22:19:14 t 1 1 100867 432 0.00 2019-09-20 22:04:57 2019-09-20 22:20:13 t 1 1 100874 464 0.00 2019-09-20 22:36:07 2019-09-20 22:38:00 t 1 1 100875 220 0.00 2019-09-20 22:39:03 2019-09-20 22:40:15 t 1 2 100877 432 0.00 2019-09-20 22:20:13 2019-09-20 22:42:25 t 1 1 100878 327 0.00 2019-09-20 22:31:07 2019-09-20 22:43:27 t 1 1 100879 402 0.00 2019-09-20 22:06:34 2019-09-20 22:49:56 t 1 2 100881 327 0.00 2019-09-20 22:48:09 2019-09-20 22:59:10 t 1 1 100884 472 0.00 2019-09-20 22:59:18 2019-09-20 23:04:41 t 1 2 100890 400 0.00 2019-09-20 21:46:45 2019-09-20 23:15:58 t 1 1 100891 306 0.00 2019-09-20 23:13:18 2019-09-20 23:17:23 t 1 1 100892 327 0.00 2019-09-20 23:18:21 2019-09-20 23:18:59 t 1 1 100894 472 0.00 2019-09-20 23:24:42 2019-09-20 23:27:33 t 1 2 100903 220 0.00 2019-09-20 23:47:20 2019-09-20 23:48:17 t 1 1 100905 327 0.00 2019-09-20 23:47:28 2019-09-20 23:48:36 t 1 1 100907 327 0.00 2019-09-20 23:52:38 2019-09-20 23:53:07 t 1 1 100909 472 0.00 2019-09-20 23:51:45 2019-09-20 23:54:36 t 1 2 100912 220 0.00 2019-09-20 23:48:20 2019-09-20 23:59:35 t 1 1 100917 220 0.00 2019-09-21 00:01:21 2019-09-21 00:01:58 t 1 1 100918 220 0.00 2019-09-21 00:01:57 2019-09-21 00:02:31 t 1 1 100919 220 0.00 2019-09-21 00:02:31 2019-09-21 00:03:10 t 1 1 100920 451 0.00 2019-09-21 00:00:01 2019-09-21 00:03:27 t 1 1 100921 220 0.00 2019-09-21 00:03:09 2019-09-21 00:03:45 t 1 1 100924 220 0.00 2019-09-21 00:04:28 2019-09-21 00:05:03 t 1 1 100927 220 0.00 2019-09-21 00:06:19 2019-09-21 00:06:55 t 1 1 100928 220 0.00 2019-09-21 00:06:55 2019-09-21 00:07:30 t 1 1 100930 402 0.00 2019-09-20 22:53:50 2019-09-21 00:13:56 t 1 2 100931 327 0.00 2019-09-21 00:14:03 2019-09-21 00:14:37 t 1 1 100933 468 0.00 2019-09-20 23:56:39 2019-09-21 00:16:43 t 1 1 100934 372 0.00 2019-09-21 00:07:34 2019-09-21 00:17:39 t 1 2 100938 220 0.00 2019-09-21 00:07:29 2019-09-21 00:35:59 t 1 1 100914 220 0.00 2019-09-20 23:59:34 2019-09-21 00:00:14 t 1 1 100916 220 0.00 2019-09-21 00:00:51 2019-09-21 00:01:21 t 1 1 100922 327 0.00 2019-09-21 00:03:16 2019-09-21 00:03:49 t 1 1 100923 220 0.00 2019-09-21 00:03:44 2019-09-21 00:04:28 t 1 1 100925 220 0.00 2019-09-21 00:05:03 2019-09-21 00:05:44 t 1 1 100926 220 0.00 2019-09-21 00:05:44 2019-09-21 00:06:19 t 1 1 100932 220 0.00 2019-09-21 00:08:20 2019-09-21 00:16:13 t 1 1 100936 451 0.00 2019-09-21 00:09:36 2019-09-21 00:24:19 t 1 1 100949 311 0.00 2019-09-21 03:15:48 2019-09-21 04:03:30 t 1 2 100952 445 0.00 2019-09-21 04:12:44 2019-09-21 04:24:48 t 1 1 100953 379 0.00 2019-09-20 17:53:47 2019-09-21 04:27:57 t 1 1 100956 420 0.00 2019-09-21 06:20:48 2019-09-21 06:21:38 t 1 1 100957 402 0.00 2019-09-21 06:20:36 2019-09-21 06:35:41 t 1 2 100963 420 0.00 2019-09-21 06:59:37 2019-09-21 07:01:55 t 1 1 100968 220 0.00 2019-09-21 06:07:26 2019-09-21 07:29:56 t 1 2 100969 474 0.00 2019-09-21 07:32:21 2019-09-21 07:32:38 t 1 1 100970 445 0.00 2019-09-21 07:17:13 2019-09-21 07:39:19 t 1 1 100972 445 0.00 2019-09-21 07:45:17 2019-09-21 08:11:36 t 1 1 100974 306 0.00 2019-09-21 07:57:09 2019-09-21 08:15:34 t 1 1 100975 220 0.00 2019-09-21 07:50:30 2019-09-21 08:18:53 t 1 2 100976 247 0.00 2019-09-21 08:24:12 2019-09-21 08:25:06 t 1 2 100977 306 0.00 2019-09-21 08:18:26 2019-09-21 08:27:34 t 1 1 100981 412 0.00 2019-09-20 23:56:41 2019-09-21 08:42:29 t 1 1 100982 464 0.00 2019-09-21 08:42:32 2019-09-21 08:47:42 t 1 1 100983 327 0.00 2019-09-21 08:48:26 2019-09-21 08:49:14 t 1 1 100984 327 0.00 2019-09-21 08:49:23 2019-09-21 08:49:38 t 1 1 100985 327 0.00 2019-09-21 08:49:48 2019-09-21 08:51:22 t 1 1 101008 464 0.00 2019-09-21 09:46:11 2019-09-21 09:47:51 t 1 1 101011 327 0.00 2019-09-21 09:44:23 2019-09-21 09:54:46 t 1 1 101014 306 0.00 2019-09-21 09:52:50 2019-09-21 09:58:00 t 1 1 101015 327 0.00 2019-09-21 09:56:16 2019-09-21 09:58:45 t 1 1 101019 288 0.00 2019-09-21 10:04:03 2019-09-21 10:07:01 t 1 1 101022 306 0.00 2019-09-21 10:03:44 2019-09-21 10:09:22 t 1 1 101023 327 0.00 2019-09-21 10:07:19 2019-09-21 10:09:59 t 1 1 101028 445 0.00 2019-09-21 10:07:32 2019-09-21 10:19:28 t 1 1 101030 327 0.00 2019-09-21 10:17:04 2019-09-21 10:20:30 t 1 1 101031 306 0.00 2019-09-21 10:20:09 2019-09-21 10:25:20 t 1 1 101033 220 0.00 2019-09-21 10:23:10 2019-09-21 10:28:33 t 1 2 101034 445 0.00 2019-09-21 10:19:29 2019-09-21 10:30:13 t 1 1 101035 306 0.00 2019-09-21 10:25:20 2019-09-21 10:30:27 t 1 1 101043 402 0.00 2019-09-21 10:39:22 2019-09-21 10:40:36 t 1 2 101046 306 0.00 2019-09-21 10:36:02 2019-09-21 10:47:32 t 1 1 101047 288 0.00 2019-09-21 10:43:10 2019-09-21 10:47:49 t 1 1 101048 445 0.00 2019-09-21 10:48:31 2019-09-21 10:50:13 t 1 1 101049 288 0.00 2019-09-21 10:47:49 2019-09-21 10:50:41 t 1 1 101050 461 0.00 2019-09-21 10:38:58 2019-09-21 10:54:04 t 1 2 101053 416 0.00 2019-09-21 10:39:12 2019-09-21 10:56:26 t 1 1 101055 288 0.00 2019-09-21 10:51:31 2019-09-21 10:59:03 t 1 1 101056 288 0.00 2019-09-21 10:59:03 2019-09-21 11:00:08 t 1 1 101057 420 0.00 2019-09-21 10:57:03 2019-09-21 11:03:26 t 1 1 101059 420 0.00 2019-09-21 11:08:49 2019-09-21 11:10:40 t 1 1 101062 288 0.00 2019-09-21 11:12:14 2019-09-21 11:13:17 t 1 1 101065 416 0.00 2019-09-21 11:13:30 2019-09-21 11:15:28 t 1 1 101067 445 0.00 2019-09-21 11:13:36 2019-09-21 11:20:11 t 1 1 101072 288 0.00 2019-09-21 11:13:17 2019-09-21 11:35:55 t 1 1 101075 416 0.00 2019-09-21 11:16:38 2019-09-21 11:43:53 t 1 1 101076 220 0.00 2019-09-21 11:40:28 2019-09-21 11:45:51 t 1 2 101080 327 0.00 2019-09-21 10:39:25 2019-09-21 11:49:23 t 1 1 101085 288 0.00 2019-09-21 11:36:32 2019-09-21 11:59:29 t 1 1 101086 306 0.00 2019-09-21 11:59:39 2019-09-21 12:02:11 t 1 1 101087 449 0.00 2019-09-21 12:03:10 2019-09-21 12:05:45 t 1 1 101089 464 0.00 2019-09-21 12:05:27 2019-09-21 12:06:46 t 1 1 101090 461 0.00 2019-09-21 11:43:28 2019-09-21 12:07:23 t 1 2 101098 416 0.00 2019-09-21 11:55:20 2019-09-21 12:21:10 t 1 1 101099 288 0.00 2019-09-21 12:01:11 2019-09-21 12:22:27 t 1 1 101101 420 0.00 2019-09-21 12:10:33 2019-09-21 12:26:16 t 1 1 101103 327 0.00 2019-09-21 11:50:13 2019-09-21 12:31:50 t 1 1 101110 288 0.00 2019-09-21 12:49:22 2019-09-21 12:57:55 t 1 1 101114 306 0.00 2019-09-21 12:56:44 2019-09-21 13:05:11 t 1 1 101115 220 0.00 2019-09-21 13:02:03 2019-09-21 13:09:27 t 1 2 101117 422 0.00 2019-09-21 13:05:43 2019-09-21 13:11:06 t 1 1 101121 392 0.00 2019-09-21 13:14:47 2019-09-21 13:14:51 t 1 2 101122 464 0.00 2019-09-21 13:13:36 2019-09-21 13:15:52 t 1 1 101124 422 0.00 2019-09-21 13:11:06 2019-09-21 13:20:26 t 1 1 101128 432 0.00 2019-09-21 13:30:16 2019-09-21 13:30:16 f 1 1 101134 420 0.00 2019-09-21 13:13:27 2019-09-21 13:38:15 t 1 1 101141 445 0.00 2019-09-21 13:54:16 2019-09-21 13:55:49 t 1 1 101145 449 0.00 2019-09-21 13:53:47 2019-09-21 13:58:31 t 1 1 101148 400 0.00 2019-09-21 13:57:25 2019-09-21 14:00:56 t 1 1 101152 220 0.00 2019-09-21 14:04:55 2019-09-21 14:08:42 t 1 2 101154 432 0.00 2019-09-21 13:56:37 2019-09-21 14:09:58 t 1 1 101162 327 0.00 2019-09-21 14:14:21 2019-09-21 14:15:24 t 1 1 101174 327 0.00 2019-09-21 14:28:47 2019-09-21 14:29:20 t 1 1 101175 451 0.00 2019-09-21 14:24:26 2019-09-21 14:32:14 t 1 1 101176 464 0.00 2019-09-21 14:27:29 2019-09-21 14:33:32 t 1 1 101181 339 0.00 2019-09-21 14:48:37 2019-09-21 14:51:37 t 1 2 101183 470 0.00 2019-09-21 13:59:45 2019-09-21 14:52:16 t 1 1 101194 451 0.00 2019-09-21 15:02:59 2019-09-21 15:13:49 t 1 1 101197 400 0.00 2019-09-21 15:13:08 2019-09-21 15:17:54 t 1 1 101200 379 0.00 2019-09-21 15:11:12 2019-09-21 15:21:21 t 1 1 101204 412 0.00 2019-09-21 15:13:03 2019-09-21 15:32:46 t 1 1 101209 247 0.00 2019-09-21 15:42:44 2019-09-21 15:45:00 t 1 2 101212 327 0.00 2019-09-21 15:50:10 2019-09-21 15:51:27 t 1 1 101217 327 0.00 2019-09-21 15:58:12 2019-09-21 15:59:20 t 1 1 101219 379 0.00 2019-09-21 15:54:44 2019-09-21 16:01:47 t 1 1 101220 420 0.00 2019-09-21 15:50:29 2019-09-21 16:03:00 t 1 1 101229 379 0.00 2019-09-21 16:10:36 2019-09-21 16:20:17 t 1 1 101231 327 0.00 2019-09-21 16:20:25 2019-09-21 16:21:55 t 1 1 101234 220 0.00 2019-09-21 16:26:41 2019-09-21 16:26:49 t 1 1 101236 402 0.00 2019-09-21 16:17:59 2019-09-21 16:28:04 t 1 2 101240 432 0.00 2019-09-21 16:21:34 2019-09-21 16:32:09 t 1 1 101241 290 0.00 2019-09-21 16:34:52 2019-09-21 16:34:53 t 1 2 101243 290 0.00 2019-09-21 16:34:55 2019-09-21 16:36:00 t 1 2 101247 379 0.00 2019-09-21 16:30:09 2019-09-21 16:47:21 t 1 1 101248 400 0.00 2019-09-21 16:41:26 2019-09-21 16:47:49 t 1 1 101250 220 0.00 2019-09-21 16:47:57 2019-09-21 16:47:58 t 1 1 101251 464 0.00 2019-09-21 16:45:41 2019-09-21 16:49:12 t 1 1 100941 400 0.00 2019-09-21 00:02:49 2019-09-21 01:39:04 t 1 1 100943 400 0.00 2019-09-21 01:40:15 2019-09-21 01:40:52 t 1 1 100944 468 0.00 2019-09-21 00:16:43 2019-09-21 01:52:25 t 1 1 100946 311 0.00 2019-09-21 01:56:52 2019-09-21 02:04:15 t 1 2 100947 456 0.00 2019-09-21 02:18:46 2019-09-21 02:24:15 t 1 1 100950 311 0.00 2019-09-21 04:03:43 2019-09-21 04:06:06 t 1 2 100951 445 0.00 2019-09-20 23:41:26 2019-09-21 04:12:43 t 1 1 100954 445 0.00 2019-09-21 04:24:54 2019-09-21 04:46:13 t 1 1 100959 420 0.00 2019-09-21 06:39:03 2019-09-21 06:43:08 t 1 1 100960 420 0.00 2019-09-21 06:43:09 2019-09-21 06:55:19 t 1 1 100961 420 0.00 2019-09-21 06:55:19 2019-09-21 06:59:37 t 1 1 100964 445 0.00 2019-09-21 07:00:18 2019-09-21 07:02:29 t 1 1 100965 445 0.00 2019-09-21 07:02:31 2019-09-21 07:03:48 t 1 1 100967 445 0.00 2019-09-21 07:08:09 2019-09-21 07:17:13 t 1 1 100971 445 0.00 2019-09-21 07:39:25 2019-09-21 07:45:26 t 1 1 100979 420 0.00 2019-09-21 08:31:28 2019-09-21 08:36:46 t 1 1 100986 327 0.00 2019-09-21 08:51:32 2019-09-21 08:51:47 t 1 1 100990 327 0.00 2019-09-21 08:54:32 2019-09-21 08:56:09 t 1 1 100991 416 0.00 2019-09-21 08:50:17 2019-09-21 09:04:50 t 1 1 100994 445 0.00 2019-09-21 09:17:54 2019-09-21 09:19:31 t 1 1 100995 461 0.00 2019-09-21 09:12:13 2019-09-21 09:22:18 t 1 2 100996 445 0.00 2019-09-21 09:20:40 2019-09-21 09:24:43 t 1 1 100997 445 0.00 2019-09-21 09:25:04 2019-09-21 09:27:03 t 1 1 100998 445 0.00 2019-09-21 09:27:03 2019-09-21 09:32:32 t 1 1 100999 445 0.00 2019-09-21 09:32:32 2019-09-21 09:33:59 t 1 1 101002 416 0.00 2019-09-21 09:04:50 2019-09-21 09:38:06 t 1 1 101004 327 0.00 2019-09-21 08:56:19 2019-09-21 09:41:25 t 1 1 101005 445 0.00 2019-09-21 09:36:54 2019-09-21 09:43:00 t 1 1 101006 306 0.00 2019-09-21 09:00:30 2019-09-21 09:44:05 t 1 1 101009 296 0.00 2019-09-21 09:09:17 2019-09-21 09:48:41 t 1 2 101010 306 0.00 2019-09-21 09:44:05 2019-09-21 09:52:50 t 1 1 101012 220 0.00 2019-09-21 06:18:01 2019-09-21 09:55:01 t 1 1 101013 327 0.00 2019-09-21 09:54:56 2019-09-21 09:56:06 t 1 1 101018 306 0.00 2019-09-21 09:58:00 2019-09-21 10:03:44 t 1 1 101024 400 0.00 2019-09-21 10:09:48 2019-09-21 10:11:44 t 1 1 101025 327 0.00 2019-09-21 10:10:09 2019-09-21 10:13:23 t 1 1 101026 306 0.00 2019-09-21 10:09:22 2019-09-21 10:14:48 t 1 1 101029 306 0.00 2019-09-21 10:14:48 2019-09-21 10:20:09 t 1 1 101032 220 0.00 2019-09-21 09:40:03 2019-09-21 10:25:35 t 1 2 101036 327 0.00 2019-09-21 10:20:40 2019-09-21 10:31:07 t 1 1 101037 327 0.00 2019-09-21 10:31:17 2019-09-21 10:31:32 t 1 1 101039 445 0.00 2019-09-21 10:32:38 2019-09-21 10:33:46 t 1 1 101054 420 0.00 2019-09-21 10:55:38 2019-09-21 10:57:03 t 1 1 101058 461 0.00 2019-09-21 10:49:29 2019-09-21 11:04:34 t 1 2 101060 445 0.00 2019-09-21 10:50:13 2019-09-21 11:10:45 t 1 1 101063 416 0.00 2019-09-21 10:55:34 2019-09-21 11:13:22 t 1 1 101064 445 0.00 2019-09-21 11:11:40 2019-09-21 11:13:36 t 1 1 101068 420 0.00 2019-09-21 11:17:13 2019-09-21 11:23:28 t 1 1 101069 445 0.00 2019-09-21 11:20:49 2019-09-21 11:26:18 t 1 1 101071 420 0.00 2019-09-21 11:27:37 2019-09-21 11:28:23 t 1 1 101073 420 0.00 2019-09-21 11:28:22 2019-09-21 11:37:41 t 1 1 101074 306 0.00 2019-09-21 11:19:11 2019-09-21 11:39:42 t 1 1 101077 468 0.00 2019-09-21 11:44:06 2019-09-21 11:46:26 t 1 1 101081 327 0.00 2019-09-21 11:49:32 2019-09-21 11:49:47 t 1 1 101083 416 0.00 2019-09-21 11:43:53 2019-09-21 11:55:21 t 1 1 101088 402 0.00 2019-09-21 12:05:15 2019-09-21 12:06:17 t 1 2 101094 290 0.00 2019-09-21 12:14:40 2019-09-21 12:15:48 t 1 2 101095 445 0.00 2019-09-21 12:11:52 2019-09-21 12:16:41 t 1 1 101102 288 0.00 2019-09-21 12:26:43 2019-09-21 12:31:18 t 1 1 101108 306 0.00 2019-09-21 12:40:50 2019-09-21 12:49:34 t 1 1 101112 432 0.00 2019-09-21 12:40:49 2019-09-21 13:02:58 t 1 1 101118 327 0.00 2019-09-21 13:10:34 2019-09-21 13:12:43 t 1 1 101131 327 0.00 2019-09-21 13:30:26 2019-09-21 13:30:59 t 1 1 101132 327 0.00 2019-09-21 13:31:08 2019-09-21 13:31:23 t 1 1 101133 432 0.00 2019-09-21 13:30:27 2019-09-21 13:36:12 t 1 1 101135 464 0.00 2019-09-21 13:33:06 2019-09-21 13:39:31 t 1 1 101138 400 0.00 2019-09-21 12:19:31 2019-09-21 13:47:08 t 1 1 101144 292 0.00 2019-09-21 13:55:42 2019-09-21 13:56:50 t 1 2 101146 445 0.00 2019-09-21 13:55:48 2019-09-21 13:58:46 t 1 1 101147 445 0.00 2019-09-21 13:58:46 2019-09-21 14:00:00 t 1 1 101149 327 0.00 2019-09-21 14:05:53 2019-09-21 14:06:45 t 1 1 101151 327 0.00 2019-09-21 14:07:05 2019-09-21 14:08:37 t 1 1 101155 327 0.00 2019-09-21 14:10:03 2019-09-21 14:10:43 t 1 1 101156 327 0.00 2019-09-21 14:11:28 2019-09-21 14:11:50 t 1 1 101157 400 0.00 2019-09-21 14:10:06 2019-09-21 14:12:24 t 1 1 101160 327 0.00 2019-09-21 14:12:59 2019-09-21 14:13:59 t 1 1 101164 327 0.00 2019-09-21 14:15:32 2019-09-21 14:16:37 t 1 1 101167 464 0.00 2019-09-21 14:14:24 2019-09-21 14:17:49 t 1 1 101168 327 0.00 2019-09-21 14:17:59 2019-09-21 14:18:57 t 1 1 101170 327 0.00 2019-09-21 14:22:17 2019-09-21 14:23:11 t 1 1 101171 327 0.00 2019-09-21 14:25:01 2019-09-21 14:26:20 t 1 1 101177 451 0.00 2019-09-21 14:32:14 2019-09-21 14:35:12 t 1 1 101178 327 0.00 2019-09-21 14:39:17 2019-09-21 14:40:45 t 1 1 101188 290 0.00 2019-09-21 14:37:59 2019-09-21 15:08:04 t 1 2 101189 420 0.00 2019-09-21 15:07:06 2019-09-21 15:10:16 t 1 1 101191 420 0.00 2019-09-21 15:10:29 2019-09-21 15:12:46 t 1 1 101193 402 0.00 2019-09-21 14:53:25 2019-09-21 15:13:30 t 1 2 101198 296 0.00 2019-09-21 15:08:07 2019-09-21 15:18:31 t 1 2 101201 327 0.00 2019-09-21 15:02:02 2019-09-21 15:24:26 t 1 1 101203 420 0.00 2019-09-21 15:21:20 2019-09-21 15:31:10 t 1 1 101205 420 0.00 2019-09-21 15:31:19 2019-09-21 15:36:56 t 1 1 101213 379 0.00 2019-09-21 15:27:11 2019-09-21 15:54:44 t 1 1 101215 445 0.00 2019-09-21 14:28:45 2019-09-21 15:55:46 t 1 1 101216 327 0.00 2019-09-21 15:56:02 2019-09-21 15:56:16 t 1 1 101223 379 0.00 2019-09-21 16:01:47 2019-09-21 16:10:36 t 1 1 101228 472 0.00 2019-09-21 16:08:40 2019-09-21 16:16:59 t 1 2 101233 327 0.00 2019-09-21 16:23:39 2019-09-21 16:24:34 t 1 1 101235 398 0.00 2019-09-21 16:26:25 2019-09-21 16:27:26 t 1 2 101238 220 0.00 2019-09-21 16:28:39 2019-09-21 16:31:02 t 1 2 101239 445 0.00 2019-09-21 15:55:44 2019-09-21 16:31:48 t 1 1 101242 445 0.00 2019-09-21 16:31:48 2019-09-21 16:35:04 t 1 1 101253 451 0.00 2019-09-21 16:22:37 2019-09-21 16:55:48 t 1 1 101258 379 0.00 2019-09-21 16:47:21 2019-09-21 16:57:16 t 1 1 101262 220 0.00 2019-09-21 16:58:11 2019-09-21 17:03:53 t 1 1 101263 220 0.00 2019-09-21 17:04:57 2019-09-21 17:05:06 t 1 1 101265 220 0.00 2019-09-21 17:05:28 2019-09-21 17:05:36 t 1 1 101272 379 0.00 2019-09-21 17:06:13 2019-09-21 17:22:37 t 1 1 100948 311 0.00 2019-09-21 02:04:35 2019-09-21 03:12:56 t 1 2 100955 445 0.00 2019-09-21 04:46:13 2019-09-21 04:48:37 t 1 1 100958 420 0.00 2019-09-21 06:21:38 2019-09-21 06:39:03 t 1 1 100962 445 0.00 2019-09-21 04:48:38 2019-09-21 06:59:51 t 1 1 100966 445 0.00 2019-09-21 07:05:10 2019-09-21 07:06:14 t 1 1 100973 445 0.00 2019-09-21 08:12:12 2019-09-21 08:13:47 t 1 1 100978 420 0.00 2019-09-21 08:26:29 2019-09-21 08:31:29 t 1 1 100980 436 0.00 2019-09-21 08:16:52 2019-09-21 08:37:54 t 1 1 100987 327 0.00 2019-09-21 08:51:56 2019-09-21 08:52:11 t 1 1 100988 296 0.00 2019-09-21 08:42:04 2019-09-21 08:52:44 t 1 2 100989 327 0.00 2019-09-21 08:52:20 2019-09-21 08:54:22 t 1 1 100992 445 0.00 2019-09-21 08:13:53 2019-09-21 09:05:10 t 1 1 100993 445 0.00 2019-09-21 09:05:19 2019-09-21 09:15:40 t 1 1 101000 445 0.00 2019-09-21 09:33:18 2019-09-21 09:34:33 t 1 1 101001 464 0.00 2019-09-21 08:56:21 2019-09-21 09:35:50 t 1 1 101003 461 0.00 2019-09-21 09:28:22 2019-09-21 09:38:28 t 1 2 101007 327 0.00 2019-09-21 09:41:35 2019-09-21 09:44:13 t 1 1 101016 247 0.00 2019-09-21 10:01:00 2019-09-21 10:01:30 t 1 2 101017 288 0.00 2019-09-21 08:57:40 2019-09-21 10:03:42 t 1 1 101020 327 0.00 2019-09-21 09:58:55 2019-09-21 10:07:09 t 1 1 101021 445 0.00 2019-09-21 09:43:02 2019-09-21 10:07:15 t 1 1 101027 327 0.00 2019-09-21 10:13:33 2019-09-21 10:16:55 t 1 1 101038 445 0.00 2019-09-21 10:30:12 2019-09-21 10:31:55 t 1 1 101040 306 0.00 2019-09-21 10:30:57 2019-09-21 10:36:02 t 1 1 101041 416 0.00 2019-09-21 09:41:06 2019-09-21 10:39:12 t 1 1 101042 327 0.00 2019-09-21 10:31:42 2019-09-21 10:39:16 t 1 1 101044 288 0.00 2019-09-21 10:07:10 2019-09-21 10:43:10 t 1 1 101045 445 0.00 2019-09-21 10:35:08 2019-09-21 10:46:45 t 1 1 101051 420 0.00 2019-09-21 10:51:17 2019-09-21 10:55:33 t 1 1 101052 306 0.00 2019-09-21 10:47:32 2019-09-21 10:55:45 t 1 1 101061 288 0.00 2019-09-21 11:00:07 2019-09-21 11:12:14 t 1 1 101066 420 0.00 2019-09-21 11:10:44 2019-09-21 11:17:14 t 1 1 101070 420 0.00 2019-09-21 11:23:27 2019-09-21 11:27:23 t 1 1 101078 464 0.00 2019-09-21 11:42:08 2019-09-21 11:47:34 t 1 1 101079 464 0.00 2019-09-21 11:47:50 2019-09-21 11:48:29 t 1 1 101082 306 0.00 2019-09-21 11:44:44 2019-09-21 11:54:31 t 1 1 101084 445 0.00 2019-09-21 11:26:17 2019-09-21 11:55:58 t 1 1 101091 464 0.00 2019-09-21 12:06:50 2019-09-21 12:07:55 t 1 1 101092 420 0.00 2019-09-21 11:37:36 2019-09-21 12:10:33 t 1 1 101093 445 0.00 2019-09-21 11:55:58 2019-09-21 12:11:53 t 1 1 101096 306 0.00 2019-09-21 12:13:55 2019-09-21 12:17:00 t 1 1 101097 461 0.00 2019-09-21 12:17:00 2019-09-21 12:18:56 t 1 2 101100 416 0.00 2019-09-21 12:23:40 2019-09-21 12:24:40 t 1 1 101104 220 0.00 2019-09-21 12:33:12 2019-09-21 12:35:08 t 1 1 101105 327 0.00 2019-09-21 12:32:31 2019-09-21 12:38:30 t 1 1 101106 327 0.00 2019-09-21 12:48:36 2019-09-21 12:49:02 t 1 1 101107 288 0.00 2019-09-21 12:33:18 2019-09-21 12:49:22 t 1 1 101109 402 0.00 2019-09-21 12:44:23 2019-09-21 12:56:54 t 1 2 101111 327 0.00 2019-09-21 12:59:05 2019-09-21 13:00:29 t 1 1 101113 464 0.00 2019-09-21 12:59:08 2019-09-21 13:04:12 t 1 1 101116 445 0.00 2019-09-21 12:16:41 2019-09-21 13:10:51 t 1 1 101119 327 0.00 2019-09-21 13:12:57 2019-09-21 13:14:01 t 1 1 101120 392 0.00 2019-09-21 12:43:39 2019-09-21 13:14:36 t 1 2 101123 327 0.00 2019-09-21 13:14:09 2019-09-21 13:18:28 t 1 1 101125 327 0.00 2019-09-21 13:18:35 2019-09-21 13:20:30 t 1 1 101126 288 0.00 2019-09-21 13:11:03 2019-09-21 13:22:13 t 1 1 101127 411 0.00 2019-09-21 09:17:51 2019-09-21 13:25:29 t 1 1 101129 432 0.00 2019-09-21 13:22:10 2019-09-21 13:30:25 t 1 1 101130 432 0.00 2019-09-21 13:30:04 2019-09-21 13:30:27 t 1 1 101136 432 0.00 2019-09-21 13:43:07 2019-09-21 13:46:00 t 1 1 101137 247 0.00 2019-09-21 13:44:23 2019-09-21 13:46:58 t 1 2 101139 432 0.00 2019-09-21 13:46:15 2019-09-21 13:53:01 t 1 1 101140 445 0.00 2019-09-21 13:12:38 2019-09-21 13:53:27 t 1 1 101142 327 0.00 2019-09-21 13:35:37 2019-09-21 13:55:56 t 1 1 101143 432 0.00 2019-09-21 13:53:19 2019-09-21 13:56:38 t 1 1 101150 220 0.00 2019-09-21 13:05:43 2019-09-21 14:08:35 t 1 1 101153 327 0.00 2019-09-21 14:07:52 2019-09-21 14:08:54 t 1 1 101158 402 0.00 2019-09-21 13:27:50 2019-09-21 14:12:55 t 1 2 101159 327 0.00 2019-09-21 14:12:05 2019-09-21 14:13:37 t 1 1 101161 306 0.00 2019-09-21 14:03:55 2019-09-21 14:14:18 t 1 1 101163 327 0.00 2019-09-21 14:15:46 2019-09-21 14:16:18 t 1 1 101165 306 0.00 2019-09-21 14:16:40 2019-09-21 14:17:13 t 1 1 101166 327 0.00 2019-09-21 14:17:44 2019-09-21 14:17:49 t 1 1 101169 402 0.00 2019-09-21 14:12:43 2019-09-21 14:22:48 t 1 2 101172 327 0.00 2019-09-21 14:26:48 2019-09-21 14:28:16 t 1 1 101173 445 0.00 2019-09-21 14:00:18 2019-09-21 14:28:54 t 1 1 101179 451 0.00 2019-09-21 14:35:12 2019-09-21 14:41:39 t 1 1 101180 392 0.00 2019-09-21 14:23:52 2019-09-21 14:49:35 t 1 2 101182 461 0.00 2019-09-21 14:32:02 2019-09-21 14:52:07 t 1 2 101184 220 0.00 2019-09-21 14:53:35 2019-09-21 14:58:00 t 1 2 101185 327 0.00 2019-09-21 14:50:31 2019-09-21 15:01:42 t 1 1 101186 451 0.00 2019-09-21 14:41:39 2019-09-21 15:02:59 t 1 1 101187 288 0.00 2019-09-21 13:33:40 2019-09-21 15:07:44 t 1 1 101190 379 0.00 2019-09-21 14:22:46 2019-09-21 15:11:12 t 1 1 101192 412 0.00 2019-09-21 08:42:29 2019-09-21 15:13:03 t 1 1 101195 392 0.00 2019-09-21 14:56:50 2019-09-21 15:14:13 t 1 2 101196 402 0.00 2019-09-21 15:16:40 2019-09-21 15:16:46 t 1 2 101199 420 0.00 2019-09-21 15:12:49 2019-09-21 15:19:44 t 1 1 101202 379 0.00 2019-09-21 15:21:21 2019-09-21 15:27:11 t 1 1 101206 420 0.00 2019-09-21 15:38:11 2019-09-21 15:39:11 t 1 1 101207 327 0.00 2019-09-21 15:24:39 2019-09-21 15:42:35 t 1 1 101208 400 0.00 2019-09-21 15:35:40 2019-09-21 15:43:43 t 1 1 101210 420 0.00 2019-09-21 15:39:10 2019-09-21 15:49:17 t 1 1 101211 420 0.00 2019-09-21 15:49:19 2019-09-21 15:50:30 t 1 1 101214 327 0.00 2019-09-21 15:51:35 2019-09-21 15:55:09 t 1 1 101218 412 0.00 2019-09-21 15:32:46 2019-09-21 16:01:18 t 1 1 101221 327 0.00 2019-09-21 16:05:04 2019-09-21 16:06:21 t 1 1 101222 220 0.00 2019-09-21 15:56:34 2019-09-21 16:07:58 t 1 2 101224 327 0.00 2019-09-21 16:06:29 2019-09-21 16:13:20 t 1 1 101225 327 0.00 2019-09-21 16:13:46 2019-09-21 16:15:02 t 1 1 101226 220 0.00 2019-09-21 16:09:53 2019-09-21 16:15:21 t 1 1 101227 220 0.00 2019-09-21 16:16:11 2019-09-21 16:16:19 t 1 1 101230 432 0.00 2019-09-21 15:57:07 2019-09-21 16:21:34 t 1 1 101232 464 0.00 2019-09-21 16:21:59 2019-09-21 16:23:00 t 1 1 101237 379 0.00 2019-09-21 16:20:17 2019-09-21 16:30:09 t 1 1 101244 220 0.00 2019-09-21 16:37:11 2019-09-21 16:37:20 t 1 1 101245 445 0.00 2019-09-21 16:35:06 2019-09-21 16:42:38 t 1 1 101246 445 0.00 2019-09-21 16:42:40 2019-09-21 16:43:31 t 1 1 101249 220 0.00 2019-09-21 16:47:41 2019-09-21 16:47:49 t 1 1 101254 220 0.00 2019-09-21 16:53:14 2019-09-21 16:55:49 t 1 1 101260 306 0.00 2019-09-21 16:26:27 2019-09-21 17:00:59 t 1 1 101261 445 0.00 2019-09-21 16:43:36 2019-09-21 17:02:04 t 1 1 101271 451 0.00 2019-09-21 16:55:48 2019-09-21 17:20:37 t 1 1 101276 327 0.00 2019-09-21 16:34:30 2019-09-21 17:37:59 t 1 1 101277 400 0.00 2019-09-21 17:39:43 2019-09-21 17:43:10 t 1 1 101279 451 0.00 2019-09-21 17:21:34 2019-09-21 17:43:55 t 1 1 101283 392 0.00 2019-09-21 16:50:29 2019-09-21 17:52:28 t 1 2 101285 470 0.00 2019-09-21 17:43:59 2019-09-21 17:55:41 t 1 1 101287 445 0.00 2019-09-21 17:33:13 2019-09-21 17:57:47 t 1 1 101289 451 0.00 2019-09-21 17:51:45 2019-09-21 18:03:38 t 1 1 101293 430 0.00 2019-09-21 18:00:59 2019-09-21 18:10:05 t 1 1 101297 470 0.00 2019-09-21 17:55:41 2019-09-21 18:16:04 t 1 1 101298 445 0.00 2019-09-21 17:58:09 2019-09-21 18:16:36 t 1 1 101299 379 0.00 2019-09-21 17:22:37 2019-09-21 18:18:03 t 1 1 101301 220 0.00 2019-09-21 18:11:50 2019-09-21 18:19:52 t 1 1 101311 327 0.00 2019-09-21 18:26:53 2019-09-21 18:32:11 t 1 1 101319 445 0.00 2019-09-21 18:20:00 2019-09-21 18:51:56 t 1 1 101320 290 0.00 2019-09-21 18:52:14 2019-09-21 18:52:14 t 1 2 101321 290 0.00 2019-09-21 18:52:17 2019-09-21 18:53:24 t 1 2 101326 445 0.00 2019-09-21 18:53:42 2019-09-21 19:03:30 t 1 1 101327 375 0.00 2019-09-21 19:02:30 2019-09-21 19:08:57 t 1 1 101328 375 0.00 2019-09-21 19:08:57 2019-09-21 19:09:42 t 1 1 101331 400 0.00 2019-09-21 19:12:26 2019-09-21 19:13:54 t 1 1 101333 375 0.00 2019-09-21 19:13:57 2019-09-21 19:14:56 t 1 1 101334 400 0.00 2019-09-21 19:13:53 2019-09-21 19:15:35 t 1 1 101335 375 0.00 2019-09-21 19:14:56 2019-09-21 19:17:06 t 1 1 101340 375 0.00 2019-09-21 19:24:11 2019-09-21 19:25:12 t 1 1 101342 470 0.00 2019-09-21 19:10:27 2019-09-21 19:26:40 t 1 1 101343 375 0.00 2019-09-21 19:26:00 2019-09-21 19:27:19 t 1 1 101346 375 0.00 2019-09-21 19:28:15 2019-09-21 19:38:10 t 1 1 101349 420 0.00 2019-09-21 19:31:13 2019-09-21 19:42:20 t 1 1 101354 400 0.00 2019-09-21 19:47:15 2019-09-21 19:49:08 t 1 1 101355 445 0.00 2019-09-21 19:30:02 2019-09-21 19:51:22 t 1 1 101359 400 0.00 2019-09-21 19:57:03 2019-09-21 19:59:54 t 1 1 101360 445 0.00 2019-09-21 19:52:05 2019-09-21 20:01:13 t 1 1 101365 445 0.00 2019-09-21 20:01:14 2019-09-21 20:11:14 t 1 1 101367 445 0.00 2019-09-21 20:11:14 2019-09-21 20:15:53 t 1 1 101368 375 0.00 2019-09-21 20:13:09 2019-09-21 20:21:57 t 1 1 101374 400 0.00 2019-09-21 20:06:54 2019-09-21 20:25:55 t 1 1 101380 296 0.00 2019-09-21 20:34:21 2019-09-21 20:36:45 t 1 2 101383 220 0.00 2019-09-21 20:38:48 2019-09-21 20:40:57 t 1 1 101384 462 0.00 2019-09-21 20:23:04 2019-09-21 20:41:40 t 1 1 101387 375 0.00 2019-09-21 20:29:34 2019-09-21 20:43:22 t 1 1 101388 432 0.00 2019-09-21 20:41:18 2019-09-21 20:44:26 t 1 1 101389 432 0.00 2019-09-21 20:45:52 2019-09-21 20:47:34 t 1 1 101393 402 0.00 2019-09-21 20:43:16 2019-09-21 20:53:22 t 1 2 101395 432 0.00 2019-09-21 20:53:17 2019-09-21 20:54:47 t 1 1 101397 432 0.00 2019-09-21 20:55:42 2019-09-21 20:57:07 t 1 1 101399 432 0.00 2019-09-21 20:58:24 2019-09-21 20:59:25 t 1 1 101407 432 0.00 2019-09-21 21:08:32 2019-09-21 21:09:06 t 1 1 101410 416 0.00 2019-09-21 21:04:30 2019-09-21 21:16:59 t 1 1 101411 474 0.00 2019-09-21 21:15:26 2019-09-21 21:17:27 t 1 1 101412 445 0.00 2019-09-21 20:44:03 2019-09-21 21:18:14 t 1 1 101414 445 0.00 2019-09-21 21:18:26 2019-09-21 21:19:41 t 1 1 101419 375 0.00 2019-09-21 21:22:46 2019-09-21 21:24:41 t 1 1 101423 432 0.00 2019-09-21 21:29:03 2019-09-21 21:29:37 t 1 1 101425 400 0.00 2019-09-21 21:31:21 2019-09-21 21:32:59 t 1 1 101427 432 0.00 2019-09-21 21:32:19 2019-09-21 21:33:25 t 1 1 101431 432 0.00 2019-09-21 21:39:25 2019-09-21 21:39:43 t 1 1 101435 327 0.00 2019-09-21 21:28:50 2019-09-21 21:50:51 t 1 1 101438 470 0.00 2019-09-21 21:47:00 2019-09-21 21:56:08 t 1 1 101439 464 0.00 2019-09-21 21:55:29 2019-09-21 21:57:53 t 1 1 101450 247 0.00 2019-09-21 22:26:34 2019-09-21 22:28:13 t 1 2 101452 445 0.00 2019-09-21 22:23:31 2019-09-21 22:31:45 t 1 1 101453 420 0.00 2019-09-21 22:34:10 2019-09-21 22:35:20 t 1 1 101456 402 0.00 2019-09-21 22:29:32 2019-09-21 22:39:37 t 1 2 101458 432 0.00 2019-09-21 22:41:24 2019-09-21 22:42:22 t 1 1 101460 432 0.00 2019-09-21 22:48:07 2019-09-21 22:48:10 t 1 1 101464 398 0.00 2019-09-21 22:49:25 2019-09-21 22:50:30 t 1 2 101465 464 0.00 2019-09-21 22:12:11 2019-09-21 22:52:15 t 1 1 101467 470 0.00 2019-09-21 22:42:34 2019-09-21 22:55:08 t 1 1 101472 464 0.00 2019-09-21 22:59:10 2019-09-21 22:59:43 t 1 1 101474 402 0.00 2019-09-21 22:55:12 2019-09-21 23:05:17 t 1 2 101475 412 0.00 2019-09-21 22:10:06 2019-09-21 23:05:58 t 1 1 101479 220 0.00 2019-09-21 22:19:12 2019-09-21 23:12:24 t 1 2 101481 398 0.00 2019-09-21 23:25:19 2019-09-21 23:26:23 t 1 2 101482 451 0.00 2019-09-21 23:13:22 2019-09-21 23:28:41 t 1 1 101485 456 0.00 2019-09-21 23:23:18 2019-09-21 23:41:20 t 1 1 101486 220 0.00 2019-09-21 23:39:24 2019-09-21 23:47:36 t 1 1 101488 220 0.00 2019-09-21 23:47:36 2019-09-21 23:52:40 t 1 1 101496 306 0.00 2019-09-21 23:14:47 2019-09-21 23:16:47 t 1 1 101498 432 0.00 2019-09-21 23:13:38 2019-09-21 23:26:56 t 1 1 101499 432 0.00 2019-09-21 23:26:56 2019-09-21 23:44:55 t 1 1 101504 432 0.00 2019-09-22 00:01:39 2019-09-22 00:24:14 t 1 1 101505 422 0.00 2019-09-22 00:42:35 2019-09-22 00:45:19 t 1 1 101512 379 0.00 2019-09-21 18:26:44 2019-09-22 03:45:14 t 1 1 101514 445 0.00 2019-09-21 22:39:02 2019-09-22 04:04:46 t 1 1 101515 445 0.00 2019-09-22 04:04:55 2019-09-22 04:18:09 t 1 1 101518 220 0.00 2019-09-22 05:10:17 2019-09-22 05:13:40 t 1 2 101522 420 0.00 2019-09-22 05:25:47 2019-09-22 05:53:25 t 1 1 101523 464 0.00 2019-09-22 05:52:53 2019-09-22 05:55:02 t 1 1 101525 430 0.00 2019-09-22 06:17:27 2019-09-22 06:19:41 t 1 1 101527 445 0.00 2019-09-22 04:18:12 2019-09-22 06:34:13 t 1 1 101530 325 0.00 2019-09-22 06:32:59 2019-09-22 06:53:04 t 1 2 101532 470 0.00 2019-09-22 06:57:27 2019-09-22 07:10:39 t 1 1 101533 470 0.00 2019-09-22 07:10:38 2019-09-22 07:12:30 t 1 1 101541 220 0.00 2019-09-22 07:21:42 2019-09-22 07:41:06 t 1 2 101544 445 0.00 2019-09-22 06:34:20 2019-09-22 07:47:58 t 1 1 101550 445 0.00 2019-09-22 07:59:36 2019-09-22 08:00:42 t 1 1 101552 470 0.00 2019-09-22 07:50:37 2019-09-22 08:05:54 t 1 1 101553 420 0.00 2019-09-22 07:59:54 2019-09-22 08:07:22 t 1 1 101558 464 0.00 2019-09-22 08:11:22 2019-09-22 08:15:06 t 1 1 101560 220 0.00 2019-09-22 08:13:07 2019-09-22 08:16:45 t 1 2 101562 290 0.00 2019-09-22 08:17:25 2019-09-22 08:18:30 t 1 2 101252 392 0.00 2019-09-21 16:41:03 2019-09-21 16:51:09 t 1 2 101255 220 0.00 2019-09-21 16:55:57 2019-09-21 16:55:58 t 1 1 101256 220 0.00 2019-09-21 16:56:21 2019-09-21 16:56:41 t 1 1 101257 220 0.00 2019-09-21 16:56:48 2019-09-21 16:56:49 t 1 1 101259 464 0.00 2019-09-21 16:49:12 2019-09-21 17:00:18 t 1 1 101264 220 0.00 2019-09-21 17:05:13 2019-09-21 17:05:21 t 1 1 101266 379 0.00 2019-09-21 16:57:16 2019-09-21 17:06:13 t 1 1 101267 400 0.00 2019-09-21 17:02:02 2019-09-21 17:06:56 t 1 1 101268 333 0.00 2019-09-21 16:50:52 2019-09-21 17:09:05 t 1 2 101269 445 0.00 2019-09-21 17:02:12 2019-09-21 17:11:50 t 1 1 101270 445 0.00 2019-09-21 17:12:00 2019-09-21 17:13:05 t 1 1 101274 477 0.00 2019-09-21 17:16:19 2019-09-21 17:27:42 t 1 2 101278 472 0.00 2019-09-21 17:41:08 2019-09-21 17:43:40 t 1 2 101280 470 0.00 2019-09-21 17:34:54 2019-09-21 17:43:59 t 1 1 101281 451 0.00 2019-09-21 17:43:55 2019-09-21 17:51:45 t 1 1 101284 402 0.00 2019-09-21 17:45:45 2019-09-21 17:55:19 t 1 2 101286 402 0.00 2019-09-21 17:55:45 2019-09-21 17:57:33 t 1 2 101288 220 0.00 2019-09-21 17:59:59 2019-09-21 18:03:22 t 1 2 101290 220 0.00 2019-09-21 17:46:30 2019-09-21 18:06:35 t 1 2 101294 220 0.00 2019-09-21 18:10:21 2019-09-21 18:11:13 t 1 1 101300 306 0.00 2019-09-21 18:18:02 2019-09-21 18:19:43 t 1 1 101302 379 0.00 2019-09-21 18:18:55 2019-09-21 18:19:56 t 1 1 101304 400 0.00 2019-09-21 18:19:06 2019-09-21 18:21:35 t 1 1 101305 327 0.00 2019-09-21 17:45:20 2019-09-21 18:25:19 t 1 1 101307 379 0.00 2019-09-21 18:19:55 2019-09-21 18:25:55 t 1 1 101308 379 0.00 2019-09-21 18:26:00 2019-09-21 18:26:44 t 1 1 101309 461 0.00 2019-09-21 18:26:43 2019-09-21 18:28:05 t 1 2 101310 461 0.00 2019-09-21 18:28:17 2019-09-21 18:28:36 t 1 2 101313 306 0.00 2019-09-21 18:28:52 2019-09-21 18:35:24 t 1 1 101316 375 0.00 2019-09-21 18:43:11 2019-09-21 18:43:55 t 1 1 101317 375 0.00 2019-09-21 18:43:55 2019-09-21 18:49:11 t 1 1 101318 290 0.00 2019-09-21 18:50:32 2019-09-21 18:51:35 t 1 2 101322 422 0.00 2019-09-21 18:54:48 2019-09-21 18:55:12 t 1 1 101323 422 0.00 2019-09-21 18:55:12 2019-09-21 18:55:32 t 1 1 101324 451 0.00 2019-09-21 18:43:15 2019-09-21 18:57:20 t 1 1 101329 375 0.00 2019-09-21 19:09:41 2019-09-21 19:11:20 t 1 1 101332 375 0.00 2019-09-21 19:12:20 2019-09-21 19:13:57 t 1 1 101336 375 0.00 2019-09-21 19:17:06 2019-09-21 19:17:24 t 1 1 101337 375 0.00 2019-09-21 19:20:42 2019-09-21 19:22:23 t 1 1 101338 375 0.00 2019-09-21 19:22:23 2019-09-21 19:23:58 t 1 1 101344 445 0.00 2019-09-21 19:14:00 2019-09-21 19:30:02 t 1 1 101352 247 0.00 2019-09-21 19:45:11 2019-09-21 19:47:11 t 1 2 101356 400 0.00 2019-09-21 19:50:23 2019-09-21 19:53:43 t 1 1 101358 311 0.00 2019-09-21 19:56:38 2019-09-21 19:59:38 t 1 2 101362 412 0.00 2019-09-21 16:01:18 2019-09-21 20:06:22 t 1 1 101364 470 0.00 2019-09-21 19:26:40 2019-09-21 20:11:01 t 1 1 101366 451 0.00 2019-09-21 19:53:13 2019-09-21 20:12:31 t 1 1 101369 462 0.00 2019-09-21 20:07:04 2019-09-21 20:23:04 t 1 1 101371 375 0.00 2019-09-21 20:24:00 2019-09-21 20:25:48 t 1 1 101373 456 0.00 2019-09-21 20:09:12 2019-09-21 20:25:54 t 1 1 101375 220 0.00 2019-09-21 20:26:00 2019-09-21 20:26:08 t 1 1 101376 220 0.00 2019-09-21 20:26:20 2019-09-21 20:28:59 t 1 1 101377 375 0.00 2019-09-21 20:25:49 2019-09-21 20:29:35 t 1 1 101382 220 0.00 2019-09-21 20:28:59 2019-09-21 20:38:48 t 1 1 101385 470 0.00 2019-09-21 20:32:27 2019-09-21 20:42:11 t 1 1 101386 445 0.00 2019-09-21 20:16:03 2019-09-21 20:42:41 t 1 1 101391 462 0.00 2019-09-21 20:41:40 2019-09-21 20:50:19 t 1 1 101396 462 0.00 2019-09-21 20:50:19 2019-09-21 20:56:39 t 1 1 101398 470 0.00 2019-09-21 20:42:11 2019-09-21 20:57:30 t 1 1 101400 451 0.00 2019-09-21 20:36:26 2019-09-21 21:00:08 t 1 1 101401 432 0.00 2019-09-21 21:00:01 2019-09-21 21:01:32 t 1 1 101402 432 0.00 2019-09-21 21:02:09 2019-09-21 21:02:17 t 1 1 101405 220 0.00 2019-09-21 20:48:39 2019-09-21 21:04:02 t 1 2 101416 292 0.00 2019-09-21 21:19:40 2019-09-21 21:20:45 t 1 2 101418 292 0.00 2019-09-21 21:21:50 2019-09-21 21:22:53 t 1 2 101421 327 0.00 2019-09-21 21:12:41 2019-09-21 21:28:50 t 1 1 101422 220 0.00 2019-09-21 21:23:51 2019-09-21 21:29:00 t 1 1 101424 220 0.00 2019-09-21 21:29:00 2019-09-21 21:32:19 t 1 1 101426 306 0.00 2019-09-21 21:28:58 2019-09-21 21:33:16 t 1 1 101428 451 0.00 2019-09-21 21:16:29 2019-09-21 21:34:06 t 1 1 101430 400 0.00 2019-09-21 21:35:31 2019-09-21 21:37:28 t 1 1 101432 306 0.00 2019-09-21 21:34:01 2019-09-21 21:42:36 t 1 1 101433 432 0.00 2019-09-21 21:44:46 2019-09-21 21:45:29 t 1 1 101437 220 0.00 2019-09-21 21:10:22 2019-09-21 21:53:42 t 1 2 101440 400 0.00 2019-09-21 21:54:59 2019-09-21 21:58:49 t 1 1 101442 445 0.00 2019-09-21 21:30:57 2019-09-21 22:00:09 t 1 1 101443 412 0.00 2019-09-21 21:16:11 2019-09-21 22:10:06 t 1 1 101447 472 0.00 2019-09-21 22:20:40 2019-09-21 22:23:45 t 1 2 101454 432 0.00 2019-09-21 22:28:19 2019-09-21 22:36:57 t 1 1 101457 432 0.00 2019-09-21 22:40:26 2019-09-21 22:41:10 t 1 1 101461 327 0.00 2019-09-21 22:19:58 2019-09-21 22:49:06 t 1 1 101462 220 0.00 2019-09-21 22:46:15 2019-09-21 22:49:25 t 1 2 101463 420 0.00 2019-09-21 22:35:19 2019-09-21 22:50:24 t 1 1 101469 411 0.00 2019-09-21 13:25:29 2019-09-21 22:55:57 t 1 1 101471 464 0.00 2019-09-21 22:52:15 2019-09-21 22:59:10 t 1 1 101473 432 0.00 2019-09-21 22:59:20 2019-09-21 23:00:00 t 1 1 101476 432 0.00 2019-09-21 23:05:33 2019-09-21 23:06:40 t 1 1 101480 398 0.00 2019-09-21 23:19:17 2019-09-21 23:20:21 t 1 2 101487 464 0.00 2019-09-21 23:13:22 2019-09-21 23:48:09 t 1 1 101489 306 0.00 2019-09-21 23:40:01 2019-09-21 23:52:45 t 1 1 101490 220 0.00 2019-09-21 19:57:36 2019-09-21 23:54:00 t 1 2 101491 306 0.00 2019-09-21 23:52:45 2019-09-21 23:00:06 t 1 1 101493 432 0.00 2019-09-21 23:54:58 2019-09-21 23:13:38 t 1 1 101497 451 0.00 2019-09-21 23:14:05 2019-09-21 23:22:54 t 1 1 101500 311 0.00 2019-09-21 23:46:49 2019-09-21 23:45:13 t 1 2 101501 432 0.00 2019-09-21 23:44:55 2019-09-22 00:01:39 t 1 1 101502 220 0.00 2019-09-21 21:52:41 2019-09-22 00:02:37 t 1 2 101503 220 0.00 2019-09-22 00:16:46 2019-09-22 00:20:15 t 1 2 101507 400 0.00 2019-09-21 23:00:08 2019-09-22 01:10:54 t 1 1 101509 424 0.00 2019-09-21 23:02:19 2019-09-22 01:51:40 t 1 2 101511 220 0.00 2019-09-21 23:06:12 2019-09-22 02:44:19 t 1 1 101513 470 0.00 2019-09-21 23:31:12 2019-09-22 03:57:52 t 1 1 101516 311 0.00 2019-09-22 04:40:33 2019-09-22 04:48:56 t 1 2 101521 220 0.00 2019-09-22 05:20:13 2019-09-22 05:40:36 t 1 2 101524 430 0.00 2019-09-22 05:38:35 2019-09-22 06:01:47 t 1 1 101531 430 0.00 2019-09-22 06:45:57 2019-09-22 07:05:58 t 1 1 101534 220 0.00 2019-09-22 07:02:32 2019-09-22 07:12:55 t 1 2 101273 464 0.00 2019-09-21 17:24:24 2019-09-21 17:27:22 t 1 1 101275 445 0.00 2019-09-21 17:14:30 2019-09-21 17:33:13 t 1 1 101282 402 0.00 2019-09-21 16:56:46 2019-09-21 17:51:51 t 1 2 101291 449 0.00 2019-09-21 18:02:05 2019-09-21 18:07:43 t 1 1 101292 449 0.00 2019-09-21 18:07:43 2019-09-21 18:08:32 t 1 1 101295 220 0.00 2019-09-21 18:11:13 2019-09-21 18:11:30 t 1 1 101296 402 0.00 2019-09-21 17:57:54 2019-09-21 18:12:59 t 1 2 101303 445 0.00 2019-09-21 18:16:36 2019-09-21 18:20:00 t 1 1 101306 327 0.00 2019-09-21 18:25:29 2019-09-21 18:25:43 t 1 1 101312 375 0.00 2019-09-21 18:31:07 2019-09-21 18:33:22 t 1 1 101314 402 0.00 2019-09-21 18:26:44 2019-09-21 18:41:49 t 1 2 101315 375 0.00 2019-09-21 18:33:22 2019-09-21 18:43:11 t 1 1 101325 375 0.00 2019-09-21 18:49:10 2019-09-21 19:00:56 t 1 1 101330 445 0.00 2019-09-21 19:03:53 2019-09-21 19:13:52 t 1 1 101339 375 0.00 2019-09-21 19:23:58 2019-09-21 19:24:11 t 1 1 101341 311 0.00 2019-09-21 18:44:49 2019-09-21 19:26:12 t 1 2 101345 420 0.00 2019-09-21 19:30:20 2019-09-21 19:31:13 t 1 1 101347 306 0.00 2019-09-21 19:32:29 2019-09-21 19:38:11 t 1 1 101348 375 0.00 2019-09-21 19:38:09 2019-09-21 19:39:22 t 1 1 101350 464 0.00 2019-09-21 19:42:26 2019-09-21 19:43:55 t 1 1 101351 420 0.00 2019-09-21 19:42:20 2019-09-21 19:46:26 t 1 1 101353 430 0.00 2019-09-21 19:48:35 2019-09-21 19:48:54 t 1 1 101357 220 0.00 2019-09-21 18:03:10 2019-09-21 19:56:34 t 1 2 101361 220 0.00 2019-09-21 19:49:00 2019-09-21 20:05:11 t 1 2 101363 375 0.00 2019-09-21 20:02:54 2019-09-21 20:10:43 t 1 1 101370 220 0.00 2019-09-21 20:08:49 2019-09-21 20:24:43 t 1 1 101372 220 0.00 2019-09-21 20:25:44 2019-09-21 20:25:52 t 1 1 101378 470 0.00 2019-09-21 20:11:01 2019-09-21 20:32:27 t 1 1 101379 451 0.00 2019-09-21 20:12:31 2019-09-21 20:36:26 t 1 1 101381 432 0.00 2019-09-21 20:35:06 2019-09-21 20:37:13 t 1 1 101390 375 0.00 2019-09-21 20:43:22 2019-09-21 20:49:47 t 1 1 101392 432 0.00 2019-09-21 20:50:50 2019-09-21 20:51:44 t 1 1 101394 400 0.00 2019-09-21 20:50:59 2019-09-21 20:54:12 t 1 1 101403 432 0.00 2019-09-21 21:02:27 2019-09-21 21:02:39 t 1 1 101404 464 0.00 2019-09-21 21:00:23 2019-09-21 21:03:24 t 1 1 101406 400 0.00 2019-09-21 21:02:50 2019-09-21 21:04:15 t 1 1 101408 412 0.00 2019-09-21 20:06:22 2019-09-21 21:16:11 t 1 1 101409 451 0.00 2019-09-21 21:00:08 2019-09-21 21:16:29 t 1 1 101413 432 0.00 2019-09-21 21:18:50 2019-09-21 21:19:15 t 1 1 101415 474 0.00 2019-09-21 21:17:27 2019-09-21 21:20:14 t 1 1 101417 375 0.00 2019-09-21 20:52:22 2019-09-21 21:22:46 t 1 1 101420 445 0.00 2019-09-21 21:20:07 2019-09-21 21:28:22 t 1 1 101429 432 0.00 2019-09-21 21:34:53 2019-09-21 21:35:22 t 1 1 101434 311 0.00 2019-09-21 20:50:05 2019-09-21 21:48:28 t 1 2 101436 296 0.00 2019-09-21 21:49:18 2019-09-21 21:53:41 t 1 2 101441 395 0.00 2019-09-21 21:54:16 2019-09-21 21:59:38 t 1 2 101444 464 0.00 2019-09-21 22:05:46 2019-09-21 22:12:01 t 1 1 101445 327 0.00 2019-09-21 21:50:51 2019-09-21 22:19:58 t 1 1 101446 445 0.00 2019-09-21 22:00:09 2019-09-21 22:21:50 t 1 1 101448 432 0.00 2019-09-21 21:52:24 2019-09-21 22:24:43 t 1 1 101449 432 0.00 2019-09-21 22:24:43 2019-09-21 22:26:47 t 1 1 101451 402 0.00 2019-09-21 21:25:34 2019-09-21 22:30:40 t 1 2 101455 445 0.00 2019-09-21 22:32:12 2019-09-21 22:39:02 t 1 1 101459 432 0.00 2019-09-21 22:46:34 2019-09-21 22:47:16 t 1 1 101466 432 0.00 2019-09-21 22:53:50 2019-09-21 22:54:05 t 1 1 101468 325 0.00 2019-09-21 22:40:17 2019-09-21 22:55:22 t 1 2 101470 398 0.00 2019-09-21 22:57:55 2019-09-21 22:59:01 t 1 2 101477 464 0.00 2019-09-21 22:59:51 2019-09-21 23:07:43 t 1 1 101478 456 0.00 2019-09-21 22:37:03 2019-09-21 23:11:26 t 1 1 101483 451 0.00 2019-09-21 23:28:41 2019-09-21 23:32:19 t 1 1 101484 306 0.00 2019-09-21 23:35:35 2019-09-21 23:40:01 t 1 1 101492 220 0.00 2019-09-21 23:52:40 2019-09-21 23:06:12 t 1 1 101494 451 0.00 2019-09-21 23:32:19 2019-09-21 23:14:05 t 1 1 101495 306 0.00 2019-09-21 23:05:49 2019-09-21 23:14:47 t 1 1 101506 220 0.00 2019-09-22 00:30:07 2019-09-22 00:58:30 t 1 2 101508 392 0.00 2019-09-21 23:26:02 2019-09-22 01:29:26 t 1 2 101510 392 0.00 2019-09-22 02:08:13 2019-09-22 02:29:34 t 1 2 101517 470 0.00 2019-09-22 03:57:52 2019-09-22 05:11:27 t 1 1 101519 220 0.00 2019-09-22 05:13:13 2019-09-22 05:20:31 t 1 2 101520 420 0.00 2019-09-22 05:25:17 2019-09-22 05:25:47 t 1 1 101526 311 0.00 2019-09-22 04:57:44 2019-09-22 06:22:08 t 1 2 101528 430 0.00 2019-09-22 06:19:41 2019-09-22 06:36:07 t 1 1 101529 430 0.00 2019-09-22 06:36:07 2019-09-22 06:45:57 t 1 1 101535 306 0.00 2019-09-22 07:25:03 2019-09-22 07:29:40 t 1 1 101537 379 0.00 2019-09-22 06:36:22 2019-09-22 07:31:18 t 1 1 101538 470 0.00 2019-09-22 07:12:56 2019-09-22 07:32:20 t 1 1 101543 420 0.00 2019-09-22 05:53:25 2019-09-22 07:45:37 t 1 1 101546 416 0.00 2019-09-21 21:16:59 2019-09-22 07:51:06 t 1 1 101547 420 0.00 2019-09-22 07:45:40 2019-09-22 07:58:47 t 1 1 101551 400 0.00 2019-09-22 07:51:29 2019-09-22 08:04:33 t 1 1 101554 420 0.00 2019-09-22 08:07:25 2019-09-22 08:07:42 t 1 1 101555 416 0.00 2019-09-22 07:51:06 2019-09-22 08:08:15 t 1 1 101559 290 0.00 2019-09-22 08:15:32 2019-09-22 08:16:34 t 1 2 101566 306 0.00 2019-09-22 08:27:55 2019-09-22 08:30:35 t 1 1 101568 445 0.00 2019-09-22 08:30:03 2019-09-22 08:33:08 t 1 1 101576 445 0.00 2019-09-22 08:44:38 2019-09-22 08:47:21 t 1 1 101577 420 0.00 2019-09-22 08:12:53 2019-09-22 08:49:36 t 1 1 101580 220 0.00 2019-09-22 08:50:00 2019-09-22 08:52:24 t 1 2 101582 420 0.00 2019-09-22 08:50:39 2019-09-22 08:52:46 t 1 1 101586 445 0.00 2019-09-22 08:57:20 2019-09-22 08:58:14 t 1 1 101595 420 0.00 2019-09-22 09:05:23 2019-09-22 09:11:24 t 1 1 101596 220 0.00 2019-09-22 08:51:57 2019-09-22 09:13:20 t 1 2 101599 306 0.00 2019-09-22 09:13:27 2019-09-22 09:20:54 t 1 1 101603 445 0.00 2019-09-22 08:58:15 2019-09-22 09:26:32 t 1 1 101605 420 0.00 2019-09-22 09:14:38 2019-09-22 09:27:49 t 1 1 101607 416 0.00 2019-09-22 09:25:36 2019-09-22 09:29:57 t 1 1 101608 445 0.00 2019-09-22 09:29:18 2019-09-22 09:30:22 t 1 1 101609 306 0.00 2019-09-22 09:32:20 2019-09-22 09:32:28 t 1 1 101611 462 0.00 2019-09-22 09:06:23 2019-09-22 09:33:30 t 1 1 101621 420 0.00 2019-09-22 09:41:53 2019-09-22 09:43:17 t 1 1 101625 412 0.00 2019-09-21 23:05:57 2019-09-22 09:47:44 t 1 1 101626 470 0.00 2019-09-22 08:05:54 2019-09-22 09:47:55 t 1 1 101630 470 0.00 2019-09-22 09:47:54 2019-09-22 09:50:21 t 1 1 101632 420 0.00 2019-09-22 09:46:14 2019-09-22 09:55:24 t 1 1 101638 445 0.00 2019-09-22 09:55:44 2019-09-22 10:07:22 t 1 1 101643 445 0.00 2019-09-22 10:07:23 2019-09-22 10:22:35 t 1 1 101644 220 0.00 2019-09-22 10:22:02 2019-09-22 10:25:22 t 1 2 101536 400 0.00 2019-09-22 07:23:50 2019-09-22 07:30:12 t 1 1 101539 379 0.00 2019-09-22 07:31:53 2019-09-22 07:33:07 t 1 1 101540 306 0.00 2019-09-22 07:29:40 2019-09-22 07:38:23 t 1 1 101542 464 0.00 2019-09-22 07:39:38 2019-09-22 07:43:21 t 1 1 101545 470 0.00 2019-09-22 07:32:20 2019-09-22 07:50:37 t 1 1 101548 445 0.00 2019-09-22 07:48:06 2019-09-22 07:58:57 t 1 1 101549 420 0.00 2019-09-22 07:58:50 2019-09-22 07:59:51 t 1 1 101556 416 0.00 2019-09-22 08:08:15 2019-09-22 08:11:34 t 1 1 101557 420 0.00 2019-09-22 08:07:44 2019-09-22 08:12:51 t 1 1 101561 472 0.00 2019-09-22 08:09:47 2019-09-22 08:18:03 t 1 2 101565 445 0.00 2019-09-22 08:27:45 2019-09-22 08:29:54 t 1 1 101569 306 0.00 2019-09-22 08:30:35 2019-09-22 08:33:56 t 1 1 101570 379 0.00 2019-09-22 07:35:59 2019-09-22 08:35:13 t 1 1 101575 306 0.00 2019-09-22 08:41:33 2019-09-22 08:46:51 t 1 1 101578 327 0.00 2019-09-22 08:33:00 2019-09-22 08:50:25 t 1 1 101579 420 0.00 2019-09-22 08:49:39 2019-09-22 08:50:40 t 1 1 101583 445 0.00 2019-09-22 08:46:52 2019-09-22 08:53:09 t 1 1 101587 420 0.00 2019-09-22 08:52:49 2019-09-22 09:00:44 t 1 1 101589 306 0.00 2019-09-22 09:01:27 2019-09-22 09:02:28 t 1 1 101592 306 0.00 2019-09-22 09:04:05 2019-09-22 09:07:00 t 1 1 101593 327 0.00 2019-09-22 08:50:25 2019-09-22 09:07:52 t 1 1 101594 306 0.00 2019-09-22 09:07:00 2019-09-22 09:10:19 t 1 1 101601 327 0.00 2019-09-22 09:07:52 2019-09-22 09:24:25 t 1 1 101610 306 0.00 2019-09-22 09:32:32 2019-09-22 09:32:32 t 1 2 101612 416 0.00 2019-09-22 09:32:04 2019-09-22 09:34:07 t 1 1 101613 445 0.00 2019-09-22 09:30:58 2019-09-22 09:34:31 t 1 1 101614 416 0.00 2019-09-22 09:34:07 2019-09-22 09:35:38 t 1 1 101616 306 0.00 2019-09-22 09:32:35 2019-09-22 09:37:56 t 1 1 101617 430 0.00 2019-09-22 09:33:29 2019-09-22 09:38:11 t 1 1 101618 416 0.00 2019-09-22 09:36:15 2019-09-22 09:38:28 t 1 1 101622 420 0.00 2019-09-22 09:43:16 2019-09-22 09:44:18 t 1 1 101628 290 0.00 2019-09-22 09:48:36 2019-09-22 09:49:40 t 1 2 101629 416 0.00 2019-09-22 09:38:28 2019-09-22 09:50:15 t 1 1 101633 445 0.00 2019-09-22 09:52:45 2019-09-22 09:55:44 t 1 1 101635 420 0.00 2019-09-22 09:56:44 2019-09-22 09:58:23 t 1 1 101637 416 0.00 2019-09-22 09:53:53 2019-09-22 10:00:18 t 1 1 101639 420 0.00 2019-09-22 09:58:27 2019-09-22 10:07:48 t 1 1 101640 416 0.00 2019-09-22 10:01:54 2019-09-22 10:12:55 t 1 1 101641 400 0.00 2019-09-22 10:11:54 2019-09-22 10:14:29 t 1 1 101647 306 0.00 2019-09-22 10:30:43 2019-09-22 10:33:09 t 1 1 101650 416 0.00 2019-09-22 10:30:14 2019-09-22 10:37:44 t 1 1 101651 445 0.00 2019-09-22 10:37:18 2019-09-22 10:38:06 t 1 1 101652 306 0.00 2019-09-22 10:34:26 2019-09-22 10:40:10 t 1 1 101658 445 0.00 2019-09-22 10:44:56 2019-09-22 10:46:08 t 1 1 101662 472 0.00 2019-09-22 10:44:48 2019-09-22 10:48:44 t 1 2 101665 296 0.00 2019-09-22 10:46:25 2019-09-22 10:49:48 t 1 2 101667 372 0.00 2019-09-22 10:48:33 2019-09-22 10:52:08 t 1 2 101668 461 0.00 2019-09-22 09:38:06 2019-09-22 10:53:11 t 1 2 101677 464 0.00 2019-09-22 10:59:38 2019-09-22 11:05:45 t 1 1 101678 327 0.00 2019-09-22 10:48:13 2019-09-22 11:06:02 t 1 1 101681 470 0.00 2019-09-22 11:08:17 2019-09-22 11:10:53 t 1 1 101683 327 0.00 2019-09-22 11:10:11 2019-09-22 11:11:40 t 1 1 101688 470 0.00 2019-09-22 11:21:52 2019-09-22 11:24:39 t 1 1 101689 470 0.00 2019-09-22 11:23:49 2019-09-22 11:25:29 t 1 1 101691 445 0.00 2019-09-22 11:22:26 2019-09-22 11:27:46 t 1 1 101695 464 0.00 2019-09-22 11:05:54 2019-09-22 11:41:28 t 1 1 101707 445 0.00 2019-09-22 11:53:16 2019-09-22 11:55:54 t 1 1 101708 461 0.00 2019-09-22 10:19:37 2019-09-22 11:56:58 t 1 2 101709 400 0.00 2019-09-22 11:47:49 2019-09-22 11:58:35 t 1 1 101712 445 0.00 2019-09-22 11:56:20 2019-09-22 12:02:35 t 1 1 101716 445 0.00 2019-09-22 12:15:15 2019-09-22 12:17:28 t 1 1 101718 400 0.00 2019-09-22 12:22:05 2019-09-22 12:23:55 t 1 1 101720 220 0.00 2019-09-22 11:44:16 2019-09-22 12:34:23 t 1 1 101723 464 0.00 2019-09-22 12:36:26 2019-09-22 12:38:52 t 1 1 101724 306 0.00 2019-09-22 12:38:42 2019-09-22 12:41:44 t 1 1 101728 464 0.00 2019-09-22 12:38:56 2019-09-22 12:48:18 t 1 1 101729 445 0.00 2019-09-22 12:17:54 2019-09-22 12:50:04 t 1 1 101735 464 0.00 2019-09-22 12:59:26 2019-09-22 13:01:12 t 1 1 101739 398 0.00 2019-09-22 12:53:49 2019-09-22 13:03:54 t 1 2 101743 464 0.00 2019-09-22 13:08:50 2019-09-22 13:10:37 t 1 1 101744 422 0.00 2019-09-22 13:10:27 2019-09-22 13:15:41 t 1 1 101746 445 0.00 2019-09-22 12:50:13 2019-09-22 13:18:11 t 1 1 101748 445 0.00 2019-09-22 13:18:53 2019-09-22 13:19:18 t 1 1 101756 306 0.00 2019-09-22 13:06:45 2019-09-22 13:33:57 t 1 1 101758 422 0.00 2019-09-22 13:33:44 2019-09-22 13:37:33 t 1 1 101776 327 0.00 2019-09-22 13:47:13 2019-09-22 14:08:14 t 1 1 101778 420 0.00 2019-09-22 13:54:29 2019-09-22 14:12:55 t 1 1 101785 325 0.00 2019-09-22 13:58:03 2019-09-22 14:28:08 t 1 2 101788 470 0.00 2019-09-22 13:18:50 2019-09-22 14:34:10 t 1 1 101790 327 0.00 2019-09-22 14:08:14 2019-09-22 14:41:42 t 1 1 101791 436 0.00 2019-09-22 14:45:52 2019-09-22 14:47:09 t 1 1 101801 420 0.00 2019-09-22 14:15:21 2019-09-22 15:07:23 t 1 1 101813 470 0.00 2019-09-22 15:03:59 2019-09-22 15:29:02 t 1 1 101816 470 0.00 2019-09-22 15:29:02 2019-09-22 15:35:54 t 1 1 101819 430 0.00 2019-09-22 15:28:37 2019-09-22 15:40:52 t 1 1 101820 220 0.00 2019-09-22 14:43:14 2019-09-22 15:44:32 t 1 2 101827 430 0.00 2019-09-22 15:54:06 2019-09-22 16:00:45 t 1 1 101829 327 0.00 2019-09-22 15:47:16 2019-09-22 16:05:13 t 1 1 101830 306 0.00 2019-09-22 16:04:32 2019-09-22 16:07:28 t 1 1 101833 327 0.00 2019-09-22 16:05:13 2019-09-22 16:22:02 t 1 1 101836 339 0.00 2019-09-22 16:13:29 2019-09-22 16:29:52 t 1 2 101845 220 0.00 2019-09-22 16:44:37 2019-09-22 16:45:02 t 1 1 101848 220 0.00 2019-09-22 16:45:37 2019-09-22 16:49:18 t 1 1 101854 220 0.00 2019-09-22 16:54:08 2019-09-22 16:57:08 t 1 1 101856 220 0.00 2019-09-22 16:57:08 2019-09-22 16:58:33 t 1 1 101861 327 0.00 2019-09-22 16:47:57 2019-09-22 17:03:38 t 1 1 101863 220 0.00 2019-09-22 17:04:51 2019-09-22 17:05:55 t 1 1 101864 220 0.00 2019-09-22 17:05:55 2019-09-22 17:06:56 t 1 1 101865 220 0.00 2019-09-22 17:06:56 2019-09-22 17:07:32 t 1 1 101872 470 0.00 2019-09-22 17:09:53 2019-09-22 17:15:43 t 1 1 101875 422 0.00 2019-09-22 16:56:15 2019-09-22 17:24:47 t 1 1 101878 220 0.00 2019-09-22 17:25:53 2019-09-22 17:29:08 t 1 1 101879 461 0.00 2019-09-22 17:29:17 2019-09-22 17:33:35 t 1 2 101881 327 0.00 2019-09-22 17:19:51 2019-09-22 17:35:59 t 1 1 101882 430 0.00 2019-09-22 16:58:27 2019-09-22 17:40:45 t 1 1 101884 430 0.00 2019-09-22 17:46:14 2019-09-22 17:47:48 t 1 1 101887 461 0.00 2019-09-22 17:55:11 2019-09-22 17:56:04 t 1 2 101563 445 0.00 2019-09-22 08:00:42 2019-09-22 08:25:01 t 1 1 101564 306 0.00 2019-09-22 08:19:21 2019-09-22 08:27:55 t 1 1 101567 327 0.00 2019-09-22 08:17:22 2019-09-22 08:33:00 t 1 1 101571 306 0.00 2019-09-22 08:33:56 2019-09-22 08:36:39 t 1 1 101572 445 0.00 2019-09-22 08:36:59 2019-09-22 08:38:35 t 1 1 101573 306 0.00 2019-09-22 08:36:39 2019-09-22 08:41:33 t 1 1 101574 445 0.00 2019-09-22 08:41:13 2019-09-22 08:42:48 t 1 1 101581 306 0.00 2019-09-22 08:46:51 2019-09-22 08:52:39 t 1 1 101584 445 0.00 2019-09-22 08:53:10 2019-09-22 08:55:11 t 1 1 101585 445 0.00 2019-09-22 08:55:11 2019-09-22 08:57:34 t 1 1 101588 306 0.00 2019-09-22 08:52:39 2019-09-22 09:01:27 t 1 1 101590 420 0.00 2019-09-22 09:01:58 2019-09-22 09:03:30 t 1 1 101591 420 0.00 2019-09-22 09:03:30 2019-09-22 09:05:19 t 1 1 101597 306 0.00 2019-09-22 09:10:19 2019-09-22 09:13:27 t 1 1 101598 420 0.00 2019-09-22 09:11:24 2019-09-22 09:14:33 t 1 1 101600 416 0.00 2019-09-22 08:11:34 2019-09-22 09:22:27 t 1 1 101602 395 0.00 2019-09-22 09:16:45 2019-09-22 09:24:59 t 1 2 101604 464 0.00 2019-09-22 09:23:32 2019-09-22 09:26:58 t 1 1 101606 461 0.00 2019-09-22 09:21:11 2019-09-22 09:29:14 t 1 2 101615 327 0.00 2019-09-22 09:24:25 2019-09-22 09:36:11 t 1 1 101619 306 0.00 2019-09-22 09:37:56 2019-09-22 09:40:46 t 1 1 101620 420 0.00 2019-09-22 09:28:09 2019-09-22 09:41:42 t 1 1 101623 445 0.00 2019-09-22 09:34:21 2019-09-22 09:47:02 t 1 1 101624 449 0.00 2019-09-22 09:39:52 2019-09-22 09:47:15 t 1 1 101627 449 0.00 2019-09-22 09:47:15 2019-09-22 09:47:56 t 1 1 101631 445 0.00 2019-09-22 09:47:03 2019-09-22 09:52:37 t 1 1 101634 420 0.00 2019-09-22 09:55:24 2019-09-22 09:56:36 t 1 1 101636 306 0.00 2019-09-22 09:40:46 2019-09-22 09:58:49 t 1 1 101642 422 0.00 2019-09-22 10:14:38 2019-09-22 10:20:22 t 1 1 101645 416 0.00 2019-09-22 10:12:53 2019-09-22 10:28:36 t 1 1 101646 398 0.00 2019-09-22 10:29:26 2019-09-22 10:30:29 t 1 2 101649 445 0.00 2019-09-22 10:35:22 2019-09-22 10:37:19 t 1 1 101653 470 0.00 2019-09-22 09:50:27 2019-09-22 10:41:53 t 1 1 101654 422 0.00 2019-09-22 10:20:22 2019-09-22 10:42:29 t 1 1 101657 445 0.00 2019-09-22 10:38:06 2019-09-22 10:45:06 t 1 1 101661 400 0.00 2019-09-22 10:45:22 2019-09-22 10:48:01 t 1 1 101663 461 0.00 2019-09-22 10:48:55 2019-09-22 10:48:55 f 1 2 101666 398 0.00 2019-09-22 10:50:12 2019-09-22 10:51:19 t 1 2 101670 416 0.00 2019-09-22 10:37:48 2019-09-22 10:54:05 t 1 1 101671 470 0.00 2019-09-22 10:53:51 2019-09-22 10:54:15 t 1 1 101672 416 0.00 2019-09-22 10:54:19 2019-09-22 10:57:22 t 1 1 101674 464 0.00 2019-09-22 10:52:18 2019-09-22 10:59:35 t 1 1 101676 220 0.00 2019-09-22 10:53:27 2019-09-22 11:02:08 t 1 2 101679 470 0.00 2019-09-22 10:54:14 2019-09-22 11:08:17 t 1 1 101680 327 0.00 2019-09-22 11:06:02 2019-09-22 11:10:11 t 1 1 101686 470 0.00 2019-09-22 11:21:23 2019-09-22 11:21:53 t 1 1 101693 402 0.00 2019-09-22 11:27:30 2019-09-22 11:37:35 t 1 2 101697 464 0.00 2019-09-22 11:41:35 2019-09-22 11:42:51 t 1 1 101700 445 0.00 2019-09-22 11:28:16 2019-09-22 11:48:54 t 1 1 101702 325 0.00 2019-09-22 11:25:41 2019-09-22 11:50:44 t 1 2 101704 372 0.00 2019-09-22 11:51:15 2019-09-22 11:51:18 t 1 2 101705 445 0.00 2019-09-22 11:50:52 2019-09-22 11:52:48 t 1 1 101706 395 0.00 2019-09-22 11:18:33 2019-09-22 11:53:55 t 1 2 101710 220 0.00 2019-09-22 11:41:33 2019-09-22 12:00:12 t 1 2 101713 306 0.00 2019-09-22 12:07:30 2019-09-22 12:11:46 t 1 1 101714 445 0.00 2019-09-22 12:02:49 2019-09-22 12:13:52 t 1 1 101726 379 0.00 2019-09-22 08:35:14 2019-09-22 12:44:29 t 1 2 101732 464 0.00 2019-09-22 12:57:37 2019-09-22 12:58:31 t 1 1 101736 464 0.00 2019-09-22 13:01:12 2019-09-22 13:01:54 t 1 1 101737 290 0.00 2019-09-22 12:53:06 2019-09-22 13:03:11 t 1 2 101740 306 0.00 2019-09-22 13:05:02 2019-09-22 13:06:45 t 1 1 101741 464 0.00 2019-09-22 13:02:01 2019-09-22 13:08:50 t 1 1 101745 400 0.00 2019-09-22 13:11:48 2019-09-22 13:17:26 t 1 1 101747 470 0.00 2019-09-22 12:28:45 2019-09-22 13:18:50 t 1 1 101751 420 0.00 2019-09-22 13:16:03 2019-09-22 13:25:49 t 1 1 101753 456 0.00 2019-09-22 13:20:11 2019-09-22 13:30:57 t 1 1 101754 220 0.00 2019-09-22 12:46:08 2019-09-22 13:32:42 t 1 1 101757 325 0.00 2019-09-22 13:15:39 2019-09-22 13:35:44 t 1 2 101759 220 0.00 2019-09-22 13:35:01 2019-09-22 13:38:08 t 1 1 101760 449 0.00 2019-09-22 13:38:26 2019-09-22 13:39:04 t 1 1 101761 400 0.00 2019-09-22 13:36:50 2019-09-22 13:40:10 t 1 1 101762 430 0.00 2019-09-22 13:39:08 2019-09-22 13:43:09 t 1 1 101765 422 0.00 2019-09-22 13:43:54 2019-09-22 13:51:14 t 1 1 101766 420 0.00 2019-09-22 13:45:18 2019-09-22 13:52:54 t 1 1 101767 430 0.00 2019-09-22 13:49:03 2019-09-22 13:53:19 t 1 1 101770 420 0.00 2019-09-22 13:53:43 2019-09-22 13:55:40 t 1 1 101772 422 0.00 2019-09-22 13:51:14 2019-09-22 13:57:59 t 1 1 101773 220 0.00 2019-09-22 13:58:44 2019-09-22 13:59:54 t 1 2 101775 461 0.00 2019-09-22 13:57:35 2019-09-22 14:07:40 t 1 2 101779 420 0.00 2019-09-22 14:13:06 2019-09-22 14:14:26 t 1 1 101780 420 0.00 2019-09-22 14:14:26 2019-09-22 14:15:13 t 1 1 101781 402 0.00 2019-09-22 12:23:07 2019-09-22 14:23:12 t 1 2 101782 306 0.00 2019-09-22 14:17:19 2019-09-22 14:24:38 t 1 1 101783 392 0.00 2019-09-22 12:01:18 2019-09-22 14:26:10 t 1 2 101786 422 0.00 2019-09-22 14:06:04 2019-09-22 14:28:46 t 1 1 101787 416 0.00 2019-09-22 14:17:32 2019-09-22 14:31:58 t 1 1 101789 476 0.00 2019-09-22 14:15:11 2019-09-22 14:36:34 t 1 2 101792 422 0.00 2019-09-22 14:28:46 2019-09-22 14:49:55 t 1 1 101794 412 0.00 2019-09-22 13:20:20 2019-09-22 14:55:19 t 1 1 101796 422 0.00 2019-09-22 14:49:55 2019-09-22 14:59:12 t 1 1 101797 296 0.00 2019-09-22 14:54:55 2019-09-22 15:02:18 t 1 2 101799 430 0.00 2019-09-22 15:04:23 2019-09-22 15:05:19 t 1 1 101800 392 0.00 2019-09-22 14:45:03 2019-09-22 15:07:22 t 1 2 101802 412 0.00 2019-09-22 14:55:19 2019-09-22 15:11:40 t 1 1 101806 400 0.00 2019-09-22 15:16:09 2019-09-22 15:22:08 t 1 1 101807 402 0.00 2019-09-22 15:18:10 2019-09-22 15:23:21 t 1 2 101809 412 0.00 2019-09-22 15:11:40 2019-09-22 15:23:50 t 1 1 101810 468 0.00 2019-09-22 15:04:25 2019-09-22 15:25:05 t 1 1 101812 424 0.00 2019-09-22 14:13:07 2019-09-22 15:28:43 t 1 2 101814 327 0.00 2019-09-22 15:11:49 2019-09-22 15:30:41 t 1 1 101815 412 0.00 2019-09-22 15:23:50 2019-09-22 15:35:10 t 1 1 101818 416 0.00 2019-09-22 15:37:50 2019-09-22 15:40:19 t 1 1 101821 327 0.00 2019-09-22 15:30:41 2019-09-22 15:47:16 t 1 1 101822 470 0.00 2019-09-22 15:35:54 2019-09-22 15:48:44 t 1 1 101823 470 0.00 2019-09-22 15:48:44 2019-09-22 15:50:00 t 1 1 101824 395 0.00 2019-09-22 12:58:22 2019-09-22 15:51:55 t 1 2 101825 430 0.00 2019-09-22 15:40:52 2019-09-22 15:54:06 t 1 1 101648 445 0.00 2019-09-22 10:23:59 2019-09-22 10:35:23 t 1 1 101655 306 0.00 2019-09-22 10:40:10 2019-09-22 10:42:51 t 1 1 101656 306 0.00 2019-09-22 10:42:51 2019-09-22 10:44:04 t 1 1 101659 470 0.00 2019-09-22 10:42:20 2019-09-22 10:46:22 t 1 1 101660 327 0.00 2019-09-22 09:36:11 2019-09-22 10:47:45 t 1 1 101664 461 0.00 2019-09-22 10:49:08 2019-09-22 10:49:08 f 1 2 101669 470 0.00 2019-09-22 10:46:22 2019-09-22 10:53:51 t 1 1 101673 220 0.00 2019-09-22 10:58:13 2019-09-22 10:59:23 t 1 2 101675 445 0.00 2019-09-22 10:46:15 2019-09-22 11:02:03 t 1 1 101682 306 0.00 2019-09-22 10:59:20 2019-09-22 11:10:58 t 1 1 101684 412 0.00 2019-09-22 09:47:44 2019-09-22 11:13:47 t 1 1 101685 470 0.00 2019-09-22 11:10:52 2019-09-22 11:21:00 t 1 1 101687 445 0.00 2019-09-22 11:02:44 2019-09-22 11:22:18 t 1 1 101690 462 0.00 2019-09-22 11:12:10 2019-09-22 11:26:22 t 1 1 101692 400 0.00 2019-09-22 11:27:31 2019-09-22 11:31:34 t 1 1 101694 400 0.00 2019-09-22 11:37:24 2019-09-22 11:41:02 t 1 1 101696 470 0.00 2019-09-22 11:25:45 2019-09-22 11:42:50 t 1 1 101698 420 0.00 2019-09-22 11:35:38 2019-09-22 11:44:03 t 1 1 101699 462 0.00 2019-09-22 11:26:22 2019-09-22 11:44:31 t 1 1 101701 445 0.00 2019-09-22 11:49:26 2019-09-22 11:50:36 t 1 1 101703 412 0.00 2019-09-22 11:13:47 2019-09-22 11:51:05 t 1 1 101711 372 0.00 2019-09-22 11:51:25 2019-09-22 12:01:30 t 1 2 101715 445 0.00 2019-09-22 12:14:22 2019-09-22 12:16:40 t 1 1 101717 400 0.00 2019-09-22 12:15:43 2019-09-22 12:17:46 t 1 1 101719 395 0.00 2019-09-22 12:25:41 2019-09-22 12:27:39 t 1 2 101721 306 0.00 2019-09-22 12:33:48 2019-09-22 12:35:58 t 1 1 101722 290 0.00 2019-09-22 12:35:39 2019-09-22 12:36:41 t 1 2 101725 220 0.00 2019-09-22 12:38:46 2019-09-22 12:44:26 t 1 1 101727 422 0.00 2019-09-22 10:42:29 2019-09-22 12:44:43 t 1 1 101730 422 0.00 2019-09-22 12:44:43 2019-09-22 12:57:09 t 1 1 101731 464 0.00 2019-09-22 12:48:23 2019-09-22 12:57:32 t 1 1 101733 464 0.00 2019-09-22 12:58:40 2019-09-22 12:59:07 t 1 1 101734 464 0.00 2019-09-22 12:59:15 2019-09-22 12:59:20 t 1 1 101738 422 0.00 2019-09-22 12:57:09 2019-09-22 13:03:26 t 1 1 101742 422 0.00 2019-09-22 13:03:26 2019-09-22 13:10:27 t 1 1 101749 412 0.00 2019-09-22 11:51:05 2019-09-22 13:20:20 t 1 1 101750 422 0.00 2019-09-22 13:15:41 2019-09-22 13:21:31 t 1 1 101752 422 0.00 2019-09-22 13:21:31 2019-09-22 13:26:27 t 1 1 101755 422 0.00 2019-09-22 13:26:27 2019-09-22 13:33:44 t 1 1 101763 422 0.00 2019-09-22 13:37:33 2019-09-22 13:43:54 t 1 1 101764 430 0.00 2019-09-22 13:42:24 2019-09-22 13:45:24 t 1 1 101768 420 0.00 2019-09-22 13:52:57 2019-09-22 13:53:40 t 1 1 101769 400 0.00 2019-09-22 13:53:24 2019-09-22 13:55:38 t 1 1 101771 220 0.00 2019-09-22 13:56:40 2019-09-22 13:57:43 t 1 2 101774 422 0.00 2019-09-22 13:57:59 2019-09-22 14:06:04 t 1 1 101777 290 0.00 2019-09-22 13:04:59 2019-09-22 14:10:04 t 1 2 101784 432 0.00 2019-09-22 14:19:26 2019-09-22 14:27:07 t 1 1 101793 306 0.00 2019-09-22 14:49:17 2019-09-22 14:51:33 t 1 1 101795 220 0.00 2019-09-22 14:01:07 2019-09-22 14:55:31 t 1 2 101798 470 0.00 2019-09-22 14:43:43 2019-09-22 15:03:59 t 1 1 101803 327 0.00 2019-09-22 14:41:42 2019-09-22 15:11:49 t 1 1 101804 420 0.00 2019-09-22 15:07:23 2019-09-22 15:16:16 t 1 1 101805 420 0.00 2019-09-22 15:16:19 2019-09-22 15:17:20 t 1 1 101808 306 0.00 2019-09-22 15:07:52 2019-09-22 15:23:43 t 1 1 101811 402 0.00 2019-09-22 15:23:40 2019-09-22 15:26:40 t 1 2 101817 416 0.00 2019-09-22 14:31:58 2019-09-22 15:37:50 t 1 1 101832 461 0.00 2019-09-22 16:00:11 2019-09-22 16:15:17 t 1 2 101840 412 0.00 2019-09-22 15:35:10 2019-09-22 16:40:04 t 1 1 101842 220 0.00 2019-09-22 16:30:38 2019-09-22 16:42:22 t 1 1 101846 220 0.00 2019-09-22 16:45:01 2019-09-22 16:45:37 t 1 1 101847 327 0.00 2019-09-22 16:40:38 2019-09-22 16:47:50 t 1 1 101851 220 0.00 2019-09-22 16:49:53 2019-09-22 16:53:31 t 1 1 101857 470 0.00 2019-09-22 16:53:52 2019-09-22 17:01:00 t 1 1 101858 416 0.00 2019-09-22 16:34:50 2019-09-22 17:01:49 t 1 1 101859 220 0.00 2019-09-22 16:58:33 2019-09-22 17:02:05 t 1 1 101860 220 0.00 2019-09-22 17:02:04 2019-09-22 17:02:36 t 1 1 101862 220 0.00 2019-09-22 17:02:36 2019-09-22 17:04:51 t 1 1 101866 400 0.00 2019-09-22 17:05:06 2019-09-22 17:07:47 t 1 1 101867 220 0.00 2019-09-22 17:07:32 2019-09-22 17:08:22 t 1 1 101870 220 0.00 2019-09-22 17:08:22 2019-09-22 17:10:49 t 1 1 101877 464 0.00 2019-09-22 17:25:05 2019-09-22 17:26:03 t 1 1 101880 220 0.00 2019-09-22 17:29:11 2019-09-22 17:33:45 t 1 1 101883 430 0.00 2019-09-22 17:40:45 2019-09-22 17:43:25 t 1 1 101886 327 0.00 2019-09-22 17:35:59 2019-09-22 17:52:13 t 1 1 101894 422 0.00 2019-09-22 17:24:47 2019-09-22 18:08:08 t 1 1 101895 327 0.00 2019-09-22 17:52:13 2019-09-22 18:08:27 t 1 1 101897 220 0.00 2019-09-22 17:57:53 2019-09-22 18:09:10 t 1 2 101900 464 0.00 2019-09-22 18:07:21 2019-09-22 18:15:51 t 1 1 101901 422 0.00 2019-09-22 18:08:08 2019-09-22 18:16:21 t 1 1 101903 470 0.00 2019-09-22 17:27:17 2019-09-22 18:21:37 t 1 1 101904 464 0.00 2019-09-22 18:17:52 2019-09-22 18:22:20 t 1 1 101906 402 0.00 2019-09-22 18:25:31 2019-09-22 18:26:57 t 1 2 101908 296 0.00 2019-09-22 18:42:37 2019-09-22 18:46:00 t 1 2 101913 456 0.00 2019-09-22 18:49:54 2019-09-22 18:53:55 t 1 1 101914 472 0.00 2019-09-22 18:58:47 2019-09-22 19:03:23 t 1 2 101915 464 0.00 2019-09-22 19:01:44 2019-09-22 19:10:11 t 1 1 101916 402 0.00 2019-09-22 18:29:12 2019-09-22 19:11:38 t 1 2 101924 451 0.00 2019-09-22 19:33:00 2019-09-22 19:36:52 t 1 1 101925 402 0.00 2019-09-22 19:12:20 2019-09-22 19:37:25 t 1 2 101931 402 0.00 2019-09-22 19:41:00 2019-09-22 19:44:04 t 1 2 101935 470 0.00 2019-09-22 18:50:08 2019-09-22 19:51:42 t 1 1 101936 420 0.00 2019-09-22 19:50:26 2019-09-22 19:52:45 t 1 1 101938 462 0.00 2019-09-22 19:42:52 2019-09-22 19:54:09 t 1 1 101939 451 0.00 2019-09-22 19:43:42 2019-09-22 19:56:35 t 1 1 101940 412 0.00 2019-09-22 18:43:51 2019-09-22 20:00:09 t 1 1 101941 462 0.00 2019-09-22 19:54:09 2019-09-22 20:02:40 t 1 1 101942 464 0.00 2019-09-22 19:49:24 2019-09-22 20:04:56 t 1 1 101944 464 0.00 2019-09-22 20:05:05 2019-09-22 20:05:57 t 1 1 101945 464 0.00 2019-09-22 20:06:05 2019-09-22 20:06:36 t 1 1 101953 402 0.00 2019-09-22 19:44:13 2019-09-22 20:19:19 t 1 2 101956 470 0.00 2019-09-22 20:31:16 2019-09-22 20:41:50 t 1 1 101957 451 0.00 2019-09-22 20:31:43 2019-09-22 20:42:16 t 1 1 101960 424 0.00 2019-09-22 20:15:30 2019-09-22 20:51:53 t 1 2 101963 400 0.00 2019-09-22 19:58:27 2019-09-22 21:03:26 t 1 1 101966 400 0.00 2019-09-22 21:05:56 2019-09-22 21:18:00 t 1 1 101968 402 0.00 2019-09-22 20:18:59 2019-09-22 21:19:04 t 1 2 101973 470 0.00 2019-09-22 21:23:40 2019-09-22 21:38:05 t 1 1 101826 468 0.00 2019-09-22 15:25:05 2019-09-22 15:59:56 t 1 1 101828 416 0.00 2019-09-22 15:39:24 2019-09-22 16:01:46 t 1 1 101831 400 0.00 2019-09-22 16:02:31 2019-09-22 16:08:49 t 1 1 101834 220 0.00 2019-09-22 16:11:34 2019-09-22 16:25:27 t 1 2 101835 220 0.00 2019-09-22 15:50:59 2019-09-22 16:27:24 t 1 1 101837 220 0.00 2019-09-22 16:27:33 2019-09-22 16:30:08 t 1 1 101838 306 0.00 2019-09-22 16:13:08 2019-09-22 16:33:01 t 1 1 101839 416 0.00 2019-09-22 16:02:55 2019-09-22 16:34:39 t 1 1 101841 327 0.00 2019-09-22 16:22:02 2019-09-22 16:40:38 t 1 1 101843 470 0.00 2019-09-22 15:51:03 2019-09-22 16:42:44 t 1 1 101844 220 0.00 2019-09-22 16:42:21 2019-09-22 16:44:14 t 1 1 101849 220 0.00 2019-09-22 16:49:17 2019-09-22 16:49:53 t 1 1 101850 424 0.00 2019-09-22 16:24:35 2019-09-22 16:50:58 t 1 2 101852 470 0.00 2019-09-22 16:42:44 2019-09-22 16:53:52 t 1 1 101853 220 0.00 2019-09-22 16:53:31 2019-09-22 16:54:08 t 1 1 101855 339 0.00 2019-09-22 16:29:55 2019-09-22 16:57:19 t 1 2 101868 412 0.00 2019-09-22 16:40:04 2019-09-22 17:08:24 t 1 1 101869 470 0.00 2019-09-22 17:01:00 2019-09-22 17:09:53 t 1 1 101871 416 0.00 2019-09-22 17:01:56 2019-09-22 17:14:12 t 1 1 101873 327 0.00 2019-09-22 17:03:38 2019-09-22 17:19:51 t 1 1 101874 220 0.00 2019-09-22 17:10:48 2019-09-22 17:22:56 t 1 1 101876 220 0.00 2019-09-22 17:22:59 2019-09-22 17:25:50 t 1 1 101885 400 0.00 2019-09-22 17:47:25 2019-09-22 17:48:45 t 1 1 101888 462 0.00 2019-09-22 16:12:23 2019-09-22 17:56:44 t 1 1 101891 464 0.00 2019-09-22 17:59:01 2019-09-22 18:05:38 t 1 1 101892 464 0.00 2019-09-22 18:05:41 2019-09-22 18:06:26 t 1 1 101893 464 0.00 2019-09-22 18:06:29 2019-09-22 18:07:18 t 1 1 101907 412 0.00 2019-09-22 17:08:24 2019-09-22 18:43:51 t 1 1 101909 416 0.00 2019-09-22 18:40:05 2019-09-22 18:48:24 t 1 1 101911 470 0.00 2019-09-22 18:21:37 2019-09-22 18:50:08 t 1 1 101912 472 0.00 2019-09-22 18:49:56 2019-09-22 18:52:26 t 1 2 101917 464 0.00 2019-09-22 19:10:11 2019-09-22 19:15:37 t 1 1 101919 220 0.00 2019-09-22 17:34:15 2019-09-22 19:17:58 t 1 1 101921 464 0.00 2019-09-22 19:15:44 2019-09-22 19:28:30 t 1 1 101926 325 0.00 2019-09-22 19:27:34 2019-09-22 19:37:39 t 1 2 101928 420 0.00 2019-09-22 19:09:00 2019-09-22 19:42:04 t 1 1 101929 462 0.00 2019-09-22 19:33:23 2019-09-22 19:42:52 t 1 1 101930 451 0.00 2019-09-22 19:36:52 2019-09-22 19:43:42 t 1 1 101933 464 0.00 2019-09-22 19:34:44 2019-09-22 19:49:17 t 1 1 101947 464 0.00 2019-09-22 20:06:57 2019-09-22 20:07:06 t 1 1 101949 464 0.00 2019-09-22 20:07:11 2019-09-22 20:10:43 t 1 1 101950 464 0.00 2019-09-22 20:10:53 2019-09-22 20:11:24 t 1 1 101952 412 0.00 2019-09-22 20:00:09 2019-09-22 20:13:01 t 1 1 101958 311 0.00 2019-09-22 20:37:47 2019-09-22 20:45:26 t 1 2 101959 464 0.00 2019-09-22 20:42:38 2019-09-22 20:50:16 t 1 1 101965 451 0.00 2019-09-22 20:42:29 2019-09-22 21:06:07 t 1 1 101969 306 0.00 2019-09-22 21:16:34 2019-09-22 21:20:22 t 1 1 101970 470 0.00 2019-09-22 20:52:17 2019-09-22 21:23:40 t 1 1 101971 476 0.00 2019-09-22 21:30:05 2019-09-22 21:32:29 t 1 2 101972 400 0.00 2019-09-22 21:21:49 2019-09-22 21:36:40 t 1 1 101980 247 0.00 2019-09-22 21:56:40 2019-09-22 21:57:25 t 1 2 101982 402 0.00 2019-09-22 21:48:24 2019-09-22 21:58:30 t 1 2 101983 325 0.00 2019-09-22 21:17:03 2019-09-22 22:02:08 t 1 2 101985 220 0.00 2019-09-22 22:02:46 2019-09-22 22:05:14 t 1 2 101989 470 0.00 2019-09-22 21:56:01 2019-09-22 22:11:31 t 1 1 101995 220 0.00 2019-09-22 22:14:37 2019-09-22 22:15:15 t 1 1 101997 220 0.00 2019-09-22 22:15:15 2019-09-22 22:15:29 t 1 1 102002 432 0.00 2019-09-22 22:05:53 2019-09-22 22:17:25 t 1 1 102006 372 0.00 2019-09-22 22:18:12 2019-09-22 22:18:13 t 1 2 102009 220 0.00 2019-09-22 22:19:16 2019-09-22 22:19:55 t 1 1 102010 372 0.00 2019-09-22 22:18:20 2019-09-22 22:20:15 t 1 2 102013 432 0.00 2019-09-22 22:17:24 2019-09-22 22:21:30 t 1 1 102016 220 0.00 2019-09-22 22:21:48 2019-09-22 22:22:39 t 1 1 102018 432 0.00 2019-09-22 22:22:57 2019-09-22 22:23:36 t 1 1 102021 432 0.00 2019-09-22 22:24:37 2019-09-22 22:24:40 t 1 1 102022 306 0.00 2019-09-22 22:26:25 2019-09-22 22:28:07 t 1 1 102031 220 0.00 2019-09-22 22:38:44 2019-09-22 22:39:21 t 1 1 102033 220 0.00 2019-09-22 22:40:03 2019-09-22 22:40:41 t 1 1 102037 402 0.00 2019-09-22 22:05:07 2019-09-22 22:47:06 t 1 2 102041 451 0.00 2019-09-22 22:42:40 2019-09-22 22:59:09 t 1 1 102044 476 0.00 2019-09-22 22:59:08 2019-09-22 23:04:43 t 1 2 102047 476 0.00 2019-09-22 23:06:37 2019-09-22 23:07:04 t 1 2 102049 451 0.00 2019-09-22 22:59:09 2019-09-22 23:10:54 t 1 1 102050 468 0.00 2019-09-22 23:21:59 2019-09-22 23:24:45 t 1 1 102052 451 0.00 2019-09-22 23:10:54 2019-09-22 23:28:14 t 1 1 102057 220 0.00 2019-09-22 22:41:23 2019-09-22 23:42:09 t 1 1 102058 464 0.00 2019-09-22 23:41:01 2019-09-22 23:44:02 t 1 1 102060 464 0.00 2019-09-22 23:46:59 2019-09-22 23:50:53 t 1 1 102062 392 0.00 2019-09-22 20:46:15 2019-09-22 23:52:11 t 1 2 102063 461 0.00 2019-09-22 23:07:26 2019-09-23 00:05:12 t 1 2 102065 327 0.00 2019-09-23 00:39:16 2019-09-23 00:40:09 t 1 1 102068 461 0.00 2019-09-23 00:05:40 2019-09-23 00:55:45 t 1 2 102069 395 0.00 2019-09-22 22:42:12 2019-09-23 01:07:47 t 1 2 102071 379 0.00 2019-09-22 12:44:31 2019-09-23 02:19:49 t 1 1 102074 311 0.00 2019-09-23 03:04:29 2019-09-23 03:32:52 t 1 2 102076 430 0.00 2019-09-23 04:54:03 2019-09-23 05:12:25 t 1 1 102077 220 0.00 2019-09-23 05:32:16 2019-09-23 05:36:04 t 1 1 102079 402 0.00 2019-09-23 05:37:07 2019-09-23 05:47:10 t 1 2 102081 464 0.00 2019-09-23 05:37:59 2019-09-23 05:57:00 t 1 1 102085 461 0.00 2019-09-23 06:10:55 2019-09-23 06:21:00 t 1 2 102089 220 0.00 2019-09-23 06:26:23 2019-09-23 06:38:47 t 1 2 102091 461 0.00 2019-09-23 05:39:41 2019-09-23 06:51:05 t 1 2 102093 464 0.00 2019-09-23 07:10:00 2019-09-23 07:11:43 t 1 1 102096 402 0.00 2019-09-23 07:16:57 2019-09-23 07:25:30 t 1 2 102098 400 0.00 2019-09-23 07:32:19 2019-09-23 07:34:11 t 1 1 102107 220 0.00 2019-09-23 08:24:54 2019-09-23 08:25:29 t 1 1 102109 220 0.00 2019-09-23 08:26:04 2019-09-23 08:27:16 t 1 1 102115 220 0.00 2019-09-23 08:28:58 2019-09-23 08:30:25 t 1 1 102124 220 0.00 2019-09-23 08:35:55 2019-09-23 08:38:14 t 1 1 102128 220 0.00 2019-09-23 08:38:48 2019-09-23 08:42:31 t 1 1 102131 220 0.00 2019-09-23 08:43:07 2019-09-23 08:43:54 t 1 1 102133 445 0.00 2019-09-23 08:47:19 2019-09-23 08:48:24 t 1 1 102135 472 0.00 2019-09-23 08:48:34 2019-09-23 08:49:05 t 1 1 102140 445 0.00 2019-09-23 08:51:09 2019-09-23 08:54:29 t 1 1 102142 220 0.00 2019-09-23 08:43:53 2019-09-23 08:59:56 t 1 1 102144 400 0.00 2019-09-23 08:39:22 2019-09-23 09:04:44 t 1 1 102147 445 0.00 2019-09-23 09:06:36 2019-09-23 09:07:37 t 1 1 101889 430 0.00 2019-09-22 17:57:03 2019-09-22 17:57:50 t 1 1 101890 464 0.00 2019-09-22 17:57:16 2019-09-22 17:58:39 t 1 1 101896 327 0.00 2019-09-22 18:08:27 2019-09-22 18:08:51 t 1 1 101898 398 0.00 2019-09-22 18:09:57 2019-09-22 18:11:00 t 1 2 101899 398 0.00 2019-09-22 18:14:46 2019-09-22 18:15:50 t 1 2 101902 464 0.00 2019-09-22 18:15:59 2019-09-22 18:17:44 t 1 1 101905 402 0.00 2019-09-22 18:13:14 2019-09-22 18:23:20 t 1 2 101910 461 0.00 2019-09-22 18:33:55 2019-09-22 18:49:01 t 1 2 101918 462 0.00 2019-09-22 19:10:48 2019-09-22 19:17:36 t 1 1 101920 306 0.00 2019-09-22 19:25:45 2019-09-22 19:28:03 t 1 1 101922 451 0.00 2019-09-22 19:26:00 2019-09-22 19:33:00 t 1 1 101923 462 0.00 2019-09-22 19:17:36 2019-09-22 19:33:23 t 1 1 101927 220 0.00 2019-09-22 19:32:02 2019-09-22 19:39:25 t 1 2 101932 311 0.00 2019-09-22 18:49:09 2019-09-22 19:48:56 t 1 2 101934 420 0.00 2019-09-22 19:42:04 2019-09-22 19:50:23 t 1 1 101937 461 0.00 2019-09-22 19:38:46 2019-09-22 19:53:51 t 1 2 101943 470 0.00 2019-09-22 19:51:42 2019-09-22 20:05:10 t 1 1 101946 464 0.00 2019-09-22 20:06:45 2019-09-22 20:06:49 t 1 1 101948 451 0.00 2019-09-22 19:56:35 2019-09-22 20:08:59 t 1 1 101951 398 0.00 2019-09-22 19:51:25 2019-09-22 20:11:30 t 1 2 101954 451 0.00 2019-09-22 20:08:59 2019-09-22 20:27:46 t 1 1 101955 470 0.00 2019-09-22 20:05:10 2019-09-22 20:31:16 t 1 1 101961 470 0.00 2019-09-22 20:41:50 2019-09-22 20:52:17 t 1 1 101962 464 0.00 2019-09-22 20:55:18 2019-09-22 20:57:45 t 1 1 101964 398 0.00 2019-09-22 21:04:15 2019-09-22 21:05:21 t 1 2 101967 395 0.00 2019-09-22 18:23:58 2019-09-22 21:18:20 t 1 2 101975 461 0.00 2019-09-22 21:28:22 2019-09-22 21:43:28 t 1 2 101979 470 0.00 2019-09-22 21:38:05 2019-09-22 21:56:01 t 1 1 101981 296 0.00 2019-09-22 21:47:42 2019-09-22 21:58:05 t 1 2 101984 400 0.00 2019-09-22 21:58:49 2019-09-22 22:03:03 t 1 1 101986 432 0.00 2019-09-22 21:45:20 2019-09-22 22:05:53 t 1 1 101988 220 0.00 2019-09-22 22:09:52 2019-09-22 22:10:54 t 1 2 101996 306 0.00 2019-09-22 22:05:07 2019-09-22 22:15:24 t 1 1 101999 220 0.00 2019-09-22 22:15:51 2019-09-22 22:16:07 t 1 1 102000 220 0.00 2019-09-22 22:16:07 2019-09-22 22:16:44 t 1 1 102001 220 0.00 2019-09-22 22:16:44 2019-09-22 22:17:21 t 1 1 102003 470 0.00 2019-09-22 22:13:45 2019-09-22 22:17:37 t 1 1 102005 220 0.00 2019-09-22 22:17:21 2019-09-22 22:18:00 t 1 1 102007 220 0.00 2019-09-22 22:18:00 2019-09-22 22:18:38 t 1 1 102008 220 0.00 2019-09-22 22:18:38 2019-09-22 22:19:17 t 1 1 102012 220 0.00 2019-09-22 22:20:30 2019-09-22 22:21:07 t 1 1 102015 464 0.00 2019-09-22 21:22:28 2019-09-22 22:22:16 t 1 1 102017 412 0.00 2019-09-22 21:55:37 2019-09-22 22:22:44 t 1 1 102019 220 0.00 2019-09-22 22:22:38 2019-09-22 22:23:53 t 1 1 102020 220 0.00 2019-09-22 22:23:30 2019-09-22 22:24:30 t 1 1 102023 432 0.00 2019-09-22 22:29:14 2019-09-22 22:29:37 t 1 1 102024 432 0.00 2019-09-22 22:34:52 2019-09-22 22:35:27 t 1 1 102026 432 0.00 2019-09-22 22:37:14 2019-09-22 22:37:19 t 1 1 102027 339 0.00 2019-09-22 20:49:59 2019-09-22 22:38:21 t 1 2 102029 220 0.00 2019-09-22 22:24:30 2019-09-22 22:38:44 t 1 1 102034 432 0.00 2019-09-22 22:39:19 2019-09-22 22:40:43 t 1 1 102035 220 0.00 2019-09-22 22:40:41 2019-09-22 22:41:23 t 1 1 102036 400 0.00 2019-09-22 22:10:21 2019-09-22 22:42:36 t 1 1 102040 461 0.00 2019-09-22 22:31:56 2019-09-22 22:58:42 t 1 2 102045 385 0.00 2019-09-22 23:06:10 2019-09-22 23:06:10 f 1 2 102046 385 0.00 2019-09-22 23:06:23 2019-09-22 23:06:23 f 1 2 102053 400 0.00 2019-09-22 23:19:30 2019-09-22 23:28:59 t 1 1 102056 451 0.00 2019-09-22 23:28:14 2019-09-22 23:41:36 t 1 1 102059 451 0.00 2019-09-22 23:41:36 2019-09-22 23:47:37 t 1 1 102064 412 0.00 2019-09-22 22:56:20 2019-09-23 00:08:34 t 1 1 102066 327 0.00 2019-09-23 00:40:07 2019-09-23 00:41:26 t 1 1 102067 327 0.00 2019-09-23 00:43:00 2019-09-23 00:47:17 t 1 1 102070 395 0.00 2019-09-23 01:38:03 2019-09-23 02:11:06 t 1 2 102072 311 0.00 2019-09-23 01:55:56 2019-09-23 03:04:17 t 1 2 102073 412 0.00 2019-09-23 00:08:34 2019-09-23 03:14:23 t 1 1 102075 412 0.00 2019-09-23 03:14:23 2019-09-23 03:47:36 t 1 1 102078 464 0.00 2019-09-23 05:13:29 2019-09-23 05:37:56 t 1 1 102082 420 0.00 2019-09-23 05:49:58 2019-09-23 06:05:16 t 1 1 102083 464 0.00 2019-09-23 05:58:26 2019-09-23 06:13:22 t 1 1 102088 445 0.00 2019-09-23 06:26:52 2019-09-23 06:33:50 t 1 1 102090 220 0.00 2019-09-23 06:43:35 2019-09-23 06:48:06 t 1 1 102094 400 0.00 2019-09-23 07:10:32 2019-09-23 07:12:00 t 1 1 102097 306 0.00 2019-09-23 07:26:14 2019-09-23 07:30:47 t 1 1 102099 430 0.00 2019-09-23 07:44:56 2019-09-23 07:45:46 t 1 1 102100 464 0.00 2019-09-23 07:48:49 2019-09-23 07:49:25 t 1 1 102101 412 0.00 2019-09-23 07:39:01 2019-09-23 08:02:40 t 1 1 102102 296 0.00 2019-09-23 08:05:15 2019-09-23 08:08:39 t 1 2 102103 464 0.00 2019-09-23 08:13:01 2019-09-23 08:14:34 t 1 1 102112 220 0.00 2019-09-23 08:28:23 2019-09-23 08:28:58 t 1 1 102118 220 0.00 2019-09-23 08:30:55 2019-09-23 08:33:09 t 1 1 102119 220 0.00 2019-09-23 08:33:08 2019-09-23 08:33:41 t 1 1 102121 424 0.00 2019-09-23 08:05:09 2019-09-23 08:34:38 t 1 2 102126 220 0.00 2019-09-23 08:38:13 2019-09-23 08:38:49 t 1 1 102127 445 0.00 2019-09-23 08:30:50 2019-09-23 08:41:09 t 1 1 102130 306 0.00 2019-09-23 08:35:50 2019-09-23 08:43:26 t 1 1 102132 445 0.00 2019-09-23 08:41:10 2019-09-23 08:47:20 t 1 1 102134 402 0.00 2019-09-23 07:28:25 2019-09-23 08:48:30 t 1 2 102136 472 0.00 2019-09-23 08:39:49 2019-09-23 08:49:54 t 1 2 102137 445 0.00 2019-09-23 08:49:10 2019-09-23 08:51:06 t 1 1 102139 472 0.00 2019-09-23 08:52:08 2019-09-23 08:52:13 t 1 1 102141 432 0.00 2019-09-23 08:49:42 2019-09-23 08:56:55 t 1 1 102143 456 0.00 2019-09-23 09:01:42 2019-09-23 09:03:16 t 1 1 102145 445 0.00 2019-09-23 08:57:02 2019-09-23 09:04:47 t 1 1 102146 464 0.00 2019-09-23 08:54:16 2019-09-23 09:07:32 t 1 1 102148 464 0.00 2019-09-23 09:07:35 2019-09-23 09:07:53 t 1 1 102151 445 0.00 2019-09-23 09:18:26 2019-09-23 09:20:08 t 1 1 102154 432 0.00 2019-09-23 09:41:14 2019-09-23 09:47:56 t 1 1 102161 379 0.00 2019-09-23 09:58:07 2019-09-23 09:58:21 t 1 2 102164 432 0.00 2019-09-23 10:01:45 2019-09-23 10:02:22 t 1 1 102170 220 0.00 2019-09-23 10:19:39 2019-09-23 10:24:44 t 1 1 102171 325 0.00 2019-09-23 09:53:12 2019-09-23 10:28:17 t 1 2 102172 445 0.00 2019-09-23 10:14:28 2019-09-23 10:29:07 t 1 1 102173 445 0.00 2019-09-23 10:29:07 2019-09-23 10:30:05 t 1 1 102182 445 0.00 2019-09-23 11:09:19 2019-09-23 11:11:09 t 1 1 102183 470 0.00 2019-09-23 11:03:54 2019-09-23 11:14:51 t 1 1 102184 464 0.00 2019-09-23 11:15:36 2019-09-23 11:19:47 t 1 1 102188 470 0.00 2019-09-23 11:24:37 2019-09-23 11:33:12 t 1 1 101974 430 0.00 2019-09-22 21:00:24 2019-09-22 21:39:00 t 1 1 101976 430 0.00 2019-09-22 21:39:00 2019-09-22 21:47:25 t 1 1 101977 400 0.00 2019-09-22 21:48:43 2019-09-22 21:51:50 t 1 1 101978 412 0.00 2019-09-22 21:01:38 2019-09-22 21:55:37 t 1 1 101987 456 0.00 2019-09-22 22:03:00 2019-09-22 22:09:40 t 1 1 101990 220 0.00 2019-09-22 22:04:26 2019-09-22 22:12:02 t 1 1 101991 220 0.00 2019-09-22 22:12:02 2019-09-22 22:12:39 t 1 1 101992 220 0.00 2019-09-22 22:12:39 2019-09-22 22:13:25 t 1 1 101993 220 0.00 2019-09-22 22:13:24 2019-09-22 22:14:01 t 1 1 101994 220 0.00 2019-09-22 22:14:01 2019-09-22 22:14:38 t 1 1 101998 220 0.00 2019-09-22 22:15:29 2019-09-22 22:15:52 t 1 1 102004 220 0.00 2019-09-22 22:06:32 2019-09-22 22:17:50 t 1 2 102011 220 0.00 2019-09-22 22:19:54 2019-09-22 22:20:30 t 1 1 102014 220 0.00 2019-09-22 22:21:07 2019-09-22 22:22:01 t 1 1 102025 220 0.00 2019-09-22 22:34:44 2019-09-22 22:35:46 t 1 2 102028 220 0.00 2019-09-22 22:37:19 2019-09-22 22:38:24 t 1 2 102030 464 0.00 2019-09-22 22:36:19 2019-09-22 22:38:45 t 1 1 102032 220 0.00 2019-09-22 22:39:21 2019-09-22 22:40:03 t 1 1 102038 412 0.00 2019-09-22 22:22:44 2019-09-22 22:56:20 t 1 1 102039 464 0.00 2019-09-22 22:55:37 2019-09-22 22:57:27 t 1 1 102042 411 0.00 2019-09-22 08:36:56 2019-09-22 23:00:43 t 1 1 102043 461 0.00 2019-09-22 23:04:43 2019-09-22 23:04:43 f 1 2 102048 461 0.00 2019-09-22 23:07:07 2019-09-22 23:07:10 t 1 2 102051 339 0.00 2019-09-22 23:16:54 2019-09-22 23:27:59 t 1 2 102054 339 0.00 2019-09-22 23:28:23 2019-09-22 23:37:43 t 1 2 102055 424 0.00 2019-09-22 23:36:44 2019-09-22 23:39:44 t 1 2 102061 402 0.00 2019-09-22 22:46:38 2019-09-22 23:51:43 t 1 2 102080 420 0.00 2019-09-23 05:24:47 2019-09-23 05:49:59 t 1 1 102084 420 0.00 2019-09-23 06:05:16 2019-09-23 06:20:46 t 1 1 102086 464 0.00 2019-09-23 06:29:18 2019-09-23 06:29:39 t 1 1 102087 402 0.00 2019-09-23 06:31:59 2019-09-23 06:32:24 t 1 2 102092 464 0.00 2019-09-23 06:51:59 2019-09-23 07:00:29 t 1 1 102095 424 0.00 2019-09-23 05:25:52 2019-09-23 07:14:16 t 1 2 102104 220 0.00 2019-09-23 07:44:11 2019-09-23 08:14:34 t 1 2 102105 325 0.00 2019-09-23 07:55:46 2019-09-23 08:20:51 t 1 2 102106 220 0.00 2019-09-23 07:26:26 2019-09-23 08:24:54 t 1 1 102108 220 0.00 2019-09-23 08:25:29 2019-09-23 08:26:04 t 1 1 102110 220 0.00 2019-09-23 08:27:15 2019-09-23 08:27:51 t 1 1 102111 220 0.00 2019-09-23 08:27:51 2019-09-23 08:28:23 t 1 1 102113 416 0.00 2019-09-23 08:07:09 2019-09-23 08:29:11 t 1 1 102114 445 0.00 2019-09-23 06:33:50 2019-09-23 08:29:32 t 1 1 102116 445 0.00 2019-09-23 08:29:32 2019-09-23 08:30:50 t 1 1 102117 220 0.00 2019-09-23 08:30:24 2019-09-23 08:30:55 t 1 1 102120 400 0.00 2019-09-23 08:32:15 2019-09-23 08:34:11 t 1 1 102122 220 0.00 2019-09-23 08:33:41 2019-09-23 08:35:23 t 1 1 102123 220 0.00 2019-09-23 08:35:22 2019-09-23 08:35:55 t 1 1 102125 464 0.00 2019-09-23 08:30:32 2019-09-23 08:38:45 t 1 1 102129 220 0.00 2019-09-23 08:42:30 2019-09-23 08:43:07 t 1 1 102138 472 0.00 2019-09-23 08:51:43 2019-09-23 08:51:58 t 1 1 102149 445 0.00 2019-09-23 09:08:41 2019-09-23 09:15:42 t 1 1 102152 412 0.00 2019-09-23 08:02:40 2019-09-23 09:37:05 t 1 1 102156 220 0.00 2019-09-23 09:32:21 2019-09-23 09:51:50 t 1 2 102157 432 0.00 2019-09-23 09:54:31 2019-09-23 09:54:32 t 1 1 102159 432 0.00 2019-09-23 09:55:38 2019-09-23 09:56:28 t 1 1 102162 445 0.00 2019-09-23 09:21:30 2019-09-23 10:00:05 t 1 1 102163 445 0.00 2019-09-23 10:00:04 2019-09-23 10:01:09 t 1 1 102165 445 0.00 2019-09-23 10:01:18 2019-09-23 10:04:43 t 1 1 102167 432 0.00 2019-09-23 10:07:48 2019-09-23 10:08:14 t 1 1 102175 306 0.00 2019-09-23 10:35:34 2019-09-23 10:39:56 t 1 1 102180 325 0.00 2019-09-23 10:46:49 2019-09-23 11:06:55 t 1 2 102181 445 0.00 2019-09-23 10:30:05 2019-09-23 11:08:29 t 1 1 102186 470 0.00 2019-09-23 11:14:51 2019-09-23 11:24:37 t 1 1 102187 464 0.00 2019-09-23 11:19:50 2019-09-23 11:27:19 t 1 1 102191 464 0.00 2019-09-23 11:27:22 2019-09-23 11:45:27 t 1 1 102199 445 0.00 2019-09-23 11:50:45 2019-09-23 11:53:49 t 1 1 102205 445 0.00 2019-09-23 12:00:36 2019-09-23 12:03:01 t 1 1 102206 464 0.00 2019-09-23 12:03:16 2019-09-23 12:04:13 t 1 1 102207 379 0.00 2019-09-23 12:01:15 2019-09-23 12:07:17 t 1 1 102208 470 0.00 2019-09-23 11:51:37 2019-09-23 12:07:32 t 1 1 102216 392 0.00 2019-09-23 12:23:41 2019-09-23 12:23:41 f 1 2 102218 420 0.00 2019-09-23 12:13:30 2019-09-23 12:25:27 t 1 1 102219 392 0.00 2019-09-23 12:26:18 2019-09-23 12:26:18 f 1 2 102223 392 0.00 2019-09-23 12:32:52 2019-09-23 12:32:52 f 1 2 102227 412 0.00 2019-09-23 09:37:05 2019-09-23 12:38:29 t 1 1 102232 461 0.00 2019-09-23 12:38:30 2019-09-23 12:48:36 t 1 2 102237 327 0.00 2019-09-23 12:55:12 2019-09-23 12:55:37 t 1 1 102239 392 0.00 2019-09-23 12:56:52 2019-09-23 12:56:52 f 1 2 102245 395 0.00 2019-09-23 10:15:27 2019-09-23 13:04:17 t 1 2 102249 464 0.00 2019-09-23 13:09:16 2019-09-23 13:15:33 t 1 1 102253 451 0.00 2019-09-23 13:05:35 2019-09-23 13:28:29 t 1 1 102254 451 0.00 2019-09-23 13:28:29 2019-09-23 13:32:13 t 1 1 102257 392 0.00 2019-09-23 13:34:25 2019-09-23 13:34:25 f 1 2 102263 220 0.00 2019-09-23 13:40:21 2019-09-23 13:41:44 t 1 2 102265 412 0.00 2019-09-23 12:38:29 2019-09-23 13:42:06 t 1 1 102267 420 0.00 2019-09-23 13:05:27 2019-09-23 13:44:23 t 1 1 102268 420 0.00 2019-09-23 13:44:26 2019-09-23 13:44:58 t 1 1 102269 420 0.00 2019-09-23 13:44:58 2019-09-23 13:45:54 t 1 1 102271 220 0.00 2019-09-23 10:44:37 2019-09-23 13:50:01 t 1 1 102273 420 0.00 2019-09-23 13:45:54 2019-09-23 13:52:11 t 1 1 102275 327 0.00 2019-09-23 13:56:43 2019-09-23 13:59:49 t 1 1 102281 470 0.00 2019-09-23 13:05:04 2019-09-23 14:11:40 t 1 1 102282 306 0.00 2019-09-23 14:10:36 2019-09-23 14:11:51 t 1 1 102284 306 0.00 2019-09-23 14:17:43 2019-09-23 14:21:06 t 1 1 102285 288 0.00 2019-09-23 13:45:33 2019-09-23 14:21:18 t 1 1 102286 306 0.00 2019-09-23 14:21:13 2019-09-23 14:23:17 t 1 1 102291 327 0.00 2019-09-23 14:11:49 2019-09-23 14:40:53 t 1 1 102292 416 0.00 2019-09-23 12:36:09 2019-09-23 14:41:38 t 1 1 102303 327 0.00 2019-09-23 14:52:26 2019-09-23 15:02:02 t 1 1 102305 470 0.00 2019-09-23 14:56:24 2019-09-23 15:05:29 t 1 1 102311 470 0.00 2019-09-23 15:05:29 2019-09-23 15:12:02 t 1 1 102313 327 0.00 2019-09-23 15:12:38 2019-09-23 15:13:10 t 1 1 102314 451 0.00 2019-09-23 14:40:03 2019-09-23 15:14:06 t 1 1 102316 306 0.00 2019-09-23 14:53:34 2019-09-23 15:16:00 t 1 1 102318 327 0.00 2019-09-23 15:19:48 2019-09-23 15:20:50 t 1 1 102321 327 0.00 2019-09-23 15:23:06 2019-09-23 15:24:59 t 1 1 102329 327 0.00 2019-09-23 15:29:47 2019-09-23 15:30:15 t 1 1 102335 412 0.00 2019-09-23 15:01:41 2019-09-23 15:35:35 t 1 1 102150 445 0.00 2019-09-23 09:16:37 2019-09-23 09:17:56 t 1 1 102153 464 0.00 2019-09-23 09:07:57 2019-09-23 09:42:41 t 1 1 102155 432 0.00 2019-09-23 09:48:42 2019-09-23 09:49:23 t 1 1 102158 296 0.00 2019-09-23 09:48:29 2019-09-23 09:55:52 t 1 2 102160 306 0.00 2019-09-23 09:49:56 2019-09-23 09:57:11 t 1 1 102166 445 0.00 2019-09-23 10:04:42 2019-09-23 10:05:52 t 1 1 102168 432 0.00 2019-09-23 10:09:11 2019-09-23 10:12:36 t 1 1 102169 445 0.00 2019-09-23 10:05:52 2019-09-23 10:14:16 t 1 1 102174 461 0.00 2019-09-23 09:28:12 2019-09-23 10:34:49 t 1 2 102176 247 0.00 2019-09-23 10:43:11 2019-09-23 10:43:53 t 1 2 102177 470 0.00 2019-09-23 10:51:33 2019-09-23 11:03:54 t 1 1 102178 472 0.00 2019-09-23 11:01:03 2019-09-23 11:04:18 t 1 1 102179 220 0.00 2019-09-23 11:03:42 2019-09-23 11:05:15 t 1 2 102185 445 0.00 2019-09-23 11:11:50 2019-09-23 11:23:45 t 1 1 102190 379 0.00 2019-09-23 09:58:24 2019-09-23 11:44:14 t 1 1 102193 445 0.00 2019-09-23 11:23:44 2019-09-23 11:49:47 t 1 1 102197 464 0.00 2019-09-23 11:50:52 2019-09-23 11:52:46 t 1 1 102198 464 0.00 2019-09-23 11:52:49 2019-09-23 11:53:38 t 1 1 102200 379 0.00 2019-09-23 11:52:44 2019-09-23 11:56:42 t 1 1 102201 456 0.00 2019-09-23 11:55:34 2019-09-23 11:57:41 t 1 1 102202 464 0.00 2019-09-23 11:53:46 2019-09-23 11:59:34 t 1 1 102203 445 0.00 2019-09-23 11:55:24 2019-09-23 12:00:35 t 1 1 102204 379 0.00 2019-09-23 11:56:42 2019-09-23 12:01:15 t 1 1 102209 420 0.00 2019-09-23 12:02:50 2019-09-23 12:07:39 t 1 1 102215 392 0.00 2019-09-23 12:23:33 2019-09-23 12:23:33 f 1 2 102217 470 0.00 2019-09-23 12:07:32 2019-09-23 12:24:02 t 1 1 102222 392 0.00 2019-09-23 12:32:45 2019-09-23 12:32:45 f 1 2 102225 420 0.00 2019-09-23 12:33:46 2019-09-23 12:34:24 t 1 1 102226 470 0.00 2019-09-23 12:24:02 2019-09-23 12:37:10 t 1 1 102228 379 0.00 2019-09-23 12:33:33 2019-09-23 12:40:11 t 1 1 102229 379 0.00 2019-09-23 12:40:11 2019-09-23 12:44:10 t 1 1 102235 327 0.00 2019-09-23 12:17:01 2019-09-23 12:54:27 t 1 1 102238 392 0.00 2019-09-23 12:56:44 2019-09-23 12:56:44 f 1 2 102243 327 0.00 2019-09-23 12:59:29 2019-09-23 13:01:34 t 1 1 102244 420 0.00 2019-09-23 12:34:24 2019-09-23 13:04:07 t 1 1 102247 422 0.00 2019-09-23 10:33:24 2019-09-23 13:07:35 t 1 1 102251 398 0.00 2019-09-23 12:37:17 2019-09-23 13:27:22 t 1 2 102252 288 0.00 2019-09-23 13:18:47 2019-09-23 13:27:57 t 1 1 102255 306 0.00 2019-09-23 13:27:24 2019-09-23 13:34:03 t 1 1 102256 392 0.00 2019-09-23 13:34:20 2019-09-23 13:34:20 f 1 2 102262 464 0.00 2019-09-23 13:39:38 2019-09-23 13:41:39 t 1 1 102272 220 0.00 2019-09-23 13:41:43 2019-09-23 13:50:07 t 1 2 102274 464 0.00 2019-09-23 13:51:26 2019-09-23 13:55:12 t 1 1 102276 445 0.00 2019-09-23 12:03:01 2019-09-23 13:59:54 t 1 1 102277 327 0.00 2019-09-23 14:00:46 2019-09-23 14:01:43 t 1 1 102278 325 0.00 2019-09-23 13:12:20 2019-09-23 14:07:21 t 1 2 102280 445 0.00 2019-09-23 13:59:54 2019-09-23 14:08:32 t 1 1 102283 451 0.00 2019-09-23 13:32:13 2019-09-23 14:17:11 t 1 1 102295 412 0.00 2019-09-23 13:42:06 2019-09-23 14:45:27 t 1 1 102299 327 0.00 2019-09-23 14:50:34 2019-09-23 14:51:40 t 1 1 102300 470 0.00 2019-09-23 14:46:15 2019-09-23 14:56:24 t 1 1 102301 402 0.00 2019-09-23 13:12:23 2019-09-23 14:57:28 t 1 2 102302 412 0.00 2019-09-23 14:45:27 2019-09-23 15:01:41 t 1 1 102304 327 0.00 2019-09-23 15:02:38 2019-09-23 15:03:30 t 1 1 102307 327 0.00 2019-09-23 15:07:06 2019-09-23 15:07:51 t 1 1 102312 327 0.00 2019-09-23 15:12:20 2019-09-23 15:12:20 t 1 1 102319 327 0.00 2019-09-23 15:21:17 2019-09-23 15:22:37 t 1 1 102322 306 0.00 2019-09-23 15:23:37 2019-09-23 15:26:39 t 1 1 102324 306 0.00 2019-09-23 15:26:44 2019-09-23 15:26:45 t 1 1 102327 464 0.00 2019-09-23 15:26:27 2019-09-23 15:28:38 t 1 1 102331 327 0.00 2019-09-23 15:30:31 2019-09-23 15:31:39 t 1 1 102336 306 0.00 2019-09-23 15:36:11 2019-09-23 15:37:55 t 1 1 102341 327 0.00 2019-09-23 15:43:13 2019-09-23 15:43:13 t 1 1 102343 400 0.00 2019-09-23 13:27:32 2019-09-23 15:46:30 t 1 1 102351 470 0.00 2019-09-23 15:46:51 2019-09-23 15:57:23 t 1 1 102353 220 0.00 2019-09-23 15:36:20 2019-09-23 15:58:52 t 1 1 102354 327 0.00 2019-09-23 15:58:55 2019-09-23 15:59:27 t 1 1 102361 327 0.00 2019-09-23 16:05:05 2019-09-23 16:05:38 t 1 1 102362 327 0.00 2019-09-23 16:06:24 2019-09-23 16:06:24 t 1 1 102364 432 0.00 2019-09-23 16:07:08 2019-09-23 16:07:34 t 1 1 102367 327 0.00 2019-09-23 16:07:01 2019-09-23 16:09:21 t 1 1 102371 464 0.00 2019-09-23 16:14:55 2019-09-23 16:16:13 t 1 1 102372 464 0.00 2019-09-23 16:16:25 2019-09-23 16:16:47 t 1 1 102375 464 0.00 2019-09-23 16:19:11 2019-09-23 16:19:58 t 1 1 102382 327 0.00 2019-09-23 16:32:36 2019-09-23 16:33:13 t 1 1 102385 432 0.00 2019-09-23 16:37:49 2019-09-23 16:38:33 t 1 1 102387 327 0.00 2019-09-23 16:39:24 2019-09-23 16:40:05 t 1 1 102388 220 0.00 2019-09-23 15:57:56 2019-09-23 16:41:04 t 1 1 102392 306 0.00 2019-09-23 16:47:23 2019-09-23 16:50:19 t 1 1 102396 247 0.00 2019-09-23 16:52:17 2019-09-23 16:54:10 t 1 2 102398 464 0.00 2019-09-23 16:54:22 2019-09-23 16:58:52 t 1 1 102399 416 0.00 2019-09-23 16:28:18 2019-09-23 17:00:54 t 1 1 102401 327 0.00 2019-09-23 17:01:55 2019-09-23 17:02:27 t 1 1 102402 306 0.00 2019-09-23 16:57:55 2019-09-23 17:04:00 t 1 1 102404 432 0.00 2019-09-23 16:54:32 2019-09-23 17:06:29 t 1 1 102407 432 0.00 2019-09-23 17:08:27 2019-09-23 17:09:15 t 1 1 102408 470 0.00 2019-09-23 16:14:35 2019-09-23 17:10:20 t 1 1 102409 432 0.00 2019-09-23 17:14:15 2019-09-23 17:15:00 t 1 1 102410 327 0.00 2019-09-23 17:13:10 2019-09-23 17:16:07 t 1 1 102412 416 0.00 2019-09-23 17:01:22 2019-09-23 17:17:29 t 1 1 102413 306 0.00 2019-09-23 17:12:21 2019-09-23 17:18:15 t 1 1 102415 392 0.00 2019-09-23 17:22:32 2019-09-23 17:22:32 f 1 2 102417 470 0.00 2019-09-23 17:10:20 2019-09-23 17:25:10 t 1 1 102425 451 0.00 2019-09-23 17:29:40 2019-09-23 17:41:36 t 1 1 102430 432 0.00 2019-09-23 17:47:48 2019-09-23 17:48:50 t 1 1 102435 470 0.00 2019-09-23 17:53:26 2019-09-23 18:03:19 t 1 1 102441 470 0.00 2019-09-23 18:03:19 2019-09-23 18:21:06 t 1 1 102442 461 0.00 2019-09-23 17:51:14 2019-09-23 18:21:19 t 1 2 102447 470 0.00 2019-09-23 18:21:06 2019-09-23 18:30:50 t 1 1 102448 416 0.00 2019-09-23 18:08:24 2019-09-23 18:31:43 t 1 1 102450 445 0.00 2019-09-23 18:28:36 2019-09-23 18:35:27 t 1 1 102460 445 0.00 2019-09-23 18:41:19 2019-09-23 18:46:31 t 1 1 102463 464 0.00 2019-09-23 18:48:32 2019-09-23 18:49:02 t 1 1 102467 456 0.00 2019-09-23 18:44:02 2019-09-23 18:51:12 t 1 1 102471 464 0.00 2019-09-23 18:52:41 2019-09-23 18:53:07 t 1 1 102472 325 0.00 2019-09-23 18:49:55 2019-09-23 18:53:38 t 1 2 102476 392 0.00 2019-09-23 18:57:29 2019-09-23 18:57:29 f 1 2 102189 327 0.00 2019-09-23 10:29:01 2019-09-23 11:35:29 t 1 1 102192 402 0.00 2019-09-23 11:35:46 2019-09-23 11:45:51 t 1 2 102194 464 0.00 2019-09-23 11:45:29 2019-09-23 11:49:49 t 1 1 102195 470 0.00 2019-09-23 11:33:12 2019-09-23 11:51:37 t 1 1 102196 379 0.00 2019-09-23 11:44:14 2019-09-23 11:52:44 t 1 1 102210 464 0.00 2019-09-23 12:09:10 2019-09-23 12:09:26 t 1 1 102211 420 0.00 2019-09-23 12:11:18 2019-09-23 12:12:25 t 1 1 102212 379 0.00 2019-09-23 12:07:17 2019-09-23 12:15:27 t 1 1 102213 379 0.00 2019-09-23 12:15:27 2019-09-23 12:21:08 t 1 1 102214 392 0.00 2019-09-23 12:23:22 2019-09-23 12:23:22 f 1 2 102220 379 0.00 2019-09-23 12:21:08 2019-09-23 12:27:33 t 1 1 102221 392 0.00 2019-09-23 12:32:34 2019-09-23 12:32:34 f 1 2 102224 379 0.00 2019-09-23 12:27:33 2019-09-23 12:33:33 t 1 1 102230 470 0.00 2019-09-23 12:37:10 2019-09-23 12:47:21 t 1 1 102231 464 0.00 2019-09-23 12:42:10 2019-09-23 12:48:21 t 1 1 102233 470 0.00 2019-09-23 12:47:21 2019-09-23 12:49:15 t 1 1 102234 462 0.00 2019-09-23 12:40:36 2019-09-23 12:53:41 t 1 1 102236 306 0.00 2019-09-23 12:35:21 2019-09-23 12:54:27 t 1 1 102240 392 0.00 2019-09-23 12:56:58 2019-09-23 12:56:58 f 1 2 102241 306 0.00 2019-09-23 12:56:13 2019-09-23 12:58:38 t 1 1 102242 379 0.00 2019-09-23 12:44:10 2019-09-23 13:01:15 t 1 1 102246 420 0.00 2019-09-23 13:04:27 2019-09-23 13:05:24 t 1 1 102248 464 0.00 2019-09-23 13:07:41 2019-09-23 13:08:59 t 1 1 102250 288 0.00 2019-09-23 13:08:35 2019-09-23 13:18:36 t 1 1 102258 392 0.00 2019-09-23 13:34:31 2019-09-23 13:34:31 f 1 2 102259 327 0.00 2019-09-23 13:20:48 2019-09-23 13:37:35 t 1 1 102260 464 0.00 2019-09-23 13:15:41 2019-09-23 13:39:33 t 1 1 102261 220 0.00 2019-09-23 13:37:32 2019-09-23 13:40:55 t 1 2 102264 327 0.00 2019-09-23 13:40:44 2019-09-23 13:41:57 t 1 1 102266 464 0.00 2019-09-23 13:41:48 2019-09-23 13:44:15 t 1 1 102270 327 0.00 2019-09-23 13:45:17 2019-09-23 13:46:43 t 1 1 102279 464 0.00 2019-09-23 14:06:17 2019-09-23 14:07:49 t 1 1 102287 395 0.00 2019-09-23 14:10:41 2019-09-23 14:24:17 t 1 2 102288 451 0.00 2019-09-23 14:17:11 2019-09-23 14:28:05 t 1 1 102289 306 0.00 2019-09-23 14:26:58 2019-09-23 14:30:45 t 1 1 102290 451 0.00 2019-09-23 14:28:05 2019-09-23 14:40:03 t 1 1 102293 470 0.00 2019-09-23 14:11:40 2019-09-23 14:41:43 t 1 1 102294 327 0.00 2019-09-23 14:41:14 2019-09-23 14:42:34 t 1 1 102296 470 0.00 2019-09-23 14:41:43 2019-09-23 14:46:15 t 1 1 102297 436 0.00 2019-09-23 14:35:53 2019-09-23 14:48:53 t 1 1 102298 288 0.00 2019-09-23 14:49:41 2019-09-23 14:50:46 t 1 2 102306 327 0.00 2019-09-23 15:04:02 2019-09-23 15:05:51 t 1 1 102308 464 0.00 2019-09-23 15:06:39 2019-09-23 15:08:09 t 1 1 102309 327 0.00 2019-09-23 15:08:12 2019-09-23 15:08:55 t 1 1 102310 327 0.00 2019-09-23 15:09:35 2019-09-23 15:11:46 t 1 1 102315 327 0.00 2019-09-23 15:14:05 2019-09-23 15:15:11 t 1 1 102317 327 0.00 2019-09-23 15:15:55 2019-09-23 15:19:20 t 1 1 102320 470 0.00 2019-09-23 15:12:02 2019-09-23 15:23:03 t 1 1 102323 327 0.00 2019-09-23 15:25:40 2019-09-23 15:26:41 t 1 1 102325 327 0.00 2019-09-23 15:25:51 2019-09-23 15:27:12 t 1 1 102326 327 0.00 2019-09-23 15:27:21 2019-09-23 15:28:13 t 1 1 102328 464 0.00 2019-09-23 15:28:41 2019-09-23 15:29:35 t 1 1 102330 464 0.00 2019-09-23 15:29:35 2019-09-23 15:30:36 t 1 1 102332 470 0.00 2019-09-23 15:23:03 2019-09-23 15:34:08 t 1 1 102333 220 0.00 2019-09-23 15:24:02 2019-09-23 15:35:07 t 1 2 102334 327 0.00 2019-09-23 15:31:49 2019-09-23 15:35:17 t 1 1 102340 327 0.00 2019-09-23 15:42:56 2019-09-23 15:43:06 t 1 1 102342 327 0.00 2019-09-23 15:43:27 2019-09-23 15:44:24 t 1 1 102345 327 0.00 2019-09-23 15:46:41 2019-09-23 15:47:10 t 1 1 102348 306 0.00 2019-09-23 15:45:21 2019-09-23 15:54:08 t 1 1 102352 327 0.00 2019-09-23 15:56:39 2019-09-23 15:58:12 t 1 1 102355 461 0.00 2019-09-23 15:49:38 2019-09-23 15:59:44 t 1 2 102363 432 0.00 2019-09-23 15:56:54 2019-09-23 16:06:56 t 1 1 102365 327 0.00 2019-09-23 16:07:25 2019-09-23 16:07:53 t 1 1 102366 327 0.00 2019-09-23 16:08:03 2019-09-23 16:09:14 t 1 1 102368 327 0.00 2019-09-23 16:09:24 2019-09-23 16:10:40 t 1 1 102373 327 0.00 2019-09-23 16:13:55 2019-09-23 16:19:04 t 1 1 102377 445 0.00 2019-09-23 14:08:32 2019-09-23 16:25:41 t 1 1 102379 306 0.00 2019-09-23 15:57:55 2019-09-23 16:27:09 t 1 1 102381 327 0.00 2019-09-23 16:23:44 2019-09-23 16:30:53 t 1 1 102386 306 0.00 2019-09-23 16:31:33 2019-09-23 16:39:40 t 1 1 102389 464 0.00 2019-09-23 16:38:47 2019-09-23 16:44:46 t 1 1 102391 327 0.00 2019-09-23 16:42:49 2019-09-23 16:48:26 t 1 1 102393 327 0.00 2019-09-23 16:49:32 2019-09-23 16:51:03 t 1 1 102400 327 0.00 2019-09-23 16:56:33 2019-09-23 17:00:56 t 1 1 102403 327 0.00 2019-09-23 17:03:34 2019-09-23 17:05:47 t 1 1 102406 392 0.00 2019-09-23 17:09:11 2019-09-23 17:09:11 f 1 2 102414 333 0.00 2019-09-23 17:16:31 2019-09-23 17:18:21 t 1 2 102418 432 0.00 2019-09-23 17:24:47 2019-09-23 17:25:15 t 1 1 102421 432 0.00 2019-09-23 17:30:28 2019-09-23 17:31:12 t 1 1 102426 432 0.00 2019-09-23 17:41:54 2019-09-23 17:42:22 t 1 1 102427 451 0.00 2019-09-23 17:41:36 2019-09-23 17:45:08 t 1 1 102428 306 0.00 2019-09-23 17:20:42 2019-09-23 17:45:37 t 1 1 102429 432 0.00 2019-09-23 17:45:47 2019-09-23 17:47:03 t 1 1 102432 470 0.00 2019-09-23 17:49:57 2019-09-23 17:53:26 t 1 1 102434 462 0.00 2019-09-23 16:52:22 2019-09-23 18:01:33 t 1 1 102436 392 0.00 2019-09-23 18:04:28 2019-09-23 18:04:28 f 1 2 102437 306 0.00 2019-09-23 17:58:04 2019-09-23 18:06:11 t 1 1 102438 416 0.00 2019-09-23 17:36:53 2019-09-23 18:08:01 t 1 1 102443 464 0.00 2019-09-23 18:01:34 2019-09-23 18:21:54 t 1 1 102444 445 0.00 2019-09-23 18:09:10 2019-09-23 18:22:36 t 1 1 102449 462 0.00 2019-09-23 18:01:33 2019-09-23 18:33:50 t 1 1 102452 445 0.00 2019-09-23 18:35:27 2019-09-23 18:40:38 t 1 1 102454 470 0.00 2019-09-23 18:30:50 2019-09-23 18:42:33 t 1 1 102456 456 0.00 2019-09-23 18:39:51 2019-09-23 18:44:56 t 1 1 102457 462 0.00 2019-09-23 18:34:18 2019-09-23 18:45:20 t 1 1 102462 464 0.00 2019-09-23 18:47:24 2019-09-23 18:48:26 t 1 1 102464 325 0.00 2019-09-23 18:47:14 2019-09-23 18:49:02 t 1 2 102466 470 0.00 2019-09-23 18:42:33 2019-09-23 18:50:38 t 1 1 102468 445 0.00 2019-09-23 18:46:33 2019-09-23 18:51:14 t 1 1 102469 430 0.00 2019-09-23 18:20:35 2019-09-23 18:51:25 t 1 1 102470 464 0.00 2019-09-23 18:49:33 2019-09-23 18:52:33 t 1 1 102474 464 0.00 2019-09-23 18:53:33 2019-09-23 18:54:39 t 1 1 102485 445 0.00 2019-09-23 19:06:01 2019-09-23 19:08:14 t 1 1 102487 325 0.00 2019-09-23 18:54:30 2019-09-23 19:09:35 t 1 2 102488 325 0.00 2019-09-23 19:07:21 2019-09-23 19:10:21 t 1 2 102493 416 0.00 2019-09-23 18:31:48 2019-09-23 19:18:22 t 1 1 102337 327 0.00 2019-09-23 15:36:06 2019-09-23 15:38:27 t 1 1 102338 327 0.00 2019-09-23 15:39:08 2019-09-23 15:41:21 t 1 1 102339 327 0.00 2019-09-23 15:42:08 2019-09-23 15:42:23 t 1 1 102344 470 0.00 2019-09-23 15:34:08 2019-09-23 15:46:51 t 1 1 102346 327 0.00 2019-09-23 15:47:36 2019-09-23 15:48:51 t 1 1 102347 327 0.00 2019-09-23 15:49:56 2019-09-23 15:50:43 t 1 1 102349 327 0.00 2019-09-23 15:52:21 2019-09-23 15:55:18 t 1 1 102350 327 0.00 2019-09-23 15:55:36 2019-09-23 15:56:26 t 1 1 102356 327 0.00 2019-09-23 15:59:49 2019-09-23 16:00:21 t 1 1 102357 327 0.00 2019-09-23 16:01:08 2019-09-23 16:01:18 t 1 1 102358 327 0.00 2019-09-23 16:01:56 2019-09-23 16:02:48 t 1 1 102359 327 0.00 2019-09-23 16:03:17 2019-09-23 16:03:50 t 1 1 102360 327 0.00 2019-09-23 16:04:01 2019-09-23 16:04:32 t 1 1 102369 327 0.00 2019-09-23 16:11:19 2019-09-23 16:12:48 t 1 1 102370 470 0.00 2019-09-23 15:57:23 2019-09-23 16:14:00 t 1 1 102374 464 0.00 2019-09-23 16:17:04 2019-09-23 16:19:05 t 1 1 102376 464 0.00 2019-09-23 16:20:08 2019-09-23 16:21:15 t 1 1 102378 296 0.00 2019-09-23 16:22:04 2019-09-23 16:25:45 t 1 2 102380 416 0.00 2019-09-23 14:41:38 2019-09-23 16:28:18 t 1 1 102383 432 0.00 2019-09-23 16:14:30 2019-09-23 16:37:25 t 1 1 102384 464 0.00 2019-09-23 16:36:53 2019-09-23 16:38:29 t 1 1 102390 451 0.00 2019-09-23 16:19:06 2019-09-23 16:45:40 t 1 1 102394 462 0.00 2019-09-23 16:41:51 2019-09-23 16:52:22 t 1 1 102395 432 0.00 2019-09-23 16:39:41 2019-09-23 16:53:55 t 1 1 102397 464 0.00 2019-09-23 16:44:51 2019-09-23 16:54:16 t 1 1 102405 392 0.00 2019-09-23 17:09:05 2019-09-23 17:09:05 f 1 2 102411 327 0.00 2019-09-23 17:16:51 2019-09-23 17:17:23 t 1 1 102416 379 0.00 2019-09-23 13:01:15 2019-09-23 17:24:58 t 1 1 102419 445 0.00 2019-09-23 16:28:02 2019-09-23 17:28:55 t 1 1 102420 220 0.00 2019-09-23 16:59:21 2019-09-23 17:29:19 t 1 2 102422 432 0.00 2019-09-23 17:32:05 2019-09-23 17:32:14 t 1 1 102423 416 0.00 2019-09-23 17:17:35 2019-09-23 17:36:47 t 1 1 102424 470 0.00 2019-09-23 17:25:10 2019-09-23 17:38:05 t 1 1 102431 470 0.00 2019-09-23 17:38:05 2019-09-23 17:49:57 t 1 1 102433 220 0.00 2019-09-23 17:47:33 2019-09-23 17:59:20 t 1 1 102439 445 0.00 2019-09-23 17:29:11 2019-09-23 18:09:10 t 1 1 102440 306 0.00 2019-09-23 18:11:02 2019-09-23 18:20:50 t 1 1 102445 445 0.00 2019-09-23 18:22:36 2019-09-23 18:24:23 t 1 1 102446 412 0.00 2019-09-23 15:35:35 2019-09-23 18:25:43 t 1 1 102451 306 0.00 2019-09-23 18:29:02 2019-09-23 18:38:26 t 1 1 102453 220 0.00 2019-09-23 17:59:20 2019-09-23 18:41:12 t 1 1 102455 392 0.00 2019-09-23 18:44:40 2019-09-23 18:44:40 f 1 2 102458 464 0.00 2019-09-23 18:44:55 2019-09-23 18:45:26 t 1 1 102459 220 0.00 2019-09-23 18:22:55 2019-09-23 18:46:15 t 1 2 102461 464 0.00 2019-09-23 18:45:29 2019-09-23 18:46:48 t 1 1 102465 464 0.00 2019-09-23 18:49:07 2019-09-23 18:49:27 t 1 1 102473 462 0.00 2019-09-23 18:49:26 2019-09-23 18:54:20 t 1 1 102475 432 0.00 2019-09-23 18:51:59 2019-09-23 18:54:56 t 1 1 102477 392 0.00 2019-09-23 18:57:36 2019-09-23 18:57:36 f 1 2 102480 445 0.00 2019-09-23 18:51:15 2019-09-23 19:03:40 t 1 1 102481 451 0.00 2019-09-23 19:00:04 2019-09-23 19:05:07 t 1 1 102482 445 0.00 2019-09-23 19:04:24 2019-09-23 19:05:39 t 1 1 102486 306 0.00 2019-09-23 18:44:35 2019-09-23 19:08:17 t 1 1 102497 464 0.00 2019-09-23 19:21:31 2019-09-23 19:23:20 t 1 1 102503 395 0.00 2019-09-23 19:00:54 2019-09-23 19:42:08 t 1 2 102506 462 0.00 2019-09-23 19:35:11 2019-09-23 19:47:42 t 1 1 102507 392 0.00 2019-09-23 19:51:51 2019-09-23 19:51:51 f 1 2 102511 483 0.00 2019-09-23 19:53:04 2019-09-23 19:55:47 t 1 1 102512 464 0.00 2019-09-23 19:34:40 2019-09-23 19:58:41 t 1 1 102513 432 0.00 2019-09-23 19:55:58 2019-09-23 19:59:18 t 1 1 102522 325 0.00 2019-09-23 20:01:49 2019-09-23 20:04:45 t 1 2 102526 456 0.00 2019-09-23 19:46:14 2019-09-23 20:07:06 t 1 1 102531 481 0.00 2019-09-23 20:07:56 2019-09-23 20:09:26 t 1 1 102535 445 0.00 2019-09-23 20:05:02 2019-09-23 20:13:11 t 1 1 102538 327 0.00 2019-09-23 20:11:30 2019-09-23 20:17:36 t 1 1 102542 412 0.00 2019-09-23 19:23:24 2019-09-23 20:22:44 t 1 1 102543 392 0.00 2019-09-23 20:22:50 2019-09-23 20:22:50 f 1 2 102544 432 0.00 2019-09-23 20:21:36 2019-09-23 20:27:40 t 1 1 102547 432 0.00 2019-09-23 20:28:00 2019-09-23 20:28:51 t 1 1 102550 327 0.00 2019-09-23 20:24:14 2019-09-23 20:31:21 t 1 1 102552 464 0.00 2019-09-23 20:34:05 2019-09-23 20:35:46 t 1 1 102553 247 0.00 2019-09-23 20:34:35 2019-09-23 20:37:29 t 1 2 102557 445 0.00 2019-09-23 20:19:54 2019-09-23 20:41:31 t 1 1 102560 432 0.00 2019-09-23 20:30:40 2019-09-23 20:45:02 t 1 1 102561 430 0.00 2019-09-23 20:33:33 2019-09-23 20:45:17 t 1 1 102565 420 0.00 2019-09-23 20:33:46 2019-09-23 20:50:12 t 1 1 102569 445 0.00 2019-09-23 20:42:48 2019-09-23 20:59:28 t 1 1 102574 392 0.00 2019-09-23 21:07:08 2019-09-23 21:07:08 f 1 2 102580 464 0.00 2019-09-23 20:50:59 2019-09-23 21:10:41 t 1 1 102592 327 0.00 2019-09-23 21:36:56 2019-09-23 21:37:31 t 1 1 102598 220 0.00 2019-09-23 20:52:01 2019-09-23 21:39:56 t 1 1 102599 432 0.00 2019-09-23 21:06:54 2019-09-23 21:41:51 t 1 1 102600 220 0.00 2019-09-23 21:39:55 2019-09-23 21:42:16 t 1 1 102602 220 0.00 2019-09-23 21:42:16 2019-09-23 21:42:56 t 1 1 102608 220 0.00 2019-09-23 21:44:32 2019-09-23 21:46:59 t 1 1 102610 220 0.00 2019-09-23 21:46:59 2019-09-23 21:48:41 t 1 1 102614 432 0.00 2019-09-23 21:44:19 2019-09-23 21:51:29 t 1 1 102617 464 0.00 2019-09-23 21:51:21 2019-09-23 21:53:00 t 1 1 102621 220 0.00 2019-09-23 21:53:23 2019-09-23 21:55:49 t 1 1 102623 375 0.00 2019-09-23 21:54:58 2019-09-23 21:56:21 t 1 1 102626 220 0.00 2019-09-23 21:56:33 2019-09-23 21:58:38 t 1 1 102628 220 0.00 2019-09-23 21:58:38 2019-09-23 22:00:50 t 1 1 102630 481 0.00 2019-09-23 21:35:02 2019-09-23 22:01:31 t 1 1 102634 296 0.00 2019-09-23 21:58:39 2019-09-23 22:05:00 t 1 2 102637 470 0.00 2019-09-23 21:24:25 2019-09-23 22:05:27 t 1 1 102640 220 0.00 2019-09-23 22:06:34 2019-09-23 22:07:59 t 1 1 102645 220 0.00 2019-09-23 22:11:27 2019-09-23 22:13:48 t 1 1 102647 220 0.00 2019-09-23 22:13:47 2019-09-23 22:17:25 t 1 1 102650 375 0.00 2019-09-23 22:17:54 2019-09-23 22:19:04 t 1 1 102653 327 0.00 2019-09-23 21:51:09 2019-09-23 22:21:08 t 1 1 102659 220 0.00 2019-09-23 22:23:22 2019-09-23 22:25:23 t 1 1 102661 402 0.00 2019-09-23 20:51:05 2019-09-23 22:26:10 t 1 2 102662 220 0.00 2019-09-23 22:25:45 2019-09-23 22:26:41 t 1 1 102663 220 0.00 2019-09-23 22:26:41 2019-09-23 22:27:18 t 1 1 102667 220 0.00 2019-09-23 22:29:56 2019-09-23 22:30:09 t 1 1 102670 220 0.00 2019-09-23 22:30:36 2019-09-23 22:31:18 t 1 1 102672 247 0.00 2019-09-23 22:10:38 2019-09-23 22:31:46 t 1 2 102478 432 0.00 2019-09-23 18:59:24 2019-09-23 19:00:29 t 1 1 102479 400 0.00 2019-09-23 19:00:37 2019-09-23 19:02:16 t 1 1 102483 392 0.00 2019-09-23 19:07:02 2019-09-23 19:07:02 f 1 2 102484 470 0.00 2019-09-23 18:50:38 2019-09-23 19:07:21 t 1 1 102489 432 0.00 2019-09-23 19:01:18 2019-09-23 19:11:59 t 1 1 102490 451 0.00 2019-09-23 19:13:18 2019-09-23 19:17:22 t 1 1 102491 432 0.00 2019-09-23 19:17:23 2019-09-23 19:17:53 t 1 1 102492 445 0.00 2019-09-23 19:08:13 2019-09-23 19:18:14 t 1 1 102494 470 0.00 2019-09-23 19:07:21 2019-09-23 19:18:26 t 1 1 102495 402 0.00 2019-09-23 18:42:18 2019-09-23 19:21:17 t 1 2 102496 451 0.00 2019-09-23 19:17:22 2019-09-23 19:22:17 t 1 1 102498 412 0.00 2019-09-23 18:25:43 2019-09-23 19:23:24 t 1 1 102499 470 0.00 2019-09-23 19:18:26 2019-09-23 19:26:09 t 1 1 102500 470 0.00 2019-09-23 19:26:09 2019-09-23 19:31:49 t 1 1 102501 296 0.00 2019-09-23 18:55:25 2019-09-23 19:33:48 t 1 2 102504 400 0.00 2019-09-23 19:43:53 2019-09-23 19:45:14 t 1 1 102505 479 0.00 2019-09-23 19:41:46 2019-09-23 19:46:05 t 1 1 102509 462 0.00 2019-09-23 19:47:42 2019-09-23 19:55:07 t 1 1 102514 325 0.00 2019-09-23 19:47:16 2019-09-23 19:59:27 t 1 2 102516 485 0.00 2019-09-23 20:01:30 2019-09-23 20:01:54 t 1 1 102518 445 0.00 2019-09-23 19:18:14 2019-09-23 20:02:46 t 1 1 102520 485 0.00 2019-09-23 20:01:59 2019-09-23 20:03:00 t 1 1 102524 220 0.00 2019-09-23 20:05:59 2019-09-23 20:06:00 t 1 2 102527 432 0.00 2019-09-23 20:06:26 2019-09-23 20:07:08 t 1 1 102528 481 0.00 2019-09-23 20:07:16 2019-09-23 20:07:51 t 1 1 102530 220 0.00 2019-09-23 20:06:28 2019-09-23 20:08:21 t 1 1 102532 402 0.00 2019-09-23 19:50:31 2019-09-23 20:10:36 t 1 2 102534 432 0.00 2019-09-23 20:11:55 2019-09-23 20:12:04 t 1 1 102537 485 0.00 2019-09-23 20:06:59 2019-09-23 20:16:56 t 1 1 102549 462 0.00 2019-09-23 20:11:02 2019-09-23 20:29:36 t 1 1 102554 470 0.00 2019-09-23 19:52:56 2019-09-23 20:37:58 t 1 1 102558 445 0.00 2019-09-23 20:42:07 2019-09-23 20:42:48 t 1 1 102559 327 0.00 2019-09-23 20:42:50 2019-09-23 20:43:23 t 1 1 102563 327 0.00 2019-09-23 20:45:32 2019-09-23 20:46:06 t 1 1 102566 327 0.00 2019-09-23 20:50:17 2019-09-23 20:50:49 t 1 1 102567 432 0.00 2019-09-23 20:45:28 2019-09-23 20:52:19 t 1 1 102568 487 0.00 2019-09-23 20:04:06 2019-09-23 20:59:11 t 1 2 102571 432 0.00 2019-09-23 20:52:26 2019-09-23 21:01:38 t 1 1 102573 392 0.00 2019-09-23 21:07:02 2019-09-23 21:07:02 f 1 2 102575 327 0.00 2019-09-23 21:00:48 2019-09-23 21:07:11 t 1 1 102576 392 0.00 2019-09-23 21:07:16 2019-09-23 21:07:16 f 1 2 102579 392 0.00 2019-09-23 21:07:32 2019-09-23 21:07:32 f 1 2 102581 481 0.00 2019-09-23 20:40:29 2019-09-23 21:13:08 t 1 1 102582 464 0.00 2019-09-23 21:12:03 2019-09-23 21:13:34 t 1 1 102585 445 0.00 2019-09-23 21:01:55 2019-09-23 21:18:22 t 1 1 102589 327 0.00 2019-09-23 21:25:42 2019-09-23 21:27:01 t 1 1 102591 481 0.00 2019-09-23 21:24:41 2019-09-23 21:34:27 t 1 1 102593 375 0.00 2019-09-23 21:23:02 2019-09-23 21:37:45 t 1 1 102596 220 0.00 2019-09-23 20:18:18 2019-09-23 21:39:08 t 1 2 102597 464 0.00 2019-09-23 21:32:26 2019-09-23 21:39:42 t 1 1 102601 472 0.00 2019-09-23 21:38:48 2019-09-23 21:42:27 t 1 1 102605 220 0.00 2019-09-23 21:42:56 2019-09-23 21:44:33 t 1 1 102607 375 0.00 2019-09-23 21:45:02 2019-09-23 21:46:34 t 1 1 102611 375 0.00 2019-09-23 21:48:34 2019-09-23 21:48:59 t 1 1 102612 327 0.00 2019-09-23 21:46:10 2019-09-23 21:50:06 t 1 1 102616 445 0.00 2019-09-23 21:38:04 2019-09-23 21:52:43 t 1 1 102619 220 0.00 2019-09-23 21:51:37 2019-09-23 21:53:23 t 1 1 102620 375 0.00 2019-09-23 21:53:25 2019-09-23 21:55:43 t 1 1 102625 445 0.00 2019-09-23 21:52:48 2019-09-23 21:57:19 t 1 1 102627 375 0.00 2019-09-23 21:57:23 2019-09-23 21:59:46 t 1 1 102629 375 0.00 2019-09-23 21:59:45 2019-09-23 22:00:58 t 1 1 102631 220 0.00 2019-09-23 22:00:50 2019-09-23 22:02:51 t 1 1 102635 220 0.00 2019-09-23 22:02:50 2019-09-23 22:05:00 t 1 1 102636 375 0.00 2019-09-23 22:03:45 2019-09-23 22:05:21 t 1 1 102639 445 0.00 2019-09-23 21:57:48 2019-09-23 22:07:45 t 1 1 102643 375 0.00 2019-09-23 22:04:37 2019-09-23 22:12:10 t 1 1 102644 464 0.00 2019-09-23 22:05:23 2019-09-23 22:13:34 t 1 1 102648 375 0.00 2019-09-23 22:12:10 2019-09-23 22:17:51 t 1 1 102649 220 0.00 2019-09-23 22:17:25 2019-09-23 22:18:06 t 1 1 102651 220 0.00 2019-09-23 22:18:06 2019-09-23 22:19:49 t 1 1 102652 306 0.00 2019-09-23 22:06:51 2019-09-23 22:20:15 t 1 1 102655 470 0.00 2019-09-23 22:05:27 2019-09-23 22:22:58 t 1 1 102656 220 0.00 2019-09-23 22:22:23 2019-09-23 22:23:22 t 1 1 102666 220 0.00 2019-09-23 22:27:50 2019-09-23 22:30:01 t 1 1 102668 220 0.00 2019-09-23 22:30:08 2019-09-23 22:30:36 t 1 1 102674 220 0.00 2019-09-23 22:31:53 2019-09-23 22:31:54 t 1 1 102675 220 0.00 2019-09-23 22:31:54 2019-09-23 22:32:30 t 1 1 102679 220 0.00 2019-09-23 22:33:17 2019-09-23 22:33:52 t 1 1 102682 220 0.00 2019-09-23 22:35:51 2019-09-23 22:36:00 t 1 1 102683 220 0.00 2019-09-23 22:36:00 2019-09-23 22:36:34 t 1 1 102684 220 0.00 2019-09-23 22:36:34 2019-09-23 22:37:17 t 1 1 102687 220 0.00 2019-09-23 22:37:52 2019-09-23 22:37:55 t 1 1 102688 392 0.00 2019-09-23 22:38:22 2019-09-23 22:38:22 f 1 2 102694 220 0.00 2019-09-23 22:39:06 2019-09-23 22:40:21 t 1 1 102698 220 0.00 2019-09-23 22:42:06 2019-09-23 22:43:21 t 1 1 102701 470 0.00 2019-09-23 22:22:58 2019-09-23 22:53:54 t 1 1 102702 412 0.00 2019-09-23 22:37:49 2019-09-23 22:55:06 t 1 1 102703 375 0.00 2019-09-23 22:40:08 2019-09-23 22:59:32 t 1 1 102708 412 0.00 2019-09-23 22:55:06 2019-09-23 23:09:13 t 1 1 102711 220 0.00 2019-09-23 22:06:45 2019-09-23 23:13:12 t 1 2 102717 392 0.00 2019-09-23 23:19:46 2019-09-23 23:19:46 f 1 2 102718 445 0.00 2019-09-23 23:11:47 2019-09-23 23:21:12 t 1 1 102720 445 0.00 2019-09-23 23:22:36 2019-09-23 23:30:17 t 1 1 102723 392 0.00 2019-09-23 23:44:24 2019-09-23 23:44:24 f 1 2 102726 392 0.00 2019-09-23 23:46:25 2019-09-23 23:46:25 f 1 2 102735 327 0.00 2019-09-23 23:43:18 2019-09-24 00:06:11 t 1 1 102739 392 0.00 2019-09-24 00:24:08 2019-09-24 00:24:08 f 1 2 102741 483 0.00 2019-09-24 00:07:16 2019-09-24 00:33:17 t 1 1 102746 424 0.00 2019-09-23 23:03:44 2019-09-24 00:52:05 t 1 2 102750 451 0.00 2019-09-23 23:51:59 2019-09-24 03:11:31 t 1 1 102751 420 0.00 2019-09-24 05:27:29 2019-09-24 05:27:47 t 1 1 102752 420 0.00 2019-09-24 05:27:47 2019-09-24 05:32:07 t 1 1 102756 464 0.00 2019-09-24 05:41:39 2019-09-24 05:44:40 t 1 1 102759 464 0.00 2019-09-24 05:46:42 2019-09-24 05:46:52 t 1 1 102761 464 0.00 2019-09-24 05:46:54 2019-09-24 05:48:19 t 1 1 102764 379 0.00 2019-09-23 22:31:12 2019-09-24 05:49:10 t 1 1 102769 420 0.00 2019-09-24 05:48:42 2019-09-24 06:00:50 t 1 1 102502 306 0.00 2019-09-23 19:32:13 2019-09-23 19:42:05 t 1 1 102508 470 0.00 2019-09-23 19:31:49 2019-09-23 19:52:56 t 1 1 102510 432 0.00 2019-09-23 19:23:44 2019-09-23 19:55:28 t 1 1 102515 487 0.00 2019-09-23 20:01:48 2019-09-23 20:01:48 f 1 2 102517 462 0.00 2019-09-23 19:55:07 2019-09-23 20:01:58 t 1 1 102519 487 0.00 2019-09-23 19:58:23 2019-09-23 20:02:58 t 1 2 102521 485 0.00 2019-09-23 20:03:00 2019-09-23 20:04:21 t 1 1 102523 464 0.00 2019-09-23 20:04:55 2019-09-23 20:05:32 t 1 1 102525 485 0.00 2019-09-23 20:06:05 2019-09-23 20:06:59 t 1 1 102529 327 0.00 2019-09-23 20:07:52 2019-09-23 20:08:04 t 1 1 102533 462 0.00 2019-09-23 20:01:58 2019-09-23 20:11:02 t 1 1 102536 456 0.00 2019-09-23 20:08:01 2019-09-23 20:14:02 t 1 1 102539 432 0.00 2019-09-23 20:17:46 2019-09-23 20:18:10 t 1 1 102540 468 0.00 2019-09-23 19:35:40 2019-09-23 20:18:57 t 1 1 102541 432 0.00 2019-09-23 20:20:48 2019-09-23 20:20:51 t 1 1 102545 481 0.00 2019-09-23 20:09:37 2019-09-23 20:27:47 t 1 1 102546 400 0.00 2019-09-23 20:24:45 2019-09-23 20:28:35 t 1 1 102548 481 0.00 2019-09-23 20:27:47 2019-09-23 20:28:53 t 1 1 102551 392 0.00 2019-09-23 20:35:22 2019-09-23 20:35:22 f 1 2 102555 481 0.00 2019-09-23 20:28:53 2019-09-23 20:40:29 t 1 1 102556 327 0.00 2019-09-23 20:40:49 2019-09-23 20:41:22 t 1 1 102562 416 0.00 2019-09-23 19:18:25 2019-09-23 20:45:30 t 1 1 102564 327 0.00 2019-09-23 20:48:53 2019-09-23 20:49:30 t 1 1 102570 392 0.00 2019-09-23 21:01:11 2019-09-23 21:01:11 f 1 2 102572 392 0.00 2019-09-23 21:06:56 2019-09-23 21:06:56 f 1 2 102577 470 0.00 2019-09-23 20:37:58 2019-09-23 21:07:23 t 1 1 102578 392 0.00 2019-09-23 21:07:25 2019-09-23 21:07:25 f 1 2 102583 327 0.00 2019-09-23 21:14:50 2019-09-23 21:16:21 t 1 1 102584 375 0.00 2019-09-23 21:15:31 2019-09-23 21:17:46 t 1 1 102586 375 0.00 2019-09-23 21:17:46 2019-09-23 21:23:03 t 1 1 102587 470 0.00 2019-09-23 21:07:23 2019-09-23 21:24:25 t 1 1 102588 481 0.00 2019-09-23 21:13:08 2019-09-23 21:24:44 t 1 1 102590 325 0.00 2019-09-23 21:21:00 2019-09-23 21:32:13 t 1 2 102594 445 0.00 2019-09-23 21:21:25 2019-09-23 21:37:49 t 1 1 102595 420 0.00 2019-09-23 20:49:16 2019-09-23 21:38:16 t 1 1 102603 220 0.00 2019-09-23 21:39:16 2019-09-23 21:44:08 t 1 2 102604 464 0.00 2019-09-23 21:40:32 2019-09-23 21:44:30 t 1 1 102606 375 0.00 2019-09-23 21:37:17 2019-09-23 21:44:58 t 1 1 102609 375 0.00 2019-09-23 21:45:52 2019-09-23 21:47:21 t 1 1 102613 220 0.00 2019-09-23 21:48:41 2019-09-23 21:51:02 t 1 1 102615 220 0.00 2019-09-23 21:51:02 2019-09-23 21:51:37 t 1 1 102618 375 0.00 2019-09-23 21:49:36 2019-09-23 21:53:22 t 1 1 102622 220 0.00 2019-09-23 21:45:33 2019-09-23 21:56:18 t 1 2 102624 220 0.00 2019-09-23 21:55:48 2019-09-23 21:56:33 t 1 1 102632 306 0.00 2019-09-23 21:39:59 2019-09-23 22:03:10 t 1 1 102633 375 0.00 2019-09-23 22:00:19 2019-09-23 22:03:53 t 1 1 102638 220 0.00 2019-09-23 22:05:00 2019-09-23 22:06:34 t 1 1 102641 220 0.00 2019-09-23 22:07:59 2019-09-23 22:09:49 t 1 1 102642 220 0.00 2019-09-23 22:09:48 2019-09-23 22:11:28 t 1 1 102646 412 0.00 2019-09-23 20:22:44 2019-09-23 22:17:06 t 1 1 102654 220 0.00 2019-09-23 22:19:49 2019-09-23 22:22:23 t 1 1 102657 375 0.00 2019-09-23 22:19:22 2019-09-23 22:23:34 t 1 1 102658 306 0.00 2019-09-23 22:20:36 2019-09-23 22:24:31 t 1 1 102660 220 0.00 2019-09-23 22:25:22 2019-09-23 22:25:45 t 1 1 102664 220 0.00 2019-09-23 22:27:18 2019-09-23 22:27:52 t 1 1 102665 220 0.00 2019-09-23 21:19:15 2019-09-23 22:29:38 t 1 2 102669 379 0.00 2019-09-23 17:24:58 2019-09-23 22:31:12 t 1 1 102671 220 0.00 2019-09-23 22:31:18 2019-09-23 22:31:19 t 1 1 102673 220 0.00 2019-09-23 22:31:18 2019-09-23 22:31:53 t 1 1 102678 220 0.00 2019-09-23 22:33:15 2019-09-23 22:33:17 t 1 1 102681 220 0.00 2019-09-23 22:35:19 2019-09-23 22:35:51 t 1 1 102685 412 0.00 2019-09-23 22:17:06 2019-09-23 22:37:49 t 1 1 102686 220 0.00 2019-09-23 22:37:17 2019-09-23 22:37:52 t 1 1 102690 220 0.00 2019-09-23 22:38:27 2019-09-23 22:38:30 t 1 1 102696 220 0.00 2019-09-23 22:40:23 2019-09-23 22:40:58 t 1 1 102697 220 0.00 2019-09-23 22:40:58 2019-09-23 22:41:33 t 1 1 102704 292 0.00 2019-09-23 23:02:42 2019-09-23 23:03:44 t 1 2 102705 400 0.00 2019-09-23 22:05:38 2019-09-23 23:04:28 t 1 1 102706 485 0.00 2019-09-23 22:53:42 2019-09-23 23:08:51 t 1 1 102713 375 0.00 2019-09-23 23:10:03 2019-09-23 23:15:24 t 1 1 102716 375 0.00 2019-09-23 23:18:20 2019-09-23 23:19:35 t 1 1 102724 392 0.00 2019-09-23 23:46:12 2019-09-23 23:46:12 f 1 2 102725 392 0.00 2019-09-23 23:46:20 2019-09-23 23:46:20 f 1 2 102728 392 0.00 2019-09-23 23:46:37 2019-09-23 23:46:37 f 1 2 102730 436 0.00 2019-09-23 23:46:53 2019-09-23 23:50:17 t 1 1 102731 449 0.00 2019-09-23 23:48:57 2019-09-23 23:54:31 t 1 1 102732 392 0.00 2019-09-23 23:57:48 2019-09-23 23:57:48 f 1 2 102733 392 0.00 2019-09-23 23:57:57 2019-09-23 23:57:57 f 1 2 102734 483 0.00 2019-09-23 23:57:54 2019-09-24 00:02:24 t 1 1 102736 392 0.00 2019-09-24 00:06:23 2019-09-24 00:06:23 f 1 2 102743 483 0.00 2019-09-24 00:38:39 2019-09-24 00:40:24 t 1 1 102744 483 0.00 2019-09-24 00:40:24 2019-09-24 00:42:45 t 1 1 102749 392 0.00 2019-09-24 01:41:04 2019-09-24 01:41:04 f 1 2 102753 485 0.00 2019-09-24 05:27:05 2019-09-24 05:37:40 t 1 1 102754 485 0.00 2019-09-24 05:37:40 2019-09-24 05:38:42 t 1 1 102760 430 0.00 2019-09-24 05:33:29 2019-09-24 05:47:00 t 1 1 102762 420 0.00 2019-09-24 05:32:10 2019-09-24 05:48:42 t 1 1 102765 464 0.00 2019-09-24 05:49:09 2019-09-24 05:50:45 t 1 1 102766 464 0.00 2019-09-24 05:50:47 2019-09-24 05:51:29 t 1 1 102767 464 0.00 2019-09-24 05:51:32 2019-09-24 05:58:42 t 1 1 102770 420 0.00 2019-09-24 06:00:49 2019-09-24 06:03:36 t 1 1 102771 420 0.00 2019-09-24 06:03:36 2019-09-24 06:04:25 t 1 1 102772 402 0.00 2019-09-24 05:55:46 2019-09-24 06:05:51 t 1 2 102775 481 0.00 2019-09-23 22:01:31 2019-09-24 06:13:03 t 1 1 102778 430 0.00 2019-09-24 06:44:50 2019-09-24 06:47:37 t 1 1 102781 412 0.00 2019-09-23 23:33:47 2019-09-24 07:12:27 t 1 1 102784 464 0.00 2019-09-24 07:29:52 2019-09-24 07:33:30 t 1 1 102787 398 0.00 2019-09-24 07:37:57 2019-09-24 07:39:01 t 1 2 102790 485 0.00 2019-09-24 07:41:26 2019-09-24 07:42:56 t 1 1 102793 220 0.00 2019-09-24 07:50:54 2019-09-24 07:52:14 t 1 2 102799 306 0.00 2019-09-24 07:48:11 2019-09-24 08:01:33 t 1 1 102800 445 0.00 2019-09-24 08:00:08 2019-09-24 08:04:02 t 1 1 102810 400 0.00 2019-09-24 08:34:18 2019-09-24 08:39:29 t 1 1 102811 292 0.00 2019-09-24 08:39:29 2019-09-24 08:40:07 t 1 2 102812 306 0.00 2019-09-24 08:39:41 2019-09-24 08:40:24 t 1 1 102813 306 0.00 2019-09-24 08:49:27 2019-09-24 08:50:17 t 1 1 102814 464 0.00 2019-09-24 08:51:07 2019-09-24 08:51:23 t 1 1 102676 220 0.00 2019-09-23 22:32:29 2019-09-23 22:32:40 t 1 1 102677 220 0.00 2019-09-23 22:32:39 2019-09-23 22:33:15 t 1 1 102680 220 0.00 2019-09-23 22:33:52 2019-09-23 22:35:20 t 1 1 102689 220 0.00 2019-09-23 22:37:54 2019-09-23 22:38:28 t 1 1 102691 375 0.00 2019-09-23 22:23:53 2019-09-23 22:38:44 t 1 1 102692 220 0.00 2019-09-23 22:38:30 2019-09-23 22:39:07 t 1 1 102693 220 0.00 2019-09-23 22:39:06 2019-09-23 22:39:41 t 1 1 102695 220 0.00 2019-09-23 22:39:41 2019-09-23 22:40:23 t 1 1 102699 327 0.00 2019-09-23 22:21:08 2019-09-23 22:45:23 t 1 1 102700 461 0.00 2019-09-23 22:43:59 2019-09-23 22:46:36 t 1 2 102707 375 0.00 2019-09-23 22:59:31 2019-09-23 23:09:10 t 1 1 102709 445 0.00 2019-09-23 22:07:45 2019-09-23 23:11:26 t 1 1 102710 470 0.00 2019-09-23 22:53:55 2019-09-23 23:12:40 t 1 1 102712 220 0.00 2019-09-23 22:42:40 2019-09-23 23:13:54 t 1 1 102714 327 0.00 2019-09-23 22:45:23 2019-09-23 23:15:29 t 1 1 102715 485 0.00 2019-09-23 23:09:19 2019-09-23 23:19:10 t 1 1 102719 220 0.00 2019-09-23 22:41:33 2019-09-23 23:21:16 t 1 1 102721 412 0.00 2019-09-23 23:09:13 2019-09-23 23:33:47 t 1 1 102722 327 0.00 2019-09-23 23:15:29 2019-09-23 23:43:18 t 1 1 102727 392 0.00 2019-09-23 23:46:31 2019-09-23 23:46:31 f 1 2 102729 449 0.00 2019-09-23 23:40:45 2019-09-23 23:48:57 t 1 1 102737 220 0.00 2019-09-23 22:09:06 2019-09-24 00:10:29 t 1 2 102738 392 0.00 2019-09-24 00:17:00 2019-09-24 00:17:00 f 1 2 102740 464 0.00 2019-09-24 00:28:39 2019-09-24 00:30:54 t 1 1 102742 327 0.00 2019-09-24 00:06:11 2019-09-24 00:36:15 t 1 1 102745 392 0.00 2019-09-24 00:49:15 2019-09-24 00:49:15 f 1 2 102747 470 0.00 2019-09-23 23:15:18 2019-09-24 00:57:18 t 1 1 102748 392 0.00 2019-09-24 01:18:27 2019-09-24 01:18:27 f 1 2 102755 464 0.00 2019-09-24 05:34:13 2019-09-24 05:41:36 t 1 1 102757 464 0.00 2019-09-24 05:44:43 2019-09-24 05:45:23 t 1 1 102758 464 0.00 2019-09-24 05:45:25 2019-09-24 05:46:39 t 1 1 102763 464 0.00 2019-09-24 05:48:24 2019-09-24 05:49:06 t 1 1 102768 430 0.00 2019-09-24 05:47:00 2019-09-24 06:00:45 t 1 1 102773 420 0.00 2019-09-24 06:04:25 2019-09-24 06:06:09 t 1 1 102776 430 0.00 2019-09-24 06:00:44 2019-09-24 06:15:38 t 1 1 102780 485 0.00 2019-09-24 06:48:40 2019-09-24 06:53:57 t 1 1 102789 481 0.00 2019-09-24 07:24:51 2019-09-24 07:40:36 t 1 1 102791 445 0.00 2019-09-23 23:31:31 2019-09-24 07:43:26 t 1 1 102792 379 0.00 2019-09-24 05:49:10 2019-09-24 07:50:09 t 1 1 102796 445 0.00 2019-09-24 07:54:24 2019-09-24 07:55:49 t 1 1 102803 481 0.00 2019-09-24 07:47:24 2019-09-24 08:10:01 t 1 1 102804 379 0.00 2019-09-24 08:10:03 2019-09-24 08:10:45 t 1 1 102807 416 0.00 2019-09-24 08:10:17 2019-09-24 08:28:06 t 1 1 102809 400 0.00 2019-09-24 08:28:11 2019-09-24 08:32:02 t 1 1 102816 481 0.00 2019-09-24 08:10:01 2019-09-24 09:00:23 t 1 1 102821 220 0.00 2019-09-24 09:09:52 2019-09-24 09:10:30 t 1 2 102822 220 0.00 2019-09-24 09:10:40 2019-09-24 09:11:40 t 1 1 102824 430 0.00 2019-09-24 09:05:54 2019-09-24 09:17:08 t 1 1 102829 220 0.00 2019-09-24 08:45:47 2019-09-24 09:34:47 t 1 1 102830 220 0.00 2019-09-24 09:34:39 2019-09-24 09:36:05 t 1 2 102833 327 0.00 2019-09-24 08:33:33 2019-09-24 09:39:44 t 1 1 102835 481 0.00 2019-09-24 09:48:54 2019-09-24 09:53:15 t 1 1 102837 220 0.00 2019-09-24 09:54:31 2019-09-24 09:55:06 t 1 2 102843 325 0.00 2019-09-24 09:58:11 2019-09-24 10:03:12 t 1 2 102846 430 0.00 2019-09-24 09:56:30 2019-09-24 10:07:30 t 1 1 102848 430 0.00 2019-09-24 10:07:30 2019-09-24 10:10:48 t 1 1 102851 430 0.00 2019-09-24 10:15:06 2019-09-24 10:16:43 t 1 1 102852 430 0.00 2019-09-24 10:16:47 2019-09-24 10:18:13 t 1 1 102853 470 0.00 2019-09-24 07:21:21 2019-09-24 10:18:58 t 1 1 102854 430 0.00 2019-09-24 10:18:18 2019-09-24 10:21:21 t 1 1 102855 445 0.00 2019-09-24 10:05:35 2019-09-24 10:23:19 t 1 1 102857 470 0.00 2019-09-24 10:18:58 2019-09-24 10:34:21 t 1 1 102863 420 0.00 2019-09-24 10:50:57 2019-09-24 10:51:52 t 1 1 102864 220 0.00 2019-09-24 10:52:43 2019-09-24 10:54:33 t 1 2 102869 445 0.00 2019-09-24 10:24:44 2019-09-24 11:05:14 t 1 1 102871 470 0.00 2019-09-24 10:59:38 2019-09-24 11:10:57 t 1 1 102873 445 0.00 2019-09-24 11:05:23 2019-09-24 11:19:41 t 1 1 102875 470 0.00 2019-09-24 11:10:57 2019-09-24 11:28:25 t 1 1 102876 379 0.00 2019-09-24 08:11:53 2019-09-24 11:29:17 t 1 1 102880 422 0.00 2019-09-24 11:23:23 2019-09-24 11:33:07 t 1 1 102881 292 0.00 2019-09-24 11:32:18 2019-09-24 11:33:21 t 1 2 102883 422 0.00 2019-09-24 11:33:07 2019-09-24 11:40:15 t 1 1 102885 445 0.00 2019-09-24 11:21:16 2019-09-24 11:43:57 t 1 1 102887 470 0.00 2019-09-24 11:43:02 2019-09-24 11:46:37 t 1 1 102889 220 0.00 2019-09-24 11:37:28 2019-09-24 11:47:51 t 1 2 102892 327 0.00 2019-09-24 11:04:32 2019-09-24 11:49:24 t 1 1 102893 220 0.00 2019-09-24 11:41:10 2019-09-24 11:55:34 t 1 2 102897 327 0.00 2019-09-24 11:57:06 2019-09-24 12:00:15 t 1 1 102900 306 0.00 2019-09-24 12:10:14 2019-09-24 12:13:54 t 1 1 102903 470 0.00 2019-09-24 12:14:08 2019-09-24 12:23:14 t 1 1 102905 445 0.00 2019-09-24 11:51:08 2019-09-24 12:25:19 t 1 1 102908 445 0.00 2019-09-24 12:25:44 2019-09-24 12:33:16 t 1 1 102910 420 0.00 2019-09-24 11:31:16 2019-09-24 12:37:55 t 1 1 102914 445 0.00 2019-09-24 12:35:35 2019-09-24 12:45:26 t 1 1 102917 420 0.00 2019-09-24 12:39:31 2019-09-24 12:54:46 t 1 1 102927 472 0.00 2019-09-24 13:09:11 2019-09-24 13:09:33 t 1 1 102928 472 0.00 2019-09-24 13:11:49 2019-09-24 13:12:02 t 1 1 102929 481 0.00 2019-09-24 11:03:19 2019-09-24 13:13:17 t 1 1 102930 400 0.00 2019-09-24 13:11:19 2019-09-24 13:14:12 t 1 1 102931 220 0.00 2019-09-24 12:42:51 2019-09-24 13:18:43 t 1 1 102933 464 0.00 2019-09-24 13:14:11 2019-09-24 13:20:27 t 1 1 102935 220 0.00 2019-09-24 13:21:05 2019-09-24 13:23:32 t 1 1 102939 420 0.00 2019-09-24 13:29:02 2019-09-24 13:31:40 t 1 1 102941 470 0.00 2019-09-24 13:19:08 2019-09-24 13:33:29 t 1 1 102942 464 0.00 2019-09-24 13:37:55 2019-09-24 13:39:38 t 1 1 102944 470 0.00 2019-09-24 13:33:29 2019-09-24 13:39:50 t 1 1 102947 451 0.00 2019-09-24 13:46:20 2019-09-24 13:46:36 t 1 1 102952 451 0.00 2019-09-24 13:46:35 2019-09-24 13:55:20 t 1 1 102953 481 0.00 2019-09-24 13:14:07 2019-09-24 13:59:12 t 1 1 102956 451 0.00 2019-09-24 13:55:20 2019-09-24 14:06:15 t 1 1 102957 470 0.00 2019-09-24 13:39:50 2019-09-24 14:07:56 t 1 1 102961 220 0.00 2019-09-24 14:19:29 2019-09-24 14:21:42 t 1 1 102965 464 0.00 2019-09-24 14:27:10 2019-09-24 14:28:51 t 1 1 102966 327 0.00 2019-09-24 14:00:54 2019-09-24 14:32:44 t 1 1 102972 464 0.00 2019-09-24 14:47:16 2019-09-24 14:47:35 t 1 1 102973 432 0.00 2019-09-24 14:42:58 2019-09-24 14:49:31 t 1 1 102975 296 0.00 2019-09-24 14:40:44 2019-09-24 14:53:24 t 1 2 102774 420 0.00 2019-09-24 06:06:09 2019-09-24 06:09:36 t 1 1 102777 400 0.00 2019-09-24 06:21:26 2019-09-24 06:28:52 t 1 1 102779 430 0.00 2019-09-24 06:47:43 2019-09-24 06:50:58 t 1 1 102782 470 0.00 2019-09-24 05:54:30 2019-09-24 07:21:21 t 1 1 102783 456 0.00 2019-09-24 07:04:56 2019-09-24 07:24:38 t 1 1 102785 456 0.00 2019-09-24 07:35:08 2019-09-24 07:36:19 t 1 1 102786 456 0.00 2019-09-24 07:36:18 2019-09-24 07:38:10 t 1 1 102788 306 0.00 2019-09-24 07:22:53 2019-09-24 07:39:06 t 1 1 102794 402 0.00 2019-09-24 07:44:01 2019-09-24 07:52:37 t 1 2 102795 445 0.00 2019-09-24 07:43:50 2019-09-24 07:54:23 t 1 1 102797 445 0.00 2019-09-24 07:55:50 2019-09-24 07:57:49 t 1 1 102798 400 0.00 2019-09-24 07:57:38 2019-09-24 07:59:30 t 1 1 102801 220 0.00 2019-09-24 06:30:14 2019-09-24 08:07:38 t 1 2 102802 445 0.00 2019-09-24 08:05:37 2019-09-24 08:09:39 t 1 1 102805 379 0.00 2019-09-24 08:10:47 2019-09-24 08:11:12 t 1 2 102806 464 0.00 2019-09-24 08:26:08 2019-09-24 08:27:42 t 1 1 102808 247 0.00 2019-09-24 08:29:08 2019-09-24 08:31:24 t 1 2 102817 445 0.00 2019-09-24 08:14:41 2019-09-24 09:02:42 t 1 1 102825 481 0.00 2019-09-24 09:00:25 2019-09-24 09:17:27 t 1 1 102826 481 0.00 2019-09-24 09:17:29 2019-09-24 09:21:13 t 1 1 102827 464 0.00 2019-09-24 09:25:47 2019-09-24 09:26:10 t 1 1 102832 306 0.00 2019-09-24 09:39:04 2019-09-24 09:39:32 t 1 1 102839 220 0.00 2019-09-24 09:55:13 2019-09-24 09:55:57 t 1 2 102840 325 0.00 2019-09-24 09:56:39 2019-09-24 09:57:52 t 1 2 102845 420 0.00 2019-09-24 10:02:51 2019-09-24 10:05:21 t 1 1 102849 325 0.00 2019-09-24 10:03:32 2019-09-24 10:13:37 t 1 2 102858 402 0.00 2019-09-24 10:36:19 2019-09-24 10:40:30 t 1 2 102859 420 0.00 2019-09-24 10:10:19 2019-09-24 10:42:28 t 1 1 102861 481 0.00 2019-09-24 09:56:00 2019-09-24 10:45:58 t 1 1 102862 420 0.00 2019-09-24 10:43:01 2019-09-24 10:47:42 t 1 1 102866 420 0.00 2019-09-24 10:51:55 2019-09-24 11:00:58 t 1 1 102870 220 0.00 2019-09-24 10:08:18 2019-09-24 11:10:51 t 1 1 102872 476 0.00 2019-09-24 10:24:15 2019-09-24 11:17:46 t 1 2 102877 306 0.00 2019-09-24 11:03:53 2019-09-24 11:29:37 t 1 1 102879 485 0.00 2019-09-24 11:28:55 2019-09-24 11:31:46 t 1 1 102882 220 0.00 2019-09-24 11:32:41 2019-09-24 11:39:00 t 1 2 102886 412 0.00 2019-09-24 07:12:27 2019-09-24 11:45:58 t 1 1 102888 306 0.00 2019-09-24 11:44:01 2019-09-24 11:47:19 t 1 1 102890 422 0.00 2019-09-24 11:40:15 2019-09-24 11:48:17 t 1 1 102895 422 0.00 2019-09-24 11:48:17 2019-09-24 11:57:41 t 1 1 102896 306 0.00 2019-09-24 11:50:32 2019-09-24 11:58:16 t 1 1 102899 422 0.00 2019-09-24 11:57:41 2019-09-24 12:07:06 t 1 1 102901 422 0.00 2019-09-24 12:07:06 2019-09-24 12:19:00 t 1 1 102904 311 0.00 2019-09-24 12:00:43 2019-09-24 12:24:05 t 1 2 102909 445 0.00 2019-09-24 12:33:25 2019-09-24 12:34:11 t 1 1 102911 420 0.00 2019-09-24 12:38:00 2019-09-24 12:39:32 t 1 1 102918 422 0.00 2019-09-24 12:47:35 2019-09-24 12:56:17 t 1 1 102919 392 0.00 2019-09-24 12:57:17 2019-09-24 12:57:17 f 1 2 102923 472 0.00 2019-09-24 12:57:44 2019-09-24 13:03:01 t 1 1 102924 472 0.00 2019-09-24 13:03:31 2019-09-24 13:03:33 t 1 1 102926 472 0.00 2019-09-24 13:04:24 2019-09-24 13:08:14 t 1 1 102937 420 0.00 2019-09-24 12:54:53 2019-09-24 13:29:02 t 1 1 102948 485 0.00 2019-09-24 13:46:11 2019-09-24 13:46:38 t 1 1 102949 485 0.00 2019-09-24 13:46:38 2019-09-24 13:49:14 t 1 1 102951 400 0.00 2019-09-24 13:51:49 2019-09-24 13:53:43 t 1 1 102955 481 0.00 2019-09-24 13:59:12 2019-09-24 14:04:47 t 1 1 102958 470 0.00 2019-09-24 14:07:56 2019-09-24 14:16:41 t 1 1 102963 470 0.00 2019-09-24 14:16:41 2019-09-24 14:25:23 t 1 1 102968 464 0.00 2019-09-24 14:36:54 2019-09-24 14:38:10 t 1 1 102969 432 0.00 2019-09-24 14:24:39 2019-09-24 14:42:58 t 1 1 102976 432 0.00 2019-09-24 14:53:35 2019-09-24 14:53:45 t 1 1 102978 325 0.00 2019-09-24 14:50:47 2019-09-24 14:55:12 t 1 2 102979 432 0.00 2019-09-24 14:55:53 2019-09-24 14:56:30 t 1 1 102980 481 0.00 2019-09-24 14:55:52 2019-09-24 14:57:23 t 1 1 102982 432 0.00 2019-09-24 14:57:08 2019-09-24 14:58:09 t 1 1 102986 392 0.00 2019-09-24 15:08:41 2019-09-24 15:08:41 f 1 2 102987 445 0.00 2019-09-24 15:00:14 2019-09-24 15:11:54 t 1 1 102991 220 0.00 2019-09-24 15:13:09 2019-09-24 15:13:15 t 1 1 102992 220 0.00 2019-09-24 15:13:47 2019-09-24 15:13:52 t 1 1 102993 220 0.00 2019-09-24 15:13:51 2019-09-24 15:14:31 t 1 1 102995 220 0.00 2019-09-24 15:15:04 2019-09-24 15:15:37 t 1 1 102996 220 0.00 2019-09-24 15:15:37 2019-09-24 15:16:16 t 1 1 102998 220 0.00 2019-09-24 15:16:50 2019-09-24 15:16:54 t 1 1 103001 220 0.00 2019-09-24 15:18:57 2019-09-24 15:19:34 t 1 1 103003 470 0.00 2019-09-24 14:43:04 2019-09-24 15:20:15 t 1 1 103008 445 0.00 2019-09-24 15:11:53 2019-09-24 15:22:43 t 1 1 103013 485 0.00 2019-09-24 15:17:40 2019-09-24 15:24:22 t 1 1 103017 220 0.00 2019-09-24 15:25:49 2019-09-24 15:26:24 t 1 1 103019 220 0.00 2019-09-24 15:26:24 2019-09-24 15:26:58 t 1 1 103020 220 0.00 2019-09-24 15:26:58 2019-09-24 15:27:34 t 1 1 103021 220 0.00 2019-09-24 15:27:33 2019-09-24 15:28:16 t 1 1 103025 220 0.00 2019-09-24 15:29:28 2019-09-24 15:30:07 t 1 1 103028 220 0.00 2019-09-24 15:31:15 2019-09-24 15:31:53 t 1 1 103030 220 0.00 2019-09-24 15:32:28 2019-09-24 15:33:05 t 1 1 103031 392 0.00 2019-09-24 15:33:36 2019-09-24 15:33:36 f 1 2 103037 327 0.00 2019-09-24 15:18:46 2019-09-24 15:34:56 t 1 1 103052 220 0.00 2019-09-24 15:42:07 2019-09-24 15:43:30 t 1 2 103061 325 0.00 2019-09-24 15:51:57 2019-09-24 15:55:11 t 1 2 103065 481 0.00 2019-09-24 15:55:58 2019-09-24 16:02:13 t 1 1 103066 220 0.00 2019-09-24 16:02:34 2019-09-24 16:03:47 t 1 1 103068 432 0.00 2019-09-24 15:37:49 2019-09-24 16:05:06 t 1 1 103075 395 0.00 2019-09-24 13:24:27 2019-09-24 16:11:50 t 1 2 103076 481 0.00 2019-09-24 16:02:11 2019-09-24 16:12:50 t 1 1 103078 327 0.00 2019-09-24 16:03:06 2019-09-24 16:13:10 t 1 1 103086 430 0.00 2019-09-24 15:44:28 2019-09-24 16:18:50 t 1 1 103088 327 0.00 2019-09-24 16:13:41 2019-09-24 16:22:02 t 1 1 103089 472 0.00 2019-09-24 16:23:03 2019-09-24 16:23:10 t 1 1 103090 472 0.00 2019-09-24 16:23:21 2019-09-24 16:23:47 t 1 1 103091 472 0.00 2019-09-24 16:23:55 2019-09-24 16:24:18 t 1 1 103093 472 0.00 2019-09-24 16:25:03 2019-09-24 16:25:25 t 1 1 103097 472 0.00 2019-09-24 16:28:48 2019-09-24 16:29:11 t 1 1 103098 327 0.00 2019-09-24 16:29:10 2019-09-24 16:29:42 t 1 1 103101 392 0.00 2019-09-24 16:32:32 2019-09-24 16:32:32 f 1 2 103109 306 0.00 2019-09-24 16:31:39 2019-09-24 16:49:05 t 1 1 103117 430 0.00 2019-09-24 16:54:46 2019-09-24 17:07:41 t 1 1 103122 451 0.00 2019-09-24 17:27:24 2019-09-24 17:28:51 t 1 1 103124 481 0.00 2019-09-24 17:13:42 2019-09-24 17:32:51 t 1 1 102815 325 0.00 2019-09-24 08:39:19 2019-09-24 08:54:11 t 1 2 102818 445 0.00 2019-09-24 09:02:42 2019-09-24 09:03:47 t 1 1 102819 445 0.00 2019-09-24 09:04:35 2019-09-24 09:06:35 t 1 1 102820 220 0.00 2019-09-24 08:56:11 2019-09-24 09:08:59 t 1 2 102823 472 0.00 2019-09-24 09:04:38 2019-09-24 09:11:41 t 1 1 102828 306 0.00 2019-09-24 09:13:43 2019-09-24 09:27:11 t 1 1 102831 481 0.00 2019-09-24 09:21:41 2019-09-24 09:37:57 t 1 1 102834 481 0.00 2019-09-24 09:37:57 2019-09-24 09:48:25 t 1 1 102836 445 0.00 2019-09-24 09:06:35 2019-09-24 09:54:49 t 1 1 102838 481 0.00 2019-09-24 09:54:16 2019-09-24 09:55:31 t 1 1 102841 445 0.00 2019-09-24 09:54:52 2019-09-24 09:59:50 t 1 1 102842 420 0.00 2019-09-24 09:58:22 2019-09-24 10:02:48 t 1 1 102844 445 0.00 2019-09-24 10:00:34 2019-09-24 10:04:46 t 1 1 102847 420 0.00 2019-09-24 10:05:20 2019-09-24 10:10:16 t 1 1 102850 430 0.00 2019-09-24 10:11:51 2019-09-24 10:16:01 t 1 1 102856 430 0.00 2019-09-24 10:25:37 2019-09-24 10:25:50 t 1 1 102860 247 0.00 2019-09-24 10:43:11 2019-09-24 10:44:23 t 1 2 102865 470 0.00 2019-09-24 10:34:21 2019-09-24 10:59:38 t 1 1 102867 481 0.00 2019-09-24 10:45:57 2019-09-24 11:01:40 t 1 1 102868 327 0.00 2019-09-24 09:39:44 2019-09-24 11:04:32 t 1 1 102874 422 0.00 2019-09-24 11:13:40 2019-09-24 11:23:23 t 1 1 102878 420 0.00 2019-09-24 11:07:30 2019-09-24 11:31:22 t 1 1 102884 470 0.00 2019-09-24 11:42:13 2019-09-24 11:43:03 t 1 1 102891 445 0.00 2019-09-24 11:46:26 2019-09-24 11:48:38 t 1 1 102894 327 0.00 2019-09-24 11:55:05 2019-09-24 11:56:11 t 1 1 102898 327 0.00 2019-09-24 12:00:37 2019-09-24 12:02:11 t 1 1 102902 247 0.00 2019-09-24 12:20:18 2019-09-24 12:22:34 t 1 2 102906 306 0.00 2019-09-24 12:27:45 2019-09-24 12:31:59 t 1 1 102907 470 0.00 2019-09-24 12:23:14 2019-09-24 12:32:58 t 1 1 102912 220 0.00 2019-09-24 12:08:23 2019-09-24 12:42:47 t 1 1 102913 327 0.00 2019-09-24 12:08:25 2019-09-24 12:44:10 t 1 1 102915 470 0.00 2019-09-24 12:32:58 2019-09-24 12:45:30 t 1 1 102916 422 0.00 2019-09-24 12:19:00 2019-09-24 12:47:35 t 1 1 102920 392 0.00 2019-09-24 12:57:29 2019-09-24 12:57:29 f 1 2 102921 392 0.00 2019-09-24 12:57:35 2019-09-24 12:57:35 f 1 2 102922 400 0.00 2019-09-24 13:01:02 2019-09-24 13:02:52 t 1 1 102925 472 0.00 2019-09-24 13:04:02 2019-09-24 13:04:07 t 1 1 102932 470 0.00 2019-09-24 12:57:34 2019-09-24 13:19:08 t 1 1 102934 220 0.00 2019-09-24 13:17:48 2019-09-24 13:20:38 t 1 1 102936 220 0.00 2019-09-24 13:23:40 2019-09-24 13:24:56 t 1 1 102938 306 0.00 2019-09-24 13:28:30 2019-09-24 13:30:29 t 1 1 102940 327 0.00 2019-09-24 12:53:36 2019-09-24 13:32:11 t 1 1 102943 400 0.00 2019-09-24 13:18:28 2019-09-24 13:39:39 t 1 1 102945 306 0.00 2019-09-24 13:32:19 2019-09-24 13:39:53 t 1 1 102946 451 0.00 2019-09-24 13:36:57 2019-09-24 13:40:16 t 1 1 102950 456 0.00 2019-09-24 13:37:08 2019-09-24 13:50:08 t 1 1 102954 327 0.00 2019-09-24 13:32:11 2019-09-24 14:00:54 t 1 1 102959 451 0.00 2019-09-24 14:06:15 2019-09-24 14:19:23 t 1 1 102960 379 0.00 2019-09-24 11:29:17 2019-09-24 14:21:37 t 1 1 102962 464 0.00 2019-09-24 14:14:49 2019-09-24 14:21:52 t 1 1 102964 451 0.00 2019-09-24 14:19:23 2019-09-24 14:25:53 t 1 1 102967 470 0.00 2019-09-24 14:25:23 2019-09-24 14:34:52 t 1 1 102970 470 0.00 2019-09-24 14:34:52 2019-09-24 14:43:04 t 1 1 102971 220 0.00 2019-09-24 14:42:01 2019-09-24 14:43:24 t 1 1 102974 432 0.00 2019-09-24 14:49:52 2019-09-24 14:50:40 t 1 1 102977 481 0.00 2019-09-24 14:04:45 2019-09-24 14:55:00 t 1 1 102981 445 0.00 2019-09-24 12:44:52 2019-09-24 14:57:54 t 1 1 102983 445 0.00 2019-09-24 14:57:53 2019-09-24 14:58:56 t 1 1 102988 220 0.00 2019-09-24 14:47:10 2019-09-24 15:12:01 t 1 1 102989 220 0.00 2019-09-24 15:12:01 2019-09-24 15:12:36 t 1 1 102994 220 0.00 2019-09-24 15:14:31 2019-09-24 15:15:04 t 1 1 102997 220 0.00 2019-09-24 15:16:15 2019-09-24 15:16:51 t 1 1 102999 327 0.00 2019-09-24 14:59:03 2019-09-24 15:18:46 t 1 1 103000 220 0.00 2019-09-24 15:17:31 2019-09-24 15:18:57 t 1 1 103002 220 0.00 2019-09-24 15:19:33 2019-09-24 15:20:08 t 1 1 103004 220 0.00 2019-09-24 15:20:08 2019-09-24 15:20:50 t 1 1 103005 220 0.00 2019-09-24 15:20:50 2019-09-24 15:21:25 t 1 1 103007 220 0.00 2019-09-24 15:22:00 2019-09-24 15:22:35 t 1 1 103010 220 0.00 2019-09-24 15:23:13 2019-09-24 15:23:14 t 1 1 103015 220 0.00 2019-09-24 15:24:36 2019-09-24 15:25:15 t 1 1 103016 220 0.00 2019-09-24 15:25:11 2019-09-24 15:25:49 t 1 1 103032 220 0.00 2019-09-24 15:33:04 2019-09-24 15:33:38 t 1 1 103035 485 0.00 2019-09-24 15:24:27 2019-09-24 15:34:27 t 1 1 103036 220 0.00 2019-09-24 15:34:19 2019-09-24 15:34:52 t 1 1 103039 220 0.00 2019-09-24 15:34:52 2019-09-24 15:35:31 t 1 1 103041 220 0.00 2019-09-24 15:36:05 2019-09-24 15:36:43 t 1 1 103042 220 0.00 2019-09-24 15:36:43 2019-09-24 15:37:18 t 1 1 103044 220 0.00 2019-09-24 15:37:17 2019-09-24 15:37:52 t 1 1 103046 220 0.00 2019-09-24 15:39:47 2019-09-24 15:40:22 t 1 1 103049 470 0.00 2019-09-24 15:20:15 2019-09-24 15:41:50 t 1 1 103050 220 0.00 2019-09-24 15:41:28 2019-09-24 15:42:04 t 1 1 103051 220 0.00 2019-09-24 15:42:03 2019-09-24 15:42:17 t 1 1 103054 485 0.00 2019-09-24 15:34:27 2019-09-24 15:47:23 t 1 1 103056 220 0.00 2019-09-24 15:26:22 2019-09-24 15:48:23 t 1 2 103057 392 0.00 2019-09-24 15:51:44 2019-09-24 15:51:44 f 1 2 103062 379 0.00 2019-09-24 14:21:37 2019-09-24 15:57:44 t 1 1 103063 220 0.00 2019-09-24 15:42:20 2019-09-24 15:58:43 t 1 2 103067 400 0.00 2019-09-24 15:41:51 2019-09-24 16:04:33 t 1 1 103069 220 0.00 2019-09-24 16:03:47 2019-09-24 16:08:07 t 1 1 103073 461 0.00 2019-09-24 16:09:04 2019-09-24 16:10:45 t 1 2 103074 472 0.00 2019-09-24 16:11:28 2019-09-24 16:11:44 t 1 1 103081 472 0.00 2019-09-24 16:14:19 2019-09-24 16:14:35 t 1 1 103087 325 0.00 2019-09-24 15:56:44 2019-09-24 16:20:08 t 1 2 103092 472 0.00 2019-09-24 16:24:28 2019-09-24 16:24:55 t 1 1 103094 306 0.00 2019-09-24 15:58:42 2019-09-24 16:26:44 t 1 1 103095 445 0.00 2019-09-24 16:16:13 2019-09-24 16:27:34 t 1 1 103096 472 0.00 2019-09-24 16:28:12 2019-09-24 16:28:38 t 1 1 103100 472 0.00 2019-09-24 16:29:24 2019-09-24 16:31:27 t 1 1 103102 392 0.00 2019-09-24 16:32:41 2019-09-24 16:32:41 f 1 2 103106 481 0.00 2019-09-24 16:34:57 2019-09-24 16:41:05 t 1 1 103111 379 0.00 2019-09-24 15:57:44 2019-09-24 16:59:01 t 1 1 103112 306 0.00 2019-09-24 16:56:49 2019-09-24 16:59:19 t 1 1 103114 485 0.00 2019-09-24 17:01:47 2019-09-24 17:01:51 t 1 1 103118 488 0.00 2019-09-24 17:01:41 2019-09-24 17:12:56 t 1 1 103120 445 0.00 2019-09-24 16:27:34 2019-09-24 17:17:43 t 1 1 103123 400 0.00 2019-09-24 17:29:20 2019-09-24 17:30:40 t 1 1 103128 488 0.00 2019-09-24 17:22:47 2019-09-24 17:48:00 t 1 1 102984 327 0.00 2019-09-24 14:32:44 2019-09-24 14:59:03 t 1 1 102985 445 0.00 2019-09-24 14:59:01 2019-09-24 15:00:23 t 1 1 102990 220 0.00 2019-09-24 15:12:36 2019-09-24 15:13:09 t 1 1 103006 220 0.00 2019-09-24 15:21:25 2019-09-24 15:22:01 t 1 1 103009 220 0.00 2019-09-24 15:22:35 2019-09-24 15:22:44 t 1 1 103011 445 0.00 2019-09-24 15:22:51 2019-09-24 15:23:57 t 1 1 103012 220 0.00 2019-09-24 15:23:14 2019-09-24 15:24:05 t 1 1 103014 220 0.00 2019-09-24 15:24:05 2019-09-24 15:24:37 t 1 1 103018 306 0.00 2019-09-24 15:24:28 2019-09-24 15:26:25 t 1 1 103022 481 0.00 2019-09-24 15:19:25 2019-09-24 15:28:50 t 1 1 103023 220 0.00 2019-09-24 15:28:16 2019-09-24 15:28:53 t 1 1 103024 220 0.00 2019-09-24 15:28:51 2019-09-24 15:29:29 t 1 1 103026 220 0.00 2019-09-24 15:30:03 2019-09-24 15:30:41 t 1 1 103027 220 0.00 2019-09-24 15:30:41 2019-09-24 15:31:16 t 1 1 103029 220 0.00 2019-09-24 15:31:52 2019-09-24 15:32:28 t 1 1 103033 392 0.00 2019-09-24 15:33:43 2019-09-24 15:33:43 f 1 2 103034 220 0.00 2019-09-24 15:33:38 2019-09-24 15:34:19 t 1 1 103038 400 0.00 2019-09-24 15:32:23 2019-09-24 15:34:57 t 1 1 103040 220 0.00 2019-09-24 15:35:30 2019-09-24 15:36:05 t 1 1 103043 432 0.00 2019-09-24 15:25:24 2019-09-24 15:37:50 t 1 1 103045 220 0.00 2019-09-24 15:38:02 2019-09-24 15:39:47 t 1 1 103047 220 0.00 2019-09-24 15:40:21 2019-09-24 15:40:55 t 1 1 103048 220 0.00 2019-09-24 15:40:54 2019-09-24 15:41:29 t 1 1 103053 220 0.00 2019-09-24 15:22:32 2019-09-24 15:43:55 t 1 2 103055 481 0.00 2019-09-24 15:28:50 2019-09-24 15:48:16 t 1 1 103058 392 0.00 2019-09-24 15:51:49 2019-09-24 15:51:49 f 1 2 103059 392 0.00 2019-09-24 15:52:02 2019-09-24 15:52:02 f 1 2 103060 306 0.00 2019-09-24 15:36:20 2019-09-24 15:53:58 t 1 1 103064 220 0.00 2019-09-24 15:42:43 2019-09-24 16:01:17 t 1 1 103070 472 0.00 2019-09-24 16:07:31 2019-09-24 16:08:34 t 1 1 103071 472 0.00 2019-09-24 16:08:50 2019-09-24 16:09:09 t 1 1 103072 472 0.00 2019-09-24 16:09:22 2019-09-24 16:09:41 t 1 1 103077 472 0.00 2019-09-24 16:12:50 2019-09-24 16:12:57 t 1 1 103079 392 0.00 2019-09-24 16:14:00 2019-09-24 16:14:00 f 1 2 103080 432 0.00 2019-09-24 16:05:06 2019-09-24 16:14:25 t 1 1 103082 472 0.00 2019-09-24 16:14:46 2019-09-24 16:15:08 t 1 1 103083 220 0.00 2019-09-24 16:08:07 2019-09-24 16:15:41 t 1 1 103084 445 0.00 2019-09-24 15:24:02 2019-09-24 16:16:15 t 1 1 103085 472 0.00 2019-09-24 16:17:55 2019-09-24 16:18:02 t 1 1 103099 306 0.00 2019-09-24 16:29:10 2019-09-24 16:29:51 t 1 1 103103 481 0.00 2019-09-24 16:13:00 2019-09-24 16:34:57 t 1 1 103104 327 0.00 2019-09-24 16:39:39 2019-09-24 16:40:13 t 1 1 103105 296 0.00 2019-09-24 16:32:59 2019-09-24 16:40:22 t 1 2 103107 481 0.00 2019-09-24 16:41:13 2019-09-24 16:42:23 t 1 1 103108 400 0.00 2019-09-24 16:44:48 2019-09-24 16:47:41 t 1 1 103110 400 0.00 2019-09-24 16:57:36 2019-09-24 16:58:58 t 1 1 103113 485 0.00 2019-09-24 17:00:33 2019-09-24 17:01:48 t 1 1 103115 379 0.00 2019-09-24 16:59:14 2019-09-24 17:02:17 t 1 1 103116 220 0.00 2019-09-24 16:10:26 2019-09-24 17:06:55 t 1 1 103119 481 0.00 2019-09-24 16:42:06 2019-09-24 17:13:24 t 1 1 103121 488 0.00 2019-09-24 17:12:01 2019-09-24 17:22:38 t 1 1 103125 451 0.00 2019-09-24 17:28:51 2019-09-24 17:38:25 t 1 1 103130 445 0.00 2019-09-24 17:18:04 2019-09-24 17:51:39 t 1 1 103132 485 0.00 2019-09-24 17:44:27 2019-09-24 17:52:10 t 1 1 103133 488 0.00 2019-09-24 17:51:30 2019-09-24 17:53:42 t 1 1 103136 488 0.00 2019-09-24 17:57:12 2019-09-24 17:57:58 t 1 1 103138 296 0.00 2019-09-24 17:54:13 2019-09-24 18:00:36 t 1 2 103139 306 0.00 2019-09-24 17:48:37 2019-09-24 18:02:47 t 1 1 103141 445 0.00 2019-09-24 17:51:40 2019-09-24 18:08:23 t 1 1 103143 481 0.00 2019-09-24 17:58:06 2019-09-24 18:15:13 t 1 1 103146 445 0.00 2019-09-24 18:08:38 2019-09-24 18:22:31 t 1 1 103151 296 0.00 2019-09-24 18:52:39 2019-09-24 18:52:54 t 1 2 103153 296 0.00 2019-09-24 18:52:59 2019-09-24 18:54:52 t 1 2 103154 296 0.00 2019-09-24 18:54:58 2019-09-24 18:56:21 t 1 2 103158 445 0.00 2019-09-24 18:53:36 2019-09-24 18:58:47 t 1 1 103162 445 0.00 2019-09-24 18:58:46 2019-09-24 19:03:48 t 1 1 103164 412 0.00 2019-09-24 18:18:23 2019-09-24 19:09:19 t 1 1 103165 331 0.00 2019-09-24 19:05:42 2019-09-24 19:12:15 t 1 1 103170 481 0.00 2019-09-24 19:04:36 2019-09-24 19:38:27 t 1 1 103171 456 0.00 2019-09-24 19:38:11 2019-09-24 19:47:59 t 1 1 103173 481 0.00 2019-09-24 19:38:49 2019-09-24 19:49:10 t 1 1 103175 412 0.00 2019-09-24 19:34:18 2019-09-24 19:49:59 t 1 1 103177 445 0.00 2019-09-24 19:54:26 2019-09-24 19:55:29 t 1 1 103179 481 0.00 2019-09-24 19:51:51 2019-09-24 19:55:54 t 1 1 103182 445 0.00 2019-09-24 19:56:42 2019-09-24 19:58:01 t 1 1 103184 220 0.00 2019-09-24 16:33:39 2019-09-24 20:05:47 t 1 2 103185 412 0.00 2019-09-24 19:49:59 2019-09-24 20:06:25 t 1 1 103189 416 0.00 2019-09-24 20:07:00 2019-09-24 20:09:32 t 1 1 103196 220 0.00 2019-09-24 20:10:00 2019-09-24 20:28:11 t 1 2 103197 424 0.00 2019-09-24 19:37:05 2019-09-24 20:28:29 t 1 2 103200 470 0.00 2019-09-24 20:15:29 2019-09-24 20:31:36 t 1 1 103203 327 0.00 2019-09-24 20:30:17 2019-09-24 20:40:07 t 1 1 103205 400 0.00 2019-09-24 20:35:52 2019-09-24 20:43:20 t 1 1 103209 451 0.00 2019-09-24 20:38:18 2019-09-24 20:50:54 t 1 1 103216 379 0.00 2019-09-24 20:53:31 2019-09-24 20:54:27 t 1 1 103218 445 0.00 2019-09-24 20:45:27 2019-09-24 20:58:08 t 1 1 103221 296 0.00 2019-09-24 20:54:34 2019-09-24 21:00:57 t 1 2 103222 327 0.00 2019-09-24 21:01:54 2019-09-24 21:03:51 t 1 1 103223 379 0.00 2019-09-24 20:54:25 2019-09-24 21:06:50 t 1 1 103226 445 0.00 2019-09-24 20:59:13 2019-09-24 21:13:54 t 1 1 103229 430 0.00 2019-09-24 21:02:01 2019-09-24 21:14:47 t 1 1 103231 327 0.00 2019-09-24 21:24:01 2019-09-24 21:25:03 t 1 1 103232 327 0.00 2019-09-24 21:27:12 2019-09-24 21:28:48 t 1 1 103234 306 0.00 2019-09-24 21:27:34 2019-09-24 21:30:13 t 1 1 103235 464 0.00 2019-09-24 21:17:51 2019-09-24 21:31:16 t 1 1 103237 327 0.00 2019-09-24 21:30:26 2019-09-24 21:31:59 t 1 1 103238 327 0.00 2019-09-24 21:32:31 2019-09-24 21:33:38 t 1 1 103239 292 0.00 2019-09-24 21:33:32 2019-09-24 21:34:38 t 1 2 103242 327 0.00 2019-09-24 21:34:11 2019-09-24 21:36:14 t 1 1 103245 292 0.00 2019-09-24 21:37:07 2019-09-24 21:38:11 t 1 2 103248 327 0.00 2019-09-24 21:39:59 2019-09-24 21:40:40 t 1 1 103250 327 0.00 2019-09-24 21:40:54 2019-09-24 21:41:47 t 1 1 103254 400 0.00 2019-09-24 21:13:43 2019-09-24 21:44:26 t 1 1 103256 481 0.00 2019-09-24 21:44:53 2019-09-24 21:46:24 t 1 1 103258 327 0.00 2019-09-24 21:45:59 2019-09-24 21:47:13 t 1 1 103259 392 0.00 2019-09-24 21:47:25 2019-09-24 21:47:25 f 1 2 103260 327 0.00 2019-09-24 21:47:33 2019-09-24 21:48:43 t 1 1 103126 400 0.00 2019-09-24 17:37:43 2019-09-24 17:39:38 t 1 1 103127 306 0.00 2019-09-24 17:41:40 2019-09-24 17:42:53 t 1 1 103129 292 0.00 2019-09-24 17:50:12 2019-09-24 17:50:19 t 1 2 103131 292 0.00 2019-09-24 17:50:47 2019-09-24 17:51:50 t 1 2 103137 485 0.00 2019-09-24 17:57:40 2019-09-24 17:58:40 t 1 1 103140 485 0.00 2019-09-24 17:58:39 2019-09-24 18:08:21 t 1 1 103144 481 0.00 2019-09-24 18:15:13 2019-09-24 18:16:20 t 1 1 103145 412 0.00 2019-09-24 11:45:58 2019-09-24 18:18:23 t 1 1 103147 445 0.00 2019-09-24 18:22:53 2019-09-24 18:27:15 t 1 1 103149 481 0.00 2019-09-24 18:16:20 2019-09-24 18:46:25 t 1 1 103150 379 0.00 2019-09-24 17:32:09 2019-09-24 18:48:04 t 1 1 103156 488 0.00 2019-09-24 18:13:42 2019-09-24 18:56:36 t 1 1 103160 400 0.00 2019-09-24 18:58:32 2019-09-24 19:00:49 t 1 1 103163 445 0.00 2019-09-24 19:03:48 2019-09-24 19:07:26 t 1 1 103167 412 0.00 2019-09-24 19:09:19 2019-09-24 19:30:39 t 1 1 103172 400 0.00 2019-09-24 19:46:37 2019-09-24 19:48:48 t 1 1 103174 445 0.00 2019-09-24 19:07:51 2019-09-24 19:49:53 t 1 1 103176 445 0.00 2019-09-24 19:50:35 2019-09-24 19:54:24 t 1 1 103180 306 0.00 2019-09-24 19:44:31 2019-09-24 19:56:31 t 1 1 103181 400 0.00 2019-09-24 19:53:03 2019-09-24 19:57:57 t 1 1 103183 400 0.00 2019-09-24 19:59:09 2019-09-24 20:01:46 t 1 1 103186 416 0.00 2019-09-24 18:52:18 2019-09-24 20:07:00 t 1 1 103187 481 0.00 2019-09-24 20:06:20 2019-09-24 20:08:07 t 1 1 103188 462 0.00 2019-09-24 19:55:38 2019-09-24 20:09:09 t 1 1 103195 481 0.00 2019-09-24 20:08:34 2019-09-24 20:27:51 t 1 1 103198 327 0.00 2019-09-24 20:19:07 2019-09-24 20:29:38 t 1 1 103199 481 0.00 2019-09-24 20:28:26 2019-09-24 20:31:26 t 1 1 103201 416 0.00 2019-09-24 20:09:32 2019-09-24 20:32:29 t 1 1 103202 451 0.00 2019-09-24 20:27:19 2019-09-24 20:38:18 t 1 1 103206 445 0.00 2019-09-24 20:19:25 2019-09-24 20:45:21 t 1 1 103207 220 0.00 2019-09-24 20:41:50 2019-09-24 20:46:14 t 1 2 103208 400 0.00 2019-09-24 20:45:20 2019-09-24 20:50:48 t 1 1 103211 327 0.00 2019-09-24 20:47:54 2019-09-24 20:52:27 t 1 1 103213 379 0.00 2019-09-24 20:31:01 2019-09-24 20:53:31 t 1 1 103217 412 0.00 2019-09-24 20:21:08 2019-09-24 20:54:45 t 1 1 103219 451 0.00 2019-09-24 20:50:54 2019-09-24 20:58:40 t 1 1 103224 379 0.00 2019-09-24 21:06:50 2019-09-24 21:08:48 t 1 1 103228 327 0.00 2019-09-24 21:13:15 2019-09-24 21:14:21 t 1 1 103233 220 0.00 2019-09-24 21:08:01 2019-09-24 21:29:33 t 1 2 103236 220 0.00 2019-09-24 21:30:28 2019-09-24 21:31:51 t 1 2 103240 392 0.00 2019-09-24 21:34:44 2019-09-24 21:34:44 f 1 2 103241 445 0.00 2019-09-24 21:13:59 2019-09-24 21:36:08 t 1 1 103246 327 0.00 2019-09-24 21:37:40 2019-09-24 21:38:34 t 1 1 103247 220 0.00 2019-09-24 20:45:28 2019-09-24 21:39:49 t 1 2 103252 445 0.00 2019-09-24 21:36:48 2019-09-24 21:42:08 t 1 1 103265 400 0.00 2019-09-24 21:50:32 2019-09-24 21:54:17 t 1 1 103267 420 0.00 2019-09-24 21:47:07 2019-09-24 21:55:39 t 1 1 103274 420 0.00 2019-09-24 21:55:38 2019-09-24 21:58:30 t 1 1 103275 327 0.00 2019-09-24 21:59:06 2019-09-24 22:01:41 t 1 1 103278 398 0.00 2019-09-24 22:05:39 2019-09-24 22:06:43 t 1 2 103279 327 0.00 2019-09-24 22:06:57 2019-09-24 22:08:02 t 1 1 103287 451 0.00 2019-09-24 22:12:13 2019-09-24 22:14:05 t 1 1 103290 392 0.00 2019-09-24 22:19:35 2019-09-24 22:19:35 f 1 2 103293 392 0.00 2019-09-24 22:19:51 2019-09-24 22:19:51 f 1 2 103299 412 0.00 2019-09-24 21:41:25 2019-09-24 22:24:53 t 1 1 103303 472 0.00 2019-09-24 22:28:32 2019-09-24 22:28:55 t 1 1 103305 472 0.00 2019-09-24 22:29:08 2019-09-24 22:29:40 t 1 1 103308 472 0.00 2019-09-24 22:30:59 2019-09-24 22:31:09 t 1 1 103314 464 0.00 2019-09-24 22:31:57 2019-09-24 22:35:52 t 1 1 103315 400 0.00 2019-09-24 22:34:52 2019-09-24 22:37:13 t 1 1 103318 472 0.00 2019-09-24 22:38:22 2019-09-24 22:38:29 t 1 1 103322 451 0.00 2019-09-24 22:40:33 2019-09-24 22:42:33 t 1 1 103324 472 0.00 2019-09-24 22:43:28 2019-09-24 22:43:34 t 1 1 103325 485 0.00 2019-09-24 22:42:10 2019-09-24 22:45:11 t 1 1 103327 451 0.00 2019-09-24 22:42:45 2019-09-24 22:46:49 t 1 1 103328 220 0.00 2019-09-24 22:23:35 2019-09-24 22:47:48 t 1 1 103331 327 0.00 2019-09-24 22:48:07 2019-09-24 22:49:01 t 1 1 103333 485 0.00 2019-09-24 22:45:11 2019-09-24 22:49:10 t 1 1 103335 220 0.00 2019-09-24 22:49:41 2019-09-24 22:50:16 t 1 1 103339 472 0.00 2019-09-24 22:50:51 2019-09-24 22:50:56 t 1 1 103342 472 0.00 2019-09-24 22:51:21 2019-09-24 22:51:38 t 1 1 103344 220 0.00 2019-09-24 22:52:03 2019-09-24 22:52:36 t 1 1 103349 220 0.00 2019-09-24 22:54:21 2019-09-24 22:54:56 t 1 1 103358 472 0.00 2019-09-24 22:58:16 2019-09-24 22:58:52 t 1 1 103364 485 0.00 2019-09-24 22:52:40 2019-09-24 23:00:05 t 1 1 103366 472 0.00 2019-09-24 23:00:14 2019-09-24 23:00:35 t 1 1 103370 472 0.00 2019-09-24 23:01:21 2019-09-24 23:01:42 t 1 1 103372 472 0.00 2019-09-24 23:01:51 2019-09-24 23:02:29 t 1 1 103373 472 0.00 2019-09-24 23:03:57 2019-09-24 23:04:01 t 1 1 103374 472 0.00 2019-09-24 23:04:12 2019-09-24 23:04:34 t 1 1 103377 472 0.00 2019-09-24 23:06:24 2019-09-24 23:06:46 t 1 1 103378 220 0.00 2019-09-24 23:06:29 2019-09-24 23:07:04 t 1 1 103381 472 0.00 2019-09-24 23:07:19 2019-09-24 23:07:39 t 1 1 103382 392 0.00 2019-09-24 23:08:02 2019-09-24 23:08:02 f 1 2 103389 392 0.00 2019-09-24 23:10:30 2019-09-24 23:10:30 f 1 2 103392 472 0.00 2019-09-24 23:07:50 2019-09-24 23:11:55 t 1 1 103398 220 0.00 2019-09-24 23:16:26 2019-09-24 23:17:00 t 1 1 103400 483 0.00 2019-09-24 23:02:29 2019-09-24 23:20:29 t 1 1 103408 470 0.00 2019-09-24 23:19:21 2019-09-24 23:28:23 t 1 1 103409 220 0.00 2019-09-24 23:28:21 2019-09-24 23:28:56 t 1 1 103410 220 0.00 2019-09-24 23:28:55 2019-09-24 23:29:32 t 1 1 103412 220 0.00 2019-09-24 23:30:07 2019-09-24 23:30:11 t 1 1 103415 311 0.00 2019-09-24 23:43:38 2019-09-24 23:45:01 t 1 2 103416 483 0.00 2019-09-24 23:27:29 2019-09-24 23:50:09 t 1 1 103422 220 0.00 2019-09-25 00:02:47 2019-09-25 00:12:10 t 1 2 103425 416 0.00 2019-09-24 20:54:09 2019-09-25 00:23:47 t 1 1 103432 490 0.00 2019-09-25 00:59:45 2019-09-25 01:04:40 t 1 1 103434 490 0.00 2019-09-25 01:06:06 2019-09-25 01:11:11 t 1 1 103436 422 0.00 2019-09-25 01:11:20 2019-09-25 01:15:44 t 1 1 103437 490 0.00 2019-09-25 01:35:11 2019-09-25 01:38:25 t 1 1 103440 372 0.00 2019-09-25 02:14:02 2019-09-25 03:09:07 t 1 2 103441 445 0.00 2019-09-24 22:41:46 2019-09-25 04:06:58 t 1 1 103442 445 0.00 2019-09-25 04:06:58 2019-09-25 04:18:22 t 1 1 103443 445 0.00 2019-09-25 04:18:25 2019-09-25 04:36:26 t 1 1 103446 461 0.00 2019-09-25 04:59:31 2019-09-25 05:09:36 t 1 2 103450 430 0.00 2019-09-25 05:22:04 2019-09-25 05:51:52 t 1 1 103453 400 0.00 2019-09-25 05:59:19 2019-09-25 06:06:14 t 1 1 103134 488 0.00 2019-09-24 17:53:44 2019-09-24 17:57:12 t 1 1 103135 481 0.00 2019-09-24 17:34:14 2019-09-24 17:57:33 t 1 1 103142 488 0.00 2019-09-24 17:58:03 2019-09-24 18:13:03 t 1 1 103148 430 0.00 2019-09-24 18:42:42 2019-09-24 18:45:07 t 1 1 103152 445 0.00 2019-09-24 18:27:27 2019-09-24 18:53:36 t 1 1 103155 468 0.00 2019-09-24 18:51:42 2019-09-24 18:56:22 t 1 1 103157 296 0.00 2019-09-24 18:55:57 2019-09-24 18:57:39 t 1 2 103159 296 0.00 2019-09-24 18:57:46 2019-09-24 18:59:06 t 1 2 103161 481 0.00 2019-09-24 18:47:25 2019-09-24 19:03:44 t 1 1 103166 331 0.00 2019-09-24 19:12:22 2019-09-24 19:19:28 t 1 1 103168 325 0.00 2019-09-24 19:02:04 2019-09-24 19:32:09 t 1 2 103169 412 0.00 2019-09-24 19:33:54 2019-09-24 19:34:18 t 1 1 103178 462 0.00 2019-09-24 19:26:48 2019-09-24 19:55:38 t 1 1 103190 470 0.00 2019-09-24 20:03:36 2019-09-24 20:15:29 t 1 1 103191 462 0.00 2019-09-24 20:09:09 2019-09-24 20:16:18 t 1 1 103192 445 0.00 2019-09-24 19:58:07 2019-09-24 20:19:26 t 1 1 103193 412 0.00 2019-09-24 20:06:25 2019-09-24 20:21:08 t 1 1 103194 392 0.00 2019-09-24 20:25:38 2019-09-24 20:25:38 f 1 2 103204 327 0.00 2019-09-24 20:40:41 2019-09-24 20:42:24 t 1 1 103210 456 0.00 2019-09-24 20:35:07 2019-09-24 20:52:17 t 1 1 103212 306 0.00 2019-09-24 20:38:48 2019-09-24 20:53:30 t 1 1 103214 416 0.00 2019-09-24 20:32:29 2019-09-24 20:54:09 t 1 1 103215 490 0.00 2019-09-24 20:46:26 2019-09-24 20:54:23 t 1 1 103220 445 0.00 2019-09-24 20:58:08 2019-09-24 20:59:11 t 1 1 103225 400 0.00 2019-09-24 21:07:06 2019-09-24 21:09:43 t 1 1 103227 451 0.00 2019-09-24 20:58:40 2019-09-24 21:13:57 t 1 1 103230 392 0.00 2019-09-24 21:20:12 2019-09-24 21:20:12 f 1 2 103243 430 0.00 2019-09-24 21:14:47 2019-09-24 21:37:05 t 1 1 103244 327 0.00 2019-09-24 21:36:26 2019-09-24 21:37:29 t 1 1 103249 412 0.00 2019-09-24 20:54:45 2019-09-24 21:41:25 t 1 1 103251 292 0.00 2019-09-24 21:40:47 2019-09-24 21:41:54 t 1 2 103253 327 0.00 2019-09-24 21:42:23 2019-09-24 21:44:05 t 1 1 103255 327 0.00 2019-09-24 21:44:41 2019-09-24 21:45:10 t 1 1 103257 481 0.00 2019-09-24 21:44:59 2019-09-24 21:46:28 t 1 1 103261 327 0.00 2019-09-24 21:49:57 2019-09-24 21:50:35 t 1 1 103262 220 0.00 2019-09-24 20:37:55 2019-09-24 21:52:05 t 1 2 103263 327 0.00 2019-09-24 21:51:40 2019-09-24 21:53:47 t 1 1 103264 470 0.00 2019-09-24 21:25:31 2019-09-24 21:54:16 t 1 1 103272 456 0.00 2019-09-24 21:56:35 2019-09-24 21:58:05 t 1 1 103277 327 0.00 2019-09-24 22:05:45 2019-09-24 22:06:37 t 1 1 103280 470 0.00 2019-09-24 21:54:16 2019-09-24 22:08:14 t 1 1 103282 327 0.00 2019-09-24 22:08:27 2019-09-24 22:09:58 t 1 1 103283 432 0.00 2019-09-24 22:08:27 2019-09-24 22:10:28 t 1 1 103285 327 0.00 2019-09-24 22:11:16 2019-09-24 22:12:31 t 1 1 103288 395 0.00 2019-09-24 16:44:14 2019-09-24 22:15:25 t 1 2 103289 296 0.00 2019-09-24 22:14:11 2019-09-24 22:16:34 t 1 2 103294 392 0.00 2019-09-24 22:19:58 2019-09-24 22:19:58 f 1 2 103300 327 0.00 2019-09-24 22:22:36 2019-09-24 22:26:32 t 1 1 103304 451 0.00 2019-09-24 22:19:41 2019-09-24 22:29:10 t 1 1 103309 464 0.00 2019-09-24 22:30:28 2019-09-24 22:31:52 t 1 1 103311 470 0.00 2019-09-24 22:08:14 2019-09-24 22:32:00 t 1 1 103313 485 0.00 2019-09-24 22:16:46 2019-09-24 22:33:39 t 1 1 103316 220 0.00 2019-09-24 22:20:54 2019-09-24 22:37:17 t 1 2 103317 327 0.00 2019-09-24 22:36:31 2019-09-24 22:38:28 t 1 1 103319 451 0.00 2019-09-24 22:29:10 2019-09-24 22:40:33 t 1 1 103320 445 0.00 2019-09-24 21:49:08 2019-09-24 22:41:37 t 1 1 103321 485 0.00 2019-09-24 22:34:33 2019-09-24 22:42:10 t 1 1 103323 451 0.00 2019-09-24 22:42:33 2019-09-24 22:42:45 t 1 1 103330 470 0.00 2019-09-24 22:32:00 2019-09-24 22:48:55 t 1 1 103332 220 0.00 2019-09-24 22:48:30 2019-09-24 22:49:02 t 1 1 103334 220 0.00 2019-09-24 22:49:02 2019-09-24 22:49:41 t 1 1 103337 472 0.00 2019-09-24 22:44:08 2019-09-24 22:50:43 t 1 1 103338 220 0.00 2019-09-24 22:50:16 2019-09-24 22:50:54 t 1 1 103341 220 0.00 2019-09-24 22:50:54 2019-09-24 22:51:28 t 1 1 103343 220 0.00 2019-09-24 22:51:27 2019-09-24 22:52:04 t 1 1 103351 472 0.00 2019-09-24 22:52:13 2019-09-24 22:55:31 t 1 1 103357 220 0.00 2019-09-24 22:57:54 2019-09-24 22:58:28 t 1 1 103359 220 0.00 2019-09-24 22:58:27 2019-09-24 22:59:02 t 1 1 103360 472 0.00 2019-09-24 22:59:04 2019-09-24 22:59:31 t 1 1 103361 220 0.00 2019-09-24 22:59:02 2019-09-24 22:59:40 t 1 1 103363 472 0.00 2019-09-24 22:59:41 2019-09-24 23:00:04 t 1 1 103365 220 0.00 2019-09-24 22:59:40 2019-09-24 23:00:16 t 1 1 103367 220 0.00 2019-09-24 23:00:15 2019-09-24 23:00:51 t 1 1 103369 220 0.00 2019-09-24 23:00:50 2019-09-24 23:01:24 t 1 1 103371 483 0.00 2019-09-24 22:55:45 2019-09-24 23:02:02 t 1 1 103376 220 0.00 2019-09-24 23:01:24 2019-09-24 23:06:30 t 1 1 103380 220 0.00 2019-09-24 23:07:03 2019-09-24 23:07:39 t 1 1 103383 220 0.00 2019-09-24 23:07:38 2019-09-24 23:08:13 t 1 1 103384 392 0.00 2019-09-24 23:08:35 2019-09-24 23:08:35 f 1 2 103390 220 0.00 2019-09-24 23:10:01 2019-09-24 23:10:40 t 1 1 103391 220 0.00 2019-09-24 23:10:39 2019-09-24 23:11:18 t 1 1 103393 220 0.00 2019-09-24 23:11:18 2019-09-24 23:11:57 t 1 1 103394 220 0.00 2019-09-24 23:11:57 2019-09-24 23:12:30 t 1 1 103395 220 0.00 2019-09-24 23:12:30 2019-09-24 23:13:57 t 1 1 103396 220 0.00 2019-09-24 23:13:57 2019-09-24 23:14:33 t 1 1 103399 470 0.00 2019-09-24 22:59:34 2019-09-24 23:19:20 t 1 1 103401 220 0.00 2019-09-24 23:17:00 2019-09-24 23:21:11 t 1 1 103402 220 0.00 2019-09-24 23:21:11 2019-09-24 23:21:46 t 1 1 103403 220 0.00 2019-09-24 23:21:46 2019-09-24 23:26:21 t 1 1 103405 490 0.00 2019-09-24 23:19:04 2019-09-24 23:27:06 t 1 1 103406 483 0.00 2019-09-24 23:25:17 2019-09-24 23:27:29 t 1 1 103407 220 0.00 2019-09-24 23:26:56 2019-09-24 23:28:22 t 1 1 103411 220 0.00 2019-09-24 23:29:32 2019-09-24 23:30:08 t 1 1 103414 220 0.00 2019-09-24 23:30:39 2019-09-24 23:44:26 t 1 1 103417 483 0.00 2019-09-24 23:50:09 2019-09-24 23:57:07 t 1 1 103418 220 0.00 2019-09-24 22:40:30 2019-09-25 00:02:08 t 1 2 103419 483 0.00 2019-09-24 23:57:07 2019-09-25 00:04:39 t 1 1 103420 451 0.00 2019-09-25 00:03:55 2019-09-25 00:05:37 t 1 1 103421 292 0.00 2019-09-25 00:07:19 2019-09-25 00:08:26 t 1 2 103423 490 0.00 2019-09-25 00:06:42 2019-09-25 00:17:26 t 1 1 103424 451 0.00 2019-09-25 00:10:25 2019-09-25 00:18:47 t 1 1 103429 422 0.00 2019-09-25 00:37:38 2019-09-25 00:53:40 t 1 1 103430 490 0.00 2019-09-25 00:38:55 2019-09-25 00:59:45 t 1 1 103435 422 0.00 2019-09-25 01:05:00 2019-09-25 01:11:20 t 1 1 103439 451 0.00 2019-09-25 02:47:02 2019-09-25 02:48:51 t 1 1 103444 445 0.00 2019-09-25 04:36:30 2019-09-25 04:41:45 t 1 1 103447 220 0.00 2019-09-25 05:06:13 2019-09-25 05:09:40 t 1 1 103266 402 0.00 2019-09-24 21:32:20 2019-09-24 21:55:36 t 1 2 103268 464 0.00 2019-09-24 21:31:24 2019-09-24 21:55:58 t 1 1 103269 464 0.00 2019-09-24 21:56:07 2019-09-24 21:56:19 t 1 1 103270 327 0.00 2019-09-24 21:55:04 2019-09-24 21:57:10 t 1 1 103271 327 0.00 2019-09-24 21:57:22 2019-09-24 21:58:05 t 1 1 103273 451 0.00 2019-09-24 21:13:57 2019-09-24 21:58:14 t 1 1 103276 327 0.00 2019-09-24 22:04:32 2019-09-24 22:05:21 t 1 1 103281 325 0.00 2019-09-24 21:43:24 2019-09-24 22:09:24 t 1 2 103284 451 0.00 2019-09-24 21:58:14 2019-09-24 22:12:14 t 1 1 103286 220 0.00 2019-09-24 21:38:40 2019-09-24 22:13:45 t 1 2 103291 451 0.00 2019-09-24 22:14:05 2019-09-24 22:19:41 t 1 1 103292 392 0.00 2019-09-24 22:19:43 2019-09-24 22:19:43 f 1 2 103295 392 0.00 2019-09-24 22:20:05 2019-09-24 22:20:05 f 1 2 103296 472 0.00 2019-09-24 22:16:34 2019-09-24 22:20:30 t 1 1 103297 472 0.00 2019-09-24 22:23:05 2019-09-24 22:23:13 t 1 1 103298 432 0.00 2019-09-24 22:18:41 2019-09-24 22:23:55 t 1 1 103301 464 0.00 2019-09-24 21:56:22 2019-09-24 22:27:51 t 1 1 103302 472 0.00 2019-09-24 22:28:15 2019-09-24 22:28:21 t 1 1 103306 472 0.00 2019-09-24 22:29:39 2019-09-24 22:30:01 t 1 1 103307 472 0.00 2019-09-24 22:30:14 2019-09-24 22:30:36 t 1 1 103310 400 0.00 2019-09-24 22:30:18 2019-09-24 22:32:00 t 1 1 103312 472 0.00 2019-09-24 22:33:17 2019-09-24 22:33:24 t 1 1 103326 220 0.00 2019-09-24 22:42:06 2019-09-24 22:45:35 t 1 2 103329 220 0.00 2019-09-24 22:47:48 2019-09-24 22:48:30 t 1 1 103336 292 0.00 2019-09-24 22:49:37 2019-09-24 22:50:38 t 1 2 103340 400 0.00 2019-09-24 22:43:06 2019-09-24 22:51:13 t 1 1 103345 485 0.00 2019-09-24 22:49:10 2019-09-24 22:52:40 t 1 1 103346 220 0.00 2019-09-24 22:52:36 2019-09-24 22:53:13 t 1 1 103347 220 0.00 2019-09-24 22:53:12 2019-09-24 22:53:47 t 1 1 103348 220 0.00 2019-09-24 22:53:47 2019-09-24 22:54:21 t 1 1 103350 220 0.00 2019-09-24 22:54:55 2019-09-24 22:55:31 t 1 1 103352 472 0.00 2019-09-24 22:55:40 2019-09-24 22:55:42 t 1 1 103353 220 0.00 2019-09-24 22:55:30 2019-09-24 22:56:05 t 1 1 103354 220 0.00 2019-09-24 22:56:04 2019-09-24 22:56:41 t 1 1 103355 220 0.00 2019-09-24 22:56:40 2019-09-24 22:57:19 t 1 1 103356 220 0.00 2019-09-24 22:57:19 2019-09-24 22:57:55 t 1 1 103362 400 0.00 2019-09-24 22:57:27 2019-09-24 22:59:47 t 1 1 103368 472 0.00 2019-09-24 23:00:52 2019-09-24 23:01:08 t 1 1 103375 472 0.00 2019-09-24 23:05:31 2019-09-24 23:05:46 t 1 1 103379 472 0.00 2019-09-24 23:06:55 2019-09-24 23:07:07 t 1 1 103385 220 0.00 2019-09-24 23:08:13 2019-09-24 23:08:51 t 1 1 103386 220 0.00 2019-09-24 23:08:51 2019-09-24 23:09:25 t 1 1 103387 220 0.00 2019-09-24 23:09:24 2019-09-24 23:10:01 t 1 1 103388 400 0.00 2019-09-24 23:02:13 2019-09-24 23:10:21 t 1 1 103397 220 0.00 2019-09-24 23:14:32 2019-09-24 23:16:26 t 1 1 103404 220 0.00 2019-09-24 23:26:21 2019-09-24 23:26:56 t 1 1 103413 476 0.00 2019-09-24 22:34:00 2019-09-24 23:38:10 t 1 2 103426 464 0.00 2019-09-25 00:25:53 2019-09-25 00:26:51 t 1 1 103427 436 0.00 2019-09-25 00:17:52 2019-09-25 00:44:19 t 1 1 103428 470 0.00 2019-09-24 23:28:23 2019-09-25 00:49:01 t 1 1 103431 422 0.00 2019-09-25 00:53:40 2019-09-25 01:00:04 t 1 1 103433 422 0.00 2019-09-25 01:00:04 2019-09-25 01:05:00 t 1 1 103438 412 0.00 2019-09-24 22:24:53 2019-09-25 02:08:04 t 1 1 103445 445 0.00 2019-09-25 04:41:47 2019-09-25 05:07:06 t 1 1 103451 464 0.00 2019-09-25 05:55:12 2019-09-25 05:57:43 t 1 1 103457 464 0.00 2019-09-25 06:23:01 2019-09-25 06:25:00 t 1 1 103463 220 0.00 2019-09-25 07:03:23 2019-09-25 07:03:25 t 1 1 103480 445 0.00 2019-09-25 07:43:02 2019-09-25 07:46:19 t 1 1 103482 481 0.00 2019-09-25 07:45:53 2019-09-25 07:48:46 t 1 1 103487 481 0.00 2019-09-25 07:48:46 2019-09-25 08:01:37 t 1 1 103491 445 0.00 2019-09-25 08:02:42 2019-09-25 08:06:27 t 1 1 103494 400 0.00 2019-09-25 08:10:16 2019-09-25 08:12:33 t 1 1 103499 430 0.00 2019-09-25 08:26:05 2019-09-25 08:27:49 t 1 1 103502 400 0.00 2019-09-25 08:34:46 2019-09-25 08:38:19 t 1 1 103505 490 0.00 2019-09-25 08:38:51 2019-09-25 08:41:37 t 1 1 103506 445 0.00 2019-09-25 08:15:10 2019-09-25 08:43:15 t 1 1 103508 445 0.00 2019-09-25 08:46:45 2019-09-25 08:48:22 t 1 1 103513 402 0.00 2019-09-25 06:36:15 2019-09-25 09:01:20 t 1 2 103516 306 0.00 2019-09-25 08:51:45 2019-09-25 09:07:57 t 1 1 103531 220 0.00 2019-09-25 07:03:31 2019-09-25 09:49:35 t 1 1 103534 400 0.00 2019-09-25 09:52:11 2019-09-25 09:53:45 t 1 1 103536 220 0.00 2019-09-25 09:49:34 2019-09-25 09:54:13 t 1 1 103546 220 0.00 2019-09-25 10:02:56 2019-09-25 10:03:54 t 1 1 103547 220 0.00 2019-09-25 10:03:54 2019-09-25 10:04:34 t 1 1 103549 220 0.00 2019-09-25 10:04:34 2019-09-25 10:06:23 t 1 1 103551 220 0.00 2019-09-25 10:06:23 2019-09-25 10:07:04 t 1 1 103552 220 0.00 2019-09-25 10:07:03 2019-09-25 10:07:38 t 1 1 103553 220 0.00 2019-09-25 10:07:38 2019-09-25 10:08:20 t 1 1 103556 220 0.00 2019-09-25 10:10:20 2019-09-25 10:13:01 t 1 1 103559 220 0.00 2019-09-25 10:14:20 2019-09-25 10:14:53 t 1 1 103561 220 0.00 2019-09-25 10:14:53 2019-09-25 10:18:31 t 1 1 103564 220 0.00 2019-09-25 10:19:41 2019-09-25 10:20:18 t 1 1 103566 432 0.00 2019-09-25 10:23:09 2019-09-25 10:23:32 t 1 1 103570 481 0.00 2019-09-25 09:57:58 2019-09-25 10:25:04 t 1 1 103571 220 0.00 2019-09-25 10:20:18 2019-09-25 10:25:35 t 1 1 103574 445 0.00 2019-09-25 10:25:19 2019-09-25 10:26:37 t 1 1 103576 220 0.00 2019-09-25 10:26:11 2019-09-25 10:29:45 t 1 1 103579 220 0.00 2019-09-25 10:30:20 2019-09-25 10:31:04 t 1 1 103580 220 0.00 2019-09-25 10:31:03 2019-09-25 10:31:41 t 1 1 103581 327 0.00 2019-09-25 10:28:49 2019-09-25 10:33:57 t 1 1 103582 416 0.00 2019-09-25 09:47:46 2019-09-25 10:34:51 t 1 1 103584 432 0.00 2019-09-25 10:35:22 2019-09-25 10:35:31 t 1 1 103593 220 0.00 2019-09-25 10:36:15 2019-09-25 10:44:38 t 1 1 103595 220 0.00 2019-09-25 10:45:17 2019-09-25 10:46:02 t 1 1 103596 220 0.00 2019-09-25 10:46:02 2019-09-25 10:46:36 t 1 1 103598 400 0.00 2019-09-25 10:13:39 2019-09-25 10:47:49 t 1 1 103599 470 0.00 2019-09-25 10:39:36 2019-09-25 10:49:02 t 1 1 103600 220 0.00 2019-09-25 10:46:36 2019-09-25 10:50:11 t 1 1 103607 220 0.00 2019-09-25 10:50:48 2019-09-25 10:54:27 t 1 1 103608 220 0.00 2019-09-25 10:54:26 2019-09-25 10:55:03 t 1 1 103611 470 0.00 2019-09-25 10:49:01 2019-09-25 10:56:45 t 1 1 103612 474 0.00 2019-09-25 10:58:25 2019-09-25 10:59:39 t 1 1 103614 327 0.00 2019-09-25 10:34:21 2019-09-25 11:01:20 t 1 1 103618 220 0.00 2019-09-25 11:04:55 2019-09-25 11:05:30 t 1 1 103623 220 0.00 2019-09-25 11:05:30 2019-09-25 11:13:23 t 1 1 103629 464 0.00 2019-09-25 11:15:06 2019-09-25 11:16:28 t 1 1 103630 220 0.00 2019-09-25 11:15:23 2019-09-25 11:17:11 t 1 1 103448 451 0.00 2019-09-25 04:55:00 2019-09-25 05:10:56 t 1 1 103449 451 0.00 2019-09-25 05:10:56 2019-09-25 05:19:06 t 1 1 103452 470 0.00 2019-09-25 05:53:21 2019-09-25 05:59:22 t 1 1 103456 220 0.00 2019-09-25 05:09:40 2019-09-25 06:24:53 t 1 1 103459 331 0.00 2019-09-25 05:36:37 2019-09-25 06:52:33 t 1 1 103461 331 0.00 2019-09-25 06:52:13 2019-09-25 06:53:21 t 1 1 103462 331 0.00 2019-09-25 06:55:29 2019-09-25 06:56:54 t 1 1 103464 445 0.00 2019-09-25 06:12:28 2019-09-25 07:04:47 t 1 1 103465 445 0.00 2019-09-25 07:04:47 2019-09-25 07:05:49 t 1 1 103466 470 0.00 2019-09-25 07:09:47 2019-09-25 07:16:54 t 1 1 103468 445 0.00 2019-09-25 07:19:07 2019-09-25 07:23:23 t 1 1 103469 445 0.00 2019-09-25 07:23:49 2019-09-25 07:25:01 t 1 1 103471 430 0.00 2019-09-25 07:32:15 2019-09-25 07:35:34 t 1 1 103473 445 0.00 2019-09-25 07:25:32 2019-09-25 07:36:29 t 1 1 103474 220 0.00 2019-09-25 07:35:14 2019-09-25 07:37:37 t 1 2 103475 327 0.00 2019-09-25 07:37:44 2019-09-25 07:38:30 t 1 1 103476 327 0.00 2019-09-25 07:39:14 2019-09-25 07:40:07 t 1 1 103477 481 0.00 2019-09-25 07:32:01 2019-09-25 07:40:32 t 1 1 103481 220 0.00 2019-09-25 07:46:25 2019-09-25 07:47:49 t 1 2 103484 400 0.00 2019-09-25 07:50:18 2019-09-25 07:52:08 t 1 1 103486 220 0.00 2019-09-25 07:46:42 2019-09-25 08:00:05 t 1 2 103489 327 0.00 2019-09-25 08:00:38 2019-09-25 08:02:22 t 1 1 103490 464 0.00 2019-09-25 07:49:26 2019-09-25 08:04:12 t 1 1 103492 445 0.00 2019-09-25 08:07:17 2019-09-25 08:08:18 t 1 1 103493 416 0.00 2019-09-25 07:56:55 2019-09-25 08:10:15 t 1 1 103496 327 0.00 2019-09-25 08:12:18 2019-09-25 08:14:52 t 1 1 103500 220 0.00 2019-09-25 06:33:44 2019-09-25 08:28:10 t 1 2 103503 490 0.00 2019-09-25 08:32:09 2019-09-25 08:38:51 t 1 1 103507 445 0.00 2019-09-25 08:43:35 2019-09-25 08:46:39 t 1 1 103512 296 0.00 2019-09-25 08:56:42 2019-09-25 08:59:05 t 1 2 103514 445 0.00 2019-09-25 08:49:56 2019-09-25 09:03:49 t 1 1 103515 490 0.00 2019-09-25 09:01:21 2019-09-25 09:04:16 t 1 1 103517 481 0.00 2019-09-25 08:01:37 2019-09-25 09:14:00 t 1 1 103518 481 0.00 2019-09-25 09:14:00 2019-09-25 09:16:04 t 1 1 103519 474 0.00 2019-09-25 08:41:23 2019-09-25 09:21:20 t 1 1 103524 306 0.00 2019-09-25 09:09:48 2019-09-25 09:36:16 t 1 1 103525 432 0.00 2019-09-25 09:41:01 2019-09-25 09:41:23 t 1 1 103535 432 0.00 2019-09-25 09:53:31 2019-09-25 09:53:53 t 1 1 103539 306 0.00 2019-09-25 09:54:43 2019-09-25 09:56:49 t 1 1 103540 481 0.00 2019-09-25 09:16:04 2019-09-25 09:57:58 t 1 1 103544 445 0.00 2019-09-25 09:48:25 2019-09-25 10:02:11 t 1 1 103548 327 0.00 2019-09-25 08:52:50 2019-09-25 10:06:20 t 1 1 103550 400 0.00 2019-09-25 10:03:08 2019-09-25 10:06:56 t 1 1 103554 220 0.00 2019-09-25 10:08:20 2019-09-25 10:09:43 t 1 1 103557 220 0.00 2019-09-25 10:13:01 2019-09-25 10:13:45 t 1 1 103558 220 0.00 2019-09-25 10:13:45 2019-09-25 10:14:20 t 1 1 103560 474 0.00 2019-09-25 09:21:20 2019-09-25 10:18:19 t 1 1 103565 432 0.00 2019-09-25 09:55:11 2019-09-25 10:20:42 t 1 1 103567 327 0.00 2019-09-25 10:08:22 2019-09-25 10:24:01 t 1 1 103568 432 0.00 2019-09-25 10:24:31 2019-09-25 10:24:41 t 1 1 103572 327 0.00 2019-09-25 10:25:18 2019-09-25 10:25:53 t 1 1 103573 220 0.00 2019-09-25 10:25:34 2019-09-25 10:26:11 t 1 1 103577 220 0.00 2019-09-25 10:29:45 2019-09-25 10:30:21 t 1 1 103578 432 0.00 2019-09-25 10:30:25 2019-09-25 10:30:52 t 1 1 103586 432 0.00 2019-09-25 10:35:51 2019-09-25 10:35:54 t 1 1 103587 220 0.00 2019-09-25 10:35:41 2019-09-25 10:36:15 t 1 1 103589 432 0.00 2019-09-25 10:37:14 2019-09-25 10:38:26 t 1 1 103592 306 0.00 2019-09-25 10:37:16 2019-09-25 10:41:22 t 1 1 103594 220 0.00 2019-09-25 10:44:38 2019-09-25 10:45:18 t 1 1 103597 306 0.00 2019-09-25 10:41:22 2019-09-25 10:46:47 t 1 1 103601 220 0.00 2019-09-25 10:50:11 2019-09-25 10:50:48 t 1 1 103603 432 0.00 2019-09-25 10:51:04 2019-09-25 10:51:37 t 1 1 103605 432 0.00 2019-09-25 10:52:49 2019-09-25 10:53:07 t 1 1 103606 464 0.00 2019-09-25 10:51:41 2019-09-25 10:54:26 t 1 1 103609 474 0.00 2019-09-25 10:17:26 2019-09-25 10:55:10 t 1 1 103613 432 0.00 2019-09-25 10:54:35 2019-09-25 11:01:12 t 1 1 103619 432 0.00 2019-09-25 11:04:46 2019-09-25 11:06:04 t 1 1 103620 432 0.00 2019-09-25 11:06:14 2019-09-25 11:07:06 t 1 1 103624 247 0.00 2019-09-25 11:07:50 2019-09-25 11:13:27 t 1 2 103628 220 0.00 2019-09-25 11:14:48 2019-09-25 11:15:24 t 1 1 103634 220 0.00 2019-09-25 11:19:04 2019-09-25 11:20:27 t 1 1 103636 220 0.00 2019-09-25 11:21:02 2019-09-25 11:22:45 t 1 1 103637 220 0.00 2019-09-25 11:22:45 2019-09-25 11:23:20 t 1 1 103639 481 0.00 2019-09-25 11:24:10 2019-09-25 11:25:34 t 1 1 103641 220 0.00 2019-09-25 11:26:44 2019-09-25 11:30:20 t 1 1 103646 220 0.00 2019-09-25 11:35:50 2019-09-25 11:36:30 t 1 1 103650 327 0.00 2019-09-25 11:17:00 2019-09-25 11:41:56 t 1 1 103656 400 0.00 2019-09-25 11:49:10 2019-09-25 11:51:01 t 1 1 103662 220 0.00 2019-09-25 11:54:07 2019-09-25 11:58:09 t 1 1 103663 220 0.00 2019-09-25 11:58:09 2019-09-25 11:58:56 t 1 1 103677 220 0.00 2019-09-25 12:09:37 2019-09-25 12:13:05 t 1 1 103678 416 0.00 2019-09-25 10:51:35 2019-09-25 12:13:51 t 1 1 103679 474 0.00 2019-09-25 10:59:44 2019-09-25 12:14:38 t 1 1 103682 416 0.00 2019-09-25 12:14:28 2019-09-25 12:16:55 t 1 1 103685 445 0.00 2019-09-25 12:17:43 2019-09-25 12:20:20 t 1 1 103686 490 0.00 2019-09-25 12:17:13 2019-09-25 12:25:27 t 1 1 103693 327 0.00 2019-09-25 12:12:33 2019-09-25 12:37:19 t 1 1 103696 474 0.00 2019-09-25 12:14:53 2019-09-25 12:38:53 t 1 1 103697 464 0.00 2019-09-25 12:38:08 2019-09-25 12:40:01 t 1 1 103698 474 0.00 2019-09-25 12:39:05 2019-09-25 12:40:48 t 1 1 103699 445 0.00 2019-09-25 12:35:58 2019-09-25 12:44:52 t 1 1 103705 445 0.00 2019-09-25 12:54:31 2019-09-25 12:56:01 t 1 1 103706 220 0.00 2019-09-25 12:56:53 2019-09-25 12:58:13 t 1 2 103709 220 0.00 2019-09-25 12:13:46 2019-09-25 13:03:27 t 1 1 103712 379 0.00 2019-09-25 12:51:53 2019-09-25 13:06:17 t 1 1 103714 464 0.00 2019-09-25 13:08:46 2019-09-25 13:09:22 t 1 1 103716 474 0.00 2019-09-25 12:47:10 2019-09-25 13:09:47 t 1 1 103718 327 0.00 2019-09-25 13:09:33 2019-09-25 13:12:54 t 1 1 103727 327 0.00 2019-09-25 13:18:31 2019-09-25 13:19:04 t 1 1 103728 379 0.00 2019-09-25 13:14:01 2019-09-25 13:20:02 t 1 1 103730 474 0.00 2019-09-25 13:09:52 2019-09-25 13:20:59 t 1 1 103738 327 0.00 2019-09-25 13:28:50 2019-09-25 13:28:51 t 1 1 103740 327 0.00 2019-09-25 13:30:02 2019-09-25 13:31:19 t 1 1 103743 327 0.00 2019-09-25 13:33:26 2019-09-25 13:34:17 t 1 1 103749 327 0.00 2019-09-25 13:34:49 2019-09-25 13:36:49 t 1 1 103753 481 0.00 2019-09-25 13:36:50 2019-09-25 13:38:01 t 1 1 103754 445 0.00 2019-09-25 13:35:53 2019-09-25 13:39:10 t 1 1 103454 445 0.00 2019-09-25 05:07:12 2019-09-25 06:12:28 t 1 1 103455 461 0.00 2019-09-25 05:11:48 2019-09-25 06:21:55 t 1 2 103458 470 0.00 2019-09-25 06:35:41 2019-09-25 06:37:42 t 1 1 103460 220 0.00 2019-09-25 06:24:53 2019-09-25 06:52:43 t 1 1 103467 445 0.00 2019-09-25 07:16:18 2019-09-25 07:19:02 t 1 1 103470 430 0.00 2019-09-25 07:09:44 2019-09-25 07:32:15 t 1 1 103472 327 0.00 2019-09-25 07:34:58 2019-09-25 07:36:00 t 1 1 103478 445 0.00 2019-09-25 07:36:31 2019-09-25 07:42:31 t 1 1 103479 481 0.00 2019-09-25 07:40:32 2019-09-25 07:45:53 t 1 1 103483 327 0.00 2019-09-25 07:50:02 2019-09-25 07:50:42 t 1 1 103485 416 0.00 2019-09-25 00:25:02 2019-09-25 07:56:55 t 1 1 103488 445 0.00 2019-09-25 07:46:19 2019-09-25 08:01:44 t 1 1 103495 445 0.00 2019-09-25 08:10:06 2019-09-25 08:13:17 t 1 1 103497 400 0.00 2019-09-25 08:16:00 2019-09-25 08:22:34 t 1 1 103498 327 0.00 2019-09-25 08:24:51 2019-09-25 08:25:23 t 1 1 103501 327 0.00 2019-09-25 08:35:19 2019-09-25 08:37:01 t 1 1 103504 474 0.00 2019-09-25 07:18:59 2019-09-25 08:41:23 t 1 1 103509 327 0.00 2019-09-25 08:46:57 2019-09-25 08:49:51 t 1 1 103510 430 0.00 2019-09-25 08:51:24 2019-09-25 08:51:35 t 1 1 103511 470 0.00 2019-09-25 08:37:47 2019-09-25 08:52:22 t 1 1 103520 470 0.00 2019-09-25 08:52:22 2019-09-25 09:26:02 t 1 1 103521 432 0.00 2019-09-25 09:26:00 2019-09-25 09:28:11 t 1 1 103522 432 0.00 2019-09-25 09:29:25 2019-09-25 09:30:46 t 1 1 103523 445 0.00 2019-09-25 09:04:00 2019-09-25 09:32:07 t 1 1 103526 456 0.00 2019-09-25 09:32:06 2019-09-25 09:42:00 t 1 1 103527 416 0.00 2019-09-25 08:10:15 2019-09-25 09:44:01 t 1 1 103528 445 0.00 2019-09-25 09:32:15 2019-09-25 09:46:28 t 1 1 103529 416 0.00 2019-09-25 09:45:11 2019-09-25 09:47:41 t 1 1 103530 445 0.00 2019-09-25 09:46:32 2019-09-25 09:48:17 t 1 1 103532 306 0.00 2019-09-25 09:37:49 2019-09-25 09:50:03 t 1 1 103533 306 0.00 2019-09-25 09:50:03 2019-09-25 09:52:56 t 1 1 103537 306 0.00 2019-09-25 09:53:16 2019-09-25 09:54:25 t 1 1 103538 220 0.00 2019-09-25 09:54:12 2019-09-25 09:54:47 t 1 1 103541 220 0.00 2019-09-25 09:54:47 2019-09-25 09:58:47 t 1 1 103542 220 0.00 2019-09-25 09:58:47 2019-09-25 09:59:59 t 1 1 103543 306 0.00 2019-09-25 09:57:56 2019-09-25 10:00:16 t 1 1 103545 220 0.00 2019-09-25 09:59:59 2019-09-25 10:02:56 t 1 1 103555 220 0.00 2019-09-25 10:09:42 2019-09-25 10:10:20 t 1 1 103562 220 0.00 2019-09-25 10:18:31 2019-09-25 10:19:07 t 1 1 103563 220 0.00 2019-09-25 10:19:07 2019-09-25 10:19:41 t 1 1 103569 445 0.00 2019-09-25 10:02:16 2019-09-25 10:24:55 t 1 1 103575 481 0.00 2019-09-25 10:26:03 2019-09-25 10:29:11 t 1 1 103583 306 0.00 2019-09-25 10:29:17 2019-09-25 10:35:09 t 1 1 103585 220 0.00 2019-09-25 10:31:40 2019-09-25 10:35:41 t 1 1 103588 481 0.00 2019-09-25 10:30:25 2019-09-25 10:37:48 t 1 1 103590 416 0.00 2019-09-25 10:34:58 2019-09-25 10:39:46 t 1 1 103591 432 0.00 2019-09-25 10:40:40 2019-09-25 10:41:17 t 1 1 103602 416 0.00 2019-09-25 10:39:52 2019-09-25 10:51:27 t 1 1 103604 432 0.00 2019-09-25 10:52:25 2019-09-25 10:52:34 t 1 1 103610 400 0.00 2019-09-25 10:51:26 2019-09-25 10:56:34 t 1 1 103615 220 0.00 2019-09-25 10:55:02 2019-09-25 11:03:49 t 1 1 103616 220 0.00 2019-09-25 11:03:49 2019-09-25 11:04:25 t 1 1 103617 220 0.00 2019-09-25 11:04:24 2019-09-25 11:04:55 t 1 1 103621 327 0.00 2019-09-25 11:02:09 2019-09-25 11:07:09 t 1 1 103622 432 0.00 2019-09-25 11:08:48 2019-09-25 11:11:41 t 1 1 103625 445 0.00 2019-09-25 10:26:42 2019-09-25 11:13:45 t 1 1 103626 220 0.00 2019-09-25 11:13:22 2019-09-25 11:14:00 t 1 1 103627 220 0.00 2019-09-25 11:14:00 2019-09-25 11:14:48 t 1 1 103633 220 0.00 2019-09-25 11:18:31 2019-09-25 11:19:05 t 1 1 103647 220 0.00 2019-09-25 11:36:26 2019-09-25 11:40:03 t 1 2 103653 470 0.00 2019-09-25 10:56:45 2019-09-25 11:47:51 t 1 1 103654 220 0.00 2019-09-25 11:46:15 2019-09-25 11:50:12 t 1 1 103658 220 0.00 2019-09-25 11:53:26 2019-09-25 11:54:08 t 1 1 103659 306 0.00 2019-09-25 11:54:39 2019-09-25 11:56:54 t 1 1 103664 327 0.00 2019-09-25 11:49:00 2019-09-25 11:59:00 t 1 1 103665 327 0.00 2019-09-25 12:00:07 2019-09-25 12:01:36 t 1 1 103666 220 0.00 2019-09-25 11:58:55 2019-09-25 12:02:46 t 1 1 103668 327 0.00 2019-09-25 12:03:01 2019-09-25 12:05:55 t 1 1 103669 220 0.00 2019-09-25 12:03:22 2019-09-25 12:06:48 t 1 1 103670 220 0.00 2019-09-25 12:06:48 2019-09-25 12:07:34 t 1 1 103675 220 0.00 2019-09-25 12:08:23 2019-09-25 12:09:38 t 1 1 103680 445 0.00 2019-09-25 12:07:47 2019-09-25 12:16:27 t 1 1 103687 420 0.00 2019-09-25 12:21:09 2019-09-25 12:29:16 t 1 1 103690 420 0.00 2019-09-25 12:29:16 2019-09-25 12:31:26 t 1 1 103692 445 0.00 2019-09-25 12:33:28 2019-09-25 12:35:32 t 1 1 103703 327 0.00 2019-09-25 12:37:19 2019-09-25 12:53:29 t 1 1 103708 416 0.00 2019-09-25 12:53:35 2019-09-25 13:02:49 t 1 1 103713 470 0.00 2019-09-25 12:50:03 2019-09-25 13:07:33 t 1 1 103715 327 0.00 2019-09-25 12:53:29 2019-09-25 13:09:33 t 1 1 103717 416 0.00 2019-09-25 13:04:00 2019-09-25 13:11:18 t 1 1 103719 306 0.00 2019-09-25 13:10:00 2019-09-25 13:12:55 t 1 1 103720 327 0.00 2019-09-25 13:13:37 2019-09-25 13:13:52 t 1 1 103722 490 0.00 2019-09-25 13:07:06 2019-09-25 13:14:40 t 1 1 103724 490 0.00 2019-09-25 13:14:39 2019-09-25 13:16:32 t 1 1 103725 327 0.00 2019-09-25 13:15:10 2019-09-25 13:18:11 t 1 1 103726 327 0.00 2019-09-25 13:18:19 2019-09-25 13:18:19 t 1 1 103729 327 0.00 2019-09-25 13:19:42 2019-09-25 13:20:15 t 1 1 103731 445 0.00 2019-09-25 13:04:47 2019-09-25 13:21:00 t 1 1 103732 416 0.00 2019-09-25 13:11:17 2019-09-25 13:21:18 t 1 1 103735 327 0.00 2019-09-25 13:24:10 2019-09-25 13:26:24 t 1 1 103736 327 0.00 2019-09-25 13:26:32 2019-09-25 13:28:08 t 1 1 103737 327 0.00 2019-09-25 13:28:42 2019-09-25 13:28:43 t 1 1 103739 445 0.00 2019-09-25 13:21:50 2019-09-25 13:30:03 t 1 1 103741 327 0.00 2019-09-25 13:29:29 2019-09-25 13:31:25 t 1 1 103742 327 0.00 2019-09-25 13:31:59 2019-09-25 13:32:50 t 1 1 103745 481 0.00 2019-09-25 11:57:02 2019-09-25 13:35:43 t 1 1 103752 327 0.00 2019-09-25 13:37:39 2019-09-25 13:37:54 t 1 1 103756 220 0.00 2019-09-25 13:33:54 2019-09-25 13:41:11 t 1 1 103759 445 0.00 2019-09-25 13:40:24 2019-09-25 13:43:23 t 1 1 103761 464 0.00 2019-09-25 13:45:16 2019-09-25 13:47:14 t 1 1 103764 445 0.00 2019-09-25 13:50:16 2019-09-25 13:51:50 t 1 1 103770 306 0.00 2019-09-25 13:56:13 2019-09-25 14:00:02 t 1 1 103771 327 0.00 2019-09-25 13:40:05 2019-09-25 14:02:38 t 1 1 103775 327 0.00 2019-09-25 14:02:38 2019-09-25 14:12:22 t 1 1 103776 490 0.00 2019-09-25 13:57:55 2019-09-25 14:13:57 t 1 1 103779 327 0.00 2019-09-25 14:16:06 2019-09-25 14:16:40 t 1 1 103782 220 0.00 2019-09-25 13:41:30 2019-09-25 14:24:24 t 1 1 103631 220 0.00 2019-09-25 11:17:10 2019-09-25 11:17:47 t 1 1 103632 220 0.00 2019-09-25 11:17:46 2019-09-25 11:18:32 t 1 1 103635 220 0.00 2019-09-25 11:20:27 2019-09-25 11:21:03 t 1 1 103638 481 0.00 2019-09-25 10:38:55 2019-09-25 11:24:11 t 1 1 103640 220 0.00 2019-09-25 11:23:20 2019-09-25 11:26:44 t 1 1 103642 220 0.00 2019-09-25 11:30:20 2019-09-25 11:30:54 t 1 1 103643 220 0.00 2019-09-25 11:30:54 2019-09-25 11:32:00 t 1 1 103644 220 0.00 2019-09-25 11:31:59 2019-09-25 11:32:30 t 1 1 103645 220 0.00 2019-09-25 11:32:30 2019-09-25 11:35:50 t 1 1 103648 220 0.00 2019-09-25 11:36:30 2019-09-25 11:41:09 t 1 1 103649 220 0.00 2019-09-25 11:41:09 2019-09-25 11:41:45 t 1 1 103651 220 0.00 2019-09-25 11:41:45 2019-09-25 11:45:17 t 1 1 103652 220 0.00 2019-09-25 11:45:16 2019-09-25 11:46:15 t 1 1 103655 220 0.00 2019-09-25 11:50:12 2019-09-25 11:50:47 t 1 1 103657 220 0.00 2019-09-25 11:50:47 2019-09-25 11:53:27 t 1 1 103660 481 0.00 2019-09-25 11:25:42 2019-09-25 11:57:02 t 1 1 103661 412 0.00 2019-09-25 07:07:55 2019-09-25 11:57:09 t 1 1 103667 220 0.00 2019-09-25 12:02:45 2019-09-25 12:03:22 t 1 1 103671 445 0.00 2019-09-25 11:13:55 2019-09-25 12:07:41 t 1 1 103672 400 0.00 2019-09-25 12:04:39 2019-09-25 12:08:01 t 1 1 103673 220 0.00 2019-09-25 12:07:33 2019-09-25 12:08:24 t 1 1 103674 470 0.00 2019-09-25 12:07:45 2019-09-25 12:09:37 t 1 1 103676 327 0.00 2019-09-25 12:09:19 2019-09-25 12:11:38 t 1 1 103681 470 0.00 2019-09-25 12:11:44 2019-09-25 12:16:52 t 1 1 103683 490 0.00 2019-09-25 11:57:53 2019-09-25 12:17:13 t 1 1 103684 445 0.00 2019-09-25 12:17:04 2019-09-25 12:17:38 t 1 1 103688 395 0.00 2019-09-25 11:42:03 2019-09-25 12:29:50 t 1 2 103689 490 0.00 2019-09-25 12:26:02 2019-09-25 12:30:26 t 1 1 103691 445 0.00 2019-09-25 12:24:17 2019-09-25 12:33:29 t 1 1 103694 464 0.00 2019-09-25 12:35:07 2019-09-25 12:37:52 t 1 1 103695 306 0.00 2019-09-25 12:36:03 2019-09-25 12:38:51 t 1 1 103700 474 0.00 2019-09-25 12:41:11 2019-09-25 12:47:01 t 1 1 103701 379 0.00 2019-09-25 08:28:49 2019-09-25 12:51:53 t 1 1 103702 416 0.00 2019-09-25 12:18:09 2019-09-25 12:53:11 t 1 1 103704 445 0.00 2019-09-25 12:45:02 2019-09-25 12:54:18 t 1 1 103707 220 0.00 2019-09-25 12:57:38 2019-09-25 12:59:01 t 1 2 103710 416 0.00 2019-09-25 13:02:49 2019-09-25 13:04:00 t 1 1 103711 445 0.00 2019-09-25 12:59:55 2019-09-25 13:04:49 t 1 1 103721 379 0.00 2019-09-25 13:06:17 2019-09-25 13:14:01 t 1 1 103723 327 0.00 2019-09-25 13:14:39 2019-09-25 13:15:04 t 1 1 103733 327 0.00 2019-09-25 13:20:47 2019-09-25 13:23:39 t 1 1 103734 379 0.00 2019-09-25 13:20:02 2019-09-25 13:24:43 t 1 1 103744 490 0.00 2019-09-25 13:16:32 2019-09-25 13:34:52 t 1 1 103746 445 0.00 2019-09-25 13:30:11 2019-09-25 13:35:48 t 1 1 103747 379 0.00 2019-09-25 13:24:43 2019-09-25 13:36:26 t 1 1 103748 481 0.00 2019-09-25 13:35:43 2019-09-25 13:36:35 t 1 1 103750 481 0.00 2019-09-25 13:36:34 2019-09-25 13:36:50 t 1 1 103751 327 0.00 2019-09-25 13:37:23 2019-09-25 13:37:32 t 1 1 103755 327 0.00 2019-09-25 13:38:43 2019-09-25 13:39:53 t 1 1 103758 481 0.00 2019-09-25 13:42:50 2019-09-25 13:43:11 t 1 1 103760 488 0.00 2019-09-25 07:03:04 2019-09-25 13:46:18 t 1 1 103766 451 0.00 2019-09-25 13:48:37 2019-09-25 13:53:36 t 1 1 103767 490 0.00 2019-09-25 13:48:49 2019-09-25 13:57:55 t 1 1 103768 445 0.00 2019-09-25 13:57:30 2019-09-25 13:59:25 t 1 1 103772 451 0.00 2019-09-25 13:53:36 2019-09-25 14:06:44 t 1 1 103773 306 0.00 2019-09-25 14:01:43 2019-09-25 14:10:37 t 1 1 103774 481 0.00 2019-09-25 13:43:11 2019-09-25 14:11:53 t 1 1 103780 499 0.00 2019-09-25 12:15:55 2019-09-25 14:18:46 t 1 1 103785 464 0.00 2019-09-25 14:32:56 2019-09-25 14:35:50 t 1 1 103788 327 0.00 2019-09-25 14:36:09 2019-09-25 14:38:37 t 1 1 103791 464 0.00 2019-09-25 14:38:34 2019-09-25 14:47:48 t 1 1 103792 464 0.00 2019-09-25 14:47:51 2019-09-25 14:48:21 t 1 1 103793 327 0.00 2019-09-25 14:39:19 2019-09-25 14:50:08 t 1 1 103798 464 0.00 2019-09-25 14:48:24 2019-09-25 14:54:33 t 1 1 103799 220 0.00 2019-09-25 12:58:13 2019-09-25 14:55:36 t 1 2 103800 325 0.00 2019-09-25 14:31:50 2019-09-25 14:56:56 t 1 2 103801 481 0.00 2019-09-25 14:11:52 2019-09-25 15:00:46 t 1 1 103806 306 0.00 2019-09-25 14:56:17 2019-09-25 15:11:11 t 1 1 103819 412 0.00 2019-09-25 11:57:09 2019-09-25 15:26:34 t 1 1 103820 488 0.00 2019-09-25 15:21:22 2019-09-25 15:26:36 t 1 1 103826 432 0.00 2019-09-25 15:33:13 2019-09-25 15:40:26 t 1 1 103829 488 0.00 2019-09-25 15:42:04 2019-09-25 15:44:46 t 1 1 103832 327 0.00 2019-09-25 15:34:48 2019-09-25 16:02:23 t 1 1 103835 422 0.00 2019-09-25 16:03:55 2019-09-25 16:13:50 t 1 1 103837 400 0.00 2019-09-25 16:14:40 2019-09-25 16:17:30 t 1 1 103840 325 0.00 2019-09-25 16:18:02 2019-09-25 16:22:55 t 1 2 103843 498 0.00 2019-09-25 14:58:35 2019-09-25 16:27:23 t 1 2 103848 445 0.00 2019-09-25 16:25:06 2019-09-25 16:36:52 t 1 1 103851 485 0.00 2019-09-25 16:31:55 2019-09-25 16:42:20 t 1 1 103853 327 0.00 2019-09-25 16:43:50 2019-09-25 16:44:31 t 1 1 103857 485 0.00 2019-09-25 16:48:53 2019-09-25 16:53:31 t 1 1 103858 327 0.00 2019-09-25 16:51:37 2019-09-25 16:54:50 t 1 1 103863 327 0.00 2019-09-25 16:58:08 2019-09-25 16:58:57 t 1 1 103864 412 0.00 2019-09-25 15:41:50 2019-09-25 17:00:00 t 1 1 103869 327 0.00 2019-09-25 17:01:34 2019-09-25 17:03:00 t 1 1 103874 327 0.00 2019-09-25 17:08:57 2019-09-25 17:10:20 t 1 1 103878 488 0.00 2019-09-25 17:09:47 2019-09-25 17:12:37 t 1 1 103882 220 0.00 2019-09-25 16:55:59 2019-09-25 17:13:23 t 1 2 103884 476 0.00 2019-09-25 17:02:07 2019-09-25 17:15:30 t 1 2 103885 501 0.00 2019-09-25 17:16:03 2019-09-25 17:16:07 t 1 1 103887 422 0.00 2019-09-25 17:13:13 2019-09-25 17:19:16 t 1 1 103889 327 0.00 2019-09-25 17:19:08 2019-09-25 17:19:45 t 1 1 103890 470 0.00 2019-09-25 15:52:53 2019-09-25 17:20:54 t 1 1 103892 416 0.00 2019-09-25 17:11:04 2019-09-25 17:23:16 t 1 1 103901 501 0.00 2019-09-25 17:22:57 2019-09-25 17:30:03 t 1 1 103904 422 0.00 2019-09-25 17:27:51 2019-09-25 17:38:49 t 1 1 103907 327 0.00 2019-09-25 17:41:18 2019-09-25 17:43:37 t 1 1 103913 327 0.00 2019-09-25 17:51:24 2019-09-25 17:52:00 t 1 1 103915 445 0.00 2019-09-25 17:26:45 2019-09-25 17:54:34 t 1 1 103917 501 0.00 2019-09-25 17:52:32 2019-09-25 17:57:37 t 1 1 103918 430 0.00 2019-09-25 16:21:31 2019-09-25 17:59:35 t 1 1 103924 327 0.00 2019-09-25 18:04:13 2019-09-25 18:04:14 t 1 1 103925 327 0.00 2019-09-25 18:04:57 2019-09-25 18:05:23 t 1 1 103927 220 0.00 2019-09-25 17:18:06 2019-09-25 18:05:47 t 1 2 103929 327 0.00 2019-09-25 18:07:41 2019-09-25 18:08:38 t 1 1 103930 501 0.00 2019-09-25 18:05:45 2019-09-25 18:11:35 t 1 1 103933 220 0.00 2019-09-25 17:26:48 2019-09-25 18:13:06 t 1 2 103757 481 0.00 2019-09-25 13:38:00 2019-09-25 13:42:50 t 1 1 103762 445 0.00 2019-09-25 13:45:39 2019-09-25 13:48:01 t 1 1 103763 490 0.00 2019-09-25 13:34:52 2019-09-25 13:48:49 t 1 1 103765 220 0.00 2019-09-25 09:10:47 2019-09-25 13:53:08 t 1 2 103769 464 0.00 2019-09-25 13:58:38 2019-09-25 13:59:42 t 1 1 103777 464 0.00 2019-09-25 14:13:20 2019-09-25 14:14:57 t 1 1 103778 470 0.00 2019-09-25 13:07:33 2019-09-25 14:15:32 t 1 1 103781 327 0.00 2019-09-25 14:17:49 2019-09-25 14:19:11 t 1 1 103783 464 0.00 2019-09-25 14:26:17 2019-09-25 14:29:31 t 1 1 103784 327 0.00 2019-09-25 14:20:30 2019-09-25 14:31:01 t 1 1 103786 220 0.00 2019-09-25 14:33:25 2019-09-25 14:36:25 t 1 2 103789 464 0.00 2019-09-25 14:35:57 2019-09-25 14:38:47 t 1 1 103790 400 0.00 2019-09-25 14:45:17 2019-09-25 14:47:24 t 1 1 103794 327 0.00 2019-09-25 14:50:15 2019-09-25 14:50:24 t 1 1 103802 445 0.00 2019-09-25 13:57:55 2019-09-25 15:03:23 t 1 1 103804 449 0.00 2019-09-25 15:01:10 2019-09-25 15:04:17 t 1 1 103805 327 0.00 2019-09-25 15:00:45 2019-09-25 15:08:25 t 1 1 103808 499 0.00 2019-09-25 14:19:37 2019-09-25 15:14:29 t 1 1 103810 499 0.00 2019-09-25 15:14:34 2019-09-25 15:16:20 t 1 1 103812 464 0.00 2019-09-25 15:03:23 2019-09-25 15:19:00 t 1 1 103813 488 0.00 2019-09-25 13:46:21 2019-09-25 15:21:22 t 1 1 103816 306 0.00 2019-09-25 15:18:28 2019-09-25 15:24:45 t 1 1 103817 327 0.00 2019-09-25 15:23:39 2019-09-25 15:25:25 t 1 1 103821 499 0.00 2019-09-25 15:16:24 2019-09-25 15:26:37 t 1 1 103822 331 0.00 2019-09-25 14:57:32 2019-09-25 15:27:02 t 1 1 103823 306 0.00 2019-09-25 15:26:32 2019-09-25 15:31:14 t 1 1 103824 331 0.00 2019-09-25 15:27:02 2019-09-25 15:32:23 t 1 1 103828 488 0.00 2019-09-25 15:26:36 2019-09-25 15:42:04 t 1 1 103830 220 0.00 2019-09-25 15:05:56 2019-09-25 15:45:20 t 1 2 103831 470 0.00 2019-09-25 14:15:45 2019-09-25 15:52:48 t 1 1 103838 422 0.00 2019-09-25 16:13:50 2019-09-25 16:21:23 t 1 1 103839 445 0.00 2019-09-25 15:03:23 2019-09-25 16:22:11 t 1 1 103844 296 0.00 2019-09-25 16:16:59 2019-09-25 16:29:19 t 1 2 103849 325 0.00 2019-09-25 16:27:50 2019-09-25 16:38:22 t 1 2 103850 445 0.00 2019-09-25 16:36:52 2019-09-25 16:39:44 t 1 1 103855 485 0.00 2019-09-25 16:42:20 2019-09-25 16:48:53 t 1 1 103856 445 0.00 2019-09-25 16:39:43 2019-09-25 16:53:12 t 1 1 103859 327 0.00 2019-09-25 16:55:35 2019-09-25 16:56:08 t 1 1 103860 327 0.00 2019-09-25 16:56:24 2019-09-25 16:56:56 t 1 1 103865 327 0.00 2019-09-25 16:59:40 2019-09-25 17:00:13 t 1 1 103866 306 0.00 2019-09-25 16:56:00 2019-09-25 17:00:20 t 1 1 103870 422 0.00 2019-09-25 16:21:23 2019-09-25 17:03:12 t 1 1 103872 327 0.00 2019-09-25 17:06:44 2019-09-25 17:08:40 t 1 1 103875 416 0.00 2019-09-25 13:21:18 2019-09-25 17:10:47 t 1 1 103879 501 0.00 2019-09-25 17:06:12 2019-09-25 17:12:51 t 1 1 103891 470 0.00 2019-09-25 17:21:05 2019-09-25 17:22:25 t 1 1 103893 490 0.00 2019-09-25 17:09:48 2019-09-25 17:24:06 t 1 1 103896 311 0.00 2019-09-25 16:38:14 2019-09-25 17:27:53 t 1 2 103897 470 0.00 2019-09-25 17:25:15 2019-09-25 17:29:24 t 1 1 103899 311 0.00 2019-09-25 17:26:33 2019-09-25 17:29:56 t 1 2 103903 501 0.00 2019-09-25 17:30:03 2019-09-25 17:36:51 t 1 1 103905 472 0.00 2019-09-25 17:35:16 2019-09-25 17:41:52 t 1 1 103908 422 0.00 2019-09-25 17:38:49 2019-09-25 17:45:25 t 1 1 103910 501 0.00 2019-09-25 17:42:02 2019-09-25 17:47:39 t 1 1 103912 422 0.00 2019-09-25 17:45:25 2019-09-25 17:50:10 t 1 1 103916 416 0.00 2019-09-25 17:23:16 2019-09-25 17:56:56 t 1 1 103919 398 0.00 2019-09-25 17:58:33 2019-09-25 17:59:38 t 1 2 103920 327 0.00 2019-09-25 17:59:32 2019-09-25 18:01:11 t 1 1 103921 445 0.00 2019-09-25 17:54:39 2019-09-25 18:02:08 t 1 1 103923 327 0.00 2019-09-25 18:04:03 2019-09-25 18:04:04 t 1 1 103926 501 0.00 2019-09-25 17:57:37 2019-09-25 18:05:45 t 1 1 103936 445 0.00 2019-09-25 18:02:08 2019-09-25 18:17:25 t 1 1 103940 296 0.00 2019-09-25 18:22:03 2019-09-25 18:25:26 t 1 2 103943 499 0.00 2019-09-25 18:20:53 2019-09-25 18:29:56 t 1 1 103945 499 0.00 2019-09-25 18:33:43 2019-09-25 18:35:25 t 1 1 103947 445 0.00 2019-09-25 18:27:55 2019-09-25 18:37:16 t 1 1 103948 464 0.00 2019-09-25 18:38:07 2019-09-25 18:41:52 t 1 1 103950 464 0.00 2019-09-25 18:41:55 2019-09-25 18:43:57 t 1 1 103952 220 0.00 2019-09-25 18:51:48 2019-09-25 18:51:55 t 1 1 103960 464 0.00 2019-09-25 18:59:22 2019-09-25 19:01:49 t 1 1 103961 501 0.00 2019-09-25 19:00:35 2019-09-25 19:03:27 t 1 1 103962 501 0.00 2019-09-25 19:03:37 2019-09-25 19:04:28 t 1 1 103964 501 0.00 2019-09-25 19:06:31 2019-09-25 19:07:41 t 1 1 103965 220 0.00 2019-09-25 18:46:11 2019-09-25 19:08:34 t 1 2 103969 501 0.00 2019-09-25 19:10:32 2019-09-25 19:11:23 t 1 1 103971 501 0.00 2019-09-25 19:11:29 2019-09-25 19:12:05 t 1 1 103976 430 0.00 2019-09-25 19:12:41 2019-09-25 19:17:08 t 1 1 103977 420 0.00 2019-09-25 19:10:45 2019-09-25 19:17:48 t 1 1 103980 499 0.00 2019-09-25 19:19:52 2019-09-25 19:21:19 t 1 1 103985 501 0.00 2019-09-25 19:27:39 2019-09-25 19:28:06 t 1 1 103987 501 0.00 2019-09-25 19:30:56 2019-09-25 19:31:53 t 1 1 103988 445 0.00 2019-09-25 19:27:24 2019-09-25 19:32:19 t 1 1 103989 445 0.00 2019-09-25 19:32:19 2019-09-25 19:36:36 t 1 1 103994 220 0.00 2019-09-25 19:21:33 2019-09-25 19:43:43 t 1 2 103995 501 0.00 2019-09-25 19:43:47 2019-09-25 19:44:48 t 1 1 103996 499 0.00 2019-09-25 19:21:18 2019-09-25 19:46:53 t 1 1 103999 430 0.00 2019-09-25 19:17:08 2019-09-25 19:48:27 t 1 1 104001 499 0.00 2019-09-25 19:46:52 2019-09-25 19:49:37 t 1 1 104004 501 0.00 2019-09-25 19:49:56 2019-09-25 19:51:01 t 1 1 104007 325 0.00 2019-09-25 19:18:43 2019-09-25 19:53:48 t 1 2 104009 501 0.00 2019-09-25 19:55:07 2019-09-25 19:55:39 t 1 1 104013 464 0.00 2019-09-25 20:02:09 2019-09-25 20:03:29 t 1 1 104016 485 0.00 2019-09-25 19:55:45 2019-09-25 20:09:54 t 1 1 104020 464 0.00 2019-09-25 20:04:13 2019-09-25 20:18:09 t 1 1 104021 485 0.00 2019-09-25 20:18:19 2019-09-25 20:20:54 t 1 1 104024 501 0.00 2019-09-25 20:11:28 2019-09-25 20:26:57 t 1 1 104029 503 0.00 2019-09-25 20:29:53 2019-09-25 20:32:20 t 1 1 104035 501 0.00 2019-09-25 20:37:19 2019-09-25 20:37:28 t 1 1 104040 212 0.00 2019-09-25 20:18:41 2019-09-25 20:41:27 t 1 2 104044 485 0.00 2019-09-25 20:34:28 2019-09-25 20:43:56 t 1 1 104054 501 0.00 2019-09-25 20:51:27 2019-09-25 20:51:59 t 1 1 104055 485 0.00 2019-09-25 20:43:56 2019-09-25 20:52:38 t 1 1 104057 451 0.00 2019-09-25 20:45:30 2019-09-25 20:55:11 t 1 1 104059 501 0.00 2019-09-25 20:55:36 2019-09-25 20:56:07 t 1 1 104060 501 0.00 2019-09-25 20:56:16 2019-09-25 20:56:27 t 1 1 104063 501 0.00 2019-09-25 20:57:13 2019-09-25 20:57:40 t 1 1 104064 501 0.00 2019-09-25 20:57:50 2019-09-25 20:59:04 t 1 1 103787 400 0.00 2019-09-25 14:35:04 2019-09-25 14:36:38 t 1 1 103795 432 0.00 2019-09-25 14:39:24 2019-09-25 14:53:34 t 1 1 103796 432 0.00 2019-09-25 14:53:57 2019-09-25 14:53:59 t 1 1 103797 485 0.00 2019-09-25 14:47:26 2019-09-25 14:54:14 t 1 1 103803 220 0.00 2019-09-25 14:53:35 2019-09-25 15:03:41 t 1 2 103807 327 0.00 2019-09-25 15:09:18 2019-09-25 15:13:43 t 1 1 103809 449 0.00 2019-09-25 15:04:17 2019-09-25 15:16:00 t 1 1 103811 306 0.00 2019-09-25 15:11:11 2019-09-25 15:18:28 t 1 1 103814 432 0.00 2019-09-25 14:54:03 2019-09-25 15:21:55 t 1 1 103815 220 0.00 2019-09-25 15:05:15 2019-09-25 15:22:28 t 1 1 103818 220 0.00 2019-09-25 15:22:28 2019-09-25 15:26:33 t 1 1 103825 432 0.00 2019-09-25 15:21:55 2019-09-25 15:33:13 t 1 1 103827 412 0.00 2019-09-25 15:26:34 2019-09-25 15:41:50 t 1 1 103833 488 0.00 2019-09-25 15:44:46 2019-09-25 16:02:28 t 1 1 103834 220 0.00 2019-09-25 15:26:29 2019-09-25 16:04:25 t 1 1 103836 432 0.00 2019-09-25 16:14:11 2019-09-25 16:14:59 t 1 1 103841 485 0.00 2019-09-25 16:15:04 2019-09-25 16:23:48 t 1 1 103842 306 0.00 2019-09-25 16:24:25 2019-09-25 16:27:15 t 1 1 103845 395 0.00 2019-09-25 16:07:10 2019-09-25 16:29:27 t 1 2 103846 327 0.00 2019-09-25 16:02:23 2019-09-25 16:30:38 t 1 1 103847 485 0.00 2019-09-25 16:23:48 2019-09-25 16:31:55 t 1 1 103852 327 0.00 2019-09-25 16:30:38 2019-09-25 16:42:49 t 1 1 103854 379 0.00 2019-09-25 13:36:26 2019-09-25 16:47:20 t 1 1 103861 327 0.00 2019-09-25 16:57:38 2019-09-25 16:57:50 t 1 1 103862 327 0.00 2019-09-25 16:57:03 2019-09-25 16:58:25 t 1 1 103867 485 0.00 2019-09-25 16:53:31 2019-09-25 17:02:09 t 1 1 103868 402 0.00 2019-09-25 17:01:53 2019-09-25 17:02:56 t 1 2 103871 485 0.00 2019-09-25 17:02:09 2019-09-25 17:07:57 t 1 1 103873 488 0.00 2019-09-25 16:02:28 2019-09-25 17:09:47 t 1 1 103876 327 0.00 2019-09-25 17:10:48 2019-09-25 17:11:15 t 1 1 103877 327 0.00 2019-09-25 17:11:49 2019-09-25 17:12:21 t 1 1 103880 422 0.00 2019-09-25 17:05:13 2019-09-25 17:13:13 t 1 1 103881 325 0.00 2019-09-25 17:00:40 2019-09-25 17:13:19 t 1 2 103883 499 0.00 2019-09-25 15:26:40 2019-09-25 17:14:13 t 1 1 103886 327 0.00 2019-09-25 17:15:59 2019-09-25 17:17:02 t 1 1 103888 501 0.00 2019-09-25 17:19:04 2019-09-25 17:19:43 t 1 1 103894 445 0.00 2019-09-25 16:53:11 2019-09-25 17:26:45 t 1 1 103895 422 0.00 2019-09-25 17:19:16 2019-09-25 17:27:51 t 1 1 103898 490 0.00 2019-09-25 17:24:06 2019-09-25 17:29:30 t 1 1 103900 468 0.00 2019-09-25 17:22:34 2019-09-25 17:29:58 t 1 1 103902 327 0.00 2019-09-25 17:29:39 2019-09-25 17:31:53 t 1 1 103906 501 0.00 2019-09-25 17:36:51 2019-09-25 17:42:02 t 1 1 103909 464 0.00 2019-09-25 17:45:30 2019-09-25 17:47:14 t 1 1 103911 499 0.00 2019-09-25 17:14:13 2019-09-25 17:48:36 t 1 1 103914 501 0.00 2019-09-25 17:47:39 2019-09-25 17:52:32 t 1 1 103922 327 0.00 2019-09-25 18:02:45 2019-09-25 18:03:54 t 1 1 103928 327 0.00 2019-09-25 18:04:23 2019-09-25 18:06:25 t 1 1 103931 327 0.00 2019-09-25 18:09:08 2019-09-25 18:11:56 t 1 1 103932 327 0.00 2019-09-25 18:12:12 2019-09-25 18:12:43 t 1 1 103935 501 0.00 2019-09-25 18:11:35 2019-09-25 18:17:18 t 1 1 103939 220 0.00 2019-09-25 16:56:06 2019-09-25 18:22:52 t 1 1 103942 445 0.00 2019-09-25 18:20:04 2019-09-25 18:27:47 t 1 1 103944 331 0.00 2019-09-25 18:31:02 2019-09-25 18:33:19 t 1 1 103946 501 0.00 2019-09-25 18:17:18 2019-09-25 18:37:15 t 1 1 103949 501 0.00 2019-09-25 18:37:15 2019-09-25 18:43:22 t 1 1 103955 490 0.00 2019-09-25 18:39:44 2019-09-25 18:56:37 t 1 1 103956 501 0.00 2019-09-25 18:48:51 2019-09-25 18:58:08 t 1 1 103957 501 0.00 2019-09-25 18:58:18 2019-09-25 18:58:20 t 1 1 103959 501 0.00 2019-09-25 18:59:18 2019-09-25 19:00:07 t 1 1 103963 501 0.00 2019-09-25 19:05:05 2019-09-25 19:05:41 t 1 1 103966 501 0.00 2019-09-25 19:08:32 2019-09-25 19:08:45 t 1 1 103967 501 0.00 2019-09-25 19:09:32 2019-09-25 19:10:04 t 1 1 103973 499 0.00 2019-09-25 18:37:06 2019-09-25 19:12:48 t 1 1 103974 501 0.00 2019-09-25 19:12:33 2019-09-25 19:13:35 t 1 1 103978 499 0.00 2019-09-25 19:12:47 2019-09-25 19:18:59 t 1 1 103979 499 0.00 2019-09-25 19:18:59 2019-09-25 19:19:52 t 1 1 103982 501 0.00 2019-09-25 19:23:27 2019-09-25 19:24:11 t 1 1 103983 501 0.00 2019-09-25 19:24:21 2019-09-25 19:24:36 t 1 1 103986 501 0.00 2019-09-25 19:29:00 2019-09-25 19:29:41 t 1 1 103993 501 0.00 2019-09-25 19:42:47 2019-09-25 19:42:56 t 1 1 103998 501 0.00 2019-09-25 19:47:33 2019-09-25 19:47:47 t 1 1 104000 416 0.00 2019-09-25 17:56:56 2019-09-25 19:48:31 t 1 1 104002 501 0.00 2019-09-25 19:49:19 2019-09-25 19:49:47 t 1 1 104005 445 0.00 2019-09-25 19:39:44 2019-09-25 19:52:42 t 1 1 104008 501 0.00 2019-09-25 19:53:20 2019-09-25 19:54:02 t 1 1 104010 501 0.00 2019-09-25 19:56:07 2019-09-25 19:56:19 t 1 1 104011 501 0.00 2019-09-25 19:56:43 2019-09-25 19:57:06 t 1 1 104012 464 0.00 2019-09-25 19:56:45 2019-09-25 20:02:06 t 1 1 104014 464 0.00 2019-09-25 20:03:28 2019-09-25 20:04:10 t 1 1 104017 501 0.00 2019-09-25 19:57:39 2019-09-25 20:11:28 t 1 1 104018 212 0.00 2019-09-25 19:16:00 2019-09-25 20:12:19 t 1 2 104019 451 0.00 2019-09-25 20:04:54 2019-09-25 20:14:54 t 1 1 104023 464 0.00 2019-09-25 20:20:49 2019-09-25 20:22:33 t 1 1 104025 306 0.00 2019-09-25 20:25:59 2019-09-25 20:28:09 t 1 1 104028 501 0.00 2019-09-25 20:31:57 2019-09-25 20:32:14 t 1 1 104030 416 0.00 2019-09-25 19:48:31 2019-09-25 20:32:25 t 1 1 104032 501 0.00 2019-09-25 20:33:17 2019-09-25 20:34:41 t 1 1 104036 464 0.00 2019-09-25 20:36:46 2019-09-25 20:38:03 t 1 1 104037 501 0.00 2019-09-25 20:38:19 2019-09-25 20:38:28 t 1 1 104038 501 0.00 2019-09-25 20:39:19 2019-09-25 20:39:52 t 1 1 104041 501 0.00 2019-09-25 20:41:20 2019-09-25 20:41:33 t 1 1 104042 501 0.00 2019-09-25 20:42:21 2019-09-25 20:42:54 t 1 1 104043 501 0.00 2019-09-25 20:43:20 2019-09-25 20:43:21 t 1 1 104045 501 0.00 2019-09-25 20:44:20 2019-09-25 20:44:21 t 1 1 104047 501 0.00 2019-09-25 20:45:03 2019-09-25 20:45:47 t 1 1 104048 501 0.00 2019-09-25 20:46:22 2019-09-25 20:46:23 t 1 1 104051 501 0.00 2019-09-25 20:49:35 2019-09-25 20:50:26 t 1 1 104056 501 0.00 2019-09-25 20:52:27 2019-09-25 20:54:25 t 1 1 104058 501 0.00 2019-09-25 20:54:59 2019-09-25 20:55:27 t 1 1 104061 327 0.00 2019-09-25 20:56:34 2019-09-25 20:57:16 t 1 1 104066 501 0.00 2019-09-25 20:59:14 2019-09-25 20:59:29 t 1 1 104067 372 0.00 2019-09-25 21:05:29 2019-09-25 21:05:34 t 1 2 104068 372 0.00 2019-09-25 21:05:51 2019-09-25 21:06:56 t 1 2 104070 372 0.00 2019-09-25 21:07:13 2019-09-25 21:08:19 t 1 2 104072 306 0.00 2019-09-25 20:53:26 2019-09-25 21:13:45 t 1 1 104078 306 0.00 2019-09-25 21:13:45 2019-09-25 21:21:10 t 1 1 104086 451 0.00 2019-09-25 21:28:28 2019-09-25 21:31:46 t 1 1 103934 325 0.00 2019-09-25 17:41:50 2019-09-25 18:16:55 t 1 2 103937 445 0.00 2019-09-25 18:17:46 2019-09-25 18:20:04 t 1 1 103938 499 0.00 2019-09-25 17:48:35 2019-09-25 18:20:53 t 1 1 103941 470 0.00 2019-09-25 17:55:10 2019-09-25 18:26:24 t 1 1 103951 501 0.00 2019-09-25 18:43:22 2019-09-25 18:48:51 t 1 1 103953 445 0.00 2019-09-25 18:37:16 2019-09-25 18:54:29 t 1 1 103954 445 0.00 2019-09-25 18:54:19 2019-09-25 18:55:27 t 1 1 103958 220 0.00 2019-09-25 16:34:03 2019-09-25 18:58:31 t 1 2 103968 420 0.00 2019-09-25 18:57:15 2019-09-25 19:10:45 t 1 1 103970 220 0.00 2019-09-25 19:10:51 2019-09-25 19:11:42 t 1 2 103972 430 0.00 2019-09-25 18:29:02 2019-09-25 19:12:41 t 1 1 103975 445 0.00 2019-09-25 19:13:07 2019-09-25 19:16:41 t 1 1 103981 501 0.00 2019-09-25 19:22:15 2019-09-25 19:23:18 t 1 1 103984 445 0.00 2019-09-25 19:16:40 2019-09-25 19:27:13 t 1 1 103990 501 0.00 2019-09-25 19:38:58 2019-09-25 19:39:42 t 1 1 103991 501 0.00 2019-09-25 19:40:46 2019-09-25 19:41:19 t 1 1 103992 501 0.00 2019-09-25 19:41:47 2019-09-25 19:42:19 t 1 1 103997 501 0.00 2019-09-25 19:46:50 2019-09-25 19:47:18 t 1 1 104003 501 0.00 2019-09-25 19:48:50 2019-09-25 19:49:51 t 1 1 104006 501 0.00 2019-09-25 19:51:54 2019-09-25 19:53:02 t 1 1 104015 220 0.00 2019-09-25 19:12:21 2019-09-25 20:06:20 t 1 2 104022 485 0.00 2019-09-25 20:20:44 2019-09-25 20:22:08 t 1 1 104026 451 0.00 2019-09-25 20:14:54 2019-09-25 20:31:03 t 1 1 104027 501 0.00 2019-09-25 20:26:57 2019-09-25 20:31:50 t 1 1 104031 485 0.00 2019-09-25 20:26:27 2019-09-25 20:34:28 t 1 1 104033 501 0.00 2019-09-25 20:35:18 2019-09-25 20:35:59 t 1 1 104034 501 0.00 2019-09-25 20:36:05 2019-09-25 20:36:16 t 1 1 104039 501 0.00 2019-09-25 20:40:19 2019-09-25 20:40:20 t 1 1 104046 451 0.00 2019-09-25 20:31:03 2019-09-25 20:45:30 t 1 1 104049 327 0.00 2019-09-25 20:30:19 2019-09-25 20:46:39 t 1 1 104050 501 0.00 2019-09-25 20:46:41 2019-09-25 20:47:22 t 1 1 104052 306 0.00 2019-09-25 20:48:24 2019-09-25 20:50:43 t 1 1 104053 220 0.00 2019-09-25 20:48:17 2019-09-25 20:51:40 t 1 2 104062 212 0.00 2019-09-25 20:43:55 2019-09-25 20:57:21 t 1 2 104069 327 0.00 2019-09-25 21:07:11 2019-09-25 21:07:44 t 1 1 104071 451 0.00 2019-09-25 20:55:11 2019-09-25 21:10:21 t 1 1 104074 499 0.00 2019-09-25 19:59:19 2019-09-25 21:16:14 t 1 1 104077 327 0.00 2019-09-25 21:17:41 2019-09-25 21:19:41 t 1 1 104084 327 0.00 2019-09-25 21:29:36 2019-09-25 21:30:10 t 1 1 104085 501 0.00 2019-09-25 21:29:06 2019-09-25 21:30:37 t 1 1 104089 306 0.00 2019-09-25 21:21:10 2019-09-25 21:40:00 t 1 1 104092 412 0.00 2019-09-25 20:41:26 2019-09-25 21:43:51 t 1 1 104095 292 0.00 2019-09-25 21:47:32 2019-09-25 21:48:35 t 1 2 104096 220 0.00 2019-09-25 21:42:29 2019-09-25 21:50:37 t 1 1 104098 306 0.00 2019-09-25 21:40:00 2019-09-25 21:51:38 t 1 1 104100 400 0.00 2019-09-25 21:20:24 2019-09-25 21:53:36 t 1 1 104102 296 0.00 2019-09-25 21:46:26 2019-09-25 21:54:49 t 1 2 104103 488 0.00 2019-09-25 21:41:33 2019-09-25 21:55:24 t 1 1 104105 485 0.00 2019-09-25 21:47:29 2019-09-25 22:01:23 t 1 1 104106 503 0.00 2019-09-25 21:52:23 2019-09-25 22:06:08 t 1 1 104107 327 0.00 2019-09-25 22:10:00 2019-09-25 22:10:41 t 1 1 104108 470 0.00 2019-09-25 21:16:04 2019-09-25 22:12:24 t 1 1 104110 485 0.00 2019-09-25 22:06:43 2019-09-25 22:17:22 t 1 1 104115 449 0.00 2019-09-25 22:03:52 2019-09-25 22:22:15 t 1 1 104121 485 0.00 2019-09-25 22:27:07 2019-09-25 22:29:47 t 1 1 104125 485 0.00 2019-09-25 22:30:52 2019-09-25 22:37:47 t 1 1 104126 395 0.00 2019-09-25 21:48:43 2019-09-25 22:41:52 t 1 2 104140 296 0.00 2019-09-25 22:55:51 2019-09-25 22:58:11 t 1 2 104141 445 0.00 2019-09-25 19:53:36 2019-09-25 22:58:33 t 1 1 104144 481 0.00 2019-09-25 22:55:51 2019-09-25 23:02:40 t 1 1 104146 432 0.00 2019-09-25 23:03:56 2019-09-25 23:11:29 t 1 1 104153 432 0.00 2019-09-25 23:18:08 2019-09-25 23:18:48 t 1 1 104158 472 0.00 2019-09-25 23:20:12 2019-09-25 23:29:15 t 1 1 104159 432 0.00 2019-09-25 23:30:51 2019-09-25 23:34:35 t 1 1 104160 325 0.00 2019-09-25 22:50:54 2019-09-25 23:35:59 t 1 2 104162 392 0.00 2019-09-25 23:36:58 2019-09-25 23:36:58 f 1 2 104166 501 0.00 2019-09-25 23:36:05 2019-09-25 23:41:49 t 1 1 104175 422 0.00 2019-09-25 23:24:42 2019-09-26 00:05:00 t 1 1 104179 212 0.00 2019-09-26 00:01:55 2019-09-26 00:24:58 t 1 2 104182 412 0.00 2019-09-25 22:56:12 2019-09-26 00:29:11 t 1 1 104186 327 0.00 2019-09-26 00:35:02 2019-09-26 00:35:36 t 1 1 104187 220 0.00 2019-09-25 23:59:57 2019-09-26 00:40:02 t 1 1 104190 451 0.00 2019-09-26 00:33:26 2019-09-26 00:45:16 t 1 1 104196 501 0.00 2019-09-26 00:58:39 2019-09-26 01:09:30 t 1 1 104198 422 0.00 2019-09-26 00:15:31 2019-09-26 01:24:21 t 1 1 104202 412 0.00 2019-09-26 01:49:25 2019-09-26 02:06:29 t 1 1 104209 412 0.00 2019-09-26 02:50:36 2019-09-26 03:09:36 t 1 1 104211 379 0.00 2019-09-25 17:24:34 2019-09-26 04:03:20 t 1 1 104213 445 0.00 2019-09-26 04:55:44 2019-09-26 04:58:40 t 1 1 104214 445 0.00 2019-09-26 04:58:58 2019-09-26 05:05:28 t 1 1 104216 445 0.00 2019-09-26 05:09:06 2019-09-26 05:09:53 t 1 1 104217 470 0.00 2019-09-26 05:07:27 2019-09-26 05:23:08 t 1 1 104218 470 0.00 2019-09-26 05:23:08 2019-09-26 05:25:00 t 1 1 104223 445 0.00 2019-09-26 05:53:53 2019-09-26 05:58:49 t 1 1 104226 485 0.00 2019-09-26 05:50:04 2019-09-26 06:06:36 t 1 1 104227 470 0.00 2019-09-26 06:02:26 2019-09-26 06:09:04 t 1 1 104228 445 0.00 2019-09-26 06:09:07 2019-09-26 06:10:05 t 1 1 104236 445 0.00 2019-09-26 06:26:25 2019-09-26 06:28:00 t 1 1 104244 212 0.00 2019-09-26 06:34:05 2019-09-26 06:49:18 t 1 2 104245 331 0.00 2019-09-26 05:44:23 2019-09-26 06:53:42 t 1 1 104249 445 0.00 2019-09-26 07:07:58 2019-09-26 07:10:08 t 1 1 104251 306 0.00 2019-09-26 07:00:14 2019-09-26 07:11:16 t 1 1 104252 331 0.00 2019-09-26 06:54:56 2019-09-26 07:12:24 t 1 1 104260 464 0.00 2019-09-26 06:31:34 2019-09-26 07:39:18 t 1 1 104262 306 0.00 2019-09-26 07:37:56 2019-09-26 07:59:27 t 1 1 104263 481 0.00 2019-09-26 07:59:28 2019-09-26 08:02:18 t 1 1 104268 445 0.00 2019-09-26 07:22:46 2019-09-26 08:11:52 t 1 1 104269 220 0.00 2019-09-26 08:03:12 2019-09-26 08:12:42 t 1 1 104275 306 0.00 2019-09-26 08:35:06 2019-09-26 08:35:38 t 1 1 104278 432 0.00 2019-09-26 08:39:59 2019-09-26 08:41:26 t 1 1 104279 464 0.00 2019-09-26 08:42:44 2019-09-26 08:47:23 t 1 1 104280 464 0.00 2019-09-26 08:47:29 2019-09-26 08:47:42 t 1 1 104287 306 0.00 2019-09-26 08:55:26 2019-09-26 08:58:18 t 1 1 104290 501 0.00 2019-09-26 08:59:10 2019-09-26 09:01:58 t 1 1 104296 499 0.00 2019-09-25 22:17:56 2019-09-26 09:05:58 t 1 1 104298 499 0.00 2019-09-26 09:06:07 2019-09-26 09:09:03 t 1 1 104300 296 0.00 2019-09-26 09:09:16 2019-09-26 09:12:37 t 1 2 104065 498 0.00 2019-09-25 18:59:22 2019-09-25 20:59:17 t 1 2 104073 220 0.00 2019-09-25 21:11:52 2019-09-25 21:14:15 t 1 2 104075 451 0.00 2019-09-25 21:10:21 2019-09-25 21:16:35 t 1 1 104076 220 0.00 2019-09-25 20:26:58 2019-09-25 21:18:57 t 1 1 104079 464 0.00 2019-09-25 21:21:31 2019-09-25 21:23:27 t 1 1 104080 451 0.00 2019-09-25 21:16:35 2019-09-25 21:26:18 t 1 1 104081 485 0.00 2019-09-25 21:12:05 2019-09-25 21:27:56 t 1 1 104082 501 0.00 2019-09-25 21:03:17 2019-09-25 21:29:06 t 1 1 104083 488 0.00 2019-09-25 21:27:13 2019-09-25 21:29:17 t 1 1 104087 220 0.00 2019-09-25 21:35:16 2019-09-25 21:35:35 t 1 2 104090 327 0.00 2019-09-25 21:40:05 2019-09-25 21:40:38 t 1 1 104091 499 0.00 2019-09-25 21:17:01 2019-09-25 21:42:49 t 1 1 104094 451 0.00 2019-09-25 21:45:26 2019-09-25 21:46:56 t 1 1 104097 327 0.00 2019-09-25 21:50:34 2019-09-25 21:51:08 t 1 1 104109 306 0.00 2019-09-25 22:03:15 2019-09-25 22:16:23 t 1 1 104114 327 0.00 2019-09-25 22:20:36 2019-09-25 22:21:20 t 1 1 104118 464 0.00 2019-09-25 22:23:52 2019-09-25 22:26:37 t 1 1 104120 331 0.00 2019-09-25 22:16:21 2019-09-25 22:28:51 t 1 1 104122 327 0.00 2019-09-25 22:31:15 2019-09-25 22:31:49 t 1 1 104123 481 0.00 2019-09-25 22:25:54 2019-09-25 22:32:29 t 1 1 104131 485 0.00 2019-09-25 22:38:34 2019-09-25 22:47:52 t 1 1 104133 485 0.00 2019-09-25 22:47:52 2019-09-25 22:50:13 t 1 1 104134 331 0.00 2019-09-25 22:44:50 2019-09-25 22:50:20 t 1 1 104136 483 0.00 2019-09-25 22:49:16 2019-09-25 22:54:57 t 1 1 104137 464 0.00 2019-09-25 22:53:57 2019-09-25 22:55:25 t 1 1 104142 220 0.00 2019-09-25 22:45:09 2019-09-25 22:59:06 t 1 1 104143 247 0.00 2019-09-25 22:38:37 2019-09-25 23:01:58 t 1 2 104148 451 0.00 2019-09-25 23:01:14 2019-09-25 23:13:50 t 1 1 104150 327 0.00 2019-09-25 22:52:48 2019-09-25 23:14:39 t 1 1 104151 456 0.00 2019-09-25 23:09:47 2019-09-25 23:18:40 t 1 1 104155 501 0.00 2019-09-25 23:06:26 2019-09-25 23:27:12 t 1 1 104156 451 0.00 2019-09-25 23:16:24 2019-09-25 23:27:54 t 1 1 104157 327 0.00 2019-09-25 23:28:04 2019-09-25 23:28:50 t 1 1 104167 483 0.00 2019-09-25 23:31:02 2019-09-25 23:44:01 t 1 1 104168 327 0.00 2019-09-25 23:49:14 2019-09-25 23:50:08 t 1 1 104170 220 0.00 2019-09-25 23:18:50 2019-09-25 23:53:24 t 1 1 104173 220 0.00 2019-09-25 23:53:24 2019-09-25 23:59:09 t 1 1 104174 327 0.00 2019-09-26 00:03:03 2019-09-26 00:03:36 t 1 1 104177 327 0.00 2019-09-26 00:13:36 2019-09-26 00:14:35 t 1 1 104178 422 0.00 2019-09-26 00:05:00 2019-09-26 00:15:31 t 1 1 104180 327 0.00 2019-09-26 00:24:31 2019-09-26 00:25:07 t 1 1 104181 451 0.00 2019-09-26 00:16:25 2019-09-26 00:27:21 t 1 1 104183 451 0.00 2019-09-26 00:27:20 2019-09-26 00:29:42 t 1 1 104184 451 0.00 2019-09-26 00:29:38 2019-09-26 00:33:26 t 1 1 104185 501 0.00 2019-09-25 23:58:37 2019-09-26 00:34:48 t 1 1 104189 412 0.00 2019-09-26 00:29:11 2019-09-26 00:44:11 t 1 1 104191 451 0.00 2019-09-26 00:45:16 2019-09-26 00:47:20 t 1 1 104192 220 0.00 2019-09-25 22:30:09 2019-09-26 00:54:19 t 1 1 104193 501 0.00 2019-09-26 00:34:48 2019-09-26 00:58:33 t 1 1 104194 412 0.00 2019-09-26 00:44:11 2019-09-26 00:59:50 t 1 1 104197 501 0.00 2019-09-26 01:09:29 2019-09-26 01:24:07 t 1 1 104200 412 0.00 2019-09-26 01:08:57 2019-09-26 01:49:25 t 1 1 104201 422 0.00 2019-09-26 01:24:21 2019-09-26 02:01:50 t 1 1 104203 402 0.00 2019-09-26 02:05:33 2019-09-26 02:15:38 t 1 2 104204 412 0.00 2019-09-26 02:06:29 2019-09-26 02:22:47 t 1 1 104206 501 0.00 2019-09-26 02:26:27 2019-09-26 02:41:44 t 1 1 104207 412 0.00 2019-09-26 02:22:47 2019-09-26 02:50:36 t 1 1 104210 412 0.00 2019-09-26 03:09:36 2019-09-26 03:28:37 t 1 1 104212 445 0.00 2019-09-25 22:58:33 2019-09-26 04:36:57 t 1 1 104215 445 0.00 2019-09-26 05:05:28 2019-09-26 05:08:58 t 1 1 104219 445 0.00 2019-09-26 05:09:52 2019-09-26 05:33:08 t 1 1 104222 445 0.00 2019-09-26 05:40:22 2019-09-26 05:54:25 t 1 1 104224 445 0.00 2019-09-26 05:58:49 2019-09-26 06:01:53 t 1 1 104229 420 0.00 2019-09-26 06:05:08 2019-09-26 06:14:23 t 1 1 104231 445 0.00 2019-09-26 06:17:21 2019-09-26 06:21:20 t 1 1 104233 485 0.00 2019-09-26 06:20:23 2019-09-26 06:23:29 t 1 1 104234 445 0.00 2019-09-26 06:21:44 2019-09-26 06:24:38 t 1 1 104235 445 0.00 2019-09-26 06:24:14 2019-09-26 06:25:26 t 1 1 104238 470 0.00 2019-09-26 06:23:11 2019-09-26 06:34:08 t 1 1 104240 485 0.00 2019-09-26 06:30:02 2019-09-26 06:35:29 t 1 1 104242 292 0.00 2019-09-26 06:42:05 2019-09-26 06:43:13 t 1 2 104243 461 0.00 2019-09-26 06:20:55 2019-09-26 06:46:38 t 1 2 104246 445 0.00 2019-09-26 06:40:45 2019-09-26 07:01:48 t 1 1 104248 445 0.00 2019-09-26 07:06:51 2019-09-26 07:07:58 t 1 1 104253 445 0.00 2019-09-26 07:10:52 2019-09-26 07:15:47 t 1 1 104254 470 0.00 2019-09-26 07:01:23 2019-09-26 07:20:47 t 1 1 104256 412 0.00 2019-09-26 07:30:58 2019-09-26 07:31:03 t 1 1 104257 306 0.00 2019-09-26 07:23:59 2019-09-26 07:34:22 t 1 1 104258 470 0.00 2019-09-26 07:20:47 2019-09-26 07:35:54 t 1 1 104259 306 0.00 2019-09-26 07:34:22 2019-09-26 07:37:56 t 1 1 104264 470 0.00 2019-09-26 07:46:07 2019-09-26 08:05:51 t 1 1 104266 481 0.00 2019-09-26 08:02:18 2019-09-26 08:08:22 t 1 1 104270 445 0.00 2019-09-26 08:12:20 2019-09-26 08:17:01 t 1 1 104271 416 0.00 2019-09-26 07:56:30 2019-09-26 08:24:31 t 1 1 104273 220 0.00 2019-09-26 08:21:00 2019-09-26 08:29:02 t 1 1 104277 432 0.00 2019-09-26 08:19:46 2019-09-26 08:38:17 t 1 1 104283 424 0.00 2019-09-26 08:49:45 2019-09-26 08:55:22 t 1 2 104284 445 0.00 2019-09-26 08:31:32 2019-09-26 08:55:30 t 1 1 104293 464 0.00 2019-09-26 08:48:06 2019-09-26 09:03:20 t 1 1 104294 464 0.00 2019-09-26 09:03:25 2019-09-26 09:04:11 t 1 1 104295 402 0.00 2019-09-26 07:40:39 2019-09-26 09:05:44 t 1 2 104297 464 0.00 2019-09-26 09:04:15 2019-09-26 09:08:54 t 1 1 104302 424 0.00 2019-09-26 09:12:50 2019-09-26 09:23:11 t 1 2 104308 501 0.00 2019-09-26 09:26:18 2019-09-26 09:31:02 t 1 1 104310 306 0.00 2019-09-26 09:35:59 2019-09-26 09:36:05 t 1 1 104311 445 0.00 2019-09-26 09:31:23 2019-09-26 09:37:31 t 1 1 104313 445 0.00 2019-09-26 09:40:01 2019-09-26 09:41:02 t 1 1 104319 445 0.00 2019-09-26 09:41:10 2019-09-26 09:50:17 t 1 1 104320 331 0.00 2019-09-26 09:49:36 2019-09-26 09:50:50 t 1 1 104322 501 0.00 2019-09-26 09:44:40 2019-09-26 09:51:16 t 1 1 104325 501 0.00 2019-09-26 09:51:31 2019-09-26 09:51:40 t 1 1 104330 501 0.00 2019-09-26 09:53:25 2019-09-26 09:53:37 t 1 1 104332 220 0.00 2019-09-26 09:51:32 2019-09-26 09:58:04 t 1 1 104345 501 0.00 2019-09-26 09:54:01 2019-09-26 10:04:46 t 1 1 104347 331 0.00 2019-09-26 10:04:20 2019-09-26 10:05:23 t 1 1 104349 327 0.00 2019-09-26 10:05:38 2019-09-26 10:05:46 t 1 1 104350 327 0.00 2019-09-26 10:06:22 2019-09-26 10:06:36 t 1 1 104088 451 0.00 2019-09-25 21:31:46 2019-09-25 21:39:14 t 1 1 104093 451 0.00 2019-09-25 21:39:14 2019-09-25 21:43:57 t 1 1 104099 451 0.00 2019-09-25 21:46:56 2019-09-25 21:52:17 t 1 1 104101 292 0.00 2019-09-25 21:53:13 2019-09-25 21:54:18 t 1 2 104104 327 0.00 2019-09-25 21:59:29 2019-09-25 22:00:02 t 1 1 104111 499 0.00 2019-09-25 21:42:49 2019-09-25 22:17:34 t 1 1 104112 220 0.00 2019-09-25 22:05:21 2019-09-25 22:18:58 t 1 2 104113 325 0.00 2019-09-25 21:55:45 2019-09-25 22:20:50 t 1 2 104116 220 0.00 2019-09-25 21:57:34 2019-09-25 22:23:48 t 1 1 104117 481 0.00 2019-09-25 22:20:03 2019-09-25 22:25:55 t 1 1 104119 485 0.00 2019-09-25 22:17:22 2019-09-25 22:27:07 t 1 1 104124 331 0.00 2019-09-25 22:28:19 2019-09-25 22:37:46 t 1 1 104127 327 0.00 2019-09-25 22:41:45 2019-09-25 22:42:53 t 1 1 104128 331 0.00 2019-09-25 22:37:59 2019-09-25 22:44:27 t 1 1 104129 483 0.00 2019-09-25 22:41:49 2019-09-25 22:45:12 t 1 1 104130 451 0.00 2019-09-25 22:37:57 2019-09-25 22:46:49 t 1 1 104132 483 0.00 2019-09-25 22:45:12 2019-09-25 22:49:16 t 1 1 104135 400 0.00 2019-09-25 22:45:42 2019-09-25 22:52:34 t 1 1 104138 481 0.00 2019-09-25 22:32:26 2019-09-25 22:55:51 t 1 1 104139 412 0.00 2019-09-25 21:43:51 2019-09-25 22:56:12 t 1 1 104145 464 0.00 2019-09-25 23:10:09 2019-09-25 23:11:25 t 1 1 104147 490 0.00 2019-09-25 23:09:10 2019-09-25 23:12:26 t 1 1 104149 220 0.00 2019-09-25 21:03:46 2019-09-25 23:14:08 t 1 2 104152 327 0.00 2019-09-25 23:14:39 2019-09-25 23:18:47 t 1 1 104154 432 0.00 2019-09-25 23:24:58 2019-09-25 23:25:32 t 1 1 104161 501 0.00 2019-09-25 23:27:12 2019-09-25 23:36:05 t 1 1 104163 392 0.00 2019-09-25 23:37:10 2019-09-25 23:37:10 f 1 2 104164 488 0.00 2019-09-25 23:36:05 2019-09-25 23:38:36 t 1 1 104165 327 0.00 2019-09-25 23:38:44 2019-09-25 23:39:18 t 1 1 104169 327 0.00 2019-09-25 23:52:34 2019-09-25 23:53:00 t 1 1 104171 451 0.00 2019-09-25 23:51:04 2019-09-25 23:56:55 t 1 1 104172 501 0.00 2019-09-25 23:41:49 2019-09-25 23:58:37 t 1 1 104176 456 0.00 2019-09-25 23:54:18 2019-09-26 00:11:59 t 1 1 104188 220 0.00 2019-09-26 00:40:01 2019-09-26 00:42:47 t 1 1 104195 412 0.00 2019-09-26 00:59:50 2019-09-26 01:08:57 t 1 1 104199 501 0.00 2019-09-26 01:24:07 2019-09-26 01:43:51 t 1 1 104205 501 0.00 2019-09-26 01:43:51 2019-09-26 02:26:27 t 1 1 104208 464 0.00 2019-09-26 02:51:41 2019-09-26 02:54:41 t 1 1 104220 445 0.00 2019-09-26 05:35:00 2019-09-26 05:39:59 t 1 1 104221 420 0.00 2019-09-26 05:37:24 2019-09-26 05:46:12 t 1 1 104225 420 0.00 2019-09-26 05:46:11 2019-09-26 06:05:08 t 1 1 104230 445 0.00 2019-09-26 06:10:18 2019-09-26 06:16:44 t 1 1 104232 464 0.00 2019-09-26 06:15:44 2019-09-26 06:22:00 t 1 1 104237 445 0.00 2019-09-26 06:28:11 2019-09-26 06:30:46 t 1 1 104239 445 0.00 2019-09-26 06:30:59 2019-09-26 06:34:19 t 1 1 104241 445 0.00 2019-09-26 06:34:40 2019-09-26 06:39:45 t 1 1 104247 445 0.00 2019-09-26 07:01:57 2019-09-26 07:06:32 t 1 1 104250 445 0.00 2019-09-26 07:10:08 2019-09-26 07:10:52 t 1 1 104255 445 0.00 2019-09-26 07:16:54 2019-09-26 07:23:25 t 1 1 104261 220 0.00 2019-09-26 07:46:38 2019-09-26 07:49:32 t 1 2 104265 470 0.00 2019-09-26 08:04:57 2019-09-26 08:06:57 t 1 1 104267 470 0.00 2019-09-26 08:07:02 2019-09-26 08:10:16 t 1 1 104272 445 0.00 2019-09-26 08:17:01 2019-09-26 08:24:57 t 1 1 104274 445 0.00 2019-09-26 08:27:52 2019-09-26 08:29:54 t 1 1 104276 306 0.00 2019-09-26 08:15:57 2019-09-26 08:36:02 t 1 1 104281 464 0.00 2019-09-26 08:47:42 2019-09-26 08:47:46 t 1 1 104282 432 0.00 2019-09-26 08:40:40 2019-09-26 08:52:14 t 1 1 104285 445 0.00 2019-09-26 08:55:29 2019-09-26 08:56:35 t 1 1 104286 416 0.00 2019-09-26 08:24:31 2019-09-26 08:57:38 t 1 1 104288 501 0.00 2019-09-26 08:53:39 2019-09-26 08:58:36 t 1 1 104289 445 0.00 2019-09-26 08:57:25 2019-09-26 08:59:52 t 1 1 104291 445 0.00 2019-09-26 08:59:53 2019-09-26 09:02:09 t 1 1 104292 461 0.00 2019-09-26 08:51:42 2019-09-26 09:03:15 t 1 2 104299 445 0.00 2019-09-26 09:04:08 2019-09-26 09:11:57 t 1 1 104301 445 0.00 2019-09-26 09:11:57 2019-09-26 09:15:28 t 1 1 104303 501 0.00 2019-09-26 09:04:57 2019-09-26 09:24:02 t 1 1 104305 445 0.00 2019-09-26 09:15:28 2019-09-26 09:26:11 t 1 1 104307 445 0.00 2019-09-26 09:26:32 2019-09-26 09:28:26 t 1 1 104312 445 0.00 2019-09-26 09:39:25 2019-09-26 09:40:01 t 1 1 104314 306 0.00 2019-09-26 09:40:01 2019-09-26 09:43:14 t 1 1 104316 331 0.00 2019-09-26 09:28:22 2019-09-26 09:45:08 t 1 1 104323 306 0.00 2019-09-26 09:48:57 2019-09-26 09:51:29 t 1 1 104324 331 0.00 2019-09-26 09:50:28 2019-09-26 09:51:34 t 1 1 104326 501 0.00 2019-09-26 09:51:50 2019-09-26 09:51:51 t 1 1 104327 501 0.00 2019-09-26 09:51:24 2019-09-26 09:52:25 t 1 1 104329 490 0.00 2019-09-26 09:46:56 2019-09-26 09:52:53 t 1 1 104334 499 0.00 2019-09-26 09:18:32 2019-09-26 10:00:13 t 1 1 104336 327 0.00 2019-09-26 10:00:30 2019-09-26 10:01:11 t 1 1 104337 375 0.00 2019-09-26 09:44:57 2019-09-26 10:01:53 t 1 1 104338 327 0.00 2019-09-26 10:01:36 2019-09-26 10:02:24 t 1 1 104340 331 0.00 2019-09-26 09:53:18 2019-09-26 10:03:03 t 1 1 104341 327 0.00 2019-09-26 10:03:05 2019-09-26 10:03:05 t 1 1 104344 220 0.00 2019-09-26 09:59:38 2019-09-26 10:04:35 t 1 1 104346 327 0.00 2019-09-26 10:03:48 2019-09-26 10:04:52 t 1 1 104354 375 0.00 2019-09-26 10:08:52 2019-09-26 10:10:00 t 1 1 104355 327 0.00 2019-09-26 10:06:55 2019-09-26 10:15:04 t 1 1 104363 327 0.00 2019-09-26 10:18:11 2019-09-26 10:19:42 t 1 1 104364 331 0.00 2019-09-26 10:04:47 2019-09-26 10:20:16 t 1 1 104366 424 0.00 2019-09-26 10:21:22 2019-09-26 10:22:40 t 1 2 104371 424 0.00 2019-09-26 10:22:54 2019-09-26 10:25:00 t 1 2 104374 501 0.00 2019-09-26 10:18:56 2019-09-26 10:25:33 t 1 1 104375 375 0.00 2019-09-26 10:25:27 2019-09-26 10:26:29 t 1 1 104377 501 0.00 2019-09-26 10:29:32 2019-09-26 10:29:40 t 1 1 104379 501 0.00 2019-09-26 10:30:08 2019-09-26 10:30:09 t 1 1 104381 501 0.00 2019-09-26 10:30:23 2019-09-26 10:30:37 t 1 1 104386 375 0.00 2019-09-26 10:26:27 2019-09-26 10:35:24 t 1 1 104391 331 0.00 2019-09-26 10:28:45 2019-09-26 10:38:53 t 1 1 104402 331 0.00 2019-09-26 10:38:53 2019-09-26 10:45:29 t 1 1 104413 501 0.00 2019-09-26 10:54:05 2019-09-26 10:54:13 t 1 1 104414 501 0.00 2019-09-26 10:55:03 2019-09-26 10:55:36 t 1 1 104415 501 0.00 2019-09-26 10:55:43 2019-09-26 10:56:37 t 1 1 104416 501 0.00 2019-09-26 10:57:05 2019-09-26 10:58:05 t 1 1 104417 445 0.00 2019-09-26 10:55:25 2019-09-26 10:58:40 t 1 1 104424 481 0.00 2019-09-26 10:53:57 2019-09-26 11:03:55 t 1 1 104427 501 0.00 2019-09-26 11:03:21 2019-09-26 11:05:26 t 1 1 104430 481 0.00 2019-09-26 11:03:55 2019-09-26 11:06:21 t 1 1 104431 501 0.00 2019-09-26 11:06:37 2019-09-26 11:07:19 t 1 1 104304 481 0.00 2019-09-26 08:08:22 2019-09-26 09:24:59 t 1 1 104306 331 0.00 2019-09-26 07:12:23 2019-09-26 09:28:22 t 1 1 104309 445 0.00 2019-09-26 09:27:40 2019-09-26 09:31:05 t 1 1 104315 220 0.00 2019-09-26 09:35:40 2019-09-26 09:43:37 t 1 1 104317 331 0.00 2019-09-26 09:46:32 2019-09-26 09:48:46 t 1 1 104318 220 0.00 2019-09-26 09:43:33 2019-09-26 09:49:21 t 1 1 104321 220 0.00 2019-09-26 09:49:44 2019-09-26 09:51:12 t 1 1 104328 501 0.00 2019-09-26 09:52:37 2019-09-26 09:52:48 t 1 1 104331 327 0.00 2019-09-26 09:52:06 2019-09-26 09:57:42 t 1 1 104333 327 0.00 2019-09-26 09:57:59 2019-09-26 09:59:45 t 1 1 104335 499 0.00 2019-09-26 10:00:18 2019-09-26 10:00:52 t 1 1 104339 445 0.00 2019-09-26 09:50:42 2019-09-26 10:02:54 t 1 1 104342 331 0.00 2019-09-26 10:03:03 2019-09-26 10:04:05 t 1 1 104343 331 0.00 2019-09-26 10:04:05 2019-09-26 10:04:21 t 1 1 104348 451 0.00 2019-09-26 10:02:22 2019-09-26 10:05:25 t 1 1 104351 445 0.00 2019-09-26 10:02:53 2019-09-26 10:08:30 t 1 1 104352 375 0.00 2019-09-26 10:03:52 2019-09-26 10:08:52 t 1 1 104353 445 0.00 2019-09-26 10:08:33 2019-09-26 10:09:17 t 1 1 104356 327 0.00 2019-09-26 10:15:48 2019-09-26 10:16:21 t 1 1 104359 501 0.00 2019-09-26 10:05:18 2019-09-26 10:17:37 t 1 1 104362 445 0.00 2019-09-26 10:18:33 2019-09-26 10:19:34 t 1 1 104370 445 0.00 2019-09-26 10:20:28 2019-09-26 10:24:35 t 1 1 104373 375 0.00 2019-09-26 10:24:19 2019-09-26 10:25:28 t 1 1 104383 501 0.00 2019-09-26 10:31:09 2019-09-26 10:32:26 t 1 1 104387 501 0.00 2019-09-26 10:34:52 2019-09-26 10:35:45 t 1 1 104388 501 0.00 2019-09-26 10:35:52 2019-09-26 10:36:12 t 1 1 104389 375 0.00 2019-09-26 10:35:34 2019-09-26 10:36:44 t 1 1 104390 247 0.00 2019-09-26 10:35:03 2019-09-26 10:37:27 t 1 2 104392 375 0.00 2019-09-26 10:37:45 2019-09-26 10:39:25 t 1 1 104394 296 0.00 2019-09-26 10:36:01 2019-09-26 10:40:25 t 1 2 104397 375 0.00 2019-09-26 10:41:06 2019-09-26 10:42:08 t 1 1 104398 375 0.00 2019-09-26 10:41:29 2019-09-26 10:42:50 t 1 1 104400 445 0.00 2019-09-26 10:41:34 2019-09-26 10:44:23 t 1 1 104401 395 0.00 2019-09-26 10:39:49 2019-09-26 10:45:26 t 1 2 104405 331 0.00 2019-09-26 10:45:48 2019-09-26 10:46:43 t 1 1 104407 306 0.00 2019-09-26 10:41:52 2019-09-26 10:48:14 t 1 1 104408 445 0.00 2019-09-26 10:44:22 2019-09-26 10:51:00 t 1 1 104409 445 0.00 2019-09-26 10:51:00 2019-09-26 10:52:01 t 1 1 104410 501 0.00 2019-09-26 10:45:43 2019-09-26 10:53:19 t 1 1 104411 481 0.00 2019-09-26 09:25:10 2019-09-26 10:53:57 t 1 1 104418 375 0.00 2019-09-26 10:51:23 2019-09-26 10:58:52 t 1 1 104419 451 0.00 2019-09-26 10:46:41 2019-09-26 10:59:20 t 1 1 104421 445 0.00 2019-09-26 10:58:53 2019-09-26 11:00:26 t 1 1 104426 325 0.00 2019-09-26 09:35:03 2019-09-26 11:05:08 t 1 2 104429 501 0.00 2019-09-26 11:05:15 2019-09-26 11:05:46 t 1 1 104435 499 0.00 2019-09-26 10:36:21 2019-09-26 11:10:51 t 1 1 104440 451 0.00 2019-09-26 10:59:20 2019-09-26 11:17:16 t 1 1 104443 247 0.00 2019-09-26 11:19:56 2019-09-26 11:21:44 t 1 2 104455 422 0.00 2019-09-26 11:18:46 2019-09-26 11:37:00 t 1 1 104456 445 0.00 2019-09-26 11:28:15 2019-09-26 11:37:59 t 1 1 104457 481 0.00 2019-09-26 11:32:43 2019-09-26 11:38:09 t 1 1 104458 468 0.00 2019-09-26 10:43:24 2019-09-26 11:39:34 t 1 1 104461 375 0.00 2019-09-26 11:34:32 2019-09-26 11:45:48 t 1 1 104463 306 0.00 2019-09-26 11:44:40 2019-09-26 11:49:02 t 1 1 104467 445 0.00 2019-09-26 11:38:01 2019-09-26 11:54:04 t 1 1 104472 212 0.00 2019-09-26 11:55:21 2019-09-26 12:03:24 t 1 2 104474 432 0.00 2019-09-26 12:02:01 2019-09-26 12:11:10 t 1 1 104478 445 0.00 2019-09-26 12:11:20 2019-09-26 12:20:24 t 1 1 104479 422 0.00 2019-09-26 12:05:27 2019-09-26 12:22:22 t 1 1 104482 445 0.00 2019-09-26 12:20:23 2019-09-26 12:26:30 t 1 1 104484 501 0.00 2019-09-26 12:26:07 2019-09-26 12:27:26 t 1 1 104485 501 0.00 2019-09-26 12:27:34 2019-09-26 12:28:07 t 1 1 104486 422 0.00 2019-09-26 12:22:22 2019-09-26 12:28:58 t 1 1 104488 501 0.00 2019-09-26 12:28:56 2019-09-26 12:29:58 t 1 1 104489 501 0.00 2019-09-26 12:29:45 2019-09-26 12:30:53 t 1 1 104492 327 0.00 2019-09-26 12:34:13 2019-09-26 12:35:59 t 1 1 104495 445 0.00 2019-09-26 12:36:25 2019-09-26 12:37:03 t 1 1 104496 331 0.00 2019-09-26 12:36:51 2019-09-26 12:37:39 t 1 1 104498 331 0.00 2019-09-26 12:37:39 2019-09-26 12:38:35 t 1 1 104507 470 0.00 2019-09-26 12:41:24 2019-09-26 12:45:40 t 1 1 104509 327 0.00 2019-09-26 12:45:23 2019-09-26 12:46:28 t 1 1 104511 420 0.00 2019-09-26 12:48:59 2019-09-26 12:50:51 t 1 1 104516 327 0.00 2019-09-26 12:55:53 2019-09-26 12:56:41 t 1 1 104517 445 0.00 2019-09-26 12:56:38 2019-09-26 13:01:32 t 1 1 104519 327 0.00 2019-09-26 13:06:37 2019-09-26 13:08:05 t 1 1 104520 296 0.00 2019-09-26 13:06:43 2019-09-26 13:10:06 t 1 2 104522 445 0.00 2019-09-26 13:02:00 2019-09-26 13:15:04 t 1 1 104523 327 0.00 2019-09-26 13:17:30 2019-09-26 13:19:15 t 1 1 104526 420 0.00 2019-09-26 13:19:18 2019-09-26 13:29:55 t 1 1 104530 402 0.00 2019-09-26 13:16:13 2019-09-26 13:31:50 t 1 2 104531 499 0.00 2019-09-26 12:43:36 2019-09-26 13:33:42 t 1 1 104539 445 0.00 2019-09-26 13:30:47 2019-09-26 13:56:46 t 1 1 104549 331 0.00 2019-09-26 12:43:17 2019-09-26 14:06:15 t 1 1 104550 481 0.00 2019-09-26 13:13:46 2019-09-26 14:07:10 t 1 1 104551 501 0.00 2019-09-26 14:07:07 2019-09-26 14:07:37 t 1 1 104552 501 0.00 2019-09-26 14:08:38 2019-09-26 14:08:39 t 1 1 104556 501 0.00 2019-09-26 14:15:43 2019-09-26 14:16:16 t 1 1 104557 501 0.00 2019-09-26 14:16:44 2019-09-26 14:18:26 t 1 1 104559 501 0.00 2019-09-26 14:17:00 2019-09-26 14:23:34 t 1 1 104560 501 0.00 2019-09-26 14:23:34 2019-09-26 14:29:45 t 1 1 104563 501 0.00 2019-09-26 14:29:45 2019-09-26 14:36:42 t 1 1 104566 501 0.00 2019-09-26 14:36:42 2019-09-26 14:44:11 t 1 1 104573 501 0.00 2019-09-26 14:44:11 2019-09-26 14:50:41 t 1 1 104575 445 0.00 2019-09-26 13:57:12 2019-09-26 14:55:48 t 1 1 104576 445 0.00 2019-09-26 14:55:50 2019-09-26 14:56:41 t 1 1 104585 445 0.00 2019-09-26 14:56:47 2019-09-26 15:14:19 t 1 1 104587 422 0.00 2019-09-26 14:58:28 2019-09-26 15:16:23 t 1 1 104589 501 0.00 2019-09-26 15:14:32 2019-09-26 15:20:50 t 1 1 104590 432 0.00 2019-09-26 15:20:07 2019-09-26 15:21:04 t 1 1 104594 375 0.00 2019-09-26 15:21:12 2019-09-26 15:25:43 t 1 1 104600 432 0.00 2019-09-26 15:34:12 2019-09-26 15:34:52 t 1 1 104601 501 0.00 2019-09-26 15:29:36 2019-09-26 15:35:24 t 1 1 104604 462 0.00 2019-09-26 15:36:03 2019-09-26 15:44:08 t 1 1 104605 432 0.00 2019-09-26 15:44:57 2019-09-26 15:45:09 t 1 1 104606 490 0.00 2019-09-26 15:42:51 2019-09-26 15:46:00 t 1 1 104609 490 0.00 2019-09-26 15:49:08 2019-09-26 15:54:10 t 1 1 104614 445 0.00 2019-09-26 15:14:19 2019-09-26 16:01:33 t 1 1 104357 327 0.00 2019-09-26 10:16:48 2019-09-26 10:16:48 t 1 1 104358 445 0.00 2019-09-26 10:09:17 2019-09-26 10:17:35 t 1 1 104360 501 0.00 2019-09-26 10:17:43 2019-09-26 10:17:57 t 1 1 104361 327 0.00 2019-09-26 10:16:56 2019-09-26 10:19:26 t 1 1 104365 375 0.00 2019-09-26 10:13:49 2019-09-26 10:21:56 t 1 1 104367 331 0.00 2019-09-26 10:21:12 2019-09-26 10:22:40 t 1 1 104368 327 0.00 2019-09-26 10:21:33 2019-09-26 10:22:59 t 1 1 104369 375 0.00 2019-09-26 10:22:44 2019-09-26 10:23:55 t 1 1 104372 327 0.00 2019-09-26 10:23:42 2019-09-26 10:25:00 t 1 1 104376 501 0.00 2019-09-26 10:28:51 2019-09-26 10:29:25 t 1 1 104378 327 0.00 2019-09-26 10:28:23 2019-09-26 10:29:54 t 1 1 104380 501 0.00 2019-09-26 10:30:16 2019-09-26 10:30:17 t 1 1 104382 501 0.00 2019-09-26 10:31:47 2019-09-26 10:32:18 t 1 1 104384 501 0.00 2019-09-26 10:32:27 2019-09-26 10:33:10 t 1 1 104385 247 0.00 2019-09-26 10:32:13 2019-09-26 10:34:45 t 1 2 104393 501 0.00 2019-09-26 10:37:18 2019-09-26 10:39:31 t 1 1 104395 375 0.00 2019-09-26 10:39:27 2019-09-26 10:40:58 t 1 1 104396 445 0.00 2019-09-26 10:24:34 2019-09-26 10:41:25 t 1 1 104399 468 0.00 2019-09-26 10:31:33 2019-09-26 10:43:23 t 1 1 104403 501 0.00 2019-09-26 10:40:27 2019-09-26 10:45:32 t 1 1 104404 432 0.00 2019-09-26 10:12:07 2019-09-26 10:46:06 t 1 1 104406 375 0.00 2019-09-26 10:42:49 2019-09-26 10:47:56 t 1 1 104412 501 0.00 2019-09-26 10:53:47 2019-09-26 10:53:59 t 1 1 104420 501 0.00 2019-09-26 10:59:42 2019-09-26 11:00:25 t 1 1 104422 501 0.00 2019-09-26 11:01:07 2019-09-26 11:02:21 t 1 1 104423 501 0.00 2019-09-26 11:03:07 2019-09-26 11:03:15 t 1 1 104425 501 0.00 2019-09-26 11:04:16 2019-09-26 11:04:46 t 1 1 104428 432 0.00 2019-09-26 10:53:41 2019-09-26 11:05:39 t 1 1 104432 501 0.00 2019-09-26 11:06:11 2019-09-26 11:07:26 t 1 1 104433 375 0.00 2019-09-26 10:58:51 2019-09-26 11:09:12 t 1 1 104434 220 0.00 2019-09-26 10:58:33 2019-09-26 11:09:38 t 1 2 104439 499 0.00 2019-09-26 11:10:51 2019-09-26 11:15:33 t 1 1 104441 432 0.00 2019-09-26 11:09:55 2019-09-26 11:18:00 t 1 1 104442 422 0.00 2019-09-26 02:01:50 2019-09-26 11:18:46 t 1 1 104444 499 0.00 2019-09-26 11:15:33 2019-09-26 11:22:59 t 1 1 104445 375 0.00 2019-09-26 11:09:17 2019-09-26 11:25:25 t 1 1 104446 445 0.00 2019-09-26 11:00:40 2019-09-26 11:26:26 t 1 1 104448 451 0.00 2019-09-26 11:17:16 2019-09-26 11:29:00 t 1 1 104453 456 0.00 2019-09-26 11:30:06 2019-09-26 11:34:06 t 1 1 104459 422 0.00 2019-09-26 11:37:00 2019-09-26 11:44:05 t 1 1 104460 247 0.00 2019-09-26 11:42:52 2019-09-26 11:44:25 t 1 2 104468 501 0.00 2019-09-26 11:18:26 2019-09-26 11:55:21 t 1 1 104470 306 0.00 2019-09-26 11:56:22 2019-09-26 11:57:13 t 1 1 104471 422 0.00 2019-09-26 11:52:38 2019-09-26 11:58:36 t 1 1 104475 445 0.00 2019-09-26 11:54:57 2019-09-26 12:11:18 t 1 1 104476 247 0.00 2019-09-26 12:12:43 2019-09-26 12:13:26 t 1 2 104481 501 0.00 2019-09-26 12:25:07 2019-09-26 12:25:57 t 1 1 104491 375 0.00 2019-09-26 12:02:26 2019-09-26 12:35:56 t 1 1 104497 445 0.00 2019-09-26 12:37:02 2019-09-26 12:38:08 t 1 1 104499 375 0.00 2019-09-26 12:36:02 2019-09-26 12:39:15 t 1 1 104500 464 0.00 2019-09-26 12:40:37 2019-09-26 12:41:24 t 1 1 104502 481 0.00 2019-09-26 11:38:08 2019-09-26 12:41:46 t 1 1 104503 499 0.00 2019-09-26 11:31:39 2019-09-26 12:42:57 t 1 1 104504 375 0.00 2019-09-26 12:40:29 2019-09-26 12:43:33 t 1 1 104505 331 0.00 2019-09-26 12:38:35 2019-09-26 12:44:09 t 1 1 104510 420 0.00 2019-09-26 12:27:30 2019-09-26 12:49:00 t 1 1 104512 422 0.00 2019-09-26 12:44:50 2019-09-26 12:51:50 t 1 1 104513 451 0.00 2019-09-26 12:46:35 2019-09-26 12:53:09 t 1 1 104515 445 0.00 2019-09-26 12:38:14 2019-09-26 12:56:38 t 1 1 104521 481 0.00 2019-09-26 12:41:50 2019-09-26 13:14:16 t 1 1 104525 220 0.00 2019-09-26 13:18:15 2019-09-26 13:24:08 t 1 1 104529 327 0.00 2019-09-26 13:30:39 2019-09-26 13:31:25 t 1 1 104532 456 0.00 2019-09-26 13:26:12 2019-09-26 13:35:06 t 1 1 104533 456 0.00 2019-09-26 13:35:17 2019-09-26 13:37:06 t 1 1 104535 375 0.00 2019-09-26 12:57:52 2019-09-26 13:41:50 t 1 1 104537 247 0.00 2019-09-26 13:44:17 2019-09-26 13:48:07 t 1 2 104540 501 0.00 2019-09-26 13:56:18 2019-09-26 13:56:48 t 1 1 104541 445 0.00 2019-09-26 13:56:46 2019-09-26 13:57:12 t 1 1 104545 501 0.00 2019-09-26 14:00:34 2019-09-26 14:00:35 t 1 1 104547 501 0.00 2019-09-26 14:02:17 2019-09-26 14:02:44 t 1 1 104553 481 0.00 2019-09-26 14:07:36 2019-09-26 14:11:52 t 1 1 104554 420 0.00 2019-09-26 13:48:39 2019-09-26 14:14:11 t 1 1 104555 501 0.00 2019-09-26 14:14:37 2019-09-26 14:14:47 t 1 1 104561 379 0.00 2019-09-26 14:16:40 2019-09-26 14:31:41 t 1 1 104564 422 0.00 2019-09-26 12:51:50 2019-09-26 14:37:08 t 1 1 104568 331 0.00 2019-09-26 14:06:40 2019-09-26 14:46:52 t 1 1 104570 430 0.00 2019-09-26 14:34:16 2019-09-26 14:49:07 t 1 1 104572 331 0.00 2019-09-26 14:46:52 2019-09-26 14:50:28 t 1 1 104577 501 0.00 2019-09-26 14:50:41 2019-09-26 14:56:50 t 1 1 104579 422 0.00 2019-09-26 14:37:08 2019-09-26 14:58:28 t 1 1 104580 379 0.00 2019-09-26 14:50:09 2019-09-26 15:01:05 t 1 1 104583 430 0.00 2019-09-26 15:04:33 2019-09-26 15:04:48 t 1 1 104584 501 0.00 2019-09-26 15:03:23 2019-09-26 15:09:08 t 1 1 104588 432 0.00 2019-09-26 15:12:38 2019-09-26 15:17:12 t 1 1 104592 412 0.00 2019-09-26 14:57:02 2019-09-26 15:22:58 t 1 1 104593 325 0.00 2019-09-26 15:10:36 2019-09-26 15:25:41 t 1 2 104595 501 0.00 2019-09-26 15:20:50 2019-09-26 15:29:36 t 1 1 104597 432 0.00 2019-09-26 15:29:06 2019-09-26 15:30:26 t 1 1 104603 375 0.00 2019-09-26 15:34:35 2019-09-26 15:38:59 t 1 1 104607 306 0.00 2019-09-26 15:36:08 2019-09-26 15:46:57 t 1 1 104608 490 0.00 2019-09-26 15:47:55 2019-09-26 15:49:09 t 1 1 104610 451 0.00 2019-09-26 15:40:30 2019-09-26 15:54:58 t 1 1 104611 451 0.00 2019-09-26 15:54:58 2019-09-26 15:59:53 t 1 1 104612 220 0.00 2019-09-26 15:59:23 2019-09-26 16:00:57 t 1 1 104617 422 0.00 2019-09-26 15:37:10 2019-09-26 16:23:02 t 1 1 104621 445 0.00 2019-09-26 16:01:32 2019-09-26 16:39:06 t 1 1 104622 422 0.00 2019-09-26 16:34:19 2019-09-26 16:40:08 t 1 1 104625 422 0.00 2019-09-26 16:40:08 2019-09-26 16:45:54 t 1 1 104627 422 0.00 2019-09-26 16:45:54 2019-09-26 17:05:29 t 1 1 104631 481 0.00 2019-09-26 15:27:38 2019-09-26 17:12:43 t 1 1 104635 422 0.00 2019-09-26 17:05:29 2019-09-26 17:23:56 t 1 1 104636 481 0.00 2019-09-26 17:17:42 2019-09-26 17:24:04 t 1 1 104637 445 0.00 2019-09-26 17:14:36 2019-09-26 17:25:03 t 1 1 104641 432 0.00 2019-09-26 17:31:58 2019-09-26 17:32:18 t 1 1 104642 462 0.00 2019-09-26 17:30:25 2019-09-26 17:35:50 t 1 1 104643 481 0.00 2019-09-26 17:24:03 2019-09-26 17:36:22 t 1 1 104645 325 0.00 2019-09-26 16:10:46 2019-09-26 17:36:57 t 1 2 104436 501 0.00 2019-09-26 11:08:16 2019-09-26 11:12:27 t 1 1 104437 501 0.00 2019-09-26 11:13:22 2019-09-26 11:13:32 t 1 1 104438 501 0.00 2019-09-26 11:13:42 2019-09-26 11:15:26 t 1 1 104447 445 0.00 2019-09-26 11:26:34 2019-09-26 11:28:22 t 1 1 104449 461 0.00 2019-09-26 11:14:35 2019-09-26 11:29:10 t 1 2 104450 499 0.00 2019-09-26 11:22:59 2019-09-26 11:31:39 t 1 1 104451 481 0.00 2019-09-26 11:06:20 2019-09-26 11:32:43 t 1 1 104452 451 0.00 2019-09-26 11:29:00 2019-09-26 11:33:45 t 1 1 104454 375 0.00 2019-09-26 11:25:27 2019-09-26 11:34:27 t 1 1 104462 220 0.00 2019-09-26 10:21:30 2019-09-26 11:45:59 t 1 2 104464 212 0.00 2019-09-26 11:39:40 2019-09-26 11:50:46 t 1 2 104465 422 0.00 2019-09-26 11:44:05 2019-09-26 11:52:38 t 1 1 104466 375 0.00 2019-09-26 11:46:47 2019-09-26 11:53:38 t 1 1 104469 375 0.00 2019-09-26 11:53:41 2019-09-26 11:56:48 t 1 1 104473 422 0.00 2019-09-26 11:58:36 2019-09-26 12:05:27 t 1 1 104477 501 0.00 2019-09-26 11:55:39 2019-09-26 12:15:00 t 1 1 104480 501 0.00 2019-09-26 12:15:32 2019-09-26 12:24:33 t 1 1 104483 501 0.00 2019-09-26 12:26:17 2019-09-26 12:26:47 t 1 1 104487 501 0.00 2019-09-26 12:29:20 2019-09-26 12:29:35 t 1 1 104490 247 0.00 2019-09-26 12:31:35 2019-09-26 12:32:41 t 1 2 104493 422 0.00 2019-09-26 12:28:58 2019-09-26 12:36:35 t 1 1 104494 331 0.00 2019-09-26 10:46:43 2019-09-26 12:36:51 t 1 1 104501 470 0.00 2019-09-26 12:37:46 2019-09-26 12:41:25 t 1 1 104506 422 0.00 2019-09-26 12:36:35 2019-09-26 12:44:50 t 1 1 104508 451 0.00 2019-09-26 12:35:55 2019-09-26 12:45:53 t 1 1 104514 375 0.00 2019-09-26 12:43:33 2019-09-26 12:55:44 t 1 1 104518 424 0.00 2019-09-26 12:59:04 2019-09-26 13:03:46 t 1 2 104524 485 0.00 2019-09-26 13:19:04 2019-09-26 13:20:36 t 1 1 104527 327 0.00 2019-09-26 13:29:11 2019-09-26 13:29:58 t 1 1 104528 445 0.00 2019-09-26 13:15:12 2019-09-26 13:30:22 t 1 1 104534 451 0.00 2019-09-26 13:36:08 2019-09-26 13:39:22 t 1 1 104536 451 0.00 2019-09-26 13:39:22 2019-09-26 13:46:01 t 1 1 104538 451 0.00 2019-09-26 13:46:01 2019-09-26 13:54:17 t 1 1 104542 501 0.00 2019-09-26 13:57:11 2019-09-26 13:58:06 t 1 1 104543 501 0.00 2019-09-26 13:58:13 2019-09-26 13:59:10 t 1 1 104544 501 0.00 2019-09-26 13:59:33 2019-09-26 13:59:41 t 1 1 104546 451 0.00 2019-09-26 13:54:17 2019-09-26 14:01:21 t 1 1 104548 501 0.00 2019-09-26 14:01:35 2019-09-26 14:03:26 t 1 1 104558 220 0.00 2019-09-26 14:16:03 2019-09-26 14:18:27 t 1 2 104562 430 0.00 2019-09-26 14:19:41 2019-09-26 14:34:16 t 1 1 104565 420 0.00 2019-09-26 14:37:42 2019-09-26 14:40:44 t 1 1 104567 420 0.00 2019-09-26 14:42:09 2019-09-26 14:44:16 t 1 1 104569 420 0.00 2019-09-26 14:44:12 2019-09-26 14:47:00 t 1 1 104571 379 0.00 2019-09-26 14:31:41 2019-09-26 14:50:09 t 1 1 104574 331 0.00 2019-09-26 14:49:00 2019-09-26 14:52:33 t 1 1 104578 412 0.00 2019-09-26 07:31:03 2019-09-26 14:57:02 t 1 1 104581 379 0.00 2019-09-26 15:01:05 2019-09-26 15:02:13 t 1 1 104582 501 0.00 2019-09-26 14:56:50 2019-09-26 15:03:23 t 1 1 104586 501 0.00 2019-09-26 15:09:08 2019-09-26 15:14:32 t 1 1 104591 375 0.00 2019-09-26 13:42:10 2019-09-26 15:21:12 t 1 1 104596 375 0.00 2019-09-26 15:25:43 2019-09-26 15:30:07 t 1 1 104598 412 0.00 2019-09-26 15:22:58 2019-09-26 15:31:42 t 1 1 104599 375 0.00 2019-09-26 15:30:07 2019-09-26 15:34:35 t 1 1 104602 422 0.00 2019-09-26 15:16:23 2019-09-26 15:37:10 t 1 1 104613 220 0.00 2019-09-26 12:11:59 2019-09-26 16:01:17 t 1 2 104620 422 0.00 2019-09-26 16:28:35 2019-09-26 16:34:19 t 1 1 104624 432 0.00 2019-09-26 15:47:00 2019-09-26 16:45:51 t 1 1 104626 412 0.00 2019-09-26 15:31:42 2019-09-26 17:01:17 t 1 1 104628 470 0.00 2019-09-26 15:20:51 2019-09-26 17:08:23 t 1 1 104629 412 0.00 2019-09-26 17:03:44 2019-09-26 17:11:47 t 1 1 104630 220 0.00 2019-09-26 15:14:01 2019-09-26 17:12:31 t 1 2 104632 445 0.00 2019-09-26 16:39:06 2019-09-26 17:14:36 t 1 1 104638 220 0.00 2019-09-26 16:32:23 2019-09-26 17:27:28 t 1 2 104644 306 0.00 2019-09-26 17:33:08 2019-09-26 17:36:49 t 1 1 104651 501 0.00 2019-09-26 17:37:19 2019-09-26 17:44:24 t 1 1 104652 462 0.00 2019-09-26 17:42:01 2019-09-26 17:48:04 t 1 1 104653 501 0.00 2019-09-26 17:44:24 2019-09-26 17:50:41 t 1 1 104654 432 0.00 2019-09-26 17:52:13 2019-09-26 17:52:40 t 1 1 104655 462 0.00 2019-09-26 17:48:04 2019-09-26 17:53:42 t 1 1 104656 481 0.00 2019-09-26 17:52:51 2019-09-26 17:53:46 t 1 1 104658 501 0.00 2019-09-26 17:50:41 2019-09-26 17:57:01 t 1 1 104659 432 0.00 2019-09-26 17:58:53 2019-09-26 17:59:35 t 1 1 104664 481 0.00 2019-09-26 17:53:46 2019-09-26 18:02:23 t 1 1 104669 412 0.00 2019-09-26 18:01:59 2019-09-26 18:03:41 t 1 1 104671 220 0.00 2019-09-26 18:04:12 2019-09-26 18:04:48 t 1 1 104673 220 0.00 2019-09-26 18:04:47 2019-09-26 18:05:21 t 1 1 104677 501 0.00 2019-09-26 18:02:43 2019-09-26 18:09:22 t 1 1 104678 395 0.00 2019-09-26 18:09:40 2019-09-26 18:10:41 t 1 2 104681 395 0.00 2019-09-26 18:11:32 2019-09-26 18:12:38 t 1 2 104684 395 0.00 2019-09-26 18:14:22 2019-09-26 18:15:26 t 1 2 104686 501 0.00 2019-09-26 18:09:22 2019-09-26 18:16:13 t 1 1 104688 432 0.00 2019-09-26 18:15:15 2019-09-26 18:17:18 t 1 1 104689 422 0.00 2019-09-26 18:15:20 2019-09-26 18:21:06 t 1 1 104690 501 0.00 2019-09-26 18:16:13 2019-09-26 18:21:46 t 1 1 104691 485 0.00 2019-09-26 18:19:55 2019-09-26 18:22:38 t 1 1 104693 416 0.00 2019-09-26 18:11:21 2019-09-26 18:28:37 t 1 1 104695 247 0.00 2019-09-26 18:30:10 2019-09-26 18:30:45 t 1 2 104698 485 0.00 2019-09-26 18:30:06 2019-09-26 18:33:01 t 1 1 104700 485 0.00 2019-09-26 18:33:15 2019-09-26 18:34:09 t 1 1 104702 501 0.00 2019-09-26 18:26:46 2019-09-26 18:37:11 t 1 1 104704 325 0.00 2019-09-26 18:28:44 2019-09-26 18:38:49 t 1 2 104707 462 0.00 2019-09-26 18:02:04 2019-09-26 18:42:57 t 1 1 104710 412 0.00 2019-09-26 18:41:18 2019-09-26 18:44:38 t 1 1 104713 220 0.00 2019-09-26 18:44:50 2019-09-26 18:45:24 t 1 1 104715 220 0.00 2019-09-26 18:45:55 2019-09-26 18:46:32 t 1 1 104720 306 0.00 2019-09-26 18:46:52 2019-09-26 18:49:31 t 1 1 104722 488 0.00 2019-09-26 18:51:57 2019-09-26 18:55:16 t 1 1 104723 451 0.00 2019-09-26 18:44:36 2019-09-26 19:01:56 t 1 1 104724 498 0.00 2019-09-26 19:02:31 2019-09-26 19:02:31 f 1 2 104726 498 0.00 2019-09-26 19:06:19 2019-09-26 19:06:19 f 1 2 104728 488 0.00 2019-09-26 18:56:21 2019-09-26 19:10:21 t 1 1 104730 485 0.00 2019-09-26 19:07:35 2019-09-26 19:13:54 t 1 1 104738 361 0.00 2019-09-26 14:15:22 2019-09-26 19:30:20 t 1 2 104741 481 0.00 2019-09-26 19:43:16 2019-09-26 19:52:55 t 1 1 104746 485 0.00 2019-09-26 20:14:31 2019-09-26 20:25:24 t 1 1 104747 481 0.00 2019-09-26 20:09:42 2019-09-26 20:26:26 t 1 1 104749 481 0.00 2019-09-26 20:26:48 2019-09-26 20:30:40 t 1 1 104615 375 0.00 2019-09-26 15:38:59 2019-09-26 16:03:35 t 1 1 104616 220 0.00 2019-09-26 16:10:57 2019-09-26 16:13:19 t 1 1 104618 220 0.00 2019-09-26 16:16:57 2019-09-26 16:27:01 t 1 1 104619 422 0.00 2019-09-26 16:23:02 2019-09-26 16:28:35 t 1 1 104623 498 0.00 2019-09-26 16:20:30 2019-09-26 16:43:51 t 1 2 104633 481 0.00 2019-09-26 17:13:35 2019-09-26 17:17:34 t 1 1 104634 432 0.00 2019-09-26 16:45:56 2019-09-26 17:21:01 t 1 1 104639 501 0.00 2019-09-26 17:08:43 2019-09-26 17:28:23 t 1 1 104640 432 0.00 2019-09-26 17:22:56 2019-09-26 17:30:12 t 1 1 104647 501 0.00 2019-09-26 17:28:23 2019-09-26 17:37:19 t 1 1 104648 445 0.00 2019-09-26 17:24:52 2019-09-26 17:40:47 t 1 1 104650 432 0.00 2019-09-26 17:42:05 2019-09-26 17:42:34 t 1 1 104657 306 0.00 2019-09-26 17:51:30 2019-09-26 17:54:17 t 1 1 104661 412 0.00 2019-09-26 17:11:51 2019-09-26 18:01:58 t 1 1 104665 501 0.00 2019-09-26 17:57:01 2019-09-26 18:02:43 t 1 1 104666 422 0.00 2019-09-26 17:23:56 2019-09-26 18:02:59 t 1 1 104670 220 0.00 2019-09-26 18:03:33 2019-09-26 18:04:12 t 1 1 104680 416 0.00 2019-09-26 16:58:42 2019-09-26 18:11:21 t 1 1 104685 481 0.00 2019-09-26 18:02:23 2019-09-26 18:15:49 t 1 1 104701 420 0.00 2019-09-26 18:33:20 2019-09-26 18:34:31 t 1 1 104706 485 0.00 2019-09-26 18:34:09 2019-09-26 18:41:12 t 1 1 104711 220 0.00 2019-09-26 18:44:16 2019-09-26 18:44:50 t 1 1 104714 220 0.00 2019-09-26 18:45:24 2019-09-26 18:45:56 t 1 1 104717 247 0.00 2019-09-26 18:46:27 2019-09-26 18:47:44 t 1 2 104718 220 0.00 2019-09-26 18:47:20 2019-09-26 18:48:34 t 1 1 104719 220 0.00 2019-09-26 18:48:34 2019-09-26 18:49:17 t 1 1 104721 220 0.00 2019-09-26 18:49:17 2019-09-26 18:49:48 t 1 1 104725 498 0.00 2019-09-26 19:03:07 2019-09-26 19:03:07 f 1 2 104731 461 0.00 2019-09-26 19:13:24 2019-09-26 19:14:28 t 1 2 104732 395 0.00 2019-09-26 18:44:57 2019-09-26 19:15:20 t 1 2 104734 462 0.00 2019-09-26 18:43:04 2019-09-26 19:16:51 t 1 1 104735 422 0.00 2019-09-26 18:21:06 2019-09-26 19:19:16 t 1 1 104736 220 0.00 2019-09-26 19:23:45 2019-09-26 19:27:08 t 1 2 104737 462 0.00 2019-09-26 19:16:51 2019-09-26 19:29:10 t 1 1 104739 481 0.00 2019-09-26 18:15:48 2019-09-26 19:43:16 t 1 1 104740 445 0.00 2019-09-26 18:45:05 2019-09-26 19:51:07 t 1 1 104744 481 0.00 2019-09-26 19:52:55 2019-09-26 20:04:44 t 1 1 104748 247 0.00 2019-09-26 20:28:09 2019-09-26 20:30:29 t 1 2 104752 247 0.00 2019-09-26 20:36:29 2019-09-26 20:37:47 t 1 2 104756 498 0.00 2019-09-26 20:49:55 2019-09-26 20:49:55 f 1 2 104757 498 0.00 2019-09-26 19:18:34 2019-09-26 20:53:39 t 1 2 104764 449 0.00 2019-09-26 21:05:05 2019-09-26 21:12:13 t 1 1 104766 474 0.00 2019-09-26 21:08:58 2019-09-26 21:12:43 t 1 1 104767 449 0.00 2019-09-26 21:13:40 2019-09-26 21:14:05 t 1 1 104769 456 0.00 2019-09-26 21:05:42 2019-09-26 21:20:13 t 1 1 104776 400 0.00 2019-09-26 21:35:29 2019-09-26 21:43:17 t 1 1 104778 412 0.00 2019-09-26 21:49:05 2019-09-26 21:52:59 t 1 1 104782 472 0.00 2019-09-26 21:55:38 2019-09-26 21:56:00 t 1 1 104783 472 0.00 2019-09-26 21:56:10 2019-09-26 21:56:33 t 1 1 104787 472 0.00 2019-09-26 22:00:28 2019-09-26 22:00:35 t 1 1 104791 445 0.00 2019-09-26 21:28:31 2019-09-26 22:05:17 t 1 1 104797 472 0.00 2019-09-26 22:14:51 2019-09-26 22:15:57 t 1 1 104798 472 0.00 2019-09-26 22:16:05 2019-09-26 22:16:30 t 1 1 104799 490 0.00 2019-09-26 22:10:32 2019-09-26 22:20:19 t 1 1 104800 472 0.00 2019-09-26 22:20:55 2019-09-26 22:21:02 t 1 1 104811 490 0.00 2019-09-26 22:20:19 2019-09-26 22:29:55 t 1 1 104813 472 0.00 2019-09-26 22:32:45 2019-09-26 22:33:07 t 1 1 104816 451 0.00 2019-09-26 22:26:50 2019-09-26 22:36:58 t 1 1 104820 445 0.00 2019-09-26 22:06:22 2019-09-26 22:40:38 t 1 1 104829 490 0.00 2019-09-26 22:43:49 2019-09-26 22:54:57 t 1 1 104830 464 0.00 2019-09-26 22:24:21 2019-09-26 22:56:51 t 1 1 104837 220 0.00 2019-09-26 23:02:49 2019-09-26 23:03:24 t 1 1 104839 220 0.00 2019-09-26 23:03:58 2019-09-26 23:04:33 t 1 1 104841 220 0.00 2019-09-26 23:05:08 2019-09-26 23:05:39 t 1 1 104846 220 0.00 2019-09-26 23:07:20 2019-09-26 23:07:55 t 1 1 104847 220 0.00 2019-09-26 23:07:55 2019-09-26 23:08:29 t 1 1 104850 220 0.00 2019-09-26 23:09:38 2019-09-26 23:10:20 t 1 1 104852 220 0.00 2019-09-26 23:10:54 2019-09-26 23:11:32 t 1 1 104854 220 0.00 2019-09-26 23:11:32 2019-09-26 23:12:07 t 1 1 104855 220 0.00 2019-09-26 23:12:07 2019-09-26 23:12:46 t 1 1 104859 220 0.00 2019-09-26 23:15:21 2019-09-26 23:15:49 t 1 1 104863 220 0.00 2019-09-26 23:16:39 2019-09-26 23:17:05 t 1 1 104864 220 0.00 2019-09-26 23:17:05 2019-09-26 23:17:15 t 1 1 104868 220 0.00 2019-09-26 23:18:31 2019-09-26 23:19:02 t 1 1 104871 220 0.00 2019-09-26 23:19:43 2019-09-26 23:20:18 t 1 1 104873 220 0.00 2019-09-26 23:20:18 2019-09-26 23:21:08 t 1 1 104877 220 0.00 2019-09-26 23:22:15 2019-09-26 23:23:10 t 1 1 104879 220 0.00 2019-09-26 23:25:16 2019-09-26 23:25:48 t 1 1 104880 220 0.00 2019-09-26 23:25:48 2019-09-26 23:26:57 t 1 1 104881 220 0.00 2019-09-26 23:23:50 2019-09-26 23:27:52 t 1 1 104883 247 0.00 2019-09-26 23:27:08 2019-09-26 23:28:07 t 1 2 104884 220 0.00 2019-09-26 23:27:57 2019-09-26 23:28:35 t 1 1 104885 220 0.00 2019-09-26 23:28:34 2019-09-26 23:30:00 t 1 1 104897 212 0.00 2019-09-26 23:40:30 2019-09-26 23:40:34 t 1 2 104899 212 0.00 2019-09-26 23:40:45 2019-09-26 23:42:40 t 1 2 104901 395 0.00 2019-09-26 23:45:02 2019-09-26 23:46:08 t 1 2 104905 395 0.00 2019-09-26 23:46:27 2019-09-26 23:47:34 t 1 2 104910 456 0.00 2019-09-26 22:55:50 2019-09-26 23:52:28 t 1 1 104911 445 0.00 2019-09-26 23:21:43 2019-09-26 23:57:01 t 1 1 104916 445 0.00 2019-09-26 23:57:01 2019-09-27 00:03:14 t 1 1 104917 474 0.00 2019-09-27 00:00:03 2019-09-27 00:09:26 t 1 1 104923 220 0.00 2019-09-27 00:17:49 2019-09-27 00:23:10 t 1 1 104926 327 0.00 2019-09-27 00:23:25 2019-09-27 00:24:26 t 1 1 104928 327 0.00 2019-09-27 00:24:39 2019-09-27 00:26:20 t 1 1 104934 395 0.00 2019-09-27 00:33:04 2019-09-27 00:34:09 t 1 2 104937 395 0.00 2019-09-27 00:34:27 2019-09-27 00:35:35 t 1 2 104939 412 0.00 2019-09-26 22:21:12 2019-09-27 00:38:47 t 1 1 104951 479 0.00 2019-09-27 00:41:25 2019-09-27 00:52:25 t 1 1 104952 395 0.00 2019-09-27 00:51:59 2019-09-27 00:53:05 t 1 2 104956 220 0.00 2019-09-27 00:52:01 2019-09-27 00:58:53 t 1 1 104960 501 0.00 2019-09-27 01:02:27 2019-09-27 01:02:29 t 1 1 104966 501 0.00 2019-09-27 01:06:20 2019-09-27 01:06:50 t 1 1 104971 501 0.00 2019-09-27 01:11:34 2019-09-27 01:13:17 t 1 1 104974 501 0.00 2019-09-27 01:15:45 2019-09-27 01:15:46 t 1 1 104975 501 0.00 2019-09-27 01:16:45 2019-09-27 01:16:46 t 1 1 104976 501 0.00 2019-09-27 01:17:45 2019-09-27 01:17:46 t 1 1 104980 501 0.00 2019-09-27 01:21:49 2019-09-27 01:22:22 t 1 1 104646 481 0.00 2019-09-26 17:37:13 2019-09-26 17:37:14 t 1 1 104649 462 0.00 2019-09-26 17:35:50 2019-09-26 17:42:01 t 1 1 104660 445 0.00 2019-09-26 17:43:09 2019-09-26 18:01:20 t 1 1 104662 462 0.00 2019-09-26 17:53:42 2019-09-26 18:02:04 t 1 1 104663 220 0.00 2019-09-26 17:36:49 2019-09-26 18:02:13 t 1 1 104667 220 0.00 2019-09-26 18:02:13 2019-09-26 18:02:59 t 1 1 104668 220 0.00 2019-09-26 18:02:58 2019-09-26 18:03:34 t 1 1 104672 412 0.00 2019-09-26 18:04:16 2019-09-26 18:05:18 t 1 1 104674 432 0.00 2019-09-26 18:04:52 2019-09-26 18:05:25 t 1 1 104675 306 0.00 2019-09-26 18:03:40 2019-09-26 18:07:31 t 1 1 104676 422 0.00 2019-09-26 18:02:59 2019-09-26 18:09:22 t 1 1 104679 432 0.00 2019-09-26 18:10:49 2019-09-26 18:11:18 t 1 1 104682 395 0.00 2019-09-26 18:12:59 2019-09-26 18:14:02 t 1 2 104683 422 0.00 2019-09-26 18:09:22 2019-09-26 18:15:20 t 1 1 104687 445 0.00 2019-09-26 18:11:10 2019-09-26 18:16:36 t 1 1 104692 501 0.00 2019-09-26 18:21:46 2019-09-26 18:26:46 t 1 1 104694 247 0.00 2019-09-26 18:28:53 2019-09-26 18:29:37 t 1 2 104696 220 0.00 2019-09-26 18:09:42 2019-09-26 18:30:46 t 1 2 104697 420 0.00 2019-09-26 18:28:33 2019-09-26 18:31:33 t 1 1 104699 420 0.00 2019-09-26 18:31:33 2019-09-26 18:33:21 t 1 1 104703 501 0.00 2019-09-26 18:37:20 2019-09-26 18:38:32 t 1 1 104705 501 0.00 2019-09-26 18:38:43 2019-09-26 18:40:36 t 1 1 104708 220 0.00 2019-09-26 18:05:20 2019-09-26 18:43:36 t 1 1 104709 220 0.00 2019-09-26 18:43:36 2019-09-26 18:44:16 t 1 1 104712 445 0.00 2019-09-26 18:16:36 2019-09-26 18:44:58 t 1 1 104716 220 0.00 2019-09-26 18:46:31 2019-09-26 18:47:20 t 1 1 104727 498 0.00 2019-09-26 18:13:34 2019-09-26 19:08:39 t 1 2 104729 488 0.00 2019-09-26 19:10:21 2019-09-26 19:10:51 t 1 1 104733 220 0.00 2019-09-26 18:24:20 2019-09-26 19:16:43 t 1 2 104742 503 0.00 2019-09-26 19:53:01 2019-09-26 19:58:25 t 1 1 104743 430 0.00 2019-09-26 19:56:40 2019-09-26 20:02:02 t 1 1 104745 430 0.00 2019-09-26 20:02:02 2019-09-26 20:08:11 t 1 1 104750 306 0.00 2019-09-26 20:25:40 2019-09-26 20:31:11 t 1 1 104751 325 0.00 2019-09-26 20:12:35 2019-09-26 20:32:40 t 1 2 104753 306 0.00 2019-09-26 20:36:14 2019-09-26 20:48:39 t 1 1 104758 247 0.00 2019-09-26 20:55:12 2019-09-26 20:55:52 t 1 2 104759 422 0.00 2019-09-26 20:49:26 2019-09-26 20:57:26 t 1 1 104761 247 0.00 2019-09-26 21:07:15 2019-09-26 21:07:23 t 1 2 104765 422 0.00 2019-09-26 21:02:39 2019-09-26 21:12:15 t 1 1 104768 479 0.00 2019-09-26 21:15:19 2019-09-26 21:17:07 t 1 1 104771 306 0.00 2019-09-26 21:16:45 2019-09-26 21:25:50 t 1 1 104772 220 0.00 2019-09-26 19:41:47 2019-09-26 21:35:14 t 1 2 104773 451 0.00 2019-09-26 21:32:55 2019-09-26 21:37:58 t 1 1 104774 430 0.00 2019-09-26 21:35:10 2019-09-26 21:39:59 t 1 1 104777 306 0.00 2019-09-26 21:27:28 2019-09-26 21:52:33 t 1 1 104779 472 0.00 2019-09-26 21:47:05 2019-09-26 21:53:57 t 1 1 104784 472 0.00 2019-09-26 21:56:44 2019-09-26 21:57:06 t 1 1 104785 449 0.00 2019-09-26 21:51:04 2019-09-26 21:58:34 t 1 1 104788 472 0.00 2019-09-26 22:00:45 2019-09-26 22:01:07 t 1 1 104789 472 0.00 2019-09-26 22:01:18 2019-09-26 22:01:40 t 1 1 104790 472 0.00 2019-09-26 22:02:37 2019-09-26 22:02:54 t 1 1 104792 472 0.00 2019-09-26 22:05:34 2019-09-26 22:05:43 t 1 1 104794 490 0.00 2019-09-26 22:04:38 2019-09-26 22:10:33 t 1 1 104802 379 0.00 2019-09-26 22:11:45 2019-09-26 22:23:37 t 1 1 104804 472 0.00 2019-09-26 22:24:11 2019-09-26 22:26:10 t 1 1 104807 472 0.00 2019-09-26 22:26:49 2019-09-26 22:27:12 t 1 1 104808 472 0.00 2019-09-26 22:27:22 2019-09-26 22:27:48 t 1 1 104809 472 0.00 2019-09-26 22:27:59 2019-09-26 22:28:21 t 1 1 104815 472 0.00 2019-09-26 22:36:21 2019-09-26 22:36:28 t 1 1 104817 472 0.00 2019-09-26 22:37:27 2019-09-26 22:38:45 t 1 1 104819 451 0.00 2019-09-26 22:36:58 2019-09-26 22:40:32 t 1 1 104821 361 0.00 2019-09-26 22:11:13 2019-09-26 22:41:07 t 1 2 104822 445 0.00 2019-09-26 22:40:44 2019-09-26 22:42:21 t 1 1 104823 490 0.00 2019-09-26 22:29:55 2019-09-26 22:43:49 t 1 1 104825 468 0.00 2019-09-26 22:45:58 2019-09-26 22:47:59 t 1 1 104826 461 0.00 2019-09-26 21:44:48 2019-09-26 22:51:35 t 1 2 104827 481 0.00 2019-09-26 22:39:39 2019-09-26 22:53:32 t 1 1 104832 220 0.00 2019-09-26 21:46:35 2019-09-26 23:01:41 t 1 1 104833 220 0.00 2019-09-26 23:01:41 2019-09-26 23:02:16 t 1 1 104835 481 0.00 2019-09-26 23:00:36 2019-09-26 23:02:52 t 1 1 104838 220 0.00 2019-09-26 23:03:24 2019-09-26 23:03:58 t 1 1 104840 220 0.00 2019-09-26 23:04:33 2019-09-26 23:05:08 t 1 1 104842 247 0.00 2019-09-26 23:04:22 2019-09-26 23:05:58 t 1 2 104848 220 0.00 2019-09-26 23:08:29 2019-09-26 23:09:04 t 1 1 104849 220 0.00 2019-09-26 23:09:04 2019-09-26 23:09:38 t 1 1 104851 220 0.00 2019-09-26 23:10:19 2019-09-26 23:10:54 t 1 1 104857 220 0.00 2019-09-26 23:12:45 2019-09-26 23:13:19 t 1 1 104860 220 0.00 2019-09-26 23:15:49 2019-09-26 23:15:56 t 1 1 104861 220 0.00 2019-09-26 23:15:56 2019-09-26 23:16:30 t 1 1 104869 445 0.00 2019-09-26 22:43:01 2019-09-26 23:19:28 t 1 1 104870 220 0.00 2019-09-26 23:19:01 2019-09-26 23:19:44 t 1 1 104874 445 0.00 2019-09-26 23:19:31 2019-09-26 23:21:41 t 1 1 104876 220 0.00 2019-09-26 23:21:08 2019-09-26 23:22:21 t 1 1 104882 220 0.00 2019-09-26 23:26:51 2019-09-26 23:27:58 t 1 1 104886 220 0.00 2019-09-26 23:30:00 2019-09-26 23:30:39 t 1 1 104891 220 0.00 2019-09-26 23:33:13 2019-09-26 23:34:30 t 1 1 104898 220 0.00 2019-09-26 23:39:34 2019-09-26 23:42:23 t 1 1 104900 220 0.00 2019-09-26 23:42:23 2019-09-26 23:43:01 t 1 1 104903 331 0.00 2019-09-26 23:44:58 2019-09-26 23:46:43 t 1 1 104904 220 0.00 2019-09-26 23:46:40 2019-09-26 23:47:14 t 1 1 104906 220 0.00 2019-09-26 23:47:14 2019-09-26 23:47:59 t 1 1 104907 479 0.00 2019-09-26 21:17:07 2019-09-26 23:48:47 t 1 1 104915 479 0.00 2019-09-26 23:48:47 2019-09-27 00:01:34 t 1 1 104918 479 0.00 2019-09-27 00:01:34 2019-09-27 00:12:50 t 1 1 104919 395 0.00 2019-09-27 00:17:13 2019-09-27 00:18:19 t 1 2 104922 395 0.00 2019-09-27 00:22:00 2019-09-27 00:23:03 t 1 2 104924 479 0.00 2019-09-27 00:12:50 2019-09-27 00:23:18 t 1 1 104929 327 0.00 2019-09-27 00:26:33 2019-09-27 00:26:48 t 1 1 104931 395 0.00 2019-09-27 00:29:59 2019-09-27 00:31:04 t 1 2 104935 327 0.00 2019-09-27 00:33:07 2019-09-27 00:34:26 t 1 1 104944 395 0.00 2019-09-27 00:43:17 2019-09-27 00:44:16 t 1 2 104947 395 0.00 2019-09-27 00:46:33 2019-09-27 00:47:36 t 1 2 104948 395 0.00 2019-09-27 00:47:50 2019-09-27 00:48:57 t 1 2 104958 501 0.00 2019-09-27 00:53:34 2019-09-27 01:00:32 t 1 1 104959 501 0.00 2019-09-27 01:01:20 2019-09-27 01:01:29 t 1 1 104961 501 0.00 2019-09-27 01:02:35 2019-09-27 01:02:36 t 1 1 104964 395 0.00 2019-09-27 01:04:43 2019-09-27 01:05:46 t 1 2 104754 498 0.00 2019-09-26 20:49:06 2019-09-26 20:49:06 f 1 2 104755 422 0.00 2019-09-26 19:19:16 2019-09-26 20:49:26 t 1 1 104760 247 0.00 2019-09-26 20:59:56 2019-09-26 21:01:23 t 1 2 104762 420 0.00 2019-09-26 19:44:04 2019-09-26 21:08:16 t 1 1 104763 220 0.00 2019-09-26 18:49:48 2019-09-26 21:09:10 t 1 1 104770 247 0.00 2019-09-26 21:22:47 2019-09-26 21:23:58 t 1 2 104775 470 0.00 2019-09-26 20:58:11 2019-09-26 21:43:11 t 1 1 104780 472 0.00 2019-09-26 21:54:06 2019-09-26 21:54:09 t 1 1 104781 472 0.00 2019-09-26 21:54:21 2019-09-26 21:55:28 t 1 1 104786 420 0.00 2019-09-26 21:08:20 2019-09-26 21:59:26 t 1 1 104793 472 0.00 2019-09-26 22:06:28 2019-09-26 22:06:45 t 1 1 104795 472 0.00 2019-09-26 22:10:45 2019-09-26 22:10:52 t 1 1 104796 379 0.00 2019-09-26 22:05:44 2019-09-26 22:11:45 t 1 1 104801 412 0.00 2019-09-26 21:54:38 2019-09-26 22:21:12 t 1 1 104803 306 0.00 2019-09-26 22:22:30 2019-09-26 22:24:06 t 1 1 104805 472 0.00 2019-09-26 22:26:10 2019-09-26 22:26:40 t 1 1 104806 296 0.00 2019-09-26 21:06:41 2019-09-26 22:27:04 t 1 2 104810 472 0.00 2019-09-26 22:28:33 2019-09-26 22:28:55 t 1 1 104812 472 0.00 2019-09-26 22:31:16 2019-09-26 22:32:34 t 1 1 104814 432 0.00 2019-09-26 22:22:17 2019-09-26 22:33:11 t 1 1 104818 481 0.00 2019-09-26 20:34:18 2019-09-26 22:39:39 t 1 1 104824 420 0.00 2019-09-26 21:59:31 2019-09-26 22:47:35 t 1 1 104828 395 0.00 2019-09-26 22:04:15 2019-09-26 22:53:46 t 1 2 104831 481 0.00 2019-09-26 22:53:32 2019-09-26 23:00:36 t 1 1 104834 220 0.00 2019-09-26 23:02:15 2019-09-26 23:02:49 t 1 1 104836 490 0.00 2019-09-26 22:54:57 2019-09-26 23:03:18 t 1 1 104843 220 0.00 2019-09-26 23:05:39 2019-09-26 23:06:14 t 1 1 104844 220 0.00 2019-09-26 23:06:14 2019-09-26 23:06:46 t 1 1 104845 220 0.00 2019-09-26 23:06:45 2019-09-26 23:07:21 t 1 1 104853 432 0.00 2019-09-26 23:01:37 2019-09-26 23:11:51 t 1 1 104856 212 0.00 2019-09-26 23:11:05 2019-09-26 23:12:47 t 1 2 104858 220 0.00 2019-09-26 23:13:18 2019-09-26 23:15:21 t 1 1 104862 220 0.00 2019-09-26 23:16:30 2019-09-26 23:16:39 t 1 1 104865 220 0.00 2019-09-26 23:17:15 2019-09-26 23:17:38 t 1 1 104866 220 0.00 2019-09-26 23:17:38 2019-09-26 23:17:51 t 1 1 104867 220 0.00 2019-09-26 23:17:50 2019-09-26 23:18:31 t 1 1 104872 212 0.00 2019-09-26 23:12:53 2019-09-26 23:20:43 t 1 2 104875 220 0.00 2019-09-26 23:05:57 2019-09-26 23:22:10 t 1 1 104878 220 0.00 2019-09-26 23:22:21 2019-09-26 23:25:16 t 1 1 104887 220 0.00 2019-09-26 23:30:39 2019-09-26 23:30:48 t 1 1 104888 220 0.00 2019-09-26 23:30:47 2019-09-26 23:31:26 t 1 1 104889 220 0.00 2019-09-26 23:31:25 2019-09-26 23:32:38 t 1 1 104890 220 0.00 2019-09-26 23:32:37 2019-09-26 23:33:13 t 1 1 104892 220 0.00 2019-09-26 23:34:30 2019-09-26 23:35:04 t 1 1 104893 220 0.00 2019-09-26 23:35:05 2019-09-26 23:37:26 t 1 1 104894 220 0.00 2019-09-26 23:35:04 2019-09-26 23:38:59 t 1 1 104895 220 0.00 2019-09-26 23:38:58 2019-09-26 23:39:34 t 1 1 104896 220 0.00 2019-09-26 23:32:58 2019-09-26 23:40:21 t 1 2 104902 220 0.00 2019-09-26 23:43:00 2019-09-26 23:46:40 t 1 1 104908 395 0.00 2019-09-26 23:48:04 2019-09-26 23:49:07 t 1 2 104909 395 0.00 2019-09-26 23:50:27 2019-09-26 23:51:32 t 1 2 104912 220 0.00 2019-09-26 23:47:58 2019-09-26 23:57:46 t 1 1 104913 220 0.00 2019-09-26 23:57:46 2019-09-26 23:58:18 t 1 1 104914 220 0.00 2019-09-26 23:58:52 2019-09-27 00:00:26 t 1 1 104920 220 0.00 2019-09-26 23:58:17 2019-09-27 00:19:47 t 1 1 104921 327 0.00 2019-09-27 00:15:50 2019-09-27 00:22:19 t 1 1 104925 327 0.00 2019-09-27 00:23:38 2019-09-27 00:23:40 t 1 1 104927 395 0.00 2019-09-27 00:23:23 2019-09-27 00:24:26 t 1 2 104930 327 0.00 2019-09-27 00:27:00 2019-09-27 00:29:26 t 1 1 104932 395 0.00 2019-09-27 00:31:40 2019-09-27 00:32:45 t 1 2 104933 327 0.00 2019-09-27 00:32:05 2019-09-27 00:33:08 t 1 1 104936 479 0.00 2019-09-27 00:23:18 2019-09-27 00:35:33 t 1 1 104938 327 0.00 2019-09-27 00:34:52 2019-09-27 00:35:56 t 1 1 104940 395 0.00 2019-09-27 00:38:24 2019-09-27 00:39:19 t 1 2 104941 424 0.00 2019-09-27 00:38:59 2019-09-27 00:40:56 t 1 2 104942 479 0.00 2019-09-27 00:35:33 2019-09-27 00:41:25 t 1 1 104943 395 0.00 2019-09-27 00:41:19 2019-09-27 00:42:22 t 1 2 104945 432 0.00 2019-09-26 23:30:07 2019-09-27 00:44:45 t 1 1 104946 395 0.00 2019-09-27 00:44:29 2019-09-27 00:45:31 t 1 2 104949 395 0.00 2019-09-27 00:49:16 2019-09-27 00:50:19 t 1 2 104950 395 0.00 2019-09-27 00:50:40 2019-09-27 00:51:45 t 1 2 104953 395 0.00 2019-09-27 00:53:48 2019-09-27 00:53:49 t 1 2 104954 395 0.00 2019-09-27 00:53:58 2019-09-27 00:55:02 t 1 2 104955 449 0.00 2019-09-27 00:52:06 2019-09-27 00:55:22 t 1 1 104957 449 0.00 2019-09-27 00:55:22 2019-09-27 00:58:57 t 1 1 104962 395 0.00 2019-09-27 01:01:53 2019-09-27 01:02:56 t 1 2 104963 501 0.00 2019-09-27 01:02:42 2019-09-27 01:05:27 t 1 1 104967 501 0.00 2019-09-27 01:07:31 2019-09-27 01:08:32 t 1 1 104968 501 0.00 2019-09-27 01:09:10 2019-09-27 01:09:40 t 1 1 104969 479 0.00 2019-09-27 00:52:25 2019-09-27 01:10:29 t 1 1 104970 501 0.00 2019-09-27 01:10:34 2019-09-27 01:10:43 t 1 1 104973 501 0.00 2019-09-27 01:14:45 2019-09-27 01:15:18 t 1 1 104978 501 0.00 2019-09-27 01:19:32 2019-09-27 01:19:47 t 1 1 104982 479 0.00 2019-09-27 01:10:29 2019-09-27 01:26:15 t 1 1 104987 479 0.00 2019-09-27 01:26:15 2019-09-27 01:29:26 t 1 1 104990 490 0.00 2019-09-27 01:24:15 2019-09-27 01:33:52 t 1 1 104991 490 0.00 2019-09-27 01:33:52 2019-09-27 01:44:36 t 1 1 104993 488 0.00 2019-09-27 01:45:06 2019-09-27 01:48:05 t 1 1 104994 470 0.00 2019-09-27 16:52:41 2019-09-27 16:56:32 t 1 1 104998 464 0.00 2019-09-27 17:11:54 2019-09-27 17:15:13 t 1 1 105003 220 0.00 2019-09-27 17:38:45 2019-09-27 17:38:53 t 1 1 105005 220 0.00 2019-09-27 17:49:14 2019-09-27 17:49:23 t 1 1 105007 311 0.00 2019-09-27 16:58:54 2019-09-27 17:55:14 t 1 2 105008 485 0.00 2019-09-27 17:50:34 2019-09-27 17:57:38 t 1 1 105014 470 0.00 2019-09-27 18:04:47 2019-09-27 18:06:03 t 1 1 105015 220 0.00 2019-09-27 18:10:48 2019-09-27 18:11:03 t 1 1 105017 220 0.00 2019-09-27 18:08:36 2019-09-27 18:15:54 t 1 1 105021 220 0.00 2019-09-27 18:00:40 2019-09-27 18:28:01 t 1 2 105030 501 0.00 2019-09-27 18:38:02 2019-09-27 18:43:05 t 1 1 105033 220 0.00 2019-09-27 16:53:09 2019-09-27 18:46:10 t 1 2 105035 400 0.00 2019-09-27 18:47:03 2019-09-27 18:50:48 t 1 1 105038 400 0.00 2019-09-27 19:17:42 2019-09-27 19:19:41 t 1 1 105050 424 0.00 2019-09-27 19:29:51 2019-09-27 20:17:46 t 1 2 105055 464 0.00 2019-09-27 20:22:38 2019-09-27 20:30:45 t 1 1 105057 464 0.00 2019-09-27 20:30:49 2019-09-27 20:32:26 t 1 1 105058 422 0.00 2019-09-27 20:26:55 2019-09-27 20:36:35 t 1 1 105059 430 0.00 2019-09-27 20:26:00 2019-09-27 20:40:38 t 1 1 104965 220 0.00 2019-09-27 00:52:45 2019-09-27 01:06:33 t 1 1 104972 501 0.00 2019-09-27 01:13:45 2019-09-27 01:13:54 t 1 1 104977 501 0.00 2019-09-27 01:18:12 2019-09-27 01:19:17 t 1 1 104979 501 0.00 2019-09-27 01:20:49 2019-09-27 01:20:51 t 1 1 104981 501 0.00 2019-09-27 01:22:50 2019-09-27 01:22:51 t 1 1 104984 501 0.00 2019-09-27 01:26:52 2019-09-27 01:26:54 t 1 1 104985 501 0.00 2019-09-27 01:27:00 2019-09-27 01:27:48 t 1 1 104986 501 0.00 2019-09-27 01:28:52 2019-09-27 01:29:01 t 1 1 104992 488 0.00 2019-09-27 01:42:33 2019-09-27 01:45:06 t 1 1 104995 220 0.00 2019-09-27 16:56:32 2019-09-27 16:57:15 t 1 1 105002 220 0.00 2019-09-27 17:38:30 2019-09-27 17:38:38 t 1 1 105004 501 0.00 2019-09-27 17:41:17 2019-09-27 17:41:58 t 1 1 105006 501 0.00 2019-09-27 17:42:04 2019-09-27 17:55:14 t 1 1 105009 220 0.00 2019-09-27 17:59:42 2019-09-27 17:59:50 t 1 1 105011 220 0.00 2019-09-27 18:00:15 2019-09-27 18:00:17 t 1 1 105013 470 0.00 2019-09-27 18:03:04 2019-09-27 18:04:18 t 1 1 105018 296 0.00 2019-09-27 18:15:09 2019-09-27 18:18:21 t 1 2 105019 220 0.00 2019-09-27 18:21:37 2019-09-27 18:21:47 t 1 1 105020 220 0.00 2019-09-27 18:21:57 2019-09-27 18:21:58 t 1 1 105028 398 0.00 2019-09-27 18:40:47 2019-09-27 18:40:47 f 1 2 105029 400 0.00 2019-09-27 18:40:37 2019-09-27 18:42:55 t 1 1 105032 220 0.00 2019-09-27 18:43:25 2019-09-27 18:43:26 t 1 1 105036 501 0.00 2019-09-27 18:49:12 2019-09-27 18:57:04 t 1 1 105039 490 0.00 2019-09-27 19:33:32 2019-09-27 19:35:34 t 1 1 105040 490 0.00 2019-09-27 19:35:34 2019-09-27 19:37:36 t 1 1 105041 449 0.00 2019-09-27 19:49:49 2019-09-27 19:53:30 t 1 1 105043 464 0.00 2019-09-27 20:02:54 2019-09-27 20:05:16 t 1 1 105044 464 0.00 2019-09-27 20:05:16 2019-09-27 20:05:45 t 1 1 105046 247 0.00 2019-09-27 20:03:52 2019-09-27 20:05:58 t 1 2 105047 490 0.00 2019-09-27 20:09:15 2019-09-27 20:11:57 t 1 1 105048 379 0.00 2019-09-27 20:11:57 2019-09-27 20:12:20 t 1 1 105052 485 0.00 2019-09-27 20:17:15 2019-09-27 20:18:21 t 1 1 105054 422 0.00 2019-09-27 20:18:01 2019-09-27 20:26:55 t 1 1 105056 247 0.00 2019-09-27 20:30:13 2019-09-27 20:30:47 t 1 2 105061 220 0.00 2019-09-27 19:32:47 2019-09-27 20:41:04 t 1 2 105063 430 0.00 2019-09-27 20:40:38 2019-09-27 20:45:48 t 1 1 105064 468 0.00 2019-09-27 20:31:54 2019-09-27 20:46:48 t 1 1 105065 430 0.00 2019-09-27 20:45:48 2019-09-27 20:48:44 t 1 1 105074 327 0.00 2019-09-27 20:45:02 2019-09-27 21:01:52 t 1 1 105076 379 0.00 2019-09-27 21:01:52 2019-09-27 21:03:49 t 1 1 105078 451 0.00 2019-09-27 21:00:17 2019-09-27 21:07:54 t 1 1 105082 327 0.00 2019-09-27 21:15:01 2019-09-27 21:15:34 t 1 1 105084 430 0.00 2019-09-27 21:03:23 2019-09-27 21:16:32 t 1 1 105085 470 0.00 2019-09-27 21:06:05 2019-09-27 21:21:27 t 1 1 105089 379 0.00 2019-09-27 21:21:27 2019-09-27 21:31:10 t 1 1 105090 325 0.00 2019-09-27 19:55:56 2019-09-27 21:36:02 t 1 2 105091 327 0.00 2019-09-27 21:36:00 2019-09-27 21:37:03 t 1 1 105097 311 0.00 2019-09-27 21:23:46 2019-09-27 21:50:10 t 1 2 105100 461 0.00 2019-09-27 21:55:03 2019-09-27 21:55:47 t 1 2 105102 327 0.00 2019-09-27 21:59:30 2019-09-27 22:00:04 t 1 1 105103 327 0.00 2019-09-27 22:01:03 2019-09-27 22:01:04 t 1 1 105104 481 0.00 2019-09-27 21:45:54 2019-09-27 22:01:59 t 1 1 105108 220 0.00 2019-09-27 22:04:09 2019-09-27 22:05:00 t 1 1 105114 220 0.00 2019-09-27 22:07:41 2019-09-27 22:13:41 t 1 1 105115 470 0.00 2019-09-27 21:36:33 2019-09-27 22:15:23 t 1 1 105121 422 0.00 2019-09-27 21:22:37 2019-09-27 22:20:56 t 1 1 105122 331 0.00 2019-09-27 22:19:26 2019-09-27 22:21:04 t 1 1 105124 379 0.00 2019-09-27 22:20:41 2019-09-27 22:22:30 t 1 1 105126 327 0.00 2019-09-27 22:25:29 2019-09-27 22:26:01 t 1 1 105127 474 0.00 2019-09-27 22:26:44 2019-09-27 22:35:41 t 1 1 105130 327 0.00 2019-09-27 22:36:01 2019-09-27 22:36:41 t 1 1 105134 292 0.00 2019-09-27 22:43:00 2019-09-27 22:44:03 t 1 2 105137 292 0.00 2019-09-27 22:49:49 2019-09-27 22:50:51 t 1 2 105140 485 0.00 2019-09-27 22:42:04 2019-09-27 22:54:06 t 1 1 105141 451 0.00 2019-09-27 22:47:05 2019-09-27 22:57:47 t 1 1 105147 481 0.00 2019-09-27 22:59:36 2019-09-27 23:04:52 t 1 1 105155 220 0.00 2019-09-27 23:13:16 2019-09-27 23:18:39 t 1 2 105161 468 0.00 2019-09-27 23:17:23 2019-09-27 23:32:02 t 1 1 105168 412 0.00 2019-09-27 23:26:56 2019-09-27 23:49:53 t 1 1 105170 474 0.00 2019-09-27 23:51:11 2019-09-27 23:59:09 t 1 1 105171 412 0.00 2019-09-27 23:59:09 2019-09-28 00:01:37 t 1 1 105173 501 0.00 2019-09-27 23:12:46 2019-09-28 00:10:55 t 1 1 105179 468 0.00 2019-09-28 00:17:41 2019-09-28 00:20:06 t 1 1 105181 412 0.00 2019-09-28 00:19:58 2019-09-28 00:26:40 t 1 1 105185 474 0.00 2019-09-28 00:20:14 2019-09-28 00:38:20 t 1 1 105186 501 0.00 2019-09-28 00:10:55 2019-09-28 00:41:22 t 1 1 105187 461 0.00 2019-09-28 00:26:40 2019-09-28 00:46:46 t 1 2 105188 468 0.00 2019-09-28 00:44:58 2019-09-28 00:57:23 t 1 1 105190 503 0.00 2019-09-28 00:48:00 2019-09-28 01:12:23 t 1 1 105191 487 0.00 2019-09-28 00:38:28 2019-09-28 01:13:34 t 1 2 105192 501 0.00 2019-09-28 01:07:11 2019-09-28 01:14:53 t 1 1 105199 412 0.00 2019-09-28 03:00:07 2019-09-28 04:01:32 t 1 1 105201 412 0.00 2019-09-28 04:51:07 2019-09-28 05:07:10 t 1 1 105206 420 0.00 2019-09-28 06:03:16 2019-09-28 06:18:06 t 1 1 105207 420 0.00 2019-09-28 06:25:32 2019-09-28 06:28:30 t 1 1 105209 456 0.00 2019-09-28 06:29:43 2019-09-28 06:35:52 t 1 1 105211 420 0.00 2019-09-28 06:38:15 2019-09-28 06:40:46 t 1 1 105215 474 0.00 2019-09-28 07:10:57 2019-09-28 07:32:57 t 1 1 105217 474 0.00 2019-09-28 07:33:02 2019-09-28 07:37:13 t 1 1 105219 306 0.00 2019-09-28 07:43:19 2019-09-28 07:58:06 t 1 1 105221 464 0.00 2019-09-28 07:57:38 2019-09-28 08:03:17 t 1 1 105222 327 0.00 2019-09-28 08:11:22 2019-09-28 08:13:10 t 1 1 105223 412 0.00 2019-09-28 07:45:31 2019-09-28 08:24:02 t 1 1 105225 481 0.00 2019-09-28 08:11:39 2019-09-28 08:31:03 t 1 1 105226 481 0.00 2019-09-28 08:31:03 2019-09-28 08:34:44 t 1 1 105228 327 0.00 2019-09-28 08:21:43 2019-09-28 08:48:03 t 1 1 105230 306 0.00 2019-09-28 08:48:23 2019-09-28 08:55:31 t 1 1 105231 481 0.00 2019-09-28 08:34:44 2019-09-28 08:57:15 t 1 1 105232 428 0.00 2019-09-28 08:35:47 2019-09-28 08:58:03 t 1 1 105234 428 0.00 2019-09-28 08:58:48 2019-09-28 09:11:25 t 1 1 105235 481 0.00 2019-09-28 09:00:52 2019-09-28 09:19:45 t 1 1 105239 430 0.00 2019-09-28 09:21:01 2019-09-28 09:23:35 t 1 1 105240 430 0.00 2019-09-28 09:24:32 2019-09-28 09:26:02 t 1 1 105243 470 0.00 2019-09-28 08:53:10 2019-09-28 09:41:02 t 1 1 105254 470 0.00 2019-09-28 09:54:30 2019-09-28 10:10:52 t 1 1 105257 296 0.00 2019-09-28 10:08:52 2019-09-28 10:25:29 t 1 2 105259 292 0.00 2019-09-28 10:35:15 2019-09-28 10:35:18 t 1 2 104983 501 0.00 2019-09-27 01:25:26 2019-09-27 01:26:30 t 1 1 104988 501 0.00 2019-09-27 01:29:53 2019-09-27 01:29:55 t 1 1 104989 488 0.00 2019-09-27 01:18:28 2019-09-27 01:31:13 t 1 1 104996 311 0.00 2019-09-27 16:57:11 2019-09-27 16:59:34 t 1 2 104997 220 0.00 2019-09-27 17:07:13 2019-09-27 17:07:14 t 1 1 104999 464 0.00 2019-09-27 17:14:28 2019-09-27 17:16:03 t 1 1 105000 220 0.00 2019-09-27 17:17:34 2019-09-27 17:17:43 t 1 1 105001 220 0.00 2019-09-27 17:28:02 2019-09-27 17:28:10 t 1 1 105010 220 0.00 2019-09-27 17:59:58 2019-09-27 18:00:06 t 1 1 105012 220 0.00 2019-09-27 18:00:24 2019-09-27 18:01:25 t 1 1 105016 220 0.00 2019-09-27 18:11:12 2019-09-27 18:11:13 t 1 1 105022 424 0.00 2019-09-27 18:30:57 2019-09-27 18:32:02 t 1 2 105023 220 0.00 2019-09-27 18:32:21 2019-09-27 18:32:32 t 1 1 105024 220 0.00 2019-09-27 18:32:42 2019-09-27 18:35:03 t 1 1 105025 485 0.00 2019-09-27 18:32:25 2019-09-27 18:37:08 t 1 1 105026 501 0.00 2019-09-27 17:55:14 2019-09-27 18:38:02 t 1 1 105027 485 0.00 2019-09-27 18:37:40 2019-09-27 18:39:04 t 1 1 105031 220 0.00 2019-09-27 18:43:05 2019-09-27 18:43:15 t 1 1 105034 468 0.00 2019-09-27 18:29:45 2019-09-27 18:50:27 t 1 1 105037 468 0.00 2019-09-27 18:51:39 2019-09-27 19:17:24 t 1 1 105042 449 0.00 2019-09-27 19:53:30 2019-09-27 20:01:51 t 1 1 105045 464 0.00 2019-09-27 20:05:45 2019-09-27 20:05:48 t 1 1 105049 485 0.00 2019-09-27 20:12:30 2019-09-27 20:17:16 t 1 1 105051 422 0.00 2019-09-27 20:10:32 2019-09-27 20:18:01 t 1 1 105053 464 0.00 2019-09-27 20:19:51 2019-09-27 20:22:18 t 1 1 105060 470 0.00 2019-09-27 20:36:56 2019-09-27 20:40:38 t 1 1 105062 422 0.00 2019-09-27 20:36:35 2019-09-27 20:45:07 t 1 1 105067 470 0.00 2019-09-27 20:39:47 2019-09-27 20:51:45 t 1 1 105068 422 0.00 2019-09-27 20:45:07 2019-09-27 20:52:40 t 1 1 105069 311 0.00 2019-09-27 20:48:38 2019-09-27 20:53:01 t 1 2 105071 470 0.00 2019-09-27 20:52:13 2019-09-27 20:58:18 t 1 1 105072 451 0.00 2019-09-27 20:51:27 2019-09-27 21:00:17 t 1 1 105075 430 0.00 2019-09-27 20:48:44 2019-09-27 21:03:23 t 1 1 105079 498 0.00 2019-09-27 20:13:59 2019-09-27 21:11:15 t 1 2 105080 464 0.00 2019-09-27 21:13:47 2019-09-27 21:14:14 t 1 1 105083 468 0.00 2019-09-27 21:11:56 2019-09-27 21:15:46 t 1 1 105088 481 0.00 2019-09-27 20:59:42 2019-09-27 21:27:39 t 1 1 105095 327 0.00 2019-09-27 21:46:58 2019-09-27 21:47:41 t 1 1 105096 451 0.00 2019-09-27 21:40:51 2019-09-27 21:49:12 t 1 1 105106 327 0.00 2019-09-27 22:01:11 2019-09-27 22:03:04 t 1 1 105111 420 0.00 2019-09-27 21:33:57 2019-09-27 22:07:09 t 1 1 105112 220 0.00 2019-09-27 22:06:46 2019-09-27 22:07:41 t 1 1 105116 327 0.00 2019-09-27 22:14:47 2019-09-27 22:15:32 t 1 1 105117 470 0.00 2019-09-27 22:15:23 2019-09-27 22:16:22 t 1 1 105119 470 0.00 2019-09-27 22:16:21 2019-09-27 22:19:45 t 1 1 105120 430 0.00 2019-09-27 21:57:08 2019-09-27 22:20:17 t 1 1 105123 420 0.00 2019-09-27 22:11:45 2019-09-27 22:21:14 t 1 1 105125 424 0.00 2019-09-27 21:00:37 2019-09-27 22:23:59 t 1 2 105128 470 0.00 2019-09-27 22:22:35 2019-09-27 22:36:14 t 1 1 105132 422 0.00 2019-09-27 22:20:56 2019-09-27 22:41:16 t 1 1 105133 485 0.00 2019-09-27 22:32:14 2019-09-27 22:42:04 t 1 1 105135 327 0.00 2019-09-27 22:46:37 2019-09-27 22:47:10 t 1 1 105138 395 0.00 2019-09-27 21:58:54 2019-09-27 22:52:18 t 1 2 105139 292 0.00 2019-09-27 22:52:28 2019-09-27 22:53:34 t 1 2 105142 306 0.00 2019-09-27 22:51:13 2019-09-27 22:57:48 t 1 1 105143 470 0.00 2019-09-27 22:36:00 2019-09-27 22:59:36 t 1 1 105146 327 0.00 2019-09-27 22:57:06 2019-09-27 23:04:30 t 1 1 105148 400 0.00 2019-09-27 23:05:24 2019-09-27 23:05:24 f 1 1 105150 412 0.00 2019-09-27 21:55:33 2019-09-27 23:08:43 t 1 1 105152 220 0.00 2019-09-27 21:57:01 2019-09-27 23:13:24 t 1 2 105154 468 0.00 2019-09-27 23:12:12 2019-09-27 23:15:17 t 1 1 105157 470 0.00 2019-09-27 23:08:47 2019-09-27 23:20:29 t 1 1 105159 412 0.00 2019-09-27 23:20:16 2019-09-27 23:23:29 t 1 1 105160 412 0.00 2019-09-27 23:25:43 2019-09-27 23:26:55 t 1 1 105162 220 0.00 2019-09-27 23:19:57 2019-09-27 23:32:07 t 1 1 105164 220 0.00 2019-09-27 23:34:31 2019-09-27 23:40:13 t 1 1 105167 220 0.00 2019-09-27 23:41:03 2019-09-27 23:46:32 t 1 1 105169 220 0.00 2019-09-27 23:45:35 2019-09-27 23:52:28 t 1 1 105172 412 0.00 2019-09-28 00:03:51 2019-09-28 00:05:42 t 1 1 105177 474 0.00 2019-09-28 00:15:39 2019-09-28 00:17:41 t 1 1 105180 422 0.00 2019-09-27 23:20:31 2019-09-28 00:22:50 t 1 1 105184 220 0.00 2019-09-28 00:22:50 2019-09-28 00:37:47 t 1 1 105189 501 0.00 2019-09-28 00:41:22 2019-09-28 01:07:11 t 1 1 105193 503 0.00 2019-09-28 01:12:23 2019-09-28 01:19:20 t 1 1 105194 424 0.00 2019-09-27 23:31:42 2019-09-28 01:20:06 t 1 2 105196 470 0.00 2019-09-28 00:29:06 2019-09-28 01:41:54 t 1 1 105197 412 0.00 2019-09-28 02:45:24 2019-09-28 02:51:53 t 1 1 105200 412 0.00 2019-09-28 04:01:32 2019-09-28 04:51:07 t 1 1 105202 464 0.00 2019-09-28 05:07:10 2019-09-28 05:07:45 t 1 1 105203 311 0.00 2019-09-28 05:02:56 2019-09-28 05:16:20 t 1 2 105205 420 0.00 2019-09-28 06:02:23 2019-09-28 06:03:16 t 1 1 105208 220 0.00 2019-09-28 06:02:16 2019-09-28 06:29:36 t 1 1 105210 420 0.00 2019-09-28 06:28:30 2019-09-28 06:38:16 t 1 1 105212 456 0.00 2019-09-28 07:05:26 2019-09-28 07:07:23 t 1 1 105214 400 0.00 2019-09-28 07:28:07 2019-09-28 07:28:07 f 1 1 105227 470 0.00 2019-09-28 07:34:42 2019-09-28 08:43:22 t 1 1 105233 481 0.00 2019-09-28 08:57:15 2019-09-28 09:00:52 t 1 1 105237 306 0.00 2019-09-28 09:16:09 2019-09-28 09:21:08 t 1 1 105238 325 0.00 2019-09-28 09:09:18 2019-09-28 09:23:23 t 1 2 105245 470 0.00 2019-09-28 09:41:09 2019-09-28 09:48:19 t 1 1 105247 470 0.00 2019-09-28 09:52:48 2019-09-28 09:53:34 t 1 1 105248 470 0.00 2019-09-28 09:53:39 2019-09-28 09:54:28 t 1 1 105252 474 0.00 2019-09-28 08:02:48 2019-09-28 10:08:16 t 1 1 105253 474 0.00 2019-09-28 10:08:16 2019-09-28 10:09:42 t 1 1 105256 470 0.00 2019-09-28 10:12:21 2019-09-28 10:19:21 t 1 1 105258 464 0.00 2019-09-28 10:34:14 2019-09-28 10:34:35 t 1 1 105263 464 0.00 2019-09-28 10:48:29 2019-09-28 10:50:48 t 1 1 105264 327 0.00 2019-09-28 08:48:03 2019-09-28 10:53:59 t 1 1 105266 501 0.00 2019-09-28 10:47:01 2019-09-28 10:56:13 t 1 1 105270 445 0.00 2019-09-28 10:44:21 2019-09-28 11:14:12 t 1 1 105272 464 0.00 2019-09-28 11:13:32 2019-09-28 11:14:47 t 1 1 105273 420 0.00 2019-09-28 11:11:43 2019-09-28 11:15:42 t 1 1 105285 422 0.00 2019-09-28 05:51:04 2019-09-28 11:49:34 t 1 1 105292 445 0.00 2019-09-28 11:49:34 2019-09-28 11:55:01 t 1 1 105293 470 0.00 2019-09-28 11:56:53 2019-09-28 11:58:05 t 1 1 105297 470 0.00 2019-09-28 12:04:49 2019-09-28 12:07:30 t 1 1 105300 470 0.00 2019-09-28 12:07:59 2019-09-28 12:10:22 t 1 1 105066 468 0.00 2019-09-27 20:47:58 2019-09-27 20:51:15 t 1 1 105070 422 0.00 2019-09-27 20:52:40 2019-09-27 20:57:57 t 1 1 105073 464 0.00 2019-09-27 20:58:49 2019-09-27 21:01:12 t 1 1 105077 327 0.00 2019-09-27 21:03:56 2019-09-27 21:05:05 t 1 1 105081 451 0.00 2019-09-27 21:10:45 2019-09-27 21:14:39 t 1 1 105086 422 0.00 2019-09-27 20:57:57 2019-09-27 21:22:37 t 1 1 105087 327 0.00 2019-09-27 21:25:30 2019-09-27 21:26:02 t 1 1 105092 451 0.00 2019-09-27 21:29:19 2019-09-27 21:40:51 t 1 1 105093 430 0.00 2019-09-27 21:16:32 2019-09-27 21:41:23 t 1 1 105094 481 0.00 2019-09-27 21:27:39 2019-09-27 21:45:28 t 1 1 105098 247 0.00 2019-09-27 21:49:24 2019-09-27 21:53:07 t 1 2 105099 430 0.00 2019-09-27 21:51:55 2019-09-27 21:55:46 t 1 1 105101 327 0.00 2019-09-27 21:49:38 2019-09-27 21:56:19 t 1 1 105105 327 0.00 2019-09-27 22:01:59 2019-09-27 22:02:27 t 1 1 105107 327 0.00 2019-09-27 22:04:17 2019-09-27 22:04:48 t 1 1 105109 220 0.00 2019-09-27 22:04:52 2019-09-27 22:05:54 t 1 1 105110 220 0.00 2019-09-27 22:05:54 2019-09-27 22:06:47 t 1 1 105113 420 0.00 2019-09-27 22:07:37 2019-09-27 22:11:52 t 1 1 105118 474 0.00 2019-09-27 22:12:31 2019-09-27 22:18:58 t 1 1 105129 220 0.00 2019-09-27 22:26:55 2019-09-27 22:36:15 t 1 1 105131 220 0.00 2019-09-27 22:38:18 2019-09-27 22:40:04 t 1 1 105136 292 0.00 2019-09-27 22:48:29 2019-09-27 22:49:33 t 1 2 105144 422 0.00 2019-09-27 22:41:16 2019-09-27 23:00:36 t 1 1 105145 400 0.00 2019-09-27 23:03:46 2019-09-27 23:03:46 f 1 1 105149 327 0.00 2019-09-27 23:04:37 2019-09-27 23:05:44 t 1 1 105151 412 0.00 2019-09-27 23:08:43 2019-09-27 23:08:47 t 1 1 105153 422 0.00 2019-09-27 23:00:36 2019-09-27 23:13:38 t 1 1 105156 220 0.00 2019-09-27 22:38:38 2019-09-27 23:19:57 t 1 1 105158 422 0.00 2019-09-27 23:13:38 2019-09-27 23:20:31 t 1 1 105163 490 0.00 2019-09-27 23:27:51 2019-09-27 23:34:02 t 1 1 105165 220 0.00 2019-09-27 23:36:07 2019-09-27 23:42:37 t 1 2 105166 468 0.00 2019-09-27 23:33:11 2019-09-27 23:44:25 t 1 1 105174 468 0.00 2019-09-27 23:54:50 2019-09-28 00:13:19 t 1 1 105175 412 0.00 2019-09-28 00:10:53 2019-09-28 00:16:06 t 1 1 105176 412 0.00 2019-09-28 00:16:45 2019-09-28 00:17:26 t 1 1 105178 412 0.00 2019-09-28 00:17:31 2019-09-28 00:19:35 t 1 1 105182 470 0.00 2019-09-27 23:50:46 2019-09-28 00:28:47 t 1 1 105183 220 0.00 2019-09-28 00:28:20 2019-09-28 00:29:07 t 1 1 105195 501 0.00 2019-09-28 01:14:49 2019-09-28 01:23:14 t 1 1 105198 412 0.00 2019-09-28 02:51:53 2019-09-28 03:00:07 t 1 1 105204 311 0.00 2019-09-28 05:33:28 2019-09-28 05:34:51 t 1 2 105213 474 0.00 2019-09-28 07:07:05 2019-09-28 07:10:36 t 1 1 105216 470 0.00 2019-09-28 07:20:47 2019-09-28 07:34:42 t 1 1 105218 430 0.00 2019-09-28 07:29:47 2019-09-28 07:48:24 t 1 1 105220 474 0.00 2019-09-28 07:37:13 2019-09-28 08:02:54 t 1 1 105224 428 0.00 2019-09-28 08:24:02 2019-09-28 08:25:11 t 1 1 105229 470 0.00 2019-09-28 08:52:19 2019-09-28 08:53:06 t 1 1 105236 430 0.00 2019-09-28 09:14:58 2019-09-28 09:20:38 t 1 1 105241 481 0.00 2019-09-28 09:19:45 2019-09-28 09:29:04 t 1 1 105242 430 0.00 2019-09-28 09:39:45 2019-09-28 09:40:19 t 1 1 105244 306 0.00 2019-09-28 09:21:08 2019-09-28 09:43:50 t 1 1 105246 470 0.00 2019-09-28 09:48:23 2019-09-28 09:52:43 t 1 1 105249 490 0.00 2019-09-28 09:53:14 2019-09-28 09:54:44 t 1 1 105250 379 0.00 2019-09-28 07:34:44 2019-09-28 09:55:50 t 1 1 105251 306 0.00 2019-09-28 09:50:39 2019-09-28 10:04:30 t 1 1 105255 470 0.00 2019-09-28 10:11:15 2019-09-28 10:12:17 t 1 1 105262 481 0.00 2019-09-28 09:29:04 2019-09-28 10:45:42 t 1 1 105265 428 0.00 2019-09-28 10:40:56 2019-09-28 10:54:50 t 1 1 105267 220 0.00 2019-09-28 10:53:19 2019-09-28 10:57:48 t 1 1 105269 327 0.00 2019-09-28 10:53:59 2019-09-28 11:09:54 t 1 1 105274 445 0.00 2019-09-28 11:14:12 2019-09-28 11:18:32 t 1 1 105276 474 0.00 2019-09-28 11:19:58 2019-09-28 11:20:21 t 1 1 105280 470 0.00 2019-09-28 11:30:48 2019-09-28 11:38:09 t 1 1 105286 445 0.00 2019-09-28 11:18:32 2019-09-28 11:50:02 t 1 1 105289 331 0.00 2019-09-28 11:34:30 2019-09-28 11:52:04 t 1 1 105290 420 0.00 2019-09-28 11:51:44 2019-09-28 11:52:37 t 1 1 105291 420 0.00 2019-09-28 11:52:36 2019-09-28 11:53:37 t 1 1 105295 470 0.00 2019-09-28 12:01:27 2019-09-28 12:04:43 t 1 1 105296 331 0.00 2019-09-28 11:52:05 2019-09-28 12:07:11 t 1 1 105299 420 0.00 2019-09-28 11:52:49 2019-09-28 12:10:08 t 1 1 105301 470 0.00 2019-09-28 12:10:24 2019-09-28 12:11:10 t 1 1 105304 470 0.00 2019-09-28 12:11:19 2019-09-28 12:12:50 t 1 1 105305 331 0.00 2019-09-28 12:08:43 2019-09-28 12:13:22 t 1 1 105309 445 0.00 2019-09-28 12:15:11 2019-09-28 12:18:53 t 1 1 105315 420 0.00 2019-09-28 12:20:17 2019-09-28 12:26:45 t 1 1 105320 416 0.00 2019-09-28 12:23:53 2019-09-28 12:31:33 t 1 1 105323 422 0.00 2019-09-28 12:27:12 2019-09-28 12:36:44 t 1 1 105327 422 0.00 2019-09-28 12:36:44 2019-09-28 12:45:54 t 1 1 105328 331 0.00 2019-09-28 12:44:15 2019-09-28 12:46:36 t 1 1 105330 416 0.00 2019-09-28 12:35:45 2019-09-28 12:48:22 t 1 1 105341 464 0.00 2019-09-28 12:57:16 2019-09-28 12:58:32 t 1 1 105344 379 0.00 2019-09-28 09:55:50 2019-09-28 12:59:54 t 1 1 105345 331 0.00 2019-09-28 13:00:22 2019-09-28 13:03:52 t 1 1 105346 422 0.00 2019-09-28 12:45:54 2019-09-28 13:06:15 t 1 1 105348 379 0.00 2019-09-28 13:01:06 2019-09-28 13:06:53 t 1 1 105349 331 0.00 2019-09-28 13:06:53 2019-09-28 13:07:54 t 1 1 105350 327 0.00 2019-09-28 13:07:03 2019-09-28 13:08:03 t 1 1 105352 420 0.00 2019-09-28 12:26:47 2019-09-28 13:08:17 t 1 1 105354 306 0.00 2019-09-28 12:59:23 2019-09-28 13:08:33 t 1 1 105356 331 0.00 2019-09-28 13:08:01 2019-09-28 13:10:16 t 1 1 105361 220 0.00 2019-09-28 12:59:33 2019-09-28 13:21:48 t 1 1 105372 327 0.00 2019-09-28 13:28:46 2019-09-28 13:40:49 t 1 1 105374 451 0.00 2019-09-28 13:37:57 2019-09-28 13:44:11 t 1 1 105375 327 0.00 2019-09-28 13:45:01 2019-09-28 13:46:15 t 1 1 105377 445 0.00 2019-09-28 12:58:30 2019-09-28 13:50:05 t 1 1 105380 451 0.00 2019-09-28 13:44:11 2019-09-28 13:51:16 t 1 1 105381 325 0.00 2019-09-28 13:02:02 2019-09-28 13:52:07 t 1 2 105383 420 0.00 2019-09-28 13:47:35 2019-09-28 13:53:19 t 1 1 105386 485 0.00 2019-09-28 13:50:17 2019-09-28 13:54:04 t 1 1 105389 306 0.00 2019-09-28 13:43:50 2019-09-28 14:02:48 t 1 1 105392 451 0.00 2019-09-28 13:57:45 2019-09-28 14:06:35 t 1 1 105393 398 0.00 2019-09-28 14:06:40 2019-09-28 14:06:40 f 1 2 105396 327 0.00 2019-09-28 14:09:54 2019-09-28 14:15:17 t 1 1 105398 331 0.00 2019-09-28 14:13:36 2019-09-28 14:15:58 t 1 1 105399 379 0.00 2019-09-28 13:06:53 2019-09-28 14:17:43 t 1 1 105404 490 0.00 2019-09-28 14:28:15 2019-09-28 14:30:15 t 1 1 105407 428 0.00 2019-09-28 13:06:25 2019-09-28 14:36:05 t 1 1 105260 292 0.00 2019-09-28 10:35:33 2019-09-28 10:36:38 t 1 2 105261 445 0.00 2019-09-28 10:37:27 2019-09-28 10:44:21 t 1 1 105268 325 0.00 2019-09-28 10:22:47 2019-09-28 11:02:52 t 1 2 105271 481 0.00 2019-09-28 10:45:42 2019-09-28 11:14:40 t 1 1 105275 474 0.00 2019-09-28 10:10:30 2019-09-28 11:19:50 t 1 1 105277 470 0.00 2019-09-28 10:29:25 2019-09-28 11:20:45 t 1 1 105278 470 0.00 2019-09-28 11:21:50 2019-09-28 11:30:48 t 1 1 105279 331 0.00 2019-09-28 11:33:00 2019-09-28 11:34:30 t 1 1 105281 474 0.00 2019-09-28 11:20:28 2019-09-28 11:39:06 t 1 1 105282 220 0.00 2019-09-28 11:01:30 2019-09-28 11:41:16 t 1 1 105283 470 0.00 2019-09-28 11:39:49 2019-09-28 11:42:40 t 1 1 105284 220 0.00 2019-09-28 10:29:58 2019-09-28 11:44:18 t 1 2 105287 420 0.00 2019-09-28 11:45:28 2019-09-28 11:51:40 t 1 1 105288 487 0.00 2019-09-28 08:31:45 2019-09-28 11:52:00 t 1 2 105294 470 0.00 2019-09-28 11:58:10 2019-09-28 12:01:27 t 1 1 105298 501 0.00 2019-09-28 11:49:39 2019-09-28 12:07:46 t 1 1 105303 445 0.00 2019-09-28 11:57:40 2019-09-28 12:12:49 t 1 1 105306 445 0.00 2019-09-28 12:13:15 2019-09-28 12:14:29 t 1 1 105312 420 0.00 2019-09-28 12:19:16 2019-09-28 12:20:15 t 1 1 105318 445 0.00 2019-09-28 12:18:53 2019-09-28 12:28:24 t 1 1 105319 247 0.00 2019-09-28 12:26:09 2019-09-28 12:29:03 t 1 2 105321 306 0.00 2019-09-28 12:26:47 2019-09-28 12:32:17 t 1 1 105324 327 0.00 2019-09-28 12:21:03 2019-09-28 12:39:20 t 1 1 105326 481 0.00 2019-09-28 11:14:40 2019-09-28 12:45:14 t 1 1 105334 331 0.00 2019-09-28 12:52:33 2019-09-28 12:54:05 t 1 1 105335 331 0.00 2019-09-28 12:54:07 2019-09-28 12:56:47 t 1 1 105338 464 0.00 2019-09-28 12:52:20 2019-09-28 12:57:14 t 1 1 105339 445 0.00 2019-09-28 12:56:55 2019-09-28 12:58:08 t 1 1 105343 331 0.00 2019-09-28 12:57:00 2019-09-28 12:59:36 t 1 1 105347 331 0.00 2019-09-28 13:04:06 2019-09-28 13:06:53 t 1 1 105364 306 0.00 2019-09-28 13:24:51 2019-09-28 13:26:43 t 1 1 105365 451 0.00 2019-09-28 13:17:50 2019-09-28 13:28:12 t 1 1 105367 416 0.00 2019-09-28 13:31:11 2019-09-28 13:33:08 t 1 1 105376 420 0.00 2019-09-28 13:08:16 2019-09-28 13:47:35 t 1 1 105379 456 0.00 2019-09-28 13:43:57 2019-09-28 13:51:12 t 1 1 105384 331 0.00 2019-09-28 13:36:21 2019-09-28 13:53:44 t 1 1 105387 451 0.00 2019-09-28 13:51:16 2019-09-28 13:57:45 t 1 1 105388 468 0.00 2019-09-28 13:53:23 2019-09-28 13:59:59 t 1 1 105390 468 0.00 2019-09-28 13:59:59 2019-09-28 14:03:02 t 1 1 105391 327 0.00 2019-09-28 14:03:46 2019-09-28 14:04:27 t 1 1 105400 400 0.00 2019-09-28 14:19:45 2019-09-28 14:19:45 f 1 1 105401 327 0.00 2019-09-28 14:21:24 2019-09-28 14:22:31 t 1 1 105402 490 0.00 2019-09-28 14:22:32 2019-09-28 14:28:15 t 1 1 105411 470 0.00 2019-09-28 14:41:31 2019-09-28 14:46:21 t 1 1 105416 416 0.00 2019-09-28 14:46:36 2019-09-28 14:55:42 t 1 1 105420 416 0.00 2019-09-28 14:55:49 2019-09-28 14:58:45 t 1 1 105422 379 0.00 2019-09-28 14:39:47 2019-09-28 15:04:48 t 1 1 105423 422 0.00 2019-09-28 15:02:04 2019-09-28 15:07:11 t 1 1 105426 306 0.00 2019-09-28 14:54:13 2019-09-28 15:11:51 t 1 1 105432 331 0.00 2019-09-28 15:14:49 2019-09-28 15:18:43 t 1 1 105433 327 0.00 2019-09-28 15:18:55 2019-09-28 15:19:57 t 1 1 105436 416 0.00 2019-09-28 14:58:51 2019-09-28 15:21:21 t 1 1 105443 327 0.00 2019-09-28 15:29:05 2019-09-28 15:29:40 t 1 1 105444 327 0.00 2019-09-28 15:30:14 2019-09-28 15:31:43 t 1 1 105447 379 0.00 2019-09-28 15:04:48 2019-09-28 15:33:33 t 1 1 105448 327 0.00 2019-09-28 15:33:20 2019-09-28 15:34:09 t 1 1 105452 327 0.00 2019-09-28 15:34:49 2019-09-28 15:35:29 t 1 1 105454 488 0.00 2019-09-28 15:33:03 2019-09-28 15:37:25 t 1 1 105456 481 0.00 2019-09-28 15:09:38 2019-09-28 15:38:26 t 1 1 105457 327 0.00 2019-09-28 15:38:46 2019-09-28 15:39:18 t 1 1 105458 470 0.00 2019-09-28 15:35:19 2019-09-28 15:41:50 t 1 1 105459 416 0.00 2019-09-28 15:29:27 2019-09-28 15:43:43 t 1 1 105460 379 0.00 2019-09-28 15:33:33 2019-09-28 15:44:36 t 1 1 105462 488 0.00 2019-09-28 15:40:14 2019-09-28 15:46:11 t 1 1 105464 306 0.00 2019-09-28 15:47:04 2019-09-28 15:48:38 t 1 1 105467 220 0.00 2019-09-28 09:36:10 2019-09-28 15:51:21 t 1 2 105470 379 0.00 2019-09-28 15:44:36 2019-09-28 15:54:50 t 1 1 105471 306 0.00 2019-09-28 15:53:24 2019-09-28 15:55:13 t 1 1 105473 422 0.00 2019-09-28 15:55:53 2019-09-28 16:00:08 t 1 1 105474 331 0.00 2019-09-28 16:00:14 2019-09-28 16:00:59 t 1 1 105476 422 0.00 2019-09-28 16:00:59 2019-09-28 16:05:48 t 1 1 105477 490 0.00 2019-09-28 15:56:50 2019-09-28 16:06:09 t 1 1 105478 451 0.00 2019-09-28 16:03:32 2019-09-28 16:07:35 t 1 1 105479 422 0.00 2019-09-28 16:05:48 2019-09-28 16:08:05 t 1 1 105480 306 0.00 2019-09-28 16:08:04 2019-09-28 16:10:05 t 1 1 105482 490 0.00 2019-09-28 16:06:09 2019-09-28 16:10:13 t 1 1 105484 490 0.00 2019-09-28 16:10:13 2019-09-28 16:12:12 t 1 1 105485 428 0.00 2019-09-28 15:55:55 2019-09-28 16:14:47 t 1 1 105491 325 0.00 2019-09-28 16:25:37 2019-09-28 16:26:32 t 1 2 105493 306 0.00 2019-09-28 16:23:46 2019-09-28 16:30:55 t 1 1 105497 474 0.00 2019-09-28 15:53:48 2019-09-28 16:37:25 t 1 1 105503 327 0.00 2019-09-28 16:51:42 2019-09-28 16:52:50 t 1 1 105504 220 0.00 2019-09-28 15:59:08 2019-09-28 16:59:21 t 1 1 105506 327 0.00 2019-09-28 17:00:58 2019-09-28 17:02:59 t 1 1 105507 416 0.00 2019-09-28 16:44:36 2019-09-28 17:06:22 t 1 1 105509 327 0.00 2019-09-28 17:05:23 2019-09-28 17:19:49 t 1 1 105513 306 0.00 2019-09-28 17:20:32 2019-09-28 17:26:25 t 1 1 105515 331 0.00 2019-09-28 17:25:45 2019-09-28 17:27:25 t 1 1 105517 464 0.00 2019-09-28 17:30:55 2019-09-28 17:32:22 t 1 1 105519 464 0.00 2019-09-28 17:38:08 2019-09-28 17:38:34 t 1 1 105524 422 0.00 2019-09-28 17:25:14 2019-09-28 17:48:05 t 1 1 105525 422 0.00 2019-09-28 17:48:05 2019-09-28 17:49:53 t 1 1 105529 331 0.00 2019-09-28 17:28:07 2019-09-28 17:54:35 t 1 1 105530 445 0.00 2019-09-28 17:51:37 2019-09-28 17:55:52 t 1 1 105531 481 0.00 2019-09-28 17:47:05 2019-09-28 17:56:28 t 1 1 105537 464 0.00 2019-09-28 17:41:59 2019-09-28 18:06:56 t 1 1 105540 306 0.00 2019-09-28 17:52:32 2019-09-28 18:14:44 t 1 1 105542 292 0.00 2019-09-28 18:16:31 2019-09-28 18:17:37 t 1 2 105551 331 0.00 2019-09-28 18:27:38 2019-09-28 18:36:26 t 1 1 105553 306 0.00 2019-09-28 18:27:28 2019-09-28 18:37:41 t 1 1 105554 325 0.00 2019-09-28 17:14:24 2019-09-28 18:39:29 t 1 2 105556 422 0.00 2019-09-28 18:09:16 2019-09-28 18:53:35 t 1 1 105561 306 0.00 2019-09-28 19:05:46 2019-09-28 19:07:51 t 1 1 105564 416 0.00 2019-09-28 17:06:22 2019-09-28 19:18:08 t 1 1 105570 485 0.00 2019-09-28 19:21:29 2019-09-28 19:33:39 t 1 1 105572 474 0.00 2019-09-28 18:53:57 2019-09-28 19:35:39 t 1 1 105573 490 0.00 2019-09-28 19:35:23 2019-09-28 19:37:36 t 1 1 105302 290 0.00 2019-09-28 11:42:01 2019-09-28 12:12:06 t 1 2 105307 306 0.00 2019-09-28 12:10:55 2019-09-28 12:15:35 t 1 1 105308 331 0.00 2019-09-28 12:14:37 2019-09-28 12:16:47 t 1 1 105310 331 0.00 2019-09-28 12:17:17 2019-09-28 12:18:54 t 1 1 105311 420 0.00 2019-09-28 12:11:54 2019-09-28 12:19:13 t 1 1 105313 474 0.00 2019-09-28 11:39:11 2019-09-28 12:22:31 t 1 1 105314 416 0.00 2019-09-28 12:16:29 2019-09-28 12:23:53 t 1 1 105316 498 0.00 2019-09-28 11:09:12 2019-09-28 12:26:45 t 1 2 105317 306 0.00 2019-09-28 12:24:47 2019-09-28 12:26:47 t 1 1 105322 416 0.00 2019-09-28 12:34:28 2019-09-28 12:35:46 t 1 1 105325 331 0.00 2019-09-28 12:19:06 2019-09-28 12:44:16 t 1 1 105329 445 0.00 2019-09-28 12:28:30 2019-09-28 12:48:18 t 1 1 105331 331 0.00 2019-09-28 12:47:03 2019-09-28 12:50:51 t 1 1 105332 331 0.00 2019-09-28 12:50:51 2019-09-28 12:51:21 t 1 1 105333 331 0.00 2019-09-28 12:51:21 2019-09-28 12:52:29 t 1 1 105336 445 0.00 2019-09-28 12:48:28 2019-09-28 12:56:55 t 1 1 105337 327 0.00 2019-09-28 12:49:20 2019-09-28 12:57:06 t 1 1 105340 464 0.00 2019-09-28 12:58:21 2019-09-28 12:58:29 t 1 1 105342 220 0.00 2019-09-28 12:35:06 2019-09-28 12:59:33 t 1 1 105351 481 0.00 2019-09-28 12:45:14 2019-09-28 13:08:15 t 1 1 105353 424 0.00 2019-09-28 12:55:03 2019-09-28 13:08:26 t 1 2 105355 422 0.00 2019-09-28 13:06:15 2019-09-28 13:10:15 t 1 1 105357 490 0.00 2019-09-28 13:08:31 2019-09-28 13:12:47 t 1 1 105358 327 0.00 2019-09-28 13:17:58 2019-09-28 13:18:51 t 1 1 105359 416 0.00 2019-09-28 12:48:22 2019-09-28 13:19:56 t 1 1 105360 490 0.00 2019-09-28 13:12:47 2019-09-28 13:20:53 t 1 1 105362 306 0.00 2019-09-28 13:16:37 2019-09-28 13:24:41 t 1 1 105363 501 0.00 2019-09-28 13:12:40 2019-09-28 13:26:26 t 1 1 105366 416 0.00 2019-09-28 13:19:55 2019-09-28 13:31:11 t 1 1 105368 416 0.00 2019-09-28 13:32:13 2019-09-28 13:34:50 t 1 1 105369 331 0.00 2019-09-28 13:10:15 2019-09-28 13:36:12 t 1 1 105370 451 0.00 2019-09-28 13:28:12 2019-09-28 13:37:57 t 1 1 105371 416 0.00 2019-09-28 13:34:55 2019-09-28 13:40:21 t 1 1 105373 327 0.00 2019-09-28 13:41:52 2019-09-28 13:42:31 t 1 1 105378 220 0.00 2019-09-28 13:25:08 2019-09-28 13:50:11 t 1 1 105382 220 0.00 2019-09-28 12:10:31 2019-09-28 13:52:08 t 1 2 105385 327 0.00 2019-09-28 13:47:41 2019-09-28 13:53:50 t 1 1 105394 464 0.00 2019-09-28 14:07:51 2019-09-28 14:08:38 t 1 1 105395 331 0.00 2019-09-28 13:53:50 2019-09-28 14:13:29 t 1 1 105397 247 0.00 2019-09-28 14:11:26 2019-09-28 14:15:52 t 1 2 105403 451 0.00 2019-09-28 14:06:35 2019-09-28 14:29:58 t 1 1 105405 379 0.00 2019-09-28 14:17:43 2019-09-28 14:30:42 t 1 1 105406 327 0.00 2019-09-28 14:32:30 2019-09-28 14:33:01 t 1 1 105408 451 0.00 2019-09-28 14:29:58 2019-09-28 14:38:36 t 1 1 105413 428 0.00 2019-09-28 14:39:48 2019-09-28 14:48:17 t 1 1 105421 331 0.00 2019-09-28 14:16:21 2019-09-28 15:02:04 t 1 1 105424 451 0.00 2019-09-28 14:56:16 2019-09-28 15:07:33 t 1 1 105425 470 0.00 2019-09-28 14:46:18 2019-09-28 15:11:32 t 1 1 105427 451 0.00 2019-09-28 15:07:33 2019-09-28 15:12:01 t 1 1 105430 327 0.00 2019-09-28 14:59:52 2019-09-28 15:14:34 t 1 1 105431 327 0.00 2019-09-28 15:16:46 2019-09-28 15:16:54 t 1 1 105434 327 0.00 2019-09-28 15:20:27 2019-09-28 15:20:28 t 1 1 105437 422 0.00 2019-09-28 15:20:15 2019-09-28 15:21:30 t 1 1 105440 422 0.00 2019-09-28 15:27:23 2019-09-28 15:28:09 t 1 1 105442 416 0.00 2019-09-28 15:21:26 2019-09-28 15:28:46 t 1 1 105446 327 0.00 2019-09-28 15:32:23 2019-09-28 15:32:56 t 1 1 105449 331 0.00 2019-09-28 15:20:41 2019-09-28 15:34:57 t 1 1 105450 422 0.00 2019-09-28 15:31:51 2019-09-28 15:35:11 t 1 1 105455 327 0.00 2019-09-28 15:36:27 2019-09-28 15:38:15 t 1 1 105463 488 0.00 2019-09-28 15:46:11 2019-09-28 15:46:42 t 1 1 105466 464 0.00 2019-09-28 15:50:49 2019-09-28 15:51:09 t 1 1 105469 327 0.00 2019-09-28 15:39:52 2019-09-28 15:54:10 t 1 1 105481 331 0.00 2019-09-28 16:08:07 2019-09-28 16:10:05 t 1 1 105483 220 0.00 2019-09-28 16:08:18 2019-09-28 16:10:41 t 1 2 105486 422 0.00 2019-09-28 16:11:51 2019-09-28 16:16:59 t 1 1 105487 331 0.00 2019-09-28 16:10:05 2019-09-28 16:21:05 t 1 1 105488 422 0.00 2019-09-28 16:16:59 2019-09-28 16:23:03 t 1 1 105490 247 0.00 2019-09-28 16:20:11 2019-09-28 16:26:14 t 1 2 105492 422 0.00 2019-09-28 16:23:03 2019-09-28 16:29:06 t 1 1 105494 422 0.00 2019-09-28 16:29:06 2019-09-28 16:34:23 t 1 1 105496 445 0.00 2019-09-28 13:50:29 2019-09-28 16:35:58 t 1 1 105498 306 0.00 2019-09-28 16:36:15 2019-09-28 16:37:38 t 1 1 105499 325 0.00 2019-09-28 16:27:34 2019-09-28 16:38:40 t 1 2 105501 327 0.00 2019-09-28 16:40:48 2019-09-28 16:42:13 t 1 1 105502 416 0.00 2019-09-28 15:43:48 2019-09-28 16:44:36 t 1 1 105508 412 0.00 2019-09-28 16:35:58 2019-09-28 17:11:12 t 1 1 105511 424 0.00 2019-09-28 17:14:55 2019-09-28 17:22:16 t 1 2 105512 422 0.00 2019-09-28 16:54:31 2019-09-28 17:25:14 t 1 1 105516 327 0.00 2019-09-28 17:28:31 2019-09-28 17:29:20 t 1 1 105520 327 0.00 2019-09-28 17:38:26 2019-09-28 17:38:59 t 1 1 105521 220 0.00 2019-09-28 16:39:52 2019-09-28 17:39:57 t 1 2 105522 306 0.00 2019-09-28 17:41:33 2019-09-28 17:43:35 t 1 1 105527 445 0.00 2019-09-28 17:11:12 2019-09-28 17:50:05 t 1 1 105528 445 0.00 2019-09-28 17:50:15 2019-09-28 17:51:18 t 1 1 105533 220 0.00 2019-09-28 16:59:21 2019-09-28 18:01:59 t 1 1 105535 422 0.00 2019-09-28 17:49:53 2019-09-28 18:02:43 t 1 1 105536 481 0.00 2019-09-28 18:02:43 2019-09-28 18:03:38 t 1 1 105545 474 0.00 2019-09-28 18:19:46 2019-09-28 18:20:18 t 1 1 105550 445 0.00 2019-09-28 17:58:09 2019-09-28 18:32:01 t 1 1 105552 474 0.00 2019-09-28 18:20:29 2019-09-28 18:37:17 t 1 1 105555 474 0.00 2019-09-28 18:37:17 2019-09-28 18:46:53 t 1 1 105558 474 0.00 2019-09-28 18:46:59 2019-09-28 18:54:47 t 1 1 105560 306 0.00 2019-09-28 18:42:46 2019-09-28 19:03:16 t 1 1 105562 481 0.00 2019-09-28 18:53:45 2019-09-28 19:08:25 t 1 1 105568 470 0.00 2019-09-28 19:18:02 2019-09-28 19:30:30 t 1 1 105579 470 0.00 2019-09-28 19:30:30 2019-09-28 19:44:18 t 1 1 105580 445 0.00 2019-09-28 19:39:07 2019-09-28 19:45:28 t 1 1 105582 412 0.00 2019-09-28 19:40:10 2019-09-28 19:51:20 t 1 1 105584 331 0.00 2019-09-28 18:37:14 2019-09-28 19:52:10 t 1 1 105585 485 0.00 2019-09-28 19:37:44 2019-09-28 19:52:45 t 1 1 105592 474 0.00 2019-09-28 19:52:26 2019-09-28 20:01:25 t 1 1 105594 474 0.00 2019-09-28 20:00:31 2019-09-28 20:04:50 t 1 1 105595 488 0.00 2019-09-28 20:06:01 2019-09-28 20:07:07 t 1 1 105596 462 0.00 2019-09-28 19:52:12 2019-09-28 20:07:57 t 1 1 105597 292 0.00 2019-09-28 20:08:37 2019-09-28 20:08:40 t 1 2 105600 306 0.00 2019-09-28 19:58:32 2019-09-28 20:11:40 t 1 1 105602 462 0.00 2019-09-28 20:07:57 2019-09-28 20:16:22 t 1 1 105409 379 0.00 2019-09-28 14:30:42 2019-09-28 14:39:47 t 1 1 105410 327 0.00 2019-09-28 14:43:23 2019-09-28 14:44:26 t 1 1 105412 416 0.00 2019-09-28 13:40:27 2019-09-28 14:46:29 t 1 1 105414 428 0.00 2019-09-28 14:51:25 2019-09-28 14:52:29 t 1 1 105415 501 0.00 2019-09-28 14:37:44 2019-09-28 14:53:21 t 1 1 105417 327 0.00 2019-09-28 14:51:56 2019-09-28 14:55:43 t 1 1 105418 451 0.00 2019-09-28 14:43:20 2019-09-28 14:56:16 t 1 1 105419 420 0.00 2019-09-28 14:52:57 2019-09-28 14:57:19 t 1 1 105428 422 0.00 2019-09-28 15:07:11 2019-09-28 15:13:25 t 1 1 105429 422 0.00 2019-09-28 15:13:25 2019-09-28 15:14:20 t 1 1 105435 331 0.00 2019-09-28 15:18:37 2019-09-28 15:20:41 t 1 1 105438 327 0.00 2019-09-28 15:21:30 2019-09-28 15:26:43 t 1 1 105439 327 0.00 2019-09-28 15:26:53 2019-09-28 15:27:22 t 1 1 105441 327 0.00 2019-09-28 15:28:09 2019-09-28 15:28:20 t 1 1 105445 488 0.00 2019-09-28 15:30:22 2019-09-28 15:32:24 t 1 1 105451 470 0.00 2019-09-28 15:11:31 2019-09-28 15:35:15 t 1 1 105453 464 0.00 2019-09-28 15:35:38 2019-09-28 15:36:29 t 1 1 105461 306 0.00 2019-09-28 15:28:08 2019-09-28 15:45:31 t 1 1 105465 331 0.00 2019-09-28 15:35:11 2019-09-28 15:50:18 t 1 1 105468 474 0.00 2019-09-28 12:22:45 2019-09-28 15:53:21 t 1 1 105472 422 0.00 2019-09-28 15:50:18 2019-09-28 15:55:53 t 1 1 105475 451 0.00 2019-09-28 15:52:49 2019-09-28 16:03:32 t 1 1 105489 306 0.00 2019-09-28 16:18:39 2019-09-28 16:23:46 t 1 1 105495 422 0.00 2019-09-28 16:34:44 2019-09-28 16:34:46 t 1 1 105500 327 0.00 2019-09-28 16:37:38 2019-09-28 16:40:09 t 1 1 105505 296 0.00 2019-09-28 16:59:01 2019-09-28 17:00:24 t 1 2 105510 327 0.00 2019-09-28 17:20:51 2019-09-28 17:21:59 t 1 1 105514 451 0.00 2019-09-28 17:24:09 2019-09-28 17:26:48 t 1 1 105518 327 0.00 2019-09-28 17:35:41 2019-09-28 17:36:16 t 1 1 105523 481 0.00 2019-09-28 16:57:27 2019-09-28 17:47:12 t 1 1 105526 220 0.00 2019-09-28 17:46:36 2019-09-28 17:49:59 t 1 2 105532 481 0.00 2019-09-28 17:56:27 2019-09-28 17:58:26 t 1 1 105534 331 0.00 2019-09-28 17:54:34 2019-09-28 18:02:20 t 1 1 105538 422 0.00 2019-09-28 18:03:38 2019-09-28 18:09:16 t 1 1 105539 451 0.00 2019-09-28 18:00:30 2019-09-28 18:14:28 t 1 1 105541 474 0.00 2019-09-28 16:37:28 2019-09-28 18:15:53 t 1 1 105543 451 0.00 2019-09-28 18:14:28 2019-09-28 18:17:56 t 1 1 105544 474 0.00 2019-09-28 18:16:04 2019-09-28 18:19:39 t 1 1 105546 306 0.00 2019-09-28 18:14:44 2019-09-28 18:20:45 t 1 1 105547 331 0.00 2019-09-28 18:04:11 2019-09-28 18:21:38 t 1 1 105548 331 0.00 2019-09-28 18:21:38 2019-09-28 18:25:44 t 1 1 105549 488 0.00 2019-09-28 18:25:55 2019-09-28 18:27:52 t 1 1 105557 296 0.00 2019-09-28 18:36:55 2019-09-28 18:54:18 t 1 2 105559 445 0.00 2019-09-28 18:32:04 2019-09-28 19:00:17 t 1 1 105563 470 0.00 2019-09-28 18:09:49 2019-09-28 19:18:02 t 1 1 105565 412 0.00 2019-09-28 19:08:25 2019-09-28 19:26:03 t 1 1 105566 445 0.00 2019-09-28 19:00:16 2019-09-28 19:27:12 t 1 1 105567 456 0.00 2019-09-28 19:22:46 2019-09-28 19:28:24 t 1 1 105569 424 0.00 2019-09-28 18:59:11 2019-09-28 19:30:31 t 1 2 105571 490 0.00 2019-09-28 19:33:25 2019-09-28 19:35:23 t 1 1 105574 485 0.00 2019-09-28 19:33:39 2019-09-28 19:37:44 t 1 1 105575 306 0.00 2019-09-28 19:35:23 2019-09-28 19:38:01 t 1 1 105576 445 0.00 2019-09-28 19:27:22 2019-09-28 19:39:07 t 1 1 105577 481 0.00 2019-09-28 19:26:11 2019-09-28 19:40:10 t 1 1 105578 474 0.00 2019-09-28 19:35:25 2019-09-28 19:41:53 t 1 1 105581 445 0.00 2019-09-28 19:45:47 2019-09-28 19:49:07 t 1 1 105583 481 0.00 2019-09-28 19:51:29 2019-09-28 19:51:52 t 1 1 105586 481 0.00 2019-09-28 19:51:52 2019-09-28 19:52:54 t 1 1 105587 445 0.00 2019-09-28 19:49:06 2019-09-28 19:53:05 t 1 1 105589 470 0.00 2019-09-28 19:55:39 2019-09-28 19:57:55 t 1 1 105590 485 0.00 2019-09-28 19:52:45 2019-09-28 19:58:47 t 1 1 105591 470 0.00 2019-09-28 19:57:55 2019-09-28 19:59:03 t 1 1 105593 247 0.00 2019-09-28 19:59:26 2019-09-28 20:02:39 t 1 2 105603 456 0.00 2019-09-28 19:48:04 2019-09-28 20:21:56 t 1 1 105604 220 0.00 2019-09-28 17:32:09 2019-09-28 20:22:01 t 1 2 105615 292 0.00 2019-09-28 20:44:23 2019-09-28 20:45:27 t 1 2 105617 292 0.00 2019-09-28 20:48:32 2019-09-28 20:49:35 t 1 2 105618 306 0.00 2019-09-28 20:43:25 2019-09-28 20:50:08 t 1 1 105621 220 0.00 2019-09-28 18:01:59 2019-09-28 20:55:17 t 1 1 105622 220 0.00 2019-09-28 20:55:17 2019-09-28 20:55:52 t 1 1 105623 327 0.00 2019-09-28 20:57:12 2019-09-28 20:58:42 t 1 1 105624 379 0.00 2019-09-28 20:47:21 2019-09-28 20:59:24 t 1 1 105626 327 0.00 2019-09-28 20:58:50 2019-09-28 20:59:51 t 1 1 105627 456 0.00 2019-09-28 20:32:01 2019-09-28 21:00:55 t 1 1 105628 464 0.00 2019-09-28 20:59:49 2019-09-28 21:02:13 t 1 1 105630 327 0.00 2019-09-28 21:02:30 2019-09-28 21:02:56 t 1 1 105635 292 0.00 2019-09-28 21:07:32 2019-09-28 21:08:35 t 1 2 105637 501 0.00 2019-09-28 21:08:18 2019-09-28 21:09:17 t 1 1 105640 501 0.00 2019-09-28 21:11:16 2019-09-28 21:11:49 t 1 1 105641 501 0.00 2019-09-28 21:12:16 2019-09-28 21:12:17 t 1 1 105648 333 0.00 2019-09-28 21:04:19 2019-09-28 21:17:55 t 1 2 105650 501 0.00 2019-09-28 21:17:55 2019-09-28 21:17:57 t 1 1 105651 422 0.00 2019-09-28 21:17:57 2019-09-28 21:18:38 t 1 1 105653 220 0.00 2019-09-28 21:16:43 2019-09-28 21:19:06 t 1 2 105657 501 0.00 2019-09-28 21:21:25 2019-09-28 21:23:01 t 1 1 105661 501 0.00 2019-09-28 21:24:27 2019-09-28 21:24:57 t 1 1 105663 488 0.00 2019-09-28 21:23:14 2019-09-28 21:26:20 t 1 1 105667 327 0.00 2019-09-28 21:28:16 2019-09-28 21:29:34 t 1 1 105670 451 0.00 2019-09-28 21:21:25 2019-09-28 21:31:38 t 1 1 105671 422 0.00 2019-09-28 21:26:13 2019-09-28 21:32:46 t 1 1 105674 451 0.00 2019-09-28 21:34:46 2019-09-28 21:37:22 t 1 1 105678 485 0.00 2019-09-28 21:24:29 2019-09-28 21:44:42 t 1 1 105685 501 0.00 2019-09-28 21:37:53 2019-09-28 21:49:50 t 1 1 105688 501 0.00 2019-09-28 21:49:50 2019-09-28 21:56:28 t 1 1 105694 331 0.00 2019-09-28 20:35:47 2019-09-28 22:01:10 t 1 1 105699 220 0.00 2019-09-28 20:40:31 2019-09-28 22:06:44 t 1 2 105700 422 0.00 2019-09-28 21:48:16 2019-09-28 22:08:40 t 1 1 105703 481 0.00 2019-09-28 20:23:46 2019-09-28 22:13:57 t 1 1 105706 445 0.00 2019-09-28 21:56:04 2019-09-28 22:17:58 t 1 1 105707 483 0.00 2019-09-28 22:12:50 2019-09-28 22:21:22 t 1 1 105708 220 0.00 2019-09-28 22:21:54 2019-09-28 22:24:56 t 1 2 105713 327 0.00 2019-09-28 22:36:14 2019-09-28 22:36:48 t 1 1 105720 327 0.00 2019-09-28 22:46:43 2019-09-28 22:47:51 t 1 1 105721 464 0.00 2019-09-28 22:48:07 2019-09-28 22:48:28 t 1 1 105725 501 0.00 2019-09-28 22:29:31 2019-09-28 22:57:20 t 1 1 105727 306 0.00 2019-09-28 22:51:03 2019-09-28 22:59:48 t 1 1 105731 220 0.00 2019-09-28 22:35:04 2019-09-28 23:04:57 t 1 2 105588 445 0.00 2019-09-28 19:54:04 2019-09-28 19:55:03 t 1 1 105598 327 0.00 2019-09-28 19:59:11 2019-09-28 20:08:54 t 1 1 105599 292 0.00 2019-09-28 20:08:55 2019-09-28 20:10:00 t 1 2 105601 327 0.00 2019-09-28 20:09:26 2019-09-28 20:11:47 t 1 1 105607 481 0.00 2019-09-28 19:53:01 2019-09-28 20:23:31 t 1 1 105612 331 0.00 2019-09-28 19:52:10 2019-09-28 20:35:47 t 1 1 105631 327 0.00 2019-09-28 21:03:55 2019-09-28 21:04:21 t 1 1 105632 501 0.00 2019-09-28 20:55:19 2019-09-28 21:08:10 t 1 1 105634 424 0.00 2019-09-28 20:12:02 2019-09-28 21:08:25 t 1 2 105636 412 0.00 2019-09-28 19:55:03 2019-09-28 21:09:01 t 1 1 105638 501 0.00 2019-09-28 21:10:16 2019-09-28 21:10:17 t 1 1 105639 325 0.00 2019-09-28 19:56:29 2019-09-28 21:11:35 t 1 2 105642 422 0.00 2019-09-28 21:06:16 2019-09-28 21:12:59 t 1 1 105644 501 0.00 2019-09-28 21:13:30 2019-09-28 21:14:16 t 1 1 105647 220 0.00 2019-09-28 20:55:52 2019-09-28 21:16:38 t 1 1 105654 501 0.00 2019-09-28 21:19:45 2019-09-28 21:20:20 t 1 1 105658 488 0.00 2019-09-28 21:20:16 2019-09-28 21:23:14 t 1 1 105660 501 0.00 2019-09-28 21:23:11 2019-09-28 21:23:23 t 1 1 105662 501 0.00 2019-09-28 21:25:07 2019-09-28 21:25:51 t 1 1 105664 292 0.00 2019-09-28 21:26:02 2019-09-28 21:27:06 t 1 2 105665 412 0.00 2019-09-28 21:21:52 2019-09-28 21:28:40 t 1 1 105666 501 0.00 2019-09-28 21:28:52 2019-09-28 21:29:26 t 1 1 105668 501 0.00 2019-09-28 21:30:29 2019-09-28 21:31:02 t 1 1 105672 501 0.00 2019-09-28 21:31:41 2019-09-28 21:36:03 t 1 1 105673 501 0.00 2019-09-28 21:37:06 2019-09-28 21:37:07 t 1 1 105675 327 0.00 2019-09-28 21:38:01 2019-09-28 21:39:07 t 1 1 105677 325 0.00 2019-09-28 21:23:35 2019-09-28 21:43:40 t 1 2 105683 292 0.00 2019-09-28 21:46:31 2019-09-28 21:47:34 t 1 2 105687 445 0.00 2019-09-28 21:31:35 2019-09-28 21:50:53 t 1 1 105690 327 0.00 2019-09-28 21:57:17 2019-09-28 21:57:50 t 1 1 105692 501 0.00 2019-09-28 21:56:28 2019-09-28 21:58:55 t 1 1 105693 306 0.00 2019-09-28 21:17:36 2019-09-28 21:59:20 t 1 1 105696 464 0.00 2019-09-28 22:02:09 2019-09-28 22:02:25 t 1 1 105698 327 0.00 2019-09-28 22:04:18 2019-09-28 22:04:51 t 1 1 105705 451 0.00 2019-09-28 22:12:52 2019-09-28 22:15:50 t 1 1 105709 327 0.00 2019-09-28 22:25:24 2019-09-28 22:26:19 t 1 1 105711 483 0.00 2019-09-28 22:21:22 2019-09-28 22:30:09 t 1 1 105712 247 0.00 2019-09-28 22:28:53 2019-09-28 22:31:25 t 1 2 105714 490 0.00 2019-09-28 22:32:32 2019-09-28 22:37:07 t 1 1 105716 412 0.00 2019-09-28 22:17:58 2019-09-28 22:41:14 t 1 1 105717 490 0.00 2019-09-28 22:37:07 2019-09-28 22:41:59 t 1 1 105722 451 0.00 2019-09-28 22:46:13 2019-09-28 22:49:29 t 1 1 105726 327 0.00 2019-09-28 22:57:47 2019-09-28 22:59:02 t 1 1 105729 451 0.00 2019-09-28 22:49:29 2019-09-28 23:00:56 t 1 1 105732 501 0.00 2019-09-28 22:57:20 2019-09-28 23:05:34 t 1 1 105738 501 0.00 2019-09-28 23:09:56 2019-09-28 23:11:49 t 1 1 105740 501 0.00 2019-09-28 23:11:49 2019-09-28 23:13:44 t 1 1 105742 501 0.00 2019-09-28 23:15:56 2019-09-28 23:17:49 t 1 1 105744 451 0.00 2019-09-28 23:07:00 2019-09-28 23:19:49 t 1 1 105745 501 0.00 2019-09-28 23:17:49 2019-09-28 23:19:59 t 1 1 105748 501 0.00 2019-09-28 23:23:03 2019-09-28 23:25:40 t 1 1 105753 483 0.00 2019-09-28 23:29:29 2019-09-28 23:30:45 t 1 1 105755 501 0.00 2019-09-28 23:31:36 2019-09-28 23:33:31 t 1 1 105756 501 0.00 2019-09-28 23:33:31 2019-09-28 23:35:25 t 1 1 105757 488 0.00 2019-09-28 23:34:27 2019-09-28 23:38:50 t 1 1 105758 474 0.00 2019-09-28 23:08:39 2019-09-28 23:38:59 t 1 1 105759 501 0.00 2019-09-28 23:35:25 2019-09-28 23:43:00 t 1 1 105768 422 0.00 2019-09-29 00:49:01 2019-09-29 01:00:16 t 1 1 105770 501 0.00 2019-09-29 01:00:53 2019-09-29 01:02:45 t 1 1 105772 422 0.00 2019-09-29 01:00:16 2019-09-29 01:06:45 t 1 1 105776 501 0.00 2019-09-29 01:08:51 2019-09-29 01:15:30 t 1 1 105779 501 0.00 2019-09-29 01:17:28 2019-09-29 01:21:18 t 1 1 105781 501 0.00 2019-09-29 01:23:10 2019-09-29 01:25:05 t 1 1 105782 422 0.00 2019-09-29 01:13:16 2019-09-29 01:26:10 t 1 1 105783 501 0.00 2019-09-29 01:25:05 2019-09-29 01:27:05 t 1 1 105784 501 0.00 2019-09-29 01:27:05 2019-09-29 01:28:56 t 1 1 105786 503 0.00 2019-09-29 01:08:23 2019-09-29 01:43:57 t 1 1 105790 422 0.00 2019-09-29 01:53:27 2019-09-29 01:57:43 t 1 1 105792 499 0.00 2019-09-29 02:56:27 2019-09-29 02:58:55 t 1 1 105794 412 0.00 2019-09-28 22:41:14 2019-09-29 03:53:00 t 1 1 105795 445 0.00 2019-09-29 03:53:07 2019-09-29 04:04:25 t 1 1 105797 445 0.00 2019-09-29 04:05:19 2019-09-29 05:27:29 t 1 1 105798 445 0.00 2019-09-29 05:27:28 2019-09-29 05:31:29 t 1 1 105799 445 0.00 2019-09-29 05:33:48 2019-09-29 05:37:31 t 1 1 105803 445 0.00 2019-09-29 06:17:45 2019-09-29 06:18:56 t 1 1 105809 474 0.00 2019-09-28 23:38:59 2019-09-29 06:45:57 t 1 1 105810 220 0.00 2019-09-29 06:47:50 2019-09-29 06:49:46 t 1 1 105814 481 0.00 2019-09-29 07:24:48 2019-09-29 07:39:15 t 1 1 105818 420 0.00 2019-09-29 07:49:00 2019-09-29 07:49:18 t 1 1 105819 464 0.00 2019-09-29 07:50:51 2019-09-29 07:52:11 t 1 1 105820 481 0.00 2019-09-29 07:39:15 2019-09-29 07:54:05 t 1 1 105821 420 0.00 2019-09-29 08:09:25 2019-09-29 08:09:53 t 1 1 105823 416 0.00 2019-09-29 07:31:40 2019-09-29 08:11:10 t 1 1 105824 420 0.00 2019-09-29 08:16:08 2019-09-29 08:16:25 t 1 1 105825 474 0.00 2019-09-29 07:40:29 2019-09-29 08:36:05 t 1 1 105827 474 0.00 2019-09-29 08:36:08 2019-09-29 08:45:21 t 1 1 105828 474 0.00 2019-09-29 08:45:20 2019-09-29 08:49:23 t 1 1 105832 420 0.00 2019-09-29 09:01:18 2019-09-29 09:01:51 t 1 1 105834 416 0.00 2019-09-29 09:01:53 2019-09-29 09:03:11 t 1 1 105837 416 0.00 2019-09-29 09:09:07 2019-09-29 09:11:42 t 1 1 105838 416 0.00 2019-09-29 09:11:42 2019-09-29 09:13:16 t 1 1 105843 483 0.00 2019-09-29 09:25:27 2019-09-29 09:28:10 t 1 1 105846 483 0.00 2019-09-29 09:28:10 2019-09-29 09:33:36 t 1 1 105849 501 0.00 2019-09-29 09:13:54 2019-09-29 09:39:37 t 1 1 105851 506 0.00 2019-09-29 09:36:34 2019-09-29 09:41:58 t 1 1 105858 474 0.00 2019-09-29 09:45:23 2019-09-29 10:03:50 t 1 1 105859 416 0.00 2019-09-29 09:57:04 2019-09-29 10:04:45 t 1 1 105860 501 0.00 2019-09-29 09:41:29 2019-09-29 10:05:51 t 1 1 105863 474 0.00 2019-09-29 10:03:52 2019-09-29 10:11:01 t 1 1 105868 306 0.00 2019-09-29 10:19:15 2019-09-29 10:24:56 t 1 1 105871 422 0.00 2019-09-29 01:57:43 2019-09-29 10:30:30 t 1 1 105881 474 0.00 2019-09-29 10:53:12 2019-09-29 10:55:27 t 1 1 105882 327 0.00 2019-09-29 10:52:19 2019-09-29 10:56:45 t 1 1 105885 327 0.00 2019-09-29 11:00:52 2019-09-29 11:10:25 t 1 1 105887 416 0.00 2019-09-29 11:10:25 2019-09-29 11:13:48 t 1 1 105889 424 0.00 2019-09-29 09:59:38 2019-09-29 11:18:02 t 1 2 105891 327 0.00 2019-09-29 11:18:09 2019-09-29 11:21:16 t 1 1 105605 451 0.00 2019-09-28 20:04:20 2019-09-28 20:22:21 t 1 1 105606 327 0.00 2019-09-28 20:20:43 2019-09-28 20:23:29 t 1 1 105608 470 0.00 2019-09-28 19:59:02 2019-09-28 20:25:40 t 1 1 105609 292 0.00 2019-09-28 20:29:01 2019-09-28 20:29:08 t 1 2 105610 456 0.00 2019-09-28 20:21:56 2019-09-28 20:32:01 t 1 1 105611 327 0.00 2019-09-28 20:32:57 2019-09-28 20:35:19 t 1 1 105613 451 0.00 2019-09-28 20:22:21 2019-09-28 20:43:33 t 1 1 105614 327 0.00 2019-09-28 20:42:31 2019-09-28 20:44:31 t 1 1 105616 327 0.00 2019-09-28 20:44:38 2019-09-28 20:47:13 t 1 1 105619 498 0.00 2019-09-28 20:07:33 2019-09-28 20:50:35 t 1 2 105620 488 0.00 2019-09-28 20:46:12 2019-09-28 20:54:01 t 1 1 105625 488 0.00 2019-09-28 20:55:15 2019-09-28 20:59:42 t 1 1 105629 422 0.00 2019-09-28 20:50:53 2019-09-28 21:02:30 t 1 1 105633 247 0.00 2019-09-28 21:04:58 2019-09-28 21:08:23 t 1 2 105643 451 0.00 2019-09-28 20:57:35 2019-09-28 21:13:21 t 1 1 105645 501 0.00 2019-09-28 21:15:19 2019-09-28 21:15:27 t 1 1 105646 501 0.00 2019-09-28 21:16:19 2019-09-28 21:16:20 t 1 1 105649 422 0.00 2019-09-28 21:12:59 2019-09-28 21:17:55 t 1 1 105652 327 0.00 2019-09-28 21:14:30 2019-09-28 21:18:47 t 1 1 105655 451 0.00 2019-09-28 21:13:21 2019-09-28 21:21:25 t 1 1 105656 445 0.00 2019-09-28 21:09:29 2019-09-28 21:21:52 t 1 1 105659 292 0.00 2019-09-28 21:22:15 2019-09-28 21:23:22 t 1 2 105669 501 0.00 2019-09-28 21:31:29 2019-09-28 21:31:30 t 1 1 105676 422 0.00 2019-09-28 21:32:46 2019-09-28 21:41:53 t 1 1 105679 292 0.00 2019-09-28 21:43:45 2019-09-28 21:44:51 t 1 2 105680 327 0.00 2019-09-28 21:39:23 2019-09-28 21:45:04 t 1 1 105681 485 0.00 2019-09-28 21:44:42 2019-09-28 21:46:13 t 1 1 105682 327 0.00 2019-09-28 21:46:11 2019-09-28 21:47:20 t 1 1 105684 422 0.00 2019-09-28 21:41:53 2019-09-28 21:48:16 t 1 1 105686 292 0.00 2019-09-28 21:49:11 2019-09-28 21:50:13 t 1 2 105689 485 0.00 2019-09-28 21:48:20 2019-09-28 21:57:37 t 1 1 105691 456 0.00 2019-09-28 21:56:19 2019-09-28 21:58:04 t 1 1 105695 501 0.00 2019-09-28 21:58:55 2019-09-28 22:01:40 t 1 1 105697 464 0.00 2019-09-28 22:02:33 2019-09-28 22:02:55 t 1 1 105701 292 0.00 2019-09-28 22:09:04 2019-09-28 22:10:08 t 1 2 105702 483 0.00 2019-09-28 22:08:41 2019-09-28 22:12:50 t 1 1 105704 327 0.00 2019-09-28 22:14:50 2019-09-28 22:15:23 t 1 1 105710 501 0.00 2019-09-28 22:01:40 2019-09-28 22:29:31 t 1 1 105715 483 0.00 2019-09-28 22:30:09 2019-09-28 22:37:15 t 1 1 105718 483 0.00 2019-09-28 22:37:15 2019-09-28 22:43:09 t 1 1 105719 306 0.00 2019-09-28 22:44:54 2019-09-28 22:46:50 t 1 1 105723 483 0.00 2019-09-28 22:43:09 2019-09-28 22:50:50 t 1 1 105724 483 0.00 2019-09-28 22:50:50 2019-09-28 22:57:12 t 1 1 105728 488 0.00 2019-09-28 22:54:38 2019-09-28 23:00:19 t 1 1 105730 483 0.00 2019-09-28 22:57:12 2019-09-28 23:04:11 t 1 1 105734 474 0.00 2019-09-28 20:45:10 2019-09-28 23:08:39 t 1 1 105735 501 0.00 2019-09-28 23:07:23 2019-09-28 23:09:56 t 1 1 105737 468 0.00 2019-09-28 23:00:13 2019-09-28 23:11:48 t 1 1 105739 483 0.00 2019-09-28 23:04:11 2019-09-28 23:11:54 t 1 1 105741 501 0.00 2019-09-28 23:13:44 2019-09-28 23:15:56 t 1 1 105750 483 0.00 2019-09-28 23:19:37 2019-09-28 23:29:29 t 1 1 105752 220 0.00 2019-09-28 23:04:13 2019-09-28 23:30:00 t 1 2 105754 501 0.00 2019-09-28 23:29:42 2019-09-28 23:31:36 t 1 1 105761 470 0.00 2019-09-28 22:50:26 2019-09-28 23:52:38 t 1 1 105762 361 0.00 2019-09-28 23:37:25 2019-09-28 23:55:07 t 1 2 105763 499 0.00 2019-09-29 00:02:23 2019-09-29 00:04:07 t 1 1 105764 490 0.00 2019-09-28 23:54:03 2019-09-29 00:05:18 t 1 1 105766 503 0.00 2019-09-29 00:17:38 2019-09-29 00:23:29 t 1 1 105769 501 0.00 2019-09-29 00:54:31 2019-09-29 01:00:53 t 1 1 105773 501 0.00 2019-09-29 01:04:39 2019-09-29 01:06:54 t 1 1 105778 461 0.00 2019-09-29 01:11:27 2019-09-29 01:21:18 t 1 2 105787 422 0.00 2019-09-29 01:26:10 2019-09-29 01:44:28 t 1 1 105789 422 0.00 2019-09-29 01:48:59 2019-09-29 01:53:27 t 1 1 105793 499 0.00 2019-09-29 02:59:04 2019-09-29 03:20:12 t 1 1 105796 445 0.00 2019-09-29 04:04:27 2019-09-29 04:05:18 t 1 1 105801 445 0.00 2019-09-29 05:54:05 2019-09-29 05:57:20 t 1 1 105802 445 0.00 2019-09-29 06:10:42 2019-09-29 06:13:56 t 1 1 105807 220 0.00 2019-09-29 06:34:01 2019-09-29 06:40:25 t 1 2 105812 220 0.00 2019-09-29 07:15:50 2019-09-29 07:17:40 t 1 2 105817 306 0.00 2019-09-29 07:36:42 2019-09-29 07:45:57 t 1 1 105822 420 0.00 2019-09-29 08:10:04 2019-09-29 08:10:33 t 1 1 105829 306 0.00 2019-09-29 08:46:13 2019-09-29 08:49:44 t 1 1 105831 420 0.00 2019-09-29 08:51:25 2019-09-29 08:51:49 t 1 1 105835 490 0.00 2019-09-29 08:43:40 2019-09-29 09:03:48 t 1 1 105836 416 0.00 2019-09-29 09:03:11 2019-09-29 09:09:08 t 1 1 105839 501 0.00 2019-09-29 09:12:07 2019-09-29 09:13:54 t 1 1 105840 506 0.00 2019-09-29 09:16:36 2019-09-29 09:19:07 t 1 1 105842 481 0.00 2019-09-29 07:54:05 2019-09-29 09:22:27 t 1 1 105844 424 0.00 2019-09-29 08:22:16 2019-09-29 09:29:37 t 1 2 105845 464 0.00 2019-09-29 09:32:09 2019-09-29 09:32:25 t 1 1 105850 474 0.00 2019-09-29 09:35:55 2019-09-29 09:40:24 t 1 1 105855 506 0.00 2019-09-29 09:49:06 2019-09-29 09:51:01 t 1 1 105856 416 0.00 2019-09-29 09:42:28 2019-09-29 09:55:09 t 1 1 105857 485 0.00 2019-09-29 09:55:47 2019-09-29 09:57:58 t 1 1 105861 416 0.00 2019-09-29 10:05:56 2019-09-29 10:07:02 t 1 1 105862 481 0.00 2019-09-29 09:22:27 2019-09-29 10:09:51 t 1 1 105865 247 0.00 2019-09-29 10:11:22 2019-09-29 10:13:09 t 1 2 105869 470 0.00 2019-09-29 10:22:01 2019-09-29 10:26:10 t 1 1 105874 306 0.00 2019-09-29 10:31:56 2019-09-29 10:40:28 t 1 1 105879 416 0.00 2019-09-29 10:45:19 2019-09-29 10:50:37 t 1 1 105888 422 0.00 2019-09-29 11:09:42 2019-09-29 11:15:12 t 1 1 105892 422 0.00 2019-09-29 11:15:12 2019-09-29 11:24:33 t 1 1 105899 379 0.00 2019-09-29 11:32:57 2019-09-29 11:40:01 t 1 1 105903 296 0.00 2019-09-29 10:45:23 2019-09-29 11:43:46 t 1 2 105912 422 0.00 2019-09-29 12:02:24 2019-09-29 12:02:57 t 1 1 105913 379 0.00 2019-09-29 11:40:01 2019-09-29 12:08:33 t 1 1 105915 306 0.00 2019-09-29 12:15:25 2019-09-29 12:20:52 t 1 1 105920 416 0.00 2019-09-29 12:29:01 2019-09-29 12:29:48 t 1 1 105921 416 0.00 2019-09-29 12:29:48 2019-09-29 12:30:54 t 1 1 105923 327 0.00 2019-09-29 12:34:54 2019-09-29 12:36:40 t 1 1 105924 501 0.00 2019-09-29 12:35:49 2019-09-29 12:38:08 t 1 1 105930 424 0.00 2019-09-29 12:44:01 2019-09-29 12:48:24 t 1 2 105936 474 0.00 2019-09-29 12:52:06 2019-09-29 12:56:26 t 1 1 105939 339 0.00 2019-09-29 12:43:36 2019-09-29 13:03:07 t 1 2 105946 490 0.00 2019-09-29 13:12:13 2019-09-29 13:14:33 t 1 1 105952 451 0.00 2019-09-29 13:15:01 2019-09-29 13:25:22 t 1 1 105953 464 0.00 2019-09-29 13:26:01 2019-09-29 13:30:32 t 1 1 105733 501 0.00 2019-09-28 23:05:33 2019-09-28 23:07:23 t 1 1 105736 327 0.00 2019-09-28 23:08:58 2019-09-28 23:11:01 t 1 1 105743 483 0.00 2019-09-28 23:11:54 2019-09-28 23:19:37 t 1 1 105746 327 0.00 2019-09-28 23:20:57 2019-09-28 23:21:30 t 1 1 105747 501 0.00 2019-09-28 23:19:59 2019-09-28 23:23:03 t 1 1 105749 501 0.00 2019-09-28 23:25:40 2019-09-28 23:27:34 t 1 1 105751 501 0.00 2019-09-28 23:27:34 2019-09-28 23:29:42 t 1 1 105760 422 0.00 2019-09-28 22:08:40 2019-09-28 23:43:38 t 1 1 105765 220 0.00 2019-09-29 00:00:37 2019-09-29 00:14:49 t 1 1 105767 422 0.00 2019-09-28 23:43:38 2019-09-29 00:49:01 t 1 1 105771 501 0.00 2019-09-29 01:02:45 2019-09-29 01:04:39 t 1 1 105774 501 0.00 2019-09-29 01:06:54 2019-09-29 01:08:51 t 1 1 105775 422 0.00 2019-09-29 01:06:45 2019-09-29 01:13:16 t 1 1 105777 501 0.00 2019-09-29 01:15:31 2019-09-29 01:17:28 t 1 1 105780 501 0.00 2019-09-29 01:21:18 2019-09-29 01:23:10 t 1 1 105785 501 0.00 2019-09-29 01:28:56 2019-09-29 01:32:29 t 1 1 105788 422 0.00 2019-09-29 01:44:28 2019-09-29 01:48:59 t 1 1 105791 470 0.00 2019-09-29 02:21:55 2019-09-29 02:23:30 t 1 1 105800 445 0.00 2019-09-29 05:48:20 2019-09-29 05:52:22 t 1 1 105804 445 0.00 2019-09-29 06:19:05 2019-09-29 06:20:38 t 1 1 105805 456 0.00 2019-09-29 06:29:15 2019-09-29 06:33:50 t 1 1 105806 464 0.00 2019-09-29 06:37:43 2019-09-29 06:37:53 t 1 1 105808 220 0.00 2019-09-29 06:37:11 2019-09-29 06:43:15 t 1 1 105811 220 0.00 2019-09-29 06:27:31 2019-09-29 06:51:57 t 1 2 105813 306 0.00 2019-09-29 07:19:56 2019-09-29 07:21:51 t 1 1 105815 420 0.00 2019-09-29 07:39:23 2019-09-29 07:42:35 t 1 1 105816 420 0.00 2019-09-29 07:42:57 2019-09-29 07:43:43 t 1 1 105826 416 0.00 2019-09-29 08:11:10 2019-09-29 08:41:10 t 1 1 105830 416 0.00 2019-09-29 08:41:10 2019-09-29 08:50:59 t 1 1 105833 416 0.00 2019-09-29 08:53:20 2019-09-29 09:01:54 t 1 1 105841 416 0.00 2019-09-29 09:13:16 2019-09-29 09:21:01 t 1 1 105847 474 0.00 2019-09-29 09:25:23 2019-09-29 09:35:56 t 1 1 105848 416 0.00 2019-09-29 09:29:00 2019-09-29 09:39:36 t 1 1 105852 416 0.00 2019-09-29 09:40:17 2019-09-29 09:42:02 t 1 1 105853 474 0.00 2019-09-29 09:40:26 2019-09-29 09:45:23 t 1 1 105854 506 0.00 2019-09-29 09:41:58 2019-09-29 09:49:06 t 1 1 105864 474 0.00 2019-09-29 10:11:01 2019-09-29 10:12:49 t 1 1 105866 306 0.00 2019-09-29 10:11:17 2019-09-29 10:13:29 t 1 1 105867 470 0.00 2019-09-29 09:12:49 2019-09-29 10:22:01 t 1 1 105870 481 0.00 2019-09-29 10:09:51 2019-09-29 10:30:24 t 1 1 105872 474 0.00 2019-09-29 10:15:33 2019-09-29 10:30:40 t 1 1 105873 412 0.00 2019-09-29 10:30:30 2019-09-29 10:38:49 t 1 1 105875 481 0.00 2019-09-29 10:40:28 2019-09-29 10:42:03 t 1 1 105876 327 0.00 2019-09-29 08:30:19 2019-09-29 10:44:52 t 1 1 105877 416 0.00 2019-09-29 10:14:34 2019-09-29 10:45:02 t 1 1 105878 474 0.00 2019-09-29 10:30:45 2019-09-29 10:50:02 t 1 1 105880 474 0.00 2019-09-29 10:50:04 2019-09-29 10:53:12 t 1 1 105883 474 0.00 2019-09-29 10:56:41 2019-09-29 10:57:42 t 1 1 105884 422 0.00 2019-09-29 11:00:08 2019-09-29 11:09:42 t 1 1 105886 416 0.00 2019-09-29 10:51:48 2019-09-29 11:10:26 t 1 1 105890 379 0.00 2019-09-29 08:45:18 2019-09-29 11:19:58 t 1 1 105893 325 0.00 2019-09-29 11:02:12 2019-09-29 11:27:17 t 1 2 105894 422 0.00 2019-09-29 11:24:33 2019-09-29 11:29:36 t 1 1 105895 379 0.00 2019-09-29 11:19:58 2019-09-29 11:32:57 t 1 1 105896 422 0.00 2019-09-29 11:29:36 2019-09-29 11:36:47 t 1 1 105897 501 0.00 2019-09-29 11:26:50 2019-09-29 11:37:17 t 1 1 105902 422 0.00 2019-09-29 11:36:47 2019-09-29 11:43:43 t 1 1 105905 501 0.00 2019-09-29 11:44:51 2019-09-29 11:44:59 t 1 1 105906 481 0.00 2019-09-29 11:44:22 2019-09-29 11:46:21 t 1 1 105907 501 0.00 2019-09-29 11:45:37 2019-09-29 11:47:08 t 1 1 105909 481 0.00 2019-09-29 11:48:08 2019-09-29 11:49:09 t 1 1 105910 422 0.00 2019-09-29 11:53:45 2019-09-29 11:59:45 t 1 1 105911 501 0.00 2019-09-29 11:59:45 2019-09-29 12:02:24 t 1 1 105925 247 0.00 2019-09-29 12:31:40 2019-09-29 12:38:18 t 1 2 105929 474 0.00 2019-09-29 12:44:48 2019-09-29 12:46:58 t 1 1 105932 416 0.00 2019-09-29 12:45:01 2019-09-29 12:49:16 t 1 1 105934 481 0.00 2019-09-29 11:49:08 2019-09-29 12:51:48 t 1 1 105942 430 0.00 2019-09-29 12:44:59 2019-09-29 13:08:14 t 1 1 105943 456 0.00 2019-09-29 13:10:07 2019-09-29 13:10:07 f 1 1 105947 412 0.00 2019-09-29 12:48:59 2019-09-29 13:15:08 t 1 1 105951 296 0.00 2019-09-29 13:19:39 2019-09-29 13:22:02 t 1 2 105955 464 0.00 2019-09-29 13:33:59 2019-09-29 13:34:42 t 1 1 105956 451 0.00 2019-09-29 13:25:22 2019-09-29 13:35:22 t 1 1 105958 424 0.00 2019-09-29 13:06:19 2019-09-29 13:43:50 t 1 2 105960 327 0.00 2019-09-29 13:39:46 2019-09-29 13:56:56 t 1 1 105962 422 0.00 2019-09-29 13:21:31 2019-09-29 14:12:50 t 1 1 105964 430 0.00 2019-09-29 13:50:52 2019-09-29 14:14:40 t 1 1 105968 487 0.00 2019-09-29 13:20:17 2019-09-29 14:20:22 t 1 2 105970 485 0.00 2019-09-29 14:15:27 2019-09-29 14:21:41 t 1 1 105974 327 0.00 2019-09-29 14:26:03 2019-09-29 14:30:47 t 1 1 105976 481 0.00 2019-09-29 14:20:00 2019-09-29 14:31:35 t 1 1 105978 247 0.00 2019-09-29 14:32:45 2019-09-29 14:34:30 t 1 2 105980 501 0.00 2019-09-29 14:35:14 2019-09-29 14:35:25 t 1 1 105982 501 0.00 2019-09-29 14:35:53 2019-09-29 14:36:57 t 1 1 105987 470 0.00 2019-09-29 10:26:10 2019-09-29 14:51:01 t 1 1 105989 430 0.00 2019-09-29 14:45:44 2019-09-29 14:56:14 t 1 1 105991 420 0.00 2019-09-29 14:59:12 2019-09-29 15:01:34 t 1 1 105993 327 0.00 2019-09-29 15:02:52 2019-09-29 15:03:25 t 1 1 105997 220 0.00 2019-09-29 15:12:33 2019-09-29 15:12:34 t 1 1 105998 470 0.00 2019-09-29 14:51:01 2019-09-29 15:12:56 t 1 1 106003 327 0.00 2019-09-29 15:13:21 2019-09-29 15:14:27 t 1 1 106004 220 0.00 2019-09-29 15:14:51 2019-09-29 15:16:19 t 1 1 106005 220 0.00 2019-09-29 15:16:19 2019-09-29 15:17:27 t 1 1 106006 470 0.00 2019-09-29 15:12:56 2019-09-29 15:21:30 t 1 1 106018 474 0.00 2019-09-29 15:39:54 2019-09-29 15:44:13 t 1 1 106021 292 0.00 2019-09-29 15:17:26 2019-09-29 15:47:31 t 1 2 106024 327 0.00 2019-09-29 15:48:08 2019-09-29 15:49:08 t 1 1 106027 327 0.00 2019-09-29 15:59:04 2019-09-29 16:03:06 t 1 1 106028 485 0.00 2019-09-29 16:04:29 2019-09-29 16:08:06 t 1 1 106033 470 0.00 2019-09-29 15:49:19 2019-09-29 16:13:13 t 1 1 106034 474 0.00 2019-09-29 15:52:13 2019-09-29 16:16:05 t 1 1 106035 412 0.00 2019-09-29 16:15:24 2019-09-29 16:18:36 t 1 1 106036 430 0.00 2019-09-29 15:43:32 2019-09-29 16:19:10 t 1 1 106037 430 0.00 2019-09-29 16:19:10 2019-09-29 16:22:26 t 1 1 106041 485 0.00 2019-09-29 16:22:33 2019-09-29 16:27:02 t 1 1 106048 327 0.00 2019-09-29 16:48:13 2019-09-29 16:48:22 t 1 1 106052 470 0.00 2019-09-29 16:38:33 2019-09-29 17:00:23 t 1 1 105898 474 0.00 2019-09-29 11:20:20 2019-09-29 11:39:06 t 1 1 105900 464 0.00 2019-09-29 11:39:13 2019-09-29 11:40:11 t 1 1 105901 306 0.00 2019-09-29 11:30:01 2019-09-29 11:42:27 t 1 1 105904 422 0.00 2019-09-29 11:43:43 2019-09-29 11:44:22 t 1 1 105908 422 0.00 2019-09-29 11:46:21 2019-09-29 11:47:39 t 1 1 105914 327 0.00 2019-09-29 11:30:28 2019-09-29 12:20:23 t 1 1 105916 220 0.00 2019-09-29 11:51:30 2019-09-29 12:21:17 t 1 1 105917 490 0.00 2019-09-29 12:18:42 2019-09-29 12:22:47 t 1 1 105918 327 0.00 2019-09-29 12:21:26 2019-09-29 12:26:54 t 1 1 105919 416 0.00 2019-09-29 11:37:49 2019-09-29 12:28:26 t 1 1 105922 464 0.00 2019-09-29 12:34:27 2019-09-29 12:36:05 t 1 1 105926 339 0.00 2019-09-29 12:17:28 2019-09-29 12:40:51 t 1 2 105927 416 0.00 2019-09-29 12:31:18 2019-09-29 12:44:55 t 1 1 105928 430 0.00 2019-09-29 12:41:48 2019-09-29 12:44:59 t 1 1 105931 412 0.00 2019-09-29 10:38:56 2019-09-29 12:48:59 t 1 1 105933 422 0.00 2019-09-29 12:49:16 2019-09-29 12:49:59 t 1 1 105935 474 0.00 2019-09-29 12:46:58 2019-09-29 12:52:06 t 1 1 105937 474 0.00 2019-09-29 12:57:09 2019-09-29 12:59:43 t 1 1 105938 416 0.00 2019-09-29 12:52:16 2019-09-29 13:02:10 t 1 1 105940 416 0.00 2019-09-29 13:03:52 2019-09-29 13:04:57 t 1 1 105941 464 0.00 2019-09-29 12:46:22 2019-09-29 13:07:56 t 1 1 105944 451 0.00 2019-09-29 13:08:55 2019-09-29 13:11:19 t 1 1 105945 456 0.00 2019-09-29 13:10:23 2019-09-29 13:14:26 t 1 1 105948 488 0.00 2019-09-29 13:15:22 2019-09-29 13:16:51 t 1 1 105949 306 0.00 2019-09-29 13:14:22 2019-09-29 13:21:12 t 1 1 105950 327 0.00 2019-09-29 12:45:08 2019-09-29 13:21:58 t 1 1 105959 379 0.00 2019-09-29 12:08:33 2019-09-29 13:54:16 t 1 1 105963 451 0.00 2019-09-29 14:11:17 2019-09-29 14:14:27 t 1 1 105966 422 0.00 2019-09-29 14:12:50 2019-09-29 14:17:41 t 1 1 105967 481 0.00 2019-09-29 12:51:48 2019-09-29 14:20:00 t 1 1 105969 430 0.00 2019-09-29 14:17:41 2019-09-29 14:20:25 t 1 1 105972 451 0.00 2019-09-29 14:14:35 2019-09-29 14:25:20 t 1 1 105977 412 0.00 2019-09-29 13:15:08 2019-09-29 14:34:22 t 1 1 105979 501 0.00 2019-09-29 14:28:26 2019-09-29 14:34:38 t 1 1 105985 464 0.00 2019-09-29 14:46:40 2019-09-29 14:47:52 t 1 1 105996 474 0.00 2019-09-29 14:22:19 2019-09-29 15:08:50 t 1 1 105999 220 0.00 2019-09-29 15:12:34 2019-09-29 15:13:09 t 1 1 106000 220 0.00 2019-09-29 15:13:08 2019-09-29 15:13:44 t 1 1 106001 220 0.00 2019-09-29 15:13:44 2019-09-29 15:14:18 t 1 1 106007 508 0.00 2019-09-29 13:07:15 2019-09-29 15:23:47 t 1 2 106008 327 0.00 2019-09-29 15:24:23 2019-09-29 15:25:26 t 1 1 106011 481 0.00 2019-09-29 14:32:01 2019-09-29 15:27:07 t 1 1 106014 327 0.00 2019-09-29 15:35:22 2019-09-29 15:35:55 t 1 1 106015 430 0.00 2019-09-29 15:05:57 2019-09-29 15:37:14 t 1 1 106016 474 0.00 2019-09-29 15:26:01 2019-09-29 15:39:49 t 1 1 106019 220 0.00 2019-09-29 14:32:57 2019-09-29 15:45:12 t 1 2 106020 325 0.00 2019-09-29 15:12:47 2019-09-29 15:46:34 t 1 2 106026 474 0.00 2019-09-29 15:44:19 2019-09-29 15:52:11 t 1 1 106038 485 0.00 2019-09-29 16:13:14 2019-09-29 16:22:33 t 1 1 106039 327 0.00 2019-09-29 16:22:06 2019-09-29 16:23:12 t 1 1 106042 306 0.00 2019-09-29 16:13:39 2019-09-29 16:30:14 t 1 1 106043 296 0.00 2019-09-29 16:30:04 2019-09-29 16:34:27 t 1 2 106046 451 0.00 2019-09-29 16:27:29 2019-09-29 16:40:39 t 1 1 106047 327 0.00 2019-09-29 16:44:41 2019-09-29 16:48:06 t 1 1 106050 464 0.00 2019-09-29 16:49:58 2019-09-29 16:52:35 t 1 1 106051 451 0.00 2019-09-29 16:50:11 2019-09-29 17:00:13 t 1 1 106057 464 0.00 2019-09-29 17:09:06 2019-09-29 17:11:05 t 1 1 106064 420 0.00 2019-09-29 17:12:15 2019-09-29 17:16:46 t 1 1 106067 220 0.00 2019-09-29 17:21:29 2019-09-29 17:21:29 f 1 2 106070 420 0.00 2019-09-29 17:16:52 2019-09-29 17:22:32 t 1 1 106072 306 0.00 2019-09-29 17:21:48 2019-09-29 17:23:27 t 1 1 106075 501 0.00 2019-09-29 17:21:01 2019-09-29 17:24:46 t 1 1 106077 220 0.00 2019-09-29 17:25:42 2019-09-29 17:25:42 f 1 2 106084 485 0.00 2019-09-29 17:26:09 2019-09-29 17:28:34 t 1 1 106085 327 0.00 2019-09-29 17:18:12 2019-09-29 17:29:40 t 1 1 106088 220 0.00 2019-09-29 17:27:20 2019-09-29 17:32:16 t 1 1 106090 451 0.00 2019-09-29 17:26:15 2019-09-29 17:35:13 t 1 1 106092 424 0.00 2019-09-29 17:23:21 2019-09-29 17:36:45 t 1 2 106100 485 0.00 2019-09-29 17:46:01 2019-09-29 17:50:08 t 1 1 106103 501 0.00 2019-09-29 17:53:43 2019-09-29 17:58:17 t 1 1 106104 445 0.00 2019-09-29 17:35:53 2019-09-29 17:59:12 t 1 1 106109 327 0.00 2019-09-29 18:03:52 2019-09-29 18:05:41 t 1 1 106110 296 0.00 2019-09-29 17:57:06 2019-09-29 18:07:30 t 1 2 106114 474 0.00 2019-09-29 18:09:46 2019-09-29 18:11:07 t 1 1 106116 462 0.00 2019-09-29 17:55:42 2019-09-29 18:13:19 t 1 1 106120 445 0.00 2019-09-29 18:15:16 2019-09-29 18:16:28 t 1 1 106126 445 0.00 2019-09-29 18:25:34 2019-09-29 18:27:23 t 1 1 106127 361 0.00 2019-09-29 17:37:49 2019-09-29 18:30:53 t 1 2 106130 464 0.00 2019-09-29 18:39:14 2019-09-29 18:40:26 t 1 1 106132 420 0.00 2019-09-29 18:37:35 2019-09-29 18:41:07 t 1 1 106134 470 0.00 2019-09-29 17:54:34 2019-09-29 18:44:33 t 1 1 106137 485 0.00 2019-09-29 18:39:23 2019-09-29 18:55:09 t 1 1 106140 510 0.00 2019-09-29 18:56:10 2019-09-29 18:59:13 t 1 1 106144 481 0.00 2019-09-29 19:02:00 2019-09-29 19:04:46 t 1 1 106148 485 0.00 2019-09-29 19:05:36 2019-09-29 19:12:21 t 1 1 106149 412 0.00 2019-09-29 19:12:10 2019-09-29 19:16:07 t 1 1 106153 470 0.00 2019-09-29 18:46:17 2019-09-29 19:22:36 t 1 1 106156 430 0.00 2019-09-29 19:18:01 2019-09-29 19:26:09 t 1 1 106157 464 0.00 2019-09-29 19:26:41 2019-09-29 19:27:11 t 1 1 106159 220 0.00 2019-09-29 18:39:32 2019-09-29 19:32:07 t 1 1 106161 331 0.00 2019-09-29 18:53:41 2019-09-29 19:36:06 t 1 1 106162 424 0.00 2019-09-29 19:29:18 2019-09-29 19:38:41 t 1 2 106163 430 0.00 2019-09-29 19:39:04 2019-09-29 19:39:15 t 1 1 106165 220 0.00 2019-09-29 19:34:05 2019-09-29 19:42:16 t 1 1 106167 220 0.00 2019-09-29 19:42:16 2019-09-29 19:43:14 t 1 1 106169 445 0.00 2019-09-29 18:59:04 2019-09-29 19:43:43 t 1 1 106170 412 0.00 2019-09-29 19:41:19 2019-09-29 19:44:55 t 1 1 106172 331 0.00 2019-09-29 19:36:06 2019-09-29 19:50:18 t 1 1 106174 424 0.00 2019-09-29 19:42:31 2019-09-29 19:53:32 t 1 2 106179 422 0.00 2019-09-29 19:24:01 2019-09-29 20:01:04 t 1 1 106186 474 0.00 2019-09-29 20:10:40 2019-09-29 20:24:34 t 1 1 106187 422 0.00 2019-09-29 20:18:18 2019-09-29 20:25:02 t 1 1 106189 220 0.00 2019-09-29 20:28:16 2019-09-29 20:28:16 f 1 2 106193 422 0.00 2019-09-29 20:25:02 2019-09-29 20:31:44 t 1 1 106198 462 0.00 2019-09-29 20:32:29 2019-09-29 20:35:52 t 1 1 106204 327 0.00 2019-09-29 20:23:36 2019-09-29 20:52:45 t 1 1 106205 327 0.00 2019-09-29 20:52:56 2019-09-29 20:52:57 t 1 1 105954 220 0.00 2019-09-29 12:31:35 2019-09-29 13:31:59 t 1 2 105957 327 0.00 2019-09-29 13:21:58 2019-09-29 13:39:46 t 1 1 105961 379 0.00 2019-09-29 13:54:16 2019-09-29 13:59:21 t 1 1 105965 327 0.00 2019-09-29 13:56:56 2019-09-29 14:16:12 t 1 1 105971 474 0.00 2019-09-29 13:10:11 2019-09-29 14:22:18 t 1 1 105973 296 0.00 2019-09-29 14:23:35 2019-09-29 14:27:56 t 1 2 105975 296 0.00 2019-09-29 14:29:51 2019-09-29 14:31:14 t 1 2 105981 501 0.00 2019-09-29 14:35:34 2019-09-29 14:35:45 t 1 1 105983 430 0.00 2019-09-29 14:22:50 2019-09-29 14:38:19 t 1 1 105984 327 0.00 2019-09-29 14:40:11 2019-09-29 14:41:54 t 1 1 105986 464 0.00 2019-09-29 14:50:55 2019-09-29 14:50:58 t 1 1 105988 327 0.00 2019-09-29 14:51:49 2019-09-29 14:52:57 t 1 1 105990 451 0.00 2019-09-29 14:55:00 2019-09-29 14:59:45 t 1 1 105992 220 0.00 2019-09-29 14:54:04 2019-09-29 15:02:00 t 1 1 105994 220 0.00 2019-09-29 15:02:00 2019-09-29 15:04:22 t 1 1 105995 306 0.00 2019-09-29 14:46:31 2019-09-29 15:05:23 t 1 1 106002 220 0.00 2019-09-29 15:14:18 2019-09-29 15:14:23 t 1 1 106009 474 0.00 2019-09-29 15:12:44 2019-09-29 15:25:52 t 1 1 106010 361 0.00 2019-09-29 13:49:51 2019-09-29 15:26:50 t 1 2 106012 402 0.00 2019-09-29 15:29:11 2019-09-29 15:29:11 f 1 2 106013 498 0.00 2019-09-29 14:35:19 2019-09-29 15:30:30 t 1 2 106017 379 0.00 2019-09-29 13:59:21 2019-09-29 15:40:43 t 1 1 106022 327 0.00 2019-09-29 15:45:52 2019-09-29 15:47:57 t 1 1 106023 508 0.00 2019-09-29 15:23:51 2019-09-29 15:49:03 t 1 2 106025 470 0.00 2019-09-29 15:21:30 2019-09-29 15:49:19 t 1 1 106029 508 0.00 2019-09-29 16:02:02 2019-09-29 16:09:16 t 1 2 106030 485 0.00 2019-09-29 16:08:06 2019-09-29 16:10:46 t 1 1 106031 412 0.00 2019-09-29 14:34:22 2019-09-29 16:12:15 t 1 1 106032 327 0.00 2019-09-29 16:12:30 2019-09-29 16:13:03 t 1 1 106040 470 0.00 2019-09-29 16:13:13 2019-09-29 16:23:55 t 1 1 106044 327 0.00 2019-09-29 16:33:08 2019-09-29 16:34:45 t 1 1 106045 470 0.00 2019-09-29 16:23:55 2019-09-29 16:38:33 t 1 1 106049 451 0.00 2019-09-29 16:40:39 2019-09-29 16:50:11 t 1 1 106053 327 0.00 2019-09-29 16:58:43 2019-09-29 17:00:47 t 1 1 106054 488 0.00 2019-09-29 17:01:19 2019-09-29 17:07:24 t 1 1 106056 306 0.00 2019-09-29 17:07:31 2019-09-29 17:09:18 t 1 1 106058 416 0.00 2019-09-29 13:05:28 2019-09-29 17:11:08 t 1 1 106060 379 0.00 2019-09-29 15:40:43 2019-09-29 17:11:52 t 1 1 106068 485 0.00 2019-09-29 17:11:43 2019-09-29 17:21:30 t 1 1 106071 220 0.00 2019-09-29 17:23:14 2019-09-29 17:23:14 f 1 2 106074 220 0.00 2019-09-29 17:23:44 2019-09-29 17:23:44 f 1 2 106076 361 0.00 2019-09-29 16:51:52 2019-09-29 17:25:10 t 1 2 106079 451 0.00 2019-09-29 17:15:15 2019-09-29 17:26:15 t 1 1 106080 501 0.00 2019-09-29 17:24:46 2019-09-29 17:27:12 t 1 1 106086 420 0.00 2019-09-29 17:22:53 2019-09-29 17:31:03 t 1 1 106089 220 0.00 2019-09-29 17:31:21 2019-09-29 17:32:36 t 1 1 106096 501 0.00 2019-09-29 17:40:21 2019-09-29 17:44:43 t 1 1 106098 420 0.00 2019-09-29 17:41:57 2019-09-29 17:47:24 t 1 1 106105 416 0.00 2019-09-29 17:28:43 2019-09-29 18:00:02 t 1 1 106108 445 0.00 2019-09-29 17:59:12 2019-09-29 18:03:52 t 1 1 106111 445 0.00 2019-09-29 18:03:54 2019-09-29 18:07:42 t 1 1 106113 498 0.00 2019-09-29 17:50:34 2019-09-29 18:10:39 t 1 2 106117 445 0.00 2019-09-29 18:09:58 2019-09-29 18:13:24 t 1 1 106119 464 0.00 2019-09-29 18:13:53 2019-09-29 18:16:19 t 1 1 106123 464 0.00 2019-09-29 18:16:22 2019-09-29 18:18:15 t 1 1 106128 420 0.00 2019-09-29 18:11:33 2019-09-29 18:37:35 t 1 1 106129 510 0.00 2019-09-29 18:20:50 2019-09-29 18:38:19 t 1 1 106133 488 0.00 2019-09-29 18:33:53 2019-09-29 18:43:18 t 1 1 106135 510 0.00 2019-09-29 18:38:19 2019-09-29 18:44:36 t 1 1 106138 510 0.00 2019-09-29 18:44:36 2019-09-29 18:56:11 t 1 1 106141 430 0.00 2019-09-29 18:57:14 2019-09-29 19:00:35 t 1 1 106142 464 0.00 2019-09-29 19:01:36 2019-09-29 19:01:56 t 1 1 106143 485 0.00 2019-09-29 19:00:33 2019-09-29 19:03:33 t 1 1 106146 306 0.00 2019-09-29 19:02:34 2019-09-29 19:06:45 t 1 1 106151 422 0.00 2019-09-29 18:00:02 2019-09-29 19:17:58 t 1 1 106155 416 0.00 2019-09-29 19:17:58 2019-09-29 19:24:01 t 1 1 106158 456 0.00 2019-09-29 19:18:29 2019-09-29 19:28:17 t 1 1 106166 464 0.00 2019-09-29 19:42:31 2019-09-29 19:42:46 t 1 1 106168 485 0.00 2019-09-29 19:41:36 2019-09-29 19:43:37 t 1 1 106175 428 0.00 2019-09-29 19:51:41 2019-09-29 19:53:48 t 1 1 106177 428 0.00 2019-09-29 19:55:44 2019-09-29 19:57:34 t 1 1 106178 296 0.00 2019-09-29 19:44:44 2019-09-29 19:59:07 t 1 2 106181 451 0.00 2019-09-29 19:59:26 2019-09-29 20:08:36 t 1 1 106183 462 0.00 2019-09-29 19:47:14 2019-09-29 20:17:08 t 1 1 106184 422 0.00 2019-09-29 20:01:04 2019-09-29 20:18:18 t 1 1 106185 510 0.00 2019-09-29 20:12:14 2019-09-29 20:21:29 t 1 1 106188 220 0.00 2019-09-29 20:28:04 2019-09-29 20:28:04 f 1 2 106191 412 0.00 2019-09-29 20:25:34 2019-09-29 20:29:34 t 1 1 106194 462 0.00 2019-09-29 20:29:31 2019-09-29 20:32:29 t 1 1 106196 464 0.00 2019-09-29 20:33:25 2019-09-29 20:34:41 t 1 1 106201 422 0.00 2019-09-29 20:31:44 2019-09-29 20:38:22 t 1 1 106203 510 0.00 2019-09-29 20:36:45 2019-09-29 20:48:58 t 1 1 106207 327 0.00 2019-09-29 20:54:02 2019-09-29 20:54:53 t 1 1 106211 331 0.00 2019-09-29 20:42:15 2019-09-29 20:58:25 t 1 1 106222 327 0.00 2019-09-29 21:07:14 2019-09-29 21:07:41 t 1 1 106224 327 0.00 2019-09-29 21:12:19 2019-09-29 21:13:15 t 1 1 106225 327 0.00 2019-09-29 21:13:49 2019-09-29 21:14:19 t 1 1 106229 220 0.00 2019-09-29 21:02:19 2019-09-29 21:18:42 t 1 2 106230 430 0.00 2019-09-29 21:10:00 2019-09-29 21:19:07 t 1 1 106236 430 0.00 2019-09-29 21:19:07 2019-09-29 21:24:50 t 1 1 106238 327 0.00 2019-09-29 21:25:40 2019-09-29 21:28:31 t 1 1 106239 327 0.00 2019-09-29 21:28:53 2019-09-29 21:29:54 t 1 1 106242 327 0.00 2019-09-29 21:31:00 2019-09-29 21:31:31 t 1 1 106244 327 0.00 2019-09-29 21:31:38 2019-09-29 21:32:37 t 1 1 106245 416 0.00 2019-09-29 20:58:31 2019-09-29 21:33:18 t 1 1 106246 416 0.00 2019-09-29 21:33:28 2019-09-29 21:34:27 t 1 1 106252 331 0.00 2019-09-29 21:39:29 2019-09-29 21:41:17 t 1 1 106256 379 0.00 2019-09-29 17:57:01 2019-09-29 21:46:23 t 1 1 106259 331 0.00 2019-09-29 21:41:16 2019-09-29 21:47:52 t 1 1 106260 464 0.00 2019-09-29 21:48:11 2019-09-29 21:48:41 t 1 1 106267 212 0.00 2019-09-29 21:54:34 2019-09-29 21:54:39 t 1 2 106268 510 0.00 2019-09-29 21:49:23 2019-09-29 21:55:35 t 1 1 106270 416 0.00 2019-09-29 21:54:02 2019-09-29 21:58:22 t 1 1 106273 451 0.00 2019-09-29 21:58:44 2019-09-29 22:08:15 t 1 1 106276 485 0.00 2019-09-29 22:13:57 2019-09-29 22:15:09 t 1 1 106279 220 0.00 2019-09-29 21:03:14 2019-09-29 22:23:08 t 1 1 106281 220 0.00 2019-09-29 22:23:00 2019-09-29 22:23:42 t 1 1 106055 451 0.00 2019-09-29 17:00:13 2019-09-29 17:08:17 t 1 1 106059 485 0.00 2019-09-29 17:06:36 2019-09-29 17:11:43 t 1 1 106061 488 0.00 2019-09-29 17:07:24 2019-09-29 17:11:55 t 1 1 106062 451 0.00 2019-09-29 17:08:17 2019-09-29 17:15:15 t 1 1 106063 488 0.00 2019-09-29 17:11:55 2019-09-29 17:16:22 t 1 1 106065 327 0.00 2019-09-29 17:00:54 2019-09-29 17:18:12 t 1 1 106066 220 0.00 2019-09-29 17:20:30 2019-09-29 17:20:30 f 1 2 106069 424 0.00 2019-09-29 17:12:09 2019-09-29 17:21:33 t 1 2 106073 220 0.00 2019-09-29 17:23:28 2019-09-29 17:23:28 f 1 2 106078 485 0.00 2019-09-29 17:22:09 2019-09-29 17:26:09 t 1 1 106081 416 0.00 2019-09-29 17:10:11 2019-09-29 17:27:20 t 1 1 106082 220 0.00 2019-09-29 17:08:59 2019-09-29 17:27:21 t 1 1 106083 422 0.00 2019-09-29 17:27:20 2019-09-29 17:28:33 t 1 1 106087 501 0.00 2019-09-29 17:27:21 2019-09-29 17:31:06 t 1 1 106091 501 0.00 2019-09-29 17:31:06 2019-09-29 17:35:45 t 1 1 106093 451 0.00 2019-09-29 17:35:13 2019-09-29 17:39:03 t 1 1 106094 501 0.00 2019-09-29 17:35:45 2019-09-29 17:40:21 t 1 1 106095 220 0.00 2019-09-29 17:41:58 2019-09-29 17:42:09 t 1 2 106097 510 0.00 2019-09-29 17:45:54 2019-09-29 17:46:15 t 1 1 106099 501 0.00 2019-09-29 17:44:43 2019-09-29 17:49:13 t 1 1 106101 501 0.00 2019-09-29 17:49:13 2019-09-29 17:53:43 t 1 1 106102 470 0.00 2019-09-29 17:00:23 2019-09-29 17:54:34 t 1 1 106106 501 0.00 2019-09-29 17:58:17 2019-09-29 18:02:50 t 1 1 106107 461 0.00 2019-09-29 17:16:57 2019-09-29 18:03:22 t 1 2 106112 501 0.00 2019-09-29 18:02:50 2019-09-29 18:10:30 t 1 1 106115 510 0.00 2019-09-29 17:47:53 2019-09-29 18:11:42 t 1 1 106118 445 0.00 2019-09-29 18:13:25 2019-09-29 18:15:26 t 1 1 106121 501 0.00 2019-09-29 18:10:30 2019-09-29 18:16:36 t 1 1 106122 501 0.00 2019-09-29 18:16:36 2019-09-29 18:17:51 t 1 1 106124 510 0.00 2019-09-29 18:11:42 2019-09-29 18:20:50 t 1 1 106125 445 0.00 2019-09-29 18:16:32 2019-09-29 18:24:09 t 1 1 106131 445 0.00 2019-09-29 18:27:40 2019-09-29 18:41:00 t 1 1 106136 445 0.00 2019-09-29 18:42:08 2019-09-29 18:49:39 t 1 1 106139 445 0.00 2019-09-29 18:49:35 2019-09-29 18:58:49 t 1 1 106145 430 0.00 2019-09-29 19:02:46 2019-09-29 19:05:52 t 1 1 106147 220 0.00 2019-09-29 19:12:14 2019-09-29 19:12:14 f 1 2 106150 220 0.00 2019-09-29 18:55:52 2019-09-29 19:17:09 t 1 2 106152 481 0.00 2019-09-29 19:05:01 2019-09-29 19:18:33 t 1 1 106154 412 0.00 2019-09-29 19:18:34 2019-09-29 19:23:24 t 1 1 106160 412 0.00 2019-09-29 19:27:20 2019-09-29 19:33:55 t 1 1 106164 510 0.00 2019-09-29 18:59:12 2019-09-29 19:41:31 t 1 1 106171 510 0.00 2019-09-29 19:41:31 2019-09-29 19:49:20 t 1 1 106173 456 0.00 2019-09-29 19:28:16 2019-09-29 19:51:19 t 1 1 106176 510 0.00 2019-09-29 19:49:20 2019-09-29 19:55:02 t 1 1 106180 510 0.00 2019-09-29 19:55:02 2019-09-29 20:01:37 t 1 1 106182 510 0.00 2019-09-29 20:01:37 2019-09-29 20:12:14 t 1 1 106190 462 0.00 2019-09-29 20:17:08 2019-09-29 20:29:31 t 1 1 106192 428 0.00 2019-09-29 20:24:24 2019-09-29 20:29:34 t 1 1 106195 424 0.00 2019-09-29 20:23:27 2019-09-29 20:33:40 t 1 2 106197 220 0.00 2019-09-29 19:30:17 2019-09-29 20:35:40 t 1 2 106199 510 0.00 2019-09-29 20:21:29 2019-09-29 20:36:45 t 1 1 106200 306 0.00 2019-09-29 20:32:18 2019-09-29 20:37:34 t 1 1 106202 331 0.00 2019-09-29 20:35:06 2019-09-29 20:42:15 t 1 1 106208 327 0.00 2019-09-29 20:55:25 2019-09-29 20:55:55 t 1 1 106209 445 0.00 2019-09-29 19:43:38 2019-09-29 20:56:23 t 1 1 106213 306 0.00 2019-09-29 20:56:23 2019-09-29 20:58:34 t 1 1 106215 498 0.00 2019-09-29 18:25:47 2019-09-29 20:59:06 t 1 2 106217 327 0.00 2019-09-29 20:59:29 2019-09-29 21:00:36 t 1 1 106218 327 0.00 2019-09-29 21:00:46 2019-09-29 21:01:55 t 1 1 106219 327 0.00 2019-09-29 21:03:18 2019-09-29 21:03:50 t 1 1 106220 327 0.00 2019-09-29 21:04:23 2019-09-29 21:04:53 t 1 1 106223 327 0.00 2019-09-29 21:08:32 2019-09-29 21:09:04 t 1 1 106232 327 0.00 2019-09-29 21:18:56 2019-09-29 21:21:20 t 1 1 106234 331 0.00 2019-09-29 21:23:14 2019-09-29 21:24:19 t 1 1 106237 327 0.00 2019-09-29 21:22:28 2019-09-29 21:25:33 t 1 1 106240 327 0.00 2019-09-29 21:30:04 2019-09-29 21:30:34 t 1 1 106241 485 0.00 2019-09-29 21:19:30 2019-09-29 21:31:03 t 1 1 106243 510 0.00 2019-09-29 20:56:26 2019-09-29 21:32:29 t 1 1 106247 327 0.00 2019-09-29 21:32:55 2019-09-29 21:35:01 t 1 1 106248 327 0.00 2019-09-29 21:35:24 2019-09-29 21:36:27 t 1 1 106251 327 0.00 2019-09-29 21:37:50 2019-09-29 21:39:24 t 1 1 106254 430 0.00 2019-09-29 21:37:49 2019-09-29 21:46:03 t 1 1 106257 430 0.00 2019-09-29 21:46:03 2019-09-29 21:47:00 t 1 1 106262 510 0.00 2019-09-29 21:32:29 2019-09-29 21:49:23 t 1 1 106264 220 0.00 2019-09-29 21:32:02 2019-09-29 21:51:25 t 1 2 106265 445 0.00 2019-09-29 21:00:22 2019-09-29 21:52:13 t 1 1 106272 327 0.00 2019-09-29 21:39:49 2019-09-29 22:06:21 t 1 1 106275 451 0.00 2019-09-29 22:08:14 2019-09-29 22:12:22 t 1 1 106280 485 0.00 2019-09-29 22:20:24 2019-09-29 22:23:23 t 1 1 106283 220 0.00 2019-09-29 22:23:42 2019-09-29 22:24:38 t 1 1 106284 220 0.00 2019-09-29 22:24:35 2019-09-29 22:25:12 t 1 1 106290 472 0.00 2019-09-29 22:37:08 2019-09-29 22:37:29 t 1 1 106296 472 0.00 2019-09-29 22:40:59 2019-09-29 22:41:07 t 1 1 106298 220 0.00 2019-09-29 22:27:27 2019-09-29 22:41:42 t 1 1 106302 220 0.00 2019-09-29 22:43:10 2019-09-29 22:43:19 t 1 1 106304 327 0.00 2019-09-29 22:30:09 2019-09-29 22:43:36 t 1 1 106306 220 0.00 2019-09-29 22:43:43 2019-09-29 22:43:58 t 1 1 106308 296 0.00 2019-09-29 22:24:57 2019-09-29 22:44:18 t 1 2 106312 481 0.00 2019-09-29 20:06:23 2019-09-29 22:45:10 t 1 1 106313 220 0.00 2019-09-29 22:26:23 2019-09-29 22:45:23 t 1 1 106316 220 0.00 2019-09-29 22:45:55 2019-09-29 22:46:31 t 1 1 106319 327 0.00 2019-09-29 22:47:20 2019-09-29 22:47:51 t 1 1 106321 327 0.00 2019-09-29 22:48:00 2019-09-29 22:49:04 t 1 1 106322 220 0.00 2019-09-29 22:48:07 2019-09-29 22:50:13 t 1 1 106330 451 0.00 2019-09-29 22:52:28 2019-09-29 22:56:36 t 1 1 106332 220 0.00 2019-09-29 22:56:15 2019-09-29 22:56:54 t 1 1 106338 472 0.00 2019-09-29 22:59:33 2019-09-29 23:00:33 t 1 1 106339 220 0.00 2019-09-29 22:57:29 2019-09-29 23:00:46 t 1 1 106340 220 0.00 2019-09-29 23:00:45 2019-09-29 23:01:22 t 1 1 106343 416 0.00 2019-09-29 22:42:35 2019-09-29 23:03:54 t 1 1 106349 472 0.00 2019-09-29 23:09:41 2019-09-29 23:10:41 t 1 1 106350 472 0.00 2019-09-29 23:10:50 2019-09-29 23:11:51 t 1 1 106357 472 0.00 2019-09-29 23:20:10 2019-09-29 23:21:05 t 1 1 106359 472 0.00 2019-09-29 23:22:31 2019-09-29 23:25:55 t 1 1 106361 483 0.00 2019-09-29 23:31:23 2019-09-29 23:39:46 t 1 1 106363 416 0.00 2019-09-29 23:23:37 2019-09-29 23:46:38 t 1 1 106364 311 0.00 2019-09-29 23:37:41 2019-09-29 23:47:05 t 1 2 106206 420 0.00 2019-09-29 20:47:01 2019-09-29 20:54:34 t 1 1 106210 327 0.00 2019-09-29 20:56:07 2019-09-29 20:56:47 t 1 1 106212 422 0.00 2019-09-29 20:38:22 2019-09-29 20:58:25 t 1 1 106214 327 0.00 2019-09-29 20:56:59 2019-09-29 20:58:55 t 1 1 106216 445 0.00 2019-09-29 20:56:30 2019-09-29 20:59:58 t 1 1 106221 464 0.00 2019-09-29 21:07:13 2019-09-29 21:07:32 t 1 1 106226 327 0.00 2019-09-29 21:14:46 2019-09-29 21:16:14 t 1 1 106227 327 0.00 2019-09-29 21:16:50 2019-09-29 21:17:22 t 1 1 106228 327 0.00 2019-09-29 21:17:59 2019-09-29 21:18:30 t 1 1 106231 331 0.00 2019-09-29 20:58:25 2019-09-29 21:20:46 t 1 1 106233 327 0.00 2019-09-29 21:21:32 2019-09-29 21:22:02 t 1 1 106235 220 0.00 2019-09-29 21:21:24 2019-09-29 21:24:47 t 1 2 106249 430 0.00 2019-09-29 21:24:50 2019-09-29 21:36:43 t 1 1 106250 327 0.00 2019-09-29 21:36:47 2019-09-29 21:37:26 t 1 1 106253 485 0.00 2019-09-29 21:31:09 2019-09-29 21:44:09 t 1 1 106255 416 0.00 2019-09-29 21:34:33 2019-09-29 21:46:22 t 1 1 106258 306 0.00 2019-09-29 21:43:05 2019-09-29 21:47:39 t 1 1 106261 430 0.00 2019-09-29 21:47:00 2019-09-29 21:49:00 t 1 1 106263 292 0.00 2019-09-29 21:40:14 2019-09-29 21:50:19 t 1 2 106266 416 0.00 2019-09-29 21:46:27 2019-09-29 21:53:52 t 1 1 106269 474 0.00 2019-09-29 21:53:27 2019-09-29 21:58:18 t 1 1 106271 485 0.00 2019-09-29 22:00:15 2019-09-29 22:03:55 t 1 1 106274 456 0.00 2019-09-29 21:59:22 2019-09-29 22:09:24 t 1 1 106277 451 0.00 2019-09-29 22:12:23 2019-09-29 22:16:52 t 1 1 106278 247 0.00 2019-09-29 22:19:27 2019-09-29 22:21:52 t 1 2 106282 395 0.00 2019-09-29 22:13:48 2019-09-29 22:24:35 t 1 2 106287 327 0.00 2019-09-29 22:06:21 2019-09-29 22:29:41 t 1 1 106288 510 0.00 2019-09-29 21:55:35 2019-09-29 22:30:01 t 1 1 106289 472 0.00 2019-09-29 22:32:08 2019-09-29 22:36:57 t 1 1 106291 361 0.00 2019-09-29 21:49:04 2019-09-29 22:37:41 t 1 2 106294 510 0.00 2019-09-29 22:30:01 2019-09-29 22:39:56 t 1 1 106297 503 0.00 2019-09-29 22:24:51 2019-09-29 22:41:10 t 1 1 106299 416 0.00 2019-09-29 22:39:54 2019-09-29 22:42:30 t 1 1 106301 220 0.00 2019-09-29 22:42:58 2019-09-29 22:43:10 t 1 1 106310 220 0.00 2019-09-29 22:44:18 2019-09-29 22:44:28 t 1 1 106315 327 0.00 2019-09-29 22:45:02 2019-09-29 22:45:57 t 1 1 106317 220 0.00 2019-09-29 22:46:30 2019-09-29 22:47:03 t 1 1 106320 220 0.00 2019-09-29 22:47:36 2019-09-29 22:48:07 t 1 1 106324 327 0.00 2019-09-29 22:49:17 2019-09-29 22:50:59 t 1 1 106325 445 0.00 2019-09-29 22:40:05 2019-09-29 22:51:48 t 1 1 106326 220 0.00 2019-09-29 22:50:46 2019-09-29 22:52:02 t 1 1 106327 220 0.00 2019-09-29 22:52:02 2019-09-29 22:52:37 t 1 1 106331 472 0.00 2019-09-29 22:41:58 2019-09-29 22:56:50 t 1 1 106334 220 0.00 2019-09-29 22:56:54 2019-09-29 22:57:30 t 1 1 106341 472 0.00 2019-09-29 23:00:42 2019-09-29 23:01:39 t 1 1 106344 220 0.00 2019-09-29 23:01:22 2019-09-29 23:04:04 t 1 1 106346 379 0.00 2019-09-29 22:57:48 2019-09-29 23:08:31 t 1 1 106347 464 0.00 2019-09-29 22:53:19 2019-09-29 23:09:22 t 1 1 106351 220 0.00 2019-09-29 23:01:51 2019-09-29 23:15:08 t 1 1 106353 483 0.00 2019-09-29 22:58:38 2019-09-29 23:16:15 t 1 1 106354 483 0.00 2019-09-29 23:16:15 2019-09-29 23:17:28 t 1 1 106356 247 0.00 2019-09-29 23:18:37 2019-09-29 23:20:22 t 1 2 106358 422 0.00 2019-09-29 23:03:54 2019-09-29 23:23:30 t 1 1 106365 483 0.00 2019-09-29 23:39:46 2019-09-29 23:47:51 t 1 1 106368 501 0.00 2019-09-29 22:47:27 2019-09-29 23:58:01 t 1 1 106369 456 0.00 2019-09-29 23:54:52 2019-09-30 00:02:54 t 1 1 106370 416 0.00 2019-09-29 23:51:23 2019-09-30 00:04:10 t 1 1 106373 501 0.00 2019-09-30 00:08:29 2019-09-30 00:13:12 t 1 1 106374 483 0.00 2019-09-30 00:04:57 2019-09-30 00:14:02 t 1 1 106379 501 0.00 2019-09-30 00:18:06 2019-09-30 00:22:31 t 1 1 106380 501 0.00 2019-09-30 00:22:31 2019-09-30 00:27:14 t 1 1 106384 501 0.00 2019-09-30 00:38:17 2019-09-30 00:42:59 t 1 1 106386 501 0.00 2019-09-30 00:42:59 2019-09-30 00:48:57 t 1 1 106387 422 0.00 2019-09-30 00:38:30 2019-09-30 00:49:41 t 1 1 106394 422 0.00 2019-09-30 00:57:00 2019-09-30 01:04:57 t 1 1 106397 220 0.00 2019-09-29 23:04:04 2019-09-30 01:07:45 t 1 1 106398 501 0.00 2019-09-30 01:03:00 2019-09-30 01:09:06 t 1 1 106399 468 0.00 2019-09-30 01:05:40 2019-09-30 01:12:50 t 1 1 106400 416 0.00 2019-09-30 01:12:59 2019-09-30 01:13:33 t 1 1 106403 490 0.00 2019-09-30 01:14:28 2019-09-30 01:19:42 t 1 1 106404 501 0.00 2019-09-30 01:16:50 2019-09-30 01:23:36 t 1 1 106409 501 0.00 2019-09-30 01:38:57 2019-09-30 01:42:25 t 1 1 106412 416 0.00 2019-09-30 01:44:36 2019-09-30 01:45:30 t 1 1 106415 416 0.00 2019-09-30 01:48:56 2019-09-30 01:58:43 t 1 1 106418 485 0.00 2019-09-30 02:06:40 2019-09-30 02:07:42 t 1 1 106419 501 0.00 2019-09-30 02:02:22 2019-09-30 02:18:40 t 1 1 106420 416 0.00 2019-09-30 02:19:29 2019-09-30 02:19:38 t 1 1 106425 485 0.00 2019-09-30 02:28:13 2019-09-30 02:29:39 t 1 1 106426 416 0.00 2019-09-30 02:34:08 2019-09-30 02:37:15 t 1 1 106427 416 0.00 2019-09-30 02:37:21 2019-09-30 02:40:08 t 1 1 106429 485 0.00 2019-09-30 02:40:28 2019-09-30 02:42:44 t 1 1 106430 485 0.00 2019-09-30 02:48:29 2019-09-30 02:50:47 t 1 1 106431 416 0.00 2019-09-30 02:51:58 2019-09-30 03:16:40 t 1 1 106432 416 0.00 2019-09-30 03:16:54 2019-09-30 03:22:20 t 1 1 106433 416 0.00 2019-09-30 03:22:33 2019-09-30 03:25:05 t 1 1 106436 445 0.00 2019-09-29 22:51:48 2019-09-30 03:58:47 t 1 1 106437 464 0.00 2019-09-30 04:03:47 2019-09-30 04:04:08 t 1 1 106439 416 0.00 2019-09-30 04:11:58 2019-09-30 04:13:54 t 1 1 106449 416 0.00 2019-09-30 05:19:06 2019-09-30 05:22:57 t 1 1 106451 331 0.00 2019-09-30 05:25:28 2019-09-30 05:26:28 t 1 1 106455 445 0.00 2019-09-30 05:33:11 2019-09-30 05:38:02 t 1 1 106457 430 0.00 2019-09-30 05:31:25 2019-09-30 05:43:01 t 1 1 106460 416 0.00 2019-09-30 05:49:57 2019-09-30 05:54:13 t 1 1 106465 456 0.00 2019-09-30 06:29:39 2019-09-30 06:33:13 t 1 1 106466 220 0.00 2019-09-30 06:52:55 2019-09-30 06:55:24 t 1 1 106468 481 0.00 2019-09-29 22:45:10 2019-09-30 07:06:12 t 1 1 106469 456 0.00 2019-09-30 07:02:36 2019-09-30 07:06:58 t 1 1 106470 481 0.00 2019-09-30 07:06:18 2019-09-30 07:08:35 t 1 1 106472 416 0.00 2019-09-30 06:33:20 2019-09-30 07:09:24 t 1 1 106473 481 0.00 2019-09-30 07:08:34 2019-09-30 07:09:53 t 1 1 106475 416 0.00 2019-09-30 07:09:30 2019-09-30 07:11:53 t 1 1 106476 445 0.00 2019-09-30 07:12:07 2019-09-30 07:16:48 t 1 1 106477 472 0.00 2019-09-30 07:12:56 2019-09-30 07:17:46 t 1 1 106482 416 0.00 2019-09-30 07:23:50 2019-09-30 07:28:31 t 1 1 106483 306 0.00 2019-09-30 07:25:59 2019-09-30 07:29:48 t 1 1 106489 445 0.00 2019-09-30 07:47:11 2019-09-30 07:57:31 t 1 1 106492 481 0.00 2019-09-30 07:48:39 2019-09-30 08:11:52 t 1 1 106285 220 0.00 2019-09-29 22:25:11 2019-09-29 22:25:50 t 1 1 106286 220 0.00 2019-09-29 22:25:50 2019-09-29 22:26:23 t 1 1 106292 325 0.00 2019-09-29 21:52:45 2019-09-29 22:37:50 t 1 2 106293 416 0.00 2019-09-29 21:58:27 2019-09-29 22:39:49 t 1 1 106295 445 0.00 2019-09-29 21:51:31 2019-09-29 22:40:02 t 1 1 106300 220 0.00 2019-09-29 22:41:47 2019-09-29 22:42:58 t 1 1 106303 220 0.00 2019-09-29 22:43:19 2019-09-29 22:43:33 t 1 1 106305 220 0.00 2019-09-29 22:43:33 2019-09-29 22:43:43 t 1 1 106307 220 0.00 2019-09-29 22:43:57 2019-09-29 22:44:07 t 1 1 106309 220 0.00 2019-09-29 22:44:07 2019-09-29 22:44:18 t 1 1 106311 327 0.00 2019-09-29 22:43:57 2019-09-29 22:44:45 t 1 1 106314 220 0.00 2019-09-29 22:45:22 2019-09-29 22:45:56 t 1 1 106318 220 0.00 2019-09-29 22:47:03 2019-09-29 22:47:36 t 1 1 106323 220 0.00 2019-09-29 22:50:12 2019-09-29 22:50:46 t 1 1 106328 327 0.00 2019-09-29 22:51:10 2019-09-29 22:52:39 t 1 1 106329 220 0.00 2019-09-29 22:52:37 2019-09-29 22:56:15 t 1 1 106333 503 0.00 2019-09-29 22:41:10 2019-09-29 22:57:19 t 1 1 106335 379 0.00 2019-09-29 22:46:54 2019-09-29 22:57:47 t 1 1 106336 483 0.00 2019-09-29 22:49:28 2019-09-29 22:58:38 t 1 1 106337 327 0.00 2019-09-29 22:52:47 2019-09-29 23:00:20 t 1 1 106342 220 0.00 2019-09-29 22:44:27 2019-09-29 23:01:51 t 1 1 106345 472 0.00 2019-09-29 23:04:37 2019-09-29 23:05:40 t 1 1 106348 451 0.00 2019-09-29 23:08:08 2019-09-29 23:10:05 t 1 1 106352 472 0.00 2019-09-29 23:14:49 2019-09-29 23:15:51 t 1 1 106355 379 0.00 2019-09-29 23:08:31 2019-09-29 23:18:55 t 1 1 106360 510 0.00 2019-09-29 22:39:56 2019-09-29 23:30:11 t 1 1 106362 292 0.00 2019-09-29 23:26:28 2019-09-29 23:41:34 t 1 2 106366 416 0.00 2019-09-29 23:47:02 2019-09-29 23:51:16 t 1 1 106371 483 0.00 2019-09-29 23:56:31 2019-09-30 00:04:57 t 1 1 106372 501 0.00 2019-09-29 23:58:01 2019-09-30 00:08:29 t 1 1 106375 483 0.00 2019-09-30 00:14:02 2019-09-30 00:15:21 t 1 1 106377 501 0.00 2019-09-30 00:13:12 2019-09-30 00:18:06 t 1 1 106378 490 0.00 2019-09-30 00:15:33 2019-09-30 00:19:50 t 1 1 106383 416 0.00 2019-09-30 00:04:18 2019-09-30 00:38:30 t 1 1 106389 501 0.00 2019-09-30 00:48:57 2019-09-30 00:56:34 t 1 1 106390 416 0.00 2019-09-30 00:49:55 2019-09-30 00:57:00 t 1 1 106391 468 0.00 2019-09-30 00:24:38 2019-09-30 00:57:51 t 1 1 106392 503 0.00 2019-09-30 00:57:24 2019-09-30 01:01:55 t 1 1 106393 501 0.00 2019-09-30 00:56:34 2019-09-30 01:03:00 t 1 1 106396 490 0.00 2019-09-30 01:06:18 2019-09-30 01:06:28 t 1 1 106402 501 0.00 2019-09-30 01:09:06 2019-09-30 01:16:50 t 1 1 106405 501 0.00 2019-09-30 01:23:36 2019-09-30 01:32:31 t 1 1 106407 501 0.00 2019-09-30 01:32:31 2019-09-30 01:38:57 t 1 1 106414 501 0.00 2019-09-30 01:46:30 2019-09-30 01:48:51 t 1 1 106416 416 0.00 2019-09-30 01:58:48 2019-09-30 02:02:22 t 1 1 106417 485 0.00 2019-09-30 02:04:38 2019-09-30 02:06:40 t 1 1 106422 501 0.00 2019-09-30 02:19:38 2019-09-30 02:24:39 t 1 1 106424 501 0.00 2019-09-30 02:24:38 2019-09-30 02:28:16 t 1 1 106435 416 0.00 2019-09-30 03:58:36 2019-09-30 03:58:47 t 1 1 106438 445 0.00 2019-09-30 03:58:47 2019-09-30 04:08:04 t 1 1 106440 416 0.00 2019-09-30 04:14:09 2019-09-30 04:22:36 t 1 1 106444 416 0.00 2019-09-30 04:53:07 2019-09-30 04:57:17 t 1 1 106445 311 0.00 2019-09-30 04:52:07 2019-09-30 05:03:02 t 1 2 106447 416 0.00 2019-09-30 05:09:55 2019-09-30 05:17:59 t 1 1 106450 445 0.00 2019-09-30 05:22:57 2019-09-30 05:24:28 t 1 1 106453 445 0.00 2019-09-30 05:26:34 2019-09-30 05:32:45 t 1 1 106454 416 0.00 2019-09-30 05:30:12 2019-09-30 05:33:36 t 1 1 106459 430 0.00 2019-09-30 05:50:12 2019-09-30 05:50:25 t 1 1 106461 416 0.00 2019-09-30 05:54:18 2019-09-30 06:00:54 t 1 1 106464 416 0.00 2019-09-30 06:25:19 2019-09-30 06:32:17 t 1 1 106471 306 0.00 2019-09-30 07:03:31 2019-09-30 07:08:36 t 1 1 106479 306 0.00 2019-09-30 07:18:20 2019-09-30 07:21:56 t 1 1 106484 464 0.00 2019-09-30 07:29:42 2019-09-30 07:30:06 t 1 1 106493 481 0.00 2019-09-30 08:11:52 2019-09-30 08:15:50 t 1 1 106494 485 0.00 2019-09-30 08:08:16 2019-09-30 08:16:31 t 1 1 106495 296 0.00 2019-09-30 08:06:20 2019-09-30 08:21:41 t 1 2 106500 331 0.00 2019-09-30 08:42:36 2019-09-30 08:43:27 t 1 1 106501 445 0.00 2019-09-30 07:57:31 2019-09-30 08:44:40 t 1 1 106502 331 0.00 2019-09-30 08:43:27 2019-09-30 08:44:57 t 1 1 106505 331 0.00 2019-09-30 08:46:15 2019-09-30 08:47:45 t 1 1 106506 331 0.00 2019-09-30 08:47:45 2019-09-30 08:50:49 t 1 1 106513 485 0.00 2019-09-30 08:55:56 2019-09-30 08:56:39 t 1 1 106515 331 0.00 2019-09-30 08:59:40 2019-09-30 09:03:32 t 1 1 106517 481 0.00 2019-09-30 08:54:30 2019-09-30 09:05:37 t 1 1 106523 501 0.00 2019-09-30 09:08:53 2019-09-30 09:26:08 t 1 1 106525 501 0.00 2019-09-30 09:28:06 2019-09-30 09:28:15 t 1 1 106527 445 0.00 2019-09-30 09:25:02 2019-09-30 09:30:36 t 1 1 106529 445 0.00 2019-09-30 09:30:35 2019-09-30 09:31:49 t 1 1 106533 445 0.00 2019-09-30 09:34:39 2019-09-30 09:37:18 t 1 1 106539 501 0.00 2019-09-30 09:44:39 2019-09-30 09:46:10 t 1 1 106540 501 0.00 2019-09-30 09:47:13 2019-09-30 09:47:14 t 1 1 106544 220 0.00 2019-09-30 09:47:51 2019-09-30 09:48:31 t 1 1 106546 220 0.00 2019-09-30 09:48:31 2019-09-30 09:51:08 t 1 1 106549 501 0.00 2019-09-30 09:51:32 2019-09-30 09:52:19 t 1 1 106558 331 0.00 2019-09-30 09:13:48 2019-09-30 10:01:45 t 1 1 106559 501 0.00 2019-09-30 10:02:25 2019-09-30 10:02:41 t 1 1 106562 501 0.00 2019-09-30 10:03:24 2019-09-30 10:21:06 t 1 1 106573 220 0.00 2019-09-30 09:59:54 2019-09-30 10:32:39 t 1 1 106575 220 0.00 2019-09-30 10:32:39 2019-09-30 10:34:01 t 1 1 106582 331 0.00 2019-09-30 10:38:32 2019-09-30 10:40:35 t 1 1 106584 331 0.00 2019-09-30 10:40:29 2019-09-30 10:45:41 t 1 1 106585 512 0.00 2019-09-30 10:43:55 2019-09-30 10:46:39 t 1 1 106604 331 0.00 2019-09-30 11:20:47 2019-09-30 11:23:23 t 1 1 106605 327 0.00 2019-09-30 11:22:48 2019-09-30 11:24:21 t 1 1 106609 331 0.00 2019-09-30 11:25:24 2019-09-30 11:26:12 t 1 1 106611 331 0.00 2019-09-30 11:26:14 2019-09-30 11:31:10 t 1 1 106616 501 0.00 2019-09-30 11:43:19 2019-09-30 11:43:20 t 1 1 106617 501 0.00 2019-09-30 11:44:14 2019-09-30 11:46:03 t 1 1 106626 422 0.00 2019-09-30 11:49:13 2019-09-30 11:56:12 t 1 1 106627 424 0.00 2019-09-30 11:57:12 2019-09-30 12:00:36 t 1 2 106629 420 0.00 2019-09-30 11:46:16 2019-09-30 12:03:18 t 1 1 106633 220 0.00 2019-09-30 12:04:43 2019-09-30 12:10:16 t 1 2 106639 510 0.00 2019-09-30 12:06:52 2019-09-30 12:24:35 t 1 1 106645 510 0.00 2019-09-30 12:24:35 2019-09-30 12:41:16 t 1 1 106646 306 0.00 2019-09-30 12:14:20 2019-09-30 12:41:36 t 1 1 106653 220 0.00 2019-09-30 12:46:22 2019-09-30 12:48:11 t 1 1 106654 306 0.00 2019-09-30 12:41:36 2019-09-30 12:49:54 t 1 1 106367 483 0.00 2019-09-29 23:47:51 2019-09-29 23:56:31 t 1 1 106376 490 0.00 2019-09-30 00:06:45 2019-09-30 00:15:33 t 1 1 106381 501 0.00 2019-09-30 00:27:14 2019-09-30 00:32:07 t 1 1 106382 501 0.00 2019-09-30 00:32:07 2019-09-30 00:38:17 t 1 1 106385 503 0.00 2019-09-29 23:54:11 2019-09-30 00:43:25 t 1 1 106388 422 0.00 2019-09-30 00:49:41 2019-09-30 00:49:50 t 1 1 106395 416 0.00 2019-09-30 01:05:34 2019-09-30 01:05:40 t 1 1 106401 490 0.00 2019-09-30 01:06:28 2019-09-30 01:14:28 t 1 1 106406 379 0.00 2019-09-29 23:18:54 2019-09-30 01:35:34 t 1 1 106408 416 0.00 2019-09-30 01:33:44 2019-09-30 01:40:31 t 1 1 106410 416 0.00 2019-09-30 01:40:39 2019-09-30 01:43:40 t 1 1 106411 501 0.00 2019-09-30 01:43:59 2019-09-30 01:44:30 t 1 1 106413 501 0.00 2019-09-30 01:45:30 2019-09-30 01:45:43 t 1 1 106421 501 0.00 2019-09-30 02:18:40 2019-09-30 02:19:38 t 1 1 106423 416 0.00 2019-09-30 02:27:03 2019-09-30 02:28:13 t 1 1 106428 416 0.00 2019-09-30 02:40:27 2019-09-30 02:40:28 t 1 1 106434 416 0.00 2019-09-30 03:25:40 2019-09-30 03:58:27 t 1 1 106441 416 0.00 2019-09-30 04:22:41 2019-09-30 04:39:55 t 1 1 106442 416 0.00 2019-09-30 04:40:33 2019-09-30 04:47:13 t 1 1 106443 416 0.00 2019-09-30 04:48:20 2019-09-30 04:52:22 t 1 1 106446 416 0.00 2019-09-30 04:57:22 2019-09-30 05:08:28 t 1 1 106448 445 0.00 2019-09-30 04:07:49 2019-09-30 05:22:48 t 1 1 106452 416 0.00 2019-09-30 05:26:44 2019-09-30 05:30:07 t 1 1 106456 416 0.00 2019-09-30 05:34:30 2019-09-30 05:39:32 t 1 1 106458 445 0.00 2019-09-30 05:39:33 2019-09-30 05:49:52 t 1 1 106462 416 0.00 2019-09-30 06:00:59 2019-09-30 06:22:10 t 1 1 106463 416 0.00 2019-09-30 06:22:15 2019-09-30 06:25:10 t 1 1 106467 451 0.00 2019-09-30 07:01:36 2019-09-30 07:04:16 t 1 1 106474 481 0.00 2019-09-30 07:09:30 2019-09-30 07:11:22 t 1 1 106478 422 0.00 2019-09-30 07:17:51 2019-09-30 07:19:05 t 1 1 106480 416 0.00 2019-09-30 07:17:11 2019-09-30 07:23:45 t 1 1 106481 306 0.00 2019-09-30 07:21:56 2019-09-30 07:25:59 t 1 1 106485 416 0.00 2019-09-30 07:31:41 2019-09-30 07:32:56 t 1 1 106486 306 0.00 2019-09-30 07:29:48 2019-09-30 07:45:11 t 1 1 106487 445 0.00 2019-09-30 07:35:03 2019-09-30 07:47:11 t 1 1 106488 481 0.00 2019-09-30 07:11:22 2019-09-30 07:48:39 t 1 1 106490 485 0.00 2019-09-30 08:00:56 2019-09-30 08:08:16 t 1 1 106491 424 0.00 2019-09-30 07:59:22 2019-09-30 08:09:28 t 1 2 106496 485 0.00 2019-09-30 08:16:31 2019-09-30 08:24:40 t 1 1 106497 485 0.00 2019-09-30 08:24:40 2019-09-30 08:31:29 t 1 1 106498 485 0.00 2019-09-30 08:31:29 2019-09-30 08:39:31 t 1 1 106503 331 0.00 2019-09-30 08:45:09 2019-09-30 08:46:15 t 1 1 106508 512 0.00 2019-09-30 08:48:50 2019-09-30 08:51:57 t 1 1 106510 474 0.00 2019-09-30 07:19:14 2019-09-30 08:55:08 t 1 1 106516 220 0.00 2019-09-30 08:55:01 2019-09-30 09:05:00 t 1 1 106518 461 0.00 2019-09-30 08:06:17 2019-09-30 09:10:40 t 1 2 106520 327 0.00 2019-09-30 09:08:14 2019-09-30 09:13:30 t 1 1 106524 220 0.00 2019-09-30 09:05:00 2019-09-30 09:26:44 t 1 1 106531 445 0.00 2019-09-30 09:33:15 2019-09-30 09:34:18 t 1 1 106532 306 0.00 2019-09-30 09:29:59 2019-09-30 09:36:09 t 1 1 106534 481 0.00 2019-09-30 09:05:37 2019-09-30 09:40:11 t 1 1 106538 220 0.00 2019-09-30 09:26:44 2019-09-30 09:45:19 t 1 1 106542 220 0.00 2019-09-30 09:45:19 2019-09-30 09:47:52 t 1 1 106543 501 0.00 2019-09-30 09:48:13 2019-09-30 09:48:14 t 1 1 106547 501 0.00 2019-09-30 09:50:47 2019-09-30 09:51:13 t 1 1 106548 220 0.00 2019-09-30 09:51:07 2019-09-30 09:51:43 t 1 1 106552 220 0.00 2019-09-30 09:52:51 2019-09-30 09:53:29 t 1 1 106554 220 0.00 2019-09-30 09:53:28 2019-09-30 09:56:38 t 1 1 106555 220 0.00 2019-09-30 09:56:38 2019-09-30 09:57:13 t 1 1 106556 220 0.00 2019-09-30 09:57:13 2019-09-30 09:59:43 t 1 1 106557 501 0.00 2019-09-30 10:00:51 2019-09-30 10:01:22 t 1 1 106560 331 0.00 2019-09-30 10:01:45 2019-09-30 10:13:50 t 1 1 106561 481 0.00 2019-09-30 09:40:11 2019-09-30 10:17:38 t 1 1 106564 445 0.00 2019-09-30 09:44:04 2019-09-30 10:22:02 t 1 1 106565 501 0.00 2019-09-30 10:22:13 2019-09-30 10:23:24 t 1 1 106566 501 0.00 2019-09-30 10:24:26 2019-09-30 10:24:27 t 1 1 106567 461 0.00 2019-09-30 09:55:41 2019-09-30 10:26:23 t 1 2 106569 464 0.00 2019-09-30 10:28:11 2019-09-30 10:28:24 t 1 1 106570 464 0.00 2019-09-30 10:28:56 2019-09-30 10:29:33 t 1 1 106571 501 0.00 2019-09-30 10:27:55 2019-09-30 10:30:44 t 1 1 106577 501 0.00 2019-09-30 10:34:54 2019-09-30 10:34:55 t 1 1 106579 501 0.00 2019-09-30 10:35:09 2019-09-30 10:35:10 t 1 1 106580 501 0.00 2019-09-30 10:35:17 2019-09-30 10:37:08 t 1 1 106581 331 0.00 2019-09-30 10:13:50 2019-09-30 10:38:32 t 1 1 106583 512 0.00 2019-09-30 10:25:04 2019-09-30 10:43:32 t 1 1 106586 445 0.00 2019-09-30 09:33:53 2019-09-30 10:49:31 t 1 1 106590 501 0.00 2019-09-30 10:36:06 2019-09-30 10:56:23 t 1 1 106592 247 0.00 2019-09-30 10:54:02 2019-09-30 10:57:04 t 1 2 106594 327 0.00 2019-09-30 10:57:44 2019-09-30 10:59:26 t 1 1 106596 512 0.00 2019-09-30 11:03:52 2019-09-30 11:10:07 t 1 1 106597 501 0.00 2019-09-30 11:06:48 2019-09-30 11:15:45 t 1 1 106601 331 0.00 2019-09-30 11:17:18 2019-09-30 11:18:44 t 1 1 106606 474 0.00 2019-09-30 10:17:41 2019-09-30 11:24:25 t 1 1 106608 306 0.00 2019-09-30 11:23:17 2019-09-30 11:25:24 t 1 1 106610 327 0.00 2019-09-30 11:24:54 2019-09-30 11:26:13 t 1 1 106614 422 0.00 2019-09-30 11:19:41 2019-09-30 11:39:01 t 1 1 106615 501 0.00 2019-09-30 11:42:29 2019-09-30 11:43:12 t 1 1 106618 331 0.00 2019-09-30 11:31:10 2019-09-30 11:46:14 t 1 1 106620 422 0.00 2019-09-30 11:39:01 2019-09-30 11:49:13 t 1 1 106625 514 0.00 2019-09-30 11:52:05 2019-09-30 11:55:34 t 1 1 106631 422 0.00 2019-09-30 11:56:12 2019-09-30 12:07:15 t 1 1 106632 220 0.00 2019-09-30 11:53:43 2019-09-30 12:08:34 t 1 2 106634 514 0.00 2019-09-30 12:04:30 2019-09-30 12:13:20 t 1 1 106635 514 0.00 2019-09-30 12:13:20 2019-09-30 12:15:05 t 1 1 106640 474 0.00 2019-09-30 11:29:01 2019-09-30 12:28:02 t 1 1 106641 220 0.00 2019-09-30 10:34:01 2019-09-30 12:33:34 t 1 1 106643 220 0.00 2019-09-30 12:37:33 2019-09-30 12:39:19 t 1 1 106644 464 0.00 2019-09-30 12:38:53 2019-09-30 12:40:39 t 1 1 106649 220 0.00 2019-09-30 12:42:12 2019-09-30 12:42:52 t 1 1 106655 220 0.00 2019-09-30 12:45:50 2019-09-30 12:49:56 t 1 2 106657 327 0.00 2019-09-30 12:50:46 2019-09-30 12:52:53 t 1 1 106661 331 0.00 2019-09-30 12:00:37 2019-09-30 12:54:31 t 1 1 106663 247 0.00 2019-09-30 12:54:04 2019-09-30 12:54:35 t 1 2 106670 327 0.00 2019-09-30 12:57:57 2019-09-30 13:00:08 t 1 1 106671 474 0.00 2019-09-30 12:47:48 2019-09-30 13:01:47 t 1 1 106679 327 0.00 2019-09-30 13:00:48 2019-09-30 13:04:50 t 1 1 106682 422 0.00 2019-09-30 12:07:15 2019-09-30 13:06:35 t 1 1 106499 331 0.00 2019-09-30 08:27:48 2019-09-30 08:42:31 t 1 1 106504 485 0.00 2019-09-30 08:39:31 2019-09-30 08:46:49 t 1 1 106507 485 0.00 2019-09-30 08:46:49 2019-09-30 08:51:33 t 1 1 106509 481 0.00 2019-09-30 08:15:50 2019-09-30 08:54:30 t 1 1 106511 331 0.00 2019-09-30 08:51:33 2019-09-30 08:55:46 t 1 1 106512 306 0.00 2019-09-30 08:04:35 2019-09-30 08:56:28 t 1 1 106514 331 0.00 2019-09-30 08:56:39 2019-09-30 08:59:36 t 1 1 106519 445 0.00 2019-09-30 08:44:40 2019-09-30 09:12:09 t 1 1 106521 445 0.00 2019-09-30 09:12:09 2019-09-30 09:21:02 t 1 1 106522 445 0.00 2019-09-30 09:21:02 2019-09-30 09:25:00 t 1 1 106526 501 0.00 2019-09-30 09:28:24 2019-09-30 09:28:35 t 1 1 106528 512 0.00 2019-09-30 09:25:10 2019-09-30 09:31:21 t 1 1 106530 501 0.00 2019-09-30 09:30:08 2019-09-30 09:32:23 t 1 1 106535 501 0.00 2019-09-30 09:38:42 2019-09-30 09:42:27 t 1 1 106536 445 0.00 2019-09-30 09:37:27 2019-09-30 09:43:53 t 1 1 106537 501 0.00 2019-09-30 09:42:37 2019-09-30 09:44:08 t 1 1 106541 501 0.00 2019-09-30 09:47:21 2019-09-30 09:47:30 t 1 1 106545 501 0.00 2019-09-30 09:48:58 2019-09-30 09:50:14 t 1 1 106550 220 0.00 2019-09-30 09:51:43 2019-09-30 09:52:52 t 1 1 106551 501 0.00 2019-09-30 09:53:21 2019-09-30 09:53:22 t 1 1 106553 501 0.00 2019-09-30 09:56:24 2019-09-30 09:56:34 t 1 1 106563 445 0.00 2019-09-30 10:21:40 2019-09-30 10:21:40 f 1 1 106568 501 0.00 2019-09-30 10:24:33 2019-09-30 10:26:52 t 1 1 106572 428 0.00 2019-09-30 08:40:36 2019-09-30 10:30:51 t 1 1 106574 501 0.00 2019-09-30 10:31:47 2019-09-30 10:32:51 t 1 1 106576 501 0.00 2019-09-30 10:33:54 2019-09-30 10:34:27 t 1 1 106578 501 0.00 2019-09-30 10:35:01 2019-09-30 10:35:02 t 1 1 106587 481 0.00 2019-09-30 10:18:49 2019-09-30 10:50:49 t 1 1 106588 327 0.00 2019-09-30 10:49:38 2019-09-30 10:51:52 t 1 1 106589 481 0.00 2019-09-30 10:50:49 2019-09-30 10:54:54 t 1 1 106591 331 0.00 2019-09-30 10:46:37 2019-09-30 10:56:33 t 1 1 106593 327 0.00 2019-09-30 10:54:53 2019-09-30 10:57:37 t 1 1 106595 331 0.00 2019-09-30 10:57:52 2019-09-30 10:59:37 t 1 1 106598 514 0.00 2019-09-30 11:10:40 2019-09-30 11:15:55 t 1 1 106599 514 0.00 2019-09-30 11:16:17 2019-09-30 11:16:48 t 1 1 106600 331 0.00 2019-09-30 11:00:54 2019-09-30 11:17:18 t 1 1 106602 331 0.00 2019-09-30 11:18:45 2019-09-30 11:20:57 t 1 1 106603 327 0.00 2019-09-30 10:59:56 2019-09-30 11:22:38 t 1 1 106607 331 0.00 2019-09-30 11:24:01 2019-09-30 11:25:19 t 1 1 106612 327 0.00 2019-09-30 11:27:13 2019-09-30 11:34:12 t 1 1 106613 464 0.00 2019-09-30 11:33:51 2019-09-30 11:35:02 t 1 1 106619 327 0.00 2019-09-30 11:40:52 2019-09-30 11:46:49 t 1 1 106621 485 0.00 2019-09-30 11:46:26 2019-09-30 11:50:13 t 1 1 106622 220 0.00 2019-09-30 11:51:54 2019-09-30 11:51:54 f 1 2 106623 512 0.00 2019-09-30 11:11:22 2019-09-30 11:52:09 t 1 1 106624 220 0.00 2019-09-30 11:52:25 2019-09-30 11:53:11 t 1 2 106628 331 0.00 2019-09-30 11:46:54 2019-09-30 12:00:37 t 1 1 106630 327 0.00 2019-09-30 11:56:45 2019-09-30 12:06:57 t 1 1 106636 327 0.00 2019-09-30 12:09:26 2019-09-30 12:15:13 t 1 1 106637 481 0.00 2019-09-30 10:54:54 2019-09-30 12:17:12 t 1 1 106638 481 0.00 2019-09-30 12:17:12 2019-09-30 12:22:35 t 1 1 106642 220 0.00 2019-09-30 12:33:34 2019-09-30 12:37:34 t 1 1 106647 220 0.00 2019-09-30 12:39:19 2019-09-30 12:41:40 t 1 1 106648 220 0.00 2019-09-30 12:41:40 2019-09-30 12:42:12 t 1 1 106650 474 0.00 2019-09-30 12:29:07 2019-09-30 12:44:56 t 1 1 106651 220 0.00 2019-09-30 12:42:52 2019-09-30 12:46:22 t 1 1 106652 474 0.00 2019-09-30 12:44:56 2019-09-30 12:47:47 t 1 1 106656 220 0.00 2019-09-30 12:48:11 2019-09-30 12:50:28 t 1 1 106659 220 0.00 2019-09-30 12:50:28 2019-09-30 12:53:33 t 1 1 106660 220 0.00 2019-09-30 12:47:39 2019-09-30 12:54:03 t 1 2 106665 331 0.00 2019-09-30 12:55:00 2019-09-30 12:55:35 t 1 1 106666 220 0.00 2019-09-30 12:55:09 2019-09-30 12:56:48 t 1 1 106667 220 0.00 2019-09-30 12:56:48 2019-09-30 12:57:22 t 1 1 106672 451 0.00 2019-09-30 12:54:01 2019-09-30 13:01:48 t 1 1 106674 331 0.00 2019-09-30 13:00:14 2019-09-30 13:03:55 t 1 1 106677 220 0.00 2019-09-30 13:04:33 2019-09-30 13:04:44 t 1 1 106680 451 0.00 2019-09-30 13:03:35 2019-09-30 13:05:04 t 1 1 106683 220 0.00 2019-09-30 13:04:54 2019-09-30 13:07:08 t 1 1 106686 327 0.00 2019-09-30 13:08:14 2019-09-30 13:10:07 t 1 1 106687 412 0.00 2019-09-30 10:35:12 2019-09-30 13:11:51 t 1 1 106690 487 0.00 2019-09-30 08:18:59 2019-09-30 13:12:40 t 1 2 106693 420 0.00 2019-09-30 13:09:43 2019-09-30 13:14:17 t 1 1 106694 220 0.00 2019-09-30 13:13:40 2019-09-30 13:14:38 t 1 1 106705 220 0.00 2019-09-30 13:17:26 2019-09-30 13:17:37 t 1 1 106706 420 0.00 2019-09-30 13:16:09 2019-09-30 13:18:20 t 1 1 106707 220 0.00 2019-09-30 13:18:00 2019-09-30 13:18:40 t 1 1 106709 420 0.00 2019-09-30 13:18:22 2019-09-30 13:19:12 t 1 1 106710 220 0.00 2019-09-30 13:19:40 2019-09-30 13:19:48 t 1 1 106712 220 0.00 2019-09-30 13:20:11 2019-09-30 13:20:18 t 1 1 106715 220 0.00 2019-09-30 13:05:34 2019-09-30 13:20:57 t 1 1 106716 327 0.00 2019-09-30 13:16:59 2019-09-30 13:21:16 t 1 1 106719 420 0.00 2019-09-30 13:20:40 2019-09-30 13:21:35 t 1 1 106720 220 0.00 2019-09-30 13:21:12 2019-09-30 13:21:43 t 1 1 106722 464 0.00 2019-09-30 13:20:35 2019-09-30 13:22:04 t 1 1 106724 220 0.00 2019-09-30 13:22:43 2019-09-30 13:22:51 t 1 1 106728 220 0.00 2019-09-30 13:23:44 2019-09-30 13:23:52 t 1 1 106729 220 0.00 2019-09-30 13:23:59 2019-09-30 13:24:07 t 1 1 106730 220 0.00 2019-09-30 13:24:23 2019-09-30 13:24:45 t 1 1 106733 220 0.00 2019-09-30 13:25:00 2019-09-30 13:25:07 t 1 1 106734 220 0.00 2019-09-30 13:25:14 2019-09-30 13:25:18 t 1 1 106735 220 0.00 2019-09-30 13:25:18 2019-09-30 13:25:45 t 1 1 106738 420 0.00 2019-09-30 13:23:11 2019-09-30 13:26:37 t 1 1 106744 220 0.00 2019-09-30 13:27:17 2019-09-30 13:27:46 t 1 1 106748 220 0.00 2019-09-30 13:28:18 2019-09-30 13:28:28 t 1 1 106751 220 0.00 2019-09-30 13:30:45 2019-09-30 13:31:14 t 1 1 106761 487 0.00 2019-09-30 13:40:29 2019-09-30 13:40:32 t 1 2 106762 420 0.00 2019-09-30 13:29:17 2019-09-30 13:41:17 t 1 1 106763 331 0.00 2019-09-30 13:27:10 2019-09-30 13:43:42 t 1 1 106767 327 0.00 2019-09-30 13:33:03 2019-09-30 13:49:29 t 1 1 106769 220 0.00 2019-09-30 13:28:28 2019-09-30 13:54:30 t 1 1 106771 395 0.00 2019-09-30 13:51:24 2019-09-30 14:00:20 t 1 2 106773 510 0.00 2019-09-30 13:57:58 2019-09-30 14:03:29 t 1 1 106774 514 0.00 2019-09-30 14:00:49 2019-09-30 14:05:57 t 1 1 106776 474 0.00 2019-09-30 13:25:20 2019-09-30 14:06:59 t 1 1 106782 395 0.00 2019-09-30 14:04:54 2019-09-30 14:20:34 t 1 2 106786 503 0.00 2019-09-30 14:15:43 2019-09-30 14:23:34 t 1 1 106788 220 0.00 2019-09-30 14:28:16 2019-09-30 14:34:00 t 1 2 106658 306 0.00 2019-09-30 12:49:53 2019-09-30 12:52:59 t 1 1 106662 220 0.00 2019-09-30 12:53:32 2019-09-30 12:54:35 t 1 1 106664 220 0.00 2019-09-30 12:54:34 2019-09-30 12:55:09 t 1 1 106668 327 0.00 2019-09-30 12:52:52 2019-09-30 12:57:35 t 1 1 106669 331 0.00 2019-09-30 12:55:34 2019-09-30 13:00:08 t 1 1 106673 220 0.00 2019-09-30 13:01:21 2019-09-30 13:03:25 t 1 1 106675 220 0.00 2019-09-30 13:03:25 2019-09-30 13:03:57 t 1 1 106676 220 0.00 2019-09-30 13:04:06 2019-09-30 13:04:24 t 1 1 106678 474 0.00 2019-09-30 13:01:46 2019-09-30 13:04:48 t 1 1 106681 327 0.00 2019-09-30 13:05:16 2019-09-30 13:06:19 t 1 1 106684 220 0.00 2019-09-30 12:19:52 2019-09-30 13:09:15 t 1 2 106692 220 0.00 2019-09-30 13:13:00 2019-09-30 13:13:40 t 1 1 106695 220 0.00 2019-09-30 13:14:37 2019-09-30 13:15:10 t 1 1 106696 220 0.00 2019-09-30 13:15:09 2019-09-30 13:15:43 t 1 1 106698 420 0.00 2019-09-30 13:14:29 2019-09-30 13:15:59 t 1 1 106699 220 0.00 2019-09-30 13:15:42 2019-09-30 13:16:17 t 1 1 106701 412 0.00 2019-09-30 13:12:48 2019-09-30 13:16:24 t 1 1 106703 220 0.00 2019-09-30 13:16:17 2019-09-30 13:16:50 t 1 1 106708 220 0.00 2019-09-30 13:18:40 2019-09-30 13:18:50 t 1 1 106711 220 0.00 2019-09-30 13:19:55 2019-09-30 13:20:03 t 1 1 106714 220 0.00 2019-09-30 13:20:25 2019-09-30 13:20:40 t 1 1 106717 306 0.00 2019-09-30 13:12:45 2019-09-30 13:21:20 t 1 1 106721 220 0.00 2019-09-30 13:21:43 2019-09-30 13:21:51 t 1 1 106723 420 0.00 2019-09-30 13:21:37 2019-09-30 13:22:43 t 1 1 106725 220 0.00 2019-09-30 13:22:51 2019-09-30 13:22:58 t 1 1 106731 220 0.00 2019-09-30 13:24:44 2019-09-30 13:24:52 t 1 1 106736 220 0.00 2019-09-30 13:25:45 2019-09-30 13:25:53 t 1 1 106737 327 0.00 2019-09-30 13:23:20 2019-09-30 13:26:11 t 1 1 106740 220 0.00 2019-09-30 13:26:45 2019-09-30 13:26:52 t 1 1 106742 331 0.00 2019-09-30 13:04:48 2019-09-30 13:27:10 t 1 1 106743 220 0.00 2019-09-30 13:27:15 2019-09-30 13:27:17 t 1 1 106747 220 0.00 2019-09-30 13:26:01 2019-09-30 13:28:28 t 1 1 106749 420 0.00 2019-09-30 13:26:56 2019-09-30 13:28:41 t 1 1 106750 327 0.00 2019-09-30 13:26:46 2019-09-30 13:29:44 t 1 1 106753 464 0.00 2019-09-30 13:23:38 2019-09-30 13:31:38 t 1 1 106759 220 0.00 2019-09-30 13:39:16 2019-09-30 13:39:17 t 1 1 106760 487 0.00 2019-09-30 13:40:14 2019-09-30 13:40:19 t 1 2 106766 485 0.00 2019-09-30 13:46:29 2019-09-30 13:48:54 t 1 1 106768 514 0.00 2019-09-30 13:48:15 2019-09-30 13:52:25 t 1 1 106770 220 0.00 2019-09-30 13:54:29 2019-09-30 13:54:37 t 1 1 106772 514 0.00 2019-09-30 13:52:25 2019-09-30 14:00:49 t 1 1 106779 481 0.00 2019-09-30 12:22:35 2019-09-30 14:15:39 t 1 1 106783 412 0.00 2019-09-30 13:16:24 2019-09-30 14:20:54 t 1 1 106785 247 0.00 2019-09-30 14:21:37 2019-09-30 14:22:15 t 1 2 106787 487 0.00 2019-09-30 13:40:47 2019-09-30 14:25:52 t 1 2 106790 306 0.00 2019-09-30 14:40:36 2019-09-30 14:43:26 t 1 1 106793 416 0.00 2019-09-30 14:19:58 2019-09-30 14:45:29 t 1 1 106797 485 0.00 2019-09-30 14:47:34 2019-09-30 14:54:46 t 1 1 106801 327 0.00 2019-09-30 14:40:48 2019-09-30 15:00:57 t 1 1 106805 422 0.00 2019-09-30 15:00:31 2019-09-30 15:07:19 t 1 1 106806 296 0.00 2019-09-30 14:58:58 2019-09-30 15:08:21 t 1 2 106807 422 0.00 2019-09-30 15:07:19 2019-09-30 15:11:56 t 1 1 106809 420 0.00 2019-09-30 15:14:12 2019-09-30 15:15:14 t 1 1 106813 290 0.00 2019-09-30 14:35:36 2019-09-30 15:20:41 t 1 2 106814 420 0.00 2019-09-30 15:19:49 2019-09-30 15:23:28 t 1 1 106819 422 0.00 2019-09-30 15:16:34 2019-09-30 15:47:02 t 1 1 106823 327 0.00 2019-09-30 15:30:47 2019-09-30 16:02:30 t 1 1 106826 306 0.00 2019-09-30 16:01:25 2019-09-30 16:04:00 t 1 1 106829 451 0.00 2019-09-30 15:59:30 2019-09-30 16:05:54 t 1 1 106831 292 0.00 2019-09-30 15:39:28 2019-09-30 16:09:33 t 1 2 106841 306 0.00 2019-09-30 16:16:24 2019-09-30 16:22:09 t 1 1 106842 485 0.00 2019-09-30 16:16:00 2019-09-30 16:23:21 t 1 1 106846 501 0.00 2019-09-30 16:23:17 2019-09-30 16:32:07 t 1 1 106848 514 0.00 2019-09-30 16:31:02 2019-09-30 16:34:17 t 1 1 106853 514 0.00 2019-09-30 16:37:35 2019-09-30 16:41:00 t 1 1 106858 501 0.00 2019-09-30 16:45:57 2019-09-30 16:46:25 t 1 1 106859 501 0.00 2019-09-30 16:46:58 2019-09-30 16:47:06 t 1 1 106866 501 0.00 2019-09-30 16:50:13 2019-09-30 16:50:13 t 1 1 106869 501 0.00 2019-09-30 16:51:57 2019-09-30 16:53:02 t 1 1 106870 501 0.00 2019-09-30 16:53:33 2019-09-30 16:54:44 t 1 1 106878 430 0.00 2019-09-30 16:58:19 2019-09-30 16:59:41 t 1 1 106886 514 0.00 2019-09-30 17:05:42 2019-09-30 17:08:48 t 1 1 106888 462 0.00 2019-09-30 16:32:30 2019-09-30 17:17:53 t 1 1 106889 514 0.00 2019-09-30 17:08:48 2019-09-30 17:19:34 t 1 1 106891 501 0.00 2019-09-30 17:26:54 2019-09-30 17:27:49 t 1 1 106895 488 0.00 2019-09-30 17:20:39 2019-09-30 17:28:34 t 1 1 106896 501 0.00 2019-09-30 17:28:51 2019-09-30 17:28:52 t 1 1 106897 501 0.00 2019-09-30 17:29:52 2019-09-30 17:29:53 t 1 1 106898 430 0.00 2019-09-30 17:28:07 2019-09-30 17:30:08 t 1 1 106899 501 0.00 2019-09-30 17:30:53 2019-09-30 17:31:26 t 1 1 106900 481 0.00 2019-09-30 14:15:39 2019-09-30 17:32:11 t 1 1 106902 488 0.00 2019-09-30 17:28:34 2019-09-30 17:33:43 t 1 1 106906 398 0.00 2019-09-30 17:39:36 2019-09-30 17:39:36 f 1 2 106907 501 0.00 2019-09-30 17:38:48 2019-09-30 17:40:32 t 1 1 106908 445 0.00 2019-09-30 16:42:19 2019-09-30 17:41:51 t 1 1 106910 416 0.00 2019-09-30 16:16:29 2019-09-30 17:41:58 t 1 1 106912 488 0.00 2019-09-30 17:38:07 2019-09-30 17:43:25 t 1 1 106922 501 0.00 2019-09-30 17:50:17 2019-09-30 17:50:54 t 1 1 106924 501 0.00 2019-09-30 17:51:32 2019-09-30 17:53:15 t 1 1 106925 501 0.00 2019-09-30 17:53:42 2019-09-30 17:54:15 t 1 1 106929 416 0.00 2019-09-30 17:42:02 2019-09-30 17:55:04 t 1 1 106931 501 0.00 2019-09-30 17:55:19 2019-09-30 17:56:30 t 1 1 106934 501 0.00 2019-09-30 17:58:35 2019-09-30 17:59:28 t 1 1 106938 501 0.00 2019-09-30 18:00:44 2019-09-30 18:03:09 t 1 1 106947 516 0.00 2019-09-30 18:08:07 2019-09-30 18:11:59 t 1 1 106954 518 0.00 2019-09-30 18:16:37 2019-09-30 18:18:48 t 1 2 106955 501 0.00 2019-09-30 18:14:54 2019-09-30 18:21:12 t 1 1 106956 306 0.00 2019-09-30 18:18:42 2019-09-30 18:22:02 t 1 1 106958 488 0.00 2019-09-30 18:18:35 2019-09-30 18:24:33 t 1 1 106962 501 0.00 2019-09-30 18:21:12 2019-09-30 18:29:45 t 1 1 106965 498 0.00 2019-09-30 18:37:09 2019-09-30 18:37:09 f 1 2 106966 498 0.00 2019-09-30 18:37:37 2019-09-30 18:37:37 f 1 2 106968 498 0.00 2019-09-30 18:30:30 2019-09-30 18:40:36 t 1 2 106971 516 0.00 2019-09-30 18:31:19 2019-09-30 18:44:48 t 1 1 106976 512 0.00 2019-09-30 18:48:57 2019-09-30 18:52:13 t 1 1 106980 516 0.00 2019-09-30 18:44:48 2019-09-30 18:56:39 t 1 1 106987 220 0.00 2019-09-30 18:58:13 2019-09-30 19:02:03 t 1 1 106685 420 0.00 2019-09-30 13:04:45 2019-09-30 13:09:34 t 1 1 106688 327 0.00 2019-09-30 13:10:17 2019-09-30 13:11:59 t 1 1 106689 220 0.00 2019-09-30 12:57:22 2019-09-30 13:12:29 t 1 1 106691 220 0.00 2019-09-30 13:12:29 2019-09-30 13:13:00 t 1 1 106697 464 0.00 2019-09-30 13:15:28 2019-09-30 13:15:46 t 1 1 106700 327 0.00 2019-09-30 13:12:09 2019-09-30 13:16:22 t 1 1 106702 510 0.00 2019-09-30 12:41:16 2019-09-30 13:16:46 t 1 1 106704 220 0.00 2019-09-30 13:16:50 2019-09-30 13:17:26 t 1 1 106713 420 0.00 2019-09-30 13:19:14 2019-09-30 13:20:31 t 1 1 106718 451 0.00 2019-09-30 13:06:42 2019-09-30 13:21:33 t 1 1 106726 220 0.00 2019-09-30 13:22:58 2019-09-30 13:23:05 t 1 1 106727 220 0.00 2019-09-30 13:23:32 2019-09-30 13:23:44 t 1 1 106732 474 0.00 2019-09-30 13:04:48 2019-09-30 13:25:04 t 1 1 106739 220 0.00 2019-09-30 13:26:21 2019-09-30 13:26:45 t 1 1 106741 220 0.00 2019-09-30 13:27:00 2019-09-30 13:27:07 t 1 1 106745 220 0.00 2019-09-30 13:27:46 2019-09-30 13:27:54 t 1 1 106746 220 0.00 2019-09-30 13:28:02 2019-09-30 13:28:10 t 1 1 106752 220 0.00 2019-09-30 13:31:23 2019-09-30 13:31:24 t 1 1 106754 220 0.00 2019-09-30 13:31:34 2019-09-30 13:31:47 t 1 1 106755 220 0.00 2019-09-30 13:31:57 2019-09-30 13:31:58 t 1 1 106756 422 0.00 2019-09-30 13:06:35 2019-09-30 13:35:37 t 1 1 106757 514 0.00 2019-09-30 13:27:47 2019-09-30 13:36:21 t 1 1 106758 220 0.00 2019-09-30 13:38:56 2019-09-30 13:39:06 t 1 1 106764 220 0.00 2019-09-30 13:40:18 2019-09-30 13:45:23 t 1 1 106765 514 0.00 2019-09-30 13:36:21 2019-09-30 13:48:15 t 1 1 106775 327 0.00 2019-09-30 13:49:29 2019-09-30 14:06:00 t 1 1 106777 331 0.00 2019-09-30 13:44:23 2019-09-30 14:09:56 t 1 1 106778 514 0.00 2019-09-30 14:05:57 2019-09-30 14:10:30 t 1 1 106780 503 0.00 2019-09-30 13:59:21 2019-09-30 14:15:43 t 1 1 106781 416 0.00 2019-09-30 13:39:30 2019-09-30 14:19:58 t 1 1 106784 327 0.00 2019-09-30 14:06:01 2019-09-30 14:21:57 t 1 1 106791 331 0.00 2019-09-30 14:09:56 2019-09-30 14:44:37 t 1 1 106795 220 0.00 2019-09-30 13:45:37 2019-09-30 14:54:00 t 1 2 106798 512 0.00 2019-09-30 14:52:40 2019-09-30 14:56:45 t 1 1 106800 422 0.00 2019-09-30 13:35:37 2019-09-30 15:00:31 t 1 1 106803 430 0.00 2019-09-30 14:42:48 2019-09-30 15:03:05 t 1 1 106815 485 0.00 2019-09-30 15:23:15 2019-09-30 15:25:29 t 1 1 106817 424 0.00 2019-09-30 14:08:22 2019-09-30 15:35:26 t 1 2 106818 498 0.00 2019-09-30 14:30:42 2019-09-30 15:37:04 t 1 2 106820 430 0.00 2019-09-30 15:05:34 2019-09-30 15:51:38 t 1 1 106827 379 0.00 2019-09-30 15:57:32 2019-09-30 16:04:18 t 1 1 106832 485 0.00 2019-09-30 16:09:50 2019-09-30 16:11:58 t 1 1 106836 327 0.00 2019-09-30 16:17:15 2019-09-30 16:19:08 t 1 1 106839 508 0.00 2019-09-30 14:36:10 2019-09-30 16:22:07 t 1 2 106843 512 0.00 2019-09-30 16:19:35 2019-09-30 16:23:39 t 1 1 106845 325 0.00 2019-09-30 14:51:29 2019-09-30 16:31:25 t 1 2 106847 485 0.00 2019-09-30 16:28:38 2019-09-30 16:33:48 t 1 1 106850 514 0.00 2019-09-30 16:34:17 2019-09-30 16:37:35 t 1 1 106852 501 0.00 2019-09-30 16:37:50 2019-09-30 16:38:24 t 1 1 106860 327 0.00 2019-09-30 16:38:03 2019-09-30 16:47:47 t 1 1 106862 501 0.00 2019-09-30 16:47:59 2019-09-30 16:48:01 t 1 1 106865 501 0.00 2019-09-30 16:50:02 2019-09-30 16:50:03 t 1 1 106867 327 0.00 2019-09-30 16:49:40 2019-09-30 16:50:56 t 1 1 106871 501 0.00 2019-09-30 16:54:50 2019-09-30 16:55:39 t 1 1 106872 379 0.00 2019-09-30 16:04:18 2019-09-30 16:56:08 t 1 1 106873 514 0.00 2019-09-30 16:47:56 2019-09-30 16:56:58 t 1 1 106874 327 0.00 2019-09-30 16:56:52 2019-09-30 16:57:33 t 1 1 106877 514 0.00 2019-09-30 16:56:58 2019-09-30 16:59:40 t 1 1 106879 422 0.00 2019-09-30 15:47:02 2019-09-30 17:00:05 t 1 1 106882 514 0.00 2019-09-30 17:02:50 2019-09-30 17:05:42 t 1 1 106884 485 0.00 2019-09-30 17:06:14 2019-09-30 17:08:05 t 1 1 106890 474 0.00 2019-09-30 16:00:31 2019-09-30 17:24:48 t 1 1 106893 430 0.00 2019-09-30 17:14:01 2019-09-30 17:28:07 t 1 1 106909 501 0.00 2019-09-30 17:41:35 2019-09-30 17:41:52 t 1 1 106915 501 0.00 2019-09-30 17:45:43 2019-09-30 17:45:44 t 1 1 106916 445 0.00 2019-09-30 17:45:23 2019-09-30 17:46:09 t 1 1 106918 501 0.00 2019-09-30 17:47:00 2019-09-30 17:47:40 t 1 1 106921 462 0.00 2019-09-30 17:47:22 2019-09-30 17:49:40 t 1 1 106927 379 0.00 2019-09-30 16:59:56 2019-09-30 17:54:39 t 1 1 106928 422 0.00 2019-09-30 17:00:05 2019-09-30 17:55:01 t 1 1 106930 445 0.00 2019-09-30 17:54:37 2019-09-30 17:55:38 t 1 1 106932 501 0.00 2019-09-30 17:57:34 2019-09-30 17:58:07 t 1 1 106937 501 0.00 2019-09-30 18:00:36 2019-09-30 18:00:37 t 1 1 106939 501 0.00 2019-09-30 18:02:27 2019-09-30 18:03:12 t 1 1 106940 501 0.00 2019-09-30 18:03:39 2019-09-30 18:04:11 t 1 1 106941 501 0.00 2019-09-30 18:04:40 2019-09-30 18:04:41 t 1 1 106943 516 0.00 2019-09-30 17:46:56 2019-09-30 18:08:07 t 1 1 106944 503 0.00 2019-09-30 18:04:21 2019-09-30 18:09:41 t 1 1 106946 503 0.00 2019-09-30 18:09:41 2019-09-30 18:11:12 t 1 1 106948 501 0.00 2019-09-30 18:05:11 2019-09-30 18:12:49 t 1 1 106949 481 0.00 2019-09-30 17:35:09 2019-09-30 18:13:52 t 1 1 106951 518 0.00 2019-09-30 18:15:54 2019-09-30 18:16:09 t 1 2 106952 416 0.00 2019-09-30 17:55:09 2019-09-30 18:18:31 t 1 1 106953 488 0.00 2019-09-30 18:18:12 2019-09-30 18:18:35 t 1 1 106957 422 0.00 2019-09-30 18:18:08 2019-09-30 18:22:54 t 1 1 106960 306 0.00 2019-09-30 18:28:10 2019-09-30 18:29:44 t 1 1 106963 488 0.00 2019-09-30 18:24:33 2019-09-30 18:31:22 t 1 1 106964 416 0.00 2019-09-30 18:18:31 2019-09-30 18:33:18 t 1 1 106967 501 0.00 2019-09-30 18:29:45 2019-09-30 18:37:51 t 1 1 106970 445 0.00 2019-09-30 17:59:01 2019-09-30 18:43:48 t 1 1 106986 485 0.00 2019-09-30 18:56:47 2019-09-30 19:01:41 t 1 1 106988 474 0.00 2019-09-30 18:58:57 2019-09-30 19:02:17 t 1 1 106989 516 0.00 2019-09-30 18:56:39 2019-09-30 19:02:55 t 1 1 106990 514 0.00 2019-09-30 19:01:04 2019-09-30 19:04:15 t 1 1 106996 514 0.00 2019-09-30 19:06:53 2019-09-30 19:09:39 t 1 1 106998 306 0.00 2019-09-30 19:06:45 2019-09-30 19:10:25 t 1 1 106999 514 0.00 2019-09-30 19:09:39 2019-09-30 19:12:14 t 1 1 107000 516 0.00 2019-09-30 19:08:19 2019-09-30 19:13:25 t 1 1 107002 514 0.00 2019-09-30 19:15:12 2019-09-30 19:17:59 t 1 1 107003 481 0.00 2019-09-30 19:10:10 2019-09-30 19:18:22 t 1 1 107007 445 0.00 2019-09-30 19:24:32 2019-09-30 19:25:37 t 1 1 107010 516 0.00 2019-09-30 19:26:27 2019-09-30 19:32:02 t 1 1 107011 451 0.00 2019-09-30 19:25:38 2019-09-30 19:32:19 t 1 1 107013 445 0.00 2019-09-30 19:27:51 2019-09-30 19:33:47 t 1 1 107017 416 0.00 2019-09-30 18:41:53 2019-09-30 19:41:20 t 1 1 107021 501 0.00 2019-09-30 19:42:07 2019-09-30 19:47:24 t 1 1 107024 501 0.00 2019-09-30 19:48:33 2019-09-30 19:49:09 t 1 1 106789 327 0.00 2019-09-30 14:21:57 2019-09-30 14:40:48 t 1 1 106792 220 0.00 2019-09-30 14:41:50 2019-09-30 14:45:02 t 1 1 106794 331 0.00 2019-09-30 14:43:58 2019-09-30 14:46:20 t 1 1 106796 247 0.00 2019-09-30 14:46:56 2019-09-30 14:54:21 t 1 2 106799 512 0.00 2019-09-30 14:57:03 2019-09-30 14:58:33 t 1 1 106802 420 0.00 2019-09-30 15:00:58 2019-09-30 15:02:39 t 1 1 106804 220 0.00 2019-09-30 14:45:01 2019-09-30 15:05:13 t 1 1 106808 331 0.00 2019-09-30 15:08:34 2019-09-30 15:14:07 t 1 1 106810 420 0.00 2019-09-30 15:15:17 2019-09-30 15:15:51 t 1 1 106811 422 0.00 2019-09-30 15:11:56 2019-09-30 15:16:34 t 1 1 106812 420 0.00 2019-09-30 15:15:56 2019-09-30 15:17:14 t 1 1 106816 327 0.00 2019-09-30 15:00:57 2019-09-30 15:30:47 t 1 1 106821 379 0.00 2019-09-30 09:35:38 2019-09-30 15:57:32 t 1 1 106822 474 0.00 2019-09-30 14:06:58 2019-09-30 15:58:52 t 1 1 106824 456 0.00 2019-09-30 15:59:18 2019-09-30 16:03:21 t 1 1 106825 514 0.00 2019-09-30 15:55:50 2019-09-30 16:04:00 t 1 1 106828 327 0.00 2019-09-30 16:03:46 2019-09-30 16:05:03 t 1 1 106830 445 0.00 2019-09-30 15:20:13 2019-09-30 16:06:43 t 1 1 106833 361 0.00 2019-09-30 14:28:52 2019-09-30 16:12:10 t 1 2 106834 416 0.00 2019-09-30 14:44:33 2019-09-30 16:16:25 t 1 1 106835 327 0.00 2019-09-30 16:14:58 2019-09-30 16:17:08 t 1 1 106837 327 0.00 2019-09-30 16:18:16 2019-09-30 16:19:15 t 1 1 106838 456 0.00 2019-09-30 16:11:31 2019-09-30 16:19:44 t 1 1 106840 501 0.00 2019-09-30 15:53:42 2019-09-30 16:22:07 t 1 1 106844 514 0.00 2019-09-30 16:27:48 2019-09-30 16:31:02 t 1 1 106849 501 0.00 2019-09-30 16:32:15 2019-09-30 16:36:46 t 1 1 106851 327 0.00 2019-09-30 16:19:25 2019-09-30 16:38:03 t 1 1 106854 501 0.00 2019-09-30 16:41:59 2019-09-30 16:42:31 t 1 1 106855 501 0.00 2019-09-30 16:42:54 2019-09-30 16:43:02 t 1 1 106856 501 0.00 2019-09-30 16:43:56 2019-09-30 16:43:57 t 1 1 106857 514 0.00 2019-09-30 16:41:00 2019-09-30 16:45:14 t 1 1 106861 514 0.00 2019-09-30 16:45:14 2019-09-30 16:47:56 t 1 1 106863 327 0.00 2019-09-30 16:47:57 2019-09-30 16:48:46 t 1 1 106864 501 0.00 2019-09-30 16:49:01 2019-09-30 16:49:34 t 1 1 106868 327 0.00 2019-09-30 16:51:22 2019-09-30 16:51:52 t 1 1 106875 501 0.00 2019-09-30 16:56:07 2019-09-30 16:57:47 t 1 1 106876 296 0.00 2019-09-30 16:57:02 2019-09-30 16:58:25 t 1 2 106880 514 0.00 2019-09-30 16:59:40 2019-09-30 17:02:50 t 1 1 106881 485 0.00 2019-09-30 16:51:48 2019-09-30 17:05:07 t 1 1 106883 485 0.00 2019-09-30 17:05:07 2019-09-30 17:06:14 t 1 1 106885 327 0.00 2019-09-30 17:07:27 2019-09-30 17:08:13 t 1 1 106887 512 0.00 2019-09-30 17:07:17 2019-09-30 17:13:20 t 1 1 106892 430 0.00 2019-09-30 17:27:11 2019-09-30 17:28:03 t 1 1 106894 501 0.00 2019-09-30 17:27:49 2019-09-30 17:28:22 t 1 1 106901 501 0.00 2019-09-30 17:31:54 2019-09-30 17:33:09 t 1 1 106903 474 0.00 2019-09-30 17:24:47 2019-09-30 17:37:05 t 1 1 106904 488 0.00 2019-09-30 17:33:43 2019-09-30 17:38:07 t 1 1 106905 501 0.00 2019-09-30 17:37:34 2019-09-30 17:38:42 t 1 1 106911 445 0.00 2019-09-30 17:42:06 2019-09-30 17:43:15 t 1 1 106913 501 0.00 2019-09-30 17:42:18 2019-09-30 17:43:37 t 1 1 106914 501 0.00 2019-09-30 17:44:38 2019-09-30 17:44:47 t 1 1 106917 462 0.00 2019-09-30 17:17:53 2019-09-30 17:47:22 t 1 1 106919 488 0.00 2019-09-30 17:43:25 2019-09-30 17:47:46 t 1 1 106920 501 0.00 2019-09-30 17:48:46 2019-09-30 17:48:54 t 1 1 106923 501 0.00 2019-09-30 17:49:47 2019-09-30 17:51:09 t 1 1 106926 445 0.00 2019-09-30 17:46:09 2019-09-30 17:54:37 t 1 1 106933 445 0.00 2019-09-30 17:55:38 2019-09-30 17:59:01 t 1 1 106935 501 0.00 2019-09-30 17:59:34 2019-09-30 17:59:42 t 1 1 106936 422 0.00 2019-09-30 17:55:01 2019-09-30 18:00:28 t 1 1 106942 501 0.00 2019-09-30 18:04:48 2019-09-30 18:07:09 t 1 1 106945 220 0.00 2019-09-30 17:19:58 2019-09-30 18:10:18 t 1 2 106950 501 0.00 2019-09-30 18:12:49 2019-09-30 18:14:55 t 1 1 106959 512 0.00 2019-09-30 18:24:28 2019-09-30 18:28:35 t 1 1 106961 296 0.00 2019-09-30 18:25:20 2019-09-30 18:29:44 t 1 2 106969 416 0.00 2019-09-30 18:33:38 2019-09-30 18:41:47 t 1 1 106972 456 0.00 2019-09-30 18:37:11 2019-09-30 18:44:50 t 1 1 106973 485 0.00 2019-09-30 18:25:51 2019-09-30 18:47:14 t 1 1 106974 518 0.00 2019-09-30 18:18:57 2019-09-30 18:49:02 t 1 2 106975 325 0.00 2019-09-30 18:28:10 2019-09-30 18:50:19 t 1 2 106977 498 0.00 2019-09-30 18:42:56 2019-09-30 18:53:01 t 1 2 106978 445 0.00 2019-09-30 18:45:48 2019-09-30 18:54:40 t 1 1 106979 474 0.00 2019-09-30 17:38:22 2019-09-30 18:56:21 t 1 1 106981 485 0.00 2019-09-30 18:47:14 2019-09-30 18:56:47 t 1 1 106982 474 0.00 2019-09-30 18:56:20 2019-09-30 18:57:26 t 1 1 106983 514 0.00 2019-09-30 18:51:23 2019-09-30 18:58:24 t 1 1 106984 422 0.00 2019-09-30 18:22:54 2019-09-30 19:00:04 t 1 1 106985 514 0.00 2019-09-30 18:58:24 2019-09-30 19:01:04 t 1 1 106995 451 0.00 2019-09-30 18:54:40 2019-09-30 19:09:28 t 1 1 106997 481 0.00 2019-09-30 18:14:08 2019-09-30 19:10:10 t 1 1 107001 514 0.00 2019-09-30 19:12:14 2019-09-30 19:15:12 t 1 1 107004 514 0.00 2019-09-30 19:17:59 2019-09-30 19:20:46 t 1 1 107008 451 0.00 2019-09-30 19:09:28 2019-09-30 19:25:38 t 1 1 107009 516 0.00 2019-09-30 19:22:25 2019-09-30 19:26:27 t 1 1 107014 516 0.00 2019-09-30 19:32:02 2019-09-30 19:38:44 t 1 1 107015 445 0.00 2019-09-30 19:33:53 2019-09-30 19:39:17 t 1 1 107023 501 0.00 2019-09-30 19:47:30 2019-09-30 19:48:27 t 1 1 107025 512 0.00 2019-09-30 19:45:10 2019-09-30 19:50:01 t 1 1 107028 501 0.00 2019-09-30 19:50:51 2019-09-30 19:51:22 t 1 1 107030 501 0.00 2019-09-30 19:51:51 2019-09-30 19:51:52 t 1 1 107033 501 0.00 2019-09-30 19:55:41 2019-09-30 19:56:15 t 1 1 107035 516 0.00 2019-09-30 19:51:05 2019-09-30 19:58:01 t 1 1 107040 501 0.00 2019-09-30 20:01:58 2019-09-30 20:02:32 t 1 1 107042 325 0.00 2019-09-30 19:43:47 2019-09-30 20:03:52 t 1 2 107044 424 0.00 2019-09-30 20:02:00 2019-09-30 20:04:24 t 1 2 107046 501 0.00 2019-09-30 20:05:11 2019-09-30 20:06:11 t 1 1 107051 501 0.00 2019-09-30 20:09:26 2019-09-30 20:10:13 t 1 1 107053 220 0.00 2019-09-30 19:48:43 2019-09-30 20:13:15 t 1 2 107056 501 0.00 2019-09-30 20:14:31 2019-09-30 20:14:39 t 1 1 107063 306 0.00 2019-09-30 20:21:04 2019-09-30 20:22:21 t 1 1 107066 451 0.00 2019-09-30 20:25:25 2019-09-30 20:32:03 t 1 1 107067 306 0.00 2019-09-30 20:30:42 2019-09-30 20:33:21 t 1 1 107070 247 0.00 2019-09-30 20:36:23 2019-09-30 20:40:00 t 1 2 107071 422 0.00 2019-09-30 20:34:05 2019-09-30 20:41:52 t 1 1 107076 462 0.00 2019-09-30 20:19:21 2019-09-30 20:51:12 t 1 1 107077 462 0.00 2019-09-30 20:51:12 2019-09-30 20:52:55 t 1 1 107078 501 0.00 2019-09-30 20:18:16 2019-09-30 20:54:06 t 1 1 107081 306 0.00 2019-09-30 20:55:58 2019-09-30 21:02:44 t 1 1 106991 445 0.00 2019-09-30 18:54:39 2019-09-30 19:05:42 t 1 1 106992 514 0.00 2019-09-30 19:04:15 2019-09-30 19:06:53 t 1 1 106993 474 0.00 2019-09-30 19:02:17 2019-09-30 19:07:29 t 1 1 106994 516 0.00 2019-09-30 19:02:55 2019-09-30 19:08:19 t 1 1 107005 445 0.00 2019-09-30 19:05:37 2019-09-30 19:23:31 t 1 1 107006 422 0.00 2019-09-30 19:00:04 2019-09-30 19:25:14 t 1 1 107012 451 0.00 2019-09-30 19:32:18 2019-09-30 19:33:29 t 1 1 107016 490 0.00 2019-09-30 19:37:24 2019-09-30 19:41:04 t 1 1 107018 501 0.00 2019-09-30 19:34:47 2019-09-30 19:41:44 t 1 1 107019 516 0.00 2019-09-30 19:38:44 2019-09-30 19:44:30 t 1 1 107020 220 0.00 2019-09-30 19:27:55 2019-09-30 19:47:18 t 1 2 107022 306 0.00 2019-09-30 19:46:04 2019-09-30 19:47:56 t 1 1 107027 516 0.00 2019-09-30 19:44:30 2019-09-30 19:51:05 t 1 1 107029 424 0.00 2019-09-30 19:47:07 2019-09-30 19:51:30 t 1 2 107032 501 0.00 2019-09-30 19:52:51 2019-09-30 19:54:38 t 1 1 107037 501 0.00 2019-09-30 19:59:58 2019-09-30 20:00:44 t 1 1 107038 501 0.00 2019-09-30 20:00:50 2019-09-30 20:00:58 t 1 1 107041 430 0.00 2019-09-30 19:50:50 2019-09-30 20:02:33 t 1 1 107045 292 0.00 2019-09-30 19:50:19 2019-09-30 20:05:24 t 1 2 107047 462 0.00 2019-09-30 19:52:27 2019-09-30 20:06:37 t 1 1 107049 220 0.00 2019-09-30 19:48:33 2019-09-30 20:08:06 t 1 1 107050 501 0.00 2019-09-30 20:08:16 2019-09-30 20:09:16 t 1 1 107052 501 0.00 2019-09-30 20:11:21 2019-09-30 20:12:26 t 1 1 107054 514 0.00 2019-09-30 19:20:46 2019-09-30 20:13:21 t 1 1 107055 501 0.00 2019-09-30 20:13:29 2019-09-30 20:14:06 t 1 1 107057 501 0.00 2019-09-30 20:15:32 2019-09-30 20:15:33 t 1 1 107058 501 0.00 2019-09-30 20:15:39 2019-09-30 20:16:28 t 1 1 107059 501 0.00 2019-09-30 20:17:35 2019-09-30 20:17:43 t 1 1 107060 416 0.00 2019-09-30 19:41:25 2019-09-30 20:18:32 t 1 1 107062 306 0.00 2019-09-30 20:19:17 2019-09-30 20:21:04 t 1 1 107075 430 0.00 2019-09-30 20:02:33 2019-09-30 20:50:01 t 1 1 107083 451 0.00 2019-09-30 20:55:58 2019-09-30 21:04:31 t 1 1 107084 518 0.00 2019-09-30 20:20:55 2019-09-30 21:08:36 t 1 2 107089 490 0.00 2019-09-30 21:05:51 2019-09-30 21:15:10 t 1 1 107092 220 0.00 2019-09-30 20:57:56 2019-09-30 21:18:33 t 1 1 107101 501 0.00 2019-09-30 21:23:45 2019-09-30 21:24:58 t 1 1 107102 516 0.00 2019-09-30 21:24:16 2019-09-30 21:25:59 t 1 1 107109 485 0.00 2019-09-30 21:28:05 2019-09-30 21:37:26 t 1 1 107113 516 0.00 2019-09-30 21:35:37 2019-09-30 21:40:44 t 1 1 107120 451 0.00 2019-09-30 21:34:40 2019-09-30 21:50:14 t 1 1 107132 451 0.00 2019-09-30 21:59:27 2019-09-30 22:08:43 t 1 1 107140 512 0.00 2019-09-30 22:03:56 2019-09-30 22:29:08 t 1 1 107150 327 0.00 2019-09-30 22:19:45 2019-09-30 22:43:00 t 1 1 107151 327 0.00 2019-09-30 22:43:07 2019-09-30 22:44:07 t 1 1 107155 327 0.00 2019-09-30 22:54:09 2019-09-30 22:58:11 t 1 1 107159 247 0.00 2019-09-30 23:19:35 2019-09-30 23:21:49 t 1 2 107160 481 0.00 2019-09-30 21:22:37 2019-09-30 23:33:07 t 1 1 107168 361 0.00 2019-09-30 23:48:50 2019-09-30 23:58:56 t 1 2 107172 456 0.00 2019-09-30 23:44:50 2019-10-01 00:19:27 t 1 1 107173 412 0.00 2019-09-30 21:11:16 2019-10-01 00:30:01 t 1 1 107178 501 0.00 2019-10-01 00:34:14 2019-10-01 00:34:48 t 1 1 107180 501 0.00 2019-10-01 00:35:22 2019-10-01 00:35:23 t 1 1 107182 412 0.00 2019-10-01 00:30:01 2019-10-01 00:42:08 t 1 1 107189 518 0.00 2019-10-01 01:20:41 2019-10-01 01:56:49 t 1 2 107193 422 0.00 2019-09-30 23:37:37 2019-10-01 02:27:44 t 1 1 107196 412 0.00 2019-10-01 02:28:54 2019-10-01 02:31:56 t 1 1 107202 422 0.00 2019-10-01 03:11:06 2019-10-01 03:13:51 t 1 1 107203 445 0.00 2019-10-01 03:52:46 2019-10-01 04:00:19 t 1 1 107204 445 0.00 2019-10-01 04:00:22 2019-10-01 04:10:23 t 1 1 107205 445 0.00 2019-10-01 04:09:58 2019-10-01 04:17:46 t 1 1 107210 445 0.00 2019-10-01 04:18:11 2019-10-01 04:20:29 t 1 1 107211 445 0.00 2019-10-01 04:21:17 2019-10-01 04:31:59 t 1 1 107213 430 0.00 2019-10-01 05:15:08 2019-10-01 05:30:02 t 1 1 107214 416 0.00 2019-10-01 02:53:00 2019-10-01 05:41:18 t 1 1 107215 516 0.00 2019-10-01 05:42:12 2019-10-01 05:44:55 t 1 1 107217 516 0.00 2019-10-01 05:44:55 2019-10-01 05:53:10 t 1 1 107218 412 0.00 2019-10-01 04:20:44 2019-10-01 06:09:28 t 1 1 107219 331 0.00 2019-10-01 05:50:27 2019-10-01 06:17:07 t 1 1 107223 456 0.00 2019-10-01 06:33:00 2019-10-01 06:34:22 t 1 1 107224 416 0.00 2019-10-01 05:41:20 2019-10-01 06:35:13 t 1 1 107226 331 0.00 2019-10-01 06:35:54 2019-10-01 06:49:11 t 1 1 107227 516 0.00 2019-10-01 06:37:21 2019-10-01 06:52:22 t 1 1 107231 456 0.00 2019-10-01 07:01:53 2019-10-01 07:04:47 t 1 1 107233 468 0.00 2019-10-01 07:03:56 2019-10-01 07:09:43 t 1 1 107235 468 0.00 2019-10-01 07:09:43 2019-10-01 07:14:21 t 1 1 107240 331 0.00 2019-10-01 07:31:14 2019-10-01 07:34:48 t 1 1 107249 306 0.00 2019-10-01 08:16:06 2019-10-01 08:24:27 t 1 1 107252 424 0.00 2019-09-30 23:14:58 2019-10-01 08:42:23 t 1 2 107255 462 0.00 2019-10-01 08:57:41 2019-10-01 09:01:43 t 1 1 107256 220 0.00 2019-10-01 09:06:34 2019-10-01 09:17:57 t 1 2 107260 331 0.00 2019-10-01 07:34:47 2019-10-01 09:24:45 t 1 1 107264 472 0.00 2019-10-01 09:21:10 2019-10-01 09:29:01 t 1 1 107269 306 0.00 2019-10-01 09:36:35 2019-10-01 09:39:25 t 1 1 107278 296 0.00 2019-10-01 09:50:21 2019-10-01 09:52:53 t 1 2 107281 445 0.00 2019-10-01 09:54:10 2019-10-01 09:57:18 t 1 1 107283 445 0.00 2019-10-01 09:58:24 2019-10-01 10:01:34 t 1 1 107287 470 0.00 2019-10-01 10:03:30 2019-10-01 10:06:56 t 1 1 107290 445 0.00 2019-10-01 10:01:33 2019-10-01 10:10:56 t 1 1 107294 470 0.00 2019-10-01 10:20:27 2019-10-01 10:22:22 t 1 1 107296 445 0.00 2019-10-01 10:16:23 2019-10-01 10:22:31 t 1 1 107302 470 0.00 2019-10-01 10:23:29 2019-10-01 10:25:18 t 1 1 107308 520 0.00 2019-10-01 10:35:59 2019-10-01 10:38:14 t 1 1 107311 220 0.00 2019-10-01 10:17:44 2019-10-01 10:43:05 t 1 1 107314 375 0.00 2019-10-01 10:46:23 2019-10-01 10:47:01 t 1 1 107315 327 0.00 2019-10-01 08:37:22 2019-10-01 10:47:34 t 1 1 107316 375 0.00 2019-10-01 10:47:01 2019-10-01 10:47:44 t 1 1 107317 422 0.00 2019-10-01 04:32:33 2019-10-01 10:49:48 t 1 1 107319 481 0.00 2019-10-01 09:48:23 2019-10-01 10:49:51 t 1 1 107324 445 0.00 2019-10-01 10:35:45 2019-10-01 10:57:04 t 1 1 107327 474 0.00 2019-10-01 10:05:06 2019-10-01 10:57:08 t 1 1 107331 481 0.00 2019-10-01 11:03:03 2019-10-01 11:03:35 t 1 1 107332 416 0.00 2019-10-01 10:29:12 2019-10-01 11:04:05 t 1 1 107337 412 0.00 2019-10-01 11:00:49 2019-10-01 11:05:27 t 1 1 107340 422 0.00 2019-10-01 11:03:00 2019-10-01 11:05:30 t 1 1 107344 470 0.00 2019-10-01 10:37:10 2019-10-01 11:07:21 t 1 1 107345 445 0.00 2019-10-01 11:07:58 2019-10-01 11:08:53 t 1 1 107346 470 0.00 2019-10-01 11:07:21 2019-10-01 11:09:11 t 1 1 107026 501 0.00 2019-09-30 19:49:50 2019-09-30 19:50:22 t 1 1 107031 462 0.00 2019-09-30 18:47:57 2019-09-30 19:52:27 t 1 1 107034 501 0.00 2019-09-30 19:56:42 2019-09-30 19:56:44 t 1 1 107036 501 0.00 2019-09-30 19:57:44 2019-09-30 19:58:53 t 1 1 107039 516 0.00 2019-09-30 19:58:01 2019-09-30 20:01:37 t 1 1 107043 501 0.00 2019-09-30 20:02:59 2019-09-30 20:04:08 t 1 1 107048 501 0.00 2019-09-30 20:07:15 2019-09-30 20:07:36 t 1 1 107061 462 0.00 2019-09-30 20:06:37 2019-09-30 20:19:21 t 1 1 107064 451 0.00 2019-09-30 20:20:30 2019-09-30 20:25:25 t 1 1 107065 416 0.00 2019-09-30 20:18:37 2019-09-30 20:29:56 t 1 1 107068 422 0.00 2019-09-30 19:25:13 2019-09-30 20:34:05 t 1 1 107069 451 0.00 2019-09-30 20:32:03 2019-09-30 20:36:32 t 1 1 107072 445 0.00 2019-09-30 20:03:15 2019-09-30 20:42:06 t 1 1 107073 416 0.00 2019-09-30 20:30:02 2019-09-30 20:48:32 t 1 1 107074 451 0.00 2019-09-30 20:36:32 2019-09-30 20:48:58 t 1 1 107079 451 0.00 2019-09-30 20:48:58 2019-09-30 20:55:58 t 1 1 107080 220 0.00 2019-09-30 20:49:13 2019-09-30 20:56:01 t 1 2 107082 485 0.00 2019-09-30 20:58:52 2019-09-30 21:03:00 t 1 1 107086 412 0.00 2019-09-30 19:22:57 2019-09-30 21:11:16 t 1 1 107087 501 0.00 2019-09-30 21:10:50 2019-09-30 21:12:30 t 1 1 107088 501 0.00 2019-09-30 21:13:33 2019-09-30 21:13:33 t 1 1 107090 501 0.00 2019-09-30 21:15:58 2019-09-30 21:16:33 t 1 1 107095 501 0.00 2019-09-30 21:18:45 2019-09-30 21:21:09 t 1 1 107098 501 0.00 2019-09-30 21:21:55 2019-09-30 21:22:59 t 1 1 107104 306 0.00 2019-09-30 21:26:45 2019-09-30 21:30:23 t 1 1 107106 490 0.00 2019-09-30 21:22:58 2019-09-30 21:33:56 t 1 1 107107 451 0.00 2019-09-30 21:21:03 2019-09-30 21:34:40 t 1 1 107108 430 0.00 2019-09-30 21:04:50 2019-09-30 21:36:02 t 1 1 107111 506 0.00 2019-09-30 21:34:32 2019-09-30 21:38:50 t 1 1 107115 472 0.00 2019-09-30 21:42:17 2019-09-30 21:46:05 t 1 1 107117 501 0.00 2019-09-30 21:39:47 2019-09-30 21:46:33 t 1 1 107118 485 0.00 2019-09-30 21:47:37 2019-09-30 21:49:22 t 1 1 107126 220 0.00 2019-09-30 21:33:21 2019-09-30 21:59:46 t 1 2 107127 506 0.00 2019-09-30 21:57:53 2019-09-30 22:02:57 t 1 1 107130 516 0.00 2019-09-30 21:58:49 2019-09-30 22:06:28 t 1 1 107131 516 0.00 2019-09-30 22:06:28 2019-09-30 22:07:32 t 1 1 107136 327 0.00 2019-09-30 21:59:08 2019-09-30 22:17:49 t 1 1 107139 424 0.00 2019-09-30 21:45:34 2019-09-30 22:28:03 t 1 2 107144 296 0.00 2019-09-30 22:32:21 2019-09-30 22:34:41 t 1 2 107145 220 0.00 2019-09-30 19:50:53 2019-09-30 22:35:33 t 1 2 107146 474 0.00 2019-09-30 22:33:24 2019-09-30 22:36:34 t 1 1 107147 474 0.00 2019-09-30 22:36:33 2019-09-30 22:38:14 t 1 1 107148 331 0.00 2019-09-30 22:18:54 2019-09-30 22:39:40 t 1 1 107153 474 0.00 2019-09-30 22:45:41 2019-09-30 22:47:07 t 1 1 107156 445 0.00 2019-09-30 22:47:45 2019-09-30 23:01:10 t 1 1 107161 501 0.00 2019-09-30 23:20:19 2019-09-30 23:33:53 t 1 1 107163 220 0.00 2019-09-30 23:02:18 2019-09-30 23:43:34 t 1 1 107164 487 0.00 2019-09-30 22:42:57 2019-09-30 23:48:03 t 1 2 107175 501 0.00 2019-10-01 00:30:17 2019-10-01 00:32:09 t 1 1 107179 501 0.00 2019-10-01 00:35:14 2019-10-01 00:35:16 t 1 1 107184 412 0.00 2019-10-01 00:42:08 2019-10-01 01:02:22 t 1 1 107187 395 0.00 2019-10-01 01:21:48 2019-10-01 01:39:08 t 1 2 107188 501 0.00 2019-10-01 01:31:45 2019-10-01 01:55:51 t 1 1 107190 461 0.00 2019-09-30 23:44:57 2019-10-01 02:00:40 t 1 2 107191 503 0.00 2019-10-01 01:57:10 2019-10-01 02:17:50 t 1 1 107197 422 0.00 2019-10-01 02:37:02 2019-10-01 02:49:02 t 1 1 107198 416 0.00 2019-10-01 00:01:51 2019-10-01 02:52:46 t 1 1 107200 468 0.00 2019-10-01 02:39:49 2019-10-01 03:06:21 t 1 1 107206 422 0.00 2019-10-01 03:13:51 2019-10-01 04:17:48 t 1 1 107207 412 0.00 2019-10-01 02:32:40 2019-10-01 04:18:00 t 1 1 107208 422 0.00 2019-10-01 04:18:20 2019-10-01 04:20:27 t 1 1 107212 422 0.00 2019-10-01 04:20:58 2019-10-01 04:32:03 t 1 1 107216 331 0.00 2019-10-01 05:32:36 2019-10-01 05:50:27 t 1 1 107225 331 0.00 2019-10-01 06:17:53 2019-10-01 06:35:32 t 1 1 107228 451 0.00 2019-10-01 06:54:24 2019-10-01 06:56:15 t 1 1 107230 468 0.00 2019-10-01 06:40:57 2019-10-01 07:03:56 t 1 1 107236 516 0.00 2019-10-01 07:15:10 2019-10-01 07:17:32 t 1 1 107237 331 0.00 2019-10-01 06:49:23 2019-10-01 07:30:29 t 1 1 107238 474 0.00 2019-10-01 06:58:17 2019-10-01 07:31:18 t 1 1 107239 306 0.00 2019-10-01 07:20:11 2019-10-01 07:34:21 t 1 1 107241 474 0.00 2019-10-01 07:31:18 2019-10-01 07:38:42 t 1 1 107244 456 0.00 2019-10-01 07:58:15 2019-10-01 07:59:56 t 1 1 107245 402 0.00 2019-10-01 08:02:41 2019-10-01 08:02:41 f 1 2 107246 445 0.00 2019-10-01 07:40:19 2019-10-01 08:19:50 t 1 1 107250 445 0.00 2019-10-01 08:19:58 2019-10-01 08:33:14 t 1 1 107251 306 0.00 2019-10-01 08:24:27 2019-10-01 08:35:27 t 1 1 107258 474 0.00 2019-10-01 07:38:42 2019-10-01 09:23:22 t 1 1 107265 462 0.00 2019-10-01 09:01:43 2019-10-01 09:29:14 t 1 1 107266 306 0.00 2019-10-01 09:25:45 2019-10-01 09:32:50 t 1 1 107270 445 0.00 2019-10-01 09:26:29 2019-10-01 09:39:25 t 1 1 107273 306 0.00 2019-10-01 09:43:39 2019-10-01 09:44:45 t 1 1 107275 445 0.00 2019-10-01 09:41:23 2019-10-01 09:48:50 t 1 1 107277 306 0.00 2019-10-01 09:49:00 2019-10-01 09:51:02 t 1 1 107285 474 0.00 2019-10-01 09:23:22 2019-10-01 10:05:06 t 1 1 107289 512 0.00 2019-10-01 09:54:05 2019-10-01 10:08:11 t 1 1 107292 470 0.00 2019-10-01 10:13:31 2019-10-01 10:20:27 t 1 1 107295 516 0.00 2019-10-01 10:06:29 2019-10-01 10:22:24 t 1 1 107297 331 0.00 2019-10-01 10:22:02 2019-10-01 10:23:04 t 1 1 107299 470 0.00 2019-10-01 10:22:29 2019-10-01 10:23:29 t 1 1 107303 331 0.00 2019-10-01 10:25:15 2019-10-01 10:33:11 t 1 1 107304 445 0.00 2019-10-01 10:23:41 2019-10-01 10:35:45 t 1 1 107307 331 0.00 2019-10-01 10:35:31 2019-10-01 10:37:25 t 1 1 107309 331 0.00 2019-10-01 10:37:25 2019-10-01 10:39:34 t 1 1 107310 331 0.00 2019-10-01 10:39:34 2019-10-01 10:40:41 t 1 1 107313 375 0.00 2019-10-01 10:43:58 2019-10-01 10:45:14 t 1 1 107320 520 0.00 2019-10-01 10:47:31 2019-10-01 10:52:00 t 1 1 107321 331 0.00 2019-10-01 10:51:35 2019-10-01 10:56:31 t 1 1 107322 481 0.00 2019-10-01 10:50:00 2019-10-01 10:57:03 t 1 1 107325 412 0.00 2019-10-01 08:12:31 2019-10-01 10:57:04 t 1 1 107333 514 0.00 2019-10-01 11:03:50 2019-10-01 11:04:26 t 1 1 107335 474 0.00 2019-10-01 10:59:59 2019-10-01 11:05:25 t 1 1 107338 445 0.00 2019-10-01 10:58:45 2019-10-01 11:05:29 t 1 1 107341 485 0.00 2019-10-01 11:03:24 2019-10-01 11:05:32 t 1 1 107343 331 0.00 2019-10-01 11:04:49 2019-10-01 11:06:22 t 1 1 107347 416 0.00 2019-10-01 11:06:55 2019-10-01 11:10:01 t 1 1 107352 481 0.00 2019-10-01 11:12:14 2019-10-01 11:13:42 t 1 1 107355 416 0.00 2019-10-01 11:10:17 2019-10-01 11:15:49 t 1 1 107085 501 0.00 2019-09-30 20:54:06 2019-09-30 21:09:45 t 1 1 107091 501 0.00 2019-09-30 21:17:38 2019-09-30 21:18:09 t 1 1 107093 501 0.00 2019-09-30 21:18:38 2019-09-30 21:18:38 t 1 1 107094 451 0.00 2019-09-30 21:04:31 2019-09-30 21:21:03 t 1 1 107096 512 0.00 2019-09-30 20:09:31 2019-09-30 21:22:14 t 1 1 107097 490 0.00 2019-09-30 21:15:10 2019-09-30 21:22:58 t 1 1 107099 485 0.00 2019-09-30 21:21:58 2019-09-30 21:23:12 t 1 1 107100 516 0.00 2019-09-30 21:14:34 2019-09-30 21:24:16 t 1 1 107103 485 0.00 2019-09-30 21:25:19 2019-09-30 21:28:00 t 1 1 107105 361 0.00 2019-09-30 19:18:10 2019-09-30 21:33:12 t 1 2 107110 422 0.00 2019-09-30 20:41:52 2019-09-30 21:38:34 t 1 1 107112 501 0.00 2019-09-30 21:26:03 2019-09-30 21:39:47 t 1 1 107114 516 0.00 2019-09-30 21:40:44 2019-09-30 21:46:02 t 1 1 107116 506 0.00 2019-09-30 21:38:50 2019-09-30 21:46:30 t 1 1 107119 422 0.00 2019-09-30 21:38:34 2019-09-30 21:49:31 t 1 1 107121 516 0.00 2019-09-30 21:46:02 2019-09-30 21:51:44 t 1 1 107122 506 0.00 2019-09-30 21:46:30 2019-09-30 21:57:53 t 1 1 107123 516 0.00 2019-09-30 21:51:44 2019-09-30 21:58:49 t 1 1 107124 327 0.00 2019-09-30 21:38:50 2019-09-30 21:59:08 t 1 1 107125 451 0.00 2019-09-30 21:59:16 2019-09-30 21:59:24 t 1 1 107128 422 0.00 2019-09-30 21:49:31 2019-09-30 22:03:48 t 1 1 107129 501 0.00 2019-09-30 21:46:33 2019-09-30 22:04:30 t 1 1 107133 474 0.00 2019-09-30 22:10:39 2019-09-30 22:12:16 t 1 1 107134 451 0.00 2019-09-30 22:12:49 2019-09-30 22:15:28 t 1 1 107135 501 0.00 2019-09-30 22:04:30 2019-09-30 22:17:11 t 1 1 107137 501 0.00 2019-09-30 22:17:30 2019-09-30 22:19:09 t 1 1 107138 306 0.00 2019-09-30 22:09:17 2019-09-30 22:23:00 t 1 1 107141 485 0.00 2019-09-30 22:23:14 2019-09-30 22:29:46 t 1 1 107142 247 0.00 2019-09-30 22:29:31 2019-09-30 22:30:30 t 1 2 107143 474 0.00 2019-09-30 22:21:29 2019-09-30 22:33:24 t 1 1 107149 474 0.00 2019-09-30 22:39:24 2019-09-30 22:41:29 t 1 1 107152 220 0.00 2019-09-30 22:21:34 2019-09-30 22:46:50 t 1 1 107154 445 0.00 2019-09-30 20:42:17 2019-09-30 22:47:45 t 1 1 107157 327 0.00 2019-09-30 22:59:16 2019-09-30 23:02:21 t 1 1 107158 514 0.00 2019-09-30 23:00:19 2019-09-30 23:18:31 t 1 1 107162 501 0.00 2019-09-30 23:33:53 2019-09-30 23:41:10 t 1 1 107165 220 0.00 2019-09-30 23:43:34 2019-09-30 23:49:30 t 1 1 107166 512 0.00 2019-09-30 23:48:38 2019-09-30 23:55:49 t 1 1 107167 512 0.00 2019-09-30 23:55:49 2019-09-30 23:58:11 t 1 1 107169 512 0.00 2019-09-30 23:58:10 2019-09-30 23:59:40 t 1 1 107170 416 0.00 2019-09-30 20:48:51 2019-10-01 00:01:46 t 1 1 107171 220 0.00 2019-10-01 00:03:04 2019-10-01 00:06:55 t 1 1 107174 501 0.00 2019-09-30 23:41:10 2019-10-01 00:30:07 t 1 1 107176 501 0.00 2019-10-01 00:31:19 2019-10-01 00:32:19 t 1 1 107177 501 0.00 2019-10-01 00:33:14 2019-10-01 00:33:15 t 1 1 107181 501 0.00 2019-10-01 00:35:29 2019-10-01 00:35:31 t 1 1 107183 292 0.00 2019-10-01 00:34:03 2019-10-01 00:49:09 t 1 2 107185 395 0.00 2019-10-01 00:48:28 2019-10-01 01:16:30 t 1 2 107186 501 0.00 2019-10-01 00:36:15 2019-10-01 01:31:45 t 1 1 107192 412 0.00 2019-10-01 01:02:22 2019-10-01 02:27:19 t 1 1 107194 379 0.00 2019-09-30 17:54:39 2019-10-01 02:28:02 t 1 1 107195 445 0.00 2019-09-30 23:01:10 2019-10-01 02:31:53 t 1 1 107199 422 0.00 2019-10-01 02:49:02 2019-10-01 02:56:28 t 1 1 107201 422 0.00 2019-10-01 02:56:28 2019-10-01 03:11:06 t 1 1 107209 412 0.00 2019-10-01 04:18:00 2019-10-01 04:20:28 t 1 1 107220 331 0.00 2019-10-01 06:17:05 2019-10-01 06:17:53 t 1 1 107221 516 0.00 2019-10-01 05:53:10 2019-10-01 06:24:10 t 1 1 107222 247 0.00 2019-10-01 06:31:35 2019-10-01 06:32:32 t 1 2 107229 456 0.00 2019-10-01 07:01:40 2019-10-01 07:01:40 f 1 1 107232 430 0.00 2019-10-01 07:01:24 2019-10-01 07:09:20 t 1 1 107234 430 0.00 2019-10-01 07:08:23 2019-10-01 07:14:05 t 1 1 107242 445 0.00 2019-10-01 04:32:10 2019-10-01 07:40:19 t 1 1 107243 468 0.00 2019-10-01 07:15:26 2019-10-01 07:56:27 t 1 1 107247 456 0.00 2019-10-01 08:18:02 2019-10-01 08:20:06 t 1 1 107248 430 0.00 2019-10-01 08:21:12 2019-10-01 08:21:26 t 1 1 107253 306 0.00 2019-10-01 08:35:27 2019-10-01 08:53:54 t 1 1 107254 462 0.00 2019-10-01 08:46:51 2019-10-01 08:57:41 t 1 1 107257 445 0.00 2019-10-01 08:33:24 2019-10-01 09:19:01 t 1 1 107259 481 0.00 2019-10-01 07:33:16 2019-10-01 09:23:34 t 1 1 107261 331 0.00 2019-10-01 09:24:44 2019-10-01 09:24:56 t 1 1 107262 331 0.00 2019-10-01 09:24:56 2019-10-01 09:26:13 t 1 1 107263 331 0.00 2019-10-01 09:26:12 2019-10-01 09:27:52 t 1 1 107267 306 0.00 2019-10-01 09:32:50 2019-10-01 09:34:11 t 1 1 107268 501 0.00 2019-10-01 09:14:50 2019-10-01 09:35:57 t 1 1 107271 520 0.00 2019-10-01 09:31:13 2019-10-01 09:39:42 t 1 1 107272 512 0.00 2019-10-01 08:33:49 2019-10-01 09:40:25 t 1 1 107274 481 0.00 2019-10-01 09:24:08 2019-10-01 09:46:52 t 1 1 107276 445 0.00 2019-10-01 09:48:50 2019-10-01 09:49:50 t 1 1 107279 512 0.00 2019-10-01 09:43:14 2019-10-01 09:53:36 t 1 1 107280 445 0.00 2019-10-01 09:49:26 2019-10-01 09:54:10 t 1 1 107282 445 0.00 2019-10-01 09:57:18 2019-10-01 09:58:21 t 1 1 107284 325 0.00 2019-10-01 09:36:20 2019-10-01 10:02:19 t 1 2 107286 501 0.00 2019-10-01 10:05:37 2019-10-01 10:06:40 t 1 1 107288 306 0.00 2019-10-01 10:02:21 2019-10-01 10:07:03 t 1 1 107291 325 0.00 2019-10-01 10:09:49 2019-10-01 10:19:54 t 1 2 107293 331 0.00 2019-10-01 09:28:08 2019-10-01 10:22:02 t 1 1 107298 306 0.00 2019-10-01 10:20:16 2019-10-01 10:23:15 t 1 1 107300 445 0.00 2019-10-01 10:22:31 2019-10-01 10:23:38 t 1 1 107301 331 0.00 2019-10-01 10:23:04 2019-10-01 10:24:16 t 1 1 107305 520 0.00 2019-10-01 10:30:02 2019-10-01 10:36:54 t 1 1 107306 470 0.00 2019-10-01 10:27:37 2019-10-01 10:37:10 t 1 1 107312 520 0.00 2019-10-01 10:39:25 2019-10-01 10:43:29 t 1 1 107318 247 0.00 2019-10-01 10:47:30 2019-10-01 10:49:49 t 1 2 107323 375 0.00 2019-10-01 10:47:44 2019-10-01 10:57:04 t 1 1 107326 422 0.00 2019-10-01 10:49:48 2019-10-01 10:57:07 t 1 1 107328 516 0.00 2019-10-01 10:51:35 2019-10-01 10:59:32 t 1 1 107329 375 0.00 2019-10-01 11:00:12 2019-10-01 11:00:54 t 1 1 107330 520 0.00 2019-10-01 10:59:23 2019-10-01 11:01:23 t 1 1 107334 331 0.00 2019-10-01 10:56:36 2019-10-01 11:04:30 t 1 1 107336 481 0.00 2019-10-01 11:03:35 2019-10-01 11:05:26 t 1 1 107339 375 0.00 2019-10-01 11:01:04 2019-10-01 11:05:29 t 1 1 107342 306 0.00 2019-10-01 10:41:06 2019-10-01 11:05:45 t 1 1 107349 422 0.00 2019-10-01 11:09:49 2019-10-01 11:12:05 t 1 1 107350 422 0.00 2019-10-01 11:12:04 2019-10-01 11:13:37 t 1 1 107354 461 0.00 2019-10-01 10:43:18 2019-10-01 11:14:42 t 1 2 107357 470 0.00 2019-10-01 11:14:20 2019-10-01 11:16:49 t 1 1 107360 416 0.00 2019-10-01 11:18:53 2019-10-01 11:21:36 t 1 1 107348 512 0.00 2019-10-01 11:05:07 2019-10-01 11:10:31 t 1 1 107351 445 0.00 2019-10-01 11:09:03 2019-10-01 11:13:40 t 1 1 107353 470 0.00 2019-10-01 11:11:46 2019-10-01 11:14:16 t 1 1 107356 416 0.00 2019-10-01 11:14:53 2019-10-01 11:16:41 t 1 1 107362 331 0.00 2019-10-01 11:07:17 2019-10-01 11:24:01 t 1 1 107363 445 0.00 2019-10-01 11:22:59 2019-10-01 11:24:34 t 1 1 107365 331 0.00 2019-10-01 11:24:06 2019-10-01 11:26:27 t 1 1 107368 445 0.00 2019-10-01 11:26:28 2019-10-01 11:29:23 t 1 1 107373 422 0.00 2019-10-01 11:28:25 2019-10-01 11:32:57 t 1 1 107375 445 0.00 2019-10-01 11:33:10 2019-10-01 11:34:08 t 1 1 107376 445 0.00 2019-10-01 11:34:08 2019-10-01 11:35:13 t 1 1 107380 327 0.00 2019-10-01 10:47:43 2019-10-01 11:51:22 t 1 1 107384 331 0.00 2019-10-01 11:55:44 2019-10-01 11:58:27 t 1 1 107385 331 0.00 2019-10-01 11:58:25 2019-10-01 11:59:41 t 1 1 107388 306 0.00 2019-10-01 11:45:22 2019-10-01 12:02:32 t 1 1 107391 501 0.00 2019-10-01 12:03:22 2019-10-01 12:06:36 t 1 1 107392 501 0.00 2019-10-01 12:06:43 2019-10-01 12:07:03 t 1 1 107396 331 0.00 2019-10-01 12:11:59 2019-10-01 12:14:53 t 1 1 107399 327 0.00 2019-10-01 12:20:28 2019-10-01 12:21:40 t 1 1 107402 331 0.00 2019-10-01 12:14:56 2019-10-01 12:24:54 t 1 1 107403 422 0.00 2019-10-01 12:01:34 2019-10-01 12:32:05 t 1 1 107409 451 0.00 2019-10-01 12:47:34 2019-10-01 12:53:22 t 1 1 107410 451 0.00 2019-10-01 12:53:22 2019-10-01 12:56:52 t 1 1 107412 462 0.00 2019-10-01 12:48:23 2019-10-01 12:58:58 t 1 1 107423 487 0.00 2019-10-01 10:50:16 2019-10-01 13:16:41 t 1 2 107424 520 0.00 2019-10-01 13:22:58 2019-10-01 13:23:08 t 1 1 107426 327 0.00 2019-10-01 13:16:40 2019-10-01 13:29:20 t 1 1 107428 456 0.00 2019-10-01 13:21:25 2019-10-01 13:32:14 t 1 1 107431 327 0.00 2019-10-01 13:32:03 2019-10-01 13:35:00 t 1 1 107435 327 0.00 2019-10-01 13:39:06 2019-10-01 13:39:38 t 1 1 107437 451 0.00 2019-10-01 13:34:22 2019-10-01 13:40:43 t 1 1 107439 327 0.00 2019-10-01 13:40:09 2019-10-01 13:42:37 t 1 1 107445 327 0.00 2019-10-01 13:48:07 2019-10-01 13:48:57 t 1 1 107453 520 0.00 2019-10-01 13:47:04 2019-10-01 13:57:03 t 1 1 107455 422 0.00 2019-10-01 13:04:36 2019-10-01 13:57:54 t 1 1 107456 451 0.00 2019-10-01 13:52:15 2019-10-01 13:58:25 t 1 1 107459 468 0.00 2019-10-01 13:56:30 2019-10-01 13:59:32 t 1 1 107460 474 0.00 2019-10-01 13:59:17 2019-10-01 14:04:51 t 1 1 107464 516 0.00 2019-10-01 14:03:57 2019-10-01 14:07:22 t 1 1 107468 220 0.00 2019-10-01 14:13:09 2019-10-01 14:14:32 t 1 2 107475 327 0.00 2019-10-01 14:37:14 2019-10-01 14:41:57 t 1 1 107484 468 0.00 2019-10-01 14:46:01 2019-10-01 14:52:30 t 1 1 107487 361 0.00 2019-10-01 14:18:14 2019-10-01 14:56:53 t 1 2 107497 327 0.00 2019-10-01 15:25:29 2019-10-01 15:25:39 t 1 1 107499 508 0.00 2019-10-01 14:59:33 2019-10-01 15:32:08 t 1 2 107501 306 0.00 2019-10-01 15:33:46 2019-10-01 15:36:46 t 1 1 107503 412 0.00 2019-10-01 13:08:49 2019-10-01 15:40:44 t 1 1 107504 498 0.00 2019-10-01 14:35:07 2019-10-01 15:41:32 t 1 2 107508 327 0.00 2019-10-01 15:28:02 2019-10-01 15:45:41 t 1 1 107518 412 0.00 2019-10-01 15:40:44 2019-10-01 16:00:14 t 1 1 107520 327 0.00 2019-10-01 15:45:48 2019-10-01 16:02:04 t 1 1 107521 474 0.00 2019-10-01 15:58:29 2019-10-01 16:03:17 t 1 1 107526 485 0.00 2019-10-01 16:08:19 2019-10-01 16:15:35 t 1 1 107530 451 0.00 2019-10-01 15:54:42 2019-10-01 16:20:02 t 1 1 107533 468 0.00 2019-10-01 16:19:37 2019-10-01 16:26:20 t 1 1 107536 461 0.00 2019-10-01 16:17:35 2019-10-01 16:28:09 t 1 2 107540 501 0.00 2019-10-01 16:34:29 2019-10-01 16:39:12 t 1 1 107542 451 0.00 2019-10-01 16:20:02 2019-10-01 16:40:37 t 1 1 107544 474 0.00 2019-10-01 16:27:40 2019-10-01 16:44:25 t 1 1 107545 422 0.00 2019-10-01 16:40:41 2019-10-01 16:45:07 t 1 1 107549 474 0.00 2019-10-01 16:45:50 2019-10-01 16:50:47 t 1 1 107550 331 0.00 2019-10-01 16:45:51 2019-10-01 16:52:56 t 1 1 107552 416 0.00 2019-10-01 14:22:51 2019-10-01 16:55:54 t 1 1 107553 485 0.00 2019-10-01 16:54:37 2019-10-01 16:56:11 t 1 1 107560 327 0.00 2019-10-01 17:07:45 2019-10-01 17:08:50 t 1 1 107564 327 0.00 2019-10-01 17:17:11 2019-10-01 17:17:41 t 1 1 107565 327 0.00 2019-10-01 17:18:26 2019-10-01 17:18:54 t 1 1 107570 311 0.00 2019-10-01 16:55:55 2019-10-01 17:24:26 t 1 2 107575 327 0.00 2019-10-01 17:27:24 2019-10-01 17:28:08 t 1 1 107578 445 0.00 2019-10-01 17:31:21 2019-10-01 17:32:07 t 1 1 107580 516 0.00 2019-10-01 17:29:40 2019-10-01 17:33:53 t 1 1 107581 445 0.00 2019-10-01 17:32:14 2019-10-01 17:35:35 t 1 1 107585 395 0.00 2019-10-01 17:38:57 2019-10-01 17:40:20 t 1 2 107590 520 0.00 2019-10-01 17:38:58 2019-10-01 17:43:35 t 1 1 107597 445 0.00 2019-10-01 17:35:34 2019-10-01 17:52:03 t 1 1 107604 451 0.00 2019-10-01 17:46:03 2019-10-01 18:00:21 t 1 1 107605 445 0.00 2019-10-01 17:52:03 2019-10-01 18:02:00 t 1 1 107610 306 0.00 2019-10-01 18:00:37 2019-10-01 18:05:12 t 1 1 107614 451 0.00 2019-10-01 18:00:21 2019-10-01 18:08:42 t 1 1 107616 516 0.00 2019-10-01 17:49:40 2019-10-01 18:13:25 t 1 1 107621 451 0.00 2019-10-01 18:08:42 2019-10-01 18:21:12 t 1 1 107624 296 0.00 2019-10-01 18:19:58 2019-10-01 18:23:21 t 1 2 107627 503 0.00 2019-10-01 18:15:53 2019-10-01 18:31:48 t 1 1 107630 416 0.00 2019-10-01 17:40:39 2019-10-01 18:36:55 t 1 1 107632 445 0.00 2019-10-01 18:28:57 2019-10-01 18:38:44 t 1 1 107634 306 0.00 2019-10-01 18:32:40 2019-10-01 18:40:14 t 1 1 107637 422 0.00 2019-10-01 18:21:22 2019-10-01 18:51:22 t 1 1 107639 481 0.00 2019-10-01 18:15:41 2019-10-01 18:56:46 t 1 1 107640 220 0.00 2019-10-01 18:36:51 2019-10-01 18:57:44 t 1 2 107644 331 0.00 2019-10-01 18:06:10 2019-10-01 19:13:55 t 1 1 107646 395 0.00 2019-10-01 19:14:55 2019-10-01 19:20:17 t 1 2 107649 514 0.00 2019-10-01 18:18:34 2019-10-01 19:24:23 t 1 1 107650 306 0.00 2019-10-01 19:23:41 2019-10-01 19:25:35 t 1 1 107651 498 0.00 2019-10-01 17:32:11 2019-10-01 19:27:16 t 1 2 107656 514 0.00 2019-10-01 19:37:37 2019-10-01 19:40:09 t 1 1 107657 327 0.00 2019-10-01 19:40:18 2019-10-01 19:40:51 t 1 1 107661 514 0.00 2019-10-01 19:42:35 2019-10-01 19:45:26 t 1 1 107662 461 0.00 2019-10-01 19:11:21 2019-10-01 19:46:03 t 1 2 107663 306 0.00 2019-10-01 19:43:14 2019-10-01 19:48:21 t 1 1 107666 327 0.00 2019-10-01 19:50:48 2019-10-01 19:52:24 t 1 1 107668 422 0.00 2019-10-01 18:51:22 2019-10-01 19:57:18 t 1 1 107672 474 0.00 2019-10-01 18:40:05 2019-10-01 20:04:41 t 1 1 107675 516 0.00 2019-10-01 19:45:14 2019-10-01 20:07:47 t 1 1 107681 512 0.00 2019-10-01 20:04:17 2019-10-01 20:14:08 t 1 1 107682 514 0.00 2019-10-01 19:45:26 2019-10-01 20:15:10 t 1 1 107685 512 0.00 2019-10-01 20:14:08 2019-10-01 20:18:57 t 1 1 107689 512 0.00 2019-10-01 20:18:57 2019-10-01 20:25:11 t 1 1 107358 416 0.00 2019-10-01 11:16:47 2019-10-01 11:18:47 t 1 1 107359 498 0.00 2019-10-01 10:35:54 2019-10-01 11:19:24 t 1 2 107361 445 0.00 2019-10-01 11:15:30 2019-10-01 11:22:52 t 1 1 107364 445 0.00 2019-10-01 11:24:34 2019-10-01 11:26:11 t 1 1 107366 331 0.00 2019-10-01 11:26:27 2019-10-01 11:27:06 t 1 1 107370 424 0.00 2019-10-01 11:30:49 2019-10-01 11:30:49 f 1 2 107371 424 0.00 2019-10-01 11:31:02 2019-10-01 11:31:02 f 1 2 107378 422 0.00 2019-10-01 11:32:57 2019-10-01 11:43:30 t 1 1 107381 327 0.00 2019-10-01 11:51:32 2019-10-01 11:52:37 t 1 1 107386 422 0.00 2019-10-01 11:43:30 2019-10-01 12:01:34 t 1 1 107387 331 0.00 2019-10-01 11:59:41 2019-10-01 12:01:40 t 1 1 107389 327 0.00 2019-10-01 11:53:20 2019-10-01 12:03:45 t 1 1 107390 327 0.00 2019-10-01 12:03:54 2019-10-01 12:04:18 t 1 1 107393 501 0.00 2019-10-01 12:07:36 2019-10-01 12:09:05 t 1 1 107394 498 0.00 2019-10-01 11:35:29 2019-10-01 12:10:34 t 1 2 107395 331 0.00 2019-10-01 12:01:39 2019-10-01 12:11:56 t 1 1 107404 331 0.00 2019-10-01 12:24:54 2019-10-01 12:35:24 t 1 1 107405 501 0.00 2019-10-01 12:28:40 2019-10-01 12:37:43 t 1 1 107407 416 0.00 2019-10-01 12:43:01 2019-10-01 12:45:27 t 1 1 107408 331 0.00 2019-10-01 12:35:23 2019-10-01 12:53:20 t 1 1 107411 451 0.00 2019-10-01 12:56:52 2019-10-01 12:58:54 t 1 1 107413 445 0.00 2019-10-01 12:22:09 2019-10-01 12:59:33 t 1 1 107415 422 0.00 2019-10-01 12:32:05 2019-10-01 13:04:36 t 1 1 107416 470 0.00 2019-10-01 13:03:52 2019-10-01 13:04:51 t 1 1 107417 461 0.00 2019-10-01 12:02:35 2019-10-01 13:05:09 t 1 2 107419 470 0.00 2019-10-01 13:06:00 2019-10-01 13:07:06 t 1 1 107420 516 0.00 2019-10-01 13:01:40 2019-10-01 13:10:16 t 1 1 107421 306 0.00 2019-10-01 13:05:33 2019-10-01 13:12:49 t 1 1 107422 327 0.00 2019-10-01 13:00:27 2019-10-01 13:16:40 t 1 1 107429 520 0.00 2019-10-01 13:23:14 2019-10-01 13:32:25 t 1 1 107432 327 0.00 2019-10-01 13:35:07 2019-10-01 13:36:12 t 1 1 107434 327 0.00 2019-10-01 13:37:03 2019-10-01 13:38:59 t 1 1 107436 514 0.00 2019-10-01 13:27:11 2019-10-01 13:39:43 t 1 1 107438 306 0.00 2019-10-01 13:32:56 2019-10-01 13:41:34 t 1 1 107441 514 0.00 2019-10-01 13:39:43 2019-10-01 13:44:05 t 1 1 107442 247 0.00 2019-10-01 13:46:20 2019-10-01 13:46:35 t 1 2 107443 327 0.00 2019-10-01 13:44:21 2019-10-01 13:47:29 t 1 1 107446 395 0.00 2019-10-01 13:31:24 2019-10-01 13:50:10 t 1 2 107447 327 0.00 2019-10-01 13:49:42 2019-10-01 13:52:05 t 1 1 107451 327 0.00 2019-10-01 13:53:00 2019-10-01 13:54:32 t 1 1 107452 327 0.00 2019-10-01 13:55:32 2019-10-01 13:56:45 t 1 1 107454 462 0.00 2019-10-01 13:41:25 2019-10-01 13:57:20 t 1 1 107458 474 0.00 2019-10-01 13:58:26 2019-10-01 13:58:58 t 1 1 107461 220 0.00 2019-10-01 10:50:41 2019-10-01 14:05:03 t 1 1 107463 474 0.00 2019-10-01 14:04:57 2019-10-01 14:06:01 t 1 1 107467 462 0.00 2019-10-01 13:57:20 2019-10-01 14:11:37 t 1 1 107469 422 0.00 2019-10-01 14:10:22 2019-10-01 14:15:53 t 1 1 107470 327 0.00 2019-10-01 14:15:11 2019-10-01 14:16:41 t 1 1 107472 451 0.00 2019-10-01 14:25:17 2019-10-01 14:28:34 t 1 1 107477 424 0.00 2019-10-01 14:42:44 2019-10-01 14:42:44 f 1 2 107479 331 0.00 2019-10-01 14:11:07 2019-10-01 14:46:51 t 1 1 107480 327 0.00 2019-10-01 14:47:14 2019-10-01 14:49:07 t 1 1 107481 327 0.00 2019-10-01 14:50:08 2019-10-01 14:51:35 t 1 1 107483 220 0.00 2019-10-01 14:38:23 2019-10-01 14:52:09 t 1 1 107485 512 0.00 2019-10-01 14:50:50 2019-10-01 14:52:45 t 1 1 107489 395 0.00 2019-10-01 14:53:42 2019-10-01 14:59:37 t 1 2 107491 395 0.00 2019-10-01 15:06:38 2019-10-01 15:09:01 t 1 2 107493 422 0.00 2019-10-01 14:57:47 2019-10-01 15:21:05 t 1 1 107494 451 0.00 2019-10-01 15:03:19 2019-10-01 15:21:25 t 1 1 107495 327 0.00 2019-10-01 15:21:16 2019-10-01 15:22:45 t 1 1 107496 327 0.00 2019-10-01 15:24:20 2019-10-01 15:25:18 t 1 1 107498 327 0.00 2019-10-01 15:25:56 2019-10-01 15:27:09 t 1 1 107500 451 0.00 2019-10-01 15:21:25 2019-10-01 15:36:22 t 1 1 107502 514 0.00 2019-10-01 15:33:20 2019-10-01 15:39:25 t 1 1 107506 485 0.00 2019-10-01 15:39:45 2019-10-01 15:42:21 t 1 1 107507 451 0.00 2019-10-01 15:36:22 2019-10-01 15:45:24 t 1 1 107513 325 0.00 2019-10-01 15:32:47 2019-10-01 15:54:27 t 1 2 107515 422 0.00 2019-10-01 15:21:05 2019-10-01 15:54:43 t 1 1 107517 474 0.00 2019-10-01 15:50:30 2019-10-01 15:58:29 t 1 1 107523 516 0.00 2019-10-01 15:15:09 2019-10-01 16:07:13 t 1 1 107524 485 0.00 2019-10-01 16:01:30 2019-10-01 16:08:19 t 1 1 107525 474 0.00 2019-10-01 16:03:16 2019-10-01 16:09:20 t 1 1 107532 485 0.00 2019-10-01 16:15:35 2019-10-01 16:25:13 t 1 1 107535 512 0.00 2019-10-01 16:24:00 2019-10-01 16:27:50 t 1 1 107537 327 0.00 2019-10-01 16:06:19 2019-10-01 16:28:28 t 1 1 107539 485 0.00 2019-10-01 16:28:38 2019-10-01 16:29:29 t 1 1 107551 331 0.00 2019-10-01 16:53:30 2019-10-01 16:54:36 t 1 1 107554 327 0.00 2019-10-01 16:29:04 2019-10-01 17:02:02 t 1 1 107555 327 0.00 2019-10-01 17:02:52 2019-10-01 17:05:06 t 1 1 107557 485 0.00 2019-10-01 17:01:00 2019-10-01 17:06:56 t 1 1 107559 422 0.00 2019-10-01 16:45:07 2019-10-01 17:08:16 t 1 1 107562 327 0.00 2019-10-01 17:15:27 2019-10-01 17:16:00 t 1 1 107569 416 0.00 2019-10-01 16:56:42 2019-10-01 17:23:26 t 1 1 107571 456 0.00 2019-10-01 17:21:17 2019-10-01 17:25:26 t 1 1 107573 306 0.00 2019-10-01 16:45:50 2019-10-01 17:26:11 t 1 1 107574 395 0.00 2019-10-01 17:15:08 2019-10-01 17:27:31 t 1 2 107577 327 0.00 2019-10-01 17:29:06 2019-10-01 17:31:53 t 1 1 107583 395 0.00 2019-10-01 17:32:49 2019-10-01 17:38:49 t 1 2 107587 451 0.00 2019-10-01 17:20:09 2019-10-01 17:40:59 t 1 1 107592 395 0.00 2019-10-01 17:42:16 2019-10-01 17:44:35 t 1 2 107593 395 0.00 2019-10-01 17:47:21 2019-10-01 17:49:30 t 1 2 107598 395 0.00 2019-10-01 17:52:18 2019-10-01 17:52:30 t 1 2 107600 327 0.00 2019-10-01 17:55:50 2019-10-01 17:56:25 t 1 1 107602 327 0.00 2019-10-01 17:57:10 2019-10-01 17:58:09 t 1 1 107606 296 0.00 2019-10-01 17:57:13 2019-10-01 18:02:33 t 1 2 107608 445 0.00 2019-10-01 18:01:59 2019-10-01 18:04:36 t 1 1 107609 422 0.00 2019-10-01 17:42:48 2019-10-01 18:04:59 t 1 1 107611 445 0.00 2019-10-01 18:04:35 2019-10-01 18:05:53 t 1 1 107612 331 0.00 2019-10-01 17:38:14 2019-10-01 18:06:10 t 1 1 107613 327 0.00 2019-10-01 18:06:01 2019-10-01 18:07:53 t 1 1 107617 516 0.00 2019-10-01 18:13:25 2019-10-01 18:18:06 t 1 1 107622 422 0.00 2019-10-01 18:04:59 2019-10-01 18:21:22 t 1 1 107623 325 0.00 2019-10-01 18:12:14 2019-10-01 18:22:19 t 1 2 107626 306 0.00 2019-10-01 18:30:05 2019-10-01 18:30:34 t 1 1 107629 451 0.00 2019-10-01 18:26:48 2019-10-01 18:32:32 t 1 1 107631 474 0.00 2019-10-01 17:51:59 2019-10-01 18:38:32 t 1 1 107635 451 0.00 2019-10-01 18:32:31 2019-10-01 18:40:49 t 1 1 107367 501 0.00 2019-10-01 11:18:32 2019-10-01 11:27:31 t 1 1 107369 424 0.00 2019-10-01 11:30:36 2019-10-01 11:30:36 f 1 2 107372 306 0.00 2019-10-01 11:17:00 2019-10-01 11:31:42 t 1 1 107374 445 0.00 2019-10-01 11:30:27 2019-10-01 11:33:06 t 1 1 107377 306 0.00 2019-10-01 11:31:42 2019-10-01 11:42:07 t 1 1 107379 331 0.00 2019-10-01 11:27:06 2019-10-01 11:49:31 t 1 1 107382 331 0.00 2019-10-01 11:51:44 2019-10-01 11:54:23 t 1 1 107383 331 0.00 2019-10-01 11:54:33 2019-10-01 11:55:58 t 1 1 107397 306 0.00 2019-10-01 12:11:00 2019-10-01 12:16:36 t 1 1 107398 327 0.00 2019-10-01 12:04:28 2019-10-01 12:20:01 t 1 1 107400 445 0.00 2019-10-01 11:42:02 2019-10-01 12:22:06 t 1 1 107401 306 0.00 2019-10-01 12:20:54 2019-10-01 12:23:29 t 1 1 107406 327 0.00 2019-10-01 12:23:41 2019-10-01 12:41:46 t 1 1 107414 327 0.00 2019-10-01 12:41:46 2019-10-01 13:00:27 t 1 1 107418 470 0.00 2019-10-01 13:04:51 2019-10-01 13:06:00 t 1 1 107425 331 0.00 2019-10-01 12:53:23 2019-10-01 13:23:44 t 1 1 107427 327 0.00 2019-10-01 13:29:59 2019-10-01 13:31:20 t 1 1 107430 451 0.00 2019-10-01 13:23:05 2019-10-01 13:34:22 t 1 1 107433 327 0.00 2019-10-01 13:35:37 2019-10-01 13:36:37 t 1 1 107440 327 0.00 2019-10-01 13:43:14 2019-10-01 13:43:46 t 1 1 107444 456 0.00 2019-10-01 13:43:40 2019-10-01 13:47:34 t 1 1 107448 451 0.00 2019-10-01 13:40:43 2019-10-01 13:52:15 t 1 1 107449 516 0.00 2019-10-01 13:43:24 2019-10-01 13:52:57 t 1 1 107450 327 0.00 2019-10-01 13:52:42 2019-10-01 13:53:43 t 1 1 107457 474 0.00 2019-10-01 11:24:00 2019-10-01 13:58:35 t 1 1 107462 327 0.00 2019-10-01 14:04:42 2019-10-01 14:05:16 t 1 1 107465 422 0.00 2019-10-01 13:57:54 2019-10-01 14:10:22 t 1 1 107466 331 0.00 2019-10-01 13:23:44 2019-10-01 14:11:07 t 1 1 107471 327 0.00 2019-10-01 14:26:38 2019-10-01 14:27:49 t 1 1 107473 306 0.00 2019-10-01 14:27:03 2019-10-01 14:30:18 t 1 1 107474 247 0.00 2019-10-01 14:33:02 2019-10-01 14:37:04 t 1 2 107476 424 0.00 2019-10-01 14:42:30 2019-10-01 14:42:30 f 1 2 107478 296 0.00 2019-10-01 14:40:40 2019-10-01 14:44:04 t 1 2 107482 501 0.00 2019-10-01 14:43:19 2019-10-01 14:51:44 t 1 1 107486 485 0.00 2019-10-01 14:52:25 2019-10-01 14:53:57 t 1 1 107488 422 0.00 2019-10-01 14:15:53 2019-10-01 14:57:45 t 1 1 107490 325 0.00 2019-10-01 14:36:07 2019-10-01 15:06:09 t 1 2 107492 327 0.00 2019-10-01 15:01:31 2019-10-01 15:20:19 t 1 1 107505 503 0.00 2019-10-01 15:34:03 2019-10-01 15:41:55 t 1 1 107509 503 0.00 2019-10-01 15:41:55 2019-10-01 15:45:50 t 1 1 107510 514 0.00 2019-10-01 15:39:25 2019-10-01 15:45:57 t 1 1 107511 485 0.00 2019-10-01 15:45:50 2019-10-01 15:50:14 t 1 1 107512 474 0.00 2019-10-01 15:43:33 2019-10-01 15:50:30 t 1 1 107514 451 0.00 2019-10-01 15:45:24 2019-10-01 15:54:42 t 1 1 107516 485 0.00 2019-10-01 15:50:14 2019-10-01 15:58:07 t 1 1 107519 485 0.00 2019-10-01 15:59:07 2019-10-01 16:00:48 t 1 1 107522 422 0.00 2019-10-01 15:54:43 2019-10-01 16:05:41 t 1 1 107527 422 0.00 2019-10-01 16:05:41 2019-10-01 16:16:58 t 1 1 107528 306 0.00 2019-10-01 16:15:36 2019-10-01 16:17:53 t 1 1 107529 468 0.00 2019-10-01 16:12:11 2019-10-01 16:19:37 t 1 1 107531 516 0.00 2019-10-01 16:07:13 2019-10-01 16:23:15 t 1 1 107534 474 0.00 2019-10-01 16:09:21 2019-10-01 16:27:33 t 1 1 107538 422 0.00 2019-10-01 16:16:58 2019-10-01 16:28:30 t 1 1 107541 501 0.00 2019-10-01 16:39:19 2019-10-01 16:39:20 t 1 1 107543 422 0.00 2019-10-01 16:28:30 2019-10-01 16:40:41 t 1 1 107546 474 0.00 2019-10-01 16:44:25 2019-10-01 16:45:45 t 1 1 107547 331 0.00 2019-10-01 14:46:57 2019-10-01 16:45:51 t 1 1 107548 395 0.00 2019-10-01 16:39:55 2019-10-01 16:46:19 t 1 2 107556 379 0.00 2019-10-01 16:04:57 2019-10-01 17:05:28 t 1 1 107558 451 0.00 2019-10-01 16:40:37 2019-10-01 17:07:55 t 1 1 107561 485 0.00 2019-10-01 17:06:56 2019-10-01 17:09:02 t 1 1 107563 485 0.00 2019-10-01 17:10:21 2019-10-01 17:16:26 t 1 1 107566 516 0.00 2019-10-01 17:14:32 2019-10-01 17:19:07 t 1 1 107567 422 0.00 2019-10-01 17:08:16 2019-10-01 17:20:01 t 1 1 107568 451 0.00 2019-10-01 17:07:55 2019-10-01 17:20:10 t 1 1 107572 485 0.00 2019-10-01 17:16:26 2019-10-01 17:25:32 t 1 1 107576 445 0.00 2019-10-01 12:59:47 2019-10-01 17:31:05 t 1 1 107579 461 0.00 2019-10-01 17:08:03 2019-10-01 17:33:08 t 1 2 107582 331 0.00 2019-10-01 16:55:05 2019-10-01 17:38:16 t 1 1 107584 516 0.00 2019-10-01 17:33:53 2019-10-01 17:39:21 t 1 1 107586 416 0.00 2019-10-01 17:24:30 2019-10-01 17:40:39 t 1 1 107588 422 0.00 2019-10-01 17:20:01 2019-10-01 17:42:48 t 1 1 107589 327 0.00 2019-10-01 17:41:48 2019-10-01 17:43:03 t 1 1 107591 516 0.00 2019-10-01 17:39:21 2019-10-01 17:44:27 t 1 1 107594 516 0.00 2019-10-01 17:44:27 2019-10-01 17:49:40 t 1 1 107595 395 0.00 2019-10-01 17:50:10 2019-10-01 17:51:00 t 1 2 107596 474 0.00 2019-10-01 16:50:47 2019-10-01 17:51:59 t 1 1 107599 327 0.00 2019-10-01 17:52:58 2019-10-01 17:54:26 t 1 1 107601 461 0.00 2019-10-01 17:38:34 2019-10-01 17:57:20 t 1 2 107603 456 0.00 2019-10-01 17:52:10 2019-10-01 17:58:17 t 1 1 107607 327 0.00 2019-10-01 18:03:38 2019-10-01 18:04:14 t 1 1 107615 445 0.00 2019-10-01 18:08:50 2019-10-01 18:09:35 t 1 1 107618 424 0.00 2019-10-01 18:18:36 2019-10-01 18:18:36 f 1 2 107619 220 0.00 2019-10-01 15:02:58 2019-10-01 18:20:11 t 1 1 107620 220 0.00 2019-10-01 18:20:11 2019-10-01 18:20:59 t 1 1 107625 445 0.00 2019-10-01 18:09:35 2019-10-01 18:26:18 t 1 1 107628 306 0.00 2019-10-01 18:30:34 2019-10-01 18:32:20 t 1 1 107633 520 0.00 2019-10-01 18:27:37 2019-10-01 18:39:10 t 1 1 107641 487 0.00 2019-10-01 19:01:11 2019-10-01 19:02:00 t 1 2 107642 445 0.00 2019-10-01 18:56:16 2019-10-01 19:06:21 t 1 1 107645 327 0.00 2019-10-01 18:48:20 2019-10-01 19:18:43 t 1 1 107647 412 0.00 2019-10-01 16:00:14 2019-10-01 19:21:32 t 1 1 107655 514 0.00 2019-10-01 19:34:40 2019-10-01 19:37:37 t 1 1 107658 516 0.00 2019-10-01 18:18:06 2019-10-01 19:40:56 t 1 1 107659 514 0.00 2019-10-01 19:40:09 2019-10-01 19:42:35 t 1 1 107664 520 0.00 2019-10-01 19:38:39 2019-10-01 19:48:51 t 1 1 107667 470 0.00 2019-10-01 19:40:51 2019-10-01 19:53:03 t 1 1 107669 445 0.00 2019-10-01 19:08:07 2019-10-01 19:58:55 t 1 1 107670 325 0.00 2019-10-01 19:50:52 2019-10-01 20:01:07 t 1 2 107671 327 0.00 2019-10-01 20:02:21 2019-10-01 20:02:54 t 1 1 107673 474 0.00 2019-10-01 20:04:40 2019-10-01 20:06:33 t 1 1 107677 422 0.00 2019-10-01 20:03:10 2019-10-01 20:11:39 t 1 1 107679 474 0.00 2019-10-01 20:06:32 2019-10-01 20:12:52 t 1 1 107686 485 0.00 2019-10-01 20:07:32 2019-10-01 20:19:16 t 1 1 107690 516 0.00 2019-10-01 20:14:47 2019-10-01 20:26:02 t 1 1 107692 327 0.00 2019-10-01 20:24:45 2019-10-01 20:29:45 t 1 1 107694 481 0.00 2019-10-01 18:56:45 2019-10-01 20:30:38 t 1 1 107636 327 0.00 2019-10-01 18:44:30 2019-10-01 18:46:32 t 1 1 107638 445 0.00 2019-10-01 18:38:44 2019-10-01 18:53:37 t 1 1 107643 395 0.00 2019-10-01 18:54:06 2019-10-01 19:13:30 t 1 2 107648 331 0.00 2019-10-01 19:13:55 2019-10-01 19:21:53 t 1 1 107652 470 0.00 2019-10-01 18:56:55 2019-10-01 19:29:26 t 1 1 107653 327 0.00 2019-10-01 19:28:39 2019-10-01 19:30:22 t 1 1 107654 514 0.00 2019-10-01 19:32:12 2019-10-01 19:34:40 t 1 1 107660 306 0.00 2019-10-01 19:36:17 2019-10-01 19:43:14 t 1 1 107665 520 0.00 2019-10-01 19:48:51 2019-10-01 19:49:51 t 1 1 107674 485 0.00 2019-10-01 20:03:09 2019-10-01 20:07:04 t 1 1 107676 220 0.00 2019-10-01 19:42:51 2019-10-01 20:07:56 t 1 2 107678 445 0.00 2019-10-01 19:59:06 2019-10-01 20:12:29 t 1 1 107680 445 0.00 2019-10-01 20:12:30 2019-10-01 20:13:42 t 1 1 107683 327 0.00 2019-10-01 20:12:51 2019-10-01 20:15:24 t 1 1 107684 474 0.00 2019-10-01 20:12:52 2019-10-01 20:18:37 t 1 1 107687 487 0.00 2019-10-01 19:55:06 2019-10-01 20:20:11 t 1 2 107688 451 0.00 2019-10-01 20:11:18 2019-10-01 20:24:21 t 1 1 107691 470 0.00 2019-10-01 20:15:46 2019-10-01 20:29:16 t 1 1 107695 372 0.00 2019-10-01 20:23:37 2019-10-01 20:31:12 t 1 2 107700 485 0.00 2019-10-01 20:29:54 2019-10-01 20:40:14 t 1 1 107703 451 0.00 2019-10-01 20:24:21 2019-10-01 20:45:19 t 1 1 107704 485 0.00 2019-10-01 20:40:14 2019-10-01 20:48:38 t 1 1 107706 520 0.00 2019-10-01 20:32:51 2019-10-01 20:53:53 t 1 1 107708 379 0.00 2019-10-01 17:08:10 2019-10-01 20:55:01 t 1 1 107714 327 0.00 2019-10-01 21:05:13 2019-10-01 21:06:03 t 1 1 107715 220 0.00 2019-10-01 20:53:35 2019-10-01 21:08:40 t 1 2 107716 481 0.00 2019-10-01 20:32:51 2019-10-01 21:11:41 t 1 1 107720 485 0.00 2019-10-01 21:19:19 2019-10-01 21:20:00 t 1 1 107721 485 0.00 2019-10-01 21:19:59 2019-10-01 21:22:05 t 1 1 107724 327 0.00 2019-10-01 21:27:08 2019-10-01 21:28:27 t 1 1 107726 451 0.00 2019-10-01 21:19:26 2019-10-01 21:31:40 t 1 1 107732 416 0.00 2019-10-01 18:37:33 2019-10-01 21:39:12 t 1 1 107734 520 0.00 2019-10-01 21:31:51 2019-10-01 21:39:27 t 1 1 107737 516 0.00 2019-10-01 21:40:51 2019-10-01 21:48:10 t 1 1 107738 451 0.00 2019-10-01 21:37:52 2019-10-01 21:49:18 t 1 1 107740 395 0.00 2019-10-01 21:48:13 2019-10-01 21:52:37 t 1 2 107742 451 0.00 2019-10-01 21:49:18 2019-10-01 21:53:21 t 1 1 107744 306 0.00 2019-10-01 21:39:08 2019-10-01 21:57:49 t 1 1 107745 481 0.00 2019-10-01 21:56:32 2019-10-01 21:58:43 t 1 1 107747 220 0.00 2019-10-01 20:55:44 2019-10-01 21:59:04 t 1 2 107750 481 0.00 2019-10-01 22:00:43 2019-10-01 22:02:36 t 1 1 107751 327 0.00 2019-10-01 22:03:12 2019-10-01 22:05:08 t 1 1 107752 451 0.00 2019-10-01 21:59:05 2019-10-01 22:06:01 t 1 1 107754 501 0.00 2019-10-01 22:06:43 2019-10-01 22:08:25 t 1 1 107756 501 0.00 2019-10-01 22:08:33 2019-10-01 22:10:35 t 1 1 107763 325 0.00 2019-10-01 22:12:12 2019-10-01 22:22:17 t 1 2 107764 395 0.00 2019-10-01 22:01:17 2019-10-01 22:24:05 t 1 2 107766 445 0.00 2019-10-01 20:14:08 2019-10-01 22:34:30 t 1 1 107771 445 0.00 2019-10-01 22:35:30 2019-10-01 22:52:45 t 1 1 107773 474 0.00 2019-10-01 22:59:13 2019-10-01 22:59:35 t 1 1 107774 461 0.00 2019-10-01 23:01:43 2019-10-01 23:02:06 t 1 2 107777 327 0.00 2019-10-01 22:48:31 2019-10-01 23:10:55 t 1 1 107778 327 0.00 2019-10-01 23:11:32 2019-10-01 23:11:32 t 1 1 107780 327 0.00 2019-10-01 23:11:56 2019-10-01 23:17:02 t 1 1 107781 327 0.00 2019-10-01 23:17:34 2019-10-01 23:18:07 t 1 1 107782 501 0.00 2019-10-01 23:13:17 2019-10-01 23:21:34 t 1 1 107783 501 0.00 2019-10-01 23:21:34 2019-10-01 23:26:04 t 1 1 107791 501 0.00 2019-10-01 23:36:27 2019-10-01 23:37:32 t 1 1 107792 501 0.00 2019-10-01 23:38:35 2019-10-01 23:40:30 t 1 1 107796 501 0.00 2019-10-01 23:43:34 2019-10-01 23:44:43 t 1 1 107799 472 0.00 2019-10-01 23:47:24 2019-10-01 23:54:24 t 1 1 107804 501 0.00 2019-10-01 23:45:22 2019-10-02 00:14:59 t 1 1 107805 468 0.00 2019-10-01 23:15:24 2019-10-02 00:16:47 t 1 1 107809 220 0.00 2019-10-02 00:22:20 2019-10-02 00:28:22 t 1 1 107810 220 0.00 2019-10-02 00:29:32 2019-10-02 00:29:56 t 1 1 107812 422 0.00 2019-10-02 00:26:43 2019-10-02 00:35:13 t 1 1 107813 395 0.00 2019-10-02 00:33:23 2019-10-02 00:35:58 t 1 2 107815 220 0.00 2019-10-02 00:38:22 2019-10-02 00:41:09 t 1 1 107816 220 0.00 2019-10-02 00:42:12 2019-10-02 00:42:25 t 1 1 107817 220 0.00 2019-10-02 00:43:12 2019-10-02 00:43:21 t 1 1 107820 220 0.00 2019-10-02 00:44:12 2019-10-02 00:44:25 t 1 1 107823 422 0.00 2019-10-02 00:35:13 2019-10-02 00:45:23 t 1 1 107826 220 0.00 2019-10-02 00:47:27 2019-10-02 00:47:35 t 1 1 107827 220 0.00 2019-10-02 00:48:12 2019-10-02 00:48:14 t 1 1 107829 422 0.00 2019-10-02 00:45:23 2019-10-02 00:54:57 t 1 1 107833 501 0.00 2019-10-02 00:14:59 2019-10-02 01:01:22 t 1 1 107836 220 0.00 2019-10-02 01:05:19 2019-10-02 01:05:28 t 1 1 107839 220 0.00 2019-10-02 01:07:24 2019-10-02 01:07:33 t 1 1 107842 220 0.00 2019-10-02 01:08:01 2019-10-02 01:08:21 t 1 1 107847 220 0.00 2019-10-02 01:13:04 2019-10-02 01:13:23 t 1 1 107850 220 0.00 2019-10-02 01:15:26 2019-10-02 01:15:34 t 1 1 107855 220 0.00 2019-10-02 01:16:26 2019-10-02 01:18:14 t 1 1 107858 501 0.00 2019-10-02 01:21:56 2019-10-02 01:24:04 t 1 1 107859 220 0.00 2019-10-02 01:24:31 2019-10-02 01:24:40 t 1 1 107862 501 0.00 2019-10-02 01:29:23 2019-10-02 01:31:27 t 1 1 107863 220 0.00 2019-10-02 01:31:30 2019-10-02 01:31:39 t 1 1 107864 220 0.00 2019-10-02 01:32:30 2019-10-02 01:32:38 t 1 1 107865 220 0.00 2019-10-02 01:33:30 2019-10-02 01:33:38 t 1 1 107866 220 0.00 2019-10-02 01:34:30 2019-10-02 01:34:38 t 1 1 107873 220 0.00 2019-10-02 01:38:47 2019-10-02 01:38:55 t 1 1 107874 220 0.00 2019-10-02 01:39:02 2019-10-02 01:39:30 t 1 1 107877 220 0.00 2019-10-02 01:41:05 2019-10-02 01:41:32 t 1 1 107878 220 0.00 2019-10-02 01:42:35 2019-10-02 01:42:43 t 1 1 107879 220 0.00 2019-10-02 01:42:51 2019-10-02 01:42:59 t 1 1 107883 220 0.00 2019-10-02 01:46:21 2019-10-02 01:46:53 t 1 1 107884 220 0.00 2019-10-02 01:47:18 2019-10-02 01:47:38 t 1 1 107888 220 0.00 2019-10-02 01:49:06 2019-10-02 01:49:14 t 1 1 107890 220 0.00 2019-10-02 01:49:58 2019-10-02 01:50:02 t 1 1 107891 220 0.00 2019-10-02 01:54:20 2019-10-02 01:54:46 t 1 1 107892 520 0.00 2019-10-02 01:29:00 2019-10-02 01:58:06 t 1 1 107895 395 0.00 2019-10-02 02:17:05 2019-10-02 02:18:08 t 1 2 107896 395 0.00 2019-10-02 02:18:26 2019-10-02 02:19:29 t 1 2 107898 395 0.00 2019-10-02 02:22:48 2019-10-02 02:23:54 t 1 2 107900 395 0.00 2019-10-02 02:26:54 2019-10-02 02:27:55 t 1 2 107902 501 0.00 2019-10-02 02:05:19 2019-10-02 02:42:42 t 1 1 107903 514 0.00 2019-10-02 02:52:37 2019-10-02 02:58:48 t 1 1 107905 445 0.00 2019-10-01 22:52:38 2019-10-02 03:47:21 t 1 1 107693 485 0.00 2019-10-01 20:19:16 2019-10-01 20:29:54 t 1 1 107698 331 0.00 2019-10-01 19:49:57 2019-10-01 20:33:30 t 1 1 107699 247 0.00 2019-10-01 20:33:42 2019-10-01 20:35:14 t 1 2 107701 331 0.00 2019-10-01 20:33:37 2019-10-01 20:40:55 t 1 1 107702 327 0.00 2019-10-01 20:30:07 2019-10-01 20:45:01 t 1 1 107710 327 0.00 2019-10-01 20:52:00 2019-10-01 20:55:14 t 1 1 107711 220 0.00 2019-10-01 20:46:08 2019-10-01 20:56:14 t 1 2 107713 451 0.00 2019-10-01 20:45:19 2019-10-01 21:03:52 t 1 1 107718 327 0.00 2019-10-01 21:15:58 2019-10-01 21:17:12 t 1 1 107723 331 0.00 2019-10-01 20:57:03 2019-10-01 21:24:23 t 1 1 107727 474 0.00 2019-10-01 20:18:37 2019-10-01 21:31:51 t 1 1 107728 520 0.00 2019-10-01 20:53:52 2019-10-01 21:31:52 t 1 1 107729 220 0.00 2019-10-01 18:20:58 2019-10-01 21:33:40 t 1 1 107731 451 0.00 2019-10-01 21:31:40 2019-10-01 21:37:53 t 1 1 107733 327 0.00 2019-10-01 21:37:23 2019-10-01 21:39:26 t 1 1 107735 518 0.00 2019-10-01 21:42:56 2019-10-01 21:43:05 t 1 2 107736 474 0.00 2019-10-01 21:31:51 2019-10-01 21:46:50 t 1 1 107741 327 0.00 2019-10-01 21:51:21 2019-10-01 21:53:16 t 1 1 107748 481 0.00 2019-10-01 21:58:18 2019-10-01 21:59:31 t 1 1 107759 456 0.00 2019-10-01 22:10:23 2019-10-01 22:17:05 t 1 1 107761 474 0.00 2019-10-01 21:46:50 2019-10-01 22:21:39 t 1 1 107767 508 0.00 2019-10-01 22:08:31 2019-10-01 22:36:54 t 1 2 107768 327 0.00 2019-10-01 22:31:07 2019-10-01 22:38:34 t 1 1 107769 247 0.00 2019-10-01 22:44:20 2019-10-01 22:45:30 t 1 2 107770 474 0.00 2019-10-01 22:21:39 2019-10-01 22:46:41 t 1 1 107772 412 0.00 2019-10-01 19:21:32 2019-10-01 22:53:26 t 1 1 107787 501 0.00 2019-10-01 23:29:28 2019-10-01 23:31:07 t 1 1 107788 501 0.00 2019-10-01 23:31:12 2019-10-01 23:32:23 t 1 1 107789 296 0.00 2019-10-01 23:28:30 2019-10-01 23:33:51 t 1 2 107790 501 0.00 2019-10-01 23:33:27 2019-10-01 23:35:24 t 1 1 107793 501 0.00 2019-10-01 23:40:37 2019-10-01 23:40:45 t 1 1 107795 501 0.00 2019-10-01 23:41:33 2019-10-01 23:42:40 t 1 1 107797 422 0.00 2019-10-01 22:38:48 2019-10-01 23:46:19 t 1 1 107801 395 0.00 2019-10-01 23:02:50 2019-10-02 00:00:44 t 1 2 107802 470 0.00 2019-10-01 21:19:11 2019-10-02 00:07:03 t 1 1 107808 422 0.00 2019-10-01 23:46:19 2019-10-02 00:26:43 t 1 1 107814 412 0.00 2019-10-01 22:53:26 2019-10-02 00:39:52 t 1 1 107818 220 0.00 2019-10-02 00:43:28 2019-10-02 00:43:41 t 1 1 107822 220 0.00 2019-10-02 00:45:12 2019-10-02 00:45:20 t 1 1 107828 220 0.00 2019-10-02 00:48:21 2019-10-02 00:48:22 t 1 1 107830 461 0.00 2019-10-02 00:10:50 2019-10-02 00:55:08 t 1 2 107834 220 0.00 2019-10-02 01:03:21 2019-10-02 01:03:30 t 1 1 107837 220 0.00 2019-10-02 01:05:38 2019-10-02 01:05:39 t 1 1 107838 501 0.00 2019-10-02 01:01:22 2019-10-02 01:06:42 t 1 1 107840 220 0.00 2019-10-02 01:07:42 2019-10-02 01:07:52 t 1 1 107841 220 0.00 2019-10-02 01:05:49 2019-10-02 01:08:14 t 1 1 107843 220 0.00 2019-10-02 01:08:32 2019-10-02 01:08:33 t 1 1 107846 518 0.00 2019-10-02 00:53:08 2019-10-02 01:13:13 t 1 2 107848 422 0.00 2019-10-02 00:54:57 2019-10-02 01:14:07 t 1 1 107849 220 0.00 2019-10-02 01:14:26 2019-10-02 01:14:34 t 1 1 107851 501 0.00 2019-10-02 01:09:01 2019-10-02 01:15:59 t 1 1 107853 220 0.00 2019-10-02 01:17:29 2019-10-02 01:17:43 t 1 1 107854 220 0.00 2019-10-02 01:17:52 2019-10-02 01:17:57 t 1 1 107856 501 0.00 2019-10-02 01:15:59 2019-10-02 01:21:56 t 1 1 107857 422 0.00 2019-10-02 01:14:07 2019-10-02 01:22:27 t 1 1 107860 220 0.00 2019-10-02 01:24:49 2019-10-02 01:24:50 t 1 1 107868 220 0.00 2019-10-02 01:35:31 2019-10-02 01:35:44 t 1 1 107869 220 0.00 2019-10-02 01:36:31 2019-10-02 01:36:38 t 1 1 107870 220 0.00 2019-10-02 01:37:31 2019-10-02 01:37:39 t 1 1 107880 220 0.00 2019-10-02 01:43:35 2019-10-02 01:43:36 t 1 1 107885 503 0.00 2019-10-02 01:11:31 2019-10-02 01:48:34 t 1 1 107889 220 0.00 2019-10-02 01:49:41 2019-10-02 01:49:50 t 1 1 107894 395 0.00 2019-10-02 02:15:17 2019-10-02 02:16:22 t 1 2 107897 395 0.00 2019-10-02 02:19:50 2019-10-02 02:20:58 t 1 2 107899 395 0.00 2019-10-02 02:24:23 2019-10-02 02:25:29 t 1 2 107904 514 0.00 2019-10-02 02:58:48 2019-10-02 03:05:44 t 1 1 107907 514 0.00 2019-10-02 04:34:29 2019-10-02 04:41:38 t 1 1 107908 518 0.00 2019-10-02 03:20:44 2019-10-02 04:50:49 t 1 2 107909 485 0.00 2019-10-02 04:59:45 2019-10-02 05:06:57 t 1 1 107912 516 0.00 2019-10-02 05:55:24 2019-10-02 05:59:02 t 1 1 107915 516 0.00 2019-10-02 06:02:43 2019-10-02 06:06:34 t 1 1 107916 485 0.00 2019-10-02 06:07:31 2019-10-02 06:09:11 t 1 1 107917 498 0.00 2019-10-02 05:52:36 2019-10-02 06:11:40 t 1 2 107919 520 0.00 2019-10-02 05:53:52 2019-10-02 06:12:22 t 1 1 107920 485 0.00 2019-10-02 06:12:28 2019-10-02 06:17:38 t 1 1 107921 461 0.00 2019-10-02 06:09:27 2019-10-02 06:19:32 t 1 2 107924 445 0.00 2019-10-02 03:56:38 2019-10-02 06:35:30 t 1 1 107928 472 0.00 2019-10-02 07:09:32 2019-10-02 07:11:13 t 1 1 107930 461 0.00 2019-10-02 07:15:36 2019-10-02 07:19:39 t 1 2 107931 331 0.00 2019-10-02 06:00:53 2019-10-02 07:33:38 t 1 1 107932 306 0.00 2019-10-02 07:17:57 2019-10-02 07:35:42 t 1 1 107934 445 0.00 2019-10-02 07:11:18 2019-10-02 07:39:08 t 1 1 107936 306 0.00 2019-10-02 07:38:04 2019-10-02 07:39:49 t 1 1 107937 481 0.00 2019-10-02 07:39:16 2019-10-02 07:43:37 t 1 1 107938 379 0.00 2019-10-01 20:55:00 2019-10-02 07:44:34 t 1 1 107939 379 0.00 2019-10-02 07:45:28 2019-10-02 07:47:26 t 1 1 107943 512 0.00 2019-10-02 08:04:13 2019-10-02 08:05:30 t 1 1 107945 512 0.00 2019-10-02 08:05:30 2019-10-02 08:10:27 t 1 1 107947 416 0.00 2019-10-01 21:39:12 2019-10-02 08:26:22 t 1 1 107952 327 0.00 2019-10-02 08:31:53 2019-10-02 08:34:13 t 1 1 107955 420 0.00 2019-10-02 08:39:08 2019-10-02 08:39:08 f 1 1 107958 481 0.00 2019-10-02 08:39:14 2019-10-02 08:39:30 t 1 1 107962 481 0.00 2019-10-02 08:39:30 2019-10-02 08:42:31 t 1 1 107963 445 0.00 2019-10-02 08:42:55 2019-10-02 08:45:07 t 1 1 107967 501 0.00 2019-10-02 08:47:13 2019-10-02 08:48:37 t 1 1 107968 501 0.00 2019-10-02 08:49:12 2019-10-02 08:49:21 t 1 1 107971 501 0.00 2019-10-02 08:50:12 2019-10-02 08:50:13 t 1 1 107975 501 0.00 2019-10-02 08:50:32 2019-10-02 08:54:49 t 1 1 107979 306 0.00 2019-10-02 08:58:37 2019-10-02 09:00:50 t 1 1 107983 461 0.00 2019-10-02 07:58:21 2019-10-02 09:09:33 t 1 2 107984 522 0.00 2019-10-02 09:02:36 2019-10-02 09:10:24 t 1 1 107986 306 0.00 2019-10-02 09:11:08 2019-10-02 09:13:49 t 1 1 107987 445 0.00 2019-10-02 08:51:34 2019-10-02 09:14:25 t 1 1 107992 522 0.00 2019-10-02 09:16:42 2019-10-02 09:19:31 t 1 1 107994 522 0.00 2019-10-02 09:19:56 2019-10-02 09:20:29 t 1 1 107998 306 0.00 2019-10-02 09:20:14 2019-10-02 09:24:12 t 1 1 108001 456 0.00 2019-10-02 09:15:46 2019-10-02 09:25:39 t 1 1 107696 516 0.00 2019-10-01 20:26:02 2019-10-01 20:31:45 t 1 1 107697 520 0.00 2019-10-01 20:19:53 2019-10-01 20:32:12 t 1 1 107705 516 0.00 2019-10-01 20:31:45 2019-10-01 20:50:39 t 1 1 107707 306 0.00 2019-10-01 20:51:14 2019-10-01 20:53:55 t 1 1 107709 395 0.00 2019-10-01 20:41:15 2019-10-01 20:55:08 t 1 2 107712 331 0.00 2019-10-01 20:41:08 2019-10-01 20:56:59 t 1 1 107717 296 0.00 2019-10-01 21:11:50 2019-10-01 21:13:14 t 1 2 107719 451 0.00 2019-10-01 21:03:52 2019-10-01 21:19:26 t 1 1 107722 395 0.00 2019-10-01 20:58:23 2019-10-01 21:22:08 t 1 2 107725 516 0.00 2019-10-01 21:23:39 2019-10-01 21:30:41 t 1 1 107730 361 0.00 2019-10-01 17:30:28 2019-10-01 21:36:34 t 1 2 107739 327 0.00 2019-10-01 21:49:24 2019-10-01 21:51:21 t 1 1 107743 481 0.00 2019-10-01 21:11:39 2019-10-01 21:56:32 t 1 1 107746 451 0.00 2019-10-01 21:53:21 2019-10-01 21:58:45 t 1 1 107749 481 0.00 2019-10-01 21:59:42 2019-10-01 22:00:47 t 1 1 107753 518 0.00 2019-10-01 21:43:14 2019-10-01 22:07:14 t 1 2 107755 481 0.00 2019-10-01 22:02:36 2019-10-01 22:09:34 t 1 1 107757 520 0.00 2019-10-01 22:06:41 2019-10-01 22:10:41 t 1 1 107758 501 0.00 2019-10-01 22:10:44 2019-10-01 22:13:37 t 1 1 107760 451 0.00 2019-10-01 22:06:01 2019-10-01 22:18:18 t 1 1 107762 327 0.00 2019-10-01 22:15:03 2019-10-01 22:21:42 t 1 1 107765 451 0.00 2019-10-01 22:18:18 2019-10-01 22:24:09 t 1 1 107775 501 0.00 2019-10-01 22:45:38 2019-10-01 23:04:24 t 1 1 107776 481 0.00 2019-10-01 22:09:41 2019-10-01 23:07:47 t 1 1 107779 501 0.00 2019-10-01 23:04:24 2019-10-01 23:13:17 t 1 1 107784 327 0.00 2019-10-01 23:21:39 2019-10-01 23:26:06 t 1 1 107785 501 0.00 2019-10-01 23:26:35 2019-10-01 23:27:07 t 1 1 107786 327 0.00 2019-10-01 23:27:18 2019-10-01 23:28:29 t 1 1 107794 220 0.00 2019-10-01 23:20:08 2019-10-01 23:41:27 t 1 1 107798 451 0.00 2019-10-01 23:34:04 2019-10-01 23:46:40 t 1 1 107800 512 0.00 2019-10-01 23:35:18 2019-10-01 23:56:16 t 1 1 107803 512 0.00 2019-10-01 23:56:16 2019-10-02 00:08:09 t 1 1 107806 468 0.00 2019-10-02 00:16:47 2019-10-02 00:18:36 t 1 1 107807 220 0.00 2019-10-01 23:41:27 2019-10-02 00:22:20 t 1 1 107811 395 0.00 2019-10-02 00:03:02 2019-10-02 00:30:32 t 1 2 107819 461 0.00 2019-10-01 22:19:21 2019-10-02 00:44:04 t 1 2 107821 468 0.00 2019-10-02 00:30:08 2019-10-02 00:44:54 t 1 1 107824 220 0.00 2019-10-02 00:46:12 2019-10-02 00:46:20 t 1 1 107825 220 0.00 2019-10-02 00:47:12 2019-10-02 00:47:20 t 1 1 107831 220 0.00 2019-10-02 00:55:18 2019-10-02 00:55:28 t 1 1 107832 220 0.00 2019-10-02 00:56:18 2019-10-02 00:58:14 t 1 1 107835 220 0.00 2019-10-02 01:03:40 2019-10-02 01:03:41 t 1 1 107844 501 0.00 2019-10-02 01:06:42 2019-10-02 01:09:01 t 1 1 107845 395 0.00 2019-10-02 00:53:24 2019-10-02 01:11:54 t 1 2 107852 220 0.00 2019-10-02 00:50:55 2019-10-02 01:17:33 t 1 2 107861 501 0.00 2019-10-02 01:24:04 2019-10-02 01:29:23 t 1 1 107867 461 0.00 2019-10-02 00:55:33 2019-10-02 01:35:38 t 1 2 107871 422 0.00 2019-10-02 01:22:27 2019-10-02 01:38:07 t 1 1 107872 220 0.00 2019-10-02 01:38:31 2019-10-02 01:38:39 t 1 1 107875 220 0.00 2019-10-02 01:40:33 2019-10-02 01:40:41 t 1 1 107876 220 0.00 2019-10-02 01:40:49 2019-10-02 01:40:57 t 1 1 107881 501 0.00 2019-10-02 01:31:27 2019-10-02 01:45:53 t 1 1 107882 220 0.00 2019-10-02 01:45:52 2019-10-02 01:46:06 t 1 1 107886 220 0.00 2019-10-02 01:48:35 2019-10-02 01:48:43 t 1 1 107887 220 0.00 2019-10-02 01:48:50 2019-10-02 01:48:59 t 1 1 107893 501 0.00 2019-10-02 01:45:53 2019-10-02 02:05:19 t 1 1 107901 485 0.00 2019-10-02 02:29:26 2019-10-02 02:39:10 t 1 1 107906 445 0.00 2019-10-02 03:47:27 2019-10-02 03:56:31 t 1 1 107910 520 0.00 2019-10-02 05:36:28 2019-10-02 05:53:52 t 1 1 107913 331 0.00 2019-10-02 05:58:50 2019-10-02 06:00:04 t 1 1 107922 520 0.00 2019-10-02 06:13:27 2019-10-02 06:21:35 t 1 1 107923 516 0.00 2019-10-02 06:06:34 2019-10-02 06:25:06 t 1 1 107925 520 0.00 2019-10-02 06:34:32 2019-10-02 06:42:18 t 1 1 107927 456 0.00 2019-10-02 07:01:56 2019-10-02 07:06:30 t 1 1 107929 445 0.00 2019-10-02 06:35:56 2019-10-02 07:11:18 t 1 1 107935 481 0.00 2019-10-02 07:34:47 2019-10-02 07:39:16 t 1 1 107941 379 0.00 2019-10-02 07:48:05 2019-10-02 07:49:12 t 1 1 107942 445 0.00 2019-10-02 07:38:33 2019-10-02 07:50:03 t 1 1 107944 481 0.00 2019-10-02 07:43:37 2019-10-02 08:10:07 t 1 1 107948 325 0.00 2019-10-02 07:48:26 2019-10-02 08:28:32 t 1 2 107951 306 0.00 2019-10-02 08:18:40 2019-10-02 08:32:59 t 1 1 107953 445 0.00 2019-10-02 07:50:33 2019-10-02 08:35:26 t 1 1 107954 445 0.00 2019-10-02 08:35:56 2019-10-02 08:37:39 t 1 1 107957 420 0.00 2019-10-02 08:39:19 2019-10-02 08:39:19 f 1 1 107959 445 0.00 2019-10-02 08:38:32 2019-10-02 08:40:57 t 1 1 107960 416 0.00 2019-10-02 08:32:02 2019-10-02 08:41:49 t 1 1 107961 445 0.00 2019-10-02 08:40:56 2019-10-02 08:42:01 t 1 1 107964 501 0.00 2019-10-02 08:35:05 2019-10-02 08:47:06 t 1 1 107965 445 0.00 2019-10-02 08:45:19 2019-10-02 08:47:20 t 1 1 107966 445 0.00 2019-10-02 08:47:20 2019-10-02 08:48:33 t 1 1 107969 306 0.00 2019-10-02 08:37:19 2019-10-02 08:49:23 t 1 1 107974 456 0.00 2019-10-02 08:41:48 2019-10-02 08:54:18 t 1 1 107976 416 0.00 2019-10-02 08:42:00 2019-10-02 08:54:53 t 1 1 107977 481 0.00 2019-10-02 08:42:31 2019-10-02 08:55:12 t 1 1 107978 220 0.00 2019-10-02 08:56:23 2019-10-02 08:58:40 t 1 1 107989 522 0.00 2019-10-02 09:14:44 2019-10-02 09:15:53 t 1 1 107990 522 0.00 2019-10-02 09:16:19 2019-10-02 09:16:30 t 1 1 107991 522 0.00 2019-10-02 09:19:09 2019-10-02 09:19:19 t 1 1 107993 522 0.00 2019-10-02 09:19:30 2019-10-02 09:19:39 t 1 1 107999 522 0.00 2019-10-02 09:22:38 2019-10-02 09:24:18 t 1 1 108002 416 0.00 2019-10-02 08:56:33 2019-10-02 09:25:44 t 1 1 108010 247 0.00 2019-10-02 09:33:42 2019-10-02 09:36:18 t 1 2 108011 522 0.00 2019-10-02 09:36:43 2019-10-02 09:37:51 t 1 1 108012 522 0.00 2019-10-02 09:38:07 2019-10-02 09:38:32 t 1 1 108013 445 0.00 2019-10-02 09:32:37 2019-10-02 09:39:13 t 1 1 108018 445 0.00 2019-10-02 09:39:13 2019-10-02 09:56:55 t 1 1 108020 445 0.00 2019-10-02 09:57:39 2019-10-02 10:00:07 t 1 1 108021 522 0.00 2019-10-02 10:00:18 2019-10-02 10:00:22 t 1 1 108022 331 0.00 2019-10-02 09:43:20 2019-10-02 10:00:25 t 1 1 108026 445 0.00 2019-10-02 10:00:15 2019-10-02 10:05:41 t 1 1 108028 522 0.00 2019-10-02 10:08:25 2019-10-02 10:08:34 t 1 1 108030 522 0.00 2019-10-02 10:09:52 2019-10-02 10:10:15 t 1 1 108031 516 0.00 2019-10-02 10:08:01 2019-10-02 10:11:15 t 1 1 108033 327 0.00 2019-10-02 09:28:10 2019-10-02 10:15:11 t 1 1 108042 522 0.00 2019-10-02 10:24:41 2019-10-02 10:27:09 t 1 1 108044 481 0.00 2019-10-02 09:26:42 2019-10-02 10:29:20 t 1 1 108048 445 0.00 2019-10-02 10:24:19 2019-10-02 10:33:56 t 1 1 107911 516 0.00 2019-10-02 05:41:30 2019-10-02 05:55:24 t 1 1 107914 516 0.00 2019-10-02 05:59:02 2019-10-02 06:02:43 t 1 1 107918 485 0.00 2019-10-02 06:10:13 2019-10-02 06:12:08 t 1 1 107926 461 0.00 2019-10-02 07:00:25 2019-10-02 07:03:03 t 1 2 107933 331 0.00 2019-10-02 07:34:17 2019-10-02 07:38:18 t 1 1 107940 331 0.00 2019-10-02 07:38:34 2019-10-02 07:47:55 t 1 1 107946 306 0.00 2019-10-02 08:12:48 2019-10-02 08:15:57 t 1 1 107949 520 0.00 2019-10-02 08:21:40 2019-10-02 08:28:54 t 1 1 107950 481 0.00 2019-10-02 08:10:07 2019-10-02 08:29:32 t 1 1 107956 481 0.00 2019-10-02 08:29:32 2019-10-02 08:39:15 t 1 1 107970 445 0.00 2019-10-02 08:48:36 2019-10-02 08:49:49 t 1 1 107972 327 0.00 2019-10-02 08:36:43 2019-10-02 08:52:45 t 1 1 107973 220 0.00 2019-10-02 08:47:43 2019-10-02 08:53:14 t 1 1 107980 331 0.00 2019-10-02 07:47:55 2019-10-02 09:01:05 t 1 1 107981 522 0.00 2019-10-02 08:59:29 2019-10-02 09:02:06 t 1 1 107982 331 0.00 2019-10-02 09:02:00 2019-10-02 09:06:59 t 1 1 107985 306 0.00 2019-10-02 09:03:22 2019-10-02 09:11:08 t 1 1 107988 445 0.00 2019-10-02 09:14:25 2019-10-02 09:15:27 t 1 1 107995 522 0.00 2019-10-02 09:20:34 2019-10-02 09:20:37 t 1 1 107996 522 0.00 2019-10-02 09:20:56 2019-10-02 09:21:12 t 1 1 107997 522 0.00 2019-10-02 09:21:16 2019-10-02 09:22:00 t 1 1 108000 522 0.00 2019-10-02 09:25:02 2019-10-02 09:25:12 t 1 1 108003 481 0.00 2019-10-02 08:55:51 2019-10-02 09:26:42 t 1 1 108004 522 0.00 2019-10-02 09:27:15 2019-10-02 09:27:23 t 1 1 108006 327 0.00 2019-10-02 08:52:45 2019-10-02 09:28:10 t 1 1 108007 445 0.00 2019-10-02 09:15:02 2019-10-02 09:32:28 t 1 1 108008 416 0.00 2019-10-02 09:26:07 2019-10-02 09:33:20 t 1 1 108015 522 0.00 2019-10-02 09:48:39 2019-10-02 09:48:47 t 1 1 108027 522 0.00 2019-10-02 10:08:07 2019-10-02 10:08:17 t 1 1 108037 445 0.00 2019-10-02 10:13:46 2019-10-02 10:17:47 t 1 1 108038 522 0.00 2019-10-02 10:18:25 2019-10-02 10:18:26 t 1 1 108039 522 0.00 2019-10-02 10:18:32 2019-10-02 10:18:59 t 1 1 108040 522 0.00 2019-10-02 10:22:27 2019-10-02 10:22:36 t 1 1 108051 516 0.00 2019-10-02 10:33:49 2019-10-02 10:36:53 t 1 1 108053 306 0.00 2019-10-02 10:31:05 2019-10-02 10:37:32 t 1 1 108054 522 0.00 2019-10-02 10:38:39 2019-10-02 10:38:49 t 1 1 108057 522 0.00 2019-10-02 10:39:29 2019-10-02 10:39:39 t 1 1 108060 522 0.00 2019-10-02 10:41:00 2019-10-02 10:41:45 t 1 1 108061 522 0.00 2019-10-02 10:43:24 2019-10-02 10:43:29 t 1 1 108063 522 0.00 2019-10-02 10:42:59 2019-10-02 10:44:15 t 1 1 108066 522 0.00 2019-10-02 10:45:32 2019-10-02 10:46:01 t 1 1 108071 416 0.00 2019-10-02 10:43:58 2019-10-02 10:53:26 t 1 1 108072 472 0.00 2019-10-02 10:41:50 2019-10-02 10:54:06 t 1 1 108076 522 0.00 2019-10-02 10:53:56 2019-10-02 10:56:53 t 1 1 108078 331 0.00 2019-10-02 10:01:55 2019-10-02 10:58:16 t 1 1 108082 416 0.00 2019-10-02 10:56:12 2019-10-02 11:00:19 t 1 1 108087 522 0.00 2019-10-02 11:03:59 2019-10-02 11:05:19 t 1 1 108090 472 0.00 2019-10-02 11:07:55 2019-10-02 11:09:05 t 1 1 108098 522 0.00 2019-10-02 11:14:50 2019-10-02 11:14:59 t 1 1 108101 331 0.00 2019-10-02 10:58:15 2019-10-02 11:16:50 t 1 1 108103 422 0.00 2019-10-02 11:07:02 2019-10-02 11:18:07 t 1 1 108107 422 0.00 2019-10-02 11:18:07 2019-10-02 11:21:35 t 1 1 108108 472 0.00 2019-10-02 11:23:04 2019-10-02 11:23:59 t 1 1 108111 472 0.00 2019-10-02 11:25:06 2019-10-02 11:26:06 t 1 1 108115 331 0.00 2019-10-02 11:27:15 2019-10-02 11:29:28 t 1 1 108121 416 0.00 2019-10-02 11:05:16 2019-10-02 11:32:23 t 1 1 108125 306 0.00 2019-10-02 11:31:58 2019-10-02 11:35:25 t 1 1 108127 422 0.00 2019-10-02 11:30:09 2019-10-02 11:37:58 t 1 1 108130 422 0.00 2019-10-02 11:37:58 2019-10-02 11:40:50 t 1 1 108131 522 0.00 2019-10-02 11:42:17 2019-10-02 11:42:26 t 1 1 108133 327 0.00 2019-10-02 10:47:05 2019-10-02 11:45:00 t 1 1 108135 422 0.00 2019-10-02 11:40:50 2019-10-02 11:45:47 t 1 1 108136 445 0.00 2019-10-02 11:34:16 2019-10-02 11:46:12 t 1 1 108139 512 0.00 2019-10-02 11:17:08 2019-10-02 11:49:25 t 1 1 108142 522 0.00 2019-10-02 11:48:20 2019-10-02 11:53:08 t 1 1 108144 516 0.00 2019-10-02 11:50:51 2019-10-02 11:53:52 t 1 1 108147 485 0.00 2019-10-02 11:52:36 2019-10-02 11:55:22 t 1 1 108148 422 0.00 2019-10-02 11:53:06 2019-10-02 11:59:11 t 1 1 108151 306 0.00 2019-10-02 11:57:31 2019-10-02 12:03:20 t 1 1 108152 445 0.00 2019-10-02 11:46:37 2019-10-02 12:04:14 t 1 1 108155 422 0.00 2019-10-02 11:59:11 2019-10-02 12:06:29 t 1 1 108156 462 0.00 2019-10-02 12:00:18 2019-10-02 12:07:07 t 1 1 108161 416 0.00 2019-10-02 11:54:03 2019-10-02 12:14:37 t 1 1 108163 522 0.00 2019-10-02 12:12:39 2019-10-02 12:16:18 t 1 1 108165 490 0.00 2019-10-02 12:04:42 2019-10-02 12:17:20 t 1 1 108171 514 0.00 2019-10-02 12:15:04 2019-10-02 12:21:18 t 1 1 108172 331 0.00 2019-10-02 12:05:29 2019-10-02 12:21:32 t 1 1 108178 522 0.00 2019-10-02 12:28:05 2019-10-02 12:28:09 t 1 1 108180 331 0.00 2019-10-02 12:20:47 2019-10-02 12:28:27 t 1 1 108181 327 0.00 2019-10-02 11:45:00 2019-10-02 12:28:59 t 1 1 108186 422 0.00 2019-10-02 12:22:33 2019-10-02 12:31:34 t 1 1 108196 522 0.00 2019-10-02 12:37:27 2019-10-02 12:41:10 t 1 1 108197 331 0.00 2019-10-02 12:39:53 2019-10-02 12:42:24 t 1 1 108200 327 0.00 2019-10-02 12:31:46 2019-10-02 12:49:00 t 1 1 108216 522 0.00 2019-10-02 13:02:15 2019-10-02 13:02:25 t 1 1 108217 422 0.00 2019-10-02 12:31:34 2019-10-02 13:04:29 t 1 1 108221 490 0.00 2019-10-02 13:01:23 2019-10-02 13:11:44 t 1 1 108222 522 0.00 2019-10-02 13:12:29 2019-10-02 13:12:30 t 1 1 108224 451 0.00 2019-10-02 13:05:32 2019-10-02 13:16:18 t 1 1 108227 522 0.00 2019-10-02 13:17:36 2019-10-02 13:17:39 t 1 1 108228 522 0.00 2019-10-02 13:17:56 2019-10-02 13:17:58 t 1 1 108230 327 0.00 2019-10-02 13:05:30 2019-10-02 13:21:41 t 1 1 108234 327 0.00 2019-10-02 13:21:41 2019-10-02 13:35:21 t 1 1 108235 451 0.00 2019-10-02 13:26:31 2019-10-02 13:39:55 t 1 1 108236 327 0.00 2019-10-02 13:35:30 2019-10-02 13:41:45 t 1 1 108241 451 0.00 2019-10-02 13:39:55 2019-10-02 13:49:18 t 1 1 108242 445 0.00 2019-10-02 12:58:15 2019-10-02 13:49:43 t 1 1 108246 522 0.00 2019-10-02 13:51:33 2019-10-02 13:51:36 t 1 1 108248 522 0.00 2019-10-02 13:53:03 2019-10-02 13:53:04 t 1 1 108251 327 0.00 2019-10-02 13:54:21 2019-10-02 13:54:56 t 1 1 108252 522 0.00 2019-10-02 13:55:50 2019-10-02 13:56:00 t 1 1 108256 327 0.00 2019-10-02 13:55:11 2019-10-02 13:58:40 t 1 1 108259 327 0.00 2019-10-02 14:00:26 2019-10-02 14:01:09 t 1 1 108264 327 0.00 2019-10-02 14:04:43 2019-10-02 14:05:14 t 1 1 108265 445 0.00 2019-10-02 13:50:06 2019-10-02 14:06:06 t 1 1 108268 451 0.00 2019-10-02 14:02:52 2019-10-02 14:13:13 t 1 1 108270 445 0.00 2019-10-02 14:06:06 2019-10-02 14:16:02 t 1 1 108005 412 0.00 2019-10-02 07:16:20 2019-10-02 09:27:45 t 1 1 108009 522 0.00 2019-10-02 09:32:07 2019-10-02 09:34:22 t 1 1 108014 331 0.00 2019-10-02 09:08:09 2019-10-02 09:42:34 t 1 1 108016 522 0.00 2019-10-02 09:51:48 2019-10-02 09:52:09 t 1 1 108017 501 0.00 2019-10-02 09:45:05 2019-10-02 09:56:54 t 1 1 108019 522 0.00 2019-10-02 09:57:35 2019-10-02 10:00:01 t 1 1 108023 331 0.00 2019-10-02 10:00:25 2019-10-02 10:01:25 t 1 1 108024 522 0.00 2019-10-02 10:02:48 2019-10-02 10:04:15 t 1 1 108025 306 0.00 2019-10-02 10:00:24 2019-10-02 10:05:10 t 1 1 108029 445 0.00 2019-10-02 10:05:58 2019-10-02 10:09:47 t 1 1 108032 445 0.00 2019-10-02 10:10:36 2019-10-02 10:12:40 t 1 1 108034 522 0.00 2019-10-02 10:13:15 2019-10-02 10:15:52 t 1 1 108035 522 0.00 2019-10-02 10:16:01 2019-10-02 10:16:51 t 1 1 108036 522 0.00 2019-10-02 10:17:14 2019-10-02 10:17:39 t 1 1 108041 445 0.00 2019-10-02 10:17:47 2019-10-02 10:24:19 t 1 1 108043 306 0.00 2019-10-02 10:22:54 2019-10-02 10:28:12 t 1 1 108045 481 0.00 2019-10-02 10:29:20 2019-10-02 10:29:43 t 1 1 108046 522 0.00 2019-10-02 10:28:15 2019-10-02 10:31:16 t 1 1 108047 481 0.00 2019-10-02 10:29:43 2019-10-02 10:32:11 t 1 1 108052 522 0.00 2019-10-02 10:35:16 2019-10-02 10:36:53 t 1 1 108056 481 0.00 2019-10-02 10:34:36 2019-10-02 10:39:13 t 1 1 108069 445 0.00 2019-10-02 10:39:07 2019-10-02 10:49:12 t 1 1 108070 522 0.00 2019-10-02 10:51:05 2019-10-02 10:51:30 t 1 1 108075 416 0.00 2019-10-02 10:55:16 2019-10-02 10:56:06 t 1 1 108079 472 0.00 2019-10-02 10:57:31 2019-10-02 10:58:33 t 1 1 108081 512 0.00 2019-10-02 10:56:00 2019-10-02 11:00:18 t 1 1 108083 472 0.00 2019-10-02 10:59:50 2019-10-02 11:00:53 t 1 1 108084 472 0.00 2019-10-02 11:01:01 2019-10-02 11:03:15 t 1 1 108085 306 0.00 2019-10-02 11:00:00 2019-10-02 11:04:07 t 1 1 108089 422 0.00 2019-10-02 01:38:07 2019-10-02 11:07:02 t 1 1 108093 522 0.00 2019-10-02 11:09:09 2019-10-02 11:12:10 t 1 1 108094 445 0.00 2019-10-02 11:11:48 2019-10-02 11:13:07 t 1 1 108096 472 0.00 2019-10-02 11:13:34 2019-10-02 11:14:33 t 1 1 108099 490 0.00 2019-10-02 10:59:36 2019-10-02 11:15:04 t 1 1 108100 522 0.00 2019-10-02 11:14:24 2019-10-02 11:16:15 t 1 1 108106 522 0.00 2019-10-02 11:20:31 2019-10-02 11:20:40 t 1 1 108109 422 0.00 2019-10-02 11:21:35 2019-10-02 11:24:56 t 1 1 108110 331 0.00 2019-10-02 11:20:38 2019-10-02 11:25:27 t 1 1 108112 379 0.00 2019-10-02 10:35:40 2019-10-02 11:26:09 t 1 1 108113 331 0.00 2019-10-02 11:25:27 2019-10-02 11:26:59 t 1 1 108114 481 0.00 2019-10-02 10:39:49 2019-10-02 11:27:16 t 1 1 108118 522 0.00 2019-10-02 11:23:10 2019-10-02 11:30:44 t 1 1 108120 522 0.00 2019-10-02 11:30:44 2019-10-02 11:31:57 t 1 1 108122 445 0.00 2019-10-02 11:13:44 2019-10-02 11:32:48 t 1 1 108123 331 0.00 2019-10-02 11:29:33 2019-10-02 11:33:06 t 1 1 108128 481 0.00 2019-10-02 11:27:14 2019-10-02 11:38:59 t 1 1 108129 481 0.00 2019-10-02 11:38:59 2019-10-02 11:40:06 t 1 1 108132 290 0.00 2019-10-02 11:22:43 2019-10-02 11:42:48 t 1 2 108140 416 0.00 2019-10-02 11:35:10 2019-10-02 11:50:49 t 1 1 108141 422 0.00 2019-10-02 11:45:47 2019-10-02 11:53:06 t 1 1 108145 416 0.00 2019-10-02 11:53:38 2019-10-02 11:53:55 t 1 1 108149 462 0.00 2019-10-02 11:34:22 2019-10-02 12:00:18 t 1 1 108150 470 0.00 2019-10-02 10:51:26 2019-10-02 12:02:52 t 1 1 108154 331 0.00 2019-10-02 11:33:05 2019-10-02 12:05:29 t 1 1 108159 522 0.00 2019-10-02 12:01:28 2019-10-02 12:12:39 t 1 1 108164 292 0.00 2019-10-02 12:15:44 2019-10-02 12:16:47 t 1 2 108167 481 0.00 2019-10-02 11:47:21 2019-10-02 12:18:10 t 1 1 108169 470 0.00 2019-10-02 12:14:41 2019-10-02 12:21:03 t 1 1 108173 462 0.00 2019-10-02 12:18:14 2019-10-02 12:21:42 t 1 1 108174 422 0.00 2019-10-02 12:06:29 2019-10-02 12:22:33 t 1 1 108179 470 0.00 2019-10-02 12:27:06 2019-10-02 12:28:26 t 1 1 108183 247 0.00 2019-10-02 12:24:44 2019-10-02 12:29:16 t 1 2 108187 306 0.00 2019-10-02 12:09:05 2019-10-02 12:32:02 t 1 1 108190 522 0.00 2019-10-02 12:28:41 2019-10-02 12:35:50 t 1 1 108191 522 0.00 2019-10-02 12:36:50 2019-10-02 12:36:52 t 1 1 108193 514 0.00 2019-10-02 12:38:08 2019-10-02 12:38:37 t 1 1 108195 462 0.00 2019-10-02 12:25:45 2019-10-02 12:39:49 t 1 1 108199 412 0.00 2019-10-02 09:30:22 2019-10-02 12:49:00 t 1 1 108201 331 0.00 2019-10-02 12:42:24 2019-10-02 12:50:02 t 1 1 108203 445 0.00 2019-10-02 12:30:54 2019-10-02 12:51:16 t 1 1 108204 331 0.00 2019-10-02 12:50:18 2019-10-02 12:52:25 t 1 1 108206 470 0.00 2019-10-02 12:43:25 2019-10-02 12:54:40 t 1 1 108209 522 0.00 2019-10-02 12:55:09 2019-10-02 12:55:30 t 1 1 108211 516 0.00 2019-10-02 12:55:01 2019-10-02 12:56:44 t 1 1 108212 445 0.00 2019-10-02 12:54:54 2019-10-02 12:58:09 t 1 1 108213 522 0.00 2019-10-02 13:00:25 2019-10-02 13:00:29 t 1 1 108214 490 0.00 2019-10-02 12:54:18 2019-10-02 13:01:23 t 1 1 108218 327 0.00 2019-10-02 12:49:00 2019-10-02 13:05:30 t 1 1 108223 522 0.00 2019-10-02 13:14:26 2019-10-02 13:14:37 t 1 1 108225 522 0.00 2019-10-02 13:16:13 2019-10-02 13:16:42 t 1 1 108229 461 0.00 2019-10-02 12:50:21 2019-10-02 13:18:40 t 1 2 108232 451 0.00 2019-10-02 13:16:53 2019-10-02 13:26:31 t 1 1 108237 306 0.00 2019-10-02 13:29:07 2019-10-02 13:41:50 t 1 1 108240 327 0.00 2019-10-02 13:42:16 2019-10-02 13:46:16 t 1 1 108243 331 0.00 2019-10-02 13:33:38 2019-10-02 13:50:41 t 1 1 108244 522 0.00 2019-10-02 13:50:56 2019-10-02 13:50:57 t 1 1 108245 522 0.00 2019-10-02 13:51:05 2019-10-02 13:51:22 t 1 1 108247 522 0.00 2019-10-02 13:52:56 2019-10-02 13:52:58 t 1 1 108249 327 0.00 2019-10-02 13:48:07 2019-10-02 13:53:13 t 1 1 108255 451 0.00 2019-10-02 13:53:37 2019-10-02 13:58:32 t 1 1 108267 522 0.00 2019-10-02 13:58:53 2019-10-02 14:09:01 t 1 1 108271 470 0.00 2019-10-02 14:08:18 2019-10-02 14:22:33 t 1 1 108273 451 0.00 2019-10-02 14:13:13 2019-10-02 14:23:14 t 1 1 108275 327 0.00 2019-10-02 14:25:43 2019-10-02 14:27:15 t 1 1 108276 327 0.00 2019-10-02 14:27:26 2019-10-02 14:28:02 t 1 1 108280 416 0.00 2019-10-02 12:15:12 2019-10-02 14:31:30 t 1 1 108283 522 0.00 2019-10-02 14:30:27 2019-10-02 14:33:26 t 1 1 108288 451 0.00 2019-10-02 14:23:14 2019-10-02 14:36:40 t 1 1 108293 451 0.00 2019-10-02 14:36:40 2019-10-02 14:42:48 t 1 1 108298 451 0.00 2019-10-02 14:42:48 2019-10-02 14:46:17 t 1 1 108300 247 0.00 2019-10-02 14:45:48 2019-10-02 14:46:37 t 1 2 108303 512 0.00 2019-10-02 13:49:31 2019-10-02 14:48:58 t 1 1 108309 296 0.00 2019-10-02 14:52:04 2019-10-02 14:55:25 t 1 2 108312 522 0.00 2019-10-02 14:56:38 2019-10-02 14:56:54 t 1 1 108314 522 0.00 2019-10-02 14:57:18 2019-10-02 14:58:42 t 1 1 108315 449 0.00 2019-10-02 14:49:42 2019-10-02 14:59:31 t 1 1 108318 449 0.00 2019-10-02 14:59:31 2019-10-02 15:01:12 t 1 1 108049 481 0.00 2019-10-02 10:32:11 2019-10-02 10:34:37 t 1 1 108050 512 0.00 2019-10-02 10:29:58 2019-10-02 10:35:12 t 1 1 108055 445 0.00 2019-10-02 10:33:30 2019-10-02 10:39:07 t 1 1 108058 522 0.00 2019-10-02 10:40:20 2019-10-02 10:40:40 t 1 1 108059 416 0.00 2019-10-02 09:34:00 2019-10-02 10:41:37 t 1 1 108062 522 0.00 2019-10-02 10:43:39 2019-10-02 10:43:45 t 1 1 108064 470 0.00 2019-10-02 08:28:14 2019-10-02 10:44:27 t 1 1 108065 522 0.00 2019-10-02 10:43:55 2019-10-02 10:45:10 t 1 1 108067 327 0.00 2019-10-02 10:15:11 2019-10-02 10:47:05 t 1 1 108068 306 0.00 2019-10-02 10:45:37 2019-10-02 10:48:06 t 1 1 108073 472 0.00 2019-10-02 10:54:12 2019-10-02 10:55:17 t 1 1 108074 512 0.00 2019-10-02 10:52:25 2019-10-02 10:56:00 t 1 1 108077 472 0.00 2019-10-02 10:55:47 2019-10-02 10:57:23 t 1 1 108080 472 0.00 2019-10-02 10:58:42 2019-10-02 10:59:43 t 1 1 108086 416 0.00 2019-10-02 11:02:56 2019-10-02 11:05:17 t 1 1 108088 501 0.00 2019-10-02 10:44:21 2019-10-02 11:06:36 t 1 1 108091 472 0.00 2019-10-02 11:09:15 2019-10-02 11:10:16 t 1 1 108092 445 0.00 2019-10-02 10:52:10 2019-10-02 11:11:48 t 1 1 108095 472 0.00 2019-10-02 11:12:25 2019-10-02 11:13:24 t 1 1 108097 512 0.00 2019-10-02 11:00:18 2019-10-02 11:14:42 t 1 1 108102 490 0.00 2019-10-02 11:15:04 2019-10-02 11:17:07 t 1 1 108104 472 0.00 2019-10-02 11:17:14 2019-10-02 11:18:15 t 1 1 108105 331 0.00 2019-10-02 11:16:50 2019-10-02 11:20:36 t 1 1 108116 306 0.00 2019-10-02 11:19:31 2019-10-02 11:29:45 t 1 1 108117 422 0.00 2019-10-02 11:24:56 2019-10-02 11:30:09 t 1 1 108119 472 0.00 2019-10-02 11:27:53 2019-10-02 11:31:49 t 1 1 108124 416 0.00 2019-10-02 11:31:28 2019-10-02 11:34:56 t 1 1 108126 325 0.00 2019-10-02 11:21:36 2019-10-02 11:36:41 t 1 2 108134 516 0.00 2019-10-02 11:40:15 2019-10-02 11:45:31 t 1 1 108137 501 0.00 2019-10-02 11:36:44 2019-10-02 11:46:41 t 1 1 108138 306 0.00 2019-10-02 11:41:53 2019-10-02 11:48:59 t 1 1 108143 512 0.00 2019-10-02 11:50:29 2019-10-02 11:53:50 t 1 1 108146 522 0.00 2019-10-02 11:54:08 2019-10-02 11:54:16 t 1 1 108153 490 0.00 2019-10-02 11:28:17 2019-10-02 12:04:42 t 1 1 108157 470 0.00 2019-10-02 12:02:22 2019-10-02 12:11:28 t 1 1 108158 462 0.00 2019-10-02 12:07:07 2019-10-02 12:12:37 t 1 1 108160 470 0.00 2019-10-02 12:11:49 2019-10-02 12:14:22 t 1 1 108162 514 0.00 2019-10-02 12:04:09 2019-10-02 12:15:04 t 1 1 108166 522 0.00 2019-10-02 12:17:22 2019-10-02 12:17:30 t 1 1 108168 462 0.00 2019-10-02 12:12:37 2019-10-02 12:18:14 t 1 1 108170 522 0.00 2019-10-02 12:19:29 2019-10-02 12:21:05 t 1 1 108175 462 0.00 2019-10-02 12:21:42 2019-10-02 12:25:45 t 1 1 108176 470 0.00 2019-10-02 12:21:21 2019-10-02 12:26:54 t 1 1 108177 445 0.00 2019-10-02 12:04:19 2019-10-02 12:27:48 t 1 1 108182 514 0.00 2019-10-02 12:21:18 2019-10-02 12:29:12 t 1 1 108184 445 0.00 2019-10-02 12:27:56 2019-10-02 12:30:45 t 1 1 108185 327 0.00 2019-10-02 12:28:59 2019-10-02 12:31:05 t 1 1 108188 514 0.00 2019-10-02 12:29:12 2019-10-02 12:32:11 t 1 1 108189 514 0.00 2019-10-02 12:32:11 2019-10-02 12:35:06 t 1 1 108192 514 0.00 2019-10-02 12:35:06 2019-10-02 12:38:08 t 1 1 108194 331 0.00 2019-10-02 12:28:27 2019-10-02 12:38:49 t 1 1 108198 470 0.00 2019-10-02 12:29:40 2019-10-02 12:43:25 t 1 1 108202 522 0.00 2019-10-02 12:50:24 2019-10-02 12:50:38 t 1 1 108205 490 0.00 2019-10-02 12:47:36 2019-10-02 12:54:18 t 1 1 108207 445 0.00 2019-10-02 12:52:27 2019-10-02 12:54:53 t 1 1 108208 522 0.00 2019-10-02 12:55:02 2019-10-02 12:55:05 t 1 1 108210 306 0.00 2019-10-02 12:46:55 2019-10-02 12:55:44 t 1 1 108215 451 0.00 2019-10-02 13:00:44 2019-10-02 13:02:19 t 1 1 108219 512 0.00 2019-10-02 11:54:17 2019-10-02 13:06:49 t 1 1 108220 522 0.00 2019-10-02 13:07:25 2019-10-02 13:07:28 t 1 1 108226 516 0.00 2019-10-02 13:08:42 2019-10-02 13:16:51 t 1 1 108231 522 0.00 2019-10-02 13:22:45 2019-10-02 13:25:33 t 1 1 108233 331 0.00 2019-10-02 12:52:25 2019-10-02 13:33:51 t 1 1 108238 306 0.00 2019-10-02 13:41:50 2019-10-02 13:42:55 t 1 1 108239 522 0.00 2019-10-02 13:45:53 2019-10-02 13:45:54 t 1 1 108250 451 0.00 2019-10-02 13:49:18 2019-10-02 13:53:37 t 1 1 108253 522 0.00 2019-10-02 13:56:08 2019-10-02 13:56:20 t 1 1 108254 522 0.00 2019-10-02 13:56:27 2019-10-02 13:57:35 t 1 1 108257 522 0.00 2019-10-02 13:58:46 2019-10-02 13:58:47 t 1 1 108258 327 0.00 2019-10-02 13:59:09 2019-10-02 14:00:09 t 1 1 108260 327 0.00 2019-10-02 14:01:21 2019-10-02 14:01:56 t 1 1 108261 451 0.00 2019-10-02 13:58:32 2019-10-02 14:02:51 t 1 1 108262 481 0.00 2019-10-02 13:39:56 2019-10-02 14:03:31 t 1 1 108263 327 0.00 2019-10-02 14:02:22 2019-10-02 14:04:15 t 1 1 108266 306 0.00 2019-10-02 14:00:56 2019-10-02 14:06:32 t 1 1 108269 436 0.00 2019-10-02 14:14:24 2019-10-02 14:16:01 t 1 1 108277 522 0.00 2019-10-02 14:09:01 2019-10-02 14:29:50 t 1 1 108284 470 0.00 2019-10-02 14:22:21 2019-10-02 14:33:47 t 1 1 108285 220 0.00 2019-10-02 14:29:07 2019-10-02 14:34:31 t 1 2 108290 522 0.00 2019-10-02 14:38:12 2019-10-02 14:38:14 t 1 1 108294 522 0.00 2019-10-02 14:42:58 2019-10-02 14:43:10 t 1 1 108296 522 0.00 2019-10-02 14:43:55 2019-10-02 14:45:39 t 1 1 108299 522 0.00 2019-10-02 14:46:11 2019-10-02 14:46:19 t 1 1 108302 461 0.00 2019-10-02 13:28:59 2019-10-02 14:48:05 t 1 2 108306 512 0.00 2019-10-02 14:48:58 2019-10-02 14:52:24 t 1 1 108308 522 0.00 2019-10-02 14:51:21 2019-10-02 14:53:37 t 1 1 108310 522 0.00 2019-10-02 14:54:42 2019-10-02 14:55:29 t 1 1 108311 522 0.00 2019-10-02 14:56:20 2019-10-02 14:56:32 t 1 1 108313 422 0.00 2019-10-02 14:50:46 2019-10-02 14:58:38 t 1 1 108319 292 0.00 2019-10-02 15:00:20 2019-10-02 15:01:23 t 1 2 108328 522 0.00 2019-10-02 15:08:29 2019-10-02 15:09:02 t 1 1 108331 327 0.00 2019-10-02 15:11:28 2019-10-02 15:11:36 t 1 1 108333 522 0.00 2019-10-02 15:11:23 2019-10-02 15:13:06 t 1 1 108334 327 0.00 2019-10-02 15:13:20 2019-10-02 15:13:52 t 1 1 108335 522 0.00 2019-10-02 15:13:13 2019-10-02 15:14:07 t 1 1 108340 327 0.00 2019-10-02 15:18:02 2019-10-02 15:19:06 t 1 1 108341 522 0.00 2019-10-02 15:19:09 2019-10-02 15:19:48 t 1 1 108342 327 0.00 2019-10-02 15:19:19 2019-10-02 15:20:48 t 1 1 108349 522 0.00 2019-10-02 15:35:42 2019-10-02 15:35:48 t 1 1 108351 445 0.00 2019-10-02 14:16:02 2019-10-02 15:38:43 t 1 1 108352 306 0.00 2019-10-02 15:39:52 2019-10-02 15:45:13 t 1 1 108354 306 0.00 2019-10-02 15:49:08 2019-10-02 15:51:34 t 1 1 108358 306 0.00 2019-10-02 15:51:33 2019-10-02 16:01:09 t 1 1 108359 220 0.00 2019-10-02 16:00:39 2019-10-02 16:01:28 t 1 1 108361 220 0.00 2019-10-02 16:02:02 2019-10-02 16:02:37 t 1 1 108362 220 0.00 2019-10-02 16:02:37 2019-10-02 16:03:11 t 1 1 108366 412 0.00 2019-10-02 12:49:00 2019-10-02 16:07:11 t 1 1 108272 361 0.00 2019-10-02 14:12:18 2019-10-02 14:23:10 t 1 2 108274 327 0.00 2019-10-02 14:05:30 2019-10-02 14:25:23 t 1 1 108278 327 0.00 2019-10-02 14:28:45 2019-10-02 14:30:33 t 1 1 108279 327 0.00 2019-10-02 14:30:51 2019-10-02 14:31:18 t 1 1 108281 379 0.00 2019-10-02 11:26:09 2019-10-02 14:31:52 t 1 1 108282 327 0.00 2019-10-02 14:31:47 2019-10-02 14:32:31 t 1 1 108286 416 0.00 2019-10-02 14:32:56 2019-10-02 14:35:04 t 1 1 108287 331 0.00 2019-10-02 13:50:59 2019-10-02 14:36:39 t 1 1 108289 522 0.00 2019-10-02 14:35:37 2019-10-02 14:38:01 t 1 1 108291 220 0.00 2019-10-02 14:14:45 2019-10-02 14:41:43 t 1 1 108292 522 0.00 2019-10-02 14:41:58 2019-10-02 14:41:58 t 1 1 108295 516 0.00 2019-10-02 14:41:18 2019-10-02 14:43:36 t 1 1 108297 247 0.00 2019-10-02 14:41:02 2019-10-02 14:45:42 t 1 2 108301 522 0.00 2019-10-02 14:46:32 2019-10-02 14:47:52 t 1 1 108304 422 0.00 2019-10-02 13:04:29 2019-10-02 14:50:46 t 1 1 108305 470 0.00 2019-10-02 14:33:56 2019-10-02 14:50:59 t 1 1 108307 331 0.00 2019-10-02 14:36:46 2019-10-02 14:52:55 t 1 1 108316 522 0.00 2019-10-02 14:58:50 2019-10-02 15:00:24 t 1 1 108317 522 0.00 2019-10-02 15:00:37 2019-10-02 15:01:07 t 1 1 108322 292 0.00 2019-10-02 15:03:13 2019-10-02 15:04:15 t 1 2 108326 522 0.00 2019-10-02 15:04:24 2019-10-02 15:05:14 t 1 1 108327 522 0.00 2019-10-02 15:06:12 2019-10-02 15:06:17 t 1 1 108332 327 0.00 2019-10-02 15:12:00 2019-10-02 15:12:30 t 1 1 108336 522 0.00 2019-10-02 15:14:12 2019-10-02 15:15:44 t 1 1 108337 522 0.00 2019-10-02 15:15:54 2019-10-02 15:16:19 t 1 1 108345 456 0.00 2019-10-02 15:12:19 2019-10-02 15:30:43 t 1 1 108346 522 0.00 2019-10-02 15:28:32 2019-10-02 15:34:51 t 1 1 108348 522 0.00 2019-10-02 15:34:56 2019-10-02 15:35:37 t 1 1 108353 456 0.00 2019-10-02 15:30:43 2019-10-02 15:48:00 t 1 1 108356 379 0.00 2019-10-02 14:31:52 2019-10-02 15:57:51 t 1 1 108357 220 0.00 2019-10-02 15:34:32 2019-10-02 16:00:39 t 1 1 108360 220 0.00 2019-10-02 16:01:28 2019-10-02 16:02:02 t 1 1 108364 220 0.00 2019-10-02 16:04:41 2019-10-02 16:05:26 t 1 1 108368 220 0.00 2019-10-02 16:06:29 2019-10-02 16:08:48 t 1 1 108373 522 0.00 2019-10-02 16:10:48 2019-10-02 16:16:47 t 1 1 108376 306 0.00 2019-10-02 16:19:29 2019-10-02 16:21:54 t 1 1 108386 451 0.00 2019-10-02 16:52:27 2019-10-02 17:01:54 t 1 1 108387 481 0.00 2019-10-02 16:43:27 2019-10-02 17:04:48 t 1 1 108390 520 0.00 2019-10-02 16:42:04 2019-10-02 17:10:17 t 1 1 108393 445 0.00 2019-10-02 16:51:54 2019-10-02 17:14:05 t 1 1 108395 462 0.00 2019-10-02 16:36:13 2019-10-02 17:20:14 t 1 1 108398 470 0.00 2019-10-02 17:05:19 2019-10-02 17:24:39 t 1 1 108405 522 0.00 2019-10-02 17:44:25 2019-10-02 17:46:03 t 1 1 108411 331 0.00 2019-10-02 17:49:18 2019-10-02 17:51:17 t 1 1 108415 462 0.00 2019-10-02 17:50:59 2019-10-02 17:54:54 t 1 1 108422 416 0.00 2019-10-02 17:33:31 2019-10-02 17:59:59 t 1 1 108424 422 0.00 2019-10-02 17:55:03 2019-10-02 18:00:54 t 1 1 108425 416 0.00 2019-10-02 18:00:13 2019-10-02 18:01:15 t 1 1 108426 462 0.00 2019-10-02 17:59:48 2019-10-02 18:06:04 t 1 1 108433 522 0.00 2019-10-02 18:14:17 2019-10-02 18:16:17 t 1 1 108435 485 0.00 2019-10-02 18:17:30 2019-10-02 18:18:25 t 1 1 108437 470 0.00 2019-10-02 18:13:15 2019-10-02 18:20:55 t 1 1 108439 470 0.00 2019-10-02 18:21:29 2019-10-02 18:23:56 t 1 1 108441 325 0.00 2019-10-02 18:30:33 2019-10-02 18:30:33 f 1 2 108443 470 0.00 2019-10-02 18:24:04 2019-10-02 18:30:52 t 1 1 108446 445 0.00 2019-10-02 17:59:32 2019-10-02 18:31:37 t 1 1 108450 476 0.00 2019-10-02 18:32:44 2019-10-02 18:32:44 f 1 2 108452 522 0.00 2019-10-02 18:24:29 2019-10-02 18:34:36 t 1 1 108458 485 0.00 2019-10-02 18:36:21 2019-10-02 18:38:55 t 1 1 108463 220 0.00 2019-10-02 18:10:32 2019-10-02 18:43:03 t 1 1 108466 522 0.00 2019-10-02 18:45:04 2019-10-02 18:45:06 t 1 1 108474 331 0.00 2019-10-02 18:38:32 2019-10-02 18:54:07 t 1 1 108476 522 0.00 2019-10-02 18:51:31 2019-10-02 18:54:17 t 1 1 108478 522 0.00 2019-10-02 18:56:10 2019-10-02 18:56:10 f 1 1 108481 522 0.00 2019-10-02 18:55:33 2019-10-02 18:57:17 t 1 1 108483 445 0.00 2019-10-02 18:57:16 2019-10-02 18:59:05 t 1 1 108491 327 0.00 2019-10-02 18:55:46 2019-10-02 19:12:08 t 1 1 108498 327 0.00 2019-10-02 19:12:09 2019-10-02 19:19:31 t 1 1 108500 522 0.00 2019-10-02 19:20:23 2019-10-02 19:20:56 t 1 1 108502 522 0.00 2019-10-02 19:21:53 2019-10-02 19:22:05 t 1 1 108503 498 0.00 2019-10-02 16:48:15 2019-10-02 19:23:33 t 1 2 108509 416 0.00 2019-10-02 19:03:06 2019-10-02 19:28:45 t 1 1 108510 306 0.00 2019-10-02 19:26:18 2019-10-02 19:29:34 t 1 1 108512 327 0.00 2019-10-02 19:29:27 2019-10-02 19:31:03 t 1 1 108522 468 0.00 2019-10-02 19:42:08 2019-10-02 19:45:55 t 1 1 108532 468 0.00 2019-10-02 19:53:50 2019-10-02 19:55:37 t 1 1 108538 327 0.00 2019-10-02 20:04:35 2019-10-02 20:05:23 t 1 1 108540 445 0.00 2019-10-02 19:32:49 2019-10-02 20:06:48 t 1 1 108541 462 0.00 2019-10-02 19:51:43 2019-10-02 20:11:34 t 1 1 108548 516 0.00 2019-10-02 20:15:11 2019-10-02 20:18:30 t 1 1 108549 522 0.00 2019-10-02 20:18:47 2019-10-02 20:18:59 t 1 1 108550 451 0.00 2019-10-02 19:35:44 2019-10-02 20:20:23 t 1 1 108557 451 0.00 2019-10-02 20:31:04 2019-10-02 20:38:14 t 1 1 108558 327 0.00 2019-10-02 20:36:38 2019-10-02 20:39:24 t 1 1 108560 461 0.00 2019-10-02 20:44:17 2019-10-02 20:47:17 t 1 2 108563 331 0.00 2019-10-02 19:59:19 2019-10-02 20:53:11 t 1 1 108569 375 0.00 2019-10-02 20:52:16 2019-10-02 21:04:19 t 1 1 108570 327 0.00 2019-10-02 20:49:25 2019-10-02 21:06:44 t 1 1 108572 485 0.00 2019-10-02 21:04:42 2019-10-02 21:09:56 t 1 1 108573 485 0.00 2019-10-02 21:09:56 2019-10-02 21:10:50 t 1 1 108576 327 0.00 2019-10-02 21:06:44 2019-10-02 21:12:17 t 1 1 108581 375 0.00 2019-10-02 21:04:19 2019-10-02 21:19:36 t 1 1 108583 522 0.00 2019-10-02 21:20:27 2019-10-02 21:20:29 t 1 1 108584 522 0.00 2019-10-02 21:20:59 2019-10-02 21:21:00 t 1 1 108592 470 0.00 2019-10-02 21:23:09 2019-10-02 21:26:51 t 1 1 108593 470 0.00 2019-10-02 21:26:51 2019-10-02 21:27:37 t 1 1 108594 375 0.00 2019-10-02 21:19:36 2019-10-02 21:28:31 t 1 1 108597 375 0.00 2019-10-02 21:28:31 2019-10-02 21:30:06 t 1 1 108607 522 0.00 2019-10-02 21:38:14 2019-10-02 21:38:22 t 1 1 108611 375 0.00 2019-10-02 21:31:01 2019-10-02 21:41:53 t 1 1 108612 522 0.00 2019-10-02 21:42:37 2019-10-02 21:42:40 t 1 1 108613 375 0.00 2019-10-02 21:41:52 2019-10-02 21:43:24 t 1 1 108616 220 0.00 2019-10-02 19:01:00 2019-10-02 21:45:18 t 1 2 108619 451 0.00 2019-10-02 21:33:01 2019-10-02 21:51:39 t 1 1 108622 474 0.00 2019-10-02 21:02:06 2019-10-02 21:54:36 t 1 1 108623 522 0.00 2019-10-02 21:57:03 2019-10-02 21:57:10 t 1 1 108625 327 0.00 2019-10-02 21:55:58 2019-10-02 21:58:44 t 1 1 108320 422 0.00 2019-10-02 14:58:38 2019-10-02 15:01:53 t 1 1 108321 522 0.00 2019-10-02 15:01:26 2019-10-02 15:02:06 t 1 1 108323 522 0.00 2019-10-02 15:03:37 2019-10-02 15:04:19 t 1 1 108324 292 0.00 2019-10-02 15:04:46 2019-10-02 15:04:52 t 1 2 108325 422 0.00 2019-10-02 15:01:53 2019-10-02 15:05:11 t 1 1 108329 522 0.00 2019-10-02 15:09:08 2019-10-02 15:09:38 t 1 1 108330 327 0.00 2019-10-02 14:32:49 2019-10-02 15:10:37 t 1 1 108338 327 0.00 2019-10-02 15:14:01 2019-10-02 15:16:52 t 1 1 108339 522 0.00 2019-10-02 15:18:21 2019-10-02 15:19:03 t 1 1 108343 522 0.00 2019-10-02 15:23:27 2019-10-02 15:23:30 t 1 1 108344 522 0.00 2019-10-02 15:23:56 2019-10-02 15:24:33 t 1 1 108347 422 0.00 2019-10-02 15:05:11 2019-10-02 15:34:52 t 1 1 108350 461 0.00 2019-10-02 14:51:46 2019-10-02 15:38:12 t 1 2 108355 522 0.00 2019-10-02 15:35:53 2019-10-02 15:52:05 t 1 1 108363 220 0.00 2019-10-02 16:03:11 2019-10-02 16:04:21 t 1 1 108365 220 0.00 2019-10-02 16:05:25 2019-10-02 16:05:51 t 1 1 108369 306 0.00 2019-10-02 16:01:09 2019-10-02 16:10:16 t 1 1 108377 306 0.00 2019-10-02 16:21:54 2019-10-02 16:27:35 t 1 1 108378 462 0.00 2019-10-02 16:19:05 2019-10-02 16:29:48 t 1 1 108379 422 0.00 2019-10-02 15:34:52 2019-10-02 16:30:41 t 1 1 108380 481 0.00 2019-10-02 14:03:31 2019-10-02 16:38:38 t 1 1 108381 331 0.00 2019-10-02 16:40:49 2019-10-02 16:49:58 t 1 1 108382 445 0.00 2019-10-02 16:08:03 2019-10-02 16:51:55 t 1 1 108383 379 0.00 2019-10-02 16:54:46 2019-10-02 16:56:06 t 1 1 108384 412 0.00 2019-10-02 16:25:55 2019-10-02 17:00:04 t 1 1 108385 416 0.00 2019-10-02 14:35:04 2019-10-02 17:01:29 t 1 1 108388 481 0.00 2019-10-02 17:05:36 2019-10-02 17:06:23 t 1 1 108392 451 0.00 2019-10-02 17:01:54 2019-10-02 17:12:50 t 1 1 108394 451 0.00 2019-10-02 17:12:50 2019-10-02 17:16:49 t 1 1 108397 422 0.00 2019-10-02 16:30:41 2019-10-02 17:21:22 t 1 1 108400 470 0.00 2019-10-02 17:27:13 2019-10-02 17:34:23 t 1 1 108401 331 0.00 2019-10-02 17:19:23 2019-10-02 17:37:14 t 1 1 108404 470 0.00 2019-10-02 17:34:35 2019-10-02 17:45:26 t 1 1 108406 331 0.00 2019-10-02 17:37:31 2019-10-02 17:46:24 t 1 1 108407 331 0.00 2019-10-02 17:46:38 2019-10-02 17:48:40 t 1 1 108410 462 0.00 2019-10-02 17:20:14 2019-10-02 17:50:59 t 1 1 108413 470 0.00 2019-10-02 17:49:51 2019-10-02 17:53:14 t 1 1 108416 422 0.00 2019-10-02 17:42:22 2019-10-02 17:55:03 t 1 1 108417 451 0.00 2019-10-02 17:39:29 2019-10-02 17:56:27 t 1 1 108418 412 0.00 2019-10-02 17:00:04 2019-10-02 17:57:14 t 1 1 108420 445 0.00 2019-10-02 17:14:05 2019-10-02 17:59:33 t 1 1 108423 416 0.00 2019-10-02 17:59:18 2019-10-02 18:00:00 t 1 1 108430 462 0.00 2019-10-02 18:06:04 2019-10-02 18:13:46 t 1 1 108432 522 0.00 2019-10-02 18:15:35 2019-10-02 18:15:49 t 1 1 108434 306 0.00 2019-10-02 18:04:32 2019-10-02 18:16:32 t 1 1 108440 485 0.00 2019-10-02 18:18:25 2019-10-02 18:26:39 t 1 1 108449 385 0.00 2019-10-02 18:32:19 2019-10-02 18:32:19 f 1 2 108451 476 0.00 2019-10-02 18:34:01 2019-10-02 18:34:01 f 1 2 108453 522 0.00 2019-10-02 18:35:06 2019-10-02 18:35:09 t 1 1 108454 485 0.00 2019-10-02 18:26:39 2019-10-02 18:36:21 t 1 1 108455 522 0.00 2019-10-02 18:35:26 2019-10-02 18:37:17 t 1 1 108459 416 0.00 2019-10-02 18:03:08 2019-10-02 18:39:31 t 1 1 108461 522 0.00 2019-10-02 18:40:16 2019-10-02 18:40:43 t 1 1 108462 522 0.00 2019-10-02 18:40:56 2019-10-02 18:41:01 t 1 1 108464 522 0.00 2019-10-02 18:42:53 2019-10-02 18:43:06 t 1 1 108467 485 0.00 2019-10-02 18:39:19 2019-10-02 18:47:39 t 1 1 108468 522 0.00 2019-10-02 18:45:12 2019-10-02 18:49:18 t 1 1 108470 522 0.00 2019-10-02 18:49:40 2019-10-02 18:49:44 t 1 1 108473 306 0.00 2019-10-02 18:48:58 2019-10-02 18:51:31 t 1 1 108475 490 0.00 2019-10-02 18:39:56 2019-10-02 18:54:12 t 1 1 108477 331 0.00 2019-10-02 18:54:07 2019-10-02 18:56:08 t 1 1 108482 522 0.00 2019-10-02 18:55:27 2019-10-02 18:57:17 t 1 1 108484 488 0.00 2019-10-02 18:51:03 2019-10-02 18:59:14 t 1 1 108487 445 0.00 2019-10-02 19:02:41 2019-10-02 19:06:00 t 1 1 108493 306 0.00 2019-10-02 19:13:02 2019-10-02 19:14:36 t 1 1 108495 462 0.00 2019-10-02 19:11:06 2019-10-02 19:16:23 t 1 1 108497 522 0.00 2019-10-02 19:18:37 2019-10-02 19:18:55 t 1 1 108504 522 0.00 2019-10-02 19:23:33 2019-10-02 19:23:45 t 1 1 108505 522 0.00 2019-10-02 19:23:52 2019-10-02 19:24:26 t 1 1 108507 462 0.00 2019-10-02 19:21:21 2019-10-02 19:27:40 t 1 1 108508 451 0.00 2019-10-02 19:14:41 2019-10-02 19:28:26 t 1 1 108511 522 0.00 2019-10-02 19:30:41 2019-10-02 19:30:54 t 1 1 108518 325 0.00 2019-10-02 19:36:17 2019-10-02 19:39:17 t 1 2 108520 468 0.00 2019-10-02 19:26:46 2019-10-02 19:42:08 t 1 1 108521 327 0.00 2019-10-02 19:41:00 2019-10-02 19:43:46 t 1 1 108523 462 0.00 2019-10-02 19:40:53 2019-10-02 19:47:09 t 1 1 108524 522 0.00 2019-10-02 19:34:01 2019-10-02 19:48:34 t 1 1 108525 522 0.00 2019-10-02 19:49:20 2019-10-02 19:49:33 t 1 1 108526 422 0.00 2019-10-02 18:00:54 2019-10-02 19:50:45 t 1 1 108529 468 0.00 2019-10-02 19:45:55 2019-10-02 19:53:37 t 1 1 108533 522 0.00 2019-10-02 19:51:19 2019-10-02 19:58:26 t 1 1 108534 522 0.00 2019-10-02 19:58:26 2019-10-02 19:59:16 t 1 1 108536 522 0.00 2019-10-02 20:00:04 2019-10-02 20:00:17 t 1 1 108539 522 0.00 2019-10-02 20:05:11 2019-10-02 20:05:50 t 1 1 108542 522 0.00 2019-10-02 20:11:27 2019-10-02 20:11:36 t 1 1 108543 522 0.00 2019-10-02 20:12:02 2019-10-02 20:12:14 t 1 1 108546 522 0.00 2019-10-02 20:16:10 2019-10-02 20:16:25 t 1 1 108551 522 0.00 2019-10-02 20:22:27 2019-10-02 20:24:41 t 1 1 108552 327 0.00 2019-10-02 20:25:58 2019-10-02 20:26:43 t 1 1 108556 522 0.00 2019-10-02 20:25:45 2019-10-02 20:35:53 t 1 1 108559 375 0.00 2019-10-02 20:31:20 2019-10-02 20:41:31 t 1 1 108564 474 0.00 2019-10-02 20:45:19 2019-10-02 20:53:30 t 1 1 108565 481 0.00 2019-10-02 20:51:27 2019-10-02 20:54:43 t 1 1 108566 485 0.00 2019-10-02 20:55:38 2019-10-02 20:57:37 t 1 1 108571 331 0.00 2019-10-02 20:53:10 2019-10-02 21:08:45 t 1 1 108577 485 0.00 2019-10-02 21:10:50 2019-10-02 21:15:59 t 1 1 108579 470 0.00 2019-10-02 20:50:20 2019-10-02 21:18:38 t 1 1 108580 522 0.00 2019-10-02 21:18:42 2019-10-02 21:19:22 t 1 1 108585 470 0.00 2019-10-02 21:18:38 2019-10-02 21:21:37 t 1 1 108586 522 0.00 2019-10-02 21:21:55 2019-10-02 21:21:57 t 1 1 108587 327 0.00 2019-10-02 21:22:13 2019-10-02 21:22:46 t 1 1 108588 470 0.00 2019-10-02 21:22:02 2019-10-02 21:23:09 t 1 1 108589 445 0.00 2019-10-02 20:06:55 2019-10-02 21:23:44 t 1 1 108590 445 0.00 2019-10-02 21:23:37 2019-10-02 21:24:39 t 1 1 108591 520 0.00 2019-10-02 21:08:55 2019-10-02 21:26:07 t 1 1 108599 306 0.00 2019-10-02 21:29:44 2019-10-02 21:32:16 t 1 1 108600 451 0.00 2019-10-02 20:59:02 2019-10-02 21:33:01 t 1 1 108367 445 0.00 2019-10-02 15:38:59 2019-10-02 16:08:03 t 1 1 108370 522 0.00 2019-10-02 15:52:05 2019-10-02 16:10:48 t 1 1 108371 461 0.00 2019-10-02 15:48:07 2019-10-02 16:11:30 t 1 2 108372 456 0.00 2019-10-02 16:01:43 2019-10-02 16:16:46 t 1 1 108374 247 0.00 2019-10-02 16:15:58 2019-10-02 16:17:41 t 1 2 108375 485 0.00 2019-10-02 16:15:57 2019-10-02 16:19:01 t 1 1 108389 416 0.00 2019-10-02 17:01:40 2019-10-02 17:09:16 t 1 1 108391 456 0.00 2019-10-02 17:04:10 2019-10-02 17:11:53 t 1 1 108396 331 0.00 2019-10-02 16:49:58 2019-10-02 17:20:15 t 1 1 108399 416 0.00 2019-10-02 17:09:31 2019-10-02 17:33:31 t 1 1 108402 451 0.00 2019-10-02 17:19:38 2019-10-02 17:39:29 t 1 1 108403 422 0.00 2019-10-02 17:21:22 2019-10-02 17:42:22 t 1 1 108408 470 0.00 2019-10-02 17:44:58 2019-10-02 17:49:53 t 1 1 108409 296 0.00 2019-10-02 17:47:01 2019-10-02 17:50:24 t 1 2 108412 522 0.00 2019-10-02 17:48:23 2019-10-02 17:52:39 t 1 1 108414 522 0.00 2019-10-02 17:54:24 2019-10-02 17:54:36 t 1 1 108419 522 0.00 2019-10-02 17:56:57 2019-10-02 17:57:53 t 1 1 108421 462 0.00 2019-10-02 17:54:54 2019-10-02 17:59:48 t 1 1 108427 470 0.00 2019-10-02 17:53:24 2019-10-02 18:09:11 t 1 1 108428 522 0.00 2019-10-02 17:57:52 2019-10-02 18:12:11 t 1 1 108429 522 0.00 2019-10-02 18:12:37 2019-10-02 18:13:11 t 1 1 108431 522 0.00 2019-10-02 18:14:36 2019-10-02 18:15:13 t 1 1 108436 522 0.00 2019-10-02 18:20:42 2019-10-02 18:20:45 t 1 1 108438 462 0.00 2019-10-02 18:13:46 2019-10-02 18:23:22 t 1 1 108442 325 0.00 2019-10-02 18:30:43 2019-10-02 18:30:43 f 1 2 108444 325 0.00 2019-10-02 18:30:54 2019-10-02 18:30:54 f 1 2 108445 325 0.00 2019-10-02 18:31:04 2019-10-02 18:31:04 f 1 2 108447 385 0.00 2019-10-02 18:31:56 2019-10-02 18:31:56 f 1 2 108448 385 0.00 2019-10-02 18:32:06 2019-10-02 18:32:06 f 1 2 108456 470 0.00 2019-10-02 18:31:24 2019-10-02 18:37:36 t 1 1 108457 481 0.00 2019-10-02 17:06:22 2019-10-02 18:38:52 t 1 1 108460 445 0.00 2019-10-02 18:31:36 2019-10-02 18:40:05 t 1 1 108465 522 0.00 2019-10-02 18:44:26 2019-10-02 18:44:27 t 1 1 108469 522 0.00 2019-10-02 18:49:18 2019-10-02 18:49:30 t 1 1 108471 522 0.00 2019-10-02 18:50:17 2019-10-02 18:50:29 t 1 1 108472 485 0.00 2019-10-02 18:47:39 2019-10-02 18:51:21 t 1 1 108479 522 0.00 2019-10-02 18:56:23 2019-10-02 18:56:23 f 1 1 108480 445 0.00 2019-10-02 18:44:12 2019-10-02 18:57:16 t 1 1 108485 445 0.00 2019-10-02 18:59:04 2019-10-02 19:02:42 t 1 1 108486 416 0.00 2019-10-02 18:42:01 2019-10-02 19:03:07 t 1 1 108488 520 0.00 2019-10-02 18:58:11 2019-10-02 19:06:10 t 1 1 108489 490 0.00 2019-10-02 18:54:12 2019-10-02 19:07:21 t 1 1 108490 490 0.00 2019-10-02 19:07:21 2019-10-02 19:09:43 t 1 1 108492 372 0.00 2019-10-02 17:57:23 2019-10-02 19:12:28 t 1 2 108494 522 0.00 2019-10-02 19:13:51 2019-10-02 19:14:58 t 1 1 108496 361 0.00 2019-10-02 16:26:47 2019-10-02 19:18:32 t 1 2 108499 522 0.00 2019-10-02 19:19:42 2019-10-02 19:19:55 t 1 1 108501 462 0.00 2019-10-02 19:16:23 2019-10-02 19:21:21 t 1 1 108506 522 0.00 2019-10-02 19:25:32 2019-10-02 19:25:46 t 1 1 108513 445 0.00 2019-10-02 19:06:25 2019-10-02 19:31:20 t 1 1 108514 445 0.00 2019-10-02 19:31:19 2019-10-02 19:32:50 t 1 1 108515 451 0.00 2019-10-02 19:28:26 2019-10-02 19:35:44 t 1 1 108516 462 0.00 2019-10-02 19:27:40 2019-10-02 19:36:17 t 1 1 108517 420 0.00 2019-10-02 19:38:34 2019-10-02 19:38:34 f 1 1 108519 462 0.00 2019-10-02 19:36:17 2019-10-02 19:40:53 t 1 1 108527 462 0.00 2019-10-02 19:47:09 2019-10-02 19:51:42 t 1 1 108528 516 0.00 2019-10-02 19:08:43 2019-10-02 19:52:53 t 1 1 108530 327 0.00 2019-10-02 19:53:44 2019-10-02 19:54:37 t 1 1 108531 512 0.00 2019-10-02 19:44:56 2019-10-02 19:55:12 t 1 1 108535 331 0.00 2019-10-02 19:40:42 2019-10-02 19:59:19 t 1 1 108537 306 0.00 2019-10-02 20:02:26 2019-10-02 20:04:44 t 1 1 108544 522 0.00 2019-10-02 20:15:02 2019-10-02 20:15:15 t 1 1 108545 327 0.00 2019-10-02 20:15:20 2019-10-02 20:16:02 t 1 1 108547 522 0.00 2019-10-02 20:17:48 2019-10-02 20:17:58 t 1 1 108553 412 0.00 2019-10-02 17:57:14 2019-10-02 20:26:54 t 1 1 108554 422 0.00 2019-10-02 19:50:45 2019-10-02 20:27:17 t 1 1 108555 451 0.00 2019-10-02 20:20:23 2019-10-02 20:31:04 t 1 1 108561 481 0.00 2019-10-02 18:39:26 2019-10-02 20:51:27 t 1 1 108562 375 0.00 2019-10-02 20:41:31 2019-10-02 20:52:16 t 1 1 108567 451 0.00 2019-10-02 20:38:54 2019-10-02 20:59:02 t 1 1 108568 474 0.00 2019-10-02 20:53:30 2019-10-02 21:02:06 t 1 1 108574 503 0.00 2019-10-02 21:10:12 2019-10-02 21:11:25 t 1 1 108575 522 0.00 2019-10-02 21:11:33 2019-10-02 21:12:14 t 1 1 108578 522 0.00 2019-10-02 21:15:55 2019-10-02 21:16:01 t 1 1 108582 522 0.00 2019-10-02 21:19:35 2019-10-02 21:19:36 t 1 1 108595 470 0.00 2019-10-02 21:27:37 2019-10-02 21:28:40 t 1 1 108596 470 0.00 2019-10-02 21:28:40 2019-10-02 21:29:24 t 1 1 108598 470 0.00 2019-10-02 21:29:24 2019-10-02 21:30:10 t 1 1 108604 327 0.00 2019-10-02 21:32:53 2019-10-02 21:35:47 t 1 1 108606 372 0.00 2019-10-02 21:24:10 2019-10-02 21:38:17 t 1 2 108608 522 0.00 2019-10-02 21:38:35 2019-10-02 21:38:36 t 1 1 108614 522 0.00 2019-10-02 21:43:20 2019-10-02 21:43:28 t 1 1 108615 375 0.00 2019-10-02 21:43:29 2019-10-02 21:44:29 t 1 1 108617 327 0.00 2019-10-02 21:45:16 2019-10-02 21:46:01 t 1 1 108621 520 0.00 2019-10-02 21:41:23 2019-10-02 21:54:18 t 1 1 108627 220 0.00 2019-10-02 21:47:08 2019-10-02 21:59:45 t 1 2 108631 522 0.00 2019-10-02 22:00:31 2019-10-02 22:00:33 t 1 1 108635 522 0.00 2019-10-02 22:01:32 2019-10-02 22:01:34 t 1 1 108639 372 0.00 2019-10-02 22:03:16 2019-10-02 22:04:20 t 1 2 108651 361 0.00 2019-10-02 21:16:07 2019-10-02 22:15:01 t 1 2 108653 474 0.00 2019-10-02 21:54:36 2019-10-02 22:18:07 t 1 1 108656 372 0.00 2019-10-02 22:03:37 2019-10-02 22:18:43 t 1 2 108657 522 0.00 2019-10-02 22:19:07 2019-10-02 22:19:10 t 1 1 108660 470 0.00 2019-10-02 21:30:10 2019-10-02 22:20:30 t 1 1 108661 522 0.00 2019-10-02 22:24:12 2019-10-02 22:24:15 t 1 1 108662 474 0.00 2019-10-02 22:18:07 2019-10-02 22:25:56 t 1 1 108663 490 0.00 2019-10-02 22:18:37 2019-10-02 22:27:08 t 1 1 108668 522 0.00 2019-10-02 22:29:41 2019-10-02 22:29:43 t 1 1 108669 522 0.00 2019-10-02 22:30:50 2019-10-02 22:31:03 t 1 1 108671 327 0.00 2019-10-02 22:30:31 2019-10-02 22:31:50 t 1 1 108676 296 0.00 2019-10-02 22:34:42 2019-10-02 22:36:03 t 1 2 108681 306 0.00 2019-10-02 22:22:15 2019-10-02 22:41:10 t 1 1 108685 412 0.00 2019-10-02 22:19:16 2019-10-02 22:46:56 t 1 1 108687 445 0.00 2019-10-02 22:22:33 2019-10-02 22:49:42 t 1 1 108689 481 0.00 2019-10-02 22:38:02 2019-10-02 22:50:17 t 1 1 108691 445 0.00 2019-10-02 22:49:44 2019-10-02 22:52:26 t 1 1 108692 485 0.00 2019-10-02 22:41:10 2019-10-02 22:53:22 t 1 1 108601 522 0.00 2019-10-02 21:23:36 2019-10-02 21:34:18 t 1 1 108602 445 0.00 2019-10-02 21:24:42 2019-10-02 21:35:29 t 1 1 108603 331 0.00 2019-10-02 21:08:45 2019-10-02 21:35:38 t 1 1 108605 485 0.00 2019-10-02 21:31:40 2019-10-02 21:36:03 t 1 1 108609 520 0.00 2019-10-02 21:26:06 2019-10-02 21:39:56 t 1 1 108610 522 0.00 2019-10-02 21:40:14 2019-10-02 21:41:34 t 1 1 108618 522 0.00 2019-10-02 21:46:06 2019-10-02 21:50:16 t 1 1 108620 522 0.00 2019-10-02 21:51:53 2019-10-02 21:52:03 t 1 1 108624 522 0.00 2019-10-02 21:58:08 2019-10-02 21:58:14 t 1 1 108629 522 0.00 2019-10-02 21:59:53 2019-10-02 22:00:05 t 1 1 108632 522 0.00 2019-10-02 22:00:40 2019-10-02 22:00:51 t 1 1 108633 485 0.00 2019-10-02 21:43:25 2019-10-02 22:01:12 t 1 1 108636 522 0.00 2019-10-02 22:01:39 2019-10-02 22:01:40 t 1 1 108637 522 0.00 2019-10-02 22:02:12 2019-10-02 22:02:13 t 1 1 108638 490 0.00 2019-10-02 21:59:05 2019-10-02 22:03:19 t 1 1 108641 501 0.00 2019-10-02 21:55:03 2019-10-02 22:07:24 t 1 1 108643 490 0.00 2019-10-02 22:03:19 2019-10-02 22:10:19 t 1 1 108644 372 0.00 2019-10-02 22:09:52 2019-10-02 22:11:00 t 1 2 108645 422 0.00 2019-10-02 22:04:56 2019-10-02 22:12:32 t 1 1 108647 327 0.00 2019-10-02 22:08:47 2019-10-02 22:12:36 t 1 1 108650 522 0.00 2019-10-02 22:13:58 2019-10-02 22:14:07 t 1 1 108654 422 0.00 2019-10-02 22:15:47 2019-10-02 22:18:35 t 1 1 108659 485 0.00 2019-10-02 22:01:12 2019-10-02 22:20:00 t 1 1 108664 327 0.00 2019-10-02 22:14:57 2019-10-02 22:27:27 t 1 1 108666 522 0.00 2019-10-02 22:28:17 2019-10-02 22:28:32 t 1 1 108673 327 0.00 2019-10-02 22:32:15 2019-10-02 22:33:13 t 1 1 108677 461 0.00 2019-10-02 21:54:01 2019-10-02 22:36:25 t 1 2 108680 522 0.00 2019-10-02 22:39:49 2019-10-02 22:39:51 t 1 1 108682 422 0.00 2019-10-02 22:18:35 2019-10-02 22:41:30 t 1 1 108684 514 0.00 2019-10-02 22:43:41 2019-10-02 22:44:35 t 1 1 108686 306 0.00 2019-10-02 22:42:36 2019-10-02 22:49:15 t 1 1 108690 474 0.00 2019-10-02 22:31:34 2019-10-02 22:50:52 t 1 1 108694 296 0.00 2019-10-02 22:51:26 2019-10-02 22:54:49 t 1 2 108696 470 0.00 2019-10-02 22:20:30 2019-10-02 22:56:30 t 1 1 108698 501 0.00 2019-10-02 22:50:09 2019-10-02 22:57:53 t 1 1 108700 220 0.00 2019-10-02 22:58:34 2019-10-02 22:58:44 t 1 2 108703 522 0.00 2019-10-02 23:02:10 2019-10-02 23:02:47 t 1 1 108707 522 0.00 2019-10-02 23:03:01 2019-10-02 23:03:51 t 1 1 108708 522 0.00 2019-10-02 23:04:13 2019-10-02 23:04:25 t 1 1 108709 522 0.00 2019-10-02 23:05:53 2019-10-02 23:06:37 t 1 1 108711 522 0.00 2019-10-02 23:07:19 2019-10-02 23:07:42 t 1 1 108712 247 0.00 2019-10-02 23:06:57 2019-10-02 23:08:31 t 1 2 108716 522 0.00 2019-10-02 23:11:46 2019-10-02 23:12:44 t 1 1 108719 472 0.00 2019-10-02 23:14:26 2019-10-02 23:14:29 t 1 1 108722 501 0.00 2019-10-02 23:09:28 2019-10-02 23:15:24 t 1 1 108723 220 0.00 2019-10-02 22:59:01 2019-10-02 23:16:21 t 1 2 108734 522 0.00 2019-10-02 23:20:43 2019-10-02 23:21:33 t 1 1 108736 501 0.00 2019-10-02 23:15:24 2019-10-02 23:22:06 t 1 1 108737 522 0.00 2019-10-02 23:22:12 2019-10-02 23:22:35 t 1 1 108739 472 0.00 2019-10-02 23:23:52 2019-10-02 23:24:00 t 1 1 108741 522 0.00 2019-10-02 23:24:46 2019-10-02 23:25:09 t 1 1 108745 451 0.00 2019-10-02 23:20:41 2019-10-02 23:30:46 t 1 1 108746 474 0.00 2019-10-02 23:22:45 2019-10-02 23:31:13 t 1 1 108748 522 0.00 2019-10-02 23:32:00 2019-10-02 23:32:40 t 1 1 108750 522 0.00 2019-10-02 23:33:45 2019-10-02 23:33:59 t 1 1 108757 501 0.00 2019-10-02 23:31:24 2019-10-02 23:38:08 t 1 1 108759 522 0.00 2019-10-02 23:38:21 2019-10-02 23:39:03 t 1 1 108760 522 0.00 2019-10-02 23:39:14 2019-10-02 23:39:16 t 1 1 108762 472 0.00 2019-10-02 23:39:28 2019-10-02 23:39:52 t 1 1 108765 522 0.00 2019-10-02 23:41:30 2019-10-02 23:41:33 t 1 1 108768 451 0.00 2019-10-02 23:37:44 2019-10-02 23:43:32 t 1 1 108769 422 0.00 2019-10-02 23:33:59 2019-10-02 23:44:07 t 1 1 108774 472 0.00 2019-10-02 23:47:56 2019-10-02 23:48:03 t 1 1 108780 522 0.00 2019-10-02 23:50:31 2019-10-02 23:50:45 t 1 1 108783 474 0.00 2019-10-02 23:45:00 2019-10-02 23:54:23 t 1 1 108790 472 0.00 2019-10-03 00:03:27 2019-10-03 00:03:50 t 1 1 108793 501 0.00 2019-10-03 00:04:57 2019-10-03 00:06:34 t 1 1 108795 522 0.00 2019-10-03 00:06:54 2019-10-03 00:06:55 t 1 1 108796 522 0.00 2019-10-03 00:07:00 2019-10-03 00:07:02 t 1 1 108798 474 0.00 2019-10-03 00:01:50 2019-10-03 00:08:19 t 1 1 108800 472 0.00 2019-10-03 00:05:47 2019-10-03 00:12:11 t 1 1 108801 472 0.00 2019-10-03 00:12:20 2019-10-03 00:13:29 t 1 1 108805 468 0.00 2019-10-03 00:05:22 2019-10-03 00:21:21 t 1 1 108808 522 0.00 2019-10-03 00:12:09 2019-10-03 00:28:18 t 1 1 108813 522 0.00 2019-10-03 00:28:18 2019-10-03 00:36:11 t 1 1 108814 522 0.00 2019-10-03 00:37:15 2019-10-03 00:37:24 t 1 1 108815 522 0.00 2019-10-03 00:38:25 2019-10-03 00:38:29 t 1 1 108816 490 0.00 2019-10-03 00:33:17 2019-10-03 00:39:25 t 1 1 108823 422 0.00 2019-10-03 00:34:05 2019-10-03 00:48:30 t 1 1 108824 490 0.00 2019-10-03 00:48:01 2019-10-03 00:49:43 t 1 1 108830 522 0.00 2019-10-03 00:59:22 2019-10-03 00:59:45 t 1 1 108832 422 0.00 2019-10-03 00:58:42 2019-10-03 01:04:23 t 1 1 108840 522 0.00 2019-10-03 01:25:13 2019-10-03 01:25:16 t 1 1 108844 522 0.00 2019-10-03 01:35:24 2019-10-03 01:35:38 t 1 1 108847 522 0.00 2019-10-03 01:50:38 2019-10-03 01:50:52 t 1 1 108850 522 0.00 2019-10-03 02:00:48 2019-10-03 02:00:51 t 1 1 108854 522 0.00 2019-10-03 02:16:04 2019-10-03 02:16:18 t 1 1 108857 522 0.00 2019-10-03 02:31:15 2019-10-03 02:31:16 t 1 1 108860 522 0.00 2019-10-03 02:36:46 2019-10-03 02:36:48 t 1 1 108862 522 0.00 2019-10-03 02:41:25 2019-10-03 02:41:41 t 1 1 108865 522 0.00 2019-10-03 02:51:35 2019-10-03 02:51:36 t 1 1 108866 522 0.00 2019-10-03 02:56:41 2019-10-03 02:56:45 t 1 1 108867 522 0.00 2019-10-03 03:01:47 2019-10-03 03:02:08 t 1 1 108870 522 0.00 2019-10-03 03:17:01 2019-10-03 03:17:19 t 1 1 108873 522 0.00 2019-10-03 03:32:16 2019-10-03 03:32:19 t 1 1 108874 522 0.00 2019-10-03 03:34:46 2019-10-03 03:34:58 t 1 1 108876 522 0.00 2019-10-03 03:42:28 2019-10-03 03:42:29 t 1 1 108878 522 0.00 2019-10-03 03:49:19 2019-10-03 03:49:31 t 1 1 108879 522 0.00 2019-10-03 03:52:35 2019-10-03 03:52:38 t 1 1 108880 522 0.00 2019-10-03 03:55:40 2019-10-03 03:55:52 t 1 1 108882 522 0.00 2019-10-03 04:02:39 2019-10-03 04:02:52 t 1 1 108883 522 0.00 2019-10-03 04:07:45 2019-10-03 04:07:58 t 1 1 108886 445 0.00 2019-10-03 04:13:40 2019-10-03 04:14:16 t 1 1 108888 522 0.00 2019-10-03 04:17:57 2019-10-03 04:18:10 t 1 1 108891 522 0.00 2019-10-03 04:28:04 2019-10-03 04:28:05 t 1 1 108894 522 0.00 2019-10-03 04:38:13 2019-10-03 04:38:26 t 1 1 108898 520 0.00 2019-10-03 04:51:43 2019-10-03 04:54:07 t 1 1 108626 522 0.00 2019-10-02 21:58:20 2019-10-02 21:59:20 t 1 1 108628 522 0.00 2019-10-02 21:59:34 2019-10-02 21:59:46 t 1 1 108630 522 0.00 2019-10-02 22:00:12 2019-10-02 22:00:24 t 1 1 108634 522 0.00 2019-10-02 22:00:59 2019-10-02 22:01:18 t 1 1 108640 422 0.00 2019-10-02 21:08:57 2019-10-02 22:04:56 t 1 1 108642 522 0.00 2019-10-02 22:06:37 2019-10-02 22:07:25 t 1 1 108646 522 0.00 2019-10-02 22:12:31 2019-10-02 22:12:34 t 1 1 108648 520 0.00 2019-10-02 21:57:12 2019-10-02 22:13:30 t 1 1 108649 445 0.00 2019-10-02 21:35:35 2019-10-02 22:14:05 t 1 1 108652 422 0.00 2019-10-02 22:12:32 2019-10-02 22:15:47 t 1 1 108655 490 0.00 2019-10-02 22:10:19 2019-10-02 22:18:37 t 1 1 108658 412 0.00 2019-10-02 20:26:54 2019-10-02 22:19:16 t 1 1 108665 522 0.00 2019-10-02 22:27:42 2019-10-02 22:27:54 t 1 1 108667 327 0.00 2019-10-02 22:28:01 2019-10-02 22:29:35 t 1 1 108670 474 0.00 2019-10-02 22:25:56 2019-10-02 22:31:34 t 1 1 108672 488 0.00 2019-10-02 22:26:30 2019-10-02 22:33:13 t 1 1 108674 522 0.00 2019-10-02 22:34:43 2019-10-02 22:34:56 t 1 1 108675 430 0.00 2019-10-02 22:26:10 2019-10-02 22:35:34 t 1 1 108678 490 0.00 2019-10-02 22:27:08 2019-10-02 22:37:39 t 1 1 108679 481 0.00 2019-10-02 20:58:11 2019-10-02 22:38:02 t 1 1 108683 522 0.00 2019-10-02 22:42:49 2019-10-02 22:44:13 t 1 1 108688 501 0.00 2019-10-02 22:07:24 2019-10-02 22:50:09 t 1 1 108697 485 0.00 2019-10-02 22:53:22 2019-10-02 22:57:50 t 1 1 108704 522 0.00 2019-10-02 23:02:55 2019-10-02 23:02:55 t 1 1 108705 501 0.00 2019-10-02 22:57:53 2019-10-02 23:03:25 t 1 1 108713 501 0.00 2019-10-02 23:03:25 2019-10-02 23:09:28 t 1 1 108714 522 0.00 2019-10-02 23:10:02 2019-10-02 23:10:16 t 1 1 108717 490 0.00 2019-10-02 23:03:36 2019-10-02 23:13:30 t 1 1 108721 472 0.00 2019-10-02 23:14:40 2019-10-02 23:15:02 t 1 1 108725 522 0.00 2019-10-02 23:16:55 2019-10-02 23:17:12 t 1 1 108727 522 0.00 2019-10-02 23:18:29 2019-10-02 23:18:44 t 1 1 108730 472 0.00 2019-10-02 23:19:35 2019-10-02 23:20:00 t 1 1 108740 456 0.00 2019-10-02 23:08:08 2019-10-02 23:24:42 t 1 1 108742 522 0.00 2019-10-02 23:27:18 2019-10-02 23:27:32 t 1 1 108744 514 0.00 2019-10-02 23:17:58 2019-10-02 23:30:11 t 1 1 108747 501 0.00 2019-10-02 23:22:06 2019-10-02 23:31:24 t 1 1 108755 451 0.00 2019-10-02 23:37:28 2019-10-02 23:37:45 t 1 1 108758 522 0.00 2019-10-02 23:37:44 2019-10-02 23:38:14 t 1 1 108763 522 0.00 2019-10-02 23:40:22 2019-10-02 23:40:26 t 1 1 108766 472 0.00 2019-10-02 23:40:00 2019-10-02 23:42:56 t 1 1 108767 522 0.00 2019-10-02 23:43:00 2019-10-02 23:43:09 t 1 1 108770 522 0.00 2019-10-02 23:43:49 2019-10-02 23:44:14 t 1 1 108771 474 0.00 2019-10-02 23:37:28 2019-10-02 23:45:00 t 1 1 108772 522 0.00 2019-10-02 23:45:27 2019-10-02 23:45:29 t 1 1 108776 432 0.00 2019-10-02 23:49:04 2019-10-02 23:49:04 f 1 1 108778 432 0.00 2019-10-02 23:50:14 2019-10-02 23:50:14 f 1 1 108779 432 0.00 2019-10-02 23:50:34 2019-10-02 23:50:34 f 1 1 108781 501 0.00 2019-10-02 23:45:57 2019-10-02 23:52:18 t 1 1 108786 472 0.00 2019-10-02 23:51:36 2019-10-03 00:01:18 t 1 1 108788 474 0.00 2019-10-02 23:54:23 2019-10-03 00:01:50 t 1 1 108791 501 0.00 2019-10-02 23:57:56 2019-10-03 00:04:47 t 1 1 108802 432 0.00 2019-10-03 00:17:39 2019-10-03 00:17:39 f 1 1 108803 432 0.00 2019-10-03 00:18:27 2019-10-03 00:18:27 f 1 1 108809 512 0.00 2019-10-03 00:05:33 2019-10-03 00:32:02 t 1 1 108810 445 0.00 2019-10-02 23:49:28 2019-10-03 00:33:40 t 1 1 108811 422 0.00 2019-10-02 23:54:04 2019-10-03 00:34:05 t 1 1 108817 522 0.00 2019-10-03 00:38:42 2019-10-03 00:39:42 t 1 1 108818 522 0.00 2019-10-03 00:42:28 2019-10-03 00:42:50 t 1 1 108819 522 0.00 2019-10-03 00:43:01 2019-10-03 00:43:04 t 1 1 108825 522 0.00 2019-10-03 00:51:11 2019-10-03 00:51:29 t 1 1 108827 422 0.00 2019-10-03 00:48:30 2019-10-03 00:58:42 t 1 1 108828 522 0.00 2019-10-03 00:58:33 2019-10-03 00:58:59 t 1 1 108831 522 0.00 2019-10-03 01:03:36 2019-10-03 01:03:59 t 1 1 108833 522 0.00 2019-10-03 01:04:46 2019-10-03 01:05:09 t 1 1 108835 422 0.00 2019-10-03 01:04:23 2019-10-03 01:10:06 t 1 1 108836 522 0.00 2019-10-03 01:15:01 2019-10-03 01:15:14 t 1 1 108838 522 0.00 2019-10-03 01:20:08 2019-10-03 01:20:21 t 1 1 108841 422 0.00 2019-10-03 01:10:06 2019-10-03 01:26:00 t 1 1 108842 501 0.00 2019-10-03 00:43:48 2019-10-03 01:28:07 t 1 1 108845 522 0.00 2019-10-03 01:40:29 2019-10-03 01:40:32 t 1 1 108848 522 0.00 2019-10-03 01:53:43 2019-10-03 01:53:56 t 1 1 108849 522 0.00 2019-10-03 01:55:40 2019-10-03 01:56:00 t 1 1 108851 331 0.00 2019-10-02 21:35:38 2019-10-03 02:05:56 t 1 1 108855 522 0.00 2019-10-03 02:21:09 2019-10-03 02:21:23 t 1 1 108858 522 0.00 2019-10-03 02:36:19 2019-10-03 02:36:27 t 1 1 108861 331 0.00 2019-10-03 02:06:38 2019-10-03 02:37:18 t 1 1 108863 522 0.00 2019-10-03 02:46:32 2019-10-03 02:46:44 t 1 1 108864 522 0.00 2019-10-03 02:46:56 2019-10-03 02:46:59 t 1 1 108868 522 0.00 2019-10-03 03:06:52 2019-10-03 03:07:05 t 1 1 108871 522 0.00 2019-10-03 03:22:10 2019-10-03 03:22:10 t 1 1 108877 522 0.00 2019-10-03 03:47:31 2019-10-03 03:47:45 t 1 1 108884 445 0.00 2019-10-03 00:35:06 2019-10-03 04:09:24 t 1 1 108885 522 0.00 2019-10-03 04:12:52 2019-10-03 04:12:55 t 1 1 108887 518 0.00 2019-10-03 02:54:25 2019-10-03 04:14:30 t 1 2 108889 445 0.00 2019-10-03 04:14:23 2019-10-03 04:21:50 t 1 1 108892 522 0.00 2019-10-03 04:28:17 2019-10-03 04:28:19 t 1 1 108895 522 0.00 2019-10-03 04:43:20 2019-10-03 04:43:33 t 1 1 108902 522 0.00 2019-10-03 05:13:49 2019-10-03 05:14:02 t 1 1 108903 522 0.00 2019-10-03 05:18:56 2019-10-03 05:19:10 t 1 1 108904 522 0.00 2019-10-03 05:24:00 2019-10-03 05:24:13 t 1 1 108909 461 0.00 2019-10-03 05:14:25 2019-10-03 05:39:29 t 1 2 108911 430 0.00 2019-10-03 05:20:12 2019-10-03 05:44:24 t 1 1 108917 522 0.00 2019-10-03 05:59:38 2019-10-03 05:59:52 t 1 1 108919 522 0.00 2019-10-03 06:09:50 2019-10-03 06:09:53 t 1 1 108920 485 0.00 2019-10-03 06:08:33 2019-10-03 06:10:51 t 1 1 108924 522 0.00 2019-10-03 06:21:38 2019-10-03 06:22:01 t 1 1 108926 522 0.00 2019-10-03 06:29:07 2019-10-03 06:29:20 t 1 1 108927 522 0.00 2019-10-03 06:31:56 2019-10-03 06:32:08 t 1 1 108929 522 0.00 2019-10-03 06:39:14 2019-10-03 06:39:27 t 1 1 108932 522 0.00 2019-10-03 06:48:32 2019-10-03 06:48:44 t 1 1 108933 522 0.00 2019-10-03 06:49:29 2019-10-03 06:49:29 t 1 1 108939 522 0.00 2019-10-03 07:04:42 2019-10-03 07:04:43 t 1 1 108941 522 0.00 2019-10-03 07:05:14 2019-10-03 07:05:17 t 1 1 108945 522 0.00 2019-10-03 07:13:17 2019-10-03 07:13:17 t 1 1 108946 522 0.00 2019-10-03 07:14:49 2019-10-03 07:14:50 t 1 1 108949 522 0.00 2019-10-03 07:15:19 2019-10-03 07:17:40 t 1 1 108952 522 0.00 2019-10-03 07:24:57 2019-10-03 07:25:14 t 1 1 108693 490 0.00 2019-10-02 22:37:39 2019-10-02 22:54:42 t 1 1 108695 445 0.00 2019-10-02 22:52:27 2019-10-02 22:55:02 t 1 1 108699 220 0.00 2019-10-02 22:58:23 2019-10-02 22:58:27 t 1 2 108701 522 0.00 2019-10-02 23:01:01 2019-10-02 23:01:42 t 1 1 108702 522 0.00 2019-10-02 23:01:50 2019-10-02 23:02:02 t 1 1 108706 490 0.00 2019-10-02 22:54:42 2019-10-02 23:03:36 t 1 1 108710 522 0.00 2019-10-02 23:06:43 2019-10-02 23:07:14 t 1 1 108715 327 0.00 2019-10-02 22:34:20 2019-10-02 23:12:08 t 1 1 108718 472 0.00 2019-10-02 23:09:49 2019-10-02 23:14:14 t 1 1 108720 430 0.00 2019-10-02 23:12:18 2019-10-02 23:15:00 t 1 1 108724 472 0.00 2019-10-02 23:16:46 2019-10-02 23:17:04 t 1 1 108726 472 0.00 2019-10-02 23:17:13 2019-10-02 23:17:36 t 1 1 108728 472 0.00 2019-10-02 23:18:46 2019-10-02 23:18:54 t 1 1 108729 472 0.00 2019-10-02 23:19:04 2019-10-02 23:19:26 t 1 1 108731 472 0.00 2019-10-02 23:20:09 2019-10-02 23:20:31 t 1 1 108732 451 0.00 2019-10-02 21:51:39 2019-10-02 23:20:41 t 1 1 108733 472 0.00 2019-10-02 23:20:40 2019-10-02 23:21:04 t 1 1 108735 472 0.00 2019-10-02 23:21:14 2019-10-02 23:21:36 t 1 1 108738 474 0.00 2019-10-02 22:50:52 2019-10-02 23:22:45 t 1 1 108743 456 0.00 2019-10-02 23:24:42 2019-10-02 23:28:47 t 1 1 108749 422 0.00 2019-10-02 22:41:30 2019-10-02 23:33:59 t 1 1 108751 472 0.00 2019-10-02 23:26:20 2019-10-02 23:34:45 t 1 1 108752 451 0.00 2019-10-02 23:30:48 2019-10-02 23:35:11 t 1 1 108753 432 0.00 2019-10-02 23:36:54 2019-10-02 23:36:54 f 1 1 108754 474 0.00 2019-10-02 23:31:13 2019-10-02 23:37:28 t 1 1 108756 432 0.00 2019-10-02 23:37:54 2019-10-02 23:37:54 f 1 1 108761 472 0.00 2019-10-02 23:39:11 2019-10-02 23:39:19 t 1 1 108764 514 0.00 2019-10-02 23:38:53 2019-10-02 23:41:19 t 1 1 108773 501 0.00 2019-10-02 23:38:08 2019-10-02 23:45:57 t 1 1 108775 445 0.00 2019-10-02 22:55:02 2019-10-02 23:48:28 t 1 1 108777 445 0.00 2019-10-02 23:48:31 2019-10-02 23:49:42 t 1 1 108782 422 0.00 2019-10-02 23:44:07 2019-10-02 23:54:04 t 1 1 108784 501 0.00 2019-10-02 23:52:18 2019-10-02 23:57:56 t 1 1 108785 522 0.00 2019-10-02 23:54:43 2019-10-02 23:58:14 t 1 1 108787 472 0.00 2019-10-03 00:01:27 2019-10-03 00:01:49 t 1 1 108789 472 0.00 2019-10-03 00:03:10 2019-10-03 00:03:17 t 1 1 108792 512 0.00 2019-10-02 23:53:18 2019-10-03 00:05:33 t 1 1 108794 522 0.00 2019-10-03 00:05:47 2019-10-03 00:06:46 t 1 1 108797 456 0.00 2019-10-02 23:52:11 2019-10-03 00:07:28 t 1 1 108799 522 0.00 2019-10-03 00:08:24 2019-10-03 00:12:09 t 1 1 108804 432 0.00 2019-10-03 00:18:36 2019-10-03 00:18:36 f 1 1 108806 472 0.00 2019-10-03 00:17:13 2019-10-03 00:21:34 t 1 1 108807 220 0.00 2019-10-02 23:10:58 2019-10-03 00:23:26 t 1 1 108812 445 0.00 2019-10-03 00:34:04 2019-10-03 00:35:07 t 1 1 108820 325 0.00 2019-10-02 23:05:22 2019-10-03 00:45:28 t 1 2 108821 522 0.00 2019-10-03 00:46:04 2019-10-03 00:46:15 t 1 1 108822 490 0.00 2019-10-03 00:39:26 2019-10-03 00:48:01 t 1 1 108826 522 0.00 2019-10-03 00:52:44 2019-10-03 00:56:02 t 1 1 108829 522 0.00 2019-10-03 00:59:10 2019-10-03 00:59:17 t 1 1 108834 522 0.00 2019-10-03 01:09:57 2019-10-03 01:10:01 t 1 1 108837 461 0.00 2019-10-02 22:36:21 2019-10-03 01:19:44 t 1 2 108839 522 0.00 2019-10-03 01:23:12 2019-10-03 01:23:36 t 1 1 108843 522 0.00 2019-10-03 01:30:16 2019-10-03 01:30:30 t 1 1 108846 522 0.00 2019-10-03 01:45:36 2019-10-03 01:45:50 t 1 1 108852 522 0.00 2019-10-03 02:05:52 2019-10-03 02:06:16 t 1 1 108853 522 0.00 2019-10-03 02:10:57 2019-10-03 02:10:58 t 1 1 108856 522 0.00 2019-10-03 02:26:12 2019-10-03 02:26:15 t 1 1 108859 522 0.00 2019-10-03 02:36:39 2019-10-03 02:36:40 t 1 1 108869 522 0.00 2019-10-03 03:11:56 2019-10-03 03:11:59 t 1 1 108872 522 0.00 2019-10-03 03:27:12 2019-10-03 03:27:13 t 1 1 108875 522 0.00 2019-10-03 03:37:21 2019-10-03 03:37:24 t 1 1 108881 522 0.00 2019-10-03 03:57:36 2019-10-03 03:57:39 t 1 1 108890 522 0.00 2019-10-03 04:22:59 2019-10-03 04:23:06 t 1 1 108893 522 0.00 2019-10-03 04:33:08 2019-10-03 04:33:21 t 1 1 108896 522 0.00 2019-10-03 04:48:25 2019-10-03 04:48:38 t 1 1 108897 522 0.00 2019-10-03 04:53:29 2019-10-03 04:53:32 t 1 1 108899 522 0.00 2019-10-03 04:58:36 2019-10-03 04:58:40 t 1 1 108906 522 0.00 2019-10-03 05:29:04 2019-10-03 05:29:14 t 1 1 108907 522 0.00 2019-10-03 05:34:15 2019-10-03 05:34:16 t 1 1 108908 516 0.00 2019-10-03 05:30:40 2019-10-03 05:37:29 t 1 1 108915 520 0.00 2019-10-03 05:35:57 2019-10-03 05:54:00 t 1 1 108918 522 0.00 2019-10-03 06:04:46 2019-10-03 06:04:59 t 1 1 108923 522 0.00 2019-10-03 06:19:51 2019-10-03 06:20:01 t 1 1 108936 522 0.00 2019-10-03 06:53:18 2019-10-03 06:53:30 t 1 1 108937 522 0.00 2019-10-03 06:54:32 2019-10-03 06:54:55 t 1 1 108943 522 0.00 2019-10-03 07:10:02 2019-10-03 07:10:04 t 1 1 108944 516 0.00 2019-10-03 07:06:47 2019-10-03 07:12:30 t 1 1 108951 522 0.00 2019-10-03 07:22:22 2019-10-03 07:22:36 t 1 1 108957 522 0.00 2019-10-03 07:35:14 2019-10-03 07:35:41 t 1 1 108959 522 0.00 2019-10-03 07:41:56 2019-10-03 07:41:56 t 1 1 108963 522 0.00 2019-10-03 07:45:44 2019-10-03 07:45:45 t 1 1 108972 522 0.00 2019-10-03 07:55:28 2019-10-03 07:55:42 t 1 1 108973 436 0.00 2019-10-03 07:56:37 2019-10-03 07:56:37 f 1 1 108976 516 0.00 2019-10-03 07:53:45 2019-10-03 07:57:40 t 1 1 108978 522 0.00 2019-10-03 08:00:32 2019-10-03 08:00:33 t 1 1 108982 522 0.00 2019-10-03 08:10:40 2019-10-03 08:10:43 t 1 1 108988 522 0.00 2019-10-03 08:24:55 2019-10-03 08:24:55 t 1 1 108989 522 0.00 2019-10-03 08:25:42 2019-10-03 08:27:56 t 1 1 108990 522 0.00 2019-10-03 08:28:07 2019-10-03 08:28:11 t 1 1 108991 522 0.00 2019-10-03 08:29:40 2019-10-03 08:29:40 t 1 1 108993 522 0.00 2019-10-03 08:32:34 2019-10-03 08:33:06 t 1 1 108994 522 0.00 2019-10-03 08:33:22 2019-10-03 08:34:23 t 1 1 108996 522 0.00 2019-10-03 08:34:28 2019-10-03 08:34:51 t 1 1 108998 522 0.00 2019-10-03 08:42:44 2019-10-03 08:42:58 t 1 1 109003 522 0.00 2019-10-03 08:44:52 2019-10-03 08:44:55 t 1 1 109004 445 0.00 2019-10-03 07:31:11 2019-10-03 08:56:20 t 1 1 109006 501 0.00 2019-10-03 08:53:55 2019-10-03 09:00:36 t 1 1 109009 445 0.00 2019-10-03 09:01:01 2019-10-03 09:02:45 t 1 1 109018 522 0.00 2019-10-03 09:18:32 2019-10-03 09:19:26 t 1 1 109019 522 0.00 2019-10-03 09:19:50 2019-10-03 09:19:56 t 1 1 109021 522 0.00 2019-10-03 09:20:42 2019-10-03 09:20:43 t 1 1 109023 522 0.00 2019-10-03 09:21:05 2019-10-03 09:21:10 t 1 1 109027 522 0.00 2019-10-03 09:22:20 2019-10-03 09:22:25 t 1 1 109030 522 0.00 2019-10-03 09:23:40 2019-10-03 09:23:49 t 1 1 109032 306 0.00 2019-10-03 09:21:22 2019-10-03 09:24:42 t 1 1 109036 522 0.00 2019-10-03 09:27:52 2019-10-03 09:27:53 t 1 1 109040 220 0.00 2019-10-03 09:28:21 2019-10-03 09:30:04 t 1 1 108900 522 0.00 2019-10-03 05:03:41 2019-10-03 05:03:44 t 1 1 108901 522 0.00 2019-10-03 05:08:46 2019-10-03 05:08:59 t 1 1 108905 522 0.00 2019-10-03 05:27:03 2019-10-03 05:27:16 t 1 1 108910 522 0.00 2019-10-03 05:39:20 2019-10-03 05:39:34 t 1 1 108912 522 0.00 2019-10-03 05:44:23 2019-10-03 05:44:29 t 1 1 108913 498 0.00 2019-10-03 05:24:39 2019-10-03 05:45:33 t 1 2 108914 522 0.00 2019-10-03 05:49:28 2019-10-03 05:49:29 t 1 1 108916 522 0.00 2019-10-03 05:54:34 2019-10-03 05:54:48 t 1 1 108921 520 0.00 2019-10-03 06:01:05 2019-10-03 06:13:42 t 1 1 108922 522 0.00 2019-10-03 06:14:55 2019-10-03 06:14:56 t 1 1 108925 522 0.00 2019-10-03 06:23:59 2019-10-03 06:24:12 t 1 1 108928 522 0.00 2019-10-03 06:34:11 2019-10-03 06:34:12 t 1 1 108930 522 0.00 2019-10-03 06:44:20 2019-10-03 06:45:21 t 1 1 108931 522 0.00 2019-10-03 06:48:09 2019-10-03 06:48:24 t 1 1 108934 522 0.00 2019-10-03 06:49:58 2019-10-03 06:50:10 t 1 1 108935 522 0.00 2019-10-03 06:51:38 2019-10-03 06:51:50 t 1 1 108938 522 0.00 2019-10-03 06:59:35 2019-10-03 06:59:40 t 1 1 108940 522 0.00 2019-10-03 07:04:51 2019-10-03 07:05:03 t 1 1 108942 522 0.00 2019-10-03 07:09:37 2019-10-03 07:09:50 t 1 1 108947 522 0.00 2019-10-03 07:14:56 2019-10-03 07:15:14 t 1 1 108948 516 0.00 2019-10-03 07:12:30 2019-10-03 07:16:11 t 1 1 108950 522 0.00 2019-10-03 07:19:51 2019-10-03 07:19:54 t 1 1 108953 522 0.00 2019-10-03 07:29:18 2019-10-03 07:29:19 t 1 1 108955 522 0.00 2019-10-03 07:30:04 2019-10-03 07:30:13 t 1 1 108958 522 0.00 2019-10-03 07:40:21 2019-10-03 07:40:25 t 1 1 108960 361 0.00 2019-10-03 07:28:58 2019-10-03 07:42:04 t 1 2 108961 306 0.00 2019-10-03 07:22:43 2019-10-03 07:43:59 t 1 1 108964 522 0.00 2019-10-03 07:45:51 2019-10-03 07:45:53 t 1 1 108965 516 0.00 2019-10-03 07:44:47 2019-10-03 07:47:13 t 1 1 108966 516 0.00 2019-10-03 07:47:13 2019-10-03 07:50:08 t 1 1 108967 522 0.00 2019-10-03 07:50:29 2019-10-03 07:50:42 t 1 1 108971 522 0.00 2019-10-03 07:54:33 2019-10-03 07:54:47 t 1 1 108974 436 0.00 2019-10-03 07:56:45 2019-10-03 07:56:45 f 1 1 108975 436 0.00 2019-10-03 07:57:13 2019-10-03 07:57:13 f 1 1 108977 522 0.00 2019-10-03 07:59:38 2019-10-03 07:59:45 t 1 1 108980 522 0.00 2019-10-03 08:05:26 2019-10-03 08:05:47 t 1 1 108984 306 0.00 2019-10-03 08:03:19 2019-10-03 08:16:47 t 1 1 108985 220 0.00 2019-10-03 07:53:04 2019-10-03 08:20:05 t 1 1 108992 522 0.00 2019-10-03 08:31:46 2019-10-03 08:31:52 t 1 1 108995 220 0.00 2019-10-03 08:20:05 2019-10-03 08:34:36 t 1 1 108997 522 0.00 2019-10-03 08:39:33 2019-10-03 08:39:49 t 1 1 108999 522 0.00 2019-10-03 08:43:27 2019-10-03 08:43:41 t 1 1 109001 522 0.00 2019-10-03 08:43:58 2019-10-03 08:43:59 t 1 1 109005 445 0.00 2019-10-03 08:56:57 2019-10-03 09:00:31 t 1 1 109010 522 0.00 2019-10-03 09:03:27 2019-10-03 09:03:42 t 1 1 109011 522 0.00 2019-10-03 09:05:28 2019-10-03 09:05:38 t 1 1 109013 522 0.00 2019-10-03 09:10:33 2019-10-03 09:10:36 t 1 1 109024 501 0.00 2019-10-03 09:19:51 2019-10-03 09:21:33 t 1 1 109025 522 0.00 2019-10-03 09:21:52 2019-10-03 09:21:57 t 1 1 109028 522 0.00 2019-10-03 09:22:40 2019-10-03 09:22:50 t 1 1 109031 451 0.00 2019-10-03 09:02:47 2019-10-03 09:23:58 t 1 1 109033 522 0.00 2019-10-03 09:25:52 2019-10-03 09:26:45 t 1 1 109034 522 0.00 2019-10-03 09:26:51 2019-10-03 09:27:06 t 1 1 109039 522 0.00 2019-10-03 09:30:00 2019-10-03 09:30:03 t 1 1 109042 306 0.00 2019-10-03 09:31:14 2019-10-03 09:32:18 t 1 1 109045 522 0.00 2019-10-03 09:30:24 2019-10-03 09:35:14 t 1 1 109049 327 0.00 2019-10-03 09:35:26 2019-10-03 09:36:31 t 1 1 109051 327 0.00 2019-10-03 09:36:40 2019-10-03 09:36:54 t 1 1 109056 327 0.00 2019-10-03 09:37:03 2019-10-03 09:38:11 t 1 1 109061 501 0.00 2019-10-03 09:39:35 2019-10-03 09:40:47 t 1 1 109065 445 0.00 2019-10-03 09:40:56 2019-10-03 09:42:05 t 1 1 109066 501 0.00 2019-10-03 09:41:32 2019-10-03 09:42:35 t 1 1 109071 327 0.00 2019-10-03 09:44:23 2019-10-03 09:46:17 t 1 1 109073 327 0.00 2019-10-03 09:47:54 2019-10-03 09:49:17 t 1 1 109075 451 0.00 2019-10-03 09:47:43 2019-10-03 09:51:07 t 1 1 109076 327 0.00 2019-10-03 09:51:32 2019-10-03 09:52:08 t 1 1 109077 445 0.00 2019-10-03 09:47:59 2019-10-03 09:54:27 t 1 1 109080 327 0.00 2019-10-03 09:55:09 2019-10-03 09:55:37 t 1 1 109081 327 0.00 2019-10-03 09:56:00 2019-10-03 10:00:20 t 1 1 109082 327 0.00 2019-10-03 10:01:08 2019-10-03 10:01:09 t 1 1 109085 327 0.00 2019-10-03 10:02:08 2019-10-03 10:03:17 t 1 1 109089 327 0.00 2019-10-03 10:02:41 2019-10-03 10:07:43 t 1 1 109092 445 0.00 2019-10-03 10:06:19 2019-10-03 10:10:02 t 1 1 109093 325 0.00 2019-10-03 09:42:44 2019-10-03 10:11:55 t 1 2 109094 327 0.00 2019-10-03 10:09:37 2019-10-03 10:13:37 t 1 1 109095 327 0.00 2019-10-03 10:14:15 2019-10-03 10:15:09 t 1 1 109097 526 0.00 2019-10-03 10:15:54 2019-10-03 10:17:17 t 1 1 109101 445 0.00 2019-10-03 10:11:10 2019-10-03 10:20:48 t 1 1 109104 220 0.00 2019-10-03 10:07:15 2019-10-03 10:25:40 t 1 1 109105 327 0.00 2019-10-03 10:26:07 2019-10-03 10:27:05 t 1 1 109108 412 0.00 2019-10-02 22:46:56 2019-10-03 10:29:00 t 1 1 109112 327 0.00 2019-10-03 10:29:47 2019-10-03 10:32:48 t 1 1 109115 430 0.00 2019-10-03 10:26:12 2019-10-03 10:36:00 t 1 1 109116 327 0.00 2019-10-03 10:34:42 2019-10-03 10:38:17 t 1 1 109118 445 0.00 2019-10-03 10:32:43 2019-10-03 10:40:09 t 1 1 109122 327 0.00 2019-10-03 10:44:17 2019-10-03 10:45:20 t 1 1 109125 327 0.00 2019-10-03 10:45:59 2019-10-03 10:46:49 t 1 1 109126 520 0.00 2019-10-03 10:42:43 2019-10-03 10:47:52 t 1 1 109128 327 0.00 2019-10-03 10:47:15 2019-10-03 10:48:12 t 1 1 109133 430 0.00 2019-10-03 10:52:30 2019-10-03 10:54:17 t 1 1 109139 327 0.00 2019-10-03 11:00:07 2019-10-03 11:01:20 t 1 1 109140 481 0.00 2019-10-03 10:38:45 2019-10-03 11:02:12 t 1 1 109144 456 0.00 2019-10-03 11:05:20 2019-10-03 11:07:39 t 1 1 109145 327 0.00 2019-10-03 11:08:02 2019-10-03 11:08:42 t 1 1 109151 445 0.00 2019-10-03 10:41:05 2019-10-03 11:14:05 t 1 1 109157 445 0.00 2019-10-03 11:16:01 2019-10-03 11:17:41 t 1 1 109163 522 0.00 2019-10-03 11:21:01 2019-10-03 11:21:32 t 1 1 109164 445 0.00 2019-10-03 11:17:48 2019-10-03 11:21:56 t 1 1 109166 445 0.00 2019-10-03 11:21:56 2019-10-03 11:23:18 t 1 1 109172 522 0.00 2019-10-03 11:25:10 2019-10-03 11:25:21 t 1 1 109175 522 0.00 2019-10-03 11:29:50 2019-10-03 11:29:59 t 1 1 109180 520 0.00 2019-10-03 11:23:20 2019-10-03 11:32:08 t 1 1 109181 490 0.00 2019-10-03 11:32:09 2019-10-03 11:33:08 t 1 1 109184 474 0.00 2019-10-03 07:21:33 2019-10-03 11:33:40 t 1 1 109187 501 0.00 2019-10-03 11:34:50 2019-10-03 11:35:26 t 1 1 109191 501 0.00 2019-10-03 11:36:15 2019-10-03 11:36:25 t 1 1 109194 490 0.00 2019-10-03 11:33:08 2019-10-03 11:37:06 t 1 1 108954 522 0.00 2019-10-03 07:29:31 2019-10-03 07:29:33 t 1 1 108956 445 0.00 2019-10-03 04:21:54 2019-10-03 07:30:58 t 1 1 108962 522 0.00 2019-10-03 07:45:17 2019-10-03 07:45:36 t 1 1 108968 522 0.00 2019-10-03 07:50:53 2019-10-03 07:50:56 t 1 1 108969 520 0.00 2019-10-03 07:40:29 2019-10-03 07:52:16 t 1 1 108970 516 0.00 2019-10-03 07:50:08 2019-10-03 07:53:45 t 1 1 108979 516 0.00 2019-10-03 07:57:40 2019-10-03 08:00:46 t 1 1 108981 430 0.00 2019-10-03 08:02:53 2019-10-03 08:06:43 t 1 1 108983 472 0.00 2019-10-03 08:09:17 2019-10-03 08:12:36 t 1 1 108986 522 0.00 2019-10-03 08:12:13 2019-10-03 08:20:55 t 1 1 108987 522 0.00 2019-10-03 08:24:25 2019-10-03 08:24:47 t 1 1 109000 522 0.00 2019-10-03 08:43:49 2019-10-03 08:43:51 t 1 1 109002 522 0.00 2019-10-03 08:44:06 2019-10-03 08:44:14 t 1 1 109007 522 0.00 2019-10-03 08:48:09 2019-10-03 09:00:43 t 1 1 109008 451 0.00 2019-10-03 08:57:40 2019-10-03 09:01:21 t 1 1 109012 481 0.00 2019-10-03 06:45:25 2019-10-03 09:06:46 t 1 1 109014 522 0.00 2019-10-03 09:15:34 2019-10-03 09:16:08 t 1 1 109015 220 0.00 2019-10-03 09:11:41 2019-10-03 09:17:41 t 1 1 109016 522 0.00 2019-10-03 09:17:53 2019-10-03 09:18:06 t 1 1 109017 220 0.00 2019-10-03 09:17:41 2019-10-03 09:18:53 t 1 1 109020 522 0.00 2019-10-03 09:20:02 2019-10-03 09:20:16 t 1 1 109022 220 0.00 2019-10-03 09:18:53 2019-10-03 09:20:52 t 1 1 109026 522 0.00 2019-10-03 09:22:10 2019-10-03 09:22:13 t 1 1 109029 430 0.00 2019-10-03 09:20:53 2019-10-03 09:23:24 t 1 1 109035 522 0.00 2019-10-03 09:27:22 2019-10-03 09:27:36 t 1 1 109037 220 0.00 2019-10-03 09:20:56 2019-10-03 09:27:54 t 1 1 109038 522 0.00 2019-10-03 09:29:32 2019-10-03 09:29:49 t 1 1 109041 306 0.00 2019-10-03 09:28:30 2019-10-03 09:31:12 t 1 1 109043 445 0.00 2019-10-03 09:02:51 2019-10-03 09:33:41 t 1 1 109044 220 0.00 2019-10-03 09:30:15 2019-10-03 09:34:06 t 1 1 109046 220 0.00 2019-10-03 09:34:10 2019-10-03 09:35:17 t 1 1 109047 522 0.00 2019-10-03 09:35:21 2019-10-03 09:35:32 t 1 1 109052 522 0.00 2019-10-03 09:37:22 2019-10-03 09:37:27 t 1 1 109055 306 0.00 2019-10-03 09:32:17 2019-10-03 09:37:59 t 1 1 109057 501 0.00 2019-10-03 09:37:03 2019-10-03 09:38:50 t 1 1 109059 220 0.00 2019-10-03 09:37:37 2019-10-03 09:39:18 t 1 1 109060 327 0.00 2019-10-03 09:39:25 2019-10-03 09:40:29 t 1 1 109063 481 0.00 2019-10-03 09:10:44 2019-10-03 09:41:19 t 1 1 109064 416 0.00 2019-10-03 08:16:34 2019-10-03 09:41:58 t 1 1 109067 327 0.00 2019-10-03 09:42:08 2019-10-03 09:42:56 t 1 1 109068 327 0.00 2019-10-03 09:43:06 2019-10-03 09:43:07 t 1 1 109069 327 0.00 2019-10-03 09:43:14 2019-10-03 09:44:16 t 1 1 109070 327 0.00 2019-10-03 09:45:14 2019-10-03 09:46:17 t 1 1 109072 327 0.00 2019-10-03 09:46:51 2019-10-03 09:46:52 t 1 1 109079 462 0.00 2019-10-03 09:04:28 2019-10-03 09:54:52 t 1 1 109084 445 0.00 2019-10-03 10:02:03 2019-10-03 10:03:07 t 1 1 109088 220 0.00 2019-10-03 09:39:18 2019-10-03 10:07:29 t 1 1 109098 327 0.00 2019-10-03 10:15:47 2019-10-03 10:18:04 t 1 1 109099 327 0.00 2019-10-03 10:18:42 2019-10-03 10:19:22 t 1 1 109102 445 0.00 2019-10-03 10:20:47 2019-10-03 10:22:51 t 1 1 109103 327 0.00 2019-10-03 10:21:09 2019-10-03 10:25:25 t 1 1 109109 327 0.00 2019-10-03 10:27:46 2019-10-03 10:29:14 t 1 1 109110 445 0.00 2019-10-03 10:25:15 2019-10-03 10:31:47 t 1 1 109111 445 0.00 2019-10-03 10:31:47 2019-10-03 10:32:44 t 1 1 109114 220 0.00 2019-10-03 10:25:48 2019-10-03 10:35:08 t 1 1 109117 327 0.00 2019-10-03 10:38:49 2019-10-03 10:39:29 t 1 1 109119 327 0.00 2019-10-03 10:40:01 2019-10-03 10:42:47 t 1 1 109120 327 0.00 2019-10-03 10:43:19 2019-10-03 10:43:27 t 1 1 109121 327 0.00 2019-10-03 10:43:58 2019-10-03 10:45:00 t 1 1 109130 327 0.00 2019-10-03 10:50:00 2019-10-03 10:50:34 t 1 1 109131 430 0.00 2019-10-03 10:36:00 2019-10-03 10:51:19 t 1 1 109135 220 0.00 2019-10-03 10:52:53 2019-10-03 10:55:29 t 1 1 109141 522 0.00 2019-10-03 10:48:46 2019-10-03 11:02:27 t 1 1 109142 327 0.00 2019-10-03 11:01:52 2019-10-03 11:03:46 t 1 1 109143 327 0.00 2019-10-03 11:04:27 2019-10-03 11:07:27 t 1 1 109147 522 0.00 2019-10-03 11:10:40 2019-10-03 11:10:53 t 1 1 109149 520 0.00 2019-10-03 11:09:07 2019-10-03 11:11:43 t 1 1 109150 522 0.00 2019-10-03 11:11:58 2019-10-03 11:12:04 t 1 1 109155 327 0.00 2019-10-03 11:14:41 2019-10-03 11:16:14 t 1 1 109158 327 0.00 2019-10-03 11:18:11 2019-10-03 11:19:26 t 1 1 109160 522 0.00 2019-10-03 11:20:25 2019-10-03 11:20:38 t 1 1 109161 522 0.00 2019-10-03 11:20:46 2019-10-03 11:20:53 t 1 1 109162 327 0.00 2019-10-03 11:20:52 2019-10-03 11:21:24 t 1 1 109165 327 0.00 2019-10-03 11:22:10 2019-10-03 11:23:07 t 1 1 109167 522 0.00 2019-10-03 11:21:44 2019-10-03 11:24:31 t 1 1 109171 327 0.00 2019-10-03 11:23:44 2019-10-03 11:25:15 t 1 1 109173 327 0.00 2019-10-03 11:25:50 2019-10-03 11:25:51 t 1 1 109176 522 0.00 2019-10-03 11:30:15 2019-10-03 11:30:23 t 1 1 109178 327 0.00 2019-10-03 11:27:54 2019-10-03 11:31:54 t 1 1 109179 501 0.00 2019-10-03 11:31:54 2019-10-03 11:32:02 t 1 1 109183 501 0.00 2019-10-03 11:32:37 2019-10-03 11:33:36 t 1 1 109185 501 0.00 2019-10-03 11:33:41 2019-10-03 11:33:50 t 1 1 109186 327 0.00 2019-10-03 11:34:36 2019-10-03 11:35:11 t 1 1 109188 327 0.00 2019-10-03 11:35:40 2019-10-03 11:35:41 t 1 1 109192 501 0.00 2019-10-03 11:36:34 2019-10-03 11:36:49 t 1 1 109198 430 0.00 2019-10-03 11:05:19 2019-10-03 11:40:18 t 1 1 109199 445 0.00 2019-10-03 11:40:07 2019-10-03 11:41:02 t 1 1 109200 327 0.00 2019-10-03 11:37:42 2019-10-03 11:43:29 t 1 1 109201 327 0.00 2019-10-03 11:43:39 2019-10-03 11:44:14 t 1 1 109204 522 0.00 2019-10-03 11:46:16 2019-10-03 11:46:17 t 1 1 109207 522 0.00 2019-10-03 11:46:24 2019-10-03 11:46:51 t 1 1 109208 522 0.00 2019-10-03 11:47:23 2019-10-03 11:47:34 t 1 1 109209 306 0.00 2019-10-03 11:43:04 2019-10-03 11:48:00 t 1 1 109210 451 0.00 2019-10-03 11:26:35 2019-10-03 11:49:05 t 1 1 109216 430 0.00 2019-10-03 11:51:50 2019-10-03 11:53:33 t 1 1 109217 416 0.00 2019-10-03 11:41:14 2019-10-03 11:54:38 t 1 1 109218 422 0.00 2019-10-03 10:55:43 2019-10-03 11:55:26 t 1 1 109220 481 0.00 2019-10-03 11:02:12 2019-10-03 11:59:20 t 1 1 109223 430 0.00 2019-10-03 11:54:27 2019-10-03 12:03:43 t 1 1 109235 445 0.00 2019-10-03 12:16:02 2019-10-03 12:17:39 t 1 1 109236 412 0.00 2019-10-03 10:29:00 2019-10-03 12:18:11 t 1 1 109239 445 0.00 2019-10-03 12:18:50 2019-10-03 12:20:38 t 1 1 109242 220 0.00 2019-10-03 12:06:34 2019-10-03 12:24:17 t 1 1 109244 445 0.00 2019-10-03 12:20:52 2019-10-03 12:27:34 t 1 1 109245 430 0.00 2019-10-03 12:28:18 2019-10-03 12:28:28 t 1 1 109246 445 0.00 2019-10-03 12:27:34 2019-10-03 12:29:40 t 1 1 109252 327 0.00 2019-10-03 12:33:25 2019-10-03 12:37:04 t 1 1 109048 522 0.00 2019-10-03 09:35:39 2019-10-03 09:35:44 t 1 1 109050 445 0.00 2019-10-03 09:33:50 2019-10-03 09:36:31 t 1 1 109053 220 0.00 2019-10-03 09:35:17 2019-10-03 09:37:37 t 1 1 109054 522 0.00 2019-10-03 09:37:55 2019-10-03 09:37:57 t 1 1 109058 522 0.00 2019-10-03 09:38:26 2019-10-03 09:39:05 t 1 1 109062 501 0.00 2019-10-03 09:40:53 2019-10-03 09:41:01 t 1 1 109074 327 0.00 2019-10-03 09:49:39 2019-10-03 09:50:28 t 1 1 109078 327 0.00 2019-10-03 09:52:33 2019-10-03 09:54:38 t 1 1 109083 445 0.00 2019-10-03 09:56:21 2019-10-03 10:01:57 t 1 1 109086 306 0.00 2019-10-03 10:02:08 2019-10-03 10:03:55 t 1 1 109087 445 0.00 2019-10-03 10:05:05 2019-10-03 10:06:19 t 1 1 109090 416 0.00 2019-10-03 09:42:23 2019-10-03 10:07:49 t 1 1 109091 327 0.00 2019-10-03 10:08:02 2019-10-03 10:08:49 t 1 1 109096 526 0.00 2019-10-03 10:16:35 2019-10-03 10:16:49 t 1 1 109100 327 0.00 2019-10-03 10:19:59 2019-10-03 10:20:31 t 1 1 109106 516 0.00 2019-10-03 10:20:54 2019-10-03 10:27:37 t 1 1 109107 520 0.00 2019-10-03 10:19:25 2019-10-03 10:28:15 t 1 1 109113 327 0.00 2019-10-03 10:33:29 2019-10-03 10:34:02 t 1 1 109123 451 0.00 2019-10-03 10:39:09 2019-10-03 10:45:36 t 1 1 109124 220 0.00 2019-10-03 10:35:33 2019-10-03 10:46:28 t 1 1 109127 522 0.00 2019-10-03 10:46:38 2019-10-03 10:47:52 t 1 1 109129 327 0.00 2019-10-03 10:48:22 2019-10-03 10:49:19 t 1 1 109132 327 0.00 2019-10-03 10:51:07 2019-10-03 10:53:32 t 1 1 109134 327 0.00 2019-10-03 10:54:29 2019-10-03 10:55:02 t 1 1 109136 327 0.00 2019-10-03 10:55:44 2019-10-03 10:56:58 t 1 1 109137 327 0.00 2019-10-03 10:57:43 2019-10-03 10:58:28 t 1 1 109138 327 0.00 2019-10-03 10:59:09 2019-10-03 10:59:42 t 1 1 109146 522 0.00 2019-10-03 11:02:27 2019-10-03 11:09:40 t 1 1 109148 327 0.00 2019-10-03 11:09:24 2019-10-03 11:11:30 t 1 1 109152 327 0.00 2019-10-03 11:12:11 2019-10-03 11:14:07 t 1 1 109153 445 0.00 2019-10-03 11:14:09 2019-10-03 11:15:12 t 1 1 109154 445 0.00 2019-10-03 11:15:12 2019-10-03 11:16:01 t 1 1 109156 327 0.00 2019-10-03 11:16:51 2019-10-03 11:16:52 t 1 1 109159 327 0.00 2019-10-03 11:19:43 2019-10-03 11:20:27 t 1 1 109168 522 0.00 2019-10-03 11:24:39 2019-10-03 11:24:55 t 1 1 109169 516 0.00 2019-10-03 11:22:52 2019-10-03 11:25:01 t 1 1 109170 445 0.00 2019-10-03 11:23:34 2019-10-03 11:25:11 t 1 1 109174 327 0.00 2019-10-03 11:26:19 2019-10-03 11:27:18 t 1 1 109177 501 0.00 2019-10-03 11:29:53 2019-10-03 11:31:48 t 1 1 109182 327 0.00 2019-10-03 11:32:35 2019-10-03 11:33:20 t 1 1 109189 327 0.00 2019-10-03 11:35:49 2019-10-03 11:35:50 t 1 1 109190 327 0.00 2019-10-03 11:35:57 2019-10-03 11:35:58 t 1 1 109193 327 0.00 2019-10-03 11:36:19 2019-10-03 11:37:01 t 1 1 109195 327 0.00 2019-10-03 11:36:06 2019-10-03 11:37:18 t 1 1 109203 522 0.00 2019-10-03 11:44:55 2019-10-03 11:45:04 t 1 1 109205 327 0.00 2019-10-03 11:45:57 2019-10-03 11:46:25 t 1 1 109211 522 0.00 2019-10-03 11:49:14 2019-10-03 11:49:37 t 1 1 109212 327 0.00 2019-10-03 11:46:34 2019-10-03 11:50:04 t 1 1 109213 327 0.00 2019-10-03 11:50:28 2019-10-03 11:51:09 t 1 1 109221 522 0.00 2019-10-03 11:59:42 2019-10-03 11:59:54 t 1 1 109224 220 0.00 2019-10-03 12:03:50 2019-10-03 12:06:35 t 1 1 109225 422 0.00 2019-10-03 11:55:26 2019-10-03 12:08:41 t 1 1 109226 327 0.00 2019-10-03 12:02:15 2019-10-03 12:09:07 t 1 1 109227 306 0.00 2019-10-03 11:47:59 2019-10-03 12:10:40 t 1 1 109228 522 0.00 2019-10-03 12:10:46 2019-10-03 12:10:57 t 1 1 109230 451 0.00 2019-10-03 12:01:40 2019-10-03 12:12:08 t 1 1 109233 451 0.00 2019-10-03 12:12:08 2019-10-03 12:13:55 t 1 1 109241 327 0.00 2019-10-03 12:19:03 2019-10-03 12:24:00 t 1 1 109243 522 0.00 2019-10-03 12:24:18 2019-10-03 12:24:26 t 1 1 109250 522 0.00 2019-10-03 12:34:18 2019-10-03 12:34:27 t 1 1 109260 481 0.00 2019-10-03 12:46:36 2019-10-03 12:47:39 t 1 1 109269 522 0.00 2019-10-03 12:59:32 2019-10-03 12:59:35 t 1 1 109271 522 0.00 2019-10-03 13:00:56 2019-10-03 13:01:15 t 1 1 109273 522 0.00 2019-10-03 13:06:13 2019-10-03 13:07:00 t 1 1 109276 470 0.00 2019-10-03 12:39:46 2019-10-03 13:08:44 t 1 1 109278 522 0.00 2019-10-03 13:08:57 2019-10-03 13:10:18 t 1 1 109280 412 0.00 2019-10-03 12:44:58 2019-10-03 13:11:01 t 1 1 109281 220 0.00 2019-10-03 12:24:56 2019-10-03 13:11:11 t 1 1 109284 220 0.00 2019-10-03 13:12:15 2019-10-03 13:12:47 t 1 1 109288 220 0.00 2019-10-03 13:14:30 2019-10-03 13:15:05 t 1 1 109289 220 0.00 2019-10-03 13:15:04 2019-10-03 13:16:23 t 1 1 109293 220 0.00 2019-10-03 13:16:23 2019-10-03 13:16:58 t 1 1 109298 522 0.00 2019-10-03 13:18:30 2019-10-03 13:18:44 t 1 1 109301 490 0.00 2019-10-03 13:02:47 2019-10-03 13:22:54 t 1 1 109303 522 0.00 2019-10-03 13:25:21 2019-10-03 13:25:23 t 1 1 109307 416 0.00 2019-10-03 13:26:12 2019-10-03 13:31:02 t 1 1 109308 422 0.00 2019-10-03 13:25:40 2019-10-03 13:32:04 t 1 1 109313 422 0.00 2019-10-03 13:32:04 2019-10-03 13:37:27 t 1 1 109316 508 0.00 2019-10-03 12:44:55 2019-10-03 13:38:42 t 1 2 109318 522 0.00 2019-10-03 13:40:04 2019-10-03 13:40:28 t 1 1 109322 522 0.00 2019-10-03 13:43:49 2019-10-03 13:44:02 t 1 1 109323 474 0.00 2019-10-03 11:36:05 2019-10-03 13:46:56 t 1 1 109326 306 0.00 2019-10-03 13:37:53 2019-10-03 13:48:56 t 1 1 109332 306 0.00 2019-10-03 13:48:56 2019-10-03 13:55:10 t 1 1 109333 522 0.00 2019-10-03 13:54:53 2019-10-03 13:56:02 t 1 1 109335 306 0.00 2019-10-03 13:55:10 2019-10-03 13:59:38 t 1 1 109347 306 0.00 2019-10-03 14:14:31 2019-10-03 14:17:55 t 1 1 109348 456 0.00 2019-10-03 14:19:37 2019-10-03 14:20:58 t 1 1 109351 501 0.00 2019-10-03 14:21:55 2019-10-03 14:33:16 t 1 1 109352 516 0.00 2019-10-03 14:26:47 2019-10-03 14:35:16 t 1 1 109355 522 0.00 2019-10-03 14:35:31 2019-10-03 14:42:48 t 1 1 109358 522 0.00 2019-10-03 14:48:42 2019-10-03 14:49:19 t 1 1 109359 501 0.00 2019-10-03 14:50:07 2019-10-03 14:51:40 t 1 1 109369 522 0.00 2019-10-03 15:08:44 2019-10-03 15:08:45 t 1 1 109371 412 0.00 2019-10-03 14:33:56 2019-10-03 15:09:36 t 1 1 109374 522 0.00 2019-10-03 15:08:52 2019-10-03 15:11:18 t 1 1 109381 306 0.00 2019-10-03 15:18:47 2019-10-03 15:21:30 t 1 1 109383 306 0.00 2019-10-03 15:21:30 2019-10-03 15:26:22 t 1 1 109388 306 0.00 2019-10-03 15:32:14 2019-10-03 15:36:20 t 1 1 109390 481 0.00 2019-10-03 15:03:08 2019-10-03 15:45:06 t 1 1 109391 422 0.00 2019-10-03 13:52:06 2019-10-03 15:46:50 t 1 1 109394 306 0.00 2019-10-03 15:36:20 2019-10-03 15:57:46 t 1 1 109399 488 0.00 2019-10-03 15:58:32 2019-10-03 16:06:59 t 1 1 109403 481 0.00 2019-10-03 16:00:16 2019-10-03 16:34:08 t 1 1 109404 522 0.00 2019-10-03 15:59:44 2019-10-03 16:37:00 t 1 1 109405 296 0.00 2019-10-03 16:16:49 2019-10-03 16:38:26 t 1 2 109409 451 0.00 2019-10-03 16:31:00 2019-10-03 16:46:00 t 1 1 109196 445 0.00 2019-10-03 11:25:10 2019-10-03 11:39:28 t 1 1 109197 445 0.00 2019-10-03 11:39:05 2019-10-03 11:39:59 t 1 1 109202 501 0.00 2019-10-03 11:37:04 2019-10-03 11:44:35 t 1 1 109206 430 0.00 2019-10-03 11:40:18 2019-10-03 11:46:43 t 1 1 109214 430 0.00 2019-10-03 11:46:48 2019-10-03 11:51:45 t 1 1 109215 327 0.00 2019-10-03 11:51:24 2019-10-03 11:52:18 t 1 1 109219 451 0.00 2019-10-03 11:49:05 2019-10-03 11:59:01 t 1 1 109222 522 0.00 2019-10-03 12:02:19 2019-10-03 12:02:31 t 1 1 109229 430 0.00 2019-10-03 12:03:46 2019-10-03 12:11:59 t 1 1 109231 416 0.00 2019-10-03 11:56:30 2019-10-03 12:12:56 t 1 1 109232 445 0.00 2019-10-03 11:41:08 2019-10-03 12:13:13 t 1 1 109234 445 0.00 2019-10-03 12:14:32 2019-10-03 12:15:52 t 1 1 109237 422 0.00 2019-10-03 12:08:41 2019-10-03 12:18:20 t 1 1 109238 445 0.00 2019-10-03 12:17:54 2019-10-03 12:18:50 t 1 1 109240 522 0.00 2019-10-03 12:21:20 2019-10-03 12:21:28 t 1 1 109247 522 0.00 2019-10-03 12:31:11 2019-10-03 12:31:59 t 1 1 109248 522 0.00 2019-10-03 12:32:59 2019-10-03 12:33:00 t 1 1 109249 522 0.00 2019-10-03 12:33:06 2019-10-03 12:33:33 t 1 1 109251 522 0.00 2019-10-03 12:36:08 2019-10-03 12:36:27 t 1 1 109253 470 0.00 2019-10-03 12:34:17 2019-10-03 12:39:46 t 1 1 109255 481 0.00 2019-10-03 11:59:19 2019-10-03 12:43:29 t 1 1 109256 522 0.00 2019-10-03 12:43:30 2019-10-03 12:44:44 t 1 1 109258 462 0.00 2019-10-03 12:30:52 2019-10-03 12:46:50 t 1 1 109259 522 0.00 2019-10-03 12:46:38 2019-10-03 12:47:39 t 1 1 109262 327 0.00 2019-10-03 12:46:59 2019-10-03 12:49:53 t 1 1 109263 461 0.00 2019-10-03 08:43:56 2019-10-03 12:50:19 t 1 2 109264 522 0.00 2019-10-03 12:52:20 2019-10-03 12:52:33 t 1 1 109265 416 0.00 2019-10-03 12:50:35 2019-10-03 12:55:22 t 1 1 109267 416 0.00 2019-10-03 12:54:35 2019-10-03 12:58:52 t 1 1 109272 522 0.00 2019-10-03 13:05:29 2019-10-03 13:05:39 t 1 1 109274 522 0.00 2019-10-03 13:07:05 2019-10-03 13:07:36 t 1 1 109275 522 0.00 2019-10-03 13:08:11 2019-10-03 13:08:15 t 1 1 109277 306 0.00 2019-10-03 12:49:09 2019-10-03 13:08:55 t 1 1 109285 220 0.00 2019-10-03 13:12:47 2019-10-03 13:13:11 t 1 1 109287 220 0.00 2019-10-03 13:13:36 2019-10-03 13:14:30 t 1 1 109291 522 0.00 2019-10-03 13:16:23 2019-10-03 13:16:32 t 1 1 109292 306 0.00 2019-10-03 13:08:55 2019-10-03 13:16:50 t 1 1 109295 395 0.00 2019-10-03 13:16:46 2019-10-03 13:17:21 t 1 2 109296 522 0.00 2019-10-03 13:17:45 2019-10-03 13:18:05 t 1 1 109299 522 0.00 2019-10-03 13:19:18 2019-10-03 13:20:17 t 1 1 109302 220 0.00 2019-10-03 13:18:21 2019-10-03 13:24:50 t 1 1 109306 516 0.00 2019-10-03 13:15:46 2019-10-03 13:27:59 t 1 1 109310 220 0.00 2019-10-03 13:24:49 2019-10-03 13:35:21 t 1 1 109312 490 0.00 2019-10-03 13:22:54 2019-10-03 13:36:18 t 1 1 109314 306 0.00 2019-10-03 13:28:05 2019-10-03 13:37:53 t 1 1 109315 361 0.00 2019-10-03 13:32:10 2019-10-03 13:38:06 t 1 2 109317 522 0.00 2019-10-03 13:29:15 2019-10-03 13:39:55 t 1 1 109320 522 0.00 2019-10-03 13:41:44 2019-10-03 13:41:54 t 1 1 109324 522 0.00 2019-10-03 13:45:33 2019-10-03 13:46:58 t 1 1 109327 490 0.00 2019-10-03 13:36:18 2019-10-03 13:50:56 t 1 1 109331 522 0.00 2019-10-03 13:53:53 2019-10-03 13:54:12 t 1 1 109334 522 0.00 2019-10-03 13:58:39 2019-10-03 13:59:07 t 1 1 109336 522 0.00 2019-10-03 14:00:22 2019-10-03 14:00:45 t 1 1 109337 522 0.00 2019-10-03 14:00:57 2019-10-03 14:00:59 t 1 1 109338 445 0.00 2019-10-03 13:51:48 2019-10-03 14:02:51 t 1 1 109341 306 0.00 2019-10-03 13:59:38 2019-10-03 14:05:19 t 1 1 109344 306 0.00 2019-10-03 14:05:19 2019-10-03 14:14:31 t 1 1 109346 522 0.00 2019-10-03 14:17:48 2019-10-03 14:17:48 t 1 1 109349 516 0.00 2019-10-03 14:13:09 2019-10-03 14:26:47 t 1 1 109350 522 0.00 2019-10-03 14:18:13 2019-10-03 14:26:59 t 1 1 109354 296 0.00 2019-10-03 14:30:12 2019-10-03 14:37:35 t 1 2 109357 501 0.00 2019-10-03 14:33:16 2019-10-03 14:49:07 t 1 1 109360 518 0.00 2019-10-03 14:12:36 2019-10-03 14:52:42 t 1 2 109361 522 0.00 2019-10-03 14:50:38 2019-10-03 14:56:15 t 1 1 109362 361 0.00 2019-10-03 14:20:40 2019-10-03 14:58:42 t 1 2 109366 474 0.00 2019-10-03 13:46:55 2019-10-03 15:02:15 t 1 1 109368 522 0.00 2019-10-03 15:05:57 2019-10-03 15:06:28 t 1 1 109372 522 0.00 2019-10-03 15:09:40 2019-10-03 15:09:51 t 1 1 109373 412 0.00 2019-10-03 15:09:35 2019-10-03 15:10:47 t 1 1 109375 522 0.00 2019-10-03 15:10:48 2019-10-03 15:11:30 t 1 1 109376 412 0.00 2019-10-03 15:11:22 2019-10-03 15:12:28 t 1 1 109378 451 0.00 2019-10-03 15:10:51 2019-10-03 15:16:57 t 1 1 109380 306 0.00 2019-10-03 14:47:13 2019-10-03 15:18:47 t 1 1 109389 516 0.00 2019-10-03 15:34:49 2019-10-03 15:38:10 t 1 1 109395 488 0.00 2019-10-03 15:46:58 2019-10-03 15:58:32 t 1 1 109396 522 0.00 2019-10-03 15:50:39 2019-10-03 15:59:44 t 1 1 109398 481 0.00 2019-10-03 15:47:12 2019-10-03 16:00:16 t 1 1 109400 451 0.00 2019-10-03 16:06:47 2019-10-03 16:08:04 t 1 1 109402 306 0.00 2019-10-03 16:15:13 2019-10-03 16:19:05 t 1 1 109406 220 0.00 2019-10-03 16:37:47 2019-10-03 16:39:10 t 1 2 109407 481 0.00 2019-10-03 16:36:54 2019-10-03 16:42:20 t 1 1 109408 220 0.00 2019-10-03 16:30:45 2019-10-03 16:42:38 t 1 1 109410 461 0.00 2019-10-03 14:46:36 2019-10-03 16:46:10 t 1 2 109413 474 0.00 2019-10-03 16:47:25 2019-10-03 16:55:05 t 1 1 109415 445 0.00 2019-10-03 14:05:40 2019-10-03 16:57:41 t 1 1 109416 416 0.00 2019-10-03 13:36:28 2019-10-03 17:01:22 t 1 1 109417 481 0.00 2019-10-03 16:42:38 2019-10-03 17:07:03 t 1 1 109419 516 0.00 2019-10-03 17:09:05 2019-10-03 17:13:38 t 1 1 109424 306 0.00 2019-10-03 17:23:48 2019-10-03 17:25:23 t 1 1 109425 220 0.00 2019-10-03 17:25:36 2019-10-03 17:25:51 t 1 2 109427 528 0.00 2019-10-03 17:26:12 2019-10-03 17:29:54 t 1 1 109429 470 0.00 2019-10-03 16:14:30 2019-10-03 17:30:07 t 1 1 109433 528 0.00 2019-10-03 17:36:03 2019-10-03 17:36:35 t 1 1 109441 220 0.00 2019-10-03 17:58:02 2019-10-03 17:59:05 t 1 1 109445 512 0.00 2019-10-03 18:00:29 2019-10-03 18:09:48 t 1 1 109448 516 0.00 2019-10-03 18:10:00 2019-10-03 18:13:56 t 1 1 109450 327 0.00 2019-10-03 18:12:37 2019-10-03 18:14:21 t 1 1 109451 445 0.00 2019-10-03 17:50:46 2019-10-03 18:15:02 t 1 1 109453 520 0.00 2019-10-03 17:34:36 2019-10-03 18:16:17 t 1 1 109455 508 0.00 2019-10-03 18:12:49 2019-10-03 18:18:09 t 1 2 109457 516 0.00 2019-10-03 18:17:27 2019-10-03 18:19:45 t 1 1 109460 470 0.00 2019-10-03 18:20:05 2019-10-03 18:21:06 t 1 1 109462 470 0.00 2019-10-03 18:21:06 2019-10-03 18:21:55 t 1 1 109470 522 0.00 2019-10-03 18:29:34 2019-10-03 18:29:36 t 1 1 109477 522 0.00 2019-10-03 18:32:48 2019-10-03 18:33:24 t 1 1 109479 522 0.00 2019-10-03 18:34:13 2019-10-03 18:34:50 t 1 1 109483 451 0.00 2019-10-03 18:25:54 2019-10-03 18:36:08 t 1 1 109254 516 0.00 2019-10-03 12:16:41 2019-10-03 12:40:26 t 1 1 109257 412 0.00 2019-10-03 12:39:49 2019-10-03 12:44:58 t 1 1 109261 416 0.00 2019-10-03 12:12:56 2019-10-03 12:49:53 t 1 1 109266 522 0.00 2019-10-03 12:57:55 2019-10-03 12:58:01 t 1 1 109268 522 0.00 2019-10-03 12:59:11 2019-10-03 12:59:19 t 1 1 109270 327 0.00 2019-10-03 12:59:19 2019-10-03 12:59:52 t 1 1 109279 327 0.00 2019-10-03 13:09:49 2019-10-03 13:10:23 t 1 1 109282 522 0.00 2019-10-03 13:11:10 2019-10-03 13:11:26 t 1 1 109283 220 0.00 2019-10-03 13:11:11 2019-10-03 13:12:15 t 1 1 109286 220 0.00 2019-10-03 13:13:19 2019-10-03 13:13:27 t 1 1 109290 395 0.00 2019-10-03 13:15:22 2019-10-03 13:16:25 t 1 2 109294 522 0.00 2019-10-03 13:16:44 2019-10-03 13:16:58 t 1 1 109297 220 0.00 2019-10-03 13:16:58 2019-10-03 13:18:21 t 1 1 109300 306 0.00 2019-10-03 13:16:50 2019-10-03 13:21:36 t 1 1 109304 422 0.00 2019-10-03 12:18:20 2019-10-03 13:25:40 t 1 1 109305 416 0.00 2019-10-03 12:59:06 2019-10-03 13:26:06 t 1 1 109309 361 0.00 2019-10-03 12:38:01 2019-10-03 13:33:06 t 1 2 109311 416 0.00 2019-10-03 13:31:08 2019-10-03 13:36:14 t 1 1 109319 470 0.00 2019-10-03 13:08:44 2019-10-03 13:40:47 t 1 1 109321 522 0.00 2019-10-03 13:42:54 2019-10-03 13:43:54 t 1 1 109325 445 0.00 2019-10-03 12:29:40 2019-10-03 13:48:55 t 1 1 109328 445 0.00 2019-10-03 13:48:55 2019-10-03 13:51:48 t 1 1 109329 422 0.00 2019-10-03 13:37:27 2019-10-03 13:52:06 t 1 1 109330 522 0.00 2019-10-03 13:52:12 2019-10-03 13:52:32 t 1 1 109339 522 0.00 2019-10-03 14:02:02 2019-10-03 14:03:43 t 1 1 109340 522 0.00 2019-10-03 14:04:07 2019-10-03 14:04:14 t 1 1 109342 522 0.00 2019-10-03 14:05:03 2019-10-03 14:05:28 t 1 1 109343 522 0.00 2019-10-03 14:10:09 2019-10-03 14:10:12 t 1 1 109345 522 0.00 2019-10-03 14:15:13 2019-10-03 14:15:13 t 1 1 109353 522 0.00 2019-10-03 14:26:59 2019-10-03 14:35:31 t 1 1 109356 522 0.00 2019-10-03 14:43:06 2019-10-03 14:44:02 t 1 1 109363 522 0.00 2019-10-03 15:00:13 2019-10-03 15:00:14 t 1 1 109364 522 0.00 2019-10-03 15:00:26 2019-10-03 15:00:58 t 1 1 109365 522 0.00 2019-10-03 15:01:03 2019-10-03 15:02:00 t 1 1 109367 481 0.00 2019-10-03 12:52:17 2019-10-03 15:03:06 t 1 1 109370 522 0.00 2019-10-03 15:09:34 2019-10-03 15:09:34 t 1 1 109377 412 0.00 2019-10-03 15:14:31 2019-10-03 15:16:56 t 1 1 109379 220 0.00 2019-10-03 15:16:01 2019-10-03 15:17:35 t 1 1 109382 412 0.00 2019-10-03 15:18:42 2019-10-03 15:25:43 t 1 1 109384 516 0.00 2019-10-03 15:21:23 2019-10-03 15:30:39 t 1 1 109385 306 0.00 2019-10-03 15:26:22 2019-10-03 15:32:14 t 1 1 109386 361 0.00 2019-10-03 15:17:58 2019-10-03 15:33:38 t 1 2 109387 522 0.00 2019-10-03 15:11:41 2019-10-03 15:35:32 t 1 1 109392 481 0.00 2019-10-03 15:45:58 2019-10-03 15:47:03 t 1 1 109393 522 0.00 2019-10-03 15:35:32 2019-10-03 15:50:39 t 1 1 109397 520 0.00 2019-10-03 15:52:02 2019-10-03 15:59:57 t 1 1 109401 470 0.00 2019-10-03 13:40:47 2019-10-03 16:14:30 t 1 1 109411 512 0.00 2019-10-03 16:41:57 2019-10-03 16:47:06 t 1 1 109412 451 0.00 2019-10-03 16:46:00 2019-10-03 16:48:41 t 1 1 109418 508 0.00 2019-10-03 16:22:34 2019-10-03 17:13:21 t 1 2 109423 306 0.00 2019-10-03 17:13:41 2019-10-03 17:21:37 t 1 1 109430 528 0.00 2019-10-03 17:30:06 2019-10-03 17:30:32 t 1 1 109435 220 0.00 2019-10-03 17:26:14 2019-10-03 17:44:51 t 1 1 109437 468 0.00 2019-10-03 17:40:13 2019-10-03 17:47:29 t 1 1 109438 445 0.00 2019-10-03 17:32:56 2019-10-03 17:50:47 t 1 1 109440 220 0.00 2019-10-03 17:44:50 2019-10-03 17:57:49 t 1 1 109443 522 0.00 2019-10-03 18:01:28 2019-10-03 18:03:26 t 1 1 109444 220 0.00 2019-10-03 18:02:00 2019-10-03 18:05:46 t 1 1 109449 522 0.00 2019-10-03 18:04:30 2019-10-03 18:13:59 t 1 1 109456 327 0.00 2019-10-03 18:15:03 2019-10-03 18:18:42 t 1 1 109459 522 0.00 2019-10-03 18:19:10 2019-10-03 18:20:20 t 1 1 109467 522 0.00 2019-10-03 18:27:35 2019-10-03 18:28:19 t 1 1 109472 522 0.00 2019-10-03 18:29:53 2019-10-03 18:30:24 t 1 1 109473 522 0.00 2019-10-03 18:30:31 2019-10-03 18:31:07 t 1 1 109476 306 0.00 2019-10-03 18:18:11 2019-10-03 18:32:42 t 1 1 109481 522 0.00 2019-10-03 18:35:12 2019-10-03 18:35:27 t 1 1 109482 522 0.00 2019-10-03 18:35:27 2019-10-03 18:36:03 t 1 1 109484 416 0.00 2019-10-03 17:01:22 2019-10-03 18:36:15 t 1 1 109486 470 0.00 2019-10-03 18:22:58 2019-10-03 18:36:25 t 1 1 109488 522 0.00 2019-10-03 18:36:09 2019-10-03 18:36:45 t 1 1 109491 470 0.00 2019-10-03 18:36:39 2019-10-03 18:37:43 t 1 1 109492 522 0.00 2019-10-03 18:37:33 2019-10-03 18:38:10 t 1 1 109494 470 0.00 2019-10-03 18:37:48 2019-10-03 18:38:53 t 1 1 109496 470 0.00 2019-10-03 18:38:58 2019-10-03 18:40:02 t 1 1 109499 522 0.00 2019-10-03 18:41:02 2019-10-03 18:42:41 t 1 1 109500 522 0.00 2019-10-03 18:42:47 2019-10-03 18:42:59 t 1 1 109508 522 0.00 2019-10-03 18:46:17 2019-10-03 18:46:55 t 1 1 109509 522 0.00 2019-10-03 18:47:01 2019-10-03 18:47:40 t 1 1 109511 522 0.00 2019-10-03 18:47:46 2019-10-03 18:47:56 t 1 1 109513 522 0.00 2019-10-03 18:48:15 2019-10-03 18:48:52 t 1 1 109514 470 0.00 2019-10-03 18:47:59 2019-10-03 18:49:03 t 1 1 109516 522 0.00 2019-10-03 18:50:38 2019-10-03 18:51:12 t 1 1 109518 522 0.00 2019-10-03 18:51:20 2019-10-03 18:51:33 t 1 1 109525 490 0.00 2019-10-03 18:39:13 2019-10-03 18:53:27 t 1 1 109526 522 0.00 2019-10-03 18:53:28 2019-10-03 18:53:29 t 1 1 109530 522 0.00 2019-10-03 18:54:44 2019-10-03 18:54:48 t 1 1 109538 522 0.00 2019-10-03 18:58:36 2019-10-03 18:58:38 t 1 1 109542 522 0.00 2019-10-03 18:59:45 2019-10-03 19:00:16 t 1 1 109543 522 0.00 2019-10-03 19:00:34 2019-10-03 19:00:59 t 1 1 109546 522 0.00 2019-10-03 19:01:46 2019-10-03 19:02:13 t 1 1 109548 522 0.00 2019-10-03 19:02:28 2019-10-03 19:03:13 t 1 1 109549 522 0.00 2019-10-03 19:03:34 2019-10-03 19:03:55 t 1 1 109550 522 0.00 2019-10-03 19:02:19 2019-10-03 19:04:20 t 1 1 109553 306 0.00 2019-10-03 19:03:24 2019-10-03 19:05:32 t 1 1 109558 220 0.00 2019-10-03 19:05:43 2019-10-03 19:07:06 t 1 2 109561 522 0.00 2019-10-03 19:08:13 2019-10-03 19:08:40 t 1 1 109562 522 0.00 2019-10-03 19:09:00 2019-10-03 19:09:29 t 1 1 109576 522 0.00 2019-10-03 19:16:27 2019-10-03 19:16:34 t 1 1 109581 485 0.00 2019-10-03 19:20:16 2019-10-03 19:21:41 t 1 1 109582 451 0.00 2019-10-03 19:20:41 2019-10-03 19:22:31 t 1 1 109583 485 0.00 2019-10-03 19:21:41 2019-10-03 19:24:09 t 1 1 109587 220 0.00 2019-10-03 19:28:37 2019-10-03 19:29:50 t 1 1 109588 296 0.00 2019-10-03 19:29:15 2019-10-03 19:30:29 t 1 2 109589 331 0.00 2019-10-03 19:13:15 2019-10-03 19:31:40 t 1 1 109590 503 0.00 2019-10-03 19:18:08 2019-10-03 19:33:08 t 1 1 109592 412 0.00 2019-10-03 15:37:59 2019-10-03 19:36:45 t 1 1 109593 528 0.00 2019-10-03 19:27:28 2019-10-03 19:37:00 t 1 1 109414 462 0.00 2019-10-03 16:43:47 2019-10-03 16:55:21 t 1 1 109420 474 0.00 2019-10-03 16:56:56 2019-10-03 17:17:09 t 1 1 109421 220 0.00 2019-10-03 17:08:34 2019-10-03 17:20:57 t 1 2 109422 432 0.00 2019-10-03 17:21:30 2019-10-03 17:21:30 f 1 1 109426 220 0.00 2019-10-03 16:42:38 2019-10-03 17:26:15 t 1 1 109428 481 0.00 2019-10-03 17:07:03 2019-10-03 17:30:00 t 1 1 109431 306 0.00 2019-10-03 17:28:19 2019-10-03 17:31:14 t 1 1 109432 445 0.00 2019-10-03 16:57:41 2019-10-03 17:32:56 t 1 1 109434 481 0.00 2019-10-03 17:30:00 2019-10-03 17:38:53 t 1 1 109436 481 0.00 2019-10-03 17:38:53 2019-10-03 17:47:17 t 1 1 109439 327 0.00 2019-10-03 17:56:21 2019-10-03 17:57:01 t 1 1 109442 220 0.00 2019-10-03 18:00:36 2019-10-03 18:01:50 t 1 1 109446 422 0.00 2019-10-03 15:46:50 2019-10-03 18:10:00 t 1 1 109447 220 0.00 2019-10-03 18:05:58 2019-10-03 18:11:07 t 1 1 109452 522 0.00 2019-10-03 18:15:23 2019-10-03 18:15:49 t 1 1 109454 522 0.00 2019-10-03 18:16:47 2019-10-03 18:17:32 t 1 1 109458 470 0.00 2019-10-03 17:30:07 2019-10-03 18:20:05 t 1 1 109461 522 0.00 2019-10-03 18:20:57 2019-10-03 18:21:19 t 1 1 109463 470 0.00 2019-10-03 18:21:55 2019-10-03 18:22:58 t 1 1 109464 456 0.00 2019-10-03 18:19:09 2019-10-03 18:24:01 t 1 1 109465 451 0.00 2019-10-03 18:05:35 2019-10-03 18:25:54 t 1 1 109466 522 0.00 2019-10-03 18:23:10 2019-10-03 18:26:55 t 1 1 109468 522 0.00 2019-10-03 18:28:28 2019-10-03 18:28:33 t 1 1 109469 522 0.00 2019-10-03 18:28:42 2019-10-03 18:29:24 t 1 1 109471 220 0.00 2019-10-03 17:25:46 2019-10-03 18:30:09 t 1 2 109474 522 0.00 2019-10-03 18:31:13 2019-10-03 18:31:49 t 1 1 109475 522 0.00 2019-10-03 18:31:56 2019-10-03 18:32:41 t 1 1 109478 522 0.00 2019-10-03 18:33:30 2019-10-03 18:34:07 t 1 1 109480 522 0.00 2019-10-03 18:34:56 2019-10-03 18:35:03 t 1 1 109485 395 0.00 2019-10-03 18:33:19 2019-10-03 18:36:20 t 1 2 109489 516 0.00 2019-10-03 18:33:46 2019-10-03 18:36:56 t 1 1 109493 522 0.00 2019-10-03 18:38:16 2019-10-03 18:38:46 t 1 1 109495 522 0.00 2019-10-03 18:38:53 2019-10-03 18:39:27 t 1 1 109497 522 0.00 2019-10-03 18:39:34 2019-10-03 18:40:13 t 1 1 109498 522 0.00 2019-10-03 18:40:20 2019-10-03 18:40:56 t 1 1 109501 422 0.00 2019-10-03 18:10:01 2019-10-03 18:43:24 t 1 1 109504 522 0.00 2019-10-03 18:44:35 2019-10-03 18:45:13 t 1 1 109506 522 0.00 2019-10-03 18:45:32 2019-10-03 18:46:10 t 1 1 109510 470 0.00 2019-10-03 18:46:52 2019-10-03 18:47:55 t 1 1 109517 501 0.00 2019-10-03 18:07:04 2019-10-03 18:51:29 t 1 1 109519 522 0.00 2019-10-03 18:51:43 2019-10-03 18:51:55 t 1 1 109520 522 0.00 2019-10-03 18:52:05 2019-10-03 18:52:18 t 1 1 109522 306 0.00 2019-10-03 18:35:26 2019-10-03 18:52:42 t 1 1 109523 522 0.00 2019-10-03 18:52:46 2019-10-03 18:52:58 t 1 1 109524 522 0.00 2019-10-03 18:53:06 2019-10-03 18:53:19 t 1 1 109527 522 0.00 2019-10-03 18:53:38 2019-10-03 18:53:50 t 1 1 109528 522 0.00 2019-10-03 18:53:58 2019-10-03 18:54:12 t 1 1 109536 522 0.00 2019-10-03 18:56:09 2019-10-03 18:58:20 t 1 1 109539 522 0.00 2019-10-03 18:58:45 2019-10-03 18:58:46 t 1 1 109541 522 0.00 2019-10-03 18:59:09 2019-10-03 18:59:36 t 1 1 109544 522 0.00 2019-10-03 19:01:08 2019-10-03 19:01:35 t 1 1 109552 522 0.00 2019-10-03 19:04:53 2019-10-03 19:05:25 t 1 1 109555 220 0.00 2019-10-03 18:45:52 2019-10-03 19:06:15 t 1 2 109563 416 0.00 2019-10-03 18:36:15 2019-10-03 19:09:51 t 1 1 109564 522 0.00 2019-10-03 19:09:38 2019-10-03 19:10:05 t 1 1 109566 445 0.00 2019-10-03 18:15:04 2019-10-03 19:10:51 t 1 1 109567 522 0.00 2019-10-03 19:10:51 2019-10-03 19:11:20 t 1 1 109568 522 0.00 2019-10-03 19:11:43 2019-10-03 19:12:10 t 1 1 109571 522 0.00 2019-10-03 19:13:45 2019-10-03 19:14:13 t 1 1 109573 522 0.00 2019-10-03 19:14:58 2019-10-03 19:15:26 t 1 1 109574 522 0.00 2019-10-03 19:15:35 2019-10-03 19:16:04 t 1 1 109577 490 0.00 2019-10-03 19:06:59 2019-10-03 19:16:50 t 1 1 109579 422 0.00 2019-10-03 18:43:24 2019-10-03 19:17:15 t 1 1 109585 512 0.00 2019-10-03 18:53:13 2019-10-03 19:24:25 t 1 1 109591 474 0.00 2019-10-03 19:02:52 2019-10-03 19:36:33 t 1 1 109594 522 0.00 2019-10-03 19:17:24 2019-10-03 19:37:07 t 1 1 109596 522 0.00 2019-10-03 19:38:19 2019-10-03 19:39:20 t 1 1 109602 456 0.00 2019-10-03 19:42:27 2019-10-03 19:46:40 t 1 1 109606 522 0.00 2019-10-03 19:50:11 2019-10-03 19:50:19 t 1 1 109608 485 0.00 2019-10-03 19:48:13 2019-10-03 19:51:34 t 1 1 109611 456 0.00 2019-10-03 19:47:55 2019-10-03 19:54:20 t 1 1 109618 522 0.00 2019-10-03 20:01:57 2019-10-03 20:02:06 t 1 1 109619 220 0.00 2019-10-03 19:59:11 2019-10-03 20:05:24 t 1 1 109625 456 0.00 2019-10-03 19:56:53 2019-10-03 20:08:45 t 1 1 109629 422 0.00 2019-10-03 19:17:15 2019-10-03 20:14:32 t 1 1 109637 331 0.00 2019-10-03 20:01:22 2019-10-03 20:21:37 t 1 1 109638 512 0.00 2019-10-03 20:11:57 2019-10-03 20:28:11 t 1 1 109639 512 0.00 2019-10-03 20:28:11 2019-10-03 20:34:22 t 1 1 109640 481 0.00 2019-10-03 20:14:58 2019-10-03 20:37:32 t 1 1 109641 520 0.00 2019-10-03 20:28:09 2019-10-03 20:38:46 t 1 1 109644 416 0.00 2019-10-03 20:42:31 2019-10-03 20:44:31 t 1 1 109645 522 0.00 2019-10-03 20:38:32 2019-10-03 20:45:37 t 1 1 109646 532 0.00 2019-10-03 20:44:09 2019-10-03 20:47:13 t 1 1 109650 522 0.00 2019-10-03 20:50:28 2019-10-03 20:50:45 t 1 1 109652 522 0.00 2019-10-03 20:51:29 2019-10-03 20:56:20 t 1 1 109653 522 0.00 2019-10-03 20:56:39 2019-10-03 20:56:46 t 1 1 109655 532 0.00 2019-10-03 20:56:25 2019-10-03 20:58:20 t 1 1 109656 306 0.00 2019-10-03 20:56:54 2019-10-03 20:58:23 t 1 1 109658 532 0.00 2019-10-03 20:58:56 2019-10-03 20:58:57 t 1 1 109659 532 0.00 2019-10-03 20:59:06 2019-10-03 20:59:11 t 1 1 109671 532 0.00 2019-10-03 21:13:33 2019-10-03 21:13:46 t 1 1 109672 361 0.00 2019-10-03 20:24:35 2019-10-03 21:16:55 t 1 2 109673 532 0.00 2019-10-03 21:17:32 2019-10-03 21:17:38 t 1 1 109678 522 0.00 2019-10-03 21:12:19 2019-10-03 21:21:32 t 1 1 109682 532 0.00 2019-10-03 21:23:49 2019-10-03 21:23:49 t 1 1 109684 306 0.00 2019-10-03 20:58:22 2019-10-03 21:25:52 t 1 1 109687 532 0.00 2019-10-03 21:28:52 2019-10-03 21:28:53 t 1 1 109690 468 0.00 2019-10-03 21:10:07 2019-10-03 21:31:51 t 1 1 109693 306 0.00 2019-10-03 21:31:00 2019-10-03 21:34:14 t 1 1 109694 532 0.00 2019-10-03 21:38:55 2019-10-03 21:39:09 t 1 1 109700 422 0.00 2019-10-03 21:40:46 2019-10-03 21:43:09 t 1 1 109701 522 0.00 2019-10-03 21:43:24 2019-10-03 21:43:32 t 1 1 109711 532 0.00 2019-10-03 21:43:50 2019-10-03 21:50:21 t 1 1 109718 532 0.00 2019-10-03 21:56:24 2019-10-03 21:59:07 t 1 1 109719 522 0.00 2019-10-03 21:59:19 2019-10-03 21:59:28 t 1 1 109720 449 0.00 2019-10-03 21:57:02 2019-10-03 22:00:07 t 1 1 109722 522 0.00 2019-10-03 22:01:06 2019-10-03 22:01:16 t 1 1 109487 470 0.00 2019-10-03 18:35:28 2019-10-03 18:36:32 t 1 1 109490 522 0.00 2019-10-03 18:36:56 2019-10-03 18:37:27 t 1 1 109502 522 0.00 2019-10-03 18:43:05 2019-10-03 18:43:44 t 1 1 109503 522 0.00 2019-10-03 18:43:50 2019-10-03 18:44:29 t 1 1 109505 522 0.00 2019-10-03 18:45:19 2019-10-03 18:45:26 t 1 1 109507 470 0.00 2019-10-03 18:40:06 2019-10-03 18:46:52 t 1 1 109512 522 0.00 2019-10-03 18:48:02 2019-10-03 18:48:09 t 1 1 109515 522 0.00 2019-10-03 18:48:58 2019-10-03 18:49:55 t 1 1 109521 522 0.00 2019-10-03 18:52:26 2019-10-03 18:52:38 t 1 1 109529 522 0.00 2019-10-03 18:54:28 2019-10-03 18:54:37 t 1 1 109531 522 0.00 2019-10-03 18:54:54 2019-10-03 18:55:11 t 1 1 109532 522 0.00 2019-10-03 18:55:38 2019-10-03 18:56:03 t 1 1 109533 522 0.00 2019-10-03 18:56:19 2019-10-03 18:56:45 t 1 1 109534 522 0.00 2019-10-03 18:57:01 2019-10-03 18:57:22 t 1 1 109535 522 0.00 2019-10-03 18:57:36 2019-10-03 18:58:06 t 1 1 109537 522 0.00 2019-10-03 18:58:28 2019-10-03 18:58:30 t 1 1 109540 522 0.00 2019-10-03 18:58:52 2019-10-03 18:58:54 t 1 1 109545 516 0.00 2019-10-03 18:59:35 2019-10-03 19:01:52 t 1 1 109547 474 0.00 2019-10-03 17:18:07 2019-10-03 19:02:53 t 1 1 109551 522 0.00 2019-10-03 19:04:08 2019-10-03 19:04:39 t 1 1 109554 522 0.00 2019-10-03 19:05:39 2019-10-03 19:06:09 t 1 1 109556 522 0.00 2019-10-03 19:06:18 2019-10-03 19:06:45 t 1 1 109557 490 0.00 2019-10-03 18:53:27 2019-10-03 19:06:59 t 1 1 109559 522 0.00 2019-10-03 19:06:51 2019-10-03 19:07:21 t 1 1 109560 522 0.00 2019-10-03 19:07:28 2019-10-03 19:07:58 t 1 1 109565 522 0.00 2019-10-03 19:10:14 2019-10-03 19:10:42 t 1 1 109569 522 0.00 2019-10-03 19:12:19 2019-10-03 19:12:47 t 1 1 109570 522 0.00 2019-10-03 19:12:56 2019-10-03 19:13:23 t 1 1 109572 522 0.00 2019-10-03 19:14:22 2019-10-03 19:14:50 t 1 1 109575 522 0.00 2019-10-03 19:16:18 2019-10-03 19:16:20 t 1 1 109578 522 0.00 2019-10-03 19:16:43 2019-10-03 19:17:08 t 1 1 109580 485 0.00 2019-10-03 19:13:03 2019-10-03 19:20:16 t 1 1 109584 456 0.00 2019-10-03 19:21:31 2019-10-03 19:24:20 t 1 1 109586 485 0.00 2019-10-03 19:25:53 2019-10-03 19:29:14 t 1 1 109595 522 0.00 2019-10-03 19:38:52 2019-10-03 19:39:19 t 1 1 109599 456 0.00 2019-10-03 19:34:49 2019-10-03 19:42:27 t 1 1 109601 522 0.00 2019-10-03 19:44:03 2019-10-03 19:44:11 t 1 1 109604 522 0.00 2019-10-03 19:47:08 2019-10-03 19:47:16 t 1 1 109605 220 0.00 2019-10-03 19:13:26 2019-10-03 19:49:39 t 1 2 109609 528 0.00 2019-10-03 19:37:00 2019-10-03 19:51:58 t 1 1 109613 331 0.00 2019-10-03 19:31:37 2019-10-03 19:56:03 t 1 1 109615 522 0.00 2019-10-03 19:56:33 2019-10-03 19:56:58 t 1 1 109620 522 0.00 2019-10-03 20:05:38 2019-10-03 20:05:38 t 1 1 109623 498 0.00 2019-10-03 19:52:44 2019-10-03 20:06:24 t 1 2 109624 395 0.00 2019-10-03 20:03:59 2019-10-03 20:08:38 t 1 2 109626 512 0.00 2019-10-03 19:25:24 2019-10-03 20:11:02 t 1 1 109627 522 0.00 2019-10-03 20:11:43 2019-10-03 20:11:50 t 1 1 109630 481 0.00 2019-10-03 20:13:15 2019-10-03 20:14:59 t 1 1 109633 488 0.00 2019-10-03 20:01:02 2019-10-03 20:18:28 t 1 1 109636 296 0.00 2019-10-03 20:11:45 2019-10-03 20:21:08 t 1 2 109648 532 0.00 2019-10-03 20:48:06 2019-10-03 20:48:15 t 1 1 109649 451 0.00 2019-10-03 20:48:30 2019-10-03 20:50:41 t 1 1 109661 422 0.00 2019-10-03 20:14:32 2019-10-03 21:00:38 t 1 1 109664 520 0.00 2019-10-03 20:38:52 2019-10-03 21:03:28 t 1 1 109665 522 0.00 2019-10-03 21:07:06 2019-10-03 21:07:16 t 1 1 109666 532 0.00 2019-10-03 21:08:30 2019-10-03 21:08:30 t 1 1 109668 468 0.00 2019-10-03 19:41:40 2019-10-03 21:10:07 t 1 1 109674 532 0.00 2019-10-03 21:17:43 2019-10-03 21:17:56 t 1 1 109676 532 0.00 2019-10-03 21:18:37 2019-10-03 21:18:45 t 1 1 109679 512 0.00 2019-10-03 21:18:08 2019-10-03 21:22:08 t 1 1 109680 520 0.00 2019-10-03 21:18:40 2019-10-03 21:22:43 t 1 1 109683 292 0.00 2019-10-03 21:23:56 2019-10-03 21:24:58 t 1 2 109689 522 0.00 2019-10-03 21:22:22 2019-10-03 21:31:42 t 1 1 109692 532 0.00 2019-10-03 21:33:58 2019-10-03 21:34:06 t 1 1 109695 532 0.00 2019-10-03 21:39:19 2019-10-03 21:39:32 t 1 1 109697 422 0.00 2019-10-03 21:00:38 2019-10-03 21:40:46 t 1 1 109698 325 0.00 2019-10-03 20:36:31 2019-10-03 21:41:28 t 1 2 109704 522 0.00 2019-10-03 21:47:26 2019-10-03 21:47:33 t 1 1 109705 528 0.00 2019-10-03 21:28:02 2019-10-03 21:48:09 t 1 1 109707 422 0.00 2019-10-03 21:43:09 2019-10-03 21:48:50 t 1 1 109708 445 0.00 2019-10-03 21:27:53 2019-10-03 21:49:24 t 1 1 109710 528 0.00 2019-10-03 21:48:08 2019-10-03 21:50:20 t 1 1 109712 528 0.00 2019-10-03 21:50:16 2019-10-03 21:50:52 t 1 1 109717 532 0.00 2019-10-03 21:50:21 2019-10-03 21:56:24 t 1 1 109721 462 0.00 2019-10-03 21:39:46 2019-10-03 22:01:15 t 1 1 109725 468 0.00 2019-10-03 21:56:57 2019-10-03 22:02:51 t 1 1 109726 422 0.00 2019-10-03 21:48:50 2019-10-03 22:04:01 t 1 1 109728 528 0.00 2019-10-03 21:56:00 2019-10-03 22:04:20 t 1 1 109729 445 0.00 2019-10-03 21:51:12 2019-10-03 22:04:51 t 1 1 109731 445 0.00 2019-10-03 22:04:54 2019-10-03 22:06:08 t 1 1 109733 325 0.00 2019-10-03 21:55:37 2019-10-03 22:06:36 t 1 2 109735 532 0.00 2019-10-03 22:05:38 2019-10-03 22:07:42 t 1 1 109737 522 0.00 2019-10-03 22:09:21 2019-10-03 22:09:58 t 1 1 109739 522 0.00 2019-10-03 22:11:08 2019-10-03 22:11:48 t 1 1 109740 422 0.00 2019-10-03 22:04:01 2019-10-03 22:12:28 t 1 1 109743 449 0.00 2019-10-03 22:00:07 2019-10-03 22:17:28 t 1 1 109747 422 0.00 2019-10-03 22:12:28 2019-10-03 22:20:13 t 1 1 109748 522 0.00 2019-10-03 22:20:21 2019-10-03 22:20:28 t 1 1 109750 472 0.00 2019-10-03 22:18:20 2019-10-03 22:23:06 t 1 1 109751 472 0.00 2019-10-03 22:23:15 2019-10-03 22:23:28 t 1 1 109752 522 0.00 2019-10-03 22:23:53 2019-10-03 22:24:12 t 1 1 109758 472 0.00 2019-10-03 22:27:07 2019-10-03 22:27:32 t 1 1 109759 468 0.00 2019-10-03 22:12:11 2019-10-03 22:28:00 t 1 1 109762 461 0.00 2019-10-03 22:27:13 2019-10-03 22:28:19 t 1 2 109768 451 0.00 2019-10-03 22:18:59 2019-10-03 22:30:43 t 1 1 109769 461 0.00 2019-10-03 22:29:58 2019-10-03 22:31:03 t 1 2 109770 422 0.00 2019-10-03 22:20:13 2019-10-03 22:32:05 t 1 1 109771 472 0.00 2019-10-03 22:32:09 2019-10-03 22:32:17 t 1 1 109774 451 0.00 2019-10-03 22:30:43 2019-10-03 22:36:01 t 1 1 109779 472 0.00 2019-10-03 22:38:39 2019-10-03 22:39:17 t 1 1 109781 522 0.00 2019-10-03 22:41:27 2019-10-03 22:41:51 t 1 1 109784 472 0.00 2019-10-03 22:42:24 2019-10-03 22:42:31 t 1 1 109786 456 0.00 2019-10-03 22:40:43 2019-10-03 22:42:57 t 1 1 109787 451 0.00 2019-10-03 22:36:01 2019-10-03 22:43:03 t 1 1 109796 522 0.00 2019-10-03 22:48:08 2019-10-03 22:48:31 t 1 1 109802 461 0.00 2019-10-03 22:19:01 2019-10-03 22:55:21 t 1 2 109803 522 0.00 2019-10-03 22:56:28 2019-10-03 22:56:44 t 1 1 109597 522 0.00 2019-10-03 19:40:22 2019-10-03 19:40:24 t 1 1 109598 522 0.00 2019-10-03 19:41:18 2019-10-03 19:41:20 t 1 1 109600 498 0.00 2019-10-03 19:42:46 2019-10-03 19:42:46 f 1 2 109603 498 0.00 2019-10-03 19:47:16 2019-10-03 19:47:16 f 1 2 109607 498 0.00 2019-10-03 19:35:52 2019-10-03 19:50:57 t 1 2 109610 522 0.00 2019-10-03 19:53:18 2019-10-03 19:53:25 t 1 1 109612 518 0.00 2019-10-03 19:34:33 2019-10-03 19:54:38 t 1 2 109614 522 0.00 2019-10-03 19:56:19 2019-10-03 19:56:20 t 1 1 109616 528 0.00 2019-10-03 19:52:54 2019-10-03 19:58:51 t 1 1 109617 488 0.00 2019-10-03 19:49:01 2019-10-03 20:01:02 t 1 1 109621 522 0.00 2019-10-03 20:05:45 2019-10-03 20:05:46 t 1 1 109622 522 0.00 2019-10-03 20:05:53 2019-10-03 20:06:20 t 1 1 109628 481 0.00 2019-10-03 17:54:37 2019-10-03 20:13:16 t 1 1 109631 522 0.00 2019-10-03 20:15:19 2019-10-03 20:15:31 t 1 1 109632 522 0.00 2019-10-03 20:17:54 2019-10-03 20:18:26 t 1 1 109634 488 0.00 2019-10-03 20:18:28 2019-10-03 20:20:51 t 1 1 109635 462 0.00 2019-10-03 20:16:45 2019-10-03 20:21:00 t 1 1 109642 247 0.00 2019-10-03 20:41:20 2019-10-03 20:42:57 t 1 2 109643 532 0.00 2019-10-03 20:43:52 2019-10-03 20:44:05 t 1 1 109647 412 0.00 2019-10-03 19:36:45 2019-10-03 20:47:20 t 1 1 109651 532 0.00 2019-10-03 20:53:25 2019-10-03 20:55:20 t 1 1 109654 532 0.00 2019-10-03 20:57:09 2019-10-03 20:57:10 t 1 1 109657 532 0.00 2019-10-03 20:58:21 2019-10-03 20:58:27 t 1 1 109660 532 0.00 2019-10-03 20:59:59 2019-10-03 21:00:00 t 1 1 109662 532 0.00 2019-10-03 21:01:53 2019-10-03 21:01:57 t 1 1 109663 532 0.00 2019-10-03 21:03:25 2019-10-03 21:03:26 t 1 1 109667 462 0.00 2019-10-03 20:21:00 2019-10-03 21:09:16 t 1 1 109669 522 0.00 2019-10-03 21:12:02 2019-10-03 21:12:09 t 1 1 109670 395 0.00 2019-10-03 20:37:01 2019-10-03 21:13:25 t 1 2 109675 520 0.00 2019-10-03 21:03:34 2019-10-03 21:18:40 t 1 1 109677 372 0.00 2019-10-03 21:06:46 2019-10-03 21:19:19 t 1 2 109681 481 0.00 2019-10-03 20:53:00 2019-10-03 21:23:17 t 1 1 109685 445 0.00 2019-10-03 19:13:12 2019-10-03 21:27:54 t 1 1 109686 461 0.00 2019-10-03 18:40:17 2019-10-03 21:28:40 t 1 2 109688 462 0.00 2019-10-03 21:09:16 2019-10-03 21:28:57 t 1 1 109691 522 0.00 2019-10-03 21:32:45 2019-10-03 21:32:53 t 1 1 109696 462 0.00 2019-10-03 21:28:57 2019-10-03 21:39:46 t 1 1 109699 522 0.00 2019-10-03 21:38:07 2019-10-03 21:42:48 t 1 1 109702 532 0.00 2019-10-03 21:39:39 2019-10-03 21:43:50 t 1 1 109703 522 0.00 2019-10-03 21:44:52 2019-10-03 21:45:15 t 1 1 109706 522 0.00 2019-10-03 21:48:14 2019-10-03 21:48:17 t 1 1 109709 522 0.00 2019-10-03 21:49:37 2019-10-03 21:49:55 t 1 1 109713 522 0.00 2019-10-03 21:52:33 2019-10-03 21:52:36 t 1 1 109714 468 0.00 2019-10-03 21:31:51 2019-10-03 21:55:48 t 1 1 109715 522 0.00 2019-10-03 21:55:49 2019-10-03 21:55:59 t 1 1 109716 522 0.00 2019-10-03 21:56:12 2019-10-03 21:56:13 t 1 1 109723 520 0.00 2019-10-03 21:22:43 2019-10-03 22:01:49 t 1 1 109727 462 0.00 2019-10-03 22:01:14 2019-10-03 22:04:07 t 1 1 109730 532 0.00 2019-10-03 22:02:08 2019-10-03 22:05:38 t 1 1 109732 522 0.00 2019-10-03 22:06:16 2019-10-03 22:06:29 t 1 1 109734 528 0.00 2019-10-03 22:05:20 2019-10-03 22:07:20 t 1 1 109736 522 0.00 2019-10-03 22:08:07 2019-10-03 22:09:16 t 1 1 109745 528 0.00 2019-10-03 22:10:45 2019-10-03 22:19:47 t 1 1 109746 522 0.00 2019-10-03 22:19:44 2019-10-03 22:20:09 t 1 1 109754 522 0.00 2019-10-03 22:24:55 2019-10-03 22:25:00 t 1 1 109761 445 0.00 2019-10-03 22:06:07 2019-10-03 22:28:13 t 1 1 109763 522 0.00 2019-10-03 22:25:37 2019-10-03 22:28:20 t 1 1 109764 522 0.00 2019-10-03 22:26:15 2019-10-03 22:29:25 t 1 1 109767 522 0.00 2019-10-03 22:29:50 2019-10-03 22:30:33 t 1 1 109777 472 0.00 2019-10-03 22:36:20 2019-10-03 22:38:23 t 1 1 109778 522 0.00 2019-10-03 22:37:45 2019-10-03 22:39:04 t 1 1 109780 522 0.00 2019-10-03 22:39:40 2019-10-03 22:39:51 t 1 1 109785 532 0.00 2019-10-03 22:42:37 2019-10-03 22:42:41 t 1 1 109788 522 0.00 2019-10-03 22:42:57 2019-10-03 22:43:36 t 1 1 109789 472 0.00 2019-10-03 22:43:22 2019-10-03 22:44:55 t 1 1 109790 472 0.00 2019-10-03 22:44:54 2019-10-03 22:45:07 t 1 1 109792 220 0.00 2019-10-03 22:41:53 2019-10-03 22:45:33 t 1 1 109793 522 0.00 2019-10-03 22:45:43 2019-10-03 22:46:19 t 1 1 109794 532 0.00 2019-10-03 22:47:42 2019-10-03 22:47:45 t 1 1 109795 333 0.00 2019-10-03 22:29:49 2019-10-03 22:48:10 t 1 2 109799 532 0.00 2019-10-03 22:49:00 2019-10-03 22:51:38 t 1 1 109800 532 0.00 2019-10-03 22:52:04 2019-10-03 22:52:36 t 1 1 109801 472 0.00 2019-10-03 22:55:08 2019-10-03 22:55:15 t 1 1 109806 522 0.00 2019-10-03 22:58:44 2019-10-03 22:59:06 t 1 1 109808 468 0.00 2019-10-03 22:28:27 2019-10-03 23:01:07 t 1 1 109811 472 0.00 2019-10-03 23:05:19 2019-10-03 23:05:26 t 1 1 109812 472 0.00 2019-10-03 23:05:38 2019-10-03 23:06:01 t 1 1 109814 522 0.00 2019-10-03 23:09:06 2019-10-03 23:09:10 t 1 1 109816 522 0.00 2019-10-03 23:10:02 2019-10-03 23:10:03 t 1 1 109829 522 0.00 2019-10-03 23:19:27 2019-10-03 23:19:31 t 1 1 109833 412 0.00 2019-10-03 20:47:20 2019-10-03 23:23:47 t 1 1 109835 430 0.00 2019-10-03 23:16:51 2019-10-03 23:25:10 t 1 1 109840 522 0.00 2019-10-03 23:24:40 2019-10-03 23:31:27 t 1 1 109842 422 0.00 2019-10-03 23:10:37 2019-10-03 23:32:35 t 1 1 109844 468 0.00 2019-10-03 23:07:47 2019-10-03 23:34:12 t 1 1 109845 472 0.00 2019-10-03 23:35:54 2019-10-03 23:36:01 t 1 1 109848 522 0.00 2019-10-03 23:39:56 2019-10-03 23:40:09 t 1 1 109850 522 0.00 2019-10-03 23:42:32 2019-10-03 23:48:39 t 1 1 109854 422 0.00 2019-10-03 23:32:35 2019-10-03 23:51:04 t 1 1 109858 522 0.00 2019-10-03 23:54:35 2019-10-03 23:54:48 t 1 1 109862 395 0.00 2019-10-03 21:15:24 2019-10-04 00:03:45 t 1 2 109866 522 0.00 2019-10-04 00:06:37 2019-10-04 00:06:39 t 1 1 109869 522 0.00 2019-10-04 00:09:21 2019-10-04 00:09:30 t 1 1 109870 532 0.00 2019-10-04 00:08:01 2019-10-04 00:10:19 t 1 1 109872 532 0.00 2019-10-04 00:10:19 2019-10-04 00:13:18 t 1 1 109874 532 0.00 2019-10-04 00:13:18 2019-10-04 00:16:09 t 1 1 109877 522 0.00 2019-10-04 00:19:33 2019-10-04 00:19:34 t 1 1 109879 522 0.00 2019-10-04 00:24:35 2019-10-04 00:24:38 t 1 1 109882 522 0.00 2019-10-04 00:29:56 2019-10-04 00:29:59 t 1 1 109883 445 0.00 2019-10-03 22:28:20 2019-10-04 00:31:08 t 1 1 109887 468 0.00 2019-10-04 00:27:35 2019-10-04 00:37:40 t 1 1 109889 522 0.00 2019-10-04 00:45:09 2019-10-04 00:45:12 t 1 1 109890 512 0.00 2019-10-04 00:32:35 2019-10-04 00:47:07 t 1 1 109891 501 0.00 2019-10-04 00:34:43 2019-10-04 00:48:18 t 1 1 109893 422 0.00 2019-10-04 00:17:20 2019-10-04 00:48:46 t 1 1 109896 501 0.00 2019-10-04 00:48:18 2019-10-04 00:50:23 t 1 1 109897 512 0.00 2019-10-04 00:47:07 2019-10-04 00:51:09 t 1 1 109724 532 0.00 2019-10-03 21:59:07 2019-10-03 22:02:08 t 1 1 109738 522 0.00 2019-10-03 22:10:12 2019-10-03 22:11:02 t 1 1 109741 331 0.00 2019-10-03 20:22:22 2019-10-03 22:13:13 t 1 1 109742 522 0.00 2019-10-03 22:16:48 2019-10-03 22:16:54 t 1 1 109744 333 0.00 2019-10-03 22:04:20 2019-10-03 22:17:40 t 1 2 109749 522 0.00 2019-10-03 22:22:07 2019-10-03 22:22:36 t 1 1 109753 296 0.00 2019-10-03 22:23:17 2019-10-03 22:24:40 t 1 2 109755 522 0.00 2019-10-03 22:25:28 2019-10-03 22:25:31 t 1 1 109756 522 0.00 2019-10-03 22:25:45 2019-10-03 22:25:51 t 1 1 109757 532 0.00 2019-10-03 22:07:42 2019-10-03 22:26:38 t 1 1 109760 472 0.00 2019-10-03 22:27:44 2019-10-03 22:28:06 t 1 1 109765 522 0.00 2019-10-03 22:29:32 2019-10-03 22:29:36 t 1 1 109766 331 0.00 2019-10-03 22:13:13 2019-10-03 22:30:33 t 1 1 109772 522 0.00 2019-10-03 22:31:58 2019-10-03 22:32:54 t 1 1 109773 532 0.00 2019-10-03 22:26:38 2019-10-03 22:34:55 t 1 1 109775 522 0.00 2019-10-03 22:36:28 2019-10-03 22:36:48 t 1 1 109776 532 0.00 2019-10-03 22:37:32 2019-10-03 22:37:33 t 1 1 109782 220 0.00 2019-10-03 22:35:13 2019-10-03 22:41:53 t 1 1 109783 532 0.00 2019-10-03 22:38:08 2019-10-03 22:42:17 t 1 1 109791 472 0.00 2019-10-03 22:45:20 2019-10-03 22:45:32 t 1 1 109797 472 0.00 2019-10-03 22:50:04 2019-10-03 22:50:11 t 1 1 109798 522 0.00 2019-10-03 22:51:25 2019-10-03 22:51:28 t 1 1 109805 451 0.00 2019-10-03 22:49:26 2019-10-03 22:57:22 t 1 1 109809 522 0.00 2019-10-03 23:04:01 2019-10-03 23:04:13 t 1 1 109810 522 0.00 2019-10-03 23:05:12 2019-10-03 23:05:25 t 1 1 109813 472 0.00 2019-10-03 23:06:10 2019-10-03 23:06:33 t 1 1 109815 522 0.00 2019-10-03 23:09:50 2019-10-03 23:09:51 t 1 1 109817 522 0.00 2019-10-03 23:10:18 2019-10-03 23:10:19 t 1 1 109819 422 0.00 2019-10-03 22:32:05 2019-10-03 23:10:37 t 1 1 109820 522 0.00 2019-10-03 23:11:55 2019-10-03 23:11:59 t 1 1 109821 522 0.00 2019-10-03 23:12:53 2019-10-03 23:13:05 t 1 1 109823 472 0.00 2019-10-03 23:14:34 2019-10-03 23:15:38 t 1 1 109825 522 0.00 2019-10-03 23:16:54 2019-10-03 23:17:04 t 1 1 109827 522 0.00 2019-10-03 23:18:45 2019-10-03 23:18:57 t 1 1 109830 522 0.00 2019-10-03 23:20:26 2019-10-03 23:20:29 t 1 1 109837 220 0.00 2019-10-03 23:05:01 2019-10-03 23:25:24 t 1 2 109838 472 0.00 2019-10-03 23:25:40 2019-10-03 23:25:47 t 1 1 109847 522 0.00 2019-10-03 23:32:57 2019-10-03 23:39:51 t 1 1 109851 416 0.00 2019-10-03 21:21:26 2019-10-03 23:49:06 t 1 1 109855 456 0.00 2019-10-03 23:20:27 2019-10-03 23:51:20 t 1 1 109860 522 0.00 2019-10-03 23:59:39 2019-10-03 23:59:42 t 1 1 109861 532 0.00 2019-10-03 23:56:23 2019-10-04 00:01:11 t 1 1 109863 532 0.00 2019-10-04 00:01:11 2019-10-04 00:05:05 t 1 1 109868 532 0.00 2019-10-04 00:05:05 2019-10-04 00:08:01 t 1 1 109871 472 0.00 2019-10-03 23:56:43 2019-10-04 00:10:21 t 1 1 109884 512 0.00 2019-10-04 00:31:01 2019-10-04 00:31:53 t 1 1 109885 412 0.00 2019-10-03 23:23:47 2019-10-04 00:34:26 t 1 1 109886 522 0.00 2019-10-04 00:34:58 2019-10-04 00:35:12 t 1 1 109892 490 0.00 2019-10-04 00:37:10 2019-10-04 00:48:46 t 1 1 109894 468 0.00 2019-10-04 00:37:40 2019-10-04 00:50:06 t 1 1 109895 522 0.00 2019-10-04 00:50:11 2019-10-04 00:50:12 t 1 1 109898 501 0.00 2019-10-04 00:50:23 2019-10-04 00:52:29 t 1 1 109900 522 0.00 2019-10-04 00:53:43 2019-10-04 00:53:45 t 1 1 109903 501 0.00 2019-10-04 00:54:37 2019-10-04 00:56:47 t 1 1 109907 490 0.00 2019-10-04 00:58:43 2019-10-04 01:01:20 t 1 1 109909 522 0.00 2019-10-04 01:05:22 2019-10-04 01:05:23 t 1 1 109912 468 0.00 2019-10-04 00:50:06 2019-10-04 01:11:25 t 1 1 109914 522 0.00 2019-10-04 01:15:33 2019-10-04 01:15:37 t 1 1 109915 412 0.00 2019-10-04 00:34:26 2019-10-04 01:17:03 t 1 1 109918 522 0.00 2019-10-04 01:28:16 2019-10-04 01:28:25 t 1 1 109921 220 0.00 2019-10-04 00:29:36 2019-10-04 01:36:19 t 1 1 109923 468 0.00 2019-10-04 01:11:25 2019-10-04 01:39:57 t 1 1 109928 490 0.00 2019-10-04 01:38:22 2019-10-04 01:52:00 t 1 1 109930 522 0.00 2019-10-04 01:59:00 2019-10-04 01:59:03 t 1 1 109936 522 0.00 2019-10-04 02:14:12 2019-10-04 02:14:15 t 1 1 109937 522 0.00 2019-10-04 02:19:16 2019-10-04 02:19:17 t 1 1 109939 522 0.00 2019-10-04 02:24:22 2019-10-04 02:24:31 t 1 1 109940 422 0.00 2019-10-04 02:13:01 2019-10-04 02:27:54 t 1 1 109942 468 0.00 2019-10-04 02:04:17 2019-10-04 02:34:29 t 1 1 109950 522 0.00 2019-10-04 02:49:45 2019-10-04 02:49:59 t 1 1 109951 522 0.00 2019-10-04 02:54:50 2019-10-04 02:54:53 t 1 1 109953 501 0.00 2019-10-04 01:43:11 2019-10-04 02:59:50 t 1 1 109955 422 0.00 2019-10-04 02:44:53 2019-10-04 03:00:35 t 1 1 109956 522 0.00 2019-10-04 03:05:04 2019-10-04 03:05:16 t 1 1 109960 522 0.00 2019-10-04 03:15:14 2019-10-04 03:16:37 t 1 1 109962 501 0.00 2019-10-04 03:17:07 2019-10-04 03:19:26 t 1 1 109965 501 0.00 2019-10-04 03:19:26 2019-10-04 03:22:00 t 1 1 109967 522 0.00 2019-10-04 03:25:24 2019-10-04 03:25:27 t 1 1 109969 501 0.00 2019-10-04 03:26:16 2019-10-04 03:28:23 t 1 1 109970 522 0.00 2019-10-04 03:30:28 2019-10-04 03:30:28 t 1 1 109975 501 0.00 2019-10-04 03:33:04 2019-10-04 03:35:10 t 1 1 109976 522 0.00 2019-10-04 03:35:31 2019-10-04 03:35:44 t 1 1 109977 501 0.00 2019-10-04 03:35:10 2019-10-04 03:37:29 t 1 1 109979 522 0.00 2019-10-04 03:40:34 2019-10-04 03:40:47 t 1 1 109982 522 0.00 2019-10-04 03:45:39 2019-10-04 03:45:52 t 1 1 109986 522 0.00 2019-10-04 03:50:44 2019-10-04 03:50:44 t 1 1 109988 501 0.00 2019-10-04 03:51:11 2019-10-04 03:53:35 t 1 1 109991 501 0.00 2019-10-04 03:55:48 2019-10-04 03:58:19 t 1 1 109993 522 0.00 2019-10-04 04:00:54 2019-10-04 04:01:08 t 1 1 109996 522 0.00 2019-10-04 04:05:58 2019-10-04 04:06:00 t 1 1 109999 522 0.00 2019-10-04 04:18:19 2019-10-04 04:19:26 t 1 1 110001 522 0.00 2019-10-04 04:19:33 2019-10-04 04:20:16 t 1 1 110002 522 0.00 2019-10-04 04:20:30 2019-10-04 04:20:43 t 1 1 110003 522 0.00 2019-10-04 04:21:06 2019-10-04 04:21:18 t 1 1 110007 522 0.00 2019-10-04 04:25:22 2019-10-04 04:25:23 t 1 1 110010 522 0.00 2019-10-04 04:30:24 2019-10-04 04:30:27 t 1 1 110014 522 0.00 2019-10-04 04:36:09 2019-10-04 04:36:10 t 1 1 110018 522 0.00 2019-10-04 04:45:44 2019-10-04 04:45:56 t 1 1 110019 522 0.00 2019-10-04 04:46:08 2019-10-04 04:46:09 t 1 1 110021 501 0.00 2019-10-04 04:08:50 2019-10-04 04:50:21 t 1 1 110022 522 0.00 2019-10-04 04:50:44 2019-10-04 04:50:51 t 1 1 110023 522 0.00 2019-10-04 04:50:56 2019-10-04 04:51:13 t 1 1 110024 522 0.00 2019-10-04 04:55:51 2019-10-04 04:55:55 t 1 1 110028 422 0.00 2019-10-04 04:56:56 2019-10-04 05:03:14 t 1 1 110033 501 0.00 2019-10-04 05:06:35 2019-10-04 05:07:12 t 1 1 110034 501 0.00 2019-10-04 05:08:09 2019-10-04 05:08:20 t 1 1 110035 501 0.00 2019-10-04 05:09:17 2019-10-04 05:09:50 t 1 1 109804 522 0.00 2019-10-03 22:56:49 2019-10-03 22:57:18 t 1 1 109807 472 0.00 2019-10-03 23:00:12 2019-10-03 23:00:19 t 1 1 109818 472 0.00 2019-10-03 23:10:25 2019-10-03 23:10:32 t 1 1 109822 485 0.00 2019-10-03 23:11:53 2019-10-03 23:14:00 t 1 1 109824 430 0.00 2019-10-03 23:06:35 2019-10-03 23:16:51 t 1 1 109826 522 0.00 2019-10-03 23:17:17 2019-10-03 23:17:18 t 1 1 109828 522 0.00 2019-10-03 23:19:04 2019-10-03 23:19:15 t 1 1 109831 472 0.00 2019-10-03 23:20:35 2019-10-03 23:20:42 t 1 1 109832 481 0.00 2019-10-03 22:04:20 2019-10-03 23:22:15 t 1 1 109834 522 0.00 2019-10-03 23:24:22 2019-10-03 23:24:31 t 1 1 109836 430 0.00 2019-10-03 23:25:10 2019-10-03 23:25:17 t 1 1 109839 472 0.00 2019-10-03 23:30:47 2019-10-03 23:30:55 t 1 1 109841 220 0.00 2019-10-03 23:25:46 2019-10-03 23:31:33 t 1 2 109843 220 0.00 2019-10-03 22:40:17 2019-10-03 23:33:45 t 1 2 109846 220 0.00 2019-10-03 23:36:43 2019-10-03 23:38:37 t 1 1 109849 220 0.00 2019-10-03 23:38:37 2019-10-03 23:47:41 t 1 1 109852 522 0.00 2019-10-03 23:49:32 2019-10-03 23:49:35 t 1 1 109853 472 0.00 2019-10-03 23:38:45 2019-10-03 23:50:00 t 1 1 109856 472 0.00 2019-10-03 23:53:04 2019-10-03 23:53:12 t 1 1 109857 468 0.00 2019-10-03 23:34:12 2019-10-03 23:54:47 t 1 1 109859 532 0.00 2019-10-03 23:51:24 2019-10-03 23:56:23 t 1 1 109864 522 0.00 2019-10-04 00:04:41 2019-10-04 00:05:41 t 1 1 109865 522 0.00 2019-10-04 00:05:44 2019-10-04 00:06:24 t 1 1 109867 422 0.00 2019-10-03 23:51:04 2019-10-04 00:06:46 t 1 1 109873 522 0.00 2019-10-04 00:14:30 2019-10-04 00:14:33 t 1 1 109875 422 0.00 2019-10-04 00:06:46 2019-10-04 00:17:20 t 1 1 109876 296 0.00 2019-10-04 00:16:44 2019-10-04 00:19:05 t 1 2 109878 490 0.00 2019-10-04 00:14:54 2019-10-04 00:19:40 t 1 1 109880 522 0.00 2019-10-04 00:24:49 2019-10-04 00:24:58 t 1 1 109881 468 0.00 2019-10-03 23:54:47 2019-10-04 00:27:35 t 1 1 109888 522 0.00 2019-10-04 00:40:04 2019-10-04 00:40:08 t 1 1 109901 501 0.00 2019-10-04 00:52:29 2019-10-04 00:54:37 t 1 1 109904 501 0.00 2019-10-04 00:56:47 2019-10-04 00:58:54 t 1 1 109905 522 0.00 2019-10-04 01:00:19 2019-10-04 01:00:22 t 1 1 109910 522 0.00 2019-10-04 01:10:29 2019-10-04 01:10:30 t 1 1 109913 461 0.00 2019-10-04 00:32:34 2019-10-04 01:14:01 t 1 2 109916 522 0.00 2019-10-04 01:20:39 2019-10-04 01:20:42 t 1 1 109919 490 0.00 2019-10-04 01:18:05 2019-10-04 01:30:21 t 1 1 109922 522 0.00 2019-10-04 01:38:31 2019-10-04 01:38:35 t 1 1 109924 501 0.00 2019-10-04 00:58:55 2019-10-04 01:43:11 t 1 1 109925 522 0.00 2019-10-04 01:43:40 2019-10-04 01:43:49 t 1 1 109933 468 0.00 2019-10-04 01:39:57 2019-10-04 02:04:16 t 1 1 109934 522 0.00 2019-10-04 02:09:10 2019-10-04 02:09:10 t 1 1 109935 422 0.00 2019-10-04 01:01:13 2019-10-04 02:13:01 t 1 1 109938 503 0.00 2019-10-04 01:59:11 2019-10-04 02:22:19 t 1 1 109941 522 0.00 2019-10-04 02:29:32 2019-10-04 02:29:35 t 1 1 109943 522 0.00 2019-10-04 02:34:37 2019-10-04 02:34:37 t 1 1 109945 220 0.00 2019-10-04 02:16:06 2019-10-04 02:41:49 t 1 1 109948 445 0.00 2019-10-04 00:31:08 2019-10-04 02:44:20 t 1 1 109954 522 0.00 2019-10-04 02:59:55 2019-10-04 03:00:03 t 1 1 109957 522 0.00 2019-10-04 03:10:12 2019-10-04 03:10:14 t 1 1 109961 501 0.00 2019-10-04 03:11:29 2019-10-04 03:17:07 t 1 1 109963 522 0.00 2019-10-04 03:20:21 2019-10-04 03:20:35 t 1 1 109968 501 0.00 2019-10-04 03:24:07 2019-10-04 03:26:16 t 1 1 109972 422 0.00 2019-10-04 03:16:19 2019-10-04 03:32:26 t 1 1 109973 501 0.00 2019-10-04 03:30:49 2019-10-04 03:33:04 t 1 1 109974 522 0.00 2019-10-04 03:34:47 2019-10-04 03:34:59 t 1 1 109980 501 0.00 2019-10-04 03:39:37 2019-10-04 03:41:40 t 1 1 109983 501 0.00 2019-10-04 03:44:29 2019-10-04 03:46:37 t 1 1 109987 501 0.00 2019-10-04 03:49:01 2019-10-04 03:51:11 t 1 1 109989 501 0.00 2019-10-04 03:53:35 2019-10-04 03:55:48 t 1 1 109990 522 0.00 2019-10-04 03:55:48 2019-10-04 03:55:49 t 1 1 109992 501 0.00 2019-10-04 03:58:19 2019-10-04 04:00:28 t 1 1 109994 422 0.00 2019-10-04 03:48:11 2019-10-04 04:04:02 t 1 1 109997 501 0.00 2019-10-04 04:05:21 2019-10-04 04:08:50 t 1 1 109998 522 0.00 2019-10-04 04:11:05 2019-10-04 04:11:11 t 1 1 110000 422 0.00 2019-10-04 04:04:02 2019-10-04 04:19:57 t 1 1 110008 522 0.00 2019-10-04 04:27:04 2019-10-04 04:27:14 t 1 1 110009 522 0.00 2019-10-04 04:28:20 2019-10-04 04:28:32 t 1 1 110012 522 0.00 2019-10-04 04:35:30 2019-10-04 04:35:31 t 1 1 110013 522 0.00 2019-10-04 04:36:03 2019-10-04 04:36:03 t 1 1 110015 422 0.00 2019-10-04 04:19:57 2019-10-04 04:36:19 t 1 1 110017 522 0.00 2019-10-04 04:40:35 2019-10-04 04:40:45 t 1 1 110020 522 0.00 2019-10-04 04:50:09 2019-10-04 04:50:12 t 1 1 110030 501 0.00 2019-10-04 05:05:18 2019-10-04 05:05:20 t 1 1 110031 501 0.00 2019-10-04 05:06:12 2019-10-04 05:06:13 t 1 1 110032 422 0.00 2019-10-04 05:03:14 2019-10-04 05:06:59 t 1 1 110036 501 0.00 2019-10-04 05:10:18 2019-10-04 05:10:19 t 1 1 110042 422 0.00 2019-10-04 05:10:46 2019-10-04 05:13:59 t 1 1 110043 501 0.00 2019-10-04 05:14:21 2019-10-04 05:14:22 t 1 1 110047 522 0.00 2019-10-04 05:26:17 2019-10-04 05:26:20 t 1 1 110052 522 0.00 2019-10-04 05:36:40 2019-10-04 05:36:41 t 1 1 110056 522 0.00 2019-10-04 05:51:53 2019-10-04 05:51:55 t 1 1 110058 520 0.00 2019-10-04 05:47:46 2019-10-04 05:54:46 t 1 1 110062 522 0.00 2019-10-04 06:01:50 2019-10-04 06:02:07 t 1 1 110064 522 0.00 2019-10-04 06:06:54 2019-10-04 06:06:56 t 1 1 110065 522 0.00 2019-10-04 06:12:00 2019-10-04 06:12:02 t 1 1 110070 532 0.00 2019-10-04 06:24:41 2019-10-04 06:28:44 t 1 1 110072 532 0.00 2019-10-04 06:28:44 2019-10-04 06:32:30 t 1 1 110073 516 0.00 2019-10-04 06:19:34 2019-10-04 06:35:30 t 1 1 110075 532 0.00 2019-10-04 06:38:04 2019-10-04 06:43:22 t 1 1 110080 532 0.00 2019-10-04 06:43:22 2019-10-04 06:47:32 t 1 1 110082 522 0.00 2019-10-04 06:50:00 2019-10-04 06:50:00 t 1 1 110088 522 0.00 2019-10-04 06:55:02 2019-10-04 06:55:04 t 1 1 110090 532 0.00 2019-10-04 06:56:50 2019-10-04 06:58:47 t 1 1 110092 422 0.00 2019-10-04 05:51:04 2019-10-04 07:03:20 t 1 1 110095 522 0.00 2019-10-04 07:10:42 2019-10-04 07:10:43 t 1 1 110096 306 0.00 2019-10-04 07:13:51 2019-10-04 07:15:09 t 1 1 110102 522 0.00 2019-10-04 07:35:05 2019-10-04 07:35:32 t 1 1 110105 522 0.00 2019-10-04 07:45:34 2019-10-04 07:45:45 t 1 1 110106 522 0.00 2019-10-04 07:50:42 2019-10-04 07:51:05 t 1 1 110109 522 0.00 2019-10-04 07:59:42 2019-10-04 07:59:47 t 1 1 110110 306 0.00 2019-10-04 07:36:08 2019-10-04 08:00:54 t 1 1 110111 522 0.00 2019-10-04 08:01:05 2019-10-04 08:01:06 t 1 1 110115 522 0.00 2019-10-04 08:10:57 2019-10-04 08:11:00 t 1 1 110116 445 0.00 2019-10-04 07:57:30 2019-10-04 08:12:15 t 1 1 110125 522 0.00 2019-10-04 08:31:12 2019-10-04 08:31:13 t 1 1 109899 522 0.00 2019-10-04 00:53:30 2019-10-04 00:53:31 t 1 1 109902 522 0.00 2019-10-04 00:55:13 2019-10-04 00:55:14 t 1 1 109906 422 0.00 2019-10-04 00:48:46 2019-10-04 01:01:13 t 1 1 109908 522 0.00 2019-10-04 01:04:52 2019-10-04 01:05:02 t 1 1 109911 522 0.00 2019-10-04 01:10:42 2019-10-04 01:10:43 t 1 1 109917 522 0.00 2019-10-04 01:25:42 2019-10-04 01:25:45 t 1 1 109920 522 0.00 2019-10-04 01:33:24 2019-10-04 01:33:27 t 1 1 109926 522 0.00 2019-10-04 01:48:54 2019-10-04 01:48:56 t 1 1 109927 522 0.00 2019-10-04 01:49:07 2019-10-04 01:49:10 t 1 1 109929 522 0.00 2019-10-04 01:53:57 2019-10-04 01:54:00 t 1 1 109931 503 0.00 2019-10-04 01:30:10 2019-10-04 01:59:11 t 1 1 109932 522 0.00 2019-10-04 02:04:04 2019-10-04 02:04:06 t 1 1 109944 522 0.00 2019-10-04 02:39:40 2019-10-04 02:39:41 t 1 1 109946 503 0.00 2019-10-04 02:26:27 2019-10-04 02:42:22 t 1 1 109947 422 0.00 2019-10-04 02:27:54 2019-10-04 02:44:20 t 1 1 109949 522 0.00 2019-10-04 02:44:43 2019-10-04 02:44:44 t 1 1 109952 522 0.00 2019-10-04 02:55:37 2019-10-04 02:55:49 t 1 1 109958 501 0.00 2019-10-04 02:59:50 2019-10-04 03:11:29 t 1 1 109959 422 0.00 2019-10-04 03:00:35 2019-10-04 03:16:19 t 1 1 109964 412 0.00 2019-10-04 01:17:03 2019-10-04 03:21:05 t 1 1 109966 501 0.00 2019-10-04 03:22:00 2019-10-04 03:24:07 t 1 1 109971 501 0.00 2019-10-04 03:28:23 2019-10-04 03:30:49 t 1 1 109978 501 0.00 2019-10-04 03:37:29 2019-10-04 03:39:37 t 1 1 109981 501 0.00 2019-10-04 03:41:40 2019-10-04 03:44:29 t 1 1 109984 422 0.00 2019-10-04 03:32:26 2019-10-04 03:48:11 t 1 1 109985 501 0.00 2019-10-04 03:46:37 2019-10-04 03:49:01 t 1 1 109995 501 0.00 2019-10-04 04:00:28 2019-10-04 04:05:21 t 1 1 110004 522 0.00 2019-10-04 04:20:24 2019-10-04 04:22:20 t 1 1 110005 522 0.00 2019-10-04 04:22:46 2019-10-04 04:22:58 t 1 1 110006 522 0.00 2019-10-04 04:24:26 2019-10-04 04:24:38 t 1 1 110011 522 0.00 2019-10-04 04:35:02 2019-10-04 04:35:06 t 1 1 110016 422 0.00 2019-10-04 04:36:19 2019-10-04 04:38:20 t 1 1 110025 422 0.00 2019-10-04 04:51:26 2019-10-04 04:56:56 t 1 1 110026 220 0.00 2019-10-04 04:53:31 2019-10-04 04:57:26 t 1 1 110027 522 0.00 2019-10-04 05:00:55 2019-10-04 05:00:56 t 1 1 110029 501 0.00 2019-10-04 04:50:20 2019-10-04 05:05:10 t 1 1 110037 422 0.00 2019-10-04 05:06:59 2019-10-04 05:10:46 t 1 1 110039 522 0.00 2019-10-04 05:11:17 2019-10-04 05:11:19 t 1 1 110040 501 0.00 2019-10-04 05:11:36 2019-10-04 05:12:18 t 1 1 110041 501 0.00 2019-10-04 05:13:21 2019-10-04 05:13:53 t 1 1 110046 522 0.00 2019-10-04 05:21:15 2019-10-04 05:21:16 t 1 1 110048 422 0.00 2019-10-04 05:13:59 2019-10-04 05:26:27 t 1 1 110050 501 0.00 2019-10-04 05:17:14 2019-10-04 05:35:45 t 1 1 110051 522 0.00 2019-10-04 05:36:27 2019-10-04 05:36:28 t 1 1 110054 422 0.00 2019-10-04 05:26:27 2019-10-04 05:51:04 t 1 1 110055 522 0.00 2019-10-04 05:51:40 2019-10-04 05:51:41 t 1 1 110057 522 0.00 2019-10-04 05:53:07 2019-10-04 05:53:17 t 1 1 110059 522 0.00 2019-10-04 05:54:54 2019-10-04 05:55:17 t 1 1 110060 522 0.00 2019-10-04 05:56:43 2019-10-04 05:56:44 t 1 1 110061 522 0.00 2019-10-04 05:57:45 2019-10-04 05:57:47 t 1 1 110067 522 0.00 2019-10-04 06:17:07 2019-10-04 06:17:08 t 1 1 110068 522 0.00 2019-10-04 06:22:09 2019-10-04 06:22:10 t 1 1 110071 522 0.00 2019-10-04 06:29:35 2019-10-04 06:29:37 t 1 1 110074 532 0.00 2019-10-04 06:32:30 2019-10-04 06:38:04 t 1 1 110076 522 0.00 2019-10-04 06:44:54 2019-10-04 06:44:56 t 1 1 110079 522 0.00 2019-10-04 06:46:22 2019-10-04 06:46:28 t 1 1 110081 522 0.00 2019-10-04 06:48:22 2019-10-04 06:48:24 t 1 1 110085 532 0.00 2019-10-04 06:52:34 2019-10-04 06:52:37 t 1 1 110086 522 0.00 2019-10-04 06:54:08 2019-10-04 06:54:22 t 1 1 110094 522 0.00 2019-10-04 07:10:35 2019-10-04 07:10:37 t 1 1 110098 522 0.00 2019-10-04 07:20:20 2019-10-04 07:20:20 t 1 1 110101 522 0.00 2019-10-04 07:30:26 2019-10-04 07:30:27 t 1 1 110104 522 0.00 2019-10-04 07:40:30 2019-10-04 07:40:31 t 1 1 110108 445 0.00 2019-10-04 03:47:46 2019-10-04 07:57:30 t 1 1 110117 516 0.00 2019-10-04 08:07:27 2019-10-04 08:12:27 t 1 1 110118 516 0.00 2019-10-04 08:12:49 2019-10-04 08:15:41 t 1 1 110119 461 0.00 2019-10-04 08:02:41 2019-10-04 08:16:01 t 1 2 110121 498 0.00 2019-10-04 08:02:41 2019-10-04 08:21:12 t 1 2 110124 306 0.00 2019-10-04 08:27:05 2019-10-04 08:29:54 t 1 1 110129 522 0.00 2019-10-04 08:42:53 2019-10-04 08:42:54 t 1 1 110130 522 0.00 2019-10-04 08:43:06 2019-10-04 08:43:08 t 1 1 110134 522 0.00 2019-10-04 08:54:02 2019-10-04 08:54:07 t 1 1 110136 451 0.00 2019-10-04 08:54:11 2019-10-04 08:57:50 t 1 1 110140 522 0.00 2019-10-04 09:06:20 2019-10-04 09:06:30 t 1 1 110146 522 0.00 2019-10-04 09:26:47 2019-10-04 09:26:48 t 1 1 110147 306 0.00 2019-10-04 09:21:35 2019-10-04 09:30:01 t 1 1 110151 522 0.00 2019-10-04 09:34:43 2019-10-04 09:35:19 t 1 1 110152 445 0.00 2019-10-04 09:34:34 2019-10-04 09:35:29 t 1 1 110154 445 0.00 2019-10-04 09:35:28 2019-10-04 09:36:30 t 1 1 110161 445 0.00 2019-10-04 09:45:08 2019-10-04 09:47:20 t 1 1 110163 522 0.00 2019-10-04 09:51:12 2019-10-04 09:51:17 t 1 1 110164 522 0.00 2019-10-04 09:51:31 2019-10-04 09:51:32 t 1 1 110166 522 0.00 2019-10-04 09:51:25 2019-10-04 09:53:20 t 1 1 110171 522 0.00 2019-10-04 09:55:56 2019-10-04 09:56:39 t 1 1 110174 522 0.00 2019-10-04 09:57:18 2019-10-04 09:57:56 t 1 1 110175 520 0.00 2019-10-04 09:56:04 2019-10-04 10:00:45 t 1 1 110176 522 0.00 2019-10-04 10:01:13 2019-10-04 10:01:24 t 1 1 110178 522 0.00 2019-10-04 10:05:34 2019-10-04 10:05:45 t 1 1 110179 522 0.00 2019-10-04 10:06:04 2019-10-04 10:06:05 t 1 1 110185 461 0.00 2019-10-04 08:18:01 2019-10-04 10:16:15 t 1 2 110186 306 0.00 2019-10-04 10:12:37 2019-10-04 10:18:38 t 1 1 110187 526 0.00 2019-10-04 10:14:37 2019-10-04 10:20:11 t 1 1 110192 514 0.00 2019-10-04 10:11:56 2019-10-04 10:29:24 t 1 1 110197 520 0.00 2019-10-04 10:00:45 2019-10-04 10:37:10 t 1 1 110203 522 0.00 2019-10-04 10:42:12 2019-10-04 10:58:52 t 1 1 110204 520 0.00 2019-10-04 10:46:14 2019-10-04 11:00:17 t 1 1 110208 516 0.00 2019-10-04 11:02:41 2019-10-04 11:05:36 t 1 1 110209 522 0.00 2019-10-04 10:58:52 2019-10-04 11:06:40 t 1 1 110212 526 0.00 2019-10-04 11:10:54 2019-10-04 11:23:05 t 1 1 110215 522 0.00 2019-10-04 11:06:40 2019-10-04 11:29:49 t 1 1 110217 512 0.00 2019-10-04 11:19:36 2019-10-04 11:34:46 t 1 1 110220 522 0.00 2019-10-04 11:40:30 2019-10-04 11:44:10 t 1 1 110222 522 0.00 2019-10-04 11:48:54 2019-10-04 11:49:42 t 1 1 110230 468 0.00 2019-10-04 11:51:42 2019-10-04 11:59:24 t 1 1 110231 220 0.00 2019-10-04 09:09:05 2019-10-04 12:04:15 t 1 2 110234 416 0.00 2019-10-04 11:52:26 2019-10-04 12:06:30 t 1 1 110239 445 0.00 2019-10-04 10:36:02 2019-10-04 12:09:29 t 1 1 110038 522 0.00 2019-10-04 05:11:03 2019-10-04 05:11:05 t 1 1 110044 522 0.00 2019-10-04 05:16:10 2019-10-04 05:16:13 t 1 1 110045 522 0.00 2019-10-04 05:19:14 2019-10-04 05:19:24 t 1 1 110049 522 0.00 2019-10-04 05:31:28 2019-10-04 05:32:02 t 1 1 110053 522 0.00 2019-10-04 05:41:29 2019-10-04 05:41:32 t 1 1 110063 522 0.00 2019-10-04 06:02:18 2019-10-04 06:02:19 t 1 1 110066 522 0.00 2019-10-04 06:12:13 2019-10-04 06:12:16 t 1 1 110069 522 0.00 2019-10-04 06:24:27 2019-10-04 06:24:32 t 1 1 110077 522 0.00 2019-10-04 06:45:07 2019-10-04 06:45:10 t 1 1 110078 522 0.00 2019-10-04 06:46:15 2019-10-04 06:46:17 t 1 1 110083 532 0.00 2019-10-04 06:47:32 2019-10-04 06:51:13 t 1 1 110084 532 0.00 2019-10-04 06:51:13 2019-10-04 06:52:29 t 1 1 110087 522 0.00 2019-10-04 06:54:22 2019-10-04 06:54:24 t 1 1 110089 532 0.00 2019-10-04 06:52:47 2019-10-04 06:56:50 t 1 1 110091 522 0.00 2019-10-04 07:00:06 2019-10-04 07:00:07 t 1 1 110093 522 0.00 2019-10-04 07:10:09 2019-10-04 07:10:28 t 1 1 110097 522 0.00 2019-10-04 07:15:15 2019-10-04 07:15:18 t 1 1 110099 306 0.00 2019-10-04 07:15:09 2019-10-04 07:25:21 t 1 1 110100 522 0.00 2019-10-04 07:25:22 2019-10-04 07:25:23 t 1 1 110103 306 0.00 2019-10-04 07:25:21 2019-10-04 07:36:08 t 1 1 110107 522 0.00 2019-10-04 07:55:47 2019-10-04 07:56:02 t 1 1 110112 522 0.00 2019-10-04 08:01:11 2019-10-04 08:01:13 t 1 1 110113 522 0.00 2019-10-04 08:05:28 2019-10-04 08:05:38 t 1 1 110114 522 0.00 2019-10-04 08:05:51 2019-10-04 08:06:01 t 1 1 110120 522 0.00 2019-10-04 08:15:41 2019-10-04 08:16:41 t 1 1 110122 379 0.00 2019-10-04 08:07:30 2019-10-04 08:23:55 t 1 1 110123 522 0.00 2019-10-04 08:26:16 2019-10-04 08:26:18 t 1 1 110126 456 0.00 2019-10-04 08:32:04 2019-10-04 08:38:46 t 1 1 110127 522 0.00 2019-10-04 08:35:21 2019-10-04 08:39:33 t 1 1 110128 522 0.00 2019-10-04 08:39:41 2019-10-04 08:42:35 t 1 1 110131 522 0.00 2019-10-04 08:45:32 2019-10-04 08:47:34 t 1 1 110133 522 0.00 2019-10-04 08:51:23 2019-10-04 08:51:26 t 1 1 110135 522 0.00 2019-10-04 08:56:26 2019-10-04 08:56:39 t 1 1 110139 522 0.00 2019-10-04 09:00:19 2019-10-04 09:01:18 t 1 1 110145 379 0.00 2019-10-04 08:23:54 2019-10-04 09:26:35 t 1 1 110149 445 0.00 2019-10-04 09:31:25 2019-10-04 09:33:18 t 1 1 110150 445 0.00 2019-10-04 09:34:03 2019-10-04 09:34:27 t 1 1 110153 522 0.00 2019-10-04 09:35:25 2019-10-04 09:35:33 t 1 1 110155 522 0.00 2019-10-04 09:37:50 2019-10-04 09:37:54 t 1 1 110156 522 0.00 2019-10-04 09:40:20 2019-10-04 09:40:20 t 1 1 110162 247 0.00 2019-10-04 09:48:45 2019-10-04 09:49:29 t 1 2 110169 520 0.00 2019-10-04 09:45:42 2019-10-04 09:54:50 t 1 1 110170 520 0.00 2019-10-04 09:54:49 2019-10-04 09:56:05 t 1 1 110177 522 0.00 2019-10-04 10:04:36 2019-10-04 10:05:24 t 1 1 110181 522 0.00 2019-10-04 10:06:34 2019-10-04 10:11:16 t 1 1 110189 220 0.00 2019-10-04 09:52:45 2019-10-04 10:24:46 t 1 1 110193 220 0.00 2019-10-04 10:26:45 2019-10-04 10:29:49 t 1 1 110194 522 0.00 2019-10-04 10:19:30 2019-10-04 10:30:49 t 1 1 110196 445 0.00 2019-10-04 09:56:41 2019-10-04 10:36:02 t 1 1 110198 526 0.00 2019-10-04 10:31:59 2019-10-04 10:37:11 t 1 1 110199 520 0.00 2019-10-04 10:38:35 2019-10-04 10:39:48 t 1 1 110200 522 0.00 2019-10-04 10:30:49 2019-10-04 10:42:12 t 1 1 110201 451 0.00 2019-10-04 10:39:04 2019-10-04 10:43:33 t 1 1 110202 520 0.00 2019-10-04 10:39:48 2019-10-04 10:46:14 t 1 1 110210 526 0.00 2019-10-04 11:04:17 2019-10-04 11:10:54 t 1 1 110214 306 0.00 2019-10-04 11:02:59 2019-10-04 11:28:25 t 1 1 110216 526 0.00 2019-10-04 11:23:05 2019-10-04 11:33:56 t 1 1 110218 522 0.00 2019-10-04 11:29:49 2019-10-04 11:40:30 t 1 1 110223 468 0.00 2019-10-04 11:14:28 2019-10-04 11:51:42 t 1 1 110224 520 0.00 2019-10-04 11:00:17 2019-10-04 11:52:21 t 1 1 110226 416 0.00 2019-10-04 10:41:01 2019-10-04 11:52:26 t 1 1 110228 499 0.00 2019-10-04 11:06:27 2019-10-04 11:55:05 t 1 1 110232 412 0.00 2019-10-04 04:50:24 2019-10-04 12:04:53 t 1 1 110235 522 0.00 2019-10-04 12:06:19 2019-10-04 12:06:31 t 1 1 110236 306 0.00 2019-10-04 12:02:48 2019-10-04 12:07:38 t 1 1 110242 306 0.00 2019-10-04 12:07:37 2019-10-04 12:12:45 t 1 1 110243 522 0.00 2019-10-04 12:12:48 2019-10-04 12:12:59 t 1 1 110244 522 0.00 2019-10-04 12:14:34 2019-10-04 12:14:38 t 1 1 110245 220 0.00 2019-10-04 11:56:35 2019-10-04 12:16:49 t 1 1 110251 499 0.00 2019-10-04 12:23:01 2019-10-04 12:26:29 t 1 1 110253 422 0.00 2019-10-04 12:21:37 2019-10-04 12:30:02 t 1 1 110254 499 0.00 2019-10-04 12:26:59 2019-10-04 12:30:08 t 1 1 110258 499 0.00 2019-10-04 12:37:19 2019-10-04 12:38:01 t 1 1 110260 522 0.00 2019-10-04 12:36:18 2019-10-04 12:43:24 t 1 1 110261 522 0.00 2019-10-04 12:44:23 2019-10-04 12:44:33 t 1 1 110263 522 0.00 2019-10-04 12:45:10 2019-10-04 12:45:14 t 1 1 110265 361 0.00 2019-10-04 11:49:05 2019-10-04 12:45:52 t 1 2 110266 522 0.00 2019-10-04 12:46:26 2019-10-04 12:46:46 t 1 1 110267 522 0.00 2019-10-04 12:46:57 2019-10-04 12:47:10 t 1 1 110268 522 0.00 2019-10-04 12:47:21 2019-10-04 12:48:25 t 1 1 110272 522 0.00 2019-10-04 12:49:24 2019-10-04 12:49:25 t 1 1 110275 220 0.00 2019-10-04 12:49:19 2019-10-04 12:49:53 t 1 1 110277 522 0.00 2019-10-04 12:50:10 2019-10-04 12:50:12 t 1 1 110288 522 0.00 2019-10-04 12:51:59 2019-10-04 12:52:35 t 1 1 110291 522 0.00 2019-10-04 12:52:55 2019-10-04 12:52:56 t 1 1 110292 522 0.00 2019-10-04 12:53:02 2019-10-04 12:53:04 t 1 1 110295 522 0.00 2019-10-04 12:53:24 2019-10-04 12:53:41 t 1 1 110299 522 0.00 2019-10-04 12:54:24 2019-10-04 12:54:25 t 1 1 110302 522 0.00 2019-10-04 12:54:46 2019-10-04 12:56:14 t 1 1 110306 522 0.00 2019-10-04 12:57:07 2019-10-04 12:57:08 t 1 1 110311 522 0.00 2019-10-04 12:57:54 2019-10-04 12:57:55 t 1 1 110312 522 0.00 2019-10-04 12:58:01 2019-10-04 12:58:02 t 1 1 110317 220 0.00 2019-10-04 13:00:42 2019-10-04 13:01:17 t 1 1 110318 422 0.00 2019-10-04 12:57:22 2019-10-04 13:03:01 t 1 1 110319 220 0.00 2019-10-04 13:01:17 2019-10-04 13:05:02 t 1 1 110323 220 0.00 2019-10-04 13:05:34 2019-10-04 13:06:18 t 1 1 110326 522 0.00 2019-10-04 13:06:38 2019-10-04 13:06:42 t 1 1 110330 522 0.00 2019-10-04 13:07:09 2019-10-04 13:07:11 t 1 1 110333 522 0.00 2019-10-04 13:07:38 2019-10-04 13:07:41 t 1 1 110337 522 0.00 2019-10-04 13:10:45 2019-10-04 13:10:50 t 1 1 110338 522 0.00 2019-10-04 13:11:21 2019-10-04 13:11:52 t 1 1 110339 220 0.00 2019-10-04 13:06:49 2019-10-04 13:12:25 t 1 1 110340 522 0.00 2019-10-04 13:13:00 2019-10-04 13:13:38 t 1 1 110341 422 0.00 2019-10-04 13:03:01 2019-10-04 13:17:30 t 1 1 110342 514 0.00 2019-10-04 13:01:03 2019-10-04 13:18:02 t 1 1 110344 522 0.00 2019-10-04 13:21:12 2019-10-04 13:22:14 t 1 1 110346 522 0.00 2019-10-04 13:24:00 2019-10-04 13:24:06 t 1 1 110132 306 0.00 2019-10-04 08:39:12 2019-10-04 08:49:37 t 1 1 110137 306 0.00 2019-10-04 08:55:38 2019-10-04 08:58:19 t 1 1 110138 522 0.00 2019-10-04 08:59:42 2019-10-04 08:59:50 t 1 1 110141 522 0.00 2019-10-04 09:10:25 2019-10-04 09:13:23 t 1 1 110142 522 0.00 2019-10-04 09:16:35 2019-10-04 09:16:39 t 1 1 110143 522 0.00 2019-10-04 09:21:40 2019-10-04 09:21:43 t 1 1 110144 445 0.00 2019-10-04 08:12:15 2019-10-04 09:23:37 t 1 1 110148 522 0.00 2019-10-04 09:31:53 2019-10-04 09:32:27 t 1 1 110157 445 0.00 2019-10-04 09:37:00 2019-10-04 09:40:52 t 1 1 110158 522 0.00 2019-10-04 09:40:52 2019-10-04 09:44:51 t 1 1 110159 445 0.00 2019-10-04 09:40:55 2019-10-04 09:45:02 t 1 1 110160 520 0.00 2019-10-04 09:41:17 2019-10-04 09:45:42 t 1 1 110165 522 0.00 2019-10-04 09:51:38 2019-10-04 09:51:39 t 1 1 110167 522 0.00 2019-10-04 09:53:40 2019-10-04 09:53:50 t 1 1 110168 522 0.00 2019-10-04 09:54:36 2019-10-04 09:54:39 t 1 1 110172 445 0.00 2019-10-04 09:46:54 2019-10-04 09:56:42 t 1 1 110173 306 0.00 2019-10-04 09:41:13 2019-10-04 09:57:39 t 1 1 110180 522 0.00 2019-10-04 10:06:16 2019-10-04 10:06:27 t 1 1 110182 522 0.00 2019-10-04 10:13:03 2019-10-04 10:13:04 t 1 1 110183 522 0.00 2019-10-04 10:13:54 2019-10-04 10:13:57 t 1 1 110184 522 0.00 2019-10-04 10:14:44 2019-10-04 10:14:47 t 1 1 110188 220 0.00 2019-10-04 10:11:49 2019-10-04 10:20:57 t 1 2 110190 220 0.00 2019-10-04 10:24:46 2019-10-04 10:25:23 t 1 1 110191 220 0.00 2019-10-04 10:25:22 2019-10-04 10:26:46 t 1 1 110195 526 0.00 2019-10-04 10:20:11 2019-10-04 10:31:59 t 1 1 110205 516 0.00 2019-10-04 11:00:47 2019-10-04 11:02:28 t 1 1 110206 306 0.00 2019-10-04 10:50:33 2019-10-04 11:02:59 t 1 1 110207 526 0.00 2019-10-04 10:54:42 2019-10-04 11:04:17 t 1 1 110211 468 0.00 2019-10-04 11:01:55 2019-10-04 11:12:55 t 1 1 110213 481 0.00 2019-10-04 08:49:07 2019-10-04 11:25:47 t 1 1 110219 451 0.00 2019-10-04 11:39:57 2019-10-04 11:41:47 t 1 1 110221 522 0.00 2019-10-04 11:45:19 2019-10-04 11:46:16 t 1 1 110225 532 0.00 2019-10-04 11:49:01 2019-10-04 11:52:23 t 1 1 110227 306 0.00 2019-10-04 11:41:42 2019-10-04 11:53:38 t 1 1 110229 499 0.00 2019-10-04 11:55:05 2019-10-04 11:56:57 t 1 1 110233 522 0.00 2019-10-04 11:52:34 2019-10-04 12:05:13 t 1 1 110237 416 0.00 2019-10-04 12:06:29 2019-10-04 12:07:46 t 1 1 110238 522 0.00 2019-10-04 12:07:54 2019-10-04 12:08:07 t 1 1 110241 522 0.00 2019-10-04 12:09:20 2019-10-04 12:11:24 t 1 1 110246 499 0.00 2019-10-04 11:56:56 2019-10-04 12:20:52 t 1 1 110248 499 0.00 2019-10-04 12:21:00 2019-10-04 12:21:57 t 1 1 110249 499 0.00 2019-10-04 12:22:01 2019-10-04 12:22:57 t 1 1 110250 522 0.00 2019-10-04 12:14:45 2019-10-04 12:25:55 t 1 1 110256 499 0.00 2019-10-04 12:30:08 2019-10-04 12:33:50 t 1 1 110257 522 0.00 2019-10-04 12:36:09 2019-10-04 12:36:09 t 1 1 110262 422 0.00 2019-10-04 12:30:02 2019-10-04 12:44:47 t 1 1 110271 220 0.00 2019-10-04 12:45:44 2019-10-04 12:49:20 t 1 1 110274 522 0.00 2019-10-04 12:49:38 2019-10-04 12:49:39 t 1 1 110276 522 0.00 2019-10-04 12:50:04 2019-10-04 12:50:04 t 1 1 110280 522 0.00 2019-10-04 12:51:24 2019-10-04 12:51:25 t 1 1 110283 522 0.00 2019-10-04 12:51:37 2019-10-04 12:51:38 t 1 1 110286 522 0.00 2019-10-04 12:51:52 2019-10-04 12:51:53 t 1 1 110290 522 0.00 2019-10-04 12:52:48 2019-10-04 12:52:49 t 1 1 110294 522 0.00 2019-10-04 12:53:10 2019-10-04 12:53:11 t 1 1 110298 522 0.00 2019-10-04 12:54:17 2019-10-04 12:54:18 t 1 1 110304 522 0.00 2019-10-04 12:56:35 2019-10-04 12:56:47 t 1 1 110305 522 0.00 2019-10-04 12:56:59 2019-10-04 12:57:01 t 1 1 110308 462 0.00 2019-10-04 12:22:59 2019-10-04 12:57:25 t 1 1 110310 522 0.00 2019-10-04 12:57:45 2019-10-04 12:57:48 t 1 1 110314 220 0.00 2019-10-04 12:56:34 2019-10-04 13:00:07 t 1 1 110315 220 0.00 2019-10-04 13:00:07 2019-10-04 13:00:43 t 1 1 110322 522 0.00 2019-10-04 13:06:16 2019-10-04 13:06:17 t 1 1 110325 522 0.00 2019-10-04 13:06:30 2019-10-04 13:06:32 t 1 1 110328 522 0.00 2019-10-04 13:06:56 2019-10-04 13:06:57 t 1 1 110329 522 0.00 2019-10-04 13:07:02 2019-10-04 13:07:04 t 1 1 110332 522 0.00 2019-10-04 13:07:24 2019-10-04 13:07:25 t 1 1 110343 526 0.00 2019-10-04 11:52:24 2019-10-04 13:18:04 t 1 1 110345 422 0.00 2019-10-04 13:17:30 2019-10-04 13:22:29 t 1 1 110347 361 0.00 2019-10-04 13:25:16 2019-10-04 13:28:40 t 1 2 110349 522 0.00 2019-10-04 13:29:06 2019-10-04 13:31:54 t 1 1 110352 522 0.00 2019-10-04 13:34:22 2019-10-04 13:35:06 t 1 1 110356 522 0.00 2019-10-04 13:37:34 2019-10-04 13:42:28 t 1 1 110363 470 0.00 2019-10-04 13:31:50 2019-10-04 13:51:05 t 1 1 110366 522 0.00 2019-10-04 13:51:28 2019-10-04 13:52:16 t 1 1 110367 522 0.00 2019-10-04 13:52:21 2019-10-04 13:53:08 t 1 1 110371 522 0.00 2019-10-04 13:53:15 2019-10-04 13:54:47 t 1 1 110375 379 0.00 2019-10-04 12:51:42 2019-10-04 13:57:57 t 1 1 110376 422 0.00 2019-10-04 13:54:13 2019-10-04 13:58:10 t 1 1 110380 522 0.00 2019-10-04 14:00:11 2019-10-04 14:00:43 t 1 1 110381 522 0.00 2019-10-04 14:00:46 2019-10-04 14:01:34 t 1 1 110384 522 0.00 2019-10-04 14:04:39 2019-10-04 14:04:59 t 1 1 110387 220 0.00 2019-10-04 13:12:25 2019-10-04 14:06:02 t 1 1 110388 470 0.00 2019-10-04 13:54:18 2019-10-04 14:06:21 t 1 1 110390 522 0.00 2019-10-04 14:07:07 2019-10-04 14:08:40 t 1 1 110393 220 0.00 2019-10-04 14:06:02 2019-10-04 14:09:07 t 1 1 110395 522 0.00 2019-10-04 14:08:46 2019-10-04 14:09:37 t 1 1 110398 522 0.00 2019-10-04 14:10:34 2019-10-04 14:11:24 t 1 1 110399 522 0.00 2019-10-04 14:11:30 2019-10-04 14:12:19 t 1 1 110403 522 0.00 2019-10-04 14:13:50 2019-10-04 14:15:22 t 1 1 110408 522 0.00 2019-10-04 14:17:13 2019-10-04 14:17:18 t 1 1 110414 522 0.00 2019-10-04 14:20:02 2019-10-04 14:20:40 t 1 1 110416 481 0.00 2019-10-04 14:17:59 2019-10-04 14:21:47 t 1 1 110417 522 0.00 2019-10-04 14:21:44 2019-10-04 14:22:26 t 1 1 110419 522 0.00 2019-10-04 14:22:35 2019-10-04 14:23:25 t 1 1 110422 522 0.00 2019-10-04 14:24:28 2019-10-04 14:25:11 t 1 1 110427 220 0.00 2019-10-04 13:21:38 2019-10-04 14:27:46 t 1 1 110428 522 0.00 2019-10-04 14:27:33 2019-10-04 14:28:23 t 1 1 110429 481 0.00 2019-10-04 14:21:59 2019-10-04 14:29:04 t 1 1 110431 522 0.00 2019-10-04 14:29:21 2019-10-04 14:30:06 t 1 1 110434 522 0.00 2019-10-04 14:30:21 2019-10-04 14:31:02 t 1 1 110436 522 0.00 2019-10-04 14:31:07 2019-10-04 14:32:21 t 1 1 110437 522 0.00 2019-10-04 14:32:30 2019-10-04 14:33:35 t 1 1 110438 522 0.00 2019-10-04 14:33:40 2019-10-04 14:34:26 t 1 1 110439 522 0.00 2019-10-04 14:34:32 2019-10-04 14:36:09 t 1 1 110440 522 0.00 2019-10-04 14:36:14 2019-10-04 14:37:03 t 1 1 110447 522 0.00 2019-10-04 14:41:01 2019-10-04 14:42:39 t 1 1 110449 522 0.00 2019-10-04 14:44:31 2019-10-04 14:45:14 t 1 1 110240 520 0.00 2019-10-04 12:00:43 2019-10-04 12:10:40 t 1 1 110247 499 0.00 2019-10-04 12:19:56 2019-10-04 12:20:56 t 1 1 110252 522 0.00 2019-10-04 12:28:00 2019-10-04 12:28:23 t 1 1 110255 522 0.00 2019-10-04 12:33:03 2019-10-04 12:33:13 t 1 1 110259 499 0.00 2019-10-04 12:33:50 2019-10-04 12:38:15 t 1 1 110264 220 0.00 2019-10-04 12:16:49 2019-10-04 12:45:44 t 1 1 110269 522 0.00 2019-10-04 12:48:31 2019-10-04 12:48:32 t 1 1 110270 522 0.00 2019-10-04 12:48:45 2019-10-04 12:49:16 t 1 1 110273 522 0.00 2019-10-04 12:49:31 2019-10-04 12:49:32 t 1 1 110278 522 0.00 2019-10-04 12:50:17 2019-10-04 12:50:19 t 1 1 110279 522 0.00 2019-10-04 12:50:25 2019-10-04 12:51:10 t 1 1 110281 422 0.00 2019-10-04 12:44:47 2019-10-04 12:51:25 t 1 1 110282 522 0.00 2019-10-04 12:51:30 2019-10-04 12:51:31 t 1 1 110284 379 0.00 2019-10-04 09:56:13 2019-10-04 12:51:42 t 1 1 110285 522 0.00 2019-10-04 12:51:44 2019-10-04 12:51:46 t 1 1 110287 220 0.00 2019-10-04 12:49:53 2019-10-04 12:52:29 t 1 1 110289 522 0.00 2019-10-04 12:52:41 2019-10-04 12:52:42 t 1 1 110293 220 0.00 2019-10-04 12:52:29 2019-10-04 12:53:06 t 1 1 110296 522 0.00 2019-10-04 12:53:52 2019-10-04 12:53:55 t 1 1 110297 522 0.00 2019-10-04 12:54:01 2019-10-04 12:54:04 t 1 1 110300 522 0.00 2019-10-04 12:54:31 2019-10-04 12:54:32 t 1 1 110301 247 0.00 2019-10-04 12:54:57 2019-10-04 12:56:05 t 1 2 110303 220 0.00 2019-10-04 12:53:05 2019-10-04 12:56:34 t 1 1 110307 422 0.00 2019-10-04 12:51:25 2019-10-04 12:57:22 t 1 1 110309 522 0.00 2019-10-04 12:57:22 2019-10-04 12:57:35 t 1 1 110313 522 0.00 2019-10-04 13:00:00 2019-10-04 13:00:03 t 1 1 110316 522 0.00 2019-10-04 13:00:33 2019-10-04 13:00:54 t 1 1 110320 220 0.00 2019-10-04 13:05:02 2019-10-04 13:05:34 t 1 1 110321 522 0.00 2019-10-04 13:05:58 2019-10-04 13:06:03 t 1 1 110324 522 0.00 2019-10-04 13:06:23 2019-10-04 13:06:24 t 1 1 110327 220 0.00 2019-10-04 13:06:18 2019-10-04 13:06:49 t 1 1 110331 522 0.00 2019-10-04 13:07:17 2019-10-04 13:07:18 t 1 1 110334 522 0.00 2019-10-04 13:07:49 2019-10-04 13:07:50 t 1 1 110335 522 0.00 2019-10-04 13:07:56 2019-10-04 13:07:58 t 1 1 110336 522 0.00 2019-10-04 13:08:03 2019-10-04 13:09:54 t 1 1 110348 422 0.00 2019-10-04 13:22:29 2019-10-04 13:31:51 t 1 1 110350 522 0.00 2019-10-04 13:33:02 2019-10-04 13:33:10 t 1 1 110351 522 0.00 2019-10-04 13:33:30 2019-10-04 13:34:16 t 1 1 110354 522 0.00 2019-10-04 13:36:25 2019-10-04 13:36:55 t 1 1 110357 522 0.00 2019-10-04 13:44:40 2019-10-04 13:45:28 t 1 1 110358 422 0.00 2019-10-04 13:38:11 2019-10-04 13:46:02 t 1 1 110359 522 0.00 2019-10-04 13:45:32 2019-10-04 13:46:58 t 1 1 110360 522 0.00 2019-10-04 13:47:13 2019-10-04 13:48:42 t 1 1 110361 522 0.00 2019-10-04 13:48:48 2019-10-04 13:49:32 t 1 1 110364 522 0.00 2019-10-04 13:49:38 2019-10-04 13:51:23 t 1 1 110372 522 0.00 2019-10-04 13:54:52 2019-10-04 13:55:40 t 1 1 110373 522 0.00 2019-10-04 13:55:54 2019-10-04 13:56:33 t 1 1 110374 522 0.00 2019-10-04 13:56:42 2019-10-04 13:57:26 t 1 1 110379 522 0.00 2019-10-04 13:59:27 2019-10-04 14:00:05 t 1 1 110386 522 0.00 2019-10-04 14:05:05 2019-10-04 14:05:54 t 1 1 110391 422 0.00 2019-10-04 14:05:19 2019-10-04 14:08:44 t 1 1 110392 379 0.00 2019-10-04 13:57:57 2019-10-04 14:08:56 t 1 1 110394 430 0.00 2019-10-04 13:59:47 2019-10-04 14:09:23 t 1 1 110397 481 0.00 2019-10-04 11:25:47 2019-10-04 14:10:42 t 1 1 110400 422 0.00 2019-10-04 14:08:44 2019-10-04 14:12:20 t 1 1 110402 522 0.00 2019-10-04 14:13:20 2019-10-04 14:13:44 t 1 1 110404 445 0.00 2019-10-04 13:53:26 2019-10-04 14:16:07 t 1 1 110407 462 0.00 2019-10-04 13:45:05 2019-10-04 14:17:16 t 1 1 110410 522 0.00 2019-10-04 14:17:24 2019-10-04 14:17:58 t 1 1 110411 522 0.00 2019-10-04 14:18:03 2019-10-04 14:18:53 t 1 1 110412 445 0.00 2019-10-04 14:16:07 2019-10-04 14:19:19 t 1 1 110415 522 0.00 2019-10-04 14:20:49 2019-10-04 14:21:34 t 1 1 110418 422 0.00 2019-10-04 14:12:20 2019-10-04 14:22:33 t 1 1 110425 522 0.00 2019-10-04 14:26:13 2019-10-04 14:26:34 t 1 1 110426 522 0.00 2019-10-04 14:26:39 2019-10-04 14:27:28 t 1 1 110433 462 0.00 2019-10-04 14:17:16 2019-10-04 14:30:51 t 1 1 110441 481 0.00 2019-10-04 14:29:11 2019-10-04 14:37:07 t 1 1 110443 522 0.00 2019-10-04 14:37:08 2019-10-04 14:39:01 t 1 1 110445 522 0.00 2019-10-04 14:39:36 2019-10-04 14:39:57 t 1 1 110451 462 0.00 2019-10-04 14:32:09 2019-10-04 14:46:03 t 1 1 110452 451 0.00 2019-10-04 14:43:29 2019-10-04 14:46:31 t 1 1 110455 501 0.00 2019-10-04 14:23:24 2019-10-04 14:47:36 t 1 1 110458 522 0.00 2019-10-04 14:47:43 2019-10-04 14:48:28 t 1 1 110459 522 0.00 2019-10-04 14:48:43 2019-10-04 14:49:23 t 1 1 110463 422 0.00 2019-10-04 14:50:34 2019-10-04 14:51:56 t 1 1 110464 422 0.00 2019-10-04 14:51:56 2019-10-04 14:52:22 t 1 1 110465 522 0.00 2019-10-04 14:51:13 2019-10-04 14:53:06 t 1 1 110470 451 0.00 2019-10-04 14:51:11 2019-10-04 14:56:35 t 1 1 110472 422 0.00 2019-10-04 14:52:22 2019-10-04 14:57:22 t 1 1 110473 522 0.00 2019-10-04 14:56:17 2019-10-04 14:57:40 t 1 1 110475 512 0.00 2019-10-04 14:47:11 2019-10-04 14:58:55 t 1 1 110479 422 0.00 2019-10-04 14:57:23 2019-10-04 15:02:25 t 1 1 110480 522 0.00 2019-10-04 15:02:18 2019-10-04 15:03:08 t 1 1 110481 361 0.00 2019-10-04 14:02:22 2019-10-04 15:04:22 t 1 2 110484 522 0.00 2019-10-04 15:06:18 2019-10-04 15:06:30 t 1 1 110485 462 0.00 2019-10-04 14:53:08 2019-10-04 15:07:05 t 1 1 110488 422 0.00 2019-10-04 15:02:25 2019-10-04 15:07:59 t 1 1 110489 325 0.00 2019-10-04 15:07:49 2019-10-04 15:08:02 t 1 2 110492 522 0.00 2019-10-04 15:09:25 2019-10-04 15:10:03 t 1 1 110494 522 0.00 2019-10-04 15:10:08 2019-10-04 15:10:47 t 1 1 110497 522 0.00 2019-10-04 15:10:53 2019-10-04 15:12:09 t 1 1 110500 522 0.00 2019-10-04 15:13:06 2019-10-04 15:13:30 t 1 1 110501 522 0.00 2019-10-04 15:13:36 2019-10-04 15:14:56 t 1 1 110503 522 0.00 2019-10-04 15:15:04 2019-10-04 15:15:37 t 1 1 110504 512 0.00 2019-10-04 15:11:56 2019-10-04 15:15:54 t 1 1 110506 522 0.00 2019-10-04 15:15:44 2019-10-04 15:16:13 t 1 1 110507 522 0.00 2019-10-04 15:16:24 2019-10-04 15:16:31 t 1 1 110508 522 0.00 2019-10-04 15:16:44 2019-10-04 15:17:16 t 1 1 110509 522 0.00 2019-10-04 15:17:27 2019-10-04 15:17:32 t 1 1 110513 522 0.00 2019-10-04 15:18:20 2019-10-04 15:18:47 t 1 1 110514 522 0.00 2019-10-04 15:19:00 2019-10-04 15:19:02 t 1 1 110516 490 0.00 2019-10-04 15:17:21 2019-10-04 15:19:39 t 1 1 110518 501 0.00 2019-10-04 15:15:11 2019-10-04 15:19:52 t 1 1 110521 522 0.00 2019-10-04 15:20:28 2019-10-04 15:20:30 t 1 1 110523 522 0.00 2019-10-04 15:20:42 2019-10-04 15:20:44 t 1 1 110525 522 0.00 2019-10-04 15:20:49 2019-10-04 15:20:56 t 1 1 110526 522 0.00 2019-10-04 15:21:01 2019-10-04 15:21:03 t 1 1 110353 522 0.00 2019-10-04 13:35:05 2019-10-04 13:36:22 t 1 1 110355 422 0.00 2019-10-04 13:31:51 2019-10-04 13:38:11 t 1 1 110362 422 0.00 2019-10-04 13:46:02 2019-10-04 13:50:54 t 1 1 110365 470 0.00 2019-10-04 13:51:05 2019-10-04 13:52:15 t 1 1 110368 445 0.00 2019-10-04 12:09:29 2019-10-04 13:53:19 t 1 1 110369 422 0.00 2019-10-04 13:50:54 2019-10-04 13:54:13 t 1 1 110370 470 0.00 2019-10-04 13:52:14 2019-10-04 13:54:18 t 1 1 110377 522 0.00 2019-10-04 13:57:34 2019-10-04 13:58:18 t 1 1 110378 522 0.00 2019-10-04 13:58:29 2019-10-04 13:59:13 t 1 1 110382 522 0.00 2019-10-04 14:02:11 2019-10-04 14:03:08 t 1 1 110383 522 0.00 2019-10-04 14:03:17 2019-10-04 14:04:02 t 1 1 110385 422 0.00 2019-10-04 13:58:10 2019-10-04 14:05:19 t 1 1 110389 522 0.00 2019-10-04 14:06:04 2019-10-04 14:07:05 t 1 1 110396 522 0.00 2019-10-04 14:09:42 2019-10-04 14:10:29 t 1 1 110401 522 0.00 2019-10-04 14:12:25 2019-10-04 14:13:14 t 1 1 110405 522 0.00 2019-10-04 14:15:27 2019-10-04 14:16:17 t 1 1 110406 522 0.00 2019-10-04 14:16:23 2019-10-04 14:17:08 t 1 1 110409 481 0.00 2019-10-04 14:10:21 2019-10-04 14:17:44 t 1 1 110413 522 0.00 2019-10-04 14:18:58 2019-10-04 14:19:48 t 1 1 110420 430 0.00 2019-10-04 14:09:23 2019-10-04 14:23:55 t 1 1 110421 522 0.00 2019-10-04 14:23:32 2019-10-04 14:24:20 t 1 1 110423 470 0.00 2019-10-04 14:08:18 2019-10-04 14:25:38 t 1 1 110424 522 0.00 2019-10-04 14:25:24 2019-10-04 14:26:08 t 1 1 110430 522 0.00 2019-10-04 14:28:28 2019-10-04 14:29:14 t 1 1 110432 422 0.00 2019-10-04 14:22:33 2019-10-04 14:30:23 t 1 1 110435 462 0.00 2019-10-04 14:31:52 2019-10-04 14:32:09 t 1 1 110442 422 0.00 2019-10-04 14:30:23 2019-10-04 14:38:33 t 1 1 110444 522 0.00 2019-10-04 14:38:28 2019-10-04 14:39:29 t 1 1 110446 522 0.00 2019-10-04 14:40:06 2019-10-04 14:40:50 t 1 1 110448 522 0.00 2019-10-04 14:42:51 2019-10-04 14:44:23 t 1 1 110454 430 0.00 2019-10-04 14:23:55 2019-10-04 14:47:29 t 1 1 110461 522 0.00 2019-10-04 14:49:28 2019-10-04 14:51:08 t 1 1 110462 485 0.00 2019-10-04 14:38:38 2019-10-04 14:51:46 t 1 1 110466 462 0.00 2019-10-04 14:46:03 2019-10-04 14:53:08 t 1 1 110467 522 0.00 2019-10-04 14:53:05 2019-10-04 14:54:13 t 1 1 110476 516 0.00 2019-10-04 14:56:24 2019-10-04 15:01:10 t 1 1 110478 522 0.00 2019-10-04 15:01:23 2019-10-04 15:02:12 t 1 1 110482 522 0.00 2019-10-04 15:03:15 2019-10-04 15:04:53 t 1 1 110483 522 0.00 2019-10-04 15:04:58 2019-10-04 15:06:13 t 1 1 110486 522 0.00 2019-10-04 15:06:35 2019-10-04 15:07:12 t 1 1 110487 522 0.00 2019-10-04 15:07:17 2019-10-04 15:07:55 t 1 1 110490 522 0.00 2019-10-04 15:08:00 2019-10-04 15:08:37 t 1 1 110495 512 0.00 2019-10-04 14:58:55 2019-10-04 15:11:56 t 1 1 110496 422 0.00 2019-10-04 15:07:59 2019-10-04 15:12:02 t 1 1 110499 522 0.00 2019-10-04 15:12:22 2019-10-04 15:12:59 t 1 1 110502 501 0.00 2019-10-04 14:47:36 2019-10-04 15:15:11 t 1 1 110512 422 0.00 2019-10-04 15:12:02 2019-10-04 15:18:42 t 1 1 110520 522 0.00 2019-10-04 15:20:03 2019-10-04 15:20:10 t 1 1 110529 522 0.00 2019-10-04 15:21:35 2019-10-04 15:21:37 t 1 1 110533 522 0.00 2019-10-04 15:22:15 2019-10-04 15:22:17 t 1 1 110536 522 0.00 2019-10-04 15:22:41 2019-10-04 15:22:43 t 1 1 110541 522 0.00 2019-10-04 15:24:00 2019-10-04 15:24:12 t 1 1 110546 522 0.00 2019-10-04 15:25:15 2019-10-04 15:25:16 t 1 1 110549 522 0.00 2019-10-04 15:25:46 2019-10-04 15:25:53 t 1 1 110552 522 0.00 2019-10-04 15:26:11 2019-10-04 15:26:16 t 1 1 110554 290 0.00 2019-10-04 15:16:27 2019-10-04 15:26:32 t 1 2 110558 522 0.00 2019-10-04 15:27:00 2019-10-04 15:27:06 t 1 1 110562 470 0.00 2019-10-04 14:25:38 2019-10-04 15:28:19 t 1 1 110565 422 0.00 2019-10-04 15:24:08 2019-10-04 15:28:54 t 1 1 110569 522 0.00 2019-10-04 15:29:46 2019-10-04 15:29:48 t 1 1 110574 501 0.00 2019-10-04 15:24:45 2019-10-04 15:31:23 t 1 1 110578 522 0.00 2019-10-04 15:32:32 2019-10-04 15:32:34 t 1 1 110583 522 0.00 2019-10-04 15:33:58 2019-10-04 15:34:27 t 1 1 110585 522 0.00 2019-10-04 15:34:45 2019-10-04 15:34:57 t 1 1 110588 522 0.00 2019-10-04 15:35:47 2019-10-04 15:35:49 t 1 1 110592 522 0.00 2019-10-04 15:36:28 2019-10-04 15:36:29 t 1 1 110595 522 0.00 2019-10-04 15:36:48 2019-10-04 15:36:50 t 1 1 110596 522 0.00 2019-10-04 15:36:56 2019-10-04 15:37:02 t 1 1 110597 522 0.00 2019-10-04 15:37:20 2019-10-04 15:37:22 t 1 1 110599 522 0.00 2019-10-04 15:37:27 2019-10-04 15:37:33 t 1 1 110601 522 0.00 2019-10-04 15:37:46 2019-10-04 15:38:03 t 1 1 110604 522 0.00 2019-10-04 15:38:45 2019-10-04 15:38:51 t 1 1 110605 522 0.00 2019-10-04 15:39:09 2019-10-04 15:39:11 t 1 1 110607 522 0.00 2019-10-04 15:39:16 2019-10-04 15:39:23 t 1 1 110611 522 0.00 2019-10-04 15:40:30 2019-10-04 15:40:32 t 1 1 110615 522 0.00 2019-10-04 15:41:19 2019-10-04 15:41:26 t 1 1 110619 522 0.00 2019-10-04 15:42:29 2019-10-04 15:42:29 t 1 1 110620 522 0.00 2019-10-04 15:43:17 2019-10-04 15:43:23 t 1 1 110624 522 0.00 2019-10-04 15:44:07 2019-10-04 15:44:45 t 1 1 110627 522 0.00 2019-10-04 15:46:21 2019-10-04 15:46:39 t 1 1 110629 522 0.00 2019-10-04 15:47:05 2019-10-04 15:47:06 t 1 1 110630 522 0.00 2019-10-04 15:47:41 2019-10-04 15:47:49 t 1 1 110635 501 0.00 2019-10-04 15:44:22 2019-10-04 15:49:48 t 1 1 110637 522 0.00 2019-10-04 15:50:12 2019-10-04 15:50:13 t 1 1 110639 220 0.00 2019-10-04 14:28:03 2019-10-04 15:50:39 t 1 1 110645 220 0.00 2019-10-04 15:28:33 2019-10-04 15:52:14 t 1 2 110646 522 0.00 2019-10-04 15:52:24 2019-10-04 15:52:54 t 1 1 110647 445 0.00 2019-10-04 15:52:31 2019-10-04 15:53:38 t 1 1 110651 468 0.00 2019-10-04 15:20:42 2019-10-04 15:56:36 t 1 1 110654 512 0.00 2019-10-04 15:43:39 2019-10-04 15:58:07 t 1 1 110657 422 0.00 2019-10-04 15:55:05 2019-10-04 16:05:10 t 1 1 110662 451 0.00 2019-10-04 15:01:14 2019-10-04 16:15:55 t 1 1 110666 522 0.00 2019-10-04 15:53:06 2019-10-04 16:22:27 t 1 1 110667 247 0.00 2019-10-04 16:22:47 2019-10-04 16:23:20 t 1 2 110670 445 0.00 2019-10-04 16:26:28 2019-10-04 16:29:28 t 1 1 110671 422 0.00 2019-10-04 16:26:27 2019-10-04 16:30:06 t 1 1 110672 412 0.00 2019-10-04 12:04:53 2019-10-04 16:30:29 t 1 1 110676 499 0.00 2019-10-04 15:26:58 2019-10-04 16:55:22 t 1 1 110678 361 0.00 2019-10-04 16:56:05 2019-10-04 17:02:51 t 1 2 110681 522 0.00 2019-10-04 17:20:40 2019-10-04 17:22:06 t 1 1 110682 445 0.00 2019-10-04 16:30:17 2019-10-04 17:33:37 t 1 1 110684 490 0.00 2019-10-04 17:29:30 2019-10-04 17:39:30 t 1 1 110691 422 0.00 2019-10-04 17:51:07 2019-10-04 18:09:27 t 1 1 110692 296 0.00 2019-10-04 18:09:45 2019-10-04 18:11:09 t 1 2 110699 512 0.00 2019-10-04 18:30:59 2019-10-04 18:39:55 t 1 1 110701 499 0.00 2019-10-04 16:55:26 2019-10-04 18:43:41 t 1 1 110703 468 0.00 2019-10-04 18:44:12 2019-10-04 18:46:25 t 1 1 110450 522 0.00 2019-10-04 14:45:26 2019-10-04 14:46:00 t 1 1 110453 512 0.00 2019-10-04 14:35:58 2019-10-04 14:47:11 t 1 1 110456 522 0.00 2019-10-04 14:46:05 2019-10-04 14:47:37 t 1 1 110457 422 0.00 2019-10-04 14:38:33 2019-10-04 14:48:24 t 1 1 110460 430 0.00 2019-10-04 14:47:36 2019-10-04 14:49:29 t 1 1 110468 522 0.00 2019-10-04 14:54:15 2019-10-04 14:54:58 t 1 1 110469 522 0.00 2019-10-04 14:55:37 2019-10-04 14:56:12 t 1 1 110471 516 0.00 2019-10-04 14:56:17 2019-10-04 14:57:21 t 1 1 110474 522 0.00 2019-10-04 14:57:40 2019-10-04 14:58:19 t 1 1 110477 522 0.00 2019-10-04 15:00:47 2019-10-04 15:01:23 t 1 1 110491 522 0.00 2019-10-04 15:08:42 2019-10-04 15:09:20 t 1 1 110493 516 0.00 2019-10-04 15:01:22 2019-10-04 15:10:46 t 1 1 110498 516 0.00 2019-10-04 15:11:25 2019-10-04 15:12:32 t 1 1 110505 490 0.00 2019-10-04 15:04:55 2019-10-04 15:15:58 t 1 1 110510 522 0.00 2019-10-04 15:17:37 2019-10-04 15:17:43 t 1 1 110511 522 0.00 2019-10-04 15:18:01 2019-10-04 15:18:03 t 1 1 110515 522 0.00 2019-10-04 15:19:09 2019-10-04 15:19:38 t 1 1 110517 522 0.00 2019-10-04 15:19:49 2019-10-04 15:19:51 t 1 1 110519 522 0.00 2019-10-04 15:19:56 2019-10-04 15:19:58 t 1 1 110522 522 0.00 2019-10-04 15:20:35 2019-10-04 15:20:37 t 1 1 110524 499 0.00 2019-10-04 12:38:05 2019-10-04 15:20:52 t 1 1 110528 522 0.00 2019-10-04 15:21:28 2019-10-04 15:21:30 t 1 1 110531 522 0.00 2019-10-04 15:21:50 2019-10-04 15:21:56 t 1 1 110532 522 0.00 2019-10-04 15:22:09 2019-10-04 15:22:10 t 1 1 110535 522 0.00 2019-10-04 15:22:29 2019-10-04 15:22:36 t 1 1 110537 522 0.00 2019-10-04 15:23:00 2019-10-04 15:23:19 t 1 1 110539 522 0.00 2019-10-04 15:23:50 2019-10-04 15:23:53 t 1 1 110540 422 0.00 2019-10-04 15:18:42 2019-10-04 15:24:08 t 1 1 110543 522 0.00 2019-10-04 15:24:19 2019-10-04 15:24:46 t 1 1 110545 522 0.00 2019-10-04 15:24:57 2019-10-04 15:25:03 t 1 1 110548 522 0.00 2019-10-04 15:25:40 2019-10-04 15:25:41 t 1 1 110551 512 0.00 2019-10-04 15:24:49 2019-10-04 15:26:11 t 1 1 110556 499 0.00 2019-10-04 15:26:07 2019-10-04 15:26:54 t 1 1 110566 522 0.00 2019-10-04 15:28:57 2019-10-04 15:29:04 t 1 1 110568 522 0.00 2019-10-04 15:29:22 2019-10-04 15:29:28 t 1 1 110570 522 0.00 2019-10-04 15:29:53 2019-10-04 15:29:59 t 1 1 110572 522 0.00 2019-10-04 15:30:41 2019-10-04 15:30:49 t 1 1 110573 522 0.00 2019-10-04 15:31:02 2019-10-04 15:31:08 t 1 1 110576 522 0.00 2019-10-04 15:31:44 2019-10-04 15:31:50 t 1 1 110577 522 0.00 2019-10-04 15:32:08 2019-10-04 15:32:14 t 1 1 110580 522 0.00 2019-10-04 15:32:48 2019-10-04 15:32:50 t 1 1 110581 522 0.00 2019-10-04 15:33:09 2019-10-04 15:33:09 t 1 1 110584 512 0.00 2019-10-04 15:27:29 2019-10-04 15:34:35 t 1 1 110587 522 0.00 2019-10-04 15:35:22 2019-10-04 15:35:29 t 1 1 110591 522 0.00 2019-10-04 15:36:08 2019-10-04 15:36:15 t 1 1 110594 522 0.00 2019-10-04 15:36:41 2019-10-04 15:36:43 t 1 1 110600 501 0.00 2019-10-04 15:31:23 2019-10-04 15:37:35 t 1 1 110603 522 0.00 2019-10-04 15:38:38 2019-10-04 15:38:40 t 1 1 110609 522 0.00 2019-10-04 15:39:48 2019-10-04 15:39:56 t 1 1 110614 522 0.00 2019-10-04 15:41:07 2019-10-04 15:41:14 t 1 1 110617 522 0.00 2019-10-04 15:41:31 2019-10-04 15:41:53 t 1 1 110618 522 0.00 2019-10-04 15:42:22 2019-10-04 15:42:23 t 1 1 110622 522 0.00 2019-10-04 15:43:28 2019-10-04 15:43:45 t 1 1 110623 501 0.00 2019-10-04 15:37:35 2019-10-04 15:44:22 t 1 1 110625 522 0.00 2019-10-04 15:44:50 2019-10-04 15:45:04 t 1 1 110626 522 0.00 2019-10-04 15:45:10 2019-10-04 15:46:16 t 1 1 110631 522 0.00 2019-10-04 15:48:09 2019-10-04 15:48:14 t 1 1 110632 522 0.00 2019-10-04 15:48:40 2019-10-04 15:49:02 t 1 1 110634 522 0.00 2019-10-04 15:49:38 2019-10-04 15:49:40 t 1 1 110642 445 0.00 2019-10-04 14:21:05 2019-10-04 15:51:36 t 1 1 110649 501 0.00 2019-10-04 15:49:48 2019-10-04 15:55:22 t 1 1 110650 445 0.00 2019-10-04 15:54:32 2019-10-04 15:55:40 t 1 1 110659 422 0.00 2019-10-04 16:05:10 2019-10-04 16:10:20 t 1 1 110660 220 0.00 2019-10-04 16:04:06 2019-10-04 16:11:54 t 1 1 110661 422 0.00 2019-10-04 16:10:20 2019-10-04 16:15:22 t 1 1 110663 422 0.00 2019-10-04 16:15:22 2019-10-04 16:18:44 t 1 1 110665 422 0.00 2019-10-04 16:18:44 2019-10-04 16:22:06 t 1 1 110674 422 0.00 2019-10-04 16:33:37 2019-10-04 16:37:59 t 1 1 110675 422 0.00 2019-10-04 16:37:59 2019-10-04 16:44:04 t 1 1 110688 485 0.00 2019-10-04 17:51:55 2019-10-04 17:59:40 t 1 1 110689 325 0.00 2019-10-04 17:38:16 2019-10-04 18:00:31 t 1 2 110690 416 0.00 2019-10-04 15:47:09 2019-10-04 18:01:13 t 1 1 110695 503 0.00 2019-10-04 18:13:00 2019-10-04 18:14:22 t 1 1 110697 422 0.00 2019-10-04 18:09:27 2019-10-04 18:19:25 t 1 1 110704 422 0.00 2019-10-04 18:19:25 2019-10-04 18:49:22 t 1 1 110705 456 0.00 2019-10-04 18:51:12 2019-10-04 18:52:32 t 1 1 110709 468 0.00 2019-10-04 18:50:14 2019-10-04 19:02:57 t 1 1 110711 451 0.00 2019-10-04 19:05:50 2019-10-04 19:08:00 t 1 1 110712 481 0.00 2019-10-04 18:57:20 2019-10-04 19:11:42 t 1 1 110716 395 0.00 2019-10-04 19:15:56 2019-10-04 19:17:03 t 1 2 110717 445 0.00 2019-10-04 17:36:07 2019-10-04 19:20:48 t 1 1 110721 490 0.00 2019-10-04 19:27:25 2019-10-04 19:31:11 t 1 1 110725 516 0.00 2019-10-04 19:21:12 2019-10-04 19:33:34 t 1 1 110727 516 0.00 2019-10-04 19:33:34 2019-10-04 19:36:43 t 1 1 110730 306 0.00 2019-10-04 19:27:54 2019-10-04 19:38:21 t 1 1 110732 487 0.00 2019-10-04 19:04:47 2019-10-04 19:39:52 t 1 2 110737 520 0.00 2019-10-04 19:52:48 2019-10-04 19:54:43 t 1 1 110739 395 0.00 2019-10-04 19:55:50 2019-10-04 19:56:55 t 1 2 110740 445 0.00 2019-10-04 19:21:04 2019-10-04 19:58:46 t 1 1 110744 499 0.00 2019-10-04 19:59:21 2019-10-04 20:03:06 t 1 1 110746 445 0.00 2019-10-04 19:59:20 2019-10-04 20:04:53 t 1 1 110753 306 0.00 2019-10-04 20:18:10 2019-10-04 20:20:52 t 1 1 110754 468 0.00 2019-10-04 20:13:08 2019-10-04 20:22:53 t 1 1 110757 532 0.00 2019-10-04 20:32:18 2019-10-04 20:32:21 t 1 1 110760 445 0.00 2019-10-04 20:07:44 2019-10-04 20:34:19 t 1 1 110762 532 0.00 2019-10-04 20:35:17 2019-10-04 20:35:33 t 1 1 110763 532 0.00 2019-10-04 20:36:51 2019-10-04 20:36:56 t 1 1 110764 532 0.00 2019-10-04 20:37:09 2019-10-04 20:37:10 t 1 1 110769 445 0.00 2019-10-04 20:34:19 2019-10-04 20:45:02 t 1 1 110784 532 0.00 2019-10-04 21:07:41 2019-10-04 21:07:43 t 1 1 110785 327 0.00 2019-10-04 21:01:21 2019-10-04 21:09:07 t 1 1 110786 468 0.00 2019-10-04 20:54:04 2019-10-04 21:10:46 t 1 1 110787 430 0.00 2019-10-04 21:06:45 2019-10-04 21:10:57 t 1 1 110791 532 0.00 2019-10-04 21:15:25 2019-10-04 21:15:25 t 1 1 110797 532 0.00 2019-10-04 21:22:48 2019-10-04 21:22:53 t 1 1 110807 532 0.00 2019-10-04 21:25:25 2019-10-04 21:32:10 t 1 1 110808 520 0.00 2019-10-04 20:55:07 2019-10-04 21:33:52 t 1 1 110527 522 0.00 2019-10-04 15:21:21 2019-10-04 15:21:23 t 1 1 110530 522 0.00 2019-10-04 15:21:42 2019-10-04 15:21:44 t 1 1 110534 522 0.00 2019-10-04 15:22:22 2019-10-04 15:22:24 t 1 1 110538 522 0.00 2019-10-04 15:23:19 2019-10-04 15:23:37 t 1 1 110542 501 0.00 2019-10-04 15:19:52 2019-10-04 15:24:45 t 1 1 110544 512 0.00 2019-10-04 15:15:54 2019-10-04 15:24:49 t 1 1 110547 522 0.00 2019-10-04 15:25:21 2019-10-04 15:25:28 t 1 1 110550 499 0.00 2019-10-04 15:21:07 2019-10-04 15:26:03 t 1 1 110553 522 0.00 2019-10-04 15:26:29 2019-10-04 15:26:30 t 1 1 110555 522 0.00 2019-10-04 15:26:35 2019-10-04 15:26:41 t 1 1 110557 522 0.00 2019-10-04 15:26:54 2019-10-04 15:26:55 t 1 1 110559 522 0.00 2019-10-04 15:27:24 2019-10-04 15:27:26 t 1 1 110560 522 0.00 2019-10-04 15:27:42 2019-10-04 15:27:44 t 1 1 110561 522 0.00 2019-10-04 15:28:02 2019-10-04 15:28:09 t 1 1 110563 522 0.00 2019-10-04 15:28:27 2019-10-04 15:28:29 t 1 1 110564 522 0.00 2019-10-04 15:28:34 2019-10-04 15:28:39 t 1 1 110567 220 0.00 2019-10-04 14:38:49 2019-10-04 15:29:13 t 1 2 110571 325 0.00 2019-10-04 15:08:48 2019-10-04 15:30:11 t 1 2 110575 522 0.00 2019-10-04 15:31:15 2019-10-04 15:31:33 t 1 1 110579 522 0.00 2019-10-04 15:32:39 2019-10-04 15:32:43 t 1 1 110582 422 0.00 2019-10-04 15:28:54 2019-10-04 15:33:42 t 1 1 110586 522 0.00 2019-10-04 15:35:15 2019-10-04 15:35:16 t 1 1 110589 522 0.00 2019-10-04 15:35:54 2019-10-04 15:35:56 t 1 1 110590 522 0.00 2019-10-04 15:36:01 2019-10-04 15:36:03 t 1 1 110593 522 0.00 2019-10-04 15:36:34 2019-10-04 15:36:36 t 1 1 110598 490 0.00 2019-10-04 15:20:43 2019-10-04 15:37:33 t 1 1 110602 522 0.00 2019-10-04 15:38:14 2019-10-04 15:38:20 t 1 1 110606 522 0.00 2019-10-04 15:37:07 2019-10-04 15:39:22 t 1 1 110608 522 0.00 2019-10-04 15:39:36 2019-10-04 15:39:37 t 1 1 110610 490 0.00 2019-10-04 15:37:48 2019-10-04 15:40:31 t 1 1 110612 522 0.00 2019-10-04 15:40:37 2019-10-04 15:40:48 t 1 1 110613 522 0.00 2019-10-04 15:41:01 2019-10-04 15:41:02 t 1 1 110616 422 0.00 2019-10-04 15:33:42 2019-10-04 15:41:45 t 1 1 110621 512 0.00 2019-10-04 15:34:35 2019-10-04 15:43:39 t 1 1 110628 522 0.00 2019-10-04 15:46:45 2019-10-04 15:46:51 t 1 1 110633 522 0.00 2019-10-04 15:48:02 2019-10-04 15:49:22 t 1 1 110636 522 0.00 2019-10-04 15:49:45 2019-10-04 15:49:52 t 1 1 110638 522 0.00 2019-10-04 15:50:26 2019-10-04 15:50:38 t 1 1 110640 522 0.00 2019-10-04 15:50:49 2019-10-04 15:50:55 t 1 1 110641 522 0.00 2019-10-04 15:51:01 2019-10-04 15:51:21 t 1 1 110643 522 0.00 2019-10-04 15:51:34 2019-10-04 15:51:50 t 1 1 110644 522 0.00 2019-10-04 15:52:01 2019-10-04 15:52:08 t 1 1 110648 422 0.00 2019-10-04 15:41:45 2019-10-04 15:55:05 t 1 1 110652 445 0.00 2019-10-04 15:55:40 2019-10-04 15:56:55 t 1 1 110653 501 0.00 2019-10-04 15:55:22 2019-10-04 15:57:58 t 1 1 110655 456 0.00 2019-10-04 15:46:57 2019-10-04 15:58:14 t 1 1 110656 220 0.00 2019-10-04 15:59:34 2019-10-04 16:04:01 t 1 1 110658 512 0.00 2019-10-04 15:58:07 2019-10-04 16:10:04 t 1 1 110664 512 0.00 2019-10-04 16:10:04 2019-10-04 16:21:39 t 1 1 110668 422 0.00 2019-10-04 16:22:06 2019-10-04 16:26:27 t 1 1 110669 445 0.00 2019-10-04 15:56:54 2019-10-04 16:26:28 t 1 1 110673 422 0.00 2019-10-04 16:30:06 2019-10-04 16:33:37 t 1 1 110677 470 0.00 2019-10-04 16:18:56 2019-10-04 17:02:43 t 1 1 110679 361 0.00 2019-10-04 16:54:55 2019-10-04 17:05:00 t 1 2 110680 422 0.00 2019-10-04 16:44:04 2019-10-04 17:12:42 t 1 1 110683 445 0.00 2019-10-04 17:33:57 2019-10-04 17:35:51 t 1 1 110685 422 0.00 2019-10-04 17:12:42 2019-10-04 17:48:22 t 1 1 110686 516 0.00 2019-10-04 17:49:03 2019-10-04 17:52:37 t 1 1 110687 220 0.00 2019-10-04 17:40:47 2019-10-04 17:56:11 t 1 2 110693 331 0.00 2019-10-04 17:13:52 2019-10-04 18:11:58 t 1 1 110694 220 0.00 2019-10-04 18:07:26 2019-10-04 18:13:49 t 1 2 110696 490 0.00 2019-10-04 17:39:30 2019-10-04 18:18:43 t 1 1 110698 416 0.00 2019-10-04 18:01:12 2019-10-04 18:27:45 t 1 1 110700 456 0.00 2019-10-04 18:40:29 2019-10-04 18:43:02 t 1 1 110702 481 0.00 2019-10-04 18:40:13 2019-10-04 18:46:04 t 1 1 110706 456 0.00 2019-10-04 18:52:32 2019-10-04 18:55:55 t 1 1 110710 520 0.00 2019-10-04 19:05:32 2019-10-04 19:07:47 t 1 1 110713 485 0.00 2019-10-04 19:07:46 2019-10-04 19:11:49 t 1 1 110718 516 0.00 2019-10-04 19:19:27 2019-10-04 19:21:16 t 1 1 110719 220 0.00 2019-10-04 18:49:30 2019-10-04 19:27:40 t 1 1 110720 451 0.00 2019-10-04 19:13:53 2019-10-04 19:29:27 t 1 1 110724 462 0.00 2019-10-04 19:29:05 2019-10-04 19:32:45 t 1 1 110726 331 0.00 2019-10-04 19:16:55 2019-10-04 19:34:27 t 1 1 110729 490 0.00 2019-10-04 19:31:11 2019-10-04 19:37:17 t 1 1 110733 516 0.00 2019-10-04 19:36:43 2019-10-04 19:46:00 t 1 1 110736 468 0.00 2019-10-04 19:32:30 2019-10-04 19:54:34 t 1 1 110741 499 0.00 2019-10-04 18:43:44 2019-10-04 19:59:21 t 1 1 110743 220 0.00 2019-10-04 19:58:34 2019-10-04 20:02:46 t 1 1 110745 468 0.00 2019-10-04 19:54:34 2019-10-04 20:03:27 t 1 1 110747 445 0.00 2019-10-04 20:04:45 2019-10-04 20:06:48 t 1 1 110751 220 0.00 2019-10-04 20:16:05 2019-10-04 20:19:22 t 1 1 110756 532 0.00 2019-10-04 20:30:52 2019-10-04 20:30:54 t 1 1 110759 532 0.00 2019-10-04 20:33:45 2019-10-04 20:33:54 t 1 1 110761 220 0.00 2019-10-04 20:26:26 2019-10-04 20:35:07 t 1 1 110768 516 0.00 2019-10-04 20:19:23 2019-10-04 20:43:38 t 1 1 110770 422 0.00 2019-10-04 18:53:24 2019-10-04 20:46:33 t 1 1 110773 516 0.00 2019-10-04 20:43:44 2019-10-04 20:49:27 t 1 1 110775 331 0.00 2019-10-04 19:58:20 2019-10-04 20:51:44 t 1 1 110778 498 0.00 2019-10-04 20:08:35 2019-10-04 20:53:22 t 1 2 110789 532 0.00 2019-10-04 21:12:43 2019-10-04 21:12:46 t 1 1 110790 532 0.00 2019-10-04 21:14:59 2019-10-04 21:15:12 t 1 1 110794 532 0.00 2019-10-04 21:15:50 2019-10-04 21:16:03 t 1 1 110795 532 0.00 2019-10-04 21:17:46 2019-10-04 21:17:47 t 1 1 110798 481 0.00 2019-10-04 19:50:54 2019-10-04 21:24:18 t 1 1 110799 451 0.00 2019-10-04 21:24:04 2019-10-04 21:24:51 t 1 1 110802 512 0.00 2019-10-04 21:24:27 2019-10-04 21:27:18 t 1 1 110806 445 0.00 2019-10-04 21:19:02 2019-10-04 21:32:03 t 1 1 110809 462 0.00 2019-10-04 21:30:24 2019-10-04 21:35:20 t 1 1 110810 532 0.00 2019-10-04 21:36:15 2019-10-04 21:36:18 t 1 1 110814 520 0.00 2019-10-04 21:33:51 2019-10-04 21:40:51 t 1 1 110815 503 0.00 2019-10-04 21:39:20 2019-10-04 21:40:59 t 1 1 110818 468 0.00 2019-10-04 21:10:46 2019-10-04 21:42:29 t 1 1 110819 325 0.00 2019-10-04 20:04:39 2019-10-04 21:44:44 t 1 2 110821 488 0.00 2019-10-04 21:41:24 2019-10-04 21:47:04 t 1 1 110825 532 0.00 2019-10-04 21:51:27 2019-10-04 21:51:39 t 1 1 110827 512 0.00 2019-10-04 21:39:51 2019-10-04 21:51:55 t 1 1 110828 472 0.00 2019-10-04 21:43:54 2019-10-04 21:52:09 t 1 1 110707 481 0.00 2019-10-04 18:46:04 2019-10-04 18:57:20 t 1 1 110708 456 0.00 2019-10-04 18:55:55 2019-10-04 18:59:56 t 1 1 110714 331 0.00 2019-10-04 18:15:02 2019-10-04 19:13:42 t 1 1 110715 451 0.00 2019-10-04 19:09:18 2019-10-04 19:14:02 t 1 1 110722 220 0.00 2019-10-04 19:28:15 2019-10-04 19:31:25 t 1 1 110723 468 0.00 2019-10-04 19:02:57 2019-10-04 19:32:30 t 1 1 110728 331 0.00 2019-10-04 19:34:27 2019-10-04 19:36:45 t 1 1 110731 372 0.00 2019-10-04 19:29:41 2019-10-04 19:39:37 t 1 2 110734 481 0.00 2019-10-04 19:12:21 2019-10-04 19:50:54 t 1 1 110735 520 0.00 2019-10-04 19:36:18 2019-10-04 19:52:24 t 1 1 110738 220 0.00 2019-10-04 19:31:42 2019-10-04 19:55:59 t 1 1 110742 292 0.00 2019-10-04 19:58:28 2019-10-04 19:59:33 t 1 2 110748 468 0.00 2019-10-04 20:03:27 2019-10-04 20:06:56 t 1 1 110749 468 0.00 2019-10-04 20:06:56 2019-10-04 20:10:17 t 1 1 110750 468 0.00 2019-10-04 20:10:17 2019-10-04 20:13:08 t 1 1 110752 516 0.00 2019-10-04 19:54:28 2019-10-04 20:19:23 t 1 1 110755 532 0.00 2019-10-04 20:28:09 2019-10-04 20:30:31 t 1 1 110758 532 0.00 2019-10-04 20:32:07 2019-10-04 20:33:22 t 1 1 110765 532 0.00 2019-10-04 20:37:15 2019-10-04 20:37:18 t 1 1 110766 468 0.00 2019-10-04 20:22:53 2019-10-04 20:41:27 t 1 1 110767 532 0.00 2019-10-04 20:42:14 2019-10-04 20:42:15 t 1 1 110771 532 0.00 2019-10-04 20:47:15 2019-10-04 20:47:27 t 1 1 110772 485 0.00 2019-10-04 20:46:01 2019-10-04 20:49:19 t 1 1 110774 516 0.00 2019-10-04 20:49:27 2019-10-04 20:50:27 t 1 1 110776 516 0.00 2019-10-04 20:50:27 2019-10-04 20:51:47 t 1 1 110777 532 0.00 2019-10-04 20:52:24 2019-10-04 20:52:38 t 1 1 110779 532 0.00 2019-10-04 20:57:28 2019-10-04 20:57:30 t 1 1 110780 422 0.00 2019-10-04 20:46:33 2019-10-04 21:00:22 t 1 1 110781 306 0.00 2019-10-04 20:59:04 2019-10-04 21:01:37 t 1 1 110782 532 0.00 2019-10-04 21:02:31 2019-10-04 21:02:40 t 1 1 110783 516 0.00 2019-10-04 20:55:05 2019-10-04 21:06:03 t 1 1 110788 445 0.00 2019-10-04 20:45:02 2019-10-04 21:11:34 t 1 1 110792 532 0.00 2019-10-04 21:15:31 2019-10-04 21:15:33 t 1 1 110793 532 0.00 2019-10-04 21:15:38 2019-10-04 21:15:50 t 1 1 110796 445 0.00 2019-10-04 21:11:34 2019-10-04 21:19:02 t 1 1 110800 430 0.00 2019-10-04 21:12:27 2019-10-04 21:24:54 t 1 1 110801 220 0.00 2019-10-04 21:24:56 2019-10-04 21:25:52 t 1 2 110803 430 0.00 2019-10-04 21:26:13 2019-10-04 21:27:32 t 1 1 110804 361 0.00 2019-10-04 21:25:05 2019-10-04 21:30:23 t 1 2 110805 528 0.00 2019-10-04 21:10:50 2019-10-04 21:30:57 t 1 1 110811 416 0.00 2019-10-04 18:27:45 2019-10-04 21:36:32 t 1 1 110816 488 0.00 2019-10-04 21:29:09 2019-10-04 21:41:24 t 1 1 110817 532 0.00 2019-10-04 21:41:36 2019-10-04 21:41:39 t 1 1 110820 395 0.00 2019-10-04 21:43:10 2019-10-04 21:44:50 t 1 2 110823 468 0.00 2019-10-04 21:42:29 2019-10-04 21:49:54 t 1 1 110824 528 0.00 2019-10-04 21:30:57 2019-10-04 21:50:40 t 1 1 110829 395 0.00 2019-10-04 21:51:20 2019-10-04 21:52:46 t 1 2 110831 327 0.00 2019-10-04 21:18:33 2019-10-04 21:53:32 t 1 1 110832 532 0.00 2019-10-04 21:56:31 2019-10-04 21:56:40 t 1 1 110833 472 0.00 2019-10-04 21:57:09 2019-10-04 21:57:17 t 1 1 110834 532 0.00 2019-10-04 22:01:42 2019-10-04 22:01:47 t 1 1 110835 528 0.00 2019-10-04 21:50:40 2019-10-04 22:02:13 t 1 1 110837 468 0.00 2019-10-04 21:56:32 2019-10-04 22:04:11 t 1 1 110839 532 0.00 2019-10-04 22:05:19 2019-10-04 22:05:19 t 1 1 110842 472 0.00 2019-10-04 22:05:35 2019-10-04 22:05:53 t 1 1 110843 532 0.00 2019-10-04 22:06:48 2019-10-04 22:06:48 t 1 1 110844 472 0.00 2019-10-04 22:07:31 2019-10-04 22:07:46 t 1 1 110846 520 0.00 2019-10-04 22:10:29 2019-10-04 22:10:43 t 1 1 110849 520 0.00 2019-10-04 22:10:49 2019-10-04 22:13:06 t 1 1 110852 472 0.00 2019-10-04 22:13:19 2019-10-04 22:14:25 t 1 1 110854 472 0.00 2019-10-04 22:14:35 2019-10-04 22:14:57 t 1 1 110858 472 0.00 2019-10-04 22:20:29 2019-10-04 22:20:52 t 1 1 110860 532 0.00 2019-10-04 22:22:03 2019-10-04 22:22:19 t 1 1 110861 516 0.00 2019-10-04 22:21:12 2019-10-04 22:23:09 t 1 1 110862 412 0.00 2019-10-04 22:13:45 2019-10-04 22:24:10 t 1 1 110865 395 0.00 2019-10-04 22:25:44 2019-10-04 22:25:44 f 1 2 110873 512 0.00 2019-10-04 22:14:37 2019-10-04 22:29:55 t 1 1 110879 451 0.00 2019-10-04 22:19:37 2019-10-04 22:37:48 t 1 1 110880 512 0.00 2019-10-04 22:29:55 2019-10-04 22:40:28 t 1 1 110881 220 0.00 2019-10-04 21:31:15 2019-10-04 22:43:48 t 1 2 110885 528 0.00 2019-10-04 22:32:31 2019-10-04 22:51:39 t 1 1 110886 412 0.00 2019-10-04 22:26:13 2019-10-04 22:53:09 t 1 1 110888 311 0.00 2019-10-04 22:49:27 2019-10-04 22:56:07 t 1 2 110890 220 0.00 2019-10-04 21:59:11 2019-10-04 23:01:23 t 1 1 110892 220 0.00 2019-10-04 20:12:19 2019-10-04 23:02:25 t 1 2 110894 532 0.00 2019-10-04 22:50:38 2019-10-04 23:05:57 t 1 1 110897 247 0.00 2019-10-04 23:07:21 2019-10-04 23:09:29 t 1 2 110901 512 0.00 2019-10-04 23:03:39 2019-10-04 23:13:25 t 1 1 110902 451 0.00 2019-10-04 23:13:19 2019-10-04 23:15:20 t 1 1 110904 445 0.00 2019-10-04 23:15:59 2019-10-04 23:17:21 t 1 1 110910 490 0.00 2019-10-04 23:21:17 2019-10-04 23:24:42 t 1 1 110912 445 0.00 2019-10-04 23:22:28 2019-10-04 23:28:23 t 1 1 110913 528 0.00 2019-10-04 23:21:09 2019-10-04 23:29:25 t 1 1 110914 451 0.00 2019-10-04 23:25:13 2019-10-04 23:30:09 t 1 1 110917 528 0.00 2019-10-04 23:31:06 2019-10-04 23:31:16 t 1 1 110918 528 0.00 2019-10-04 23:31:48 2019-10-04 23:31:59 t 1 1 110919 528 0.00 2019-10-04 23:35:18 2019-10-04 23:35:25 t 1 1 110921 468 0.00 2019-10-04 23:40:49 2019-10-04 23:51:06 t 1 1 110923 501 0.00 2019-10-04 23:28:20 2019-10-04 23:54:36 t 1 1 110925 468 0.00 2019-10-04 23:52:58 2019-10-05 00:05:58 t 1 1 110928 456 0.00 2019-10-05 00:06:37 2019-10-05 00:15:03 t 1 1 110933 528 0.00 2019-10-04 23:55:22 2019-10-05 00:29:40 t 1 1 110935 422 0.00 2019-10-05 00:21:29 2019-10-05 00:53:52 t 1 1 110951 466 0.00 2019-10-05 03:02:19 2019-10-05 03:04:27 t 1 1 110953 466 0.00 2019-10-05 03:06:11 2019-10-05 03:10:29 t 1 1 110956 468 0.00 2019-10-05 04:02:39 2019-10-05 04:10:22 t 1 1 110963 516 0.00 2019-10-05 05:25:29 2019-10-05 05:25:34 t 1 1 110967 520 0.00 2019-10-05 05:41:59 2019-10-05 05:49:56 t 1 1 110968 520 0.00 2019-10-05 05:49:56 2019-10-05 05:57:49 t 1 1 110969 445 0.00 2019-10-04 23:29:09 2019-10-05 06:01:07 t 1 1 110971 520 0.00 2019-10-05 06:02:34 2019-10-05 06:04:31 t 1 1 110974 520 0.00 2019-10-05 06:04:31 2019-10-05 06:08:46 t 1 1 110976 520 0.00 2019-10-05 06:10:44 2019-10-05 06:12:20 t 1 1 110978 395 0.00 2019-10-05 06:21:07 2019-10-05 06:22:11 t 1 2 110985 520 0.00 2019-10-05 06:19:23 2019-10-05 06:44:17 t 1 1 110987 526 0.00 2019-10-05 06:44:20 2019-10-05 06:51:00 t 1 1 110990 526 0.00 2019-10-05 06:57:27 2019-10-05 07:02:59 t 1 1 110812 395 0.00 2019-10-04 21:27:10 2019-10-04 21:38:41 t 1 2 110813 512 0.00 2019-10-04 21:30:48 2019-10-04 21:39:51 t 1 1 110822 451 0.00 2019-10-04 21:24:50 2019-10-04 21:48:43 t 1 1 110826 532 0.00 2019-10-04 21:51:50 2019-10-04 21:51:53 t 1 1 110841 532 0.00 2019-10-04 22:05:32 2019-10-04 22:05:35 t 1 1 110845 327 0.00 2019-10-04 21:53:32 2019-10-04 22:09:52 t 1 1 110848 468 0.00 2019-10-04 22:04:11 2019-10-04 22:12:49 t 1 1 110850 412 0.00 2019-10-04 16:30:29 2019-10-04 22:13:07 t 1 1 110855 532 0.00 2019-10-04 22:17:00 2019-10-04 22:17:01 t 1 1 110857 472 0.00 2019-10-04 22:19:48 2019-10-04 22:20:19 t 1 1 110863 395 0.00 2019-10-04 22:02:06 2019-10-04 22:24:16 t 1 2 110864 395 0.00 2019-10-04 22:25:36 2019-10-04 22:25:36 f 1 2 110866 327 0.00 2019-10-04 22:09:52 2019-10-04 22:25:44 t 1 1 110869 472 0.00 2019-10-04 22:23:29 2019-10-04 22:27:07 t 1 1 110871 516 0.00 2019-10-04 22:25:47 2019-10-04 22:27:42 t 1 1 110875 327 0.00 2019-10-04 22:25:44 2019-10-04 22:32:23 t 1 1 110876 445 0.00 2019-10-04 21:32:03 2019-10-04 22:33:14 t 1 1 110878 516 0.00 2019-10-04 22:33:50 2019-10-04 22:36:56 t 1 1 110883 532 0.00 2019-10-04 22:44:27 2019-10-04 22:50:38 t 1 1 110884 512 0.00 2019-10-04 22:40:28 2019-10-04 22:51:38 t 1 1 110889 514 0.00 2019-10-04 22:43:42 2019-10-04 22:59:12 t 1 1 110891 220 0.00 2019-10-04 23:00:27 2019-10-04 23:01:42 t 1 1 110899 528 0.00 2019-10-04 22:54:58 2019-10-04 23:12:55 t 1 1 110900 451 0.00 2019-10-04 23:07:06 2019-10-04 23:13:19 t 1 1 110903 445 0.00 2019-10-04 22:34:22 2019-10-04 23:15:55 t 1 1 110905 445 0.00 2019-10-04 23:18:06 2019-10-04 23:19:12 t 1 1 110907 490 0.00 2019-10-04 23:12:09 2019-10-04 23:21:17 t 1 1 110908 512 0.00 2019-10-04 23:13:25 2019-10-04 23:24:29 t 1 1 110911 451 0.00 2019-10-04 23:15:20 2019-10-04 23:25:13 t 1 1 110920 528 0.00 2019-10-04 23:36:18 2019-10-04 23:37:23 t 1 1 110922 220 0.00 2019-10-04 23:16:32 2019-10-04 23:53:42 t 1 1 110924 416 0.00 2019-10-04 21:36:32 2019-10-05 00:00:34 t 1 1 110927 422 0.00 2019-10-05 00:09:36 2019-10-05 00:10:39 t 1 1 110929 490 0.00 2019-10-04 23:40:09 2019-10-05 00:15:36 t 1 1 110930 512 0.00 2019-10-05 00:20:43 2019-10-05 00:21:04 t 1 1 110932 422 0.00 2019-10-05 00:10:39 2019-10-05 00:21:28 t 1 1 110940 468 0.00 2019-10-05 00:36:13 2019-10-05 01:46:08 t 1 1 110941 412 0.00 2019-10-05 01:41:09 2019-10-05 02:01:36 t 1 1 110942 422 0.00 2019-10-05 01:46:32 2019-10-05 02:02:04 t 1 1 110957 468 0.00 2019-10-05 04:10:22 2019-10-05 04:24:10 t 1 1 110959 468 0.00 2019-10-05 04:24:10 2019-10-05 04:39:24 t 1 1 110960 520 0.00 2019-10-05 05:03:16 2019-10-05 05:06:50 t 1 1 110961 520 0.00 2019-10-05 05:06:50 2019-10-05 05:15:41 t 1 1 110962 520 0.00 2019-10-05 05:15:44 2019-10-05 05:19:41 t 1 1 110964 516 0.00 2019-10-05 05:25:39 2019-10-05 05:27:43 t 1 1 110965 520 0.00 2019-10-05 05:19:45 2019-10-05 05:38:04 t 1 1 110972 445 0.00 2019-10-05 06:01:13 2019-10-05 06:04:37 t 1 1 110975 520 0.00 2019-10-05 06:08:45 2019-10-05 06:10:18 t 1 1 110980 220 0.00 2019-10-05 06:18:47 2019-10-05 06:32:10 t 1 1 110982 526 0.00 2019-10-05 06:27:15 2019-10-05 06:32:57 t 1 1 110983 430 0.00 2019-10-05 06:36:33 2019-10-05 06:37:55 t 1 1 110984 526 0.00 2019-10-05 06:32:57 2019-10-05 06:39:31 t 1 1 110986 526 0.00 2019-10-05 06:39:31 2019-10-05 06:44:20 t 1 1 110988 526 0.00 2019-10-05 06:51:00 2019-10-05 06:57:27 t 1 1 110992 412 0.00 2019-10-05 06:59:06 2019-10-05 07:12:44 t 1 1 110995 379 0.00 2019-10-04 17:59:27 2019-10-05 07:34:52 t 1 1 110998 445 0.00 2019-10-05 06:32:17 2019-10-05 07:47:03 t 1 1 111003 416 0.00 2019-10-05 07:36:14 2019-10-05 08:02:38 t 1 1 111011 445 0.00 2019-10-05 07:53:16 2019-10-05 09:00:52 t 1 1 111014 412 0.00 2019-10-05 07:22:11 2019-10-05 09:03:30 t 1 1 111015 412 0.00 2019-10-05 09:03:38 2019-10-05 09:04:11 t 1 1 111018 445 0.00 2019-10-05 09:02:03 2019-10-05 09:08:26 t 1 1 111021 416 0.00 2019-10-05 09:12:01 2019-10-05 09:13:03 t 1 1 111022 456 0.00 2019-10-05 09:02:32 2019-10-05 09:21:23 t 1 1 111025 501 0.00 2019-10-05 09:23:15 2019-10-05 09:23:23 t 1 1 111027 501 0.00 2019-10-05 09:24:07 2019-10-05 09:24:16 t 1 1 111029 501 0.00 2019-10-05 09:25:07 2019-10-05 09:25:08 t 1 1 111032 306 0.00 2019-10-05 09:26:11 2019-10-05 09:27:57 t 1 1 111034 445 0.00 2019-10-05 09:10:57 2019-10-05 09:36:01 t 1 1 111035 416 0.00 2019-10-05 09:32:30 2019-10-05 09:43:24 t 1 1 111037 306 0.00 2019-10-05 09:28:10 2019-10-05 09:46:02 t 1 1 111038 430 0.00 2019-10-05 09:52:40 2019-10-05 09:52:48 t 1 1 111040 416 0.00 2019-10-05 09:58:39 2019-10-05 09:59:46 t 1 1 111044 445 0.00 2019-10-05 09:36:01 2019-10-05 10:09:29 t 1 1 111046 520 0.00 2019-10-05 10:05:12 2019-10-05 10:13:18 t 1 1 111047 416 0.00 2019-10-05 10:12:40 2019-10-05 10:17:42 t 1 1 111050 501 0.00 2019-10-05 09:25:34 2019-10-05 10:21:50 t 1 1 111051 481 0.00 2019-10-05 07:58:50 2019-10-05 10:23:15 t 1 1 111052 520 0.00 2019-10-05 10:13:18 2019-10-05 10:25:15 t 1 1 111053 520 0.00 2019-10-05 10:25:15 2019-10-05 10:26:39 t 1 1 111056 445 0.00 2019-10-05 10:09:29 2019-10-05 10:28:28 t 1 1 111058 416 0.00 2019-10-05 10:28:30 2019-10-05 10:43:33 t 1 1 111061 445 0.00 2019-10-05 10:28:44 2019-10-05 10:48:38 t 1 1 111066 501 0.00 2019-10-05 10:59:57 2019-10-05 11:00:33 t 1 1 111068 501 0.00 2019-10-05 11:01:51 2019-10-05 11:02:01 t 1 1 111079 462 0.00 2019-10-05 11:13:08 2019-10-05 11:13:25 t 1 1 111085 327 0.00 2019-10-05 10:47:05 2019-10-05 11:19:31 t 1 1 111089 532 0.00 2019-10-05 11:19:10 2019-10-05 11:31:24 t 1 1 111091 422 0.00 2019-10-05 11:17:34 2019-10-05 11:36:54 t 1 1 111092 520 0.00 2019-10-05 11:06:04 2019-10-05 11:37:42 t 1 1 111098 516 0.00 2019-10-05 11:41:55 2019-10-05 11:46:32 t 1 1 111109 481 0.00 2019-10-05 11:23:34 2019-10-05 12:01:53 t 1 1 111112 512 0.00 2019-10-05 12:03:35 2019-10-05 12:06:15 t 1 1 111116 512 0.00 2019-10-05 12:06:44 2019-10-05 12:08:23 t 1 1 111123 422 0.00 2019-10-05 12:08:19 2019-10-05 12:16:40 t 1 1 111124 220 0.00 2019-10-05 12:11:42 2019-10-05 12:17:22 t 1 1 111125 520 0.00 2019-10-05 12:14:12 2019-10-05 12:18:00 t 1 1 111129 466 0.00 2019-10-05 12:09:18 2019-10-05 12:22:43 t 1 1 111132 422 0.00 2019-10-05 12:20:28 2019-10-05 12:23:16 t 1 1 111133 445 0.00 2019-10-05 11:15:09 2019-10-05 12:23:31 t 1 1 111137 501 0.00 2019-10-05 12:24:54 2019-10-05 12:25:26 t 1 1 111141 445 0.00 2019-10-05 12:23:31 2019-10-05 12:27:01 t 1 1 111143 416 0.00 2019-10-05 12:10:52 2019-10-05 12:29:26 t 1 1 111144 422 0.00 2019-10-05 12:26:42 2019-10-05 12:31:02 t 1 1 111149 327 0.00 2019-10-05 12:02:32 2019-10-05 12:37:16 t 1 1 111152 506 0.00 2019-10-05 12:22:35 2019-10-05 12:44:02 t 1 1 111154 296 0.00 2019-10-05 12:42:29 2019-10-05 12:44:53 t 1 2 110830 296 0.00 2019-10-04 21:40:55 2019-10-04 21:53:19 t 1 2 110836 472 0.00 2019-10-04 22:02:22 2019-10-04 22:02:25 t 1 1 110838 472 0.00 2019-10-04 22:04:01 2019-10-04 22:04:16 t 1 1 110840 532 0.00 2019-10-04 22:05:25 2019-10-04 22:05:26 t 1 1 110847 532 0.00 2019-10-04 22:11:52 2019-10-04 22:11:54 t 1 1 110851 472 0.00 2019-10-04 22:09:01 2019-10-04 22:13:09 t 1 1 110853 512 0.00 2019-10-04 21:51:55 2019-10-04 22:14:37 t 1 1 110856 472 0.00 2019-10-04 22:19:25 2019-10-04 22:19:37 t 1 1 110859 516 0.00 2019-10-04 22:11:40 2019-10-04 22:21:12 t 1 1 110867 395 0.00 2019-10-04 22:25:54 2019-10-04 22:25:54 f 1 2 110868 395 0.00 2019-10-04 22:25:11 2019-10-04 22:26:22 t 1 2 110870 395 0.00 2019-10-04 22:25:25 2019-10-04 22:27:22 t 1 2 110872 472 0.00 2019-10-04 22:29:38 2019-10-04 22:29:45 t 1 1 110874 516 0.00 2019-10-04 22:27:41 2019-10-04 22:30:59 t 1 1 110877 532 0.00 2019-10-04 22:22:59 2019-10-04 22:36:15 t 1 1 110882 532 0.00 2019-10-04 22:36:15 2019-10-04 22:44:27 t 1 1 110887 451 0.00 2019-10-04 22:37:48 2019-10-04 22:53:49 t 1 1 110893 512 0.00 2019-10-04 22:51:38 2019-10-04 23:03:39 t 1 1 110895 451 0.00 2019-10-04 22:53:49 2019-10-04 23:07:06 t 1 1 110896 412 0.00 2019-10-04 22:54:36 2019-10-04 23:07:49 t 1 1 110898 490 0.00 2019-10-04 23:08:22 2019-10-04 23:12:09 t 1 1 110906 528 0.00 2019-10-04 23:12:55 2019-10-04 23:21:09 t 1 1 110909 220 0.00 2019-10-04 23:04:20 2019-10-04 23:24:30 t 1 1 110915 528 0.00 2019-10-04 23:30:33 2019-10-04 23:30:36 t 1 1 110916 481 0.00 2019-10-04 21:55:45 2019-10-04 23:31:07 t 1 1 110926 422 0.00 2019-10-04 22:00:53 2019-10-05 00:08:20 t 1 1 110931 468 0.00 2019-10-05 00:05:58 2019-10-05 00:21:23 t 1 1 110934 468 0.00 2019-10-05 00:21:23 2019-10-05 00:36:13 t 1 1 110936 412 0.00 2019-10-05 00:41:41 2019-10-05 00:55:19 t 1 1 110937 422 0.00 2019-10-05 00:54:16 2019-10-05 00:56:35 t 1 1 110938 412 0.00 2019-10-05 00:55:19 2019-10-05 01:33:24 t 1 1 110939 412 0.00 2019-10-05 01:33:24 2019-10-05 01:41:09 t 1 1 110943 422 0.00 2019-10-05 02:02:04 2019-10-05 02:08:06 t 1 1 110944 466 0.00 2019-10-05 02:34:22 2019-10-05 02:41:24 t 1 1 110945 466 0.00 2019-10-05 02:41:24 2019-10-05 02:47:04 t 1 1 110946 466 0.00 2019-10-05 02:47:04 2019-10-05 02:50:45 t 1 1 110947 468 0.00 2019-10-05 01:52:26 2019-10-05 02:54:04 t 1 1 110948 412 0.00 2019-10-05 02:01:36 2019-10-05 02:55:34 t 1 1 110949 466 0.00 2019-10-05 02:50:45 2019-10-05 02:59:51 t 1 1 110950 466 0.00 2019-10-05 02:59:51 2019-10-05 03:02:19 t 1 1 110952 466 0.00 2019-10-05 03:04:27 2019-10-05 03:06:10 t 1 1 110954 466 0.00 2019-10-05 03:10:29 2019-10-05 03:13:27 t 1 1 110955 466 0.00 2019-10-05 03:13:27 2019-10-05 03:21:51 t 1 1 110958 430 0.00 2019-10-05 04:18:42 2019-10-05 04:30:32 t 1 1 110966 520 0.00 2019-10-05 05:38:03 2019-10-05 05:42:00 t 1 1 110970 520 0.00 2019-10-05 05:57:49 2019-10-05 06:02:34 t 1 1 110973 516 0.00 2019-10-05 06:01:39 2019-10-05 06:06:07 t 1 1 110977 520 0.00 2019-10-05 06:12:19 2019-10-05 06:19:24 t 1 1 110979 445 0.00 2019-10-05 06:21:39 2019-10-05 06:23:34 t 1 1 110981 445 0.00 2019-10-05 06:23:46 2019-10-05 06:32:12 t 1 1 110989 412 0.00 2019-10-05 02:55:34 2019-10-05 06:59:01 t 1 1 110991 514 0.00 2019-10-05 06:54:03 2019-10-05 07:09:15 t 1 1 110993 412 0.00 2019-10-05 07:12:52 2019-10-05 07:16:17 t 1 1 110994 306 0.00 2019-10-05 07:24:08 2019-10-05 07:26:50 t 1 1 110996 416 0.00 2019-10-05 00:00:47 2019-10-05 07:36:14 t 1 1 110997 516 0.00 2019-10-05 07:28:55 2019-10-05 07:42:43 t 1 1 111000 445 0.00 2019-10-05 07:47:14 2019-10-05 07:51:37 t 1 1 111002 481 0.00 2019-10-05 07:51:12 2019-10-05 07:58:50 t 1 1 111005 430 0.00 2019-10-05 08:25:02 2019-10-05 08:28:34 t 1 1 111006 430 0.00 2019-10-05 08:28:47 2019-10-05 08:31:21 t 1 1 111007 485 0.00 2019-10-05 08:41:44 2019-10-05 08:46:50 t 1 1 111009 306 0.00 2019-10-05 08:48:45 2019-10-05 08:51:03 t 1 1 111010 416 0.00 2019-10-05 08:02:38 2019-10-05 08:59:50 t 1 1 111016 412 0.00 2019-10-05 09:04:18 2019-10-05 09:05:37 t 1 1 111020 416 0.00 2019-10-05 09:00:08 2019-10-05 09:12:02 t 1 1 111024 501 0.00 2019-10-05 09:03:14 2019-10-05 09:23:04 t 1 1 111030 327 0.00 2019-10-05 08:54:34 2019-10-05 09:25:29 t 1 1 111031 306 0.00 2019-10-05 09:06:05 2019-10-05 09:27:06 t 1 1 111033 416 0.00 2019-10-05 09:24:03 2019-10-05 09:31:59 t 1 1 111036 416 0.00 2019-10-05 09:43:30 2019-10-05 09:44:50 t 1 1 111041 306 0.00 2019-10-05 09:54:27 2019-10-05 10:00:19 t 1 1 111042 220 0.00 2019-10-05 09:43:37 2019-10-05 10:02:57 t 1 2 111043 327 0.00 2019-10-05 09:25:29 2019-10-05 10:04:24 t 1 1 111054 501 0.00 2019-10-05 10:27:44 2019-10-05 10:28:14 t 1 1 111059 520 0.00 2019-10-05 10:34:12 2019-10-05 10:44:38 t 1 1 111060 416 0.00 2019-10-05 10:44:01 2019-10-05 10:45:11 t 1 1 111063 501 0.00 2019-10-05 10:28:44 2019-10-05 10:57:00 t 1 1 111064 501 0.00 2019-10-05 10:58:03 2019-10-05 10:58:11 t 1 1 111067 416 0.00 2019-10-05 10:51:51 2019-10-05 11:00:42 t 1 1 111069 501 0.00 2019-10-05 11:04:06 2019-10-05 11:04:15 t 1 1 111071 501 0.00 2019-10-05 11:05:14 2019-10-05 11:05:15 t 1 1 111074 512 0.00 2019-10-05 11:06:02 2019-10-05 11:08:37 t 1 1 111080 512 0.00 2019-10-05 11:09:20 2019-10-05 11:13:40 t 1 1 111082 445 0.00 2019-10-05 10:48:39 2019-10-05 11:14:48 t 1 1 111084 532 0.00 2019-10-05 11:16:08 2019-10-05 11:19:10 t 1 1 111086 481 0.00 2019-10-05 10:23:15 2019-10-05 11:23:25 t 1 1 111087 512 0.00 2019-10-05 11:18:56 2019-10-05 11:24:38 t 1 1 111095 501 0.00 2019-10-05 11:43:13 2019-10-05 11:43:14 t 1 1 111096 327 0.00 2019-10-05 11:19:31 2019-10-05 11:44:17 t 1 1 111100 520 0.00 2019-10-05 11:37:55 2019-10-05 11:54:06 t 1 1 111103 416 0.00 2019-10-05 11:45:55 2019-10-05 11:57:01 t 1 1 111104 290 0.00 2019-10-05 11:43:25 2019-10-05 11:58:30 t 1 2 111108 501 0.00 2019-10-05 11:46:13 2019-10-05 12:01:05 t 1 1 111113 520 0.00 2019-10-05 11:55:49 2019-10-05 12:06:44 t 1 1 111115 422 0.00 2019-10-05 11:58:37 2019-10-05 12:08:19 t 1 1 111117 416 0.00 2019-10-05 11:59:36 2019-10-05 12:08:25 t 1 1 111118 532 0.00 2019-10-05 11:40:54 2019-10-05 12:09:17 t 1 1 111121 520 0.00 2019-10-05 12:06:48 2019-10-05 12:14:12 t 1 1 111122 512 0.00 2019-10-05 12:10:12 2019-10-05 12:15:53 t 1 1 111126 501 0.00 2019-10-05 12:08:49 2019-10-05 12:18:41 t 1 1 111130 520 0.00 2019-10-05 12:18:00 2019-10-05 12:22:52 t 1 1 111134 501 0.00 2019-10-05 12:23:11 2019-10-05 12:23:45 t 1 1 111135 501 0.00 2019-10-05 12:23:51 2019-10-05 12:23:59 t 1 1 111140 501 0.00 2019-10-05 12:25:55 2019-10-05 12:26:47 t 1 1 111142 466 0.00 2019-10-05 12:22:59 2019-10-05 12:27:14 t 1 1 111147 516 0.00 2019-10-05 12:27:56 2019-10-05 12:33:31 t 1 1 111153 474 0.00 2019-10-05 12:43:11 2019-10-05 12:44:36 t 1 1 110999 481 0.00 2019-10-05 07:46:02 2019-10-05 07:51:12 t 1 1 111001 445 0.00 2019-10-05 07:51:43 2019-10-05 07:53:05 t 1 1 111004 520 0.00 2019-10-05 07:48:41 2019-10-05 08:08:35 t 1 1 111008 516 0.00 2019-10-05 08:45:00 2019-10-05 08:48:56 t 1 1 111012 445 0.00 2019-10-05 09:00:51 2019-10-05 09:01:56 t 1 1 111013 456 0.00 2019-10-05 08:58:24 2019-10-05 09:02:19 t 1 1 111017 412 0.00 2019-10-05 09:05:42 2019-10-05 09:06:45 t 1 1 111019 445 0.00 2019-10-05 09:09:04 2019-10-05 09:10:40 t 1 1 111023 416 0.00 2019-10-05 09:20:46 2019-10-05 09:22:13 t 1 1 111026 501 0.00 2019-10-05 09:23:30 2019-10-05 09:23:38 t 1 1 111028 501 0.00 2019-10-05 09:24:23 2019-10-05 09:24:33 t 1 1 111039 416 0.00 2019-10-05 09:45:08 2019-10-05 09:57:51 t 1 1 111045 416 0.00 2019-10-05 10:00:04 2019-10-05 10:12:33 t 1 1 111048 220 0.00 2019-10-05 10:09:27 2019-10-05 10:17:50 t 1 2 111049 327 0.00 2019-10-05 10:04:24 2019-10-05 10:19:55 t 1 1 111055 416 0.00 2019-10-05 10:17:49 2019-10-05 10:28:25 t 1 1 111057 327 0.00 2019-10-05 10:26:18 2019-10-05 10:43:02 t 1 1 111062 220 0.00 2019-10-05 10:52:19 2019-10-05 10:55:58 t 1 1 111065 501 0.00 2019-10-05 10:59:03 2019-10-05 11:00:05 t 1 1 111070 501 0.00 2019-10-05 11:05:06 2019-10-05 11:05:07 t 1 1 111072 220 0.00 2019-10-05 11:03:39 2019-10-05 11:05:24 t 1 2 111073 520 0.00 2019-10-05 10:43:43 2019-10-05 11:05:58 t 1 1 111075 462 0.00 2019-10-05 11:01:22 2019-10-05 11:08:47 t 1 1 111076 516 0.00 2019-10-05 11:02:10 2019-10-05 11:09:02 t 1 1 111077 462 0.00 2019-10-05 11:08:47 2019-10-05 11:11:38 t 1 1 111078 516 0.00 2019-10-05 11:10:44 2019-10-05 11:12:56 t 1 1 111081 220 0.00 2019-10-05 11:03:45 2019-10-05 11:13:51 t 1 2 111083 422 0.00 2019-10-05 02:08:05 2019-10-05 11:17:34 t 1 1 111088 462 0.00 2019-10-05 11:13:24 2019-10-05 11:26:18 t 1 1 111090 501 0.00 2019-10-05 11:05:57 2019-10-05 11:36:02 t 1 1 111093 501 0.00 2019-10-05 11:38:05 2019-10-05 11:39:06 t 1 1 111094 532 0.00 2019-10-05 11:31:24 2019-10-05 11:40:54 t 1 1 111097 416 0.00 2019-10-05 10:59:46 2019-10-05 11:45:53 t 1 1 111099 422 0.00 2019-10-05 11:36:54 2019-10-05 11:47:44 t 1 1 111101 327 0.00 2019-10-05 11:44:17 2019-10-05 11:54:44 t 1 1 111102 520 0.00 2019-10-05 11:54:05 2019-10-05 11:55:29 t 1 1 111105 422 0.00 2019-10-05 11:47:44 2019-10-05 11:58:37 t 1 1 111106 327 0.00 2019-10-05 11:57:51 2019-10-05 11:58:58 t 1 1 111107 416 0.00 2019-10-05 11:57:01 2019-10-05 12:00:31 t 1 1 111110 488 0.00 2019-10-05 12:00:10 2019-10-05 12:03:33 t 1 1 111111 220 0.00 2019-10-05 11:59:40 2019-10-05 12:04:03 t 1 2 111114 501 0.00 2019-10-05 12:02:17 2019-10-05 12:07:36 t 1 1 111119 220 0.00 2019-10-05 11:42:38 2019-10-05 12:12:43 t 1 2 111120 532 0.00 2019-10-05 12:09:17 2019-10-05 12:13:58 t 1 1 111127 422 0.00 2019-10-05 12:16:40 2019-10-05 12:20:28 t 1 1 111128 501 0.00 2019-10-05 12:21:35 2019-10-05 12:22:03 t 1 1 111131 501 0.00 2019-10-05 12:22:29 2019-10-05 12:22:56 t 1 1 111136 501 0.00 2019-10-05 12:22:13 2019-10-05 12:24:24 t 1 1 111138 501 0.00 2019-10-05 12:25:36 2019-10-05 12:25:46 t 1 1 111139 422 0.00 2019-10-05 12:23:16 2019-10-05 12:26:42 t 1 1 111145 501 0.00 2019-10-05 12:30:53 2019-10-05 12:31:05 t 1 1 111146 461 0.00 2019-10-05 11:12:54 2019-10-05 12:32:25 t 1 2 111148 445 0.00 2019-10-05 12:27:24 2019-10-05 12:33:56 t 1 1 111150 501 0.00 2019-10-05 12:31:35 2019-10-05 12:37:27 t 1 1 111151 445 0.00 2019-10-05 12:33:56 2019-10-05 12:39:58 t 1 1 111157 445 0.00 2019-10-05 12:51:07 2019-10-05 12:52:50 t 1 1 111160 445 0.00 2019-10-05 12:52:50 2019-10-05 13:01:05 t 1 1 111163 395 0.00 2019-10-05 13:03:48 2019-10-05 13:04:52 t 1 2 111166 516 0.00 2019-10-05 12:44:46 2019-10-05 13:07:24 t 1 1 111169 512 0.00 2019-10-05 12:21:56 2019-10-05 13:10:02 t 1 1 111170 422 0.00 2019-10-05 12:31:02 2019-10-05 13:11:07 t 1 1 111171 445 0.00 2019-10-05 13:01:05 2019-10-05 13:11:33 t 1 1 111179 528 0.00 2019-10-05 13:24:48 2019-10-05 13:26:52 t 1 1 111186 327 0.00 2019-10-05 13:22:03 2019-10-05 13:38:41 t 1 1 111188 416 0.00 2019-10-05 12:29:43 2019-10-05 13:40:32 t 1 1 111189 501 0.00 2019-10-05 13:41:17 2019-10-05 13:41:31 t 1 1 111192 416 0.00 2019-10-05 13:39:37 2019-10-05 13:43:13 t 1 1 111194 430 0.00 2019-10-05 13:34:45 2019-10-05 13:44:24 t 1 1 111197 327 0.00 2019-10-05 13:48:06 2019-10-05 13:49:39 t 1 1 111198 528 0.00 2019-10-05 13:49:48 2019-10-05 13:54:32 t 1 1 111201 416 0.00 2019-10-05 13:44:00 2019-10-05 13:57:42 t 1 1 111204 416 0.00 2019-10-05 13:57:49 2019-10-05 14:06:04 t 1 1 111211 327 0.00 2019-10-05 14:16:50 2019-10-05 14:21:00 t 1 1 111212 430 0.00 2019-10-05 14:12:26 2019-10-05 14:27:13 t 1 1 111214 516 0.00 2019-10-05 14:22:48 2019-10-05 14:31:25 t 1 1 111215 430 0.00 2019-10-05 14:27:13 2019-10-05 14:32:25 t 1 1 111218 220 0.00 2019-10-05 13:43:35 2019-10-05 14:34:33 t 1 1 111222 416 0.00 2019-10-05 14:06:10 2019-10-05 14:40:51 t 1 1 111225 327 0.00 2019-10-05 14:43:02 2019-10-05 14:43:35 t 1 1 111229 220 0.00 2019-10-05 14:46:08 2019-10-05 14:46:43 t 1 1 111230 220 0.00 2019-10-05 14:46:43 2019-10-05 14:47:16 t 1 1 111233 528 0.00 2019-10-05 14:28:29 2019-10-05 14:48:30 t 1 1 111236 220 0.00 2019-10-05 14:49:34 2019-10-05 14:51:01 t 1 1 111237 220 0.00 2019-10-05 14:51:01 2019-10-05 14:51:34 t 1 1 111244 220 0.00 2019-10-05 14:54:12 2019-10-05 14:55:23 t 1 1 111246 220 0.00 2019-10-05 14:55:23 2019-10-05 14:55:57 t 1 1 111247 520 0.00 2019-10-05 14:53:51 2019-10-05 14:56:50 t 1 1 111249 220 0.00 2019-10-05 14:55:57 2019-10-05 14:57:55 t 1 1 111250 220 0.00 2019-10-05 14:57:55 2019-10-05 14:58:28 t 1 1 111256 220 0.00 2019-10-05 14:59:33 2019-10-05 15:00:08 t 1 1 111259 481 0.00 2019-10-05 14:16:36 2019-10-05 15:02:12 t 1 1 111261 501 0.00 2019-10-05 14:59:08 2019-10-05 15:02:46 t 1 1 111265 520 0.00 2019-10-05 14:57:23 2019-10-05 15:03:52 t 1 1 111266 220 0.00 2019-10-05 15:03:32 2019-10-05 15:04:07 t 1 1 111277 532 0.00 2019-10-05 15:08:33 2019-10-05 15:08:34 t 1 1 111280 528 0.00 2019-10-05 15:01:18 2019-10-05 15:09:31 t 1 1 111289 220 0.00 2019-10-05 15:16:57 2019-10-05 15:17:31 t 1 1 111292 532 0.00 2019-10-05 15:18:44 2019-10-05 15:18:52 t 1 1 111296 501 0.00 2019-10-05 15:21:27 2019-10-05 15:23:43 t 1 1 111297 532 0.00 2019-10-05 15:23:57 2019-10-05 15:23:57 t 1 1 111305 522 0.00 2019-10-05 15:36:17 2019-10-05 15:36:20 t 1 1 111307 501 0.00 2019-10-05 15:36:11 2019-10-05 15:36:40 t 1 1 111308 501 0.00 2019-10-05 15:36:49 2019-10-05 15:38:25 t 1 1 111311 532 0.00 2019-10-05 15:39:24 2019-10-05 15:39:53 t 1 1 111316 501 0.00 2019-10-05 15:43:18 2019-10-05 15:43:48 t 1 1 111318 501 0.00 2019-10-05 15:44:51 2019-10-05 15:44:59 t 1 1 111321 416 0.00 2019-10-05 14:41:00 2019-10-05 15:45:21 t 1 1 111155 220 0.00 2019-10-05 12:46:23 2019-10-05 12:48:46 t 1 2 111156 445 0.00 2019-10-05 12:39:58 2019-10-05 12:51:07 t 1 1 111158 327 0.00 2019-10-05 12:37:16 2019-10-05 12:53:24 t 1 1 111161 220 0.00 2019-10-05 13:03:06 2019-10-05 13:03:13 t 1 2 111162 220 0.00 2019-10-05 13:01:51 2019-10-05 13:04:12 t 1 2 111164 528 0.00 2019-10-05 13:06:08 2019-10-05 13:06:13 t 1 1 111165 503 0.00 2019-10-05 12:52:30 2019-10-05 13:06:58 t 1 1 111168 395 0.00 2019-10-05 13:08:22 2019-10-05 13:09:23 t 1 2 111173 528 0.00 2019-10-05 13:11:07 2019-10-05 13:13:21 t 1 1 111176 528 0.00 2019-10-05 13:19:47 2019-10-05 13:20:21 t 1 1 111178 528 0.00 2019-10-05 13:22:46 2019-10-05 13:22:51 t 1 1 111182 422 0.00 2019-10-05 13:19:49 2019-10-05 13:33:51 t 1 1 111183 430 0.00 2019-10-05 13:10:06 2019-10-05 13:34:45 t 1 1 111184 528 0.00 2019-10-05 13:36:06 2019-10-05 13:36:31 t 1 1 111187 501 0.00 2019-10-05 12:56:46 2019-10-05 13:40:08 t 1 1 111190 501 0.00 2019-10-05 13:42:40 2019-10-05 13:42:50 t 1 1 111191 501 0.00 2019-10-05 13:42:59 2019-10-05 13:43:10 t 1 1 111193 501 0.00 2019-10-05 13:42:12 2019-10-05 13:43:25 t 1 1 111195 451 0.00 2019-10-05 13:41:53 2019-10-05 13:44:53 t 1 1 111202 451 0.00 2019-10-05 13:57:39 2019-10-05 14:00:13 t 1 1 111203 445 0.00 2019-10-05 13:12:33 2019-10-05 14:01:45 t 1 1 111205 528 0.00 2019-10-05 13:56:31 2019-10-05 14:06:11 t 1 1 111207 481 0.00 2019-10-05 12:57:21 2019-10-05 14:13:42 t 1 1 111209 327 0.00 2019-10-05 13:59:34 2019-10-05 14:16:50 t 1 1 111210 512 0.00 2019-10-05 14:15:41 2019-10-05 14:17:04 t 1 1 111213 528 0.00 2019-10-05 14:14:04 2019-10-05 14:27:21 t 1 1 111217 445 0.00 2019-10-05 14:01:45 2019-10-05 14:34:28 t 1 1 111220 327 0.00 2019-10-05 14:31:05 2019-10-05 14:35:40 t 1 1 111221 220 0.00 2019-10-05 14:34:33 2019-10-05 14:40:38 t 1 1 111224 220 0.00 2019-10-05 14:40:38 2019-10-05 14:43:11 t 1 1 111226 220 0.00 2019-10-05 14:43:10 2019-10-05 14:43:45 t 1 1 111231 220 0.00 2019-10-05 14:47:15 2019-10-05 14:47:51 t 1 1 111232 220 0.00 2019-10-05 14:47:50 2019-10-05 14:48:25 t 1 1 111240 520 0.00 2019-10-05 14:34:28 2019-10-05 14:52:40 t 1 1 111243 220 0.00 2019-10-05 14:53:37 2019-10-05 14:54:12 t 1 1 111252 501 0.00 2019-10-05 13:43:19 2019-10-05 14:58:54 t 1 1 111253 528 0.00 2019-10-05 14:49:12 2019-10-05 14:59:10 t 1 1 111255 532 0.00 2019-10-05 14:33:02 2019-10-05 14:59:46 t 1 1 111260 220 0.00 2019-10-05 15:01:41 2019-10-05 15:02:20 t 1 1 111262 220 0.00 2019-10-05 15:02:20 2019-10-05 15:02:50 t 1 1 111264 532 0.00 2019-10-05 15:03:30 2019-10-05 15:03:33 t 1 1 111269 501 0.00 2019-10-05 15:05:01 2019-10-05 15:05:27 t 1 1 111272 501 0.00 2019-10-05 15:05:37 2019-10-05 15:05:49 t 1 1 111275 462 0.00 2019-10-05 14:57:12 2019-10-05 15:06:52 t 1 1 111278 532 0.00 2019-10-05 15:08:40 2019-10-05 15:08:41 t 1 1 111279 451 0.00 2019-10-05 15:06:26 2019-10-05 15:09:04 t 1 1 111282 220 0.00 2019-10-05 15:06:30 2019-10-05 15:13:34 t 1 1 111285 220 0.00 2019-10-05 15:14:43 2019-10-05 15:15:18 t 1 1 111293 501 0.00 2019-10-05 15:08:55 2019-10-05 15:19:12 t 1 1 111294 462 0.00 2019-10-05 15:06:52 2019-10-05 15:19:57 t 1 1 111295 501 0.00 2019-10-05 15:20:22 2019-10-05 15:21:17 t 1 1 111298 501 0.00 2019-10-05 15:24:35 2019-10-05 15:24:44 t 1 1 111300 532 0.00 2019-10-05 15:29:00 2019-10-05 15:29:08 t 1 1 111301 422 0.00 2019-10-05 14:34:47 2019-10-05 15:30:10 t 1 1 111304 522 0.00 2019-10-05 15:34:10 2019-10-05 15:35:57 t 1 1 111306 522 0.00 2019-10-05 15:36:28 2019-10-05 15:36:29 t 1 1 111309 456 0.00 2019-10-05 15:24:55 2019-10-05 15:39:17 t 1 1 111312 501 0.00 2019-10-05 15:40:31 2019-10-05 15:40:43 t 1 1 111313 532 0.00 2019-10-05 15:40:58 2019-10-05 15:41:07 t 1 1 111315 522 0.00 2019-10-05 15:40:10 2019-10-05 15:43:41 t 1 1 111319 522 0.00 2019-10-05 15:45:01 2019-10-05 15:45:12 t 1 1 111320 501 0.00 2019-10-05 15:45:19 2019-10-05 15:45:20 t 1 1 111324 501 0.00 2019-10-05 15:46:33 2019-10-05 15:46:47 t 1 1 111325 501 0.00 2019-10-05 15:45:26 2019-10-05 15:47:25 t 1 1 111331 520 0.00 2019-10-05 15:49:51 2019-10-05 15:57:37 t 1 1 111333 532 0.00 2019-10-05 15:59:52 2019-10-05 16:00:19 t 1 1 111334 532 0.00 2019-10-05 16:00:26 2019-10-05 16:01:01 t 1 1 111335 532 0.00 2019-10-05 15:59:43 2019-10-05 16:01:25 t 1 1 111337 327 0.00 2019-10-05 16:01:25 2019-10-05 16:02:42 t 1 1 111346 466 0.00 2019-10-05 16:06:22 2019-10-05 16:07:50 t 1 1 111352 522 0.00 2019-10-05 15:45:20 2019-10-05 16:10:46 t 1 1 111353 466 0.00 2019-10-05 16:07:56 2019-10-05 16:10:53 t 1 1 111354 327 0.00 2019-10-05 16:08:14 2019-10-05 16:11:39 t 1 1 111356 532 0.00 2019-10-05 16:13:35 2019-10-05 16:13:37 t 1 1 111358 466 0.00 2019-10-05 16:10:53 2019-10-05 16:16:09 t 1 1 111363 501 0.00 2019-10-05 16:09:43 2019-10-05 16:20:34 t 1 1 111364 445 0.00 2019-10-05 16:07:59 2019-10-05 16:21:01 t 1 1 111366 501 0.00 2019-10-05 16:23:25 2019-10-05 16:23:34 t 1 1 111367 532 0.00 2019-10-05 16:23:50 2019-10-05 16:23:53 t 1 1 111371 522 0.00 2019-10-05 16:10:46 2019-10-05 16:27:22 t 1 1 111374 485 0.00 2019-10-05 16:20:04 2019-10-05 16:29:47 t 1 1 111377 327 0.00 2019-10-05 16:29:16 2019-10-05 16:34:41 t 1 1 111378 485 0.00 2019-10-05 16:32:30 2019-10-05 16:35:03 t 1 1 111380 532 0.00 2019-10-05 16:39:00 2019-10-05 16:39:01 t 1 1 111384 532 0.00 2019-10-05 16:41:20 2019-10-05 16:45:48 t 1 1 111385 296 0.00 2019-10-05 16:43:20 2019-10-05 16:46:41 t 1 2 111399 501 0.00 2019-10-05 16:56:51 2019-10-05 16:57:54 t 1 1 111403 522 0.00 2019-10-05 17:01:39 2019-10-05 17:01:48 t 1 1 111409 532 0.00 2019-10-05 17:08:17 2019-10-05 17:08:44 t 1 1 111421 532 0.00 2019-10-05 17:13:47 2019-10-05 17:19:01 t 1 1 111424 532 0.00 2019-10-05 17:20:43 2019-10-05 17:20:45 t 1 1 111430 532 0.00 2019-10-05 17:21:13 2019-10-05 17:23:25 t 1 1 111433 327 0.00 2019-10-05 17:24:13 2019-10-05 17:24:47 t 1 1 111438 522 0.00 2019-10-05 17:30:36 2019-10-05 17:30:45 t 1 1 111439 220 0.00 2019-10-05 17:30:55 2019-10-05 17:31:44 t 1 2 111441 522 0.00 2019-10-05 17:33:25 2019-10-05 17:33:35 t 1 1 111446 220 0.00 2019-10-05 17:34:00 2019-10-05 17:36:23 t 1 2 111448 327 0.00 2019-10-05 17:34:47 2019-10-05 17:38:55 t 1 1 111449 522 0.00 2019-10-05 17:39:33 2019-10-05 17:39:35 t 1 1 111451 522 0.00 2019-10-05 17:43:13 2019-10-05 17:43:22 t 1 1 111453 331 0.00 2019-10-05 17:35:48 2019-10-05 17:44:09 t 1 1 111460 327 0.00 2019-10-05 17:48:38 2019-10-05 17:52:41 t 1 1 111466 512 0.00 2019-10-05 17:57:46 2019-10-05 18:01:07 t 1 1 111469 528 0.00 2019-10-05 18:06:54 2019-10-05 18:07:10 t 1 1 111470 485 0.00 2019-10-05 17:59:26 2019-10-05 18:08:05 t 1 1 111474 445 0.00 2019-10-05 17:57:02 2019-10-05 18:11:56 t 1 1 111476 501 0.00 2019-10-05 18:05:29 2019-10-05 18:13:16 t 1 1 111159 481 0.00 2019-10-05 12:01:53 2019-10-05 12:57:21 t 1 1 111167 395 0.00 2019-10-05 13:06:38 2019-10-05 13:07:45 t 1 2 111172 220 0.00 2019-10-05 13:09:37 2019-10-05 13:11:57 t 1 2 111174 528 0.00 2019-10-05 13:15:05 2019-10-05 13:15:06 t 1 1 111175 422 0.00 2019-10-05 13:11:07 2019-10-05 13:19:49 t 1 1 111177 327 0.00 2019-10-05 12:53:24 2019-10-05 13:21:22 t 1 1 111180 512 0.00 2019-10-05 13:28:29 2019-10-05 13:31:03 t 1 1 111181 325 0.00 2019-10-05 13:30:25 2019-10-05 13:33:25 t 1 2 111185 456 0.00 2019-10-05 13:29:56 2019-10-05 13:37:44 t 1 1 111196 528 0.00 2019-10-05 13:45:48 2019-10-05 13:46:12 t 1 1 111199 456 0.00 2019-10-05 13:51:52 2019-10-05 13:54:47 t 1 1 111200 451 0.00 2019-10-05 13:44:53 2019-10-05 13:57:39 t 1 1 111206 296 0.00 2019-10-05 14:00:03 2019-10-05 14:11:26 t 1 2 111208 528 0.00 2019-10-05 14:06:11 2019-10-05 14:14:04 t 1 1 111216 247 0.00 2019-10-05 14:31:38 2019-10-05 14:32:43 t 1 2 111219 422 0.00 2019-10-05 13:33:51 2019-10-05 14:34:47 t 1 1 111223 327 0.00 2019-10-05 14:38:30 2019-10-05 14:42:04 t 1 1 111227 220 0.00 2019-10-05 14:43:44 2019-10-05 14:45:34 t 1 1 111228 220 0.00 2019-10-05 14:45:34 2019-10-05 14:46:08 t 1 1 111234 220 0.00 2019-10-05 14:48:25 2019-10-05 14:49:00 t 1 1 111235 220 0.00 2019-10-05 14:48:59 2019-10-05 14:49:34 t 1 1 111238 327 0.00 2019-10-05 14:51:18 2019-10-05 14:51:49 t 1 1 111239 220 0.00 2019-10-05 14:51:34 2019-10-05 14:52:10 t 1 1 111241 220 0.00 2019-10-05 14:52:09 2019-10-05 14:52:43 t 1 1 111242 220 0.00 2019-10-05 14:52:42 2019-10-05 14:53:37 t 1 1 111245 516 0.00 2019-10-05 14:48:45 2019-10-05 14:55:56 t 1 1 111248 498 0.00 2019-10-05 14:29:58 2019-10-05 14:56:52 t 1 2 111251 445 0.00 2019-10-05 14:34:28 2019-10-05 14:58:35 t 1 1 111254 220 0.00 2019-10-05 14:58:28 2019-10-05 14:59:34 t 1 1 111257 220 0.00 2019-10-05 15:00:08 2019-10-05 15:01:08 t 1 1 111258 220 0.00 2019-10-05 15:01:08 2019-10-05 15:01:41 t 1 1 111263 220 0.00 2019-10-05 15:02:50 2019-10-05 15:03:32 t 1 1 111267 501 0.00 2019-10-05 15:02:56 2019-10-05 15:04:25 t 1 1 111268 220 0.00 2019-10-05 15:04:07 2019-10-05 15:05:02 t 1 1 111270 220 0.00 2019-10-05 15:05:02 2019-10-05 15:05:35 t 1 1 111271 220 0.00 2019-10-05 15:05:34 2019-10-05 15:05:44 t 1 1 111273 451 0.00 2019-10-05 14:56:07 2019-10-05 15:06:26 t 1 1 111274 220 0.00 2019-10-05 15:05:44 2019-10-05 15:06:33 t 1 1 111276 501 0.00 2019-10-05 15:07:30 2019-10-05 15:07:58 t 1 1 111281 220 0.00 2019-10-05 14:20:47 2019-10-05 15:11:46 t 1 2 111283 532 0.00 2019-10-05 15:13:37 2019-10-05 15:13:39 t 1 1 111284 220 0.00 2019-10-05 15:13:34 2019-10-05 15:14:44 t 1 1 111286 220 0.00 2019-10-05 15:15:18 2019-10-05 15:15:50 t 1 1 111287 220 0.00 2019-10-05 15:15:50 2019-10-05 15:16:21 t 1 1 111288 220 0.00 2019-10-05 15:16:20 2019-10-05 15:16:58 t 1 1 111290 220 0.00 2019-10-05 15:17:31 2019-10-05 15:17:51 t 1 1 111291 220 0.00 2019-10-05 15:18:06 2019-10-05 15:18:14 t 1 1 111299 501 0.00 2019-10-05 15:25:47 2019-10-05 15:25:48 t 1 1 111302 532 0.00 2019-10-05 15:34:14 2019-10-05 15:34:15 t 1 1 111303 501 0.00 2019-10-05 15:27:11 2019-10-05 15:35:41 t 1 1 111310 532 0.00 2019-10-05 15:39:17 2019-10-05 15:39:18 t 1 1 111314 466 0.00 2019-10-05 14:28:31 2019-10-05 15:42:39 t 1 1 111317 516 0.00 2019-10-05 15:37:45 2019-10-05 15:43:56 t 1 1 111322 532 0.00 2019-10-05 15:46:07 2019-10-05 15:46:08 t 1 1 111323 532 0.00 2019-10-05 15:46:13 2019-10-05 15:46:41 t 1 1 111326 520 0.00 2019-10-05 15:04:48 2019-10-05 15:49:51 t 1 1 111329 466 0.00 2019-10-05 15:42:39 2019-10-05 15:56:35 t 1 1 111330 220 0.00 2019-10-05 15:51:23 2019-10-05 15:57:26 t 1 2 111332 462 0.00 2019-10-05 15:36:54 2019-10-05 16:00:04 t 1 1 111338 466 0.00 2019-10-05 15:56:35 2019-10-05 16:03:09 t 1 1 111339 532 0.00 2019-10-05 16:03:36 2019-10-05 16:03:46 t 1 1 111340 532 0.00 2019-10-05 16:04:03 2019-10-05 16:04:06 t 1 1 111341 501 0.00 2019-10-05 15:47:21 2019-10-05 16:04:58 t 1 1 111342 501 0.00 2019-10-05 16:06:05 2019-10-05 16:06:19 t 1 1 111344 456 0.00 2019-10-05 15:48:44 2019-10-05 16:06:38 t 1 1 111345 501 0.00 2019-10-05 16:06:59 2019-10-05 16:07:07 t 1 1 111348 532 0.00 2019-10-05 16:08:12 2019-10-05 16:08:16 t 1 1 111350 501 0.00 2019-10-05 16:07:59 2019-10-05 16:08:31 t 1 1 111351 501 0.00 2019-10-05 16:09:00 2019-10-05 16:10:00 t 1 1 111357 412 0.00 2019-10-05 09:06:51 2019-10-05 16:14:39 t 1 1 111359 327 0.00 2019-10-05 16:15:15 2019-10-05 16:16:27 t 1 1 111361 532 0.00 2019-10-05 16:18:39 2019-10-05 16:18:48 t 1 1 111362 327 0.00 2019-10-05 16:18:44 2019-10-05 16:19:17 t 1 1 111368 501 0.00 2019-10-05 16:23:43 2019-10-05 16:24:34 t 1 1 111370 512 0.00 2019-10-05 16:11:59 2019-10-05 16:25:45 t 1 1 111376 532 0.00 2019-10-05 16:33:58 2019-10-05 16:34:01 t 1 1 111379 485 0.00 2019-10-05 16:35:31 2019-10-05 16:36:57 t 1 1 111381 416 0.00 2019-10-05 15:59:28 2019-10-05 16:39:55 t 1 1 111383 512 0.00 2019-10-05 16:27:19 2019-10-05 16:44:56 t 1 1 111387 520 0.00 2019-10-05 16:44:56 2019-10-05 16:48:05 t 1 1 111390 485 0.00 2019-10-05 16:36:57 2019-10-05 16:51:14 t 1 1 111392 532 0.00 2019-10-05 16:45:55 2019-10-05 16:51:53 t 1 1 111393 522 0.00 2019-10-05 16:27:22 2019-10-05 16:52:13 t 1 1 111394 532 0.00 2019-10-05 16:52:02 2019-10-05 16:53:32 t 1 1 111400 522 0.00 2019-10-05 16:52:13 2019-10-05 16:58:12 t 1 1 111405 512 0.00 2019-10-05 16:45:35 2019-10-05 17:07:33 t 1 1 111408 532 0.00 2019-10-05 17:07:57 2019-10-05 17:08:04 t 1 1 111412 532 0.00 2019-10-05 17:08:09 2019-10-05 17:10:25 t 1 1 111413 532 0.00 2019-10-05 17:08:52 2019-10-05 17:12:03 t 1 1 111418 532 0.00 2019-10-05 17:12:57 2019-10-05 17:13:30 t 1 1 111419 327 0.00 2019-10-05 17:13:05 2019-10-05 17:14:18 t 1 1 111427 522 0.00 2019-10-05 17:18:08 2019-10-05 17:21:35 t 1 1 111428 522 0.00 2019-10-05 17:22:05 2019-10-05 17:22:16 t 1 1 111432 516 0.00 2019-10-05 16:19:00 2019-10-05 17:23:38 t 1 1 111435 522 0.00 2019-10-05 17:25:27 2019-10-05 17:25:38 t 1 1 111436 522 0.00 2019-10-05 17:25:51 2019-10-05 17:26:21 t 1 1 111437 522 0.00 2019-10-05 17:27:05 2019-10-05 17:27:10 t 1 1 111442 522 0.00 2019-10-05 17:33:47 2019-10-05 17:33:56 t 1 1 111443 331 0.00 2019-10-05 17:24:46 2019-10-05 17:35:01 t 1 1 111444 522 0.00 2019-10-05 17:35:32 2019-10-05 17:35:55 t 1 1 111447 522 0.00 2019-10-05 17:38:08 2019-10-05 17:38:24 t 1 1 111456 522 0.00 2019-10-05 17:47:06 2019-10-05 17:49:58 t 1 1 111457 528 0.00 2019-10-05 17:50:35 2019-10-05 17:51:01 t 1 1 111458 522 0.00 2019-10-05 17:51:25 2019-10-05 17:51:34 t 1 1 111459 522 0.00 2019-10-05 17:51:54 2019-10-05 17:52:25 t 1 1 111463 528 0.00 2019-10-05 17:56:19 2019-10-05 17:56:56 t 1 1 111465 445 0.00 2019-10-05 17:47:20 2019-10-05 17:57:02 t 1 1 111327 532 0.00 2019-10-05 15:51:11 2019-10-05 15:51:13 t 1 1 111328 532 0.00 2019-10-05 15:56:17 2019-10-05 15:56:18 t 1 1 111336 532 0.00 2019-10-05 16:01:14 2019-10-05 16:01:42 t 1 1 111343 466 0.00 2019-10-05 16:03:09 2019-10-05 16:06:22 t 1 1 111347 445 0.00 2019-10-05 15:00:16 2019-10-05 16:07:52 t 1 1 111349 532 0.00 2019-10-05 16:08:26 2019-10-05 16:08:31 t 1 1 111355 485 0.00 2019-10-05 16:10:56 2019-10-05 16:13:13 t 1 1 111360 247 0.00 2019-10-05 16:16:09 2019-10-05 16:17:28 t 1 2 111365 501 0.00 2019-10-05 16:22:47 2019-10-05 16:23:15 t 1 1 111369 501 0.00 2019-10-05 16:24:44 2019-10-05 16:24:46 t 1 1 111372 532 0.00 2019-10-05 16:28:53 2019-10-05 16:28:55 t 1 1 111373 445 0.00 2019-10-05 16:21:01 2019-10-05 16:29:08 t 1 1 111375 462 0.00 2019-10-05 16:25:01 2019-10-05 16:29:49 t 1 1 111382 327 0.00 2019-10-05 16:40:43 2019-10-05 16:41:15 t 1 1 111386 466 0.00 2019-10-05 16:16:09 2019-10-05 16:46:51 t 1 1 111388 462 0.00 2019-10-05 16:29:52 2019-10-05 16:48:42 t 1 1 111389 445 0.00 2019-10-05 16:29:08 2019-10-05 16:49:50 t 1 1 111391 327 0.00 2019-10-05 16:51:17 2019-10-05 16:51:46 t 1 1 111395 532 0.00 2019-10-05 16:53:37 2019-10-05 16:53:55 t 1 1 111396 501 0.00 2019-10-05 16:54:57 2019-10-05 16:55:50 t 1 1 111397 501 0.00 2019-10-05 16:55:59 2019-10-05 16:56:08 t 1 1 111398 532 0.00 2019-10-05 16:54:00 2019-10-05 16:57:38 t 1 1 111401 522 0.00 2019-10-05 16:58:23 2019-10-05 16:58:24 t 1 1 111402 522 0.00 2019-10-05 17:00:05 2019-10-05 17:00:06 t 1 1 111404 327 0.00 2019-10-05 17:01:47 2019-10-05 17:03:10 t 1 1 111406 532 0.00 2019-10-05 16:57:43 2019-10-05 17:07:52 t 1 1 111407 522 0.00 2019-10-05 17:01:59 2019-10-05 17:08:03 t 1 1 111410 522 0.00 2019-10-05 17:08:07 2019-10-05 17:08:49 t 1 1 111411 522 0.00 2019-10-05 17:10:03 2019-10-05 17:10:06 t 1 1 111414 532 0.00 2019-10-05 17:12:10 2019-10-05 17:12:12 t 1 1 111415 532 0.00 2019-10-05 17:12:25 2019-10-05 17:12:52 t 1 1 111416 522 0.00 2019-10-05 17:12:49 2019-10-05 17:12:59 t 1 1 111417 522 0.00 2019-10-05 17:13:08 2019-10-05 17:13:23 t 1 1 111420 422 0.00 2019-10-05 15:30:10 2019-10-05 17:17:16 t 1 1 111422 532 0.00 2019-10-05 17:20:19 2019-10-05 17:20:26 t 1 1 111423 532 0.00 2019-10-05 17:20:31 2019-10-05 17:20:38 t 1 1 111425 532 0.00 2019-10-05 17:21:00 2019-10-05 17:21:06 t 1 1 111426 532 0.00 2019-10-05 17:21:19 2019-10-05 17:21:19 f 1 1 111429 331 0.00 2019-10-05 17:04:30 2019-10-05 17:22:31 t 1 1 111431 532 0.00 2019-10-05 17:20:51 2019-10-05 17:23:25 t 1 1 111434 331 0.00 2019-10-05 17:22:31 2019-10-05 17:25:30 t 1 1 111440 522 0.00 2019-10-05 17:33:02 2019-10-05 17:33:11 t 1 1 111445 466 0.00 2019-10-05 16:46:51 2019-10-05 17:36:20 t 1 1 111450 522 0.00 2019-10-05 17:39:46 2019-10-05 17:43:01 t 1 1 111452 512 0.00 2019-10-05 17:07:52 2019-10-05 17:43:42 t 1 1 111454 528 0.00 2019-10-05 17:30:14 2019-10-05 17:44:13 t 1 1 111455 445 0.00 2019-10-05 16:49:50 2019-10-05 17:47:20 t 1 1 111461 462 0.00 2019-10-05 16:48:41 2019-10-05 17:54:55 t 1 1 111462 220 0.00 2019-10-05 17:51:15 2019-10-05 17:55:38 t 1 2 111464 522 0.00 2019-10-05 17:56:55 2019-10-05 17:56:58 t 1 1 111471 430 0.00 2019-10-05 18:08:35 2019-10-05 18:09:39 t 1 1 111473 220 0.00 2019-10-05 18:07:31 2019-10-05 18:11:34 t 1 1 111475 485 0.00 2019-10-05 18:08:05 2019-10-05 18:12:56 t 1 1 111480 501 0.00 2019-10-05 18:15:17 2019-10-05 18:16:23 t 1 1 111485 501 0.00 2019-10-05 18:19:26 2019-10-05 18:19:27 t 1 1 111492 327 0.00 2019-10-05 18:24:29 2019-10-05 18:25:42 t 1 1 111495 416 0.00 2019-10-05 16:39:55 2019-10-05 18:32:15 t 1 1 111501 522 0.00 2019-10-05 18:35:01 2019-10-05 18:35:30 t 1 1 111502 522 0.00 2019-10-05 18:35:48 2019-10-05 18:35:52 t 1 1 111503 498 0.00 2019-10-05 16:58:56 2019-10-05 18:36:05 t 1 2 111506 327 0.00 2019-10-05 18:35:40 2019-10-05 18:37:03 t 1 1 111510 501 0.00 2019-10-05 18:20:22 2019-10-05 18:39:40 t 1 1 111512 501 0.00 2019-10-05 18:41:43 2019-10-05 18:42:16 t 1 1 111514 501 0.00 2019-10-05 18:42:43 2019-10-05 18:42:44 t 1 1 111518 522 0.00 2019-10-05 18:43:56 2019-10-05 18:45:32 t 1 1 111521 522 0.00 2019-10-05 18:45:36 2019-10-05 18:47:59 t 1 1 111522 501 0.00 2019-10-05 18:48:34 2019-10-05 18:48:45 t 1 1 111526 501 0.00 2019-10-05 18:50:51 2019-10-05 18:51:24 t 1 1 111527 485 0.00 2019-10-05 18:46:18 2019-10-05 18:52:20 t 1 1 111531 522 0.00 2019-10-05 18:49:29 2019-10-05 18:54:51 t 1 1 111546 220 0.00 2019-10-05 19:01:45 2019-10-05 19:02:18 t 1 1 111550 528 0.00 2019-10-05 18:54:22 2019-10-05 19:02:46 t 1 1 111551 534 0.00 2019-10-05 19:02:45 2019-10-05 19:03:03 t 1 1 111554 534 0.00 2019-10-05 19:03:12 2019-10-05 19:03:24 t 1 1 111559 534 0.00 2019-10-05 19:04:36 2019-10-05 19:04:42 t 1 1 111562 470 0.00 2019-10-05 19:03:54 2019-10-05 19:05:31 t 1 1 111564 220 0.00 2019-10-05 19:05:05 2019-10-05 19:05:39 t 1 1 111567 220 0.00 2019-10-05 19:05:38 2019-10-05 19:06:13 t 1 1 111569 220 0.00 2019-10-05 19:06:54 2019-10-05 19:07:55 t 1 1 111571 522 0.00 2019-10-05 19:04:29 2019-10-05 19:09:14 t 1 1 111572 220 0.00 2019-10-05 19:08:28 2019-10-05 19:09:33 t 1 1 111573 481 0.00 2019-10-05 19:01:20 2019-10-05 19:10:07 t 1 1 111576 522 0.00 2019-10-05 19:09:28 2019-10-05 19:10:37 t 1 1 111578 327 0.00 2019-10-05 19:10:33 2019-10-05 19:11:32 t 1 1 111579 522 0.00 2019-10-05 19:11:48 2019-10-05 19:11:56 t 1 1 111580 522 0.00 2019-10-05 19:12:04 2019-10-05 19:12:05 t 1 1 111582 526 0.00 2019-10-05 19:12:43 2019-10-05 19:12:53 t 1 1 111587 220 0.00 2019-10-05 19:15:15 2019-10-05 19:16:36 t 1 1 111590 220 0.00 2019-10-05 19:16:36 2019-10-05 19:17:11 t 1 1 111593 526 0.00 2019-10-05 19:18:21 2019-10-05 19:18:36 t 1 1 111597 526 0.00 2019-10-05 19:18:48 2019-10-05 19:19:49 t 1 1 111599 220 0.00 2019-10-05 19:20:19 2019-10-05 19:20:54 t 1 1 111601 445 0.00 2019-10-05 18:58:54 2019-10-05 19:21:13 t 1 1 111607 526 0.00 2019-10-05 19:21:49 2019-10-05 19:23:29 t 1 1 111612 522 0.00 2019-10-05 19:30:45 2019-10-05 19:30:47 t 1 1 111617 412 0.00 2019-10-05 16:14:39 2019-10-05 19:40:42 t 1 1 111618 292 0.00 2019-10-05 19:40:48 2019-10-05 19:40:48 t 1 2 111625 512 0.00 2019-10-05 19:16:56 2019-10-05 19:44:14 t 1 1 111630 445 0.00 2019-10-05 19:21:33 2019-10-05 19:47:18 t 1 1 111633 522 0.00 2019-10-05 19:48:23 2019-10-05 19:48:29 t 1 1 111639 528 0.00 2019-10-05 20:00:09 2019-10-05 20:00:42 t 1 1 111641 456 0.00 2019-10-05 19:45:25 2019-10-05 20:01:02 t 1 1 111648 526 0.00 2019-10-05 20:05:20 2019-10-05 20:05:35 t 1 1 111649 220 0.00 2019-10-05 20:04:16 2019-10-05 20:06:12 t 1 1 111652 220 0.00 2019-10-05 20:07:21 2019-10-05 20:07:30 t 1 1 111654 501 0.00 2019-10-05 19:25:40 2019-10-05 20:09:27 t 1 1 111659 501 0.00 2019-10-05 20:10:30 2019-10-05 20:10:39 t 1 1 111467 327 0.00 2019-10-05 18:02:10 2019-10-05 18:03:22 t 1 1 111468 481 0.00 2019-10-05 17:36:32 2019-10-05 18:06:01 t 1 1 111472 481 0.00 2019-10-05 18:06:01 2019-10-05 18:11:04 t 1 1 111479 220 0.00 2019-10-05 18:11:34 2019-10-05 18:14:48 t 1 1 111481 501 0.00 2019-10-05 18:14:18 2019-10-05 18:16:25 t 1 1 111482 501 0.00 2019-10-05 18:17:26 2019-10-05 18:17:35 t 1 1 111484 501 0.00 2019-10-05 18:18:26 2019-10-05 18:18:59 t 1 1 111488 445 0.00 2019-10-05 18:19:37 2019-10-05 18:20:56 t 1 1 111489 485 0.00 2019-10-05 18:12:55 2019-10-05 18:21:28 t 1 1 111490 445 0.00 2019-10-05 18:21:16 2019-10-05 18:22:26 t 1 1 111491 528 0.00 2019-10-05 18:22:44 2019-10-05 18:23:15 t 1 1 111493 528 0.00 2019-10-05 18:28:26 2019-10-05 18:29:21 t 1 1 111496 445 0.00 2019-10-05 18:25:55 2019-10-05 18:32:50 t 1 1 111499 522 0.00 2019-10-05 18:34:37 2019-10-05 18:34:40 t 1 1 111504 522 0.00 2019-10-05 18:36:02 2019-10-05 18:36:07 t 1 1 111509 522 0.00 2019-10-05 18:38:23 2019-10-05 18:38:32 t 1 1 111513 522 0.00 2019-10-05 18:39:46 2019-10-05 18:42:39 t 1 1 111515 522 0.00 2019-10-05 18:43:11 2019-10-05 18:43:37 t 1 1 111516 501 0.00 2019-10-05 18:43:17 2019-10-05 18:44:08 t 1 1 111519 528 0.00 2019-10-05 18:36:13 2019-10-05 18:46:56 t 1 1 111520 327 0.00 2019-10-05 18:46:59 2019-10-05 18:47:54 t 1 1 111523 528 0.00 2019-10-05 18:48:25 2019-10-05 18:48:51 t 1 1 111524 522 0.00 2019-10-05 18:49:09 2019-10-05 18:49:10 t 1 1 111528 501 0.00 2019-10-05 18:51:52 2019-10-05 18:52:24 t 1 1 111530 528 0.00 2019-10-05 18:49:55 2019-10-05 18:52:57 t 1 1 111532 485 0.00 2019-10-05 18:54:27 2019-10-05 18:55:32 t 1 1 111534 534 0.00 2019-10-05 18:57:12 2019-10-05 18:57:12 f 1 1 111537 445 0.00 2019-10-05 18:34:03 2019-10-05 18:58:54 t 1 1 111538 534 0.00 2019-10-05 18:58:45 2019-10-05 18:59:46 t 1 1 111539 526 0.00 2019-10-05 18:59:12 2019-10-05 19:00:34 t 1 1 111541 220 0.00 2019-10-05 18:14:48 2019-10-05 19:00:38 t 1 1 111543 534 0.00 2019-10-05 19:01:14 2019-10-05 19:01:28 t 1 1 111544 220 0.00 2019-10-05 19:00:38 2019-10-05 19:01:45 t 1 1 111547 526 0.00 2019-10-05 19:01:45 2019-10-05 19:02:22 t 1 1 111553 534 0.00 2019-10-05 19:03:02 2019-10-05 19:03:12 t 1 1 111556 470 0.00 2019-10-05 17:52:53 2019-10-05 19:03:54 t 1 1 111557 213 0.00 2019-10-05 19:04:11 2019-10-05 19:04:11 f 1 1 111563 487 0.00 2019-10-05 17:00:31 2019-10-05 19:05:36 t 1 2 111566 534 0.00 2019-10-05 19:05:03 2019-10-05 19:06:04 t 1 1 111570 220 0.00 2019-10-05 19:07:55 2019-10-05 19:08:29 t 1 1 111575 468 0.00 2019-10-05 19:07:17 2019-10-05 19:10:33 t 1 1 111586 512 0.00 2019-10-05 18:21:33 2019-10-05 19:16:28 t 1 1 111588 526 0.00 2019-10-05 19:14:43 2019-10-05 19:16:51 t 1 1 111589 468 0.00 2019-10-05 19:12:11 2019-10-05 19:17:09 t 1 1 111591 522 0.00 2019-10-05 19:12:37 2019-10-05 19:17:40 t 1 1 111594 522 0.00 2019-10-05 19:17:53 2019-10-05 19:18:40 t 1 1 111598 220 0.00 2019-10-05 19:19:47 2019-10-05 19:20:19 t 1 1 111602 520 0.00 2019-10-05 19:19:37 2019-10-05 19:21:28 t 1 1 111603 220 0.00 2019-10-05 19:20:54 2019-10-05 19:21:39 t 1 1 111605 220 0.00 2019-10-05 19:22:15 2019-10-05 19:22:47 t 1 1 111606 220 0.00 2019-10-05 19:22:46 2019-10-05 19:22:57 t 1 1 111608 501 0.00 2019-10-05 18:52:46 2019-10-05 19:25:32 t 1 1 111609 325 0.00 2019-10-05 19:05:00 2019-10-05 19:26:10 t 1 2 111611 526 0.00 2019-10-05 19:30:14 2019-10-05 19:30:25 t 1 1 111613 522 0.00 2019-10-05 19:30:56 2019-10-05 19:36:20 t 1 1 111619 292 0.00 2019-10-05 19:41:04 2019-10-05 19:41:08 t 1 2 111620 292 0.00 2019-10-05 19:41:22 2019-10-05 19:41:25 t 1 2 111623 292 0.00 2019-10-05 19:41:48 2019-10-05 19:42:52 t 1 2 111627 514 0.00 2019-10-05 19:42:44 2019-10-05 19:45:07 t 1 1 111628 528 0.00 2019-10-05 19:45:06 2019-10-05 19:45:26 t 1 1 111631 361 0.00 2019-10-05 19:08:22 2019-10-05 19:47:26 t 1 2 111632 522 0.00 2019-10-05 19:48:07 2019-10-05 19:48:13 t 1 1 111634 522 0.00 2019-10-05 19:51:47 2019-10-05 19:52:49 t 1 1 111636 512 0.00 2019-10-05 19:44:55 2019-10-05 19:57:50 t 1 1 111638 522 0.00 2019-10-05 19:59:30 2019-10-05 19:59:31 t 1 1 111640 522 0.00 2019-10-05 20:00:20 2019-10-05 20:00:48 t 1 1 111642 528 0.00 2019-10-05 20:02:19 2019-10-05 20:02:21 t 1 1 111644 526 0.00 2019-10-05 20:03:33 2019-10-05 20:04:07 t 1 1 111646 220 0.00 2019-10-05 19:23:22 2019-10-05 20:04:17 t 1 1 111653 327 0.00 2019-10-05 20:08:05 2019-10-05 20:08:41 t 1 1 111655 422 0.00 2019-10-05 19:41:03 2019-10-05 20:09:29 t 1 1 111656 220 0.00 2019-10-05 20:07:56 2019-10-05 20:09:35 t 1 1 111658 520 0.00 2019-10-05 19:35:39 2019-10-05 20:10:27 t 1 1 111662 526 0.00 2019-10-05 20:11:01 2019-10-05 20:11:16 t 1 1 111667 501 0.00 2019-10-05 20:13:30 2019-10-05 20:13:31 t 1 1 111668 526 0.00 2019-10-05 20:14:05 2019-10-05 20:14:15 t 1 1 111671 220 0.00 2019-10-05 20:10:51 2019-10-05 20:14:35 t 1 1 111675 501 0.00 2019-10-05 20:14:44 2019-10-05 20:15:29 t 1 1 111676 528 0.00 2019-10-05 20:15:53 2019-10-05 20:16:31 t 1 1 111678 526 0.00 2019-10-05 20:16:44 2019-10-05 20:17:01 t 1 1 111681 327 0.00 2019-10-05 20:18:37 2019-10-05 20:19:18 t 1 1 111683 220 0.00 2019-10-05 20:15:08 2019-10-05 20:20:18 t 1 1 111685 220 0.00 2019-10-05 20:20:17 2019-10-05 20:20:31 t 1 1 111686 220 0.00 2019-10-05 20:20:39 2019-10-05 20:20:51 t 1 1 111689 536 0.00 2019-10-05 20:22:25 2019-10-05 20:22:27 t 1 1 111692 422 0.00 2019-10-05 20:21:16 2019-10-05 20:23:38 t 1 1 111696 501 0.00 2019-10-05 20:26:06 2019-10-05 20:26:39 t 1 1 111699 522 0.00 2019-10-05 20:20:20 2019-10-05 20:27:09 t 1 1 111702 501 0.00 2019-10-05 20:27:14 2019-10-05 20:28:26 t 1 1 111703 536 0.00 2019-10-05 20:24:59 2019-10-05 20:29:07 t 1 1 111704 536 0.00 2019-10-05 20:29:13 2019-10-05 20:29:20 t 1 1 111706 220 0.00 2019-10-05 20:27:06 2019-10-05 20:29:50 t 1 1 111710 220 0.00 2019-10-05 20:30:21 2019-10-05 20:30:56 t 1 1 111714 220 0.00 2019-10-05 20:31:31 2019-10-05 20:31:34 t 1 1 111716 526 0.00 2019-10-05 20:31:18 2019-10-05 20:32:18 t 1 1 111717 481 0.00 2019-10-05 19:38:26 2019-10-05 20:32:22 t 1 1 111719 522 0.00 2019-10-05 20:32:28 2019-10-05 20:32:36 t 1 1 111720 481 0.00 2019-10-05 20:32:22 2019-10-05 20:33:17 t 1 1 111723 522 0.00 2019-10-05 20:34:17 2019-10-05 20:34:36 t 1 1 111726 536 0.00 2019-10-05 20:36:07 2019-10-05 20:36:33 t 1 1 111728 220 0.00 2019-10-05 20:36:31 2019-10-05 20:36:42 t 1 1 111731 327 0.00 2019-10-05 20:29:15 2019-10-05 20:37:33 t 1 1 111737 528 0.00 2019-10-05 20:16:52 2019-10-05 20:42:45 t 1 1 111740 472 0.00 2019-10-05 20:36:04 2019-10-05 20:44:28 t 1 1 111742 472 0.00 2019-10-05 20:44:41 2019-10-05 20:45:53 t 1 1 111750 472 0.00 2019-10-05 20:49:19 2019-10-05 20:50:20 t 1 1 111751 501 0.00 2019-10-05 20:28:46 2019-10-05 20:51:32 t 1 1 111477 501 0.00 2019-10-05 18:13:41 2019-10-05 18:13:50 t 1 1 111478 327 0.00 2019-10-05 18:12:48 2019-10-05 18:14:33 t 1 1 111483 445 0.00 2019-10-05 18:11:55 2019-10-05 18:17:53 t 1 1 111486 445 0.00 2019-10-05 18:18:39 2019-10-05 18:19:37 t 1 1 111487 512 0.00 2019-10-05 18:01:43 2019-10-05 18:20:21 t 1 1 111494 522 0.00 2019-10-05 17:59:56 2019-10-05 18:31:18 t 1 1 111497 522 0.00 2019-10-05 18:31:42 2019-10-05 18:32:54 t 1 1 111498 522 0.00 2019-10-05 18:33:22 2019-10-05 18:33:39 t 1 1 111500 528 0.00 2019-10-05 18:34:05 2019-10-05 18:35:25 t 1 1 111505 522 0.00 2019-10-05 18:36:53 2019-10-05 18:37:01 t 1 1 111507 522 0.00 2019-10-05 18:37:40 2019-10-05 18:37:49 t 1 1 111508 522 0.00 2019-10-05 18:38:14 2019-10-05 18:38:16 t 1 1 111511 501 0.00 2019-10-05 18:40:43 2019-10-05 18:40:52 t 1 1 111517 501 0.00 2019-10-05 18:44:17 2019-10-05 18:44:59 t 1 1 111525 501 0.00 2019-10-05 18:49:21 2019-10-05 18:49:48 t 1 1 111529 462 0.00 2019-10-05 18:49:45 2019-10-05 18:52:33 t 1 1 111533 522 0.00 2019-10-05 18:55:26 2019-10-05 18:55:34 t 1 1 111535 534 0.00 2019-10-05 18:57:41 2019-10-05 18:57:49 t 1 1 111536 534 0.00 2019-10-05 18:57:49 2019-10-05 18:58:46 t 1 1 111540 327 0.00 2019-10-05 18:56:44 2019-10-05 19:00:38 t 1 1 111542 481 0.00 2019-10-05 18:13:32 2019-10-05 19:01:23 t 1 1 111545 422 0.00 2019-10-05 17:17:16 2019-10-05 19:01:54 t 1 1 111548 534 0.00 2019-10-05 19:01:27 2019-10-05 19:02:28 t 1 1 111549 534 0.00 2019-10-05 19:02:28 2019-10-05 19:02:45 t 1 1 111552 220 0.00 2019-10-05 19:02:18 2019-10-05 19:03:11 t 1 1 111555 220 0.00 2019-10-05 19:03:11 2019-10-05 19:03:45 t 1 1 111558 534 0.00 2019-10-05 19:03:24 2019-10-05 19:04:26 t 1 1 111560 534 0.00 2019-10-05 19:04:42 2019-10-05 19:05:04 t 1 1 111561 220 0.00 2019-10-05 19:03:45 2019-10-05 19:05:05 t 1 1 111565 528 0.00 2019-10-05 19:05:05 2019-10-05 19:05:46 t 1 1 111568 220 0.00 2019-10-05 19:06:13 2019-10-05 19:06:55 t 1 1 111574 220 0.00 2019-10-05 19:09:33 2019-10-05 19:10:08 t 1 1 111577 481 0.00 2019-10-05 19:10:23 2019-10-05 19:11:26 t 1 1 111581 327 0.00 2019-10-05 19:11:39 2019-10-05 19:12:21 t 1 1 111583 481 0.00 2019-10-05 19:12:26 2019-10-05 19:13:26 t 1 1 111584 220 0.00 2019-10-05 19:10:08 2019-10-05 19:14:42 t 1 1 111585 220 0.00 2019-10-05 19:14:42 2019-10-05 19:15:15 t 1 1 111592 220 0.00 2019-10-05 19:17:10 2019-10-05 19:18:26 t 1 1 111595 220 0.00 2019-10-05 19:18:26 2019-10-05 19:18:59 t 1 1 111596 220 0.00 2019-10-05 19:18:59 2019-10-05 19:19:47 t 1 1 111600 416 0.00 2019-10-05 18:32:15 2019-10-05 19:21:13 t 1 1 111604 220 0.00 2019-10-05 19:21:38 2019-10-05 19:22:15 t 1 1 111610 522 0.00 2019-10-05 19:30:02 2019-10-05 19:30:11 t 1 1 111614 516 0.00 2019-10-05 19:22:56 2019-10-05 19:36:45 t 1 1 111615 526 0.00 2019-10-05 19:36:47 2019-10-05 19:37:00 t 1 1 111616 481 0.00 2019-10-05 19:14:47 2019-10-05 19:38:26 t 1 1 111621 422 0.00 2019-10-05 19:01:54 2019-10-05 19:41:45 t 1 1 111622 522 0.00 2019-10-05 19:41:13 2019-10-05 19:42:26 t 1 1 111624 526 0.00 2019-10-05 19:44:11 2019-10-05 19:44:12 t 1 1 111626 526 0.00 2019-10-05 19:44:20 2019-10-05 19:44:21 t 1 1 111629 522 0.00 2019-10-05 19:45:10 2019-10-05 19:45:51 t 1 1 111635 522 0.00 2019-10-05 19:54:16 2019-10-05 19:54:20 t 1 1 111637 522 0.00 2019-10-05 19:59:22 2019-10-05 19:59:23 t 1 1 111643 327 0.00 2019-10-05 19:18:00 2019-10-05 20:02:51 t 1 1 111645 528 0.00 2019-10-05 20:04:06 2019-10-05 20:04:10 t 1 1 111647 516 0.00 2019-10-05 20:02:10 2019-10-05 20:05:23 t 1 1 111650 220 0.00 2019-10-05 20:06:12 2019-10-05 20:06:46 t 1 1 111651 220 0.00 2019-10-05 20:06:46 2019-10-05 20:07:22 t 1 1 111657 220 0.00 2019-10-05 20:09:35 2019-10-05 20:09:43 t 1 1 111661 522 0.00 2019-10-05 20:10:49 2019-10-05 20:11:00 t 1 1 111665 526 0.00 2019-10-05 20:11:25 2019-10-05 20:12:26 t 1 1 111666 501 0.00 2019-10-05 20:12:47 2019-10-05 20:12:58 t 1 1 111669 468 0.00 2019-10-05 19:18:10 2019-10-05 20:14:16 t 1 1 111670 501 0.00 2019-10-05 20:11:30 2019-10-05 20:14:26 t 1 1 111673 220 0.00 2019-10-05 20:14:52 2019-10-05 20:15:08 t 1 1 111680 522 0.00 2019-10-05 20:17:37 2019-10-05 20:17:45 t 1 1 111687 220 0.00 2019-10-05 20:20:51 2019-10-05 20:21:28 t 1 1 111697 220 0.00 2019-10-05 20:26:28 2019-10-05 20:26:45 t 1 1 111701 526 0.00 2019-10-05 20:27:38 2019-10-05 20:27:47 t 1 1 111705 296 0.00 2019-10-05 20:25:20 2019-10-05 20:29:40 t 1 2 111708 522 0.00 2019-10-05 20:29:58 2019-10-05 20:30:38 t 1 1 111709 522 0.00 2019-10-05 20:30:44 2019-10-05 20:30:53 t 1 1 111712 220 0.00 2019-10-05 20:30:56 2019-10-05 20:31:23 t 1 1 111715 536 0.00 2019-10-05 20:30:34 2019-10-05 20:31:50 t 1 1 111721 422 0.00 2019-10-05 20:24:22 2019-10-05 20:33:56 t 1 1 111722 481 0.00 2019-10-05 20:33:17 2019-10-05 20:34:06 t 1 1 111732 220 0.00 2019-10-05 20:37:27 2019-10-05 20:37:35 t 1 1 111734 516 0.00 2019-10-05 20:39:07 2019-10-05 20:40:48 t 1 1 111735 220 0.00 2019-10-05 20:38:02 2019-10-05 20:42:28 t 1 1 111743 522 0.00 2019-10-05 20:46:11 2019-10-05 20:46:43 t 1 1 111745 220 0.00 2019-10-05 20:43:01 2019-10-05 20:47:28 t 1 1 111748 472 0.00 2019-10-05 20:48:09 2019-10-05 20:49:10 t 1 1 111756 481 0.00 2019-10-05 20:34:06 2019-10-05 20:54:16 t 1 1 111765 220 0.00 2019-10-05 20:55:16 2019-10-05 20:57:17 t 1 1 111767 220 0.00 2019-10-05 20:58:28 2019-10-05 20:58:36 t 1 1 111768 538 0.00 2019-10-05 20:40:31 2019-10-05 20:59:27 t 1 1 111772 220 0.00 2019-10-05 21:00:01 2019-10-05 21:00:08 t 1 1 111777 220 0.00 2019-10-05 21:02:11 2019-10-05 21:02:31 t 1 1 111779 472 0.00 2019-10-05 21:01:52 2019-10-05 21:03:12 t 1 1 111780 522 0.00 2019-10-05 21:03:43 2019-10-05 21:03:50 t 1 1 111785 327 0.00 2019-10-05 21:05:42 2019-10-05 21:06:14 t 1 1 111788 220 0.00 2019-10-05 21:07:07 2019-10-05 21:09:33 t 1 1 111791 220 0.00 2019-10-05 21:10:54 2019-10-05 21:10:55 t 1 1 111793 522 0.00 2019-10-05 21:08:03 2019-10-05 21:14:17 t 1 1 111795 220 0.00 2019-10-05 21:14:41 2019-10-05 21:14:54 t 1 1 111796 220 0.00 2019-10-05 21:15:38 2019-10-05 21:15:46 t 1 1 111803 526 0.00 2019-10-05 21:18:29 2019-10-05 21:18:40 t 1 1 111806 220 0.00 2019-10-05 21:20:16 2019-10-05 21:20:24 t 1 1 111807 520 0.00 2019-10-05 21:13:32 2019-10-05 21:20:40 t 1 1 111809 522 0.00 2019-10-05 21:19:07 2019-10-05 21:20:55 t 1 1 111814 522 0.00 2019-10-05 21:21:53 2019-10-05 21:22:31 t 1 1 111815 220 0.00 2019-10-05 21:22:34 2019-10-05 21:23:10 t 1 1 111820 472 0.00 2019-10-05 21:23:41 2019-10-05 21:24:56 t 1 1 111822 520 0.00 2019-10-05 21:20:40 2019-10-05 21:26:08 t 1 1 111824 220 0.00 2019-10-05 21:25:51 2019-10-05 21:26:28 t 1 1 111825 220 0.00 2019-10-05 21:27:07 2019-10-05 21:27:14 t 1 1 111828 327 0.00 2019-10-05 21:27:15 2019-10-05 21:28:23 t 1 1 111660 220 0.00 2019-10-05 20:10:12 2019-10-05 20:10:52 t 1 1 111663 520 0.00 2019-10-05 20:10:26 2019-10-05 20:11:28 t 1 1 111664 526 0.00 2019-10-05 20:11:39 2019-10-05 20:11:54 t 1 1 111672 220 0.00 2019-10-05 20:14:35 2019-10-05 20:14:45 t 1 1 111674 526 0.00 2019-10-05 20:14:24 2019-10-05 20:15:24 t 1 1 111677 501 0.00 2019-10-05 20:16:34 2019-10-05 20:16:35 t 1 1 111679 501 0.00 2019-10-05 20:17:34 2019-10-05 20:17:35 t 1 1 111682 522 0.00 2019-10-05 20:19:22 2019-10-05 20:19:44 t 1 1 111684 422 0.00 2019-10-05 20:09:29 2019-10-05 20:20:28 t 1 1 111688 220 0.00 2019-10-05 20:21:28 2019-10-05 20:21:35 t 1 1 111690 536 0.00 2019-10-05 20:22:34 2019-10-05 20:22:39 t 1 1 111691 536 0.00 2019-10-05 20:22:42 2019-10-05 20:23:06 t 1 1 111693 501 0.00 2019-10-05 20:18:26 2019-10-05 20:24:04 t 1 1 111694 501 0.00 2019-10-05 20:25:04 2019-10-05 20:25:12 t 1 1 111695 220 0.00 2019-10-05 20:22:13 2019-10-05 20:26:28 t 1 1 111698 501 0.00 2019-10-05 20:27:06 2019-10-05 20:27:07 t 1 1 111700 526 0.00 2019-10-05 20:25:38 2019-10-05 20:27:20 t 1 1 111707 220 0.00 2019-10-05 20:29:49 2019-10-05 20:30:21 t 1 1 111711 526 0.00 2019-10-05 20:31:00 2019-10-05 20:31:09 t 1 1 111713 468 0.00 2019-10-05 20:14:16 2019-10-05 20:31:24 t 1 1 111718 526 0.00 2019-10-05 20:31:33 2019-10-05 20:32:33 t 1 1 111724 445 0.00 2019-10-05 19:47:18 2019-10-05 20:34:54 t 1 1 111725 220 0.00 2019-10-05 20:31:34 2019-10-05 20:36:31 t 1 1 111727 445 0.00 2019-10-05 20:34:54 2019-10-05 20:36:34 t 1 1 111729 522 0.00 2019-10-05 20:35:36 2019-10-05 20:36:59 t 1 1 111730 220 0.00 2019-10-05 20:37:05 2019-10-05 20:37:28 t 1 1 111733 538 0.00 2019-10-05 20:36:08 2019-10-05 20:40:27 t 1 1 111736 220 0.00 2019-10-05 20:42:28 2019-10-05 20:42:35 t 1 1 111738 522 0.00 2019-10-05 20:43:17 2019-10-05 20:43:28 t 1 1 111739 522 0.00 2019-10-05 20:43:43 2019-10-05 20:44:09 t 1 1 111741 474 0.00 2019-10-05 20:41:37 2019-10-05 20:45:01 t 1 1 111744 522 0.00 2019-10-05 20:46:53 2019-10-05 20:47:02 t 1 1 111746 220 0.00 2019-10-05 20:47:27 2019-10-05 20:47:36 t 1 1 111747 472 0.00 2019-10-05 20:46:07 2019-10-05 20:47:57 t 1 1 111749 451 0.00 2019-10-05 20:44:36 2019-10-05 20:50:05 t 1 1 111752 220 0.00 2019-10-05 20:48:32 2019-10-05 20:51:38 t 1 1 111753 526 0.00 2019-10-05 20:51:32 2019-10-05 20:52:43 t 1 1 111754 220 0.00 2019-10-05 20:51:38 2019-10-05 20:53:44 t 1 1 111755 472 0.00 2019-10-05 20:52:56 2019-10-05 20:53:57 t 1 1 111758 220 0.00 2019-10-05 20:53:55 2019-10-05 20:54:42 t 1 1 111759 526 0.00 2019-10-05 20:54:27 2019-10-05 20:55:04 t 1 1 111761 220 0.00 2019-10-05 20:54:42 2019-10-05 20:55:16 t 1 1 111762 327 0.00 2019-10-05 20:46:58 2019-10-05 20:56:16 t 1 1 111764 522 0.00 2019-10-05 20:56:34 2019-10-05 20:56:42 t 1 1 111769 472 0.00 2019-10-05 20:58:18 2019-10-05 20:59:28 t 1 1 111771 220 0.00 2019-10-05 20:59:11 2019-10-05 21:00:01 t 1 1 111774 220 0.00 2019-10-05 21:00:32 2019-10-05 21:00:38 t 1 1 111775 472 0.00 2019-10-05 21:00:47 2019-10-05 21:01:44 t 1 1 111778 522 0.00 2019-10-05 20:57:09 2019-10-05 21:02:45 t 1 1 111782 526 0.00 2019-10-05 21:03:48 2019-10-05 21:04:53 t 1 1 111783 472 0.00 2019-10-05 21:04:33 2019-10-05 21:05:38 t 1 1 111784 468 0.00 2019-10-05 20:32:19 2019-10-05 21:06:01 t 1 1 111790 220 0.00 2019-10-05 21:10:44 2019-10-05 21:10:45 t 1 1 111797 220 0.00 2019-10-05 21:16:40 2019-10-05 21:16:48 t 1 1 111800 327 0.00 2019-10-05 21:16:14 2019-10-05 21:17:19 t 1 1 111802 220 0.00 2019-10-05 21:17:37 2019-10-05 21:17:51 t 1 1 111804 472 0.00 2019-10-05 21:18:26 2019-10-05 21:19:28 t 1 1 111808 220 0.00 2019-10-05 21:20:35 2019-10-05 21:20:42 t 1 1 111811 220 0.00 2019-10-05 21:21:11 2019-10-05 21:21:19 t 1 1 111812 220 0.00 2019-10-05 21:10:01 2019-10-05 21:22:25 t 1 2 111816 325 0.00 2019-10-05 20:58:34 2019-10-05 21:23:40 t 1 2 111817 522 0.00 2019-10-05 21:23:44 2019-10-05 21:23:45 t 1 1 111818 526 0.00 2019-10-05 21:23:55 2019-10-05 21:24:19 t 1 1 111823 472 0.00 2019-10-05 21:25:18 2019-10-05 21:26:12 t 1 1 111827 430 0.00 2019-10-05 21:07:29 2019-10-05 21:27:49 t 1 1 111829 472 0.00 2019-10-05 21:28:18 2019-10-05 21:29:13 t 1 1 111840 472 0.00 2019-10-05 21:33:51 2019-10-05 21:34:54 t 1 1 111843 520 0.00 2019-10-05 21:26:08 2019-10-05 21:40:01 t 1 1 111845 522 0.00 2019-10-05 21:40:57 2019-10-05 21:42:07 t 1 1 111846 481 0.00 2019-10-05 20:56:52 2019-10-05 21:42:14 t 1 1 111848 522 0.00 2019-10-05 21:44:06 2019-10-05 21:44:22 t 1 1 111850 220 0.00 2019-10-05 21:46:09 2019-10-05 21:46:16 t 1 1 111852 520 0.00 2019-10-05 21:40:01 2019-10-05 21:46:41 t 1 1 111853 220 0.00 2019-10-05 21:47:08 2019-10-05 21:47:22 t 1 1 111857 220 0.00 2019-10-05 21:48:59 2019-10-05 21:49:08 t 1 1 111859 375 0.00 2019-10-05 21:13:59 2019-10-05 21:49:41 t 1 1 111861 220 0.00 2019-10-05 21:49:34 2019-10-05 21:50:18 t 1 1 111863 522 0.00 2019-10-05 21:50:25 2019-10-05 21:50:31 t 1 1 111867 220 0.00 2019-10-05 21:51:22 2019-10-05 21:51:31 t 1 1 111872 220 0.00 2019-10-05 21:28:07 2019-10-05 21:54:27 t 1 2 111874 220 0.00 2019-10-05 21:54:35 2019-10-05 21:54:45 t 1 1 111876 220 0.00 2019-10-05 21:55:32 2019-10-05 21:55:55 t 1 1 111877 220 0.00 2019-10-05 21:56:07 2019-10-05 21:56:24 t 1 1 111882 501 0.00 2019-10-05 21:59:38 2019-10-05 21:59:49 t 1 1 111885 220 0.00 2019-10-05 21:56:58 2019-10-05 22:01:05 t 1 1 111889 522 0.00 2019-10-05 22:01:22 2019-10-05 22:01:58 t 1 1 111892 522 0.00 2019-10-05 22:00:36 2019-10-05 22:02:27 t 1 1 111899 522 0.00 2019-10-05 22:03:38 2019-10-05 22:03:46 t 1 1 111904 522 0.00 2019-10-05 22:05:24 2019-10-05 22:05:26 t 1 1 111905 220 0.00 2019-10-05 22:01:39 2019-10-05 22:05:50 t 1 1 111909 327 0.00 2019-10-05 21:56:14 2019-10-05 22:06:15 t 1 1 111912 456 0.00 2019-10-05 22:03:51 2019-10-05 22:06:56 t 1 1 111914 451 0.00 2019-10-05 21:56:21 2019-10-05 22:07:16 t 1 1 111915 522 0.00 2019-10-05 22:07:16 2019-10-05 22:07:17 t 1 1 111920 522 0.00 2019-10-05 22:10:14 2019-10-05 22:10:21 t 1 1 111927 372 0.00 2019-10-05 22:09:22 2019-10-05 22:12:48 t 1 2 111931 522 0.00 2019-10-05 22:15:55 2019-10-05 22:15:56 t 1 1 111936 520 0.00 2019-10-05 22:14:45 2019-10-05 22:19:06 t 1 1 111940 536 0.00 2019-10-05 22:19:58 2019-10-05 22:20:05 t 1 1 111943 522 0.00 2019-10-05 22:20:15 2019-10-05 22:20:46 t 1 1 111944 485 0.00 2019-10-05 22:14:56 2019-10-05 22:21:11 t 1 1 111946 501 0.00 2019-10-05 22:20:41 2019-10-05 22:22:28 t 1 1 111947 522 0.00 2019-10-05 22:20:59 2019-10-05 22:23:55 t 1 1 111952 485 0.00 2019-10-05 22:21:11 2019-10-05 22:26:26 t 1 1 111953 522 0.00 2019-10-05 22:27:23 2019-10-05 22:27:40 t 1 1 111954 327 0.00 2019-10-05 22:27:00 2019-10-05 22:28:01 t 1 1 111956 536 0.00 2019-10-05 22:26:40 2019-10-05 22:28:28 t 1 1 111757 325 0.00 2019-10-05 20:48:26 2019-10-05 20:54:37 t 1 2 111760 472 0.00 2019-10-05 20:54:07 2019-10-05 20:55:08 t 1 1 111763 472 0.00 2019-10-05 20:55:17 2019-10-05 20:56:17 t 1 1 111766 472 0.00 2019-10-05 20:57:07 2019-10-05 20:58:09 t 1 1 111770 528 0.00 2019-10-05 20:42:45 2019-10-05 20:59:30 t 1 1 111773 528 0.00 2019-10-05 20:59:30 2019-10-05 21:00:36 t 1 1 111776 220 0.00 2019-10-05 21:00:38 2019-10-05 21:02:12 t 1 1 111781 472 0.00 2019-10-05 21:03:25 2019-10-05 21:04:26 t 1 1 111786 470 0.00 2019-10-05 19:05:43 2019-10-05 21:06:59 t 1 1 111787 472 0.00 2019-10-05 21:08:10 2019-10-05 21:09:10 t 1 1 111789 220 0.00 2019-10-05 21:10:20 2019-10-05 21:10:34 t 1 1 111792 472 0.00 2019-10-05 21:13:19 2019-10-05 21:14:16 t 1 1 111794 220 0.00 2019-10-05 21:03:32 2019-10-05 21:14:42 t 1 1 111798 466 0.00 2019-10-05 17:36:20 2019-10-05 21:16:50 t 1 1 111799 220 0.00 2019-10-05 21:16:58 2019-10-05 21:17:07 t 1 1 111801 220 0.00 2019-10-05 21:17:17 2019-10-05 21:17:25 t 1 1 111805 526 0.00 2019-10-05 21:19:04 2019-10-05 21:19:29 t 1 1 111810 220 0.00 2019-10-05 21:20:53 2019-10-05 21:21:01 t 1 1 111813 456 0.00 2019-10-05 21:15:20 2019-10-05 21:22:30 t 1 1 111819 538 0.00 2019-10-05 21:00:06 2019-10-05 21:24:49 t 1 1 111821 220 0.00 2019-10-05 17:20:30 2019-10-05 21:25:36 t 1 2 111826 472 0.00 2019-10-05 21:26:21 2019-10-05 21:27:22 t 1 1 111830 522 0.00 2019-10-05 21:29:05 2019-10-05 21:30:09 t 1 1 111834 430 0.00 2019-10-05 21:27:49 2019-10-05 21:31:26 t 1 1 111836 327 0.00 2019-10-05 21:28:52 2019-10-05 21:32:08 t 1 1 111837 522 0.00 2019-10-05 21:33:20 2019-10-05 21:33:32 t 1 1 111838 470 0.00 2019-10-05 21:06:59 2019-10-05 21:34:22 t 1 1 111842 472 0.00 2019-10-05 21:39:01 2019-10-05 21:40:01 t 1 1 111844 220 0.00 2019-10-05 21:41:09 2019-10-05 21:41:16 t 1 1 111847 468 0.00 2019-10-05 21:06:01 2019-10-05 21:42:54 t 1 1 111849 472 0.00 2019-10-05 21:44:17 2019-10-05 21:45:27 t 1 1 111851 472 0.00 2019-10-05 21:45:39 2019-10-05 21:46:33 t 1 1 111854 522 0.00 2019-10-05 21:47:51 2019-10-05 21:48:11 t 1 1 111858 501 0.00 2019-10-05 20:51:48 2019-10-05 21:49:38 t 1 1 111862 220 0.00 2019-10-05 21:50:17 2019-10-05 21:50:25 t 1 1 111864 472 0.00 2019-10-05 21:49:32 2019-10-05 21:50:31 t 1 1 111868 306 0.00 2019-10-05 21:44:56 2019-10-05 21:52:21 t 1 1 111869 498 0.00 2019-10-05 21:08:28 2019-10-05 21:53:08 t 1 2 111878 220 0.00 2019-10-05 21:56:24 2019-10-05 21:56:32 t 1 1 111880 501 0.00 2019-10-05 21:57:45 2019-10-05 21:58:18 t 1 1 111881 501 0.00 2019-10-05 21:58:46 2019-10-05 21:59:32 t 1 1 111883 472 0.00 2019-10-05 21:52:34 2019-10-05 22:00:02 t 1 1 111886 522 0.00 2019-10-05 22:00:56 2019-10-05 22:01:06 t 1 1 111891 522 0.00 2019-10-05 22:02:16 2019-10-05 22:02:18 t 1 1 111893 501 0.00 2019-10-05 22:00:47 2019-10-05 22:02:27 t 1 1 111895 522 0.00 2019-10-05 22:02:48 2019-10-05 22:02:53 t 1 1 111896 456 0.00 2019-10-05 21:59:51 2019-10-05 22:03:24 t 1 1 111898 522 0.00 2019-10-05 22:03:31 2019-10-05 22:03:33 t 1 1 111900 522 0.00 2019-10-05 22:04:04 2019-10-05 22:04:11 t 1 1 111901 522 0.00 2019-10-05 22:04:29 2019-10-05 22:04:35 t 1 1 111903 522 0.00 2019-10-05 22:05:17 2019-10-05 22:05:19 t 1 1 111906 536 0.00 2019-10-05 21:49:34 2019-10-05 22:05:55 t 1 1 111907 536 0.00 2019-10-05 22:06:00 2019-10-05 22:06:08 t 1 1 111911 522 0.00 2019-10-05 22:06:27 2019-10-05 22:06:33 t 1 1 111918 522 0.00 2019-10-05 22:09:49 2019-10-05 22:09:56 t 1 1 111924 522 0.00 2019-10-05 22:11:24 2019-10-05 22:11:25 t 1 1 111925 536 0.00 2019-10-05 22:11:17 2019-10-05 22:12:03 t 1 1 111928 536 0.00 2019-10-05 22:13:10 2019-10-05 22:13:23 t 1 1 111933 536 0.00 2019-10-05 22:16:11 2019-10-05 22:16:18 t 1 1 111934 327 0.00 2019-10-05 22:15:50 2019-10-05 22:16:57 t 1 1 111937 331 0.00 2019-10-05 22:00:16 2019-10-05 22:19:09 t 1 1 111938 536 0.00 2019-10-05 22:19:21 2019-10-05 22:19:27 t 1 1 111941 522 0.00 2019-10-05 22:19:21 2019-10-05 22:20:09 t 1 1 111942 501 0.00 2019-10-05 22:20:15 2019-10-05 22:20:30 t 1 1 111945 536 0.00 2019-10-05 22:21:28 2019-10-05 22:21:43 t 1 1 111949 536 0.00 2019-10-05 22:24:21 2019-10-05 22:24:49 t 1 1 111957 536 0.00 2019-10-05 22:29:24 2019-10-05 22:29:26 t 1 1 111959 522 0.00 2019-10-05 22:28:47 2019-10-05 22:29:44 t 1 1 111963 503 0.00 2019-10-05 22:17:29 2019-10-05 22:31:07 t 1 1 111964 522 0.00 2019-10-05 22:31:05 2019-10-05 22:31:22 t 1 1 111966 501 0.00 2019-10-05 22:21:18 2019-10-05 22:31:30 t 1 1 111970 522 0.00 2019-10-05 22:31:53 2019-10-05 22:32:30 t 1 1 111973 522 0.00 2019-10-05 22:32:58 2019-10-05 22:33:09 t 1 1 111978 522 0.00 2019-10-05 22:33:34 2019-10-05 22:34:07 t 1 1 111984 522 0.00 2019-10-05 22:35:12 2019-10-05 22:35:13 t 1 1 111987 466 0.00 2019-10-05 22:34:16 2019-10-05 22:35:47 t 1 1 112000 538 0.00 2019-10-05 22:15:23 2019-10-05 22:40:04 t 1 1 112001 327 0.00 2019-10-05 22:38:02 2019-10-05 22:41:33 t 1 1 112003 311 0.00 2019-10-05 22:29:32 2019-10-05 22:42:39 t 1 2 112004 503 0.00 2019-10-05 22:31:07 2019-10-05 22:44:38 t 1 1 112007 508 0.00 2019-10-05 21:51:53 2019-10-05 22:50:40 t 1 2 112016 481 0.00 2019-10-05 21:50:34 2019-10-05 22:59:26 t 1 1 112017 528 0.00 2019-10-05 22:34:06 2019-10-05 23:00:21 t 1 1 112021 501 0.00 2019-10-05 23:02:19 2019-10-05 23:03:08 t 1 1 112023 468 0.00 2019-10-05 22:50:21 2019-10-05 23:03:55 t 1 1 112027 501 0.00 2019-10-05 23:06:08 2019-10-05 23:06:19 t 1 1 112034 522 0.00 2019-10-05 23:08:38 2019-10-05 23:11:57 t 1 1 112035 522 0.00 2019-10-05 23:12:02 2019-10-05 23:12:10 t 1 1 112041 522 0.00 2019-10-05 23:18:01 2019-10-05 23:18:23 t 1 1 112043 522 0.00 2019-10-05 23:22:03 2019-10-05 23:22:16 t 1 1 112044 522 0.00 2019-10-05 23:23:43 2019-10-05 23:23:45 t 1 1 112047 536 0.00 2019-10-05 23:27:30 2019-10-05 23:28:11 t 1 1 112049 501 0.00 2019-10-05 23:28:23 2019-10-05 23:28:34 t 1 1 112055 468 0.00 2019-10-05 23:26:27 2019-10-05 23:41:31 t 1 1 112057 522 0.00 2019-10-05 23:28:05 2019-10-05 23:43:26 t 1 1 112059 445 0.00 2019-10-05 20:36:34 2019-10-05 23:52:43 t 1 1 112060 466 0.00 2019-10-05 23:17:46 2019-10-05 23:53:42 t 1 1 112061 528 0.00 2019-10-05 23:04:11 2019-10-05 23:54:18 t 1 1 112062 468 0.00 2019-10-05 23:41:31 2019-10-05 23:54:58 t 1 1 112064 220 0.00 2019-10-05 21:15:22 2019-10-05 23:59:08 t 1 1 112068 522 0.00 2019-10-06 00:06:18 2019-10-06 00:06:20 t 1 1 112069 522 0.00 2019-10-06 00:09:40 2019-10-06 00:09:53 t 1 1 112071 522 0.00 2019-10-06 00:11:09 2019-10-06 00:11:10 t 1 1 112077 522 0.00 2019-10-06 00:26:19 2019-10-06 00:26:25 t 1 1 112082 522 0.00 2019-10-06 00:41:37 2019-10-06 00:41:40 t 1 1 112085 522 0.00 2019-10-06 00:51:48 2019-10-06 00:51:49 t 1 1 112086 522 0.00 2019-10-06 00:52:01 2019-10-06 00:52:02 t 1 1 111831 472 0.00 2019-10-05 21:29:22 2019-10-05 21:30:24 t 1 1 111832 220 0.00 2019-10-05 21:30:32 2019-10-05 21:30:40 t 1 1 111833 220 0.00 2019-10-05 21:31:06 2019-10-05 21:31:15 t 1 1 111835 472 0.00 2019-10-05 21:30:35 2019-10-05 21:31:35 t 1 1 111839 430 0.00 2019-10-05 21:31:26 2019-10-05 21:34:43 t 1 1 111841 220 0.00 2019-10-05 21:38:35 2019-10-05 21:38:48 t 1 1 111855 327 0.00 2019-10-05 21:42:11 2019-10-05 21:48:43 t 1 1 111856 220 0.00 2019-10-05 21:47:53 2019-10-05 21:48:59 t 1 1 111860 481 0.00 2019-10-05 21:42:12 2019-10-05 21:49:53 t 1 1 111865 538 0.00 2019-10-05 21:25:07 2019-10-05 21:51:11 t 1 1 111866 220 0.00 2019-10-05 21:50:52 2019-10-05 21:51:23 t 1 1 111870 220 0.00 2019-10-05 21:03:33 2019-10-05 21:53:57 t 1 2 111871 522 0.00 2019-10-05 21:54:06 2019-10-05 21:54:07 t 1 1 111873 220 0.00 2019-10-05 21:51:55 2019-10-05 21:54:35 t 1 1 111875 220 0.00 2019-10-05 21:55:08 2019-10-05 21:55:33 t 1 1 111879 501 0.00 2019-10-05 21:49:39 2019-10-05 21:56:45 t 1 1 111884 331 0.00 2019-10-05 21:45:47 2019-10-05 22:00:16 t 1 1 111887 220 0.00 2019-10-05 22:01:05 2019-10-05 22:01:14 t 1 1 111888 220 0.00 2019-10-05 22:01:22 2019-10-05 22:01:29 t 1 1 111890 522 0.00 2019-10-05 22:02:09 2019-10-05 22:02:11 t 1 1 111894 522 0.00 2019-10-05 22:02:24 2019-10-05 22:02:30 t 1 1 111897 522 0.00 2019-10-05 22:03:14 2019-10-05 22:03:26 t 1 1 111902 522 0.00 2019-10-05 22:05:10 2019-10-05 22:05:12 t 1 1 111908 522 0.00 2019-10-05 22:05:31 2019-10-05 22:06:09 t 1 1 111910 220 0.00 2019-10-05 22:05:50 2019-10-05 22:06:22 t 1 1 111913 522 0.00 2019-10-05 22:06:51 2019-10-05 22:06:58 t 1 1 111916 522 0.00 2019-10-05 22:09:10 2019-10-05 22:09:16 t 1 1 111917 522 0.00 2019-10-05 22:09:32 2019-10-05 22:09:39 t 1 1 111919 538 0.00 2019-10-05 21:51:21 2019-10-05 22:10:20 t 1 1 111921 522 0.00 2019-10-05 22:10:34 2019-10-05 22:10:41 t 1 1 111922 522 0.00 2019-10-05 22:10:52 2019-10-05 22:10:59 t 1 1 111923 522 0.00 2019-10-05 22:11:17 2019-10-05 22:11:19 t 1 1 111926 536 0.00 2019-10-05 22:12:03 2019-10-05 22:12:36 t 1 1 111929 451 0.00 2019-10-05 22:07:16 2019-10-05 22:13:46 t 1 1 111930 520 0.00 2019-10-05 21:46:41 2019-10-05 22:14:46 t 1 1 111932 536 0.00 2019-10-05 22:13:22 2019-10-05 22:16:06 t 1 1 111935 456 0.00 2019-10-05 22:08:58 2019-10-05 22:17:10 t 1 1 111939 501 0.00 2019-10-05 22:01:38 2019-10-05 22:20:03 t 1 1 111948 536 0.00 2019-10-05 22:23:40 2019-10-05 22:24:04 t 1 1 111950 536 0.00 2019-10-05 22:24:59 2019-10-05 22:25:05 t 1 1 111951 536 0.00 2019-10-05 22:26:18 2019-10-05 22:26:20 t 1 1 111955 522 0.00 2019-10-05 22:28:07 2019-10-05 22:28:14 t 1 1 111958 522 0.00 2019-10-05 22:27:53 2019-10-05 22:29:28 t 1 1 111961 522 0.00 2019-10-05 22:30:14 2019-10-05 22:30:47 t 1 1 111962 522 0.00 2019-10-05 22:30:58 2019-10-05 22:31:00 t 1 1 111965 522 0.00 2019-10-05 22:31:22 2019-10-05 22:31:24 t 1 1 111967 522 0.00 2019-10-05 22:31:29 2019-10-05 22:31:34 t 1 1 111968 522 0.00 2019-10-05 22:31:47 2019-10-05 22:31:48 t 1 1 111976 501 0.00 2019-10-05 22:33:19 2019-10-05 22:33:34 t 1 1 111980 466 0.00 2019-10-05 22:32:04 2019-10-05 22:34:17 t 1 1 111981 522 0.00 2019-10-05 22:34:19 2019-10-05 22:34:21 t 1 1 111983 522 0.00 2019-10-05 22:34:54 2019-10-05 22:34:59 t 1 1 111986 522 0.00 2019-10-05 22:35:37 2019-10-05 22:35:39 t 1 1 111988 522 0.00 2019-10-05 22:35:44 2019-10-05 22:35:50 t 1 1 111989 522 0.00 2019-10-05 22:36:08 2019-10-05 22:36:10 t 1 1 111990 522 0.00 2019-10-05 22:36:16 2019-10-05 22:36:16 t 1 1 111991 522 0.00 2019-10-05 22:37:03 2019-10-05 22:37:16 t 1 1 111992 485 0.00 2019-10-05 22:34:49 2019-10-05 22:37:36 t 1 1 111996 220 0.00 2019-10-05 22:06:22 2019-10-05 22:38:42 t 1 1 111997 522 0.00 2019-10-05 22:38:48 2019-10-05 22:38:48 f 1 1 111998 522 0.00 2019-10-05 22:37:29 2019-10-05 22:39:28 t 1 1 112005 220 0.00 2019-10-05 22:16:46 2019-10-05 22:46:28 t 1 2 112008 501 0.00 2019-10-05 22:33:45 2019-10-05 22:52:03 t 1 1 112009 416 0.00 2019-10-05 21:35:03 2019-10-05 22:53:33 t 1 1 112010 501 0.00 2019-10-05 22:53:33 2019-10-05 22:54:05 t 1 1 112013 501 0.00 2019-10-05 22:54:37 2019-10-05 22:58:18 t 1 1 112014 501 0.00 2019-10-05 22:59:19 2019-10-05 22:59:21 t 1 1 112018 501 0.00 2019-10-05 23:00:19 2019-10-05 23:00:21 t 1 1 112019 501 0.00 2019-10-05 23:01:19 2019-10-05 23:01:53 t 1 1 112020 528 0.00 2019-10-05 23:00:20 2019-10-05 23:02:46 t 1 1 112024 501 0.00 2019-10-05 23:04:20 2019-10-05 23:04:22 t 1 1 112026 501 0.00 2019-10-05 23:05:32 2019-10-05 23:05:58 t 1 1 112028 501 0.00 2019-10-05 23:05:20 2019-10-05 23:06:28 t 1 1 112029 522 0.00 2019-10-05 23:04:42 2019-10-05 23:08:33 t 1 1 112039 522 0.00 2019-10-05 23:17:13 2019-10-05 23:17:16 t 1 1 112045 468 0.00 2019-10-05 23:11:40 2019-10-05 23:26:27 t 1 1 112046 522 0.00 2019-10-05 23:27:20 2019-10-05 23:27:21 t 1 1 112048 501 0.00 2019-10-05 23:27:46 2019-10-05 23:28:13 t 1 1 112052 461 0.00 2019-10-05 22:34:18 2019-10-05 23:33:51 t 1 2 112056 375 0.00 2019-10-05 23:29:23 2019-10-05 23:42:33 t 1 1 112065 422 0.00 2019-10-05 23:24:02 2019-10-06 00:01:04 t 1 1 112067 522 0.00 2019-10-06 00:06:05 2019-10-06 00:06:06 t 1 1 112070 501 0.00 2019-10-05 23:47:08 2019-10-06 00:11:09 t 1 1 112072 501 0.00 2019-10-06 00:13:17 2019-10-06 00:13:29 t 1 1 112073 501 0.00 2019-10-06 00:14:11 2019-10-06 00:14:41 t 1 1 112074 522 0.00 2019-10-06 00:16:34 2019-10-06 00:16:37 t 1 1 112075 512 0.00 2019-10-05 23:29:12 2019-10-06 00:20:39 t 1 1 112076 522 0.00 2019-10-06 00:21:16 2019-10-06 00:21:17 t 1 1 112079 220 0.00 2019-10-05 23:58:51 2019-10-06 00:32:14 t 1 2 112080 468 0.00 2019-10-05 23:59:00 2019-10-06 00:36:05 t 1 1 112081 522 0.00 2019-10-06 00:36:26 2019-10-06 00:36:34 t 1 1 112087 522 0.00 2019-10-06 00:56:49 2019-10-06 00:56:50 t 1 1 112088 468 0.00 2019-10-06 00:36:05 2019-10-06 00:58:28 t 1 1 112094 522 0.00 2019-10-06 01:12:05 2019-10-06 01:12:05 t 1 1 112101 522 0.00 2019-10-06 01:27:21 2019-10-06 01:27:24 t 1 1 112109 522 0.00 2019-10-06 01:47:45 2019-10-06 01:47:55 t 1 1 112110 501 0.00 2019-10-06 01:47:59 2019-10-06 01:47:59 t 1 1 112116 501 0.00 2019-10-06 01:53:07 2019-10-06 01:53:15 t 1 1 112117 501 0.00 2019-10-06 01:54:08 2019-10-06 01:54:16 t 1 1 112121 501 0.00 2019-10-06 01:55:16 2019-10-06 01:57:28 t 1 1 112122 522 0.00 2019-10-06 01:57:59 2019-10-06 01:58:00 t 1 1 112123 501 0.00 2019-10-06 02:00:49 2019-10-06 02:01:10 t 1 1 112124 501 0.00 2019-10-06 02:02:16 2019-10-06 02:02:17 t 1 1 112125 522 0.00 2019-10-06 02:03:05 2019-10-06 02:03:22 t 1 1 112128 501 0.00 2019-10-06 02:02:25 2019-10-06 02:03:25 t 1 1 112129 522 0.00 2019-10-06 02:08:09 2019-10-06 02:08:11 t 1 1 112134 522 0.00 2019-10-06 02:28:19 2019-10-06 02:28:28 t 1 1 111960 522 0.00 2019-10-05 22:29:55 2019-10-05 22:30:02 t 1 1 111969 466 0.00 2019-10-05 21:18:31 2019-10-05 22:32:04 t 1 1 111971 522 0.00 2019-10-05 22:32:48 2019-10-05 22:32:52 t 1 1 111972 501 0.00 2019-10-05 22:31:47 2019-10-05 22:33:08 t 1 1 111974 522 0.00 2019-10-05 22:33:14 2019-10-05 22:33:16 t 1 1 111975 522 0.00 2019-10-05 22:33:21 2019-10-05 22:33:29 t 1 1 111977 528 0.00 2019-10-05 22:04:14 2019-10-05 22:34:06 t 1 1 111979 522 0.00 2019-10-05 22:34:12 2019-10-05 22:34:14 t 1 1 111982 485 0.00 2019-10-05 22:26:26 2019-10-05 22:34:49 t 1 1 111985 522 0.00 2019-10-05 22:35:18 2019-10-05 22:35:25 t 1 1 111993 522 0.00 2019-10-05 22:37:35 2019-10-05 22:37:41 t 1 1 111994 522 0.00 2019-10-05 22:37:59 2019-10-05 22:38:01 t 1 1 111995 522 0.00 2019-10-05 22:38:06 2019-10-05 22:38:13 t 1 1 111999 522 0.00 2019-10-05 22:38:31 2019-10-05 22:39:31 t 1 1 112002 538 0.00 2019-10-05 22:40:04 2019-10-05 22:41:58 t 1 1 112006 220 0.00 2019-10-05 22:38:42 2019-10-05 22:46:31 t 1 1 112011 501 0.00 2019-10-05 22:52:14 2019-10-05 22:54:28 t 1 1 112012 327 0.00 2019-10-05 22:51:02 2019-10-05 22:57:20 t 1 1 112015 220 0.00 2019-10-05 22:39:19 2019-10-05 22:59:24 t 1 2 112022 501 0.00 2019-10-05 23:03:15 2019-10-05 23:03:24 t 1 1 112025 536 0.00 2019-10-05 22:29:48 2019-10-05 23:05:53 t 1 1 112030 501 0.00 2019-10-05 23:09:11 2019-10-05 23:09:25 t 1 1 112031 468 0.00 2019-10-05 23:05:33 2019-10-05 23:10:25 t 1 1 112032 501 0.00 2019-10-05 23:11:23 2019-10-05 23:11:32 t 1 1 112033 501 0.00 2019-10-05 23:11:39 2019-10-05 23:11:40 t 1 1 112036 501 0.00 2019-10-05 23:12:15 2019-10-05 23:12:25 t 1 1 112037 375 0.00 2019-10-05 21:49:41 2019-10-05 23:16:11 t 1 1 112038 466 0.00 2019-10-05 22:36:15 2019-10-05 23:17:00 t 1 1 112040 422 0.00 2019-10-05 20:41:09 2019-10-05 23:18:04 t 1 1 112042 501 0.00 2019-10-05 23:19:33 2019-10-05 23:20:33 t 1 1 112050 501 0.00 2019-10-05 23:28:45 2019-10-05 23:28:46 t 1 1 112051 375 0.00 2019-10-05 23:16:11 2019-10-05 23:29:23 t 1 1 112053 501 0.00 2019-10-05 23:33:39 2019-10-05 23:35:28 t 1 1 112054 501 0.00 2019-10-05 23:37:43 2019-10-05 23:39:28 t 1 1 112058 501 0.00 2019-10-05 23:41:48 2019-10-05 23:43:28 t 1 1 112063 522 0.00 2019-10-05 23:43:26 2019-10-05 23:56:00 t 1 1 112066 522 0.00 2019-10-05 23:56:00 2019-10-06 00:03:58 t 1 1 112078 522 0.00 2019-10-06 00:31:22 2019-10-06 00:31:25 t 1 1 112083 522 0.00 2019-10-06 00:46:41 2019-10-06 00:46:54 t 1 1 112084 422 0.00 2019-10-06 00:01:04 2019-10-06 00:48:43 t 1 1 112096 522 0.00 2019-10-06 01:16:57 2019-10-06 01:17:12 t 1 1 112097 538 0.00 2019-10-05 22:41:02 2019-10-06 01:19:34 t 1 1 112100 466 0.00 2019-10-05 23:53:42 2019-10-06 01:23:30 t 1 1 112103 501 0.00 2019-10-06 00:14:52 2019-10-06 01:35:48 t 1 1 112105 522 0.00 2019-10-06 01:42:39 2019-10-06 01:42:42 t 1 1 112106 501 0.00 2019-10-06 01:42:52 2019-10-06 01:45:28 t 1 1 112108 536 0.00 2019-10-06 01:46:08 2019-10-06 01:47:20 t 1 1 112118 501 0.00 2019-10-06 01:55:09 2019-10-06 01:55:10 t 1 1 112120 522 0.00 2019-10-06 01:56:30 2019-10-06 01:56:31 t 1 1 112126 501 0.00 2019-10-06 02:03:12 2019-10-06 02:03:23 t 1 1 112131 501 0.00 2019-10-06 02:04:26 2019-10-06 02:16:02 t 1 1 112133 522 0.00 2019-10-06 02:23:17 2019-10-06 02:23:18 t 1 1 112135 516 0.00 2019-10-05 21:27:35 2019-10-06 02:30:14 t 1 1 112136 522 0.00 2019-10-06 02:33:32 2019-10-06 02:33:35 t 1 1 112138 522 0.00 2019-10-06 02:38:35 2019-10-06 02:38:38 t 1 1 112143 522 0.00 2019-10-06 02:59:03 2019-10-06 03:00:04 t 1 1 112144 522 0.00 2019-10-06 03:04:10 2019-10-06 03:04:26 t 1 1 112147 522 0.00 2019-10-06 03:14:17 2019-10-06 03:14:20 t 1 1 112150 522 0.00 2019-10-06 03:29:36 2019-10-06 03:29:36 t 1 1 112153 522 0.00 2019-10-06 03:41:06 2019-10-06 03:41:08 t 1 1 112158 522 0.00 2019-10-06 04:00:01 2019-10-06 04:00:04 t 1 1 112159 412 0.00 2019-10-05 19:40:42 2019-10-06 04:01:27 t 1 1 112163 522 0.00 2019-10-06 04:14:31 2019-10-06 04:14:33 t 1 1 112165 522 0.00 2019-10-06 04:15:03 2019-10-06 04:15:04 t 1 1 112171 522 0.00 2019-10-06 04:25:24 2019-10-06 04:25:46 t 1 1 112175 522 0.00 2019-10-06 04:41:08 2019-10-06 04:41:10 t 1 1 112180 522 0.00 2019-10-06 04:50:49 2019-10-06 04:50:51 t 1 1 112186 516 0.00 2019-10-06 04:14:51 2019-10-06 05:06:23 t 1 1 112189 522 0.00 2019-10-06 05:20:58 2019-10-06 05:21:17 t 1 1 112192 522 0.00 2019-10-06 05:31:21 2019-10-06 05:31:21 t 1 1 112194 522 0.00 2019-10-06 05:40:14 2019-10-06 05:40:16 t 1 1 112195 522 0.00 2019-10-06 05:41:26 2019-10-06 05:41:29 t 1 1 112201 520 0.00 2019-10-06 05:44:34 2019-10-06 05:54:53 t 1 1 112203 292 0.00 2019-10-06 05:54:51 2019-10-06 05:55:58 t 1 2 112206 522 0.00 2019-10-06 05:59:10 2019-10-06 05:59:20 t 1 1 112211 522 0.00 2019-10-06 06:15:41 2019-10-06 06:15:43 t 1 1 112215 522 0.00 2019-10-06 06:21:52 2019-10-06 06:21:52 t 1 1 112219 522 0.00 2019-10-06 06:29:07 2019-10-06 06:29:15 t 1 1 112221 522 0.00 2019-10-06 06:34:15 2019-10-06 06:34:16 t 1 1 112222 516 0.00 2019-10-06 05:43:12 2019-10-06 06:35:01 t 1 1 112223 522 0.00 2019-10-06 06:39:22 2019-10-06 06:39:23 t 1 1 112225 522 0.00 2019-10-06 06:47:57 2019-10-06 06:47:58 t 1 1 112226 522 0.00 2019-10-06 06:49:35 2019-10-06 06:49:51 t 1 1 112228 522 0.00 2019-10-06 06:50:11 2019-10-06 06:50:12 t 1 1 112231 522 0.00 2019-10-06 06:54:01 2019-10-06 06:54:03 t 1 1 112233 522 0.00 2019-10-06 06:55:12 2019-10-06 06:55:14 t 1 1 112235 306 0.00 2019-10-06 06:51:55 2019-10-06 06:57:58 t 1 1 112236 522 0.00 2019-10-06 06:59:06 2019-10-06 06:59:08 t 1 1 112239 522 0.00 2019-10-06 07:01:13 2019-10-06 07:01:14 t 1 1 112243 522 0.00 2019-10-06 07:04:39 2019-10-06 07:04:40 t 1 1 112245 522 0.00 2019-10-06 07:08:09 2019-10-06 07:08:11 t 1 1 112246 522 0.00 2019-10-06 07:09:18 2019-10-06 07:09:20 t 1 1 112248 522 0.00 2019-10-06 07:12:09 2019-10-06 07:12:10 t 1 1 112250 522 0.00 2019-10-06 07:14:12 2019-10-06 07:14:14 t 1 1 112253 522 0.00 2019-10-06 07:17:15 2019-10-06 07:17:17 t 1 1 112257 522 0.00 2019-10-06 07:19:16 2019-10-06 07:19:18 t 1 1 112264 522 0.00 2019-10-06 07:27:54 2019-10-06 07:29:29 t 1 1 112269 522 0.00 2019-10-06 07:33:38 2019-10-06 07:33:41 t 1 1 112272 522 0.00 2019-10-06 07:35:46 2019-10-06 07:35:49 t 1 1 112273 522 0.00 2019-10-06 07:36:51 2019-10-06 07:37:22 t 1 1 112276 522 0.00 2019-10-06 07:36:37 2019-10-06 07:38:29 t 1 1 112277 522 0.00 2019-10-06 07:39:34 2019-10-06 07:39:36 t 1 1 112279 416 0.00 2019-10-06 06:53:19 2019-10-06 07:40:38 t 1 1 112281 522 0.00 2019-10-06 07:41:28 2019-10-06 07:41:29 t 1 1 112282 220 0.00 2019-10-06 07:41:06 2019-10-06 07:42:45 t 1 1 112284 522 0.00 2019-10-06 07:44:36 2019-10-06 07:44:38 t 1 1 112286 331 0.00 2019-10-06 07:34:34 2019-10-06 07:46:24 t 1 1 112089 422 0.00 2019-10-06 00:48:43 2019-10-06 00:58:56 t 1 1 112090 468 0.00 2019-10-06 00:58:28 2019-10-06 01:01:47 t 1 1 112091 522 0.00 2019-10-06 01:01:55 2019-10-06 01:01:56 t 1 1 112092 522 0.00 2019-10-06 01:06:59 2019-10-06 01:07:02 t 1 1 112093 422 0.00 2019-10-06 00:58:56 2019-10-06 01:09:24 t 1 1 112095 468 0.00 2019-10-06 01:01:47 2019-10-06 01:15:00 t 1 1 112098 468 0.00 2019-10-06 01:15:00 2019-10-06 01:19:56 t 1 1 112099 522 0.00 2019-10-06 01:22:14 2019-10-06 01:22:18 t 1 1 112102 522 0.00 2019-10-06 01:32:27 2019-10-06 01:32:37 t 1 1 112104 522 0.00 2019-10-06 01:37:36 2019-10-06 01:37:39 t 1 1 112107 501 0.00 2019-10-06 01:45:55 2019-10-06 01:46:56 t 1 1 112111 501 0.00 2019-10-06 01:50:01 2019-10-06 01:50:02 t 1 1 112112 501 0.00 2019-10-06 01:50:41 2019-10-06 01:50:58 t 1 1 112113 501 0.00 2019-10-06 01:51:22 2019-10-06 01:52:04 t 1 1 112114 522 0.00 2019-10-06 01:52:57 2019-10-06 01:52:58 t 1 1 112115 522 0.00 2019-10-06 01:53:09 2019-10-06 01:53:12 t 1 1 112119 522 0.00 2019-10-06 01:56:22 2019-10-06 01:56:24 t 1 1 112127 522 0.00 2019-10-06 02:03:22 2019-10-06 02:03:24 t 1 1 112130 522 0.00 2019-10-06 02:13:13 2019-10-06 02:13:14 t 1 1 112132 522 0.00 2019-10-06 02:18:15 2019-10-06 02:18:16 t 1 1 112140 522 0.00 2019-10-06 02:48:50 2019-10-06 02:48:50 t 1 1 112141 522 0.00 2019-10-06 02:53:55 2019-10-06 02:53:59 t 1 1 112146 522 0.00 2019-10-06 03:09:34 2019-10-06 03:09:37 t 1 1 112149 522 0.00 2019-10-06 03:24:25 2019-10-06 03:24:34 t 1 1 112151 522 0.00 2019-10-06 03:34:39 2019-10-06 03:34:59 t 1 1 112152 522 0.00 2019-10-06 03:39:44 2019-10-06 03:39:47 t 1 1 112155 522 0.00 2019-10-06 03:49:50 2019-10-06 03:49:51 t 1 1 112156 522 0.00 2019-10-06 03:52:15 2019-10-06 03:52:28 t 1 1 112160 522 0.00 2019-10-06 04:05:07 2019-10-06 04:05:09 t 1 1 112161 445 0.00 2019-10-05 23:52:43 2019-10-06 04:06:19 t 1 1 112166 522 0.00 2019-10-06 04:15:10 2019-10-06 04:15:14 t 1 1 112170 522 0.00 2019-10-06 04:23:53 2019-10-06 04:24:07 t 1 1 112176 522 0.00 2019-10-06 04:41:43 2019-10-06 04:41:44 t 1 1 112177 522 0.00 2019-10-06 04:42:48 2019-10-06 04:42:50 t 1 1 112178 522 0.00 2019-10-06 04:45:37 2019-10-06 04:45:40 t 1 1 112181 522 0.00 2019-10-06 04:55:49 2019-10-06 04:55:50 t 1 1 112182 522 0.00 2019-10-06 04:56:01 2019-10-06 04:56:15 t 1 1 112184 520 0.00 2019-10-06 05:00:25 2019-10-06 05:05:40 t 1 1 112185 522 0.00 2019-10-06 05:05:56 2019-10-06 05:05:57 t 1 1 112190 522 0.00 2019-10-06 05:26:18 2019-10-06 05:26:19 t 1 1 112193 522 0.00 2019-10-06 05:36:25 2019-10-06 05:36:26 t 1 1 112198 522 0.00 2019-10-06 05:46:15 2019-10-06 05:46:32 t 1 1 112202 331 0.00 2019-10-06 05:54:01 2019-10-06 05:54:54 t 1 1 112204 522 0.00 2019-10-06 05:56:38 2019-10-06 05:56:39 t 1 1 112207 522 0.00 2019-10-06 06:00:56 2019-10-06 06:01:20 t 1 1 112208 522 0.00 2019-10-06 06:01:41 2019-10-06 06:01:41 t 1 1 112212 522 0.00 2019-10-06 06:15:49 2019-10-06 06:15:50 t 1 1 112216 522 0.00 2019-10-06 06:24:01 2019-10-06 06:24:06 t 1 1 112218 522 0.00 2019-10-06 06:27:21 2019-10-06 06:27:23 t 1 1 112220 306 0.00 2019-10-06 06:25:35 2019-10-06 06:32:49 t 1 1 112224 522 0.00 2019-10-06 06:44:25 2019-10-06 06:44:26 t 1 1 112229 522 0.00 2019-10-06 06:51:58 2019-10-06 06:52:00 t 1 1 112232 522 0.00 2019-10-06 06:54:32 2019-10-06 06:54:34 t 1 1 112237 522 0.00 2019-10-06 06:59:36 2019-10-06 06:59:39 t 1 1 112240 522 0.00 2019-10-06 07:03:04 2019-10-06 07:03:28 t 1 1 112244 522 0.00 2019-10-06 07:06:09 2019-10-06 07:06:11 t 1 1 112249 430 0.00 2019-10-06 07:11:24 2019-10-06 07:13:11 t 1 1 112252 522 0.00 2019-10-06 07:14:57 2019-10-06 07:15:09 t 1 1 112255 516 0.00 2019-10-06 07:03:24 2019-10-06 07:18:26 t 1 1 112256 522 0.00 2019-10-06 07:18:22 2019-10-06 07:19:16 t 1 1 112259 522 0.00 2019-10-06 07:22:20 2019-10-06 07:22:22 t 1 1 112260 522 0.00 2019-10-06 07:23:31 2019-10-06 07:23:33 t 1 1 112265 522 0.00 2019-10-06 07:30:18 2019-10-06 07:30:20 t 1 1 112268 306 0.00 2019-10-06 07:27:06 2019-10-06 07:31:56 t 1 1 112270 331 0.00 2019-10-06 06:52:44 2019-10-06 07:34:08 t 1 1 112274 522 0.00 2019-10-06 07:37:30 2019-10-06 07:37:30 t 1 1 112278 522 0.00 2019-10-06 07:40:28 2019-10-06 07:40:29 t 1 1 112280 522 0.00 2019-10-06 07:40:48 2019-10-06 07:40:50 t 1 1 112288 430 0.00 2019-10-06 07:29:43 2019-10-06 07:47:48 t 1 1 112294 456 0.00 2019-10-06 07:55:31 2019-10-06 07:58:30 t 1 1 112295 430 0.00 2019-10-06 08:01:11 2019-10-06 08:03:34 t 1 1 112297 522 0.00 2019-10-06 07:52:21 2019-10-06 08:06:19 t 1 1 112300 522 0.00 2019-10-06 08:09:32 2019-10-06 08:09:34 t 1 1 112302 522 0.00 2019-10-06 08:10:52 2019-10-06 08:10:52 t 1 1 112303 522 0.00 2019-10-06 08:11:42 2019-10-06 08:14:04 t 1 1 112305 522 0.00 2019-10-06 08:15:01 2019-10-06 08:15:10 t 1 1 112306 522 0.00 2019-10-06 08:15:23 2019-10-06 08:16:13 t 1 1 112308 522 0.00 2019-10-06 08:17:31 2019-10-06 08:17:53 t 1 1 112313 306 0.00 2019-10-06 08:16:55 2019-10-06 08:22:42 t 1 1 112315 522 0.00 2019-10-06 08:22:52 2019-10-06 08:26:13 t 1 1 112317 522 0.00 2019-10-06 08:28:14 2019-10-06 08:28:16 t 1 1 112319 522 0.00 2019-10-06 08:29:11 2019-10-06 08:29:34 t 1 1 112321 522 0.00 2019-10-06 08:29:55 2019-10-06 08:30:17 t 1 1 112323 522 0.00 2019-10-06 08:28:26 2019-10-06 08:30:29 t 1 1 112325 522 0.00 2019-10-06 08:31:52 2019-10-06 08:31:53 t 1 1 112327 522 0.00 2019-10-06 08:33:43 2019-10-06 08:33:50 t 1 1 112328 331 0.00 2019-10-06 07:46:27 2019-10-06 08:34:25 t 1 1 112334 416 0.00 2019-10-06 08:28:58 2019-10-06 08:39:45 t 1 1 112335 445 0.00 2019-10-06 08:24:44 2019-10-06 08:41:09 t 1 1 112338 522 0.00 2019-10-06 08:41:56 2019-10-06 08:41:58 t 1 1 112341 422 0.00 2019-10-06 01:09:24 2019-10-06 08:45:28 t 1 1 112343 445 0.00 2019-10-06 08:45:28 2019-10-06 08:56:19 t 1 1 112345 481 0.00 2019-10-05 23:00:07 2019-10-06 09:03:16 t 1 1 112346 522 0.00 2019-10-06 09:03:39 2019-10-06 09:03:56 t 1 1 112349 522 0.00 2019-10-06 09:04:04 2019-10-06 09:06:29 t 1 1 112353 481 0.00 2019-10-06 09:03:16 2019-10-06 09:09:39 t 1 1 112355 416 0.00 2019-10-06 08:39:49 2019-10-06 09:18:01 t 1 1 112356 306 0.00 2019-10-06 09:17:29 2019-10-06 09:20:58 t 1 1 112357 331 0.00 2019-10-06 08:34:25 2019-10-06 09:22:26 t 1 1 112360 522 0.00 2019-10-06 09:23:25 2019-10-06 09:31:45 t 1 1 112361 522 0.00 2019-10-06 09:31:53 2019-10-06 09:32:31 t 1 1 112365 331 0.00 2019-10-06 09:22:26 2019-10-06 09:34:41 t 1 1 112367 522 0.00 2019-10-06 09:35:02 2019-10-06 09:35:12 t 1 1 112371 501 0.00 2019-10-06 09:36:00 2019-10-06 09:39:05 t 1 1 112373 522 0.00 2019-10-06 09:41:24 2019-10-06 09:41:34 t 1 1 112379 522 0.00 2019-10-06 09:48:21 2019-10-06 09:49:29 t 1 1 112380 445 0.00 2019-10-06 08:56:29 2019-10-06 09:50:01 t 1 1 112137 466 0.00 2019-10-06 01:23:30 2019-10-06 02:36:42 t 1 1 112139 522 0.00 2019-10-06 02:43:45 2019-10-06 02:43:48 t 1 1 112142 339 0.00 2019-10-06 00:06:48 2019-10-06 02:56:12 t 1 2 112145 522 0.00 2019-10-06 03:09:15 2019-10-06 03:09:22 t 1 1 112148 522 0.00 2019-10-06 03:19:21 2019-10-06 03:19:22 t 1 1 112154 522 0.00 2019-10-06 03:44:46 2019-10-06 03:44:48 t 1 1 112157 522 0.00 2019-10-06 03:54:52 2019-10-06 03:54:55 t 1 1 112162 522 0.00 2019-10-06 04:13:36 2019-10-06 04:14:19 t 1 1 112164 516 0.00 2019-10-06 02:31:04 2019-10-06 04:14:48 t 1 1 112167 522 0.00 2019-10-06 04:20:15 2019-10-06 04:20:18 t 1 1 112168 522 0.00 2019-10-06 04:20:36 2019-10-06 04:21:19 t 1 1 112169 522 0.00 2019-10-06 04:22:13 2019-10-06 04:22:29 t 1 1 112172 522 0.00 2019-10-06 04:27:12 2019-10-06 04:27:22 t 1 1 112173 522 0.00 2019-10-06 04:30:27 2019-10-06 04:30:28 t 1 1 112174 522 0.00 2019-10-06 04:35:54 2019-10-06 04:36:55 t 1 1 112179 522 0.00 2019-10-06 04:50:42 2019-10-06 04:50:43 t 1 1 112183 522 0.00 2019-10-06 05:00:54 2019-10-06 05:00:55 t 1 1 112187 522 0.00 2019-10-06 05:11:01 2019-10-06 05:13:17 t 1 1 112188 522 0.00 2019-10-06 05:16:04 2019-10-06 05:16:10 t 1 1 112191 522 0.00 2019-10-06 05:26:31 2019-10-06 05:26:32 t 1 1 112196 516 0.00 2019-10-06 05:43:04 2019-10-06 05:43:06 t 1 1 112197 522 0.00 2019-10-06 05:43:32 2019-10-06 05:43:33 t 1 1 112199 522 0.00 2019-10-06 05:51:30 2019-10-06 05:51:31 t 1 1 112200 430 0.00 2019-10-06 05:51:49 2019-10-06 05:52:15 t 1 1 112205 522 0.00 2019-10-06 05:56:51 2019-10-06 05:56:53 t 1 1 112209 522 0.00 2019-10-06 06:06:43 2019-10-06 06:06:43 t 1 1 112210 306 0.00 2019-10-06 06:01:22 2019-10-06 06:08:53 t 1 1 112213 522 0.00 2019-10-06 06:16:50 2019-10-06 06:17:15 t 1 1 112214 456 0.00 2019-10-06 06:16:46 2019-10-06 06:19:46 t 1 1 112217 536 0.00 2019-10-06 06:24:44 2019-10-06 06:24:54 t 1 1 112227 522 0.00 2019-10-06 06:50:04 2019-10-06 06:50:04 t 1 1 112230 331 0.00 2019-10-06 05:54:54 2019-10-06 06:52:44 t 1 1 112234 522 0.00 2019-10-06 06:57:03 2019-10-06 06:57:26 t 1 1 112238 522 0.00 2019-10-06 07:01:06 2019-10-06 07:01:07 t 1 1 112241 522 0.00 2019-10-06 07:03:40 2019-10-06 07:03:42 t 1 1 112242 522 0.00 2019-10-06 07:04:03 2019-10-06 07:04:27 t 1 1 112247 522 0.00 2019-10-06 07:09:45 2019-10-06 07:10:14 t 1 1 112251 292 0.00 2019-10-06 07:14:01 2019-10-06 07:15:05 t 1 2 112254 522 0.00 2019-10-06 07:18:10 2019-10-06 07:18:22 t 1 1 112258 522 0.00 2019-10-06 07:20:06 2019-10-06 07:20:13 t 1 1 112261 522 0.00 2019-10-06 07:25:35 2019-10-06 07:25:38 t 1 1 112262 522 0.00 2019-10-06 07:26:31 2019-10-06 07:26:32 t 1 1 112263 522 0.00 2019-10-06 07:28:00 2019-10-06 07:28:13 t 1 1 112266 522 0.00 2019-10-06 07:30:31 2019-10-06 07:30:33 t 1 1 112267 522 0.00 2019-10-06 07:31:17 2019-10-06 07:31:19 t 1 1 112271 522 0.00 2019-10-06 07:35:24 2019-10-06 07:35:25 t 1 1 112275 522 0.00 2019-10-06 07:37:36 2019-10-06 07:37:37 t 1 1 112283 522 0.00 2019-10-06 07:42:43 2019-10-06 07:42:46 t 1 1 112285 522 0.00 2019-10-06 07:45:30 2019-10-06 07:45:33 t 1 1 112287 522 0.00 2019-10-06 07:47:40 2019-10-06 07:47:42 t 1 1 112289 456 0.00 2019-10-06 07:42:51 2019-10-06 07:48:10 t 1 1 112296 430 0.00 2019-10-06 08:03:34 2019-10-06 08:04:49 t 1 1 112298 522 0.00 2019-10-06 08:06:39 2019-10-06 08:06:43 t 1 1 112299 522 0.00 2019-10-06 08:07:41 2019-10-06 08:07:44 t 1 1 112304 522 0.00 2019-10-06 08:14:11 2019-10-06 08:14:19 t 1 1 112310 522 0.00 2019-10-06 08:19:46 2019-10-06 08:20:15 t 1 1 112311 522 0.00 2019-10-06 08:21:01 2019-10-06 08:21:02 t 1 1 112312 522 0.00 2019-10-06 08:22:18 2019-10-06 08:22:20 t 1 1 112316 522 0.00 2019-10-06 08:26:34 2019-10-06 08:26:37 t 1 1 112318 416 0.00 2019-10-06 07:39:56 2019-10-06 08:28:52 t 1 1 112320 522 0.00 2019-10-06 08:29:42 2019-10-06 08:29:43 t 1 1 112322 522 0.00 2019-10-06 08:30:22 2019-10-06 08:30:29 t 1 1 112329 522 0.00 2019-10-06 08:34:30 2019-10-06 08:34:33 t 1 1 112331 522 0.00 2019-10-06 08:38:25 2019-10-06 08:38:26 t 1 1 112333 522 0.00 2019-10-06 08:39:30 2019-10-06 08:39:31 t 1 1 112340 445 0.00 2019-10-06 08:42:30 2019-10-06 08:43:53 t 1 1 112348 522 0.00 2019-10-06 09:04:18 2019-10-06 09:04:58 t 1 1 112352 474 0.00 2019-10-06 09:05:56 2019-10-06 09:07:20 t 1 1 112354 306 0.00 2019-10-06 08:39:17 2019-10-06 09:14:07 t 1 1 112358 416 0.00 2019-10-06 09:18:01 2019-10-06 09:22:47 t 1 1 112362 522 0.00 2019-10-06 09:32:36 2019-10-06 09:32:47 t 1 1 112363 522 0.00 2019-10-06 09:33:29 2019-10-06 09:33:46 t 1 1 112364 522 0.00 2019-10-06 09:34:35 2019-10-06 09:34:37 t 1 1 112366 327 0.00 2019-10-06 08:51:54 2019-10-06 09:35:03 t 1 1 112369 522 0.00 2019-10-06 09:36:04 2019-10-06 09:38:33 t 1 1 112372 522 0.00 2019-10-06 09:40:38 2019-10-06 09:40:41 t 1 1 112376 522 0.00 2019-10-06 09:43:28 2019-10-06 09:46:57 t 1 1 112377 522 0.00 2019-10-06 09:47:08 2019-10-06 09:47:16 t 1 1 112381 522 0.00 2019-10-06 09:48:33 2019-10-06 09:54:41 t 1 1 112384 331 0.00 2019-10-06 09:34:41 2019-10-06 09:56:59 t 1 1 112385 445 0.00 2019-10-06 09:50:20 2019-10-06 09:59:00 t 1 1 112388 461 0.00 2019-10-06 09:51:56 2019-10-06 10:01:19 t 1 2 112397 522 0.00 2019-10-06 10:10:15 2019-10-06 10:10:42 t 1 1 112398 522 0.00 2019-10-06 10:10:53 2019-10-06 10:11:04 t 1 1 112400 522 0.00 2019-10-06 10:11:09 2019-10-06 10:11:11 t 1 1 112404 522 0.00 2019-10-06 10:12:26 2019-10-06 10:13:40 t 1 1 112409 501 0.00 2019-10-06 10:20:37 2019-10-06 10:20:38 t 1 1 112414 501 0.00 2019-10-06 10:24:18 2019-10-06 10:25:48 t 1 1 112416 416 0.00 2019-10-06 09:22:47 2019-10-06 10:27:48 t 1 1 112423 522 0.00 2019-10-06 10:38:53 2019-10-06 10:39:02 t 1 1 112426 416 0.00 2019-10-06 10:28:30 2019-10-06 10:39:52 t 1 1 112429 522 0.00 2019-10-06 10:39:17 2019-10-06 10:40:30 t 1 1 112431 501 0.00 2019-10-06 10:41:03 2019-10-06 10:41:12 t 1 1 112436 501 0.00 2019-10-06 10:45:08 2019-10-06 10:45:19 t 1 1 112440 501 0.00 2019-10-06 10:49:10 2019-10-06 10:49:23 t 1 1 112442 501 0.00 2019-10-06 10:50:07 2019-10-06 10:50:50 t 1 1 112443 501 0.00 2019-10-06 10:50:57 2019-10-06 10:51:06 t 1 1 112445 416 0.00 2019-10-06 10:52:49 2019-10-06 10:53:55 t 1 1 112446 481 0.00 2019-10-06 10:01:49 2019-10-06 10:55:44 t 1 1 112450 522 0.00 2019-10-06 10:46:59 2019-10-06 10:58:07 t 1 1 112455 416 0.00 2019-10-06 11:04:35 2019-10-06 11:05:49 t 1 1 112465 445 0.00 2019-10-06 11:21:44 2019-10-06 11:27:04 t 1 1 112467 445 0.00 2019-10-06 11:28:06 2019-10-06 11:29:48 t 1 1 112470 474 0.00 2019-10-06 11:16:33 2019-10-06 11:38:16 t 1 1 112473 422 0.00 2019-10-06 10:39:03 2019-10-06 11:46:00 t 1 1 112479 501 0.00 2019-10-06 11:49:13 2019-10-06 11:49:14 t 1 1 112482 327 0.00 2019-10-06 11:47:12 2019-10-06 11:51:51 t 1 1 112290 516 0.00 2019-10-06 07:36:27 2019-10-06 07:50:07 t 1 1 112291 522 0.00 2019-10-06 07:48:17 2019-10-06 07:52:21 t 1 1 112292 412 0.00 2019-10-06 04:01:27 2019-10-06 07:56:18 t 1 1 112293 306 0.00 2019-10-06 07:54:28 2019-10-06 07:57:22 t 1 1 112301 522 0.00 2019-10-06 08:10:39 2019-10-06 08:10:41 t 1 1 112307 522 0.00 2019-10-06 08:16:39 2019-10-06 08:17:14 t 1 1 112309 522 0.00 2019-10-06 08:18:29 2019-10-06 08:19:00 t 1 1 112314 445 0.00 2019-10-06 04:06:19 2019-10-06 08:24:37 t 1 1 112324 522 0.00 2019-10-06 08:31:31 2019-10-06 08:31:39 t 1 1 112326 522 0.00 2019-10-06 08:33:21 2019-10-06 08:33:24 t 1 1 112330 522 0.00 2019-10-06 08:36:22 2019-10-06 08:36:26 t 1 1 112332 522 0.00 2019-10-06 08:38:53 2019-10-06 08:38:55 t 1 1 112336 522 0.00 2019-10-06 08:40:28 2019-10-06 08:41:25 t 1 1 112337 522 0.00 2019-10-06 08:41:39 2019-10-06 08:41:56 t 1 1 112339 520 0.00 2019-10-06 08:31:22 2019-10-06 08:42:05 t 1 1 112342 522 0.00 2019-10-06 08:42:07 2019-10-06 08:49:08 t 1 1 112344 247 0.00 2019-10-06 08:56:59 2019-10-06 09:01:59 t 1 2 112347 522 0.00 2019-10-06 09:04:10 2019-10-06 09:04:13 t 1 1 112350 522 0.00 2019-10-06 09:05:57 2019-10-06 09:06:36 t 1 1 112351 522 0.00 2019-10-06 09:07:12 2019-10-06 09:07:15 t 1 1 112359 522 0.00 2019-10-06 09:07:36 2019-10-06 09:23:25 t 1 1 112368 306 0.00 2019-10-06 09:29:29 2019-10-06 09:38:12 t 1 1 112370 522 0.00 2019-10-06 09:38:44 2019-10-06 09:38:48 t 1 1 112374 481 0.00 2019-10-06 09:09:39 2019-10-06 09:45:08 t 1 1 112375 306 0.00 2019-10-06 09:41:24 2019-10-06 09:46:05 t 1 1 112378 522 0.00 2019-10-06 09:47:27 2019-10-06 09:47:48 t 1 1 112390 522 0.00 2019-10-06 09:57:02 2019-10-06 10:06:50 t 1 1 112391 522 0.00 2019-10-06 10:06:55 2019-10-06 10:07:01 t 1 1 112393 522 0.00 2019-10-06 10:07:17 2019-10-06 10:07:29 t 1 1 112395 522 0.00 2019-10-06 10:09:16 2019-10-06 10:09:31 t 1 1 112401 522 0.00 2019-10-06 10:11:17 2019-10-06 10:11:33 t 1 1 112402 522 0.00 2019-10-06 10:11:47 2019-10-06 10:12:24 t 1 1 112403 512 0.00 2019-10-06 10:09:31 2019-10-06 10:13:20 t 1 1 112405 430 0.00 2019-10-06 10:08:48 2019-10-06 10:14:23 t 1 1 112407 501 0.00 2019-10-06 09:40:06 2019-10-06 10:18:34 t 1 1 112411 501 0.00 2019-10-06 10:21:37 2019-10-06 10:21:38 t 1 1 112412 220 0.00 2019-10-06 10:17:02 2019-10-06 10:23:25 t 1 2 112413 501 0.00 2019-10-06 10:23:54 2019-10-06 10:24:04 t 1 1 112415 379 0.00 2019-10-06 09:29:44 2019-10-06 10:27:27 t 1 1 112421 522 0.00 2019-10-06 10:35:51 2019-10-06 10:35:52 t 1 1 112422 501 0.00 2019-10-06 10:26:21 2019-10-06 10:37:59 t 1 1 112428 522 0.00 2019-10-06 10:39:57 2019-10-06 10:40:05 t 1 1 112430 416 0.00 2019-10-06 10:39:50 2019-10-06 10:41:05 t 1 1 112432 445 0.00 2019-10-06 10:02:03 2019-10-06 10:41:13 t 1 1 112433 501 0.00 2019-10-06 10:42:03 2019-10-06 10:42:04 t 1 1 112434 416 0.00 2019-10-06 10:41:04 2019-10-06 10:43:09 t 1 1 112439 445 0.00 2019-10-06 10:41:12 2019-10-06 10:47:04 t 1 1 112441 416 0.00 2019-10-06 10:44:55 2019-10-06 10:50:35 t 1 1 112444 445 0.00 2019-10-06 10:47:03 2019-10-06 10:51:59 t 1 1 112447 416 0.00 2019-10-06 10:54:34 2019-10-06 10:55:53 t 1 1 112451 327 0.00 2019-10-06 09:36:32 2019-10-06 10:58:15 t 1 1 112452 327 0.00 2019-10-06 10:58:15 2019-10-06 11:00:11 t 1 1 112453 532 0.00 2019-10-06 11:01:06 2019-10-06 11:03:43 t 1 1 112454 512 0.00 2019-10-06 11:03:35 2019-10-06 11:04:51 t 1 1 112456 445 0.00 2019-10-06 10:57:31 2019-10-06 11:06:57 t 1 1 112458 474 0.00 2019-10-06 11:07:17 2019-10-06 11:08:48 t 1 1 112461 474 0.00 2019-10-06 11:14:25 2019-10-06 11:16:25 t 1 1 112468 445 0.00 2019-10-06 11:29:48 2019-10-06 11:32:46 t 1 1 112469 481 0.00 2019-10-06 10:55:44 2019-10-06 11:34:14 t 1 1 112471 474 0.00 2019-10-06 11:38:26 2019-10-06 11:39:44 t 1 1 112474 327 0.00 2019-10-06 11:19:04 2019-10-06 11:46:03 t 1 1 112475 501 0.00 2019-10-06 11:40:52 2019-10-06 11:47:10 t 1 1 112476 327 0.00 2019-10-06 11:46:03 2019-10-06 11:48:07 t 1 1 112478 445 0.00 2019-10-06 11:42:29 2019-10-06 11:48:56 t 1 1 112480 501 0.00 2019-10-06 11:49:35 2019-10-06 11:49:43 t 1 1 112483 327 0.00 2019-10-06 11:51:50 2019-10-06 11:55:10 t 1 1 112486 445 0.00 2019-10-06 11:57:54 2019-10-06 11:58:49 t 1 1 112488 327 0.00 2019-10-06 11:57:18 2019-10-06 12:02:21 t 1 1 112495 528 0.00 2019-10-06 12:05:44 2019-10-06 12:11:28 t 1 1 112496 445 0.00 2019-10-06 12:08:00 2019-10-06 12:13:21 t 1 1 112497 501 0.00 2019-10-06 12:13:23 2019-10-06 12:15:34 t 1 1 112498 501 0.00 2019-10-06 12:16:37 2019-10-06 12:16:46 t 1 1 112499 501 0.00 2019-10-06 12:17:40 2019-10-06 12:19:30 t 1 1 112501 445 0.00 2019-10-06 12:13:45 2019-10-06 12:28:34 t 1 1 112504 481 0.00 2019-10-06 11:35:05 2019-10-06 12:38:27 t 1 1 112505 520 0.00 2019-10-06 12:28:20 2019-10-06 12:40:57 t 1 1 112513 247 0.00 2019-10-06 12:49:08 2019-10-06 12:51:49 t 1 2 112514 481 0.00 2019-10-06 12:51:59 2019-10-06 12:53:30 t 1 1 112531 331 0.00 2019-10-06 13:15:08 2019-10-06 13:16:57 t 1 1 112535 331 0.00 2019-10-06 13:17:53 2019-10-06 13:18:50 t 1 1 112537 520 0.00 2019-10-06 13:18:42 2019-10-06 13:20:00 t 1 1 112541 514 0.00 2019-10-06 13:05:06 2019-10-06 13:25:07 t 1 1 112543 520 0.00 2019-10-06 13:20:00 2019-10-06 13:25:26 t 1 1 112549 501 0.00 2019-10-06 13:29:37 2019-10-06 13:31:23 t 1 1 112550 498 0.00 2019-10-06 12:52:44 2019-10-06 13:32:02 t 1 2 112553 422 0.00 2019-10-06 13:00:15 2019-10-06 13:35:01 t 1 1 112557 501 0.00 2019-10-06 13:37:05 2019-10-06 13:37:46 t 1 1 112558 501 0.00 2019-10-06 13:37:53 2019-10-06 13:38:01 t 1 1 112563 501 0.00 2019-10-06 13:41:40 2019-10-06 13:41:49 t 1 1 112566 422 0.00 2019-10-06 13:35:01 2019-10-06 13:44:22 t 1 1 112568 501 0.00 2019-10-06 13:44:53 2019-10-06 13:45:02 t 1 1 112571 327 0.00 2019-10-06 13:37:19 2019-10-06 13:46:51 t 1 1 112573 528 0.00 2019-10-06 13:41:33 2019-10-06 13:48:33 t 1 1 112576 422 0.00 2019-10-06 13:44:22 2019-10-06 13:50:55 t 1 1 112578 501 0.00 2019-10-06 13:51:43 2019-10-06 13:52:16 t 1 1 112580 501 0.00 2019-10-06 13:52:48 2019-10-06 13:53:44 t 1 1 112582 501 0.00 2019-10-06 13:55:03 2019-10-06 13:55:25 t 1 1 112585 445 0.00 2019-10-06 13:05:57 2019-10-06 13:57:32 t 1 1 112589 501 0.00 2019-10-06 13:59:06 2019-10-06 13:59:52 t 1 1 112590 501 0.00 2019-10-06 14:01:00 2019-10-06 14:01:08 t 1 1 112593 481 0.00 2019-10-06 13:11:48 2019-10-06 14:04:07 t 1 1 112595 528 0.00 2019-10-06 13:52:51 2019-10-06 14:06:50 t 1 1 112596 490 0.00 2019-10-06 14:05:05 2019-10-06 14:07:06 t 1 1 112599 327 0.00 2019-10-06 14:04:04 2019-10-06 14:09:26 t 1 1 112603 306 0.00 2019-10-06 13:30:26 2019-10-06 14:12:37 t 1 1 112606 422 0.00 2019-10-06 14:01:51 2019-10-06 14:13:14 t 1 1 112607 501 0.00 2019-10-06 14:12:32 2019-10-06 14:14:36 t 1 1 112382 522 0.00 2019-10-06 09:54:49 2019-10-06 09:55:05 t 1 1 112383 522 0.00 2019-10-06 09:56:11 2019-10-06 09:56:13 t 1 1 112386 481 0.00 2019-10-06 09:46:01 2019-10-06 09:59:42 t 1 1 112387 445 0.00 2019-10-06 09:58:58 2019-10-06 10:00:06 t 1 1 112389 331 0.00 2019-10-06 09:58:01 2019-10-06 10:02:37 t 1 1 112392 430 0.00 2019-10-06 09:53:38 2019-10-06 10:07:20 t 1 1 112394 522 0.00 2019-10-06 10:07:36 2019-10-06 10:09:04 t 1 1 112396 522 0.00 2019-10-06 10:09:52 2019-10-06 10:09:59 t 1 1 112399 247 0.00 2019-10-06 10:09:35 2019-10-06 10:11:08 t 1 2 112406 430 0.00 2019-10-06 10:14:43 2019-10-06 10:18:32 t 1 1 112408 501 0.00 2019-10-06 10:19:44 2019-10-06 10:19:58 t 1 1 112410 331 0.00 2019-10-06 10:03:06 2019-10-06 10:20:38 t 1 1 112417 516 0.00 2019-10-06 10:09:15 2019-10-06 10:29:44 t 1 1 112418 331 0.00 2019-10-06 10:20:43 2019-10-06 10:30:16 t 1 1 112419 522 0.00 2019-10-06 10:32:57 2019-10-06 10:33:13 t 1 1 112420 522 0.00 2019-10-06 10:33:18 2019-10-06 10:34:50 t 1 1 112424 422 0.00 2019-10-06 08:45:28 2019-10-06 10:39:03 t 1 1 112425 522 0.00 2019-10-06 10:37:50 2019-10-06 10:39:30 t 1 1 112427 501 0.00 2019-10-06 10:39:02 2019-10-06 10:40:01 t 1 1 112435 416 0.00 2019-10-06 10:42:18 2019-10-06 10:44:45 t 1 1 112437 522 0.00 2019-10-06 10:40:40 2019-10-06 10:45:34 t 1 1 112438 522 0.00 2019-10-06 10:46:29 2019-10-06 10:46:37 t 1 1 112448 512 0.00 2019-10-06 10:37:45 2019-10-06 10:56:40 t 1 1 112449 445 0.00 2019-10-06 10:55:13 2019-10-06 10:57:32 t 1 1 112457 474 0.00 2019-10-06 10:52:40 2019-10-06 11:07:59 t 1 1 112459 474 0.00 2019-10-06 11:08:54 2019-10-06 11:13:26 t 1 1 112460 445 0.00 2019-10-06 11:07:08 2019-10-06 11:16:23 t 1 1 112462 327 0.00 2019-10-06 11:00:11 2019-10-06 11:19:04 t 1 1 112463 416 0.00 2019-10-06 11:05:49 2019-10-06 11:20:42 t 1 1 112464 445 0.00 2019-10-06 11:19:21 2019-10-06 11:21:45 t 1 1 112466 490 0.00 2019-10-06 10:50:15 2019-10-06 11:27:49 t 1 1 112472 512 0.00 2019-10-06 11:38:53 2019-10-06 11:45:46 t 1 1 112477 501 0.00 2019-10-06 11:48:13 2019-10-06 11:48:22 t 1 1 112481 501 0.00 2019-10-06 11:49:52 2019-10-06 11:51:10 t 1 1 112485 445 0.00 2019-10-06 11:49:04 2019-10-06 11:57:33 t 1 1 112487 472 0.00 2019-10-06 11:52:48 2019-10-06 11:59:42 t 1 1 112493 501 0.00 2019-10-06 12:06:32 2019-10-06 12:10:25 t 1 1 112502 327 0.00 2019-10-06 12:04:10 2019-10-06 12:28:54 t 1 1 112503 445 0.00 2019-10-06 12:28:36 2019-10-06 12:31:30 t 1 1 112506 512 0.00 2019-10-06 12:25:36 2019-10-06 12:42:07 t 1 1 112507 520 0.00 2019-10-06 12:40:57 2019-10-06 12:42:45 t 1 1 112508 331 0.00 2019-10-06 10:32:42 2019-10-06 12:43:44 t 1 1 112516 538 0.00 2019-10-06 10:58:17 2019-10-06 12:59:14 t 1 1 112517 422 0.00 2019-10-06 12:02:39 2019-10-06 13:00:15 t 1 1 112518 331 0.00 2019-10-06 12:43:40 2019-10-06 13:00:59 t 1 1 112520 445 0.00 2019-10-06 12:31:59 2019-10-06 13:03:50 t 1 1 112523 331 0.00 2019-10-06 13:00:59 2019-10-06 13:05:50 t 1 1 112524 520 0.00 2019-10-06 12:44:45 2019-10-06 13:07:04 t 1 1 112525 481 0.00 2019-10-06 12:53:02 2019-10-06 13:11:48 t 1 1 112528 520 0.00 2019-10-06 13:12:03 2019-10-06 13:14:44 t 1 1 112529 331 0.00 2019-10-06 13:05:55 2019-10-06 13:15:01 t 1 1 112532 520 0.00 2019-10-06 13:16:24 2019-10-06 13:17:47 t 1 1 112533 516 0.00 2019-10-06 12:56:10 2019-10-06 13:18:29 t 1 1 112536 331 0.00 2019-10-06 13:18:49 2019-10-06 13:19:22 t 1 1 112539 379 0.00 2019-10-06 10:27:27 2019-10-06 13:20:31 t 1 1 112547 501 0.00 2019-10-06 13:28:55 2019-10-06 13:30:30 t 1 1 112548 520 0.00 2019-10-06 13:29:46 2019-10-06 13:31:14 t 1 1 112552 520 0.00 2019-10-06 13:31:12 2019-10-06 13:32:39 t 1 1 112554 501 0.00 2019-10-06 13:33:30 2019-10-06 13:35:30 t 1 1 112559 501 0.00 2019-10-06 13:38:08 2019-10-06 13:38:09 t 1 1 112562 501 0.00 2019-10-06 13:40:34 2019-10-06 13:40:43 t 1 1 112564 501 0.00 2019-10-06 13:42:36 2019-10-06 13:43:37 t 1 1 112567 501 0.00 2019-10-06 13:44:22 2019-10-06 13:44:35 t 1 1 112569 501 0.00 2019-10-06 13:45:38 2019-10-06 13:45:39 t 1 1 112570 520 0.00 2019-10-06 13:32:45 2019-10-06 13:46:28 t 1 1 112575 501 0.00 2019-10-06 13:50:18 2019-10-06 13:50:44 t 1 1 112577 474 0.00 2019-10-06 11:39:43 2019-10-06 13:52:07 t 1 1 112579 514 0.00 2019-10-06 13:25:43 2019-10-06 13:53:02 t 1 1 112581 327 0.00 2019-10-06 13:47:27 2019-10-06 13:54:04 t 1 1 112587 501 0.00 2019-10-06 13:58:29 2019-10-06 13:58:56 t 1 1 112588 501 0.00 2019-10-06 13:57:47 2019-10-06 13:59:30 t 1 1 112594 501 0.00 2019-10-06 14:04:57 2019-10-06 14:04:58 t 1 1 112598 501 0.00 2019-10-06 14:08:42 2019-10-06 14:09:14 t 1 1 112600 522 0.00 2019-10-06 14:00:51 2019-10-06 14:10:22 t 1 1 112601 501 0.00 2019-10-06 14:10:05 2019-10-06 14:11:48 t 1 1 112602 501 0.00 2019-10-06 14:11:54 2019-10-06 14:12:03 t 1 1 112604 520 0.00 2019-10-06 13:46:28 2019-10-06 14:12:45 t 1 1 112605 528 0.00 2019-10-06 14:12:21 2019-10-06 14:13:12 t 1 1 112608 526 0.00 2019-10-06 14:17:06 2019-10-06 14:17:36 t 1 1 112609 485 0.00 2019-10-06 14:09:53 2019-10-06 14:18:29 t 1 1 112611 485 0.00 2019-10-06 14:18:29 2019-10-06 14:20:53 t 1 1 112620 522 0.00 2019-10-06 14:27:15 2019-10-06 14:28:29 t 1 1 112623 501 0.00 2019-10-06 14:15:36 2019-10-06 14:30:41 t 1 1 112624 306 0.00 2019-10-06 14:21:33 2019-10-06 14:32:15 t 1 1 112625 327 0.00 2019-10-06 14:31:32 2019-10-06 14:33:47 t 1 1 112626 422 0.00 2019-10-06 14:30:01 2019-10-06 14:34:25 t 1 1 112629 430 0.00 2019-10-06 14:12:09 2019-10-06 14:37:31 t 1 1 112634 485 0.00 2019-10-06 14:29:19 2019-10-06 14:40:29 t 1 1 112638 485 0.00 2019-10-06 14:40:29 2019-10-06 14:44:39 t 1 1 112639 501 0.00 2019-10-06 14:43:17 2019-10-06 14:45:18 t 1 1 112640 422 0.00 2019-10-06 14:41:40 2019-10-06 14:47:20 t 1 1 112642 456 0.00 2019-10-06 14:43:10 2019-10-06 14:47:44 t 1 1 112644 327 0.00 2019-10-06 14:43:10 2019-10-06 14:48:50 t 1 1 112647 372 0.00 2019-10-06 14:31:50 2019-10-06 14:50:50 t 1 2 112648 422 0.00 2019-10-06 14:47:20 2019-10-06 14:54:27 t 1 1 112653 481 0.00 2019-10-06 14:42:34 2019-10-06 14:56:13 t 1 1 112655 522 0.00 2019-10-06 14:54:56 2019-10-06 14:56:30 t 1 1 112659 522 0.00 2019-10-06 14:55:43 2019-10-06 14:58:01 t 1 1 112664 306 0.00 2019-10-06 14:46:01 2019-10-06 15:00:51 t 1 1 112665 522 0.00 2019-10-06 15:01:04 2019-10-06 15:01:05 t 1 1 112666 522 0.00 2019-10-06 15:02:05 2019-10-06 15:02:07 t 1 1 112667 522 0.00 2019-10-06 15:02:30 2019-10-06 15:02:31 t 1 1 112669 327 0.00 2019-10-06 14:58:46 2019-10-06 15:04:07 t 1 1 112675 372 0.00 2019-10-06 15:06:47 2019-10-06 15:08:20 t 1 2 112680 327 0.00 2019-10-06 15:13:30 2019-10-06 15:14:37 t 1 1 112681 306 0.00 2019-10-06 15:10:28 2019-10-06 15:15:07 t 1 1 112683 522 0.00 2019-10-06 15:15:31 2019-10-06 15:15:32 t 1 1 112484 327 0.00 2019-10-06 11:55:09 2019-10-06 11:57:18 t 1 1 112489 422 0.00 2019-10-06 11:46:00 2019-10-06 12:02:39 t 1 1 112490 501 0.00 2019-10-06 12:00:13 2019-10-06 12:03:09 t 1 1 112491 327 0.00 2019-10-06 12:02:20 2019-10-06 12:04:11 t 1 1 112492 445 0.00 2019-10-06 11:58:46 2019-10-06 12:08:09 t 1 1 112494 501 0.00 2019-10-06 12:10:35 2019-10-06 12:10:45 t 1 1 112500 501 0.00 2019-10-06 12:18:23 2019-10-06 12:19:53 t 1 1 112509 520 0.00 2019-10-06 12:42:45 2019-10-06 12:44:13 t 1 1 112510 327 0.00 2019-10-06 12:28:54 2019-10-06 12:47:29 t 1 1 112511 481 0.00 2019-10-06 12:42:29 2019-10-06 12:47:45 t 1 1 112512 461 0.00 2019-10-06 11:19:17 2019-10-06 12:50:41 t 1 2 112515 516 0.00 2019-10-06 12:54:08 2019-10-06 12:56:10 t 1 1 112519 528 0.00 2019-10-06 13:00:38 2019-10-06 13:02:17 t 1 1 112521 327 0.00 2019-10-06 12:47:29 2019-10-06 13:05:02 t 1 1 112522 445 0.00 2019-10-06 13:04:02 2019-10-06 13:05:49 t 1 1 112526 456 0.00 2019-10-06 13:03:05 2019-10-06 13:11:54 t 1 1 112527 520 0.00 2019-10-06 13:07:04 2019-10-06 13:12:03 t 1 1 112530 520 0.00 2019-10-06 13:15:28 2019-10-06 13:16:24 t 1 1 112534 520 0.00 2019-10-06 13:17:47 2019-10-06 13:18:42 t 1 1 112538 220 0.00 2019-10-06 13:13:03 2019-10-06 13:20:27 t 1 2 112540 327 0.00 2019-10-06 13:05:02 2019-10-06 13:21:17 t 1 1 112542 461 0.00 2019-10-06 12:47:43 2019-10-06 13:25:25 t 1 2 112544 520 0.00 2019-10-06 13:25:26 2019-10-06 13:26:54 t 1 1 112545 501 0.00 2019-10-06 13:24:16 2019-10-06 13:28:45 t 1 1 112546 520 0.00 2019-10-06 13:26:53 2019-10-06 13:29:47 t 1 1 112551 501 0.00 2019-10-06 13:31:42 2019-10-06 13:32:25 t 1 1 112555 516 0.00 2019-10-06 13:29:17 2019-10-06 13:36:02 t 1 1 112556 327 0.00 2019-10-06 13:21:17 2019-10-06 13:37:19 t 1 1 112560 501 0.00 2019-10-06 13:38:16 2019-10-06 13:38:31 t 1 1 112561 501 0.00 2019-10-06 13:39:33 2019-10-06 13:39:42 t 1 1 112565 501 0.00 2019-10-06 13:43:34 2019-10-06 13:44:12 t 1 1 112572 501 0.00 2019-10-06 13:47:39 2019-10-06 13:47:49 t 1 1 112574 501 0.00 2019-10-06 13:48:39 2019-10-06 13:49:41 t 1 1 112583 422 0.00 2019-10-06 13:50:55 2019-10-06 13:55:27 t 1 1 112584 501 0.00 2019-10-06 13:55:48 2019-10-06 13:57:30 t 1 1 112586 501 0.00 2019-10-06 13:56:46 2019-10-06 13:57:38 t 1 1 112591 422 0.00 2019-10-06 13:55:27 2019-10-06 14:01:51 t 1 1 112592 501 0.00 2019-10-06 14:03:31 2019-10-06 14:04:01 t 1 1 112597 501 0.00 2019-10-06 14:07:05 2019-10-06 14:07:36 t 1 1 112610 306 0.00 2019-10-06 14:12:57 2019-10-06 14:19:03 t 1 1 112612 520 0.00 2019-10-06 14:12:44 2019-10-06 14:21:31 t 1 1 112613 327 0.00 2019-10-06 14:19:21 2019-10-06 14:22:09 t 1 1 112614 528 0.00 2019-10-06 14:22:52 2019-10-06 14:23:17 t 1 1 112616 422 0.00 2019-10-06 14:13:14 2019-10-06 14:25:08 t 1 1 112618 522 0.00 2019-10-06 14:26:08 2019-10-06 14:27:08 t 1 1 112619 220 0.00 2019-10-06 14:14:46 2019-10-06 14:28:15 t 1 1 112628 501 0.00 2019-10-06 14:31:47 2019-10-06 14:35:16 t 1 1 112631 422 0.00 2019-10-06 14:34:25 2019-10-06 14:37:55 t 1 1 112633 501 0.00 2019-10-06 14:39:30 2019-10-06 14:40:16 t 1 1 112636 422 0.00 2019-10-06 14:37:55 2019-10-06 14:41:40 t 1 1 112641 325 0.00 2019-10-06 14:10:22 2019-10-06 14:47:21 t 1 2 112643 512 0.00 2019-10-06 14:41:12 2019-10-06 14:48:37 t 1 1 112646 526 0.00 2019-10-06 14:49:34 2019-10-06 14:49:41 t 1 1 112649 522 0.00 2019-10-06 14:49:10 2019-10-06 14:54:42 t 1 1 112656 220 0.00 2019-10-06 14:55:56 2019-10-06 14:56:31 t 1 1 112657 220 0.00 2019-10-06 14:56:31 2019-10-06 14:57:05 t 1 1 112660 522 0.00 2019-10-06 14:58:09 2019-10-06 14:58:36 t 1 1 112661 522 0.00 2019-10-06 14:58:43 2019-10-06 14:59:21 t 1 1 112663 522 0.00 2019-10-06 15:00:03 2019-10-06 15:00:04 t 1 1 112668 522 0.00 2019-10-06 15:02:37 2019-10-06 15:02:38 t 1 1 112671 522 0.00 2019-10-06 15:02:44 2019-10-06 15:04:47 t 1 1 112672 501 0.00 2019-10-06 14:46:21 2019-10-06 15:05:23 t 1 1 112673 522 0.00 2019-10-06 15:05:43 2019-10-06 15:05:44 t 1 1 112676 306 0.00 2019-10-06 15:05:44 2019-10-06 15:09:02 t 1 1 112677 220 0.00 2019-10-06 14:57:38 2019-10-06 15:10:17 t 1 1 112679 528 0.00 2019-10-06 15:06:14 2019-10-06 15:14:37 t 1 1 112685 536 0.00 2019-10-06 14:58:36 2019-10-06 15:24:12 t 1 1 112692 536 0.00 2019-10-06 15:26:53 2019-10-06 15:27:10 t 1 1 112694 220 0.00 2019-10-06 15:20:28 2019-10-06 15:27:51 t 1 2 112695 536 0.00 2019-10-06 15:27:45 2019-10-06 15:28:46 t 1 1 112698 536 0.00 2019-10-06 15:29:03 2019-10-06 15:29:45 t 1 1 112701 536 0.00 2019-10-06 15:34:37 2019-10-06 15:34:44 t 1 1 112703 220 0.00 2019-10-06 15:37:28 2019-10-06 15:37:37 t 1 1 112706 306 0.00 2019-10-06 15:37:21 2019-10-06 15:45:10 t 1 1 112711 220 0.00 2019-10-06 15:48:13 2019-10-06 15:48:27 t 1 1 112715 538 0.00 2019-10-06 13:00:20 2019-10-06 15:52:17 t 1 1 112717 306 0.00 2019-10-06 15:50:59 2019-10-06 15:52:41 t 1 1 112719 536 0.00 2019-10-06 15:50:31 2019-10-06 15:52:59 t 1 1 112721 490 0.00 2019-10-06 15:45:40 2019-10-06 15:56:25 t 1 1 112722 508 0.00 2019-10-06 15:47:01 2019-10-06 15:57:07 t 1 2 112723 247 0.00 2019-10-06 15:52:00 2019-10-06 15:58:11 t 1 2 112727 445 0.00 2019-10-06 13:57:32 2019-10-06 16:01:32 t 1 1 112731 522 0.00 2019-10-06 16:04:34 2019-10-06 16:04:41 t 1 1 112733 522 0.00 2019-10-06 16:04:53 2019-10-06 16:05:36 t 1 1 112735 490 0.00 2019-10-06 15:56:25 2019-10-06 16:05:52 t 1 1 112737 522 0.00 2019-10-06 16:06:05 2019-10-06 16:06:44 t 1 1 112744 526 0.00 2019-10-06 14:49:48 2019-10-06 16:10:36 t 1 1 112746 327 0.00 2019-10-06 16:09:38 2019-10-06 16:10:50 t 1 1 112750 522 0.00 2019-10-06 16:13:32 2019-10-06 16:13:34 t 1 1 112751 522 0.00 2019-10-06 16:13:39 2019-10-06 16:14:05 t 1 1 112753 522 0.00 2019-10-06 16:14:27 2019-10-06 16:15:02 t 1 1 112754 522 0.00 2019-10-06 16:15:20 2019-10-06 16:15:37 t 1 1 112755 522 0.00 2019-10-06 16:15:45 2019-10-06 16:16:06 t 1 1 112756 325 0.00 2019-10-06 16:09:16 2019-10-06 16:16:47 t 1 2 112758 528 0.00 2019-10-06 16:14:12 2019-10-06 16:17:56 t 1 1 112759 526 0.00 2019-10-06 16:10:36 2019-10-06 16:19:31 t 1 1 112768 220 0.00 2019-10-06 16:30:06 2019-10-06 16:30:14 t 1 1 112771 481 0.00 2019-10-06 16:31:40 2019-10-06 16:33:31 t 1 1 112772 412 0.00 2019-10-06 16:33:09 2019-10-06 16:34:55 t 1 1 112779 474 0.00 2019-10-06 15:31:40 2019-10-06 16:41:03 t 1 1 112780 412 0.00 2019-10-06 16:36:20 2019-10-06 16:41:44 t 1 1 112781 522 0.00 2019-10-06 16:34:31 2019-10-06 16:42:30 t 1 1 112784 327 0.00 2019-10-06 16:41:43 2019-10-06 16:44:10 t 1 1 112786 522 0.00 2019-10-06 16:43:38 2019-10-06 16:44:51 t 1 1 112788 508 0.00 2019-10-06 15:55:19 2019-10-06 16:45:24 t 1 2 112790 412 0.00 2019-10-06 16:43:12 2019-10-06 16:45:36 t 1 1 112793 474 0.00 2019-10-06 16:45:22 2019-10-06 16:50:44 t 1 1 112615 528 0.00 2019-10-06 14:23:56 2019-10-06 14:25:02 t 1 1 112617 451 0.00 2019-10-06 14:05:40 2019-10-06 14:25:25 t 1 1 112621 474 0.00 2019-10-06 13:52:30 2019-10-06 14:28:56 t 1 1 112622 422 0.00 2019-10-06 14:25:08 2019-10-06 14:30:01 t 1 1 112627 522 0.00 2019-10-06 14:33:26 2019-10-06 14:35:11 t 1 1 112630 481 0.00 2019-10-06 14:04:22 2019-10-06 14:37:35 t 1 1 112632 501 0.00 2019-10-06 14:39:09 2019-10-06 14:39:20 t 1 1 112635 512 0.00 2019-10-06 13:02:55 2019-10-06 14:41:12 t 1 1 112637 522 0.00 2019-10-06 14:35:51 2019-10-06 14:43:26 t 1 1 112645 526 0.00 2019-10-06 14:45:47 2019-10-06 14:49:35 t 1 1 112650 220 0.00 2019-10-06 14:33:58 2019-10-06 14:54:50 t 1 1 112651 220 0.00 2019-10-06 14:54:50 2019-10-06 14:55:23 t 1 1 112652 220 0.00 2019-10-06 14:55:23 2019-10-06 14:55:56 t 1 1 112654 516 0.00 2019-10-06 14:53:05 2019-10-06 14:56:16 t 1 1 112658 220 0.00 2019-10-06 14:57:05 2019-10-06 14:57:39 t 1 1 112662 522 0.00 2019-10-06 14:59:34 2019-10-06 14:59:35 t 1 1 112670 522 0.00 2019-10-06 15:02:12 2019-10-06 15:04:30 t 1 1 112674 522 0.00 2019-10-06 15:06:18 2019-10-06 15:07:19 t 1 1 112678 292 0.00 2019-10-06 15:11:03 2019-10-06 15:12:08 t 1 2 112682 522 0.00 2019-10-06 15:06:31 2019-10-06 15:15:18 t 1 1 112684 220 0.00 2019-10-06 15:16:32 2019-10-06 15:16:49 t 1 1 112686 306 0.00 2019-10-06 15:23:33 2019-10-06 15:25:20 t 1 1 112689 536 0.00 2019-10-06 15:25:54 2019-10-06 15:26:09 t 1 1 112691 220 0.00 2019-10-06 15:27:00 2019-10-06 15:27:08 t 1 1 112697 501 0.00 2019-10-06 15:29:02 2019-10-06 15:29:16 t 1 1 112699 474 0.00 2019-10-06 14:29:01 2019-10-06 15:31:35 t 1 1 112702 327 0.00 2019-10-06 15:36:06 2019-10-06 15:36:37 t 1 1 112705 412 0.00 2019-10-06 07:56:18 2019-10-06 15:39:50 t 1 1 112707 490 0.00 2019-10-06 15:25:08 2019-10-06 15:45:40 t 1 1 112708 361 0.00 2019-10-06 14:55:11 2019-10-06 15:47:45 t 1 2 112709 522 0.00 2019-10-06 15:15:43 2019-10-06 15:48:00 t 1 1 112713 461 0.00 2019-10-06 14:59:12 2019-10-06 15:48:42 t 1 2 112714 536 0.00 2019-10-06 15:38:48 2019-10-06 15:50:31 t 1 1 112716 538 0.00 2019-10-06 15:52:21 2019-10-06 15:52:26 t 1 1 112720 528 0.00 2019-10-06 15:49:44 2019-10-06 15:56:22 t 1 1 112724 220 0.00 2019-10-06 15:58:42 2019-10-06 15:58:50 t 1 1 112726 528 0.00 2019-10-06 16:00:13 2019-10-06 16:00:45 t 1 1 112732 522 0.00 2019-10-06 16:04:46 2019-10-06 16:04:48 t 1 1 112734 522 0.00 2019-10-06 16:05:41 2019-10-06 16:05:48 t 1 1 112738 522 0.00 2019-10-06 16:06:49 2019-10-06 16:06:55 t 1 1 112739 522 0.00 2019-10-06 16:07:00 2019-10-06 16:07:40 t 1 1 112745 461 0.00 2019-10-06 15:50:37 2019-10-06 16:10:42 t 1 2 112747 306 0.00 2019-10-06 16:09:47 2019-10-06 16:11:54 t 1 1 112748 522 0.00 2019-10-06 16:08:05 2019-10-06 16:13:03 t 1 1 112757 522 0.00 2019-10-06 16:16:18 2019-10-06 16:17:30 t 1 1 112760 220 0.00 2019-10-06 16:19:38 2019-10-06 16:19:46 t 1 1 112761 306 0.00 2019-10-06 16:15:24 2019-10-06 16:20:18 t 1 1 112762 327 0.00 2019-10-06 16:20:42 2019-10-06 16:21:23 t 1 1 112767 481 0.00 2019-10-06 16:27:42 2019-10-06 16:29:34 t 1 1 112770 327 0.00 2019-10-06 16:31:16 2019-10-06 16:31:50 t 1 1 112773 412 0.00 2019-10-06 16:34:57 2019-10-06 16:36:00 t 1 1 112774 379 0.00 2019-10-06 13:48:36 2019-10-06 16:39:34 t 1 1 112776 456 0.00 2019-10-06 16:22:59 2019-10-06 16:39:50 t 1 1 112777 306 0.00 2019-10-06 16:36:08 2019-10-06 16:40:29 t 1 1 112783 522 0.00 2019-10-06 16:42:54 2019-10-06 16:43:20 t 1 1 112792 412 0.00 2019-10-06 16:49:18 2019-10-06 16:50:25 t 1 1 112794 220 0.00 2019-10-06 16:51:02 2019-10-06 16:51:12 t 1 1 112796 485 0.00 2019-10-06 16:49:50 2019-10-06 16:52:20 t 1 1 112797 412 0.00 2019-10-06 16:50:50 2019-10-06 16:53:08 t 1 1 112798 485 0.00 2019-10-06 16:53:06 2019-10-06 16:54:17 t 1 1 112800 412 0.00 2019-10-06 16:58:13 2019-10-06 17:00:30 t 1 1 112803 538 0.00 2019-10-06 17:00:55 2019-10-06 17:03:12 t 1 1 112807 412 0.00 2019-10-06 17:04:21 2019-10-06 17:05:42 t 1 1 112808 522 0.00 2019-10-06 17:04:04 2019-10-06 17:06:11 t 1 1 112810 327 0.00 2019-10-06 17:05:54 2019-10-06 17:06:54 t 1 1 112811 379 0.00 2019-10-06 16:39:38 2019-10-06 17:10:03 t 1 1 112814 220 0.00 2019-10-06 17:05:30 2019-10-06 17:12:03 t 1 1 112818 538 0.00 2019-10-06 17:10:19 2019-10-06 17:14:22 t 1 1 112821 538 0.00 2019-10-06 17:13:26 2019-10-06 17:15:37 t 1 1 112822 485 0.00 2019-10-06 17:14:29 2019-10-06 17:16:36 t 1 1 112825 327 0.00 2019-10-06 17:19:42 2019-10-06 17:20:16 t 1 1 112827 474 0.00 2019-10-06 16:51:09 2019-10-06 17:21:07 t 1 1 112829 220 0.00 2019-10-06 17:22:32 2019-10-06 17:22:40 t 1 1 112831 220 0.00 2019-10-06 17:22:02 2019-10-06 17:26:04 t 1 1 112832 220 0.00 2019-10-06 17:23:29 2019-10-06 17:27:15 t 1 1 112837 522 0.00 2019-10-06 17:29:09 2019-10-06 17:31:56 t 1 1 112842 514 0.00 2019-10-06 17:29:48 2019-10-06 17:35:39 t 1 1 112850 522 0.00 2019-10-06 17:41:15 2019-10-06 17:41:33 t 1 1 112856 474 0.00 2019-10-06 17:21:28 2019-10-06 17:43:54 t 1 1 112859 522 0.00 2019-10-06 17:42:08 2019-10-06 17:46:21 t 1 1 112862 474 0.00 2019-10-06 17:44:08 2019-10-06 17:47:37 t 1 1 112863 514 0.00 2019-10-06 17:35:39 2019-10-06 17:48:07 t 1 1 112864 522 0.00 2019-10-06 17:46:38 2019-10-06 17:49:04 t 1 1 112866 514 0.00 2019-10-06 17:48:07 2019-10-06 17:50:39 t 1 1 112870 520 0.00 2019-10-06 17:44:32 2019-10-06 17:52:14 t 1 1 112872 522 0.00 2019-10-06 17:52:16 2019-10-06 17:52:33 t 1 1 112873 474 0.00 2019-10-06 17:47:49 2019-10-06 17:53:05 t 1 1 112874 522 0.00 2019-10-06 17:52:45 2019-10-06 17:54:15 t 1 1 112882 520 0.00 2019-10-06 17:52:14 2019-10-06 18:02:47 t 1 1 112887 379 0.00 2019-10-06 17:57:27 2019-10-06 18:08:09 t 1 1 112889 522 0.00 2019-10-06 17:57:47 2019-10-06 18:08:26 t 1 1 112898 522 0.00 2019-10-06 18:10:41 2019-10-06 18:11:44 t 1 1 112905 522 0.00 2019-10-06 18:13:57 2019-10-06 18:13:57 f 1 1 112906 520 0.00 2019-10-06 18:10:17 2019-10-06 18:14:05 t 1 1 112909 528 0.00 2019-10-06 17:57:09 2019-10-06 18:15:28 t 1 1 112912 522 0.00 2019-10-06 18:16:22 2019-10-06 18:16:48 t 1 1 112915 379 0.00 2019-10-06 18:08:09 2019-10-06 18:19:13 t 1 1 112918 468 0.00 2019-10-06 18:12:20 2019-10-06 18:19:16 t 1 1 112921 422 0.00 2019-10-06 16:44:19 2019-10-06 18:19:18 t 1 1 112924 536 0.00 2019-10-06 17:38:38 2019-10-06 18:19:20 t 1 1 112927 379 0.00 2019-10-06 18:22:47 2019-10-06 18:24:04 t 1 1 112928 296 0.00 2019-10-06 18:24:25 2019-10-06 18:28:48 t 1 2 112930 327 0.00 2019-10-06 18:25:26 2019-10-06 18:33:33 t 1 1 112935 490 0.00 2019-10-06 18:45:24 2019-10-06 18:48:13 t 1 1 112936 327 0.00 2019-10-06 18:53:38 2019-10-06 18:54:12 t 1 1 112938 522 0.00 2019-10-06 18:55:16 2019-10-06 18:55:19 t 1 1 112941 490 0.00 2019-10-06 18:54:30 2019-10-06 18:58:28 t 1 1 112687 536 0.00 2019-10-06 15:25:21 2019-10-06 15:25:33 t 1 1 112688 327 0.00 2019-10-06 15:24:34 2019-10-06 15:26:08 t 1 1 112690 536 0.00 2019-10-06 15:26:14 2019-10-06 15:26:19 t 1 1 112693 501 0.00 2019-10-06 15:07:09 2019-10-06 15:27:19 t 1 1 112696 536 0.00 2019-10-06 15:28:42 2019-10-06 15:28:56 t 1 1 112700 501 0.00 2019-10-06 15:30:22 2019-10-06 15:31:50 t 1 1 112704 372 0.00 2019-10-06 15:22:49 2019-10-06 15:37:55 t 1 2 112710 220 0.00 2019-10-06 15:47:58 2019-10-06 15:48:05 t 1 1 112712 327 0.00 2019-10-06 15:46:37 2019-10-06 15:48:35 t 1 1 112718 485 0.00 2019-10-06 15:45:12 2019-10-06 15:52:47 t 1 1 112725 327 0.00 2019-10-06 15:57:57 2019-10-06 15:59:46 t 1 1 112728 522 0.00 2019-10-06 15:48:00 2019-10-06 16:01:43 t 1 1 112729 306 0.00 2019-10-06 15:54:55 2019-10-06 16:03:47 t 1 1 112730 522 0.00 2019-10-06 16:04:01 2019-10-06 16:04:19 t 1 1 112736 522 0.00 2019-10-06 16:05:53 2019-10-06 16:06:00 t 1 1 112740 522 0.00 2019-10-06 16:07:45 2019-10-06 16:07:47 t 1 1 112741 522 0.00 2019-10-06 16:07:53 2019-10-06 16:08:00 t 1 1 112742 490 0.00 2019-10-06 16:05:52 2019-10-06 16:09:08 t 1 1 112743 220 0.00 2019-10-06 16:09:10 2019-10-06 16:09:18 t 1 1 112749 522 0.00 2019-10-06 16:13:08 2019-10-06 16:13:27 t 1 1 112752 528 0.00 2019-10-06 16:01:01 2019-10-06 16:14:12 t 1 1 112763 522 0.00 2019-10-06 16:16:30 2019-10-06 16:22:34 t 1 1 112764 481 0.00 2019-10-06 14:56:29 2019-10-06 16:27:35 t 1 1 112765 331 0.00 2019-10-06 15:55:57 2019-10-06 16:27:50 t 1 1 112766 412 0.00 2019-10-06 15:39:53 2019-10-06 16:29:29 t 1 1 112769 296 0.00 2019-10-06 16:26:17 2019-10-06 16:31:40 t 1 2 112775 361 0.00 2019-10-06 15:49:39 2019-10-06 16:39:45 t 1 2 112778 220 0.00 2019-10-06 16:40:34 2019-10-06 16:40:42 t 1 1 112782 412 0.00 2019-10-06 16:41:45 2019-10-06 16:43:12 t 1 1 112785 422 0.00 2019-10-06 14:54:27 2019-10-06 16:44:19 t 1 1 112787 474 0.00 2019-10-06 16:41:09 2019-10-06 16:45:16 t 1 1 112789 522 0.00 2019-10-06 16:43:26 2019-10-06 16:45:31 t 1 1 112791 412 0.00 2019-10-06 16:45:35 2019-10-06 16:48:08 t 1 1 112802 220 0.00 2019-10-06 17:01:33 2019-10-06 17:01:55 t 1 1 112809 538 0.00 2019-10-06 17:03:12 2019-10-06 17:06:41 t 1 1 112812 456 0.00 2019-10-06 17:09:28 2019-10-06 17:10:53 t 1 1 112813 412 0.00 2019-10-06 17:07:06 2019-10-06 17:11:10 t 1 1 112816 306 0.00 2019-10-06 17:11:16 2019-10-06 17:12:37 t 1 1 112820 468 0.00 2019-10-06 17:08:52 2019-10-06 17:15:00 t 1 1 112823 327 0.00 2019-10-06 17:16:22 2019-10-06 17:16:54 t 1 1 112824 430 0.00 2019-10-06 17:00:17 2019-10-06 17:17:21 t 1 1 112828 220 0.00 2019-10-06 17:12:55 2019-10-06 17:22:32 t 1 1 112830 520 0.00 2019-10-06 17:16:51 2019-10-06 17:22:53 t 1 1 112833 220 0.00 2019-10-06 17:27:15 2019-10-06 17:27:46 t 1 1 112834 522 0.00 2019-10-06 17:06:18 2019-10-06 17:29:02 t 1 1 112836 220 0.00 2019-10-06 17:27:45 2019-10-06 17:29:42 t 1 1 112838 520 0.00 2019-10-06 17:22:53 2019-10-06 17:33:22 t 1 1 112840 522 0.00 2019-10-06 17:33:20 2019-10-06 17:34:47 t 1 1 112841 361 0.00 2019-10-06 17:03:37 2019-10-06 17:35:14 t 1 2 112845 522 0.00 2019-10-06 17:36:48 2019-10-06 17:37:51 t 1 1 112846 468 0.00 2019-10-06 17:29:58 2019-10-06 17:38:14 t 1 1 112848 520 0.00 2019-10-06 17:33:22 2019-10-06 17:40:46 t 1 1 112851 522 0.00 2019-10-06 17:41:40 2019-10-06 17:41:41 t 1 1 112852 522 0.00 2019-10-06 17:41:49 2019-10-06 17:41:57 t 1 1 112855 375 0.00 2019-10-06 17:32:41 2019-10-06 17:43:40 t 1 1 112858 412 0.00 2019-10-06 17:32:16 2019-10-06 17:44:36 t 1 1 112860 522 0.00 2019-10-06 17:46:26 2019-10-06 17:46:33 t 1 1 112871 327 0.00 2019-10-06 17:47:26 2019-10-06 17:52:18 t 1 1 112875 522 0.00 2019-10-06 17:54:20 2019-10-06 17:54:28 t 1 1 112881 412 0.00 2019-10-06 17:49:37 2019-10-06 17:59:20 t 1 1 112884 327 0.00 2019-10-06 18:02:16 2019-10-06 18:05:02 t 1 1 112886 220 0.00 2019-10-06 17:29:35 2019-10-06 18:07:33 t 1 2 112890 522 0.00 2019-10-06 18:08:31 2019-10-06 18:08:38 t 1 1 112892 522 0.00 2019-10-06 18:08:52 2019-10-06 18:09:27 t 1 1 112896 522 0.00 2019-10-06 18:10:07 2019-10-06 18:10:34 t 1 1 112897 522 0.00 2019-10-06 18:08:44 2019-10-06 18:11:04 t 1 1 112899 522 0.00 2019-10-06 18:11:51 2019-10-06 18:11:52 t 1 1 112900 468 0.00 2019-10-06 17:38:14 2019-10-06 18:12:20 t 1 1 112902 522 0.00 2019-10-06 18:12:05 2019-10-06 18:12:37 t 1 1 112904 474 0.00 2019-10-06 18:12:49 2019-10-06 18:13:45 t 1 1 112908 522 0.00 2019-10-06 18:12:42 2019-10-06 18:15:04 t 1 1 112911 375 0.00 2019-10-06 17:47:23 2019-10-06 18:16:27 t 1 1 112913 522 0.00 2019-10-06 18:16:53 2019-10-06 18:16:55 t 1 1 112914 522 0.00 2019-10-06 18:17:01 2019-10-06 18:19:04 t 1 1 112917 375 0.00 2019-10-06 18:16:27 2019-10-06 18:19:15 t 1 1 112920 520 0.00 2019-10-06 18:14:05 2019-10-06 18:19:18 t 1 1 112923 331 0.00 2019-10-06 16:27:48 2019-10-06 18:19:20 t 1 1 112929 468 0.00 2019-10-06 18:23:53 2019-10-06 18:31:06 t 1 1 112932 468 0.00 2019-10-06 18:31:06 2019-10-06 18:43:01 t 1 1 112940 520 0.00 2019-10-06 18:45:51 2019-10-06 18:56:25 t 1 1 112947 520 0.00 2019-10-06 19:01:13 2019-10-06 19:07:07 t 1 1 112950 331 0.00 2019-10-06 19:09:08 2019-10-06 19:10:33 t 1 1 112957 522 0.00 2019-10-06 19:13:39 2019-10-06 19:14:24 t 1 1 112959 522 0.00 2019-10-06 19:14:58 2019-10-06 19:15:31 t 1 1 112961 522 0.00 2019-10-06 19:14:37 2019-10-06 19:16:04 t 1 1 112966 520 0.00 2019-10-06 19:15:17 2019-10-06 19:19:36 t 1 1 112968 522 0.00 2019-10-06 19:19:58 2019-10-06 19:21:04 t 1 1 112970 520 0.00 2019-10-06 19:19:41 2019-10-06 19:22:43 t 1 1 112971 445 0.00 2019-10-06 19:15:47 2019-10-06 19:22:57 t 1 1 112978 331 0.00 2019-10-06 19:12:09 2019-10-06 19:24:55 t 1 1 112980 468 0.00 2019-10-06 18:43:01 2019-10-06 19:25:43 t 1 1 112981 522 0.00 2019-10-06 19:25:33 2019-10-06 19:26:04 t 1 1 112983 522 0.00 2019-10-06 19:26:40 2019-10-06 19:27:45 t 1 1 112985 445 0.00 2019-10-06 19:22:57 2019-10-06 19:29:30 t 1 1 112988 522 0.00 2019-10-06 19:29:36 2019-10-06 19:31:04 t 1 1 112993 498 0.00 2019-10-06 19:18:16 2019-10-06 19:33:21 t 1 2 112994 522 0.00 2019-10-06 19:33:52 2019-10-06 19:34:29 t 1 1 112996 522 0.00 2019-10-06 19:34:33 2019-10-06 19:34:52 t 1 1 112998 522 0.00 2019-10-06 19:35:20 2019-10-06 19:35:29 t 1 1 113002 451 0.00 2019-10-06 19:31:44 2019-10-06 19:40:05 t 1 1 113003 445 0.00 2019-10-06 19:32:09 2019-10-06 19:42:09 t 1 1 113004 361 0.00 2019-10-06 18:25:17 2019-10-06 19:43:38 t 1 2 113006 522 0.00 2019-10-06 19:39:36 2019-10-06 19:45:24 t 1 1 113009 327 0.00 2019-10-06 19:04:05 2019-10-06 19:47:55 t 1 1 113011 503 0.00 2019-10-06 19:29:51 2019-10-06 19:49:05 t 1 1 113016 327 0.00 2019-10-06 19:47:55 2019-10-06 19:53:50 t 1 1 113020 544 0.00 2019-10-06 19:46:42 2019-10-06 19:55:49 t 1 1 112795 306 0.00 2019-10-06 16:48:40 2019-10-06 16:51:37 t 1 1 112799 327 0.00 2019-10-06 16:54:08 2019-10-06 16:55:57 t 1 1 112801 538 0.00 2019-10-06 17:00:13 2019-10-06 17:00:48 t 1 1 112804 412 0.00 2019-10-06 16:59:47 2019-10-06 17:03:23 t 1 1 112805 522 0.00 2019-10-06 16:44:58 2019-10-06 17:03:57 t 1 1 112806 485 0.00 2019-10-06 16:55:56 2019-10-06 17:04:28 t 1 1 112815 220 0.00 2019-10-06 17:12:02 2019-10-06 17:12:11 t 1 1 112817 379 0.00 2019-10-06 17:10:54 2019-10-06 17:12:56 t 1 1 112819 485 0.00 2019-10-06 17:04:28 2019-10-06 17:14:29 t 1 1 112826 430 0.00 2019-10-06 17:18:14 2019-10-06 17:20:32 t 1 1 112835 468 0.00 2019-10-06 17:17:00 2019-10-06 17:29:13 t 1 1 112839 522 0.00 2019-10-06 17:31:58 2019-10-06 17:34:10 t 1 1 112843 522 0.00 2019-10-06 17:36:19 2019-10-06 17:36:34 t 1 1 112844 462 0.00 2019-10-06 17:13:59 2019-10-06 17:37:09 t 1 1 112847 220 0.00 2019-10-06 17:29:42 2019-10-06 17:39:34 t 1 1 112849 522 0.00 2019-10-06 17:39:25 2019-10-06 17:41:04 t 1 1 112853 306 0.00 2019-10-06 17:29:28 2019-10-06 17:42:27 t 1 1 112854 296 0.00 2019-10-06 17:38:04 2019-10-06 17:43:04 t 1 2 112857 520 0.00 2019-10-06 17:40:46 2019-10-06 17:44:33 t 1 1 112861 327 0.00 2019-10-06 17:30:09 2019-10-06 17:47:26 t 1 1 112865 522 0.00 2019-10-06 17:46:46 2019-10-06 17:50:20 t 1 1 112867 522 0.00 2019-10-06 17:50:27 2019-10-06 17:50:55 t 1 1 112868 522 0.00 2019-10-06 17:51:02 2019-10-06 17:51:19 t 1 1 112869 522 0.00 2019-10-06 17:51:31 2019-10-06 17:51:59 t 1 1 112876 522 0.00 2019-10-06 17:54:41 2019-10-06 17:55:24 t 1 1 112877 522 0.00 2019-10-06 17:55:35 2019-10-06 17:56:08 t 1 1 112878 522 0.00 2019-10-06 17:54:33 2019-10-06 17:57:04 t 1 1 112879 522 0.00 2019-10-06 17:56:13 2019-10-06 17:57:42 t 1 1 112880 445 0.00 2019-10-06 16:01:32 2019-10-06 17:58:41 t 1 1 112883 520 0.00 2019-10-06 18:02:46 2019-10-06 18:03:51 t 1 1 112885 445 0.00 2019-10-06 17:59:05 2019-10-06 18:06:50 t 1 1 112888 474 0.00 2019-10-06 17:53:12 2019-10-06 18:08:10 t 1 1 112891 520 0.00 2019-10-06 18:03:50 2019-10-06 18:09:09 t 1 1 112893 306 0.00 2019-10-06 17:42:27 2019-10-06 18:09:56 t 1 1 112894 522 0.00 2019-10-06 18:09:34 2019-10-06 18:10:00 t 1 1 112895 520 0.00 2019-10-06 18:09:08 2019-10-06 18:10:17 t 1 1 112901 474 0.00 2019-10-06 18:08:24 2019-10-06 18:12:34 t 1 1 112903 522 0.00 2019-10-06 18:12:50 2019-10-06 18:13:37 t 1 1 112907 522 0.00 2019-10-06 18:13:49 2019-10-06 18:15:04 t 1 1 112910 327 0.00 2019-10-06 18:14:54 2019-10-06 18:15:29 t 1 1 112916 474 0.00 2019-10-06 18:13:51 2019-10-06 18:19:15 t 1 1 112919 445 0.00 2019-10-06 18:07:03 2019-10-06 18:19:18 t 1 1 112922 412 0.00 2019-10-06 18:02:51 2019-10-06 18:19:20 t 1 1 112925 522 0.00 2019-10-06 18:17:24 2019-10-06 18:19:20 t 1 1 112926 361 0.00 2019-10-06 17:58:41 2019-10-06 18:20:04 t 1 2 112931 331 0.00 2019-10-06 18:23:50 2019-10-06 18:37:02 t 1 1 112933 327 0.00 2019-10-06 18:42:52 2019-10-06 18:43:46 t 1 1 112934 520 0.00 2019-10-06 18:35:59 2019-10-06 18:45:51 t 1 1 112937 522 0.00 2019-10-06 18:53:11 2019-10-06 18:55:11 t 1 1 112939 451 0.00 2019-10-06 18:53:34 2019-10-06 18:55:23 t 1 1 112943 520 0.00 2019-10-06 18:58:45 2019-10-06 19:01:14 t 1 1 112945 516 0.00 2019-10-06 18:50:01 2019-10-06 19:05:36 t 1 1 112948 331 0.00 2019-10-06 19:04:56 2019-10-06 19:08:23 t 1 1 112949 445 0.00 2019-10-06 19:06:15 2019-10-06 19:09:14 t 1 1 112951 522 0.00 2019-10-06 18:55:57 2019-10-06 19:11:33 t 1 1 112955 522 0.00 2019-10-06 19:12:57 2019-10-06 19:13:31 t 1 1 112956 522 0.00 2019-10-06 19:12:13 2019-10-06 19:14:04 t 1 1 112958 522 0.00 2019-10-06 19:14:49 2019-10-06 19:14:50 t 1 1 112964 522 0.00 2019-10-06 19:18:19 2019-10-06 19:18:22 t 1 1 112974 522 0.00 2019-10-06 19:23:15 2019-10-06 19:23:24 t 1 1 112977 306 0.00 2019-10-06 19:22:07 2019-10-06 19:24:08 t 1 1 112984 522 0.00 2019-10-06 19:26:28 2019-10-06 19:28:04 t 1 1 112986 522 0.00 2019-10-06 19:28:29 2019-10-06 19:30:04 t 1 1 112989 445 0.00 2019-10-06 19:29:29 2019-10-06 19:31:08 t 1 1 112991 445 0.00 2019-10-06 19:31:07 2019-10-06 19:32:10 t 1 1 112995 522 0.00 2019-10-06 19:32:34 2019-10-06 19:34:45 t 1 1 113000 220 0.00 2019-10-06 19:23:30 2019-10-06 19:36:24 t 1 2 113001 522 0.00 2019-10-06 19:35:56 2019-10-06 19:39:36 t 1 1 113007 512 0.00 2019-10-06 19:39:31 2019-10-06 19:45:39 t 1 1 113008 520 0.00 2019-10-06 19:40:48 2019-10-06 19:47:41 t 1 1 113012 445 0.00 2019-10-06 19:42:09 2019-10-06 19:49:08 t 1 1 113015 220 0.00 2019-10-06 19:46:01 2019-10-06 19:53:14 t 1 1 113018 538 0.00 2019-10-06 18:37:47 2019-10-06 19:54:00 t 1 1 113019 327 0.00 2019-10-06 19:55:08 2019-10-06 19:55:41 t 1 1 113030 522 0.00 2019-10-06 20:00:14 2019-10-06 20:00:15 t 1 1 113033 538 0.00 2019-10-06 19:53:59 2019-10-06 20:01:46 t 1 1 113036 522 0.00 2019-10-06 20:01:34 2019-10-06 20:03:04 t 1 1 113040 220 0.00 2019-10-06 20:03:20 2019-10-06 20:04:22 t 1 1 113051 445 0.00 2019-10-06 19:49:07 2019-10-06 20:12:05 t 1 1 113053 327 0.00 2019-10-06 20:11:50 2019-10-06 20:13:24 t 1 1 113055 522 0.00 2019-10-06 20:09:55 2019-10-06 20:15:03 t 1 1 113057 445 0.00 2019-10-06 20:15:34 2019-10-06 20:16:07 t 1 1 113058 522 0.00 2019-10-06 20:16:50 2019-10-06 20:17:01 t 1 1 113062 522 0.00 2019-10-06 20:20:08 2019-10-06 20:20:18 t 1 1 113063 522 0.00 2019-10-06 20:21:11 2019-10-06 20:21:19 t 1 1 113064 522 0.00 2019-10-06 20:22:05 2019-10-06 20:22:15 t 1 1 113067 522 0.00 2019-10-06 20:23:11 2019-10-06 20:23:12 t 1 1 113070 538 0.00 2019-10-06 20:23:11 2019-10-06 20:25:35 t 1 1 113072 520 0.00 2019-10-06 20:14:42 2019-10-06 20:25:40 t 1 1 113074 306 0.00 2019-10-06 20:27:01 2019-10-06 20:28:33 t 1 1 113076 522 0.00 2019-10-06 20:28:30 2019-10-06 20:29:30 t 1 1 113078 522 0.00 2019-10-06 20:30:15 2019-10-06 20:30:23 t 1 1 113080 522 0.00 2019-10-06 20:30:32 2019-10-06 20:32:08 t 1 1 113082 520 0.00 2019-10-06 20:25:40 2019-10-06 20:33:09 t 1 1 113086 522 0.00 2019-10-06 20:35:32 2019-10-06 20:35:40 t 1 1 113095 456 0.00 2019-10-06 20:39:08 2019-10-06 20:45:49 t 1 1 113096 306 0.00 2019-10-06 20:44:51 2019-10-06 20:46:18 t 1 1 113098 468 0.00 2019-10-06 20:33:01 2019-10-06 20:48:47 t 1 1 113100 536 0.00 2019-10-06 20:39:11 2019-10-06 20:49:33 t 1 1 113105 522 0.00 2019-10-06 20:51:41 2019-10-06 20:53:04 t 1 1 113107 422 0.00 2019-10-06 18:23:05 2019-10-06 20:54:40 t 1 1 113109 536 0.00 2019-10-06 20:55:19 2019-10-06 20:55:24 t 1 1 113111 522 0.00 2019-10-06 20:55:43 2019-10-06 20:55:54 t 1 1 113113 522 0.00 2019-10-06 20:56:42 2019-10-06 20:57:42 t 1 1 113116 520 0.00 2019-10-06 20:57:53 2019-10-06 21:00:30 t 1 1 113119 292 0.00 2019-10-06 21:03:47 2019-10-06 21:04:51 t 1 2 113122 501 0.00 2019-10-06 20:59:57 2019-10-06 21:05:24 t 1 1 112942 520 0.00 2019-10-06 18:56:24 2019-10-06 18:58:45 t 1 1 112944 331 0.00 2019-10-06 18:46:57 2019-10-06 19:04:41 t 1 1 112946 451 0.00 2019-10-06 19:00:46 2019-10-06 19:05:43 t 1 1 112952 522 0.00 2019-10-06 19:11:38 2019-10-06 19:11:50 t 1 1 112953 331 0.00 2019-10-06 19:10:27 2019-10-06 19:12:10 t 1 1 112954 522 0.00 2019-10-06 19:12:21 2019-10-06 19:12:49 t 1 1 112960 445 0.00 2019-10-06 19:12:58 2019-10-06 19:15:47 t 1 1 112962 306 0.00 2019-10-06 18:58:07 2019-10-06 19:16:15 t 1 1 112963 522 0.00 2019-10-06 19:17:24 2019-10-06 19:17:55 t 1 1 112965 522 0.00 2019-10-06 19:16:23 2019-10-06 19:19:04 t 1 1 112967 522 0.00 2019-10-06 19:20:28 2019-10-06 19:20:28 f 1 1 112969 522 0.00 2019-10-06 19:19:20 2019-10-06 19:21:04 t 1 1 112972 522 0.00 2019-10-06 19:21:28 2019-10-06 19:23:04 t 1 1 112973 451 0.00 2019-10-06 19:05:43 2019-10-06 19:23:20 t 1 1 112975 490 0.00 2019-10-06 18:58:28 2019-10-06 19:23:54 t 1 1 112976 522 0.00 2019-10-06 19:22:30 2019-10-06 19:24:04 t 1 1 112979 220 0.00 2019-10-06 19:16:25 2019-10-06 19:25:22 t 1 1 112982 498 0.00 2019-10-06 19:26:52 2019-10-06 19:26:52 f 1 2 112987 522 0.00 2019-10-06 19:30:33 2019-10-06 19:30:52 t 1 1 112990 451 0.00 2019-10-06 19:23:19 2019-10-06 19:31:44 t 1 1 112992 522 0.00 2019-10-06 19:31:10 2019-10-06 19:32:36 t 1 1 112997 522 0.00 2019-10-06 19:35:00 2019-10-06 19:35:12 t 1 1 112999 220 0.00 2019-10-06 19:35:30 2019-10-06 19:36:06 t 1 1 113005 451 0.00 2019-10-06 19:40:05 2019-10-06 19:45:08 t 1 1 113010 520 0.00 2019-10-06 19:47:41 2019-10-06 19:48:49 t 1 1 113013 451 0.00 2019-10-06 19:45:08 2019-10-06 19:52:27 t 1 1 113014 331 0.00 2019-10-06 19:25:01 2019-10-06 19:53:10 t 1 1 113017 522 0.00 2019-10-06 19:45:24 2019-10-06 19:53:53 t 1 1 113023 451 0.00 2019-10-06 19:52:27 2019-10-06 19:57:22 t 1 1 113024 522 0.00 2019-10-06 19:53:53 2019-10-06 19:58:14 t 1 1 113026 544 0.00 2019-10-06 19:55:16 2019-10-06 19:58:48 t 1 2 113031 522 0.00 2019-10-06 20:00:44 2019-10-06 20:01:19 t 1 1 113034 327 0.00 2019-10-06 19:56:02 2019-10-06 20:01:56 t 1 1 113037 522 0.00 2019-10-06 20:03:07 2019-10-06 20:03:15 t 1 1 113038 520 0.00 2019-10-06 19:59:52 2019-10-06 20:03:30 t 1 1 113039 522 0.00 2019-10-06 20:04:08 2019-10-06 20:04:16 t 1 1 113042 522 0.00 2019-10-06 20:04:30 2019-10-06 20:05:31 t 1 1 113044 544 0.00 2019-10-06 20:05:32 2019-10-06 20:06:17 t 1 2 113049 220 0.00 2019-10-06 20:09:15 2019-10-06 20:09:40 t 1 1 113052 306 0.00 2019-10-06 20:05:33 2019-10-06 20:13:22 t 1 1 113054 520 0.00 2019-10-06 20:10:36 2019-10-06 20:14:38 t 1 1 113059 306 0.00 2019-10-06 20:16:01 2019-10-06 20:18:08 t 1 1 113066 538 0.00 2019-10-06 20:01:52 2019-10-06 20:22:53 t 1 1 113073 538 0.00 2019-10-06 20:26:19 2019-10-06 20:27:27 t 1 1 113077 468 0.00 2019-10-06 20:28:14 2019-10-06 20:29:55 t 1 1 113081 522 0.00 2019-10-06 20:32:14 2019-10-06 20:32:22 t 1 1 113083 522 0.00 2019-10-06 20:33:22 2019-10-06 20:33:30 t 1 1 113084 522 0.00 2019-10-06 20:34:22 2019-10-06 20:34:30 t 1 1 113087 327 0.00 2019-10-06 20:35:14 2019-10-06 20:36:12 t 1 1 113089 430 0.00 2019-10-06 20:19:22 2019-10-06 20:36:54 t 1 1 113090 490 0.00 2019-10-06 20:28:32 2019-10-06 20:38:56 t 1 1 113091 520 0.00 2019-10-06 20:33:08 2019-10-06 20:40:03 t 1 1 113093 522 0.00 2019-10-06 20:39:11 2019-10-06 20:43:36 t 1 1 113094 522 0.00 2019-10-06 20:44:38 2019-10-06 20:45:38 t 1 1 113099 331 0.00 2019-10-06 19:59:32 2019-10-06 20:49:30 t 1 1 113102 536 0.00 2019-10-06 20:49:38 2019-10-06 20:50:21 t 1 1 113103 522 0.00 2019-10-06 20:50:40 2019-10-06 20:50:48 t 1 1 113106 536 0.00 2019-10-06 20:53:46 2019-10-06 20:53:58 t 1 1 113108 528 0.00 2019-10-06 20:27:41 2019-10-06 20:54:44 t 1 1 113110 516 0.00 2019-10-06 20:51:30 2019-10-06 20:55:53 t 1 1 113112 445 0.00 2019-10-06 20:16:07 2019-10-06 20:56:07 t 1 1 113114 520 0.00 2019-10-06 20:40:02 2019-10-06 20:57:53 t 1 1 113117 520 0.00 2019-10-06 21:00:30 2019-10-06 21:02:13 t 1 1 113118 327 0.00 2019-10-06 21:01:09 2019-10-06 21:03:22 t 1 1 113121 536 0.00 2019-10-06 21:05:02 2019-10-06 21:05:08 t 1 1 113124 520 0.00 2019-10-06 21:02:16 2019-10-06 21:06:04 t 1 1 113127 422 0.00 2019-10-06 20:54:40 2019-10-06 21:06:46 t 1 1 113128 292 0.00 2019-10-06 21:06:24 2019-10-06 21:07:11 t 1 2 113129 501 0.00 2019-10-06 21:06:45 2019-10-06 21:08:05 t 1 1 113134 522 0.00 2019-10-06 21:09:10 2019-10-06 21:09:18 t 1 1 113137 536 0.00 2019-10-06 21:07:54 2019-10-06 21:09:57 t 1 1 113139 520 0.00 2019-10-06 21:08:47 2019-10-06 21:10:40 t 1 1 113140 292 0.00 2019-10-06 21:10:09 2019-10-06 21:11:12 t 1 2 113148 512 0.00 2019-10-06 20:53:35 2019-10-06 21:16:35 t 1 1 113149 522 0.00 2019-10-06 21:17:01 2019-10-06 21:17:14 t 1 1 113152 536 0.00 2019-10-06 21:13:30 2019-10-06 21:18:14 t 1 1 113153 516 0.00 2019-10-06 21:12:14 2019-10-06 21:19:16 t 1 1 113155 520 0.00 2019-10-06 21:11:48 2019-10-06 21:19:34 t 1 1 113156 501 0.00 2019-10-06 21:08:34 2019-10-06 21:20:14 t 1 1 113157 522 0.00 2019-10-06 21:20:22 2019-10-06 21:20:22 t 1 1 113160 536 0.00 2019-10-06 21:18:14 2019-10-06 21:21:41 t 1 1 113164 536 0.00 2019-10-06 21:21:41 2019-10-06 21:22:54 t 1 1 113166 501 0.00 2019-10-06 21:23:20 2019-10-06 21:23:21 t 1 1 113170 445 0.00 2019-10-06 21:17:14 2019-10-06 21:25:12 t 1 1 113171 220 0.00 2019-10-06 21:22:59 2019-10-06 21:25:40 t 1 1 113174 522 0.00 2019-10-06 21:26:30 2019-10-06 21:26:31 t 1 1 113179 536 0.00 2019-10-06 21:29:24 2019-10-06 21:29:31 t 1 1 113181 536 0.00 2019-10-06 21:30:06 2019-10-06 21:30:12 t 1 1 113182 327 0.00 2019-10-06 21:24:20 2019-10-06 21:32:33 t 1 1 113185 522 0.00 2019-10-06 21:30:34 2019-10-06 21:33:04 t 1 1 113189 501 0.00 2019-10-06 21:34:48 2019-10-06 21:35:26 t 1 1 113190 306 0.00 2019-10-06 21:33:46 2019-10-06 21:36:10 t 1 1 113191 501 0.00 2019-10-06 21:35:36 2019-10-06 21:37:04 t 1 1 113195 501 0.00 2019-10-06 21:38:31 2019-10-06 21:39:03 t 1 1 113196 536 0.00 2019-10-06 21:39:32 2019-10-06 21:39:33 t 1 1 113197 520 0.00 2019-10-06 21:26:35 2019-10-06 21:40:23 t 1 1 113200 220 0.00 2019-10-06 21:25:39 2019-10-06 21:40:42 t 1 1 113201 536 0.00 2019-10-06 21:42:54 2019-10-06 21:42:58 t 1 1 113204 325 0.00 2019-10-06 21:42:49 2019-10-06 21:44:26 t 1 2 113206 331 0.00 2019-10-06 20:53:22 2019-10-06 21:44:56 t 1 1 113207 536 0.00 2019-10-06 21:44:16 2019-10-06 21:45:06 t 1 1 113216 501 0.00 2019-10-06 21:49:35 2019-10-06 21:52:19 t 1 1 113218 481 0.00 2019-10-06 21:00:54 2019-10-06 21:53:18 t 1 1 113220 522 0.00 2019-10-06 21:53:15 2019-10-06 21:53:25 t 1 1 113221 522 0.00 2019-10-06 21:54:04 2019-10-06 21:54:05 t 1 1 113222 501 0.00 2019-10-06 21:54:05 2019-10-06 21:54:48 t 1 1 113226 220 0.00 2019-10-06 21:46:34 2019-10-06 21:57:09 t 1 2 113021 306 0.00 2019-10-06 19:38:03 2019-10-06 19:56:13 t 1 1 113022 331 0.00 2019-10-06 19:54:05 2019-10-06 19:56:58 t 1 1 113025 331 0.00 2019-10-06 19:56:58 2019-10-06 19:58:24 t 1 1 113027 451 0.00 2019-10-06 19:57:23 2019-10-06 19:59:09 t 1 1 113028 520 0.00 2019-10-06 19:48:49 2019-10-06 19:59:52 t 1 1 113029 522 0.00 2019-10-06 19:58:14 2019-10-06 20:00:05 t 1 1 113032 462 0.00 2019-10-06 19:20:10 2019-10-06 20:01:40 t 1 1 113035 516 0.00 2019-10-06 19:42:21 2019-10-06 20:02:45 t 1 1 113041 306 0.00 2019-10-06 20:00:32 2019-10-06 20:04:29 t 1 1 113043 522 0.00 2019-10-06 20:06:12 2019-10-06 20:06:13 t 1 1 113045 544 0.00 2019-10-06 20:01:09 2019-10-06 20:06:37 t 1 1 113046 522 0.00 2019-10-06 20:06:29 2019-10-06 20:07:11 t 1 1 113047 522 0.00 2019-10-06 20:08:12 2019-10-06 20:08:14 t 1 1 113048 462 0.00 2019-10-06 20:01:40 2019-10-06 20:09:16 t 1 1 113050 520 0.00 2019-10-06 20:03:30 2019-10-06 20:10:37 t 1 1 113056 445 0.00 2019-10-06 20:12:04 2019-10-06 20:15:16 t 1 1 113060 522 0.00 2019-10-06 20:18:10 2019-10-06 20:18:11 t 1 1 113061 522 0.00 2019-10-06 20:19:10 2019-10-06 20:20:03 t 1 1 113065 468 0.00 2019-10-06 19:25:58 2019-10-06 20:22:29 t 1 1 113068 522 0.00 2019-10-06 20:24:04 2019-10-06 20:24:13 t 1 1 113069 327 0.00 2019-10-06 20:23:16 2019-10-06 20:25:19 t 1 1 113071 522 0.00 2019-10-06 20:25:29 2019-10-06 20:25:39 t 1 1 113075 538 0.00 2019-10-06 20:27:36 2019-10-06 20:28:42 t 1 1 113079 247 0.00 2019-10-06 20:30:45 2019-10-06 20:31:54 t 1 2 113085 522 0.00 2019-10-06 20:35:25 2019-10-06 20:35:26 t 1 1 113088 522 0.00 2019-10-06 20:36:24 2019-10-06 20:36:45 t 1 1 113092 542 0.00 2019-10-06 19:17:16 2019-10-06 20:43:34 t 1 1 113097 522 0.00 2019-10-06 20:46:36 2019-10-06 20:48:04 t 1 1 113101 522 0.00 2019-10-06 20:48:37 2019-10-06 20:50:04 t 1 1 113104 327 0.00 2019-10-06 20:46:04 2019-10-06 20:51:17 t 1 1 113115 536 0.00 2019-10-06 21:00:27 2019-10-06 21:00:29 t 1 1 113120 522 0.00 2019-10-06 20:59:00 2019-10-06 21:04:55 t 1 1 113133 445 0.00 2019-10-06 20:56:07 2019-10-06 21:08:51 t 1 1 113136 485 0.00 2019-10-06 20:50:27 2019-10-06 21:09:54 t 1 1 113138 522 0.00 2019-10-06 21:10:11 2019-10-06 21:10:19 t 1 1 113143 220 0.00 2019-10-06 18:23:00 2019-10-06 21:13:05 t 1 1 113146 490 0.00 2019-10-06 20:38:56 2019-10-06 21:14:38 t 1 1 113147 522 0.00 2019-10-06 21:15:15 2019-10-06 21:16:17 t 1 1 113150 445 0.00 2019-10-06 21:08:51 2019-10-06 21:17:16 t 1 1 113151 522 0.00 2019-10-06 21:17:57 2019-10-06 21:18:14 t 1 1 113154 522 0.00 2019-10-06 21:19:21 2019-10-06 21:19:21 t 1 1 113159 220 0.00 2019-10-06 21:15:05 2019-10-06 21:21:38 t 1 1 113163 501 0.00 2019-10-06 21:22:09 2019-10-06 21:22:40 t 1 1 113169 522 0.00 2019-10-06 21:23:57 2019-10-06 21:24:29 t 1 1 113175 520 0.00 2019-10-06 21:23:58 2019-10-06 21:26:35 t 1 1 113180 522 0.00 2019-10-06 21:29:33 2019-10-06 21:29:40 t 1 1 113184 501 0.00 2019-10-06 21:32:19 2019-10-06 21:32:47 t 1 1 113187 522 0.00 2019-10-06 21:34:01 2019-10-06 21:34:02 t 1 1 113192 327 0.00 2019-10-06 21:32:50 2019-10-06 21:37:50 t 1 1 113193 501 0.00 2019-10-06 21:37:31 2019-10-06 21:38:01 t 1 1 113199 306 0.00 2019-10-06 21:36:36 2019-10-06 21:40:42 t 1 1 113202 536 0.00 2019-10-06 21:43:05 2019-10-06 21:43:08 t 1 1 113208 306 0.00 2019-10-06 21:44:23 2019-10-06 21:45:40 t 1 1 113211 522 0.00 2019-10-06 21:34:40 2019-10-06 21:47:43 t 1 1 113213 327 0.00 2019-10-06 21:48:21 2019-10-06 21:49:40 t 1 1 113215 522 0.00 2019-10-06 21:51:58 2019-10-06 21:52:18 t 1 1 113217 522 0.00 2019-10-06 21:52:18 2019-10-06 21:52:46 t 1 1 113219 501 0.00 2019-10-06 21:52:28 2019-10-06 21:53:23 t 1 1 113224 522 0.00 2019-10-06 21:55:14 2019-10-06 21:55:17 t 1 1 113225 522 0.00 2019-10-06 21:55:50 2019-10-06 21:56:48 t 1 1 113232 327 0.00 2019-10-06 21:59:32 2019-10-06 22:01:57 t 1 1 113233 522 0.00 2019-10-06 22:02:58 2019-10-06 22:03:12 t 1 1 113234 522 0.00 2019-10-06 22:04:30 2019-10-06 22:04:31 t 1 1 113239 522 0.00 2019-10-06 22:07:10 2019-10-06 22:07:18 t 1 1 113240 451 0.00 2019-10-06 21:57:48 2019-10-06 22:08:07 t 1 1 113242 522 0.00 2019-10-06 22:08:03 2019-10-06 22:08:26 t 1 1 113245 522 0.00 2019-10-06 22:09:50 2019-10-06 22:10:11 t 1 1 113248 451 0.00 2019-10-06 22:11:07 2019-10-06 22:13:52 t 1 1 113250 306 0.00 2019-10-06 21:53:19 2019-10-06 22:15:03 t 1 1 113252 485 0.00 2019-10-06 22:13:10 2019-10-06 22:15:26 t 1 1 113255 522 0.00 2019-10-06 22:20:21 2019-10-06 22:20:26 t 1 1 113259 522 0.00 2019-10-06 22:22:58 2019-10-06 22:22:59 t 1 1 113265 327 0.00 2019-10-06 22:25:33 2019-10-06 22:26:06 t 1 1 113268 522 0.00 2019-10-06 22:26:41 2019-10-06 22:26:51 t 1 1 113269 501 0.00 2019-10-06 21:56:07 2019-10-06 22:27:14 t 1 1 113271 501 0.00 2019-10-06 22:27:23 2019-10-06 22:28:12 t 1 1 113272 501 0.00 2019-10-06 22:28:51 2019-10-06 22:29:24 t 1 1 113276 501 0.00 2019-10-06 22:30:43 2019-10-06 22:31:21 t 1 1 113277 472 0.00 2019-10-06 22:27:46 2019-10-06 22:32:22 t 1 1 113278 485 0.00 2019-10-06 22:26:44 2019-10-06 22:34:49 t 1 1 113280 451 0.00 2019-10-06 22:30:47 2019-10-06 22:36:42 t 1 1 113284 327 0.00 2019-10-06 22:42:34 2019-10-06 22:43:08 t 1 1 113286 485 0.00 2019-10-06 22:34:49 2019-10-06 22:44:19 t 1 1 113296 538 0.00 2019-10-06 20:29:34 2019-10-06 22:57:49 t 1 1 113302 501 0.00 2019-10-06 22:35:32 2019-10-06 23:02:42 t 1 1 113306 522 0.00 2019-10-06 22:58:53 2019-10-06 23:06:06 t 1 1 113312 522 0.00 2019-10-06 23:08:11 2019-10-06 23:08:12 t 1 1 113314 512 0.00 2019-10-06 22:52:57 2019-10-06 23:08:58 t 1 1 113315 485 0.00 2019-10-06 23:04:24 2019-10-06 23:09:14 t 1 1 113320 522 0.00 2019-10-06 23:15:19 2019-10-06 23:15:26 t 1 1 113323 522 0.00 2019-10-06 23:16:33 2019-10-06 23:16:36 t 1 1 113327 522 0.00 2019-10-06 23:17:40 2019-10-06 23:17:52 t 1 1 113328 461 0.00 2019-10-06 22:21:43 2019-10-06 23:18:27 t 1 2 113333 522 0.00 2019-10-06 23:20:51 2019-10-06 23:20:52 t 1 1 113334 522 0.00 2019-10-06 23:20:58 2019-10-06 23:20:59 t 1 1 113340 522 0.00 2019-10-06 23:25:31 2019-10-06 23:25:34 t 1 1 113342 220 0.00 2019-10-06 23:26:20 2019-10-06 23:27:40 t 1 2 113353 522 0.00 2019-10-06 23:34:32 2019-10-06 23:34:44 t 1 1 113355 512 0.00 2019-10-06 23:21:18 2019-10-06 23:35:31 t 1 1 113356 522 0.00 2019-10-06 23:35:17 2019-10-06 23:36:30 t 1 1 113357 522 0.00 2019-10-06 23:37:42 2019-10-06 23:37:43 t 1 1 113359 528 0.00 2019-10-06 23:38:38 2019-10-06 23:38:50 t 1 1 113361 514 0.00 2019-10-06 23:38:52 2019-10-06 23:39:37 t 1 1 113364 528 0.00 2019-10-06 23:40:38 2019-10-06 23:40:40 t 1 1 113372 220 0.00 2019-10-06 23:42:57 2019-10-06 23:44:07 t 1 1 113376 522 0.00 2019-10-06 23:47:27 2019-10-06 23:47:40 t 1 1 113377 528 0.00 2019-10-06 23:44:43 2019-10-06 23:48:26 t 1 1 113123 501 0.00 2019-10-06 21:05:31 2019-10-06 21:06:03 t 1 1 113125 220 0.00 2019-10-06 20:42:56 2019-10-06 21:06:20 t 1 2 113126 501 0.00 2019-10-06 21:06:27 2019-10-06 21:06:28 t 1 1 113130 522 0.00 2019-10-06 21:04:16 2019-10-06 21:08:09 t 1 1 113131 501 0.00 2019-10-06 21:08:15 2019-10-06 21:08:25 t 1 1 113132 520 0.00 2019-10-06 21:06:04 2019-10-06 21:08:47 t 1 1 113135 292 0.00 2019-10-06 21:08:22 2019-10-06 21:09:24 t 1 2 113141 544 0.00 2019-10-06 20:06:37 2019-10-06 21:11:42 t 1 2 113142 522 0.00 2019-10-06 21:11:12 2019-10-06 21:13:04 t 1 1 113144 292 0.00 2019-10-06 21:12:11 2019-10-06 21:13:16 t 1 2 113145 327 0.00 2019-10-06 21:13:14 2019-10-06 21:14:22 t 1 1 113158 522 0.00 2019-10-06 21:21:14 2019-10-06 21:21:19 t 1 1 113161 501 0.00 2019-10-06 21:20:24 2019-10-06 21:22:04 t 1 1 113162 522 0.00 2019-10-06 21:22:24 2019-10-06 21:22:26 t 1 1 113165 536 0.00 2019-10-06 21:22:59 2019-10-06 21:23:07 t 1 1 113167 520 0.00 2019-10-06 21:21:48 2019-10-06 21:23:56 t 1 1 113168 501 0.00 2019-10-06 21:24:23 2019-10-06 21:24:24 t 1 1 113172 501 0.00 2019-10-06 21:25:23 2019-10-06 21:25:56 t 1 1 113173 501 0.00 2019-10-06 21:26:23 2019-10-06 21:26:24 t 1 1 113176 485 0.00 2019-10-06 21:20:21 2019-10-06 21:27:03 t 1 1 113177 536 0.00 2019-10-06 21:27:45 2019-10-06 21:28:17 t 1 1 113178 522 0.00 2019-10-06 21:28:53 2019-10-06 21:29:01 t 1 1 113183 536 0.00 2019-10-06 21:32:17 2019-10-06 21:32:33 t 1 1 113186 522 0.00 2019-10-06 21:32:55 2019-10-06 21:33:05 t 1 1 113188 536 0.00 2019-10-06 21:34:28 2019-10-06 21:34:34 t 1 1 113194 536 0.00 2019-10-06 21:37:55 2019-10-06 21:38:36 t 1 1 113198 501 0.00 2019-10-06 21:39:31 2019-10-06 21:40:31 t 1 1 113203 536 0.00 2019-10-06 21:43:18 2019-10-06 21:43:54 t 1 1 113205 501 0.00 2019-10-06 21:44:16 2019-10-06 21:44:43 t 1 1 113209 445 0.00 2019-10-06 21:24:42 2019-10-06 21:46:01 t 1 1 113210 501 0.00 2019-10-06 21:47:14 2019-10-06 21:47:42 t 1 1 113212 327 0.00 2019-10-06 21:47:15 2019-10-06 21:48:08 t 1 1 113214 325 0.00 2019-10-06 21:44:54 2019-10-06 21:50:57 t 1 2 113223 522 0.00 2019-10-06 21:54:32 2019-10-06 21:54:49 t 1 1 113227 522 0.00 2019-10-06 21:57:05 2019-10-06 21:58:02 t 1 1 113228 522 0.00 2019-10-06 21:58:54 2019-10-06 21:58:57 t 1 1 113230 522 0.00 2019-10-06 22:00:58 2019-10-06 22:01:07 t 1 1 113236 536 0.00 2019-10-06 21:45:13 2019-10-06 22:04:50 t 1 1 113241 520 0.00 2019-10-06 21:49:42 2019-10-06 22:08:16 t 1 1 113247 468 0.00 2019-10-06 22:08:12 2019-10-06 22:13:44 t 1 1 113249 327 0.00 2019-10-06 22:11:32 2019-10-06 22:15:01 t 1 1 113251 327 0.00 2019-10-06 22:15:08 2019-10-06 22:15:16 t 1 1 113254 522 0.00 2019-10-06 22:12:06 2019-10-06 22:19:49 t 1 1 113256 485 0.00 2019-10-06 22:17:56 2019-10-06 22:20:38 t 1 1 113257 522 0.00 2019-10-06 22:20:38 2019-10-06 22:20:59 t 1 1 113258 470 0.00 2019-10-06 22:10:03 2019-10-06 22:22:03 t 1 1 113260 472 0.00 2019-10-06 22:12:04 2019-10-06 22:24:05 t 1 1 113262 472 0.00 2019-10-06 22:24:20 2019-10-06 22:25:13 t 1 1 113263 522 0.00 2019-10-06 22:25:50 2019-10-06 22:25:55 t 1 1 113264 522 0.00 2019-10-06 22:26:03 2019-10-06 22:26:04 t 1 1 113266 522 0.00 2019-10-06 22:26:09 2019-10-06 22:26:10 t 1 1 113270 522 0.00 2019-10-06 22:27:04 2019-10-06 22:28:04 t 1 1 113274 468 0.00 2019-10-06 22:14:34 2019-10-06 22:30:32 t 1 1 113281 327 0.00 2019-10-06 22:35:58 2019-10-06 22:37:44 t 1 1 113283 481 0.00 2019-10-06 22:40:01 2019-10-06 22:43:01 t 1 1 113288 451 0.00 2019-10-06 22:36:42 2019-10-06 22:45:26 t 1 1 113290 398 0.00 2019-10-06 22:48:11 2019-10-06 22:48:11 f 1 2 113293 485 0.00 2019-10-06 22:44:19 2019-10-06 22:51:02 t 1 1 113295 379 0.00 2019-10-06 22:45:44 2019-10-06 22:53:19 t 1 1 113297 522 0.00 2019-10-06 22:27:30 2019-10-06 22:58:53 t 1 1 113298 468 0.00 2019-10-06 22:30:32 2019-10-06 23:00:11 t 1 1 113300 528 0.00 2019-10-06 22:48:33 2019-10-06 23:01:25 t 1 1 113301 379 0.00 2019-10-06 23:01:04 2019-10-06 23:02:40 t 1 1 113307 522 0.00 2019-10-06 23:06:13 2019-10-06 23:06:14 t 1 1 113308 522 0.00 2019-10-06 23:06:22 2019-10-06 23:06:26 t 1 1 113310 501 0.00 2019-10-06 23:06:20 2019-10-06 23:06:48 t 1 1 113311 220 0.00 2019-10-06 23:01:06 2019-10-06 23:07:26 t 1 1 113316 522 0.00 2019-10-06 23:10:13 2019-10-06 23:11:03 t 1 1 113317 522 0.00 2019-10-06 23:11:48 2019-10-06 23:12:06 t 1 1 113318 522 0.00 2019-10-06 23:13:25 2019-10-06 23:13:29 t 1 1 113325 485 0.00 2019-10-06 23:09:13 2019-10-06 23:17:14 t 1 1 113330 522 0.00 2019-10-06 23:18:13 2019-10-06 23:18:35 t 1 1 113331 522 0.00 2019-10-06 23:19:19 2019-10-06 23:19:32 t 1 1 113339 485 0.00 2019-10-06 23:17:14 2019-10-06 23:23:40 t 1 1 113341 470 0.00 2019-10-06 22:22:03 2019-10-06 23:26:04 t 1 1 113343 522 0.00 2019-10-06 23:27:49 2019-10-06 23:27:50 t 1 1 113344 220 0.00 2019-10-06 23:07:32 2019-10-06 23:28:16 t 1 1 113346 468 0.00 2019-10-06 23:00:11 2019-10-06 23:28:50 t 1 1 113347 522 0.00 2019-10-06 23:29:34 2019-10-06 23:29:37 t 1 1 113351 528 0.00 2019-10-06 23:30:18 2019-10-06 23:32:47 t 1 1 113352 522 0.00 2019-10-06 23:33:25 2019-10-06 23:33:28 t 1 1 113358 522 0.00 2019-10-06 23:38:32 2019-10-06 23:38:46 t 1 1 113365 522 0.00 2019-10-06 23:40:51 2019-10-06 23:40:52 t 1 1 113366 522 0.00 2019-10-06 23:41:52 2019-10-06 23:41:56 t 1 1 113367 528 0.00 2019-10-06 23:42:26 2019-10-06 23:42:35 t 1 1 113369 220 0.00 2019-10-06 23:28:16 2019-10-06 23:42:57 t 1 1 113371 528 0.00 2019-10-06 23:44:01 2019-10-06 23:44:06 t 1 1 113373 522 0.00 2019-10-06 23:45:02 2019-10-06 23:45:03 t 1 1 113381 485 0.00 2019-10-06 23:45:48 2019-10-06 23:51:10 t 1 1 113388 522 0.00 2019-10-06 23:54:55 2019-10-06 23:54:57 t 1 1 113395 412 0.00 2019-10-06 22:48:33 2019-10-07 00:00:17 t 1 1 113396 522 0.00 2019-10-07 00:01:01 2019-10-07 00:01:03 t 1 1 113398 456 0.00 2019-10-06 23:37:53 2019-10-07 00:01:47 t 1 1 113400 456 0.00 2019-10-07 00:01:46 2019-10-07 00:03:39 t 1 1 113401 522 0.00 2019-10-07 00:03:56 2019-10-07 00:04:08 t 1 1 113404 220 0.00 2019-10-07 00:05:19 2019-10-07 00:05:27 t 1 1 113405 522 0.00 2019-10-07 00:06:04 2019-10-07 00:06:05 t 1 1 113406 522 0.00 2019-10-07 00:07:13 2019-10-07 00:07:16 t 1 1 113409 522 0.00 2019-10-07 00:10:08 2019-10-07 00:10:10 t 1 1 113412 522 0.00 2019-10-07 00:12:09 2019-10-07 00:13:10 t 1 1 113415 522 0.00 2019-10-07 00:17:11 2019-10-07 00:17:12 t 1 1 113418 528 0.00 2019-10-07 00:07:23 2019-10-07 00:19:04 t 1 1 113420 468 0.00 2019-10-07 00:02:26 2019-10-07 00:19:38 t 1 1 113422 522 0.00 2019-10-07 00:20:16 2019-10-07 00:20:17 t 1 1 113424 528 0.00 2019-10-07 00:21:17 2019-10-07 00:21:26 t 1 1 113426 451 0.00 2019-10-07 00:10:15 2019-10-07 00:22:21 t 1 1 113427 522 0.00 2019-10-07 00:23:17 2019-10-07 00:23:18 t 1 1 113229 522 0.00 2019-10-06 22:00:11 2019-10-06 22:00:14 t 1 1 113231 522 0.00 2019-10-06 22:01:27 2019-10-06 22:01:53 t 1 1 113235 485 0.00 2019-10-06 21:55:55 2019-10-06 22:04:36 t 1 1 113237 522 0.00 2019-10-06 22:06:07 2019-10-06 22:06:09 t 1 1 113238 522 0.00 2019-10-06 22:06:34 2019-10-06 22:06:58 t 1 1 113243 512 0.00 2019-10-06 21:57:07 2019-10-06 22:08:39 t 1 1 113244 522 0.00 2019-10-06 22:09:04 2019-10-06 22:09:23 t 1 1 113246 522 0.00 2019-10-06 22:11:22 2019-10-06 22:11:23 t 1 1 113253 485 0.00 2019-10-06 22:15:27 2019-10-06 22:17:00 t 1 1 113261 522 0.00 2019-10-06 22:24:09 2019-10-06 22:24:10 t 1 1 113267 485 0.00 2019-10-06 22:20:37 2019-10-06 22:26:44 t 1 1 113273 501 0.00 2019-10-06 22:29:50 2019-10-06 22:30:18 t 1 1 113275 422 0.00 2019-10-06 21:06:46 2019-10-06 22:30:38 t 1 1 113279 501 0.00 2019-10-06 22:31:53 2019-10-06 22:35:23 t 1 1 113282 481 0.00 2019-10-06 21:53:17 2019-10-06 22:40:01 t 1 1 113285 528 0.00 2019-10-06 22:42:06 2019-10-06 22:43:26 t 1 1 113287 379 0.00 2019-10-06 21:56:02 2019-10-06 22:45:19 t 1 1 113289 422 0.00 2019-10-06 22:30:38 2019-10-06 22:47:38 t 1 1 113291 412 0.00 2019-10-06 18:23:13 2019-10-06 22:48:33 t 1 1 113292 528 0.00 2019-10-06 22:47:25 2019-10-06 22:49:28 t 1 1 113294 220 0.00 2019-10-06 21:57:12 2019-10-06 22:52:18 t 1 2 113299 327 0.00 2019-10-06 22:53:02 2019-10-06 23:00:21 t 1 1 113303 485 0.00 2019-10-06 22:56:42 2019-10-06 23:04:24 t 1 1 113304 501 0.00 2019-10-06 23:04:42 2019-10-06 23:04:51 t 1 1 113305 501 0.00 2019-10-06 23:02:52 2019-10-06 23:05:04 t 1 1 113309 522 0.00 2019-10-06 23:06:38 2019-10-06 23:06:40 t 1 1 113313 528 0.00 2019-10-06 23:01:25 2019-10-06 23:08:14 t 1 1 113319 522 0.00 2019-10-06 23:14:12 2019-10-06 23:15:12 t 1 1 113321 503 0.00 2019-10-06 22:59:18 2019-10-06 23:15:46 t 1 1 113322 522 0.00 2019-10-06 23:16:20 2019-10-06 23:16:22 t 1 1 113324 522 0.00 2019-10-06 23:16:57 2019-10-06 23:17:14 t 1 1 113326 514 0.00 2019-10-06 23:17:02 2019-10-06 23:17:35 t 1 1 113329 422 0.00 2019-10-06 22:47:38 2019-10-06 23:18:31 t 1 1 113332 522 0.00 2019-10-06 23:20:32 2019-10-06 23:20:38 t 1 1 113335 512 0.00 2019-10-06 23:08:58 2019-10-06 23:21:18 t 1 1 113336 522 0.00 2019-10-06 23:21:21 2019-10-06 23:21:34 t 1 1 113337 522 0.00 2019-10-06 23:22:09 2019-10-06 23:22:18 t 1 1 113338 522 0.00 2019-10-06 23:22:30 2019-10-06 23:23:31 t 1 1 113345 522 0.00 2019-10-06 23:28:13 2019-10-06 23:28:27 t 1 1 113348 485 0.00 2019-10-06 23:23:40 2019-10-06 23:31:11 t 1 1 113349 522 0.00 2019-10-06 23:31:32 2019-10-06 23:31:33 t 1 1 113350 522 0.00 2019-10-06 23:32:37 2019-10-06 23:32:40 t 1 1 113354 522 0.00 2019-10-06 23:35:02 2019-10-06 23:35:12 t 1 1 113360 522 0.00 2019-10-06 23:39:05 2019-10-06 23:39:15 t 1 1 113362 522 0.00 2019-10-06 23:39:33 2019-10-06 23:39:44 t 1 1 113363 461 0.00 2019-10-06 23:19:57 2019-10-06 23:40:03 t 1 2 113368 522 0.00 2019-10-06 23:42:41 2019-10-06 23:42:44 t 1 1 113370 485 0.00 2019-10-06 23:31:11 2019-10-06 23:44:04 t 1 1 113374 522 0.00 2019-10-06 23:46:46 2019-10-06 23:46:54 t 1 1 113375 522 0.00 2019-10-06 23:47:01 2019-10-06 23:47:14 t 1 1 113379 512 0.00 2019-10-06 23:35:31 2019-10-06 23:50:30 t 1 1 113380 528 0.00 2019-10-06 23:48:26 2019-10-06 23:50:58 t 1 1 113382 522 0.00 2019-10-06 23:51:53 2019-10-06 23:51:56 t 1 1 113387 538 0.00 2019-10-06 23:26:22 2019-10-06 23:54:29 t 1 1 113390 512 0.00 2019-10-06 23:50:30 2019-10-06 23:55:15 t 1 1 113391 522 0.00 2019-10-06 23:56:08 2019-10-06 23:56:17 t 1 1 113393 522 0.00 2019-10-06 23:57:53 2019-10-06 23:58:53 t 1 1 113394 522 0.00 2019-10-06 23:59:00 2019-10-06 23:59:02 t 1 1 113399 522 0.00 2019-10-07 00:03:02 2019-10-07 00:03:04 t 1 1 113402 220 0.00 2019-10-07 00:04:49 2019-10-07 00:04:57 t 1 1 113408 544 0.00 2019-10-06 23:24:11 2019-10-07 00:09:16 t 1 2 113413 536 0.00 2019-10-07 00:13:21 2019-10-07 00:13:42 t 1 1 113414 522 0.00 2019-10-07 00:15:10 2019-10-07 00:15:12 t 1 1 113419 522 0.00 2019-10-07 00:19:04 2019-10-07 00:19:07 t 1 1 113421 544 0.00 2019-10-07 00:05:11 2019-10-07 00:19:47 t 1 2 113423 522 0.00 2019-10-07 00:20:23 2019-10-07 00:20:24 t 1 1 113428 522 0.00 2019-10-07 00:23:24 2019-10-07 00:23:25 t 1 1 113429 522 0.00 2019-10-07 00:24:10 2019-10-07 00:24:18 t 1 1 113434 522 0.00 2019-10-07 00:26:37 2019-10-07 00:26:38 t 1 1 113438 220 0.00 2019-10-07 00:29:09 2019-10-07 00:30:59 t 1 1 113453 536 0.00 2019-10-07 00:39:31 2019-10-07 00:39:38 t 1 1 113457 536 0.00 2019-10-07 00:41:50 2019-10-07 00:42:19 t 1 1 113458 522 0.00 2019-10-07 00:43:31 2019-10-07 00:43:32 t 1 1 113460 501 0.00 2019-10-06 23:51:59 2019-10-07 00:44:03 t 1 1 113461 522 0.00 2019-10-07 00:44:25 2019-10-07 00:44:25 t 1 1 113462 522 0.00 2019-10-07 00:45:41 2019-10-07 00:45:42 t 1 1 113465 522 0.00 2019-10-07 00:46:40 2019-10-07 00:46:47 t 1 1 113466 522 0.00 2019-10-07 00:47:17 2019-10-07 00:47:24 t 1 1 113473 468 0.00 2019-10-07 00:44:56 2019-10-07 01:01:44 t 1 1 113475 468 0.00 2019-10-07 01:04:48 2019-10-07 01:08:02 t 1 1 113477 220 0.00 2019-10-07 00:56:31 2019-10-07 01:08:54 t 1 2 113478 522 0.00 2019-10-07 01:09:17 2019-10-07 01:09:18 t 1 1 113488 536 0.00 2019-10-07 00:53:40 2019-10-07 01:16:22 t 1 1 113489 522 0.00 2019-10-07 01:18:33 2019-10-07 01:18:34 t 1 1 113491 522 0.00 2019-10-07 01:18:20 2019-10-07 01:20:04 t 1 1 113495 522 0.00 2019-10-07 01:21:23 2019-10-07 01:21:25 t 1 1 113496 522 0.00 2019-10-07 01:22:30 2019-10-07 01:22:31 t 1 1 113499 501 0.00 2019-10-07 00:54:53 2019-10-07 01:23:59 t 1 1 113500 522 0.00 2019-10-07 01:24:17 2019-10-07 01:24:26 t 1 1 113503 522 0.00 2019-10-07 01:25:36 2019-10-07 01:25:39 t 1 1 113505 522 0.00 2019-10-07 01:26:52 2019-10-07 01:26:53 t 1 1 113508 536 0.00 2019-10-07 01:27:00 2019-10-07 01:27:07 t 1 1 113509 522 0.00 2019-10-07 01:27:09 2019-10-07 01:27:19 t 1 1 113514 522 0.00 2019-10-07 01:29:29 2019-10-07 01:29:32 t 1 1 113517 538 0.00 2019-10-07 00:59:29 2019-10-07 01:31:10 t 1 1 113519 522 0.00 2019-10-07 01:31:40 2019-10-07 01:31:41 t 1 1 113520 468 0.00 2019-10-07 01:15:13 2019-10-07 01:32:44 t 1 1 113521 522 0.00 2019-10-07 01:32:40 2019-10-07 01:33:20 t 1 1 113522 522 0.00 2019-10-07 01:33:49 2019-10-07 01:35:00 t 1 1 113528 522 0.00 2019-10-07 01:40:48 2019-10-07 01:40:50 t 1 1 113529 536 0.00 2019-10-07 01:40:59 2019-10-07 01:41:01 t 1 1 113543 532 0.00 2019-10-07 01:45:08 2019-10-07 01:55:17 t 1 1 113551 542 0.00 2019-10-06 22:00:47 2019-10-07 02:01:38 t 1 1 113552 522 0.00 2019-10-07 02:02:51 2019-10-07 02:02:53 t 1 1 113553 522 0.00 2019-10-07 02:03:10 2019-10-07 02:03:13 t 1 1 113554 522 0.00 2019-10-07 02:04:01 2019-10-07 02:04:03 t 1 1 113572 522 0.00 2019-10-07 02:14:23 2019-10-07 02:14:25 t 1 1 113378 522 0.00 2019-10-06 23:49:52 2019-10-06 23:49:53 t 1 1 113383 501 0.00 2019-10-06 23:07:23 2019-10-06 23:51:59 t 1 1 113384 522 0.00 2019-10-06 23:52:09 2019-10-06 23:52:12 t 1 1 113385 522 0.00 2019-10-06 23:53:03 2019-10-06 23:53:05 t 1 1 113386 220 0.00 2019-10-06 23:54:21 2019-10-06 23:54:28 t 1 1 113389 528 0.00 2019-10-06 23:50:10 2019-10-06 23:55:13 t 1 1 113392 522 0.00 2019-10-06 23:56:31 2019-10-06 23:56:47 t 1 1 113397 522 0.00 2019-10-07 00:01:12 2019-10-07 00:01:13 t 1 1 113403 220 0.00 2019-10-07 00:05:04 2019-10-07 00:05:12 t 1 1 113407 522 0.00 2019-10-07 00:08:54 2019-10-07 00:09:03 t 1 1 113410 451 0.00 2019-10-07 00:07:19 2019-10-07 00:10:15 t 1 1 113411 536 0.00 2019-10-07 00:09:02 2019-10-07 00:12:17 t 1 1 113416 461 0.00 2019-10-06 23:45:46 2019-10-07 00:17:53 t 1 2 113417 522 0.00 2019-10-07 00:18:20 2019-10-07 00:18:22 t 1 1 113425 522 0.00 2019-10-07 00:21:23 2019-10-07 00:21:26 t 1 1 113432 522 0.00 2019-10-07 00:26:05 2019-10-07 00:26:15 t 1 1 113444 536 0.00 2019-10-07 00:14:34 2019-10-07 00:35:27 t 1 1 113445 522 0.00 2019-10-07 00:36:26 2019-10-07 00:36:27 t 1 1 113446 522 0.00 2019-10-07 00:36:35 2019-10-07 00:36:58 t 1 1 113449 536 0.00 2019-10-07 00:37:22 2019-10-07 00:37:27 t 1 1 113451 536 0.00 2019-10-07 00:39:18 2019-10-07 00:39:26 t 1 1 113456 522 0.00 2019-10-07 00:41:55 2019-10-07 00:41:57 t 1 1 113468 522 0.00 2019-10-07 00:48:34 2019-10-07 00:48:36 t 1 1 113474 468 0.00 2019-10-07 01:01:44 2019-10-07 01:04:48 t 1 1 113476 522 0.00 2019-10-07 00:49:16 2019-10-07 01:08:08 t 1 1 113479 522 0.00 2019-10-07 01:09:31 2019-10-07 01:09:32 t 1 1 113480 514 0.00 2019-10-07 00:57:37 2019-10-07 01:10:12 t 1 1 113481 522 0.00 2019-10-07 01:10:22 2019-10-07 01:10:23 t 1 1 113484 522 0.00 2019-10-07 01:14:17 2019-10-07 01:14:19 t 1 1 113485 468 0.00 2019-10-07 01:08:02 2019-10-07 01:15:13 t 1 1 113486 522 0.00 2019-10-07 01:15:30 2019-10-07 01:15:39 t 1 1 113487 522 0.00 2019-10-07 01:15:52 2019-10-07 01:16:08 t 1 1 113492 522 0.00 2019-10-07 01:20:20 2019-10-07 01:20:22 t 1 1 113497 536 0.00 2019-10-07 01:16:22 2019-10-07 01:23:11 t 1 1 113507 522 0.00 2019-10-07 01:26:59 2019-10-07 01:27:04 t 1 1 113510 536 0.00 2019-10-07 01:27:12 2019-10-07 01:27:33 t 1 1 113512 536 0.00 2019-10-07 01:28:25 2019-10-07 01:28:58 t 1 1 113515 536 0.00 2019-10-07 01:29:44 2019-10-07 01:29:56 t 1 1 113523 522 0.00 2019-10-07 01:35:11 2019-10-07 01:35:25 t 1 1 113524 536 0.00 2019-10-07 01:36:22 2019-10-07 01:36:24 t 1 1 113527 522 0.00 2019-10-07 01:39:13 2019-10-07 01:39:32 t 1 1 113530 522 0.00 2019-10-07 01:42:40 2019-10-07 01:43:01 t 1 1 113531 522 0.00 2019-10-07 01:43:49 2019-10-07 01:43:51 t 1 1 113533 468 0.00 2019-10-07 01:32:44 2019-10-07 01:44:18 t 1 1 113534 532 0.00 2019-10-07 01:41:51 2019-10-07 01:45:08 t 1 1 113535 522 0.00 2019-10-07 01:45:42 2019-10-07 01:45:44 t 1 1 113536 536 0.00 2019-10-07 01:46:24 2019-10-07 01:46:30 t 1 1 113537 522 0.00 2019-10-07 01:47:43 2019-10-07 01:47:44 t 1 1 113541 522 0.00 2019-10-07 01:52:46 2019-10-07 01:52:48 t 1 1 113542 522 0.00 2019-10-07 01:52:56 2019-10-07 01:53:12 t 1 1 113545 522 0.00 2019-10-07 01:57:55 2019-10-07 01:57:56 t 1 1 113546 522 0.00 2019-10-07 01:58:09 2019-10-07 01:58:09 t 1 1 113549 532 0.00 2019-10-07 01:55:17 2019-10-07 01:59:44 t 1 1 113557 422 0.00 2019-10-07 01:57:04 2019-10-07 02:04:55 t 1 1 113558 470 0.00 2019-10-07 01:28:25 2019-10-07 02:06:24 t 1 1 113562 522 0.00 2019-10-07 02:08:17 2019-10-07 02:08:49 t 1 1 113563 532 0.00 2019-10-07 02:08:51 2019-10-07 02:09:11 t 1 1 113566 532 0.00 2019-10-07 02:09:50 2019-10-07 02:11:12 t 1 1 113567 422 0.00 2019-10-07 02:04:55 2019-10-07 02:12:52 t 1 1 113568 532 0.00 2019-10-07 02:11:19 2019-10-07 02:13:26 t 1 1 113569 522 0.00 2019-10-07 02:13:28 2019-10-07 02:13:29 t 1 1 113574 536 0.00 2019-10-07 01:49:14 2019-10-07 02:15:51 t 1 1 113575 522 0.00 2019-10-07 02:18:38 2019-10-07 02:18:51 t 1 1 113577 532 0.00 2019-10-07 02:13:26 2019-10-07 02:20:34 t 1 1 113579 532 0.00 2019-10-07 02:20:34 2019-10-07 02:22:28 t 1 1 113582 522 0.00 2019-10-07 02:24:07 2019-10-07 02:24:07 t 1 1 113584 522 0.00 2019-10-07 02:25:06 2019-10-07 02:25:08 t 1 1 113588 422 0.00 2019-10-07 02:20:29 2019-10-07 02:27:28 t 1 1 113592 522 0.00 2019-10-07 02:32:10 2019-10-07 02:32:11 t 1 1 113593 422 0.00 2019-10-07 02:27:28 2019-10-07 02:33:47 t 1 1 113594 522 0.00 2019-10-07 02:33:46 2019-10-07 02:34:01 t 1 1 113596 522 0.00 2019-10-07 02:35:22 2019-10-07 02:35:23 t 1 1 113598 522 0.00 2019-10-07 02:37:13 2019-10-07 02:37:14 t 1 1 113600 536 0.00 2019-10-07 02:15:57 2019-10-07 02:37:30 t 1 1 113602 522 0.00 2019-10-07 02:38:46 2019-10-07 02:38:46 t 1 1 113605 522 0.00 2019-10-07 02:40:24 2019-10-07 02:40:25 t 1 1 113610 470 0.00 2019-10-07 02:06:24 2019-10-07 02:55:28 t 1 1 113611 532 0.00 2019-10-07 02:51:59 2019-10-07 02:57:30 t 1 1 113612 532 0.00 2019-10-07 02:57:30 2019-10-07 03:02:11 t 1 1 113614 532 0.00 2019-10-07 03:07:40 2019-10-07 03:09:05 t 1 1 113615 311 0.00 2019-10-07 03:02:03 2019-10-07 03:10:26 t 1 2 113619 485 0.00 2019-10-07 03:32:37 2019-10-07 03:34:30 t 1 1 113624 445 0.00 2019-10-06 21:47:20 2019-10-07 03:51:51 t 1 1 113625 470 0.00 2019-10-07 03:12:02 2019-10-07 03:57:21 t 1 1 113626 331 0.00 2019-10-07 03:41:03 2019-10-07 04:01:04 t 1 1 113627 445 0.00 2019-10-07 03:52:02 2019-10-07 04:01:11 t 1 1 113633 485 0.00 2019-10-07 06:10:11 2019-10-07 06:12:29 t 1 1 113634 220 0.00 2019-10-07 06:13:40 2019-10-07 06:15:33 t 1 1 113637 445 0.00 2019-10-07 04:24:46 2019-10-07 06:31:24 t 1 1 113639 520 0.00 2019-10-07 07:03:38 2019-10-07 07:07:36 t 1 1 113641 499 0.00 2019-10-07 06:29:24 2019-10-07 07:14:56 t 1 1 113643 528 0.00 2019-10-07 07:21:21 2019-10-07 07:23:48 t 1 1 113644 528 0.00 2019-10-07 07:24:59 2019-10-07 07:26:41 t 1 1 113648 528 0.00 2019-10-07 07:27:31 2019-10-07 07:34:21 t 1 1 113652 456 0.00 2019-10-07 07:36:17 2019-10-07 07:38:13 t 1 1 113654 528 0.00 2019-10-07 07:35:11 2019-10-07 07:42:41 t 1 1 113655 445 0.00 2019-10-07 07:38:22 2019-10-07 07:49:03 t 1 1 113656 522 0.00 2019-10-07 07:52:14 2019-10-07 07:53:09 t 1 1 113659 522 0.00 2019-10-07 07:53:41 2019-10-07 07:54:13 t 1 1 113661 445 0.00 2019-10-07 07:49:07 2019-10-07 07:55:37 t 1 1 113665 542 0.00 2019-10-07 08:09:21 2019-10-07 08:19:38 t 1 1 113668 538 0.00 2019-10-07 08:17:27 2019-10-07 08:22:06 t 1 1 113669 542 0.00 2019-10-07 08:19:38 2019-10-07 08:24:48 t 1 1 113672 445 0.00 2019-10-07 08:27:57 2019-10-07 08:34:01 t 1 1 113674 296 0.00 2019-10-07 08:27:48 2019-10-07 08:38:11 t 1 2 113675 445 0.00 2019-10-07 08:40:39 2019-10-07 08:41:47 t 1 1 113677 522 0.00 2019-10-07 08:36:55 2019-10-07 08:42:55 t 1 1 113430 220 0.00 2019-10-06 23:34:15 2019-10-07 00:24:47 t 1 2 113431 372 0.00 2019-10-07 00:25:03 2019-10-07 00:26:11 t 1 2 113433 522 0.00 2019-10-07 00:26:23 2019-10-07 00:26:24 t 1 1 113435 522 0.00 2019-10-07 00:28:35 2019-10-07 00:28:42 t 1 1 113436 220 0.00 2019-10-07 00:11:05 2019-10-07 00:29:09 t 1 1 113437 522 0.00 2019-10-07 00:30:23 2019-10-07 00:30:26 t 1 1 113439 522 0.00 2019-10-07 00:29:18 2019-10-07 00:31:04 t 1 1 113440 522 0.00 2019-10-07 00:32:23 2019-10-07 00:32:24 t 1 1 113441 528 0.00 2019-10-07 00:28:49 2019-10-07 00:33:05 t 1 1 113442 522 0.00 2019-10-07 00:34:21 2019-10-07 00:34:22 t 1 1 113443 220 0.00 2019-10-07 00:32:55 2019-10-07 00:35:18 t 1 2 113447 468 0.00 2019-10-07 00:19:38 2019-10-07 00:37:11 t 1 1 113448 522 0.00 2019-10-07 00:37:04 2019-10-07 00:37:22 t 1 1 113450 536 0.00 2019-10-07 00:37:38 2019-10-07 00:37:45 t 1 1 113452 522 0.00 2019-10-07 00:39:28 2019-10-07 00:39:31 t 1 1 113454 536 0.00 2019-10-07 00:40:21 2019-10-07 00:40:33 t 1 1 113455 522 0.00 2019-10-07 00:41:29 2019-10-07 00:41:31 t 1 1 113459 468 0.00 2019-10-07 00:37:11 2019-10-07 00:43:39 t 1 1 113463 536 0.00 2019-10-07 00:44:25 2019-10-07 00:45:53 t 1 1 113464 501 0.00 2019-10-07 00:44:35 2019-10-07 00:46:08 t 1 1 113467 522 0.00 2019-10-07 00:47:35 2019-10-07 00:48:34 t 1 1 113469 536 0.00 2019-10-07 00:45:58 2019-10-07 00:48:57 t 1 1 113470 536 0.00 2019-10-07 00:49:40 2019-10-07 00:49:42 t 1 1 113471 536 0.00 2019-10-07 00:50:27 2019-10-07 00:52:04 t 1 1 113472 536 0.00 2019-10-07 00:52:59 2019-10-07 00:53:06 t 1 1 113482 514 0.00 2019-10-07 01:10:12 2019-10-07 01:11:51 t 1 1 113483 522 0.00 2019-10-07 01:12:16 2019-10-07 01:12:18 t 1 1 113490 528 0.00 2019-10-07 01:00:16 2019-10-07 01:18:35 t 1 1 113493 522 0.00 2019-10-07 01:20:41 2019-10-07 01:20:42 t 1 1 113494 522 0.00 2019-10-07 01:20:59 2019-10-07 01:21:11 t 1 1 113498 522 0.00 2019-10-07 01:23:30 2019-10-07 01:23:31 t 1 1 113501 536 0.00 2019-10-07 01:24:23 2019-10-07 01:24:29 t 1 1 113502 528 0.00 2019-10-07 01:18:35 2019-10-07 01:25:07 t 1 1 113504 522 0.00 2019-10-07 01:26:31 2019-10-07 01:26:39 t 1 1 113506 536 0.00 2019-10-07 01:26:27 2019-10-07 01:26:55 t 1 1 113511 536 0.00 2019-10-07 01:27:33 2019-10-07 01:28:10 t 1 1 113513 536 0.00 2019-10-07 01:29:14 2019-10-07 01:29:20 t 1 1 113516 522 0.00 2019-10-07 01:30:40 2019-10-07 01:30:41 t 1 1 113518 536 0.00 2019-10-07 01:30:12 2019-10-07 01:31:23 t 1 1 113525 522 0.00 2019-10-07 01:36:45 2019-10-07 01:36:47 t 1 1 113526 522 0.00 2019-10-07 01:37:43 2019-10-07 01:37:45 t 1 1 113532 536 0.00 2019-10-07 01:43:22 2019-10-07 01:43:59 t 1 1 113538 522 0.00 2019-10-07 01:47:54 2019-10-07 01:47:55 t 1 1 113539 522 0.00 2019-10-07 01:48:16 2019-10-07 01:48:34 t 1 1 113540 522 0.00 2019-10-07 01:50:45 2019-10-07 01:50:47 t 1 1 113544 522 0.00 2019-10-07 01:56:48 2019-10-07 01:56:51 t 1 1 113547 522 0.00 2019-10-07 01:58:50 2019-10-07 01:58:51 t 1 1 113548 522 0.00 2019-10-07 01:58:57 2019-10-07 01:58:58 t 1 1 113550 522 0.00 2019-10-07 02:00:50 2019-10-07 02:00:51 t 1 1 113555 532 0.00 2019-10-07 01:59:44 2019-10-07 02:04:35 t 1 1 113556 522 0.00 2019-10-07 02:04:52 2019-10-07 02:04:54 t 1 1 113559 522 0.00 2019-10-07 02:06:53 2019-10-07 02:06:55 t 1 1 113560 532 0.00 2019-10-07 02:04:35 2019-10-07 02:08:11 t 1 1 113561 532 0.00 2019-10-07 02:08:17 2019-10-07 02:08:20 t 1 1 113564 522 0.00 2019-10-07 02:09:13 2019-10-07 02:09:14 t 1 1 113565 522 0.00 2019-10-07 02:10:56 2019-10-07 02:11:08 t 1 1 113570 522 0.00 2019-10-07 02:13:37 2019-10-07 02:13:49 t 1 1 113571 522 0.00 2019-10-07 02:14:00 2019-10-07 02:14:01 t 1 1 113573 522 0.00 2019-10-07 02:15:08 2019-10-07 02:15:10 t 1 1 113583 522 0.00 2019-10-07 02:24:13 2019-10-07 02:24:15 t 1 1 113586 522 0.00 2019-10-07 02:26:06 2019-10-07 02:26:08 t 1 1 113587 522 0.00 2019-10-07 02:27:16 2019-10-07 02:27:18 t 1 1 113591 522 0.00 2019-10-07 02:30:09 2019-10-07 02:30:11 t 1 1 113595 522 0.00 2019-10-07 02:34:13 2019-10-07 02:34:15 t 1 1 113597 532 0.00 2019-10-07 02:23:19 2019-10-07 02:36:55 t 1 1 113599 522 0.00 2019-10-07 02:37:20 2019-10-07 02:37:26 t 1 1 113607 522 0.00 2019-10-07 02:42:18 2019-10-07 02:42:20 t 1 1 113609 532 0.00 2019-10-07 02:48:30 2019-10-07 02:51:59 t 1 1 113613 532 0.00 2019-10-07 03:02:11 2019-10-07 03:07:40 t 1 1 113616 470 0.00 2019-10-07 02:54:45 2019-10-07 03:11:36 t 1 1 113618 485 0.00 2019-10-07 03:29:25 2019-10-07 03:30:52 t 1 1 113621 485 0.00 2019-10-07 03:35:33 2019-10-07 03:40:27 t 1 1 113628 339 0.00 2019-10-07 01:33:26 2019-10-07 04:10:51 t 1 2 113630 445 0.00 2019-10-07 04:13:05 2019-10-07 04:23:27 t 1 1 113632 331 0.00 2019-10-07 04:43:28 2019-10-07 05:09:15 t 1 1 113635 485 0.00 2019-10-07 06:15:47 2019-10-07 06:17:52 t 1 1 113636 499 0.00 2019-10-07 06:08:37 2019-10-07 06:29:24 t 1 1 113638 445 0.00 2019-10-07 06:31:37 2019-10-07 07:03:23 t 1 1 113640 331 0.00 2019-10-07 05:22:41 2019-10-07 07:14:11 t 1 1 113646 445 0.00 2019-10-07 07:04:07 2019-10-07 07:31:35 t 1 1 113647 331 0.00 2019-10-07 07:14:11 2019-10-07 07:32:20 t 1 1 113649 456 0.00 2019-10-07 07:27:09 2019-10-07 07:34:33 t 1 1 113658 520 0.00 2019-10-07 07:51:56 2019-10-07 07:53:50 t 1 1 113662 520 0.00 2019-10-07 07:57:36 2019-10-07 08:04:01 t 1 1 113666 522 0.00 2019-10-07 07:54:49 2019-10-07 08:19:52 t 1 1 113667 481 0.00 2019-10-07 07:37:30 2019-10-07 08:21:17 t 1 1 113671 331 0.00 2019-10-07 07:40:50 2019-10-07 08:33:44 t 1 1 113676 538 0.00 2019-10-07 08:39:19 2019-10-07 08:41:49 t 1 1 113678 522 0.00 2019-10-07 08:43:12 2019-10-07 08:43:48 t 1 1 113683 542 0.00 2019-10-07 08:48:48 2019-10-07 08:51:14 t 1 1 113685 516 0.00 2019-10-07 08:40:11 2019-10-07 08:53:28 t 1 1 113692 528 0.00 2019-10-07 08:53:26 2019-10-07 09:03:06 t 1 1 113693 445 0.00 2019-10-07 09:02:15 2019-10-07 09:03:27 t 1 1 113695 331 0.00 2019-10-07 09:02:58 2019-10-07 09:04:09 t 1 1 113697 445 0.00 2019-10-07 09:04:27 2019-10-07 09:05:32 t 1 1 113702 485 0.00 2019-10-07 09:08:14 2019-10-07 09:09:54 t 1 1 113704 306 0.00 2019-10-07 09:09:30 2019-10-07 09:12:04 t 1 1 113706 445 0.00 2019-10-07 09:12:37 2019-10-07 09:13:38 t 1 1 113708 445 0.00 2019-10-07 09:13:38 2019-10-07 09:15:44 t 1 1 113712 445 0.00 2019-10-07 09:26:36 2019-10-07 09:29:33 t 1 1 113713 516 0.00 2019-10-07 09:21:28 2019-10-07 09:32:36 t 1 1 113714 445 0.00 2019-10-07 09:29:33 2019-10-07 09:33:53 t 1 1 113715 501 0.00 2019-10-07 09:31:46 2019-10-07 09:37:23 t 1 1 113717 514 0.00 2019-10-07 09:37:53 2019-10-07 09:42:04 t 1 1 113721 306 0.00 2019-10-07 09:42:25 2019-10-07 09:45:19 t 1 1 113723 445 0.00 2019-10-07 09:33:52 2019-10-07 09:45:25 t 1 1 113724 501 0.00 2019-10-07 09:42:29 2019-10-07 09:46:00 t 1 1 113576 422 0.00 2019-10-07 02:12:52 2019-10-07 02:20:29 t 1 1 113578 522 0.00 2019-10-07 02:21:02 2019-10-07 02:21:04 t 1 1 113580 522 0.00 2019-10-07 02:23:03 2019-10-07 02:23:20 t 1 1 113581 522 0.00 2019-10-07 02:23:38 2019-10-07 02:23:59 t 1 1 113585 522 0.00 2019-10-07 02:25:14 2019-10-07 02:26:06 t 1 1 113589 522 0.00 2019-10-07 02:28:17 2019-10-07 02:28:19 t 1 1 113590 522 0.00 2019-10-07 02:28:39 2019-10-07 02:29:20 t 1 1 113601 522 0.00 2019-10-07 02:37:47 2019-10-07 02:38:10 t 1 1 113603 536 0.00 2019-10-07 02:38:01 2019-10-07 02:40:06 t 1 1 113604 522 0.00 2019-10-07 02:40:17 2019-10-07 02:40:19 t 1 1 113606 536 0.00 2019-10-07 02:40:18 2019-10-07 02:40:39 t 1 1 113608 532 0.00 2019-10-07 02:36:55 2019-10-07 02:48:30 t 1 1 113617 422 0.00 2019-10-07 02:33:47 2019-10-07 03:16:04 t 1 1 113620 485 0.00 2019-10-07 03:34:30 2019-10-07 03:35:34 t 1 1 113622 485 0.00 2019-10-07 03:42:11 2019-10-07 03:46:33 t 1 1 113623 311 0.00 2019-10-07 03:45:27 2019-10-07 03:50:14 t 1 2 113629 445 0.00 2019-10-07 04:01:17 2019-10-07 04:13:05 t 1 1 113631 430 0.00 2019-10-07 04:32:52 2019-10-07 04:45:24 t 1 1 113642 461 0.00 2019-10-07 07:13:02 2019-10-07 07:23:07 t 1 2 113645 516 0.00 2019-10-07 07:20:19 2019-10-07 07:28:43 t 1 1 113650 481 0.00 2019-10-07 07:32:45 2019-10-07 07:37:30 t 1 1 113651 445 0.00 2019-10-07 07:32:51 2019-10-07 07:38:10 t 1 1 113653 331 0.00 2019-10-07 07:32:20 2019-10-07 07:40:05 t 1 1 113657 522 0.00 2019-10-07 07:53:22 2019-10-07 07:53:34 t 1 1 113660 522 0.00 2019-10-07 07:54:25 2019-10-07 07:54:37 t 1 1 113663 445 0.00 2019-10-07 07:55:46 2019-10-07 08:10:34 t 1 1 113664 445 0.00 2019-10-07 08:13:41 2019-10-07 08:14:51 t 1 1 113670 445 0.00 2019-10-07 08:16:19 2019-10-07 08:27:57 t 1 1 113673 522 0.00 2019-10-07 08:19:52 2019-10-07 08:36:55 t 1 1 113679 445 0.00 2019-10-07 08:41:46 2019-10-07 08:45:33 t 1 1 113680 445 0.00 2019-10-07 08:45:32 2019-10-07 08:46:16 t 1 1 113688 542 0.00 2019-10-07 08:57:56 2019-10-07 08:59:46 t 1 1 113689 430 0.00 2019-10-07 08:56:15 2019-10-07 09:00:33 t 1 1 113691 331 0.00 2019-10-07 08:57:03 2019-10-07 09:02:58 t 1 1 113698 445 0.00 2019-10-07 09:05:34 2019-10-07 09:06:17 t 1 1 113699 528 0.00 2019-10-07 09:05:16 2019-10-07 09:07:05 t 1 1 113701 331 0.00 2019-10-07 09:07:53 2019-10-07 09:09:05 t 1 1 113703 445 0.00 2019-10-07 09:06:16 2019-10-07 09:11:23 t 1 1 113707 379 0.00 2019-10-07 08:27:46 2019-10-07 09:15:29 t 1 1 113709 501 0.00 2019-10-07 08:59:36 2019-10-07 09:15:56 t 1 1 113710 445 0.00 2019-10-07 09:15:44 2019-10-07 09:26:11 t 1 1 113711 306 0.00 2019-10-07 09:12:04 2019-10-07 09:26:38 t 1 1 113718 516 0.00 2019-10-07 09:42:06 2019-10-07 09:44:14 t 1 1 113722 516 0.00 2019-10-07 09:44:13 2019-10-07 09:45:22 t 1 1 113726 501 0.00 2019-10-07 09:48:27 2019-10-07 09:48:44 t 1 1 113727 361 0.00 2019-10-07 09:25:09 2019-10-07 09:50:59 t 1 2 113730 501 0.00 2019-10-07 09:49:05 2019-10-07 09:53:47 t 1 1 113733 331 0.00 2019-10-07 09:54:15 2019-10-07 09:55:30 t 1 1 113734 445 0.00 2019-10-07 09:54:18 2019-10-07 09:57:36 t 1 1 113735 331 0.00 2019-10-07 09:56:35 2019-10-07 09:58:19 t 1 1 113737 327 0.00 2019-10-07 09:40:58 2019-10-07 10:03:12 t 1 1 113738 538 0.00 2019-10-07 09:47:53 2019-10-07 10:04:13 t 1 1 113740 512 0.00 2019-10-07 09:45:30 2019-10-07 10:12:08 t 1 1 113741 538 0.00 2019-10-07 10:05:53 2019-10-07 10:13:12 t 1 1 113744 445 0.00 2019-10-07 09:57:22 2019-10-07 10:18:52 t 1 1 113746 501 0.00 2019-10-07 10:20:53 2019-10-07 10:21:29 t 1 1 113748 481 0.00 2019-10-07 08:21:16 2019-10-07 10:21:54 t 1 1 113751 331 0.00 2019-10-07 10:22:36 2019-10-07 10:23:48 t 1 1 113754 538 0.00 2019-10-07 10:13:17 2019-10-07 10:27:37 t 1 1 113757 501 0.00 2019-10-07 10:28:42 2019-10-07 10:28:43 t 1 1 113758 220 0.00 2019-10-07 10:21:30 2019-10-07 10:29:24 t 1 1 113760 445 0.00 2019-10-07 10:23:06 2019-10-07 10:31:38 t 1 1 113762 501 0.00 2019-10-07 10:30:19 2019-10-07 10:31:43 t 1 1 113767 306 0.00 2019-10-07 10:09:11 2019-10-07 10:35:29 t 1 1 113769 327 0.00 2019-10-07 10:24:55 2019-10-07 10:35:59 t 1 1 113771 331 0.00 2019-10-07 10:33:45 2019-10-07 10:36:13 t 1 1 113774 501 0.00 2019-10-07 10:38:36 2019-10-07 10:38:50 t 1 1 113776 501 0.00 2019-10-07 10:39:56 2019-10-07 10:40:28 t 1 1 113781 528 0.00 2019-10-07 10:43:37 2019-10-07 10:45:48 t 1 1 113783 501 0.00 2019-10-07 10:44:11 2019-10-07 10:48:57 t 1 1 113785 331 0.00 2019-10-07 10:49:19 2019-10-07 10:51:53 t 1 1 113786 416 0.00 2019-10-07 10:30:42 2019-10-07 10:52:47 t 1 1 113789 501 0.00 2019-10-07 10:54:28 2019-10-07 10:55:09 t 1 1 113791 481 0.00 2019-10-07 10:21:54 2019-10-07 10:55:37 t 1 1 113792 416 0.00 2019-10-07 10:51:53 2019-10-07 10:56:04 t 1 1 113799 544 0.00 2019-10-07 09:56:51 2019-10-07 10:59:36 t 1 2 113802 501 0.00 2019-10-07 10:58:33 2019-10-07 11:07:57 t 1 1 113803 327 0.00 2019-10-07 10:36:08 2019-10-07 11:08:16 t 1 1 113804 522 0.00 2019-10-07 11:08:35 2019-10-07 11:08:48 t 1 1 113806 220 0.00 2019-10-07 11:07:58 2019-10-07 11:11:03 t 1 2 113812 522 0.00 2019-10-07 11:14:58 2019-10-07 11:14:58 f 1 1 113814 522 0.00 2019-10-07 11:14:17 2019-10-07 11:15:36 t 1 1 113816 522 0.00 2019-10-07 11:13:30 2019-10-07 11:16:06 t 1 1 113822 514 0.00 2019-10-07 11:17:49 2019-10-07 11:21:11 t 1 1 113823 512 0.00 2019-10-07 11:19:18 2019-10-07 11:23:14 t 1 1 113827 306 0.00 2019-10-07 11:23:56 2019-10-07 11:29:22 t 1 1 113828 516 0.00 2019-10-07 11:27:08 2019-10-07 11:31:35 t 1 1 113831 481 0.00 2019-10-07 11:17:06 2019-10-07 11:39:17 t 1 1 113833 501 0.00 2019-10-07 11:29:31 2019-10-07 11:41:45 t 1 1 113835 544 0.00 2019-10-07 11:30:15 2019-10-07 11:43:12 t 1 2 113838 445 0.00 2019-10-07 11:46:57 2019-10-07 11:48:15 t 1 1 113841 445 0.00 2019-10-07 11:48:39 2019-10-07 11:49:42 t 1 1 113846 327 0.00 2019-10-07 11:38:43 2019-10-07 11:59:45 t 1 1 113848 327 0.00 2019-10-07 11:59:55 2019-10-07 12:01:12 t 1 1 113849 501 0.00 2019-10-07 12:02:16 2019-10-07 12:05:00 t 1 1 113850 247 0.00 2019-10-07 12:04:36 2019-10-07 12:06:35 t 1 2 113851 445 0.00 2019-10-07 11:55:13 2019-10-07 12:10:57 t 1 1 113853 416 0.00 2019-10-07 11:41:28 2019-10-07 12:12:33 t 1 1 113856 416 0.00 2019-10-07 12:12:58 2019-10-07 12:13:47 t 1 1 113861 501 0.00 2019-10-07 12:19:42 2019-10-07 12:19:51 t 1 1 113862 501 0.00 2019-10-07 12:20:43 2019-10-07 12:21:16 t 1 1 113863 445 0.00 2019-10-07 12:19:03 2019-10-07 12:21:29 t 1 1 113866 501 0.00 2019-10-07 12:23:22 2019-10-07 12:24:17 t 1 1 113868 501 0.00 2019-10-07 12:25:19 2019-10-07 12:25:49 t 1 1 113869 456 0.00 2019-10-07 12:24:05 2019-10-07 12:26:09 t 1 1 113875 501 0.00 2019-10-07 12:30:57 2019-10-07 12:31:05 t 1 1 113882 522 0.00 2019-10-07 12:38:19 2019-10-07 12:39:30 t 1 1 113681 522 0.00 2019-10-07 08:44:38 2019-10-07 08:46:16 t 1 1 113682 522 0.00 2019-10-07 08:46:59 2019-10-07 08:47:56 t 1 1 113684 327 0.00 2019-10-07 08:43:57 2019-10-07 08:52:01 t 1 1 113686 445 0.00 2019-10-07 08:46:15 2019-10-07 08:56:46 t 1 1 113687 331 0.00 2019-10-07 08:34:01 2019-10-07 08:57:04 t 1 1 113690 445 0.00 2019-10-07 08:56:46 2019-10-07 09:02:15 t 1 1 113694 528 0.00 2019-10-07 09:03:22 2019-10-07 09:04:06 t 1 1 113696 445 0.00 2019-10-07 09:03:27 2019-10-07 09:04:27 t 1 1 113700 306 0.00 2019-10-07 08:56:43 2019-10-07 09:07:15 t 1 1 113705 528 0.00 2019-10-07 09:06:37 2019-10-07 09:12:15 t 1 1 113716 327 0.00 2019-10-07 08:52:10 2019-10-07 09:40:58 t 1 1 113719 220 0.00 2019-10-07 09:40:55 2019-10-07 09:44:24 t 1 2 113720 528 0.00 2019-10-07 09:41:40 2019-10-07 09:45:10 t 1 1 113725 501 0.00 2019-10-07 09:46:10 2019-10-07 09:48:18 t 1 1 113731 445 0.00 2019-10-07 09:53:12 2019-10-07 09:54:19 t 1 1 113736 501 0.00 2019-10-07 09:54:56 2019-10-07 10:00:40 t 1 1 113742 512 0.00 2019-10-07 10:13:08 2019-10-07 10:16:55 t 1 1 113749 445 0.00 2019-10-07 10:21:06 2019-10-07 10:22:46 t 1 1 113750 528 0.00 2019-10-07 10:16:51 2019-10-07 10:23:30 t 1 1 113753 501 0.00 2019-10-07 10:25:39 2019-10-07 10:25:40 t 1 1 113756 501 0.00 2019-10-07 10:28:34 2019-10-07 10:28:35 t 1 1 113759 501 0.00 2019-10-07 10:28:49 2019-10-07 10:29:33 t 1 1 113765 331 0.00 2019-10-07 10:33:11 2019-10-07 10:33:46 t 1 1 113766 501 0.00 2019-10-07 10:33:48 2019-10-07 10:34:47 t 1 1 113768 501 0.00 2019-10-07 10:35:11 2019-10-07 10:35:46 t 1 1 113770 501 0.00 2019-10-07 10:34:57 2019-10-07 10:36:06 t 1 1 113772 501 0.00 2019-10-07 10:36:21 2019-10-07 10:37:21 t 1 1 113773 501 0.00 2019-10-07 10:37:54 2019-10-07 10:38:25 t 1 1 113777 331 0.00 2019-10-07 10:36:29 2019-10-07 10:40:46 t 1 1 113780 501 0.00 2019-10-07 10:41:41 2019-10-07 10:43:12 t 1 1 113784 501 0.00 2019-10-07 10:49:59 2019-10-07 10:50:32 t 1 1 113788 501 0.00 2019-10-07 10:52:49 2019-10-07 10:53:26 t 1 1 113793 445 0.00 2019-10-07 10:40:54 2019-10-07 10:56:06 t 1 1 113794 528 0.00 2019-10-07 10:46:16 2019-10-07 10:56:34 t 1 1 113795 501 0.00 2019-10-07 10:56:29 2019-10-07 10:57:12 t 1 1 113796 481 0.00 2019-10-07 10:55:37 2019-10-07 10:57:23 t 1 1 113798 416 0.00 2019-10-07 10:56:32 2019-10-07 10:57:49 t 1 1 113800 331 0.00 2019-10-07 10:51:53 2019-10-07 11:01:20 t 1 1 113807 501 0.00 2019-10-07 11:10:26 2019-10-07 11:11:19 t 1 1 113810 522 0.00 2019-10-07 11:13:17 2019-10-07 11:13:19 t 1 1 113815 306 0.00 2019-10-07 10:58:30 2019-10-07 11:15:42 t 1 1 113819 512 0.00 2019-10-07 10:44:46 2019-10-07 11:17:31 t 1 1 113825 501 0.00 2019-10-07 11:25:56 2019-10-07 11:27:54 t 1 1 113829 331 0.00 2019-10-07 11:01:33 2019-10-07 11:36:20 t 1 1 113837 445 0.00 2019-10-07 11:45:42 2019-10-07 11:46:51 t 1 1 113840 461 0.00 2019-10-07 09:26:13 2019-10-07 11:49:24 t 1 2 113844 445 0.00 2019-10-07 11:53:48 2019-10-07 11:55:09 t 1 1 113845 542 0.00 2019-10-07 11:42:06 2019-10-07 11:56:23 t 1 1 113847 501 0.00 2019-10-07 11:42:43 2019-10-07 12:00:40 t 1 1 113854 445 0.00 2019-10-07 12:11:02 2019-10-07 12:12:41 t 1 1 113857 501 0.00 2019-10-07 12:13:26 2019-10-07 12:14:00 t 1 1 113858 501 0.00 2019-10-07 12:14:26 2019-10-07 12:17:39 t 1 1 113859 501 0.00 2019-10-07 12:18:42 2019-10-07 12:18:51 t 1 1 113860 445 0.00 2019-10-07 12:13:55 2019-10-07 12:19:03 t 1 1 113864 501 0.00 2019-10-07 12:21:22 2019-10-07 12:21:39 t 1 1 113867 445 0.00 2019-10-07 12:21:29 2019-10-07 12:25:32 t 1 1 113870 331 0.00 2019-10-07 11:37:22 2019-10-07 12:26:28 t 1 1 113872 501 0.00 2019-10-07 12:25:58 2019-10-07 12:28:06 t 1 1 113873 520 0.00 2019-10-07 12:26:28 2019-10-07 12:29:01 t 1 1 113876 416 0.00 2019-10-07 12:13:51 2019-10-07 12:31:13 t 1 1 113877 538 0.00 2019-10-07 10:31:07 2019-10-07 12:34:23 t 1 1 113879 430 0.00 2019-10-07 12:29:11 2019-10-07 12:37:39 t 1 1 113883 422 0.00 2019-10-07 10:49:54 2019-10-07 12:40:59 t 1 1 113886 430 0.00 2019-10-07 12:37:39 2019-10-07 12:42:09 t 1 1 113887 522 0.00 2019-10-07 12:43:33 2019-10-07 12:43:42 t 1 1 113890 522 0.00 2019-10-07 12:44:36 2019-10-07 12:46:30 t 1 1 113893 445 0.00 2019-10-07 12:42:57 2019-10-07 12:47:11 t 1 1 113895 327 0.00 2019-10-07 12:01:29 2019-10-07 12:49:23 t 1 1 113898 487 0.00 2019-10-07 08:43:37 2019-10-07 12:56:22 t 1 2 113899 512 0.00 2019-10-07 12:52:55 2019-10-07 12:57:04 t 1 1 113903 522 0.00 2019-10-07 12:54:00 2019-10-07 12:59:13 t 1 1 113913 522 0.00 2019-10-07 13:09:43 2019-10-07 13:09:52 t 1 1 113914 247 0.00 2019-10-07 13:08:19 2019-10-07 13:10:30 t 1 2 113918 522 0.00 2019-10-07 13:11:34 2019-10-07 13:12:10 t 1 1 113920 542 0.00 2019-10-07 13:11:03 2019-10-07 13:12:30 t 1 1 113923 522 0.00 2019-10-07 13:13:41 2019-10-07 13:13:46 t 1 1 113927 522 0.00 2019-10-07 13:15:08 2019-10-07 13:15:20 t 1 1 113930 306 0.00 2019-10-07 13:13:59 2019-10-07 13:15:23 t 1 1 113933 331 0.00 2019-10-07 13:03:11 2019-10-07 13:15:57 t 1 1 113940 501 0.00 2019-10-07 13:17:39 2019-10-07 13:18:39 t 1 1 113944 542 0.00 2019-10-07 13:18:25 2019-10-07 13:21:04 t 1 1 113950 501 0.00 2019-10-07 13:24:24 2019-10-07 13:25:18 t 1 1 113952 501 0.00 2019-10-07 13:25:17 2019-10-07 13:25:50 t 1 1 113955 445 0.00 2019-10-07 13:17:27 2019-10-07 13:27:03 t 1 1 113958 522 0.00 2019-10-07 13:28:03 2019-10-07 13:28:15 t 1 1 113960 327 0.00 2019-10-07 13:27:41 2019-10-07 13:28:42 t 1 1 113962 522 0.00 2019-10-07 13:29:01 2019-10-07 13:29:13 t 1 1 113963 522 0.00 2019-10-07 13:29:25 2019-10-07 13:29:26 t 1 1 113966 327 0.00 2019-10-07 13:29:12 2019-10-07 13:29:41 t 1 1 113969 490 0.00 2019-10-07 13:25:20 2019-10-07 13:30:51 t 1 1 113970 501 0.00 2019-10-07 13:31:20 2019-10-07 13:31:21 t 1 1 113973 416 0.00 2019-10-07 13:29:46 2019-10-07 13:32:37 t 1 1 113975 445 0.00 2019-10-07 13:30:35 2019-10-07 13:32:59 t 1 1 113976 501 0.00 2019-10-07 13:31:36 2019-10-07 13:33:07 t 1 1 113978 498 0.00 2019-10-07 12:56:46 2019-10-07 13:33:33 t 1 2 113979 501 0.00 2019-10-07 13:34:16 2019-10-07 13:34:17 t 1 1 113981 327 0.00 2019-10-07 13:33:04 2019-10-07 13:34:26 t 1 1 113985 445 0.00 2019-10-07 13:34:05 2019-10-07 13:35:57 t 1 1 113986 490 0.00 2019-10-07 13:31:37 2019-10-07 13:36:30 t 1 1 113988 528 0.00 2019-10-07 13:24:21 2019-10-07 13:36:39 t 1 1 113991 451 0.00 2019-10-07 13:27:37 2019-10-07 13:37:44 t 1 1 113995 538 0.00 2019-10-07 13:31:53 2019-10-07 13:38:53 t 1 1 113999 451 0.00 2019-10-07 13:37:44 2019-10-07 13:41:00 t 1 1 114000 501 0.00 2019-10-07 13:41:28 2019-10-07 13:41:38 t 1 1 114002 522 0.00 2019-10-07 13:41:56 2019-10-07 13:42:53 t 1 1 114003 470 0.00 2019-10-07 13:39:51 2019-10-07 13:43:16 t 1 1 114006 501 0.00 2019-10-07 13:43:35 2019-10-07 13:45:20 t 1 1 113728 331 0.00 2019-10-07 09:20:31 2019-10-07 09:52:57 t 1 1 113729 445 0.00 2019-10-07 09:45:25 2019-10-07 09:53:12 t 1 1 113732 379 0.00 2019-10-07 09:16:56 2019-10-07 09:55:22 t 1 1 113739 331 0.00 2019-10-07 09:58:19 2019-10-07 10:12:03 t 1 1 113743 501 0.00 2019-10-07 10:00:51 2019-10-07 10:18:30 t 1 1 113745 445 0.00 2019-10-07 10:19:16 2019-10-07 10:20:39 t 1 1 113747 331 0.00 2019-10-07 10:11:57 2019-10-07 10:21:38 t 1 1 113752 327 0.00 2019-10-07 10:03:12 2019-10-07 10:24:55 t 1 1 113755 501 0.00 2019-10-07 10:27:33 2019-10-07 10:28:06 t 1 1 113761 445 0.00 2019-10-07 10:31:12 2019-10-07 10:31:40 t 1 1 113763 516 0.00 2019-10-07 10:26:10 2019-10-07 10:32:36 t 1 1 113764 331 0.00 2019-10-07 10:23:48 2019-10-07 10:33:11 t 1 1 113775 445 0.00 2019-10-07 10:31:39 2019-10-07 10:40:00 t 1 1 113778 501 0.00 2019-10-07 10:40:57 2019-10-07 10:41:29 t 1 1 113779 512 0.00 2019-10-07 10:17:48 2019-10-07 10:42:01 t 1 1 113782 331 0.00 2019-10-07 10:44:35 2019-10-07 10:48:40 t 1 1 113787 501 0.00 2019-10-07 10:51:06 2019-10-07 10:52:49 t 1 1 113790 501 0.00 2019-10-07 10:55:14 2019-10-07 10:55:24 t 1 1 113797 501 0.00 2019-10-07 10:57:18 2019-10-07 10:57:25 t 1 1 113801 522 0.00 2019-10-07 11:05:17 2019-10-07 11:07:31 t 1 1 113805 501 0.00 2019-10-07 11:09:27 2019-10-07 11:09:57 t 1 1 113808 501 0.00 2019-10-07 11:10:07 2019-10-07 11:12:06 t 1 1 113809 522 0.00 2019-10-07 11:12:54 2019-10-07 11:13:06 t 1 1 113811 501 0.00 2019-10-07 11:12:04 2019-10-07 11:14:31 t 1 1 113813 522 0.00 2019-10-07 11:15:10 2019-10-07 11:15:10 f 1 1 113817 481 0.00 2019-10-07 10:57:23 2019-10-07 11:16:31 t 1 1 113818 542 0.00 2019-10-07 10:51:57 2019-10-07 11:17:12 t 1 1 113820 514 0.00 2019-10-07 11:11:55 2019-10-07 11:17:49 t 1 1 113821 445 0.00 2019-10-07 10:56:47 2019-10-07 11:19:36 t 1 1 113824 501 0.00 2019-10-07 11:16:09 2019-10-07 11:25:38 t 1 1 113826 501 0.00 2019-10-07 11:29:11 2019-10-07 11:29:21 t 1 1 113830 327 0.00 2019-10-07 11:08:16 2019-10-07 11:38:43 t 1 1 113832 416 0.00 2019-10-07 10:57:48 2019-10-07 11:41:28 t 1 1 113834 542 0.00 2019-10-07 11:17:12 2019-10-07 11:42:06 t 1 1 113836 445 0.00 2019-10-07 11:19:36 2019-10-07 11:44:14 t 1 1 113839 445 0.00 2019-10-07 11:48:15 2019-10-07 11:48:40 t 1 1 113842 445 0.00 2019-10-07 11:49:41 2019-10-07 11:51:26 t 1 1 113843 445 0.00 2019-10-07 11:51:26 2019-10-07 11:53:37 t 1 1 113852 501 0.00 2019-10-07 12:05:50 2019-10-07 12:12:23 t 1 1 113855 416 0.00 2019-10-07 12:11:44 2019-10-07 12:12:53 t 1 1 113865 501 0.00 2019-10-07 12:22:44 2019-10-07 12:22:58 t 1 1 113871 542 0.00 2019-10-07 11:56:23 2019-10-07 12:27:59 t 1 1 113874 430 0.00 2019-10-07 12:21:11 2019-10-07 12:29:11 t 1 1 113878 522 0.00 2019-10-07 12:30:27 2019-10-07 12:34:38 t 1 1 113880 501 0.00 2019-10-07 12:31:35 2019-10-07 12:38:53 t 1 1 113881 445 0.00 2019-10-07 12:25:45 2019-10-07 12:39:13 t 1 1 113885 522 0.00 2019-10-07 12:41:29 2019-10-07 12:41:31 t 1 1 113888 412 0.00 2019-10-07 00:00:17 2019-10-07 12:43:45 t 1 1 113891 430 0.00 2019-10-07 12:42:09 2019-10-07 12:46:30 t 1 1 113900 416 0.00 2019-10-07 12:31:18 2019-10-07 12:57:35 t 1 1 113901 456 0.00 2019-10-07 12:55:49 2019-10-07 12:58:00 t 1 1 113904 528 0.00 2019-10-07 12:59:10 2019-10-07 12:59:14 t 1 1 113906 331 0.00 2019-10-07 12:59:33 2019-10-07 13:00:35 t 1 1 113908 456 0.00 2019-10-07 12:59:01 2019-10-07 13:00:58 t 1 1 113909 430 0.00 2019-10-07 12:46:30 2019-10-07 13:01:20 t 1 1 113910 522 0.00 2019-10-07 13:00:17 2019-10-07 13:02:07 t 1 1 113912 430 0.00 2019-10-07 13:08:24 2019-10-07 13:09:42 t 1 1 113915 445 0.00 2019-10-07 12:48:20 2019-10-07 13:10:32 t 1 1 113922 522 0.00 2019-10-07 13:12:52 2019-10-07 13:13:34 t 1 1 113924 220 0.00 2019-10-07 13:12:42 2019-10-07 13:14:05 t 1 2 113926 522 0.00 2019-10-07 13:14:20 2019-10-07 13:14:25 t 1 1 113928 542 0.00 2019-10-07 13:12:44 2019-10-07 13:15:21 t 1 1 113932 445 0.00 2019-10-07 13:12:23 2019-10-07 13:15:56 t 1 1 113935 416 0.00 2019-10-07 13:03:21 2019-10-07 13:16:55 t 1 1 113936 501 0.00 2019-10-07 13:16:42 2019-10-07 13:17:10 t 1 1 113938 528 0.00 2019-10-07 13:15:54 2019-10-07 13:17:28 t 1 1 113941 528 0.00 2019-10-07 13:17:35 2019-10-07 13:18:51 t 1 1 113942 501 0.00 2019-10-07 13:18:59 2019-10-07 13:19:12 t 1 1 113946 306 0.00 2019-10-07 13:18:34 2019-10-07 13:22:12 t 1 1 113947 501 0.00 2019-10-07 13:22:18 2019-10-07 13:22:43 t 1 1 113948 542 0.00 2019-10-07 13:21:04 2019-10-07 13:23:44 t 1 1 113954 501 0.00 2019-10-07 13:26:18 2019-10-07 13:26:26 t 1 1 113957 501 0.00 2019-10-07 13:27:19 2019-10-07 13:28:06 t 1 1 113959 501 0.00 2019-10-07 13:28:12 2019-10-07 13:28:20 t 1 1 113961 522 0.00 2019-10-07 13:28:42 2019-10-07 13:28:42 t 1 1 113964 501 0.00 2019-10-07 13:29:19 2019-10-07 13:29:28 t 1 1 113967 501 0.00 2019-10-07 13:30:27 2019-10-07 13:30:38 t 1 1 113974 327 0.00 2019-10-07 13:29:50 2019-10-07 13:32:55 t 1 1 113982 522 0.00 2019-10-07 13:33:43 2019-10-07 13:34:53 t 1 1 113983 501 0.00 2019-10-07 13:34:31 2019-10-07 13:35:32 t 1 1 113989 522 0.00 2019-10-07 13:36:33 2019-10-07 13:36:42 t 1 1 113990 522 0.00 2019-10-07 13:37:30 2019-10-07 13:37:31 t 1 1 113993 522 0.00 2019-10-07 13:38:21 2019-10-07 13:38:24 t 1 1 113996 445 0.00 2019-10-07 13:37:40 2019-10-07 13:38:54 t 1 1 113998 470 0.00 2019-10-07 13:28:56 2019-10-07 13:39:54 t 1 1 114001 522 0.00 2019-10-07 13:41:35 2019-10-07 13:41:39 t 1 1 114004 528 0.00 2019-10-07 13:42:53 2019-10-07 13:43:20 t 1 1 114005 445 0.00 2019-10-07 13:40:25 2019-10-07 13:45:03 t 1 1 114008 501 0.00 2019-10-07 13:45:28 2019-10-07 13:45:29 t 1 1 114009 430 0.00 2019-10-07 13:42:02 2019-10-07 13:45:52 t 1 1 114014 501 0.00 2019-10-07 13:48:25 2019-10-07 13:49:07 t 1 1 114019 522 0.00 2019-10-07 13:52:28 2019-10-07 13:52:35 t 1 1 114028 538 0.00 2019-10-07 13:55:47 2019-10-07 13:56:42 t 1 1 114029 501 0.00 2019-10-07 13:55:20 2019-10-07 13:57:25 t 1 1 114033 325 0.00 2019-10-07 13:34:17 2019-10-07 13:59:23 t 1 2 114036 501 0.00 2019-10-07 14:00:30 2019-10-07 14:00:41 t 1 1 114039 501 0.00 2019-10-07 14:01:35 2019-10-07 14:01:44 t 1 1 114050 501 0.00 2019-10-07 14:08:45 2019-10-07 14:09:31 t 1 1 114053 445 0.00 2019-10-07 13:59:48 2019-10-07 14:12:24 t 1 1 114057 501 0.00 2019-10-07 14:12:52 2019-10-07 14:14:18 t 1 1 114059 501 0.00 2019-10-07 14:15:38 2019-10-07 14:15:39 t 1 1 114061 445 0.00 2019-10-07 14:12:24 2019-10-07 14:16:42 t 1 1 114068 538 0.00 2019-10-07 14:20:49 2019-10-07 14:22:07 t 1 1 114069 327 0.00 2019-10-07 14:06:57 2019-10-07 14:23:58 t 1 1 114070 481 0.00 2019-10-07 14:13:25 2019-10-07 14:24:36 t 1 1 114073 451 0.00 2019-10-07 14:13:57 2019-10-07 14:26:38 t 1 1 114074 445 0.00 2019-10-07 14:16:42 2019-10-07 14:27:41 t 1 1 113884 445 0.00 2019-10-07 12:39:12 2019-10-07 12:41:05 t 1 1 113889 501 0.00 2019-10-07 12:42:47 2019-10-07 12:46:12 t 1 1 113892 516 0.00 2019-10-07 12:33:58 2019-10-07 12:47:07 t 1 1 113894 306 0.00 2019-10-07 12:28:40 2019-10-07 12:49:16 t 1 1 113896 501 0.00 2019-10-07 12:46:54 2019-10-07 12:49:25 t 1 1 113897 522 0.00 2019-10-07 12:49:08 2019-10-07 12:53:32 t 1 1 113902 528 0.00 2019-10-07 12:51:04 2019-10-07 12:58:04 t 1 1 113905 331 0.00 2019-10-07 12:31:20 2019-10-07 12:59:25 t 1 1 113907 416 0.00 2019-10-07 12:57:42 2019-10-07 13:00:56 t 1 1 113911 416 0.00 2019-10-07 13:01:01 2019-10-07 13:02:41 t 1 1 113916 542 0.00 2019-10-07 12:27:59 2019-10-07 13:10:49 t 1 1 113917 501 0.00 2019-10-07 12:51:05 2019-10-07 13:11:06 t 1 1 113919 445 0.00 2019-10-07 13:11:22 2019-10-07 13:12:23 t 1 1 113921 522 0.00 2019-10-07 13:12:35 2019-10-07 13:12:41 t 1 1 113925 522 0.00 2019-10-07 13:14:02 2019-10-07 13:14:10 t 1 1 113929 528 0.00 2019-10-07 13:01:38 2019-10-07 13:15:22 t 1 1 113931 522 0.00 2019-10-07 13:15:20 2019-10-07 13:15:32 t 1 1 113934 542 0.00 2019-10-07 13:15:27 2019-10-07 13:16:42 t 1 1 113937 331 0.00 2019-10-07 13:15:57 2019-10-07 13:17:15 t 1 1 113939 522 0.00 2019-10-07 13:18:36 2019-10-07 13:18:36 t 1 1 113943 501 0.00 2019-10-07 13:20:28 2019-10-07 13:20:36 t 1 1 113945 501 0.00 2019-10-07 13:21:00 2019-10-07 13:21:31 t 1 1 113949 522 0.00 2019-10-07 13:23:39 2019-10-07 13:24:51 t 1 1 113951 451 0.00 2019-10-07 13:07:10 2019-10-07 13:25:37 t 1 1 113953 508 0.00 2019-10-07 13:01:09 2019-10-07 13:26:14 t 1 2 113956 327 0.00 2019-10-07 12:49:23 2019-10-07 13:27:32 t 1 1 113965 416 0.00 2019-10-07 13:17:00 2019-10-07 13:29:41 t 1 1 113968 538 0.00 2019-10-07 12:34:23 2019-10-07 13:30:48 t 1 1 113971 501 0.00 2019-10-07 13:31:28 2019-10-07 13:31:29 t 1 1 113972 522 0.00 2019-10-07 13:31:30 2019-10-07 13:32:07 t 1 1 113977 501 0.00 2019-10-07 13:33:21 2019-10-07 13:33:32 t 1 1 113980 501 0.00 2019-10-07 13:34:24 2019-10-07 13:34:25 t 1 1 113984 501 0.00 2019-10-07 13:34:44 2019-10-07 13:35:45 t 1 1 113987 501 0.00 2019-10-07 13:36:25 2019-10-07 13:36:34 t 1 1 113992 422 0.00 2019-10-07 12:40:59 2019-10-07 13:37:53 t 1 1 113994 501 0.00 2019-10-07 13:37:59 2019-10-07 13:38:27 t 1 1 113997 522 0.00 2019-10-07 13:39:11 2019-10-07 13:39:30 t 1 1 114007 522 0.00 2019-10-07 13:43:27 2019-10-07 13:45:25 t 1 1 114011 416 0.00 2019-10-07 13:33:04 2019-10-07 13:48:37 t 1 1 114013 445 0.00 2019-10-07 13:45:19 2019-10-07 13:48:42 t 1 1 114017 306 0.00 2019-10-07 13:45:30 2019-10-07 13:50:55 t 1 1 114022 522 0.00 2019-10-07 13:53:53 2019-10-07 13:54:11 t 1 1 114023 522 0.00 2019-10-07 13:54:22 2019-10-07 13:54:45 t 1 1 114026 538 0.00 2019-10-07 13:55:00 2019-10-07 13:55:47 t 1 1 114030 508 0.00 2019-10-07 13:42:44 2019-10-07 13:57:49 t 1 2 114035 501 0.00 2019-10-07 13:59:27 2019-10-07 14:00:00 t 1 1 114038 501 0.00 2019-10-07 14:01:27 2019-10-07 14:01:28 t 1 1 114042 331 0.00 2019-10-07 13:21:17 2019-10-07 14:04:12 t 1 1 114043 501 0.00 2019-10-07 14:02:36 2019-10-07 14:05:07 t 1 1 114045 327 0.00 2019-10-07 13:34:35 2019-10-07 14:06:57 t 1 1 114046 501 0.00 2019-10-07 14:07:29 2019-10-07 14:07:30 t 1 1 114048 516 0.00 2019-10-07 14:06:29 2019-10-07 14:09:13 t 1 1 114054 501 0.00 2019-10-07 14:12:05 2019-10-07 14:12:41 t 1 1 114055 481 0.00 2019-10-07 13:59:09 2019-10-07 14:13:16 t 1 1 114056 451 0.00 2019-10-07 14:09:12 2019-10-07 14:13:57 t 1 1 114063 501 0.00 2019-10-07 14:16:31 2019-10-07 14:18:37 t 1 1 114067 501 0.00 2019-10-07 14:20:14 2019-10-07 14:21:41 t 1 1 114071 327 0.00 2019-10-07 14:24:07 2019-10-07 14:26:07 t 1 1 114075 522 0.00 2019-10-07 14:19:43 2019-10-07 14:28:00 t 1 1 114076 327 0.00 2019-10-07 14:27:32 2019-10-07 14:30:16 t 1 1 114080 481 0.00 2019-10-07 14:24:34 2019-10-07 14:33:21 t 1 1 114083 520 0.00 2019-10-07 14:30:01 2019-10-07 14:37:11 t 1 1 114087 522 0.00 2019-10-07 14:32:55 2019-10-07 14:43:00 t 1 1 114091 520 0.00 2019-10-07 14:37:11 2019-10-07 14:45:46 t 1 1 114108 456 0.00 2019-10-07 14:55:46 2019-10-07 14:58:59 t 1 1 114113 522 0.00 2019-10-07 15:05:58 2019-10-07 15:06:00 t 1 1 114115 481 0.00 2019-10-07 15:03:08 2019-10-07 15:06:39 t 1 1 114122 327 0.00 2019-10-07 15:10:17 2019-10-07 15:13:26 t 1 1 114124 451 0.00 2019-10-07 15:13:17 2019-10-07 15:15:14 t 1 1 114125 522 0.00 2019-10-07 15:14:22 2019-10-07 15:22:34 t 1 1 114127 522 0.00 2019-10-07 15:25:05 2019-10-07 15:25:36 t 1 1 114129 445 0.00 2019-10-07 15:12:27 2019-10-07 15:29:52 t 1 1 114140 422 0.00 2019-10-07 15:44:12 2019-10-07 15:48:26 t 1 1 114143 416 0.00 2019-10-07 13:48:40 2019-10-07 15:54:20 t 1 1 114146 451 0.00 2019-10-07 15:47:05 2019-10-07 15:56:21 t 1 1 114147 445 0.00 2019-10-07 15:55:00 2019-10-07 15:58:08 t 1 1 114148 528 0.00 2019-10-07 15:41:46 2019-10-07 16:00:06 t 1 1 114150 331 0.00 2019-10-07 14:15:50 2019-10-07 16:07:34 t 1 1 114155 501 0.00 2019-10-07 16:24:39 2019-10-07 16:25:50 t 1 1 114159 501 0.00 2019-10-07 16:27:35 2019-10-07 16:29:10 t 1 1 114163 461 0.00 2019-10-07 15:33:29 2019-10-07 16:30:28 t 1 2 114171 501 0.00 2019-10-07 16:34:14 2019-10-07 16:34:15 t 1 1 114173 422 0.00 2019-10-07 16:25:01 2019-10-07 16:39:01 t 1 1 114174 501 0.00 2019-10-07 16:39:06 2019-10-07 16:39:07 t 1 1 114179 375 0.00 2019-10-07 16:29:34 2019-10-07 16:42:16 t 1 1 114181 501 0.00 2019-10-07 16:41:34 2019-10-07 16:43:47 t 1 1 114186 512 0.00 2019-10-07 16:50:03 2019-10-07 16:51:05 t 1 1 114193 468 0.00 2019-10-07 16:47:03 2019-10-07 16:58:45 t 1 1 114195 422 0.00 2019-10-07 16:54:03 2019-10-07 17:04:52 t 1 1 114201 306 0.00 2019-10-07 17:02:57 2019-10-07 17:12:18 t 1 1 114203 522 0.00 2019-10-07 17:13:02 2019-10-07 17:13:19 t 1 1 114204 522 0.00 2019-10-07 17:14:20 2019-10-07 17:14:22 t 1 1 114208 522 0.00 2019-10-07 17:16:34 2019-10-07 17:16:42 t 1 1 114214 538 0.00 2019-10-07 16:48:45 2019-10-07 17:22:46 t 1 1 114215 375 0.00 2019-10-07 17:10:57 2019-10-07 17:23:06 t 1 1 114216 375 0.00 2019-10-07 17:23:05 2019-10-07 17:24:37 t 1 1 114222 501 0.00 2019-10-07 17:26:19 2019-10-07 17:28:21 t 1 1 114226 468 0.00 2019-10-07 17:25:41 2019-10-07 17:30:06 t 1 1 114227 501 0.00 2019-10-07 17:32:25 2019-10-07 17:32:36 t 1 1 114230 501 0.00 2019-10-07 17:32:58 2019-10-07 17:33:44 t 1 1 114232 522 0.00 2019-10-07 17:33:52 2019-10-07 17:34:01 t 1 1 114239 501 0.00 2019-10-07 17:38:32 2019-10-07 17:38:33 t 1 1 114245 501 0.00 2019-10-07 17:40:33 2019-10-07 17:40:46 t 1 1 114246 501 0.00 2019-10-07 17:41:33 2019-10-07 17:41:34 t 1 1 114248 516 0.00 2019-10-07 17:39:31 2019-10-07 17:46:00 t 1 1 114250 522 0.00 2019-10-07 17:51:52 2019-10-07 17:52:01 t 1 1 114251 481 0.00 2019-10-07 17:40:39 2019-10-07 17:54:49 t 1 1 114010 522 0.00 2019-10-07 13:45:25 2019-10-07 13:46:40 t 1 1 114012 522 0.00 2019-10-07 13:48:17 2019-10-07 13:48:40 t 1 1 114015 501 0.00 2019-10-07 13:49:38 2019-10-07 13:50:10 t 1 1 114016 528 0.00 2019-10-07 13:45:35 2019-10-07 13:50:27 t 1 1 114018 522 0.00 2019-10-07 13:50:47 2019-10-07 13:50:57 t 1 1 114020 522 0.00 2019-10-07 13:52:40 2019-10-07 13:52:45 t 1 1 114021 501 0.00 2019-10-07 13:50:19 2019-10-07 13:53:57 t 1 1 114024 501 0.00 2019-10-07 13:54:40 2019-10-07 13:54:48 t 1 1 114025 538 0.00 2019-10-07 13:39:15 2019-10-07 13:54:58 t 1 1 114027 445 0.00 2019-10-07 13:49:21 2019-10-07 13:55:48 t 1 1 114031 501 0.00 2019-10-07 13:58:26 2019-10-07 13:58:35 t 1 1 114032 481 0.00 2019-10-07 11:39:17 2019-10-07 13:59:09 t 1 1 114034 445 0.00 2019-10-07 13:56:21 2019-10-07 13:59:47 t 1 1 114037 296 0.00 2019-10-07 13:59:56 2019-10-07 14:01:19 t 1 2 114040 451 0.00 2019-10-07 13:50:22 2019-10-07 14:02:10 t 1 1 114041 501 0.00 2019-10-07 14:02:28 2019-10-07 14:02:29 t 1 1 114044 501 0.00 2019-10-07 14:06:29 2019-10-07 14:06:37 t 1 1 114047 451 0.00 2019-10-07 14:02:10 2019-10-07 14:09:12 t 1 1 114049 331 0.00 2019-10-07 14:04:12 2019-10-07 14:09:28 t 1 1 114051 501 0.00 2019-10-07 14:10:15 2019-10-07 14:10:55 t 1 1 114052 501 0.00 2019-10-07 14:11:32 2019-10-07 14:11:33 t 1 1 114058 501 0.00 2019-10-07 14:14:24 2019-10-07 14:14:35 t 1 1 114060 331 0.00 2019-10-07 14:09:39 2019-10-07 14:15:50 t 1 1 114062 490 0.00 2019-10-07 13:57:50 2019-10-07 14:17:06 t 1 1 114064 522 0.00 2019-10-07 13:57:18 2019-10-07 14:18:54 t 1 1 114065 501 0.00 2019-10-07 14:19:45 2019-10-07 14:19:59 t 1 1 114066 538 0.00 2019-10-07 13:56:41 2019-10-07 14:20:54 t 1 1 114072 327 0.00 2019-10-07 14:25:40 2019-10-07 14:26:21 t 1 1 114077 522 0.00 2019-10-07 14:28:05 2019-10-07 14:30:39 t 1 1 114078 522 0.00 2019-10-07 14:31:19 2019-10-07 14:31:42 t 1 1 114082 481 0.00 2019-10-07 14:35:00 2019-10-07 14:36:08 t 1 1 114084 327 0.00 2019-10-07 14:36:52 2019-10-07 14:37:40 t 1 1 114085 451 0.00 2019-10-07 14:27:53 2019-10-07 14:39:20 t 1 1 114088 516 0.00 2019-10-07 14:24:53 2019-10-07 14:43:13 t 1 1 114089 522 0.00 2019-10-07 14:43:42 2019-10-07 14:44:22 t 1 1 114090 247 0.00 2019-10-07 14:41:48 2019-10-07 14:45:43 t 1 2 114092 522 0.00 2019-10-07 14:45:43 2019-10-07 14:45:53 t 1 1 114093 522 0.00 2019-10-07 14:46:02 2019-10-07 14:46:43 t 1 1 114094 327 0.00 2019-10-07 14:47:27 2019-10-07 14:49:55 t 1 1 114095 485 0.00 2019-10-07 14:49:24 2019-10-07 14:50:26 t 1 1 114098 522 0.00 2019-10-07 14:50:42 2019-10-07 14:50:51 t 1 1 114099 522 0.00 2019-10-07 14:51:09 2019-10-07 14:51:40 t 1 1 114101 522 0.00 2019-10-07 14:52:07 2019-10-07 14:52:50 t 1 1 114102 445 0.00 2019-10-07 14:52:03 2019-10-07 14:53:04 t 1 1 114103 445 0.00 2019-10-07 14:52:59 2019-10-07 14:53:36 t 1 1 114104 522 0.00 2019-10-07 14:54:44 2019-10-07 14:54:54 t 1 1 114107 526 0.00 2019-10-07 14:55:52 2019-10-07 14:58:53 t 1 1 114112 522 0.00 2019-10-07 14:55:55 2019-10-07 15:04:47 t 1 1 114114 451 0.00 2019-10-07 14:53:17 2019-10-07 15:06:23 t 1 1 114116 445 0.00 2019-10-07 15:04:11 2019-10-07 15:08:32 t 1 1 114117 522 0.00 2019-10-07 15:07:16 2019-10-07 15:09:07 t 1 1 114119 522 0.00 2019-10-07 15:09:31 2019-10-07 15:09:32 t 1 1 114120 445 0.00 2019-10-07 15:10:21 2019-10-07 15:12:28 t 1 1 114121 451 0.00 2019-10-07 15:06:23 2019-10-07 15:13:17 t 1 1 114126 522 0.00 2019-10-07 15:23:27 2019-10-07 15:23:38 t 1 1 114130 327 0.00 2019-10-07 15:26:56 2019-10-07 15:31:05 t 1 1 114132 516 0.00 2019-10-07 14:56:36 2019-10-07 15:34:35 t 1 1 114133 422 0.00 2019-10-07 13:37:53 2019-10-07 15:35:21 t 1 1 114134 445 0.00 2019-10-07 15:29:52 2019-10-07 15:36:55 t 1 1 114135 422 0.00 2019-10-07 15:35:21 2019-10-07 15:40:37 t 1 1 114136 422 0.00 2019-10-07 15:40:37 2019-10-07 15:44:12 t 1 1 114139 503 0.00 2019-10-07 15:38:49 2019-10-07 15:47:24 t 1 1 114144 445 0.00 2019-10-07 15:37:01 2019-10-07 15:55:00 t 1 1 114145 422 0.00 2019-10-07 15:52:27 2019-10-07 15:56:18 t 1 1 114151 445 0.00 2019-10-07 15:59:09 2019-10-07 16:12:01 t 1 1 114152 445 0.00 2019-10-07 16:13:18 2019-10-07 16:15:42 t 1 1 114153 485 0.00 2019-10-07 16:22:27 2019-10-07 16:23:45 t 1 1 114154 422 0.00 2019-10-07 15:56:18 2019-10-07 16:25:01 t 1 1 114156 501 0.00 2019-10-07 16:26:51 2019-10-07 16:27:00 t 1 1 114157 327 0.00 2019-10-07 15:40:53 2019-10-07 16:28:09 t 1 1 114161 501 0.00 2019-10-07 16:30:00 2019-10-07 16:30:08 t 1 1 114164 501 0.00 2019-10-07 16:31:06 2019-10-07 16:31:20 t 1 1 114166 445 0.00 2019-10-07 16:15:56 2019-10-07 16:31:55 t 1 1 114167 501 0.00 2019-10-07 16:32:00 2019-10-07 16:32:33 t 1 1 114170 501 0.00 2019-10-07 16:34:07 2019-10-07 16:34:08 t 1 1 114172 501 0.00 2019-10-07 16:37:50 2019-10-07 16:38:15 t 1 1 114176 501 0.00 2019-10-07 16:39:23 2019-10-07 16:39:24 t 1 1 114177 501 0.00 2019-10-07 16:40:55 2019-10-07 16:41:26 t 1 1 114178 501 0.00 2019-10-07 16:39:30 2019-10-07 16:42:07 t 1 1 114180 468 0.00 2019-10-07 16:29:18 2019-10-07 16:42:26 t 1 1 114182 528 0.00 2019-10-07 16:28:54 2019-10-07 16:48:37 t 1 1 114183 445 0.00 2019-10-07 16:31:55 2019-10-07 16:48:56 t 1 1 114184 327 0.00 2019-10-07 16:28:09 2019-10-07 16:49:23 t 1 1 114185 512 0.00 2019-10-07 16:30:37 2019-10-07 16:50:00 t 1 1 114187 485 0.00 2019-10-07 16:43:50 2019-10-07 16:51:28 t 1 1 114189 445 0.00 2019-10-07 16:49:20 2019-10-07 16:53:11 t 1 1 114190 422 0.00 2019-10-07 16:39:01 2019-10-07 16:54:03 t 1 1 114192 485 0.00 2019-10-07 16:51:28 2019-10-07 16:58:22 t 1 1 114194 485 0.00 2019-10-07 16:58:22 2019-10-07 17:04:52 t 1 1 114197 461 0.00 2019-10-07 16:57:31 2019-10-07 17:07:36 t 1 2 114198 528 0.00 2019-10-07 16:48:37 2019-10-07 17:10:54 t 1 1 114199 375 0.00 2019-10-07 16:52:47 2019-10-07 17:10:57 t 1 1 114212 501 0.00 2019-10-07 17:22:39 2019-10-07 17:22:40 t 1 1 114217 512 0.00 2019-10-07 16:51:05 2019-10-07 17:25:34 t 1 1 114219 220 0.00 2019-10-07 17:21:34 2019-10-07 17:27:23 t 1 1 114221 422 0.00 2019-10-07 17:20:03 2019-10-07 17:28:18 t 1 1 114228 445 0.00 2019-10-07 16:53:29 2019-10-07 17:32:43 t 1 1 114231 422 0.00 2019-10-07 17:28:18 2019-10-07 17:33:51 t 1 1 114233 331 0.00 2019-10-07 16:07:34 2019-10-07 17:34:20 t 1 1 114235 501 0.00 2019-10-07 17:34:59 2019-10-07 17:35:35 t 1 1 114238 445 0.00 2019-10-07 17:33:18 2019-10-07 17:38:07 t 1 1 114240 468 0.00 2019-10-07 17:30:06 2019-10-07 17:39:31 t 1 1 114241 501 0.00 2019-10-07 17:39:33 2019-10-07 17:39:34 t 1 1 114243 331 0.00 2019-10-07 17:35:01 2019-10-07 17:40:40 t 1 1 114247 522 0.00 2019-10-07 17:43:30 2019-10-07 17:43:38 t 1 1 114259 522 0.00 2019-10-07 18:06:11 2019-10-07 18:06:18 t 1 1 114260 416 0.00 2019-10-07 17:19:47 2019-10-07 18:07:19 t 1 1 114079 538 0.00 2019-10-07 14:26:01 2019-10-07 14:33:19 t 1 1 114081 220 0.00 2019-10-07 13:22:40 2019-10-07 14:35:03 t 1 2 114086 474 0.00 2019-10-07 13:55:22 2019-10-07 14:41:23 t 1 1 114096 481 0.00 2019-10-07 14:36:56 2019-10-07 14:50:36 t 1 1 114097 445 0.00 2019-10-07 14:27:42 2019-10-07 14:50:41 t 1 1 114100 445 0.00 2019-10-07 14:50:41 2019-10-07 14:51:43 t 1 1 114105 445 0.00 2019-10-07 14:53:36 2019-10-07 14:55:31 t 1 1 114106 526 0.00 2019-10-07 14:51:50 2019-10-07 14:55:52 t 1 1 114109 327 0.00 2019-10-07 14:59:44 2019-10-07 15:01:01 t 1 1 114110 481 0.00 2019-10-07 14:50:36 2019-10-07 15:03:08 t 1 1 114111 445 0.00 2019-10-07 14:55:32 2019-10-07 15:04:03 t 1 1 114118 522 0.00 2019-10-07 15:09:02 2019-10-07 15:09:25 t 1 1 114123 445 0.00 2019-10-07 15:12:31 2019-10-07 15:15:07 t 1 1 114128 499 0.00 2019-10-07 15:23:38 2019-10-07 15:28:16 t 1 1 114131 306 0.00 2019-10-07 14:55:13 2019-10-07 15:31:29 t 1 1 114137 290 0.00 2019-10-07 15:44:00 2019-10-07 15:44:57 t 1 2 114138 451 0.00 2019-10-07 15:37:51 2019-10-07 15:47:05 t 1 1 114141 522 0.00 2019-10-07 15:28:34 2019-10-07 15:50:26 t 1 1 114142 422 0.00 2019-10-07 15:48:26 2019-10-07 15:52:27 t 1 1 114149 306 0.00 2019-10-07 16:00:27 2019-10-07 16:03:37 t 1 1 114158 538 0.00 2019-10-07 14:55:54 2019-10-07 16:29:00 t 1 1 114160 512 0.00 2019-10-07 15:59:28 2019-10-07 16:30:00 t 1 1 114162 361 0.00 2019-10-07 15:11:39 2019-10-07 16:30:20 t 1 2 114165 516 0.00 2019-10-07 16:24:32 2019-10-07 16:31:48 t 1 1 114168 501 0.00 2019-10-07 16:33:01 2019-10-07 16:33:41 t 1 1 114169 501 0.00 2019-10-07 16:33:46 2019-10-07 16:34:00 t 1 1 114175 501 0.00 2019-10-07 16:39:15 2019-10-07 16:39:16 t 1 1 114188 375 0.00 2019-10-07 16:42:16 2019-10-07 16:52:47 t 1 1 114191 516 0.00 2019-10-07 16:45:10 2019-10-07 16:55:03 t 1 1 114196 485 0.00 2019-10-07 17:04:52 2019-10-07 17:06:49 t 1 1 114200 522 0.00 2019-10-07 17:09:23 2019-10-07 17:12:17 t 1 1 114202 422 0.00 2019-10-07 17:04:52 2019-10-07 17:12:48 t 1 1 114205 522 0.00 2019-10-07 17:14:29 2019-10-07 17:14:51 t 1 1 114206 325 0.00 2019-10-07 16:33:02 2019-10-07 17:15:22 t 1 2 114207 528 0.00 2019-10-07 17:10:54 2019-10-07 17:16:42 t 1 1 114209 416 0.00 2019-10-07 15:55:33 2019-10-07 17:19:48 t 1 1 114210 422 0.00 2019-10-07 17:12:48 2019-10-07 17:20:03 t 1 1 114211 501 0.00 2019-10-07 17:21:38 2019-10-07 17:22:12 t 1 1 114213 518 0.00 2019-10-07 17:12:39 2019-10-07 17:22:45 t 1 2 114218 468 0.00 2019-10-07 16:58:45 2019-10-07 17:25:41 t 1 1 114220 522 0.00 2019-10-07 17:27:03 2019-10-07 17:27:24 t 1 1 114223 522 0.00 2019-10-07 17:28:28 2019-10-07 17:28:38 t 1 1 114224 522 0.00 2019-10-07 17:29:05 2019-10-07 17:29:55 t 1 1 114225 538 0.00 2019-10-07 17:23:34 2019-10-07 17:29:59 t 1 1 114229 522 0.00 2019-10-07 17:30:40 2019-10-07 17:32:50 t 1 1 114234 501 0.00 2019-10-07 17:33:51 2019-10-07 17:34:52 t 1 1 114236 501 0.00 2019-10-07 17:36:32 2019-10-07 17:36:41 t 1 1 114237 501 0.00 2019-10-07 17:37:32 2019-10-07 17:37:33 t 1 1 114242 481 0.00 2019-10-07 16:50:10 2019-10-07 17:40:39 t 1 1 114244 306 0.00 2019-10-07 17:36:13 2019-10-07 17:40:46 t 1 1 114249 522 0.00 2019-10-07 17:46:44 2019-10-07 17:46:49 t 1 1 114256 522 0.00 2019-10-07 18:01:03 2019-10-07 18:04:15 t 1 1 114257 501 0.00 2019-10-07 17:42:46 2019-10-07 18:05:09 t 1 1 114264 522 0.00 2019-10-07 18:10:29 2019-10-07 18:15:29 t 1 1 114266 501 0.00 2019-10-07 18:16:10 2019-10-07 18:17:17 t 1 1 114275 512 0.00 2019-10-07 17:42:33 2019-10-07 18:24:19 t 1 1 114277 331 0.00 2019-10-07 17:43:37 2019-10-07 18:28:47 t 1 1 114279 375 0.00 2019-10-07 18:26:36 2019-10-07 18:30:58 t 1 1 114281 445 0.00 2019-10-07 18:31:37 2019-10-07 18:33:09 t 1 1 114284 520 0.00 2019-10-07 18:31:06 2019-10-07 18:35:27 t 1 1 114291 375 0.00 2019-10-07 18:30:58 2019-10-07 18:40:57 t 1 1 114293 306 0.00 2019-10-07 18:32:51 2019-10-07 18:42:13 t 1 1 114294 520 0.00 2019-10-07 18:40:18 2019-10-07 18:42:32 t 1 1 114297 375 0.00 2019-10-07 18:41:30 2019-10-07 18:45:12 t 1 1 114303 522 0.00 2019-10-07 18:42:10 2019-10-07 18:52:33 t 1 1 114306 501 0.00 2019-10-07 18:53:20 2019-10-07 18:54:14 t 1 1 114310 470 0.00 2019-10-07 18:54:33 2019-10-07 18:57:19 t 1 1 114312 501 0.00 2019-10-07 18:57:48 2019-10-07 18:58:22 t 1 1 114315 306 0.00 2019-10-07 18:42:13 2019-10-07 19:00:18 t 1 1 114325 501 0.00 2019-10-07 19:06:51 2019-10-07 19:06:52 t 1 1 114327 468 0.00 2019-10-07 18:56:10 2019-10-07 19:07:05 t 1 1 114338 522 0.00 2019-10-07 19:14:20 2019-10-07 19:14:27 t 1 1 114340 501 0.00 2019-10-07 19:15:04 2019-10-07 19:15:36 t 1 1 114341 501 0.00 2019-10-07 19:16:05 2019-10-07 19:16:38 t 1 1 114344 501 0.00 2019-10-07 19:21:38 2019-10-07 19:22:03 t 1 1 114346 412 0.00 2019-10-07 12:43:45 2019-10-07 19:22:56 t 1 1 114348 361 0.00 2019-10-07 17:11:44 2019-10-07 19:23:25 t 1 2 114350 522 0.00 2019-10-07 19:19:49 2019-10-07 19:25:07 t 1 1 114352 501 0.00 2019-10-07 19:26:10 2019-10-07 19:26:43 t 1 1 114362 481 0.00 2019-10-07 19:27:20 2019-10-07 19:32:11 t 1 1 114365 501 0.00 2019-10-07 19:33:28 2019-10-07 19:33:38 t 1 1 114366 501 0.00 2019-10-07 19:34:12 2019-10-07 19:34:13 t 1 1 114368 501 0.00 2019-10-07 19:35:15 2019-10-07 19:35:38 t 1 1 114369 501 0.00 2019-10-07 19:35:55 2019-10-07 19:35:55 f 1 1 114372 501 0.00 2019-10-07 19:34:20 2019-10-07 19:37:07 t 1 1 114376 412 0.00 2019-10-07 19:38:16 2019-10-07 19:39:32 t 1 1 114377 327 0.00 2019-10-07 19:38:02 2019-10-07 19:42:27 t 1 1 114379 490 0.00 2019-10-07 19:16:56 2019-10-07 19:44:24 t 1 1 114380 445 0.00 2019-10-07 19:39:03 2019-10-07 19:44:27 t 1 1 114382 520 0.00 2019-10-07 19:44:10 2019-10-07 19:45:44 t 1 1 114384 520 0.00 2019-10-07 19:45:44 2019-10-07 19:46:46 t 1 1 114386 468 0.00 2019-10-07 19:19:34 2019-10-07 19:47:28 t 1 1 114388 522 0.00 2019-10-07 19:48:32 2019-10-07 19:48:41 t 1 1 114397 520 0.00 2019-10-07 19:51:33 2019-10-07 19:52:30 t 1 1 114399 520 0.00 2019-10-07 19:52:29 2019-10-07 19:55:41 t 1 1 114402 445 0.00 2019-10-07 19:51:44 2019-10-07 19:59:13 t 1 1 114403 247 0.00 2019-10-07 20:00:25 2019-10-07 20:01:45 t 1 2 114409 445 0.00 2019-10-07 19:59:13 2019-10-07 20:05:53 t 1 1 114411 522 0.00 2019-10-07 20:06:15 2019-10-07 20:06:28 t 1 1 114415 522 0.00 2019-10-07 20:08:49 2019-10-07 20:08:55 t 1 1 114418 498 0.00 2019-10-07 18:57:55 2019-10-07 20:10:30 t 1 2 114424 528 0.00 2019-10-07 20:14:41 2019-10-07 20:14:46 t 1 1 114427 522 0.00 2019-10-07 20:14:00 2019-10-07 20:15:07 t 1 1 114431 220 0.00 2019-10-07 20:15:25 2019-10-07 20:18:40 t 1 2 114433 520 0.00 2019-10-07 20:16:40 2019-10-07 20:20:16 t 1 1 114435 520 0.00 2019-10-07 20:20:18 2019-10-07 20:22:02 t 1 1 114436 520 0.00 2019-10-07 20:22:03 2019-10-07 20:22:35 t 1 1 114252 375 0.00 2019-10-07 17:24:37 2019-10-07 17:54:55 t 1 1 114253 375 0.00 2019-10-07 17:54:55 2019-10-07 17:55:58 t 1 1 114254 522 0.00 2019-10-07 17:54:57 2019-10-07 18:00:10 t 1 1 114255 306 0.00 2019-10-07 18:02:11 2019-10-07 18:03:50 t 1 1 114258 445 0.00 2019-10-07 17:39:19 2019-10-07 18:05:11 t 1 1 114261 516 0.00 2019-10-07 17:51:46 2019-10-07 18:07:33 t 1 1 114262 468 0.00 2019-10-07 17:39:31 2019-10-07 18:08:40 t 1 1 114267 485 0.00 2019-10-07 18:07:13 2019-10-07 18:17:48 t 1 1 114269 501 0.00 2019-10-07 18:17:52 2019-10-07 18:17:54 t 1 1 114271 375 0.00 2019-10-07 17:55:58 2019-10-07 18:20:54 t 1 1 114274 522 0.00 2019-10-07 18:23:43 2019-10-07 18:23:50 t 1 1 114276 375 0.00 2019-10-07 18:21:52 2019-10-07 18:26:23 t 1 1 114286 522 0.00 2019-10-07 18:36:23 2019-10-07 18:36:31 t 1 1 114288 512 0.00 2019-10-07 18:32:32 2019-10-07 18:37:37 t 1 1 114299 481 0.00 2019-10-07 18:19:33 2019-10-07 18:46:03 t 1 1 114301 485 0.00 2019-10-07 18:46:34 2019-10-07 18:47:37 t 1 1 114302 501 0.00 2019-10-07 18:18:34 2019-10-07 18:52:03 t 1 1 114304 501 0.00 2019-10-07 18:52:20 2019-10-07 18:52:48 t 1 1 114308 470 0.00 2019-10-07 18:54:28 2019-10-07 18:54:33 t 1 1 114314 501 0.00 2019-10-07 18:58:48 2019-10-07 18:58:49 t 1 1 114316 445 0.00 2019-10-07 18:32:48 2019-10-07 19:00:26 t 1 1 114317 501 0.00 2019-10-07 19:00:11 2019-10-07 19:00:59 t 1 1 114319 501 0.00 2019-10-07 19:01:50 2019-10-07 19:01:51 t 1 1 114320 501 0.00 2019-10-07 19:01:59 2019-10-07 19:02:00 t 1 1 114323 306 0.00 2019-10-07 19:02:00 2019-10-07 19:04:25 t 1 1 114324 501 0.00 2019-10-07 19:05:50 2019-10-07 19:06:42 t 1 1 114328 375 0.00 2019-10-07 18:46:38 2019-10-07 19:07:28 t 1 1 114329 501 0.00 2019-10-07 19:07:34 2019-10-07 19:08:05 t 1 1 114331 501 0.00 2019-10-07 19:08:20 2019-10-07 19:08:55 t 1 1 114339 501 0.00 2019-10-07 19:14:04 2019-10-07 19:14:37 t 1 1 114354 501 0.00 2019-10-07 19:27:10 2019-10-07 19:27:11 t 1 1 114356 522 0.00 2019-10-07 19:28:52 2019-10-07 19:28:54 t 1 1 114358 522 0.00 2019-10-07 19:29:22 2019-10-07 19:29:56 t 1 1 114360 522 0.00 2019-10-07 19:29:55 2019-10-07 19:30:22 t 1 1 114361 412 0.00 2019-10-07 19:26:07 2019-10-07 19:31:59 t 1 1 114367 522 0.00 2019-10-07 19:34:08 2019-10-07 19:34:16 t 1 1 114371 516 0.00 2019-10-07 19:21:56 2019-10-07 19:36:54 t 1 1 114373 412 0.00 2019-10-07 19:36:37 2019-10-07 19:37:39 t 1 1 114374 501 0.00 2019-10-07 19:35:47 2019-10-07 19:38:07 t 1 1 114383 528 0.00 2019-10-07 19:02:57 2019-10-07 19:46:07 t 1 1 114389 220 0.00 2019-10-07 19:46:00 2019-10-07 19:48:48 t 1 1 114390 445 0.00 2019-10-07 19:44:27 2019-10-07 19:49:07 t 1 1 114391 488 0.00 2019-10-07 19:43:08 2019-10-07 19:50:10 t 1 1 114393 375 0.00 2019-10-07 19:07:28 2019-10-07 19:50:32 t 1 1 114395 520 0.00 2019-10-07 19:46:45 2019-10-07 19:50:47 t 1 1 114396 520 0.00 2019-10-07 19:50:47 2019-10-07 19:51:34 t 1 1 114398 528 0.00 2019-10-07 19:46:06 2019-10-07 19:54:51 t 1 1 114401 456 0.00 2019-10-07 19:52:02 2019-10-07 19:56:10 t 1 1 114404 538 0.00 2019-10-07 18:50:31 2019-10-07 20:01:48 t 1 1 114405 412 0.00 2019-10-07 19:40:02 2019-10-07 20:02:50 t 1 1 114407 520 0.00 2019-10-07 19:55:40 2019-10-07 20:04:20 t 1 1 114408 412 0.00 2019-10-07 20:02:56 2019-10-07 20:05:01 t 1 1 114412 522 0.00 2019-10-07 20:06:28 2019-10-07 20:06:30 t 1 1 114413 462 0.00 2019-10-07 20:06:21 2019-10-07 20:06:53 t 1 1 114414 522 0.00 2019-10-07 20:07:46 2019-10-07 20:07:51 t 1 1 114416 528 0.00 2019-10-07 20:09:00 2019-10-07 20:09:43 t 1 1 114419 538 0.00 2019-10-07 20:02:27 2019-10-07 20:10:45 t 1 1 114423 220 0.00 2019-10-07 19:47:52 2019-10-07 20:13:50 t 1 1 114425 528 0.00 2019-10-07 20:15:02 2019-10-07 20:15:06 t 1 1 114428 522 0.00 2019-10-07 20:16:17 2019-10-07 20:16:26 t 1 1 114432 375 0.00 2019-10-07 19:52:44 2019-10-07 20:20:05 t 1 1 114437 445 0.00 2019-10-07 20:05:53 2019-10-07 20:22:56 t 1 1 114439 522 0.00 2019-10-07 20:24:07 2019-10-07 20:24:07 t 1 1 114440 520 0.00 2019-10-07 20:22:34 2019-10-07 20:24:49 t 1 1 114446 327 0.00 2019-10-07 20:29:59 2019-10-07 20:30:41 t 1 1 114447 514 0.00 2019-10-07 20:08:45 2019-10-07 20:31:26 t 1 1 114450 520 0.00 2019-10-07 20:29:28 2019-10-07 20:33:30 t 1 1 114455 445 0.00 2019-10-07 20:34:25 2019-10-07 20:35:26 t 1 1 114457 520 0.00 2019-10-07 20:33:29 2019-10-07 20:35:58 t 1 1 114465 462 0.00 2019-10-07 20:06:52 2019-10-07 20:42:21 t 1 1 114466 520 0.00 2019-10-07 20:42:30 2019-10-07 20:45:51 t 1 1 114468 528 0.00 2019-10-07 20:33:31 2019-10-07 20:47:33 t 1 1 114471 220 0.00 2019-10-07 20:47:05 2019-10-07 20:48:59 t 1 2 114472 416 0.00 2019-10-07 19:02:10 2019-10-07 20:49:28 t 1 1 114476 461 0.00 2019-10-07 20:38:48 2019-10-07 20:53:53 t 1 2 114477 361 0.00 2019-10-07 20:46:29 2019-10-07 20:55:11 t 1 2 114483 462 0.00 2019-10-07 20:42:21 2019-10-07 21:03:09 t 1 1 114485 522 0.00 2019-10-07 21:03:13 2019-10-07 21:03:20 t 1 1 114486 501 0.00 2019-10-07 21:04:21 2019-10-07 21:04:32 t 1 1 114487 501 0.00 2019-10-07 21:05:02 2019-10-07 21:05:20 t 1 1 114493 501 0.00 2019-10-07 21:09:57 2019-10-07 21:10:24 t 1 1 114498 501 0.00 2019-10-07 21:11:34 2019-10-07 21:11:35 t 1 1 114499 522 0.00 2019-10-07 21:12:39 2019-10-07 21:12:39 t 1 1 114500 430 0.00 2019-10-07 21:06:09 2019-10-07 21:13:22 t 1 1 114505 375 0.00 2019-10-07 20:30:34 2019-10-07 21:17:18 t 1 1 114509 522 0.00 2019-10-07 21:19:59 2019-10-07 21:20:08 t 1 1 114513 501 0.00 2019-10-07 21:21:55 2019-10-07 21:21:56 t 1 1 114514 528 0.00 2019-10-07 21:11:20 2019-10-07 21:22:07 t 1 1 114515 520 0.00 2019-10-07 21:20:32 2019-10-07 21:24:03 t 1 1 114519 528 0.00 2019-10-07 21:25:23 2019-10-07 21:25:24 t 1 1 114522 501 0.00 2019-10-07 21:25:56 2019-10-07 21:26:29 t 1 1 114523 501 0.00 2019-10-07 21:26:35 2019-10-07 21:27:51 t 1 1 114525 522 0.00 2019-10-07 21:30:31 2019-10-07 21:30:40 t 1 1 114527 528 0.00 2019-10-07 21:31:51 2019-10-07 21:32:07 t 1 1 114530 542 0.00 2019-10-07 21:23:21 2019-10-07 21:34:18 t 1 1 114532 528 0.00 2019-10-07 21:39:59 2019-10-07 21:40:27 t 1 1 114533 327 0.00 2019-10-07 21:40:32 2019-10-07 21:41:05 t 1 1 114535 501 0.00 2019-10-07 21:30:57 2019-10-07 21:43:42 t 1 1 114536 220 0.00 2019-10-07 21:18:26 2019-10-07 21:44:10 t 1 1 114538 522 0.00 2019-10-07 21:42:01 2019-10-07 21:50:50 t 1 1 114539 481 0.00 2019-10-07 19:32:20 2019-10-07 21:51:54 t 1 1 114540 522 0.00 2019-10-07 21:51:45 2019-10-07 21:52:13 t 1 1 114544 522 0.00 2019-10-07 21:52:59 2019-10-07 21:53:28 t 1 1 114546 327 0.00 2019-10-07 21:52:41 2019-10-07 21:53:43 t 1 1 114550 522 0.00 2019-10-07 21:55:19 2019-10-07 21:55:20 t 1 1 114553 327 0.00 2019-10-07 21:56:41 2019-10-07 21:57:12 t 1 1 114557 379 0.00 2019-10-07 21:51:29 2019-10-07 21:59:50 t 1 1 114263 430 0.00 2019-10-07 18:07:57 2019-10-07 18:15:22 t 1 1 114265 522 0.00 2019-10-07 18:15:39 2019-10-07 18:15:47 t 1 1 114268 445 0.00 2019-10-07 18:05:21 2019-10-07 18:17:48 t 1 1 114270 481 0.00 2019-10-07 17:54:49 2019-10-07 18:19:28 t 1 1 114272 306 0.00 2019-10-07 18:13:29 2019-10-07 18:22:01 t 1 1 114273 528 0.00 2019-10-07 17:26:13 2019-10-07 18:23:11 t 1 1 114278 512 0.00 2019-10-07 18:28:16 2019-10-07 18:30:47 t 1 1 114280 445 0.00 2019-10-07 18:20:51 2019-10-07 18:31:32 t 1 1 114282 220 0.00 2019-10-07 17:27:18 2019-10-07 18:35:13 t 1 1 114283 522 0.00 2019-10-07 18:30:55 2019-10-07 18:35:27 t 1 1 114285 522 0.00 2019-10-07 18:35:27 2019-10-07 18:36:15 t 1 1 114287 247 0.00 2019-10-07 18:33:17 2019-10-07 18:36:43 t 1 2 114289 528 0.00 2019-10-07 18:23:10 2019-10-07 18:38:10 t 1 1 114290 520 0.00 2019-10-07 18:35:27 2019-10-07 18:40:18 t 1 1 114292 512 0.00 2019-10-07 18:37:37 2019-10-07 18:41:13 t 1 1 114295 372 0.00 2019-10-07 18:40:04 2019-10-07 18:43:40 t 1 2 114296 528 0.00 2019-10-07 18:38:10 2019-10-07 18:44:57 t 1 1 114298 520 0.00 2019-10-07 18:42:32 2019-10-07 18:45:45 t 1 1 114300 485 0.00 2019-10-07 18:45:07 2019-10-07 18:46:08 t 1 1 114305 520 0.00 2019-10-07 18:45:45 2019-10-07 18:52:55 t 1 1 114307 516 0.00 2019-10-07 18:50:02 2019-10-07 18:54:32 t 1 1 114309 468 0.00 2019-10-07 18:09:10 2019-10-07 18:56:10 t 1 1 114311 522 0.00 2019-10-07 18:57:28 2019-10-07 18:57:36 t 1 1 114313 528 0.00 2019-10-07 18:44:56 2019-10-07 18:58:30 t 1 1 114318 416 0.00 2019-10-07 18:07:19 2019-10-07 19:01:45 t 1 1 114321 501 0.00 2019-10-07 19:02:51 2019-10-07 19:02:52 t 1 1 114322 528 0.00 2019-10-07 18:58:30 2019-10-07 19:02:57 t 1 1 114326 522 0.00 2019-10-07 19:04:27 2019-10-07 19:07:05 t 1 1 114330 445 0.00 2019-10-07 19:00:53 2019-10-07 19:08:07 t 1 1 114332 522 0.00 2019-10-07 19:07:20 2019-10-07 19:08:56 t 1 1 114333 501 0.00 2019-10-07 19:09:58 2019-10-07 19:09:59 t 1 1 114334 501 0.00 2019-10-07 19:10:06 2019-10-07 19:10:57 t 1 1 114335 522 0.00 2019-10-07 19:09:09 2019-10-07 19:11:06 t 1 1 114336 501 0.00 2019-10-07 19:11:05 2019-10-07 19:12:44 t 1 1 114337 501 0.00 2019-10-07 19:12:50 2019-10-07 19:13:02 t 1 1 114342 468 0.00 2019-10-07 19:07:05 2019-10-07 19:19:34 t 1 1 114343 522 0.00 2019-10-07 19:15:29 2019-10-07 19:19:49 t 1 1 114345 501 0.00 2019-10-07 19:22:13 2019-10-07 19:22:33 t 1 1 114347 512 0.00 2019-10-07 19:10:00 2019-10-07 19:23:09 t 1 1 114349 501 0.00 2019-10-07 19:24:26 2019-10-07 19:25:06 t 1 1 114351 522 0.00 2019-10-07 19:26:08 2019-10-07 19:26:13 t 1 1 114353 481 0.00 2019-10-07 18:46:46 2019-10-07 19:27:05 t 1 1 114355 445 0.00 2019-10-07 19:11:40 2019-10-07 19:28:41 t 1 1 114357 470 0.00 2019-10-07 18:57:19 2019-10-07 19:28:54 t 1 1 114359 501 0.00 2019-10-07 19:28:10 2019-10-07 19:30:07 t 1 1 114363 445 0.00 2019-10-07 19:30:01 2019-10-07 19:32:40 t 1 1 114364 485 0.00 2019-10-07 19:32:04 2019-10-07 19:33:35 t 1 1 114370 412 0.00 2019-10-07 19:33:39 2019-10-07 19:36:15 t 1 1 114375 445 0.00 2019-10-07 19:33:40 2019-10-07 19:39:03 t 1 1 114378 520 0.00 2019-10-07 19:30:16 2019-10-07 19:44:10 t 1 1 114381 522 0.00 2019-10-07 19:44:36 2019-10-07 19:44:47 t 1 1 114385 490 0.00 2019-10-07 19:44:24 2019-10-07 19:47:21 t 1 1 114387 522 0.00 2019-10-07 19:47:39 2019-10-07 19:47:41 t 1 1 114392 445 0.00 2019-10-07 19:49:06 2019-10-07 19:50:12 t 1 1 114394 522 0.00 2019-10-07 19:50:19 2019-10-07 19:50:44 t 1 1 114400 522 0.00 2019-10-07 19:55:45 2019-10-07 19:55:53 t 1 1 114406 528 0.00 2019-10-07 20:03:06 2019-10-07 20:03:55 t 1 1 114410 462 0.00 2019-10-07 20:00:03 2019-10-07 20:06:11 t 1 1 114417 522 0.00 2019-10-07 20:09:05 2019-10-07 20:10:06 t 1 1 114420 485 0.00 2019-10-07 20:06:43 2019-10-07 20:10:56 t 1 1 114421 522 0.00 2019-10-07 20:11:15 2019-10-07 20:11:25 t 1 1 114422 470 0.00 2019-10-07 19:28:54 2019-10-07 20:13:22 t 1 1 114426 522 0.00 2019-10-07 20:14:06 2019-10-07 20:15:07 t 1 1 114429 522 0.00 2019-10-07 20:16:40 2019-10-07 20:17:08 t 1 1 114430 522 0.00 2019-10-07 20:18:02 2019-10-07 20:18:26 t 1 1 114434 522 0.00 2019-10-07 20:21:50 2019-10-07 20:21:59 t 1 1 114441 520 0.00 2019-10-07 20:24:48 2019-10-07 20:25:32 t 1 1 114442 520 0.00 2019-10-07 20:25:31 2019-10-07 20:27:17 t 1 1 114444 522 0.00 2019-10-07 20:29:14 2019-10-07 20:29:21 t 1 1 114448 327 0.00 2019-10-07 20:30:52 2019-10-07 20:31:29 t 1 1 114449 331 0.00 2019-10-07 18:29:43 2019-10-07 20:33:11 t 1 1 114451 528 0.00 2019-10-07 20:23:50 2019-10-07 20:33:31 t 1 1 114452 445 0.00 2019-10-07 20:24:46 2019-10-07 20:34:21 t 1 1 114453 522 0.00 2019-10-07 20:31:30 2019-10-07 20:34:38 t 1 1 114456 522 0.00 2019-10-07 20:34:46 2019-10-07 20:35:31 t 1 1 114458 327 0.00 2019-10-07 20:31:50 2019-10-07 20:35:58 t 1 1 114459 522 0.00 2019-10-07 20:36:11 2019-10-07 20:36:16 t 1 1 114461 522 0.00 2019-10-07 20:39:27 2019-10-07 20:39:28 t 1 1 114462 331 0.00 2019-10-07 20:33:11 2019-10-07 20:39:37 t 1 1 114463 522 0.00 2019-10-07 20:39:35 2019-10-07 20:40:01 t 1 1 114469 520 0.00 2019-10-07 20:45:50 2019-10-07 20:47:56 t 1 1 114470 528 0.00 2019-10-07 20:48:15 2019-10-07 20:48:23 t 1 1 114473 522 0.00 2019-10-07 20:50:04 2019-10-07 20:50:15 t 1 1 114475 522 0.00 2019-10-07 20:52:45 2019-10-07 20:52:54 t 1 1 114480 327 0.00 2019-10-07 20:56:06 2019-10-07 20:57:04 t 1 1 114490 501 0.00 2019-10-07 21:06:23 2019-10-07 21:08:08 t 1 1 114491 501 0.00 2019-10-07 21:09:09 2019-10-07 21:09:19 t 1 1 114494 331 0.00 2019-10-07 20:39:37 2019-10-07 21:10:33 t 1 1 114496 220 0.00 2019-10-07 21:05:04 2019-10-07 21:11:08 t 1 1 114497 501 0.00 2019-10-07 21:11:26 2019-10-07 21:11:27 t 1 1 114501 522 0.00 2019-10-07 21:13:09 2019-10-07 21:13:32 t 1 1 114502 485 0.00 2019-10-07 21:05:17 2019-10-07 21:14:27 t 1 1 114504 522 0.00 2019-10-07 21:16:31 2019-10-07 21:16:40 t 1 1 114508 327 0.00 2019-10-07 21:19:22 2019-10-07 21:20:05 t 1 1 114510 501 0.00 2019-10-07 21:20:07 2019-10-07 21:20:17 t 1 1 114512 501 0.00 2019-10-07 21:20:55 2019-10-07 21:21:28 t 1 1 114516 501 0.00 2019-10-07 21:22:03 2019-10-07 21:24:08 t 1 1 114518 501 0.00 2019-10-07 21:24:42 2019-10-07 21:24:52 t 1 1 114520 522 0.00 2019-10-07 21:25:15 2019-10-07 21:25:24 t 1 1 114521 522 0.00 2019-10-07 21:25:47 2019-10-07 21:25:56 t 1 1 114524 528 0.00 2019-10-07 21:29:42 2019-10-07 21:30:16 t 1 1 114526 327 0.00 2019-10-07 21:29:54 2019-10-07 21:30:43 t 1 1 114529 528 0.00 2019-10-07 21:33:50 2019-10-07 21:33:55 t 1 1 114531 522 0.00 2019-10-07 21:35:01 2019-10-07 21:39:00 t 1 1 114541 327 0.00 2019-10-07 21:50:54 2019-10-07 21:52:34 t 1 1 114549 522 0.00 2019-10-07 21:55:04 2019-10-07 21:55:12 t 1 1 114551 327 0.00 2019-10-07 21:53:02 2019-10-07 21:55:42 t 1 1 114438 461 0.00 2019-10-07 19:54:52 2019-10-07 20:23:38 t 1 2 114443 375 0.00 2019-10-07 20:20:05 2019-10-07 20:29:12 t 1 1 114445 520 0.00 2019-10-07 20:27:28 2019-10-07 20:29:22 t 1 1 114454 522 0.00 2019-10-07 20:34:38 2019-10-07 20:34:43 t 1 1 114460 522 0.00 2019-10-07 20:39:19 2019-10-07 20:39:20 t 1 1 114464 520 0.00 2019-10-07 20:36:13 2019-10-07 20:42:02 t 1 1 114467 327 0.00 2019-10-07 20:45:45 2019-10-07 20:46:19 t 1 1 114474 522 0.00 2019-10-07 20:52:01 2019-10-07 20:52:11 t 1 1 114478 430 0.00 2019-10-07 20:40:55 2019-10-07 20:55:48 t 1 1 114479 485 0.00 2019-10-07 20:30:34 2019-10-07 20:56:31 t 1 1 114481 395 0.00 2019-10-07 20:08:20 2019-10-07 20:57:37 t 1 2 114482 528 0.00 2019-10-07 20:49:05 2019-10-07 21:01:25 t 1 1 114484 501 0.00 2019-10-07 20:55:20 2019-10-07 21:03:18 t 1 1 114488 430 0.00 2019-10-07 20:54:54 2019-10-07 21:06:09 t 1 1 114489 522 0.00 2019-10-07 21:07:29 2019-10-07 21:07:37 t 1 1 114492 327 0.00 2019-10-07 21:06:51 2019-10-07 21:10:05 t 1 1 114495 528 0.00 2019-10-07 21:02:25 2019-10-07 21:10:43 t 1 1 114503 485 0.00 2019-10-07 21:14:27 2019-10-07 21:16:23 t 1 1 114506 501 0.00 2019-10-07 21:17:54 2019-10-07 21:18:28 t 1 1 114507 501 0.00 2019-10-07 21:18:38 2019-10-07 21:19:19 t 1 1 114511 445 0.00 2019-10-07 20:36:39 2019-10-07 21:21:09 t 1 1 114517 528 0.00 2019-10-07 21:23:47 2019-10-07 21:24:30 t 1 1 114528 451 0.00 2019-10-07 21:22:48 2019-10-07 21:33:30 t 1 1 114534 528 0.00 2019-10-07 21:42:23 2019-10-07 21:43:12 t 1 1 114537 528 0.00 2019-10-07 21:44:30 2019-10-07 21:45:31 t 1 1 114542 522 0.00 2019-10-07 21:52:12 2019-10-07 21:52:59 t 1 1 114543 542 0.00 2019-10-07 21:34:18 2019-10-07 21:53:22 t 1 1 114545 522 0.00 2019-10-07 21:53:35 2019-10-07 21:53:36 t 1 1 114547 412 0.00 2019-10-07 21:50:58 2019-10-07 21:53:57 t 1 1 114548 503 0.00 2019-10-07 21:49:34 2019-10-07 21:54:24 t 1 1 114554 503 0.00 2019-10-07 21:54:24 2019-10-07 21:57:19 t 1 1 114556 331 0.00 2019-10-07 21:38:52 2019-10-07 21:59:45 t 1 1 114558 501 0.00 2019-10-07 21:43:42 2019-10-07 22:00:05 t 1 1 114563 331 0.00 2019-10-07 21:59:52 2019-10-07 22:05:18 t 1 1 114569 528 0.00 2019-10-07 22:06:06 2019-10-07 22:06:29 t 1 1 114575 528 0.00 2019-10-07 22:11:40 2019-10-07 22:12:15 t 1 1 114577 542 0.00 2019-10-07 21:53:21 2019-10-07 22:12:42 t 1 1 114579 528 0.00 2019-10-07 22:13:49 2019-10-07 22:14:17 t 1 1 114581 522 0.00 2019-10-07 22:15:48 2019-10-07 22:15:52 t 1 1 114584 528 0.00 2019-10-07 22:19:29 2019-10-07 22:19:59 t 1 1 114586 445 0.00 2019-10-07 21:21:14 2019-10-07 22:20:51 t 1 1 114588 375 0.00 2019-10-07 21:17:21 2019-10-07 22:21:25 t 1 1 114589 445 0.00 2019-10-07 22:20:52 2019-10-07 22:21:57 t 1 1 114591 528 0.00 2019-10-07 22:21:08 2019-10-07 22:22:51 t 1 1 114596 220 0.00 2019-10-07 22:24:39 2019-10-07 22:25:21 t 1 2 114597 522 0.00 2019-10-07 22:26:07 2019-10-07 22:26:12 t 1 1 114599 522 0.00 2019-10-07 22:28:20 2019-10-07 22:28:36 t 1 1 114601 379 0.00 2019-10-07 22:20:31 2019-10-07 22:28:56 t 1 1 114603 220 0.00 2019-10-07 22:07:08 2019-10-07 22:29:56 t 1 1 114604 538 0.00 2019-10-07 20:10:04 2019-10-07 22:29:58 t 1 1 114608 522 0.00 2019-10-07 22:31:09 2019-10-07 22:31:10 t 1 1 114612 220 0.00 2019-10-07 22:32:46 2019-10-07 22:33:21 t 1 1 114614 220 0.00 2019-10-07 22:33:20 2019-10-07 22:33:56 t 1 1 114617 468 0.00 2019-10-07 22:06:47 2019-10-07 22:34:48 t 1 1 114619 468 0.00 2019-10-07 22:34:59 2019-10-07 22:35:26 t 1 1 114622 220 0.00 2019-10-07 22:35:39 2019-10-07 22:36:12 t 1 1 114626 522 0.00 2019-10-07 22:33:11 2019-10-07 22:37:21 t 1 1 114629 220 0.00 2019-10-07 22:37:24 2019-10-07 22:37:59 t 1 1 114632 451 0.00 2019-10-07 22:32:32 2019-10-07 22:38:38 t 1 1 114633 220 0.00 2019-10-07 22:38:34 2019-10-07 22:39:09 t 1 1 114635 472 0.00 2019-10-07 22:37:55 2019-10-07 22:39:37 t 1 1 114638 468 0.00 2019-10-07 22:35:45 2019-10-07 22:40:42 t 1 1 114641 327 0.00 2019-10-07 22:24:37 2019-10-07 22:41:34 t 1 1 114642 451 0.00 2019-10-07 22:38:38 2019-10-07 22:41:54 t 1 1 114643 220 0.00 2019-10-07 22:41:26 2019-10-07 22:42:01 t 1 1 114646 522 0.00 2019-10-07 22:42:34 2019-10-07 22:43:03 t 1 1 114650 220 0.00 2019-10-07 22:44:16 2019-10-07 22:44:50 t 1 1 114657 528 0.00 2019-10-07 22:23:26 2019-10-07 22:48:21 t 1 1 114660 522 0.00 2019-10-07 22:48:13 2019-10-07 22:49:09 t 1 1 114662 325 0.00 2019-10-07 20:54:27 2019-10-07 22:49:32 t 1 2 114665 379 0.00 2019-10-07 22:37:41 2019-10-07 22:51:51 t 1 1 114678 522 0.00 2019-10-07 23:01:28 2019-10-07 23:01:41 t 1 1 114680 220 0.00 2019-10-07 22:59:59 2019-10-07 23:01:50 t 1 1 114681 327 0.00 2019-10-07 22:49:45 2019-10-07 23:02:01 t 1 1 114685 522 0.00 2019-10-07 23:01:52 2019-10-07 23:04:13 t 1 1 114687 327 0.00 2019-10-07 23:05:11 2019-10-07 23:06:12 t 1 1 114688 220 0.00 2019-10-07 23:02:27 2019-10-07 23:06:16 t 1 1 114689 327 0.00 2019-10-07 23:06:19 2019-10-07 23:06:29 t 1 1 114696 522 0.00 2019-10-07 23:10:21 2019-10-07 23:10:31 t 1 1 114702 220 0.00 2019-10-07 23:15:42 2019-10-07 23:16:17 t 1 1 114704 327 0.00 2019-10-07 23:16:49 2019-10-07 23:16:49 t 1 1 114705 327 0.00 2019-10-07 23:16:57 2019-10-07 23:16:58 t 1 1 114709 220 0.00 2019-10-07 23:16:17 2019-10-07 23:18:09 t 1 1 114711 327 0.00 2019-10-07 23:18:05 2019-10-07 23:18:37 t 1 1 114712 327 0.00 2019-10-07 23:19:07 2019-10-07 23:19:08 t 1 1 114714 327 0.00 2019-10-07 23:19:15 2019-10-07 23:19:16 t 1 1 114716 522 0.00 2019-10-07 23:12:52 2019-10-07 23:20:17 t 1 1 114718 542 0.00 2019-10-07 22:53:21 2019-10-07 23:20:37 t 1 1 114719 327 0.00 2019-10-07 23:20:56 2019-10-07 23:22:06 t 1 1 114724 522 0.00 2019-10-07 23:20:17 2019-10-07 23:27:12 t 1 1 114729 501 0.00 2019-10-07 23:35:25 2019-10-07 23:35:33 t 1 1 114733 412 0.00 2019-10-07 22:39:53 2019-10-07 23:38:45 t 1 1 114740 501 0.00 2019-10-07 23:42:36 2019-10-07 23:45:09 t 1 1 114743 375 0.00 2019-10-07 23:38:20 2019-10-07 23:46:35 t 1 1 114756 501 0.00 2019-10-07 23:58:27 2019-10-07 23:58:40 t 1 1 114757 501 0.00 2019-10-07 23:59:27 2019-10-07 23:59:28 t 1 1 114759 501 0.00 2019-10-08 00:00:26 2019-10-08 00:00:54 t 1 1 114760 412 0.00 2019-10-07 23:38:45 2019-10-08 00:02:23 t 1 1 114761 501 0.00 2019-10-08 00:02:17 2019-10-08 00:03:07 t 1 1 114766 542 0.00 2019-10-07 23:34:33 2019-10-08 00:08:28 t 1 1 114767 490 0.00 2019-10-07 23:55:22 2019-10-08 00:09:33 t 1 1 114768 522 0.00 2019-10-08 00:10:42 2019-10-08 00:11:12 t 1 1 114775 412 0.00 2019-10-08 00:02:23 2019-10-08 00:19:00 t 1 1 114776 522 0.00 2019-10-08 00:20:54 2019-10-08 00:21:07 t 1 1 114777 522 0.00 2019-10-08 00:21:49 2019-10-08 00:22:16 t 1 1 114779 542 0.00 2019-10-08 00:08:28 2019-10-08 00:22:47 t 1 1 114784 522 0.00 2019-10-08 00:28:11 2019-10-08 00:28:25 t 1 1 114552 528 0.00 2019-10-07 21:45:16 2019-10-07 21:56:57 t 1 1 114555 522 0.00 2019-10-07 21:57:18 2019-10-07 21:57:25 t 1 1 114560 522 0.00 2019-10-07 22:00:21 2019-10-07 22:03:22 t 1 1 114562 395 0.00 2019-10-07 21:47:37 2019-10-07 22:05:00 t 1 2 114566 522 0.00 2019-10-07 22:05:40 2019-10-07 22:05:45 t 1 1 114567 522 0.00 2019-10-07 22:05:53 2019-10-07 22:06:04 t 1 1 114568 522 0.00 2019-10-07 22:06:16 2019-10-07 22:06:18 t 1 1 114571 379 0.00 2019-10-07 21:59:50 2019-10-07 22:08:37 t 1 1 114572 488 0.00 2019-10-07 22:01:15 2019-10-07 22:10:15 t 1 1 114574 306 0.00 2019-10-07 22:08:26 2019-10-07 22:12:00 t 1 1 114582 456 0.00 2019-10-07 22:14:17 2019-10-07 22:16:12 t 1 1 114583 528 0.00 2019-10-07 22:19:09 2019-10-07 22:19:14 t 1 1 114590 485 0.00 2019-10-07 21:53:47 2019-10-07 22:22:22 t 1 1 114592 445 0.00 2019-10-07 22:21:57 2019-10-07 22:23:01 t 1 1 114593 512 0.00 2019-10-07 21:39:50 2019-10-07 22:23:37 t 1 1 114594 445 0.00 2019-10-07 22:23:17 2019-10-07 22:24:04 t 1 1 114598 306 0.00 2019-10-07 22:18:41 2019-10-07 22:28:24 t 1 1 114600 522 0.00 2019-10-07 22:28:45 2019-10-07 22:28:53 t 1 1 114605 220 0.00 2019-10-07 22:29:55 2019-10-07 22:30:29 t 1 1 114606 522 0.00 2019-10-07 22:30:58 2019-10-07 22:31:00 t 1 1 114609 220 0.00 2019-10-07 22:31:01 2019-10-07 22:31:36 t 1 1 114610 220 0.00 2019-10-07 22:31:35 2019-10-07 22:32:10 t 1 1 114611 220 0.00 2019-10-07 22:32:10 2019-10-07 22:32:47 t 1 1 114615 422 0.00 2019-10-07 17:33:51 2019-10-07 22:34:12 t 1 1 114616 220 0.00 2019-10-07 22:33:56 2019-10-07 22:34:31 t 1 1 114618 220 0.00 2019-10-07 22:34:30 2019-10-07 22:35:05 t 1 1 114620 220 0.00 2019-10-07 22:35:05 2019-10-07 22:35:40 t 1 1 114624 412 0.00 2019-10-07 21:54:05 2019-10-07 22:36:24 t 1 1 114627 220 0.00 2019-10-07 22:36:46 2019-10-07 22:37:24 t 1 1 114636 220 0.00 2019-10-07 22:39:08 2019-10-07 22:39:44 t 1 1 114639 220 0.00 2019-10-07 22:40:18 2019-10-07 22:40:53 t 1 1 114640 220 0.00 2019-10-07 22:40:53 2019-10-07 22:41:26 t 1 1 114647 220 0.00 2019-10-07 22:42:34 2019-10-07 22:43:07 t 1 1 114653 445 0.00 2019-10-07 22:24:12 2019-10-07 22:46:42 t 1 1 114658 220 0.00 2019-10-07 22:47:26 2019-10-07 22:48:22 t 1 1 114659 220 0.00 2019-10-07 22:48:22 2019-10-07 22:49:03 t 1 1 114661 327 0.00 2019-10-07 22:41:34 2019-10-07 22:49:26 t 1 1 114664 220 0.00 2019-10-07 22:49:03 2019-10-07 22:50:59 t 1 1 114668 220 0.00 2019-10-07 22:50:59 2019-10-07 22:53:26 t 1 1 114669 220 0.00 2019-10-07 22:53:26 2019-10-07 22:54:05 t 1 1 114673 220 0.00 2019-10-07 22:57:23 2019-10-07 22:58:29 t 1 1 114674 220 0.00 2019-10-07 22:58:28 2019-10-07 22:59:04 t 1 1 114676 220 0.00 2019-10-07 22:59:36 2019-10-07 22:59:59 t 1 1 114682 220 0.00 2019-10-07 23:01:49 2019-10-07 23:02:27 t 1 1 114684 311 0.00 2019-10-07 22:56:08 2019-10-07 23:04:08 t 1 2 114691 522 0.00 2019-10-07 23:06:28 2019-10-07 23:06:38 t 1 1 114693 220 0.00 2019-10-07 23:06:53 2019-10-07 23:07:27 t 1 1 114694 220 0.00 2019-10-07 23:07:27 2019-10-07 23:08:04 t 1 1 114697 327 0.00 2019-10-07 23:09:20 2019-10-07 23:11:22 t 1 1 114698 522 0.00 2019-10-07 23:12:18 2019-10-07 23:12:46 t 1 1 114700 327 0.00 2019-10-07 23:14:57 2019-10-07 23:15:28 t 1 1 114707 327 0.00 2019-10-07 23:17:05 2019-10-07 23:17:39 t 1 1 114708 220 0.00 2019-10-07 23:17:05 2019-10-07 23:18:07 t 1 1 114710 220 0.00 2019-10-07 23:17:28 2019-10-07 23:18:10 t 1 1 114715 327 0.00 2019-10-07 23:19:23 2019-10-07 23:19:34 t 1 1 114717 327 0.00 2019-10-07 23:19:55 2019-10-07 23:20:29 t 1 1 114720 512 0.00 2019-10-07 23:06:13 2019-10-07 23:23:09 t 1 1 114721 542 0.00 2019-10-07 23:20:42 2019-10-07 23:24:37 t 1 1 114723 220 0.00 2019-10-07 23:24:56 2019-10-07 23:25:49 t 1 1 114726 522 0.00 2019-10-07 23:27:12 2019-10-07 23:34:33 t 1 1 114730 522 0.00 2019-10-07 23:34:38 2019-10-07 23:36:04 t 1 1 114735 512 0.00 2019-10-07 23:34:59 2019-10-07 23:39:31 t 1 1 114736 522 0.00 2019-10-07 23:39:42 2019-10-07 23:39:50 t 1 1 114737 501 0.00 2019-10-07 23:39:45 2019-10-07 23:40:27 t 1 1 114738 501 0.00 2019-10-07 23:41:29 2019-10-07 23:41:30 t 1 1 114739 501 0.00 2019-10-07 23:42:29 2019-10-07 23:42:30 t 1 1 114744 327 0.00 2019-10-07 23:25:58 2019-10-07 23:46:47 t 1 1 114746 490 0.00 2019-10-07 23:35:32 2019-10-07 23:47:36 t 1 1 114748 501 0.00 2019-10-07 23:47:57 2019-10-07 23:48:27 t 1 1 114751 520 0.00 2019-10-07 23:47:55 2019-10-07 23:51:16 t 1 1 114753 490 0.00 2019-10-07 23:47:36 2019-10-07 23:55:22 t 1 1 114754 522 0.00 2019-10-07 23:55:32 2019-10-07 23:55:35 t 1 1 114758 522 0.00 2019-10-08 00:00:34 2019-10-08 00:00:48 t 1 1 114762 501 0.00 2019-10-08 00:03:30 2019-10-08 00:05:13 t 1 1 114769 538 0.00 2019-10-08 00:13:44 2019-10-08 00:15:28 t 1 1 114770 522 0.00 2019-10-08 00:15:51 2019-10-08 00:16:03 t 1 1 114778 522 0.00 2019-10-08 00:22:36 2019-10-08 00:22:38 t 1 1 114781 422 0.00 2019-10-07 22:34:12 2019-10-08 00:23:55 t 1 1 114783 501 0.00 2019-10-08 00:25:26 2019-10-08 00:27:09 t 1 1 114787 466 0.00 2019-10-08 00:25:23 2019-10-08 00:29:14 t 1 1 114802 490 0.00 2019-10-08 00:39:23 2019-10-08 00:49:34 t 1 1 114805 522 0.00 2019-10-08 00:53:43 2019-10-08 00:54:02 t 1 1 114806 490 0.00 2019-10-08 00:49:34 2019-10-08 00:55:41 t 1 1 114810 466 0.00 2019-10-08 00:52:20 2019-10-08 01:02:38 t 1 1 114812 522 0.00 2019-10-08 01:03:47 2019-10-08 01:04:10 t 1 1 114814 490 0.00 2019-10-08 01:04:09 2019-10-08 01:07:52 t 1 1 114817 466 0.00 2019-10-08 01:02:38 2019-10-08 01:10:43 t 1 1 114827 542 0.00 2019-10-08 01:24:33 2019-10-08 01:27:04 t 1 1 114830 412 0.00 2019-10-08 01:18:06 2019-10-08 01:30:56 t 1 1 114833 468 0.00 2019-10-08 01:26:57 2019-10-08 01:36:22 t 1 1 114834 422 0.00 2019-10-08 01:26:55 2019-10-08 01:37:52 t 1 1 114836 466 0.00 2019-10-08 01:30:31 2019-10-08 01:39:54 t 1 1 114839 522 0.00 2019-10-08 01:49:45 2019-10-08 01:50:09 t 1 1 114840 466 0.00 2019-10-08 01:39:54 2019-10-08 01:52:11 t 1 1 114845 466 0.00 2019-10-08 01:52:11 2019-10-08 02:00:26 t 1 1 114846 522 0.00 2019-10-08 02:00:18 2019-10-08 02:01:03 t 1 1 114849 522 0.00 2019-10-08 02:01:30 2019-10-08 02:01:51 t 1 1 114850 522 0.00 2019-10-08 02:01:59 2019-10-08 02:01:59 t 1 1 114856 522 0.00 2019-10-08 02:10:10 2019-10-08 02:10:14 t 1 1 114857 422 0.00 2019-10-08 02:01:03 2019-10-08 02:12:27 t 1 1 114858 501 0.00 2019-10-08 02:06:59 2019-10-08 02:13:30 t 1 1 114860 522 0.00 2019-10-08 02:15:18 2019-10-08 02:15:35 t 1 1 114866 542 0.00 2019-10-08 02:13:38 2019-10-08 02:21:37 t 1 1 114870 542 0.00 2019-10-08 02:24:48 2019-10-08 02:28:56 t 1 1 114871 522 0.00 2019-10-08 02:30:37 2019-10-08 02:31:39 t 1 1 114874 522 0.00 2019-10-08 02:35:42 2019-10-08 02:36:09 t 1 1 114877 412 0.00 2019-10-08 01:30:56 2019-10-08 02:37:52 t 1 1 114559 503 0.00 2019-10-07 21:57:19 2019-10-07 22:02:59 t 1 1 114561 501 0.00 2019-10-07 22:00:05 2019-10-07 22:03:58 t 1 1 114564 528 0.00 2019-10-07 21:57:27 2019-10-07 22:05:20 t 1 1 114565 528 0.00 2019-10-07 22:05:39 2019-10-07 22:05:43 t 1 1 114570 468 0.00 2019-10-07 21:48:10 2019-10-07 22:06:36 t 1 1 114573 522 0.00 2019-10-07 22:10:45 2019-10-07 22:10:45 t 1 1 114576 379 0.00 2019-10-07 22:08:37 2019-10-07 22:12:41 t 1 1 114578 456 0.00 2019-10-07 22:09:38 2019-10-07 22:12:44 t 1 1 114580 501 0.00 2019-10-07 22:03:58 2019-10-07 22:14:56 t 1 1 114585 379 0.00 2019-10-07 22:12:41 2019-10-07 22:20:31 t 1 1 114587 522 0.00 2019-10-07 22:20:54 2019-10-07 22:21:03 t 1 1 114595 327 0.00 2019-10-07 22:07:03 2019-10-07 22:24:37 t 1 1 114602 522 0.00 2019-10-07 22:29:20 2019-10-07 22:29:48 t 1 1 114607 220 0.00 2019-10-07 22:30:28 2019-10-07 22:31:01 t 1 1 114613 472 0.00 2019-10-07 22:26:57 2019-10-07 22:33:32 t 1 1 114621 501 0.00 2019-10-07 22:14:56 2019-10-07 22:35:56 t 1 1 114623 472 0.00 2019-10-07 22:36:02 2019-10-07 22:36:15 t 1 1 114625 220 0.00 2019-10-07 22:36:12 2019-10-07 22:36:46 t 1 1 114628 379 0.00 2019-10-07 22:28:56 2019-10-07 22:37:41 t 1 1 114630 522 0.00 2019-10-07 22:37:26 2019-10-07 22:38:22 t 1 1 114631 220 0.00 2019-10-07 22:37:59 2019-10-07 22:38:34 t 1 1 114634 522 0.00 2019-10-07 22:38:27 2019-10-07 22:39:09 t 1 1 114637 220 0.00 2019-10-07 22:39:44 2019-10-07 22:40:18 t 1 1 114644 522 0.00 2019-10-07 22:39:14 2019-10-07 22:42:29 t 1 1 114645 220 0.00 2019-10-07 22:42:00 2019-10-07 22:42:34 t 1 1 114648 220 0.00 2019-10-07 22:43:06 2019-10-07 22:43:41 t 1 1 114649 220 0.00 2019-10-07 22:43:41 2019-10-07 22:44:17 t 1 1 114651 220 0.00 2019-10-07 22:44:50 2019-10-07 22:45:22 t 1 1 114652 522 0.00 2019-10-07 22:46:16 2019-10-07 22:46:37 t 1 1 114654 220 0.00 2019-10-07 22:45:21 2019-10-07 22:46:53 t 1 1 114655 220 0.00 2019-10-07 22:46:52 2019-10-07 22:47:26 t 1 1 114656 449 0.00 2019-10-07 22:24:04 2019-10-07 22:48:19 t 1 1 114663 456 0.00 2019-10-07 22:40:20 2019-10-07 22:49:34 t 1 1 114666 501 0.00 2019-10-07 22:35:56 2019-10-07 22:51:51 t 1 1 114667 220 0.00 2019-10-07 22:50:59 2019-10-07 22:52:09 t 1 1 114670 220 0.00 2019-10-07 22:54:05 2019-10-07 22:55:59 t 1 1 114671 220 0.00 2019-10-07 22:55:59 2019-10-07 22:56:48 t 1 1 114672 220 0.00 2019-10-07 22:56:48 2019-10-07 22:57:23 t 1 1 114675 220 0.00 2019-10-07 22:59:04 2019-10-07 22:59:36 t 1 1 114677 522 0.00 2019-10-07 22:49:24 2019-10-07 23:01:03 t 1 1 114679 449 0.00 2019-10-07 22:48:19 2019-10-07 23:01:48 t 1 1 114683 468 0.00 2019-10-07 22:41:48 2019-10-07 23:02:51 t 1 1 114686 327 0.00 2019-10-07 23:02:32 2019-10-07 23:04:33 t 1 1 114690 247 0.00 2019-10-07 23:02:54 2019-10-07 23:06:36 t 1 2 114692 220 0.00 2019-10-07 23:06:15 2019-10-07 23:06:53 t 1 1 114695 327 0.00 2019-10-07 23:07:01 2019-10-07 23:09:11 t 1 1 114699 327 0.00 2019-10-07 23:13:24 2019-10-07 23:14:24 t 1 1 114701 220 0.00 2019-10-07 23:08:04 2019-10-07 23:15:42 t 1 1 114703 327 0.00 2019-10-07 23:16:00 2019-10-07 23:16:32 t 1 1 114706 220 0.00 2019-10-07 23:16:16 2019-10-07 23:17:29 t 1 1 114713 220 0.00 2019-10-07 23:18:10 2019-10-07 23:19:13 t 1 1 114722 220 0.00 2019-10-07 23:21:40 2019-10-07 23:24:57 t 1 1 114725 501 0.00 2019-10-07 22:51:51 2019-10-07 23:34:25 t 1 1 114727 512 0.00 2019-10-07 23:23:09 2019-10-07 23:34:59 t 1 1 114728 490 0.00 2019-10-07 22:57:49 2019-10-07 23:35:32 t 1 1 114731 501 0.00 2019-10-07 23:36:25 2019-10-07 23:36:26 t 1 1 114732 375 0.00 2019-10-07 22:21:25 2019-10-07 23:38:20 t 1 1 114734 296 0.00 2019-10-07 23:38:46 2019-10-07 23:39:08 t 1 2 114741 522 0.00 2019-10-07 23:44:54 2019-10-07 23:45:20 t 1 1 114742 474 0.00 2019-10-07 23:45:59 2019-10-07 23:46:21 t 1 1 114745 501 0.00 2019-10-07 23:46:30 2019-10-07 23:47:30 t 1 1 114747 375 0.00 2019-10-07 23:46:35 2019-10-07 23:48:17 t 1 1 114749 522 0.00 2019-10-07 23:50:24 2019-10-07 23:50:41 t 1 1 114750 522 0.00 2019-10-07 23:50:58 2019-10-07 23:51:11 t 1 1 114752 522 0.00 2019-10-07 23:51:22 2019-10-07 23:51:24 t 1 1 114755 514 0.00 2019-10-07 23:54:46 2019-10-07 23:56:19 t 1 1 114763 522 0.00 2019-10-08 00:05:39 2019-10-08 00:05:42 t 1 1 114764 501 0.00 2019-10-08 00:06:19 2019-10-08 00:06:48 t 1 1 114765 501 0.00 2019-10-08 00:07:15 2019-10-08 00:07:16 t 1 1 114771 522 0.00 2019-10-08 00:16:08 2019-10-08 00:16:15 t 1 1 114772 522 0.00 2019-10-08 00:16:34 2019-10-08 00:16:41 t 1 1 114773 522 0.00 2019-10-08 00:16:46 2019-10-08 00:17:09 t 1 1 114774 522 0.00 2019-10-08 00:16:28 2019-10-08 00:18:09 t 1 1 114780 522 0.00 2019-10-08 00:23:00 2019-10-08 00:23:10 t 1 1 114782 466 0.00 2019-10-08 00:17:45 2019-10-08 00:25:23 t 1 1 114785 490 0.00 2019-10-08 00:09:33 2019-10-08 00:28:25 t 1 1 114786 501 0.00 2019-10-08 00:27:29 2019-10-08 00:29:09 t 1 1 114788 461 0.00 2019-10-07 23:57:43 2019-10-08 00:31:16 t 1 2 114790 468 0.00 2019-10-08 00:26:02 2019-10-08 00:33:56 t 1 1 114793 522 0.00 2019-10-08 00:38:26 2019-10-08 00:38:43 t 1 1 114795 542 0.00 2019-10-08 00:22:47 2019-10-08 00:42:15 t 1 1 114801 522 0.00 2019-10-08 00:48:36 2019-10-08 00:49:05 t 1 1 114808 522 0.00 2019-10-08 00:59:49 2019-10-08 01:00:00 t 1 1 114809 542 0.00 2019-10-08 00:47:32 2019-10-08 01:02:08 t 1 1 114823 501 0.00 2019-10-08 00:31:54 2019-10-08 01:21:02 t 1 1 114824 522 0.00 2019-10-08 01:24:21 2019-10-08 01:24:23 t 1 1 114826 422 0.00 2019-10-08 00:23:55 2019-10-08 01:26:55 t 1 1 114832 522 0.00 2019-10-08 01:34:30 2019-10-08 01:34:33 t 1 1 114835 522 0.00 2019-10-08 01:39:36 2019-10-08 01:39:49 t 1 1 114837 468 0.00 2019-10-08 01:36:22 2019-10-08 01:41:10 t 1 1 114838 522 0.00 2019-10-08 01:44:38 2019-10-08 01:44:51 t 1 1 114841 468 0.00 2019-10-08 01:41:10 2019-10-08 01:52:30 t 1 1 114851 522 0.00 2019-10-08 02:02:05 2019-10-08 02:02:08 t 1 1 114852 522 0.00 2019-10-08 02:04:59 2019-10-08 02:05:11 t 1 1 114853 501 0.00 2019-10-08 01:53:33 2019-10-08 02:06:59 t 1 1 114854 466 0.00 2019-10-08 02:00:26 2019-10-08 02:08:10 t 1 1 114861 522 0.00 2019-10-08 02:15:40 2019-10-08 02:15:53 t 1 1 114862 422 0.00 2019-10-08 02:12:27 2019-10-08 02:17:35 t 1 1 114863 466 0.00 2019-10-08 02:14:47 2019-10-08 02:17:38 t 1 1 114864 501 0.00 2019-10-08 02:13:30 2019-10-08 02:19:22 t 1 1 114867 422 0.00 2019-10-08 02:17:35 2019-10-08 02:22:04 t 1 1 114869 501 0.00 2019-10-08 02:19:22 2019-10-08 02:26:32 t 1 1 114873 514 0.00 2019-10-08 02:25:59 2019-10-08 02:33:15 t 1 1 114875 501 0.00 2019-10-08 02:31:44 2019-10-08 02:37:06 t 1 1 114882 466 0.00 2019-10-08 02:38:44 2019-10-08 02:46:55 t 1 1 114884 518 0.00 2019-10-08 02:25:41 2019-10-08 02:50:46 t 1 2 114885 522 0.00 2019-10-08 02:50:55 2019-10-08 02:51:15 t 1 1 114789 522 0.00 2019-10-08 00:33:19 2019-10-08 00:33:32 t 1 1 114791 466 0.00 2019-10-08 00:29:14 2019-10-08 00:35:36 t 1 1 114792 468 0.00 2019-10-08 00:34:00 2019-10-08 00:36:24 t 1 1 114794 490 0.00 2019-10-08 00:28:25 2019-10-08 00:39:23 t 1 1 114796 449 0.00 2019-10-08 00:26:18 2019-10-08 00:42:31 t 1 1 114797 466 0.00 2019-10-08 00:35:36 2019-10-08 00:43:25 t 1 1 114798 522 0.00 2019-10-08 00:43:34 2019-10-08 00:43:45 t 1 1 114799 522 0.00 2019-10-08 00:43:57 2019-10-08 00:44:00 t 1 1 114800 542 0.00 2019-10-08 00:42:15 2019-10-08 00:45:09 t 1 1 114803 449 0.00 2019-10-08 00:42:31 2019-10-08 00:50:06 t 1 1 114804 466 0.00 2019-10-08 00:43:25 2019-10-08 00:52:20 t 1 1 114807 522 0.00 2019-10-08 00:58:46 2019-10-08 00:59:44 t 1 1 114811 490 0.00 2019-10-08 00:55:41 2019-10-08 01:04:09 t 1 1 114813 542 0.00 2019-10-08 01:02:58 2019-10-08 01:04:38 t 1 1 114815 522 0.00 2019-10-08 01:08:55 2019-10-08 01:09:30 t 1 1 114816 412 0.00 2019-10-08 00:19:00 2019-10-08 01:09:59 t 1 1 114818 522 0.00 2019-10-08 01:13:35 2019-10-08 01:13:54 t 1 1 114819 522 0.00 2019-10-08 01:14:05 2019-10-08 01:14:07 t 1 1 114820 412 0.00 2019-10-08 01:09:59 2019-10-08 01:18:06 t 1 1 114821 466 0.00 2019-10-08 01:10:43 2019-10-08 01:19:06 t 1 1 114822 522 0.00 2019-10-08 01:19:13 2019-10-08 01:19:15 t 1 1 114825 468 0.00 2019-10-08 01:03:31 2019-10-08 01:26:25 t 1 1 114828 522 0.00 2019-10-08 01:29:26 2019-10-08 01:29:39 t 1 1 114829 466 0.00 2019-10-08 01:19:06 2019-10-08 01:30:31 t 1 1 114831 461 0.00 2019-10-08 00:39:50 2019-10-08 01:32:28 t 1 2 114842 501 0.00 2019-10-08 01:21:02 2019-10-08 01:53:33 t 1 1 114843 522 0.00 2019-10-08 01:54:51 2019-10-08 01:55:09 t 1 1 114844 522 0.00 2019-10-08 01:59:59 2019-10-08 02:00:11 t 1 1 114847 422 0.00 2019-10-08 01:37:52 2019-10-08 02:01:03 t 1 1 114848 522 0.00 2019-10-08 02:01:11 2019-10-08 02:01:23 t 1 1 114855 542 0.00 2019-10-08 01:58:45 2019-10-08 02:08:25 t 1 1 114859 466 0.00 2019-10-08 02:08:10 2019-10-08 02:14:47 t 1 1 114865 522 0.00 2019-10-08 02:20:22 2019-10-08 02:20:25 t 1 1 114868 522 0.00 2019-10-08 02:25:28 2019-10-08 02:25:31 t 1 1 114872 501 0.00 2019-10-08 02:26:32 2019-10-08 02:31:44 t 1 1 114876 514 0.00 2019-10-08 02:33:15 2019-10-08 02:37:31 t 1 1 114879 466 0.00 2019-10-08 02:17:38 2019-10-08 02:38:44 t 1 1 114880 522 0.00 2019-10-08 02:40:47 2019-10-08 02:40:50 t 1 1 114881 522 0.00 2019-10-08 02:45:52 2019-10-08 02:46:21 t 1 1 114883 501 0.00 2019-10-08 02:37:06 2019-10-08 02:46:58 t 1 1 114886 542 0.00 2019-10-08 02:47:31 2019-10-08 02:52:18 t 1 1 114893 501 0.00 2019-10-08 03:03:24 2019-10-08 03:09:16 t 1 1 114896 220 0.00 2019-10-07 23:25:48 2019-10-08 03:17:47 t 1 1 114900 522 0.00 2019-10-08 03:31:45 2019-10-08 03:32:23 t 1 1 114901 522 0.00 2019-10-08 03:34:47 2019-10-08 03:35:22 t 1 1 114905 542 0.00 2019-10-08 03:39:19 2019-10-08 03:42:08 t 1 1 114908 522 0.00 2019-10-08 03:57:02 2019-10-08 03:57:05 t 1 1 114909 522 0.00 2019-10-08 04:02:05 2019-10-08 04:02:21 t 1 1 114912 522 0.00 2019-10-08 04:12:16 2019-10-08 04:12:19 t 1 1 114915 522 0.00 2019-10-08 04:27:32 2019-10-08 04:27:51 t 1 1 114919 522 0.00 2019-10-08 04:43:02 2019-10-08 04:43:05 t 1 1 114921 412 0.00 2019-10-08 02:37:51 2019-10-08 04:48:21 t 1 1 114923 499 0.00 2019-10-08 01:10:54 2019-10-08 04:50:26 t 1 1 114924 522 0.00 2019-10-08 04:53:01 2019-10-08 04:54:02 t 1 1 114930 522 0.00 2019-10-08 05:08:33 2019-10-08 05:08:44 t 1 1 114931 522 0.00 2019-10-08 05:08:55 2019-10-08 05:08:58 t 1 1 114933 522 0.00 2019-10-08 05:13:15 2019-10-08 05:14:16 t 1 1 114936 522 0.00 2019-10-08 05:23:35 2019-10-08 05:23:36 t 1 1 114942 522 0.00 2019-10-08 05:38:37 2019-10-08 05:38:47 t 1 1 114946 522 0.00 2019-10-08 05:49:15 2019-10-08 05:49:26 t 1 1 114948 522 0.00 2019-10-08 05:49:57 2019-10-08 05:49:59 t 1 1 114949 522 0.00 2019-10-08 05:53:56 2019-10-08 05:54:09 t 1 1 114953 430 0.00 2019-10-08 05:19:13 2019-10-08 06:01:23 t 1 1 114954 522 0.00 2019-10-08 06:03:53 2019-10-08 06:04:16 t 1 1 114958 522 0.00 2019-10-08 06:14:52 2019-10-08 06:14:53 t 1 1 114961 522 0.00 2019-10-08 06:24:37 2019-10-08 06:25:43 t 1 1 114963 522 0.00 2019-10-08 06:29:51 2019-10-08 06:29:58 t 1 1 114967 522 0.00 2019-10-08 06:31:12 2019-10-08 06:31:19 t 1 1 114978 522 0.00 2019-10-08 07:00:13 2019-10-08 07:00:30 t 1 1 114980 485 0.00 2019-10-08 06:59:28 2019-10-08 07:00:56 t 1 1 114981 522 0.00 2019-10-08 07:00:57 2019-10-08 07:01:15 t 1 1 114983 522 0.00 2019-10-08 07:10:20 2019-10-08 07:10:41 t 1 1 114986 522 0.00 2019-10-08 07:25:33 2019-10-08 07:26:35 t 1 1 114988 516 0.00 2019-10-08 07:18:57 2019-10-08 07:26:56 t 1 1 114989 306 0.00 2019-10-08 07:23:21 2019-10-08 07:30:17 t 1 1 114995 430 0.00 2019-10-08 07:32:49 2019-10-08 07:38:59 t 1 1 115000 528 0.00 2019-10-08 07:39:19 2019-10-08 07:48:19 t 1 1 115009 522 0.00 2019-10-08 08:06:22 2019-10-08 08:06:33 t 1 1 115016 522 0.00 2019-10-08 08:22:46 2019-10-08 08:23:01 t 1 1 115017 522 0.00 2019-10-08 08:23:48 2019-10-08 08:24:02 t 1 1 115020 522 0.00 2019-10-08 08:32:13 2019-10-08 08:32:16 t 1 1 115023 522 0.00 2019-10-08 08:33:42 2019-10-08 08:34:16 t 1 1 115027 522 0.00 2019-10-08 08:36:58 2019-10-08 08:37:14 t 1 1 115031 522 0.00 2019-10-08 08:39:54 2019-10-08 08:40:05 t 1 1 115033 522 0.00 2019-10-08 08:41:39 2019-10-08 08:41:44 t 1 1 115035 542 0.00 2019-10-08 08:42:07 2019-10-08 08:43:52 t 1 1 115036 522 0.00 2019-10-08 08:44:15 2019-10-08 08:44:15 t 1 1 115039 522 0.00 2019-10-08 08:45:15 2019-10-08 08:46:16 t 1 1 115049 522 0.00 2019-10-08 08:47:04 2019-10-08 09:01:56 t 1 1 115055 522 0.00 2019-10-08 09:11:41 2019-10-08 09:11:52 t 1 1 115056 522 0.00 2019-10-08 09:12:05 2019-10-08 09:12:07 t 1 1 115059 538 0.00 2019-10-08 09:10:01 2019-10-08 09:13:19 t 1 1 115060 522 0.00 2019-10-08 09:14:11 2019-10-08 09:14:31 t 1 1 115064 522 0.00 2019-10-08 09:16:34 2019-10-08 09:17:11 t 1 1 115065 522 0.00 2019-10-08 09:17:33 2019-10-08 09:17:34 t 1 1 115068 522 0.00 2019-10-08 09:19:22 2019-10-08 09:19:37 t 1 1 115071 522 0.00 2019-10-08 09:22:11 2019-10-08 09:22:14 t 1 1 115072 522 0.00 2019-10-08 09:23:13 2019-10-08 09:24:06 t 1 1 115080 292 0.00 2019-10-08 09:26:35 2019-10-08 09:27:33 t 1 2 115083 522 0.00 2019-10-08 09:28:51 2019-10-08 09:28:57 t 1 1 115094 416 0.00 2019-10-07 20:49:28 2019-10-08 09:39:51 t 1 1 115095 481 0.00 2019-10-08 09:05:34 2019-10-08 09:42:07 t 1 1 115099 327 0.00 2019-10-08 08:41:12 2019-10-08 09:46:43 t 1 1 115100 522 0.00 2019-10-08 09:46:46 2019-10-08 09:47:13 t 1 1 115104 542 0.00 2019-10-08 09:48:53 2019-10-08 09:53:08 t 1 1 115107 416 0.00 2019-10-08 09:39:08 2019-10-08 09:57:30 t 1 1 115108 306 0.00 2019-10-08 09:59:44 2019-10-08 10:01:23 t 1 1 114878 422 0.00 2019-10-08 02:22:04 2019-10-08 02:38:32 t 1 1 114888 501 0.00 2019-10-08 02:46:58 2019-10-08 02:56:52 t 1 1 114889 522 0.00 2019-10-08 03:01:06 2019-10-08 03:01:13 t 1 1 114892 522 0.00 2019-10-08 03:06:16 2019-10-08 03:06:28 t 1 1 114894 522 0.00 2019-10-08 03:11:20 2019-10-08 03:11:29 t 1 1 114897 522 0.00 2019-10-08 03:21:31 2019-10-08 03:22:02 t 1 1 114903 542 0.00 2019-10-08 03:32:22 2019-10-08 03:39:20 t 1 1 114904 522 0.00 2019-10-08 03:41:42 2019-10-08 03:42:00 t 1 1 114907 522 0.00 2019-10-08 03:51:53 2019-10-08 03:53:05 t 1 1 114910 522 0.00 2019-10-08 04:02:26 2019-10-08 04:02:49 t 1 1 114911 522 0.00 2019-10-08 04:07:10 2019-10-08 04:08:05 t 1 1 114913 522 0.00 2019-10-08 04:17:18 2019-10-08 04:17:56 t 1 1 114916 522 0.00 2019-10-08 04:32:36 2019-10-08 04:32:49 t 1 1 114920 522 0.00 2019-10-08 04:47:57 2019-10-08 04:48:11 t 1 1 114926 470 0.00 2019-10-07 20:13:22 2019-10-08 04:58:47 t 1 1 114927 522 0.00 2019-10-08 05:03:09 2019-10-08 05:03:21 t 1 1 114937 522 0.00 2019-10-08 05:23:53 2019-10-08 05:23:54 t 1 1 114938 522 0.00 2019-10-08 05:24:00 2019-10-08 05:24:01 t 1 1 114943 522 0.00 2019-10-08 05:43:48 2019-10-08 05:43:54 t 1 1 114944 522 0.00 2019-10-08 05:43:59 2019-10-08 05:44:26 t 1 1 114947 522 0.00 2019-10-08 05:49:34 2019-10-08 05:49:45 t 1 1 114951 470 0.00 2019-10-08 04:58:47 2019-10-08 05:58:18 t 1 1 114952 522 0.00 2019-10-08 05:59:05 2019-10-08 05:59:12 t 1 1 114955 522 0.00 2019-10-08 06:05:40 2019-10-08 06:06:03 t 1 1 114960 522 0.00 2019-10-08 06:19:30 2019-10-08 06:19:43 t 1 1 114962 461 0.00 2019-10-08 06:16:24 2019-10-08 06:26:29 t 1 2 114964 522 0.00 2019-10-08 06:30:15 2019-10-08 06:30:42 t 1 1 114965 522 0.00 2019-10-08 06:30:50 2019-10-08 06:30:58 t 1 1 114968 522 0.00 2019-10-08 06:31:39 2019-10-08 06:31:42 t 1 1 114969 430 0.00 2019-10-08 06:01:40 2019-10-08 06:33:03 t 1 1 114972 522 0.00 2019-10-08 06:39:56 2019-10-08 06:40:19 t 1 1 114973 516 0.00 2019-10-08 06:35:44 2019-10-08 06:42:42 t 1 1 114974 522 0.00 2019-10-08 06:45:02 2019-10-08 06:45:25 t 1 1 114979 522 0.00 2019-10-08 07:00:35 2019-10-08 07:00:51 t 1 1 114984 522 0.00 2019-10-08 07:15:25 2019-10-08 07:15:45 t 1 1 114985 522 0.00 2019-10-08 07:20:28 2019-10-08 07:20:31 t 1 1 114990 522 0.00 2019-10-08 07:30:37 2019-10-08 07:30:50 t 1 1 114997 430 0.00 2019-10-08 07:38:59 2019-10-08 07:41:57 t 1 1 114998 516 0.00 2019-10-08 07:37:54 2019-10-08 07:45:45 t 1 1 115002 522 0.00 2019-10-08 07:56:03 2019-10-08 07:56:31 t 1 1 115007 412 0.00 2019-10-08 04:49:08 2019-10-08 08:03:43 t 1 1 115012 522 0.00 2019-10-08 08:10:41 2019-10-08 08:11:12 t 1 1 115013 522 0.00 2019-10-08 08:12:18 2019-10-08 08:12:21 t 1 1 115014 522 0.00 2019-10-08 08:15:46 2019-10-08 08:20:28 t 1 1 115015 522 0.00 2019-10-08 08:21:40 2019-10-08 08:21:42 t 1 1 115021 522 0.00 2019-10-08 08:32:43 2019-10-08 08:32:55 t 1 1 115022 522 0.00 2019-10-08 08:33:08 2019-10-08 08:33:23 t 1 1 115024 522 0.00 2019-10-08 08:35:41 2019-10-08 08:35:44 t 1 1 115025 522 0.00 2019-10-08 08:35:51 2019-10-08 08:36:06 t 1 1 115026 306 0.00 2019-10-08 08:30:44 2019-10-08 08:37:08 t 1 1 115028 522 0.00 2019-10-08 08:37:26 2019-10-08 08:37:28 t 1 1 115029 522 0.00 2019-10-08 08:38:16 2019-10-08 08:38:19 t 1 1 115030 522 0.00 2019-10-08 08:39:07 2019-10-08 08:39:10 t 1 1 115032 522 0.00 2019-10-08 08:40:17 2019-10-08 08:40:18 t 1 1 115037 522 0.00 2019-10-08 08:44:38 2019-10-08 08:44:51 t 1 1 115038 522 0.00 2019-10-08 08:46:01 2019-10-08 08:46:11 t 1 1 115040 522 0.00 2019-10-08 08:46:22 2019-10-08 08:46:24 t 1 1 115041 481 0.00 2019-10-08 07:47:28 2019-10-08 08:47:38 t 1 1 115042 538 0.00 2019-10-08 08:35:09 2019-10-08 08:47:53 t 1 1 115044 422 0.00 2019-10-08 08:28:36 2019-10-08 08:50:47 t 1 1 115045 481 0.00 2019-10-08 08:47:38 2019-10-08 08:51:39 t 1 1 115046 412 0.00 2019-10-08 08:03:43 2019-10-08 08:52:00 t 1 1 115047 306 0.00 2019-10-08 08:53:37 2019-10-08 08:55:37 t 1 1 115048 512 0.00 2019-10-08 08:33:38 2019-10-08 09:01:34 t 1 1 115050 481 0.00 2019-10-08 08:51:39 2019-10-08 09:05:34 t 1 1 115053 522 0.00 2019-10-08 09:10:08 2019-10-08 09:11:09 t 1 1 115057 522 0.00 2019-10-08 09:12:36 2019-10-08 09:12:41 t 1 1 115061 522 0.00 2019-10-08 09:14:36 2019-10-08 09:14:36 t 1 1 115063 520 0.00 2019-10-08 09:09:32 2019-10-08 09:15:53 t 1 1 115066 306 0.00 2019-10-08 09:14:40 2019-10-08 09:18:35 t 1 1 115067 542 0.00 2019-10-08 09:17:12 2019-10-08 09:19:35 t 1 1 115073 522 0.00 2019-10-08 09:24:11 2019-10-08 09:24:13 t 1 1 115074 306 0.00 2019-10-08 09:23:06 2019-10-08 09:25:06 t 1 1 115078 522 0.00 2019-10-08 09:27:05 2019-10-08 09:27:09 t 1 1 115081 522 0.00 2019-10-08 09:27:28 2019-10-08 09:28:14 t 1 1 115084 522 0.00 2019-10-08 09:26:48 2019-10-08 09:29:09 t 1 1 115086 522 0.00 2019-10-08 09:30:03 2019-10-08 09:30:09 t 1 1 115092 220 0.00 2019-10-08 09:33:05 2019-10-08 09:35:28 t 1 2 115093 522 0.00 2019-10-08 09:35:58 2019-10-08 09:36:05 t 1 1 115096 542 0.00 2019-10-08 09:35:06 2019-10-08 09:42:07 t 1 1 115097 512 0.00 2019-10-08 09:36:50 2019-10-08 09:45:17 t 1 1 115098 481 0.00 2019-10-08 09:42:07 2019-10-08 09:46:23 t 1 1 115102 522 0.00 2019-10-08 09:51:45 2019-10-08 09:51:55 t 1 1 115103 325 0.00 2019-10-08 09:38:00 2019-10-08 09:53:06 t 1 2 115105 522 0.00 2019-10-08 09:53:33 2019-10-08 09:53:55 t 1 1 115111 522 0.00 2019-10-08 10:08:31 2019-10-08 10:08:38 t 1 1 115112 522 0.00 2019-10-08 10:09:16 2019-10-08 10:09:17 t 1 1 115117 522 0.00 2019-10-08 10:14:58 2019-10-08 10:15:32 t 1 1 115119 416 0.00 2019-10-08 10:00:17 2019-10-08 10:17:30 t 1 1 115120 481 0.00 2019-10-08 10:15:24 2019-10-08 10:18:14 t 1 1 115121 522 0.00 2019-10-08 10:19:32 2019-10-08 10:19:38 t 1 1 115122 325 0.00 2019-10-08 10:05:06 2019-10-08 10:20:11 t 1 2 115123 481 0.00 2019-10-08 10:18:13 2019-10-08 10:21:01 t 1 1 115127 522 0.00 2019-10-08 10:24:46 2019-10-08 10:25:13 t 1 1 115130 522 0.00 2019-10-08 10:26:00 2019-10-08 10:26:15 t 1 1 115131 522 0.00 2019-10-08 10:26:25 2019-10-08 10:27:00 t 1 1 115135 522 0.00 2019-10-08 10:36:35 2019-10-08 10:36:47 t 1 1 115136 416 0.00 2019-10-08 10:17:27 2019-10-08 10:37:28 t 1 1 115138 327 0.00 2019-10-08 10:04:36 2019-10-08 10:39:23 t 1 1 115140 522 0.00 2019-10-08 10:40:37 2019-10-08 10:40:45 t 1 1 115146 522 0.00 2019-10-08 10:48:59 2019-10-08 10:49:10 t 1 1 115150 522 0.00 2019-10-08 10:53:40 2019-10-08 10:53:49 t 1 1 115157 542 0.00 2019-10-08 10:14:22 2019-10-08 10:59:06 t 1 1 115159 306 0.00 2019-10-08 10:57:17 2019-10-08 11:00:05 t 1 1 115161 306 0.00 2019-10-08 11:00:16 2019-10-08 11:02:44 t 1 1 115164 522 0.00 2019-10-08 11:04:55 2019-10-08 11:05:04 t 1 1 115169 416 0.00 2019-10-08 10:58:26 2019-10-08 11:14:54 t 1 1 114887 522 0.00 2019-10-08 02:56:00 2019-10-08 02:56:03 t 1 1 114890 522 0.00 2019-10-08 03:01:39 2019-10-08 03:01:51 t 1 1 114891 501 0.00 2019-10-08 02:56:52 2019-10-08 03:03:24 t 1 1 114895 522 0.00 2019-10-08 03:16:26 2019-10-08 03:16:39 t 1 1 114898 522 0.00 2019-10-08 03:26:35 2019-10-08 03:26:55 t 1 1 114899 542 0.00 2019-10-08 03:22:05 2019-10-08 03:32:22 t 1 1 114902 522 0.00 2019-10-08 03:36:46 2019-10-08 03:37:12 t 1 1 114906 522 0.00 2019-10-08 03:46:50 2019-10-08 03:46:53 t 1 1 114914 522 0.00 2019-10-08 04:22:28 2019-10-08 04:22:48 t 1 1 114917 522 0.00 2019-10-08 04:37:42 2019-10-08 04:37:51 t 1 1 114918 522 0.00 2019-10-08 04:42:51 2019-10-08 04:42:57 t 1 1 114922 422 0.00 2019-10-08 02:38:32 2019-10-08 04:48:49 t 1 1 114925 522 0.00 2019-10-08 04:58:05 2019-10-08 04:58:22 t 1 1 114928 522 0.00 2019-10-08 05:03:29 2019-10-08 05:03:50 t 1 1 114929 522 0.00 2019-10-08 05:08:14 2019-10-08 05:08:25 t 1 1 114932 485 0.00 2019-10-08 05:06:33 2019-10-08 05:11:01 t 1 1 114934 522 0.00 2019-10-08 05:18:24 2019-10-08 05:18:37 t 1 1 114935 522 0.00 2019-10-08 05:23:27 2019-10-08 05:23:29 t 1 1 114939 522 0.00 2019-10-08 05:28:29 2019-10-08 05:28:42 t 1 1 114940 485 0.00 2019-10-08 05:27:02 2019-10-08 05:32:48 t 1 1 114941 522 0.00 2019-10-08 05:33:35 2019-10-08 05:33:49 t 1 1 114945 522 0.00 2019-10-08 05:48:55 2019-10-08 05:49:07 t 1 1 114950 522 0.00 2019-10-08 05:57:49 2019-10-08 05:58:01 t 1 1 114956 522 0.00 2019-10-08 06:09:21 2019-10-08 06:09:49 t 1 1 114957 522 0.00 2019-10-08 06:14:23 2019-10-08 06:14:40 t 1 1 114959 522 0.00 2019-10-08 06:14:59 2019-10-08 06:15:01 t 1 1 114966 522 0.00 2019-10-08 06:31:06 2019-10-08 06:31:06 t 1 1 114970 522 0.00 2019-10-08 06:34:53 2019-10-08 06:35:16 t 1 1 114971 498 0.00 2019-10-08 06:11:04 2019-10-08 06:36:52 t 1 2 114975 522 0.00 2019-10-08 06:50:08 2019-10-08 06:50:37 t 1 1 114976 522 0.00 2019-10-08 06:55:11 2019-10-08 06:55:40 t 1 1 114977 522 0.00 2019-10-08 06:55:45 2019-10-08 06:56:14 t 1 1 114982 522 0.00 2019-10-08 07:05:18 2019-10-08 07:05:31 t 1 1 114987 544 0.00 2019-10-08 00:11:38 2019-10-08 07:26:44 t 1 2 114991 430 0.00 2019-10-08 07:26:45 2019-10-08 07:31:33 t 1 1 114992 522 0.00 2019-10-08 07:35:43 2019-10-08 07:36:13 t 1 1 114993 528 0.00 2019-10-08 07:37:30 2019-10-08 07:37:50 t 1 1 114994 220 0.00 2019-10-08 06:51:57 2019-10-08 07:38:43 t 1 1 114996 522 0.00 2019-10-08 07:40:48 2019-10-08 07:41:05 t 1 1 114999 522 0.00 2019-10-08 07:45:54 2019-10-08 07:45:57 t 1 1 115001 522 0.00 2019-10-08 07:50:57 2019-10-08 07:52:09 t 1 1 115003 522 0.00 2019-10-08 07:58:17 2019-10-08 07:58:37 t 1 1 115004 522 0.00 2019-10-08 08:01:05 2019-10-08 08:01:18 t 1 1 115005 522 0.00 2019-10-08 08:01:32 2019-10-08 08:02:14 t 1 1 115006 522 0.00 2019-10-08 08:03:02 2019-10-08 08:03:13 t 1 1 115008 522 0.00 2019-10-08 08:04:42 2019-10-08 08:04:53 t 1 1 115010 538 0.00 2019-10-08 08:04:04 2019-10-08 08:06:36 t 1 1 115011 522 0.00 2019-10-08 08:07:11 2019-10-08 08:07:25 t 1 1 115018 522 0.00 2019-10-08 08:29:02 2019-10-08 08:29:05 t 1 1 115019 512 0.00 2019-10-08 08:27:30 2019-10-08 08:32:03 t 1 1 115034 522 0.00 2019-10-08 08:42:20 2019-10-08 08:42:25 t 1 1 115043 538 0.00 2019-10-08 08:47:52 2019-10-08 08:47:59 t 1 1 115051 512 0.00 2019-10-08 09:02:16 2019-10-08 09:08:15 t 1 1 115052 522 0.00 2019-10-08 09:03:04 2019-10-08 09:09:34 t 1 1 115054 522 0.00 2019-10-08 09:11:26 2019-10-08 09:11:33 t 1 1 115058 522 0.00 2019-10-08 09:12:48 2019-10-08 09:12:48 t 1 1 115062 306 0.00 2019-10-08 09:10:47 2019-10-08 09:14:40 t 1 1 115069 520 0.00 2019-10-08 09:15:52 2019-10-08 09:21:33 t 1 1 115070 522 0.00 2019-10-08 09:21:52 2019-10-08 09:21:57 t 1 1 115075 522 0.00 2019-10-08 09:25:19 2019-10-08 09:25:55 t 1 1 115076 522 0.00 2019-10-08 09:26:01 2019-10-08 09:26:16 t 1 1 115077 522 0.00 2019-10-08 09:26:24 2019-10-08 09:26:43 t 1 1 115079 522 0.00 2019-10-08 09:27:20 2019-10-08 09:27:22 t 1 1 115082 522 0.00 2019-10-08 09:28:19 2019-10-08 09:28:30 t 1 1 115085 522 0.00 2019-10-08 09:29:42 2019-10-08 09:29:44 t 1 1 115087 522 0.00 2019-10-08 09:30:16 2019-10-08 09:30:20 t 1 1 115088 522 0.00 2019-10-08 09:30:55 2019-10-08 09:31:47 t 1 1 115089 522 0.00 2019-10-08 09:31:52 2019-10-08 09:32:11 t 1 1 115090 522 0.00 2019-10-08 09:32:50 2019-10-08 09:32:58 t 1 1 115091 542 0.00 2019-10-08 09:23:31 2019-10-08 09:35:06 t 1 1 115101 542 0.00 2019-10-08 09:42:07 2019-10-08 09:48:53 t 1 1 115106 327 0.00 2019-10-08 09:47:21 2019-10-08 09:56:30 t 1 1 115109 522 0.00 2019-10-08 10:04:02 2019-10-08 10:05:09 t 1 1 115110 522 0.00 2019-10-08 10:06:18 2019-10-08 10:06:24 t 1 1 115113 522 0.00 2019-10-08 10:09:24 2019-10-08 10:09:25 t 1 1 115114 306 0.00 2019-10-08 10:09:52 2019-10-08 10:12:26 t 1 1 115115 542 0.00 2019-10-08 10:02:35 2019-10-08 10:14:22 t 1 1 115116 481 0.00 2019-10-08 09:46:22 2019-10-08 10:15:24 t 1 1 115124 472 0.00 2019-10-08 09:57:39 2019-10-08 10:22:14 t 1 1 115125 522 0.00 2019-10-08 10:23:06 2019-10-08 10:23:13 t 1 1 115126 395 0.00 2019-10-08 09:47:58 2019-10-08 10:24:16 t 1 2 115128 522 0.00 2019-10-08 10:25:37 2019-10-08 10:25:50 t 1 1 115129 306 0.00 2019-10-08 10:23:49 2019-10-08 10:26:12 t 1 1 115133 522 0.00 2019-10-08 10:27:52 2019-10-08 10:33:50 t 1 1 115139 416 0.00 2019-10-08 10:38:36 2019-10-08 10:39:41 t 1 1 115142 522 0.00 2019-10-08 10:43:53 2019-10-08 10:43:54 t 1 1 115143 416 0.00 2019-10-08 10:39:41 2019-10-08 10:43:59 t 1 1 115147 522 0.00 2019-10-08 10:49:25 2019-10-08 10:49:33 t 1 1 115148 516 0.00 2019-10-08 10:47:28 2019-10-08 10:50:07 t 1 1 115153 522 0.00 2019-10-08 10:54:43 2019-10-08 10:55:13 t 1 1 115154 481 0.00 2019-10-08 10:21:00 2019-10-08 10:56:24 t 1 1 115156 522 0.00 2019-10-08 10:59:03 2019-10-08 10:59:05 t 1 1 115158 522 0.00 2019-10-08 10:59:12 2019-10-08 10:59:13 t 1 1 115160 522 0.00 2019-10-08 10:59:54 2019-10-08 11:02:09 t 1 1 115162 327 0.00 2019-10-08 10:55:16 2019-10-08 11:03:46 t 1 1 115163 522 0.00 2019-10-08 11:03:54 2019-10-08 11:04:01 t 1 1 115165 485 0.00 2019-10-08 11:07:34 2019-10-08 11:09:45 t 1 1 115166 470 0.00 2019-10-08 11:08:20 2019-10-08 11:11:09 t 1 1 115167 512 0.00 2019-10-08 11:11:02 2019-10-08 11:13:15 t 1 1 115168 290 0.00 2019-10-08 10:48:59 2019-10-08 11:14:05 t 1 2 115179 422 0.00 2019-10-08 09:00:30 2019-10-08 11:39:09 t 1 1 115180 501 0.00 2019-10-08 11:34:00 2019-10-08 11:40:25 t 1 1 115181 501 0.00 2019-10-08 11:40:40 2019-10-08 11:41:25 t 1 1 115184 501 0.00 2019-10-08 11:42:40 2019-10-08 11:44:43 t 1 1 115198 538 0.00 2019-10-08 11:52:17 2019-10-08 11:55:05 t 1 1 115204 501 0.00 2019-10-08 12:01:09 2019-10-08 12:01:24 t 1 1 115207 512 0.00 2019-10-08 12:00:51 2019-10-08 12:04:16 t 1 1 115118 522 0.00 2019-10-08 10:17:17 2019-10-08 10:17:24 t 1 1 115132 538 0.00 2019-10-08 09:41:46 2019-10-08 10:30:44 t 1 1 115134 512 0.00 2019-10-08 10:28:40 2019-10-08 10:34:42 t 1 1 115137 416 0.00 2019-10-08 10:37:28 2019-10-08 10:38:36 t 1 1 115141 522 0.00 2019-10-08 10:41:53 2019-10-08 10:41:53 t 1 1 115144 522 0.00 2019-10-08 10:44:01 2019-10-08 10:44:02 t 1 1 115145 516 0.00 2019-10-08 10:37:35 2019-10-08 10:47:28 t 1 1 115149 327 0.00 2019-10-08 10:40:57 2019-10-08 10:51:27 t 1 1 115151 416 0.00 2019-10-08 10:43:59 2019-10-08 10:53:51 t 1 1 115152 522 0.00 2019-10-08 10:54:36 2019-10-08 10:54:37 t 1 1 115155 416 0.00 2019-10-08 10:52:55 2019-10-08 10:58:21 t 1 1 115170 514 0.00 2019-10-08 11:14:23 2019-10-08 11:15:04 t 1 1 115172 306 0.00 2019-10-08 11:14:50 2019-10-08 11:19:42 t 1 1 115173 481 0.00 2019-10-08 10:56:24 2019-10-08 11:20:20 t 1 1 115176 522 0.00 2019-10-08 11:07:36 2019-10-08 11:31:32 t 1 1 115182 501 0.00 2019-10-08 11:41:34 2019-10-08 11:41:56 t 1 1 115183 516 0.00 2019-10-08 11:40:22 2019-10-08 11:44:06 t 1 1 115187 501 0.00 2019-10-08 11:46:53 2019-10-08 11:47:24 t 1 1 115189 522 0.00 2019-10-08 11:32:10 2019-10-08 11:47:54 t 1 1 115190 522 0.00 2019-10-08 11:48:01 2019-10-08 11:48:09 t 1 1 115193 522 0.00 2019-10-08 11:49:08 2019-10-08 11:50:22 t 1 1 115194 522 0.00 2019-10-08 11:51:08 2019-10-08 11:51:18 t 1 1 115196 306 0.00 2019-10-08 11:39:31 2019-10-08 11:53:32 t 1 1 115197 522 0.00 2019-10-08 11:54:17 2019-10-08 11:54:18 t 1 1 115200 522 0.00 2019-10-08 11:54:25 2019-10-08 11:55:26 t 1 1 115202 501 0.00 2019-10-08 11:48:16 2019-10-08 11:58:25 t 1 1 115203 501 0.00 2019-10-08 12:00:30 2019-10-08 12:00:31 t 1 1 115205 306 0.00 2019-10-08 11:57:42 2019-10-08 12:02:10 t 1 1 115206 501 0.00 2019-10-08 12:02:29 2019-10-08 12:03:02 t 1 1 115210 522 0.00 2019-10-08 12:08:14 2019-10-08 12:08:15 t 1 1 115212 501 0.00 2019-10-08 12:04:10 2019-10-08 12:11:52 t 1 1 115221 522 0.00 2019-10-08 12:19:03 2019-10-08 12:19:25 t 1 1 115226 522 0.00 2019-10-08 12:22:56 2019-10-08 12:23:03 t 1 1 115231 522 0.00 2019-10-08 12:23:47 2019-10-08 12:23:50 t 1 1 115232 522 0.00 2019-10-08 12:23:56 2019-10-08 12:24:23 t 1 1 115234 522 0.00 2019-10-08 12:24:57 2019-10-08 12:25:04 t 1 1 115235 522 0.00 2019-10-08 12:25:24 2019-10-08 12:25:51 t 1 1 115241 522 0.00 2019-10-08 12:26:47 2019-10-08 12:26:53 t 1 1 115242 522 0.00 2019-10-08 12:27:11 2019-10-08 12:27:16 t 1 1 115247 522 0.00 2019-10-08 12:28:24 2019-10-08 12:28:26 t 1 1 115249 522 0.00 2019-10-08 12:28:32 2019-10-08 12:28:37 t 1 1 115253 522 0.00 2019-10-08 12:29:08 2019-10-08 12:29:42 t 1 1 115259 522 0.00 2019-10-08 12:34:45 2019-10-08 12:34:53 t 1 1 115260 331 0.00 2019-10-08 12:33:39 2019-10-08 12:35:14 t 1 1 115262 522 0.00 2019-10-08 12:36:35 2019-10-08 12:37:08 t 1 1 115267 327 0.00 2019-10-08 12:20:02 2019-10-08 12:41:15 t 1 1 115269 522 0.00 2019-10-08 12:40:02 2019-10-08 12:45:09 t 1 1 115270 422 0.00 2019-10-08 12:29:44 2019-10-08 12:47:18 t 1 1 115272 481 0.00 2019-10-08 12:15:50 2019-10-08 12:48:36 t 1 1 115273 220 0.00 2019-10-08 12:48:01 2019-10-08 12:49:24 t 1 2 115274 470 0.00 2019-10-08 12:29:03 2019-10-08 12:50:39 t 1 1 115275 522 0.00 2019-10-08 12:45:25 2019-10-08 12:51:37 t 1 1 115279 306 0.00 2019-10-08 12:50:40 2019-10-08 12:54:27 t 1 1 115285 470 0.00 2019-10-08 12:57:24 2019-10-08 12:59:42 t 1 1 115288 422 0.00 2019-10-08 12:58:56 2019-10-08 13:01:34 t 1 1 115295 422 0.00 2019-10-08 13:01:34 2019-10-08 13:05:28 t 1 1 115297 522 0.00 2019-10-08 13:06:18 2019-10-08 13:06:47 t 1 1 115302 522 0.00 2019-10-08 13:06:52 2019-10-08 13:09:09 t 1 1 115305 522 0.00 2019-10-08 13:11:05 2019-10-08 13:11:17 t 1 1 115307 528 0.00 2019-10-08 12:52:54 2019-10-08 13:12:22 t 1 1 115313 498 0.00 2019-10-08 12:55:31 2019-10-08 13:15:02 t 1 2 115316 501 0.00 2019-10-08 13:17:04 2019-10-08 13:17:25 t 1 1 115317 522 0.00 2019-10-08 13:17:25 2019-10-08 13:18:00 t 1 1 115319 528 0.00 2019-10-08 13:17:13 2019-10-08 13:18:32 t 1 1 115321 451 0.00 2019-10-08 12:59:55 2019-10-08 13:18:55 t 1 1 115322 522 0.00 2019-10-08 13:18:12 2019-10-08 13:20:09 t 1 1 115323 522 0.00 2019-10-08 13:19:37 2019-10-08 13:21:11 t 1 1 115331 522 0.00 2019-10-08 13:28:10 2019-10-08 13:28:11 t 1 1 115334 516 0.00 2019-10-08 13:26:34 2019-10-08 13:31:40 t 1 1 115336 501 0.00 2019-10-08 13:34:39 2019-10-08 13:35:39 t 1 1 115338 522 0.00 2019-10-08 13:31:44 2019-10-08 13:35:51 t 1 1 115340 501 0.00 2019-10-08 13:36:54 2019-10-08 13:40:14 t 1 1 115342 327 0.00 2019-10-08 13:39:53 2019-10-08 13:40:57 t 1 1 115343 528 0.00 2019-10-08 13:21:02 2019-10-08 13:42:08 t 1 1 115345 501 0.00 2019-10-08 13:41:35 2019-10-08 13:43:39 t 1 1 115346 522 0.00 2019-10-08 13:43:33 2019-10-08 13:44:02 t 1 1 115349 528 0.00 2019-10-08 13:42:08 2019-10-08 13:44:30 t 1 1 115350 528 0.00 2019-10-08 13:43:49 2019-10-08 13:45:30 t 1 1 115356 327 0.00 2019-10-08 13:51:50 2019-10-08 13:53:06 t 1 1 115357 526 0.00 2019-10-08 13:47:42 2019-10-08 13:54:47 t 1 1 115358 522 0.00 2019-10-08 13:53:31 2019-10-08 13:55:09 t 1 1 115363 306 0.00 2019-10-08 13:57:40 2019-10-08 14:01:53 t 1 1 115370 528 0.00 2019-10-08 13:46:11 2019-10-08 14:09:54 t 1 1 115373 522 0.00 2019-10-08 14:10:49 2019-10-08 14:11:01 t 1 1 115375 522 0.00 2019-10-08 14:12:02 2019-10-08 14:12:14 t 1 1 115377 528 0.00 2019-10-08 14:09:54 2019-10-08 14:15:30 t 1 1 115379 470 0.00 2019-10-08 14:10:58 2019-10-08 14:18:41 t 1 1 115385 306 0.00 2019-10-08 14:21:45 2019-10-08 14:29:50 t 1 1 115393 522 0.00 2019-10-08 14:46:24 2019-10-08 14:46:27 t 1 1 115394 461 0.00 2019-10-08 14:37:42 2019-10-08 14:47:47 t 1 2 115397 528 0.00 2019-10-08 14:40:02 2019-10-08 14:49:30 t 1 1 115408 528 0.00 2019-10-08 15:10:13 2019-10-08 15:16:05 t 1 1 115414 528 0.00 2019-10-08 15:20:01 2019-10-08 15:21:54 t 1 1 115415 501 0.00 2019-10-08 15:22:22 2019-10-08 15:22:34 t 1 1 115417 501 0.00 2019-10-08 15:22:52 2019-10-08 15:23:21 t 1 1 115421 416 0.00 2019-10-08 11:14:56 2019-10-08 15:24:57 t 1 1 115422 522 0.00 2019-10-08 15:25:11 2019-10-08 15:25:11 f 1 1 115425 544 0.00 2019-10-08 15:26:27 2019-10-08 15:27:26 t 1 2 115431 544 0.00 2019-10-08 15:32:44 2019-10-08 15:33:42 t 1 2 115434 466 0.00 2019-10-08 14:34:37 2019-10-08 15:37:21 t 1 1 115435 462 0.00 2019-10-08 15:23:21 2019-10-08 15:37:47 t 1 1 115437 327 0.00 2019-10-08 15:23:16 2019-10-08 15:39:40 t 1 1 115445 327 0.00 2019-10-08 15:43:28 2019-10-08 15:46:14 t 1 1 115448 538 0.00 2019-10-08 15:47:12 2019-10-08 15:53:19 t 1 1 115455 416 0.00 2019-10-08 16:01:27 2019-10-08 16:12:19 t 1 1 115464 466 0.00 2019-10-08 16:10:50 2019-10-08 16:29:54 t 1 1 115471 522 0.00 2019-10-08 16:24:50 2019-10-08 16:44:17 t 1 1 115171 470 0.00 2019-10-08 11:10:44 2019-10-08 11:16:36 t 1 1 115174 516 0.00 2019-10-08 11:14:22 2019-10-08 11:21:27 t 1 1 115175 306 0.00 2019-10-08 11:28:05 2019-10-08 11:30:58 t 1 1 115177 542 0.00 2019-10-08 11:00:23 2019-10-08 11:31:55 t 1 1 115178 470 0.00 2019-10-08 11:34:57 2019-10-08 11:38:32 t 1 1 115185 501 0.00 2019-10-08 11:45:16 2019-10-08 11:45:44 t 1 1 115186 481 0.00 2019-10-08 11:24:24 2019-10-08 11:46:35 t 1 1 115188 501 0.00 2019-10-08 11:47:34 2019-10-08 11:47:44 t 1 1 115191 470 0.00 2019-10-08 11:43:32 2019-10-08 11:48:41 t 1 1 115192 461 0.00 2019-10-08 11:31:53 2019-10-08 11:50:16 t 1 2 115195 522 0.00 2019-10-08 11:52:48 2019-10-08 11:52:58 t 1 1 115199 512 0.00 2019-10-08 11:46:02 2019-10-08 11:55:09 t 1 1 115201 470 0.00 2019-10-08 11:49:26 2019-10-08 11:58:04 t 1 1 115208 501 0.00 2019-10-08 12:03:30 2019-10-08 12:05:09 t 1 1 115211 512 0.00 2019-10-08 12:04:57 2019-10-08 12:11:31 t 1 1 115213 501 0.00 2019-10-08 12:13:03 2019-10-08 12:13:10 t 1 1 115215 470 0.00 2019-10-08 11:58:59 2019-10-08 12:14:59 t 1 1 115217 481 0.00 2019-10-08 11:47:22 2019-10-08 12:15:21 t 1 1 115220 501 0.00 2019-10-08 12:18:57 2019-10-08 12:19:07 t 1 1 115222 501 0.00 2019-10-08 12:19:56 2019-10-08 12:21:29 t 1 1 115223 522 0.00 2019-10-08 12:21:13 2019-10-08 12:22:01 t 1 1 115224 522 0.00 2019-10-08 12:22:39 2019-10-08 12:22:45 t 1 1 115227 522 0.00 2019-10-08 12:23:08 2019-10-08 12:23:15 t 1 1 115229 522 0.00 2019-10-08 12:23:33 2019-10-08 12:23:35 t 1 1 115233 522 0.00 2019-10-08 12:24:38 2019-10-08 12:24:46 t 1 1 115236 306 0.00 2019-10-08 12:18:19 2019-10-08 12:25:59 t 1 1 115238 522 0.00 2019-10-08 12:26:12 2019-10-08 12:26:18 t 1 1 115239 501 0.00 2019-10-08 12:26:23 2019-10-08 12:26:38 t 1 1 115243 522 0.00 2019-10-08 12:27:29 2019-10-08 12:27:36 t 1 1 115245 470 0.00 2019-10-08 12:14:59 2019-10-08 12:28:12 t 1 1 115257 501 0.00 2019-10-08 12:31:48 2019-10-08 12:32:49 t 1 1 115263 528 0.00 2019-10-08 12:35:55 2019-10-08 12:38:00 t 1 1 115265 516 0.00 2019-10-08 12:27:46 2019-10-08 12:38:17 t 1 1 115268 247 0.00 2019-10-08 12:41:15 2019-10-08 12:45:03 t 1 2 115271 220 0.00 2019-10-08 12:45:30 2019-10-08 12:47:54 t 1 2 115277 422 0.00 2019-10-08 12:47:18 2019-10-08 12:53:56 t 1 1 115278 327 0.00 2019-10-08 12:41:43 2019-10-08 12:54:27 t 1 1 115280 422 0.00 2019-10-08 12:53:56 2019-10-08 12:56:26 t 1 1 115281 522 0.00 2019-10-08 12:55:47 2019-10-08 12:56:57 t 1 1 115284 422 0.00 2019-10-08 12:56:26 2019-10-08 12:58:56 t 1 1 115286 516 0.00 2019-10-08 12:48:29 2019-10-08 13:01:01 t 1 1 115287 522 0.00 2019-10-08 12:59:21 2019-10-08 13:01:09 t 1 1 115289 522 0.00 2019-10-08 13:01:06 2019-10-08 13:01:38 t 1 1 115290 501 0.00 2019-10-08 12:32:48 2019-10-08 13:02:40 t 1 1 115292 474 0.00 2019-10-08 12:51:26 2019-10-08 13:03:49 t 1 1 115293 466 0.00 2019-10-08 13:01:06 2019-10-08 13:04:54 t 1 1 115294 327 0.00 2019-10-08 12:54:42 2019-10-08 13:05:01 t 1 1 115301 522 0.00 2019-10-08 13:07:23 2019-10-08 13:07:50 t 1 1 115303 501 0.00 2019-10-08 13:08:01 2019-10-08 13:09:26 t 1 1 115304 327 0.00 2019-10-08 13:09:14 2019-10-08 13:10:45 t 1 1 115308 422 0.00 2019-10-08 13:05:28 2019-10-08 13:12:37 t 1 1 115311 490 0.00 2019-10-08 13:07:35 2019-10-08 13:13:28 t 1 1 115314 522 0.00 2019-10-08 13:13:44 2019-10-08 13:15:09 t 1 1 115324 490 0.00 2019-10-08 13:13:28 2019-10-08 13:21:51 t 1 1 115326 522 0.00 2019-10-08 13:23:05 2019-10-08 13:23:39 t 1 1 115329 522 0.00 2019-10-08 13:25:28 2019-10-08 13:26:34 t 1 1 115330 501 0.00 2019-10-08 13:17:57 2019-10-08 13:26:40 t 1 1 115332 327 0.00 2019-10-08 13:22:26 2019-10-08 13:30:10 t 1 1 115333 520 0.00 2019-10-08 13:26:00 2019-10-08 13:31:24 t 1 1 115337 501 0.00 2019-10-08 13:35:48 2019-10-08 13:35:49 t 1 1 115348 526 0.00 2019-10-08 13:40:14 2019-10-08 13:44:20 t 1 1 115351 501 0.00 2019-10-08 13:46:13 2019-10-08 13:46:43 t 1 1 115352 522 0.00 2019-10-08 13:48:19 2019-10-08 13:48:28 t 1 1 115359 522 0.00 2019-10-08 13:55:53 2019-10-08 13:55:56 t 1 1 115360 522 0.00 2019-10-08 13:56:16 2019-10-08 13:56:41 t 1 1 115361 306 0.00 2019-10-08 13:46:20 2019-10-08 13:57:09 t 1 1 115362 522 0.00 2019-10-08 13:56:53 2019-10-08 13:58:09 t 1 1 115364 327 0.00 2019-10-08 13:58:50 2019-10-08 14:02:07 t 1 1 115366 522 0.00 2019-10-08 14:06:12 2019-10-08 14:06:14 t 1 1 115368 501 0.00 2019-10-08 14:07:05 2019-10-08 14:08:09 t 1 1 115374 522 0.00 2019-10-08 14:11:07 2019-10-08 14:11:08 t 1 1 115381 528 0.00 2019-10-08 14:15:37 2019-10-08 14:23:48 t 1 1 115383 327 0.00 2019-10-08 14:23:00 2019-10-08 14:24:16 t 1 1 115388 522 0.00 2019-10-08 14:29:02 2019-10-08 14:37:47 t 1 1 115389 470 0.00 2019-10-08 14:29:51 2019-10-08 14:38:00 t 1 1 115395 522 0.00 2019-10-08 14:47:44 2019-10-08 14:48:22 t 1 1 115396 522 0.00 2019-10-08 14:49:12 2019-10-08 14:49:14 t 1 1 115400 538 0.00 2019-10-08 14:22:06 2019-10-08 14:56:19 t 1 1 115401 422 0.00 2019-10-08 13:12:37 2019-10-08 14:57:38 t 1 1 115403 462 0.00 2019-10-08 14:57:33 2019-10-08 15:04:09 t 1 1 115405 327 0.00 2019-10-08 14:50:37 2019-10-08 15:07:37 t 1 1 115409 522 0.00 2019-10-08 15:12:43 2019-10-08 15:17:27 t 1 1 115410 501 0.00 2019-10-08 14:26:11 2019-10-08 15:18:41 t 1 1 115412 481 0.00 2019-10-08 14:19:46 2019-10-08 15:20:08 t 1 1 115413 501 0.00 2019-10-08 15:21:14 2019-10-08 15:21:42 t 1 1 115420 522 0.00 2019-10-08 15:24:21 2019-10-08 15:24:54 t 1 1 115423 522 0.00 2019-10-08 15:24:09 2019-10-08 15:26:09 t 1 1 115424 522 0.00 2019-10-08 15:24:59 2019-10-08 15:27:09 t 1 1 115426 528 0.00 2019-10-08 15:22:50 2019-10-08 15:27:33 t 1 1 115427 501 0.00 2019-10-08 15:24:29 2019-10-08 15:28:05 t 1 1 115428 526 0.00 2019-10-08 15:14:52 2019-10-08 15:29:35 t 1 2 115429 544 0.00 2019-10-08 15:29:09 2019-10-08 15:30:09 t 1 2 115436 501 0.00 2019-10-08 15:38:02 2019-10-08 15:39:10 t 1 1 115439 416 0.00 2019-10-08 15:24:57 2019-10-08 15:40:33 t 1 1 115440 327 0.00 2019-10-08 15:39:40 2019-10-08 15:41:00 t 1 1 115446 327 0.00 2019-10-08 15:46:38 2019-10-08 15:46:38 t 1 1 115454 327 0.00 2019-10-08 16:09:16 2019-10-08 16:12:12 t 1 1 115457 538 0.00 2019-10-08 16:10:54 2019-10-08 16:18:51 t 1 1 115459 522 0.00 2019-10-08 16:12:30 2019-10-08 16:21:02 t 1 1 115460 522 0.00 2019-10-08 16:22:02 2019-10-08 16:22:02 t 1 1 115461 522 0.00 2019-10-08 16:23:34 2019-10-08 16:23:35 t 1 1 115462 501 0.00 2019-10-08 16:17:30 2019-10-08 16:25:10 t 1 1 115463 501 0.00 2019-10-08 16:28:46 2019-10-08 16:29:17 t 1 1 115465 501 0.00 2019-10-08 16:30:44 2019-10-08 16:30:53 t 1 1 115466 501 0.00 2019-10-08 16:32:18 2019-10-08 16:34:09 t 1 1 115467 296 0.00 2019-10-08 16:24:30 2019-10-08 16:37:50 t 1 2 115468 528 0.00 2019-10-08 15:27:32 2019-10-08 16:40:57 t 1 1 115209 522 0.00 2019-10-08 12:08:06 2019-10-08 12:08:07 t 1 1 115214 522 0.00 2019-10-08 12:13:20 2019-10-08 12:13:28 t 1 1 115216 327 0.00 2019-10-08 11:13:31 2019-10-08 12:15:16 t 1 1 115218 522 0.00 2019-10-08 12:17:16 2019-10-08 12:17:25 t 1 1 115219 512 0.00 2019-10-08 12:12:24 2019-10-08 12:18:42 t 1 1 115225 522 0.00 2019-10-08 12:22:00 2019-10-08 12:22:57 t 1 1 115228 501 0.00 2019-10-08 12:22:21 2019-10-08 12:23:33 t 1 1 115230 522 0.00 2019-10-08 12:23:40 2019-10-08 12:23:42 t 1 1 115237 501 0.00 2019-10-08 12:25:08 2019-10-08 12:26:13 t 1 1 115240 522 0.00 2019-10-08 12:26:40 2019-10-08 12:26:42 t 1 1 115244 522 0.00 2019-10-08 12:27:59 2019-10-08 12:28:05 t 1 1 115246 522 0.00 2019-10-08 12:28:18 2019-10-08 12:28:19 t 1 1 115248 528 0.00 2019-10-08 12:26:21 2019-10-08 12:28:27 t 1 1 115250 501 0.00 2019-10-08 12:27:40 2019-10-08 12:28:44 t 1 1 115251 522 0.00 2019-10-08 12:28:55 2019-10-08 12:28:57 t 1 1 115252 522 0.00 2019-10-08 12:29:02 2019-10-08 12:29:05 t 1 1 115254 422 0.00 2019-10-08 11:39:09 2019-10-08 12:29:44 t 1 1 115255 522 0.00 2019-10-08 12:30:01 2019-10-08 12:30:24 t 1 1 115256 501 0.00 2019-10-08 12:30:50 2019-10-08 12:30:58 t 1 1 115258 522 0.00 2019-10-08 12:34:07 2019-10-08 12:34:21 t 1 1 115261 528 0.00 2019-10-08 12:30:01 2019-10-08 12:35:40 t 1 1 115264 522 0.00 2019-10-08 12:38:04 2019-10-08 12:38:09 t 1 1 115266 512 0.00 2019-10-08 12:19:58 2019-10-08 12:39:54 t 1 1 115276 522 0.00 2019-10-08 12:51:37 2019-10-08 12:53:48 t 1 1 115282 470 0.00 2019-10-08 12:50:39 2019-10-08 12:57:24 t 1 1 115283 522 0.00 2019-10-08 12:57:42 2019-10-08 12:58:15 t 1 1 115291 522 0.00 2019-10-08 13:01:43 2019-10-08 13:03:09 t 1 1 115296 522 0.00 2019-10-08 13:06:04 2019-10-08 13:06:06 t 1 1 115298 522 0.00 2019-10-08 13:07:00 2019-10-08 13:07:11 t 1 1 115299 490 0.00 2019-10-08 12:47:11 2019-10-08 13:07:35 t 1 1 115300 501 0.00 2019-10-08 13:07:23 2019-10-08 13:07:49 t 1 1 115306 306 0.00 2019-10-08 13:07:48 2019-10-08 13:11:33 t 1 1 115309 327 0.00 2019-10-08 13:11:00 2019-10-08 13:12:40 t 1 1 115310 528 0.00 2019-10-08 13:12:22 2019-10-08 13:13:04 t 1 1 115312 522 0.00 2019-10-08 13:12:54 2019-10-08 13:13:39 t 1 1 115315 501 0.00 2019-10-08 13:15:55 2019-10-08 13:16:56 t 1 1 115318 522 0.00 2019-10-08 13:16:41 2019-10-08 13:18:09 t 1 1 115320 481 0.00 2019-10-08 12:48:36 2019-10-08 13:18:43 t 1 1 115325 522 0.00 2019-10-08 13:21:39 2019-10-08 13:22:06 t 1 1 115327 451 0.00 2019-10-08 13:18:55 2019-10-08 13:24:47 t 1 1 115328 481 0.00 2019-10-08 13:18:43 2019-10-08 13:26:33 t 1 1 115335 501 0.00 2019-10-08 13:30:46 2019-10-08 13:33:46 t 1 1 115339 306 0.00 2019-10-08 13:28:17 2019-10-08 13:39:37 t 1 1 115341 526 0.00 2019-10-08 13:38:21 2019-10-08 13:40:14 t 1 1 115344 522 0.00 2019-10-08 13:43:07 2019-10-08 13:43:20 t 1 1 115347 474 0.00 2019-10-08 13:03:49 2019-10-08 13:44:10 t 1 1 115353 470 0.00 2019-10-08 13:16:18 2019-10-08 13:50:44 t 1 1 115354 327 0.00 2019-10-08 13:50:31 2019-10-08 13:51:02 t 1 1 115355 485 0.00 2019-10-08 13:48:15 2019-10-08 13:52:16 t 1 1 115365 522 0.00 2019-10-08 14:01:09 2019-10-08 14:03:09 t 1 1 115367 501 0.00 2019-10-08 14:06:02 2019-10-08 14:06:58 t 1 1 115369 501 0.00 2019-10-08 14:08:44 2019-10-08 14:08:45 t 1 1 115371 306 0.00 2019-10-08 14:07:33 2019-10-08 14:10:39 t 1 1 115372 470 0.00 2019-10-08 13:50:44 2019-10-08 14:10:58 t 1 1 115376 327 0.00 2019-10-08 14:11:50 2019-10-08 14:13:49 t 1 1 115378 306 0.00 2019-10-08 14:13:16 2019-10-08 14:17:32 t 1 1 115380 481 0.00 2019-10-08 13:26:38 2019-10-08 14:19:33 t 1 1 115382 501 0.00 2019-10-08 14:14:55 2019-10-08 14:24:07 t 1 1 115384 522 0.00 2019-10-08 14:12:51 2019-10-08 14:29:02 t 1 1 115386 470 0.00 2019-10-08 14:18:41 2019-10-08 14:29:51 t 1 1 115387 466 0.00 2019-10-08 14:19:22 2019-10-08 14:34:37 t 1 1 115390 220 0.00 2019-10-08 12:54:49 2019-10-08 14:38:55 t 1 1 115391 522 0.00 2019-10-08 14:37:47 2019-10-08 14:45:13 t 1 1 115392 522 0.00 2019-10-08 14:45:57 2019-10-08 14:46:09 t 1 1 115398 327 0.00 2019-10-08 14:33:59 2019-10-08 14:50:37 t 1 1 115399 220 0.00 2019-10-08 14:41:35 2019-10-08 14:54:49 t 1 1 115402 522 0.00 2019-10-08 14:49:42 2019-10-08 14:57:54 t 1 1 115404 462 0.00 2019-10-08 15:05:20 2019-10-08 15:05:36 t 1 1 115406 306 0.00 2019-10-08 15:06:27 2019-10-08 15:10:43 t 1 1 115407 522 0.00 2019-10-08 14:57:54 2019-10-08 15:12:43 t 1 1 115411 516 0.00 2019-10-08 15:08:39 2019-10-08 15:19:23 t 1 1 115416 327 0.00 2019-10-08 15:07:37 2019-10-08 15:23:16 t 1 1 115418 462 0.00 2019-10-08 15:05:36 2019-10-08 15:23:21 t 1 1 115419 522 0.00 2019-10-08 15:18:35 2019-10-08 15:24:04 t 1 1 115430 470 0.00 2019-10-08 14:38:00 2019-10-08 15:30:28 t 1 1 115432 422 0.00 2019-10-08 14:57:38 2019-10-08 15:33:51 t 1 1 115433 538 0.00 2019-10-08 15:28:01 2019-10-08 15:36:35 t 1 1 115438 462 0.00 2019-10-08 15:37:47 2019-10-08 15:40:04 t 1 1 115441 327 0.00 2019-10-08 15:41:13 2019-10-08 15:41:27 t 1 1 115442 327 0.00 2019-10-08 15:41:56 2019-10-08 15:42:30 t 1 1 115443 327 0.00 2019-10-08 15:42:52 2019-10-08 15:43:00 t 1 1 115444 487 0.00 2019-10-08 13:15:06 2019-10-08 15:45:11 t 1 2 115447 327 0.00 2019-10-08 15:46:52 2019-10-08 15:50:28 t 1 1 115449 327 0.00 2019-10-08 15:50:57 2019-10-08 15:55:23 t 1 1 115450 485 0.00 2019-10-08 15:44:34 2019-10-08 15:57:52 t 1 1 115451 416 0.00 2019-10-08 15:40:33 2019-10-08 16:01:27 t 1 1 115452 327 0.00 2019-10-08 16:05:07 2019-10-08 16:05:41 t 1 1 115453 466 0.00 2019-10-08 15:37:21 2019-10-08 16:10:50 t 1 1 115456 422 0.00 2019-10-08 15:33:51 2019-10-08 16:17:22 t 1 1 115458 306 0.00 2019-10-08 16:02:18 2019-10-08 16:19:24 t 1 1 115472 538 0.00 2019-10-08 16:29:15 2019-10-08 16:44:41 t 1 1 115479 501 0.00 2019-10-08 16:59:34 2019-10-08 17:00:06 t 1 1 115481 520 0.00 2019-10-08 16:57:47 2019-10-08 17:03:38 t 1 1 115486 538 0.00 2019-10-08 17:05:01 2019-10-08 17:10:40 t 1 1 115487 466 0.00 2019-10-08 16:29:58 2019-10-08 17:11:57 t 1 1 115493 501 0.00 2019-10-08 17:20:35 2019-10-08 17:21:09 t 1 1 115494 416 0.00 2019-10-08 16:53:46 2019-10-08 17:23:16 t 1 1 115497 528 0.00 2019-10-08 17:01:48 2019-10-08 17:28:09 t 1 1 115498 412 0.00 2019-10-08 17:13:41 2019-10-08 17:29:26 t 1 1 115501 501 0.00 2019-10-08 17:31:04 2019-10-08 17:31:40 t 1 1 115503 538 0.00 2019-10-08 17:24:46 2019-10-08 17:36:55 t 1 1 115504 445 0.00 2019-10-08 17:18:44 2019-10-08 17:38:43 t 1 1 115511 538 0.00 2019-10-08 17:38:55 2019-10-08 17:51:17 t 1 1 115514 466 0.00 2019-10-08 17:11:57 2019-10-08 17:54:53 t 1 1 115515 485 0.00 2019-10-08 17:55:30 2019-10-08 17:57:15 t 1 1 115517 516 0.00 2019-10-08 17:52:16 2019-10-08 17:58:53 t 1 1 115519 528 0.00 2019-10-08 18:03:57 2019-10-08 18:04:21 t 1 1 115469 512 0.00 2019-10-08 16:27:03 2019-10-08 16:42:38 t 1 1 115470 485 0.00 2019-10-08 16:41:10 2019-10-08 16:44:12 t 1 1 115473 501 0.00 2019-10-08 16:52:36 2019-10-08 16:53:08 t 1 1 115478 445 0.00 2019-10-08 15:37:26 2019-10-08 16:59:16 t 1 1 115483 520 0.00 2019-10-08 17:03:37 2019-10-08 17:06:16 t 1 1 115484 445 0.00 2019-10-08 16:59:25 2019-10-08 17:07:25 t 1 1 115488 412 0.00 2019-10-08 08:51:37 2019-10-08 17:13:42 t 1 1 115491 327 0.00 2019-10-08 17:03:05 2019-10-08 17:18:55 t 1 1 115495 306 0.00 2019-10-08 17:15:42 2019-10-08 17:26:35 t 1 1 115500 416 0.00 2019-10-08 17:27:51 2019-10-08 17:29:56 t 1 1 115505 327 0.00 2019-10-08 17:18:55 2019-10-08 17:38:53 t 1 1 115506 468 0.00 2019-10-08 17:17:20 2019-10-08 17:39:03 t 1 1 115508 470 0.00 2019-10-08 17:01:25 2019-10-08 17:44:50 t 1 1 115520 422 0.00 2019-10-08 16:17:22 2019-10-08 18:05:56 t 1 1 115521 538 0.00 2019-10-08 18:00:47 2019-10-08 18:06:02 t 1 1 115522 416 0.00 2019-10-08 17:29:19 2019-10-08 18:07:59 t 1 1 115523 470 0.00 2019-10-08 17:51:45 2019-10-08 18:08:33 t 1 1 115525 528 0.00 2019-10-08 18:13:36 2019-10-08 18:13:44 t 1 1 115526 468 0.00 2019-10-08 17:39:03 2019-10-08 18:14:35 t 1 1 115530 528 0.00 2019-10-08 18:16:50 2019-10-08 18:17:03 t 1 1 115531 470 0.00 2019-10-08 18:16:44 2019-10-08 18:17:54 t 1 1 115533 220 0.00 2019-10-08 18:17:11 2019-10-08 18:23:34 t 1 2 115535 306 0.00 2019-10-08 18:25:22 2019-10-08 18:27:34 t 1 1 115538 422 0.00 2019-10-08 18:15:25 2019-10-08 18:31:20 t 1 1 115544 468 0.00 2019-10-08 18:14:35 2019-10-08 18:38:45 t 1 1 115545 528 0.00 2019-10-08 18:40:40 2019-10-08 18:42:38 t 1 1 115547 220 0.00 2019-10-08 18:39:56 2019-10-08 18:43:55 t 1 1 115550 220 0.00 2019-10-08 18:14:31 2019-10-08 18:50:19 t 1 2 115554 292 0.00 2019-10-08 18:52:05 2019-10-08 18:53:09 t 1 2 115558 292 0.00 2019-10-08 18:54:34 2019-10-08 18:55:38 t 1 2 115561 412 0.00 2019-10-08 19:00:14 2019-10-08 19:01:24 t 1 1 115562 462 0.00 2019-10-08 19:03:40 2019-10-08 19:04:02 t 1 1 115565 422 0.00 2019-10-08 18:31:20 2019-10-08 19:04:26 t 1 1 115568 466 0.00 2019-10-08 17:56:24 2019-10-08 19:10:26 t 1 1 115569 445 0.00 2019-10-08 19:09:45 2019-10-08 19:12:20 t 1 1 115572 466 0.00 2019-10-08 19:10:26 2019-10-08 19:16:46 t 1 1 115573 481 0.00 2019-10-08 16:35:56 2019-10-08 19:19:11 t 1 1 115577 468 0.00 2019-10-08 19:12:54 2019-10-08 19:21:25 t 1 1 115579 470 0.00 2019-10-08 18:17:54 2019-10-08 19:26:09 t 1 1 115582 544 0.00 2019-10-08 18:04:47 2019-10-08 19:29:23 t 1 1 115586 470 0.00 2019-10-08 19:26:09 2019-10-08 19:34:51 t 1 1 115587 445 0.00 2019-10-08 19:29:18 2019-10-08 19:35:08 t 1 1 115592 498 0.00 2019-10-08 18:35:52 2019-10-08 19:39:45 t 1 2 115593 462 0.00 2019-10-08 19:04:02 2019-10-08 19:40:35 t 1 1 115596 528 0.00 2019-10-08 19:46:09 2019-10-08 19:51:01 t 1 1 115606 451 0.00 2019-10-08 20:15:09 2019-10-08 20:16:10 t 1 1 115614 516 0.00 2019-10-08 20:25:26 2019-10-08 20:28:53 t 1 1 115615 445 0.00 2019-10-08 19:35:27 2019-10-08 20:29:30 t 1 1 115616 538 0.00 2019-10-08 20:12:44 2019-10-08 20:30:23 t 1 1 115623 416 0.00 2019-10-08 20:33:36 2019-10-08 20:36:11 t 1 1 115627 416 0.00 2019-10-08 20:36:26 2019-10-08 20:39:28 t 1 1 115630 325 0.00 2019-10-08 20:15:17 2019-10-08 20:45:24 t 1 2 115632 327 0.00 2019-10-08 20:29:27 2019-10-08 20:45:33 t 1 1 115636 501 0.00 2019-10-08 20:45:26 2019-10-08 20:49:42 t 1 1 115637 306 0.00 2019-10-08 20:36:46 2019-10-08 20:51:48 t 1 1 115645 488 0.00 2019-10-08 20:57:01 2019-10-08 21:02:09 t 1 1 115646 333 0.00 2019-10-08 20:53:28 2019-10-08 21:03:23 t 1 2 115652 538 0.00 2019-10-08 20:53:18 2019-10-08 21:13:41 t 1 1 115657 306 0.00 2019-10-08 21:20:23 2019-10-08 21:22:29 t 1 1 115659 306 0.00 2019-10-08 21:27:33 2019-10-08 21:30:28 t 1 1 115662 327 0.00 2019-10-08 21:30:02 2019-10-08 21:31:38 t 1 1 115666 466 0.00 2019-10-08 21:31:00 2019-10-08 21:35:18 t 1 1 115667 327 0.00 2019-10-08 21:39:03 2019-10-08 21:39:38 t 1 1 115668 466 0.00 2019-10-08 21:35:18 2019-10-08 21:40:50 t 1 1 115669 538 0.00 2019-10-08 21:39:21 2019-10-08 21:41:37 t 1 1 115670 514 0.00 2019-10-08 21:38:44 2019-10-08 21:46:30 t 1 1 115678 470 0.00 2019-10-08 21:51:18 2019-10-08 21:58:20 t 1 1 115680 542 0.00 2019-10-08 22:00:16 2019-10-08 22:03:54 t 1 1 115682 456 0.00 2019-10-08 21:43:23 2019-10-08 22:04:51 t 1 1 115683 306 0.00 2019-10-08 21:30:28 2019-10-08 22:10:29 t 1 1 115688 490 0.00 2019-10-08 21:53:52 2019-10-08 22:23:38 t 1 1 115689 331 0.00 2019-10-08 22:19:26 2019-10-08 22:24:04 t 1 1 115691 422 0.00 2019-10-08 22:00:44 2019-10-08 22:25:18 t 1 1 115692 542 0.00 2019-10-08 22:20:24 2019-10-08 22:25:42 t 1 1 115693 327 0.00 2019-10-08 22:23:44 2019-10-08 22:29:44 t 1 1 115694 470 0.00 2019-10-08 21:59:39 2019-10-08 22:30:06 t 1 1 115697 485 0.00 2019-10-08 22:21:18 2019-10-08 22:31:17 t 1 1 115699 412 0.00 2019-10-08 22:30:46 2019-10-08 22:32:11 t 1 1 115705 327 0.00 2019-10-08 22:38:59 2019-10-08 22:39:55 t 1 1 115712 461 0.00 2019-10-08 22:46:05 2019-10-08 22:52:31 t 1 2 115717 468 0.00 2019-10-08 22:56:27 2019-10-08 23:01:50 t 1 1 115718 296 0.00 2019-10-08 23:04:14 2019-10-08 23:06:38 t 1 2 115720 542 0.00 2019-10-08 23:05:26 2019-10-08 23:09:20 t 1 1 115723 542 0.00 2019-10-08 23:10:28 2019-10-08 23:11:36 t 1 1 115725 445 0.00 2019-10-08 23:11:20 2019-10-08 23:15:53 t 1 1 115727 466 0.00 2019-10-08 22:55:19 2019-10-08 23:18:32 t 1 1 115728 472 0.00 2019-10-08 23:12:46 2019-10-08 23:19:27 t 1 1 115730 485 0.00 2019-10-08 23:15:52 2019-10-08 23:24:49 t 1 1 115741 501 0.00 2019-10-08 23:46:34 2019-10-08 23:46:43 t 1 1 115743 470 0.00 2019-10-08 22:50:06 2019-10-08 23:48:58 t 1 1 115746 466 0.00 2019-10-08 23:47:20 2019-10-08 23:59:12 t 1 1 115747 512 0.00 2019-10-08 23:40:26 2019-10-08 23:59:42 t 1 1 115748 501 0.00 2019-10-08 23:49:30 2019-10-09 00:03:41 t 1 1 115749 468 0.00 2019-10-08 23:59:14 2019-10-09 00:06:51 t 1 1 115751 501 0.00 2019-10-09 00:10:07 2019-10-09 00:10:39 t 1 1 115756 220 0.00 2019-10-09 00:13:42 2019-10-09 00:24:46 t 1 1 115758 412 0.00 2019-10-08 22:34:10 2019-10-09 00:29:00 t 1 1 115771 470 0.00 2019-10-08 23:48:58 2019-10-09 01:43:18 t 1 1 115774 412 0.00 2019-10-09 01:43:38 2019-10-09 01:50:55 t 1 1 115777 468 0.00 2019-10-09 01:23:58 2019-10-09 02:00:02 t 1 1 115778 412 0.00 2019-10-09 01:52:39 2019-10-09 02:01:42 t 1 1 115782 503 0.00 2019-10-09 02:14:21 2019-10-09 02:16:09 t 1 1 115791 518 0.00 2019-10-09 03:25:34 2019-10-09 04:05:39 t 1 2 115793 461 0.00 2019-10-09 03:57:54 2019-10-09 04:18:14 t 1 2 115795 445 0.00 2019-10-09 04:10:53 2019-10-09 04:22:49 t 1 1 115797 516 0.00 2019-10-09 05:23:31 2019-10-09 05:44:46 t 1 1 115802 485 0.00 2019-10-09 06:30:19 2019-10-09 06:32:35 t 1 1 115474 416 0.00 2019-10-08 16:12:19 2019-10-08 16:53:46 t 1 1 115475 461 0.00 2019-10-08 16:16:17 2019-10-08 16:56:22 t 1 2 115476 520 0.00 2019-10-08 16:51:02 2019-10-08 16:57:47 t 1 1 115477 485 0.00 2019-10-08 16:49:08 2019-10-08 16:59:11 t 1 1 115480 470 0.00 2019-10-08 15:30:28 2019-10-08 17:01:25 t 1 1 115482 485 0.00 2019-10-08 16:59:11 2019-10-08 17:05:49 t 1 1 115485 501 0.00 2019-10-08 17:10:03 2019-10-08 17:10:37 t 1 1 115489 306 0.00 2019-10-08 16:45:23 2019-10-08 17:15:42 t 1 1 115490 445 0.00 2019-10-08 17:07:24 2019-10-08 17:18:24 t 1 1 115492 220 0.00 2019-10-08 17:09:37 2019-10-08 17:21:00 t 1 2 115496 416 0.00 2019-10-08 17:24:14 2019-10-08 17:26:39 t 1 1 115499 212 0.00 2019-10-08 17:29:30 2019-10-08 17:29:30 f 1 2 115502 412 0.00 2019-10-08 17:29:34 2019-10-08 17:31:44 t 1 1 115507 306 0.00 2019-10-08 17:40:08 2019-10-08 17:43:05 t 1 1 115509 490 0.00 2019-10-08 17:42:44 2019-10-08 17:48:54 t 1 1 115510 485 0.00 2019-10-08 17:45:18 2019-10-08 17:49:53 t 1 1 115512 490 0.00 2019-10-08 17:48:54 2019-10-08 17:53:16 t 1 1 115513 296 0.00 2019-10-08 17:43:04 2019-10-08 17:54:25 t 1 2 115516 538 0.00 2019-10-08 17:55:42 2019-10-08 17:57:59 t 1 1 115518 528 0.00 2019-10-08 17:55:33 2019-10-08 18:00:36 t 1 1 115527 306 0.00 2019-10-08 18:12:44 2019-10-08 18:15:05 t 1 1 115536 528 0.00 2019-10-08 18:29:21 2019-10-08 18:29:39 t 1 1 115537 412 0.00 2019-10-08 18:21:59 2019-10-08 18:30:57 t 1 1 115540 445 0.00 2019-10-08 17:53:38 2019-10-08 18:32:44 t 1 1 115548 306 0.00 2019-10-08 18:40:37 2019-10-08 18:45:56 t 1 1 115551 416 0.00 2019-10-08 18:08:07 2019-10-08 18:50:39 t 1 1 115552 292 0.00 2019-10-08 18:51:33 2019-10-08 18:51:42 t 1 2 115555 416 0.00 2019-10-08 18:50:44 2019-10-08 18:53:45 t 1 1 115556 445 0.00 2019-10-08 18:38:52 2019-10-08 18:54:58 t 1 1 115563 445 0.00 2019-10-08 18:57:50 2019-10-08 19:04:03 t 1 1 115566 485 0.00 2019-10-08 19:05:43 2019-10-08 19:09:34 t 1 1 115575 306 0.00 2019-10-08 19:16:20 2019-10-08 19:20:17 t 1 1 115580 485 0.00 2019-10-08 19:19:24 2019-10-08 19:27:20 t 1 1 115583 468 0.00 2019-10-08 19:21:25 2019-10-08 19:29:44 t 1 1 115585 516 0.00 2019-10-08 19:01:05 2019-10-08 19:31:09 t 1 1 115589 451 0.00 2019-10-08 19:18:46 2019-10-08 19:35:31 t 1 1 115591 461 0.00 2019-10-08 19:19:59 2019-10-08 19:36:20 t 1 2 115594 456 0.00 2019-10-08 19:20:43 2019-10-08 19:48:08 t 1 1 115599 422 0.00 2019-10-08 19:04:26 2019-10-08 19:58:21 t 1 1 115600 516 0.00 2019-10-08 19:55:34 2019-10-08 20:02:22 t 1 1 115603 462 0.00 2019-10-08 20:07:12 2019-10-08 20:07:25 t 1 1 115604 538 0.00 2019-10-08 19:16:03 2019-10-08 20:10:37 t 1 1 115605 516 0.00 2019-10-08 20:02:37 2019-10-08 20:14:56 t 1 1 115607 327 0.00 2019-10-08 20:18:21 2019-10-08 20:20:16 t 1 1 115613 520 0.00 2019-10-08 20:26:49 2019-10-08 20:27:31 t 1 1 115617 456 0.00 2019-10-08 20:10:05 2019-10-08 20:30:26 t 1 1 115618 485 0.00 2019-10-08 20:26:57 2019-10-08 20:31:37 t 1 1 115620 451 0.00 2019-10-08 20:27:12 2019-10-08 20:32:01 t 1 1 115622 445 0.00 2019-10-08 20:30:55 2019-10-08 20:35:07 t 1 1 115624 470 0.00 2019-10-08 19:38:22 2019-10-08 20:36:14 t 1 1 115626 516 0.00 2019-10-08 20:36:15 2019-10-08 20:38:10 t 1 1 115629 481 0.00 2019-10-08 19:19:11 2019-10-08 20:41:50 t 1 1 115631 501 0.00 2019-10-08 20:41:28 2019-10-08 20:45:26 t 1 1 115633 462 0.00 2019-10-08 20:07:25 2019-10-08 20:45:43 t 1 1 115639 501 0.00 2019-10-08 20:49:42 2019-10-08 20:54:49 t 1 1 115641 327 0.00 2019-10-08 20:55:19 2019-10-08 20:56:50 t 1 1 115642 488 0.00 2019-10-08 20:51:27 2019-10-08 20:57:01 t 1 1 115644 528 0.00 2019-10-08 20:57:48 2019-10-08 21:01:24 t 1 1 115660 466 0.00 2019-10-08 19:35:30 2019-10-08 21:31:00 t 1 1 115664 327 0.00 2019-10-08 21:31:53 2019-10-08 21:31:54 t 1 1 115672 470 0.00 2019-10-08 20:36:14 2019-10-08 21:51:18 t 1 1 115674 372 0.00 2019-10-08 21:53:06 2019-10-08 21:53:13 t 1 2 115676 542 0.00 2019-10-08 21:54:38 2019-10-08 21:56:45 t 1 1 115677 372 0.00 2019-10-08 21:57:06 2019-10-08 21:57:23 t 1 2 115679 470 0.00 2019-10-08 21:58:20 2019-10-08 21:59:49 t 1 1 115685 445 0.00 2019-10-08 20:49:38 2019-10-08 22:18:23 t 1 1 115686 327 0.00 2019-10-08 22:02:24 2019-10-08 22:20:22 t 1 1 115690 481 0.00 2019-10-08 20:42:15 2019-10-08 22:25:08 t 1 1 115695 412 0.00 2019-10-08 20:42:52 2019-10-08 22:30:25 t 1 1 115696 247 0.00 2019-10-08 22:27:33 2019-10-08 22:31:09 t 1 2 115698 220 0.00 2019-10-08 22:03:28 2019-10-08 22:31:51 t 1 2 115700 542 0.00 2019-10-08 22:25:41 2019-10-08 22:33:23 t 1 1 115708 508 0.00 2019-10-08 22:31:13 2019-10-08 22:46:18 t 1 2 115709 508 0.00 2019-10-08 22:43:36 2019-10-08 22:48:16 t 1 2 115714 466 0.00 2019-10-08 21:40:50 2019-10-08 22:55:20 t 1 1 115722 512 0.00 2019-10-08 22:48:56 2019-10-08 23:11:24 t 1 1 115729 512 0.00 2019-10-08 23:11:24 2019-10-08 23:24:06 t 1 1 115734 544 0.00 2019-10-08 23:13:25 2019-10-08 23:33:30 t 1 2 115735 501 0.00 2019-10-08 23:34:20 2019-10-08 23:35:36 t 1 1 115740 422 0.00 2019-10-08 23:07:40 2019-10-08 23:43:39 t 1 1 115745 422 0.00 2019-10-08 23:43:39 2019-10-08 23:54:04 t 1 1 115750 501 0.00 2019-10-09 00:03:41 2019-10-09 00:08:37 t 1 1 115753 544 0.00 2019-10-08 23:30:35 2019-10-09 00:15:41 t 1 2 115755 501 0.00 2019-10-09 00:20:36 2019-10-09 00:20:45 t 1 1 115760 466 0.00 2019-10-08 23:59:12 2019-10-09 00:39:10 t 1 1 115761 220 0.00 2019-10-09 00:32:02 2019-10-09 00:40:34 t 1 1 115762 501 0.00 2019-10-09 00:41:34 2019-10-09 00:41:42 t 1 1 115763 538 0.00 2019-10-09 00:12:38 2019-10-09 00:45:38 t 1 1 115764 501 0.00 2019-10-09 00:52:03 2019-10-09 00:52:12 t 1 1 115765 456 0.00 2019-10-09 00:51:13 2019-10-09 00:56:29 t 1 1 115766 501 0.00 2019-10-09 01:02:32 2019-10-09 01:02:40 t 1 1 115767 538 0.00 2019-10-09 00:48:00 2019-10-09 01:13:16 t 1 1 115768 412 0.00 2019-10-09 00:29:00 2019-10-09 01:17:26 t 1 1 115772 412 0.00 2019-10-09 01:43:23 2019-10-09 01:44:25 t 1 1 115773 514 0.00 2019-10-09 01:42:57 2019-10-09 01:50:15 t 1 1 115775 514 0.00 2019-10-09 01:50:15 2019-10-09 01:56:08 t 1 1 115779 538 0.00 2019-10-09 01:53:58 2019-10-09 02:04:22 t 1 1 115781 422 0.00 2019-10-08 23:54:04 2019-10-09 02:14:43 t 1 1 115783 501 0.00 2019-10-09 01:59:10 2019-10-09 02:33:26 t 1 1 115784 503 0.00 2019-10-09 02:18:07 2019-10-09 02:38:57 t 1 1 115787 501 0.00 2019-10-09 02:53:35 2019-10-09 02:56:03 t 1 1 115790 412 0.00 2019-10-09 02:49:11 2019-10-09 03:59:46 t 1 1 115792 445 0.00 2019-10-08 23:15:53 2019-10-09 04:10:53 t 1 1 115794 412 0.00 2019-10-09 03:59:46 2019-10-09 04:19:05 t 1 1 115800 445 0.00 2019-10-09 06:23:06 2019-10-09 06:24:10 t 1 1 115803 445 0.00 2019-10-09 06:27:00 2019-10-09 06:40:31 t 1 1 115804 516 0.00 2019-10-09 06:27:34 2019-10-09 06:43:46 t 1 1 115524 528 0.00 2019-10-08 18:09:35 2019-10-08 18:10:23 t 1 1 115528 422 0.00 2019-10-08 18:05:56 2019-10-08 18:15:25 t 1 1 115529 470 0.00 2019-10-08 18:08:33 2019-10-08 18:16:27 t 1 1 115532 412 0.00 2019-10-08 17:31:42 2019-10-08 18:20:07 t 1 1 115534 528 0.00 2019-10-08 18:26:53 2019-10-08 18:27:15 t 1 1 115539 461 0.00 2019-10-08 18:22:12 2019-10-08 18:31:35 t 1 2 115541 220 0.00 2019-10-08 18:00:14 2019-10-08 18:32:44 t 1 1 115542 528 0.00 2019-10-08 18:34:44 2019-10-08 18:35:23 t 1 1 115543 516 0.00 2019-10-08 18:12:56 2019-10-08 18:36:34 t 1 1 115546 538 0.00 2019-10-08 18:40:33 2019-10-08 18:43:31 t 1 1 115549 361 0.00 2019-10-08 18:23:29 2019-10-08 18:49:59 t 1 2 115553 306 0.00 2019-10-08 18:51:36 2019-10-08 18:52:59 t 1 1 115557 412 0.00 2019-10-08 18:38:12 2019-10-08 18:55:29 t 1 1 115559 445 0.00 2019-10-08 18:54:58 2019-10-08 18:56:03 t 1 1 115560 445 0.00 2019-10-08 18:56:07 2019-10-08 18:57:16 t 1 1 115564 468 0.00 2019-10-08 18:38:45 2019-10-08 19:04:11 t 1 1 115567 445 0.00 2019-10-08 19:04:28 2019-10-08 19:09:43 t 1 1 115570 485 0.00 2019-10-08 19:11:16 2019-10-08 19:12:29 t 1 1 115571 538 0.00 2019-10-08 18:51:36 2019-10-08 19:15:53 t 1 1 115574 485 0.00 2019-10-08 19:12:29 2019-10-08 19:19:24 t 1 1 115576 466 0.00 2019-10-08 19:16:46 2019-10-08 19:20:41 t 1 1 115578 445 0.00 2019-10-08 19:11:56 2019-10-08 19:24:54 t 1 1 115581 445 0.00 2019-10-08 19:26:39 2019-10-08 19:29:18 t 1 1 115584 466 0.00 2019-10-08 19:20:41 2019-10-08 19:29:48 t 1 1 115588 466 0.00 2019-10-08 19:29:48 2019-10-08 19:35:30 t 1 1 115590 470 0.00 2019-10-08 19:34:51 2019-10-08 19:35:56 t 1 1 115595 514 0.00 2019-10-08 19:42:13 2019-10-08 19:50:15 t 1 1 115597 462 0.00 2019-10-08 19:40:35 2019-10-08 19:52:55 t 1 1 115598 456 0.00 2019-10-08 19:50:47 2019-10-08 19:57:41 t 1 1 115601 462 0.00 2019-10-08 19:53:25 2019-10-08 20:04:26 t 1 1 115602 514 0.00 2019-10-08 19:50:15 2019-10-08 20:05:49 t 1 1 115608 451 0.00 2019-10-08 20:16:10 2019-10-08 20:20:16 t 1 1 115609 520 0.00 2019-10-08 20:15:58 2019-10-08 20:21:02 t 1 1 115610 520 0.00 2019-10-08 20:23:38 2019-10-08 20:26:50 t 1 1 115611 451 0.00 2019-10-08 20:20:41 2019-10-08 20:27:12 t 1 1 115612 528 0.00 2019-10-08 20:26:06 2019-10-08 20:27:17 t 1 1 115619 520 0.00 2019-10-08 20:27:31 2019-10-08 20:31:40 t 1 1 115621 416 0.00 2019-10-08 18:57:51 2019-10-08 20:32:27 t 1 1 115625 412 0.00 2019-10-08 20:22:12 2019-10-08 20:37:41 t 1 1 115628 488 0.00 2019-10-08 20:36:38 2019-10-08 20:41:27 t 1 1 115634 379 0.00 2019-10-08 20:33:43 2019-10-08 20:48:58 t 1 1 115635 445 0.00 2019-10-08 20:48:05 2019-10-08 20:49:38 t 1 1 115638 538 0.00 2019-10-08 20:32:50 2019-10-08 20:52:51 t 1 1 115640 528 0.00 2019-10-08 20:27:16 2019-10-08 20:55:22 t 1 1 115643 327 0.00 2019-10-08 20:56:59 2019-10-08 20:58:13 t 1 1 115647 462 0.00 2019-10-08 20:45:43 2019-10-08 21:08:44 t 1 1 115648 327 0.00 2019-10-08 21:07:57 2019-10-08 21:09:06 t 1 1 115649 462 0.00 2019-10-08 21:08:44 2019-10-08 21:10:53 t 1 1 115650 516 0.00 2019-10-08 21:02:12 2019-10-08 21:12:08 t 1 1 115651 516 0.00 2019-10-08 21:12:12 2019-10-08 21:13:22 t 1 1 115653 516 0.00 2019-10-08 21:17:01 2019-10-08 21:19:06 t 1 1 115654 327 0.00 2019-10-08 21:18:49 2019-10-08 21:20:18 t 1 1 115655 379 0.00 2019-10-08 20:48:58 2019-10-08 21:21:36 t 1 1 115656 451 0.00 2019-10-08 21:16:40 2019-10-08 21:22:03 t 1 1 115658 306 0.00 2019-10-08 21:22:38 2019-10-08 21:27:33 t 1 1 115661 451 0.00 2019-10-08 21:22:03 2019-10-08 21:31:34 t 1 1 115663 327 0.00 2019-10-08 21:31:45 2019-10-08 21:31:46 t 1 1 115665 327 0.00 2019-10-08 21:32:01 2019-10-08 21:32:59 t 1 1 115671 220 0.00 2019-10-08 21:46:25 2019-10-08 21:50:47 t 1 1 115673 327 0.00 2019-10-08 21:49:47 2019-10-08 21:53:03 t 1 1 115675 490 0.00 2019-10-08 21:50:35 2019-10-08 21:53:52 t 1 1 115681 372 0.00 2019-10-08 21:54:07 2019-10-08 22:04:12 t 1 2 115684 485 0.00 2019-10-08 22:14:56 2019-10-08 22:17:30 t 1 1 115687 327 0.00 2019-10-08 22:21:05 2019-10-08 22:23:07 t 1 1 115701 220 0.00 2019-10-08 22:32:20 2019-10-08 22:33:39 t 1 1 115702 456 0.00 2019-10-08 22:13:35 2019-10-08 22:34:18 t 1 1 115703 331 0.00 2019-10-08 22:24:33 2019-10-08 22:37:28 t 1 1 115704 372 0.00 2019-10-08 22:35:05 2019-10-08 22:38:27 t 1 2 115706 468 0.00 2019-10-08 21:59:55 2019-10-08 22:41:24 t 1 1 115707 481 0.00 2019-10-08 22:25:08 2019-10-08 22:45:57 t 1 1 115710 512 0.00 2019-10-08 22:40:06 2019-10-08 22:48:43 t 1 1 115711 470 0.00 2019-10-08 22:33:04 2019-10-08 22:50:06 t 1 1 115713 542 0.00 2019-10-08 22:39:02 2019-10-08 22:53:26 t 1 1 115715 468 0.00 2019-10-08 22:42:43 2019-10-08 22:55:51 t 1 1 115716 327 0.00 2019-10-08 22:49:46 2019-10-08 22:59:08 t 1 1 115719 422 0.00 2019-10-08 22:25:18 2019-10-08 23:07:40 t 1 1 115721 445 0.00 2019-10-08 22:18:31 2019-10-08 23:11:12 t 1 1 115724 331 0.00 2019-10-08 22:37:28 2019-10-08 23:13:28 t 1 1 115726 331 0.00 2019-10-08 23:13:28 2019-10-08 23:18:00 t 1 1 115731 466 0.00 2019-10-08 23:18:32 2019-10-08 23:27:13 t 1 1 115732 331 0.00 2019-10-08 23:17:15 2019-10-08 23:29:31 t 1 1 115733 461 0.00 2019-10-08 23:27:34 2019-10-08 23:30:28 t 1 2 115736 542 0.00 2019-10-08 23:27:52 2019-10-08 23:35:43 t 1 1 115737 501 0.00 2019-10-08 23:35:52 2019-10-08 23:36:05 t 1 1 115738 466 0.00 2019-10-08 23:27:13 2019-10-08 23:37:45 t 1 1 115739 512 0.00 2019-10-08 23:24:06 2019-10-08 23:40:26 t 1 1 115742 466 0.00 2019-10-08 23:37:45 2019-10-08 23:47:20 t 1 1 115744 490 0.00 2019-10-08 23:34:18 2019-10-08 23:53:55 t 1 1 115752 220 0.00 2019-10-08 23:45:32 2019-10-09 00:13:07 t 1 1 115754 512 0.00 2019-10-08 23:59:42 2019-10-09 00:15:45 t 1 1 115757 544 0.00 2019-10-09 00:07:40 2019-10-09 00:27:45 t 1 2 115759 501 0.00 2019-10-09 00:31:05 2019-10-09 00:31:13 t 1 1 115769 528 0.00 2019-10-09 01:23:45 2019-10-09 01:27:49 t 1 1 115770 412 0.00 2019-10-09 01:25:45 2019-10-09 01:38:59 t 1 1 115776 501 0.00 2019-10-09 01:10:18 2019-10-09 01:59:10 t 1 1 115780 412 0.00 2019-10-09 02:01:42 2019-10-09 02:06:30 t 1 1 115785 501 0.00 2019-10-09 02:33:26 2019-10-09 02:49:00 t 1 1 115786 501 0.00 2019-10-09 02:49:52 2019-10-09 02:49:53 t 1 1 115788 501 0.00 2019-10-09 02:56:44 2019-10-09 02:58:02 t 1 1 115789 499 0.00 2019-10-08 23:36:13 2019-10-09 03:58:27 t 1 1 115796 485 0.00 2019-10-09 05:35:57 2019-10-09 05:40:08 t 1 1 115798 412 0.00 2019-10-09 04:19:05 2019-10-09 06:09:29 t 1 1 115799 445 0.00 2019-10-09 04:22:16 2019-10-09 06:22:53 t 1 1 115801 445 0.00 2019-10-09 06:24:13 2019-10-09 06:26:52 t 1 1 115805 445 0.00 2019-10-09 06:40:40 2019-10-09 06:45:13 t 1 1 115809 445 0.00 2019-10-09 07:19:43 2019-10-09 07:21:43 t 1 1 115811 445 0.00 2019-10-09 07:25:39 2019-10-09 07:27:11 t 1 1 115806 485 0.00 2019-10-09 06:41:08 2019-10-09 06:45:58 t 1 1 115808 445 0.00 2019-10-09 06:45:13 2019-10-09 07:18:50 t 1 1 115810 416 0.00 2019-10-09 07:14:56 2019-10-09 07:22:22 t 1 1 115819 520 0.00 2019-10-09 07:43:28 2019-10-09 07:53:29 t 1 1 115823 306 0.00 2019-10-09 08:06:41 2019-10-09 08:10:06 t 1 1 115828 306 0.00 2019-10-09 08:14:26 2019-10-09 08:25:56 t 1 1 115831 306 0.00 2019-10-09 08:25:56 2019-10-09 08:33:54 t 1 1 115833 512 0.00 2019-10-09 08:33:57 2019-10-09 08:38:38 t 1 1 115839 220 0.00 2019-10-09 08:42:16 2019-10-09 08:45:39 t 1 2 115841 306 0.00 2019-10-09 08:49:14 2019-10-09 08:50:29 t 1 1 115852 520 0.00 2019-10-09 09:10:43 2019-10-09 09:13:25 t 1 1 115855 220 0.00 2019-10-09 09:04:40 2019-10-09 09:19:03 t 1 2 115856 306 0.00 2019-10-09 09:13:14 2019-10-09 09:20:37 t 1 1 115862 445 0.00 2019-10-09 09:35:05 2019-10-09 09:36:21 t 1 1 115866 306 0.00 2019-10-09 09:35:28 2019-10-09 09:41:26 t 1 1 115872 516 0.00 2019-10-09 09:48:50 2019-10-09 09:55:45 t 1 1 115877 306 0.00 2019-10-09 09:54:18 2019-10-09 10:00:10 t 1 1 115878 327 0.00 2019-10-09 09:45:10 2019-10-09 10:06:29 t 1 1 115880 545 0.00 2019-10-09 10:06:55 2019-10-09 10:12:09 t 1 1 115883 375 0.00 2019-10-09 09:55:43 2019-10-09 10:16:31 t 1 1 115885 485 0.00 2019-10-09 10:12:46 2019-10-09 10:17:06 t 1 1 115888 445 0.00 2019-10-09 10:18:46 2019-10-09 10:20:37 t 1 1 115889 422 0.00 2019-10-09 10:13:18 2019-10-09 10:23:30 t 1 1 115890 306 0.00 2019-10-09 10:09:52 2019-10-09 10:25:11 t 1 1 115891 512 0.00 2019-10-09 10:24:35 2019-10-09 10:26:48 t 1 1 115895 526 0.00 2019-10-09 10:34:38 2019-10-09 10:37:22 t 1 1 115900 445 0.00 2019-10-09 10:29:36 2019-10-09 10:42:23 t 1 1 115902 501 0.00 2019-10-09 10:40:41 2019-10-09 10:46:09 t 1 1 115908 470 0.00 2019-10-09 10:58:22 2019-10-09 11:11:36 t 1 1 115913 445 0.00 2019-10-09 10:55:21 2019-10-09 11:21:52 t 1 1 115916 501 0.00 2019-10-09 11:20:48 2019-10-09 11:29:15 t 1 1 115917 481 0.00 2019-10-09 09:44:40 2019-10-09 11:31:43 t 1 1 115922 445 0.00 2019-10-09 11:21:57 2019-10-09 11:39:48 t 1 1 115923 445 0.00 2019-10-09 11:39:15 2019-10-09 11:40:29 t 1 1 115926 445 0.00 2019-10-09 11:40:46 2019-10-09 11:47:39 t 1 1 115928 501 0.00 2019-10-09 11:49:20 2019-10-09 11:50:03 t 1 1 115934 331 0.00 2019-10-09 11:35:23 2019-10-09 12:00:05 t 1 1 115935 445 0.00 2019-10-09 11:48:09 2019-10-09 12:01:16 t 1 1 115936 306 0.00 2019-10-09 11:52:00 2019-10-09 12:03:41 t 1 1 115939 456 0.00 2019-10-09 12:12:42 2019-10-09 12:16:01 t 1 1 115943 331 0.00 2019-10-09 12:00:05 2019-10-09 12:26:49 t 1 1 115944 545 0.00 2019-10-09 12:21:17 2019-10-09 12:28:25 t 1 1 115946 542 0.00 2019-10-09 12:16:41 2019-10-09 12:31:58 t 1 1 115948 445 0.00 2019-10-09 12:34:36 2019-10-09 12:35:11 t 1 1 115960 331 0.00 2019-10-09 12:26:03 2019-10-09 12:53:04 t 1 1 115965 445 0.00 2019-10-09 12:54:39 2019-10-09 13:06:42 t 1 1 115967 331 0.00 2019-10-09 12:53:09 2019-10-09 13:16:56 t 1 1 115970 361 0.00 2019-10-09 12:51:11 2019-10-09 13:26:43 t 1 2 115972 327 0.00 2019-10-09 13:00:59 2019-10-09 13:36:13 t 1 1 115976 468 0.00 2019-10-09 13:38:54 2019-10-09 13:46:48 t 1 1 115977 292 0.00 2019-10-09 13:47:17 2019-10-09 13:47:20 t 1 2 115980 544 0.00 2019-10-09 13:42:47 2019-10-09 13:50:34 t 1 2 115982 544 0.00 2019-10-09 13:41:46 2019-10-09 13:51:53 t 1 2 115984 375 0.00 2019-10-09 13:01:31 2019-10-09 13:53:55 t 1 1 115987 292 0.00 2019-10-09 13:55:42 2019-10-09 13:56:03 t 1 2 115991 445 0.00 2019-10-09 13:56:29 2019-10-09 13:59:49 t 1 1 115994 220 0.00 2019-10-09 13:56:38 2019-10-09 14:10:01 t 1 2 115998 538 0.00 2019-10-09 13:49:24 2019-10-09 14:14:40 t 1 1 116001 445 0.00 2019-10-09 14:16:39 2019-10-09 14:26:08 t 1 1 116007 331 0.00 2019-10-09 13:16:56 2019-10-09 14:33:02 t 1 1 116010 501 0.00 2019-10-09 14:33:55 2019-10-09 14:35:32 t 1 1 116012 306 0.00 2019-10-09 14:31:18 2019-10-09 14:36:37 t 1 1 116014 327 0.00 2019-10-09 14:35:04 2019-10-09 14:37:00 t 1 1 116017 528 0.00 2019-10-09 14:36:48 2019-10-09 14:38:55 t 1 1 116026 508 0.00 2019-10-09 14:52:40 2019-10-09 14:54:56 t 1 2 116028 468 0.00 2019-10-09 14:34:49 2019-10-09 14:58:23 t 1 1 116033 306 0.00 2019-10-09 14:56:07 2019-10-09 15:12:20 t 1 1 116038 375 0.00 2019-10-09 14:48:05 2019-10-09 15:17:21 t 1 1 116040 501 0.00 2019-10-09 15:14:59 2019-10-09 15:17:28 t 1 1 116042 327 0.00 2019-10-09 15:14:09 2019-10-09 15:17:48 t 1 1 116046 306 0.00 2019-10-09 15:17:50 2019-10-09 15:21:13 t 1 1 116055 220 0.00 2019-10-09 15:30:10 2019-10-09 15:40:33 t 1 1 116056 361 0.00 2019-10-09 14:45:58 2019-10-09 15:42:39 t 1 2 116059 306 0.00 2019-10-09 15:41:32 2019-10-09 15:48:50 t 1 1 116061 422 0.00 2019-10-09 14:02:54 2019-10-09 15:50:28 t 1 1 116062 220 0.00 2019-10-09 15:40:33 2019-10-09 15:51:05 t 1 1 116069 520 0.00 2019-10-09 15:18:10 2019-10-09 16:14:37 t 1 1 116070 327 0.00 2019-10-09 16:05:30 2019-10-09 16:15:35 t 1 1 116073 416 0.00 2019-10-09 14:32:47 2019-10-09 16:20:30 t 1 1 116074 327 0.00 2019-10-09 16:21:11 2019-10-09 16:25:51 t 1 1 116075 220 0.00 2019-10-09 16:18:43 2019-10-09 16:26:15 t 1 1 116077 327 0.00 2019-10-09 16:26:12 2019-10-09 16:27:29 t 1 1 116079 472 0.00 2019-10-09 16:31:50 2019-10-09 16:36:42 t 1 1 116082 520 0.00 2019-10-09 16:27:48 2019-10-09 16:42:55 t 1 1 116083 516 0.00 2019-10-09 16:18:47 2019-10-09 16:45:39 t 1 1 116084 445 0.00 2019-10-09 15:50:22 2019-10-09 16:46:14 t 1 1 116088 220 0.00 2019-10-09 16:49:59 2019-10-09 16:50:35 t 1 1 116091 538 0.00 2019-10-09 16:27:32 2019-10-09 16:52:43 t 1 1 116095 472 0.00 2019-10-09 16:58:02 2019-10-09 17:02:17 t 1 1 116097 306 0.00 2019-10-09 16:54:09 2019-10-09 17:06:04 t 1 1 116105 456 0.00 2019-10-09 16:59:20 2019-10-09 17:29:10 t 1 1 116107 416 0.00 2019-10-09 17:26:45 2019-10-09 17:31:48 t 1 1 116109 416 0.00 2019-10-09 17:31:40 2019-10-09 17:35:28 t 1 1 116112 327 0.00 2019-10-09 17:34:35 2019-10-09 17:40:09 t 1 1 116115 468 0.00 2019-10-09 16:45:56 2019-10-09 17:42:19 t 1 1 116116 516 0.00 2019-10-09 17:36:36 2019-10-09 17:43:12 t 1 1 116118 508 0.00 2019-10-09 14:36:41 2019-10-09 17:48:09 t 1 2 116122 512 0.00 2019-10-09 17:50:48 2019-10-09 17:50:56 t 1 1 116123 512 0.00 2019-10-09 17:50:56 2019-10-09 17:51:03 t 1 1 116126 512 0.00 2019-10-09 17:51:19 2019-10-09 17:51:30 t 1 1 116131 512 0.00 2019-10-09 17:52:09 2019-10-09 17:52:18 t 1 1 116134 512 0.00 2019-10-09 17:52:39 2019-10-09 17:52:48 t 1 1 116135 512 0.00 2019-10-09 17:52:48 2019-10-09 17:52:59 t 1 1 116139 512 0.00 2019-10-09 17:53:33 2019-10-09 17:53:44 t 1 1 116145 512 0.00 2019-10-09 17:54:24 2019-10-09 17:54:35 t 1 1 116148 512 0.00 2019-10-09 17:54:59 2019-10-09 17:55:09 t 1 1 116152 512 0.00 2019-10-09 17:55:43 2019-10-09 17:55:54 t 1 1 115807 416 0.00 2019-10-08 20:40:21 2019-10-09 07:14:56 t 1 1 115813 520 0.00 2019-10-09 07:33:38 2019-10-09 07:42:36 t 1 1 115815 485 0.00 2019-10-09 07:43:19 2019-10-09 07:46:30 t 1 1 115817 412 0.00 2019-10-09 06:13:06 2019-10-09 07:53:05 t 1 1 115818 516 0.00 2019-10-09 07:49:32 2019-10-09 07:53:17 t 1 1 115821 542 0.00 2019-10-09 07:57:21 2019-10-09 08:01:11 t 1 1 115824 306 0.00 2019-10-09 08:12:09 2019-10-09 08:13:47 t 1 1 115826 538 0.00 2019-10-09 08:05:43 2019-10-09 08:17:10 t 1 1 115827 542 0.00 2019-10-09 08:17:02 2019-10-09 08:22:31 t 1 1 115832 516 0.00 2019-10-09 08:01:16 2019-10-09 08:35:06 t 1 1 115838 220 0.00 2019-10-09 08:45:00 2019-10-09 08:45:02 t 1 2 115842 445 0.00 2019-10-09 07:26:23 2019-10-09 08:55:59 t 1 1 115844 327 0.00 2019-10-09 08:41:35 2019-10-09 08:59:56 t 1 1 115845 416 0.00 2019-10-09 08:33:43 2019-10-09 09:08:10 t 1 1 115847 306 0.00 2019-10-09 08:55:08 2019-10-09 09:09:56 t 1 1 115848 520 0.00 2019-10-09 09:01:50 2019-10-09 09:10:41 t 1 1 115850 416 0.00 2019-10-09 09:11:27 2019-10-09 09:12:53 t 1 1 115853 416 0.00 2019-10-09 09:12:52 2019-10-09 09:13:55 t 1 1 115859 445 0.00 2019-10-09 09:10:56 2019-10-09 09:35:02 t 1 1 115861 327 0.00 2019-10-09 09:16:33 2019-10-09 09:35:15 t 1 1 115863 445 0.00 2019-10-09 09:37:04 2019-10-09 09:38:10 t 1 1 115867 516 0.00 2019-10-09 09:40:32 2019-10-09 09:42:36 t 1 1 115870 481 0.00 2019-10-09 08:23:37 2019-10-09 09:44:40 t 1 1 115873 512 0.00 2019-10-09 09:53:30 2019-10-09 09:56:24 t 1 1 115882 422 0.00 2019-10-09 10:00:04 2019-10-09 10:13:18 t 1 1 115887 327 0.00 2019-10-09 10:06:51 2019-10-09 10:20:11 t 1 1 115893 445 0.00 2019-10-09 10:20:51 2019-10-09 10:29:36 t 1 1 115894 339 0.00 2019-10-09 09:36:41 2019-10-09 10:33:03 t 1 2 115898 542 0.00 2019-10-09 10:38:19 2019-10-09 10:39:32 t 1 1 115899 306 0.00 2019-10-09 10:37:34 2019-10-09 10:40:15 t 1 1 115907 416 0.00 2019-10-09 10:50:13 2019-10-09 11:07:37 t 1 1 115909 412 0.00 2019-10-09 07:53:05 2019-10-09 11:14:09 t 1 1 115912 375 0.00 2019-10-09 10:16:31 2019-10-09 11:21:36 t 1 1 115918 416 0.00 2019-10-09 11:08:10 2019-10-09 11:34:47 t 1 1 115919 501 0.00 2019-10-09 11:34:34 2019-10-09 11:36:10 t 1 1 115921 501 0.00 2019-10-09 11:37:15 2019-10-09 11:38:50 t 1 1 115924 306 0.00 2019-10-09 11:31:29 2019-10-09 11:40:53 t 1 1 115927 375 0.00 2019-10-09 11:22:18 2019-10-09 11:48:09 t 1 1 115930 501 0.00 2019-10-09 11:51:02 2019-10-09 11:52:15 t 1 1 115933 416 0.00 2019-10-09 11:36:08 2019-10-09 11:59:03 t 1 1 115938 375 0.00 2019-10-09 11:48:10 2019-10-09 12:09:23 t 1 1 115947 445 0.00 2019-10-09 12:31:52 2019-10-09 12:34:37 t 1 1 115954 247 0.00 2019-10-09 12:40:23 2019-10-09 12:45:12 t 1 2 115956 445 0.00 2019-10-09 12:39:21 2019-10-09 12:48:24 t 1 1 115958 481 0.00 2019-10-09 11:31:43 2019-10-09 12:50:07 t 1 1 115963 327 0.00 2019-10-09 10:21:39 2019-10-09 13:00:59 t 1 1 115968 545 0.00 2019-10-09 12:42:36 2019-10-09 13:17:45 t 1 1 115969 306 0.00 2019-10-09 13:15:37 2019-10-09 13:21:49 t 1 1 115973 445 0.00 2019-10-09 13:06:46 2019-10-09 13:41:10 t 1 1 115975 538 0.00 2019-10-09 13:41:12 2019-10-09 13:46:17 t 1 1 115981 445 0.00 2019-10-09 13:41:21 2019-10-09 13:51:46 t 1 1 115983 327 0.00 2019-10-09 13:46:09 2019-10-09 13:52:16 t 1 1 115985 292 0.00 2019-10-09 13:54:49 2019-10-09 13:54:54 t 1 2 115986 445 0.00 2019-10-09 13:53:21 2019-10-09 13:54:58 t 1 1 115989 220 0.00 2019-10-09 13:45:56 2019-10-09 13:57:20 t 1 2 115990 306 0.00 2019-10-09 13:54:37 2019-10-09 13:58:59 t 1 1 115993 306 0.00 2019-10-09 14:02:43 2019-10-09 14:05:43 t 1 1 115995 375 0.00 2019-10-09 13:53:55 2019-10-09 14:10:25 t 1 1 115997 220 0.00 2019-10-09 13:53:59 2019-10-09 14:14:06 t 1 2 116000 220 0.00 2019-10-09 14:13:48 2019-10-09 14:19:11 t 1 2 116002 327 0.00 2019-10-09 14:04:35 2019-10-09 14:26:47 t 1 1 116003 306 0.00 2019-10-09 14:26:22 2019-10-09 14:28:47 t 1 1 116006 508 0.00 2019-10-09 14:24:50 2019-10-09 14:32:03 t 1 2 116015 327 0.00 2019-10-09 14:37:14 2019-10-09 14:37:15 t 1 1 116016 327 0.00 2019-10-09 14:37:25 2019-10-09 14:38:25 t 1 1 116018 375 0.00 2019-10-09 14:10:25 2019-10-09 14:39:00 t 1 1 116022 375 0.00 2019-10-09 14:45:25 2019-10-09 14:46:45 t 1 1 116024 327 0.00 2019-10-09 14:48:21 2019-10-09 14:49:56 t 1 1 116025 538 0.00 2019-10-09 14:14:45 2019-10-09 14:52:29 t 1 1 116027 520 0.00 2019-10-09 14:36:52 2019-10-09 14:56:38 t 1 1 116030 327 0.00 2019-10-09 14:59:53 2019-10-09 15:01:45 t 1 1 116032 501 0.00 2019-10-09 14:48:00 2019-10-09 15:08:53 t 1 1 116034 327 0.00 2019-10-09 15:11:40 2019-10-09 15:12:41 t 1 1 116037 526 0.00 2019-10-09 15:13:29 2019-10-09 15:15:35 t 1 1 116041 306 0.00 2019-10-09 15:12:20 2019-10-09 15:17:44 t 1 1 116044 501 0.00 2019-10-09 15:17:37 2019-10-09 15:18:56 t 1 1 116047 526 0.00 2019-10-09 15:15:51 2019-10-09 15:21:58 t 1 1 116049 468 0.00 2019-10-09 14:58:23 2019-10-09 15:27:15 t 1 1 116054 468 0.00 2019-10-09 15:27:15 2019-10-09 15:34:40 t 1 1 116057 466 0.00 2019-10-09 15:45:12 2019-10-09 15:46:22 t 1 1 116058 445 0.00 2019-10-09 14:26:07 2019-10-09 15:48:30 t 1 1 116060 499 0.00 2019-10-09 15:27:38 2019-10-09 15:49:09 t 1 1 116065 498 0.00 2019-10-09 15:45:41 2019-10-09 16:04:41 t 1 2 116066 327 0.00 2019-10-09 15:34:27 2019-10-09 16:05:30 t 1 1 116067 247 0.00 2019-10-09 16:03:50 2019-10-09 16:05:59 t 1 2 116072 327 0.00 2019-10-09 16:19:05 2019-10-09 16:20:07 t 1 1 116078 538 0.00 2019-10-09 15:42:00 2019-10-09 16:27:41 t 1 1 116080 327 0.00 2019-10-09 16:37:23 2019-10-09 16:37:57 t 1 1 116085 327 0.00 2019-10-09 16:47:53 2019-10-09 16:48:26 t 1 1 116087 445 0.00 2019-10-09 16:46:18 2019-10-09 16:50:03 t 1 1 116090 470 0.00 2019-10-09 16:07:05 2019-10-09 16:52:29 t 1 1 116092 422 0.00 2019-10-09 15:50:28 2019-10-09 16:55:32 t 1 1 116099 416 0.00 2019-10-09 16:20:47 2019-10-09 17:15:09 t 1 1 116100 445 0.00 2019-10-09 17:00:59 2019-10-09 17:19:00 t 1 1 116101 408 0.00 2019-10-09 17:23:53 2019-10-09 17:24:01 t 1 1 116103 416 0.00 2019-10-09 17:16:09 2019-10-09 17:26:37 t 1 1 116104 445 0.00 2019-10-09 17:19:11 2019-10-09 17:27:33 t 1 1 116110 445 0.00 2019-10-09 17:31:58 2019-10-09 17:38:49 t 1 1 116111 416 0.00 2019-10-09 17:36:03 2019-10-09 17:39:08 t 1 1 116120 512 0.00 2019-10-09 17:36:49 2019-10-09 17:50:13 t 1 1 116121 512 0.00 2019-10-09 17:50:13 2019-10-09 17:50:48 t 1 1 116124 512 0.00 2019-10-09 17:51:03 2019-10-09 17:51:11 t 1 1 116127 512 0.00 2019-10-09 17:51:30 2019-10-09 17:51:40 t 1 1 116128 512 0.00 2019-10-09 17:51:40 2019-10-09 17:51:53 t 1 1 116129 512 0.00 2019-10-09 17:51:53 2019-10-09 17:52:01 t 1 1 116132 512 0.00 2019-10-09 17:52:18 2019-10-09 17:52:29 t 1 1 116136 512 0.00 2019-10-09 17:52:59 2019-10-09 17:53:12 t 1 1 115812 306 0.00 2019-10-09 07:19:36 2019-10-09 07:37:17 t 1 1 115814 485 0.00 2019-10-09 07:31:57 2019-10-09 07:43:19 t 1 1 115816 416 0.00 2019-10-09 07:22:37 2019-10-09 07:51:29 t 1 1 115820 542 0.00 2019-10-09 07:52:12 2019-10-09 07:55:34 t 1 1 115822 538 0.00 2019-10-09 07:58:38 2019-10-09 08:05:43 t 1 1 115825 481 0.00 2019-10-09 07:11:19 2019-10-09 08:15:10 t 1 1 115829 488 0.00 2019-10-09 08:21:47 2019-10-09 08:32:18 t 1 1 115830 416 0.00 2019-10-09 07:53:12 2019-10-09 08:33:43 t 1 1 115834 488 0.00 2019-10-09 08:32:18 2019-10-09 08:38:45 t 1 1 115835 488 0.00 2019-10-09 08:38:45 2019-10-09 08:40:47 t 1 1 115836 538 0.00 2019-10-09 08:22:25 2019-10-09 08:43:39 t 1 1 115837 542 0.00 2019-10-09 08:40:04 2019-10-09 08:44:36 t 1 1 115840 306 0.00 2019-10-09 08:44:01 2019-10-09 08:48:50 t 1 1 115843 542 0.00 2019-10-09 08:52:42 2019-10-09 08:56:47 t 1 1 115846 325 0.00 2019-10-09 08:24:19 2019-10-09 09:09:24 t 1 2 115849 445 0.00 2019-10-09 08:56:11 2019-10-09 09:11:45 t 1 1 115851 247 0.00 2019-10-09 09:12:17 2019-10-09 09:13:08 t 1 2 115854 327 0.00 2019-10-09 08:59:56 2019-10-09 09:16:33 t 1 1 115857 514 0.00 2019-10-09 09:23:07 2019-10-09 09:27:25 t 1 1 115858 512 0.00 2019-10-09 08:53:09 2019-10-09 09:29:54 t 1 1 115860 512 0.00 2019-10-09 09:30:33 2019-10-09 09:35:12 t 1 1 115864 327 0.00 2019-10-09 09:35:15 2019-10-09 09:40:24 t 1 1 115865 416 0.00 2019-10-09 09:13:55 2019-10-09 09:40:54 t 1 1 115868 422 0.00 2019-10-09 02:14:43 2019-10-09 09:43:55 t 1 1 115869 445 0.00 2019-10-09 09:40:22 2019-10-09 09:44:19 t 1 1 115871 375 0.00 2019-10-09 09:53:39 2019-10-09 09:55:19 t 1 1 115874 445 0.00 2019-10-09 09:45:01 2019-10-09 09:57:29 t 1 1 115875 445 0.00 2019-10-09 09:57:46 2019-10-09 09:59:56 t 1 1 115876 422 0.00 2019-10-09 09:43:55 2019-10-09 10:00:03 t 1 1 115879 501 0.00 2019-10-09 09:52:38 2019-10-09 10:11:15 t 1 1 115881 445 0.00 2019-10-09 10:00:53 2019-10-09 10:12:16 t 1 1 115884 545 0.00 2019-10-09 10:13:09 2019-10-09 10:16:35 t 1 1 115886 416 0.00 2019-10-09 09:40:54 2019-10-09 10:20:02 t 1 1 115892 306 0.00 2019-10-09 10:25:11 2019-10-09 10:27:56 t 1 1 115896 512 0.00 2019-10-09 10:26:52 2019-10-09 10:38:02 t 1 1 115897 526 0.00 2019-10-09 10:37:22 2019-10-09 10:39:11 t 1 1 115901 445 0.00 2019-10-09 10:43:19 2019-10-09 10:44:35 t 1 1 115903 416 0.00 2019-10-09 10:20:02 2019-10-09 10:46:47 t 1 1 115904 445 0.00 2019-10-09 10:45:22 2019-10-09 10:48:44 t 1 1 115905 445 0.00 2019-10-09 10:49:17 2019-10-09 10:54:35 t 1 1 115906 545 0.00 2019-10-09 10:55:29 2019-10-09 10:58:52 t 1 1 115910 306 0.00 2019-10-09 11:01:27 2019-10-09 11:14:15 t 1 1 115911 501 0.00 2019-10-09 10:49:05 2019-10-09 11:15:19 t 1 1 115914 375 0.00 2019-10-09 11:21:36 2019-10-09 11:22:18 t 1 1 115915 512 0.00 2019-10-09 10:50:42 2019-10-09 11:28:32 t 1 1 115920 501 0.00 2019-10-09 11:36:20 2019-10-09 11:36:30 t 1 1 115925 501 0.00 2019-10-09 11:38:57 2019-10-09 11:41:12 t 1 1 115929 470 0.00 2019-10-09 11:12:16 2019-10-09 11:52:08 t 1 1 115931 456 0.00 2019-10-09 11:50:51 2019-10-09 11:53:00 t 1 1 115932 516 0.00 2019-10-09 11:52:00 2019-10-09 11:58:58 t 1 1 115937 542 0.00 2019-10-09 11:28:03 2019-10-09 12:07:08 t 1 1 115940 542 0.00 2019-10-09 12:07:08 2019-10-09 12:16:41 t 1 1 115941 412 0.00 2019-10-09 11:14:09 2019-10-09 12:25:39 t 1 1 115942 528 0.00 2019-10-09 12:13:37 2019-10-09 12:26:01 t 1 1 115945 445 0.00 2019-10-09 12:01:16 2019-10-09 12:31:53 t 1 1 115949 306 0.00 2019-10-09 12:24:10 2019-10-09 12:35:28 t 1 1 115950 542 0.00 2019-10-09 12:31:58 2019-10-09 12:37:43 t 1 1 115951 445 0.00 2019-10-09 12:35:11 2019-10-09 12:39:18 t 1 1 115952 545 0.00 2019-10-09 12:28:25 2019-10-09 12:42:36 t 1 1 115953 542 0.00 2019-10-09 12:40:58 2019-10-09 12:43:43 t 1 1 115955 516 0.00 2019-10-09 12:40:55 2019-10-09 12:46:32 t 1 1 115957 536 0.00 2019-10-09 12:49:33 2019-10-09 12:49:59 t 1 1 115959 445 0.00 2019-10-09 12:48:24 2019-10-09 12:52:28 t 1 1 115961 466 0.00 2019-10-09 12:04:04 2019-10-09 12:58:51 t 1 1 115962 466 0.00 2019-10-09 12:58:51 2019-10-09 12:59:52 t 1 1 115964 375 0.00 2019-10-09 12:09:27 2019-10-09 13:01:16 t 1 1 115966 542 0.00 2019-10-09 12:50:34 2019-10-09 13:12:57 t 1 1 115971 542 0.00 2019-10-09 13:12:57 2019-10-09 13:30:23 t 1 1 115974 538 0.00 2019-10-09 13:28:47 2019-10-09 13:41:12 t 1 1 115978 306 0.00 2019-10-09 13:41:29 2019-10-09 13:47:44 t 1 1 115979 292 0.00 2019-10-09 13:48:03 2019-10-09 13:48:06 t 1 2 115988 445 0.00 2019-10-09 13:55:39 2019-10-09 13:56:21 t 1 1 115992 422 0.00 2019-10-09 10:23:30 2019-10-09 14:02:54 t 1 1 115996 470 0.00 2019-10-09 11:58:54 2019-10-09 14:12:59 t 1 1 115999 445 0.00 2019-10-09 14:00:57 2019-10-09 14:15:47 t 1 1 116004 501 0.00 2019-10-09 14:18:47 2019-10-09 14:31:41 t 1 1 116005 501 0.00 2019-10-09 14:31:51 2019-10-09 14:32:00 t 1 1 116008 327 0.00 2019-10-09 14:30:30 2019-10-09 14:33:49 t 1 1 116009 468 0.00 2019-10-09 14:11:01 2019-10-09 14:34:00 t 1 1 116011 508 0.00 2019-10-09 14:32:10 2019-10-09 14:35:44 t 1 2 116013 520 0.00 2019-10-09 14:29:15 2019-10-09 14:36:53 t 1 1 116019 375 0.00 2019-10-09 14:39:00 2019-10-09 14:40:41 t 1 1 116020 501 0.00 2019-10-09 14:40:35 2019-10-09 14:41:08 t 1 1 116021 375 0.00 2019-10-09 14:40:41 2019-10-09 14:45:25 t 1 1 116023 375 0.00 2019-10-09 14:46:45 2019-10-09 14:48:05 t 1 1 116029 520 0.00 2019-10-09 14:56:46 2019-10-09 15:01:36 t 1 1 116031 296 0.00 2019-10-09 15:02:14 2019-10-09 15:05:14 t 1 2 116035 499 0.00 2019-10-09 15:03:12 2019-10-09 15:14:09 t 1 1 116036 499 0.00 2019-10-09 15:14:09 2019-10-09 15:15:21 t 1 1 116039 499 0.00 2019-10-09 15:15:21 2019-10-09 15:17:25 t 1 1 116043 538 0.00 2019-10-09 14:52:29 2019-10-09 15:18:50 t 1 1 116045 327 0.00 2019-10-09 15:19:36 2019-10-09 15:20:05 t 1 1 116048 512 0.00 2019-10-09 14:21:17 2019-10-09 15:26:59 t 1 1 116050 499 0.00 2019-10-09 15:17:27 2019-10-09 15:27:38 t 1 1 116051 481 0.00 2019-10-09 12:57:27 2019-10-09 15:28:24 t 1 1 116052 501 0.00 2019-10-09 15:29:20 2019-10-09 15:30:44 t 1 1 116053 327 0.00 2019-10-09 15:22:25 2019-10-09 15:34:27 t 1 1 116063 461 0.00 2019-10-09 15:41:48 2019-10-09 15:51:53 t 1 2 116064 412 0.00 2019-10-09 12:25:39 2019-10-09 16:02:45 t 1 1 116068 470 0.00 2019-10-09 14:12:59 2019-10-09 16:07:05 t 1 1 116071 461 0.00 2019-10-09 15:55:19 2019-10-09 16:15:39 t 1 2 116076 520 0.00 2019-10-09 16:14:36 2019-10-09 16:26:51 t 1 1 116081 461 0.00 2019-10-09 16:29:23 2019-10-09 16:39:29 t 1 2 116086 220 0.00 2019-10-09 16:44:51 2019-10-09 16:49:59 t 1 1 116089 512 0.00 2019-10-09 16:37:19 2019-10-09 16:52:29 t 1 1 116093 327 0.00 2019-10-09 16:58:21 2019-10-09 17:00:52 t 1 1 116094 445 0.00 2019-10-09 16:51:05 2019-10-09 17:00:59 t 1 1 116096 538 0.00 2019-10-09 16:52:43 2019-10-09 17:04:34 t 1 1 116098 306 0.00 2019-10-09 17:09:24 2019-10-09 17:15:06 t 1 1 116102 408 0.00 2019-10-09 17:24:05 2019-10-09 17:24:28 t 1 1 116106 445 0.00 2019-10-09 17:27:58 2019-10-09 17:31:39 t 1 1 116108 327 0.00 2019-10-09 17:02:20 2019-10-09 17:33:31 t 1 1 116113 538 0.00 2019-10-09 17:05:56 2019-10-09 17:40:42 t 1 1 116114 416 0.00 2019-10-09 17:39:18 2019-10-09 17:42:05 t 1 1 116117 327 0.00 2019-10-09 17:43:57 2019-10-09 17:45:45 t 1 1 116119 306 0.00 2019-10-09 17:47:42 2019-10-09 17:50:10 t 1 1 116125 512 0.00 2019-10-09 17:51:11 2019-10-09 17:51:19 t 1 1 116130 512 0.00 2019-10-09 17:52:01 2019-10-09 17:52:09 t 1 1 116133 512 0.00 2019-10-09 17:52:29 2019-10-09 17:52:39 t 1 1 116137 512 0.00 2019-10-09 17:53:12 2019-10-09 17:53:22 t 1 1 116138 512 0.00 2019-10-09 17:53:22 2019-10-09 17:53:33 t 1 1 116142 379 0.00 2019-10-09 10:27:08 2019-10-09 17:54:05 t 1 1 116144 512 0.00 2019-10-09 17:54:14 2019-10-09 17:54:24 t 1 1 116147 512 0.00 2019-10-09 17:54:44 2019-10-09 17:54:59 t 1 1 116151 512 0.00 2019-10-09 17:55:29 2019-10-09 17:55:43 t 1 1 116155 512 0.00 2019-10-09 17:56:17 2019-10-09 17:56:28 t 1 1 116158 512 0.00 2019-10-09 17:56:44 2019-10-09 17:56:52 t 1 1 116159 512 0.00 2019-10-09 17:56:52 2019-10-09 17:57:00 t 1 1 116162 512 0.00 2019-10-09 17:57:20 2019-10-09 17:57:32 t 1 1 116163 220 0.00 2019-10-09 17:53:32 2019-10-09 17:57:37 t 1 1 116165 512 0.00 2019-10-09 17:57:40 2019-10-09 17:57:49 t 1 1 116166 512 0.00 2019-10-09 17:57:49 2019-10-09 17:57:58 t 1 1 116167 512 0.00 2019-10-09 17:57:58 2019-10-09 17:58:09 t 1 1 116170 512 0.00 2019-10-09 17:58:32 2019-10-09 17:58:41 t 1 1 116171 512 0.00 2019-10-09 17:58:41 2019-10-09 17:58:52 t 1 1 116174 512 0.00 2019-10-09 17:59:02 2019-10-09 17:59:12 t 1 1 116177 512 0.00 2019-10-09 17:59:38 2019-10-09 17:59:46 t 1 1 116179 512 0.00 2019-10-09 17:59:59 2019-10-09 18:00:08 t 1 1 116182 512 0.00 2019-10-09 18:00:23 2019-10-09 18:00:31 t 1 1 116186 512 0.00 2019-10-09 18:01:15 2019-10-09 18:01:23 t 1 1 116189 512 0.00 2019-10-09 18:01:40 2019-10-09 18:01:47 t 1 1 116193 296 0.00 2019-10-09 17:54:58 2019-10-09 18:02:19 t 1 2 116195 512 0.00 2019-10-09 18:02:20 2019-10-09 18:02:27 t 1 1 116202 512 0.00 2019-10-09 18:03:08 2019-10-09 18:03:16 t 1 1 116204 512 0.00 2019-10-09 18:03:16 2019-10-09 18:03:24 t 1 1 116205 512 0.00 2019-10-09 18:03:24 2019-10-09 18:04:29 t 1 1 116207 516 0.00 2019-10-09 17:44:12 2019-10-09 18:08:38 t 1 1 116208 468 0.00 2019-10-09 17:42:19 2019-10-09 18:12:20 t 1 1 116213 331 0.00 2019-10-09 18:21:54 2019-10-09 18:22:46 t 1 1 116214 528 0.00 2019-10-09 18:27:04 2019-10-09 18:27:13 t 1 1 116217 528 0.00 2019-10-09 18:30:33 2019-10-09 18:30:47 t 1 1 116219 474 0.00 2019-10-09 18:16:53 2019-10-09 18:31:32 t 1 1 116220 485 0.00 2019-10-09 18:23:25 2019-10-09 18:34:07 t 1 1 116223 430 0.00 2019-10-09 18:24:01 2019-10-09 18:36:32 t 1 1 116229 485 0.00 2019-10-09 18:41:31 2019-10-09 18:44:40 t 1 1 116231 528 0.00 2019-10-09 18:47:20 2019-10-09 18:47:49 t 1 1 116234 416 0.00 2019-10-09 18:51:12 2019-10-09 18:51:16 t 1 1 116238 430 0.00 2019-10-09 18:48:45 2019-10-09 18:56:17 t 1 1 116240 528 0.00 2019-10-09 18:55:26 2019-10-09 18:56:52 t 1 1 116245 528 0.00 2019-10-09 19:02:55 2019-10-09 19:03:48 t 1 1 116246 487 0.00 2019-10-09 17:38:14 2019-10-09 19:04:06 t 1 2 116248 430 0.00 2019-10-09 19:05:20 2019-10-09 19:05:55 t 1 1 116250 220 0.00 2019-10-09 18:16:37 2019-10-09 19:07:53 t 1 2 116252 331 0.00 2019-10-09 18:23:14 2019-10-09 19:08:20 t 1 1 116261 498 0.00 2019-10-09 16:53:54 2019-10-09 19:14:00 t 1 2 116266 518 0.00 2019-10-09 18:51:59 2019-10-09 19:19:46 t 1 2 116267 445 0.00 2019-10-09 18:05:48 2019-10-09 19:22:39 t 1 1 116268 430 0.00 2019-10-09 19:23:26 2019-10-09 19:23:27 t 1 1 116273 430 0.00 2019-10-09 19:27:31 2019-10-09 19:28:53 t 1 1 116275 528 0.00 2019-10-09 19:29:46 2019-10-09 19:31:59 t 1 1 116279 306 0.00 2019-10-09 19:34:36 2019-10-09 19:38:18 t 1 1 116283 528 0.00 2019-10-09 19:40:28 2019-10-09 19:44:22 t 1 1 116287 331 0.00 2019-10-09 19:27:12 2019-10-09 19:57:39 t 1 1 116288 481 0.00 2019-10-09 19:41:27 2019-10-09 19:59:37 t 1 1 116290 445 0.00 2019-10-09 19:43:50 2019-10-09 20:08:52 t 1 1 116292 422 0.00 2019-10-09 16:55:32 2019-10-09 20:21:53 t 1 1 116293 487 0.00 2019-10-09 20:14:47 2019-10-09 20:22:08 t 1 2 116298 445 0.00 2019-10-09 20:08:55 2019-10-09 20:33:15 t 1 1 116301 430 0.00 2019-10-09 20:37:48 2019-10-09 20:38:16 t 1 1 116304 430 0.00 2019-10-09 20:44:16 2019-10-09 20:44:47 t 1 1 116307 430 0.00 2019-10-09 20:52:51 2019-10-09 20:56:35 t 1 1 116308 220 0.00 2019-10-09 20:55:45 2019-10-09 21:00:07 t 1 1 116311 220 0.00 2019-10-09 21:03:19 2019-10-09 21:08:21 t 1 1 116316 331 0.00 2019-10-09 21:09:05 2019-10-09 21:20:50 t 1 1 116323 536 0.00 2019-10-09 21:25:35 2019-10-09 21:30:34 t 1 1 116325 306 0.00 2019-10-09 21:28:18 2019-10-09 21:30:51 t 1 1 116326 536 0.00 2019-10-09 21:31:10 2019-10-09 21:31:32 t 1 1 116327 536 0.00 2019-10-09 21:31:37 2019-10-09 21:32:03 t 1 1 116331 481 0.00 2019-10-09 19:59:37 2019-10-09 21:35:50 t 1 1 116333 503 0.00 2019-10-09 21:34:44 2019-10-09 21:38:25 t 1 1 116337 220 0.00 2019-10-09 21:15:29 2019-10-09 21:42:55 t 1 1 116343 470 0.00 2019-10-09 21:46:08 2019-10-09 21:51:17 t 1 1 116348 445 0.00 2019-10-09 20:33:28 2019-10-09 21:54:21 t 1 1 116349 430 0.00 2019-10-09 21:54:26 2019-10-09 21:55:03 t 1 1 116353 485 0.00 2019-10-09 21:50:20 2019-10-09 21:59:20 t 1 1 116358 327 0.00 2019-10-09 22:03:50 2019-10-09 22:05:23 t 1 1 116359 430 0.00 2019-10-09 21:57:04 2019-10-09 22:07:37 t 1 1 116360 512 0.00 2019-10-09 22:00:40 2019-10-09 22:08:01 t 1 1 116361 327 0.00 2019-10-09 22:08:14 2019-10-09 22:08:45 t 1 1 116365 220 0.00 2019-10-09 22:14:04 2019-10-09 22:16:34 t 1 1 116370 331 0.00 2019-10-09 21:54:52 2019-10-09 22:22:11 t 1 1 116371 220 0.00 2019-10-09 22:20:12 2019-10-09 22:23:36 t 1 1 116372 526 0.00 2019-10-09 22:21:52 2019-10-09 22:24:01 t 1 1 116385 526 0.00 2019-10-09 22:35:09 2019-10-09 22:40:19 t 1 1 116399 331 0.00 2019-10-09 22:22:11 2019-10-09 23:02:14 t 1 1 116400 512 0.00 2019-10-09 22:54:05 2019-10-09 23:02:55 t 1 1 116409 461 0.00 2019-10-09 23:08:04 2019-10-09 23:14:27 t 1 2 116411 526 0.00 2019-10-09 23:13:57 2019-10-09 23:22:24 t 1 1 116412 327 0.00 2019-10-09 22:52:20 2019-10-09 23:25:03 t 1 1 116415 512 0.00 2019-10-09 23:26:11 2019-10-09 23:35:49 t 1 1 116417 372 0.00 2019-10-09 23:35:26 2019-10-09 23:38:35 t 1 2 116424 538 0.00 2019-10-09 17:44:30 2019-10-09 23:50:14 t 1 1 116425 296 0.00 2019-10-09 23:48:49 2019-10-09 23:51:13 t 1 2 116426 470 0.00 2019-10-09 23:49:57 2019-10-09 23:54:29 t 1 1 116140 512 0.00 2019-10-09 17:53:44 2019-10-09 17:53:54 t 1 1 116141 512 0.00 2019-10-09 17:53:54 2019-10-09 17:54:04 t 1 1 116143 512 0.00 2019-10-09 17:54:04 2019-10-09 17:54:14 t 1 1 116146 512 0.00 2019-10-09 17:54:35 2019-10-09 17:54:44 t 1 1 116149 512 0.00 2019-10-09 17:55:09 2019-10-09 17:55:18 t 1 1 116150 512 0.00 2019-10-09 17:55:18 2019-10-09 17:55:29 t 1 1 116154 512 0.00 2019-10-09 17:56:05 2019-10-09 17:56:17 t 1 1 116157 512 0.00 2019-10-09 17:56:37 2019-10-09 17:56:44 t 1 1 116161 512 0.00 2019-10-09 17:57:10 2019-10-09 17:57:20 t 1 1 116164 512 0.00 2019-10-09 17:57:32 2019-10-09 17:57:40 t 1 1 116169 512 0.00 2019-10-09 17:58:20 2019-10-09 17:58:32 t 1 1 116173 512 0.00 2019-10-09 17:58:52 2019-10-09 17:59:02 t 1 1 116176 512 0.00 2019-10-09 17:59:25 2019-10-09 17:59:38 t 1 1 116178 512 0.00 2019-10-09 17:59:46 2019-10-09 17:59:59 t 1 1 116181 512 0.00 2019-10-09 18:00:15 2019-10-09 18:00:23 t 1 1 116184 512 0.00 2019-10-09 18:00:40 2019-10-09 18:00:45 t 1 1 116185 512 0.00 2019-10-09 18:01:08 2019-10-09 18:01:15 t 1 1 116188 512 0.00 2019-10-09 18:01:32 2019-10-09 18:01:40 t 1 1 116192 512 0.00 2019-10-09 18:02:03 2019-10-09 18:02:12 t 1 1 116194 512 0.00 2019-10-09 18:02:12 2019-10-09 18:02:20 t 1 1 116197 512 0.00 2019-10-09 18:02:35 2019-10-09 18:02:42 t 1 1 116198 445 0.00 2019-10-09 17:58:46 2019-10-09 18:02:49 t 1 1 116201 512 0.00 2019-10-09 18:02:58 2019-10-09 18:03:08 t 1 1 116206 445 0.00 2019-10-09 18:02:48 2019-10-09 18:05:20 t 1 1 116211 528 0.00 2019-10-09 18:20:58 2019-10-09 18:21:34 t 1 1 116215 456 0.00 2019-10-09 18:27:05 2019-10-09 18:27:31 t 1 1 116222 412 0.00 2019-10-09 18:04:48 2019-10-09 18:36:09 t 1 1 116224 528 0.00 2019-10-09 18:36:50 2019-10-09 18:37:03 t 1 1 116225 528 0.00 2019-10-09 18:38:10 2019-10-09 18:38:27 t 1 1 116226 528 0.00 2019-10-09 18:38:56 2019-10-09 18:39:01 t 1 1 116228 325 0.00 2019-10-09 18:32:22 2019-10-09 18:42:07 t 1 2 116230 470 0.00 2019-10-09 18:43:58 2019-10-09 18:47:41 t 1 1 116235 536 0.00 2019-10-09 18:50:59 2019-10-09 18:51:21 t 1 1 116239 470 0.00 2019-10-09 18:47:41 2019-10-09 18:56:50 t 1 1 116243 468 0.00 2019-10-09 18:14:24 2019-10-09 19:02:20 t 1 1 116254 220 0.00 2019-10-09 17:57:37 2019-10-09 19:08:58 t 1 1 116257 498 0.00 2019-10-09 19:09:47 2019-10-09 19:09:47 f 1 2 116260 545 0.00 2019-10-09 18:34:38 2019-10-09 19:13:48 t 1 1 116262 306 0.00 2019-10-09 19:07:00 2019-10-09 19:14:49 t 1 1 116263 548 0.00 2019-10-09 19:09:29 2019-10-09 19:16:54 t 1 1 116269 408 0.00 2019-10-09 19:19:16 2019-10-09 19:23:33 t 1 1 116271 528 0.00 2019-10-09 19:20:12 2019-10-09 19:25:18 t 1 1 116276 545 0.00 2019-10-09 19:29:14 2019-10-09 19:35:49 t 1 1 116277 445 0.00 2019-10-09 19:26:14 2019-10-09 19:36:09 t 1 1 116281 481 0.00 2019-10-09 16:35:10 2019-10-09 19:40:46 t 1 1 116282 445 0.00 2019-10-09 19:37:17 2019-10-09 19:43:50 t 1 1 116284 306 0.00 2019-10-09 19:40:25 2019-10-09 19:44:26 t 1 1 116285 472 0.00 2019-10-09 19:44:35 2019-10-09 19:49:28 t 1 1 116286 306 0.00 2019-10-09 19:49:08 2019-10-09 19:54:12 t 1 1 116291 518 0.00 2019-10-09 19:52:22 2019-10-09 20:12:28 t 1 2 116294 430 0.00 2019-10-09 20:03:52 2019-10-09 20:27:23 t 1 1 116299 430 0.00 2019-10-09 20:34:05 2019-10-09 20:34:14 t 1 1 116303 430 0.00 2019-10-09 20:41:40 2019-10-09 20:42:11 t 1 1 116306 220 0.00 2019-10-09 20:40:58 2019-10-09 20:54:15 t 1 1 116310 220 0.00 2019-10-09 21:00:14 2019-10-09 21:03:11 t 1 1 116312 536 0.00 2019-10-09 21:07:38 2019-10-09 21:08:26 t 1 1 116313 528 0.00 2019-10-09 21:08:00 2019-10-09 21:17:16 t 1 1 116314 220 0.00 2019-10-09 21:06:29 2019-10-09 21:20:09 t 1 2 116317 470 0.00 2019-10-09 21:00:39 2019-10-09 21:22:45 t 1 1 116318 327 0.00 2019-10-09 21:12:58 2019-10-09 21:23:23 t 1 1 116322 325 0.00 2019-10-09 21:08:33 2019-10-09 21:28:38 t 1 2 116329 520 0.00 2019-10-09 21:29:28 2019-10-09 21:34:13 t 1 1 116336 331 0.00 2019-10-09 21:24:57 2019-10-09 21:40:52 t 1 1 116339 470 0.00 2019-10-09 21:40:38 2019-10-09 21:46:08 t 1 1 116340 430 0.00 2019-10-09 21:26:58 2019-10-09 21:47:42 t 1 1 116341 220 0.00 2019-10-09 21:42:07 2019-10-09 21:48:42 t 1 1 116342 430 0.00 2019-10-09 21:47:42 2019-10-09 21:50:57 t 1 1 116345 487 0.00 2019-10-09 21:52:52 2019-10-09 21:52:55 t 1 2 116346 430 0.00 2019-10-09 21:53:49 2019-10-09 21:54:17 t 1 1 116350 470 0.00 2019-10-09 21:51:17 2019-10-09 21:55:37 t 1 1 116351 422 0.00 2019-10-09 20:21:53 2019-10-09 21:56:50 t 1 1 116354 379 0.00 2019-10-09 20:44:02 2019-10-09 21:59:44 t 1 1 116357 487 0.00 2019-10-09 21:53:04 2019-10-09 22:03:09 t 1 2 116362 512 0.00 2019-10-09 22:08:01 2019-10-09 22:10:52 t 1 1 116364 220 0.00 2019-10-09 21:51:42 2019-10-09 22:15:05 t 1 2 116367 220 0.00 2019-10-09 22:16:34 2019-10-09 22:20:12 t 1 1 116369 327 0.00 2019-10-09 22:18:44 2019-10-09 22:21:56 t 1 1 116373 220 0.00 2019-10-09 22:23:36 2019-10-09 22:24:59 t 1 1 116376 526 0.00 2019-10-09 22:24:11 2019-10-09 22:29:35 t 1 1 116378 430 0.00 2019-10-09 22:29:15 2019-10-09 22:35:31 t 1 1 116379 379 0.00 2019-10-09 22:28:25 2019-10-09 22:35:54 t 1 1 116380 327 0.00 2019-10-09 22:35:34 2019-10-09 22:36:32 t 1 1 116382 327 0.00 2019-10-09 22:37:35 2019-10-09 22:38:02 t 1 1 116389 327 0.00 2019-10-09 22:41:13 2019-10-09 22:42:22 t 1 1 116390 379 0.00 2019-10-09 22:35:54 2019-10-09 22:44:51 t 1 1 116392 379 0.00 2019-10-09 22:44:51 2019-10-09 22:48:26 t 1 1 116393 451 0.00 2019-10-09 22:20:28 2019-10-09 22:49:37 t 1 1 116395 430 0.00 2019-10-09 22:42:08 2019-10-09 22:53:35 t 1 1 116397 526 0.00 2019-10-09 22:54:16 2019-10-09 22:56:40 t 1 1 116398 526 0.00 2019-10-09 22:56:48 2019-10-09 22:57:48 t 1 1 116405 449 0.00 2019-10-09 23:05:16 2019-10-09 23:13:01 t 1 1 116407 526 0.00 2019-10-09 23:01:54 2019-10-09 23:13:57 t 1 1 116408 470 0.00 2019-10-09 21:55:37 2019-10-09 23:14:05 t 1 1 116410 514 0.00 2019-10-09 23:02:34 2019-10-09 23:21:32 t 1 1 116418 470 0.00 2019-10-09 23:27:05 2019-10-09 23:40:04 t 1 1 116419 526 0.00 2019-10-09 23:24:23 2019-10-09 23:41:09 t 1 1 116420 472 0.00 2019-10-09 23:34:38 2019-10-09 23:48:57 t 1 1 116423 422 0.00 2019-10-09 22:51:22 2019-10-09 23:50:00 t 1 1 116435 422 0.00 2019-10-09 23:50:00 2019-10-10 00:06:46 t 1 1 116436 544 0.00 2019-10-09 23:27:06 2019-10-10 00:07:11 t 1 2 116437 395 0.00 2019-10-10 00:07:28 2019-10-10 00:08:34 t 1 2 116440 422 0.00 2019-10-10 00:06:46 2019-10-10 00:30:38 t 1 1 116443 422 0.00 2019-10-10 00:30:38 2019-10-10 00:48:59 t 1 1 116446 422 0.00 2019-10-10 00:48:59 2019-10-10 01:07:55 t 1 1 116448 538 0.00 2019-10-10 00:36:13 2019-10-10 01:30:01 t 1 1 116450 538 0.00 2019-10-10 01:36:59 2019-10-10 01:38:15 t 1 1 116455 422 0.00 2019-10-10 01:07:55 2019-10-10 02:20:11 t 1 1 116153 512 0.00 2019-10-09 17:55:54 2019-10-09 17:56:05 t 1 1 116156 512 0.00 2019-10-09 17:56:28 2019-10-09 17:56:37 t 1 1 116160 512 0.00 2019-10-09 17:57:00 2019-10-09 17:57:10 t 1 1 116168 512 0.00 2019-10-09 17:58:09 2019-10-09 17:58:20 t 1 1 116172 445 0.00 2019-10-09 17:39:00 2019-10-09 17:58:52 t 1 1 116175 512 0.00 2019-10-09 17:59:12 2019-10-09 17:59:25 t 1 1 116180 512 0.00 2019-10-09 18:00:08 2019-10-09 18:00:15 t 1 1 116183 512 0.00 2019-10-09 18:00:31 2019-10-09 18:00:40 t 1 1 116187 512 0.00 2019-10-09 18:01:23 2019-10-09 18:01:32 t 1 1 116190 512 0.00 2019-10-09 18:01:47 2019-10-09 18:01:55 t 1 1 116191 512 0.00 2019-10-09 18:01:55 2019-10-09 18:02:03 t 1 1 116196 512 0.00 2019-10-09 18:02:27 2019-10-09 18:02:35 t 1 1 116199 512 0.00 2019-10-09 18:02:42 2019-10-09 18:02:50 t 1 1 116200 512 0.00 2019-10-09 18:02:50 2019-10-09 18:02:58 t 1 1 116203 306 0.00 2019-10-09 17:51:45 2019-10-09 18:03:23 t 1 1 116209 528 0.00 2019-10-09 17:55:28 2019-10-09 18:13:54 t 1 1 116210 306 0.00 2019-10-09 18:16:20 2019-10-09 18:19:54 t 1 1 116212 528 0.00 2019-10-09 18:22:08 2019-10-09 18:22:18 t 1 1 116216 528 0.00 2019-10-09 18:27:44 2019-10-09 18:29:15 t 1 1 116218 361 0.00 2019-10-09 17:58:01 2019-10-09 18:31:06 t 1 2 116221 528 0.00 2019-10-09 18:33:11 2019-10-09 18:34:15 t 1 1 116227 485 0.00 2019-10-09 18:34:07 2019-10-09 18:41:31 t 1 1 116232 430 0.00 2019-10-09 18:36:32 2019-10-09 18:48:45 t 1 1 116233 416 0.00 2019-10-09 17:42:18 2019-10-09 18:49:08 t 1 1 116236 528 0.00 2019-10-09 18:52:35 2019-10-09 18:52:44 t 1 1 116237 528 0.00 2019-10-09 18:55:09 2019-10-09 18:56:15 t 1 1 116241 528 0.00 2019-10-09 18:57:44 2019-10-09 18:59:15 t 1 1 116242 430 0.00 2019-10-09 19:01:19 2019-10-09 19:01:19 t 1 1 116244 468 0.00 2019-10-09 19:02:20 2019-10-09 19:03:39 t 1 1 116247 456 0.00 2019-10-09 18:46:57 2019-10-09 19:04:51 t 1 1 116249 516 0.00 2019-10-09 18:54:58 2019-10-09 19:07:51 t 1 1 116251 430 0.00 2019-10-09 19:07:43 2019-10-09 19:08:14 t 1 1 116253 416 0.00 2019-10-09 18:51:16 2019-10-09 19:08:21 t 1 1 116255 548 0.00 2019-10-09 19:00:52 2019-10-09 19:09:28 t 1 1 116256 498 0.00 2019-10-09 19:09:33 2019-10-09 19:09:33 f 1 2 116258 470 0.00 2019-10-09 18:56:50 2019-10-09 19:09:56 t 1 1 116259 468 0.00 2019-10-09 19:04:00 2019-10-09 19:12:50 t 1 1 116264 430 0.00 2019-10-09 19:18:08 2019-10-09 19:18:48 t 1 1 116265 528 0.00 2019-10-09 19:04:17 2019-10-09 19:19:27 t 1 1 116270 470 0.00 2019-10-09 19:09:56 2019-10-09 19:23:52 t 1 1 116272 331 0.00 2019-10-09 19:16:13 2019-10-09 19:27:04 t 1 1 116274 545 0.00 2019-10-09 19:15:46 2019-10-09 19:29:14 t 1 1 116278 545 0.00 2019-10-09 19:35:49 2019-10-09 19:38:13 t 1 1 116280 528 0.00 2019-10-09 19:32:34 2019-10-09 19:39:28 t 1 1 116289 545 0.00 2019-10-09 19:53:07 2019-10-09 20:01:57 t 1 1 116295 430 0.00 2019-10-09 20:27:23 2019-10-09 20:29:32 t 1 1 116296 412 0.00 2019-10-09 18:36:09 2019-10-09 20:30:49 t 1 1 116297 470 0.00 2019-10-09 19:23:52 2019-10-09 20:31:17 t 1 1 116300 485 0.00 2019-10-09 20:32:58 2019-10-09 20:34:19 t 1 1 116302 430 0.00 2019-10-09 20:40:26 2019-10-09 20:40:34 t 1 1 116305 430 0.00 2019-10-09 20:48:57 2019-10-09 20:51:05 t 1 1 116309 501 0.00 2019-10-09 20:17:47 2019-10-09 21:02:08 t 1 1 116315 220 0.00 2019-10-09 21:19:48 2019-10-09 21:20:11 t 1 2 116319 430 0.00 2019-10-09 21:10:52 2019-10-09 21:23:39 t 1 1 116320 331 0.00 2019-10-09 21:21:15 2019-10-09 21:24:58 t 1 1 116321 430 0.00 2019-10-09 21:23:51 2019-10-09 21:26:36 t 1 1 116324 536 0.00 2019-10-09 21:30:39 2019-10-09 21:30:48 t 1 1 116328 536 0.00 2019-10-09 21:32:14 2019-10-09 21:32:38 t 1 1 116330 372 0.00 2019-10-09 21:14:31 2019-10-09 21:34:17 t 1 2 116332 528 0.00 2019-10-09 21:33:36 2019-10-09 21:38:15 t 1 1 116334 327 0.00 2019-10-09 21:32:49 2019-10-09 21:39:48 t 1 1 116335 470 0.00 2019-10-09 21:22:45 2019-10-09 21:40:38 t 1 1 116338 306 0.00 2019-10-09 21:42:36 2019-10-09 21:45:42 t 1 1 116344 430 0.00 2019-10-09 21:51:33 2019-10-09 21:52:24 t 1 1 116347 327 0.00 2019-10-09 21:49:16 2019-10-09 21:54:20 t 1 1 116352 456 0.00 2019-10-09 21:57:25 2019-10-09 21:59:06 t 1 1 116355 512 0.00 2019-10-09 21:54:14 2019-10-09 22:00:40 t 1 1 116356 220 0.00 2019-10-09 22:01:48 2019-10-09 22:02:45 t 1 1 116363 430 0.00 2019-10-09 22:07:37 2019-10-09 22:14:18 t 1 1 116366 416 0.00 2019-10-09 19:08:20 2019-10-09 22:16:36 t 1 1 116368 306 0.00 2019-10-09 22:01:22 2019-10-09 22:21:40 t 1 1 116374 379 0.00 2019-10-09 21:59:44 2019-10-09 22:28:25 t 1 1 116375 430 0.00 2019-10-09 22:14:18 2019-10-09 22:29:15 t 1 1 116377 327 0.00 2019-10-09 22:31:21 2019-10-09 22:33:07 t 1 1 116381 545 0.00 2019-10-09 22:11:53 2019-10-09 22:36:36 t 1 1 116383 545 0.00 2019-10-09 22:36:36 2019-10-09 22:38:43 t 1 1 116384 327 0.00 2019-10-09 22:38:53 2019-10-09 22:39:35 t 1 1 116386 327 0.00 2019-10-09 22:39:46 2019-10-09 22:40:40 t 1 1 116387 422 0.00 2019-10-09 21:56:50 2019-10-09 22:41:15 t 1 1 116388 430 0.00 2019-10-09 22:35:31 2019-10-09 22:42:08 t 1 1 116391 526 0.00 2019-10-09 22:40:19 2019-10-09 22:48:25 t 1 1 116394 422 0.00 2019-10-09 22:41:15 2019-10-09 22:51:22 t 1 1 116396 526 0.00 2019-10-09 22:48:25 2019-10-09 22:54:16 t 1 1 116401 545 0.00 2019-10-09 22:49:32 2019-10-09 23:06:34 t 1 1 116402 331 0.00 2019-10-09 23:02:15 2019-10-09 23:09:15 t 1 1 116403 247 0.00 2019-10-09 23:08:32 2019-10-09 23:10:23 t 1 2 116404 430 0.00 2019-10-09 22:53:35 2019-10-09 23:12:23 t 1 1 116406 512 0.00 2019-10-09 23:02:55 2019-10-09 23:13:34 t 1 1 116413 512 0.00 2019-10-09 23:13:34 2019-10-09 23:26:11 t 1 1 116414 470 0.00 2019-10-09 23:14:05 2019-10-09 23:27:05 t 1 1 116416 512 0.00 2019-10-09 23:35:49 2019-10-09 23:38:31 t 1 1 116421 481 0.00 2019-10-09 21:35:50 2019-10-09 23:49:08 t 1 1 116422 470 0.00 2019-10-09 23:40:04 2019-10-09 23:49:57 t 1 1 116427 472 0.00 2019-10-09 23:51:29 2019-10-09 23:56:47 t 1 1 116428 472 0.00 2019-10-09 23:56:57 2019-10-09 23:57:20 t 1 1 116429 472 0.00 2019-10-09 23:57:30 2019-10-09 23:58:10 t 1 1 116432 472 0.00 2019-10-10 00:03:11 2019-10-10 00:03:20 t 1 1 116433 472 0.00 2019-10-10 00:03:32 2019-10-10 00:04:00 t 1 1 116434 528 0.00 2019-10-09 23:47:29 2019-10-10 00:05:24 t 1 1 116438 470 0.00 2019-10-09 23:54:29 2019-10-10 00:15:20 t 1 1 116439 372 0.00 2019-10-09 23:52:00 2019-10-10 00:22:05 t 1 2 116445 395 0.00 2019-10-10 00:54:51 2019-10-10 01:04:54 t 1 2 116449 538 0.00 2019-10-10 01:30:00 2019-10-10 01:37:55 t 1 1 116454 514 0.00 2019-10-10 02:09:42 2019-10-10 02:19:15 t 1 1 116457 311 0.00 2019-10-10 02:19:36 2019-10-10 02:25:56 t 1 2 116458 501 0.00 2019-10-10 02:24:33 2019-10-10 02:32:20 t 1 1 116466 501 0.00 2019-10-10 03:05:09 2019-10-10 03:14:43 t 1 1 116430 538 0.00 2019-10-09 23:50:37 2019-10-10 00:01:23 t 1 1 116431 451 0.00 2019-10-09 23:32:12 2019-10-10 00:03:09 t 1 1 116441 501 0.00 2019-10-09 22:15:02 2019-10-10 00:35:14 t 1 1 116442 395 0.00 2019-10-10 00:41:06 2019-10-10 00:41:59 t 1 2 116444 456 0.00 2019-10-10 00:43:32 2019-10-10 00:55:47 t 1 1 116447 518 0.00 2019-10-10 01:26:24 2019-10-10 01:26:39 t 1 2 116451 501 0.00 2019-10-10 00:36:07 2019-10-10 01:58:43 t 1 1 116452 501 0.00 2019-10-10 01:58:43 2019-10-10 02:10:27 t 1 1 116453 501 0.00 2019-10-10 02:10:27 2019-10-10 02:19:01 t 1 1 116459 422 0.00 2019-10-10 02:20:11 2019-10-10 02:35:59 t 1 1 116462 422 0.00 2019-10-10 02:35:59 2019-10-10 02:51:55 t 1 1 116464 501 0.00 2019-10-10 02:58:20 2019-10-10 03:05:09 t 1 1 116465 422 0.00 2019-10-10 02:51:55 2019-10-10 03:09:33 t 1 1 116468 422 0.00 2019-10-10 03:09:33 2019-10-10 03:26:27 t 1 1 116470 501 0.00 2019-10-10 03:27:58 2019-10-10 03:35:14 t 1 1 116476 445 0.00 2019-10-09 21:54:52 2019-10-10 04:08:46 t 1 1 116481 422 0.00 2019-10-10 04:16:42 2019-10-10 04:34:31 t 1 1 116482 445 0.00 2019-10-10 04:19:32 2019-10-10 04:36:42 t 1 1 116485 430 0.00 2019-10-10 05:15:29 2019-10-10 05:25:37 t 1 1 116486 485 0.00 2019-10-10 05:34:23 2019-10-10 05:36:14 t 1 1 116487 542 0.00 2019-10-10 05:49:20 2019-10-10 05:52:17 t 1 1 116488 542 0.00 2019-10-10 05:55:19 2019-10-10 05:57:20 t 1 1 116492 516 0.00 2019-10-10 06:07:37 2019-10-10 06:13:01 t 1 1 116495 542 0.00 2019-10-10 06:35:53 2019-10-10 06:39:30 t 1 1 116496 430 0.00 2019-10-10 06:29:58 2019-10-10 06:43:05 t 1 1 116500 430 0.00 2019-10-10 07:16:09 2019-10-10 07:17:27 t 1 1 116501 542 0.00 2019-10-10 07:13:50 2019-10-10 07:19:30 t 1 1 116503 542 0.00 2019-10-10 07:26:21 2019-10-10 07:28:30 t 1 1 116505 445 0.00 2019-10-10 07:21:31 2019-10-10 07:29:06 t 1 1 116512 430 0.00 2019-10-10 07:40:18 2019-10-10 07:44:17 t 1 1 116518 416 0.00 2019-10-10 07:44:50 2019-10-10 07:57:42 t 1 1 116532 430 0.00 2019-10-10 08:14:04 2019-10-10 08:14:35 t 1 1 116536 416 0.00 2019-10-10 07:57:48 2019-10-10 08:25:24 t 1 1 116539 514 0.00 2019-10-10 08:02:59 2019-10-10 08:47:39 t 1 1 116547 528 0.00 2019-10-10 09:22:14 2019-10-10 09:22:49 t 1 1 116550 501 0.00 2019-10-10 09:16:38 2019-10-10 09:31:32 t 1 1 116554 528 0.00 2019-10-10 09:24:01 2019-10-10 09:47:48 t 1 1 116557 445 0.00 2019-10-10 09:24:33 2019-10-10 10:02:51 t 1 1 116558 461 0.00 2019-10-10 09:36:34 2019-10-10 10:03:22 t 1 2 116559 470 0.00 2019-10-10 09:43:02 2019-10-10 10:07:04 t 1 1 116568 514 0.00 2019-10-10 10:21:16 2019-10-10 10:27:01 t 1 1 116574 501 0.00 2019-10-10 10:32:30 2019-10-10 10:33:34 t 1 1 116575 501 0.00 2019-10-10 10:33:50 2019-10-10 10:34:43 t 1 1 116581 445 0.00 2019-10-10 10:45:25 2019-10-10 10:52:43 t 1 1 116582 501 0.00 2019-10-10 10:41:25 2019-10-10 10:53:55 t 1 1 116584 512 0.00 2019-10-10 10:18:41 2019-10-10 11:05:49 t 1 1 116585 490 0.00 2019-10-10 11:01:04 2019-10-10 11:08:55 t 1 1 116588 306 0.00 2019-10-10 11:18:35 2019-10-10 11:20:44 t 1 1 116607 490 0.00 2019-10-10 11:43:29 2019-10-10 11:55:06 t 1 1 116608 532 0.00 2019-10-10 11:55:11 2019-10-10 11:55:18 t 1 1 116614 532 0.00 2019-10-10 11:58:58 2019-10-10 11:59:04 t 1 1 116616 532 0.00 2019-10-10 12:00:10 2019-10-10 12:00:24 t 1 1 116619 538 0.00 2019-10-10 10:38:52 2019-10-10 12:03:00 t 1 1 116621 490 0.00 2019-10-10 11:55:06 2019-10-10 12:03:49 t 1 1 116622 532 0.00 2019-10-10 12:05:04 2019-10-10 12:05:06 t 1 1 116632 445 0.00 2019-10-10 12:12:52 2019-10-10 12:15:15 t 1 1 116635 331 0.00 2019-10-10 12:12:10 2019-10-10 12:16:21 t 1 1 116639 470 0.00 2019-10-10 12:08:26 2019-10-10 12:18:40 t 1 1 116640 445 0.00 2019-10-10 12:15:51 2019-10-10 12:19:07 t 1 1 116642 331 0.00 2019-10-10 12:16:21 2019-10-10 12:20:36 t 1 1 116643 532 0.00 2019-10-10 12:21:04 2019-10-10 12:21:06 t 1 1 116645 501 0.00 2019-10-10 11:48:55 2019-10-10 12:23:39 t 1 1 116646 501 0.00 2019-10-10 12:24:08 2019-10-10 12:24:45 t 1 1 116648 498 0.00 2019-10-10 12:08:11 2019-10-10 12:25:48 t 1 2 116649 470 0.00 2019-10-10 12:18:40 2019-10-10 12:26:00 t 1 1 116651 445 0.00 2019-10-10 12:19:13 2019-10-10 12:26:25 t 1 1 116654 501 0.00 2019-10-10 12:26:50 2019-10-10 12:28:12 t 1 1 116655 532 0.00 2019-10-10 12:27:37 2019-10-10 12:29:17 t 1 1 116656 470 0.00 2019-10-10 12:26:00 2019-10-10 12:29:58 t 1 1 116660 361 0.00 2019-10-10 12:14:33 2019-10-10 12:35:34 t 1 2 116662 532 0.00 2019-10-10 12:37:29 2019-10-10 12:37:36 t 1 1 116665 456 0.00 2019-10-10 12:37:10 2019-10-10 12:39:31 t 1 1 116667 422 0.00 2019-10-10 12:34:14 2019-10-10 12:41:40 t 1 1 116672 532 0.00 2019-10-10 12:50:02 2019-10-10 12:50:04 t 1 1 116676 532 0.00 2019-10-10 12:57:44 2019-10-10 12:57:50 t 1 1 116682 528 0.00 2019-10-10 13:00:33 2019-10-10 13:02:15 t 1 1 116687 528 0.00 2019-10-10 13:05:56 2019-10-10 13:07:05 t 1 1 116689 331 0.00 2019-10-10 12:20:36 2019-10-10 13:08:15 t 1 1 116691 532 0.00 2019-10-10 13:04:22 2019-10-10 13:09:35 t 1 1 116693 532 0.00 2019-10-10 13:10:12 2019-10-10 13:10:20 t 1 1 116695 422 0.00 2019-10-10 13:07:07 2019-10-10 13:13:43 t 1 1 116696 306 0.00 2019-10-10 13:07:57 2019-10-10 13:15:47 t 1 1 116705 528 0.00 2019-10-10 13:24:52 2019-10-10 13:25:18 t 1 1 116707 532 0.00 2019-10-10 13:28:18 2019-10-10 13:28:35 t 1 1 116710 528 0.00 2019-10-10 13:29:18 2019-10-10 13:29:24 t 1 1 116714 512 0.00 2019-10-10 12:35:55 2019-10-10 13:33:34 t 1 1 116715 532 0.00 2019-10-10 13:35:34 2019-10-10 13:35:36 t 1 1 116719 532 0.00 2019-10-10 13:50:54 2019-10-10 13:51:05 t 1 1 116722 532 0.00 2019-10-10 13:54:10 2019-10-10 13:54:56 t 1 1 116723 512 0.00 2019-10-10 13:33:34 2019-10-10 13:55:31 t 1 1 116724 532 0.00 2019-10-10 13:55:58 2019-10-10 13:56:01 t 1 1 116729 331 0.00 2019-10-10 13:18:58 2019-10-10 14:03:42 t 1 1 116730 532 0.00 2019-10-10 14:04:58 2019-10-10 14:05:05 t 1 1 116734 542 0.00 2019-10-10 12:24:59 2019-10-10 14:11:50 t 1 1 116750 422 0.00 2019-10-10 14:13:42 2019-10-10 14:27:52 t 1 1 116752 412 0.00 2019-10-10 13:18:03 2019-10-10 14:31:25 t 1 1 116754 422 0.00 2019-10-10 14:27:52 2019-10-10 14:33:15 t 1 1 116756 331 0.00 2019-10-10 14:04:04 2019-10-10 14:33:51 t 1 1 116758 532 0.00 2019-10-10 14:35:22 2019-10-10 14:35:27 t 1 1 116759 451 0.00 2019-10-10 14:11:46 2019-10-10 14:37:27 t 1 1 116764 532 0.00 2019-10-10 14:41:15 2019-10-10 14:41:17 t 1 1 116766 542 0.00 2019-10-10 14:22:47 2019-10-10 14:45:06 t 1 1 116769 422 0.00 2019-10-10 14:33:15 2019-10-10 14:46:47 t 1 1 116770 451 0.00 2019-10-10 14:37:27 2019-10-10 14:47:06 t 1 1 116771 528 0.00 2019-10-10 14:23:16 2019-10-10 14:47:42 t 1 1 116774 532 0.00 2019-10-10 14:50:48 2019-10-10 14:50:49 t 1 1 116780 422 0.00 2019-10-10 14:46:47 2019-10-10 14:56:35 t 1 1 116456 501 0.00 2019-10-10 02:19:01 2019-10-10 02:24:33 t 1 1 116460 501 0.00 2019-10-10 02:32:20 2019-10-10 02:38:48 t 1 1 116461 501 0.00 2019-10-10 02:38:48 2019-10-10 02:46:49 t 1 1 116463 501 0.00 2019-10-10 02:46:49 2019-10-10 02:58:20 t 1 1 116467 501 0.00 2019-10-10 03:14:43 2019-10-10 03:21:08 t 1 1 116469 501 0.00 2019-10-10 03:21:08 2019-10-10 03:27:58 t 1 1 116471 422 0.00 2019-10-10 03:26:27 2019-10-10 03:42:10 t 1 1 116473 501 0.00 2019-10-10 03:46:36 2019-10-10 03:53:54 t 1 1 116475 422 0.00 2019-10-10 03:42:10 2019-10-10 03:58:10 t 1 1 116477 532 0.00 2019-10-10 03:50:42 2019-10-10 04:12:57 t 1 1 116480 445 0.00 2019-10-10 04:15:23 2019-10-10 04:19:25 t 1 1 116484 516 0.00 2019-10-10 05:11:49 2019-10-10 05:14:28 t 1 1 116489 542 0.00 2019-10-10 05:57:25 2019-10-10 05:59:40 t 1 1 116490 514 0.00 2019-10-10 02:19:15 2019-10-10 06:02:13 t 1 1 116498 430 0.00 2019-10-10 07:03:17 2019-10-10 07:09:43 t 1 1 116499 542 0.00 2019-10-10 06:53:38 2019-10-10 07:13:50 t 1 1 116502 445 0.00 2019-10-10 04:36:41 2019-10-10 07:21:32 t 1 1 116504 516 0.00 2019-10-10 07:20:31 2019-10-10 07:28:37 t 1 1 116506 412 0.00 2019-10-09 20:30:49 2019-10-10 07:29:07 t 1 1 116510 516 0.00 2019-10-10 07:38:35 2019-10-10 07:42:45 t 1 1 116513 416 0.00 2019-10-10 07:33:04 2019-10-10 07:44:22 t 1 1 116514 445 0.00 2019-10-10 07:31:24 2019-10-10 07:46:25 t 1 1 116516 430 0.00 2019-10-10 07:56:04 2019-10-10 07:57:05 t 1 1 116519 514 0.00 2019-10-10 07:57:04 2019-10-10 07:58:10 t 1 1 116523 430 0.00 2019-10-10 07:59:39 2019-10-10 07:59:42 t 1 1 116526 514 0.00 2019-10-10 07:58:20 2019-10-10 08:02:59 t 1 1 116528 542 0.00 2019-10-10 08:02:48 2019-10-10 08:10:53 t 1 1 116529 430 0.00 2019-10-10 08:10:57 2019-10-10 08:11:02 t 1 1 116530 430 0.00 2019-10-10 08:12:10 2019-10-10 08:12:11 t 1 1 116533 430 0.00 2019-10-10 08:18:10 2019-10-10 08:18:11 t 1 1 116534 306 0.00 2019-10-10 07:44:07 2019-10-10 08:19:04 t 1 1 116538 445 0.00 2019-10-10 07:46:44 2019-10-10 08:40:30 t 1 1 116541 430 0.00 2019-10-10 08:50:43 2019-10-10 08:50:53 t 1 1 116542 416 0.00 2019-10-10 08:25:24 2019-10-10 08:57:47 t 1 1 116543 220 0.00 2019-10-10 08:34:53 2019-10-10 08:59:42 t 1 1 116544 528 0.00 2019-10-10 09:03:48 2019-10-10 09:07:05 t 1 1 116548 445 0.00 2019-10-10 08:42:35 2019-10-10 09:24:26 t 1 1 116549 470 0.00 2019-10-10 09:20:38 2019-10-10 09:31:27 t 1 1 116551 501 0.00 2019-10-10 09:33:24 2019-10-10 09:35:00 t 1 1 116552 306 0.00 2019-10-10 09:26:24 2019-10-10 09:38:38 t 1 1 116555 501 0.00 2019-10-10 09:35:10 2019-10-10 09:51:40 t 1 1 116562 445 0.00 2019-10-10 10:02:54 2019-10-10 10:13:32 t 1 1 116565 470 0.00 2019-10-10 10:07:04 2019-10-10 10:17:11 t 1 1 116566 445 0.00 2019-10-10 10:14:01 2019-10-10 10:21:37 t 1 1 116567 445 0.00 2019-10-10 10:21:44 2019-10-10 10:24:29 t 1 1 116570 516 0.00 2019-10-10 10:25:05 2019-10-10 10:30:57 t 1 1 116571 501 0.00 2019-10-10 10:01:16 2019-10-10 10:32:31 t 1 1 116573 528 0.00 2019-10-10 10:12:52 2019-10-10 10:33:27 t 1 1 116576 501 0.00 2019-10-10 10:35:11 2019-10-10 10:35:52 t 1 1 116580 528 0.00 2019-10-10 10:33:27 2019-10-10 10:50:23 t 1 1 116586 490 0.00 2019-10-10 11:08:55 2019-10-10 11:12:13 t 1 1 116589 512 0.00 2019-10-10 11:18:00 2019-10-10 11:22:55 t 1 1 116590 422 0.00 2019-10-10 04:34:31 2019-10-10 11:24:26 t 1 1 116591 481 0.00 2019-10-10 07:09:04 2019-10-10 11:27:07 t 1 1 116593 306 0.00 2019-10-10 11:26:20 2019-10-10 11:29:36 t 1 1 116595 461 0.00 2019-10-10 11:07:38 2019-10-10 11:39:00 t 1 2 116597 545 0.00 2019-10-10 11:35:23 2019-10-10 11:39:23 t 1 1 116599 445 0.00 2019-10-10 11:42:29 2019-10-10 11:43:36 t 1 1 116600 445 0.00 2019-10-10 11:44:08 2019-10-10 11:45:04 t 1 1 116601 422 0.00 2019-10-10 11:39:23 2019-10-10 11:47:30 t 1 1 116604 445 0.00 2019-10-10 11:45:03 2019-10-10 11:53:05 t 1 1 116609 445 0.00 2019-10-10 11:53:15 2019-10-10 11:55:54 t 1 1 116618 306 0.00 2019-10-10 12:01:28 2019-10-10 12:02:49 t 1 1 116620 532 0.00 2019-10-10 12:02:29 2019-10-10 12:03:02 t 1 1 116627 331 0.00 2019-10-10 11:47:48 2019-10-10 12:08:45 t 1 1 116628 532 0.00 2019-10-10 12:11:02 2019-10-10 12:11:40 t 1 1 116634 532 0.00 2019-10-10 12:16:01 2019-10-10 12:16:09 t 1 1 116636 445 0.00 2019-10-10 12:15:24 2019-10-10 12:16:33 t 1 1 116637 306 0.00 2019-10-10 12:06:54 2019-10-10 12:18:16 t 1 1 116653 422 0.00 2019-10-10 11:47:30 2019-10-10 12:27:20 t 1 1 116657 532 0.00 2019-10-10 12:32:31 2019-10-10 12:32:36 t 1 1 116658 422 0.00 2019-10-10 12:27:20 2019-10-10 12:34:14 t 1 1 116663 490 0.00 2019-10-10 12:28:49 2019-10-10 12:37:50 t 1 1 116668 532 0.00 2019-10-10 12:42:36 2019-10-10 12:42:43 t 1 1 116671 422 0.00 2019-10-10 12:41:40 2019-10-10 12:49:37 t 1 1 116673 485 0.00 2019-10-10 12:47:18 2019-10-10 12:50:25 t 1 1 116675 327 0.00 2019-10-10 12:39:13 2019-10-10 12:55:33 t 1 1 116678 422 0.00 2019-10-10 12:49:37 2019-10-10 12:58:48 t 1 1 116679 528 0.00 2019-10-10 12:47:11 2019-10-10 12:59:36 t 1 1 116681 490 0.00 2019-10-10 13:00:32 2019-10-10 13:01:51 t 1 1 116684 528 0.00 2019-10-10 13:01:36 2019-10-10 13:03:15 t 1 1 116685 528 0.00 2019-10-10 13:04:56 2019-10-10 13:05:25 t 1 1 116686 481 0.00 2019-10-10 11:27:07 2019-10-10 13:06:46 t 1 1 116688 422 0.00 2019-10-10 12:58:48 2019-10-10 13:07:07 t 1 1 116692 412 0.00 2019-10-10 07:29:42 2019-10-10 13:09:49 t 1 1 116694 327 0.00 2019-10-10 12:55:33 2019-10-10 13:13:34 t 1 1 116697 532 0.00 2019-10-10 13:12:42 2019-10-10 13:15:56 t 1 1 116698 538 0.00 2019-10-10 12:23:25 2019-10-10 13:17:06 t 1 1 116701 331 0.00 2019-10-10 13:12:13 2019-10-10 13:18:33 t 1 1 116703 532 0.00 2019-10-10 13:18:37 2019-10-10 13:18:38 t 1 1 116708 516 0.00 2019-10-10 13:13:55 2019-10-10 13:28:52 t 1 1 116709 445 0.00 2019-10-10 12:27:27 2019-10-10 13:28:58 t 1 1 116711 532 0.00 2019-10-10 13:30:25 2019-10-10 13:30:31 t 1 1 116713 532 0.00 2019-10-10 13:32:37 2019-10-10 13:32:49 t 1 1 116720 325 0.00 2019-10-10 13:18:51 2019-10-10 13:51:56 t 1 2 116721 532 0.00 2019-10-10 13:52:22 2019-10-10 13:52:34 t 1 1 116731 532 0.00 2019-10-10 14:07:07 2019-10-10 14:07:08 t 1 1 116732 532 0.00 2019-10-10 14:10:01 2019-10-10 14:10:08 t 1 1 116733 451 0.00 2019-10-10 14:00:23 2019-10-10 14:11:05 t 1 1 116736 422 0.00 2019-10-10 13:13:43 2019-10-10 14:13:42 t 1 1 116737 528 0.00 2019-10-10 14:11:53 2019-10-10 14:14:18 t 1 1 116739 532 0.00 2019-10-10 14:14:53 2019-10-10 14:14:54 t 1 1 116741 528 0.00 2019-10-10 14:15:35 2019-10-10 14:17:15 t 1 1 116743 528 0.00 2019-10-10 14:17:22 2019-10-10 14:19:15 t 1 1 116745 532 0.00 2019-10-10 14:20:37 2019-10-10 14:20:42 t 1 1 116747 532 0.00 2019-10-10 14:21:35 2019-10-10 14:22:25 t 1 1 116751 532 0.00 2019-10-10 14:28:24 2019-10-10 14:28:41 t 1 1 116472 501 0.00 2019-10-10 03:35:14 2019-10-10 03:46:36 t 1 1 116474 501 0.00 2019-10-10 03:53:54 2019-10-10 03:57:34 t 1 1 116478 445 0.00 2019-10-10 04:08:45 2019-10-10 04:15:21 t 1 1 116479 422 0.00 2019-10-10 03:58:10 2019-10-10 04:16:42 t 1 1 116483 416 0.00 2019-10-09 22:16:36 2019-10-10 04:59:37 t 1 1 116491 331 0.00 2019-10-10 05:52:30 2019-10-10 06:10:25 t 1 1 116493 498 0.00 2019-10-10 05:24:13 2019-10-10 06:16:37 t 1 2 116494 542 0.00 2019-10-10 06:00:25 2019-10-10 06:20:13 t 1 1 116497 542 0.00 2019-10-10 06:47:58 2019-10-10 06:53:33 t 1 1 116507 306 0.00 2019-10-10 07:26:51 2019-10-10 07:29:35 t 1 1 116508 416 0.00 2019-10-10 04:58:41 2019-10-10 07:32:59 t 1 1 116509 542 0.00 2019-10-10 07:32:10 2019-10-10 07:35:11 t 1 1 116511 306 0.00 2019-10-10 07:34:06 2019-10-10 07:44:07 t 1 1 116515 430 0.00 2019-10-10 07:44:58 2019-10-10 07:55:35 t 1 1 116517 514 0.00 2019-10-10 06:02:13 2019-10-10 07:57:30 t 1 1 116520 430 0.00 2019-10-10 07:57:52 2019-10-10 07:58:14 t 1 1 116521 430 0.00 2019-10-10 07:58:43 2019-10-10 07:58:45 t 1 1 116522 430 0.00 2019-10-10 07:59:11 2019-10-10 07:59:19 t 1 1 116524 430 0.00 2019-10-10 08:00:25 2019-10-10 08:00:56 t 1 1 116525 430 0.00 2019-10-10 08:01:07 2019-10-10 08:01:44 t 1 1 116527 430 0.00 2019-10-10 08:07:03 2019-10-10 08:07:32 t 1 1 116531 538 0.00 2019-10-10 01:38:19 2019-10-10 08:12:42 t 1 1 116535 430 0.00 2019-10-10 08:18:51 2019-10-10 08:21:21 t 1 1 116537 542 0.00 2019-10-10 08:22:56 2019-10-10 08:28:02 t 1 1 116540 306 0.00 2019-10-10 08:42:14 2019-10-10 08:48:46 t 1 1 116545 528 0.00 2019-10-10 09:10:18 2019-10-10 09:11:01 t 1 1 116546 528 0.00 2019-10-10 09:16:19 2019-10-10 09:16:55 t 1 1 116553 470 0.00 2019-10-10 09:31:27 2019-10-10 09:43:02 t 1 1 116556 501 0.00 2019-10-10 09:54:58 2019-10-10 10:00:17 t 1 1 116560 528 0.00 2019-10-10 09:47:48 2019-10-10 10:12:52 t 1 1 116561 306 0.00 2019-10-10 10:09:01 2019-10-10 10:13:08 t 1 1 116563 445 0.00 2019-10-10 10:13:20 2019-10-10 10:13:43 t 1 1 116564 512 0.00 2019-10-10 10:11:37 2019-10-10 10:16:15 t 1 1 116569 306 0.00 2019-10-10 10:25:05 2019-10-10 10:28:42 t 1 1 116572 470 0.00 2019-10-10 10:23:08 2019-10-10 10:32:52 t 1 1 116577 501 0.00 2019-10-10 10:36:41 2019-10-10 10:39:20 t 1 1 116578 445 0.00 2019-10-10 10:24:36 2019-10-10 10:42:47 t 1 1 116579 445 0.00 2019-10-10 10:43:04 2019-10-10 10:44:59 t 1 1 116583 490 0.00 2019-10-10 10:50:31 2019-10-10 11:01:04 t 1 1 116587 512 0.00 2019-10-10 11:07:04 2019-10-10 11:17:31 t 1 1 116592 331 0.00 2019-10-10 11:22:09 2019-10-10 11:27:31 t 1 1 116594 306 0.00 2019-10-10 11:29:35 2019-10-10 11:31:54 t 1 1 116596 422 0.00 2019-10-10 11:24:26 2019-10-10 11:39:23 t 1 1 116598 445 0.00 2019-10-10 10:52:45 2019-10-10 11:43:01 t 1 1 116602 220 0.00 2019-10-10 10:08:19 2019-10-10 11:48:32 t 1 1 116603 545 0.00 2019-10-10 11:39:23 2019-10-10 11:50:47 t 1 1 116605 306 0.00 2019-10-10 11:41:16 2019-10-10 11:53:10 t 1 1 116606 532 0.00 2019-10-10 11:49:53 2019-10-10 11:54:34 t 1 1 116610 532 0.00 2019-10-10 11:56:27 2019-10-10 11:56:39 t 1 1 116611 532 0.00 2019-10-10 11:57:01 2019-10-10 11:57:14 t 1 1 116612 445 0.00 2019-10-10 11:56:27 2019-10-10 11:58:47 t 1 1 116613 545 0.00 2019-10-10 11:50:47 2019-10-10 11:59:02 t 1 1 116615 306 0.00 2019-10-10 11:57:16 2019-10-10 12:00:20 t 1 1 116617 470 0.00 2019-10-10 11:26:01 2019-10-10 12:01:04 t 1 1 116623 532 0.00 2019-10-10 12:05:19 2019-10-10 12:05:25 t 1 1 116624 532 0.00 2019-10-10 12:05:55 2019-10-10 12:06:17 t 1 1 116625 490 0.00 2019-10-10 12:03:49 2019-10-10 12:07:04 t 1 1 116626 470 0.00 2019-10-10 12:01:04 2019-10-10 12:08:26 t 1 1 116629 445 0.00 2019-10-10 12:00:10 2019-10-10 12:11:50 t 1 1 116630 538 0.00 2019-10-10 12:03:06 2019-10-10 12:12:41 t 1 1 116631 512 0.00 2019-10-10 11:41:00 2019-10-10 12:13:04 t 1 1 116633 538 0.00 2019-10-10 12:13:26 2019-10-10 12:15:38 t 1 1 116638 538 0.00 2019-10-10 12:16:00 2019-10-10 12:18:32 t 1 1 116641 461 0.00 2019-10-10 11:29:35 2019-10-10 12:19:40 t 1 2 116644 538 0.00 2019-10-10 12:21:46 2019-10-10 12:23:25 t 1 1 116647 542 0.00 2019-10-10 10:21:31 2019-10-10 12:24:59 t 1 1 116650 532 0.00 2019-10-10 12:26:08 2019-10-10 12:26:09 t 1 1 116652 501 0.00 2019-10-10 12:24:51 2019-10-10 12:26:50 t 1 1 116659 512 0.00 2019-10-10 12:14:13 2019-10-10 12:35:09 t 1 1 116661 501 0.00 2019-10-10 12:36:30 2019-10-10 12:37:02 t 1 1 116664 461 0.00 2019-10-10 11:54:58 2019-10-10 12:39:29 t 1 2 116666 532 0.00 2019-10-10 12:41:05 2019-10-10 12:41:06 t 1 1 116669 532 0.00 2019-10-10 12:45:51 2019-10-10 12:46:52 t 1 1 116670 501 0.00 2019-10-10 12:46:59 2019-10-10 12:48:19 t 1 1 116674 532 0.00 2019-10-10 12:52:39 2019-10-10 12:52:47 t 1 1 116677 470 0.00 2019-10-10 12:37:07 2019-10-10 12:58:15 t 1 1 116680 528 0.00 2019-10-10 13:00:57 2019-10-10 13:01:05 t 1 1 116683 532 0.00 2019-10-10 13:02:49 2019-10-10 13:02:56 t 1 1 116690 379 0.00 2019-10-10 07:20:25 2019-10-10 13:09:16 t 1 1 116699 327 0.00 2019-10-10 13:13:34 2019-10-10 13:17:35 t 1 1 116700 412 0.00 2019-10-10 13:09:49 2019-10-10 13:18:03 t 1 1 116702 528 0.00 2019-10-10 13:17:48 2019-10-10 13:18:36 t 1 1 116704 532 0.00 2019-10-10 13:23:35 2019-10-10 13:23:37 t 1 1 116706 532 0.00 2019-10-10 13:24:52 2019-10-10 13:26:15 t 1 1 116712 528 0.00 2019-10-10 13:32:13 2019-10-10 13:32:14 t 1 1 116716 528 0.00 2019-10-10 13:38:26 2019-10-10 13:38:55 t 1 1 116717 532 0.00 2019-10-10 13:40:42 2019-10-10 13:40:43 t 1 1 116718 306 0.00 2019-10-10 13:39:28 2019-10-10 13:47:12 t 1 1 116725 532 0.00 2019-10-10 13:56:08 2019-10-10 13:56:11 t 1 1 116726 445 0.00 2019-10-10 13:28:58 2019-10-10 13:58:18 t 1 1 116727 532 0.00 2019-10-10 13:59:53 2019-10-10 13:59:59 t 1 1 116728 532 0.00 2019-10-10 14:00:50 2019-10-10 14:00:51 t 1 1 116735 445 0.00 2019-10-10 13:59:11 2019-10-10 14:13:20 t 1 1 116738 461 0.00 2019-10-10 13:53:34 2019-10-10 14:14:28 t 1 2 116740 532 0.00 2019-10-10 14:15:05 2019-10-10 14:15:15 t 1 1 116742 532 0.00 2019-10-10 14:15:54 2019-10-10 14:17:15 t 1 1 116744 532 0.00 2019-10-10 14:20:12 2019-10-10 14:20:19 t 1 1 116746 445 0.00 2019-10-10 14:13:20 2019-10-10 14:20:57 t 1 1 116748 532 0.00 2019-10-10 14:26:02 2019-10-10 14:26:04 t 1 1 116749 532 0.00 2019-10-10 14:27:10 2019-10-10 14:27:31 t 1 1 116755 532 0.00 2019-10-10 14:33:05 2019-10-10 14:33:32 t 1 1 116757 220 0.00 2019-10-10 14:12:02 2019-10-10 14:35:25 t 1 2 116760 514 0.00 2019-10-10 14:23:46 2019-10-10 14:39:22 t 1 1 116762 532 0.00 2019-10-10 14:40:28 2019-10-10 14:40:35 t 1 1 116763 331 0.00 2019-10-10 14:32:56 2019-10-10 14:41:17 t 1 1 116765 331 0.00 2019-10-10 14:41:22 2019-10-10 14:44:23 t 1 1 116767 532 0.00 2019-10-10 14:45:33 2019-10-10 14:45:43 t 1 1 116753 532 0.00 2019-10-10 14:28:46 2019-10-10 14:31:48 t 1 1 116761 514 0.00 2019-10-10 14:39:22 2019-10-10 14:39:43 t 1 1 116768 331 0.00 2019-10-10 14:44:29 2019-10-10 14:45:57 t 1 1 116775 532 0.00 2019-10-10 14:52:14 2019-10-10 14:52:26 t 1 1 116776 532 0.00 2019-10-10 14:53:25 2019-10-10 14:53:38 t 1 1 116778 451 0.00 2019-10-10 14:47:06 2019-10-10 14:55:16 t 1 1 116779 532 0.00 2019-10-10 14:55:48 2019-10-10 14:55:48 t 1 1 116781 542 0.00 2019-10-10 14:49:22 2019-10-10 14:57:39 t 1 1 116783 508 0.00 2019-10-10 13:24:30 2019-10-10 14:58:53 t 1 2 116786 412 0.00 2019-10-10 14:31:25 2019-10-10 15:00:29 t 1 1 116789 532 0.00 2019-10-10 15:00:51 2019-10-10 15:01:03 t 1 1 116791 528 0.00 2019-10-10 14:47:42 2019-10-10 15:06:47 t 1 1 116792 445 0.00 2019-10-10 14:20:57 2019-10-10 15:07:11 t 1 1 116796 516 0.00 2019-10-10 15:01:33 2019-10-10 15:11:46 t 1 1 116797 516 0.00 2019-10-10 15:11:52 2019-10-10 15:12:57 t 1 1 116799 422 0.00 2019-10-10 14:56:35 2019-10-10 15:14:40 t 1 1 116800 542 0.00 2019-10-10 15:15:44 2019-10-10 15:19:10 t 1 1 116804 220 0.00 2019-10-10 14:50:40 2019-10-10 15:21:17 t 1 1 116806 532 0.00 2019-10-10 15:25:59 2019-10-10 15:26:05 t 1 1 116809 532 0.00 2019-10-10 15:30:18 2019-10-10 15:30:51 t 1 1 116810 532 0.00 2019-10-10 15:31:05 2019-10-10 15:31:07 t 1 1 116813 461 0.00 2019-10-10 15:13:39 2019-10-10 15:33:44 t 1 2 116816 292 0.00 2019-10-10 15:37:21 2019-10-10 15:37:39 t 1 2 116821 331 0.00 2019-10-10 15:42:57 2019-10-10 15:44:38 t 1 1 116823 461 0.00 2019-10-10 15:36:06 2019-10-10 15:46:11 t 1 2 116825 532 0.00 2019-10-10 15:46:15 2019-10-10 15:46:22 t 1 1 116826 542 0.00 2019-10-10 15:43:22 2019-10-10 15:48:42 t 1 1 116829 331 0.00 2019-10-10 15:44:53 2019-10-10 15:52:32 t 1 1 116833 532 0.00 2019-10-10 16:01:28 2019-10-10 16:01:29 t 1 1 116834 542 0.00 2019-10-10 15:56:02 2019-10-10 16:02:27 t 1 1 116835 412 0.00 2019-10-10 15:02:18 2019-10-10 16:06:20 t 1 1 116836 532 0.00 2019-10-10 16:06:31 2019-10-10 16:06:38 t 1 1 116839 501 0.00 2019-10-10 16:01:44 2019-10-10 16:09:05 t 1 1 116842 501 0.00 2019-10-10 16:09:46 2019-10-10 16:09:55 t 1 1 116844 512 0.00 2019-10-10 16:06:50 2019-10-10 16:12:05 t 1 1 116846 501 0.00 2019-10-10 16:12:23 2019-10-10 16:12:34 t 1 1 116850 516 0.00 2019-10-10 16:13:26 2019-10-10 16:16:14 t 1 1 116853 532 0.00 2019-10-10 16:09:40 2019-10-10 16:17:40 t 1 1 116857 485 0.00 2019-10-10 16:18:56 2019-10-10 16:21:46 t 1 1 116858 532 0.00 2019-10-10 16:21:42 2019-10-10 16:21:59 t 1 1 116861 412 0.00 2019-10-10 16:22:00 2019-10-10 16:23:01 t 1 1 116863 516 0.00 2019-10-10 16:19:18 2019-10-10 16:25:05 t 1 1 116867 485 0.00 2019-10-10 16:24:16 2019-10-10 16:28:03 t 1 1 116879 485 0.00 2019-10-10 16:48:13 2019-10-10 16:55:53 t 1 1 116880 451 0.00 2019-10-10 16:56:41 2019-10-10 16:57:12 t 1 1 116882 451 0.00 2019-10-10 16:57:11 2019-10-10 17:02:31 t 1 1 116888 532 0.00 2019-10-10 17:07:17 2019-10-10 17:07:44 t 1 1 116891 532 0.00 2019-10-10 17:09:27 2019-10-10 17:09:34 t 1 1 116892 532 0.00 2019-10-10 17:12:23 2019-10-10 17:12:25 t 1 1 116893 485 0.00 2019-10-10 17:08:50 2019-10-10 17:14:47 t 1 1 116894 542 0.00 2019-10-10 17:15:48 2019-10-10 17:16:57 t 1 1 116895 532 0.00 2019-10-10 17:17:27 2019-10-10 17:17:38 t 1 1 116898 532 0.00 2019-10-10 17:19:12 2019-10-10 17:19:25 t 1 1 116901 445 0.00 2019-10-10 16:22:36 2019-10-10 17:20:43 t 1 1 116905 532 0.00 2019-10-10 17:22:35 2019-10-10 17:22:42 t 1 1 116911 470 0.00 2019-10-10 17:08:09 2019-10-10 17:30:39 t 1 1 116913 532 0.00 2019-10-10 17:31:29 2019-10-10 17:31:31 t 1 1 116914 470 0.00 2019-10-10 17:30:39 2019-10-10 17:32:42 t 1 1 116916 532 0.00 2019-10-10 17:32:40 2019-10-10 17:32:48 t 1 1 116920 532 0.00 2019-10-10 17:37:46 2019-10-10 17:37:56 t 1 1 116921 532 0.00 2019-10-10 17:38:49 2019-10-10 17:38:51 t 1 1 116922 532 0.00 2019-10-10 17:39:16 2019-10-10 17:41:15 t 1 1 116925 532 0.00 2019-10-10 17:42:56 2019-10-10 17:42:58 t 1 1 116928 532 0.00 2019-10-10 17:44:31 2019-10-10 17:44:37 t 1 1 116933 331 0.00 2019-10-10 17:47:15 2019-10-10 17:50:20 t 1 1 116935 532 0.00 2019-10-10 17:51:25 2019-10-10 17:51:33 t 1 1 116943 516 0.00 2019-10-10 17:51:32 2019-10-10 18:01:23 t 1 1 116946 532 0.00 2019-10-10 18:02:50 2019-10-10 18:04:15 t 1 1 116948 532 0.00 2019-10-10 18:04:48 2019-10-10 18:04:59 t 1 1 116957 532 0.00 2019-10-10 18:13:56 2019-10-10 18:14:04 t 1 1 116959 512 0.00 2019-10-10 18:13:06 2019-10-10 18:17:04 t 1 1 116963 532 0.00 2019-10-10 18:18:44 2019-10-10 18:18:56 t 1 1 116965 532 0.00 2019-10-10 18:21:18 2019-10-10 18:21:31 t 1 1 116966 532 0.00 2019-10-10 18:22:02 2019-10-10 18:22:45 t 1 1 116967 532 0.00 2019-10-10 18:23:54 2019-10-10 18:23:56 t 1 1 116968 470 0.00 2019-10-10 18:17:42 2019-10-10 18:24:02 t 1 1 116970 468 0.00 2019-10-10 18:08:57 2019-10-10 18:24:28 t 1 1 116971 532 0.00 2019-10-10 18:27:35 2019-10-10 18:28:23 t 1 1 116973 470 0.00 2019-10-10 18:24:02 2019-10-10 18:28:54 t 1 1 116975 532 0.00 2019-10-10 18:30:09 2019-10-10 18:30:52 t 1 1 116977 532 0.00 2019-10-10 18:35:50 2019-10-10 18:36:01 t 1 1 116980 538 0.00 2019-10-10 18:38:20 2019-10-10 18:40:02 t 1 1 116983 532 0.00 2019-10-10 18:46:03 2019-10-10 18:46:04 t 1 1 116985 532 0.00 2019-10-10 18:47:44 2019-10-10 18:48:36 t 1 1 116986 528 0.00 2019-10-10 18:45:25 2019-10-10 18:49:33 t 1 1 116987 532 0.00 2019-10-10 18:48:52 2019-10-10 18:50:18 t 1 1 116988 532 0.00 2019-10-10 18:51:07 2019-10-10 18:51:14 t 1 1 116990 516 0.00 2019-10-10 18:42:17 2019-10-10 18:52:41 t 1 1 116996 532 0.00 2019-10-10 18:58:34 2019-10-10 18:58:46 t 1 1 116998 470 0.00 2019-10-10 18:28:58 2019-10-10 19:02:25 t 1 1 116999 220 0.00 2019-10-10 19:01:03 2019-10-10 19:04:55 t 1 1 117001 532 0.00 2019-10-10 19:08:35 2019-10-10 19:08:36 t 1 1 117004 532 0.00 2019-10-10 19:10:18 2019-10-10 19:10:34 t 1 1 117005 532 0.00 2019-10-10 19:11:16 2019-10-10 19:11:17 t 1 1 117008 532 0.00 2019-10-10 19:15:59 2019-10-10 19:16:08 t 1 1 117013 470 0.00 2019-10-10 19:08:55 2019-10-10 19:21:41 t 1 1 117016 532 0.00 2019-10-10 19:27:19 2019-10-10 19:27:20 t 1 1 117017 520 0.00 2019-10-10 19:26:50 2019-10-10 19:28:48 t 1 1 117021 514 0.00 2019-10-10 19:14:02 2019-10-10 19:34:22 t 1 1 117022 520 0.00 2019-10-10 19:28:48 2019-10-10 19:36:57 t 1 1 117025 545 0.00 2019-10-10 19:24:50 2019-10-10 19:37:47 t 1 1 117029 430 0.00 2019-10-10 19:36:34 2019-10-10 19:44:46 t 1 1 117032 532 0.00 2019-10-10 19:46:49 2019-10-10 19:46:51 t 1 1 117035 430 0.00 2019-10-10 19:44:46 2019-10-10 19:52:43 t 1 1 117041 481 0.00 2019-10-10 19:37:03 2019-10-10 19:58:49 t 1 1 117042 532 0.00 2019-10-10 19:58:31 2019-10-10 19:59:32 t 1 1 117044 532 0.00 2019-10-10 19:59:39 2019-10-10 19:59:51 t 1 1 116772 532 0.00 2019-10-10 14:47:40 2019-10-10 14:47:53 t 1 1 116773 545 0.00 2019-10-10 14:39:28 2019-10-10 14:49:17 t 1 1 116777 481 0.00 2019-10-10 13:07:50 2019-10-10 14:53:44 t 1 1 116782 451 0.00 2019-10-10 14:55:20 2019-10-10 14:57:40 t 1 1 116784 545 0.00 2019-10-10 14:49:17 2019-10-10 15:00:14 t 1 1 116788 296 0.00 2019-10-10 14:57:35 2019-10-10 15:00:56 t 1 2 116790 545 0.00 2019-10-10 15:00:36 2019-10-10 15:02:19 t 1 1 116793 532 0.00 2019-10-10 15:05:53 2019-10-10 15:07:15 t 1 1 116801 538 0.00 2019-10-10 15:03:17 2019-10-10 15:19:49 t 1 1 116802 331 0.00 2019-10-10 14:46:09 2019-10-10 15:19:58 t 1 1 116803 532 0.00 2019-10-10 15:20:36 2019-10-10 15:20:53 t 1 1 116811 331 0.00 2019-10-10 15:29:42 2019-10-10 15:31:28 t 1 1 116815 306 0.00 2019-10-10 15:29:16 2019-10-10 15:36:59 t 1 1 116819 292 0.00 2019-10-10 15:41:09 2019-10-10 15:42:11 t 1 2 116822 292 0.00 2019-10-10 15:44:28 2019-10-10 15:45:32 t 1 2 116827 538 0.00 2019-10-10 15:28:16 2019-10-10 15:50:16 t 1 1 116828 532 0.00 2019-10-10 15:51:20 2019-10-10 15:51:37 t 1 1 116832 501 0.00 2019-10-10 15:59:36 2019-10-10 16:01:28 t 1 1 116837 512 0.00 2019-10-10 15:57:53 2019-10-10 16:06:50 t 1 1 116838 412 0.00 2019-10-10 16:06:25 2019-10-10 16:07:02 t 1 1 116840 481 0.00 2019-10-10 14:53:52 2019-10-10 16:09:34 t 1 1 116845 412 0.00 2019-10-10 16:10:13 2019-10-10 16:12:15 t 1 1 116848 290 0.00 2019-10-10 15:42:43 2019-10-10 16:12:49 t 1 2 116851 485 0.00 2019-10-10 16:12:44 2019-10-10 16:16:15 t 1 1 116854 485 0.00 2019-10-10 16:16:15 2019-10-10 16:18:56 t 1 1 116855 501 0.00 2019-10-10 16:18:53 2019-10-10 16:20:03 t 1 1 116856 412 0.00 2019-10-10 16:18:01 2019-10-10 16:21:13 t 1 1 116860 445 0.00 2019-10-10 16:17:15 2019-10-10 16:22:37 t 1 1 116864 538 0.00 2019-10-10 16:09:50 2019-10-10 16:25:26 t 1 1 116865 532 0.00 2019-10-10 16:26:44 2019-10-10 16:26:45 t 1 1 116866 532 0.00 2019-10-10 16:27:25 2019-10-10 16:27:38 t 1 1 116871 422 0.00 2019-10-10 15:14:40 2019-10-10 16:33:26 t 1 1 116872 532 0.00 2019-10-10 16:33:47 2019-10-10 16:33:53 t 1 1 116873 485 0.00 2019-10-10 16:32:03 2019-10-10 16:36:54 t 1 1 116875 485 0.00 2019-10-10 16:36:54 2019-10-10 16:40:40 t 1 1 116876 532 0.00 2019-10-10 16:47:04 2019-10-10 16:48:15 t 1 1 116878 532 0.00 2019-10-10 16:52:27 2019-10-10 16:52:39 t 1 1 116883 485 0.00 2019-10-10 16:55:53 2019-10-10 17:02:47 t 1 1 116885 542 0.00 2019-10-10 16:09:03 2019-10-10 17:06:16 t 1 1 116886 461 0.00 2019-10-10 17:02:28 2019-10-10 17:07:34 t 1 2 116889 532 0.00 2019-10-10 17:08:02 2019-10-10 17:08:19 t 1 1 116897 306 0.00 2019-10-10 17:17:25 2019-10-10 17:18:59 t 1 1 116899 490 0.00 2019-10-10 17:18:47 2019-10-10 17:19:37 t 1 1 116904 456 0.00 2019-10-10 17:17:54 2019-10-10 17:22:16 t 1 1 116906 485 0.00 2019-10-10 17:21:02 2019-10-10 17:24:36 t 1 1 116909 532 0.00 2019-10-10 17:27:41 2019-10-10 17:27:41 t 1 1 116912 532 0.00 2019-10-10 17:31:17 2019-10-10 17:31:24 t 1 1 116915 422 0.00 2019-10-10 16:33:26 2019-10-10 17:32:47 t 1 1 116918 532 0.00 2019-10-10 17:33:24 2019-10-10 17:33:32 t 1 1 116919 512 0.00 2019-10-10 17:33:51 2019-10-10 17:37:36 t 1 1 116923 490 0.00 2019-10-10 17:28:36 2019-10-10 17:41:20 t 1 1 116926 490 0.00 2019-10-10 17:41:20 2019-10-10 17:43:52 t 1 1 116927 306 0.00 2019-10-10 17:41:59 2019-10-10 17:43:59 t 1 1 116930 490 0.00 2019-10-10 17:43:52 2019-10-10 17:48:04 t 1 1 116931 532 0.00 2019-10-10 17:48:00 2019-10-10 17:49:35 t 1 1 116937 331 0.00 2019-10-10 17:51:27 2019-10-10 17:52:47 t 1 1 116938 532 0.00 2019-10-10 17:53:10 2019-10-10 17:53:10 t 1 1 116942 532 0.00 2019-10-10 17:59:26 2019-10-10 17:59:53 t 1 1 116944 468 0.00 2019-10-10 17:55:52 2019-10-10 18:01:48 t 1 1 116945 532 0.00 2019-10-10 18:03:14 2019-10-10 18:03:22 t 1 1 116947 468 0.00 2019-10-10 18:01:48 2019-10-10 18:04:28 t 1 1 116949 470 0.00 2019-10-10 17:59:41 2019-10-10 18:05:21 t 1 1 116950 490 0.00 2019-10-10 17:48:04 2019-10-10 18:05:56 t 1 1 116952 490 0.00 2019-10-10 18:05:55 2019-10-10 18:08:01 t 1 1 116953 468 0.00 2019-10-10 18:04:28 2019-10-10 18:08:58 t 1 1 116954 456 0.00 2019-10-10 17:22:16 2019-10-10 18:12:32 t 1 1 116958 331 0.00 2019-10-10 18:00:35 2019-10-10 18:14:57 t 1 1 116960 470 0.00 2019-10-10 18:05:21 2019-10-10 18:17:42 t 1 1 116961 532 0.00 2019-10-10 18:17:49 2019-10-10 18:17:56 t 1 1 116962 532 0.00 2019-10-10 18:18:23 2019-10-10 18:18:25 t 1 1 116974 532 0.00 2019-10-10 18:29:50 2019-10-10 18:30:03 t 1 1 116976 532 0.00 2019-10-10 18:32:49 2019-10-10 18:32:57 t 1 1 116979 538 0.00 2019-10-10 18:29:23 2019-10-10 18:38:04 t 1 1 116981 532 0.00 2019-10-10 18:41:04 2019-10-10 18:41:05 t 1 1 116989 538 0.00 2019-10-10 18:40:11 2019-10-10 18:51:47 t 1 1 116992 532 0.00 2019-10-10 18:54:23 2019-10-10 18:54:40 t 1 1 116994 498 0.00 2019-10-10 16:36:22 2019-10-10 18:57:38 t 1 2 116997 532 0.00 2019-10-10 19:01:10 2019-10-10 19:01:14 t 1 1 117002 470 0.00 2019-10-10 19:02:25 2019-10-10 19:08:55 t 1 1 117006 468 0.00 2019-10-10 18:53:33 2019-10-10 19:13:40 t 1 1 117007 528 0.00 2019-10-10 19:03:45 2019-10-10 19:14:52 t 1 1 117010 520 0.00 2019-10-10 19:10:27 2019-10-10 19:19:34 t 1 1 117011 532 0.00 2019-10-10 19:20:32 2019-10-10 19:21:05 t 1 1 117014 532 0.00 2019-10-10 19:25:59 2019-10-10 19:26:08 t 1 1 117019 532 0.00 2019-10-10 19:31:14 2019-10-10 19:31:15 t 1 1 117020 532 0.00 2019-10-10 19:33:25 2019-10-10 19:33:38 t 1 1 117027 545 0.00 2019-10-10 19:37:47 2019-10-10 19:42:12 t 1 1 117028 532 0.00 2019-10-10 19:35:04 2019-10-10 19:43:20 t 1 1 117031 512 0.00 2019-10-10 19:42:57 2019-10-10 19:46:04 t 1 1 117033 532 0.00 2019-10-10 19:47:57 2019-10-10 19:48:05 t 1 1 117034 532 0.00 2019-10-10 19:51:02 2019-10-10 19:51:04 t 1 1 117036 532 0.00 2019-10-10 19:53:13 2019-10-10 19:53:31 t 1 1 117038 532 0.00 2019-10-10 19:55:09 2019-10-10 19:55:09 t 1 1 117039 468 0.00 2019-10-10 19:32:07 2019-10-10 19:56:36 t 1 1 117040 520 0.00 2019-10-10 19:53:58 2019-10-10 19:58:08 t 1 1 117043 306 0.00 2019-10-10 19:55:30 2019-10-10 19:59:32 t 1 1 117046 532 0.00 2019-10-10 20:08:40 2019-10-10 20:08:41 t 1 1 117048 532 0.00 2019-10-10 20:13:40 2019-10-10 20:13:42 t 1 1 117049 532 0.00 2019-10-10 20:15:32 2019-10-10 20:16:02 t 1 1 117050 485 0.00 2019-10-10 20:17:18 2019-10-10 20:19:29 t 1 1 117052 481 0.00 2019-10-10 19:58:49 2019-10-10 20:21:59 t 1 1 117054 220 0.00 2019-10-10 19:54:33 2019-10-10 20:24:42 t 1 1 117058 456 0.00 2019-10-10 20:20:04 2019-10-10 20:29:35 t 1 1 117062 532 0.00 2019-10-10 20:38:53 2019-10-10 20:38:55 t 1 1 117063 542 0.00 2019-10-10 20:38:58 2019-10-10 20:40:51 t 1 1 117066 532 0.00 2019-10-10 20:43:53 2019-10-10 20:43:59 t 1 1 117069 551 0.00 2019-10-10 20:44:14 2019-10-10 20:48:40 t 1 1 116785 379 0.00 2019-10-10 13:11:27 2019-10-10 15:00:15 t 1 1 116787 512 0.00 2019-10-10 14:10:26 2019-10-10 15:00:41 t 1 1 116794 532 0.00 2019-10-10 15:09:58 2019-10-10 15:10:15 t 1 1 116795 532 0.00 2019-10-10 15:10:52 2019-10-10 15:11:00 t 1 1 116798 528 0.00 2019-10-10 15:06:47 2019-10-10 15:13:29 t 1 1 116805 306 0.00 2019-10-10 15:13:33 2019-10-10 15:22:46 t 1 1 116807 498 0.00 2019-10-10 14:30:43 2019-10-10 15:27:29 t 1 2 116808 331 0.00 2019-10-10 15:20:34 2019-10-10 15:29:42 t 1 1 116812 532 0.00 2019-10-10 15:33:16 2019-10-10 15:33:29 t 1 1 116814 532 0.00 2019-10-10 15:36:06 2019-10-10 15:36:17 t 1 1 116817 292 0.00 2019-10-10 15:38:11 2019-10-10 15:39:12 t 1 2 116818 532 0.00 2019-10-10 15:41:16 2019-10-10 15:41:17 t 1 1 116820 331 0.00 2019-10-10 15:33:58 2019-10-10 15:42:57 t 1 1 116824 490 0.00 2019-10-10 15:38:29 2019-10-10 15:46:20 t 1 1 116830 532 0.00 2019-10-10 15:56:25 2019-10-10 15:56:27 t 1 1 116831 532 0.00 2019-10-10 15:57:36 2019-10-10 15:57:39 t 1 1 116841 412 0.00 2019-10-10 16:07:05 2019-10-10 16:09:51 t 1 1 116843 501 0.00 2019-10-10 16:10:53 2019-10-10 16:10:55 t 1 1 116847 485 0.00 2019-10-10 16:05:49 2019-10-10 16:12:44 t 1 1 116849 412 0.00 2019-10-10 16:12:43 2019-10-10 16:14:15 t 1 1 116852 445 0.00 2019-10-10 15:07:33 2019-10-10 16:17:16 t 1 1 116859 412 0.00 2019-10-10 16:21:12 2019-10-10 16:22:00 t 1 1 116862 485 0.00 2019-10-10 16:21:46 2019-10-10 16:24:16 t 1 1 116868 311 0.00 2019-10-10 16:05:21 2019-10-10 16:28:44 t 1 2 116869 532 0.00 2019-10-10 16:31:48 2019-10-10 16:31:57 t 1 1 116870 485 0.00 2019-10-10 16:28:03 2019-10-10 16:32:04 t 1 1 116874 470 0.00 2019-10-10 12:58:15 2019-10-10 16:40:03 t 1 1 116877 532 0.00 2019-10-10 16:52:08 2019-10-10 16:52:09 t 1 1 116881 532 0.00 2019-10-10 16:57:12 2019-10-10 16:57:13 t 1 1 116884 516 0.00 2019-10-10 17:00:24 2019-10-10 17:05:43 t 1 1 116887 470 0.00 2019-10-10 16:40:03 2019-10-10 17:07:44 t 1 1 116890 485 0.00 2019-10-10 17:02:47 2019-10-10 17:08:50 t 1 1 116896 490 0.00 2019-10-10 17:17:45 2019-10-10 17:18:47 t 1 1 116900 532 0.00 2019-10-10 17:20:18 2019-10-10 17:20:34 t 1 1 116902 532 0.00 2019-10-10 17:21:14 2019-10-10 17:21:26 t 1 1 116903 532 0.00 2019-10-10 17:21:44 2019-10-10 17:22:01 t 1 1 116907 528 0.00 2019-10-10 17:05:04 2019-10-10 17:24:56 t 1 1 116908 532 0.00 2019-10-10 17:27:20 2019-10-10 17:27:35 t 1 1 116910 532 0.00 2019-10-10 17:30:00 2019-10-10 17:30:34 t 1 1 116917 331 0.00 2019-10-10 16:05:06 2019-10-10 17:33:14 t 1 1 116924 470 0.00 2019-10-10 17:33:44 2019-10-10 17:42:17 t 1 1 116929 331 0.00 2019-10-10 17:34:00 2019-10-10 17:47:10 t 1 1 116932 470 0.00 2019-10-10 17:42:17 2019-10-10 17:49:39 t 1 1 116934 306 0.00 2019-10-10 17:48:56 2019-10-10 17:51:03 t 1 1 116936 422 0.00 2019-10-10 17:32:47 2019-10-10 17:52:39 t 1 1 116939 468 0.00 2019-10-10 17:23:00 2019-10-10 17:55:52 t 1 1 116940 532 0.00 2019-10-10 17:58:11 2019-10-10 17:58:19 t 1 1 116941 470 0.00 2019-10-10 17:49:39 2019-10-10 17:59:41 t 1 1 116951 532 0.00 2019-10-10 18:07:40 2019-10-10 18:07:47 t 1 1 116955 532 0.00 2019-10-10 18:13:22 2019-10-10 18:13:23 t 1 1 116956 516 0.00 2019-10-10 18:12:07 2019-10-10 18:14:01 t 1 1 116964 516 0.00 2019-10-10 18:19:19 2019-10-10 18:21:26 t 1 1 116969 532 0.00 2019-10-10 18:24:01 2019-10-10 18:24:03 t 1 1 116972 532 0.00 2019-10-10 18:28:30 2019-10-10 18:28:31 t 1 1 116978 306 0.00 2019-10-10 18:25:49 2019-10-10 18:37:33 t 1 1 116982 528 0.00 2019-10-10 18:20:15 2019-10-10 18:45:25 t 1 1 116984 422 0.00 2019-10-10 17:52:39 2019-10-10 18:47:11 t 1 1 116991 468 0.00 2019-10-10 18:24:28 2019-10-10 18:53:33 t 1 1 116993 325 0.00 2019-10-10 18:34:39 2019-10-10 18:54:44 t 1 2 116995 532 0.00 2019-10-10 18:57:47 2019-10-10 18:58:35 t 1 1 117000 532 0.00 2019-10-10 19:06:14 2019-10-10 19:06:20 t 1 1 117003 520 0.00 2019-10-10 19:02:34 2019-10-10 19:10:27 t 1 1 117009 538 0.00 2019-10-10 18:54:24 2019-10-10 19:17:34 t 1 1 117012 462 0.00 2019-10-10 19:17:55 2019-10-10 19:21:41 t 1 1 117015 520 0.00 2019-10-10 19:19:37 2019-10-10 19:26:09 t 1 1 117018 468 0.00 2019-10-10 19:13:34 2019-10-10 19:29:21 t 1 1 117023 481 0.00 2019-10-10 16:11:06 2019-10-10 19:37:03 t 1 1 117024 516 0.00 2019-10-10 19:33:27 2019-10-10 19:37:09 t 1 1 117026 520 0.00 2019-10-10 19:37:03 2019-10-10 19:39:35 t 1 1 117030 520 0.00 2019-10-10 19:39:34 2019-10-10 19:45:07 t 1 1 117037 520 0.00 2019-10-10 19:45:06 2019-10-10 19:53:58 t 1 1 117045 532 0.00 2019-10-10 20:03:29 2019-10-10 20:03:43 t 1 1 117047 306 0.00 2019-10-10 20:01:55 2019-10-10 20:13:37 t 1 1 117051 532 0.00 2019-10-10 20:18:43 2019-10-10 20:20:16 t 1 1 117053 532 0.00 2019-10-10 20:23:43 2019-10-10 20:23:50 t 1 1 117055 430 0.00 2019-10-10 19:52:43 2019-10-10 20:25:26 t 1 1 117056 483 0.00 2019-10-10 20:21:55 2019-10-10 20:25:58 t 1 1 117057 532 0.00 2019-10-10 20:28:48 2019-10-10 20:28:55 t 1 1 117059 528 0.00 2019-10-10 20:26:06 2019-10-10 20:30:18 t 1 1 117064 542 0.00 2019-10-10 20:40:58 2019-10-10 20:42:00 t 1 1 117073 532 0.00 2019-10-10 20:54:22 2019-10-10 20:54:34 t 1 1 117076 532 0.00 2019-10-10 20:53:34 2019-10-10 20:55:16 t 1 1 117080 520 0.00 2019-10-10 20:52:18 2019-10-10 20:59:03 t 1 1 117082 468 0.00 2019-10-10 20:45:18 2019-10-10 21:00:18 t 1 1 117083 532 0.00 2019-10-10 21:00:32 2019-10-10 21:00:33 t 1 1 117087 532 0.00 2019-10-10 21:02:35 2019-10-10 21:02:56 t 1 1 117089 468 0.00 2019-10-10 21:00:29 2019-10-10 21:03:32 t 1 1 117093 306 0.00 2019-10-10 20:57:19 2019-10-10 21:05:49 t 1 1 117098 220 0.00 2019-10-10 21:07:16 2019-10-10 21:14:48 t 1 1 117103 422 0.00 2019-10-10 21:07:14 2019-10-10 21:19:06 t 1 1 117104 532 0.00 2019-10-10 21:19:32 2019-10-10 21:19:40 t 1 1 117105 375 0.00 2019-10-10 21:18:59 2019-10-10 21:20:11 t 1 1 117106 481 0.00 2019-10-10 20:21:59 2019-10-10 21:22:47 t 1 1 117107 430 0.00 2019-10-10 21:10:39 2019-10-10 21:23:44 t 1 1 117109 485 0.00 2019-10-10 21:26:33 2019-10-10 21:28:03 t 1 1 117110 532 0.00 2019-10-10 21:29:49 2019-10-10 21:29:57 t 1 1 117114 472 0.00 2019-10-10 21:35:22 2019-10-10 21:36:22 t 1 1 117117 472 0.00 2019-10-10 21:36:32 2019-10-10 21:37:29 t 1 1 117120 532 0.00 2019-10-10 21:38:23 2019-10-10 21:38:24 t 1 1 117122 481 0.00 2019-10-10 21:22:47 2019-10-10 21:39:23 t 1 1 117125 472 0.00 2019-10-10 21:40:26 2019-10-10 21:41:28 t 1 1 117126 472 0.00 2019-10-10 21:41:38 2019-10-10 21:42:39 t 1 1 117133 375 0.00 2019-10-10 21:34:21 2019-10-10 21:46:25 t 1 1 117136 544 0.00 2019-10-10 21:37:31 2019-10-10 21:50:24 t 1 1 117141 481 0.00 2019-10-10 21:39:23 2019-10-10 21:59:16 t 1 1 117143 532 0.00 2019-10-10 22:00:37 2019-10-10 22:00:38 t 1 1 117144 528 0.00 2019-10-10 21:43:52 2019-10-10 22:02:55 t 1 1 117060 430 0.00 2019-10-10 20:25:26 2019-10-10 20:34:13 t 1 1 117061 528 0.00 2019-10-10 20:30:17 2019-10-10 20:37:52 t 1 1 117065 551 0.00 2019-10-10 20:34:33 2019-10-10 20:42:42 t 1 1 117067 490 0.00 2019-10-10 20:44:40 2019-10-10 20:45:03 t 1 1 117068 445 0.00 2019-10-10 17:21:05 2019-10-10 20:47:20 t 1 1 117071 220 0.00 2019-10-10 20:27:18 2019-10-10 20:49:42 t 1 2 117077 339 0.00 2019-10-10 14:17:20 2019-10-10 20:55:43 t 1 2 117078 532 0.00 2019-10-10 20:56:33 2019-10-10 20:56:34 t 1 1 117084 451 0.00 2019-10-10 20:45:55 2019-10-10 21:00:47 t 1 1 117085 470 0.00 2019-10-10 19:21:41 2019-10-10 21:00:59 t 1 1 117086 532 0.00 2019-10-10 21:01:54 2019-10-10 21:02:12 t 1 1 117090 220 0.00 2019-10-10 20:54:36 2019-10-10 21:03:43 t 1 1 117091 532 0.00 2019-10-10 21:04:07 2019-10-10 21:04:17 t 1 1 117094 422 0.00 2019-10-10 18:47:11 2019-10-10 21:07:14 t 1 1 117097 532 0.00 2019-10-10 21:09:24 2019-10-10 21:11:16 t 1 1 117099 220 0.00 2019-10-10 21:14:46 2019-10-10 21:16:22 t 1 1 117101 451 0.00 2019-10-10 21:00:47 2019-10-10 21:18:20 t 1 1 117108 532 0.00 2019-10-10 21:24:45 2019-10-10 21:26:16 t 1 1 117112 220 0.00 2019-10-10 20:49:38 2019-10-10 21:36:16 t 1 2 117119 485 0.00 2019-10-10 21:28:39 2019-10-10 21:38:15 t 1 1 117124 451 0.00 2019-10-10 21:18:20 2019-10-10 21:40:39 t 1 1 117127 545 0.00 2019-10-10 21:26:36 2019-10-10 21:42:42 t 1 1 117129 532 0.00 2019-10-10 21:45:15 2019-10-10 21:45:22 t 1 1 117131 472 0.00 2019-10-10 21:44:41 2019-10-10 21:45:41 t 1 1 117132 536 0.00 2019-10-10 21:45:26 2019-10-10 21:46:06 t 1 1 117134 472 0.00 2019-10-10 21:45:51 2019-10-10 21:46:51 t 1 1 117135 375 0.00 2019-10-10 21:46:24 2019-10-10 21:48:02 t 1 1 117138 532 0.00 2019-10-10 21:50:24 2019-10-10 21:52:16 t 1 1 117145 532 0.00 2019-10-10 22:05:44 2019-10-10 22:05:52 t 1 1 117148 545 0.00 2019-10-10 21:42:42 2019-10-10 22:16:04 t 1 1 117152 481 0.00 2019-10-10 21:59:16 2019-10-10 22:22:32 t 1 1 117153 422 0.00 2019-10-10 21:19:06 2019-10-10 22:24:26 t 1 1 117155 528 0.00 2019-10-10 22:29:57 2019-10-10 22:30:25 t 1 1 117168 538 0.00 2019-10-10 19:19:09 2019-10-10 22:46:06 t 1 1 117169 545 0.00 2019-10-10 22:41:48 2019-10-10 22:47:19 t 1 1 117170 538 0.00 2019-10-10 22:46:29 2019-10-10 22:48:31 t 1 1 117176 470 0.00 2019-10-10 21:00:59 2019-10-10 22:54:19 t 1 1 117179 220 0.00 2019-10-10 21:52:44 2019-10-10 22:59:54 t 1 1 117180 528 0.00 2019-10-10 22:58:20 2019-10-10 23:00:22 t 1 1 117182 306 0.00 2019-10-10 22:44:42 2019-10-10 23:03:36 t 1 1 117187 327 0.00 2019-10-10 22:51:14 2019-10-10 23:10:44 t 1 1 117188 220 0.00 2019-10-10 22:59:54 2019-10-10 23:12:26 t 1 1 117197 551 0.00 2019-10-10 23:20:41 2019-10-10 23:27:40 t 1 1 117200 375 0.00 2019-10-10 23:29:32 2019-10-10 23:31:35 t 1 1 117205 327 0.00 2019-10-10 23:40:13 2019-10-10 23:40:14 t 1 1 117210 512 0.00 2019-10-10 23:46:07 2019-10-10 23:48:31 t 1 1 117217 512 0.00 2019-10-10 23:50:59 2019-10-10 23:51:23 t 1 1 117218 512 0.00 2019-10-10 23:51:45 2019-10-10 23:53:30 t 1 1 117221 451 0.00 2019-10-10 23:44:36 2019-10-10 23:59:46 t 1 1 117231 512 0.00 2019-10-10 23:54:00 2019-10-11 00:12:14 t 1 1 117234 551 0.00 2019-10-11 00:09:14 2019-10-11 00:13:30 t 1 1 117235 512 0.00 2019-10-11 00:12:14 2019-10-11 00:14:19 t 1 1 117244 532 0.00 2019-10-11 00:23:30 2019-10-11 00:23:32 t 1 1 117249 422 0.00 2019-10-11 00:15:41 2019-10-11 00:31:15 t 1 1 117255 532 0.00 2019-10-11 00:44:16 2019-10-11 00:45:17 t 1 1 117256 490 0.00 2019-10-11 00:44:14 2019-10-11 00:47:54 t 1 1 117259 327 0.00 2019-10-11 00:53:53 2019-10-11 00:54:22 t 1 1 117263 551 0.00 2019-10-11 00:50:36 2019-10-11 00:58:42 t 1 1 117264 532 0.00 2019-10-11 00:59:31 2019-10-11 00:59:34 t 1 1 117270 532 0.00 2019-10-11 01:09:59 2019-10-11 01:10:07 t 1 1 117272 422 0.00 2019-10-11 01:01:09 2019-10-11 01:16:58 t 1 1 117274 532 0.00 2019-10-11 01:19:51 2019-10-11 01:19:52 t 1 1 117276 532 0.00 2019-10-11 01:25:01 2019-10-11 01:26:17 t 1 1 117277 485 0.00 2019-10-11 01:24:57 2019-10-11 01:29:07 t 1 1 117282 422 0.00 2019-10-11 01:16:58 2019-10-11 01:32:17 t 1 1 117283 485 0.00 2019-10-11 01:30:08 2019-10-11 01:32:59 t 1 1 117287 220 0.00 2019-10-11 01:35:39 2019-10-11 01:37:48 t 1 1 117288 490 0.00 2019-10-11 01:36:04 2019-10-11 01:40:17 t 1 1 117289 532 0.00 2019-10-11 01:40:23 2019-10-11 01:40:26 t 1 1 117290 220 0.00 2019-10-11 01:38:03 2019-10-11 01:41:19 t 1 1 117293 490 0.00 2019-10-11 01:40:17 2019-10-11 01:44:50 t 1 1 117295 532 0.00 2019-10-11 01:45:04 2019-10-11 01:45:05 t 1 1 117296 532 0.00 2019-10-11 01:45:29 2019-10-11 01:45:32 t 1 1 117297 422 0.00 2019-10-11 01:32:17 2019-10-11 01:48:46 t 1 1 117298 490 0.00 2019-10-11 01:44:50 2019-10-11 01:49:30 t 1 1 117299 485 0.00 2019-10-11 01:45:22 2019-10-11 01:56:00 t 1 1 117309 311 0.00 2019-10-11 02:16:32 2019-10-11 02:35:55 t 1 2 117310 538 0.00 2019-10-10 23:48:06 2019-10-11 02:42:05 t 1 1 117315 551 0.00 2019-10-11 03:38:19 2019-10-11 03:47:21 t 1 1 117317 551 0.00 2019-10-11 03:47:21 2019-10-11 03:54:38 t 1 1 117318 538 0.00 2019-10-11 03:53:03 2019-10-11 04:00:08 t 1 1 117319 501 0.00 2019-10-11 03:37:50 2019-10-11 04:02:38 t 1 1 117324 516 0.00 2019-10-11 05:43:39 2019-10-11 05:44:59 t 1 1 117325 516 0.00 2019-10-11 05:45:22 2019-10-11 05:46:56 t 1 1 117327 542 0.00 2019-10-11 05:49:37 2019-10-11 05:52:03 t 1 1 117328 470 0.00 2019-10-11 00:00:42 2019-10-11 05:53:50 t 1 1 117331 516 0.00 2019-10-11 05:54:42 2019-10-11 05:56:42 t 1 1 117336 536 0.00 2019-10-11 06:26:09 2019-10-11 06:37:00 t 1 1 117338 485 0.00 2019-10-11 06:58:19 2019-10-11 07:08:15 t 1 1 117340 430 0.00 2019-10-11 07:01:07 2019-10-11 07:14:04 t 1 1 117341 220 0.00 2019-10-11 07:15:33 2019-10-11 07:18:58 t 1 1 117342 516 0.00 2019-10-11 07:19:06 2019-10-11 07:24:28 t 1 1 117343 485 0.00 2019-10-11 07:08:15 2019-10-11 07:25:40 t 1 1 117344 220 0.00 2019-10-11 07:23:15 2019-10-11 07:25:57 t 1 1 117345 220 0.00 2019-10-11 07:25:57 2019-10-11 07:27:16 t 1 1 117347 544 0.00 2019-10-11 07:32:58 2019-10-11 07:34:03 t 1 2 117349 544 0.00 2019-10-11 07:34:51 2019-10-11 07:35:54 t 1 2 117356 516 0.00 2019-10-11 08:00:58 2019-10-11 08:09:35 t 1 1 117357 306 0.00 2019-10-11 08:07:53 2019-10-11 08:10:13 t 1 1 117359 430 0.00 2019-10-11 07:55:29 2019-10-11 08:11:07 t 1 1 117362 445 0.00 2019-10-10 23:42:13 2019-10-11 08:30:47 t 1 1 117364 551 0.00 2019-10-11 08:34:30 2019-10-11 08:39:44 t 1 1 117367 551 0.00 2019-10-11 08:39:44 2019-10-11 08:46:30 t 1 1 117368 551 0.00 2019-10-11 08:46:30 2019-10-11 08:47:31 t 1 1 117371 375 0.00 2019-10-11 00:16:42 2019-10-11 08:47:32 t 1 1 117374 542 0.00 2019-10-11 08:03:42 2019-10-11 08:47:36 t 1 1 117381 490 0.00 2019-10-11 09:43:11 2019-10-11 09:48:11 t 1 1 117070 532 0.00 2019-10-10 20:48:58 2019-10-10 20:49:00 t 1 1 117072 220 0.00 2019-10-10 20:48:37 2019-10-10 20:51:00 t 1 2 117074 220 0.00 2019-10-10 20:24:42 2019-10-10 20:54:36 t 1 1 117075 306 0.00 2019-10-10 20:46:44 2019-10-10 20:55:00 t 1 1 117079 532 0.00 2019-10-10 20:56:58 2019-10-10 20:57:30 t 1 1 117081 532 0.00 2019-10-10 20:59:06 2019-10-10 20:59:08 t 1 1 117088 532 0.00 2019-10-10 21:01:43 2019-10-10 21:03:16 t 1 1 117092 445 0.00 2019-10-10 20:48:02 2019-10-10 21:05:37 t 1 1 117095 306 0.00 2019-10-10 21:05:49 2019-10-10 21:08:14 t 1 1 117096 430 0.00 2019-10-10 21:02:09 2019-10-10 21:09:36 t 1 1 117100 528 0.00 2019-10-10 20:38:04 2019-10-10 21:17:56 t 1 1 117102 375 0.00 2019-10-10 20:59:48 2019-10-10 21:18:59 t 1 1 117111 472 0.00 2019-10-10 21:17:21 2019-10-10 21:32:58 t 1 1 117113 532 0.00 2019-10-10 21:35:01 2019-10-10 21:36:16 t 1 1 117115 379 0.00 2019-10-10 21:24:35 2019-10-10 21:36:43 t 1 1 117116 339 0.00 2019-10-10 20:57:49 2019-10-10 21:37:09 t 1 2 117118 516 0.00 2019-10-10 21:31:20 2019-10-10 21:37:35 t 1 1 117121 220 0.00 2019-10-10 21:16:44 2019-10-10 21:39:14 t 1 1 117123 532 0.00 2019-10-10 21:40:06 2019-10-10 21:40:17 t 1 1 117128 472 0.00 2019-10-10 21:43:37 2019-10-10 21:44:29 t 1 1 117130 536 0.00 2019-10-10 21:43:35 2019-10-10 21:45:26 t 1 1 117137 472 0.00 2019-10-10 21:50:39 2019-10-10 21:51:40 t 1 1 117139 532 0.00 2019-10-10 21:53:29 2019-10-10 21:53:40 t 1 1 117140 472 0.00 2019-10-10 21:54:03 2019-10-10 21:54:46 t 1 1 117142 544 0.00 2019-10-10 21:50:24 2019-10-10 21:59:41 t 1 1 117146 532 0.00 2019-10-10 22:10:51 2019-10-10 22:10:58 t 1 1 117147 472 0.00 2019-10-10 22:12:53 2019-10-10 22:14:00 t 1 1 117150 306 0.00 2019-10-10 22:10:34 2019-10-10 22:17:30 t 1 1 117151 528 0.00 2019-10-10 22:03:01 2019-10-10 22:21:46 t 1 1 117160 247 0.00 2019-10-10 22:33:35 2019-10-10 22:38:41 t 1 2 117163 551 0.00 2019-10-10 22:34:32 2019-10-10 22:41:50 t 1 1 117165 528 0.00 2019-10-10 22:44:35 2019-10-10 22:44:42 t 1 1 117167 532 0.00 2019-10-10 22:45:49 2019-10-10 22:45:56 t 1 1 117172 327 0.00 2019-10-10 22:47:49 2019-10-10 22:49:17 t 1 1 117174 481 0.00 2019-10-10 22:22:32 2019-10-10 22:51:06 t 1 1 117178 532 0.00 2019-10-10 22:53:08 2019-10-10 22:57:42 t 1 1 117181 532 0.00 2019-10-10 23:01:50 2019-10-10 23:02:02 t 1 1 117184 445 0.00 2019-10-10 22:49:14 2019-10-10 23:06:14 t 1 1 117185 445 0.00 2019-10-10 23:06:15 2019-10-10 23:06:55 t 1 1 117189 451 0.00 2019-10-10 22:42:18 2019-10-10 23:12:34 t 1 1 117192 551 0.00 2019-10-10 23:09:56 2019-10-10 23:20:41 t 1 1 117193 292 0.00 2019-10-10 23:20:12 2019-10-10 23:21:13 t 1 2 117195 451 0.00 2019-10-10 23:12:34 2019-10-10 23:25:21 t 1 1 117198 375 0.00 2019-10-10 21:48:04 2019-10-10 23:27:44 t 1 1 117201 532 0.00 2019-10-10 23:32:33 2019-10-10 23:32:42 t 1 1 117203 536 0.00 2019-10-10 23:33:04 2019-10-10 23:38:40 t 1 1 117204 327 0.00 2019-10-10 23:39:02 2019-10-10 23:40:05 t 1 1 117206 220 0.00 2019-10-10 23:37:06 2019-10-10 23:40:27 t 1 1 117209 532 0.00 2019-10-10 23:47:59 2019-10-10 23:48:09 t 1 1 117211 327 0.00 2019-10-10 23:49:22 2019-10-10 23:49:36 t 1 1 117213 395 0.00 2019-10-10 20:39:30 2019-10-10 23:49:53 t 1 2 117214 468 0.00 2019-10-10 23:16:56 2019-10-10 23:49:58 t 1 1 117216 512 0.00 2019-10-10 23:49:53 2019-10-10 23:50:58 t 1 1 117219 327 0.00 2019-10-10 23:52:32 2019-10-10 23:53:36 t 1 1 117220 532 0.00 2019-10-10 23:51:23 2019-10-10 23:58:01 t 1 1 117222 470 0.00 2019-10-10 22:54:19 2019-10-11 00:00:42 t 1 1 117224 327 0.00 2019-10-11 00:03:05 2019-10-11 00:04:08 t 1 1 117227 220 0.00 2019-10-11 00:03:59 2019-10-11 00:09:11 t 1 1 117229 220 0.00 2019-10-11 00:00:23 2019-10-11 00:09:56 t 1 1 117233 375 0.00 2019-10-11 00:11:12 2019-10-11 00:13:00 t 1 1 117238 422 0.00 2019-10-10 23:40:53 2019-10-11 00:15:41 t 1 1 117239 375 0.00 2019-10-11 00:15:01 2019-10-11 00:16:42 t 1 1 117243 536 0.00 2019-10-11 00:21:28 2019-10-11 00:23:18 t 1 1 117245 468 0.00 2019-10-11 00:14:22 2019-10-11 00:25:47 t 1 1 117247 532 0.00 2019-10-11 00:27:19 2019-10-11 00:27:30 t 1 1 117248 532 0.00 2019-10-11 00:28:39 2019-10-11 00:30:17 t 1 1 117251 532 0.00 2019-10-11 00:33:44 2019-10-11 00:33:47 t 1 1 117254 422 0.00 2019-10-11 00:31:15 2019-10-11 00:45:10 t 1 1 117257 551 0.00 2019-10-11 00:42:35 2019-10-11 00:50:36 t 1 1 117258 532 0.00 2019-10-11 00:49:17 2019-10-11 00:51:17 t 1 1 117265 422 0.00 2019-10-11 00:45:10 2019-10-11 01:01:09 t 1 1 117278 490 0.00 2019-10-11 01:23:42 2019-10-11 01:29:47 t 1 1 117279 485 0.00 2019-10-11 01:29:07 2019-10-11 01:30:08 t 1 1 117286 220 0.00 2019-10-11 01:28:25 2019-10-11 01:36:35 t 1 1 117292 327 0.00 2019-10-11 01:15:23 2019-10-11 01:42:11 t 1 1 117294 532 0.00 2019-10-11 01:44:24 2019-10-11 01:44:57 t 1 1 117300 485 0.00 2019-10-11 01:56:53 2019-10-11 01:58:51 t 1 1 117301 536 0.00 2019-10-11 01:47:29 2019-10-11 02:02:08 t 1 1 117302 327 0.00 2019-10-11 01:42:11 2019-10-11 02:04:27 t 1 1 117303 327 0.00 2019-10-11 02:04:34 2019-10-11 02:04:49 t 1 1 117306 532 0.00 2019-10-11 01:47:45 2019-10-11 02:08:57 t 1 1 117307 532 0.00 2019-10-11 02:08:57 2019-10-11 02:12:24 t 1 1 117311 485 0.00 2019-10-11 03:00:12 2019-10-11 03:05:30 t 1 1 117313 485 0.00 2019-10-11 03:05:40 2019-10-11 03:08:29 t 1 1 117320 532 0.00 2019-10-11 04:00:42 2019-10-11 04:35:21 t 1 1 117333 516 0.00 2019-10-11 06:08:58 2019-10-11 06:25:30 t 1 1 117337 485 0.00 2019-10-11 06:21:36 2019-10-11 06:58:19 t 1 1 117339 542 0.00 2019-10-11 05:54:01 2019-10-11 07:11:45 t 1 1 117351 544 0.00 2019-10-11 07:36:32 2019-10-11 07:37:36 t 1 2 117352 544 0.00 2019-10-11 07:38:21 2019-10-11 07:38:26 t 1 2 117353 544 0.00 2019-10-11 07:38:43 2019-10-11 07:39:48 t 1 2 117363 551 0.00 2019-10-11 08:29:12 2019-10-11 08:34:30 t 1 1 117365 296 0.00 2019-10-11 08:38:26 2019-10-11 08:39:47 t 1 2 117370 545 0.00 2019-10-11 08:14:19 2019-10-11 08:47:32 t 1 1 117373 412 0.00 2019-10-11 08:40:46 2019-10-11 08:47:35 t 1 1 117377 490 0.00 2019-10-11 01:49:30 2019-10-11 09:02:08 t 1 1 117378 512 0.00 2019-10-11 08:59:23 2019-10-11 09:06:34 t 1 1 117379 526 0.00 2019-10-11 09:39:35 2019-10-11 09:47:08 t 1 1 117384 526 0.00 2019-10-11 09:47:08 2019-10-11 09:56:41 t 1 1 117385 516 0.00 2019-10-11 10:12:11 2019-10-11 10:15:12 t 1 1 117388 247 0.00 2019-10-11 10:20:13 2019-10-11 10:24:26 t 1 2 117389 520 0.00 2019-10-11 10:24:15 2019-10-11 10:25:08 t 1 1 117393 520 0.00 2019-10-11 10:27:49 2019-10-11 10:30:13 t 1 1 117395 220 0.00 2019-10-11 10:27:13 2019-10-11 10:39:36 t 1 2 117399 538 0.00 2019-10-11 10:39:46 2019-10-11 10:53:41 t 1 1 117400 327 0.00 2019-10-11 10:50:31 2019-10-11 10:54:04 t 1 1 117404 327 0.00 2019-10-11 11:06:37 2019-10-11 11:11:18 t 1 1 117149 532 0.00 2019-10-10 22:13:09 2019-10-10 22:16:49 t 1 1 117154 528 0.00 2019-10-10 22:23:35 2019-10-10 22:24:30 t 1 1 117156 545 0.00 2019-10-10 22:15:29 2019-10-10 22:33:33 t 1 1 117157 551 0.00 2019-10-10 22:23:45 2019-10-10 22:34:32 t 1 1 117158 528 0.00 2019-10-10 22:35:48 2019-10-10 22:36:18 t 1 1 117159 526 0.00 2019-10-10 22:16:47 2019-10-10 22:37:31 t 1 1 117161 528 0.00 2019-10-10 22:37:21 2019-10-10 22:40:53 t 1 1 117162 528 0.00 2019-10-10 22:40:57 2019-10-10 22:41:24 t 1 1 117164 361 0.00 2019-10-10 19:53:34 2019-10-10 22:42:37 t 1 2 117166 514 0.00 2019-10-10 22:30:55 2019-10-10 22:45:33 t 1 1 117171 445 0.00 2019-10-10 21:05:36 2019-10-10 22:49:02 t 1 1 117173 532 0.00 2019-10-10 22:50:31 2019-10-10 22:50:48 t 1 1 117175 551 0.00 2019-10-10 22:41:50 2019-10-10 22:52:07 t 1 1 117177 528 0.00 2019-10-10 22:45:16 2019-10-10 22:56:28 t 1 1 117183 532 0.00 2019-10-10 23:05:17 2019-10-10 23:05:28 t 1 1 117186 422 0.00 2019-10-10 22:24:26 2019-10-10 23:10:38 t 1 1 117190 327 0.00 2019-10-10 23:14:19 2019-10-10 23:15:09 t 1 1 117191 327 0.00 2019-10-10 23:15:25 2019-10-10 23:18:09 t 1 1 117194 481 0.00 2019-10-10 22:51:06 2019-10-10 23:23:15 t 1 1 117196 296 0.00 2019-10-10 23:21:16 2019-10-10 23:25:39 t 1 2 117199 327 0.00 2019-10-10 23:27:33 2019-10-10 23:29:36 t 1 1 117202 306 0.00 2019-10-10 23:32:48 2019-10-10 23:37:54 t 1 1 117207 422 0.00 2019-10-10 23:24:25 2019-10-10 23:40:53 t 1 1 117208 445 0.00 2019-10-10 23:06:54 2019-10-10 23:41:15 t 1 1 117212 512 0.00 2019-10-10 23:48:31 2019-10-10 23:49:46 t 1 1 117215 520 0.00 2019-10-10 23:48:41 2019-10-10 23:50:36 t 1 1 117223 412 0.00 2019-10-10 20:21:00 2019-10-11 00:04:04 t 1 1 117225 551 0.00 2019-10-10 23:57:44 2019-10-11 00:04:14 t 1 1 117226 532 0.00 2019-10-11 00:06:50 2019-10-11 00:06:52 t 1 1 117228 551 0.00 2019-10-11 00:04:14 2019-10-11 00:09:14 t 1 1 117230 375 0.00 2019-10-10 23:31:56 2019-10-11 00:11:12 t 1 1 117232 327 0.00 2019-10-11 00:11:19 2019-10-11 00:12:19 t 1 1 117236 456 0.00 2019-10-11 00:08:13 2019-10-11 00:14:32 t 1 1 117237 375 0.00 2019-10-11 00:13:00 2019-10-11 00:15:00 t 1 1 117240 551 0.00 2019-10-11 00:13:30 2019-10-11 00:18:32 t 1 1 117241 536 0.00 2019-10-10 23:38:40 2019-10-11 00:21:28 t 1 1 117242 327 0.00 2019-10-11 00:21:48 2019-10-11 00:22:53 t 1 1 117246 412 0.00 2019-10-11 00:04:04 2019-10-11 00:25:52 t 1 1 117250 327 0.00 2019-10-11 00:32:18 2019-10-11 00:33:21 t 1 1 117252 532 0.00 2019-10-11 00:38:58 2019-10-11 00:39:08 t 1 1 117253 327 0.00 2019-10-11 00:43:05 2019-10-11 00:44:12 t 1 1 117260 532 0.00 2019-10-11 00:54:27 2019-10-11 00:54:38 t 1 1 117261 412 0.00 2019-10-11 00:25:52 2019-10-11 00:55:49 t 1 1 117262 490 0.00 2019-10-11 00:47:54 2019-10-11 00:56:05 t 1 1 117266 468 0.00 2019-10-11 00:37:20 2019-10-11 01:03:37 t 1 1 117267 490 0.00 2019-10-11 00:56:05 2019-10-11 01:04:49 t 1 1 117268 327 0.00 2019-10-11 01:04:39 2019-10-11 01:05:36 t 1 1 117269 532 0.00 2019-10-11 01:09:40 2019-10-11 01:09:44 t 1 1 117271 412 0.00 2019-10-11 00:55:49 2019-10-11 01:11:34 t 1 1 117273 379 0.00 2019-10-10 21:36:54 2019-10-11 01:17:47 t 1 1 117275 536 0.00 2019-10-11 01:15:54 2019-10-11 01:22:34 t 1 1 117280 532 0.00 2019-10-11 01:30:06 2019-10-11 01:30:15 t 1 1 117281 412 0.00 2019-10-11 01:23:50 2019-10-11 01:32:17 t 1 1 117284 532 0.00 2019-10-11 01:35:17 2019-10-11 01:35:25 t 1 1 117285 490 0.00 2019-10-11 01:29:47 2019-10-11 01:36:04 t 1 1 117291 220 0.00 2019-10-11 01:41:19 2019-10-11 01:41:47 t 1 1 117304 372 0.00 2019-10-11 01:55:29 2019-10-11 02:06:36 t 1 2 117305 485 0.00 2019-10-11 02:04:46 2019-10-11 02:08:20 t 1 1 117308 485 0.00 2019-10-11 02:13:13 2019-10-11 02:14:28 t 1 1 117312 485 0.00 2019-10-11 03:05:29 2019-10-11 03:05:30 t 1 1 117314 551 0.00 2019-10-11 03:27:30 2019-10-11 03:38:19 t 1 1 117316 538 0.00 2019-10-11 03:26:02 2019-10-11 03:52:37 t 1 1 117321 220 0.00 2019-10-11 01:41:47 2019-10-11 05:09:31 t 1 1 117322 516 0.00 2019-10-11 05:37:01 2019-10-11 05:41:43 t 1 1 117323 516 0.00 2019-10-11 05:41:42 2019-10-11 05:43:14 t 1 1 117326 516 0.00 2019-10-11 05:47:10 2019-10-11 05:48:12 t 1 1 117329 542 0.00 2019-10-11 05:52:53 2019-10-11 05:53:55 t 1 1 117330 516 0.00 2019-10-11 05:48:35 2019-10-11 05:54:33 t 1 1 117332 485 0.00 2019-10-11 06:06:53 2019-10-11 06:11:45 t 1 1 117334 520 0.00 2019-10-11 06:08:22 2019-10-11 06:25:41 t 1 1 117335 520 0.00 2019-10-11 06:25:41 2019-10-11 06:35:58 t 1 1 117346 542 0.00 2019-10-11 07:30:43 2019-10-11 07:33:45 t 1 1 117348 485 0.00 2019-10-11 07:25:40 2019-10-11 07:34:38 t 1 1 117350 485 0.00 2019-10-11 07:34:38 2019-10-11 07:37:07 t 1 1 117354 542 0.00 2019-10-11 07:50:32 2019-10-11 07:54:00 t 1 1 117355 430 0.00 2019-10-11 07:15:10 2019-10-11 07:55:29 t 1 1 117358 520 0.00 2019-10-11 08:05:17 2019-10-11 08:10:13 t 1 1 117360 516 0.00 2019-10-11 08:09:35 2019-10-11 08:18:31 t 1 1 117361 551 0.00 2019-10-11 08:20:10 2019-10-11 08:29:12 t 1 1 117366 485 0.00 2019-10-11 08:37:17 2019-10-11 08:44:54 t 1 1 117369 485 0.00 2019-10-11 08:44:54 2019-10-11 08:47:32 t 1 1 117372 445 0.00 2019-10-11 08:30:47 2019-10-11 08:47:35 t 1 1 117375 422 0.00 2019-10-11 01:48:46 2019-10-11 08:47:37 t 1 1 117376 220 0.00 2019-10-11 08:52:47 2019-10-11 08:53:06 t 1 1 117380 220 0.00 2019-10-11 09:45:19 2019-10-11 09:47:16 t 1 2 117382 490 0.00 2019-10-11 09:48:11 2019-10-11 09:52:55 t 1 1 117386 220 0.00 2019-10-11 10:14:33 2019-10-11 10:17:23 t 1 1 117387 526 0.00 2019-10-11 09:56:41 2019-10-11 10:19:11 t 1 1 117390 220 0.00 2019-10-11 10:17:23 2019-10-11 10:25:32 t 1 1 117392 520 0.00 2019-10-11 10:26:31 2019-10-11 10:27:44 t 1 1 117394 520 0.00 2019-10-11 10:29:18 2019-10-11 10:31:52 t 1 1 117396 526 0.00 2019-10-11 10:19:11 2019-10-11 10:41:33 t 1 1 117397 327 0.00 2019-10-11 10:42:18 2019-10-11 10:46:33 t 1 1 117401 538 0.00 2019-10-11 10:53:49 2019-10-11 10:59:47 t 1 1 117402 327 0.00 2019-10-11 11:03:29 2019-10-11 11:04:02 t 1 1 117403 526 0.00 2019-10-11 10:41:33 2019-10-11 11:05:38 t 1 1 117405 514 0.00 2019-10-11 11:07:31 2019-10-11 11:12:23 t 1 1 117408 327 0.00 2019-10-11 11:16:41 2019-10-11 11:17:14 t 1 1 117411 485 0.00 2019-10-11 11:20:17 2019-10-11 11:24:13 t 1 1 117412 526 0.00 2019-10-11 11:05:38 2019-10-11 11:26:47 t 1 1 117415 327 0.00 2019-10-11 11:28:08 2019-10-11 11:28:44 t 1 1 117417 485 0.00 2019-10-11 11:29:34 2019-10-11 11:32:49 t 1 1 117420 490 0.00 2019-10-11 11:22:11 2019-10-11 11:38:48 t 1 1 117421 327 0.00 2019-10-11 11:38:44 2019-10-11 11:39:13 t 1 1 117422 526 0.00 2019-10-11 11:26:47 2019-10-11 11:40:21 t 1 1 117423 551 0.00 2019-10-11 11:25:06 2019-10-11 11:47:26 t 1 1 117424 490 0.00 2019-10-11 11:38:48 2019-10-11 11:47:36 t 1 1 117383 498 0.00 2019-10-11 09:20:13 2019-10-11 09:53:35 t 1 2 117391 520 0.00 2019-10-11 10:25:18 2019-10-11 10:27:27 t 1 1 117398 516 0.00 2019-10-11 10:17:18 2019-10-11 10:49:37 t 1 1 117406 220 0.00 2019-10-11 11:15:55 2019-10-11 11:16:02 t 1 1 117409 422 0.00 2019-10-11 11:08:34 2019-10-11 11:21:44 t 1 1 117410 490 0.00 2019-10-11 11:14:04 2019-10-11 11:22:11 t 1 1 117413 485 0.00 2019-10-11 11:24:13 2019-10-11 11:27:37 t 1 1 117416 485 0.00 2019-10-11 11:27:36 2019-10-11 11:29:34 t 1 1 117418 501 0.00 2019-10-11 10:52:52 2019-10-11 11:38:22 t 1 1 117431 551 0.00 2019-10-11 11:47:26 2019-10-11 11:56:57 t 1 1 117432 498 0.00 2019-10-11 10:48:34 2019-10-11 11:57:30 t 1 2 117433 327 0.00 2019-10-11 12:00:10 2019-10-11 12:01:01 t 1 1 117442 501 0.00 2019-10-11 12:23:16 2019-10-11 12:23:51 t 1 1 117445 501 0.00 2019-10-11 12:28:52 2019-10-11 12:32:00 t 1 1 117452 292 0.00 2019-10-11 12:44:21 2019-10-11 12:44:41 t 1 2 117453 327 0.00 2019-10-11 12:44:31 2019-10-11 12:45:05 t 1 1 117454 468 0.00 2019-10-11 12:42:35 2019-10-11 12:48:37 t 1 1 117455 468 0.00 2019-10-11 12:48:37 2019-10-11 12:51:39 t 1 1 117461 327 0.00 2019-10-11 12:55:00 2019-10-11 12:56:20 t 1 1 117464 490 0.00 2019-10-11 12:55:02 2019-10-11 13:02:41 t 1 1 117469 468 0.00 2019-10-11 13:04:34 2019-10-11 13:09:44 t 1 1 117472 220 0.00 2019-10-11 12:47:49 2019-10-11 13:11:09 t 1 2 117476 490 0.00 2019-10-11 13:10:20 2019-10-11 13:17:41 t 1 1 117479 485 0.00 2019-10-11 13:15:05 2019-10-11 13:22:50 t 1 1 117481 526 0.00 2019-10-11 13:20:44 2019-10-11 13:26:37 t 1 1 117482 485 0.00 2019-10-11 13:22:50 2019-10-11 13:27:25 t 1 1 117486 526 0.00 2019-10-11 13:26:37 2019-10-11 13:31:55 t 1 1 117487 290 0.00 2019-10-11 12:12:22 2019-10-11 13:32:28 t 1 2 117490 501 0.00 2019-10-11 13:35:03 2019-10-11 13:35:57 t 1 1 117491 485 0.00 2019-10-11 13:27:25 2019-10-11 13:37:46 t 1 1 117492 538 0.00 2019-10-11 12:35:25 2019-10-11 13:38:21 t 1 1 117495 327 0.00 2019-10-11 13:30:47 2019-10-11 13:41:14 t 1 1 117502 485 0.00 2019-10-11 13:51:01 2019-10-11 13:54:30 t 1 1 117509 485 0.00 2019-10-11 14:00:21 2019-10-11 14:04:30 t 1 1 117513 327 0.00 2019-10-11 14:06:53 2019-10-11 14:07:21 t 1 1 117516 468 0.00 2019-10-11 13:59:28 2019-10-11 14:10:17 t 1 1 117517 422 0.00 2019-10-11 12:00:18 2019-10-11 14:11:42 t 1 1 117520 485 0.00 2019-10-11 14:14:01 2019-10-11 14:16:32 t 1 1 117526 220 0.00 2019-10-11 14:27:01 2019-10-11 14:27:38 t 1 1 117527 220 0.00 2019-10-11 14:27:38 2019-10-11 14:28:12 t 1 1 117535 220 0.00 2019-10-11 14:31:22 2019-10-11 14:31:57 t 1 1 117539 220 0.00 2019-10-11 14:33:09 2019-10-11 14:33:44 t 1 1 117548 220 0.00 2019-10-11 14:36:22 2019-10-11 14:52:40 t 1 1 117564 306 0.00 2019-10-11 14:56:06 2019-10-11 14:58:58 t 1 1 117566 220 0.00 2019-10-11 14:59:30 2019-10-11 15:00:03 t 1 1 117572 220 0.00 2019-10-11 15:02:17 2019-10-11 15:02:51 t 1 1 117575 220 0.00 2019-10-11 15:03:23 2019-10-11 15:03:50 t 1 1 117576 220 0.00 2019-10-11 15:03:50 2019-10-11 15:04:24 t 1 1 117578 220 0.00 2019-10-11 15:04:58 2019-10-11 15:05:34 t 1 1 117586 220 0.00 2019-10-11 15:14:14 2019-10-11 15:14:48 t 1 1 117588 220 0.00 2019-10-11 15:15:23 2019-10-11 15:15:55 t 1 1 117589 220 0.00 2019-10-11 15:15:54 2019-10-11 15:16:32 t 1 1 117591 220 0.00 2019-10-11 15:17:04 2019-10-11 15:17:37 t 1 1 117592 220 0.00 2019-10-11 15:17:37 2019-10-11 15:18:12 t 1 1 117597 528 0.00 2019-10-11 15:16:57 2019-10-11 15:20:57 t 1 1 117598 220 0.00 2019-10-11 15:20:27 2019-10-11 15:21:03 t 1 1 117600 220 0.00 2019-10-11 15:21:36 2019-10-11 15:22:11 t 1 1 117602 220 0.00 2019-10-11 15:22:11 2019-10-11 15:22:42 t 1 1 117603 220 0.00 2019-10-11 15:22:42 2019-10-11 15:23:15 t 1 1 117608 220 0.00 2019-10-11 15:24:45 2019-10-11 15:25:19 t 1 1 117610 306 0.00 2019-10-11 15:06:25 2019-10-11 15:25:57 t 1 1 117611 220 0.00 2019-10-11 15:25:19 2019-10-11 15:25:57 t 1 1 117612 220 0.00 2019-10-11 15:25:57 2019-10-11 15:26:31 t 1 1 117617 220 0.00 2019-10-11 15:28:10 2019-10-11 15:28:44 t 1 1 117620 220 0.00 2019-10-11 15:28:44 2019-10-11 15:29:18 t 1 1 117621 220 0.00 2019-10-11 15:29:18 2019-10-11 15:29:51 t 1 1 117627 536 0.00 2019-10-11 15:31:14 2019-10-11 15:33:01 t 1 1 117628 516 0.00 2019-10-11 15:33:22 2019-10-11 15:33:44 t 1 1 117632 220 0.00 2019-10-11 15:34:25 2019-10-11 15:35:10 t 1 1 117633 220 0.00 2019-10-11 15:35:10 2019-10-11 15:35:43 t 1 1 117635 468 0.00 2019-10-11 15:25:46 2019-10-11 15:37:14 t 1 1 117637 220 0.00 2019-10-11 15:37:01 2019-10-11 15:37:36 t 1 1 117642 220 0.00 2019-10-11 15:39:29 2019-10-11 15:40:03 t 1 1 117643 220 0.00 2019-10-11 15:40:03 2019-10-11 15:40:40 t 1 1 117645 327 0.00 2019-10-11 15:39:04 2019-10-11 15:41:02 t 1 1 117655 220 0.00 2019-10-11 15:44:07 2019-10-11 15:44:41 t 1 1 117661 220 0.00 2019-10-11 15:46:44 2019-10-11 15:48:42 t 1 1 117671 470 0.00 2019-10-11 15:28:55 2019-10-11 15:51:01 t 1 1 117673 220 0.00 2019-10-11 15:51:30 2019-10-11 15:51:59 t 1 1 117679 422 0.00 2019-10-11 15:00:21 2019-10-11 15:54:11 t 1 1 117680 220 0.00 2019-10-11 15:54:10 2019-10-11 15:54:43 t 1 1 117683 461 0.00 2019-10-11 15:34:41 2019-10-11 15:56:30 t 1 2 117685 327 0.00 2019-10-11 15:51:59 2019-10-11 15:56:42 t 1 1 117686 220 0.00 2019-10-11 15:56:35 2019-10-11 15:57:16 t 1 1 117687 220 0.00 2019-10-11 15:57:16 2019-10-11 15:58:11 t 1 1 117689 520 0.00 2019-10-11 15:47:39 2019-10-11 15:58:49 t 1 1 117693 470 0.00 2019-10-11 15:55:46 2019-10-11 16:03:00 t 1 1 117699 445 0.00 2019-10-11 16:07:39 2019-10-11 16:08:35 t 1 1 117704 445 0.00 2019-10-11 16:10:26 2019-10-11 16:23:22 t 1 1 117705 451 0.00 2019-10-11 16:10:36 2019-10-11 16:29:39 t 1 1 117706 372 0.00 2019-10-11 16:22:09 2019-10-11 16:30:04 t 1 2 117707 528 0.00 2019-10-11 16:09:54 2019-10-11 16:32:18 t 1 1 117709 528 0.00 2019-10-11 16:37:06 2019-10-11 16:37:46 t 1 1 117717 461 0.00 2019-10-11 15:49:27 2019-10-11 16:45:56 t 1 2 117719 331 0.00 2019-10-11 16:45:02 2019-10-11 16:49:35 t 1 1 117722 468 0.00 2019-10-11 16:47:09 2019-10-11 16:51:16 t 1 1 117727 220 0.00 2019-10-11 16:52:55 2019-10-11 16:53:30 t 1 1 117728 220 0.00 2019-10-11 16:53:29 2019-10-11 16:54:07 t 1 1 117734 220 0.00 2019-10-11 16:55:20 2019-10-11 16:56:23 t 1 1 117736 461 0.00 2019-10-11 16:03:13 2019-10-11 16:56:59 t 1 2 117737 220 0.00 2019-10-11 16:56:21 2019-10-11 16:57:08 t 1 1 117739 220 0.00 2019-10-11 16:57:08 2019-10-11 16:57:42 t 1 1 117742 468 0.00 2019-10-11 16:51:16 2019-10-11 16:59:32 t 1 1 117746 490 0.00 2019-10-11 16:57:28 2019-10-11 17:03:03 t 1 1 117747 514 0.00 2019-10-11 17:00:31 2019-10-11 17:03:11 t 1 1 117748 331 0.00 2019-10-11 16:49:33 2019-10-11 17:04:50 t 1 1 117749 514 0.00 2019-10-11 17:03:11 2019-10-11 17:05:36 t 1 1 117407 538 0.00 2019-10-11 10:59:54 2019-10-11 11:16:46 t 1 1 117414 327 0.00 2019-10-11 11:27:10 2019-10-11 11:28:02 t 1 1 117419 508 0.00 2019-10-11 11:31:31 2019-10-11 11:38:44 t 1 2 117427 306 0.00 2019-10-11 11:49:53 2019-10-11 11:52:02 t 1 1 117429 490 0.00 2019-10-11 11:47:36 2019-10-11 11:55:11 t 1 1 117436 508 0.00 2019-10-11 12:00:42 2019-10-11 12:07:15 t 1 2 117441 501 0.00 2019-10-11 11:38:22 2019-10-11 12:20:40 t 1 1 117443 327 0.00 2019-10-11 12:21:40 2019-10-11 12:23:59 t 1 1 117446 490 0.00 2019-10-11 12:26:08 2019-10-11 12:33:07 t 1 1 117450 501 0.00 2019-10-11 12:42:21 2019-10-11 12:42:54 t 1 1 117456 372 0.00 2019-10-11 12:35:58 2019-10-11 12:51:56 t 1 2 117457 451 0.00 2019-10-11 12:17:33 2019-10-11 12:52:51 t 1 1 117458 501 0.00 2019-10-11 12:52:50 2019-10-11 12:53:23 t 1 1 117460 490 0.00 2019-10-11 12:43:19 2019-10-11 12:55:02 t 1 1 117462 481 0.00 2019-10-11 12:47:54 2019-10-11 12:57:31 t 1 1 117463 468 0.00 2019-10-11 12:51:39 2019-10-11 12:58:01 t 1 1 117466 468 0.00 2019-10-11 12:59:44 2019-10-11 13:03:56 t 1 1 117468 372 0.00 2019-10-11 12:55:21 2019-10-11 13:09:41 t 1 2 117471 490 0.00 2019-10-11 13:02:41 2019-10-11 13:10:20 t 1 1 117473 501 0.00 2019-10-11 13:13:49 2019-10-11 13:14:22 t 1 1 117474 485 0.00 2019-10-11 13:11:01 2019-10-11 13:15:05 t 1 1 117475 327 0.00 2019-10-11 13:16:56 2019-10-11 13:17:29 t 1 1 117477 325 0.00 2019-10-11 12:28:08 2019-10-11 13:20:58 t 1 2 117484 327 0.00 2019-10-11 13:27:27 2019-10-11 13:28:39 t 1 1 117488 361 0.00 2019-10-11 10:56:13 2019-10-11 13:33:27 t 1 2 117493 468 0.00 2019-10-11 13:29:32 2019-10-11 13:39:34 t 1 1 117496 526 0.00 2019-10-11 13:34:36 2019-10-11 13:42:29 t 1 1 117497 470 0.00 2019-10-11 13:32:15 2019-10-11 13:43:40 t 1 1 117499 220 0.00 2019-10-11 13:30:36 2019-10-11 13:46:49 t 1 1 117501 327 0.00 2019-10-11 13:51:15 2019-10-11 13:51:44 t 1 1 117505 485 0.00 2019-10-11 13:54:30 2019-10-11 14:00:21 t 1 1 117506 412 0.00 2019-10-11 13:47:24 2019-10-11 14:01:07 t 1 1 117507 379 0.00 2019-10-11 13:45:59 2019-10-11 14:01:54 t 1 1 117508 545 0.00 2019-10-11 13:57:16 2019-10-11 14:02:44 t 1 1 117515 327 0.00 2019-10-11 14:07:28 2019-10-11 14:08:22 t 1 1 117518 485 0.00 2019-10-11 14:04:30 2019-10-11 14:14:01 t 1 1 117519 220 0.00 2019-10-11 14:06:55 2019-10-11 14:14:32 t 1 1 117522 501 0.00 2019-10-11 13:44:47 2019-10-11 14:20:05 t 1 1 117529 220 0.00 2019-10-11 14:28:12 2019-10-11 14:28:48 t 1 1 117530 220 0.00 2019-10-11 14:28:48 2019-10-11 14:29:23 t 1 1 117531 327 0.00 2019-10-11 14:28:47 2019-10-11 14:30:09 t 1 1 117534 468 0.00 2019-10-11 14:10:17 2019-10-11 14:31:49 t 1 1 117536 470 0.00 2019-10-11 14:20:37 2019-10-11 14:32:00 t 1 1 117540 220 0.00 2019-10-11 14:33:44 2019-10-11 14:35:13 t 1 1 117551 536 0.00 2019-10-11 14:49:48 2019-10-11 14:53:06 t 1 1 117555 536 0.00 2019-10-11 14:53:31 2019-10-11 14:54:33 t 1 1 117557 220 0.00 2019-10-11 14:54:49 2019-10-11 14:55:31 t 1 1 117558 220 0.00 2019-10-11 14:55:31 2019-10-11 14:56:06 t 1 1 117559 220 0.00 2019-10-11 14:56:05 2019-10-11 14:56:39 t 1 1 117560 220 0.00 2019-10-11 14:56:38 2019-10-11 14:57:13 t 1 1 117561 220 0.00 2019-10-11 14:57:13 2019-10-11 14:57:48 t 1 1 117562 220 0.00 2019-10-11 14:57:47 2019-10-11 14:58:22 t 1 1 117565 220 0.00 2019-10-11 14:58:55 2019-10-11 14:59:30 t 1 1 117568 220 0.00 2019-10-11 15:00:03 2019-10-11 15:00:38 t 1 1 117569 220 0.00 2019-10-11 15:00:37 2019-10-11 15:01:09 t 1 1 117580 247 0.00 2019-10-11 15:06:24 2019-10-11 15:10:49 t 1 2 117582 220 0.00 2019-10-11 15:05:34 2019-10-11 15:12:10 t 1 1 117593 220 0.00 2019-10-11 15:18:12 2019-10-11 15:18:45 t 1 1 117594 220 0.00 2019-10-11 15:18:44 2019-10-11 15:19:18 t 1 1 117596 220 0.00 2019-10-11 15:19:55 2019-10-11 15:20:27 t 1 1 117599 220 0.00 2019-10-11 15:21:03 2019-10-11 15:21:36 t 1 1 117604 449 0.00 2019-10-11 15:23:30 2019-10-11 15:23:57 t 1 1 117605 220 0.00 2019-10-11 15:23:15 2019-10-11 15:24:11 t 1 1 117607 551 0.00 2019-10-11 14:47:52 2019-10-11 15:24:54 t 1 1 117624 220 0.00 2019-10-11 15:30:59 2019-10-11 15:31:33 t 1 1 117625 220 0.00 2019-10-11 15:31:33 2019-10-11 15:32:14 t 1 1 117629 220 0.00 2019-10-11 15:32:47 2019-10-11 15:33:47 t 1 1 117630 220 0.00 2019-10-11 15:33:46 2019-10-11 15:34:26 t 1 1 117639 306 0.00 2019-10-11 15:35:12 2019-10-11 15:38:48 t 1 1 117641 220 0.00 2019-10-11 15:38:48 2019-10-11 15:39:30 t 1 1 117646 220 0.00 2019-10-11 15:40:40 2019-10-11 15:41:19 t 1 1 117649 512 0.00 2019-10-11 15:29:33 2019-10-11 15:42:47 t 1 1 117650 220 0.00 2019-10-11 15:42:17 2019-10-11 15:42:55 t 1 1 117652 528 0.00 2019-10-11 15:43:26 2019-10-11 15:43:53 t 1 1 117653 220 0.00 2019-10-11 15:43:31 2019-10-11 15:44:07 t 1 1 117657 220 0.00 2019-10-11 15:45:12 2019-10-11 15:46:13 t 1 1 117659 516 0.00 2019-10-11 15:33:43 2019-10-11 15:46:53 t 1 1 117660 306 0.00 2019-10-11 15:44:35 2019-10-11 15:47:38 t 1 1 117663 545 0.00 2019-10-11 14:37:48 2019-10-11 15:48:57 t 1 1 117666 542 0.00 2019-10-11 11:09:02 2019-10-11 15:49:19 t 1 1 117668 327 0.00 2019-10-11 15:49:46 2019-10-11 15:50:19 t 1 1 117672 220 0.00 2019-10-11 15:50:59 2019-10-11 15:51:30 t 1 1 117674 220 0.00 2019-10-11 15:51:59 2019-10-11 15:52:34 t 1 1 117675 220 0.00 2019-10-11 15:52:33 2019-10-11 15:53:04 t 1 1 117677 470 0.00 2019-10-11 15:51:01 2019-10-11 15:53:56 t 1 1 117678 220 0.00 2019-10-11 15:53:35 2019-10-11 15:54:11 t 1 1 117682 220 0.00 2019-10-11 15:55:31 2019-10-11 15:56:03 t 1 1 117684 220 0.00 2019-10-11 15:56:02 2019-10-11 15:56:35 t 1 1 117690 220 0.00 2019-10-11 15:58:11 2019-10-11 15:59:12 t 1 1 117691 220 0.00 2019-10-11 15:59:12 2019-10-11 15:59:12 t 1 1 117695 516 0.00 2019-10-11 16:03:00 2019-10-11 16:05:51 t 1 1 117696 445 0.00 2019-10-11 16:03:33 2019-10-11 16:06:35 t 1 1 117697 327 0.00 2019-10-11 16:06:37 2019-10-11 16:07:11 t 1 1 117700 379 0.00 2019-10-11 15:49:08 2019-10-11 16:08:42 t 1 1 117702 445 0.00 2019-10-11 16:08:40 2019-10-11 16:10:26 t 1 1 117708 220 0.00 2019-10-11 16:01:40 2019-10-11 16:33:23 t 1 1 117711 412 0.00 2019-10-11 15:00:32 2019-10-11 16:39:22 t 1 1 117713 528 0.00 2019-10-11 16:39:47 2019-10-11 16:39:58 t 1 1 117716 331 0.00 2019-10-11 15:50:00 2019-10-11 16:45:03 t 1 1 117721 542 0.00 2019-10-11 16:42:00 2019-10-11 16:51:06 t 1 1 117723 445 0.00 2019-10-11 16:23:22 2019-10-11 16:51:24 t 1 1 117724 220 0.00 2019-10-11 15:59:47 2019-10-11 16:52:20 t 1 1 117731 470 0.00 2019-10-11 16:03:03 2019-10-11 16:54:54 t 1 1 117741 220 0.00 2019-10-11 16:57:42 2019-10-11 16:59:05 t 1 1 117745 220 0.00 2019-10-11 17:02:15 2019-10-11 17:03:02 t 1 1 117752 514 0.00 2019-10-11 17:05:36 2019-10-11 17:08:40 t 1 1 117753 490 0.00 2019-10-11 17:03:03 2019-10-11 17:09:49 t 1 1 117425 422 0.00 2019-10-11 11:21:44 2019-10-11 11:48:16 t 1 1 117426 327 0.00 2019-10-11 11:49:13 2019-10-11 11:50:14 t 1 1 117428 485 0.00 2019-10-11 11:47:35 2019-10-11 11:53:27 t 1 1 117430 526 0.00 2019-10-11 11:51:44 2019-10-11 11:55:55 t 1 1 117434 490 0.00 2019-10-11 11:55:11 2019-10-11 12:04:12 t 1 1 117435 551 0.00 2019-10-11 11:56:57 2019-10-11 12:07:14 t 1 1 117437 327 0.00 2019-10-11 12:10:56 2019-10-11 12:11:44 t 1 1 117438 516 0.00 2019-10-11 12:07:55 2019-10-11 12:12:57 t 1 1 117439 490 0.00 2019-10-11 12:04:12 2019-10-11 12:13:27 t 1 1 117440 516 0.00 2019-10-11 12:12:57 2019-10-11 12:16:47 t 1 1 117444 490 0.00 2019-10-11 12:13:27 2019-10-11 12:26:08 t 1 1 117447 538 0.00 2019-10-11 11:17:26 2019-10-11 12:33:11 t 1 1 117448 327 0.00 2019-10-11 12:33:54 2019-10-11 12:34:35 t 1 1 117449 468 0.00 2019-10-11 12:22:36 2019-10-11 12:42:35 t 1 1 117451 490 0.00 2019-10-11 12:33:07 2019-10-11 12:43:19 t 1 1 117459 451 0.00 2019-10-11 12:52:51 2019-10-11 12:54:44 t 1 1 117465 501 0.00 2019-10-11 13:03:19 2019-10-11 13:03:28 t 1 1 117467 327 0.00 2019-10-11 13:06:16 2019-10-11 13:07:00 t 1 1 117470 520 0.00 2019-10-11 13:07:59 2019-10-11 13:10:04 t 1 1 117478 490 0.00 2019-10-11 13:17:41 2019-10-11 13:22:48 t 1 1 117480 501 0.00 2019-10-11 13:24:19 2019-10-11 13:25:07 t 1 1 117483 490 0.00 2019-10-11 13:22:48 2019-10-11 13:28:25 t 1 1 117485 468 0.00 2019-10-11 13:09:44 2019-10-11 13:29:09 t 1 1 117489 526 0.00 2019-10-11 13:31:55 2019-10-11 13:34:36 t 1 1 117494 485 0.00 2019-10-11 13:37:47 2019-10-11 13:41:06 t 1 1 117498 485 0.00 2019-10-11 13:41:06 2019-10-11 13:45:40 t 1 1 117500 412 0.00 2019-10-11 12:27:04 2019-10-11 13:47:24 t 1 1 117503 306 0.00 2019-10-11 13:51:09 2019-10-11 13:55:43 t 1 1 117504 468 0.00 2019-10-11 13:39:34 2019-10-11 13:59:28 t 1 1 117510 327 0.00 2019-10-11 14:01:44 2019-10-11 14:05:02 t 1 1 117511 327 0.00 2019-10-11 14:05:57 2019-10-11 14:06:26 t 1 1 117512 220 0.00 2019-10-11 13:46:49 2019-10-11 14:06:55 t 1 1 117514 498 0.00 2019-10-11 13:15:46 2019-10-11 14:07:58 t 1 2 117521 327 0.00 2019-10-11 14:18:18 2019-10-11 14:18:51 t 1 1 117523 470 0.00 2019-10-11 13:43:40 2019-10-11 14:20:37 t 1 1 117524 456 0.00 2019-10-11 14:07:32 2019-10-11 14:24:35 t 1 1 117525 220 0.00 2019-10-11 14:14:31 2019-10-11 14:27:01 t 1 1 117528 481 0.00 2019-10-11 12:57:31 2019-10-11 14:28:30 t 1 1 117532 220 0.00 2019-10-11 14:29:22 2019-10-11 14:30:49 t 1 1 117533 220 0.00 2019-10-11 14:30:48 2019-10-11 14:31:22 t 1 1 117537 220 0.00 2019-10-11 14:31:57 2019-10-11 14:32:32 t 1 1 117538 220 0.00 2019-10-11 14:32:31 2019-10-11 14:33:09 t 1 1 117541 220 0.00 2019-10-11 14:35:13 2019-10-11 14:35:48 t 1 1 117542 220 0.00 2019-10-11 14:35:48 2019-10-11 14:36:23 t 1 1 117543 545 0.00 2019-10-11 14:02:44 2019-10-11 14:37:49 t 1 1 117544 501 0.00 2019-10-11 14:20:05 2019-10-11 14:42:25 t 1 1 117545 379 0.00 2019-10-11 14:01:54 2019-10-11 14:46:05 t 1 1 117546 551 0.00 2019-10-11 14:38:06 2019-10-11 14:47:52 t 1 1 117547 379 0.00 2019-10-11 14:46:05 2019-10-11 14:48:17 t 1 1 117549 412 0.00 2019-10-11 14:01:07 2019-10-11 14:52:52 t 1 1 117550 220 0.00 2019-10-11 14:52:40 2019-10-11 14:53:05 t 1 1 117552 470 0.00 2019-10-11 14:32:00 2019-10-11 14:53:29 t 1 1 117553 220 0.00 2019-10-11 14:53:01 2019-10-11 14:53:39 t 1 1 117554 220 0.00 2019-10-11 14:53:39 2019-10-11 14:54:14 t 1 1 117556 220 0.00 2019-10-11 14:54:14 2019-10-11 14:54:49 t 1 1 117563 220 0.00 2019-10-11 14:58:22 2019-10-11 14:58:55 t 1 1 117567 422 0.00 2019-10-11 14:11:42 2019-10-11 15:00:21 t 1 1 117570 220 0.00 2019-10-11 15:01:08 2019-10-11 15:01:43 t 1 1 117571 220 0.00 2019-10-11 15:01:43 2019-10-11 15:02:17 t 1 1 117573 449 0.00 2019-10-11 14:57:29 2019-10-11 15:02:53 t 1 1 117574 220 0.00 2019-10-11 15:02:50 2019-10-11 15:03:23 t 1 1 117577 220 0.00 2019-10-11 15:04:24 2019-10-11 15:04:59 t 1 1 117579 468 0.00 2019-10-11 14:31:49 2019-10-11 15:06:35 t 1 1 117581 327 0.00 2019-10-11 14:40:09 2019-10-11 15:11:12 t 1 1 117583 220 0.00 2019-10-11 15:12:10 2019-10-11 15:12:55 t 1 1 117584 220 0.00 2019-10-11 15:12:55 2019-10-11 15:13:40 t 1 1 117585 220 0.00 2019-10-11 15:13:40 2019-10-11 15:14:14 t 1 1 117587 220 0.00 2019-10-11 15:14:47 2019-10-11 15:15:23 t 1 1 117590 220 0.00 2019-10-11 15:16:32 2019-10-11 15:17:04 t 1 1 117595 220 0.00 2019-10-11 15:19:18 2019-10-11 15:19:55 t 1 1 117601 470 0.00 2019-10-11 14:53:29 2019-10-11 15:22:24 t 1 1 117606 220 0.00 2019-10-11 15:24:10 2019-10-11 15:24:45 t 1 1 117609 468 0.00 2019-10-11 15:09:05 2019-10-11 15:25:46 t 1 1 117613 528 0.00 2019-10-11 15:26:28 2019-10-11 15:26:55 t 1 1 117614 220 0.00 2019-10-11 15:26:31 2019-10-11 15:27:06 t 1 1 117615 220 0.00 2019-10-11 15:27:06 2019-10-11 15:27:39 t 1 1 117616 220 0.00 2019-10-11 15:27:39 2019-10-11 15:28:11 t 1 1 117618 512 0.00 2019-10-11 15:27:14 2019-10-11 15:28:47 t 1 1 117619 327 0.00 2019-10-11 15:11:12 2019-10-11 15:29:09 t 1 1 117622 220 0.00 2019-10-11 15:29:51 2019-10-11 15:30:25 t 1 1 117623 220 0.00 2019-10-11 15:30:24 2019-10-11 15:30:59 t 1 1 117626 220 0.00 2019-10-11 15:32:14 2019-10-11 15:32:47 t 1 1 117631 445 0.00 2019-10-11 15:22:03 2019-10-11 15:34:26 t 1 1 117634 220 0.00 2019-10-11 15:35:43 2019-10-11 15:37:02 t 1 1 117636 528 0.00 2019-10-11 15:31:22 2019-10-11 15:37:15 t 1 1 117638 220 0.00 2019-10-11 15:37:36 2019-10-11 15:38:16 t 1 1 117640 220 0.00 2019-10-11 15:38:15 2019-10-11 15:38:48 t 1 1 117644 528 0.00 2019-10-11 15:37:49 2019-10-11 15:40:44 t 1 1 117647 445 0.00 2019-10-11 15:34:26 2019-10-11 15:42:07 t 1 1 117648 220 0.00 2019-10-11 15:41:19 2019-10-11 15:42:18 t 1 1 117651 220 0.00 2019-10-11 15:42:55 2019-10-11 15:43:31 t 1 1 117654 512 0.00 2019-10-11 15:42:47 2019-10-11 15:44:38 t 1 1 117656 220 0.00 2019-10-11 15:44:41 2019-10-11 15:45:12 t 1 1 117658 220 0.00 2019-10-11 15:46:13 2019-10-11 15:46:44 t 1 1 117662 516 0.00 2019-10-11 15:47:12 2019-10-11 15:48:52 t 1 1 117664 379 0.00 2019-10-11 15:40:24 2019-10-11 15:49:08 t 1 1 117665 220 0.00 2019-10-11 15:48:42 2019-10-11 15:49:17 t 1 1 117667 220 0.00 2019-10-11 15:49:16 2019-10-11 15:49:55 t 1 1 117669 220 0.00 2019-10-11 15:49:55 2019-10-11 15:50:26 t 1 1 117670 220 0.00 2019-10-11 15:50:26 2019-10-11 15:50:59 t 1 1 117676 220 0.00 2019-10-11 15:53:04 2019-10-11 15:53:36 t 1 1 117681 220 0.00 2019-10-11 15:54:43 2019-10-11 15:55:31 t 1 1 117688 468 0.00 2019-10-11 15:37:13 2019-10-11 15:58:24 t 1 1 117692 220 0.00 2019-10-11 15:59:12 2019-10-11 15:59:47 t 1 1 117694 445 0.00 2019-10-11 15:42:07 2019-10-11 16:03:33 t 1 1 117698 445 0.00 2019-10-11 16:06:34 2019-10-11 16:07:43 t 1 1 117701 528 0.00 2019-10-11 15:46:00 2019-10-11 16:09:54 t 1 1 117703 542 0.00 2019-10-11 15:49:19 2019-10-11 16:12:30 t 1 1 117710 490 0.00 2019-10-11 16:17:54 2019-10-11 16:37:57 t 1 1 117712 528 0.00 2019-10-11 16:39:22 2019-10-11 16:39:28 t 1 1 117714 220 0.00 2019-10-11 16:40:36 2019-10-11 16:40:37 t 1 1 117715 468 0.00 2019-10-11 15:58:24 2019-10-11 16:43:22 t 1 1 117718 468 0.00 2019-10-11 16:43:22 2019-10-11 16:47:09 t 1 1 117720 520 0.00 2019-10-11 16:18:38 2019-10-11 16:49:47 t 1 1 117725 220 0.00 2019-10-11 16:52:20 2019-10-11 16:52:55 t 1 1 117726 445 0.00 2019-10-11 16:51:48 2019-10-11 16:53:21 t 1 1 117729 514 0.00 2019-10-11 16:51:52 2019-10-11 16:54:12 t 1 1 117730 220 0.00 2019-10-11 16:54:06 2019-10-11 16:54:43 t 1 1 117732 220 0.00 2019-10-11 16:54:43 2019-10-11 16:55:20 t 1 1 117733 445 0.00 2019-10-11 16:53:20 2019-10-11 16:56:18 t 1 1 117735 451 0.00 2019-10-11 16:51:31 2019-10-11 16:56:25 t 1 1 117738 490 0.00 2019-10-11 16:47:34 2019-10-11 16:57:28 t 1 1 117740 514 0.00 2019-10-11 16:54:12 2019-10-11 16:57:50 t 1 1 117743 470 0.00 2019-10-11 16:54:54 2019-10-11 17:00:23 t 1 1 117744 514 0.00 2019-10-11 16:57:50 2019-10-11 17:00:31 t 1 1 117754 220 0.00 2019-10-11 17:06:00 2019-10-11 17:10:17 t 1 1 117757 528 0.00 2019-10-11 16:43:44 2019-10-11 17:12:47 t 1 1 117758 468 0.00 2019-10-11 16:59:32 2019-10-11 17:15:14 t 1 1 117759 470 0.00 2019-10-11 17:00:23 2019-10-11 17:17:46 t 1 1 117763 468 0.00 2019-10-11 17:15:14 2019-10-11 17:23:39 t 1 1 117766 520 0.00 2019-10-11 17:00:30 2019-10-11 17:33:45 t 1 1 117768 501 0.00 2019-10-11 16:41:41 2019-10-11 17:34:23 t 1 1 117771 520 0.00 2019-10-11 17:36:45 2019-10-11 17:38:53 t 1 1 117775 512 0.00 2019-10-11 17:29:53 2019-10-11 17:46:26 t 1 1 117777 445 0.00 2019-10-11 16:55:50 2019-10-11 17:48:32 t 1 1 117781 514 0.00 2019-10-11 17:48:54 2019-10-11 17:51:59 t 1 1 117784 501 0.00 2019-10-11 17:54:06 2019-10-11 17:54:41 t 1 1 117785 514 0.00 2019-10-11 17:54:39 2019-10-11 17:57:08 t 1 1 117788 538 0.00 2019-10-11 15:42:57 2019-10-11 17:58:25 t 1 1 117789 520 0.00 2019-10-11 17:57:29 2019-10-11 17:59:17 t 1 1 117791 290 0.00 2019-10-11 18:02:16 2019-10-11 18:03:20 t 1 2 117792 501 0.00 2019-10-11 18:04:37 2019-10-11 18:05:10 t 1 1 117794 430 0.00 2019-10-11 18:04:52 2019-10-11 18:07:26 t 1 1 117795 325 0.00 2019-10-11 17:02:50 2019-10-11 18:07:55 t 1 2 117796 461 0.00 2019-10-11 18:07:51 2019-10-11 18:08:52 t 1 2 117798 220 0.00 2019-10-11 17:35:14 2019-10-11 18:11:55 t 1 1 117800 490 0.00 2019-10-11 17:59:42 2019-10-11 18:12:30 t 1 1 117801 247 0.00 2019-10-11 18:12:31 2019-10-11 18:12:31 f 1 2 117805 501 0.00 2019-10-11 18:14:24 2019-10-11 18:14:31 t 1 1 117807 514 0.00 2019-10-11 17:57:08 2019-10-11 18:18:00 t 1 1 117809 520 0.00 2019-10-11 18:11:44 2019-10-11 18:19:16 t 1 1 117811 430 0.00 2019-10-11 18:10:07 2019-10-11 18:20:30 t 1 1 117812 532 0.00 2019-10-11 18:07:12 2019-10-11 18:21:37 t 1 1 117814 532 0.00 2019-10-11 18:24:02 2019-10-11 18:24:11 t 1 1 117820 445 0.00 2019-10-11 18:27:35 2019-10-11 18:28:33 t 1 1 117822 532 0.00 2019-10-11 18:30:24 2019-10-11 18:30:59 t 1 1 117823 327 0.00 2019-10-11 18:31:55 2019-10-11 18:32:04 t 1 1 117831 375 0.00 2019-10-11 18:35:46 2019-10-11 18:40:56 t 1 1 117832 327 0.00 2019-10-11 18:33:35 2019-10-11 18:41:18 t 1 1 117838 430 0.00 2019-10-11 18:20:30 2019-10-11 18:47:24 t 1 1 117839 520 0.00 2019-10-11 18:43:09 2019-10-11 18:49:15 t 1 1 117844 532 0.00 2019-10-11 18:54:20 2019-10-11 18:54:21 t 1 1 117846 532 0.00 2019-10-11 18:59:24 2019-10-11 18:59:26 t 1 1 117847 292 0.00 2019-10-11 19:00:24 2019-10-11 19:00:38 t 1 2 117848 327 0.00 2019-10-11 19:00:27 2019-10-11 19:02:14 t 1 1 117850 532 0.00 2019-10-11 19:04:28 2019-10-11 19:04:36 t 1 1 117856 306 0.00 2019-10-11 19:08:59 2019-10-11 19:10:53 t 1 1 117863 375 0.00 2019-10-11 18:49:33 2019-10-11 19:19:25 t 1 1 117868 445 0.00 2019-10-11 19:19:39 2019-10-11 19:21:10 t 1 1 117870 532 0.00 2019-10-11 19:25:05 2019-10-11 19:25:06 t 1 1 117871 470 0.00 2019-10-11 19:07:55 2019-10-11 19:25:58 t 1 1 117874 542 0.00 2019-10-11 19:25:21 2019-10-11 19:30:52 t 1 1 117875 375 0.00 2019-10-11 19:19:25 2019-10-11 19:31:03 t 1 1 117876 528 0.00 2019-10-11 19:05:17 2019-10-11 19:31:35 t 1 1 117877 510 0.00 2019-10-11 19:32:39 2019-10-11 19:32:40 t 1 1 117884 375 0.00 2019-10-11 19:31:03 2019-10-11 19:42:19 t 1 1 117885 325 0.00 2019-10-11 18:57:49 2019-10-11 19:42:54 t 1 2 117888 327 0.00 2019-10-11 19:49:41 2019-10-11 19:50:45 t 1 1 117896 542 0.00 2019-10-11 19:30:52 2019-10-11 19:58:09 t 1 1 117899 375 0.00 2019-10-11 19:51:24 2019-10-11 20:01:36 t 1 1 117901 327 0.00 2019-10-11 20:00:57 2019-10-11 20:03:47 t 1 1 117906 375 0.00 2019-10-11 20:01:36 2019-10-11 20:09:06 t 1 1 117908 461 0.00 2019-10-11 19:50:04 2019-10-11 20:10:09 t 1 2 117911 542 0.00 2019-10-11 19:58:09 2019-10-11 20:12:25 t 1 1 117917 375 0.00 2019-10-11 20:09:06 2019-10-11 20:20:49 t 1 1 117918 510 0.00 2019-10-11 19:32:45 2019-10-11 20:25:15 t 1 1 117919 430 0.00 2019-10-11 20:04:30 2019-10-11 20:26:36 t 1 1 117923 451 0.00 2019-10-11 19:50:50 2019-10-11 20:32:03 t 1 1 117925 306 0.00 2019-10-11 20:21:34 2019-10-11 20:32:30 t 1 1 117932 498 0.00 2019-10-11 19:49:39 2019-10-11 20:39:45 t 1 2 117934 445 0.00 2019-10-11 20:28:19 2019-10-11 20:44:12 t 1 1 117936 306 0.00 2019-10-11 20:34:26 2019-10-11 20:45:22 t 1 1 117938 445 0.00 2019-10-11 20:45:03 2019-10-11 20:46:15 t 1 1 117939 361 0.00 2019-10-11 19:18:55 2019-10-11 20:47:17 t 1 2 117947 470 0.00 2019-10-11 20:39:19 2019-10-11 20:56:34 t 1 1 117950 333 0.00 2019-10-11 20:50:50 2019-10-11 21:01:10 t 1 2 117952 532 0.00 2019-10-11 21:02:56 2019-10-11 21:03:52 t 1 1 117955 528 0.00 2019-10-11 21:06:57 2019-10-11 21:07:07 t 1 1 117958 375 0.00 2019-10-11 20:54:04 2019-10-11 21:10:46 t 1 1 117959 528 0.00 2019-10-11 21:11:04 2019-10-11 21:11:11 t 1 1 117962 528 0.00 2019-10-11 21:16:10 2019-10-11 21:16:55 t 1 1 117964 532 0.00 2019-10-11 21:18:36 2019-10-11 21:18:47 t 1 1 117965 528 0.00 2019-10-11 21:19:16 2019-10-11 21:19:25 t 1 1 117966 532 0.00 2019-10-11 21:23:43 2019-10-11 21:23:44 t 1 1 117967 306 0.00 2019-10-11 20:56:08 2019-10-11 21:24:55 t 1 1 117970 456 0.00 2019-10-11 21:25:29 2019-10-11 21:28:42 t 1 1 117974 520 0.00 2019-10-11 20:56:11 2019-10-11 21:29:51 t 1 1 117976 470 0.00 2019-10-11 21:07:21 2019-10-11 21:30:42 t 1 1 117979 327 0.00 2019-10-11 21:31:24 2019-10-11 21:32:24 t 1 1 117989 461 0.00 2019-10-11 21:22:25 2019-10-11 21:42:30 t 1 2 117991 468 0.00 2019-10-11 21:06:06 2019-10-11 21:42:53 t 1 1 117992 501 0.00 2019-10-11 21:42:11 2019-10-11 21:42:58 t 1 1 117994 472 0.00 2019-10-11 21:42:49 2019-10-11 21:43:11 t 1 1 118001 306 0.00 2019-10-11 21:44:55 2019-10-11 21:46:23 t 1 1 117750 220 0.00 2019-10-11 17:03:09 2019-10-11 17:05:58 t 1 1 117751 481 0.00 2019-10-11 14:28:30 2019-10-11 17:08:15 t 1 1 117760 490 0.00 2019-10-11 17:09:49 2019-10-11 17:20:40 t 1 1 117764 220 0.00 2019-10-11 17:06:07 2019-10-11 17:26:52 t 1 1 117767 220 0.00 2019-10-11 17:27:08 2019-10-11 17:33:59 t 1 1 117769 501 0.00 2019-10-11 17:35:28 2019-10-11 17:35:37 t 1 1 117770 520 0.00 2019-10-11 17:33:44 2019-10-11 17:36:45 t 1 1 117772 514 0.00 2019-10-11 17:08:40 2019-10-11 17:39:41 t 1 1 117776 501 0.00 2019-10-11 17:47:37 2019-10-11 17:48:09 t 1 1 117779 520 0.00 2019-10-11 17:38:53 2019-10-11 17:50:26 t 1 1 117782 461 0.00 2019-10-11 16:57:34 2019-10-11 17:52:39 t 1 2 117786 520 0.00 2019-10-11 17:54:50 2019-10-11 17:57:26 t 1 1 117787 512 0.00 2019-10-11 17:46:26 2019-10-11 17:58:16 t 1 1 117797 430 0.00 2019-10-11 18:07:26 2019-10-11 18:10:08 t 1 1 117799 501 0.00 2019-10-11 18:11:30 2019-10-11 18:12:03 t 1 1 117802 247 0.00 2019-10-11 18:12:45 2019-10-11 18:12:45 f 1 2 117806 490 0.00 2019-10-11 18:12:30 2019-10-11 18:14:49 t 1 1 117810 306 0.00 2019-10-11 18:14:38 2019-10-11 18:20:24 t 1 1 117813 490 0.00 2019-10-11 18:14:49 2019-10-11 18:22:01 t 1 1 117816 520 0.00 2019-10-11 18:19:25 2019-10-11 18:24:27 t 1 1 117817 445 0.00 2019-10-11 18:07:26 2019-10-11 18:27:22 t 1 1 117818 532 0.00 2019-10-11 18:27:38 2019-10-11 18:27:39 t 1 1 117825 538 0.00 2019-10-11 17:59:08 2019-10-11 18:33:41 t 1 1 117826 532 0.00 2019-10-11 18:34:23 2019-10-11 18:34:26 t 1 1 117827 412 0.00 2019-10-11 16:39:22 2019-10-11 18:35:03 t 1 1 117829 532 0.00 2019-10-11 18:36:43 2019-10-11 18:36:49 t 1 1 117830 516 0.00 2019-10-11 18:19:48 2019-10-11 18:38:06 t 1 1 117833 532 0.00 2019-10-11 18:41:48 2019-10-11 18:41:52 t 1 1 117835 327 0.00 2019-10-11 18:42:28 2019-10-11 18:43:32 t 1 1 117837 532 0.00 2019-10-11 18:46:51 2019-10-11 18:46:59 t 1 1 117840 532 0.00 2019-10-11 18:49:13 2019-10-11 18:49:17 t 1 1 117843 445 0.00 2019-10-11 18:28:43 2019-10-11 18:53:10 t 1 1 117849 220 0.00 2019-10-11 18:14:18 2019-10-11 19:03:09 t 1 1 117851 220 0.00 2019-10-11 19:03:10 2019-10-11 19:06:29 t 1 1 117853 220 0.00 2019-10-11 19:00:12 2019-10-11 19:09:35 t 1 2 117855 327 0.00 2019-10-11 19:09:58 2019-10-11 19:10:30 t 1 1 117857 542 0.00 2019-10-11 16:57:41 2019-10-11 19:13:09 t 1 1 117859 532 0.00 2019-10-11 19:14:43 2019-10-11 19:14:54 t 1 1 117860 220 0.00 2019-10-11 19:08:34 2019-10-11 19:15:01 t 1 1 117861 449 0.00 2019-10-11 19:14:39 2019-10-11 19:17:17 t 1 1 117862 306 0.00 2019-10-11 19:12:16 2019-10-11 19:18:58 t 1 1 117864 445 0.00 2019-10-11 18:53:10 2019-10-11 19:19:31 t 1 1 117866 532 0.00 2019-10-11 19:19:58 2019-10-11 19:19:59 t 1 1 117873 532 0.00 2019-10-11 19:30:13 2019-10-11 19:30:14 t 1 1 117886 327 0.00 2019-10-11 19:42:40 2019-10-11 19:43:51 t 1 1 117890 375 0.00 2019-10-11 19:42:19 2019-10-11 19:51:24 t 1 1 117892 422 0.00 2019-10-11 17:21:46 2019-10-11 19:54:21 t 1 1 117893 247 0.00 2019-10-11 19:54:43 2019-10-11 19:54:43 f 1 2 117895 481 0.00 2019-10-11 18:57:21 2019-10-11 19:56:12 t 1 1 117898 532 0.00 2019-10-11 20:01:05 2019-10-11 20:01:12 t 1 1 117902 430 0.00 2019-10-11 19:36:45 2019-10-11 20:04:30 t 1 1 117903 532 0.00 2019-10-11 20:06:10 2019-10-11 20:06:11 t 1 1 117905 422 0.00 2019-10-11 19:54:21 2019-10-11 20:08:25 t 1 1 117907 490 0.00 2019-10-11 20:06:24 2019-10-11 20:09:45 t 1 1 117909 306 0.00 2019-10-11 20:08:29 2019-10-11 20:11:08 t 1 1 117912 490 0.00 2019-10-11 20:09:46 2019-10-11 20:14:53 t 1 1 117914 470 0.00 2019-10-11 20:03:42 2019-10-11 20:18:01 t 1 1 117916 327 0.00 2019-10-11 20:13:43 2019-10-11 20:18:12 t 1 1 117920 520 0.00 2019-10-11 20:08:08 2019-10-11 20:27:03 t 1 1 117926 532 0.00 2019-10-11 20:32:49 2019-10-11 20:32:50 t 1 1 117928 532 0.00 2019-10-11 20:35:00 2019-10-11 20:35:07 t 1 1 117929 542 0.00 2019-10-11 20:12:25 2019-10-11 20:37:07 t 1 1 117930 532 0.00 2019-10-11 20:38:38 2019-10-11 20:38:42 t 1 1 117941 220 0.00 2019-10-11 19:18:55 2019-10-11 20:51:18 t 1 2 117943 532 0.00 2019-10-11 20:50:25 2019-10-11 20:51:56 t 1 1 117945 532 0.00 2019-10-11 20:54:38 2019-10-11 20:55:00 t 1 1 117948 292 0.00 2019-10-11 20:56:02 2019-10-11 20:57:03 t 1 2 117956 470 0.00 2019-10-11 21:03:17 2019-10-11 21:07:21 t 1 1 117957 532 0.00 2019-10-11 21:08:15 2019-10-11 21:08:25 t 1 1 117971 532 0.00 2019-10-11 21:28:47 2019-10-11 21:28:51 t 1 1 117973 516 0.00 2019-10-11 21:26:33 2019-10-11 21:29:51 t 1 1 117978 528 0.00 2019-10-11 21:31:10 2019-10-11 21:32:18 t 1 1 117980 528 0.00 2019-10-11 21:32:33 2019-10-11 21:32:45 t 1 1 117981 532 0.00 2019-10-11 21:32:46 2019-10-11 21:33:47 t 1 1 117984 501 0.00 2019-10-11 21:36:08 2019-10-11 21:37:10 t 1 1 117986 501 0.00 2019-10-11 21:39:30 2019-10-11 21:40:00 t 1 1 117987 520 0.00 2019-10-11 21:30:44 2019-10-11 21:40:52 t 1 1 117993 528 0.00 2019-10-11 21:40:17 2019-10-11 21:43:06 t 1 1 117996 520 0.00 2019-10-11 21:40:52 2019-10-11 21:44:06 t 1 1 117997 468 0.00 2019-10-11 21:42:53 2019-10-11 21:44:45 t 1 1 117999 220 0.00 2019-10-11 21:41:35 2019-10-11 21:45:11 t 1 1 118002 327 0.00 2019-10-11 21:44:53 2019-10-11 21:46:57 t 1 1 118003 327 0.00 2019-10-11 21:47:22 2019-10-11 21:48:22 t 1 1 118009 501 0.00 2019-10-11 21:50:26 2019-10-11 21:50:59 t 1 1 118012 292 0.00 2019-10-11 21:52:24 2019-10-11 21:52:26 t 1 2 118014 292 0.00 2019-10-11 21:52:38 2019-10-11 21:52:40 t 1 2 118015 501 0.00 2019-10-11 21:51:07 2019-10-11 21:53:18 t 1 1 118018 542 0.00 2019-10-11 21:41:32 2019-10-11 21:53:46 t 1 1 118020 422 0.00 2019-10-11 20:08:25 2019-10-11 21:54:26 t 1 1 118025 542 0.00 2019-10-11 21:54:00 2019-10-11 21:56:52 t 1 1 118029 532 0.00 2019-10-11 22:00:07 2019-10-11 22:00:08 t 1 1 118030 430 0.00 2019-10-11 21:53:58 2019-10-11 22:02:15 t 1 1 118036 327 0.00 2019-10-11 22:04:59 2019-10-11 22:05:39 t 1 1 118037 501 0.00 2019-10-11 22:05:54 2019-10-11 22:06:45 t 1 1 118039 451 0.00 2019-10-11 21:57:57 2019-10-11 22:07:50 t 1 1 118041 422 0.00 2019-10-11 21:54:26 2019-10-11 22:08:22 t 1 1 118046 430 0.00 2019-10-11 22:02:15 2019-10-11 22:11:31 t 1 1 118047 501 0.00 2019-10-11 22:11:31 2019-10-11 22:12:04 t 1 1 118053 306 0.00 2019-10-11 22:07:01 2019-10-11 22:13:57 t 1 1 118054 472 0.00 2019-10-11 22:13:57 2019-10-11 22:14:13 t 1 1 118055 532 0.00 2019-10-11 22:15:20 2019-10-11 22:16:20 t 1 1 118057 327 0.00 2019-10-11 22:15:12 2019-10-11 22:17:14 t 1 1 118058 472 0.00 2019-10-11 22:17:32 2019-10-11 22:18:24 t 1 1 118062 412 0.00 2019-10-11 22:16:43 2019-10-11 22:19:26 t 1 1 118064 456 0.00 2019-10-11 22:16:43 2019-10-11 22:19:40 t 1 1 118067 501 0.00 2019-10-11 22:20:50 2019-10-11 22:21:23 t 1 1 118070 514 0.00 2019-10-11 22:18:34 2019-10-11 22:24:07 t 1 1 117755 220 0.00 2019-10-11 17:10:16 2019-10-11 17:10:19 t 1 1 117756 306 0.00 2019-10-11 17:07:50 2019-10-11 17:11:57 t 1 1 117761 422 0.00 2019-10-11 15:54:11 2019-10-11 17:21:46 t 1 1 117762 311 0.00 2019-10-11 16:57:04 2019-10-11 17:22:28 t 1 2 117765 220 0.00 2019-10-11 17:11:19 2019-10-11 17:33:31 t 1 1 117773 501 0.00 2019-10-11 17:40:35 2019-10-11 17:41:14 t 1 1 117774 514 0.00 2019-10-11 17:44:26 2019-10-11 17:46:20 t 1 1 117778 514 0.00 2019-10-11 17:46:20 2019-10-11 17:48:54 t 1 1 117780 520 0.00 2019-10-11 17:50:26 2019-10-11 17:51:52 t 1 1 117783 514 0.00 2019-10-11 17:51:59 2019-10-11 17:54:39 t 1 1 117790 485 0.00 2019-10-11 17:54:30 2019-10-11 17:59:34 t 1 1 117793 445 0.00 2019-10-11 17:49:41 2019-10-11 18:05:18 t 1 1 117803 220 0.00 2019-10-11 18:12:52 2019-10-11 18:13:47 t 1 1 117804 220 0.00 2019-10-11 18:13:46 2019-10-11 18:14:19 t 1 1 117808 487 0.00 2019-10-11 18:08:09 2019-10-11 18:18:14 t 1 2 117815 481 0.00 2019-10-11 17:08:15 2019-10-11 18:24:25 t 1 1 117819 520 0.00 2019-10-11 18:24:55 2019-10-11 18:27:42 t 1 1 117821 532 0.00 2019-10-11 18:29:00 2019-10-11 18:29:27 t 1 1 117824 327 0.00 2019-10-11 18:32:29 2019-10-11 18:33:35 t 1 1 117828 375 0.00 2019-10-11 18:13:29 2019-10-11 18:35:46 t 1 1 117834 520 0.00 2019-10-11 18:27:42 2019-10-11 18:43:09 t 1 1 117836 327 0.00 2019-10-11 18:45:15 2019-10-11 18:45:45 t 1 1 117841 375 0.00 2019-10-11 18:40:56 2019-10-11 18:49:33 t 1 1 117842 327 0.00 2019-10-11 18:48:24 2019-10-11 18:50:32 t 1 1 117845 490 0.00 2019-10-11 18:49:17 2019-10-11 18:56:28 t 1 1 117852 470 0.00 2019-10-11 18:57:56 2019-10-11 19:07:55 t 1 1 117854 532 0.00 2019-10-11 19:09:39 2019-10-11 19:09:42 t 1 1 117858 430 0.00 2019-10-11 18:47:24 2019-10-11 19:14:04 t 1 1 117865 306 0.00 2019-10-11 19:18:01 2019-10-11 19:19:54 t 1 1 117867 514 0.00 2019-10-11 19:09:23 2019-10-11 19:20:52 t 1 1 117869 327 0.00 2019-10-11 19:20:30 2019-10-11 19:23:31 t 1 1 117872 327 0.00 2019-10-11 19:25:52 2019-10-11 19:26:25 t 1 1 117878 327 0.00 2019-10-11 19:31:07 2019-10-11 19:32:44 t 1 1 117879 516 0.00 2019-10-11 19:25:44 2019-10-11 19:35:16 t 1 1 117880 430 0.00 2019-10-11 19:14:04 2019-10-11 19:36:45 t 1 1 117881 532 0.00 2019-10-11 19:35:27 2019-10-11 19:37:18 t 1 1 117882 532 0.00 2019-10-11 19:40:36 2019-10-11 19:40:46 t 1 1 117883 532 0.00 2019-10-11 19:41:40 2019-10-11 19:41:50 t 1 1 117887 532 0.00 2019-10-11 19:45:52 2019-10-11 19:45:53 t 1 1 117889 532 0.00 2019-10-11 19:50:58 2019-10-11 19:50:58 t 1 1 117891 296 0.00 2019-10-11 19:48:19 2019-10-11 19:51:43 t 1 2 117894 532 0.00 2019-10-11 19:55:59 2019-10-11 19:56:02 t 1 1 117897 327 0.00 2019-10-11 19:58:53 2019-10-11 20:00:25 t 1 1 117900 470 0.00 2019-10-11 19:25:57 2019-10-11 20:03:42 t 1 1 117904 520 0.00 2019-10-11 20:00:23 2019-10-11 20:08:08 t 1 1 117910 532 0.00 2019-10-11 20:11:12 2019-10-11 20:11:15 t 1 1 117913 445 0.00 2019-10-11 19:21:52 2019-10-11 20:16:45 t 1 1 117915 532 0.00 2019-10-11 20:16:39 2019-10-11 20:18:11 t 1 1 117921 532 0.00 2019-10-11 20:27:43 2019-10-11 20:27:48 t 1 1 117922 375 0.00 2019-10-11 20:20:49 2019-10-11 20:30:26 t 1 1 117924 375 0.00 2019-10-11 20:30:26 2019-10-11 20:32:06 t 1 1 117927 532 0.00 2019-10-11 20:34:14 2019-10-11 20:34:30 t 1 1 117931 470 0.00 2019-10-11 20:18:01 2019-10-11 20:39:19 t 1 1 117933 532 0.00 2019-10-11 20:40:07 2019-10-11 20:40:15 t 1 1 117935 528 0.00 2019-10-11 20:30:58 2019-10-11 20:44:56 t 1 1 117937 532 0.00 2019-10-11 20:45:16 2019-10-11 20:45:48 t 1 1 117940 528 0.00 2019-10-11 20:50:55 2019-10-11 20:51:07 t 1 1 117942 528 0.00 2019-10-11 20:51:25 2019-10-11 20:51:28 t 1 1 117944 375 0.00 2019-10-11 20:32:06 2019-10-11 20:54:04 t 1 1 117946 532 0.00 2019-10-11 20:55:06 2019-10-11 20:55:16 t 1 1 117949 532 0.00 2019-10-11 21:00:17 2019-10-11 21:00:18 t 1 1 117951 470 0.00 2019-10-11 20:59:01 2019-10-11 21:01:13 t 1 1 117953 528 0.00 2019-10-11 20:57:53 2019-10-11 21:05:04 t 1 1 117954 510 0.00 2019-10-11 20:25:15 2019-10-11 21:06:24 t 1 1 117960 532 0.00 2019-10-11 21:13:26 2019-10-11 21:13:29 t 1 1 117961 545 0.00 2019-10-11 20:47:25 2019-10-11 21:16:01 t 1 1 117963 528 0.00 2019-10-11 21:18:20 2019-10-11 21:18:29 t 1 1 117968 325 0.00 2019-10-11 20:17:40 2019-10-11 21:27:24 t 1 2 117969 532 0.00 2019-10-11 21:28:14 2019-10-11 21:28:15 t 1 1 117972 528 0.00 2019-10-11 21:22:53 2019-10-11 21:29:15 t 1 1 117975 510 0.00 2019-10-11 21:06:24 2019-10-11 21:29:54 t 1 1 117977 528 0.00 2019-10-11 21:31:31 2019-10-11 21:32:10 t 1 1 117982 501 0.00 2019-10-11 21:35:25 2019-10-11 21:36:01 t 1 1 117983 327 0.00 2019-10-11 21:34:18 2019-10-11 21:37:07 t 1 1 117985 532 0.00 2019-10-11 21:39:09 2019-10-11 21:39:20 t 1 1 117988 542 0.00 2019-10-11 21:06:39 2019-10-11 21:41:32 t 1 1 117990 472 0.00 2019-10-11 21:37:20 2019-10-11 21:42:38 t 1 1 117995 510 0.00 2019-10-11 21:29:54 2019-10-11 21:43:46 t 1 1 117998 306 0.00 2019-10-11 21:28:37 2019-10-11 21:44:55 t 1 1 118000 532 0.00 2019-10-11 21:44:17 2019-10-11 21:45:18 t 1 1 118004 327 0.00 2019-10-11 21:47:56 2019-10-11 21:48:58 t 1 1 118007 472 0.00 2019-10-11 21:43:55 2019-10-11 21:50:49 t 1 1 118010 327 0.00 2019-10-11 21:49:20 2019-10-11 21:51:13 t 1 1 118011 333 0.00 2019-10-11 21:50:53 2019-10-11 21:52:04 t 1 2 118017 528 0.00 2019-10-11 21:43:05 2019-10-11 21:53:43 t 1 1 118019 292 0.00 2019-10-11 21:52:59 2019-10-11 21:54:06 t 1 2 118021 545 0.00 2019-10-11 21:48:14 2019-10-11 21:54:27 t 1 1 118022 220 0.00 2019-10-11 21:47:44 2019-10-11 21:55:00 t 1 1 118024 306 0.00 2019-10-11 21:49:51 2019-10-11 21:55:26 t 1 1 118026 327 0.00 2019-10-11 21:56:14 2019-10-11 21:57:49 t 1 1 118028 490 0.00 2019-10-11 21:58:05 2019-10-11 22:00:08 t 1 1 118031 472 0.00 2019-10-11 21:51:25 2019-10-11 22:02:43 t 1 1 118035 501 0.00 2019-10-11 22:04:04 2019-10-11 22:05:20 t 1 1 118043 532 0.00 2019-10-11 22:10:04 2019-10-11 22:10:09 t 1 1 118045 528 0.00 2019-10-11 21:54:00 2019-10-11 22:10:36 t 1 1 118048 532 0.00 2019-10-11 22:12:44 2019-10-11 22:12:50 t 1 1 118049 514 0.00 2019-10-11 22:08:29 2019-10-11 22:13:05 t 1 1 118051 520 0.00 2019-10-11 22:11:20 2019-10-11 22:13:14 t 1 1 118052 472 0.00 2019-10-11 22:13:15 2019-10-11 22:13:38 t 1 1 118056 412 0.00 2019-10-11 18:35:03 2019-10-11 22:16:43 t 1 1 118059 514 0.00 2019-10-11 22:13:05 2019-10-11 22:18:34 t 1 1 118061 430 0.00 2019-10-11 22:13:19 2019-10-11 22:19:20 t 1 1 118065 501 0.00 2019-10-11 22:19:15 2019-10-11 22:20:03 t 1 1 118068 501 0.00 2019-10-11 22:21:39 2019-10-11 22:21:40 t 1 1 118071 451 0.00 2019-10-11 22:17:04 2019-10-11 22:24:10 t 1 1 118073 501 0.00 2019-10-11 22:21:50 2019-10-11 22:24:18 t 1 1 118078 412 0.00 2019-10-11 22:19:50 2019-10-11 22:27:43 t 1 1 118005 512 0.00 2019-10-11 21:35:06 2019-10-11 21:49:37 t 1 1 118006 532 0.00 2019-10-11 21:49:52 2019-10-11 21:49:57 t 1 1 118008 510 0.00 2019-10-11 21:43:46 2019-10-11 21:50:55 t 1 1 118013 451 0.00 2019-10-11 21:24:45 2019-10-11 21:52:32 t 1 1 118016 501 0.00 2019-10-11 21:52:24 2019-10-11 21:53:25 t 1 1 118023 532 0.00 2019-10-11 21:55:02 2019-10-11 21:55:04 t 1 1 118027 501 0.00 2019-10-11 21:58:25 2019-10-11 21:59:17 t 1 1 118032 472 0.00 2019-10-11 22:02:55 2019-10-11 22:02:57 t 1 1 118033 501 0.00 2019-10-11 22:03:27 2019-10-11 22:03:57 t 1 1 118034 461 0.00 2019-10-11 21:44:15 2019-10-11 22:04:21 t 1 2 118038 327 0.00 2019-10-11 22:06:55 2019-10-11 22:07:10 t 1 1 118040 472 0.00 2019-10-11 22:07:47 2019-10-11 22:07:51 t 1 1 118042 220 0.00 2019-10-11 21:58:21 2019-10-11 22:09:13 t 1 1 118044 532 0.00 2019-10-11 22:10:15 2019-10-11 22:10:18 t 1 1 118050 472 0.00 2019-10-11 22:12:58 2019-10-11 22:13:06 t 1 1 118060 472 0.00 2019-10-11 22:18:32 2019-10-11 22:18:56 t 1 1 118063 472 0.00 2019-10-11 22:19:07 2019-10-11 22:19:30 t 1 1 118066 474 0.00 2019-10-11 21:52:05 2019-10-11 22:20:50 t 1 1 118069 472 0.00 2019-10-11 22:23:12 2019-10-11 22:23:20 t 1 1 118072 327 0.00 2019-10-11 22:19:54 2019-10-11 22:24:15 t 1 1 118077 327 0.00 2019-10-11 22:26:09 2019-10-11 22:27:42 t 1 1 118082 501 0.00 2019-10-11 22:30:57 2019-10-11 22:32:09 t 1 1 118083 501 0.00 2019-10-11 22:32:27 2019-10-11 22:33:18 t 1 1 118084 372 0.00 2019-10-11 22:28:26 2019-10-11 22:33:32 t 1 2 118088 472 0.00 2019-10-11 22:34:27 2019-10-11 22:34:47 t 1 1 118090 472 0.00 2019-10-11 22:35:07 2019-10-11 22:35:21 t 1 1 118091 327 0.00 2019-10-11 22:34:53 2019-10-11 22:35:43 t 1 1 118093 220 0.00 2019-10-11 22:28:18 2019-10-11 22:36:27 t 1 1 118095 481 0.00 2019-10-11 19:56:12 2019-10-11 22:37:08 t 1 1 118102 472 0.00 2019-10-11 22:43:46 2019-10-11 22:43:54 t 1 1 118105 472 0.00 2019-10-11 22:48:19 2019-10-11 22:48:33 t 1 1 118108 468 0.00 2019-10-11 22:38:48 2019-10-11 22:52:58 t 1 1 118120 412 0.00 2019-10-11 23:02:25 2019-10-11 23:05:33 t 1 1 118122 532 0.00 2019-10-11 23:05:53 2019-10-11 23:06:07 t 1 1 118126 542 0.00 2019-10-11 22:38:46 2019-10-11 23:11:02 t 1 1 118127 461 0.00 2019-10-11 23:11:27 2019-10-11 23:15:50 t 1 2 118130 327 0.00 2019-10-11 23:19:53 2019-10-11 23:20:26 t 1 1 118133 532 0.00 2019-10-11 23:21:15 2019-10-11 23:21:24 t 1 1 118134 501 0.00 2019-10-11 22:34:16 2019-10-11 23:22:11 t 1 1 118135 412 0.00 2019-10-11 23:20:47 2019-10-11 23:23:14 t 1 1 118139 327 0.00 2019-10-11 23:24:53 2019-10-11 23:25:41 t 1 1 118142 327 0.00 2019-10-11 23:26:17 2019-10-11 23:26:46 t 1 1 118146 412 0.00 2019-10-11 23:33:18 2019-10-11 23:35:58 t 1 1 118147 532 0.00 2019-10-11 23:36:33 2019-10-11 23:37:33 t 1 1 118149 528 0.00 2019-10-11 22:10:36 2019-10-11 23:40:42 t 1 1 118150 532 0.00 2019-10-11 23:41:35 2019-10-11 23:41:36 t 1 1 118154 412 0.00 2019-10-11 23:47:34 2019-10-11 23:48:49 t 1 1 118160 468 0.00 2019-10-11 23:38:47 2019-10-12 00:00:33 t 1 1 118161 501 0.00 2019-10-11 23:22:11 2019-10-12 00:05:30 t 1 1 118163 532 0.00 2019-10-12 00:07:01 2019-10-12 00:07:10 t 1 1 118167 220 0.00 2019-10-11 23:05:55 2019-10-12 00:09:38 t 1 1 118169 544 0.00 2019-10-12 00:09:44 2019-10-12 00:13:31 t 1 2 118171 532 0.00 2019-10-12 00:17:08 2019-10-12 00:17:08 t 1 1 118172 490 0.00 2019-10-12 00:17:51 2019-10-12 00:19:59 t 1 1 118174 542 0.00 2019-10-12 00:08:38 2019-10-12 00:20:51 t 1 1 118177 395 0.00 2019-10-12 00:23:18 2019-10-12 00:24:24 t 1 2 118178 395 0.00 2019-10-12 00:25:21 2019-10-12 00:26:25 t 1 2 118180 395 0.00 2019-10-12 00:27:13 2019-10-12 00:28:18 t 1 2 118181 395 0.00 2019-10-12 00:28:36 2019-10-12 00:29:41 t 1 2 118183 395 0.00 2019-10-12 00:30:15 2019-10-12 00:30:20 t 1 2 118185 468 0.00 2019-10-12 00:14:11 2019-10-12 00:32:47 t 1 1 118186 532 0.00 2019-10-12 00:32:16 2019-10-12 00:33:17 t 1 1 118188 532 0.00 2019-10-12 00:37:22 2019-10-12 00:37:23 t 1 1 118189 422 0.00 2019-10-12 00:30:20 2019-10-12 00:39:45 t 1 1 118190 501 0.00 2019-10-12 00:05:30 2019-10-12 00:42:15 t 1 1 118191 532 0.00 2019-10-12 00:42:23 2019-10-12 00:42:24 t 1 1 118192 468 0.00 2019-10-12 00:36:42 2019-10-12 00:43:53 t 1 1 118195 532 0.00 2019-10-12 00:44:30 2019-10-12 00:44:54 t 1 1 118197 501 0.00 2019-10-12 00:42:15 2019-10-12 00:50:55 t 1 1 118198 538 0.00 2019-10-12 00:24:56 2019-10-12 00:54:13 t 1 1 118207 532 0.00 2019-10-12 01:17:10 2019-10-12 01:18:07 t 1 1 118208 468 0.00 2019-10-12 01:09:01 2019-10-12 01:24:51 t 1 1 118215 412 0.00 2019-10-12 01:25:11 2019-10-12 01:39:18 t 1 1 118216 526 0.00 2019-10-12 01:41:16 2019-10-12 01:44:28 t 1 1 118222 461 0.00 2019-10-12 00:57:12 2019-10-12 02:12:28 t 1 2 118224 422 0.00 2019-10-12 02:09:58 2019-10-12 02:23:39 t 1 1 118228 468 0.00 2019-10-12 02:49:19 2019-10-12 02:51:57 t 1 1 118232 551 0.00 2019-10-12 03:04:57 2019-10-12 03:08:55 t 1 1 118237 538 0.00 2019-10-12 00:54:15 2019-10-12 03:18:06 t 1 1 118242 551 0.00 2019-10-12 03:34:46 2019-10-12 03:38:31 t 1 1 118243 551 0.00 2019-10-12 03:38:31 2019-10-12 03:49:49 t 1 1 118244 520 0.00 2019-10-12 03:21:40 2019-10-12 03:56:01 t 1 1 118245 520 0.00 2019-10-12 03:56:00 2019-10-12 04:06:46 t 1 1 118246 499 0.00 2019-10-12 00:58:49 2019-10-12 04:08:26 t 1 1 118249 520 0.00 2019-10-12 04:06:46 2019-10-12 04:18:53 t 1 1 118256 430 0.00 2019-10-12 04:23:24 2019-10-12 04:34:01 t 1 1 118259 520 0.00 2019-10-12 04:44:35 2019-10-12 05:04:15 t 1 1 118262 430 0.00 2019-10-12 05:21:44 2019-10-12 05:41:11 t 1 1 118264 422 0.00 2019-10-12 02:56:17 2019-10-12 06:24:18 t 1 1 118270 445 0.00 2019-10-12 06:40:37 2019-10-12 06:54:21 t 1 1 118276 412 0.00 2019-10-12 06:46:02 2019-10-12 07:26:18 t 1 1 118277 412 0.00 2019-10-12 07:26:18 2019-10-12 07:33:47 t 1 1 118282 412 0.00 2019-10-12 07:33:47 2019-10-12 07:42:15 t 1 1 118284 470 0.00 2019-10-12 07:36:23 2019-10-12 07:46:47 t 1 1 118286 375 0.00 2019-10-11 22:39:10 2019-10-12 07:58:17 t 1 1 118294 542 0.00 2019-10-12 08:16:13 2019-10-12 08:22:45 t 1 1 118297 375 0.00 2019-10-12 07:58:17 2019-10-12 08:31:43 t 1 1 118300 331 0.00 2019-10-12 08:32:16 2019-10-12 08:34:35 t 1 1 118305 516 0.00 2019-10-12 08:30:36 2019-10-12 08:43:37 t 1 1 118306 526 0.00 2019-10-12 08:43:06 2019-10-12 08:47:47 t 1 1 118307 375 0.00 2019-10-12 08:31:43 2019-10-12 08:50:21 t 1 1 118311 416 0.00 2019-10-12 08:42:59 2019-10-12 08:54:22 t 1 1 118312 542 0.00 2019-10-12 08:57:02 2019-10-12 08:58:44 t 1 1 118314 538 0.00 2019-10-12 08:52:50 2019-10-12 09:04:04 t 1 1 118316 542 0.00 2019-10-12 09:04:07 2019-10-12 09:06:43 t 1 1 118321 528 0.00 2019-10-12 09:11:43 2019-10-12 09:11:59 t 1 1 118337 520 0.00 2019-10-12 09:26:44 2019-10-12 09:30:55 t 1 1 118074 532 0.00 2019-10-11 22:25:30 2019-10-11 22:25:32 t 1 1 118075 532 0.00 2019-10-11 22:25:56 2019-10-11 22:25:58 t 1 1 118076 514 0.00 2019-10-11 22:24:07 2019-10-11 22:27:30 t 1 1 118087 220 0.00 2019-10-11 22:29:50 2019-10-11 22:34:16 t 1 2 118089 456 0.00 2019-10-11 22:33:20 2019-10-11 22:34:57 t 1 1 118096 545 0.00 2019-10-11 22:19:36 2019-10-11 22:37:16 t 1 1 118097 542 0.00 2019-10-11 21:56:51 2019-10-11 22:38:46 t 1 1 118101 461 0.00 2019-10-11 21:58:26 2019-10-11 22:43:52 t 1 2 118103 532 0.00 2019-10-11 22:45:43 2019-10-11 22:47:18 t 1 1 118104 327 0.00 2019-10-11 22:44:57 2019-10-11 22:48:29 t 1 1 118106 422 0.00 2019-10-11 22:08:22 2019-10-11 22:49:25 t 1 1 118107 451 0.00 2019-10-11 22:24:10 2019-10-11 22:51:30 t 1 1 118109 472 0.00 2019-10-11 22:53:33 2019-10-11 22:53:38 t 1 1 118111 451 0.00 2019-10-11 22:51:30 2019-10-11 22:56:02 t 1 1 118112 422 0.00 2019-10-11 22:49:25 2019-10-11 22:57:31 t 1 1 118113 412 0.00 2019-10-11 22:34:37 2019-10-11 22:57:42 t 1 1 118114 327 0.00 2019-10-11 22:50:08 2019-10-11 22:59:13 t 1 1 118117 412 0.00 2019-10-11 22:57:42 2019-10-11 23:00:14 t 1 1 118119 327 0.00 2019-10-11 23:04:56 2019-10-11 23:05:25 t 1 1 118124 327 0.00 2019-10-11 23:09:52 2019-10-11 23:10:26 t 1 1 118125 532 0.00 2019-10-11 23:10:58 2019-10-11 23:11:01 t 1 1 118138 412 0.00 2019-10-11 23:24:14 2019-10-11 23:25:26 t 1 1 118141 461 0.00 2019-10-11 23:20:13 2019-10-11 23:26:36 t 1 2 118143 331 0.00 2019-10-11 23:22:11 2019-10-11 23:27:34 t 1 1 118145 327 0.00 2019-10-11 23:31:48 2019-10-11 23:32:22 t 1 1 118148 422 0.00 2019-10-11 22:57:31 2019-10-11 23:38:19 t 1 1 118151 542 0.00 2019-10-11 23:27:51 2019-10-11 23:45:41 t 1 1 118153 481 0.00 2019-10-11 22:37:08 2019-10-11 23:47:46 t 1 1 118155 544 0.00 2019-10-11 23:49:34 2019-10-11 23:50:53 t 1 2 118158 470 0.00 2019-10-11 22:59:35 2019-10-11 23:55:42 t 1 1 118162 470 0.00 2019-10-11 23:55:42 2019-10-12 00:05:45 t 1 1 118164 542 0.00 2019-10-12 00:01:26 2019-10-12 00:08:05 t 1 1 118170 468 0.00 2019-10-12 00:00:33 2019-10-12 00:14:11 t 1 1 118173 532 0.00 2019-10-12 00:20:22 2019-10-12 00:20:34 t 1 1 118184 395 0.00 2019-10-12 00:30:39 2019-10-12 00:30:43 t 1 2 118187 468 0.00 2019-10-12 00:32:47 2019-10-12 00:36:42 t 1 1 118193 532 0.00 2019-10-12 00:43:38 2019-10-12 00:43:56 t 1 1 118194 554 0.00 2019-10-11 23:57:02 2019-10-12 00:44:33 t 1 1 118200 468 0.00 2019-10-12 00:43:53 2019-10-12 01:00:24 t 1 1 118202 501 0.00 2019-10-12 00:51:39 2019-10-12 01:05:00 t 1 1 118204 532 0.00 2019-10-12 00:45:49 2019-10-12 01:17:10 t 1 1 118212 501 0.00 2019-10-12 01:05:00 2019-10-12 01:32:31 t 1 1 118213 487 0.00 2019-10-12 01:18:13 2019-10-12 01:33:18 t 1 2 118217 468 0.00 2019-10-12 01:31:54 2019-10-12 01:47:19 t 1 1 118218 412 0.00 2019-10-12 01:39:18 2019-10-12 01:48:10 t 1 1 118220 412 0.00 2019-10-12 01:48:10 2019-10-12 01:57:55 t 1 1 118221 422 0.00 2019-10-12 01:53:32 2019-10-12 02:09:58 t 1 1 118223 412 0.00 2019-10-12 01:57:55 2019-10-12 02:13:53 t 1 1 118225 468 0.00 2019-10-12 01:47:19 2019-10-12 02:23:50 t 1 1 118227 468 0.00 2019-10-12 02:23:50 2019-10-12 02:42:20 t 1 1 118230 551 0.00 2019-10-12 02:57:40 2019-10-12 03:04:57 t 1 1 118231 520 0.00 2019-10-12 02:59:06 2019-10-12 03:08:05 t 1 1 118235 468 0.00 2019-10-12 03:13:44 2019-10-12 03:17:09 t 1 1 118238 551 0.00 2019-10-12 03:12:27 2019-10-12 03:19:34 t 1 1 118239 520 0.00 2019-10-12 03:17:36 2019-10-12 03:21:41 t 1 1 118241 551 0.00 2019-10-12 03:27:14 2019-10-12 03:34:46 t 1 1 118247 445 0.00 2019-10-11 20:46:16 2019-10-12 04:11:55 t 1 1 118248 445 0.00 2019-10-12 04:12:07 2019-10-12 04:18:53 t 1 1 118250 430 0.00 2019-10-12 04:13:52 2019-10-12 04:20:16 t 1 1 118251 445 0.00 2019-10-12 04:18:57 2019-10-12 04:24:13 t 1 1 118252 520 0.00 2019-10-12 04:18:53 2019-10-12 04:24:52 t 1 1 118253 445 0.00 2019-10-12 04:24:32 2019-10-12 04:25:28 t 1 1 118257 520 0.00 2019-10-12 04:28:35 2019-10-12 04:39:29 t 1 1 118268 445 0.00 2019-10-12 04:25:31 2019-10-12 06:40:38 t 1 1 118272 445 0.00 2019-10-12 06:54:21 2019-10-12 07:10:02 t 1 1 118273 331 0.00 2019-10-12 05:33:51 2019-10-12 07:16:29 t 1 1 118274 306 0.00 2019-10-12 07:08:48 2019-10-12 07:17:11 t 1 1 118278 485 0.00 2019-10-12 07:31:59 2019-10-12 07:37:50 t 1 1 118279 554 0.00 2019-10-12 07:38:33 2019-10-12 07:39:48 t 1 1 118280 468 0.00 2019-10-12 07:16:31 2019-10-12 07:40:26 t 1 1 118281 456 0.00 2019-10-12 07:39:29 2019-10-12 07:42:00 t 1 1 118288 468 0.00 2019-10-12 07:42:47 2019-10-12 08:01:23 t 1 1 118290 481 0.00 2019-10-12 07:30:06 2019-10-12 08:01:56 t 1 1 118295 306 0.00 2019-10-12 08:17:34 2019-10-12 08:23:08 t 1 1 118298 542 0.00 2019-10-12 08:23:55 2019-10-12 08:31:55 t 1 1 118301 306 0.00 2019-10-12 08:28:16 2019-10-12 08:34:39 t 1 1 118302 528 0.00 2019-10-12 08:32:52 2019-10-12 08:35:12 t 1 1 118303 528 0.00 2019-10-12 08:39:57 2019-10-12 08:39:59 t 1 1 118308 542 0.00 2019-10-12 08:49:39 2019-10-12 08:51:02 t 1 1 118309 538 0.00 2019-10-12 08:00:28 2019-10-12 08:52:35 t 1 1 118310 306 0.00 2019-10-12 08:52:46 2019-10-12 08:54:10 t 1 1 118313 375 0.00 2019-10-12 08:53:12 2019-10-12 09:01:35 t 1 1 118318 520 0.00 2019-10-12 09:09:52 2019-10-12 09:10:54 t 1 1 118319 528 0.00 2019-10-12 09:11:24 2019-10-12 09:11:27 t 1 1 118322 528 0.00 2019-10-12 09:12:18 2019-10-12 09:12:23 t 1 1 118325 470 0.00 2019-10-12 09:03:47 2019-10-12 09:15:32 t 1 1 118326 528 0.00 2019-10-12 09:16:14 2019-10-12 09:16:17 t 1 1 118328 306 0.00 2019-10-12 09:09:30 2019-10-12 09:18:58 t 1 1 118331 306 0.00 2019-10-12 09:18:58 2019-10-12 09:21:32 t 1 1 118332 528 0.00 2019-10-12 09:22:06 2019-10-12 09:22:34 t 1 1 118334 331 0.00 2019-10-12 08:34:35 2019-10-12 09:24:51 t 1 1 118335 520 0.00 2019-10-12 09:20:37 2019-10-12 09:26:44 t 1 1 118338 528 0.00 2019-10-12 09:25:06 2019-10-12 09:30:58 t 1 1 118340 538 0.00 2019-10-12 09:28:41 2019-10-12 09:37:42 t 1 1 118346 528 0.00 2019-10-12 09:44:43 2019-10-12 09:45:41 t 1 1 118350 375 0.00 2019-10-12 09:39:13 2019-10-12 09:51:26 t 1 1 118352 520 0.00 2019-10-12 09:44:07 2019-10-12 09:53:50 t 1 1 118355 520 0.00 2019-10-12 09:53:46 2019-10-12 09:59:28 t 1 1 118357 544 0.00 2019-10-12 09:34:24 2019-10-12 10:02:17 t 1 2 118359 470 0.00 2019-10-12 09:58:05 2019-10-12 10:03:41 t 1 1 118360 542 0.00 2019-10-12 10:02:05 2019-10-12 10:05:55 t 1 1 118361 375 0.00 2019-10-12 09:53:33 2019-10-12 10:06:27 t 1 1 118366 501 0.00 2019-10-12 10:09:56 2019-10-12 10:10:52 t 1 1 118374 516 0.00 2019-10-12 10:13:24 2019-10-12 10:26:05 t 1 1 118376 528 0.00 2019-10-12 10:27:04 2019-10-12 10:28:18 t 1 1 118377 481 0.00 2019-10-12 08:01:56 2019-10-12 10:29:00 t 1 1 118380 528 0.00 2019-10-12 10:32:16 2019-10-12 10:32:47 t 1 1 118079 472 0.00 2019-10-11 22:28:24 2019-10-11 22:28:30 t 1 1 118080 532 0.00 2019-10-11 22:30:34 2019-10-11 22:30:35 t 1 1 118081 412 0.00 2019-10-11 22:28:19 2019-10-11 22:31:07 t 1 1 118085 472 0.00 2019-10-11 22:33:28 2019-10-11 22:33:40 t 1 1 118086 472 0.00 2019-10-11 22:33:49 2019-10-11 22:34:13 t 1 1 118092 472 0.00 2019-10-11 22:35:28 2019-10-11 22:35:53 t 1 1 118094 532 0.00 2019-10-11 22:35:36 2019-10-11 22:36:36 t 1 1 118098 472 0.00 2019-10-11 22:38:39 2019-10-11 22:38:48 t 1 1 118099 375 0.00 2019-10-11 21:13:40 2019-10-11 22:39:10 t 1 1 118100 327 0.00 2019-10-11 22:39:52 2019-10-11 22:41:09 t 1 1 118110 538 0.00 2019-10-11 21:45:17 2019-10-11 22:54:18 t 1 1 118115 470 0.00 2019-10-11 21:30:42 2019-10-11 22:59:35 t 1 1 118116 220 0.00 2019-10-11 22:56:42 2019-10-11 23:00:10 t 1 1 118118 220 0.00 2019-10-11 23:03:41 2019-10-11 23:05:16 t 1 1 118121 220 0.00 2019-10-11 23:05:15 2019-10-11 23:05:56 t 1 1 118123 412 0.00 2019-10-11 23:05:55 2019-10-11 23:09:13 t 1 1 118128 327 0.00 2019-10-11 23:14:53 2019-10-11 23:15:50 t 1 1 118129 412 0.00 2019-10-11 23:16:20 2019-10-11 23:18:29 t 1 1 118131 412 0.00 2019-10-11 23:18:36 2019-10-11 23:20:29 t 1 1 118132 512 0.00 2019-10-11 23:17:34 2019-10-11 23:21:04 t 1 1 118136 544 0.00 2019-10-11 23:19:50 2019-10-11 23:23:53 t 1 2 118137 542 0.00 2019-10-11 23:11:09 2019-10-11 23:24:39 t 1 1 118140 532 0.00 2019-10-11 23:26:26 2019-10-11 23:26:27 t 1 1 118144 412 0.00 2019-10-11 23:28:50 2019-10-11 23:30:46 t 1 1 118152 412 0.00 2019-10-11 23:40:28 2019-10-11 23:46:30 t 1 1 118156 532 0.00 2019-10-11 23:51:44 2019-10-11 23:51:45 t 1 1 118157 544 0.00 2019-10-11 23:51:09 2019-10-11 23:55:08 t 1 1 118159 554 0.00 2019-10-11 23:47:56 2019-10-11 23:57:02 t 1 1 118165 542 0.00 2019-10-12 00:08:12 2019-10-12 00:08:32 t 1 1 118166 422 0.00 2019-10-11 23:38:19 2019-10-12 00:09:08 t 1 1 118168 532 0.00 2019-10-12 00:11:59 2019-10-12 00:12:02 t 1 1 118175 532 0.00 2019-10-12 00:22:11 2019-10-12 00:22:12 t 1 1 118176 538 0.00 2019-10-11 23:51:41 2019-10-12 00:23:38 t 1 1 118179 532 0.00 2019-10-12 00:27:14 2019-10-12 00:27:15 t 1 1 118182 422 0.00 2019-10-12 00:09:08 2019-10-12 00:30:20 t 1 1 118196 412 0.00 2019-10-12 00:02:50 2019-10-12 00:48:35 t 1 1 118199 422 0.00 2019-10-12 00:39:45 2019-10-12 00:59:30 t 1 1 118201 379 0.00 2019-10-11 17:44:11 2019-10-12 01:03:30 t 1 1 118203 468 0.00 2019-10-12 01:00:24 2019-10-12 01:08:46 t 1 1 118205 422 0.00 2019-10-12 00:59:30 2019-10-12 01:17:44 t 1 1 118206 487 0.00 2019-10-12 01:17:50 2019-10-12 01:17:54 t 1 2 118209 412 0.00 2019-10-12 00:48:56 2019-10-12 01:25:11 t 1 1 118210 468 0.00 2019-10-12 01:24:51 2019-10-12 01:31:54 t 1 1 118211 422 0.00 2019-10-12 01:17:44 2019-10-12 01:32:18 t 1 1 118214 501 0.00 2019-10-12 01:32:31 2019-10-12 01:37:59 t 1 1 118219 422 0.00 2019-10-12 01:33:30 2019-10-12 01:53:32 t 1 1 118226 422 0.00 2019-10-12 02:23:39 2019-10-12 02:40:02 t 1 1 118229 422 0.00 2019-10-12 02:40:02 2019-10-12 02:56:17 t 1 1 118233 551 0.00 2019-10-12 03:08:55 2019-10-12 03:12:27 t 1 1 118234 468 0.00 2019-10-12 02:56:25 2019-10-12 03:13:33 t 1 1 118236 520 0.00 2019-10-12 03:08:05 2019-10-12 03:17:36 t 1 1 118240 551 0.00 2019-10-12 03:19:34 2019-10-12 03:27:14 t 1 1 118254 520 0.00 2019-10-12 04:24:51 2019-10-12 04:27:37 t 1 1 118255 520 0.00 2019-10-12 04:27:36 2019-10-12 04:28:35 t 1 1 118258 520 0.00 2019-10-12 04:39:28 2019-10-12 04:44:35 t 1 1 118260 430 0.00 2019-10-12 04:53:02 2019-10-12 05:14:32 t 1 1 118261 520 0.00 2019-10-12 05:22:46 2019-10-12 05:29:37 t 1 1 118263 430 0.00 2019-10-12 05:49:56 2019-10-12 05:50:21 t 1 1 118265 247 0.00 2019-10-12 06:26:17 2019-10-12 06:26:17 f 1 2 118266 516 0.00 2019-10-12 06:25:00 2019-10-12 06:30:35 t 1 1 118267 520 0.00 2019-10-12 06:26:16 2019-10-12 06:31:41 t 1 1 118269 520 0.00 2019-10-12 06:31:41 2019-10-12 06:47:39 t 1 1 118271 520 0.00 2019-10-12 06:47:38 2019-10-12 06:56:01 t 1 1 118275 461 0.00 2019-10-12 07:13:27 2019-10-12 07:23:32 t 1 2 118283 551 0.00 2019-10-12 03:49:49 2019-10-12 07:43:13 t 1 1 118285 412 0.00 2019-10-12 07:42:15 2019-10-12 07:51:47 t 1 1 118287 538 0.00 2019-10-12 06:48:50 2019-10-12 08:00:17 t 1 1 118289 331 0.00 2019-10-12 07:58:03 2019-10-12 08:01:24 t 1 1 118291 412 0.00 2019-10-12 07:51:47 2019-10-12 08:05:21 t 1 1 118292 306 0.00 2019-10-12 08:04:42 2019-10-12 08:11:23 t 1 1 118293 470 0.00 2019-10-12 08:00:54 2019-10-12 08:19:03 t 1 1 118296 416 0.00 2019-10-12 07:55:25 2019-10-12 08:30:40 t 1 1 118299 331 0.00 2019-10-12 08:01:23 2019-10-12 08:32:16 t 1 1 118304 416 0.00 2019-10-12 08:36:20 2019-10-12 08:42:59 t 1 1 118315 306 0.00 2019-10-12 09:02:06 2019-10-12 09:05:36 t 1 1 118317 520 0.00 2019-10-12 08:51:06 2019-10-12 09:09:52 t 1 1 118320 220 0.00 2019-10-12 07:57:22 2019-10-12 09:11:46 t 1 2 118323 520 0.00 2019-10-12 09:10:54 2019-10-12 09:14:37 t 1 1 118324 542 0.00 2019-10-12 09:13:21 2019-10-12 09:15:09 t 1 1 118327 520 0.00 2019-10-12 09:14:37 2019-10-12 09:16:35 t 1 1 118329 520 0.00 2019-10-12 09:16:35 2019-10-12 09:20:38 t 1 1 118330 554 0.00 2019-10-12 07:39:47 2019-10-12 09:21:05 t 1 1 118333 375 0.00 2019-10-12 09:02:43 2019-10-12 09:22:58 t 1 1 118336 538 0.00 2019-10-12 09:26:52 2019-10-12 09:28:42 t 1 1 118341 375 0.00 2019-10-12 09:23:02 2019-10-12 09:38:11 t 1 1 118343 520 0.00 2019-10-12 09:38:43 2019-10-12 09:39:34 t 1 1 118344 306 0.00 2019-10-12 09:35:54 2019-10-12 09:40:00 t 1 1 118345 520 0.00 2019-10-12 09:39:34 2019-10-12 09:44:07 t 1 1 118347 528 0.00 2019-10-12 09:48:33 2019-10-12 09:48:51 t 1 1 118349 327 0.00 2019-10-12 08:54:36 2019-10-12 09:50:53 t 1 1 118353 538 0.00 2019-10-12 09:37:42 2019-10-12 09:58:01 t 1 1 118356 395 0.00 2019-10-12 09:57:29 2019-10-12 09:59:51 t 1 2 118358 472 0.00 2019-10-12 10:00:13 2019-10-12 10:03:21 t 1 1 118362 528 0.00 2019-10-12 10:06:00 2019-10-12 10:06:33 t 1 1 118363 520 0.00 2019-10-12 10:04:27 2019-10-12 10:07:46 t 1 1 118365 528 0.00 2019-10-12 10:08:35 2019-10-12 10:10:18 t 1 1 118368 501 0.00 2019-10-12 10:10:52 2019-10-12 10:13:12 t 1 1 118369 528 0.00 2019-10-12 10:12:51 2019-10-12 10:13:30 t 1 1 118373 501 0.00 2019-10-12 10:16:20 2019-10-12 10:24:56 t 1 1 118378 512 0.00 2019-10-12 10:26:39 2019-10-12 10:29:16 t 1 1 118379 470 0.00 2019-10-12 10:20:28 2019-10-12 10:30:18 t 1 1 118381 528 0.00 2019-10-12 10:37:28 2019-10-12 10:37:39 t 1 1 118382 528 0.00 2019-10-12 10:38:06 2019-10-12 10:39:18 t 1 1 118384 520 0.00 2019-10-12 10:11:04 2019-10-12 10:41:58 t 1 1 118385 375 0.00 2019-10-12 10:06:31 2019-10-12 10:45:39 t 1 1 118389 416 0.00 2019-10-12 08:54:55 2019-10-12 10:50:27 t 1 1 118391 379 0.00 2019-10-12 08:23:36 2019-10-12 10:51:34 t 1 1 118339 544 0.00 2019-10-12 09:07:29 2019-10-12 09:37:35 t 1 2 118342 520 0.00 2019-10-12 09:30:55 2019-10-12 09:38:43 t 1 1 118348 528 0.00 2019-10-12 09:50:28 2019-10-12 09:50:40 t 1 1 118351 331 0.00 2019-10-12 09:24:51 2019-10-12 09:51:55 t 1 1 118354 528 0.00 2019-10-12 09:51:16 2019-10-12 09:58:10 t 1 1 118364 528 0.00 2019-10-12 10:09:31 2019-10-12 10:09:33 t 1 1 118367 520 0.00 2019-10-12 10:07:46 2019-10-12 10:11:05 t 1 1 118370 501 0.00 2019-10-12 10:13:12 2019-10-12 10:16:20 t 1 1 118371 528 0.00 2019-10-12 10:18:37 2019-10-12 10:19:26 t 1 1 118372 470 0.00 2019-10-12 10:03:41 2019-10-12 10:20:28 t 1 1 118375 512 0.00 2019-10-12 10:21:45 2019-10-12 10:26:20 t 1 1 118386 528 0.00 2019-10-12 10:46:52 2019-10-12 10:47:35 t 1 1 118387 247 0.00 2019-10-12 10:48:15 2019-10-12 10:48:15 f 1 2 118390 375 0.00 2019-10-12 10:46:07 2019-10-12 10:51:13 t 1 1 118392 528 0.00 2019-10-12 10:53:29 2019-10-12 10:54:15 t 1 1 118394 528 0.00 2019-10-12 10:59:23 2019-10-12 11:00:10 t 1 1 118395 501 0.00 2019-10-12 10:28:56 2019-10-12 11:01:11 t 1 1 118396 220 0.00 2019-10-12 10:52:06 2019-10-12 11:02:12 t 1 2 118400 528 0.00 2019-10-12 11:03:27 2019-10-12 11:03:41 t 1 1 118402 327 0.00 2019-10-12 09:51:00 2019-10-12 11:08:43 t 1 1 118405 375 0.00 2019-10-12 11:07:07 2019-10-12 11:12:35 t 1 1 118408 528 0.00 2019-10-12 11:16:05 2019-10-12 11:16:45 t 1 1 118412 554 0.00 2019-10-12 09:21:05 2019-10-12 11:23:10 t 1 1 118415 501 0.00 2019-10-12 11:26:04 2019-10-12 11:27:24 t 1 1 118418 327 0.00 2019-10-12 11:08:49 2019-10-12 11:29:21 t 1 1 118424 532 0.00 2019-10-12 11:30:59 2019-10-12 11:31:03 t 1 1 118426 538 0.00 2019-10-12 11:22:32 2019-10-12 11:31:44 t 1 1 118427 528 0.00 2019-10-12 11:30:58 2019-10-12 11:32:06 t 1 1 118433 306 0.00 2019-10-12 11:32:42 2019-10-12 11:39:18 t 1 1 118434 532 0.00 2019-10-12 11:39:32 2019-10-12 11:39:35 t 1 1 118437 487 0.00 2019-10-12 11:34:53 2019-10-12 11:39:52 t 1 2 118445 528 0.00 2019-10-12 11:44:57 2019-10-12 11:45:37 t 1 1 118449 528 0.00 2019-10-12 11:47:55 2019-10-12 11:48:03 t 1 1 118451 532 0.00 2019-10-12 11:47:35 2019-10-12 11:48:36 t 1 1 118454 470 0.00 2019-10-12 11:48:45 2019-10-12 11:49:19 t 1 1 118472 532 0.00 2019-10-12 12:03:55 2019-10-12 12:04:04 t 1 1 118481 528 0.00 2019-10-12 12:06:35 2019-10-12 12:11:38 t 1 1 118484 416 0.00 2019-10-12 12:03:15 2019-10-12 12:14:51 t 1 1 118490 456 0.00 2019-10-12 12:11:23 2019-10-12 12:19:37 t 1 1 118497 538 0.00 2019-10-12 12:17:59 2019-10-12 12:24:09 t 1 1 118501 554 0.00 2019-10-12 11:52:26 2019-10-12 12:27:41 t 1 1 118503 538 0.00 2019-10-12 12:24:17 2019-10-12 12:31:08 t 1 1 118505 416 0.00 2019-10-12 12:14:56 2019-10-12 12:32:07 t 1 1 118507 296 0.00 2019-10-12 11:28:14 2019-10-12 12:34:33 t 1 2 118511 532 0.00 2019-10-12 12:35:27 2019-10-12 12:36:43 t 1 1 118513 422 0.00 2019-10-12 12:25:50 2019-10-12 12:36:53 t 1 1 118516 501 0.00 2019-10-12 12:38:05 2019-10-12 12:42:26 t 1 1 118518 327 0.00 2019-10-12 12:44:36 2019-10-12 12:45:09 t 1 1 118521 470 0.00 2019-10-12 12:10:40 2019-10-12 12:48:41 t 1 1 118525 327 0.00 2019-10-12 12:45:45 2019-10-12 12:52:54 t 1 1 118526 532 0.00 2019-10-12 12:52:58 2019-10-12 12:53:07 t 1 1 118527 532 0.00 2019-10-12 12:53:44 2019-10-12 12:53:45 t 1 1 118529 538 0.00 2019-10-12 12:31:07 2019-10-12 12:55:41 t 1 1 118532 532 0.00 2019-10-12 12:57:20 2019-10-12 12:57:26 t 1 1 118536 538 0.00 2019-10-12 12:55:46 2019-10-12 13:00:23 t 1 1 118537 532 0.00 2019-10-12 12:57:39 2019-10-12 13:01:13 t 1 1 118542 538 0.00 2019-10-12 13:00:32 2019-10-12 13:11:53 t 1 1 118544 306 0.00 2019-10-12 13:13:38 2019-10-12 13:16:30 t 1 1 118548 501 0.00 2019-10-12 13:22:46 2019-10-12 13:29:35 t 1 1 118551 501 0.00 2019-10-12 13:36:20 2019-10-12 13:37:42 t 1 1 118552 247 0.00 2019-10-12 13:38:27 2019-10-12 13:38:27 f 1 2 118555 501 0.00 2019-10-12 13:42:02 2019-10-12 13:42:36 t 1 1 118559 416 0.00 2019-10-12 13:24:03 2019-10-12 13:44:36 t 1 1 118560 327 0.00 2019-10-12 13:42:37 2019-10-12 13:53:27 t 1 1 118561 416 0.00 2019-10-12 13:44:41 2019-10-12 13:57:36 t 1 1 118562 290 0.00 2019-10-12 13:14:59 2019-10-12 14:00:04 t 1 2 118564 501 0.00 2019-10-12 13:51:01 2019-10-12 14:03:00 t 1 1 118565 306 0.00 2019-10-12 13:46:41 2019-10-12 14:04:52 t 1 1 118567 412 0.00 2019-10-12 08:05:21 2019-10-12 14:07:58 t 1 1 118568 501 0.00 2019-10-12 14:08:16 2019-10-12 14:12:12 t 1 1 118572 306 0.00 2019-10-12 14:04:52 2019-10-12 14:15:59 t 1 1 118575 501 0.00 2019-10-12 14:27:52 2019-10-12 14:27:59 t 1 1 118578 327 0.00 2019-10-12 14:31:00 2019-10-12 14:31:33 t 1 1 118579 501 0.00 2019-10-12 14:31:54 2019-10-12 14:32:25 t 1 1 118582 516 0.00 2019-10-12 14:11:52 2019-10-12 14:38:13 t 1 1 118584 422 0.00 2019-10-12 12:44:04 2019-10-12 14:40:04 t 1 1 118591 416 0.00 2019-10-12 14:42:36 2019-10-12 14:53:04 t 1 1 118593 327 0.00 2019-10-12 14:54:16 2019-10-12 14:55:49 t 1 1 118597 501 0.00 2019-10-12 15:00:50 2019-10-12 15:03:46 t 1 1 118598 327 0.00 2019-10-12 15:05:44 2019-10-12 15:06:18 t 1 1 118599 456 0.00 2019-10-12 15:05:39 2019-10-12 15:07:05 t 1 1 118600 516 0.00 2019-10-12 15:05:00 2019-10-12 15:08:07 t 1 1 118602 501 0.00 2019-10-12 15:05:47 2019-10-12 15:13:32 t 1 1 118609 498 0.00 2019-10-12 14:42:24 2019-10-12 15:21:43 t 1 2 118618 422 0.00 2019-10-12 15:25:10 2019-10-12 15:34:21 t 1 1 118622 501 0.00 2019-10-12 15:39:14 2019-10-12 15:40:50 t 1 1 118634 422 0.00 2019-10-12 15:46:27 2019-10-12 15:54:44 t 1 1 118640 327 0.00 2019-10-12 15:57:13 2019-10-12 16:13:21 t 1 1 118641 516 0.00 2019-10-12 16:01:03 2019-10-12 16:14:34 t 1 1 118643 416 0.00 2019-10-12 15:09:40 2019-10-12 16:18:18 t 1 1 118645 416 0.00 2019-10-12 16:18:24 2019-10-12 16:20:07 t 1 1 118646 538 0.00 2019-10-12 13:44:32 2019-10-12 16:25:08 t 1 1 118647 220 0.00 2019-10-12 15:54:34 2019-10-12 16:26:13 t 1 1 118651 516 0.00 2019-10-12 16:27:36 2019-10-12 16:28:26 t 1 1 118654 468 0.00 2019-10-12 16:23:48 2019-10-12 16:29:48 t 1 1 118655 220 0.00 2019-10-12 16:30:09 2019-10-12 16:30:29 t 1 1 118657 538 0.00 2019-10-12 16:27:56 2019-10-12 16:31:42 t 1 1 118663 481 0.00 2019-10-12 14:14:17 2019-10-12 16:42:38 t 1 1 118666 468 0.00 2019-10-12 16:42:28 2019-10-12 16:48:24 t 1 1 118671 220 0.00 2019-10-12 16:51:16 2019-10-12 16:53:06 t 1 1 118672 327 0.00 2019-10-12 16:29:17 2019-10-12 16:56:53 t 1 1 118674 468 0.00 2019-10-12 16:58:06 2019-10-12 16:58:26 t 1 1 118679 220 0.00 2019-10-12 17:04:07 2019-10-12 17:06:58 t 1 1 118681 220 0.00 2019-10-12 17:06:20 2019-10-12 17:09:57 t 1 1 118684 306 0.00 2019-10-12 17:09:45 2019-10-12 17:12:39 t 1 1 118697 306 0.00 2019-10-12 17:27:26 2019-10-12 17:30:39 t 1 1 118698 468 0.00 2019-10-12 16:58:39 2019-10-12 17:31:16 t 1 1 118383 528 0.00 2019-10-12 10:38:22 2019-10-12 10:41:44 t 1 1 118388 528 0.00 2019-10-12 10:48:16 2019-10-12 10:48:27 t 1 1 118398 528 0.00 2019-10-12 11:00:35 2019-10-12 11:02:48 t 1 1 118401 528 0.00 2019-10-12 11:06:19 2019-10-12 11:08:16 t 1 1 118403 528 0.00 2019-10-12 11:10:48 2019-10-12 11:11:02 t 1 1 118404 501 0.00 2019-10-12 11:11:38 2019-10-12 11:12:10 t 1 1 118406 512 0.00 2019-10-12 11:04:15 2019-10-12 11:14:49 t 1 1 118407 538 0.00 2019-10-12 11:04:57 2019-10-12 11:16:28 t 1 1 118416 501 0.00 2019-10-12 11:28:18 2019-10-12 11:28:25 t 1 1 118417 528 0.00 2019-10-12 11:27:28 2019-10-12 11:29:18 t 1 1 118421 528 0.00 2019-10-12 11:30:36 2019-10-12 11:30:46 t 1 1 118423 501 0.00 2019-10-12 11:30:07 2019-10-12 11:31:03 t 1 1 118425 516 0.00 2019-10-12 11:24:19 2019-10-12 11:31:41 t 1 1 118428 514 0.00 2019-10-12 11:29:01 2019-10-12 11:33:41 t 1 1 118429 532 0.00 2019-10-12 11:34:27 2019-10-12 11:34:30 t 1 1 118430 528 0.00 2019-10-12 11:36:31 2019-10-12 11:36:47 t 1 1 118436 538 0.00 2019-10-12 11:31:47 2019-10-12 11:39:47 t 1 1 118438 331 0.00 2019-10-12 11:10:58 2019-10-12 11:41:50 t 1 1 118442 514 0.00 2019-10-12 11:42:14 2019-10-12 11:45:07 t 1 1 118444 538 0.00 2019-10-12 11:39:34 2019-10-12 11:45:28 t 1 1 118447 501 0.00 2019-10-12 11:31:07 2019-10-12 11:46:51 t 1 1 118448 501 0.00 2019-10-12 11:47:03 2019-10-12 11:47:10 t 1 1 118452 470 0.00 2019-10-12 10:38:12 2019-10-12 11:48:45 t 1 1 118455 528 0.00 2019-10-12 11:49:30 2019-10-12 11:49:40 t 1 1 118457 514 0.00 2019-10-12 11:48:13 2019-10-12 11:51:09 t 1 1 118460 514 0.00 2019-10-12 11:51:09 2019-10-12 11:54:07 t 1 1 118462 528 0.00 2019-10-12 11:54:03 2019-10-12 11:54:35 t 1 1 118465 532 0.00 2019-10-12 11:58:24 2019-10-12 11:59:00 t 1 1 118467 501 0.00 2019-10-12 11:52:51 2019-10-12 12:00:26 t 1 1 118470 532 0.00 2019-10-12 12:03:22 2019-10-12 12:03:24 t 1 1 118471 528 0.00 2019-10-12 12:02:42 2019-10-12 12:03:58 t 1 1 118474 532 0.00 2019-10-12 12:02:48 2019-10-12 12:04:18 t 1 1 118475 532 0.00 2019-10-12 12:06:25 2019-10-12 12:06:26 t 1 1 118476 532 0.00 2019-10-12 12:05:25 2019-10-12 12:07:18 t 1 1 118478 422 0.00 2019-10-12 11:20:14 2019-10-12 12:08:29 t 1 1 118479 470 0.00 2019-10-12 11:53:12 2019-10-12 12:10:35 t 1 1 118480 532 0.00 2019-10-12 12:11:33 2019-10-12 12:11:36 t 1 1 118482 327 0.00 2019-10-12 11:29:21 2019-10-12 12:12:55 t 1 1 118483 516 0.00 2019-10-12 12:10:47 2019-10-12 12:14:49 t 1 1 118486 538 0.00 2019-10-12 11:45:38 2019-10-12 12:15:39 t 1 1 118487 532 0.00 2019-10-12 12:16:36 2019-10-12 12:16:39 t 1 1 118493 512 0.00 2019-10-12 11:22:10 2019-10-12 12:21:22 t 1 1 118494 220 0.00 2019-10-12 10:43:51 2019-10-12 12:22:09 t 1 2 118496 532 0.00 2019-10-12 12:22:18 2019-10-12 12:22:24 t 1 1 118499 514 0.00 2019-10-12 12:19:35 2019-10-12 12:25:18 t 1 1 118506 532 0.00 2019-10-12 12:34:04 2019-10-12 12:34:12 t 1 1 118509 532 0.00 2019-10-12 12:35:06 2019-10-12 12:35:19 t 1 1 118510 501 0.00 2019-10-12 12:19:13 2019-10-12 12:36:03 t 1 1 118512 532 0.00 2019-10-12 12:36:51 2019-10-12 12:36:53 t 1 1 118519 532 0.00 2019-10-12 12:45:14 2019-10-12 12:45:17 t 1 1 118523 516 0.00 2019-10-12 12:41:20 2019-10-12 12:49:28 t 1 1 118524 532 0.00 2019-10-12 12:50:10 2019-10-12 12:52:46 t 1 1 118528 532 0.00 2019-10-12 12:55:20 2019-10-12 12:55:22 t 1 1 118534 327 0.00 2019-10-12 12:54:22 2019-10-12 12:59:34 t 1 1 118535 220 0.00 2019-10-12 12:54:33 2019-10-12 13:00:14 t 1 1 118540 532 0.00 2019-10-12 13:07:46 2019-10-12 13:08:47 t 1 1 118543 327 0.00 2019-10-12 13:09:30 2019-10-12 13:13:26 t 1 1 118546 416 0.00 2019-10-12 12:32:18 2019-10-12 13:23:54 t 1 1 118547 306 0.00 2019-10-12 13:23:29 2019-10-12 13:26:43 t 1 1 118550 327 0.00 2019-10-12 13:23:23 2019-10-12 13:33:11 t 1 1 118553 501 0.00 2019-10-12 13:38:44 2019-10-12 13:38:51 t 1 1 118554 512 0.00 2019-10-12 12:55:17 2019-10-12 13:40:30 t 1 1 118556 379 0.00 2019-10-12 10:51:34 2019-10-12 13:42:49 t 1 1 118557 520 0.00 2019-10-12 13:39:30 2019-10-12 13:43:32 t 1 1 118558 538 0.00 2019-10-12 13:12:10 2019-10-12 13:44:32 t 1 1 118566 416 0.00 2019-10-12 13:57:41 2019-10-12 14:04:56 t 1 1 118569 481 0.00 2019-10-12 13:31:49 2019-10-12 14:13:47 t 1 1 118571 327 0.00 2019-10-12 14:03:06 2019-10-12 14:14:38 t 1 1 118573 375 0.00 2019-10-12 14:01:53 2019-10-12 14:22:37 t 1 1 118577 501 0.00 2019-10-12 14:30:53 2019-10-12 14:31:27 t 1 1 118580 375 0.00 2019-10-12 14:22:37 2019-10-12 14:33:37 t 1 1 118583 412 0.00 2019-10-12 14:07:58 2019-10-12 14:39:39 t 1 1 118589 327 0.00 2019-10-12 14:43:55 2019-10-12 14:47:10 t 1 1 118594 501 0.00 2019-10-12 14:54:14 2019-10-12 14:58:39 t 1 1 118596 451 0.00 2019-10-12 14:59:40 2019-10-12 15:01:05 t 1 1 118601 416 0.00 2019-10-12 14:53:23 2019-10-12 15:09:35 t 1 1 118603 375 0.00 2019-10-12 14:45:00 2019-10-12 15:13:36 t 1 1 118604 422 0.00 2019-10-12 14:40:04 2019-10-12 15:14:07 t 1 1 118606 306 0.00 2019-10-12 15:02:38 2019-10-12 15:16:11 t 1 1 118607 412 0.00 2019-10-12 14:55:17 2019-10-12 15:18:23 t 1 1 118610 528 0.00 2019-10-12 15:06:30 2019-10-12 15:22:52 t 1 1 118611 554 0.00 2019-10-12 13:13:21 2019-10-12 15:23:22 t 1 1 118612 501 0.00 2019-10-12 15:23:31 2019-10-12 15:24:18 t 1 1 118613 422 0.00 2019-10-12 15:14:11 2019-10-12 15:25:10 t 1 1 118615 501 0.00 2019-10-12 15:26:12 2019-10-12 15:27:28 t 1 1 118616 501 0.00 2019-10-12 15:28:36 2019-10-12 15:28:44 t 1 1 118623 422 0.00 2019-10-12 15:34:21 2019-10-12 15:41:31 t 1 1 118624 528 0.00 2019-10-12 15:43:25 2019-10-12 15:43:27 t 1 1 118626 528 0.00 2019-10-12 15:44:41 2019-10-12 15:45:26 t 1 1 118627 422 0.00 2019-10-12 15:41:31 2019-10-12 15:46:27 t 1 1 118628 554 0.00 2019-10-12 15:26:46 2019-10-12 15:46:59 t 1 1 118629 528 0.00 2019-10-12 15:45:48 2019-10-12 15:48:01 t 1 1 118633 220 0.00 2019-10-12 15:26:08 2019-10-12 15:54:34 t 1 1 118635 375 0.00 2019-10-12 15:13:36 2019-10-12 15:56:34 t 1 1 118637 461 0.00 2019-10-12 15:51:20 2019-10-12 16:01:25 t 1 2 118638 422 0.00 2019-10-12 15:54:44 2019-10-12 16:07:00 t 1 1 118639 512 0.00 2019-10-12 14:14:12 2019-10-12 16:08:22 t 1 1 118644 461 0.00 2019-10-12 16:00:12 2019-10-12 16:20:06 t 1 2 118649 220 0.00 2019-10-12 16:26:13 2019-10-12 16:27:17 t 1 1 118650 220 0.00 2019-10-12 16:27:14 2019-10-12 16:27:52 t 1 1 118652 220 0.00 2019-10-12 16:27:51 2019-10-12 16:29:05 t 1 1 118656 306 0.00 2019-10-12 16:28:01 2019-10-12 16:31:35 t 1 1 118660 296 0.00 2019-10-12 16:16:14 2019-10-12 16:33:38 t 1 2 118661 220 0.00 2019-10-12 16:02:18 2019-10-12 16:37:23 t 1 2 118665 306 0.00 2019-10-12 16:39:32 2019-10-12 16:45:41 t 1 1 118668 538 0.00 2019-10-12 16:45:15 2019-10-12 16:51:03 t 1 1 118670 461 0.00 2019-10-12 16:20:21 2019-10-12 16:51:39 t 1 2 118393 538 0.00 2019-10-12 09:59:31 2019-10-12 10:59:22 t 1 1 118397 538 0.00 2019-10-12 10:59:43 2019-10-12 11:02:40 t 1 1 118399 375 0.00 2019-10-12 10:52:52 2019-10-12 11:03:10 t 1 1 118409 538 0.00 2019-10-12 11:18:31 2019-10-12 11:20:04 t 1 1 118410 375 0.00 2019-10-12 11:12:44 2019-10-12 11:21:25 t 1 1 118411 501 0.00 2019-10-12 11:15:09 2019-10-12 11:22:10 t 1 1 118413 532 0.00 2019-10-12 11:14:05 2019-10-12 11:26:04 t 1 1 118414 528 0.00 2019-10-12 11:26:39 2019-10-12 11:26:56 t 1 1 118419 481 0.00 2019-10-12 10:29:00 2019-10-12 11:29:59 t 1 1 118420 532 0.00 2019-10-12 11:26:04 2019-10-12 11:30:42 t 1 1 118422 532 0.00 2019-10-12 11:30:50 2019-10-12 11:30:52 t 1 1 118431 375 0.00 2019-10-12 11:22:02 2019-10-12 11:39:11 t 1 1 118432 554 0.00 2019-10-12 11:23:10 2019-10-12 11:39:13 t 1 1 118435 528 0.00 2019-10-12 11:38:56 2019-10-12 11:39:39 t 1 1 118439 514 0.00 2019-10-12 11:33:40 2019-10-12 11:42:14 t 1 1 118440 306 0.00 2019-10-12 11:39:17 2019-10-12 11:43:00 t 1 1 118441 532 0.00 2019-10-12 11:44:36 2019-10-12 11:44:37 t 1 1 118443 554 0.00 2019-10-12 11:39:12 2019-10-12 11:45:23 t 1 1 118446 532 0.00 2019-10-12 11:45:54 2019-10-12 11:46:07 t 1 1 118450 514 0.00 2019-10-12 11:45:07 2019-10-12 11:48:13 t 1 1 118453 528 0.00 2019-10-12 11:48:41 2019-10-12 11:48:50 t 1 1 118456 532 0.00 2019-10-12 11:51:00 2019-10-12 11:51:09 t 1 1 118458 331 0.00 2019-10-12 11:41:50 2019-10-12 11:51:19 t 1 1 118459 375 0.00 2019-10-12 11:39:11 2019-10-12 11:54:04 t 1 1 118461 306 0.00 2019-10-12 11:51:46 2019-10-12 11:54:21 t 1 1 118463 532 0.00 2019-10-12 11:56:15 2019-10-12 11:56:18 t 1 1 118464 528 0.00 2019-10-12 11:57:27 2019-10-12 11:57:30 t 1 1 118466 532 0.00 2019-10-12 12:00:01 2019-10-12 12:00:19 t 1 1 118468 532 0.00 2019-10-12 12:00:27 2019-10-12 12:00:30 t 1 1 118469 532 0.00 2019-10-12 12:01:04 2019-10-12 12:01:27 t 1 1 118473 416 0.00 2019-10-12 10:50:25 2019-10-12 12:04:11 t 1 1 118477 306 0.00 2019-10-12 12:00:18 2019-10-12 12:08:14 t 1 1 118485 501 0.00 2019-10-12 12:09:47 2019-10-12 12:15:11 t 1 1 118488 422 0.00 2019-10-12 12:08:29 2019-10-12 12:19:02 t 1 1 118489 514 0.00 2019-10-12 11:54:07 2019-10-12 12:19:35 t 1 1 118491 532 0.00 2019-10-12 12:20:43 2019-10-12 12:20:45 t 1 1 118492 532 0.00 2019-10-12 12:21:02 2019-10-12 12:21:13 t 1 1 118495 532 0.00 2019-10-12 12:21:38 2019-10-12 12:22:19 t 1 1 118498 220 0.00 2019-10-12 11:01:27 2019-10-12 12:24:13 t 1 1 118500 422 0.00 2019-10-12 12:19:02 2019-10-12 12:25:50 t 1 1 118502 514 0.00 2019-10-12 12:25:18 2019-10-12 12:29:46 t 1 1 118504 516 0.00 2019-10-12 12:28:53 2019-10-12 12:31:27 t 1 1 118508 327 0.00 2019-10-12 12:22:51 2019-10-12 12:34:38 t 1 1 118514 532 0.00 2019-10-12 12:37:14 2019-10-12 12:37:27 t 1 1 118515 554 0.00 2019-10-12 12:27:41 2019-10-12 12:41:29 t 1 1 118517 422 0.00 2019-10-12 12:36:53 2019-10-12 12:44:04 t 1 1 118520 532 0.00 2019-10-12 12:46:51 2019-10-12 12:47:00 t 1 1 118522 220 0.00 2019-10-12 12:48:50 2019-10-12 12:49:23 t 1 1 118530 532 0.00 2019-10-12 12:55:43 2019-10-12 12:56:05 t 1 1 118531 532 0.00 2019-10-12 12:57:06 2019-10-12 12:57:07 t 1 1 118533 487 0.00 2019-10-12 12:53:38 2019-10-12 12:57:32 t 1 2 118538 532 0.00 2019-10-12 13:03:20 2019-10-12 13:03:22 t 1 1 118539 532 0.00 2019-10-12 13:07:14 2019-10-12 13:08:14 t 1 1 118541 554 0.00 2019-10-12 12:41:29 2019-10-12 13:10:42 t 1 1 118545 501 0.00 2019-10-12 12:43:06 2019-10-12 13:20:12 t 1 1 118549 481 0.00 2019-10-12 11:32:07 2019-10-12 13:31:38 t 1 1 118563 375 0.00 2019-10-12 13:20:05 2019-10-12 14:00:33 t 1 1 118570 501 0.00 2019-10-12 14:14:14 2019-10-12 14:14:21 t 1 1 118574 501 0.00 2019-10-12 14:24:47 2019-10-12 14:25:00 t 1 1 118576 327 0.00 2019-10-12 14:24:11 2019-10-12 14:30:04 t 1 1 118581 416 0.00 2019-10-12 14:05:42 2019-10-12 14:33:40 t 1 1 118585 416 0.00 2019-10-12 14:33:59 2019-10-12 14:42:26 t 1 1 118586 327 0.00 2019-10-12 14:41:28 2019-10-12 14:43:14 t 1 1 118587 501 0.00 2019-10-12 14:40:38 2019-10-12 14:43:59 t 1 1 118588 375 0.00 2019-10-12 14:33:37 2019-10-12 14:45:00 t 1 1 118590 508 0.00 2019-10-12 13:39:44 2019-10-12 14:48:21 t 1 2 118592 412 0.00 2019-10-12 14:39:39 2019-10-12 14:55:17 t 1 1 118595 451 0.00 2019-10-12 14:49:57 2019-10-12 14:59:40 t 1 1 118605 451 0.00 2019-10-12 15:01:05 2019-10-12 15:14:30 t 1 1 118608 296 0.00 2019-10-12 15:13:33 2019-10-12 15:18:57 t 1 2 118614 554 0.00 2019-10-12 15:23:22 2019-10-12 15:26:45 t 1 1 118617 412 0.00 2019-10-12 15:18:23 2019-10-12 15:31:47 t 1 1 118619 327 0.00 2019-10-12 15:07:07 2019-10-12 15:35:22 t 1 1 118620 461 0.00 2019-10-12 14:56:33 2019-10-12 15:36:38 t 1 2 118621 528 0.00 2019-10-12 15:26:49 2019-10-12 15:38:28 t 1 1 118625 528 0.00 2019-10-12 15:42:45 2019-10-12 15:44:19 t 1 1 118630 554 0.00 2019-10-12 15:47:09 2019-10-12 15:49:25 t 1 1 118631 470 0.00 2019-10-12 12:48:41 2019-10-12 15:50:15 t 1 1 118632 412 0.00 2019-10-12 15:31:47 2019-10-12 15:53:28 t 1 1 118636 327 0.00 2019-10-12 15:35:22 2019-10-12 15:57:13 t 1 1 118642 422 0.00 2019-10-12 16:07:00 2019-10-12 16:16:08 t 1 1 118648 422 0.00 2019-10-12 16:16:08 2019-10-12 16:26:47 t 1 1 118653 327 0.00 2019-10-12 16:13:21 2019-10-12 16:29:17 t 1 1 118658 468 0.00 2019-10-12 16:29:48 2019-10-12 16:33:18 t 1 1 118659 220 0.00 2019-10-12 16:30:28 2019-10-12 16:33:37 t 1 1 118662 468 0.00 2019-10-12 16:33:18 2019-10-12 16:42:28 t 1 1 118664 538 0.00 2019-10-12 16:32:41 2019-10-12 16:45:16 t 1 1 118667 220 0.00 2019-10-12 16:33:36 2019-10-12 16:48:31 t 1 1 118669 220 0.00 2019-10-12 16:50:12 2019-10-12 16:51:17 t 1 1 118676 220 0.00 2019-10-12 16:54:14 2019-10-12 17:03:47 t 1 1 118678 220 0.00 2019-10-12 16:29:09 2019-10-12 17:06:20 t 1 1 118682 327 0.00 2019-10-12 17:09:19 2019-10-12 17:10:23 t 1 1 118687 327 0.00 2019-10-12 17:17:22 2019-10-12 17:17:23 t 1 1 118689 220 0.00 2019-10-12 17:13:45 2019-10-12 17:19:15 t 1 1 118690 481 0.00 2019-10-12 16:44:07 2019-10-12 17:20:20 t 1 1 118691 327 0.00 2019-10-12 17:19:41 2019-10-12 17:21:47 t 1 1 118694 520 0.00 2019-10-12 17:19:23 2019-10-12 17:23:32 t 1 1 118695 325 0.00 2019-10-12 17:18:06 2019-10-12 17:28:11 t 1 2 118699 220 0.00 2019-10-12 17:31:05 2019-10-12 17:32:44 t 1 1 118700 468 0.00 2019-10-12 17:31:16 2019-10-12 17:33:00 t 1 1 118702 468 0.00 2019-10-12 17:33:12 2019-10-12 17:35:14 t 1 1 118703 528 0.00 2019-10-12 17:23:43 2019-10-12 17:41:25 t 1 1 118704 528 0.00 2019-10-12 17:41:25 2019-10-12 17:44:26 t 1 1 118707 327 0.00 2019-10-12 17:44:07 2019-10-12 17:49:19 t 1 1 118711 468 0.00 2019-10-12 17:52:18 2019-10-12 17:53:05 t 1 1 118714 220 0.00 2019-10-12 17:57:21 2019-10-12 18:00:16 t 1 1 118718 556 0.00 2019-10-12 18:05:56 2019-10-12 18:08:23 t 1 1 118673 468 0.00 2019-10-12 16:49:53 2019-10-12 16:58:06 t 1 1 118675 375 0.00 2019-10-12 15:58:06 2019-10-12 17:03:00 t 1 1 118677 327 0.00 2019-10-12 17:04:20 2019-10-12 17:05:58 t 1 1 118680 379 0.00 2019-10-12 13:42:49 2019-10-12 17:09:23 t 1 1 118683 379 0.00 2019-10-12 17:09:23 2019-10-12 17:12:17 t 1 1 118685 327 0.00 2019-10-12 17:11:53 2019-10-12 17:13:03 t 1 1 118686 327 0.00 2019-10-12 17:15:31 2019-10-12 17:17:15 t 1 1 118688 327 0.00 2019-10-12 17:18:13 2019-10-12 17:18:52 t 1 1 118692 375 0.00 2019-10-12 17:03:18 2019-10-12 17:21:53 t 1 1 118693 461 0.00 2019-10-12 16:52:24 2019-10-12 17:22:29 t 1 2 118696 375 0.00 2019-10-12 17:22:11 2019-10-12 17:30:19 t 1 1 118709 306 0.00 2019-10-12 17:49:47 2019-10-12 17:51:10 t 1 1 118710 468 0.00 2019-10-12 17:36:05 2019-10-12 17:52:18 t 1 1 118712 220 0.00 2019-10-12 17:32:49 2019-10-12 17:57:21 t 1 1 118715 327 0.00 2019-10-12 17:58:43 2019-10-12 18:00:19 t 1 1 118717 485 0.00 2019-10-12 18:04:51 2019-10-12 18:07:57 t 1 1 118722 556 0.00 2019-10-12 18:08:23 2019-10-12 18:11:47 t 1 1 118726 558 0.00 2019-10-12 18:04:55 2019-10-12 18:14:21 t 1 1 118733 485 0.00 2019-10-12 18:10:55 2019-10-12 18:18:11 t 1 1 118738 481 0.00 2019-10-12 17:20:32 2019-10-12 18:24:40 t 1 1 118739 501 0.00 2019-10-12 18:25:31 2019-10-12 18:26:04 t 1 1 118742 485 0.00 2019-10-12 18:18:11 2019-10-12 18:29:53 t 1 1 118744 470 0.00 2019-10-12 18:29:44 2019-10-12 18:31:14 t 1 1 118746 430 0.00 2019-10-12 18:23:55 2019-10-12 18:31:51 t 1 1 118748 501 0.00 2019-10-12 18:33:04 2019-10-12 18:33:16 t 1 1 118749 528 0.00 2019-10-12 18:34:46 2019-10-12 18:34:48 t 1 1 118750 516 0.00 2019-10-12 18:28:21 2019-10-12 18:35:12 t 1 1 118751 501 0.00 2019-10-12 18:36:12 2019-10-12 18:36:13 t 1 1 118753 430 0.00 2019-10-12 18:31:51 2019-10-12 18:38:14 t 1 1 118755 468 0.00 2019-10-12 17:53:14 2019-10-12 18:38:39 t 1 1 118762 501 0.00 2019-10-12 18:46:11 2019-10-12 18:46:30 t 1 1 118765 501 0.00 2019-10-12 18:46:58 2019-10-12 18:47:23 t 1 1 118769 220 0.00 2019-10-12 18:00:16 2019-10-12 18:48:19 t 1 1 118776 485 0.00 2019-10-12 18:50:01 2019-10-12 18:56:08 t 1 1 118779 430 0.00 2019-10-12 18:48:04 2019-10-12 18:58:14 t 1 1 118780 220 0.00 2019-10-12 18:48:19 2019-10-12 18:58:49 t 1 1 118785 412 0.00 2019-10-12 15:53:28 2019-10-12 19:10:04 t 1 1 118786 220 0.00 2019-10-12 18:58:49 2019-10-12 19:11:59 t 1 1 118792 468 0.00 2019-10-12 19:30:04 2019-10-12 19:33:10 t 1 1 118796 558 0.00 2019-10-12 18:14:20 2019-10-12 19:40:56 t 1 1 118800 430 0.00 2019-10-12 19:43:10 2019-10-12 19:43:10 f 1 1 118802 481 0.00 2019-10-12 18:24:40 2019-10-12 19:44:12 t 1 1 118808 331 0.00 2019-10-12 19:35:29 2019-10-12 19:58:21 t 1 1 118809 220 0.00 2019-10-12 19:11:59 2019-10-12 19:58:56 t 1 1 118814 487 0.00 2019-10-12 19:59:40 2019-10-12 20:04:45 t 1 2 118818 470 0.00 2019-10-12 19:55:14 2019-10-12 20:12:12 t 1 1 118820 422 0.00 2019-10-12 18:49:37 2019-10-12 20:13:27 t 1 1 118821 470 0.00 2019-10-12 20:12:05 2019-10-12 20:14:11 t 1 1 118824 220 0.00 2019-10-12 19:59:46 2019-10-12 20:18:14 t 1 1 118829 538 0.00 2019-10-12 20:31:17 2019-10-12 20:33:49 t 1 1 118830 532 0.00 2019-10-12 20:30:46 2019-10-12 20:39:10 t 1 1 118833 468 0.00 2019-10-12 20:20:06 2019-10-12 20:50:48 t 1 1 118836 451 0.00 2019-10-12 20:49:00 2019-10-12 20:59:34 t 1 1 118841 451 0.00 2019-10-12 20:59:34 2019-10-12 21:09:15 t 1 1 118842 327 0.00 2019-10-12 21:10:23 2019-10-12 21:11:44 t 1 1 118847 220 0.00 2019-10-12 20:03:30 2019-10-12 21:30:19 t 1 2 118850 306 0.00 2019-10-12 21:31:08 2019-10-12 21:40:19 t 1 1 118852 487 0.00 2019-10-12 20:17:14 2019-10-12 21:42:19 t 1 2 118859 327 0.00 2019-10-12 21:35:30 2019-10-12 21:52:36 t 1 1 118863 361 0.00 2019-10-12 21:08:08 2019-10-12 21:58:35 t 1 2 118865 472 0.00 2019-10-12 21:59:08 2019-10-12 22:00:02 t 1 1 118866 327 0.00 2019-10-12 21:57:15 2019-10-12 22:01:29 t 1 1 118870 472 0.00 2019-10-12 22:06:24 2019-10-12 22:06:25 t 1 1 118872 472 0.00 2019-10-12 22:06:37 2019-10-12 22:08:03 t 1 1 118875 306 0.00 2019-10-12 22:01:17 2019-10-12 22:10:35 t 1 1 118876 472 0.00 2019-10-12 22:13:07 2019-10-12 22:14:08 t 1 1 118882 501 0.00 2019-10-12 22:19:25 2019-10-12 22:20:46 t 1 1 118886 472 0.00 2019-10-12 22:24:40 2019-10-12 22:25:36 t 1 1 118887 472 0.00 2019-10-12 22:25:44 2019-10-12 22:26:47 t 1 1 118892 327 0.00 2019-10-12 22:34:18 2019-10-12 22:34:52 t 1 1 118893 551 0.00 2019-10-12 22:18:33 2019-10-12 22:35:11 t 1 1 118894 372 0.00 2019-10-12 22:40:09 2019-10-12 22:40:09 f 1 2 118899 470 0.00 2019-10-12 22:22:05 2019-10-12 22:43:37 t 1 1 118902 461 0.00 2019-10-12 22:27:39 2019-10-12 22:46:43 t 1 2 118904 372 0.00 2019-10-12 22:37:40 2019-10-12 22:47:45 t 1 2 118905 247 0.00 2019-10-12 22:48:29 2019-10-12 22:48:29 f 1 2 118909 514 0.00 2019-10-12 22:50:12 2019-10-12 23:01:22 t 1 1 118912 501 0.00 2019-10-12 22:55:09 2019-10-12 23:03:07 t 1 1 118915 327 0.00 2019-10-12 22:53:40 2019-10-12 23:05:55 t 1 1 118916 327 0.00 2019-10-12 23:06:02 2019-10-12 23:06:03 t 1 1 118918 472 0.00 2019-10-12 23:06:42 2019-10-12 23:07:37 t 1 1 118921 512 0.00 2019-10-12 22:57:05 2019-10-12 23:10:29 t 1 1 118923 526 0.00 2019-10-12 23:04:58 2019-10-12 23:13:22 t 1 1 118924 526 0.00 2019-10-12 23:14:28 2019-10-12 23:14:47 t 1 1 118932 220 0.00 2019-10-12 23:21:25 2019-10-12 23:22:28 t 1 2 118936 501 0.00 2019-10-12 23:03:53 2019-10-12 23:26:48 t 1 1 118941 220 0.00 2019-10-12 23:26:20 2019-10-12 23:31:10 t 1 1 118944 526 0.00 2019-10-12 23:31:54 2019-10-12 23:32:14 t 1 1 118945 461 0.00 2019-10-12 23:33:04 2019-10-12 23:33:04 f 1 2 118946 461 0.00 2019-10-12 23:33:59 2019-10-12 23:33:59 f 1 2 118949 461 0.00 2019-10-12 23:34:27 2019-10-12 23:34:27 f 1 2 118953 481 0.00 2019-10-12 22:19:55 2019-10-12 23:37:56 t 1 1 118954 220 0.00 2019-10-12 23:27:16 2019-10-12 23:41:20 t 1 1 118955 466 0.00 2019-10-12 23:37:21 2019-10-12 23:43:16 t 1 1 118956 476 0.00 2019-10-12 23:34:38 2019-10-12 23:44:08 t 1 2 118960 461 0.00 2019-10-12 23:52:16 2019-10-12 23:52:16 f 1 2 118963 461 0.00 2019-10-12 23:52:50 2019-10-12 23:52:50 f 1 2 118964 461 0.00 2019-10-12 23:53:00 2019-10-12 23:53:00 f 1 2 118966 461 0.00 2019-10-12 23:57:43 2019-10-12 23:57:43 f 1 2 118969 466 0.00 2019-10-12 23:54:55 2019-10-13 00:00:26 t 1 1 118971 526 0.00 2019-10-12 23:56:11 2019-10-13 00:03:36 t 1 1 118979 466 0.00 2019-10-13 00:13:52 2019-10-13 00:19:56 t 1 1 118983 408 0.00 2019-10-12 23:56:20 2019-10-13 00:23:42 t 1 1 118986 545 0.00 2019-10-13 00:15:23 2019-10-13 00:27:57 t 1 1 118987 526 0.00 2019-10-13 00:23:31 2019-10-13 00:29:26 t 1 1 118997 503 0.00 2019-10-13 00:35:18 2019-10-13 00:43:35 t 1 1 118999 466 0.00 2019-10-13 00:41:35 2019-10-13 00:46:58 t 1 1 118701 327 0.00 2019-10-12 17:31:42 2019-10-12 17:33:57 t 1 1 118705 528 0.00 2019-10-12 17:45:24 2019-10-12 17:45:45 t 1 1 118706 306 0.00 2019-10-12 17:45:37 2019-10-12 17:47:22 t 1 1 118708 538 0.00 2019-10-12 17:19:42 2019-10-12 17:50:43 t 1 1 118713 501 0.00 2019-10-12 17:55:26 2019-10-12 17:59:44 t 1 1 118716 501 0.00 2019-10-12 18:02:06 2019-10-12 18:02:07 t 1 1 118720 327 0.00 2019-10-12 18:03:02 2019-10-12 18:09:37 t 1 1 118724 327 0.00 2019-10-12 18:12:41 2019-10-12 18:13:50 t 1 1 118727 528 0.00 2019-10-12 18:14:07 2019-10-12 18:14:43 t 1 1 118728 528 0.00 2019-10-12 18:08:39 2019-10-12 18:14:59 t 1 1 118730 528 0.00 2019-10-12 18:16:08 2019-10-12 18:17:08 t 1 1 118735 528 0.00 2019-10-12 18:18:35 2019-10-12 18:18:43 t 1 1 118736 528 0.00 2019-10-12 18:20:02 2019-10-12 18:20:42 t 1 1 118741 472 0.00 2019-10-12 18:19:10 2019-10-12 18:28:35 t 1 1 118743 514 0.00 2019-10-12 18:29:11 2019-10-12 18:30:29 t 1 1 118757 485 0.00 2019-10-12 18:29:53 2019-10-12 18:39:56 t 1 1 118758 528 0.00 2019-10-12 18:40:42 2019-10-12 18:41:17 t 1 1 118768 501 0.00 2019-10-12 18:47:54 2019-10-12 18:48:04 t 1 1 118770 422 0.00 2019-10-12 16:26:47 2019-10-12 18:49:37 t 1 1 118772 501 0.00 2019-10-12 18:49:11 2019-10-12 18:50:49 t 1 1 118777 498 0.00 2019-10-12 16:57:56 2019-10-12 18:56:17 t 1 2 118778 468 0.00 2019-10-12 18:53:47 2019-10-12 18:57:23 t 1 1 118784 468 0.00 2019-10-12 18:57:23 2019-10-12 19:06:47 t 1 1 118787 528 0.00 2019-10-12 19:10:52 2019-10-12 19:12:44 t 1 1 118791 468 0.00 2019-10-12 19:09:01 2019-10-12 19:30:04 t 1 1 118793 292 0.00 2019-10-12 19:33:28 2019-10-12 19:34:27 t 1 2 118794 331 0.00 2019-10-12 19:21:16 2019-10-12 19:35:29 t 1 1 118798 430 0.00 2019-10-12 19:40:23 2019-10-12 19:41:44 t 1 1 118799 430 0.00 2019-10-12 19:42:04 2019-10-12 19:42:11 t 1 1 118803 430 0.00 2019-10-12 19:42:47 2019-10-12 19:44:19 t 1 1 118804 520 0.00 2019-10-12 19:04:22 2019-10-12 19:45:34 t 1 1 118805 468 0.00 2019-10-12 19:33:10 2019-10-12 19:49:27 t 1 1 118816 325 0.00 2019-10-12 19:57:03 2019-10-12 20:07:08 t 1 2 118819 520 0.00 2019-10-12 20:09:44 2019-10-12 20:12:16 t 1 1 118822 325 0.00 2019-10-12 20:04:28 2019-10-12 20:14:33 t 1 2 118823 487 0.00 2019-10-12 20:05:32 2019-10-12 20:15:37 t 1 2 118825 456 0.00 2019-10-12 20:20:08 2019-10-12 20:23:15 t 1 1 118827 538 0.00 2019-10-12 20:25:38 2019-10-12 20:31:17 t 1 1 118832 512 0.00 2019-10-12 20:30:55 2019-10-12 20:43:53 t 1 1 118835 468 0.00 2019-10-12 20:50:48 2019-10-12 20:59:24 t 1 1 118839 468 0.00 2019-10-12 20:59:33 2019-10-12 21:05:13 t 1 1 118840 306 0.00 2019-10-12 21:04:22 2019-10-12 21:08:34 t 1 1 118845 327 0.00 2019-10-12 21:21:12 2019-10-12 21:25:55 t 1 1 118846 306 0.00 2019-10-12 21:23:18 2019-10-12 21:27:37 t 1 1 118848 468 0.00 2019-10-12 21:24:54 2019-10-12 21:36:45 t 1 1 118855 422 0.00 2019-10-12 20:13:27 2019-10-12 21:46:40 t 1 1 118857 470 0.00 2019-10-12 21:39:38 2019-10-12 21:49:06 t 1 1 118858 472 0.00 2019-10-12 21:44:54 2019-10-12 21:50:27 t 1 1 118864 472 0.00 2019-10-12 21:57:42 2019-10-12 21:58:56 t 1 1 118867 472 0.00 2019-10-12 22:02:47 2019-10-12 22:03:48 t 1 1 118868 472 0.00 2019-10-12 22:03:59 2019-10-12 22:05:02 t 1 1 118869 472 0.00 2019-10-12 22:05:13 2019-10-12 22:06:10 t 1 1 118871 327 0.00 2019-10-12 22:04:18 2019-10-12 22:07:55 t 1 1 118877 327 0.00 2019-10-12 22:14:05 2019-10-12 22:14:38 t 1 1 118878 470 0.00 2019-10-12 22:13:21 2019-10-12 22:14:58 t 1 1 118881 472 0.00 2019-10-12 22:19:19 2019-10-12 22:20:25 t 1 1 118884 327 0.00 2019-10-12 22:22:04 2019-10-12 22:24:23 t 1 1 118889 472 0.00 2019-10-12 22:28:32 2019-10-12 22:29:32 t 1 1 118890 456 0.00 2019-10-12 22:19:56 2019-10-12 22:30:15 t 1 1 118891 468 0.00 2019-10-12 22:21:30 2019-10-12 22:32:35 t 1 1 118896 372 0.00 2019-10-12 22:40:22 2019-10-12 22:40:22 f 1 2 118897 422 0.00 2019-10-12 21:46:40 2019-10-12 22:42:23 t 1 1 118907 558 0.00 2019-10-12 20:54:43 2019-10-12 22:49:10 t 1 1 118913 526 0.00 2019-10-12 22:52:04 2019-10-12 23:03:46 t 1 1 118919 220 0.00 2019-10-12 23:08:43 2019-10-12 23:09:47 t 1 2 118920 416 0.00 2019-10-12 21:42:29 2019-10-12 23:10:13 t 1 1 118922 466 0.00 2019-10-12 23:07:10 2019-10-12 23:10:53 t 1 1 118926 327 0.00 2019-10-12 23:15:46 2019-10-12 23:16:16 t 1 1 118928 220 0.00 2019-10-12 23:17:53 2019-10-12 23:18:55 t 1 2 118930 468 0.00 2019-10-12 22:33:25 2019-10-12 23:19:55 t 1 1 118933 220 0.00 2019-10-12 23:19:23 2019-10-12 23:24:55 t 1 1 118937 466 0.00 2019-10-12 23:18:57 2019-10-12 23:26:57 t 1 1 118939 416 0.00 2019-10-12 23:18:54 2019-10-12 23:28:59 t 1 1 118940 290 0.00 2019-10-12 23:28:51 2019-10-12 23:29:56 t 1 2 118942 526 0.00 2019-10-12 23:29:30 2019-10-12 23:31:49 t 1 1 118948 558 0.00 2019-10-12 22:49:09 2019-10-12 23:34:17 t 1 1 118950 290 0.00 2019-10-12 23:35:56 2019-10-12 23:37:03 t 1 2 118952 466 0.00 2019-10-12 23:26:57 2019-10-12 23:37:21 t 1 1 118957 220 0.00 2019-10-12 23:31:10 2019-10-12 23:44:15 t 1 1 118959 461 0.00 2019-10-12 23:52:06 2019-10-12 23:52:06 f 1 2 118962 461 0.00 2019-10-12 23:52:38 2019-10-12 23:52:38 f 1 2 118970 558 0.00 2019-10-12 23:34:17 2019-10-13 00:03:18 t 1 1 118972 466 0.00 2019-10-13 00:00:26 2019-10-13 00:05:06 t 1 1 118973 461 0.00 2019-10-13 00:05:48 2019-10-13 00:05:48 f 1 2 118974 422 0.00 2019-10-12 23:02:29 2019-10-13 00:07:17 t 1 1 118981 461 0.00 2019-10-13 00:21:10 2019-10-13 00:21:10 f 1 2 118982 526 0.00 2019-10-13 00:03:36 2019-10-13 00:23:31 t 1 1 118984 466 0.00 2019-10-13 00:19:56 2019-10-13 00:25:19 t 1 1 118985 468 0.00 2019-10-12 23:58:55 2019-10-13 00:26:19 t 1 1 118988 468 0.00 2019-10-13 00:26:19 2019-10-13 00:30:15 t 1 1 118990 501 0.00 2019-10-12 23:55:07 2019-10-13 00:30:55 t 1 1 118991 468 0.00 2019-10-13 00:30:15 2019-10-13 00:32:32 t 1 1 118992 445 0.00 2019-10-13 00:12:59 2019-10-13 00:33:28 t 1 1 118993 466 0.00 2019-10-13 00:30:21 2019-10-13 00:35:28 t 1 1 118994 526 0.00 2019-10-13 00:39:48 2019-10-13 00:39:59 t 1 1 118995 526 0.00 2019-10-13 00:40:39 2019-10-13 00:40:58 t 1 1 119003 466 0.00 2019-10-13 00:46:58 2019-10-13 00:55:07 t 1 1 119004 422 0.00 2019-10-13 00:45:04 2019-10-13 01:01:27 t 1 1 119006 466 0.00 2019-10-13 00:55:07 2019-10-13 01:08:30 t 1 1 119007 544 0.00 2019-10-13 00:26:26 2019-10-13 01:13:12 t 1 2 119009 466 0.00 2019-10-13 01:08:30 2019-10-13 01:14:53 t 1 1 119011 468 0.00 2019-10-13 01:04:50 2019-10-13 01:18:11 t 1 1 119012 466 0.00 2019-10-13 01:14:53 2019-10-13 01:21:34 t 1 1 119017 466 0.00 2019-10-13 01:37:46 2019-10-13 01:50:51 t 1 1 119024 466 0.00 2019-10-13 02:08:12 2019-10-13 02:09:57 t 1 1 119027 466 0.00 2019-10-13 02:12:01 2019-10-13 02:13:39 t 1 1 119035 422 0.00 2019-10-13 02:07:18 2019-10-13 02:23:08 t 1 1 118719 528 0.00 2019-10-12 17:50:09 2019-10-12 18:08:40 t 1 1 118721 430 0.00 2019-10-12 17:59:06 2019-10-12 18:11:41 t 1 1 118723 501 0.00 2019-10-12 18:10:24 2019-10-12 18:12:18 t 1 1 118725 501 0.00 2019-10-12 18:13:26 2019-10-12 18:13:54 t 1 1 118729 470 0.00 2019-10-12 15:50:15 2019-10-12 18:15:53 t 1 1 118731 220 0.00 2019-10-12 18:11:08 2019-10-12 18:17:31 t 1 2 118732 501 0.00 2019-10-12 18:18:00 2019-10-12 18:18:09 t 1 1 118734 470 0.00 2019-10-12 18:16:47 2019-10-12 18:18:16 t 1 1 118737 501 0.00 2019-10-12 18:23:56 2019-10-12 18:24:32 t 1 1 118740 528 0.00 2019-10-12 18:26:07 2019-10-12 18:26:39 t 1 1 118745 528 0.00 2019-10-12 18:31:26 2019-10-12 18:31:40 t 1 1 118747 472 0.00 2019-10-12 18:28:47 2019-10-12 18:33:11 t 1 1 118752 528 0.00 2019-10-12 18:36:28 2019-10-12 18:38:05 t 1 1 118754 306 0.00 2019-10-12 17:56:59 2019-10-12 18:38:23 t 1 1 118756 472 0.00 2019-10-12 18:36:46 2019-10-12 18:38:48 t 1 1 118759 520 0.00 2019-10-12 18:27:42 2019-10-12 18:41:56 t 1 1 118760 501 0.00 2019-10-12 18:43:45 2019-10-12 18:44:12 t 1 1 118761 306 0.00 2019-10-12 18:44:02 2019-10-12 18:45:22 t 1 1 118763 501 0.00 2019-10-12 18:46:39 2019-10-12 18:46:48 t 1 1 118764 528 0.00 2019-10-12 18:45:26 2019-10-12 18:47:17 t 1 1 118766 501 0.00 2019-10-12 18:47:33 2019-10-12 18:47:43 t 1 1 118767 430 0.00 2019-10-12 18:38:14 2019-10-12 18:48:04 t 1 1 118771 485 0.00 2019-10-12 18:39:56 2019-10-12 18:50:01 t 1 1 118773 528 0.00 2019-10-12 18:52:09 2019-10-12 18:52:20 t 1 1 118774 468 0.00 2019-10-12 18:38:39 2019-10-12 18:53:47 t 1 1 118775 528 0.00 2019-10-12 18:53:23 2019-10-12 18:54:09 t 1 1 118781 456 0.00 2019-10-12 18:58:40 2019-10-12 19:01:48 t 1 1 118782 528 0.00 2019-10-12 19:01:59 2019-10-12 19:02:24 t 1 1 118783 516 0.00 2019-10-12 18:49:05 2019-10-12 19:03:58 t 1 1 118788 528 0.00 2019-10-12 19:13:00 2019-10-12 19:16:09 t 1 1 118789 412 0.00 2019-10-12 19:10:04 2019-10-12 19:18:39 t 1 1 118790 296 0.00 2019-10-12 19:09:17 2019-10-12 19:19:40 t 1 2 118795 461 0.00 2019-10-12 19:38:39 2019-10-12 19:39:18 t 1 2 118797 456 0.00 2019-10-12 19:22:06 2019-10-12 19:41:37 t 1 1 118801 430 0.00 2019-10-12 19:43:01 2019-10-12 19:44:01 t 1 1 118806 220 0.00 2019-10-12 17:48:13 2019-10-12 19:50:35 t 1 2 118807 468 0.00 2019-10-12 19:50:26 2019-10-12 19:56:09 t 1 1 118810 220 0.00 2019-10-12 19:58:56 2019-10-12 19:59:46 t 1 1 118811 331 0.00 2019-10-12 19:58:35 2019-10-12 20:00:26 t 1 1 118812 461 0.00 2019-10-12 19:45:57 2019-10-12 20:02:43 t 1 2 118813 456 0.00 2019-10-12 19:41:37 2019-10-12 20:04:42 t 1 1 118815 516 0.00 2019-10-12 20:03:51 2019-10-12 20:06:39 t 1 1 118817 545 0.00 2019-10-12 19:59:31 2019-10-12 20:10:19 t 1 1 118826 558 0.00 2019-10-12 20:08:15 2019-10-12 20:26:15 t 1 1 118828 485 0.00 2019-10-12 20:24:15 2019-10-12 20:31:56 t 1 1 118831 485 0.00 2019-10-12 20:31:56 2019-10-12 20:42:35 t 1 1 118834 558 0.00 2019-10-12 20:26:15 2019-10-12 20:54:11 t 1 1 118837 485 0.00 2019-10-12 20:50:39 2019-10-12 20:59:45 t 1 1 118838 361 0.00 2019-10-12 20:44:32 2019-10-12 21:00:44 t 1 2 118843 468 0.00 2019-10-12 21:06:58 2019-10-12 21:14:06 t 1 1 118844 468 0.00 2019-10-12 21:18:39 2019-10-12 21:21:37 t 1 1 118849 470 0.00 2019-10-12 20:20:36 2019-10-12 21:39:38 t 1 1 118851 461 0.00 2019-10-12 21:09:57 2019-10-12 21:41:05 t 1 2 118853 416 0.00 2019-10-12 20:37:24 2019-10-12 21:42:29 t 1 1 118854 306 0.00 2019-10-12 21:41:09 2019-10-12 21:45:03 t 1 1 118856 456 0.00 2019-10-12 21:41:26 2019-10-12 21:48:16 t 1 1 118860 472 0.00 2019-10-12 21:52:33 2019-10-12 21:53:33 t 1 1 118861 306 0.00 2019-10-12 21:50:42 2019-10-12 21:56:33 t 1 1 118862 456 0.00 2019-10-12 21:57:06 2019-10-12 21:58:23 t 1 1 118873 474 0.00 2019-10-12 22:06:32 2019-10-12 22:09:00 t 1 1 118874 545 0.00 2019-10-12 21:54:00 2019-10-12 22:10:01 t 1 1 118879 472 0.00 2019-10-12 22:18:13 2019-10-12 22:19:13 t 1 1 118880 481 0.00 2019-10-12 21:13:04 2019-10-12 22:19:55 t 1 1 118883 472 0.00 2019-10-12 22:20:33 2019-10-12 22:21:29 t 1 1 118885 472 0.00 2019-10-12 22:23:24 2019-10-12 22:24:29 t 1 1 118888 306 0.00 2019-10-12 22:10:35 2019-10-12 22:27:08 t 1 1 118895 372 0.00 2019-10-12 22:40:16 2019-10-12 22:40:16 f 1 2 118898 544 0.00 2019-10-12 22:38:37 2019-10-12 22:43:02 t 1 1 118900 327 0.00 2019-10-12 22:35:59 2019-10-12 22:43:41 t 1 1 118901 470 0.00 2019-10-12 22:43:37 2019-10-12 22:46:26 t 1 1 118903 372 0.00 2019-10-12 22:37:01 2019-10-12 22:47:06 t 1 2 118906 306 0.00 2019-10-12 22:44:42 2019-10-12 22:49:02 t 1 1 118908 296 0.00 2019-10-12 22:56:33 2019-10-12 22:59:56 t 1 2 118910 422 0.00 2019-10-12 22:42:23 2019-10-12 23:02:29 t 1 1 118911 544 0.00 2019-10-12 22:42:52 2019-10-12 23:02:58 t 1 2 118914 526 0.00 2019-10-12 23:03:46 2019-10-12 23:04:49 t 1 1 118917 327 0.00 2019-10-12 23:06:10 2019-10-12 23:06:24 t 1 1 118925 220 0.00 2019-10-12 23:14:52 2019-10-12 23:15:55 t 1 2 118927 416 0.00 2019-10-12 23:10:13 2019-10-12 23:18:54 t 1 1 118929 466 0.00 2019-10-12 23:10:53 2019-10-12 23:18:57 t 1 1 118931 220 0.00 2019-10-12 23:19:26 2019-10-12 23:20:30 t 1 2 118934 220 0.00 2019-10-12 23:24:55 2019-10-12 23:25:47 t 1 1 118935 220 0.00 2019-10-12 23:25:44 2019-10-12 23:26:20 t 1 1 118938 468 0.00 2019-10-12 23:20:18 2019-10-12 23:27:48 t 1 1 118943 461 0.00 2019-10-12 23:32:05 2019-10-12 23:32:05 f 1 2 118947 461 0.00 2019-10-12 23:34:12 2019-10-12 23:34:12 f 1 2 118951 556 0.00 2019-10-12 18:12:43 2019-10-12 23:37:06 t 1 1 118958 466 0.00 2019-10-12 23:43:16 2019-10-12 23:50:43 t 1 1 118961 461 0.00 2019-10-12 23:52:28 2019-10-12 23:52:28 f 1 2 118965 466 0.00 2019-10-12 23:50:43 2019-10-12 23:54:55 t 1 1 118967 468 0.00 2019-10-12 23:28:46 2019-10-12 23:58:55 t 1 1 118968 220 0.00 2019-10-12 23:44:15 2019-10-12 23:59:16 t 1 1 118975 466 0.00 2019-10-13 00:05:06 2019-10-13 00:10:46 t 1 1 118976 466 0.00 2019-10-13 00:10:46 2019-10-13 00:13:52 t 1 1 118977 220 0.00 2019-10-12 23:59:16 2019-10-13 00:14:14 t 1 1 118978 451 0.00 2019-10-13 00:10:25 2019-10-13 00:16:03 t 1 1 118980 451 0.00 2019-10-13 00:16:03 2019-10-13 00:20:58 t 1 1 118989 466 0.00 2019-10-13 00:25:19 2019-10-13 00:30:21 t 1 1 118996 466 0.00 2019-10-13 00:35:28 2019-10-13 00:41:35 t 1 1 118998 422 0.00 2019-10-13 00:07:17 2019-10-13 00:45:04 t 1 1 119000 503 0.00 2019-10-13 00:43:35 2019-10-13 00:47:27 t 1 1 119002 412 0.00 2019-10-12 19:18:39 2019-10-13 00:53:22 t 1 1 119008 372 0.00 2019-10-13 01:09:24 2019-10-13 01:13:29 t 1 2 119010 422 0.00 2019-10-13 01:01:27 2019-10-13 01:18:03 t 1 1 119014 422 0.00 2019-10-13 01:18:03 2019-10-13 01:34:14 t 1 1 119015 466 0.00 2019-10-13 01:29:17 2019-10-13 01:37:46 t 1 1 119016 422 0.00 2019-10-13 01:34:14 2019-10-13 01:50:26 t 1 1 119001 545 0.00 2019-10-13 00:27:56 2019-10-13 00:47:43 t 1 1 119005 468 0.00 2019-10-13 00:33:07 2019-10-13 01:04:40 t 1 1 119013 466 0.00 2019-10-13 01:21:34 2019-10-13 01:29:17 t 1 1 119028 466 0.00 2019-10-13 02:13:39 2019-10-13 02:15:16 t 1 1 119030 466 0.00 2019-10-13 02:15:16 2019-10-13 02:18:16 t 1 1 119031 466 0.00 2019-10-13 02:18:16 2019-10-13 02:19:48 t 1 1 119036 466 0.00 2019-10-13 02:23:02 2019-10-13 02:28:21 t 1 1 119037 558 0.00 2019-10-13 02:21:50 2019-10-13 02:29:16 t 1 1 119041 466 0.00 2019-10-13 02:37:04 2019-10-13 02:45:27 t 1 1 119044 516 0.00 2019-10-13 02:53:48 2019-10-13 02:57:36 t 1 1 119052 445 0.00 2019-10-13 00:33:28 2019-10-13 04:06:56 t 1 1 119057 520 0.00 2019-10-13 04:40:44 2019-10-13 04:45:43 t 1 1 119060 520 0.00 2019-10-13 04:56:44 2019-10-13 05:03:40 t 1 1 119064 520 0.00 2019-10-13 05:16:00 2019-10-13 05:18:09 t 1 1 119067 445 0.00 2019-10-13 05:32:29 2019-10-13 05:40:59 t 1 1 119070 520 0.00 2019-10-13 05:52:21 2019-10-13 05:53:12 t 1 1 119071 520 0.00 2019-10-13 05:53:12 2019-10-13 05:54:21 t 1 1 119073 516 0.00 2019-10-13 03:40:37 2019-10-13 06:04:33 t 1 1 119075 520 0.00 2019-10-13 06:09:45 2019-10-13 06:10:31 t 1 1 119078 520 0.00 2019-10-13 06:10:30 2019-10-13 06:20:05 t 1 1 119081 520 0.00 2019-10-13 06:23:10 2019-10-13 06:25:50 t 1 1 119084 476 0.00 2019-10-13 06:26:03 2019-10-13 06:41:08 t 1 2 119086 379 0.00 2019-10-12 17:13:47 2019-10-13 06:54:58 t 1 1 119087 476 0.00 2019-10-13 06:49:46 2019-10-13 06:57:37 t 1 2 119088 445 0.00 2019-10-13 06:40:59 2019-10-13 06:58:11 t 1 1 119095 516 0.00 2019-10-13 07:31:42 2019-10-13 07:35:27 t 1 1 119096 456 0.00 2019-10-13 07:34:26 2019-10-13 07:36:33 t 1 1 119100 520 0.00 2019-10-13 07:51:45 2019-10-13 07:53:55 t 1 1 119106 481 0.00 2019-10-13 08:05:58 2019-10-13 08:20:52 t 1 1 119107 306 0.00 2019-10-13 08:19:32 2019-10-13 08:21:46 t 1 1 119108 445 0.00 2019-10-13 08:17:01 2019-10-13 08:27:12 t 1 1 119110 461 0.00 2019-10-13 08:30:47 2019-10-13 08:30:47 f 1 2 119112 516 0.00 2019-10-13 08:24:05 2019-10-13 08:35:03 t 1 1 119115 501 0.00 2019-10-13 08:45:13 2019-10-13 08:45:52 t 1 1 119116 501 0.00 2019-10-13 08:45:58 2019-10-13 08:46:24 t 1 1 119120 501 0.00 2019-10-13 08:49:28 2019-10-13 08:49:35 t 1 1 119123 306 0.00 2019-10-13 08:49:08 2019-10-13 08:52:18 t 1 1 119127 501 0.00 2019-10-13 08:55:30 2019-10-13 08:55:38 t 1 1 119138 501 0.00 2019-10-13 09:04:35 2019-10-13 09:04:44 t 1 1 119141 526 0.00 2019-10-13 09:04:55 2019-10-13 09:06:00 t 1 1 119143 501 0.00 2019-10-13 09:07:36 2019-10-13 09:07:43 t 1 1 119144 501 0.00 2019-10-13 09:07:49 2019-10-13 09:07:57 t 1 1 119146 501 0.00 2019-10-13 09:08:36 2019-10-13 09:08:44 t 1 1 119147 501 0.00 2019-10-13 09:09:39 2019-10-13 09:09:48 t 1 1 119149 501 0.00 2019-10-13 09:10:37 2019-10-13 09:10:38 t 1 1 119155 220 0.00 2019-10-13 09:20:15 2019-10-13 09:20:51 t 1 1 119156 220 0.00 2019-10-13 09:20:59 2019-10-13 09:21:00 t 1 1 119157 501 0.00 2019-10-13 09:22:11 2019-10-13 09:22:20 t 1 1 119160 501 0.00 2019-10-13 09:23:52 2019-10-13 09:24:28 t 1 1 119164 501 0.00 2019-10-13 09:27:14 2019-10-13 09:27:22 t 1 1 119166 538 0.00 2019-10-13 09:23:16 2019-10-13 09:30:30 t 1 1 119170 528 0.00 2019-10-13 09:02:31 2019-10-13 09:34:12 t 1 1 119171 501 0.00 2019-10-13 09:28:14 2019-10-13 09:34:43 t 1 1 119175 501 0.00 2019-10-13 09:36:46 2019-10-13 09:36:54 t 1 1 119178 220 0.00 2019-10-13 09:39:15 2019-10-13 09:39:23 t 1 1 119182 501 0.00 2019-10-13 09:42:02 2019-10-13 09:42:11 t 1 1 119186 327 0.00 2019-10-13 08:27:23 2019-10-13 09:49:07 t 1 1 119190 528 0.00 2019-10-13 09:34:12 2019-10-13 09:50:40 t 1 1 119192 528 0.00 2019-10-13 09:54:41 2019-10-13 09:55:15 t 1 1 119195 445 0.00 2019-10-13 09:49:59 2019-10-13 10:01:55 t 1 1 119196 470 0.00 2019-10-13 10:01:36 2019-10-13 10:02:56 t 1 1 119198 306 0.00 2019-10-13 10:08:05 2019-10-13 10:09:08 t 1 1 119200 501 0.00 2019-10-13 10:09:07 2019-10-13 10:13:48 t 1 1 119202 501 0.00 2019-10-13 10:14:51 2019-10-13 10:14:59 t 1 1 119203 470 0.00 2019-10-13 10:03:43 2019-10-13 10:16:04 t 1 1 119208 501 0.00 2019-10-13 10:19:39 2019-10-13 10:22:55 t 1 1 119211 501 0.00 2019-10-13 10:23:58 2019-10-13 10:24:18 t 1 1 119213 416 0.00 2019-10-13 09:46:47 2019-10-13 10:25:02 t 1 1 119215 501 0.00 2019-10-13 10:24:58 2019-10-13 10:25:41 t 1 1 119221 501 0.00 2019-10-13 10:29:15 2019-10-13 10:30:00 t 1 1 119222 501 0.00 2019-10-13 10:31:03 2019-10-13 10:31:36 t 1 1 119225 416 0.00 2019-10-13 10:26:13 2019-10-13 10:34:30 t 1 1 119236 445 0.00 2019-10-13 10:48:21 2019-10-13 10:51:04 t 1 1 119238 501 0.00 2019-10-13 10:51:52 2019-10-13 10:53:15 t 1 1 119241 470 0.00 2019-10-13 10:16:04 2019-10-13 10:55:01 t 1 1 119242 501 0.00 2019-10-13 10:55:17 2019-10-13 10:55:25 t 1 1 119247 501 0.00 2019-10-13 11:00:22 2019-10-13 11:00:30 t 1 1 119248 220 0.00 2019-10-13 11:03:08 2019-10-13 11:03:17 t 1 1 119251 501 0.00 2019-10-13 11:05:31 2019-10-13 11:05:39 t 1 1 119255 327 0.00 2019-10-13 11:07:56 2019-10-13 11:11:08 t 1 1 119258 220 0.00 2019-10-13 11:14:09 2019-10-13 11:14:17 t 1 1 119260 501 0.00 2019-10-13 11:15:42 2019-10-13 11:16:15 t 1 1 119265 501 0.00 2019-10-13 11:19:53 2019-10-13 11:20:00 t 1 1 119266 512 0.00 2019-10-13 10:36:44 2019-10-13 11:20:56 t 1 1 119269 306 0.00 2019-10-13 11:21:29 2019-10-13 11:22:25 t 1 1 119273 501 0.00 2019-10-13 11:24:04 2019-10-13 11:24:48 t 1 1 119276 501 0.00 2019-10-13 11:25:30 2019-10-13 11:25:38 t 1 1 119277 220 0.00 2019-10-13 11:25:08 2019-10-13 11:26:08 t 1 1 119278 220 0.00 2019-10-13 11:26:08 2019-10-13 11:26:41 t 1 1 119280 501 0.00 2019-10-13 11:26:22 2019-10-13 11:26:55 t 1 1 119283 445 0.00 2019-10-13 10:51:03 2019-10-13 11:27:24 t 1 1 119284 220 0.00 2019-10-13 11:27:13 2019-10-13 11:27:48 t 1 1 119285 220 0.00 2019-10-13 11:27:48 2019-10-13 11:28:22 t 1 1 119286 220 0.00 2019-10-13 11:28:22 2019-10-13 11:28:57 t 1 1 119289 220 0.00 2019-10-13 11:28:57 2019-10-13 11:29:32 t 1 1 119291 501 0.00 2019-10-13 11:30:25 2019-10-13 11:30:34 t 1 1 119298 501 0.00 2019-10-13 11:32:27 2019-10-13 11:32:35 t 1 1 119304 220 0.00 2019-10-13 11:34:18 2019-10-13 11:34:52 t 1 1 119305 220 0.00 2019-10-13 11:34:52 2019-10-13 11:35:24 t 1 1 119307 501 0.00 2019-10-13 11:35:28 2019-10-13 11:35:35 t 1 1 119310 512 0.00 2019-10-13 11:21:37 2019-10-13 11:37:08 t 1 1 119313 481 0.00 2019-10-13 09:49:25 2019-10-13 11:38:20 t 1 1 119315 445 0.00 2019-10-13 11:37:26 2019-10-13 11:39:02 t 1 1 119319 220 0.00 2019-10-13 11:37:00 2019-10-13 11:40:32 t 1 1 119320 501 0.00 2019-10-13 11:40:53 2019-10-13 11:41:03 t 1 1 119324 220 0.00 2019-10-13 11:41:42 2019-10-13 11:42:13 t 1 1 119330 220 0.00 2019-10-13 11:43:45 2019-10-13 11:45:10 t 1 1 119018 466 0.00 2019-10-13 01:50:51 2019-10-13 01:57:46 t 1 1 119019 468 0.00 2019-10-13 01:18:42 2019-10-13 02:02:51 t 1 1 119020 466 0.00 2019-10-13 01:57:46 2019-10-13 02:05:42 t 1 1 119021 558 0.00 2019-10-13 01:57:49 2019-10-13 02:06:35 t 1 1 119022 422 0.00 2019-10-13 01:50:26 2019-10-13 02:07:18 t 1 1 119023 466 0.00 2019-10-13 02:05:42 2019-10-13 02:08:12 t 1 1 119025 466 0.00 2019-10-13 02:09:57 2019-10-13 02:12:01 t 1 1 119026 558 0.00 2019-10-13 02:06:35 2019-10-13 02:12:45 t 1 1 119029 468 0.00 2019-10-13 02:02:51 2019-10-13 02:15:22 t 1 1 119032 466 0.00 2019-10-13 02:19:48 2019-10-13 02:21:31 t 1 1 119033 558 0.00 2019-10-13 02:12:45 2019-10-13 02:21:50 t 1 1 119034 466 0.00 2019-10-13 02:21:31 2019-10-13 02:23:02 t 1 1 119038 558 0.00 2019-10-13 02:32:19 2019-10-13 02:34:47 t 1 1 119040 422 0.00 2019-10-13 02:23:08 2019-10-13 02:39:20 t 1 1 119042 466 0.00 2019-10-13 02:45:27 2019-10-13 02:50:19 t 1 1 119048 422 0.00 2019-10-13 02:57:09 2019-10-13 03:13:26 t 1 1 119051 516 0.00 2019-10-13 03:36:54 2019-10-13 03:40:37 t 1 1 119053 445 0.00 2019-10-13 04:06:55 2019-10-13 04:15:45 t 1 1 119054 445 0.00 2019-10-13 04:15:45 2019-10-13 04:19:29 t 1 1 119055 520 0.00 2019-10-13 04:29:27 2019-10-13 04:30:59 t 1 1 119058 520 0.00 2019-10-13 04:45:46 2019-10-13 04:54:46 t 1 1 119061 520 0.00 2019-10-13 05:05:45 2019-10-13 05:06:47 t 1 1 119062 520 0.00 2019-10-13 05:06:47 2019-10-13 05:08:42 t 1 1 119068 445 0.00 2019-10-13 05:40:59 2019-10-13 05:48:29 t 1 1 119074 520 0.00 2019-10-13 06:01:52 2019-10-13 06:09:42 t 1 1 119080 461 0.00 2019-10-13 06:25:40 2019-10-13 06:25:40 f 1 2 119083 445 0.00 2019-10-13 05:48:29 2019-10-13 06:40:59 t 1 1 119092 445 0.00 2019-10-13 06:58:11 2019-10-13 07:18:17 t 1 1 119094 306 0.00 2019-10-13 07:18:39 2019-10-13 07:32:59 t 1 1 119098 306 0.00 2019-10-13 07:40:04 2019-10-13 07:41:17 t 1 1 119101 520 0.00 2019-10-13 07:53:54 2019-10-13 07:55:14 t 1 1 119104 481 0.00 2019-10-13 07:46:17 2019-10-13 08:05:58 t 1 1 119105 445 0.00 2019-10-13 07:29:28 2019-10-13 08:17:01 t 1 1 119109 325 0.00 2019-10-13 07:48:51 2019-10-13 08:28:36 t 1 2 119113 466 0.00 2019-10-13 07:56:02 2019-10-13 08:38:17 t 1 1 119114 306 0.00 2019-10-13 08:41:09 2019-10-13 08:43:49 t 1 1 119121 501 0.00 2019-10-13 08:50:28 2019-10-13 08:50:35 t 1 1 119122 501 0.00 2019-10-13 08:51:34 2019-10-13 08:51:57 t 1 1 119128 518 0.00 2019-10-13 08:20:40 2019-10-13 08:55:45 t 1 2 119129 501 0.00 2019-10-13 08:56:31 2019-10-13 08:56:39 t 1 1 119130 501 0.00 2019-10-13 08:57:32 2019-10-13 08:57:40 t 1 1 119131 501 0.00 2019-10-13 08:58:32 2019-10-13 08:58:39 t 1 1 119132 501 0.00 2019-10-13 08:59:32 2019-10-13 08:59:39 t 1 1 119135 501 0.00 2019-10-13 09:01:47 2019-10-13 09:01:49 t 1 1 119140 501 0.00 2019-10-13 09:05:43 2019-10-13 09:05:52 t 1 1 119145 395 0.00 2019-10-13 09:07:25 2019-10-13 09:08:28 t 1 2 119148 501 0.00 2019-10-13 09:09:54 2019-10-13 09:10:02 t 1 1 119161 501 0.00 2019-10-13 09:25:13 2019-10-13 09:25:21 t 1 1 119162 306 0.00 2019-10-13 09:13:28 2019-10-13 09:26:36 t 1 1 119167 466 0.00 2019-10-13 08:38:17 2019-10-13 09:30:34 t 1 1 119172 526 0.00 2019-10-13 09:34:23 2019-10-13 09:34:55 t 1 1 119174 395 0.00 2019-10-13 09:31:01 2019-10-13 09:36:41 t 1 2 119177 445 0.00 2019-10-13 09:31:44 2019-10-13 09:38:58 t 1 1 119179 501 0.00 2019-10-13 09:37:05 2019-10-13 09:39:52 t 1 1 119180 466 0.00 2019-10-13 09:30:34 2019-10-13 09:40:23 t 1 1 119183 445 0.00 2019-10-13 09:41:53 2019-10-13 09:43:25 t 1 1 119187 481 0.00 2019-10-13 08:20:52 2019-10-13 09:49:19 t 1 1 119188 220 0.00 2019-10-13 09:49:43 2019-10-13 09:49:52 t 1 1 119189 445 0.00 2019-10-13 09:43:24 2019-10-13 09:49:59 t 1 1 119197 528 0.00 2019-10-13 10:05:01 2019-10-13 10:05:31 t 1 1 119199 220 0.00 2019-10-13 10:10:43 2019-10-13 10:10:50 t 1 1 119204 445 0.00 2019-10-13 10:02:05 2019-10-13 10:17:59 t 1 1 119207 220 0.00 2019-10-13 10:21:11 2019-10-13 10:21:19 t 1 1 119209 372 0.00 2019-10-13 10:09:02 2019-10-13 10:24:08 t 1 2 119217 501 0.00 2019-10-13 10:26:59 2019-10-13 10:27:38 t 1 1 119218 501 0.00 2019-10-13 10:27:43 2019-10-13 10:28:22 t 1 1 119227 528 0.00 2019-10-13 10:19:24 2019-10-13 10:40:09 t 1 1 119228 456 0.00 2019-10-13 10:36:11 2019-10-13 10:41:15 t 1 1 119229 220 0.00 2019-10-13 10:42:09 2019-10-13 10:42:17 t 1 1 119232 445 0.00 2019-10-13 10:25:39 2019-10-13 10:48:21 t 1 1 119234 501 0.00 2019-10-13 10:49:59 2019-10-13 10:50:13 t 1 1 119235 501 0.00 2019-10-13 10:50:53 2019-10-13 10:51:01 t 1 1 119237 220 0.00 2019-10-13 10:52:38 2019-10-13 10:52:47 t 1 1 119239 538 0.00 2019-10-13 09:45:50 2019-10-13 10:53:50 t 1 1 119240 501 0.00 2019-10-13 10:54:17 2019-10-13 10:54:24 t 1 1 119243 501 0.00 2019-10-13 10:57:33 2019-10-13 10:57:45 t 1 1 119249 501 0.00 2019-10-13 11:01:22 2019-10-13 11:03:28 t 1 1 119250 501 0.00 2019-10-13 11:04:35 2019-10-13 11:04:50 t 1 1 119252 416 0.00 2019-10-13 10:34:29 2019-10-13 11:05:45 t 1 1 119253 538 0.00 2019-10-13 10:54:28 2019-10-13 11:06:14 t 1 1 119254 501 0.00 2019-10-13 11:06:30 2019-10-13 11:07:33 t 1 1 119256 220 0.00 2019-10-13 11:13:38 2019-10-13 11:13:46 t 1 1 119257 220 0.00 2019-10-13 11:13:53 2019-10-13 11:14:01 t 1 1 119259 501 0.00 2019-10-13 11:08:35 2019-10-13 11:14:36 t 1 1 119270 501 0.00 2019-10-13 11:23:19 2019-10-13 11:23:58 t 1 1 119271 220 0.00 2019-10-13 11:21:51 2019-10-13 11:24:39 t 1 1 119274 220 0.00 2019-10-13 11:24:54 2019-10-13 11:25:01 t 1 1 119275 501 0.00 2019-10-13 11:25:22 2019-10-13 11:25:23 t 1 1 119281 220 0.00 2019-10-13 11:26:50 2019-10-13 11:27:13 t 1 1 119290 220 0.00 2019-10-13 11:29:31 2019-10-13 11:30:05 t 1 1 119294 501 0.00 2019-10-13 11:31:26 2019-10-13 11:31:34 t 1 1 119296 220 0.00 2019-10-13 11:31:09 2019-10-13 11:31:52 t 1 1 119297 220 0.00 2019-10-13 11:31:52 2019-10-13 11:32:26 t 1 1 119301 501 0.00 2019-10-13 11:33:27 2019-10-13 11:33:36 t 1 1 119303 501 0.00 2019-10-13 11:34:26 2019-10-13 11:34:34 t 1 1 119308 220 0.00 2019-10-13 11:36:14 2019-10-13 11:36:21 t 1 1 119311 538 0.00 2019-10-13 11:05:19 2019-10-13 11:37:14 t 1 1 119314 501 0.00 2019-10-13 11:36:27 2019-10-13 11:38:51 t 1 1 119317 445 0.00 2019-10-13 11:39:11 2019-10-13 11:40:11 t 1 1 119318 470 0.00 2019-10-13 10:55:01 2019-10-13 11:40:21 t 1 1 119323 416 0.00 2019-10-13 11:21:24 2019-10-13 11:42:03 t 1 1 119327 445 0.00 2019-10-13 11:40:17 2019-10-13 11:43:40 t 1 1 119328 220 0.00 2019-10-13 11:42:13 2019-10-13 11:43:45 t 1 1 119331 456 0.00 2019-10-13 11:41:16 2019-10-13 11:45:32 t 1 1 119334 220 0.00 2019-10-13 11:46:26 2019-10-13 11:47:32 t 1 1 119335 501 0.00 2019-10-13 11:47:58 2019-10-13 11:48:07 t 1 1 119340 220 0.00 2019-10-13 11:49:49 2019-10-13 11:50:45 t 1 1 119039 466 0.00 2019-10-13 02:28:21 2019-10-13 02:37:03 t 1 1 119043 422 0.00 2019-10-13 02:39:20 2019-10-13 02:57:09 t 1 1 119045 466 0.00 2019-10-13 02:50:19 2019-10-13 02:59:35 t 1 1 119046 516 0.00 2019-10-13 02:57:37 2019-10-13 03:02:37 t 1 1 119047 558 0.00 2019-10-13 03:09:59 2019-10-13 03:10:26 t 1 1 119049 466 0.00 2019-10-13 02:59:35 2019-10-13 03:13:57 t 1 1 119050 516 0.00 2019-10-13 03:32:31 2019-10-13 03:36:54 t 1 1 119056 520 0.00 2019-10-13 04:30:59 2019-10-13 04:40:45 t 1 1 119059 520 0.00 2019-10-13 04:54:46 2019-10-13 04:56:44 t 1 1 119063 520 0.00 2019-10-13 05:09:44 2019-10-13 05:16:00 t 1 1 119065 520 0.00 2019-10-13 05:18:09 2019-10-13 05:19:59 t 1 1 119066 445 0.00 2019-10-13 04:19:29 2019-10-13 05:32:29 t 1 1 119069 520 0.00 2019-10-13 05:19:58 2019-10-13 05:52:21 t 1 1 119072 520 0.00 2019-10-13 05:54:20 2019-10-13 06:01:53 t 1 1 119076 558 0.00 2019-10-13 03:52:30 2019-10-13 06:11:32 t 1 1 119077 516 0.00 2019-10-13 06:16:02 2019-10-13 06:19:10 t 1 1 119079 520 0.00 2019-10-13 06:20:05 2019-10-13 06:23:10 t 1 1 119082 520 0.00 2019-10-13 06:25:50 2019-10-13 06:28:35 t 1 1 119085 516 0.00 2019-10-13 06:47:36 2019-10-13 06:49:27 t 1 1 119089 412 0.00 2019-10-13 00:53:22 2019-10-13 06:58:36 t 1 1 119090 476 0.00 2019-10-13 06:58:09 2019-10-13 07:08:14 t 1 2 119091 306 0.00 2019-10-13 07:06:58 2019-10-13 07:17:08 t 1 1 119093 445 0.00 2019-10-13 07:18:24 2019-10-13 07:29:28 t 1 1 119097 306 0.00 2019-10-13 07:35:42 2019-10-13 07:37:28 t 1 1 119099 456 0.00 2019-10-13 07:40:41 2019-10-13 07:46:09 t 1 1 119102 306 0.00 2019-10-13 07:55:19 2019-10-13 07:56:10 t 1 1 119103 558 0.00 2019-10-13 06:12:06 2019-10-13 08:03:29 t 1 1 119111 416 0.00 2019-10-12 23:28:59 2019-10-13 08:31:19 t 1 1 119117 501 0.00 2019-10-13 08:46:30 2019-10-13 08:46:38 t 1 1 119118 501 0.00 2019-10-13 08:47:27 2019-10-13 08:47:35 t 1 1 119119 501 0.00 2019-10-13 08:48:27 2019-10-13 08:48:34 t 1 1 119124 501 0.00 2019-10-13 08:52:28 2019-10-13 08:52:36 t 1 1 119125 501 0.00 2019-10-13 08:53:29 2019-10-13 08:53:37 t 1 1 119126 501 0.00 2019-10-13 08:54:30 2019-10-13 08:54:38 t 1 1 119133 501 0.00 2019-10-13 09:00:33 2019-10-13 09:00:48 t 1 1 119134 501 0.00 2019-10-13 09:01:33 2019-10-13 09:01:41 t 1 1 119136 501 0.00 2019-10-13 09:02:34 2019-10-13 09:02:43 t 1 1 119137 501 0.00 2019-10-13 09:03:34 2019-10-13 09:03:41 t 1 1 119139 501 0.00 2019-10-13 09:05:35 2019-10-13 09:05:37 t 1 1 119142 501 0.00 2019-10-13 09:06:36 2019-10-13 09:06:44 t 1 1 119150 501 0.00 2019-10-13 09:10:44 2019-10-13 09:10:52 t 1 1 119151 501 0.00 2019-10-13 09:11:38 2019-10-13 09:11:39 t 1 1 119152 306 0.00 2019-10-13 09:04:16 2019-10-13 09:12:31 t 1 1 119153 501 0.00 2019-10-13 09:12:06 2019-10-13 09:15:05 t 1 1 119154 220 0.00 2019-10-13 09:17:52 2019-10-13 09:20:15 t 1 1 119158 501 0.00 2019-10-13 09:22:29 2019-10-13 09:22:30 t 1 1 119159 501 0.00 2019-10-13 09:22:48 2019-10-13 09:23:16 t 1 1 119163 501 0.00 2019-10-13 09:26:12 2019-10-13 09:26:47 t 1 1 119165 220 0.00 2019-10-13 09:28:46 2019-10-13 09:29:05 t 1 1 119168 445 0.00 2019-10-13 08:27:12 2019-10-13 09:31:03 t 1 1 119169 538 0.00 2019-10-13 09:29:35 2019-10-13 09:32:53 t 1 1 119173 501 0.00 2019-10-13 09:35:46 2019-10-13 09:35:54 t 1 1 119176 220 0.00 2019-10-13 09:37:28 2019-10-13 09:38:16 t 1 1 119181 501 0.00 2019-10-13 09:40:55 2019-10-13 09:41:03 t 1 1 119184 416 0.00 2019-10-13 08:31:19 2019-10-13 09:45:17 t 1 1 119185 538 0.00 2019-10-13 09:32:58 2019-10-13 09:46:46 t 1 1 119191 501 0.00 2019-10-13 09:42:24 2019-10-13 09:54:23 t 1 1 119193 220 0.00 2019-10-13 10:00:14 2019-10-13 10:00:22 t 1 1 119194 470 0.00 2019-10-13 09:47:17 2019-10-13 10:01:36 t 1 1 119201 528 0.00 2019-10-13 10:13:37 2019-10-13 10:14:11 t 1 1 119205 512 0.00 2019-10-13 09:27:21 2019-10-13 10:17:59 t 1 1 119206 501 0.00 2019-10-13 10:15:10 2019-10-13 10:19:15 t 1 1 119210 498 0.00 2019-10-13 09:47:54 2019-10-13 10:24:13 t 1 2 119212 445 0.00 2019-10-13 10:18:04 2019-10-13 10:24:29 t 1 1 119214 445 0.00 2019-10-13 10:24:29 2019-10-13 10:25:39 t 1 1 119216 501 0.00 2019-10-13 10:25:47 2019-10-13 10:25:56 t 1 1 119219 466 0.00 2019-10-13 09:40:23 2019-10-13 10:28:45 t 1 1 119220 501 0.00 2019-10-13 10:29:01 2019-10-13 10:29:02 t 1 1 119223 220 0.00 2019-10-13 10:31:40 2019-10-13 10:31:48 t 1 1 119224 512 0.00 2019-10-13 10:21:02 2019-10-13 10:32:46 t 1 1 119226 556 0.00 2019-10-12 23:37:06 2019-10-13 10:36:15 t 1 1 119230 528 0.00 2019-10-13 10:40:09 2019-10-13 10:44:14 t 1 1 119231 306 0.00 2019-10-13 10:43:54 2019-10-13 10:48:00 t 1 1 119233 501 0.00 2019-10-13 10:32:01 2019-10-13 10:48:50 t 1 1 119244 306 0.00 2019-10-13 10:55:19 2019-10-13 10:57:54 t 1 1 119245 501 0.00 2019-10-13 10:58:19 2019-10-13 10:58:26 t 1 1 119246 501 0.00 2019-10-13 10:59:02 2019-10-13 10:59:36 t 1 1 119261 501 0.00 2019-10-13 11:16:37 2019-10-13 11:16:44 t 1 1 119262 501 0.00 2019-10-13 11:17:36 2019-10-13 11:17:45 t 1 1 119263 501 0.00 2019-10-13 11:18:38 2019-10-13 11:18:46 t 1 1 119264 501 0.00 2019-10-13 11:19:38 2019-10-13 11:19:46 t 1 1 119267 416 0.00 2019-10-13 11:05:45 2019-10-13 11:21:24 t 1 1 119268 501 0.00 2019-10-13 11:20:39 2019-10-13 11:22:17 t 1 1 119272 220 0.00 2019-10-13 11:24:39 2019-10-13 11:24:47 t 1 1 119279 220 0.00 2019-10-13 11:26:41 2019-10-13 11:26:50 t 1 1 119282 501 0.00 2019-10-13 11:27:01 2019-10-13 11:27:19 t 1 1 119287 501 0.00 2019-10-13 11:28:24 2019-10-13 11:28:59 t 1 1 119288 501 0.00 2019-10-13 11:29:24 2019-10-13 11:29:32 t 1 1 119292 220 0.00 2019-10-13 11:30:05 2019-10-13 11:30:36 t 1 1 119293 220 0.00 2019-10-13 11:30:36 2019-10-13 11:31:09 t 1 1 119295 445 0.00 2019-10-13 11:27:34 2019-10-13 11:31:39 t 1 1 119299 501 0.00 2019-10-13 11:32:41 2019-10-13 11:32:50 t 1 1 119300 220 0.00 2019-10-13 11:32:26 2019-10-13 11:33:00 t 1 1 119302 220 0.00 2019-10-13 11:32:59 2019-10-13 11:34:18 t 1 1 119306 220 0.00 2019-10-13 11:35:23 2019-10-13 11:35:32 t 1 1 119309 220 0.00 2019-10-13 11:36:21 2019-10-13 11:37:00 t 1 1 119312 445 0.00 2019-10-13 11:35:02 2019-10-13 11:37:19 t 1 1 119316 501 0.00 2019-10-13 11:39:54 2019-10-13 11:40:01 t 1 1 119321 220 0.00 2019-10-13 11:40:32 2019-10-13 11:41:05 t 1 1 119322 220 0.00 2019-10-13 11:41:05 2019-10-13 11:41:43 t 1 1 119325 501 0.00 2019-10-13 11:42:15 2019-10-13 11:42:51 t 1 1 119326 501 0.00 2019-10-13 11:42:59 2019-10-13 11:43:01 t 1 1 119329 470 0.00 2019-10-13 11:40:21 2019-10-13 11:44:34 t 1 1 119333 220 0.00 2019-10-13 11:45:53 2019-10-13 11:46:08 t 1 1 119337 220 0.00 2019-10-13 11:48:27 2019-10-13 11:48:31 t 1 1 119339 220 0.00 2019-10-13 11:49:15 2019-10-13 11:49:49 t 1 1 119348 220 0.00 2019-10-13 11:55:54 2019-10-13 11:56:23 t 1 1 119332 220 0.00 2019-10-13 11:45:10 2019-10-13 11:45:53 t 1 1 119336 220 0.00 2019-10-13 11:47:32 2019-10-13 11:48:28 t 1 1 119338 220 0.00 2019-10-13 11:48:31 2019-10-13 11:49:15 t 1 1 119341 306 0.00 2019-10-13 11:49:08 2019-10-13 11:51:04 t 1 1 119342 456 0.00 2019-10-13 11:46:50 2019-10-13 11:53:06 t 1 1 119344 220 0.00 2019-10-13 11:50:45 2019-10-13 11:53:38 t 1 1 119345 220 0.00 2019-10-13 11:53:38 2019-10-13 11:53:57 t 1 1 119347 501 0.00 2019-10-13 11:50:29 2019-10-13 11:56:01 t 1 1 119351 220 0.00 2019-10-13 11:57:00 2019-10-13 11:57:08 t 1 1 119355 220 0.00 2019-10-13 11:57:32 2019-10-13 11:58:23 t 1 1 119356 501 0.00 2019-10-13 11:59:05 2019-10-13 11:59:19 t 1 1 119365 220 0.00 2019-10-13 12:02:28 2019-10-13 12:03:10 t 1 1 119370 220 0.00 2019-10-13 12:07:29 2019-10-13 12:07:35 t 1 1 119371 220 0.00 2019-10-13 12:07:35 2019-10-13 12:08:07 t 1 1 119373 220 0.00 2019-10-13 12:08:07 2019-10-13 12:08:32 t 1 1 119386 220 0.00 2019-10-13 12:18:37 2019-10-13 12:18:45 t 1 1 119387 501 0.00 2019-10-13 12:18:50 2019-10-13 12:19:04 t 1 1 119391 501 0.00 2019-10-13 12:20:17 2019-10-13 12:24:43 t 1 1 119395 501 0.00 2019-10-13 12:26:24 2019-10-13 12:27:01 t 1 1 119398 306 0.00 2019-10-13 12:23:33 2019-10-13 12:28:39 t 1 1 119401 220 0.00 2019-10-13 12:29:06 2019-10-13 12:29:14 t 1 1 119403 538 0.00 2019-10-13 12:28:14 2019-10-13 12:29:26 t 1 1 119406 501 0.00 2019-10-13 12:29:49 2019-10-13 12:34:48 t 1 1 119411 501 0.00 2019-10-13 12:37:11 2019-10-13 12:37:49 t 1 1 119414 501 0.00 2019-10-13 12:37:58 2019-10-13 12:39:58 t 1 1 119417 501 0.00 2019-10-13 12:41:12 2019-10-13 12:41:22 t 1 1 119418 408 0.00 2019-10-13 12:40:19 2019-10-13 12:42:26 t 1 1 119420 306 0.00 2019-10-13 12:41:25 2019-10-13 12:43:18 t 1 1 119424 416 0.00 2019-10-13 12:37:04 2019-10-13 12:48:46 t 1 1 119427 220 0.00 2019-10-13 12:50:13 2019-10-13 12:50:29 t 1 1 119433 501 0.00 2019-10-13 12:53:55 2019-10-13 12:55:35 t 1 1 119434 501 0.00 2019-10-13 12:56:37 2019-10-13 12:56:45 t 1 1 119436 501 0.00 2019-10-13 12:58:30 2019-10-13 12:58:38 t 1 1 119438 501 0.00 2019-10-13 13:01:14 2019-10-13 13:01:39 t 1 1 119442 501 0.00 2019-10-13 13:02:11 2019-10-13 13:02:40 t 1 1 119445 501 0.00 2019-10-13 13:04:45 2019-10-13 13:05:21 t 1 1 119448 445 0.00 2019-10-13 12:16:03 2019-10-13 13:06:19 t 1 1 119456 528 0.00 2019-10-13 13:09:51 2019-10-13 13:10:52 t 1 1 119460 501 0.00 2019-10-13 13:12:01 2019-10-13 13:12:09 t 1 1 119463 501 0.00 2019-10-13 13:12:22 2019-10-13 13:12:30 t 1 1 119464 501 0.00 2019-10-13 13:13:14 2019-10-13 13:13:15 t 1 1 119467 501 0.00 2019-10-13 13:14:46 2019-10-13 13:14:53 t 1 1 119469 445 0.00 2019-10-13 13:12:18 2019-10-13 13:15:44 t 1 1 119471 501 0.00 2019-10-13 13:16:29 2019-10-13 13:16:36 t 1 1 119473 501 0.00 2019-10-13 13:16:55 2019-10-13 13:17:22 t 1 1 119481 220 0.00 2019-10-13 13:21:33 2019-10-13 13:21:50 t 1 1 119482 456 0.00 2019-10-13 13:17:18 2019-10-13 13:22:35 t 1 1 119484 501 0.00 2019-10-13 13:22:19 2019-10-13 13:23:02 t 1 1 119485 501 0.00 2019-10-13 13:23:08 2019-10-13 13:23:17 t 1 1 119490 501 0.00 2019-10-13 13:26:20 2019-10-13 13:26:54 t 1 1 119491 501 0.00 2019-10-13 13:27:21 2019-10-13 13:27:28 t 1 1 119495 501 0.00 2019-10-13 13:27:39 2019-10-13 13:31:50 t 1 1 119496 220 0.00 2019-10-13 13:32:02 2019-10-13 13:32:17 t 1 1 119497 501 0.00 2019-10-13 13:32:53 2019-10-13 13:33:29 t 1 1 119499 512 0.00 2019-10-13 13:03:11 2019-10-13 13:36:52 t 1 1 119500 451 0.00 2019-10-13 13:25:47 2019-10-13 13:36:58 t 1 1 119504 501 0.00 2019-10-13 13:37:58 2019-10-13 13:38:31 t 1 1 119508 412 0.00 2019-10-13 13:11:50 2019-10-13 13:39:48 t 1 1 119510 306 0.00 2019-10-13 13:37:07 2019-10-13 13:40:08 t 1 1 119514 306 0.00 2019-10-13 13:40:33 2019-10-13 13:42:14 t 1 1 119516 220 0.00 2019-10-13 13:42:31 2019-10-13 13:43:34 t 1 1 119518 220 0.00 2019-10-13 13:44:19 2019-10-13 13:44:52 t 1 1 119519 501 0.00 2019-10-13 13:43:32 2019-10-13 13:45:43 t 1 1 119525 501 0.00 2019-10-13 13:50:56 2019-10-13 13:51:30 t 1 1 119530 327 0.00 2019-10-13 13:30:22 2019-10-13 13:53:05 t 1 1 119531 545 0.00 2019-10-13 13:54:38 2019-10-13 13:54:58 t 1 1 119539 422 0.00 2019-10-13 13:31:34 2019-10-13 14:05:45 t 1 1 119540 538 0.00 2019-10-13 13:52:17 2019-10-13 14:06:12 t 1 1 119542 528 0.00 2019-10-13 13:52:43 2019-10-13 14:07:18 t 1 1 119544 327 0.00 2019-10-13 13:53:05 2019-10-13 14:10:36 t 1 1 119546 501 0.00 2019-10-13 14:02:25 2019-10-13 14:12:11 t 1 1 119547 422 0.00 2019-10-13 14:05:45 2019-10-13 14:13:30 t 1 1 119548 490 0.00 2019-10-13 14:09:19 2019-10-13 14:14:05 t 1 1 119550 501 0.00 2019-10-13 14:15:47 2019-10-13 14:15:56 t 1 1 119551 501 0.00 2019-10-13 14:16:48 2019-10-13 14:16:50 t 1 1 119552 501 0.00 2019-10-13 14:16:56 2019-10-13 14:17:03 t 1 1 119557 501 0.00 2019-10-13 14:21:45 2019-10-13 14:21:54 t 1 1 119558 220 0.00 2019-10-13 14:22:01 2019-10-13 14:22:10 t 1 1 119561 451 0.00 2019-10-13 14:17:18 2019-10-13 14:23:25 t 1 1 119562 501 0.00 2019-10-13 14:24:58 2019-10-13 14:25:15 t 1 1 119564 501 0.00 2019-10-13 14:25:53 2019-10-13 14:25:55 t 1 1 119571 501 0.00 2019-10-13 14:31:14 2019-10-13 14:31:22 t 1 1 119576 327 0.00 2019-10-13 14:10:36 2019-10-13 14:35:40 t 1 1 119577 528 0.00 2019-10-13 14:26:52 2019-10-13 14:36:56 t 1 1 119582 327 0.00 2019-10-13 14:35:40 2019-10-13 14:48:52 t 1 1 119583 501 0.00 2019-10-13 14:49:44 2019-10-13 14:49:58 t 1 1 119586 470 0.00 2019-10-13 14:28:54 2019-10-13 14:50:58 t 1 1 119587 501 0.00 2019-10-13 14:51:38 2019-10-13 14:53:35 t 1 1 119592 501 0.00 2019-10-13 14:58:03 2019-10-13 14:58:16 t 1 1 119593 327 0.00 2019-10-13 14:49:01 2019-10-13 14:59:14 t 1 1 119595 501 0.00 2019-10-13 15:00:08 2019-10-13 15:00:16 t 1 1 119605 456 0.00 2019-10-13 15:04:43 2019-10-13 15:06:10 t 1 1 119609 247 0.00 2019-10-13 15:07:25 2019-10-13 15:07:25 f 1 2 119613 501 0.00 2019-10-13 15:09:58 2019-10-13 15:10:06 t 1 1 119614 490 0.00 2019-10-13 15:09:49 2019-10-13 15:13:32 t 1 1 119615 220 0.00 2019-10-13 15:05:57 2019-10-13 15:14:43 t 1 1 119617 528 0.00 2019-10-13 15:00:49 2019-10-13 15:16:10 t 1 1 119620 528 0.00 2019-10-13 15:16:10 2019-10-13 15:23:06 t 1 1 119623 220 0.00 2019-10-13 15:25:11 2019-10-13 15:25:19 t 1 1 119627 528 0.00 2019-10-13 15:24:11 2019-10-13 15:26:52 t 1 1 119628 501 0.00 2019-10-13 15:10:58 2019-10-13 15:27:17 t 1 1 119630 501 0.00 2019-10-13 15:29:01 2019-10-13 15:32:25 t 1 1 119637 501 0.00 2019-10-13 15:36:51 2019-10-13 15:37:49 t 1 1 119638 528 0.00 2019-10-13 15:26:58 2019-10-13 15:38:01 t 1 1 119639 520 0.00 2019-10-13 15:18:01 2019-10-13 15:38:51 t 1 1 119645 501 0.00 2019-10-13 15:43:15 2019-10-13 15:44:22 t 1 1 119648 220 0.00 2019-10-13 15:47:07 2019-10-13 15:47:16 t 1 1 119343 516 0.00 2019-10-13 11:43:31 2019-10-13 11:53:22 t 1 1 119346 220 0.00 2019-10-13 11:53:56 2019-10-13 11:55:54 t 1 1 119349 220 0.00 2019-10-13 11:56:23 2019-10-13 11:56:26 t 1 1 119350 220 0.00 2019-10-13 11:56:25 2019-10-13 11:57:00 t 1 1 119354 501 0.00 2019-10-13 11:58:09 2019-10-13 11:58:17 t 1 1 119360 445 0.00 2019-10-13 11:59:27 2019-10-13 12:00:11 t 1 1 119361 538 0.00 2019-10-13 11:37:31 2019-10-13 12:01:02 t 1 1 119362 501 0.00 2019-10-13 11:59:39 2019-10-13 12:02:08 t 1 1 119363 220 0.00 2019-10-13 11:59:46 2019-10-13 12:02:29 t 1 1 119367 220 0.00 2019-10-13 12:03:10 2019-10-13 12:06:16 t 1 1 119369 220 0.00 2019-10-13 12:06:16 2019-10-13 12:07:29 t 1 1 119372 470 0.00 2019-10-13 12:01:23 2019-10-13 12:08:19 t 1 1 119378 516 0.00 2019-10-13 12:06:59 2019-10-13 12:14:37 t 1 1 119379 501 0.00 2019-10-13 12:14:43 2019-10-13 12:14:51 t 1 1 119383 501 0.00 2019-10-13 12:17:39 2019-10-13 12:17:40 t 1 1 119384 220 0.00 2019-10-13 12:08:41 2019-10-13 12:18:38 t 1 1 119388 470 0.00 2019-10-13 12:09:20 2019-10-13 12:19:07 t 1 1 119389 501 0.00 2019-10-13 12:19:37 2019-10-13 12:19:45 t 1 1 119390 327 0.00 2019-10-13 12:03:10 2019-10-13 12:22:20 t 1 1 119393 501 0.00 2019-10-13 12:25:45 2019-10-13 12:25:53 t 1 1 119397 470 0.00 2019-10-13 12:24:50 2019-10-13 12:28:17 t 1 1 119405 220 0.00 2019-10-13 12:29:56 2019-10-13 12:33:27 t 1 1 119407 501 0.00 2019-10-13 12:36:44 2019-10-13 12:36:53 t 1 1 119408 501 0.00 2019-10-13 12:37:01 2019-10-13 12:37:03 t 1 1 119412 306 0.00 2019-10-13 12:35:50 2019-10-13 12:37:54 t 1 1 119415 220 0.00 2019-10-13 12:39:35 2019-10-13 12:40:09 t 1 1 119421 327 0.00 2019-10-13 12:22:20 2019-10-13 12:43:37 t 1 1 119422 470 0.00 2019-10-13 12:29:21 2019-10-13 12:45:40 t 1 1 119423 501 0.00 2019-10-13 12:43:38 2019-10-13 12:46:55 t 1 1 119426 220 0.00 2019-10-13 12:50:04 2019-10-13 12:50:06 t 1 1 119428 501 0.00 2019-10-13 12:49:51 2019-10-13 12:50:30 t 1 1 119429 501 0.00 2019-10-13 12:51:02 2019-10-13 12:51:36 t 1 1 119432 538 0.00 2019-10-13 12:46:15 2019-10-13 12:54:08 t 1 1 119435 501 0.00 2019-10-13 12:57:38 2019-10-13 12:58:25 t 1 1 119437 327 0.00 2019-10-13 12:43:37 2019-10-13 13:00:11 t 1 1 119441 422 0.00 2019-10-13 03:13:26 2019-10-13 13:02:27 t 1 1 119444 501 0.00 2019-10-13 13:03:23 2019-10-13 13:04:06 t 1 1 119446 528 0.00 2019-10-13 13:05:35 2019-10-13 13:06:07 t 1 1 119450 501 0.00 2019-10-13 13:06:46 2019-10-13 13:06:54 t 1 1 119451 220 0.00 2019-10-13 13:07:07 2019-10-13 13:07:21 t 1 1 119453 422 0.00 2019-10-13 13:02:27 2019-10-13 13:09:47 t 1 1 119454 501 0.00 2019-10-13 13:09:29 2019-10-13 13:10:00 t 1 1 119458 501 0.00 2019-10-13 13:11:10 2019-10-13 13:11:18 t 1 1 119462 445 0.00 2019-10-13 13:06:23 2019-10-13 13:12:18 t 1 1 119465 306 0.00 2019-10-13 13:01:36 2019-10-13 13:13:42 t 1 1 119466 501 0.00 2019-10-13 13:14:26 2019-10-13 13:14:40 t 1 1 119468 501 0.00 2019-10-13 13:14:59 2019-10-13 13:15:11 t 1 1 119470 501 0.00 2019-10-13 13:16:15 2019-10-13 13:16:23 t 1 1 119477 501 0.00 2019-10-13 13:19:31 2019-10-13 13:19:38 t 1 1 119479 501 0.00 2019-10-13 13:20:19 2019-10-13 13:20:52 t 1 1 119480 501 0.00 2019-10-13 13:21:19 2019-10-13 13:21:27 t 1 1 119483 416 0.00 2019-10-13 12:48:45 2019-10-13 13:22:37 t 1 1 119486 456 0.00 2019-10-13 13:23:14 2019-10-13 13:24:40 t 1 1 119488 501 0.00 2019-10-13 13:25:20 2019-10-13 13:25:29 t 1 1 119492 528 0.00 2019-10-13 13:25:26 2019-10-13 13:29:05 t 1 1 119493 327 0.00 2019-10-13 13:00:11 2019-10-13 13:30:22 t 1 1 119494 422 0.00 2019-10-13 13:20:32 2019-10-13 13:31:34 t 1 1 119502 470 0.00 2019-10-13 12:54:22 2019-10-13 13:37:10 t 1 1 119507 451 0.00 2019-10-13 13:36:58 2019-10-13 13:39:13 t 1 1 119511 501 0.00 2019-10-13 13:40:59 2019-10-13 13:41:07 t 1 1 119515 501 0.00 2019-10-13 13:42:58 2019-10-13 13:43:06 t 1 1 119520 501 0.00 2019-10-13 13:45:51 2019-10-13 13:47:12 t 1 1 119521 487 0.00 2019-10-13 13:34:17 2019-10-13 13:49:22 t 1 2 119526 528 0.00 2019-10-13 13:39:52 2019-10-13 13:51:32 t 1 1 119527 538 0.00 2019-10-13 13:48:40 2019-10-13 13:52:14 t 1 1 119528 445 0.00 2019-10-13 13:15:47 2019-10-13 13:52:33 t 1 1 119532 501 0.00 2019-10-13 13:52:57 2019-10-13 13:55:24 t 1 1 119533 501 0.00 2019-10-13 13:56:09 2019-10-13 13:56:16 t 1 1 119536 501 0.00 2019-10-13 13:57:08 2019-10-13 14:00:10 t 1 1 119538 501 0.00 2019-10-13 14:01:18 2019-10-13 14:02:19 t 1 1 119541 306 0.00 2019-10-13 14:04:00 2019-10-13 14:06:50 t 1 1 119543 451 0.00 2019-10-13 13:59:52 2019-10-13 14:09:23 t 1 1 119545 220 0.00 2019-10-13 14:11:32 2019-10-13 14:11:40 t 1 1 119553 451 0.00 2019-10-13 14:09:23 2019-10-13 14:17:18 t 1 1 119554 501 0.00 2019-10-13 14:17:48 2019-10-13 14:17:57 t 1 1 119555 501 0.00 2019-10-13 14:19:50 2019-10-13 14:20:22 t 1 1 119556 501 0.00 2019-10-13 14:20:30 2019-10-13 14:21:38 t 1 1 119560 501 0.00 2019-10-13 14:22:46 2019-10-13 14:22:54 t 1 1 119563 501 0.00 2019-10-13 14:23:55 2019-10-13 14:25:22 t 1 1 119568 516 0.00 2019-10-13 14:03:00 2019-10-13 14:29:29 t 1 1 119569 412 0.00 2019-10-13 13:39:48 2019-10-13 14:30:33 t 1 1 119570 501 0.00 2019-10-13 14:30:57 2019-10-13 14:31:05 t 1 1 119573 490 0.00 2019-10-13 14:14:05 2019-10-13 14:32:08 t 1 1 119575 220 0.00 2019-10-13 14:32:46 2019-10-13 14:33:01 t 1 1 119579 220 0.00 2019-10-13 14:43:15 2019-10-13 14:43:24 t 1 1 119585 501 0.00 2019-10-13 14:50:19 2019-10-13 14:50:34 t 1 1 119589 516 0.00 2019-10-13 14:46:57 2019-10-13 14:54:07 t 1 1 119596 528 0.00 2019-10-13 14:36:56 2019-10-13 15:00:49 t 1 1 119597 556 0.00 2019-10-13 10:36:15 2019-10-13 15:00:58 t 1 1 119598 501 0.00 2019-10-13 15:01:08 2019-10-13 15:01:42 t 1 1 119599 501 0.00 2019-10-13 15:02:09 2019-10-13 15:02:10 t 1 1 119601 327 0.00 2019-10-13 14:59:15 2019-10-13 15:03:07 t 1 1 119603 501 0.00 2019-10-13 15:04:12 2019-10-13 15:04:43 t 1 1 119606 501 0.00 2019-10-13 15:06:09 2019-10-13 15:06:17 t 1 1 119608 498 0.00 2019-10-13 14:24:43 2019-10-13 15:07:25 t 1 2 119610 306 0.00 2019-10-13 15:06:31 2019-10-13 15:07:43 t 1 1 119611 501 0.00 2019-10-13 15:06:45 2019-10-13 15:08:56 t 1 1 119612 490 0.00 2019-10-13 15:06:29 2019-10-13 15:09:49 t 1 1 119616 220 0.00 2019-10-13 15:14:42 2019-10-13 15:14:57 t 1 1 119618 306 0.00 2019-10-13 15:17:15 2019-10-13 15:17:51 t 1 1 119621 451 0.00 2019-10-13 15:09:41 2019-10-13 15:24:47 t 1 1 119626 220 0.00 2019-10-13 15:26:09 2019-10-13 15:26:23 t 1 1 119629 501 0.00 2019-10-13 15:28:18 2019-10-13 15:28:26 t 1 1 119631 220 0.00 2019-10-13 15:28:04 2019-10-13 15:32:34 t 1 1 119632 490 0.00 2019-10-13 15:28:28 2019-10-13 15:35:39 t 1 1 119634 422 0.00 2019-10-13 14:13:30 2019-10-13 15:36:13 t 1 1 119635 220 0.00 2019-10-13 15:32:37 2019-10-13 15:36:38 t 1 1 119352 501 0.00 2019-10-13 11:57:06 2019-10-13 11:57:45 t 1 1 119353 501 0.00 2019-10-13 11:57:50 2019-10-13 11:58:03 t 1 1 119357 445 0.00 2019-10-13 11:43:43 2019-10-13 11:59:27 t 1 1 119358 220 0.00 2019-10-13 11:58:23 2019-10-13 11:59:46 t 1 1 119359 470 0.00 2019-10-13 11:44:33 2019-10-13 12:00:01 t 1 1 119364 327 0.00 2019-10-13 11:20:32 2019-10-13 12:02:38 t 1 1 119366 220 0.00 2019-10-13 11:33:56 2019-10-13 12:06:09 t 1 2 119368 416 0.00 2019-10-13 11:44:06 2019-10-13 12:06:52 t 1 1 119374 220 0.00 2019-10-13 12:08:31 2019-10-13 12:08:41 t 1 1 119375 501 0.00 2019-10-13 12:02:22 2019-10-13 12:11:40 t 1 1 119376 501 0.00 2019-10-13 12:12:43 2019-10-13 12:12:51 t 1 1 119377 501 0.00 2019-10-13 12:13:43 2019-10-13 12:13:50 t 1 1 119380 501 0.00 2019-10-13 12:15:43 2019-10-13 12:15:51 t 1 1 119381 445 0.00 2019-10-13 12:00:10 2019-10-13 12:16:04 t 1 1 119382 501 0.00 2019-10-13 12:16:42 2019-10-13 12:17:21 t 1 1 119385 306 0.00 2019-10-13 12:14:49 2019-10-13 12:18:38 t 1 1 119392 220 0.00 2019-10-13 12:19:28 2019-10-13 12:25:38 t 1 1 119394 538 0.00 2019-10-13 12:01:01 2019-10-13 12:26:59 t 1 1 119396 501 0.00 2019-10-13 12:27:46 2019-10-13 12:27:53 t 1 1 119399 501 0.00 2019-10-13 12:28:18 2019-10-13 12:28:53 t 1 1 119400 220 0.00 2019-10-13 12:25:38 2019-10-13 12:29:07 t 1 1 119402 470 0.00 2019-10-13 12:28:17 2019-10-13 12:29:21 t 1 1 119404 520 0.00 2019-10-13 12:28:02 2019-10-13 12:32:34 t 1 1 119409 416 0.00 2019-10-13 12:07:18 2019-10-13 12:37:04 t 1 1 119410 220 0.00 2019-10-13 11:35:23 2019-10-13 12:37:44 t 1 2 119413 220 0.00 2019-10-13 12:36:34 2019-10-13 12:39:58 t 1 2 119416 528 0.00 2019-10-13 12:28:47 2019-10-13 12:41:21 t 1 1 119419 538 0.00 2019-10-13 12:29:31 2019-10-13 12:43:15 t 1 1 119425 501 0.00 2019-10-13 12:48:12 2019-10-13 12:49:46 t 1 1 119430 501 0.00 2019-10-13 12:51:41 2019-10-13 12:53:07 t 1 1 119431 528 0.00 2019-10-13 12:53:44 2019-10-13 12:53:57 t 1 1 119439 501 0.00 2019-10-13 13:01:44 2019-10-13 13:01:52 t 1 1 119440 501 0.00 2019-10-13 13:01:57 2019-10-13 13:02:06 t 1 1 119443 481 0.00 2019-10-13 11:40:03 2019-10-13 13:03:50 t 1 1 119447 501 0.00 2019-10-13 13:05:45 2019-10-13 13:06:17 t 1 1 119449 538 0.00 2019-10-13 12:54:12 2019-10-13 13:06:23 t 1 1 119452 501 0.00 2019-10-13 13:07:45 2019-10-13 13:09:06 t 1 1 119455 501 0.00 2019-10-13 13:09:59 2019-10-13 13:10:07 t 1 1 119457 451 0.00 2019-10-13 13:02:45 2019-10-13 13:11:02 t 1 1 119459 412 0.00 2019-10-13 06:58:36 2019-10-13 13:11:50 t 1 1 119461 501 0.00 2019-10-13 13:12:15 2019-10-13 13:12:16 t 1 1 119472 501 0.00 2019-10-13 13:16:42 2019-10-13 13:16:50 t 1 1 119474 220 0.00 2019-10-13 13:17:36 2019-10-13 13:17:44 t 1 1 119475 501 0.00 2019-10-13 13:18:18 2019-10-13 13:18:25 t 1 1 119476 501 0.00 2019-10-13 13:19:18 2019-10-13 13:19:25 t 1 1 119478 422 0.00 2019-10-13 13:09:47 2019-10-13 13:20:32 t 1 1 119487 501 0.00 2019-10-13 13:24:20 2019-10-13 13:24:53 t 1 1 119489 451 0.00 2019-10-13 13:15:18 2019-10-13 13:25:47 t 1 1 119498 501 0.00 2019-10-13 13:35:17 2019-10-13 13:36:47 t 1 1 119501 501 0.00 2019-10-13 13:36:52 2019-10-13 13:37:00 t 1 1 119503 528 0.00 2019-10-13 13:36:17 2019-10-13 13:37:51 t 1 1 119505 528 0.00 2019-10-13 13:38:27 2019-10-13 13:38:53 t 1 1 119506 501 0.00 2019-10-13 13:38:57 2019-10-13 13:39:05 t 1 1 119509 501 0.00 2019-10-13 13:39:57 2019-10-13 13:40:05 t 1 1 119512 528 0.00 2019-10-13 13:39:11 2019-10-13 13:41:22 t 1 1 119513 501 0.00 2019-10-13 13:41:59 2019-10-13 13:42:07 t 1 1 119517 545 0.00 2019-10-13 13:38:36 2019-10-13 13:44:26 t 1 1 119522 501 0.00 2019-10-13 13:47:48 2019-10-13 13:49:54 t 1 1 119523 545 0.00 2019-10-13 13:44:17 2019-10-13 13:50:37 t 1 1 119524 220 0.00 2019-10-13 13:47:38 2019-10-13 13:51:08 t 1 1 119529 501 0.00 2019-10-13 13:52:03 2019-10-13 13:52:35 t 1 1 119534 451 0.00 2019-10-13 13:56:45 2019-10-13 13:57:20 t 1 1 119535 416 0.00 2019-10-13 13:23:54 2019-10-13 13:58:17 t 1 1 119537 220 0.00 2019-10-13 14:01:03 2019-10-13 14:01:37 t 1 1 119549 501 0.00 2019-10-13 14:13:10 2019-10-13 14:14:46 t 1 1 119559 220 0.00 2019-10-13 14:22:17 2019-10-13 14:22:32 t 1 1 119565 528 0.00 2019-10-13 14:09:46 2019-10-13 14:26:52 t 1 1 119566 451 0.00 2019-10-13 14:23:25 2019-10-13 14:26:58 t 1 1 119567 470 0.00 2019-10-13 14:23:57 2019-10-13 14:28:54 t 1 1 119572 501 0.00 2019-10-13 14:31:30 2019-10-13 14:31:31 t 1 1 119574 501 0.00 2019-10-13 14:32:40 2019-10-13 14:32:53 t 1 1 119578 501 0.00 2019-10-13 14:33:15 2019-10-13 14:41:10 t 1 1 119580 490 0.00 2019-10-13 14:32:08 2019-10-13 14:47:03 t 1 1 119581 501 0.00 2019-10-13 14:42:00 2019-10-13 14:48:37 t 1 1 119584 501 0.00 2019-10-13 14:50:04 2019-10-13 14:50:13 t 1 1 119588 220 0.00 2019-10-13 14:53:44 2019-10-13 14:53:52 t 1 1 119590 501 0.00 2019-10-13 14:54:37 2019-10-13 14:57:05 t 1 1 119591 296 0.00 2019-10-13 14:52:46 2019-10-13 14:58:09 t 1 2 119594 501 0.00 2019-10-13 14:59:07 2019-10-13 14:59:16 t 1 1 119600 545 0.00 2019-10-13 14:55:15 2019-10-13 15:02:42 t 1 1 119602 220 0.00 2019-10-13 15:04:13 2019-10-13 15:04:22 t 1 1 119604 501 0.00 2019-10-13 15:05:09 2019-10-13 15:05:17 t 1 1 119607 490 0.00 2019-10-13 14:47:03 2019-10-13 15:06:29 t 1 1 119619 544 0.00 2019-10-13 15:22:44 2019-10-13 15:23:04 t 1 2 119622 220 0.00 2019-10-13 15:15:50 2019-10-13 15:25:11 t 1 1 119624 220 0.00 2019-10-13 15:25:27 2019-10-13 15:25:34 t 1 1 119625 220 0.00 2019-10-13 15:25:53 2019-10-13 15:26:01 t 1 1 119633 501 0.00 2019-10-13 15:33:25 2019-10-13 15:35:49 t 1 1 119636 220 0.00 2019-10-13 15:36:38 2019-10-13 15:36:46 t 1 1 119646 327 0.00 2019-10-13 15:13:30 2019-10-13 15:47:01 t 1 1 119647 220 0.00 2019-10-13 15:37:14 2019-10-13 15:47:07 t 1 1 119649 220 0.00 2019-10-13 15:47:24 2019-10-13 15:47:31 t 1 1 119651 544 0.00 2019-10-13 15:23:31 2019-10-13 15:48:36 t 1 2 119658 501 0.00 2019-10-13 15:53:52 2019-10-13 15:54:47 t 1 1 119659 220 0.00 2019-10-13 15:48:11 2019-10-13 15:55:24 t 1 1 119663 501 0.00 2019-10-13 15:55:47 2019-10-13 15:59:06 t 1 1 119666 290 0.00 2019-10-13 15:35:10 2019-10-13 16:00:16 t 1 2 119669 501 0.00 2019-10-13 16:01:11 2019-10-13 16:02:39 t 1 1 119671 412 0.00 2019-10-13 15:43:54 2019-10-13 16:03:15 t 1 1 119672 501 0.00 2019-10-13 16:03:41 2019-10-13 16:03:49 t 1 1 119675 501 0.00 2019-10-13 16:05:42 2019-10-13 16:05:50 t 1 1 119676 501 0.00 2019-10-13 16:06:43 2019-10-13 16:06:44 t 1 1 119677 501 0.00 2019-10-13 16:06:50 2019-10-13 16:06:58 t 1 1 119681 528 0.00 2019-10-13 15:38:49 2019-10-13 16:09:16 t 1 1 119682 445 0.00 2019-10-13 13:52:33 2019-10-13 16:14:14 t 1 1 119688 220 0.00 2019-10-13 16:18:51 2019-10-13 16:18:58 t 1 1 119693 325 0.00 2019-10-13 16:21:04 2019-10-13 16:21:51 t 1 2 119640 501 0.00 2019-10-13 15:37:58 2019-10-13 15:40:07 t 1 1 119641 501 0.00 2019-10-13 15:41:09 2019-10-13 15:41:17 t 1 1 119642 501 0.00 2019-10-13 15:42:09 2019-10-13 15:42:17 t 1 1 119643 412 0.00 2019-10-13 15:35:30 2019-10-13 15:43:54 t 1 1 119644 545 0.00 2019-10-13 15:26:43 2019-10-13 15:44:14 t 1 1 119652 501 0.00 2019-10-13 15:49:15 2019-10-13 15:50:39 t 1 1 119655 422 0.00 2019-10-13 15:36:13 2019-10-13 15:53:38 t 1 1 119657 416 0.00 2019-10-13 13:58:16 2019-10-13 15:54:02 t 1 1 119664 501 0.00 2019-10-13 15:59:14 2019-10-13 15:59:16 t 1 1 119668 501 0.00 2019-10-13 15:59:39 2019-10-13 16:02:22 t 1 1 119673 327 0.00 2019-10-13 15:47:01 2019-10-13 16:04:20 t 1 1 119674 501 0.00 2019-10-13 16:04:42 2019-10-13 16:04:51 t 1 1 119678 501 0.00 2019-10-13 16:07:43 2019-10-13 16:07:50 t 1 1 119679 220 0.00 2019-10-13 16:08:22 2019-10-13 16:08:31 t 1 1 119684 481 0.00 2019-10-13 13:04:08 2019-10-13 16:16:44 t 1 1 119685 501 0.00 2019-10-13 16:16:48 2019-10-13 16:16:49 t 1 1 119686 501 0.00 2019-10-13 16:16:55 2019-10-13 16:17:02 t 1 1 119690 520 0.00 2019-10-13 15:57:34 2019-10-13 16:20:12 t 1 1 119694 501 0.00 2019-10-13 16:21:37 2019-10-13 16:21:57 t 1 1 119698 327 0.00 2019-10-13 16:04:20 2019-10-13 16:23:44 t 1 1 119699 501 0.00 2019-10-13 16:23:37 2019-10-13 16:27:41 t 1 1 119705 220 0.00 2019-10-13 16:43:00 2019-10-13 16:43:35 t 1 1 119709 220 0.00 2019-10-13 16:44:09 2019-10-13 16:44:41 t 1 1 119710 501 0.00 2019-10-13 16:44:17 2019-10-13 16:45:18 t 1 1 119714 220 0.00 2019-10-13 16:45:52 2019-10-13 16:46:27 t 1 1 119715 220 0.00 2019-10-13 16:46:27 2019-10-13 16:47:01 t 1 1 119716 220 0.00 2019-10-13 16:47:01 2019-10-13 16:47:32 t 1 1 119717 220 0.00 2019-10-13 16:47:32 2019-10-13 16:48:04 t 1 1 119718 220 0.00 2019-10-13 16:48:04 2019-10-13 16:48:36 t 1 1 119719 220 0.00 2019-10-13 16:48:32 2019-10-13 16:48:58 t 1 1 119720 220 0.00 2019-10-13 16:48:36 2019-10-13 16:49:08 t 1 1 119723 501 0.00 2019-10-13 16:48:51 2019-10-13 16:49:24 t 1 1 119725 520 0.00 2019-10-13 16:20:12 2019-10-13 16:50:02 t 1 1 119726 220 0.00 2019-10-13 16:49:40 2019-10-13 16:50:12 t 1 1 119729 501 0.00 2019-10-13 16:50:19 2019-10-13 16:51:11 t 1 1 119733 512 0.00 2019-10-13 16:39:55 2019-10-13 16:52:38 t 1 1 119736 501 0.00 2019-10-13 16:53:05 2019-10-13 16:53:14 t 1 1 119738 220 0.00 2019-10-13 16:53:33 2019-10-13 16:54:09 t 1 1 119739 220 0.00 2019-10-13 13:44:00 2019-10-13 16:54:24 t 1 2 119741 501 0.00 2019-10-13 16:54:17 2019-10-13 16:54:50 t 1 1 119742 520 0.00 2019-10-13 16:50:02 2019-10-13 16:55:08 t 1 1 119749 220 0.00 2019-10-13 16:56:22 2019-10-13 16:56:56 t 1 1 119750 220 0.00 2019-10-13 16:56:56 2019-10-13 16:57:31 t 1 1 119755 481 0.00 2019-10-13 16:16:44 2019-10-13 16:59:22 t 1 1 119756 220 0.00 2019-10-13 16:59:19 2019-10-13 16:59:50 t 1 1 119759 220 0.00 2019-10-13 17:00:26 2019-10-13 17:01:01 t 1 1 119763 501 0.00 2019-10-13 17:01:31 2019-10-13 17:02:18 t 1 1 119764 220 0.00 2019-10-13 17:02:05 2019-10-13 17:02:37 t 1 1 119767 501 0.00 2019-10-13 17:03:21 2019-10-13 17:03:31 t 1 1 119775 220 0.00 2019-10-13 17:07:22 2019-10-13 17:08:04 t 1 1 119777 220 0.00 2019-10-13 17:08:37 2019-10-13 17:09:10 t 1 1 119792 220 0.00 2019-10-13 17:15:49 2019-10-13 17:18:56 t 1 1 119795 220 0.00 2019-10-13 17:19:44 2019-10-13 17:20:15 t 1 1 119801 501 0.00 2019-10-13 17:24:31 2019-10-13 17:24:32 t 1 1 119804 501 0.00 2019-10-13 17:26:31 2019-10-13 17:26:33 t 1 1 119805 220 0.00 2019-10-13 17:24:44 2019-10-13 17:27:23 t 1 1 119809 220 0.00 2019-10-13 17:24:36 2019-10-13 17:30:51 t 1 1 119811 306 0.00 2019-10-13 15:48:28 2019-10-13 17:33:59 t 1 1 119815 528 0.00 2019-10-13 17:39:27 2019-10-13 17:39:59 t 1 1 119816 528 0.00 2019-10-13 17:41:47 2019-10-13 17:41:51 t 1 1 119820 445 0.00 2019-10-13 17:17:03 2019-10-13 17:50:51 t 1 1 119822 430 0.00 2019-10-13 17:54:56 2019-10-13 17:56:37 t 1 1 119827 468 0.00 2019-10-13 17:39:57 2019-10-13 18:02:33 t 1 1 119828 375 0.00 2019-10-13 18:02:16 2019-10-13 18:03:23 t 1 1 119829 327 0.00 2019-10-13 17:43:15 2019-10-13 18:06:06 t 1 1 119831 445 0.00 2019-10-13 18:01:32 2019-10-13 18:07:08 t 1 1 119832 528 0.00 2019-10-13 18:07:51 2019-10-13 18:08:13 t 1 1 119839 528 0.00 2019-10-13 18:12:08 2019-10-13 18:12:15 t 1 1 119845 220 0.00 2019-10-13 18:15:41 2019-10-13 18:15:47 t 1 1 119847 220 0.00 2019-10-13 18:15:46 2019-10-13 18:15:57 t 1 1 119853 220 0.00 2019-10-13 17:21:31 2019-10-13 18:16:37 t 1 1 119857 220 0.00 2019-10-13 18:17:01 2019-10-13 18:17:17 t 1 1 119859 220 0.00 2019-10-13 18:17:16 2019-10-13 18:17:34 t 1 1 119860 220 0.00 2019-10-13 18:17:34 2019-10-13 18:17:52 t 1 1 119861 220 0.00 2019-10-13 18:17:51 2019-10-13 18:18:01 t 1 1 119863 294 0.00 2019-10-13 18:07:02 2019-10-13 18:18:26 t 1 2 119865 220 0.00 2019-10-13 18:18:13 2019-10-13 18:18:41 t 1 1 119867 430 0.00 2019-10-13 18:17:40 2019-10-13 18:19:34 t 1 1 119870 456 0.00 2019-10-13 18:13:21 2019-10-13 18:21:03 t 1 1 119876 306 0.00 2019-10-13 18:24:26 2019-10-13 18:25:45 t 1 1 119883 220 0.00 2019-10-13 18:34:06 2019-10-13 18:34:15 t 1 1 119884 468 0.00 2019-10-13 18:33:18 2019-10-13 18:42:53 t 1 1 119887 498 0.00 2019-10-13 16:54:19 2019-10-13 18:49:54 t 1 2 119890 220 0.00 2019-10-13 18:55:04 2019-10-13 18:55:12 t 1 1 119899 528 0.00 2019-10-13 18:55:41 2019-10-13 19:17:10 t 1 1 119902 528 0.00 2019-10-13 19:19:41 2019-10-13 19:19:49 t 1 1 119906 445 0.00 2019-10-13 19:12:44 2019-10-13 19:24:26 t 1 1 119907 485 0.00 2019-10-13 19:19:54 2019-10-13 19:25:45 t 1 1 119911 412 0.00 2019-10-13 16:03:15 2019-10-13 19:31:25 t 1 1 119912 468 0.00 2019-10-13 19:17:22 2019-10-13 19:32:05 t 1 1 119914 416 0.00 2019-10-13 18:51:38 2019-10-13 19:33:04 t 1 1 119916 220 0.00 2019-10-13 18:56:37 2019-10-13 19:34:38 t 1 2 119921 490 0.00 2019-10-13 19:19:21 2019-10-13 19:35:47 t 1 1 119924 220 0.00 2019-10-13 19:37:00 2019-10-13 19:37:16 t 1 1 119926 445 0.00 2019-10-13 19:33:40 2019-10-13 19:42:08 t 1 1 119933 220 0.00 2019-10-13 19:42:36 2019-10-13 19:47:31 t 1 1 119935 528 0.00 2019-10-13 19:36:47 2019-10-13 19:48:04 t 1 1 119937 528 0.00 2019-10-13 19:49:32 2019-10-13 19:49:38 t 1 1 119938 528 0.00 2019-10-13 19:48:48 2019-10-13 19:50:23 t 1 1 119941 528 0.00 2019-10-13 19:51:48 2019-10-13 19:52:00 t 1 1 119943 528 0.00 2019-10-13 19:52:41 2019-10-13 19:52:51 t 1 1 119945 556 0.00 2019-10-13 15:01:01 2019-10-13 19:56:20 t 1 1 119947 445 0.00 2019-10-13 19:43:55 2019-10-13 19:58:45 t 1 1 119951 306 0.00 2019-10-13 18:29:26 2019-10-13 19:59:57 t 1 1 119953 416 0.00 2019-10-13 19:51:32 2019-10-13 20:00:55 t 1 1 119960 528 0.00 2019-10-13 20:06:36 2019-10-13 20:06:57 t 1 1 119963 325 0.00 2019-10-13 19:09:02 2019-10-13 20:09:08 t 1 2 119650 501 0.00 2019-10-13 15:47:43 2019-10-13 15:48:14 t 1 1 119653 501 0.00 2019-10-13 15:50:48 2019-10-13 15:50:49 t 1 1 119654 501 0.00 2019-10-13 15:50:57 2019-10-13 15:51:56 t 1 1 119656 501 0.00 2019-10-13 15:52:57 2019-10-13 15:53:44 t 1 1 119660 520 0.00 2019-10-13 15:38:51 2019-10-13 15:56:35 t 1 1 119661 520 0.00 2019-10-13 15:56:34 2019-10-13 15:57:34 t 1 1 119662 220 0.00 2019-10-13 15:57:52 2019-10-13 15:58:01 t 1 1 119665 501 0.00 2019-10-13 15:59:23 2019-10-13 15:59:32 t 1 1 119667 501 0.00 2019-10-13 15:59:51 2019-10-13 16:00:22 t 1 1 119670 545 0.00 2019-10-13 15:44:14 2019-10-13 16:02:53 t 1 1 119680 501 0.00 2019-10-13 16:08:43 2019-10-13 16:08:56 t 1 1 119683 501 0.00 2019-10-13 16:09:50 2019-10-13 16:16:36 t 1 1 119687 501 0.00 2019-10-13 16:17:08 2019-10-13 16:17:16 t 1 1 119689 501 0.00 2019-10-13 16:17:21 2019-10-13 16:19:34 t 1 1 119691 501 0.00 2019-10-13 16:20:37 2019-10-13 16:20:50 t 1 1 119692 296 0.00 2019-10-13 16:11:03 2019-10-13 16:21:27 t 1 2 119695 351 0.00 2019-10-13 15:07:50 2019-10-13 16:22:55 t 1 2 119697 445 0.00 2019-10-13 16:13:51 2019-10-13 16:23:29 t 1 1 119701 512 0.00 2019-10-13 16:11:45 2019-10-13 16:39:10 t 1 1 119702 220 0.00 2019-10-13 16:39:49 2019-10-13 16:39:57 t 1 1 119707 220 0.00 2019-10-13 16:43:35 2019-10-13 16:44:09 t 1 1 119711 220 0.00 2019-10-13 16:44:41 2019-10-13 16:45:20 t 1 1 119722 501 0.00 2019-10-13 16:47:10 2019-10-13 16:49:22 t 1 1 119724 220 0.00 2019-10-13 16:49:07 2019-10-13 16:49:40 t 1 1 119730 220 0.00 2019-10-13 16:50:44 2019-10-13 16:51:18 t 1 1 119732 220 0.00 2019-10-13 16:51:53 2019-10-13 16:52:27 t 1 1 119734 501 0.00 2019-10-13 16:52:14 2019-10-13 16:52:59 t 1 1 119737 220 0.00 2019-10-13 16:53:01 2019-10-13 16:53:34 t 1 1 119740 220 0.00 2019-10-13 16:54:09 2019-10-13 16:54:41 t 1 1 119743 220 0.00 2019-10-13 16:54:41 2019-10-13 16:55:16 t 1 1 119746 220 0.00 2019-10-13 16:55:42 2019-10-13 16:55:54 t 1 1 119747 501 0.00 2019-10-13 16:56:17 2019-10-13 16:56:18 t 1 1 119752 501 0.00 2019-10-13 16:57:38 2019-10-13 16:58:14 t 1 1 119758 327 0.00 2019-10-13 16:42:37 2019-10-13 17:00:53 t 1 1 119762 220 0.00 2019-10-13 17:01:34 2019-10-13 17:02:05 t 1 1 119768 220 0.00 2019-10-13 17:03:12 2019-10-13 17:03:49 t 1 1 119769 501 0.00 2019-10-13 17:04:11 2019-10-13 17:04:33 t 1 1 119771 501 0.00 2019-10-13 17:04:47 2019-10-13 17:05:22 t 1 1 119776 220 0.00 2019-10-13 17:08:04 2019-10-13 17:08:37 t 1 1 119779 501 0.00 2019-10-13 17:07:25 2019-10-13 17:09:22 t 1 1 119780 220 0.00 2019-10-13 17:09:10 2019-10-13 17:09:45 t 1 1 119781 220 0.00 2019-10-13 17:09:24 2019-10-13 17:10:05 t 1 1 119786 220 0.00 2019-10-13 17:14:07 2019-10-13 17:15:16 t 1 1 119788 445 0.00 2019-10-13 16:23:42 2019-10-13 17:17:01 t 1 1 119789 220 0.00 2019-10-13 17:17:06 2019-10-13 17:17:47 t 1 1 119791 327 0.00 2019-10-13 17:00:53 2019-10-13 17:18:17 t 1 1 119794 501 0.00 2019-10-13 17:19:34 2019-10-13 17:19:53 t 1 1 119796 501 0.00 2019-10-13 17:20:30 2019-10-13 17:20:31 t 1 1 119797 220 0.00 2019-10-13 17:20:14 2019-10-13 17:20:49 t 1 1 119798 220 0.00 2019-10-13 17:20:49 2019-10-13 17:21:32 t 1 1 119799 501 0.00 2019-10-13 17:23:34 2019-10-13 17:24:07 t 1 1 119807 516 0.00 2019-10-13 17:18:24 2019-10-13 17:27:42 t 1 1 119812 528 0.00 2019-10-13 17:33:40 2019-10-13 17:34:08 t 1 1 119813 306 0.00 2019-10-13 17:34:04 2019-10-13 17:35:30 t 1 1 119823 528 0.00 2019-10-13 17:57:32 2019-10-13 17:57:57 t 1 1 119825 445 0.00 2019-10-13 18:00:15 2019-10-13 18:01:33 t 1 1 119826 375 0.00 2019-10-13 17:42:18 2019-10-13 18:02:16 t 1 1 119830 468 0.00 2019-10-13 18:03:02 2019-10-13 18:06:31 t 1 1 119836 416 0.00 2019-10-13 15:54:02 2019-10-13 18:10:22 t 1 1 119837 528 0.00 2019-10-13 18:11:35 2019-10-13 18:11:50 t 1 1 119841 528 0.00 2019-10-13 18:13:54 2019-10-13 18:14:14 t 1 1 119842 430 0.00 2019-10-13 18:09:27 2019-10-13 18:15:14 t 1 1 119848 430 0.00 2019-10-13 18:15:19 2019-10-13 18:16:05 t 1 1 119851 430 0.00 2019-10-13 18:16:12 2019-10-13 18:16:19 t 1 1 119852 220 0.00 2019-10-13 18:16:16 2019-10-13 18:16:28 t 1 1 119854 220 0.00 2019-10-13 18:16:28 2019-10-13 18:16:38 t 1 1 119862 220 0.00 2019-10-13 18:18:01 2019-10-13 18:18:14 t 1 1 119868 476 0.00 2019-10-13 17:45:30 2019-10-13 18:20:35 t 1 2 119871 512 0.00 2019-10-13 16:53:35 2019-10-13 18:22:06 t 1 1 119873 220 0.00 2019-10-13 18:22:27 2019-10-13 18:23:30 t 1 1 119877 487 0.00 2019-10-13 18:01:11 2019-10-13 18:26:16 t 1 2 119879 544 0.00 2019-10-13 18:22:36 2019-10-13 18:28:30 t 1 2 119881 375 0.00 2019-10-13 18:05:38 2019-10-13 18:29:39 t 1 1 119882 468 0.00 2019-10-13 18:15:25 2019-10-13 18:33:18 t 1 1 119892 528 0.00 2019-10-13 18:27:31 2019-10-13 18:55:33 t 1 1 119893 445 0.00 2019-10-13 18:51:13 2019-10-13 18:57:50 t 1 1 119896 468 0.00 2019-10-13 18:42:53 2019-10-13 19:11:44 t 1 1 119897 445 0.00 2019-10-13 18:57:50 2019-10-13 19:12:41 t 1 1 119905 528 0.00 2019-10-13 19:22:38 2019-10-13 19:22:47 t 1 1 119909 220 0.00 2019-10-13 19:26:30 2019-10-13 19:26:39 t 1 1 119913 445 0.00 2019-10-13 19:26:13 2019-10-13 19:33:01 t 1 1 119915 528 0.00 2019-10-13 19:32:29 2019-10-13 19:33:10 t 1 1 119918 516 0.00 2019-10-13 19:28:57 2019-10-13 19:34:51 t 1 1 119919 485 0.00 2019-10-13 19:34:27 2019-10-13 19:35:28 t 1 1 119920 528 0.00 2019-10-13 19:35:28 2019-10-13 19:35:35 t 1 1 119922 558 0.00 2019-10-13 19:20:04 2019-10-13 19:35:48 t 1 1 119923 485 0.00 2019-10-13 19:35:34 2019-10-13 19:36:35 t 1 1 119928 416 0.00 2019-10-13 19:33:04 2019-10-13 19:43:13 t 1 1 119934 220 0.00 2019-10-13 19:47:31 2019-10-13 19:48:03 t 1 1 119936 516 0.00 2019-10-13 19:45:10 2019-10-13 19:48:29 t 1 1 119940 416 0.00 2019-10-13 19:43:13 2019-10-13 19:51:32 t 1 1 119948 558 0.00 2019-10-13 19:46:26 2019-10-13 19:58:58 t 1 1 119950 468 0.00 2019-10-13 19:56:27 2019-10-13 19:59:22 t 1 1 119952 528 0.00 2019-10-13 20:00:17 2019-10-13 20:00:36 t 1 1 119955 528 0.00 2019-10-13 20:04:25 2019-10-13 20:04:37 t 1 1 119957 220 0.00 2019-10-13 20:04:25 2019-10-13 20:06:23 t 1 1 119958 445 0.00 2019-10-13 19:58:45 2019-10-13 20:06:44 t 1 1 119961 528 0.00 2019-10-13 20:07:29 2019-10-13 20:07:42 t 1 1 119965 220 0.00 2019-10-13 20:06:46 2019-10-13 20:10:57 t 1 1 119966 481 0.00 2019-10-13 16:59:22 2019-10-13 20:11:42 t 1 1 119968 516 0.00 2019-10-13 20:05:59 2019-10-13 20:13:53 t 1 1 119971 220 0.00 2019-10-13 20:17:23 2019-10-13 20:17:33 t 1 1 119972 520 0.00 2019-10-13 20:12:19 2019-10-13 20:18:22 t 1 1 119975 445 0.00 2019-10-13 20:20:24 2019-10-13 20:21:16 t 1 1 119978 528 0.00 2019-10-13 20:15:49 2019-10-13 20:22:18 t 1 1 119979 445 0.00 2019-10-13 20:21:15 2019-10-13 20:23:24 t 1 1 119983 395 0.00 2019-10-13 17:46:27 2019-10-13 20:25:42 t 1 2 119696 501 0.00 2019-10-13 16:22:42 2019-10-13 16:23:14 t 1 1 119700 220 0.00 2019-10-13 16:29:20 2019-10-13 16:29:28 t 1 1 119703 327 0.00 2019-10-13 16:23:42 2019-10-13 16:42:37 t 1 1 119704 220 0.00 2019-10-13 16:42:40 2019-10-13 16:43:01 t 1 1 119706 516 0.00 2019-10-13 16:13:07 2019-10-13 16:43:51 t 1 1 119708 220 0.00 2019-10-13 16:43:00 2019-10-13 16:44:22 t 1 1 119712 220 0.00 2019-10-13 16:45:19 2019-10-13 16:45:52 t 1 1 119713 501 0.00 2019-10-13 16:46:06 2019-10-13 16:46:24 t 1 1 119721 220 0.00 2019-10-13 16:49:08 2019-10-13 16:49:08 t 1 1 119727 501 0.00 2019-10-13 16:50:11 2019-10-13 16:50:12 t 1 1 119728 220 0.00 2019-10-13 16:50:12 2019-10-13 16:50:44 t 1 1 119731 220 0.00 2019-10-13 16:51:18 2019-10-13 16:51:54 t 1 1 119735 220 0.00 2019-10-13 16:52:27 2019-10-13 16:53:01 t 1 1 119744 501 0.00 2019-10-13 16:55:17 2019-10-13 16:55:27 t 1 1 119745 220 0.00 2019-10-13 16:55:16 2019-10-13 16:55:48 t 1 1 119748 220 0.00 2019-10-13 16:55:47 2019-10-13 16:56:22 t 1 1 119751 220 0.00 2019-10-13 16:57:31 2019-10-13 16:58:11 t 1 1 119753 220 0.00 2019-10-13 16:58:11 2019-10-13 16:58:47 t 1 1 119754 220 0.00 2019-10-13 16:58:46 2019-10-13 16:59:19 t 1 1 119757 220 0.00 2019-10-13 16:59:50 2019-10-13 17:00:26 t 1 1 119760 501 0.00 2019-10-13 16:59:21 2019-10-13 17:01:22 t 1 1 119761 220 0.00 2019-10-13 17:01:00 2019-10-13 17:01:34 t 1 1 119765 220 0.00 2019-10-13 17:02:27 2019-10-13 17:02:39 t 1 1 119766 220 0.00 2019-10-13 17:02:36 2019-10-13 17:03:13 t 1 1 119770 220 0.00 2019-10-13 17:03:49 2019-10-13 17:05:11 t 1 1 119772 220 0.00 2019-10-13 17:05:11 2019-10-13 17:05:56 t 1 1 119773 501 0.00 2019-10-13 17:06:24 2019-10-13 17:06:57 t 1 1 119774 220 0.00 2019-10-13 17:05:56 2019-10-13 17:07:22 t 1 1 119778 516 0.00 2019-10-13 16:44:06 2019-10-13 17:09:15 t 1 1 119782 520 0.00 2019-10-13 17:07:39 2019-10-13 17:11:18 t 1 1 119783 501 0.00 2019-10-13 17:11:44 2019-10-13 17:12:25 t 1 1 119784 220 0.00 2019-10-13 17:09:44 2019-10-13 17:13:23 t 1 1 119785 220 0.00 2019-10-13 17:13:22 2019-10-13 17:14:07 t 1 1 119787 220 0.00 2019-10-13 17:15:16 2019-10-13 17:15:49 t 1 1 119790 220 0.00 2019-10-13 17:08:44 2019-10-13 17:18:07 t 1 2 119793 220 0.00 2019-10-13 17:18:56 2019-10-13 17:19:44 t 1 1 119800 220 0.00 2019-10-13 17:22:17 2019-10-13 17:24:25 t 1 1 119802 220 0.00 2019-10-13 17:24:24 2019-10-13 17:24:34 t 1 1 119803 311 0.00 2019-10-13 17:01:55 2019-10-13 17:26:18 t 1 2 119806 501 0.00 2019-10-13 17:27:12 2019-10-13 17:27:31 t 1 1 119808 528 0.00 2019-10-13 17:16:06 2019-10-13 17:28:43 t 1 1 119810 501 0.00 2019-10-13 17:29:31 2019-10-13 17:31:23 t 1 1 119814 468 0.00 2019-10-13 17:20:33 2019-10-13 17:39:57 t 1 1 119817 327 0.00 2019-10-13 17:18:17 2019-10-13 17:43:15 t 1 1 119818 461 0.00 2019-10-13 17:45:19 2019-10-13 17:45:19 f 1 2 119819 528 0.00 2019-10-13 17:46:56 2019-10-13 17:47:38 t 1 1 119821 430 0.00 2019-10-13 17:30:53 2019-10-13 17:54:53 t 1 1 119824 445 0.00 2019-10-13 17:53:09 2019-10-13 18:00:15 t 1 1 119833 430 0.00 2019-10-13 17:56:44 2019-10-13 18:08:34 t 1 1 119834 430 0.00 2019-10-13 18:08:36 2019-10-13 18:09:21 t 1 1 119835 528 0.00 2019-10-13 18:09:42 2019-10-13 18:09:49 t 1 1 119838 416 0.00 2019-10-13 18:09:55 2019-10-13 18:12:02 t 1 1 119840 528 0.00 2019-10-13 18:13:07 2019-10-13 18:13:17 t 1 1 119843 468 0.00 2019-10-13 18:06:31 2019-10-13 18:15:25 t 1 1 119844 220 0.00 2019-10-13 17:30:53 2019-10-13 18:15:41 t 1 1 119846 445 0.00 2019-10-13 18:13:12 2019-10-13 18:15:54 t 1 1 119849 220 0.00 2019-10-13 18:15:56 2019-10-13 18:16:07 t 1 1 119850 220 0.00 2019-10-13 18:16:06 2019-10-13 18:16:16 t 1 1 119855 220 0.00 2019-10-13 18:16:37 2019-10-13 18:16:52 t 1 1 119856 220 0.00 2019-10-13 18:16:51 2019-10-13 18:17:02 t 1 1 119858 430 0.00 2019-10-13 18:16:23 2019-10-13 18:17:33 t 1 1 119864 516 0.00 2019-10-13 17:53:54 2019-10-13 18:18:34 t 1 1 119866 327 0.00 2019-10-13 18:06:06 2019-10-13 18:18:56 t 1 1 119869 528 0.00 2019-10-13 18:20:25 2019-10-13 18:20:59 t 1 1 119872 456 0.00 2019-10-13 18:21:02 2019-10-13 18:22:32 t 1 1 119874 220 0.00 2019-10-13 18:23:37 2019-10-13 18:23:45 t 1 1 119875 528 0.00 2019-10-13 18:24:00 2019-10-13 18:25:08 t 1 1 119878 456 0.00 2019-10-13 18:25:22 2019-10-13 18:27:27 t 1 1 119880 422 0.00 2019-10-13 15:53:38 2019-10-13 18:29:21 t 1 1 119885 456 0.00 2019-10-13 18:27:51 2019-10-13 18:44:07 t 1 1 119886 220 0.00 2019-10-13 18:44:35 2019-10-13 18:44:43 t 1 1 119888 445 0.00 2019-10-13 18:20:11 2019-10-13 18:51:13 t 1 1 119889 514 0.00 2019-10-13 18:52:45 2019-10-13 18:53:52 t 1 1 119891 375 0.00 2019-10-13 18:29:38 2019-10-13 18:55:31 t 1 1 119894 456 0.00 2019-10-13 18:44:12 2019-10-13 18:58:57 t 1 1 119895 220 0.00 2019-10-13 19:05:33 2019-10-13 19:05:46 t 1 1 119898 220 0.00 2019-10-13 19:16:01 2019-10-13 19:16:20 t 1 1 119900 468 0.00 2019-10-13 19:11:44 2019-10-13 19:17:14 t 1 1 119901 528 0.00 2019-10-13 19:17:35 2019-10-13 19:17:47 t 1 1 119903 558 0.00 2019-10-13 19:07:05 2019-10-13 19:20:04 t 1 1 119904 375 0.00 2019-10-13 18:59:14 2019-10-13 19:21:46 t 1 1 119908 445 0.00 2019-10-13 19:24:25 2019-10-13 19:25:49 t 1 1 119910 375 0.00 2019-10-13 19:21:56 2019-10-13 19:31:11 t 1 1 119917 485 0.00 2019-10-13 19:32:52 2019-10-13 19:34:41 t 1 1 119925 476 0.00 2019-10-13 18:39:20 2019-10-13 19:37:17 t 1 2 119927 485 0.00 2019-10-13 19:39:47 2019-10-13 19:43:02 t 1 1 119929 490 0.00 2019-10-13 19:35:47 2019-10-13 19:43:28 t 1 1 119930 445 0.00 2019-10-13 19:42:30 2019-10-13 19:43:57 t 1 1 119931 558 0.00 2019-10-13 19:35:48 2019-10-13 19:46:26 t 1 1 119932 468 0.00 2019-10-13 19:32:28 2019-10-13 19:47:06 t 1 1 119939 220 0.00 2019-10-13 19:48:05 2019-10-13 19:50:37 t 1 1 119942 528 0.00 2019-10-13 19:50:38 2019-10-13 19:52:23 t 1 1 119944 528 0.00 2019-10-13 19:53:45 2019-10-13 19:53:48 t 1 1 119946 528 0.00 2019-10-13 19:58:07 2019-10-13 19:58:36 t 1 1 119949 220 0.00 2019-10-13 19:58:01 2019-10-13 19:59:03 t 1 1 119954 512 0.00 2019-10-13 19:53:03 2019-10-13 20:02:32 t 1 1 119956 528 0.00 2019-10-13 20:05:22 2019-10-13 20:06:23 t 1 1 119959 220 0.00 2019-10-13 20:05:36 2019-10-13 20:06:47 t 1 1 119962 306 0.00 2019-10-13 20:00:00 2019-10-13 20:08:42 t 1 1 119969 445 0.00 2019-10-13 20:06:43 2019-10-13 20:15:52 t 1 1 119970 220 0.00 2019-10-13 18:18:40 2019-10-13 20:17:24 t 1 1 119973 445 0.00 2019-10-13 20:16:48 2019-10-13 20:20:25 t 1 1 119976 220 0.00 2019-10-13 20:21:48 2019-10-13 20:21:51 t 1 2 119980 220 0.00 2019-10-13 20:03:44 2019-10-13 20:23:49 t 1 2 119982 306 0.00 2019-10-13 20:16:48 2019-10-13 20:25:24 t 1 1 119987 445 0.00 2019-10-13 20:23:47 2019-10-13 20:32:09 t 1 1 119990 220 0.00 2019-10-13 20:32:39 2019-10-13 20:32:49 t 1 1 119964 416 0.00 2019-10-13 20:00:55 2019-10-13 20:10:51 t 1 1 119967 220 0.00 2019-10-13 20:11:02 2019-10-13 20:12:23 t 1 1 119974 476 0.00 2019-10-13 19:50:55 2019-10-13 20:21:01 t 1 2 119977 327 0.00 2019-10-13 20:06:07 2019-10-13 20:22:15 t 1 1 119981 490 0.00 2019-10-13 19:43:28 2019-10-13 20:24:21 t 1 1 119986 220 0.00 2019-10-13 20:28:05 2019-10-13 20:28:17 t 1 1 119988 395 0.00 2019-10-13 20:32:09 2019-10-13 20:32:12 t 1 2 119991 327 0.00 2019-10-13 20:22:15 2019-10-13 20:38:49 t 1 1 119992 470 0.00 2019-10-13 14:51:11 2019-10-13 20:39:23 t 1 1 119994 430 0.00 2019-10-13 20:39:24 2019-10-13 20:44:19 t 1 1 119998 501 0.00 2019-10-13 20:49:49 2019-10-13 20:50:07 t 1 1 119999 485 0.00 2019-10-13 20:40:27 2019-10-13 20:51:04 t 1 1 120000 501 0.00 2019-10-13 20:50:55 2019-10-13 20:52:27 t 1 1 120002 512 0.00 2019-10-13 20:02:36 2019-10-13 20:53:25 t 1 1 120006 501 0.00 2019-10-13 20:55:32 2019-10-13 20:56:05 t 1 1 120008 501 0.00 2019-10-13 20:57:32 2019-10-13 20:58:04 t 1 1 120011 501 0.00 2019-10-13 20:58:52 2019-10-13 20:59:34 t 1 1 120012 501 0.00 2019-10-13 20:59:44 2019-10-13 21:01:23 t 1 1 120014 501 0.00 2019-10-13 21:01:40 2019-10-13 21:01:41 t 1 1 120019 422 0.00 2019-10-13 21:02:17 2019-10-13 21:03:32 t 1 1 120021 422 0.00 2019-10-13 21:03:45 2019-10-13 21:04:49 t 1 1 120027 247 0.00 2019-10-13 21:07:54 2019-10-13 21:07:54 f 1 2 120028 520 0.00 2019-10-13 21:04:36 2019-10-13 21:08:19 t 1 1 120029 501 0.00 2019-10-13 21:08:44 2019-10-13 21:09:11 t 1 1 120035 501 0.00 2019-10-13 21:11:47 2019-10-13 21:11:48 t 1 1 120038 220 0.00 2019-10-13 20:32:08 2019-10-13 21:12:55 t 1 2 120039 408 0.00 2019-10-13 21:10:39 2019-10-13 21:13:56 t 1 1 120040 327 0.00 2019-10-13 20:55:26 2019-10-13 21:14:32 t 1 1 120042 430 0.00 2019-10-13 21:12:46 2019-10-13 21:14:44 t 1 1 120043 327 0.00 2019-10-13 21:14:32 2019-10-13 21:14:58 t 1 1 120048 220 0.00 2019-10-13 20:32:49 2019-10-13 21:17:08 t 1 1 120051 220 0.00 2019-10-13 21:17:28 2019-10-13 21:17:39 t 1 1 120053 220 0.00 2019-10-13 21:17:49 2019-10-13 21:17:59 t 1 1 120055 220 0.00 2019-10-13 21:17:58 2019-10-13 21:18:09 t 1 1 120058 220 0.00 2019-10-13 21:18:28 2019-10-13 21:18:38 t 1 1 120062 220 0.00 2019-10-13 21:19:08 2019-10-13 21:19:18 t 1 1 120065 422 0.00 2019-10-13 21:06:23 2019-10-13 21:19:37 t 1 1 120068 220 0.00 2019-10-13 21:19:47 2019-10-13 21:19:57 t 1 1 120070 220 0.00 2019-10-13 21:19:57 2019-10-13 21:20:09 t 1 1 120073 408 0.00 2019-10-13 21:16:59 2019-10-13 21:20:37 t 1 1 120074 220 0.00 2019-10-13 21:20:28 2019-10-13 21:20:38 t 1 1 120076 220 0.00 2019-10-13 21:20:38 2019-10-13 21:20:49 t 1 1 120080 220 0.00 2019-10-13 21:20:58 2019-10-13 21:21:09 t 1 1 120083 220 0.00 2019-10-13 21:21:29 2019-10-13 21:21:39 t 1 1 120087 220 0.00 2019-10-13 21:22:11 2019-10-13 21:22:22 t 1 1 120089 470 0.00 2019-10-13 20:39:23 2019-10-13 21:22:34 t 1 1 120090 220 0.00 2019-10-13 21:22:31 2019-10-13 21:22:41 t 1 1 120094 408 0.00 2019-10-13 21:20:37 2019-10-13 21:23:21 t 1 1 120100 220 0.00 2019-10-13 21:24:00 2019-10-13 21:24:11 t 1 1 120106 220 0.00 2019-10-13 21:24:39 2019-10-13 21:24:50 t 1 1 120117 220 0.00 2019-10-13 21:26:18 2019-10-13 21:26:28 t 1 1 120121 306 0.00 2019-10-13 21:23:32 2019-10-13 21:27:02 t 1 1 120123 220 0.00 2019-10-13 21:27:00 2019-10-13 21:27:11 t 1 1 120125 220 0.00 2019-10-13 21:27:11 2019-10-13 21:27:25 t 1 1 120128 501 0.00 2019-10-13 21:27:24 2019-10-13 21:27:52 t 1 1 120129 220 0.00 2019-10-13 21:27:47 2019-10-13 21:27:57 t 1 1 120131 220 0.00 2019-10-13 21:27:57 2019-10-13 21:28:09 t 1 1 120134 220 0.00 2019-10-13 21:28:29 2019-10-13 21:28:39 t 1 1 120136 220 0.00 2019-10-13 21:28:50 2019-10-13 21:29:00 t 1 1 120140 501 0.00 2019-10-13 21:28:55 2019-10-13 21:29:59 t 1 1 120148 220 0.00 2019-10-13 21:36:00 2019-10-13 21:36:09 t 1 1 120156 528 0.00 2019-10-13 21:37:21 2019-10-13 21:40:35 t 1 1 120157 470 0.00 2019-10-13 21:22:34 2019-10-13 21:41:10 t 1 1 120164 361 0.00 2019-10-13 21:44:20 2019-10-13 21:44:20 f 1 2 120166 361 0.00 2019-10-13 21:45:14 2019-10-13 21:45:14 f 1 2 120168 361 0.00 2019-10-13 21:48:07 2019-10-13 21:48:07 f 1 2 120170 361 0.00 2019-10-13 21:38:37 2019-10-13 21:48:43 t 1 2 120172 408 0.00 2019-10-13 21:48:38 2019-10-13 21:52:06 t 1 1 120173 408 0.00 2019-10-13 21:52:06 2019-10-13 21:53:55 t 1 1 120174 518 0.00 2019-10-13 18:48:14 2019-10-13 21:58:19 t 1 2 120178 327 0.00 2019-10-13 21:46:50 2019-10-13 22:01:56 t 1 1 120181 461 0.00 2019-10-13 22:05:05 2019-10-13 22:05:05 f 1 2 120187 408 0.00 2019-10-13 22:03:32 2019-10-13 22:10:39 t 1 1 120189 466 0.00 2019-10-13 22:03:49 2019-10-13 22:11:44 t 1 1 120190 327 0.00 2019-10-13 22:11:23 2019-10-13 22:12:30 t 1 1 120193 408 0.00 2019-10-13 22:10:39 2019-10-13 22:17:58 t 1 1 120197 520 0.00 2019-10-13 22:07:39 2019-10-13 22:21:40 t 1 1 120200 408 0.00 2019-10-13 22:17:58 2019-10-13 22:28:22 t 1 1 120202 538 0.00 2019-10-13 22:01:24 2019-10-13 22:31:46 t 1 1 120206 538 0.00 2019-10-13 22:32:05 2019-10-13 22:35:41 t 1 1 120208 481 0.00 2019-10-13 21:19:24 2019-10-13 22:36:18 t 1 1 120214 501 0.00 2019-10-13 22:39:46 2019-10-13 22:41:23 t 1 1 120218 327 0.00 2019-10-13 22:42:04 2019-10-13 22:42:32 t 1 1 120220 327 0.00 2019-10-13 22:47:28 2019-10-13 22:50:06 t 1 1 120226 468 0.00 2019-10-13 22:51:55 2019-10-13 22:55:41 t 1 1 120229 327 0.00 2019-10-13 22:51:54 2019-10-13 22:57:09 t 1 1 120231 501 0.00 2019-10-13 22:50:32 2019-10-13 22:57:33 t 1 1 120234 327 0.00 2019-10-13 22:58:55 2019-10-13 22:59:52 t 1 1 120235 470 0.00 2019-10-13 22:52:55 2019-10-13 23:00:53 t 1 1 120238 501 0.00 2019-10-13 22:57:33 2019-10-13 23:02:29 t 1 1 120240 456 0.00 2019-10-13 22:55:14 2019-10-13 23:04:33 t 1 1 120246 456 0.00 2019-10-13 23:04:33 2019-10-13 23:10:01 t 1 1 120247 445 0.00 2019-10-13 23:06:37 2019-10-13 23:10:22 t 1 1 120251 327 0.00 2019-10-13 23:12:17 2019-10-13 23:12:50 t 1 1 120256 545 0.00 2019-10-13 23:05:28 2019-10-13 23:20:00 t 1 1 120269 422 0.00 2019-10-13 23:21:15 2019-10-13 23:36:23 t 1 1 120270 416 0.00 2019-10-13 20:10:51 2019-10-13 23:37:03 t 1 1 120273 220 0.00 2019-10-13 23:25:04 2019-10-13 23:40:36 t 1 1 120274 512 0.00 2019-10-13 23:39:43 2019-10-13 23:42:29 t 1 1 120275 520 0.00 2019-10-13 22:45:48 2019-10-13 23:48:46 t 1 1 120277 520 0.00 2019-10-13 23:48:45 2019-10-13 23:51:15 t 1 1 120279 520 0.00 2019-10-13 23:51:21 2019-10-14 00:01:29 t 1 1 120281 520 0.00 2019-10-14 00:01:28 2019-10-14 00:06:11 t 1 1 120287 220 0.00 2019-10-13 21:46:45 2019-10-14 00:31:51 t 1 2 120289 503 0.00 2019-10-13 23:59:12 2019-10-14 00:32:18 t 1 1 120290 501 0.00 2019-10-13 23:26:06 2019-10-14 00:49:59 t 1 1 120292 551 0.00 2019-10-14 00:09:09 2019-10-14 00:55:26 t 1 1 119984 490 0.00 2019-10-13 20:24:21 2019-10-13 20:27:57 t 1 1 119985 220 0.00 2019-10-13 20:17:33 2019-10-13 20:28:06 t 1 1 119989 220 0.00 2019-10-13 20:28:22 2019-10-13 20:32:39 t 1 1 119993 306 0.00 2019-10-13 20:31:15 2019-10-13 20:44:04 t 1 1 119995 430 0.00 2019-10-13 20:44:24 2019-10-13 20:44:40 t 1 1 119997 501 0.00 2019-10-13 20:49:01 2019-10-13 20:49:44 t 1 1 120001 503 0.00 2019-10-13 20:48:36 2019-10-13 20:53:11 t 1 1 120004 501 0.00 2019-10-13 20:53:30 2019-10-13 20:54:29 t 1 1 120005 327 0.00 2019-10-13 20:38:49 2019-10-13 20:55:26 t 1 1 120007 501 0.00 2019-10-13 20:56:32 2019-10-13 20:56:41 t 1 1 120009 501 0.00 2019-10-13 20:58:35 2019-10-13 20:58:36 t 1 1 120010 528 0.00 2019-10-13 20:23:04 2019-10-13 20:59:25 t 1 1 120015 296 0.00 2019-10-13 21:00:54 2019-10-13 21:02:14 t 1 2 120017 430 0.00 2019-10-13 20:44:53 2019-10-13 21:02:57 t 1 1 120018 520 0.00 2019-10-13 21:01:03 2019-10-13 21:03:29 t 1 1 120023 422 0.00 2019-10-13 21:04:49 2019-10-13 21:06:23 t 1 1 120025 501 0.00 2019-10-13 21:06:03 2019-10-13 21:07:31 t 1 1 120034 501 0.00 2019-10-13 21:09:21 2019-10-13 21:11:23 t 1 1 120041 501 0.00 2019-10-13 21:13:50 2019-10-13 21:14:38 t 1 1 120044 327 0.00 2019-10-13 21:15:05 2019-10-13 21:15:14 t 1 1 120045 520 0.00 2019-10-13 21:12:42 2019-10-13 21:15:59 t 1 1 120046 408 0.00 2019-10-13 21:13:56 2019-10-13 21:16:59 t 1 1 120049 220 0.00 2019-10-13 21:17:07 2019-10-13 21:17:17 t 1 1 120052 220 0.00 2019-10-13 21:17:38 2019-10-13 21:17:49 t 1 1 120056 220 0.00 2019-10-13 21:18:08 2019-10-13 21:18:19 t 1 1 120059 220 0.00 2019-10-13 21:18:38 2019-10-13 21:18:48 t 1 1 120060 220 0.00 2019-10-13 21:18:48 2019-10-13 21:18:58 t 1 1 120066 220 0.00 2019-10-13 21:19:27 2019-10-13 21:19:37 t 1 1 120071 220 0.00 2019-10-13 21:20:08 2019-10-13 21:20:19 t 1 1 120078 512 0.00 2019-10-13 20:54:07 2019-10-13 21:21:03 t 1 1 120081 220 0.00 2019-10-13 21:21:09 2019-10-13 21:21:19 t 1 1 120084 220 0.00 2019-10-13 21:21:39 2019-10-13 21:21:50 t 1 1 120085 220 0.00 2019-10-13 21:21:50 2019-10-13 21:22:00 t 1 1 120088 220 0.00 2019-10-13 21:22:21 2019-10-13 21:22:32 t 1 1 120091 220 0.00 2019-10-13 21:22:41 2019-10-13 21:22:52 t 1 1 120092 220 0.00 2019-10-13 21:22:51 2019-10-13 21:23:01 t 1 1 120095 220 0.00 2019-10-13 21:23:11 2019-10-13 21:23:21 t 1 1 120103 510 0.00 2019-10-13 21:09:18 2019-10-13 21:24:23 t 1 1 120104 220 0.00 2019-10-13 21:24:20 2019-10-13 21:24:30 t 1 1 120107 451 0.00 2019-10-13 21:11:43 2019-10-13 21:24:56 t 1 1 120109 501 0.00 2019-10-13 21:24:54 2019-10-13 21:25:02 t 1 1 120111 220 0.00 2019-10-13 21:24:59 2019-10-13 21:25:10 t 1 1 120113 220 0.00 2019-10-13 21:25:19 2019-10-13 21:25:58 t 1 1 120115 327 0.00 2019-10-13 21:25:36 2019-10-13 21:26:08 t 1 1 120118 220 0.00 2019-10-13 21:26:28 2019-10-13 21:26:38 t 1 1 120126 220 0.00 2019-10-13 21:27:24 2019-10-13 21:27:34 t 1 1 120132 220 0.00 2019-10-13 21:28:07 2019-10-13 21:28:18 t 1 1 120135 220 0.00 2019-10-13 21:28:39 2019-10-13 21:28:50 t 1 1 120137 361 0.00 2019-10-13 21:29:00 2019-10-13 21:29:00 f 1 2 120139 361 0.00 2019-10-13 21:19:52 2019-10-13 21:29:58 t 1 2 120143 451 0.00 2019-10-13 21:24:56 2019-10-13 21:31:53 t 1 1 120146 501 0.00 2019-10-13 21:33:53 2019-10-13 21:34:21 t 1 1 120147 220 0.00 2019-10-13 21:33:54 2019-10-13 21:35:53 t 1 1 120150 503 0.00 2019-10-13 21:29:44 2019-10-13 21:37:20 t 1 1 120152 501 0.00 2019-10-13 21:36:58 2019-10-13 21:37:28 t 1 1 120153 456 0.00 2019-10-13 21:27:51 2019-10-13 21:38:33 t 1 1 120155 220 0.00 2019-10-13 21:39:11 2019-10-13 21:39:14 t 1 1 120159 408 0.00 2019-10-13 21:36:16 2019-10-13 21:42:34 t 1 1 120160 361 0.00 2019-10-13 21:42:44 2019-10-13 21:42:44 f 1 2 120161 361 0.00 2019-10-13 21:43:09 2019-10-13 21:43:09 f 1 2 120176 538 0.00 2019-10-13 21:37:47 2019-10-13 22:01:15 t 1 1 120179 466 0.00 2019-10-13 21:21:05 2019-10-13 22:03:46 t 1 1 120180 220 0.00 2019-10-13 21:40:16 2019-10-13 22:04:53 t 1 2 120182 545 0.00 2019-10-13 21:55:05 2019-10-13 22:06:29 t 1 1 120183 520 0.00 2019-10-13 22:00:32 2019-10-13 22:07:39 t 1 1 120185 516 0.00 2019-10-13 22:03:19 2019-10-13 22:08:28 t 1 1 120188 472 0.00 2019-10-13 22:08:36 2019-10-13 22:11:26 t 1 1 120192 514 0.00 2019-10-13 22:15:15 2019-10-13 22:16:51 t 1 1 120195 327 0.00 2019-10-13 22:13:51 2019-10-13 22:20:28 t 1 1 120196 468 0.00 2019-10-13 22:00:16 2019-10-13 22:21:39 t 1 1 120201 476 0.00 2019-10-13 22:11:07 2019-10-13 22:29:19 t 1 2 120211 538 0.00 2019-10-13 22:36:49 2019-10-13 22:37:55 t 1 1 120213 327 0.00 2019-10-13 22:37:25 2019-10-13 22:41:22 t 1 1 120215 510 0.00 2019-10-13 22:32:47 2019-10-13 22:42:01 t 1 1 120216 514 0.00 2019-10-13 22:28:03 2019-10-13 22:42:06 t 1 1 120222 468 0.00 2019-10-13 22:35:17 2019-10-13 22:51:55 t 1 1 120223 510 0.00 2019-10-13 22:42:01 2019-10-13 22:52:06 t 1 1 120230 306 0.00 2019-10-13 22:32:36 2019-10-13 22:57:15 t 1 1 120232 490 0.00 2019-10-13 22:13:48 2019-10-13 22:59:20 t 1 1 120236 510 0.00 2019-10-13 22:52:06 2019-10-13 23:01:53 t 1 1 120237 512 0.00 2019-10-13 22:18:43 2019-10-13 23:02:25 t 1 1 120239 306 0.00 2019-10-13 22:57:15 2019-10-13 23:02:37 t 1 1 120242 327 0.00 2019-10-13 23:06:13 2019-10-13 23:06:44 t 1 1 120243 327 0.00 2019-10-13 23:07:28 2019-10-13 23:07:36 t 1 1 120244 327 0.00 2019-10-13 23:07:48 2019-10-13 23:08:54 t 1 1 120245 510 0.00 2019-10-13 23:01:53 2019-10-13 23:09:19 t 1 1 120255 501 0.00 2019-10-13 23:02:29 2019-10-13 23:19:33 t 1 1 120259 501 0.00 2019-10-13 23:19:33 2019-10-13 23:26:06 t 1 1 120260 327 0.00 2019-10-13 23:26:06 2019-10-13 23:27:02 t 1 1 120265 468 0.00 2019-10-13 22:59:47 2019-10-13 23:32:45 t 1 1 120266 526 0.00 2019-10-13 23:28:14 2019-10-13 23:33:25 t 1 1 120272 220 0.00 2019-10-13 21:29:00 2019-10-13 23:40:03 t 1 1 120278 468 0.00 2019-10-13 23:52:06 2019-10-13 23:58:27 t 1 1 120280 412 0.00 2019-10-13 22:01:24 2019-10-14 00:02:08 t 1 1 120282 468 0.00 2019-10-14 00:00:17 2019-10-14 00:13:39 t 1 1 120285 412 0.00 2019-10-14 00:02:08 2019-10-14 00:19:16 t 1 1 120291 514 0.00 2019-10-13 23:12:23 2019-10-14 00:54:49 t 1 1 120293 503 0.00 2019-10-14 00:32:18 2019-10-14 00:58:25 t 1 1 120294 503 0.00 2019-10-14 00:58:25 2019-10-14 01:04:09 t 1 1 120298 466 0.00 2019-10-14 01:16:26 2019-10-14 01:26:24 t 1 1 120299 514 0.00 2019-10-14 00:54:49 2019-10-14 01:28:06 t 1 1 120306 558 0.00 2019-10-14 03:00:19 2019-10-14 03:03:01 t 1 1 120309 558 0.00 2019-10-14 03:37:03 2019-10-14 03:50:50 t 1 1 120310 445 0.00 2019-10-13 23:11:04 2019-10-14 04:14:14 t 1 1 120316 516 0.00 2019-10-14 05:24:20 2019-10-14 05:42:47 t 1 1 120319 528 0.00 2019-10-14 06:12:30 2019-10-14 06:13:01 t 1 1 120320 528 0.00 2019-10-14 06:13:29 2019-10-14 06:13:58 t 1 1 119996 490 0.00 2019-10-13 20:43:36 2019-10-13 20:48:22 t 1 1 120003 306 0.00 2019-10-13 20:44:59 2019-10-13 20:54:12 t 1 1 120013 501 0.00 2019-10-13 21:00:07 2019-10-13 21:01:32 t 1 1 120016 422 0.00 2019-10-13 18:29:21 2019-10-13 21:02:21 t 1 1 120020 520 0.00 2019-10-13 21:03:29 2019-10-13 21:04:36 t 1 1 120022 412 0.00 2019-10-13 19:31:25 2019-10-13 21:05:45 t 1 1 120024 361 0.00 2019-10-13 18:22:47 2019-10-13 21:07:08 t 1 2 120026 501 0.00 2019-10-13 21:07:39 2019-10-13 21:07:40 t 1 1 120030 501 0.00 2019-10-13 21:09:28 2019-10-13 21:09:42 t 1 1 120031 408 0.00 2019-10-13 20:52:10 2019-10-13 21:10:39 t 1 1 120032 520 0.00 2019-10-13 21:08:19 2019-10-13 21:10:47 t 1 1 120033 501 0.00 2019-10-13 21:10:57 2019-10-13 21:11:20 t 1 1 120036 520 0.00 2019-10-13 21:10:47 2019-10-13 21:11:52 t 1 1 120037 520 0.00 2019-10-13 21:11:48 2019-10-13 21:12:43 t 1 1 120047 501 0.00 2019-10-13 21:16:49 2019-10-13 21:17:00 t 1 1 120050 220 0.00 2019-10-13 21:17:17 2019-10-13 21:17:29 t 1 1 120054 501 0.00 2019-10-13 21:17:50 2019-10-13 21:17:59 t 1 1 120057 220 0.00 2019-10-13 21:18:18 2019-10-13 21:18:29 t 1 1 120061 220 0.00 2019-10-13 21:18:58 2019-10-13 21:19:08 t 1 1 120063 481 0.00 2019-10-13 20:11:42 2019-10-13 21:19:24 t 1 1 120064 220 0.00 2019-10-13 21:19:17 2019-10-13 21:19:28 t 1 1 120067 220 0.00 2019-10-13 21:19:37 2019-10-13 21:19:48 t 1 1 120069 501 0.00 2019-10-13 21:19:32 2019-10-13 21:20:05 t 1 1 120072 220 0.00 2019-10-13 21:20:18 2019-10-13 21:20:29 t 1 1 120075 528 0.00 2019-10-13 21:00:17 2019-10-13 21:20:47 t 1 1 120077 220 0.00 2019-10-13 21:20:48 2019-10-13 21:20:59 t 1 1 120079 501 0.00 2019-10-13 21:20:58 2019-10-13 21:21:07 t 1 1 120082 220 0.00 2019-10-13 21:21:18 2019-10-13 21:21:30 t 1 1 120086 220 0.00 2019-10-13 21:21:59 2019-10-13 21:22:12 t 1 1 120093 220 0.00 2019-10-13 21:23:01 2019-10-13 21:23:11 t 1 1 120096 220 0.00 2019-10-13 21:23:21 2019-10-13 21:23:31 t 1 1 120097 220 0.00 2019-10-13 21:23:31 2019-10-13 21:23:41 t 1 1 120098 220 0.00 2019-10-13 21:23:40 2019-10-13 21:23:51 t 1 1 120099 220 0.00 2019-10-13 21:23:50 2019-10-13 21:24:01 t 1 1 120101 501 0.00 2019-10-13 21:23:43 2019-10-13 21:24:17 t 1 1 120102 220 0.00 2019-10-13 21:24:10 2019-10-13 21:24:20 t 1 1 120105 220 0.00 2019-10-13 21:24:30 2019-10-13 21:24:40 t 1 1 120108 220 0.00 2019-10-13 21:24:49 2019-10-13 21:25:00 t 1 1 120110 520 0.00 2019-10-13 21:15:58 2019-10-13 21:25:10 t 1 1 120112 220 0.00 2019-10-13 21:25:09 2019-10-13 21:25:20 t 1 1 120114 220 0.00 2019-10-13 21:25:57 2019-10-13 21:26:08 t 1 1 120116 220 0.00 2019-10-13 21:26:07 2019-10-13 21:26:18 t 1 1 120119 220 0.00 2019-10-13 21:26:37 2019-10-13 21:26:48 t 1 1 120120 220 0.00 2019-10-13 21:26:47 2019-10-13 21:27:01 t 1 1 120122 430 0.00 2019-10-13 21:20:35 2019-10-13 21:27:09 t 1 1 120124 408 0.00 2019-10-13 21:23:21 2019-10-13 21:27:22 t 1 1 120127 220 0.00 2019-10-13 21:27:34 2019-10-13 21:27:47 t 1 1 120130 528 0.00 2019-10-13 21:27:25 2019-10-13 21:27:57 t 1 1 120133 220 0.00 2019-10-13 21:28:18 2019-10-13 21:28:29 t 1 1 120138 375 0.00 2019-10-13 19:31:11 2019-10-13 21:29:39 t 1 1 120141 408 0.00 2019-10-13 21:27:22 2019-10-13 21:30:17 t 1 1 120142 501 0.00 2019-10-13 21:30:56 2019-10-13 21:30:57 t 1 1 120144 220 0.00 2019-10-13 21:29:14 2019-10-13 21:32:29 t 1 1 120145 408 0.00 2019-10-13 21:33:30 2019-10-13 21:33:51 t 1 1 120149 361 0.00 2019-10-13 21:27:02 2019-10-13 21:37:07 t 1 2 120151 327 0.00 2019-10-13 21:36:07 2019-10-13 21:37:26 t 1 1 120154 538 0.00 2019-10-13 21:24:18 2019-10-13 21:38:39 t 1 1 120158 361 0.00 2019-10-13 21:42:33 2019-10-13 21:42:33 f 1 2 120162 361 0.00 2019-10-13 21:43:28 2019-10-13 21:43:28 f 1 2 120163 361 0.00 2019-10-13 21:44:11 2019-10-13 21:44:11 f 1 2 120165 361 0.00 2019-10-13 21:45:03 2019-10-13 21:45:03 f 1 2 120167 470 0.00 2019-10-13 21:41:10 2019-10-13 21:45:28 t 1 1 120169 408 0.00 2019-10-13 21:42:34 2019-10-13 21:48:38 t 1 1 120171 361 0.00 2019-10-13 21:38:50 2019-10-13 21:48:55 t 1 2 120175 468 0.00 2019-10-13 21:47:02 2019-10-13 22:00:16 t 1 1 120177 412 0.00 2019-10-13 21:05:45 2019-10-13 22:01:24 t 1 1 120184 306 0.00 2019-10-13 21:51:27 2019-10-13 22:08:01 t 1 1 120186 556 0.00 2019-10-13 19:56:20 2019-10-13 22:08:43 t 1 1 120191 466 0.00 2019-10-13 22:11:47 2019-10-13 22:15:12 t 1 1 120194 466 0.00 2019-10-13 22:15:57 2019-10-13 22:20:17 t 1 1 120198 470 0.00 2019-10-13 21:57:39 2019-10-13 22:27:10 t 1 1 120199 514 0.00 2019-10-13 22:17:38 2019-10-13 22:28:03 t 1 1 120203 510 0.00 2019-10-13 21:24:23 2019-10-13 22:32:47 t 1 1 120204 470 0.00 2019-10-13 22:27:10 2019-10-13 22:33:39 t 1 1 120205 468 0.00 2019-10-13 22:23:31 2019-10-13 22:35:17 t 1 1 120207 501 0.00 2019-10-13 21:40:44 2019-10-13 22:35:41 t 1 1 120209 327 0.00 2019-10-13 22:21:26 2019-10-13 22:36:41 t 1 1 120210 501 0.00 2019-10-13 22:36:43 2019-10-13 22:36:52 t 1 1 120212 501 0.00 2019-10-13 22:37:46 2019-10-13 22:38:46 t 1 1 120217 528 0.00 2019-10-13 21:51:32 2019-10-13 22:42:13 t 1 1 120219 520 0.00 2019-10-13 22:43:26 2019-10-13 22:45:57 t 1 1 120221 501 0.00 2019-10-13 22:40:00 2019-10-13 22:50:32 t 1 1 120224 470 0.00 2019-10-13 22:33:39 2019-10-13 22:52:55 t 1 1 120225 456 0.00 2019-10-13 22:23:34 2019-10-13 22:55:14 t 1 1 120227 514 0.00 2019-10-13 22:42:06 2019-10-13 22:56:11 t 1 1 120228 466 0.00 2019-10-13 22:20:16 2019-10-13 22:56:50 t 1 1 120233 468 0.00 2019-10-13 22:55:41 2019-10-13 22:59:47 t 1 1 120241 445 0.00 2019-10-13 20:32:08 2019-10-13 23:06:37 t 1 1 120248 472 0.00 2019-10-13 22:34:05 2019-10-13 23:10:40 t 1 1 120249 445 0.00 2019-10-13 23:10:22 2019-10-13 23:11:23 t 1 1 120250 514 0.00 2019-10-13 22:56:11 2019-10-13 23:12:23 t 1 1 120252 476 0.00 2019-10-13 22:59:32 2019-10-13 23:14:37 t 1 2 120253 408 0.00 2019-10-13 23:09:13 2019-10-13 23:15:20 t 1 1 120254 510 0.00 2019-10-13 23:09:19 2019-10-13 23:17:22 t 1 1 120257 466 0.00 2019-10-13 22:56:49 2019-10-13 23:21:26 t 1 1 120258 327 0.00 2019-10-13 23:21:09 2019-10-13 23:23:19 t 1 1 120261 327 0.00 2019-10-13 23:27:09 2019-10-13 23:27:16 t 1 1 120262 526 0.00 2019-10-13 23:10:16 2019-10-13 23:28:14 t 1 1 120263 327 0.00 2019-10-13 23:27:54 2019-10-13 23:29:00 t 1 1 120264 544 0.00 2019-10-13 23:14:15 2019-10-13 23:30:22 t 1 1 120267 528 0.00 2019-10-13 22:42:13 2019-10-13 23:34:13 t 1 1 120268 510 0.00 2019-10-13 23:17:22 2019-10-13 23:35:02 t 1 1 120271 544 0.00 2019-10-13 23:30:22 2019-10-13 23:39:08 t 1 1 120276 468 0.00 2019-10-13 23:32:45 2019-10-13 23:50:07 t 1 1 120283 558 0.00 2019-10-13 19:58:58 2019-10-14 00:17:44 t 1 1 120284 483 0.00 2019-10-14 00:15:22 2019-10-14 00:19:05 t 1 1 120286 483 0.00 2019-10-14 00:25:28 2019-10-14 00:30:27 t 1 1 120288 538 0.00 2019-10-13 22:55:44 2019-10-14 00:31:57 t 1 1 120300 416 0.00 2019-10-13 23:37:03 2019-10-14 01:33:32 t 1 1 120301 551 0.00 2019-10-14 01:08:54 2019-10-14 01:34:32 t 1 1 120302 416 0.00 2019-10-14 01:34:20 2019-10-14 01:37:36 t 1 1 120305 558 0.00 2019-10-14 02:42:17 2019-10-14 02:59:23 t 1 1 120311 445 0.00 2019-10-14 04:14:21 2019-10-14 04:15:02 t 1 1 120313 520 0.00 2019-10-14 04:44:45 2019-10-14 05:15:44 t 1 1 120314 538 0.00 2019-10-14 05:15:41 2019-10-14 05:19:05 t 1 1 120317 528 0.00 2019-10-14 06:05:09 2019-10-14 06:07:00 t 1 1 120323 528 0.00 2019-10-14 06:20:20 2019-10-14 06:21:05 t 1 1 120324 476 0.00 2019-10-14 06:15:06 2019-10-14 06:25:11 t 1 2 120326 516 0.00 2019-10-14 06:14:16 2019-10-14 06:25:34 t 1 1 120327 528 0.00 2019-10-14 06:30:57 2019-10-14 06:31:20 t 1 1 120329 430 0.00 2019-10-14 06:25:21 2019-10-14 06:34:13 t 1 1 120333 551 0.00 2019-10-14 06:42:34 2019-10-14 06:51:34 t 1 1 120337 558 0.00 2019-10-14 03:51:33 2019-10-14 07:12:32 t 1 1 120342 528 0.00 2019-10-14 07:02:09 2019-10-14 07:22:06 t 1 1 120344 514 0.00 2019-10-14 07:21:23 2019-10-14 07:27:04 t 1 1 120346 306 0.00 2019-10-14 07:27:18 2019-10-14 07:31:07 t 1 1 120347 220 0.00 2019-10-14 07:05:30 2019-10-14 07:33:50 t 1 2 120351 445 0.00 2019-10-14 07:35:17 2019-10-14 07:51:07 t 1 1 120352 558 0.00 2019-10-14 07:45:06 2019-10-14 07:53:07 t 1 1 120356 445 0.00 2019-10-14 07:51:07 2019-10-14 07:59:57 t 1 1 120358 528 0.00 2019-10-14 08:15:19 2019-10-14 08:16:53 t 1 1 120361 558 0.00 2019-10-14 08:26:03 2019-10-14 08:27:16 t 1 1 120365 445 0.00 2019-10-14 08:32:30 2019-10-14 08:34:43 t 1 1 120367 501 0.00 2019-10-14 08:36:35 2019-10-14 08:38:35 t 1 1 120369 306 0.00 2019-10-14 08:37:40 2019-10-14 08:44:12 t 1 1 120370 220 0.00 2019-10-14 08:35:15 2019-10-14 08:48:47 t 1 1 120379 470 0.00 2019-10-14 09:05:02 2019-10-14 09:05:24 t 1 1 120382 501 0.00 2019-10-14 09:05:56 2019-10-14 09:06:03 t 1 1 120384 501 0.00 2019-10-14 09:08:33 2019-10-14 09:08:46 t 1 1 120385 501 0.00 2019-10-14 09:09:28 2019-10-14 09:09:36 t 1 1 120392 501 0.00 2019-10-14 09:13:43 2019-10-14 09:13:50 t 1 1 120393 501 0.00 2019-10-14 09:14:30 2019-10-14 09:14:37 t 1 1 120396 501 0.00 2019-10-14 09:15:44 2019-10-14 09:15:45 t 1 1 120401 501 0.00 2019-10-14 09:19:11 2019-10-14 09:19:19 t 1 1 120403 501 0.00 2019-10-14 09:20:18 2019-10-14 09:20:18 t 1 1 120406 416 0.00 2019-10-14 09:30:35 2019-10-14 09:33:07 t 1 1 120407 501 0.00 2019-10-14 09:21:23 2019-10-14 09:35:00 t 1 1 120410 501 0.00 2019-10-14 09:39:23 2019-10-14 09:39:58 t 1 1 120412 501 0.00 2019-10-14 09:41:30 2019-10-14 09:42:26 t 1 1 120417 501 0.00 2019-10-14 09:44:34 2019-10-14 09:46:24 t 1 1 120418 501 0.00 2019-10-14 09:46:32 2019-10-14 09:47:06 t 1 1 120422 501 0.00 2019-10-14 09:48:40 2019-10-14 09:48:49 t 1 1 120424 528 0.00 2019-10-14 09:33:40 2019-10-14 09:49:30 t 1 1 120425 501 0.00 2019-10-14 09:49:33 2019-10-14 09:49:46 t 1 1 120431 501 0.00 2019-10-14 09:54:30 2019-10-14 09:54:38 t 1 1 120434 498 0.00 2019-10-14 08:15:09 2019-10-14 09:57:58 t 1 2 120437 501 0.00 2019-10-14 09:57:08 2019-10-14 09:59:24 t 1 1 120442 501 0.00 2019-10-14 10:04:06 2019-10-14 10:05:51 t 1 1 120443 501 0.00 2019-10-14 10:05:56 2019-10-14 10:06:12 t 1 1 120445 501 0.00 2019-10-14 10:08:16 2019-10-14 10:08:49 t 1 1 120446 327 0.00 2019-10-14 09:53:10 2019-10-14 10:09:13 t 1 1 120449 501 0.00 2019-10-14 10:10:10 2019-10-14 10:10:17 t 1 1 120450 501 0.00 2019-10-14 10:11:21 2019-10-14 10:11:28 t 1 1 120457 501 0.00 2019-10-14 10:17:51 2019-10-14 10:18:31 t 1 1 120463 501 0.00 2019-10-14 10:23:28 2019-10-14 10:23:29 t 1 1 120467 501 0.00 2019-10-14 10:25:56 2019-10-14 10:26:03 t 1 1 120469 416 0.00 2019-10-14 10:12:19 2019-10-14 10:28:10 t 1 1 120471 538 0.00 2019-10-14 09:53:42 2019-10-14 10:28:38 t 1 1 120474 501 0.00 2019-10-14 10:29:59 2019-10-14 10:30:32 t 1 1 120475 501 0.00 2019-10-14 10:30:59 2019-10-14 10:31:18 t 1 1 120479 501 0.00 2019-10-14 10:34:43 2019-10-14 10:35:00 t 1 1 120482 501 0.00 2019-10-14 10:37:12 2019-10-14 10:38:02 t 1 1 120485 501 0.00 2019-10-14 10:40:04 2019-10-14 10:40:12 t 1 1 120506 306 0.00 2019-10-14 11:00:04 2019-10-14 11:05:15 t 1 1 120514 422 0.00 2019-10-14 11:09:11 2019-10-14 11:17:17 t 1 1 120527 325 0.00 2019-10-14 11:32:39 2019-10-14 11:32:50 t 1 2 120530 470 0.00 2019-10-14 11:32:11 2019-10-14 11:41:56 t 1 1 120531 220 0.00 2019-10-14 11:34:09 2019-10-14 11:42:04 t 1 1 120532 422 0.00 2019-10-14 11:17:17 2019-10-14 11:44:15 t 1 1 120534 470 0.00 2019-10-14 11:41:56 2019-10-14 11:44:54 t 1 1 120535 538 0.00 2019-10-14 11:02:43 2019-10-14 11:46:11 t 1 1 120536 220 0.00 2019-10-14 11:45:59 2019-10-14 11:47:01 t 1 1 120540 306 0.00 2019-10-14 11:49:57 2019-10-14 11:52:51 t 1 1 120543 416 0.00 2019-10-14 10:32:51 2019-10-14 11:57:52 t 1 1 120544 514 0.00 2019-10-14 11:52:35 2019-10-14 11:58:15 t 1 1 120547 468 0.00 2019-10-14 11:50:29 2019-10-14 12:00:44 t 1 1 120550 468 0.00 2019-10-14 12:00:44 2019-10-14 12:05:05 t 1 1 120555 528 0.00 2019-10-14 12:07:30 2019-10-14 12:08:16 t 1 1 120560 501 0.00 2019-10-14 12:06:16 2019-10-14 12:11:21 t 1 1 120562 501 0.00 2019-10-14 12:12:24 2019-10-14 12:12:58 t 1 1 120563 501 0.00 2019-10-14 12:13:24 2019-10-14 12:13:31 t 1 1 120564 501 0.00 2019-10-14 12:14:24 2019-10-14 12:14:31 t 1 1 120567 528 0.00 2019-10-14 12:15:32 2019-10-14 12:16:06 t 1 1 120569 501 0.00 2019-10-14 12:16:40 2019-10-14 12:17:59 t 1 1 120573 306 0.00 2019-10-14 12:18:24 2019-10-14 12:22:50 t 1 1 120576 501 0.00 2019-10-14 12:25:33 2019-10-14 12:25:48 t 1 1 120577 501 0.00 2019-10-14 12:26:27 2019-10-14 12:26:34 t 1 1 120579 501 0.00 2019-10-14 12:27:27 2019-10-14 12:28:00 t 1 1 120583 501 0.00 2019-10-14 12:30:28 2019-10-14 12:30:35 t 1 1 120584 306 0.00 2019-10-14 12:29:20 2019-10-14 12:31:32 t 1 1 120586 501 0.00 2019-10-14 12:31:57 2019-10-14 12:32:29 t 1 1 120588 528 0.00 2019-10-14 12:33:21 2019-10-14 12:33:46 t 1 1 120595 514 0.00 2019-10-14 12:36:27 2019-10-14 12:39:43 t 1 1 120597 562 0.00 2019-10-14 12:35:18 2019-10-14 12:41:00 t 1 1 120607 562 0.00 2019-10-14 12:44:31 2019-10-14 12:48:36 t 1 1 120609 468 0.00 2019-10-14 12:49:55 2019-10-14 12:51:23 t 1 1 120616 306 0.00 2019-10-14 12:59:54 2019-10-14 13:02:39 t 1 1 120622 520 0.00 2019-10-14 13:09:15 2019-10-14 13:13:19 t 1 1 120630 528 0.00 2019-10-14 13:17:11 2019-10-14 13:17:53 t 1 1 120632 430 0.00 2019-10-14 13:20:17 2019-10-14 13:20:23 t 1 1 120643 562 0.00 2019-10-14 13:29:47 2019-10-14 13:30:55 t 1 1 120644 430 0.00 2019-10-14 13:34:09 2019-10-14 13:34:10 t 1 1 120645 451 0.00 2019-10-14 13:24:29 2019-10-14 13:35:06 t 1 1 120647 430 0.00 2019-10-14 13:35:17 2019-10-14 13:35:23 t 1 1 120295 468 0.00 2019-10-14 00:13:39 2019-10-14 01:05:58 t 1 1 120296 551 0.00 2019-10-14 00:55:26 2019-10-14 01:08:54 t 1 1 120297 466 0.00 2019-10-14 00:09:27 2019-10-14 01:16:25 t 1 1 120303 551 0.00 2019-10-14 01:34:32 2019-10-14 01:45:33 t 1 1 120304 514 0.00 2019-10-14 01:28:06 2019-10-14 02:02:45 t 1 1 120307 558 0.00 2019-10-14 03:05:10 2019-10-14 03:17:16 t 1 1 120308 558 0.00 2019-10-14 03:29:04 2019-10-14 03:35:34 t 1 1 120312 445 0.00 2019-10-14 04:15:28 2019-10-14 04:21:30 t 1 1 120315 485 0.00 2019-10-14 05:18:14 2019-10-14 05:21:44 t 1 1 120318 498 0.00 2019-10-14 05:30:56 2019-10-14 06:09:49 t 1 2 120328 470 0.00 2019-10-14 05:52:39 2019-10-14 06:31:30 t 1 1 120330 528 0.00 2019-10-14 06:36:35 2019-10-14 06:37:19 t 1 1 120331 445 0.00 2019-10-14 04:21:30 2019-10-14 06:41:04 t 1 1 120332 430 0.00 2019-10-14 06:34:13 2019-10-14 06:42:19 t 1 1 120334 528 0.00 2019-10-14 06:42:32 2019-10-14 07:02:09 t 1 1 120336 466 0.00 2019-10-14 07:04:12 2019-10-14 07:07:26 t 1 1 120338 558 0.00 2019-10-14 07:13:49 2019-10-14 07:14:19 t 1 1 120340 516 0.00 2019-10-14 07:11:57 2019-10-14 07:16:08 t 1 1 120345 528 0.00 2019-10-14 07:22:06 2019-10-14 07:30:33 t 1 1 120348 445 0.00 2019-10-14 06:41:06 2019-10-14 07:34:59 t 1 1 120350 516 0.00 2019-10-14 07:43:25 2019-10-14 07:46:18 t 1 1 120353 456 0.00 2019-10-14 07:56:25 2019-10-14 07:58:45 t 1 1 120355 306 0.00 2019-10-14 07:55:46 2019-10-14 07:59:14 t 1 1 120364 445 0.00 2019-10-14 08:28:05 2019-10-14 08:30:59 t 1 1 120366 445 0.00 2019-10-14 08:34:49 2019-10-14 08:36:56 t 1 1 120368 445 0.00 2019-10-14 08:36:57 2019-10-14 08:42:50 t 1 1 120371 306 0.00 2019-10-14 08:44:11 2019-10-14 08:50:51 t 1 1 120373 501 0.00 2019-10-14 08:54:15 2019-10-14 08:55:24 t 1 1 120376 220 0.00 2019-10-14 08:48:46 2019-10-14 09:01:38 t 1 1 120378 481 0.00 2019-10-14 08:47:09 2019-10-14 09:02:23 t 1 1 120380 501 0.00 2019-10-14 09:04:40 2019-10-14 09:05:25 t 1 1 120386 220 0.00 2019-10-14 08:44:10 2019-10-14 09:09:49 t 1 2 120388 501 0.00 2019-10-14 09:10:05 2019-10-14 09:10:27 t 1 1 120389 501 0.00 2019-10-14 09:11:29 2019-10-14 09:11:37 t 1 1 120390 501 0.00 2019-10-14 09:12:02 2019-10-14 09:12:25 t 1 1 120391 501 0.00 2019-10-14 09:13:30 2019-10-14 09:13:37 t 1 1 120395 501 0.00 2019-10-14 09:15:31 2019-10-14 09:15:38 t 1 1 120398 556 0.00 2019-10-13 22:08:43 2019-10-14 09:16:55 t 1 1 120399 501 0.00 2019-10-14 09:16:10 2019-10-14 09:18:08 t 1 1 120402 520 0.00 2019-10-14 09:00:58 2019-10-14 09:19:59 t 1 1 120408 327 0.00 2019-10-14 09:18:50 2019-10-14 09:35:54 t 1 1 120409 501 0.00 2019-10-14 09:36:16 2019-10-14 09:38:21 t 1 1 120413 501 0.00 2019-10-14 09:42:34 2019-10-14 09:43:24 t 1 1 120414 520 0.00 2019-10-14 09:19:58 2019-10-14 09:44:23 t 1 1 120416 501 0.00 2019-10-14 09:44:50 2019-10-14 09:45:32 t 1 1 120420 501 0.00 2019-10-14 09:47:17 2019-10-14 09:47:32 t 1 1 120421 501 0.00 2019-10-14 09:48:34 2019-10-14 09:48:35 t 1 1 120428 327 0.00 2019-10-14 09:35:54 2019-10-14 09:53:10 t 1 1 120429 538 0.00 2019-10-14 09:16:51 2019-10-14 09:53:37 t 1 1 120430 501 0.00 2019-10-14 09:53:32 2019-10-14 09:54:22 t 1 1 120432 501 0.00 2019-10-14 09:54:45 2019-10-14 09:57:01 t 1 1 120433 501 0.00 2019-10-14 09:57:16 2019-10-14 09:57:27 t 1 1 120438 501 0.00 2019-10-14 10:00:04 2019-10-14 10:00:11 t 1 1 120439 501 0.00 2019-10-14 10:00:49 2019-10-14 10:01:18 t 1 1 120440 501 0.00 2019-10-14 10:02:06 2019-10-14 10:02:14 t 1 1 120441 501 0.00 2019-10-14 10:03:06 2019-10-14 10:03:13 t 1 1 120447 501 0.00 2019-10-14 10:08:57 2019-10-14 10:09:17 t 1 1 120453 501 0.00 2019-10-14 10:13:22 2019-10-14 10:14:30 t 1 1 120456 306 0.00 2019-10-14 10:16:15 2019-10-14 10:17:21 t 1 1 120461 501 0.00 2019-10-14 10:22:18 2019-10-14 10:22:26 t 1 1 120462 501 0.00 2019-10-14 10:22:54 2019-10-14 10:23:01 t 1 1 120465 501 0.00 2019-10-14 10:24:55 2019-10-14 10:25:02 t 1 1 120476 481 0.00 2019-10-14 09:23:47 2019-10-14 10:31:36 t 1 1 120478 306 0.00 2019-10-14 10:29:56 2019-10-14 10:33:00 t 1 1 120481 501 0.00 2019-10-14 10:35:24 2019-10-14 10:37:24 t 1 1 120483 470 0.00 2019-10-14 10:25:45 2019-10-14 10:38:28 t 1 1 120486 501 0.00 2019-10-14 10:41:05 2019-10-14 10:41:12 t 1 1 120487 501 0.00 2019-10-14 10:42:04 2019-10-14 10:42:39 t 1 1 120488 501 0.00 2019-10-14 10:43:06 2019-10-14 10:43:13 t 1 1 120491 306 0.00 2019-10-14 10:40:14 2019-10-14 10:46:29 t 1 1 120493 501 0.00 2019-10-14 10:47:46 2019-10-14 10:49:00 t 1 1 120494 501 0.00 2019-10-14 10:50:08 2019-10-14 10:51:00 t 1 1 120496 501 0.00 2019-10-14 10:52:04 2019-10-14 10:55:00 t 1 1 120497 501 0.00 2019-10-14 10:55:55 2019-10-14 10:56:42 t 1 1 120498 501 0.00 2019-10-14 10:56:47 2019-10-14 10:57:00 t 1 1 120501 306 0.00 2019-10-14 10:50:10 2019-10-14 10:59:39 t 1 1 120503 501 0.00 2019-10-14 10:57:40 2019-10-14 11:01:55 t 1 1 120504 422 0.00 2019-10-13 23:36:23 2019-10-14 11:02:56 t 1 1 120507 481 0.00 2019-10-14 10:31:36 2019-10-14 11:05:44 t 1 1 120509 470 0.00 2019-10-14 10:59:14 2019-10-14 11:05:58 t 1 1 120510 220 0.00 2019-10-14 11:06:06 2019-10-14 11:06:14 t 1 2 120516 470 0.00 2019-10-14 11:05:58 2019-10-14 11:17:41 t 1 1 120517 501 0.00 2019-10-14 11:18:09 2019-10-14 11:18:17 t 1 1 120518 501 0.00 2019-10-14 11:19:10 2019-10-14 11:19:44 t 1 1 120520 220 0.00 2019-10-14 11:17:39 2019-10-14 11:20:19 t 1 1 120521 501 0.00 2019-10-14 11:21:40 2019-10-14 11:22:58 t 1 1 120523 220 0.00 2019-10-14 11:20:18 2019-10-14 11:26:17 t 1 1 120524 220 0.00 2019-10-14 11:26:32 2019-10-14 11:27:37 t 1 1 120529 528 0.00 2019-10-14 10:58:59 2019-10-14 11:41:25 t 1 1 120538 220 0.00 2019-10-14 11:47:22 2019-10-14 11:48:28 t 1 1 120541 528 0.00 2019-10-14 11:54:03 2019-10-14 11:54:33 t 1 1 120545 416 0.00 2019-10-14 11:57:52 2019-10-14 11:59:15 t 1 1 120548 416 0.00 2019-10-14 11:59:14 2019-10-14 12:01:40 t 1 1 120549 416 0.00 2019-10-14 12:01:40 2019-10-14 12:03:25 t 1 1 120551 528 0.00 2019-10-14 12:05:43 2019-10-14 12:06:22 t 1 1 120553 325 0.00 2019-10-14 11:33:10 2019-10-14 12:08:15 t 1 2 120557 220 0.00 2019-10-14 11:35:10 2019-10-14 12:09:01 t 1 2 120559 528 0.00 2019-10-14 12:09:36 2019-10-14 12:10:34 t 1 1 120565 422 0.00 2019-10-14 11:49:24 2019-10-14 12:14:35 t 1 1 120566 501 0.00 2019-10-14 12:15:25 2019-10-14 12:15:33 t 1 1 120570 501 0.00 2019-10-14 12:18:27 2019-10-14 12:18:35 t 1 1 120571 528 0.00 2019-10-14 12:21:19 2019-10-14 12:22:02 t 1 1 120572 514 0.00 2019-10-14 12:10:09 2019-10-14 12:22:44 t 1 1 120578 528 0.00 2019-10-14 12:27:14 2019-10-14 12:27:53 t 1 1 120581 501 0.00 2019-10-14 12:28:35 2019-10-14 12:28:43 t 1 1 120585 501 0.00 2019-10-14 12:31:29 2019-10-14 12:31:36 t 1 1 120587 416 0.00 2019-10-14 12:08:24 2019-10-14 12:32:39 t 1 1 120321 520 0.00 2019-10-14 06:07:12 2019-10-14 06:16:12 t 1 1 120322 430 0.00 2019-10-14 06:06:45 2019-10-14 06:18:42 t 1 1 120325 430 0.00 2019-10-14 06:18:42 2019-10-14 06:25:21 t 1 1 120335 551 0.00 2019-10-14 06:51:34 2019-10-14 07:04:04 t 1 1 120339 520 0.00 2019-10-14 07:00:05 2019-10-14 07:15:41 t 1 1 120341 551 0.00 2019-10-14 07:04:04 2019-10-14 07:21:09 t 1 1 120343 551 0.00 2019-10-14 07:21:09 2019-10-14 07:22:45 t 1 1 120349 558 0.00 2019-10-14 07:14:29 2019-10-14 07:45:07 t 1 1 120354 430 0.00 2019-10-14 07:58:22 2019-10-14 07:58:48 t 1 1 120357 306 0.00 2019-10-14 08:02:33 2019-10-14 08:06:52 t 1 1 120359 558 0.00 2019-10-14 08:07:32 2019-10-14 08:22:43 t 1 1 120360 558 0.00 2019-10-14 08:23:18 2019-10-14 08:25:44 t 1 1 120362 558 0.00 2019-10-14 08:27:45 2019-10-14 08:27:47 t 1 1 120363 445 0.00 2019-10-14 07:59:56 2019-10-14 08:28:05 t 1 1 120372 501 0.00 2019-10-14 08:39:23 2019-10-14 08:53:11 t 1 1 120374 501 0.00 2019-10-14 08:55:06 2019-10-14 09:00:26 t 1 1 120375 520 0.00 2019-10-14 08:53:19 2019-10-14 09:00:58 t 1 1 120377 306 0.00 2019-10-14 08:53:47 2019-10-14 09:01:53 t 1 1 120381 470 0.00 2019-10-14 06:31:30 2019-10-14 09:05:36 t 1 1 120383 408 0.00 2019-10-14 09:05:43 2019-10-14 09:07:03 t 1 1 120387 501 0.00 2019-10-14 09:09:58 2019-10-14 09:09:59 t 1 1 120394 501 0.00 2019-10-14 09:14:43 2019-10-14 09:14:51 t 1 1 120397 501 0.00 2019-10-14 09:15:51 2019-10-14 09:15:51 t 1 1 120400 327 0.00 2019-10-14 08:48:27 2019-10-14 09:18:50 t 1 1 120404 481 0.00 2019-10-14 09:02:23 2019-10-14 09:23:47 t 1 1 120405 416 0.00 2019-10-14 09:08:19 2019-10-14 09:29:15 t 1 1 120411 501 0.00 2019-10-14 09:40:24 2019-10-14 09:40:33 t 1 1 120415 501 0.00 2019-10-14 09:43:46 2019-10-14 09:44:27 t 1 1 120419 501 0.00 2019-10-14 09:47:13 2019-10-14 09:47:14 t 1 1 120423 470 0.00 2019-10-14 09:15:14 2019-10-14 09:49:24 t 1 1 120426 306 0.00 2019-10-14 09:43:09 2019-10-14 09:51:11 t 1 1 120427 501 0.00 2019-10-14 09:50:34 2019-10-14 09:52:22 t 1 1 120435 501 0.00 2019-10-14 09:58:03 2019-10-14 09:58:12 t 1 1 120436 501 0.00 2019-10-14 09:59:03 2019-10-14 09:59:10 t 1 1 120444 306 0.00 2019-10-14 09:56:45 2019-10-14 10:07:08 t 1 1 120448 306 0.00 2019-10-14 10:08:14 2019-10-14 10:09:29 t 1 1 120451 416 0.00 2019-10-14 09:33:18 2019-10-14 10:12:19 t 1 1 120452 501 0.00 2019-10-14 10:12:21 2019-10-14 10:12:28 t 1 1 120454 327 0.00 2019-10-14 10:13:16 2019-10-14 10:15:36 t 1 1 120455 501 0.00 2019-10-14 10:15:32 2019-10-14 10:16:48 t 1 1 120458 501 0.00 2019-10-14 10:18:36 2019-10-14 10:18:50 t 1 1 120459 501 0.00 2019-10-14 10:19:59 2019-10-14 10:20:59 t 1 1 120460 501 0.00 2019-10-14 10:21:54 2019-10-14 10:22:12 t 1 1 120464 501 0.00 2019-10-14 10:23:35 2019-10-14 10:23:51 t 1 1 120466 470 0.00 2019-10-14 09:51:44 2019-10-14 10:25:45 t 1 1 120468 501 0.00 2019-10-14 10:26:56 2019-10-14 10:26:57 t 1 1 120470 306 0.00 2019-10-14 10:18:19 2019-10-14 10:28:28 t 1 1 120472 501 0.00 2019-10-14 10:28:20 2019-10-14 10:28:55 t 1 1 120473 528 0.00 2019-10-14 09:49:36 2019-10-14 10:30:18 t 1 1 120477 416 0.00 2019-10-14 10:28:10 2019-10-14 10:32:52 t 1 1 120480 501 0.00 2019-10-14 10:35:08 2019-10-14 10:35:16 t 1 1 120484 501 0.00 2019-10-14 10:39:04 2019-10-14 10:39:42 t 1 1 120489 520 0.00 2019-10-14 10:18:22 2019-10-14 10:43:39 t 1 1 120490 501 0.00 2019-10-14 10:44:06 2019-10-14 10:44:13 t 1 1 120492 501 0.00 2019-10-14 10:45:07 2019-10-14 10:46:43 t 1 1 120495 470 0.00 2019-10-14 10:38:28 2019-10-14 10:51:30 t 1 1 120499 538 0.00 2019-10-14 10:28:52 2019-10-14 10:58:59 t 1 1 120500 470 0.00 2019-10-14 10:51:30 2019-10-14 10:59:14 t 1 1 120502 538 0.00 2019-10-14 10:59:05 2019-10-14 11:00:14 t 1 1 120505 501 0.00 2019-10-14 11:02:58 2019-10-14 11:03:32 t 1 1 120508 220 0.00 2019-10-14 11:05:48 2019-10-14 11:05:56 t 1 2 120511 422 0.00 2019-10-14 11:02:56 2019-10-14 11:09:11 t 1 1 120512 501 0.00 2019-10-14 11:05:46 2019-10-14 11:16:06 t 1 1 120513 306 0.00 2019-10-14 11:15:28 2019-10-14 11:17:14 t 1 1 120515 501 0.00 2019-10-14 11:17:09 2019-10-14 11:17:18 t 1 1 120519 501 0.00 2019-10-14 11:20:10 2019-10-14 11:20:11 t 1 1 120522 306 0.00 2019-10-14 11:21:14 2019-10-14 11:23:19 t 1 1 120525 481 0.00 2019-10-14 11:05:44 2019-10-14 11:29:55 t 1 1 120526 220 0.00 2019-10-14 11:27:42 2019-10-14 11:31:21 t 1 1 120528 456 0.00 2019-10-14 11:30:00 2019-10-14 11:32:58 t 1 1 120533 422 0.00 2019-10-14 11:44:15 2019-10-14 11:44:38 t 1 1 120537 408 0.00 2019-10-14 11:45:59 2019-10-14 11:47:23 t 1 1 120539 528 0.00 2019-10-14 11:41:25 2019-10-14 11:50:47 t 1 1 120542 528 0.00 2019-10-14 11:55:02 2019-10-14 11:55:05 t 1 1 120546 528 0.00 2019-10-14 11:59:53 2019-10-14 12:00:28 t 1 1 120552 416 0.00 2019-10-14 12:03:46 2019-10-14 12:06:35 t 1 1 120554 416 0.00 2019-10-14 12:08:14 2019-10-14 12:08:16 t 1 1 120556 516 0.00 2019-10-14 11:58:14 2019-10-14 12:08:25 t 1 1 120558 514 0.00 2019-10-14 11:58:15 2019-10-14 12:10:09 t 1 1 120561 501 0.00 2019-10-14 12:11:32 2019-10-14 12:11:39 t 1 1 120568 501 0.00 2019-10-14 12:16:25 2019-10-14 12:16:32 t 1 1 120574 456 0.00 2019-10-14 12:18:21 2019-10-14 12:24:02 t 1 1 120575 501 0.00 2019-10-14 12:19:26 2019-10-14 12:24:24 t 1 1 120580 501 0.00 2019-10-14 12:28:28 2019-10-14 12:28:29 t 1 1 120582 501 0.00 2019-10-14 12:29:28 2019-10-14 12:29:35 t 1 1 120589 514 0.00 2019-10-14 12:22:44 2019-10-14 12:34:02 t 1 1 120591 562 0.00 2019-10-14 12:32:09 2019-10-14 12:34:30 t 1 1 120598 562 0.00 2019-10-14 12:41:17 2019-10-14 12:41:50 t 1 1 120599 470 0.00 2019-10-14 12:24:24 2019-10-14 12:42:47 t 1 1 120602 430 0.00 2019-10-14 12:39:41 2019-10-14 12:44:53 t 1 1 120604 528 0.00 2019-10-14 12:44:55 2019-10-14 12:45:36 t 1 1 120608 538 0.00 2019-10-14 11:46:11 2019-10-14 12:49:21 t 1 1 120611 528 0.00 2019-10-14 12:55:09 2019-10-14 12:55:32 t 1 1 120612 306 0.00 2019-10-14 12:47:14 2019-10-14 12:56:28 t 1 1 120614 562 0.00 2019-10-14 12:51:58 2019-10-14 13:01:26 t 1 1 120617 430 0.00 2019-10-14 12:48:32 2019-10-14 13:03:42 t 1 1 120618 430 0.00 2019-10-14 13:03:46 2019-10-14 13:04:47 t 1 1 120620 470 0.00 2019-10-14 12:58:02 2019-10-14 13:12:45 t 1 1 120621 430 0.00 2019-10-14 13:04:54 2019-10-14 13:13:15 t 1 1 120623 430 0.00 2019-10-14 13:13:36 2019-10-14 13:13:42 t 1 1 120627 430 0.00 2019-10-14 13:16:05 2019-10-14 13:16:28 t 1 1 120634 430 0.00 2019-10-14 13:22:52 2019-10-14 13:23:07 t 1 1 120636 430 0.00 2019-10-14 13:25:01 2019-10-14 13:25:16 t 1 1 120637 466 0.00 2019-10-14 12:46:45 2019-10-14 13:26:22 t 1 1 120639 422 0.00 2019-10-14 12:14:35 2019-10-14 13:27:30 t 1 1 120641 470 0.00 2019-10-14 13:12:45 2019-10-14 13:29:58 t 1 1 120642 430 0.00 2019-10-14 13:30:29 2019-10-14 13:30:36 t 1 1 120590 306 0.00 2019-10-14 12:32:26 2019-10-14 12:34:26 t 1 1 120592 514 0.00 2019-10-14 12:34:02 2019-10-14 12:36:27 t 1 1 120593 416 0.00 2019-10-14 12:32:47 2019-10-14 12:37:23 t 1 1 120594 528 0.00 2019-10-14 12:39:11 2019-10-14 12:39:40 t 1 1 120596 501 0.00 2019-10-14 12:33:26 2019-10-14 12:40:35 t 1 1 120600 562 0.00 2019-10-14 12:42:27 2019-10-14 12:43:56 t 1 1 120601 466 0.00 2019-10-14 12:37:41 2019-10-14 12:44:46 t 1 1 120603 430 0.00 2019-10-14 12:44:58 2019-10-14 12:45:05 t 1 1 120605 498 0.00 2019-10-14 12:12:59 2019-10-14 12:46:39 t 1 2 120606 430 0.00 2019-10-14 12:48:12 2019-10-14 12:48:25 t 1 1 120610 528 0.00 2019-10-14 12:50:53 2019-10-14 12:51:32 t 1 1 120613 528 0.00 2019-10-14 13:00:23 2019-10-14 13:01:05 t 1 1 120615 516 0.00 2019-10-14 12:55:33 2019-10-14 13:01:29 t 1 1 120619 528 0.00 2019-10-14 13:11:22 2019-10-14 13:12:21 t 1 1 120624 416 0.00 2019-10-14 12:37:27 2019-10-14 13:14:23 t 1 1 120625 430 0.00 2019-10-14 13:14:44 2019-10-14 13:14:55 t 1 1 120626 430 0.00 2019-10-14 13:14:24 2019-10-14 13:16:24 t 1 1 120628 430 0.00 2019-10-14 13:16:37 2019-10-14 13:16:48 t 1 1 120629 562 0.00 2019-10-14 13:01:26 2019-10-14 13:17:13 t 1 1 120631 327 0.00 2019-10-14 12:52:08 2019-10-14 13:19:10 t 1 1 120633 430 0.00 2019-10-14 13:21:08 2019-10-14 13:21:32 t 1 1 120635 430 0.00 2019-10-14 13:23:21 2019-10-14 13:23:29 t 1 1 120638 528 0.00 2019-10-14 13:19:45 2019-10-14 13:27:21 t 1 1 120640 562 0.00 2019-10-14 13:17:43 2019-10-14 13:29:31 t 1 1 120646 510 0.00 2019-10-14 13:21:15 2019-10-14 13:35:09 t 1 1 120649 512 0.00 2019-10-14 13:23:33 2019-10-14 13:36:49 t 1 1 120651 554 0.00 2019-10-14 12:49:28 2019-10-14 13:37:22 t 1 1 120652 562 0.00 2019-10-14 13:36:54 2019-10-14 13:38:45 t 1 1 120654 514 0.00 2019-10-14 12:39:43 2019-10-14 13:42:04 t 1 1 120658 558 0.00 2019-10-14 13:31:48 2019-10-14 13:46:33 t 1 1 120659 220 0.00 2019-10-14 13:45:06 2019-10-14 13:47:14 t 1 1 120662 327 0.00 2019-10-14 13:46:44 2019-10-14 13:48:35 t 1 1 120663 520 0.00 2019-10-14 13:37:11 2019-10-14 13:49:11 t 1 1 120671 456 0.00 2019-10-14 13:45:14 2019-10-14 13:52:52 t 1 1 120675 220 0.00 2019-10-14 13:51:51 2019-10-14 13:54:42 t 1 1 120685 408 0.00 2019-10-14 13:56:21 2019-10-14 14:01:53 t 1 1 120687 508 0.00 2019-10-14 13:45:44 2019-10-14 14:04:08 t 1 2 120691 481 0.00 2019-10-14 11:29:55 2019-10-14 14:06:14 t 1 1 120692 430 0.00 2019-10-14 13:58:47 2019-10-14 14:07:15 t 1 1 120695 422 0.00 2019-10-14 14:01:29 2019-10-14 14:10:05 t 1 1 120699 327 0.00 2019-10-14 14:10:26 2019-10-14 14:11:00 t 1 1 120700 562 0.00 2019-10-14 14:05:38 2019-10-14 14:13:53 t 1 1 120706 451 0.00 2019-10-14 13:54:40 2019-10-14 14:20:22 t 1 1 120709 327 0.00 2019-10-14 14:20:56 2019-10-14 14:23:21 t 1 1 120711 451 0.00 2019-10-14 14:20:22 2019-10-14 14:26:10 t 1 1 120717 422 0.00 2019-10-14 14:26:48 2019-10-14 14:34:23 t 1 1 120719 470 0.00 2019-10-14 14:16:01 2019-10-14 14:36:11 t 1 1 120725 306 0.00 2019-10-14 14:39:52 2019-10-14 14:43:29 t 1 1 120732 508 0.00 2019-10-14 14:50:53 2019-10-14 14:51:36 t 1 2 120734 506 0.00 2019-10-14 14:44:15 2019-10-14 14:54:23 t 1 1 120736 470 0.00 2019-10-14 14:50:07 2019-10-14 15:00:56 t 1 1 120743 327 0.00 2019-10-14 15:08:19 2019-10-14 15:09:43 t 1 1 120746 470 0.00 2019-10-14 15:00:56 2019-10-14 15:10:45 t 1 1 120748 451 0.00 2019-10-14 14:26:10 2019-10-14 15:14:56 t 1 1 120749 562 0.00 2019-10-14 15:03:14 2019-10-14 15:15:09 t 1 1 120750 562 0.00 2019-10-14 15:16:05 2019-10-14 15:16:19 t 1 1 120752 327 0.00 2019-10-14 15:19:38 2019-10-14 15:21:42 t 1 1 120754 220 0.00 2019-10-14 14:19:55 2019-10-14 15:21:57 t 1 1 120755 422 0.00 2019-10-14 15:09:48 2019-10-14 15:25:09 t 1 1 120763 422 0.00 2019-10-14 15:25:09 2019-10-14 15:38:06 t 1 1 120766 562 0.00 2019-10-14 15:31:40 2019-10-14 15:40:34 t 1 1 120776 220 0.00 2019-10-14 15:22:03 2019-10-14 15:55:44 t 1 1 120778 514 0.00 2019-10-14 15:44:27 2019-10-14 15:57:23 t 1 1 120780 327 0.00 2019-10-14 16:04:24 2019-10-14 16:05:40 t 1 1 120786 562 0.00 2019-10-14 16:18:18 2019-10-14 16:18:23 t 1 1 120792 327 0.00 2019-10-14 16:27:55 2019-10-14 16:32:03 t 1 1 120795 554 0.00 2019-10-14 13:37:22 2019-10-14 16:36:34 t 1 1 120799 554 0.00 2019-10-14 16:40:31 2019-10-14 16:41:46 t 1 1 120800 327 0.00 2019-10-14 16:41:59 2019-10-14 16:42:35 t 1 1 120801 554 0.00 2019-10-14 16:41:46 2019-10-14 16:43:14 t 1 1 120806 422 0.00 2019-10-14 15:43:38 2019-10-14 16:50:10 t 1 1 120808 416 0.00 2019-10-14 13:15:31 2019-10-14 16:54:27 t 1 1 120813 416 0.00 2019-10-14 16:53:58 2019-10-14 17:07:30 t 1 1 120814 416 0.00 2019-10-14 17:07:35 2019-10-14 17:10:07 t 1 1 120816 468 0.00 2019-10-14 17:05:23 2019-10-14 17:12:37 t 1 1 120818 562 0.00 2019-10-14 17:02:04 2019-10-14 17:19:24 t 1 1 120822 327 0.00 2019-10-14 16:55:27 2019-10-14 17:21:40 t 1 1 120826 562 0.00 2019-10-14 17:25:13 2019-10-14 17:25:25 t 1 1 120828 416 0.00 2019-10-14 17:28:14 2019-10-14 17:29:22 t 1 1 120834 412 0.00 2019-10-14 17:32:04 2019-10-14 17:36:23 t 1 1 120835 562 0.00 2019-10-14 17:38:00 2019-10-14 17:38:49 t 1 1 120838 528 0.00 2019-10-14 17:39:49 2019-10-14 17:42:57 t 1 1 120840 516 0.00 2019-10-14 17:29:14 2019-10-14 17:43:35 t 1 1 120843 327 0.00 2019-10-14 17:21:40 2019-10-14 17:48:10 t 1 1 120846 564 0.00 2019-10-14 17:51:57 2019-10-14 17:53:29 t 1 1 120847 470 0.00 2019-10-14 17:43:17 2019-10-14 17:54:44 t 1 1 120849 514 0.00 2019-10-14 17:03:54 2019-10-14 17:57:48 t 1 1 120851 562 0.00 2019-10-14 18:01:45 2019-10-14 18:04:55 t 1 1 120853 562 0.00 2019-10-14 18:05:19 2019-10-14 18:05:25 t 1 1 120855 562 0.00 2019-10-14 18:07:13 2019-10-14 18:07:22 t 1 1 120858 466 0.00 2019-10-14 17:02:30 2019-10-14 18:08:24 t 1 1 120861 306 0.00 2019-10-14 18:14:48 2019-10-14 18:15:56 t 1 1 120865 306 0.00 2019-10-14 18:15:56 2019-10-14 18:19:03 t 1 1 120866 445 0.00 2019-10-14 17:38:30 2019-10-14 18:23:05 t 1 1 120871 470 0.00 2019-10-14 18:18:26 2019-10-14 18:29:59 t 1 1 120877 466 0.00 2019-10-14 18:35:05 2019-10-14 18:36:52 t 1 1 120882 445 0.00 2019-10-14 18:39:20 2019-10-14 18:41:08 t 1 1 120883 468 0.00 2019-10-14 18:34:10 2019-10-14 18:42:13 t 1 1 120884 562 0.00 2019-10-14 18:42:55 2019-10-14 18:43:19 t 1 1 120889 522 0.00 2019-10-14 18:47:39 2019-10-14 18:48:16 t 1 1 120893 445 0.00 2019-10-14 18:42:54 2019-10-14 18:49:48 t 1 1 120901 514 0.00 2019-10-14 17:57:48 2019-10-14 18:53:37 t 1 1 120905 466 0.00 2019-10-14 18:36:56 2019-10-14 19:01:05 t 1 1 120906 516 0.00 2019-10-14 18:58:10 2019-10-14 19:03:14 t 1 1 120908 514 0.00 2019-10-14 18:53:37 2019-10-14 19:06:09 t 1 1 120909 562 0.00 2019-10-14 19:06:14 2019-10-14 19:06:26 t 1 1 120911 528 0.00 2019-10-14 18:58:44 2019-10-14 19:07:10 t 1 1 120648 470 0.00 2019-10-14 13:29:58 2019-10-14 13:36:13 t 1 1 120650 327 0.00 2019-10-14 13:29:08 2019-10-14 13:37:19 t 1 1 120660 430 0.00 2019-10-14 13:42:10 2019-10-14 13:47:18 t 1 1 120667 430 0.00 2019-10-14 13:50:57 2019-10-14 13:51:03 t 1 1 120670 562 0.00 2019-10-14 13:39:35 2019-10-14 13:52:20 t 1 1 120673 556 0.00 2019-10-14 13:42:57 2019-10-14 13:54:15 t 1 1 120678 430 0.00 2019-10-14 13:56:02 2019-10-14 13:56:04 t 1 1 120683 327 0.00 2019-10-14 13:58:30 2019-10-14 14:00:28 t 1 1 120693 220 0.00 2019-10-14 13:57:27 2019-10-14 14:07:24 t 1 1 120696 510 0.00 2019-10-14 13:55:35 2019-10-14 14:10:17 t 1 1 120697 528 0.00 2019-10-14 13:33:12 2019-10-14 14:10:32 t 1 1 120701 220 0.00 2019-10-14 14:07:31 2019-10-14 14:14:38 t 1 1 120702 470 0.00 2019-10-14 14:05:13 2019-10-14 14:16:01 t 1 1 120703 422 0.00 2019-10-14 14:10:05 2019-10-14 14:17:15 t 1 1 120704 220 0.00 2019-10-14 14:14:47 2019-10-14 14:18:32 t 1 1 120707 544 0.00 2019-10-14 14:20:23 2019-10-14 14:20:58 t 1 2 120708 558 0.00 2019-10-14 13:50:30 2019-10-14 14:23:06 t 1 1 120714 501 0.00 2019-10-14 14:27:50 2019-10-14 14:29:37 t 1 1 120715 510 0.00 2019-10-14 14:10:17 2019-10-14 14:30:36 t 1 1 120720 327 0.00 2019-10-14 14:37:08 2019-10-14 14:37:48 t 1 1 120721 562 0.00 2019-10-14 14:37:35 2019-10-14 14:39:24 t 1 1 120724 562 0.00 2019-10-14 14:42:41 2019-10-14 14:43:22 t 1 1 120730 412 0.00 2019-10-14 00:19:16 2019-10-14 14:49:40 t 1 1 120731 470 0.00 2019-10-14 14:42:29 2019-10-14 14:50:07 t 1 1 120733 422 0.00 2019-10-14 14:43:31 2019-10-14 14:52:11 t 1 1 120737 506 0.00 2019-10-14 14:54:23 2019-10-14 15:02:21 t 1 1 120738 562 0.00 2019-10-14 14:49:56 2019-10-14 15:03:15 t 1 1 120741 306 0.00 2019-10-14 15:03:43 2019-10-14 15:08:07 t 1 1 120742 476 0.00 2019-10-14 14:15:49 2019-10-14 15:08:59 t 1 2 120745 306 0.00 2019-10-14 15:08:07 2019-10-14 15:10:32 t 1 1 120751 412 0.00 2019-10-14 15:05:40 2019-10-14 15:20:33 t 1 1 120758 456 0.00 2019-10-14 15:20:18 2019-10-14 15:31:53 t 1 1 120760 327 0.00 2019-10-14 15:31:07 2019-10-14 15:32:23 t 1 1 120761 306 0.00 2019-10-14 15:25:43 2019-10-14 15:34:17 t 1 1 120762 481 0.00 2019-10-14 14:06:15 2019-10-14 15:38:03 t 1 1 120765 544 0.00 2019-10-14 15:00:07 2019-10-14 15:40:15 t 1 2 120768 562 0.00 2019-10-14 15:42:33 2019-10-14 15:42:47 t 1 1 120771 528 0.00 2019-10-14 15:42:26 2019-10-14 15:45:04 t 1 1 120772 476 0.00 2019-10-14 15:12:17 2019-10-14 15:47:22 t 1 2 120774 562 0.00 2019-10-14 15:52:41 2019-10-14 15:52:50 t 1 1 120775 327 0.00 2019-10-14 15:53:45 2019-10-14 15:55:03 t 1 1 120781 528 0.00 2019-10-14 16:05:30 2019-10-14 16:09:37 t 1 1 120782 562 0.00 2019-10-14 16:13:00 2019-10-14 16:13:35 t 1 1 120787 408 0.00 2019-10-14 16:12:20 2019-10-14 16:19:06 t 1 1 120788 562 0.00 2019-10-14 16:19:08 2019-10-14 16:22:14 t 1 1 120794 562 0.00 2019-10-14 16:33:27 2019-10-14 16:35:24 t 1 1 120797 485 0.00 2019-10-14 16:34:42 2019-10-14 16:38:43 t 1 1 120802 538 0.00 2019-10-14 15:26:16 2019-10-14 16:44:02 t 1 1 120805 554 0.00 2019-10-14 16:47:30 2019-10-14 16:48:14 t 1 1 120807 327 0.00 2019-10-14 16:52:31 2019-10-14 16:53:59 t 1 1 120809 554 0.00 2019-10-14 16:48:14 2019-10-14 16:55:47 t 1 1 120811 562 0.00 2019-10-14 16:41:26 2019-10-14 17:01:54 t 1 1 120821 526 0.00 2019-10-14 17:20:46 2019-10-14 17:21:30 t 1 1 120823 416 0.00 2019-10-14 17:10:16 2019-10-14 17:21:55 t 1 1 120825 562 0.00 2019-10-14 17:24:05 2019-10-14 17:24:55 t 1 1 120829 412 0.00 2019-10-14 17:30:19 2019-10-14 17:31:56 t 1 1 120830 306 0.00 2019-10-14 17:28:11 2019-10-14 17:32:14 t 1 1 120831 470 0.00 2019-10-14 16:36:25 2019-10-14 17:34:48 t 1 1 120841 220 0.00 2019-10-14 17:42:42 2019-10-14 17:44:05 t 1 1 120844 562 0.00 2019-10-14 17:50:08 2019-10-14 17:50:51 t 1 1 120845 564 0.00 2019-10-14 17:42:05 2019-10-14 17:51:57 t 1 1 120848 562 0.00 2019-10-14 17:51:59 2019-10-14 17:57:24 t 1 1 120856 562 0.00 2019-10-14 18:07:40 2019-10-14 18:07:52 t 1 1 120859 306 0.00 2019-10-14 18:02:23 2019-10-14 18:08:32 t 1 1 120862 466 0.00 2019-10-14 18:13:32 2019-10-14 18:16:08 t 1 1 120864 470 0.00 2019-10-14 18:15:47 2019-10-14 18:17:01 t 1 1 120869 445 0.00 2019-10-14 18:23:30 2019-10-14 18:27:29 t 1 1 120872 466 0.00 2019-10-14 18:28:55 2019-10-14 18:31:36 t 1 1 120873 466 0.00 2019-10-14 18:31:38 2019-10-14 18:32:43 t 1 1 120874 562 0.00 2019-10-14 18:33:03 2019-10-14 18:33:23 t 1 1 120879 562 0.00 2019-10-14 18:36:54 2019-10-14 18:37:04 t 1 1 120881 562 0.00 2019-10-14 18:39:22 2019-10-14 18:39:29 t 1 1 120886 485 0.00 2019-10-14 18:36:34 2019-10-14 18:44:52 t 1 1 120887 562 0.00 2019-10-14 18:46:13 2019-10-14 18:46:33 t 1 1 120888 522 0.00 2019-10-14 18:42:04 2019-10-14 18:47:22 t 1 1 120890 522 0.00 2019-10-14 18:48:35 2019-10-14 18:48:43 t 1 1 120895 481 0.00 2019-10-14 18:23:16 2019-10-14 18:50:30 t 1 1 120897 522 0.00 2019-10-14 18:51:08 2019-10-14 18:51:08 f 1 1 120899 522 0.00 2019-10-14 18:49:21 2019-10-14 18:51:25 t 1 1 120904 528 0.00 2019-10-14 18:47:04 2019-10-14 18:58:14 t 1 1 120907 468 0.00 2019-10-14 18:42:57 2019-10-14 19:05:27 t 1 1 120910 456 0.00 2019-10-14 19:03:15 2019-10-14 19:07:08 t 1 1 120912 562 0.00 2019-10-14 19:07:21 2019-10-14 19:07:41 t 1 1 120914 451 0.00 2019-10-14 18:59:00 2019-10-14 19:11:51 t 1 1 120918 451 0.00 2019-10-14 19:16:32 2019-10-14 19:17:24 t 1 1 120921 562 0.00 2019-10-14 19:15:46 2019-10-14 19:19:42 t 1 1 120924 468 0.00 2019-10-14 19:16:50 2019-10-14 19:22:39 t 1 1 120929 562 0.00 2019-10-14 19:25:23 2019-10-14 19:25:43 t 1 1 120930 562 0.00 2019-10-14 19:25:53 2019-10-14 19:26:03 t 1 1 120932 476 0.00 2019-10-14 19:16:40 2019-10-14 19:26:45 t 1 2 120933 445 0.00 2019-10-14 19:23:48 2019-10-14 19:29:04 t 1 1 120937 528 0.00 2019-10-14 19:30:00 2019-10-14 19:31:25 t 1 1 120940 562 0.00 2019-10-14 19:27:10 2019-10-14 19:33:22 t 1 1 120943 445 0.00 2019-10-14 19:33:33 2019-10-14 19:37:56 t 1 1 120952 562 0.00 2019-10-14 19:46:51 2019-10-14 19:47:14 t 1 1 120955 379 0.00 2019-10-14 19:51:06 2019-10-14 19:52:18 t 1 1 120956 562 0.00 2019-10-14 19:51:53 2019-10-14 19:53:17 t 1 1 120964 562 0.00 2019-10-14 20:04:21 2019-10-14 20:05:27 t 1 1 120971 412 0.00 2019-10-14 17:36:40 2019-10-14 20:17:27 t 1 1 120973 416 0.00 2019-10-14 17:30:23 2019-10-14 20:20:31 t 1 1 120976 445 0.00 2019-10-14 20:18:05 2019-10-14 20:24:33 t 1 1 120978 520 0.00 2019-10-14 20:16:09 2019-10-14 20:25:58 t 1 1 120982 445 0.00 2019-10-14 20:25:04 2019-10-14 20:26:28 t 1 1 120984 566 0.00 2019-10-14 20:06:19 2019-10-14 20:26:51 t 1 1 120985 470 0.00 2019-10-14 20:05:37 2019-10-14 20:27:28 t 1 1 120994 430 0.00 2019-10-14 20:36:18 2019-10-14 20:36:24 t 1 1 120995 445 0.00 2019-10-14 20:34:50 2019-10-14 20:37:46 t 1 1 120653 361 0.00 2019-10-14 12:55:04 2019-10-14 13:40:05 t 1 2 120655 556 0.00 2019-10-14 09:16:54 2019-10-14 13:42:57 t 1 1 120656 422 0.00 2019-10-14 13:27:30 2019-10-14 13:43:09 t 1 1 120657 508 0.00 2019-10-14 13:18:19 2019-10-14 13:44:31 t 1 2 120661 430 0.00 2019-10-14 13:48:28 2019-10-14 13:48:33 t 1 1 120664 220 0.00 2019-10-14 13:48:13 2019-10-14 13:49:13 t 1 1 120665 430 0.00 2019-10-14 13:49:13 2019-10-14 13:49:34 t 1 1 120666 220 0.00 2019-10-14 13:49:26 2019-10-14 13:51:01 t 1 1 120668 430 0.00 2019-10-14 13:51:36 2019-10-14 13:51:48 t 1 1 120669 306 0.00 2019-10-14 13:33:11 2019-10-14 13:52:04 t 1 1 120672 422 0.00 2019-10-14 13:43:09 2019-10-14 13:52:53 t 1 1 120674 451 0.00 2019-10-14 13:41:10 2019-10-14 13:54:32 t 1 1 120676 470 0.00 2019-10-14 13:36:13 2019-10-14 13:55:07 t 1 1 120677 520 0.00 2019-10-14 13:49:10 2019-10-14 13:55:13 t 1 1 120679 220 0.00 2019-10-14 13:54:53 2019-10-14 13:56:53 t 1 1 120680 430 0.00 2019-10-14 13:57:29 2019-10-14 13:58:01 t 1 1 120681 430 0.00 2019-10-14 13:58:06 2019-10-14 13:58:38 t 1 1 120682 562 0.00 2019-10-14 13:56:57 2019-10-14 13:59:46 t 1 1 120684 422 0.00 2019-10-14 13:52:53 2019-10-14 14:01:29 t 1 1 120686 562 0.00 2019-10-14 14:00:17 2019-10-14 14:03:49 t 1 1 120688 408 0.00 2019-10-14 14:02:42 2019-10-14 14:04:21 t 1 1 120689 470 0.00 2019-10-14 13:55:07 2019-10-14 14:05:13 t 1 1 120690 544 0.00 2019-10-14 13:00:34 2019-10-14 14:05:39 t 1 2 120694 430 0.00 2019-10-14 14:07:22 2019-10-14 14:07:35 t 1 1 120698 520 0.00 2019-10-14 13:55:11 2019-10-14 14:10:48 t 1 1 120705 562 0.00 2019-10-14 14:18:39 2019-10-14 14:18:48 t 1 1 120710 562 0.00 2019-10-14 14:23:44 2019-10-14 14:23:59 t 1 1 120712 422 0.00 2019-10-14 14:17:15 2019-10-14 14:26:48 t 1 1 120713 327 0.00 2019-10-14 14:23:28 2019-10-14 14:27:08 t 1 1 120716 512 0.00 2019-10-14 13:38:09 2019-10-14 14:31:44 t 1 1 120718 528 0.00 2019-10-14 14:10:32 2019-10-14 14:35:56 t 1 1 120722 562 0.00 2019-10-14 14:39:50 2019-10-14 14:39:59 t 1 1 120723 470 0.00 2019-10-14 14:36:11 2019-10-14 14:42:29 t 1 1 120726 422 0.00 2019-10-14 14:34:23 2019-10-14 14:43:31 t 1 1 120727 506 0.00 2019-10-14 14:34:09 2019-10-14 14:44:15 t 1 1 120728 562 0.00 2019-10-14 14:44:21 2019-10-14 14:46:50 t 1 1 120729 327 0.00 2019-10-14 14:47:47 2019-10-14 14:49:34 t 1 1 120735 327 0.00 2019-10-14 14:49:46 2019-10-14 14:58:54 t 1 1 120739 412 0.00 2019-10-14 14:49:40 2019-10-14 15:05:40 t 1 1 120740 508 0.00 2019-10-14 15:01:15 2019-10-14 15:06:39 t 1 2 120744 422 0.00 2019-10-14 14:52:11 2019-10-14 15:09:48 t 1 1 120747 528 0.00 2019-10-14 15:11:51 2019-10-14 15:13:02 t 1 1 120753 562 0.00 2019-10-14 15:21:42 2019-10-14 15:21:51 t 1 1 120756 562 0.00 2019-10-14 15:25:11 2019-10-14 15:25:53 t 1 1 120757 220 0.00 2019-10-14 14:47:58 2019-10-14 15:28:32 t 1 1 120759 528 0.00 2019-10-14 15:26:37 2019-10-14 15:32:15 t 1 1 120764 528 0.00 2019-10-14 15:39:21 2019-10-14 15:39:34 t 1 1 120767 528 0.00 2019-10-14 15:41:40 2019-10-14 15:42:01 t 1 1 120769 422 0.00 2019-10-14 15:38:06 2019-10-14 15:43:38 t 1 1 120770 327 0.00 2019-10-14 15:42:19 2019-10-14 15:44:21 t 1 1 120773 306 0.00 2019-10-14 15:39:51 2019-10-14 15:48:00 t 1 1 120777 220 0.00 2019-10-14 15:55:55 2019-10-14 15:56:56 t 1 1 120779 562 0.00 2019-10-14 15:56:25 2019-10-14 16:05:19 t 1 1 120783 514 0.00 2019-10-14 15:58:42 2019-10-14 16:14:17 t 1 1 120784 562 0.00 2019-10-14 16:16:12 2019-10-14 16:16:17 t 1 1 120785 327 0.00 2019-10-14 16:15:36 2019-10-14 16:17:59 t 1 1 120789 526 0.00 2019-10-14 16:10:06 2019-10-14 16:23:14 t 1 1 120790 562 0.00 2019-10-14 16:28:13 2019-10-14 16:28:34 t 1 1 120791 562 0.00 2019-10-14 16:30:40 2019-10-14 16:31:48 t 1 1 120793 470 0.00 2019-10-14 15:10:45 2019-10-14 16:34:21 t 1 1 120796 468 0.00 2019-10-14 16:36:49 2019-10-14 16:38:25 t 1 1 120798 554 0.00 2019-10-14 16:36:34 2019-10-14 16:39:21 t 1 1 120803 554 0.00 2019-10-14 16:43:14 2019-10-14 16:46:13 t 1 1 120804 554 0.00 2019-10-14 16:46:12 2019-10-14 16:47:30 t 1 1 120810 306 0.00 2019-10-14 16:47:56 2019-10-14 16:56:55 t 1 1 120812 468 0.00 2019-10-14 16:41:19 2019-10-14 17:03:26 t 1 1 120815 556 0.00 2019-10-14 13:54:15 2019-10-14 17:12:24 t 1 1 120817 220 0.00 2019-10-14 17:14:38 2019-10-14 17:18:10 t 1 2 120819 516 0.00 2019-10-14 16:54:56 2019-10-14 17:20:32 t 1 1 120820 306 0.00 2019-10-14 17:16:42 2019-10-14 17:21:17 t 1 1 120824 516 0.00 2019-10-14 17:20:32 2019-10-14 17:24:35 t 1 1 120827 412 0.00 2019-10-14 15:20:33 2019-10-14 17:29:01 t 1 1 120832 220 0.00 2019-10-14 17:14:51 2019-10-14 17:34:56 t 1 2 120833 562 0.00 2019-10-14 17:30:13 2019-10-14 17:35:23 t 1 1 120836 422 0.00 2019-10-14 16:50:10 2019-10-14 17:41:25 t 1 1 120837 220 0.00 2019-10-14 17:16:39 2019-10-14 17:42:42 t 1 1 120839 470 0.00 2019-10-14 17:34:48 2019-10-14 17:42:58 t 1 1 120842 562 0.00 2019-10-14 17:41:59 2019-10-14 17:47:34 t 1 1 120850 361 0.00 2019-10-14 17:29:49 2019-10-14 17:59:48 t 1 2 120852 564 0.00 2019-10-14 17:53:29 2019-10-14 18:05:13 t 1 1 120854 562 0.00 2019-10-14 18:05:37 2019-10-14 18:07:01 t 1 1 120857 468 0.00 2019-10-14 17:13:28 2019-10-14 18:07:59 t 1 1 120860 466 0.00 2019-10-14 18:08:24 2019-10-14 18:11:48 t 1 1 120863 562 0.00 2019-10-14 18:15:49 2019-10-14 18:16:59 t 1 1 120867 512 0.00 2019-10-14 18:03:49 2019-10-14 18:24:18 t 1 1 120868 562 0.00 2019-10-14 18:26:46 2019-10-14 18:27:06 t 1 1 120870 564 0.00 2019-10-14 18:05:13 2019-10-14 18:28:25 t 1 1 120875 468 0.00 2019-10-14 18:07:59 2019-10-14 18:34:10 t 1 1 120876 485 0.00 2019-10-14 18:29:32 2019-10-14 18:36:34 t 1 1 120878 220 0.00 2019-10-14 17:42:24 2019-10-14 18:37:01 t 1 2 120880 445 0.00 2019-10-14 18:28:25 2019-10-14 18:38:44 t 1 1 120885 470 0.00 2019-10-14 18:44:45 2019-10-14 18:44:47 t 1 1 120891 564 0.00 2019-10-14 18:28:25 2019-10-14 18:49:02 t 1 1 120892 522 0.00 2019-10-14 18:47:27 2019-10-14 18:49:25 t 1 1 120894 522 0.00 2019-10-14 18:50:28 2019-10-14 18:50:28 f 1 1 120896 522 0.00 2019-10-14 18:50:41 2019-10-14 18:50:41 f 1 1 120898 522 0.00 2019-10-14 18:49:33 2019-10-14 18:51:25 t 1 1 120900 485 0.00 2019-10-14 18:44:52 2019-10-14 18:52:26 t 1 1 120902 562 0.00 2019-10-14 18:55:29 2019-10-14 18:55:43 t 1 1 120903 445 0.00 2019-10-14 18:51:21 2019-10-14 18:57:49 t 1 1 120915 514 0.00 2019-10-14 19:06:09 2019-10-14 19:12:00 t 1 1 120919 296 0.00 2019-10-14 19:17:20 2019-10-14 19:18:40 t 1 2 120920 220 0.00 2019-10-14 18:54:50 2019-10-14 19:19:40 t 1 1 120927 451 0.00 2019-10-14 19:17:24 2019-10-14 19:23:31 t 1 1 120928 466 0.00 2019-10-14 19:20:24 2019-10-14 19:25:36 t 1 1 120935 476 0.00 2019-10-14 19:19:16 2019-10-14 19:29:22 t 1 2 120938 566 0.00 2019-10-14 19:27:17 2019-10-14 19:32:16 t 1 1 120913 528 0.00 2019-10-14 19:07:45 2019-10-14 19:08:31 t 1 1 120916 514 0.00 2019-10-14 19:12:00 2019-10-14 19:15:03 t 1 1 120917 468 0.00 2019-10-14 19:05:27 2019-10-14 19:16:50 t 1 1 120922 445 0.00 2019-10-14 18:57:58 2019-10-14 19:19:46 t 1 1 120923 466 0.00 2019-10-14 19:13:41 2019-10-14 19:21:19 t 1 1 120925 564 0.00 2019-10-14 18:49:02 2019-10-14 19:22:55 t 1 1 120926 445 0.00 2019-10-14 19:20:51 2019-10-14 19:23:30 t 1 1 120931 422 0.00 2019-10-14 18:01:36 2019-10-14 19:26:07 t 1 1 120934 306 0.00 2019-10-14 18:44:37 2019-10-14 19:29:08 t 1 1 120936 528 0.00 2019-10-14 19:08:31 2019-10-14 19:30:21 t 1 1 120939 379 0.00 2019-10-14 13:26:15 2019-10-14 19:33:17 t 1 1 120942 562 0.00 2019-10-14 19:33:42 2019-10-14 19:35:25 t 1 1 120945 481 0.00 2019-10-14 18:50:56 2019-10-14 19:39:10 t 1 1 120947 562 0.00 2019-10-14 19:42:16 2019-10-14 19:42:53 t 1 1 120948 562 0.00 2019-10-14 19:43:06 2019-10-14 19:43:34 t 1 1 120949 562 0.00 2019-10-14 19:43:58 2019-10-14 19:44:14 t 1 1 120953 379 0.00 2019-10-14 19:33:17 2019-10-14 19:51:09 t 1 1 120957 512 0.00 2019-10-14 18:43:15 2019-10-14 19:54:36 t 1 1 120960 422 0.00 2019-10-14 19:44:48 2019-10-14 19:58:27 t 1 1 120962 516 0.00 2019-10-14 19:54:27 2019-10-14 19:59:42 t 1 1 120965 470 0.00 2019-10-14 19:05:35 2019-10-14 20:05:37 t 1 1 120967 514 0.00 2019-10-14 19:15:03 2019-10-14 20:11:01 t 1 1 120968 562 0.00 2019-10-14 20:11:36 2019-10-14 20:13:46 t 1 1 120969 562 0.00 2019-10-14 20:15:36 2019-10-14 20:15:52 t 1 1 120974 412 0.00 2019-10-14 20:17:33 2019-10-14 20:21:57 t 1 1 120975 562 0.00 2019-10-14 20:21:31 2019-10-14 20:24:09 t 1 1 120979 422 0.00 2019-10-14 19:58:27 2019-10-14 20:26:01 t 1 1 120980 412 0.00 2019-10-14 20:23:08 2019-10-14 20:26:10 t 1 1 120983 562 0.00 2019-10-14 20:24:19 2019-10-14 20:26:30 t 1 1 120986 514 0.00 2019-10-14 20:11:01 2019-10-14 20:28:33 t 1 1 120987 445 0.00 2019-10-14 20:27:56 2019-10-14 20:30:26 t 1 1 120988 520 0.00 2019-10-14 20:25:57 2019-10-14 20:31:43 t 1 1 120989 564 0.00 2019-10-14 19:23:19 2019-10-14 20:32:03 t 1 1 120992 562 0.00 2019-10-14 20:27:25 2019-10-14 20:36:03 t 1 1 120993 331 0.00 2019-10-14 20:22:20 2019-10-14 20:36:14 t 1 1 120998 412 0.00 2019-10-14 20:26:10 2019-10-14 20:39:17 t 1 1 121001 516 0.00 2019-10-14 20:25:56 2019-10-14 20:41:16 t 1 1 121003 512 0.00 2019-10-14 19:55:09 2019-10-14 20:42:45 t 1 1 121008 566 0.00 2019-10-14 20:29:41 2019-10-14 20:49:37 t 1 1 121014 430 0.00 2019-10-14 20:52:42 2019-10-14 20:56:17 t 1 1 121016 566 0.00 2019-10-14 20:49:37 2019-10-14 20:58:22 t 1 1 121017 558 0.00 2019-10-14 20:56:43 2019-10-14 21:00:42 t 1 1 121018 430 0.00 2019-10-14 20:56:17 2019-10-14 21:02:27 t 1 1 121022 562 0.00 2019-10-14 21:08:52 2019-10-14 21:08:59 t 1 1 121024 562 0.00 2019-10-14 21:08:34 2019-10-14 21:10:26 t 1 1 121030 562 0.00 2019-10-14 21:20:37 2019-10-14 21:21:42 t 1 1 121031 331 0.00 2019-10-14 20:36:13 2019-10-14 21:22:39 t 1 1 121034 528 0.00 2019-10-14 21:15:56 2019-10-14 21:24:33 t 1 1 121035 327 0.00 2019-10-14 21:09:30 2019-10-14 21:25:32 t 1 1 121038 551 0.00 2019-10-14 20:49:07 2019-10-14 21:28:17 t 1 1 121042 306 0.00 2019-10-14 21:34:21 2019-10-14 21:34:39 t 1 1 121047 470 0.00 2019-10-14 20:28:33 2019-10-14 21:41:39 t 1 1 121054 451 0.00 2019-10-14 21:22:25 2019-10-14 21:47:13 t 1 1 121055 538 0.00 2019-10-14 19:46:26 2019-10-14 21:47:56 t 1 1 121059 445 0.00 2019-10-14 21:12:31 2019-10-14 21:50:28 t 1 1 121061 514 0.00 2019-10-14 21:42:46 2019-10-14 21:51:32 t 1 1 121062 520 0.00 2019-10-14 21:41:57 2019-10-14 21:51:33 t 1 1 121066 514 0.00 2019-10-14 21:51:32 2019-10-14 21:57:03 t 1 1 121070 520 0.00 2019-10-14 21:51:33 2019-10-14 21:58:43 t 1 1 121079 220 0.00 2019-10-14 21:57:40 2019-10-14 22:07:46 t 1 2 121081 514 0.00 2019-10-14 22:03:00 2019-10-14 22:08:36 t 1 1 121087 514 0.00 2019-10-14 22:08:36 2019-10-14 22:15:09 t 1 1 121088 306 0.00 2019-10-14 21:45:04 2019-10-14 22:16:26 t 1 1 121092 361 0.00 2019-10-14 19:14:12 2019-10-14 22:20:07 t 1 2 121095 451 0.00 2019-10-14 22:06:19 2019-10-14 22:21:29 t 1 1 121101 566 0.00 2019-10-14 22:20:16 2019-10-14 22:28:45 t 1 1 121102 445 0.00 2019-10-14 22:26:29 2019-10-14 22:30:38 t 1 1 121107 445 0.00 2019-10-14 22:30:53 2019-10-14 22:34:00 t 1 1 121112 327 0.00 2019-10-14 22:27:41 2019-10-14 22:36:10 t 1 1 121113 327 0.00 2019-10-14 22:36:27 2019-10-14 22:36:58 t 1 1 121116 333 0.00 2019-10-14 22:22:59 2019-10-14 22:39:39 t 1 2 121117 514 0.00 2019-10-14 22:15:09 2019-10-14 22:40:04 t 1 1 121118 483 0.00 2019-10-14 22:45:13 2019-10-14 22:46:05 t 1 1 121120 566 0.00 2019-10-14 22:28:45 2019-10-14 22:48:22 t 1 1 121121 327 0.00 2019-10-14 22:47:04 2019-10-14 22:49:22 t 1 1 121124 445 0.00 2019-10-14 22:46:52 2019-10-14 22:57:54 t 1 1 121125 468 0.00 2019-10-14 22:24:21 2019-10-14 22:58:19 t 1 1 121135 445 0.00 2019-10-14 23:05:55 2019-10-14 23:07:10 t 1 1 121136 514 0.00 2019-10-14 22:58:39 2019-10-14 23:10:15 t 1 1 121140 327 0.00 2019-10-14 23:10:22 2019-10-14 23:16:27 t 1 1 121141 528 0.00 2019-10-14 23:13:54 2019-10-14 23:17:07 t 1 1 121143 445 0.00 2019-10-14 23:15:07 2019-10-14 23:17:43 t 1 1 121147 528 0.00 2019-10-14 23:17:27 2019-10-14 23:19:35 t 1 1 121150 528 0.00 2019-10-14 23:19:46 2019-10-14 23:21:44 t 1 1 121157 501 0.00 2019-10-14 23:31:33 2019-10-14 23:31:59 t 1 1 121160 327 0.00 2019-10-14 23:34:50 2019-10-14 23:35:57 t 1 1 121164 501 0.00 2019-10-14 23:32:37 2019-10-14 23:42:55 t 1 1 121167 412 0.00 2019-10-14 23:44:38 2019-10-14 23:46:15 t 1 1 121170 412 0.00 2019-10-14 23:48:50 2019-10-14 23:50:01 t 1 1 121172 468 0.00 2019-10-14 22:59:19 2019-10-14 23:52:16 t 1 1 121174 514 0.00 2019-10-14 23:32:35 2019-10-14 23:56:56 t 1 1 121177 483 0.00 2019-10-15 00:00:06 2019-10-15 00:03:36 t 1 1 121178 526 0.00 2019-10-14 23:48:26 2019-10-15 00:04:21 t 1 1 121179 562 0.00 2019-10-14 23:57:16 2019-10-15 00:05:46 t 1 1 121180 538 0.00 2019-10-14 22:37:02 2019-10-15 00:06:32 t 1 1 121184 483 0.00 2019-10-15 00:08:22 2019-10-15 00:13:14 t 1 1 121185 503 0.00 2019-10-14 23:51:34 2019-10-15 00:15:09 t 1 1 121189 512 0.00 2019-10-15 00:07:25 2019-10-15 00:18:50 t 1 1 121190 528 0.00 2019-10-15 00:14:40 2019-10-15 00:19:03 t 1 1 121192 562 0.00 2019-10-15 00:06:31 2019-10-15 00:20:50 t 1 1 121193 468 0.00 2019-10-15 00:15:33 2019-10-15 00:27:57 t 1 1 121194 562 0.00 2019-10-15 00:29:46 2019-10-15 00:30:12 t 1 1 121196 528 0.00 2019-10-15 00:19:22 2019-10-15 00:33:36 t 1 1 121197 526 0.00 2019-10-15 00:19:07 2019-10-15 00:34:21 t 1 1 121199 296 0.00 2019-10-15 00:34:01 2019-10-15 00:39:22 t 1 2 121202 544 0.00 2019-10-15 00:13:45 2019-10-15 00:48:52 t 1 2 121205 412 0.00 2019-10-15 00:22:24 2019-10-15 00:55:14 t 1 1 120941 445 0.00 2019-10-14 19:29:45 2019-10-14 19:33:33 t 1 1 120944 562 0.00 2019-10-14 19:37:50 2019-10-14 19:38:01 t 1 1 120946 422 0.00 2019-10-14 19:26:07 2019-10-14 19:40:25 t 1 1 120950 538 0.00 2019-10-14 19:42:12 2019-10-14 19:44:26 t 1 1 120951 445 0.00 2019-10-14 19:37:56 2019-10-14 19:46:27 t 1 1 120954 445 0.00 2019-10-14 19:46:51 2019-10-14 19:51:09 t 1 1 120958 562 0.00 2019-10-14 19:54:00 2019-10-14 19:55:20 t 1 1 120959 379 0.00 2019-10-14 19:52:24 2019-10-14 19:57:38 t 1 1 120961 445 0.00 2019-10-14 19:51:48 2019-10-14 19:59:25 t 1 1 120963 562 0.00 2019-10-14 19:59:20 2019-10-14 20:01:38 t 1 1 120966 562 0.00 2019-10-14 20:07:55 2019-10-14 20:08:57 t 1 1 120970 445 0.00 2019-10-14 19:59:34 2019-10-14 20:17:08 t 1 1 120972 562 0.00 2019-10-14 20:17:41 2019-10-14 20:20:11 t 1 1 120977 416 0.00 2019-10-14 20:22:16 2019-10-14 20:25:31 t 1 1 120981 416 0.00 2019-10-14 20:25:22 2019-10-14 20:26:25 t 1 1 120990 445 0.00 2019-10-14 20:31:07 2019-10-14 20:34:50 t 1 1 120991 430 0.00 2019-10-14 20:15:10 2019-10-14 20:35:20 t 1 1 120997 422 0.00 2019-10-14 20:26:01 2019-10-14 20:39:00 t 1 1 120999 562 0.00 2019-10-14 20:36:13 2019-10-14 20:40:38 t 1 1 121000 430 0.00 2019-10-14 20:40:46 2019-10-14 20:41:03 t 1 1 121002 445 0.00 2019-10-14 20:37:41 2019-10-14 20:41:50 t 1 1 121004 430 0.00 2019-10-14 20:41:13 2019-10-14 20:42:53 t 1 1 121005 562 0.00 2019-10-14 20:43:51 2019-10-14 20:44:56 t 1 1 121006 512 0.00 2019-10-14 20:45:00 2019-10-14 20:46:16 t 1 1 121007 306 0.00 2019-10-14 20:44:23 2019-10-14 20:47:39 t 1 1 121010 296 0.00 2019-10-14 20:46:19 2019-10-14 20:50:43 t 1 2 121013 456 0.00 2019-10-14 20:50:32 2019-10-14 20:55:01 t 1 1 121019 445 0.00 2019-10-14 20:49:10 2019-10-14 21:06:53 t 1 1 121023 327 0.00 2019-10-14 20:53:27 2019-10-14 21:09:30 t 1 1 121027 562 0.00 2019-10-14 21:13:56 2019-10-14 21:14:50 t 1 1 121028 562 0.00 2019-10-14 21:20:01 2019-10-14 21:20:10 t 1 1 121032 566 0.00 2019-10-14 21:14:34 2019-10-14 21:24:03 t 1 1 121033 564 0.00 2019-10-14 20:32:02 2019-10-14 21:24:30 t 1 1 121037 520 0.00 2019-10-14 21:21:03 2019-10-14 21:27:56 t 1 1 121039 562 0.00 2019-10-14 21:31:11 2019-10-14 21:31:45 t 1 1 121040 327 0.00 2019-10-14 21:25:32 2019-10-14 21:33:05 t 1 1 121043 514 0.00 2019-10-14 20:28:33 2019-10-14 21:34:46 t 1 1 121044 520 0.00 2019-10-14 21:27:56 2019-10-14 21:34:53 t 1 1 121045 327 0.00 2019-10-14 21:34:10 2019-10-14 21:35:45 t 1 1 121046 327 0.00 2019-10-14 21:38:35 2019-10-14 21:40:30 t 1 1 121048 520 0.00 2019-10-14 21:34:52 2019-10-14 21:41:57 t 1 1 121050 514 0.00 2019-10-14 21:34:46 2019-10-14 21:42:46 t 1 1 121051 327 0.00 2019-10-14 21:42:33 2019-10-14 21:43:27 t 1 1 121056 456 0.00 2019-10-14 21:47:38 2019-10-14 21:49:14 t 1 1 121058 470 0.00 2019-10-14 21:41:39 2019-10-14 21:49:56 t 1 1 121060 327 0.00 2019-10-14 21:46:46 2019-10-14 21:50:53 t 1 1 121063 551 0.00 2019-10-14 21:43:29 2019-10-14 21:53:48 t 1 1 121064 445 0.00 2019-10-14 21:49:57 2019-10-14 21:54:48 t 1 1 121068 528 0.00 2019-10-14 21:26:09 2019-10-14 21:57:39 t 1 1 121069 327 0.00 2019-10-14 21:57:37 2019-10-14 21:58:23 t 1 1 121072 566 0.00 2019-10-14 21:24:03 2019-10-14 22:03:02 t 1 1 121073 331 0.00 2019-10-14 21:24:16 2019-10-14 22:03:45 t 1 1 121074 331 0.00 2019-10-14 22:03:02 2019-10-14 22:04:21 t 1 1 121076 451 0.00 2019-10-14 21:47:13 2019-10-14 22:06:19 t 1 1 121077 331 0.00 2019-10-14 22:04:45 2019-10-14 22:06:46 t 1 1 121084 520 0.00 2019-10-14 21:58:43 2019-10-14 22:13:45 t 1 1 121091 327 0.00 2019-10-14 22:08:43 2019-10-14 22:18:55 t 1 1 121093 566 0.00 2019-10-14 22:13:50 2019-10-14 22:20:16 t 1 1 121097 468 0.00 2019-10-14 22:02:03 2019-10-14 22:22:04 t 1 1 121098 306 0.00 2019-10-14 22:16:26 2019-10-14 22:23:54 t 1 1 121099 445 0.00 2019-10-14 22:20:31 2019-10-14 22:26:19 t 1 1 121103 564 0.00 2019-10-14 21:24:30 2019-10-14 22:30:46 t 1 1 121105 292 0.00 2019-10-14 22:32:42 2019-10-14 22:32:51 t 1 2 121106 520 0.00 2019-10-14 22:14:41 2019-10-14 22:33:40 t 1 1 121108 456 0.00 2019-10-14 22:26:41 2019-10-14 22:34:01 t 1 1 121110 485 0.00 2019-10-14 22:21:59 2019-10-14 22:34:41 t 1 1 121111 331 0.00 2019-10-14 22:18:44 2019-10-14 22:35:48 t 1 1 121119 483 0.00 2019-10-14 22:46:05 2019-10-14 22:47:44 t 1 1 121122 451 0.00 2019-10-14 22:40:16 2019-10-14 22:49:57 t 1 1 121126 514 0.00 2019-10-14 22:50:38 2019-10-14 22:58:39 t 1 1 121128 327 0.00 2019-10-14 22:59:26 2019-10-14 23:00:47 t 1 1 121129 445 0.00 2019-10-14 22:58:02 2019-10-14 23:02:03 t 1 1 121130 566 0.00 2019-10-14 22:48:22 2019-10-14 23:03:08 t 1 1 121131 422 0.00 2019-10-14 20:39:00 2019-10-14 23:03:19 t 1 1 121132 501 0.00 2019-10-14 22:44:40 2019-10-14 23:04:53 t 1 1 121134 556 0.00 2019-10-14 17:12:24 2019-10-14 23:07:07 t 1 1 121139 501 0.00 2019-10-14 23:14:53 2019-10-14 23:15:22 t 1 1 121142 501 0.00 2019-10-14 23:17:02 2019-10-14 23:17:24 t 1 1 121149 503 0.00 2019-10-14 23:06:45 2019-10-14 23:20:28 t 1 1 121151 566 0.00 2019-10-14 23:03:08 2019-10-14 23:21:48 t 1 1 121154 514 0.00 2019-10-14 23:18:27 2019-10-14 23:26:40 t 1 1 121155 562 0.00 2019-10-14 23:26:13 2019-10-14 23:27:51 t 1 1 121156 445 0.00 2019-10-14 23:28:18 2019-10-14 23:30:46 t 1 1 121159 470 0.00 2019-10-14 23:00:24 2019-10-14 23:34:00 t 1 1 121161 562 0.00 2019-10-14 23:36:44 2019-10-14 23:37:07 t 1 1 121166 412 0.00 2019-10-14 20:39:17 2019-10-14 23:45:13 t 1 1 121175 408 0.00 2019-10-14 23:59:24 2019-10-15 00:03:04 t 1 1 121181 514 0.00 2019-10-14 23:56:56 2019-10-15 00:06:49 t 1 1 121182 512 0.00 2019-10-14 23:51:02 2019-10-15 00:07:25 t 1 1 121186 468 0.00 2019-10-14 23:52:16 2019-10-15 00:15:33 t 1 1 121187 514 0.00 2019-10-15 00:06:49 2019-10-15 00:16:36 t 1 1 121191 470 0.00 2019-10-14 23:34:00 2019-10-15 00:19:04 t 1 1 121195 408 0.00 2019-10-15 00:30:51 2019-10-15 00:32:06 t 1 1 121206 372 0.00 2019-10-15 00:52:42 2019-10-15 00:57:07 t 1 2 121212 468 0.00 2019-10-15 01:04:16 2019-10-15 01:15:47 t 1 1 121223 514 0.00 2019-10-15 00:57:11 2019-10-15 01:46:54 t 1 1 121224 466 0.00 2019-10-15 01:43:45 2019-10-15 01:47:50 t 1 1 121226 562 0.00 2019-10-15 01:55:53 2019-10-15 01:56:08 t 1 1 121229 422 0.00 2019-10-15 01:55:15 2019-10-15 02:08:06 t 1 1 121235 422 0.00 2019-10-15 02:15:42 2019-10-15 02:29:17 t 1 1 121238 422 0.00 2019-10-15 02:29:17 2019-10-15 02:44:19 t 1 1 121239 562 0.00 2019-10-15 02:50:45 2019-10-15 02:51:07 t 1 1 121240 422 0.00 2019-10-15 02:44:19 2019-10-15 03:00:25 t 1 1 121248 430 0.00 2019-10-15 03:46:14 2019-10-15 03:47:51 t 1 1 121251 445 0.00 2019-10-15 03:55:53 2019-10-15 03:56:57 t 1 1 121253 562 0.00 2019-10-15 04:01:56 2019-10-15 04:02:07 t 1 1 121257 562 0.00 2019-10-15 04:12:41 2019-10-15 04:12:57 t 1 1 120996 430 0.00 2019-10-14 20:38:54 2019-10-14 20:38:56 t 1 1 121009 430 0.00 2019-10-14 20:42:59 2019-10-14 20:49:49 t 1 1 121011 430 0.00 2019-10-14 20:50:04 2019-10-14 20:52:35 t 1 1 121012 327 0.00 2019-10-14 20:26:50 2019-10-14 20:53:27 t 1 1 121015 558 0.00 2019-10-14 20:45:36 2019-10-14 20:56:43 t 1 1 121020 562 0.00 2019-10-14 21:00:38 2019-10-14 21:06:54 t 1 1 121021 325 0.00 2019-10-14 20:13:11 2019-10-14 21:08:16 t 1 2 121025 445 0.00 2019-10-14 21:06:52 2019-10-14 21:11:22 t 1 1 121026 566 0.00 2019-10-14 20:58:22 2019-10-14 21:14:34 t 1 1 121029 485 0.00 2019-10-14 21:17:47 2019-10-14 21:21:19 t 1 1 121036 516 0.00 2019-10-14 21:09:31 2019-10-14 21:27:13 t 1 1 121041 306 0.00 2019-10-14 21:23:49 2019-10-14 21:34:27 t 1 1 121049 220 0.00 2019-10-14 20:50:51 2019-10-14 21:42:21 t 1 1 121052 551 0.00 2019-10-14 21:28:17 2019-10-14 21:43:29 t 1 1 121053 220 0.00 2019-10-14 21:40:13 2019-10-14 21:44:33 t 1 2 121057 562 0.00 2019-10-14 21:49:10 2019-10-14 21:49:16 t 1 1 121065 538 0.00 2019-10-14 21:49:59 2019-10-14 21:55:45 t 1 1 121067 327 0.00 2019-10-14 21:54:28 2019-10-14 21:57:05 t 1 1 121071 514 0.00 2019-10-14 21:57:03 2019-10-14 22:03:00 t 1 1 121075 327 0.00 2019-10-14 22:04:20 2019-10-14 22:05:24 t 1 1 121078 327 0.00 2019-10-14 22:07:05 2019-10-14 22:07:40 t 1 1 121080 220 0.00 2019-10-14 22:06:48 2019-10-14 22:08:11 t 1 2 121082 538 0.00 2019-10-14 21:56:29 2019-10-14 22:11:04 t 1 1 121083 551 0.00 2019-10-14 21:53:36 2019-10-14 22:12:36 t 1 1 121085 566 0.00 2019-10-14 22:03:02 2019-10-14 22:13:50 t 1 1 121086 445 0.00 2019-10-14 21:55:08 2019-10-14 22:14:11 t 1 1 121089 481 0.00 2019-10-14 19:39:10 2019-10-14 22:16:30 t 1 1 121090 331 0.00 2019-10-14 22:06:24 2019-10-14 22:18:37 t 1 1 121094 408 0.00 2019-10-14 22:19:28 2019-10-14 22:21:26 t 1 1 121096 476 0.00 2019-10-14 22:11:54 2019-10-14 22:21:59 t 1 2 121100 538 0.00 2019-10-14 22:10:34 2019-10-14 22:27:28 t 1 1 121104 538 0.00 2019-10-14 22:28:09 2019-10-14 22:32:20 t 1 1 121109 292 0.00 2019-10-14 22:33:25 2019-10-14 22:34:30 t 1 2 121114 538 0.00 2019-10-14 22:34:36 2019-10-14 22:37:03 t 1 1 121115 472 0.00 2019-10-14 22:30:26 2019-10-14 22:39:27 t 1 1 121123 514 0.00 2019-10-14 22:40:04 2019-10-14 22:50:38 t 1 1 121127 470 0.00 2019-10-14 21:49:46 2019-10-14 23:00:24 t 1 1 121133 445 0.00 2019-10-14 23:02:11 2019-10-14 23:05:25 t 1 1 121137 501 0.00 2019-10-14 23:04:53 2019-10-14 23:12:46 t 1 1 121138 501 0.00 2019-10-14 23:13:49 2019-10-14 23:14:23 t 1 1 121144 514 0.00 2019-10-14 23:10:15 2019-10-14 23:18:27 t 1 1 121145 445 0.00 2019-10-14 23:18:29 2019-10-14 23:18:42 t 1 1 121146 501 0.00 2019-10-14 23:18:45 2019-10-14 23:19:12 t 1 1 121148 501 0.00 2019-10-14 23:19:55 2019-10-14 23:20:24 t 1 1 121152 327 0.00 2019-10-14 23:20:25 2019-10-14 23:25:09 t 1 1 121153 501 0.00 2019-10-14 23:25:25 2019-10-14 23:26:10 t 1 1 121158 514 0.00 2019-10-14 23:26:40 2019-10-14 23:32:35 t 1 1 121162 562 0.00 2019-10-14 23:39:20 2019-10-14 23:39:33 t 1 1 121163 528 0.00 2019-10-14 23:22:42 2019-10-14 23:42:37 t 1 1 121165 528 0.00 2019-10-14 23:42:31 2019-10-14 23:43:38 t 1 1 121168 445 0.00 2019-10-14 23:31:01 2019-10-14 23:46:50 t 1 1 121169 412 0.00 2019-10-14 23:46:27 2019-10-14 23:48:05 t 1 1 121171 512 0.00 2019-10-14 23:07:22 2019-10-14 23:51:02 t 1 1 121173 562 0.00 2019-10-14 23:53:50 2019-10-14 23:54:56 t 1 1 121176 372 0.00 2019-10-14 23:03:11 2019-10-15 00:03:15 t 1 2 121183 483 0.00 2019-10-15 00:03:36 2019-10-15 00:08:22 t 1 1 121188 412 0.00 2019-10-15 00:01:55 2019-10-15 00:18:49 t 1 1 121198 538 0.00 2019-10-15 00:25:41 2019-10-15 00:36:05 t 1 1 121200 562 0.00 2019-10-15 00:40:38 2019-10-15 00:41:02 t 1 1 121201 526 0.00 2019-10-15 00:34:21 2019-10-15 00:43:35 t 1 1 121203 468 0.00 2019-10-15 00:29:31 2019-10-15 00:51:09 t 1 1 121204 562 0.00 2019-10-15 00:51:29 2019-10-15 00:51:42 t 1 1 121207 514 0.00 2019-10-15 00:16:36 2019-10-15 00:57:11 t 1 1 121208 562 0.00 2019-10-15 01:02:15 2019-10-15 01:02:26 t 1 1 121209 468 0.00 2019-10-15 00:51:09 2019-10-15 01:04:09 t 1 1 121210 422 0.00 2019-10-14 23:03:19 2019-10-15 01:07:47 t 1 1 121213 412 0.00 2019-10-15 00:55:14 2019-10-15 01:21:57 t 1 1 121216 470 0.00 2019-10-15 00:18:59 2019-10-15 01:24:30 t 1 1 121220 412 0.00 2019-10-15 01:31:06 2019-10-15 01:38:37 t 1 1 121222 412 0.00 2019-10-15 01:38:37 2019-10-15 01:46:02 t 1 1 121227 468 0.00 2019-10-15 01:17:15 2019-10-15 02:01:30 t 1 1 121230 562 0.00 2019-10-15 02:11:01 2019-10-15 02:11:16 t 1 1 121231 551 0.00 2019-10-14 22:42:14 2019-10-15 02:15:31 t 1 1 121234 514 0.00 2019-10-15 01:46:54 2019-10-15 02:28:44 t 1 1 121236 562 0.00 2019-10-15 02:32:34 2019-10-15 02:32:50 t 1 1 121237 562 0.00 2019-10-15 02:43:18 2019-10-15 02:43:31 t 1 1 121241 562 0.00 2019-10-15 03:01:35 2019-10-15 03:01:49 t 1 1 121242 562 0.00 2019-10-15 03:12:18 2019-10-15 03:12:38 t 1 1 121243 551 0.00 2019-10-15 02:18:22 2019-10-15 03:16:21 t 1 1 121252 445 0.00 2019-10-15 03:57:19 2019-10-15 04:00:54 t 1 1 121254 445 0.00 2019-10-15 04:00:54 2019-10-15 04:07:22 t 1 1 121261 562 0.00 2019-10-15 04:42:02 2019-10-15 04:42:22 t 1 1 121262 445 0.00 2019-10-15 04:07:46 2019-10-15 04:52:54 t 1 1 121266 520 0.00 2019-10-15 04:53:53 2019-10-15 04:58:07 t 1 1 121267 520 0.00 2019-10-15 04:58:07 2019-10-15 04:59:30 t 1 1 121269 445 0.00 2019-10-15 04:54:47 2019-10-15 05:04:01 t 1 1 121271 520 0.00 2019-10-15 05:13:08 2019-10-15 05:14:18 t 1 1 121275 292 0.00 2019-10-15 05:25:20 2019-10-15 05:25:23 t 1 2 121276 520 0.00 2019-10-15 05:18:37 2019-10-15 05:26:53 t 1 1 121278 562 0.00 2019-10-15 05:35:42 2019-10-15 05:36:37 t 1 1 121279 556 0.00 2019-10-15 04:54:31 2019-10-15 05:43:20 t 1 1 121281 422 0.00 2019-10-15 03:00:25 2019-10-15 05:54:44 t 1 1 121284 520 0.00 2019-10-15 05:58:37 2019-10-15 06:02:31 t 1 1 121287 520 0.00 2019-10-15 06:04:00 2019-10-15 06:18:39 t 1 1 121288 562 0.00 2019-10-15 06:18:51 2019-10-15 06:19:04 t 1 1 121289 562 0.00 2019-10-15 06:25:42 2019-10-15 06:27:09 t 1 1 121291 562 0.00 2019-10-15 06:27:28 2019-10-15 06:27:37 t 1 1 121293 412 0.00 2019-10-15 01:46:02 2019-10-15 06:32:41 t 1 1 121300 451 0.00 2019-10-15 06:47:53 2019-10-15 06:52:35 t 1 1 121305 306 0.00 2019-10-15 06:53:13 2019-10-15 07:08:59 t 1 1 121306 306 0.00 2019-10-15 07:16:38 2019-10-15 07:19:26 t 1 1 121309 514 0.00 2019-10-15 07:31:26 2019-10-15 07:32:07 t 1 1 121312 456 0.00 2019-10-15 07:33:16 2019-10-15 07:36:21 t 1 1 121316 306 0.00 2019-10-15 07:32:23 2019-10-15 07:39:50 t 1 1 121318 516 0.00 2019-10-15 07:43:15 2019-10-15 07:48:30 t 1 1 121320 562 0.00 2019-10-15 07:44:25 2019-10-15 07:49:52 t 1 1 121324 481 0.00 2019-10-15 07:38:44 2019-10-15 08:02:22 t 1 1 121211 562 0.00 2019-10-15 01:12:43 2019-10-15 01:13:07 t 1 1 121214 422 0.00 2019-10-15 01:07:47 2019-10-15 01:23:22 t 1 1 121215 562 0.00 2019-10-15 01:23:37 2019-10-15 01:23:53 t 1 1 121217 412 0.00 2019-10-15 01:21:57 2019-10-15 01:31:06 t 1 1 121218 562 0.00 2019-10-15 01:34:20 2019-10-15 01:34:35 t 1 1 121219 422 0.00 2019-10-15 01:23:22 2019-10-15 01:38:04 t 1 1 121221 562 0.00 2019-10-15 01:44:57 2019-10-15 01:45:21 t 1 1 121225 422 0.00 2019-10-15 01:38:04 2019-10-15 01:55:15 t 1 1 121228 562 0.00 2019-10-15 02:03:07 2019-10-15 02:03:17 t 1 1 121232 422 0.00 2019-10-15 02:08:06 2019-10-15 02:15:34 t 1 1 121233 562 0.00 2019-10-15 02:21:38 2019-10-15 02:22:04 t 1 1 121244 562 0.00 2019-10-15 03:18:00 2019-10-15 03:18:42 t 1 1 121245 562 0.00 2019-10-15 03:26:13 2019-10-15 03:26:37 t 1 1 121246 562 0.00 2019-10-15 03:36:49 2019-10-15 03:37:24 t 1 1 121247 562 0.00 2019-10-15 03:43:03 2019-10-15 03:43:23 t 1 1 121249 562 0.00 2019-10-15 03:51:04 2019-10-15 03:51:26 t 1 1 121250 445 0.00 2019-10-14 23:49:03 2019-10-15 03:55:53 t 1 1 121255 379 0.00 2019-10-14 22:43:04 2019-10-15 04:07:26 t 1 1 121256 311 0.00 2019-10-15 03:49:52 2019-10-15 04:10:15 t 1 2 121264 520 0.00 2019-10-15 04:48:26 2019-10-15 04:53:54 t 1 1 121265 556 0.00 2019-10-14 23:07:07 2019-10-15 04:55:14 t 1 1 121268 562 0.00 2019-10-15 05:03:37 2019-10-15 05:03:51 t 1 1 121272 562 0.00 2019-10-15 05:14:16 2019-10-15 05:14:40 t 1 1 121277 520 0.00 2019-10-15 05:26:53 2019-10-15 05:31:40 t 1 1 121280 562 0.00 2019-10-15 05:46:31 2019-10-15 05:46:54 t 1 1 121282 562 0.00 2019-10-15 05:57:17 2019-10-15 05:57:41 t 1 1 121285 520 0.00 2019-10-15 06:02:30 2019-10-15 06:04:00 t 1 1 121290 470 0.00 2019-10-15 05:57:56 2019-10-15 06:27:24 t 1 1 121292 456 0.00 2019-10-15 06:29:40 2019-10-15 06:31:24 t 1 1 121296 516 0.00 2019-10-15 05:43:59 2019-10-15 06:38:36 t 1 1 121298 562 0.00 2019-10-15 06:42:02 2019-10-15 06:49:48 t 1 1 121299 562 0.00 2019-10-15 06:49:48 2019-10-15 06:51:50 t 1 1 121302 562 0.00 2019-10-15 06:55:51 2019-10-15 06:59:09 t 1 1 121303 562 0.00 2019-10-15 06:59:09 2019-10-15 07:02:01 t 1 1 121304 476 0.00 2019-10-15 06:55:22 2019-10-15 07:05:27 t 1 2 121307 562 0.00 2019-10-15 07:02:01 2019-10-15 07:25:12 t 1 1 121308 562 0.00 2019-10-15 07:25:12 2019-10-15 07:30:10 t 1 1 121313 562 0.00 2019-10-15 07:30:10 2019-10-15 07:36:37 t 1 1 121323 562 0.00 2019-10-15 07:54:20 2019-10-15 07:58:15 t 1 1 121326 551 0.00 2019-10-15 07:57:07 2019-10-15 08:07:07 t 1 1 121327 306 0.00 2019-10-15 08:06:57 2019-10-15 08:09:19 t 1 1 121328 487 0.00 2019-10-15 08:07:49 2019-10-15 08:10:04 t 1 2 121331 416 0.00 2019-10-15 07:25:48 2019-10-15 08:14:26 t 1 1 121332 514 0.00 2019-10-15 07:51:57 2019-10-15 08:17:49 t 1 1 121335 408 0.00 2019-10-15 08:19:03 2019-10-15 08:20:00 t 1 1 121336 481 0.00 2019-10-15 08:02:22 2019-10-15 08:24:26 t 1 1 121339 416 0.00 2019-10-15 08:19:36 2019-10-15 08:28:07 t 1 1 121340 481 0.00 2019-10-15 08:24:26 2019-10-15 08:29:20 t 1 1 121344 481 0.00 2019-10-15 08:29:20 2019-10-15 08:33:57 t 1 1 121350 416 0.00 2019-10-15 08:28:15 2019-10-15 08:40:29 t 1 1 121353 562 0.00 2019-10-15 08:41:43 2019-10-15 08:43:18 t 1 1 121354 562 0.00 2019-10-15 08:43:58 2019-10-15 08:44:06 t 1 1 121356 306 0.00 2019-10-15 08:18:22 2019-10-15 08:45:33 t 1 1 121357 445 0.00 2019-10-15 07:50:22 2019-10-15 08:45:38 t 1 1 121360 327 0.00 2019-10-15 08:51:09 2019-10-15 08:51:20 t 1 1 121362 562 0.00 2019-10-15 08:53:16 2019-10-15 08:53:51 t 1 1 121363 520 0.00 2019-10-15 08:43:16 2019-10-15 08:54:52 t 1 1 121366 562 0.00 2019-10-15 08:56:25 2019-10-15 08:56:30 t 1 1 121367 520 0.00 2019-10-15 08:56:14 2019-10-15 08:59:47 t 1 1 121368 306 0.00 2019-10-15 08:45:33 2019-10-15 09:00:16 t 1 1 121370 562 0.00 2019-10-15 09:06:51 2019-10-15 09:07:23 t 1 1 121371 562 0.00 2019-10-15 09:08:28 2019-10-15 09:08:41 t 1 1 121376 445 0.00 2019-10-15 08:45:37 2019-10-15 09:14:20 t 1 1 121379 512 0.00 2019-10-15 08:57:34 2019-10-15 09:21:23 t 1 1 121382 498 0.00 2019-10-15 07:53:39 2019-10-15 09:22:33 t 1 2 121384 327 0.00 2019-10-15 09:22:52 2019-10-15 09:24:14 t 1 1 121386 562 0.00 2019-10-15 09:25:16 2019-10-15 09:26:11 t 1 1 121387 562 0.00 2019-10-15 09:26:23 2019-10-15 09:27:00 t 1 1 121388 327 0.00 2019-10-15 09:24:27 2019-10-15 09:28:27 t 1 1 121392 562 0.00 2019-10-15 09:29:21 2019-10-15 09:32:06 t 1 1 121398 562 0.00 2019-10-15 09:34:09 2019-10-15 09:36:11 t 1 1 121400 331 0.00 2019-10-15 09:36:25 2019-10-15 09:37:35 t 1 1 121401 562 0.00 2019-10-15 09:36:43 2019-10-15 09:39:16 t 1 1 121407 562 0.00 2019-10-15 09:50:18 2019-10-15 09:51:41 t 1 1 121408 554 0.00 2019-10-15 09:44:06 2019-10-15 09:52:25 t 1 1 121409 554 0.00 2019-10-15 09:52:24 2019-10-15 09:52:46 t 1 1 121410 481 0.00 2019-10-15 09:08:50 2019-10-15 09:53:07 t 1 1 121416 474 0.00 2019-10-15 09:48:36 2019-10-15 09:59:47 t 1 1 121421 562 0.00 2019-10-15 10:02:32 2019-10-15 10:03:06 t 1 1 121423 306 0.00 2019-10-15 10:04:49 2019-10-15 10:09:43 t 1 1 121424 562 0.00 2019-10-15 10:09:11 2019-10-15 10:10:17 t 1 1 121427 562 0.00 2019-10-15 10:11:21 2019-10-15 10:12:27 t 1 1 121430 528 0.00 2019-10-15 10:03:23 2019-10-15 10:15:08 t 1 1 121432 331 0.00 2019-10-15 09:37:31 2019-10-15 10:16:28 t 1 1 121434 430 0.00 2019-10-15 10:14:05 2019-10-15 10:17:48 t 1 1 121438 430 0.00 2019-10-15 10:19:59 2019-10-15 10:20:50 t 1 1 121439 562 0.00 2019-10-15 10:20:51 2019-10-15 10:21:35 t 1 1 121441 445 0.00 2019-10-15 09:58:23 2019-10-15 10:22:30 t 1 1 121442 470 0.00 2019-10-15 10:11:23 2019-10-15 10:23:47 t 1 1 121446 562 0.00 2019-10-15 10:24:50 2019-10-15 10:26:46 t 1 1 121449 445 0.00 2019-10-15 10:23:46 2019-10-15 10:33:11 t 1 1 121451 554 0.00 2019-10-15 10:25:26 2019-10-15 10:34:13 t 1 1 121452 306 0.00 2019-10-15 10:28:57 2019-10-15 10:35:42 t 1 1 121453 562 0.00 2019-10-15 10:36:27 2019-10-15 10:36:53 t 1 1 121458 416 0.00 2019-10-15 10:39:20 2019-10-15 10:40:57 t 1 1 121466 470 0.00 2019-10-15 10:37:34 2019-10-15 10:51:26 t 1 1 121468 445 0.00 2019-10-15 10:47:13 2019-10-15 11:02:47 t 1 1 121470 512 0.00 2019-10-15 09:21:56 2019-10-15 11:04:26 t 1 1 121471 562 0.00 2019-10-15 10:40:02 2019-10-15 11:05:25 t 1 1 121480 538 0.00 2019-10-15 10:52:39 2019-10-15 11:13:58 t 1 1 121489 306 0.00 2019-10-15 11:24:38 2019-10-15 11:26:38 t 1 1 121490 445 0.00 2019-10-15 11:26:01 2019-10-15 11:27:41 t 1 1 121492 554 0.00 2019-10-15 11:29:33 2019-10-15 11:30:24 t 1 1 121495 562 0.00 2019-10-15 11:32:33 2019-10-15 11:32:51 t 1 1 121496 445 0.00 2019-10-15 11:27:43 2019-10-15 11:33:52 t 1 1 121501 445 0.00 2019-10-15 11:41:18 2019-10-15 11:45:33 t 1 1 121502 456 0.00 2019-10-15 11:44:45 2019-10-15 11:47:44 t 1 1 121258 562 0.00 2019-10-15 04:23:26 2019-10-15 04:23:37 t 1 1 121259 562 0.00 2019-10-15 04:31:20 2019-10-15 04:31:42 t 1 1 121260 518 0.00 2019-10-14 23:13:09 2019-10-15 04:38:14 t 1 2 121263 562 0.00 2019-10-15 04:52:47 2019-10-15 04:53:10 t 1 1 121270 520 0.00 2019-10-15 04:59:30 2019-10-15 05:13:08 t 1 1 121273 520 0.00 2019-10-15 05:14:18 2019-10-15 05:18:37 t 1 1 121274 562 0.00 2019-10-15 05:25:00 2019-10-15 05:25:21 t 1 1 121283 520 0.00 2019-10-15 05:50:24 2019-10-15 05:57:48 t 1 1 121286 562 0.00 2019-10-15 06:08:03 2019-10-15 06:08:21 t 1 1 121294 445 0.00 2019-10-15 05:04:21 2019-10-15 06:36:04 t 1 1 121295 562 0.00 2019-10-15 06:37:16 2019-10-15 06:37:26 t 1 1 121297 306 0.00 2019-10-15 06:43:12 2019-10-15 06:46:14 t 1 1 121301 562 0.00 2019-10-15 06:51:49 2019-10-15 06:53:08 t 1 1 121310 331 0.00 2019-10-15 07:16:45 2019-10-15 07:33:57 t 1 1 121311 331 0.00 2019-10-15 07:34:48 2019-10-15 07:34:55 t 1 1 121314 481 0.00 2019-10-15 07:33:43 2019-10-15 07:38:44 t 1 1 121315 516 0.00 2019-10-15 07:20:28 2019-10-15 07:39:13 t 1 1 121317 562 0.00 2019-10-15 07:36:37 2019-10-15 07:44:25 t 1 1 121319 445 0.00 2019-10-15 06:36:04 2019-10-15 07:49:34 t 1 1 121321 562 0.00 2019-10-15 07:49:52 2019-10-15 07:54:20 t 1 1 121322 520 0.00 2019-10-15 07:56:05 2019-10-15 07:56:15 t 1 1 121338 554 0.00 2019-10-15 08:01:11 2019-10-15 08:25:35 t 1 1 121343 487 0.00 2019-10-15 08:12:25 2019-10-15 08:32:31 t 1 2 121345 562 0.00 2019-10-15 08:34:16 2019-10-15 08:34:42 t 1 1 121348 562 0.00 2019-10-15 08:35:07 2019-10-15 08:37:58 t 1 1 121349 481 0.00 2019-10-15 08:33:57 2019-10-15 08:39:28 t 1 1 121355 481 0.00 2019-10-15 08:39:28 2019-10-15 08:44:23 t 1 1 121364 562 0.00 2019-10-15 08:55:12 2019-10-15 08:55:29 t 1 1 121365 520 0.00 2019-10-15 08:54:52 2019-10-15 08:56:17 t 1 1 121369 520 0.00 2019-10-15 08:59:46 2019-10-15 09:05:13 t 1 1 121372 481 0.00 2019-10-15 08:44:23 2019-10-15 09:08:50 t 1 1 121373 538 0.00 2019-10-15 08:39:51 2019-10-15 09:10:20 t 1 1 121375 562 0.00 2019-10-15 09:12:08 2019-10-15 09:12:24 t 1 1 121377 520 0.00 2019-10-15 09:05:27 2019-10-15 09:16:18 t 1 1 121378 306 0.00 2019-10-15 09:10:45 2019-10-15 09:20:02 t 1 1 121380 562 0.00 2019-10-15 09:12:29 2019-10-15 09:21:49 t 1 1 121381 327 0.00 2019-10-15 09:00:46 2019-10-15 09:22:29 t 1 1 121383 562 0.00 2019-10-15 09:22:45 2019-10-15 09:23:43 t 1 1 121389 562 0.00 2019-10-15 09:27:13 2019-10-15 09:28:55 t 1 1 121390 412 0.00 2019-10-15 06:32:41 2019-10-15 09:31:16 t 1 1 121391 538 0.00 2019-10-15 09:10:19 2019-10-15 09:31:56 t 1 1 121393 416 0.00 2019-10-15 08:52:46 2019-10-15 09:32:17 t 1 1 121394 306 0.00 2019-10-15 09:22:30 2019-10-15 09:33:25 t 1 1 121395 554 0.00 2019-10-15 08:25:35 2019-10-15 09:34:37 t 1 1 121396 476 0.00 2019-10-15 09:25:53 2019-10-15 09:35:58 t 1 2 121403 554 0.00 2019-10-15 09:34:42 2019-10-15 09:42:36 t 1 1 121404 416 0.00 2019-10-15 09:32:17 2019-10-15 09:45:03 t 1 1 121405 562 0.00 2019-10-15 09:41:24 2019-10-15 09:46:25 t 1 1 121412 306 0.00 2019-10-15 09:53:04 2019-10-15 09:54:53 t 1 1 121413 562 0.00 2019-10-15 09:55:02 2019-10-15 09:57:01 t 1 1 121414 445 0.00 2019-10-15 09:13:43 2019-10-15 09:57:45 t 1 1 121419 416 0.00 2019-10-15 09:45:03 2019-10-15 10:02:13 t 1 1 121420 554 0.00 2019-10-15 09:52:46 2019-10-15 10:02:53 t 1 1 121422 528 0.00 2019-10-15 10:00:02 2019-10-15 10:03:09 t 1 1 121425 416 0.00 2019-10-15 10:02:13 2019-10-15 10:10:25 t 1 1 121431 474 0.00 2019-10-15 09:59:47 2019-10-15 10:15:36 t 1 1 121433 528 0.00 2019-10-15 10:17:18 2019-10-15 10:17:44 t 1 1 121435 562 0.00 2019-10-15 10:18:15 2019-10-15 10:19:12 t 1 1 121440 528 0.00 2019-10-15 10:20:01 2019-10-15 10:21:53 t 1 1 121443 481 0.00 2019-10-15 09:53:07 2019-10-15 10:24:54 t 1 1 121447 416 0.00 2019-10-15 10:27:05 2019-10-15 10:32:10 t 1 1 121448 562 0.00 2019-10-15 10:32:13 2019-10-15 10:32:53 t 1 1 121450 481 0.00 2019-10-15 10:24:54 2019-10-15 10:33:16 t 1 1 121456 554 0.00 2019-10-15 10:34:12 2019-10-15 10:38:19 t 1 1 121460 306 0.00 2019-10-15 10:38:43 2019-10-15 10:42:04 t 1 1 121467 470 0.00 2019-10-15 10:51:26 2019-10-15 10:54:23 t 1 1 121469 470 0.00 2019-10-15 10:54:23 2019-10-15 11:03:16 t 1 1 121472 306 0.00 2019-10-15 11:03:08 2019-10-15 11:05:36 t 1 1 121473 554 0.00 2019-10-15 10:45:04 2019-10-15 11:07:09 t 1 1 121474 554 0.00 2019-10-15 11:07:08 2019-10-15 11:08:02 t 1 1 121476 562 0.00 2019-10-15 11:07:09 2019-10-15 11:09:14 t 1 1 121477 412 0.00 2019-10-15 09:31:16 2019-10-15 11:10:35 t 1 1 121478 331 0.00 2019-10-15 10:16:28 2019-10-15 11:11:18 t 1 1 121479 562 0.00 2019-10-15 11:12:27 2019-10-15 11:12:46 t 1 1 121481 538 0.00 2019-10-15 11:13:53 2019-10-15 11:14:58 t 1 1 121483 331 0.00 2019-10-15 11:12:50 2019-10-15 11:15:17 t 1 1 121485 562 0.00 2019-10-15 11:15:34 2019-10-15 11:19:56 t 1 1 121486 538 0.00 2019-10-15 11:14:45 2019-10-15 11:21:57 t 1 1 121487 562 0.00 2019-10-15 11:20:29 2019-10-15 11:23:32 t 1 1 121488 445 0.00 2019-10-15 11:15:16 2019-10-15 11:26:01 t 1 1 121494 481 0.00 2019-10-15 10:38:07 2019-10-15 11:32:01 t 1 1 121498 445 0.00 2019-10-15 11:37:18 2019-10-15 11:40:53 t 1 1 121507 512 0.00 2019-10-15 11:27:08 2019-10-15 11:56:11 t 1 1 121508 562 0.00 2019-10-15 11:56:30 2019-10-15 11:56:39 t 1 1 121510 430 0.00 2019-10-15 11:54:43 2019-10-15 11:59:20 t 1 1 121512 306 0.00 2019-10-15 11:49:14 2019-10-15 12:02:33 t 1 1 121514 408 0.00 2019-10-15 12:01:48 2019-10-15 12:04:06 t 1 1 121515 481 0.00 2019-10-15 11:42:16 2019-10-15 12:05:09 t 1 1 121516 562 0.00 2019-10-15 12:07:09 2019-10-15 12:07:30 t 1 1 121518 512 0.00 2019-10-15 12:00:29 2019-10-15 12:10:23 t 1 1 121520 562 0.00 2019-10-15 12:12:34 2019-10-15 12:13:40 t 1 1 121525 501 0.00 2019-10-15 12:02:45 2019-10-15 12:19:37 t 1 1 121526 501 0.00 2019-10-15 12:20:41 2019-10-15 12:21:38 t 1 1 121542 501 0.00 2019-10-15 12:22:20 2019-10-15 12:37:48 t 1 1 121546 562 0.00 2019-10-15 12:39:00 2019-10-15 12:40:21 t 1 1 121549 490 0.00 2019-10-15 12:38:21 2019-10-15 12:43:04 t 1 1 121550 331 0.00 2019-10-15 11:16:41 2019-10-15 12:44:04 t 1 1 121553 470 0.00 2019-10-15 12:40:52 2019-10-15 12:46:10 t 1 1 121558 456 0.00 2019-10-15 12:48:12 2019-10-15 12:51:21 t 1 1 121562 538 0.00 2019-10-15 12:53:20 2019-10-15 12:55:49 t 1 1 121563 490 0.00 2019-10-15 12:48:02 2019-10-15 12:56:17 t 1 1 121565 538 0.00 2019-10-15 12:55:46 2019-10-15 12:56:53 t 1 1 121567 487 0.00 2019-10-15 09:05:08 2019-10-15 12:57:42 t 1 2 121574 481 0.00 2019-10-15 12:05:53 2019-10-15 13:04:35 t 1 1 121581 220 0.00 2019-10-15 12:59:05 2019-10-15 13:08:16 t 1 1 121585 306 0.00 2019-10-15 13:16:39 2019-10-15 13:17:24 t 1 1 121586 487 0.00 2019-10-15 13:08:23 2019-10-15 13:18:28 t 1 2 121325 562 0.00 2019-10-15 07:58:15 2019-10-15 08:05:52 t 1 1 121329 562 0.00 2019-10-15 08:07:13 2019-10-15 08:11:25 t 1 1 121330 538 0.00 2019-10-15 01:18:18 2019-10-15 08:12:30 t 1 1 121333 562 0.00 2019-10-15 08:14:50 2019-10-15 08:18:01 t 1 1 121334 416 0.00 2019-10-15 08:14:01 2019-10-15 08:19:31 t 1 1 121337 538 0.00 2019-10-15 08:23:18 2019-10-15 08:25:19 t 1 1 121341 562 0.00 2019-10-15 08:18:56 2019-10-15 08:29:47 t 1 1 121342 562 0.00 2019-10-15 08:30:46 2019-10-15 08:31:47 t 1 1 121346 456 0.00 2019-10-15 08:31:41 2019-10-15 08:35:10 t 1 1 121347 487 0.00 2019-10-15 08:27:42 2019-10-15 08:37:47 t 1 2 121351 562 0.00 2019-10-15 08:38:24 2019-10-15 08:40:53 t 1 1 121352 520 0.00 2019-10-15 07:56:31 2019-10-15 08:43:16 t 1 1 121358 562 0.00 2019-10-15 08:44:52 2019-10-15 08:46:14 t 1 1 121359 562 0.00 2019-10-15 08:46:47 2019-10-15 08:47:20 t 1 1 121361 416 0.00 2019-10-15 08:40:52 2019-10-15 08:52:46 t 1 1 121374 516 0.00 2019-10-15 09:03:23 2019-10-15 09:10:25 t 1 1 121385 562 0.00 2019-10-15 09:24:24 2019-10-15 09:25:00 t 1 1 121397 538 0.00 2019-10-15 09:31:56 2019-10-15 09:36:01 t 1 1 121399 331 0.00 2019-10-15 08:18:16 2019-10-15 09:36:26 t 1 1 121402 564 0.00 2019-10-14 23:32:15 2019-10-15 09:41:54 t 1 1 121406 562 0.00 2019-10-15 09:46:37 2019-10-15 09:48:33 t 1 1 121411 562 0.00 2019-10-15 09:52:25 2019-10-15 09:53:56 t 1 1 121415 562 0.00 2019-10-15 09:57:18 2019-10-15 09:59:11 t 1 1 121417 456 0.00 2019-10-15 09:57:39 2019-10-15 10:00:11 t 1 1 121418 562 0.00 2019-10-15 10:00:50 2019-10-15 10:01:36 t 1 1 121426 470 0.00 2019-10-15 10:04:18 2019-10-15 10:11:23 t 1 1 121428 554 0.00 2019-10-15 10:03:49 2019-10-15 10:13:05 t 1 1 121429 562 0.00 2019-10-15 10:12:26 2019-10-15 10:14:03 t 1 1 121436 430 0.00 2019-10-15 10:17:48 2019-10-15 10:19:52 t 1 1 121437 562 0.00 2019-10-15 10:20:28 2019-10-15 10:20:37 t 1 1 121444 554 0.00 2019-10-15 10:13:06 2019-10-15 10:25:21 t 1 1 121445 416 0.00 2019-10-15 10:10:31 2019-10-15 10:26:16 t 1 1 121454 470 0.00 2019-10-15 10:23:47 2019-10-15 10:37:34 t 1 1 121455 481 0.00 2019-10-15 10:33:16 2019-10-15 10:38:07 t 1 1 121457 416 0.00 2019-10-15 10:32:31 2019-10-15 10:38:59 t 1 1 121459 554 0.00 2019-10-15 10:38:19 2019-10-15 10:41:22 t 1 1 121461 416 0.00 2019-10-15 10:40:56 2019-10-15 10:42:17 t 1 1 121462 538 0.00 2019-10-15 09:35:04 2019-10-15 10:44:51 t 1 1 121463 445 0.00 2019-10-15 10:33:35 2019-10-15 10:46:59 t 1 1 121464 506 0.00 2019-10-15 10:40:47 2019-10-15 10:48:54 t 1 1 121465 506 0.00 2019-10-15 10:48:54 2019-10-15 10:49:49 t 1 1 121475 512 0.00 2019-10-15 11:07:09 2019-10-15 11:08:23 t 1 1 121482 445 0.00 2019-10-15 11:02:59 2019-10-15 11:15:05 t 1 1 121484 331 0.00 2019-10-15 11:15:42 2019-10-15 11:16:37 t 1 1 121491 554 0.00 2019-10-15 11:08:02 2019-10-15 11:29:34 t 1 1 121493 538 0.00 2019-10-15 11:22:02 2019-10-15 11:31:06 t 1 1 121497 445 0.00 2019-10-15 11:35:11 2019-10-15 11:37:18 t 1 1 121499 445 0.00 2019-10-15 11:41:00 2019-10-15 11:41:08 t 1 1 121500 562 0.00 2019-10-15 11:43:09 2019-10-15 11:43:34 t 1 1 121506 430 0.00 2019-10-15 11:54:18 2019-10-15 11:54:34 t 1 1 121509 379 0.00 2019-10-15 08:24:59 2019-10-15 11:56:40 t 1 1 121511 538 0.00 2019-10-15 11:33:36 2019-10-15 12:02:08 t 1 1 121513 470 0.00 2019-10-15 11:56:38 2019-10-15 12:03:58 t 1 1 121522 445 0.00 2019-10-15 12:13:44 2019-10-15 12:14:50 t 1 1 121524 562 0.00 2019-10-15 12:17:47 2019-10-15 12:18:14 t 1 1 121529 445 0.00 2019-10-15 12:14:32 2019-10-15 12:22:53 t 1 1 121532 501 0.00 2019-10-15 12:22:03 2019-10-15 12:24:28 t 1 1 121533 456 0.00 2019-10-15 12:14:10 2019-10-15 12:26:45 t 1 1 121539 528 0.00 2019-10-15 11:40:58 2019-10-15 12:32:37 t 1 1 121540 514 0.00 2019-10-15 12:26:54 2019-10-15 12:32:39 t 1 1 121541 562 0.00 2019-10-15 12:29:02 2019-10-15 12:33:21 t 1 1 121545 501 0.00 2019-10-15 12:39:53 2019-10-15 12:40:04 t 1 1 121547 470 0.00 2019-10-15 12:23:19 2019-10-15 12:40:52 t 1 1 121551 538 0.00 2019-10-15 12:28:57 2019-10-15 12:44:12 t 1 1 121554 220 0.00 2019-10-15 12:42:52 2019-10-15 12:47:44 t 1 1 121555 490 0.00 2019-10-15 12:43:04 2019-10-15 12:48:02 t 1 1 121556 501 0.00 2019-10-15 12:40:12 2019-10-15 12:48:21 t 1 1 121557 562 0.00 2019-10-15 12:42:58 2019-10-15 12:49:33 t 1 1 121559 528 0.00 2019-10-15 12:44:10 2019-10-15 12:51:37 t 1 1 121560 538 0.00 2019-10-15 12:44:05 2019-10-15 12:52:59 t 1 1 121561 445 0.00 2019-10-15 12:32:21 2019-10-15 12:54:51 t 1 1 121564 306 0.00 2019-10-15 12:35:33 2019-10-15 12:56:43 t 1 1 121568 562 0.00 2019-10-15 12:49:33 2019-10-15 12:57:50 t 1 1 121570 445 0.00 2019-10-15 12:54:52 2019-10-15 12:59:46 t 1 1 121572 331 0.00 2019-10-15 12:46:11 2019-10-15 13:02:27 t 1 1 121575 470 0.00 2019-10-15 12:46:10 2019-10-15 13:05:15 t 1 1 121576 562 0.00 2019-10-15 13:05:39 2019-10-15 13:05:47 t 1 1 121578 512 0.00 2019-10-15 12:14:11 2019-10-15 13:05:52 t 1 1 121582 408 0.00 2019-10-15 13:00:09 2019-10-15 13:09:04 t 1 1 121584 470 0.00 2019-10-15 13:05:15 2019-10-15 13:10:59 t 1 1 121587 408 0.00 2019-10-15 13:09:04 2019-10-15 13:18:44 t 1 1 121588 562 0.00 2019-10-15 13:17:49 2019-10-15 13:18:58 t 1 1 121593 408 0.00 2019-10-15 13:18:44 2019-10-15 13:22:29 t 1 1 121597 408 0.00 2019-10-15 13:26:33 2019-10-15 13:30:52 t 1 1 121599 408 0.00 2019-10-15 13:30:52 2019-10-15 13:33:25 t 1 1 121605 451 0.00 2019-10-15 13:34:38 2019-10-15 13:43:28 t 1 1 49884 109 0.00 2016-06-25 20:18:33 2016-06-25 20:20:09 t 1 1 121607 562 0.00 2019-10-15 13:43:10 2019-10-15 13:43:38 t 1 1 121612 562 0.00 2019-10-15 13:46:18 2019-10-15 13:54:54 t 1 1 121615 470 0.00 2019-10-15 13:48:38 2019-10-15 14:00:32 t 1 1 121617 451 0.00 2019-10-15 13:55:54 2019-10-15 14:03:05 t 1 1 121618 470 0.00 2019-10-15 14:00:32 2019-10-15 14:04:08 t 1 1 121619 538 0.00 2019-10-15 12:56:53 2019-10-15 14:06:46 t 1 1 121622 481 0.00 2019-10-15 13:04:35 2019-10-15 14:10:53 t 1 1 121626 220 0.00 2019-10-15 13:47:38 2019-10-15 14:17:16 t 1 1 121630 501 0.00 2019-10-15 14:16:00 2019-10-15 14:19:35 t 1 1 121635 501 0.00 2019-10-15 14:22:38 2019-10-15 14:22:46 t 1 1 121636 501 0.00 2019-10-15 14:23:39 2019-10-15 14:25:12 t 1 1 121639 470 0.00 2019-10-15 14:16:03 2019-10-15 14:26:00 t 1 1 121640 501 0.00 2019-10-15 14:26:13 2019-10-15 14:26:21 t 1 1 121656 501 0.00 2019-10-15 14:41:22 2019-10-15 14:41:30 t 1 1 121659 501 0.00 2019-10-15 14:43:24 2019-10-15 14:43:31 t 1 1 121660 501 0.00 2019-10-15 14:44:24 2019-10-15 14:44:31 t 1 1 121661 220 0.00 2019-10-15 13:24:41 2019-10-15 14:45:04 t 1 2 121667 501 0.00 2019-10-15 14:46:32 2019-10-15 14:46:39 t 1 1 121670 501 0.00 2019-10-15 14:47:25 2019-10-15 14:47:33 t 1 1 121674 481 0.00 2019-10-15 14:11:33 2019-10-15 14:49:19 t 1 1 121503 562 0.00 2019-10-15 11:48:33 2019-10-15 11:48:42 t 1 1 121504 562 0.00 2019-10-15 11:49:49 2019-10-15 11:50:43 t 1 1 121505 430 0.00 2019-10-15 11:53:19 2019-10-15 11:54:10 t 1 1 121517 292 0.00 2019-10-15 12:06:45 2019-10-15 12:08:32 t 1 2 121519 564 0.00 2019-10-15 11:44:02 2019-10-15 12:11:06 t 1 1 121521 445 0.00 2019-10-15 11:45:32 2019-10-15 12:13:44 t 1 1 121523 470 0.00 2019-10-15 12:03:58 2019-10-15 12:16:17 t 1 1 121527 501 0.00 2019-10-15 12:21:46 2019-10-15 12:21:55 t 1 1 121528 538 0.00 2019-10-15 12:02:13 2019-10-15 12:22:04 t 1 1 121530 470 0.00 2019-10-15 12:16:17 2019-10-15 12:23:19 t 1 1 121531 445 0.00 2019-10-15 12:22:59 2019-10-15 12:24:08 t 1 1 121534 514 0.00 2019-10-15 10:04:38 2019-10-15 12:26:54 t 1 1 121535 538 0.00 2019-10-15 12:25:47 2019-10-15 12:27:20 t 1 1 121536 306 0.00 2019-10-15 12:23:17 2019-10-15 12:28:17 t 1 1 121537 562 0.00 2019-10-15 12:20:00 2019-10-15 12:29:02 t 1 1 121538 445 0.00 2019-10-15 12:24:15 2019-10-15 12:32:09 t 1 1 121543 490 0.00 2019-10-15 12:27:46 2019-10-15 12:38:21 t 1 1 121544 562 0.00 2019-10-15 12:33:21 2019-10-15 12:39:00 t 1 1 121548 528 0.00 2019-10-15 12:32:37 2019-10-15 12:42:40 t 1 1 121552 331 0.00 2019-10-15 12:44:08 2019-10-15 12:46:06 t 1 1 121566 501 0.00 2019-10-15 12:48:54 2019-10-15 12:57:13 t 1 1 121569 220 0.00 2019-10-15 12:47:44 2019-10-15 12:59:05 t 1 1 121571 306 0.00 2019-10-15 13:00:43 2019-10-15 13:01:56 t 1 1 121573 562 0.00 2019-10-15 12:57:50 2019-10-15 13:04:13 t 1 1 121577 422 0.00 2019-10-15 05:54:44 2019-10-15 13:05:48 t 1 1 121579 490 0.00 2019-10-15 12:56:17 2019-10-15 13:05:57 t 1 1 121580 562 0.00 2019-10-15 13:06:18 2019-10-15 13:08:09 t 1 1 121583 490 0.00 2019-10-15 13:05:57 2019-10-15 13:10:19 t 1 1 121589 220 0.00 2019-10-15 13:08:16 2019-10-15 13:19:00 t 1 1 121590 562 0.00 2019-10-15 13:20:51 2019-10-15 13:21:09 t 1 1 121594 562 0.00 2019-10-15 13:25:48 2019-10-15 13:25:57 t 1 1 121598 296 0.00 2019-10-15 12:32:46 2019-10-15 13:32:09 t 1 2 121603 306 0.00 2019-10-15 13:34:21 2019-10-15 13:37:52 t 1 1 121604 566 0.00 2019-10-15 13:27:39 2019-10-15 13:39:12 t 1 1 121608 470 0.00 2019-10-15 13:34:15 2019-10-15 13:48:38 t 1 1 121609 566 0.00 2019-10-15 13:39:12 2019-10-15 13:49:57 t 1 1 121613 451 0.00 2019-10-15 13:43:28 2019-10-15 13:55:54 t 1 1 121614 412 0.00 2019-10-15 11:10:35 2019-10-15 14:00:21 t 1 1 121616 498 0.00 2019-10-15 12:24:35 2019-10-15 14:02:47 t 1 2 121621 470 0.00 2019-10-15 14:04:08 2019-10-15 14:08:35 t 1 1 121624 538 0.00 2019-10-15 14:06:45 2019-10-15 14:12:12 t 1 1 121629 220 0.00 2019-10-15 14:17:50 2019-10-15 14:18:51 t 1 1 121634 220 0.00 2019-10-15 14:22:08 2019-10-15 14:22:14 t 1 1 121637 566 0.00 2019-10-15 14:11:13 2019-10-15 14:25:28 t 1 1 121638 514 0.00 2019-10-15 12:32:39 2019-10-15 14:25:59 t 1 1 121642 501 0.00 2019-10-15 14:26:48 2019-10-15 14:27:10 t 1 1 121644 538 0.00 2019-10-15 14:12:12 2019-10-15 14:31:57 t 1 1 121646 538 0.00 2019-10-15 14:31:56 2019-10-15 14:33:36 t 1 1 121647 501 0.00 2019-10-15 14:34:21 2019-10-15 14:34:28 t 1 1 121649 501 0.00 2019-10-15 14:35:19 2019-10-15 14:35:20 t 1 1 121651 501 0.00 2019-10-15 14:36:22 2019-10-15 14:37:14 t 1 1 121652 538 0.00 2019-10-15 14:32:40 2019-10-15 14:39:29 t 1 1 121654 501 0.00 2019-10-15 14:40:26 2019-10-15 14:40:34 t 1 1 121657 501 0.00 2019-10-15 14:42:23 2019-10-15 14:42:30 t 1 1 121662 562 0.00 2019-10-15 14:33:30 2019-10-15 14:45:10 t 1 1 121663 501 0.00 2019-10-15 14:45:24 2019-10-15 14:45:32 t 1 1 121666 501 0.00 2019-10-15 14:46:18 2019-10-15 14:46:26 t 1 1 121673 445 0.00 2019-10-15 14:43:30 2019-10-15 14:49:18 t 1 1 121675 501 0.00 2019-10-15 14:49:26 2019-10-15 14:49:34 t 1 1 121676 562 0.00 2019-10-15 14:49:22 2019-10-15 14:50:20 t 1 1 121677 508 0.00 2019-10-15 14:37:46 2019-10-15 14:51:16 t 1 2 121680 481 0.00 2019-10-15 14:49:18 2019-10-15 14:52:25 t 1 1 121685 562 0.00 2019-10-15 14:55:35 2019-10-15 14:56:05 t 1 1 121689 554 0.00 2019-10-15 11:30:24 2019-10-15 14:58:46 t 1 1 121696 220 0.00 2019-10-15 15:01:04 2019-10-15 15:01:44 t 1 1 121697 220 0.00 2019-10-15 15:01:43 2019-10-15 15:02:16 t 1 1 121701 538 0.00 2019-10-15 14:40:21 2019-10-15 15:08:11 t 1 1 121703 456 0.00 2019-10-15 15:05:57 2019-10-15 15:08:31 t 1 1 121705 481 0.00 2019-10-15 14:52:06 2019-10-15 15:10:11 t 1 1 121709 501 0.00 2019-10-15 15:22:01 2019-10-15 15:30:08 t 1 1 121710 562 0.00 2019-10-15 15:31:27 2019-10-15 15:33:12 t 1 1 121714 501 0.00 2019-10-15 15:34:45 2019-10-15 15:34:53 t 1 1 121716 501 0.00 2019-10-15 15:37:57 2019-10-15 15:38:29 t 1 1 121717 516 0.00 2019-10-15 15:33:18 2019-10-15 15:39:14 t 1 1 121721 562 0.00 2019-10-15 15:42:17 2019-10-15 15:42:42 t 1 1 121724 554 0.00 2019-10-15 15:44:02 2019-10-15 15:44:19 t 1 1 121726 445 0.00 2019-10-15 14:49:33 2019-10-15 15:48:00 t 1 1 121729 445 0.00 2019-10-15 15:47:59 2019-10-15 15:49:21 t 1 1 121733 445 0.00 2019-10-15 15:49:26 2019-10-15 15:54:28 t 1 1 121734 220 0.00 2019-10-15 15:53:56 2019-10-15 15:54:54 t 1 1 121742 220 0.00 2019-10-15 15:59:09 2019-10-15 15:59:42 t 1 1 121743 445 0.00 2019-10-15 15:54:33 2019-10-15 16:00:03 t 1 1 121745 470 0.00 2019-10-15 15:53:00 2019-10-15 16:00:25 t 1 1 121754 501 0.00 2019-10-15 16:03:00 2019-10-15 16:04:48 t 1 1 121758 526 0.00 2019-10-15 15:53:16 2019-10-15 16:06:53 t 1 1 121759 445 0.00 2019-10-15 16:04:44 2019-10-15 16:07:04 t 1 1 121763 470 0.00 2019-10-15 16:00:54 2019-10-15 16:07:50 t 1 1 121764 501 0.00 2019-10-15 16:07:53 2019-10-15 16:08:53 t 1 1 121770 526 0.00 2019-10-15 16:10:42 2019-10-15 16:10:44 t 1 1 121771 501 0.00 2019-10-15 16:10:52 2019-10-15 16:11:00 t 1 1 121778 220 0.00 2019-10-15 16:11:38 2019-10-15 16:14:13 t 1 1 121782 220 0.00 2019-10-15 16:15:38 2019-10-15 16:16:13 t 1 1 121788 528 0.00 2019-10-15 16:18:30 2019-10-15 16:20:04 t 1 1 121790 544 0.00 2019-10-15 16:10:15 2019-10-15 16:20:21 t 1 2 121795 220 0.00 2019-10-15 16:19:54 2019-10-15 16:21:01 t 1 1 121797 485 0.00 2019-10-15 16:08:39 2019-10-15 16:22:23 t 1 1 121799 481 0.00 2019-10-15 15:33:56 2019-10-15 16:22:36 t 1 1 121801 306 0.00 2019-10-15 16:11:38 2019-10-15 16:23:56 t 1 1 121804 528 0.00 2019-10-15 16:22:59 2019-10-15 16:24:23 t 1 1 121806 501 0.00 2019-10-15 16:24:24 2019-10-15 16:24:52 t 1 1 121813 528 0.00 2019-10-15 16:26:30 2019-10-15 16:28:52 t 1 1 121814 220 0.00 2019-10-15 16:26:06 2019-10-15 16:29:40 t 1 1 121823 554 0.00 2019-10-15 16:18:34 2019-10-15 16:39:16 t 1 1 121827 514 0.00 2019-10-15 14:25:59 2019-10-15 16:40:50 t 1 1 121829 220 0.00 2019-10-15 16:41:15 2019-10-15 16:41:49 t 1 1 121831 514 0.00 2019-10-15 16:40:56 2019-10-15 16:42:08 t 1 1 121835 501 0.00 2019-10-15 16:45:19 2019-10-15 16:45:30 t 1 1 121591 470 0.00 2019-10-15 13:10:59 2019-10-15 13:21:53 t 1 1 121592 220 0.00 2019-10-15 13:19:00 2019-10-15 13:22:25 t 1 1 121595 408 0.00 2019-10-15 13:22:29 2019-10-15 13:26:33 t 1 1 121596 566 0.00 2019-10-15 13:11:40 2019-10-15 13:27:39 t 1 1 121600 470 0.00 2019-10-15 13:21:53 2019-10-15 13:34:15 t 1 1 121601 451 0.00 2019-10-15 13:23:45 2019-10-15 13:34:38 t 1 1 121602 562 0.00 2019-10-15 13:36:17 2019-10-15 13:36:40 t 1 1 121606 331 0.00 2019-10-15 13:02:37 2019-10-15 13:43:31 t 1 1 121610 306 0.00 2019-10-15 13:46:49 2019-10-15 13:52:35 t 1 1 121611 485 0.00 2019-10-15 13:51:24 2019-10-15 13:54:29 t 1 1 121620 451 0.00 2019-10-15 14:03:05 2019-10-15 14:07:20 t 1 1 121623 566 0.00 2019-10-15 13:49:57 2019-10-15 14:11:13 t 1 1 121625 470 0.00 2019-10-15 14:08:35 2019-10-15 14:16:03 t 1 1 121627 220 0.00 2019-10-15 14:17:11 2019-10-15 14:17:50 t 1 1 121628 247 0.00 2019-10-15 14:18:24 2019-10-15 14:18:24 f 1 2 121631 501 0.00 2019-10-15 14:19:42 2019-10-15 14:20:35 t 1 1 121632 501 0.00 2019-10-15 14:21:38 2019-10-15 14:21:46 t 1 1 121633 220 0.00 2019-10-15 14:18:49 2019-10-15 14:22:00 t 1 1 121641 512 0.00 2019-10-15 14:20:12 2019-10-15 14:26:48 t 1 1 121643 501 0.00 2019-10-15 14:31:01 2019-10-15 14:31:16 t 1 1 121645 562 0.00 2019-10-15 13:56:27 2019-10-15 14:33:20 t 1 1 121648 470 0.00 2019-10-15 14:26:00 2019-10-15 14:34:52 t 1 1 121650 566 0.00 2019-10-15 14:25:28 2019-10-15 14:35:53 t 1 1 121653 501 0.00 2019-10-15 14:39:24 2019-10-15 14:39:53 t 1 1 121655 566 0.00 2019-10-15 14:35:53 2019-10-15 14:40:35 t 1 1 121658 445 0.00 2019-10-15 12:59:56 2019-10-15 14:43:30 t 1 1 121664 470 0.00 2019-10-15 14:34:52 2019-10-15 14:45:42 t 1 1 121665 562 0.00 2019-10-15 14:45:22 2019-10-15 14:46:04 t 1 1 121668 296 0.00 2019-10-15 14:41:44 2019-10-15 14:47:07 t 1 2 121669 528 0.00 2019-10-15 13:27:59 2019-10-15 14:47:30 t 1 1 121671 566 0.00 2019-10-15 14:40:35 2019-10-15 14:48:00 t 1 1 121672 501 0.00 2019-10-15 14:48:24 2019-10-15 14:48:32 t 1 1 121678 501 0.00 2019-10-15 14:50:26 2019-10-15 14:52:16 t 1 1 121682 562 0.00 2019-10-15 14:52:29 2019-10-15 14:54:09 t 1 1 121684 501 0.00 2019-10-15 14:54:48 2019-10-15 14:54:49 t 1 1 121686 566 0.00 2019-10-15 14:48:00 2019-10-15 14:56:24 t 1 1 121687 501 0.00 2019-10-15 14:56:55 2019-10-15 14:57:56 t 1 1 121688 501 0.00 2019-10-15 14:58:05 2019-10-15 14:58:21 t 1 1 121692 562 0.00 2019-10-15 14:59:36 2019-10-15 15:00:16 t 1 1 121694 220 0.00 2019-10-15 14:22:00 2019-10-15 15:00:28 t 1 1 121695 220 0.00 2019-10-15 15:00:28 2019-10-15 15:01:05 t 1 1 121698 470 0.00 2019-10-15 14:52:44 2019-10-15 15:07:03 t 1 1 121700 562 0.00 2019-10-15 15:06:52 2019-10-15 15:07:39 t 1 1 121702 501 0.00 2019-10-15 15:07:19 2019-10-15 15:08:19 t 1 1 121704 501 0.00 2019-10-15 15:08:29 2019-10-15 15:08:36 t 1 1 121708 562 0.00 2019-10-15 15:17:43 2019-10-15 15:18:10 t 1 1 121712 501 0.00 2019-10-15 15:30:27 2019-10-15 15:33:48 t 1 1 121718 501 0.00 2019-10-15 15:38:53 2019-10-15 15:39:26 t 1 1 121722 554 0.00 2019-10-15 14:58:45 2019-10-15 15:43:40 t 1 1 121723 554 0.00 2019-10-15 15:43:39 2019-10-15 15:44:02 t 1 1 121727 501 0.00 2019-10-15 15:41:25 2019-10-15 15:48:27 t 1 1 121728 501 0.00 2019-10-15 15:48:56 2019-10-15 15:49:05 t 1 1 121731 526 0.00 2019-10-15 15:43:28 2019-10-15 15:53:16 t 1 1 121732 220 0.00 2019-10-15 15:46:13 2019-10-15 15:53:56 t 1 1 121735 220 0.00 2019-10-15 15:54:54 2019-10-15 15:55:27 t 1 1 121738 220 0.00 2019-10-15 15:58:03 2019-10-15 15:58:35 t 1 1 121739 220 0.00 2019-10-15 15:58:34 2019-10-15 15:59:10 t 1 1 121741 501 0.00 2019-10-15 15:59:26 2019-10-15 15:59:34 t 1 1 121746 501 0.00 2019-10-15 16:01:22 2019-10-15 16:01:30 t 1 1 121749 501 0.00 2019-10-15 16:02:30 2019-10-15 16:02:32 t 1 1 121750 220 0.00 2019-10-15 16:02:05 2019-10-15 16:02:45 t 1 1 121753 528 0.00 2019-10-15 15:33:43 2019-10-15 16:04:06 t 1 1 121756 554 0.00 2019-10-15 15:44:19 2019-10-15 16:05:45 t 1 1 121757 501 0.00 2019-10-15 16:05:51 2019-10-15 16:05:59 t 1 1 121761 220 0.00 2019-10-15 16:04:53 2019-10-15 16:07:11 t 1 1 121765 220 0.00 2019-10-15 16:07:11 2019-10-15 16:09:06 t 1 1 121767 526 0.00 2019-10-15 16:08:32 2019-10-15 16:09:42 t 1 1 121772 528 0.00 2019-10-15 16:04:58 2019-10-15 16:11:11 t 1 1 121775 501 0.00 2019-10-15 16:12:07 2019-10-15 16:12:08 t 1 1 121776 562 0.00 2019-10-15 16:13:22 2019-10-15 16:13:42 t 1 1 121777 501 0.00 2019-10-15 16:13:53 2019-10-15 16:14:01 t 1 1 121781 501 0.00 2019-10-15 16:15:01 2019-10-15 16:16:01 t 1 1 121785 220 0.00 2019-10-15 16:16:13 2019-10-15 16:18:10 t 1 1 121786 554 0.00 2019-10-15 16:05:45 2019-10-15 16:18:34 t 1 1 121787 220 0.00 2019-10-15 16:18:10 2019-10-15 16:19:54 t 1 1 121789 445 0.00 2019-10-15 16:07:05 2019-10-15 16:20:14 t 1 1 121791 544 0.00 2019-10-15 16:15:13 2019-10-15 16:20:23 t 1 2 121794 562 0.00 2019-10-15 16:20:34 2019-10-15 16:20:58 t 1 1 121796 528 0.00 2019-10-15 16:20:03 2019-10-15 16:21:29 t 1 1 49899 109 0.00 2016-06-25 21:16:53 2016-06-25 21:18:09 t 1 1 121802 220 0.00 2019-10-15 16:21:01 2019-10-15 16:24:04 t 1 1 121808 220 0.00 2019-10-15 16:24:04 2019-10-15 16:25:22 t 1 1 121815 220 0.00 2019-10-15 16:29:39 2019-10-15 16:30:20 t 1 1 121818 220 0.00 2019-10-15 16:34:09 2019-10-15 16:34:43 t 1 1 121821 562 0.00 2019-10-15 16:37:22 2019-10-15 16:37:46 t 1 1 121822 562 0.00 2019-10-15 16:38:07 2019-10-15 16:38:33 t 1 1 121825 220 0.00 2019-10-15 16:40:11 2019-10-15 16:40:33 t 1 1 121828 220 0.00 2019-10-15 16:40:33 2019-10-15 16:41:15 t 1 1 121832 528 0.00 2019-10-15 16:36:54 2019-10-15 16:42:55 t 1 1 121844 528 0.00 2019-10-15 16:44:29 2019-10-15 16:49:04 t 1 1 121854 501 0.00 2019-10-15 16:53:36 2019-10-15 16:54:43 t 1 1 121856 220 0.00 2019-10-15 16:54:30 2019-10-15 16:57:10 t 1 1 121858 501 0.00 2019-10-15 16:57:39 2019-10-15 16:57:47 t 1 1 121859 220 0.00 2019-10-15 16:57:10 2019-10-15 16:57:58 t 1 1 121861 501 0.00 2019-10-15 16:58:46 2019-10-15 16:58:48 t 1 1 121863 501 0.00 2019-10-15 16:59:46 2019-10-15 16:59:47 t 1 1 121867 538 0.00 2019-10-15 16:01:30 2019-10-15 17:05:01 t 1 1 121869 498 0.00 2019-10-15 16:11:38 2019-10-15 17:06:43 t 1 2 121871 220 0.00 2019-10-15 17:06:16 2019-10-15 17:07:41 t 1 1 121873 445 0.00 2019-10-15 16:59:08 2019-10-15 17:10:03 t 1 1 121874 544 0.00 2019-10-15 16:42:54 2019-10-15 17:11:16 t 1 1 121875 220 0.00 2019-10-15 17:10:10 2019-10-15 17:11:23 t 1 1 121882 554 0.00 2019-10-15 17:12:25 2019-10-15 17:14:37 t 1 1 121889 564 0.00 2019-10-15 16:46:43 2019-10-15 17:18:25 t 1 1 121890 538 0.00 2019-10-15 17:18:28 2019-10-15 17:19:46 t 1 1 121891 528 0.00 2019-10-15 16:51:01 2019-10-15 17:21:17 t 1 1 121893 220 0.00 2019-10-15 17:16:37 2019-10-15 17:22:05 t 1 1 121679 562 0.00 2019-10-15 14:52:10 2019-10-15 14:52:23 t 1 1 121681 470 0.00 2019-10-15 14:45:42 2019-10-15 14:52:44 t 1 1 121683 501 0.00 2019-10-15 14:53:55 2019-10-15 14:54:40 t 1 1 121690 220 0.00 2019-10-15 14:59:30 2019-10-15 14:59:55 t 1 2 121691 501 0.00 2019-10-15 14:59:29 2019-10-15 14:59:59 t 1 1 121693 501 0.00 2019-10-15 15:00:09 2019-10-15 15:00:23 t 1 1 121699 501 0.00 2019-10-15 15:06:13 2019-10-15 15:07:14 t 1 1 121706 501 0.00 2019-10-15 15:09:18 2019-10-15 15:13:07 t 1 1 121707 501 0.00 2019-10-15 15:14:17 2019-10-15 15:15:29 t 1 1 121711 528 0.00 2019-10-15 14:47:30 2019-10-15 15:33:27 t 1 1 121713 481 0.00 2019-10-15 15:10:27 2019-10-15 15:33:56 t 1 1 121715 501 0.00 2019-10-15 15:35:52 2019-10-15 15:35:59 t 1 1 121719 501 0.00 2019-10-15 15:39:53 2019-10-15 15:40:00 t 1 1 121720 501 0.00 2019-10-15 15:40:53 2019-10-15 15:41:00 t 1 1 121725 220 0.00 2019-10-15 15:02:16 2019-10-15 15:46:14 t 1 1 121730 562 0.00 2019-10-15 15:49:07 2019-10-15 15:49:29 t 1 1 121736 501 0.00 2019-10-15 15:49:56 2019-10-15 15:55:47 t 1 1 121737 220 0.00 2019-10-15 15:55:27 2019-10-15 15:58:04 t 1 1 121740 501 0.00 2019-10-15 15:56:54 2019-10-15 15:59:20 t 1 1 121744 501 0.00 2019-10-15 16:00:22 2019-10-15 16:00:24 t 1 1 121747 220 0.00 2019-10-15 15:59:42 2019-10-15 16:02:06 t 1 1 121748 501 0.00 2019-10-15 16:02:23 2019-10-15 16:02:25 t 1 1 121751 501 0.00 2019-10-15 16:02:38 2019-10-15 16:02:45 t 1 1 121752 445 0.00 2019-10-15 16:02:23 2019-10-15 16:03:37 t 1 1 121755 220 0.00 2019-10-15 16:02:45 2019-10-15 16:04:53 t 1 1 121760 562 0.00 2019-10-15 16:06:54 2019-10-15 16:07:08 t 1 1 121762 501 0.00 2019-10-15 16:06:51 2019-10-15 16:07:25 t 1 1 121766 501 0.00 2019-10-15 16:08:56 2019-10-15 16:09:27 t 1 1 121768 501 0.00 2019-10-15 16:09:52 2019-10-15 16:10:01 t 1 1 121769 526 0.00 2019-10-15 16:09:41 2019-10-15 16:10:42 t 1 1 121773 220 0.00 2019-10-15 16:09:05 2019-10-15 16:11:38 t 1 1 121774 501 0.00 2019-10-15 16:11:52 2019-10-15 16:12:00 t 1 1 121779 501 0.00 2019-10-15 16:14:54 2019-10-15 16:14:55 t 1 1 121780 220 0.00 2019-10-15 16:14:13 2019-10-15 16:15:38 t 1 1 121783 422 0.00 2019-10-15 13:05:48 2019-10-15 16:17:31 t 1 1 121784 470 0.00 2019-10-15 16:07:50 2019-10-15 16:18:02 t 1 1 121792 501 0.00 2019-10-15 16:19:58 2019-10-15 16:20:28 t 1 1 121793 501 0.00 2019-10-15 16:20:38 2019-10-15 16:20:50 t 1 1 121798 528 0.00 2019-10-15 16:22:07 2019-10-15 16:22:24 t 1 1 121800 501 0.00 2019-10-15 16:22:14 2019-10-15 16:22:56 t 1 1 121803 306 0.00 2019-10-15 16:23:56 2019-10-15 16:24:11 t 1 1 121805 501 0.00 2019-10-15 16:23:05 2019-10-15 16:24:29 t 1 1 121807 485 0.00 2019-10-15 16:22:23 2019-10-15 16:24:55 t 1 1 121809 528 0.00 2019-10-15 16:24:55 2019-10-15 16:25:40 t 1 1 121810 220 0.00 2019-10-15 16:25:22 2019-10-15 16:26:06 t 1 1 121811 485 0.00 2019-10-15 16:24:55 2019-10-15 16:27:54 t 1 1 121812 562 0.00 2019-10-15 16:21:47 2019-10-15 16:28:40 t 1 1 121816 528 0.00 2019-10-15 16:28:34 2019-10-15 16:33:10 t 1 1 121817 220 0.00 2019-10-15 16:30:19 2019-10-15 16:34:09 t 1 1 121819 220 0.00 2019-10-15 16:34:42 2019-10-15 16:37:11 t 1 1 121820 220 0.00 2019-10-15 16:37:10 2019-10-15 16:37:35 t 1 1 121824 220 0.00 2019-10-15 16:37:34 2019-10-15 16:39:49 t 1 1 121826 372 0.00 2019-10-15 16:37:44 2019-10-15 16:40:35 t 1 2 121830 554 0.00 2019-10-15 16:39:30 2019-10-15 16:41:59 t 1 1 121833 501 0.00 2019-10-15 16:44:41 2019-10-15 16:45:09 t 1 1 121834 220 0.00 2019-10-15 16:41:49 2019-10-15 16:45:23 t 1 1 121836 220 0.00 2019-10-15 16:45:23 2019-10-15 16:45:55 t 1 1 121837 501 0.00 2019-10-15 16:46:00 2019-10-15 16:46:30 t 1 1 121839 501 0.00 2019-10-15 16:47:34 2019-10-15 16:47:36 t 1 1 121840 220 0.00 2019-10-15 16:45:55 2019-10-15 16:48:00 t 1 1 121841 501 0.00 2019-10-15 16:48:34 2019-10-15 16:48:36 t 1 1 121843 220 0.00 2019-10-15 16:47:59 2019-10-15 16:48:45 t 1 1 121846 220 0.00 2019-10-15 16:48:45 2019-10-15 16:49:46 t 1 1 121847 501 0.00 2019-10-15 16:50:56 2019-10-15 16:51:34 t 1 1 121849 501 0.00 2019-10-15 16:52:44 2019-10-15 16:52:45 t 1 1 121850 220 0.00 2019-10-15 16:49:46 2019-10-15 16:52:59 t 1 1 121855 501 0.00 2019-10-15 16:55:46 2019-10-15 16:55:55 t 1 1 121857 501 0.00 2019-10-15 16:56:46 2019-10-15 16:57:34 t 1 1 121862 562 0.00 2019-10-15 16:58:55 2019-10-15 16:59:22 t 1 1 121868 220 0.00 2019-10-15 17:03:50 2019-10-15 17:06:16 t 1 1 121870 562 0.00 2019-10-15 17:06:23 2019-10-15 17:06:44 t 1 1 121876 501 0.00 2019-10-15 17:08:28 2019-10-15 17:11:29 t 1 1 121877 220 0.00 2019-10-15 17:11:23 2019-10-15 17:11:54 t 1 1 121878 554 0.00 2019-10-15 16:42:45 2019-10-15 17:12:26 t 1 1 121879 220 0.00 2019-10-15 17:11:54 2019-10-15 17:13:01 t 1 1 121880 562 0.00 2019-10-15 17:13:04 2019-10-15 17:13:19 t 1 1 121881 220 0.00 2019-10-15 17:13:16 2019-10-15 17:14:02 t 1 1 121885 220 0.00 2019-10-15 17:16:00 2019-10-15 17:16:38 t 1 1 121892 544 0.00 2019-10-15 17:11:16 2019-10-15 17:21:27 t 1 1 121894 528 0.00 2019-10-15 17:21:58 2019-10-15 17:22:36 t 1 1 121895 528 0.00 2019-10-15 17:22:52 2019-10-15 17:23:01 t 1 1 121900 520 0.00 2019-10-15 17:16:56 2019-10-15 17:27:53 t 1 1 121901 528 0.00 2019-10-15 17:28:27 2019-10-15 17:28:50 t 1 1 121904 220 0.00 2019-10-15 17:29:27 2019-10-15 17:30:03 t 1 1 121907 220 0.00 2019-10-15 17:30:03 2019-10-15 17:31:08 t 1 1 121909 220 0.00 2019-10-15 16:46:58 2019-10-15 17:32:04 t 1 2 121911 220 0.00 2019-10-15 17:31:08 2019-10-15 17:33:24 t 1 1 121916 220 0.00 2019-10-15 17:35:27 2019-10-15 17:36:46 t 1 1 121919 520 0.00 2019-10-15 17:36:46 2019-10-15 17:37:52 t 1 1 121920 445 0.00 2019-10-15 17:11:50 2019-10-15 17:37:59 t 1 1 121923 562 0.00 2019-10-15 17:34:44 2019-10-15 17:39:37 t 1 1 121930 520 0.00 2019-10-15 17:37:52 2019-10-15 17:42:55 t 1 1 121932 520 0.00 2019-10-15 17:42:54 2019-10-15 17:43:59 t 1 1 121933 220 0.00 2019-10-15 17:42:55 2019-10-15 17:44:15 t 1 1 121937 220 0.00 2019-10-15 17:44:54 2019-10-15 17:45:29 t 1 1 121946 220 0.00 2019-10-15 17:52:19 2019-10-15 17:53:28 t 1 1 121949 528 0.00 2019-10-15 17:53:56 2019-10-15 17:54:40 t 1 1 121950 451 0.00 2019-10-15 17:45:28 2019-10-15 17:55:27 t 1 1 121951 220 0.00 2019-10-15 17:53:27 2019-10-15 17:55:36 t 1 1 121952 220 0.00 2019-10-15 17:55:35 2019-10-15 17:57:35 t 1 1 121954 296 0.00 2019-10-15 17:51:13 2019-10-15 17:59:36 t 1 2 121956 468 0.00 2019-10-15 17:32:41 2019-10-15 17:59:55 t 1 1 121961 485 0.00 2019-10-15 17:56:37 2019-10-15 18:04:23 t 1 1 121963 451 0.00 2019-10-15 18:03:53 2019-10-15 18:05:45 t 1 1 121976 220 0.00 2019-10-15 18:10:11 2019-10-15 18:18:42 t 1 1 121979 501 0.00 2019-10-15 18:07:21 2019-10-15 18:22:28 t 1 1 121987 501 0.00 2019-10-15 18:22:28 2019-10-15 18:32:39 t 1 1 121838 564 0.00 2019-10-15 13:54:59 2019-10-15 16:47:00 t 1 1 121842 562 0.00 2019-10-15 16:48:08 2019-10-15 16:48:38 t 1 1 121845 501 0.00 2019-10-15 16:49:35 2019-10-15 16:49:36 t 1 1 121848 501 0.00 2019-10-15 16:52:36 2019-10-15 16:52:37 t 1 1 121851 306 0.00 2019-10-15 16:42:18 2019-10-15 16:53:24 t 1 1 121852 220 0.00 2019-10-15 16:52:58 2019-10-15 16:53:54 t 1 1 121853 220 0.00 2019-10-15 16:53:54 2019-10-15 16:54:30 t 1 1 121860 445 0.00 2019-10-15 16:20:17 2019-10-15 16:58:47 t 1 1 121864 220 0.00 2019-10-15 16:57:57 2019-10-15 17:01:18 t 1 1 121865 220 0.00 2019-10-15 17:01:18 2019-10-15 17:02:07 t 1 1 121866 220 0.00 2019-10-15 17:02:07 2019-10-15 17:03:50 t 1 1 121872 562 0.00 2019-10-15 17:09:49 2019-10-15 17:09:59 t 1 1 121883 556 0.00 2019-10-15 14:37:52 2019-10-15 17:15:46 t 1 1 121884 220 0.00 2019-10-15 17:14:01 2019-10-15 17:16:00 t 1 1 121886 520 0.00 2019-10-15 17:09:08 2019-10-15 17:16:56 t 1 1 121887 562 0.00 2019-10-15 17:15:33 2019-10-15 17:17:29 t 1 1 121888 538 0.00 2019-10-15 17:05:08 2019-10-15 17:18:04 t 1 1 121897 544 0.00 2019-10-15 17:21:27 2019-10-15 17:25:14 t 1 1 121899 470 0.00 2019-10-15 16:52:17 2019-10-15 17:26:59 t 1 1 121902 220 0.00 2019-10-15 17:23:05 2019-10-15 17:29:27 t 1 1 121905 470 0.00 2019-10-15 17:26:59 2019-10-15 17:30:11 t 1 1 121908 468 0.00 2019-10-15 17:23:19 2019-10-15 17:31:31 t 1 1 121910 501 0.00 2019-10-15 17:20:58 2019-10-15 17:32:09 t 1 1 121915 220 0.00 2019-10-15 17:34:53 2019-10-15 17:35:27 t 1 1 121917 520 0.00 2019-10-15 17:27:52 2019-10-15 17:36:46 t 1 1 121918 220 0.00 2019-10-15 17:36:46 2019-10-15 17:37:21 t 1 1 121922 220 0.00 2019-10-15 17:38:08 2019-10-15 17:38:43 t 1 1 121925 220 0.00 2019-10-15 17:39:53 2019-10-15 17:40:25 t 1 1 121927 470 0.00 2019-10-15 17:30:44 2019-10-15 17:40:34 t 1 1 121928 501 0.00 2019-10-15 17:32:09 2019-10-15 17:41:04 t 1 1 121929 562 0.00 2019-10-15 17:41:04 2019-10-15 17:42:08 t 1 1 121934 361 0.00 2019-10-15 17:35:41 2019-10-15 17:44:30 t 1 2 121936 220 0.00 2019-10-15 17:44:14 2019-10-15 17:44:54 t 1 1 121938 528 0.00 2019-10-15 17:46:08 2019-10-15 17:47:52 t 1 1 121939 528 0.00 2019-10-15 17:48:42 2019-10-15 17:48:52 t 1 1 121940 220 0.00 2019-10-15 17:45:29 2019-10-15 17:49:04 t 1 1 121941 220 0.00 2019-10-15 17:49:04 2019-10-15 17:49:39 t 1 1 121942 562 0.00 2019-10-15 17:49:38 2019-10-15 17:50:45 t 1 1 121944 220 0.00 2019-10-15 17:49:39 2019-10-15 17:52:19 t 1 1 121947 562 0.00 2019-10-15 17:51:25 2019-10-15 17:53:29 t 1 1 121948 501 0.00 2019-10-15 17:41:04 2019-10-15 17:54:18 t 1 1 121953 512 0.00 2019-10-15 17:12:35 2019-10-15 17:57:54 t 1 1 121957 220 0.00 2019-10-15 17:59:45 2019-10-15 18:02:00 t 1 1 121959 562 0.00 2019-10-15 17:59:25 2019-10-15 18:03:30 t 1 1 121965 220 0.00 2019-10-15 18:04:53 2019-10-15 18:06:01 t 1 1 121967 501 0.00 2019-10-15 17:54:18 2019-10-15 18:07:07 t 1 1 121968 520 0.00 2019-10-15 17:43:59 2019-10-15 18:08:01 t 1 1 121969 220 0.00 2019-10-15 18:06:01 2019-10-15 18:09:01 t 1 1 121971 220 0.00 2019-10-15 18:09:01 2019-10-15 18:10:01 t 1 1 121973 470 0.00 2019-10-15 17:40:34 2019-10-15 18:13:40 t 1 1 121974 562 0.00 2019-10-15 18:14:03 2019-10-15 18:14:27 t 1 1 121978 445 0.00 2019-10-15 18:14:52 2019-10-15 18:20:37 t 1 1 121981 445 0.00 2019-10-15 18:20:36 2019-10-15 18:26:21 t 1 1 121982 306 0.00 2019-10-15 18:25:33 2019-10-15 18:28:06 t 1 1 121985 562 0.00 2019-10-15 18:29:45 2019-10-15 18:30:14 t 1 1 121990 501 0.00 2019-10-15 18:32:39 2019-10-15 18:35:01 t 1 1 121994 501 0.00 2019-10-15 18:35:01 2019-10-15 18:37:06 t 1 1 121998 468 0.00 2019-10-15 18:37:05 2019-10-15 18:42:13 t 1 1 122001 520 0.00 2019-10-15 18:44:27 2019-10-15 18:47:56 t 1 1 122009 220 0.00 2019-10-15 18:57:45 2019-10-15 18:57:57 t 1 1 122012 220 0.00 2019-10-15 18:58:18 2019-10-15 18:58:30 t 1 1 122014 220 0.00 2019-10-15 18:58:29 2019-10-15 18:58:42 t 1 1 122015 220 0.00 2019-10-15 18:58:42 2019-10-15 18:58:57 t 1 1 122018 220 0.00 2019-10-15 18:59:17 2019-10-15 18:59:30 t 1 1 122023 520 0.00 2019-10-15 18:47:55 2019-10-15 19:00:33 t 1 1 122027 220 0.00 2019-10-15 19:01:11 2019-10-15 19:01:43 t 1 1 122029 220 0.00 2019-10-15 19:01:43 2019-10-15 19:01:54 t 1 1 122030 220 0.00 2019-10-15 19:01:54 2019-10-15 19:02:32 t 1 1 122034 220 0.00 2019-10-15 19:03:02 2019-10-15 19:03:12 t 1 1 122045 468 0.00 2019-10-15 19:03:20 2019-10-15 19:12:53 t 1 1 122051 498 0.00 2019-10-15 19:20:57 2019-10-15 19:20:57 f 1 2 122052 220 0.00 2019-10-15 19:04:38 2019-10-15 19:21:03 t 1 1 122059 220 0.00 2019-10-15 19:23:37 2019-10-15 19:24:09 t 1 1 122060 220 0.00 2019-10-15 19:24:08 2019-10-15 19:24:41 t 1 1 122062 520 0.00 2019-10-15 19:17:27 2019-10-15 19:25:40 t 1 1 122070 220 0.00 2019-10-15 19:27:34 2019-10-15 19:28:06 t 1 1 122073 220 0.00 2019-10-15 19:28:05 2019-10-15 19:29:55 t 1 1 122076 468 0.00 2019-10-15 19:15:03 2019-10-15 19:32:32 t 1 1 122085 451 0.00 2019-10-15 19:22:04 2019-10-15 19:37:33 t 1 1 122088 220 0.00 2019-10-15 19:37:33 2019-10-15 19:38:08 t 1 1 122092 408 0.00 2019-10-15 19:35:19 2019-10-15 19:43:12 t 1 1 122094 306 0.00 2019-10-15 19:41:36 2019-10-15 19:43:38 t 1 1 122096 379 0.00 2019-10-15 11:56:40 2019-10-15 19:44:31 t 1 1 122098 520 0.00 2019-10-15 19:25:40 2019-10-15 19:44:40 t 1 1 122103 379 0.00 2019-10-15 19:45:22 2019-10-15 19:46:27 t 1 1 122107 220 0.00 2019-10-15 19:47:11 2019-10-15 19:47:43 t 1 1 122114 220 0.00 2019-10-15 19:49:38 2019-10-15 19:50:12 t 1 1 122122 220 0.00 2019-10-15 19:56:12 2019-10-15 19:56:44 t 1 1 122123 220 0.00 2019-10-15 19:56:43 2019-10-15 19:57:20 t 1 1 122129 220 0.00 2019-10-15 19:58:12 2019-10-15 19:58:48 t 1 1 122135 562 0.00 2019-10-15 20:01:58 2019-10-15 20:02:20 t 1 1 122138 220 0.00 2019-10-15 20:09:17 2019-10-15 20:09:26 t 1 1 122143 501 0.00 2019-10-15 20:17:44 2019-10-15 20:17:45 t 1 1 122144 501 0.00 2019-10-15 20:18:38 2019-10-15 20:18:38 t 1 1 122145 379 0.00 2019-10-15 19:46:26 2019-10-15 20:19:09 t 1 1 122153 562 0.00 2019-10-15 20:22:19 2019-10-15 20:23:12 t 1 1 122157 481 0.00 2019-10-15 16:22:46 2019-10-15 20:24:06 t 1 1 122158 379 0.00 2019-10-15 20:19:09 2019-10-15 20:24:54 t 1 1 122160 220 0.00 2019-10-15 19:58:12 2019-10-15 20:26:51 t 1 1 122161 220 0.00 2019-10-15 20:26:50 2019-10-15 20:27:00 t 1 1 122167 220 0.00 2019-10-15 20:28:02 2019-10-15 20:28:16 t 1 1 122169 331 0.00 2019-10-15 19:28:01 2019-10-15 20:29:23 t 1 1 122172 220 0.00 2019-10-15 20:29:49 2019-10-15 20:29:59 t 1 1 122175 501 0.00 2019-10-15 20:29:42 2019-10-15 20:30:22 t 1 1 122177 220 0.00 2019-10-15 20:30:16 2019-10-15 20:30:26 t 1 1 122181 220 0.00 2019-10-15 20:30:48 2019-10-15 20:31:02 t 1 1 122183 220 0.00 2019-10-15 20:30:58 2019-10-15 20:31:12 t 1 1 121896 220 0.00 2019-10-15 17:22:05 2019-10-15 17:23:05 t 1 1 121898 538 0.00 2019-10-15 17:20:14 2019-10-15 17:25:33 t 1 1 121903 528 0.00 2019-10-15 17:29:18 2019-10-15 17:29:28 t 1 1 121906 562 0.00 2019-10-15 17:18:01 2019-10-15 17:30:35 t 1 1 121912 220 0.00 2019-10-15 17:33:24 2019-10-15 17:33:56 t 1 1 121913 528 0.00 2019-10-15 17:34:00 2019-10-15 17:34:03 t 1 1 121914 220 0.00 2019-10-15 17:33:56 2019-10-15 17:34:53 t 1 1 121921 220 0.00 2019-10-15 17:37:21 2019-10-15 17:38:09 t 1 1 121924 220 0.00 2019-10-15 17:38:43 2019-10-15 17:39:53 t 1 1 121926 528 0.00 2019-10-15 17:40:12 2019-10-15 17:40:33 t 1 1 121931 220 0.00 2019-10-15 17:40:25 2019-10-15 17:42:55 t 1 1 121935 528 0.00 2019-10-15 17:44:07 2019-10-15 17:44:30 t 1 1 121943 528 0.00 2019-10-15 17:51:29 2019-10-15 17:52:17 t 1 1 121945 445 0.00 2019-10-15 17:37:59 2019-10-15 17:52:33 t 1 1 121955 220 0.00 2019-10-15 17:57:35 2019-10-15 17:59:45 t 1 1 121958 516 0.00 2019-10-15 17:51:35 2019-10-15 18:02:13 t 1 1 121960 451 0.00 2019-10-15 17:55:27 2019-10-15 18:03:53 t 1 1 121962 220 0.00 2019-10-15 18:02:00 2019-10-15 18:04:53 t 1 1 121964 562 0.00 2019-10-15 18:04:55 2019-10-15 18:05:59 t 1 1 121966 528 0.00 2019-10-15 17:55:46 2019-10-15 18:06:49 t 1 1 121970 554 0.00 2019-10-15 17:14:37 2019-10-15 18:09:21 t 1 1 121972 526 0.00 2019-10-15 18:11:30 2019-10-15 18:13:33 t 1 1 121975 445 0.00 2019-10-15 17:52:55 2019-10-15 18:14:40 t 1 1 121977 520 0.00 2019-10-15 18:09:23 2019-10-15 18:20:08 t 1 1 121980 562 0.00 2019-10-15 18:23:24 2019-10-15 18:24:20 t 1 1 121983 562 0.00 2019-10-15 18:26:03 2019-10-15 18:28:15 t 1 1 121984 445 0.00 2019-10-15 18:26:21 2019-10-15 18:29:26 t 1 1 121986 520 0.00 2019-10-15 18:20:08 2019-10-15 18:30:21 t 1 1 121989 445 0.00 2019-10-15 18:28:58 2019-10-15 18:33:06 t 1 1 121991 568 0.00 2019-10-15 18:33:06 2019-10-15 18:35:20 t 1 1 121993 468 0.00 2019-10-15 17:59:55 2019-10-15 18:37:05 t 1 1 121996 456 0.00 2019-10-15 18:38:58 2019-10-15 18:40:04 t 1 1 122000 516 0.00 2019-10-15 18:21:21 2019-10-15 18:43:25 t 1 1 122002 220 0.00 2019-10-15 18:21:20 2019-10-15 18:49:01 t 1 1 122004 220 0.00 2019-10-15 18:48:59 2019-10-15 18:50:13 t 1 1 122005 562 0.00 2019-10-15 18:52:46 2019-10-15 18:54:06 t 1 1 122007 468 0.00 2019-10-15 18:42:13 2019-10-15 18:55:59 t 1 1 122011 220 0.00 2019-10-15 18:58:07 2019-10-15 18:58:18 t 1 1 122013 220 0.00 2019-10-15 18:55:42 2019-10-15 18:58:41 t 1 1 122017 220 0.00 2019-10-15 18:59:07 2019-10-15 18:59:18 t 1 1 122022 220 0.00 2019-10-15 19:00:09 2019-10-15 19:00:23 t 1 1 122025 220 0.00 2019-10-15 19:00:35 2019-10-15 19:00:47 t 1 1 122026 220 0.00 2019-10-15 19:00:46 2019-10-15 19:01:12 t 1 1 122028 562 0.00 2019-10-15 18:57:53 2019-10-15 19:01:45 t 1 1 122032 220 0.00 2019-10-15 19:02:42 2019-10-15 19:02:53 t 1 1 122033 220 0.00 2019-10-15 19:02:52 2019-10-15 19:03:02 t 1 1 122035 468 0.00 2019-10-15 19:00:05 2019-10-15 19:03:20 t 1 1 122037 562 0.00 2019-10-15 19:04:27 2019-10-15 19:05:55 t 1 1 122039 361 0.00 2019-10-15 18:24:30 2019-10-15 19:06:47 t 1 2 122041 520 0.00 2019-10-15 19:00:32 2019-10-15 19:08:59 t 1 1 122044 520 0.00 2019-10-15 19:08:58 2019-10-15 19:11:45 t 1 1 122046 562 0.00 2019-10-15 19:12:55 2019-10-15 19:13:31 t 1 1 122047 468 0.00 2019-10-15 19:12:53 2019-10-15 19:14:56 t 1 1 122048 470 0.00 2019-10-15 18:13:40 2019-10-15 19:15:28 t 1 1 122050 220 0.00 2019-10-15 19:03:12 2019-10-15 19:20:28 t 1 1 122054 220 0.00 2019-10-15 19:21:33 2019-10-15 19:22:27 t 1 1 122058 562 0.00 2019-10-15 19:23:30 2019-10-15 19:23:58 t 1 1 122061 220 0.00 2019-10-15 19:24:40 2019-10-15 19:25:17 t 1 1 122065 220 0.00 2019-10-15 19:26:21 2019-10-15 19:26:52 t 1 1 122066 220 0.00 2019-10-15 19:26:51 2019-10-15 19:27:35 t 1 1 122068 554 0.00 2019-10-15 18:09:33 2019-10-15 19:27:44 t 1 1 122069 331 0.00 2019-10-15 19:09:34 2019-10-15 19:28:02 t 1 1 122071 498 0.00 2019-10-15 18:33:45 2019-10-15 19:28:50 t 1 2 122072 562 0.00 2019-10-15 19:29:35 2019-10-15 19:29:43 t 1 1 122074 220 0.00 2019-10-15 19:29:54 2019-10-15 19:30:28 t 1 1 122075 562 0.00 2019-10-15 19:30:54 2019-10-15 19:31:29 t 1 1 122080 220 0.00 2019-10-15 19:33:32 2019-10-15 19:34:06 t 1 1 122081 408 0.00 2019-10-15 19:14:21 2019-10-15 19:35:19 t 1 1 122084 562 0.00 2019-10-15 19:36:58 2019-10-15 19:37:20 t 1 1 122087 472 0.00 2019-10-15 19:35:22 2019-10-15 19:38:04 t 1 1 122089 220 0.00 2019-10-15 19:38:08 2019-10-15 19:39:53 t 1 1 122091 562 0.00 2019-10-15 19:39:31 2019-10-15 19:40:57 t 1 1 122095 220 0.00 2019-10-15 19:40:27 2019-10-15 19:44:01 t 1 1 122099 562 0.00 2019-10-15 19:43:46 2019-10-15 19:44:51 t 1 1 122101 220 0.00 2019-10-15 19:44:32 2019-10-15 19:45:23 t 1 1 122102 220 0.00 2019-10-15 19:45:23 2019-10-15 19:45:57 t 1 1 122106 562 0.00 2019-10-15 19:47:21 2019-10-15 19:47:42 t 1 1 122108 220 0.00 2019-10-15 19:47:43 2019-10-15 19:47:51 t 1 1 122110 220 0.00 2019-10-15 19:48:08 2019-10-15 19:48:18 t 1 1 122112 220 0.00 2019-10-15 19:48:17 2019-10-15 19:49:38 t 1 1 122115 538 0.00 2019-10-15 17:25:37 2019-10-15 19:50:19 t 1 1 122116 220 0.00 2019-10-15 19:50:11 2019-10-15 19:50:50 t 1 1 122117 220 0.00 2019-10-15 19:50:50 2019-10-15 19:51:25 t 1 1 122119 220 0.00 2019-10-15 19:51:25 2019-10-15 19:55:04 t 1 1 122120 220 0.00 2019-10-15 19:55:03 2019-10-15 19:55:38 t 1 1 122121 220 0.00 2019-10-15 19:55:38 2019-10-15 19:56:13 t 1 1 122124 361 0.00 2019-10-15 19:15:15 2019-10-15 19:57:31 t 1 2 122127 220 0.00 2019-10-15 19:57:19 2019-10-15 19:58:11 t 1 1 122128 220 0.00 2019-10-15 19:58:11 2019-10-15 19:58:13 t 1 1 122130 220 0.00 2019-10-15 19:58:48 2019-10-15 19:58:56 t 1 1 122132 520 0.00 2019-10-15 19:59:58 2019-10-15 20:01:12 t 1 1 122136 562 0.00 2019-10-15 20:03:21 2019-10-15 20:03:52 t 1 1 122139 220 0.00 2019-10-15 17:35:22 2019-10-15 20:09:31 t 1 2 122142 501 0.00 2019-10-15 20:14:43 2019-10-15 20:17:37 t 1 1 122147 220 0.00 2019-10-15 20:09:55 2019-10-15 20:19:45 t 1 1 122154 220 0.00 2019-10-15 15:15:27 2019-10-15 20:23:12 t 1 2 122159 501 0.00 2019-10-15 20:24:32 2019-10-15 20:26:20 t 1 1 122163 220 0.00 2019-10-15 20:27:10 2019-10-15 20:27:20 t 1 1 122165 220 0.00 2019-10-15 20:27:19 2019-10-15 20:27:52 t 1 1 122166 220 0.00 2019-10-15 20:27:52 2019-10-15 20:28:02 t 1 1 122170 220 0.00 2019-10-15 20:28:25 2019-10-15 20:29:50 t 1 1 122173 562 0.00 2019-10-15 20:29:49 2019-10-15 20:30:12 t 1 1 122176 331 0.00 2019-10-15 20:29:20 2019-10-15 20:30:25 t 1 1 122179 220 0.00 2019-10-15 20:30:38 2019-10-15 20:30:48 t 1 1 122187 220 0.00 2019-10-15 20:31:46 2019-10-15 20:31:56 t 1 1 122189 220 0.00 2019-10-15 20:29:12 2019-10-15 20:32:09 t 1 2 122192 501 0.00 2019-10-15 20:32:26 2019-10-15 20:32:28 t 1 1 121988 568 0.00 2019-10-15 18:32:47 2019-10-15 18:33:01 t 1 1 121992 562 0.00 2019-10-15 18:35:49 2019-10-15 18:36:24 t 1 1 121995 456 0.00 2019-10-15 18:35:00 2019-10-15 18:37:59 t 1 1 121997 568 0.00 2019-10-15 18:35:25 2019-10-15 18:40:45 t 1 1 121999 562 0.00 2019-10-15 18:41:41 2019-10-15 18:42:26 t 1 1 122003 562 0.00 2019-10-15 18:49:29 2019-10-15 18:49:59 t 1 1 122006 220 0.00 2019-10-15 18:50:13 2019-10-15 18:55:42 t 1 1 122008 220 0.00 2019-10-15 18:10:47 2019-10-15 18:57:45 t 1 1 122010 220 0.00 2019-10-15 18:57:57 2019-10-15 18:58:08 t 1 1 122016 220 0.00 2019-10-15 18:58:57 2019-10-15 18:59:07 t 1 1 122019 220 0.00 2019-10-15 18:59:29 2019-10-15 18:59:42 t 1 1 122020 468 0.00 2019-10-15 18:56:14 2019-10-15 19:00:05 t 1 1 122021 220 0.00 2019-10-15 18:59:41 2019-10-15 19:00:10 t 1 1 122024 220 0.00 2019-10-15 19:00:21 2019-10-15 19:00:36 t 1 1 122031 220 0.00 2019-10-15 19:02:31 2019-10-15 19:02:43 t 1 1 122036 512 0.00 2019-10-15 17:58:45 2019-10-15 19:05:25 t 1 1 122038 551 0.00 2019-10-15 08:07:07 2019-10-15 19:06:38 t 1 1 122040 512 0.00 2019-10-15 19:05:52 2019-10-15 19:06:52 t 1 1 122042 562 0.00 2019-10-15 19:06:15 2019-10-15 19:10:10 t 1 1 122043 562 0.00 2019-10-15 19:10:25 2019-10-15 19:11:10 t 1 1 122049 520 0.00 2019-10-15 19:11:45 2019-10-15 19:17:27 t 1 1 122053 220 0.00 2019-10-15 19:21:02 2019-10-15 19:21:34 t 1 1 122055 562 0.00 2019-10-15 19:21:49 2019-10-15 19:22:36 t 1 1 122056 220 0.00 2019-10-15 19:22:27 2019-10-15 19:23:03 t 1 1 122057 220 0.00 2019-10-15 19:23:02 2019-10-15 19:23:37 t 1 1 122063 220 0.00 2019-10-15 19:25:16 2019-10-15 19:25:49 t 1 1 122064 220 0.00 2019-10-15 19:25:49 2019-10-15 19:26:22 t 1 1 122067 562 0.00 2019-10-15 19:24:23 2019-10-15 19:27:36 t 1 1 122077 562 0.00 2019-10-15 19:32:39 2019-10-15 19:32:47 t 1 1 122078 220 0.00 2019-10-15 19:30:28 2019-10-15 19:33:32 t 1 1 122079 562 0.00 2019-10-15 19:33:38 2019-10-15 19:34:00 t 1 1 122082 554 0.00 2019-10-15 19:27:43 2019-10-15 19:36:42 t 1 1 122083 422 0.00 2019-10-15 16:17:31 2019-10-15 19:36:59 t 1 1 122086 220 0.00 2019-10-15 19:34:06 2019-10-15 19:37:33 t 1 1 122090 220 0.00 2019-10-15 19:39:53 2019-10-15 19:40:28 t 1 1 122093 562 0.00 2019-10-15 19:42:56 2019-10-15 19:43:38 t 1 1 122097 220 0.00 2019-10-15 19:44:00 2019-10-15 19:44:32 t 1 1 122100 379 0.00 2019-10-15 19:44:31 2019-10-15 19:45:23 t 1 1 122104 220 0.00 2019-10-15 19:45:57 2019-10-15 19:46:39 t 1 1 122105 220 0.00 2019-10-15 19:46:38 2019-10-15 19:47:11 t 1 1 122109 408 0.00 2019-10-15 19:43:12 2019-10-15 19:48:16 t 1 1 122111 451 0.00 2019-10-15 19:37:33 2019-10-15 19:48:23 t 1 1 122113 562 0.00 2019-10-15 19:49:33 2019-10-15 19:49:53 t 1 1 122118 485 0.00 2019-10-15 19:50:32 2019-10-15 19:54:49 t 1 1 122125 562 0.00 2019-10-15 19:55:19 2019-10-15 19:57:40 t 1 1 122126 451 0.00 2019-10-15 19:48:23 2019-10-15 19:58:08 t 1 1 122131 485 0.00 2019-10-15 19:54:49 2019-10-15 20:00:46 t 1 1 122133 327 0.00 2019-10-15 19:59:50 2019-10-15 20:01:29 t 1 1 122134 306 0.00 2019-10-15 19:57:55 2019-10-15 20:02:10 t 1 1 122137 220 0.00 2019-10-15 19:59:23 2019-10-15 20:09:18 t 1 1 122140 562 0.00 2019-10-15 20:08:19 2019-10-15 20:10:33 t 1 1 122141 490 0.00 2019-10-15 19:48:14 2019-10-15 20:14:55 t 1 1 122146 562 0.00 2019-10-15 20:19:02 2019-10-15 20:19:24 t 1 1 122148 220 0.00 2019-10-15 20:19:45 2019-10-15 20:19:54 t 1 1 122149 470 0.00 2019-10-15 19:15:28 2019-10-15 20:20:58 t 1 1 122150 501 0.00 2019-10-15 20:21:39 2019-10-15 20:22:17 t 1 1 122151 501 0.00 2019-10-15 20:22:26 2019-10-15 20:22:40 t 1 1 122152 470 0.00 2019-10-15 20:20:58 2019-10-15 20:23:03 t 1 1 122155 501 0.00 2019-10-15 20:22:49 2019-10-15 20:23:20 t 1 1 122156 501 0.00 2019-10-15 20:23:29 2019-10-15 20:23:58 t 1 1 122162 220 0.00 2019-10-15 20:27:00 2019-10-15 20:27:10 t 1 1 122164 220 0.00 2019-10-15 20:20:29 2019-10-15 20:27:25 t 1 1 122168 220 0.00 2019-10-15 20:28:16 2019-10-15 20:28:26 t 1 1 122171 528 0.00 2019-10-15 20:02:31 2019-10-15 20:29:56 t 1 1 122174 220 0.00 2019-10-15 20:29:59 2019-10-15 20:30:16 t 1 1 122178 220 0.00 2019-10-15 20:30:26 2019-10-15 20:30:39 t 1 1 122180 220 0.00 2019-10-15 20:30:14 2019-10-15 20:30:49 t 1 1 122182 220 0.00 2019-10-15 20:31:01 2019-10-15 20:31:11 t 1 1 122186 220 0.00 2019-10-15 20:31:36 2019-10-15 20:31:47 t 1 1 122191 220 0.00 2019-10-15 20:32:11 2019-10-15 20:32:21 t 1 1 122194 220 0.00 2019-10-15 20:32:37 2019-10-15 20:32:47 t 1 1 122195 220 0.00 2019-10-15 20:32:47 2019-10-15 20:33:06 t 1 1 122198 562 0.00 2019-10-15 20:31:35 2019-10-15 20:33:29 t 1 1 122200 445 0.00 2019-10-15 18:33:18 2019-10-15 20:33:49 t 1 1 122201 220 0.00 2019-10-15 20:33:36 2019-10-15 20:33:59 t 1 1 122202 501 0.00 2019-10-15 20:33:27 2019-10-15 20:34:27 t 1 1 122210 220 0.00 2019-10-15 20:35:35 2019-10-15 20:35:54 t 1 1 122211 220 0.00 2019-10-15 20:35:54 2019-10-15 20:36:08 t 1 1 122212 220 0.00 2019-10-15 20:36:08 2019-10-15 20:36:39 t 1 1 122213 220 0.00 2019-10-15 20:36:39 2019-10-15 20:36:54 t 1 1 122216 220 0.00 2019-10-15 20:37:03 2019-10-15 20:37:16 t 1 1 122220 220 0.00 2019-10-15 20:38:11 2019-10-15 20:39:03 t 1 1 122222 220 0.00 2019-10-15 20:39:02 2019-10-15 20:39:19 t 1 1 122229 220 0.00 2019-10-15 20:41:29 2019-10-15 20:42:17 t 1 1 122231 220 0.00 2019-10-15 20:42:16 2019-10-15 20:42:31 t 1 1 122233 220 0.00 2019-10-15 20:42:59 2019-10-15 20:43:11 t 1 1 122235 220 0.00 2019-10-15 20:43:10 2019-10-15 20:44:05 t 1 1 122238 562 0.00 2019-10-15 20:43:53 2019-10-15 20:44:59 t 1 1 122239 562 0.00 2019-10-15 20:46:07 2019-10-15 20:46:14 t 1 1 122246 220 0.00 2019-10-15 20:47:40 2019-10-15 20:48:21 t 1 1 122248 562 0.00 2019-10-15 20:48:46 2019-10-15 20:48:55 t 1 1 122253 220 0.00 2019-10-15 20:50:18 2019-10-15 20:50:46 t 1 1 122254 220 0.00 2019-10-15 20:50:46 2019-10-15 20:51:00 t 1 1 122257 220 0.00 2019-10-15 20:51:55 2019-10-15 20:52:03 t 1 1 122267 481 0.00 2019-10-15 20:24:06 2019-10-15 20:59:18 t 1 1 122271 562 0.00 2019-10-15 21:03:36 2019-10-15 21:04:12 t 1 1 122273 220 0.00 2019-10-15 21:07:55 2019-10-15 21:08:12 t 1 1 122274 220 0.00 2019-10-15 21:08:11 2019-10-15 21:09:01 t 1 1 122279 501 0.00 2019-10-15 21:10:19 2019-10-15 21:11:29 t 1 1 122282 501 0.00 2019-10-15 21:14:16 2019-10-15 21:14:25 t 1 1 122283 220 0.00 2019-10-15 21:10:25 2019-10-15 21:14:34 t 1 1 122288 562 0.00 2019-10-15 21:15:29 2019-10-15 21:16:29 t 1 1 122300 501 0.00 2019-10-15 21:27:45 2019-10-15 21:29:38 t 1 1 122302 445 0.00 2019-10-15 20:50:28 2019-10-15 21:31:16 t 1 1 122303 501 0.00 2019-10-15 21:31:37 2019-10-15 21:32:21 t 1 1 122305 564 0.00 2019-10-15 18:04:18 2019-10-15 21:32:49 t 1 1 122306 501 0.00 2019-10-15 21:33:38 2019-10-15 21:34:11 t 1 1 122184 220 0.00 2019-10-15 20:31:11 2019-10-15 20:31:27 t 1 1 122185 220 0.00 2019-10-15 20:31:27 2019-10-15 20:31:37 t 1 1 122188 501 0.00 2019-10-15 20:31:26 2019-10-15 20:31:59 t 1 1 122190 220 0.00 2019-10-15 20:31:56 2019-10-15 20:32:12 t 1 1 122193 220 0.00 2019-10-15 20:32:21 2019-10-15 20:32:38 t 1 1 122197 220 0.00 2019-10-15 20:33:16 2019-10-15 20:33:27 t 1 1 122203 501 0.00 2019-10-15 20:34:14 2019-10-15 20:34:33 t 1 1 122204 220 0.00 2019-10-15 20:33:59 2019-10-15 20:34:49 t 1 1 122206 220 0.00 2019-10-15 20:34:58 2019-10-15 20:35:20 t 1 1 122209 220 0.00 2019-10-15 20:35:20 2019-10-15 20:35:37 t 1 1 122214 562 0.00 2019-10-15 20:36:44 2019-10-15 20:36:57 t 1 1 122215 220 0.00 2019-10-15 20:36:53 2019-10-15 20:37:03 t 1 1 122217 412 0.00 2019-10-15 14:00:21 2019-10-15 20:37:35 t 1 1 122221 562 0.00 2019-10-15 20:38:45 2019-10-15 20:39:15 t 1 1 122224 220 0.00 2019-10-15 20:40:07 2019-10-15 20:40:25 t 1 1 122225 220 0.00 2019-10-15 20:40:24 2019-10-15 20:41:13 t 1 1 122226 220 0.00 2019-10-15 20:41:12 2019-10-15 20:41:30 t 1 1 122228 512 0.00 2019-10-15 19:06:12 2019-10-15 20:42:13 t 1 1 122230 562 0.00 2019-10-15 20:40:05 2019-10-15 20:42:30 t 1 1 122232 220 0.00 2019-10-15 20:42:31 2019-10-15 20:43:00 t 1 1 122234 562 0.00 2019-10-15 20:42:52 2019-10-15 20:43:30 t 1 1 122241 562 0.00 2019-10-15 20:46:38 2019-10-15 20:46:49 t 1 1 122243 485 0.00 2019-10-15 20:36:35 2019-10-15 20:47:18 t 1 1 122245 562 0.00 2019-10-15 20:47:38 2019-10-15 20:48:20 t 1 1 122249 220 0.00 2019-10-15 20:48:21 2019-10-15 20:49:35 t 1 1 122252 445 0.00 2019-10-15 20:34:11 2019-10-15 20:50:31 t 1 1 122255 562 0.00 2019-10-15 20:50:12 2019-10-15 20:51:02 t 1 1 122256 220 0.00 2019-10-15 20:51:46 2019-10-15 20:51:55 t 1 1 122262 220 0.00 2019-10-15 20:52:54 2019-10-15 20:55:36 t 1 1 122264 220 0.00 2019-10-15 20:55:36 2019-10-15 20:56:48 t 1 1 122265 422 0.00 2019-10-15 19:36:59 2019-10-15 20:58:12 t 1 1 122268 220 0.00 2019-10-15 20:59:02 2019-10-15 20:59:20 t 1 1 122269 562 0.00 2019-10-15 21:00:44 2019-10-15 21:00:56 t 1 1 122272 220 0.00 2019-10-15 20:55:14 2019-10-15 21:07:59 t 1 1 122276 220 0.00 2019-10-15 20:59:53 2019-10-15 21:09:34 t 1 1 122277 220 0.00 2019-10-15 21:09:34 2019-10-15 21:10:09 t 1 1 122284 562 0.00 2019-10-15 21:14:09 2019-10-15 21:14:37 t 1 1 122286 501 0.00 2019-10-15 21:15:16 2019-10-15 21:15:26 t 1 1 122289 306 0.00 2019-10-15 21:03:23 2019-10-15 21:16:52 t 1 1 122290 501 0.00 2019-10-15 21:17:16 2019-10-15 21:17:17 t 1 1 122293 501 0.00 2019-10-15 21:22:09 2019-10-15 21:23:39 t 1 1 122294 220 0.00 2019-10-15 21:15:08 2019-10-15 21:25:05 t 1 1 122296 501 0.00 2019-10-15 21:24:47 2019-10-15 21:25:41 t 1 1 122298 422 0.00 2019-10-15 21:14:34 2019-10-15 21:29:15 t 1 1 122301 501 0.00 2019-10-15 21:30:37 2019-10-15 21:30:46 t 1 1 122308 514 0.00 2019-10-15 21:34:54 2019-10-15 21:35:29 t 1 1 122310 501 0.00 2019-10-15 21:35:14 2019-10-15 21:35:39 t 1 1 122312 220 0.00 2019-10-15 21:35:51 2019-10-15 21:36:00 t 1 1 122316 220 0.00 2019-10-15 21:37:48 2019-10-15 21:38:21 t 1 1 122321 514 0.00 2019-10-15 21:40:14 2019-10-15 21:43:44 t 1 1 122323 514 0.00 2019-10-15 21:44:13 2019-10-15 21:45:20 t 1 1 122325 220 0.00 2019-10-15 21:37:32 2019-10-15 21:45:42 t 1 1 122326 220 0.00 2019-10-15 21:45:42 2019-10-15 21:45:53 t 1 1 122327 562 0.00 2019-10-15 21:45:49 2019-10-15 21:46:00 t 1 1 122330 306 0.00 2019-10-15 21:36:53 2019-10-15 21:50:01 t 1 1 122334 445 0.00 2019-10-15 21:45:54 2019-10-15 21:53:42 t 1 1 122338 220 0.00 2019-10-15 21:56:16 2019-10-15 21:56:17 t 1 1 122341 481 0.00 2019-10-15 20:59:23 2019-10-15 21:59:06 t 1 1 122343 512 0.00 2019-10-15 21:45:52 2019-10-15 22:02:57 t 1 1 122345 451 0.00 2019-10-15 21:35:47 2019-10-15 22:05:00 t 1 1 122348 562 0.00 2019-10-15 22:10:51 2019-10-15 22:14:08 t 1 1 122349 485 0.00 2019-10-15 22:02:13 2019-10-15 22:15:46 t 1 1 122354 562 0.00 2019-10-15 22:14:07 2019-10-15 22:28:20 t 1 1 122363 566 0.00 2019-10-15 22:30:17 2019-10-15 22:43:00 t 1 1 122364 562 0.00 2019-10-15 22:42:56 2019-10-15 22:44:29 t 1 1 122365 538 0.00 2019-10-15 21:42:37 2019-10-15 22:45:20 t 1 1 122370 422 0.00 2019-10-15 22:31:40 2019-10-15 22:46:31 t 1 1 122374 220 0.00 2019-10-15 22:48:08 2019-10-15 22:48:23 t 1 1 122375 562 0.00 2019-10-15 22:50:24 2019-10-15 22:50:57 t 1 1 122377 220 0.00 2019-10-15 22:52:35 2019-10-15 22:52:49 t 1 1 122379 445 0.00 2019-10-15 22:06:17 2019-10-15 22:55:19 t 1 1 122385 220 0.00 2019-10-15 23:02:33 2019-10-15 23:02:42 t 1 1 122386 562 0.00 2019-10-15 23:00:27 2019-10-15 23:04:28 t 1 1 122387 528 0.00 2019-10-15 22:37:54 2019-10-15 23:06:04 t 1 1 122389 512 0.00 2019-10-15 22:31:47 2019-10-15 23:06:52 t 1 1 122392 501 0.00 2019-10-15 23:06:19 2019-10-15 23:14:08 t 1 1 122394 468 0.00 2019-10-15 22:35:15 2019-10-15 23:17:52 t 1 1 122400 501 0.00 2019-10-15 23:14:08 2019-10-15 23:28:25 t 1 1 122402 470 0.00 2019-10-15 23:24:11 2019-10-15 23:31:25 t 1 1 122405 501 0.00 2019-10-15 23:28:25 2019-10-15 23:34:27 t 1 1 122411 514 0.00 2019-10-15 23:36:18 2019-10-15 23:45:50 t 1 1 122413 408 0.00 2019-10-15 23:31:40 2019-10-15 23:50:56 t 1 1 122416 468 0.00 2019-10-15 23:17:52 2019-10-15 23:56:45 t 1 1 122418 501 0.00 2019-10-15 23:40:29 2019-10-15 23:57:14 t 1 1 122419 501 0.00 2019-10-15 23:57:13 2019-10-15 23:59:25 t 1 1 122421 422 0.00 2019-10-15 23:39:58 2019-10-16 00:00:14 t 1 1 122428 542 0.00 2019-10-15 23:04:47 2019-10-16 00:07:08 t 1 1 122431 468 0.00 2019-10-16 00:05:13 2019-10-16 00:08:49 t 1 1 122434 422 0.00 2019-10-16 00:00:14 2019-10-16 00:12:12 t 1 1 122436 490 0.00 2019-10-16 00:11:46 2019-10-16 00:14:01 t 1 1 122438 558 0.00 2019-10-16 00:09:23 2019-10-16 00:17:04 t 1 1 122455 325 0.00 2019-10-15 20:49:23 2019-10-16 00:39:28 t 1 2 122457 522 0.00 2019-10-16 00:41:09 2019-10-16 00:41:11 t 1 1 122459 522 0.00 2019-10-16 00:43:00 2019-10-16 00:43:07 t 1 1 122461 490 0.00 2019-10-16 00:24:51 2019-10-16 00:45:34 t 1 1 122462 522 0.00 2019-10-16 00:48:09 2019-10-16 00:48:12 t 1 1 122464 490 0.00 2019-10-16 00:45:34 2019-10-16 00:55:25 t 1 1 122469 522 0.00 2019-10-16 01:02:02 2019-10-16 01:02:11 t 1 1 122473 522 0.00 2019-10-16 01:12:13 2019-10-16 01:12:21 t 1 1 122474 422 0.00 2019-10-16 00:33:49 2019-10-16 01:14:07 t 1 1 122477 522 0.00 2019-10-16 01:22:36 2019-10-16 01:22:39 t 1 1 122478 522 0.00 2019-10-16 01:22:30 2019-10-16 01:24:29 t 1 1 122479 522 0.00 2019-10-16 01:27:32 2019-10-16 01:27:34 t 1 1 122482 522 0.00 2019-10-16 01:32:40 2019-10-16 01:32:43 t 1 1 122483 522 0.00 2019-10-16 01:37:45 2019-10-16 01:38:46 t 1 1 122488 522 0.00 2019-10-16 01:47:55 2019-10-16 01:47:59 t 1 1 122490 522 0.00 2019-10-16 01:53:00 2019-10-16 01:53:10 t 1 1 122196 220 0.00 2019-10-15 20:33:06 2019-10-15 20:33:17 t 1 1 122199 220 0.00 2019-10-15 20:33:27 2019-10-15 20:33:37 t 1 1 122205 220 0.00 2019-10-15 20:34:48 2019-10-15 20:35:00 t 1 1 122207 501 0.00 2019-10-15 20:34:42 2019-10-15 20:35:26 t 1 1 122208 556 0.00 2019-10-15 17:15:18 2019-10-15 20:35:36 t 1 1 122218 220 0.00 2019-10-15 20:37:16 2019-10-15 20:38:00 t 1 1 122219 220 0.00 2019-10-15 20:37:59 2019-10-15 20:38:11 t 1 1 122223 220 0.00 2019-10-15 20:39:19 2019-10-15 20:40:08 t 1 1 122227 220 0.00 2019-10-15 20:41:27 2019-10-15 20:41:35 t 1 1 122236 220 0.00 2019-10-15 20:44:04 2019-10-15 20:44:15 t 1 1 122237 516 0.00 2019-10-15 20:38:03 2019-10-15 20:44:58 t 1 1 122240 220 0.00 2019-10-15 20:44:14 2019-10-15 20:46:34 t 1 1 122242 456 0.00 2019-10-15 20:43:49 2019-10-15 20:46:52 t 1 1 122244 220 0.00 2019-10-15 20:46:32 2019-10-15 20:47:41 t 1 1 122247 528 0.00 2019-10-15 20:30:14 2019-10-15 20:48:53 t 1 1 122250 220 0.00 2019-10-15 20:49:34 2019-10-15 20:50:04 t 1 1 122251 220 0.00 2019-10-15 20:50:03 2019-10-15 20:50:19 t 1 1 122258 562 0.00 2019-10-15 20:53:09 2019-10-15 20:53:14 t 1 1 122259 562 0.00 2019-10-15 20:53:53 2019-10-15 20:54:34 t 1 1 122260 556 0.00 2019-10-15 20:35:36 2019-10-15 20:54:59 t 1 1 122261 220 0.00 2019-10-15 20:51:00 2019-10-15 20:55:14 t 1 1 122263 562 0.00 2019-10-15 20:56:20 2019-10-15 20:56:28 t 1 1 122266 220 0.00 2019-10-15 20:56:45 2019-10-15 20:59:05 t 1 1 122270 306 0.00 2019-10-15 20:52:17 2019-10-15 21:03:23 t 1 1 122275 220 0.00 2019-10-15 21:08:53 2019-10-15 21:09:10 t 1 1 122278 501 0.00 2019-10-15 20:35:36 2019-10-15 21:10:10 t 1 1 122280 422 0.00 2019-10-15 20:58:12 2019-10-15 21:12:28 t 1 1 122281 501 0.00 2019-10-15 21:12:43 2019-10-15 21:13:34 t 1 1 122285 220 0.00 2019-10-15 21:14:34 2019-10-15 21:14:50 t 1 1 122287 501 0.00 2019-10-15 21:16:16 2019-10-15 21:16:17 t 1 1 122291 542 0.00 2019-10-15 20:47:23 2019-10-15 21:17:32 t 1 1 122292 562 0.00 2019-10-15 21:22:19 2019-10-15 21:22:31 t 1 1 122295 220 0.00 2019-10-15 21:25:05 2019-10-15 21:25:12 t 1 1 122297 501 0.00 2019-10-15 21:26:44 2019-10-15 21:27:16 t 1 1 122299 562 0.00 2019-10-15 21:29:02 2019-10-15 21:29:16 t 1 1 122304 501 0.00 2019-10-15 21:32:27 2019-10-15 21:32:36 t 1 1 122307 514 0.00 2019-10-15 20:56:07 2019-10-15 21:34:55 t 1 1 122311 220 0.00 2019-10-15 21:35:34 2019-10-15 21:35:43 t 1 1 122314 501 0.00 2019-10-15 21:35:50 2019-10-15 21:36:55 t 1 1 122318 220 0.00 2019-10-15 21:38:32 2019-10-15 21:38:47 t 1 1 122319 501 0.00 2019-10-15 21:38:53 2019-10-15 21:39:41 t 1 1 122324 470 0.00 2019-10-15 21:44:24 2019-10-15 21:45:34 t 1 1 122329 514 0.00 2019-10-15 21:44:50 2019-10-15 21:49:02 t 1 1 122331 544 0.00 2019-10-15 21:41:57 2019-10-15 21:52:38 t 1 1 122333 566 0.00 2019-10-15 21:46:12 2019-10-15 21:53:18 t 1 1 122335 220 0.00 2019-10-15 21:49:15 2019-10-15 21:53:44 t 1 1 122340 408 0.00 2019-10-15 21:38:15 2019-10-15 21:58:05 t 1 1 122352 220 0.00 2019-10-15 22:19:05 2019-10-15 22:19:15 t 1 1 122353 472 0.00 2019-10-15 22:09:28 2019-10-15 22:23:05 t 1 1 122356 220 0.00 2019-10-15 22:19:15 2019-10-15 22:28:55 t 1 1 122357 220 0.00 2019-10-15 22:28:54 2019-10-15 22:29:07 t 1 1 122358 422 0.00 2019-10-15 21:49:38 2019-10-15 22:31:40 t 1 1 122359 485 0.00 2019-10-15 22:31:17 2019-10-15 22:34:38 t 1 1 122360 468 0.00 2019-10-15 22:07:34 2019-10-15 22:34:59 t 1 1 122361 220 0.00 2019-10-15 22:29:07 2019-10-15 22:38:32 t 1 1 122366 296 0.00 2019-10-15 22:24:25 2019-10-15 22:45:46 t 1 2 122371 501 0.00 2019-10-15 22:46:34 2019-10-15 22:46:47 t 1 1 122372 501 0.00 2019-10-15 22:46:59 2019-10-15 22:47:23 t 1 1 122373 220 0.00 2019-10-15 22:38:53 2019-10-15 22:48:09 t 1 1 122378 562 0.00 2019-10-15 22:52:31 2019-10-15 22:54:29 t 1 1 122380 501 0.00 2019-10-15 22:48:21 2019-10-15 22:55:54 t 1 1 122381 372 0.00 2019-10-15 22:46:42 2019-10-15 22:56:48 t 1 2 122383 558 0.00 2019-10-15 22:45:48 2019-10-15 22:57:11 t 1 1 122384 562 0.00 2019-10-15 22:54:38 2019-10-15 23:00:19 t 1 1 122390 566 0.00 2019-10-15 22:43:00 2019-10-15 23:09:41 t 1 1 122396 470 0.00 2019-10-15 21:46:44 2019-10-15 23:18:10 t 1 1 122397 220 0.00 2019-10-15 22:52:52 2019-10-15 23:21:32 t 1 1 122398 470 0.00 2019-10-15 23:19:57 2019-10-15 23:23:18 t 1 1 122403 408 0.00 2019-10-15 23:17:31 2019-10-15 23:31:40 t 1 1 122404 558 0.00 2019-10-15 22:57:11 2019-10-15 23:34:17 t 1 1 122407 514 0.00 2019-10-15 22:46:10 2019-10-15 23:36:18 t 1 1 122409 501 0.00 2019-10-15 23:36:07 2019-10-15 23:40:02 t 1 1 122412 566 0.00 2019-10-15 23:17:08 2019-10-15 23:47:56 t 1 1 122415 408 0.00 2019-10-15 23:50:56 2019-10-15 23:55:51 t 1 1 122420 545 0.00 2019-10-15 23:40:14 2019-10-16 00:00:00 t 1 1 122422 558 0.00 2019-10-15 23:34:16 2019-10-16 00:02:12 t 1 1 122426 468 0.00 2019-10-15 23:57:11 2019-10-16 00:04:57 t 1 1 122427 501 0.00 2019-10-16 00:03:08 2019-10-16 00:07:08 t 1 1 122433 501 0.00 2019-10-16 00:07:08 2019-10-16 00:10:39 t 1 1 122439 503 0.00 2019-10-15 23:54:30 2019-10-16 00:17:46 t 1 1 122441 456 0.00 2019-10-16 00:14:42 2019-10-16 00:20:49 t 1 1 122442 558 0.00 2019-10-16 00:20:16 2019-10-16 00:21:39 t 1 1 122443 395 0.00 2019-10-16 00:21:54 2019-10-16 00:22:55 t 1 2 122444 422 0.00 2019-10-16 00:12:12 2019-10-16 00:23:52 t 1 1 122445 395 0.00 2019-10-16 00:23:25 2019-10-16 00:24:28 t 1 2 122447 501 0.00 2019-10-16 00:19:41 2019-10-16 00:24:55 t 1 1 122450 503 0.00 2019-10-16 00:17:46 2019-10-16 00:27:41 t 1 1 122453 522 0.00 2019-10-16 00:29:35 2019-10-16 00:35:43 t 1 1 122454 522 0.00 2019-10-16 00:36:22 2019-10-16 00:36:23 t 1 1 122456 522 0.00 2019-10-16 00:36:47 2019-10-16 00:39:55 t 1 1 122460 542 0.00 2019-10-16 00:25:38 2019-10-16 00:45:23 t 1 1 122466 522 0.00 2019-10-16 00:58:15 2019-10-16 00:58:18 t 1 1 122467 522 0.00 2019-10-16 00:59:30 2019-10-16 00:59:41 t 1 1 122471 542 0.00 2019-10-16 00:56:39 2019-10-16 01:05:48 t 1 1 122475 522 0.00 2019-10-16 01:17:25 2019-10-16 01:17:31 t 1 1 122476 551 0.00 2019-10-16 01:10:50 2019-10-16 01:21:20 t 1 1 122484 542 0.00 2019-10-16 01:08:55 2019-10-16 01:40:02 t 1 1 122486 522 0.00 2019-10-16 01:42:52 2019-10-16 01:42:54 t 1 1 122487 422 0.00 2019-10-16 01:28:36 2019-10-16 01:44:03 t 1 1 122489 468 0.00 2019-10-16 01:31:50 2019-10-16 01:48:56 t 1 1 122493 514 0.00 2019-10-16 00:07:35 2019-10-16 02:03:17 t 1 1 122495 542 0.00 2019-10-16 01:59:29 2019-10-16 02:05:29 t 1 1 122503 522 0.00 2019-10-16 02:23:32 2019-10-16 02:23:34 t 1 1 122505 522 0.00 2019-10-16 02:26:51 2019-10-16 02:26:53 t 1 1 122506 522 0.00 2019-10-16 02:27:48 2019-10-16 02:27:49 t 1 1 122507 522 0.00 2019-10-16 02:27:57 2019-10-16 02:28:38 t 1 1 122511 522 0.00 2019-10-16 02:31:07 2019-10-16 02:31:19 t 1 1 122309 220 0.00 2019-10-15 21:25:39 2019-10-15 21:35:35 t 1 1 122313 562 0.00 2019-10-15 21:36:15 2019-10-15 21:36:30 t 1 1 122315 220 0.00 2019-10-15 21:09:10 2019-10-15 21:37:49 t 1 1 122317 220 0.00 2019-10-15 21:38:21 2019-10-15 21:38:33 t 1 1 122320 514 0.00 2019-10-15 21:35:29 2019-10-15 21:40:15 t 1 1 122322 566 0.00 2019-10-15 21:32:53 2019-10-15 21:44:29 t 1 1 122328 566 0.00 2019-10-15 21:44:29 2019-10-15 21:46:13 t 1 1 122332 562 0.00 2019-10-15 21:52:29 2019-10-15 21:52:41 t 1 1 122336 551 0.00 2019-10-15 19:06:38 2019-10-15 21:53:44 t 1 1 122337 220 0.00 2019-10-15 21:53:47 2019-10-15 21:56:16 t 1 1 122339 562 0.00 2019-10-15 21:56:00 2019-10-15 21:57:04 t 1 1 122342 220 0.00 2019-10-15 21:59:22 2019-10-15 21:59:36 t 1 1 122344 551 0.00 2019-10-15 21:54:10 2019-10-15 22:03:56 t 1 1 122346 445 0.00 2019-10-15 21:53:40 2019-10-15 22:06:12 t 1 1 122347 562 0.00 2019-10-15 22:02:46 2019-10-15 22:07:27 t 1 1 122350 485 0.00 2019-10-15 22:15:46 2019-10-15 22:18:20 t 1 1 122351 220 0.00 2019-10-15 21:38:47 2019-10-15 22:19:05 t 1 1 122355 562 0.00 2019-10-15 22:28:43 2019-10-15 22:28:54 t 1 1 122362 220 0.00 2019-10-15 22:38:31 2019-10-15 22:38:44 t 1 1 122367 558 0.00 2019-10-15 22:36:17 2019-10-15 22:45:48 t 1 1 122368 514 0.00 2019-10-15 22:38:10 2019-10-15 22:46:10 t 1 1 122369 501 0.00 2019-10-15 21:43:09 2019-10-15 22:46:24 t 1 1 122376 220 0.00 2019-10-15 22:48:28 2019-10-15 22:52:35 t 1 1 122382 544 0.00 2019-10-15 22:39:55 2019-10-15 22:56:50 t 1 2 122388 501 0.00 2019-10-15 22:56:09 2019-10-15 23:06:20 t 1 1 122391 220 0.00 2019-10-15 23:12:40 2019-10-15 23:12:54 t 1 1 122393 566 0.00 2019-10-15 23:09:41 2019-10-15 23:17:08 t 1 1 122395 372 0.00 2019-10-15 23:17:52 2019-10-15 23:17:55 t 1 2 122399 412 0.00 2019-10-15 20:37:35 2019-10-15 23:27:37 t 1 1 122401 562 0.00 2019-10-15 23:04:48 2019-10-15 23:31:10 t 1 1 122406 501 0.00 2019-10-15 23:34:27 2019-10-15 23:36:07 t 1 1 122408 422 0.00 2019-10-15 22:46:31 2019-10-15 23:39:58 t 1 1 122410 501 0.00 2019-10-15 23:40:02 2019-10-15 23:40:29 t 1 1 122414 372 0.00 2019-10-15 23:35:17 2019-10-15 23:53:43 t 1 2 122417 468 0.00 2019-10-15 23:56:45 2019-10-15 23:56:50 t 1 1 122423 514 0.00 2019-10-15 23:45:50 2019-10-16 00:02:17 t 1 1 122424 501 0.00 2019-10-15 23:59:25 2019-10-16 00:03:08 t 1 1 122425 514 0.00 2019-10-16 00:02:17 2019-10-16 00:04:41 t 1 1 122429 514 0.00 2019-10-16 00:04:41 2019-10-16 00:07:35 t 1 1 122430 558 0.00 2019-10-16 00:02:12 2019-10-16 00:08:22 t 1 1 122432 545 0.00 2019-10-16 00:00:00 2019-10-16 00:09:12 t 1 1 122435 501 0.00 2019-10-16 00:10:39 2019-10-16 00:12:22 t 1 1 122437 501 0.00 2019-10-16 00:12:22 2019-10-16 00:15:16 t 1 1 122440 501 0.00 2019-10-16 00:15:16 2019-10-16 00:19:41 t 1 1 122446 490 0.00 2019-10-16 00:14:12 2019-10-16 00:24:51 t 1 1 122448 542 0.00 2019-10-16 00:07:08 2019-10-16 00:25:38 t 1 1 122449 456 0.00 2019-10-16 00:21:23 2019-10-16 00:26:30 t 1 1 122451 501 0.00 2019-10-16 00:24:55 2019-10-16 00:27:51 t 1 1 122452 422 0.00 2019-10-16 00:23:52 2019-10-16 00:33:49 t 1 1 122458 522 0.00 2019-10-16 00:41:24 2019-10-16 00:41:28 t 1 1 122463 522 0.00 2019-10-16 00:53:10 2019-10-16 00:53:13 t 1 1 122465 542 0.00 2019-10-16 00:45:23 2019-10-16 00:56:34 t 1 1 122468 556 0.00 2019-10-15 20:54:59 2019-10-16 01:01:23 t 1 1 122470 468 0.00 2019-10-16 00:10:10 2019-10-16 01:03:36 t 1 1 122472 522 0.00 2019-10-16 01:07:12 2019-10-16 01:07:15 t 1 1 122480 422 0.00 2019-10-16 01:14:07 2019-10-16 01:28:36 t 1 1 122481 468 0.00 2019-10-16 01:03:36 2019-10-16 01:31:50 t 1 1 122485 542 0.00 2019-10-16 01:40:02 2019-10-16 01:42:09 t 1 1 122491 522 0.00 2019-10-16 01:58:12 2019-10-16 01:58:13 t 1 1 122496 556 0.00 2019-10-16 01:01:23 2019-10-16 02:07:59 t 1 1 122498 422 0.00 2019-10-16 02:02:28 2019-10-16 02:08:33 t 1 1 122499 522 0.00 2019-10-16 02:08:22 2019-10-16 02:09:22 t 1 1 122500 514 0.00 2019-10-16 02:03:17 2019-10-16 02:13:05 t 1 1 122501 522 0.00 2019-10-16 02:13:24 2019-10-16 02:13:25 t 1 1 122508 522 0.00 2019-10-16 02:28:46 2019-10-16 02:28:47 t 1 1 122515 522 0.00 2019-10-16 02:39:53 2019-10-16 02:39:56 t 1 1 122520 522 0.00 2019-10-16 02:54:05 2019-10-16 02:54:13 t 1 1 122524 522 0.00 2019-10-16 02:59:18 2019-10-16 02:59:19 t 1 1 122527 522 0.00 2019-10-16 03:09:24 2019-10-16 03:09:41 t 1 1 122528 542 0.00 2019-10-16 02:58:04 2019-10-16 03:10:53 t 1 1 122529 522 0.00 2019-10-16 03:14:27 2019-10-16 03:14:28 t 1 1 122532 522 0.00 2019-10-16 03:24:34 2019-10-16 03:24:41 t 1 1 122536 551 0.00 2019-10-16 03:27:01 2019-10-16 03:38:14 t 1 1 122537 522 0.00 2019-10-16 03:39:47 2019-10-16 03:39:50 t 1 1 122538 522 0.00 2019-10-16 03:41:18 2019-10-16 03:42:20 t 1 1 122539 522 0.00 2019-10-16 03:42:32 2019-10-16 03:43:07 t 1 1 122547 522 0.00 2019-10-16 03:47:44 2019-10-16 03:47:51 t 1 1 122548 522 0.00 2019-10-16 03:48:03 2019-10-16 03:48:37 t 1 1 122549 522 0.00 2019-10-16 03:48:48 2019-10-16 03:49:24 t 1 1 122552 522 0.00 2019-10-16 03:51:17 2019-10-16 03:51:48 t 1 1 122557 522 0.00 2019-10-16 03:53:33 2019-10-16 03:53:38 t 1 1 122558 522 0.00 2019-10-16 03:53:51 2019-10-16 03:54:22 t 1 1 122564 522 0.00 2019-10-16 03:56:44 2019-10-16 03:56:46 t 1 1 122569 522 0.00 2019-10-16 03:58:12 2019-10-16 03:58:43 t 1 1 122570 522 0.00 2019-10-16 03:58:55 2019-10-16 03:59:01 t 1 1 122572 522 0.00 2019-10-16 04:00:14 2019-10-16 04:00:46 t 1 1 122573 522 0.00 2019-10-16 04:00:57 2019-10-16 04:01:29 t 1 1 122576 522 0.00 2019-10-16 04:02:38 2019-10-16 04:02:40 t 1 1 122577 522 0.00 2019-10-16 04:02:52 2019-10-16 04:03:05 t 1 1 122581 522 0.00 2019-10-16 04:04:19 2019-10-16 04:04:52 t 1 1 122583 522 0.00 2019-10-16 04:05:24 2019-10-16 04:05:55 t 1 1 122584 522 0.00 2019-10-16 04:06:19 2019-10-16 04:06:51 t 1 1 122585 522 0.00 2019-10-16 04:06:56 2019-10-16 04:06:58 t 1 1 122588 522 0.00 2019-10-16 04:07:34 2019-10-16 04:07:36 t 1 1 122589 522 0.00 2019-10-16 04:07:53 2019-10-16 04:08:25 t 1 1 122590 522 0.00 2019-10-16 04:08:30 2019-10-16 04:09:03 t 1 1 122592 522 0.00 2019-10-16 04:09:37 2019-10-16 04:10:10 t 1 1 122594 445 0.00 2019-10-15 22:55:18 2019-10-16 04:10:55 t 1 1 122598 522 0.00 2019-10-16 04:12:12 2019-10-16 04:12:45 t 1 1 122599 522 0.00 2019-10-16 04:12:56 2019-10-16 04:13:27 t 1 1 122603 522 0.00 2019-10-16 04:14:38 2019-10-16 04:14:44 t 1 1 122605 522 0.00 2019-10-16 04:15:16 2019-10-16 04:15:42 t 1 1 122606 522 0.00 2019-10-16 04:15:54 2019-10-16 04:16:07 t 1 1 122610 522 0.00 2019-10-16 04:17:10 2019-10-16 04:17:17 t 1 1 122611 522 0.00 2019-10-16 04:17:29 2019-10-16 04:18:01 t 1 1 122613 522 0.00 2019-10-16 04:18:12 2019-10-16 04:18:19 t 1 1 122614 522 0.00 2019-10-16 04:18:32 2019-10-16 04:19:03 t 1 1 122492 422 0.00 2019-10-16 01:44:03 2019-10-16 02:02:28 t 1 1 122494 522 0.00 2019-10-16 02:03:17 2019-10-16 02:03:18 t 1 1 122497 551 0.00 2019-10-16 01:21:20 2019-10-16 02:08:16 t 1 1 122502 522 0.00 2019-10-16 02:18:27 2019-10-16 02:18:30 t 1 1 122504 522 0.00 2019-10-16 02:26:34 2019-10-16 02:26:45 t 1 1 122509 522 0.00 2019-10-16 02:28:54 2019-10-16 02:28:55 t 1 1 122510 522 0.00 2019-10-16 02:29:08 2019-10-16 02:29:42 t 1 1 122512 522 0.00 2019-10-16 02:32:47 2019-10-16 02:32:59 t 1 1 122518 522 0.00 2019-10-16 02:45:34 2019-10-16 02:45:45 t 1 1 122522 522 0.00 2019-10-16 02:56:53 2019-10-16 02:57:03 t 1 1 122525 522 0.00 2019-10-16 03:04:22 2019-10-16 03:04:25 t 1 1 122530 522 0.00 2019-10-16 03:19:29 2019-10-16 03:19:30 t 1 1 122531 538 0.00 2019-10-15 22:46:11 2019-10-16 03:20:56 t 1 1 122533 551 0.00 2019-10-16 02:11:11 2019-10-16 03:27:01 t 1 1 122535 522 0.00 2019-10-16 03:34:43 2019-10-16 03:35:00 t 1 1 122540 522 0.00 2019-10-16 03:43:18 2019-10-16 03:43:23 t 1 1 122541 522 0.00 2019-10-16 03:43:49 2019-10-16 03:44:21 t 1 1 122543 522 0.00 2019-10-16 03:44:47 2019-10-16 03:45:18 t 1 1 122544 522 0.00 2019-10-16 03:45:38 2019-10-16 03:46:16 t 1 1 122553 522 0.00 2019-10-16 03:51:53 2019-10-16 03:51:55 t 1 1 122554 522 0.00 2019-10-16 03:52:08 2019-10-16 03:52:39 t 1 1 122555 522 0.00 2019-10-16 03:53:18 2019-10-16 03:53:20 t 1 1 122559 522 0.00 2019-10-16 03:54:34 2019-10-16 03:54:36 t 1 1 122561 522 0.00 2019-10-16 03:54:53 2019-10-16 03:54:59 t 1 1 122565 522 0.00 2019-10-16 03:56:51 2019-10-16 03:56:53 t 1 1 122566 522 0.00 2019-10-16 03:56:58 2019-10-16 03:57:00 t 1 1 122574 522 0.00 2019-10-16 04:01:34 2019-10-16 04:01:41 t 1 1 122575 522 0.00 2019-10-16 04:01:54 2019-10-16 04:02:25 t 1 1 122579 522 0.00 2019-10-16 04:03:52 2019-10-16 04:03:54 t 1 1 122580 522 0.00 2019-10-16 04:03:59 2019-10-16 04:04:06 t 1 1 122582 522 0.00 2019-10-16 04:05:03 2019-10-16 04:05:11 t 1 1 122587 522 0.00 2019-10-16 04:07:27 2019-10-16 04:07:29 t 1 1 122596 522 0.00 2019-10-16 04:11:47 2019-10-16 04:11:48 t 1 1 122597 522 0.00 2019-10-16 04:11:54 2019-10-16 04:12:00 t 1 1 122602 522 0.00 2019-10-16 04:14:31 2019-10-16 04:14:33 t 1 1 122604 522 0.00 2019-10-16 04:14:57 2019-10-16 04:15:05 t 1 1 122609 522 0.00 2019-10-16 04:17:03 2019-10-16 04:17:05 t 1 1 122612 558 0.00 2019-10-16 04:10:59 2019-10-16 04:18:06 t 1 1 122616 522 0.00 2019-10-16 04:19:23 2019-10-16 04:19:25 t 1 1 122617 445 0.00 2019-10-16 04:11:40 2019-10-16 04:19:31 t 1 1 122624 522 0.00 2019-10-16 04:23:20 2019-10-16 04:23:27 t 1 1 122625 522 0.00 2019-10-16 04:23:56 2019-10-16 04:24:28 t 1 1 122627 514 0.00 2019-10-16 02:13:05 2019-10-16 04:25:10 t 1 1 122629 522 0.00 2019-10-16 04:25:36 2019-10-16 04:25:41 t 1 1 122630 522 0.00 2019-10-16 04:25:54 2019-10-16 04:26:27 t 1 1 122634 522 0.00 2019-10-16 04:27:11 2019-10-16 04:27:16 t 1 1 122635 522 0.00 2019-10-16 04:27:29 2019-10-16 04:28:00 t 1 1 122644 522 0.00 2019-10-16 04:33:22 2019-10-16 04:33:24 t 1 1 122645 522 0.00 2019-10-16 04:33:40 2019-10-16 04:34:13 t 1 1 122647 522 0.00 2019-10-16 04:34:38 2019-10-16 04:35:10 t 1 1 122648 522 0.00 2019-10-16 04:35:46 2019-10-16 04:36:19 t 1 1 122649 522 0.00 2019-10-16 04:36:30 2019-10-16 04:37:02 t 1 1 122654 522 0.00 2019-10-16 04:39:38 2019-10-16 04:39:40 t 1 1 122656 522 0.00 2019-10-16 04:40:08 2019-10-16 04:40:39 t 1 1 122657 522 0.00 2019-10-16 04:40:57 2019-10-16 04:41:02 t 1 1 122658 522 0.00 2019-10-16 04:41:15 2019-10-16 04:41:47 t 1 1 122659 522 0.00 2019-10-16 04:41:58 2019-10-16 04:42:00 t 1 1 122664 522 0.00 2019-10-16 04:44:14 2019-10-16 04:44:16 t 1 1 122669 522 0.00 2019-10-16 04:45:20 2019-10-16 04:45:25 t 1 1 122672 522 0.00 2019-10-16 04:45:52 2019-10-16 04:45:54 t 1 1 122673 522 0.00 2019-10-16 04:46:11 2019-10-16 04:46:13 t 1 1 122675 522 0.00 2019-10-16 04:46:18 2019-10-16 04:46:20 t 1 1 122678 522 0.00 2019-10-16 04:46:40 2019-10-16 04:46:42 t 1 1 122682 526 0.00 2019-10-16 04:46:57 2019-10-16 04:47:06 t 1 1 122683 526 0.00 2019-10-16 04:47:30 2019-10-16 04:47:41 t 1 1 122687 522 0.00 2019-10-16 04:48:15 2019-10-16 04:48:43 t 1 1 122688 522 0.00 2019-10-16 04:49:04 2019-10-16 04:49:37 t 1 1 122690 522 0.00 2019-10-16 04:50:02 2019-10-16 04:50:33 t 1 1 122695 522 0.00 2019-10-16 04:52:29 2019-10-16 04:52:35 t 1 1 122700 522 0.00 2019-10-16 04:54:10 2019-10-16 04:54:16 t 1 1 122702 522 0.00 2019-10-16 04:55:12 2019-10-16 04:55:44 t 1 1 122708 522 0.00 2019-10-16 04:58:36 2019-10-16 04:58:43 t 1 1 122709 522 0.00 2019-10-16 04:59:12 2019-10-16 04:59:19 t 1 1 122711 522 0.00 2019-10-16 05:00:19 2019-10-16 05:00:52 t 1 1 122712 522 0.00 2019-10-16 05:01:02 2019-10-16 05:01:35 t 1 1 122716 522 0.00 2019-10-16 05:03:31 2019-10-16 05:04:04 t 1 1 122718 522 0.00 2019-10-16 05:04:27 2019-10-16 05:04:59 t 1 1 122721 522 0.00 2019-10-16 05:05:24 2019-10-16 05:05:56 t 1 1 122722 522 0.00 2019-10-16 05:06:07 2019-10-16 05:06:12 t 1 1 122725 522 0.00 2019-10-16 05:07:55 2019-10-16 05:08:27 t 1 1 122729 522 0.00 2019-10-16 05:09:42 2019-10-16 05:09:49 t 1 1 122732 522 0.00 2019-10-16 05:11:22 2019-10-16 05:11:24 t 1 1 122733 522 0.00 2019-10-16 05:11:41 2019-10-16 05:12:12 t 1 1 122734 522 0.00 2019-10-16 05:12:29 2019-10-16 05:13:01 t 1 1 122736 522 0.00 2019-10-16 05:13:06 2019-10-16 05:13:12 t 1 1 122737 522 0.00 2019-10-16 05:13:33 2019-10-16 05:14:06 t 1 1 122740 522 0.00 2019-10-16 05:14:25 2019-10-16 05:14:27 t 1 1 122742 522 0.00 2019-10-16 05:15:03 2019-10-16 05:15:41 t 1 1 122743 522 0.00 2019-10-16 05:15:52 2019-10-16 05:16:23 t 1 1 122744 522 0.00 2019-10-16 05:16:28 2019-10-16 05:17:02 t 1 1 122749 522 0.00 2019-10-16 05:19:21 2019-10-16 05:19:54 t 1 1 122751 522 0.00 2019-10-16 05:20:19 2019-10-16 05:20:50 t 1 1 122752 522 0.00 2019-10-16 05:21:14 2019-10-16 05:21:16 t 1 1 122755 522 0.00 2019-10-16 05:21:35 2019-10-16 05:21:37 t 1 1 122761 522 0.00 2019-10-16 05:24:10 2019-10-16 05:24:12 t 1 1 122764 522 0.00 2019-10-16 05:24:43 2019-10-16 05:24:49 t 1 1 122766 522 0.00 2019-10-16 05:25:40 2019-10-16 05:25:50 t 1 1 122767 522 0.00 2019-10-16 05:26:01 2019-10-16 05:26:03 t 1 1 122772 522 0.00 2019-10-16 05:28:37 2019-10-16 05:28:43 t 1 1 122773 522 0.00 2019-10-16 05:29:13 2019-10-16 05:29:44 t 1 1 122775 522 0.00 2019-10-16 05:30:38 2019-10-16 05:30:41 t 1 1 122781 522 0.00 2019-10-16 05:33:14 2019-10-16 05:33:19 t 1 1 122782 522 0.00 2019-10-16 05:33:32 2019-10-16 05:34:01 t 1 1 122784 522 0.00 2019-10-16 05:35:03 2019-10-16 05:35:36 t 1 1 122791 522 0.00 2019-10-16 05:39:05 2019-10-16 05:39:07 t 1 1 122793 522 0.00 2019-10-16 05:39:31 2019-10-16 05:40:03 t 1 1 122795 522 0.00 2019-10-16 05:40:41 2019-10-16 05:41:14 t 1 1 122513 522 0.00 2019-10-16 02:33:40 2019-10-16 02:33:46 t 1 1 122514 522 0.00 2019-10-16 02:38:46 2019-10-16 02:39:41 t 1 1 122516 422 0.00 2019-10-16 02:09:22 2019-10-16 02:41:27 t 1 1 122517 522 0.00 2019-10-16 02:43:50 2019-10-16 02:44:00 t 1 1 122519 542 0.00 2019-10-16 02:23:38 2019-10-16 02:54:03 t 1 1 122521 522 0.00 2019-10-16 02:55:01 2019-10-16 02:55:03 t 1 1 122523 522 0.00 2019-10-16 02:57:15 2019-10-16 02:57:17 t 1 1 122526 522 0.00 2019-10-16 03:06:39 2019-10-16 03:06:50 t 1 1 122534 522 0.00 2019-10-16 03:29:43 2019-10-16 03:29:46 t 1 1 122542 522 0.00 2019-10-16 03:44:32 2019-10-16 03:44:34 t 1 1 122545 522 0.00 2019-10-16 03:46:23 2019-10-16 03:46:56 t 1 1 122546 522 0.00 2019-10-16 03:47:07 2019-10-16 03:47:39 t 1 1 122550 522 0.00 2019-10-16 03:49:37 2019-10-16 03:50:10 t 1 1 122551 522 0.00 2019-10-16 03:50:20 2019-10-16 03:50:57 t 1 1 122556 522 0.00 2019-10-16 03:53:26 2019-10-16 03:53:28 t 1 1 122560 522 0.00 2019-10-16 03:54:42 2019-10-16 03:54:48 t 1 1 122562 522 0.00 2019-10-16 03:55:12 2019-10-16 03:55:45 t 1 1 122563 522 0.00 2019-10-16 03:55:56 2019-10-16 03:56:27 t 1 1 122567 522 0.00 2019-10-16 03:57:17 2019-10-16 03:57:49 t 1 1 122568 522 0.00 2019-10-16 03:57:54 2019-10-16 03:57:59 t 1 1 122571 522 0.00 2019-10-16 03:59:21 2019-10-16 04:00:01 t 1 1 122578 522 0.00 2019-10-16 04:03:15 2019-10-16 04:03:47 t 1 1 122586 522 0.00 2019-10-16 04:07:03 2019-10-16 04:07:09 t 1 1 122591 522 0.00 2019-10-16 04:09:08 2019-10-16 04:09:24 t 1 1 122593 522 0.00 2019-10-16 04:10:21 2019-10-16 04:10:52 t 1 1 122595 522 0.00 2019-10-16 04:11:09 2019-10-16 04:11:41 t 1 1 122600 522 0.00 2019-10-16 04:13:33 2019-10-16 04:13:34 t 1 1 122601 522 0.00 2019-10-16 04:13:47 2019-10-16 04:14:20 t 1 1 122607 522 0.00 2019-10-16 04:16:18 2019-10-16 04:16:51 t 1 1 122608 522 0.00 2019-10-16 04:16:56 2019-10-16 04:16:58 t 1 1 122615 522 0.00 2019-10-16 04:19:16 2019-10-16 04:19:17 t 1 1 122618 522 0.00 2019-10-16 04:19:30 2019-10-16 04:19:37 t 1 1 122620 522 0.00 2019-10-16 04:20:36 2019-10-16 04:20:42 t 1 1 122621 522 0.00 2019-10-16 04:21:11 2019-10-16 04:21:45 t 1 1 122622 522 0.00 2019-10-16 04:21:57 2019-10-16 04:22:32 t 1 1 122623 522 0.00 2019-10-16 04:22:43 2019-10-16 04:23:15 t 1 1 122628 522 0.00 2019-10-16 04:24:53 2019-10-16 04:25:23 t 1 1 122633 522 0.00 2019-10-16 04:27:03 2019-10-16 04:27:05 t 1 1 122638 522 0.00 2019-10-16 04:29:40 2019-10-16 04:29:47 t 1 1 122640 522 0.00 2019-10-16 04:30:44 2019-10-16 04:30:51 t 1 1 122641 522 0.00 2019-10-16 04:31:03 2019-10-16 04:31:32 t 1 1 122642 522 0.00 2019-10-16 04:31:51 2019-10-16 04:32:23 t 1 1 122643 522 0.00 2019-10-16 04:32:34 2019-10-16 04:33:05 t 1 1 122652 522 0.00 2019-10-16 04:38:34 2019-10-16 04:38:50 t 1 1 122653 522 0.00 2019-10-16 04:39:01 2019-10-16 04:39:33 t 1 1 122662 522 0.00 2019-10-16 04:43:09 2019-10-16 04:43:15 t 1 1 122663 522 0.00 2019-10-16 04:43:36 2019-10-16 04:44:09 t 1 1 122666 522 0.00 2019-10-16 04:44:45 2019-10-16 04:44:47 t 1 1 122668 522 0.00 2019-10-16 04:45:11 2019-10-16 04:45:15 t 1 1 122671 526 0.00 2019-10-16 04:41:35 2019-10-16 04:45:51 t 1 1 122674 526 0.00 2019-10-16 04:45:51 2019-10-16 04:46:13 t 1 1 122677 522 0.00 2019-10-16 04:46:32 2019-10-16 04:46:34 t 1 1 122680 522 0.00 2019-10-16 04:46:54 2019-10-16 04:46:56 t 1 1 122686 522 0.00 2019-10-16 04:48:08 2019-10-16 04:48:10 t 1 1 122694 522 0.00 2019-10-16 04:52:05 2019-10-16 04:52:11 t 1 1 122698 522 0.00 2019-10-16 04:53:07 2019-10-16 04:53:13 t 1 1 122699 522 0.00 2019-10-16 04:53:33 2019-10-16 04:54:05 t 1 1 122701 522 0.00 2019-10-16 04:54:29 2019-10-16 04:55:01 t 1 1 122706 522 0.00 2019-10-16 04:57:15 2019-10-16 04:57:49 t 1 1 122707 522 0.00 2019-10-16 04:58:00 2019-10-16 04:58:31 t 1 1 122710 522 0.00 2019-10-16 04:59:31 2019-10-16 05:00:01 t 1 1 122720 526 0.00 2019-10-16 04:47:48 2019-10-16 05:05:31 t 1 1 122727 522 0.00 2019-10-16 05:08:39 2019-10-16 05:08:46 t 1 1 122728 522 0.00 2019-10-16 05:08:58 2019-10-16 05:09:31 t 1 1 122730 522 0.00 2019-10-16 05:10:02 2019-10-16 05:10:35 t 1 1 122731 522 0.00 2019-10-16 05:10:46 2019-10-16 05:11:17 t 1 1 122739 522 0.00 2019-10-16 05:14:18 2019-10-16 05:14:20 t 1 1 122746 522 0.00 2019-10-16 05:17:25 2019-10-16 05:17:57 t 1 1 122747 522 0.00 2019-10-16 05:18:24 2019-10-16 05:18:57 t 1 1 122748 522 0.00 2019-10-16 05:19:02 2019-10-16 05:19:04 t 1 1 122750 522 0.00 2019-10-16 05:19:59 2019-10-16 05:20:06 t 1 1 122754 522 0.00 2019-10-16 05:21:28 2019-10-16 05:21:30 t 1 1 122758 522 0.00 2019-10-16 05:22:31 2019-10-16 05:22:37 t 1 1 122759 522 0.00 2019-10-16 05:22:50 2019-10-16 05:23:22 t 1 1 122760 522 0.00 2019-10-16 05:23:33 2019-10-16 05:24:05 t 1 1 122763 522 0.00 2019-10-16 05:24:36 2019-10-16 05:24:38 t 1 1 122765 522 0.00 2019-10-16 05:25:02 2019-10-16 05:25:33 t 1 1 122770 522 0.00 2019-10-16 05:27:16 2019-10-16 05:27:48 t 1 1 122771 522 0.00 2019-10-16 05:27:59 2019-10-16 05:28:32 t 1 1 122774 522 0.00 2019-10-16 05:30:01 2019-10-16 05:30:33 t 1 1 122779 522 0.00 2019-10-16 05:32:11 2019-10-16 05:32:17 t 1 1 122780 522 0.00 2019-10-16 05:32:30 2019-10-16 05:33:03 t 1 1 122787 522 0.00 2019-10-16 05:36:12 2019-10-16 05:36:45 t 1 1 122788 522 0.00 2019-10-16 05:36:56 2019-10-16 05:37:32 t 1 1 122789 522 0.00 2019-10-16 05:37:45 2019-10-16 05:38:17 t 1 1 122790 522 0.00 2019-10-16 05:38:28 2019-10-16 05:39:00 t 1 1 122797 522 0.00 2019-10-16 05:41:38 2019-10-16 05:41:43 t 1 1 122798 522 0.00 2019-10-16 05:42:01 2019-10-16 05:42:07 t 1 1 122801 485 0.00 2019-10-16 05:40:59 2019-10-16 05:43:23 t 1 1 122805 522 0.00 2019-10-16 05:44:33 2019-10-16 05:44:35 t 1 1 122808 522 0.00 2019-10-16 05:44:54 2019-10-16 05:45:24 t 1 1 122814 522 0.00 2019-10-16 05:48:11 2019-10-16 05:48:44 t 1 1 122815 522 0.00 2019-10-16 05:48:51 2019-10-16 05:49:23 t 1 1 122817 522 0.00 2019-10-16 05:50:10 2019-10-16 05:50:12 t 1 1 122821 522 0.00 2019-10-16 05:51:31 2019-10-16 05:51:36 t 1 1 122827 522 0.00 2019-10-16 05:54:08 2019-10-16 05:54:10 t 1 1 122832 522 0.00 2019-10-16 05:55:41 2019-10-16 05:55:47 t 1 1 122833 522 0.00 2019-10-16 05:56:00 2019-10-16 05:56:31 t 1 1 122834 522 0.00 2019-10-16 05:56:54 2019-10-16 05:57:27 t 1 1 122838 522 0.00 2019-10-16 05:58:46 2019-10-16 05:58:52 t 1 1 122839 522 0.00 2019-10-16 05:59:05 2019-10-16 05:59:38 t 1 1 122841 522 0.00 2019-10-16 06:00:07 2019-10-16 06:00:41 t 1 1 122847 522 0.00 2019-10-16 06:03:04 2019-10-16 06:03:06 t 1 1 122855 522 0.00 2019-10-16 06:07:09 2019-10-16 06:07:11 t 1 1 122862 522 0.00 2019-10-16 06:10:44 2019-10-16 06:11:19 t 1 1 122867 520 0.00 2019-10-16 05:51:42 2019-10-16 06:13:46 t 1 1 122868 522 0.00 2019-10-16 06:13:56 2019-10-16 06:14:28 t 1 1 122619 522 0.00 2019-10-16 04:19:58 2019-10-16 04:20:31 t 1 1 122626 522 0.00 2019-10-16 04:24:33 2019-10-16 04:24:41 t 1 1 122631 522 0.00 2019-10-16 04:26:38 2019-10-16 04:26:40 t 1 1 122632 522 0.00 2019-10-16 04:26:56 2019-10-16 04:26:58 t 1 1 122636 522 0.00 2019-10-16 04:28:20 2019-10-16 04:28:52 t 1 1 122637 522 0.00 2019-10-16 04:29:03 2019-10-16 04:29:35 t 1 1 122639 522 0.00 2019-10-16 04:30:07 2019-10-16 04:30:39 t 1 1 122646 522 0.00 2019-10-16 04:34:18 2019-10-16 04:34:25 t 1 1 122650 522 0.00 2019-10-16 04:37:07 2019-10-16 04:37:14 t 1 1 122651 522 0.00 2019-10-16 04:37:26 2019-10-16 04:37:58 t 1 1 122655 522 0.00 2019-10-16 04:39:45 2019-10-16 04:39:47 t 1 1 122660 522 0.00 2019-10-16 04:42:05 2019-10-16 04:42:12 t 1 1 122661 522 0.00 2019-10-16 04:42:25 2019-10-16 04:42:58 t 1 1 122665 522 0.00 2019-10-16 04:44:21 2019-10-16 04:44:27 t 1 1 122667 522 0.00 2019-10-16 04:45:04 2019-10-16 04:45:06 t 1 1 122670 522 0.00 2019-10-16 04:45:45 2019-10-16 04:45:47 t 1 1 122676 522 0.00 2019-10-16 04:46:25 2019-10-16 04:46:27 t 1 1 122679 522 0.00 2019-10-16 04:46:47 2019-10-16 04:46:49 t 1 1 122681 522 0.00 2019-10-16 04:47:01 2019-10-16 04:47:03 t 1 1 122684 522 0.00 2019-10-16 04:47:24 2019-10-16 04:47:56 t 1 1 122685 522 0.00 2019-10-16 04:48:01 2019-10-16 04:48:03 t 1 1 122689 522 0.00 2019-10-16 04:49:42 2019-10-16 04:49:49 t 1 1 122691 522 0.00 2019-10-16 04:50:46 2019-10-16 04:50:51 t 1 1 122692 522 0.00 2019-10-16 04:51:04 2019-10-16 04:51:17 t 1 1 122693 522 0.00 2019-10-16 04:51:28 2019-10-16 04:52:00 t 1 1 122696 522 0.00 2019-10-16 04:52:53 2019-10-16 04:52:55 t 1 1 122697 522 0.00 2019-10-16 04:53:00 2019-10-16 04:53:02 t 1 1 122703 522 0.00 2019-10-16 04:55:49 2019-10-16 04:55:51 t 1 1 122704 522 0.00 2019-10-16 04:56:08 2019-10-16 04:56:39 t 1 1 122705 522 0.00 2019-10-16 04:56:56 2019-10-16 04:57:02 t 1 1 122713 522 0.00 2019-10-16 05:01:41 2019-10-16 05:01:47 t 1 1 122714 522 0.00 2019-10-16 05:02:00 2019-10-16 05:02:32 t 1 1 122715 522 0.00 2019-10-16 05:02:43 2019-10-16 05:03:15 t 1 1 122717 522 0.00 2019-10-16 05:04:09 2019-10-16 05:04:11 t 1 1 122719 522 0.00 2019-10-16 05:05:05 2019-10-16 05:05:11 t 1 1 122723 522 0.00 2019-10-16 05:06:25 2019-10-16 05:06:54 t 1 1 122724 522 0.00 2019-10-16 05:07:12 2019-10-16 05:07:44 t 1 1 122726 522 0.00 2019-10-16 05:08:32 2019-10-16 05:08:34 t 1 1 122735 526 0.00 2019-10-16 05:05:31 2019-10-16 05:13:07 t 1 1 122738 522 0.00 2019-10-16 05:14:11 2019-10-16 05:14:13 t 1 1 122741 522 0.00 2019-10-16 05:14:44 2019-10-16 05:14:50 t 1 1 122745 522 0.00 2019-10-16 05:17:07 2019-10-16 05:17:12 t 1 1 122753 522 0.00 2019-10-16 05:21:21 2019-10-16 05:21:23 t 1 1 122756 520 0.00 2019-10-16 05:08:19 2019-10-16 05:21:39 t 1 1 122757 522 0.00 2019-10-16 05:21:54 2019-10-16 05:22:26 t 1 1 122762 522 0.00 2019-10-16 05:24:29 2019-10-16 05:24:31 t 1 1 122768 522 0.00 2019-10-16 05:26:20 2019-10-16 05:26:51 t 1 1 122769 522 0.00 2019-10-16 05:26:56 2019-10-16 05:27:03 t 1 1 122776 522 0.00 2019-10-16 05:30:46 2019-10-16 05:30:53 t 1 1 122777 522 0.00 2019-10-16 05:31:06 2019-10-16 05:31:22 t 1 1 122778 522 0.00 2019-10-16 05:31:33 2019-10-16 05:32:06 t 1 1 122783 522 0.00 2019-10-16 05:34:19 2019-10-16 05:34:52 t 1 1 122785 522 0.00 2019-10-16 05:35:41 2019-10-16 05:35:47 t 1 1 122786 522 0.00 2019-10-16 05:35:52 2019-10-16 05:36:00 t 1 1 122792 522 0.00 2019-10-16 05:39:12 2019-10-16 05:39:19 t 1 1 122794 522 0.00 2019-10-16 05:40:23 2019-10-16 05:40:30 t 1 1 122796 522 0.00 2019-10-16 05:41:19 2019-10-16 05:41:21 t 1 1 122803 522 0.00 2019-10-16 05:43:41 2019-10-16 05:43:47 t 1 1 122804 522 0.00 2019-10-16 05:43:52 2019-10-16 05:44:03 t 1 1 122807 520 0.00 2019-10-16 05:21:38 2019-10-16 05:44:45 t 1 1 122812 522 0.00 2019-10-16 05:47:14 2019-10-16 05:47:46 t 1 1 122813 522 0.00 2019-10-16 05:47:51 2019-10-16 05:47:58 t 1 1 122816 522 0.00 2019-10-16 05:49:34 2019-10-16 05:50:05 t 1 1 122820 522 0.00 2019-10-16 05:51:23 2019-10-16 05:51:25 t 1 1 122824 522 0.00 2019-10-16 05:52:28 2019-10-16 05:52:41 t 1 1 122825 522 0.00 2019-10-16 05:52:48 2019-10-16 05:53:20 t 1 1 122826 522 0.00 2019-10-16 05:53:31 2019-10-16 05:54:03 t 1 1 122829 522 0.00 2019-10-16 05:54:23 2019-10-16 05:54:25 t 1 1 122831 522 0.00 2019-10-16 05:55:22 2019-10-16 05:55:24 t 1 1 122837 522 0.00 2019-10-16 05:58:39 2019-10-16 05:58:41 t 1 1 122844 522 0.00 2019-10-16 06:01:23 2019-10-16 06:01:30 t 1 1 122845 522 0.00 2019-10-16 06:01:42 2019-10-16 06:02:16 t 1 1 122846 522 0.00 2019-10-16 06:02:26 2019-10-16 06:02:58 t 1 1 122850 522 0.00 2019-10-16 06:04:14 2019-10-16 06:04:21 t 1 1 122852 522 0.00 2019-10-16 06:05:17 2019-10-16 06:05:24 t 1 1 122853 522 0.00 2019-10-16 06:05:37 2019-10-16 06:06:08 t 1 1 122854 522 0.00 2019-10-16 06:06:32 2019-10-16 06:07:03 t 1 1 122859 522 0.00 2019-10-16 06:09:14 2019-10-16 06:09:43 t 1 1 122866 522 0.00 2019-10-16 06:13:38 2019-10-16 06:13:43 t 1 1 122870 522 0.00 2019-10-16 06:15:27 2019-10-16 06:15:29 t 1 1 122875 522 0.00 2019-10-16 06:16:59 2019-10-16 06:17:32 t 1 1 122877 522 0.00 2019-10-16 06:17:44 2019-10-16 06:18:00 t 1 1 122879 522 0.00 2019-10-16 06:18:18 2019-10-16 06:18:51 t 1 1 122880 522 0.00 2019-10-16 06:19:02 2019-10-16 06:19:09 t 1 1 122882 522 0.00 2019-10-16 06:20:09 2019-10-16 06:20:41 t 1 1 122883 522 0.00 2019-10-16 06:20:53 2019-10-16 06:21:00 t 1 1 122885 522 0.00 2019-10-16 06:22:08 2019-10-16 06:22:25 t 1 1 122889 522 0.00 2019-10-16 06:24:19 2019-10-16 06:24:51 t 1 1 122892 522 0.00 2019-10-16 06:25:20 2019-10-16 06:25:26 t 1 1 122896 522 0.00 2019-10-16 06:26:11 2019-10-16 06:26:54 t 1 1 122897 522 0.00 2019-10-16 06:27:05 2019-10-16 06:27:12 t 1 1 122903 522 0.00 2019-10-16 06:28:34 2019-10-16 06:28:36 t 1 1 122905 522 0.00 2019-10-16 06:29:00 2019-10-16 06:29:07 t 1 1 122910 522 0.00 2019-10-16 06:30:22 2019-10-16 06:30:24 t 1 1 122913 522 0.00 2019-10-16 06:30:54 2019-10-16 06:30:56 t 1 1 122914 522 0.00 2019-10-16 06:31:01 2019-10-16 06:31:03 t 1 1 122918 522 0.00 2019-10-16 06:32:15 2019-10-16 06:32:21 t 1 1 122921 522 0.00 2019-10-16 06:32:58 2019-10-16 06:32:59 t 1 1 122924 522 0.00 2019-10-16 06:33:30 2019-10-16 06:33:32 t 1 1 122928 522 0.00 2019-10-16 06:34:03 2019-10-16 06:34:09 t 1 1 122933 522 0.00 2019-10-16 06:35:12 2019-10-16 06:35:18 t 1 1 122934 522 0.00 2019-10-16 06:35:36 2019-10-16 06:35:53 t 1 1 122937 522 0.00 2019-10-16 06:36:37 2019-10-16 06:36:38 t 1 1 122941 522 0.00 2019-10-16 06:37:17 2019-10-16 06:37:23 t 1 1 122943 522 0.00 2019-10-16 06:37:35 2019-10-16 06:37:37 t 1 1 122947 445 0.00 2019-10-16 04:19:26 2019-10-16 06:38:41 t 1 1 122949 522 0.00 2019-10-16 06:39:06 2019-10-16 06:39:13 t 1 1 122799 522 0.00 2019-10-16 05:42:20 2019-10-16 05:42:51 t 1 1 122800 522 0.00 2019-10-16 05:43:15 2019-10-16 05:43:17 t 1 1 122802 522 0.00 2019-10-16 05:43:33 2019-10-16 05:43:35 t 1 1 122806 522 0.00 2019-10-16 05:44:40 2019-10-16 05:44:42 t 1 1 122809 520 0.00 2019-10-16 05:44:45 2019-10-16 05:45:36 t 1 1 122810 522 0.00 2019-10-16 05:45:42 2019-10-16 05:46:16 t 1 1 122811 522 0.00 2019-10-16 05:46:26 2019-10-16 05:46:57 t 1 1 122818 522 0.00 2019-10-16 05:50:17 2019-10-16 05:50:23 t 1 1 122819 522 0.00 2019-10-16 05:50:36 2019-10-16 05:51:13 t 1 1 122822 520 0.00 2019-10-16 05:45:35 2019-10-16 05:51:43 t 1 1 122823 522 0.00 2019-10-16 05:51:49 2019-10-16 05:52:22 t 1 1 122828 522 0.00 2019-10-16 05:54:16 2019-10-16 05:54:18 t 1 1 122830 522 0.00 2019-10-16 05:54:45 2019-10-16 05:55:17 t 1 1 122835 522 0.00 2019-10-16 05:57:37 2019-10-16 05:57:44 t 1 1 122836 522 0.00 2019-10-16 05:57:56 2019-10-16 05:58:28 t 1 1 122840 522 0.00 2019-10-16 05:59:49 2019-10-16 05:59:51 t 1 1 122842 522 0.00 2019-10-16 06:00:46 2019-10-16 06:00:53 t 1 1 122843 522 0.00 2019-10-16 06:01:05 2019-10-16 06:01:12 t 1 1 122848 522 0.00 2019-10-16 06:03:11 2019-10-16 06:03:16 t 1 1 122849 522 0.00 2019-10-16 06:03:37 2019-10-16 06:04:09 t 1 1 122851 522 0.00 2019-10-16 06:04:33 2019-10-16 06:05:06 t 1 1 122856 522 0.00 2019-10-16 06:07:23 2019-10-16 06:07:55 t 1 1 122857 522 0.00 2019-10-16 06:08:06 2019-10-16 06:08:37 t 1 1 122858 522 0.00 2019-10-16 06:08:54 2019-10-16 06:09:01 t 1 1 122860 522 0.00 2019-10-16 06:10:01 2019-10-16 06:10:33 t 1 1 122861 516 0.00 2019-10-16 05:45:18 2019-10-16 06:10:59 t 1 1 122863 522 0.00 2019-10-16 06:11:48 2019-10-16 06:11:54 t 1 1 122864 522 0.00 2019-10-16 06:12:07 2019-10-16 06:12:39 t 1 1 122865 522 0.00 2019-10-16 06:12:50 2019-10-16 06:13:21 t 1 1 122869 522 0.00 2019-10-16 06:14:39 2019-10-16 06:15:10 t 1 1 122873 522 0.00 2019-10-16 06:16:37 2019-10-16 06:16:39 t 1 1 122878 522 0.00 2019-10-16 06:18:00 2019-10-16 06:18:06 t 1 1 122886 522 0.00 2019-10-16 06:22:24 2019-10-16 06:22:55 t 1 1 122887 522 0.00 2019-10-16 06:23:12 2019-10-16 06:23:14 t 1 1 122888 522 0.00 2019-10-16 06:23:27 2019-10-16 06:24:08 t 1 1 122890 522 0.00 2019-10-16 06:24:56 2019-10-16 06:24:58 t 1 1 122894 522 0.00 2019-10-16 06:25:45 2019-10-16 06:25:47 t 1 1 122899 522 0.00 2019-10-16 06:27:37 2019-10-16 06:27:44 t 1 1 122900 522 0.00 2019-10-16 06:28:04 2019-10-16 06:28:09 t 1 1 122902 522 0.00 2019-10-16 06:28:27 2019-10-16 06:28:29 t 1 1 122907 522 0.00 2019-10-16 06:29:37 2019-10-16 06:29:45 t 1 1 122909 522 0.00 2019-10-16 06:30:04 2019-10-16 06:30:09 t 1 1 122912 522 0.00 2019-10-16 06:30:47 2019-10-16 06:30:49 t 1 1 122916 522 0.00 2019-10-16 06:31:42 2019-10-16 06:31:44 t 1 1 122917 522 0.00 2019-10-16 06:32:08 2019-10-16 06:32:10 t 1 1 122919 562 0.00 2019-10-16 06:29:04 2019-10-16 06:32:43 t 1 1 122923 522 0.00 2019-10-16 06:33:24 2019-10-16 06:33:25 t 1 1 122926 522 0.00 2019-10-16 06:33:45 2019-10-16 06:33:46 t 1 1 122927 522 0.00 2019-10-16 06:33:52 2019-10-16 06:33:58 t 1 1 122930 522 0.00 2019-10-16 06:34:28 2019-10-16 06:34:30 t 1 1 122931 520 0.00 2019-10-16 06:26:14 2019-10-16 06:34:52 t 1 1 122932 522 0.00 2019-10-16 06:34:43 2019-10-16 06:35:01 t 1 1 122936 522 0.00 2019-10-16 06:36:18 2019-10-16 06:36:24 t 1 1 122940 522 0.00 2019-10-16 06:37:11 2019-10-16 06:37:12 t 1 1 122942 520 0.00 2019-10-16 06:34:52 2019-10-16 06:37:28 t 1 1 122946 522 0.00 2019-10-16 06:38:34 2019-10-16 06:38:35 t 1 1 122948 522 0.00 2019-10-16 06:38:40 2019-10-16 06:38:47 t 1 1 122956 522 0.00 2019-10-16 06:38:59 2019-10-16 06:41:30 t 1 1 122958 522 0.00 2019-10-16 06:41:36 2019-10-16 06:41:43 t 1 1 122962 522 0.00 2019-10-16 06:42:26 2019-10-16 06:42:33 t 1 1 122968 522 0.00 2019-10-16 06:43:18 2019-10-16 06:43:20 t 1 1 122971 522 0.00 2019-10-16 06:43:49 2019-10-16 06:43:56 t 1 1 122972 522 0.00 2019-10-16 06:44:09 2019-10-16 06:44:15 t 1 1 122973 522 0.00 2019-10-16 06:44:26 2019-10-16 06:44:33 t 1 1 122975 522 0.00 2019-10-16 06:44:52 2019-10-16 06:44:58 t 1 1 122978 522 0.00 2019-10-16 06:45:44 2019-10-16 06:45:46 t 1 1 122979 522 0.00 2019-10-16 06:45:52 2019-10-16 06:45:57 t 1 1 122980 522 0.00 2019-10-16 06:46:10 2019-10-16 06:46:11 t 1 1 122982 514 0.00 2019-10-16 06:46:04 2019-10-16 06:46:25 t 1 1 122986 522 0.00 2019-10-16 06:46:42 2019-10-16 06:46:44 t 1 1 122987 522 0.00 2019-10-16 06:46:57 2019-10-16 06:47:14 t 1 1 122990 522 0.00 2019-10-16 06:47:51 2019-10-16 06:47:57 t 1 1 122991 522 0.00 2019-10-16 06:48:10 2019-10-16 06:48:11 t 1 1 122994 522 0.00 2019-10-16 06:48:41 2019-10-16 06:48:43 t 1 1 122995 522 0.00 2019-10-16 06:48:56 2019-10-16 06:49:18 t 1 1 123000 522 0.00 2019-10-16 06:50:30 2019-10-16 06:50:36 t 1 1 123005 522 0.00 2019-10-16 06:51:44 2019-10-16 06:51:46 t 1 1 123006 522 0.00 2019-10-16 06:51:59 2019-10-16 06:52:15 t 1 1 123011 522 0.00 2019-10-16 06:53:50 2019-10-16 06:53:52 t 1 1 123012 522 0.00 2019-10-16 06:54:21 2019-10-16 06:54:38 t 1 1 123014 568 0.00 2019-10-16 06:52:29 2019-10-16 06:54:58 t 1 1 123018 522 0.00 2019-10-16 06:55:30 2019-10-16 06:55:37 t 1 1 123022 522 0.00 2019-10-16 06:56:21 2019-10-16 06:56:52 t 1 1 123023 522 0.00 2019-10-16 06:57:05 2019-10-16 06:57:06 t 1 1 123026 522 0.00 2019-10-16 06:57:44 2019-10-16 06:57:46 t 1 1 123027 522 0.00 2019-10-16 06:58:18 2019-10-16 06:58:25 t 1 1 123030 522 0.00 2019-10-16 06:58:51 2019-10-16 06:58:53 t 1 1 123032 522 0.00 2019-10-16 06:59:34 2019-10-16 06:59:40 t 1 1 123034 522 0.00 2019-10-16 06:59:59 2019-10-16 07:00:06 t 1 1 123037 522 0.00 2019-10-16 07:00:49 2019-10-16 07:00:55 t 1 1 123038 522 0.00 2019-10-16 07:01:08 2019-10-16 07:01:10 t 1 1 123042 522 0.00 2019-10-16 07:02:12 2019-10-16 07:02:19 t 1 1 123044 562 0.00 2019-10-16 06:59:10 2019-10-16 07:02:46 t 1 1 123045 522 0.00 2019-10-16 07:03:06 2019-10-16 07:03:14 t 1 1 123052 522 0.00 2019-10-16 07:04:19 2019-10-16 07:04:26 t 1 1 123057 522 0.00 2019-10-16 07:05:25 2019-10-16 07:05:27 t 1 1 123064 522 0.00 2019-10-16 07:06:48 2019-10-16 07:06:55 t 1 1 123066 522 0.00 2019-10-16 07:07:34 2019-10-16 07:07:35 t 1 1 123068 522 0.00 2019-10-16 07:07:40 2019-10-16 07:07:42 t 1 1 123069 522 0.00 2019-10-16 07:07:55 2019-10-16 07:08:13 t 1 1 123073 522 0.00 2019-10-16 07:09:12 2019-10-16 07:09:18 t 1 1 123076 522 0.00 2019-10-16 07:09:55 2019-10-16 07:10:02 t 1 1 123079 522 0.00 2019-10-16 07:10:45 2019-10-16 07:10:46 t 1 1 123081 520 0.00 2019-10-16 07:03:55 2019-10-16 07:10:55 t 1 1 123082 522 0.00 2019-10-16 07:10:59 2019-10-16 07:11:05 t 1 1 123083 522 0.00 2019-10-16 07:11:18 2019-10-16 07:11:19 t 1 1 123086 522 0.00 2019-10-16 07:11:39 2019-10-16 07:11:45 t 1 1 122871 522 0.00 2019-10-16 06:15:34 2019-10-16 06:15:40 t 1 1 122872 522 0.00 2019-10-16 06:15:53 2019-10-16 06:16:26 t 1 1 122874 520 0.00 2019-10-16 06:13:45 2019-10-16 06:17:22 t 1 1 122876 522 0.00 2019-10-16 06:17:37 2019-10-16 06:17:39 t 1 1 122881 522 0.00 2019-10-16 06:19:22 2019-10-16 06:19:51 t 1 1 122884 522 0.00 2019-10-16 06:21:12 2019-10-16 06:21:42 t 1 1 122891 522 0.00 2019-10-16 06:25:03 2019-10-16 06:25:20 t 1 1 122893 522 0.00 2019-10-16 06:25:39 2019-10-16 06:25:40 t 1 1 122895 520 0.00 2019-10-16 06:17:21 2019-10-16 06:26:14 t 1 1 122898 522 0.00 2019-10-16 06:27:30 2019-10-16 06:27:32 t 1 1 122901 516 0.00 2019-10-16 06:25:15 2019-10-16 06:28:18 t 1 1 122904 522 0.00 2019-10-16 06:28:42 2019-10-16 06:28:44 t 1 1 122906 522 0.00 2019-10-16 06:29:19 2019-10-16 06:29:26 t 1 1 122908 522 0.00 2019-10-16 06:29:57 2019-10-16 06:29:59 t 1 1 122911 522 0.00 2019-10-16 06:30:29 2019-10-16 06:30:35 t 1 1 122915 522 0.00 2019-10-16 06:31:35 2019-10-16 06:31:37 t 1 1 122920 566 0.00 2019-10-16 06:14:30 2019-10-16 06:32:52 t 1 1 122922 522 0.00 2019-10-16 06:33:05 2019-10-16 06:33:11 t 1 1 122925 522 0.00 2019-10-16 06:33:37 2019-10-16 06:33:39 t 1 1 122929 522 0.00 2019-10-16 06:34:22 2019-10-16 06:34:23 t 1 1 122935 522 0.00 2019-10-16 06:35:53 2019-10-16 06:36:00 t 1 1 122938 522 0.00 2019-10-16 06:36:43 2019-10-16 06:36:45 t 1 1 122939 522 0.00 2019-10-16 06:36:51 2019-10-16 06:36:58 t 1 1 122944 522 0.00 2019-10-16 06:37:42 2019-10-16 06:37:44 t 1 1 122945 522 0.00 2019-10-16 06:38:16 2019-10-16 06:38:21 t 1 1 122950 522 0.00 2019-10-16 06:39:25 2019-10-16 06:39:27 t 1 1 122951 522 0.00 2019-10-16 06:39:32 2019-10-16 06:39:38 t 1 1 122955 522 0.00 2019-10-16 06:41:03 2019-10-16 06:41:05 t 1 1 122957 522 0.00 2019-10-16 06:41:30 2019-10-16 06:41:31 t 1 1 122961 522 0.00 2019-10-16 06:42:20 2019-10-16 06:42:21 t 1 1 122963 566 0.00 2019-10-16 06:32:52 2019-10-16 06:42:39 t 1 1 122964 522 0.00 2019-10-16 06:42:46 2019-10-16 06:42:47 t 1 1 122965 522 0.00 2019-10-16 06:42:52 2019-10-16 06:42:58 t 1 1 122967 522 0.00 2019-10-16 06:43:11 2019-10-16 06:43:12 t 1 1 122970 522 0.00 2019-10-16 06:43:43 2019-10-16 06:43:44 t 1 1 122977 522 0.00 2019-10-16 06:45:38 2019-10-16 06:45:39 t 1 1 122983 562 0.00 2019-10-16 06:39:34 2019-10-16 06:46:27 t 1 1 122985 522 0.00 2019-10-16 06:46:36 2019-10-16 06:46:37 t 1 1 122989 522 0.00 2019-10-16 06:47:44 2019-10-16 06:47:45 t 1 1 122993 522 0.00 2019-10-16 06:48:35 2019-10-16 06:48:36 t 1 1 122997 522 0.00 2019-10-16 06:49:50 2019-10-16 06:49:51 t 1 1 123002 522 0.00 2019-10-16 06:50:55 2019-10-16 06:50:57 t 1 1 123004 522 0.00 2019-10-16 06:51:38 2019-10-16 06:51:39 t 1 1 123007 568 0.00 2019-10-16 06:51:06 2019-10-16 06:52:21 t 1 1 123008 522 0.00 2019-10-16 06:52:26 2019-10-16 06:52:32 t 1 1 123009 522 0.00 2019-10-16 06:52:57 2019-10-16 06:53:14 t 1 1 123010 522 0.00 2019-10-16 06:53:25 2019-10-16 06:53:32 t 1 1 123015 522 0.00 2019-10-16 06:54:58 2019-10-16 06:54:59 t 1 1 123017 522 0.00 2019-10-16 06:55:24 2019-10-16 06:55:25 t 1 1 123021 522 0.00 2019-10-16 06:56:15 2019-10-16 06:56:16 t 1 1 123025 522 0.00 2019-10-16 06:57:37 2019-10-16 06:57:39 t 1 1 123029 522 0.00 2019-10-16 06:58:44 2019-10-16 06:58:46 t 1 1 123031 522 0.00 2019-10-16 06:59:17 2019-10-16 06:59:23 t 1 1 123036 522 0.00 2019-10-16 07:00:25 2019-10-16 07:00:27 t 1 1 123040 522 0.00 2019-10-16 07:01:46 2019-10-16 07:01:53 t 1 1 123041 522 0.00 2019-10-16 07:02:05 2019-10-16 07:02:07 t 1 1 123047 522 0.00 2019-10-16 07:03:33 2019-10-16 07:03:39 t 1 1 123049 522 0.00 2019-10-16 07:03:52 2019-10-16 07:03:58 t 1 1 123051 522 0.00 2019-10-16 07:04:08 2019-10-16 07:04:14 t 1 1 123054 522 0.00 2019-10-16 07:04:45 2019-10-16 07:04:47 t 1 1 123056 522 0.00 2019-10-16 07:05:18 2019-10-16 07:05:20 t 1 1 123059 522 0.00 2019-10-16 07:05:51 2019-10-16 07:05:53 t 1 1 123060 522 0.00 2019-10-16 07:05:58 2019-10-16 07:06:00 t 1 1 123061 522 0.00 2019-10-16 07:06:05 2019-10-16 07:06:21 t 1 1 123063 522 0.00 2019-10-16 07:06:42 2019-10-16 07:06:43 t 1 1 123065 522 0.00 2019-10-16 07:07:15 2019-10-16 07:07:21 t 1 1 123067 562 0.00 2019-10-16 07:07:11 2019-10-16 07:07:35 t 1 1 123071 522 0.00 2019-10-16 07:08:48 2019-10-16 07:08:50 t 1 1 123075 522 0.00 2019-10-16 07:09:48 2019-10-16 07:09:50 t 1 1 123078 522 0.00 2019-10-16 07:10:38 2019-10-16 07:10:39 t 1 1 123085 522 0.00 2019-10-16 07:11:31 2019-10-16 07:11:33 t 1 1 123087 522 0.00 2019-10-16 07:12:03 2019-10-16 07:12:05 t 1 1 123090 522 0.00 2019-10-16 07:12:36 2019-10-16 07:12:42 t 1 1 123092 522 0.00 2019-10-16 07:12:55 2019-10-16 07:12:56 t 1 1 123093 522 0.00 2019-10-16 07:13:01 2019-10-16 07:13:03 t 1 1 123098 522 0.00 2019-10-16 07:13:46 2019-10-16 07:13:48 t 1 1 123105 562 0.00 2019-10-16 07:14:35 2019-10-16 07:14:46 t 1 1 123108 522 0.00 2019-10-16 07:15:06 2019-10-16 07:15:13 t 1 1 123110 522 0.00 2019-10-16 07:15:31 2019-10-16 07:15:37 t 1 1 123112 522 0.00 2019-10-16 07:15:49 2019-10-16 07:15:51 t 1 1 123113 522 0.00 2019-10-16 07:15:56 2019-10-16 07:15:58 t 1 1 123116 522 0.00 2019-10-16 07:16:42 2019-10-16 07:16:44 t 1 1 123117 522 0.00 2019-10-16 07:16:49 2019-10-16 07:16:54 t 1 1 123118 522 0.00 2019-10-16 07:17:07 2019-10-16 07:17:09 t 1 1 123121 522 0.00 2019-10-16 07:17:39 2019-10-16 07:17:45 t 1 1 123122 522 0.00 2019-10-16 07:17:58 2019-10-16 07:17:59 t 1 1 123125 522 0.00 2019-10-16 07:18:30 2019-10-16 07:18:36 t 1 1 123129 522 0.00 2019-10-16 07:19:10 2019-10-16 07:19:16 t 1 1 123136 522 0.00 2019-10-16 07:20:35 2019-10-16 07:20:37 t 1 1 123139 522 0.00 2019-10-16 07:20:49 2019-10-16 07:25:45 t 1 1 123140 522 0.00 2019-10-16 07:25:58 2019-10-16 07:26:00 t 1 1 123143 522 0.00 2019-10-16 07:26:27 2019-10-16 07:26:33 t 1 1 123145 522 0.00 2019-10-16 07:27:12 2019-10-16 07:27:13 t 1 1 123150 522 0.00 2019-10-16 07:27:51 2019-10-16 07:27:53 t 1 1 123151 522 0.00 2019-10-16 07:27:58 2019-10-16 07:28:12 t 1 1 123157 522 0.00 2019-10-16 07:30:03 2019-10-16 07:30:09 t 1 1 123159 522 0.00 2019-10-16 07:30:22 2019-10-16 07:30:23 t 1 1 123163 522 0.00 2019-10-16 07:31:08 2019-10-16 07:31:24 t 1 1 123167 522 0.00 2019-10-16 07:32:10 2019-10-16 07:32:56 t 1 1 123168 522 0.00 2019-10-16 07:33:17 2019-10-16 07:33:24 t 1 1 123172 522 0.00 2019-10-16 07:34:20 2019-10-16 07:34:26 t 1 1 123177 522 0.00 2019-10-16 07:35:23 2019-10-16 07:35:28 t 1 1 123179 522 0.00 2019-10-16 07:35:48 2019-10-16 07:36:05 t 1 1 123181 522 0.00 2019-10-16 07:36:32 2019-10-16 07:36:38 t 1 1 123183 522 0.00 2019-10-16 07:37:17 2019-10-16 07:37:18 t 1 1 123185 562 0.00 2019-10-16 07:36:48 2019-10-16 07:37:29 t 1 1 123187 306 0.00 2019-10-16 07:29:00 2019-10-16 07:37:54 t 1 1 122952 522 0.00 2019-10-16 06:39:51 2019-10-16 06:40:11 t 1 1 122953 522 0.00 2019-10-16 06:40:37 2019-10-16 06:40:44 t 1 1 122954 522 0.00 2019-10-16 06:40:57 2019-10-16 06:40:58 t 1 1 122959 522 0.00 2019-10-16 06:41:55 2019-10-16 06:41:57 t 1 1 122960 522 0.00 2019-10-16 06:42:02 2019-10-16 06:42:07 t 1 1 122966 516 0.00 2019-10-16 06:40:29 2019-10-16 06:43:10 t 1 1 122969 522 0.00 2019-10-16 06:43:25 2019-10-16 06:43:30 t 1 1 122974 522 0.00 2019-10-16 06:44:45 2019-10-16 06:44:47 t 1 1 122976 522 0.00 2019-10-16 06:45:19 2019-10-16 06:45:25 t 1 1 122981 522 0.00 2019-10-16 06:46:17 2019-10-16 06:46:23 t 1 1 122984 566 0.00 2019-10-16 06:42:39 2019-10-16 06:46:30 t 1 1 122988 522 0.00 2019-10-16 06:47:25 2019-10-16 06:47:31 t 1 1 122992 522 0.00 2019-10-16 06:48:16 2019-10-16 06:48:22 t 1 1 122996 522 0.00 2019-10-16 06:49:29 2019-10-16 06:49:37 t 1 1 122998 522 0.00 2019-10-16 06:49:56 2019-10-16 06:49:58 t 1 1 122999 562 0.00 2019-10-16 06:50:24 2019-10-16 06:50:34 t 1 1 123001 522 0.00 2019-10-16 06:50:49 2019-10-16 06:50:50 t 1 1 123003 522 0.00 2019-10-16 06:51:19 2019-10-16 06:51:25 t 1 1 123013 522 0.00 2019-10-16 06:54:51 2019-10-16 06:54:52 t 1 1 123016 562 0.00 2019-10-16 06:53:17 2019-10-16 06:55:22 t 1 1 123019 522 0.00 2019-10-16 06:55:50 2019-10-16 06:55:51 t 1 1 123020 522 0.00 2019-10-16 06:55:56 2019-10-16 06:56:02 t 1 1 123024 522 0.00 2019-10-16 06:57:11 2019-10-16 06:57:13 t 1 1 123028 522 0.00 2019-10-16 06:58:37 2019-10-16 06:58:39 t 1 1 123033 522 0.00 2019-10-16 06:59:53 2019-10-16 06:59:54 t 1 1 123035 522 0.00 2019-10-16 07:00:19 2019-10-16 07:00:20 t 1 1 123039 522 0.00 2019-10-16 07:01:15 2019-10-16 07:01:17 t 1 1 123043 522 0.00 2019-10-16 07:02:39 2019-10-16 07:02:45 t 1 1 123046 522 0.00 2019-10-16 07:03:27 2019-10-16 07:03:28 t 1 1 123048 520 0.00 2019-10-16 06:44:28 2019-10-16 07:03:55 t 1 1 123050 562 0.00 2019-10-16 07:03:50 2019-10-16 07:04:06 t 1 1 123053 522 0.00 2019-10-16 07:04:38 2019-10-16 07:04:40 t 1 1 123055 522 0.00 2019-10-16 07:05:11 2019-10-16 07:05:13 t 1 1 123058 522 0.00 2019-10-16 07:05:32 2019-10-16 07:05:38 t 1 1 123062 522 0.00 2019-10-16 07:06:21 2019-10-16 07:06:29 t 1 1 123070 522 0.00 2019-10-16 07:08:24 2019-10-16 07:08:30 t 1 1 123072 522 0.00 2019-10-16 07:08:56 2019-10-16 07:09:13 t 1 1 123074 522 0.00 2019-10-16 07:09:24 2019-10-16 07:09:30 t 1 1 123077 522 0.00 2019-10-16 07:10:20 2019-10-16 07:10:25 t 1 1 123080 522 0.00 2019-10-16 07:10:52 2019-10-16 07:10:54 t 1 1 123084 522 0.00 2019-10-16 07:11:24 2019-10-16 07:11:26 t 1 1 123089 522 0.00 2019-10-16 07:12:29 2019-10-16 07:12:31 t 1 1 123091 445 0.00 2019-10-16 06:38:47 2019-10-16 07:12:46 t 1 1 123095 522 0.00 2019-10-16 07:13:16 2019-10-16 07:13:21 t 1 1 123097 522 0.00 2019-10-16 07:13:39 2019-10-16 07:13:41 t 1 1 123101 522 0.00 2019-10-16 07:14:08 2019-10-16 07:14:10 t 1 1 123107 522 0.00 2019-10-16 07:14:59 2019-10-16 07:15:01 t 1 1 123111 445 0.00 2019-10-16 07:14:20 2019-10-16 07:15:43 t 1 1 123115 522 0.00 2019-10-16 07:16:34 2019-10-16 07:16:36 t 1 1 123120 522 0.00 2019-10-16 07:17:32 2019-10-16 07:17:33 t 1 1 123124 522 0.00 2019-10-16 07:18:24 2019-10-16 07:18:25 t 1 1 123128 522 0.00 2019-10-16 07:19:03 2019-10-16 07:19:05 t 1 1 123131 522 0.00 2019-10-16 07:19:44 2019-10-16 07:19:50 t 1 1 123133 522 0.00 2019-10-16 07:20:09 2019-10-16 07:20:15 t 1 1 123135 522 0.00 2019-10-16 07:20:28 2019-10-16 07:20:29 t 1 1 123142 522 0.00 2019-10-16 07:26:20 2019-10-16 07:26:22 t 1 1 123144 522 0.00 2019-10-16 07:26:51 2019-10-16 07:26:59 t 1 1 123147 522 0.00 2019-10-16 07:27:25 2019-10-16 07:27:32 t 1 1 123149 522 0.00 2019-10-16 07:27:44 2019-10-16 07:27:46 t 1 1 123153 522 0.00 2019-10-16 07:29:07 2019-10-16 07:29:09 t 1 1 123154 445 0.00 2019-10-16 07:16:50 2019-10-16 07:29:24 t 1 1 123158 562 0.00 2019-10-16 07:29:49 2019-10-16 07:30:11 t 1 1 123161 522 0.00 2019-10-16 07:30:49 2019-10-16 07:30:50 t 1 1 123162 522 0.00 2019-10-16 07:30:55 2019-10-16 07:31:02 t 1 1 123165 522 0.00 2019-10-16 07:31:44 2019-10-16 07:31:51 t 1 1 123166 522 0.00 2019-10-16 07:32:04 2019-10-16 07:32:05 t 1 1 123170 522 0.00 2019-10-16 07:33:43 2019-10-16 07:33:45 t 1 1 123171 522 0.00 2019-10-16 07:33:58 2019-10-16 07:34:09 t 1 1 123174 522 0.00 2019-10-16 07:34:46 2019-10-16 07:34:52 t 1 1 123176 522 0.00 2019-10-16 07:35:16 2019-10-16 07:35:17 t 1 1 123180 522 0.00 2019-10-16 07:36:05 2019-10-16 07:36:11 t 1 1 123182 522 0.00 2019-10-16 07:36:58 2019-10-16 07:37:04 t 1 1 123190 522 0.00 2019-10-16 07:38:28 2019-10-16 07:38:30 t 1 1 123194 522 0.00 2019-10-16 07:39:42 2019-10-16 07:39:43 t 1 1 123196 522 0.00 2019-10-16 07:39:56 2019-10-16 07:39:57 t 1 1 123199 522 0.00 2019-10-16 07:40:27 2019-10-16 07:40:29 t 1 1 123201 416 0.00 2019-10-16 07:29:17 2019-10-16 07:40:52 t 1 1 123203 522 0.00 2019-10-16 07:41:07 2019-10-16 07:41:14 t 1 1 123206 522 0.00 2019-10-16 07:41:52 2019-10-16 07:41:54 t 1 1 123208 522 0.00 2019-10-16 07:42:16 2019-10-16 07:42:22 t 1 1 123216 522 0.00 2019-10-16 07:44:04 2019-10-16 07:44:06 t 1 1 123218 522 0.00 2019-10-16 07:44:54 2019-10-16 07:45:01 t 1 1 123219 522 0.00 2019-10-16 07:45:13 2019-10-16 07:46:01 t 1 1 123220 522 0.00 2019-10-16 07:46:12 2019-10-16 07:46:18 t 1 1 123222 522 0.00 2019-10-16 07:46:31 2019-10-16 07:46:32 t 1 1 123227 522 0.00 2019-10-16 07:47:41 2019-10-16 07:47:42 t 1 1 123229 522 0.00 2019-10-16 07:48:07 2019-10-16 07:48:08 t 1 1 123233 522 0.00 2019-10-16 07:49:11 2019-10-16 07:49:12 t 1 1 123243 556 0.00 2019-10-16 02:09:06 2019-10-16 07:51:28 t 1 1 123245 412 0.00 2019-10-15 23:27:42 2019-10-16 07:51:39 t 1 1 123246 522 0.00 2019-10-16 07:51:43 2019-10-16 07:51:44 t 1 1 123247 522 0.00 2019-10-16 07:51:50 2019-10-16 07:51:57 t 1 1 123249 522 0.00 2019-10-16 07:52:02 2019-10-16 07:52:09 t 1 1 123250 522 0.00 2019-10-16 07:52:14 2019-10-16 07:52:21 t 1 1 123252 522 0.00 2019-10-16 07:52:41 2019-10-16 07:52:49 t 1 1 123253 522 0.00 2019-10-16 07:53:01 2019-10-16 07:53:03 t 1 1 123257 522 0.00 2019-10-16 07:53:41 2019-10-16 07:53:43 t 1 1 123260 522 0.00 2019-10-16 07:54:30 2019-10-16 07:54:31 t 1 1 123263 522 0.00 2019-10-16 07:56:00 2019-10-16 07:58:16 t 1 1 123265 545 0.00 2019-10-16 07:53:13 2019-10-16 07:58:38 t 1 1 123266 522 0.00 2019-10-16 07:58:42 2019-10-16 07:58:46 t 1 1 123269 556 0.00 2019-10-16 07:51:28 2019-10-16 07:59:13 t 1 1 123270 522 0.00 2019-10-16 07:59:15 2019-10-16 07:59:17 t 1 1 123272 522 0.00 2019-10-16 07:59:58 2019-10-16 07:59:59 t 1 1 123275 430 0.00 2019-10-16 07:58:39 2019-10-16 08:01:53 t 1 1 123279 558 0.00 2019-10-16 08:03:44 2019-10-16 08:05:45 t 1 1 123286 522 0.00 2019-10-16 08:18:14 2019-10-16 08:18:16 t 1 1 123088 522 0.00 2019-10-16 07:12:10 2019-10-16 07:12:17 t 1 1 123094 522 0.00 2019-10-16 07:13:08 2019-10-16 07:13:10 t 1 1 123096 306 0.00 2019-10-16 07:09:52 2019-10-16 07:13:38 t 1 1 123099 522 0.00 2019-10-16 07:13:53 2019-10-16 07:13:55 t 1 1 123100 522 0.00 2019-10-16 07:14:00 2019-10-16 07:14:02 t 1 1 123102 520 0.00 2019-10-16 07:11:49 2019-10-16 07:14:10 t 1 1 123103 522 0.00 2019-10-16 07:14:15 2019-10-16 07:14:21 t 1 1 123104 522 0.00 2019-10-16 07:14:26 2019-10-16 07:14:40 t 1 1 123106 522 0.00 2019-10-16 07:14:53 2019-10-16 07:14:54 t 1 1 123109 562 0.00 2019-10-16 07:14:58 2019-10-16 07:15:34 t 1 1 123114 522 0.00 2019-10-16 07:16:27 2019-10-16 07:16:29 t 1 1 123119 522 0.00 2019-10-16 07:17:14 2019-10-16 07:17:19 t 1 1 123123 522 0.00 2019-10-16 07:18:04 2019-10-16 07:18:11 t 1 1 123126 522 0.00 2019-10-16 07:18:49 2019-10-16 07:18:50 t 1 1 123127 522 0.00 2019-10-16 07:18:56 2019-10-16 07:18:58 t 1 1 123130 522 0.00 2019-10-16 07:19:37 2019-10-16 07:19:39 t 1 1 123132 522 0.00 2019-10-16 07:20:02 2019-10-16 07:20:04 t 1 1 123134 220 0.00 2019-10-16 07:11:11 2019-10-16 07:20:17 t 1 1 123137 522 0.00 2019-10-16 07:20:42 2019-10-16 07:20:44 t 1 1 123138 562 0.00 2019-10-16 07:23:28 2019-10-16 07:23:49 t 1 1 123141 522 0.00 2019-10-16 07:26:13 2019-10-16 07:26:14 t 1 1 123146 522 0.00 2019-10-16 07:27:18 2019-10-16 07:27:20 t 1 1 123148 562 0.00 2019-10-16 07:26:54 2019-10-16 07:27:38 t 1 1 123152 522 0.00 2019-10-16 07:28:33 2019-10-16 07:28:43 t 1 1 123155 522 0.00 2019-10-16 07:29:21 2019-10-16 07:29:27 t 1 1 123156 522 0.00 2019-10-16 07:29:40 2019-10-16 07:29:52 t 1 1 123160 522 0.00 2019-10-16 07:30:28 2019-10-16 07:30:36 t 1 1 123164 522 0.00 2019-10-16 07:31:37 2019-10-16 07:31:38 t 1 1 123169 522 0.00 2019-10-16 07:33:36 2019-10-16 07:33:38 t 1 1 123173 522 0.00 2019-10-16 07:34:39 2019-10-16 07:34:41 t 1 1 123175 522 0.00 2019-10-16 07:34:57 2019-10-16 07:35:03 t 1 1 123178 522 0.00 2019-10-16 07:35:41 2019-10-16 07:35:42 t 1 1 123184 522 0.00 2019-10-16 07:37:24 2019-10-16 07:37:26 t 1 1 123186 522 0.00 2019-10-16 07:37:38 2019-10-16 07:37:51 t 1 1 123189 522 0.00 2019-10-16 07:38:22 2019-10-16 07:38:23 t 1 1 123193 522 0.00 2019-10-16 07:39:12 2019-10-16 07:39:29 t 1 1 123198 522 0.00 2019-10-16 07:40:21 2019-10-16 07:40:22 t 1 1 123202 522 0.00 2019-10-16 07:41:00 2019-10-16 07:41:02 t 1 1 123205 522 0.00 2019-10-16 07:41:33 2019-10-16 07:41:39 t 1 1 123210 522 0.00 2019-10-16 07:42:41 2019-10-16 07:42:43 t 1 1 123211 562 0.00 2019-10-16 07:42:06 2019-10-16 07:43:16 t 1 1 123214 522 0.00 2019-10-16 07:43:38 2019-10-16 07:43:45 t 1 1 123215 522 0.00 2019-10-16 07:43:58 2019-10-16 07:43:59 t 1 1 123225 522 0.00 2019-10-16 07:47:09 2019-10-16 07:47:11 t 1 1 123226 522 0.00 2019-10-16 07:47:16 2019-10-16 07:47:23 t 1 1 123231 522 0.00 2019-10-16 07:48:28 2019-10-16 07:48:41 t 1 1 123232 522 0.00 2019-10-16 07:48:52 2019-10-16 07:48:58 t 1 1 123235 522 0.00 2019-10-16 07:49:37 2019-10-16 07:49:38 t 1 1 123239 522 0.00 2019-10-16 07:50:36 2019-10-16 07:50:48 t 1 1 123240 522 0.00 2019-10-16 07:50:58 2019-10-16 07:51:05 t 1 1 123242 522 0.00 2019-10-16 07:51:18 2019-10-16 07:51:19 t 1 1 123251 430 0.00 2019-10-16 07:49:54 2019-10-16 07:52:30 t 1 1 123255 562 0.00 2019-10-16 07:49:45 2019-10-16 07:53:22 t 1 1 123256 522 0.00 2019-10-16 07:53:34 2019-10-16 07:53:36 t 1 1 123258 306 0.00 2019-10-16 07:47:55 2019-10-16 07:53:53 t 1 1 123259 522 0.00 2019-10-16 07:54:00 2019-10-16 07:54:17 t 1 1 123261 522 0.00 2019-10-16 07:54:36 2019-10-16 07:55:29 t 1 1 123274 522 0.00 2019-10-16 08:00:15 2019-10-16 08:00:16 t 1 1 123277 430 0.00 2019-10-16 08:02:02 2019-10-16 08:04:03 t 1 1 123280 485 0.00 2019-10-16 08:01:54 2019-10-16 08:07:01 t 1 1 123281 568 0.00 2019-10-16 07:57:33 2019-10-16 08:08:50 t 1 1 123282 558 0.00 2019-10-16 08:06:24 2019-10-16 08:15:39 t 1 1 123284 522 0.00 2019-10-16 08:17:49 2019-10-16 08:17:50 t 1 1 123285 522 0.00 2019-10-16 08:18:08 2019-10-16 08:18:09 t 1 1 123293 522 0.00 2019-10-16 08:20:24 2019-10-16 08:20:30 t 1 1 123298 522 0.00 2019-10-16 08:21:33 2019-10-16 08:21:35 t 1 1 123302 522 0.00 2019-10-16 08:22:47 2019-10-16 08:22:54 t 1 1 123303 522 0.00 2019-10-16 08:23:11 2019-10-16 08:23:17 t 1 1 123309 522 0.00 2019-10-16 08:24:50 2019-10-16 08:24:51 t 1 1 123311 522 0.00 2019-10-16 08:25:28 2019-10-16 08:25:30 t 1 1 123314 481 0.00 2019-10-16 08:08:37 2019-10-16 08:26:05 t 1 1 123317 522 0.00 2019-10-16 08:26:31 2019-10-16 08:26:36 t 1 1 123321 522 0.00 2019-10-16 08:31:23 2019-10-16 08:31:29 t 1 1 123328 522 0.00 2019-10-16 08:32:26 2019-10-16 08:40:03 t 1 1 123330 562 0.00 2019-10-16 08:36:26 2019-10-16 08:40:25 t 1 1 123333 325 0.00 2019-10-16 08:14:23 2019-10-16 08:41:02 t 1 2 123334 522 0.00 2019-10-16 08:41:14 2019-10-16 08:41:16 t 1 1 123335 522 0.00 2019-10-16 08:41:21 2019-10-16 08:41:23 t 1 1 123336 522 0.00 2019-10-16 08:41:40 2019-10-16 08:41:57 t 1 1 123339 522 0.00 2019-10-16 08:42:41 2019-10-16 08:42:47 t 1 1 123340 522 0.00 2019-10-16 08:43:07 2019-10-16 08:43:14 t 1 1 123344 522 0.00 2019-10-16 08:44:18 2019-10-16 08:44:25 t 1 1 123346 522 0.00 2019-10-16 08:44:38 2019-10-16 08:44:39 t 1 1 123352 522 0.00 2019-10-16 08:45:42 2019-10-16 08:45:44 t 1 1 123354 522 0.00 2019-10-16 08:45:49 2019-10-16 08:45:56 t 1 1 123356 522 0.00 2019-10-16 08:46:36 2019-10-16 08:46:37 t 1 1 123360 522 0.00 2019-10-16 08:47:34 2019-10-16 08:47:40 t 1 1 123364 522 0.00 2019-10-16 08:48:24 2019-10-16 08:48:26 t 1 1 123367 522 0.00 2019-10-16 08:49:20 2019-10-16 08:49:24 t 1 1 123369 522 0.00 2019-10-16 08:50:01 2019-10-16 08:50:02 t 1 1 123373 522 0.00 2019-10-16 08:50:50 2019-10-16 08:50:56 t 1 1 123376 522 0.00 2019-10-16 08:51:35 2019-10-16 08:51:37 t 1 1 123377 430 0.00 2019-10-16 08:43:34 2019-10-16 08:51:52 t 1 1 123378 522 0.00 2019-10-16 08:52:07 2019-10-16 08:52:13 t 1 1 123386 522 0.00 2019-10-16 08:54:23 2019-10-16 08:54:35 t 1 1 123388 522 0.00 2019-10-16 08:54:46 2019-10-16 08:54:52 t 1 1 123389 522 0.00 2019-10-16 08:55:10 2019-10-16 08:55:12 t 1 1 123391 568 0.00 2019-10-16 08:37:52 2019-10-16 08:55:18 t 1 1 123393 522 0.00 2019-10-16 08:55:25 2019-10-16 08:55:27 t 1 1 123398 522 0.00 2019-10-16 08:56:10 2019-10-16 08:56:12 t 1 1 123401 481 0.00 2019-10-16 08:26:05 2019-10-16 08:56:42 t 1 1 123405 522 0.00 2019-10-16 08:57:26 2019-10-16 08:57:33 t 1 1 123407 522 0.00 2019-10-16 08:57:58 2019-10-16 08:58:00 t 1 1 123409 522 0.00 2019-10-16 08:58:12 2019-10-16 08:58:30 t 1 1 123411 522 0.00 2019-10-16 08:58:48 2019-10-16 08:58:54 t 1 1 123415 522 0.00 2019-10-16 08:59:33 2019-10-16 08:59:34 t 1 1 123416 522 0.00 2019-10-16 08:59:39 2019-10-16 08:59:45 t 1 1 123188 522 0.00 2019-10-16 07:38:02 2019-10-16 07:38:09 t 1 1 123191 522 0.00 2019-10-16 07:38:54 2019-10-16 07:38:56 t 1 1 123192 522 0.00 2019-10-16 07:39:01 2019-10-16 07:39:07 t 1 1 123195 522 0.00 2019-10-16 07:39:48 2019-10-16 07:39:50 t 1 1 123197 522 0.00 2019-10-16 07:40:03 2019-10-16 07:40:08 t 1 1 123200 522 0.00 2019-10-16 07:40:34 2019-10-16 07:40:36 t 1 1 123204 522 0.00 2019-10-16 07:41:27 2019-10-16 07:41:28 t 1 1 123207 522 0.00 2019-10-16 07:41:59 2019-10-16 07:42:16 t 1 1 123209 522 0.00 2019-10-16 07:42:35 2019-10-16 07:42:36 t 1 1 123212 522 0.00 2019-10-16 07:43:13 2019-10-16 07:43:19 t 1 1 123213 522 0.00 2019-10-16 07:43:31 2019-10-16 07:43:33 t 1 1 123217 522 0.00 2019-10-16 07:44:26 2019-10-16 07:44:33 t 1 1 123221 562 0.00 2019-10-16 07:46:12 2019-10-16 07:46:32 t 1 1 123223 522 0.00 2019-10-16 07:46:38 2019-10-16 07:46:44 t 1 1 123224 522 0.00 2019-10-16 07:47:02 2019-10-16 07:47:04 t 1 1 123228 522 0.00 2019-10-16 07:47:47 2019-10-16 07:47:54 t 1 1 123230 522 0.00 2019-10-16 07:48:13 2019-10-16 07:48:15 t 1 1 123234 522 0.00 2019-10-16 07:49:17 2019-10-16 07:49:24 t 1 1 123236 562 0.00 2019-10-16 07:47:16 2019-10-16 07:49:39 t 1 1 123237 522 0.00 2019-10-16 07:49:44 2019-10-16 07:49:45 t 1 1 123238 522 0.00 2019-10-16 07:50:02 2019-10-16 07:50:19 t 1 1 123241 516 0.00 2019-10-16 07:43:31 2019-10-16 07:51:14 t 1 1 123244 522 0.00 2019-10-16 07:51:24 2019-10-16 07:51:30 t 1 1 123248 445 0.00 2019-10-16 07:29:06 2019-10-16 07:52:07 t 1 1 123254 522 0.00 2019-10-16 07:53:08 2019-10-16 07:53:10 t 1 1 123262 522 0.00 2019-10-16 07:55:34 2019-10-16 07:56:34 t 1 1 123264 522 0.00 2019-10-16 07:58:35 2019-10-16 07:58:36 t 1 1 123267 522 0.00 2019-10-16 07:58:51 2019-10-16 07:58:56 t 1 1 123268 522 0.00 2019-10-16 07:59:09 2019-10-16 07:59:10 t 1 1 123271 522 0.00 2019-10-16 07:59:39 2019-10-16 07:59:45 t 1 1 123273 522 0.00 2019-10-16 08:00:05 2019-10-16 08:00:10 t 1 1 123276 558 0.00 2019-10-16 08:02:38 2019-10-16 08:03:45 t 1 1 123278 456 0.00 2019-10-16 08:02:14 2019-10-16 08:05:22 t 1 1 123283 522 0.00 2019-10-16 08:04:18 2019-10-16 08:17:33 t 1 1 123288 562 0.00 2019-10-16 07:53:28 2019-10-16 08:19:20 t 1 1 123290 522 0.00 2019-10-16 08:19:45 2019-10-16 08:19:52 t 1 1 123292 522 0.00 2019-10-16 08:20:17 2019-10-16 08:20:18 t 1 1 123295 522 0.00 2019-10-16 08:20:49 2019-10-16 08:20:55 t 1 1 123296 522 0.00 2019-10-16 08:21:08 2019-10-16 08:21:09 t 1 1 123297 522 0.00 2019-10-16 08:21:15 2019-10-16 08:21:20 t 1 1 123301 522 0.00 2019-10-16 08:22:24 2019-10-16 08:22:36 t 1 1 123305 522 0.00 2019-10-16 08:23:37 2019-10-16 08:23:42 t 1 1 123308 522 0.00 2019-10-16 08:24:31 2019-10-16 08:24:37 t 1 1 123310 522 0.00 2019-10-16 08:24:56 2019-10-16 08:24:58 t 1 1 123313 562 0.00 2019-10-16 08:21:20 2019-10-16 08:25:59 t 1 1 123316 522 0.00 2019-10-16 08:26:25 2019-10-16 08:26:26 t 1 1 123318 562 0.00 2019-10-16 08:29:21 2019-10-16 08:29:38 t 1 1 123319 522 0.00 2019-10-16 08:26:41 2019-10-16 08:30:36 t 1 1 123320 522 0.00 2019-10-16 08:30:56 2019-10-16 08:31:02 t 1 1 123323 522 0.00 2019-10-16 08:31:48 2019-10-16 08:31:50 t 1 1 123324 522 0.00 2019-10-16 08:32:03 2019-10-16 08:32:19 t 1 1 123325 430 0.00 2019-10-16 08:27:42 2019-10-16 08:36:39 t 1 1 123332 522 0.00 2019-10-16 08:40:41 2019-10-16 08:40:43 t 1 1 123338 522 0.00 2019-10-16 08:42:16 2019-10-16 08:42:23 t 1 1 123341 430 0.00 2019-10-16 08:37:52 2019-10-16 08:43:28 t 1 1 123342 522 0.00 2019-10-16 08:43:32 2019-10-16 08:43:38 t 1 1 123343 522 0.00 2019-10-16 08:43:43 2019-10-16 08:44:00 t 1 1 123345 562 0.00 2019-10-16 08:41:05 2019-10-16 08:44:37 t 1 1 123348 445 0.00 2019-10-16 07:52:15 2019-10-16 08:44:55 t 1 1 123349 522 0.00 2019-10-16 08:44:52 2019-10-16 08:44:58 t 1 1 123351 522 0.00 2019-10-16 08:45:35 2019-10-16 08:45:37 t 1 1 123355 522 0.00 2019-10-16 08:46:16 2019-10-16 08:46:23 t 1 1 123358 522 0.00 2019-10-16 08:46:49 2019-10-16 08:46:51 t 1 1 123359 522 0.00 2019-10-16 08:47:15 2019-10-16 08:47:23 t 1 1 123363 522 0.00 2019-10-16 08:48:18 2019-10-16 08:48:19 t 1 1 123365 562 0.00 2019-10-16 08:45:20 2019-10-16 08:48:50 t 1 1 123366 522 0.00 2019-10-16 08:48:56 2019-10-16 08:49:01 t 1 1 123375 522 0.00 2019-10-16 08:51:01 2019-10-16 08:51:17 t 1 1 123380 522 0.00 2019-10-16 08:52:50 2019-10-16 08:52:56 t 1 1 123381 522 0.00 2019-10-16 08:53:01 2019-10-16 08:53:23 t 1 1 123383 522 0.00 2019-10-16 08:53:36 2019-10-16 08:53:38 t 1 1 123384 522 0.00 2019-10-16 08:53:49 2019-10-16 08:53:55 t 1 1 123385 522 0.00 2019-10-16 08:54:08 2019-10-16 08:54:16 t 1 1 123387 430 0.00 2019-10-16 08:53:40 2019-10-16 08:54:44 t 1 1 123390 499 0.00 2019-10-16 03:21:13 2019-10-16 08:55:13 t 1 1 123392 522 0.00 2019-10-16 08:55:17 2019-10-16 08:55:19 t 1 1 123394 430 0.00 2019-10-16 08:54:57 2019-10-16 08:55:34 t 1 1 123397 522 0.00 2019-10-16 08:56:03 2019-10-16 08:56:05 t 1 1 123400 430 0.00 2019-10-16 08:56:25 2019-10-16 08:56:28 t 1 1 123402 522 0.00 2019-10-16 08:56:36 2019-10-16 08:56:43 t 1 1 123404 522 0.00 2019-10-16 08:57:06 2019-10-16 08:57:08 t 1 1 123410 522 0.00 2019-10-16 08:58:30 2019-10-16 08:58:35 t 1 1 123412 522 0.00 2019-10-16 08:59:01 2019-10-16 08:59:03 t 1 1 123414 522 0.00 2019-10-16 08:59:14 2019-10-16 08:59:20 t 1 1 123422 522 0.00 2019-10-16 09:01:35 2019-10-16 09:01:37 t 1 1 123424 522 0.00 2019-10-16 09:01:42 2019-10-16 09:01:48 t 1 1 123425 522 0.00 2019-10-16 09:02:01 2019-10-16 09:02:02 t 1 1 123433 522 0.00 2019-10-16 09:04:03 2019-10-16 09:04:09 t 1 1 123435 522 0.00 2019-10-16 09:04:27 2019-10-16 09:04:29 t 1 1 123445 416 0.00 2019-10-16 07:40:52 2019-10-16 09:07:48 t 1 1 123447 562 0.00 2019-10-16 09:08:02 2019-10-16 09:08:11 t 1 1 123450 430 0.00 2019-10-16 09:06:38 2019-10-16 09:08:23 t 1 1 123454 522 0.00 2019-10-16 09:09:34 2019-10-16 09:09:40 t 1 1 123456 522 0.00 2019-10-16 09:09:51 2019-10-16 09:09:57 t 1 1 123458 545 0.00 2019-10-16 09:08:23 2019-10-16 09:10:32 t 1 1 123460 522 0.00 2019-10-16 09:10:54 2019-10-16 09:10:56 t 1 1 123461 562 0.00 2019-10-16 09:08:19 2019-10-16 09:11:04 t 1 1 123463 522 0.00 2019-10-16 09:11:26 2019-10-16 09:11:28 t 1 1 123465 558 0.00 2019-10-16 08:16:15 2019-10-16 09:11:46 t 1 1 123467 562 0.00 2019-10-16 09:11:56 2019-10-16 09:12:25 t 1 1 123471 522 0.00 2019-10-16 09:12:43 2019-10-16 09:13:24 t 1 1 123474 445 0.00 2019-10-16 08:45:10 2019-10-16 09:18:18 t 1 1 123479 522 0.00 2019-10-16 09:21:10 2019-10-16 09:21:18 t 1 1 123481 375 0.00 2019-10-16 05:03:42 2019-10-16 09:22:32 t 1 1 123484 445 0.00 2019-10-16 09:25:03 2019-10-16 09:26:22 t 1 1 123485 562 0.00 2019-10-16 09:27:03 2019-10-16 09:29:25 t 1 1 123489 327 0.00 2019-10-16 09:31:22 2019-10-16 09:36:43 t 1 1 123287 522 0.00 2019-10-16 08:18:53 2019-10-16 08:19:05 t 1 1 123289 522 0.00 2019-10-16 08:19:16 2019-10-16 08:19:23 t 1 1 123291 522 0.00 2019-10-16 08:19:57 2019-10-16 08:20:04 t 1 1 123294 522 0.00 2019-10-16 08:20:43 2019-10-16 08:20:44 t 1 1 123299 522 0.00 2019-10-16 08:21:40 2019-10-16 08:21:45 t 1 1 123300 522 0.00 2019-10-16 08:21:58 2019-10-16 08:22:06 t 1 1 123304 522 0.00 2019-10-16 08:23:30 2019-10-16 08:23:31 t 1 1 123306 306 0.00 2019-10-16 08:11:04 2019-10-16 08:23:49 t 1 1 123307 522 0.00 2019-10-16 08:24:02 2019-10-16 08:24:09 t 1 1 123312 522 0.00 2019-10-16 08:25:42 2019-10-16 08:25:54 t 1 1 123315 522 0.00 2019-10-16 08:26:05 2019-10-16 08:26:12 t 1 1 123322 522 0.00 2019-10-16 08:31:42 2019-10-16 08:31:43 t 1 1 123326 430 0.00 2019-10-16 08:36:38 2019-10-16 08:36:48 t 1 1 123327 430 0.00 2019-10-16 08:37:15 2019-10-16 08:37:45 t 1 1 123329 522 0.00 2019-10-16 08:40:14 2019-10-16 08:40:22 t 1 1 123331 522 0.00 2019-10-16 08:40:34 2019-10-16 08:40:36 t 1 1 123337 522 0.00 2019-10-16 08:42:10 2019-10-16 08:42:11 t 1 1 123347 522 0.00 2019-10-16 08:44:44 2019-10-16 08:44:46 t 1 1 123350 522 0.00 2019-10-16 08:45:18 2019-10-16 08:45:30 t 1 1 123353 306 0.00 2019-10-16 08:41:20 2019-10-16 08:45:54 t 1 1 123357 522 0.00 2019-10-16 08:46:42 2019-10-16 08:46:44 t 1 1 123361 522 0.00 2019-10-16 08:47:53 2019-10-16 08:47:54 t 1 1 123362 522 0.00 2019-10-16 08:47:59 2019-10-16 08:48:05 t 1 1 123368 522 0.00 2019-10-16 08:49:42 2019-10-16 08:49:48 t 1 1 123370 522 0.00 2019-10-16 08:50:07 2019-10-16 08:50:09 t 1 1 123371 522 0.00 2019-10-16 08:50:27 2019-10-16 08:50:39 t 1 1 123372 522 0.00 2019-10-16 08:50:15 2019-10-16 08:50:50 t 1 1 123374 562 0.00 2019-10-16 08:50:46 2019-10-16 08:50:59 t 1 1 123379 522 0.00 2019-10-16 08:52:25 2019-10-16 08:52:38 t 1 1 123382 430 0.00 2019-10-16 08:51:51 2019-10-16 08:53:32 t 1 1 123395 562 0.00 2019-10-16 08:51:41 2019-10-16 08:55:45 t 1 1 123396 522 0.00 2019-10-16 08:55:56 2019-10-16 08:55:58 t 1 1 123399 522 0.00 2019-10-16 08:56:17 2019-10-16 08:56:23 t 1 1 123403 522 0.00 2019-10-16 08:56:55 2019-10-16 08:57:01 t 1 1 123406 522 0.00 2019-10-16 08:57:51 2019-10-16 08:57:53 t 1 1 123408 522 0.00 2019-10-16 08:58:05 2019-10-16 08:58:07 t 1 1 123413 430 0.00 2019-10-16 08:57:54 2019-10-16 08:59:08 t 1 1 123420 522 0.00 2019-10-16 09:01:20 2019-10-16 09:01:23 t 1 1 123421 522 0.00 2019-10-16 09:01:28 2019-10-16 09:01:30 t 1 1 123427 522 0.00 2019-10-16 09:02:20 2019-10-16 09:02:39 t 1 1 123428 538 0.00 2019-10-16 09:00:49 2019-10-16 09:03:05 t 1 1 123431 522 0.00 2019-10-16 09:03:27 2019-10-16 09:03:35 t 1 1 123432 522 0.00 2019-10-16 09:03:56 2019-10-16 09:03:58 t 1 1 123434 554 0.00 2019-10-16 09:03:10 2019-10-16 09:04:18 t 1 1 123437 522 0.00 2019-10-16 09:04:41 2019-10-16 09:04:48 t 1 1 123439 430 0.00 2019-10-16 08:59:38 2019-10-16 09:05:33 t 1 1 123444 522 0.00 2019-10-16 09:07:22 2019-10-16 09:07:30 t 1 1 123448 522 0.00 2019-10-16 09:08:07 2019-10-16 09:08:14 t 1 1 123449 545 0.00 2019-10-16 08:58:14 2019-10-16 09:08:23 t 1 1 123453 522 0.00 2019-10-16 09:09:15 2019-10-16 09:09:21 t 1 1 123457 522 0.00 2019-10-16 09:10:18 2019-10-16 09:10:23 t 1 1 123459 522 0.00 2019-10-16 09:10:28 2019-10-16 09:10:35 t 1 1 123462 522 0.00 2019-10-16 09:11:01 2019-10-16 09:11:08 t 1 1 123466 522 0.00 2019-10-16 09:11:57 2019-10-16 09:12:03 t 1 1 123477 445 0.00 2019-10-16 09:19:26 2019-10-16 09:20:34 t 1 1 123478 562 0.00 2019-10-16 09:20:40 2019-10-16 09:21:06 t 1 1 123483 562 0.00 2019-10-16 09:23:38 2019-10-16 09:25:19 t 1 1 123486 306 0.00 2019-10-16 09:25:12 2019-10-16 09:31:33 t 1 1 123487 562 0.00 2019-10-16 09:29:32 2019-10-16 09:32:33 t 1 1 123494 306 0.00 2019-10-16 09:40:25 2019-10-16 09:41:37 t 1 1 123497 375 0.00 2019-10-16 09:23:18 2019-10-16 09:46:54 t 1 1 123498 445 0.00 2019-10-16 09:40:27 2019-10-16 09:48:20 t 1 1 123499 430 0.00 2019-10-16 09:48:30 2019-10-16 09:48:54 t 1 1 123501 481 0.00 2019-10-16 09:45:02 2019-10-16 09:50:21 t 1 1 123505 522 0.00 2019-10-16 09:52:29 2019-10-16 09:52:47 t 1 1 123506 522 0.00 2019-10-16 09:53:17 2019-10-16 09:53:17 f 1 1 123507 522 0.00 2019-10-16 09:53:29 2019-10-16 09:53:29 f 1 1 123510 416 0.00 2019-10-16 09:13:33 2019-10-16 09:54:06 t 1 1 123513 522 0.00 2019-10-16 09:52:52 2019-10-16 09:54:31 t 1 1 123514 501 0.00 2019-10-16 09:42:07 2019-10-16 09:55:36 t 1 1 123515 501 0.00 2019-10-16 09:56:45 2019-10-16 09:58:14 t 1 1 123516 501 0.00 2019-10-16 09:58:20 2019-10-16 09:59:11 t 1 1 123518 501 0.00 2019-10-16 10:00:42 2019-10-16 10:00:43 t 1 1 123520 562 0.00 2019-10-16 10:01:37 2019-10-16 10:02:12 t 1 1 123521 501 0.00 2019-10-16 10:02:42 2019-10-16 10:02:51 t 1 1 123524 501 0.00 2019-10-16 10:03:42 2019-10-16 10:04:55 t 1 1 123525 568 0.00 2019-10-16 10:02:28 2019-10-16 10:05:28 t 1 1 123526 501 0.00 2019-10-16 10:05:57 2019-10-16 10:06:31 t 1 1 123528 501 0.00 2019-10-16 10:06:57 2019-10-16 10:08:40 t 1 1 123529 445 0.00 2019-10-16 10:03:15 2019-10-16 10:09:30 t 1 1 123532 562 0.00 2019-10-16 10:12:21 2019-10-16 10:12:50 t 1 1 123534 416 0.00 2019-10-16 10:08:02 2019-10-16 10:13:13 t 1 1 123540 562 0.00 2019-10-16 10:23:08 2019-10-16 10:23:17 t 1 1 123547 445 0.00 2019-10-16 10:25:04 2019-10-16 10:27:09 t 1 1 123551 501 0.00 2019-10-16 10:28:37 2019-10-16 10:28:45 t 1 1 123554 501 0.00 2019-10-16 10:31:16 2019-10-16 10:31:38 t 1 1 123557 562 0.00 2019-10-16 10:32:48 2019-10-16 10:33:35 t 1 1 123562 545 0.00 2019-10-16 10:37:45 2019-10-16 10:43:21 t 1 1 123568 306 0.00 2019-10-16 10:44:21 2019-10-16 10:49:29 t 1 1 123569 562 0.00 2019-10-16 10:45:35 2019-10-16 10:50:04 t 1 1 123574 501 0.00 2019-10-16 10:52:27 2019-10-16 10:52:56 t 1 1 123578 422 0.00 2019-10-16 02:41:27 2019-10-16 10:55:07 t 1 1 123583 562 0.00 2019-10-16 10:50:28 2019-10-16 11:03:45 t 1 1 123586 445 0.00 2019-10-16 11:04:02 2019-10-16 11:05:10 t 1 1 123588 306 0.00 2019-10-16 10:58:16 2019-10-16 11:06:21 t 1 1 123591 562 0.00 2019-10-16 11:08:27 2019-10-16 11:08:52 t 1 1 123593 522 0.00 2019-10-16 11:08:52 2019-10-16 11:09:10 t 1 1 123596 562 0.00 2019-10-16 11:09:40 2019-10-16 11:10:37 t 1 1 123597 562 0.00 2019-10-16 11:11:21 2019-10-16 11:11:30 t 1 1 123598 327 0.00 2019-10-16 10:55:39 2019-10-16 11:12:17 t 1 1 123603 220 0.00 2019-10-16 11:11:46 2019-10-16 11:15:58 t 1 2 123612 522 0.00 2019-10-16 11:21:48 2019-10-16 11:21:57 t 1 1 123614 220 0.00 2019-10-16 10:03:50 2019-10-16 11:25:30 t 1 1 123616 522 0.00 2019-10-16 11:24:32 2019-10-16 11:26:37 t 1 1 123617 522 0.00 2019-10-16 11:25:44 2019-10-16 11:28:04 t 1 1 123618 514 0.00 2019-10-16 11:18:55 2019-10-16 11:29:27 t 1 1 123620 422 0.00 2019-10-16 10:55:07 2019-10-16 11:29:48 t 1 1 123417 562 0.00 2019-10-16 08:59:01 2019-10-16 09:00:05 t 1 1 123418 522 0.00 2019-10-16 09:00:46 2019-10-16 09:00:53 t 1 1 123419 522 0.00 2019-10-16 09:01:13 2019-10-16 09:01:15 t 1 1 123423 562 0.00 2019-10-16 09:01:25 2019-10-16 09:01:44 t 1 1 123426 522 0.00 2019-10-16 09:02:07 2019-10-16 09:02:15 t 1 1 123429 522 0.00 2019-10-16 09:03:01 2019-10-16 09:03:08 t 1 1 123430 522 0.00 2019-10-16 09:03:20 2019-10-16 09:03:22 t 1 1 123436 522 0.00 2019-10-16 09:04:34 2019-10-16 09:04:36 t 1 1 123438 522 0.00 2019-10-16 09:05:06 2019-10-16 09:05:11 t 1 1 123440 522 0.00 2019-10-16 09:05:29 2019-10-16 09:05:35 t 1 1 123441 522 0.00 2019-10-16 09:05:53 2019-10-16 09:06:29 t 1 1 123442 522 0.00 2019-10-16 09:06:34 2019-10-16 09:06:40 t 1 1 123443 522 0.00 2019-10-16 09:06:58 2019-10-16 09:07:09 t 1 1 123446 522 0.00 2019-10-16 09:07:49 2019-10-16 09:07:56 t 1 1 123451 522 0.00 2019-10-16 09:08:32 2019-10-16 09:08:39 t 1 1 123452 522 0.00 2019-10-16 09:08:56 2019-10-16 09:09:04 t 1 1 123455 430 0.00 2019-10-16 09:08:23 2019-10-16 09:09:54 t 1 1 123464 522 0.00 2019-10-16 09:11:33 2019-10-16 09:11:38 t 1 1 123468 522 0.00 2019-10-16 09:12:33 2019-10-16 09:12:38 t 1 1 123469 416 0.00 2019-10-16 09:07:48 2019-10-16 09:12:54 t 1 1 123470 522 0.00 2019-10-16 09:12:21 2019-10-16 09:13:21 t 1 1 123472 558 0.00 2019-10-16 09:12:45 2019-10-16 09:13:41 t 1 1 123473 430 0.00 2019-10-16 09:12:59 2019-10-16 09:14:37 t 1 1 123475 522 0.00 2019-10-16 09:18:19 2019-10-16 09:18:19 t 1 1 123476 445 0.00 2019-10-16 09:18:17 2019-10-16 09:19:27 t 1 1 123480 306 0.00 2019-10-16 09:20:12 2019-10-16 09:21:57 t 1 1 123482 445 0.00 2019-10-16 09:20:33 2019-10-16 09:25:04 t 1 1 123488 562 0.00 2019-10-16 09:33:38 2019-10-16 09:34:00 t 1 1 123490 306 0.00 2019-10-16 09:31:32 2019-10-16 09:37:11 t 1 1 123492 562 0.00 2019-10-16 09:37:48 2019-10-16 09:40:08 t 1 1 123502 562 0.00 2019-10-16 09:51:26 2019-10-16 09:51:54 t 1 1 123503 522 0.00 2019-10-16 09:31:39 2019-10-16 09:52:30 t 1 1 123509 522 0.00 2019-10-16 09:53:53 2019-10-16 09:53:53 f 1 1 123511 562 0.00 2019-10-16 09:53:11 2019-10-16 09:54:10 t 1 1 123519 501 0.00 2019-10-16 10:01:42 2019-10-16 10:01:51 t 1 1 123523 416 0.00 2019-10-16 09:57:23 2019-10-16 10:04:05 t 1 1 123530 501 0.00 2019-10-16 10:09:49 2019-10-16 10:10:03 t 1 1 123531 501 0.00 2019-10-16 10:10:42 2019-10-16 10:10:50 t 1 1 123541 562 0.00 2019-10-16 10:23:56 2019-10-16 10:24:06 t 1 1 123543 501 0.00 2019-10-16 10:24:35 2019-10-16 10:24:43 t 1 1 123544 501 0.00 2019-10-16 10:25:36 2019-10-16 10:25:44 t 1 1 123546 416 0.00 2019-10-16 10:16:56 2019-10-16 10:26:55 t 1 1 123548 545 0.00 2019-10-16 10:08:41 2019-10-16 10:27:26 t 1 1 123549 501 0.00 2019-10-16 10:27:37 2019-10-16 10:27:45 t 1 1 123564 562 0.00 2019-10-16 10:42:21 2019-10-16 10:44:37 t 1 1 123565 416 0.00 2019-10-16 10:26:55 2019-10-16 10:46:39 t 1 1 123566 501 0.00 2019-10-16 10:46:14 2019-10-16 10:47:31 t 1 1 123567 512 0.00 2019-10-16 08:45:59 2019-10-16 10:48:46 t 1 1 123570 445 0.00 2019-10-16 10:32:58 2019-10-16 10:50:56 t 1 1 123575 501 0.00 2019-10-16 10:53:06 2019-10-16 10:53:44 t 1 1 123579 501 0.00 2019-10-16 10:55:21 2019-10-16 10:56:47 t 1 1 123589 501 0.00 2019-10-16 11:05:25 2019-10-16 11:06:25 t 1 1 123600 501 0.00 2019-10-16 11:09:11 2019-10-16 11:13:24 t 1 1 123602 568 0.00 2019-10-16 10:33:21 2019-10-16 11:14:00 t 1 1 123605 558 0.00 2019-10-16 09:38:54 2019-10-16 11:17:14 t 1 1 123606 514 0.00 2019-10-16 11:09:12 2019-10-16 11:18:55 t 1 1 123607 562 0.00 2019-10-16 11:12:28 2019-10-16 11:19:15 t 1 1 123608 558 0.00 2019-10-16 11:18:02 2019-10-16 11:20:06 t 1 1 123611 522 0.00 2019-10-16 11:21:37 2019-10-16 11:21:40 t 1 1 123613 562 0.00 2019-10-16 11:23:25 2019-10-16 11:23:39 t 1 1 123615 520 0.00 2019-10-16 11:04:20 2019-10-16 11:25:57 t 1 1 123621 522 0.00 2019-10-16 11:30:18 2019-10-16 11:30:22 t 1 1 123624 522 0.00 2019-10-16 11:30:47 2019-10-16 11:32:31 t 1 1 123630 522 0.00 2019-10-16 11:35:18 2019-10-16 11:35:18 f 1 1 123632 522 0.00 2019-10-16 11:34:59 2019-10-16 11:36:31 t 1 1 123637 501 0.00 2019-10-16 11:41:48 2019-10-16 11:42:22 t 1 1 123639 501 0.00 2019-10-16 11:41:01 2019-10-16 11:42:32 t 1 1 123642 501 0.00 2019-10-16 11:43:10 2019-10-16 11:43:11 t 1 1 123643 501 0.00 2019-10-16 11:43:17 2019-10-16 11:43:24 t 1 1 123647 501 0.00 2019-10-16 11:43:55 2019-10-16 11:44:03 t 1 1 123650 501 0.00 2019-10-16 11:44:50 2019-10-16 11:47:05 t 1 1 123651 564 0.00 2019-10-15 21:32:49 2019-10-16 11:47:59 t 1 1 123658 501 0.00 2019-10-16 11:49:39 2019-10-16 11:54:19 t 1 1 123664 375 0.00 2019-10-16 11:42:16 2019-10-16 11:56:31 t 1 1 123667 445 0.00 2019-10-16 11:38:37 2019-10-16 11:59:57 t 1 1 123671 562 0.00 2019-10-16 11:56:51 2019-10-16 12:03:18 t 1 1 123673 545 0.00 2019-10-16 11:57:39 2019-10-16 12:04:02 t 1 1 123674 501 0.00 2019-10-16 12:04:49 2019-10-16 12:05:23 t 1 1 123678 564 0.00 2019-10-16 11:56:13 2019-10-16 12:06:19 t 1 1 123679 375 0.00 2019-10-16 12:01:15 2019-10-16 12:08:04 t 1 1 123682 501 0.00 2019-10-16 12:09:53 2019-10-16 12:10:27 t 1 1 123684 375 0.00 2019-10-16 12:08:25 2019-10-16 12:11:11 t 1 1 123686 520 0.00 2019-10-16 11:57:09 2019-10-16 12:11:51 t 1 1 123687 501 0.00 2019-10-16 12:11:54 2019-10-16 12:12:03 t 1 1 123690 501 0.00 2019-10-16 12:12:55 2019-10-16 12:13:27 t 1 1 123696 306 0.00 2019-10-16 12:14:17 2019-10-16 12:14:56 t 1 1 123698 306 0.00 2019-10-16 12:14:56 2019-10-16 12:17:56 t 1 1 123699 501 0.00 2019-10-16 12:14:55 2019-10-16 12:19:49 t 1 1 123700 514 0.00 2019-10-16 11:44:42 2019-10-16 12:20:06 t 1 1 123710 501 0.00 2019-10-16 12:29:31 2019-10-16 12:30:59 t 1 1 123711 562 0.00 2019-10-16 12:28:20 2019-10-16 12:31:20 t 1 1 123715 416 0.00 2019-10-16 12:14:28 2019-10-16 12:33:12 t 1 1 123718 445 0.00 2019-10-16 12:00:15 2019-10-16 12:34:30 t 1 1 123720 501 0.00 2019-10-16 12:36:12 2019-10-16 12:39:11 t 1 1 123722 562 0.00 2019-10-16 12:31:20 2019-10-16 12:39:34 t 1 1 123723 512 0.00 2019-10-16 12:34:50 2019-10-16 12:40:09 t 1 1 123724 501 0.00 2019-10-16 12:40:10 2019-10-16 12:40:24 t 1 1 123726 306 0.00 2019-10-16 12:31:04 2019-10-16 12:41:07 t 1 1 123740 416 0.00 2019-10-16 12:34:03 2019-10-16 12:52:46 t 1 1 123742 375 0.00 2019-10-16 12:51:59 2019-10-16 12:52:57 t 1 1 123743 306 0.00 2019-10-16 12:49:40 2019-10-16 12:53:27 t 1 1 123746 501 0.00 2019-10-16 12:53:47 2019-10-16 12:54:20 t 1 1 123747 501 0.00 2019-10-16 12:54:53 2019-10-16 12:55:08 t 1 1 123748 501 0.00 2019-10-16 12:55:48 2019-10-16 12:56:21 t 1 1 123749 416 0.00 2019-10-16 12:53:08 2019-10-16 12:57:40 t 1 1 123752 501 0.00 2019-10-16 12:59:28 2019-10-16 12:59:37 t 1 1 123753 562 0.00 2019-10-16 12:58:10 2019-10-16 13:03:48 t 1 1 123491 558 0.00 2019-10-16 09:14:19 2019-10-16 09:37:42 t 1 1 123493 445 0.00 2019-10-16 09:27:28 2019-10-16 09:40:10 t 1 1 123495 501 0.00 2019-10-16 09:38:34 2019-10-16 09:42:07 t 1 1 123496 481 0.00 2019-10-16 08:56:48 2019-10-16 09:45:02 t 1 1 123500 445 0.00 2019-10-16 09:48:23 2019-10-16 09:49:29 t 1 1 123504 445 0.00 2019-10-16 09:49:47 2019-10-16 09:52:41 t 1 1 123508 522 0.00 2019-10-16 09:53:41 2019-10-16 09:53:41 f 1 1 123512 522 0.00 2019-10-16 09:53:05 2019-10-16 09:54:31 t 1 1 123517 501 0.00 2019-10-16 09:59:42 2019-10-16 09:59:54 t 1 1 123522 445 0.00 2019-10-16 09:53:27 2019-10-16 10:02:59 t 1 1 123527 416 0.00 2019-10-16 10:04:29 2019-10-16 10:08:37 t 1 1 123533 501 0.00 2019-10-16 10:11:42 2019-10-16 10:13:07 t 1 1 123535 562 0.00 2019-10-16 10:16:07 2019-10-16 10:16:40 t 1 1 123536 516 0.00 2019-10-16 10:13:16 2019-10-16 10:19:24 t 1 1 123537 562 0.00 2019-10-16 10:17:39 2019-10-16 10:20:26 t 1 1 123538 501 0.00 2019-10-16 10:14:10 2019-10-16 10:22:33 t 1 1 123539 445 0.00 2019-10-16 10:10:33 2019-10-16 10:23:17 t 1 1 123542 501 0.00 2019-10-16 10:23:36 2019-10-16 10:24:10 t 1 1 123545 501 0.00 2019-10-16 10:26:36 2019-10-16 10:26:45 t 1 1 123550 481 0.00 2019-10-16 09:50:21 2019-10-16 10:27:52 t 1 1 123552 562 0.00 2019-10-16 10:25:14 2019-10-16 10:30:20 t 1 1 123553 501 0.00 2019-10-16 10:29:44 2019-10-16 10:31:31 t 1 1 123555 498 0.00 2019-10-16 07:50:16 2019-10-16 10:32:14 t 1 2 123556 445 0.00 2019-10-16 10:26:44 2019-10-16 10:32:53 t 1 1 123558 562 0.00 2019-10-16 10:35:00 2019-10-16 10:35:31 t 1 1 123559 545 0.00 2019-10-16 10:27:26 2019-10-16 10:37:45 t 1 1 123560 499 0.00 2019-10-16 08:55:12 2019-10-16 10:41:57 t 1 1 123561 306 0.00 2019-10-16 10:38:12 2019-10-16 10:43:04 t 1 1 123563 501 0.00 2019-10-16 10:32:40 2019-10-16 10:44:10 t 1 1 123571 501 0.00 2019-10-16 10:50:13 2019-10-16 10:50:56 t 1 1 123572 501 0.00 2019-10-16 10:51:03 2019-10-16 10:51:13 t 1 1 123573 445 0.00 2019-10-16 10:50:54 2019-10-16 10:52:31 t 1 1 123576 501 0.00 2019-10-16 10:54:17 2019-10-16 10:54:48 t 1 1 123577 445 0.00 2019-10-16 10:53:05 2019-10-16 10:54:59 t 1 1 123580 501 0.00 2019-10-16 10:57:17 2019-10-16 10:57:51 t 1 1 123581 483 0.00 2019-10-16 10:58:18 2019-10-16 11:01:02 t 1 1 123582 445 0.00 2019-10-16 10:55:09 2019-10-16 11:03:09 t 1 1 123584 501 0.00 2019-10-16 10:58:07 2019-10-16 11:04:30 t 1 1 123585 562 0.00 2019-10-16 11:04:08 2019-10-16 11:04:58 t 1 1 123587 501 0.00 2019-10-16 11:05:34 2019-10-16 11:06:19 t 1 1 123590 522 0.00 2019-10-16 11:05:23 2019-10-16 11:07:24 t 1 1 123592 501 0.00 2019-10-16 11:06:28 2019-10-16 11:09:08 t 1 1 123594 514 0.00 2019-10-16 10:54:20 2019-10-16 11:09:12 t 1 1 123595 522 0.00 2019-10-16 11:09:51 2019-10-16 11:10:03 t 1 1 123599 522 0.00 2019-10-16 11:12:48 2019-10-16 11:12:58 t 1 1 123601 416 0.00 2019-10-16 10:56:15 2019-10-16 11:13:47 t 1 1 123604 306 0.00 2019-10-16 11:12:50 2019-10-16 11:16:48 t 1 1 123609 522 0.00 2019-10-16 11:13:07 2019-10-16 11:20:30 t 1 1 123610 220 0.00 2019-10-16 11:16:21 2019-10-16 11:21:15 t 1 2 123619 522 0.00 2019-10-16 11:28:15 2019-10-16 11:29:31 t 1 1 123622 562 0.00 2019-10-16 11:26:24 2019-10-16 11:30:25 t 1 1 123623 522 0.00 2019-10-16 11:30:59 2019-10-16 11:30:59 f 1 1 123625 522 0.00 2019-10-16 11:30:35 2019-10-16 11:32:31 t 1 1 123627 522 0.00 2019-10-16 11:34:07 2019-10-16 11:34:08 t 1 1 123629 522 0.00 2019-10-16 11:34:36 2019-10-16 11:34:47 t 1 1 123631 522 0.00 2019-10-16 11:34:21 2019-10-16 11:35:31 t 1 1 123634 512 0.00 2019-10-16 10:48:46 2019-10-16 11:38:59 t 1 1 123640 562 0.00 2019-10-16 11:33:37 2019-10-16 11:42:47 t 1 1 123641 501 0.00 2019-10-16 11:42:55 2019-10-16 11:43:03 t 1 1 123644 558 0.00 2019-10-16 11:21:07 2019-10-16 11:43:28 t 1 1 123645 306 0.00 2019-10-16 11:34:24 2019-10-16 11:43:57 t 1 1 123648 514 0.00 2019-10-16 11:29:27 2019-10-16 11:44:42 t 1 1 123649 562 0.00 2019-10-16 11:43:23 2019-10-16 11:46:55 t 1 1 123654 416 0.00 2019-10-16 11:14:30 2019-10-16 11:50:17 t 1 1 123655 416 0.00 2019-10-16 11:50:17 2019-10-16 11:51:44 t 1 1 123656 456 0.00 2019-10-16 11:52:13 2019-10-16 11:53:34 t 1 1 123659 485 0.00 2019-10-16 11:53:36 2019-10-16 11:55:46 t 1 1 123660 501 0.00 2019-10-16 11:55:20 2019-10-16 11:56:14 t 1 1 123662 501 0.00 2019-10-16 11:56:19 2019-10-16 11:56:27 t 1 1 123668 501 0.00 2019-10-16 11:59:53 2019-10-16 12:00:01 t 1 1 123669 375 0.00 2019-10-16 11:58:18 2019-10-16 12:00:52 t 1 1 123672 501 0.00 2019-10-16 12:00:49 2019-10-16 12:03:46 t 1 1 123675 516 0.00 2019-10-16 12:02:40 2019-10-16 12:05:25 t 1 1 123677 501 0.00 2019-10-16 12:05:49 2019-10-16 12:05:51 t 1 1 123680 562 0.00 2019-10-16 12:08:08 2019-10-16 12:09:15 t 1 1 123683 501 0.00 2019-10-16 12:10:47 2019-10-16 12:10:55 t 1 1 123685 564 0.00 2019-10-16 12:06:19 2019-10-16 12:11:12 t 1 1 123688 416 0.00 2019-10-16 11:54:14 2019-10-16 12:12:12 t 1 1 123691 562 0.00 2019-10-16 12:10:27 2019-10-16 12:13:42 t 1 1 123692 416 0.00 2019-10-16 12:11:32 2019-10-16 12:14:08 t 1 1 123694 306 0.00 2019-10-16 12:06:53 2019-10-16 12:14:18 t 1 1 123695 456 0.00 2019-10-16 12:10:51 2019-10-16 12:14:56 t 1 1 123697 520 0.00 2019-10-16 12:11:31 2019-10-16 12:15:20 t 1 1 123702 512 0.00 2019-10-16 11:40:41 2019-10-16 12:24:24 t 1 1 123705 562 0.00 2019-10-16 12:24:53 2019-10-16 12:26:51 t 1 1 123707 501 0.00 2019-10-16 12:21:00 2019-10-16 12:27:41 t 1 1 123709 501 0.00 2019-10-16 12:28:26 2019-10-16 12:29:22 t 1 1 123713 501 0.00 2019-10-16 12:31:08 2019-10-16 12:32:32 t 1 1 123716 512 0.00 2019-10-16 12:25:42 2019-10-16 12:33:30 t 1 1 123719 542 0.00 2019-10-16 12:12:40 2019-10-16 12:35:30 t 1 1 123721 520 0.00 2019-10-16 12:23:55 2019-10-16 12:39:19 t 1 1 123725 498 0.00 2019-10-16 12:32:46 2019-10-16 12:40:52 t 1 2 123728 501 0.00 2019-10-16 12:41:14 2019-10-16 12:41:48 t 1 1 123731 520 0.00 2019-10-16 12:39:23 2019-10-16 12:44:35 t 1 1 123732 501 0.00 2019-10-16 12:43:55 2019-10-16 12:46:23 t 1 1 123737 501 0.00 2019-10-16 12:50:21 2019-10-16 12:50:29 t 1 1 123739 562 0.00 2019-10-16 12:40:23 2019-10-16 12:50:50 t 1 1 123741 501 0.00 2019-10-16 12:50:42 2019-10-16 12:52:47 t 1 1 123745 375 0.00 2019-10-16 12:52:57 2019-10-16 12:54:02 t 1 1 123751 501 0.00 2019-10-16 12:56:49 2019-10-16 12:58:26 t 1 1 123759 562 0.00 2019-10-16 13:09:47 2019-10-16 13:09:55 t 1 1 123764 416 0.00 2019-10-16 13:02:00 2019-10-16 13:13:39 t 1 1 123766 501 0.00 2019-10-16 13:01:27 2019-10-16 13:14:40 t 1 1 123771 562 0.00 2019-10-16 13:14:51 2019-10-16 13:16:05 t 1 1 123775 501 0.00 2019-10-16 13:17:43 2019-10-16 13:17:44 t 1 1 123777 556 0.00 2019-10-16 13:14:43 2019-10-16 13:17:55 t 1 1 123783 501 0.00 2019-10-16 13:17:58 2019-10-16 13:20:32 t 1 1 123626 520 0.00 2019-10-16 11:25:57 2019-10-16 11:32:40 t 1 1 123628 516 0.00 2019-10-16 10:57:26 2019-10-16 11:34:17 t 1 1 123633 422 0.00 2019-10-16 11:30:43 2019-10-16 11:36:36 t 1 1 123635 445 0.00 2019-10-16 11:06:47 2019-10-16 11:39:00 t 1 1 123636 375 0.00 2019-10-16 09:46:54 2019-10-16 11:41:18 t 1 1 123638 501 0.00 2019-10-16 11:42:29 2019-10-16 11:42:30 t 1 1 123646 520 0.00 2019-10-16 11:34:32 2019-10-16 11:44:02 t 1 1 123652 501 0.00 2019-10-16 11:47:19 2019-10-16 11:48:23 t 1 1 123653 501 0.00 2019-10-16 11:49:10 2019-10-16 11:49:18 t 1 1 123657 416 0.00 2019-10-16 11:51:44 2019-10-16 11:53:34 t 1 1 123661 306 0.00 2019-10-16 11:52:38 2019-10-16 11:56:15 t 1 1 123663 562 0.00 2019-10-16 11:48:22 2019-10-16 11:56:30 t 1 1 123665 501 0.00 2019-10-16 11:57:25 2019-10-16 11:58:43 t 1 1 123666 501 0.00 2019-10-16 11:59:46 2019-10-16 11:59:47 t 1 1 123670 542 0.00 2019-10-16 10:47:30 2019-10-16 12:00:54 t 1 1 123676 562 0.00 2019-10-16 12:04:12 2019-10-16 12:05:36 t 1 1 123681 501 0.00 2019-10-16 12:07:56 2019-10-16 12:09:22 t 1 1 123689 542 0.00 2019-10-16 12:00:54 2019-10-16 12:12:40 t 1 1 123693 501 0.00 2019-10-16 12:14:02 2019-10-16 12:14:16 t 1 1 123701 520 0.00 2019-10-16 12:15:26 2019-10-16 12:23:56 t 1 1 123703 562 0.00 2019-10-16 12:15:02 2019-10-16 12:24:53 t 1 1 123704 545 0.00 2019-10-16 12:04:02 2019-10-16 12:26:35 t 1 1 123706 306 0.00 2019-10-16 12:23:12 2019-10-16 12:26:53 t 1 1 123708 325 0.00 2019-10-16 12:16:29 2019-10-16 12:28:34 t 1 2 123712 545 0.00 2019-10-16 12:26:35 2019-10-16 12:31:57 t 1 1 123714 501 0.00 2019-10-16 12:32:49 2019-10-16 12:33:01 t 1 1 123717 501 0.00 2019-10-16 12:34:05 2019-10-16 12:34:06 t 1 1 123727 514 0.00 2019-10-16 12:20:06 2019-10-16 12:41:16 t 1 1 123729 501 0.00 2019-10-16 12:42:20 2019-10-16 12:43:20 t 1 1 123730 445 0.00 2019-10-16 12:35:32 2019-10-16 12:44:21 t 1 1 123733 306 0.00 2019-10-16 12:44:52 2019-10-16 12:46:43 t 1 1 123734 501 0.00 2019-10-16 12:47:26 2019-10-16 12:47:34 t 1 1 123735 501 0.00 2019-10-16 12:48:32 2019-10-16 12:48:46 t 1 1 123736 501 0.00 2019-10-16 12:49:27 2019-10-16 12:50:16 t 1 1 123738 375 0.00 2019-10-16 12:11:36 2019-10-16 12:50:37 t 1 1 123744 542 0.00 2019-10-16 12:35:30 2019-10-16 12:53:49 t 1 1 123750 562 0.00 2019-10-16 12:50:50 2019-10-16 12:58:10 t 1 1 123756 566 0.00 2019-10-16 12:58:50 2019-10-16 13:06:25 t 1 1 123757 562 0.00 2019-10-16 13:06:33 2019-10-16 13:06:48 t 1 1 123758 562 0.00 2019-10-16 13:09:30 2019-10-16 13:09:36 t 1 1 123761 562 0.00 2019-10-16 13:10:06 2019-10-16 13:11:23 t 1 1 123763 520 0.00 2019-10-16 13:10:14 2019-10-16 13:12:48 t 1 1 123765 562 0.00 2019-10-16 13:12:14 2019-10-16 13:13:45 t 1 1 123768 375 0.00 2019-10-16 12:55:06 2019-10-16 13:14:58 t 1 1 123770 327 0.00 2019-10-16 12:54:47 2019-10-16 13:16:05 t 1 1 123772 445 0.00 2019-10-16 12:45:02 2019-10-16 13:16:09 t 1 1 123773 416 0.00 2019-10-16 13:15:29 2019-10-16 13:16:43 t 1 1 123778 483 0.00 2019-10-16 13:15:14 2019-10-16 13:18:11 t 1 1 123780 516 0.00 2019-10-16 13:11:41 2019-10-16 13:19:38 t 1 1 123781 483 0.00 2019-10-16 13:18:11 2019-10-16 13:20:25 t 1 1 123784 451 0.00 2019-10-16 13:18:51 2019-10-16 13:20:33 t 1 1 123787 501 0.00 2019-10-16 13:21:50 2019-10-16 13:23:29 t 1 1 123788 501 0.00 2019-10-16 13:24:33 2019-10-16 13:24:34 t 1 1 123789 556 0.00 2019-10-16 13:22:10 2019-10-16 13:24:59 t 1 1 123792 562 0.00 2019-10-16 13:21:43 2019-10-16 13:26:26 t 1 1 123795 538 0.00 2019-10-16 13:27:31 2019-10-16 13:29:45 t 1 1 123796 562 0.00 2019-10-16 13:28:41 2019-10-16 13:29:57 t 1 1 123798 445 0.00 2019-10-16 13:26:25 2019-10-16 13:30:08 t 1 1 123800 501 0.00 2019-10-16 13:28:05 2019-10-16 13:30:13 t 1 1 123801 514 0.00 2019-10-16 12:41:25 2019-10-16 13:30:57 t 1 1 123803 501 0.00 2019-10-16 13:31:15 2019-10-16 13:31:48 t 1 1 123806 514 0.00 2019-10-16 13:30:57 2019-10-16 13:35:05 t 1 1 123808 412 0.00 2019-10-16 07:51:39 2019-10-16 13:36:16 t 1 1 123812 501 0.00 2019-10-16 13:38:18 2019-10-16 13:38:26 t 1 1 123815 501 0.00 2019-10-16 13:40:19 2019-10-16 13:40:21 t 1 1 123818 422 0.00 2019-10-16 11:36:36 2019-10-16 13:42:56 t 1 1 123819 514 0.00 2019-10-16 13:35:05 2019-10-16 13:43:00 t 1 1 123821 451 0.00 2019-10-16 13:30:54 2019-10-16 13:43:04 t 1 1 123823 451 0.00 2019-10-16 13:43:20 2019-10-16 13:45:18 t 1 1 123824 566 0.00 2019-10-16 13:37:36 2019-10-16 13:47:24 t 1 1 123827 558 0.00 2019-10-16 13:33:19 2019-10-16 13:48:39 t 1 1 123830 445 0.00 2019-10-16 13:31:25 2019-10-16 13:50:58 t 1 1 123832 501 0.00 2019-10-16 13:51:17 2019-10-16 13:52:10 t 1 1 123836 501 0.00 2019-10-16 13:55:15 2019-10-16 13:55:47 t 1 1 123838 501 0.00 2019-10-16 13:56:09 2019-10-16 13:56:43 t 1 1 123839 501 0.00 2019-10-16 13:57:10 2019-10-16 13:57:18 t 1 1 123844 501 0.00 2019-10-16 14:00:09 2019-10-16 14:00:19 t 1 1 123847 498 0.00 2019-10-16 12:54:13 2019-10-16 14:01:43 t 1 2 123848 501 0.00 2019-10-16 14:01:16 2019-10-16 14:02:32 t 1 1 123849 422 0.00 2019-10-16 14:01:50 2019-10-16 14:03:02 t 1 1 123853 501 0.00 2019-10-16 14:03:56 2019-10-16 14:04:15 t 1 1 123858 514 0.00 2019-10-16 13:59:46 2019-10-16 14:08:22 t 1 1 123861 451 0.00 2019-10-16 14:07:53 2019-10-16 14:09:49 t 1 1 123863 501 0.00 2019-10-16 14:10:39 2019-10-16 14:10:48 t 1 1 123864 501 0.00 2019-10-16 14:11:19 2019-10-16 14:11:27 t 1 1 123867 481 0.00 2019-10-16 10:27:52 2019-10-16 14:12:45 t 1 1 123875 501 0.00 2019-10-16 14:17:18 2019-10-16 14:17:49 t 1 1 123876 501 0.00 2019-10-16 14:18:24 2019-10-16 14:18:32 t 1 1 123882 327 0.00 2019-10-16 13:56:01 2019-10-16 14:23:23 t 1 1 123890 562 0.00 2019-10-16 14:19:58 2019-10-16 14:28:12 t 1 1 123892 408 0.00 2019-10-16 14:28:40 2019-10-16 14:30:39 t 1 1 123896 501 0.00 2019-10-16 14:31:28 2019-10-16 14:31:41 t 1 1 123900 501 0.00 2019-10-16 14:32:28 2019-10-16 14:32:36 t 1 1 123902 220 0.00 2019-10-16 14:32:30 2019-10-16 14:33:17 t 1 1 123905 220 0.00 2019-10-16 14:34:27 2019-10-16 14:34:59 t 1 1 123910 408 0.00 2019-10-16 14:37:10 2019-10-16 14:37:27 t 1 1 123914 408 0.00 2019-10-16 14:38:24 2019-10-16 14:38:41 t 1 1 123923 220 0.00 2019-10-16 14:40:26 2019-10-16 14:41:39 t 1 1 123924 220 0.00 2019-10-16 14:41:39 2019-10-16 14:42:12 t 1 1 123932 562 0.00 2019-10-16 14:51:26 2019-10-16 14:51:43 t 1 1 123934 562 0.00 2019-10-16 14:52:57 2019-10-16 14:53:08 t 1 1 123940 562 0.00 2019-10-16 14:57:33 2019-10-16 14:57:51 t 1 1 123943 501 0.00 2019-10-16 14:40:23 2019-10-16 14:59:29 t 1 1 123947 408 0.00 2019-10-16 14:53:17 2019-10-16 15:00:20 t 1 1 123951 562 0.00 2019-10-16 15:01:20 2019-10-16 15:02:24 t 1 1 123955 501 0.00 2019-10-16 15:03:33 2019-10-16 15:04:17 t 1 1 123957 501 0.00 2019-10-16 15:05:33 2019-10-16 15:05:41 t 1 1 123754 516 0.00 2019-10-16 13:00:42 2019-10-16 13:04:17 t 1 1 123755 562 0.00 2019-10-16 13:03:48 2019-10-16 13:05:30 t 1 1 123760 520 0.00 2019-10-16 12:44:35 2019-10-16 13:10:14 t 1 1 123762 487 0.00 2019-10-16 11:51:51 2019-10-16 13:12:39 t 1 2 123767 556 0.00 2019-10-16 07:59:13 2019-10-16 13:14:43 t 1 1 123769 501 0.00 2019-10-16 13:15:46 2019-10-16 13:15:55 t 1 1 123774 501 0.00 2019-10-16 13:16:42 2019-10-16 13:16:50 t 1 1 123776 501 0.00 2019-10-16 13:17:50 2019-10-16 13:17:52 t 1 1 123779 451 0.00 2019-10-16 13:14:51 2019-10-16 13:19:29 t 1 1 123782 562 0.00 2019-10-16 13:19:37 2019-10-16 13:20:30 t 1 1 123785 556 0.00 2019-10-16 13:17:57 2019-10-16 13:22:11 t 1 1 123791 445 0.00 2019-10-16 13:16:35 2019-10-16 13:26:08 t 1 1 123797 566 0.00 2019-10-16 13:06:25 2019-10-16 13:30:00 t 1 1 123804 520 0.00 2019-10-16 13:27:56 2019-10-16 13:32:46 t 1 1 123805 327 0.00 2019-10-16 13:16:05 2019-10-16 13:33:29 t 1 1 123810 501 0.00 2019-10-16 13:35:15 2019-10-16 13:37:15 t 1 1 123814 501 0.00 2019-10-16 13:39:18 2019-10-16 13:39:26 t 1 1 123816 562 0.00 2019-10-16 13:40:15 2019-10-16 13:40:45 t 1 1 123817 501 0.00 2019-10-16 13:41:20 2019-10-16 13:41:27 t 1 1 123826 514 0.00 2019-10-16 13:43:00 2019-10-16 13:48:34 t 1 1 123829 501 0.00 2019-10-16 13:50:26 2019-10-16 13:50:41 t 1 1 123831 562 0.00 2019-10-16 13:51:02 2019-10-16 13:51:26 t 1 1 123834 501 0.00 2019-10-16 13:52:46 2019-10-16 13:54:07 t 1 1 123835 562 0.00 2019-10-16 13:52:58 2019-10-16 13:55:00 t 1 1 123843 501 0.00 2019-10-16 13:59:10 2019-10-16 14:00:04 t 1 1 123851 501 0.00 2019-10-16 14:03:12 2019-10-16 14:03:48 t 1 1 123852 566 0.00 2019-10-16 13:47:24 2019-10-16 14:04:03 t 1 1 123854 501 0.00 2019-10-16 14:04:36 2019-10-16 14:05:21 t 1 1 123855 501 0.00 2019-10-16 14:06:17 2019-10-16 14:06:24 t 1 1 123857 422 0.00 2019-10-16 14:03:01 2019-10-16 14:07:11 t 1 1 123862 501 0.00 2019-10-16 14:10:08 2019-10-16 14:10:21 t 1 1 123865 562 0.00 2019-10-16 14:03:03 2019-10-16 14:11:39 t 1 1 123866 501 0.00 2019-10-16 14:12:20 2019-10-16 14:12:29 t 1 1 123868 501 0.00 2019-10-16 14:14:22 2019-10-16 14:14:33 t 1 1 123869 220 0.00 2019-10-16 12:59:04 2019-10-16 14:15:27 t 1 2 123873 412 0.00 2019-10-16 13:36:16 2019-10-16 14:17:12 t 1 1 123874 514 0.00 2019-10-16 14:08:22 2019-10-16 14:17:24 t 1 1 123877 562 0.00 2019-10-16 14:15:59 2019-10-16 14:18:51 t 1 1 123878 501 0.00 2019-10-16 14:19:24 2019-10-16 14:19:32 t 1 1 123879 501 0.00 2019-10-16 14:20:24 2019-10-16 14:21:04 t 1 1 123881 520 0.00 2019-10-16 13:57:38 2019-10-16 14:22:51 t 1 1 123885 545 0.00 2019-10-16 14:22:24 2019-10-16 14:24:31 t 1 1 123887 501 0.00 2019-10-16 14:25:44 2019-10-16 14:25:44 t 1 1 123888 501 0.00 2019-10-16 14:26:12 2019-10-16 14:26:43 t 1 1 123889 501 0.00 2019-10-16 14:27:39 2019-10-16 14:27:48 t 1 1 123894 562 0.00 2019-10-16 14:28:21 2019-10-16 14:31:22 t 1 1 123895 520 0.00 2019-10-16 14:22:51 2019-10-16 14:31:30 t 1 1 123897 408 0.00 2019-10-16 14:31:36 2019-10-16 14:31:48 t 1 1 123898 514 0.00 2019-10-16 14:23:26 2019-10-16 14:32:05 t 1 1 123899 220 0.00 2019-10-16 14:28:34 2019-10-16 14:32:30 t 1 1 123908 220 0.00 2019-10-16 14:36:05 2019-10-16 14:36:38 t 1 1 123913 520 0.00 2019-10-16 14:31:30 2019-10-16 14:38:19 t 1 1 123917 220 0.00 2019-10-16 14:39:06 2019-10-16 14:39:21 t 1 1 123919 220 0.00 2019-10-16 14:39:20 2019-10-16 14:39:55 t 1 1 123928 220 0.00 2019-10-16 14:44:01 2019-10-16 14:44:32 t 1 1 123931 562 0.00 2019-10-16 14:32:34 2019-10-16 14:50:51 t 1 1 123935 408 0.00 2019-10-16 14:40:54 2019-10-16 14:53:17 t 1 1 123936 327 0.00 2019-10-16 14:23:23 2019-10-16 14:53:36 t 1 1 123937 545 0.00 2019-10-16 14:51:28 2019-10-16 14:54:45 t 1 1 123939 520 0.00 2019-10-16 14:45:58 2019-10-16 14:57:00 t 1 1 123941 490 0.00 2019-10-16 14:52:17 2019-10-16 14:58:22 t 1 1 123945 532 0.00 2019-10-16 14:59:40 2019-10-16 14:59:41 t 1 1 123946 562 0.00 2019-10-16 14:58:30 2019-10-16 15:00:12 t 1 1 123948 501 0.00 2019-10-16 15:00:25 2019-10-16 15:01:00 t 1 1 123949 514 0.00 2019-10-16 14:32:05 2019-10-16 15:01:48 t 1 1 123950 501 0.00 2019-10-16 15:01:31 2019-10-16 15:02:11 t 1 1 123952 501 0.00 2019-10-16 15:02:16 2019-10-16 15:02:31 t 1 1 123953 562 0.00 2019-10-16 15:03:10 2019-10-16 15:03:30 t 1 1 123958 501 0.00 2019-10-16 15:06:39 2019-10-16 15:06:54 t 1 1 123959 532 0.00 2019-10-16 15:00:20 2019-10-16 15:07:18 t 1 1 123960 481 0.00 2019-10-16 14:12:45 2019-10-16 15:08:35 t 1 1 123966 501 0.00 2019-10-16 15:10:50 2019-10-16 15:10:58 t 1 1 123969 483 0.00 2019-10-16 15:11:30 2019-10-16 15:13:22 t 1 1 123975 501 0.00 2019-10-16 15:13:44 2019-10-16 15:20:28 t 1 1 123977 556 0.00 2019-10-16 13:25:03 2019-10-16 15:22:18 t 1 1 123979 306 0.00 2019-10-16 15:18:05 2019-10-16 15:22:42 t 1 1 123981 516 0.00 2019-10-16 15:24:17 2019-10-16 15:26:00 t 1 1 123982 501 0.00 2019-10-16 15:21:30 2019-10-16 15:27:00 t 1 1 123988 416 0.00 2019-10-16 13:16:57 2019-10-16 15:35:05 t 1 1 123998 501 0.00 2019-10-16 15:47:21 2019-10-16 15:47:29 t 1 1 124001 501 0.00 2019-10-16 15:48:21 2019-10-16 15:48:54 t 1 1 124005 501 0.00 2019-10-16 15:51:10 2019-10-16 15:51:22 t 1 1 124009 501 0.00 2019-10-16 15:52:24 2019-10-16 15:53:12 t 1 1 124011 306 0.00 2019-10-16 15:51:38 2019-10-16 15:53:47 t 1 1 124013 501 0.00 2019-10-16 15:56:07 2019-10-16 15:56:25 t 1 1 124014 528 0.00 2019-10-16 15:55:46 2019-10-16 15:56:49 t 1 1 124017 501 0.00 2019-10-16 15:58:29 2019-10-16 15:58:37 t 1 1 124018 220 0.00 2019-10-16 15:49:16 2019-10-16 15:59:09 t 1 1 124021 290 0.00 2019-10-16 16:02:34 2019-10-16 16:03:36 t 1 2 124022 220 0.00 2019-10-16 15:59:09 2019-10-16 16:04:34 t 1 1 124024 220 0.00 2019-10-16 16:04:34 2019-10-16 16:04:48 t 1 1 124026 220 0.00 2019-10-16 16:04:58 2019-10-16 16:05:10 t 1 1 124029 220 0.00 2019-10-16 16:05:38 2019-10-16 16:05:56 t 1 1 124030 220 0.00 2019-10-16 16:05:54 2019-10-16 16:06:06 t 1 1 124033 220 0.00 2019-10-16 16:06:36 2019-10-16 16:06:46 t 1 1 124042 445 0.00 2019-10-16 16:17:15 2019-10-16 16:18:45 t 1 1 124046 562 0.00 2019-10-16 16:22:35 2019-10-16 16:24:37 t 1 1 124053 528 0.00 2019-10-16 16:32:40 2019-10-16 16:33:11 t 1 1 124054 528 0.00 2019-10-16 16:34:28 2019-10-16 16:34:54 t 1 1 124057 528 0.00 2019-10-16 16:37:07 2019-10-16 16:37:32 t 1 1 124059 514 0.00 2019-10-16 16:30:35 2019-10-16 16:39:50 t 1 1 124061 522 0.00 2019-10-16 16:30:14 2019-10-16 16:40:40 t 1 1 124063 528 0.00 2019-10-16 16:41:00 2019-10-16 16:41:43 t 1 1 124069 562 0.00 2019-10-16 16:50:28 2019-10-16 16:51:35 t 1 1 124071 327 0.00 2019-10-16 16:17:45 2019-10-16 16:52:38 t 1 1 124073 296 0.00 2019-10-16 16:55:07 2019-10-16 16:56:30 t 1 2 124081 562 0.00 2019-10-16 17:00:28 2019-10-16 17:03:38 t 1 1 123786 220 0.00 2019-10-16 13:07:33 2019-10-16 13:22:19 t 1 1 123790 456 0.00 2019-10-16 13:22:27 2019-10-16 13:25:43 t 1 1 123793 520 0.00 2019-10-16 13:12:48 2019-10-16 13:26:53 t 1 1 123794 520 0.00 2019-10-16 13:26:52 2019-10-16 13:28:09 t 1 1 123799 538 0.00 2019-10-16 13:29:13 2019-10-16 13:30:11 t 1 1 123802 538 0.00 2019-10-16 13:30:10 2019-10-16 13:30:59 t 1 1 123807 501 0.00 2019-10-16 13:32:16 2019-10-16 13:35:06 t 1 1 123809 538 0.00 2019-10-16 13:31:03 2019-10-16 13:36:26 t 1 1 123811 566 0.00 2019-10-16 13:30:00 2019-10-16 13:37:36 t 1 1 123813 483 0.00 2019-10-16 13:21:53 2019-10-16 13:39:00 t 1 1 123820 451 0.00 2019-10-16 13:42:10 2019-10-16 13:43:00 t 1 1 123822 220 0.00 2019-10-16 13:22:19 2019-10-16 13:43:23 t 1 1 123825 501 0.00 2019-10-16 13:42:03 2019-10-16 13:47:41 t 1 1 123828 501 0.00 2019-10-16 13:49:45 2019-10-16 13:50:17 t 1 1 123833 514 0.00 2019-10-16 13:48:34 2019-10-16 13:54:03 t 1 1 123837 327 0.00 2019-10-16 13:33:29 2019-10-16 13:56:01 t 1 1 123840 520 0.00 2019-10-16 13:32:46 2019-10-16 13:57:38 t 1 1 123841 501 0.00 2019-10-16 13:58:10 2019-10-16 13:58:44 t 1 1 123842 514 0.00 2019-10-16 13:54:03 2019-10-16 13:59:46 t 1 1 123845 562 0.00 2019-10-16 13:59:49 2019-10-16 14:01:09 t 1 1 123846 422 0.00 2019-10-16 13:42:56 2019-10-16 14:01:42 t 1 1 123850 501 0.00 2019-10-16 14:01:30 2019-10-16 14:03:05 t 1 1 123856 558 0.00 2019-10-16 13:56:04 2019-10-16 14:06:45 t 1 1 123859 501 0.00 2019-10-16 14:08:20 2019-10-16 14:08:52 t 1 1 123860 501 0.00 2019-10-16 14:09:02 2019-10-16 14:09:15 t 1 1 123870 566 0.00 2019-10-16 14:04:03 2019-10-16 14:15:42 t 1 1 123871 422 0.00 2019-10-16 14:07:34 2019-10-16 14:16:05 t 1 1 123872 512 0.00 2019-10-16 13:35:30 2019-10-16 14:16:29 t 1 1 123880 501 0.00 2019-10-16 14:21:09 2019-10-16 14:22:36 t 1 1 123883 514 0.00 2019-10-16 14:17:24 2019-10-16 14:23:26 t 1 1 123884 501 0.00 2019-10-16 14:23:38 2019-10-16 14:23:46 t 1 1 123886 501 0.00 2019-10-16 14:24:38 2019-10-16 14:25:15 t 1 1 123891 501 0.00 2019-10-16 14:28:39 2019-10-16 14:30:26 t 1 1 123893 408 0.00 2019-10-16 14:30:51 2019-10-16 14:30:56 t 1 1 123901 501 0.00 2019-10-16 14:32:41 2019-10-16 14:32:42 t 1 1 123903 220 0.00 2019-10-16 14:33:16 2019-10-16 14:33:52 t 1 1 123904 220 0.00 2019-10-16 14:33:52 2019-10-16 14:34:28 t 1 1 123906 220 0.00 2019-10-16 14:34:58 2019-10-16 14:35:33 t 1 1 123907 220 0.00 2019-10-16 14:35:33 2019-10-16 14:36:06 t 1 1 123909 220 0.00 2019-10-16 14:36:38 2019-10-16 14:37:11 t 1 1 123911 220 0.00 2019-10-16 14:37:11 2019-10-16 14:37:42 t 1 1 123912 220 0.00 2019-10-16 14:37:42 2019-10-16 14:38:15 t 1 1 123915 220 0.00 2019-10-16 14:38:15 2019-10-16 14:38:49 t 1 1 123916 220 0.00 2019-10-16 14:38:49 2019-10-16 14:39:06 t 1 1 123918 501 0.00 2019-10-16 14:32:50 2019-10-16 14:39:49 t 1 1 123920 422 0.00 2019-10-16 14:16:22 2019-10-16 14:39:56 t 1 1 123921 512 0.00 2019-10-16 14:16:28 2019-10-16 14:40:14 t 1 1 123922 220 0.00 2019-10-16 14:39:55 2019-10-16 14:40:26 t 1 1 123925 220 0.00 2019-10-16 14:42:11 2019-10-16 14:42:52 t 1 1 123926 220 0.00 2019-10-16 14:42:51 2019-10-16 14:43:22 t 1 1 123927 220 0.00 2019-10-16 14:43:22 2019-10-16 14:44:01 t 1 1 123929 220 0.00 2019-10-16 14:44:32 2019-10-16 14:45:09 t 1 1 123930 520 0.00 2019-10-16 14:38:19 2019-10-16 14:45:58 t 1 1 123933 490 0.00 2019-10-16 14:48:42 2019-10-16 14:52:17 t 1 1 123938 562 0.00 2019-10-16 14:53:28 2019-10-16 14:56:06 t 1 1 123942 532 0.00 2019-10-16 14:58:18 2019-10-16 14:59:21 t 1 1 123944 532 0.00 2019-10-16 14:59:33 2019-10-16 14:59:35 t 1 1 123954 562 0.00 2019-10-16 15:04:06 2019-10-16 15:04:14 t 1 1 123956 501 0.00 2019-10-16 15:04:22 2019-10-16 15:04:31 t 1 1 123962 501 0.00 2019-10-16 15:09:50 2019-10-16 15:10:03 t 1 1 123965 490 0.00 2019-10-16 14:58:22 2019-10-16 15:10:51 t 1 1 123968 501 0.00 2019-10-16 15:11:17 2019-10-16 15:11:25 t 1 1 123970 568 0.00 2019-10-16 15:06:48 2019-10-16 15:13:30 t 1 1 123972 501 0.00 2019-10-16 15:12:53 2019-10-16 15:14:32 t 1 1 123974 306 0.00 2019-10-16 14:51:04 2019-10-16 15:16:27 t 1 1 123983 408 0.00 2019-10-16 15:23:13 2019-10-16 15:27:15 t 1 1 123985 562 0.00 2019-10-16 15:31:58 2019-10-16 15:32:59 t 1 1 123995 501 0.00 2019-10-16 15:43:12 2019-10-16 15:45:19 t 1 1 123999 528 0.00 2019-10-16 15:47:17 2019-10-16 15:47:41 t 1 1 124000 568 0.00 2019-10-16 15:38:14 2019-10-16 15:48:47 t 1 1 124004 501 0.00 2019-10-16 15:50:22 2019-10-16 15:51:04 t 1 1 124008 483 0.00 2019-10-16 15:19:01 2019-10-16 15:52:42 t 1 1 124012 501 0.00 2019-10-16 15:55:26 2019-10-16 15:56:00 t 1 1 124020 501 0.00 2019-10-16 15:59:30 2019-10-16 15:59:38 t 1 1 124023 220 0.00 2019-10-16 14:46:57 2019-10-16 16:04:35 t 1 1 124025 220 0.00 2019-10-16 16:04:48 2019-10-16 16:04:58 t 1 1 124028 220 0.00 2019-10-16 16:05:28 2019-10-16 16:05:38 t 1 1 124031 501 0.00 2019-10-16 15:59:59 2019-10-16 16:06:23 t 1 1 124032 220 0.00 2019-10-16 16:06:05 2019-10-16 16:06:36 t 1 1 124035 220 0.00 2019-10-16 16:06:46 2019-10-16 16:13:16 t 1 1 124036 220 0.00 2019-10-16 16:13:15 2019-10-16 16:14:33 t 1 1 124037 562 0.00 2019-10-16 16:14:55 2019-10-16 16:16:19 t 1 1 124038 445 0.00 2019-10-16 13:51:02 2019-10-16 16:17:34 t 1 1 124040 327 0.00 2019-10-16 15:43:26 2019-10-16 16:17:45 t 1 1 124043 220 0.00 2019-10-16 16:07:05 2019-10-16 16:19:47 t 1 1 124048 522 0.00 2019-10-16 16:13:38 2019-10-16 16:30:14 t 1 1 124049 514 0.00 2019-10-16 16:17:40 2019-10-16 16:30:35 t 1 1 124050 512 0.00 2019-10-16 16:29:47 2019-10-16 16:30:45 t 1 1 124051 306 0.00 2019-10-16 16:30:07 2019-10-16 16:31:10 t 1 1 124055 538 0.00 2019-10-16 13:42:43 2019-10-16 16:36:42 t 1 1 124056 554 0.00 2019-10-16 16:15:33 2019-10-16 16:37:16 t 1 1 124058 562 0.00 2019-10-16 16:38:06 2019-10-16 16:38:30 t 1 1 124064 528 0.00 2019-10-16 16:42:46 2019-10-16 16:43:18 t 1 1 124065 562 0.00 2019-10-16 16:44:27 2019-10-16 16:44:32 t 1 1 124067 562 0.00 2019-10-16 16:44:45 2019-10-16 16:44:54 t 1 1 124070 528 0.00 2019-10-16 16:51:14 2019-10-16 16:51:42 t 1 1 124075 522 0.00 2019-10-16 16:40:52 2019-10-16 16:59:30 t 1 1 124078 522 0.00 2019-10-16 17:02:19 2019-10-16 17:02:22 t 1 1 124084 562 0.00 2019-10-16 17:03:43 2019-10-16 17:04:15 t 1 1 124085 481 0.00 2019-10-16 15:08:36 2019-10-16 17:04:34 t 1 1 124087 528 0.00 2019-10-16 17:05:04 2019-10-16 17:05:27 t 1 1 124088 445 0.00 2019-10-16 16:58:17 2019-10-16 17:06:12 t 1 1 124090 445 0.00 2019-10-16 17:06:12 2019-10-16 17:06:38 t 1 1 124091 306 0.00 2019-10-16 16:41:29 2019-10-16 17:07:15 t 1 1 124097 445 0.00 2019-10-16 17:06:40 2019-10-16 17:11:09 t 1 1 124099 528 0.00 2019-10-16 17:11:45 2019-10-16 17:12:13 t 1 1 124101 562 0.00 2019-10-16 17:14:05 2019-10-16 17:14:47 t 1 1 123961 501 0.00 2019-10-16 15:07:00 2019-10-16 15:08:48 t 1 1 123963 408 0.00 2019-10-16 15:00:20 2019-10-16 15:10:09 t 1 1 123964 562 0.00 2019-10-16 15:10:27 2019-10-16 15:10:37 t 1 1 123967 501 0.00 2019-10-16 15:11:04 2019-10-16 15:11:12 t 1 1 123971 532 0.00 2019-10-16 15:07:18 2019-10-16 15:14:19 t 1 1 123973 532 0.00 2019-10-16 15:14:19 2019-10-16 15:14:52 t 1 1 123976 516 0.00 2019-10-16 15:16:09 2019-10-16 15:22:06 t 1 1 123978 562 0.00 2019-10-16 15:21:19 2019-10-16 15:22:32 t 1 1 123980 408 0.00 2019-10-16 15:10:09 2019-10-16 15:23:13 t 1 1 123984 562 0.00 2019-10-16 15:26:55 2019-10-16 15:28:13 t 1 1 123986 501 0.00 2019-10-16 15:27:27 2019-10-16 15:33:56 t 1 1 123987 501 0.00 2019-10-16 15:35:03 2019-10-16 15:35:04 t 1 1 123989 501 0.00 2019-10-16 15:35:09 2019-10-16 15:35:17 t 1 1 123990 568 0.00 2019-10-16 15:13:59 2019-10-16 15:36:47 t 1 1 123991 408 0.00 2019-10-16 15:27:15 2019-10-16 15:38:13 t 1 1 123992 501 0.00 2019-10-16 15:35:28 2019-10-16 15:41:43 t 1 1 123993 501 0.00 2019-10-16 15:42:45 2019-10-16 15:42:53 t 1 1 123994 327 0.00 2019-10-16 14:53:36 2019-10-16 15:43:26 t 1 1 123996 528 0.00 2019-10-16 15:35:03 2019-10-16 15:45:43 t 1 1 123997 501 0.00 2019-10-16 15:46:21 2019-10-16 15:46:28 t 1 1 124002 220 0.00 2019-10-16 14:45:09 2019-10-16 15:48:58 t 1 1 124003 501 0.00 2019-10-16 15:49:22 2019-10-16 15:49:30 t 1 1 124006 514 0.00 2019-10-16 15:01:48 2019-10-16 15:51:40 t 1 1 124007 528 0.00 2019-10-16 15:48:51 2019-10-16 15:52:04 t 1 1 124010 501 0.00 2019-10-16 15:53:17 2019-10-16 15:53:25 t 1 1 124015 501 0.00 2019-10-16 15:56:39 2019-10-16 15:57:26 t 1 1 124016 501 0.00 2019-10-16 15:56:33 2019-10-16 15:58:32 t 1 1 124019 514 0.00 2019-10-16 15:51:40 2019-10-16 15:59:30 t 1 1 124027 220 0.00 2019-10-16 16:05:10 2019-10-16 16:05:28 t 1 1 124034 528 0.00 2019-10-16 16:06:32 2019-10-16 16:11:30 t 1 1 124039 514 0.00 2019-10-16 15:59:30 2019-10-16 16:17:40 t 1 1 124041 528 0.00 2019-10-16 16:18:20 2019-10-16 16:18:44 t 1 1 124044 445 0.00 2019-10-16 16:18:54 2019-10-16 16:20:38 t 1 1 124045 562 0.00 2019-10-16 16:19:31 2019-10-16 16:22:03 t 1 1 124047 562 0.00 2019-10-16 16:24:48 2019-10-16 16:29:58 t 1 1 124052 528 0.00 2019-10-16 16:30:26 2019-10-16 16:31:24 t 1 1 124060 562 0.00 2019-10-16 16:39:53 2019-10-16 16:40:07 t 1 1 124062 306 0.00 2019-10-16 16:31:09 2019-10-16 16:41:29 t 1 1 124066 512 0.00 2019-10-16 16:30:45 2019-10-16 16:44:34 t 1 1 124068 412 0.00 2019-10-16 14:17:12 2019-10-16 16:48:58 t 1 1 124072 562 0.00 2019-10-16 16:55:21 2019-10-16 16:56:18 t 1 1 124074 445 0.00 2019-10-16 16:20:37 2019-10-16 16:57:26 t 1 1 124076 562 0.00 2019-10-16 16:59:29 2019-10-16 17:00:06 t 1 1 124077 522 0.00 2019-10-16 16:59:30 2019-10-16 17:01:11 t 1 1 124079 528 0.00 2019-10-16 17:01:31 2019-10-16 17:02:23 t 1 1 124080 528 0.00 2019-10-16 17:03:10 2019-10-16 17:03:36 t 1 1 124095 528 0.00 2019-10-16 17:09:28 2019-10-16 17:09:51 t 1 1 124096 408 0.00 2019-10-16 17:07:43 2019-10-16 17:10:23 t 1 1 124102 522 0.00 2019-10-16 17:04:20 2019-10-16 17:14:52 t 1 1 124103 445 0.00 2019-10-16 17:11:33 2019-10-16 17:16:05 t 1 1 124104 514 0.00 2019-10-16 17:13:55 2019-10-16 17:18:13 t 1 1 124106 445 0.00 2019-10-16 17:16:05 2019-10-16 17:19:23 t 1 1 124107 445 0.00 2019-10-16 17:19:37 2019-10-16 17:20:56 t 1 1 124112 522 0.00 2019-10-16 17:23:28 2019-10-16 17:23:51 t 1 1 124113 306 0.00 2019-10-16 17:15:43 2019-10-16 17:24:24 t 1 1 124119 562 0.00 2019-10-16 17:27:40 2019-10-16 17:28:05 t 1 1 124123 449 0.00 2019-10-16 17:26:10 2019-10-16 17:30:31 t 1 1 124127 449 0.00 2019-10-16 17:30:31 2019-10-16 17:43:47 t 1 1 124129 562 0.00 2019-10-16 17:41:01 2019-10-16 17:44:55 t 1 1 124131 522 0.00 2019-10-16 17:44:17 2019-10-16 17:45:53 t 1 1 124136 522 0.00 2019-10-16 17:45:58 2019-10-16 17:47:33 t 1 1 124138 562 0.00 2019-10-16 17:54:28 2019-10-16 17:54:50 t 1 1 124141 562 0.00 2019-10-16 17:58:23 2019-10-16 17:59:16 t 1 1 124146 562 0.00 2019-10-16 18:08:19 2019-10-16 18:09:17 t 1 1 124147 445 0.00 2019-10-16 17:30:05 2019-10-16 18:09:58 t 1 1 124149 512 0.00 2019-10-16 18:08:48 2019-10-16 18:12:27 t 1 1 124150 445 0.00 2019-10-16 18:10:53 2019-10-16 18:14:04 t 1 1 124154 327 0.00 2019-10-16 18:01:27 2019-10-16 18:18:00 t 1 1 124155 562 0.00 2019-10-16 18:19:38 2019-10-16 18:20:03 t 1 1 124160 468 0.00 2019-10-16 17:48:38 2019-10-16 18:24:54 t 1 1 124164 562 0.00 2019-10-16 18:29:14 2019-10-16 18:29:54 t 1 1 124167 430 0.00 2019-10-16 18:32:30 2019-10-16 18:32:31 t 1 1 124169 306 0.00 2019-10-16 18:19:13 2019-10-16 18:35:31 t 1 1 124171 430 0.00 2019-10-16 18:34:45 2019-10-16 18:40:55 t 1 1 124174 412 0.00 2019-10-16 16:48:58 2019-10-16 18:44:25 t 1 1 124176 522 0.00 2019-10-16 18:45:32 2019-10-16 18:45:41 t 1 1 124178 562 0.00 2019-10-16 18:45:36 2019-10-16 18:46:04 t 1 1 124181 562 0.00 2019-10-16 18:47:48 2019-10-16 18:48:26 t 1 1 124182 522 0.00 2019-10-16 18:46:54 2019-10-16 18:49:06 t 1 1 124191 562 0.00 2019-10-16 18:56:14 2019-10-16 18:56:23 t 1 1 124194 522 0.00 2019-10-16 18:57:08 2019-10-16 18:57:08 f 1 1 124195 430 0.00 2019-10-16 18:58:05 2019-10-16 18:58:23 t 1 1 124197 514 0.00 2019-10-16 18:54:15 2019-10-16 18:59:26 t 1 1 124200 562 0.00 2019-10-16 18:56:40 2019-10-16 19:00:51 t 1 1 124201 554 0.00 2019-10-16 19:00:03 2019-10-16 19:00:57 t 1 1 124202 501 0.00 2019-10-16 18:28:19 2019-10-16 19:02:37 t 1 1 124210 562 0.00 2019-10-16 19:05:53 2019-10-16 19:16:40 t 1 1 124211 487 0.00 2019-10-16 19:02:56 2019-10-16 19:18:01 t 1 2 124212 372 0.00 2019-10-16 19:13:26 2019-10-16 19:23:31 t 1 2 124221 501 0.00 2019-10-16 19:02:37 2019-10-16 19:32:03 t 1 1 124224 562 0.00 2019-10-16 19:33:38 2019-10-16 19:34:03 t 1 1 124228 562 0.00 2019-10-16 19:39:26 2019-10-16 19:39:41 t 1 1 124229 422 0.00 2019-10-16 14:57:53 2019-10-16 19:40:05 t 1 1 124230 306 0.00 2019-10-16 19:36:27 2019-10-16 19:41:11 t 1 1 124234 408 0.00 2019-10-16 19:41:34 2019-10-16 19:44:11 t 1 1 124237 538 0.00 2019-10-16 19:28:11 2019-10-16 19:47:54 t 1 1 124238 554 0.00 2019-10-16 19:42:46 2019-10-16 19:48:05 t 1 1 124243 562 0.00 2019-10-16 19:51:18 2019-10-16 19:51:49 t 1 1 124247 468 0.00 2019-10-16 19:44:23 2019-10-16 19:56:27 t 1 1 124248 408 0.00 2019-10-16 19:53:52 2019-10-16 19:57:08 t 1 1 124250 562 0.00 2019-10-16 19:58:47 2019-10-16 19:59:13 t 1 1 124252 306 0.00 2019-10-16 19:59:54 2019-10-16 20:00:37 t 1 1 124257 566 0.00 2019-10-16 20:05:54 2019-10-16 20:08:57 t 1 1 124265 468 0.00 2019-10-16 20:17:47 2019-10-16 20:17:47 f 1 1 124268 554 0.00 2019-10-16 19:48:04 2019-10-16 20:20:16 t 1 1 124271 456 0.00 2019-10-16 20:19:47 2019-10-16 20:22:43 t 1 1 124273 512 0.00 2019-10-16 20:19:03 2019-10-16 20:22:50 t 1 1 124082 522 0.00 2019-10-16 17:03:53 2019-10-16 17:03:54 t 1 1 124083 522 0.00 2019-10-16 17:04:00 2019-10-16 17:04:01 t 1 1 124086 528 0.00 2019-10-16 17:04:19 2019-10-16 17:04:46 t 1 1 124089 528 0.00 2019-10-16 17:06:16 2019-10-16 17:06:36 t 1 1 124092 408 0.00 2019-10-16 17:01:32 2019-10-16 17:07:43 t 1 1 124093 528 0.00 2019-10-16 17:07:35 2019-10-16 17:08:01 t 1 1 124094 528 0.00 2019-10-16 17:08:43 2019-10-16 17:09:06 t 1 1 124098 562 0.00 2019-10-16 17:11:58 2019-10-16 17:12:07 t 1 1 124100 514 0.00 2019-10-16 16:39:50 2019-10-16 17:13:55 t 1 1 124105 538 0.00 2019-10-16 16:38:03 2019-10-16 17:18:22 t 1 1 124108 528 0.00 2019-10-16 17:21:43 2019-10-16 17:22:29 t 1 1 124111 522 0.00 2019-10-16 17:23:21 2019-10-16 17:23:23 t 1 1 124114 481 0.00 2019-10-16 17:04:34 2019-10-16 17:24:25 t 1 1 124118 528 0.00 2019-10-16 17:23:09 2019-10-16 17:27:44 t 1 1 124120 522 0.00 2019-10-16 17:26:54 2019-10-16 17:28:33 t 1 1 124121 445 0.00 2019-10-16 17:22:44 2019-10-16 17:29:06 t 1 1 124126 562 0.00 2019-10-16 17:39:24 2019-10-16 17:40:05 t 1 1 124128 522 0.00 2019-10-16 17:27:01 2019-10-16 17:44:17 t 1 1 124134 449 0.00 2019-10-16 17:43:47 2019-10-16 17:47:17 t 1 1 124142 372 0.00 2019-10-16 17:44:49 2019-10-16 17:59:46 t 1 2 124148 554 0.00 2019-10-16 16:37:24 2019-10-16 18:11:38 t 1 1 124151 430 0.00 2019-10-16 18:02:23 2019-10-16 18:15:23 t 1 1 124152 430 0.00 2019-10-16 18:15:23 2019-10-16 18:16:56 t 1 1 124153 220 0.00 2019-10-16 16:11:55 2019-10-16 18:17:37 t 1 2 124157 508 0.00 2019-10-16 18:22:04 2019-10-16 18:22:36 t 1 2 124158 562 0.00 2019-10-16 18:23:26 2019-10-16 18:24:20 t 1 1 124162 430 0.00 2019-10-16 18:17:27 2019-10-16 18:27:14 t 1 1 124166 430 0.00 2019-10-16 18:27:20 2019-10-16 18:32:21 t 1 1 124173 445 0.00 2019-10-16 18:33:40 2019-10-16 18:42:32 t 1 1 124177 306 0.00 2019-10-16 18:36:21 2019-10-16 18:45:54 t 1 1 124179 468 0.00 2019-10-16 18:24:54 2019-10-16 18:46:42 t 1 1 124184 562 0.00 2019-10-16 18:49:33 2019-10-16 18:49:42 t 1 1 124186 562 0.00 2019-10-16 18:49:50 2019-10-16 18:50:29 t 1 1 124188 306 0.00 2019-10-16 18:47:13 2019-10-16 18:54:23 t 1 1 124189 562 0.00 2019-10-16 18:52:35 2019-10-16 18:55:04 t 1 1 124192 522 0.00 2019-10-16 18:50:12 2019-10-16 18:56:28 t 1 1 124193 522 0.00 2019-10-16 18:56:33 2019-10-16 18:56:43 t 1 1 124196 522 0.00 2019-10-16 18:57:00 2019-10-16 18:58:33 t 1 1 124198 522 0.00 2019-10-16 18:56:48 2019-10-16 18:59:33 t 1 1 124207 379 0.00 2019-10-16 19:10:50 2019-10-16 19:12:29 t 1 1 124209 468 0.00 2019-10-16 18:55:55 2019-10-16 19:14:33 t 1 1 124213 306 0.00 2019-10-16 19:01:16 2019-10-16 19:23:38 t 1 1 124214 468 0.00 2019-10-16 19:14:33 2019-10-16 19:24:18 t 1 1 124217 445 0.00 2019-10-16 19:25:42 2019-10-16 19:27:09 t 1 1 124218 306 0.00 2019-10-16 19:23:53 2019-10-16 19:29:06 t 1 1 124220 562 0.00 2019-10-16 19:30:17 2019-10-16 19:30:25 t 1 1 124222 562 0.00 2019-10-16 19:31:32 2019-10-16 19:32:13 t 1 1 124225 445 0.00 2019-10-16 19:27:40 2019-10-16 19:35:53 t 1 1 124226 562 0.00 2019-10-16 19:37:00 2019-10-16 19:37:30 t 1 1 124227 490 0.00 2019-10-16 19:28:23 2019-10-16 19:39:16 t 1 1 124233 306 0.00 2019-10-16 19:42:23 2019-10-16 19:43:42 t 1 1 124235 468 0.00 2019-10-16 19:24:28 2019-10-16 19:44:23 t 1 1 124236 408 0.00 2019-10-16 19:45:13 2019-10-16 19:46:48 t 1 1 124240 445 0.00 2019-10-16 19:36:00 2019-10-16 19:48:54 t 1 1 124241 562 0.00 2019-10-16 19:48:51 2019-10-16 19:49:48 t 1 1 124244 445 0.00 2019-10-16 19:49:58 2019-10-16 19:53:05 t 1 1 124245 566 0.00 2019-10-16 19:42:44 2019-10-16 19:54:58 t 1 1 124246 372 0.00 2019-10-16 19:52:56 2019-10-16 19:56:18 t 1 2 124251 372 0.00 2019-10-16 19:56:22 2019-10-16 19:59:16 t 1 2 124253 306 0.00 2019-10-16 20:00:36 2019-10-16 20:03:11 t 1 1 124255 562 0.00 2019-10-16 20:07:22 2019-10-16 20:07:38 t 1 1 124256 562 0.00 2019-10-16 20:08:04 2019-10-16 20:08:34 t 1 1 124259 562 0.00 2019-10-16 20:09:39 2019-10-16 20:09:49 t 1 1 124261 468 0.00 2019-10-16 20:11:27 2019-10-16 20:11:27 f 1 1 124263 468 0.00 2019-10-16 20:13:39 2019-10-16 20:13:39 f 1 1 124264 490 0.00 2019-10-16 20:14:07 2019-10-16 20:14:16 t 1 1 124270 468 0.00 2019-10-16 20:21:58 2019-10-16 20:21:58 f 1 1 124272 445 0.00 2019-10-16 20:11:35 2019-10-16 20:22:44 t 1 1 124275 468 0.00 2019-10-16 20:27:13 2019-10-16 20:27:13 f 1 1 124276 554 0.00 2019-10-16 20:20:15 2019-10-16 20:28:53 t 1 1 124277 468 0.00 2019-10-16 20:28:59 2019-10-16 20:28:59 f 1 1 124283 558 0.00 2019-10-16 19:51:24 2019-10-16 20:34:26 t 1 1 124285 562 0.00 2019-10-16 20:36:28 2019-10-16 20:37:15 t 1 1 124286 562 0.00 2019-10-16 20:38:25 2019-10-16 20:40:14 t 1 1 124289 468 0.00 2019-10-16 20:42:25 2019-10-16 20:42:25 f 1 1 124291 558 0.00 2019-10-16 20:34:26 2019-10-16 20:43:32 t 1 1 124292 468 0.00 2019-10-16 20:44:14 2019-10-16 20:44:14 f 1 1 124294 306 0.00 2019-10-16 20:42:27 2019-10-16 20:44:56 t 1 1 124296 445 0.00 2019-10-16 20:22:46 2019-10-16 20:45:39 t 1 1 124302 445 0.00 2019-10-16 20:50:09 2019-10-16 20:51:25 t 1 1 124303 564 0.00 2019-10-16 18:43:20 2019-10-16 20:52:29 t 1 1 124305 562 0.00 2019-10-16 20:52:54 2019-10-16 20:53:28 t 1 1 124306 445 0.00 2019-10-16 20:52:59 2019-10-16 20:55:09 t 1 1 124312 306 0.00 2019-10-16 20:58:19 2019-10-16 21:07:40 t 1 1 124314 562 0.00 2019-10-16 21:07:05 2019-10-16 21:08:25 t 1 1 124318 562 0.00 2019-10-16 21:16:03 2019-10-16 21:16:24 t 1 1 124322 562 0.00 2019-10-16 21:17:27 2019-10-16 21:18:31 t 1 1 124323 562 0.00 2019-10-16 21:18:54 2019-10-16 21:19:26 t 1 1 124326 306 0.00 2019-10-16 21:21:52 2019-10-16 21:23:24 t 1 1 124329 470 0.00 2019-10-16 21:16:42 2019-10-16 21:29:01 t 1 1 124331 449 0.00 2019-10-16 21:28:17 2019-10-16 21:31:54 t 1 1 124333 522 0.00 2019-10-16 21:37:07 2019-10-16 21:37:10 t 1 1 124337 522 0.00 2019-10-16 21:38:39 2019-10-16 21:38:39 f 1 1 124339 522 0.00 2019-10-16 21:38:07 2019-10-16 21:39:33 t 1 1 124340 566 0.00 2019-10-16 21:28:08 2019-10-16 21:40:04 t 1 1 124341 520 0.00 2019-10-16 21:05:59 2019-10-16 21:40:08 t 1 1 124344 296 0.00 2019-10-16 21:40:08 2019-10-16 21:44:32 t 1 2 124347 562 0.00 2019-10-16 21:47:45 2019-10-16 21:48:22 t 1 1 124351 220 0.00 2019-10-16 21:34:55 2019-10-16 21:53:26 t 1 1 124353 545 0.00 2019-10-16 20:34:13 2019-10-16 21:53:48 t 1 1 124356 306 0.00 2019-10-16 21:33:39 2019-10-16 21:55:16 t 1 1 124358 520 0.00 2019-10-16 21:40:08 2019-10-16 21:56:12 t 1 1 124363 562 0.00 2019-10-16 21:58:35 2019-10-16 21:59:15 t 1 1 124366 512 0.00 2019-10-16 22:09:19 2019-10-16 22:09:27 t 1 1 124370 551 0.00 2019-10-16 21:57:46 2019-10-16 22:13:57 t 1 1 124374 485 0.00 2019-10-16 22:14:32 2019-10-16 22:18:09 t 1 1 124375 526 0.00 2019-10-16 22:18:54 2019-10-16 22:19:31 t 1 1 124109 522 0.00 2019-10-16 17:23:00 2019-10-16 17:23:03 t 1 1 124110 522 0.00 2019-10-16 17:23:14 2019-10-16 17:23:16 t 1 1 124115 516 0.00 2019-10-16 17:20:17 2019-10-16 17:24:42 t 1 1 124116 562 0.00 2019-10-16 17:20:26 2019-10-16 17:25:06 t 1 1 124117 522 0.00 2019-10-16 17:23:56 2019-10-16 17:26:25 t 1 1 124122 445 0.00 2019-10-16 17:29:06 2019-10-16 17:30:05 t 1 1 124124 562 0.00 2019-10-16 17:30:35 2019-10-16 17:32:42 t 1 1 124125 562 0.00 2019-10-16 17:32:50 2019-10-16 17:32:59 t 1 1 124130 558 0.00 2019-10-16 17:45:13 2019-10-16 17:45:40 t 1 1 124132 522 0.00 2019-10-16 17:46:23 2019-10-16 17:46:23 f 1 1 124133 522 0.00 2019-10-16 17:46:58 2019-10-16 17:46:58 f 1 1 124135 522 0.00 2019-10-16 17:46:11 2019-10-16 17:47:33 t 1 1 124137 296 0.00 2019-10-16 17:45:33 2019-10-16 17:48:33 t 1 2 124139 562 0.00 2019-10-16 17:55:12 2019-10-16 17:56:28 t 1 1 124140 562 0.00 2019-10-16 17:56:53 2019-10-16 17:57:10 t 1 1 124143 430 0.00 2019-10-16 17:47:00 2019-10-16 18:00:15 t 1 1 124144 430 0.00 2019-10-16 18:00:14 2019-10-16 18:02:18 t 1 1 124145 562 0.00 2019-10-16 18:01:01 2019-10-16 18:05:15 t 1 1 124156 562 0.00 2019-10-16 18:21:58 2019-10-16 18:22:06 t 1 1 124159 516 0.00 2019-10-16 18:01:46 2019-10-16 18:24:24 t 1 1 124161 508 0.00 2019-10-16 18:22:42 2019-10-16 18:24:56 t 1 2 124163 562 0.00 2019-10-16 18:27:46 2019-10-16 18:28:09 t 1 1 124165 562 0.00 2019-10-16 18:30:19 2019-10-16 18:31:14 t 1 1 124168 445 0.00 2019-10-16 18:14:26 2019-10-16 18:33:10 t 1 1 124170 562 0.00 2019-10-16 18:34:51 2019-10-16 18:38:29 t 1 1 124172 564 0.00 2019-10-16 12:11:12 2019-10-16 18:40:59 t 1 1 124175 522 0.00 2019-10-16 18:44:35 2019-10-16 18:45:14 t 1 1 124180 522 0.00 2019-10-16 18:45:19 2019-10-16 18:47:33 t 1 1 124183 562 0.00 2019-10-16 18:49:02 2019-10-16 18:49:26 t 1 1 124185 522 0.00 2019-10-16 18:49:20 2019-10-16 18:49:49 t 1 1 124187 514 0.00 2019-10-16 18:22:40 2019-10-16 18:54:15 t 1 1 124190 468 0.00 2019-10-16 18:47:48 2019-10-16 18:55:35 t 1 1 124199 554 0.00 2019-10-16 18:11:38 2019-10-16 19:00:03 t 1 1 124203 554 0.00 2019-10-16 19:00:57 2019-10-16 19:03:14 t 1 1 124204 562 0.00 2019-10-16 19:04:04 2019-10-16 19:04:16 t 1 1 124205 554 0.00 2019-10-16 19:03:14 2019-10-16 19:09:17 t 1 1 124206 554 0.00 2019-10-16 19:09:17 2019-10-16 19:11:56 t 1 1 124208 445 0.00 2019-10-16 18:42:44 2019-10-16 19:14:15 t 1 1 124215 445 0.00 2019-10-16 19:14:23 2019-10-16 19:25:23 t 1 1 124216 562 0.00 2019-10-16 19:19:07 2019-10-16 19:26:05 t 1 1 124219 520 0.00 2019-10-16 19:23:09 2019-10-16 19:29:43 t 1 1 124223 306 0.00 2019-10-16 19:30:39 2019-10-16 19:32:26 t 1 1 124231 566 0.00 2019-10-16 19:35:06 2019-10-16 19:42:44 t 1 1 124232 554 0.00 2019-10-16 19:11:56 2019-10-16 19:42:46 t 1 1 124239 562 0.00 2019-10-16 19:48:26 2019-10-16 19:48:41 t 1 1 124242 562 0.00 2019-10-16 19:49:47 2019-10-16 19:50:22 t 1 1 124249 445 0.00 2019-10-16 19:53:25 2019-10-16 19:58:29 t 1 1 124254 566 0.00 2019-10-16 19:54:58 2019-10-16 20:05:54 t 1 1 124258 562 0.00 2019-10-16 20:09:03 2019-10-16 20:09:11 t 1 1 124260 468 0.00 2019-10-16 19:56:27 2019-10-16 20:11:27 t 1 1 124262 445 0.00 2019-10-16 19:58:33 2019-10-16 20:11:29 t 1 1 124266 468 0.00 2019-10-16 20:17:56 2019-10-16 20:17:56 f 1 1 124267 468 0.00 2019-10-16 20:18:32 2019-10-16 20:18:32 f 1 1 124269 306 0.00 2019-10-16 20:17:43 2019-10-16 20:20:57 t 1 1 124280 468 0.00 2019-10-16 20:30:51 2019-10-16 20:30:51 f 1 1 124287 292 0.00 2019-10-16 20:20:26 2019-10-16 20:40:31 t 1 2 124290 379 0.00 2019-10-16 20:31:15 2019-10-16 20:42:25 t 1 1 124293 520 0.00 2019-10-16 19:29:57 2019-10-16 20:44:32 t 1 1 124295 562 0.00 2019-10-16 20:44:53 2019-10-16 20:45:35 t 1 1 124299 449 0.00 2019-10-16 20:47:39 2019-10-16 20:49:17 t 1 1 124307 562 0.00 2019-10-16 20:54:26 2019-10-16 20:56:22 t 1 1 124308 445 0.00 2019-10-16 20:55:56 2019-10-16 20:57:42 t 1 1 124309 562 0.00 2019-10-16 21:01:18 2019-10-16 21:02:35 t 1 1 124310 220 0.00 2019-10-16 18:22:11 2019-10-16 21:04:35 t 1 2 124311 520 0.00 2019-10-16 20:44:58 2019-10-16 21:05:41 t 1 1 124315 566 0.00 2019-10-16 20:48:59 2019-10-16 21:08:56 t 1 1 124316 562 0.00 2019-10-16 21:09:48 2019-10-16 21:09:58 t 1 1 124317 445 0.00 2019-10-16 20:57:41 2019-10-16 21:12:22 t 1 1 124319 470 0.00 2019-10-16 20:54:22 2019-10-16 21:16:42 t 1 1 124325 562 0.00 2019-10-16 21:19:42 2019-10-16 21:20:50 t 1 1 124332 522 0.00 2019-10-16 21:33:55 2019-10-16 21:37:02 t 1 1 124334 562 0.00 2019-10-16 21:36:54 2019-10-16 21:37:22 t 1 1 124336 522 0.00 2019-10-16 21:38:32 2019-10-16 21:38:32 f 1 1 124345 570 0.00 2019-10-16 21:20:16 2019-10-16 21:46:19 t 1 1 124346 566 0.00 2019-10-16 21:40:04 2019-10-16 21:47:40 t 1 1 124349 468 0.00 2019-10-16 21:49:17 2019-10-16 21:49:17 f 1 1 124350 512 0.00 2019-10-16 21:47:32 2019-10-16 21:50:06 t 1 1 124354 470 0.00 2019-10-16 21:48:56 2019-10-16 21:54:18 t 1 1 124357 551 0.00 2019-10-16 21:53:25 2019-10-16 21:55:24 t 1 1 124360 512 0.00 2019-10-16 21:50:06 2019-10-16 21:56:17 t 1 1 124361 412 0.00 2019-10-16 20:32:04 2019-10-16 21:57:18 t 1 1 124362 551 0.00 2019-10-16 21:55:24 2019-10-16 21:57:46 t 1 1 124365 520 0.00 2019-10-16 21:56:11 2019-10-16 22:08:41 t 1 1 124369 306 0.00 2019-10-16 22:03:53 2019-10-16 22:13:10 t 1 1 124372 470 0.00 2019-10-16 21:54:18 2019-10-16 22:17:19 t 1 1 124378 556 0.00 2019-10-16 15:22:18 2019-10-16 22:23:11 t 1 1 124379 445 0.00 2019-10-16 22:17:17 2019-10-16 22:27:06 t 1 1 124384 372 0.00 2019-10-16 22:32:36 2019-10-16 22:34:40 t 1 2 124385 456 0.00 2019-10-16 21:53:28 2019-10-16 22:35:02 t 1 1 124395 408 0.00 2019-10-16 22:20:34 2019-10-16 22:46:06 t 1 1 124397 545 0.00 2019-10-16 21:55:34 2019-10-16 22:48:09 t 1 1 124399 570 0.00 2019-10-16 22:46:00 2019-10-16 22:51:27 t 1 1 124400 212 0.00 2019-10-16 22:52:03 2019-10-16 22:52:03 f 1 2 124403 445 0.00 2019-10-16 22:27:06 2019-10-16 22:53:37 t 1 1 124406 306 0.00 2019-10-16 22:39:53 2019-10-16 22:55:47 t 1 1 124409 562 0.00 2019-10-16 23:00:07 2019-10-16 23:00:36 t 1 1 124411 528 0.00 2019-10-16 22:46:22 2019-10-16 23:04:11 t 1 1 124413 554 0.00 2019-10-16 20:28:53 2019-10-16 23:05:22 t 1 1 124418 551 0.00 2019-10-16 22:42:55 2019-10-16 23:15:49 t 1 1 124419 551 0.00 2019-10-16 23:15:26 2019-10-16 23:16:33 t 1 1 124420 220 0.00 2019-10-16 22:33:19 2019-10-16 23:18:25 t 1 2 124423 212 0.00 2019-10-16 23:18:54 2019-10-16 23:18:54 f 1 2 124426 566 0.00 2019-10-16 22:55:42 2019-10-16 23:20:47 t 1 1 124427 570 0.00 2019-10-16 23:00:23 2019-10-16 23:21:42 t 1 1 124443 485 0.00 2019-10-16 23:27:49 2019-10-16 23:33:39 t 1 1 124444 451 0.00 2019-10-16 23:26:20 2019-10-16 23:33:53 t 1 1 124447 451 0.00 2019-10-16 23:33:53 2019-10-16 23:36:21 t 1 1 124274 306 0.00 2019-10-16 20:21:54 2019-10-16 20:24:00 t 1 1 124278 468 0.00 2019-10-16 20:29:17 2019-10-16 20:29:17 f 1 1 124279 562 0.00 2019-10-16 20:14:30 2019-10-16 20:30:03 t 1 1 124281 412 0.00 2019-10-16 18:45:13 2019-10-16 20:32:04 t 1 1 124282 545 0.00 2019-10-16 20:25:40 2019-10-16 20:34:13 t 1 1 124284 562 0.00 2019-10-16 20:33:48 2019-10-16 20:35:34 t 1 1 124288 516 0.00 2019-10-16 20:22:42 2019-10-16 20:40:57 t 1 1 124297 445 0.00 2019-10-16 20:45:39 2019-10-16 20:46:43 t 1 1 124298 566 0.00 2019-10-16 20:43:26 2019-10-16 20:48:59 t 1 1 124300 562 0.00 2019-10-16 20:47:07 2019-10-16 20:49:22 t 1 1 124301 562 0.00 2019-10-16 20:49:59 2019-10-16 20:51:18 t 1 1 124304 445 0.00 2019-10-16 20:51:29 2019-10-16 20:52:52 t 1 1 124313 514 0.00 2019-10-16 20:55:31 2019-10-16 21:08:16 t 1 1 124320 445 0.00 2019-10-16 21:12:49 2019-10-16 21:17:33 t 1 1 124321 306 0.00 2019-10-16 21:12:04 2019-10-16 21:18:26 t 1 1 124324 566 0.00 2019-10-16 21:08:56 2019-10-16 21:20:47 t 1 1 124327 422 0.00 2019-10-16 19:40:05 2019-10-16 21:26:14 t 1 1 124328 566 0.00 2019-10-16 21:20:47 2019-10-16 21:28:08 t 1 1 124330 562 0.00 2019-10-16 21:26:17 2019-10-16 21:29:41 t 1 1 124335 449 0.00 2019-10-16 21:31:54 2019-10-16 21:37:53 t 1 1 124338 522 0.00 2019-10-16 21:38:19 2019-10-16 21:39:33 t 1 1 124342 551 0.00 2019-10-16 20:35:33 2019-10-16 21:42:18 t 1 1 124343 472 0.00 2019-10-16 21:42:09 2019-10-16 21:43:08 t 1 1 124348 470 0.00 2019-10-16 21:29:01 2019-10-16 21:48:56 t 1 1 124352 551 0.00 2019-10-16 21:42:18 2019-10-16 21:53:26 t 1 1 124355 379 0.00 2019-10-16 20:43:11 2019-10-16 21:55:12 t 1 1 124359 379 0.00 2019-10-16 21:55:12 2019-10-16 21:56:13 t 1 1 124364 562 0.00 2019-10-16 21:59:32 2019-10-16 22:02:09 t 1 1 124367 562 0.00 2019-10-16 22:09:23 2019-10-16 22:09:48 t 1 1 124368 508 0.00 2019-10-16 22:07:27 2019-10-16 22:10:25 t 1 2 124371 445 0.00 2019-10-16 21:17:36 2019-10-16 22:17:17 t 1 1 124373 562 0.00 2019-10-16 22:17:12 2019-10-16 22:17:26 t 1 1 124377 528 0.00 2019-10-16 21:56:49 2019-10-16 22:21:09 t 1 1 124380 551 0.00 2019-10-16 22:13:57 2019-10-16 22:27:21 t 1 1 124381 562 0.00 2019-10-16 22:27:51 2019-10-16 22:28:14 t 1 1 124382 331 0.00 2019-10-16 22:27:25 2019-10-16 22:31:58 t 1 1 124383 470 0.00 2019-10-16 22:17:19 2019-10-16 22:33:13 t 1 1 124389 566 0.00 2019-10-16 22:20:30 2019-10-16 22:39:15 t 1 1 124390 564 0.00 2019-10-16 20:52:29 2019-10-16 22:41:48 t 1 1 124392 551 0.00 2019-10-16 22:27:21 2019-10-16 22:42:55 t 1 1 124393 558 0.00 2019-10-16 22:36:50 2019-10-16 22:43:41 t 1 1 124396 528 0.00 2019-10-16 22:21:09 2019-10-16 22:46:22 t 1 1 124404 542 0.00 2019-10-16 21:55:14 2019-10-16 22:55:38 t 1 1 124407 472 0.00 2019-10-16 21:44:56 2019-10-16 22:58:42 t 1 1 124408 570 0.00 2019-10-16 22:51:27 2019-10-16 23:00:23 t 1 1 124410 512 0.00 2019-10-16 22:54:04 2019-10-16 23:02:31 t 1 1 124412 485 0.00 2019-10-16 23:02:26 2019-10-16 23:05:01 t 1 1 124414 545 0.00 2019-10-16 22:48:15 2019-10-16 23:08:20 t 1 1 124417 220 0.00 2019-10-16 21:53:26 2019-10-16 23:14:09 t 1 1 124424 551 0.00 2019-10-16 23:16:27 2019-10-16 23:19:02 t 1 1 124425 327 0.00 2019-10-16 19:41:22 2019-10-16 23:19:43 t 1 1 124429 514 0.00 2019-10-16 21:26:43 2019-10-16 23:22:33 t 1 1 124430 551 0.00 2019-10-16 23:19:14 2019-10-16 23:23:00 t 1 1 124431 551 0.00 2019-10-16 23:23:12 2019-10-16 23:24:19 t 1 1 124436 470 0.00 2019-10-16 22:33:13 2019-10-16 23:28:44 t 1 1 124438 327 0.00 2019-10-16 23:19:43 2019-10-16 23:30:49 t 1 1 124445 485 0.00 2019-10-16 23:33:39 2019-10-16 23:35:31 t 1 1 124451 485 0.00 2019-10-16 23:38:47 2019-10-16 23:45:10 t 1 1 124455 456 0.00 2019-10-16 23:34:51 2019-10-16 23:48:30 t 1 1 124462 562 0.00 2019-10-17 00:04:57 2019-10-17 00:05:24 t 1 1 124465 566 0.00 2019-10-16 23:49:39 2019-10-17 00:06:42 t 1 1 124468 570 0.00 2019-10-16 23:40:21 2019-10-17 00:09:52 t 1 1 124473 570 0.00 2019-10-17 00:09:52 2019-10-17 00:12:21 t 1 1 124477 451 0.00 2019-10-17 00:10:11 2019-10-17 00:15:50 t 1 1 124482 516 0.00 2019-10-17 00:15:53 2019-10-17 00:18:36 t 1 1 124483 542 0.00 2019-10-17 00:06:01 2019-10-17 00:26:24 t 1 1 124487 470 0.00 2019-10-16 23:28:44 2019-10-17 00:32:16 t 1 1 124489 468 0.00 2019-10-17 00:34:24 2019-10-17 00:34:24 f 1 1 124491 468 0.00 2019-10-17 00:35:36 2019-10-17 00:35:36 f 1 1 124493 562 0.00 2019-10-17 00:37:18 2019-10-17 00:37:44 t 1 1 124501 501 0.00 2019-10-17 00:47:56 2019-10-17 00:50:11 t 1 1 124502 501 0.00 2019-10-17 00:50:11 2019-10-17 00:54:04 t 1 1 124503 562 0.00 2019-10-17 00:55:50 2019-10-17 00:56:01 t 1 1 124507 501 0.00 2019-10-17 00:57:03 2019-10-17 01:03:14 t 1 1 124508 503 0.00 2019-10-17 00:56:55 2019-10-17 01:06:00 t 1 1 124513 562 0.00 2019-10-17 01:28:03 2019-10-17 01:28:25 t 1 1 124516 501 0.00 2019-10-17 01:36:19 2019-10-17 01:44:29 t 1 1 124521 470 0.00 2019-10-17 00:32:13 2019-10-17 01:50:45 t 1 1 124523 501 0.00 2019-10-17 01:52:50 2019-10-17 01:52:58 t 1 1 124526 562 0.00 2019-10-17 02:00:26 2019-10-17 02:00:44 t 1 1 124529 445 0.00 2019-10-17 02:14:36 2019-10-17 02:17:57 t 1 1 124533 551 0.00 2019-10-16 23:24:25 2019-10-17 02:41:22 t 1 1 124535 395 0.00 2019-10-17 02:10:06 2019-10-17 02:50:06 t 1 2 124543 562 0.00 2019-10-17 03:42:57 2019-10-17 03:43:46 t 1 1 124544 562 0.00 2019-10-17 03:54:10 2019-10-17 03:54:33 t 1 1 124545 562 0.00 2019-10-17 04:04:57 2019-10-17 04:05:16 t 1 1 124546 562 0.00 2019-10-17 04:15:44 2019-10-17 04:16:05 t 1 1 124550 445 0.00 2019-10-17 04:28:09 2019-10-17 04:33:51 t 1 1 124558 485 0.00 2019-10-17 05:18:09 2019-10-17 05:20:29 t 1 1 124561 445 0.00 2019-10-17 05:24:32 2019-10-17 05:31:07 t 1 1 124562 562 0.00 2019-10-17 05:36:16 2019-10-17 05:36:37 t 1 1 124563 562 0.00 2019-10-17 05:46:54 2019-10-17 05:47:21 t 1 1 124564 520 0.00 2019-10-17 05:04:56 2019-10-17 05:49:08 t 1 1 124566 566 0.00 2019-10-17 05:54:49 2019-10-17 06:05:30 t 1 1 124567 562 0.00 2019-10-17 06:08:32 2019-10-17 06:08:56 t 1 1 124572 566 0.00 2019-10-17 06:15:56 2019-10-17 06:24:48 t 1 1 124576 562 0.00 2019-10-17 06:40:56 2019-10-17 06:41:10 t 1 1 124579 562 0.00 2019-10-17 06:50:41 2019-10-17 06:51:57 t 1 1 124588 562 0.00 2019-10-17 07:19:35 2019-10-17 07:20:22 t 1 1 124589 306 0.00 2019-10-17 07:11:24 2019-10-17 07:22:02 t 1 1 124590 412 0.00 2019-10-16 23:56:47 2019-10-17 07:25:13 t 1 1 124591 568 0.00 2019-10-17 07:27:37 2019-10-17 07:30:00 t 1 1 124594 306 0.00 2019-10-17 07:35:21 2019-10-17 07:36:45 t 1 1 124596 472 0.00 2019-10-17 07:37:21 2019-10-17 07:38:07 t 1 1 124600 306 0.00 2019-10-17 07:47:00 2019-10-17 07:49:07 t 1 1 124602 562 0.00 2019-10-17 07:49:54 2019-10-17 07:56:21 t 1 1 124606 422 0.00 2019-10-17 06:25:18 2019-10-17 08:05:21 t 1 1 124376 566 0.00 2019-10-16 21:47:40 2019-10-16 22:20:30 t 1 1 124386 412 0.00 2019-10-16 21:57:18 2019-10-16 22:35:13 t 1 1 124387 558 0.00 2019-10-16 22:28:01 2019-10-16 22:36:07 t 1 1 124388 562 0.00 2019-10-16 22:38:40 2019-10-16 22:39:04 t 1 1 124391 361 0.00 2019-10-16 18:51:22 2019-10-16 22:42:00 t 1 2 124394 570 0.00 2019-10-16 22:25:35 2019-10-16 22:46:00 t 1 1 124398 562 0.00 2019-10-16 22:49:39 2019-10-16 22:49:49 t 1 1 124401 412 0.00 2019-10-16 22:35:13 2019-10-16 22:52:09 t 1 1 124402 212 0.00 2019-10-16 22:52:18 2019-10-16 22:52:18 f 1 2 124405 566 0.00 2019-10-16 22:39:15 2019-10-16 22:55:42 t 1 1 124415 325 0.00 2019-10-16 22:25:23 2019-10-16 23:10:28 t 1 2 124416 562 0.00 2019-10-16 23:10:59 2019-10-16 23:11:22 t 1 1 124421 412 0.00 2019-10-16 22:52:09 2019-10-16 23:18:39 t 1 1 124422 212 0.00 2019-10-16 23:18:49 2019-10-16 23:18:49 f 1 2 124428 562 0.00 2019-10-16 23:21:49 2019-10-16 23:22:11 t 1 1 124432 451 0.00 2019-10-16 23:19:16 2019-10-16 23:26:20 t 1 1 124433 408 0.00 2019-10-16 22:46:06 2019-10-16 23:26:57 t 1 1 124434 485 0.00 2019-10-16 23:07:02 2019-10-16 23:27:49 t 1 1 124435 528 0.00 2019-10-16 23:04:11 2019-10-16 23:28:11 t 1 1 124437 456 0.00 2019-10-16 23:04:42 2019-10-16 23:30:05 t 1 1 124439 408 0.00 2019-10-16 23:26:57 2019-10-16 23:31:17 t 1 1 124440 570 0.00 2019-10-16 23:21:42 2019-10-16 23:31:24 t 1 1 124441 412 0.00 2019-10-16 23:18:39 2019-10-16 23:32:39 t 1 1 124442 562 0.00 2019-10-16 23:32:34 2019-10-16 23:33:00 t 1 1 124446 566 0.00 2019-10-16 23:20:47 2019-10-16 23:36:11 t 1 1 124449 570 0.00 2019-10-16 23:31:24 2019-10-16 23:40:21 t 1 1 124450 562 0.00 2019-10-16 23:43:22 2019-10-16 23:43:49 t 1 1 124452 408 0.00 2019-10-16 23:31:17 2019-10-16 23:46:24 t 1 1 124453 514 0.00 2019-10-16 23:22:33 2019-10-16 23:48:15 t 1 1 124456 566 0.00 2019-10-16 23:36:11 2019-10-16 23:49:39 t 1 1 124458 562 0.00 2019-10-16 23:54:12 2019-10-16 23:54:34 t 1 1 124459 451 0.00 2019-10-16 23:39:41 2019-10-16 23:55:15 t 1 1 124460 445 0.00 2019-10-16 22:56:56 2019-10-16 23:56:31 t 1 1 124466 545 0.00 2019-10-17 00:05:46 2019-10-17 00:09:04 t 1 1 124469 562 0.00 2019-10-17 00:09:40 2019-10-17 00:09:54 t 1 1 124470 451 0.00 2019-10-16 23:56:50 2019-10-17 00:10:11 t 1 1 124471 514 0.00 2019-10-17 00:09:22 2019-10-17 00:10:17 t 1 1 124476 501 0.00 2019-10-16 23:39:56 2019-10-17 00:15:11 t 1 1 124478 516 0.00 2019-10-16 23:52:39 2019-10-17 00:15:53 t 1 1 124480 395 0.00 2019-10-17 00:15:35 2019-10-17 00:16:38 t 1 2 124484 562 0.00 2019-10-17 00:26:32 2019-10-17 00:26:57 t 1 1 124486 542 0.00 2019-10-17 00:27:51 2019-10-17 00:30:38 t 1 1 124488 501 0.00 2019-10-17 00:15:11 2019-10-17 00:32:27 t 1 1 124490 468 0.00 2019-10-17 00:34:35 2019-10-17 00:34:35 f 1 1 124494 361 0.00 2019-10-16 23:26:36 2019-10-17 00:40:22 t 1 2 124495 558 0.00 2019-10-16 23:56:21 2019-10-17 00:44:02 t 1 1 124497 562 0.00 2019-10-17 00:44:59 2019-10-17 00:45:20 t 1 1 124500 556 0.00 2019-10-16 22:23:11 2019-10-17 00:49:05 t 1 1 124506 422 0.00 2019-10-17 00:14:32 2019-10-17 01:01:42 t 1 1 124509 501 0.00 2019-10-17 01:03:14 2019-10-17 01:06:07 t 1 1 124514 501 0.00 2019-10-17 01:06:07 2019-10-17 01:36:19 t 1 1 124515 562 0.00 2019-10-17 01:38:50 2019-10-17 01:39:10 t 1 1 124519 501 0.00 2019-10-17 01:47:32 2019-10-17 01:48:33 t 1 1 124520 562 0.00 2019-10-17 01:49:44 2019-10-17 01:49:59 t 1 1 124522 501 0.00 2019-10-17 01:49:19 2019-10-17 01:51:49 t 1 1 124524 501 0.00 2019-10-17 01:53:51 2019-10-17 01:55:33 t 1 1 124525 501 0.00 2019-10-17 01:57:30 2019-10-17 01:59:37 t 1 1 124528 445 0.00 2019-10-16 23:56:31 2019-10-17 02:14:16 t 1 1 124530 562 0.00 2019-10-17 02:21:58 2019-10-17 02:22:16 t 1 1 124531 562 0.00 2019-10-17 02:32:39 2019-10-17 02:33:03 t 1 1 124532 445 0.00 2019-10-17 02:17:56 2019-10-17 02:34:49 t 1 1 124534 562 0.00 2019-10-17 02:43:28 2019-10-17 02:43:51 t 1 1 124538 562 0.00 2019-10-17 03:05:02 2019-10-17 03:05:21 t 1 1 124539 562 0.00 2019-10-17 03:15:47 2019-10-17 03:16:07 t 1 1 124547 445 0.00 2019-10-17 02:34:49 2019-10-17 04:20:49 t 1 1 124548 562 0.00 2019-10-17 04:23:16 2019-10-17 04:24:26 t 1 1 124549 445 0.00 2019-10-17 04:20:49 2019-10-17 04:28:09 t 1 1 124551 562 0.00 2019-10-17 04:34:05 2019-10-17 04:34:31 t 1 1 124556 562 0.00 2019-10-17 05:17:12 2019-10-17 05:17:32 t 1 1 124557 445 0.00 2019-10-17 05:13:17 2019-10-17 05:18:13 t 1 1 124560 562 0.00 2019-10-17 05:27:57 2019-10-17 05:28:19 t 1 1 124568 566 0.00 2019-10-17 06:05:30 2019-10-17 06:15:56 t 1 1 124569 422 0.00 2019-10-17 01:24:27 2019-10-17 06:16:37 t 1 1 124573 422 0.00 2019-10-17 06:16:37 2019-10-17 06:25:18 t 1 1 124574 562 0.00 2019-10-17 06:30:10 2019-10-17 06:30:24 t 1 1 124580 566 0.00 2019-10-17 06:35:56 2019-10-17 06:58:13 t 1 1 124583 566 0.00 2019-10-17 07:01:26 2019-10-17 07:08:12 t 1 1 124584 562 0.00 2019-10-17 07:09:42 2019-10-17 07:09:55 t 1 1 124585 570 0.00 2019-10-17 06:58:38 2019-10-17 07:10:40 t 1 1 124586 562 0.00 2019-10-17 07:17:05 2019-10-17 07:17:36 t 1 1 124598 562 0.00 2019-10-17 07:37:03 2019-10-17 07:41:01 t 1 1 124599 412 0.00 2019-10-17 07:25:13 2019-10-17 07:42:17 t 1 1 124601 562 0.00 2019-10-17 07:41:01 2019-10-17 07:49:54 t 1 1 124603 516 0.00 2019-10-17 07:56:02 2019-10-17 08:02:44 t 1 1 124609 520 0.00 2019-10-17 07:58:54 2019-10-17 08:10:29 t 1 1 124610 562 0.00 2019-10-17 08:08:40 2019-10-17 08:12:41 t 1 1 124614 514 0.00 2019-10-17 07:39:47 2019-10-17 08:21:04 t 1 1 124617 562 0.00 2019-10-17 08:25:54 2019-10-17 08:26:15 t 1 1 124620 562 0.00 2019-10-17 08:34:28 2019-10-17 08:35:53 t 1 1 124621 501 0.00 2019-10-17 08:36:13 2019-10-17 08:37:38 t 1 1 124626 445 0.00 2019-10-17 05:31:07 2019-10-17 08:41:16 t 1 1 124628 520 0.00 2019-10-17 08:20:14 2019-10-17 08:41:37 t 1 1 124629 501 0.00 2019-10-17 08:41:48 2019-10-17 08:41:56 t 1 1 124635 568 0.00 2019-10-17 08:25:04 2019-10-17 08:43:57 t 1 1 124636 562 0.00 2019-10-17 08:44:18 2019-10-17 08:44:29 t 1 1 124638 501 0.00 2019-10-17 08:44:43 2019-10-17 08:44:51 t 1 1 124643 558 0.00 2019-10-17 08:25:40 2019-10-17 08:47:59 t 1 1 124654 562 0.00 2019-10-17 09:04:31 2019-10-17 09:04:39 t 1 1 124656 562 0.00 2019-10-17 09:06:31 2019-10-17 09:06:55 t 1 1 124658 501 0.00 2019-10-17 09:08:41 2019-10-17 09:10:15 t 1 1 124659 501 0.00 2019-10-17 09:11:17 2019-10-17 09:11:25 t 1 1 124660 501 0.00 2019-10-17 09:12:18 2019-10-17 09:12:26 t 1 1 124661 501 0.00 2019-10-17 09:13:18 2019-10-17 09:13:27 t 1 1 124666 516 0.00 2019-10-17 08:57:30 2019-10-17 09:18:30 t 1 1 124680 501 0.00 2019-10-17 09:29:05 2019-10-17 09:29:13 t 1 1 124683 306 0.00 2019-10-17 09:29:31 2019-10-17 09:31:43 t 1 1 124684 501 0.00 2019-10-17 09:31:59 2019-10-17 09:32:00 t 1 1 124448 558 0.00 2019-10-16 23:02:54 2019-10-16 23:37:58 t 1 1 124454 412 0.00 2019-10-16 23:32:39 2019-10-16 23:48:20 t 1 1 124457 542 0.00 2019-10-16 22:55:38 2019-10-16 23:53:44 t 1 1 124461 412 0.00 2019-10-16 23:48:20 2019-10-16 23:56:47 t 1 1 124463 545 0.00 2019-10-16 23:08:20 2019-10-17 00:05:46 t 1 1 124464 542 0.00 2019-10-16 23:53:44 2019-10-17 00:06:01 t 1 1 124467 514 0.00 2019-10-16 23:48:15 2019-10-17 00:09:23 t 1 1 124472 372 0.00 2019-10-16 23:01:08 2019-10-17 00:11:13 t 1 2 124474 566 0.00 2019-10-17 00:06:42 2019-10-17 00:12:37 t 1 1 124475 422 0.00 2019-10-16 21:26:14 2019-10-17 00:14:32 t 1 1 124479 562 0.00 2019-10-17 00:15:46 2019-10-17 00:16:10 t 1 1 124481 296 0.00 2019-10-16 23:33:09 2019-10-17 00:17:29 t 1 2 124485 395 0.00 2019-10-17 00:29:16 2019-10-17 00:30:20 t 1 2 124492 503 0.00 2019-10-17 00:22:31 2019-10-17 00:35:39 t 1 1 124496 501 0.00 2019-10-17 00:32:27 2019-10-17 00:44:48 t 1 1 124498 501 0.00 2019-10-17 00:44:48 2019-10-17 00:45:50 t 1 1 124499 501 0.00 2019-10-17 00:45:50 2019-10-17 00:47:56 t 1 1 124504 503 0.00 2019-10-17 00:35:39 2019-10-17 00:56:55 t 1 1 124505 501 0.00 2019-10-17 00:54:04 2019-10-17 00:57:03 t 1 1 124510 562 0.00 2019-10-17 01:06:23 2019-10-17 01:06:49 t 1 1 124511 562 0.00 2019-10-17 01:17:11 2019-10-17 01:17:35 t 1 1 124512 422 0.00 2019-10-17 01:01:42 2019-10-17 01:24:27 t 1 1 124517 501 0.00 2019-10-17 01:45:30 2019-10-17 01:45:38 t 1 1 124518 501 0.00 2019-10-17 01:46:31 2019-10-17 01:46:33 t 1 1 124527 562 0.00 2019-10-17 02:11:03 2019-10-17 02:11:29 t 1 1 124536 551 0.00 2019-10-17 02:41:22 2019-10-17 02:53:09 t 1 1 124537 562 0.00 2019-10-17 02:54:07 2019-10-17 02:54:40 t 1 1 124540 562 0.00 2019-10-17 03:26:34 2019-10-17 03:26:51 t 1 1 124541 562 0.00 2019-10-17 03:37:16 2019-10-17 03:37:39 t 1 1 124542 562 0.00 2019-10-17 03:39:46 2019-10-17 03:39:58 t 1 1 124552 562 0.00 2019-10-17 04:44:52 2019-10-17 04:45:14 t 1 1 124553 562 0.00 2019-10-17 04:55:39 2019-10-17 04:56:00 t 1 1 124554 562 0.00 2019-10-17 05:06:27 2019-10-17 05:06:48 t 1 1 124555 445 0.00 2019-10-17 04:33:55 2019-10-17 05:13:17 t 1 1 124559 445 0.00 2019-10-17 05:18:13 2019-10-17 05:24:32 t 1 1 124565 562 0.00 2019-10-17 05:57:47 2019-10-17 05:58:09 t 1 1 124570 556 0.00 2019-10-17 00:49:15 2019-10-17 06:18:11 t 1 1 124571 562 0.00 2019-10-17 06:19:24 2019-10-17 06:19:37 t 1 1 124575 566 0.00 2019-10-17 06:24:48 2019-10-17 06:35:56 t 1 1 124577 516 0.00 2019-10-17 06:41:38 2019-10-17 06:45:53 t 1 1 124578 568 0.00 2019-10-17 06:44:01 2019-10-17 06:51:27 t 1 1 124581 570 0.00 2019-10-17 06:55:38 2019-10-17 06:58:38 t 1 1 124582 562 0.00 2019-10-17 07:00:48 2019-10-17 07:07:51 t 1 1 124587 570 0.00 2019-10-17 07:10:40 2019-10-17 07:19:53 t 1 1 124592 562 0.00 2019-10-17 07:22:46 2019-10-17 07:31:06 t 1 1 124593 570 0.00 2019-10-17 07:19:53 2019-10-17 07:31:58 t 1 1 124595 562 0.00 2019-10-17 07:31:06 2019-10-17 07:37:03 t 1 1 124597 514 0.00 2019-10-17 00:10:17 2019-10-17 07:39:47 t 1 1 124604 562 0.00 2019-10-17 07:56:21 2019-10-17 08:02:50 t 1 1 124605 412 0.00 2019-10-17 07:42:33 2019-10-17 08:03:33 t 1 1 124611 562 0.00 2019-10-17 08:14:06 2019-10-17 08:14:40 t 1 1 124612 520 0.00 2019-10-17 08:10:29 2019-10-17 08:18:36 t 1 1 124613 562 0.00 2019-10-17 08:19:16 2019-10-17 08:19:27 t 1 1 124615 562 0.00 2019-10-17 08:23:17 2019-10-17 08:25:46 t 1 1 124616 514 0.00 2019-10-17 08:21:04 2019-10-17 08:26:08 t 1 1 124618 558 0.00 2019-10-17 00:44:02 2019-10-17 08:26:36 t 1 1 124623 514 0.00 2019-10-17 08:26:08 2019-10-17 08:38:33 t 1 1 124624 501 0.00 2019-10-17 08:38:42 2019-10-17 08:38:43 t 1 1 124631 501 0.00 2019-10-17 08:42:42 2019-10-17 08:42:45 t 1 1 124632 501 0.00 2019-10-17 08:42:50 2019-10-17 08:42:59 t 1 1 124633 501 0.00 2019-10-17 08:43:43 2019-10-17 08:43:52 t 1 1 124639 501 0.00 2019-10-17 08:45:45 2019-10-17 08:45:45 t 1 1 124640 501 0.00 2019-10-17 08:45:52 2019-10-17 08:46:01 t 1 1 124641 562 0.00 2019-10-17 08:46:17 2019-10-17 08:46:48 t 1 1 124644 501 0.00 2019-10-17 08:47:52 2019-10-17 08:48:07 t 1 1 124647 501 0.00 2019-10-17 08:49:46 2019-10-17 08:49:53 t 1 1 124653 562 0.00 2019-10-17 09:00:11 2019-10-17 09:01:56 t 1 1 124657 422 0.00 2019-10-17 08:05:21 2019-10-17 09:08:53 t 1 1 124663 562 0.00 2019-10-17 09:13:58 2019-10-17 09:14:28 t 1 1 124668 220 0.00 2019-10-17 09:13:44 2019-10-17 09:19:40 t 1 1 124670 220 0.00 2019-10-17 09:19:40 2019-10-17 09:20:44 t 1 1 124673 558 0.00 2019-10-17 08:49:49 2019-10-17 09:22:58 t 1 1 124676 422 0.00 2019-10-17 09:25:24 2019-10-17 09:27:04 t 1 1 124678 562 0.00 2019-10-17 09:28:00 2019-10-17 09:28:47 t 1 1 124679 501 0.00 2019-10-17 09:28:57 2019-10-17 09:28:59 t 1 1 124699 501 0.00 2019-10-17 09:38:04 2019-10-17 09:38:12 t 1 1 124702 422 0.00 2019-10-17 09:36:53 2019-10-17 09:49:23 t 1 1 124708 445 0.00 2019-10-17 09:21:54 2019-10-17 09:54:50 t 1 1 124712 516 0.00 2019-10-17 09:57:31 2019-10-17 10:01:02 t 1 1 124715 562 0.00 2019-10-17 10:01:27 2019-10-17 10:02:04 t 1 1 124721 422 0.00 2019-10-17 10:09:59 2019-10-17 10:12:54 t 1 1 124724 422 0.00 2019-10-17 10:13:01 2019-10-17 10:16:21 t 1 1 124725 481 0.00 2019-10-17 10:14:54 2019-10-17 10:18:29 t 1 1 124727 501 0.00 2019-10-17 10:20:09 2019-10-17 10:20:19 t 1 1 124728 570 0.00 2019-10-17 10:01:31 2019-10-17 10:20:28 t 1 1 124731 538 0.00 2019-10-17 10:12:25 2019-10-17 10:22:00 t 1 1 124732 501 0.00 2019-10-17 10:20:28 2019-10-17 10:22:33 t 1 1 124734 562 0.00 2019-10-17 10:13:24 2019-10-17 10:24:18 t 1 1 124735 445 0.00 2019-10-17 10:22:14 2019-10-17 10:24:39 t 1 1 124736 528 0.00 2019-10-17 10:18:32 2019-10-17 10:25:47 t 1 1 124739 501 0.00 2019-10-17 10:26:03 2019-10-17 10:26:12 t 1 1 124748 562 0.00 2019-10-17 10:32:36 2019-10-17 10:32:52 t 1 1 124751 306 0.00 2019-10-17 10:31:32 2019-10-17 10:33:53 t 1 1 124752 501 0.00 2019-10-17 10:34:01 2019-10-17 10:34:09 t 1 1 124754 499 0.00 2019-10-17 10:10:19 2019-10-17 10:35:37 t 1 1 124755 501 0.00 2019-10-17 10:35:55 2019-10-17 10:36:04 t 1 1 124756 501 0.00 2019-10-17 10:36:55 2019-10-17 10:37:03 t 1 1 124763 327 0.00 2019-10-17 10:15:03 2019-10-17 10:44:04 t 1 1 124764 538 0.00 2019-10-17 10:44:02 2019-10-17 10:45:21 t 1 1 124769 461 0.00 2019-10-17 10:47:37 2019-10-17 10:47:37 f 1 2 124771 542 0.00 2019-10-17 10:02:58 2019-10-17 10:47:51 t 1 1 124774 558 0.00 2019-10-17 09:23:04 2019-10-17 10:48:40 t 1 1 124776 472 0.00 2019-10-17 10:44:30 2019-10-17 10:50:08 t 1 1 124785 306 0.00 2019-10-17 10:52:44 2019-10-17 10:55:23 t 1 1 124786 520 0.00 2019-10-17 10:32:30 2019-10-17 10:55:53 t 1 1 124788 361 0.00 2019-10-17 09:41:03 2019-10-17 10:56:31 t 1 2 124789 538 0.00 2019-10-17 10:55:43 2019-10-17 10:56:50 t 1 1 124607 562 0.00 2019-10-17 08:02:50 2019-10-17 08:08:40 t 1 1 124608 570 0.00 2019-10-17 08:06:12 2019-10-17 08:09:02 t 1 1 124619 306 0.00 2019-10-17 07:54:09 2019-10-17 08:35:43 t 1 1 124622 501 0.00 2019-10-17 08:37:45 2019-10-17 08:37:56 t 1 1 124625 501 0.00 2019-10-17 08:39:46 2019-10-17 08:39:57 t 1 1 124627 562 0.00 2019-10-17 08:37:07 2019-10-17 08:41:32 t 1 1 124630 562 0.00 2019-10-17 08:41:38 2019-10-17 08:42:21 t 1 1 124634 562 0.00 2019-10-17 08:43:36 2019-10-17 08:43:57 t 1 1 124637 538 0.00 2019-10-16 22:00:04 2019-10-17 08:44:45 t 1 1 124642 501 0.00 2019-10-17 08:46:44 2019-10-17 08:46:52 t 1 1 124645 481 0.00 2019-10-17 07:55:26 2019-10-17 08:48:12 t 1 1 124646 501 0.00 2019-10-17 08:48:45 2019-10-17 08:48:53 t 1 1 124648 501 0.00 2019-10-17 08:50:38 2019-10-17 08:50:50 t 1 1 124649 501 0.00 2019-10-17 08:51:49 2019-10-17 08:51:50 t 1 1 124650 562 0.00 2019-10-17 08:49:01 2019-10-17 08:53:06 t 1 1 124651 481 0.00 2019-10-17 08:48:12 2019-10-17 08:56:42 t 1 1 124652 306 0.00 2019-10-17 08:39:43 2019-10-17 08:59:34 t 1 1 124655 501 0.00 2019-10-17 08:59:20 2019-10-17 09:06:39 t 1 1 124662 514 0.00 2019-10-17 08:38:33 2019-10-17 09:13:58 t 1 1 124664 501 0.00 2019-10-17 09:13:52 2019-10-17 09:14:29 t 1 1 124665 445 0.00 2019-10-17 08:41:30 2019-10-17 09:16:16 t 1 1 124667 422 0.00 2019-10-17 09:17:43 2019-10-17 09:19:23 t 1 1 124669 445 0.00 2019-10-17 09:16:16 2019-10-17 09:20:11 t 1 1 124671 501 0.00 2019-10-17 09:15:21 2019-10-17 09:20:52 t 1 1 124672 562 0.00 2019-10-17 09:22:25 2019-10-17 09:22:36 t 1 1 124674 501 0.00 2019-10-17 09:22:01 2019-10-17 09:23:01 t 1 1 124675 514 0.00 2019-10-17 09:13:58 2019-10-17 09:23:24 t 1 1 124677 501 0.00 2019-10-17 09:27:57 2019-10-17 09:28:06 t 1 1 124681 501 0.00 2019-10-17 09:29:58 2019-10-17 09:30:07 t 1 1 124682 501 0.00 2019-10-17 09:30:58 2019-10-17 09:31:07 t 1 1 124685 501 0.00 2019-10-17 09:32:06 2019-10-17 09:32:08 t 1 1 124688 422 0.00 2019-10-17 09:27:03 2019-10-17 09:33:11 t 1 1 124689 359 0.00 2019-10-17 09:09:23 2019-10-17 09:34:29 t 1 2 124691 501 0.00 2019-10-17 09:34:00 2019-10-17 09:35:48 t 1 1 124694 501 0.00 2019-10-17 09:36:13 2019-10-17 09:36:21 t 1 1 124695 501 0.00 2019-10-17 09:36:50 2019-10-17 09:36:52 t 1 1 124697 501 0.00 2019-10-17 09:37:05 2019-10-17 09:37:22 t 1 1 124698 501 0.00 2019-10-17 09:37:50 2019-10-17 09:37:58 t 1 1 124701 568 0.00 2019-10-17 09:39:04 2019-10-17 09:46:39 t 1 1 124703 562 0.00 2019-10-17 09:48:32 2019-10-17 09:49:47 t 1 1 124704 451 0.00 2019-10-17 09:35:47 2019-10-17 09:52:43 t 1 1 124705 306 0.00 2019-10-17 09:36:28 2019-10-17 09:53:43 t 1 1 124706 422 0.00 2019-10-17 09:49:56 2019-10-17 09:54:20 t 1 1 124709 562 0.00 2019-10-17 09:53:42 2019-10-17 09:54:59 t 1 1 124716 422 0.00 2019-10-17 09:59:36 2019-10-17 10:04:32 t 1 1 124717 562 0.00 2019-10-17 10:05:55 2019-10-17 10:06:05 t 1 1 124718 562 0.00 2019-10-17 10:08:53 2019-10-17 10:09:09 t 1 1 124722 306 0.00 2019-10-17 10:10:12 2019-10-17 10:13:55 t 1 1 124723 481 0.00 2019-10-17 08:56:42 2019-10-17 10:14:54 t 1 1 124726 501 0.00 2019-10-17 09:55:21 2019-10-17 10:18:58 t 1 1 124729 481 0.00 2019-10-17 10:18:29 2019-10-17 10:20:28 t 1 1 124730 445 0.00 2019-10-17 09:54:57 2019-10-17 10:21:56 t 1 1 124740 516 0.00 2019-10-17 10:24:00 2019-10-17 10:27:14 t 1 1 124742 445 0.00 2019-10-17 10:24:38 2019-10-17 10:28:51 t 1 1 124743 501 0.00 2019-10-17 10:27:10 2019-10-17 10:29:54 t 1 1 124746 501 0.00 2019-10-17 10:31:15 2019-10-17 10:31:17 t 1 1 124759 445 0.00 2019-10-17 10:29:18 2019-10-17 10:42:09 t 1 1 124762 538 0.00 2019-10-17 10:22:03 2019-10-17 10:43:58 t 1 1 124765 445 0.00 2019-10-17 10:45:39 2019-10-17 10:46:45 t 1 1 124766 422 0.00 2019-10-17 10:44:41 2019-10-17 10:47:09 t 1 1 124768 461 0.00 2019-10-17 10:47:31 2019-10-17 10:47:31 f 1 2 124777 445 0.00 2019-10-17 10:48:59 2019-10-17 10:50:11 t 1 1 124779 461 0.00 2019-10-17 10:50:28 2019-10-17 10:50:28 f 1 2 124780 544 0.00 2019-10-17 10:50:14 2019-10-17 10:51:02 t 1 2 124782 408 0.00 2019-10-17 10:32:45 2019-10-17 10:51:48 t 1 1 124783 422 0.00 2019-10-17 10:50:54 2019-10-17 10:52:12 t 1 1 124794 472 0.00 2019-10-17 10:51:51 2019-10-17 10:58:04 t 1 1 124796 538 0.00 2019-10-17 10:57:20 2019-10-17 10:58:57 t 1 1 124799 296 0.00 2019-10-17 10:53:12 2019-10-17 11:00:35 t 1 2 124801 327 0.00 2019-10-17 10:44:04 2019-10-17 11:00:54 t 1 1 124802 501 0.00 2019-10-17 10:37:56 2019-10-17 11:00:59 t 1 1 124804 501 0.00 2019-10-17 11:01:05 2019-10-17 11:01:13 t 1 1 124809 445 0.00 2019-10-17 11:02:26 2019-10-17 11:05:10 t 1 1 124811 570 0.00 2019-10-17 10:58:11 2019-10-17 11:05:36 t 1 1 124814 445 0.00 2019-10-17 11:05:24 2019-10-17 11:07:51 t 1 1 124817 501 0.00 2019-10-17 11:05:58 2019-10-17 11:09:27 t 1 1 124821 520 0.00 2019-10-17 11:12:02 2019-10-17 11:13:56 t 1 1 124823 501 0.00 2019-10-17 11:12:52 2019-10-17 11:14:25 t 1 1 124826 327 0.00 2019-10-17 11:00:54 2019-10-17 11:16:56 t 1 1 124835 501 0.00 2019-10-17 11:31:35 2019-10-17 11:31:44 t 1 1 124836 501 0.00 2019-10-17 11:31:53 2019-10-17 11:32:00 t 1 1 124837 501 0.00 2019-10-17 11:32:29 2019-10-17 11:32:37 t 1 1 124843 562 0.00 2019-10-17 11:38:15 2019-10-17 11:38:39 t 1 1 124855 306 0.00 2019-10-17 11:48:28 2019-10-17 11:52:50 t 1 1 124858 481 0.00 2019-10-17 11:06:39 2019-10-17 11:53:47 t 1 1 124861 501 0.00 2019-10-17 11:49:19 2019-10-17 11:55:16 t 1 1 124862 516 0.00 2019-10-17 11:47:12 2019-10-17 11:56:19 t 1 1 124863 445 0.00 2019-10-17 11:53:43 2019-10-17 11:57:11 t 1 1 124864 331 0.00 2019-10-17 10:51:22 2019-10-17 11:58:36 t 1 1 124874 562 0.00 2019-10-17 12:05:01 2019-10-17 12:06:28 t 1 1 124875 501 0.00 2019-10-17 12:00:36 2019-10-17 12:08:15 t 1 1 124876 327 0.00 2019-10-17 11:52:42 2019-10-17 12:09:33 t 1 1 124878 528 0.00 2019-10-17 12:10:06 2019-10-17 12:10:41 t 1 1 124879 501 0.00 2019-10-17 12:10:03 2019-10-17 12:11:04 t 1 1 124881 220 0.00 2019-10-17 12:10:52 2019-10-17 12:14:30 t 1 1 124882 512 0.00 2019-10-17 12:12:58 2019-10-17 12:15:10 t 1 1 124883 220 0.00 2019-10-17 09:20:23 2019-10-17 12:16:05 t 1 1 124888 562 0.00 2019-10-17 12:09:23 2019-10-17 12:17:43 t 1 1 124895 570 0.00 2019-10-17 12:20:55 2019-10-17 12:23:21 t 1 1 124897 562 0.00 2019-10-17 12:23:32 2019-10-17 12:23:42 t 1 1 124902 485 0.00 2019-10-17 12:25:20 2019-10-17 12:30:42 t 1 1 124908 327 0.00 2019-10-17 12:33:37 2019-10-17 12:34:39 t 1 1 124913 562 0.00 2019-10-17 12:36:28 2019-10-17 12:37:13 t 1 1 124914 528 0.00 2019-10-17 12:28:01 2019-10-17 12:37:53 t 1 1 124918 528 0.00 2019-10-17 12:39:57 2019-10-17 12:41:39 t 1 1 124923 562 0.00 2019-10-17 12:46:50 2019-10-17 12:48:09 t 1 1 124925 562 0.00 2019-10-17 12:48:44 2019-10-17 12:48:53 t 1 1 124686 568 0.00 2019-10-17 09:28:26 2019-10-17 09:32:10 t 1 1 124687 501 0.00 2019-10-17 09:32:14 2019-10-17 09:32:15 t 1 1 124690 562 0.00 2019-10-17 09:32:15 2019-10-17 09:34:52 t 1 1 124692 562 0.00 2019-10-17 09:35:14 2019-10-17 09:35:56 t 1 1 124693 501 0.00 2019-10-17 09:35:59 2019-10-17 09:36:07 t 1 1 124696 501 0.00 2019-10-17 09:36:58 2019-10-17 09:36:59 t 1 1 124700 562 0.00 2019-10-17 09:45:34 2019-10-17 09:45:44 t 1 1 124707 501 0.00 2019-10-17 09:38:28 2019-10-17 09:54:22 t 1 1 124710 514 0.00 2019-10-17 09:23:24 2019-10-17 09:55:05 t 1 1 124711 422 0.00 2019-10-17 09:55:46 2019-10-17 09:57:37 t 1 1 124713 570 0.00 2019-10-17 09:20:08 2019-10-17 10:01:31 t 1 1 124714 306 0.00 2019-10-17 09:54:13 2019-10-17 10:02:00 t 1 1 124719 422 0.00 2019-10-17 10:08:36 2019-10-17 10:09:56 t 1 1 124720 538 0.00 2019-10-17 10:05:05 2019-10-17 10:10:45 t 1 1 124733 501 0.00 2019-10-17 10:23:11 2019-10-17 10:24:01 t 1 1 124737 501 0.00 2019-10-17 10:24:26 2019-10-17 10:25:58 t 1 1 124738 481 0.00 2019-10-17 10:20:28 2019-10-17 10:26:09 t 1 1 124741 562 0.00 2019-10-17 10:27:00 2019-10-17 10:27:40 t 1 1 124744 501 0.00 2019-10-17 10:30:53 2019-10-17 10:30:55 t 1 1 124745 501 0.00 2019-10-17 10:31:01 2019-10-17 10:31:09 t 1 1 124747 520 0.00 2019-10-17 10:20:20 2019-10-17 10:32:30 t 1 1 124749 422 0.00 2019-10-17 10:19:29 2019-10-17 10:32:57 t 1 1 124750 501 0.00 2019-10-17 10:31:23 2019-10-17 10:33:52 t 1 1 124753 501 0.00 2019-10-17 10:34:54 2019-10-17 10:35:03 t 1 1 124757 212 0.00 2019-10-17 10:41:02 2019-10-17 10:41:02 f 1 2 124758 212 0.00 2019-10-17 10:41:54 2019-10-17 10:41:54 f 1 2 124760 562 0.00 2019-10-17 10:41:16 2019-10-17 10:42:18 t 1 1 124761 422 0.00 2019-10-17 10:32:55 2019-10-17 10:43:49 t 1 1 124767 528 0.00 2019-10-17 10:33:33 2019-10-17 10:47:11 t 1 1 124770 461 0.00 2019-10-17 10:47:48 2019-10-17 10:47:48 f 1 2 124772 445 0.00 2019-10-17 10:46:48 2019-10-17 10:47:55 t 1 1 124773 461 0.00 2019-10-17 10:48:01 2019-10-17 10:48:01 f 1 2 124775 528 0.00 2019-10-17 10:48:49 2019-10-17 10:49:23 t 1 1 124778 558 0.00 2019-10-17 10:48:43 2019-10-17 10:50:26 t 1 1 124781 528 0.00 2019-10-17 10:50:12 2019-10-17 10:51:22 t 1 1 124784 562 0.00 2019-10-17 10:52:03 2019-10-17 10:52:27 t 1 1 124787 538 0.00 2019-10-17 10:46:15 2019-10-17 10:56:20 t 1 1 124790 520 0.00 2019-10-17 10:55:52 2019-10-17 10:56:52 t 1 1 124791 528 0.00 2019-10-17 10:56:41 2019-10-17 10:57:48 t 1 1 124792 445 0.00 2019-10-17 10:52:10 2019-10-17 10:58:03 t 1 1 124797 520 0.00 2019-10-17 10:56:52 2019-10-17 11:00:26 t 1 1 124803 528 0.00 2019-10-17 11:00:37 2019-10-17 11:01:03 t 1 1 124806 545 0.00 2019-10-17 10:56:37 2019-10-17 11:02:07 t 1 1 124807 501 0.00 2019-10-17 11:02:11 2019-10-17 11:02:51 t 1 1 124808 501 0.00 2019-10-17 11:02:57 2019-10-17 11:03:07 t 1 1 124818 528 0.00 2019-10-17 11:10:27 2019-10-17 11:10:56 t 1 1 124819 501 0.00 2019-10-17 11:11:10 2019-10-17 11:11:38 t 1 1 124820 520 0.00 2019-10-17 11:00:26 2019-10-17 11:12:02 t 1 1 124830 470 0.00 2019-10-17 11:20:23 2019-10-17 11:25:52 t 1 1 124833 501 0.00 2019-10-17 11:15:38 2019-10-17 11:30:27 t 1 1 124839 501 0.00 2019-10-17 11:33:30 2019-10-17 11:36:13 t 1 1 124849 512 0.00 2019-10-17 11:30:11 2019-10-17 11:46:14 t 1 1 124850 501 0.00 2019-10-17 11:45:02 2019-10-17 11:47:19 t 1 1 124853 570 0.00 2019-10-17 11:21:51 2019-10-17 11:51:06 t 1 1 124854 327 0.00 2019-10-17 11:33:12 2019-10-17 11:52:42 t 1 1 124857 445 0.00 2019-10-17 11:08:32 2019-10-17 11:53:41 t 1 1 124859 520 0.00 2019-10-17 11:41:38 2019-10-17 11:54:06 t 1 1 124867 528 0.00 2019-10-17 11:31:31 2019-10-17 11:59:36 t 1 1 124868 501 0.00 2019-10-17 11:59:12 2019-10-17 12:00:30 t 1 1 124869 570 0.00 2019-10-17 11:52:16 2019-10-17 12:01:52 t 1 1 124870 445 0.00 2019-10-17 11:57:11 2019-10-17 12:02:11 t 1 1 124873 528 0.00 2019-10-17 12:04:05 2019-10-17 12:04:38 t 1 1 124880 528 0.00 2019-10-17 12:14:04 2019-10-17 12:14:20 t 1 1 124885 220 0.00 2019-10-17 12:16:27 2019-10-17 12:16:46 t 1 1 124889 445 0.00 2019-10-17 12:02:10 2019-10-17 12:18:39 t 1 1 124890 306 0.00 2019-10-17 12:13:44 2019-10-17 12:19:40 t 1 1 124891 327 0.00 2019-10-17 12:18:35 2019-10-17 12:21:22 t 1 1 124893 562 0.00 2019-10-17 12:18:39 2019-10-17 12:22:59 t 1 1 124898 562 0.00 2019-10-17 12:24:53 2019-10-17 12:25:41 t 1 1 124899 481 0.00 2019-10-17 11:53:47 2019-10-17 12:26:48 t 1 1 124903 327 0.00 2019-10-17 12:28:34 2019-10-17 12:30:44 t 1 1 124904 538 0.00 2019-10-17 12:21:38 2019-10-17 12:31:11 t 1 1 124905 327 0.00 2019-10-17 12:30:51 2019-10-17 12:32:44 t 1 1 124906 520 0.00 2019-10-17 12:20:50 2019-10-17 12:33:03 t 1 1 124911 562 0.00 2019-10-17 12:27:52 2019-10-17 12:36:05 t 1 1 124921 562 0.00 2019-10-17 12:45:24 2019-10-17 12:45:49 t 1 1 124924 485 0.00 2019-10-17 12:46:42 2019-10-17 12:48:36 t 1 1 124926 445 0.00 2019-10-17 12:29:12 2019-10-17 12:49:56 t 1 1 124930 331 0.00 2019-10-17 12:04:18 2019-10-17 12:53:26 t 1 1 124936 220 0.00 2019-10-17 12:17:29 2019-10-17 13:00:28 t 1 1 124939 558 0.00 2019-10-17 10:50:26 2019-10-17 13:03:17 t 1 1 124940 327 0.00 2019-10-17 13:01:54 2019-10-17 13:04:05 t 1 1 124944 562 0.00 2019-10-17 13:07:20 2019-10-17 13:08:51 t 1 1 124945 562 0.00 2019-10-17 13:09:18 2019-10-17 13:10:48 t 1 1 124947 516 0.00 2019-10-17 13:10:22 2019-10-17 13:12:42 t 1 1 124948 445 0.00 2019-10-17 13:06:21 2019-10-17 13:13:02 t 1 1 124951 558 0.00 2019-10-17 13:03:17 2019-10-17 13:16:15 t 1 1 124952 562 0.00 2019-10-17 13:15:56 2019-10-17 13:17:34 t 1 1 124953 331 0.00 2019-10-17 13:12:28 2019-10-17 13:19:34 t 1 1 124956 556 0.00 2019-10-17 10:34:55 2019-10-17 13:23:39 t 1 1 124958 456 0.00 2019-10-17 13:23:33 2019-10-17 13:26:32 t 1 1 124963 422 0.00 2019-10-17 10:52:12 2019-10-17 13:41:47 t 1 1 124966 562 0.00 2019-10-17 13:41:50 2019-10-17 13:44:19 t 1 1 124969 528 0.00 2019-10-17 13:29:44 2019-10-17 13:48:32 t 1 1 124975 220 0.00 2019-10-17 12:42:26 2019-10-17 14:00:23 t 1 1 124978 556 0.00 2019-10-17 13:23:39 2019-10-17 14:06:43 t 1 1 124979 331 0.00 2019-10-17 13:54:41 2019-10-17 14:09:11 t 1 1 124984 220 0.00 2019-10-17 14:12:55 2019-10-17 14:13:56 t 1 1 124985 220 0.00 2019-10-17 14:13:54 2019-10-17 14:14:31 t 1 1 124987 220 0.00 2019-10-17 14:15:03 2019-10-17 14:15:36 t 1 1 124990 220 0.00 2019-10-17 14:15:36 2019-10-17 14:16:26 t 1 1 124993 220 0.00 2019-10-17 14:16:25 2019-10-17 14:17:19 t 1 1 124998 220 0.00 2019-10-17 14:19:26 2019-10-17 14:20:01 t 1 1 125000 220 0.00 2019-10-17 14:20:00 2019-10-17 14:20:38 t 1 1 125001 220 0.00 2019-10-17 14:20:38 2019-10-17 14:21:19 t 1 1 125003 408 0.00 2019-10-17 14:02:10 2019-10-17 14:21:54 t 1 1 125006 220 0.00 2019-10-17 14:23:05 2019-10-17 14:23:50 t 1 1 124793 570 0.00 2019-10-17 10:42:47 2019-10-17 10:58:04 t 1 1 124795 562 0.00 2019-10-17 10:57:58 2019-10-17 10:58:37 t 1 1 124798 562 0.00 2019-10-17 11:00:26 2019-10-17 11:00:32 t 1 1 124800 568 0.00 2019-10-17 10:49:24 2019-10-17 11:00:40 t 1 1 124805 481 0.00 2019-10-17 10:26:08 2019-10-17 11:01:34 t 1 1 124810 501 0.00 2019-10-17 11:04:56 2019-10-17 11:05:25 t 1 1 124812 481 0.00 2019-10-17 11:01:34 2019-10-17 11:06:39 t 1 1 124813 562 0.00 2019-10-17 11:06:35 2019-10-17 11:07:00 t 1 1 124815 445 0.00 2019-10-17 11:07:56 2019-10-17 11:08:29 t 1 1 124816 562 0.00 2019-10-17 11:08:16 2019-10-17 11:08:59 t 1 1 124822 306 0.00 2019-10-17 11:08:27 2019-10-17 11:14:00 t 1 1 124824 501 0.00 2019-10-17 11:14:33 2019-10-17 11:14:42 t 1 1 124825 528 0.00 2019-10-17 11:16:09 2019-10-17 11:16:51 t 1 1 124827 562 0.00 2019-10-17 11:17:19 2019-10-17 11:17:42 t 1 1 124828 520 0.00 2019-10-17 11:13:56 2019-10-17 11:18:43 t 1 1 124829 570 0.00 2019-10-17 11:05:41 2019-10-17 11:21:51 t 1 1 124831 487 0.00 2019-10-17 11:17:31 2019-10-17 11:27:36 t 1 2 124832 562 0.00 2019-10-17 11:28:01 2019-10-17 11:28:27 t 1 1 124834 528 0.00 2019-10-17 11:22:25 2019-10-17 11:30:43 t 1 1 124838 327 0.00 2019-10-17 11:16:56 2019-10-17 11:33:12 t 1 1 124840 306 0.00 2019-10-17 11:32:08 2019-10-17 11:36:31 t 1 1 124841 501 0.00 2019-10-17 11:37:15 2019-10-17 11:37:24 t 1 1 124842 311 0.00 2019-10-17 11:35:00 2019-10-17 11:38:23 t 1 2 124844 501 0.00 2019-10-17 11:39:15 2019-10-17 11:40:56 t 1 1 124845 520 0.00 2019-10-17 11:18:43 2019-10-17 11:41:38 t 1 1 124846 501 0.00 2019-10-17 11:41:54 2019-10-17 11:42:02 t 1 1 124847 501 0.00 2019-10-17 11:43:02 2019-10-17 11:43:03 t 1 1 124848 501 0.00 2019-10-17 11:44:07 2019-10-17 11:44:22 t 1 1 124851 501 0.00 2019-10-17 11:48:21 2019-10-17 11:48:29 t 1 1 124852 562 0.00 2019-10-17 11:48:47 2019-10-17 11:49:09 t 1 1 124856 564 0.00 2019-10-17 08:36:59 2019-10-17 11:53:12 t 1 1 124860 562 0.00 2019-10-17 11:54:44 2019-10-17 11:55:15 t 1 1 124865 501 0.00 2019-10-17 11:57:20 2019-10-17 11:58:48 t 1 1 124866 501 0.00 2019-10-17 11:58:56 2019-10-17 11:58:57 t 1 1 124871 562 0.00 2019-10-17 12:03:34 2019-10-17 12:03:54 t 1 1 124872 331 0.00 2019-10-17 11:58:40 2019-10-17 12:04:14 t 1 1 124877 220 0.00 2019-10-17 11:53:53 2019-10-17 12:10:07 t 1 1 124884 220 0.00 2019-10-17 12:16:05 2019-10-17 12:16:27 t 1 1 124886 220 0.00 2019-10-17 12:14:29 2019-10-17 12:16:53 t 1 1 124887 220 0.00 2019-10-17 12:16:45 2019-10-17 12:17:29 t 1 1 124892 538 0.00 2019-10-17 10:59:58 2019-10-17 12:21:31 t 1 1 124894 483 0.00 2019-10-17 12:02:44 2019-10-17 12:23:07 t 1 1 124896 528 0.00 2019-10-17 12:22:37 2019-10-17 12:23:40 t 1 1 124900 562 0.00 2019-10-17 12:26:53 2019-10-17 12:27:05 t 1 1 124901 220 0.00 2019-10-17 12:17:47 2019-10-17 12:30:12 t 1 1 124907 490 0.00 2019-10-17 12:26:58 2019-10-17 12:33:03 t 1 1 124909 327 0.00 2019-10-17 12:34:46 2019-10-17 12:34:55 t 1 1 124910 490 0.00 2019-10-17 12:33:48 2019-10-17 12:35:00 t 1 1 124912 327 0.00 2019-10-17 12:36:20 2019-10-17 12:36:57 t 1 1 124915 562 0.00 2019-10-17 12:37:27 2019-10-17 12:38:29 t 1 1 124916 327 0.00 2019-10-17 12:37:24 2019-10-17 12:40:39 t 1 1 124917 220 0.00 2019-10-17 12:39:02 2019-10-17 12:41:38 t 1 1 124919 562 0.00 2019-10-17 12:41:21 2019-10-17 12:42:23 t 1 1 124920 306 0.00 2019-10-17 12:25:18 2019-10-17 12:43:42 t 1 1 124922 481 0.00 2019-10-17 12:26:48 2019-10-17 12:46:55 t 1 1 124927 520 0.00 2019-10-17 12:33:02 2019-10-17 12:50:18 t 1 1 124931 487 0.00 2019-10-17 11:13:27 2019-10-17 12:57:00 t 1 2 124933 331 0.00 2019-10-17 12:53:26 2019-10-17 12:58:54 t 1 1 124934 562 0.00 2019-10-17 12:58:51 2019-10-17 12:59:36 t 1 1 124938 545 0.00 2019-10-17 12:47:07 2019-10-17 13:01:02 t 1 1 124942 545 0.00 2019-10-17 13:01:02 2019-10-17 13:06:35 t 1 1 124943 538 0.00 2019-10-17 12:49:39 2019-10-17 13:07:54 t 1 1 124946 331 0.00 2019-10-17 12:58:59 2019-10-17 13:12:23 t 1 1 124949 562 0.00 2019-10-17 13:11:10 2019-10-17 13:14:59 t 1 1 124950 361 0.00 2019-10-17 11:55:57 2019-10-17 13:16:02 t 1 2 124955 562 0.00 2019-10-17 13:16:11 2019-10-17 13:21:33 t 1 1 124957 566 0.00 2019-10-17 13:04:45 2019-10-17 13:26:10 t 1 1 124960 516 0.00 2019-10-17 13:34:31 2019-10-17 13:38:55 t 1 1 124961 562 0.00 2019-10-17 13:41:03 2019-10-17 13:41:24 t 1 1 124964 542 0.00 2019-10-17 10:47:51 2019-10-17 13:41:48 t 1 1 124965 545 0.00 2019-10-17 13:35:58 2019-10-17 13:43:44 t 1 1 124967 566 0.00 2019-10-17 13:26:10 2019-10-17 13:47:01 t 1 1 124971 331 0.00 2019-10-17 13:21:32 2019-10-17 13:54:19 t 1 1 124974 422 0.00 2019-10-17 13:57:07 2019-10-17 13:58:33 t 1 1 124977 498 0.00 2019-10-17 13:22:22 2019-10-17 14:05:48 t 1 2 124983 422 0.00 2019-10-17 14:09:14 2019-10-17 14:13:48 t 1 1 124986 220 0.00 2019-10-17 14:14:31 2019-10-17 14:15:03 t 1 1 124989 570 0.00 2019-10-17 14:09:47 2019-10-17 14:16:10 t 1 1 124991 556 0.00 2019-10-17 14:06:43 2019-10-17 14:16:49 t 1 1 124992 566 0.00 2019-10-17 14:15:59 2019-10-17 14:17:07 t 1 1 124994 220 0.00 2019-10-17 14:17:19 2019-10-17 14:18:03 t 1 1 124996 562 0.00 2019-10-17 13:44:59 2019-10-17 14:18:36 t 1 1 124999 220 0.00 2019-10-17 14:18:35 2019-10-17 14:20:35 t 1 1 125004 220 0.00 2019-10-17 14:21:54 2019-10-17 14:22:31 t 1 1 125005 220 0.00 2019-10-17 14:22:28 2019-10-17 14:23:06 t 1 1 125008 220 0.00 2019-10-17 14:23:47 2019-10-17 14:24:25 t 1 1 125010 220 0.00 2019-10-17 14:25:04 2019-10-17 14:25:39 t 1 1 125011 556 0.00 2019-10-17 14:16:49 2019-10-17 14:26:54 t 1 1 125015 220 0.00 2019-10-17 14:29:02 2019-10-17 14:29:51 t 1 1 125016 331 0.00 2019-10-17 14:09:11 2019-10-17 14:30:32 t 1 1 125017 220 0.00 2019-10-17 14:29:51 2019-10-17 14:30:55 t 1 1 125018 220 0.00 2019-10-17 14:30:53 2019-10-17 14:31:29 t 1 1 125028 570 0.00 2019-10-17 14:36:29 2019-10-17 14:47:49 t 1 1 125029 325 0.00 2019-10-17 14:33:46 2019-10-17 14:50:06 t 1 2 125034 570 0.00 2019-10-17 14:47:49 2019-10-17 14:56:56 t 1 1 125036 499 0.00 2019-10-17 14:26:24 2019-10-17 14:59:55 t 1 1 125039 542 0.00 2019-10-17 13:41:48 2019-10-17 14:59:56 t 1 1 125040 516 0.00 2019-10-17 14:55:31 2019-10-17 15:01:16 t 1 1 125043 564 0.00 2019-10-17 11:53:12 2019-10-17 15:01:52 t 1 1 125044 562 0.00 2019-10-17 15:01:52 2019-10-17 15:02:16 t 1 1 125046 220 0.00 2019-10-17 15:00:38 2019-10-17 15:06:40 t 1 1 125050 306 0.00 2019-10-17 15:02:38 2019-10-17 15:10:44 t 1 1 125051 445 0.00 2019-10-17 15:01:40 2019-10-17 15:11:28 t 1 1 125053 470 0.00 2019-10-17 15:07:38 2019-10-17 15:14:03 t 1 1 125059 545 0.00 2019-10-17 15:23:26 2019-10-17 15:26:41 t 1 1 125060 542 0.00 2019-10-17 15:00:26 2019-10-17 15:27:17 t 1 1 125064 306 0.00 2019-10-17 15:27:14 2019-10-17 15:32:09 t 1 1 124928 327 0.00 2019-10-17 12:50:35 2019-10-17 12:51:56 t 1 1 124929 570 0.00 2019-10-17 12:31:21 2019-10-17 12:52:59 t 1 1 124932 562 0.00 2019-10-17 12:58:15 2019-10-17 12:58:36 t 1 1 124935 520 0.00 2019-10-17 12:50:17 2019-10-17 12:59:48 t 1 1 124937 562 0.00 2019-10-17 13:00:10 2019-10-17 13:00:56 t 1 1 124941 445 0.00 2019-10-17 12:51:11 2019-10-17 13:06:11 t 1 1 124954 331 0.00 2019-10-17 13:19:42 2019-10-17 13:21:27 t 1 1 124959 562 0.00 2019-10-17 13:25:20 2019-10-17 13:35:14 t 1 1 124962 306 0.00 2019-10-17 12:57:26 2019-10-17 13:41:26 t 1 1 124968 456 0.00 2019-10-17 13:44:59 2019-10-17 13:48:10 t 1 1 124970 485 0.00 2019-10-17 13:47:27 2019-10-17 13:53:08 t 1 1 124972 422 0.00 2019-10-17 13:42:56 2019-10-17 13:55:02 t 1 1 124973 483 0.00 2019-10-17 13:55:36 2019-10-17 13:56:33 t 1 1 124976 566 0.00 2019-10-17 13:47:01 2019-10-17 14:03:51 t 1 1 124980 528 0.00 2019-10-17 13:48:32 2019-10-17 14:10:43 t 1 1 124981 296 0.00 2019-10-17 13:58:28 2019-10-17 14:11:51 t 1 2 124982 220 0.00 2019-10-17 14:00:23 2019-10-17 14:12:56 t 1 1 124988 566 0.00 2019-10-17 14:03:51 2019-10-17 14:15:59 t 1 1 124995 220 0.00 2019-10-17 13:00:32 2019-10-17 14:18:06 t 1 1 124997 220 0.00 2019-10-17 14:18:01 2019-10-17 14:19:26 t 1 1 125002 220 0.00 2019-10-17 14:21:19 2019-10-17 14:21:54 t 1 1 125007 528 0.00 2019-10-17 14:10:43 2019-10-17 14:24:03 t 1 1 125009 220 0.00 2019-10-17 14:24:25 2019-10-17 14:25:06 t 1 1 125012 220 0.00 2019-10-17 14:25:39 2019-10-17 14:27:46 t 1 1 125013 220 0.00 2019-10-17 14:27:46 2019-10-17 14:28:23 t 1 1 125014 220 0.00 2019-10-17 14:28:22 2019-10-17 14:29:02 t 1 1 125019 331 0.00 2019-10-17 14:30:46 2019-10-17 14:32:53 t 1 1 125023 556 0.00 2019-10-17 14:26:54 2019-10-17 14:41:36 t 1 1 125024 288 0.00 2019-10-17 14:44:53 2019-10-17 14:44:53 f 1 1 125026 408 0.00 2019-10-17 14:21:54 2019-10-17 14:45:47 t 1 1 125027 408 0.00 2019-10-17 14:45:47 2019-10-17 14:46:04 t 1 1 125031 562 0.00 2019-10-17 14:51:59 2019-10-17 14:54:58 t 1 1 125037 445 0.00 2019-10-17 13:13:01 2019-10-17 14:59:55 t 1 1 125041 570 0.00 2019-10-17 14:56:56 2019-10-17 15:01:34 t 1 1 125045 556 0.00 2019-10-17 14:41:36 2019-10-17 15:03:20 t 1 1 125049 562 0.00 2019-10-17 15:09:48 2019-10-17 15:10:00 t 1 1 125052 544 0.00 2019-10-17 15:10:59 2019-10-17 15:12:58 t 1 2 125055 485 0.00 2019-10-17 15:17:18 2019-10-17 15:19:34 t 1 1 125058 445 0.00 2019-10-17 15:12:02 2019-10-17 15:25:00 t 1 1 125061 499 0.00 2019-10-17 15:01:50 2019-10-17 15:29:08 t 1 1 125063 562 0.00 2019-10-17 15:31:20 2019-10-17 15:31:47 t 1 1 125069 562 0.00 2019-10-17 15:38:27 2019-10-17 15:39:10 t 1 1 125070 470 0.00 2019-10-17 15:35:54 2019-10-17 15:40:52 t 1 1 125071 499 0.00 2019-10-17 15:29:21 2019-10-17 15:41:25 t 1 1 125072 566 0.00 2019-10-17 15:37:02 2019-10-17 15:45:23 t 1 1 125076 566 0.00 2019-10-17 15:45:23 2019-10-17 15:54:19 t 1 1 125081 445 0.00 2019-10-17 15:25:00 2019-10-17 15:59:14 t 1 1 125086 564 0.00 2019-10-17 15:01:52 2019-10-17 16:01:14 t 1 1 125087 456 0.00 2019-10-17 15:56:42 2019-10-17 16:03:51 t 1 1 125088 566 0.00 2019-10-17 15:54:19 2019-10-17 16:04:48 t 1 1 125090 306 0.00 2019-10-17 15:53:37 2019-10-17 16:06:48 t 1 1 125093 562 0.00 2019-10-17 16:07:26 2019-10-17 16:07:35 t 1 1 125094 483 0.00 2019-10-17 16:04:27 2019-10-17 16:08:31 t 1 1 125095 558 0.00 2019-10-17 13:16:15 2019-10-17 16:09:13 t 1 1 125096 570 0.00 2019-10-17 16:06:56 2019-10-17 16:12:59 t 1 1 125098 562 0.00 2019-10-17 16:15:00 2019-10-17 16:15:50 t 1 1 125102 562 0.00 2019-10-17 16:24:34 2019-10-17 16:24:48 t 1 1 125104 483 0.00 2019-10-17 16:23:28 2019-10-17 16:25:43 t 1 1 125106 566 0.00 2019-10-17 16:04:48 2019-10-17 16:26:35 t 1 1 125108 501 0.00 2019-10-17 16:19:00 2019-10-17 16:29:46 t 1 1 125111 501 0.00 2019-10-17 16:29:46 2019-10-17 16:34:40 t 1 1 125115 562 0.00 2019-10-17 16:45:58 2019-10-17 16:46:12 t 1 1 125116 220 0.00 2019-10-17 16:43:58 2019-10-17 16:47:56 t 1 1 125119 544 0.00 2019-10-17 16:31:42 2019-10-17 16:50:20 t 1 2 125120 528 0.00 2019-10-17 16:28:13 2019-10-17 16:51:53 t 1 1 125121 485 0.00 2019-10-17 16:50:41 2019-10-17 16:52:16 t 1 1 125124 481 0.00 2019-10-17 15:01:36 2019-10-17 16:54:28 t 1 1 125125 542 0.00 2019-10-17 15:42:03 2019-10-17 16:54:35 t 1 1 125128 570 0.00 2019-10-17 16:12:58 2019-10-17 16:57:07 t 1 1 125136 445 0.00 2019-10-17 15:59:14 2019-10-17 17:04:28 t 1 1 125140 501 0.00 2019-10-17 17:01:34 2019-10-17 17:06:49 t 1 1 125141 542 0.00 2019-10-17 17:07:10 2019-10-17 17:09:34 t 1 1 125143 501 0.00 2019-10-17 17:06:49 2019-10-17 17:15:46 t 1 1 125144 562 0.00 2019-10-17 17:09:40 2019-10-17 17:16:44 t 1 1 125145 220 0.00 2019-10-17 17:11:40 2019-10-17 17:17:19 t 1 2 125146 562 0.00 2019-10-17 17:17:19 2019-10-17 17:17:51 t 1 1 125147 570 0.00 2019-10-17 17:15:26 2019-10-17 17:17:57 t 1 1 125150 445 0.00 2019-10-17 17:04:28 2019-10-17 17:19:18 t 1 1 125160 562 0.00 2019-10-17 17:28:04 2019-10-17 17:28:13 t 1 1 125163 558 0.00 2019-10-17 16:23:26 2019-10-17 17:31:08 t 1 1 125167 501 0.00 2019-10-17 17:32:01 2019-10-17 17:37:01 t 1 1 125169 306 0.00 2019-10-17 17:29:33 2019-10-17 17:37:25 t 1 1 125171 570 0.00 2019-10-17 17:27:45 2019-10-17 17:40:48 t 1 1 125178 306 0.00 2019-10-17 17:37:25 2019-10-17 17:44:58 t 1 1 125183 306 0.00 2019-10-17 17:44:58 2019-10-17 17:50:18 t 1 1 125186 451 0.00 2019-10-17 16:50:03 2019-10-17 17:54:27 t 1 1 125192 562 0.00 2019-10-17 18:03:47 2019-10-17 18:04:11 t 1 1 125196 570 0.00 2019-10-17 17:42:55 2019-10-17 18:08:35 t 1 1 125197 490 0.00 2019-10-17 18:04:03 2019-10-17 18:09:25 t 1 1 125198 487 0.00 2019-10-17 18:07:36 2019-10-17 18:10:36 t 1 2 125201 545 0.00 2019-10-17 17:53:28 2019-10-17 18:17:58 t 1 1 125203 568 0.00 2019-10-17 18:21:24 2019-10-17 18:23:21 t 1 1 125205 412 0.00 2019-10-17 15:34:48 2019-10-17 18:24:41 t 1 1 125207 412 0.00 2019-10-17 18:25:11 2019-10-17 18:26:36 t 1 1 125219 568 0.00 2019-10-17 18:34:38 2019-10-17 18:36:30 t 1 1 125220 412 0.00 2019-10-17 18:36:23 2019-10-17 18:38:28 t 1 1 125223 562 0.00 2019-10-17 18:45:01 2019-10-17 18:45:09 t 1 1 125225 306 0.00 2019-10-17 18:46:02 2019-10-17 18:47:21 t 1 1 125232 412 0.00 2019-10-17 18:54:16 2019-10-17 18:55:36 t 1 1 125233 379 0.00 2019-10-17 18:55:27 2019-10-17 18:55:58 t 1 1 125234 562 0.00 2019-10-17 18:56:22 2019-10-17 18:57:27 t 1 1 125235 562 0.00 2019-10-17 18:58:18 2019-10-17 18:59:26 t 1 1 125238 516 0.00 2019-10-17 18:50:04 2019-10-17 19:01:14 t 1 1 125244 412 0.00 2019-10-17 19:02:10 2019-10-17 19:03:45 t 1 1 125249 220 0.00 2019-10-17 18:15:34 2019-10-17 19:06:29 t 1 1 125251 412 0.00 2019-10-17 19:07:55 2019-10-17 19:11:04 t 1 1 125252 379 0.00 2019-10-17 18:55:58 2019-10-17 19:13:46 t 1 1 125020 570 0.00 2019-10-17 14:17:33 2019-10-17 14:36:29 t 1 1 125021 325 0.00 2019-10-17 14:32:13 2019-10-17 14:37:19 t 1 2 125022 306 0.00 2019-10-17 14:31:44 2019-10-17 14:39:24 t 1 1 125025 288 0.00 2019-10-17 14:45:04 2019-10-17 14:45:04 f 1 1 125030 562 0.00 2019-10-17 14:18:53 2019-10-17 14:51:53 t 1 1 125032 456 0.00 2019-10-17 14:53:02 2019-10-17 14:55:16 t 1 1 125033 306 0.00 2019-10-17 14:45:41 2019-10-17 14:56:08 t 1 1 125035 220 0.00 2019-10-17 14:31:29 2019-10-17 14:59:54 t 1 1 125038 481 0.00 2019-10-17 12:48:58 2019-10-17 14:59:56 t 1 1 125042 451 0.00 2019-10-17 14:41:28 2019-10-17 15:01:51 t 1 1 125047 470 0.00 2019-10-17 11:25:52 2019-10-17 15:07:38 t 1 1 125048 451 0.00 2019-10-17 15:01:51 2019-10-17 15:08:31 t 1 1 125054 512 0.00 2019-10-17 15:03:12 2019-10-17 15:14:20 t 1 1 125056 562 0.00 2019-10-17 15:20:38 2019-10-17 15:20:56 t 1 1 125057 545 0.00 2019-10-17 15:22:41 2019-10-17 15:23:26 t 1 1 125062 568 0.00 2019-10-17 15:10:10 2019-10-17 15:30:32 t 1 1 125065 568 0.00 2019-10-17 15:31:29 2019-10-17 15:33:03 t 1 1 125066 306 0.00 2019-10-17 15:34:27 2019-10-17 15:35:49 t 1 1 125077 562 0.00 2019-10-17 15:55:54 2019-10-17 15:56:10 t 1 1 125080 520 0.00 2019-10-17 15:55:58 2019-10-17 15:57:23 t 1 1 125082 520 0.00 2019-10-17 15:58:09 2019-10-17 15:59:21 t 1 1 125084 288 0.00 2019-10-17 16:00:36 2019-10-17 16:00:36 f 1 1 125085 451 0.00 2019-10-17 15:45:11 2019-10-17 16:01:10 t 1 1 125089 408 0.00 2019-10-17 15:56:36 2019-10-17 16:05:13 t 1 1 125091 570 0.00 2019-10-17 15:38:12 2019-10-17 16:06:53 t 1 1 125092 451 0.00 2019-10-17 16:01:10 2019-10-17 16:07:11 t 1 1 125097 562 0.00 2019-10-17 16:12:23 2019-10-17 16:13:49 t 1 1 125099 562 0.00 2019-10-17 16:20:28 2019-10-17 16:20:43 t 1 1 125100 562 0.00 2019-10-17 16:20:53 2019-10-17 16:21:22 t 1 1 125103 562 0.00 2019-10-17 16:25:15 2019-10-17 16:25:38 t 1 1 125109 538 0.00 2019-10-17 16:07:39 2019-10-17 16:32:11 t 1 1 125110 331 0.00 2019-10-17 15:46:15 2019-10-17 16:33:00 t 1 1 125113 566 0.00 2019-10-17 16:26:35 2019-10-17 16:39:30 t 1 1 125117 564 0.00 2019-10-17 16:01:13 2019-10-17 16:49:53 t 1 1 125118 451 0.00 2019-10-17 16:08:41 2019-10-17 16:50:03 t 1 1 125123 501 0.00 2019-10-17 16:45:38 2019-10-17 16:54:22 t 1 1 125126 470 0.00 2019-10-17 16:17:36 2019-10-17 16:54:36 t 1 1 125127 562 0.00 2019-10-17 16:56:39 2019-10-17 16:56:53 t 1 1 125130 562 0.00 2019-10-17 16:57:48 2019-10-17 16:58:16 t 1 1 125135 306 0.00 2019-10-17 17:02:00 2019-10-17 17:04:20 t 1 1 125137 562 0.00 2019-10-17 17:04:36 2019-10-17 17:05:36 t 1 1 125153 306 0.00 2019-10-17 17:17:14 2019-10-17 17:23:14 t 1 1 125154 562 0.00 2019-10-17 17:23:36 2019-10-17 17:24:04 t 1 1 125157 501 0.00 2019-10-17 17:21:31 2019-10-17 17:26:54 t 1 1 125158 306 0.00 2019-10-17 17:25:18 2019-10-17 17:27:29 t 1 1 125161 562 0.00 2019-10-17 17:29:12 2019-10-17 17:30:00 t 1 1 125162 562 0.00 2019-10-17 17:30:09 2019-10-17 17:30:59 t 1 1 125164 331 0.00 2019-10-17 17:05:46 2019-10-17 17:31:18 t 1 1 125165 501 0.00 2019-10-17 17:26:54 2019-10-17 17:32:01 t 1 1 125166 562 0.00 2019-10-17 17:31:08 2019-10-17 17:32:53 t 1 1 125170 501 0.00 2019-10-17 17:37:01 2019-10-17 17:39:32 t 1 1 125173 545 0.00 2019-10-17 17:39:39 2019-10-17 17:41:23 t 1 1 125180 562 0.00 2019-10-17 17:45:39 2019-10-17 17:45:47 t 1 1 125184 498 0.00 2019-10-17 16:58:17 2019-10-17 17:52:25 t 1 2 125187 568 0.00 2019-10-17 17:51:55 2019-10-17 17:54:53 t 1 1 125188 562 0.00 2019-10-17 17:55:07 2019-10-17 17:59:39 t 1 1 125191 490 0.00 2019-10-17 17:55:21 2019-10-17 18:04:03 t 1 1 125193 562 0.00 2019-10-17 18:04:44 2019-10-17 18:05:56 t 1 1 125194 564 0.00 2019-10-17 17:10:15 2019-10-17 18:07:16 t 1 1 125200 568 0.00 2019-10-17 18:11:03 2019-10-17 18:15:54 t 1 1 125204 562 0.00 2019-10-17 18:08:51 2019-10-17 18:23:55 t 1 1 125206 562 0.00 2019-10-17 18:25:37 2019-10-17 18:25:57 t 1 1 125209 562 0.00 2019-10-17 18:26:07 2019-10-17 18:27:16 t 1 1 125212 220 0.00 2019-10-17 17:26:17 2019-10-17 18:31:08 t 1 1 125213 545 0.00 2019-10-17 18:29:11 2019-10-17 18:32:03 t 1 1 125218 412 0.00 2019-10-17 18:32:17 2019-10-17 18:36:18 t 1 1 125226 562 0.00 2019-10-17 18:46:57 2019-10-17 18:47:39 t 1 1 125228 481 0.00 2019-10-17 16:54:28 2019-10-17 18:49:09 t 1 1 125230 570 0.00 2019-10-17 18:39:06 2019-10-17 18:52:34 t 1 1 125236 568 0.00 2019-10-17 18:58:04 2019-10-17 18:59:51 t 1 1 125240 412 0.00 2019-10-17 19:00:19 2019-10-17 19:01:58 t 1 1 125242 562 0.00 2019-10-17 19:02:42 2019-10-17 19:03:10 t 1 1 125245 412 0.00 2019-10-17 19:03:49 2019-10-17 19:04:35 t 1 1 125247 562 0.00 2019-10-17 19:04:28 2019-10-17 19:06:06 t 1 1 125250 487 0.00 2019-10-17 18:16:40 2019-10-17 19:06:45 t 1 2 125259 558 0.00 2019-10-17 17:31:20 2019-10-17 19:27:35 t 1 1 125260 562 0.00 2019-10-17 19:31:21 2019-10-17 19:31:43 t 1 1 125264 481 0.00 2019-10-17 18:49:09 2019-10-17 19:38:45 t 1 1 125266 379 0.00 2019-10-17 19:13:59 2019-10-17 19:40:38 t 1 1 125269 468 0.00 2019-10-17 19:44:20 2019-10-17 19:44:20 f 1 1 125271 468 0.00 2019-10-17 19:45:03 2019-10-17 19:45:03 f 1 1 125272 558 0.00 2019-10-17 19:32:13 2019-10-17 19:46:07 t 1 1 125277 562 0.00 2019-10-17 19:53:51 2019-10-17 19:55:36 t 1 1 125279 445 0.00 2019-10-17 17:18:53 2019-10-17 19:57:10 t 1 1 125281 412 0.00 2019-10-17 19:42:11 2019-10-17 19:59:24 t 1 1 125282 379 0.00 2019-10-17 19:49:06 2019-10-17 20:02:20 t 1 1 125286 449 0.00 2019-10-17 20:04:20 2019-10-17 20:06:02 t 1 1 125289 247 0.00 2019-10-17 20:10:04 2019-10-17 20:10:04 f 1 2 125290 562 0.00 2019-10-17 20:14:21 2019-10-17 20:14:34 t 1 1 125291 449 0.00 2019-10-17 20:07:20 2019-10-17 20:18:45 t 1 1 125295 562 0.00 2019-10-17 20:21:44 2019-10-17 20:23:11 t 1 1 125296 498 0.00 2019-10-17 19:28:29 2019-10-17 20:24:36 t 1 2 125297 538 0.00 2019-10-17 20:23:46 2019-10-17 20:25:17 t 1 1 125301 562 0.00 2019-10-17 20:31:05 2019-10-17 20:31:42 t 1 1 125303 445 0.00 2019-10-17 19:58:13 2019-10-17 20:32:36 t 1 1 125307 570 0.00 2019-10-17 20:31:45 2019-10-17 20:37:14 t 1 1 125312 430 0.00 2019-10-17 20:34:18 2019-10-17 20:40:53 t 1 1 125320 501 0.00 2019-10-17 20:45:55 2019-10-17 20:50:20 t 1 1 125322 379 0.00 2019-10-17 20:52:05 2019-10-17 20:53:46 t 1 1 125324 570 0.00 2019-10-17 20:45:01 2019-10-17 21:06:11 t 1 1 125327 570 0.00 2019-10-17 21:06:11 2019-10-17 21:14:36 t 1 1 125329 485 0.00 2019-10-17 21:11:25 2019-10-17 21:17:03 t 1 1 125333 512 0.00 2019-10-17 21:16:40 2019-10-17 21:20:53 t 1 1 125334 512 0.00 2019-10-17 21:20:53 2019-10-17 21:21:09 t 1 1 125338 562 0.00 2019-10-17 21:21:50 2019-10-17 21:25:21 t 1 1 125340 566 0.00 2019-10-17 21:18:48 2019-10-17 21:27:00 t 1 1 125341 570 0.00 2019-10-17 21:14:31 2019-10-17 21:28:57 t 1 1 125067 470 0.00 2019-10-17 15:14:03 2019-10-17 15:35:54 t 1 1 125068 570 0.00 2019-10-17 15:28:57 2019-10-17 15:38:12 t 1 1 125073 562 0.00 2019-10-17 15:45:02 2019-10-17 15:45:26 t 1 1 125074 331 0.00 2019-10-17 15:01:51 2019-10-17 15:46:15 t 1 1 125075 408 0.00 2019-10-17 15:40:57 2019-10-17 15:48:20 t 1 1 125078 408 0.00 2019-10-17 15:51:09 2019-10-17 15:56:36 t 1 1 125079 528 0.00 2019-10-17 15:30:46 2019-10-17 15:56:49 t 1 1 125083 288 0.00 2019-10-17 16:00:19 2019-10-17 16:00:19 f 1 2 125101 558 0.00 2019-10-17 16:09:13 2019-10-17 16:23:26 t 1 1 125105 483 0.00 2019-10-17 16:25:43 2019-10-17 16:26:22 t 1 1 125107 562 0.00 2019-10-17 16:28:01 2019-10-17 16:29:29 t 1 1 125112 562 0.00 2019-10-17 16:35:06 2019-10-17 16:35:33 t 1 1 125114 501 0.00 2019-10-17 16:34:40 2019-10-17 16:45:38 t 1 1 125122 528 0.00 2019-10-17 16:51:53 2019-10-17 16:53:56 t 1 1 125129 544 0.00 2019-10-17 16:56:53 2019-10-17 16:57:51 t 1 2 125131 570 0.00 2019-10-17 16:58:57 2019-10-17 16:58:58 t 1 1 125132 220 0.00 2019-10-17 16:47:53 2019-10-17 17:00:21 t 1 1 125133 501 0.00 2019-10-17 16:54:22 2019-10-17 17:01:34 t 1 1 125134 562 0.00 2019-10-17 17:02:48 2019-10-17 17:03:16 t 1 1 125138 331 0.00 2019-10-17 16:32:22 2019-10-17 17:05:37 t 1 1 125139 542 0.00 2019-10-17 16:54:35 2019-10-17 17:06:42 t 1 1 125142 564 0.00 2019-10-17 16:49:53 2019-10-17 17:10:15 t 1 1 125148 468 0.00 2019-10-17 17:18:05 2019-10-17 17:18:05 f 1 1 125149 512 0.00 2019-10-17 17:17:35 2019-10-17 17:19:08 t 1 1 125151 501 0.00 2019-10-17 17:15:46 2019-10-17 17:21:31 t 1 1 125152 562 0.00 2019-10-17 17:21:04 2019-10-17 17:22:21 t 1 1 125155 570 0.00 2019-10-17 17:17:57 2019-10-17 17:24:14 t 1 1 125156 220 0.00 2019-10-17 17:00:29 2019-10-17 17:26:09 t 1 1 125159 570 0.00 2019-10-17 17:24:14 2019-10-17 17:27:45 t 1 1 125168 456 0.00 2019-10-17 17:32:14 2019-10-17 17:37:21 t 1 1 125172 331 0.00 2019-10-17 17:35:12 2019-10-17 17:41:17 t 1 1 125174 562 0.00 2019-10-17 17:41:19 2019-10-17 17:41:40 t 1 1 125175 562 0.00 2019-10-17 17:42:23 2019-10-17 17:42:27 t 1 1 125176 528 0.00 2019-10-17 17:28:19 2019-10-17 17:43:39 t 1 1 125177 562 0.00 2019-10-17 17:44:12 2019-10-17 17:44:26 t 1 1 125179 562 0.00 2019-10-17 17:44:39 2019-10-17 17:45:08 t 1 1 125181 562 0.00 2019-10-17 17:47:11 2019-10-17 17:47:46 t 1 1 125182 456 0.00 2019-10-17 17:39:55 2019-10-17 17:49:51 t 1 1 125185 562 0.00 2019-10-17 17:49:51 2019-10-17 17:52:27 t 1 1 125189 562 0.00 2019-10-17 18:00:23 2019-10-17 18:00:29 t 1 1 125190 562 0.00 2019-10-17 18:01:22 2019-10-17 18:01:36 t 1 1 125195 562 0.00 2019-10-17 18:08:05 2019-10-17 18:08:12 t 1 1 125199 220 0.00 2019-10-17 17:14:12 2019-10-17 18:15:34 t 1 1 125202 483 0.00 2019-10-17 16:26:46 2019-10-17 18:23:02 t 1 1 125208 545 0.00 2019-10-17 18:17:58 2019-10-17 18:26:54 t 1 1 125210 545 0.00 2019-10-17 18:26:54 2019-10-17 18:28:35 t 1 1 125211 562 0.00 2019-10-17 18:27:53 2019-10-17 18:29:34 t 1 1 125214 562 0.00 2019-10-17 18:31:57 2019-10-17 18:32:10 t 1 1 125215 562 0.00 2019-10-17 18:32:32 2019-10-17 18:32:36 t 1 1 125216 562 0.00 2019-10-17 18:33:25 2019-10-17 18:33:36 t 1 1 125217 562 0.00 2019-10-17 18:34:34 2019-10-17 18:35:12 t 1 1 125221 562 0.00 2019-10-17 18:40:35 2019-10-17 18:41:01 t 1 1 125222 562 0.00 2019-10-17 18:43:34 2019-10-17 18:44:55 t 1 1 125224 412 0.00 2019-10-17 18:43:09 2019-10-17 18:46:02 t 1 1 125227 562 0.00 2019-10-17 18:48:42 2019-10-17 18:48:52 t 1 1 125229 562 0.00 2019-10-17 18:50:45 2019-10-17 18:51:18 t 1 1 125231 412 0.00 2019-10-17 18:48:00 2019-10-17 18:52:38 t 1 1 125237 562 0.00 2019-10-17 18:59:55 2019-10-17 18:59:59 t 1 1 125239 568 0.00 2019-10-17 19:00:19 2019-10-17 19:01:39 t 1 1 125241 296 0.00 2019-10-17 18:57:45 2019-10-17 19:02:09 t 1 2 125243 516 0.00 2019-10-17 19:01:14 2019-10-17 19:03:28 t 1 1 125246 412 0.00 2019-10-17 19:04:38 2019-10-17 19:05:47 t 1 1 125248 325 0.00 2019-10-17 18:31:07 2019-10-17 19:06:12 t 1 2 125257 562 0.00 2019-10-17 19:20:27 2019-10-17 19:22:39 t 1 1 125258 512 0.00 2019-10-17 19:21:47 2019-10-17 19:24:22 t 1 1 125261 558 0.00 2019-10-17 19:27:35 2019-10-17 19:31:47 t 1 1 125262 562 0.00 2019-10-17 19:35:55 2019-10-17 19:36:04 t 1 1 125263 562 0.00 2019-10-17 19:37:10 2019-10-17 19:37:43 t 1 1 125265 412 0.00 2019-10-17 19:21:38 2019-10-17 19:40:00 t 1 1 125268 562 0.00 2019-10-17 19:43:53 2019-10-17 19:44:18 t 1 1 125273 379 0.00 2019-10-17 19:40:12 2019-10-17 19:48:00 t 1 1 125274 483 0.00 2019-10-17 19:21:19 2019-10-17 19:49:29 t 1 1 125283 562 0.00 2019-10-17 20:02:13 2019-10-17 20:02:26 t 1 1 125285 449 0.00 2019-10-17 19:56:02 2019-10-17 20:04:20 t 1 1 125293 558 0.00 2019-10-17 20:02:51 2019-10-17 20:21:07 t 1 1 125298 430 0.00 2019-10-17 20:22:41 2019-10-17 20:25:24 t 1 1 125300 558 0.00 2019-10-17 20:21:07 2019-10-17 20:30:26 t 1 1 125304 562 0.00 2019-10-17 20:32:16 2019-10-17 20:35:17 t 1 1 125306 501 0.00 2019-10-17 20:35:52 2019-10-17 20:35:53 t 1 1 125308 562 0.00 2019-10-17 20:37:05 2019-10-17 20:37:15 t 1 1 125313 501 0.00 2019-10-17 20:41:41 2019-10-17 20:42:56 t 1 1 125314 501 0.00 2019-10-17 20:43:02 2019-10-17 20:43:03 t 1 1 125316 501 0.00 2019-10-17 20:44:03 2019-10-17 20:45:04 t 1 1 125317 562 0.00 2019-10-17 20:43:17 2019-10-17 20:47:26 t 1 1 125323 558 0.00 2019-10-17 20:49:39 2019-10-17 20:59:33 t 1 1 125326 306 0.00 2019-10-17 20:56:48 2019-10-17 21:11:57 t 1 1 125328 538 0.00 2019-10-17 20:31:38 2019-10-17 21:14:51 t 1 1 125330 562 0.00 2019-10-17 20:53:26 2019-10-17 21:17:47 t 1 1 125332 566 0.00 2019-10-17 20:56:50 2019-10-17 21:18:48 t 1 1 125335 408 0.00 2019-10-17 20:51:19 2019-10-17 21:21:45 t 1 1 125339 408 0.00 2019-10-17 21:26:29 2019-10-17 21:26:46 t 1 1 125343 408 0.00 2019-10-17 21:32:48 2019-10-17 21:32:58 t 1 1 125346 408 0.00 2019-10-17 21:40:35 2019-10-17 21:40:49 t 1 1 125350 570 0.00 2019-10-17 21:28:57 2019-10-17 21:42:09 t 1 1 125353 501 0.00 2019-10-17 21:43:22 2019-10-17 21:43:52 t 1 1 125358 562 0.00 2019-10-17 21:47:08 2019-10-17 21:48:37 t 1 1 125365 408 0.00 2019-10-17 21:42:00 2019-10-17 21:53:43 t 1 1 125370 220 0.00 2019-10-17 21:00:59 2019-10-17 22:01:05 t 1 2 125376 566 0.00 2019-10-17 21:47:52 2019-10-17 22:09:14 t 1 1 125378 379 0.00 2019-10-17 21:54:21 2019-10-17 22:13:22 t 1 1 125379 562 0.00 2019-10-17 21:58:04 2019-10-17 22:14:44 t 1 1 125381 292 0.00 2019-10-17 22:15:28 2019-10-17 22:15:36 t 1 2 125384 292 0.00 2019-10-17 22:16:42 2019-10-17 22:17:45 t 1 2 125386 490 0.00 2019-10-17 22:15:57 2019-10-17 22:19:23 t 1 1 125387 501 0.00 2019-10-17 22:19:20 2019-10-17 22:19:54 t 1 1 125388 562 0.00 2019-10-17 22:20:53 2019-10-17 22:21:07 t 1 1 125390 430 0.00 2019-10-17 22:04:08 2019-10-17 22:22:25 t 1 1 125253 562 0.00 2019-10-17 19:14:29 2019-10-17 19:15:13 t 1 1 125254 490 0.00 2019-10-17 19:02:48 2019-10-17 19:16:58 t 1 1 125255 562 0.00 2019-10-17 19:19:04 2019-10-17 19:20:05 t 1 1 125256 483 0.00 2019-10-17 18:39:33 2019-10-17 19:21:19 t 1 1 125267 468 0.00 2019-10-17 19:42:20 2019-10-17 19:42:20 f 1 1 125270 468 0.00 2019-10-17 19:44:32 2019-10-17 19:44:32 f 1 1 125275 562 0.00 2019-10-17 19:49:36 2019-10-17 19:50:20 t 1 1 125276 562 0.00 2019-10-17 19:50:47 2019-10-17 19:51:08 t 1 1 125278 449 0.00 2019-10-17 19:45:03 2019-10-17 19:56:02 t 1 1 125280 562 0.00 2019-10-17 19:56:59 2019-10-17 19:57:35 t 1 1 125284 562 0.00 2019-10-17 20:02:45 2019-10-17 20:03:34 t 1 1 125287 562 0.00 2019-10-17 20:06:08 2019-10-17 20:06:21 t 1 1 125288 562 0.00 2019-10-17 20:09:19 2019-10-17 20:09:43 t 1 1 125292 562 0.00 2019-10-17 20:20:04 2019-10-17 20:20:24 t 1 1 125294 538 0.00 2019-10-17 19:43:44 2019-10-17 20:23:01 t 1 1 125299 562 0.00 2019-10-17 20:26:41 2019-10-17 20:27:01 t 1 1 125302 570 0.00 2019-10-17 20:22:53 2019-10-17 20:31:46 t 1 1 125305 501 0.00 2019-10-17 20:32:09 2019-10-17 20:35:43 t 1 1 125309 501 0.00 2019-10-17 20:37:09 2019-10-17 20:37:39 t 1 1 125310 558 0.00 2019-10-17 20:30:26 2019-10-17 20:39:09 t 1 1 125311 562 0.00 2019-10-17 20:40:06 2019-10-17 20:40:45 t 1 1 125315 570 0.00 2019-10-17 20:39:49 2019-10-17 20:45:01 t 1 1 125318 501 0.00 2019-10-17 20:45:14 2019-10-17 20:47:36 t 1 1 125319 558 0.00 2019-10-17 20:39:09 2019-10-17 20:49:39 t 1 1 125321 408 0.00 2019-10-17 20:44:39 2019-10-17 20:51:19 t 1 1 125325 558 0.00 2019-10-17 20:59:33 2019-10-17 21:07:57 t 1 1 125331 451 0.00 2019-10-17 21:01:49 2019-10-17 21:17:49 t 1 1 125336 306 0.00 2019-10-17 21:15:39 2019-10-17 21:24:55 t 1 1 125337 408 0.00 2019-10-17 21:21:45 2019-10-17 21:25:02 t 1 1 125342 408 0.00 2019-10-17 21:29:52 2019-10-17 21:30:08 t 1 1 125345 408 0.00 2019-10-17 21:38:17 2019-10-17 21:40:24 t 1 1 125348 361 0.00 2019-10-17 21:24:06 2019-10-17 21:41:44 t 1 2 125351 306 0.00 2019-10-17 21:25:29 2019-10-17 21:42:30 t 1 1 125355 501 0.00 2019-10-17 21:45:53 2019-10-17 21:46:27 t 1 1 125356 566 0.00 2019-10-17 21:36:02 2019-10-17 21:47:52 t 1 1 125360 501 0.00 2019-10-17 21:49:21 2019-10-17 21:49:53 t 1 1 125362 372 0.00 2019-10-17 21:27:21 2019-10-17 21:50:25 t 1 2 125363 501 0.00 2019-10-17 21:50:21 2019-10-17 21:51:09 t 1 1 125366 562 0.00 2019-10-17 21:50:55 2019-10-17 21:53:44 t 1 1 125367 379 0.00 2019-10-17 21:50:00 2019-10-17 21:54:21 t 1 1 125368 501 0.00 2019-10-17 21:53:24 2019-10-17 21:55:24 t 1 1 125369 408 0.00 2019-10-17 21:56:21 2019-10-17 21:56:29 t 1 1 125371 372 0.00 2019-10-17 21:51:23 2019-10-17 22:01:28 t 1 2 125373 306 0.00 2019-10-17 22:01:34 2019-10-17 22:03:47 t 1 1 125380 292 0.00 2019-10-17 22:15:12 2019-10-17 22:15:17 t 1 2 125382 490 0.00 2019-10-17 22:13:42 2019-10-17 22:15:57 t 1 1 125397 379 0.00 2019-10-17 22:23:38 2019-10-17 22:26:26 t 1 1 125400 499 0.00 2019-10-17 22:20:02 2019-10-17 22:29:21 t 1 1 125403 490 0.00 2019-10-17 22:29:06 2019-10-17 22:32:25 t 1 1 125405 430 0.00 2019-10-17 22:22:25 2019-10-17 22:32:56 t 1 1 125406 499 0.00 2019-10-17 22:29:21 2019-10-17 22:33:33 t 1 1 125410 566 0.00 2019-10-17 22:25:20 2019-10-17 22:35:44 t 1 1 125412 542 0.00 2019-10-17 22:35:07 2019-10-17 22:36:10 t 1 1 125413 485 0.00 2019-10-17 22:18:20 2019-10-17 22:38:04 t 1 1 125418 220 0.00 2019-10-17 22:27:43 2019-10-17 22:42:48 t 1 2 125419 483 0.00 2019-10-17 22:40:31 2019-10-17 22:44:47 t 1 1 125427 501 0.00 2019-10-17 23:02:23 2019-10-17 23:02:53 t 1 1 125433 566 0.00 2019-10-17 22:42:00 2019-10-17 23:11:26 t 1 1 125438 501 0.00 2019-10-17 23:13:43 2019-10-17 23:13:45 t 1 1 125439 562 0.00 2019-10-17 23:06:37 2019-10-17 23:15:19 t 1 1 125440 562 0.00 2019-10-17 23:16:10 2019-10-17 23:16:40 t 1 1 125441 538 0.00 2019-10-17 21:15:20 2019-10-17 23:20:14 t 1 1 125442 451 0.00 2019-10-17 23:04:15 2019-10-17 23:24:12 t 1 1 125443 562 0.00 2019-10-17 23:26:50 2019-10-17 23:27:18 t 1 1 125447 501 0.00 2019-10-17 23:31:00 2019-10-17 23:34:42 t 1 1 125451 220 0.00 2019-10-17 23:15:18 2019-10-17 23:38:57 t 1 1 125453 481 0.00 2019-10-17 19:46:14 2019-10-17 23:41:01 t 1 1 125458 538 0.00 2019-10-17 23:23:28 2019-10-17 23:44:40 t 1 1 125462 503 0.00 2019-10-17 23:51:40 2019-10-17 23:53:30 t 1 1 125468 514 0.00 2019-10-17 23:54:18 2019-10-17 23:59:50 t 1 1 125470 476 0.00 2019-10-17 23:10:51 2019-10-18 00:01:33 t 1 2 125473 408 0.00 2019-10-17 23:35:05 2019-10-18 00:03:03 t 1 1 125474 562 0.00 2019-10-18 00:01:43 2019-10-18 00:03:21 t 1 1 125475 562 0.00 2019-10-18 00:08:30 2019-10-18 00:09:08 t 1 1 125476 470 0.00 2019-10-18 00:12:41 2019-10-18 00:12:41 f 1 1 125478 503 0.00 2019-10-17 23:58:16 2019-10-18 00:14:29 t 1 1 125479 562 0.00 2019-10-18 00:16:01 2019-10-18 00:16:54 t 1 1 125484 566 0.00 2019-10-18 00:14:00 2019-10-18 00:24:26 t 1 1 125487 220 0.00 2019-10-18 00:20:24 2019-10-18 00:28:50 t 1 1 125489 503 0.00 2019-10-18 00:14:29 2019-10-18 00:30:52 t 1 1 125491 503 0.00 2019-10-18 00:31:15 2019-10-18 00:32:49 t 1 1 125495 456 0.00 2019-10-18 00:29:35 2019-10-18 00:39:52 t 1 1 125496 501 0.00 2019-10-18 00:33:09 2019-10-18 00:40:04 t 1 1 125498 501 0.00 2019-10-18 00:44:55 2019-10-18 00:45:04 t 1 1 125503 501 0.00 2019-10-18 00:53:11 2019-10-18 00:53:33 t 1 1 125504 501 0.00 2019-10-18 00:53:55 2019-10-18 00:54:04 t 1 1 125505 501 0.00 2019-10-18 00:54:23 2019-10-18 00:54:32 t 1 1 125506 483 0.00 2019-10-18 00:25:58 2019-10-18 00:55:31 t 1 1 125510 526 0.00 2019-10-18 00:54:31 2019-10-18 00:59:50 t 1 1 125511 544 0.00 2019-10-18 00:57:56 2019-10-18 01:06:09 t 1 2 125512 538 0.00 2019-10-17 23:53:42 2019-10-18 01:07:31 t 1 1 125514 501 0.00 2019-10-18 01:07:54 2019-10-18 01:08:27 t 1 1 125516 562 0.00 2019-10-18 01:08:30 2019-10-18 01:08:49 t 1 1 125525 412 0.00 2019-10-18 01:02:09 2019-10-18 01:31:49 t 1 1 125526 456 0.00 2019-10-18 00:57:12 2019-10-18 01:32:38 t 1 1 125532 476 0.00 2019-10-18 01:21:19 2019-10-18 01:49:58 t 1 2 125541 562 0.00 2019-10-18 02:12:02 2019-10-18 02:12:23 t 1 1 125546 562 0.00 2019-10-18 02:45:45 2019-10-18 02:46:05 t 1 1 125548 562 0.00 2019-10-18 02:55:16 2019-10-18 02:55:40 t 1 1 125549 562 0.00 2019-10-18 03:05:59 2019-10-18 03:06:20 t 1 1 125550 372 0.00 2019-10-18 02:05:16 2019-10-18 03:10:22 t 1 2 125553 379 0.00 2019-10-17 22:26:26 2019-10-18 03:31:32 t 1 1 125555 562 0.00 2019-10-18 03:43:05 2019-10-18 03:43:17 t 1 1 125558 562 0.00 2019-10-18 04:00:11 2019-10-18 04:00:24 t 1 1 125559 562 0.00 2019-10-18 04:01:42 2019-10-18 04:02:28 t 1 1 125561 311 0.00 2019-10-18 04:16:44 2019-10-18 04:21:07 t 1 2 125565 562 0.00 2019-10-18 04:50:49 2019-10-18 04:51:02 t 1 1 125344 566 0.00 2019-10-17 21:27:00 2019-10-17 21:36:02 t 1 1 125347 508 0.00 2019-10-17 19:57:11 2019-10-17 21:41:33 t 1 2 125349 408 0.00 2019-10-17 21:41:37 2019-10-17 21:41:47 t 1 1 125352 379 0.00 2019-10-17 20:53:46 2019-10-17 21:43:31 t 1 1 125354 562 0.00 2019-10-17 21:29:07 2019-10-17 21:44:20 t 1 1 125357 501 0.00 2019-10-17 21:48:02 2019-10-17 21:48:12 t 1 1 125359 570 0.00 2019-10-17 21:42:08 2019-10-17 21:49:03 t 1 1 125361 379 0.00 2019-10-17 21:43:31 2019-10-17 21:50:01 t 1 1 125364 501 0.00 2019-10-17 21:51:18 2019-10-17 21:52:37 t 1 1 125372 501 0.00 2019-10-17 21:58:35 2019-10-17 22:02:41 t 1 1 125374 558 0.00 2019-10-17 21:07:57 2019-10-17 22:08:40 t 1 1 125375 472 0.00 2019-10-17 22:04:19 2019-10-17 22:09:14 t 1 1 125377 501 0.00 2019-10-17 22:08:51 2019-10-17 22:09:24 t 1 1 125383 566 0.00 2019-10-17 22:09:14 2019-10-17 22:16:49 t 1 1 125385 485 0.00 2019-10-17 22:01:52 2019-10-17 22:18:20 t 1 1 125389 456 0.00 2019-10-17 22:19:37 2019-10-17 22:22:24 t 1 1 125391 490 0.00 2019-10-17 22:19:23 2019-10-17 22:22:34 t 1 1 125393 220 0.00 2019-10-17 21:59:32 2019-10-17 22:24:59 t 1 2 125395 490 0.00 2019-10-17 22:22:34 2019-10-17 22:25:52 t 1 1 125396 544 0.00 2019-10-17 22:16:58 2019-10-17 22:26:17 t 1 2 125399 490 0.00 2019-10-17 22:25:52 2019-10-17 22:29:06 t 1 1 125402 445 0.00 2019-10-17 20:33:46 2019-10-17 22:31:02 t 1 1 125407 408 0.00 2019-10-17 22:33:25 2019-10-17 22:34:38 t 1 1 125409 490 0.00 2019-10-17 22:32:25 2019-10-17 22:35:41 t 1 1 125416 499 0.00 2019-10-17 22:33:33 2019-10-17 22:41:00 t 1 1 125417 566 0.00 2019-10-17 22:35:44 2019-10-17 22:42:00 t 1 1 125420 542 0.00 2019-10-17 22:36:09 2019-10-17 22:49:17 t 1 1 125421 528 0.00 2019-10-17 22:26:55 2019-10-17 22:50:28 t 1 1 125424 296 0.00 2019-10-17 22:57:50 2019-10-17 23:00:13 t 1 2 125425 501 0.00 2019-10-17 23:01:17 2019-10-17 23:01:50 t 1 1 125426 501 0.00 2019-10-17 23:01:57 2019-10-17 23:01:58 t 1 1 125429 562 0.00 2019-10-17 22:24:32 2019-10-17 23:06:37 t 1 1 125430 512 0.00 2019-10-17 23:04:18 2019-10-17 23:07:30 t 1 1 125432 461 0.00 2019-10-17 23:09:54 2019-10-17 23:09:54 f 1 2 125434 528 0.00 2019-10-17 23:04:31 2019-10-17 23:11:59 t 1 1 125435 528 0.00 2019-10-17 23:11:59 2019-10-17 23:13:08 t 1 1 125437 501 0.00 2019-10-17 23:13:32 2019-10-17 23:13:33 t 1 1 125449 361 0.00 2019-10-17 21:52:54 2019-10-17 23:38:37 t 1 2 125454 508 0.00 2019-10-17 22:31:57 2019-10-17 23:42:11 t 1 2 125457 566 0.00 2019-10-17 23:33:11 2019-10-17 23:44:02 t 1 1 125460 514 0.00 2019-10-17 22:52:48 2019-10-17 23:48:46 t 1 1 125463 538 0.00 2019-10-17 23:44:46 2019-10-17 23:53:32 t 1 1 125465 445 0.00 2019-10-17 22:31:07 2019-10-17 23:54:35 t 1 1 125466 503 0.00 2019-10-17 23:54:33 2019-10-17 23:58:08 t 1 1 125467 566 0.00 2019-10-17 23:44:02 2019-10-17 23:59:45 t 1 1 125469 562 0.00 2019-10-18 00:00:04 2019-10-18 00:00:27 t 1 1 125472 220 0.00 2019-10-18 00:00:32 2019-10-18 00:02:32 t 1 1 125481 544 0.00 2019-10-17 22:33:39 2019-10-18 00:18:07 t 1 2 125482 545 0.00 2019-10-17 23:47:04 2019-10-18 00:22:07 t 1 1 125483 476 0.00 2019-10-18 00:18:41 2019-10-18 00:23:01 t 1 2 125486 562 0.00 2019-10-18 00:27:11 2019-10-18 00:27:32 t 1 1 125494 545 0.00 2019-10-18 00:31:41 2019-10-18 00:39:30 t 1 1 125500 456 0.00 2019-10-18 00:39:52 2019-10-18 00:48:40 t 1 1 125508 501 0.00 2019-10-18 00:57:24 2019-10-18 00:57:57 t 1 1 125513 526 0.00 2019-10-18 00:59:50 2019-10-18 01:08:13 t 1 1 125518 566 0.00 2019-10-18 01:10:15 2019-10-18 01:10:20 t 1 1 125519 544 0.00 2019-10-18 01:16:06 2019-10-18 01:18:05 t 1 2 125524 562 0.00 2019-10-18 01:31:14 2019-10-18 01:31:23 t 1 1 125527 456 0.00 2019-10-18 01:32:49 2019-10-18 01:34:03 t 1 1 125528 501 0.00 2019-10-18 01:23:49 2019-10-18 01:39:07 t 1 1 125529 544 0.00 2019-10-18 01:19:56 2019-10-18 01:40:01 t 1 2 125531 516 0.00 2019-10-18 01:37:47 2019-10-18 01:43:36 t 1 1 125533 501 0.00 2019-10-18 01:39:07 2019-10-18 01:53:20 t 1 1 125535 562 0.00 2019-10-18 01:58:19 2019-10-18 01:58:48 t 1 1 125536 514 0.00 2019-10-17 23:59:49 2019-10-18 02:01:36 t 1 1 125537 562 0.00 2019-10-18 02:01:36 2019-10-18 02:02:01 t 1 1 125539 516 0.00 2019-10-18 01:59:48 2019-10-18 02:06:38 t 1 1 125540 538 0.00 2019-10-18 01:07:36 2019-10-18 02:08:43 t 1 1 125543 562 0.00 2019-10-18 02:22:41 2019-10-18 02:23:08 t 1 1 125544 562 0.00 2019-10-18 02:28:02 2019-10-18 02:29:30 t 1 1 125547 562 0.00 2019-10-18 02:49:32 2019-10-18 02:50:22 t 1 1 125554 562 0.00 2019-10-18 03:33:30 2019-10-18 03:33:44 t 1 1 125556 562 0.00 2019-10-18 03:46:30 2019-10-18 03:47:10 t 1 1 125560 562 0.00 2019-10-18 04:10:58 2019-10-18 04:11:16 t 1 1 125563 562 0.00 2019-10-18 04:29:21 2019-10-18 04:29:33 t 1 1 125566 522 0.00 2019-10-18 04:45:53 2019-10-18 04:54:06 t 1 1 125567 522 0.00 2019-10-18 04:54:23 2019-10-18 04:54:52 t 1 1 125571 522 0.00 2019-10-18 05:03:26 2019-10-18 05:03:35 t 1 1 125579 562 0.00 2019-10-18 05:27:01 2019-10-18 05:27:25 t 1 1 125581 503 0.00 2019-10-18 05:28:29 2019-10-18 05:31:52 t 1 1 125583 562 0.00 2019-10-18 05:34:41 2019-10-18 05:35:04 t 1 1 125584 522 0.00 2019-10-18 05:39:03 2019-10-18 05:39:04 t 1 1 125589 562 0.00 2019-10-18 05:56:04 2019-10-18 05:56:31 t 1 1 125590 522 0.00 2019-10-18 05:59:23 2019-10-18 05:59:24 t 1 1 125591 520 0.00 2019-10-18 05:45:16 2019-10-18 06:03:34 t 1 1 125604 522 0.00 2019-10-18 06:23:58 2019-10-18 06:24:03 t 1 1 125607 570 0.00 2019-10-18 06:22:08 2019-10-18 06:29:22 t 1 1 125613 562 0.00 2019-10-18 06:39:16 2019-10-18 06:39:36 t 1 1 125617 522 0.00 2019-10-18 06:44:19 2019-10-18 06:45:19 t 1 1 125619 562 0.00 2019-10-18 06:50:00 2019-10-18 06:50:19 t 1 1 125621 522 0.00 2019-10-18 06:49:30 2019-10-18 06:50:38 t 1 1 125625 522 0.00 2019-10-18 06:54:50 2019-10-18 06:55:17 t 1 1 125627 485 0.00 2019-10-18 06:52:46 2019-10-18 06:58:20 t 1 1 125628 522 0.00 2019-10-18 06:59:39 2019-10-18 06:59:42 t 1 1 125630 520 0.00 2019-10-18 06:55:22 2019-10-18 07:03:56 t 1 1 125635 562 0.00 2019-10-18 07:11:32 2019-10-18 07:11:51 t 1 1 125637 520 0.00 2019-10-18 07:03:56 2019-10-18 07:14:31 t 1 1 125639 520 0.00 2019-10-18 07:14:31 2019-10-18 07:17:49 t 1 1 125640 485 0.00 2019-10-18 07:07:17 2019-10-18 07:18:07 t 1 1 125641 522 0.00 2019-10-18 07:19:59 2019-10-18 07:20:00 t 1 1 125644 522 0.00 2019-10-18 07:25:02 2019-10-18 07:25:03 t 1 1 125646 522 0.00 2019-10-18 07:30:06 2019-10-18 07:30:06 t 1 1 125648 562 0.00 2019-10-18 07:33:01 2019-10-18 07:33:25 t 1 1 125650 516 0.00 2019-10-18 07:16:14 2019-10-18 07:38:20 t 1 1 125651 522 0.00 2019-10-18 07:40:11 2019-10-18 07:40:21 t 1 1 125656 306 0.00 2019-10-18 07:46:13 2019-10-18 07:47:45 t 1 1 125659 562 0.00 2019-10-18 07:54:33 2019-10-18 07:54:54 t 1 1 125392 379 0.00 2019-10-17 22:13:21 2019-10-17 22:23:38 t 1 1 125394 566 0.00 2019-10-17 22:16:49 2019-10-17 22:25:20 t 1 1 125398 372 0.00 2019-10-17 21:57:45 2019-10-17 22:28:00 t 1 2 125401 501 0.00 2019-10-17 22:29:50 2019-10-17 22:30:23 t 1 1 125404 408 0.00 2019-10-17 22:05:42 2019-10-17 22:32:36 t 1 1 125408 542 0.00 2019-10-17 22:31:12 2019-10-17 22:35:07 t 1 1 125411 408 0.00 2019-10-17 22:35:28 2019-10-17 22:35:51 t 1 1 125414 490 0.00 2019-10-17 22:35:41 2019-10-17 22:39:00 t 1 1 125415 501 0.00 2019-10-17 22:40:18 2019-10-17 22:40:52 t 1 1 125422 501 0.00 2019-10-17 22:50:47 2019-10-17 22:51:21 t 1 1 125423 528 0.00 2019-10-17 22:50:28 2019-10-17 22:56:17 t 1 1 125428 528 0.00 2019-10-17 22:56:17 2019-10-17 23:04:31 t 1 1 125431 461 0.00 2019-10-17 23:09:12 2019-10-17 23:09:12 f 1 2 125436 501 0.00 2019-10-17 23:12:51 2019-10-17 23:13:26 t 1 1 125444 408 0.00 2019-10-17 22:35:58 2019-10-17 23:30:13 t 1 1 125445 566 0.00 2019-10-17 23:11:26 2019-10-17 23:33:11 t 1 1 125446 408 0.00 2019-10-17 23:30:13 2019-10-17 23:34:21 t 1 1 125448 562 0.00 2019-10-17 23:37:49 2019-10-17 23:37:59 t 1 1 125450 562 0.00 2019-10-17 23:38:32 2019-10-17 23:38:42 t 1 1 125452 220 0.00 2019-10-17 22:54:56 2019-10-17 23:39:19 t 1 2 125455 481 0.00 2019-10-17 23:41:01 2019-10-17 23:42:22 t 1 1 125456 562 0.00 2019-10-17 23:41:53 2019-10-17 23:43:38 t 1 1 125459 501 0.00 2019-10-17 23:43:26 2019-10-17 23:48:04 t 1 1 125461 562 0.00 2019-10-17 23:49:00 2019-10-17 23:49:45 t 1 1 125464 514 0.00 2019-10-17 23:48:46 2019-10-17 23:54:18 t 1 1 125471 476 0.00 2019-10-17 23:13:46 2019-10-18 00:01:50 t 1 2 125477 470 0.00 2019-10-18 00:12:48 2019-10-18 00:12:48 f 1 1 125480 476 0.00 2019-10-18 00:03:10 2019-10-18 00:17:33 t 1 2 125485 566 0.00 2019-10-18 00:24:29 2019-10-18 00:24:36 t 1 1 125488 545 0.00 2019-10-18 00:22:07 2019-10-18 00:29:04 t 1 1 125490 408 0.00 2019-10-18 00:03:03 2019-10-18 00:32:29 t 1 1 125492 501 0.00 2019-10-17 23:48:42 2019-10-18 00:33:09 t 1 1 125493 562 0.00 2019-10-18 00:37:58 2019-10-18 00:38:42 t 1 1 125497 476 0.00 2019-10-18 00:25:23 2019-10-18 00:41:48 t 1 2 125499 501 0.00 2019-10-18 00:47:56 2019-10-18 00:48:05 t 1 1 125501 562 0.00 2019-10-18 00:48:33 2019-10-18 00:48:45 t 1 1 125502 501 0.00 2019-10-18 00:50:57 2019-10-18 00:51:07 t 1 1 125507 544 0.00 2019-10-18 00:19:35 2019-10-18 00:57:25 t 1 2 125509 562 0.00 2019-10-18 00:58:58 2019-10-18 00:59:25 t 1 1 125515 526 0.00 2019-10-18 01:08:22 2019-10-18 01:08:35 t 1 1 125517 562 0.00 2019-10-18 01:09:49 2019-10-18 01:10:09 t 1 1 125520 562 0.00 2019-10-18 01:20:34 2019-10-18 01:20:58 t 1 1 125521 545 0.00 2019-10-18 01:06:55 2019-10-18 01:22:34 t 1 1 125522 501 0.00 2019-10-18 01:12:57 2019-10-18 01:23:37 t 1 1 125523 545 0.00 2019-10-18 01:22:34 2019-10-18 01:29:40 t 1 1 125530 562 0.00 2019-10-18 01:32:22 2019-10-18 01:42:21 t 1 1 125534 562 0.00 2019-10-18 01:46:34 2019-10-18 01:55:16 t 1 1 125538 562 0.00 2019-10-18 02:05:04 2019-10-18 02:05:31 t 1 1 125542 456 0.00 2019-10-18 01:40:05 2019-10-18 02:20:31 t 1 1 125545 562 0.00 2019-10-18 02:33:46 2019-10-18 02:37:00 t 1 1 125551 562 0.00 2019-10-18 03:15:06 2019-10-18 03:15:24 t 1 1 125552 562 0.00 2019-10-18 03:25:49 2019-10-18 03:26:11 t 1 1 125557 562 0.00 2019-10-18 03:49:27 2019-10-18 03:49:44 t 1 1 125562 562 0.00 2019-10-18 04:21:45 2019-10-18 04:21:57 t 1 1 125564 562 0.00 2019-10-18 04:40:05 2019-10-18 04:40:18 t 1 1 125568 522 0.00 2019-10-18 04:54:12 2019-10-18 04:56:38 t 1 1 125574 562 0.00 2019-10-18 05:08:45 2019-10-18 05:08:57 t 1 1 125577 522 0.00 2019-10-18 05:18:41 2019-10-18 05:19:45 t 1 1 125586 562 0.00 2019-10-18 05:45:26 2019-10-18 05:45:46 t 1 1 125587 522 0.00 2019-10-18 05:49:16 2019-10-18 05:49:18 t 1 1 125588 522 0.00 2019-10-18 05:54:20 2019-10-18 05:54:21 t 1 1 125592 522 0.00 2019-10-18 06:04:29 2019-10-18 06:04:38 t 1 1 125593 562 0.00 2019-10-18 06:06:52 2019-10-18 06:07:18 t 1 1 125595 522 0.00 2019-10-18 06:09:41 2019-10-18 06:09:44 t 1 1 125597 520 0.00 2019-10-18 06:03:50 2019-10-18 06:13:53 t 1 1 125598 522 0.00 2019-10-18 06:14:46 2019-10-18 06:14:48 t 1 1 125599 570 0.00 2019-10-18 06:07:44 2019-10-18 06:15:43 t 1 1 125600 562 0.00 2019-10-18 06:17:35 2019-10-18 06:18:06 t 1 1 125603 570 0.00 2019-10-18 06:15:43 2019-10-18 06:22:08 t 1 1 125605 562 0.00 2019-10-18 06:28:30 2019-10-18 06:28:52 t 1 1 125606 522 0.00 2019-10-18 06:29:04 2019-10-18 06:29:10 t 1 1 125623 520 0.00 2019-10-18 06:50:32 2019-10-18 06:51:47 t 1 1 125624 522 0.00 2019-10-18 06:54:29 2019-10-18 06:54:38 t 1 1 125631 522 0.00 2019-10-18 07:04:44 2019-10-18 07:04:46 t 1 1 125632 542 0.00 2019-10-18 06:54:56 2019-10-18 07:05:28 t 1 1 125633 485 0.00 2019-10-18 07:03:25 2019-10-18 07:06:25 t 1 1 125634 522 0.00 2019-10-18 07:09:48 2019-10-18 07:09:49 t 1 1 125642 562 0.00 2019-10-18 07:22:17 2019-10-18 07:22:36 t 1 1 125643 485 0.00 2019-10-18 07:18:07 2019-10-18 07:23:36 t 1 1 125645 485 0.00 2019-10-18 07:23:36 2019-10-18 07:28:15 t 1 1 125652 562 0.00 2019-10-18 07:43:49 2019-10-18 07:44:10 t 1 1 125654 520 0.00 2019-10-18 07:17:48 2019-10-18 07:45:23 t 1 1 125655 306 0.00 2019-10-18 07:40:27 2019-10-18 07:46:13 t 1 1 125657 522 0.00 2019-10-18 07:50:22 2019-10-18 07:50:46 t 1 1 125660 520 0.00 2019-10-18 07:45:22 2019-10-18 07:55:39 t 1 1 125667 570 0.00 2019-10-18 07:58:17 2019-10-18 08:05:48 t 1 1 125671 522 0.00 2019-10-18 08:11:10 2019-10-18 08:11:13 t 1 1 125675 522 0.00 2019-10-18 08:16:07 2019-10-18 08:16:09 t 1 1 125678 306 0.00 2019-10-18 08:12:41 2019-10-18 08:16:37 t 1 1 125679 522 0.00 2019-10-18 08:21:09 2019-10-18 08:21:11 t 1 1 125680 516 0.00 2019-10-18 08:16:04 2019-10-18 08:23:36 t 1 1 125686 522 0.00 2019-10-18 08:36:28 2019-10-18 08:37:50 t 1 1 125688 568 0.00 2019-10-18 07:48:26 2019-10-18 08:38:30 t 1 1 125695 562 0.00 2019-10-18 08:46:42 2019-10-18 08:47:02 t 1 1 125698 499 0.00 2019-10-18 08:47:42 2019-10-18 08:48:53 t 1 1 125699 498 0.00 2019-10-18 08:03:12 2019-10-18 08:49:47 t 1 2 125700 522 0.00 2019-10-18 08:48:26 2019-10-18 08:50:50 t 1 1 125702 538 0.00 2019-10-18 02:08:48 2019-10-18 08:52:37 t 1 1 125703 562 0.00 2019-10-18 08:51:42 2019-10-18 08:53:39 t 1 1 125709 499 0.00 2019-10-18 08:56:09 2019-10-18 09:00:14 t 1 1 125713 522 0.00 2019-10-18 09:01:45 2019-10-18 09:01:51 t 1 1 125714 522 0.00 2019-10-18 09:02:10 2019-10-18 09:02:17 t 1 1 125716 566 0.00 2019-10-18 08:56:26 2019-10-18 09:02:47 t 1 1 125717 522 0.00 2019-10-18 09:03:04 2019-10-18 09:03:10 t 1 1 125718 522 0.00 2019-10-18 09:03:30 2019-10-18 09:03:32 t 1 1 125721 522 0.00 2019-10-18 09:03:23 2019-10-18 09:04:39 t 1 1 125723 562 0.00 2019-10-18 09:08:09 2019-10-18 09:08:29 t 1 1 125569 522 0.00 2019-10-18 04:58:24 2019-10-18 04:58:27 t 1 1 125570 562 0.00 2019-10-18 05:01:35 2019-10-18 05:01:48 t 1 1 125572 522 0.00 2019-10-18 05:08:30 2019-10-18 05:08:33 t 1 1 125573 522 0.00 2019-10-18 05:08:49 2019-10-18 05:08:50 t 1 1 125575 522 0.00 2019-10-18 05:13:39 2019-10-18 05:13:41 t 1 1 125576 562 0.00 2019-10-18 05:16:22 2019-10-18 05:16:34 t 1 1 125578 522 0.00 2019-10-18 05:23:51 2019-10-18 05:23:54 t 1 1 125580 522 0.00 2019-10-18 05:28:57 2019-10-18 05:28:59 t 1 1 125582 522 0.00 2019-10-18 05:34:00 2019-10-18 05:34:01 t 1 1 125585 522 0.00 2019-10-18 05:44:09 2019-10-18 05:44:10 t 1 1 125594 570 0.00 2019-10-18 05:57:46 2019-10-18 06:07:44 t 1 1 125596 542 0.00 2019-10-18 05:52:20 2019-10-18 06:10:19 t 1 1 125601 568 0.00 2019-10-18 06:10:09 2019-10-18 06:18:52 t 1 1 125602 522 0.00 2019-10-18 06:19:49 2019-10-18 06:19:52 t 1 1 125608 522 0.00 2019-10-18 06:29:15 2019-10-18 06:31:38 t 1 1 125609 522 0.00 2019-10-18 06:34:18 2019-10-18 06:34:45 t 1 1 125610 522 0.00 2019-10-18 06:34:11 2019-10-18 06:35:38 t 1 1 125611 570 0.00 2019-10-18 06:29:22 2019-10-18 06:37:43 t 1 1 125612 522 0.00 2019-10-18 06:39:14 2019-10-18 06:39:17 t 1 1 125614 520 0.00 2019-10-18 06:13:52 2019-10-18 06:39:38 t 1 1 125615 570 0.00 2019-10-18 06:37:43 2019-10-18 06:43:42 t 1 1 125616 520 0.00 2019-10-18 06:39:38 2019-10-18 06:44:07 t 1 1 125618 520 0.00 2019-10-18 06:44:07 2019-10-18 06:46:44 t 1 1 125620 520 0.00 2019-10-18 06:46:46 2019-10-18 06:50:32 t 1 1 125622 485 0.00 2019-10-18 06:46:54 2019-10-18 06:51:39 t 1 1 125626 520 0.00 2019-10-18 06:51:47 2019-10-18 06:55:22 t 1 1 125629 562 0.00 2019-10-18 07:00:44 2019-10-18 07:01:05 t 1 1 125636 542 0.00 2019-10-18 07:05:28 2019-10-18 07:12:50 t 1 1 125638 522 0.00 2019-10-18 07:14:53 2019-10-18 07:14:54 t 1 1 125647 551 0.00 2019-10-18 02:36:46 2019-10-18 07:31:11 t 1 1 125649 522 0.00 2019-10-18 07:35:09 2019-10-18 07:35:10 t 1 1 125653 522 0.00 2019-10-18 07:45:18 2019-10-18 07:45:21 t 1 1 125658 490 0.00 2019-10-17 22:39:00 2019-10-18 07:50:51 t 1 1 125663 522 0.00 2019-10-18 07:55:59 2019-10-18 07:58:38 t 1 1 125665 522 0.00 2019-10-18 08:01:01 2019-10-18 08:02:23 t 1 1 125668 522 0.00 2019-10-18 08:05:56 2019-10-18 08:05:59 t 1 1 125670 522 0.00 2019-10-18 08:06:05 2019-10-18 08:08:38 t 1 1 125676 516 0.00 2019-10-18 07:38:34 2019-10-18 08:16:10 t 1 1 125682 522 0.00 2019-10-18 08:26:16 2019-10-18 08:26:16 t 1 1 125683 562 0.00 2019-10-18 08:26:46 2019-10-18 08:27:08 t 1 1 125684 522 0.00 2019-10-18 08:31:19 2019-10-18 08:32:21 t 1 1 125687 562 0.00 2019-10-18 08:37:34 2019-10-18 08:37:54 t 1 1 125690 562 0.00 2019-10-18 08:40:18 2019-10-18 08:40:28 t 1 1 125691 522 0.00 2019-10-18 08:41:24 2019-10-18 08:41:26 t 1 1 125692 412 0.00 2019-10-18 08:32:49 2019-10-18 08:42:57 t 1 1 125693 566 0.00 2019-10-18 08:30:25 2019-10-18 08:43:27 t 1 1 125696 522 0.00 2019-10-18 08:46:27 2019-10-18 08:47:39 t 1 1 125706 566 0.00 2019-10-18 08:43:27 2019-10-18 08:56:26 t 1 1 125707 499 0.00 2019-10-18 08:49:08 2019-10-18 08:57:04 t 1 1 125708 562 0.00 2019-10-18 08:57:22 2019-10-18 08:57:44 t 1 1 125710 522 0.00 2019-10-18 08:57:34 2019-10-18 09:00:45 t 1 1 125711 522 0.00 2019-10-18 09:01:07 2019-10-18 09:01:13 t 1 1 125712 522 0.00 2019-10-18 09:01:26 2019-10-18 09:01:33 t 1 1 125720 522 0.00 2019-10-18 09:04:05 2019-10-18 09:04:19 t 1 1 125722 522 0.00 2019-10-18 09:04:32 2019-10-18 09:05:39 t 1 1 125725 522 0.00 2019-10-18 09:04:39 2019-10-18 09:21:14 t 1 1 125730 325 0.00 2019-10-18 09:29:10 2019-10-18 09:33:01 t 1 2 125737 451 0.00 2019-10-18 09:39:55 2019-10-18 09:44:15 t 1 1 125739 516 0.00 2019-10-18 09:38:41 2019-10-18 09:45:07 t 1 1 125741 558 0.00 2019-10-18 09:42:49 2019-10-18 09:45:57 t 1 1 125742 220 0.00 2019-10-18 09:01:28 2019-10-18 09:47:35 t 1 1 125749 520 0.00 2019-10-18 09:50:53 2019-10-18 09:57:05 t 1 1 125752 562 0.00 2019-10-18 10:00:14 2019-10-18 10:00:45 t 1 1 125758 522 0.00 2019-10-18 10:03:58 2019-10-18 10:04:53 t 1 1 125760 522 0.00 2019-10-18 10:05:12 2019-10-18 10:05:19 t 1 1 125763 562 0.00 2019-10-18 10:02:02 2019-10-18 10:07:54 t 1 1 125764 562 0.00 2019-10-18 10:08:25 2019-10-18 10:10:05 t 1 1 125766 562 0.00 2019-10-18 10:10:41 2019-10-18 10:10:53 t 1 1 125769 456 0.00 2019-10-18 10:04:23 2019-10-18 10:11:53 t 1 1 125773 522 0.00 2019-10-18 10:12:50 2019-10-18 10:12:51 t 1 1 125774 522 0.00 2019-10-18 10:12:57 2019-10-18 10:13:02 t 1 1 125779 522 0.00 2019-10-18 10:14:35 2019-10-18 10:14:40 t 1 1 125781 522 0.00 2019-10-18 10:15:25 2019-10-18 10:15:32 t 1 1 125783 522 0.00 2019-10-18 10:15:53 2019-10-18 10:15:55 t 1 1 125784 522 0.00 2019-10-18 10:16:00 2019-10-18 10:16:02 t 1 1 125788 562 0.00 2019-10-18 10:16:26 2019-10-18 10:16:50 t 1 1 125799 220 0.00 2019-10-18 10:18:12 2019-10-18 10:24:06 t 1 1 125804 481 0.00 2019-10-18 10:01:25 2019-10-18 10:32:49 t 1 1 125805 544 0.00 2019-10-18 10:03:23 2019-10-18 10:33:47 t 1 1 125807 516 0.00 2019-10-18 10:33:39 2019-10-18 10:37:39 t 1 1 125809 564 0.00 2019-10-17 20:45:18 2019-10-18 10:39:50 t 1 1 125812 562 0.00 2019-10-18 10:46:47 2019-10-18 10:47:07 t 1 1 125815 306 0.00 2019-10-18 10:49:55 2019-10-18 10:55:10 t 1 1 125822 522 0.00 2019-10-18 11:05:09 2019-10-18 11:05:22 t 1 1 125828 516 0.00 2019-10-18 11:06:35 2019-10-18 11:15:11 t 1 1 125833 562 0.00 2019-10-18 11:19:42 2019-10-18 11:19:50 t 1 1 125834 562 0.00 2019-10-18 11:21:08 2019-10-18 11:22:11 t 1 1 125838 522 0.00 2019-10-18 11:24:30 2019-10-18 11:24:31 t 1 1 125839 445 0.00 2019-10-18 08:09:14 2019-10-18 11:24:57 t 1 1 125840 481 0.00 2019-10-18 10:32:48 2019-10-18 11:25:39 t 1 1 125841 538 0.00 2019-10-18 09:59:12 2019-10-18 11:26:17 t 1 1 125843 522 0.00 2019-10-18 11:29:02 2019-10-18 11:29:03 t 1 1 125858 564 0.00 2019-10-18 10:39:50 2019-10-18 11:51:54 t 1 1 125861 538 0.00 2019-10-18 11:25:35 2019-10-18 11:53:51 t 1 1 125862 220 0.00 2019-10-18 11:50:20 2019-10-18 11:54:38 t 1 1 125864 306 0.00 2019-10-18 10:59:54 2019-10-18 11:56:21 t 1 1 125867 522 0.00 2019-10-18 11:57:43 2019-10-18 11:57:55 t 1 1 125869 562 0.00 2019-10-18 11:58:26 2019-10-18 11:59:24 t 1 1 125872 220 0.00 2019-10-18 11:51:09 2019-10-18 12:02:16 t 1 2 125873 522 0.00 2019-10-18 12:03:24 2019-10-18 12:03:36 t 1 1 125877 562 0.00 2019-10-18 12:05:52 2019-10-18 12:06:39 t 1 1 125878 522 0.00 2019-10-18 12:05:55 2019-10-18 12:07:09 t 1 1 125881 562 0.00 2019-10-18 12:07:48 2019-10-18 12:08:51 t 1 1 125882 522 0.00 2019-10-18 12:09:20 2019-10-18 12:09:32 t 1 1 125887 544 0.00 2019-10-18 12:10:44 2019-10-18 12:16:11 t 1 1 125892 522 0.00 2019-10-18 12:20:39 2019-10-18 12:21:52 t 1 1 125896 522 0.00 2019-10-18 12:22:04 2019-10-18 12:24:36 t 1 1 125661 522 0.00 2019-10-18 07:55:47 2019-10-18 07:55:54 t 1 1 125662 570 0.00 2019-10-18 07:51:42 2019-10-18 07:58:17 t 1 1 125664 306 0.00 2019-10-18 07:57:47 2019-10-18 08:01:47 t 1 1 125666 562 0.00 2019-10-18 08:05:15 2019-10-18 08:05:40 t 1 1 125669 520 0.00 2019-10-18 07:55:39 2019-10-18 08:07:23 t 1 1 125672 522 0.00 2019-10-18 08:11:04 2019-10-18 08:12:38 t 1 1 125673 570 0.00 2019-10-18 08:05:48 2019-10-18 08:13:26 t 1 1 125674 520 0.00 2019-10-18 08:07:23 2019-10-18 08:14:00 t 1 1 125677 562 0.00 2019-10-18 08:15:58 2019-10-18 08:16:25 t 1 1 125681 430 0.00 2019-10-18 08:18:03 2019-10-18 08:24:27 t 1 1 125685 412 0.00 2019-10-18 01:31:49 2019-10-18 08:32:49 t 1 1 125689 562 0.00 2019-10-18 08:38:37 2019-10-18 08:38:46 t 1 1 125694 522 0.00 2019-10-18 08:43:00 2019-10-18 08:44:38 t 1 1 125697 499 0.00 2019-10-17 22:41:00 2019-10-18 08:48:39 t 1 1 125701 430 0.00 2019-10-18 08:52:00 2019-10-18 08:52:23 t 1 1 125704 522 0.00 2019-10-18 08:53:39 2019-10-18 08:53:40 t 1 1 125705 292 0.00 2019-10-18 08:54:53 2019-10-18 08:55:57 t 1 2 125715 522 0.00 2019-10-18 09:02:36 2019-10-18 09:02:43 t 1 1 125719 408 0.00 2019-10-18 08:53:02 2019-10-18 09:03:58 t 1 1 125726 562 0.00 2019-10-18 09:26:39 2019-10-18 09:27:02 t 1 1 125728 562 0.00 2019-10-18 09:28:54 2019-10-18 09:29:04 t 1 1 125729 568 0.00 2019-10-18 08:44:36 2019-10-18 09:32:42 t 1 1 125733 456 0.00 2019-10-18 09:40:34 2019-10-18 09:42:22 t 1 1 125736 481 0.00 2019-10-18 07:58:50 2019-10-18 09:43:29 t 1 1 125743 520 0.00 2019-10-18 09:36:20 2019-10-18 09:50:53 t 1 1 125745 562 0.00 2019-10-18 09:52:34 2019-10-18 09:52:43 t 1 1 125746 412 0.00 2019-10-18 08:42:57 2019-10-18 09:53:25 t 1 1 125747 516 0.00 2019-10-18 09:54:01 2019-10-18 09:55:59 t 1 1 125750 481 0.00 2019-10-18 09:56:38 2019-10-18 09:57:40 t 1 1 125751 562 0.00 2019-10-18 09:53:24 2019-10-18 09:59:00 t 1 1 125755 522 0.00 2019-10-18 10:03:11 2019-10-18 10:03:16 t 1 1 125756 522 0.00 2019-10-18 10:03:36 2019-10-18 10:03:41 t 1 1 125757 451 0.00 2019-10-18 09:45:29 2019-10-18 10:04:23 t 1 1 125759 522 0.00 2019-10-18 10:05:05 2019-10-18 10:05:07 t 1 1 125761 544 0.00 2019-10-18 09:52:20 2019-10-18 10:07:28 t 1 2 125768 522 0.00 2019-10-18 10:11:21 2019-10-18 10:11:29 t 1 1 125770 522 0.00 2019-10-18 10:11:49 2019-10-18 10:11:55 t 1 1 125771 522 0.00 2019-10-18 10:12:00 2019-10-18 10:12:07 t 1 1 125772 522 0.00 2019-10-18 10:12:25 2019-10-18 10:12:31 t 1 1 125776 522 0.00 2019-10-18 10:13:38 2019-10-18 10:13:44 t 1 1 125777 522 0.00 2019-10-18 10:14:02 2019-10-18 10:14:08 t 1 1 125778 522 0.00 2019-10-18 10:14:28 2019-10-18 10:14:29 t 1 1 125780 522 0.00 2019-10-18 10:14:58 2019-10-18 10:15:05 t 1 1 125782 522 0.00 2019-10-18 10:14:21 2019-10-18 10:15:39 t 1 1 125786 522 0.00 2019-10-18 10:16:15 2019-10-18 10:16:20 t 1 1 125787 522 0.00 2019-10-18 10:16:25 2019-10-18 10:16:32 t 1 1 125789 522 0.00 2019-10-18 10:16:37 2019-10-18 10:16:55 t 1 1 125790 522 0.00 2019-10-18 10:17:00 2019-10-18 10:17:08 t 1 1 125791 522 0.00 2019-10-18 10:17:28 2019-10-18 10:17:30 t 1 1 125792 522 0.00 2019-10-18 10:17:52 2019-10-18 10:17:52 f 1 1 125794 570 0.00 2019-10-18 08:13:26 2019-10-18 10:18:51 t 1 1 125795 522 0.00 2019-10-18 10:17:45 2019-10-18 10:19:39 t 1 1 125796 306 0.00 2019-10-18 10:12:28 2019-10-18 10:20:23 t 1 1 125800 485 0.00 2019-10-18 10:18:12 2019-10-18 10:24:20 t 1 1 125801 562 0.00 2019-10-18 10:27:05 2019-10-18 10:27:31 t 1 1 125803 562 0.00 2019-10-18 10:31:44 2019-10-18 10:32:46 t 1 1 125806 562 0.00 2019-10-18 10:35:59 2019-10-18 10:36:25 t 1 1 125811 568 0.00 2019-10-18 09:54:53 2019-10-18 10:42:06 t 1 1 125814 485 0.00 2019-10-18 10:51:39 2019-10-18 10:53:55 t 1 1 125818 456 0.00 2019-10-18 10:57:10 2019-10-18 10:59:58 t 1 1 125820 522 0.00 2019-10-18 11:00:42 2019-10-18 11:03:33 t 1 1 125827 220 0.00 2019-10-18 11:10:13 2019-10-18 11:12:45 t 1 1 125832 568 0.00 2019-10-18 10:53:39 2019-10-18 11:19:26 t 1 1 125837 522 0.00 2019-10-18 11:23:52 2019-10-18 11:24:21 t 1 1 125844 445 0.00 2019-10-18 11:25:03 2019-10-18 11:31:49 t 1 1 125846 522 0.00 2019-10-18 11:35:10 2019-10-18 11:35:24 t 1 1 125847 522 0.00 2019-10-18 11:35:33 2019-10-18 11:36:13 t 1 1 125852 562 0.00 2019-10-18 11:46:19 2019-10-18 11:46:30 t 1 1 125853 562 0.00 2019-10-18 11:47:06 2019-10-18 11:47:18 t 1 1 125855 562 0.00 2019-10-18 11:50:05 2019-10-18 11:50:15 t 1 1 125856 542 0.00 2019-10-18 07:18:20 2019-10-18 11:50:59 t 1 1 125857 516 0.00 2019-10-18 11:44:41 2019-10-18 11:51:13 t 1 1 125860 562 0.00 2019-10-18 11:52:25 2019-10-18 11:52:35 t 1 1 125863 562 0.00 2019-10-18 11:55:32 2019-10-18 11:55:40 t 1 1 125866 522 0.00 2019-10-18 11:57:19 2019-10-18 11:57:32 t 1 1 125874 562 0.00 2019-10-18 12:01:52 2019-10-18 12:04:34 t 1 1 125875 562 0.00 2019-10-18 12:04:40 2019-10-18 12:05:47 t 1 1 125883 306 0.00 2019-10-18 12:07:00 2019-10-18 12:11:08 t 1 1 125886 562 0.00 2019-10-18 12:15:00 2019-10-18 12:15:21 t 1 1 125888 325 0.00 2019-10-18 11:47:40 2019-10-18 12:16:17 t 1 2 125890 568 0.00 2019-10-18 11:19:24 2019-10-18 12:20:23 t 1 1 125894 542 0.00 2019-10-18 12:11:48 2019-10-18 12:22:24 t 1 1 125898 538 0.00 2019-10-18 11:58:03 2019-10-18 12:31:55 t 1 1 125900 528 0.00 2019-10-18 12:12:19 2019-10-18 12:36:30 t 1 1 125903 481 0.00 2019-10-18 11:26:16 2019-10-18 12:44:42 t 1 1 125910 562 0.00 2019-10-18 12:55:46 2019-10-18 12:56:02 t 1 1 125911 430 0.00 2019-10-18 12:55:29 2019-10-18 12:56:49 t 1 1 125912 562 0.00 2019-10-18 12:56:29 2019-10-18 12:58:31 t 1 1 125917 296 0.00 2019-10-18 13:02:32 2019-10-18 13:08:55 t 1 2 125926 361 0.00 2019-10-18 12:25:56 2019-10-18 13:19:58 t 1 2 125928 430 0.00 2019-10-18 13:20:06 2019-10-18 13:22:01 t 1 1 125932 562 0.00 2019-10-18 13:24:52 2019-10-18 13:25:48 t 1 1 125933 481 0.00 2019-10-18 13:24:28 2019-10-18 13:27:19 t 1 1 125935 481 0.00 2019-10-18 13:27:59 2019-10-18 13:28:24 t 1 1 125938 562 0.00 2019-10-18 13:32:46 2019-10-18 13:34:39 t 1 1 125940 544 0.00 2019-10-18 13:34:00 2019-10-18 13:37:39 t 1 1 125944 544 0.00 2019-10-18 13:37:39 2019-10-18 13:44:34 t 1 1 125945 562 0.00 2019-10-18 13:41:07 2019-10-18 13:45:31 t 1 1 125953 481 0.00 2019-10-18 13:52:35 2019-10-18 13:59:25 t 1 1 125956 562 0.00 2019-10-18 14:02:20 2019-10-18 14:02:44 t 1 1 125957 456 0.00 2019-10-18 13:43:46 2019-10-18 14:08:10 t 1 1 125959 528 0.00 2019-10-18 13:54:28 2019-10-18 14:10:18 t 1 1 125960 516 0.00 2019-10-18 14:04:51 2019-10-18 14:10:59 t 1 1 125962 522 0.00 2019-10-18 14:09:00 2019-10-18 14:12:06 t 1 1 125963 412 0.00 2019-10-18 13:58:47 2019-10-18 14:13:28 t 1 1 125964 562 0.00 2019-10-18 14:13:12 2019-10-18 14:14:19 t 1 1 125969 522 0.00 2019-10-18 14:15:30 2019-10-18 14:16:16 t 1 1 125724 562 0.00 2019-10-18 09:18:54 2019-10-18 09:19:13 t 1 1 125727 522 0.00 2019-10-18 09:21:14 2019-10-18 09:27:54 t 1 1 125731 562 0.00 2019-10-18 09:37:25 2019-10-18 09:37:46 t 1 1 125732 456 0.00 2019-10-18 09:39:46 2019-10-18 09:40:34 t 1 1 125734 562 0.00 2019-10-18 09:41:16 2019-10-18 09:42:40 t 1 1 125735 456 0.00 2019-10-18 09:42:11 2019-10-18 09:43:15 t 1 1 125738 522 0.00 2019-10-18 09:27:54 2019-10-18 09:44:37 t 1 1 125740 562 0.00 2019-10-18 09:44:24 2019-10-18 09:45:33 t 1 1 125744 306 0.00 2019-10-18 09:48:22 2019-10-18 09:52:21 t 1 1 125748 481 0.00 2019-10-18 09:43:28 2019-10-18 09:56:35 t 1 1 125753 522 0.00 2019-10-18 09:44:37 2019-10-18 10:00:58 t 1 1 125754 522 0.00 2019-10-18 10:00:58 2019-10-18 10:03:06 t 1 1 125762 306 0.00 2019-10-18 09:53:38 2019-10-18 10:07:51 t 1 1 125765 520 0.00 2019-10-18 09:57:05 2019-10-18 10:10:44 t 1 1 125767 522 0.00 2019-10-18 10:05:24 2019-10-18 10:11:01 t 1 1 125775 522 0.00 2019-10-18 10:13:19 2019-10-18 10:13:27 t 1 1 125785 522 0.00 2019-10-18 10:16:07 2019-10-18 10:16:09 t 1 1 125793 522 0.00 2019-10-18 10:17:21 2019-10-18 10:18:39 t 1 1 125797 562 0.00 2019-10-18 10:19:19 2019-10-18 10:20:23 t 1 1 125798 570 0.00 2019-10-18 10:18:48 2019-10-18 10:22:50 t 1 1 125802 296 0.00 2019-10-18 10:23:24 2019-10-18 10:31:48 t 1 2 125808 562 0.00 2019-10-18 10:38:42 2019-10-18 10:39:05 t 1 1 125810 456 0.00 2019-10-18 10:38:27 2019-10-18 10:41:25 t 1 1 125813 485 0.00 2019-10-18 10:47:57 2019-10-18 10:51:27 t 1 1 125816 562 0.00 2019-10-18 10:54:49 2019-10-18 10:57:33 t 1 1 125817 485 0.00 2019-10-18 10:55:59 2019-10-18 10:59:40 t 1 1 125819 562 0.00 2019-10-18 10:59:56 2019-10-18 11:00:14 t 1 1 125821 522 0.00 2019-10-18 11:04:37 2019-10-18 11:04:50 t 1 1 125823 562 0.00 2019-10-18 11:03:34 2019-10-18 11:05:39 t 1 1 125824 522 0.00 2019-10-18 11:06:02 2019-10-18 11:06:12 t 1 1 125825 522 0.00 2019-10-18 11:08:19 2019-10-18 11:09:39 t 1 1 125826 562 0.00 2019-10-18 11:10:42 2019-10-18 11:11:10 t 1 1 125829 562 0.00 2019-10-18 11:15:23 2019-10-18 11:15:33 t 1 1 125830 562 0.00 2019-10-18 11:15:58 2019-10-18 11:16:10 t 1 1 125831 526 0.00 2019-10-18 11:17:21 2019-10-18 11:17:33 t 1 1 125835 498 0.00 2019-10-18 10:35:42 2019-10-18 11:23:06 t 1 2 125836 526 0.00 2019-10-18 11:17:37 2019-10-18 11:23:57 t 1 1 125842 526 0.00 2019-10-18 11:23:57 2019-10-18 11:27:16 t 1 1 125845 562 0.00 2019-10-18 11:32:29 2019-10-18 11:33:02 t 1 1 125848 522 0.00 2019-10-18 11:38:11 2019-10-18 11:38:23 t 1 1 125849 562 0.00 2019-10-18 11:43:17 2019-10-18 11:43:49 t 1 1 125850 544 0.00 2019-10-18 11:43:11 2019-10-18 11:45:45 t 1 2 125851 522 0.00 2019-10-18 11:45:50 2019-10-18 11:46:02 t 1 1 125854 522 0.00 2019-10-18 11:48:18 2019-10-18 11:48:30 t 1 1 125859 562 0.00 2019-10-18 11:51:50 2019-10-18 11:51:59 t 1 1 125865 538 0.00 2019-10-18 11:53:57 2019-10-18 11:57:04 t 1 1 125868 528 0.00 2019-10-18 11:45:31 2019-10-18 11:59:09 t 1 1 125870 522 0.00 2019-10-18 11:59:34 2019-10-18 11:59:52 t 1 1 125871 487 0.00 2019-10-18 11:05:28 2019-10-18 12:00:33 t 1 2 125876 526 0.00 2019-10-18 12:04:12 2019-10-18 12:06:26 t 1 1 125879 562 0.00 2019-10-18 12:07:27 2019-10-18 12:07:40 t 1 1 125880 516 0.00 2019-10-18 12:04:47 2019-10-18 12:08:38 t 1 1 125884 542 0.00 2019-10-18 11:50:59 2019-10-18 12:11:48 t 1 1 125885 562 0.00 2019-10-18 12:12:11 2019-10-18 12:13:41 t 1 1 125889 306 0.00 2019-10-18 12:11:08 2019-10-18 12:16:24 t 1 1 125891 522 0.00 2019-10-18 12:10:07 2019-10-18 12:20:39 t 1 1 125893 522 0.00 2019-10-18 12:21:52 2019-10-18 12:22:00 t 1 1 125895 562 0.00 2019-10-18 12:19:53 2019-10-18 12:22:48 t 1 1 125901 451 0.00 2019-10-18 12:37:45 2019-10-18 12:41:06 t 1 1 125902 528 0.00 2019-10-18 12:36:30 2019-10-18 12:43:16 t 1 1 125905 562 0.00 2019-10-18 12:25:40 2019-10-18 12:47:32 t 1 1 125907 306 0.00 2019-10-18 12:17:07 2019-10-18 12:49:50 t 1 1 125908 562 0.00 2019-10-18 12:49:11 2019-10-18 12:55:08 t 1 1 125913 520 0.00 2019-10-18 12:56:47 2019-10-18 13:01:00 t 1 1 125915 562 0.00 2019-10-18 13:07:18 2019-10-18 13:07:44 t 1 1 125920 528 0.00 2019-10-18 13:10:26 2019-10-18 13:10:31 t 1 1 125922 306 0.00 2019-10-18 13:12:28 2019-10-18 13:15:56 t 1 1 125923 306 0.00 2019-10-18 13:15:55 2019-10-18 13:17:17 t 1 1 125930 481 0.00 2019-10-18 12:49:50 2019-10-18 13:23:47 t 1 1 125934 498 0.00 2019-10-18 13:08:04 2019-10-18 13:27:57 t 1 2 125941 562 0.00 2019-10-18 13:38:23 2019-10-18 13:38:51 t 1 1 125942 562 0.00 2019-10-18 13:39:06 2019-10-18 13:39:33 t 1 1 125946 306 0.00 2019-10-18 13:37:06 2019-10-18 13:45:41 t 1 1 125948 481 0.00 2019-10-18 13:47:11 2019-10-18 13:51:36 t 1 1 125949 528 0.00 2019-10-18 13:36:34 2019-10-18 13:54:28 t 1 1 125950 306 0.00 2019-10-18 13:47:04 2019-10-18 13:57:04 t 1 1 125951 412 0.00 2019-10-18 13:39:45 2019-10-18 13:58:47 t 1 1 125952 562 0.00 2019-10-18 13:46:48 2019-10-18 13:59:03 t 1 1 125954 522 0.00 2019-10-18 13:53:51 2019-10-18 13:59:45 t 1 1 125961 562 0.00 2019-10-18 14:10:20 2019-10-18 14:11:46 t 1 1 125965 522 0.00 2019-10-18 14:13:37 2019-10-18 14:14:28 t 1 1 125966 451 0.00 2019-10-18 14:13:58 2019-10-18 14:14:38 t 1 1 125967 522 0.00 2019-10-18 14:14:33 2019-10-18 14:15:25 t 1 1 125968 562 0.00 2019-10-18 14:15:36 2019-10-18 14:15:49 t 1 1 125970 522 0.00 2019-10-18 14:16:21 2019-10-18 14:17:23 t 1 1 125973 562 0.00 2019-10-18 14:18:28 2019-10-18 14:19:11 t 1 1 125978 522 0.00 2019-10-18 14:17:49 2019-10-18 14:25:51 t 1 1 125979 451 0.00 2019-10-18 14:14:38 2019-10-18 14:26:42 t 1 1 125981 562 0.00 2019-10-18 14:25:31 2019-10-18 14:28:47 t 1 1 125982 522 0.00 2019-10-18 14:25:51 2019-10-18 14:32:15 t 1 1 125985 562 0.00 2019-10-18 14:38:19 2019-10-18 14:38:43 t 1 1 125986 522 0.00 2019-10-18 14:32:15 2019-10-18 14:39:36 t 1 1 125988 522 0.00 2019-10-18 14:39:36 2019-10-18 14:41:26 t 1 1 125990 522 0.00 2019-10-18 14:41:31 2019-10-18 14:41:49 t 1 1 125991 522 0.00 2019-10-18 14:41:54 2019-10-18 14:42:12 t 1 1 125994 570 0.00 2019-10-18 14:35:21 2019-10-18 14:43:56 t 1 1 125995 512 0.00 2019-10-18 14:34:57 2019-10-18 14:43:58 t 1 1 125999 522 0.00 2019-10-18 14:44:29 2019-10-18 14:44:46 t 1 1 126003 522 0.00 2019-10-18 14:45:33 2019-10-18 14:45:50 t 1 1 126007 522 0.00 2019-10-18 14:46:51 2019-10-18 14:46:52 t 1 1 126009 512 0.00 2019-10-18 14:43:58 2019-10-18 14:46:59 t 1 1 126015 522 0.00 2019-10-18 14:48:56 2019-10-18 14:50:15 t 1 1 126016 522 0.00 2019-10-18 14:50:22 2019-10-18 14:51:14 t 1 1 126017 311 0.00 2019-10-18 14:43:59 2019-10-18 14:52:22 t 1 2 126021 528 0.00 2019-10-18 14:37:27 2019-10-18 14:55:44 t 1 1 126024 522 0.00 2019-10-18 14:56:40 2019-10-18 14:57:42 t 1 1 126025 562 0.00 2019-10-18 14:57:20 2019-10-18 14:58:05 t 1 1 125897 562 0.00 2019-10-18 12:23:53 2019-10-18 12:25:02 t 1 1 125899 451 0.00 2019-10-18 12:05:11 2019-10-18 12:36:27 t 1 1 125904 451 0.00 2019-10-18 12:41:06 2019-10-18 12:46:27 t 1 1 125906 481 0.00 2019-10-18 12:44:59 2019-10-18 12:47:34 t 1 1 125909 430 0.00 2019-10-18 12:53:34 2019-10-18 12:55:08 t 1 1 125914 562 0.00 2019-10-18 13:00:34 2019-10-18 13:01:36 t 1 1 125916 528 0.00 2019-10-18 13:06:04 2019-10-18 13:07:45 t 1 1 125918 528 0.00 2019-10-18 13:08:13 2019-10-18 13:09:19 t 1 1 125919 306 0.00 2019-10-18 12:59:40 2019-10-18 13:10:10 t 1 1 125921 220 0.00 2019-10-18 12:51:23 2019-10-18 13:15:14 t 1 1 125924 528 0.00 2019-10-18 13:13:42 2019-10-18 13:17:32 t 1 1 125925 562 0.00 2019-10-18 13:17:39 2019-10-18 13:18:05 t 1 1 125927 451 0.00 2019-10-18 12:47:50 2019-10-18 13:20:55 t 1 1 125929 430 0.00 2019-10-18 13:22:01 2019-10-18 13:23:10 t 1 1 125931 544 0.00 2019-10-18 13:25:00 2019-10-18 13:25:21 t 1 2 125936 562 0.00 2019-10-18 13:28:02 2019-10-18 13:29:00 t 1 1 125937 220 0.00 2019-10-18 13:15:14 2019-10-18 13:34:36 t 1 1 125939 528 0.00 2019-10-18 13:23:42 2019-10-18 13:37:16 t 1 1 125943 412 0.00 2019-10-18 09:53:25 2019-10-18 13:39:45 t 1 1 125947 481 0.00 2019-10-18 13:28:23 2019-10-18 13:47:02 t 1 1 125955 306 0.00 2019-10-18 13:57:51 2019-10-18 14:00:55 t 1 1 125958 522 0.00 2019-10-18 13:59:45 2019-10-18 14:09:00 t 1 1 125972 570 0.00 2019-10-18 14:17:02 2019-10-18 14:18:50 t 1 1 125974 412 0.00 2019-10-18 14:13:28 2019-10-18 14:20:42 t 1 1 125980 570 0.00 2019-10-18 14:18:50 2019-10-18 14:28:19 t 1 1 125983 570 0.00 2019-10-18 14:28:19 2019-10-18 14:35:21 t 1 1 125993 522 0.00 2019-10-18 14:43:17 2019-10-18 14:43:40 t 1 1 125998 522 0.00 2019-10-18 14:44:10 2019-10-18 14:44:24 t 1 1 126002 522 0.00 2019-10-18 14:45:11 2019-10-18 14:45:28 t 1 1 126004 570 0.00 2019-10-18 14:43:56 2019-10-18 14:45:52 t 1 1 126005 306 0.00 2019-10-18 14:42:54 2019-10-18 14:46:02 t 1 1 126006 522 0.00 2019-10-18 14:46:07 2019-10-18 14:46:43 t 1 1 126008 562 0.00 2019-10-18 14:46:16 2019-10-18 14:46:54 t 1 1 126011 522 0.00 2019-10-18 14:47:29 2019-10-18 14:47:47 t 1 1 126014 522 0.00 2019-10-18 14:48:36 2019-10-18 14:48:49 t 1 1 126019 522 0.00 2019-10-18 14:53:14 2019-10-18 14:54:42 t 1 1 126022 522 0.00 2019-10-18 14:55:48 2019-10-18 14:56:11 t 1 1 126023 522 0.00 2019-10-18 14:56:22 2019-10-18 14:56:35 t 1 1 126026 522 0.00 2019-10-18 14:57:47 2019-10-18 14:58:12 t 1 1 126027 522 0.00 2019-10-18 14:58:17 2019-10-18 14:59:19 t 1 1 126028 522 0.00 2019-10-18 14:59:24 2019-10-18 14:59:39 t 1 1 126033 522 0.00 2019-10-18 15:01:56 2019-10-18 15:02:57 t 1 1 126048 522 0.00 2019-10-18 15:15:05 2019-10-18 15:16:14 t 1 1 126049 528 0.00 2019-10-18 15:08:43 2019-10-18 15:16:39 t 1 1 126051 562 0.00 2019-10-18 15:17:10 2019-10-18 15:17:42 t 1 1 126057 522 0.00 2019-10-18 15:19:33 2019-10-18 15:20:38 t 1 1 126060 451 0.00 2019-10-18 15:08:15 2019-10-18 15:21:41 t 1 1 126061 528 0.00 2019-10-18 15:16:39 2019-10-18 15:22:12 t 1 1 126064 522 0.00 2019-10-18 15:23:12 2019-10-18 15:23:35 t 1 1 126065 522 0.00 2019-10-18 15:23:47 2019-10-18 15:24:52 t 1 1 126067 516 0.00 2019-10-18 15:18:55 2019-10-18 15:25:41 t 1 1 126074 568 0.00 2019-10-18 15:14:40 2019-10-18 15:30:08 t 1 1 126076 456 0.00 2019-10-18 15:29:09 2019-10-18 15:31:03 t 1 1 126078 522 0.00 2019-10-18 15:31:20 2019-10-18 15:31:33 t 1 1 126079 522 0.00 2019-10-18 15:31:39 2019-10-18 15:32:00 t 1 1 126085 536 0.00 2019-10-18 15:12:08 2019-10-18 15:41:27 t 1 1 126088 536 0.00 2019-10-18 15:44:07 2019-10-18 15:44:15 t 1 1 126089 528 0.00 2019-10-18 15:38:39 2019-10-18 15:45:49 t 1 1 126090 536 0.00 2019-10-18 15:46:04 2019-10-18 15:46:11 t 1 1 126091 536 0.00 2019-10-18 15:46:53 2019-10-18 15:47:09 t 1 1 126094 536 0.00 2019-10-18 15:47:34 2019-10-18 15:47:51 t 1 1 126103 536 0.00 2019-10-18 15:57:14 2019-10-18 15:57:22 t 1 1 126104 562 0.00 2019-10-18 15:58:15 2019-10-18 15:58:44 t 1 1 126105 536 0.00 2019-10-18 15:59:23 2019-10-18 15:59:39 t 1 1 126107 536 0.00 2019-10-18 16:00:24 2019-10-18 16:00:32 t 1 1 126108 536 0.00 2019-10-18 16:01:04 2019-10-18 16:01:18 t 1 1 126110 536 0.00 2019-10-18 16:01:33 2019-10-18 16:01:45 t 1 1 126112 562 0.00 2019-10-18 16:07:38 2019-10-18 16:08:40 t 1 1 126114 516 0.00 2019-10-18 16:12:19 2019-10-18 16:15:57 t 1 1 126118 522 0.00 2019-10-18 16:10:02 2019-10-18 16:27:59 t 1 1 126119 522 0.00 2019-10-18 16:27:59 2019-10-18 16:41:39 t 1 1 126129 570 0.00 2019-10-18 17:15:48 2019-10-18 17:18:55 t 1 1 126135 522 0.00 2019-10-18 17:04:16 2019-10-18 17:24:13 t 1 1 126139 520 0.00 2019-10-18 17:23:28 2019-10-18 17:27:22 t 1 1 126150 522 0.00 2019-10-18 17:37:14 2019-10-18 17:49:42 t 1 1 126156 522 0.00 2019-10-18 17:53:08 2019-10-18 17:57:14 t 1 1 126159 412 0.00 2019-10-18 14:20:42 2019-10-18 18:01:56 t 1 1 126161 522 0.00 2019-10-18 18:01:20 2019-10-18 18:06:49 t 1 1 126162 306 0.00 2019-10-18 18:18:14 2019-10-18 18:19:44 t 1 1 126165 520 0.00 2019-10-18 18:20:52 2019-10-18 18:21:52 t 1 1 126167 514 0.00 2019-10-18 18:16:57 2019-10-18 18:22:45 t 1 1 126172 445 0.00 2019-10-18 18:24:03 2019-10-18 18:35:13 t 1 1 126176 220 0.00 2019-10-18 18:38:15 2019-10-18 18:41:37 t 1 2 126181 445 0.00 2019-10-18 18:35:14 2019-10-18 18:46:52 t 1 1 126183 562 0.00 2019-10-18 18:53:04 2019-10-18 18:53:38 t 1 1 126184 516 0.00 2019-10-18 18:56:35 2019-10-18 19:00:51 t 1 1 126185 445 0.00 2019-10-18 18:46:52 2019-10-18 19:07:34 t 1 1 126187 325 0.00 2019-10-18 17:28:37 2019-10-18 19:13:42 t 1 2 126188 474 0.00 2019-10-18 19:13:54 2019-10-18 19:14:42 t 1 1 126192 485 0.00 2019-10-18 19:18:21 2019-10-18 19:30:51 t 1 1 126193 451 0.00 2019-10-18 19:09:41 2019-10-18 19:32:13 t 1 1 126195 570 0.00 2019-10-18 19:20:33 2019-10-18 19:39:55 t 1 1 126199 570 0.00 2019-10-18 19:39:55 2019-10-18 19:44:39 t 1 1 126200 456 0.00 2019-10-18 19:43:29 2019-10-18 19:47:09 t 1 1 126203 522 0.00 2019-10-18 19:19:56 2019-10-18 20:12:05 t 1 1 126207 412 0.00 2019-10-18 18:01:56 2019-10-18 20:16:12 t 1 1 126208 566 0.00 2019-10-18 20:01:16 2019-10-18 20:17:48 t 1 1 126213 532 0.00 2019-10-18 20:26:20 2019-10-18 20:27:39 t 1 1 126216 445 0.00 2019-10-18 20:30:14 2019-10-18 20:31:13 t 1 1 126219 532 0.00 2019-10-18 20:33:00 2019-10-18 20:34:39 t 1 1 126220 516 0.00 2019-10-18 20:32:40 2019-10-18 20:35:20 t 1 1 126231 526 0.00 2019-10-18 20:33:10 2019-10-18 20:50:37 t 1 1 126233 514 0.00 2019-10-18 20:36:22 2019-10-18 20:51:47 t 1 1 126245 514 0.00 2019-10-18 21:03:12 2019-10-18 21:03:46 t 1 1 126246 306 0.00 2019-10-18 20:59:26 2019-10-18 21:04:20 t 1 1 126248 514 0.00 2019-10-18 21:03:45 2019-10-18 21:04:52 t 1 1 126249 520 0.00 2019-10-18 21:02:57 2019-10-18 21:08:05 t 1 1 125971 522 0.00 2019-10-18 14:17:28 2019-10-18 14:17:43 t 1 1 125975 562 0.00 2019-10-18 14:19:26 2019-10-18 14:22:52 t 1 1 125976 481 0.00 2019-10-18 13:59:24 2019-10-18 14:22:58 t 1 1 125977 562 0.00 2019-10-18 14:23:16 2019-10-18 14:24:33 t 1 1 125984 481 0.00 2019-10-18 14:22:58 2019-10-18 14:38:28 t 1 1 125987 556 0.00 2019-10-18 12:04:18 2019-10-18 14:40:57 t 1 1 125989 481 0.00 2019-10-18 14:38:55 2019-10-18 14:41:46 t 1 1 125992 522 0.00 2019-10-18 14:42:29 2019-10-18 14:43:10 t 1 1 125996 522 0.00 2019-10-18 14:43:47 2019-10-18 14:43:58 t 1 1 125997 451 0.00 2019-10-18 14:26:42 2019-10-18 14:44:18 t 1 1 126000 311 0.00 2019-10-18 14:13:28 2019-10-18 14:44:57 t 1 2 126001 522 0.00 2019-10-18 14:44:51 2019-10-18 14:45:06 t 1 1 126010 522 0.00 2019-10-18 14:47:00 2019-10-18 14:47:18 t 1 1 126012 570 0.00 2019-10-18 14:45:59 2019-10-18 14:47:49 t 1 1 126013 522 0.00 2019-10-18 14:48:13 2019-10-18 14:48:29 t 1 1 126018 522 0.00 2019-10-18 14:51:21 2019-10-18 14:53:07 t 1 1 126020 522 0.00 2019-10-18 14:54:49 2019-10-18 14:55:41 t 1 1 126029 522 0.00 2019-10-18 14:59:44 2019-10-18 15:00:31 t 1 1 126030 522 0.00 2019-10-18 15:00:36 2019-10-18 15:01:39 t 1 1 126031 456 0.00 2019-10-18 14:56:20 2019-10-18 15:02:10 t 1 1 126034 522 0.00 2019-10-18 15:03:08 2019-10-18 15:04:14 t 1 1 126037 522 0.00 2019-10-18 15:05:09 2019-10-18 15:06:13 t 1 1 126038 522 0.00 2019-10-18 15:06:19 2019-10-18 15:07:11 t 1 1 126040 522 0.00 2019-10-18 15:07:28 2019-10-18 15:08:25 t 1 1 126042 528 0.00 2019-10-18 14:55:44 2019-10-18 15:08:43 t 1 1 126044 522 0.00 2019-10-18 15:08:32 2019-10-18 15:12:10 t 1 1 126045 522 0.00 2019-10-18 15:12:18 2019-10-18 15:13:03 t 1 1 126046 522 0.00 2019-10-18 15:13:10 2019-10-18 15:14:28 t 1 1 126047 522 0.00 2019-10-18 15:14:35 2019-10-18 15:14:57 t 1 1 126052 522 0.00 2019-10-18 15:16:50 2019-10-18 15:17:47 t 1 1 126053 306 0.00 2019-10-18 15:05:34 2019-10-18 15:18:13 t 1 1 126055 522 0.00 2019-10-18 15:18:52 2019-10-18 15:19:28 t 1 1 126058 474 0.00 2019-10-18 15:16:25 2019-10-18 15:20:43 t 1 1 126059 522 0.00 2019-10-18 15:20:43 2019-10-18 15:21:24 t 1 1 126062 522 0.00 2019-10-18 15:21:30 2019-10-18 15:22:32 t 1 1 126063 522 0.00 2019-10-18 15:22:49 2019-10-18 15:23:04 t 1 1 126068 522 0.00 2019-10-18 15:24:57 2019-10-18 15:25:52 t 1 1 126069 522 0.00 2019-10-18 15:25:57 2019-10-18 15:26:34 t 1 1 126070 522 0.00 2019-10-18 15:26:40 2019-10-18 15:27:15 t 1 1 126072 562 0.00 2019-10-18 15:27:53 2019-10-18 15:28:20 t 1 1 126073 522 0.00 2019-10-18 15:28:05 2019-10-18 15:29:07 t 1 1 126075 451 0.00 2019-10-18 15:25:14 2019-10-18 15:30:15 t 1 1 126077 522 0.00 2019-10-18 15:29:14 2019-10-18 15:31:09 t 1 1 126081 522 0.00 2019-10-18 15:32:17 2019-10-18 15:32:40 t 1 1 126082 522 0.00 2019-10-18 15:32:45 2019-10-18 15:33:03 t 1 1 126086 536 0.00 2019-10-18 15:42:55 2019-10-18 15:42:58 t 1 1 126095 542 0.00 2019-10-18 15:44:09 2019-10-18 15:49:17 t 1 1 126096 536 0.00 2019-10-18 15:48:09 2019-10-18 15:52:10 t 1 1 126099 536 0.00 2019-10-18 15:52:44 2019-10-18 15:52:52 t 1 1 126101 536 0.00 2019-10-18 15:54:41 2019-10-18 15:54:53 t 1 1 126106 536 0.00 2019-10-18 15:59:50 2019-10-18 16:00:03 t 1 1 126109 306 0.00 2019-10-18 15:56:41 2019-10-18 16:01:20 t 1 1 126111 536 0.00 2019-10-18 16:03:03 2019-10-18 16:03:42 t 1 1 126113 522 0.00 2019-10-18 15:52:16 2019-10-18 16:10:02 t 1 1 126116 516 0.00 2019-10-18 16:15:57 2019-10-18 16:21:41 t 1 1 126123 516 0.00 2019-10-18 16:53:28 2019-10-18 16:59:32 t 1 1 126125 522 0.00 2019-10-18 16:41:39 2019-10-18 17:04:16 t 1 1 126126 562 0.00 2019-10-18 17:04:29 2019-10-18 17:04:49 t 1 1 126131 220 0.00 2019-10-18 13:34:45 2019-10-18 17:22:16 t 1 1 126133 288 0.00 2019-10-18 17:23:14 2019-10-18 17:23:14 f 1 1 126137 522 0.00 2019-10-18 17:24:51 2019-10-18 17:24:55 t 1 1 126140 481 0.00 2019-10-18 17:23:45 2019-10-18 17:27:33 t 1 1 126141 520 0.00 2019-10-18 17:27:22 2019-10-18 17:29:39 t 1 1 126142 520 0.00 2019-10-18 17:29:31 2019-10-18 17:30:39 t 1 1 126143 522 0.00 2019-10-18 17:31:15 2019-10-18 17:31:25 t 1 1 126144 522 0.00 2019-10-18 17:31:41 2019-10-18 17:32:06 t 1 1 126145 538 0.00 2019-10-18 12:32:01 2019-10-18 17:33:08 t 1 1 126148 292 0.00 2019-10-18 17:42:28 2019-10-18 17:42:34 t 1 2 126149 570 0.00 2019-10-18 17:18:54 2019-10-18 17:48:42 t 1 1 126151 570 0.00 2019-10-18 17:48:42 2019-10-18 17:50:22 t 1 1 126153 528 0.00 2019-10-18 17:42:03 2019-10-18 17:50:37 t 1 1 126155 522 0.00 2019-10-18 17:52:16 2019-10-18 17:52:41 t 1 1 126158 522 0.00 2019-10-18 17:58:19 2019-10-18 17:58:26 t 1 1 126163 520 0.00 2019-10-18 18:09:42 2019-10-18 18:20:52 t 1 1 126164 522 0.00 2019-10-18 18:07:17 2019-10-18 18:21:23 t 1 1 126169 220 0.00 2019-10-18 17:22:44 2019-10-18 18:29:35 t 1 1 126170 522 0.00 2019-10-18 18:21:23 2019-10-18 18:31:54 t 1 1 126171 562 0.00 2019-10-18 18:31:21 2019-10-18 18:32:39 t 1 1 126175 570 0.00 2019-10-18 18:21:05 2019-10-18 18:38:45 t 1 1 126177 296 0.00 2019-10-18 18:36:11 2019-10-18 18:42:35 t 1 2 126186 562 0.00 2019-10-18 19:11:34 2019-10-18 19:12:00 t 1 1 126194 445 0.00 2019-10-18 19:07:34 2019-10-18 19:36:25 t 1 1 126197 528 0.00 2019-10-18 18:59:04 2019-10-18 19:42:26 t 1 1 126206 520 0.00 2019-10-18 20:09:05 2019-10-18 20:14:57 t 1 1 126209 306 0.00 2019-10-18 20:07:07 2019-10-18 20:19:12 t 1 1 126212 520 0.00 2019-10-18 20:14:57 2019-10-18 20:26:54 t 1 1 126214 445 0.00 2019-10-18 20:25:33 2019-10-18 20:30:14 t 1 1 126218 514 0.00 2019-10-18 20:13:00 2019-10-18 20:33:28 t 1 1 126223 566 0.00 2019-10-18 20:30:33 2019-10-18 20:39:56 t 1 1 126224 456 0.00 2019-10-18 20:39:53 2019-10-18 20:41:15 t 1 1 126225 538 0.00 2019-10-18 19:45:28 2019-10-18 20:42:56 t 1 1 126226 528 0.00 2019-10-18 20:29:24 2019-10-18 20:45:08 t 1 1 126230 532 0.00 2019-10-18 20:40:17 2019-10-18 20:48:35 t 1 1 126238 514 0.00 2019-10-18 20:51:46 2019-10-18 21:00:30 t 1 1 126239 566 0.00 2019-10-18 20:50:52 2019-10-18 21:01:30 t 1 1 126240 514 0.00 2019-10-18 21:00:44 2019-10-18 21:02:11 t 1 1 126242 514 0.00 2019-10-18 21:02:11 2019-10-18 21:03:13 t 1 1 126247 512 0.00 2019-10-18 20:57:32 2019-10-18 21:04:34 t 1 1 126252 526 0.00 2019-10-18 20:52:30 2019-10-18 21:12:06 t 1 1 126257 526 0.00 2019-10-18 21:24:27 2019-10-18 21:24:37 t 1 1 126269 514 0.00 2019-10-18 21:40:57 2019-10-18 21:42:25 t 1 1 126270 514 0.00 2019-10-18 21:42:30 2019-10-18 21:43:36 t 1 1 126279 516 0.00 2019-10-18 20:59:37 2019-10-18 21:53:31 t 1 1 126280 522 0.00 2019-10-18 21:53:41 2019-10-18 21:55:37 t 1 1 126281 522 0.00 2019-10-18 21:55:52 2019-10-18 21:56:09 t 1 1 126284 556 0.00 2019-10-18 14:53:08 2019-10-18 21:58:23 t 1 1 126286 485 0.00 2019-10-18 21:54:39 2019-10-18 21:59:11 t 1 1 126032 311 0.00 2019-10-18 14:53:24 2019-10-18 15:02:46 t 1 2 126035 522 0.00 2019-10-18 15:04:32 2019-10-18 15:04:58 t 1 1 126036 306 0.00 2019-10-18 14:59:30 2019-10-18 15:05:35 t 1 1 126039 451 0.00 2019-10-18 14:44:18 2019-10-18 15:08:15 t 1 1 126041 562 0.00 2019-10-18 15:07:59 2019-10-18 15:08:26 t 1 1 126043 536 0.00 2019-10-18 14:56:49 2019-10-18 15:12:08 t 1 1 126050 522 0.00 2019-10-18 15:16:21 2019-10-18 15:16:42 t 1 1 126054 522 0.00 2019-10-18 15:17:54 2019-10-18 15:18:40 t 1 1 126056 562 0.00 2019-10-18 15:18:57 2019-10-18 15:20:11 t 1 1 126066 451 0.00 2019-10-18 15:21:41 2019-10-18 15:25:15 t 1 1 126071 522 0.00 2019-10-18 15:27:32 2019-10-18 15:27:57 t 1 1 126080 522 0.00 2019-10-18 15:32:05 2019-10-18 15:32:12 t 1 1 126083 542 0.00 2019-10-18 15:33:07 2019-10-18 15:35:37 t 1 1 126084 306 0.00 2019-10-18 15:29:05 2019-10-18 15:37:00 t 1 1 126087 516 0.00 2019-10-18 15:33:52 2019-10-18 15:43:18 t 1 1 126092 536 0.00 2019-10-18 15:47:15 2019-10-18 15:47:21 t 1 1 126093 562 0.00 2019-10-18 15:47:45 2019-10-18 15:47:51 t 1 1 126097 522 0.00 2019-10-18 15:33:08 2019-10-18 15:52:16 t 1 1 126098 536 0.00 2019-10-18 15:52:18 2019-10-18 15:52:31 t 1 1 126100 536 0.00 2019-10-18 15:53:54 2019-10-18 15:54:01 t 1 1 126102 306 0.00 2019-10-18 15:50:15 2019-10-18 15:56:41 t 1 1 126115 306 0.00 2019-10-18 16:13:10 2019-10-18 16:20:54 t 1 1 126117 570 0.00 2019-10-18 16:16:14 2019-10-18 16:26:32 t 1 1 126120 562 0.00 2019-10-18 16:48:35 2019-10-18 16:48:49 t 1 1 126121 306 0.00 2019-10-18 16:49:30 2019-10-18 16:51:12 t 1 1 126122 562 0.00 2019-10-18 16:58:06 2019-10-18 16:58:28 t 1 1 126124 520 0.00 2019-10-18 16:52:30 2019-10-18 17:00:21 t 1 1 126127 570 0.00 2019-10-18 16:26:32 2019-10-18 17:15:48 t 1 1 126128 520 0.00 2019-10-18 17:00:21 2019-10-18 17:16:46 t 1 1 126130 520 0.00 2019-10-18 17:16:46 2019-10-18 17:21:48 t 1 1 126132 288 0.00 2019-10-18 17:22:59 2019-10-18 17:22:59 f 1 1 126134 481 0.00 2019-10-18 14:42:25 2019-10-18 17:23:19 t 1 1 126136 522 0.00 2019-10-18 17:24:36 2019-10-18 17:24:47 t 1 1 126138 522 0.00 2019-10-18 17:25:06 2019-10-18 17:25:10 t 1 1 126146 522 0.00 2019-10-18 17:32:58 2019-10-18 17:33:22 t 1 1 126147 306 0.00 2019-10-18 17:34:33 2019-10-18 17:35:57 t 1 1 126152 522 0.00 2019-10-18 17:49:49 2019-10-18 17:50:22 t 1 1 126154 522 0.00 2019-10-18 17:50:30 2019-10-18 17:52:09 t 1 1 126157 520 0.00 2019-10-18 17:50:39 2019-10-18 17:57:59 t 1 1 126160 520 0.00 2019-10-18 18:00:30 2019-10-18 18:06:41 t 1 1 126166 220 0.00 2019-10-18 18:14:43 2019-10-18 18:22:02 t 1 2 126168 562 0.00 2019-10-18 18:23:05 2019-10-18 18:24:39 t 1 1 126173 451 0.00 2019-10-18 18:01:07 2019-10-18 18:36:35 t 1 1 126174 306 0.00 2019-10-18 18:35:44 2019-10-18 18:37:58 t 1 1 126178 562 0.00 2019-10-18 18:42:04 2019-10-18 18:42:39 t 1 1 126179 520 0.00 2019-10-18 18:43:26 2019-10-18 18:43:33 t 1 1 126180 220 0.00 2019-10-18 18:41:41 2019-10-18 18:44:04 t 1 2 126182 520 0.00 2019-10-18 18:43:36 2019-10-18 18:51:40 t 1 1 126189 522 0.00 2019-10-18 18:31:54 2019-10-18 19:17:15 t 1 1 126190 522 0.00 2019-10-18 19:17:15 2019-10-18 19:20:30 t 1 1 126191 544 0.00 2019-10-18 19:18:02 2019-10-18 19:21:55 t 1 2 126196 311 0.00 2019-10-18 19:23:33 2019-10-18 19:39:56 t 1 2 126198 451 0.00 2019-10-18 19:32:13 2019-10-18 19:44:20 t 1 1 126201 220 0.00 2019-10-18 20:01:56 2019-10-18 20:04:07 t 1 2 126202 481 0.00 2019-10-18 17:27:46 2019-10-18 20:07:25 t 1 1 126204 544 0.00 2019-10-18 20:08:53 2019-10-18 20:12:24 t 1 2 126205 514 0.00 2019-10-18 18:25:30 2019-10-18 20:13:00 t 1 1 126210 445 0.00 2019-10-18 19:37:22 2019-10-18 20:22:47 t 1 1 126211 532 0.00 2019-10-18 20:19:36 2019-10-18 20:24:03 t 1 1 126215 566 0.00 2019-10-18 20:17:48 2019-10-18 20:30:33 t 1 1 126217 516 0.00 2019-10-18 20:26:23 2019-10-18 20:32:40 t 1 1 126221 520 0.00 2019-10-18 20:26:54 2019-10-18 20:38:21 t 1 1 126222 532 0.00 2019-10-18 20:39:33 2019-10-18 20:39:35 t 1 1 126227 445 0.00 2019-10-18 20:31:12 2019-10-18 20:45:08 t 1 1 126228 306 0.00 2019-10-18 20:20:45 2019-10-18 20:46:48 t 1 1 126229 445 0.00 2019-10-18 20:45:07 2019-10-18 20:47:33 t 1 1 126232 566 0.00 2019-10-18 20:39:56 2019-10-18 20:50:52 t 1 1 126234 306 0.00 2019-10-18 20:50:20 2019-10-18 20:52:31 t 1 1 126235 570 0.00 2019-10-18 20:46:19 2019-10-18 20:54:04 t 1 1 126236 306 0.00 2019-10-18 20:52:31 2019-10-18 20:55:42 t 1 1 126237 512 0.00 2019-10-18 20:50:49 2019-10-18 20:57:32 t 1 1 126241 445 0.00 2019-10-18 20:47:32 2019-10-18 21:02:31 t 1 1 126243 532 0.00 2019-10-18 20:51:47 2019-10-18 21:03:25 t 1 1 126244 220 0.00 2019-10-18 18:29:58 2019-10-18 21:03:45 t 1 1 126250 306 0.00 2019-10-18 21:04:20 2019-10-18 21:09:36 t 1 1 126253 514 0.00 2019-10-18 21:11:58 2019-10-18 21:14:22 t 1 1 126255 544 0.00 2019-10-18 21:20:26 2019-10-18 21:23:46 t 1 2 126256 526 0.00 2019-10-18 21:12:05 2019-10-18 21:24:10 t 1 1 126259 526 0.00 2019-10-18 21:26:09 2019-10-18 21:29:29 t 1 1 126261 514 0.00 2019-10-18 21:14:21 2019-10-18 21:31:29 t 1 1 126263 514 0.00 2019-10-18 21:33:08 2019-10-18 21:35:02 t 1 1 126266 522 0.00 2019-10-18 20:12:05 2019-10-18 21:39:22 t 1 1 126271 514 0.00 2019-10-18 21:44:15 2019-10-18 21:46:46 t 1 1 126274 472 0.00 2019-10-18 21:49:50 2019-10-18 21:49:50 f 1 1 126277 514 0.00 2019-10-18 21:49:52 2019-10-18 21:51:23 t 1 1 126283 522 0.00 2019-10-18 21:57:30 2019-10-18 21:57:38 t 1 1 126285 522 0.00 2019-10-18 21:57:13 2019-10-18 21:58:40 t 1 1 126287 522 0.00 2019-10-18 21:59:04 2019-10-18 21:59:17 t 1 1 126289 296 0.00 2019-10-18 21:59:05 2019-10-18 22:01:29 t 1 2 126290 451 0.00 2019-10-18 21:57:30 2019-10-18 22:05:47 t 1 1 126294 220 0.00 2019-10-18 21:03:45 2019-10-18 22:15:47 t 1 1 126299 514 0.00 2019-10-18 21:53:13 2019-10-18 22:22:34 t 1 1 126301 522 0.00 2019-10-18 22:20:25 2019-10-18 22:24:31 t 1 1 126306 536 0.00 2019-10-18 22:23:19 2019-10-18 22:26:48 t 1 1 126307 536 0.00 2019-10-18 22:29:00 2019-10-18 22:30:59 t 1 1 126310 522 0.00 2019-10-18 22:31:10 2019-10-18 22:33:40 t 1 1 126311 536 0.00 2019-10-18 22:30:59 2019-10-18 22:34:56 t 1 1 126312 522 0.00 2019-10-18 22:34:55 2019-10-18 22:43:53 t 1 1 126313 422 0.00 2019-10-18 22:41:17 2019-10-18 22:44:00 t 1 1 126315 422 0.00 2019-10-18 22:43:59 2019-10-18 22:44:40 t 1 1 126318 522 0.00 2019-10-18 22:45:46 2019-10-18 22:46:12 t 1 1 126320 514 0.00 2019-10-18 22:45:41 2019-10-18 22:48:36 t 1 1 126322 522 0.00 2019-10-18 22:49:53 2019-10-18 22:50:06 t 1 1 126326 522 0.00 2019-10-18 22:51:32 2019-10-18 22:52:37 t 1 1 126329 522 0.00 2019-10-18 22:53:25 2019-10-18 22:54:38 t 1 1 126332 570 0.00 2019-10-18 22:27:07 2019-10-18 22:56:42 t 1 1 126333 522 0.00 2019-10-18 22:56:57 2019-10-18 22:57:22 t 1 1 126251 514 0.00 2019-10-18 21:04:35 2019-10-18 21:11:50 t 1 1 126254 325 0.00 2019-10-18 21:16:43 2019-10-18 21:22:25 t 1 2 126258 526 0.00 2019-10-18 21:24:53 2019-10-18 21:24:54 t 1 1 126260 220 0.00 2019-10-18 21:26:35 2019-10-18 21:30:58 t 1 2 126262 514 0.00 2019-10-18 21:31:37 2019-10-18 21:33:01 t 1 1 126264 514 0.00 2019-10-18 21:35:07 2019-10-18 21:37:44 t 1 1 126265 220 0.00 2019-10-18 21:31:20 2019-10-18 21:38:40 t 1 2 126267 306 0.00 2019-10-18 21:26:45 2019-10-18 21:39:48 t 1 1 126268 514 0.00 2019-10-18 21:37:48 2019-10-18 21:40:53 t 1 1 126272 514 0.00 2019-10-18 21:47:01 2019-10-18 21:48:30 t 1 1 126273 456 0.00 2019-10-18 21:46:08 2019-10-18 21:49:23 t 1 1 126275 514 0.00 2019-10-18 21:48:57 2019-10-18 21:50:40 t 1 1 126276 472 0.00 2019-10-18 21:51:08 2019-10-18 21:51:08 f 1 1 126278 514 0.00 2019-10-18 21:51:23 2019-10-18 21:53:13 t 1 1 126282 522 0.00 2019-10-18 21:56:20 2019-10-18 21:56:47 t 1 1 126291 522 0.00 2019-10-18 22:06:04 2019-10-18 22:07:05 t 1 1 126296 536 0.00 2019-10-18 22:20:34 2019-10-18 22:21:04 t 1 1 126300 451 0.00 2019-10-18 22:16:32 2019-10-18 22:23:49 t 1 1 126302 451 0.00 2019-10-18 22:23:20 2019-10-18 22:24:40 t 1 1 126304 522 0.00 2019-10-18 22:25:51 2019-10-18 22:25:56 t 1 1 126308 522 0.00 2019-10-18 22:30:57 2019-10-18 22:31:01 t 1 1 126316 522 0.00 2019-10-18 22:44:49 2019-10-18 22:45:04 t 1 1 126323 564 0.00 2019-10-18 21:23:50 2019-10-18 22:50:21 t 1 1 126324 522 0.00 2019-10-18 22:50:47 2019-10-18 22:51:00 t 1 1 126330 522 0.00 2019-10-18 22:55:15 2019-10-18 22:55:28 t 1 1 126331 522 0.00 2019-10-18 22:56:07 2019-10-18 22:56:20 t 1 1 126336 522 0.00 2019-10-18 23:02:22 2019-10-18 23:02:29 t 1 1 126342 514 0.00 2019-10-18 23:03:45 2019-10-18 23:05:16 t 1 1 126345 339 0.00 2019-10-18 22:14:39 2019-10-18 23:07:40 t 1 2 126346 522 0.00 2019-10-18 23:07:45 2019-10-18 23:07:58 t 1 1 126349 522 0.00 2019-10-18 23:09:51 2019-10-18 23:10:03 t 1 1 126352 522 0.00 2019-10-18 23:12:45 2019-10-18 23:12:58 t 1 1 126354 522 0.00 2019-10-18 23:13:17 2019-10-18 23:13:25 t 1 1 126359 522 0.00 2019-10-18 23:14:54 2019-10-18 23:15:11 t 1 1 126362 220 0.00 2019-10-18 23:16:46 2019-10-18 23:21:43 t 1 1 126368 528 0.00 2019-10-18 23:25:44 2019-10-18 23:27:17 t 1 1 126371 514 0.00 2019-10-18 23:29:49 2019-10-18 23:31:40 t 1 1 126372 522 0.00 2019-10-18 23:32:30 2019-10-18 23:32:32 t 1 1 126375 522 0.00 2019-10-18 23:33:11 2019-10-18 23:36:21 t 1 1 126376 445 0.00 2019-10-18 22:16:42 2019-10-18 23:37:56 t 1 1 126382 514 0.00 2019-10-18 23:44:57 2019-10-18 23:47:12 t 1 1 126384 522 0.00 2019-10-18 23:52:36 2019-10-18 23:52:39 t 1 1 126394 514 0.00 2019-10-18 23:51:41 2019-10-19 00:10:12 t 1 1 126403 512 0.00 2019-10-19 00:56:40 2019-10-19 00:58:57 t 1 1 126404 522 0.00 2019-10-19 00:59:52 2019-10-19 00:59:53 t 1 1 126407 556 0.00 2019-10-19 00:42:35 2019-10-19 01:06:17 t 1 1 126411 551 0.00 2019-10-18 22:26:22 2019-10-19 01:35:23 t 1 1 126412 485 0.00 2019-10-19 01:38:45 2019-10-19 01:39:46 t 1 1 126414 485 0.00 2019-10-19 01:40:09 2019-10-19 01:45:07 t 1 1 126417 551 0.00 2019-10-19 01:35:22 2019-10-19 02:04:06 t 1 1 126426 522 0.00 2019-10-19 02:42:46 2019-10-19 02:44:40 t 1 1 126430 522 0.00 2019-10-19 02:58:53 2019-10-19 02:58:58 t 1 1 126432 514 0.00 2019-10-19 00:10:07 2019-10-19 03:05:35 t 1 1 126434 522 0.00 2019-10-19 03:09:10 2019-10-19 03:09:17 t 1 1 126435 514 0.00 2019-10-19 03:09:11 2019-10-19 03:10:29 t 1 1 126440 522 0.00 2019-10-19 04:04:28 2019-10-19 04:04:45 t 1 1 126447 522 0.00 2019-10-19 04:35:22 2019-10-19 04:35:24 t 1 1 126450 522 0.00 2019-10-19 04:45:43 2019-10-19 04:50:09 t 1 1 126454 522 0.00 2019-10-19 04:56:20 2019-10-19 04:56:39 t 1 1 126455 522 0.00 2019-10-19 04:57:20 2019-10-19 04:57:56 t 1 1 126465 522 0.00 2019-10-19 05:09:13 2019-10-19 05:10:40 t 1 1 126466 522 0.00 2019-10-19 05:10:52 2019-10-19 05:11:23 t 1 1 126469 522 0.00 2019-10-19 05:18:36 2019-10-19 05:19:41 t 1 1 126471 522 0.00 2019-10-19 05:22:53 2019-10-19 05:23:20 t 1 1 126474 522 0.00 2019-10-19 05:26:47 2019-10-19 05:27:14 t 1 1 126475 522 0.00 2019-10-19 05:27:58 2019-10-19 05:28:14 t 1 1 126476 520 0.00 2019-10-19 05:25:38 2019-10-19 05:30:14 t 1 1 126479 522 0.00 2019-10-19 05:31:28 2019-10-19 05:31:56 t 1 1 126480 522 0.00 2019-10-19 05:32:06 2019-10-19 05:32:07 t 1 1 126481 522 0.00 2019-10-19 05:32:36 2019-10-19 05:33:06 t 1 1 126482 522 0.00 2019-10-19 05:33:44 2019-10-19 05:34:12 t 1 1 126483 520 0.00 2019-10-19 05:30:13 2019-10-19 05:35:55 t 1 1 126485 522 0.00 2019-10-19 05:38:32 2019-10-19 05:39:03 t 1 1 126487 522 0.00 2019-10-19 05:41:39 2019-10-19 05:42:08 t 1 1 126492 522 0.00 2019-10-19 05:49:25 2019-10-19 05:49:49 t 1 1 126496 522 0.00 2019-10-19 05:52:19 2019-10-19 05:53:40 t 1 1 126497 522 0.00 2019-10-19 05:57:15 2019-10-19 05:57:15 f 1 1 126499 522 0.00 2019-10-19 05:56:50 2019-10-19 05:57:52 t 1 1 126503 520 0.00 2019-10-19 07:18:25 2019-10-19 07:22:47 t 1 1 126505 306 0.00 2019-10-19 07:35:52 2019-10-19 07:38:28 t 1 1 126507 485 0.00 2019-10-19 07:32:48 2019-10-19 07:41:55 t 1 1 126508 508 0.00 2019-10-19 07:46:08 2019-10-19 07:47:16 t 1 2 126513 430 0.00 2019-10-19 07:47:44 2019-10-19 07:58:38 t 1 1 126515 522 0.00 2019-10-19 08:03:18 2019-10-19 08:04:08 t 1 1 126517 522 0.00 2019-10-19 08:04:43 2019-10-19 08:05:27 t 1 1 126518 522 0.00 2019-10-19 08:06:51 2019-10-19 08:06:55 t 1 1 126521 430 0.00 2019-10-19 07:58:38 2019-10-19 08:09:43 t 1 1 126525 296 0.00 2019-10-19 08:13:04 2019-10-19 08:18:28 t 1 2 126535 430 0.00 2019-10-19 08:35:49 2019-10-19 08:36:48 t 1 1 126541 522 0.00 2019-10-19 08:41:49 2019-10-19 08:41:52 t 1 1 126545 522 0.00 2019-10-19 08:49:22 2019-10-19 08:49:23 t 1 1 126547 430 0.00 2019-10-19 08:36:55 2019-10-19 08:51:26 t 1 1 126553 508 0.00 2019-10-19 08:22:39 2019-10-19 08:56:39 t 1 2 126555 522 0.00 2019-10-19 08:57:36 2019-10-19 08:58:14 t 1 1 126560 522 0.00 2019-10-19 09:04:25 2019-10-19 09:04:34 t 1 1 126569 522 0.00 2019-10-19 09:19:43 2019-10-19 09:19:45 t 1 1 126570 522 0.00 2019-10-19 09:24:46 2019-10-19 09:24:55 t 1 1 126571 516 0.00 2019-10-19 09:14:18 2019-10-19 09:25:51 t 1 1 126572 522 0.00 2019-10-19 09:26:03 2019-10-19 09:26:07 t 1 1 126575 522 0.00 2019-10-19 09:29:53 2019-10-19 09:30:02 t 1 1 126579 522 0.00 2019-10-19 09:31:40 2019-10-19 09:31:52 t 1 1 126584 528 0.00 2019-10-19 09:38:07 2019-10-19 09:38:21 t 1 1 126586 430 0.00 2019-10-19 09:38:29 2019-10-19 09:38:35 t 1 1 126588 514 0.00 2019-10-19 09:06:43 2019-10-19 09:40:27 t 1 1 126589 430 0.00 2019-10-19 09:40:09 2019-10-19 09:40:54 t 1 1 126593 331 0.00 2019-10-19 09:30:08 2019-10-19 09:42:50 t 1 1 126596 430 0.00 2019-10-19 09:42:03 2019-10-19 09:43:40 t 1 1 126288 522 0.00 2019-10-18 21:59:48 2019-10-18 21:59:55 t 1 1 126292 522 0.00 2019-10-18 22:09:27 2019-10-18 22:09:28 t 1 1 126293 522 0.00 2019-10-18 22:14:36 2019-10-18 22:15:40 t 1 1 126295 445 0.00 2019-10-18 21:02:44 2019-10-18 22:16:06 t 1 1 126297 361 0.00 2019-10-18 21:26:01 2019-10-18 22:21:24 t 1 2 126298 536 0.00 2019-10-18 22:22:18 2019-10-18 22:22:28 t 1 1 126303 522 0.00 2019-10-18 22:25:18 2019-10-18 22:25:30 t 1 1 126305 570 0.00 2019-10-18 22:26:00 2019-10-18 22:26:41 t 1 1 126309 451 0.00 2019-10-18 22:28:42 2019-10-18 22:33:16 t 1 1 126314 522 0.00 2019-10-18 22:44:20 2019-10-18 22:44:22 t 1 1 126317 456 0.00 2019-10-18 22:43:02 2019-10-18 22:45:26 t 1 1 126319 522 0.00 2019-10-18 22:46:28 2019-10-18 22:46:57 t 1 1 126321 522 0.00 2019-10-18 22:48:34 2019-10-18 22:49:06 t 1 1 126325 522 0.00 2019-10-18 22:52:19 2019-10-18 22:52:32 t 1 1 126327 522 0.00 2019-10-18 22:52:40 2019-10-18 22:52:54 t 1 1 126328 522 0.00 2019-10-18 22:53:08 2019-10-18 22:53:16 t 1 1 126334 472 0.00 2019-10-18 22:59:26 2019-10-18 22:59:26 f 1 1 126335 522 0.00 2019-10-18 23:01:55 2019-10-18 23:02:09 t 1 1 126340 522 0.00 2019-10-18 23:04:39 2019-10-18 23:04:52 t 1 1 126350 412 0.00 2019-10-18 20:16:12 2019-10-18 23:10:11 t 1 1 126351 522 0.00 2019-10-18 23:10:15 2019-10-18 23:10:23 t 1 1 126353 544 0.00 2019-10-18 22:58:09 2019-10-18 23:13:14 t 1 2 126357 522 0.00 2019-10-18 23:14:17 2019-10-18 23:14:31 t 1 1 126361 522 0.00 2019-10-18 23:16:33 2019-10-18 23:18:39 t 1 1 126363 520 0.00 2019-10-18 22:43:43 2019-10-18 23:21:53 t 1 1 126373 528 0.00 2019-10-18 23:30:07 2019-10-18 23:34:13 t 1 1 126377 522 0.00 2019-10-18 23:39:25 2019-10-18 23:40:40 t 1 1 126378 522 0.00 2019-10-18 23:41:49 2019-10-18 23:41:51 t 1 1 126379 522 0.00 2019-10-18 23:42:05 2019-10-18 23:42:16 t 1 1 126380 514 0.00 2019-10-18 23:30:36 2019-10-18 23:44:58 t 1 1 126381 522 0.00 2019-10-18 23:46:46 2019-10-18 23:46:52 t 1 1 126386 481 0.00 2019-10-18 20:07:25 2019-10-18 23:54:20 t 1 1 126388 445 0.00 2019-10-18 23:37:55 2019-10-18 23:56:10 t 1 1 126393 445 0.00 2019-10-19 00:00:08 2019-10-19 00:08:10 t 1 1 126395 430 0.00 2019-10-18 23:39:32 2019-10-19 00:12:53 t 1 1 126396 522 0.00 2019-10-19 00:10:50 2019-10-19 00:14:01 t 1 1 126397 288 0.00 2019-10-19 00:17:16 2019-10-19 00:17:16 f 1 1 126398 522 0.00 2019-10-19 00:24:00 2019-10-19 00:25:28 t 1 1 126402 522 0.00 2019-10-19 00:49:31 2019-10-19 00:49:42 t 1 1 126405 361 0.00 2019-10-19 00:07:12 2019-10-19 00:59:56 t 1 2 126406 512 0.00 2019-10-19 00:59:10 2019-10-19 01:00:37 t 1 1 126413 485 0.00 2019-10-19 01:39:48 2019-10-19 01:42:40 t 1 1 126420 551 0.00 2019-10-19 02:06:03 2019-10-19 02:06:16 t 1 1 126421 522 0.00 2019-10-19 02:07:13 2019-10-19 02:07:17 t 1 1 126422 522 0.00 2019-10-19 02:07:53 2019-10-19 02:08:03 t 1 1 126423 551 0.00 2019-10-19 02:06:16 2019-10-19 02:12:09 t 1 1 126424 522 0.00 2019-10-19 02:14:57 2019-10-19 02:15:01 t 1 1 126425 522 0.00 2019-10-19 02:34:00 2019-10-19 02:34:05 t 1 1 126429 476 0.00 2019-10-19 00:27:42 2019-10-19 02:49:15 t 1 2 126431 551 0.00 2019-10-19 03:00:42 2019-10-19 03:00:47 t 1 1 126436 551 0.00 2019-10-19 03:01:29 2019-10-19 03:20:04 t 1 1 126438 522 0.00 2019-10-19 03:38:45 2019-10-19 03:39:01 t 1 1 126439 551 0.00 2019-10-19 03:20:04 2019-10-19 03:43:55 t 1 1 126441 445 0.00 2019-10-19 00:08:08 2019-10-19 04:07:49 t 1 1 126445 445 0.00 2019-10-19 04:18:44 2019-10-19 04:20:40 t 1 1 126448 556 0.00 2019-10-19 04:37:38 2019-10-19 04:42:19 t 1 1 126451 522 0.00 2019-10-19 04:54:03 2019-10-19 04:55:10 t 1 1 126453 522 0.00 2019-10-19 04:55:46 2019-10-19 04:56:20 t 1 1 126457 522 0.00 2019-10-19 05:00:08 2019-10-19 05:00:35 t 1 1 126458 522 0.00 2019-10-19 05:01:03 2019-10-19 05:01:17 t 1 1 126459 522 0.00 2019-10-19 05:02:09 2019-10-19 05:02:40 t 1 1 126460 522 0.00 2019-10-19 05:03:16 2019-10-19 05:03:30 t 1 1 126461 522 0.00 2019-10-19 05:05:12 2019-10-19 05:06:15 t 1 1 126463 522 0.00 2019-10-19 05:07:12 2019-10-19 05:08:40 t 1 1 126464 522 0.00 2019-10-19 05:10:12 2019-10-19 05:10:37 t 1 1 126468 522 0.00 2019-10-19 05:16:54 2019-10-19 05:17:12 t 1 1 126472 522 0.00 2019-10-19 05:24:54 2019-10-19 05:25:03 t 1 1 126473 522 0.00 2019-10-19 05:25:24 2019-10-19 05:25:47 t 1 1 126494 516 0.00 2019-10-19 05:46:06 2019-10-19 05:50:50 t 1 1 126495 522 0.00 2019-10-19 05:52:47 2019-10-19 05:53:06 t 1 1 126502 516 0.00 2019-10-19 07:02:35 2019-10-19 07:08:53 t 1 1 126514 551 0.00 2019-10-19 07:51:18 2019-10-19 08:00:22 t 1 1 126516 522 0.00 2019-10-19 08:04:26 2019-10-19 08:04:32 t 1 1 126519 306 0.00 2019-10-19 07:56:06 2019-10-19 08:07:33 t 1 1 126522 522 0.00 2019-10-19 08:10:26 2019-10-19 08:10:27 t 1 1 126523 522 0.00 2019-10-19 08:15:30 2019-10-19 08:15:31 t 1 1 126526 430 0.00 2019-10-19 08:09:43 2019-10-19 08:19:26 t 1 1 126528 430 0.00 2019-10-19 08:19:26 2019-10-19 08:24:23 t 1 1 126531 430 0.00 2019-10-19 08:24:24 2019-10-19 08:29:51 t 1 1 126533 430 0.00 2019-10-19 08:29:51 2019-10-19 08:35:43 t 1 1 126534 522 0.00 2019-10-19 08:32:09 2019-10-19 08:36:06 t 1 1 126536 551 0.00 2019-10-19 08:00:22 2019-10-19 08:37:57 t 1 1 126538 522 0.00 2019-10-19 08:39:04 2019-10-19 08:39:07 t 1 1 126540 562 0.00 2019-10-19 08:39:14 2019-10-19 08:40:51 t 1 1 126542 522 0.00 2019-10-19 08:44:09 2019-10-19 08:44:17 t 1 1 126543 551 0.00 2019-10-19 08:37:57 2019-10-19 08:47:27 t 1 1 126544 481 0.00 2019-10-19 08:23:17 2019-10-19 08:48:16 t 1 1 126546 522 0.00 2019-10-19 08:51:06 2019-10-19 08:51:11 t 1 1 126550 551 0.00 2019-10-19 08:47:27 2019-10-19 08:54:43 t 1 1 126552 306 0.00 2019-10-19 08:37:28 2019-10-19 08:56:20 t 1 1 126558 551 0.00 2019-10-19 08:54:43 2019-10-19 09:00:13 t 1 1 126562 516 0.00 2019-10-19 08:44:43 2019-10-19 09:05:49 t 1 1 126564 522 0.00 2019-10-19 09:09:38 2019-10-19 09:09:39 t 1 1 126565 456 0.00 2019-10-19 09:09:42 2019-10-19 09:12:55 t 1 1 126567 430 0.00 2019-10-19 09:08:12 2019-10-19 09:16:56 t 1 1 126573 551 0.00 2019-10-19 09:00:13 2019-10-19 09:27:12 t 1 1 126576 520 0.00 2019-10-19 09:05:10 2019-10-19 09:30:46 t 1 1 126577 522 0.00 2019-10-19 09:30:56 2019-10-19 09:31:03 t 1 1 126578 522 0.00 2019-10-19 09:31:10 2019-10-19 09:31:40 t 1 1 126582 522 0.00 2019-10-19 09:36:42 2019-10-19 09:37:10 t 1 1 126583 528 0.00 2019-10-19 09:34:51 2019-10-19 09:38:07 t 1 1 126587 562 0.00 2019-10-19 09:39:34 2019-10-19 09:39:48 t 1 1 126590 430 0.00 2019-10-19 09:38:52 2019-10-19 09:41:05 t 1 1 126595 562 0.00 2019-10-19 09:42:27 2019-10-19 09:43:40 t 1 1 126598 430 0.00 2019-10-19 09:44:35 2019-10-19 09:44:37 t 1 1 126602 430 0.00 2019-10-19 09:46:39 2019-10-19 09:47:40 t 1 1 126613 430 0.00 2019-10-19 09:52:45 2019-10-19 09:52:57 t 1 1 126337 514 0.00 2019-10-18 22:56:30 2019-10-18 23:03:06 t 1 1 126338 522 0.00 2019-10-18 23:03:34 2019-10-18 23:03:48 t 1 1 126339 472 0.00 2019-10-18 23:04:14 2019-10-18 23:04:14 f 1 1 126341 522 0.00 2019-10-18 23:05:03 2019-10-18 23:05:12 t 1 1 126343 522 0.00 2019-10-18 23:06:18 2019-10-18 23:06:50 t 1 1 126344 522 0.00 2019-10-18 23:07:21 2019-10-18 23:07:35 t 1 1 126347 522 0.00 2019-10-18 23:08:12 2019-10-18 23:08:41 t 1 1 126348 522 0.00 2019-10-18 23:08:56 2019-10-18 23:09:25 t 1 1 126355 522 0.00 2019-10-18 23:13:35 2019-10-18 23:13:50 t 1 1 126356 522 0.00 2019-10-18 23:14:02 2019-10-18 23:14:10 t 1 1 126358 430 0.00 2019-10-18 22:54:05 2019-10-18 23:15:10 t 1 1 126360 220 0.00 2019-10-18 22:14:57 2019-10-18 23:16:28 t 1 1 126364 544 0.00 2019-10-18 23:22:48 2019-10-18 23:23:11 t 1 2 126365 528 0.00 2019-10-18 23:06:29 2019-10-18 23:24:47 t 1 1 126366 522 0.00 2019-10-18 23:23:22 2019-10-18 23:25:36 t 1 1 126367 514 0.00 2019-10-18 23:05:35 2019-10-18 23:26:25 t 1 1 126369 528 0.00 2019-10-18 23:27:15 2019-10-18 23:30:07 t 1 1 126370 522 0.00 2019-10-18 23:26:29 2019-10-18 23:30:59 t 1 1 126374 220 0.00 2019-10-18 23:29:32 2019-10-18 23:36:04 t 1 1 126383 514 0.00 2019-10-18 23:47:40 2019-10-18 23:49:21 t 1 1 126385 556 0.00 2019-10-18 21:58:42 2019-10-18 23:53:11 t 1 1 126387 247 0.00 2019-10-18 23:55:17 2019-10-18 23:55:17 f 1 2 126389 445 0.00 2019-10-18 23:56:24 2019-10-19 00:00:09 t 1 1 126390 522 0.00 2019-10-19 00:02:06 2019-10-19 00:02:18 t 1 1 126391 522 0.00 2019-10-19 00:03:46 2019-10-19 00:03:47 t 1 1 126392 544 0.00 2019-10-18 23:48:07 2019-10-19 00:05:59 t 1 2 126399 522 0.00 2019-10-19 00:34:15 2019-10-19 00:34:25 t 1 1 126400 408 0.00 2019-10-18 23:56:13 2019-10-19 00:35:31 t 1 1 126401 556 0.00 2019-10-19 00:04:44 2019-10-19 00:42:35 t 1 1 126408 544 0.00 2019-10-19 01:07:08 2019-10-19 01:15:25 t 1 2 126409 538 0.00 2019-10-18 20:42:56 2019-10-19 01:27:32 t 1 1 126410 361 0.00 2019-10-19 01:13:14 2019-10-19 01:31:32 t 1 2 126415 522 0.00 2019-10-19 01:50:36 2019-10-19 01:50:47 t 1 1 126416 522 0.00 2019-10-19 01:55:54 2019-10-19 01:56:09 t 1 1 126418 551 0.00 2019-10-19 02:04:56 2019-10-19 02:05:48 t 1 1 126419 551 0.00 2019-10-19 02:05:47 2019-10-19 02:06:03 t 1 1 126427 339 0.00 2019-10-18 23:57:49 2019-10-19 02:47:13 t 1 2 126428 522 0.00 2019-10-19 02:47:54 2019-10-19 02:48:07 t 1 1 126433 514 0.00 2019-10-19 03:06:33 2019-10-19 03:09:11 t 1 1 126437 522 0.00 2019-10-19 03:35:02 2019-10-19 03:36:40 t 1 1 126442 522 0.00 2019-10-19 04:09:33 2019-10-19 04:09:42 t 1 1 126443 445 0.00 2019-10-19 04:08:28 2019-10-19 04:18:02 t 1 1 126444 522 0.00 2019-10-19 04:19:59 2019-10-19 04:20:10 t 1 1 126446 522 0.00 2019-10-19 04:32:56 2019-10-19 04:33:00 t 1 1 126449 522 0.00 2019-10-19 04:42:15 2019-10-19 04:45:30 t 1 1 126452 522 0.00 2019-10-19 04:55:20 2019-10-19 04:55:30 t 1 1 126456 522 0.00 2019-10-19 04:58:44 2019-10-19 04:59:34 t 1 1 126462 522 0.00 2019-10-19 05:06:21 2019-10-19 05:06:34 t 1 1 126467 522 0.00 2019-10-19 05:12:06 2019-10-19 05:13:15 t 1 1 126470 522 0.00 2019-10-19 05:22:08 2019-10-19 05:22:54 t 1 1 126477 522 0.00 2019-10-19 05:29:24 2019-10-19 05:30:40 t 1 1 126478 522 0.00 2019-10-19 05:30:57 2019-10-19 05:31:12 t 1 1 126484 522 0.00 2019-10-19 05:37:29 2019-10-19 05:37:53 t 1 1 126486 522 0.00 2019-10-19 05:40:02 2019-10-19 05:40:21 t 1 1 126488 522 0.00 2019-10-19 05:41:20 2019-10-19 05:42:40 t 1 1 126489 522 0.00 2019-10-19 05:42:47 2019-10-19 05:43:01 t 1 1 126490 522 0.00 2019-10-19 05:43:57 2019-10-19 05:44:20 t 1 1 126491 522 0.00 2019-10-19 05:48:50 2019-10-19 05:49:04 t 1 1 126493 522 0.00 2019-10-19 05:50:02 2019-10-19 05:50:27 t 1 1 126498 522 0.00 2019-10-19 05:55:58 2019-10-19 05:57:40 t 1 1 126500 520 0.00 2019-10-19 05:38:49 2019-10-19 05:57:57 t 1 1 126501 520 0.00 2019-10-19 05:57:48 2019-10-19 06:26:04 t 1 1 126504 551 0.00 2019-10-19 07:29:17 2019-10-19 07:38:17 t 1 1 126506 220 0.00 2019-10-19 07:23:27 2019-10-19 07:38:48 t 1 2 126509 430 0.00 2019-10-19 07:32:43 2019-10-19 07:47:34 t 1 1 126510 551 0.00 2019-10-19 07:38:17 2019-10-19 07:51:18 t 1 1 126511 570 0.00 2019-10-19 07:47:57 2019-10-19 07:56:10 t 1 1 126512 516 0.00 2019-10-19 07:50:06 2019-10-19 07:57:17 t 1 1 126520 570 0.00 2019-10-19 07:56:10 2019-10-19 08:08:28 t 1 1 126524 412 0.00 2019-10-18 23:10:11 2019-10-19 08:18:09 t 1 1 126527 522 0.00 2019-10-19 08:20:34 2019-10-19 08:20:45 t 1 1 126529 522 0.00 2019-10-19 08:25:31 2019-10-19 08:25:41 t 1 1 126530 522 0.00 2019-10-19 08:28:52 2019-10-19 08:28:57 t 1 1 126532 516 0.00 2019-10-19 08:16:18 2019-10-19 08:35:24 t 1 1 126537 412 0.00 2019-10-19 08:18:09 2019-10-19 08:38:06 t 1 1 126539 522 0.00 2019-10-19 08:39:16 2019-10-19 08:40:45 t 1 1 126548 430 0.00 2019-10-19 08:51:31 2019-10-19 08:52:36 t 1 1 126549 522 0.00 2019-10-19 08:52:54 2019-10-19 08:53:30 t 1 1 126551 522 0.00 2019-10-19 08:54:04 2019-10-19 08:54:56 t 1 1 126554 514 0.00 2019-10-19 08:41:51 2019-10-19 08:58:04 t 1 1 126556 522 0.00 2019-10-19 08:59:19 2019-10-19 08:59:20 t 1 1 126557 562 0.00 2019-10-19 08:58:53 2019-10-19 09:00:08 t 1 1 126559 522 0.00 2019-10-19 09:01:50 2019-10-19 09:02:00 t 1 1 126561 430 0.00 2019-10-19 08:52:35 2019-10-19 09:04:44 t 1 1 126563 514 0.00 2019-10-19 08:58:04 2019-10-19 09:06:43 t 1 1 126566 522 0.00 2019-10-19 09:14:41 2019-10-19 09:14:42 t 1 1 126568 522 0.00 2019-10-19 09:19:23 2019-10-19 09:19:36 t 1 1 126574 522 0.00 2019-10-19 09:28:24 2019-10-19 09:28:28 t 1 1 126580 528 0.00 2019-10-19 09:03:29 2019-10-19 09:34:51 t 1 1 126581 551 0.00 2019-10-19 09:27:12 2019-10-19 09:36:27 t 1 1 126585 430 0.00 2019-10-19 09:36:18 2019-10-19 09:38:24 t 1 1 126591 430 0.00 2019-10-19 09:41:25 2019-10-19 09:41:38 t 1 1 126592 562 0.00 2019-10-19 09:40:31 2019-10-19 09:42:09 t 1 1 126594 430 0.00 2019-10-19 09:42:58 2019-10-19 09:43:28 t 1 1 126597 412 0.00 2019-10-19 08:38:06 2019-10-19 09:43:53 t 1 1 126604 528 0.00 2019-10-19 09:48:06 2019-10-19 09:48:31 t 1 1 126605 562 0.00 2019-10-19 09:48:36 2019-10-19 09:48:46 t 1 1 126606 430 0.00 2019-10-19 09:50:00 2019-10-19 09:50:13 t 1 1 126608 306 0.00 2019-10-19 09:45:38 2019-10-19 09:50:40 t 1 1 126612 514 0.00 2019-10-19 09:40:27 2019-10-19 09:52:45 t 1 1 126614 562 0.00 2019-10-19 09:52:49 2019-10-19 09:53:12 t 1 1 126617 522 0.00 2019-10-19 09:38:49 2019-10-19 09:54:44 t 1 1 126619 516 0.00 2019-10-19 09:49:13 2019-10-19 09:55:31 t 1 1 126621 430 0.00 2019-10-19 09:56:14 2019-10-19 09:56:19 t 1 1 126623 483 0.00 2019-10-19 09:55:13 2019-10-19 09:58:22 t 1 1 126626 528 0.00 2019-10-19 09:55:48 2019-10-19 09:59:16 t 1 1 126628 430 0.00 2019-10-19 10:00:43 2019-10-19 10:00:44 t 1 1 126599 306 0.00 2019-10-19 09:24:34 2019-10-19 09:45:38 t 1 1 126600 551 0.00 2019-10-19 09:36:27 2019-10-19 09:46:13 t 1 1 126601 430 0.00 2019-10-19 09:45:19 2019-10-19 09:46:40 t 1 1 126603 430 0.00 2019-10-19 09:47:56 2019-10-19 09:48:29 t 1 1 126607 430 0.00 2019-10-19 09:50:20 2019-10-19 09:50:22 t 1 1 126609 430 0.00 2019-10-19 09:50:47 2019-10-19 09:50:53 t 1 1 126610 430 0.00 2019-10-19 09:51:20 2019-10-19 09:51:28 t 1 1 126611 430 0.00 2019-10-19 09:51:37 2019-10-19 09:52:15 t 1 1 126616 528 0.00 2019-10-19 09:53:59 2019-10-19 09:54:23 t 1 1 126622 430 0.00 2019-10-19 09:56:46 2019-10-19 09:56:48 t 1 1 126624 430 0.00 2019-10-19 09:58:01 2019-10-19 09:58:31 t 1 1 126625 430 0.00 2019-10-19 09:58:49 2019-10-19 09:59:12 t 1 1 126629 528 0.00 2019-10-19 10:00:51 2019-10-19 10:02:00 t 1 1 126633 430 0.00 2019-10-19 10:03:35 2019-10-19 10:04:04 t 1 1 126638 331 0.00 2019-10-19 09:56:01 2019-10-19 10:07:38 t 1 1 126639 522 0.00 2019-10-19 09:54:44 2019-10-19 10:08:03 t 1 1 126641 514 0.00 2019-10-19 09:52:45 2019-10-19 10:08:22 t 1 1 126642 430 0.00 2019-10-19 10:08:40 2019-10-19 10:08:47 t 1 1 126643 430 0.00 2019-10-19 10:09:06 2019-10-19 10:09:19 t 1 1 126645 430 0.00 2019-10-19 10:10:41 2019-10-19 10:12:40 t 1 1 126647 430 0.00 2019-10-19 10:13:42 2019-10-19 10:13:44 t 1 1 126648 430 0.00 2019-10-19 10:13:49 2019-10-19 10:14:50 t 1 1 126650 514 0.00 2019-10-19 10:11:51 2019-10-19 10:15:12 t 1 1 126654 430 0.00 2019-10-19 10:16:57 2019-10-19 10:17:44 t 1 1 126661 220 0.00 2019-10-19 08:53:41 2019-10-19 10:23:30 t 1 1 126662 481 0.00 2019-10-19 08:48:16 2019-10-19 10:27:29 t 1 1 126663 412 0.00 2019-10-19 10:14:57 2019-10-19 10:28:14 t 1 1 126664 562 0.00 2019-10-19 10:11:22 2019-10-19 10:28:30 t 1 1 126666 522 0.00 2019-10-19 10:22:42 2019-10-19 10:28:45 t 1 1 126676 220 0.00 2019-10-19 10:36:22 2019-10-19 10:39:40 t 1 1 126678 220 0.00 2019-10-19 10:39:40 2019-10-19 10:40:15 t 1 1 126682 220 0.00 2019-10-19 10:40:14 2019-10-19 10:43:47 t 1 1 126683 220 0.00 2019-10-19 10:43:47 2019-10-19 10:44:19 t 1 1 126685 220 0.00 2019-10-19 10:44:52 2019-10-19 10:45:23 t 1 1 126686 220 0.00 2019-10-19 10:45:23 2019-10-19 10:46:55 t 1 1 126689 556 0.00 2019-10-19 10:23:09 2019-10-19 10:48:08 t 1 1 126693 490 0.00 2019-10-19 10:39:50 2019-10-19 10:49:48 t 1 1 126694 220 0.00 2019-10-19 10:47:29 2019-10-19 10:51:03 t 1 1 126701 220 0.00 2019-10-19 10:54:39 2019-10-19 10:55:12 t 1 1 126704 331 0.00 2019-10-19 10:07:38 2019-10-19 10:56:26 t 1 1 126707 220 0.00 2019-10-19 10:56:30 2019-10-19 11:00:05 t 1 1 126709 220 0.00 2019-10-19 11:00:05 2019-10-19 11:00:39 t 1 1 126712 408 0.00 2019-10-19 10:56:14 2019-10-19 11:02:38 t 1 1 126714 220 0.00 2019-10-19 11:02:41 2019-10-19 11:04:39 t 1 1 126716 220 0.00 2019-10-19 11:05:10 2019-10-19 11:05:57 t 1 1 126717 566 0.00 2019-10-19 11:00:30 2019-10-19 11:06:07 t 1 1 126720 483 0.00 2019-10-19 10:16:46 2019-10-19 11:06:55 t 1 1 126724 220 0.00 2019-10-19 11:09:15 2019-10-19 11:09:57 t 1 1 126725 331 0.00 2019-10-19 10:56:26 2019-10-19 11:10:59 t 1 1 126731 498 0.00 2019-10-19 10:16:43 2019-10-19 11:18:48 t 1 2 126735 220 0.00 2019-10-19 11:21:26 2019-10-19 11:22:52 t 1 1 126737 306 0.00 2019-10-19 11:06:45 2019-10-19 11:25:25 t 1 1 126740 522 0.00 2019-10-19 11:06:13 2019-10-19 11:29:51 t 1 1 126745 220 0.00 2019-10-19 11:37:13 2019-10-19 11:37:48 t 1 1 126748 562 0.00 2019-10-19 11:47:01 2019-10-19 11:47:11 t 1 1 126752 220 0.00 2019-10-19 11:37:47 2019-10-19 12:02:48 t 1 1 126753 562 0.00 2019-10-19 12:02:46 2019-10-19 12:04:41 t 1 1 126756 220 0.00 2019-10-19 12:10:43 2019-10-19 12:10:56 t 1 2 126758 306 0.00 2019-10-19 12:10:18 2019-10-19 12:13:39 t 1 1 126759 220 0.00 2019-10-19 12:11:09 2019-10-19 12:14:33 t 1 2 126762 562 0.00 2019-10-19 12:15:00 2019-10-19 12:15:09 t 1 1 126769 220 0.00 2019-10-19 12:19:11 2019-10-19 12:27:22 t 1 2 126771 522 0.00 2019-10-19 12:23:22 2019-10-19 12:30:13 t 1 1 126775 522 0.00 2019-10-19 12:31:37 2019-10-19 12:31:44 t 1 1 126776 522 0.00 2019-10-19 12:32:02 2019-10-19 12:32:03 t 1 1 126778 562 0.00 2019-10-19 12:32:21 2019-10-19 12:33:16 t 1 1 126781 522 0.00 2019-10-19 12:38:01 2019-10-19 12:38:09 t 1 1 126785 562 0.00 2019-10-19 12:43:12 2019-10-19 12:43:33 t 1 1 126788 522 0.00 2019-10-19 12:43:57 2019-10-19 12:45:41 t 1 1 126789 538 0.00 2019-10-19 11:44:40 2019-10-19 12:46:21 t 1 1 126794 522 0.00 2019-10-19 12:50:34 2019-10-19 12:50:40 t 1 1 126795 522 0.00 2019-10-19 12:50:56 2019-10-19 12:51:07 t 1 1 126799 514 0.00 2019-10-19 11:08:42 2019-10-19 12:52:18 t 1 1 126802 522 0.00 2019-10-19 12:52:52 2019-10-19 12:52:54 t 1 1 126803 522 0.00 2019-10-19 12:52:59 2019-10-19 12:53:06 t 1 1 126805 522 0.00 2019-10-19 12:53:42 2019-10-19 12:53:59 t 1 1 126810 522 0.00 2019-10-19 12:54:54 2019-10-19 12:54:56 t 1 1 126813 528 0.00 2019-10-19 12:35:43 2019-10-19 12:56:29 t 1 1 126824 522 0.00 2019-10-19 13:02:43 2019-10-19 13:02:49 t 1 1 126825 522 0.00 2019-10-19 13:02:54 2019-10-19 13:03:00 t 1 1 126826 522 0.00 2019-10-19 13:03:18 2019-10-19 13:03:19 t 1 1 126828 522 0.00 2019-10-19 13:03:07 2019-10-19 13:05:42 t 1 1 126829 522 0.00 2019-10-19 13:06:39 2019-10-19 13:06:45 t 1 1 126830 522 0.00 2019-10-19 13:06:58 2019-10-19 13:06:59 t 1 1 126833 522 0.00 2019-10-19 13:07:41 2019-10-19 13:07:47 t 1 1 126834 522 0.00 2019-10-19 13:08:00 2019-10-19 13:08:01 t 1 1 126835 522 0.00 2019-10-19 13:08:06 2019-10-19 13:08:49 t 1 1 126839 522 0.00 2019-10-19 13:09:16 2019-10-19 13:09:21 t 1 1 126842 522 0.00 2019-10-19 13:10:13 2019-10-19 13:10:18 t 1 1 126843 522 0.00 2019-10-19 13:10:23 2019-10-19 13:10:29 t 1 1 126849 522 0.00 2019-10-19 13:10:07 2019-10-19 13:11:42 t 1 1 126852 522 0.00 2019-10-19 13:12:27 2019-10-19 13:12:34 t 1 1 126853 522 0.00 2019-10-19 13:12:53 2019-10-19 13:12:54 t 1 1 126854 522 0.00 2019-10-19 13:13:00 2019-10-19 13:13:05 t 1 1 126858 522 0.00 2019-10-19 13:12:47 2019-10-19 13:14:42 t 1 1 126859 538 0.00 2019-10-19 12:46:21 2019-10-19 13:15:21 t 1 1 126861 522 0.00 2019-10-19 13:14:39 2019-10-19 13:16:01 t 1 1 126862 522 0.00 2019-10-19 13:16:04 2019-10-19 13:17:06 t 1 1 126863 544 0.00 2019-10-19 13:16:09 2019-10-19 13:18:01 t 1 2 126871 522 0.00 2019-10-19 13:24:23 2019-10-19 13:25:16 t 1 1 126872 481 0.00 2019-10-19 11:00:35 2019-10-19 13:26:08 t 1 1 126875 306 0.00 2019-10-19 13:19:52 2019-10-19 13:27:12 t 1 1 126878 220 0.00 2019-10-19 13:21:31 2019-10-19 13:28:53 t 1 2 126888 290 0.00 2019-10-19 13:30:59 2019-10-19 13:30:59 f 1 2 126891 290 0.00 2019-10-19 13:31:43 2019-10-19 13:31:43 f 1 2 126895 290 0.00 2019-10-19 13:32:36 2019-10-19 13:32:36 f 1 2 126898 522 0.00 2019-10-19 13:32:42 2019-10-19 13:33:20 t 1 1 126615 430 0.00 2019-10-19 09:54:08 2019-10-19 09:54:15 t 1 1 126618 483 0.00 2019-10-19 09:48:35 2019-10-19 09:55:13 t 1 1 126620 331 0.00 2019-10-19 09:42:50 2019-10-19 09:56:01 t 1 1 126627 528 0.00 2019-10-19 09:59:37 2019-10-19 10:00:23 t 1 1 126631 483 0.00 2019-10-19 09:58:22 2019-10-19 10:03:47 t 1 1 126635 430 0.00 2019-10-19 10:05:55 2019-10-19 10:06:07 t 1 1 126637 483 0.00 2019-10-19 10:03:47 2019-10-19 10:06:49 t 1 1 126640 430 0.00 2019-10-19 10:07:52 2019-10-19 10:08:04 t 1 1 126644 514 0.00 2019-10-19 10:08:22 2019-10-19 10:11:09 t 1 1 126646 430 0.00 2019-10-19 10:12:44 2019-10-19 10:13:42 t 1 1 126651 430 0.00 2019-10-19 10:15:52 2019-10-19 10:15:54 t 1 1 126652 483 0.00 2019-10-19 10:06:49 2019-10-19 10:16:46 t 1 1 126653 430 0.00 2019-10-19 10:16:47 2019-10-19 10:16:52 t 1 1 126655 430 0.00 2019-10-19 10:17:43 2019-10-19 10:18:53 t 1 1 126657 570 0.00 2019-10-19 10:12:53 2019-10-19 10:20:25 t 1 1 126658 522 0.00 2019-10-19 10:08:03 2019-10-19 10:21:55 t 1 1 126659 522 0.00 2019-10-19 10:22:22 2019-10-19 10:22:30 t 1 1 126667 551 0.00 2019-10-19 10:22:53 2019-10-19 10:29:13 t 1 1 126668 306 0.00 2019-10-19 10:28:25 2019-10-19 10:30:09 t 1 1 126669 570 0.00 2019-10-19 10:20:25 2019-10-19 10:31:05 t 1 1 126672 220 0.00 2019-10-19 10:34:05 2019-10-19 10:35:11 t 1 1 126673 220 0.00 2019-10-19 10:35:11 2019-10-19 10:35:48 t 1 1 126674 220 0.00 2019-10-19 10:35:47 2019-10-19 10:36:23 t 1 1 126675 412 0.00 2019-10-19 10:28:14 2019-10-19 10:38:13 t 1 1 126680 481 0.00 2019-10-19 10:30:59 2019-10-19 10:41:59 t 1 1 126684 220 0.00 2019-10-19 10:44:19 2019-10-19 10:44:52 t 1 1 126687 562 0.00 2019-10-19 10:41:25 2019-10-19 10:47:04 t 1 1 126690 516 0.00 2019-10-19 10:43:38 2019-10-19 10:48:24 t 1 1 126691 522 0.00 2019-10-19 10:28:44 2019-10-19 10:49:29 t 1 1 126696 481 0.00 2019-10-19 10:41:59 2019-10-19 10:51:31 t 1 1 126698 514 0.00 2019-10-19 10:15:11 2019-10-19 10:53:03 t 1 1 126705 556 0.00 2019-10-19 10:54:50 2019-10-19 10:56:30 t 1 1 126711 306 0.00 2019-10-19 11:00:36 2019-10-19 11:02:12 t 1 1 126713 220 0.00 2019-10-19 11:02:09 2019-10-19 11:02:41 t 1 1 126719 220 0.00 2019-10-19 11:05:57 2019-10-19 11:06:53 t 1 1 126721 296 0.00 2019-10-19 10:49:23 2019-10-19 11:07:47 t 1 2 126723 220 0.00 2019-10-19 11:06:52 2019-10-19 11:09:15 t 1 1 126726 220 0.00 2019-10-19 11:09:57 2019-10-19 11:13:16 t 1 1 126727 220 0.00 2019-10-19 11:13:16 2019-10-19 11:13:48 t 1 1 126729 544 0.00 2019-10-19 11:05:58 2019-10-19 11:17:36 t 1 2 126733 516 0.00 2019-10-19 11:13:50 2019-10-19 11:20:54 t 1 1 126734 220 0.00 2019-10-19 11:17:55 2019-10-19 11:21:27 t 1 1 126736 556 0.00 2019-10-19 11:21:48 2019-10-19 11:23:21 t 1 1 126738 220 0.00 2019-10-19 11:22:52 2019-10-19 11:25:53 t 1 1 126739 220 0.00 2019-10-19 11:25:53 2019-10-19 11:29:50 t 1 1 126741 361 0.00 2019-10-19 11:10:03 2019-10-19 11:33:05 t 1 2 126746 570 0.00 2019-10-19 10:42:25 2019-10-19 11:43:01 t 1 1 126747 536 0.00 2019-10-19 11:45:12 2019-10-19 11:45:33 t 1 1 126749 522 0.00 2019-10-19 11:29:51 2019-10-19 11:52:15 t 1 1 126750 562 0.00 2019-10-19 11:57:27 2019-10-19 11:57:53 t 1 1 126761 220 0.00 2019-10-19 11:31:57 2019-10-19 12:14:56 t 1 2 126766 522 0.00 2019-10-19 12:23:02 2019-10-19 12:23:14 t 1 1 126767 562 0.00 2019-10-19 12:25:16 2019-10-19 12:25:25 t 1 1 126768 562 0.00 2019-10-19 12:26:48 2019-10-19 12:26:57 t 1 1 126770 306 0.00 2019-10-19 12:26:30 2019-10-19 12:28:49 t 1 1 126772 522 0.00 2019-10-19 12:30:24 2019-10-19 12:30:31 t 1 1 126777 520 0.00 2019-10-19 12:25:45 2019-10-19 12:33:00 t 1 1 126779 361 0.00 2019-10-19 12:09:36 2019-10-19 12:33:59 t 1 2 126780 522 0.00 2019-10-19 12:32:29 2019-10-19 12:37:45 t 1 1 126782 522 0.00 2019-10-19 12:38:15 2019-10-19 12:38:39 t 1 1 126783 520 0.00 2019-10-19 12:32:59 2019-10-19 12:41:58 t 1 1 126784 544 0.00 2019-10-19 12:37:50 2019-10-19 12:43:26 t 1 2 126786 522 0.00 2019-10-19 12:43:39 2019-10-19 12:43:48 t 1 1 126787 522 0.00 2019-10-19 12:44:07 2019-10-19 12:45:07 t 1 1 126790 522 0.00 2019-10-19 12:49:05 2019-10-19 12:49:37 t 1 1 126792 522 0.00 2019-10-19 12:50:03 2019-10-19 12:50:09 t 1 1 126796 522 0.00 2019-10-19 12:51:14 2019-10-19 12:51:22 t 1 1 126800 522 0.00 2019-10-19 12:52:12 2019-10-19 12:52:39 t 1 1 126804 522 0.00 2019-10-19 12:53:24 2019-10-19 12:53:26 t 1 1 126806 522 0.00 2019-10-19 12:54:05 2019-10-19 12:54:10 t 1 1 126808 562 0.00 2019-10-19 12:53:57 2019-10-19 12:54:25 t 1 1 126815 522 0.00 2019-10-19 12:56:45 2019-10-19 12:56:52 t 1 1 126816 522 0.00 2019-10-19 12:57:10 2019-10-19 12:57:10 t 1 1 126818 522 0.00 2019-10-19 12:59:50 2019-10-19 13:01:01 t 1 1 126820 412 0.00 2019-10-19 10:38:13 2019-10-19 13:01:42 t 1 1 126821 522 0.00 2019-10-19 13:01:43 2019-10-19 13:01:48 t 1 1 126822 522 0.00 2019-10-19 13:02:06 2019-10-19 13:02:13 t 1 1 126827 562 0.00 2019-10-19 13:04:47 2019-10-19 13:05:13 t 1 1 126831 522 0.00 2019-10-19 13:07:05 2019-10-19 13:07:11 t 1 1 126836 522 0.00 2019-10-19 13:08:54 2019-10-19 13:08:56 t 1 1 126837 522 0.00 2019-10-19 13:09:01 2019-10-19 13:09:03 t 1 1 126840 522 0.00 2019-10-19 13:09:39 2019-10-19 13:09:41 t 1 1 126844 522 0.00 2019-10-19 13:10:42 2019-10-19 13:10:43 t 1 1 126847 562 0.00 2019-10-19 13:10:22 2019-10-19 13:11:16 t 1 1 126855 522 0.00 2019-10-19 13:13:10 2019-10-19 13:13:45 t 1 1 126856 522 0.00 2019-10-19 13:13:51 2019-10-19 13:14:16 t 1 1 126864 562 0.00 2019-10-19 13:18:33 2019-10-19 13:18:54 t 1 1 126865 544 0.00 2019-10-19 13:17:28 2019-10-19 13:19:15 t 1 2 126866 485 0.00 2019-10-19 13:21:10 2019-10-19 13:22:57 t 1 1 126869 522 0.00 2019-10-19 13:22:23 2019-10-19 13:23:49 t 1 1 126870 522 0.00 2019-10-19 13:23:59 2019-10-19 13:24:16 t 1 1 126881 522 0.00 2019-10-19 13:29:02 2019-10-19 13:29:41 t 1 1 126883 522 0.00 2019-10-19 13:29:46 2019-10-19 13:30:23 t 1 1 126884 290 0.00 2019-10-19 13:30:33 2019-10-19 13:30:33 f 1 2 126886 514 0.00 2019-10-19 12:52:18 2019-10-19 13:30:41 t 1 1 126887 290 0.00 2019-10-19 13:30:45 2019-10-19 13:30:45 f 1 2 126889 290 0.00 2019-10-19 13:31:14 2019-10-19 13:31:14 f 1 2 126893 290 0.00 2019-10-19 13:32:06 2019-10-19 13:32:06 f 1 2 126899 485 0.00 2019-10-19 13:22:57 2019-10-19 13:33:32 t 1 1 126900 522 0.00 2019-10-19 13:33:25 2019-10-19 13:34:03 t 1 1 126902 522 0.00 2019-10-19 13:34:50 2019-10-19 13:35:38 t 1 1 126906 574 0.00 2019-10-19 13:23:09 2019-10-19 13:37:01 t 1 1 126908 522 0.00 2019-10-19 13:37:05 2019-10-19 13:37:59 t 1 1 126911 522 0.00 2019-10-19 13:39:33 2019-10-19 13:40:17 t 1 1 126913 487 0.00 2019-10-19 13:30:37 2019-10-19 13:40:43 t 1 2 126918 564 0.00 2019-10-19 09:27:54 2019-10-19 13:46:11 t 1 1 126920 522 0.00 2019-10-19 13:54:43 2019-10-19 13:54:46 t 1 1 126630 430 0.00 2019-10-19 10:01:44 2019-10-19 10:02:15 t 1 1 126632 562 0.00 2019-10-19 10:03:40 2019-10-19 10:03:47 t 1 1 126634 430 0.00 2019-10-19 10:04:09 2019-10-19 10:05:40 t 1 1 126636 430 0.00 2019-10-19 10:06:20 2019-10-19 10:06:27 t 1 1 126649 412 0.00 2019-10-19 09:43:53 2019-10-19 10:14:57 t 1 1 126656 430 0.00 2019-10-19 10:19:28 2019-10-19 10:19:57 t 1 1 126660 551 0.00 2019-10-19 09:46:13 2019-10-19 10:22:53 t 1 1 126665 562 0.00 2019-10-19 10:27:35 2019-10-19 10:28:40 t 1 1 126670 220 0.00 2019-10-19 10:23:30 2019-10-19 10:33:12 t 1 1 126671 220 0.00 2019-10-19 10:33:11 2019-10-19 10:34:05 t 1 1 126677 490 0.00 2019-10-19 10:35:22 2019-10-19 10:39:50 t 1 1 126679 512 0.00 2019-10-19 10:05:54 2019-10-19 10:40:45 t 1 1 126681 570 0.00 2019-10-19 10:31:05 2019-10-19 10:42:25 t 1 1 126688 220 0.00 2019-10-19 10:46:55 2019-10-19 10:47:29 t 1 1 126692 556 0.00 2019-10-19 10:48:09 2019-10-19 10:49:46 t 1 1 126695 556 0.00 2019-10-19 10:49:58 2019-10-19 10:51:10 t 1 1 126697 220 0.00 2019-10-19 10:51:03 2019-10-19 10:51:37 t 1 1 126699 556 0.00 2019-10-19 10:52:25 2019-10-19 10:53:27 t 1 1 126700 220 0.00 2019-10-19 10:51:36 2019-10-19 10:54:39 t 1 1 126702 490 0.00 2019-10-19 10:49:47 2019-10-19 10:55:14 t 1 1 126703 220 0.00 2019-10-19 10:55:12 2019-10-19 10:55:58 t 1 1 126706 220 0.00 2019-10-19 10:55:58 2019-10-19 10:56:31 t 1 1 126708 481 0.00 2019-10-19 10:58:22 2019-10-19 11:00:17 t 1 1 126710 220 0.00 2019-10-19 11:00:39 2019-10-19 11:02:09 t 1 1 126715 220 0.00 2019-10-19 11:04:39 2019-10-19 11:05:11 t 1 1 126718 522 0.00 2019-10-19 10:49:29 2019-10-19 11:06:13 t 1 1 126722 514 0.00 2019-10-19 10:53:03 2019-10-19 11:08:42 t 1 1 126728 220 0.00 2019-10-19 11:13:47 2019-10-19 11:17:15 t 1 1 126730 220 0.00 2019-10-19 11:17:15 2019-10-19 11:17:55 t 1 1 126732 556 0.00 2019-10-19 11:11:24 2019-10-19 11:20:07 t 1 1 126742 220 0.00 2019-10-19 11:29:50 2019-10-19 11:35:37 t 1 1 126743 220 0.00 2019-10-19 11:35:37 2019-10-19 11:36:09 t 1 1 126744 220 0.00 2019-10-19 11:36:09 2019-10-19 11:37:13 t 1 1 126751 512 0.00 2019-10-19 11:13:18 2019-10-19 12:00:40 t 1 1 126754 526 0.00 2019-10-19 11:52:10 2019-10-19 12:06:20 t 1 1 126755 526 0.00 2019-10-19 12:06:20 2019-10-19 12:09:55 t 1 1 126757 512 0.00 2019-10-19 12:01:14 2019-10-19 12:12:22 t 1 1 126760 562 0.00 2019-10-19 12:14:20 2019-10-19 12:14:52 t 1 1 126763 562 0.00 2019-10-19 12:17:24 2019-10-19 12:17:39 t 1 1 126764 522 0.00 2019-10-19 11:52:15 2019-10-19 12:22:55 t 1 1 126765 562 0.00 2019-10-19 12:21:20 2019-10-19 12:23:05 t 1 1 126773 522 0.00 2019-10-19 12:30:49 2019-10-19 12:30:56 t 1 1 126774 522 0.00 2019-10-19 12:31:13 2019-10-19 12:31:20 t 1 1 126791 522 0.00 2019-10-19 12:49:50 2019-10-19 12:49:51 t 1 1 126793 522 0.00 2019-10-19 12:50:27 2019-10-19 12:50:29 t 1 1 126797 522 0.00 2019-10-19 12:51:33 2019-10-19 12:51:40 t 1 1 126798 522 0.00 2019-10-19 12:51:57 2019-10-19 12:52:05 t 1 1 126801 522 0.00 2019-10-19 12:52:45 2019-10-19 12:52:47 t 1 1 126807 522 0.00 2019-10-19 12:54:23 2019-10-19 12:54:24 t 1 1 126809 522 0.00 2019-10-19 12:54:29 2019-10-19 12:54:36 t 1 1 126811 522 0.00 2019-10-19 12:55:01 2019-10-19 12:55:03 t 1 1 126812 522 0.00 2019-10-19 12:55:19 2019-10-19 12:56:07 t 1 1 126814 522 0.00 2019-10-19 12:56:24 2019-10-19 12:56:31 t 1 1 126817 522 0.00 2019-10-19 12:56:38 2019-10-19 12:58:42 t 1 1 126819 522 0.00 2019-10-19 13:01:19 2019-10-19 13:01:25 t 1 1 126823 522 0.00 2019-10-19 13:02:36 2019-10-19 13:02:38 t 1 1 126832 522 0.00 2019-10-19 13:07:29 2019-10-19 13:07:35 t 1 1 126838 522 0.00 2019-10-19 13:09:08 2019-10-19 13:09:10 t 1 1 126841 522 0.00 2019-10-19 13:09:47 2019-10-19 13:09:52 t 1 1 126845 522 0.00 2019-10-19 13:10:48 2019-10-19 13:10:50 t 1 1 126846 522 0.00 2019-10-19 13:11:03 2019-10-19 13:11:15 t 1 1 126848 522 0.00 2019-10-19 13:11:27 2019-10-19 13:11:34 t 1 1 126850 522 0.00 2019-10-19 13:11:39 2019-10-19 13:11:45 t 1 1 126851 522 0.00 2019-10-19 13:11:51 2019-10-19 13:12:08 t 1 1 126857 522 0.00 2019-10-19 13:14:22 2019-10-19 13:14:34 t 1 1 126860 520 0.00 2019-10-19 13:08:19 2019-10-19 13:15:38 t 1 1 126867 574 0.00 2019-10-19 13:22:36 2019-10-19 13:22:59 t 1 1 126868 516 0.00 2019-10-19 13:16:03 2019-10-19 13:23:22 t 1 1 126873 522 0.00 2019-10-19 13:25:23 2019-10-19 13:26:19 t 1 1 126874 522 0.00 2019-10-19 13:26:56 2019-10-19 13:27:02 t 1 1 126876 522 0.00 2019-10-19 13:27:10 2019-10-19 13:27:33 t 1 1 126877 522 0.00 2019-10-19 13:27:39 2019-10-19 13:28:16 t 1 1 126879 522 0.00 2019-10-19 13:28:22 2019-10-19 13:28:57 t 1 1 126880 518 0.00 2019-10-19 13:19:03 2019-10-19 13:29:08 t 1 2 126882 290 0.00 2019-10-19 13:30:18 2019-10-19 13:30:18 f 1 2 126885 522 0.00 2019-10-19 13:30:28 2019-10-19 13:30:40 t 1 1 126890 290 0.00 2019-10-19 13:31:28 2019-10-19 13:31:28 f 1 2 126892 522 0.00 2019-10-19 13:30:45 2019-10-19 13:31:54 t 1 1 126894 290 0.00 2019-10-19 13:32:22 2019-10-19 13:32:22 f 1 2 126896 522 0.00 2019-10-19 13:31:59 2019-10-19 13:32:36 t 1 1 126897 290 0.00 2019-10-19 13:32:53 2019-10-19 13:32:53 f 1 2 126901 522 0.00 2019-10-19 13:34:08 2019-10-19 13:34:45 t 1 1 126904 522 0.00 2019-10-19 13:35:43 2019-10-19 13:36:27 t 1 1 126905 522 0.00 2019-10-19 13:36:32 2019-10-19 13:37:00 t 1 1 126907 412 0.00 2019-10-19 13:01:42 2019-10-19 13:37:32 t 1 1 126909 522 0.00 2019-10-19 13:38:04 2019-10-19 13:38:26 t 1 1 126910 522 0.00 2019-10-19 13:38:31 2019-10-19 13:39:20 t 1 1 126914 522 0.00 2019-10-19 13:40:25 2019-10-19 13:41:00 t 1 1 126917 522 0.00 2019-10-19 13:41:46 2019-10-19 13:42:13 t 1 1 126921 522 0.00 2019-10-19 13:54:52 2019-10-19 13:54:54 t 1 1 126925 522 0.00 2019-10-19 13:57:42 2019-10-19 13:57:50 t 1 1 126927 412 0.00 2019-10-19 13:37:32 2019-10-19 13:57:56 t 1 1 126929 412 0.00 2019-10-19 13:57:56 2019-10-19 13:58:49 t 1 1 126932 522 0.00 2019-10-19 13:59:38 2019-10-19 14:00:10 t 1 1 126934 522 0.00 2019-10-19 14:00:29 2019-10-19 14:00:37 t 1 1 126942 522 0.00 2019-10-19 14:02:37 2019-10-19 14:03:16 t 1 1 126948 562 0.00 2019-10-19 14:02:44 2019-10-19 14:05:29 t 1 1 126950 522 0.00 2019-10-19 14:06:23 2019-10-19 14:06:36 t 1 1 126951 522 0.00 2019-10-19 14:07:10 2019-10-19 14:07:26 t 1 1 126956 522 0.00 2019-10-19 14:09:02 2019-10-19 14:10:03 t 1 1 126965 501 0.00 2019-10-19 13:56:41 2019-10-19 14:20:56 t 1 1 126966 485 0.00 2019-10-19 14:17:08 2019-10-19 14:21:44 t 1 1 126970 562 0.00 2019-10-19 14:26:55 2019-10-19 14:28:46 t 1 1 126975 562 0.00 2019-10-19 14:32:58 2019-10-19 14:34:14 t 1 1 126980 501 0.00 2019-10-19 14:20:56 2019-10-19 14:42:24 t 1 1 126981 220 0.00 2019-10-19 14:27:55 2019-10-19 14:43:00 t 1 2 126986 562 0.00 2019-10-19 14:56:56 2019-10-19 14:59:40 t 1 1 126903 562 0.00 2019-10-19 13:35:59 2019-10-19 13:36:21 t 1 1 126912 485 0.00 2019-10-19 13:33:32 2019-10-19 13:40:21 t 1 1 126915 522 0.00 2019-10-19 13:41:26 2019-10-19 13:41:38 t 1 1 126916 544 0.00 2019-10-19 13:23:03 2019-10-19 13:42:12 t 1 2 126919 562 0.00 2019-10-19 13:46:51 2019-10-19 13:47:10 t 1 1 126923 522 0.00 2019-10-19 13:55:00 2019-10-19 13:55:00 t 1 1 126931 522 0.00 2019-10-19 13:59:01 2019-10-19 13:59:29 t 1 1 126938 514 0.00 2019-10-19 13:30:41 2019-10-19 14:01:45 t 1 1 126939 522 0.00 2019-10-19 14:01:56 2019-10-19 14:02:08 t 1 1 126943 522 0.00 2019-10-19 14:03:29 2019-10-19 14:03:30 t 1 1 126945 522 0.00 2019-10-19 14:03:36 2019-10-19 14:04:37 t 1 1 126947 522 0.00 2019-10-19 14:05:09 2019-10-19 14:05:16 t 1 1 126949 522 0.00 2019-10-19 14:05:34 2019-10-19 14:05:50 t 1 1 126953 522 0.00 2019-10-19 14:09:17 2019-10-19 14:09:17 f 1 1 126955 522 0.00 2019-10-19 14:07:45 2019-10-19 14:09:42 t 1 1 126957 562 0.00 2019-10-19 14:05:56 2019-10-19 14:11:51 t 1 1 126958 562 0.00 2019-10-19 14:12:20 2019-10-19 14:12:24 t 1 1 126959 516 0.00 2019-10-19 14:04:10 2019-10-19 14:13:28 t 1 1 126960 514 0.00 2019-10-19 14:12:36 2019-10-19 14:14:33 t 1 1 126961 562 0.00 2019-10-19 14:15:33 2019-10-19 14:15:47 t 1 1 126963 514 0.00 2019-10-19 14:14:44 2019-10-19 14:16:32 t 1 1 126964 220 0.00 2019-10-19 14:15:15 2019-10-19 14:17:38 t 1 2 126969 408 0.00 2019-10-19 14:22:12 2019-10-19 14:27:46 t 1 1 126971 408 0.00 2019-10-19 14:28:00 2019-10-19 14:29:18 t 1 1 126972 562 0.00 2019-10-19 14:31:28 2019-10-19 14:32:29 t 1 1 126976 562 0.00 2019-10-19 14:34:54 2019-10-19 14:35:06 t 1 1 126977 562 0.00 2019-10-19 14:34:42 2019-10-19 14:36:42 t 1 1 126978 562 0.00 2019-10-19 14:35:31 2019-10-19 14:37:58 t 1 1 126982 526 0.00 2019-10-19 14:10:03 2019-10-19 14:43:27 t 1 1 126984 306 0.00 2019-10-19 14:52:58 2019-10-19 14:56:00 t 1 1 126993 476 0.00 2019-10-19 12:56:49 2019-10-19 15:09:38 t 1 2 126994 485 0.00 2019-10-19 15:02:09 2019-10-19 15:10:48 t 1 1 127009 296 0.00 2019-10-19 15:40:00 2019-10-19 15:40:00 f 1 2 127010 562 0.00 2019-10-19 15:40:15 2019-10-19 15:40:20 t 1 1 127012 456 0.00 2019-10-19 15:40:15 2019-10-19 15:43:50 t 1 1 127018 514 0.00 2019-10-19 14:22:38 2019-10-19 15:51:03 t 1 1 127019 351 0.00 2019-10-19 15:49:50 2019-10-19 15:52:43 t 1 2 127020 562 0.00 2019-10-19 15:53:01 2019-10-19 15:53:12 t 1 1 127023 562 0.00 2019-10-19 15:56:17 2019-10-19 15:57:10 t 1 1 127027 528 0.00 2019-10-19 15:59:16 2019-10-19 15:59:17 t 1 1 127029 562 0.00 2019-10-19 16:00:13 2019-10-19 16:00:22 t 1 1 127033 562 0.00 2019-10-19 16:03:57 2019-10-19 16:04:02 t 1 1 127037 528 0.00 2019-10-19 16:00:23 2019-10-19 16:08:56 t 1 1 127041 514 0.00 2019-10-19 16:07:01 2019-10-19 16:17:02 t 1 1 127047 220 0.00 2019-10-19 16:29:42 2019-10-19 16:30:34 t 1 1 127050 220 0.00 2019-10-19 16:33:54 2019-10-19 16:34:47 t 1 1 127057 220 0.00 2019-10-19 16:44:47 2019-10-19 16:45:21 t 1 1 127067 220 0.00 2019-10-19 16:52:25 2019-10-19 16:53:55 t 1 1 127068 220 0.00 2019-10-19 16:53:55 2019-10-19 16:54:30 t 1 1 127071 562 0.00 2019-10-19 17:04:19 2019-10-19 17:04:42 t 1 1 127073 562 0.00 2019-10-19 17:15:10 2019-10-19 17:15:27 t 1 1 127075 306 0.00 2019-10-19 17:16:22 2019-10-19 17:23:12 t 1 1 127076 562 0.00 2019-10-19 17:25:55 2019-10-19 17:26:12 t 1 1 127079 562 0.00 2019-10-19 17:43:41 2019-10-19 17:44:02 t 1 1 127080 562 0.00 2019-10-19 17:50:57 2019-10-19 17:51:07 t 1 1 127083 512 0.00 2019-10-19 17:33:34 2019-10-19 17:57:31 t 1 1 127088 562 0.00 2019-10-19 18:02:22 2019-10-19 18:02:30 t 1 1 127089 412 0.00 2019-10-19 15:58:25 2019-10-19 18:06:25 t 1 1 127091 501 0.00 2019-10-19 18:09:39 2019-10-19 18:09:50 t 1 1 127092 514 0.00 2019-10-19 17:50:09 2019-10-19 18:12:37 t 1 1 127095 501 0.00 2019-10-19 18:10:02 2019-10-19 18:22:37 t 1 1 127097 220 0.00 2019-10-19 16:58:35 2019-10-19 18:26:42 t 1 1 127098 220 0.00 2019-10-19 18:26:42 2019-10-19 18:27:17 t 1 1 127099 220 0.00 2019-10-19 18:27:17 2019-10-19 18:28:01 t 1 1 127103 220 0.00 2019-10-19 18:29:17 2019-10-19 18:29:51 t 1 1 127105 566 0.00 2019-10-19 18:28:21 2019-10-19 18:33:22 t 1 1 127109 514 0.00 2019-10-19 18:13:01 2019-10-19 18:42:05 t 1 1 127111 566 0.00 2019-10-19 18:33:22 2019-10-19 18:43:11 t 1 1 127115 526 0.00 2019-10-19 18:45:35 2019-10-19 18:48:01 t 1 1 127118 430 0.00 2019-10-19 18:35:43 2019-10-19 18:49:41 t 1 1 127119 526 0.00 2019-10-19 18:48:00 2019-10-19 18:52:16 t 1 1 127120 562 0.00 2019-10-19 18:52:45 2019-10-19 18:53:06 t 1 1 127122 430 0.00 2019-10-19 18:49:41 2019-10-19 18:54:31 t 1 1 127124 538 0.00 2019-10-19 13:16:55 2019-10-19 18:59:24 t 1 1 127127 501 0.00 2019-10-19 18:56:08 2019-10-19 18:59:52 t 1 1 127128 379 0.00 2019-10-19 18:43:20 2019-10-19 19:01:50 t 1 1 127131 412 0.00 2019-10-19 18:06:25 2019-10-19 19:04:00 t 1 1 127136 501 0.00 2019-10-19 19:09:47 2019-10-19 19:10:42 t 1 1 127137 379 0.00 2019-10-19 19:01:50 2019-10-19 19:12:04 t 1 1 127139 532 0.00 2019-10-19 19:15:19 2019-10-19 19:15:30 t 1 1 127144 306 0.00 2019-10-19 19:14:26 2019-10-19 19:19:53 t 1 1 127148 562 0.00 2019-10-19 19:26:17 2019-10-19 19:26:39 t 1 1 127151 532 0.00 2019-10-19 19:29:59 2019-10-19 19:31:00 t 1 1 127152 501 0.00 2019-10-19 19:31:06 2019-10-19 19:31:40 t 1 1 127155 566 0.00 2019-10-19 19:28:51 2019-10-19 19:35:51 t 1 1 127158 430 0.00 2019-10-19 19:35:00 2019-10-19 19:37:37 t 1 1 127160 220 0.00 2019-10-19 19:34:49 2019-10-19 19:39:18 t 1 1 127164 570 0.00 2019-10-19 19:26:21 2019-10-19 19:41:34 t 1 1 127166 516 0.00 2019-10-19 17:58:14 2019-10-19 19:42:46 t 1 1 127168 532 0.00 2019-10-19 19:47:29 2019-10-19 19:48:08 t 1 1 127172 456 0.00 2019-10-19 19:42:24 2019-10-19 19:50:15 t 1 1 127173 430 0.00 2019-10-19 19:39:43 2019-10-19 19:51:24 t 1 1 127174 532 0.00 2019-10-19 19:53:19 2019-10-19 19:53:25 t 1 1 127179 570 0.00 2019-10-19 19:49:12 2019-10-19 19:57:40 t 1 1 127182 361 0.00 2019-10-19 19:51:20 2019-10-19 20:01:26 t 1 2 127187 361 0.00 2019-10-19 19:57:59 2019-10-19 20:08:04 t 1 2 127191 538 0.00 2019-10-19 20:11:32 2019-10-19 20:11:45 t 1 1 127192 516 0.00 2019-10-19 20:06:12 2019-10-19 20:12:06 t 1 1 127195 562 0.00 2019-10-19 20:16:13 2019-10-19 20:16:39 t 1 1 127198 526 0.00 2019-10-19 20:24:43 2019-10-19 20:27:02 t 1 1 127200 562 0.00 2019-10-19 20:26:57 2019-10-19 20:27:45 t 1 1 127203 379 0.00 2019-10-19 20:27:18 2019-10-19 20:30:33 t 1 1 127207 570 0.00 2019-10-19 20:28:15 2019-10-19 20:36:26 t 1 1 127209 470 0.00 2019-10-19 20:42:41 2019-10-19 20:42:41 f 1 1 127214 220 0.00 2019-10-19 20:41:32 2019-10-19 20:46:51 t 1 2 127218 327 0.00 2019-10-19 20:50:07 2019-10-19 20:51:20 t 1 1 127220 327 0.00 2019-10-19 20:51:30 2019-10-19 20:53:05 t 1 1 126922 512 0.00 2019-10-19 13:46:03 2019-10-19 13:54:57 t 1 1 126924 501 0.00 2019-10-19 13:51:12 2019-10-19 13:56:41 t 1 1 126926 562 0.00 2019-10-19 13:57:30 2019-10-19 13:57:54 t 1 1 126928 522 0.00 2019-10-19 13:58:27 2019-10-19 13:58:36 t 1 1 126930 361 0.00 2019-10-19 12:59:04 2019-10-19 13:59:19 t 1 2 126933 220 0.00 2019-10-19 13:59:11 2019-10-19 14:00:22 t 1 2 126935 522 0.00 2019-10-19 13:58:04 2019-10-19 14:00:42 t 1 1 126936 522 0.00 2019-10-19 14:00:46 2019-10-19 14:01:18 t 1 1 126937 522 0.00 2019-10-19 14:01:27 2019-10-19 14:01:34 t 1 1 126940 522 0.00 2019-10-19 14:02:16 2019-10-19 14:02:28 t 1 1 126941 562 0.00 2019-10-19 14:01:31 2019-10-19 14:02:44 t 1 1 126944 522 0.00 2019-10-19 14:04:02 2019-10-19 14:04:11 t 1 1 126946 522 0.00 2019-10-19 14:04:44 2019-10-19 14:04:56 t 1 1 126952 522 0.00 2019-10-19 14:08:10 2019-10-19 14:08:50 t 1 1 126954 522 0.00 2019-10-19 14:09:41 2019-10-19 14:09:41 f 1 1 126962 485 0.00 2019-10-19 14:14:15 2019-10-19 14:16:17 t 1 1 126967 562 0.00 2019-10-19 14:17:39 2019-10-19 14:22:55 t 1 1 126968 296 0.00 2019-10-19 14:27:10 2019-10-19 14:27:10 f 1 2 126973 564 0.00 2019-10-19 13:46:11 2019-10-19 14:32:40 t 1 1 126974 570 0.00 2019-10-19 14:32:31 2019-10-19 14:33:32 t 1 1 126979 220 0.00 2019-10-19 14:18:12 2019-10-19 14:39:35 t 1 2 126983 562 0.00 2019-10-19 14:45:21 2019-10-19 14:45:47 t 1 1 126985 562 0.00 2019-10-19 14:56:06 2019-10-19 14:56:36 t 1 1 126987 485 0.00 2019-10-19 14:49:04 2019-10-19 15:00:05 t 1 1 126989 562 0.00 2019-10-19 14:59:52 2019-10-19 15:03:58 t 1 1 126995 501 0.00 2019-10-19 15:03:43 2019-10-19 15:12:53 t 1 1 126996 562 0.00 2019-10-19 15:09:29 2019-10-19 15:13:35 t 1 1 126997 485 0.00 2019-10-19 15:10:48 2019-10-19 15:14:31 t 1 1 126999 474 0.00 2019-10-19 15:23:30 2019-10-19 15:23:30 f 1 1 127002 526 0.00 2019-10-19 15:21:59 2019-10-19 15:27:47 t 1 1 127005 516 0.00 2019-10-19 15:22:52 2019-10-19 15:35:49 t 1 1 127007 562 0.00 2019-10-19 15:37:38 2019-10-19 15:38:13 t 1 1 127008 296 0.00 2019-10-19 15:39:49 2019-10-19 15:39:49 f 1 2 127011 562 0.00 2019-10-19 15:42:28 2019-10-19 15:42:34 t 1 1 127013 512 0.00 2019-10-19 15:43:35 2019-10-19 15:46:42 t 1 1 127015 501 0.00 2019-10-19 15:12:53 2019-10-19 15:47:33 t 1 1 127022 562 0.00 2019-10-19 15:56:02 2019-10-19 15:56:11 t 1 1 127025 528 0.00 2019-10-19 15:41:28 2019-10-19 15:57:15 t 1 1 127026 412 0.00 2019-10-19 15:07:32 2019-10-19 15:58:25 t 1 1 127028 562 0.00 2019-10-19 15:58:13 2019-10-19 15:59:37 t 1 1 127030 220 0.00 2019-10-19 15:59:31 2019-10-19 16:00:49 t 1 2 127032 498 0.00 2019-10-19 15:11:08 2019-10-19 16:04:01 t 1 2 127034 306 0.00 2019-10-19 16:00:49 2019-10-19 16:06:02 t 1 1 127042 514 0.00 2019-10-19 16:17:02 2019-10-19 16:26:47 t 1 1 127048 220 0.00 2019-10-19 16:30:34 2019-10-19 16:33:55 t 1 1 127055 220 0.00 2019-10-19 16:44:17 2019-10-19 16:44:43 t 1 2 127058 220 0.00 2019-10-19 16:45:21 2019-10-19 16:45:56 t 1 1 127059 220 0.00 2019-10-19 16:45:56 2019-10-19 16:46:30 t 1 1 127061 220 0.00 2019-10-19 16:44:54 2019-10-19 16:47:17 t 1 2 127062 220 0.00 2019-10-19 16:46:30 2019-10-19 16:49:58 t 1 1 127066 562 0.00 2019-10-19 16:53:35 2019-10-19 16:53:55 t 1 1 127069 514 0.00 2019-10-19 16:26:47 2019-10-19 16:56:08 t 1 1 127074 485 0.00 2019-10-19 17:09:30 2019-10-19 17:16:01 t 1 1 127077 570 0.00 2019-10-19 17:27:48 2019-10-19 17:29:55 t 1 1 127081 562 0.00 2019-10-19 17:51:17 2019-10-19 17:51:26 t 1 1 127082 408 0.00 2019-10-19 17:56:08 2019-10-19 17:57:29 t 1 1 127085 562 0.00 2019-10-19 17:58:05 2019-10-19 17:58:23 t 1 1 127087 566 0.00 2019-10-19 17:30:47 2019-10-19 18:01:01 t 1 1 127104 220 0.00 2019-10-19 18:29:51 2019-10-19 18:32:26 t 1 1 127106 501 0.00 2019-10-19 18:32:51 2019-10-19 18:33:24 t 1 1 127107 562 0.00 2019-10-19 18:34:25 2019-10-19 18:34:46 t 1 1 127108 501 0.00 2019-10-19 18:38:26 2019-10-19 18:38:59 t 1 1 127112 532 0.00 2019-10-19 18:43:29 2019-10-19 18:44:34 t 1 1 127114 532 0.00 2019-10-19 18:45:30 2019-10-19 18:46:28 t 1 1 127117 501 0.00 2019-10-19 18:48:55 2019-10-19 18:49:28 t 1 1 127121 220 0.00 2019-10-19 18:08:29 2019-10-19 18:54:23 t 1 2 127123 566 0.00 2019-10-19 18:43:11 2019-10-19 18:57:12 t 1 1 127126 514 0.00 2019-10-19 18:48:58 2019-10-19 18:59:47 t 1 1 127130 562 0.00 2019-10-19 19:03:30 2019-10-19 19:03:58 t 1 1 127133 430 0.00 2019-10-19 18:54:31 2019-10-19 19:07:13 t 1 1 127134 430 0.00 2019-10-19 19:07:14 2019-10-19 19:08:54 t 1 1 127143 566 0.00 2019-10-19 19:05:55 2019-10-19 19:18:45 t 1 1 127145 514 0.00 2019-10-19 18:59:53 2019-10-19 19:20:23 t 1 1 127146 501 0.00 2019-10-19 19:20:37 2019-10-19 19:21:10 t 1 1 127153 430 0.00 2019-10-19 19:31:22 2019-10-19 19:33:25 t 1 1 127154 532 0.00 2019-10-19 19:32:34 2019-10-19 19:35:12 t 1 1 127157 562 0.00 2019-10-19 19:37:04 2019-10-19 19:37:26 t 1 1 127159 532 0.00 2019-10-19 19:36:39 2019-10-19 19:37:43 t 1 1 127162 430 0.00 2019-10-19 19:37:41 2019-10-19 19:39:39 t 1 1 127163 562 0.00 2019-10-19 19:41:14 2019-10-19 19:41:23 t 1 1 127170 566 0.00 2019-10-19 19:35:51 2019-10-19 19:48:34 t 1 1 127171 570 0.00 2019-10-19 19:41:34 2019-10-19 19:49:12 t 1 1 127177 562 0.00 2019-10-19 19:54:46 2019-10-19 19:55:11 t 1 1 127180 538 0.00 2019-10-19 19:43:30 2019-10-19 19:59:02 t 1 1 127183 566 0.00 2019-10-19 19:48:34 2019-10-19 20:04:31 t 1 1 127185 562 0.00 2019-10-19 20:05:34 2019-10-19 20:05:54 t 1 1 127189 361 0.00 2019-10-19 20:04:08 2019-10-19 20:10:15 t 1 2 127193 566 0.00 2019-10-19 20:04:31 2019-10-19 20:13:49 t 1 1 127194 570 0.00 2019-10-19 19:57:40 2019-10-19 20:15:44 t 1 1 127196 566 0.00 2019-10-19 20:13:49 2019-10-19 20:22:22 t 1 1 127199 379 0.00 2019-10-19 20:09:54 2019-10-19 20:27:19 t 1 1 127201 570 0.00 2019-10-19 20:15:44 2019-10-19 20:28:15 t 1 1 127211 485 0.00 2019-10-19 20:28:36 2019-10-19 20:42:56 t 1 1 127212 570 0.00 2019-10-19 20:36:26 2019-10-19 20:44:29 t 1 1 127223 562 0.00 2019-10-19 20:55:48 2019-10-19 20:56:11 t 1 1 127230 520 0.00 2019-10-19 20:52:56 2019-10-19 21:02:42 t 1 1 127231 514 0.00 2019-10-19 20:47:28 2019-10-19 21:03:03 t 1 1 127236 508 0.00 2019-10-19 21:00:03 2019-10-19 21:07:28 t 1 2 127244 408 0.00 2019-10-19 21:14:01 2019-10-19 21:14:30 t 1 1 127245 520 0.00 2019-10-19 21:02:41 2019-10-19 21:15:09 t 1 1 127246 483 0.00 2019-10-19 21:07:24 2019-10-19 21:17:07 t 1 1 127249 528 0.00 2019-10-19 21:14:12 2019-10-19 21:19:52 t 1 1 127250 483 0.00 2019-10-19 21:17:15 2019-10-19 21:23:13 t 1 1 127251 558 0.00 2019-10-19 21:11:56 2019-10-19 21:26:55 t 1 1 127253 430 0.00 2019-10-19 21:25:34 2019-10-19 21:31:38 t 1 1 127255 361 0.00 2019-10-19 21:34:54 2019-10-19 21:34:54 f 1 2 127259 487 0.00 2019-10-19 18:45:40 2019-10-19 21:35:45 t 1 2 126988 501 0.00 2019-10-19 14:42:24 2019-10-19 15:03:43 t 1 1 126990 526 0.00 2019-10-19 14:43:26 2019-10-19 15:04:06 t 1 1 126991 562 0.00 2019-10-19 15:03:58 2019-10-19 15:05:29 t 1 1 126992 412 0.00 2019-10-19 13:58:49 2019-10-19 15:07:32 t 1 1 126998 526 0.00 2019-10-19 15:04:05 2019-10-19 15:17:09 t 1 1 127000 474 0.00 2019-10-19 15:23:36 2019-10-19 15:23:36 f 1 1 127001 528 0.00 2019-10-19 15:22:42 2019-10-19 15:27:45 t 1 1 127003 562 0.00 2019-10-19 15:14:29 2019-10-19 15:28:17 t 1 1 127004 562 0.00 2019-10-19 15:28:50 2019-10-19 15:29:31 t 1 1 127006 562 0.00 2019-10-19 15:32:06 2019-10-19 15:36:17 t 1 1 127014 562 0.00 2019-10-19 15:42:47 2019-10-19 15:47:20 t 1 1 127016 306 0.00 2019-10-19 15:23:00 2019-10-19 15:50:09 t 1 1 127017 562 0.00 2019-10-19 15:49:52 2019-10-19 15:50:48 t 1 1 127021 514 0.00 2019-10-19 15:51:43 2019-10-19 15:55:49 t 1 1 127024 306 0.00 2019-10-19 15:50:16 2019-10-19 15:57:13 t 1 1 127031 562 0.00 2019-10-19 16:01:12 2019-10-19 16:02:54 t 1 1 127035 514 0.00 2019-10-19 15:56:20 2019-10-19 16:06:37 t 1 1 127036 514 0.00 2019-10-19 16:06:37 2019-10-19 16:07:01 t 1 1 127038 220 0.00 2019-10-19 13:37:36 2019-10-19 16:12:51 t 1 1 127039 562 0.00 2019-10-19 16:04:13 2019-10-19 16:14:51 t 1 1 127040 501 0.00 2019-10-19 15:47:33 2019-10-19 16:15:49 t 1 1 127043 562 0.00 2019-10-19 16:18:00 2019-10-19 16:27:35 t 1 1 127044 501 0.00 2019-10-19 16:15:49 2019-10-19 16:28:23 t 1 1 127045 220 0.00 2019-10-19 16:12:50 2019-10-19 16:29:42 t 1 1 127046 544 0.00 2019-10-19 15:50:09 2019-10-19 16:29:58 t 1 2 127049 562 0.00 2019-10-19 16:27:35 2019-10-19 16:34:03 t 1 1 127051 220 0.00 2019-10-19 16:34:47 2019-10-19 16:38:00 t 1 1 127052 220 0.00 2019-10-19 16:38:00 2019-10-19 16:41:45 t 1 1 127053 562 0.00 2019-10-19 16:41:55 2019-10-19 16:42:05 t 1 1 127054 562 0.00 2019-10-19 16:43:04 2019-10-19 16:44:42 t 1 1 127056 220 0.00 2019-10-19 16:41:45 2019-10-19 16:44:47 t 1 1 127060 306 0.00 2019-10-19 16:44:03 2019-10-19 16:47:16 t 1 1 127063 220 0.00 2019-10-19 16:49:58 2019-10-19 16:50:33 t 1 1 127064 220 0.00 2019-10-19 16:50:33 2019-10-19 16:51:54 t 1 1 127065 220 0.00 2019-10-19 16:51:54 2019-10-19 16:52:25 t 1 1 127070 220 0.00 2019-10-19 16:54:30 2019-10-19 16:57:13 t 1 1 127072 514 0.00 2019-10-19 16:56:07 2019-10-19 17:13:19 t 1 1 127078 562 0.00 2019-10-19 17:36:32 2019-10-19 17:36:55 t 1 1 127084 498 0.00 2019-10-19 17:31:45 2019-10-19 17:58:19 t 1 2 127086 526 0.00 2019-10-19 15:55:58 2019-10-19 17:59:48 t 1 1 127090 501 0.00 2019-10-19 18:08:47 2019-10-19 18:09:32 t 1 1 127093 562 0.00 2019-10-19 18:12:51 2019-10-19 18:13:16 t 1 1 127094 566 0.00 2019-10-19 18:01:01 2019-10-19 18:17:48 t 1 1 127096 562 0.00 2019-10-19 18:23:36 2019-10-19 18:23:59 t 1 1 127100 566 0.00 2019-10-19 18:17:48 2019-10-19 18:28:21 t 1 1 127101 220 0.00 2019-10-19 18:27:59 2019-10-19 18:28:37 t 1 1 127102 220 0.00 2019-10-19 18:28:37 2019-10-19 18:29:20 t 1 1 127110 379 0.00 2019-10-19 18:41:21 2019-10-19 18:42:49 t 1 1 127113 562 0.00 2019-10-19 18:45:05 2019-10-19 18:45:30 t 1 1 127116 514 0.00 2019-10-19 18:42:05 2019-10-19 18:48:17 t 1 1 127125 220 0.00 2019-10-19 18:55:50 2019-10-19 18:59:41 t 1 2 127129 456 0.00 2019-10-19 19:00:52 2019-10-19 19:02:55 t 1 1 127132 566 0.00 2019-10-19 18:57:12 2019-10-19 19:05:55 t 1 1 127135 538 0.00 2019-10-19 19:02:31 2019-10-19 19:09:22 t 1 1 127138 562 0.00 2019-10-19 19:14:17 2019-10-19 19:14:43 t 1 1 127140 562 0.00 2019-10-19 19:15:28 2019-10-19 19:15:36 t 1 1 127141 562 0.00 2019-10-19 19:15:59 2019-10-19 19:16:09 t 1 1 127142 379 0.00 2019-10-19 19:12:04 2019-10-19 19:18:04 t 1 1 127147 306 0.00 2019-10-19 19:19:53 2019-10-19 19:22:04 t 1 1 127149 566 0.00 2019-10-19 19:18:45 2019-10-19 19:28:51 t 1 1 127150 532 0.00 2019-10-19 19:28:10 2019-10-19 19:29:12 t 1 1 127156 532 0.00 2019-10-19 19:36:17 2019-10-19 19:36:23 t 1 1 127161 430 0.00 2019-10-19 19:38:54 2019-10-19 19:39:34 t 1 1 127165 456 0.00 2019-10-19 19:19:58 2019-10-19 19:42:24 t 1 1 127167 498 0.00 2019-10-19 19:13:03 2019-10-19 19:44:27 t 1 2 127169 532 0.00 2019-10-19 19:47:12 2019-10-19 19:48:14 t 1 1 127175 430 0.00 2019-10-19 19:51:29 2019-10-19 19:53:25 t 1 1 127176 430 0.00 2019-10-19 19:53:29 2019-10-19 19:54:30 t 1 1 127178 512 0.00 2019-10-19 19:42:16 2019-10-19 19:56:40 t 1 1 127181 532 0.00 2019-10-19 20:00:24 2019-10-19 20:00:29 t 1 1 127184 532 0.00 2019-10-19 20:03:52 2019-10-19 20:04:54 t 1 1 127186 532 0.00 2019-10-19 20:07:06 2019-10-19 20:07:30 t 1 1 127188 379 0.00 2019-10-19 20:00:20 2019-10-19 20:09:54 t 1 1 127190 306 0.00 2019-10-19 20:09:25 2019-10-19 20:11:09 t 1 1 127197 375 0.00 2019-10-19 20:08:43 2019-10-19 20:27:01 t 1 1 127202 311 0.00 2019-10-19 20:04:13 2019-10-19 20:28:34 t 1 2 127204 351 0.00 2019-10-19 20:24:31 2019-10-19 20:33:09 t 1 2 127205 562 0.00 2019-10-19 20:34:16 2019-10-19 20:34:42 t 1 1 127206 483 0.00 2019-10-19 19:51:57 2019-10-19 20:35:43 t 1 1 127208 220 0.00 2019-10-19 20:38:36 2019-10-19 20:41:00 t 1 2 127210 514 0.00 2019-10-19 19:20:23 2019-10-19 20:42:43 t 1 1 127213 562 0.00 2019-10-19 20:45:04 2019-10-19 20:45:31 t 1 1 127215 566 0.00 2019-10-19 20:22:22 2019-10-19 20:47:47 t 1 1 127216 570 0.00 2019-10-19 20:44:29 2019-10-19 20:47:59 t 1 1 127217 220 0.00 2019-10-19 20:14:53 2019-10-19 20:50:12 t 1 1 127219 520 0.00 2019-10-19 20:47:33 2019-10-19 20:52:57 t 1 1 127221 538 0.00 2019-10-19 20:11:56 2019-10-19 20:53:53 t 1 1 127224 558 0.00 2019-10-19 20:56:09 2019-10-19 20:57:19 t 1 1 127226 327 0.00 2019-10-19 20:54:40 2019-10-19 20:59:35 t 1 1 127228 375 0.00 2019-10-19 20:27:01 2019-10-19 20:59:50 t 1 1 127229 566 0.00 2019-10-19 20:47:51 2019-10-19 21:01:20 t 1 1 127232 375 0.00 2019-10-19 20:59:50 2019-10-19 21:04:25 t 1 1 127233 501 0.00 2019-10-19 19:32:07 2019-10-19 21:04:44 t 1 1 127234 564 0.00 2019-10-19 19:09:22 2019-10-19 21:05:08 t 1 1 127238 220 0.00 2019-10-19 20:04:25 2019-10-19 21:09:31 t 1 2 127239 501 0.00 2019-10-19 21:09:27 2019-10-19 21:10:01 t 1 1 127240 558 0.00 2019-10-19 20:59:44 2019-10-19 21:11:56 t 1 1 127243 325 0.00 2019-10-19 18:33:19 2019-10-19 21:13:24 t 1 2 127252 327 0.00 2019-10-19 21:27:29 2019-10-19 21:31:01 t 1 1 127254 361 0.00 2019-10-19 20:42:04 2019-10-19 21:32:09 t 1 2 127257 558 0.00 2019-10-19 21:26:55 2019-10-19 21:35:15 t 1 1 127258 361 0.00 2019-10-19 21:35:28 2019-10-19 21:35:28 f 1 2 127260 361 0.00 2019-10-19 21:35:51 2019-10-19 21:35:51 f 1 2 127261 361 0.00 2019-10-19 21:36:11 2019-10-19 21:36:11 f 1 2 127262 361 0.00 2019-10-19 21:27:45 2019-10-19 21:37:50 t 1 2 127263 520 0.00 2019-10-19 21:15:13 2019-10-19 21:38:15 t 1 1 127267 520 0.00 2019-10-19 21:39:55 2019-10-19 21:41:49 t 1 1 127222 306 0.00 2019-10-19 20:48:45 2019-10-19 20:53:58 t 1 1 127225 562 0.00 2019-10-19 20:58:33 2019-10-19 20:59:24 t 1 1 127227 558 0.00 2019-10-19 20:57:57 2019-10-19 20:59:44 t 1 1 127235 483 0.00 2019-10-19 20:40:44 2019-10-19 21:07:20 t 1 1 127237 327 0.00 2019-10-19 21:04:43 2019-10-19 21:07:34 t 1 1 127241 566 0.00 2019-10-19 21:01:20 2019-10-19 21:12:55 t 1 1 127242 408 0.00 2019-10-19 21:12:17 2019-10-19 21:13:20 t 1 1 127247 408 0.00 2019-10-19 21:15:46 2019-10-19 21:17:09 t 1 1 127248 327 0.00 2019-10-19 21:17:00 2019-10-19 21:18:04 t 1 1 127256 361 0.00 2019-10-19 21:35:05 2019-10-19 21:35:05 f 1 2 127266 520 0.00 2019-10-19 21:38:15 2019-10-19 21:39:55 t 1 1 127269 361 0.00 2019-10-19 21:42:28 2019-10-19 21:42:28 f 1 2 127271 520 0.00 2019-10-19 21:41:49 2019-10-19 21:43:02 t 1 1 127275 558 0.00 2019-10-19 21:35:15 2019-10-19 21:47:08 t 1 1 127277 520 0.00 2019-10-19 21:46:48 2019-10-19 21:49:21 t 1 1 127280 570 0.00 2019-10-19 21:37:31 2019-10-19 21:51:12 t 1 1 127284 520 0.00 2019-10-19 21:52:31 2019-10-19 21:54:47 t 1 1 127285 220 0.00 2019-10-19 21:40:57 2019-10-19 21:55:20 t 1 2 127290 544 0.00 2019-10-19 21:48:05 2019-10-19 21:58:10 t 1 2 127292 518 0.00 2019-10-19 21:54:08 2019-10-19 22:04:14 t 1 2 127294 570 0.00 2019-10-19 21:51:12 2019-10-19 22:04:44 t 1 1 127296 564 0.00 2019-10-19 22:04:43 2019-10-19 22:06:09 t 1 1 127302 564 0.00 2019-10-19 22:07:28 2019-10-19 22:08:48 t 1 1 127303 412 0.00 2019-10-19 22:08:46 2019-10-19 22:10:07 t 1 1 127306 375 0.00 2019-10-19 21:04:25 2019-10-19 22:10:36 t 1 1 127309 570 0.00 2019-10-19 22:04:44 2019-10-19 22:12:16 t 1 1 127320 528 0.00 2019-10-19 22:11:09 2019-10-19 22:23:28 t 1 1 127323 456 0.00 2019-10-19 22:19:08 2019-10-19 22:25:29 t 1 1 127324 501 0.00 2019-10-19 22:25:30 2019-10-19 22:26:03 t 1 1 127326 501 0.00 2019-10-19 22:26:13 2019-10-19 22:27:44 t 1 1 127330 408 0.00 2019-10-19 22:28:24 2019-10-19 22:29:04 t 1 1 127334 412 0.00 2019-10-19 22:24:48 2019-10-19 22:33:18 t 1 1 127336 562 0.00 2019-10-19 22:22:52 2019-10-19 22:38:55 t 1 1 127337 528 0.00 2019-10-19 22:29:18 2019-10-19 22:39:38 t 1 1 127340 327 0.00 2019-10-19 22:24:05 2019-10-19 22:41:22 t 1 1 127344 512 0.00 2019-10-19 22:50:27 2019-10-19 22:50:31 t 1 1 127346 412 0.00 2019-10-19 22:50:53 2019-10-19 22:53:24 t 1 1 127347 476 0.00 2019-10-19 22:41:23 2019-10-19 22:54:46 t 1 2 127354 483 0.00 2019-10-19 21:33:02 2019-10-19 23:08:24 t 1 1 127355 412 0.00 2019-10-19 23:08:57 2019-10-19 23:11:59 t 1 1 127361 562 0.00 2019-10-19 23:26:43 2019-10-19 23:27:05 t 1 1 127363 562 0.00 2019-10-19 23:37:28 2019-10-19 23:37:55 t 1 1 127364 220 0.00 2019-10-19 22:45:15 2019-10-19 23:39:16 t 1 2 127366 520 0.00 2019-10-19 23:15:21 2019-10-19 23:40:21 t 1 1 127371 501 0.00 2019-10-19 23:32:44 2019-10-19 23:57:34 t 1 1 127372 483 0.00 2019-10-19 23:10:11 2019-10-19 23:59:14 t 1 1 127373 501 0.00 2019-10-19 23:59:39 2019-10-19 23:59:47 t 1 1 127375 451 0.00 2019-10-20 00:01:08 2019-10-20 00:01:48 t 1 1 127376 451 0.00 2019-10-20 00:00:04 2019-10-20 00:02:04 t 1 1 127379 501 0.00 2019-10-20 00:03:20 2019-10-20 00:03:53 t 1 1 127381 538 0.00 2019-10-19 23:57:32 2019-10-20 00:07:29 t 1 1 127382 514 0.00 2019-10-20 00:02:58 2019-10-20 00:10:08 t 1 1 127385 538 0.00 2019-10-20 00:07:28 2019-10-20 00:11:04 t 1 1 127388 220 0.00 2019-10-19 23:27:58 2019-10-20 00:14:21 t 1 1 127390 562 0.00 2019-10-20 00:17:38 2019-10-20 00:18:06 t 1 1 127397 514 0.00 2019-10-20 00:25:55 2019-10-20 00:37:39 t 1 1 127401 503 0.00 2019-10-20 00:29:43 2019-10-20 00:43:32 t 1 1 127403 501 0.00 2019-10-20 00:42:19 2019-10-20 00:46:43 t 1 1 127405 501 0.00 2019-10-20 00:46:42 2019-10-20 00:56:56 t 1 1 127406 562 0.00 2019-10-20 01:00:42 2019-10-20 01:01:02 t 1 1 127407 483 0.00 2019-10-20 00:10:43 2019-10-20 01:07:21 t 1 1 127409 544 0.00 2019-10-20 00:45:09 2019-10-20 01:12:12 t 1 2 127410 501 0.00 2019-10-20 01:00:52 2019-10-20 01:14:01 t 1 1 127411 562 0.00 2019-10-20 01:22:22 2019-10-20 01:22:41 t 1 1 127412 562 0.00 2019-10-20 01:33:09 2019-10-20 01:33:21 t 1 1 127413 562 0.00 2019-10-20 01:43:44 2019-10-20 01:44:06 t 1 1 127421 412 0.00 2019-10-20 02:14:44 2019-10-20 02:15:50 t 1 1 127422 562 0.00 2019-10-20 02:16:04 2019-10-20 02:16:25 t 1 1 127429 562 0.00 2019-10-20 02:55:49 2019-10-20 02:56:14 t 1 1 127432 562 0.00 2019-10-20 03:17:19 2019-10-20 03:17:45 t 1 1 127433 562 0.00 2019-10-20 03:28:10 2019-10-20 03:28:29 t 1 1 127434 562 0.00 2019-10-20 03:38:53 2019-10-20 03:39:14 t 1 1 127436 562 0.00 2019-10-20 03:49:38 2019-10-20 03:49:59 t 1 1 127438 562 0.00 2019-10-20 04:08:11 2019-10-20 04:08:22 t 1 1 127439 562 0.00 2019-10-20 04:18:56 2019-10-20 04:19:08 t 1 1 127441 562 0.00 2019-10-20 04:40:25 2019-10-20 04:40:41 t 1 1 127445 562 0.00 2019-10-20 05:00:12 2019-10-20 05:00:31 t 1 1 127449 562 0.00 2019-10-20 05:10:56 2019-10-20 05:11:16 t 1 1 127450 520 0.00 2019-10-20 05:07:38 2019-10-20 05:12:23 t 1 1 127457 514 0.00 2019-10-20 00:37:39 2019-10-20 05:51:36 t 1 1 127461 520 0.00 2019-10-20 05:31:36 2019-10-20 06:03:51 t 1 1 127462 562 0.00 2019-10-20 06:04:04 2019-10-20 06:04:29 t 1 1 127470 412 0.00 2019-10-20 02:42:53 2019-10-20 06:35:04 t 1 1 127473 562 0.00 2019-10-20 06:47:05 2019-10-20 06:47:30 t 1 1 127475 516 0.00 2019-10-20 05:47:26 2019-10-20 06:48:35 t 1 1 127477 566 0.00 2019-10-20 06:36:53 2019-10-20 06:53:22 t 1 1 127478 520 0.00 2019-10-20 06:23:31 2019-10-20 06:55:13 t 1 1 127479 566 0.00 2019-10-20 06:53:22 2019-10-20 06:57:09 t 1 1 127482 520 0.00 2019-10-20 06:55:13 2019-10-20 07:10:31 t 1 1 127483 520 0.00 2019-10-20 07:10:31 2019-10-20 07:11:49 t 1 1 127485 306 0.00 2019-10-20 07:09:31 2019-10-20 07:16:44 t 1 1 127486 562 0.00 2019-10-20 07:19:32 2019-10-20 07:19:49 t 1 1 127487 516 0.00 2019-10-20 07:17:44 2019-10-20 07:20:06 t 1 1 127489 562 0.00 2019-10-20 07:30:18 2019-10-20 07:30:32 t 1 1 127490 562 0.00 2019-10-20 07:41:04 2019-10-20 07:41:18 t 1 1 127495 379 0.00 2019-10-20 06:58:09 2019-10-20 08:01:28 t 1 1 127504 306 0.00 2019-10-20 08:06:08 2019-10-20 08:09:42 t 1 1 127509 220 0.00 2019-10-20 07:48:11 2019-10-20 08:37:35 t 1 2 127510 306 0.00 2019-10-20 08:29:39 2019-10-20 08:45:34 t 1 1 127512 518 0.00 2019-10-20 08:30:30 2019-10-20 08:50:36 t 1 2 127515 306 0.00 2019-10-20 09:04:12 2019-10-20 09:07:33 t 1 1 127517 416 0.00 2019-10-20 09:07:36 2019-10-20 09:10:26 t 1 1 127521 416 0.00 2019-10-20 09:09:46 2019-10-20 09:16:27 t 1 1 127522 416 0.00 2019-10-20 09:16:33 2019-10-20 09:21:22 t 1 1 127523 528 0.00 2019-10-20 09:00:32 2019-10-20 09:23:44 t 1 1 127524 528 0.00 2019-10-20 09:23:44 2019-10-20 09:26:54 t 1 1 127525 528 0.00 2019-10-20 09:27:09 2019-10-20 09:27:31 t 1 1 127264 566 0.00 2019-10-19 21:12:55 2019-10-19 21:38:40 t 1 1 127265 556 0.00 2019-10-19 20:55:04 2019-10-19 21:39:30 t 1 1 127272 501 0.00 2019-10-19 21:12:53 2019-10-19 21:43:22 t 1 1 127282 327 0.00 2019-10-19 21:40:26 2019-10-19 21:54:02 t 1 1 127287 501 0.00 2019-10-19 21:56:06 2019-10-19 21:56:38 t 1 1 127288 514 0.00 2019-10-19 21:03:02 2019-10-19 21:57:13 t 1 1 127291 562 0.00 2019-10-19 21:06:32 2019-10-19 22:01:05 t 1 1 127299 564 0.00 2019-10-19 22:06:09 2019-10-19 22:07:28 t 1 1 127300 412 0.00 2019-10-19 19:04:00 2019-10-19 22:07:30 t 1 1 127305 516 0.00 2019-10-19 22:01:24 2019-10-19 22:10:31 t 1 1 127308 528 0.00 2019-10-19 21:44:14 2019-10-19 22:11:09 t 1 1 127310 485 0.00 2019-10-19 22:06:53 2019-10-19 22:13:17 t 1 1 127313 501 0.00 2019-10-19 22:17:13 2019-10-19 22:17:42 t 1 1 127316 412 0.00 2019-10-19 22:13:05 2019-10-19 22:19:11 t 1 1 127319 562 0.00 2019-10-19 22:16:52 2019-10-19 22:22:36 t 1 1 127321 474 0.00 2019-10-19 22:23:48 2019-10-19 22:23:48 f 1 1 127328 528 0.00 2019-10-19 22:23:03 2019-10-19 22:28:38 t 1 1 127331 408 0.00 2019-10-19 22:29:39 2019-10-19 22:30:16 t 1 1 127335 311 0.00 2019-10-19 22:31:54 2019-10-19 22:34:17 t 1 2 127339 570 0.00 2019-10-19 22:12:16 2019-10-19 22:41:09 t 1 1 127341 220 0.00 2019-10-19 22:35:29 2019-10-19 22:44:49 t 1 2 127343 512 0.00 2019-10-19 22:41:03 2019-10-19 22:46:57 t 1 1 127345 412 0.00 2019-10-19 22:33:17 2019-10-19 22:50:53 t 1 1 127351 408 0.00 2019-10-19 22:59:35 2019-10-19 23:00:49 t 1 1 127352 412 0.00 2019-10-19 22:55:32 2019-10-19 23:02:20 t 1 1 127353 562 0.00 2019-10-19 23:05:11 2019-10-19 23:05:36 t 1 1 127357 562 0.00 2019-10-19 23:16:07 2019-10-19 23:16:22 t 1 1 127360 375 0.00 2019-10-19 22:20:53 2019-10-19 23:24:44 t 1 1 127369 562 0.00 2019-10-19 23:56:03 2019-10-19 23:56:31 t 1 1 127377 514 0.00 2019-10-19 21:57:13 2019-10-20 00:02:58 t 1 1 127378 372 0.00 2019-10-19 23:48:32 2019-10-20 00:03:25 t 1 2 127383 501 0.00 2019-10-20 00:09:46 2019-10-20 00:10:26 t 1 1 127386 514 0.00 2019-10-20 00:10:08 2019-10-20 00:11:37 t 1 1 127387 556 0.00 2019-10-19 21:39:30 2019-10-20 00:13:20 t 1 1 127392 451 0.00 2019-10-20 00:18:32 2019-10-20 00:22:54 t 1 1 127394 562 0.00 2019-10-20 00:28:25 2019-10-20 00:29:01 t 1 1 127408 562 0.00 2019-10-20 01:11:37 2019-10-20 01:12:06 t 1 1 127414 412 0.00 2019-10-20 01:01:26 2019-10-20 01:47:29 t 1 1 127420 412 0.00 2019-10-20 02:08:49 2019-10-20 02:14:44 t 1 1 127423 538 0.00 2019-10-20 02:09:55 2019-10-20 02:26:29 t 1 1 127424 562 0.00 2019-10-20 02:26:45 2019-10-20 02:27:11 t 1 1 127426 562 0.00 2019-10-20 02:34:21 2019-10-20 02:34:46 t 1 1 127428 562 0.00 2019-10-20 02:45:05 2019-10-20 02:45:36 t 1 1 127437 562 0.00 2019-10-20 04:00:22 2019-10-20 04:00:44 t 1 1 127440 562 0.00 2019-10-20 04:29:37 2019-10-20 04:29:51 t 1 1 127443 520 0.00 2019-10-20 04:48:10 2019-10-20 04:55:41 t 1 1 127444 520 0.00 2019-10-20 04:55:41 2019-10-20 04:57:33 t 1 1 127453 520 0.00 2019-10-20 05:14:23 2019-10-20 05:24:56 t 1 1 127456 562 0.00 2019-10-20 05:42:32 2019-10-20 05:46:25 t 1 1 127459 220 0.00 2019-10-20 05:46:54 2019-10-20 05:55:53 t 1 1 127463 520 0.00 2019-10-20 06:03:51 2019-10-20 06:11:02 t 1 1 127468 520 0.00 2019-10-20 06:14:52 2019-10-20 06:23:32 t 1 1 127469 562 0.00 2019-10-20 06:25:45 2019-10-20 06:25:58 t 1 1 127472 566 0.00 2019-10-20 06:28:58 2019-10-20 06:36:53 t 1 1 127476 220 0.00 2019-10-20 06:48:49 2019-10-20 06:50:19 t 1 1 127488 520 0.00 2019-10-20 07:11:49 2019-10-20 07:29:56 t 1 1 127493 562 0.00 2019-10-20 07:55:43 2019-10-20 07:56:13 t 1 1 127498 379 0.00 2019-10-20 08:03:51 2019-10-20 08:06:09 t 1 1 127500 538 0.00 2019-10-20 08:05:32 2019-10-20 08:07:34 t 1 1 127501 518 0.00 2019-10-20 08:07:45 2019-10-20 08:08:09 t 1 2 127503 562 0.00 2019-10-20 08:04:16 2019-10-20 08:09:37 t 1 1 127506 518 0.00 2019-10-20 08:28:13 2019-10-20 08:28:23 t 1 2 127507 518 0.00 2019-10-20 08:29:15 2019-10-20 08:29:25 t 1 2 127511 570 0.00 2019-10-20 08:36:16 2019-10-20 08:46:46 t 1 1 127514 570 0.00 2019-10-20 08:46:46 2019-10-20 09:05:53 t 1 1 127518 220 0.00 2019-10-20 09:09:11 2019-10-20 09:14:08 t 1 1 127520 570 0.00 2019-10-20 09:06:43 2019-10-20 09:14:44 t 1 1 127529 514 0.00 2019-10-20 09:28:55 2019-10-20 09:39:06 t 1 1 127534 576 0.00 2019-10-20 09:41:38 2019-10-20 09:46:31 t 1 1 127535 220 0.00 2019-10-20 09:44:45 2019-10-20 09:47:49 t 1 1 127539 220 0.00 2019-10-20 09:49:58 2019-10-20 09:51:55 t 1 1 127540 576 0.00 2019-10-20 09:47:50 2019-10-20 09:52:23 t 1 1 127542 220 0.00 2019-10-20 09:51:55 2019-10-20 09:56:01 t 1 1 127543 501 0.00 2019-10-20 09:45:31 2019-10-20 09:57:03 t 1 1 127545 528 0.00 2019-10-20 09:57:58 2019-10-20 09:58:20 t 1 1 127551 408 0.00 2019-10-20 10:00:18 2019-10-20 10:02:04 t 1 1 127553 576 0.00 2019-10-20 09:52:23 2019-10-20 10:02:42 t 1 1 127554 220 0.00 2019-10-20 10:01:58 2019-10-20 10:03:02 t 1 1 127558 220 0.00 2019-10-20 10:03:53 2019-10-20 10:04:28 t 1 1 127567 536 0.00 2019-10-20 09:53:55 2019-10-20 10:07:53 t 1 1 127571 536 0.00 2019-10-20 10:08:32 2019-10-20 10:08:50 t 1 1 127572 536 0.00 2019-10-20 10:08:57 2019-10-20 10:09:05 t 1 1 127573 220 0.00 2019-10-20 10:08:25 2019-10-20 10:10:12 t 1 1 127581 501 0.00 2019-10-20 10:13:04 2019-10-20 10:13:13 t 1 1 127590 528 0.00 2019-10-20 10:15:55 2019-10-20 10:16:07 t 1 1 127591 408 0.00 2019-10-20 10:15:57 2019-10-20 10:16:58 t 1 1 127595 581 0.00 2019-10-20 10:18:11 2019-10-20 10:18:13 t 1 1 127596 570 0.00 2019-10-20 10:10:59 2019-10-20 10:18:47 t 1 1 127600 501 0.00 2019-10-20 10:18:16 2019-10-20 10:20:16 t 1 1 127601 327 0.00 2019-10-20 10:04:58 2019-10-20 10:21:18 t 1 1 127602 528 0.00 2019-10-20 10:21:16 2019-10-20 10:21:27 t 1 1 127605 501 0.00 2019-10-20 10:21:19 2019-10-20 10:22:34 t 1 1 127608 220 0.00 2019-10-20 10:22:11 2019-10-20 10:24:59 t 1 1 127610 501 0.00 2019-10-20 10:24:37 2019-10-20 10:25:10 t 1 1 127617 379 0.00 2019-10-20 08:06:16 2019-10-20 10:26:57 t 1 1 127618 408 0.00 2019-10-20 10:18:54 2019-10-20 10:27:22 t 1 1 127620 220 0.00 2019-10-20 10:27:25 2019-10-20 10:27:59 t 1 1 127622 220 0.00 2019-10-20 10:27:59 2019-10-20 10:28:30 t 1 1 127623 220 0.00 2019-10-20 10:26:19 2019-10-20 10:28:43 t 1 2 127624 220 0.00 2019-10-20 10:28:30 2019-10-20 10:29:02 t 1 1 127628 528 0.00 2019-10-20 10:29:31 2019-10-20 10:30:08 t 1 1 127630 501 0.00 2019-10-20 10:28:40 2019-10-20 10:30:09 t 1 1 127633 408 0.00 2019-10-20 10:30:26 2019-10-20 10:30:49 t 1 1 127634 220 0.00 2019-10-20 10:30:43 2019-10-20 10:31:15 t 1 1 127636 536 0.00 2019-10-20 10:11:06 2019-10-20 10:31:42 t 1 1 127641 220 0.00 2019-10-20 10:31:15 2019-10-20 10:32:26 t 1 1 127646 472 0.00 2019-10-20 10:33:38 2019-10-20 10:33:38 f 1 1 127268 361 0.00 2019-10-19 21:42:17 2019-10-19 21:42:17 f 1 2 127270 361 0.00 2019-10-19 21:32:34 2019-10-19 21:42:39 t 1 2 127273 528 0.00 2019-10-19 21:27:42 2019-10-19 21:44:14 t 1 1 127274 520 0.00 2019-10-19 21:43:05 2019-10-19 21:46:48 t 1 1 127276 566 0.00 2019-10-19 21:38:40 2019-10-19 21:48:59 t 1 1 127278 361 0.00 2019-10-19 21:39:35 2019-10-19 21:49:40 t 1 2 127279 485 0.00 2019-10-19 21:34:26 2019-10-19 21:50:10 t 1 1 127281 520 0.00 2019-10-19 21:49:20 2019-10-19 21:52:31 t 1 1 127283 501 0.00 2019-10-19 21:53:43 2019-10-19 21:54:16 t 1 1 127286 520 0.00 2019-10-19 21:54:47 2019-10-19 21:56:26 t 1 1 127289 520 0.00 2019-10-19 21:56:26 2019-10-19 21:57:25 t 1 1 127293 564 0.00 2019-10-19 21:05:08 2019-10-19 22:04:43 t 1 1 127295 327 0.00 2019-10-19 22:03:26 2019-10-19 22:05:46 t 1 1 127297 562 0.00 2019-10-19 22:01:22 2019-10-19 22:06:44 t 1 1 127298 501 0.00 2019-10-19 22:06:37 2019-10-19 22:07:09 t 1 1 127301 412 0.00 2019-10-19 22:07:30 2019-10-19 22:08:40 t 1 1 127304 564 0.00 2019-10-19 22:08:48 2019-10-19 22:10:12 t 1 1 127307 520 0.00 2019-10-19 21:57:25 2019-10-19 22:11:02 t 1 1 127311 562 0.00 2019-10-19 22:09:40 2019-10-19 22:16:20 t 1 1 127312 520 0.00 2019-10-19 22:11:02 2019-10-19 22:16:56 t 1 1 127314 408 0.00 2019-10-19 22:17:22 2019-10-19 22:18:52 t 1 1 127315 485 0.00 2019-10-19 22:13:16 2019-10-19 22:19:10 t 1 1 127317 375 0.00 2019-10-19 22:10:36 2019-10-19 22:20:53 t 1 1 127318 412 0.00 2019-10-19 22:19:45 2019-10-19 22:22:11 t 1 1 127322 327 0.00 2019-10-19 22:06:30 2019-10-19 22:24:05 t 1 1 127325 408 0.00 2019-10-19 22:26:12 2019-10-19 22:26:36 t 1 1 127327 490 0.00 2019-10-19 22:26:03 2019-10-19 22:28:37 t 1 1 127329 520 0.00 2019-10-19 22:16:56 2019-10-19 22:28:55 t 1 1 127332 520 0.00 2019-10-19 22:28:54 2019-10-19 22:30:46 t 1 1 127333 449 0.00 2019-10-19 22:31:28 2019-10-19 22:33:16 t 1 1 127338 562 0.00 2019-10-19 22:39:11 2019-10-19 22:39:49 t 1 1 127342 562 0.00 2019-10-19 22:40:47 2019-10-19 22:46:20 t 1 1 127348 562 0.00 2019-10-19 22:54:33 2019-10-19 22:54:47 t 1 1 127349 528 0.00 2019-10-19 22:40:23 2019-10-19 22:57:25 t 1 1 127350 408 0.00 2019-10-19 22:30:28 2019-10-19 22:59:35 t 1 1 127356 501 0.00 2019-10-19 22:27:46 2019-10-19 23:12:36 t 1 1 127358 412 0.00 2019-10-19 23:16:15 2019-10-19 23:17:44 t 1 1 127359 220 0.00 2019-10-19 23:09:28 2019-10-19 23:19:44 t 1 1 127362 501 0.00 2019-10-19 23:12:36 2019-10-19 23:32:45 t 1 1 127365 544 0.00 2019-10-19 23:29:27 2019-10-19 23:39:23 t 1 2 127367 220 0.00 2019-10-19 23:39:23 2019-10-19 23:40:45 t 1 2 127368 562 0.00 2019-10-19 23:45:12 2019-10-19 23:45:34 t 1 1 127370 538 0.00 2019-10-19 21:11:23 2019-10-19 23:57:13 t 1 1 127374 520 0.00 2019-10-19 23:40:21 2019-10-20 00:00:39 t 1 1 127380 562 0.00 2019-10-20 00:06:50 2019-10-20 00:07:13 t 1 1 127384 483 0.00 2019-10-19 23:59:19 2019-10-20 00:10:43 t 1 1 127389 514 0.00 2019-10-20 00:11:36 2019-10-20 00:14:33 t 1 1 127391 451 0.00 2019-10-20 00:01:55 2019-10-20 00:18:32 t 1 1 127393 514 0.00 2019-10-20 00:14:33 2019-10-20 00:25:55 t 1 1 127395 476 0.00 2019-10-19 23:44:51 2019-10-20 00:29:53 t 1 2 127396 574 0.00 2019-10-20 00:36:56 2019-10-20 00:37:03 t 1 1 127398 501 0.00 2019-10-20 00:14:01 2019-10-20 00:38:35 t 1 1 127399 562 0.00 2019-10-20 00:39:19 2019-10-20 00:39:33 t 1 1 127400 501 0.00 2019-10-20 00:38:35 2019-10-20 00:42:19 t 1 1 127402 503 0.00 2019-10-20 00:43:32 2019-10-20 00:46:26 t 1 1 127404 562 0.00 2019-10-20 00:50:04 2019-10-20 00:50:18 t 1 1 127415 562 0.00 2019-10-20 01:54:41 2019-10-20 01:54:52 t 1 1 127416 412 0.00 2019-10-20 01:47:29 2019-10-20 01:58:48 t 1 1 127417 562 0.00 2019-10-20 02:05:17 2019-10-20 02:05:38 t 1 1 127418 483 0.00 2019-10-20 02:05:52 2019-10-20 02:06:51 t 1 1 127419 412 0.00 2019-10-20 01:58:48 2019-10-20 02:08:49 t 1 1 127425 412 0.00 2019-10-20 02:20:11 2019-10-20 02:33:36 t 1 1 127427 412 0.00 2019-10-20 02:33:36 2019-10-20 02:42:53 t 1 1 127430 430 0.00 2019-10-20 02:54:17 2019-10-20 02:56:24 t 1 1 127431 562 0.00 2019-10-20 03:06:39 2019-10-20 03:07:05 t 1 1 127435 562 0.00 2019-10-20 03:42:49 2019-10-20 03:43:05 t 1 1 127442 562 0.00 2019-10-20 04:49:22 2019-10-20 04:49:44 t 1 1 127446 520 0.00 2019-10-20 04:57:34 2019-10-20 05:02:21 t 1 1 127447 520 0.00 2019-10-20 05:02:20 2019-10-20 05:05:24 t 1 1 127448 520 0.00 2019-10-20 05:05:24 2019-10-20 05:07:36 t 1 1 127451 520 0.00 2019-10-20 05:12:23 2019-10-20 05:14:23 t 1 1 127452 562 0.00 2019-10-20 05:21:43 2019-10-20 05:22:02 t 1 1 127454 520 0.00 2019-10-20 05:24:55 2019-10-20 05:31:37 t 1 1 127455 562 0.00 2019-10-20 05:32:26 2019-10-20 05:32:49 t 1 1 127458 562 0.00 2019-10-20 05:53:29 2019-10-20 05:53:45 t 1 1 127460 514 0.00 2019-10-20 05:51:35 2019-10-20 05:58:22 t 1 1 127464 564 0.00 2019-10-19 22:11:19 2019-10-20 06:12:08 t 1 1 127465 520 0.00 2019-10-20 06:11:02 2019-10-20 06:14:56 t 1 1 127466 562 0.00 2019-10-20 06:14:54 2019-10-20 06:15:14 t 1 1 127467 556 0.00 2019-10-20 00:13:20 2019-10-20 06:16:28 t 1 1 127471 562 0.00 2019-10-20 06:36:29 2019-10-20 06:36:43 t 1 1 127474 544 0.00 2019-10-20 06:14:11 2019-10-20 06:47:36 t 1 2 127480 562 0.00 2019-10-20 06:58:00 2019-10-20 06:58:14 t 1 1 127481 562 0.00 2019-10-20 07:08:46 2019-10-20 07:08:59 t 1 1 127484 375 0.00 2019-10-19 23:24:44 2019-10-20 07:16:20 t 1 1 127491 220 0.00 2019-10-20 07:42:43 2019-10-20 07:45:05 t 1 2 127492 562 0.00 2019-10-20 07:51:42 2019-10-20 07:52:02 t 1 1 127494 562 0.00 2019-10-20 07:58:53 2019-10-20 07:59:03 t 1 1 127496 379 0.00 2019-10-20 08:01:28 2019-10-20 08:03:51 t 1 1 127497 538 0.00 2019-10-20 08:05:15 2019-10-20 08:05:27 t 1 1 127499 472 0.00 2019-10-20 08:07:03 2019-10-20 08:07:03 f 1 1 127502 220 0.00 2019-10-20 08:06:50 2019-10-20 08:09:01 t 1 1 127505 456 0.00 2019-10-20 07:50:47 2019-10-20 08:11:17 t 1 1 127508 375 0.00 2019-10-20 07:16:20 2019-10-20 08:29:40 t 1 1 127513 416 0.00 2019-10-20 08:24:55 2019-10-20 08:52:10 t 1 1 127516 416 0.00 2019-10-20 08:51:14 2019-10-20 09:07:33 t 1 1 127519 220 0.00 2019-10-20 08:34:54 2019-10-20 09:14:40 t 1 1 127526 568 0.00 2019-10-20 09:20:48 2019-10-20 09:27:57 t 1 1 127536 220 0.00 2019-10-20 09:47:49 2019-10-20 09:48:55 t 1 1 127537 220 0.00 2019-10-20 09:48:55 2019-10-20 09:49:59 t 1 1 127544 220 0.00 2019-10-20 09:56:01 2019-10-20 09:57:41 t 1 1 127547 501 0.00 2019-10-20 09:59:06 2019-10-20 10:00:55 t 1 1 127548 501 0.00 2019-10-20 10:01:00 2019-10-20 10:01:08 t 1 1 127549 220 0.00 2019-10-20 09:36:26 2019-10-20 10:01:50 t 1 2 127550 220 0.00 2019-10-20 09:57:40 2019-10-20 10:01:58 t 1 1 127552 501 0.00 2019-10-20 10:02:08 2019-10-20 10:02:16 t 1 1 127555 501 0.00 2019-10-20 10:03:09 2019-10-20 10:03:25 t 1 1 127527 514 0.00 2019-10-20 05:58:22 2019-10-20 09:28:55 t 1 1 127528 528 0.00 2019-10-20 09:37:18 2019-10-20 09:37:46 t 1 1 127530 576 0.00 2019-10-20 09:39:39 2019-10-20 09:41:38 t 1 1 127531 422 0.00 2019-10-20 09:41:29 2019-10-20 09:42:03 t 1 1 127532 528 0.00 2019-10-20 09:43:04 2019-10-20 09:43:41 t 1 1 127533 220 0.00 2019-10-20 09:14:40 2019-10-20 09:44:46 t 1 1 127538 487 0.00 2019-10-20 08:16:17 2019-10-20 09:51:22 t 1 2 127541 528 0.00 2019-10-20 09:48:21 2019-10-20 09:52:54 t 1 1 127546 501 0.00 2019-10-20 09:58:10 2019-10-20 09:58:43 t 1 1 127556 220 0.00 2019-10-20 10:03:02 2019-10-20 10:03:54 t 1 1 127557 501 0.00 2019-10-20 10:04:15 2019-10-20 10:04:16 t 1 1 127559 576 0.00 2019-10-20 10:03:01 2019-10-20 10:04:55 t 1 1 127560 327 0.00 2019-10-20 09:49:17 2019-10-20 10:04:58 t 1 1 127561 501 0.00 2019-10-20 10:05:10 2019-10-20 10:05:17 t 1 1 127563 220 0.00 2019-10-20 10:04:28 2019-10-20 10:05:55 t 1 1 127564 220 0.00 2019-10-20 10:02:44 2019-10-20 10:06:16 t 1 1 127569 528 0.00 2019-10-20 10:08:14 2019-10-20 10:08:36 t 1 1 127576 220 0.00 2019-10-20 10:10:11 2019-10-20 10:11:26 t 1 1 127580 408 0.00 2019-10-20 10:12:28 2019-10-20 10:13:00 t 1 1 127582 578 0.00 2019-10-20 10:01:21 2019-10-20 10:13:40 t 1 1 127585 501 0.00 2019-10-20 10:14:12 2019-10-20 10:14:21 t 1 1 127587 220 0.00 2019-10-20 10:14:14 2019-10-20 10:15:07 t 1 1 127589 220 0.00 2019-10-20 10:15:07 2019-10-20 10:15:44 t 1 1 127593 501 0.00 2019-10-20 10:16:05 2019-10-20 10:17:12 t 1 1 127594 581 0.00 2019-10-20 10:17:11 2019-10-20 10:18:06 t 1 1 127597 408 0.00 2019-10-20 10:18:02 2019-10-20 10:18:48 t 1 1 127598 512 0.00 2019-10-20 08:18:41 2019-10-20 10:19:44 t 1 1 127612 501 0.00 2019-10-20 10:25:38 2019-10-20 10:25:40 t 1 1 127614 501 0.00 2019-10-20 10:25:47 2019-10-20 10:25:48 t 1 1 127616 220 0.00 2019-10-20 10:25:37 2019-10-20 10:26:55 t 1 1 127621 501 0.00 2019-10-20 10:27:45 2019-10-20 10:27:59 t 1 1 127626 220 0.00 2019-10-20 10:29:02 2019-10-20 10:29:36 t 1 1 127635 501 0.00 2019-10-20 10:30:42 2019-10-20 10:31:15 t 1 1 127638 536 0.00 2019-10-20 10:31:48 2019-10-20 10:31:59 t 1 1 127640 472 0.00 2019-10-20 10:32:22 2019-10-20 10:32:22 f 1 1 127645 472 0.00 2019-10-20 10:33:31 2019-10-20 10:33:31 f 1 1 127648 516 0.00 2019-10-20 10:28:39 2019-10-20 10:34:07 t 1 1 127650 536 0.00 2019-10-20 10:32:37 2019-10-20 10:34:20 t 1 1 127652 536 0.00 2019-10-20 10:34:34 2019-10-20 10:34:47 t 1 1 127657 536 0.00 2019-10-20 10:34:56 2019-10-20 10:36:38 t 1 1 127660 501 0.00 2019-10-20 10:36:44 2019-10-20 10:36:52 t 1 1 127669 408 0.00 2019-10-20 10:39:43 2019-10-20 10:39:55 t 1 1 127670 501 0.00 2019-10-20 10:39:45 2019-10-20 10:40:19 t 1 1 127674 327 0.00 2019-10-20 10:21:18 2019-10-20 10:41:10 t 1 1 127680 220 0.00 2019-10-20 10:43:05 2019-10-20 10:43:42 t 1 1 127681 472 0.00 2019-10-20 10:43:54 2019-10-20 10:43:54 f 1 1 127682 220 0.00 2019-10-20 10:43:42 2019-10-20 10:44:39 t 1 1 127683 536 0.00 2019-10-20 10:43:14 2019-10-20 10:45:02 t 1 1 127686 220 0.00 2019-10-20 10:45:10 2019-10-20 10:45:43 t 1 1 127687 536 0.00 2019-10-20 10:46:15 2019-10-20 10:46:35 t 1 1 127688 220 0.00 2019-10-20 10:45:43 2019-10-20 10:47:04 t 1 1 127690 220 0.00 2019-10-20 10:47:04 2019-10-20 10:47:36 t 1 1 127691 536 0.00 2019-10-20 10:47:59 2019-10-20 10:48:02 t 1 1 127693 501 0.00 2019-10-20 10:48:34 2019-10-20 10:48:46 t 1 1 127695 536 0.00 2019-10-20 10:49:30 2019-10-20 10:49:43 t 1 1 127697 536 0.00 2019-10-20 10:50:19 2019-10-20 10:50:27 t 1 1 127700 536 0.00 2019-10-20 10:50:48 2019-10-20 10:51:01 t 1 1 127712 536 0.00 2019-10-20 10:55:20 2019-10-20 10:55:49 t 1 1 127714 536 0.00 2019-10-20 10:56:25 2019-10-20 10:56:37 t 1 1 127718 501 0.00 2019-10-20 10:57:28 2019-10-20 10:58:01 t 1 1 127720 536 0.00 2019-10-20 10:58:00 2019-10-20 10:58:17 t 1 1 127725 514 0.00 2019-10-20 10:50:42 2019-10-20 10:59:18 t 1 1 127731 220 0.00 2019-10-20 10:58:40 2019-10-20 11:01:09 t 1 1 127734 536 0.00 2019-10-20 11:01:45 2019-10-20 11:02:03 t 1 1 127735 408 0.00 2019-10-20 11:02:29 2019-10-20 11:02:46 t 1 1 127739 220 0.00 2019-10-20 11:01:09 2019-10-20 11:03:42 t 1 1 127741 536 0.00 2019-10-20 11:03:50 2019-10-20 11:04:07 t 1 1 127745 408 0.00 2019-10-20 11:04:46 2019-10-20 11:05:10 t 1 1 127749 501 0.00 2019-10-20 11:06:30 2019-10-20 11:06:37 t 1 1 127756 408 0.00 2019-10-20 11:08:38 2019-10-20 11:08:50 t 1 1 127762 536 0.00 2019-10-20 11:08:45 2019-10-20 11:10:08 t 1 1 127766 536 0.00 2019-10-20 11:10:49 2019-10-20 11:11:12 t 1 1 127770 514 0.00 2019-10-20 11:06:45 2019-10-20 11:12:51 t 1 1 127771 220 0.00 2019-10-20 11:10:02 2019-10-20 11:12:56 t 1 1 127774 568 0.00 2019-10-20 10:39:27 2019-10-20 11:13:21 t 1 1 127776 220 0.00 2019-10-20 11:12:56 2019-10-20 11:15:01 t 1 1 127779 501 0.00 2019-10-20 11:15:39 2019-10-20 11:15:40 t 1 1 127785 501 0.00 2019-10-20 11:18:05 2019-10-20 11:18:39 t 1 1 127791 220 0.00 2019-10-20 11:22:11 2019-10-20 11:22:43 t 1 1 127795 536 0.00 2019-10-20 11:24:12 2019-10-20 11:24:23 t 1 1 127797 220 0.00 2019-10-20 11:22:43 2019-10-20 11:25:26 t 1 1 127807 558 0.00 2019-10-20 11:18:23 2019-10-20 11:33:11 t 1 1 127808 408 0.00 2019-10-20 11:33:18 2019-10-20 11:33:30 t 1 1 127809 408 0.00 2019-10-20 11:33:45 2019-10-20 11:34:08 t 1 1 127814 220 0.00 2019-10-20 11:34:39 2019-10-20 11:35:48 t 1 1 127817 408 0.00 2019-10-20 11:36:20 2019-10-20 11:37:20 t 1 1 127821 501 0.00 2019-10-20 11:41:31 2019-10-20 11:41:44 t 1 1 127822 220 0.00 2019-10-20 11:39:40 2019-10-20 11:42:09 t 1 1 127824 516 0.00 2019-10-20 11:37:13 2019-10-20 11:43:45 t 1 1 127825 220 0.00 2019-10-20 11:42:08 2019-10-20 11:43:56 t 1 1 127826 558 0.00 2019-10-20 11:33:11 2019-10-20 11:44:24 t 1 1 127829 220 0.00 2019-10-20 11:43:56 2019-10-20 11:46:11 t 1 1 127831 408 0.00 2019-10-20 11:47:40 2019-10-20 11:48:02 t 1 1 127832 220 0.00 2019-10-20 11:46:11 2019-10-20 11:48:10 t 1 1 127834 564 0.00 2019-10-20 11:08:27 2019-10-20 11:49:02 t 1 1 127836 327 0.00 2019-10-20 11:34:38 2019-10-20 11:49:38 t 1 1 127838 220 0.00 2019-10-20 11:49:41 2019-10-20 11:50:12 t 1 1 127844 220 0.00 2019-10-20 11:52:11 2019-10-20 11:52:43 t 1 1 127845 408 0.00 2019-10-20 11:53:23 2019-10-20 11:53:44 t 1 1 127847 220 0.00 2019-10-20 11:52:43 2019-10-20 11:54:11 t 1 1 127851 408 0.00 2019-10-20 11:55:57 2019-10-20 11:56:29 t 1 1 127854 408 0.00 2019-10-20 11:58:22 2019-10-20 11:58:29 t 1 1 127855 564 0.00 2019-10-20 11:56:46 2019-10-20 12:00:33 t 1 1 127859 520 0.00 2019-10-20 11:59:00 2019-10-20 12:03:41 t 1 1 127860 408 0.00 2019-10-20 12:04:05 2019-10-20 12:04:31 t 1 1 127861 408 0.00 2019-10-20 12:04:38 2019-10-20 12:04:40 t 1 1 127862 501 0.00 2019-10-20 11:43:14 2019-10-20 12:05:20 t 1 1 127562 408 0.00 2019-10-20 10:02:56 2019-10-20 10:05:54 t 1 1 127565 501 0.00 2019-10-20 10:06:10 2019-10-20 10:06:18 t 1 1 127566 501 0.00 2019-10-20 10:07:10 2019-10-20 10:07:44 t 1 1 127568 220 0.00 2019-10-20 10:05:55 2019-10-20 10:08:26 t 1 1 127570 501 0.00 2019-10-20 10:08:11 2019-10-20 10:08:43 t 1 1 127574 570 0.00 2019-10-20 09:21:12 2019-10-20 10:10:59 t 1 1 127575 536 0.00 2019-10-20 10:09:53 2019-10-20 10:11:06 t 1 1 127577 514 0.00 2019-10-20 09:39:06 2019-10-20 10:11:34 t 1 1 127578 501 0.00 2019-10-20 10:09:11 2019-10-20 10:12:01 t 1 1 127579 220 0.00 2019-10-20 10:11:26 2019-10-20 10:12:47 t 1 1 127583 501 0.00 2019-10-20 10:14:04 2019-10-20 10:14:06 t 1 1 127584 220 0.00 2019-10-20 10:12:46 2019-10-20 10:14:15 t 1 1 127586 408 0.00 2019-10-20 10:14:19 2019-10-20 10:14:57 t 1 1 127588 501 0.00 2019-10-20 10:15:05 2019-10-20 10:15:37 t 1 1 127592 408 0.00 2019-10-20 10:16:48 2019-10-20 10:17:01 t 1 1 127599 528 0.00 2019-10-20 10:19:58 2019-10-20 10:20:12 t 1 1 127603 220 0.00 2019-10-20 10:15:43 2019-10-20 10:21:40 t 1 1 127604 220 0.00 2019-10-20 10:21:40 2019-10-20 10:22:11 t 1 1 127606 514 0.00 2019-10-20 10:11:34 2019-10-20 10:23:26 t 1 1 127607 501 0.00 2019-10-20 10:23:37 2019-10-20 10:23:44 t 1 1 127609 472 0.00 2019-10-20 10:25:01 2019-10-20 10:25:01 f 1 1 127611 220 0.00 2019-10-20 10:24:58 2019-10-20 10:25:38 t 1 1 127613 528 0.00 2019-10-20 10:24:19 2019-10-20 10:25:46 t 1 1 127615 501 0.00 2019-10-20 10:26:39 2019-10-20 10:26:47 t 1 1 127619 220 0.00 2019-10-20 10:26:55 2019-10-20 10:27:25 t 1 1 127625 516 0.00 2019-10-20 10:18:14 2019-10-20 10:29:33 t 1 1 127627 581 0.00 2019-10-20 10:27:20 2019-10-20 10:29:46 t 1 1 127629 220 0.00 2019-10-20 10:29:35 2019-10-20 10:30:09 t 1 1 127631 568 0.00 2019-10-20 10:17:00 2019-10-20 10:30:37 t 1 1 127632 220 0.00 2019-10-20 10:30:08 2019-10-20 10:30:43 t 1 1 127637 501 0.00 2019-10-20 10:31:42 2019-10-20 10:31:50 t 1 1 127639 581 0.00 2019-10-20 10:29:46 2019-10-20 10:32:02 t 1 1 127642 472 0.00 2019-10-20 10:32:29 2019-10-20 10:32:29 f 1 1 127643 501 0.00 2019-10-20 10:32:42 2019-10-20 10:32:51 t 1 1 127644 408 0.00 2019-10-20 10:33:17 2019-10-20 10:33:29 t 1 1 127647 501 0.00 2019-10-20 10:33:45 2019-10-20 10:33:53 t 1 1 127653 501 0.00 2019-10-20 10:34:43 2019-10-20 10:34:51 t 1 1 127655 408 0.00 2019-10-20 10:35:13 2019-10-20 10:35:29 t 1 1 127656 501 0.00 2019-10-20 10:35:43 2019-10-20 10:36:17 t 1 1 127658 536 0.00 2019-10-20 10:36:44 2019-10-20 10:36:51 t 1 1 127662 220 0.00 2019-10-20 10:36:55 2019-10-20 10:37:30 t 1 1 127664 501 0.00 2019-10-20 10:37:44 2019-10-20 10:37:52 t 1 1 127665 528 0.00 2019-10-20 10:36:24 2019-10-20 10:38:31 t 1 1 127672 501 0.00 2019-10-20 10:40:45 2019-10-20 10:40:53 t 1 1 127677 220 0.00 2019-10-20 10:37:30 2019-10-20 10:42:25 t 1 1 127685 536 0.00 2019-10-20 10:45:22 2019-10-20 10:45:39 t 1 1 127689 501 0.00 2019-10-20 10:43:48 2019-10-20 10:47:31 t 1 1 127696 220 0.00 2019-10-20 10:47:35 2019-10-20 10:50:03 t 1 1 127698 220 0.00 2019-10-20 10:50:03 2019-10-20 10:50:40 t 1 1 127702 536 0.00 2019-10-20 10:51:46 2019-10-20 10:51:53 t 1 1 127705 408 0.00 2019-10-20 10:43:15 2019-10-20 10:52:39 t 1 1 127707 220 0.00 2019-10-20 10:52:13 2019-10-20 10:54:15 t 1 1 127713 536 0.00 2019-10-20 10:56:08 2019-10-20 10:56:09 t 1 1 127715 501 0.00 2019-10-20 10:56:03 2019-10-20 10:56:57 t 1 1 127717 536 0.00 2019-10-20 10:56:59 2019-10-20 10:57:22 t 1 1 127719 327 0.00 2019-10-20 10:41:10 2019-10-20 10:58:13 t 1 1 127722 220 0.00 2019-10-20 10:54:47 2019-10-20 10:58:40 t 1 1 127727 536 0.00 2019-10-20 10:59:54 2019-10-20 11:00:01 t 1 1 127728 501 0.00 2019-10-20 11:00:04 2019-10-20 11:00:38 t 1 1 127730 408 0.00 2019-10-20 11:00:37 2019-10-20 11:01:09 t 1 1 127732 536 0.00 2019-10-20 11:00:10 2019-10-20 11:01:13 t 1 1 127733 408 0.00 2019-10-20 11:01:34 2019-10-20 11:01:48 t 1 1 127738 536 0.00 2019-10-20 11:02:59 2019-10-20 11:03:39 t 1 1 127740 536 0.00 2019-10-20 11:03:39 2019-10-20 11:03:43 t 1 1 127743 536 0.00 2019-10-20 11:04:31 2019-10-20 11:04:33 t 1 1 127750 514 0.00 2019-10-20 10:59:18 2019-10-20 11:06:45 t 1 1 127752 501 0.00 2019-10-20 11:07:31 2019-10-20 11:07:39 t 1 1 127753 564 0.00 2019-10-20 10:49:25 2019-10-20 11:08:27 t 1 1 127754 501 0.00 2019-10-20 11:08:31 2019-10-20 11:08:33 t 1 1 127757 536 0.00 2019-10-20 11:08:10 2019-10-20 11:09:46 t 1 1 127760 220 0.00 2019-10-20 11:07:09 2019-10-20 11:10:03 t 1 1 127763 536 0.00 2019-10-20 11:10:19 2019-10-20 11:10:40 t 1 1 127768 501 0.00 2019-10-20 11:11:33 2019-10-20 11:11:40 t 1 1 127769 501 0.00 2019-10-20 11:12:33 2019-10-20 11:12:34 t 1 1 127773 570 0.00 2019-10-20 11:11:39 2019-10-20 11:13:15 t 1 1 127777 501 0.00 2019-10-20 11:14:35 2019-10-20 11:15:08 t 1 1 127778 501 0.00 2019-10-20 11:15:15 2019-10-20 11:15:31 t 1 1 127781 536 0.00 2019-10-20 11:13:46 2019-10-20 11:16:07 t 1 1 127783 220 0.00 2019-10-20 11:15:42 2019-10-20 11:17:08 t 1 1 127787 220 0.00 2019-10-20 11:17:07 2019-10-20 11:19:16 t 1 1 127789 536 0.00 2019-10-20 11:20:18 2019-10-20 11:20:31 t 1 1 127790 220 0.00 2019-10-20 11:20:13 2019-10-20 11:22:11 t 1 1 127792 536 0.00 2019-10-20 11:21:44 2019-10-20 11:22:46 t 1 1 127793 536 0.00 2019-10-20 11:22:51 2019-10-20 11:22:58 t 1 1 127799 556 0.00 2019-10-20 06:16:28 2019-10-20 11:26:17 t 1 1 127805 220 0.00 2019-10-20 11:31:07 2019-10-20 11:31:44 t 1 1 127806 408 0.00 2019-10-20 11:31:45 2019-10-20 11:32:04 t 1 1 127810 327 0.00 2019-10-20 11:16:26 2019-10-20 11:34:38 t 1 1 127811 220 0.00 2019-10-20 11:31:43 2019-10-20 11:34:39 t 1 1 127813 408 0.00 2019-10-20 11:35:10 2019-10-20 11:35:33 t 1 1 127815 408 0.00 2019-10-20 11:36:01 2019-10-20 11:36:21 t 1 1 127818 501 0.00 2019-10-20 11:35:15 2019-10-20 11:37:43 t 1 1 127820 501 0.00 2019-10-20 11:40:51 2019-10-20 11:41:22 t 1 1 127827 512 0.00 2019-10-20 10:36:59 2019-10-20 11:44:39 t 1 1 127833 408 0.00 2019-10-20 11:48:07 2019-10-20 11:48:21 t 1 1 127840 220 0.00 2019-10-20 11:50:11 2019-10-20 11:50:47 t 1 1 127841 220 0.00 2019-10-20 11:50:46 2019-10-20 11:51:19 t 1 1 127843 408 0.00 2019-10-20 11:52:13 2019-10-20 11:52:22 t 1 1 127846 379 0.00 2019-10-20 10:26:57 2019-10-20 11:53:45 t 1 1 127848 408 0.00 2019-10-20 11:54:06 2019-10-20 11:54:21 t 1 1 127852 408 0.00 2019-10-20 11:57:14 2019-10-20 11:57:27 t 1 1 127853 220 0.00 2019-10-20 11:56:10 2019-10-20 11:58:11 t 1 1 127869 512 0.00 2019-10-20 12:06:12 2019-10-20 12:07:21 t 1 1 127871 501 0.00 2019-10-20 12:07:22 2019-10-20 12:07:56 t 1 1 127874 220 0.00 2019-10-20 12:00:55 2019-10-20 12:08:47 t 1 1 127875 570 0.00 2019-10-20 11:13:18 2019-10-20 12:09:18 t 1 1 127878 536 0.00 2019-10-20 12:09:56 2019-10-20 12:10:07 t 1 1 127649 220 0.00 2019-10-20 10:32:26 2019-10-20 10:34:19 t 1 1 127651 220 0.00 2019-10-20 10:34:19 2019-10-20 10:34:45 t 1 1 127654 408 0.00 2019-10-20 10:34:28 2019-10-20 10:35:08 t 1 1 127659 408 0.00 2019-10-20 10:36:39 2019-10-20 10:36:51 t 1 1 127661 220 0.00 2019-10-20 10:34:45 2019-10-20 10:36:56 t 1 1 127663 408 0.00 2019-10-20 10:37:16 2019-10-20 10:37:33 t 1 1 127666 501 0.00 2019-10-20 10:37:58 2019-10-20 10:38:42 t 1 1 127667 536 0.00 2019-10-20 10:39:09 2019-10-20 10:39:16 t 1 1 127668 408 0.00 2019-10-20 10:39:24 2019-10-20 10:39:36 t 1 1 127671 408 0.00 2019-10-20 10:40:37 2019-10-20 10:40:39 t 1 1 127673 536 0.00 2019-10-20 10:39:38 2019-10-20 10:41:04 t 1 1 127675 408 0.00 2019-10-20 10:40:56 2019-10-20 10:41:35 t 1 1 127676 536 0.00 2019-10-20 10:41:03 2019-10-20 10:42:02 t 1 1 127678 501 0.00 2019-10-20 10:41:45 2019-10-20 10:42:46 t 1 1 127679 220 0.00 2019-10-20 10:42:25 2019-10-20 10:43:06 t 1 1 127684 220 0.00 2019-10-20 10:44:39 2019-10-20 10:45:10 t 1 1 127692 220 0.00 2019-10-20 08:39:13 2019-10-20 10:48:36 t 1 2 127694 501 0.00 2019-10-20 10:49:34 2019-10-20 10:49:42 t 1 1 127699 514 0.00 2019-10-20 10:23:26 2019-10-20 10:50:42 t 1 1 127701 536 0.00 2019-10-20 10:51:20 2019-10-20 10:51:32 t 1 1 127703 501 0.00 2019-10-20 10:50:35 2019-10-20 10:51:53 t 1 1 127704 220 0.00 2019-10-20 10:50:40 2019-10-20 10:52:13 t 1 1 127706 501 0.00 2019-10-20 10:52:56 2019-10-20 10:53:59 t 1 1 127708 536 0.00 2019-10-20 10:52:15 2019-10-20 10:54:28 t 1 1 127709 220 0.00 2019-10-20 10:54:15 2019-10-20 10:54:48 t 1 1 127710 408 0.00 2019-10-20 10:54:39 2019-10-20 10:55:08 t 1 1 127711 408 0.00 2019-10-20 10:55:22 2019-10-20 10:55:38 t 1 1 127716 501 0.00 2019-10-20 10:57:04 2019-10-20 10:57:13 t 1 1 127721 570 0.00 2019-10-20 10:57:19 2019-10-20 10:58:40 t 1 1 127723 536 0.00 2019-10-20 10:58:25 2019-10-20 10:58:53 t 1 1 127724 501 0.00 2019-10-20 10:59:04 2019-10-20 10:59:12 t 1 1 127726 536 0.00 2019-10-20 10:57:48 2019-10-20 10:59:46 t 1 1 127729 536 0.00 2019-10-20 11:00:36 2019-10-20 11:00:50 t 1 1 127736 536 0.00 2019-10-20 11:02:47 2019-10-20 11:02:54 t 1 1 127737 501 0.00 2019-10-20 11:02:06 2019-10-20 11:03:27 t 1 1 127742 536 0.00 2019-10-20 11:04:09 2019-10-20 11:04:29 t 1 1 127744 501 0.00 2019-10-20 11:03:56 2019-10-20 11:04:36 t 1 1 127746 501 0.00 2019-10-20 11:05:30 2019-10-20 11:05:37 t 1 1 127747 536 0.00 2019-10-20 11:05:47 2019-10-20 11:06:04 t 1 1 127748 220 0.00 2019-10-20 11:03:42 2019-10-20 11:06:35 t 1 1 127751 220 0.00 2019-10-20 11:06:34 2019-10-20 11:07:09 t 1 1 127755 501 0.00 2019-10-20 11:08:39 2019-10-20 11:08:47 t 1 1 127758 408 0.00 2019-10-20 11:09:26 2019-10-20 11:09:54 t 1 1 127759 501 0.00 2019-10-20 11:09:32 2019-10-20 11:10:00 t 1 1 127761 544 0.00 2019-10-20 11:03:57 2019-10-20 11:10:06 t 1 2 127764 544 0.00 2019-10-20 11:00:34 2019-10-20 11:10:40 t 1 2 127765 501 0.00 2019-10-20 11:10:31 2019-10-20 11:11:05 t 1 1 127767 570 0.00 2019-10-20 10:59:48 2019-10-20 11:11:35 t 1 1 127772 536 0.00 2019-10-20 11:12:34 2019-10-20 11:13:01 t 1 1 127775 536 0.00 2019-10-20 11:13:10 2019-10-20 11:13:47 t 1 1 127780 220 0.00 2019-10-20 11:15:01 2019-10-20 11:15:42 t 1 1 127782 327 0.00 2019-10-20 10:58:13 2019-10-20 11:16:26 t 1 1 127784 544 0.00 2019-10-20 11:10:20 2019-10-20 11:17:10 t 1 1 127786 536 0.00 2019-10-20 11:17:07 2019-10-20 11:19:12 t 1 1 127788 220 0.00 2019-10-20 11:19:16 2019-10-20 11:20:14 t 1 1 127794 514 0.00 2019-10-20 11:12:51 2019-10-20 11:23:28 t 1 1 127796 536 0.00 2019-10-20 11:24:28 2019-10-20 11:24:51 t 1 1 127798 536 0.00 2019-10-20 11:25:32 2019-10-20 11:25:34 t 1 1 127800 536 0.00 2019-10-20 11:26:49 2019-10-20 11:26:57 t 1 1 127801 220 0.00 2019-10-20 11:25:25 2019-10-20 11:28:20 t 1 1 127802 538 0.00 2019-10-20 09:56:26 2019-10-20 11:29:26 t 1 1 127803 408 0.00 2019-10-20 11:14:54 2019-10-20 11:30:11 t 1 1 127804 220 0.00 2019-10-20 11:28:20 2019-10-20 11:31:07 t 1 1 127812 501 0.00 2019-10-20 11:20:38 2019-10-20 11:34:48 t 1 1 127816 514 0.00 2019-10-20 11:23:28 2019-10-20 11:36:27 t 1 1 127819 220 0.00 2019-10-20 11:35:47 2019-10-20 11:39:40 t 1 1 127823 408 0.00 2019-10-20 11:42:21 2019-10-20 11:43:19 t 1 1 127828 408 0.00 2019-10-20 11:44:59 2019-10-20 11:45:18 t 1 1 127830 516 0.00 2019-10-20 11:43:51 2019-10-20 11:46:59 t 1 1 127835 516 0.00 2019-10-20 11:47:47 2019-10-20 11:49:10 t 1 1 127837 220 0.00 2019-10-20 11:48:10 2019-10-20 11:49:41 t 1 1 127839 408 0.00 2019-10-20 11:50:27 2019-10-20 11:50:34 t 1 1 127842 220 0.00 2019-10-20 11:51:19 2019-10-20 11:52:12 t 1 1 127849 483 0.00 2019-10-20 11:15:08 2019-10-20 11:54:50 t 1 1 127850 220 0.00 2019-10-20 11:54:11 2019-10-20 11:56:10 t 1 1 127856 220 0.00 2019-10-20 11:58:10 2019-10-20 12:00:55 t 1 1 127857 408 0.00 2019-10-20 12:02:11 2019-10-20 12:02:30 t 1 1 127858 514 0.00 2019-10-20 11:36:27 2019-10-20 12:03:29 t 1 1 127863 306 0.00 2019-10-20 12:04:33 2019-10-20 12:05:33 t 1 1 127865 306 0.00 2019-10-20 12:05:32 2019-10-20 12:06:17 t 1 1 127866 501 0.00 2019-10-20 12:06:23 2019-10-20 12:06:32 t 1 1 127867 536 0.00 2019-10-20 11:28:59 2019-10-20 12:07:11 t 1 1 127876 536 0.00 2019-10-20 12:09:08 2019-10-20 12:09:30 t 1 1 127879 578 0.00 2019-10-20 10:14:00 2019-10-20 12:10:30 t 1 1 127880 375 0.00 2019-10-20 11:59:34 2019-10-20 12:10:47 t 1 1 127886 536 0.00 2019-10-20 12:12:16 2019-10-20 12:12:33 t 1 1 127890 581 0.00 2019-10-20 12:05:39 2019-10-20 12:14:19 t 1 1 127893 408 0.00 2019-10-20 12:15:37 2019-10-20 12:15:43 t 1 1 127894 408 0.00 2019-10-20 12:16:00 2019-10-20 12:16:07 t 1 1 127895 508 0.00 2019-10-20 11:43:02 2019-10-20 12:16:28 t 1 2 127896 536 0.00 2019-10-20 12:16:41 2019-10-20 12:16:48 t 1 1 127897 536 0.00 2019-10-20 12:17:21 2019-10-20 12:17:39 t 1 1 127898 536 0.00 2019-10-20 12:17:46 2019-10-20 12:18:25 t 1 1 127899 408 0.00 2019-10-20 12:16:15 2019-10-20 12:19:52 t 1 1 127900 570 0.00 2019-10-20 12:16:15 2019-10-20 12:20:10 t 1 1 127904 536 0.00 2019-10-20 12:28:59 2019-10-20 12:29:00 t 1 1 127906 508 0.00 2019-10-20 12:22:41 2019-10-20 12:31:41 t 1 2 127908 443 0.00 2019-10-20 12:36:54 2019-10-20 12:37:46 t 1 1 127909 564 0.00 2019-10-20 12:02:15 2019-10-20 12:38:56 t 1 1 127910 443 0.00 2019-10-20 12:37:50 2019-10-20 12:39:08 t 1 1 127912 481 0.00 2019-10-20 12:12:06 2019-10-20 12:40:02 t 1 1 127914 375 0.00 2019-10-20 12:12:42 2019-10-20 12:40:35 t 1 1 127918 501 0.00 2019-10-20 12:42:49 2019-10-20 12:42:51 t 1 1 127919 501 0.00 2019-10-20 12:42:57 2019-10-20 12:43:06 t 1 1 127921 501 0.00 2019-10-20 12:43:49 2019-10-20 12:43:57 t 1 1 127925 472 0.00 2019-10-20 12:48:11 2019-10-20 12:48:11 f 1 1 127929 306 0.00 2019-10-20 12:47:33 2019-10-20 12:50:00 t 1 1 127864 512 0.00 2019-10-20 11:45:53 2019-10-20 12:06:13 t 1 1 127868 408 0.00 2019-10-20 12:07:07 2019-10-20 12:07:15 t 1 1 127870 408 0.00 2019-10-20 12:07:23 2019-10-20 12:07:35 t 1 1 127872 536 0.00 2019-10-20 12:07:31 2019-10-20 12:07:59 t 1 1 127873 536 0.00 2019-10-20 12:08:24 2019-10-20 12:08:36 t 1 1 127877 501 0.00 2019-10-20 12:08:24 2019-10-20 12:09:50 t 1 1 127882 536 0.00 2019-10-20 12:11:39 2019-10-20 12:11:58 t 1 1 127884 408 0.00 2019-10-20 12:11:55 2019-10-20 12:12:07 t 1 1 127885 306 0.00 2019-10-20 12:06:16 2019-10-20 12:12:22 t 1 1 127887 408 0.00 2019-10-20 12:12:31 2019-10-20 12:12:35 t 1 1 127888 536 0.00 2019-10-20 12:12:47 2019-10-20 12:12:53 t 1 1 127892 581 0.00 2019-10-20 12:14:40 2019-10-20 12:15:23 t 1 1 127902 306 0.00 2019-10-20 12:12:22 2019-10-20 12:27:53 t 1 1 127911 501 0.00 2019-10-20 12:35:38 2019-10-20 12:39:50 t 1 1 127916 327 0.00 2019-10-20 11:51:22 2019-10-20 12:41:33 t 1 1 127917 501 0.00 2019-10-20 12:41:54 2019-10-20 12:42:08 t 1 1 127920 306 0.00 2019-10-20 12:27:53 2019-10-20 12:43:16 t 1 1 127922 520 0.00 2019-10-20 12:35:44 2019-10-20 12:44:55 t 1 1 127923 501 0.00 2019-10-20 12:44:50 2019-10-20 12:44:58 t 1 1 127927 501 0.00 2019-10-20 12:48:25 2019-10-20 12:48:33 t 1 1 127930 516 0.00 2019-10-20 12:48:58 2019-10-20 12:50:24 t 1 1 127932 556 0.00 2019-10-20 11:26:17 2019-10-20 12:50:53 t 1 1 127936 536 0.00 2019-10-20 12:29:12 2019-10-20 12:54:13 t 1 1 127939 536 0.00 2019-10-20 12:54:38 2019-10-20 12:55:39 t 1 1 127940 536 0.00 2019-10-20 12:55:52 2019-10-20 12:55:58 t 1 1 127943 306 0.00 2019-10-20 12:54:36 2019-10-20 12:58:18 t 1 1 127951 520 0.00 2019-10-20 12:44:48 2019-10-20 13:03:44 t 1 1 127952 501 0.00 2019-10-20 13:00:30 2019-10-20 13:04:29 t 1 1 127957 501 0.00 2019-10-20 13:07:33 2019-10-20 13:07:40 t 1 1 127958 456 0.00 2019-10-20 13:03:33 2019-10-20 13:08:24 t 1 1 127959 516 0.00 2019-10-20 12:59:28 2019-10-20 13:09:28 t 1 1 127966 536 0.00 2019-10-20 13:12:05 2019-10-20 13:14:28 t 1 1 127967 514 0.00 2019-10-20 13:14:13 2019-10-20 13:15:18 t 1 1 127971 570 0.00 2019-10-20 13:05:18 2019-10-20 13:16:41 t 1 1 127976 562 0.00 2019-10-20 13:13:43 2019-10-20 13:18:59 t 1 1 127978 558 0.00 2019-10-20 13:10:39 2019-10-20 13:20:23 t 1 1 127982 327 0.00 2019-10-20 13:21:28 2019-10-20 13:22:34 t 1 1 127989 578 0.00 2019-10-20 12:10:30 2019-10-20 13:24:55 t 1 1 127991 501 0.00 2019-10-20 13:25:05 2019-10-20 13:25:07 t 1 1 127995 499 0.00 2019-10-20 13:10:23 2019-10-20 13:27:42 t 1 1 127996 501 0.00 2019-10-20 13:27:46 2019-10-20 13:27:54 t 1 1 127999 379 0.00 2019-10-20 11:53:45 2019-10-20 13:30:13 t 1 1 128001 327 0.00 2019-10-20 13:32:02 2019-10-20 13:32:54 t 1 1 128002 583 0.00 2019-10-20 13:30:41 2019-10-20 13:34:20 t 1 1 128006 562 0.00 2019-10-20 13:31:56 2019-10-20 13:39:39 t 1 1 128008 481 0.00 2019-10-20 12:40:02 2019-10-20 13:40:28 t 1 1 128010 508 0.00 2019-10-20 13:38:50 2019-10-20 13:40:50 t 1 2 128014 574 0.00 2019-10-20 00:37:08 2019-10-20 13:44:08 t 1 1 128016 501 0.00 2019-10-20 13:44:27 2019-10-20 13:44:42 t 1 1 128017 562 0.00 2019-10-20 13:39:39 2019-10-20 13:45:09 t 1 1 128023 501 0.00 2019-10-20 13:46:45 2019-10-20 13:47:29 t 1 1 128026 514 0.00 2019-10-20 13:37:00 2019-10-20 13:50:09 t 1 1 128027 562 0.00 2019-10-20 13:48:34 2019-10-20 13:51:01 t 1 1 128030 516 0.00 2019-10-20 13:49:41 2019-10-20 13:52:55 t 1 1 128032 501 0.00 2019-10-20 13:53:44 2019-10-20 13:54:52 t 1 1 128034 501 0.00 2019-10-20 13:55:08 2019-10-20 13:56:09 t 1 1 128039 501 0.00 2019-10-20 13:59:38 2019-10-20 13:59:57 t 1 1 128043 501 0.00 2019-10-20 14:06:00 2019-10-20 14:06:34 t 1 1 128049 583 0.00 2019-10-20 13:34:28 2019-10-20 14:09:19 t 1 1 128052 501 0.00 2019-10-20 14:11:03 2019-10-20 14:11:10 t 1 1 128056 528 0.00 2019-10-20 13:59:21 2019-10-20 14:13:16 t 1 1 128060 501 0.00 2019-10-20 14:14:20 2019-10-20 14:14:27 t 1 1 128061 562 0.00 2019-10-20 14:13:01 2019-10-20 14:15:04 t 1 1 128064 501 0.00 2019-10-20 14:15:18 2019-10-20 14:17:23 t 1 1 128067 501 0.00 2019-10-20 14:18:32 2019-10-20 14:18:47 t 1 1 128068 501 0.00 2019-10-20 14:18:54 2019-10-20 14:19:01 t 1 1 128073 501 0.00 2019-10-20 14:22:26 2019-10-20 14:23:00 t 1 1 128075 562 0.00 2019-10-20 14:15:41 2019-10-20 14:23:37 t 1 1 128077 451 0.00 2019-10-20 14:17:05 2019-10-20 14:24:51 t 1 1 128080 501 0.00 2019-10-20 14:24:33 2019-10-20 14:25:49 t 1 1 128081 501 0.00 2019-10-20 14:25:56 2019-10-20 14:26:05 t 1 1 128083 501 0.00 2019-10-20 14:26:14 2019-10-20 14:26:28 t 1 1 128086 520 0.00 2019-10-20 13:46:05 2019-10-20 14:29:59 t 1 1 128087 501 0.00 2019-10-20 14:30:39 2019-10-20 14:30:50 t 1 1 128091 501 0.00 2019-10-20 14:34:18 2019-10-20 14:35:00 t 1 1 128092 501 0.00 2019-10-20 14:35:36 2019-10-20 14:36:42 t 1 1 128093 220 0.00 2019-10-20 14:31:23 2019-10-20 14:37:50 t 1 1 128094 562 0.00 2019-10-20 14:26:42 2019-10-20 14:38:04 t 1 1 128099 578 0.00 2019-10-20 14:33:20 2019-10-20 14:40:05 t 1 1 128102 306 0.00 2019-10-20 13:47:02 2019-10-20 14:41:43 t 1 1 128109 451 0.00 2019-10-20 14:29:08 2019-10-20 14:45:59 t 1 1 128111 562 0.00 2019-10-20 14:42:54 2019-10-20 14:50:32 t 1 1 128113 562 0.00 2019-10-20 14:51:50 2019-10-20 14:51:56 t 1 1 128114 581 0.00 2019-10-20 14:51:56 2019-10-20 14:52:03 t 1 1 128116 306 0.00 2019-10-20 14:50:19 2019-10-20 14:52:34 t 1 1 128119 220 0.00 2019-10-20 14:37:50 2019-10-20 14:54:27 t 1 1 128121 520 0.00 2019-10-20 14:43:07 2019-10-20 14:54:59 t 1 1 128124 558 0.00 2019-10-20 14:54:59 2019-10-20 14:55:14 t 1 1 128128 501 0.00 2019-10-20 14:57:24 2019-10-20 14:58:04 t 1 1 128130 501 0.00 2019-10-20 14:58:10 2019-10-20 14:58:27 t 1 1 128132 501 0.00 2019-10-20 14:56:31 2019-10-20 14:58:46 t 1 1 128135 562 0.00 2019-10-20 15:00:30 2019-10-20 15:01:52 t 1 1 128138 562 0.00 2019-10-20 15:03:35 2019-10-20 15:03:53 t 1 1 128142 564 0.00 2019-10-20 13:15:48 2019-10-20 15:09:32 t 1 1 128143 520 0.00 2019-10-20 15:08:36 2019-10-20 15:09:50 t 1 1 128145 528 0.00 2019-10-20 15:08:55 2019-10-20 15:12:40 t 1 1 128151 501 0.00 2019-10-20 15:02:07 2019-10-20 15:18:01 t 1 1 128155 498 0.00 2019-10-20 13:55:21 2019-10-20 15:22:48 t 1 2 128157 472 0.00 2019-10-20 15:24:32 2019-10-20 15:24:32 f 1 1 128158 412 0.00 2019-10-20 15:20:27 2019-10-20 15:24:58 t 1 1 128159 514 0.00 2019-10-20 14:18:00 2019-10-20 15:26:11 t 1 1 128160 556 0.00 2019-10-20 12:50:57 2019-10-20 15:26:43 t 1 1 128162 327 0.00 2019-10-20 15:11:06 2019-10-20 15:27:19 t 1 1 128168 412 0.00 2019-10-20 15:27:35 2019-10-20 15:34:28 t 1 1 128169 306 0.00 2019-10-20 15:08:42 2019-10-20 15:35:01 t 1 1 128178 220 0.00 2019-10-20 15:41:53 2019-10-20 15:42:01 t 1 1 128180 581 0.00 2019-10-20 15:35:13 2019-10-20 15:43:23 t 1 1 127881 536 0.00 2019-10-20 12:10:39 2019-10-20 12:11:02 t 1 1 127883 481 0.00 2019-10-20 11:49:08 2019-10-20 12:12:06 t 1 1 127889 536 0.00 2019-10-20 12:13:03 2019-10-20 12:14:10 t 1 1 127891 408 0.00 2019-10-20 12:14:40 2019-10-20 12:14:59 t 1 1 127901 456 0.00 2019-10-20 12:15:21 2019-10-20 12:27:35 t 1 1 127903 536 0.00 2019-10-20 12:19:22 2019-10-20 12:29:00 t 1 1 127905 581 0.00 2019-10-20 12:16:28 2019-10-20 12:31:33 t 1 1 127907 443 0.00 2019-10-20 12:06:30 2019-10-20 12:37:00 t 1 1 127913 501 0.00 2019-10-20 12:39:57 2019-10-20 12:40:05 t 1 1 127915 501 0.00 2019-10-20 12:40:48 2019-10-20 12:40:55 t 1 1 127924 501 0.00 2019-10-20 12:45:41 2019-10-20 12:47:22 t 1 1 127926 472 0.00 2019-10-20 12:48:19 2019-10-20 12:48:19 f 1 1 127928 501 0.00 2019-10-20 12:49:24 2019-10-20 12:49:58 t 1 1 127934 512 0.00 2019-10-20 12:11:42 2019-10-20 12:53:33 t 1 1 127935 570 0.00 2019-10-20 12:39:52 2019-10-20 12:54:10 t 1 1 127945 536 0.00 2019-10-20 12:58:42 2019-10-20 12:58:49 t 1 1 127946 501 0.00 2019-10-20 12:53:53 2019-10-20 12:59:27 t 1 1 127947 306 0.00 2019-10-20 12:58:25 2019-10-20 13:00:44 t 1 1 127949 536 0.00 2019-10-20 13:02:07 2019-10-20 13:02:34 t 1 1 127950 514 0.00 2019-10-20 12:03:28 2019-10-20 13:02:58 t 1 1 127953 570 0.00 2019-10-20 12:55:07 2019-10-20 13:05:02 t 1 1 127954 501 0.00 2019-10-20 13:05:32 2019-10-20 13:05:39 t 1 1 127955 562 0.00 2019-10-20 13:01:35 2019-10-20 13:06:49 t 1 1 127960 558 0.00 2019-10-20 11:44:24 2019-10-20 13:10:20 t 1 1 127962 327 0.00 2019-10-20 12:48:39 2019-10-20 13:11:31 t 1 1 127963 520 0.00 2019-10-20 13:04:21 2019-10-20 13:12:20 t 1 1 127964 562 0.00 2019-10-20 13:07:20 2019-10-20 13:13:43 t 1 1 127968 583 0.00 2019-10-20 12:59:33 2019-10-20 13:15:28 t 1 1 127970 564 0.00 2019-10-20 12:38:56 2019-10-20 13:15:48 t 1 1 127973 536 0.00 2019-10-20 13:16:34 2019-10-20 13:17:43 t 1 1 127975 512 0.00 2019-10-20 13:10:08 2019-10-20 13:18:22 t 1 1 127977 520 0.00 2019-10-20 13:15:37 2019-10-20 13:20:00 t 1 1 127985 501 0.00 2019-10-20 13:23:49 2019-10-20 13:24:05 t 1 1 127988 501 0.00 2019-10-20 13:24:44 2019-10-20 13:24:52 t 1 1 127990 501 0.00 2019-10-20 13:24:58 2019-10-20 13:24:59 t 1 1 127994 514 0.00 2019-10-20 13:17:29 2019-10-20 13:27:19 t 1 1 127997 501 0.00 2019-10-20 13:28:46 2019-10-20 13:28:59 t 1 1 128004 514 0.00 2019-10-20 13:27:19 2019-10-20 13:37:00 t 1 1 128005 501 0.00 2019-10-20 13:30:15 2019-10-20 13:38:02 t 1 1 128007 520 0.00 2019-10-20 13:20:06 2019-10-20 13:39:59 t 1 1 128015 501 0.00 2019-10-20 13:43:43 2019-10-20 13:44:22 t 1 1 128019 520 0.00 2019-10-20 13:40:05 2019-10-20 13:45:59 t 1 1 128021 512 0.00 2019-10-20 13:22:32 2019-10-20 13:47:24 t 1 1 128029 578 0.00 2019-10-20 13:24:54 2019-10-20 13:52:28 t 1 1 128033 501 0.00 2019-10-20 13:54:59 2019-10-20 13:55:01 t 1 1 128035 327 0.00 2019-10-20 13:51:11 2019-10-20 13:58:37 t 1 1 128038 501 0.00 2019-10-20 13:58:58 2019-10-20 13:59:30 t 1 1 128040 412 0.00 2019-10-20 06:35:04 2019-10-20 14:02:45 t 1 1 128041 501 0.00 2019-10-20 14:05:01 2019-10-20 14:05:10 t 1 1 128044 514 0.00 2019-10-20 13:50:09 2019-10-20 14:06:48 t 1 1 128046 501 0.00 2019-10-20 14:07:09 2019-10-20 14:07:17 t 1 1 128047 501 0.00 2019-10-20 14:08:02 2019-10-20 14:08:09 t 1 1 128051 501 0.00 2019-10-20 14:10:03 2019-10-20 14:10:10 t 1 1 128053 562 0.00 2019-10-20 14:11:02 2019-10-20 14:11:12 t 1 1 128054 501 0.00 2019-10-20 14:12:04 2019-10-20 14:12:25 t 1 1 128058 451 0.00 2019-10-20 13:49:19 2019-10-20 14:13:54 t 1 1 128059 501 0.00 2019-10-20 14:14:05 2019-10-20 14:14:13 t 1 1 128066 499 0.00 2019-10-20 13:43:20 2019-10-20 14:18:01 t 1 1 128076 583 0.00 2019-10-20 14:09:19 2019-10-20 14:23:49 t 1 1 128078 578 0.00 2019-10-20 13:52:28 2019-10-20 14:24:54 t 1 1 128084 296 0.00 2019-10-20 14:27:12 2019-10-20 14:27:12 f 1 2 128088 583 0.00 2019-10-20 14:23:49 2019-10-20 14:30:53 t 1 1 128089 520 0.00 2019-10-20 14:30:05 2019-10-20 14:31:32 t 1 1 128096 501 0.00 2019-10-20 14:38:45 2019-10-20 14:38:52 t 1 1 128097 501 0.00 2019-10-20 14:39:45 2019-10-20 14:39:53 t 1 1 128098 520 0.00 2019-10-20 14:31:38 2019-10-20 14:40:00 t 1 1 128100 501 0.00 2019-10-20 14:40:46 2019-10-20 14:41:18 t 1 1 128103 501 0.00 2019-10-20 14:41:52 2019-10-20 14:42:07 t 1 1 128104 520 0.00 2019-10-20 14:40:05 2019-10-20 14:43:08 t 1 1 128106 412 0.00 2019-10-20 14:43:05 2019-10-20 14:44:20 t 1 1 128108 306 0.00 2019-10-20 14:41:43 2019-10-20 14:45:50 t 1 1 128110 306 0.00 2019-10-20 14:45:49 2019-10-20 14:48:28 t 1 1 128112 581 0.00 2019-10-20 14:50:41 2019-10-20 14:51:26 t 1 1 128115 566 0.00 2019-10-20 14:44:26 2019-10-20 14:52:30 t 1 1 128117 501 0.00 2019-10-20 14:42:13 2019-10-20 14:52:46 t 1 1 128120 558 0.00 2019-10-20 14:09:59 2019-10-20 14:54:38 t 1 1 128123 327 0.00 2019-10-20 14:05:35 2019-10-20 14:55:08 t 1 1 128127 562 0.00 2019-10-20 14:53:07 2019-10-20 14:57:27 t 1 1 128131 520 0.00 2019-10-20 14:55:04 2019-10-20 14:58:32 t 1 1 128133 520 0.00 2019-10-20 14:58:41 2019-10-20 14:59:47 t 1 1 128137 412 0.00 2019-10-20 14:59:21 2019-10-20 15:02:26 t 1 1 128139 485 0.00 2019-10-20 14:59:51 2019-10-20 15:05:30 t 1 1 128141 520 0.00 2019-10-20 14:59:56 2019-10-20 15:08:30 t 1 1 128149 564 0.00 2019-10-20 15:09:32 2019-10-20 15:16:40 t 1 1 128150 395 0.00 2019-10-20 15:16:55 2019-10-20 15:17:56 t 1 2 128153 412 0.00 2019-10-20 15:17:37 2019-10-20 15:20:27 t 1 1 128154 528 0.00 2019-10-20 15:12:03 2019-10-20 15:21:49 t 1 1 128156 472 0.00 2019-10-20 15:24:24 2019-10-20 15:24:24 f 1 1 128161 528 0.00 2019-10-20 15:26:25 2019-10-20 15:26:52 t 1 1 128163 516 0.00 2019-10-20 15:27:30 2019-10-20 15:31:46 t 1 1 128164 327 0.00 2019-10-20 15:27:19 2019-10-20 15:32:47 t 1 1 128165 528 0.00 2019-10-20 15:30:24 2019-10-20 15:33:00 t 1 1 128170 581 0.00 2019-10-20 14:54:58 2019-10-20 15:35:13 t 1 1 128171 220 0.00 2019-10-20 15:31:47 2019-10-20 15:36:11 t 1 2 128173 451 0.00 2019-10-20 15:21:31 2019-10-20 15:36:37 t 1 1 128174 481 0.00 2019-10-20 14:13:39 2019-10-20 15:37:36 t 1 1 128179 528 0.00 2019-10-20 15:41:41 2019-10-20 15:42:15 t 1 1 128184 408 0.00 2019-10-20 15:38:53 2019-10-20 15:45:50 t 1 1 128190 220 0.00 2019-10-20 15:47:04 2019-10-20 15:47:21 t 1 1 128192 516 0.00 2019-10-20 15:44:28 2019-10-20 15:48:25 t 1 1 128194 408 0.00 2019-10-20 15:48:55 2019-10-20 15:49:22 t 1 1 128195 408 0.00 2019-10-20 15:50:20 2019-10-20 15:50:23 t 1 1 128204 581 0.00 2019-10-20 15:43:23 2019-10-20 15:59:59 t 1 1 128205 306 0.00 2019-10-20 15:50:10 2019-10-20 16:01:27 t 1 1 128207 408 0.00 2019-10-20 15:59:16 2019-10-20 16:02:35 t 1 1 128208 562 0.00 2019-10-20 15:58:44 2019-10-20 16:03:38 t 1 1 128209 522 0.00 2019-10-20 15:49:14 2019-10-20 16:04:10 t 1 1 127931 501 0.00 2019-10-20 12:50:26 2019-10-20 12:50:35 t 1 1 127933 501 0.00 2019-10-20 12:51:26 2019-10-20 12:52:50 t 1 1 127937 536 0.00 2019-10-20 12:54:18 2019-10-20 12:54:26 t 1 1 127938 570 0.00 2019-10-20 12:54:10 2019-10-20 12:55:07 t 1 1 127941 536 0.00 2019-10-20 12:56:19 2019-10-20 12:56:51 t 1 1 127942 536 0.00 2019-10-20 12:57:18 2019-10-20 12:57:24 t 1 1 127944 536 0.00 2019-10-20 12:58:00 2019-10-20 12:58:32 t 1 1 127948 536 0.00 2019-10-20 12:59:20 2019-10-20 13:02:01 t 1 1 127956 501 0.00 2019-10-20 13:06:38 2019-10-20 13:06:51 t 1 1 127961 499 0.00 2019-10-20 13:04:36 2019-10-20 13:10:23 t 1 1 127965 514 0.00 2019-10-20 13:02:58 2019-10-20 13:14:13 t 1 1 127969 520 0.00 2019-10-20 13:13:08 2019-10-20 13:15:32 t 1 1 127972 501 0.00 2019-10-20 13:08:11 2019-10-20 13:17:23 t 1 1 127974 536 0.00 2019-10-20 13:16:01 2019-10-20 13:17:46 t 1 1 127979 220 0.00 2019-10-20 10:50:34 2019-10-20 13:20:52 t 1 2 127980 501 0.00 2019-10-20 13:17:59 2019-10-20 13:21:41 t 1 1 127981 512 0.00 2019-10-20 13:18:21 2019-10-20 13:22:33 t 1 1 127983 501 0.00 2019-10-20 13:22:44 2019-10-20 13:22:52 t 1 1 127984 536 0.00 2019-10-20 13:17:49 2019-10-20 13:23:51 t 1 1 127986 562 0.00 2019-10-20 13:19:00 2019-10-20 13:24:08 t 1 1 127987 501 0.00 2019-10-20 13:24:11 2019-10-20 13:24:19 t 1 1 127992 501 0.00 2019-10-20 13:25:13 2019-10-20 13:25:41 t 1 1 127993 501 0.00 2019-10-20 13:26:46 2019-10-20 13:26:54 t 1 1 127998 501 0.00 2019-10-20 13:29:53 2019-10-20 13:30:10 t 1 1 128000 562 0.00 2019-10-20 13:24:08 2019-10-20 13:31:56 t 1 1 128003 451 0.00 2019-10-20 13:08:27 2019-10-20 13:36:24 t 1 1 128009 327 0.00 2019-10-20 13:38:59 2019-10-20 13:40:32 t 1 1 128011 306 0.00 2019-10-20 13:10:31 2019-10-20 13:41:56 t 1 1 128012 501 0.00 2019-10-20 13:38:18 2019-10-20 13:42:40 t 1 1 128013 499 0.00 2019-10-20 13:27:42 2019-10-20 13:43:20 t 1 1 128018 501 0.00 2019-10-20 13:45:45 2019-10-20 13:45:52 t 1 1 128020 306 0.00 2019-10-20 13:41:56 2019-10-20 13:47:02 t 1 1 128022 327 0.00 2019-10-20 13:42:57 2019-10-20 13:47:28 t 1 1 128024 501 0.00 2019-10-20 13:47:34 2019-10-20 13:47:43 t 1 1 128025 416 0.00 2019-10-20 12:07:27 2019-10-20 13:50:05 t 1 1 128028 501 0.00 2019-10-20 13:48:46 2019-10-20 13:51:39 t 1 1 128031 562 0.00 2019-10-20 13:53:39 2019-10-20 13:54:46 t 1 1 128036 501 0.00 2019-10-20 13:56:18 2019-10-20 13:58:46 t 1 1 128037 528 0.00 2019-10-20 13:31:05 2019-10-20 13:59:21 t 1 1 128042 562 0.00 2019-10-20 13:55:59 2019-10-20 14:06:14 t 1 1 128045 501 0.00 2019-10-20 14:07:02 2019-10-20 14:07:03 t 1 1 128048 501 0.00 2019-10-20 14:09:01 2019-10-20 14:09:09 t 1 1 128050 558 0.00 2019-10-20 13:20:26 2019-10-20 14:09:59 t 1 1 128055 501 0.00 2019-10-20 14:13:04 2019-10-20 14:13:12 t 1 1 128057 481 0.00 2019-10-20 13:40:28 2019-10-20 14:13:40 t 1 1 128062 501 0.00 2019-10-20 14:15:05 2019-10-20 14:15:06 t 1 1 128063 451 0.00 2019-10-20 14:13:53 2019-10-20 14:17:05 t 1 1 128065 514 0.00 2019-10-20 14:06:48 2019-10-20 14:18:00 t 1 1 128069 501 0.00 2019-10-20 14:19:25 2019-10-20 14:19:34 t 1 1 128070 566 0.00 2019-10-20 14:10:20 2019-10-20 14:20:10 t 1 1 128071 501 0.00 2019-10-20 14:20:26 2019-10-20 14:20:33 t 1 1 128072 501 0.00 2019-10-20 14:21:27 2019-10-20 14:21:35 t 1 1 128074 501 0.00 2019-10-20 14:23:28 2019-10-20 14:23:35 t 1 1 128079 538 0.00 2019-10-20 14:01:53 2019-10-20 14:25:45 t 1 1 128082 562 0.00 2019-10-20 14:23:49 2019-10-20 14:26:22 t 1 1 128085 566 0.00 2019-10-20 14:20:10 2019-10-20 14:29:12 t 1 1 128090 578 0.00 2019-10-20 14:24:54 2019-10-20 14:33:19 t 1 1 128095 501 0.00 2019-10-20 14:37:43 2019-10-20 14:38:17 t 1 1 128101 485 0.00 2019-10-20 14:38:12 2019-10-20 14:41:37 t 1 1 128105 412 0.00 2019-10-20 14:02:45 2019-10-20 14:43:10 t 1 1 128107 566 0.00 2019-10-20 14:29:12 2019-10-20 14:44:26 t 1 1 128118 451 0.00 2019-10-20 14:45:59 2019-10-20 14:52:57 t 1 1 128122 412 0.00 2019-10-20 14:51:15 2019-10-20 14:55:03 t 1 1 128125 501 0.00 2019-10-20 14:54:50 2019-10-20 14:56:24 t 1 1 128126 412 0.00 2019-10-20 14:56:21 2019-10-20 14:57:24 t 1 1 128129 566 0.00 2019-10-20 14:52:30 2019-10-20 14:58:11 t 1 1 128134 306 0.00 2019-10-20 14:55:51 2019-10-20 15:01:04 t 1 1 128136 501 0.00 2019-10-20 14:59:01 2019-10-20 15:01:59 t 1 1 128140 562 0.00 2019-10-20 15:06:49 2019-10-20 15:07:19 t 1 1 128144 327 0.00 2019-10-20 14:55:08 2019-10-20 15:11:06 t 1 1 128146 412 0.00 2019-10-20 15:03:16 2019-10-20 15:13:26 t 1 1 128147 451 0.00 2019-10-20 15:10:07 2019-10-20 15:14:28 t 1 1 128148 412 0.00 2019-10-20 15:13:56 2019-10-20 15:15:43 t 1 1 128152 501 0.00 2019-10-20 15:18:43 2019-10-20 15:20:00 t 1 1 128166 327 0.00 2019-10-20 15:32:54 2019-10-20 15:33:02 t 1 1 128167 512 0.00 2019-10-20 14:34:20 2019-10-20 15:34:12 t 1 1 128172 520 0.00 2019-10-20 15:09:50 2019-10-20 15:36:20 t 1 1 128175 520 0.00 2019-10-20 15:36:24 2019-10-20 15:37:44 t 1 1 128176 408 0.00 2019-10-20 15:25:24 2019-10-20 15:38:53 t 1 1 128177 220 0.00 2019-10-20 14:56:12 2019-10-20 15:39:54 t 1 1 128182 327 0.00 2019-10-20 15:43:24 2019-10-20 15:45:22 t 1 1 128185 520 0.00 2019-10-20 15:37:53 2019-10-20 15:46:03 t 1 1 128187 408 0.00 2019-10-20 15:46:18 2019-10-20 15:46:21 t 1 1 128188 526 0.00 2019-10-20 15:46:26 2019-10-20 15:46:29 t 1 1 128193 512 0.00 2019-10-20 15:34:12 2019-10-20 15:48:29 t 1 1 128196 562 0.00 2019-10-20 15:52:29 2019-10-20 15:54:24 t 1 1 128198 583 0.00 2019-10-20 15:49:53 2019-10-20 15:56:07 t 1 1 128200 220 0.00 2019-10-20 15:57:34 2019-10-20 15:57:42 t 1 1 128211 408 0.00 2019-10-20 16:04:32 2019-10-20 16:04:36 t 1 1 128216 562 0.00 2019-10-20 16:05:55 2019-10-20 16:06:53 t 1 1 128219 220 0.00 2019-10-20 16:08:19 2019-10-20 16:08:34 t 1 1 128220 485 0.00 2019-10-20 16:02:12 2019-10-20 16:10:24 t 1 1 128222 581 0.00 2019-10-20 15:59:59 2019-10-20 16:10:26 t 1 1 128226 408 0.00 2019-10-20 16:11:23 2019-10-20 16:11:50 t 1 1 128228 485 0.00 2019-10-20 16:10:24 2019-10-20 16:13:02 t 1 1 128231 327 0.00 2019-10-20 16:15:55 2019-10-20 16:16:28 t 1 1 128232 562 0.00 2019-10-20 16:17:02 2019-10-20 16:17:21 t 1 1 128233 294 0.00 2019-10-20 16:18:15 2019-10-20 16:18:15 f 1 2 128237 306 0.00 2019-10-20 16:16:04 2019-10-20 16:19:56 t 1 1 128241 538 0.00 2019-10-20 15:02:27 2019-10-20 16:20:59 t 1 1 128245 456 0.00 2019-10-20 16:20:38 2019-10-20 16:23:44 t 1 1 128246 520 0.00 2019-10-20 16:22:43 2019-10-20 16:24:30 t 1 1 128249 514 0.00 2019-10-20 16:01:46 2019-10-20 16:25:20 t 1 1 128250 220 0.00 2019-10-20 16:25:05 2019-10-20 16:25:39 t 1 1 128253 220 0.00 2019-10-20 16:25:47 2019-10-20 16:26:58 t 1 1 128257 520 0.00 2019-10-20 16:26:28 2019-10-20 16:28:46 t 1 1 128258 570 0.00 2019-10-20 16:23:18 2019-10-20 16:29:49 t 1 1 128181 306 0.00 2019-10-20 15:37:35 2019-10-20 15:43:50 t 1 1 128183 416 0.00 2019-10-20 14:08:41 2019-10-20 15:45:23 t 1 1 128186 408 0.00 2019-10-20 15:45:56 2019-10-20 15:46:08 t 1 1 128189 520 0.00 2019-10-20 15:46:03 2019-10-20 15:47:14 t 1 1 128191 416 0.00 2019-10-20 15:46:23 2019-10-20 15:48:19 t 1 1 128197 327 0.00 2019-10-20 15:54:47 2019-10-20 15:55:20 t 1 1 128199 408 0.00 2019-10-20 15:57:22 2019-10-20 15:57:24 t 1 1 128201 562 0.00 2019-10-20 15:56:57 2019-10-20 15:57:47 t 1 1 128202 562 0.00 2019-10-20 15:58:24 2019-10-20 15:58:35 t 1 1 128203 416 0.00 2019-10-20 15:48:49 2019-10-20 15:59:12 t 1 1 128206 514 0.00 2019-10-20 15:26:11 2019-10-20 16:01:46 t 1 1 128210 449 0.00 2019-10-20 16:01:32 2019-10-20 16:04:24 t 1 1 128212 445 0.00 2019-10-20 15:51:47 2019-10-20 16:04:39 t 1 1 128215 327 0.00 2019-10-20 16:05:17 2019-10-20 16:05:59 t 1 1 128223 408 0.00 2019-10-20 16:08:23 2019-10-20 16:10:30 t 1 1 128227 520 0.00 2019-10-20 16:10:24 2019-10-20 16:12:43 t 1 1 128229 416 0.00 2019-10-20 16:03:22 2019-10-20 16:15:46 t 1 1 128235 220 0.00 2019-10-20 16:18:48 2019-10-20 16:18:56 t 1 1 128238 456 0.00 2019-10-20 16:13:21 2019-10-20 16:20:39 t 1 1 128240 562 0.00 2019-10-20 16:19:30 2019-10-20 16:20:47 t 1 1 128242 408 0.00 2019-10-20 16:12:42 2019-10-20 16:21:10 t 1 1 128252 520 0.00 2019-10-20 16:25:14 2019-10-20 16:26:29 t 1 1 128254 327 0.00 2019-10-20 16:26:25 2019-10-20 16:27:00 t 1 1 128256 562 0.00 2019-10-20 16:27:45 2019-10-20 16:27:55 t 1 1 128259 520 0.00 2019-10-20 16:28:46 2019-10-20 16:31:38 t 1 1 128262 501 0.00 2019-10-20 16:32:19 2019-10-20 16:32:34 t 1 1 128263 501 0.00 2019-10-20 16:33:36 2019-10-20 16:33:44 t 1 1 128268 516 0.00 2019-10-20 16:30:41 2019-10-20 16:35:54 t 1 1 128272 520 0.00 2019-10-20 16:31:38 2019-10-20 16:37:41 t 1 1 128273 306 0.00 2019-10-20 16:29:22 2019-10-20 16:38:35 t 1 1 128276 501 0.00 2019-10-20 16:37:28 2019-10-20 16:39:34 t 1 1 128280 564 0.00 2019-10-20 15:16:40 2019-10-20 16:42:13 t 1 1 128284 536 0.00 2019-10-20 16:44:06 2019-10-20 16:47:11 t 1 1 128285 562 0.00 2019-10-20 16:47:15 2019-10-20 16:47:20 t 1 1 128287 562 0.00 2019-10-20 16:47:42 2019-10-20 16:47:52 t 1 1 128289 578 0.00 2019-10-20 16:36:51 2019-10-20 16:48:14 t 1 1 128290 562 0.00 2019-10-20 16:48:57 2019-10-20 16:49:10 t 1 1 128292 554 0.00 2019-10-20 16:48:17 2019-10-20 16:49:39 t 1 1 128294 536 0.00 2019-10-20 16:47:17 2019-10-20 16:50:35 t 1 1 128298 522 0.00 2019-10-20 16:36:24 2019-10-20 16:52:12 t 1 1 128299 516 0.00 2019-10-20 16:51:52 2019-10-20 16:53:51 t 1 1 128301 554 0.00 2019-10-20 16:51:50 2019-10-20 16:55:27 t 1 1 128303 522 0.00 2019-10-20 16:55:39 2019-10-20 16:55:40 t 1 1 128304 522 0.00 2019-10-20 16:56:12 2019-10-20 16:56:17 t 1 1 128306 562 0.00 2019-10-20 16:56:37 2019-10-20 16:57:28 t 1 1 128312 501 0.00 2019-10-20 16:54:16 2019-10-20 17:02:59 t 1 1 128317 501 0.00 2019-10-20 17:05:02 2019-10-20 17:05:03 t 1 1 128318 220 0.00 2019-10-20 16:05:58 2019-10-20 17:06:03 t 1 2 128321 520 0.00 2019-10-20 17:07:22 2019-10-20 17:08:27 t 1 1 128322 585 0.00 2019-10-20 17:06:54 2019-10-20 17:09:19 t 1 1 128326 520 0.00 2019-10-20 17:08:26 2019-10-20 17:14:41 t 1 1 128330 585 0.00 2019-10-20 17:10:57 2019-10-20 17:18:38 t 1 1 128333 520 0.00 2019-10-20 17:14:41 2019-10-20 17:21:33 t 1 1 128335 501 0.00 2019-10-20 17:21:50 2019-10-20 17:21:50 t 1 1 128336 501 0.00 2019-10-20 17:22:24 2019-10-20 17:22:55 t 1 1 128345 512 0.00 2019-10-20 17:17:23 2019-10-20 17:28:34 t 1 1 128350 516 0.00 2019-10-20 17:23:52 2019-10-20 17:30:57 t 1 1 128353 501 0.00 2019-10-20 17:31:38 2019-10-20 17:31:47 t 1 1 128357 327 0.00 2019-10-20 17:31:32 2019-10-20 17:33:31 t 1 1 128361 562 0.00 2019-10-20 17:35:42 2019-10-20 17:36:02 t 1 1 128365 306 0.00 2019-10-20 17:29:27 2019-10-20 17:37:07 t 1 1 128377 327 0.00 2019-10-20 17:44:18 2019-10-20 17:44:51 t 1 1 128380 585 0.00 2019-10-20 17:39:39 2019-10-20 17:45:37 t 1 1 128381 501 0.00 2019-10-20 17:45:41 2019-10-20 17:46:06 t 1 1 128382 522 0.00 2019-10-20 17:44:06 2019-10-20 17:46:36 t 1 1 128386 501 0.00 2019-10-20 17:47:31 2019-10-20 17:47:50 t 1 1 128387 501 0.00 2019-10-20 17:48:07 2019-10-20 17:48:09 t 1 1 128390 501 0.00 2019-10-20 17:48:48 2019-10-20 17:48:56 t 1 1 128391 520 0.00 2019-10-20 17:40:46 2019-10-20 17:49:10 t 1 1 128393 501 0.00 2019-10-20 17:49:29 2019-10-20 17:49:46 t 1 1 128394 306 0.00 2019-10-20 17:46:39 2019-10-20 17:50:34 t 1 1 128396 501 0.00 2019-10-20 17:50:49 2019-10-20 17:51:03 t 1 1 128399 562 0.00 2019-10-20 17:50:49 2019-10-20 17:52:21 t 1 1 128401 528 0.00 2019-10-20 17:49:35 2019-10-20 17:53:59 t 1 1 128403 520 0.00 2019-10-20 17:49:10 2019-10-20 17:56:00 t 1 1 128406 562 0.00 2019-10-20 17:53:00 2019-10-20 17:57:31 t 1 1 128407 522 0.00 2019-10-20 17:59:09 2019-10-20 17:59:18 t 1 1 128410 522 0.00 2019-10-20 18:00:56 2019-10-20 18:01:18 t 1 1 128412 520 0.00 2019-10-20 18:00:50 2019-10-20 18:01:23 t 1 1 128413 498 0.00 2019-10-20 16:36:46 2019-10-20 18:02:04 t 1 2 128416 562 0.00 2019-10-20 18:03:02 2019-10-20 18:03:30 t 1 1 128418 578 0.00 2019-10-20 17:52:01 2019-10-20 18:04:14 t 1 1 128422 445 0.00 2019-10-20 17:50:53 2019-10-20 18:05:44 t 1 1 128426 585 0.00 2019-10-20 18:11:09 2019-10-20 18:13:18 t 1 1 128430 490 0.00 2019-10-20 18:11:22 2019-10-20 18:15:41 t 1 1 128434 562 0.00 2019-10-20 18:17:29 2019-10-20 18:18:51 t 1 1 128435 451 0.00 2019-10-20 18:17:48 2019-10-20 18:19:41 t 1 1 128436 451 0.00 2019-10-20 18:19:41 2019-10-20 18:21:54 t 1 1 128437 485 0.00 2019-10-20 18:19:11 2019-10-20 18:22:31 t 1 1 128440 516 0.00 2019-10-20 18:24:16 2019-10-20 18:25:37 t 1 1 128443 522 0.00 2019-10-20 18:26:39 2019-10-20 18:28:21 t 1 1 128446 481 0.00 2019-10-20 17:16:37 2019-10-20 18:29:26 t 1 1 128448 501 0.00 2019-10-20 18:17:38 2019-10-20 18:30:14 t 1 1 128453 451 0.00 2019-10-20 18:21:54 2019-10-20 18:33:45 t 1 1 128455 562 0.00 2019-10-20 18:36:50 2019-10-20 18:36:57 t 1 1 128456 562 0.00 2019-10-20 18:37:10 2019-10-20 18:37:17 t 1 1 128459 522 0.00 2019-10-20 18:38:23 2019-10-20 18:38:24 t 1 1 128463 585 0.00 2019-10-20 18:35:37 2019-10-20 18:43:17 t 1 1 128465 520 0.00 2019-10-20 18:30:22 2019-10-20 18:43:53 t 1 1 128467 581 0.00 2019-10-20 18:03:06 2019-10-20 18:46:28 t 1 1 128469 451 0.00 2019-10-20 18:33:45 2019-10-20 18:47:45 t 1 1 128470 481 0.00 2019-10-20 18:39:56 2019-10-20 18:48:04 t 1 1 128471 481 0.00 2019-10-20 18:47:25 2019-10-20 18:49:38 t 1 1 128474 445 0.00 2019-10-20 18:40:19 2019-10-20 18:51:25 t 1 1 128475 520 0.00 2019-10-20 18:43:53 2019-10-20 18:52:05 t 1 1 128477 536 0.00 2019-10-20 18:50:35 2019-10-20 18:52:37 t 1 1 128479 520 0.00 2019-10-20 18:52:05 2019-10-20 18:53:10 t 1 1 128213 578 0.00 2019-10-20 14:40:05 2019-10-20 16:05:19 t 1 1 128214 562 0.00 2019-10-20 16:03:50 2019-10-20 16:05:46 t 1 1 128217 220 0.00 2019-10-20 16:08:03 2019-10-20 16:08:12 t 1 1 128218 583 0.00 2019-10-20 16:05:19 2019-10-20 16:08:26 t 1 1 128221 520 0.00 2019-10-20 15:47:13 2019-10-20 16:10:24 t 1 1 128224 220 0.00 2019-10-20 16:06:23 2019-10-20 16:10:46 t 1 2 128225 306 0.00 2019-10-20 16:07:11 2019-10-20 16:11:29 t 1 1 128230 306 0.00 2019-10-20 16:14:05 2019-10-20 16:16:04 t 1 1 128234 294 0.00 2019-10-20 16:18:26 2019-10-20 16:18:26 f 1 2 128236 520 0.00 2019-10-20 16:12:43 2019-10-20 16:18:57 t 1 1 128239 522 0.00 2019-10-20 16:04:10 2019-10-20 16:20:43 t 1 1 128243 512 0.00 2019-10-20 16:08:45 2019-10-20 16:21:42 t 1 1 128244 520 0.00 2019-10-20 16:19:06 2019-10-20 16:22:44 t 1 1 128247 220 0.00 2019-10-20 16:24:49 2019-10-20 16:24:57 t 1 1 128248 520 0.00 2019-10-20 16:24:27 2019-10-20 16:25:14 t 1 1 128251 578 0.00 2019-10-20 16:05:19 2019-10-20 16:25:52 t 1 1 128255 306 0.00 2019-10-20 16:25:21 2019-10-20 16:27:15 t 1 1 128261 501 0.00 2019-10-20 16:32:12 2019-10-20 16:32:13 t 1 1 128271 578 0.00 2019-10-20 16:25:52 2019-10-20 16:36:51 t 1 1 128277 536 0.00 2019-10-20 16:34:32 2019-10-20 16:40:02 t 1 1 128281 520 0.00 2019-10-20 16:38:47 2019-10-20 16:42:40 t 1 1 128283 536 0.00 2019-10-20 16:40:02 2019-10-20 16:44:07 t 1 1 128286 501 0.00 2019-10-20 16:39:40 2019-10-20 16:47:38 t 1 1 128291 516 0.00 2019-10-20 16:35:38 2019-10-20 16:49:19 t 1 1 128295 562 0.00 2019-10-20 16:49:52 2019-10-20 16:50:40 t 1 1 128296 562 0.00 2019-10-20 16:51:11 2019-10-20 16:51:46 t 1 1 128297 554 0.00 2019-10-20 16:49:39 2019-10-20 16:51:54 t 1 1 128302 520 0.00 2019-10-20 16:49:44 2019-10-20 16:55:30 t 1 1 128305 522 0.00 2019-10-20 16:56:43 2019-10-20 16:56:45 t 1 1 128308 327 0.00 2019-10-20 16:57:31 2019-10-20 16:58:35 t 1 1 128309 516 0.00 2019-10-20 16:57:33 2019-10-20 17:00:43 t 1 1 128310 522 0.00 2019-10-20 17:01:06 2019-10-20 17:01:17 t 1 1 128313 562 0.00 2019-10-20 16:58:51 2019-10-20 17:03:29 t 1 1 128315 512 0.00 2019-10-20 16:24:55 2019-10-20 17:04:46 t 1 1 128319 520 0.00 2019-10-20 16:56:36 2019-10-20 17:07:22 t 1 1 128323 327 0.00 2019-10-20 17:08:00 2019-10-20 17:10:30 t 1 1 128325 306 0.00 2019-10-20 17:09:06 2019-10-20 17:14:23 t 1 1 128327 445 0.00 2019-10-20 16:05:55 2019-10-20 17:15:46 t 1 1 128334 501 0.00 2019-10-20 17:21:31 2019-10-20 17:21:40 t 1 1 128339 520 0.00 2019-10-20 17:21:33 2019-10-20 17:25:34 t 1 1 128343 562 0.00 2019-10-20 17:27:39 2019-10-20 17:27:54 t 1 1 128346 522 0.00 2019-10-20 17:28:27 2019-10-20 17:28:35 t 1 1 128349 501 0.00 2019-10-20 17:30:37 2019-10-20 17:30:46 t 1 1 128351 562 0.00 2019-10-20 17:29:28 2019-10-20 17:30:57 t 1 1 128355 501 0.00 2019-10-20 17:32:38 2019-10-20 17:32:40 t 1 1 128356 520 0.00 2019-10-20 17:25:34 2019-10-20 17:33:25 t 1 1 128359 327 0.00 2019-10-20 17:33:46 2019-10-20 17:34:22 t 1 1 128360 522 0.00 2019-10-20 17:33:16 2019-10-20 17:35:45 t 1 1 128363 522 0.00 2019-10-20 17:36:17 2019-10-20 17:36:19 t 1 1 128364 520 0.00 2019-10-20 17:33:30 2019-10-20 17:36:47 t 1 1 128369 562 0.00 2019-10-20 17:40:29 2019-10-20 17:40:47 t 1 1 128371 501 0.00 2019-10-20 17:42:41 2019-10-20 17:42:49 t 1 1 128372 501 0.00 2019-10-20 17:42:58 2019-10-20 17:43:07 t 1 1 128374 501 0.00 2019-10-20 17:43:41 2019-10-20 17:43:42 t 1 1 128375 522 0.00 2019-10-20 17:36:24 2019-10-20 17:44:06 t 1 1 128376 562 0.00 2019-10-20 17:43:59 2019-10-20 17:44:23 t 1 1 128385 506 0.00 2019-10-20 17:46:07 2019-10-20 17:47:33 t 1 1 128389 501 0.00 2019-10-20 17:48:31 2019-10-20 17:48:39 t 1 1 128395 445 0.00 2019-10-20 17:34:29 2019-10-20 17:50:54 t 1 1 128400 327 0.00 2019-10-20 17:52:23 2019-10-20 17:53:26 t 1 1 128402 570 0.00 2019-10-20 16:48:36 2019-10-20 17:54:37 t 1 1 128405 522 0.00 2019-10-20 17:56:29 2019-10-20 17:56:55 t 1 1 128408 562 0.00 2019-10-20 17:58:10 2019-10-20 17:59:35 t 1 1 128411 562 0.00 2019-10-20 18:01:03 2019-10-20 18:01:20 t 1 1 128414 327 0.00 2019-10-20 18:01:30 2019-10-20 18:02:38 t 1 1 128417 522 0.00 2019-10-20 18:03:58 2019-10-20 18:04:07 t 1 1 128420 562 0.00 2019-10-20 18:03:49 2019-10-20 18:04:44 t 1 1 128423 516 0.00 2019-10-20 18:04:11 2019-10-20 18:07:43 t 1 1 128424 562 0.00 2019-10-20 18:10:27 2019-10-20 18:10:53 t 1 1 128425 296 0.00 2019-10-20 18:11:51 2019-10-20 18:11:51 f 1 2 128427 445 0.00 2019-10-20 18:06:43 2019-10-20 18:13:56 t 1 1 128428 498 0.00 2019-10-20 18:04:38 2019-10-20 18:14:35 t 1 2 128431 562 0.00 2019-10-20 18:11:54 2019-10-20 18:17:22 t 1 1 128432 501 0.00 2019-10-20 17:51:19 2019-10-20 18:17:38 t 1 1 128433 306 0.00 2019-10-20 18:11:35 2019-10-20 18:18:07 t 1 1 128438 583 0.00 2019-10-20 17:47:47 2019-10-20 18:25:15 t 1 1 128442 449 0.00 2019-10-20 18:27:15 2019-10-20 18:27:36 t 1 1 128445 522 0.00 2019-10-20 18:28:27 2019-10-20 18:28:57 t 1 1 128454 562 0.00 2019-10-20 18:34:17 2019-10-20 18:34:28 t 1 1 128457 536 0.00 2019-10-20 18:18:18 2019-10-20 18:37:38 t 1 1 128458 522 0.00 2019-10-20 18:28:56 2019-10-20 18:38:15 t 1 1 128460 445 0.00 2019-10-20 18:33:14 2019-10-20 18:39:26 t 1 1 128464 528 0.00 2019-10-20 18:33:31 2019-10-20 18:43:37 t 1 1 128472 536 0.00 2019-10-20 18:37:55 2019-10-20 18:50:31 t 1 1 128473 522 0.00 2019-10-20 18:38:42 2019-10-20 18:51:19 t 1 1 128482 583 0.00 2019-10-20 18:35:25 2019-10-20 18:55:45 t 1 1 128485 581 0.00 2019-10-20 18:46:28 2019-10-20 18:57:35 t 1 1 128488 581 0.00 2019-10-20 18:58:05 2019-10-20 19:00:33 t 1 1 128491 451 0.00 2019-10-20 18:47:45 2019-10-20 19:01:53 t 1 1 128497 481 0.00 2019-10-20 19:01:16 2019-10-20 19:07:45 t 1 1 128499 562 0.00 2019-10-20 19:06:50 2019-10-20 19:08:49 t 1 1 128505 520 0.00 2019-10-20 19:13:35 2019-10-20 19:16:05 t 1 1 128508 520 0.00 2019-10-20 19:16:08 2019-10-20 19:21:33 t 1 1 128509 416 0.00 2019-10-20 18:33:01 2019-10-20 19:24:05 t 1 1 128510 445 0.00 2019-10-20 18:57:45 2019-10-20 19:26:46 t 1 1 128511 585 0.00 2019-10-20 19:21:50 2019-10-20 19:27:26 t 1 1 128513 562 0.00 2019-10-20 19:28:37 2019-10-20 19:29:59 t 1 1 128516 445 0.00 2019-10-20 19:27:03 2019-10-20 19:32:45 t 1 1 128519 296 0.00 2019-10-20 19:35:54 2019-10-20 19:35:54 f 1 2 128521 520 0.00 2019-10-20 19:35:56 2019-10-20 19:37:05 t 1 1 128523 372 0.00 2019-10-20 18:58:08 2019-10-20 19:38:13 t 1 2 128524 538 0.00 2019-10-20 19:25:57 2019-10-20 19:39:26 t 1 1 128525 520 0.00 2019-10-20 19:37:05 2019-10-20 19:39:45 t 1 1 128526 562 0.00 2019-10-20 19:39:21 2019-10-20 19:40:00 t 1 1 128530 578 0.00 2019-10-20 18:04:14 2019-10-20 19:41:41 t 1 1 128531 520 0.00 2019-10-20 19:39:45 2019-10-20 19:41:45 t 1 1 128533 220 0.00 2019-10-20 18:48:19 2019-10-20 19:43:25 t 1 2 128260 501 0.00 2019-10-20 16:31:19 2019-10-20 16:32:04 t 1 1 128264 536 0.00 2019-10-20 16:28:44 2019-10-20 16:34:32 t 1 1 128265 501 0.00 2019-10-20 16:34:37 2019-10-20 16:34:45 t 1 1 128266 456 0.00 2019-10-20 16:23:44 2019-10-20 16:35:10 t 1 1 128267 501 0.00 2019-10-20 16:35:37 2019-10-20 16:35:45 t 1 1 128269 522 0.00 2019-10-20 16:20:43 2019-10-20 16:36:24 t 1 1 128270 501 0.00 2019-10-20 16:36:38 2019-10-20 16:36:45 t 1 1 128274 562 0.00 2019-10-20 16:38:13 2019-10-20 16:38:37 t 1 1 128275 554 0.00 2019-10-20 16:28:16 2019-10-20 16:39:29 t 1 1 128278 296 0.00 2019-10-20 16:41:37 2019-10-20 16:41:37 f 1 2 128279 562 0.00 2019-10-20 16:41:51 2019-10-20 16:42:00 t 1 1 128282 306 0.00 2019-10-20 16:38:35 2019-10-20 16:42:44 t 1 1 128288 327 0.00 2019-10-20 16:37:12 2019-10-20 16:48:06 t 1 1 128293 520 0.00 2019-10-20 16:43:05 2019-10-20 16:49:44 t 1 1 128300 522 0.00 2019-10-20 16:52:12 2019-10-20 16:55:23 t 1 1 128307 522 0.00 2019-10-20 16:57:58 2019-10-20 16:58:03 t 1 1 128311 522 0.00 2019-10-20 17:00:26 2019-10-20 17:01:47 t 1 1 128314 501 0.00 2019-10-20 17:03:55 2019-10-20 17:04:03 t 1 1 128316 306 0.00 2019-10-20 16:58:25 2019-10-20 17:04:47 t 1 1 128320 501 0.00 2019-10-20 17:05:10 2019-10-20 17:07:47 t 1 1 128324 585 0.00 2019-10-20 17:10:28 2019-10-20 17:10:52 t 1 1 128328 512 0.00 2019-10-20 17:12:45 2019-10-20 17:15:52 t 1 1 128329 522 0.00 2019-10-20 17:02:52 2019-10-20 17:18:00 t 1 1 128331 501 0.00 2019-10-20 17:13:53 2019-10-20 17:19:28 t 1 1 128332 501 0.00 2019-10-20 17:19:38 2019-10-20 17:20:47 t 1 1 128337 327 0.00 2019-10-20 17:20:27 2019-10-20 17:23:36 t 1 1 128338 327 0.00 2019-10-20 17:23:43 2019-10-20 17:23:52 t 1 1 128340 562 0.00 2019-10-20 17:04:17 2019-10-20 17:25:50 t 1 1 128341 562 0.00 2019-10-20 17:26:33 2019-10-20 17:26:43 t 1 1 128342 562 0.00 2019-10-20 17:27:14 2019-10-20 17:27:27 t 1 1 128344 562 0.00 2019-10-20 17:28:16 2019-10-20 17:28:29 t 1 1 128347 306 0.00 2019-10-20 17:28:48 2019-10-20 17:29:27 t 1 1 128348 501 0.00 2019-10-20 17:29:37 2019-10-20 17:29:47 t 1 1 128352 538 0.00 2019-10-20 17:19:31 2019-10-20 17:31:29 t 1 1 128354 522 0.00 2019-10-20 17:31:47 2019-10-20 17:31:58 t 1 1 128358 445 0.00 2019-10-20 17:15:26 2019-10-20 17:33:57 t 1 1 128362 522 0.00 2019-10-20 17:35:45 2019-10-20 17:36:12 t 1 1 128366 522 0.00 2019-10-20 17:36:11 2019-10-20 17:37:12 t 1 1 128367 501 0.00 2019-10-20 17:38:24 2019-10-20 17:38:34 t 1 1 128368 520 0.00 2019-10-20 17:36:47 2019-10-20 17:40:44 t 1 1 128370 501 0.00 2019-10-20 17:41:59 2019-10-20 17:42:09 t 1 1 128373 538 0.00 2019-10-20 17:37:10 2019-10-20 17:43:37 t 1 1 128378 501 0.00 2019-10-20 17:44:41 2019-10-20 17:44:54 t 1 1 128379 562 0.00 2019-10-20 17:44:53 2019-10-20 17:45:21 t 1 1 128383 501 0.00 2019-10-20 17:46:34 2019-10-20 17:46:42 t 1 1 128384 501 0.00 2019-10-20 17:47:05 2019-10-20 17:47:14 t 1 1 128388 501 0.00 2019-10-20 17:48:15 2019-10-20 17:48:24 t 1 1 128392 501 0.00 2019-10-20 17:49:15 2019-10-20 17:49:23 t 1 1 128397 327 0.00 2019-10-20 17:49:38 2019-10-20 17:51:21 t 1 1 128398 578 0.00 2019-10-20 16:48:14 2019-10-20 17:52:01 t 1 1 128404 522 0.00 2019-10-20 17:56:04 2019-10-20 17:56:14 t 1 1 128409 520 0.00 2019-10-20 17:56:00 2019-10-20 18:00:50 t 1 1 128415 306 0.00 2019-10-20 17:59:16 2019-10-20 18:03:17 t 1 1 128419 514 0.00 2019-10-20 16:25:20 2019-10-20 18:04:23 t 1 1 128421 520 0.00 2019-10-20 18:01:22 2019-10-20 18:05:14 t 1 1 128429 522 0.00 2019-10-20 18:14:29 2019-10-20 18:14:40 t 1 1 128439 522 0.00 2019-10-20 18:25:12 2019-10-20 18:25:36 t 1 1 128441 562 0.00 2019-10-20 18:20:34 2019-10-20 18:26:10 t 1 1 128444 562 0.00 2019-10-20 18:26:39 2019-10-20 18:28:56 t 1 1 128447 416 0.00 2019-10-20 16:15:46 2019-10-20 18:29:43 t 1 1 128449 520 0.00 2019-10-20 18:05:13 2019-10-20 18:30:22 t 1 1 128450 416 0.00 2019-10-20 18:30:04 2019-10-20 18:32:32 t 1 1 128451 445 0.00 2019-10-20 18:15:23 2019-10-20 18:33:12 t 1 1 128452 562 0.00 2019-10-20 18:29:29 2019-10-20 18:33:44 t 1 1 128461 522 0.00 2019-10-20 18:38:30 2019-10-20 18:39:48 t 1 1 128462 327 0.00 2019-10-20 18:12:34 2019-10-20 18:41:12 t 1 1 128466 512 0.00 2019-10-20 17:29:52 2019-10-20 18:44:55 t 1 1 128468 562 0.00 2019-10-20 18:47:16 2019-10-20 18:47:43 t 1 1 128476 472 0.00 2019-10-20 18:52:36 2019-10-20 18:52:36 f 1 1 128478 472 0.00 2019-10-20 18:52:47 2019-10-20 18:52:47 f 1 1 128480 516 0.00 2019-10-20 18:36:08 2019-10-20 18:54:18 t 1 1 128483 445 0.00 2019-10-20 18:51:24 2019-10-20 18:55:48 t 1 1 128487 562 0.00 2019-10-20 18:58:11 2019-10-20 18:58:36 t 1 1 128490 562 0.00 2019-10-20 19:00:17 2019-10-20 19:01:30 t 1 1 128494 520 0.00 2019-10-20 19:03:03 2019-10-20 19:05:06 t 1 1 128495 574 0.00 2019-10-20 15:17:44 2019-10-20 19:06:21 t 1 1 128498 536 0.00 2019-10-20 18:53:02 2019-10-20 19:08:31 t 1 1 128501 520 0.00 2019-10-20 19:04:12 2019-10-20 19:10:51 t 1 1 128502 520 0.00 2019-10-20 19:10:50 2019-10-20 19:12:07 t 1 1 128503 520 0.00 2019-10-20 19:12:33 2019-10-20 19:13:30 t 1 1 128504 456 0.00 2019-10-20 19:08:01 2019-10-20 19:13:59 t 1 1 128507 562 0.00 2019-10-20 19:17:54 2019-10-20 19:18:31 t 1 1 128512 220 0.00 2019-10-20 19:27:26 2019-10-20 19:28:45 t 1 1 128515 520 0.00 2019-10-20 19:23:58 2019-10-20 19:31:49 t 1 1 128517 520 0.00 2019-10-20 19:31:49 2019-10-20 19:33:48 t 1 1 128522 445 0.00 2019-10-20 19:33:02 2019-10-20 19:37:11 t 1 1 128527 481 0.00 2019-10-20 19:07:45 2019-10-20 19:40:01 t 1 1 128534 562 0.00 2019-10-20 19:42:10 2019-10-20 19:43:35 t 1 1 128535 296 0.00 2019-10-20 19:44:12 2019-10-20 19:44:12 f 1 2 128542 520 0.00 2019-10-20 19:47:46 2019-10-20 19:49:30 t 1 1 128543 585 0.00 2019-10-20 19:48:42 2019-10-20 19:50:18 t 1 1 128550 212 0.00 2019-10-20 19:58:14 2019-10-20 19:58:14 f 1 2 128555 520 0.00 2019-10-20 20:05:24 2019-10-20 20:07:12 t 1 1 128557 570 0.00 2019-10-20 19:57:42 2019-10-20 20:09:34 t 1 1 128558 566 0.00 2019-10-20 19:58:52 2019-10-20 20:10:39 t 1 1 128559 538 0.00 2019-10-20 19:39:30 2019-10-20 20:11:50 t 1 1 128560 538 0.00 2019-10-20 20:11:53 2019-10-20 20:17:10 t 1 1 128567 327 0.00 2019-10-20 19:55:40 2019-10-20 20:23:23 t 1 1 128573 220 0.00 2019-10-20 19:49:29 2019-10-20 20:30:10 t 1 2 128575 574 0.00 2019-10-20 19:06:21 2019-10-20 20:31:16 t 1 1 128577 520 0.00 2019-10-20 20:31:31 2019-10-20 20:34:16 t 1 1 128579 514 0.00 2019-10-20 20:27:47 2019-10-20 20:36:01 t 1 1 128580 456 0.00 2019-10-20 20:23:56 2019-10-20 20:40:18 t 1 1 128585 536 0.00 2019-10-20 20:41:42 2019-10-20 20:45:27 t 1 1 128587 570 0.00 2019-10-20 20:41:18 2019-10-20 20:50:51 t 1 1 128588 456 0.00 2019-10-20 20:40:18 2019-10-20 20:51:11 t 1 1 128591 512 0.00 2019-10-20 20:52:11 2019-10-20 20:56:16 t 1 1 128481 562 0.00 2019-10-20 18:54:53 2019-10-20 18:55:23 t 1 1 128484 327 0.00 2019-10-20 18:41:12 2019-10-20 18:57:12 t 1 1 128486 445 0.00 2019-10-20 18:56:08 2019-10-20 18:57:46 t 1 1 128489 481 0.00 2019-10-20 18:50:28 2019-10-20 19:01:16 t 1 1 128492 562 0.00 2019-10-20 19:01:42 2019-10-20 19:02:06 t 1 1 128493 520 0.00 2019-10-20 18:53:09 2019-10-20 19:03:03 t 1 1 128496 562 0.00 2019-10-20 19:07:08 2019-10-20 19:07:38 t 1 1 128500 562 0.00 2019-10-20 19:08:44 2019-10-20 19:10:23 t 1 1 128506 585 0.00 2019-10-20 19:14:28 2019-10-20 19:16:38 t 1 1 128514 581 0.00 2019-10-20 19:29:28 2019-10-20 19:31:16 t 1 1 128518 296 0.00 2019-10-20 19:34:41 2019-10-20 19:34:41 f 1 2 128520 520 0.00 2019-10-20 19:33:48 2019-10-20 19:35:56 t 1 1 128528 562 0.00 2019-10-20 19:40:37 2019-10-20 19:40:48 t 1 1 128529 562 0.00 2019-10-20 19:41:16 2019-10-20 19:41:28 t 1 1 128532 514 0.00 2019-10-20 19:17:29 2019-10-20 19:42:07 t 1 1 128537 581 0.00 2019-10-20 19:40:08 2019-10-20 19:46:30 t 1 1 128539 570 0.00 2019-10-20 18:16:18 2019-10-20 19:48:30 t 1 1 128540 585 0.00 2019-10-20 19:38:06 2019-10-20 19:48:42 t 1 1 128545 520 0.00 2019-10-20 19:49:30 2019-10-20 19:51:32 t 1 1 128546 566 0.00 2019-10-20 19:45:08 2019-10-20 19:53:00 t 1 1 128547 411 0.00 2019-10-20 19:53:04 2019-10-20 19:53:04 f 1 1 128548 570 0.00 2019-10-20 19:57:25 2019-10-20 19:57:38 t 1 1 128549 562 0.00 2019-10-20 19:48:40 2019-10-20 19:58:00 t 1 1 128551 566 0.00 2019-10-20 19:53:00 2019-10-20 19:58:52 t 1 1 128552 361 0.00 2019-10-20 19:54:09 2019-10-20 19:59:45 t 1 2 128553 481 0.00 2019-10-20 19:40:01 2019-10-20 20:02:25 t 1 1 128562 528 0.00 2019-10-20 19:37:24 2019-10-20 20:18:25 t 1 1 128566 445 0.00 2019-10-20 19:37:24 2019-10-20 20:23:03 t 1 1 128568 528 0.00 2019-10-20 20:18:46 2019-10-20 20:23:30 t 1 1 128569 416 0.00 2019-10-20 19:24:05 2019-10-20 20:24:03 t 1 1 128578 566 0.00 2019-10-20 20:28:01 2019-10-20 20:34:51 t 1 1 128581 327 0.00 2019-10-20 20:38:19 2019-10-20 20:40:27 t 1 1 128582 327 0.00 2019-10-20 20:40:34 2019-10-20 20:41:07 t 1 1 128589 514 0.00 2019-10-20 20:36:01 2019-10-20 20:51:51 t 1 1 128590 566 0.00 2019-10-20 20:44:19 2019-10-20 20:54:17 t 1 1 128592 512 0.00 2019-10-20 20:56:16 2019-10-20 20:57:49 t 1 1 128594 327 0.00 2019-10-20 20:58:18 2019-10-20 21:01:47 t 1 1 128595 570 0.00 2019-10-20 20:50:51 2019-10-20 21:03:38 t 1 1 128596 538 0.00 2019-10-20 20:51:54 2019-10-20 21:04:25 t 1 1 128598 331 0.00 2019-10-20 20:56:36 2019-10-20 21:06:46 t 1 1 128600 327 0.00 2019-10-20 21:11:30 2019-10-20 21:12:29 t 1 1 128602 327 0.00 2019-10-20 21:13:15 2019-10-20 21:14:02 t 1 1 128606 516 0.00 2019-10-20 20:20:02 2019-10-20 21:21:36 t 1 1 128609 516 0.00 2019-10-20 21:22:00 2019-10-20 21:25:41 t 1 1 128614 520 0.00 2019-10-20 21:29:55 2019-10-20 21:31:43 t 1 1 128615 585 0.00 2019-10-20 21:27:53 2019-10-20 21:32:17 t 1 1 128619 481 0.00 2019-10-20 20:02:25 2019-10-20 21:35:25 t 1 1 128623 564 0.00 2019-10-20 19:10:09 2019-10-20 21:37:43 t 1 1 128627 581 0.00 2019-10-20 21:39:51 2019-10-20 21:40:30 t 1 1 128632 445 0.00 2019-10-20 21:40:46 2019-10-20 21:45:05 t 1 1 128637 220 0.00 2019-10-20 21:47:21 2019-10-20 21:50:06 t 1 2 128641 476 0.00 2019-10-20 21:57:48 2019-10-20 21:57:48 f 1 2 128644 516 0.00 2019-10-20 21:25:43 2019-10-20 21:59:43 t 1 1 128647 512 0.00 2019-10-20 21:47:25 2019-10-20 22:01:35 t 1 1 128648 325 0.00 2019-10-20 20:52:31 2019-10-20 22:02:37 t 1 2 128652 327 0.00 2019-10-20 21:49:47 2019-10-20 22:05:52 t 1 1 128653 445 0.00 2019-10-20 21:51:45 2019-10-20 22:06:25 t 1 1 128657 538 0.00 2019-10-20 21:47:16 2019-10-20 22:09:57 t 1 1 128661 581 0.00 2019-10-20 22:12:36 2019-10-20 22:12:53 t 1 1 128662 536 0.00 2019-10-20 22:10:09 2019-10-20 22:13:16 t 1 1 128665 536 0.00 2019-10-20 22:13:34 2019-10-20 22:14:16 t 1 1 128667 536 0.00 2019-10-20 22:14:45 2019-10-20 22:15:06 t 1 1 128669 528 0.00 2019-10-20 22:15:08 2019-10-20 22:15:53 t 1 1 128672 514 0.00 2019-10-20 22:08:00 2019-10-20 22:16:47 t 1 1 128680 445 0.00 2019-10-20 22:06:25 2019-10-20 22:22:42 t 1 1 128681 514 0.00 2019-10-20 22:16:47 2019-10-20 22:23:28 t 1 1 128683 564 0.00 2019-10-20 21:37:43 2019-10-20 22:24:23 t 1 1 128684 587 0.00 2019-10-20 22:19:42 2019-10-20 22:24:40 t 1 1 128687 566 0.00 2019-10-20 21:53:04 2019-10-20 22:27:24 t 1 1 128688 556 0.00 2019-10-20 22:23:29 2019-10-20 22:28:44 t 1 1 128689 501 0.00 2019-10-20 22:00:21 2019-10-20 22:29:00 t 1 1 128692 501 0.00 2019-10-20 22:30:05 2019-10-20 22:30:22 t 1 1 128693 501 0.00 2019-10-20 22:30:22 2019-10-20 22:30:33 t 1 1 128696 587 0.00 2019-10-20 22:30:11 2019-10-20 22:31:31 t 1 1 128698 501 0.00 2019-10-20 22:31:59 2019-10-20 22:32:09 t 1 1 128705 311 0.00 2019-10-20 22:30:33 2019-10-20 22:38:35 t 1 2 128709 538 0.00 2019-10-20 22:39:59 2019-10-20 22:40:00 t 1 1 128711 481 0.00 2019-10-20 21:51:14 2019-10-20 22:42:40 t 1 1 128713 501 0.00 2019-10-20 22:43:12 2019-10-20 22:43:23 t 1 1 128714 556 0.00 2019-10-20 22:39:06 2019-10-20 22:44:07 t 1 1 128715 501 0.00 2019-10-20 22:44:37 2019-10-20 22:44:38 t 1 1 128716 501 0.00 2019-10-20 22:43:34 2019-10-20 22:45:50 t 1 1 128722 449 0.00 2019-10-20 22:40:46 2019-10-20 22:48:19 t 1 1 128723 581 0.00 2019-10-20 22:31:21 2019-10-20 22:49:28 t 1 1 128725 570 0.00 2019-10-20 22:47:34 2019-10-20 22:49:38 t 1 1 128728 449 0.00 2019-10-20 22:49:12 2019-10-20 22:51:36 t 1 1 128733 587 0.00 2019-10-20 22:52:09 2019-10-20 22:53:41 t 1 1 128737 587 0.00 2019-10-20 22:58:15 2019-10-20 23:00:25 t 1 1 128740 327 0.00 2019-10-20 22:42:44 2019-10-20 23:04:40 t 1 1 128742 587 0.00 2019-10-20 23:00:37 2019-10-20 23:06:32 t 1 1 128747 512 0.00 2019-10-20 23:09:07 2019-10-20 23:09:31 t 1 1 128749 449 0.00 2019-10-20 23:08:45 2019-10-20 23:15:26 t 1 1 128752 449 0.00 2019-10-20 23:15:26 2019-10-20 23:19:20 t 1 1 128755 385 0.00 2019-10-20 23:21:07 2019-10-20 23:21:07 f 1 2 128758 408 0.00 2019-10-20 23:17:10 2019-10-20 23:21:42 t 1 1 128761 327 0.00 2019-10-20 23:04:40 2019-10-20 23:24:24 t 1 1 128765 408 0.00 2019-10-20 23:21:42 2019-10-20 23:27:27 t 1 1 128768 327 0.00 2019-10-20 23:24:24 2019-10-20 23:28:35 t 1 1 128770 587 0.00 2019-10-20 23:25:01 2019-10-20 23:30:40 t 1 1 128772 306 0.00 2019-10-20 23:18:59 2019-10-20 23:33:35 t 1 1 128776 472 0.00 2019-10-20 23:35:24 2019-10-20 23:35:24 f 1 1 128779 472 0.00 2019-10-20 23:35:40 2019-10-20 23:35:40 f 1 1 128781 528 0.00 2019-10-20 23:40:34 2019-10-20 23:41:04 t 1 1 128784 416 0.00 2019-10-20 23:26:02 2019-10-20 23:42:21 t 1 1 128785 528 0.00 2019-10-20 23:43:23 2019-10-20 23:43:46 t 1 1 128787 528 0.00 2019-10-20 23:45:12 2019-10-20 23:45:36 t 1 1 128799 528 0.00 2019-10-20 23:58:58 2019-10-21 00:10:45 t 1 1 128536 562 0.00 2019-10-20 19:44:31 2019-10-20 19:44:43 t 1 1 128538 520 0.00 2019-10-20 19:41:45 2019-10-20 19:47:46 t 1 1 128541 220 0.00 2019-10-20 19:34:18 2019-10-20 19:48:43 t 1 2 128544 516 0.00 2019-10-20 19:46:44 2019-10-20 19:51:25 t 1 1 128554 520 0.00 2019-10-20 19:51:32 2019-10-20 20:05:24 t 1 1 128556 585 0.00 2019-10-20 20:04:06 2019-10-20 20:08:05 t 1 1 128561 514 0.00 2019-10-20 19:42:07 2019-10-20 20:18:03 t 1 1 128563 566 0.00 2019-10-20 20:10:39 2019-10-20 20:21:12 t 1 1 128564 514 0.00 2019-10-20 20:18:03 2019-10-20 20:22:25 t 1 1 128565 520 0.00 2019-10-20 20:07:12 2019-10-20 20:22:55 t 1 1 128570 514 0.00 2019-10-20 20:22:25 2019-10-20 20:27:47 t 1 1 128571 566 0.00 2019-10-20 20:21:12 2019-10-20 20:28:01 t 1 1 128572 570 0.00 2019-10-20 20:09:34 2019-10-20 20:28:08 t 1 1 128574 585 0.00 2019-10-20 20:24:52 2019-10-20 20:31:06 t 1 1 128576 520 0.00 2019-10-20 20:22:55 2019-10-20 20:31:31 t 1 1 128583 570 0.00 2019-10-20 20:28:08 2019-10-20 20:41:18 t 1 1 128584 566 0.00 2019-10-20 20:34:51 2019-10-20 20:44:19 t 1 1 128586 327 0.00 2019-10-20 20:46:53 2019-10-20 20:48:17 t 1 1 128599 570 0.00 2019-10-20 21:03:38 2019-10-20 21:10:23 t 1 1 128601 451 0.00 2019-10-20 21:04:30 2019-10-20 21:14:02 t 1 1 128603 570 0.00 2019-10-20 21:10:23 2019-10-20 21:20:24 t 1 1 128604 587 0.00 2019-10-20 21:18:14 2019-10-20 21:21:16 t 1 1 128607 327 0.00 2019-10-20 21:14:28 2019-10-20 21:21:45 t 1 1 128611 570 0.00 2019-10-20 21:20:24 2019-10-20 21:25:55 t 1 1 128612 538 0.00 2019-10-20 21:15:45 2019-10-20 21:26:42 t 1 1 128613 520 0.00 2019-10-20 21:23:45 2019-10-20 21:29:44 t 1 1 128617 327 0.00 2019-10-20 21:23:47 2019-10-20 21:34:26 t 1 1 128622 416 0.00 2019-10-20 20:24:03 2019-10-20 21:36:55 t 1 1 128625 520 0.00 2019-10-20 21:35:10 2019-10-20 21:39:50 t 1 1 128630 451 0.00 2019-10-20 21:32:24 2019-10-20 21:43:01 t 1 1 128635 566 0.00 2019-10-20 21:45:20 2019-10-20 21:49:13 t 1 1 128640 476 0.00 2019-10-20 21:57:23 2019-10-20 21:57:23 f 1 2 128643 544 0.00 2019-10-20 21:34:14 2019-10-20 21:58:43 t 1 2 128645 536 0.00 2019-10-20 21:22:20 2019-10-20 21:59:56 t 1 1 128646 528 0.00 2019-10-20 21:43:14 2019-10-20 22:01:13 t 1 1 128650 581 0.00 2019-10-20 21:40:58 2019-10-20 22:04:47 t 1 1 128658 581 0.00 2019-10-20 22:09:17 2019-10-20 22:09:59 t 1 1 128663 581 0.00 2019-10-20 22:13:21 2019-10-20 22:14:06 t 1 1 128668 536 0.00 2019-10-20 22:15:27 2019-10-20 22:15:45 t 1 1 128670 536 0.00 2019-10-20 22:16:04 2019-10-20 22:16:04 f 1 1 128674 536 0.00 2019-10-20 22:15:53 2019-10-20 22:17:50 t 1 1 128675 587 0.00 2019-10-20 22:18:16 2019-10-20 22:18:35 t 1 1 128676 516 0.00 2019-10-20 22:13:00 2019-10-20 22:19:17 t 1 1 128678 578 0.00 2019-10-20 22:11:33 2019-10-20 22:21:56 t 1 1 128679 327 0.00 2019-10-20 22:05:52 2019-10-20 22:22:40 t 1 1 128685 581 0.00 2019-10-20 22:24:05 2019-10-20 22:24:42 t 1 1 128690 361 0.00 2019-10-20 22:06:53 2019-10-20 22:29:16 t 1 2 128694 581 0.00 2019-10-20 22:30:31 2019-10-20 22:30:47 t 1 1 128697 501 0.00 2019-10-20 22:31:03 2019-10-20 22:32:00 t 1 1 128699 556 0.00 2019-10-20 22:28:44 2019-10-20 22:32:45 t 1 1 128700 501 0.00 2019-10-20 22:33:05 2019-10-20 22:34:05 t 1 1 128702 501 0.00 2019-10-20 22:34:30 2019-10-20 22:34:38 t 1 1 128703 538 0.00 2019-10-20 22:09:57 2019-10-20 22:37:09 t 1 1 128707 538 0.00 2019-10-20 22:37:37 2019-10-20 22:39:34 t 1 1 128720 501 0.00 2019-10-20 22:47:32 2019-10-20 22:47:42 t 1 1 128724 514 0.00 2019-10-20 22:23:28 2019-10-20 22:49:36 t 1 1 128726 501 0.00 2019-10-20 22:47:50 2019-10-20 22:49:50 t 1 1 128730 587 0.00 2019-10-20 22:51:39 2019-10-20 22:51:55 t 1 1 128738 449 0.00 2019-10-20 22:54:24 2019-10-20 23:02:52 t 1 1 128739 564 0.00 2019-10-20 22:24:23 2019-10-20 23:03:30 t 1 1 128743 416 0.00 2019-10-20 21:36:00 2019-10-20 23:08:42 t 1 1 128746 512 0.00 2019-10-20 22:59:54 2019-10-20 23:09:03 t 1 1 128748 587 0.00 2019-10-20 23:12:30 2019-10-20 23:15:04 t 1 1 128754 528 0.00 2019-10-20 22:25:58 2019-10-20 23:21:01 t 1 1 128756 514 0.00 2019-10-20 22:49:36 2019-10-20 23:21:13 t 1 1 128757 461 0.00 2019-10-20 23:21:24 2019-10-20 23:21:24 f 1 2 128762 587 0.00 2019-10-20 23:17:24 2019-10-20 23:25:01 t 1 1 128763 528 0.00 2019-10-20 23:25:06 2019-10-20 23:25:18 t 1 1 128766 528 0.00 2019-10-20 23:27:27 2019-10-20 23:27:58 t 1 1 128769 483 0.00 2019-10-20 21:45:01 2019-10-20 23:30:18 t 1 1 128771 528 0.00 2019-10-20 23:32:30 2019-10-20 23:32:38 t 1 1 128773 528 0.00 2019-10-20 23:32:54 2019-10-20 23:33:39 t 1 1 128775 472 0.00 2019-10-20 23:35:17 2019-10-20 23:35:17 f 1 1 128777 587 0.00 2019-10-20 23:33:10 2019-10-20 23:35:25 t 1 1 128778 472 0.00 2019-10-20 23:35:32 2019-10-20 23:35:32 f 1 1 128780 528 0.00 2019-10-20 23:39:07 2019-10-20 23:39:50 t 1 1 128786 528 0.00 2019-10-20 23:44:05 2019-10-20 23:44:23 t 1 1 128791 578 0.00 2019-10-20 22:21:56 2019-10-20 23:48:53 t 1 1 128793 564 0.00 2019-10-20 23:41:53 2019-10-20 23:54:22 t 1 1 128794 528 0.00 2019-10-20 23:48:25 2019-10-20 23:58:29 t 1 1 128796 578 0.00 2019-10-20 23:54:17 2019-10-21 00:01:57 t 1 1 128804 578 0.00 2019-10-21 00:13:34 2019-10-21 00:19:24 t 1 1 128807 587 0.00 2019-10-21 00:16:42 2019-10-21 00:25:40 t 1 1 128808 587 0.00 2019-10-21 00:26:11 2019-10-21 00:26:37 t 1 1 128809 558 0.00 2019-10-21 00:22:13 2019-10-21 00:27:31 t 1 1 128810 587 0.00 2019-10-21 00:26:58 2019-10-21 00:28:46 t 1 1 128811 556 0.00 2019-10-20 23:58:48 2019-10-21 00:29:40 t 1 1 128813 503 0.00 2019-10-21 00:22:53 2019-10-21 00:30:49 t 1 1 128816 578 0.00 2019-10-21 00:29:55 2019-10-21 00:34:56 t 1 1 128818 488 0.00 2019-10-21 00:37:10 2019-10-21 00:38:19 t 1 1 128821 587 0.00 2019-10-21 00:32:17 2019-10-21 00:43:24 t 1 1 128822 501 0.00 2019-10-20 22:54:22 2019-10-21 00:56:29 t 1 1 128826 566 0.00 2019-10-20 22:35:33 2019-10-21 01:10:00 t 1 1 128829 587 0.00 2019-10-21 01:15:31 2019-10-21 01:18:07 t 1 1 128830 587 0.00 2019-10-21 01:18:37 2019-10-21 01:19:52 t 1 1 128832 587 0.00 2019-10-21 01:21:50 2019-10-21 01:23:25 t 1 1 128833 501 0.00 2019-10-21 00:56:29 2019-10-21 01:26:02 t 1 1 128839 501 0.00 2019-10-21 01:26:02 2019-10-21 01:34:24 t 1 1 128842 501 0.00 2019-10-21 01:36:13 2019-10-21 01:36:14 t 1 1 128854 566 0.00 2019-10-21 03:01:54 2019-10-21 03:08:01 t 1 1 128856 483 0.00 2019-10-21 03:17:10 2019-10-21 03:21:59 t 1 1 128857 483 0.00 2019-10-21 03:22:32 2019-10-21 03:33:57 t 1 1 128858 483 0.00 2019-10-21 03:39:26 2019-10-21 03:41:40 t 1 1 128859 331 0.00 2019-10-21 03:12:09 2019-10-21 03:45:54 t 1 1 128860 445 0.00 2019-10-20 22:22:42 2019-10-21 03:46:19 t 1 1 128865 220 0.00 2019-10-21 04:01:39 2019-10-21 04:09:49 t 1 2 128869 445 0.00 2019-10-21 04:31:44 2019-10-21 04:43:26 t 1 1 128593 445 0.00 2019-10-20 20:23:05 2019-10-20 20:58:06 t 1 1 128597 451 0.00 2019-10-20 20:53:22 2019-10-20 21:04:30 t 1 1 128605 331 0.00 2019-10-20 21:06:46 2019-10-20 21:21:32 t 1 1 128608 451 0.00 2019-10-20 21:14:02 2019-10-20 21:22:51 t 1 1 128610 514 0.00 2019-10-20 20:51:51 2019-10-20 21:25:45 t 1 1 128616 520 0.00 2019-10-20 21:31:49 2019-10-20 21:32:31 t 1 1 128618 520 0.00 2019-10-20 21:32:53 2019-10-20 21:34:56 t 1 1 128620 570 0.00 2019-10-20 21:26:05 2019-10-20 21:35:26 t 1 1 128621 578 0.00 2019-10-20 19:41:41 2019-10-20 21:36:06 t 1 1 128624 581 0.00 2019-10-20 21:38:18 2019-10-20 21:39:45 t 1 1 128626 445 0.00 2019-10-20 21:00:08 2019-10-20 21:40:29 t 1 1 128628 520 0.00 2019-10-20 21:39:50 2019-10-20 21:40:34 t 1 1 128629 520 0.00 2019-10-20 21:40:34 2019-10-20 21:42:08 t 1 1 128631 327 0.00 2019-10-20 21:43:46 2019-10-20 21:44:45 t 1 1 128633 566 0.00 2019-10-20 20:54:17 2019-10-20 21:45:21 t 1 1 128634 512 0.00 2019-10-20 21:29:06 2019-10-20 21:47:05 t 1 1 128636 520 0.00 2019-10-20 21:42:08 2019-10-20 21:49:25 t 1 1 128638 306 0.00 2019-10-20 21:47:40 2019-10-20 21:52:46 t 1 1 128639 566 0.00 2019-10-20 21:49:13 2019-10-20 21:53:05 t 1 1 128642 514 0.00 2019-10-20 21:25:45 2019-10-20 21:58:25 t 1 1 128649 528 0.00 2019-10-20 22:02:16 2019-10-20 22:03:20 t 1 1 128651 581 0.00 2019-10-20 22:04:52 2019-10-20 22:05:30 t 1 1 128654 514 0.00 2019-10-20 21:58:25 2019-10-20 22:08:00 t 1 1 128655 581 0.00 2019-10-20 22:08:22 2019-10-20 22:08:24 t 1 1 128656 372 0.00 2019-10-20 20:09:26 2019-10-20 22:09:31 t 1 2 128659 536 0.00 2019-10-20 21:59:56 2019-10-20 22:10:09 t 1 1 128660 578 0.00 2019-10-20 21:36:06 2019-10-20 22:11:33 t 1 1 128664 570 0.00 2019-10-20 21:35:26 2019-10-20 22:14:07 t 1 1 128666 536 0.00 2019-10-20 22:14:24 2019-10-20 22:14:37 t 1 1 128671 528 0.00 2019-10-20 22:16:03 2019-10-20 22:16:29 t 1 1 128673 536 0.00 2019-10-20 22:15:14 2019-10-20 22:16:50 t 1 1 128677 587 0.00 2019-10-20 22:18:48 2019-10-20 22:19:33 t 1 1 128682 556 0.00 2019-10-20 21:54:49 2019-10-20 22:23:29 t 1 1 128686 587 0.00 2019-10-20 22:26:46 2019-10-20 22:27:20 t 1 1 128691 449 0.00 2019-10-20 22:27:52 2019-10-20 22:29:30 t 1 1 128695 583 0.00 2019-10-20 22:24:33 2019-10-20 22:30:50 t 1 1 128701 501 0.00 2019-10-20 22:33:56 2019-10-20 22:34:08 t 1 1 128704 449 0.00 2019-10-20 22:29:30 2019-10-20 22:37:13 t 1 1 128706 556 0.00 2019-10-20 22:32:45 2019-10-20 22:39:06 t 1 1 128708 306 0.00 2019-10-20 22:32:01 2019-10-20 22:40:00 t 1 1 128710 449 0.00 2019-10-20 22:37:13 2019-10-20 22:40:46 t 1 1 128712 327 0.00 2019-10-20 22:22:40 2019-10-20 22:42:44 t 1 1 128717 306 0.00 2019-10-20 22:40:29 2019-10-20 22:46:07 t 1 1 128718 501 0.00 2019-10-20 22:46:59 2019-10-20 22:47:09 t 1 1 128719 501 0.00 2019-10-20 22:47:18 2019-10-20 22:47:33 t 1 1 128721 501 0.00 2019-10-20 22:48:01 2019-10-20 22:48:12 t 1 1 128727 587 0.00 2019-10-20 22:31:34 2019-10-20 22:51:22 t 1 1 128729 481 0.00 2019-10-20 22:42:40 2019-10-20 22:51:37 t 1 1 128731 449 0.00 2019-10-20 22:51:36 2019-10-20 22:52:34 t 1 1 128732 501 0.00 2019-10-20 22:52:41 2019-10-20 22:53:15 t 1 1 128734 408 0.00 2019-10-20 22:52:27 2019-10-20 22:56:29 t 1 1 128735 587 0.00 2019-10-20 22:54:30 2019-10-20 22:57:57 t 1 1 128736 512 0.00 2019-10-20 22:01:35 2019-10-20 22:59:47 t 1 1 128741 556 0.00 2019-10-20 22:44:07 2019-10-20 23:06:22 t 1 1 128744 449 0.00 2019-10-20 23:02:52 2019-10-20 23:08:45 t 1 1 128745 587 0.00 2019-10-20 23:06:39 2019-10-20 23:08:49 t 1 1 128750 587 0.00 2019-10-20 23:15:20 2019-10-20 23:17:13 t 1 1 128751 416 0.00 2019-10-20 23:08:49 2019-10-20 23:18:12 t 1 1 128753 476 0.00 2019-10-20 23:20:48 2019-10-20 23:20:48 f 1 2 128759 416 0.00 2019-10-20 23:18:26 2019-10-20 23:21:44 t 1 1 128760 528 0.00 2019-10-20 23:21:35 2019-10-20 23:22:03 t 1 1 128764 416 0.00 2019-10-20 23:21:50 2019-10-20 23:25:56 t 1 1 128767 220 0.00 2019-10-20 23:20:36 2019-10-20 23:28:00 t 1 2 128774 544 0.00 2019-10-20 23:23:44 2019-10-20 23:33:49 t 1 2 128782 564 0.00 2019-10-20 23:36:02 2019-10-20 23:41:53 t 1 1 128783 528 0.00 2019-10-20 23:41:24 2019-10-20 23:42:15 t 1 1 128788 585 0.00 2019-10-20 23:32:57 2019-10-20 23:46:01 t 1 1 128789 528 0.00 2019-10-20 23:47:19 2019-10-20 23:47:43 t 1 1 128790 587 0.00 2019-10-20 23:35:29 2019-10-20 23:48:33 t 1 1 128792 578 0.00 2019-10-20 23:48:53 2019-10-20 23:54:17 t 1 1 128795 544 0.00 2019-10-20 23:48:35 2019-10-20 23:58:40 t 1 2 128797 516 0.00 2019-10-20 23:44:37 2019-10-21 00:03:55 t 1 1 128798 578 0.00 2019-10-21 00:01:57 2019-10-21 00:06:15 t 1 1 128800 528 0.00 2019-10-21 00:11:51 2019-10-21 00:13:29 t 1 1 128803 516 0.00 2019-10-21 00:03:55 2019-10-21 00:18:28 t 1 1 128805 578 0.00 2019-10-21 00:19:24 2019-10-21 00:24:47 t 1 1 128815 587 0.00 2019-10-21 00:32:01 2019-10-21 00:33:04 t 1 1 128817 556 0.00 2019-10-21 00:29:40 2019-10-21 00:35:19 t 1 1 128819 570 0.00 2019-10-21 00:27:43 2019-10-21 00:40:30 t 1 1 128820 408 0.00 2019-10-20 23:27:27 2019-10-21 00:42:18 t 1 1 128824 574 0.00 2019-10-20 23:30:22 2019-10-21 01:01:39 t 1 1 128827 587 0.00 2019-10-21 01:10:57 2019-10-21 01:12:01 t 1 1 128828 587 0.00 2019-10-21 01:14:06 2019-10-21 01:15:03 t 1 1 128831 514 0.00 2019-10-21 01:01:05 2019-10-21 01:21:28 t 1 1 128836 587 0.00 2019-10-21 01:27:54 2019-10-21 01:29:50 t 1 1 128837 514 0.00 2019-10-21 01:21:28 2019-10-21 01:30:26 t 1 1 128838 587 0.00 2019-10-21 01:28:13 2019-10-21 01:33:05 t 1 1 128840 501 0.00 2019-10-21 01:35:13 2019-10-21 01:35:22 t 1 1 128843 501 0.00 2019-10-21 01:37:13 2019-10-21 01:37:14 t 1 1 128844 501 0.00 2019-10-21 01:38:13 2019-10-21 01:38:14 t 1 1 128845 514 0.00 2019-10-21 01:35:49 2019-10-21 01:42:23 t 1 1 128848 514 0.00 2019-10-21 01:42:23 2019-10-21 01:48:29 t 1 1 128849 514 0.00 2019-10-21 01:48:29 2019-10-21 01:59:08 t 1 1 128850 220 0.00 2019-10-21 02:03:44 2019-10-21 02:06:30 t 1 1 128855 566 0.00 2019-10-21 03:08:01 2019-10-21 03:10:31 t 1 1 128862 578 0.00 2019-10-21 00:34:56 2019-10-21 03:54:32 t 1 1 128863 331 0.00 2019-10-21 03:48:57 2019-10-21 03:55:50 t 1 1 128864 395 0.00 2019-10-21 02:10:06 2019-10-21 03:56:46 t 1 2 128866 445 0.00 2019-10-21 03:52:47 2019-10-21 04:14:10 t 1 1 128867 445 0.00 2019-10-21 04:14:09 2019-10-21 04:32:16 t 1 1 128868 331 0.00 2019-10-21 03:55:50 2019-10-21 04:34:08 t 1 1 128870 331 0.00 2019-10-21 04:34:31 2019-10-21 04:48:36 t 1 1 128874 430 0.00 2019-10-21 05:17:12 2019-10-21 05:28:45 t 1 1 128885 430 0.00 2019-10-21 05:49:32 2019-10-21 05:51:51 t 1 1 128887 430 0.00 2019-10-21 05:53:15 2019-10-21 05:53:20 t 1 1 128889 430 0.00 2019-10-21 05:53:52 2019-10-21 05:54:08 t 1 1 128891 430 0.00 2019-10-21 05:54:21 2019-10-21 05:54:28 t 1 1 128801 578 0.00 2019-10-21 00:06:15 2019-10-21 00:13:34 t 1 1 128802 587 0.00 2019-10-20 23:48:56 2019-10-21 00:16:34 t 1 1 128806 570 0.00 2019-10-21 00:02:47 2019-10-21 00:25:05 t 1 1 128812 578 0.00 2019-10-21 00:24:47 2019-10-21 00:29:55 t 1 1 128814 587 0.00 2019-10-21 00:29:30 2019-10-21 00:31:06 t 1 1 128823 514 0.00 2019-10-20 23:21:13 2019-10-21 01:01:05 t 1 1 128825 587 0.00 2019-10-21 00:44:49 2019-10-21 01:01:50 t 1 1 128834 587 0.00 2019-10-21 01:23:30 2019-10-21 01:26:02 t 1 1 128835 587 0.00 2019-10-21 01:26:34 2019-10-21 01:27:42 t 1 1 128841 514 0.00 2019-10-21 01:30:26 2019-10-21 01:35:49 t 1 1 128846 516 0.00 2019-10-21 01:36:57 2019-10-21 01:44:40 t 1 1 128847 501 0.00 2019-10-21 01:45:59 2019-10-21 01:47:07 t 1 1 128851 514 0.00 2019-10-21 01:59:08 2019-10-21 02:10:28 t 1 1 128852 514 0.00 2019-10-21 02:10:28 2019-10-21 02:16:01 t 1 1 128853 566 0.00 2019-10-21 01:09:59 2019-10-21 03:01:54 t 1 1 128861 331 0.00 2019-10-21 03:45:54 2019-10-21 03:48:57 t 1 1 128871 483 0.00 2019-10-21 04:55:47 2019-10-21 05:00:40 t 1 1 128875 430 0.00 2019-10-21 05:28:51 2019-10-21 05:29:03 t 1 1 128879 430 0.00 2019-10-21 05:37:39 2019-10-21 05:37:41 t 1 1 128880 430 0.00 2019-10-21 05:39:45 2019-10-21 05:40:02 t 1 1 128884 430 0.00 2019-10-21 05:49:19 2019-10-21 05:49:26 t 1 1 128886 430 0.00 2019-10-21 05:52:21 2019-10-21 05:52:59 t 1 1 128890 430 0.00 2019-10-21 05:54:08 2019-10-21 05:54:10 t 1 1 128895 430 0.00 2019-10-21 06:00:23 2019-10-21 06:00:25 t 1 1 128896 430 0.00 2019-10-21 06:00:44 2019-10-21 06:00:44 f 1 1 128898 430 0.00 2019-10-21 05:59:56 2019-10-21 06:01:51 t 1 1 128899 220 0.00 2019-10-21 06:09:40 2019-10-21 06:12:49 t 1 1 128903 445 0.00 2019-10-21 04:43:31 2019-10-21 06:36:46 t 1 1 128905 566 0.00 2019-10-21 06:36:40 2019-10-21 06:48:27 t 1 1 128908 331 0.00 2019-10-21 06:24:57 2019-10-21 06:55:06 t 1 1 128911 570 0.00 2019-10-21 07:06:01 2019-10-21 07:07:34 t 1 1 128913 306 0.00 2019-10-21 07:04:39 2019-10-21 07:08:27 t 1 1 128915 306 0.00 2019-10-21 07:13:07 2019-10-21 07:17:33 t 1 1 128918 445 0.00 2019-10-21 07:19:07 2019-10-21 07:23:04 t 1 1 128919 220 0.00 2019-10-21 06:42:03 2019-10-21 07:27:08 t 1 2 128921 551 0.00 2019-10-21 06:52:54 2019-10-21 07:30:58 t 1 1 128925 331 0.00 2019-10-21 06:55:12 2019-10-21 07:36:28 t 1 1 128926 516 0.00 2019-10-21 07:36:01 2019-10-21 07:38:25 t 1 1 128929 562 0.00 2019-10-21 07:35:26 2019-10-21 07:40:55 t 1 1 128933 562 0.00 2019-10-21 07:43:22 2019-10-21 07:44:23 t 1 1 128934 430 0.00 2019-10-21 07:43:28 2019-10-21 07:45:17 t 1 1 128935 562 0.00 2019-10-21 07:48:07 2019-10-21 07:48:26 t 1 1 128938 570 0.00 2019-10-21 07:50:43 2019-10-21 07:52:59 t 1 1 128941 456 0.00 2019-10-21 07:48:27 2019-10-21 08:04:12 t 1 1 128942 562 0.00 2019-10-21 07:54:30 2019-10-21 08:05:29 t 1 1 128944 501 0.00 2019-10-21 08:06:46 2019-10-21 08:06:54 t 1 1 128945 562 0.00 2019-10-21 08:05:29 2019-10-21 08:07:16 t 1 1 128950 516 0.00 2019-10-21 08:08:20 2019-10-21 08:13:14 t 1 1 128953 562 0.00 2019-10-21 08:14:08 2019-10-21 08:15:26 t 1 1 128954 562 0.00 2019-10-21 08:17:18 2019-10-21 08:18:21 t 1 1 128960 562 0.00 2019-10-21 08:38:14 2019-10-21 08:40:01 t 1 1 128965 445 0.00 2019-10-21 08:41:46 2019-10-21 08:47:30 t 1 1 128968 412 0.00 2019-10-21 08:51:54 2019-10-21 08:53:02 t 1 1 128970 445 0.00 2019-10-21 08:49:34 2019-10-21 08:53:11 t 1 1 128972 562 0.00 2019-10-21 08:41:40 2019-10-21 08:55:36 t 1 1 128973 568 0.00 2019-10-21 08:54:45 2019-10-21 08:56:38 t 1 1 128977 412 0.00 2019-10-21 08:58:27 2019-10-21 09:00:53 t 1 1 128988 514 0.00 2019-10-21 09:10:58 2019-10-21 09:19:19 t 1 1 128991 488 0.00 2019-10-21 09:13:02 2019-10-21 09:21:59 t 1 1 128994 483 0.00 2019-10-21 09:24:48 2019-10-21 09:25:27 t 1 1 128999 481 0.00 2019-10-21 09:16:18 2019-10-21 09:30:08 t 1 1 129001 514 0.00 2019-10-21 09:19:19 2019-10-21 09:35:44 t 1 1 129003 481 0.00 2019-10-21 09:30:08 2019-10-21 09:38:56 t 1 1 129006 375 0.00 2019-10-21 09:41:29 2019-10-21 09:42:35 t 1 1 129008 583 0.00 2019-10-21 09:36:54 2019-10-21 09:45:03 t 1 1 129013 512 0.00 2019-10-21 09:30:57 2019-10-21 09:50:53 t 1 1 129014 562 0.00 2019-10-21 09:44:18 2019-10-21 09:51:26 t 1 1 129021 472 0.00 2019-10-21 09:54:29 2019-10-21 09:54:29 f 1 1 129026 472 0.00 2019-10-21 09:55:29 2019-10-21 09:55:29 f 1 1 129031 564 0.00 2019-10-21 09:21:51 2019-10-21 09:56:48 t 1 1 129035 562 0.00 2019-10-21 09:59:49 2019-10-21 10:00:08 t 1 1 129038 408 0.00 2019-10-21 09:46:34 2019-10-21 10:01:21 t 1 1 129040 516 0.00 2019-10-21 10:01:25 2019-10-21 10:02:21 t 1 1 129047 562 0.00 2019-10-21 10:05:36 2019-10-21 10:07:18 t 1 1 129052 499 0.00 2019-10-21 01:33:03 2019-10-21 10:08:47 t 1 1 129055 456 0.00 2019-10-21 10:07:58 2019-10-21 10:11:50 t 1 1 129057 512 0.00 2019-10-21 10:07:59 2019-10-21 10:12:21 t 1 1 129058 456 0.00 2019-10-21 10:11:50 2019-10-21 10:13:20 t 1 1 129059 412 0.00 2019-10-21 10:03:46 2019-10-21 10:14:27 t 1 1 129060 562 0.00 2019-10-21 10:13:56 2019-10-21 10:15:19 t 1 1 129063 501 0.00 2019-10-21 10:11:24 2019-10-21 10:20:25 t 1 1 129069 499 0.00 2019-10-21 10:23:30 2019-10-21 10:32:25 t 1 1 129070 461 0.00 2019-10-21 10:33:14 2019-10-21 10:33:14 f 1 2 129079 499 0.00 2019-10-21 10:32:25 2019-10-21 10:43:37 t 1 1 129083 325 0.00 2019-10-21 09:44:44 2019-10-21 10:44:49 t 1 2 129085 562 0.00 2019-10-21 10:45:28 2019-10-21 10:46:04 t 1 1 129090 581 0.00 2019-10-21 10:48:02 2019-10-21 10:48:40 t 1 1 129091 499 0.00 2019-10-21 10:43:37 2019-10-21 10:49:54 t 1 1 129092 528 0.00 2019-10-21 10:51:27 2019-10-21 10:51:49 t 1 1 129093 306 0.00 2019-10-21 10:44:26 2019-10-21 10:53:12 t 1 1 129094 528 0.00 2019-10-21 10:54:22 2019-10-21 10:54:29 t 1 1 129095 499 0.00 2019-10-21 10:49:54 2019-10-21 10:55:55 t 1 1 129097 562 0.00 2019-10-21 10:57:12 2019-10-21 10:57:41 t 1 1 129100 512 0.00 2019-10-21 10:12:58 2019-10-21 10:59:11 t 1 1 129103 306 0.00 2019-10-21 11:01:01 2019-10-21 11:06:25 t 1 1 129104 528 0.00 2019-10-21 11:07:11 2019-10-21 11:07:22 t 1 1 129106 581 0.00 2019-10-21 10:49:46 2019-10-21 11:08:02 t 1 1 129107 562 0.00 2019-10-21 11:08:02 2019-10-21 11:08:23 t 1 1 129110 445 0.00 2019-10-21 10:58:49 2019-10-21 11:12:14 t 1 1 129111 528 0.00 2019-10-21 11:12:40 2019-10-21 11:12:46 t 1 1 129112 538 0.00 2019-10-21 11:09:16 2019-10-21 11:13:17 t 1 1 129114 562 0.00 2019-10-21 11:12:15 2019-10-21 11:14:58 t 1 1 129118 501 0.00 2019-10-21 11:07:45 2019-10-21 11:19:56 t 1 1 129119 562 0.00 2019-10-21 11:17:53 2019-10-21 11:20:10 t 1 1 129125 445 0.00 2019-10-21 11:22:39 2019-10-21 11:24:59 t 1 1 129126 416 0.00 2019-10-21 10:33:08 2019-10-21 11:26:05 t 1 1 129128 562 0.00 2019-10-21 11:27:10 2019-10-21 11:27:43 t 1 1 128872 483 0.00 2019-10-21 05:00:40 2019-10-21 05:03:23 t 1 1 128873 331 0.00 2019-10-21 04:49:54 2019-10-21 05:19:19 t 1 1 128876 220 0.00 2019-10-21 05:28:55 2019-10-21 05:31:51 t 1 1 128877 430 0.00 2019-10-21 05:32:30 2019-10-21 05:32:38 t 1 1 128878 430 0.00 2019-10-21 05:35:31 2019-10-21 05:35:37 t 1 1 128881 430 0.00 2019-10-21 05:44:30 2019-10-21 05:44:43 t 1 1 128882 430 0.00 2019-10-21 05:44:13 2019-10-21 05:45:13 t 1 1 128883 331 0.00 2019-10-21 05:19:25 2019-10-21 05:46:57 t 1 1 128888 430 0.00 2019-10-21 05:53:37 2019-10-21 05:53:39 t 1 1 128892 520 0.00 2019-10-21 05:36:20 2019-10-21 05:57:43 t 1 1 128894 430 0.00 2019-10-21 05:59:34 2019-10-21 05:59:39 t 1 1 128902 566 0.00 2019-10-21 06:23:18 2019-10-21 06:36:40 t 1 1 128914 483 0.00 2019-10-21 07:10:56 2019-10-21 07:12:32 t 1 1 128920 562 0.00 2019-10-21 07:03:21 2019-10-21 07:29:31 t 1 1 128923 445 0.00 2019-10-21 07:31:32 2019-10-21 07:32:50 t 1 1 128928 430 0.00 2019-10-21 07:39:31 2019-10-21 07:40:09 t 1 1 128931 430 0.00 2019-10-21 07:41:31 2019-10-21 07:41:47 t 1 1 128936 430 0.00 2019-10-21 07:48:53 2019-10-21 07:49:55 t 1 1 128937 306 0.00 2019-10-21 07:47:39 2019-10-21 07:52:26 t 1 1 128940 445 0.00 2019-10-21 07:34:46 2019-10-21 08:03:34 t 1 1 128948 568 0.00 2019-10-21 07:57:19 2019-10-21 08:09:00 t 1 1 128951 306 0.00 2019-10-21 08:12:41 2019-10-21 08:14:23 t 1 1 128955 568 0.00 2019-10-21 08:18:05 2019-10-21 08:21:02 t 1 1 128957 562 0.00 2019-10-21 08:24:53 2019-10-21 08:25:14 t 1 1 57231 131 0.00 2017-12-20 08:58:55 2017-12-20 08:59:28 t 1 1 57233 131 0.00 2017-12-20 08:59:51 2017-12-20 09:01:21 t 1 1 57235 131 0.00 2017-12-20 09:04:12 2017-12-20 09:05:46 t 1 1 128958 445 0.00 2019-10-21 08:14:51 2019-10-21 08:32:29 t 1 1 128966 412 0.00 2019-10-21 07:54:51 2019-10-21 08:47:36 t 1 1 128967 430 0.00 2019-10-21 08:50:38 2019-10-21 08:51:51 t 1 1 128969 306 0.00 2019-10-21 08:44:09 2019-10-21 08:53:08 t 1 1 128975 445 0.00 2019-10-21 08:56:20 2019-10-21 08:57:38 t 1 1 128976 412 0.00 2019-10-21 08:53:01 2019-10-21 08:58:19 t 1 1 128979 512 0.00 2019-10-21 08:57:07 2019-10-21 09:09:12 t 1 1 128981 488 0.00 2019-10-21 09:05:20 2019-10-21 09:13:02 t 1 1 128982 562 0.00 2019-10-21 09:13:43 2019-10-21 09:13:53 t 1 1 128983 481 0.00 2019-10-21 07:35:52 2019-10-21 09:14:24 t 1 1 128986 306 0.00 2019-10-21 09:04:14 2019-10-21 09:19:01 t 1 1 128989 548 0.00 2019-10-21 09:21:29 2019-10-21 09:21:29 f 1 2 128992 488 0.00 2019-10-21 09:21:59 2019-10-21 09:23:33 t 1 1 128995 568 0.00 2019-10-21 09:19:49 2019-10-21 09:25:31 t 1 1 128996 306 0.00 2019-10-21 09:21:52 2019-10-21 09:27:10 t 1 1 129002 472 0.00 2019-10-21 09:36:13 2019-10-21 09:36:13 f 1 1 129004 472 0.00 2019-10-21 09:40:32 2019-10-21 09:40:32 f 1 1 129005 375 0.00 2019-10-21 09:37:02 2019-10-21 09:41:30 t 1 1 129007 412 0.00 2019-10-21 09:30:46 2019-10-21 09:42:51 t 1 1 129009 528 0.00 2019-10-21 09:27:46 2019-10-21 09:46:04 t 1 1 129010 412 0.00 2019-10-21 09:45:39 2019-10-21 09:47:47 t 1 1 129012 514 0.00 2019-10-21 09:35:44 2019-10-21 09:49:51 t 1 1 129015 583 0.00 2019-10-21 09:49:06 2019-10-21 09:51:32 t 1 1 129017 472 0.00 2019-10-21 09:53:54 2019-10-21 09:53:54 f 1 1 129018 472 0.00 2019-10-21 09:54:06 2019-10-21 09:54:06 f 1 1 129020 472 0.00 2019-10-21 09:54:15 2019-10-21 09:54:15 f 1 1 129023 472 0.00 2019-10-21 09:54:53 2019-10-21 09:54:53 f 1 1 129025 472 0.00 2019-10-21 09:55:11 2019-10-21 09:55:11 f 1 1 129028 472 0.00 2019-10-21 09:55:48 2019-10-21 09:55:48 f 1 1 129030 472 0.00 2019-10-21 09:55:56 2019-10-21 09:55:56 f 1 1 129033 562 0.00 2019-10-21 09:57:05 2019-10-21 09:57:30 t 1 1 129034 220 0.00 2019-10-21 09:57:27 2019-10-21 09:58:46 t 1 1 129041 412 0.00 2019-10-21 09:58:43 2019-10-21 10:02:30 t 1 1 129043 581 0.00 2019-10-21 09:39:48 2019-10-21 10:04:26 t 1 1 129048 583 0.00 2019-10-21 10:00:26 2019-10-21 10:07:29 t 1 1 129050 375 0.00 2019-10-21 10:07:00 2019-10-21 10:08:02 t 1 1 129054 526 0.00 2019-10-21 09:14:19 2019-10-21 10:09:24 t 1 2 129062 416 0.00 2019-10-21 10:01:50 2019-10-21 10:20:11 t 1 1 129065 306 0.00 2019-10-21 10:10:27 2019-10-21 10:21:30 t 1 1 129068 562 0.00 2019-10-21 10:30:56 2019-10-21 10:31:23 t 1 1 57365 131 0.00 2017-12-24 07:47:24 2017-12-24 07:48:50 t 1 1 129072 445 0.00 2019-10-21 08:57:39 2019-10-21 10:36:34 t 1 1 129073 306 0.00 2019-10-21 10:32:52 2019-10-21 10:37:25 t 1 1 129075 528 0.00 2019-10-21 10:40:08 2019-10-21 10:40:47 t 1 1 129077 589 0.00 2019-10-21 10:30:22 2019-10-21 10:41:16 t 1 1 129081 445 0.00 2019-10-21 10:36:44 2019-10-21 10:44:15 t 1 1 129082 528 0.00 2019-10-21 10:44:16 2019-10-21 10:44:28 t 1 1 129086 581 0.00 2019-10-21 10:45:42 2019-10-21 10:46:25 t 1 1 129087 375 0.00 2019-10-21 10:08:02 2019-10-21 10:46:30 t 1 1 129096 568 0.00 2019-10-21 10:38:22 2019-10-21 10:55:56 t 1 1 129099 445 0.00 2019-10-21 10:44:31 2019-10-21 10:58:51 t 1 1 129101 528 0.00 2019-10-21 10:59:49 2019-10-21 11:00:14 t 1 1 129102 528 0.00 2019-10-21 11:04:51 2019-10-21 11:05:20 t 1 1 129108 528 0.00 2019-10-21 11:09:15 2019-10-21 11:09:38 t 1 1 129109 562 0.00 2019-10-21 11:11:12 2019-10-21 11:11:53 t 1 1 129115 306 0.00 2019-10-21 11:10:19 2019-10-21 11:15:50 t 1 1 129116 445 0.00 2019-10-21 11:12:57 2019-10-21 11:16:43 t 1 1 129117 570 0.00 2019-10-21 08:31:38 2019-10-21 11:19:22 t 1 1 129120 306 0.00 2019-10-21 11:18:08 2019-10-21 11:20:39 t 1 1 129122 528 0.00 2019-10-21 11:22:15 2019-10-21 11:22:39 t 1 1 129127 562 0.00 2019-10-21 11:24:19 2019-10-21 11:27:05 t 1 1 129129 581 0.00 2019-10-21 11:14:00 2019-10-21 11:29:25 t 1 1 129132 562 0.00 2019-10-21 11:30:31 2019-10-21 11:31:27 t 1 1 129134 416 0.00 2019-10-21 11:26:10 2019-10-21 11:31:57 t 1 1 129138 445 0.00 2019-10-21 11:24:57 2019-10-21 11:38:30 t 1 1 129144 445 0.00 2019-10-21 11:44:07 2019-10-21 11:47:27 t 1 1 129146 514 0.00 2019-10-21 10:19:38 2019-10-21 11:50:36 t 1 1 129147 514 0.00 2019-10-21 11:50:36 2019-10-21 11:52:14 t 1 1 57440 131 0.00 2017-12-27 08:28:22 2017-12-27 08:29:53 t 1 1 129149 581 0.00 2019-10-21 11:45:16 2019-10-21 11:53:25 t 1 1 129150 585 0.00 2019-10-21 11:51:17 2019-10-21 11:54:41 t 1 1 129151 581 0.00 2019-10-21 11:54:31 2019-10-21 11:55:09 t 1 1 129157 375 0.00 2019-10-21 11:46:54 2019-10-21 11:59:06 t 1 1 129159 564 0.00 2019-10-21 09:56:49 2019-10-21 11:59:35 t 1 1 129160 562 0.00 2019-10-21 11:56:07 2019-10-21 12:00:10 t 1 1 129162 528 0.00 2019-10-21 11:53:53 2019-10-21 12:01:38 t 1 1 57464 131 0.00 2017-12-28 07:49:47 2017-12-28 07:50:54 t 1 1 129166 562 0.00 2019-10-21 12:00:40 2019-10-21 12:02:59 t 1 1 129168 220 0.00 2019-10-21 11:47:20 2019-10-21 12:04:56 t 1 1 129169 375 0.00 2019-10-21 12:00:19 2019-10-21 12:05:18 t 1 1 128893 430 0.00 2019-10-21 05:59:21 2019-10-21 05:59:29 t 1 1 128897 430 0.00 2019-10-21 06:00:30 2019-10-21 06:01:31 t 1 1 128900 395 0.00 2019-10-21 04:06:42 2019-10-21 06:15:03 t 1 2 128901 331 0.00 2019-10-21 05:47:03 2019-10-21 06:24:44 t 1 1 128904 220 0.00 2019-10-21 06:39:23 2019-10-21 06:40:20 t 1 2 128906 551 0.00 2019-10-21 06:44:09 2019-10-21 06:52:53 t 1 1 128907 566 0.00 2019-10-21 06:48:28 2019-10-21 06:53:22 t 1 1 128909 585 0.00 2019-10-21 06:49:11 2019-10-21 06:58:49 t 1 1 128910 538 0.00 2019-10-21 00:17:03 2019-10-21 07:04:33 t 1 1 57202 131 0.00 2017-12-18 17:45:29 2017-12-18 17:46:44 t 1 1 57203 131 0.00 2017-12-18 18:13:29 2017-12-18 18:14:44 t 1 1 57205 131 0.00 2017-12-18 21:42:25 2017-12-18 21:43:44 t 1 1 128912 516 0.00 2019-10-21 06:42:26 2019-10-21 07:08:20 t 1 1 128916 445 0.00 2019-10-21 06:36:56 2019-10-21 07:17:45 t 1 1 128917 445 0.00 2019-10-21 07:17:44 2019-10-21 07:18:57 t 1 1 128922 445 0.00 2019-10-21 07:30:34 2019-10-21 07:31:32 t 1 1 128924 430 0.00 2019-10-21 07:28:17 2019-10-21 07:36:15 t 1 1 57234 131 0.00 2017-12-20 09:01:21 2017-12-20 09:02:46 t 1 1 128927 430 0.00 2019-10-21 07:38:43 2019-10-21 07:38:45 t 1 1 128930 430 0.00 2019-10-21 07:40:44 2019-10-21 07:41:19 t 1 1 57241 131 0.00 2017-12-20 11:42:17 2017-12-20 11:43:46 t 1 1 128932 430 0.00 2019-10-21 07:41:59 2019-10-21 07:43:19 t 1 1 128939 416 0.00 2019-10-21 00:00:21 2019-10-21 07:59:53 t 1 1 128943 501 0.00 2019-10-21 08:01:38 2019-10-21 08:05:42 t 1 1 128946 501 0.00 2019-10-21 08:07:47 2019-10-21 08:07:49 t 1 1 128947 220 0.00 2019-10-21 08:06:55 2019-10-21 08:08:22 t 1 1 128949 520 0.00 2019-10-21 08:06:23 2019-10-21 08:11:31 t 1 1 128952 445 0.00 2019-10-21 08:03:34 2019-10-21 08:14:43 t 1 1 128956 568 0.00 2019-10-21 08:20:46 2019-10-21 08:23:38 t 1 1 128959 562 0.00 2019-10-21 08:35:37 2019-10-21 08:36:11 t 1 1 128961 445 0.00 2019-10-21 08:32:29 2019-10-21 08:41:47 t 1 1 128962 583 0.00 2019-10-21 08:40:10 2019-10-21 08:42:14 t 1 1 128963 306 0.00 2019-10-21 08:20:45 2019-10-21 08:44:09 t 1 1 128964 583 0.00 2019-10-21 08:42:14 2019-10-21 08:47:15 t 1 1 128971 445 0.00 2019-10-21 08:53:11 2019-10-21 08:55:30 t 1 1 128974 583 0.00 2019-10-21 08:49:09 2019-10-21 08:56:58 t 1 1 128978 562 0.00 2019-10-21 09:03:03 2019-10-21 09:03:13 t 1 1 128980 514 0.00 2019-10-21 02:16:01 2019-10-21 09:10:58 t 1 1 128984 562 0.00 2019-10-21 09:16:24 2019-10-21 09:17:53 t 1 1 128985 562 0.00 2019-10-21 09:18:12 2019-10-21 09:18:56 t 1 1 128987 512 0.00 2019-10-21 09:11:14 2019-10-21 09:19:08 t 1 1 128990 564 0.00 2019-10-21 08:21:54 2019-10-21 09:21:51 t 1 1 128993 562 0.00 2019-10-21 09:24:18 2019-10-21 09:24:30 t 1 1 128997 220 0.00 2019-10-21 09:23:51 2019-10-21 09:27:26 t 1 1 128998 412 0.00 2019-10-21 09:03:34 2019-10-21 09:28:22 t 1 1 129000 562 0.00 2019-10-21 09:34:54 2019-10-21 09:35:05 t 1 1 129011 583 0.00 2019-10-21 09:45:03 2019-10-21 09:49:06 t 1 1 129016 472 0.00 2019-10-21 09:53:48 2019-10-21 09:53:48 f 1 1 129019 412 0.00 2019-10-21 09:50:57 2019-10-21 09:54:10 t 1 1 129022 472 0.00 2019-10-21 09:54:36 2019-10-21 09:54:36 f 1 1 129024 472 0.00 2019-10-21 09:55:04 2019-10-21 09:55:04 f 1 1 129027 472 0.00 2019-10-21 09:55:41 2019-10-21 09:55:41 f 1 1 129029 562 0.00 2019-10-21 09:52:37 2019-10-21 09:55:50 t 1 1 129032 516 0.00 2019-10-21 09:52:18 2019-10-21 09:57:11 t 1 1 129036 583 0.00 2019-10-21 09:51:32 2019-10-21 10:00:25 t 1 1 129037 516 0.00 2019-10-21 09:56:58 2019-10-21 10:01:12 t 1 1 129039 306 0.00 2019-10-21 10:00:12 2019-10-21 10:02:16 t 1 1 129042 498 0.00 2019-10-21 09:22:39 2019-10-21 10:02:32 t 1 2 129044 501 0.00 2019-10-21 09:48:18 2019-10-21 10:04:33 t 1 1 129045 562 0.00 2019-10-21 10:03:35 2019-10-21 10:05:12 t 1 1 129046 375 0.00 2019-10-21 09:43:17 2019-10-21 10:07:01 t 1 1 129049 512 0.00 2019-10-21 09:50:53 2019-10-21 10:07:59 t 1 1 129051 408 0.00 2019-10-21 10:01:45 2019-10-21 10:08:32 t 1 1 129053 514 0.00 2019-10-21 09:49:51 2019-10-21 10:09:10 t 1 1 129056 408 0.00 2019-10-21 10:11:23 2019-10-21 10:12:12 t 1 1 129061 514 0.00 2019-10-21 10:09:10 2019-10-21 10:19:38 t 1 1 129064 562 0.00 2019-10-21 10:20:23 2019-10-21 10:20:41 t 1 1 129066 220 0.00 2019-10-21 10:06:10 2019-10-21 10:23:33 t 1 2 129067 416 0.00 2019-10-21 10:20:29 2019-10-21 10:29:27 t 1 1 129071 461 0.00 2019-10-21 10:33:22 2019-10-21 10:33:22 f 1 2 129074 528 0.00 2019-10-21 10:31:20 2019-10-21 10:40:09 t 1 1 129076 562 0.00 2019-10-21 10:40:18 2019-10-21 10:40:47 t 1 1 129078 581 0.00 2019-10-21 10:29:54 2019-10-21 10:43:28 t 1 1 129080 481 0.00 2019-10-21 09:39:09 2019-10-21 10:43:49 t 1 1 129084 528 0.00 2019-10-21 10:45:10 2019-10-21 10:45:21 t 1 1 129088 562 0.00 2019-10-21 10:46:26 2019-10-21 10:46:53 t 1 1 129089 528 0.00 2019-10-21 10:48:01 2019-10-21 10:48:32 t 1 1 129098 568 0.00 2019-10-21 10:56:28 2019-10-21 10:58:32 t 1 1 129105 472 0.00 2019-10-21 11:08:02 2019-10-21 11:08:02 f 1 1 129113 581 0.00 2019-10-21 11:08:02 2019-10-21 11:14:00 t 1 1 129121 445 0.00 2019-10-21 11:16:43 2019-10-21 11:20:54 t 1 1 129123 562 0.00 2019-10-21 11:23:19 2019-10-21 11:24:01 t 1 1 129124 528 0.00 2019-10-21 11:24:23 2019-10-21 11:24:51 t 1 1 129131 528 0.00 2019-10-21 11:30:00 2019-10-21 11:30:38 t 1 1 129133 306 0.00 2019-10-21 11:26:22 2019-10-21 11:31:31 t 1 1 129139 379 0.00 2019-10-21 08:26:32 2019-10-21 11:38:44 t 1 1 129141 445 0.00 2019-10-21 11:38:48 2019-10-21 11:42:16 t 1 1 129142 375 0.00 2019-10-21 10:46:30 2019-10-21 11:46:53 t 1 1 129145 562 0.00 2019-10-21 11:47:53 2019-10-21 11:48:18 t 1 1 129148 562 0.00 2019-10-21 11:52:10 2019-10-21 11:52:26 t 1 1 57444 131 0.00 2017-12-27 11:28:51 2017-12-27 11:29:54 t 1 1 129152 562 0.00 2019-10-21 11:53:25 2019-10-21 11:55:22 t 1 1 129154 220 0.00 2019-10-21 11:25:42 2019-10-21 11:57:01 t 1 2 129155 445 0.00 2019-10-21 11:47:56 2019-10-21 11:57:59 t 1 1 129156 220 0.00 2019-10-21 11:57:06 2019-10-21 11:58:29 t 1 2 129158 220 0.00 2019-10-21 11:58:27 2019-10-21 11:59:12 t 1 2 129161 445 0.00 2019-10-21 11:58:10 2019-10-21 12:00:54 t 1 1 129165 483 0.00 2019-10-21 11:59:36 2019-10-21 12:02:49 t 1 1 129167 445 0.00 2019-10-21 12:00:53 2019-10-21 12:04:12 t 1 1 129174 481 0.00 2019-10-21 10:47:04 2019-10-21 12:16:15 t 1 1 129176 562 0.00 2019-10-21 12:15:24 2019-10-21 12:18:50 t 1 1 129177 562 0.00 2019-10-21 12:18:50 2019-10-21 12:19:25 t 1 1 129178 481 0.00 2019-10-21 12:16:15 2019-10-21 12:20:28 t 1 1 129188 445 0.00 2019-10-21 12:29:42 2019-10-21 12:30:47 t 1 1 129189 445 0.00 2019-10-21 12:30:05 2019-10-21 12:32:15 t 1 1 129191 514 0.00 2019-10-21 11:52:12 2019-10-21 12:33:44 t 1 1 129193 514 0.00 2019-10-21 12:34:26 2019-10-21 12:35:44 t 1 1 129130 562 0.00 2019-10-21 11:29:15 2019-10-21 11:29:37 t 1 1 129135 585 0.00 2019-10-21 10:43:06 2019-10-21 11:32:55 t 1 1 129136 528 0.00 2019-10-21 11:32:45 2019-10-21 11:34:42 t 1 1 129137 512 0.00 2019-10-21 11:07:43 2019-10-21 11:38:04 t 1 1 129140 581 0.00 2019-10-21 11:29:25 2019-10-21 11:41:49 t 1 1 129143 220 0.00 2019-10-21 11:45:39 2019-10-21 11:47:20 t 1 1 129153 516 0.00 2019-10-21 11:54:37 2019-10-21 11:56:44 t 1 1 129163 570 0.00 2019-10-21 11:19:23 2019-10-21 12:01:51 t 1 1 129164 528 0.00 2019-10-21 12:02:10 2019-10-21 12:02:39 t 1 1 129171 483 0.00 2019-10-21 12:02:48 2019-10-21 12:09:33 t 1 1 129175 570 0.00 2019-10-21 12:01:51 2019-10-21 12:17:18 t 1 1 129180 220 0.00 2019-10-21 12:17:13 2019-10-21 12:21:42 t 1 1 129182 562 0.00 2019-10-21 12:21:55 2019-10-21 12:25:22 t 1 1 129184 306 0.00 2019-10-21 11:59:50 2019-10-21 12:29:53 t 1 1 129187 562 0.00 2019-10-21 12:25:32 2019-10-21 12:30:09 t 1 1 129190 501 0.00 2019-10-21 12:21:44 2019-10-21 12:32:41 t 1 1 129198 501 0.00 2019-10-21 12:34:24 2019-10-21 12:38:39 t 1 1 129200 379 0.00 2019-10-21 12:37:05 2019-10-21 12:40:00 t 1 1 57230 131 0.00 2017-12-20 07:46:27 2017-12-20 07:47:46 t 1 1 57232 131 0.00 2017-12-20 08:59:28 2017-12-20 08:59:51 t 1 1 129205 501 0.00 2019-10-21 12:43:19 2019-10-21 12:44:51 t 1 1 57240 131 0.00 2017-12-20 11:37:25 2017-12-20 11:38:46 t 1 1 129206 481 0.00 2019-10-21 12:20:28 2019-10-21 12:49:38 t 1 1 129207 501 0.00 2019-10-21 12:45:29 2019-10-21 12:50:19 t 1 1 129210 570 0.00 2019-10-21 12:45:47 2019-10-21 12:52:25 t 1 1 129211 501 0.00 2019-10-21 12:52:27 2019-10-21 12:53:21 t 1 1 129212 501 0.00 2019-10-21 12:54:24 2019-10-21 12:54:57 t 1 1 129214 558 0.00 2019-10-21 12:42:18 2019-10-21 12:55:45 t 1 1 129219 412 0.00 2019-10-21 10:20:01 2019-10-21 13:01:48 t 1 1 129220 570 0.00 2019-10-21 12:53:47 2019-10-21 13:02:37 t 1 1 129221 501 0.00 2019-10-21 13:02:29 2019-10-21 13:03:02 t 1 1 129223 501 0.00 2019-10-21 13:03:29 2019-10-21 13:03:30 t 1 1 129225 501 0.00 2019-10-21 13:04:20 2019-10-21 13:13:01 t 1 1 129228 538 0.00 2019-10-21 13:18:59 2019-10-21 13:19:50 t 1 1 129232 501 0.00 2019-10-21 13:24:43 2019-10-21 13:24:58 t 1 1 129237 538 0.00 2019-10-21 13:19:50 2019-10-21 13:30:43 t 1 1 129242 327 0.00 2019-10-21 13:40:07 2019-10-21 13:41:54 t 1 1 129245 501 0.00 2019-10-21 13:42:28 2019-10-21 13:43:11 t 1 1 129247 501 0.00 2019-10-21 13:43:20 2019-10-21 13:44:54 t 1 1 129248 501 0.00 2019-10-21 13:44:48 2019-10-21 13:45:00 t 1 1 129249 327 0.00 2019-10-21 13:40:30 2019-10-21 13:46:25 t 1 1 129251 501 0.00 2019-10-21 13:45:16 2019-10-21 13:47:58 t 1 1 129255 520 0.00 2019-10-21 13:45:40 2019-10-21 13:49:49 t 1 1 129256 514 0.00 2019-10-21 13:47:13 2019-10-21 13:49:56 t 1 1 129257 451 0.00 2019-10-21 13:33:48 2019-10-21 13:50:05 t 1 1 129262 562 0.00 2019-10-21 13:58:39 2019-10-21 13:59:41 t 1 1 129268 499 0.00 2019-10-21 13:44:03 2019-10-21 14:04:09 t 1 1 129271 562 0.00 2019-10-21 13:59:59 2019-10-21 14:06:40 t 1 1 129272 422 0.00 2019-10-21 14:00:56 2019-10-21 14:07:12 t 1 1 129275 296 0.00 2019-10-21 14:11:18 2019-10-21 14:11:18 f 1 2 129278 416 0.00 2019-10-21 14:04:40 2019-10-21 14:13:30 t 1 1 129280 562 0.00 2019-10-21 14:06:40 2019-10-21 14:16:07 t 1 1 129285 528 0.00 2019-10-21 14:12:36 2019-10-21 14:21:40 t 1 1 129288 562 0.00 2019-10-21 14:16:07 2019-10-21 14:23:11 t 1 1 129289 422 0.00 2019-10-21 14:16:25 2019-10-21 14:24:34 t 1 1 129291 562 0.00 2019-10-21 14:23:11 2019-10-21 14:25:45 t 1 1 129294 562 0.00 2019-10-21 14:27:27 2019-10-21 14:28:11 t 1 1 129295 220 0.00 2019-10-21 11:59:15 2019-10-21 14:29:20 t 1 2 129302 512 0.00 2019-10-21 14:30:56 2019-10-21 14:33:49 t 1 1 129303 562 0.00 2019-10-21 14:33:21 2019-10-21 14:34:28 t 1 1 129305 499 0.00 2019-10-21 14:04:15 2019-10-21 14:34:34 t 1 1 129315 422 0.00 2019-10-21 14:37:42 2019-10-21 14:45:45 t 1 1 129317 408 0.00 2019-10-21 14:45:47 2019-10-21 14:46:51 t 1 1 129318 562 0.00 2019-10-21 14:47:35 2019-10-21 14:47:55 t 1 1 129321 306 0.00 2019-10-21 14:30:45 2019-10-21 14:50:36 t 1 1 129324 562 0.00 2019-10-21 14:54:15 2019-10-21 14:54:24 t 1 1 129326 422 0.00 2019-10-21 14:45:45 2019-10-21 14:56:24 t 1 1 129332 514 0.00 2019-10-21 13:49:55 2019-10-21 14:58:33 t 1 1 129333 501 0.00 2019-10-21 14:57:59 2019-10-21 14:59:03 t 1 1 129334 562 0.00 2019-10-21 14:58:23 2019-10-21 15:00:07 t 1 1 129335 564 0.00 2019-10-21 11:59:35 2019-10-21 15:02:54 t 1 1 129337 528 0.00 2019-10-21 14:49:09 2019-10-21 15:05:25 t 1 1 129339 562 0.00 2019-10-21 15:06:58 2019-10-21 15:07:48 t 1 1 129344 220 0.00 2019-10-21 15:11:37 2019-10-21 15:11:56 t 1 1 129348 498 0.00 2019-10-21 14:53:09 2019-10-21 15:15:20 t 1 2 129352 562 0.00 2019-10-21 15:17:23 2019-10-21 15:17:54 t 1 1 129366 562 0.00 2019-10-21 15:30:46 2019-10-21 15:31:48 t 1 1 129368 528 0.00 2019-10-21 15:31:01 2019-10-21 15:32:12 t 1 1 129369 556 0.00 2019-10-21 15:18:39 2019-10-21 15:33:28 t 1 1 129370 528 0.00 2019-10-21 15:33:17 2019-10-21 15:33:58 t 1 1 129374 516 0.00 2019-10-21 15:26:49 2019-10-21 15:39:50 t 1 1 129375 528 0.00 2019-10-21 15:41:48 2019-10-21 15:41:59 t 1 1 129379 528 0.00 2019-10-21 15:44:01 2019-10-21 15:44:19 t 1 1 129382 544 0.00 2019-10-21 15:42:54 2019-10-21 15:47:08 t 1 2 129384 556 0.00 2019-10-21 15:33:28 2019-10-21 15:47:49 t 1 1 129385 587 0.00 2019-10-21 15:47:12 2019-10-21 15:47:57 t 1 1 129388 532 0.00 2019-10-21 15:44:12 2019-10-21 15:50:25 t 1 1 129389 562 0.00 2019-10-21 15:49:39 2019-10-21 15:51:02 t 1 1 129392 562 0.00 2019-10-21 15:51:32 2019-10-21 15:52:52 t 1 1 129393 528 0.00 2019-10-21 15:54:26 2019-10-21 15:54:33 t 1 1 129396 528 0.00 2019-10-21 15:55:05 2019-10-21 15:55:51 t 1 1 129397 327 0.00 2019-10-21 15:21:06 2019-10-21 15:56:32 t 1 1 129399 528 0.00 2019-10-21 15:57:37 2019-10-21 15:58:00 t 1 1 129403 585 0.00 2019-10-21 16:04:16 2019-10-21 16:06:34 t 1 1 129405 327 0.00 2019-10-21 16:06:28 2019-10-21 16:08:10 t 1 1 129410 532 0.00 2019-10-21 16:11:13 2019-10-21 16:11:14 t 1 1 129413 528 0.00 2019-10-21 16:07:24 2019-10-21 16:11:39 t 1 1 129415 585 0.00 2019-10-21 16:06:33 2019-10-21 16:12:00 t 1 1 129418 532 0.00 2019-10-21 16:12:26 2019-10-21 16:12:32 t 1 1 129423 532 0.00 2019-10-21 16:13:11 2019-10-21 16:13:14 t 1 1 129424 532 0.00 2019-10-21 16:13:31 2019-10-21 16:13:46 t 1 1 129425 532 0.00 2019-10-21 16:13:59 2019-10-21 16:14:00 t 1 1 129427 416 0.00 2019-10-21 15:56:05 2019-10-21 16:14:12 t 1 1 129428 532 0.00 2019-10-21 16:14:20 2019-10-21 16:14:20 f 1 1 129433 532 0.00 2019-10-21 16:13:19 2019-10-21 16:15:55 t 1 1 129434 587 0.00 2019-10-21 15:48:23 2019-10-21 16:16:42 t 1 1 129437 501 0.00 2019-10-21 16:19:37 2019-10-21 16:20:40 t 1 1 129170 528 0.00 2019-10-21 12:08:17 2019-10-21 12:08:22 t 1 1 129172 220 0.00 2019-10-21 12:04:56 2019-10-21 12:14:30 t 1 1 129173 562 0.00 2019-10-21 12:03:34 2019-10-21 12:15:24 t 1 1 129179 456 0.00 2019-10-21 12:13:36 2019-10-21 12:20:33 t 1 1 129181 528 0.00 2019-10-21 12:10:58 2019-10-21 12:22:40 t 1 1 129183 445 0.00 2019-10-21 12:04:12 2019-10-21 12:27:49 t 1 1 129185 445 0.00 2019-10-21 12:28:13 2019-10-21 12:29:54 t 1 1 129186 375 0.00 2019-10-21 12:05:53 2019-10-21 12:30:00 t 1 1 129192 501 0.00 2019-10-21 12:33:46 2019-10-21 12:33:56 t 1 1 129194 379 0.00 2019-10-21 11:41:14 2019-10-21 12:36:32 t 1 1 129201 562 0.00 2019-10-21 12:30:09 2019-10-21 12:40:09 t 1 1 129202 379 0.00 2019-10-21 12:40:24 2019-10-21 12:41:07 t 1 1 129203 556 0.00 2019-10-21 08:13:54 2019-10-21 12:42:53 t 1 1 129209 501 0.00 2019-10-21 12:51:21 2019-10-21 12:51:55 t 1 1 129217 501 0.00 2019-10-21 13:00:16 2019-10-21 13:00:46 t 1 1 129222 522 0.00 2019-10-21 13:00:34 2019-10-21 13:03:12 t 1 1 129229 501 0.00 2019-10-21 13:18:29 2019-10-21 13:21:36 t 1 1 129231 501 0.00 2019-10-21 13:23:37 2019-10-21 13:23:45 t 1 1 129234 501 0.00 2019-10-21 13:25:37 2019-10-21 13:25:38 t 1 1 129235 499 0.00 2019-10-21 13:00:35 2019-10-21 13:28:05 t 1 1 129238 558 0.00 2019-10-21 13:15:41 2019-10-21 13:34:38 t 1 1 129240 327 0.00 2019-10-21 12:12:51 2019-10-21 13:39:57 t 1 1 129241 583 0.00 2019-10-21 13:38:29 2019-10-21 13:40:49 t 1 1 129252 514 0.00 2019-10-21 12:42:28 2019-10-21 13:48:00 t 1 1 129259 501 0.00 2019-10-21 13:48:44 2019-10-21 13:56:28 t 1 1 129263 583 0.00 2019-10-21 13:57:38 2019-10-21 14:00:49 t 1 1 129264 416 0.00 2019-10-21 14:01:26 2019-10-21 14:02:12 t 1 1 129267 416 0.00 2019-10-21 14:02:33 2019-10-21 14:03:50 t 1 1 129276 327 0.00 2019-10-21 14:10:44 2019-10-21 14:11:21 t 1 1 129279 538 0.00 2019-10-21 13:50:11 2019-10-21 14:15:43 t 1 1 129282 306 0.00 2019-10-21 14:09:28 2019-10-21 14:16:26 t 1 1 129283 585 0.00 2019-10-21 14:13:19 2019-10-21 14:16:57 t 1 1 129284 585 0.00 2019-10-21 14:16:57 2019-10-21 14:21:20 t 1 1 129293 562 0.00 2019-10-21 14:26:18 2019-10-21 14:26:43 t 1 1 129297 562 0.00 2019-10-21 14:29:54 2019-10-21 14:30:16 t 1 1 129300 327 0.00 2019-10-21 14:29:27 2019-10-21 14:31:26 t 1 1 129304 422 0.00 2019-10-21 14:30:13 2019-10-21 14:34:33 t 1 1 129307 422 0.00 2019-10-21 14:34:33 2019-10-21 14:37:42 t 1 1 129308 583 0.00 2019-10-21 14:11:39 2019-10-21 14:38:19 t 1 1 129310 562 0.00 2019-10-21 14:39:13 2019-10-21 14:40:42 t 1 1 129311 449 0.00 2019-10-21 14:39:06 2019-10-21 14:41:22 t 1 1 129312 583 0.00 2019-10-21 14:38:19 2019-10-21 14:42:04 t 1 1 129323 220 0.00 2019-10-21 14:47:55 2019-10-21 14:51:06 t 1 1 129325 556 0.00 2019-10-21 14:22:57 2019-10-21 14:56:11 t 1 1 129327 562 0.00 2019-10-21 14:56:34 2019-10-21 14:56:58 t 1 1 129329 327 0.00 2019-10-21 14:52:32 2019-10-21 14:57:11 t 1 1 129330 562 0.00 2019-10-21 14:57:25 2019-10-21 14:57:47 t 1 1 129336 556 0.00 2019-10-21 14:56:11 2019-10-21 15:05:24 t 1 1 129341 578 0.00 2019-10-21 14:57:08 2019-10-21 15:08:21 t 1 1 129342 583 0.00 2019-10-21 15:07:30 2019-10-21 15:09:17 t 1 1 129343 327 0.00 2019-10-21 15:10:36 2019-10-21 15:11:34 t 1 1 129346 581 0.00 2019-10-21 15:08:17 2019-10-21 15:13:10 t 1 1 129347 306 0.00 2019-10-21 15:05:58 2019-10-21 15:15:08 t 1 1 129349 528 0.00 2019-10-21 15:07:28 2019-10-21 15:15:46 t 1 1 129350 562 0.00 2019-10-21 15:14:44 2019-10-21 15:16:10 t 1 1 57621 131 0.00 2018-01-01 06:04:37 2018-01-01 06:04:45 t 1 1 129351 528 0.00 2019-10-21 15:15:46 2019-10-21 15:17:01 t 1 1 129353 587 0.00 2019-10-21 15:15:15 2019-10-21 15:17:55 t 1 1 129354 556 0.00 2019-10-21 15:05:24 2019-10-21 15:18:39 t 1 1 129355 581 0.00 2019-10-21 15:13:10 2019-10-21 15:19:10 t 1 1 129358 528 0.00 2019-10-21 15:20:09 2019-10-21 15:21:12 t 1 1 129359 522 0.00 2019-10-21 15:22:00 2019-10-21 15:23:53 t 1 1 129361 583 0.00 2019-10-21 15:24:02 2019-10-21 15:26:42 t 1 1 129363 568 0.00 2019-10-21 15:23:27 2019-10-21 15:26:54 t 1 1 129364 528 0.00 2019-10-21 15:28:21 2019-10-21 15:29:02 t 1 1 129378 532 0.00 2019-10-21 15:28:56 2019-10-21 15:44:12 t 1 1 129380 306 0.00 2019-10-21 15:43:33 2019-10-21 15:45:23 t 1 1 129381 528 0.00 2019-10-21 15:45:44 2019-10-21 15:46:07 t 1 1 129383 587 0.00 2019-10-21 15:29:51 2019-10-21 15:47:12 t 1 1 129390 528 0.00 2019-10-21 15:51:55 2019-10-21 15:52:14 t 1 1 129394 562 0.00 2019-10-21 15:53:53 2019-10-21 15:54:40 t 1 1 129398 514 0.00 2019-10-21 14:58:33 2019-10-21 15:57:52 t 1 1 129400 556 0.00 2019-10-21 15:47:49 2019-10-21 16:00:43 t 1 1 129401 528 0.00 2019-10-21 16:01:15 2019-10-21 16:01:24 t 1 1 129404 562 0.00 2019-10-21 16:06:33 2019-10-21 16:06:42 t 1 1 129408 532 0.00 2019-10-21 16:10:46 2019-10-21 16:10:48 t 1 1 129409 532 0.00 2019-10-21 16:10:53 2019-10-21 16:11:00 t 1 1 129414 532 0.00 2019-10-21 16:11:38 2019-10-21 16:11:55 t 1 1 129417 532 0.00 2019-10-21 16:12:14 2019-10-21 16:12:21 t 1 1 129420 532 0.00 2019-10-21 16:12:45 2019-10-21 16:12:47 t 1 1 129421 532 0.00 2019-10-21 16:12:52 2019-10-21 16:12:54 t 1 1 129422 532 0.00 2019-10-21 16:12:59 2019-10-21 16:13:05 t 1 1 129431 516 0.00 2019-10-21 16:01:32 2019-10-21 16:15:18 t 1 1 129439 327 0.00 2019-10-21 16:18:07 2019-10-21 16:21:01 t 1 1 129442 583 0.00 2019-10-21 16:12:53 2019-10-21 16:22:17 t 1 1 129444 514 0.00 2019-10-21 15:57:51 2019-10-21 16:25:29 t 1 1 129446 412 0.00 2019-10-21 13:32:48 2019-10-21 16:26:50 t 1 1 129447 416 0.00 2019-10-21 16:14:36 2019-10-21 16:28:35 t 1 1 129449 583 0.00 2019-10-21 16:22:17 2019-10-21 16:31:18 t 1 1 129450 327 0.00 2019-10-21 16:31:36 2019-10-21 16:32:10 t 1 1 129451 379 0.00 2019-10-21 15:45:04 2019-10-21 16:32:40 t 1 1 129452 327 0.00 2019-10-21 16:32:17 2019-10-21 16:35:32 t 1 1 129455 327 0.00 2019-10-21 16:43:51 2019-10-21 16:44:42 t 1 1 129458 422 0.00 2019-10-21 14:56:24 2019-10-21 16:53:36 t 1 1 129460 422 0.00 2019-10-21 16:57:10 2019-10-21 16:57:27 t 1 1 129462 501 0.00 2019-10-21 16:51:05 2019-10-21 17:04:31 t 1 1 129464 587 0.00 2019-10-21 16:46:31 2019-10-21 17:06:06 t 1 1 129466 512 0.00 2019-10-21 17:04:34 2019-10-21 17:09:06 t 1 1 129467 412 0.00 2019-10-21 17:04:59 2019-10-21 17:10:23 t 1 1 129473 520 0.00 2019-10-21 17:18:40 2019-10-21 17:19:55 t 1 1 129476 416 0.00 2019-10-21 17:24:27 2019-10-21 17:31:33 t 1 1 57784 136 0.00 2018-01-03 17:44:28 2018-01-03 17:44:57 t 1 1 129477 570 0.00 2019-10-21 17:03:03 2019-10-21 17:32:44 t 1 1 129481 416 0.00 2019-10-21 17:34:32 2019-10-21 17:36:11 t 1 1 129482 562 0.00 2019-10-21 17:30:43 2019-10-21 17:38:00 t 1 1 129484 562 0.00 2019-10-21 17:38:54 2019-10-21 17:40:31 t 1 1 129485 562 0.00 2019-10-21 17:41:25 2019-10-21 17:41:33 t 1 1 129195 514 0.00 2019-10-21 12:35:42 2019-10-21 12:36:54 t 1 1 129196 581 0.00 2019-10-21 11:56:23 2019-10-21 12:37:13 t 1 1 129197 514 0.00 2019-10-21 12:37:55 2019-10-21 12:38:10 t 1 1 129199 501 0.00 2019-10-21 12:38:48 2019-10-21 12:38:49 t 1 1 129204 443 0.00 2019-10-21 12:41:35 2019-10-21 12:42:54 t 1 1 129208 520 0.00 2019-10-21 12:41:29 2019-10-21 12:51:07 t 1 1 129213 501 0.00 2019-10-21 12:55:24 2019-10-21 12:55:33 t 1 1 129215 501 0.00 2019-10-21 12:56:26 2019-10-21 12:56:59 t 1 1 129216 501 0.00 2019-10-21 12:57:26 2019-10-21 12:57:35 t 1 1 129218 501 0.00 2019-10-21 13:01:29 2019-10-21 13:01:38 t 1 1 129224 306 0.00 2019-10-21 13:01:15 2019-10-21 13:08:34 t 1 1 129226 558 0.00 2019-10-21 12:55:45 2019-10-21 13:15:41 t 1 1 129227 570 0.00 2019-10-21 13:02:37 2019-10-21 13:16:35 t 1 1 129230 501 0.00 2019-10-21 13:21:44 2019-10-21 13:22:58 t 1 1 129233 501 0.00 2019-10-21 13:25:05 2019-10-21 13:25:13 t 1 1 129236 501 0.00 2019-10-21 13:26:17 2019-10-21 13:28:20 t 1 1 129239 306 0.00 2019-10-21 13:35:51 2019-10-21 13:38:21 t 1 1 129243 501 0.00 2019-10-21 13:31:25 2019-10-21 13:42:00 t 1 1 129244 325 0.00 2019-10-21 13:14:25 2019-10-21 13:43:04 t 1 2 129246 499 0.00 2019-10-21 13:27:09 2019-10-21 13:43:50 t 1 1 129250 583 0.00 2019-10-21 13:45:09 2019-10-21 13:46:52 t 1 1 129253 456 0.00 2019-10-21 13:46:17 2019-10-21 13:48:00 t 1 1 129254 528 0.00 2019-10-21 13:31:54 2019-10-21 13:49:28 t 1 1 129258 451 0.00 2019-10-21 13:50:05 2019-10-21 13:55:30 t 1 1 129260 544 0.00 2019-10-21 13:53:13 2019-10-21 13:56:34 t 1 1 129261 583 0.00 2019-10-21 13:50:39 2019-10-21 13:57:38 t 1 1 129265 416 0.00 2019-10-21 13:49:51 2019-10-21 14:02:21 t 1 1 129266 585 0.00 2019-10-21 13:58:29 2019-10-21 14:02:58 t 1 1 129269 522 0.00 2019-10-21 13:58:59 2019-10-21 14:05:56 t 1 1 129270 578 0.00 2019-10-21 12:56:59 2019-10-21 14:06:21 t 1 1 129273 585 0.00 2019-10-21 14:02:58 2019-10-21 14:09:50 t 1 1 129274 327 0.00 2019-10-21 13:46:35 2019-10-21 14:10:16 t 1 1 129277 583 0.00 2019-10-21 14:00:49 2019-10-21 14:11:39 t 1 1 129281 422 0.00 2019-10-21 14:07:12 2019-10-21 14:16:25 t 1 1 129286 306 0.00 2019-10-21 14:18:47 2019-10-21 14:22:44 t 1 1 129287 327 0.00 2019-10-21 14:21:15 2019-10-21 14:23:01 t 1 1 129290 581 0.00 2019-10-21 13:57:10 2019-10-21 14:25:11 t 1 1 129292 544 0.00 2019-10-21 14:24:37 2019-10-21 14:26:07 t 1 1 129296 422 0.00 2019-10-21 14:24:34 2019-10-21 14:30:13 t 1 1 129298 528 0.00 2019-10-21 14:21:40 2019-10-21 14:30:36 t 1 1 129299 512 0.00 2019-10-21 14:28:29 2019-10-21 14:30:57 t 1 1 129301 416 0.00 2019-10-21 14:13:30 2019-10-21 14:33:33 t 1 1 129306 522 0.00 2019-10-21 14:27:45 2019-10-21 14:36:22 t 1 1 57638 131 0.00 2018-01-01 14:24:15 2018-01-01 14:25:58 t 1 1 129309 562 0.00 2019-10-21 14:35:15 2019-10-21 14:38:59 t 1 1 129313 327 0.00 2019-10-21 14:41:15 2019-10-21 14:42:36 t 1 1 129314 449 0.00 2019-10-21 14:41:22 2019-10-21 14:43:13 t 1 1 129316 372 0.00 2019-10-21 14:46:15 2019-10-21 14:46:20 t 1 2 129319 220 0.00 2019-10-21 14:38:57 2019-10-21 14:47:56 t 1 1 129320 570 0.00 2019-10-21 13:30:50 2019-10-21 14:50:30 t 1 1 129322 498 0.00 2019-10-21 14:50:41 2019-10-21 14:50:41 f 1 2 129328 578 0.00 2019-10-21 14:06:20 2019-10-21 14:57:08 t 1 1 129331 501 0.00 2019-10-21 14:53:00 2019-10-21 14:57:48 t 1 1 129338 327 0.00 2019-10-21 15:07:07 2019-10-21 15:07:39 t 1 1 129340 581 0.00 2019-10-21 14:57:47 2019-10-21 15:08:17 t 1 1 129345 587 0.00 2019-10-21 15:04:49 2019-10-21 15:12:26 t 1 1 129356 585 0.00 2019-10-21 15:16:10 2019-10-21 15:20:00 t 1 1 129357 581 0.00 2019-10-21 15:19:10 2019-10-21 15:20:58 t 1 1 129360 528 0.00 2019-10-21 15:24:00 2019-10-21 15:24:05 t 1 1 129362 562 0.00 2019-10-21 15:25:32 2019-10-21 15:26:44 t 1 1 129365 587 0.00 2019-10-21 15:18:19 2019-10-21 15:29:27 t 1 1 129367 306 0.00 2019-10-21 15:23:34 2019-10-21 15:32:01 t 1 1 129371 361 0.00 2019-10-21 14:43:07 2019-10-21 15:37:24 t 1 2 129372 528 0.00 2019-10-21 15:38:11 2019-10-21 15:38:39 t 1 1 129373 528 0.00 2019-10-21 15:39:14 2019-10-21 15:39:37 t 1 1 129376 528 0.00 2019-10-21 15:42:18 2019-10-21 15:42:37 t 1 1 129377 416 0.00 2019-10-21 14:34:23 2019-10-21 15:43:17 t 1 1 129386 538 0.00 2019-10-21 14:17:00 2019-10-21 15:49:49 t 1 1 129387 528 0.00 2019-10-21 15:49:44 2019-10-21 15:50:05 t 1 1 129391 501 0.00 2019-10-21 15:10:15 2019-10-21 15:52:43 t 1 1 129395 416 0.00 2019-10-21 15:43:27 2019-10-21 15:55:31 t 1 1 129402 562 0.00 2019-10-21 16:01:59 2019-10-21 16:02:22 t 1 1 129406 583 0.00 2019-10-21 15:54:20 2019-10-21 16:09:15 t 1 1 129407 532 0.00 2019-10-21 15:50:25 2019-10-21 16:10:41 t 1 1 129411 532 0.00 2019-10-21 16:11:19 2019-10-21 16:11:21 t 1 1 129412 532 0.00 2019-10-21 16:11:27 2019-10-21 16:11:38 t 1 1 129416 532 0.00 2019-10-21 16:12:08 2019-10-21 16:12:09 t 1 1 129419 532 0.00 2019-10-21 16:12:38 2019-10-21 16:12:40 t 1 1 129426 532 0.00 2019-10-21 16:14:06 2019-10-21 16:14:07 t 1 1 129429 562 0.00 2019-10-21 16:06:55 2019-10-21 16:14:41 t 1 1 129430 532 0.00 2019-10-21 16:14:12 2019-10-21 16:15:14 t 1 1 129432 562 0.00 2019-10-21 16:15:15 2019-10-21 16:15:50 t 1 1 129435 501 0.00 2019-10-21 16:16:16 2019-10-21 16:18:42 t 1 1 129436 562 0.00 2019-10-21 16:19:10 2019-10-21 16:19:19 t 1 1 129438 501 0.00 2019-10-21 16:20:45 2019-10-21 16:20:53 t 1 1 129441 501 0.00 2019-10-21 16:21:48 2019-10-21 16:21:55 t 1 1 129443 501 0.00 2019-10-21 16:22:48 2019-10-21 16:23:53 t 1 1 129448 514 0.00 2019-10-21 16:25:29 2019-10-21 16:29:57 t 1 1 129453 379 0.00 2019-10-21 16:34:19 2019-10-21 16:35:43 t 1 1 129456 578 0.00 2019-10-21 15:08:21 2019-10-21 16:44:49 t 1 1 129463 412 0.00 2019-10-21 16:52:19 2019-10-21 17:04:31 t 1 1 129468 412 0.00 2019-10-21 17:11:21 2019-10-21 17:12:13 t 1 1 129469 578 0.00 2019-10-21 16:44:51 2019-10-21 17:14:59 t 1 1 129470 327 0.00 2019-10-21 17:17:11 2019-10-21 17:18:40 t 1 1 57785 136 0.00 2018-01-03 17:44:57 2018-01-03 17:46:01 t 1 1 57786 136 0.00 2018-01-03 17:46:04 2018-01-03 17:46:32 t 1 1 57787 136 0.00 2018-01-03 17:46:32 2018-01-03 17:48:01 t 1 1 129472 578 0.00 2019-10-21 17:14:58 2019-10-21 17:18:49 t 1 1 129474 220 0.00 2019-10-21 12:15:44 2019-10-21 17:23:27 t 1 2 129475 587 0.00 2019-10-21 17:07:27 2019-10-21 17:27:23 t 1 1 129478 472 0.00 2019-10-21 17:33:23 2019-10-21 17:33:23 f 1 1 129483 516 0.00 2019-10-21 17:27:15 2019-10-21 17:38:00 t 1 1 129486 587 0.00 2019-10-21 17:27:23 2019-10-21 17:43:06 t 1 1 129488 562 0.00 2019-10-21 17:43:52 2019-10-21 17:44:23 t 1 1 129490 562 0.00 2019-10-21 17:44:51 2019-10-21 17:45:12 t 1 1 129491 562 0.00 2019-10-21 17:46:39 2019-10-21 17:46:47 t 1 1 129497 587 0.00 2019-10-21 17:57:42 2019-10-21 17:58:52 t 1 1 129440 327 0.00 2019-10-21 16:21:07 2019-10-21 16:21:40 t 1 1 129445 587 0.00 2019-10-21 16:17:09 2019-10-21 16:26:33 t 1 1 129454 327 0.00 2019-10-21 16:42:23 2019-10-21 16:42:57 t 1 1 129457 570 0.00 2019-10-21 16:32:33 2019-10-21 16:47:47 t 1 1 129459 327 0.00 2019-10-21 16:54:40 2019-10-21 16:55:25 t 1 1 129461 512 0.00 2019-10-21 17:02:00 2019-10-21 17:04:15 t 1 1 129465 327 0.00 2019-10-21 17:05:20 2019-10-21 17:07:14 t 1 1 129471 520 0.00 2019-10-21 17:05:05 2019-10-21 17:18:46 t 1 1 129479 416 0.00 2019-10-21 17:31:59 2019-10-21 17:33:49 t 1 1 129480 570 0.00 2019-10-21 17:32:44 2019-10-21 17:36:02 t 1 1 129492 587 0.00 2019-10-21 17:43:06 2019-10-21 17:52:21 t 1 1 129493 562 0.00 2019-10-21 17:50:11 2019-10-21 17:53:10 t 1 1 129496 430 0.00 2019-10-21 17:55:39 2019-10-21 17:56:11 t 1 1 129498 562 0.00 2019-10-21 17:54:10 2019-10-21 17:59:41 t 1 1 129500 587 0.00 2019-10-21 17:59:18 2019-10-21 18:01:50 t 1 1 129502 430 0.00 2019-10-21 17:56:17 2019-10-21 18:02:30 t 1 1 129504 585 0.00 2019-10-21 18:01:18 2019-10-21 18:03:16 t 1 1 129507 562 0.00 2019-10-21 18:03:19 2019-10-21 18:05:21 t 1 1 129515 562 0.00 2019-10-21 18:11:32 2019-10-21 18:11:52 t 1 1 129517 430 0.00 2019-10-21 18:08:52 2019-10-21 18:13:49 t 1 1 129519 372 0.00 2019-10-21 18:12:21 2019-10-21 18:14:02 t 1 2 129520 220 0.00 2019-10-21 18:02:59 2019-10-21 18:18:04 t 1 2 129522 430 0.00 2019-10-21 18:15:32 2019-10-21 18:20:29 t 1 1 129524 483 0.00 2019-10-21 18:17:04 2019-10-21 18:21:24 t 1 1 129525 512 0.00 2019-10-21 17:44:25 2019-10-21 18:22:49 t 1 1 129528 430 0.00 2019-10-21 18:24:35 2019-10-21 18:24:35 f 1 1 129531 562 0.00 2019-10-21 18:30:07 2019-10-21 18:30:54 t 1 1 129533 512 0.00 2019-10-21 18:36:57 2019-10-21 18:39:33 t 1 1 129535 581 0.00 2019-10-21 18:38:40 2019-10-21 18:47:16 t 1 1 129537 361 0.00 2019-10-21 18:40:06 2019-10-21 18:54:34 t 1 2 129538 562 0.00 2019-10-21 18:54:05 2019-10-21 18:55:09 t 1 1 129540 501 0.00 2019-10-21 18:59:49 2019-10-21 19:03:26 t 1 1 57610 131 0.00 2017-12-31 10:31:27 2017-12-31 10:32:57 t 1 1 129541 562 0.00 2019-10-21 19:03:20 2019-10-21 19:04:21 t 1 1 129542 408 0.00 2019-10-21 18:59:57 2019-10-21 19:06:19 t 1 1 129544 566 0.00 2019-10-21 19:05:54 2019-10-21 19:12:50 t 1 1 129546 578 0.00 2019-10-21 18:43:02 2019-10-21 19:14:24 t 1 1 129547 562 0.00 2019-10-21 19:14:03 2019-10-21 19:14:59 t 1 1 129548 566 0.00 2019-10-21 19:12:50 2019-10-21 19:17:00 t 1 1 129550 512 0.00 2019-10-21 19:13:10 2019-10-21 19:17:44 t 1 1 129552 570 0.00 2019-10-21 18:11:19 2019-10-21 19:21:36 t 1 1 129553 583 0.00 2019-10-21 19:19:22 2019-10-21 19:24:57 t 1 1 129555 562 0.00 2019-10-21 19:25:37 2019-10-21 19:25:44 t 1 1 129559 587 0.00 2019-10-21 19:31:43 2019-10-21 19:32:32 t 1 1 129565 562 0.00 2019-10-21 19:36:41 2019-10-21 19:36:49 t 1 1 129569 566 0.00 2019-10-21 19:25:51 2019-10-21 19:43:10 t 1 1 129573 562 0.00 2019-10-21 19:48:35 2019-10-21 19:49:18 t 1 1 129580 585 0.00 2019-10-21 20:00:22 2019-10-21 20:01:58 t 1 1 129581 562 0.00 2019-10-21 19:51:06 2019-10-21 20:06:47 t 1 1 129586 587 0.00 2019-10-21 20:11:45 2019-10-21 20:11:48 t 1 1 129593 538 0.00 2019-10-21 17:49:23 2019-10-21 20:23:49 t 1 1 129597 562 0.00 2019-10-21 20:21:59 2019-10-21 20:26:03 t 1 1 129598 570 0.00 2019-10-21 20:16:22 2019-10-21 20:33:03 t 1 1 57677 131 0.00 2018-01-02 10:54:12 2018-01-02 10:55:59 t 1 1 129600 220 0.00 2019-10-21 20:26:05 2019-10-21 20:36:10 t 1 2 129602 562 0.00 2019-10-21 20:26:53 2019-10-21 20:37:37 t 1 1 129604 514 0.00 2019-10-21 19:59:11 2019-10-21 20:39:04 t 1 1 129605 361 0.00 2019-10-21 19:49:33 2019-10-21 20:39:39 t 1 2 129606 544 0.00 2019-10-21 20:38:54 2019-10-21 20:40:04 t 1 2 129611 544 0.00 2019-10-21 20:36:22 2019-10-21 20:46:27 t 1 2 129612 570 0.00 2019-10-21 20:33:03 2019-10-21 20:47:26 t 1 1 129616 562 0.00 2019-10-21 20:50:25 2019-10-21 20:50:45 t 1 1 129619 564 0.00 2019-10-21 20:52:34 2019-10-21 20:54:19 t 1 1 129620 512 0.00 2019-10-21 20:26:04 2019-10-21 20:55:18 t 1 1 129623 585 0.00 2019-10-21 20:53:18 2019-10-21 20:58:22 t 1 1 129626 361 0.00 2019-10-21 20:36:44 2019-10-21 20:58:55 t 1 2 129630 379 0.00 2019-10-21 18:07:08 2019-10-21 21:06:16 t 1 1 129634 562 0.00 2019-10-21 21:10:37 2019-10-21 21:11:52 t 1 1 129636 562 0.00 2019-10-21 21:12:31 2019-10-21 21:13:09 t 1 1 57710 131 0.00 2018-01-03 08:02:43 2018-01-03 08:04:01 t 1 1 129638 327 0.00 2019-10-21 21:11:03 2019-10-21 21:13:53 t 1 1 129642 581 0.00 2019-10-21 21:10:11 2019-10-21 21:16:06 t 1 1 129648 220 0.00 2019-10-21 21:20:44 2019-10-21 21:21:20 t 1 1 129652 520 0.00 2019-10-21 21:16:00 2019-10-21 21:23:15 t 1 1 129659 220 0.00 2019-10-21 21:26:19 2019-10-21 21:26:53 t 1 1 129660 220 0.00 2019-10-21 21:26:53 2019-10-21 21:27:24 t 1 1 129662 451 0.00 2019-10-21 21:01:07 2019-10-21 21:27:54 t 1 1 129663 327 0.00 2019-10-21 21:14:02 2019-10-21 21:28:26 t 1 1 129670 566 0.00 2019-10-21 21:07:21 2019-10-21 21:33:47 t 1 1 129674 327 0.00 2019-10-21 21:37:52 2019-10-21 21:38:41 t 1 1 129684 220 0.00 2019-10-21 21:43:42 2019-10-21 21:44:13 t 1 1 129686 220 0.00 2019-10-21 21:44:13 2019-10-21 21:44:48 t 1 1 129692 585 0.00 2019-10-21 21:43:54 2019-10-21 21:47:13 t 1 1 129694 220 0.00 2019-10-21 21:47:33 2019-10-21 21:48:06 t 1 1 129699 379 0.00 2019-10-21 21:13:02 2019-10-21 21:49:25 t 1 1 129701 220 0.00 2019-10-21 21:49:10 2019-10-21 21:49:45 t 1 1 129703 520 0.00 2019-10-21 21:34:02 2019-10-21 21:50:23 t 1 1 129705 583 0.00 2019-10-21 21:42:37 2019-10-21 21:51:25 t 1 1 129706 220 0.00 2019-10-21 21:50:53 2019-10-21 21:51:27 t 1 1 129707 220 0.00 2019-10-21 21:51:26 2019-10-21 21:51:57 t 1 1 129710 472 0.00 2019-10-21 21:52:30 2019-10-21 21:52:30 f 1 1 129713 220 0.00 2019-10-21 21:52:32 2019-10-21 21:53:06 t 1 1 129714 220 0.00 2019-10-21 21:53:06 2019-10-21 21:53:42 t 1 1 129717 220 0.00 2019-10-21 21:54:16 2019-10-21 21:54:49 t 1 1 129719 587 0.00 2019-10-21 21:53:17 2019-10-21 21:55:42 t 1 1 129723 220 0.00 2019-10-21 21:56:31 2019-10-21 21:57:07 t 1 1 129725 587 0.00 2019-10-21 21:57:12 2019-10-21 21:57:40 t 1 1 129731 587 0.00 2019-10-21 21:57:54 2019-10-21 21:59:16 t 1 1 129733 327 0.00 2019-10-21 21:43:48 2019-10-21 21:59:34 t 1 1 129735 220 0.00 2019-10-21 21:59:24 2019-10-21 22:00:04 t 1 1 129737 587 0.00 2019-10-21 21:59:59 2019-10-21 22:00:33 t 1 1 129740 578 0.00 2019-10-21 19:14:24 2019-10-21 22:00:58 t 1 1 129742 220 0.00 2019-10-21 22:00:38 2019-10-21 22:01:15 t 1 1 129745 562 0.00 2019-10-21 22:04:06 2019-10-21 22:04:34 t 1 1 129747 220 0.00 2019-10-21 22:05:03 2019-10-21 22:06:23 t 1 1 129749 587 0.00 2019-10-21 22:00:47 2019-10-21 22:08:53 t 1 1 129753 570 0.00 2019-10-21 22:10:50 2019-10-21 22:11:01 t 1 1 129487 562 0.00 2019-10-21 17:42:44 2019-10-21 17:43:08 t 1 1 129489 512 0.00 2019-10-21 17:23:42 2019-10-21 17:44:25 t 1 1 129494 220 0.00 2019-10-21 17:43:16 2019-10-21 17:53:21 t 1 2 129495 430 0.00 2019-10-21 17:53:06 2019-10-21 17:55:45 t 1 1 129501 562 0.00 2019-10-21 18:02:08 2019-10-21 18:02:15 t 1 1 129508 430 0.00 2019-10-21 18:05:10 2019-10-21 18:05:49 t 1 1 129509 430 0.00 2019-10-21 18:05:57 2019-10-21 18:06:44 t 1 1 129510 587 0.00 2019-10-21 18:02:18 2019-10-21 18:07:39 t 1 1 129512 306 0.00 2019-10-21 18:02:15 2019-10-21 18:08:54 t 1 1 129513 562 0.00 2019-10-21 18:09:48 2019-10-21 18:09:55 t 1 1 129514 587 0.00 2019-10-21 18:08:03 2019-10-21 18:10:35 t 1 1 129521 528 0.00 2019-10-21 18:14:34 2019-10-21 18:18:09 t 1 1 129523 562 0.00 2019-10-21 18:20:01 2019-10-21 18:20:37 t 1 1 129527 430 0.00 2019-10-21 18:23:36 2019-10-21 18:23:39 t 1 1 129529 430 0.00 2019-10-21 18:23:48 2019-10-21 18:24:48 t 1 1 129530 430 0.00 2019-10-21 18:24:21 2019-10-21 18:25:55 t 1 1 129534 578 0.00 2019-10-21 17:18:49 2019-10-21 18:42:23 t 1 1 129536 562 0.00 2019-10-21 18:40:33 2019-10-21 18:47:38 t 1 1 129539 562 0.00 2019-10-21 18:59:43 2019-10-21 19:00:24 t 1 1 129543 501 0.00 2019-10-21 19:03:26 2019-10-21 19:09:17 t 1 1 129545 512 0.00 2019-10-21 18:53:15 2019-10-21 19:13:11 t 1 1 129551 501 0.00 2019-10-21 19:17:47 2019-10-21 19:20:45 t 1 1 129554 562 0.00 2019-10-21 19:25:02 2019-10-21 19:25:32 t 1 1 129556 566 0.00 2019-10-21 19:17:00 2019-10-21 19:25:51 t 1 1 129557 516 0.00 2019-10-21 19:22:52 2019-10-21 19:26:21 t 1 1 129558 562 0.00 2019-10-21 19:28:05 2019-10-21 19:29:36 t 1 1 129561 562 0.00 2019-10-21 19:34:08 2019-10-21 19:34:29 t 1 1 129563 585 0.00 2019-10-21 19:32:03 2019-10-21 19:35:02 t 1 1 129567 587 0.00 2019-10-21 19:33:01 2019-10-21 19:37:20 t 1 1 129571 562 0.00 2019-10-21 19:45:19 2019-10-21 19:45:41 t 1 1 129574 587 0.00 2019-10-21 19:37:34 2019-10-21 19:50:44 t 1 1 129575 564 0.00 2019-10-21 15:02:54 2019-10-21 19:53:10 t 1 1 129576 587 0.00 2019-10-21 19:50:46 2019-10-21 19:58:28 t 1 1 129577 587 0.00 2019-10-21 19:58:28 2019-10-21 19:59:04 t 1 1 129579 570 0.00 2019-10-21 19:23:47 2019-10-21 20:00:18 t 1 1 129583 516 0.00 2019-10-21 19:55:56 2019-10-21 20:07:17 t 1 1 129588 566 0.00 2019-10-21 19:45:41 2019-10-21 20:14:10 t 1 1 129589 562 0.00 2019-10-21 20:11:12 2019-10-21 20:16:22 t 1 1 129594 412 0.00 2019-10-21 19:48:18 2019-10-21 20:23:53 t 1 1 129595 520 0.00 2019-10-21 20:18:19 2019-10-21 20:24:28 t 1 1 129596 512 0.00 2019-10-21 19:34:39 2019-10-21 20:25:17 t 1 1 129599 456 0.00 2019-10-21 20:30:53 2019-10-21 20:33:16 t 1 1 129607 562 0.00 2019-10-21 20:39:23 2019-10-21 20:40:11 t 1 1 129609 566 0.00 2019-10-21 20:14:10 2019-10-21 20:41:26 t 1 1 129613 327 0.00 2019-10-21 20:45:33 2019-10-21 20:47:45 t 1 1 129615 564 0.00 2019-10-21 19:53:13 2019-10-21 20:50:37 t 1 1 129618 564 0.00 2019-10-21 20:50:37 2019-10-21 20:52:34 t 1 1 129622 562 0.00 2019-10-21 20:56:23 2019-10-21 20:56:43 t 1 1 129624 449 0.00 2019-10-21 20:58:10 2019-10-21 20:58:25 t 1 1 129628 327 0.00 2019-10-21 20:57:11 2019-10-21 21:01:38 t 1 1 129629 562 0.00 2019-10-21 21:04:12 2019-10-21 21:04:35 t 1 1 129631 538 0.00 2019-10-21 20:38:46 2019-10-21 21:06:46 t 1 1 129632 566 0.00 2019-10-21 20:41:26 2019-10-21 21:07:21 t 1 1 129633 562 0.00 2019-10-21 21:09:36 2019-10-21 21:09:42 t 1 1 129635 379 0.00 2019-10-21 21:06:15 2019-10-21 21:13:02 t 1 1 129639 562 0.00 2019-10-21 21:13:59 2019-10-21 21:14:06 t 1 1 129644 220 0.00 2019-10-21 21:19:01 2019-10-21 21:19:36 t 1 1 129647 562 0.00 2019-10-21 21:20:39 2019-10-21 21:21:02 t 1 1 129655 220 0.00 2019-10-21 21:24:02 2019-10-21 21:24:37 t 1 1 129657 220 0.00 2019-10-21 21:25:11 2019-10-21 21:25:45 t 1 1 129658 220 0.00 2019-10-21 21:25:44 2019-10-21 21:26:19 t 1 1 129665 220 0.00 2019-10-21 21:30:02 2019-10-21 21:30:33 t 1 1 129669 220 0.00 2019-10-21 21:32:19 2019-10-21 21:32:55 t 1 1 129671 361 0.00 2019-10-21 21:08:43 2019-10-21 21:35:10 t 1 2 129672 451 0.00 2019-10-21 21:27:54 2019-10-21 21:37:57 t 1 1 129676 220 0.00 2019-10-21 21:32:55 2019-10-21 21:40:41 t 1 1 129678 566 0.00 2019-10-21 21:33:47 2019-10-21 21:42:12 t 1 1 129680 583 0.00 2019-10-21 21:37:50 2019-10-21 21:42:37 t 1 1 129681 220 0.00 2019-10-21 21:41:22 2019-10-21 21:42:40 t 1 1 129682 220 0.00 2019-10-21 21:42:39 2019-10-21 21:43:11 t 1 1 129683 220 0.00 2019-10-21 21:43:10 2019-10-21 21:43:42 t 1 1 129685 538 0.00 2019-10-21 21:06:49 2019-10-21 21:44:36 t 1 1 129687 220 0.00 2019-10-21 21:44:48 2019-10-21 21:45:22 t 1 1 129696 220 0.00 2019-10-21 21:48:05 2019-10-21 21:48:36 t 1 1 129697 220 0.00 2019-10-21 21:48:36 2019-10-21 21:49:10 t 1 1 129700 587 0.00 2019-10-21 21:47:49 2019-10-21 21:49:32 t 1 1 129702 220 0.00 2019-10-21 21:49:44 2019-10-21 21:50:20 t 1 1 129709 472 0.00 2019-10-21 21:52:14 2019-10-21 21:52:14 f 1 1 129712 587 0.00 2019-10-21 21:51:03 2019-10-21 21:53:02 t 1 1 129715 570 0.00 2019-10-21 21:48:23 2019-10-21 21:53:55 t 1 1 129716 220 0.00 2019-10-21 21:53:42 2019-10-21 21:54:16 t 1 1 129720 220 0.00 2019-10-21 21:55:24 2019-10-21 21:55:59 t 1 1 129722 587 0.00 2019-10-21 21:56:17 2019-10-21 21:57:04 t 1 1 129727 587 0.00 2019-10-21 21:56:03 2019-10-21 21:57:55 t 1 1 129728 220 0.00 2019-10-21 21:57:42 2019-10-21 21:58:15 t 1 1 129730 220 0.00 2019-10-21 21:58:15 2019-10-21 21:58:50 t 1 1 129734 587 0.00 2019-10-21 21:59:40 2019-10-21 21:59:46 t 1 1 129739 562 0.00 2019-10-21 21:59:37 2019-10-21 22:00:55 t 1 1 129741 562 0.00 2019-10-21 22:00:15 2019-10-21 22:01:01 t 1 1 129743 583 0.00 2019-10-21 21:51:25 2019-10-21 22:01:37 t 1 1 129744 528 0.00 2019-10-21 21:43:24 2019-10-21 22:02:29 t 1 1 129746 220 0.00 2019-10-21 22:01:14 2019-10-21 22:04:55 t 1 1 129750 562 0.00 2019-10-21 22:08:30 2019-10-21 22:09:55 t 1 1 129751 570 0.00 2019-10-21 21:55:44 2019-10-21 22:10:08 t 1 1 129754 562 0.00 2019-10-21 22:11:53 2019-10-21 22:12:21 t 1 1 129758 327 0.00 2019-10-21 21:59:34 2019-10-21 22:15:41 t 1 1 129763 528 0.00 2019-10-21 22:22:18 2019-10-21 22:22:23 t 1 1 129768 501 0.00 2019-10-21 22:26:07 2019-10-21 22:28:58 t 1 1 129771 501 0.00 2019-10-21 22:30:01 2019-10-21 22:31:41 t 1 1 129778 501 0.00 2019-10-21 22:36:10 2019-10-21 22:36:19 t 1 1 129781 501 0.00 2019-10-21 22:40:01 2019-10-21 22:40:35 t 1 1 129782 501 0.00 2019-10-21 22:41:01 2019-10-21 22:43:16 t 1 1 129785 585 0.00 2019-10-21 22:36:03 2019-10-21 22:45:31 t 1 1 129790 501 0.00 2019-10-21 22:47:51 2019-10-21 22:48:40 t 1 1 129797 587 0.00 2019-10-21 22:09:02 2019-10-21 22:53:11 t 1 1 129798 536 0.00 2019-10-21 22:52:00 2019-10-21 22:53:22 t 1 1 129803 536 0.00 2019-10-21 22:53:50 2019-10-21 22:55:08 t 1 1 129499 585 0.00 2019-10-21 17:59:38 2019-10-21 18:01:18 t 1 1 129503 562 0.00 2019-10-21 18:02:35 2019-10-21 18:02:59 t 1 1 129505 430 0.00 2019-10-21 18:02:39 2019-10-21 18:03:28 t 1 1 129506 430 0.00 2019-10-21 18:04:17 2019-10-21 18:04:28 t 1 1 129511 430 0.00 2019-10-21 18:08:00 2019-10-21 18:08:30 t 1 1 129516 528 0.00 2019-10-21 18:10:52 2019-10-21 18:13:38 t 1 1 129518 562 0.00 2019-10-21 18:13:15 2019-10-21 18:14:02 t 1 1 129526 430 0.00 2019-10-21 18:21:30 2019-10-21 18:23:25 t 1 1 129532 562 0.00 2019-10-21 18:37:22 2019-10-21 18:37:44 t 1 1 129549 528 0.00 2019-10-21 19:13:30 2019-10-21 19:17:10 t 1 1 129560 562 0.00 2019-10-21 19:32:59 2019-10-21 19:33:57 t 1 1 129562 512 0.00 2019-10-21 19:30:52 2019-10-21 19:34:39 t 1 1 129564 562 0.00 2019-10-21 19:34:53 2019-10-21 19:35:33 t 1 1 129566 583 0.00 2019-10-21 19:36:06 2019-10-21 19:36:56 t 1 1 129568 583 0.00 2019-10-21 19:36:55 2019-10-21 19:41:52 t 1 1 57864 131 0.00 2018-01-04 09:17:25 2018-01-04 09:19:01 t 1 1 129570 566 0.00 2019-10-21 19:43:10 2019-10-21 19:44:10 t 1 1 129572 412 0.00 2019-10-21 17:21:09 2019-10-21 19:48:18 t 1 1 129578 514 0.00 2019-10-21 19:29:08 2019-10-21 19:59:11 t 1 1 129582 587 0.00 2019-10-21 19:59:15 2019-10-21 20:07:07 t 1 1 129584 587 0.00 2019-10-21 20:07:07 2019-10-21 20:09:49 t 1 1 129585 220 0.00 2019-10-21 20:08:52 2019-10-21 20:10:13 t 1 1 129587 451 0.00 2019-10-21 20:00:49 2019-10-21 20:14:02 t 1 1 129590 562 0.00 2019-10-21 20:17:23 2019-10-21 20:17:56 t 1 1 57885 131 0.00 2018-01-04 11:55:14 2018-01-04 11:57:01 t 1 1 129591 372 0.00 2019-10-21 20:15:29 2019-10-21 20:18:20 t 1 2 129592 562 0.00 2019-10-21 20:19:32 2019-10-21 20:21:45 t 1 1 129601 412 0.00 2019-10-21 20:23:53 2019-10-21 20:36:27 t 1 1 129603 538 0.00 2019-10-21 20:26:33 2019-10-21 20:38:19 t 1 1 129608 587 0.00 2019-10-21 20:11:59 2019-10-21 20:40:13 t 1 1 129610 451 0.00 2019-10-21 20:14:02 2019-10-21 20:44:59 t 1 1 129614 570 0.00 2019-10-21 20:47:04 2019-10-21 20:47:53 t 1 1 129617 581 0.00 2019-10-21 20:41:27 2019-10-21 20:51:16 t 1 1 129621 587 0.00 2019-10-21 20:42:38 2019-10-21 20:56:04 t 1 1 129625 528 0.00 2019-10-21 20:48:02 2019-10-21 20:58:42 t 1 1 129627 451 0.00 2019-10-21 20:44:59 2019-10-21 21:01:07 t 1 1 129637 520 0.00 2019-10-21 21:02:40 2019-10-21 21:13:35 t 1 1 129640 481 0.00 2019-10-21 19:05:50 2019-10-21 21:15:28 t 1 1 129641 520 0.00 2019-10-21 21:13:35 2019-10-21 21:16:03 t 1 1 129643 220 0.00 2019-10-21 21:14:34 2019-10-21 21:19:02 t 1 1 129645 220 0.00 2019-10-21 21:19:35 2019-10-21 21:20:10 t 1 1 129646 220 0.00 2019-10-21 21:20:10 2019-10-21 21:20:45 t 1 1 129649 220 0.00 2019-10-21 21:21:20 2019-10-21 21:21:50 t 1 1 129650 220 0.00 2019-10-21 21:21:50 2019-10-21 21:22:23 t 1 1 129651 220 0.00 2019-10-21 21:22:22 2019-10-21 21:22:57 t 1 1 129653 220 0.00 2019-10-21 21:22:57 2019-10-21 21:23:30 t 1 1 129654 220 0.00 2019-10-21 21:23:30 2019-10-21 21:24:02 t 1 1 129656 220 0.00 2019-10-21 21:24:37 2019-10-21 21:25:11 t 1 1 129661 570 0.00 2019-10-21 20:48:03 2019-10-21 21:27:48 t 1 1 129664 220 0.00 2019-10-21 21:27:23 2019-10-21 21:30:02 t 1 1 129666 544 0.00 2019-10-21 20:42:37 2019-10-21 21:30:41 t 1 2 129667 562 0.00 2019-10-21 21:31:42 2019-10-21 21:31:51 t 1 1 129668 220 0.00 2019-10-21 21:30:33 2019-10-21 21:32:19 t 1 1 129673 562 0.00 2019-10-21 21:38:05 2019-10-21 21:38:21 t 1 1 129675 562 0.00 2019-10-21 21:40:09 2019-10-21 21:40:19 t 1 1 129677 220 0.00 2019-10-21 21:40:40 2019-10-21 21:41:23 t 1 1 129679 451 0.00 2019-10-21 21:37:57 2019-10-21 21:42:34 t 1 1 129688 570 0.00 2019-10-21 21:27:47 2019-10-21 21:45:46 t 1 1 129689 220 0.00 2019-10-21 21:45:22 2019-10-21 21:45:56 t 1 1 129690 220 0.00 2019-10-21 21:45:56 2019-10-21 21:46:28 t 1 1 129691 220 0.00 2019-10-21 21:46:28 2019-10-21 21:47:02 t 1 1 129693 220 0.00 2019-10-21 21:47:02 2019-10-21 21:47:33 t 1 1 129695 570 0.00 2019-10-21 21:45:48 2019-10-21 21:48:24 t 1 1 129698 562 0.00 2019-10-21 21:41:02 2019-10-21 21:49:20 t 1 1 129704 220 0.00 2019-10-21 21:50:19 2019-10-21 21:50:54 t 1 1 129708 472 0.00 2019-10-21 21:52:06 2019-10-21 21:52:06 f 1 1 129711 220 0.00 2019-10-21 21:51:57 2019-10-21 21:52:32 t 1 1 129718 220 0.00 2019-10-21 21:54:49 2019-10-21 21:55:24 t 1 1 129721 220 0.00 2019-10-21 21:55:58 2019-10-21 21:56:31 t 1 1 129724 520 0.00 2019-10-21 21:50:23 2019-10-21 21:57:22 t 1 1 129726 220 0.00 2019-10-21 21:57:07 2019-10-21 21:57:42 t 1 1 129729 562 0.00 2019-10-21 21:51:24 2019-10-21 21:58:28 t 1 1 129732 220 0.00 2019-10-21 21:58:49 2019-10-21 21:59:24 t 1 1 129736 581 0.00 2019-10-21 21:33:51 2019-10-21 22:00:31 t 1 1 129738 220 0.00 2019-10-21 22:00:04 2019-10-21 22:00:38 t 1 1 129748 551 0.00 2019-10-21 21:55:00 2019-10-21 22:07:48 t 1 1 129752 583 0.00 2019-10-21 22:01:37 2019-10-21 22:10:39 t 1 1 129755 570 0.00 2019-10-21 22:11:05 2019-10-21 22:12:38 t 1 1 129756 449 0.00 2019-10-21 22:09:07 2019-10-21 22:14:53 t 1 1 129757 551 0.00 2019-10-21 22:07:48 2019-10-21 22:15:03 t 1 1 129760 528 0.00 2019-10-21 22:04:09 2019-10-21 22:20:08 t 1 1 129761 528 0.00 2019-10-21 22:20:23 2019-10-21 22:20:45 t 1 1 129765 501 0.00 2019-10-21 22:25:13 2019-10-21 22:25:31 t 1 1 129769 551 0.00 2019-10-21 22:22:03 2019-10-21 22:29:34 t 1 1 129770 578 0.00 2019-10-21 22:16:47 2019-10-21 22:29:58 t 1 1 129773 520 0.00 2019-10-21 22:25:04 2019-10-21 22:34:12 t 1 1 129775 485 0.00 2019-10-21 22:19:50 2019-10-21 22:34:33 t 1 1 129779 325 0.00 2019-10-21 21:11:32 2019-10-21 22:36:37 t 1 2 129783 514 0.00 2019-10-21 22:34:23 2019-10-21 22:44:47 t 1 1 129786 501 0.00 2019-10-21 22:44:18 2019-10-21 22:45:51 t 1 1 129788 501 0.00 2019-10-21 22:46:54 2019-10-21 22:47:45 t 1 1 129789 327 0.00 2019-10-21 22:32:08 2019-10-21 22:48:02 t 1 1 129792 501 0.00 2019-10-21 22:49:02 2019-10-21 22:50:31 t 1 1 129795 536 0.00 2019-10-21 22:47:05 2019-10-21 22:52:00 t 1 1 129796 528 0.00 2019-10-21 22:38:43 2019-10-21 22:52:34 t 1 1 129801 528 0.00 2019-10-21 22:54:45 2019-10-21 22:54:55 t 1 1 129806 220 0.00 2019-10-21 22:26:39 2019-10-21 22:56:44 t 1 2 129811 536 0.00 2019-10-21 22:57:23 2019-10-21 22:59:32 t 1 1 129813 570 0.00 2019-10-21 22:30:41 2019-10-21 23:02:08 t 1 1 129815 528 0.00 2019-10-21 22:55:26 2019-10-21 23:04:20 t 1 1 129816 528 0.00 2019-10-21 23:04:20 2019-10-21 23:04:44 t 1 1 129819 501 0.00 2019-10-21 23:03:50 2019-10-21 23:05:23 t 1 1 129831 551 0.00 2019-10-21 23:02:01 2019-10-21 23:13:03 t 1 1 129833 562 0.00 2019-10-21 23:08:44 2019-10-21 23:13:59 t 1 1 129835 501 0.00 2019-10-21 23:14:41 2019-10-21 23:14:50 t 1 1 129836 536 0.00 2019-10-21 22:59:32 2019-10-21 23:15:26 t 1 1 129838 501 0.00 2019-10-21 23:15:55 2019-10-21 23:16:28 t 1 1 129759 583 0.00 2019-10-21 22:10:39 2019-10-21 22:17:04 t 1 1 129762 551 0.00 2019-10-21 22:15:03 2019-10-21 22:22:03 t 1 1 129764 544 0.00 2019-10-21 22:20:15 2019-10-21 22:22:52 t 1 2 129766 514 0.00 2019-10-21 20:39:04 2019-10-21 22:25:33 t 1 1 129767 451 0.00 2019-10-21 21:42:34 2019-10-21 22:27:26 t 1 1 129772 327 0.00 2019-10-21 22:15:41 2019-10-21 22:32:08 t 1 1 129774 514 0.00 2019-10-21 22:25:33 2019-10-21 22:34:23 t 1 1 129776 528 0.00 2019-10-21 22:22:44 2019-10-21 22:34:55 t 1 1 129777 501 0.00 2019-10-21 22:32:44 2019-10-21 22:35:07 t 1 1 129780 501 0.00 2019-10-21 22:37:10 2019-10-21 22:38:59 t 1 1 129784 485 0.00 2019-10-21 22:36:56 2019-10-21 22:45:20 t 1 1 129787 536 0.00 2019-10-21 22:43:40 2019-10-21 22:47:05 t 1 1 129791 501 0.00 2019-10-21 22:48:46 2019-10-21 22:48:56 t 1 1 129793 451 0.00 2019-10-21 22:27:26 2019-10-21 22:50:38 t 1 1 129794 501 0.00 2019-10-21 22:51:00 2019-10-21 22:51:08 t 1 1 129799 536 0.00 2019-10-21 22:53:22 2019-10-21 22:53:51 t 1 1 129800 528 0.00 2019-10-21 22:54:06 2019-10-21 22:54:31 t 1 1 129802 501 0.00 2019-10-21 22:52:00 2019-10-21 22:54:56 t 1 1 129804 528 0.00 2019-10-21 22:55:09 2019-10-21 22:55:14 t 1 1 129807 536 0.00 2019-10-21 22:55:07 2019-10-21 22:57:24 t 1 1 129810 581 0.00 2019-10-21 22:19:46 2019-10-21 22:58:37 t 1 1 129814 501 0.00 2019-10-21 23:00:49 2019-10-21 23:02:47 t 1 1 129817 528 0.00 2019-10-21 23:04:43 2019-10-21 23:04:48 t 1 1 129821 327 0.00 2019-10-21 22:48:02 2019-10-21 23:08:09 t 1 1 129823 587 0.00 2019-10-21 22:57:10 2019-10-21 23:08:50 t 1 1 129824 501 0.00 2019-10-21 23:08:46 2019-10-21 23:09:19 t 1 1 129826 501 0.00 2019-10-21 23:10:46 2019-10-21 23:10:47 t 1 1 129827 327 0.00 2019-10-21 23:08:16 2019-10-21 23:11:08 t 1 1 129830 501 0.00 2019-10-21 23:11:46 2019-10-21 23:12:51 t 1 1 129834 501 0.00 2019-10-21 23:13:54 2019-10-21 23:14:36 t 1 1 129839 501 0.00 2019-10-21 23:16:55 2019-10-21 23:16:57 t 1 1 129840 247 0.00 2019-10-21 23:16:58 2019-10-21 23:16:58 f 1 2 129842 587 0.00 2019-10-21 23:15:44 2019-10-21 23:17:16 t 1 1 129850 501 0.00 2019-10-21 23:19:58 2019-10-21 23:20:06 t 1 1 129853 581 0.00 2019-10-21 23:21:42 2019-10-21 23:21:57 t 1 1 129854 327 0.00 2019-10-21 23:20:33 2019-10-21 23:22:09 t 1 1 129855 516 0.00 2019-10-21 23:04:22 2019-10-21 23:23:00 t 1 1 129857 536 0.00 2019-10-21 23:23:07 2019-10-21 23:23:32 t 1 1 129862 570 0.00 2019-10-21 23:21:06 2019-10-21 23:25:52 t 1 1 129866 512 0.00 2019-10-21 23:11:05 2019-10-21 23:27:18 t 1 1 129870 581 0.00 2019-10-21 23:28:28 2019-10-21 23:29:01 t 1 1 129872 510 0.00 2019-10-21 22:23:36 2019-10-21 23:29:18 t 1 1 129875 536 0.00 2019-10-21 23:31:20 2019-10-21 23:31:38 t 1 1 129883 536 0.00 2019-10-21 23:34:20 2019-10-21 23:34:33 t 1 1 129885 536 0.00 2019-10-21 23:34:46 2019-10-21 23:35:14 t 1 1 129890 536 0.00 2019-10-21 23:37:10 2019-10-21 23:37:28 t 1 1 129893 536 0.00 2019-10-21 23:37:55 2019-10-21 23:38:33 t 1 1 129895 581 0.00 2019-10-21 23:38:14 2019-10-21 23:38:57 t 1 1 129896 536 0.00 2019-10-21 23:39:02 2019-10-21 23:39:05 t 1 1 129898 578 0.00 2019-10-21 22:29:58 2019-10-21 23:40:54 t 1 1 129902 220 0.00 2019-10-21 23:30:28 2019-10-21 23:43:51 t 1 2 129903 514 0.00 2019-10-21 23:37:44 2019-10-21 23:44:34 t 1 1 129907 536 0.00 2019-10-21 23:39:35 2019-10-21 23:47:49 t 1 1 129908 220 0.00 2019-10-21 23:47:26 2019-10-21 23:49:49 t 1 2 129909 587 0.00 2019-10-21 23:46:12 2019-10-21 23:50:26 t 1 1 129910 220 0.00 2019-10-21 23:51:23 2019-10-21 23:52:04 t 1 2 129912 587 0.00 2019-10-21 23:50:42 2019-10-21 23:53:10 t 1 1 129914 514 0.00 2019-10-21 23:44:34 2019-10-21 23:57:08 t 1 1 129916 501 0.00 2019-10-21 23:24:40 2019-10-22 00:06:17 t 1 1 129919 501 0.00 2019-10-22 00:06:17 2019-10-22 00:10:32 t 1 1 129920 562 0.00 2019-10-21 23:16:52 2019-10-22 00:11:16 t 1 1 129925 514 0.00 2019-10-22 00:08:42 2019-10-22 00:16:54 t 1 1 129930 408 0.00 2019-10-22 00:16:41 2019-10-22 00:25:15 t 1 1 129932 372 0.00 2019-10-22 00:06:59 2019-10-22 00:27:05 t 1 2 129934 339 0.00 2019-10-21 21:38:06 2019-10-22 00:27:28 t 1 2 129937 581 0.00 2019-10-22 00:22:09 2019-10-22 00:30:23 t 1 1 129941 408 0.00 2019-10-22 00:34:09 2019-10-22 00:34:29 t 1 1 129944 408 0.00 2019-10-22 00:36:27 2019-10-22 00:36:32 t 1 1 129947 501 0.00 2019-10-22 00:34:31 2019-10-22 00:36:46 t 1 1 129951 408 0.00 2019-10-22 00:41:12 2019-10-22 00:41:25 t 1 1 129952 483 0.00 2019-10-22 00:38:47 2019-10-22 00:42:28 t 1 1 129956 408 0.00 2019-10-22 00:41:54 2019-10-22 00:45:56 t 1 1 129960 501 0.00 2019-10-22 00:45:28 2019-10-22 00:48:34 t 1 1 129965 556 0.00 2019-10-22 00:09:06 2019-10-22 00:57:48 t 1 1 129966 501 0.00 2019-10-22 00:54:42 2019-10-22 01:01:14 t 1 1 129967 544 0.00 2019-10-22 00:53:34 2019-10-22 01:03:40 t 1 2 129970 587 0.00 2019-10-22 01:10:40 2019-10-22 01:14:32 t 1 1 129978 514 0.00 2019-10-22 01:25:07 2019-10-22 01:36:47 t 1 1 129981 503 0.00 2019-10-22 01:53:30 2019-10-22 01:55:03 t 1 1 129985 566 0.00 2019-10-22 02:19:41 2019-10-22 02:33:37 t 1 1 129986 566 0.00 2019-10-22 02:33:37 2019-10-22 02:41:36 t 1 1 129989 483 0.00 2019-10-22 04:02:35 2019-10-22 04:25:00 t 1 1 129992 522 0.00 2019-10-22 04:45:31 2019-10-22 04:50:19 t 1 1 129995 520 0.00 2019-10-22 04:42:39 2019-10-22 04:51:59 t 1 1 129998 522 0.00 2019-10-22 04:55:14 2019-10-22 04:55:26 t 1 1 129999 522 0.00 2019-10-22 04:56:21 2019-10-22 04:56:26 t 1 1 130003 522 0.00 2019-10-22 05:06:27 2019-10-22 05:06:30 t 1 1 130004 522 0.00 2019-10-22 05:06:18 2019-10-22 05:06:59 t 1 1 130008 522 0.00 2019-10-22 05:16:35 2019-10-22 05:16:36 t 1 1 130012 551 0.00 2019-10-22 05:15:35 2019-10-22 05:21:51 t 1 1 130014 551 0.00 2019-10-22 05:21:51 2019-10-22 05:30:36 t 1 1 130015 551 0.00 2019-10-22 05:30:36 2019-10-22 05:36:29 t 1 1 130018 522 0.00 2019-10-22 05:37:42 2019-10-22 05:37:46 t 1 1 130021 551 0.00 2019-10-22 05:36:29 2019-10-22 05:48:16 t 1 1 58107 131 0.00 2018-01-06 07:17:47 2018-01-06 07:19:02 t 1 1 130023 522 0.00 2019-10-22 05:52:15 2019-10-22 05:52:16 t 1 1 130025 483 0.00 2019-10-22 05:52:39 2019-10-22 05:52:45 t 1 1 130031 430 0.00 2019-10-22 05:55:14 2019-10-22 05:58:20 t 1 1 130033 485 0.00 2019-10-22 05:57:44 2019-10-22 05:59:18 t 1 1 130034 516 0.00 2019-10-22 05:53:11 2019-10-22 06:00:25 t 1 1 130035 430 0.00 2019-10-22 06:00:55 2019-10-22 06:01:02 t 1 1 130036 430 0.00 2019-10-22 06:01:30 2019-10-22 06:02:17 t 1 1 130037 522 0.00 2019-10-22 06:02:27 2019-10-22 06:02:27 t 1 1 130038 430 0.00 2019-10-22 06:02:24 2019-10-22 06:04:21 t 1 1 130040 522 0.00 2019-10-22 06:12:34 2019-10-22 06:12:36 t 1 1 130042 568 0.00 2019-10-22 06:10:45 2019-10-22 06:17:10 t 1 1 130045 522 0.00 2019-10-22 06:22:41 2019-10-22 06:22:45 t 1 1 129805 587 0.00 2019-10-21 22:53:21 2019-10-21 22:56:38 t 1 1 129808 501 0.00 2019-10-21 22:55:59 2019-10-21 22:57:33 t 1 1 129809 514 0.00 2019-10-21 22:44:47 2019-10-21 22:58:37 t 1 1 129812 501 0.00 2019-10-21 22:58:35 2019-10-21 22:59:46 t 1 1 129818 562 0.00 2019-10-21 22:21:32 2019-10-21 23:05:02 t 1 1 129820 501 0.00 2019-10-21 23:06:25 2019-10-21 23:07:43 t 1 1 129822 514 0.00 2019-10-21 22:58:37 2019-10-21 23:08:16 t 1 1 129825 501 0.00 2019-10-21 23:09:46 2019-10-21 23:10:19 t 1 1 129828 220 0.00 2019-10-21 22:22:13 2019-10-21 23:11:13 t 1 1 129829 581 0.00 2019-10-21 23:06:36 2019-10-21 23:12:09 t 1 1 129832 587 0.00 2019-10-21 23:09:03 2019-10-21 23:13:16 t 1 1 129837 587 0.00 2019-10-21 23:13:16 2019-10-21 23:15:44 t 1 1 129841 514 0.00 2019-10-21 23:08:16 2019-10-21 23:17:13 t 1 1 129844 536 0.00 2019-10-21 23:16:40 2019-10-21 23:17:55 t 1 1 129846 501 0.00 2019-10-21 23:18:02 2019-10-21 23:19:00 t 1 1 129848 306 0.00 2019-10-21 23:16:06 2019-10-21 23:19:47 t 1 1 129849 536 0.00 2019-10-21 23:17:53 2019-10-21 23:19:57 t 1 1 129852 501 0.00 2019-10-21 23:20:58 2019-10-21 23:21:11 t 1 1 129856 536 0.00 2019-10-21 23:22:55 2019-10-21 23:23:02 t 1 1 129858 501 0.00 2019-10-21 23:21:58 2019-10-21 23:23:56 t 1 1 129859 536 0.00 2019-10-21 23:24:12 2019-10-21 23:24:19 t 1 1 129864 536 0.00 2019-10-21 23:26:39 2019-10-21 23:26:46 t 1 1 129865 536 0.00 2019-10-21 23:26:51 2019-10-21 23:26:59 t 1 1 129867 536 0.00 2019-10-21 23:25:55 2019-10-21 23:27:55 t 1 1 129868 536 0.00 2019-10-21 23:28:19 2019-10-21 23:28:26 t 1 1 129869 536 0.00 2019-10-21 23:28:47 2019-10-21 23:28:54 t 1 1 129871 514 0.00 2019-10-21 23:17:13 2019-10-21 23:29:13 t 1 1 129874 574 0.00 2019-10-21 10:44:59 2019-10-21 23:31:04 t 1 1 129879 536 0.00 2019-10-21 23:33:42 2019-10-21 23:33:43 t 1 1 129882 536 0.00 2019-10-21 23:34:02 2019-10-21 23:34:14 t 1 1 129884 514 0.00 2019-10-21 23:29:13 2019-10-21 23:34:58 t 1 1 129889 581 0.00 2019-10-21 23:36:44 2019-10-21 23:37:01 t 1 1 129892 536 0.00 2019-10-21 23:37:42 2019-10-21 23:37:49 t 1 1 129899 581 0.00 2019-10-21 23:41:53 2019-10-21 23:42:00 t 1 1 129900 570 0.00 2019-10-21 23:33:52 2019-10-21 23:43:13 t 1 1 129901 587 0.00 2019-10-21 23:38:03 2019-10-21 23:43:31 t 1 1 129904 587 0.00 2019-10-21 23:43:31 2019-10-21 23:45:27 t 1 1 129906 528 0.00 2019-10-21 23:25:02 2019-10-21 23:47:17 t 1 1 129913 483 0.00 2019-10-21 23:50:56 2019-10-21 23:53:50 t 1 1 129923 501 0.00 2019-10-22 00:13:18 2019-10-22 00:15:47 t 1 1 129924 581 0.00 2019-10-21 23:42:15 2019-10-22 00:16:31 t 1 1 129927 581 0.00 2019-10-22 00:20:02 2019-10-22 00:20:36 t 1 1 129929 501 0.00 2019-10-22 00:20:29 2019-10-22 00:23:01 t 1 1 129940 503 0.00 2019-10-22 00:26:34 2019-10-22 00:34:26 t 1 1 129942 501 0.00 2019-10-22 00:31:53 2019-10-22 00:34:31 t 1 1 129943 408 0.00 2019-10-22 00:36:04 2019-10-22 00:36:20 t 1 1 129945 587 0.00 2019-10-22 00:34:09 2019-10-22 00:36:35 t 1 1 129949 501 0.00 2019-10-22 00:36:46 2019-10-22 00:40:27 t 1 1 129950 408 0.00 2019-10-22 00:39:59 2019-10-22 00:41:05 t 1 1 129954 587 0.00 2019-10-22 00:36:59 2019-10-22 00:43:19 t 1 1 129955 501 0.00 2019-10-22 00:43:05 2019-10-22 00:45:28 t 1 1 129958 483 0.00 2019-10-22 00:43:40 2019-10-22 00:48:21 t 1 1 129961 501 0.00 2019-10-22 00:48:34 2019-10-22 00:52:12 t 1 1 129968 587 0.00 2019-10-22 00:46:37 2019-10-22 01:10:25 t 1 1 129974 508 0.00 2019-10-22 01:28:34 2019-10-22 01:30:10 t 1 2 129975 483 0.00 2019-10-22 01:28:01 2019-10-22 01:34:18 t 1 1 129977 483 0.00 2019-10-22 01:34:26 2019-10-22 01:35:28 t 1 1 129988 483 0.00 2019-10-22 03:27:09 2019-10-22 03:41:18 t 1 1 129990 412 0.00 2019-10-21 20:36:27 2019-10-22 04:27:15 t 1 1 129991 483 0.00 2019-10-22 04:26:39 2019-10-22 04:31:07 t 1 1 129996 522 0.00 2019-10-22 04:51:54 2019-10-22 04:52:06 t 1 1 129997 522 0.00 2019-10-22 04:53:34 2019-10-22 04:53:46 t 1 1 130000 520 0.00 2019-10-22 04:51:58 2019-10-22 04:58:52 t 1 1 130001 522 0.00 2019-10-22 05:01:27 2019-10-22 05:01:28 t 1 1 130002 520 0.00 2019-10-22 04:58:51 2019-10-22 05:02:54 t 1 1 130005 522 0.00 2019-10-22 05:06:59 2019-10-22 05:07:01 t 1 1 130009 520 0.00 2019-10-22 05:02:54 2019-10-22 05:18:41 t 1 1 130016 522 0.00 2019-10-22 05:36:53 2019-10-22 05:37:03 t 1 1 130017 522 0.00 2019-10-22 05:37:14 2019-10-22 05:37:16 t 1 1 130020 522 0.00 2019-10-22 05:47:09 2019-10-22 05:47:12 t 1 1 130022 520 0.00 2019-10-22 05:18:40 2019-10-22 05:48:42 t 1 1 130024 483 0.00 2019-10-22 05:37:03 2019-10-22 05:52:34 t 1 1 130028 430 0.00 2019-10-22 05:48:51 2019-10-22 05:53:34 t 1 1 130029 430 0.00 2019-10-22 05:54:36 2019-10-22 05:55:56 t 1 1 130030 574 0.00 2019-10-21 23:46:36 2019-10-22 05:56:41 t 1 1 130032 522 0.00 2019-10-22 05:57:20 2019-10-22 05:58:21 t 1 1 130039 522 0.00 2019-10-22 06:06:32 2019-10-22 06:08:35 t 1 1 130046 522 0.00 2019-10-22 06:23:34 2019-10-22 06:23:36 t 1 1 130049 430 0.00 2019-10-22 06:23:00 2019-10-22 06:24:56 t 1 1 130050 430 0.00 2019-10-22 06:27:34 2019-10-22 06:27:55 t 1 1 130051 522 0.00 2019-10-22 06:28:26 2019-10-22 06:28:36 t 1 1 130053 498 0.00 2019-10-22 05:56:06 2019-10-22 06:30:06 t 1 2 130057 430 0.00 2019-10-22 06:33:32 2019-10-22 06:34:39 t 1 1 130062 516 0.00 2019-10-22 06:39:58 2019-10-22 06:47:02 t 1 1 130066 562 0.00 2019-10-22 06:53:20 2019-10-22 06:53:33 t 1 1 130068 522 0.00 2019-10-22 06:54:28 2019-10-22 06:54:40 t 1 1 130071 522 0.00 2019-10-22 06:59:22 2019-10-22 06:59:22 t 1 1 130073 562 0.00 2019-10-22 07:02:24 2019-10-22 07:03:34 t 1 1 130074 522 0.00 2019-10-22 07:04:29 2019-10-22 07:04:31 t 1 1 130075 585 0.00 2019-10-22 06:55:49 2019-10-22 07:07:40 t 1 1 130078 522 0.00 2019-10-22 07:10:34 2019-10-22 07:10:36 t 1 1 130080 562 0.00 2019-10-22 07:12:13 2019-10-22 07:12:26 t 1 1 130082 522 0.00 2019-10-22 07:14:36 2019-10-22 07:14:37 t 1 1 130084 522 0.00 2019-10-22 07:19:38 2019-10-22 07:19:38 t 1 1 130089 306 0.00 2019-10-22 07:20:31 2019-10-22 07:24:10 t 1 1 130092 522 0.00 2019-10-22 07:26:43 2019-10-22 07:26:45 t 1 1 130095 522 0.00 2019-10-22 07:29:48 2019-10-22 07:29:55 t 1 1 130098 562 0.00 2019-10-22 07:34:25 2019-10-22 07:34:33 t 1 1 130102 568 0.00 2019-10-22 07:37:54 2019-10-22 07:38:16 t 1 1 130106 514 0.00 2019-10-22 07:28:14 2019-10-22 07:42:19 t 1 1 58423 131 0.00 2018-01-08 15:08:43 2018-01-08 15:10:04 t 1 1 130111 512 0.00 2019-10-22 07:43:08 2019-10-22 07:45:38 t 1 1 130115 562 0.00 2019-10-22 07:48:03 2019-10-22 07:52:27 t 1 1 130121 581 0.00 2019-10-22 07:55:14 2019-10-22 07:57:27 t 1 1 130123 562 0.00 2019-10-22 07:57:13 2019-10-22 07:58:15 t 1 1 130125 522 0.00 2019-10-22 07:58:16 2019-10-22 07:58:19 t 1 1 130126 562 0.00 2019-10-22 07:59:09 2019-10-22 07:59:22 t 1 1 129843 536 0.00 2019-10-21 23:17:25 2019-10-21 23:17:32 t 1 1 129845 581 0.00 2019-10-21 23:12:24 2019-10-21 23:18:24 t 1 1 129847 551 0.00 2019-10-21 23:13:03 2019-10-21 23:19:19 t 1 1 129851 536 0.00 2019-10-21 23:20:59 2019-10-21 23:21:01 t 1 1 129860 528 0.00 2019-10-21 23:04:55 2019-10-21 23:25:02 t 1 1 129861 581 0.00 2019-10-21 23:25:11 2019-10-21 23:25:23 t 1 1 129863 536 0.00 2019-10-21 23:26:31 2019-10-21 23:26:34 t 1 1 129873 536 0.00 2019-10-21 23:30:15 2019-10-21 23:30:32 t 1 1 129876 536 0.00 2019-10-21 23:31:46 2019-10-21 23:31:52 t 1 1 129877 536 0.00 2019-10-21 23:32:16 2019-10-21 23:32:19 t 1 1 129878 536 0.00 2019-10-21 23:32:26 2019-10-21 23:33:34 t 1 1 129880 570 0.00 2019-10-21 23:25:52 2019-10-21 23:33:52 t 1 1 129881 585 0.00 2019-10-21 23:27:04 2019-10-21 23:34:02 t 1 1 129886 536 0.00 2019-10-21 23:35:21 2019-10-21 23:35:28 t 1 1 129887 536 0.00 2019-10-21 23:36:10 2019-10-21 23:36:18 t 1 1 129888 536 0.00 2019-10-21 23:36:43 2019-10-21 23:36:45 t 1 1 129891 514 0.00 2019-10-21 23:34:58 2019-10-21 23:37:44 t 1 1 129894 536 0.00 2019-10-21 23:38:45 2019-10-21 23:38:52 t 1 1 129897 536 0.00 2019-10-21 23:39:18 2019-10-21 23:39:27 t 1 1 129905 570 0.00 2019-10-21 23:43:13 2019-10-21 23:45:39 t 1 1 129911 578 0.00 2019-10-21 23:43:20 2019-10-21 23:53:05 t 1 1 129915 514 0.00 2019-10-21 23:57:08 2019-10-21 23:57:15 t 1 1 129917 514 0.00 2019-10-21 23:57:28 2019-10-22 00:08:42 t 1 1 129918 556 0.00 2019-10-21 23:58:44 2019-10-22 00:09:06 t 1 1 129921 516 0.00 2019-10-21 23:43:56 2019-10-22 00:11:42 t 1 1 129922 501 0.00 2019-10-22 00:10:32 2019-10-22 00:13:18 t 1 1 129926 501 0.00 2019-10-22 00:15:47 2019-10-22 00:20:29 t 1 1 129928 538 0.00 2019-10-21 22:43:12 2019-10-22 00:20:41 t 1 1 129931 587 0.00 2019-10-21 23:54:13 2019-10-22 00:26:31 t 1 1 129933 408 0.00 2019-10-22 00:27:06 2019-10-22 00:27:15 t 1 1 129935 501 0.00 2019-10-22 00:23:01 2019-10-22 00:28:01 t 1 1 129936 408 0.00 2019-10-22 00:30:01 2019-10-22 00:30:16 t 1 1 129938 501 0.00 2019-10-22 00:28:01 2019-10-22 00:31:53 t 1 1 129939 587 0.00 2019-10-22 00:26:45 2019-10-22 00:32:01 t 1 1 129946 503 0.00 2019-10-22 00:34:26 2019-10-22 00:36:38 t 1 1 129948 408 0.00 2019-10-22 00:37:03 2019-10-22 00:37:20 t 1 1 129953 501 0.00 2019-10-22 00:40:27 2019-10-22 00:43:05 t 1 1 129957 587 0.00 2019-10-22 00:43:54 2019-10-22 00:46:33 t 1 1 129959 562 0.00 2019-10-22 00:11:24 2019-10-22 00:48:23 t 1 1 129962 483 0.00 2019-10-22 00:48:20 2019-10-22 00:53:27 t 1 1 129963 501 0.00 2019-10-22 00:52:12 2019-10-22 00:54:42 t 1 1 129964 456 0.00 2019-10-22 00:39:01 2019-10-22 00:57:36 t 1 1 129969 514 0.00 2019-10-22 00:16:54 2019-10-22 01:10:31 t 1 1 129971 483 0.00 2019-10-22 00:53:26 2019-10-22 01:19:39 t 1 1 129972 514 0.00 2019-10-22 01:10:31 2019-10-22 01:25:07 t 1 1 129973 483 0.00 2019-10-22 01:19:39 2019-10-22 01:28:02 t 1 1 129976 483 0.00 2019-10-22 01:34:17 2019-10-22 01:34:20 t 1 1 129979 503 0.00 2019-10-22 01:34:41 2019-10-22 01:53:30 t 1 1 129980 514 0.00 2019-10-22 01:36:47 2019-10-22 01:54:07 t 1 1 129982 544 0.00 2019-10-21 23:18:05 2019-10-22 01:59:22 t 1 2 129983 483 0.00 2019-10-22 01:45:35 2019-10-22 02:03:08 t 1 1 129984 483 0.00 2019-10-22 02:10:50 2019-10-22 02:14:33 t 1 1 129987 566 0.00 2019-10-22 02:41:36 2019-10-22 02:46:56 t 1 1 129993 522 0.00 2019-10-22 04:50:28 2019-10-22 04:50:39 t 1 1 129994 522 0.00 2019-10-22 04:51:15 2019-10-22 04:51:21 t 1 1 130006 522 0.00 2019-10-22 05:11:33 2019-10-22 05:11:33 t 1 1 130007 551 0.00 2019-10-21 23:19:19 2019-10-22 05:15:35 t 1 1 130010 578 0.00 2019-10-21 23:54:37 2019-10-22 05:20:56 t 1 1 130011 522 0.00 2019-10-22 05:21:39 2019-10-22 05:21:44 t 1 1 130013 483 0.00 2019-10-22 05:22:13 2019-10-22 05:23:40 t 1 1 130019 522 0.00 2019-10-22 05:42:06 2019-10-22 05:42:08 t 1 1 130026 483 0.00 2019-10-22 05:52:50 2019-10-22 05:52:53 t 1 1 130027 522 0.00 2019-10-22 05:53:09 2019-10-22 05:53:10 t 1 1 130041 430 0.00 2019-10-22 06:12:48 2019-10-22 06:12:55 t 1 1 130043 522 0.00 2019-10-22 06:17:38 2019-10-22 06:17:41 t 1 1 130044 430 0.00 2019-10-22 06:17:56 2019-10-22 06:18:03 t 1 1 130055 430 0.00 2019-10-22 06:33:10 2019-10-22 06:33:11 t 1 1 130067 522 0.00 2019-10-22 06:54:17 2019-10-22 06:54:23 t 1 1 130069 585 0.00 2019-10-22 06:51:09 2019-10-22 06:55:50 t 1 1 130076 562 0.00 2019-10-22 07:06:19 2019-10-22 07:07:56 t 1 1 130077 522 0.00 2019-10-22 07:09:32 2019-10-22 07:10:14 t 1 1 130081 522 0.00 2019-10-22 07:13:50 2019-10-22 07:14:14 t 1 1 130083 562 0.00 2019-10-22 07:16:36 2019-10-22 07:17:20 t 1 1 130085 522 0.00 2019-10-22 07:20:06 2019-10-22 07:20:16 t 1 1 130088 570 0.00 2019-10-22 07:15:15 2019-10-22 07:23:39 t 1 1 130091 522 0.00 2019-10-22 07:25:52 2019-10-22 07:26:02 t 1 1 130093 522 0.00 2019-10-22 07:27:38 2019-10-22 07:28:02 t 1 1 130097 562 0.00 2019-10-22 07:22:09 2019-10-22 07:33:59 t 1 1 130099 512 0.00 2019-10-22 07:32:08 2019-10-22 07:35:09 t 1 1 130104 522 0.00 2019-10-22 07:40:21 2019-10-22 07:40:22 t 1 1 130108 562 0.00 2019-10-22 07:41:44 2019-10-22 07:43:30 t 1 1 130109 585 0.00 2019-10-22 07:36:53 2019-10-22 07:44:33 t 1 1 130112 564 0.00 2019-10-21 22:18:56 2019-10-22 07:45:56 t 1 1 130113 516 0.00 2019-10-22 07:36:54 2019-10-22 07:48:14 t 1 1 130114 379 0.00 2019-10-22 07:49:39 2019-10-22 07:49:40 t 1 1 130128 522 0.00 2019-10-22 08:01:00 2019-10-22 08:02:01 t 1 1 130129 522 0.00 2019-10-22 08:06:07 2019-10-22 08:06:08 t 1 1 130132 562 0.00 2019-10-22 07:59:39 2019-10-22 08:09:36 t 1 1 130147 220 0.00 2019-10-22 08:18:32 2019-10-22 08:26:09 t 1 2 130149 562 0.00 2019-10-22 08:30:23 2019-10-22 08:30:47 t 1 1 130151 587 0.00 2019-10-22 08:26:52 2019-10-22 08:33:16 t 1 1 130153 562 0.00 2019-10-22 08:34:51 2019-10-22 08:36:56 t 1 1 130156 587 0.00 2019-10-22 08:33:21 2019-10-22 08:39:38 t 1 1 130157 562 0.00 2019-10-22 08:41:34 2019-10-22 08:42:19 t 1 1 130165 501 0.00 2019-10-22 08:55:39 2019-10-22 08:56:25 t 1 1 130166 501 0.00 2019-10-22 08:56:32 2019-10-22 08:57:16 t 1 1 130168 501 0.00 2019-10-22 08:58:55 2019-10-22 08:58:57 t 1 1 130170 306 0.00 2019-10-22 08:15:56 2019-10-22 09:02:46 t 1 1 130177 487 0.00 2019-10-22 09:07:08 2019-10-22 09:17:13 t 1 2 130180 585 0.00 2019-10-22 09:16:35 2019-10-22 09:21:08 t 1 1 130185 562 0.00 2019-10-22 09:28:03 2019-10-22 09:28:10 t 1 1 130187 375 0.00 2019-10-22 09:18:56 2019-10-22 09:28:38 t 1 1 130189 522 0.00 2019-10-22 08:32:42 2019-10-22 09:29:52 t 1 1 130199 562 0.00 2019-10-22 09:45:48 2019-10-22 09:46:02 t 1 1 130200 220 0.00 2019-10-22 08:31:31 2019-10-22 09:47:55 t 1 2 130201 331 0.00 2019-10-22 09:39:36 2019-10-22 09:50:06 t 1 1 130204 220 0.00 2019-10-22 09:52:14 2019-10-22 09:53:38 t 1 1 130047 522 0.00 2019-10-22 06:23:48 2019-10-22 06:23:54 t 1 1 130048 430 0.00 2019-10-22 06:24:09 2019-10-22 06:24:25 t 1 1 130052 522 0.00 2019-10-22 06:28:57 2019-10-22 06:28:57 t 1 1 130054 522 0.00 2019-10-22 06:30:13 2019-10-22 06:30:37 t 1 1 130056 522 0.00 2019-10-22 06:34:01 2019-10-22 06:34:04 t 1 1 130058 522 0.00 2019-10-22 06:38:43 2019-10-22 06:38:48 t 1 1 130059 522 0.00 2019-10-22 06:39:07 2019-10-22 06:39:08 t 1 1 130060 522 0.00 2019-10-22 06:44:13 2019-10-22 06:44:16 t 1 1 130061 520 0.00 2019-10-22 06:34:41 2019-10-22 06:45:00 t 1 1 130063 583 0.00 2019-10-22 06:45:06 2019-10-22 06:48:47 t 1 1 130064 522 0.00 2019-10-22 06:49:15 2019-10-22 06:49:16 t 1 1 58166 131 0.00 2018-01-06 15:56:26 2018-01-06 15:58:02 t 1 1 130065 562 0.00 2019-10-22 06:50:55 2019-10-22 06:51:24 t 1 1 130070 562 0.00 2019-10-22 06:56:07 2019-10-22 06:57:00 t 1 1 130072 562 0.00 2019-10-22 07:01:39 2019-10-22 07:01:49 t 1 1 130079 522 0.00 2019-10-22 07:12:03 2019-10-22 07:12:14 t 1 1 130086 562 0.00 2019-10-22 07:18:42 2019-10-22 07:20:21 t 1 1 130087 522 0.00 2019-10-22 07:21:53 2019-10-22 07:22:16 t 1 1 130090 522 0.00 2019-10-22 07:24:41 2019-10-22 07:24:42 t 1 1 130094 514 0.00 2019-10-22 01:54:07 2019-10-22 07:28:14 t 1 1 130096 522 0.00 2019-10-22 07:33:22 2019-10-22 07:33:30 t 1 1 130100 522 0.00 2019-10-22 07:34:55 2019-10-22 07:35:30 t 1 1 130101 562 0.00 2019-10-22 07:35:48 2019-10-22 07:37:42 t 1 1 130103 522 0.00 2019-10-22 07:39:58 2019-10-22 07:40:07 t 1 1 130105 522 0.00 2019-10-22 07:40:41 2019-10-22 07:41:47 t 1 1 130107 522 0.00 2019-10-22 07:42:03 2019-10-22 07:43:04 t 1 1 130110 562 0.00 2019-10-22 07:44:58 2019-10-22 07:45:09 t 1 1 130116 520 0.00 2019-10-22 07:44:22 2019-10-22 07:52:59 t 1 1 130117 562 0.00 2019-10-22 07:55:37 2019-10-22 07:55:45 t 1 1 130118 522 0.00 2019-10-22 07:55:56 2019-10-22 07:56:08 t 1 1 130119 522 0.00 2019-10-22 07:56:19 2019-10-22 07:57:00 t 1 1 130120 522 0.00 2019-10-22 07:57:05 2019-10-22 07:57:17 t 1 1 130122 581 0.00 2019-10-22 07:57:39 2019-10-22 07:57:45 t 1 1 130124 522 0.00 2019-10-22 07:58:04 2019-10-22 07:58:17 t 1 1 130127 568 0.00 2019-10-22 07:38:16 2019-10-22 08:01:01 t 1 1 130130 581 0.00 2019-10-22 07:57:58 2019-10-22 08:06:08 t 1 1 130131 456 0.00 2019-10-22 07:59:37 2019-10-22 08:08:50 t 1 1 130134 587 0.00 2019-10-22 08:05:09 2019-10-22 08:13:58 t 1 1 130135 220 0.00 2019-10-22 08:04:36 2019-10-22 08:14:41 t 1 2 130136 568 0.00 2019-10-22 08:01:01 2019-10-22 08:15:21 t 1 1 58261 131 0.00 2018-01-07 10:47:17 2018-01-07 10:49:03 t 1 1 130137 568 0.00 2019-10-22 08:15:34 2019-10-22 08:15:39 t 1 1 130141 568 0.00 2019-10-22 08:15:39 2019-10-22 08:18:07 t 1 1 130143 562 0.00 2019-10-22 08:19:41 2019-10-22 08:20:06 t 1 1 130148 220 0.00 2019-10-22 08:13:37 2019-10-22 08:27:59 t 1 2 130158 562 0.00 2019-10-22 08:42:32 2019-10-22 08:46:05 t 1 1 130159 501 0.00 2019-10-22 08:36:40 2019-10-22 08:48:08 t 1 1 130160 501 0.00 2019-10-22 08:49:11 2019-10-22 08:49:19 t 1 1 130161 501 0.00 2019-10-22 08:49:25 2019-10-22 08:49:34 t 1 1 130162 562 0.00 2019-10-22 08:50:48 2019-10-22 08:51:14 t 1 1 130167 501 0.00 2019-10-22 08:57:24 2019-10-22 08:58:47 t 1 1 130173 562 0.00 2019-10-22 09:07:56 2019-10-22 09:08:21 t 1 1 130174 306 0.00 2019-10-22 09:09:02 2019-10-22 09:14:08 t 1 1 130176 514 0.00 2019-10-22 07:42:19 2019-10-22 09:16:10 t 1 1 130178 562 0.00 2019-10-22 09:16:36 2019-10-22 09:17:18 t 1 1 130179 375 0.00 2019-10-22 08:37:31 2019-10-22 09:18:56 t 1 1 130181 514 0.00 2019-10-22 09:16:10 2019-10-22 09:21:55 t 1 1 130184 430 0.00 2019-10-22 09:27:40 2019-10-22 09:28:03 t 1 1 130186 430 0.00 2019-10-22 09:25:04 2019-10-22 09:28:31 t 1 1 130192 481 0.00 2019-10-22 09:22:27 2019-10-22 09:34:03 t 1 1 130193 562 0.00 2019-10-22 09:33:42 2019-10-22 09:35:00 t 1 1 130195 562 0.00 2019-10-22 09:42:11 2019-10-22 09:42:39 t 1 1 130198 570 0.00 2019-10-22 09:42:50 2019-10-22 09:45:51 t 1 1 130202 562 0.00 2019-10-22 09:47:34 2019-10-22 09:50:31 t 1 1 130203 220 0.00 2019-10-22 09:45:03 2019-10-22 09:51:08 t 1 1 130205 220 0.00 2019-10-22 09:53:38 2019-10-22 09:54:09 t 1 1 130207 220 0.00 2019-10-22 09:54:09 2019-10-22 09:54:43 t 1 1 130209 220 0.00 2019-10-22 09:55:15 2019-10-22 09:55:48 t 1 1 130210 220 0.00 2019-10-22 09:55:48 2019-10-22 09:56:23 t 1 1 130213 581 0.00 2019-10-22 09:54:28 2019-10-22 09:57:40 t 1 1 130216 220 0.00 2019-10-22 09:56:57 2019-10-22 10:00:43 t 1 1 130220 581 0.00 2019-10-22 09:58:20 2019-10-22 10:01:27 t 1 1 130222 528 0.00 2019-10-22 10:03:04 2019-10-22 10:03:10 t 1 1 130224 528 0.00 2019-10-22 09:44:08 2019-10-22 10:03:41 t 1 1 130228 562 0.00 2019-10-22 10:06:26 2019-10-22 10:07:13 t 1 1 130234 220 0.00 2019-10-22 10:14:25 2019-10-22 10:14:58 t 1 1 130237 220 0.00 2019-10-22 09:49:42 2019-10-22 10:15:40 t 1 2 130244 562 0.00 2019-10-22 10:16:48 2019-10-22 10:18:22 t 1 1 130246 568 0.00 2019-10-22 10:16:35 2019-10-22 10:19:40 t 1 1 130249 520 0.00 2019-10-22 10:18:07 2019-10-22 10:20:20 t 1 1 130253 562 0.00 2019-10-22 10:25:28 2019-10-22 10:26:15 t 1 1 130256 536 0.00 2019-10-22 10:28:32 2019-10-22 10:28:38 t 1 1 130262 375 0.00 2019-10-22 10:29:07 2019-10-22 10:30:16 t 1 1 130265 568 0.00 2019-10-22 10:27:48 2019-10-22 10:31:24 t 1 1 130269 536 0.00 2019-10-22 10:32:09 2019-10-22 10:32:38 t 1 1 130273 536 0.00 2019-10-22 10:35:06 2019-10-22 10:35:12 t 1 1 130275 536 0.00 2019-10-22 10:35:28 2019-10-22 10:35:30 t 1 1 130280 536 0.00 2019-10-22 10:39:36 2019-10-22 10:39:39 t 1 1 130285 536 0.00 2019-10-22 10:41:10 2019-10-22 10:41:21 t 1 1 130289 536 0.00 2019-10-22 10:42:26 2019-10-22 10:42:39 t 1 1 130290 536 0.00 2019-10-22 10:42:44 2019-10-22 10:42:57 t 1 1 130294 536 0.00 2019-10-22 10:43:38 2019-10-22 10:43:51 t 1 1 130295 536 0.00 2019-10-22 10:43:56 2019-10-22 10:44:08 t 1 1 58414 131 0.00 2018-01-08 12:14:33 2018-01-08 12:16:04 t 1 1 130298 536 0.00 2019-10-22 10:44:38 2019-10-22 10:44:50 t 1 1 130300 536 0.00 2019-10-22 10:45:13 2019-10-22 10:45:24 t 1 1 130306 536 0.00 2019-10-22 10:46:39 2019-10-22 10:46:51 t 1 1 130307 536 0.00 2019-10-22 10:46:56 2019-10-22 10:47:08 t 1 1 130308 536 0.00 2019-10-22 10:47:13 2019-10-22 10:47:26 t 1 1 130315 536 0.00 2019-10-22 10:49:33 2019-10-22 10:49:44 t 1 1 130317 536 0.00 2019-10-22 10:50:07 2019-10-22 10:50:21 t 1 1 130328 514 0.00 2019-10-22 10:59:11 2019-10-22 10:59:55 t 1 1 130329 568 0.00 2019-10-22 10:34:50 2019-10-22 11:00:46 t 1 1 130330 514 0.00 2019-10-22 10:59:55 2019-10-22 11:03:02 t 1 1 130332 562 0.00 2019-10-22 10:47:25 2019-10-22 11:05:20 t 1 1 130336 327 0.00 2019-10-22 10:30:03 2019-10-22 11:09:56 t 1 1 130337 562 0.00 2019-10-22 11:11:27 2019-10-22 11:11:58 t 1 1 130133 522 0.00 2019-10-22 08:11:13 2019-10-22 08:11:15 t 1 1 130138 306 0.00 2019-10-22 07:46:46 2019-10-22 08:15:56 t 1 1 130139 522 0.00 2019-10-22 08:14:04 2019-10-22 08:16:17 t 1 1 130140 522 0.00 2019-10-22 08:17:02 2019-10-22 08:17:14 t 1 1 130142 522 0.00 2019-10-22 08:18:41 2019-10-22 08:18:44 t 1 1 130144 570 0.00 2019-10-22 08:18:41 2019-10-22 08:20:49 t 1 1 130145 522 0.00 2019-10-22 08:21:18 2019-10-22 08:21:21 t 1 1 130146 587 0.00 2019-10-22 08:14:29 2019-10-22 08:26:08 t 1 1 130150 522 0.00 2019-10-22 08:21:31 2019-10-22 08:32:42 t 1 1 130152 562 0.00 2019-10-22 08:32:48 2019-10-22 08:33:40 t 1 1 130154 562 0.00 2019-10-22 08:37:14 2019-10-22 08:38:01 t 1 1 130155 562 0.00 2019-10-22 08:38:12 2019-10-22 08:39:10 t 1 1 130163 501 0.00 2019-10-22 08:50:11 2019-10-22 08:51:32 t 1 1 130164 501 0.00 2019-10-22 08:52:35 2019-10-22 08:52:36 t 1 1 130169 562 0.00 2019-10-22 08:58:15 2019-10-22 08:59:10 t 1 1 130171 562 0.00 2019-10-22 09:02:35 2019-10-22 09:02:58 t 1 1 130172 562 0.00 2019-10-22 09:04:08 2019-10-22 09:04:52 t 1 1 130175 562 0.00 2019-10-22 09:15:26 2019-10-22 09:15:37 t 1 1 130182 562 0.00 2019-10-22 09:25:06 2019-10-22 09:25:48 t 1 1 130183 562 0.00 2019-10-22 09:27:53 2019-10-22 09:27:57 t 1 1 130188 501 0.00 2019-10-22 09:01:56 2019-10-22 09:29:47 t 1 1 130190 570 0.00 2019-10-22 08:32:26 2019-10-22 09:31:24 t 1 1 130191 562 0.00 2019-10-22 09:30:54 2019-10-22 09:32:30 t 1 1 130194 375 0.00 2019-10-22 09:28:38 2019-10-22 09:38:51 t 1 1 130196 570 0.00 2019-10-22 09:31:24 2019-10-22 09:42:50 t 1 1 130197 562 0.00 2019-10-22 09:44:09 2019-10-22 09:44:21 t 1 1 130206 520 0.00 2019-10-22 09:28:02 2019-10-22 09:54:28 t 1 1 130208 220 0.00 2019-10-22 09:54:43 2019-10-22 09:55:16 t 1 1 130211 520 0.00 2019-10-22 09:54:28 2019-10-22 09:56:52 t 1 1 130212 220 0.00 2019-10-22 09:56:23 2019-10-22 09:56:58 t 1 1 130214 581 0.00 2019-10-22 09:57:53 2019-10-22 09:57:59 t 1 1 130215 331 0.00 2019-10-22 09:50:49 2019-10-22 10:00:23 t 1 1 130218 220 0.00 2019-10-22 10:00:39 2019-10-22 10:01:13 t 1 1 130221 520 0.00 2019-10-22 09:57:35 2019-10-22 10:02:34 t 1 1 130223 562 0.00 2019-10-22 10:03:02 2019-10-22 10:03:20 t 1 1 130226 520 0.00 2019-10-22 10:02:48 2019-10-22 10:06:23 t 1 1 130229 498 0.00 2019-10-22 08:49:30 2019-10-22 10:09:24 t 1 2 130231 220 0.00 2019-10-22 10:13:12 2019-10-22 10:13:46 t 1 1 130232 220 0.00 2019-10-22 10:13:46 2019-10-22 10:14:26 t 1 1 130235 512 0.00 2019-10-22 10:02:18 2019-10-22 10:15:05 t 1 1 130238 220 0.00 2019-10-22 10:15:33 2019-10-22 10:16:07 t 1 1 130241 375 0.00 2019-10-22 09:38:52 2019-10-22 10:16:45 t 1 1 130242 220 0.00 2019-10-22 10:16:41 2019-10-22 10:16:58 t 1 1 130243 520 0.00 2019-10-22 10:06:28 2019-10-22 10:18:02 t 1 1 130245 536 0.00 2019-10-22 10:19:10 2019-10-22 10:19:35 t 1 1 130247 562 0.00 2019-10-22 10:19:36 2019-10-22 10:19:50 t 1 1 130250 562 0.00 2019-10-22 10:21:45 2019-10-22 10:22:23 t 1 1 130252 536 0.00 2019-10-22 10:24:01 2019-10-22 10:24:55 t 1 1 130255 416 0.00 2019-10-22 09:58:54 2019-10-22 10:27:03 t 1 1 130257 375 0.00 2019-10-22 10:20:15 2019-10-22 10:29:07 t 1 1 130259 536 0.00 2019-10-22 10:28:45 2019-10-22 10:29:39 t 1 1 130261 536 0.00 2019-10-22 10:29:58 2019-10-22 10:30:05 t 1 1 130263 501 0.00 2019-10-22 10:22:43 2019-10-22 10:30:18 t 1 1 130264 562 0.00 2019-10-22 10:30:12 2019-10-22 10:31:15 t 1 1 130266 528 0.00 2019-10-22 10:29:36 2019-10-22 10:31:35 t 1 1 130267 306 0.00 2019-10-22 09:33:03 2019-10-22 10:32:21 t 1 1 130271 568 0.00 2019-10-22 10:31:23 2019-10-22 10:34:50 t 1 1 130274 416 0.00 2019-10-22 10:27:23 2019-10-22 10:35:18 t 1 1 130278 585 0.00 2019-10-22 10:35:56 2019-10-22 10:38:18 t 1 1 130281 485 0.00 2019-10-22 10:37:31 2019-10-22 10:40:11 t 1 1 130283 536 0.00 2019-10-22 10:40:37 2019-10-22 10:40:43 t 1 1 130284 536 0.00 2019-10-22 10:40:53 2019-10-22 10:41:04 t 1 1 130287 536 0.00 2019-10-22 10:41:43 2019-10-22 10:41:54 t 1 1 130288 536 0.00 2019-10-22 10:41:59 2019-10-22 10:42:20 t 1 1 130293 536 0.00 2019-10-22 10:43:21 2019-10-22 10:43:33 t 1 1 130297 536 0.00 2019-10-22 10:44:30 2019-10-22 10:44:33 t 1 1 130299 536 0.00 2019-10-22 10:44:56 2019-10-22 10:45:07 t 1 1 130303 536 0.00 2019-10-22 10:46:06 2019-10-22 10:46:17 t 1 1 130305 536 0.00 2019-10-22 10:46:22 2019-10-22 10:46:34 t 1 1 130311 585 0.00 2019-10-22 10:42:46 2019-10-22 10:48:15 t 1 1 130314 536 0.00 2019-10-22 10:49:26 2019-10-22 10:49:27 t 1 1 130316 536 0.00 2019-10-22 10:49:49 2019-10-22 10:50:02 t 1 1 130323 536 0.00 2019-10-22 10:52:06 2019-10-22 10:52:17 t 1 1 130327 375 0.00 2019-10-22 10:37:43 2019-10-22 10:59:19 t 1 1 130333 520 0.00 2019-10-22 11:01:43 2019-10-22 11:05:43 t 1 1 130334 562 0.00 2019-10-22 11:05:43 2019-10-22 11:09:41 t 1 1 130338 536 0.00 2019-10-22 10:52:23 2019-10-22 11:12:07 t 1 1 130342 536 0.00 2019-10-22 11:13:04 2019-10-22 11:13:21 t 1 1 130347 536 0.00 2019-10-22 11:16:37 2019-10-22 11:16:48 t 1 1 130348 536 0.00 2019-10-22 11:16:54 2019-10-22 11:17:05 t 1 1 130349 375 0.00 2019-10-22 10:59:19 2019-10-22 11:17:20 t 1 1 130351 536 0.00 2019-10-22 11:17:27 2019-10-22 11:17:40 t 1 1 130356 536 0.00 2019-10-22 11:18:43 2019-10-22 11:18:54 t 1 1 130359 327 0.00 2019-10-22 11:17:53 2019-10-22 11:19:28 t 1 1 130362 416 0.00 2019-10-22 10:43:03 2019-10-22 11:21:52 t 1 1 130363 514 0.00 2019-10-22 11:03:02 2019-10-22 11:22:26 t 1 1 130365 327 0.00 2019-10-22 11:19:38 2019-10-22 11:24:01 t 1 1 130367 512 0.00 2019-10-22 11:24:28 2019-10-22 11:24:29 t 1 1 130368 528 0.00 2019-10-22 11:03:20 2019-10-22 11:26:01 t 1 1 130369 514 0.00 2019-10-22 11:22:39 2019-10-22 11:26:17 t 1 1 130370 416 0.00 2019-10-22 11:22:31 2019-10-22 11:27:18 t 1 1 130373 220 0.00 2019-10-22 11:27:31 2019-10-22 11:29:51 t 1 2 130374 375 0.00 2019-10-22 11:18:15 2019-10-22 11:30:04 t 1 1 130375 416 0.00 2019-10-22 11:27:58 2019-10-22 11:31:03 t 1 1 130376 514 0.00 2019-10-22 11:28:03 2019-10-22 11:33:36 t 1 1 130378 562 0.00 2019-10-22 11:31:26 2019-10-22 11:34:15 t 1 1 130379 306 0.00 2019-10-22 11:34:45 2019-10-22 11:34:45 f 1 1 130381 306 0.00 2019-10-22 11:35:18 2019-10-22 11:35:18 f 1 1 130383 536 0.00 2019-10-22 11:21:04 2019-10-22 11:35:29 t 1 1 130385 570 0.00 2019-10-22 11:26:29 2019-10-22 11:36:52 t 1 1 130390 536 0.00 2019-10-22 11:35:29 2019-10-22 11:38:21 t 1 1 130391 220 0.00 2019-10-22 11:25:06 2019-10-22 11:38:35 t 1 1 130395 562 0.00 2019-10-22 11:45:40 2019-10-22 11:45:59 t 1 1 130396 306 0.00 2019-10-22 11:46:52 2019-10-22 11:46:52 f 1 1 130397 306 0.00 2019-10-22 11:47:04 2019-10-22 11:47:04 f 1 1 130398 514 0.00 2019-10-22 11:37:25 2019-10-22 11:48:04 t 1 1 130401 514 0.00 2019-10-22 11:53:25 2019-10-22 11:55:56 t 1 1 130217 562 0.00 2019-10-22 09:54:07 2019-10-22 10:01:02 t 1 1 130219 512 0.00 2019-10-22 09:42:32 2019-10-22 10:01:16 t 1 1 130225 516 0.00 2019-10-22 10:01:43 2019-10-22 10:06:00 t 1 1 130227 331 0.00 2019-10-22 10:03:39 2019-10-22 10:07:07 t 1 1 130230 220 0.00 2019-10-22 10:01:13 2019-10-22 10:13:12 t 1 1 130233 562 0.00 2019-10-22 10:08:55 2019-10-22 10:14:52 t 1 1 130236 220 0.00 2019-10-22 10:14:58 2019-10-22 10:15:34 t 1 1 130239 568 0.00 2019-10-22 10:15:06 2019-10-22 10:16:17 t 1 1 130240 220 0.00 2019-10-22 10:16:07 2019-10-22 10:16:41 t 1 1 130248 375 0.00 2019-10-22 10:16:45 2019-10-22 10:20:16 t 1 1 130251 536 0.00 2019-10-22 10:19:35 2019-10-22 10:24:01 t 1 1 130254 536 0.00 2019-10-22 10:26:24 2019-10-22 10:26:47 t 1 1 130258 528 0.00 2019-10-22 10:06:14 2019-10-22 10:29:36 t 1 1 130260 327 0.00 2019-10-22 09:57:55 2019-10-22 10:30:03 t 1 1 130268 375 0.00 2019-10-22 10:30:34 2019-10-22 10:32:29 t 1 1 130270 306 0.00 2019-10-22 10:33:04 2019-10-22 10:33:04 f 1 1 130272 375 0.00 2019-10-22 10:32:48 2019-10-22 10:34:51 t 1 1 130276 520 0.00 2019-10-22 10:33:34 2019-10-22 10:35:47 t 1 1 130277 375 0.00 2019-10-22 10:35:37 2019-10-22 10:37:44 t 1 1 130279 562 0.00 2019-10-22 10:32:56 2019-10-22 10:38:33 t 1 1 130282 536 0.00 2019-10-22 10:39:43 2019-10-22 10:40:12 t 1 1 130286 536 0.00 2019-10-22 10:41:26 2019-10-22 10:41:38 t 1 1 130291 416 0.00 2019-10-22 10:34:22 2019-10-22 10:42:58 t 1 1 130292 536 0.00 2019-10-22 10:43:02 2019-10-22 10:43:15 t 1 1 130296 536 0.00 2019-10-22 10:44:13 2019-10-22 10:44:25 t 1 1 130301 536 0.00 2019-10-22 10:45:30 2019-10-22 10:45:42 t 1 1 130302 536 0.00 2019-10-22 10:45:47 2019-10-22 10:46:00 t 1 1 130304 562 0.00 2019-10-22 10:39:15 2019-10-22 10:46:22 t 1 1 130309 536 0.00 2019-10-22 10:47:31 2019-10-22 10:47:43 t 1 1 130310 536 0.00 2019-10-22 10:47:48 2019-10-22 10:48:01 t 1 1 130312 536 0.00 2019-10-22 10:48:06 2019-10-22 10:48:18 t 1 1 130313 536 0.00 2019-10-22 10:49:00 2019-10-22 10:49:19 t 1 1 130318 536 0.00 2019-10-22 10:50:26 2019-10-22 10:50:43 t 1 1 130319 536 0.00 2019-10-22 10:50:48 2019-10-22 10:51:00 t 1 1 130320 536 0.00 2019-10-22 10:51:05 2019-10-22 10:51:19 t 1 1 130321 536 0.00 2019-10-22 10:51:24 2019-10-22 10:51:34 t 1 1 130322 536 0.00 2019-10-22 10:51:39 2019-10-22 10:52:00 t 1 1 130324 585 0.00 2019-10-22 10:51:10 2019-10-22 10:54:49 t 1 1 130325 512 0.00 2019-10-22 10:15:14 2019-10-22 10:55:07 t 1 1 130326 514 0.00 2019-10-22 09:21:55 2019-10-22 10:59:17 t 1 1 130331 361 0.00 2019-10-22 09:40:19 2019-10-22 11:03:25 t 1 2 130335 331 0.00 2019-10-22 10:51:31 2019-10-22 11:09:46 t 1 1 130340 536 0.00 2019-10-22 11:12:30 2019-10-22 11:12:41 t 1 1 130341 536 0.00 2019-10-22 11:12:46 2019-10-22 11:12:59 t 1 1 130346 536 0.00 2019-10-22 11:16:19 2019-10-22 11:16:32 t 1 1 130350 536 0.00 2019-10-22 11:17:10 2019-10-22 11:17:22 t 1 1 130352 536 0.00 2019-10-22 11:17:45 2019-10-22 11:18:01 t 1 1 130353 375 0.00 2019-10-22 11:17:20 2019-10-22 11:18:16 t 1 1 130355 536 0.00 2019-10-22 11:18:23 2019-10-22 11:18:37 t 1 1 130357 220 0.00 2019-10-22 10:17:15 2019-10-22 11:19:26 t 1 1 130360 536 0.00 2019-10-22 11:19:00 2019-10-22 11:20:33 t 1 1 130364 501 0.00 2019-10-22 11:13:54 2019-10-22 11:23:28 t 1 1 130366 220 0.00 2019-10-22 10:15:50 2019-10-22 11:24:10 t 1 2 130384 416 0.00 2019-10-22 11:31:03 2019-10-22 11:36:33 t 1 1 130386 528 0.00 2019-10-22 11:26:01 2019-10-22 11:36:54 t 1 1 130388 514 0.00 2019-10-22 11:33:35 2019-10-22 11:37:04 t 1 1 130399 514 0.00 2019-10-22 11:47:48 2019-10-22 11:53:06 t 1 1 130402 562 0.00 2019-10-22 11:56:21 2019-10-22 11:56:46 t 1 1 130404 220 0.00 2019-10-22 11:42:20 2019-10-22 12:00:23 t 1 1 130406 220 0.00 2019-10-22 12:00:39 2019-10-22 12:02:15 t 1 1 130407 536 0.00 2019-10-22 11:54:32 2019-10-22 12:04:59 t 1 1 130409 562 0.00 2019-10-22 12:04:42 2019-10-22 12:05:42 t 1 1 130410 512 0.00 2019-10-22 12:01:55 2019-10-22 12:07:15 t 1 1 130417 514 0.00 2019-10-22 12:06:32 2019-10-22 12:19:54 t 1 1 130418 562 0.00 2019-10-22 12:08:59 2019-10-22 12:20:39 t 1 1 130433 570 0.00 2019-10-22 12:33:09 2019-10-22 12:37:08 t 1 1 130434 562 0.00 2019-10-22 12:31:32 2019-10-22 12:38:35 t 1 1 130437 536 0.00 2019-10-22 12:04:59 2019-10-22 12:39:26 t 1 1 130440 536 0.00 2019-10-22 12:39:26 2019-10-22 12:41:33 t 1 1 130444 536 0.00 2019-10-22 12:42:39 2019-10-22 12:42:50 t 1 1 130450 536 0.00 2019-10-22 12:44:24 2019-10-22 12:44:36 t 1 1 130452 536 0.00 2019-10-22 12:44:59 2019-10-22 12:45:10 t 1 1 130458 570 0.00 2019-10-22 12:40:54 2019-10-22 12:46:29 t 1 1 130464 536 0.00 2019-10-22 12:48:10 2019-10-22 12:48:22 t 1 1 130466 536 0.00 2019-10-22 12:48:45 2019-10-22 12:48:58 t 1 1 130469 536 0.00 2019-10-22 12:49:37 2019-10-22 12:49:48 t 1 1 130473 570 0.00 2019-10-22 12:47:33 2019-10-22 12:50:24 t 1 1 130477 536 0.00 2019-10-22 12:51:19 2019-10-22 12:51:30 t 1 1 130478 536 0.00 2019-10-22 12:51:35 2019-10-22 12:51:46 t 1 1 130479 361 0.00 2019-10-22 12:08:14 2019-10-22 12:52:34 t 1 2 130481 562 0.00 2019-10-22 12:48:47 2019-10-22 12:52:54 t 1 1 130482 516 0.00 2019-10-22 12:46:53 2019-10-22 12:53:24 t 1 1 130484 536 0.00 2019-10-22 12:54:05 2019-10-22 12:54:28 t 1 1 130485 536 0.00 2019-10-22 12:54:41 2019-10-22 12:54:41 f 1 1 130489 585 0.00 2019-10-22 12:53:54 2019-10-22 12:57:52 t 1 1 130491 581 0.00 2019-10-22 11:46:13 2019-10-22 13:06:15 t 1 1 130498 562 0.00 2019-10-22 13:15:49 2019-10-22 13:16:32 t 1 1 130499 562 0.00 2019-10-22 13:17:15 2019-10-22 13:17:23 t 1 1 130501 562 0.00 2019-10-22 13:18:51 2019-10-22 13:19:24 t 1 1 130503 498 0.00 2019-10-22 12:57:09 2019-10-22 13:21:12 t 1 2 130506 587 0.00 2019-10-22 13:24:09 2019-10-22 13:24:46 t 1 1 130508 587 0.00 2019-10-22 13:25:02 2019-10-22 13:28:18 t 1 1 130511 562 0.00 2019-10-22 13:31:42 2019-10-22 13:31:59 t 1 1 130517 375 0.00 2019-10-22 12:51:36 2019-10-22 13:36:38 t 1 1 130525 581 0.00 2019-10-22 13:18:39 2019-10-22 13:46:28 t 1 1 130526 327 0.00 2019-10-22 13:38:54 2019-10-22 13:47:29 t 1 1 130527 327 0.00 2019-10-22 13:47:42 2019-10-22 13:47:50 t 1 1 130532 562 0.00 2019-10-22 13:58:03 2019-10-22 13:58:28 t 1 1 130537 581 0.00 2019-10-22 13:53:46 2019-10-22 14:06:42 t 1 1 130538 562 0.00 2019-10-22 14:07:29 2019-10-22 14:07:46 t 1 1 130542 562 0.00 2019-10-22 14:09:11 2019-10-22 14:09:17 t 1 1 58732 131 0.00 2018-01-10 10:06:54 2018-01-10 10:08:08 t 1 1 130543 430 0.00 2019-10-22 13:42:19 2019-10-22 14:10:18 t 1 1 130549 501 0.00 2019-10-22 14:16:18 2019-10-22 14:17:12 t 1 1 130551 562 0.00 2019-10-22 14:18:49 2019-10-22 14:18:56 t 1 1 130553 220 0.00 2019-10-22 09:54:28 2019-10-22 14:20:00 t 1 2 130558 562 0.00 2019-10-22 14:25:49 2019-10-22 14:25:54 t 1 1 130339 536 0.00 2019-10-22 11:12:12 2019-10-22 11:12:24 t 1 1 130343 536 0.00 2019-10-22 11:13:26 2019-10-22 11:13:38 t 1 1 130344 536 0.00 2019-10-22 11:13:43 2019-10-22 11:13:55 t 1 1 130345 536 0.00 2019-10-22 11:14:00 2019-10-22 11:16:14 t 1 1 130354 536 0.00 2019-10-22 11:18:07 2019-10-22 11:18:18 t 1 1 130358 220 0.00 2019-10-22 11:19:26 2019-10-22 11:19:27 t 1 1 130361 562 0.00 2019-10-22 11:20:45 2019-10-22 11:21:05 t 1 1 130371 514 0.00 2019-10-22 11:26:17 2019-10-22 11:28:04 t 1 1 130372 585 0.00 2019-10-22 11:22:16 2019-10-22 11:29:43 t 1 1 130377 512 0.00 2019-10-22 11:29:04 2019-10-22 11:34:04 t 1 1 130380 306 0.00 2019-10-22 11:34:53 2019-10-22 11:34:53 f 1 1 130382 306 0.00 2019-10-22 11:35:26 2019-10-22 11:35:26 f 1 1 130387 562 0.00 2019-10-22 11:34:38 2019-10-22 11:36:57 t 1 1 130389 562 0.00 2019-10-22 11:37:47 2019-10-22 11:38:07 t 1 1 130392 570 0.00 2019-10-22 11:36:52 2019-10-22 11:40:47 t 1 1 130393 220 0.00 2019-10-22 11:39:49 2019-10-22 11:41:43 t 1 1 130394 585 0.00 2019-10-22 11:38:30 2019-10-22 11:42:26 t 1 1 130400 536 0.00 2019-10-22 11:38:21 2019-10-22 11:54:32 t 1 1 130405 220 0.00 2019-10-22 12:00:23 2019-10-22 12:00:36 t 1 1 130411 562 0.00 2019-10-22 12:07:10 2019-10-22 12:07:18 t 1 1 130412 570 0.00 2019-10-22 11:57:12 2019-10-22 12:08:18 t 1 1 130413 375 0.00 2019-10-22 11:32:09 2019-10-22 12:12:07 t 1 1 130415 520 0.00 2019-10-22 12:12:57 2019-10-22 12:16:02 t 1 1 130416 472 0.00 2019-10-22 12:19:03 2019-10-22 12:19:03 f 1 1 130419 375 0.00 2019-10-22 12:12:07 2019-10-22 12:20:54 t 1 1 130420 562 0.00 2019-10-22 12:21:39 2019-10-22 12:22:56 t 1 1 130421 375 0.00 2019-10-22 12:20:54 2019-10-22 12:23:56 t 1 1 130422 562 0.00 2019-10-22 12:23:35 2019-10-22 12:26:44 t 1 1 130424 585 0.00 2019-10-22 12:21:37 2019-10-22 12:27:57 t 1 1 130426 544 0.00 2019-10-22 12:29:29 2019-10-22 12:29:32 t 1 2 130429 585 0.00 2019-10-22 12:29:08 2019-10-22 12:31:14 t 1 1 130431 570 0.00 2019-10-22 12:08:18 2019-10-22 12:33:06 t 1 1 130432 544 0.00 2019-10-22 12:26:48 2019-10-22 12:36:04 t 1 2 130435 416 0.00 2019-10-22 12:32:15 2019-10-22 12:38:52 t 1 1 130443 536 0.00 2019-10-22 12:42:20 2019-10-22 12:42:33 t 1 1 130445 536 0.00 2019-10-22 12:42:55 2019-10-22 12:43:20 t 1 1 130447 536 0.00 2019-10-22 12:43:26 2019-10-22 12:43:39 t 1 1 130449 536 0.00 2019-10-22 12:44:07 2019-10-22 12:44:19 t 1 1 130454 536 0.00 2019-10-22 12:45:33 2019-10-22 12:45:44 t 1 1 130455 562 0.00 2019-10-22 12:43:43 2019-10-22 12:46:00 t 1 1 130457 536 0.00 2019-10-22 12:46:12 2019-10-22 12:46:23 t 1 1 130459 536 0.00 2019-10-22 12:46:29 2019-10-22 12:46:40 t 1 1 130461 536 0.00 2019-10-22 12:47:03 2019-10-22 12:47:14 t 1 1 130462 536 0.00 2019-10-22 12:47:20 2019-10-22 12:47:47 t 1 1 130463 536 0.00 2019-10-22 12:47:52 2019-10-22 12:48:04 t 1 1 130468 536 0.00 2019-10-22 12:49:20 2019-10-22 12:49:31 t 1 1 130470 375 0.00 2019-10-22 12:25:19 2019-10-22 12:49:50 t 1 1 130472 536 0.00 2019-10-22 12:50:11 2019-10-22 12:50:23 t 1 1 130475 536 0.00 2019-10-22 12:50:45 2019-10-22 12:50:57 t 1 1 130476 536 0.00 2019-10-22 12:51:02 2019-10-22 12:51:14 t 1 1 130488 536 0.00 2019-10-22 12:54:36 2019-10-22 12:56:57 t 1 1 130490 585 0.00 2019-10-22 13:00:44 2019-10-22 13:03:09 t 1 1 130492 416 0.00 2019-10-22 12:38:52 2019-10-22 13:08:02 t 1 1 130494 585 0.00 2019-10-22 13:09:02 2019-10-22 13:12:22 t 1 1 130496 562 0.00 2019-10-22 13:01:35 2019-10-22 13:15:30 t 1 1 130497 564 0.00 2019-10-22 11:53:16 2019-10-22 13:16:10 t 1 1 130500 581 0.00 2019-10-22 13:06:15 2019-10-22 13:17:50 t 1 1 130505 520 0.00 2019-10-22 13:11:42 2019-10-22 13:21:56 t 1 1 130507 562 0.00 2019-10-22 13:26:36 2019-10-22 13:26:58 t 1 1 130512 327 0.00 2019-10-22 13:28:24 2019-10-22 13:32:05 t 1 1 130513 416 0.00 2019-10-22 13:31:26 2019-10-22 13:32:42 t 1 1 130514 520 0.00 2019-10-22 13:21:55 2019-10-22 13:33:38 t 1 1 130516 327 0.00 2019-10-22 13:32:15 2019-10-22 13:33:57 t 1 1 130521 490 0.00 2019-10-22 13:39:46 2019-10-22 13:41:59 t 1 1 130522 562 0.00 2019-10-22 13:42:08 2019-10-22 13:42:29 t 1 1 130528 562 0.00 2019-10-22 13:47:43 2019-10-22 13:47:51 t 1 1 130529 562 0.00 2019-10-22 13:48:09 2019-10-22 13:48:13 t 1 1 130531 581 0.00 2019-10-22 13:46:35 2019-10-22 13:53:46 t 1 1 130534 570 0.00 2019-10-22 13:45:39 2019-10-22 13:59:53 t 1 1 130540 562 0.00 2019-10-22 14:07:24 2019-10-22 14:08:58 t 1 1 130544 587 0.00 2019-10-22 13:50:46 2019-10-22 14:11:43 t 1 1 130545 562 0.00 2019-10-22 14:11:21 2019-10-22 14:12:21 t 1 1 130548 562 0.00 2019-10-22 14:14:47 2019-10-22 14:15:21 t 1 1 130554 583 0.00 2019-10-22 14:09:04 2019-10-22 14:21:31 t 1 1 130556 581 0.00 2019-10-22 14:22:47 2019-10-22 14:22:52 t 1 1 130559 501 0.00 2019-10-22 14:17:12 2019-10-22 14:27:16 t 1 1 130562 456 0.00 2019-10-22 14:27:26 2019-10-22 14:28:58 t 1 1 130567 587 0.00 2019-10-22 14:32:35 2019-10-22 14:41:41 t 1 1 58689 131 0.00 2018-01-10 04:50:35 2018-01-10 04:52:08 t 1 1 130569 327 0.00 2019-10-22 14:09:05 2019-10-22 14:43:43 t 1 1 130571 451 0.00 2019-10-22 14:07:18 2019-10-22 14:44:20 t 1 1 130572 562 0.00 2019-10-22 14:46:42 2019-10-22 14:47:05 t 1 1 130580 562 0.00 2019-10-22 14:54:06 2019-10-22 14:54:52 t 1 1 130581 220 0.00 2019-10-22 14:20:19 2019-10-22 14:55:24 t 1 2 130584 532 0.00 2019-10-22 14:48:35 2019-10-22 14:56:49 t 1 1 130587 327 0.00 2019-10-22 15:00:17 2019-10-22 15:00:50 t 1 1 130589 532 0.00 2019-10-22 14:56:49 2019-10-22 15:05:02 t 1 1 130600 583 0.00 2019-10-22 15:15:20 2019-10-22 15:20:29 t 1 1 130602 585 0.00 2019-10-22 14:51:13 2019-10-22 15:21:21 t 1 1 130605 587 0.00 2019-10-22 15:16:10 2019-10-22 15:24:48 t 1 1 130607 327 0.00 2019-10-22 15:23:32 2019-10-22 15:25:14 t 1 1 130608 532 0.00 2019-10-22 15:26:19 2019-10-22 15:26:37 t 1 1 58746 131 0.00 2018-01-10 13:27:29 2018-01-10 13:29:08 t 1 1 130609 581 0.00 2019-10-22 15:14:35 2019-10-22 15:28:08 t 1 1 130611 485 0.00 2019-10-22 15:22:26 2019-10-22 15:29:06 t 1 1 130613 583 0.00 2019-10-22 15:28:43 2019-10-22 15:30:32 t 1 1 130614 516 0.00 2019-10-22 15:04:35 2019-10-22 15:32:07 t 1 1 130616 481 0.00 2019-10-22 15:24:53 2019-10-22 15:32:35 t 1 1 130619 451 0.00 2019-10-22 15:30:17 2019-10-22 15:34:41 t 1 1 130622 587 0.00 2019-10-22 15:32:51 2019-10-22 15:36:38 t 1 1 130623 508 0.00 2019-10-22 15:28:55 2019-10-22 15:37:19 t 1 2 130625 443 0.00 2019-10-22 15:38:04 2019-10-22 15:40:59 t 1 1 58771 131 0.00 2018-01-10 15:17:03 2018-01-10 15:18:08 t 1 1 130627 532 0.00 2019-10-22 15:40:15 2019-10-22 15:41:58 t 1 1 130630 395 0.00 2019-10-22 15:45:01 2019-10-22 15:45:21 t 1 2 130632 562 0.00 2019-10-22 15:46:15 2019-10-22 15:46:36 t 1 1 130634 562 0.00 2019-10-22 15:50:33 2019-10-22 15:50:42 t 1 1 130403 570 0.00 2019-10-22 11:40:54 2019-10-22 11:57:12 t 1 1 130408 514 0.00 2019-10-22 11:55:59 2019-10-22 12:05:09 t 1 1 130414 481 0.00 2019-10-22 12:11:26 2019-10-22 12:13:49 t 1 1 130423 456 0.00 2019-10-22 12:16:26 2019-10-22 12:27:55 t 1 1 130425 585 0.00 2019-10-22 12:27:56 2019-10-22 12:29:09 t 1 1 130427 220 0.00 2019-10-22 12:06:18 2019-10-22 12:29:45 t 1 1 130428 514 0.00 2019-10-22 12:19:54 2019-10-22 12:30:19 t 1 1 130430 416 0.00 2019-10-22 12:27:30 2019-10-22 12:32:18 t 1 1 130436 570 0.00 2019-10-22 12:37:24 2019-10-22 12:39:14 t 1 1 130438 570 0.00 2019-10-22 12:39:14 2019-10-22 12:40:49 t 1 1 130439 562 0.00 2019-10-22 12:39:49 2019-10-22 12:41:27 t 1 1 130441 536 0.00 2019-10-22 12:41:38 2019-10-22 12:41:54 t 1 1 130442 536 0.00 2019-10-22 12:41:59 2019-10-22 12:42:14 t 1 1 130446 562 0.00 2019-10-22 12:43:01 2019-10-22 12:43:22 t 1 1 130448 536 0.00 2019-10-22 12:43:45 2019-10-22 12:44:01 t 1 1 130451 536 0.00 2019-10-22 12:44:42 2019-10-22 12:44:53 t 1 1 130453 536 0.00 2019-10-22 12:45:16 2019-10-22 12:45:28 t 1 1 130456 536 0.00 2019-10-22 12:45:50 2019-10-22 12:46:07 t 1 1 130460 536 0.00 2019-10-22 12:46:46 2019-10-22 12:46:58 t 1 1 130465 536 0.00 2019-10-22 12:48:27 2019-10-22 12:48:40 t 1 1 130467 536 0.00 2019-10-22 12:49:03 2019-10-22 12:49:14 t 1 1 130471 536 0.00 2019-10-22 12:49:53 2019-10-22 12:50:06 t 1 1 130474 536 0.00 2019-10-22 12:50:28 2019-10-22 12:50:40 t 1 1 130480 536 0.00 2019-10-22 12:52:40 2019-10-22 12:52:53 t 1 1 58824 131 0.00 2018-01-11 06:00:17 2018-01-11 06:02:08 t 1 1 130483 536 0.00 2019-10-22 12:51:54 2019-10-22 12:53:57 t 1 1 58829 131 0.00 2018-01-11 07:31:16 2018-01-11 07:33:08 t 1 1 130486 536 0.00 2019-10-22 12:53:00 2019-10-22 12:54:57 t 1 1 130487 220 0.00 2019-10-22 11:25:02 2019-10-22 12:56:06 t 1 2 130493 520 0.00 2019-10-22 13:07:10 2019-10-22 13:08:11 t 1 1 130495 516 0.00 2019-10-22 13:07:46 2019-10-22 13:12:37 t 1 1 130502 562 0.00 2019-10-22 13:20:52 2019-10-22 13:20:59 t 1 1 130504 570 0.00 2019-10-22 12:50:23 2019-10-22 13:21:27 t 1 1 130509 570 0.00 2019-10-22 13:21:27 2019-10-22 13:30:52 t 1 1 130510 416 0.00 2019-10-22 13:08:01 2019-10-22 13:31:08 t 1 1 58855 131 0.00 2018-01-11 12:23:25 2018-01-11 12:25:09 t 1 1 130515 562 0.00 2019-10-22 13:33:34 2019-10-22 13:33:56 t 1 1 130518 570 0.00 2019-10-22 13:30:52 2019-10-22 13:37:06 t 1 1 130519 327 0.00 2019-10-22 13:32:31 2019-10-22 13:38:38 t 1 1 130520 327 0.00 2019-10-22 13:38:47 2019-10-22 13:39:57 t 1 1 130523 562 0.00 2019-10-22 13:43:56 2019-10-22 13:44:10 t 1 1 130524 585 0.00 2019-10-22 13:40:59 2019-10-22 13:46:28 t 1 1 130530 587 0.00 2019-10-22 13:37:28 2019-10-22 13:50:42 t 1 1 130533 327 0.00 2019-10-22 13:58:10 2019-10-22 13:59:08 t 1 1 130535 562 0.00 2019-10-22 14:02:46 2019-10-22 14:03:26 t 1 1 130536 562 0.00 2019-10-22 14:06:12 2019-10-22 14:06:32 t 1 1 130539 570 0.00 2019-10-22 13:59:53 2019-10-22 14:08:37 t 1 1 130541 583 0.00 2019-10-22 13:54:40 2019-10-22 14:09:04 t 1 1 130546 581 0.00 2019-10-22 14:06:42 2019-10-22 14:12:44 t 1 1 130547 581 0.00 2019-10-22 14:12:44 2019-10-22 14:13:29 t 1 1 130550 581 0.00 2019-10-22 14:17:08 2019-10-22 14:17:13 t 1 1 130552 581 0.00 2019-10-22 14:18:37 2019-10-22 14:19:15 t 1 1 130555 562 0.00 2019-10-22 14:21:55 2019-10-22 14:22:23 t 1 1 130557 483 0.00 2019-10-22 14:21:26 2019-10-22 14:22:54 t 1 1 130560 581 0.00 2019-10-22 14:24:01 2019-10-22 14:27:16 t 1 1 130561 528 0.00 2019-10-22 14:22:14 2019-10-22 14:28:25 t 1 1 130565 562 0.00 2019-10-22 14:32:47 2019-10-22 14:33:55 t 1 1 130566 574 0.00 2019-10-22 06:54:03 2019-10-22 14:37:22 t 1 1 130568 585 0.00 2019-10-22 14:40:40 2019-10-22 14:43:29 t 1 1 130573 220 0.00 2019-10-22 14:10:39 2019-10-22 14:49:42 t 1 1 130574 220 0.00 2019-10-22 11:36:05 2019-10-22 14:50:08 t 1 2 130588 562 0.00 2019-10-22 15:02:52 2019-10-22 15:03:58 t 1 1 130591 583 0.00 2019-10-22 14:58:32 2019-10-22 15:06:42 t 1 1 130592 583 0.00 2019-10-22 15:07:32 2019-10-22 15:09:33 t 1 1 130594 327 0.00 2019-10-22 15:09:29 2019-10-22 15:13:34 t 1 1 130596 562 0.00 2019-10-22 15:15:29 2019-10-22 15:15:56 t 1 1 130598 220 0.00 2019-10-22 14:48:24 2019-10-22 15:18:30 t 1 2 130603 375 0.00 2019-10-22 13:36:38 2019-10-22 15:23:58 t 1 1 130604 532 0.00 2019-10-22 15:24:36 2019-10-22 15:24:37 t 1 1 130606 562 0.00 2019-10-22 15:24:40 2019-10-22 15:25:02 t 1 1 130615 375 0.00 2019-10-22 15:23:58 2019-10-22 15:32:11 t 1 1 130617 587 0.00 2019-10-22 15:25:10 2019-10-22 15:32:39 t 1 1 130621 562 0.00 2019-10-22 15:35:35 2019-10-22 15:35:49 t 1 1 58964 131 0.00 2018-01-12 08:18:56 2018-01-12 08:19:31 t 1 1 58965 131 0.00 2018-01-12 08:19:31 2018-01-12 08:20:54 t 1 1 130624 587 0.00 2019-10-22 15:36:49 2019-10-22 15:39:53 t 1 1 130626 327 0.00 2019-10-22 15:35:10 2019-10-22 15:41:47 t 1 1 130629 568 0.00 2019-10-22 15:40:37 2019-10-22 15:42:58 t 1 1 58977 131 0.00 2018-01-12 10:14:11 2018-01-12 10:16:09 t 1 1 130635 445 0.00 2019-10-22 15:21:34 2019-10-22 15:51:49 t 1 1 130638 581 0.00 2019-10-22 15:28:08 2019-10-22 15:54:13 t 1 1 130644 428 0.00 2019-10-22 15:57:22 2019-10-22 15:57:22 f 1 1 130653 532 0.00 2019-10-22 16:06:54 2019-10-22 16:07:50 t 1 1 130659 585 0.00 2019-10-22 16:07:30 2019-10-22 16:11:47 t 1 1 130660 532 0.00 2019-10-22 16:12:15 2019-10-22 16:12:18 t 1 1 130662 532 0.00 2019-10-22 16:12:27 2019-10-22 16:12:31 t 1 1 130663 532 0.00 2019-10-22 16:12:49 2019-10-22 16:12:57 t 1 1 130669 532 0.00 2019-10-22 16:18:47 2019-10-22 16:19:04 t 1 1 130671 327 0.00 2019-10-22 16:16:34 2019-10-22 16:21:25 t 1 1 130672 375 0.00 2019-10-22 16:13:14 2019-10-22 16:22:27 t 1 1 130674 395 0.00 2019-10-22 16:17:38 2019-10-22 16:23:01 t 1 2 130679 532 0.00 2019-10-22 16:29:36 2019-10-22 16:29:44 t 1 1 130680 587 0.00 2019-10-22 16:26:38 2019-10-22 16:29:59 t 1 1 59008 131 0.00 2018-01-12 17:34:10 2018-01-12 17:35:12 t 1 1 130682 532 0.00 2019-10-22 16:28:55 2019-10-22 16:30:58 t 1 1 130688 327 0.00 2019-10-22 16:31:20 2019-10-22 16:32:26 t 1 1 130690 562 0.00 2019-10-22 16:35:45 2019-10-22 16:35:54 t 1 1 130693 220 0.00 2019-10-22 14:58:10 2019-10-22 16:37:07 t 1 1 130697 585 0.00 2019-10-22 16:37:45 2019-10-22 16:39:55 t 1 1 130699 520 0.00 2019-10-22 16:37:12 2019-10-22 16:44:19 t 1 1 130702 587 0.00 2019-10-22 16:33:41 2019-10-22 16:47:37 t 1 1 130704 528 0.00 2019-10-22 16:39:37 2019-10-22 16:48:14 t 1 1 130706 532 0.00 2019-10-22 16:49:49 2019-10-22 16:49:51 t 1 1 130712 532 0.00 2019-10-22 16:54:29 2019-10-22 16:54:31 t 1 1 130713 327 0.00 2019-10-22 16:53:38 2019-10-22 16:55:32 t 1 1 130715 562 0.00 2019-10-22 16:58:19 2019-10-22 16:59:41 t 1 1 130718 520 0.00 2019-10-22 17:00:53 2019-10-22 17:02:48 t 1 1 130563 587 0.00 2019-10-22 14:12:18 2019-10-22 14:32:35 t 1 1 130564 583 0.00 2019-10-22 14:26:11 2019-10-22 14:32:52 t 1 1 130570 562 0.00 2019-10-22 14:43:39 2019-10-22 14:44:01 t 1 1 130575 327 0.00 2019-10-22 14:48:38 2019-10-22 14:50:22 t 1 1 130576 570 0.00 2019-10-22 14:41:31 2019-10-22 14:51:08 t 1 1 130577 220 0.00 2019-10-22 14:49:42 2019-10-22 14:51:27 t 1 1 130578 578 0.00 2019-10-22 14:19:19 2019-10-22 14:54:06 t 1 1 130579 220 0.00 2019-10-22 14:51:22 2019-10-22 14:54:26 t 1 1 130582 220 0.00 2019-10-22 14:54:26 2019-10-22 14:55:40 t 1 1 130583 220 0.00 2019-10-22 14:55:40 2019-10-22 14:56:48 t 1 1 130585 220 0.00 2019-10-22 14:56:48 2019-10-22 14:58:13 t 1 1 130586 578 0.00 2019-10-22 14:53:26 2019-10-22 14:59:37 t 1 1 130590 562 0.00 2019-10-22 15:05:02 2019-10-22 15:05:11 t 1 1 130593 587 0.00 2019-10-22 14:41:41 2019-10-22 15:11:17 t 1 1 130595 532 0.00 2019-10-22 15:05:02 2019-10-22 15:15:39 t 1 1 130597 532 0.00 2019-10-22 15:15:53 2019-10-22 15:16:58 t 1 1 130599 564 0.00 2019-10-22 13:16:11 2019-10-22 15:18:45 t 1 1 130601 508 0.00 2019-10-22 14:50:40 2019-10-22 15:21:01 t 1 2 130610 220 0.00 2019-10-22 15:11:46 2019-10-22 15:28:36 t 1 2 130612 451 0.00 2019-10-22 14:53:23 2019-10-22 15:29:40 t 1 1 130618 483 0.00 2019-10-22 15:13:09 2019-10-22 15:32:49 t 1 1 58857 131 0.00 2018-01-11 12:37:02 2018-01-11 12:38:09 t 1 1 130620 532 0.00 2019-10-22 15:29:39 2019-10-22 15:35:19 t 1 1 130628 532 0.00 2019-10-22 15:42:48 2019-10-22 15:42:53 t 1 1 130631 532 0.00 2019-10-22 15:46:26 2019-10-22 15:46:29 t 1 1 130633 587 0.00 2019-10-22 15:40:14 2019-10-22 15:47:00 t 1 1 130636 532 0.00 2019-10-22 15:51:40 2019-10-22 15:51:50 t 1 1 130637 327 0.00 2019-10-22 15:51:12 2019-10-22 15:53:20 t 1 1 130639 587 0.00 2019-10-22 15:47:00 2019-10-22 15:54:54 t 1 1 130640 532 0.00 2019-10-22 15:55:59 2019-10-22 15:56:11 t 1 1 130642 562 0.00 2019-10-22 15:56:46 2019-10-22 15:56:56 t 1 1 130643 428 0.00 2019-10-22 15:57:14 2019-10-22 15:57:14 f 1 1 130646 587 0.00 2019-10-22 15:57:44 2019-10-22 15:59:51 t 1 1 130648 516 0.00 2019-10-22 15:45:56 2019-10-22 16:00:34 t 1 1 130649 327 0.00 2019-10-22 16:03:16 2019-10-22 16:04:21 t 1 1 130650 451 0.00 2019-10-22 15:35:06 2019-10-22 16:06:58 t 1 1 130655 532 0.00 2019-10-22 16:08:43 2019-10-22 16:08:50 t 1 1 130656 532 0.00 2019-10-22 16:09:46 2019-10-22 16:10:22 t 1 1 130664 532 0.00 2019-10-22 16:14:13 2019-10-22 16:14:20 t 1 1 130665 327 0.00 2019-10-22 16:12:35 2019-10-22 16:15:38 t 1 1 130666 587 0.00 2019-10-22 16:12:38 2019-10-22 16:18:02 t 1 1 130667 485 0.00 2019-10-22 16:12:44 2019-10-22 16:18:40 t 1 1 130670 562 0.00 2019-10-22 16:18:59 2019-10-22 16:19:45 t 1 1 130677 532 0.00 2019-10-22 16:28:30 2019-10-22 16:28:31 t 1 1 130678 562 0.00 2019-10-22 16:21:34 2019-10-22 16:29:18 t 1 1 130683 562 0.00 2019-10-22 16:30:33 2019-10-22 16:31:02 t 1 1 130686 532 0.00 2019-10-22 16:32:06 2019-10-22 16:32:21 t 1 1 130695 528 0.00 2019-10-22 16:37:15 2019-10-22 16:38:28 t 1 1 130696 528 0.00 2019-10-22 16:39:01 2019-10-22 16:39:25 t 1 1 130700 532 0.00 2019-10-22 16:44:10 2019-10-22 16:44:21 t 1 1 130705 532 0.00 2019-10-22 16:49:28 2019-10-22 16:49:35 t 1 1 130707 562 0.00 2019-10-22 16:37:36 2019-10-22 16:51:57 t 1 1 130708 520 0.00 2019-10-22 16:46:58 2019-10-22 16:53:53 t 1 1 130716 532 0.00 2019-10-22 16:59:34 2019-10-22 16:59:48 t 1 1 130721 520 0.00 2019-10-22 17:02:48 2019-10-22 17:05:48 t 1 1 130725 562 0.00 2019-10-22 17:04:18 2019-10-22 17:11:03 t 1 1 130727 566 0.00 2019-10-22 17:06:07 2019-10-22 17:13:25 t 1 1 130731 327 0.00 2019-10-22 17:15:57 2019-10-22 17:20:46 t 1 1 130739 587 0.00 2019-10-22 17:27:08 2019-10-22 17:32:55 t 1 1 130740 520 0.00 2019-10-22 17:20:41 2019-10-22 17:33:19 t 1 1 130750 520 0.00 2019-10-22 17:33:27 2019-10-22 17:47:49 t 1 1 130754 514 0.00 2019-10-22 16:31:26 2019-10-22 17:49:35 t 1 1 130755 520 0.00 2019-10-22 17:47:48 2019-10-22 17:50:06 t 1 1 130759 445 0.00 2019-10-22 17:16:41 2019-10-22 17:53:16 t 1 1 130761 512 0.00 2019-10-22 17:46:50 2019-10-22 17:54:13 t 1 1 130763 585 0.00 2019-10-22 17:55:10 2019-10-22 17:57:28 t 1 1 130766 562 0.00 2019-10-22 17:51:46 2019-10-22 18:04:04 t 1 1 130768 589 0.00 2019-10-22 18:08:26 2019-10-22 18:09:23 t 1 1 130771 520 0.00 2019-10-22 18:11:00 2019-10-22 18:11:32 t 1 1 130773 520 0.00 2019-10-22 18:11:32 2019-10-22 18:12:57 t 1 1 130783 501 0.00 2019-10-22 18:18:24 2019-10-22 18:27:24 t 1 1 130785 562 0.00 2019-10-22 18:27:58 2019-10-22 18:29:18 t 1 1 130787 585 0.00 2019-10-22 18:33:31 2019-10-22 18:35:29 t 1 1 130790 361 0.00 2019-10-22 17:45:18 2019-10-22 18:41:44 t 1 2 58997 131 0.00 2018-01-12 15:09:38 2018-01-12 15:11:10 t 1 1 130792 520 0.00 2019-10-22 18:32:06 2019-10-22 18:43:56 t 1 1 130799 485 0.00 2019-10-22 18:53:30 2019-10-22 18:54:36 t 1 1 130802 445 0.00 2019-10-22 18:41:53 2019-10-22 18:58:41 t 1 1 130806 488 0.00 2019-10-22 18:49:04 2019-10-22 19:04:34 t 1 1 130808 306 0.00 2019-10-22 19:07:05 2019-10-22 19:07:05 f 1 1 130814 327 0.00 2019-10-22 18:13:43 2019-10-22 19:15:47 t 1 1 130815 220 0.00 2019-10-22 18:48:12 2019-10-22 19:18:17 t 1 2 130818 528 0.00 2019-10-22 19:19:39 2019-10-22 19:19:53 t 1 1 130820 514 0.00 2019-10-22 18:39:55 2019-10-22 19:21:00 t 1 1 130823 522 0.00 2019-10-22 19:21:35 2019-10-22 19:21:45 t 1 1 130828 522 0.00 2019-10-22 19:26:39 2019-10-22 19:26:49 t 1 1 130829 585 0.00 2019-10-22 19:25:52 2019-10-22 19:27:55 t 1 1 130831 568 0.00 2019-10-22 18:58:28 2019-10-22 19:28:41 t 1 1 130832 587 0.00 2019-10-22 19:28:35 2019-10-22 19:29:05 t 1 1 130834 488 0.00 2019-10-22 19:22:03 2019-10-22 19:31:17 t 1 1 130837 591 0.00 2019-10-22 19:31:38 2019-10-22 19:32:42 t 1 1 130843 566 0.00 2019-10-22 19:25:54 2019-10-22 19:36:33 t 1 1 130845 528 0.00 2019-10-22 19:39:24 2019-10-22 19:40:02 t 1 1 130846 522 0.00 2019-10-22 19:41:40 2019-10-22 19:41:50 t 1 1 130847 562 0.00 2019-10-22 19:40:42 2019-10-22 19:41:58 t 1 1 130853 528 0.00 2019-10-22 19:45:27 2019-10-22 19:45:56 t 1 1 130854 522 0.00 2019-10-22 19:46:40 2019-10-22 19:46:49 t 1 1 130863 514 0.00 2019-10-22 19:21:00 2019-10-22 19:53:26 t 1 1 130864 566 0.00 2019-10-22 19:36:33 2019-10-22 19:54:07 t 1 1 130868 528 0.00 2019-10-22 19:55:42 2019-10-22 19:56:41 t 1 1 130869 562 0.00 2019-10-22 19:55:33 2019-10-22 19:57:25 t 1 1 130872 445 0.00 2019-10-22 19:56:09 2019-10-22 20:00:27 t 1 1 130878 514 0.00 2019-10-22 19:53:26 2019-10-22 20:04:52 t 1 1 130881 451 0.00 2019-10-22 19:56:36 2019-10-22 20:06:26 t 1 1 130884 522 0.00 2019-10-22 20:10:22 2019-10-22 20:10:33 t 1 1 130885 522 0.00 2019-10-22 20:11:44 2019-10-22 20:11:49 t 1 1 130894 512 0.00 2019-10-22 20:01:44 2019-10-22 20:20:03 t 1 1 130641 587 0.00 2019-10-22 15:54:54 2019-10-22 15:56:38 t 1 1 130645 428 0.00 2019-10-22 15:57:40 2019-10-22 15:57:40 f 1 1 130647 562 0.00 2019-10-22 16:00:06 2019-10-22 16:00:31 t 1 1 130651 375 0.00 2019-10-22 15:32:11 2019-10-22 16:07:02 t 1 1 130652 585 0.00 2019-10-22 15:40:55 2019-10-22 16:07:30 t 1 1 130654 587 0.00 2019-10-22 16:00:31 2019-10-22 16:08:35 t 1 1 130657 375 0.00 2019-10-22 16:07:02 2019-10-22 16:10:56 t 1 1 130658 562 0.00 2019-10-22 16:10:56 2019-10-22 16:11:15 t 1 1 130661 587 0.00 2019-10-22 16:09:31 2019-10-22 16:12:29 t 1 1 130668 562 0.00 2019-10-22 16:18:07 2019-10-22 16:18:47 t 1 1 130673 538 0.00 2019-10-22 13:44:55 2019-10-22 16:22:58 t 1 1 130675 445 0.00 2019-10-22 15:59:25 2019-10-22 16:24:57 t 1 1 130676 587 0.00 2019-10-22 16:18:02 2019-10-22 16:26:24 t 1 1 130681 532 0.00 2019-10-22 16:30:13 2019-10-22 16:30:22 t 1 1 130684 587 0.00 2019-10-22 16:30:39 2019-10-22 16:31:42 t 1 1 130685 562 0.00 2019-10-22 16:31:23 2019-10-22 16:32:19 t 1 1 130687 532 0.00 2019-10-22 16:32:21 2019-10-22 16:32:24 t 1 1 130689 532 0.00 2019-10-22 16:33:59 2019-10-22 16:34:29 t 1 1 130691 395 0.00 2019-10-22 16:24:07 2019-10-22 16:36:30 t 1 2 130692 562 0.00 2019-10-22 16:36:54 2019-10-22 16:37:04 t 1 1 130694 520 0.00 2019-10-22 16:20:02 2019-10-22 16:37:12 t 1 1 130698 327 0.00 2019-10-22 16:42:19 2019-10-22 16:43:43 t 1 1 130701 520 0.00 2019-10-22 16:44:19 2019-10-22 16:46:58 t 1 1 130703 538 0.00 2019-10-22 16:42:50 2019-10-22 16:48:05 t 1 1 130709 562 0.00 2019-10-22 16:53:25 2019-10-22 16:53:54 t 1 1 130710 501 0.00 2019-10-22 16:51:10 2019-10-22 16:54:19 t 1 1 130711 585 0.00 2019-10-22 16:52:35 2019-10-22 16:54:30 t 1 1 130714 562 0.00 2019-10-22 16:54:09 2019-10-22 16:56:55 t 1 1 130717 520 0.00 2019-10-22 16:53:52 2019-10-22 17:00:53 t 1 1 130719 528 0.00 2019-10-22 16:50:49 2019-10-22 17:03:45 t 1 1 130720 485 0.00 2019-10-22 16:45:31 2019-10-22 17:05:44 t 1 1 130724 445 0.00 2019-10-22 16:25:17 2019-10-22 17:10:36 t 1 1 130726 562 0.00 2019-10-22 17:11:39 2019-10-22 17:12:03 t 1 1 130729 512 0.00 2019-10-22 16:58:35 2019-10-22 17:19:38 t 1 1 130734 501 0.00 2019-10-22 17:27:46 2019-10-22 17:28:05 t 1 1 130735 501 0.00 2019-10-22 17:28:45 2019-10-22 17:28:57 t 1 1 130736 501 0.00 2019-10-22 17:30:07 2019-10-22 17:31:15 t 1 1 130737 327 0.00 2019-10-22 17:30:43 2019-10-22 17:32:19 t 1 1 130741 501 0.00 2019-10-22 17:33:13 2019-10-22 17:33:24 t 1 1 130745 485 0.00 2019-10-22 17:35:43 2019-10-22 17:38:41 t 1 1 130748 562 0.00 2019-10-22 17:16:33 2019-10-22 17:45:52 t 1 1 130749 562 0.00 2019-10-22 17:46:13 2019-10-22 17:46:18 t 1 1 130752 562 0.00 2019-10-22 17:48:16 2019-10-22 17:48:23 t 1 1 130753 562 0.00 2019-10-22 17:48:42 2019-10-22 17:49:08 t 1 1 130758 514 0.00 2019-10-22 17:50:20 2019-10-22 17:52:47 t 1 1 130765 501 0.00 2019-10-22 17:36:56 2019-10-22 18:00:57 t 1 1 130770 481 0.00 2019-10-22 17:25:57 2019-10-22 18:11:24 t 1 1 130776 562 0.00 2019-10-22 18:15:26 2019-10-22 18:15:55 t 1 1 130780 514 0.00 2019-10-22 17:55:26 2019-10-22 18:19:42 t 1 1 130781 520 0.00 2019-10-22 18:19:14 2019-10-22 18:20:41 t 1 1 130784 562 0.00 2019-10-22 18:19:54 2019-10-22 18:27:59 t 1 1 130786 520 0.00 2019-10-22 18:22:28 2019-10-22 18:31:51 t 1 1 130788 445 0.00 2019-10-22 17:52:38 2019-10-22 18:38:50 t 1 1 130789 514 0.00 2019-10-22 18:19:42 2019-10-22 18:39:55 t 1 1 130791 445 0.00 2019-10-22 18:39:27 2019-10-22 18:41:49 t 1 1 130793 520 0.00 2019-10-22 18:43:56 2019-10-22 18:46:38 t 1 1 130796 520 0.00 2019-10-22 18:46:40 2019-10-22 18:52:38 t 1 1 130797 587 0.00 2019-10-22 18:46:22 2019-10-22 18:53:30 t 1 1 130801 485 0.00 2019-10-22 18:54:35 2019-10-22 18:58:08 t 1 1 130803 520 0.00 2019-10-22 18:52:38 2019-10-22 18:59:39 t 1 1 130804 520 0.00 2019-10-22 18:59:39 2019-10-22 19:02:38 t 1 1 130810 306 0.00 2019-10-22 19:07:42 2019-10-22 19:07:42 f 1 1 130812 516 0.00 2019-10-22 19:09:21 2019-10-22 19:12:53 t 1 1 130813 522 0.00 2019-10-22 19:15:21 2019-10-22 19:15:24 t 1 1 130816 528 0.00 2019-10-22 19:11:23 2019-10-22 19:18:31 t 1 1 130819 522 0.00 2019-10-22 19:20:25 2019-10-22 19:20:26 t 1 1 130821 591 0.00 2019-10-22 19:17:42 2019-10-22 19:21:40 t 1 1 130826 585 0.00 2019-10-22 19:23:29 2019-10-22 19:25:52 t 1 1 130835 568 0.00 2019-10-22 19:28:41 2019-10-22 19:31:20 t 1 1 59052 131 0.00 2018-01-13 06:19:37 2018-01-13 06:20:37 t 1 1 130836 327 0.00 2019-10-22 19:15:47 2019-10-22 19:32:03 t 1 1 130839 587 0.00 2019-10-22 19:29:17 2019-10-22 19:33:41 t 1 1 130840 528 0.00 2019-10-22 19:33:56 2019-10-22 19:34:09 t 1 1 130842 522 0.00 2019-10-22 19:32:53 2019-10-22 19:36:13 t 1 1 130848 522 0.00 2019-10-22 19:41:58 2019-10-22 19:41:59 t 1 1 130849 522 0.00 2019-10-22 19:42:17 2019-10-22 19:42:44 t 1 1 130850 522 0.00 2019-10-22 19:42:05 2019-10-22 19:43:58 t 1 1 130852 522 0.00 2019-10-22 19:45:23 2019-10-22 19:45:26 t 1 1 130855 587 0.00 2019-10-22 19:48:23 2019-10-22 19:48:31 t 1 1 130857 522 0.00 2019-10-22 19:50:23 2019-10-22 19:50:38 t 1 1 130858 522 0.00 2019-10-22 19:51:30 2019-10-22 19:51:39 t 1 1 130859 522 0.00 2019-10-22 19:51:57 2019-10-22 19:52:02 t 1 1 130860 587 0.00 2019-10-22 19:48:54 2019-10-22 19:52:23 t 1 1 130862 587 0.00 2019-10-22 19:52:45 2019-10-22 19:52:48 t 1 1 130865 481 0.00 2019-10-22 18:11:24 2019-10-22 19:54:58 t 1 1 130867 445 0.00 2019-10-22 19:03:27 2019-10-22 19:55:41 t 1 1 130871 522 0.00 2019-10-22 19:57:35 2019-10-22 19:57:43 t 1 1 130873 522 0.00 2019-10-22 20:00:19 2019-10-22 20:00:28 t 1 1 130877 562 0.00 2019-10-22 19:57:50 2019-10-22 20:04:35 t 1 1 130883 528 0.00 2019-10-22 20:04:50 2019-10-22 20:08:56 t 1 1 130888 514 0.00 2019-10-22 20:04:52 2019-10-22 20:15:29 t 1 1 130889 522 0.00 2019-10-22 20:15:39 2019-10-22 20:15:40 t 1 1 130890 522 0.00 2019-10-22 20:16:35 2019-10-22 20:16:53 t 1 1 130891 522 0.00 2019-10-22 20:17:15 2019-10-22 20:17:25 t 1 1 130897 593 0.00 2019-10-22 20:07:55 2019-10-22 20:22:43 t 1 1 130906 379 0.00 2019-10-22 20:19:37 2019-10-22 20:27:52 t 1 1 130912 562 0.00 2019-10-22 20:33:43 2019-10-22 20:36:26 t 1 1 130916 516 0.00 2019-10-22 20:35:39 2019-10-22 20:41:26 t 1 1 130924 562 0.00 2019-10-22 20:45:56 2019-10-22 20:46:20 t 1 1 130925 522 0.00 2019-10-22 20:47:51 2019-10-22 20:47:55 t 1 1 130927 220 0.00 2019-10-22 20:46:02 2019-10-22 20:49:36 t 1 1 130929 372 0.00 2019-10-22 20:25:16 2019-10-22 20:50:21 t 1 2 130930 220 0.00 2019-10-22 20:50:09 2019-10-22 20:50:43 t 1 1 130934 503 0.00 2019-10-22 20:33:28 2019-10-22 20:52:09 t 1 1 130941 562 0.00 2019-10-22 20:57:11 2019-10-22 20:58:35 t 1 1 130942 522 0.00 2019-10-22 20:59:08 2019-10-22 20:59:17 t 1 1 130944 327 0.00 2019-10-22 20:57:42 2019-10-22 20:59:53 t 1 1 130722 327 0.00 2019-10-22 17:05:27 2019-10-22 17:06:00 t 1 1 130723 501 0.00 2019-10-22 16:54:19 2019-10-22 17:06:58 t 1 1 130728 445 0.00 2019-10-22 17:11:16 2019-10-22 17:16:41 t 1 1 130730 520 0.00 2019-10-22 17:05:48 2019-10-22 17:20:41 t 1 1 130732 587 0.00 2019-10-22 16:48:24 2019-10-22 17:24:30 t 1 1 130733 501 0.00 2019-10-22 17:19:25 2019-10-22 17:26:42 t 1 1 130738 501 0.00 2019-10-22 17:32:01 2019-10-22 17:32:46 t 1 1 130742 501 0.00 2019-10-22 17:33:33 2019-10-22 17:33:51 t 1 1 130743 501 0.00 2019-10-22 17:34:43 2019-10-22 17:34:54 t 1 1 130744 501 0.00 2019-10-22 17:35:39 2019-10-22 17:36:23 t 1 1 130746 585 0.00 2019-10-22 17:39:39 2019-10-22 17:41:44 t 1 1 130747 587 0.00 2019-10-22 17:33:25 2019-10-22 17:43:53 t 1 1 130751 562 0.00 2019-10-22 17:46:23 2019-10-22 17:47:57 t 1 1 130756 562 0.00 2019-10-22 17:49:14 2019-10-22 17:50:08 t 1 1 130757 562 0.00 2019-10-22 17:50:34 2019-10-22 17:50:49 t 1 1 130760 395 0.00 2019-10-22 17:36:50 2019-10-22 17:54:11 t 1 2 130762 578 0.00 2019-10-22 15:01:26 2019-10-22 17:56:59 t 1 1 130764 408 0.00 2019-10-22 17:25:59 2019-10-22 17:58:34 t 1 1 130767 562 0.00 2019-10-22 18:04:10 2019-10-22 18:06:01 t 1 1 130769 520 0.00 2019-10-22 17:50:07 2019-10-22 18:11:00 t 1 1 130772 562 0.00 2019-10-22 18:06:07 2019-10-22 18:12:48 t 1 1 130774 327 0.00 2019-10-22 17:40:06 2019-10-22 18:13:04 t 1 1 130775 501 0.00 2019-10-22 18:00:57 2019-10-22 18:14:48 t 1 1 130777 516 0.00 2019-10-22 18:09:13 2019-10-22 18:17:28 t 1 1 130778 501 0.00 2019-10-22 18:14:48 2019-10-22 18:18:35 t 1 1 130779 562 0.00 2019-10-22 18:16:35 2019-10-22 18:19:16 t 1 1 130782 520 0.00 2019-10-22 18:20:39 2019-10-22 18:22:28 t 1 1 130794 568 0.00 2019-10-22 18:48:04 2019-10-22 18:49:58 t 1 1 130795 501 0.00 2019-10-22 18:27:24 2019-10-22 18:52:01 t 1 1 130798 485 0.00 2019-10-22 18:46:10 2019-10-22 18:53:30 t 1 1 130800 587 0.00 2019-10-22 18:53:50 2019-10-22 18:57:32 t 1 1 130805 445 0.00 2019-10-22 19:00:15 2019-10-22 19:02:38 t 1 1 130807 306 0.00 2019-10-22 19:05:23 2019-10-22 19:05:23 f 1 1 130809 306 0.00 2019-10-22 19:07:25 2019-10-22 19:07:25 f 1 1 130811 522 0.00 2019-10-22 19:09:33 2019-10-22 19:11:24 t 1 1 130817 566 0.00 2019-10-22 19:09:59 2019-10-22 19:18:36 t 1 1 130822 587 0.00 2019-10-22 18:59:35 2019-10-22 19:21:41 t 1 1 130824 488 0.00 2019-10-22 19:04:36 2019-10-22 19:22:03 t 1 1 130825 522 0.00 2019-10-22 19:25:05 2019-10-22 19:25:16 t 1 1 130827 566 0.00 2019-10-22 19:18:36 2019-10-22 19:25:54 t 1 1 130830 587 0.00 2019-10-22 19:22:08 2019-10-22 19:28:15 t 1 1 130833 528 0.00 2019-10-22 19:28:36 2019-10-22 19:29:49 t 1 1 130838 522 0.00 2019-10-22 19:28:28 2019-10-22 19:32:53 t 1 1 130841 585 0.00 2019-10-22 19:34:10 2019-10-22 19:35:57 t 1 1 130844 522 0.00 2019-10-22 19:36:22 2019-10-22 19:39:12 t 1 1 130851 522 0.00 2019-10-22 19:44:37 2019-10-22 19:45:18 t 1 1 130856 327 0.00 2019-10-22 19:32:03 2019-10-22 19:48:35 t 1 1 130861 522 0.00 2019-10-22 19:52:19 2019-10-22 19:52:39 t 1 1 130866 562 0.00 2019-10-22 19:50:19 2019-10-22 19:55:14 t 1 1 130870 562 0.00 2019-10-22 19:57:25 2019-10-22 19:57:34 t 1 1 130874 566 0.00 2019-10-22 19:54:08 2019-10-22 20:00:37 t 1 1 130875 462 0.00 2019-10-22 20:01:28 2019-10-22 20:01:28 f 1 1 130876 593 0.00 2019-10-22 20:02:17 2019-10-22 20:03:54 t 1 1 130879 522 0.00 2019-10-22 20:05:25 2019-10-22 20:05:28 t 1 1 130880 220 0.00 2019-10-22 19:41:21 2019-10-22 20:06:26 t 1 2 130882 327 0.00 2019-10-22 19:48:35 2019-10-22 20:06:49 t 1 1 130886 562 0.00 2019-10-22 20:06:07 2019-10-22 20:12:04 t 1 1 130887 451 0.00 2019-10-22 20:06:26 2019-10-22 20:13:38 t 1 1 130892 562 0.00 2019-10-22 20:13:31 2019-10-22 20:18:55 t 1 1 130893 379 0.00 2019-10-22 19:52:17 2019-10-22 20:19:37 t 1 1 130896 522 0.00 2019-10-22 20:18:22 2019-10-22 20:22:34 t 1 1 130898 372 0.00 2019-10-22 20:24:23 2019-10-22 20:24:23 f 1 2 130899 372 0.00 2019-10-22 20:24:47 2019-10-22 20:24:49 t 1 2 130901 327 0.00 2019-10-22 20:22:18 2019-10-22 20:26:01 t 1 1 130903 522 0.00 2019-10-22 20:26:10 2019-10-22 20:26:13 t 1 1 130904 522 0.00 2019-10-22 20:27:26 2019-10-22 20:27:26 t 1 1 130908 566 0.00 2019-10-22 20:18:17 2019-10-22 20:31:40 t 1 1 59291 131 0.00 2018-01-18 07:09:22 2018-01-18 07:09:22 f 1 1 130910 585 0.00 2019-10-22 20:31:11 2019-10-22 20:34:13 t 1 1 130911 379 0.00 2019-10-22 20:27:52 2019-10-22 20:36:04 t 1 1 130913 327 0.00 2019-10-22 20:34:50 2019-10-22 20:36:29 t 1 1 130917 327 0.00 2019-10-22 20:39:51 2019-10-22 20:41:54 t 1 1 130919 585 0.00 2019-10-22 20:40:58 2019-10-22 20:43:38 t 1 1 130921 379 0.00 2019-10-22 20:36:04 2019-10-22 20:44:27 t 1 1 130922 562 0.00 2019-10-22 20:37:00 2019-10-22 20:45:25 t 1 1 130923 220 0.00 2019-10-22 19:26:53 2019-10-22 20:46:02 t 1 1 130932 220 0.00 2019-10-22 20:50:42 2019-10-22 20:51:15 t 1 1 130936 451 0.00 2019-10-22 20:51:43 2019-10-22 20:53:29 t 1 1 130937 522 0.00 2019-10-22 20:56:23 2019-10-22 20:56:28 t 1 1 130938 562 0.00 2019-10-22 20:56:50 2019-10-22 20:57:05 t 1 1 130939 327 0.00 2019-10-22 20:51:52 2019-10-22 20:57:34 t 1 1 130946 327 0.00 2019-10-22 21:01:11 2019-10-22 21:01:43 t 1 1 130948 220 0.00 2019-10-22 21:01:51 2019-10-22 21:02:25 t 1 1 130951 327 0.00 2019-10-22 21:02:44 2019-10-22 21:03:28 t 1 1 130953 220 0.00 2019-10-22 21:03:28 2019-10-22 21:04:02 t 1 1 130955 566 0.00 2019-10-22 20:48:41 2019-10-22 21:05:33 t 1 1 130956 522 0.00 2019-10-22 21:04:08 2019-10-22 21:05:59 t 1 1 130958 220 0.00 2019-10-22 21:04:02 2019-10-22 21:06:21 t 1 1 130961 220 0.00 2019-10-22 21:06:21 2019-10-22 21:07:15 t 1 1 130963 566 0.00 2019-10-22 21:05:33 2019-10-22 21:08:30 t 1 1 130965 522 0.00 2019-10-22 21:07:22 2019-10-22 21:08:59 t 1 1 130969 522 0.00 2019-10-22 21:08:15 2019-10-22 21:10:29 t 1 1 130971 327 0.00 2019-10-22 21:09:09 2019-10-22 21:10:33 t 1 1 130972 327 0.00 2019-10-22 21:10:58 2019-10-22 21:11:24 t 1 1 130973 522 0.00 2019-10-22 21:11:35 2019-10-22 21:11:38 t 1 1 130974 327 0.00 2019-10-22 21:11:34 2019-10-22 21:12:04 t 1 1 130975 327 0.00 2019-10-22 21:12:13 2019-10-22 21:12:52 t 1 1 130978 566 0.00 2019-10-22 21:08:30 2019-10-22 21:15:05 t 1 1 130983 522 0.00 2019-10-22 21:12:34 2019-10-22 21:18:25 t 1 1 130985 327 0.00 2019-10-22 21:14:37 2019-10-22 21:18:39 t 1 1 130989 522 0.00 2019-10-22 21:20:06 2019-10-22 21:20:09 t 1 1 130990 536 0.00 2019-10-22 21:17:09 2019-10-22 21:20:29 t 1 1 130992 536 0.00 2019-10-22 21:20:28 2019-10-22 21:20:50 t 1 1 130998 522 0.00 2019-10-22 21:22:29 2019-10-22 21:22:32 t 1 1 131002 520 0.00 2019-10-22 21:13:01 2019-10-22 21:25:53 t 1 1 131004 327 0.00 2019-10-22 21:24:56 2019-10-22 21:26:46 t 1 1 131005 408 0.00 2019-10-22 21:14:24 2019-10-22 21:27:22 t 1 1 130895 327 0.00 2019-10-22 20:06:49 2019-10-22 20:22:04 t 1 1 130900 372 0.00 2019-10-22 20:24:37 2019-10-22 20:24:53 t 1 2 130902 522 0.00 2019-10-22 20:22:34 2019-10-22 20:26:05 t 1 1 130905 562 0.00 2019-10-22 20:19:25 2019-10-22 20:27:44 t 1 1 130907 562 0.00 2019-10-22 20:28:11 2019-10-22 20:29:26 t 1 1 130909 522 0.00 2019-10-22 20:32:29 2019-10-22 20:32:32 t 1 1 130914 522 0.00 2019-10-22 20:37:36 2019-10-22 20:37:39 t 1 1 130915 522 0.00 2019-10-22 20:40:58 2019-10-22 20:41:04 t 1 1 130918 522 0.00 2019-10-22 20:42:43 2019-10-22 20:42:46 t 1 1 130920 485 0.00 2019-10-22 20:42:08 2019-10-22 20:43:50 t 1 1 130926 566 0.00 2019-10-22 20:31:40 2019-10-22 20:48:41 t 1 1 130928 220 0.00 2019-10-22 20:49:36 2019-10-22 20:50:09 t 1 1 130931 562 0.00 2019-10-22 20:49:35 2019-10-22 20:51:05 t 1 1 59138 131 0.00 2018-01-14 07:50:44 2018-01-14 07:52:13 t 1 1 130933 451 0.00 2019-10-22 20:13:38 2019-10-22 20:51:43 t 1 1 130935 522 0.00 2019-10-22 20:52:55 2019-10-22 20:52:56 t 1 1 130940 522 0.00 2019-10-22 20:58:00 2019-10-22 20:58:03 t 1 1 130943 562 0.00 2019-10-22 20:59:44 2019-10-22 20:59:52 t 1 1 130949 220 0.00 2019-10-22 21:02:24 2019-10-22 21:02:58 t 1 1 130954 327 0.00 2019-10-22 21:04:00 2019-10-22 21:05:10 t 1 1 130957 327 0.00 2019-10-22 21:05:24 2019-10-22 21:06:15 t 1 1 130960 327 0.00 2019-10-22 21:06:23 2019-10-22 21:07:14 t 1 1 130964 562 0.00 2019-10-22 21:01:17 2019-10-22 21:08:46 t 1 1 130966 327 0.00 2019-10-22 21:07:26 2019-10-22 21:09:01 t 1 1 130967 562 0.00 2019-10-22 21:09:10 2019-10-22 21:09:21 t 1 1 130976 562 0.00 2019-10-22 21:11:45 2019-10-22 21:13:50 t 1 1 130977 327 0.00 2019-10-22 21:13:21 2019-10-22 21:14:25 t 1 1 130980 570 0.00 2019-10-22 18:19:36 2019-10-22 21:16:26 t 1 1 130986 578 0.00 2019-10-22 21:18:20 2019-10-22 21:19:14 t 1 1 130987 325 0.00 2019-10-22 21:09:41 2019-10-22 21:19:43 t 1 2 130991 522 0.00 2019-10-22 21:20:21 2019-10-22 21:20:48 t 1 1 130994 327 0.00 2019-10-22 21:20:49 2019-10-22 21:21:20 t 1 1 130997 578 0.00 2019-10-22 21:19:14 2019-10-22 21:22:15 t 1 1 131000 566 0.00 2019-10-22 21:15:05 2019-10-22 21:23:29 t 1 1 131001 327 0.00 2019-10-22 21:23:07 2019-10-22 21:24:10 t 1 1 59184 131 0.00 2018-01-15 18:13:10 2018-01-15 18:14:13 t 1 1 131006 536 0.00 2019-10-22 21:22:35 2019-10-22 21:27:33 t 1 1 131008 408 0.00 2019-10-22 21:28:08 2019-10-22 21:28:20 t 1 1 131010 327 0.00 2019-10-22 21:28:09 2019-10-22 21:28:44 t 1 1 131020 327 0.00 2019-10-22 21:31:20 2019-10-22 21:32:33 t 1 1 131022 562 0.00 2019-10-22 21:18:12 2019-10-22 21:32:45 t 1 1 131023 327 0.00 2019-10-22 21:32:42 2019-10-22 21:33:12 t 1 1 131025 520 0.00 2019-10-22 21:25:53 2019-10-22 21:33:34 t 1 1 131026 372 0.00 2019-10-22 21:16:16 2019-10-22 21:34:04 t 1 2 131031 408 0.00 2019-10-22 21:33:23 2019-10-22 21:34:59 t 1 1 131033 327 0.00 2019-10-22 21:35:13 2019-10-22 21:35:44 t 1 1 131036 481 0.00 2019-10-22 21:34:30 2019-10-22 21:37:45 t 1 1 131038 408 0.00 2019-10-22 21:38:19 2019-10-22 21:38:33 t 1 1 131042 520 0.00 2019-10-22 21:37:51 2019-10-22 21:39:51 t 1 1 131043 522 0.00 2019-10-22 21:38:48 2019-10-22 21:39:59 t 1 1 131045 578 0.00 2019-10-22 21:22:15 2019-10-22 21:40:38 t 1 1 131047 562 0.00 2019-10-22 21:32:45 2019-10-22 21:42:08 t 1 1 131051 522 0.00 2019-10-22 21:43:55 2019-10-22 21:43:55 f 1 1 131054 327 0.00 2019-10-22 21:43:44 2019-10-22 21:45:16 t 1 1 131055 327 0.00 2019-10-22 21:45:34 2019-10-22 21:46:19 t 1 1 131057 587 0.00 2019-10-22 21:47:31 2019-10-22 21:48:11 t 1 1 131061 327 0.00 2019-10-22 21:46:28 2019-10-22 21:49:04 t 1 1 59242 131 0.00 2018-01-17 07:15:45 2018-01-17 07:17:16 t 1 1 131065 520 0.00 2019-10-22 21:48:39 2019-10-22 21:52:41 t 1 1 131070 372 0.00 2019-10-22 21:55:50 2019-10-22 21:55:50 f 1 2 131072 514 0.00 2019-10-22 21:53:33 2019-10-22 21:56:15 t 1 1 131080 327 0.00 2019-10-22 22:01:57 2019-10-22 22:02:31 t 1 1 131083 372 0.00 2019-10-22 21:53:51 2019-10-22 22:03:56 t 1 2 131084 591 0.00 2019-10-22 21:15:43 2019-10-22 22:04:15 t 1 1 131089 327 0.00 2019-10-22 22:06:15 2019-10-22 22:06:46 t 1 1 131092 327 0.00 2019-10-22 22:08:45 2019-10-22 22:10:55 t 1 1 131095 408 0.00 2019-10-22 21:53:17 2019-10-22 22:12:43 t 1 1 131096 327 0.00 2019-10-22 22:12:41 2019-10-22 22:13:17 t 1 1 131097 528 0.00 2019-10-22 21:57:19 2019-10-22 22:14:02 t 1 1 131099 327 0.00 2019-10-22 22:13:56 2019-10-22 22:14:37 t 1 1 131102 327 0.00 2019-10-22 22:15:12 2019-10-22 22:16:19 t 1 1 131104 220 0.00 2019-10-22 22:04:03 2019-10-22 22:17:35 t 1 2 131106 562 0.00 2019-10-22 22:05:24 2019-10-22 22:18:16 t 1 1 131112 514 0.00 2019-10-22 22:08:26 2019-10-22 22:22:44 t 1 1 131114 327 0.00 2019-10-22 22:21:04 2019-10-22 22:24:17 t 1 1 131118 408 0.00 2019-10-22 22:17:29 2019-10-22 22:29:35 t 1 1 131120 591 0.00 2019-10-22 22:29:56 2019-10-22 22:30:56 t 1 1 131121 306 0.00 2019-10-22 22:31:17 2019-10-22 22:31:17 f 1 1 131123 587 0.00 2019-10-22 22:07:22 2019-10-22 22:32:25 t 1 1 131126 327 0.00 2019-10-22 22:36:06 2019-10-22 22:36:29 t 1 1 131130 562 0.00 2019-10-22 22:41:36 2019-10-22 22:43:14 t 1 1 131132 481 0.00 2019-10-22 21:38:04 2019-10-22 22:44:05 t 1 1 131135 587 0.00 2019-10-22 22:46:16 2019-10-22 22:48:00 t 1 1 131141 472 0.00 2019-10-22 22:53:15 2019-10-22 22:53:15 f 1 1 131143 581 0.00 2019-10-22 22:48:57 2019-10-22 22:54:14 t 1 1 131145 220 0.00 2019-10-22 22:51:50 2019-10-22 22:54:22 t 1 1 131148 514 0.00 2019-10-22 22:50:27 2019-10-22 22:55:42 t 1 1 131151 372 0.00 2019-10-22 22:49:47 2019-10-22 22:59:52 t 1 2 131154 562 0.00 2019-10-22 22:44:20 2019-10-22 23:01:46 t 1 1 131156 514 0.00 2019-10-22 22:55:42 2019-10-22 23:02:38 t 1 1 131157 591 0.00 2019-10-22 22:57:37 2019-10-22 23:03:42 t 1 1 131158 220 0.00 2019-10-22 23:00:54 2019-10-22 23:04:13 t 1 1 131160 570 0.00 2019-10-22 22:24:17 2019-10-22 23:04:56 t 1 1 131163 220 0.00 2019-10-22 23:05:25 2019-10-22 23:05:59 t 1 1 131167 327 0.00 2019-10-22 22:53:55 2019-10-22 23:07:32 t 1 1 131170 562 0.00 2019-10-22 23:07:03 2019-10-22 23:11:14 t 1 1 131172 220 0.00 2019-10-22 23:07:14 2019-10-22 23:14:27 t 1 1 131174 528 0.00 2019-10-22 23:11:15 2019-10-22 23:15:24 t 1 1 131182 220 0.00 2019-10-22 23:20:50 2019-10-22 23:21:21 t 1 1 131185 220 0.00 2019-10-22 23:21:21 2019-10-22 23:23:27 t 1 1 131186 220 0.00 2019-10-22 23:23:26 2019-10-22 23:23:59 t 1 1 131190 372 0.00 2019-10-22 23:21:59 2019-10-22 23:32:04 t 1 2 131191 220 0.00 2019-10-22 23:32:26 2019-10-22 23:33:24 t 1 1 131194 528 0.00 2019-10-22 23:16:55 2019-10-22 23:37:31 t 1 1 131198 585 0.00 2019-10-22 23:39:24 2019-10-22 23:40:38 t 1 1 131203 562 0.00 2019-10-22 23:50:11 2019-10-22 23:50:22 t 1 1 131209 587 0.00 2019-10-22 23:37:34 2019-10-22 23:55:19 t 1 1 130945 528 0.00 2019-10-22 20:49:25 2019-10-22 21:00:02 t 1 1 130947 220 0.00 2019-10-22 20:51:14 2019-10-22 21:01:52 t 1 1 130950 522 0.00 2019-10-22 21:02:00 2019-10-22 21:03:04 t 1 1 130952 220 0.00 2019-10-22 21:02:58 2019-10-22 21:03:28 t 1 1 130959 372 0.00 2019-10-22 20:50:23 2019-10-22 21:06:33 t 1 2 130962 522 0.00 2019-10-22 21:07:55 2019-10-22 21:08:03 t 1 1 130968 456 0.00 2019-10-22 20:49:04 2019-10-22 21:10:04 t 1 1 130970 220 0.00 2019-10-22 21:07:15 2019-10-22 21:10:30 t 1 1 130979 591 0.00 2019-10-22 20:57:11 2019-10-22 21:15:43 t 1 1 130981 488 0.00 2019-10-22 21:15:54 2019-10-22 21:16:57 t 1 1 130982 578 0.00 2019-10-22 17:56:59 2019-10-22 21:18:20 t 1 1 130984 522 0.00 2019-10-22 21:18:32 2019-10-22 21:18:37 t 1 1 130988 327 0.00 2019-10-22 21:19:17 2019-10-22 21:19:48 t 1 1 130993 522 0.00 2019-10-22 21:19:32 2019-10-22 21:20:59 t 1 1 130995 522 0.00 2019-10-22 21:21:07 2019-10-22 21:21:22 t 1 1 130996 327 0.00 2019-10-22 21:21:31 2019-10-22 21:22:14 t 1 1 130999 522 0.00 2019-10-22 21:23:05 2019-10-22 21:23:12 t 1 1 131003 522 0.00 2019-10-22 21:23:17 2019-10-22 21:25:59 t 1 1 131007 327 0.00 2019-10-22 21:27:18 2019-10-22 21:27:48 t 1 1 131009 522 0.00 2019-10-22 21:28:16 2019-10-22 21:28:25 t 1 1 131011 522 0.00 2019-10-22 21:29:02 2019-10-22 21:29:02 f 1 1 131012 570 0.00 2019-10-22 21:18:50 2019-10-22 21:29:53 t 1 1 131014 408 0.00 2019-10-22 21:30:11 2019-10-22 21:30:24 t 1 1 59171 131 0.00 2018-01-15 12:29:00 2018-01-15 12:30:13 t 1 1 131016 522 0.00 2019-10-22 21:28:49 2019-10-22 21:30:59 t 1 1 131018 585 0.00 2019-10-22 21:14:42 2019-10-22 21:32:21 t 1 1 131024 522 0.00 2019-10-22 21:33:28 2019-10-22 21:33:29 t 1 1 131028 408 0.00 2019-10-22 21:34:16 2019-10-22 21:34:30 t 1 1 131034 408 0.00 2019-10-22 21:36:16 2019-10-22 21:36:29 t 1 1 131041 566 0.00 2019-10-22 21:23:29 2019-10-22 21:39:44 t 1 1 131044 327 0.00 2019-10-22 21:39:32 2019-10-22 21:40:12 t 1 1 131046 564 0.00 2019-10-22 21:08:20 2019-10-22 21:41:51 t 1 1 131049 522 0.00 2019-10-22 21:42:36 2019-10-22 21:42:38 t 1 1 131050 327 0.00 2019-10-22 21:40:19 2019-10-22 21:43:28 t 1 1 131056 408 0.00 2019-10-22 21:47:39 2019-10-22 21:48:01 t 1 1 131058 520 0.00 2019-10-22 21:39:50 2019-10-22 21:48:39 t 1 1 131060 562 0.00 2019-10-22 21:42:08 2019-10-22 21:49:02 t 1 1 131062 503 0.00 2019-10-22 21:47:01 2019-10-22 21:49:13 t 1 1 131063 562 0.00 2019-10-22 21:49:02 2019-10-22 21:51:42 t 1 1 131064 408 0.00 2019-10-22 21:52:04 2019-10-22 21:52:17 t 1 1 131067 327 0.00 2019-10-22 21:49:23 2019-10-22 21:53:29 t 1 1 131069 327 0.00 2019-10-22 21:53:39 2019-10-22 21:54:51 t 1 1 131073 445 0.00 2019-10-22 20:01:34 2019-10-22 21:56:22 t 1 1 131074 520 0.00 2019-10-22 21:52:50 2019-10-22 21:56:58 t 1 1 131075 327 0.00 2019-10-22 21:55:15 2019-10-22 21:58:29 t 1 1 131076 587 0.00 2019-10-22 21:57:57 2019-10-22 21:59:27 t 1 1 131081 372 0.00 2019-10-22 21:52:39 2019-10-22 22:02:44 t 1 2 131082 327 0.00 2019-10-22 22:02:58 2019-10-22 22:03:32 t 1 1 131088 327 0.00 2019-10-22 22:04:24 2019-10-22 22:06:00 t 1 1 131091 514 0.00 2019-10-22 22:07:47 2019-10-22 22:08:27 t 1 1 131093 520 0.00 2019-10-22 22:05:28 2019-10-22 22:10:57 t 1 1 131100 361 0.00 2019-10-22 22:12:14 2019-10-22 22:15:01 t 1 2 131101 408 0.00 2019-10-22 22:15:31 2019-10-22 22:15:49 t 1 1 131103 408 0.00 2019-10-22 22:16:56 2019-10-22 22:16:59 t 1 1 131105 327 0.00 2019-10-22 22:16:27 2019-10-22 22:17:35 t 1 1 131107 528 0.00 2019-10-22 22:14:12 2019-10-22 22:19:08 t 1 1 131116 327 0.00 2019-10-22 22:25:04 2019-10-22 22:26:30 t 1 1 131128 587 0.00 2019-10-22 22:32:25 2019-10-22 22:37:15 t 1 1 131129 562 0.00 2019-10-22 22:28:20 2019-10-22 22:39:48 t 1 1 131133 587 0.00 2019-10-22 22:37:38 2019-10-22 22:46:06 t 1 1 131140 220 0.00 2019-10-22 21:10:30 2019-10-22 22:51:50 t 1 1 131142 412 0.00 2019-10-22 08:24:03 2019-10-22 22:53:30 t 1 1 131150 220 0.00 2019-10-22 22:56:05 2019-10-22 22:56:39 t 1 1 131153 220 0.00 2019-10-22 23:00:21 2019-10-22 23:00:54 t 1 1 131161 220 0.00 2019-10-22 23:04:48 2019-10-22 23:05:25 t 1 1 131165 220 0.00 2019-10-22 23:05:59 2019-10-22 23:06:41 t 1 1 131168 514 0.00 2019-10-22 23:02:38 2019-10-22 23:10:41 t 1 1 131169 528 0.00 2019-10-22 23:06:08 2019-10-22 23:10:58 t 1 1 131173 220 0.00 2019-10-22 23:14:26 2019-10-22 23:15:01 t 1 1 131176 528 0.00 2019-10-22 23:15:23 2019-10-22 23:16:55 t 1 1 131177 581 0.00 2019-10-22 23:08:55 2019-10-22 23:17:25 t 1 1 131178 512 0.00 2019-10-22 22:55:51 2019-10-22 23:19:43 t 1 1 131181 512 0.00 2019-10-22 23:19:54 2019-10-22 23:21:19 t 1 1 131183 562 0.00 2019-10-22 23:11:48 2019-10-22 23:21:46 t 1 1 131187 327 0.00 2019-10-22 23:16:56 2019-10-22 23:24:48 t 1 1 131189 220 0.00 2019-10-22 23:23:59 2019-10-22 23:29:11 t 1 1 131192 456 0.00 2019-10-22 23:00:05 2019-10-22 23:35:07 t 1 1 131195 585 0.00 2019-10-22 23:11:14 2019-10-22 23:38:12 t 1 1 131197 562 0.00 2019-10-22 23:39:16 2019-10-22 23:39:40 t 1 1 131199 422 0.00 2019-10-22 22:32:37 2019-10-22 23:40:52 t 1 1 131201 528 0.00 2019-10-22 23:37:31 2019-10-22 23:44:16 t 1 1 131202 510 0.00 2019-10-22 21:53:22 2019-10-22 23:48:20 t 1 1 131204 220 0.00 2019-10-22 23:39:30 2019-10-22 23:50:33 t 1 1 131207 562 0.00 2019-10-22 23:52:51 2019-10-22 23:54:00 t 1 1 131208 570 0.00 2019-10-22 23:40:15 2019-10-22 23:55:15 t 1 1 131212 372 0.00 2019-10-22 23:35:30 2019-10-23 00:00:35 t 1 2 131215 512 0.00 2019-10-22 23:22:04 2019-10-23 00:09:15 t 1 1 131216 562 0.00 2019-10-23 00:09:26 2019-10-23 00:09:47 t 1 1 131217 591 0.00 2019-10-23 00:07:10 2019-10-23 00:10:24 t 1 1 131224 501 0.00 2019-10-22 23:08:18 2019-10-23 00:25:08 t 1 1 131225 412 0.00 2019-10-22 22:53:30 2019-10-23 00:26:32 t 1 1 131226 587 0.00 2019-10-23 00:15:58 2019-10-23 00:29:51 t 1 1 131227 562 0.00 2019-10-23 00:30:51 2019-10-23 00:31:17 t 1 1 131229 587 0.00 2019-10-23 00:29:51 2019-10-23 00:34:50 t 1 1 131230 501 0.00 2019-10-23 00:25:08 2019-10-23 00:37:18 t 1 1 131233 562 0.00 2019-10-23 00:41:37 2019-10-23 00:42:04 t 1 1 131236 456 0.00 2019-10-23 00:27:25 2019-10-23 00:47:45 t 1 1 131238 570 0.00 2019-10-23 00:42:13 2019-10-23 00:51:43 t 1 1 131245 587 0.00 2019-10-23 00:45:54 2019-10-23 01:03:48 t 1 1 131246 339 0.00 2019-10-23 00:50:00 2019-10-23 01:09:00 t 1 2 131247 587 0.00 2019-10-23 01:03:48 2019-10-23 01:10:05 t 1 1 131248 562 0.00 2019-10-23 01:10:50 2019-10-23 01:11:10 t 1 1 131249 395 0.00 2019-10-22 23:59:10 2019-10-23 01:15:32 t 1 2 131250 558 0.00 2019-10-23 01:01:00 2019-10-23 01:17:05 t 1 1 131251 514 0.00 2019-10-23 01:01:14 2019-10-23 01:20:54 t 1 1 131253 558 0.00 2019-10-23 01:17:05 2019-10-23 01:27:54 t 1 1 131254 562 0.00 2019-10-23 01:32:19 2019-10-23 01:32:45 t 1 1 131013 522 0.00 2019-10-22 21:28:37 2019-10-22 21:29:59 t 1 1 131015 327 0.00 2019-10-22 21:29:06 2019-10-22 21:30:32 t 1 1 131017 408 0.00 2019-10-22 21:29:19 2019-10-22 21:30:59 t 1 1 131019 408 0.00 2019-10-22 21:32:14 2019-10-22 21:32:25 t 1 1 131021 481 0.00 2019-10-22 19:57:06 2019-10-22 21:32:43 t 1 1 131027 585 0.00 2019-10-22 21:32:21 2019-10-22 21:34:21 t 1 1 131029 327 0.00 2019-10-22 21:33:26 2019-10-22 21:34:53 t 1 1 131030 522 0.00 2019-10-22 21:33:41 2019-10-22 21:34:59 t 1 1 131032 520 0.00 2019-10-22 21:33:34 2019-10-22 21:35:29 t 1 1 131035 408 0.00 2019-10-22 21:37:19 2019-10-22 21:37:36 t 1 1 131037 520 0.00 2019-10-22 21:36:55 2019-10-22 21:37:51 t 1 1 131039 522 0.00 2019-10-22 21:38:35 2019-10-22 21:38:36 t 1 1 131040 327 0.00 2019-10-22 21:35:58 2019-10-22 21:39:16 t 1 1 131048 522 0.00 2019-10-22 21:41:20 2019-10-22 21:42:28 t 1 1 131052 522 0.00 2019-10-22 21:42:43 2019-10-22 21:43:59 t 1 1 131053 522 0.00 2019-10-22 21:43:43 2019-10-22 21:44:59 t 1 1 131059 408 0.00 2019-10-22 21:48:27 2019-10-22 21:48:39 t 1 1 131066 528 0.00 2019-10-22 21:48:38 2019-10-22 21:52:55 t 1 1 131068 514 0.00 2019-10-22 20:15:29 2019-10-22 21:53:33 t 1 1 131071 564 0.00 2019-10-22 21:43:37 2019-10-22 21:56:11 t 1 1 131077 327 0.00 2019-10-22 21:58:39 2019-10-22 22:00:42 t 1 1 131078 327 0.00 2019-10-22 22:01:02 2019-10-22 22:01:44 t 1 1 131079 587 0.00 2019-10-22 22:00:38 2019-10-22 22:02:29 t 1 1 131085 220 0.00 2019-10-22 20:49:38 2019-10-22 22:04:43 t 1 2 131086 562 0.00 2019-10-22 21:51:41 2019-10-22 22:05:24 t 1 1 131087 520 0.00 2019-10-22 21:57:18 2019-10-22 22:05:28 t 1 1 131090 587 0.00 2019-10-22 22:03:56 2019-10-22 22:07:12 t 1 1 131094 327 0.00 2019-10-22 22:11:36 2019-10-22 22:12:06 t 1 1 131098 578 0.00 2019-10-22 21:41:14 2019-10-22 22:14:13 t 1 1 131108 564 0.00 2019-10-22 21:57:11 2019-10-22 22:19:15 t 1 1 131109 327 0.00 2019-10-22 22:18:18 2019-10-22 22:20:53 t 1 1 59513 131 0.00 2018-01-22 03:45:18 2018-01-22 03:45:18 f 1 1 59514 131 0.00 2018-01-22 03:46:58 2018-01-22 03:46:58 f 1 1 59515 131 0.00 2018-01-22 03:49:50 2018-01-22 03:49:50 f 1 1 131110 581 0.00 2019-10-22 21:48:07 2019-10-22 22:21:04 t 1 1 131111 562 0.00 2019-10-22 22:18:16 2019-10-22 22:22:41 t 1 1 131113 562 0.00 2019-10-22 22:23:53 2019-10-22 22:24:06 t 1 1 131115 570 0.00 2019-10-22 21:29:54 2019-10-22 22:24:18 t 1 1 131117 562 0.00 2019-10-22 22:27:23 2019-10-22 22:27:50 t 1 1 131119 591 0.00 2019-10-22 22:13:09 2019-10-22 22:29:56 t 1 1 131122 372 0.00 2019-10-22 22:12:18 2019-10-22 22:32:23 t 1 2 131124 422 0.00 2019-10-22 21:52:57 2019-10-22 22:32:37 t 1 1 131125 327 0.00 2019-10-22 22:27:01 2019-10-22 22:35:28 t 1 1 131127 445 0.00 2019-10-22 21:56:25 2019-10-22 22:36:54 t 1 1 131131 327 0.00 2019-10-22 22:43:02 2019-10-22 22:43:58 t 1 1 131134 591 0.00 2019-10-22 22:38:52 2019-10-22 22:46:09 t 1 1 131136 585 0.00 2019-10-22 22:45:56 2019-10-22 22:48:51 t 1 1 131137 578 0.00 2019-10-22 22:14:45 2019-10-22 22:49:44 t 1 1 131138 361 0.00 2019-10-22 22:45:47 2019-10-22 22:49:50 t 1 2 131139 514 0.00 2019-10-22 22:22:44 2019-10-22 22:50:27 t 1 1 131144 485 0.00 2019-10-22 22:37:54 2019-10-22 22:54:22 t 1 1 131146 220 0.00 2019-10-22 22:54:21 2019-10-22 22:54:56 t 1 1 131147 512 0.00 2019-10-22 22:54:05 2019-10-22 22:55:39 t 1 1 131149 220 0.00 2019-10-22 22:54:55 2019-10-22 22:56:05 t 1 1 131152 220 0.00 2019-10-22 22:56:39 2019-10-22 23:00:22 t 1 1 131155 372 0.00 2019-10-22 22:52:22 2019-10-22 23:02:27 t 1 2 131159 220 0.00 2019-10-22 23:04:13 2019-10-22 23:04:48 t 1 1 131162 528 0.00 2019-10-22 22:35:45 2019-10-22 23:05:30 t 1 1 131164 528 0.00 2019-10-22 23:05:43 2019-10-22 23:06:09 t 1 1 131166 220 0.00 2019-10-22 23:06:41 2019-10-22 23:07:14 t 1 1 131171 481 0.00 2019-10-22 22:51:09 2019-10-22 23:13:37 t 1 1 131175 591 0.00 2019-10-22 23:13:48 2019-10-22 23:16:03 t 1 1 131179 445 0.00 2019-10-22 22:36:54 2019-10-22 23:20:18 t 1 1 131180 220 0.00 2019-10-22 23:15:01 2019-10-22 23:20:50 t 1 1 131184 514 0.00 2019-10-22 23:10:41 2019-10-22 23:22:23 t 1 1 131188 562 0.00 2019-10-22 23:28:21 2019-10-22 23:28:51 t 1 1 131193 587 0.00 2019-10-22 22:48:41 2019-10-22 23:37:25 t 1 1 131196 538 0.00 2019-10-22 19:58:34 2019-10-22 23:38:36 t 1 1 131200 456 0.00 2019-10-22 23:40:21 2019-10-22 23:43:27 t 1 1 131205 408 0.00 2019-10-22 22:29:35 2019-10-22 23:52:55 t 1 1 131206 562 0.00 2019-10-22 23:53:02 2019-10-22 23:53:54 t 1 1 131210 587 0.00 2019-10-22 23:55:19 2019-10-22 23:58:04 t 1 1 131211 562 0.00 2019-10-22 23:58:36 2019-10-22 23:59:01 t 1 1 131213 514 0.00 2019-10-22 23:22:23 2019-10-23 00:01:44 t 1 1 131218 512 0.00 2019-10-23 00:09:34 2019-10-23 00:13:42 t 1 1 131222 570 0.00 2019-10-23 00:15:01 2019-10-23 00:24:01 t 1 1 131228 570 0.00 2019-10-23 00:24:01 2019-10-23 00:34:21 t 1 1 131231 514 0.00 2019-10-23 00:01:44 2019-10-23 00:39:31 t 1 1 131234 570 0.00 2019-10-23 00:34:21 2019-10-23 00:42:13 t 1 1 131235 412 0.00 2019-10-23 00:26:32 2019-10-23 00:43:24 t 1 1 131237 501 0.00 2019-10-23 00:37:18 2019-10-23 00:51:28 t 1 1 131239 562 0.00 2019-10-23 00:52:27 2019-10-23 00:52:47 t 1 1 131241 570 0.00 2019-10-23 00:51:43 2019-10-23 01:00:06 t 1 1 131262 514 0.00 2019-10-23 01:41:28 2019-10-23 01:50:57 t 1 1 131263 562 0.00 2019-10-23 01:50:42 2019-10-23 01:51:08 t 1 1 131267 558 0.00 2019-10-23 01:52:09 2019-10-23 01:59:28 t 1 1 131272 544 0.00 2019-10-23 02:14:29 2019-10-23 02:16:02 t 1 2 131273 566 0.00 2019-10-23 02:13:13 2019-10-23 02:22:15 t 1 1 131276 566 0.00 2019-10-23 02:22:15 2019-10-23 02:33:45 t 1 1 131284 445 0.00 2019-10-22 23:20:27 2019-10-23 03:13:24 t 1 1 131285 562 0.00 2019-10-23 03:14:54 2019-10-23 03:15:09 t 1 1 131295 562 0.00 2019-10-23 04:01:16 2019-10-23 04:01:43 t 1 1 131298 562 0.00 2019-10-23 04:22:59 2019-10-23 04:23:11 t 1 1 131301 562 0.00 2019-10-23 04:54:59 2019-10-23 04:55:28 t 1 1 131302 562 0.00 2019-10-23 05:04:37 2019-10-23 05:04:52 t 1 1 131306 485 0.00 2019-10-23 05:39:35 2019-10-23 05:42:24 t 1 1 131312 562 0.00 2019-10-23 06:17:54 2019-10-23 06:18:12 t 1 1 131318 516 0.00 2019-10-23 06:31:14 2019-10-23 06:32:38 t 1 1 131319 564 0.00 2019-10-23 06:12:17 2019-10-23 06:34:28 t 1 1 131320 570 0.00 2019-10-23 06:26:24 2019-10-23 06:35:25 t 1 1 131328 562 0.00 2019-10-23 07:11:32 2019-10-23 07:11:49 t 1 1 131332 585 0.00 2019-10-23 07:14:58 2019-10-23 07:22:54 t 1 1 131333 445 0.00 2019-10-23 07:17:01 2019-10-23 07:28:58 t 1 1 131341 562 0.00 2019-10-23 07:52:06 2019-10-23 07:56:05 t 1 1 131345 445 0.00 2019-10-23 07:29:07 2019-10-23 07:59:26 t 1 1 131347 562 0.00 2019-10-23 08:03:32 2019-10-23 08:05:18 t 1 1 131350 220 0.00 2019-10-23 07:25:02 2019-10-23 08:11:11 t 1 1 131214 570 0.00 2019-10-22 23:55:15 2019-10-23 00:05:00 t 1 1 131219 570 0.00 2019-10-23 00:05:00 2019-10-23 00:15:01 t 1 1 131220 587 0.00 2019-10-23 00:00:02 2019-10-23 00:15:58 t 1 1 131221 562 0.00 2019-10-23 00:20:18 2019-10-23 00:20:37 t 1 1 131223 339 0.00 2019-10-23 00:17:39 2019-10-23 00:25:02 t 1 2 131232 587 0.00 2019-10-23 00:34:50 2019-10-23 00:40:45 t 1 1 131240 501 0.00 2019-10-23 00:51:28 2019-10-23 00:52:52 t 1 1 131242 514 0.00 2019-10-23 00:39:31 2019-10-23 01:01:14 t 1 1 131243 570 0.00 2019-10-23 01:00:06 2019-10-23 01:02:04 t 1 1 131244 562 0.00 2019-10-23 01:03:09 2019-10-23 01:03:34 t 1 1 131252 562 0.00 2019-10-23 01:21:49 2019-10-23 01:21:59 t 1 1 131255 514 0.00 2019-10-23 01:20:54 2019-10-23 01:33:52 t 1 1 131256 558 0.00 2019-10-23 01:27:54 2019-10-23 01:36:11 t 1 1 131257 514 0.00 2019-10-23 01:33:52 2019-10-23 01:37:54 t 1 1 131259 562 0.00 2019-10-23 01:43:16 2019-10-23 01:43:29 t 1 1 131265 558 0.00 2019-10-23 01:43:34 2019-10-23 01:52:09 t 1 1 131266 514 0.00 2019-10-23 01:50:57 2019-10-23 01:58:40 t 1 1 131268 562 0.00 2019-10-23 02:01:43 2019-10-23 02:01:53 t 1 1 131274 562 0.00 2019-10-23 02:23:03 2019-10-23 02:23:24 t 1 1 131275 544 0.00 2019-10-23 02:16:55 2019-10-23 02:27:01 t 1 2 131277 562 0.00 2019-10-23 02:33:57 2019-10-23 02:34:07 t 1 1 131281 562 0.00 2019-10-23 02:53:19 2019-10-23 02:53:42 t 1 1 131282 562 0.00 2019-10-23 03:03:57 2019-10-23 03:04:24 t 1 1 131283 412 0.00 2019-10-23 00:43:24 2019-10-23 03:13:23 t 1 1 131286 562 0.00 2019-10-23 03:25:28 2019-10-23 03:25:53 t 1 1 131287 544 0.00 2019-10-23 03:22:16 2019-10-23 03:32:38 t 1 2 131289 445 0.00 2019-10-23 03:13:24 2019-10-23 03:39:01 t 1 1 131292 445 0.00 2019-10-23 03:39:01 2019-10-23 03:52:58 t 1 1 131296 562 0.00 2019-10-23 04:12:13 2019-10-23 04:12:26 t 1 1 131297 445 0.00 2019-10-23 04:06:45 2019-10-23 04:14:25 t 1 1 131303 562 0.00 2019-10-23 05:15:24 2019-10-23 05:15:39 t 1 1 59511 131 0.00 2018-01-22 03:34:55 2018-01-22 03:34:55 f 1 1 59512 131 0.00 2018-01-22 03:40:56 2018-01-22 03:40:56 f 1 1 131304 562 0.00 2019-10-23 05:25:59 2019-10-23 05:26:25 t 1 1 59518 131 0.00 2018-01-22 05:46:22 2018-01-22 05:46:22 f 1 1 131305 562 0.00 2019-10-23 05:36:54 2019-10-23 05:37:05 t 1 1 131310 568 0.00 2019-10-23 05:52:44 2019-10-23 06:08:28 t 1 1 131311 564 0.00 2019-10-22 22:21:04 2019-10-23 06:12:17 t 1 1 131313 570 0.00 2019-10-23 06:15:19 2019-10-23 06:26:24 t 1 1 131314 520 0.00 2019-10-23 05:55:19 2019-10-23 06:26:46 t 1 1 131316 516 0.00 2019-10-23 06:24:29 2019-10-23 06:31:14 t 1 1 131317 520 0.00 2019-10-23 06:26:45 2019-10-23 06:31:33 t 1 1 131321 558 0.00 2019-10-23 02:14:53 2019-10-23 06:36:29 t 1 1 131322 520 0.00 2019-10-23 06:31:33 2019-10-23 06:37:23 t 1 1 131325 570 0.00 2019-10-23 06:35:25 2019-10-23 06:44:44 t 1 1 131330 445 0.00 2019-10-23 04:14:32 2019-10-23 07:16:17 t 1 1 131336 481 0.00 2019-10-23 07:08:47 2019-10-23 07:40:26 t 1 1 131338 591 0.00 2019-10-23 07:28:27 2019-10-23 07:47:14 t 1 1 131342 591 0.00 2019-10-23 07:47:14 2019-10-23 07:56:27 t 1 1 131344 591 0.00 2019-10-23 07:56:27 2019-10-23 07:58:57 t 1 1 131348 581 0.00 2019-10-23 08:04:03 2019-10-23 08:05:51 t 1 1 131349 581 0.00 2019-10-23 08:08:35 2019-10-23 08:09:37 t 1 1 131351 379 0.00 2019-10-23 07:04:59 2019-10-23 08:15:22 t 1 1 131353 562 0.00 2019-10-23 08:14:20 2019-10-23 08:18:03 t 1 1 131358 562 0.00 2019-10-23 08:28:46 2019-10-23 08:30:37 t 1 1 131359 568 0.00 2019-10-23 08:27:11 2019-10-23 08:31:28 t 1 1 131363 445 0.00 2019-10-23 08:30:20 2019-10-23 08:33:00 t 1 1 131369 445 0.00 2019-10-23 08:33:47 2019-10-23 08:38:28 t 1 1 131371 562 0.00 2019-10-23 08:37:01 2019-10-23 08:39:36 t 1 1 131373 512 0.00 2019-10-23 08:35:54 2019-10-23 08:40:46 t 1 1 131378 591 0.00 2019-10-23 08:40:43 2019-10-23 08:47:40 t 1 1 131379 562 0.00 2019-10-23 08:47:42 2019-10-23 08:48:00 t 1 1 131380 578 0.00 2019-10-22 22:49:44 2019-10-23 08:53:53 t 1 1 131381 562 0.00 2019-10-23 08:53:56 2019-10-23 08:54:31 t 1 1 131382 591 0.00 2019-10-23 08:53:00 2019-10-23 08:54:59 t 1 1 131386 568 0.00 2019-10-23 08:44:19 2019-10-23 09:03:16 t 1 1 131388 564 0.00 2019-10-23 08:56:01 2019-10-23 09:06:07 t 1 1 131389 512 0.00 2019-10-23 09:03:12 2019-10-23 09:07:18 t 1 1 131393 568 0.00 2019-10-23 09:03:16 2019-10-23 09:14:24 t 1 1 131394 562 0.00 2019-10-23 09:19:50 2019-10-23 09:20:02 t 1 1 131398 591 0.00 2019-10-23 09:25:24 2019-10-23 09:27:30 t 1 1 131399 562 0.00 2019-10-23 09:27:27 2019-10-23 09:28:28 t 1 1 131404 570 0.00 2019-10-23 08:53:07 2019-10-23 09:35:45 t 1 1 131405 585 0.00 2019-10-23 09:29:10 2019-10-23 09:36:17 t 1 1 131407 558 0.00 2019-10-23 08:40:10 2019-10-23 09:37:19 t 1 1 131414 416 0.00 2019-10-23 08:30:38 2019-10-23 09:54:24 t 1 1 131415 528 0.00 2019-10-23 09:54:19 2019-10-23 09:55:04 t 1 1 131416 562 0.00 2019-10-23 09:56:54 2019-10-23 09:57:21 t 1 1 131419 445 0.00 2019-10-23 09:36:16 2019-10-23 10:02:37 t 1 1 131423 528 0.00 2019-10-23 10:07:58 2019-10-23 10:08:23 t 1 1 131424 528 0.00 2019-10-23 10:08:40 2019-10-23 10:08:59 t 1 1 131428 445 0.00 2019-10-23 10:10:28 2019-10-23 10:12:38 t 1 1 131429 327 0.00 2019-10-23 09:45:52 2019-10-23 10:17:12 t 1 1 131431 570 0.00 2019-10-23 10:14:00 2019-10-23 10:20:37 t 1 1 131433 514 0.00 2019-10-23 10:11:32 2019-10-23 10:21:45 t 1 1 131439 562 0.00 2019-10-23 10:24:28 2019-10-23 10:25:36 t 1 1 131440 528 0.00 2019-10-23 10:25:43 2019-10-23 10:26:05 t 1 1 131441 416 0.00 2019-10-23 10:27:00 2019-10-23 10:27:30 t 1 1 131446 528 0.00 2019-10-23 10:31:01 2019-10-23 10:31:45 t 1 1 131447 564 0.00 2019-10-23 09:32:00 2019-10-23 10:34:18 t 1 1 131452 516 0.00 2019-10-23 10:36:15 2019-10-23 10:44:14 t 1 1 131455 514 0.00 2019-10-23 10:37:08 2019-10-23 10:45:23 t 1 1 131463 587 0.00 2019-10-23 10:52:22 2019-10-23 10:56:12 t 1 1 131466 445 0.00 2019-10-23 10:56:44 2019-10-23 10:57:50 t 1 1 131470 587 0.00 2019-10-23 10:56:26 2019-10-23 11:02:58 t 1 1 131471 562 0.00 2019-10-23 11:01:41 2019-10-23 11:04:26 t 1 1 131483 562 0.00 2019-10-23 11:14:22 2019-10-23 11:14:48 t 1 1 131486 490 0.00 2019-10-23 11:12:48 2019-10-23 11:18:38 t 1 1 131494 220 0.00 2019-10-23 11:25:59 2019-10-23 11:26:42 t 1 1 131496 379 0.00 2019-10-23 08:41:30 2019-10-23 11:27:03 t 1 1 131501 562 0.00 2019-10-23 11:36:08 2019-10-23 11:36:22 t 1 1 131504 516 0.00 2019-10-23 11:35:52 2019-10-23 11:38:59 t 1 1 131506 562 0.00 2019-10-23 11:39:57 2019-10-23 11:40:15 t 1 1 131509 498 0.00 2019-10-23 10:19:28 2019-10-23 11:47:50 t 1 2 131511 587 0.00 2019-10-23 11:49:23 2019-10-23 11:51:44 t 1 1 131517 220 0.00 2019-10-23 11:58:27 2019-10-23 11:59:49 t 1 1 131518 587 0.00 2019-10-23 11:52:49 2019-10-23 12:01:32 t 1 1 131258 514 0.00 2019-10-23 01:37:54 2019-10-23 01:41:28 t 1 1 131260 558 0.00 2019-10-23 01:36:11 2019-10-23 01:43:34 t 1 1 131261 574 0.00 2019-10-22 19:21:27 2019-10-23 01:44:47 t 1 1 131264 490 0.00 2019-10-23 01:51:08 2019-10-23 01:51:44 t 1 1 131269 544 0.00 2019-10-23 02:01:29 2019-10-23 02:06:55 t 1 2 131270 562 0.00 2019-10-23 02:12:11 2019-10-23 02:12:37 t 1 1 131271 558 0.00 2019-10-23 01:59:28 2019-10-23 02:14:53 t 1 1 131278 562 0.00 2019-10-23 02:42:32 2019-10-23 02:42:58 t 1 1 131279 566 0.00 2019-10-23 02:33:45 2019-10-23 02:47:42 t 1 1 131280 566 0.00 2019-10-23 02:47:42 2019-10-23 02:50:21 t 1 1 131288 562 0.00 2019-10-23 03:36:18 2019-10-23 03:36:38 t 1 1 131290 562 0.00 2019-10-23 03:43:03 2019-10-23 03:43:18 t 1 1 131291 538 0.00 2019-10-23 03:22:18 2019-10-23 03:47:18 t 1 1 131293 562 0.00 2019-10-23 03:53:46 2019-10-23 03:54:04 t 1 1 131294 445 0.00 2019-10-23 03:52:58 2019-10-23 03:58:01 t 1 1 131299 562 0.00 2019-10-23 04:33:31 2019-10-23 04:33:56 t 1 1 131300 562 0.00 2019-10-23 04:44:18 2019-10-23 04:44:40 t 1 1 131307 562 0.00 2019-10-23 05:47:29 2019-10-23 05:47:51 t 1 1 131308 562 0.00 2019-10-23 05:56:19 2019-10-23 05:56:38 t 1 1 131309 562 0.00 2019-10-23 06:06:59 2019-10-23 06:07:26 t 1 1 131315 562 0.00 2019-10-23 06:28:38 2019-10-23 06:28:56 t 1 1 131323 562 0.00 2019-10-23 06:39:23 2019-10-23 06:39:37 t 1 1 131324 566 0.00 2019-10-23 06:22:06 2019-10-23 06:40:54 t 1 1 131326 562 0.00 2019-10-23 06:50:02 2019-10-23 06:50:24 t 1 1 131327 562 0.00 2019-10-23 07:00:42 2019-10-23 07:01:06 t 1 1 131329 520 0.00 2019-10-23 06:37:22 2019-10-23 07:14:16 t 1 1 131331 562 0.00 2019-10-23 07:22:20 2019-10-23 07:22:35 t 1 1 131334 562 0.00 2019-10-23 07:33:05 2019-10-23 07:33:21 t 1 1 131335 516 0.00 2019-10-23 07:27:43 2019-10-23 07:37:14 t 1 1 131337 562 0.00 2019-10-23 07:43:45 2019-10-23 07:44:07 t 1 1 131339 558 0.00 2019-10-23 06:36:29 2019-10-23 07:49:20 t 1 1 131340 520 0.00 2019-10-23 07:14:16 2019-10-23 07:54:50 t 1 1 131343 412 0.00 2019-10-23 03:13:52 2019-10-23 07:57:58 t 1 1 131346 456 0.00 2019-10-23 07:59:40 2019-10-23 08:05:16 t 1 1 131352 379 0.00 2019-10-23 08:16:14 2019-10-23 08:17:53 t 1 1 131356 562 0.00 2019-10-23 08:25:57 2019-10-23 08:27:51 t 1 1 131357 445 0.00 2019-10-23 08:02:58 2019-10-23 08:30:18 t 1 1 131360 591 0.00 2019-10-23 08:02:38 2019-10-23 08:31:33 t 1 1 131361 516 0.00 2019-10-23 08:18:05 2019-10-23 08:31:45 t 1 1 131362 568 0.00 2019-10-23 08:31:43 2019-10-23 08:32:37 t 1 1 131364 591 0.00 2019-10-23 08:31:33 2019-10-23 08:33:02 t 1 1 131366 564 0.00 2019-10-23 08:26:32 2019-10-23 08:33:52 t 1 1 131370 220 0.00 2019-10-23 08:11:11 2019-10-23 08:38:28 t 1 1 131372 558 0.00 2019-10-23 07:51:19 2019-10-23 08:40:12 t 1 1 131374 379 0.00 2019-10-23 08:20:23 2019-10-23 08:41:30 t 1 1 131377 562 0.00 2019-10-23 08:41:16 2019-10-23 08:46:42 t 1 1 131385 591 0.00 2019-10-23 08:58:35 2019-10-23 09:00:55 t 1 1 131390 591 0.00 2019-10-23 09:05:11 2019-10-23 09:07:47 t 1 1 131392 445 0.00 2019-10-23 09:03:47 2019-10-23 09:11:40 t 1 1 131395 591 0.00 2019-10-23 09:09:40 2019-10-23 09:20:16 t 1 1 131397 562 0.00 2019-10-23 09:26:50 2019-10-23 09:27:11 t 1 1 131401 562 0.00 2019-10-23 09:30:24 2019-10-23 09:30:40 t 1 1 131402 564 0.00 2019-10-23 09:06:07 2019-10-23 09:32:00 t 1 1 131406 445 0.00 2019-10-23 09:11:51 2019-10-23 09:36:17 t 1 1 131409 562 0.00 2019-10-23 09:41:01 2019-10-23 09:41:15 t 1 1 131411 528 0.00 2019-10-23 09:47:31 2019-10-23 09:47:53 t 1 1 131413 514 0.00 2019-10-23 09:15:56 2019-10-23 09:54:19 t 1 1 131417 568 0.00 2019-10-23 09:58:51 2019-10-23 10:00:33 t 1 1 131420 528 0.00 2019-10-23 10:04:50 2019-10-23 10:05:36 t 1 1 131421 562 0.00 2019-10-23 10:07:40 2019-10-23 10:08:03 t 1 1 131426 514 0.00 2019-10-23 09:54:19 2019-10-23 10:11:32 t 1 1 131430 562 0.00 2019-10-23 10:18:27 2019-10-23 10:18:46 t 1 1 131434 327 0.00 2019-10-23 10:17:21 2019-10-23 10:22:09 t 1 1 131436 562 0.00 2019-10-23 10:22:27 2019-10-23 10:22:38 t 1 1 131437 528 0.00 2019-10-23 10:23:14 2019-10-23 10:23:38 t 1 1 131442 416 0.00 2019-10-23 09:56:04 2019-10-23 10:27:41 t 1 1 131443 562 0.00 2019-10-23 10:27:49 2019-10-23 10:28:10 t 1 1 131453 528 0.00 2019-10-23 10:41:39 2019-10-23 10:44:30 t 1 1 131456 512 0.00 2019-10-23 10:24:08 2019-10-23 10:46:13 t 1 1 131458 587 0.00 2019-10-23 10:46:39 2019-10-23 10:51:21 t 1 1 131459 562 0.00 2019-10-23 10:51:29 2019-10-23 10:51:53 t 1 1 131460 512 0.00 2019-10-23 10:51:44 2019-10-23 10:54:27 t 1 1 131462 445 0.00 2019-10-23 10:13:16 2019-10-23 10:55:41 t 1 1 131467 581 0.00 2019-10-23 10:32:50 2019-10-23 10:59:13 t 1 1 131468 220 0.00 2019-10-23 10:55:17 2019-10-23 10:59:59 t 1 1 131469 514 0.00 2019-10-23 10:45:23 2019-10-23 11:01:49 t 1 1 131472 512 0.00 2019-10-23 10:58:49 2019-10-23 11:06:20 t 1 1 131474 220 0.00 2019-10-23 11:02:35 2019-10-23 11:08:46 t 1 1 131475 220 0.00 2019-10-23 11:08:46 2019-10-23 11:09:20 t 1 1 131478 516 0.00 2019-10-23 11:04:08 2019-10-23 11:11:32 t 1 1 131479 562 0.00 2019-10-23 11:11:15 2019-10-23 11:12:11 t 1 1 131480 220 0.00 2019-10-23 11:12:13 2019-10-23 11:12:25 t 1 2 131484 570 0.00 2019-10-23 10:53:34 2019-10-23 11:16:23 t 1 1 131487 562 0.00 2019-10-23 11:20:40 2019-10-23 11:21:59 t 1 1 131489 220 0.00 2019-10-23 11:23:02 2019-10-23 11:23:37 t 1 1 131490 220 0.00 2019-10-23 11:23:37 2019-10-23 11:24:10 t 1 1 131492 220 0.00 2019-10-23 11:25:10 2019-10-23 11:25:44 t 1 1 131493 220 0.00 2019-10-23 11:25:44 2019-10-23 11:25:59 t 1 1 131495 587 0.00 2019-10-23 11:22:25 2019-10-23 11:26:44 t 1 1 131499 591 0.00 2019-10-23 11:27:58 2019-10-23 11:29:30 t 1 1 131503 570 0.00 2019-10-23 11:17:49 2019-10-23 11:38:27 t 1 1 131505 587 0.00 2019-10-23 11:27:24 2019-10-23 11:39:24 t 1 1 131507 412 0.00 2019-10-23 08:18:41 2019-10-23 11:44:46 t 1 1 131508 562 0.00 2019-10-23 11:45:07 2019-10-23 11:46:04 t 1 1 131513 514 0.00 2019-10-23 11:43:57 2019-10-23 11:55:50 t 1 1 131514 562 0.00 2019-10-23 11:55:04 2019-10-23 11:56:53 t 1 1 131523 562 0.00 2019-10-23 12:11:40 2019-10-23 12:13:12 t 1 1 131526 456 0.00 2019-10-23 12:11:00 2019-10-23 12:16:27 t 1 1 131527 562 0.00 2019-10-23 12:16:06 2019-10-23 12:17:26 t 1 1 131531 514 0.00 2019-10-23 12:03:32 2019-10-23 12:24:39 t 1 1 131536 564 0.00 2019-10-23 12:21:10 2019-10-23 12:39:35 t 1 1 131539 327 0.00 2019-10-23 12:26:01 2019-10-23 12:42:50 t 1 1 131542 564 0.00 2019-10-23 12:39:35 2019-10-23 12:43:52 t 1 1 131544 562 0.00 2019-10-23 12:34:40 2019-10-23 12:45:11 t 1 1 131546 538 0.00 2019-10-23 12:43:37 2019-10-23 12:46:41 t 1 1 131551 587 0.00 2019-10-23 12:46:27 2019-10-23 12:57:07 t 1 1 131556 587 0.00 2019-10-23 12:57:07 2019-10-23 13:02:40 t 1 1 131354 412 0.00 2019-10-23 07:57:58 2019-10-23 08:18:41 t 1 1 131355 562 0.00 2019-10-23 08:23:26 2019-10-23 08:24:24 t 1 1 131365 570 0.00 2019-10-23 08:20:11 2019-10-23 08:33:11 t 1 1 131367 585 0.00 2019-10-23 07:41:18 2019-10-23 08:35:43 t 1 1 131368 591 0.00 2019-10-23 08:35:10 2019-10-23 08:38:24 t 1 1 131375 501 0.00 2019-10-23 08:35:11 2019-10-23 08:43:51 t 1 1 131376 568 0.00 2019-10-23 08:32:36 2019-10-23 08:44:19 t 1 1 131383 564 0.00 2019-10-23 08:33:52 2019-10-23 08:56:01 t 1 1 131384 562 0.00 2019-10-23 08:58:29 2019-10-23 08:58:39 t 1 1 131387 445 0.00 2019-10-23 08:41:07 2019-10-23 09:03:45 t 1 1 131391 562 0.00 2019-10-23 09:09:08 2019-10-23 09:09:19 t 1 1 131396 568 0.00 2019-10-23 09:14:24 2019-10-23 09:23:05 t 1 1 131400 562 0.00 2019-10-23 09:27:42 2019-10-23 09:29:04 t 1 1 131403 562 0.00 2019-10-23 09:34:31 2019-10-23 09:35:15 t 1 1 131408 516 0.00 2019-10-23 08:45:22 2019-10-23 09:37:28 t 1 1 131410 528 0.00 2019-10-23 09:39:09 2019-10-23 09:41:53 t 1 1 131412 562 0.00 2019-10-23 09:48:36 2019-10-23 09:48:58 t 1 1 131418 568 0.00 2019-10-23 10:00:33 2019-10-23 10:02:25 t 1 1 131422 445 0.00 2019-10-23 10:05:32 2019-10-23 10:08:10 t 1 1 131425 568 0.00 2019-10-23 10:02:05 2019-10-23 10:10:51 t 1 1 131427 528 0.00 2019-10-23 10:12:04 2019-10-23 10:12:29 t 1 1 131432 591 0.00 2019-10-23 09:43:04 2019-10-23 10:21:43 t 1 1 131435 528 0.00 2019-10-23 10:22:00 2019-10-23 10:22:23 t 1 1 131438 528 0.00 2019-10-23 10:25:03 2019-10-23 10:25:23 t 1 1 131444 514 0.00 2019-10-23 10:21:45 2019-10-23 10:28:15 t 1 1 131445 568 0.00 2019-10-23 10:10:47 2019-10-23 10:28:58 t 1 1 131448 562 0.00 2019-10-23 10:32:08 2019-10-23 10:34:33 t 1 1 131449 514 0.00 2019-10-23 10:28:15 2019-10-23 10:37:08 t 1 1 131450 558 0.00 2019-10-23 09:37:23 2019-10-23 10:43:45 t 1 1 131451 562 0.00 2019-10-23 10:37:15 2019-10-23 10:44:08 t 1 1 131454 327 0.00 2019-10-23 10:31:34 2019-10-23 10:45:19 t 1 1 131457 562 0.00 2019-10-23 10:45:03 2019-10-23 10:46:18 t 1 1 131461 220 0.00 2019-10-23 09:00:16 2019-10-23 10:55:08 t 1 1 131464 562 0.00 2019-10-23 10:54:43 2019-10-23 10:56:31 t 1 1 131465 327 0.00 2019-10-23 10:45:36 2019-10-23 10:57:27 t 1 1 131473 591 0.00 2019-10-23 10:37:51 2019-10-23 11:08:32 t 1 1 131476 220 0.00 2019-10-23 11:09:19 2019-10-23 11:09:57 t 1 1 131477 220 0.00 2019-10-23 11:09:57 2019-10-23 11:11:00 t 1 1 131481 558 0.00 2019-10-23 10:43:53 2019-10-23 11:12:25 t 1 1 131482 220 0.00 2019-10-23 11:11:34 2019-10-23 11:13:37 t 1 1 131485 581 0.00 2019-10-23 11:10:33 2019-10-23 11:18:24 t 1 1 131488 220 0.00 2019-10-23 11:14:39 2019-10-23 11:23:03 t 1 1 131491 220 0.00 2019-10-23 11:24:10 2019-10-23 11:25:10 t 1 1 131497 220 0.00 2019-10-23 11:12:21 2019-10-23 11:27:30 t 1 2 131498 220 0.00 2019-10-23 09:55:21 2019-10-23 11:28:48 t 1 2 131500 562 0.00 2019-10-23 11:29:51 2019-10-23 11:30:14 t 1 1 131502 514 0.00 2019-10-23 11:01:49 2019-10-23 11:37:15 t 1 1 131510 587 0.00 2019-10-23 11:39:24 2019-10-23 11:48:49 t 1 1 131512 562 0.00 2019-10-23 11:50:47 2019-10-23 11:52:21 t 1 1 131515 220 0.00 2019-10-23 11:26:41 2019-10-23 11:58:27 t 1 1 131516 562 0.00 2019-10-23 11:58:48 2019-10-23 11:59:28 t 1 1 131520 514 0.00 2019-10-23 11:55:50 2019-10-23 12:03:32 t 1 1 131522 581 0.00 2019-10-23 12:02:10 2019-10-23 12:07:17 t 1 1 131524 516 0.00 2019-10-23 12:12:35 2019-10-23 12:16:14 t 1 1 131528 331 0.00 2019-10-23 12:16:29 2019-10-23 12:17:33 t 1 1 131529 564 0.00 2019-10-23 10:34:18 2019-10-23 12:22:06 t 1 1 131530 562 0.00 2019-10-23 12:22:53 2019-10-23 12:23:17 t 1 1 131532 445 0.00 2019-10-23 11:06:34 2019-10-23 12:31:30 t 1 1 131533 562 0.00 2019-10-23 12:33:34 2019-10-23 12:34:00 t 1 1 131537 595 0.00 2019-10-23 12:39:15 2019-10-23 12:40:09 t 1 1 131538 585 0.00 2019-10-23 12:37:40 2019-10-23 12:41:11 t 1 1 131540 512 0.00 2019-10-23 11:40:31 2019-10-23 12:42:57 t 1 1 131541 538 0.00 2019-10-23 11:55:48 2019-10-23 12:43:25 t 1 1 131545 587 0.00 2019-10-23 12:40:59 2019-10-23 12:46:08 t 1 1 131547 564 0.00 2019-10-23 12:43:52 2019-10-23 12:48:03 t 1 1 131548 516 0.00 2019-10-23 12:45:32 2019-10-23 12:51:27 t 1 1 131549 564 0.00 2019-10-23 12:48:03 2019-10-23 12:52:28 t 1 1 131550 445 0.00 2019-10-23 12:31:16 2019-10-23 12:53:33 t 1 1 131553 562 0.00 2019-10-23 12:45:53 2019-10-23 12:58:02 t 1 1 131554 445 0.00 2019-10-23 12:58:06 2019-10-23 13:01:21 t 1 1 131557 562 0.00 2019-10-23 13:02:54 2019-10-23 13:03:29 t 1 1 131559 528 0.00 2019-10-23 13:01:48 2019-10-23 13:03:36 t 1 1 131560 562 0.00 2019-10-23 13:03:40 2019-10-23 13:04:23 t 1 1 131562 220 0.00 2019-10-23 13:03:29 2019-10-23 13:06:22 t 1 1 131575 562 0.00 2019-10-23 13:16:31 2019-10-23 13:16:39 t 1 1 131576 562 0.00 2019-10-23 13:16:51 2019-10-23 13:17:31 t 1 1 131577 220 0.00 2019-10-23 13:16:18 2019-10-23 13:18:26 t 1 1 131578 220 0.00 2019-10-23 13:18:26 2019-10-23 13:19:01 t 1 1 131581 422 0.00 2019-10-23 13:05:06 2019-10-23 13:21:14 t 1 1 131583 566 0.00 2019-10-23 13:08:42 2019-10-23 13:23:43 t 1 1 131585 566 0.00 2019-10-23 13:23:43 2019-10-23 13:27:57 t 1 1 131587 379 0.00 2019-10-23 12:19:41 2019-10-23 13:32:18 t 1 1 131589 562 0.00 2019-10-23 13:37:53 2019-10-23 13:38:06 t 1 1 131591 456 0.00 2019-10-23 13:33:02 2019-10-23 13:41:56 t 1 1 131597 591 0.00 2019-10-23 13:20:01 2019-10-23 13:47:40 t 1 1 131598 562 0.00 2019-10-23 13:48:23 2019-10-23 13:48:44 t 1 1 131607 408 0.00 2019-10-23 13:54:28 2019-10-23 13:56:12 t 1 1 131611 430 0.00 2019-10-23 13:51:13 2019-10-23 13:59:38 t 1 1 131613 514 0.00 2019-10-23 13:49:00 2019-10-23 14:00:20 t 1 1 131616 528 0.00 2019-10-23 13:53:56 2019-10-23 14:02:56 t 1 1 131618 528 0.00 2019-10-23 14:04:39 2019-10-23 14:05:07 t 1 1 131624 562 0.00 2019-10-23 14:09:23 2019-10-23 14:10:05 t 1 1 131626 566 0.00 2019-10-23 13:59:42 2019-10-23 14:12:33 t 1 1 131628 562 0.00 2019-10-23 14:12:55 2019-10-23 14:13:52 t 1 1 59997 131 0.00 2018-02-10 06:33:33 2018-02-10 06:34:41 t 1 1 131631 581 0.00 2019-10-23 14:01:46 2019-10-23 14:14:37 t 1 1 131633 416 0.00 2019-10-23 10:29:23 2019-10-23 14:15:38 t 1 1 131635 416 0.00 2019-10-23 14:17:47 2019-10-23 14:19:02 t 1 1 131641 514 0.00 2019-10-23 14:14:51 2019-10-23 14:24:09 t 1 1 131643 538 0.00 2019-10-23 12:46:54 2019-10-23 14:26:14 t 1 1 131644 538 0.00 2019-10-23 14:26:21 2019-10-23 14:27:09 t 1 1 131646 501 0.00 2019-10-23 14:28:05 2019-10-23 14:28:56 t 1 1 131648 430 0.00 2019-10-23 14:24:00 2019-10-23 14:30:27 t 1 1 131649 501 0.00 2019-10-23 14:29:58 2019-10-23 14:30:58 t 1 1 131651 501 0.00 2019-10-23 14:32:00 2019-10-23 14:32:33 t 1 1 131652 562 0.00 2019-10-23 14:31:21 2019-10-23 14:33:04 t 1 1 131656 501 0.00 2019-10-23 14:33:45 2019-10-23 14:33:57 t 1 1 131519 562 0.00 2019-10-23 12:00:17 2019-10-23 12:02:43 t 1 1 131521 562 0.00 2019-10-23 12:05:51 2019-10-23 12:06:30 t 1 1 131525 331 0.00 2019-10-23 12:14:20 2019-10-23 12:16:14 t 1 1 131534 481 0.00 2019-10-23 12:32:23 2019-10-23 12:34:02 t 1 1 131535 514 0.00 2019-10-23 12:24:39 2019-10-23 12:38:20 t 1 1 131543 595 0.00 2019-10-23 12:43:14 2019-10-23 12:45:08 t 1 1 131552 445 0.00 2019-10-23 12:53:59 2019-10-23 12:57:51 t 1 1 131555 562 0.00 2019-10-23 12:58:02 2019-10-23 13:02:38 t 1 1 131561 422 0.00 2019-10-23 12:58:14 2019-10-23 13:05:06 t 1 1 131564 562 0.00 2019-10-23 13:05:54 2019-10-23 13:07:33 t 1 1 131565 566 0.00 2019-10-23 13:00:47 2019-10-23 13:08:42 t 1 1 131566 451 0.00 2019-10-23 12:55:33 2019-10-23 13:09:07 t 1 1 131567 220 0.00 2019-10-23 13:06:55 2019-10-23 13:09:54 t 1 1 131568 562 0.00 2019-10-23 13:08:21 2019-10-23 13:10:17 t 1 1 131570 220 0.00 2019-10-23 13:09:54 2019-10-23 13:10:29 t 1 1 131571 516 0.00 2019-10-23 13:04:53 2019-10-23 13:11:00 t 1 1 131574 587 0.00 2019-10-23 13:02:40 2019-10-23 13:16:38 t 1 1 131579 451 0.00 2019-10-23 13:09:07 2019-10-23 13:19:05 t 1 1 131580 587 0.00 2019-10-23 13:16:38 2019-10-23 13:21:00 t 1 1 131582 220 0.00 2019-10-23 13:19:01 2019-10-23 13:22:16 t 1 1 131586 451 0.00 2019-10-23 13:19:05 2019-10-23 13:29:55 t 1 1 131590 585 0.00 2019-10-23 13:34:59 2019-10-23 13:40:42 t 1 1 131594 566 0.00 2019-10-23 13:27:57 2019-10-23 13:44:01 t 1 1 131600 587 0.00 2019-10-23 13:21:00 2019-10-23 13:49:14 t 1 1 131601 430 0.00 2019-10-23 13:46:01 2019-10-23 13:50:37 t 1 1 131605 587 0.00 2019-10-23 13:51:03 2019-10-23 13:53:02 t 1 1 131608 564 0.00 2019-10-23 12:52:28 2019-10-23 13:56:28 t 1 1 131609 451 0.00 2019-10-23 13:50:12 2019-10-23 13:57:37 t 1 1 131612 566 0.00 2019-10-23 13:44:01 2019-10-23 13:59:42 t 1 1 131619 325 0.00 2019-10-23 13:57:03 2019-10-23 14:05:20 t 1 2 131620 528 0.00 2019-10-23 14:06:21 2019-10-23 14:06:48 t 1 1 131621 528 0.00 2019-10-23 14:06:57 2019-10-23 14:07:12 t 1 1 131629 585 0.00 2019-10-23 14:07:39 2019-10-23 14:14:01 t 1 1 131636 581 0.00 2019-10-23 14:14:37 2019-10-23 14:21:36 t 1 1 131638 591 0.00 2019-10-23 14:04:49 2019-10-23 14:21:46 t 1 1 131639 581 0.00 2019-10-23 14:21:45 2019-10-23 14:23:13 t 1 1 131640 430 0.00 2019-10-23 14:16:47 2019-10-23 14:24:00 t 1 1 131653 220 0.00 2019-10-23 14:17:08 2019-10-23 14:33:31 t 1 2 131655 538 0.00 2019-10-23 14:27:36 2019-10-23 14:33:56 t 1 1 131658 585 0.00 2019-10-23 14:14:01 2019-10-23 14:34:23 t 1 1 131660 501 0.00 2019-10-23 14:35:01 2019-10-23 14:35:34 t 1 1 131661 327 0.00 2019-10-23 14:32:00 2019-10-23 14:36:04 t 1 1 131663 562 0.00 2019-10-23 14:35:22 2019-10-23 14:36:53 t 1 1 131666 430 0.00 2019-10-23 14:42:58 2019-10-23 14:48:52 t 1 1 131672 327 0.00 2019-10-23 14:45:28 2019-10-23 14:51:12 t 1 1 131673 562 0.00 2019-10-23 14:52:58 2019-10-23 14:53:09 t 1 1 131675 481 0.00 2019-10-23 14:39:30 2019-10-23 14:53:46 t 1 1 131676 591 0.00 2019-10-23 14:53:07 2019-10-23 14:54:53 t 1 1 131677 430 0.00 2019-10-23 14:48:52 2019-10-23 14:55:03 t 1 1 131680 587 0.00 2019-10-23 14:53:28 2019-10-23 14:58:07 t 1 1 131686 501 0.00 2019-10-23 15:02:53 2019-10-23 15:03:30 t 1 1 131690 501 0.00 2019-10-23 15:05:37 2019-10-23 15:07:08 t 1 1 131691 501 0.00 2019-10-23 15:08:10 2019-10-23 15:08:45 t 1 1 131695 501 0.00 2019-10-23 15:11:14 2019-10-23 15:11:46 t 1 1 131699 562 0.00 2019-10-23 15:14:09 2019-10-23 15:14:51 t 1 1 131701 501 0.00 2019-10-23 15:15:15 2019-10-23 15:15:23 t 1 1 131708 501 0.00 2019-10-23 15:19:38 2019-10-23 15:20:20 t 1 1 131709 430 0.00 2019-10-23 15:14:53 2019-10-23 15:21:03 t 1 1 131710 501 0.00 2019-10-23 15:21:18 2019-10-23 15:21:32 t 1 1 131711 576 0.00 2019-10-23 15:17:30 2019-10-23 15:22:29 t 1 1 131714 220 0.00 2019-10-23 15:10:48 2019-10-23 15:25:53 t 1 2 131715 430 0.00 2019-10-23 15:21:03 2019-10-23 15:27:22 t 1 1 131718 501 0.00 2019-10-23 15:32:15 2019-10-23 15:32:46 t 1 1 131719 501 0.00 2019-10-23 15:33:09 2019-10-23 15:33:17 t 1 1 131720 501 0.00 2019-10-23 15:34:09 2019-10-23 15:34:17 t 1 1 131725 501 0.00 2019-10-23 15:36:10 2019-10-23 15:36:17 t 1 1 131726 568 0.00 2019-10-23 15:36:55 2019-10-23 15:38:17 t 1 1 131729 430 0.00 2019-10-23 15:39:21 2019-10-23 15:39:54 t 1 1 131731 568 0.00 2019-10-23 15:38:17 2019-10-23 15:41:37 t 1 1 131735 562 0.00 2019-10-23 15:47:44 2019-10-23 15:48:12 t 1 1 131737 430 0.00 2019-10-23 15:42:53 2019-10-23 15:56:39 t 1 1 131738 220 0.00 2019-10-23 15:42:04 2019-10-23 15:57:10 t 1 2 131742 325 0.00 2019-10-23 14:59:36 2019-10-23 15:59:41 t 1 2 131744 501 0.00 2019-10-23 15:37:10 2019-10-23 16:01:39 t 1 1 131746 327 0.00 2019-10-23 16:02:11 2019-10-23 16:04:15 t 1 1 131748 379 0.00 2019-10-23 13:32:18 2019-10-23 16:08:35 t 1 1 131753 445 0.00 2019-10-23 14:56:05 2019-10-23 16:11:03 t 1 1 131756 591 0.00 2019-10-23 16:11:36 2019-10-23 16:13:15 t 1 1 59989 131 0.00 2018-02-10 01:55:59 2018-02-10 01:57:41 t 1 1 131758 501 0.00 2019-10-23 16:13:52 2019-10-23 16:14:24 t 1 1 131760 445 0.00 2019-10-23 16:11:03 2019-10-23 16:14:58 t 1 1 131761 327 0.00 2019-10-23 16:07:48 2019-10-23 16:15:25 t 1 1 131763 562 0.00 2019-10-23 16:16:21 2019-10-23 16:16:55 t 1 1 131765 581 0.00 2019-10-23 16:15:22 2019-10-23 16:17:20 t 1 1 131768 514 0.00 2019-10-23 16:14:18 2019-10-23 16:17:58 t 1 1 131770 501 0.00 2019-10-23 16:18:48 2019-10-23 16:18:49 t 1 1 131772 587 0.00 2019-10-23 16:11:04 2019-10-23 16:19:56 t 1 1 131775 516 0.00 2019-10-23 16:13:02 2019-10-23 16:22:24 t 1 1 131779 501 0.00 2019-10-23 16:21:49 2019-10-23 16:23:37 t 1 1 131780 445 0.00 2019-10-23 16:14:57 2019-10-23 16:24:42 t 1 1 131784 445 0.00 2019-10-23 16:27:04 2019-10-23 16:28:06 t 1 1 131787 327 0.00 2019-10-23 16:28:11 2019-10-23 16:31:20 t 1 1 60023 131 0.00 2018-02-10 23:58:27 2018-02-10 23:59:41 t 1 1 131797 514 0.00 2019-10-23 16:17:59 2019-10-23 16:38:00 t 1 1 131798 591 0.00 2019-10-23 16:34:43 2019-10-23 16:39:16 t 1 1 131800 501 0.00 2019-10-23 16:24:39 2019-10-23 16:40:32 t 1 1 131802 520 0.00 2019-10-23 16:33:23 2019-10-23 16:40:46 t 1 1 131810 498 0.00 2019-10-23 16:06:31 2019-10-23 16:46:37 t 1 2 131812 514 0.00 2019-10-23 16:45:45 2019-10-23 16:48:03 t 1 1 131815 445 0.00 2019-10-23 16:28:06 2019-10-23 16:50:48 t 1 1 131818 501 0.00 2019-10-23 16:51:01 2019-10-23 16:51:36 t 1 1 131819 501 0.00 2019-10-23 16:52:01 2019-10-23 16:52:34 t 1 1 131822 562 0.00 2019-10-23 16:53:54 2019-10-23 16:56:43 t 1 1 131824 430 0.00 2019-10-23 16:53:21 2019-10-23 16:58:12 t 1 1 131825 585 0.00 2019-10-23 16:57:16 2019-10-23 16:58:59 t 1 1 131828 570 0.00 2019-10-23 16:55:10 2019-10-23 17:00:16 t 1 1 131830 501 0.00 2019-10-23 17:00:36 2019-10-23 17:00:45 t 1 1 131558 220 0.00 2019-10-23 12:00:06 2019-10-23 13:03:29 t 1 1 131563 220 0.00 2019-10-23 13:06:21 2019-10-23 13:06:55 t 1 1 131569 327 0.00 2019-10-23 12:52:15 2019-10-23 13:10:18 t 1 1 131572 220 0.00 2019-10-23 13:10:29 2019-10-23 13:15:43 t 1 1 131573 220 0.00 2019-10-23 13:15:43 2019-10-23 13:16:19 t 1 1 131584 562 0.00 2019-10-23 13:27:20 2019-10-23 13:27:27 t 1 1 131588 528 0.00 2019-10-23 13:33:48 2019-10-23 13:36:20 t 1 1 131592 422 0.00 2019-10-23 13:21:14 2019-10-23 13:42:01 t 1 1 131593 562 0.00 2019-10-23 13:43:02 2019-10-23 13:43:44 t 1 1 131595 430 0.00 2019-10-23 13:35:53 2019-10-23 13:45:42 t 1 1 131596 220 0.00 2019-10-23 13:22:16 2019-10-23 13:46:13 t 1 1 131599 514 0.00 2019-10-23 12:38:20 2019-10-23 13:49:00 t 1 1 131602 587 0.00 2019-10-23 13:50:23 2019-10-23 13:50:42 t 1 1 131603 220 0.00 2019-10-23 13:47:35 2019-10-23 13:51:11 t 1 1 131604 327 0.00 2019-10-23 13:10:31 2019-10-23 13:52:29 t 1 1 131606 591 0.00 2019-10-23 13:50:03 2019-10-23 13:53:19 t 1 1 131610 562 0.00 2019-10-23 13:59:14 2019-10-23 13:59:24 t 1 1 131614 581 0.00 2019-10-23 13:46:31 2019-10-23 14:00:41 t 1 1 131615 581 0.00 2019-10-23 14:00:49 2019-10-23 14:01:28 t 1 1 131617 430 0.00 2019-10-23 13:59:45 2019-10-23 14:03:02 t 1 1 131622 528 0.00 2019-10-23 14:07:55 2019-10-23 14:08:19 t 1 1 131623 528 0.00 2019-10-23 14:08:40 2019-10-23 14:09:04 t 1 1 131625 430 0.00 2019-10-23 14:03:07 2019-10-23 14:11:12 t 1 1 131627 501 0.00 2019-10-23 14:13:02 2019-10-23 14:13:40 t 1 1 131630 566 0.00 2019-10-23 14:12:33 2019-10-23 14:14:31 t 1 1 131632 514 0.00 2019-10-23 14:00:20 2019-10-23 14:14:51 t 1 1 131634 430 0.00 2019-10-23 14:11:12 2019-10-23 14:16:47 t 1 1 131637 327 0.00 2019-10-23 14:01:53 2019-10-23 14:21:44 t 1 1 131642 562 0.00 2019-10-23 14:23:24 2019-10-23 14:24:29 t 1 1 131645 501 0.00 2019-10-23 14:14:01 2019-10-23 14:27:53 t 1 1 131647 562 0.00 2019-10-23 14:28:35 2019-10-23 14:29:53 t 1 1 131650 520 0.00 2019-10-23 14:11:33 2019-10-23 14:31:32 t 1 1 131654 501 0.00 2019-10-23 14:33:00 2019-10-23 14:33:40 t 1 1 131659 501 0.00 2019-10-23 14:34:09 2019-10-23 14:34:38 t 1 1 131662 430 0.00 2019-10-23 14:30:27 2019-10-23 14:36:32 t 1 1 131664 430 0.00 2019-10-23 14:36:32 2019-10-23 14:42:58 t 1 1 131665 562 0.00 2019-10-23 14:44:41 2019-10-23 14:45:03 t 1 1 131667 544 0.00 2019-10-23 14:49:01 2019-10-23 14:49:12 t 1 2 131669 514 0.00 2019-10-23 14:24:09 2019-10-23 14:49:43 t 1 1 131671 422 0.00 2019-10-23 14:49:28 2019-10-23 14:51:02 t 1 1 131674 445 0.00 2019-10-23 13:01:30 2019-10-23 14:53:27 t 1 1 131683 422 0.00 2019-10-23 14:55:48 2019-10-23 14:59:30 t 1 1 131687 562 0.00 2019-10-23 15:03:27 2019-10-23 15:03:43 t 1 1 131688 501 0.00 2019-10-23 15:03:58 2019-10-23 15:04:34 t 1 1 131689 430 0.00 2019-10-23 15:01:20 2019-10-23 15:07:07 t 1 1 131692 544 0.00 2019-10-23 14:52:44 2019-10-23 15:08:50 t 1 2 131693 501 0.00 2019-10-23 15:09:18 2019-10-23 15:09:49 t 1 1 131696 501 0.00 2019-10-23 15:12:13 2019-10-23 15:12:46 t 1 1 131700 430 0.00 2019-10-23 15:07:07 2019-10-23 15:14:53 t 1 1 131705 585 0.00 2019-10-23 15:12:15 2019-10-23 15:17:39 t 1 1 131706 501 0.00 2019-10-23 15:18:16 2019-10-23 15:18:25 t 1 1 131707 501 0.00 2019-10-23 15:18:31 2019-10-23 15:19:32 t 1 1 131712 562 0.00 2019-10-23 15:25:02 2019-10-23 15:25:25 t 1 1 131716 501 0.00 2019-10-23 15:21:56 2019-10-23 15:31:47 t 1 1 131717 587 0.00 2019-10-23 14:59:29 2019-10-23 15:32:41 t 1 1 131721 587 0.00 2019-10-23 15:32:41 2019-10-23 15:34:30 t 1 1 131724 587 0.00 2019-10-23 15:35:04 2019-10-23 15:36:06 t 1 1 131727 430 0.00 2019-10-23 15:27:22 2019-10-23 15:38:32 t 1 1 131728 430 0.00 2019-10-23 15:39:08 2019-10-23 15:39:13 t 1 1 131732 430 0.00 2019-10-23 15:42:39 2019-10-23 15:42:42 t 1 1 59950 131 0.00 2018-02-09 02:13:36 2018-02-09 02:14:39 t 1 1 131734 587 0.00 2019-10-23 15:43:51 2019-10-23 15:45:46 t 1 1 131736 591 0.00 2019-10-23 15:53:31 2019-10-23 15:55:38 t 1 1 131739 430 0.00 2019-10-23 15:56:43 2019-10-23 15:57:32 t 1 1 131740 562 0.00 2019-10-23 15:58:34 2019-10-23 15:58:57 t 1 1 131745 514 0.00 2019-10-23 14:49:43 2019-10-23 16:04:09 t 1 1 131747 585 0.00 2019-10-23 15:20:12 2019-10-23 16:04:46 t 1 1 131750 562 0.00 2019-10-23 16:08:49 2019-10-23 16:09:54 t 1 1 131751 591 0.00 2019-10-23 16:02:48 2019-10-23 16:10:07 t 1 1 131754 587 0.00 2019-10-23 15:52:54 2019-10-23 16:11:04 t 1 1 131757 514 0.00 2019-10-23 16:10:20 2019-10-23 16:14:18 t 1 1 131766 508 0.00 2019-10-23 14:50:39 2019-10-23 16:17:27 t 1 2 131767 501 0.00 2019-10-23 16:17:47 2019-10-23 16:17:55 t 1 1 131776 591 0.00 2019-10-23 16:18:34 2019-10-23 16:22:37 t 1 1 131781 445 0.00 2019-10-23 16:25:07 2019-10-23 16:26:10 t 1 1 131782 587 0.00 2019-10-23 16:25:08 2019-10-23 16:27:15 t 1 1 131783 327 0.00 2019-10-23 16:16:18 2019-10-23 16:28:04 t 1 1 131786 562 0.00 2019-10-23 16:23:03 2019-10-23 16:30:40 t 1 1 131788 585 0.00 2019-10-23 16:15:06 2019-10-23 16:31:34 t 1 1 131792 516 0.00 2019-10-23 16:31:58 2019-10-23 16:34:50 t 1 1 131794 327 0.00 2019-10-23 16:33:17 2019-10-23 16:35:43 t 1 1 131795 581 0.00 2019-10-23 16:20:11 2019-10-23 16:36:15 t 1 1 131796 544 0.00 2019-10-23 16:37:23 2019-10-23 16:37:31 t 1 2 131799 587 0.00 2019-10-23 16:35:04 2019-10-23 16:40:05 t 1 1 131801 587 0.00 2019-10-23 16:40:29 2019-10-23 16:40:34 t 1 1 131804 562 0.00 2019-10-23 16:39:53 2019-10-23 16:41:02 t 1 1 131806 587 0.00 2019-10-23 16:41:23 2019-10-23 16:41:43 t 1 1 131807 481 0.00 2019-10-23 16:35:23 2019-10-23 16:42:27 t 1 1 131809 520 0.00 2019-10-23 16:40:47 2019-10-23 16:45:48 t 1 1 131813 562 0.00 2019-10-23 16:47:50 2019-10-23 16:48:37 t 1 1 131814 587 0.00 2019-10-23 16:47:43 2019-10-23 16:50:32 t 1 1 131816 564 0.00 2019-10-23 15:20:37 2019-10-23 16:50:50 t 1 1 60038 131 0.00 2018-02-11 03:32:15 2018-02-11 03:33:41 t 1 1 131817 501 0.00 2019-10-23 16:50:07 2019-10-23 16:51:01 t 1 1 131820 587 0.00 2019-10-23 16:50:44 2019-10-23 16:54:32 t 1 1 131823 501 0.00 2019-10-23 16:53:02 2019-10-23 16:58:07 t 1 1 131826 501 0.00 2019-10-23 16:59:09 2019-10-23 16:59:43 t 1 1 131829 501 0.00 2019-10-23 17:00:09 2019-10-23 17:00:22 t 1 1 131832 501 0.00 2019-10-23 17:02:06 2019-10-23 17:02:27 t 1 1 131835 570 0.00 2019-10-23 17:01:31 2019-10-23 17:03:37 t 1 1 131838 528 0.00 2019-10-23 16:55:48 2019-10-23 17:05:16 t 1 1 131840 501 0.00 2019-10-23 17:06:31 2019-10-23 17:07:02 t 1 1 131841 528 0.00 2019-10-23 17:07:32 2019-10-23 17:07:42 t 1 1 131842 220 0.00 2019-10-23 16:26:01 2019-10-23 17:08:06 t 1 1 131843 501 0.00 2019-10-23 17:07:57 2019-10-23 17:09:05 t 1 1 131846 520 0.00 2019-10-23 17:02:45 2019-10-23 17:11:02 t 1 1 131851 430 0.00 2019-10-23 17:09:53 2019-10-23 17:16:26 t 1 1 131657 562 0.00 2019-10-23 14:34:06 2019-10-23 14:34:20 t 1 1 131668 501 0.00 2019-10-23 14:36:01 2019-10-23 14:49:28 t 1 1 131670 562 0.00 2019-10-23 14:50:25 2019-10-23 14:50:57 t 1 1 131678 422 0.00 2019-10-23 14:51:02 2019-10-23 14:55:48 t 1 1 131679 562 0.00 2019-10-23 14:53:50 2019-10-23 14:58:06 t 1 1 131681 587 0.00 2019-10-23 14:58:33 2019-10-23 14:58:46 t 1 1 131682 587 0.00 2019-10-23 14:59:10 2019-10-23 14:59:17 t 1 1 60082 131 0.00 2018-02-12 04:58:49 2018-02-12 05:00:42 t 1 1 131684 430 0.00 2019-10-23 14:55:03 2019-10-23 15:01:20 t 1 1 131685 501 0.00 2019-10-23 14:50:34 2019-10-23 15:02:04 t 1 1 131694 501 0.00 2019-10-23 15:09:55 2019-10-23 15:10:11 t 1 1 131697 501 0.00 2019-10-23 15:13:13 2019-10-23 15:14:07 t 1 1 131698 501 0.00 2019-10-23 15:14:12 2019-10-23 15:14:21 t 1 1 131702 501 0.00 2019-10-23 15:15:29 2019-10-23 15:15:37 t 1 1 131703 501 0.00 2019-10-23 15:16:15 2019-10-23 15:16:23 t 1 1 131704 501 0.00 2019-10-23 15:17:16 2019-10-23 15:17:25 t 1 1 131713 591 0.00 2019-10-23 15:22:33 2019-10-23 15:25:35 t 1 1 131722 327 0.00 2019-10-23 15:00:37 2019-10-23 15:34:40 t 1 1 131723 501 0.00 2019-10-23 15:35:10 2019-10-23 15:35:42 t 1 1 131730 430 0.00 2019-10-23 15:41:12 2019-10-23 15:41:15 t 1 1 131733 587 0.00 2019-10-23 15:42:45 2019-10-23 15:42:59 t 1 1 131741 591 0.00 2019-10-23 15:57:34 2019-10-23 15:59:16 t 1 1 131743 327 0.00 2019-10-23 15:34:40 2019-10-23 16:01:34 t 1 1 131749 430 0.00 2019-10-23 15:57:37 2019-10-23 16:09:40 t 1 1 60124 131 0.00 2018-02-13 06:58:28 2018-02-13 06:59:42 t 1 1 131752 514 0.00 2019-10-23 16:04:09 2019-10-23 16:10:20 t 1 1 131755 501 0.00 2019-10-23 16:02:36 2019-10-23 16:12:45 t 1 1 60131 131 0.00 2018-02-13 09:35:44 2018-02-13 09:37:42 t 1 1 131759 501 0.00 2019-10-23 16:14:45 2019-10-23 16:14:53 t 1 1 131762 501 0.00 2019-10-23 16:15:46 2019-10-23 16:16:43 t 1 1 131764 456 0.00 2019-10-23 16:01:08 2019-10-23 16:17:02 t 1 1 131769 591 0.00 2019-10-23 16:13:15 2019-10-23 16:18:06 t 1 1 131771 581 0.00 2019-10-23 16:18:09 2019-10-23 16:18:58 t 1 1 131773 501 0.00 2019-10-23 16:20:54 2019-10-23 16:21:08 t 1 1 131774 587 0.00 2019-10-23 16:20:10 2019-10-23 16:22:02 t 1 1 131777 562 0.00 2019-10-23 16:17:36 2019-10-23 16:22:43 t 1 1 131778 587 0.00 2019-10-23 16:20:43 2019-10-23 16:23:37 t 1 1 131785 587 0.00 2019-10-23 16:27:30 2019-10-23 16:28:20 t 1 1 131789 430 0.00 2019-10-23 16:09:50 2019-10-23 16:31:38 t 1 1 131790 587 0.00 2019-10-23 16:28:35 2019-10-23 16:32:52 t 1 1 131791 587 0.00 2019-10-23 16:33:54 2019-10-23 16:34:11 t 1 1 131793 481 0.00 2019-10-23 16:08:39 2019-10-23 16:35:23 t 1 1 131803 562 0.00 2019-10-23 16:40:39 2019-10-23 16:40:54 t 1 1 131805 408 0.00 2019-10-23 16:35:43 2019-10-23 16:41:03 t 1 1 131808 514 0.00 2019-10-23 16:38:00 2019-10-23 16:44:31 t 1 1 131811 587 0.00 2019-10-23 16:41:56 2019-10-23 16:47:29 t 1 1 131821 416 0.00 2019-10-23 16:13:32 2019-10-23 16:55:25 t 1 1 60192 131 0.00 2018-02-14 08:38:01 2018-02-14 08:39:43 t 1 1 131827 562 0.00 2019-10-23 16:59:10 2019-10-23 17:00:12 t 1 1 131834 516 0.00 2019-10-23 16:59:37 2019-10-23 17:02:54 t 1 1 131836 430 0.00 2019-10-23 16:58:12 2019-10-23 17:03:55 t 1 1 131845 416 0.00 2019-10-23 17:06:08 2019-10-23 17:10:50 t 1 1 131847 501 0.00 2019-10-23 17:10:08 2019-10-23 17:11:26 t 1 1 131852 481 0.00 2019-10-23 16:42:53 2019-10-23 17:17:47 t 1 1 131853 562 0.00 2019-10-23 17:04:17 2019-10-23 17:18:02 t 1 1 131854 528 0.00 2019-10-23 17:18:53 2019-10-23 17:20:02 t 1 1 131858 528 0.00 2019-10-23 17:22:18 2019-10-23 17:23:54 t 1 1 131860 528 0.00 2019-10-23 17:23:54 2019-10-23 17:24:14 t 1 1 131862 520 0.00 2019-10-23 17:11:49 2019-10-23 17:25:16 t 1 1 131864 528 0.00 2019-10-23 17:26:17 2019-10-23 17:26:43 t 1 1 131867 591 0.00 2019-10-23 16:53:21 2019-10-23 17:28:22 t 1 1 131871 562 0.00 2019-10-23 17:30:31 2019-10-23 17:30:59 t 1 1 131875 528 0.00 2019-10-23 17:35:04 2019-10-23 17:35:22 t 1 1 131878 562 0.00 2019-10-23 17:40:21 2019-10-23 17:41:00 t 1 1 131883 372 0.00 2019-10-23 17:07:29 2019-10-23 17:42:34 t 1 2 131888 516 0.00 2019-10-23 17:32:10 2019-10-23 17:45:14 t 1 1 131891 583 0.00 2019-10-23 17:41:38 2019-10-23 17:51:35 t 1 1 131893 562 0.00 2019-10-23 17:52:23 2019-10-23 17:53:29 t 1 1 131894 528 0.00 2019-10-23 17:38:03 2019-10-23 17:55:43 t 1 1 131896 430 0.00 2019-10-23 17:42:58 2019-10-23 17:57:19 t 1 1 131901 562 0.00 2019-10-23 18:02:52 2019-10-23 18:03:59 t 1 1 131905 591 0.00 2019-10-23 17:44:00 2019-10-23 18:06:59 t 1 1 131912 220 0.00 2019-10-23 18:14:24 2019-10-23 18:15:42 t 1 1 131919 220 0.00 2019-10-23 15:53:33 2019-10-23 18:20:21 t 1 2 131923 576 0.00 2019-10-23 18:01:49 2019-10-23 18:22:00 t 1 1 131927 570 0.00 2019-10-23 18:05:11 2019-10-23 18:27:17 t 1 1 131929 593 0.00 2019-10-23 17:16:49 2019-10-23 18:29:23 t 1 1 131932 412 0.00 2019-10-23 11:44:46 2019-10-23 18:30:11 t 1 1 131935 220 0.00 2019-10-23 18:06:49 2019-10-23 18:31:54 t 1 2 131936 562 0.00 2019-10-23 18:32:31 2019-10-23 18:32:54 t 1 1 131940 562 0.00 2019-10-23 18:33:32 2019-10-23 18:34:01 t 1 1 131941 220 0.00 2019-10-23 18:22:53 2019-10-23 18:34:54 t 1 1 131943 562 0.00 2019-10-23 18:35:22 2019-10-23 18:35:35 t 1 1 131945 220 0.00 2019-10-23 18:35:36 2019-10-23 18:36:09 t 1 1 131947 220 0.00 2019-10-23 18:36:09 2019-10-23 18:36:43 t 1 1 131949 220 0.00 2019-10-23 18:36:43 2019-10-23 18:37:15 t 1 1 131951 220 0.00 2019-10-23 18:37:15 2019-10-23 18:37:50 t 1 1 131952 220 0.00 2019-10-23 18:37:50 2019-10-23 18:38:25 t 1 1 131955 514 0.00 2019-10-23 18:13:56 2019-10-23 18:40:20 t 1 1 131958 481 0.00 2019-10-23 18:38:48 2019-10-23 18:40:54 t 1 1 131961 562 0.00 2019-10-23 18:41:12 2019-10-23 18:41:22 t 1 1 131962 220 0.00 2019-10-23 18:41:17 2019-10-23 18:41:49 t 1 1 131963 562 0.00 2019-10-23 18:41:50 2019-10-23 18:42:26 t 1 1 131971 587 0.00 2019-10-23 18:43:08 2019-10-23 18:44:06 t 1 1 131974 220 0.00 2019-10-23 18:43:40 2019-10-23 18:45:43 t 1 1 131975 220 0.00 2019-10-23 18:45:43 2019-10-23 18:46:46 t 1 1 131982 522 0.00 2019-10-23 18:50:13 2019-10-23 18:50:18 t 1 1 131983 220 0.00 2019-10-23 18:48:14 2019-10-23 18:50:54 t 1 1 131984 514 0.00 2019-10-23 18:40:20 2019-10-23 18:51:32 t 1 1 131985 576 0.00 2019-10-23 18:42:39 2019-10-23 18:51:47 t 1 1 131990 522 0.00 2019-10-23 18:53:31 2019-10-23 18:53:56 t 1 1 131991 522 0.00 2019-10-23 18:54:08 2019-10-23 18:54:38 t 1 1 131992 522 0.00 2019-10-23 18:53:23 2019-10-23 18:55:03 t 1 1 132000 422 0.00 2019-10-23 18:53:14 2019-10-23 18:58:02 t 1 1 132001 522 0.00 2019-10-23 18:59:18 2019-10-23 18:59:21 t 1 1 132002 220 0.00 2019-10-23 18:57:55 2019-10-23 18:59:54 t 1 1 132003 562 0.00 2019-10-23 18:57:41 2019-10-23 19:00:49 t 1 1 131831 501 0.00 2019-10-23 17:01:10 2019-10-23 17:02:10 t 1 1 131833 520 0.00 2019-10-23 16:45:47 2019-10-23 17:02:45 t 1 1 131837 501 0.00 2019-10-23 17:02:46 2019-10-23 17:04:52 t 1 1 60068 131 0.00 2018-02-12 00:14:51 2018-02-12 00:16:42 t 1 1 131839 501 0.00 2019-10-23 17:05:01 2019-10-23 17:06:04 t 1 1 131844 430 0.00 2019-10-23 17:03:55 2019-10-23 17:09:53 t 1 1 131848 593 0.00 2019-10-23 16:58:10 2019-10-23 17:14:50 t 1 1 131849 416 0.00 2019-10-23 17:13:17 2019-10-23 17:14:58 t 1 1 131850 528 0.00 2019-10-23 17:15:24 2019-10-23 17:16:06 t 1 1 131855 445 0.00 2019-10-23 16:51:31 2019-10-23 17:21:12 t 1 1 131861 445 0.00 2019-10-23 17:21:12 2019-10-23 17:24:59 t 1 1 131863 430 0.00 2019-10-23 17:16:26 2019-10-23 17:26:30 t 1 1 60088 131 0.00 2018-02-12 10:38:32 2018-02-12 10:39:42 t 1 1 131869 501 0.00 2019-10-23 17:27:25 2019-10-23 17:29:05 t 1 1 131870 520 0.00 2019-10-23 17:28:37 2019-10-23 17:30:04 t 1 1 131874 430 0.00 2019-10-23 17:26:30 2019-10-23 17:34:11 t 1 1 131877 562 0.00 2019-10-23 17:37:26 2019-10-23 17:37:50 t 1 1 131879 591 0.00 2019-10-23 17:33:19 2019-10-23 17:41:13 t 1 1 131882 430 0.00 2019-10-23 17:42:02 2019-10-23 17:42:10 t 1 1 131884 430 0.00 2019-10-23 17:42:29 2019-10-23 17:42:35 t 1 1 131890 585 0.00 2019-10-23 17:46:06 2019-10-23 17:50:50 t 1 1 131892 422 0.00 2019-10-23 17:44:23 2019-10-23 17:53:13 t 1 1 60120 131 0.00 2018-02-13 05:03:56 2018-02-13 05:05:42 t 1 1 131895 583 0.00 2019-10-23 17:55:23 2019-10-23 17:56:26 t 1 1 131897 562 0.00 2019-10-23 17:55:53 2019-10-23 17:58:59 t 1 1 131898 514 0.00 2019-10-23 16:50:15 2019-10-23 18:00:31 t 1 1 131904 220 0.00 2019-10-23 17:08:09 2019-10-23 18:06:57 t 1 1 131908 220 0.00 2019-10-23 18:09:41 2019-10-23 18:10:16 t 1 1 131909 591 0.00 2019-10-23 18:09:04 2019-10-23 18:12:37 t 1 1 131911 220 0.00 2019-10-23 18:13:49 2019-10-23 18:14:24 t 1 1 131914 585 0.00 2019-10-23 18:14:02 2019-10-23 18:16:17 t 1 1 131917 562 0.00 2019-10-23 18:16:45 2019-10-23 18:19:07 t 1 1 131922 220 0.00 2019-10-23 18:21:13 2019-10-23 18:21:47 t 1 1 131924 220 0.00 2019-10-23 18:21:46 2019-10-23 18:22:47 t 1 1 131925 498 0.00 2019-10-23 17:54:52 2019-10-23 18:24:58 t 1 2 131933 585 0.00 2019-10-23 18:26:47 2019-10-23 18:30:19 t 1 1 131938 422 0.00 2019-10-23 18:29:40 2019-10-23 18:33:22 t 1 1 131939 220 0.00 2019-10-23 18:23:41 2019-10-23 18:33:46 t 1 2 131942 583 0.00 2019-10-23 18:30:42 2019-10-23 18:35:20 t 1 1 131946 562 0.00 2019-10-23 18:35:56 2019-10-23 18:36:24 t 1 1 131948 522 0.00 2019-10-23 18:30:49 2019-10-23 18:36:57 t 1 1 131950 481 0.00 2019-10-23 18:28:58 2019-10-23 18:37:47 t 1 1 131953 562 0.00 2019-10-23 18:37:03 2019-10-23 18:38:28 t 1 1 131954 528 0.00 2019-10-23 18:29:27 2019-10-23 18:39:25 t 1 1 131967 562 0.00 2019-10-23 18:43:01 2019-10-23 18:43:09 t 1 1 131972 422 0.00 2019-10-23 18:33:22 2019-10-23 18:45:14 t 1 1 60191 131 0.00 2018-02-14 08:37:45 2018-02-14 08:37:45 f 1 1 131973 528 0.00 2019-10-23 18:39:25 2019-10-23 18:45:33 t 1 1 131977 562 0.00 2019-10-23 18:45:31 2019-10-23 18:47:01 t 1 1 131978 220 0.00 2019-10-23 18:46:46 2019-10-23 18:47:33 t 1 1 131980 562 0.00 2019-10-23 18:48:05 2019-10-23 18:49:25 t 1 1 131981 522 0.00 2019-10-23 18:47:13 2019-10-23 18:49:58 t 1 1 131987 220 0.00 2019-10-23 18:50:53 2019-10-23 18:52:10 t 1 1 131989 422 0.00 2019-10-23 18:45:14 2019-10-23 18:53:14 t 1 1 131993 585 0.00 2019-10-23 18:50:27 2019-10-23 18:55:22 t 1 1 131994 220 0.00 2019-10-23 18:52:10 2019-10-23 18:55:42 t 1 1 131996 587 0.00 2019-10-23 18:55:38 2019-10-23 18:57:03 t 1 1 131998 220 0.00 2019-10-23 18:56:35 2019-10-23 18:57:18 t 1 1 131999 220 0.00 2019-10-23 18:57:18 2019-10-23 18:57:56 t 1 1 132004 220 0.00 2019-10-23 18:59:53 2019-10-23 19:01:22 t 1 1 132005 220 0.00 2019-10-23 19:01:21 2019-10-23 19:01:58 t 1 1 132006 220 0.00 2019-10-23 19:01:58 2019-10-23 19:02:49 t 1 1 132008 595 0.00 2019-10-23 18:58:43 2019-10-23 19:03:12 t 1 1 132009 562 0.00 2019-10-23 19:01:11 2019-10-23 19:03:34 t 1 1 132010 514 0.00 2019-10-23 18:51:32 2019-10-23 19:04:11 t 1 1 132017 595 0.00 2019-10-23 19:09:25 2019-10-23 19:09:45 t 1 1 132019 595 0.00 2019-10-23 19:09:55 2019-10-23 19:10:18 t 1 1 132021 430 0.00 2019-10-23 19:07:18 2019-10-23 19:11:38 t 1 1 132027 595 0.00 2019-10-23 19:14:25 2019-10-23 19:14:49 t 1 1 132029 445 0.00 2019-10-23 18:53:52 2019-10-23 19:16:06 t 1 1 132031 422 0.00 2019-10-23 19:11:56 2019-10-23 19:17:43 t 1 1 132032 562 0.00 2019-10-23 19:08:11 2019-10-23 19:18:37 t 1 1 132037 595 0.00 2019-10-23 19:19:35 2019-10-23 19:19:57 t 1 1 132039 595 0.00 2019-10-23 19:20:13 2019-10-23 19:20:36 t 1 1 132040 595 0.00 2019-10-23 19:20:45 2019-10-23 19:21:07 t 1 1 132041 595 0.00 2019-10-23 19:21:19 2019-10-23 19:21:40 t 1 1 60290 131 0.00 2018-02-18 05:39:37 2018-02-18 05:40:46 t 1 1 132042 562 0.00 2019-10-23 19:21:28 2019-10-23 19:22:12 t 1 1 132044 522 0.00 2019-10-23 19:24:26 2019-10-23 19:24:29 t 1 1 132046 595 0.00 2019-10-23 19:24:45 2019-10-23 19:25:05 t 1 1 132047 562 0.00 2019-10-23 19:23:21 2019-10-23 19:26:34 t 1 1 132049 583 0.00 2019-10-23 19:17:15 2019-10-23 19:28:47 t 1 1 132051 595 0.00 2019-10-23 19:29:32 2019-10-23 19:30:07 t 1 1 132056 522 0.00 2019-10-23 19:33:20 2019-10-23 19:33:29 t 1 1 132060 501 0.00 2019-10-23 19:31:55 2019-10-23 19:34:02 t 1 1 132065 562 0.00 2019-10-23 19:36:56 2019-10-23 19:37:23 t 1 1 132068 595 0.00 2019-10-23 19:31:16 2019-10-23 19:38:22 t 1 1 132069 501 0.00 2019-10-23 19:36:08 2019-10-23 19:38:57 t 1 1 132071 562 0.00 2019-10-23 19:38:50 2019-10-23 19:39:15 t 1 1 132076 562 0.00 2019-10-23 19:40:00 2019-10-23 19:40:28 t 1 1 132079 325 0.00 2019-10-23 19:33:33 2019-10-23 19:43:38 t 1 2 132080 501 0.00 2019-10-23 19:41:51 2019-10-23 19:44:15 t 1 1 132083 522 0.00 2019-10-23 19:43:40 2019-10-23 19:45:03 t 1 1 132084 522 0.00 2019-10-23 19:46:03 2019-10-23 19:46:06 t 1 1 132087 445 0.00 2019-10-23 19:39:48 2019-10-23 19:47:17 t 1 1 132095 430 0.00 2019-10-23 19:49:37 2019-10-23 19:49:44 t 1 1 132100 220 0.00 2019-10-23 19:03:26 2019-10-23 19:51:50 t 1 1 60336 131 0.00 2018-02-20 00:21:07 2018-02-20 00:22:48 t 1 1 132104 522 0.00 2019-10-23 19:51:14 2019-10-23 19:53:03 t 1 1 132108 501 0.00 2019-10-23 19:51:37 2019-10-23 19:54:46 t 1 1 132117 430 0.00 2019-10-23 19:59:47 2019-10-23 20:00:01 t 1 1 132120 522 0.00 2019-10-23 20:01:18 2019-10-23 20:01:20 t 1 1 132122 501 0.00 2019-10-23 19:58:01 2019-10-23 20:01:26 t 1 1 132123 522 0.00 2019-10-23 20:01:35 2019-10-23 20:01:44 t 1 1 132124 522 0.00 2019-10-23 20:01:51 2019-10-23 20:02:01 t 1 1 132125 581 0.00 2019-10-23 19:54:28 2019-10-23 20:03:16 t 1 1 132128 522 0.00 2019-10-23 20:04:43 2019-10-23 20:04:47 t 1 1 131856 501 0.00 2019-10-23 17:12:08 2019-10-23 17:21:34 t 1 1 131857 585 0.00 2019-10-23 17:18:41 2019-10-23 17:22:01 t 1 1 131859 562 0.00 2019-10-23 17:20:21 2019-10-23 17:24:12 t 1 1 131865 501 0.00 2019-10-23 17:21:34 2019-10-23 17:27:25 t 1 1 131866 562 0.00 2019-10-23 17:26:24 2019-10-23 17:28:04 t 1 1 131868 520 0.00 2019-10-23 17:25:16 2019-10-23 17:28:37 t 1 1 131872 528 0.00 2019-10-23 17:30:50 2019-10-23 17:32:07 t 1 1 131873 528 0.00 2019-10-23 17:33:28 2019-10-23 17:33:43 t 1 1 131876 587 0.00 2019-10-23 16:56:39 2019-10-23 17:36:00 t 1 1 131880 583 0.00 2019-10-23 17:32:59 2019-10-23 17:41:38 t 1 1 131881 430 0.00 2019-10-23 17:34:11 2019-10-23 17:41:57 t 1 1 131885 581 0.00 2019-10-23 17:09:52 2019-10-23 17:42:52 t 1 1 131886 576 0.00 2019-10-23 17:30:22 2019-10-23 17:43:15 t 1 1 131887 422 0.00 2019-10-23 14:59:30 2019-10-23 17:44:23 t 1 1 60117 131 0.00 2018-02-13 01:39:45 2018-02-13 01:41:42 t 1 1 60118 131 0.00 2018-02-13 03:32:48 2018-02-13 03:34:42 t 1 1 131889 562 0.00 2019-10-23 17:46:14 2019-10-23 17:47:09 t 1 1 131899 445 0.00 2019-10-23 17:24:39 2019-10-23 18:00:52 t 1 1 60130 131 0.00 2018-02-13 09:34:12 2018-02-13 09:35:42 t 1 1 131900 562 0.00 2019-10-23 18:01:25 2019-10-23 18:02:30 t 1 1 131902 528 0.00 2019-10-23 17:55:43 2019-10-23 18:04:31 t 1 1 131903 570 0.00 2019-10-23 17:36:46 2019-10-23 18:05:11 t 1 1 131906 220 0.00 2019-10-23 18:06:57 2019-10-23 18:09:42 t 1 1 131907 430 0.00 2019-10-23 17:57:19 2019-10-23 18:10:13 t 1 1 60145 131 0.00 2018-02-14 00:39:58 2018-02-14 00:41:42 t 1 1 131910 220 0.00 2019-10-23 18:10:16 2019-10-23 18:13:49 t 1 1 131913 562 0.00 2019-10-23 18:04:24 2019-10-23 18:16:12 t 1 1 131915 220 0.00 2019-10-23 18:15:42 2019-10-23 18:16:17 t 1 1 131916 498 0.00 2019-10-23 18:18:53 2019-10-23 18:18:53 f 1 2 131918 220 0.00 2019-10-23 18:16:17 2019-10-23 18:19:59 t 1 1 131920 220 0.00 2019-10-23 18:19:58 2019-10-23 18:20:31 t 1 1 131921 220 0.00 2019-10-23 18:20:31 2019-10-23 18:21:13 t 1 1 131926 562 0.00 2019-10-23 18:23:39 2019-10-23 18:25:15 t 1 1 131928 481 0.00 2019-10-23 17:17:47 2019-10-23 18:29:02 t 1 1 131930 528 0.00 2019-10-23 18:17:15 2019-10-23 18:29:27 t 1 1 131931 422 0.00 2019-10-23 17:53:13 2019-10-23 18:29:40 t 1 1 131934 583 0.00 2019-10-23 18:12:41 2019-10-23 18:30:42 t 1 1 131937 591 0.00 2019-10-23 18:14:33 2019-10-23 18:33:03 t 1 1 131944 220 0.00 2019-10-23 18:34:54 2019-10-23 18:35:36 t 1 1 131956 585 0.00 2019-10-23 18:33:29 2019-10-23 18:40:27 t 1 1 60207 131 0.00 2018-02-15 00:01:26 2018-02-15 00:01:26 f 1 1 60208 131 0.00 2018-02-15 00:13:28 2018-02-15 00:14:44 t 1 1 131957 220 0.00 2019-10-23 18:38:24 2019-10-23 18:40:44 t 1 1 131959 562 0.00 2019-10-23 18:40:33 2019-10-23 18:40:58 t 1 1 131960 220 0.00 2019-10-23 18:40:44 2019-10-23 18:41:17 t 1 1 131964 220 0.00 2019-10-23 18:41:49 2019-10-23 18:42:28 t 1 1 131965 522 0.00 2019-10-23 18:36:57 2019-10-23 18:43:00 t 1 1 131966 220 0.00 2019-10-23 18:42:27 2019-10-23 18:43:06 t 1 1 131968 578 0.00 2019-10-23 18:35:12 2019-10-23 18:43:34 t 1 1 131969 220 0.00 2019-10-23 18:43:06 2019-10-23 18:43:40 t 1 1 131970 522 0.00 2019-10-23 18:44:02 2019-10-23 18:44:05 t 1 1 60260 131 0.00 2018-02-17 06:17:29 2018-02-17 06:18:45 t 1 1 131976 522 0.00 2019-10-23 18:46:50 2019-10-23 18:46:55 t 1 1 131979 220 0.00 2019-10-23 18:47:33 2019-10-23 18:48:14 t 1 1 131986 445 0.00 2019-10-23 18:01:10 2019-10-23 18:51:59 t 1 1 131988 522 0.00 2019-10-23 18:51:36 2019-10-23 18:52:15 t 1 1 131995 220 0.00 2019-10-23 18:55:41 2019-10-23 18:56:35 t 1 1 131997 562 0.00 2019-10-23 18:51:22 2019-10-23 18:57:04 t 1 1 132007 220 0.00 2019-10-23 19:02:49 2019-10-23 19:02:56 t 1 1 132012 595 0.00 2019-10-23 19:03:23 2019-10-23 19:04:21 t 1 1 132015 516 0.00 2019-10-23 19:02:07 2019-10-23 19:07:52 t 1 1 132016 595 0.00 2019-10-23 19:09:06 2019-10-23 19:09:11 t 1 1 132018 379 0.00 2019-10-23 16:08:46 2019-10-23 19:10:08 t 1 1 132022 422 0.00 2019-10-23 19:04:15 2019-10-23 19:11:56 t 1 1 132026 595 0.00 2019-10-23 19:14:09 2019-10-23 19:14:18 t 1 1 132028 595 0.00 2019-10-23 19:15:01 2019-10-23 19:15:23 t 1 1 132030 583 0.00 2019-10-23 19:08:09 2019-10-23 19:17:15 t 1 1 132033 593 0.00 2019-10-23 19:12:56 2019-10-23 19:19:10 t 1 1 132035 522 0.00 2019-10-23 19:19:03 2019-10-23 19:19:24 t 1 1 132038 562 0.00 2019-10-23 19:18:55 2019-10-23 19:20:02 t 1 1 132043 595 0.00 2019-10-23 19:21:50 2019-10-23 19:22:15 t 1 1 132052 585 0.00 2019-10-23 18:58:12 2019-10-23 19:30:27 t 1 1 132053 501 0.00 2019-10-23 19:30:38 2019-10-23 19:31:55 t 1 1 132054 562 0.00 2019-10-23 19:31:44 2019-10-23 19:32:40 t 1 1 132055 562 0.00 2019-10-23 19:32:59 2019-10-23 19:33:18 t 1 1 132057 516 0.00 2019-10-23 19:31:21 2019-10-23 19:33:32 t 1 1 132058 522 0.00 2019-10-23 19:33:42 2019-10-23 19:33:53 t 1 1 132061 522 0.00 2019-10-23 19:33:59 2019-10-23 19:36:03 t 1 1 132063 562 0.00 2019-10-23 19:35:48 2019-10-23 19:36:28 t 1 1 132066 445 0.00 2019-10-23 19:16:29 2019-10-23 19:37:26 t 1 1 132067 587 0.00 2019-10-23 18:56:03 2019-10-23 19:38:16 t 1 1 132072 481 0.00 2019-10-23 18:41:26 2019-10-23 19:39:39 t 1 1 132078 562 0.00 2019-10-23 19:42:52 2019-10-23 19:43:15 t 1 1 132081 528 0.00 2019-10-23 19:37:20 2019-10-23 19:45:02 t 1 1 132088 562 0.00 2019-10-23 19:47:06 2019-10-23 19:47:37 t 1 1 132091 220 0.00 2019-10-23 18:23:19 2019-10-23 19:48:25 t 1 2 132093 430 0.00 2019-10-23 19:48:11 2019-10-23 19:48:28 t 1 1 132094 430 0.00 2019-10-23 19:49:06 2019-10-23 19:49:12 t 1 1 132096 583 0.00 2019-10-23 19:39:42 2019-10-23 19:50:30 t 1 1 132097 430 0.00 2019-10-23 19:51:30 2019-10-23 19:51:36 t 1 1 132099 522 0.00 2019-10-23 19:51:22 2019-10-23 19:51:47 t 1 1 132101 522 0.00 2019-10-23 19:51:55 2019-10-23 19:52:20 t 1 1 132106 445 0.00 2019-10-23 19:47:50 2019-10-23 19:53:34 t 1 1 132107 430 0.00 2019-10-23 19:54:11 2019-10-23 19:54:14 t 1 1 132109 562 0.00 2019-10-23 19:50:18 2019-10-23 19:55:14 t 1 1 60369 131 0.00 2018-02-21 00:41:36 2018-02-21 00:42:49 t 1 1 132110 522 0.00 2019-10-23 19:56:12 2019-10-23 19:56:15 t 1 1 132112 593 0.00 2019-10-23 19:25:55 2019-10-23 19:57:49 t 1 1 60372 131 0.00 2018-02-21 03:37:05 2018-02-21 03:38:49 t 1 1 132113 501 0.00 2019-10-23 19:54:46 2019-10-23 19:58:01 t 1 1 132114 562 0.00 2019-10-23 19:58:24 2019-10-23 19:58:33 t 1 1 132115 430 0.00 2019-10-23 19:58:39 2019-10-23 19:58:44 t 1 1 60376 131 0.00 2018-02-21 06:24:34 2018-02-21 06:25:50 t 1 1 132118 220 0.00 2019-10-23 18:40:13 2019-10-23 20:00:18 t 1 2 132119 430 0.00 2019-10-23 20:00:19 2019-10-23 20:01:00 t 1 1 132121 583 0.00 2019-10-23 19:50:30 2019-10-23 20:01:24 t 1 1 132126 445 0.00 2019-10-23 19:53:34 2019-10-23 20:03:34 t 1 1 132011 422 0.00 2019-10-23 18:58:02 2019-10-23 19:04:15 t 1 1 132013 522 0.00 2019-10-23 18:59:32 2019-10-23 19:04:32 t 1 1 132014 562 0.00 2019-10-23 19:03:54 2019-10-23 19:06:57 t 1 1 132020 522 0.00 2019-10-23 19:06:02 2019-10-23 19:11:31 t 1 1 132023 522 0.00 2019-10-23 19:12:25 2019-10-23 19:12:28 t 1 1 132024 593 0.00 2019-10-23 18:29:23 2019-10-23 19:13:49 t 1 1 132025 522 0.00 2019-10-23 19:13:54 2019-10-23 19:14:03 t 1 1 132034 536 0.00 2019-10-23 19:18:18 2019-10-23 19:19:14 t 1 1 132036 595 0.00 2019-10-23 19:19:18 2019-10-23 19:19:26 t 1 1 132045 595 0.00 2019-10-23 19:24:29 2019-10-23 19:24:30 t 1 1 132048 562 0.00 2019-10-23 19:27:44 2019-10-23 19:28:40 t 1 1 132050 522 0.00 2019-10-23 19:29:29 2019-10-23 19:29:30 t 1 1 132059 514 0.00 2019-10-23 19:04:11 2019-10-23 19:33:54 t 1 1 132062 501 0.00 2019-10-23 19:34:02 2019-10-23 19:36:08 t 1 1 132064 528 0.00 2019-10-23 19:28:48 2019-10-23 19:36:38 t 1 1 132070 522 0.00 2019-10-23 19:34:11 2019-10-23 19:38:58 t 1 1 132073 583 0.00 2019-10-23 19:28:47 2019-10-23 19:39:42 t 1 1 132074 445 0.00 2019-10-23 19:37:37 2019-10-23 19:39:51 t 1 1 132075 576 0.00 2019-10-23 19:16:55 2019-10-23 19:39:57 t 1 1 132077 501 0.00 2019-10-23 19:38:57 2019-10-23 19:41:51 t 1 1 132082 576 0.00 2019-10-23 19:39:57 2019-10-23 19:45:03 t 1 1 132085 430 0.00 2019-10-23 19:43:32 2019-10-23 19:47:00 t 1 1 132086 430 0.00 2019-10-23 19:47:07 2019-10-23 19:47:09 t 1 1 132089 591 0.00 2019-10-23 18:34:39 2019-10-23 19:47:38 t 1 1 132090 538 0.00 2019-10-23 19:27:07 2019-10-23 19:48:02 t 1 1 132092 501 0.00 2019-10-23 19:44:15 2019-10-23 19:48:27 t 1 1 132098 501 0.00 2019-10-23 19:48:27 2019-10-23 19:51:37 t 1 1 132102 430 0.00 2019-10-23 19:52:12 2019-10-23 19:52:25 t 1 1 132103 522 0.00 2019-10-23 19:52:32 2019-10-23 19:52:59 t 1 1 132105 578 0.00 2019-10-23 18:43:34 2019-10-23 19:53:34 t 1 1 132111 587 0.00 2019-10-23 19:38:16 2019-10-23 19:56:20 t 1 1 132116 430 0.00 2019-10-23 19:59:12 2019-10-23 19:59:20 t 1 1 132127 514 0.00 2019-10-23 19:33:54 2019-10-23 20:03:52 t 1 1 132129 520 0.00 2019-10-23 19:59:03 2019-10-23 20:06:04 t 1 1 132133 522 0.00 2019-10-23 20:07:34 2019-10-23 20:07:43 t 1 1 132134 522 0.00 2019-10-23 20:08:18 2019-10-23 20:08:23 t 1 1 132138 585 0.00 2019-10-23 20:11:08 2019-10-23 20:13:10 t 1 1 132142 501 0.00 2019-10-23 20:09:48 2019-10-23 20:14:33 t 1 1 132144 583 0.00 2019-10-23 20:06:35 2019-10-23 20:14:49 t 1 1 132146 585 0.00 2019-10-23 20:13:45 2019-10-23 20:15:42 t 1 1 132150 562 0.00 2019-10-23 20:18:50 2019-10-23 20:18:53 t 1 1 132151 562 0.00 2019-10-23 20:19:17 2019-10-23 20:19:44 t 1 1 132153 583 0.00 2019-10-23 20:14:49 2019-10-23 20:20:40 t 1 1 132159 501 0.00 2019-10-23 20:24:18 2019-10-23 20:26:55 t 1 1 132160 583 0.00 2019-10-23 20:20:40 2019-10-23 20:27:50 t 1 1 132161 361 0.00 2019-10-23 18:45:12 2019-10-23 20:28:28 t 1 2 132163 585 0.00 2019-10-23 20:16:14 2019-10-23 20:28:55 t 1 1 132165 562 0.00 2019-10-23 20:29:12 2019-10-23 20:29:39 t 1 1 132170 522 0.00 2019-10-23 20:28:45 2019-10-23 20:32:51 t 1 1 132171 501 0.00 2019-10-23 20:31:18 2019-10-23 20:33:50 t 1 1 132172 379 0.00 2019-10-23 20:32:48 2019-10-23 20:34:40 t 1 1 132175 501 0.00 2019-10-23 20:33:50 2019-10-23 20:37:35 t 1 1 132178 562 0.00 2019-10-23 20:39:57 2019-10-23 20:40:17 t 1 1 132185 220 0.00 2019-10-23 20:44:31 2019-10-23 20:45:34 t 1 2 132186 585 0.00 2019-10-23 20:42:19 2019-10-23 20:46:40 t 1 1 132187 501 0.00 2019-10-23 20:44:48 2019-10-23 20:47:26 t 1 1 132189 566 0.00 2019-10-23 20:45:23 2019-10-23 20:48:56 t 1 1 132193 522 0.00 2019-10-23 20:49:55 2019-10-23 20:50:07 t 1 1 132194 522 0.00 2019-10-23 20:50:31 2019-10-23 20:50:37 t 1 1 132198 416 0.00 2019-10-23 20:11:10 2019-10-23 20:51:26 t 1 1 132199 501 0.00 2019-10-23 20:47:26 2019-10-23 20:51:40 t 1 1 132201 522 0.00 2019-10-23 20:50:19 2019-10-23 20:52:03 t 1 1 132204 522 0.00 2019-10-23 20:53:02 2019-10-23 20:53:02 f 1 1 132207 522 0.00 2019-10-23 20:52:54 2019-10-23 20:54:03 t 1 1 132208 522 0.00 2019-10-23 20:52:41 2019-10-23 20:55:03 t 1 1 132210 416 0.00 2019-10-23 20:51:27 2019-10-23 20:56:17 t 1 1 132211 562 0.00 2019-10-23 20:57:00 2019-10-23 20:57:14 t 1 1 132212 220 0.00 2019-10-23 19:51:50 2019-10-23 21:00:50 t 1 1 132213 220 0.00 2019-10-23 21:00:50 2019-10-23 21:01:20 t 1 1 132218 220 0.00 2019-10-23 21:03:00 2019-10-23 21:03:33 t 1 1 132221 583 0.00 2019-10-23 20:55:47 2019-10-23 21:04:34 t 1 1 132222 220 0.00 2019-10-23 21:04:08 2019-10-23 21:04:40 t 1 1 132232 445 0.00 2019-10-23 21:07:43 2019-10-23 21:08:04 t 1 1 132242 361 0.00 2019-10-23 20:29:26 2019-10-23 21:12:29 t 1 2 132249 379 0.00 2019-10-23 21:03:42 2019-10-23 21:17:04 t 1 1 132253 562 0.00 2019-10-23 21:18:23 2019-10-23 21:18:44 t 1 1 132254 220 0.00 2019-10-23 21:18:24 2019-10-23 21:19:17 t 1 1 132258 220 0.00 2019-10-23 21:21:11 2019-10-23 21:21:45 t 1 1 132261 220 0.00 2019-10-23 21:23:02 2019-10-23 21:23:34 t 1 1 132265 220 0.00 2019-10-23 20:20:19 2019-10-23 21:25:24 t 1 2 132266 538 0.00 2019-10-23 20:47:06 2019-10-23 21:27:12 t 1 1 132270 585 0.00 2019-10-23 21:24:23 2019-10-23 21:29:10 t 1 1 132272 379 0.00 2019-10-23 21:17:04 2019-10-23 21:29:37 t 1 1 132276 220 0.00 2019-10-23 21:31:08 2019-10-23 21:31:43 t 1 1 132284 220 0.00 2019-10-23 21:33:58 2019-10-23 21:34:35 t 1 1 132287 451 0.00 2019-10-23 21:24:58 2019-10-23 21:35:18 t 1 1 132288 585 0.00 2019-10-23 21:34:04 2019-10-23 21:35:54 t 1 1 132289 430 0.00 2019-10-23 21:32:59 2019-10-23 21:37:12 t 1 1 132290 595 0.00 2019-10-23 21:22:21 2019-10-23 21:38:13 t 1 1 132291 481 0.00 2019-10-23 19:40:12 2019-10-23 21:38:58 t 1 1 132293 379 0.00 2019-10-23 21:29:37 2019-10-23 21:39:20 t 1 1 132295 562 0.00 2019-10-23 21:39:52 2019-10-23 21:40:13 t 1 1 132302 591 0.00 2019-10-23 21:43:01 2019-10-23 21:45:47 t 1 1 132304 558 0.00 2019-10-23 21:48:35 2019-10-23 21:48:49 t 1 1 132308 566 0.00 2019-10-23 21:34:03 2019-10-23 21:52:25 t 1 1 132309 562 0.00 2019-10-23 21:53:32 2019-10-23 21:53:49 t 1 1 132312 408 0.00 2019-10-23 21:56:40 2019-10-23 21:56:56 t 1 1 132314 595 0.00 2019-10-23 21:53:09 2019-10-23 21:58:36 t 1 1 132318 520 0.00 2019-10-23 21:50:27 2019-10-23 21:59:52 t 1 1 132319 595 0.00 2019-10-23 21:59:37 2019-10-23 22:00:00 t 1 1 132321 566 0.00 2019-10-23 21:52:25 2019-10-23 22:00:49 t 1 1 132322 538 0.00 2019-10-23 21:59:21 2019-10-23 22:01:20 t 1 1 132327 408 0.00 2019-10-23 22:09:21 2019-10-23 22:09:29 t 1 1 132337 566 0.00 2019-10-23 22:00:49 2019-10-23 22:17:14 t 1 1 132338 587 0.00 2019-10-23 21:52:16 2019-10-23 22:17:27 t 1 1 132340 587 0.00 2019-10-23 22:17:44 2019-10-23 22:18:10 t 1 1 132342 451 0.00 2019-10-23 21:35:18 2019-10-23 22:18:39 t 1 1 132130 583 0.00 2019-10-23 20:01:24 2019-10-23 20:06:35 t 1 1 132131 520 0.00 2019-10-23 20:06:04 2019-10-23 20:07:06 t 1 1 132136 562 0.00 2019-10-23 19:58:36 2019-10-23 20:11:23 t 1 1 132139 564 0.00 2019-10-23 18:28:50 2019-10-23 20:13:20 t 1 1 132140 522 0.00 2019-10-23 20:13:23 2019-10-23 20:13:32 t 1 1 132147 445 0.00 2019-10-23 20:03:14 2019-10-23 20:17:35 t 1 1 132148 501 0.00 2019-10-23 20:14:33 2019-10-23 20:18:34 t 1 1 132156 501 0.00 2019-10-23 20:21:27 2019-10-23 20:24:18 t 1 1 132162 522 0.00 2019-10-23 20:23:32 2019-10-23 20:28:45 t 1 1 132166 583 0.00 2019-10-23 20:27:50 2019-10-23 20:29:50 t 1 1 132169 379 0.00 2019-10-23 19:10:08 2019-10-23 20:32:48 t 1 1 132174 379 0.00 2019-10-23 20:35:48 2019-10-23 20:36:51 t 1 1 132177 522 0.00 2019-10-23 20:32:59 2019-10-23 20:38:19 t 1 1 132179 501 0.00 2019-10-23 20:37:35 2019-10-23 20:40:31 t 1 1 132180 516 0.00 2019-10-23 20:12:32 2019-10-23 20:41:30 t 1 1 132182 514 0.00 2019-10-23 20:31:59 2019-10-23 20:44:42 t 1 1 132184 566 0.00 2019-10-23 20:42:27 2019-10-23 20:45:23 t 1 1 132188 451 0.00 2019-10-23 20:38:24 2019-10-23 20:48:30 t 1 1 132191 562 0.00 2019-10-23 20:49:08 2019-10-23 20:49:28 t 1 1 132196 522 0.00 2019-10-23 20:50:51 2019-10-23 20:51:19 t 1 1 132203 522 0.00 2019-10-23 20:52:04 2019-10-23 20:52:36 t 1 1 132205 451 0.00 2019-10-23 20:48:30 2019-10-23 20:53:13 t 1 1 132206 562 0.00 2019-10-23 20:53:18 2019-10-23 20:53:26 t 1 1 132209 583 0.00 2019-10-23 20:43:00 2019-10-23 20:55:47 t 1 1 132215 488 0.00 2019-10-23 20:48:59 2019-10-23 21:02:25 t 1 1 60449 131 0.00 2018-02-24 00:06:46 2018-02-24 00:07:53 t 1 1 132216 220 0.00 2019-10-23 21:01:54 2019-10-23 21:02:26 t 1 1 132217 220 0.00 2019-10-23 21:02:25 2019-10-23 21:03:00 t 1 1 132219 379 0.00 2019-10-23 20:38:44 2019-10-23 21:03:42 t 1 1 132223 220 0.00 2019-10-23 21:04:40 2019-10-23 21:05:12 t 1 1 132224 220 0.00 2019-10-23 21:05:12 2019-10-23 21:05:46 t 1 1 132225 220 0.00 2019-10-23 21:05:46 2019-10-23 21:06:18 t 1 1 132229 583 0.00 2019-10-23 21:04:34 2019-10-23 21:07:40 t 1 1 132234 591 0.00 2019-10-23 20:52:18 2019-10-23 21:09:08 t 1 1 132235 220 0.00 2019-10-23 21:08:39 2019-10-23 21:09:16 t 1 1 132237 220 0.00 2019-10-23 21:09:16 2019-10-23 21:09:50 t 1 1 132243 412 0.00 2019-10-23 18:30:10 2019-10-23 21:12:30 t 1 1 132244 220 0.00 2019-10-23 21:12:09 2019-10-23 21:12:50 t 1 1 132245 220 0.00 2019-10-23 21:12:50 2019-10-23 21:14:34 t 1 1 132247 566 0.00 2019-10-23 20:48:56 2019-10-23 21:15:48 t 1 1 132248 583 0.00 2019-10-23 21:07:40 2019-10-23 21:16:47 t 1 1 132251 220 0.00 2019-10-23 21:15:11 2019-10-23 21:17:48 t 1 1 132256 591 0.00 2019-10-23 21:09:08 2019-10-23 21:21:03 t 1 1 132257 220 0.00 2019-10-23 21:20:00 2019-10-23 21:21:11 t 1 1 132259 585 0.00 2019-10-23 21:05:29 2019-10-23 21:21:49 t 1 1 132260 220 0.00 2019-10-23 21:21:45 2019-10-23 21:23:02 t 1 1 132263 558 0.00 2019-10-23 20:48:11 2019-10-23 21:24:38 t 1 1 132264 451 0.00 2019-10-23 20:53:13 2019-10-23 21:24:58 t 1 1 132268 430 0.00 2019-10-23 21:28:14 2019-10-23 21:28:16 t 1 1 132274 220 0.00 2019-10-23 21:30:03 2019-10-23 21:30:35 t 1 1 132275 220 0.00 2019-10-23 21:30:35 2019-10-23 21:31:09 t 1 1 132277 220 0.00 2019-10-23 21:21:52 2019-10-23 21:31:48 t 1 2 132280 220 0.00 2019-10-23 21:32:17 2019-10-23 21:32:50 t 1 1 132281 591 0.00 2019-10-23 21:21:03 2019-10-23 21:33:29 t 1 1 132282 220 0.00 2019-10-23 21:32:50 2019-10-23 21:33:59 t 1 1 132285 220 0.00 2019-10-23 21:34:34 2019-10-23 21:35:07 t 1 1 132292 595 0.00 2019-10-23 21:38:53 2019-10-23 21:39:00 t 1 1 132296 379 0.00 2019-10-23 21:39:19 2019-10-23 21:41:23 t 1 1 132298 327 0.00 2019-10-23 21:33:45 2019-10-23 21:42:50 t 1 1 132299 591 0.00 2019-10-23 21:33:29 2019-10-23 21:43:01 t 1 1 132300 562 0.00 2019-10-23 21:43:03 2019-10-23 21:43:12 t 1 1 132311 327 0.00 2019-10-23 21:52:15 2019-10-23 21:56:08 t 1 1 132323 562 0.00 2019-10-23 22:01:53 2019-10-23 22:02:06 t 1 1 132324 408 0.00 2019-10-23 22:01:56 2019-10-23 22:03:05 t 1 1 132325 595 0.00 2019-10-23 22:00:08 2019-10-23 22:07:17 t 1 1 132331 408 0.00 2019-10-23 22:12:16 2019-10-23 22:12:59 t 1 1 132332 514 0.00 2019-10-23 21:12:51 2019-10-23 22:13:58 t 1 1 132335 220 0.00 2019-10-23 21:37:27 2019-10-23 22:15:26 t 1 2 132339 562 0.00 2019-10-23 22:17:26 2019-10-23 22:17:37 t 1 1 132344 595 0.00 2019-10-23 22:17:57 2019-10-23 22:18:57 t 1 1 132345 551 0.00 2019-10-23 22:08:18 2019-10-23 22:19:49 t 1 1 132347 327 0.00 2019-10-23 22:18:06 2019-10-23 22:21:13 t 1 1 132350 485 0.00 2019-10-23 22:15:14 2019-10-23 22:21:39 t 1 1 132353 408 0.00 2019-10-23 22:23:21 2019-10-23 22:23:43 t 1 1 132358 408 0.00 2019-10-23 22:25:14 2019-10-23 22:25:41 t 1 1 132359 591 0.00 2019-10-23 22:04:14 2019-10-23 22:26:29 t 1 1 132366 501 0.00 2019-10-23 22:05:11 2019-10-23 22:29:53 t 1 1 132369 501 0.00 2019-10-23 22:31:55 2019-10-23 22:31:57 t 1 1 132373 501 0.00 2019-10-23 22:32:48 2019-10-23 22:33:31 t 1 1 132374 501 0.00 2019-10-23 22:33:41 2019-10-23 22:33:58 t 1 1 132379 562 0.00 2019-10-23 22:40:03 2019-10-23 22:40:27 t 1 1 132380 408 0.00 2019-10-23 22:40:38 2019-10-23 22:41:00 t 1 1 132382 449 0.00 2019-10-23 22:37:21 2019-10-23 22:41:42 t 1 1 132383 585 0.00 2019-10-23 22:40:02 2019-10-23 22:42:34 t 1 1 132385 587 0.00 2019-10-23 22:19:14 2019-10-23 22:44:39 t 1 1 132388 551 0.00 2019-10-23 22:29:20 2019-10-23 22:45:24 t 1 1 60630 131 0.00 2018-03-02 22:43:39 2018-03-02 22:45:00 t 1 1 132389 220 0.00 2019-10-23 22:45:14 2019-10-23 22:45:45 t 1 1 132391 220 0.00 2019-10-23 22:45:45 2019-10-23 22:46:19 t 1 1 132395 220 0.00 2019-10-23 22:46:52 2019-10-23 22:47:33 t 1 1 132396 220 0.00 2019-10-23 22:47:32 2019-10-23 22:48:07 t 1 1 132399 562 0.00 2019-10-23 22:47:10 2019-10-23 22:49:26 t 1 1 132401 220 0.00 2019-10-23 22:49:32 2019-10-23 22:50:08 t 1 1 132412 566 0.00 2019-10-23 22:45:51 2019-10-23 22:52:48 t 1 1 132413 220 0.00 2019-10-23 22:52:20 2019-10-23 22:52:51 t 1 1 132417 220 0.00 2019-10-23 22:53:27 2019-10-23 22:54:02 t 1 1 132419 595 0.00 2019-10-23 22:52:47 2019-10-23 22:54:27 t 1 1 132422 220 0.00 2019-10-23 22:54:36 2019-10-23 22:55:10 t 1 1 132424 220 0.00 2019-10-23 22:55:44 2019-10-23 22:56:18 t 1 1 132428 562 0.00 2019-10-23 22:56:59 2019-10-23 22:57:30 t 1 1 132430 585 0.00 2019-10-23 22:54:47 2019-10-23 22:58:06 t 1 1 132434 581 0.00 2019-10-23 22:57:53 2019-10-23 22:58:39 t 1 1 132438 220 0.00 2019-10-23 22:59:05 2019-10-23 22:59:40 t 1 1 132441 220 0.00 2019-10-23 23:00:11 2019-10-23 23:00:41 t 1 1 132444 220 0.00 2019-10-23 23:00:41 2019-10-23 23:01:16 t 1 1 132446 220 0.00 2019-10-23 23:01:16 2019-10-23 23:01:48 t 1 1 132447 327 0.00 2019-10-23 22:36:59 2019-10-23 23:03:05 t 1 1 132132 501 0.00 2019-10-23 20:01:26 2019-10-23 20:07:31 t 1 1 132135 501 0.00 2019-10-23 20:07:31 2019-10-23 20:09:48 t 1 1 132137 593 0.00 2019-10-23 19:57:49 2019-10-23 20:13:00 t 1 1 132141 562 0.00 2019-10-23 20:11:23 2019-10-23 20:13:43 t 1 1 132143 562 0.00 2019-10-23 20:14:13 2019-10-23 20:14:43 t 1 1 132145 522 0.00 2019-10-23 20:15:26 2019-10-23 20:15:36 t 1 1 132149 445 0.00 2019-10-23 20:17:49 2019-10-23 20:18:51 t 1 1 132152 522 0.00 2019-10-23 20:20:34 2019-10-23 20:20:37 t 1 1 132154 501 0.00 2019-10-23 20:18:34 2019-10-23 20:21:27 t 1 1 132155 522 0.00 2019-10-23 20:20:55 2019-10-23 20:22:01 t 1 1 132157 514 0.00 2019-10-23 20:03:52 2019-10-23 20:25:08 t 1 1 132158 430 0.00 2019-10-23 20:23:06 2019-10-23 20:26:45 t 1 1 132164 501 0.00 2019-10-23 20:26:55 2019-10-23 20:29:03 t 1 1 132167 501 0.00 2019-10-23 20:29:03 2019-10-23 20:31:18 t 1 1 132168 514 0.00 2019-10-23 20:25:08 2019-10-23 20:31:59 t 1 1 132173 379 0.00 2019-10-23 20:34:51 2019-10-23 20:35:48 t 1 1 132176 445 0.00 2019-10-23 20:18:51 2019-10-23 20:37:39 t 1 1 132181 576 0.00 2019-10-23 20:21:25 2019-10-23 20:42:45 t 1 1 132183 501 0.00 2019-10-23 20:40:31 2019-10-23 20:44:48 t 1 1 132190 522 0.00 2019-10-23 20:38:20 2019-10-23 20:48:56 t 1 1 132192 522 0.00 2019-10-23 20:49:21 2019-10-23 20:49:48 t 1 1 132195 514 0.00 2019-10-23 20:45:12 2019-10-23 20:50:57 t 1 1 132197 520 0.00 2019-10-23 20:46:09 2019-10-23 20:51:21 t 1 1 132200 522 0.00 2019-10-23 20:51:31 2019-10-23 20:51:59 t 1 1 132202 591 0.00 2019-10-23 20:07:35 2019-10-23 20:52:18 t 1 1 132214 220 0.00 2019-10-23 21:01:20 2019-10-23 21:01:54 t 1 1 132220 220 0.00 2019-10-23 21:03:33 2019-10-23 21:04:08 t 1 1 132226 564 0.00 2019-10-23 20:13:20 2019-10-23 21:06:34 t 1 1 132227 220 0.00 2019-10-23 21:06:18 2019-10-23 21:06:56 t 1 1 132228 220 0.00 2019-10-23 21:06:56 2019-10-23 21:07:29 t 1 1 132230 562 0.00 2019-10-23 21:07:45 2019-10-23 21:07:59 t 1 1 132231 220 0.00 2019-10-23 21:07:28 2019-10-23 21:08:04 t 1 1 132233 220 0.00 2019-10-23 21:08:03 2019-10-23 21:08:39 t 1 1 132236 488 0.00 2019-10-23 21:02:25 2019-10-23 21:09:16 t 1 1 132238 220 0.00 2019-10-23 21:09:50 2019-10-23 21:10:23 t 1 1 132239 220 0.00 2019-10-23 21:10:23 2019-10-23 21:10:58 t 1 1 132240 220 0.00 2019-10-23 21:10:58 2019-10-23 21:11:31 t 1 1 132241 220 0.00 2019-10-23 21:11:31 2019-10-23 21:12:10 t 1 1 132246 220 0.00 2019-10-23 21:14:33 2019-10-23 21:15:12 t 1 1 132250 520 0.00 2019-10-23 21:14:10 2019-10-23 21:17:21 t 1 1 132252 220 0.00 2019-10-23 21:17:48 2019-10-23 21:18:24 t 1 1 132255 220 0.00 2019-10-23 21:19:17 2019-10-23 21:20:00 t 1 1 132262 327 0.00 2019-10-23 21:19:43 2019-10-23 21:24:20 t 1 1 132267 430 0.00 2019-10-23 21:15:45 2019-10-23 21:28:07 t 1 1 132269 538 0.00 2019-10-23 21:28:21 2019-10-23 21:28:59 t 1 1 132271 562 0.00 2019-10-23 21:29:13 2019-10-23 21:29:33 t 1 1 132273 220 0.00 2019-10-23 21:23:33 2019-10-23 21:30:03 t 1 1 132278 430 0.00 2019-10-23 21:28:33 2019-10-23 21:31:52 t 1 1 132279 220 0.00 2019-10-23 21:31:43 2019-10-23 21:32:17 t 1 1 132283 566 0.00 2019-10-23 21:15:48 2019-10-23 21:34:03 t 1 1 132286 220 0.00 2019-10-23 21:35:07 2019-10-23 21:35:17 t 1 1 132294 595 0.00 2019-10-23 21:39:22 2019-10-23 21:39:39 t 1 1 132297 574 0.00 2019-10-23 17:37:07 2019-10-23 21:41:30 t 1 1 132301 512 0.00 2019-10-23 21:11:04 2019-10-23 21:45:35 t 1 1 132303 408 0.00 2019-10-23 21:33:40 2019-10-23 21:46:57 t 1 1 132305 595 0.00 2019-10-23 21:41:03 2019-10-23 21:50:15 t 1 1 132306 595 0.00 2019-10-23 21:50:28 2019-10-23 21:50:29 t 1 1 132307 325 0.00 2019-10-23 20:56:00 2019-10-23 21:51:05 t 1 2 132310 591 0.00 2019-10-23 21:50:44 2019-10-23 21:55:06 t 1 1 132313 562 0.00 2019-10-23 21:58:15 2019-10-23 21:58:19 t 1 1 132315 595 0.00 2019-10-23 21:58:48 2019-10-23 21:58:50 t 1 1 132316 538 0.00 2019-10-23 21:57:53 2019-10-23 21:59:10 t 1 1 132317 595 0.00 2019-10-23 21:59:01 2019-10-23 21:59:37 t 1 1 132320 585 0.00 2019-10-23 21:53:12 2019-10-23 22:00:17 t 1 1 132326 327 0.00 2019-10-23 22:05:40 2019-10-23 22:08:42 t 1 1 132328 408 0.00 2019-10-23 22:10:51 2019-10-23 22:11:02 t 1 1 132329 408 0.00 2019-10-23 22:12:04 2019-10-23 22:12:06 t 1 1 132330 562 0.00 2019-10-23 22:12:37 2019-10-23 22:12:49 t 1 1 132333 595 0.00 2019-10-23 22:07:27 2019-10-23 22:14:11 t 1 1 132334 485 0.00 2019-10-23 22:02:59 2019-10-23 22:15:14 t 1 1 132336 408 0.00 2019-10-23 22:16:41 2019-10-23 22:17:12 t 1 1 132341 587 0.00 2019-10-23 22:18:30 2019-10-23 22:18:32 t 1 1 132343 587 0.00 2019-10-23 22:18:41 2019-10-23 22:18:49 t 1 1 132346 595 0.00 2019-10-23 22:19:09 2019-10-23 22:20:09 t 1 1 132348 595 0.00 2019-10-23 22:20:17 2019-10-23 22:21:19 t 1 1 132354 595 0.00 2019-10-23 22:23:23 2019-10-23 22:23:44 t 1 1 132356 481 0.00 2019-10-23 21:42:52 2019-10-23 22:25:17 t 1 1 132360 408 0.00 2019-10-23 22:27:20 2019-10-23 22:27:32 t 1 1 132362 408 0.00 2019-10-23 22:27:50 2019-10-23 22:27:56 t 1 1 132363 566 0.00 2019-10-23 22:17:14 2019-10-23 22:28:27 t 1 1 132368 595 0.00 2019-10-23 22:28:10 2019-10-23 22:31:52 t 1 1 132370 508 0.00 2019-10-23 22:26:21 2019-10-23 22:32:29 t 1 2 132376 485 0.00 2019-10-23 22:35:10 2019-10-23 22:36:39 t 1 1 132378 566 0.00 2019-10-23 22:28:27 2019-10-23 22:39:47 t 1 1 132390 591 0.00 2019-10-23 22:44:43 2019-10-23 22:46:15 t 1 1 132392 562 0.00 2019-10-23 22:42:37 2019-10-23 22:46:37 t 1 1 132394 220 0.00 2019-10-23 22:46:19 2019-10-23 22:46:53 t 1 1 132397 449 0.00 2019-10-23 22:41:42 2019-10-23 22:48:38 t 1 1 132402 595 0.00 2019-10-23 22:46:12 2019-10-23 22:50:22 t 1 1 132403 220 0.00 2019-10-23 22:50:07 2019-10-23 22:50:38 t 1 1 132406 220 0.00 2019-10-23 22:50:38 2019-10-23 22:51:13 t 1 1 132409 581 0.00 2019-10-23 22:47:26 2019-10-23 22:52:11 t 1 1 132411 220 0.00 2019-10-23 22:51:48 2019-10-23 22:52:20 t 1 1 132415 220 0.00 2019-10-23 22:52:51 2019-10-23 22:53:27 t 1 1 132418 449 0.00 2019-10-23 22:48:38 2019-10-23 22:54:23 t 1 1 132421 595 0.00 2019-10-23 22:54:41 2019-10-23 22:55:00 t 1 1 132426 220 0.00 2019-10-23 22:56:18 2019-10-23 22:56:53 t 1 1 132431 311 0.00 2019-10-23 22:43:50 2019-10-23 22:58:13 t 1 2 132435 220 0.00 2019-10-23 22:58:34 2019-10-23 22:59:05 t 1 1 132437 581 0.00 2019-10-23 22:58:55 2019-10-23 22:59:29 t 1 1 132439 449 0.00 2019-10-23 22:54:23 2019-10-23 22:59:45 t 1 1 132440 220 0.00 2019-10-23 22:59:39 2019-10-23 23:00:11 t 1 1 132442 566 0.00 2019-10-23 22:52:48 2019-10-23 23:00:44 t 1 1 132443 562 0.00 2019-10-23 23:00:07 2019-10-23 23:01:09 t 1 1 132445 595 0.00 2019-10-23 22:56:11 2019-10-23 23:01:37 t 1 1 132450 587 0.00 2019-10-23 22:59:27 2019-10-23 23:04:40 t 1 1 132453 562 0.00 2019-10-23 23:06:23 2019-10-23 23:06:55 t 1 1 132349 512 0.00 2019-10-23 22:20:18 2019-10-23 22:21:39 t 1 1 132351 595 0.00 2019-10-23 22:23:06 2019-10-23 22:23:13 t 1 1 132352 585 0.00 2019-10-23 22:20:57 2019-10-23 22:23:26 t 1 1 132355 512 0.00 2019-10-23 22:23:46 2019-10-23 22:23:57 t 1 1 132357 595 0.00 2019-10-23 22:23:56 2019-10-23 22:25:36 t 1 1 132361 327 0.00 2019-10-23 22:25:07 2019-10-23 22:27:32 t 1 1 132364 551 0.00 2019-10-23 22:19:49 2019-10-23 22:29:20 t 1 1 132365 562 0.00 2019-10-23 22:29:36 2019-10-23 22:29:46 t 1 1 132367 501 0.00 2019-10-23 22:30:55 2019-10-23 22:31:03 t 1 1 132371 591 0.00 2019-10-23 22:31:10 2019-10-23 22:32:33 t 1 1 132372 595 0.00 2019-10-23 22:32:08 2019-10-23 22:33:24 t 1 1 132375 558 0.00 2019-10-23 21:49:11 2019-10-23 22:34:37 t 1 1 132377 408 0.00 2019-10-23 22:37:45 2019-10-23 22:38:08 t 1 1 132381 595 0.00 2019-10-23 22:37:35 2019-10-23 22:41:24 t 1 1 132384 595 0.00 2019-10-23 22:43:30 2019-10-23 22:44:33 t 1 1 132386 375 0.00 2019-10-23 22:28:49 2019-10-23 22:45:08 t 1 1 132387 220 0.00 2019-10-23 21:35:39 2019-10-23 22:45:15 t 1 1 132393 545 0.00 2019-10-23 22:21:58 2019-10-23 22:46:48 t 1 1 132398 220 0.00 2019-10-23 22:48:07 2019-10-23 22:49:02 t 1 1 132400 220 0.00 2019-10-23 22:49:02 2019-10-23 22:49:33 t 1 1 132404 587 0.00 2019-10-23 22:45:27 2019-10-23 22:50:45 t 1 1 132405 562 0.00 2019-10-23 22:50:28 2019-10-23 22:51:01 t 1 1 132407 412 0.00 2019-10-23 21:12:30 2019-10-23 22:51:17 t 1 1 132408 220 0.00 2019-10-23 22:51:13 2019-10-23 22:51:49 t 1 1 132410 485 0.00 2019-10-23 22:44:24 2019-10-23 22:52:14 t 1 1 132414 576 0.00 2019-10-23 22:44:48 2019-10-23 22:53:23 t 1 1 132416 451 0.00 2019-10-23 22:27:00 2019-10-23 22:53:29 t 1 1 132420 220 0.00 2019-10-23 22:54:02 2019-10-23 22:54:36 t 1 1 132423 220 0.00 2019-10-23 22:55:09 2019-10-23 22:55:44 t 1 1 132425 581 0.00 2019-10-23 22:56:29 2019-10-23 22:56:31 t 1 1 132427 220 0.00 2019-10-23 22:56:53 2019-10-23 22:57:27 t 1 1 132429 220 0.00 2019-10-23 22:57:27 2019-10-23 22:58:01 t 1 1 132432 501 0.00 2019-10-23 22:34:06 2019-10-23 22:58:29 t 1 1 132433 220 0.00 2019-10-23 22:58:00 2019-10-23 22:58:34 t 1 1 132436 587 0.00 2019-10-23 22:50:56 2019-10-23 22:59:27 t 1 1 132455 591 0.00 2019-10-23 23:06:23 2019-10-23 23:07:45 t 1 1 132456 516 0.00 2019-10-23 22:57:35 2019-10-23 23:07:59 t 1 1 132458 581 0.00 2019-10-23 23:08:35 2019-10-23 23:08:41 t 1 1 132461 581 0.00 2019-10-23 23:09:30 2019-10-23 23:10:15 t 1 1 132465 587 0.00 2019-10-23 23:04:40 2019-10-23 23:11:49 t 1 1 132467 566 0.00 2019-10-23 23:07:38 2019-10-23 23:13:35 t 1 1 132471 408 0.00 2019-10-23 22:41:18 2019-10-23 23:15:13 t 1 1 132474 449 0.00 2019-10-23 23:08:51 2019-10-23 23:16:32 t 1 1 132475 220 0.00 2019-10-23 23:16:03 2019-10-23 23:16:38 t 1 1 132478 451 0.00 2019-10-23 22:53:29 2019-10-23 23:17:46 t 1 1 132479 220 0.00 2019-10-23 23:17:11 2019-10-23 23:17:47 t 1 1 132481 587 0.00 2019-10-23 23:11:49 2019-10-23 23:18:13 t 1 1 132486 220 0.00 2019-10-23 23:18:51 2019-10-23 23:19:24 t 1 1 132488 595 0.00 2019-10-23 23:04:59 2019-10-23 23:19:48 t 1 1 132490 220 0.00 2019-10-23 23:19:56 2019-10-23 23:20:30 t 1 1 132491 220 0.00 2019-10-23 23:20:29 2019-10-23 23:20:58 t 1 1 132494 581 0.00 2019-10-23 23:19:34 2019-10-23 23:22:15 t 1 1 132495 220 0.00 2019-10-23 23:22:04 2019-10-23 23:22:38 t 1 1 132496 581 0.00 2019-10-23 23:22:58 2019-10-23 23:23:02 t 1 1 132497 220 0.00 2019-10-23 23:22:38 2019-10-23 23:23:13 t 1 1 132499 220 0.00 2019-10-23 23:23:13 2019-10-23 23:23:46 t 1 1 132500 566 0.00 2019-10-23 23:19:06 2019-10-23 23:24:03 t 1 1 132504 220 0.00 2019-10-23 23:24:18 2019-10-23 23:24:53 t 1 1 132507 581 0.00 2019-10-23 23:24:06 2019-10-23 23:26:04 t 1 1 132509 220 0.00 2019-10-23 23:25:58 2019-10-23 23:26:32 t 1 1 132512 220 0.00 2019-10-23 23:27:06 2019-10-23 23:27:39 t 1 1 132513 220 0.00 2019-10-23 23:27:39 2019-10-23 23:28:15 t 1 1 132514 220 0.00 2019-10-23 23:28:15 2019-10-23 23:29:00 t 1 1 132516 581 0.00 2019-10-23 23:29:09 2019-10-23 23:29:12 t 1 1 132518 449 0.00 2019-10-23 23:24:21 2019-10-23 23:29:57 t 1 1 132520 566 0.00 2019-10-23 23:24:03 2019-10-23 23:30:44 t 1 1 132521 220 0.00 2019-10-23 23:30:14 2019-10-23 23:30:48 t 1 1 132522 327 0.00 2019-10-23 23:25:26 2019-10-23 23:32:03 t 1 1 132523 587 0.00 2019-10-23 23:24:03 2019-10-23 23:33:52 t 1 1 132527 566 0.00 2019-10-23 23:30:44 2019-10-23 23:38:05 t 1 1 132528 449 0.00 2019-10-23 23:34:41 2019-10-23 23:39:09 t 1 1 132532 566 0.00 2019-10-23 23:42:45 2019-10-23 23:47:19 t 1 1 132537 566 0.00 2019-10-23 23:47:19 2019-10-23 23:52:55 t 1 1 132541 566 0.00 2019-10-23 23:52:55 2019-10-23 23:58:47 t 1 1 132542 483 0.00 2019-10-23 21:40:25 2019-10-23 23:59:06 t 1 1 132548 587 0.00 2019-10-24 00:03:05 2019-10-24 00:13:30 t 1 1 132551 574 0.00 2019-10-23 21:54:57 2019-10-24 00:18:09 t 1 1 132556 562 0.00 2019-10-24 00:23:30 2019-10-24 00:23:56 t 1 1 132561 514 0.00 2019-10-23 23:27:36 2019-10-24 00:39:07 t 1 1 132565 562 0.00 2019-10-24 00:52:42 2019-10-24 00:53:05 t 1 1 132570 372 0.00 2019-10-24 01:09:36 2019-10-24 01:10:42 t 1 2 132571 372 0.00 2019-10-24 01:12:39 2019-10-24 01:13:42 t 1 2 132572 562 0.00 2019-10-24 01:14:17 2019-10-24 01:14:37 t 1 1 132574 587 0.00 2019-10-24 00:43:12 2019-10-24 01:17:34 t 1 1 132577 456 0.00 2019-10-24 01:13:39 2019-10-24 01:29:27 t 1 1 132579 562 0.00 2019-10-24 01:35:45 2019-10-24 01:36:05 t 1 1 132581 501 0.00 2019-10-24 01:30:55 2019-10-24 01:37:28 t 1 1 132582 536 0.00 2019-10-24 01:30:27 2019-10-24 01:38:12 t 1 1 132583 587 0.00 2019-10-24 01:19:14 2019-10-24 01:38:40 t 1 1 132584 501 0.00 2019-10-24 01:37:28 2019-10-24 01:42:03 t 1 1 132585 558 0.00 2019-10-24 01:38:31 2019-10-24 01:45:07 t 1 1 132587 536 0.00 2019-10-24 01:38:12 2019-10-24 01:45:43 t 1 1 132591 412 0.00 2019-10-24 00:49:34 2019-10-24 01:49:18 t 1 1 132593 536 0.00 2019-10-24 01:50:58 2019-10-24 01:52:36 t 1 1 132595 536 0.00 2019-10-24 01:52:36 2019-10-24 01:54:14 t 1 1 132596 372 0.00 2019-10-24 01:54:55 2019-10-24 01:55:59 t 1 2 132601 558 0.00 2019-10-24 01:57:47 2019-10-24 01:59:00 t 1 1 132604 536 0.00 2019-10-24 01:59:15 2019-10-24 02:01:50 t 1 1 132606 501 0.00 2019-10-24 02:01:31 2019-10-24 02:04:09 t 1 1 132612 562 0.00 2019-10-24 02:08:08 2019-10-24 02:08:22 t 1 1 132615 536 0.00 2019-10-24 02:09:49 2019-10-24 02:11:26 t 1 1 132616 290 0.00 2019-10-24 02:11:27 2019-10-24 02:11:27 f 1 2 132621 558 0.00 2019-10-24 02:12:11 2019-10-24 02:15:56 t 1 1 132623 536 0.00 2019-10-24 02:13:10 2019-10-24 02:17:52 t 1 1 132626 558 0.00 2019-10-24 02:17:02 2019-10-24 02:20:29 t 1 1 132632 536 0.00 2019-10-24 02:34:28 2019-10-24 02:34:42 t 1 1 132634 536 0.00 2019-10-24 02:35:07 2019-10-24 02:35:18 t 1 1 132448 595 0.00 2019-10-23 23:03:56 2019-10-23 23:04:02 t 1 1 132449 595 0.00 2019-10-23 23:04:16 2019-10-23 23:04:35 t 1 1 132451 449 0.00 2019-10-23 22:59:45 2019-10-23 23:05:24 t 1 1 132452 581 0.00 2019-10-23 23:06:40 2019-10-23 23:06:53 t 1 1 132454 566 0.00 2019-10-23 23:00:44 2019-10-23 23:07:38 t 1 1 132457 545 0.00 2019-10-23 23:04:03 2019-10-23 23:08:23 t 1 1 132462 578 0.00 2019-10-23 19:53:32 2019-10-23 23:10:21 t 1 1 132463 581 0.00 2019-10-23 23:10:38 2019-10-23 23:10:44 t 1 1 132469 581 0.00 2019-10-23 23:12:12 2019-10-23 23:14:04 t 1 1 132476 562 0.00 2019-10-23 23:12:49 2019-10-23 23:16:41 t 1 1 132484 501 0.00 2019-10-23 23:18:21 2019-10-23 23:19:01 t 1 1 132498 538 0.00 2019-10-23 22:09:03 2019-10-23 23:23:45 t 1 1 132501 220 0.00 2019-10-23 23:23:46 2019-10-23 23:24:19 t 1 1 132503 327 0.00 2019-10-23 23:23:04 2019-10-23 23:24:30 t 1 1 132508 361 0.00 2019-10-23 22:42:57 2019-10-23 23:26:21 t 1 2 132511 514 0.00 2019-10-23 22:13:57 2019-10-23 23:27:37 t 1 1 132515 581 0.00 2019-10-23 23:27:03 2019-10-23 23:29:06 t 1 1 132525 327 0.00 2019-10-23 23:33:15 2019-10-23 23:34:39 t 1 1 132530 566 0.00 2019-10-23 23:38:05 2019-10-23 23:42:45 t 1 1 132533 545 0.00 2019-10-23 23:44:35 2019-10-23 23:49:19 t 1 1 132535 451 0.00 2019-10-23 23:45:36 2019-10-23 23:52:13 t 1 1 132539 220 0.00 2019-10-23 23:30:48 2019-10-23 23:57:05 t 1 1 132543 587 0.00 2019-10-23 23:57:28 2019-10-24 00:03:06 t 1 1 132545 566 0.00 2019-10-23 23:58:47 2019-10-24 00:04:15 t 1 1 132546 422 0.00 2019-10-23 23:27:04 2019-10-24 00:10:44 t 1 1 132552 558 0.00 2019-10-24 00:16:46 2019-10-24 00:18:38 t 1 1 132553 422 0.00 2019-10-24 00:10:44 2019-10-24 00:20:15 t 1 1 132554 558 0.00 2019-10-24 00:19:29 2019-10-24 00:21:14 t 1 1 132557 556 0.00 2019-10-23 22:32:03 2019-10-24 00:25:53 t 1 1 132558 422 0.00 2019-10-24 00:20:15 2019-10-24 00:26:35 t 1 1 132559 562 0.00 2019-10-24 00:31:06 2019-10-24 00:31:33 t 1 1 132560 581 0.00 2019-10-24 00:11:45 2019-10-24 00:33:47 t 1 1 132562 587 0.00 2019-10-24 00:14:16 2019-10-24 00:42:05 t 1 1 132564 412 0.00 2019-10-23 22:51:17 2019-10-24 00:49:34 t 1 1 132566 538 0.00 2019-10-24 00:42:33 2019-10-24 00:58:24 t 1 1 132573 372 0.00 2019-10-24 01:06:49 2019-10-24 01:16:54 t 1 2 132575 562 0.00 2019-10-24 01:24:58 2019-10-24 01:25:23 t 1 1 132576 514 0.00 2019-10-24 00:39:07 2019-10-24 01:26:42 t 1 1 132586 501 0.00 2019-10-24 01:42:03 2019-10-24 01:45:33 t 1 1 132588 562 0.00 2019-10-24 01:46:29 2019-10-24 01:46:49 t 1 1 132589 501 0.00 2019-10-24 01:45:33 2019-10-24 01:48:06 t 1 1 132590 536 0.00 2019-10-24 01:45:43 2019-10-24 01:49:16 t 1 1 132597 536 0.00 2019-10-24 01:54:14 2019-10-24 01:56:53 t 1 1 132598 501 0.00 2019-10-24 01:48:06 2019-10-24 01:57:01 t 1 1 132599 562 0.00 2019-10-24 01:57:16 2019-10-24 01:57:36 t 1 1 132602 536 0.00 2019-10-24 01:56:53 2019-10-24 01:59:15 t 1 1 132603 501 0.00 2019-10-24 01:57:01 2019-10-24 02:01:31 t 1 1 132605 558 0.00 2019-10-24 02:00:25 2019-10-24 02:03:14 t 1 1 132609 558 0.00 2019-10-24 02:05:25 2019-10-24 02:06:55 t 1 1 132610 501 0.00 2019-10-24 02:04:09 2019-10-24 02:08:02 t 1 1 132611 536 0.00 2019-10-24 02:06:34 2019-10-24 02:08:15 t 1 1 132628 536 0.00 2019-10-24 02:21:41 2019-10-24 02:26:51 t 1 1 132629 501 0.00 2019-10-24 02:14:52 2019-10-24 02:27:50 t 1 1 132631 536 0.00 2019-10-24 02:26:51 2019-10-24 02:34:28 t 1 1 132636 536 0.00 2019-10-24 02:39:20 2019-10-24 02:39:58 t 1 1 132638 536 0.00 2019-10-24 02:41:59 2019-10-24 02:42:31 t 1 1 132640 536 0.00 2019-10-24 02:49:24 2019-10-24 02:49:26 t 1 1 132648 562 0.00 2019-10-24 03:01:54 2019-10-24 03:02:12 t 1 1 132649 562 0.00 2019-10-24 03:12:34 2019-10-24 03:13:05 t 1 1 132652 290 0.00 2019-10-24 03:15:25 2019-10-24 03:15:25 f 1 2 132653 290 0.00 2019-10-24 03:16:25 2019-10-24 03:16:25 f 1 2 132657 514 0.00 2019-10-24 03:19:13 2019-10-24 03:32:09 t 1 1 132658 536 0.00 2019-10-24 03:27:27 2019-10-24 03:33:15 t 1 1 132661 536 0.00 2019-10-24 03:33:15 2019-10-24 03:40:49 t 1 1 132662 562 0.00 2019-10-24 03:42:58 2019-10-24 03:43:18 t 1 1 132666 562 0.00 2019-10-24 04:04:26 2019-10-24 04:04:50 t 1 1 132668 518 0.00 2019-10-24 04:11:39 2019-10-24 04:11:53 t 1 2 132675 562 0.00 2019-10-24 04:36:47 2019-10-24 04:37:12 t 1 1 132676 558 0.00 2019-10-24 02:30:06 2019-10-24 04:39:57 t 1 1 132680 430 0.00 2019-10-24 04:51:28 2019-10-24 04:55:25 t 1 1 132687 551 0.00 2019-10-24 05:05:19 2019-10-24 05:08:04 t 1 1 132688 562 0.00 2019-10-24 05:09:11 2019-10-24 05:09:17 t 1 1 132692 395 0.00 2019-10-24 05:38:33 2019-10-24 05:39:37 t 1 2 132695 562 0.00 2019-10-24 05:41:25 2019-10-24 05:41:35 t 1 1 132697 395 0.00 2019-10-24 05:43:56 2019-10-24 05:45:01 t 1 2 132699 430 0.00 2019-10-24 05:38:47 2019-10-24 05:47:47 t 1 1 132702 520 0.00 2019-10-24 05:51:11 2019-10-24 05:52:19 t 1 1 132703 562 0.00 2019-10-24 06:02:46 2019-10-24 06:03:04 t 1 1 132708 430 0.00 2019-10-24 06:05:27 2019-10-24 06:08:01 t 1 1 132716 395 0.00 2019-10-24 06:29:28 2019-10-24 06:30:31 t 1 2 132718 558 0.00 2019-10-24 06:31:43 2019-10-24 06:33:43 t 1 1 132719 562 0.00 2019-10-24 06:35:09 2019-10-24 06:35:23 t 1 1 132731 562 0.00 2019-10-24 07:15:29 2019-10-24 07:16:00 t 1 1 132733 488 0.00 2019-10-24 07:08:00 2019-10-24 07:17:44 t 1 1 132734 483 0.00 2019-10-24 07:15:09 2019-10-24 07:18:01 t 1 1 132736 481 0.00 2019-10-24 07:15:59 2019-10-24 07:22:45 t 1 1 132737 483 0.00 2019-10-24 07:18:01 2019-10-24 07:23:17 t 1 1 132738 562 0.00 2019-10-24 07:26:22 2019-10-24 07:26:47 t 1 1 132744 595 0.00 2019-10-24 07:01:44 2019-10-24 07:32:37 t 1 1 132747 220 0.00 2019-10-24 07:34:52 2019-10-24 07:45:23 t 1 1 132749 585 0.00 2019-10-24 07:37:03 2019-10-24 07:48:42 t 1 1 132750 562 0.00 2019-10-24 07:48:44 2019-10-24 07:49:56 t 1 1 132755 562 0.00 2019-10-24 07:54:25 2019-10-24 07:55:55 t 1 1 132757 544 0.00 2019-10-24 07:57:09 2019-10-24 08:02:19 t 1 2 132766 562 0.00 2019-10-24 08:26:57 2019-10-24 08:27:53 t 1 1 132769 220 0.00 2019-10-24 08:18:23 2019-10-24 08:31:38 t 1 1 132770 562 0.00 2019-10-24 08:31:44 2019-10-24 08:31:53 t 1 1 132772 516 0.00 2019-10-24 08:31:36 2019-10-24 08:34:19 t 1 1 132773 591 0.00 2019-10-24 08:30:41 2019-10-24 08:36:04 t 1 1 132774 501 0.00 2019-10-24 08:37:57 2019-10-24 08:39:15 t 1 1 132775 562 0.00 2019-10-24 08:33:24 2019-10-24 08:41:16 t 1 1 132783 595 0.00 2019-10-24 08:47:54 2019-10-24 08:48:33 t 1 1 132788 591 0.00 2019-10-24 08:36:50 2019-10-24 08:50:09 t 1 1 132790 501 0.00 2019-10-24 08:51:39 2019-10-24 08:51:40 t 1 1 132794 501 0.00 2019-10-24 08:52:09 2019-10-24 08:52:10 t 1 1 132796 522 0.00 2019-10-24 08:46:19 2019-10-24 08:52:25 t 1 1 132802 501 0.00 2019-10-24 08:55:42 2019-10-24 08:55:51 t 1 1 132459 449 0.00 2019-10-23 23:05:24 2019-10-23 23:08:51 t 1 1 132460 581 0.00 2019-10-23 23:08:49 2019-10-23 23:09:22 t 1 1 132464 562 0.00 2019-10-23 23:07:51 2019-10-23 23:11:23 t 1 1 132466 562 0.00 2019-10-23 23:12:03 2019-10-23 23:12:12 t 1 1 132468 327 0.00 2019-10-23 23:12:30 2019-10-23 23:13:36 t 1 1 132470 585 0.00 2019-10-23 23:11:07 2019-10-23 23:14:17 t 1 1 132472 220 0.00 2019-10-23 23:01:47 2019-10-23 23:15:28 t 1 1 132473 220 0.00 2019-10-23 23:15:28 2019-10-23 23:16:03 t 1 1 132477 220 0.00 2019-10-23 23:16:38 2019-10-23 23:17:12 t 1 1 132480 501 0.00 2019-10-23 22:58:29 2019-10-23 23:17:59 t 1 1 132482 220 0.00 2019-10-23 23:17:47 2019-10-23 23:18:18 t 1 1 132483 220 0.00 2019-10-23 23:18:18 2019-10-23 23:18:52 t 1 1 132485 566 0.00 2019-10-23 23:13:35 2019-10-23 23:19:06 t 1 1 132487 591 0.00 2019-10-23 23:11:16 2019-10-23 23:19:35 t 1 1 132489 220 0.00 2019-10-23 23:19:23 2019-10-23 23:19:56 t 1 1 132492 220 0.00 2019-10-23 23:20:58 2019-10-23 23:21:32 t 1 1 132493 220 0.00 2019-10-23 23:21:31 2019-10-23 23:22:04 t 1 1 132502 449 0.00 2019-10-23 23:16:32 2019-10-23 23:24:21 t 1 1 132505 220 0.00 2019-10-23 23:24:52 2019-10-23 23:25:27 t 1 1 132506 220 0.00 2019-10-23 23:25:27 2019-10-23 23:25:58 t 1 1 132510 220 0.00 2019-10-23 23:26:32 2019-10-23 23:27:06 t 1 1 132517 220 0.00 2019-10-23 23:28:59 2019-10-23 23:29:35 t 1 1 132519 220 0.00 2019-10-23 23:29:35 2019-10-23 23:30:14 t 1 1 132524 585 0.00 2019-10-23 23:14:45 2019-10-23 23:34:16 t 1 1 132526 449 0.00 2019-10-23 23:29:57 2019-10-23 23:34:41 t 1 1 132529 545 0.00 2019-10-23 23:39:31 2019-10-23 23:41:19 t 1 1 132531 451 0.00 2019-10-23 23:17:46 2019-10-23 23:45:36 t 1 1 132534 562 0.00 2019-10-23 23:17:01 2019-10-23 23:51:25 t 1 1 132536 372 0.00 2019-10-23 23:22:19 2019-10-23 23:52:25 t 1 2 132538 562 0.00 2019-10-23 23:53:59 2019-10-23 23:54:18 t 1 1 132540 587 0.00 2019-10-23 23:34:32 2019-10-23 23:57:16 t 1 1 132544 562 0.00 2019-10-24 00:01:45 2019-10-24 00:03:28 t 1 1 132547 558 0.00 2019-10-23 23:57:57 2019-10-24 00:13:24 t 1 1 132549 562 0.00 2019-10-24 00:13:05 2019-10-24 00:15:04 t 1 1 132550 558 0.00 2019-10-24 00:15:42 2019-10-24 00:16:41 t 1 1 132555 545 0.00 2019-10-24 00:20:09 2019-10-24 00:21:40 t 1 1 132563 562 0.00 2019-10-24 00:41:58 2019-10-24 00:42:18 t 1 1 132567 526 0.00 2019-10-24 01:02:11 2019-10-24 01:02:42 t 1 1 132568 562 0.00 2019-10-24 01:03:23 2019-10-24 01:03:54 t 1 1 132569 564 0.00 2019-10-23 21:06:34 2019-10-24 01:06:54 t 1 1 132578 501 0.00 2019-10-23 23:19:16 2019-10-24 01:30:55 t 1 1 132580 456 0.00 2019-10-24 01:29:27 2019-10-24 01:37:07 t 1 1 132592 536 0.00 2019-10-24 01:49:16 2019-10-24 01:50:58 t 1 1 132594 372 0.00 2019-10-24 01:53:10 2019-10-24 01:54:14 t 1 2 132600 558 0.00 2019-10-24 01:52:19 2019-10-24 01:57:46 t 1 1 132607 536 0.00 2019-10-24 02:01:50 2019-10-24 02:04:55 t 1 1 132608 536 0.00 2019-10-24 02:04:55 2019-10-24 02:06:34 t 1 1 132613 536 0.00 2019-10-24 02:08:15 2019-10-24 02:09:49 t 1 1 132614 290 0.00 2019-10-24 02:11:17 2019-10-24 02:11:17 f 1 2 132617 290 0.00 2019-10-24 02:11:46 2019-10-24 02:11:46 f 1 2 132618 501 0.00 2019-10-24 02:08:02 2019-10-24 02:12:35 t 1 1 132619 536 0.00 2019-10-24 02:11:26 2019-10-24 02:13:10 t 1 1 132620 501 0.00 2019-10-24 02:12:35 2019-10-24 02:14:52 t 1 1 132622 558 0.00 2019-10-24 02:16:14 2019-10-24 02:17:02 t 1 1 132624 562 0.00 2019-10-24 02:18:41 2019-10-24 02:19:06 t 1 1 132625 445 0.00 2019-10-23 21:08:01 2019-10-24 02:20:04 t 1 1 132627 536 0.00 2019-10-24 02:17:52 2019-10-24 02:21:41 t 1 1 132630 562 0.00 2019-10-24 02:29:38 2019-10-24 02:29:49 t 1 1 132633 536 0.00 2019-10-24 02:34:47 2019-10-24 02:34:53 t 1 1 132635 514 0.00 2019-10-24 01:26:41 2019-10-24 02:38:19 t 1 1 132639 536 0.00 2019-10-24 02:44:58 2019-10-24 02:46:04 t 1 1 132641 536 0.00 2019-10-24 02:50:08 2019-10-24 02:50:16 t 1 1 132642 562 0.00 2019-10-24 02:51:03 2019-10-24 02:51:23 t 1 1 132644 536 0.00 2019-10-24 02:55:27 2019-10-24 02:55:30 t 1 1 132645 536 0.00 2019-10-24 02:56:35 2019-10-24 02:56:48 t 1 1 132646 536 0.00 2019-10-24 02:57:35 2019-10-24 02:57:41 t 1 1 132647 536 0.00 2019-10-24 02:59:21 2019-10-24 02:59:58 t 1 1 132650 536 0.00 2019-10-24 03:01:42 2019-10-24 03:13:42 t 1 1 132651 290 0.00 2019-10-24 03:15:07 2019-10-24 03:15:07 f 1 2 132654 514 0.00 2019-10-24 02:38:18 2019-10-24 03:19:13 t 1 1 132655 562 0.00 2019-10-24 03:23:28 2019-10-24 03:23:40 t 1 1 132656 536 0.00 2019-10-24 03:13:42 2019-10-24 03:27:27 t 1 1 132659 562 0.00 2019-10-24 03:34:06 2019-10-24 03:34:28 t 1 1 132667 536 0.00 2019-10-24 03:58:02 2019-10-24 04:09:24 t 1 1 132672 514 0.00 2019-10-24 03:36:20 2019-10-24 04:21:50 t 1 1 132673 562 0.00 2019-10-24 04:26:07 2019-10-24 04:26:22 t 1 1 132674 445 0.00 2019-10-24 04:19:10 2019-10-24 04:33:39 t 1 1 132681 558 0.00 2019-10-24 04:40:01 2019-10-24 04:55:30 t 1 1 132682 430 0.00 2019-10-24 04:55:30 2019-10-24 04:56:06 t 1 1 132683 551 0.00 2019-10-24 04:51:04 2019-10-24 04:57:34 t 1 1 132686 551 0.00 2019-10-24 04:57:34 2019-10-24 05:05:19 t 1 1 132690 220 0.00 2019-10-24 05:19:13 2019-10-24 05:24:48 t 1 1 132693 514 0.00 2019-10-24 04:21:50 2019-10-24 05:40:55 t 1 1 132696 395 0.00 2019-10-24 05:42:11 2019-10-24 05:43:16 t 1 2 132698 395 0.00 2019-10-24 05:45:48 2019-10-24 05:46:50 t 1 2 132700 520 0.00 2019-10-24 05:45:24 2019-10-24 05:51:11 t 1 1 132704 558 0.00 2019-10-24 06:01:51 2019-10-24 06:03:55 t 1 1 132705 520 0.00 2019-10-24 05:52:18 2019-10-24 06:04:12 t 1 1 132706 395 0.00 2019-10-24 06:05:31 2019-10-24 06:06:34 t 1 2 132707 520 0.00 2019-10-24 06:04:12 2019-10-24 06:07:50 t 1 1 132709 395 0.00 2019-10-24 06:07:15 2019-10-24 06:08:18 t 1 2 132712 395 0.00 2019-10-24 06:17:47 2019-10-24 06:18:50 t 1 2 132714 395 0.00 2019-10-24 06:21:28 2019-10-24 06:22:33 t 1 2 132717 483 0.00 2019-10-24 06:22:28 2019-10-24 06:32:39 t 1 1 132721 395 0.00 2019-10-24 06:36:57 2019-10-24 06:38:00 t 1 2 132723 516 0.00 2019-10-24 06:35:28 2019-10-24 06:42:16 t 1 1 132727 544 0.00 2019-10-24 07:07:12 2019-10-24 07:07:27 t 1 2 132728 562 0.00 2019-10-24 07:09:12 2019-10-24 07:09:23 t 1 1 132732 538 0.00 2019-10-24 01:28:49 2019-10-24 07:16:50 t 1 1 132739 516 0.00 2019-10-24 07:21:11 2019-10-24 07:26:52 t 1 1 132743 481 0.00 2019-10-24 07:22:45 2019-10-24 07:32:37 t 1 1 132745 562 0.00 2019-10-24 07:34:07 2019-10-24 07:34:28 t 1 1 132748 516 0.00 2019-10-24 07:39:42 2019-10-24 07:45:27 t 1 1 132753 544 0.00 2019-10-24 07:52:06 2019-10-24 07:54:17 t 1 2 132759 220 0.00 2019-10-24 08:04:29 2019-10-24 08:10:12 t 1 1 132761 422 0.00 2019-10-24 00:26:35 2019-10-24 08:12:26 t 1 1 132762 220 0.00 2019-10-24 08:10:16 2019-10-24 08:14:36 t 1 1 132637 562 0.00 2019-10-24 02:40:18 2019-10-24 02:40:34 t 1 1 132643 536 0.00 2019-10-24 02:51:27 2019-10-24 02:55:20 t 1 1 132660 514 0.00 2019-10-24 03:32:12 2019-10-24 03:36:19 t 1 1 132663 536 0.00 2019-10-24 03:40:49 2019-10-24 03:46:52 t 1 1 132664 562 0.00 2019-10-24 03:53:51 2019-10-24 03:54:05 t 1 1 132665 536 0.00 2019-10-24 03:46:52 2019-10-24 03:58:02 t 1 1 132669 562 0.00 2019-10-24 04:15:08 2019-10-24 04:15:39 t 1 1 132670 518 0.00 2019-10-24 03:22:10 2019-10-24 04:17:16 t 1 2 132671 445 0.00 2019-10-24 04:12:07 2019-10-24 04:18:58 t 1 1 132677 562 0.00 2019-10-24 04:47:22 2019-10-24 04:48:12 t 1 1 132678 551 0.00 2019-10-24 04:50:46 2019-10-24 04:50:52 t 1 1 132679 551 0.00 2019-10-24 04:50:52 2019-10-24 04:51:04 t 1 1 132684 562 0.00 2019-10-24 04:58:02 2019-10-24 04:58:38 t 1 1 132685 430 0.00 2019-10-24 04:56:14 2019-10-24 05:02:45 t 1 1 132689 562 0.00 2019-10-24 05:19:48 2019-10-24 05:20:02 t 1 1 132691 562 0.00 2019-10-24 05:30:27 2019-10-24 05:30:50 t 1 1 132694 395 0.00 2019-10-24 05:40:23 2019-10-24 05:41:31 t 1 2 132701 562 0.00 2019-10-24 05:52:06 2019-10-24 05:52:19 t 1 1 132710 395 0.00 2019-10-24 06:11:24 2019-10-24 06:12:26 t 1 2 132711 562 0.00 2019-10-24 06:13:42 2019-10-24 06:13:52 t 1 1 132713 483 0.00 2019-10-24 05:59:10 2019-10-24 06:22:28 t 1 1 132715 562 0.00 2019-10-24 06:24:14 2019-10-24 06:24:38 t 1 1 132720 516 0.00 2019-10-24 06:02:54 2019-10-24 06:35:28 t 1 1 132722 395 0.00 2019-10-24 06:38:35 2019-10-24 06:39:39 t 1 2 132724 483 0.00 2019-10-24 06:38:29 2019-10-24 06:46:05 t 1 1 132725 483 0.00 2019-10-24 06:46:04 2019-10-24 06:57:57 t 1 1 132726 375 0.00 2019-10-23 22:45:08 2019-10-24 07:06:06 t 1 1 132729 483 0.00 2019-10-24 07:15:02 2019-10-24 07:15:05 t 1 1 132730 591 0.00 2019-10-24 07:07:12 2019-10-24 07:15:40 t 1 1 132735 544 0.00 2019-10-24 07:08:03 2019-10-24 07:18:08 t 1 2 132740 488 0.00 2019-10-24 07:17:44 2019-10-24 07:26:52 t 1 1 132741 412 0.00 2019-10-24 01:49:18 2019-10-24 07:27:48 t 1 1 132742 591 0.00 2019-10-24 07:15:40 2019-10-24 07:29:18 t 1 1 132746 562 0.00 2019-10-24 07:45:03 2019-10-24 07:45:16 t 1 1 132751 544 0.00 2019-10-24 07:51:17 2019-10-24 07:51:28 t 1 2 132752 558 0.00 2019-10-24 06:33:53 2019-10-24 07:52:37 t 1 1 132754 583 0.00 2019-10-24 07:53:40 2019-10-24 07:55:48 t 1 1 132756 545 0.00 2019-10-24 07:48:41 2019-10-24 07:58:08 t 1 1 132758 562 0.00 2019-10-24 07:59:47 2019-10-24 08:07:02 t 1 1 132760 562 0.00 2019-10-24 08:10:17 2019-10-24 08:11:15 t 1 1 132763 562 0.00 2019-10-24 08:15:47 2019-10-24 08:19:28 t 1 1 132764 562 0.00 2019-10-24 08:21:43 2019-10-24 08:22:07 t 1 1 132765 591 0.00 2019-10-24 08:23:59 2019-10-24 08:25:39 t 1 1 132768 558 0.00 2019-10-24 07:54:09 2019-10-24 08:30:01 t 1 1 132771 585 0.00 2019-10-24 08:28:19 2019-10-24 08:32:00 t 1 1 132777 562 0.00 2019-10-24 08:42:23 2019-10-24 08:42:32 t 1 1 132778 501 0.00 2019-10-24 08:41:39 2019-10-24 08:43:49 t 1 1 132782 562 0.00 2019-10-24 08:46:44 2019-10-24 08:47:20 t 1 1 132787 501 0.00 2019-10-24 08:49:52 2019-10-24 08:50:00 t 1 1 132789 501 0.00 2019-10-24 08:50:38 2019-10-24 08:50:46 t 1 1 132791 501 0.00 2019-10-24 08:51:46 2019-10-24 08:51:48 t 1 1 132795 501 0.00 2019-10-24 08:52:16 2019-10-24 08:52:18 t 1 1 132797 522 0.00 2019-10-24 08:52:45 2019-10-24 08:52:47 t 1 1 132798 522 0.00 2019-10-24 08:53:21 2019-10-24 08:53:31 t 1 1 132799 501 0.00 2019-10-24 08:53:46 2019-10-24 08:54:00 t 1 1 132805 501 0.00 2019-10-24 08:56:43 2019-10-24 08:57:17 t 1 1 132810 583 0.00 2019-10-24 08:56:54 2019-10-24 08:59:10 t 1 1 132813 501 0.00 2019-10-24 09:00:48 2019-10-24 09:00:49 t 1 1 132816 220 0.00 2019-10-24 08:31:38 2019-10-24 09:02:15 t 1 1 132817 220 0.00 2019-10-24 09:02:15 2019-10-24 09:02:50 t 1 1 132820 220 0.00 2019-10-24 09:03:24 2019-10-24 09:03:55 t 1 1 132821 220 0.00 2019-10-24 09:02:50 2019-10-24 09:04:13 t 1 2 132823 591 0.00 2019-10-24 08:59:44 2019-10-24 09:04:55 t 1 1 132825 220 0.00 2019-10-24 09:05:05 2019-10-24 09:05:40 t 1 1 132827 220 0.00 2019-10-24 09:05:40 2019-10-24 09:06:13 t 1 1 132828 220 0.00 2019-10-24 09:06:13 2019-10-24 09:06:45 t 1 1 132829 501 0.00 2019-10-24 09:07:13 2019-10-24 09:07:21 t 1 1 132831 522 0.00 2019-10-24 08:57:41 2019-10-24 09:07:45 t 1 1 132833 522 0.00 2019-10-24 09:08:06 2019-10-24 09:08:07 t 1 1 132835 562 0.00 2019-10-24 09:08:26 2019-10-24 09:08:32 t 1 1 132839 528 0.00 2019-10-24 09:10:46 2019-10-24 09:11:33 t 1 1 132840 416 0.00 2019-10-23 20:56:15 2019-10-24 09:12:45 t 1 1 132842 522 0.00 2019-10-24 09:09:04 2019-10-24 09:13:53 t 1 1 132845 522 0.00 2019-10-24 09:15:06 2019-10-24 09:15:18 t 1 1 132847 528 0.00 2019-10-24 09:16:51 2019-10-24 09:17:23 t 1 1 132849 501 0.00 2019-10-24 09:07:59 2019-10-24 09:18:58 t 1 1 132855 501 0.00 2019-10-24 09:21:32 2019-10-24 09:22:03 t 1 1 132860 501 0.00 2019-10-24 09:23:07 2019-10-24 09:24:07 t 1 1 132867 562 0.00 2019-10-24 09:27:57 2019-10-24 09:28:39 t 1 1 132868 416 0.00 2019-10-24 09:19:54 2019-10-24 09:28:49 t 1 1 132869 595 0.00 2019-10-24 09:28:45 2019-10-24 09:29:47 t 1 1 132872 501 0.00 2019-10-24 09:32:10 2019-10-24 09:32:43 t 1 1 132873 501 0.00 2019-10-24 09:33:05 2019-10-24 09:33:07 t 1 1 132874 578 0.00 2019-10-23 23:10:21 2019-10-24 09:34:31 t 1 1 132877 545 0.00 2019-10-24 09:31:41 2019-10-24 09:36:36 t 1 1 132878 501 0.00 2019-10-24 09:38:11 2019-10-24 09:38:20 t 1 1 132880 522 0.00 2019-10-24 09:25:04 2019-10-24 09:39:32 t 1 1 132885 522 0.00 2019-10-24 09:39:48 2019-10-24 09:41:34 t 1 1 132887 522 0.00 2019-10-24 09:41:37 2019-10-24 09:42:50 t 1 1 132890 528 0.00 2019-10-24 09:24:59 2019-10-24 09:44:51 t 1 1 132892 461 0.00 2019-10-24 09:45:22 2019-10-24 09:45:22 f 1 2 132894 501 0.00 2019-10-24 09:45:17 2019-10-24 09:45:48 t 1 1 132895 501 0.00 2019-10-24 09:45:58 2019-10-24 09:46:16 t 1 1 132898 501 0.00 2019-10-24 09:49:14 2019-10-24 09:49:23 t 1 1 132900 528 0.00 2019-10-24 09:44:51 2019-10-24 09:50:45 t 1 1 132903 416 0.00 2019-10-24 09:28:48 2019-10-24 09:54:36 t 1 1 132915 538 0.00 2019-10-24 08:17:35 2019-10-24 10:04:45 t 1 1 132917 516 0.00 2019-10-24 10:01:14 2019-10-24 10:06:27 t 1 1 132918 562 0.00 2019-10-24 10:06:29 2019-10-24 10:07:08 t 1 1 132921 522 0.00 2019-10-24 09:59:15 2019-10-24 10:10:41 t 1 1 132926 538 0.00 2019-10-24 10:04:57 2019-10-24 10:15:40 t 1 1 132941 416 0.00 2019-10-24 10:02:13 2019-10-24 10:28:02 t 1 1 132942 522 0.00 2019-10-24 10:28:11 2019-10-24 10:28:18 t 1 1 132943 522 0.00 2019-10-24 10:27:27 2019-10-24 10:29:06 t 1 1 132951 522 0.00 2019-10-24 10:33:38 2019-10-24 10:34:01 t 1 1 132953 501 0.00 2019-10-24 10:35:07 2019-10-24 10:36:13 t 1 1 132955 562 0.00 2019-10-24 10:38:16 2019-10-24 10:38:54 t 1 1 132767 445 0.00 2019-10-24 04:33:42 2019-10-24 08:29:27 t 1 1 132776 501 0.00 2019-10-24 08:39:15 2019-10-24 08:41:39 t 1 1 132779 379 0.00 2019-10-24 08:36:01 2019-10-24 08:43:49 t 1 1 132780 501 0.00 2019-10-24 08:43:49 2019-10-24 08:46:34 t 1 1 132781 568 0.00 2019-10-24 08:40:38 2019-10-24 08:47:03 t 1 1 132784 501 0.00 2019-10-24 08:47:41 2019-10-24 08:48:41 t 1 1 132785 501 0.00 2019-10-24 08:48:41 2019-10-24 08:49:12 t 1 1 132786 501 0.00 2019-10-24 08:49:36 2019-10-24 08:49:47 t 1 1 132792 501 0.00 2019-10-24 08:51:54 2019-10-24 08:51:56 t 1 1 132793 501 0.00 2019-10-24 08:52:01 2019-10-24 08:52:03 t 1 1 132800 501 0.00 2019-10-24 08:54:41 2019-10-24 08:54:50 t 1 1 132801 220 0.00 2019-10-24 08:36:02 2019-10-24 08:55:24 t 1 1 132804 528 0.00 2019-10-24 08:49:30 2019-10-24 08:57:07 t 1 1 132806 591 0.00 2019-10-24 08:51:27 2019-10-24 08:57:34 t 1 1 132807 562 0.00 2019-10-24 08:57:30 2019-10-24 08:57:54 t 1 1 132808 501 0.00 2019-10-24 08:57:45 2019-10-24 08:58:18 t 1 1 132811 591 0.00 2019-10-24 08:58:11 2019-10-24 08:59:44 t 1 1 132814 501 0.00 2019-10-24 09:00:55 2019-10-24 09:00:56 t 1 1 132818 501 0.00 2019-10-24 09:01:02 2019-10-24 09:03:06 t 1 1 132836 522 0.00 2019-10-24 09:08:33 2019-10-24 09:08:41 t 1 1 132837 522 0.00 2019-10-24 09:07:59 2019-10-24 09:09:06 t 1 1 132838 456 0.00 2019-10-24 09:04:43 2019-10-24 09:10:12 t 1 1 132841 562 0.00 2019-10-24 09:11:58 2019-10-24 09:13:10 t 1 1 132844 522 0.00 2019-10-24 09:14:20 2019-10-24 09:14:33 t 1 1 132846 545 0.00 2019-10-24 09:11:00 2019-10-24 09:16:37 t 1 1 132850 522 0.00 2019-10-24 09:18:39 2019-10-24 09:20:06 t 1 1 132857 483 0.00 2019-10-24 09:20:24 2019-10-24 09:22:30 t 1 1 132859 562 0.00 2019-10-24 09:23:39 2019-10-24 09:23:58 t 1 1 132862 522 0.00 2019-10-24 09:24:48 2019-10-24 09:24:52 t 1 1 132864 501 0.00 2019-10-24 09:24:47 2019-10-24 09:25:18 t 1 1 132871 583 0.00 2019-10-24 09:27:36 2019-10-24 09:31:17 t 1 1 132879 591 0.00 2019-10-24 09:37:24 2019-10-24 09:38:59 t 1 1 132881 522 0.00 2019-10-24 09:39:39 2019-10-24 09:39:40 t 1 1 132883 501 0.00 2019-10-24 09:39:59 2019-10-24 09:40:30 t 1 1 132884 501 0.00 2019-10-24 09:41:11 2019-10-24 09:41:18 t 1 1 132891 461 0.00 2019-10-24 09:45:03 2019-10-24 09:45:03 f 1 2 132893 461 0.00 2019-10-24 09:45:37 2019-10-24 09:45:37 f 1 2 132905 591 0.00 2019-10-24 09:48:52 2019-10-24 09:54:42 t 1 1 132908 562 0.00 2019-10-24 09:56:23 2019-10-24 09:59:10 t 1 1 132910 445 0.00 2019-10-24 09:49:54 2019-10-24 10:01:31 t 1 1 132912 597 0.00 2019-10-24 09:59:11 2019-10-24 10:01:51 t 1 1 132913 416 0.00 2019-10-24 10:02:07 2019-10-24 10:02:09 t 1 1 132914 445 0.00 2019-10-24 10:01:46 2019-10-24 10:03:40 t 1 1 132919 481 0.00 2019-10-24 07:32:37 2019-10-24 10:07:36 t 1 1 132923 483 0.00 2019-10-24 09:37:36 2019-10-24 10:11:36 t 1 1 132925 522 0.00 2019-10-24 10:15:14 2019-10-24 10:15:24 t 1 1 132928 522 0.00 2019-10-24 10:16:09 2019-10-24 10:16:47 t 1 1 132930 591 0.00 2019-10-24 10:15:02 2019-10-24 10:17:27 t 1 1 132935 591 0.00 2019-10-24 10:21:33 2019-10-24 10:23:09 t 1 1 132938 522 0.00 2019-10-24 10:27:00 2019-10-24 10:27:12 t 1 1 132939 581 0.00 2019-10-24 10:21:30 2019-10-24 10:27:51 t 1 1 132940 522 0.00 2019-10-24 10:27:48 2019-10-24 10:27:57 t 1 1 132944 522 0.00 2019-10-24 10:29:35 2019-10-24 10:29:57 t 1 1 61177 131 0.00 2018-03-28 01:52:30 2018-03-28 01:52:30 f 1 1 61178 131 0.00 2018-03-28 01:53:48 2018-03-28 01:53:48 f 1 1 132945 562 0.00 2019-10-24 10:28:32 2019-10-24 10:30:13 t 1 1 132948 501 0.00 2019-10-24 10:31:54 2019-10-24 10:32:26 t 1 1 132949 562 0.00 2019-10-24 10:30:55 2019-10-24 10:33:09 t 1 1 132950 501 0.00 2019-10-24 10:32:49 2019-10-24 10:34:00 t 1 1 132954 522 0.00 2019-10-24 10:36:20 2019-10-24 10:36:30 t 1 1 132958 516 0.00 2019-10-24 10:26:53 2019-10-24 10:43:49 t 1 1 132961 522 0.00 2019-10-24 10:46:28 2019-10-24 10:46:36 t 1 1 132964 545 0.00 2019-10-24 10:47:54 2019-10-24 10:50:27 t 1 1 132966 581 0.00 2019-10-24 10:27:51 2019-10-24 10:53:22 t 1 1 132968 538 0.00 2019-10-24 10:20:06 2019-10-24 10:54:28 t 1 1 132969 520 0.00 2019-10-24 10:37:46 2019-10-24 10:54:44 t 1 1 132970 501 0.00 2019-10-24 10:37:16 2019-10-24 10:55:27 t 1 1 132976 545 0.00 2019-10-24 10:50:27 2019-10-24 11:01:04 t 1 1 132977 545 0.00 2019-10-24 11:01:03 2019-10-24 11:01:58 t 1 1 132981 449 0.00 2019-10-24 10:58:57 2019-10-24 11:07:02 t 1 1 132984 522 0.00 2019-10-24 11:07:39 2019-10-24 11:08:03 t 1 1 132987 538 0.00 2019-10-24 11:08:31 2019-10-24 11:09:32 t 1 1 132990 591 0.00 2019-10-24 11:06:37 2019-10-24 11:11:11 t 1 1 132993 522 0.00 2019-10-24 11:12:52 2019-10-24 11:13:00 t 1 1 132995 501 0.00 2019-10-24 11:13:30 2019-10-24 11:13:44 t 1 1 132997 501 0.00 2019-10-24 11:14:03 2019-10-24 11:16:34 t 1 1 133001 501 0.00 2019-10-24 11:17:36 2019-10-24 11:18:51 t 1 1 133002 522 0.00 2019-10-24 11:19:07 2019-10-24 11:19:18 t 1 1 133004 522 0.00 2019-10-24 11:20:54 2019-10-24 11:21:18 t 1 1 133005 520 0.00 2019-10-24 10:54:44 2019-10-24 11:24:10 t 1 1 133007 481 0.00 2019-10-24 10:40:26 2019-10-24 11:24:52 t 1 1 133009 512 0.00 2019-10-24 11:12:13 2019-10-24 11:27:32 t 1 1 133013 597 0.00 2019-10-24 11:27:14 2019-10-24 11:31:08 t 1 1 133014 516 0.00 2019-10-24 11:30:34 2019-10-24 11:32:42 t 1 1 133018 522 0.00 2019-10-24 11:35:27 2019-10-24 11:35:51 t 1 1 133020 562 0.00 2019-10-24 11:36:36 2019-10-24 11:37:22 t 1 1 133025 220 0.00 2019-10-24 11:06:09 2019-10-24 11:42:07 t 1 1 133027 562 0.00 2019-10-24 11:44:40 2019-10-24 11:45:03 t 1 1 133033 562 0.00 2019-10-24 11:51:25 2019-10-24 11:51:31 t 1 1 133035 522 0.00 2019-10-24 11:52:13 2019-10-24 11:53:06 t 1 1 133036 589 0.00 2019-10-24 10:43:26 2019-10-24 11:54:09 t 1 1 133037 522 0.00 2019-10-24 11:53:28 2019-10-24 11:54:36 t 1 1 133040 522 0.00 2019-10-24 11:56:12 2019-10-24 11:58:07 t 1 1 133044 562 0.00 2019-10-24 11:59:40 2019-10-24 12:00:16 t 1 1 133045 516 0.00 2019-10-24 11:59:12 2019-10-24 12:01:18 t 1 1 133046 520 0.00 2019-10-24 11:23:58 2019-10-24 12:04:38 t 1 1 133047 556 0.00 2019-10-24 11:58:31 2019-10-24 12:05:18 t 1 1 133051 522 0.00 2019-10-24 12:08:37 2019-10-24 12:08:52 t 1 1 133052 522 0.00 2019-10-24 12:09:02 2019-10-24 12:09:11 t 1 1 133059 522 0.00 2019-10-24 12:15:30 2019-10-24 12:15:38 t 1 1 133060 538 0.00 2019-10-24 12:12:23 2019-10-24 12:16:12 t 1 1 133063 591 0.00 2019-10-24 12:11:27 2019-10-24 12:16:33 t 1 1 133066 522 0.00 2019-10-24 12:17:01 2019-10-24 12:17:33 t 1 1 133071 416 0.00 2019-10-24 12:18:56 2019-10-24 12:20:33 t 1 1 133072 522 0.00 2019-10-24 12:21:08 2019-10-24 12:21:10 t 1 1 133073 379 0.00 2019-10-24 11:15:29 2019-10-24 12:21:49 t 1 1 133078 512 0.00 2019-10-24 12:20:29 2019-10-24 12:26:53 t 1 1 132803 522 0.00 2019-10-24 08:56:17 2019-10-24 08:56:42 t 1 1 132809 501 0.00 2019-10-24 08:58:46 2019-10-24 08:58:53 t 1 1 132812 501 0.00 2019-10-24 08:59:47 2019-10-24 08:59:54 t 1 1 132815 562 0.00 2019-10-24 09:01:19 2019-10-24 09:02:11 t 1 1 132819 220 0.00 2019-10-24 09:02:49 2019-10-24 09:03:24 t 1 1 132822 528 0.00 2019-10-24 09:04:09 2019-10-24 09:04:38 t 1 1 132824 220 0.00 2019-10-24 09:03:54 2019-10-24 09:05:05 t 1 1 132826 501 0.00 2019-10-24 09:05:52 2019-10-24 09:06:02 t 1 1 132830 562 0.00 2019-10-24 09:06:39 2019-10-24 09:07:22 t 1 1 132832 501 0.00 2019-10-24 09:07:30 2019-10-24 09:07:51 t 1 1 132834 220 0.00 2019-10-24 09:05:50 2019-10-24 09:08:10 t 1 2 132843 522 0.00 2019-10-24 09:14:08 2019-10-24 09:14:20 t 1 1 132848 522 0.00 2019-10-24 09:18:45 2019-10-24 09:18:46 t 1 1 132851 501 0.00 2019-10-24 09:20:05 2019-10-24 09:20:34 t 1 1 132852 501 0.00 2019-10-24 09:20:43 2019-10-24 09:20:58 t 1 1 132853 327 0.00 2019-10-24 09:21:09 2019-10-24 09:21:18 t 1 1 132854 522 0.00 2019-10-24 09:21:29 2019-10-24 09:21:43 t 1 1 132856 522 0.00 2019-10-24 09:21:16 2019-10-24 09:22:16 t 1 1 132858 528 0.00 2019-10-24 09:22:41 2019-10-24 09:23:17 t 1 1 132861 522 0.00 2019-10-24 09:23:29 2019-10-24 09:24:36 t 1 1 132863 568 0.00 2019-10-24 09:17:13 2019-10-24 09:25:15 t 1 1 132865 220 0.00 2019-10-24 09:23:12 2019-10-24 09:26:08 t 1 1 132866 501 0.00 2019-10-24 09:27:11 2019-10-24 09:27:22 t 1 1 132870 501 0.00 2019-10-24 09:29:06 2019-10-24 09:31:02 t 1 1 132875 562 0.00 2019-10-24 09:34:21 2019-10-24 09:34:39 t 1 1 132876 585 0.00 2019-10-24 09:28:29 2019-10-24 09:35:43 t 1 1 132882 327 0.00 2019-10-24 09:24:46 2019-10-24 09:39:57 t 1 1 132886 501 0.00 2019-10-24 09:42:12 2019-10-24 09:42:20 t 1 1 132888 562 0.00 2019-10-24 09:42:33 2019-10-24 09:42:54 t 1 1 132889 501 0.00 2019-10-24 09:43:12 2019-10-24 09:43:20 t 1 1 132896 562 0.00 2019-10-24 09:47:54 2019-10-24 09:48:06 t 1 1 132897 501 0.00 2019-10-24 09:48:02 2019-10-24 09:49:09 t 1 1 132899 445 0.00 2019-10-24 08:29:35 2019-10-24 09:49:48 t 1 1 132901 512 0.00 2019-10-24 09:45:18 2019-10-24 09:50:56 t 1 1 132902 501 0.00 2019-10-24 09:50:26 2019-10-24 09:51:14 t 1 1 132904 562 0.00 2019-10-24 09:53:09 2019-10-24 09:54:37 t 1 1 132906 591 0.00 2019-10-24 09:55:14 2019-10-24 09:56:44 t 1 1 132907 501 0.00 2019-10-24 09:51:14 2019-10-24 09:58:34 t 1 1 132909 522 0.00 2019-10-24 09:47:15 2019-10-24 09:59:15 t 1 1 132911 562 0.00 2019-10-24 10:01:06 2019-10-24 10:01:48 t 1 1 132916 591 0.00 2019-10-24 10:04:00 2019-10-24 10:05:38 t 1 1 132920 445 0.00 2019-10-24 10:03:48 2019-10-24 10:08:11 t 1 1 132922 456 0.00 2019-10-24 10:09:20 2019-10-24 10:11:17 t 1 1 132924 522 0.00 2019-10-24 10:10:41 2019-10-24 10:12:25 t 1 1 132927 481 0.00 2019-10-24 10:07:36 2019-10-24 10:16:46 t 1 1 132929 456 0.00 2019-10-24 10:11:17 2019-10-24 10:17:21 t 1 1 132931 538 0.00 2019-10-24 10:16:07 2019-10-24 10:18:00 t 1 1 132932 562 0.00 2019-10-24 10:17:29 2019-10-24 10:19:26 t 1 1 132933 538 0.00 2019-10-24 10:18:42 2019-10-24 10:20:02 t 1 1 132934 422 0.00 2019-10-24 09:47:31 2019-10-24 10:21:05 t 1 1 132936 562 0.00 2019-10-24 10:22:44 2019-10-24 10:25:22 t 1 1 132937 562 0.00 2019-10-24 10:25:51 2019-10-24 10:26:19 t 1 1 132946 501 0.00 2019-10-24 10:17:39 2019-10-24 10:30:47 t 1 1 132947 522 0.00 2019-10-24 10:31:51 2019-10-24 10:32:01 t 1 1 132952 591 0.00 2019-10-24 10:23:12 2019-10-24 10:34:49 t 1 1 132957 562 0.00 2019-10-24 10:39:35 2019-10-24 10:40:31 t 1 1 132959 522 0.00 2019-10-24 10:41:10 2019-10-24 10:44:26 t 1 1 132960 544 0.00 2019-10-24 09:00:44 2019-10-24 10:45:50 t 1 2 132963 516 0.00 2019-10-24 10:46:17 2019-10-24 10:49:55 t 1 1 132971 522 0.00 2019-10-24 10:56:59 2019-10-24 10:57:00 t 1 1 132973 522 0.00 2019-10-24 10:57:37 2019-10-24 10:57:48 t 1 1 132975 422 0.00 2019-10-24 10:21:05 2019-10-24 11:00:52 t 1 1 132978 545 0.00 2019-10-24 11:01:57 2019-10-24 11:03:02 t 1 1 132980 591 0.00 2019-10-24 10:59:21 2019-10-24 11:06:07 t 1 1 132982 501 0.00 2019-10-24 11:05:00 2019-10-24 11:07:38 t 1 1 132988 501 0.00 2019-10-24 11:09:42 2019-10-24 11:10:24 t 1 1 132989 501 0.00 2019-10-24 11:10:29 2019-10-24 11:11:04 t 1 1 132996 379 0.00 2019-10-24 08:43:48 2019-10-24 11:15:29 t 1 1 132998 416 0.00 2019-10-24 10:53:18 2019-10-24 11:17:14 t 1 1 133000 562 0.00 2019-10-24 11:16:26 2019-10-24 11:17:37 t 1 1 133006 522 0.00 2019-10-24 11:24:21 2019-10-24 11:24:28 t 1 1 133011 481 0.00 2019-10-24 11:24:52 2019-10-24 11:29:25 t 1 1 133012 522 0.00 2019-10-24 11:30:51 2019-10-24 11:31:02 t 1 1 133015 522 0.00 2019-10-24 11:32:39 2019-10-24 11:33:02 t 1 1 133019 562 0.00 2019-10-24 11:35:09 2019-10-24 11:37:06 t 1 1 133022 522 0.00 2019-10-24 11:38:33 2019-10-24 11:38:36 t 1 1 133026 220 0.00 2019-10-24 09:06:45 2019-10-24 11:44:52 t 1 1 133028 585 0.00 2019-10-24 11:45:01 2019-10-24 11:47:31 t 1 1 133031 556 0.00 2019-10-24 00:25:53 2019-10-24 11:50:54 t 1 1 133032 562 0.00 2019-10-24 11:49:07 2019-10-24 11:51:26 t 1 1 133039 516 0.00 2019-10-24 11:54:34 2019-10-24 11:56:46 t 1 1 133041 538 0.00 2019-10-24 11:45:28 2019-10-24 11:59:39 t 1 1 133042 461 0.00 2019-10-24 11:59:49 2019-10-24 11:59:49 f 1 2 133043 522 0.00 2019-10-24 11:58:16 2019-10-24 12:00:06 t 1 1 133048 578 0.00 2019-10-24 11:57:28 2019-10-24 12:05:44 t 1 1 133049 578 0.00 2019-10-24 12:06:20 2019-10-24 12:06:21 t 1 1 133053 522 0.00 2019-10-24 12:09:55 2019-10-24 12:09:57 t 1 1 133055 591 0.00 2019-10-24 12:02:59 2019-10-24 12:11:27 t 1 1 133062 375 0.00 2019-10-24 12:13:55 2019-10-24 12:16:22 t 1 1 133065 416 0.00 2019-10-24 11:18:34 2019-10-24 12:17:26 t 1 1 133068 481 0.00 2019-10-24 11:52:34 2019-10-24 12:19:01 t 1 1 133070 512 0.00 2019-10-24 11:27:49 2019-10-24 12:20:30 t 1 1 133074 520 0.00 2019-10-24 12:19:28 2019-10-24 12:22:39 t 1 1 133076 220 0.00 2019-10-24 12:00:55 2019-10-24 12:23:47 t 1 1 133084 522 0.00 2019-10-24 12:29:52 2019-10-24 12:30:09 t 1 1 133092 585 0.00 2019-10-24 12:32:51 2019-10-24 12:35:08 t 1 1 133094 327 0.00 2019-10-24 12:33:02 2019-10-24 12:35:56 t 1 1 133096 538 0.00 2019-10-24 12:34:22 2019-10-24 12:37:16 t 1 1 133097 589 0.00 2019-10-24 12:13:55 2019-10-24 12:39:12 t 1 1 133101 545 0.00 2019-10-24 12:34:09 2019-10-24 12:41:15 t 1 1 133107 522 0.00 2019-10-24 12:44:05 2019-10-24 12:45:06 t 1 1 133108 562 0.00 2019-10-24 12:45:55 2019-10-24 12:46:35 t 1 1 133112 581 0.00 2019-10-24 12:50:25 2019-10-24 12:50:38 t 1 1 133113 522 0.00 2019-10-24 12:46:36 2019-10-24 12:51:07 t 1 1 133117 416 0.00 2019-10-24 12:52:08 2019-10-24 12:53:26 t 1 1 133123 327 0.00 2019-10-24 12:43:18 2019-10-24 12:55:56 t 1 1 133125 522 0.00 2019-10-24 12:55:45 2019-10-24 12:57:14 t 1 1 132956 481 0.00 2019-10-24 10:17:35 2019-10-24 10:40:27 t 1 1 132962 562 0.00 2019-10-24 10:49:12 2019-10-24 10:49:26 t 1 1 132965 416 0.00 2019-10-24 10:28:08 2019-10-24 10:53:12 t 1 1 132967 591 0.00 2019-10-24 10:37:52 2019-10-24 10:53:43 t 1 1 132972 591 0.00 2019-10-24 10:55:51 2019-10-24 10:57:46 t 1 1 132974 562 0.00 2019-10-24 10:59:48 2019-10-24 11:00:13 t 1 1 132979 522 0.00 2019-10-24 11:05:53 2019-10-24 11:06:03 t 1 1 132983 408 0.00 2019-10-24 11:03:40 2019-10-24 11:07:45 t 1 1 132985 538 0.00 2019-10-24 10:54:30 2019-10-24 11:08:15 t 1 1 132986 501 0.00 2019-10-24 11:08:41 2019-10-24 11:08:49 t 1 1 132991 449 0.00 2019-10-24 11:07:02 2019-10-24 11:11:22 t 1 1 132992 501 0.00 2019-10-24 11:11:49 2019-10-24 11:12:04 t 1 1 132994 501 0.00 2019-10-24 11:12:44 2019-10-24 11:13:25 t 1 1 132999 538 0.00 2019-10-24 11:09:39 2019-10-24 11:17:36 t 1 1 133003 545 0.00 2019-10-24 11:17:56 2019-10-24 11:19:28 t 1 1 133008 562 0.00 2019-10-24 11:24:02 2019-10-24 11:24:57 t 1 1 133010 516 0.00 2019-10-24 11:26:11 2019-10-24 11:27:49 t 1 1 133016 522 0.00 2019-10-24 11:33:40 2019-10-24 11:33:51 t 1 1 133017 562 0.00 2019-10-24 11:33:55 2019-10-24 11:34:18 t 1 1 133021 522 0.00 2019-10-24 11:36:28 2019-10-24 11:37:35 t 1 1 133023 570 0.00 2019-10-24 11:37:57 2019-10-24 11:38:53 t 1 1 133024 570 0.00 2019-10-24 11:38:53 2019-10-24 11:41:39 t 1 1 133029 522 0.00 2019-10-24 11:41:07 2019-10-24 11:48:48 t 1 1 133030 585 0.00 2019-10-24 11:47:30 2019-10-24 11:50:54 t 1 1 133034 585 0.00 2019-10-24 11:50:54 2019-10-24 11:52:41 t 1 1 133038 522 0.00 2019-10-24 11:55:11 2019-10-24 11:55:19 t 1 1 133050 597 0.00 2019-10-24 11:42:22 2019-10-24 12:06:52 t 1 1 133054 522 0.00 2019-10-24 12:10:49 2019-10-24 12:11:08 t 1 1 133056 520 0.00 2019-10-24 12:06:38 2019-10-24 12:11:43 t 1 1 133057 375 0.00 2019-10-24 07:06:06 2019-10-24 12:12:25 t 1 1 133058 589 0.00 2019-10-24 11:54:09 2019-10-24 12:13:56 t 1 1 133061 522 0.00 2019-10-24 12:15:56 2019-10-24 12:16:17 t 1 1 133064 375 0.00 2019-10-24 12:16:36 2019-10-24 12:17:17 t 1 1 133067 570 0.00 2019-10-24 12:13:25 2019-10-24 12:17:55 t 1 1 133069 520 0.00 2019-10-24 12:13:30 2019-10-24 12:19:28 t 1 1 133075 593 0.00 2019-10-24 10:42:35 2019-10-24 12:23:30 t 1 1 133077 562 0.00 2019-10-24 12:01:33 2019-10-24 12:26:11 t 1 1 133081 522 0.00 2019-10-24 12:21:23 2019-10-24 12:29:05 t 1 1 133083 522 0.00 2019-10-24 12:29:05 2019-10-24 12:29:36 t 1 1 133086 372 0.00 2019-10-24 11:55:36 2019-10-24 12:30:41 t 1 2 133087 522 0.00 2019-10-24 12:31:55 2019-10-24 12:31:55 f 1 1 133089 562 0.00 2019-10-24 12:31:24 2019-10-24 12:32:27 t 1 1 133091 562 0.00 2019-10-24 12:32:50 2019-10-24 12:33:45 t 1 1 133098 520 0.00 2019-10-24 12:36:49 2019-10-24 12:39:55 t 1 1 133099 562 0.00 2019-10-24 12:34:05 2019-10-24 12:40:02 t 1 1 133100 589 0.00 2019-10-24 12:39:12 2019-10-24 12:40:59 t 1 1 133102 522 0.00 2019-10-24 12:42:00 2019-10-24 12:42:36 t 1 1 133105 522 0.00 2019-10-24 12:43:42 2019-10-24 12:43:52 t 1 1 133106 522 0.00 2019-10-24 12:44:41 2019-10-24 12:44:57 t 1 1 133115 416 0.00 2019-10-24 12:38:17 2019-10-24 12:52:01 t 1 1 133116 522 0.00 2019-10-24 12:51:35 2019-10-24 12:52:21 t 1 1 133119 522 0.00 2019-10-24 12:52:20 2019-10-24 12:55:07 t 1 1 133121 562 0.00 2019-10-24 12:51:30 2019-10-24 12:55:24 t 1 1 133124 522 0.00 2019-10-24 12:55:32 2019-10-24 12:57:06 t 1 1 133126 522 0.00 2019-10-24 12:57:19 2019-10-24 12:57:20 t 1 1 133127 562 0.00 2019-10-24 12:56:26 2019-10-24 13:00:18 t 1 1 133129 522 0.00 2019-10-24 13:02:22 2019-10-24 13:02:31 t 1 1 133133 562 0.00 2019-10-24 13:05:23 2019-10-24 13:06:10 t 1 1 133135 564 0.00 2019-10-24 12:38:00 2019-10-24 13:06:37 t 1 1 133139 327 0.00 2019-10-24 13:05:22 2019-10-24 13:09:12 t 1 1 133141 562 0.00 2019-10-24 13:09:43 2019-10-24 13:13:02 t 1 1 133142 528 0.00 2019-10-24 13:05:45 2019-10-24 13:14:12 t 1 1 133144 522 0.00 2019-10-24 13:15:29 2019-10-24 13:15:56 t 1 1 133145 522 0.00 2019-10-24 13:16:07 2019-10-24 13:16:10 t 1 1 133149 375 0.00 2019-10-24 12:18:48 2019-10-24 13:17:30 t 1 1 133157 220 0.00 2019-10-24 12:28:15 2019-10-24 13:25:33 t 1 2 133158 516 0.00 2019-10-24 12:27:09 2019-10-24 13:26:19 t 1 1 133159 481 0.00 2019-10-24 12:19:00 2019-10-24 13:27:13 t 1 1 133166 522 0.00 2019-10-24 13:29:46 2019-10-24 13:29:47 t 1 1 133169 562 0.00 2019-10-24 13:32:04 2019-10-24 13:33:05 t 1 1 133171 327 0.00 2019-10-24 13:31:33 2019-10-24 13:34:14 t 1 1 133175 514 0.00 2019-10-24 13:05:26 2019-10-24 13:36:57 t 1 1 133183 512 0.00 2019-10-24 12:53:35 2019-10-24 13:46:13 t 1 1 133184 501 0.00 2019-10-24 13:45:29 2019-10-24 13:46:22 t 1 1 133187 528 0.00 2019-10-24 13:43:26 2019-10-24 13:48:02 t 1 1 133189 501 0.00 2019-10-24 13:49:35 2019-10-24 13:50:42 t 1 1 133194 220 0.00 2019-10-24 10:48:08 2019-10-24 13:52:57 t 1 2 133195 562 0.00 2019-10-24 13:53:58 2019-10-24 13:54:07 t 1 1 133197 412 0.00 2019-10-24 13:51:59 2019-10-24 13:56:06 t 1 1 133198 522 0.00 2019-10-24 13:56:49 2019-10-24 13:57:05 t 1 1 133202 412 0.00 2019-10-24 13:56:19 2019-10-24 13:58:13 t 1 1 133204 562 0.00 2019-10-24 13:56:49 2019-10-24 13:58:46 t 1 1 133215 481 0.00 2019-10-24 13:27:17 2019-10-24 14:02:25 t 1 1 133217 501 0.00 2019-10-24 14:01:59 2019-10-24 14:03:18 t 1 1 133218 220 0.00 2019-10-24 14:03:06 2019-10-24 14:03:37 t 1 1 133221 501 0.00 2019-10-24 14:04:08 2019-10-24 14:04:18 t 1 1 133223 220 0.00 2019-10-24 14:04:48 2019-10-24 14:05:20 t 1 1 133225 501 0.00 2019-10-24 14:05:34 2019-10-24 14:06:18 t 1 1 133227 327 0.00 2019-10-24 13:46:13 2019-10-24 14:06:30 t 1 1 133228 220 0.00 2019-10-24 14:06:23 2019-10-24 14:06:54 t 1 1 133231 595 0.00 2019-10-24 14:06:40 2019-10-24 14:08:01 t 1 1 133232 220 0.00 2019-10-24 14:07:58 2019-10-24 14:08:33 t 1 1 133235 220 0.00 2019-10-24 14:09:10 2019-10-24 14:09:44 t 1 1 133237 220 0.00 2019-10-24 14:10:16 2019-10-24 14:10:51 t 1 1 133243 220 0.00 2019-10-24 14:12:32 2019-10-24 14:13:07 t 1 1 133247 556 0.00 2019-10-24 12:27:12 2019-10-24 14:15:03 t 1 1 133250 528 0.00 2019-10-24 13:57:48 2019-10-24 14:17:53 t 1 1 133251 412 0.00 2019-10-24 14:15:18 2019-10-24 14:18:16 t 1 1 133255 585 0.00 2019-10-24 14:18:42 2019-10-24 14:21:30 t 1 1 133257 591 0.00 2019-10-24 13:45:03 2019-10-24 14:22:16 t 1 1 133260 574 0.00 2019-10-24 14:05:36 2019-10-24 14:23:10 t 1 1 133264 483 0.00 2019-10-24 14:26:25 2019-10-24 14:26:49 t 1 1 133269 501 0.00 2019-10-24 14:07:22 2019-10-24 14:29:44 t 1 1 133273 501 0.00 2019-10-24 14:30:07 2019-10-24 14:30:45 t 1 1 133276 501 0.00 2019-10-24 14:31:29 2019-10-24 14:31:50 t 1 1 133280 501 0.00 2019-10-24 14:32:51 2019-10-24 14:33:38 t 1 1 133282 501 0.00 2019-10-24 14:34:52 2019-10-24 14:34:53 t 1 1 133079 556 0.00 2019-10-24 12:05:18 2019-10-24 12:27:12 t 1 1 133080 570 0.00 2019-10-24 12:17:55 2019-10-24 12:28:15 t 1 1 133082 570 0.00 2019-10-24 12:28:15 2019-10-24 12:29:16 t 1 1 133085 562 0.00 2019-10-24 12:26:22 2019-10-24 12:30:40 t 1 1 133088 522 0.00 2019-10-24 12:31:16 2019-10-24 12:32:16 t 1 1 133090 522 0.00 2019-10-24 12:31:48 2019-10-24 12:33:06 t 1 1 133093 416 0.00 2019-10-24 12:21:15 2019-10-24 12:35:44 t 1 1 133095 564 0.00 2019-10-24 10:30:39 2019-10-24 12:36:56 t 1 1 133103 585 0.00 2019-10-24 12:36:10 2019-10-24 12:43:15 t 1 1 133104 562 0.00 2019-10-24 12:41:30 2019-10-24 12:43:51 t 1 1 133109 538 0.00 2019-10-24 12:37:31 2019-10-24 12:48:39 t 1 1 133110 581 0.00 2019-10-24 12:40:39 2019-10-24 12:49:43 t 1 1 133111 562 0.00 2019-10-24 12:49:35 2019-10-24 12:50:20 t 1 1 133114 522 0.00 2019-10-24 12:51:07 2019-10-24 12:51:14 t 1 1 133118 412 0.00 2019-10-24 07:27:47 2019-10-24 12:55:06 t 1 1 133120 522 0.00 2019-10-24 12:55:15 2019-10-24 12:55:21 t 1 1 133122 581 0.00 2019-10-24 12:52:41 2019-10-24 12:55:39 t 1 1 133128 570 0.00 2019-10-24 12:59:39 2019-10-24 13:01:30 t 1 1 133130 562 0.00 2019-10-24 13:01:32 2019-10-24 13:03:24 t 1 1 133137 562 0.00 2019-10-24 13:06:36 2019-10-24 13:08:29 t 1 1 133143 522 0.00 2019-10-24 13:14:47 2019-10-24 13:14:57 t 1 1 133146 522 0.00 2019-10-24 13:16:27 2019-10-24 13:16:36 t 1 1 133150 522 0.00 2019-10-24 13:17:42 2019-10-24 13:17:43 t 1 1 133152 538 0.00 2019-10-24 13:17:57 2019-10-24 13:19:24 t 1 1 133154 327 0.00 2019-10-24 13:18:59 2019-10-24 13:22:07 t 1 1 133156 538 0.00 2019-10-24 13:19:33 2019-10-24 13:25:14 t 1 1 133160 445 0.00 2019-10-24 13:18:24 2019-10-24 13:27:30 t 1 1 133162 522 0.00 2019-10-24 13:27:54 2019-10-24 13:28:19 t 1 1 133165 522 0.00 2019-10-24 13:28:30 2019-10-24 13:29:34 t 1 1 133167 562 0.00 2019-10-24 13:29:37 2019-10-24 13:31:00 t 1 1 133168 585 0.00 2019-10-24 13:19:59 2019-10-24 13:31:53 t 1 1 133170 591 0.00 2019-10-24 13:19:07 2019-10-24 13:34:10 t 1 1 133174 522 0.00 2019-10-24 13:34:40 2019-10-24 13:35:49 t 1 1 133178 562 0.00 2019-10-24 13:39:27 2019-10-24 13:40:56 t 1 1 133181 591 0.00 2019-10-24 13:40:44 2019-10-24 13:44:08 t 1 1 133182 327 0.00 2019-10-24 13:43:40 2019-10-24 13:44:58 t 1 1 133185 501 0.00 2019-10-24 13:46:21 2019-10-24 13:47:30 t 1 1 133188 501 0.00 2019-10-24 13:47:40 2019-10-24 13:48:32 t 1 1 133191 516 0.00 2019-10-24 13:29:45 2019-10-24 13:50:57 t 1 1 133192 562 0.00 2019-10-24 13:51:04 2019-10-24 13:51:36 t 1 1 133196 501 0.00 2019-10-24 13:51:45 2019-10-24 13:55:58 t 1 1 133199 522 0.00 2019-10-24 13:57:13 2019-10-24 13:57:13 t 1 1 133201 220 0.00 2019-10-24 13:55:00 2019-10-24 13:57:38 t 1 2 133207 501 0.00 2019-10-24 14:00:00 2019-10-24 14:00:33 t 1 1 133210 412 0.00 2019-10-24 13:58:12 2019-10-24 14:01:09 t 1 1 133212 220 0.00 2019-10-24 13:31:50 2019-10-24 14:01:55 t 1 2 133213 220 0.00 2019-10-24 14:01:26 2019-10-24 14:01:57 t 1 1 133214 522 0.00 2019-10-24 14:02:10 2019-10-24 14:02:13 t 1 1 133216 220 0.00 2019-10-24 14:01:57 2019-10-24 14:03:06 t 1 1 133219 501 0.00 2019-10-24 14:03:27 2019-10-24 14:03:58 t 1 1 133220 220 0.00 2019-10-24 14:03:37 2019-10-24 14:04:12 t 1 1 133222 220 0.00 2019-10-24 14:04:11 2019-10-24 14:04:48 t 1 1 133226 220 0.00 2019-10-24 14:05:52 2019-10-24 14:06:23 t 1 1 133230 220 0.00 2019-10-24 14:07:27 2019-10-24 14:07:58 t 1 1 133238 220 0.00 2019-10-24 14:10:50 2019-10-24 14:11:24 t 1 1 133239 220 0.00 2019-10-24 14:11:24 2019-10-24 14:11:59 t 1 1 133241 503 0.00 2019-10-24 13:58:40 2019-10-24 14:12:47 t 1 1 133244 220 0.00 2019-10-24 14:13:07 2019-10-24 14:13:40 t 1 1 133249 451 0.00 2019-10-24 14:08:26 2019-10-24 14:16:48 t 1 1 133253 449 0.00 2019-10-24 14:17:00 2019-10-24 14:19:49 t 1 1 133254 522 0.00 2019-10-24 14:15:03 2019-10-24 14:20:31 t 1 1 133258 412 0.00 2019-10-24 14:22:50 2019-10-24 14:22:56 t 1 1 133261 522 0.00 2019-10-24 14:20:31 2019-10-24 14:24:24 t 1 1 133262 597 0.00 2019-10-24 13:52:30 2019-10-24 14:26:13 t 1 1 133265 522 0.00 2019-10-24 14:24:24 2019-10-24 14:27:26 t 1 1 133268 522 0.00 2019-10-24 14:27:31 2019-10-24 14:28:32 t 1 1 133270 589 0.00 2019-10-24 12:41:17 2019-10-24 14:29:46 t 1 1 133271 589 0.00 2019-10-24 14:29:46 2019-10-24 14:30:03 t 1 1 133272 562 0.00 2019-10-24 14:28:52 2019-10-24 14:30:36 t 1 1 133277 562 0.00 2019-10-24 14:30:48 2019-10-24 14:32:17 t 1 1 133279 562 0.00 2019-10-24 14:32:21 2019-10-24 14:32:41 t 1 1 133281 501 0.00 2019-10-24 14:33:44 2019-10-24 14:33:53 t 1 1 133285 585 0.00 2019-10-24 14:32:45 2019-10-24 14:35:20 t 1 1 133286 501 0.00 2019-10-24 14:35:28 2019-10-24 14:35:56 t 1 1 133287 562 0.00 2019-10-24 14:34:48 2019-10-24 14:36:19 t 1 1 133295 522 0.00 2019-10-24 14:28:37 2019-10-24 14:40:11 t 1 1 133299 522 0.00 2019-10-24 14:40:33 2019-10-24 14:41:00 t 1 1 133302 522 0.00 2019-10-24 14:41:05 2019-10-24 14:41:21 t 1 1 133308 538 0.00 2019-10-24 13:26:18 2019-10-24 14:42:51 t 1 1 133309 522 0.00 2019-10-24 14:41:59 2019-10-24 14:42:58 t 1 1 133312 416 0.00 2019-10-24 14:41:41 2019-10-24 14:43:21 t 1 1 133314 220 0.00 2019-10-24 14:41:19 2019-10-24 14:43:40 t 1 2 133315 522 0.00 2019-10-24 14:43:46 2019-10-24 14:44:08 t 1 1 133319 522 0.00 2019-10-24 14:44:33 2019-10-24 14:44:35 t 1 1 133320 562 0.00 2019-10-24 14:44:40 2019-10-24 14:45:11 t 1 1 133324 562 0.00 2019-10-24 14:45:18 2019-10-24 14:46:12 t 1 1 133327 220 0.00 2019-10-24 14:13:39 2019-10-24 14:47:00 t 1 1 133334 595 0.00 2019-10-24 14:45:19 2019-10-24 14:49:25 t 1 1 133336 522 0.00 2019-10-24 14:49:58 2019-10-24 14:50:10 t 1 1 133338 522 0.00 2019-10-24 14:50:21 2019-10-24 14:50:28 t 1 1 133344 522 0.00 2019-10-24 14:51:25 2019-10-24 14:51:40 t 1 1 133345 522 0.00 2019-10-24 14:51:45 2019-10-24 14:52:17 t 1 1 133347 522 0.00 2019-10-24 14:52:37 2019-10-24 14:53:00 t 1 1 61651 131 0.00 2018-04-05 13:11:42 2018-04-05 13:11:42 f 1 1 61652 131 0.00 2018-04-05 13:12:01 2018-04-05 13:12:01 f 1 1 61653 131 0.00 2018-04-05 13:12:18 2018-04-05 13:12:18 f 1 1 133357 528 0.00 2019-10-24 14:52:47 2019-10-24 14:59:54 t 1 1 133359 528 0.00 2019-10-24 15:01:51 2019-10-24 15:02:26 t 1 1 133360 514 0.00 2019-10-24 14:37:25 2019-10-24 15:03:39 t 1 1 133364 412 0.00 2019-10-24 14:30:59 2019-10-24 15:07:29 t 1 1 133365 568 0.00 2019-10-24 15:08:00 2019-10-24 15:09:59 t 1 1 133366 522 0.00 2019-10-24 15:06:09 2019-10-24 15:10:09 t 1 1 133369 412 0.00 2019-10-24 15:10:04 2019-10-24 15:12:14 t 1 1 133371 451 0.00 2019-10-24 14:49:46 2019-10-24 15:13:28 t 1 1 133373 528 0.00 2019-10-24 15:03:15 2019-10-24 15:14:15 t 1 1 133376 220 0.00 2019-10-24 14:47:29 2019-10-24 15:17:13 t 1 1 133381 570 0.00 2019-10-24 15:18:43 2019-10-24 15:19:57 t 1 1 133131 562 0.00 2019-10-24 13:03:38 2019-10-24 13:05:18 t 1 1 133132 514 0.00 2019-10-24 05:40:56 2019-10-24 13:05:26 t 1 1 133134 522 0.00 2019-10-24 13:06:03 2019-10-24 13:06:11 t 1 1 133136 522 0.00 2019-10-24 13:07:32 2019-10-24 13:08:10 t 1 1 133138 562 0.00 2019-10-24 13:08:37 2019-10-24 13:08:51 t 1 1 133140 522 0.00 2019-10-24 13:12:37 2019-10-24 13:12:40 t 1 1 133147 522 0.00 2019-10-24 13:16:42 2019-10-24 13:16:44 t 1 1 133148 522 0.00 2019-10-24 13:16:49 2019-10-24 13:17:05 t 1 1 133151 522 0.00 2019-10-24 13:17:49 2019-10-24 13:17:57 t 1 1 133153 375 0.00 2019-10-24 13:17:30 2019-10-24 13:19:43 t 1 1 133155 562 0.00 2019-10-24 13:13:15 2019-10-24 13:23:16 t 1 1 133161 516 0.00 2019-10-24 13:26:28 2019-10-24 13:28:03 t 1 1 133163 445 0.00 2019-10-24 13:27:40 2019-10-24 13:28:50 t 1 1 133164 562 0.00 2019-10-24 13:27:50 2019-10-24 13:29:10 t 1 1 133172 501 0.00 2019-10-24 13:29:58 2019-10-24 13:34:27 t 1 1 133173 562 0.00 2019-10-24 13:34:36 2019-10-24 13:35:36 t 1 1 133176 412 0.00 2019-10-24 12:55:05 2019-10-24 13:38:47 t 1 1 133177 591 0.00 2019-10-24 13:35:50 2019-10-24 13:39:54 t 1 1 133179 514 0.00 2019-10-24 13:36:57 2019-10-24 13:41:37 t 1 1 133180 522 0.00 2019-10-24 13:38:24 2019-10-24 13:42:49 t 1 1 133186 562 0.00 2019-10-24 13:43:51 2019-10-24 13:47:43 t 1 1 133190 412 0.00 2019-10-24 13:43:55 2019-10-24 13:50:55 t 1 1 133193 528 0.00 2019-10-24 13:48:25 2019-10-24 13:52:46 t 1 1 133200 522 0.00 2019-10-24 13:57:19 2019-10-24 13:57:22 t 1 1 133203 503 0.00 2019-10-24 13:34:37 2019-10-24 13:58:40 t 1 1 133205 501 0.00 2019-10-24 13:57:02 2019-10-24 13:58:56 t 1 1 133206 220 0.00 2019-10-24 13:50:00 2019-10-24 14:00:18 t 1 1 133208 220 0.00 2019-10-24 14:00:18 2019-10-24 14:00:51 t 1 1 133209 501 0.00 2019-10-24 14:01:00 2019-10-24 14:01:01 t 1 1 133211 220 0.00 2019-10-24 14:00:51 2019-10-24 14:01:26 t 1 1 133224 220 0.00 2019-10-24 14:05:20 2019-10-24 14:05:53 t 1 1 133229 220 0.00 2019-10-24 14:06:54 2019-10-24 14:07:27 t 1 1 133233 412 0.00 2019-10-24 14:07:31 2019-10-24 14:08:40 t 1 1 133234 220 0.00 2019-10-24 14:08:33 2019-10-24 14:09:10 t 1 1 133236 220 0.00 2019-10-24 14:09:44 2019-10-24 14:10:16 t 1 1 133240 220 0.00 2019-10-24 14:11:58 2019-10-24 14:12:32 t 1 1 133242 512 0.00 2019-10-24 14:11:02 2019-10-24 14:12:59 t 1 1 133245 412 0.00 2019-10-24 14:10:55 2019-10-24 14:14:13 t 1 1 133246 522 0.00 2019-10-24 14:02:57 2019-10-24 14:15:03 t 1 1 133248 562 0.00 2019-10-24 14:15:07 2019-10-24 14:15:44 t 1 1 133252 562 0.00 2019-10-24 14:18:39 2019-10-24 14:19:30 t 1 1 133256 498 0.00 2019-10-24 12:35:52 2019-10-24 14:21:34 t 1 2 133259 451 0.00 2019-10-24 14:16:48 2019-10-24 14:23:08 t 1 1 133263 483 0.00 2019-10-24 14:20:44 2019-10-24 14:26:25 t 1 1 133266 556 0.00 2019-10-24 14:15:03 2019-10-24 14:27:52 t 1 1 133267 562 0.00 2019-10-24 14:26:11 2019-10-24 14:28:28 t 1 1 133274 451 0.00 2019-10-24 14:23:08 2019-10-24 14:31:14 t 1 1 133275 501 0.00 2019-10-24 14:31:14 2019-10-24 14:31:23 t 1 1 133278 451 0.00 2019-10-24 14:31:14 2019-10-24 14:32:36 t 1 1 133284 416 0.00 2019-10-24 12:54:44 2019-10-24 14:35:13 t 1 1 133289 501 0.00 2019-10-24 14:36:13 2019-10-24 14:36:52 t 1 1 133292 562 0.00 2019-10-24 14:38:41 2019-10-24 14:39:06 t 1 1 133294 416 0.00 2019-10-24 14:37:42 2019-10-24 14:39:59 t 1 1 133298 220 0.00 2019-10-24 14:39:16 2019-10-24 14:40:29 t 1 2 133300 595 0.00 2019-10-24 14:30:32 2019-10-24 14:41:06 t 1 1 133303 416 0.00 2019-10-24 14:40:20 2019-10-24 14:41:37 t 1 1 133304 522 0.00 2019-10-24 14:41:40 2019-10-24 14:41:42 t 1 1 133306 501 0.00 2019-10-24 14:40:56 2019-10-24 14:41:55 t 1 1 133307 562 0.00 2019-10-24 14:41:07 2019-10-24 14:42:02 t 1 1 133311 522 0.00 2019-10-24 14:43:03 2019-10-24 14:43:10 t 1 1 133313 522 0.00 2019-10-24 14:43:26 2019-10-24 14:43:39 t 1 1 133317 501 0.00 2019-10-24 14:42:59 2019-10-24 14:44:14 t 1 1 133322 361 0.00 2019-10-24 13:48:41 2019-10-24 14:45:56 t 1 2 133326 522 0.00 2019-10-24 14:46:41 2019-10-24 14:46:59 t 1 1 133328 522 0.00 2019-10-24 14:47:06 2019-10-24 14:47:18 t 1 1 133333 528 0.00 2019-10-24 14:40:15 2019-10-24 14:49:09 t 1 1 133335 522 0.00 2019-10-24 14:49:28 2019-10-24 14:49:50 t 1 1 133339 522 0.00 2019-10-24 14:50:33 2019-10-24 14:50:35 t 1 1 133342 522 0.00 2019-10-24 14:50:52 2019-10-24 14:51:08 t 1 1 133346 522 0.00 2019-10-24 14:52:22 2019-10-24 14:52:24 t 1 1 133348 522 0.00 2019-10-24 14:53:12 2019-10-24 14:53:19 t 1 1 133349 522 0.00 2019-10-24 14:53:24 2019-10-24 14:54:08 t 1 1 133350 522 0.00 2019-10-24 14:54:13 2019-10-24 14:54:20 t 1 1 133353 597 0.00 2019-10-24 14:46:43 2019-10-24 14:57:49 t 1 1 133355 556 0.00 2019-10-24 14:46:00 2019-10-24 14:58:21 t 1 1 133361 562 0.00 2019-10-24 15:05:11 2019-10-24 15:05:38 t 1 1 133363 570 0.00 2019-10-24 15:02:18 2019-10-24 15:07:19 t 1 1 133368 568 0.00 2019-10-24 15:10:07 2019-10-24 15:11:50 t 1 1 133372 412 0.00 2019-10-24 15:12:14 2019-10-24 15:14:08 t 1 1 133374 522 0.00 2019-10-24 15:10:09 2019-10-24 15:15:49 t 1 1 133375 501 0.00 2019-10-24 14:44:36 2019-10-24 15:16:44 t 1 1 133378 570 0.00 2019-10-24 15:11:46 2019-10-24 15:18:43 t 1 1 133383 501 0.00 2019-10-24 15:16:44 2019-10-24 15:20:17 t 1 1 133387 528 0.00 2019-10-24 15:14:15 2019-10-24 15:22:04 t 1 1 133391 562 0.00 2019-10-24 15:23:08 2019-10-24 15:23:38 t 1 1 133392 528 0.00 2019-10-24 15:24:27 2019-10-24 15:24:45 t 1 1 133393 597 0.00 2019-10-24 15:21:29 2019-10-24 15:25:03 t 1 1 133394 556 0.00 2019-10-24 15:19:11 2019-10-24 15:25:35 t 1 1 133395 528 0.00 2019-10-24 15:25:28 2019-10-24 15:25:56 t 1 1 133398 451 0.00 2019-10-24 15:13:28 2019-10-24 15:26:08 t 1 1 133399 220 0.00 2019-10-24 15:26:06 2019-10-24 15:26:17 t 1 1 133400 220 0.00 2019-10-24 15:26:16 2019-10-24 15:26:26 t 1 1 133404 570 0.00 2019-10-24 15:22:29 2019-10-24 15:26:54 t 1 1 133407 556 0.00 2019-10-24 15:25:35 2019-10-24 15:28:25 t 1 1 133411 528 0.00 2019-10-24 15:30:41 2019-10-24 15:31:27 t 1 1 133413 585 0.00 2019-10-24 15:26:25 2019-10-24 15:33:58 t 1 1 133418 456 0.00 2019-10-24 15:35:13 2019-10-24 15:39:37 t 1 1 133419 528 0.00 2019-10-24 15:41:20 2019-10-24 15:41:42 t 1 1 133424 456 0.00 2019-10-24 15:39:53 2019-10-24 15:48:10 t 1 1 133427 220 0.00 2019-10-24 15:36:34 2019-10-24 15:50:04 t 1 1 133434 445 0.00 2019-10-24 15:52:30 2019-10-24 15:52:52 t 1 1 133437 220 0.00 2019-10-24 15:54:18 2019-10-24 15:54:51 t 1 1 133438 445 0.00 2019-10-24 15:53:08 2019-10-24 15:55:15 t 1 1 133442 220 0.00 2019-10-24 15:55:24 2019-10-24 15:55:58 t 1 1 133444 570 0.00 2019-10-24 15:29:03 2019-10-24 15:56:54 t 1 1 133445 220 0.00 2019-10-24 15:56:27 2019-10-24 15:57:08 t 1 1 133448 562 0.00 2019-10-24 15:57:49 2019-10-24 15:58:10 t 1 1 133283 327 0.00 2019-10-24 14:16:11 2019-10-24 14:35:09 t 1 1 133288 416 0.00 2019-10-24 14:35:41 2019-10-24 14:36:43 t 1 1 133290 514 0.00 2019-10-24 13:41:37 2019-10-24 14:37:25 t 1 1 133291 501 0.00 2019-10-24 14:37:55 2019-10-24 14:38:28 t 1 1 133293 501 0.00 2019-10-24 14:38:55 2019-10-24 14:39:28 t 1 1 133296 528 0.00 2019-10-24 14:17:53 2019-10-24 14:40:15 t 1 1 133297 501 0.00 2019-10-24 14:39:55 2019-10-24 14:40:28 t 1 1 133301 591 0.00 2019-10-24 14:38:18 2019-10-24 14:41:15 t 1 1 133305 522 0.00 2019-10-24 14:41:47 2019-10-24 14:41:54 t 1 1 133310 522 0.00 2019-10-24 14:41:34 2019-10-24 14:43:06 t 1 1 133316 562 0.00 2019-10-24 14:43:01 2019-10-24 14:44:13 t 1 1 133318 522 0.00 2019-10-24 14:44:20 2019-10-24 14:44:28 t 1 1 133321 522 0.00 2019-10-24 14:44:48 2019-10-24 14:45:17 t 1 1 133323 556 0.00 2019-10-24 14:27:52 2019-10-24 14:46:00 t 1 1 133325 522 0.00 2019-10-24 14:45:24 2019-10-24 14:46:21 t 1 1 133329 522 0.00 2019-10-24 14:47:26 2019-10-24 14:47:28 t 1 1 133330 522 0.00 2019-10-24 14:47:39 2019-10-24 14:47:46 t 1 1 133331 522 0.00 2019-10-24 14:47:51 2019-10-24 14:48:39 t 1 1 133332 522 0.00 2019-10-24 14:48:52 2019-10-24 14:49:08 t 1 1 133337 562 0.00 2019-10-24 14:49:45 2019-10-24 14:50:12 t 1 1 133340 522 0.00 2019-10-24 14:50:40 2019-10-24 14:50:47 t 1 1 133341 595 0.00 2019-10-24 14:49:37 2019-10-24 14:51:06 t 1 1 133343 522 0.00 2019-10-24 14:51:13 2019-10-24 14:51:19 t 1 1 133351 562 0.00 2019-10-24 14:54:15 2019-10-24 14:54:53 t 1 1 133352 522 0.00 2019-10-24 14:54:36 2019-10-24 14:55:04 t 1 1 133354 483 0.00 2019-10-24 14:26:48 2019-10-24 14:58:02 t 1 1 133356 481 0.00 2019-10-24 14:02:35 2019-10-24 14:58:46 t 1 1 133358 522 0.00 2019-10-24 14:55:11 2019-10-24 15:01:17 t 1 1 133362 522 0.00 2019-10-24 15:01:17 2019-10-24 15:06:09 t 1 1 133367 570 0.00 2019-10-24 15:07:19 2019-10-24 15:11:46 t 1 1 133370 562 0.00 2019-10-24 15:12:08 2019-10-24 15:12:37 t 1 1 133377 445 0.00 2019-10-24 13:28:54 2019-10-24 15:17:22 t 1 1 133379 445 0.00 2019-10-24 15:17:30 2019-10-24 15:18:45 t 1 1 133380 556 0.00 2019-10-24 14:58:21 2019-10-24 15:19:11 t 1 1 133382 220 0.00 2019-10-24 15:17:12 2019-10-24 15:20:10 t 1 1 133384 449 0.00 2019-10-24 15:14:38 2019-10-24 15:20:49 t 1 1 133385 220 0.00 2019-10-24 15:20:10 2019-10-24 15:21:03 t 1 1 133386 483 0.00 2019-10-24 15:17:40 2019-10-24 15:21:59 t 1 1 133389 412 0.00 2019-10-24 15:14:08 2019-10-24 15:23:04 t 1 1 133390 528 0.00 2019-10-24 15:23:17 2019-10-24 15:23:30 t 1 1 133396 220 0.00 2019-10-24 12:52:43 2019-10-24 15:25:57 t 1 1 133397 220 0.00 2019-10-24 15:25:56 2019-10-24 15:26:07 t 1 1 133401 220 0.00 2019-10-24 15:26:26 2019-10-24 15:26:36 t 1 1 133403 220 0.00 2019-10-24 15:21:03 2019-10-24 15:26:53 t 1 1 133405 220 0.00 2019-10-24 15:26:45 2019-10-24 15:26:56 t 1 1 133406 412 0.00 2019-10-24 15:26:59 2019-10-24 15:28:13 t 1 1 133409 508 0.00 2019-10-24 15:19:08 2019-10-24 15:29:40 t 1 2 133414 220 0.00 2019-10-24 15:33:11 2019-10-24 15:35:34 t 1 1 133416 451 0.00 2019-10-24 15:26:08 2019-10-24 15:38:49 t 1 1 133417 325 0.00 2019-10-24 15:04:04 2019-10-24 15:39:10 t 1 2 133421 597 0.00 2019-10-24 15:25:53 2019-10-24 15:43:22 t 1 1 133422 451 0.00 2019-10-24 15:38:49 2019-10-24 15:44:04 t 1 1 133423 562 0.00 2019-10-24 15:43:56 2019-10-24 15:45:06 t 1 1 133425 456 0.00 2019-10-24 15:48:40 2019-10-24 15:48:40 f 1 1 133426 220 0.00 2019-10-24 15:26:55 2019-10-24 15:49:26 t 1 1 133428 220 0.00 2019-10-24 15:50:04 2019-10-24 15:50:44 t 1 1 133430 528 0.00 2019-10-24 15:51:31 2019-10-24 15:51:59 t 1 1 133432 445 0.00 2019-10-24 15:20:46 2019-10-24 15:52:14 t 1 1 133433 220 0.00 2019-10-24 15:52:05 2019-10-24 15:52:45 t 1 1 133435 562 0.00 2019-10-24 15:51:21 2019-10-24 15:53:00 t 1 1 133439 220 0.00 2019-10-24 15:54:51 2019-10-24 15:55:25 t 1 1 133441 422 0.00 2019-10-24 15:41:49 2019-10-24 15:55:44 t 1 1 133443 220 0.00 2019-10-24 15:55:58 2019-10-24 15:56:28 t 1 1 133446 220 0.00 2019-10-24 15:57:08 2019-10-24 15:57:43 t 1 1 133447 361 0.00 2019-10-24 15:04:18 2019-10-24 15:58:07 t 1 2 133449 220 0.00 2019-10-24 15:57:42 2019-10-24 15:58:17 t 1 1 133450 220 0.00 2019-10-24 15:58:17 2019-10-24 15:58:51 t 1 1 133455 422 0.00 2019-10-24 15:55:44 2019-10-24 16:06:58 t 1 1 133459 485 0.00 2019-10-24 16:03:32 2019-10-24 16:13:39 t 1 1 133464 520 0.00 2019-10-24 16:18:23 2019-10-24 16:19:35 t 1 1 133471 445 0.00 2019-10-24 15:58:52 2019-10-24 16:27:43 t 1 1 133476 220 0.00 2019-10-24 16:00:00 2019-10-24 16:36:10 t 1 1 133478 485 0.00 2019-10-24 16:37:10 2019-10-24 16:40:23 t 1 1 133487 562 0.00 2019-10-24 16:51:13 2019-10-24 16:52:38 t 1 1 133490 375 0.00 2019-10-24 13:20:00 2019-10-24 16:56:48 t 1 1 133491 578 0.00 2019-10-24 16:47:55 2019-10-24 16:57:28 t 1 1 133492 514 0.00 2019-10-24 16:41:01 2019-10-24 16:58:00 t 1 1 133496 512 0.00 2019-10-24 14:17:26 2019-10-24 16:59:58 t 1 1 133497 562 0.00 2019-10-24 16:59:09 2019-10-24 17:01:26 t 1 1 133502 339 0.00 2019-10-24 15:25:15 2019-10-24 17:05:39 t 1 2 133503 562 0.00 2019-10-24 17:05:28 2019-10-24 17:06:29 t 1 1 133511 485 0.00 2019-10-24 17:16:52 2019-10-24 17:18:33 t 1 1 133512 485 0.00 2019-10-24 17:18:33 2019-10-24 17:19:35 t 1 1 133514 526 0.00 2019-10-24 17:19:50 2019-10-24 17:20:01 t 1 1 133517 445 0.00 2019-10-24 16:30:37 2019-10-24 17:21:10 t 1 1 133523 456 0.00 2019-10-24 17:22:07 2019-10-24 17:23:36 t 1 1 133528 591 0.00 2019-10-24 17:10:54 2019-10-24 17:26:56 t 1 1 133529 595 0.00 2019-10-24 17:25:18 2019-10-24 17:27:09 t 1 1 133532 595 0.00 2019-10-24 17:30:41 2019-10-24 17:32:15 t 1 1 133535 562 0.00 2019-10-24 17:32:34 2019-10-24 17:34:55 t 1 1 133542 591 0.00 2019-10-24 17:26:56 2019-10-24 17:40:47 t 1 1 133548 514 0.00 2019-10-24 16:58:00 2019-10-24 17:43:37 t 1 1 133549 562 0.00 2019-10-24 17:43:07 2019-10-24 17:45:42 t 1 1 133550 595 0.00 2019-10-24 17:43:32 2019-10-24 17:47:43 t 1 1 133551 591 0.00 2019-10-24 17:40:47 2019-10-24 17:48:50 t 1 1 133552 514 0.00 2019-10-24 17:43:37 2019-10-24 17:49:13 t 1 1 133555 512 0.00 2019-10-24 16:59:58 2019-10-24 17:50:45 t 1 1 133556 562 0.00 2019-10-24 17:50:59 2019-10-24 17:54:06 t 1 1 133560 528 0.00 2019-10-24 17:24:39 2019-10-24 17:57:32 t 1 1 133561 562 0.00 2019-10-24 17:57:07 2019-10-24 17:58:24 t 1 1 133562 562 0.00 2019-10-24 17:59:16 2019-10-24 18:00:35 t 1 1 133563 578 0.00 2019-10-24 17:12:49 2019-10-24 18:01:05 t 1 1 133571 528 0.00 2019-10-24 17:57:46 2019-10-24 18:07:14 t 1 1 133575 485 0.00 2019-10-24 18:01:41 2019-10-24 18:09:28 t 1 1 133576 451 0.00 2019-10-24 18:00:26 2019-10-24 18:11:09 t 1 1 133579 220 0.00 2019-10-24 18:15:02 2019-10-24 18:15:16 t 1 1 133581 488 0.00 2019-10-24 18:16:27 2019-10-24 18:16:27 f 1 1 133388 522 0.00 2019-10-24 15:15:49 2019-10-24 15:22:58 t 1 1 133402 220 0.00 2019-10-24 15:26:36 2019-10-24 15:26:46 t 1 1 133408 379 0.00 2019-10-24 12:56:29 2019-10-24 15:29:17 t 1 1 133410 556 0.00 2019-10-24 15:28:25 2019-10-24 15:31:22 t 1 1 133412 220 0.00 2019-10-24 15:27:22 2019-10-24 15:33:12 t 1 1 133415 220 0.00 2019-10-24 15:35:33 2019-10-24 15:36:32 t 1 1 133420 422 0.00 2019-10-24 11:00:52 2019-10-24 15:41:49 t 1 1 133429 544 0.00 2019-10-24 15:13:48 2019-10-24 15:51:58 t 1 2 133431 220 0.00 2019-10-24 15:50:44 2019-10-24 15:52:05 t 1 1 133436 220 0.00 2019-10-24 15:52:45 2019-10-24 15:54:18 t 1 1 133440 412 0.00 2019-10-24 15:28:13 2019-10-24 15:55:28 t 1 1 133452 220 0.00 2019-10-24 15:59:26 2019-10-24 16:00:01 t 1 1 133453 562 0.00 2019-10-24 16:00:23 2019-10-24 16:01:05 t 1 1 133454 570 0.00 2019-10-24 15:58:39 2019-10-24 16:05:57 t 1 1 133458 528 0.00 2019-10-24 15:54:16 2019-10-24 16:13:11 t 1 1 133460 514 0.00 2019-10-24 15:03:39 2019-10-24 16:15:15 t 1 1 133461 591 0.00 2019-10-24 16:09:45 2019-10-24 16:16:46 t 1 1 133463 220 0.00 2019-10-24 16:17:38 2019-10-24 16:18:53 t 1 2 133466 485 0.00 2019-10-24 16:13:39 2019-10-24 16:20:16 t 1 1 133468 456 0.00 2019-10-24 15:48:57 2019-10-24 16:23:36 t 1 1 133469 485 0.00 2019-10-24 16:20:16 2019-10-24 16:24:09 t 1 1 133472 445 0.00 2019-10-24 16:27:39 2019-10-24 16:28:52 t 1 1 133474 562 0.00 2019-10-24 16:31:05 2019-10-24 16:31:15 t 1 1 133475 570 0.00 2019-10-24 16:06:01 2019-10-24 16:33:49 t 1 1 133477 485 0.00 2019-10-24 16:24:08 2019-10-24 16:37:10 t 1 1 133479 514 0.00 2019-10-24 16:15:15 2019-10-24 16:41:01 t 1 1 133480 562 0.00 2019-10-24 16:41:48 2019-10-24 16:41:56 t 1 1 133483 220 0.00 2019-10-24 16:45:11 2019-10-24 16:46:35 t 1 2 133484 578 0.00 2019-10-24 12:07:29 2019-10-24 16:47:55 t 1 1 133485 485 0.00 2019-10-24 16:40:23 2019-10-24 16:48:28 t 1 1 133486 520 0.00 2019-10-24 16:46:01 2019-10-24 16:50:08 t 1 1 133488 220 0.00 2019-10-24 16:47:15 2019-10-24 16:53:39 t 1 2 133494 485 0.00 2019-10-24 16:48:28 2019-10-24 16:58:27 t 1 1 133500 581 0.00 2019-10-24 16:54:47 2019-10-24 17:02:56 t 1 1 133504 485 0.00 2019-10-24 16:58:27 2019-10-24 17:09:06 t 1 1 133506 220 0.00 2019-10-24 16:54:40 2019-10-24 17:11:44 t 1 2 133509 485 0.00 2019-10-24 17:09:06 2019-10-24 17:16:52 t 1 1 133510 587 0.00 2019-10-24 17:06:10 2019-10-24 17:16:59 t 1 1 133513 526 0.00 2019-10-24 17:19:36 2019-10-24 17:19:44 t 1 1 133515 485 0.00 2019-10-24 17:19:08 2019-10-24 17:20:10 t 1 1 133519 526 0.00 2019-10-24 17:20:10 2019-10-24 17:22:04 t 1 1 133522 544 0.00 2019-10-24 17:16:28 2019-10-24 17:23:20 t 1 2 133526 597 0.00 2019-10-24 17:03:27 2019-10-24 17:25:11 t 1 1 133527 581 0.00 2019-10-24 17:02:56 2019-10-24 17:26:34 t 1 1 133531 562 0.00 2019-10-24 17:16:14 2019-10-24 17:31:37 t 1 1 133534 562 0.00 2019-10-24 17:31:43 2019-10-24 17:32:24 t 1 1 133538 581 0.00 2019-10-24 17:35:58 2019-10-24 17:37:36 t 1 1 133540 520 0.00 2019-10-24 16:54:49 2019-10-24 17:38:29 t 1 1 133541 485 0.00 2019-10-24 17:35:32 2019-10-24 17:39:03 t 1 1 133543 408 0.00 2019-10-24 17:39:56 2019-10-24 17:40:56 t 1 1 133545 587 0.00 2019-10-24 17:17:16 2019-10-24 17:42:06 t 1 1 133554 562 0.00 2019-10-24 17:47:59 2019-10-24 17:50:26 t 1 1 133557 562 0.00 2019-10-24 17:54:24 2019-10-24 17:54:30 t 1 1 133564 485 0.00 2019-10-24 17:49:50 2019-10-24 18:01:41 t 1 1 133565 516 0.00 2019-10-24 17:42:48 2019-10-24 18:02:45 t 1 1 133566 483 0.00 2019-10-24 15:22:14 2019-10-24 18:03:26 t 1 1 133569 520 0.00 2019-10-24 17:38:48 2019-10-24 18:05:56 t 1 1 133570 339 0.00 2019-10-24 18:00:39 2019-10-24 18:07:11 t 1 2 133572 587 0.00 2019-10-24 17:57:02 2019-10-24 18:07:52 t 1 1 133574 445 0.00 2019-10-24 17:21:18 2019-10-24 18:09:08 t 1 1 133578 488 0.00 2019-10-24 18:14:57 2019-10-24 18:14:57 f 1 1 133580 578 0.00 2019-10-24 18:01:05 2019-10-24 18:15:51 t 1 1 133582 488 0.00 2019-10-24 18:16:37 2019-10-24 18:16:37 f 1 1 133584 488 0.00 2019-10-24 18:17:22 2019-10-24 18:17:22 f 1 1 133585 488 0.00 2019-10-24 18:18:11 2019-10-24 18:18:11 f 1 1 133586 488 0.00 2019-10-24 18:18:27 2019-10-24 18:18:27 f 1 1 133587 488 0.00 2019-10-24 18:18:55 2019-10-24 18:18:55 f 1 1 133588 488 0.00 2019-10-24 18:19:01 2019-10-24 18:19:01 f 1 1 133595 514 0.00 2019-10-24 17:49:13 2019-10-24 18:23:34 t 1 1 133605 488 0.00 2019-10-24 18:28:35 2019-10-24 18:28:35 f 1 1 133613 564 0.00 2019-10-24 18:31:42 2019-10-24 18:38:02 t 1 1 133615 520 0.00 2019-10-24 18:28:45 2019-10-24 18:40:10 t 1 1 133617 562 0.00 2019-10-24 18:40:24 2019-10-24 18:40:50 t 1 1 133624 488 0.00 2019-10-24 18:48:41 2019-10-24 18:48:41 f 1 1 133625 488 0.00 2019-10-24 18:48:51 2019-10-24 18:48:51 f 1 1 133626 488 0.00 2019-10-24 18:48:58 2019-10-24 18:48:58 f 1 1 133630 488 0.00 2019-10-24 18:51:07 2019-10-24 18:51:07 f 1 1 133632 562 0.00 2019-10-24 18:51:11 2019-10-24 18:51:32 t 1 1 133636 488 0.00 2019-10-24 18:53:16 2019-10-24 18:53:16 f 1 1 133637 514 0.00 2019-10-24 18:53:02 2019-10-24 18:54:14 t 1 1 133639 536 0.00 2019-10-24 18:54:41 2019-10-24 18:54:57 t 1 1 133641 520 0.00 2019-10-24 18:45:13 2019-10-24 18:55:12 t 1 1 133647 536 0.00 2019-10-24 18:58:17 2019-10-24 18:58:49 t 1 1 133650 536 0.00 2019-10-24 18:59:03 2019-10-24 19:02:51 t 1 1 133656 587 0.00 2019-10-24 18:48:32 2019-10-24 19:06:54 t 1 1 133658 456 0.00 2019-10-24 19:07:12 2019-10-24 19:07:17 t 1 1 133660 583 0.00 2019-10-24 19:03:56 2019-10-24 19:08:54 t 1 1 133662 488 0.00 2019-10-24 19:09:21 2019-10-24 19:09:21 f 1 1 133674 512 0.00 2019-10-24 19:12:46 2019-10-24 19:18:01 t 1 1 133675 583 0.00 2019-10-24 19:15:02 2019-10-24 19:19:19 t 1 1 133677 536 0.00 2019-10-24 19:03:35 2019-10-24 19:20:13 t 1 1 133682 536 0.00 2019-10-24 19:22:20 2019-10-24 19:25:05 t 1 1 133684 587 0.00 2019-10-24 19:25:39 2019-10-24 19:25:54 t 1 1 133685 536 0.00 2019-10-24 19:26:17 2019-10-24 19:26:24 t 1 1 133690 536 0.00 2019-10-24 19:29:18 2019-10-24 19:29:25 t 1 1 133694 589 0.00 2019-10-24 19:22:48 2019-10-24 19:30:19 t 1 1 133698 536 0.00 2019-10-24 19:32:16 2019-10-24 19:32:18 t 1 1 133699 536 0.00 2019-10-24 19:32:33 2019-10-24 19:32:44 t 1 1 133701 536 0.00 2019-10-24 19:33:34 2019-10-24 19:33:42 t 1 1 133702 562 0.00 2019-10-24 19:33:14 2019-10-24 19:34:21 t 1 1 133705 562 0.00 2019-10-24 19:35:07 2019-10-24 19:35:59 t 1 1 133707 566 0.00 2019-10-24 19:28:33 2019-10-24 19:37:58 t 1 1 133709 587 0.00 2019-10-24 19:32:26 2019-10-24 19:38:11 t 1 1 133711 570 0.00 2019-10-24 18:55:32 2019-10-24 19:38:52 t 1 1 133713 536 0.00 2019-10-24 19:39:29 2019-10-24 19:39:40 t 1 1 133717 536 0.00 2019-10-24 19:41:29 2019-10-24 19:41:37 t 1 1 133718 536 0.00 2019-10-24 19:40:28 2019-10-24 19:42:06 t 1 1 133451 220 0.00 2019-10-24 15:58:51 2019-10-24 15:59:26 t 1 1 133456 585 0.00 2019-10-24 16:04:59 2019-10-24 16:08:17 t 1 1 133457 562 0.00 2019-10-24 16:08:40 2019-10-24 16:09:05 t 1 1 133462 520 0.00 2019-10-24 16:01:47 2019-10-24 16:18:23 t 1 1 133465 562 0.00 2019-10-24 16:19:30 2019-10-24 16:19:44 t 1 1 133467 562 0.00 2019-10-24 16:20:32 2019-10-24 16:23:22 t 1 1 133470 361 0.00 2019-10-24 16:07:36 2019-10-24 16:27:14 t 1 2 133473 445 0.00 2019-10-24 16:28:58 2019-10-24 16:30:13 t 1 1 133481 520 0.00 2019-10-24 16:19:34 2019-10-24 16:44:54 t 1 1 133482 520 0.00 2019-10-24 16:44:54 2019-10-24 16:46:01 t 1 1 133489 520 0.00 2019-10-24 16:50:08 2019-10-24 16:54:17 t 1 1 133493 570 0.00 2019-10-24 16:33:56 2019-10-24 16:58:20 t 1 1 133495 562 0.00 2019-10-24 16:58:14 2019-10-24 16:58:54 t 1 1 133498 570 0.00 2019-10-24 16:58:19 2019-10-24 17:01:53 t 1 1 133499 422 0.00 2019-10-24 16:06:58 2019-10-24 17:02:52 t 1 1 133501 578 0.00 2019-10-24 16:57:28 2019-10-24 17:04:40 t 1 1 133505 562 0.00 2019-10-24 17:10:53 2019-10-24 17:11:14 t 1 1 133507 578 0.00 2019-10-24 17:04:40 2019-10-24 17:12:49 t 1 1 133508 595 0.00 2019-10-24 17:10:42 2019-10-24 17:16:42 t 1 1 133516 220 0.00 2019-10-24 16:36:10 2019-10-24 17:20:39 t 1 1 61942 131 0.00 2018-04-11 11:07:58 2018-04-11 11:09:44 t 1 1 133518 220 0.00 2019-10-24 17:06:54 2019-10-24 17:21:59 t 1 2 133520 595 0.00 2019-10-24 17:21:44 2019-10-24 17:22:45 t 1 1 133521 456 0.00 2019-10-24 17:20:32 2019-10-24 17:23:01 t 1 1 133524 595 0.00 2019-10-24 17:22:58 2019-10-24 17:23:57 t 1 1 133525 595 0.00 2019-10-24 17:24:08 2019-10-24 17:25:08 t 1 1 133530 570 0.00 2019-10-24 17:01:55 2019-10-24 17:30:32 t 1 1 133533 220 0.00 2019-10-24 17:27:15 2019-10-24 17:32:21 t 1 2 133536 581 0.00 2019-10-24 17:31:09 2019-10-24 17:35:47 t 1 1 133537 562 0.00 2019-10-24 17:36:10 2019-10-24 17:37:21 t 1 1 133539 595 0.00 2019-10-24 17:37:18 2019-10-24 17:38:19 t 1 1 133544 562 0.00 2019-10-24 17:41:29 2019-10-24 17:41:58 t 1 1 133546 485 0.00 2019-10-24 17:40:57 2019-10-24 17:42:15 t 1 1 133547 595 0.00 2019-10-24 17:42:21 2019-10-24 17:43:21 t 1 1 133553 485 0.00 2019-10-24 17:42:15 2019-10-24 17:49:50 t 1 1 133558 361 0.00 2019-10-24 17:27:32 2019-10-24 17:54:40 t 1 2 133559 562 0.00 2019-10-24 17:54:37 2019-10-24 17:55:19 t 1 1 133567 562 0.00 2019-10-24 18:03:24 2019-10-24 18:04:41 t 1 1 133568 422 0.00 2019-10-24 17:43:12 2019-10-24 18:05:34 t 1 1 133573 481 0.00 2019-10-24 17:45:13 2019-10-24 18:07:53 t 1 1 133577 562 0.00 2019-10-24 18:11:01 2019-10-24 18:11:21 t 1 1 133583 488 0.00 2019-10-24 18:16:52 2019-10-24 18:16:52 f 1 1 133590 449 0.00 2019-10-24 18:17:17 2019-10-24 18:19:22 t 1 1 133592 585 0.00 2019-10-24 18:13:14 2019-10-24 18:19:42 t 1 1 133593 591 0.00 2019-10-24 18:18:22 2019-10-24 18:19:59 t 1 1 133597 585 0.00 2019-10-24 18:21:54 2019-10-24 18:25:47 t 1 1 133598 488 0.00 2019-10-24 18:26:20 2019-10-24 18:26:20 f 1 1 133599 488 0.00 2019-10-24 18:26:32 2019-10-24 18:26:32 f 1 1 133600 488 0.00 2019-10-24 18:27:11 2019-10-24 18:27:11 f 1 1 133602 451 0.00 2019-10-24 18:11:08 2019-10-24 18:27:28 t 1 1 133606 520 0.00 2019-10-24 18:26:23 2019-10-24 18:28:45 t 1 1 133608 583 0.00 2019-10-24 18:15:48 2019-10-24 18:30:30 t 1 1 133609 587 0.00 2019-10-24 18:07:52 2019-10-24 18:32:16 t 1 1 133611 583 0.00 2019-10-24 18:30:30 2019-10-24 18:32:39 t 1 1 133616 514 0.00 2019-10-24 18:31:53 2019-10-24 18:40:37 t 1 1 133619 562 0.00 2019-10-24 18:41:08 2019-10-24 18:41:47 t 1 1 133621 520 0.00 2019-10-24 18:41:18 2019-10-24 18:45:13 t 1 1 133627 488 0.00 2019-10-24 18:49:06 2019-10-24 18:49:06 f 1 1 133628 585 0.00 2019-10-24 18:42:53 2019-10-24 18:50:16 t 1 1 133631 451 0.00 2019-10-24 18:44:48 2019-10-24 18:51:18 t 1 1 133634 325 0.00 2019-10-24 18:48:20 2019-10-24 18:52:01 t 1 2 133638 536 0.00 2019-10-24 18:48:48 2019-10-24 18:54:32 t 1 1 133640 536 0.00 2019-10-24 18:55:02 2019-10-24 18:55:08 t 1 1 133642 536 0.00 2019-10-24 18:55:13 2019-10-24 18:55:30 t 1 1 133644 488 0.00 2019-10-24 18:56:22 2019-10-24 18:56:22 f 1 1 133645 536 0.00 2019-10-24 18:55:55 2019-10-24 18:57:51 t 1 1 133646 481 0.00 2019-10-24 18:07:53 2019-10-24 18:58:40 t 1 1 133648 488 0.00 2019-10-24 18:59:06 2019-10-24 18:59:06 f 1 1 133649 562 0.00 2019-10-24 19:01:46 2019-10-24 19:02:12 t 1 1 133651 585 0.00 2019-10-24 18:57:07 2019-10-24 19:04:07 t 1 1 133653 528 0.00 2019-10-24 18:54:26 2019-10-24 19:06:00 t 1 1 133655 514 0.00 2019-10-24 18:54:13 2019-10-24 19:06:47 t 1 1 133663 488 0.00 2019-10-24 19:09:31 2019-10-24 19:09:31 f 1 1 133664 587 0.00 2019-10-24 19:06:58 2019-10-24 19:09:56 t 1 1 133665 456 0.00 2019-10-24 19:07:54 2019-10-24 19:10:12 t 1 1 133668 587 0.00 2019-10-24 19:09:56 2019-10-24 19:12:43 t 1 1 133671 591 0.00 2019-10-24 18:39:02 2019-10-24 19:14:16 t 1 1 133678 562 0.00 2019-10-24 19:20:15 2019-10-24 19:20:43 t 1 1 133681 562 0.00 2019-10-24 19:24:13 2019-10-24 19:25:04 t 1 1 133687 536 0.00 2019-10-24 19:26:59 2019-10-24 19:27:37 t 1 1 133693 485 0.00 2019-10-24 19:27:06 2019-10-24 19:30:09 t 1 1 133695 536 0.00 2019-10-24 19:30:42 2019-10-24 19:30:49 t 1 1 133696 587 0.00 2019-10-24 19:29:53 2019-10-24 19:31:01 t 1 1 133703 536 0.00 2019-10-24 19:34:54 2019-10-24 19:35:17 t 1 1 133706 536 0.00 2019-10-24 19:35:45 2019-10-24 19:36:17 t 1 1 133714 536 0.00 2019-10-24 19:40:34 2019-10-24 19:40:45 t 1 1 133715 536 0.00 2019-10-24 19:40:56 2019-10-24 19:41:07 t 1 1 133719 536 0.00 2019-10-24 19:42:15 2019-10-24 19:42:21 t 1 1 133722 536 0.00 2019-10-24 19:42:54 2019-10-24 19:42:55 t 1 1 133723 536 0.00 2019-10-24 19:43:08 2019-10-24 19:43:20 t 1 1 133725 591 0.00 2019-10-24 19:14:16 2019-10-24 19:43:56 t 1 1 133726 536 0.00 2019-10-24 19:44:08 2019-10-24 19:44:09 t 1 1 133728 536 0.00 2019-10-24 19:44:27 2019-10-24 19:44:56 t 1 1 133731 562 0.00 2019-10-24 19:45:01 2019-10-24 19:45:43 t 1 1 133734 536 0.00 2019-10-24 19:46:10 2019-10-24 19:46:53 t 1 1 133736 498 0.00 2019-10-24 16:54:48 2019-10-24 19:49:00 t 1 2 133740 587 0.00 2019-10-24 19:47:49 2019-10-24 19:50:34 t 1 1 133743 544 0.00 2019-10-24 19:36:22 2019-10-24 19:51:25 t 1 2 133744 585 0.00 2019-10-24 19:47:40 2019-10-24 19:52:25 t 1 1 133746 562 0.00 2019-10-24 19:52:59 2019-10-24 19:53:06 t 1 1 133748 585 0.00 2019-10-24 19:52:29 2019-10-24 19:55:52 t 1 1 133751 551 0.00 2019-10-24 19:52:31 2019-10-24 19:58:31 t 1 1 133752 536 0.00 2019-10-24 19:53:51 2019-10-24 19:58:53 t 1 1 133755 536 0.00 2019-10-24 19:59:51 2019-10-24 20:00:13 t 1 1 62192 131 0.00 2018-04-17 09:50:15 2018-04-17 09:51:48 t 1 1 133761 536 0.00 2019-10-24 20:00:56 2019-10-24 20:01:09 t 1 1 133767 607 0.00 2019-10-24 20:02:37 2019-10-24 20:02:37 f 1 1 133589 562 0.00 2019-10-24 18:18:55 2019-10-24 18:19:14 t 1 1 133591 488 0.00 2019-10-24 18:19:39 2019-10-24 18:19:39 f 1 1 133594 578 0.00 2019-10-24 18:15:51 2019-10-24 18:23:30 t 1 1 133596 520 0.00 2019-10-24 18:07:51 2019-10-24 18:23:37 t 1 1 133601 488 0.00 2019-10-24 18:27:26 2019-10-24 18:27:26 f 1 1 133603 488 0.00 2019-10-24 18:27:50 2019-10-24 18:27:50 f 1 1 133604 488 0.00 2019-10-24 18:28:02 2019-10-24 18:28:02 f 1 1 133607 562 0.00 2019-10-24 18:29:41 2019-10-24 18:30:21 t 1 1 133610 564 0.00 2019-10-24 17:31:38 2019-10-24 18:32:37 t 1 1 133612 587 0.00 2019-10-24 18:32:16 2019-10-24 18:35:39 t 1 1 133614 587 0.00 2019-10-24 18:36:59 2019-10-24 18:39:19 t 1 1 133618 520 0.00 2019-10-24 18:40:10 2019-10-24 18:41:18 t 1 1 133620 564 0.00 2019-10-24 18:38:02 2019-10-24 18:44:58 t 1 1 133622 514 0.00 2019-10-24 18:45:08 2019-10-24 18:47:34 t 1 1 133623 587 0.00 2019-10-24 18:39:37 2019-10-24 18:48:18 t 1 1 133629 514 0.00 2019-10-24 18:48:29 2019-10-24 18:51:01 t 1 1 133633 488 0.00 2019-10-24 18:52:00 2019-10-24 18:52:00 f 1 1 133635 488 0.00 2019-10-24 18:52:27 2019-10-24 18:52:27 f 1 1 133643 583 0.00 2019-10-24 18:41:58 2019-10-24 18:55:43 t 1 1 133652 562 0.00 2019-10-24 19:04:29 2019-10-24 19:04:52 t 1 1 133654 481 0.00 2019-10-24 18:58:55 2019-10-24 19:06:21 t 1 1 133657 488 0.00 2019-10-24 19:07:09 2019-10-24 19:07:09 f 1 1 133659 488 0.00 2019-10-24 19:08:09 2019-10-24 19:08:09 f 1 1 133661 488 0.00 2019-10-24 19:09:14 2019-10-24 19:09:14 f 1 1 133666 516 0.00 2019-10-24 18:42:22 2019-10-24 19:10:25 t 1 1 133667 514 0.00 2019-10-24 19:08:17 2019-10-24 19:11:15 t 1 1 133669 325 0.00 2019-10-24 18:52:46 2019-10-24 19:12:51 t 1 2 133670 514 0.00 2019-10-24 19:11:15 2019-10-24 19:13:54 t 1 1 133672 562 0.00 2019-10-24 19:09:37 2019-10-24 19:14:42 t 1 1 133673 583 0.00 2019-10-24 19:08:54 2019-10-24 19:15:02 t 1 1 133676 430 0.00 2019-10-24 19:13:19 2019-10-24 19:19:26 t 1 1 133679 585 0.00 2019-10-24 19:19:59 2019-10-24 19:22:42 t 1 1 133680 514 0.00 2019-10-24 19:16:32 2019-10-24 19:23:02 t 1 1 133683 587 0.00 2019-10-24 19:13:02 2019-10-24 19:25:27 t 1 1 133686 516 0.00 2019-10-24 19:10:24 2019-10-24 19:27:35 t 1 1 133688 566 0.00 2019-10-24 19:16:06 2019-10-24 19:28:33 t 1 1 133689 220 0.00 2019-10-24 19:21:50 2019-10-24 19:29:14 t 1 2 133691 430 0.00 2019-10-24 19:19:26 2019-10-24 19:29:29 t 1 1 133692 536 0.00 2019-10-24 19:29:36 2019-10-24 19:29:41 t 1 1 133697 562 0.00 2019-10-24 19:30:55 2019-10-24 19:31:59 t 1 1 133700 536 0.00 2019-10-24 19:33:23 2019-10-24 19:33:29 t 1 1 133704 581 0.00 2019-10-24 19:34:04 2019-10-24 19:35:52 t 1 1 133708 562 0.00 2019-10-24 19:36:05 2019-10-24 19:38:02 t 1 1 133710 562 0.00 2019-10-24 19:38:07 2019-10-24 19:38:19 t 1 1 133712 593 0.00 2019-10-24 19:23:40 2019-10-24 19:39:38 t 1 1 133716 536 0.00 2019-10-24 19:41:14 2019-10-24 19:41:22 t 1 1 133720 536 0.00 2019-10-24 19:42:26 2019-10-24 19:42:28 t 1 1 133724 536 0.00 2019-10-24 19:43:25 2019-10-24 19:43:31 t 1 1 133730 538 0.00 2019-10-24 14:42:51 2019-10-24 19:45:24 t 1 1 133738 551 0.00 2019-10-24 19:39:01 2019-10-24 19:49:15 t 1 1 133739 536 0.00 2019-10-24 19:49:21 2019-10-24 19:49:48 t 1 1 133742 587 0.00 2019-10-24 19:50:58 2019-10-24 19:51:09 t 1 1 133745 551 0.00 2019-10-24 19:49:15 2019-10-24 19:52:31 t 1 1 133750 528 0.00 2019-10-24 19:47:22 2019-10-24 19:56:52 t 1 1 133754 562 0.00 2019-10-24 19:58:52 2019-10-24 19:59:19 t 1 1 133759 570 0.00 2019-10-24 19:46:53 2019-10-24 20:01:00 t 1 1 133760 585 0.00 2019-10-24 19:55:57 2019-10-24 20:01:05 t 1 1 133763 536 0.00 2019-10-24 20:01:42 2019-10-24 20:01:50 t 1 1 133764 372 0.00 2019-10-24 18:41:52 2019-10-24 20:01:57 t 1 2 133768 607 0.00 2019-10-24 20:02:45 2019-10-24 20:02:45 f 1 1 133774 607 0.00 2019-10-24 20:03:50 2019-10-24 20:03:50 f 1 1 133777 562 0.00 2019-10-24 20:02:16 2019-10-24 20:04:01 t 1 1 133784 562 0.00 2019-10-24 20:06:31 2019-10-24 20:06:47 t 1 1 133785 562 0.00 2019-10-24 20:07:00 2019-10-24 20:07:10 t 1 1 133788 536 0.00 2019-10-24 20:07:51 2019-10-24 20:07:58 t 1 1 133793 430 0.00 2019-10-24 19:29:29 2019-10-24 20:10:28 t 1 1 133796 536 0.00 2019-10-24 20:11:00 2019-10-24 20:11:07 t 1 1 133800 551 0.00 2019-10-24 20:11:34 2019-10-24 20:13:17 t 1 1 133806 593 0.00 2019-10-24 20:13:17 2019-10-24 20:16:01 t 1 1 133813 562 0.00 2019-10-24 20:21:52 2019-10-24 20:22:57 t 1 1 133815 536 0.00 2019-10-24 20:24:21 2019-10-24 20:24:37 t 1 1 133816 562 0.00 2019-10-24 20:23:24 2019-10-24 20:25:08 t 1 1 133821 587 0.00 2019-10-24 20:02:16 2019-10-24 20:29:26 t 1 1 133822 488 0.00 2019-10-24 20:30:35 2019-10-24 20:30:35 f 1 1 133823 536 0.00 2019-10-24 20:29:55 2019-10-24 20:31:06 t 1 1 133826 536 0.00 2019-10-24 20:30:43 2019-10-24 20:31:45 t 1 1 133831 566 0.00 2019-10-24 20:33:11 2019-10-24 20:35:07 t 1 1 133834 516 0.00 2019-10-24 20:35:01 2019-10-24 20:36:52 t 1 1 133838 536 0.00 2019-10-24 20:40:27 2019-10-24 20:40:34 t 1 1 133846 536 0.00 2019-10-24 20:43:57 2019-10-24 20:44:15 t 1 1 133847 536 0.00 2019-10-24 20:46:11 2019-10-24 20:46:24 t 1 1 133851 536 0.00 2019-10-24 20:48:57 2019-10-24 20:49:04 t 1 1 133855 591 0.00 2019-10-24 20:50:41 2019-10-24 20:51:11 t 1 1 133858 514 0.00 2019-10-24 19:23:17 2019-10-24 20:52:52 t 1 1 133860 558 0.00 2019-10-24 20:52:35 2019-10-24 20:55:23 t 1 1 133862 599 0.00 2019-10-24 20:54:36 2019-10-24 20:58:26 t 1 1 133863 570 0.00 2019-10-24 20:20:20 2019-10-24 20:59:36 t 1 1 133864 372 0.00 2019-10-24 20:50:01 2019-10-24 21:00:07 t 1 2 133870 481 0.00 2019-10-24 19:19:13 2019-10-24 21:06:34 t 1 1 133873 430 0.00 2019-10-24 20:56:36 2019-10-24 21:10:17 t 1 1 133876 585 0.00 2019-10-24 21:04:13 2019-10-24 21:12:43 t 1 1 133883 562 0.00 2019-10-24 21:06:46 2019-10-24 21:16:30 t 1 1 133885 566 0.00 2019-10-24 21:06:40 2019-10-24 21:19:58 t 1 1 133887 562 0.00 2019-10-24 21:21:22 2019-10-24 21:21:28 t 1 1 133888 595 0.00 2019-10-24 21:14:32 2019-10-24 21:25:03 t 1 1 133894 595 0.00 2019-10-24 21:25:45 2019-10-24 21:28:16 t 1 1 133901 607 0.00 2019-10-24 21:15:28 2019-10-24 21:32:25 t 1 1 133902 562 0.00 2019-10-24 21:26:09 2019-10-24 21:32:29 t 1 1 133904 488 0.00 2019-10-24 21:32:45 2019-10-24 21:32:45 f 1 1 133906 488 0.00 2019-10-24 21:34:38 2019-10-24 21:34:38 f 1 1 62162 131 0.00 2018-04-17 00:17:16 2018-04-17 00:18:48 t 1 1 133909 595 0.00 2019-10-24 21:36:24 2019-10-24 21:36:30 t 1 1 133912 599 0.00 2019-10-24 21:02:45 2019-10-24 21:37:13 t 1 1 133914 566 0.00 2019-10-24 21:19:58 2019-10-24 21:38:10 t 1 1 133917 220 0.00 2019-10-24 20:29:17 2019-10-24 21:40:41 t 1 2 133921 408 0.00 2019-10-24 21:38:13 2019-10-24 21:42:25 t 1 1 133923 408 0.00 2019-10-24 21:44:26 2019-10-24 21:44:40 t 1 1 133721 536 0.00 2019-10-24 19:42:39 2019-10-24 19:42:47 t 1 1 133727 585 0.00 2019-10-24 19:41:46 2019-10-24 19:44:15 t 1 1 133729 488 0.00 2019-10-24 19:45:24 2019-10-24 19:45:24 f 1 1 133732 536 0.00 2019-10-24 19:45:18 2019-10-24 19:45:45 t 1 1 133733 528 0.00 2019-10-24 19:06:14 2019-10-24 19:46:43 t 1 1 133735 587 0.00 2019-10-24 19:38:28 2019-10-24 19:47:31 t 1 1 133737 536 0.00 2019-10-24 19:47:05 2019-10-24 19:49:15 t 1 1 133741 220 0.00 2019-10-24 18:51:43 2019-10-24 19:51:04 t 1 1 133747 536 0.00 2019-10-24 19:49:53 2019-10-24 19:53:25 t 1 1 133749 583 0.00 2019-10-24 19:45:13 2019-10-24 19:56:41 t 1 1 133753 536 0.00 2019-10-24 19:59:02 2019-10-24 19:59:11 t 1 1 133756 375 0.00 2019-10-24 16:56:48 2019-10-24 20:00:29 t 1 1 133757 536 0.00 2019-10-24 20:00:29 2019-10-24 20:00:51 t 1 1 133758 607 0.00 2019-10-24 19:56:13 2019-10-24 20:00:58 t 1 2 133762 607 0.00 2019-10-24 20:01:02 2019-10-24 20:01:47 t 1 1 133765 607 0.00 2019-10-24 20:02:14 2019-10-24 20:02:14 f 1 1 133766 587 0.00 2019-10-24 19:52:10 2019-10-24 20:02:17 t 1 1 133769 607 0.00 2019-10-24 20:02:53 2019-10-24 20:02:53 f 1 1 133772 536 0.00 2019-10-24 20:03:18 2019-10-24 20:03:30 t 1 1 133775 607 0.00 2019-10-24 20:03:56 2019-10-24 20:03:56 f 1 1 133776 607 0.00 2019-10-24 20:04:01 2019-10-24 20:04:01 f 1 1 133778 607 0.00 2019-10-24 20:04:06 2019-10-24 20:04:06 f 1 1 133779 607 0.00 2019-10-24 20:04:28 2019-10-24 20:04:28 f 1 1 133781 607 0.00 2019-10-24 20:03:22 2019-10-24 20:04:32 t 1 1 133782 536 0.00 2019-10-24 20:05:47 2019-10-24 20:06:04 t 1 1 133787 566 0.00 2019-10-24 19:59:03 2019-10-24 20:07:26 t 1 1 133789 536 0.00 2019-10-24 20:08:07 2019-10-24 20:08:14 t 1 1 133791 536 0.00 2019-10-24 20:08:19 2019-10-24 20:08:37 t 1 1 133792 536 0.00 2019-10-24 20:09:13 2019-10-24 20:09:49 t 1 1 133799 562 0.00 2019-10-24 20:12:43 2019-10-24 20:13:05 t 1 1 133801 593 0.00 2019-10-24 19:39:38 2019-10-24 20:13:18 t 1 1 133804 536 0.00 2019-10-24 20:15:01 2019-10-24 20:15:08 t 1 1 133808 562 0.00 2019-10-24 20:18:11 2019-10-24 20:19:00 t 1 1 133814 591 0.00 2019-10-24 20:12:09 2019-10-24 20:23:05 t 1 1 133817 536 0.00 2019-10-24 20:25:36 2019-10-24 20:25:49 t 1 1 133819 599 0.00 2019-10-24 18:48:17 2019-10-24 20:28:11 t 1 1 133820 536 0.00 2019-10-24 20:28:15 2019-10-24 20:28:21 t 1 1 133825 562 0.00 2019-10-24 20:30:10 2019-10-24 20:31:18 t 1 1 133827 566 0.00 2019-10-24 20:18:11 2019-10-24 20:33:11 t 1 1 133828 536 0.00 2019-10-24 20:33:53 2019-10-24 20:33:55 t 1 1 133829 587 0.00 2019-10-24 20:31:54 2019-10-24 20:34:20 t 1 1 133830 536 0.00 2019-10-24 20:34:04 2019-10-24 20:35:04 t 1 1 133832 607 0.00 2019-10-24 20:26:27 2019-10-24 20:35:25 t 1 1 133840 585 0.00 2019-10-24 20:16:40 2019-10-24 20:41:11 t 1 1 133843 538 0.00 2019-10-24 20:22:58 2019-10-24 20:42:21 t 1 1 133845 485 0.00 2019-10-24 20:32:39 2019-10-24 20:44:03 t 1 1 133850 430 0.00 2019-10-24 20:41:07 2019-10-24 20:48:54 t 1 1 133856 536 0.00 2019-10-24 20:50:12 2019-10-24 20:51:20 t 1 1 133859 599 0.00 2019-10-24 20:49:42 2019-10-24 20:54:36 t 1 1 133866 599 0.00 2019-10-24 20:58:26 2019-10-24 21:02:45 t 1 1 133867 538 0.00 2019-10-24 20:45:18 2019-10-24 21:03:35 t 1 1 133874 430 0.00 2019-10-24 21:10:22 2019-10-24 21:10:24 t 1 1 133880 607 0.00 2019-10-24 20:41:15 2019-10-24 21:15:28 t 1 1 133881 430 0.00 2019-10-24 21:15:39 2019-10-24 21:15:46 t 1 1 133890 430 0.00 2019-10-24 21:18:57 2019-10-24 21:26:07 t 1 1 133892 587 0.00 2019-10-24 21:06:33 2019-10-24 21:26:54 t 1 1 133896 449 0.00 2019-10-24 21:25:30 2019-10-24 21:28:54 t 1 1 133897 430 0.00 2019-10-24 21:27:00 2019-10-24 21:29:00 t 1 1 133907 583 0.00 2019-10-24 21:27:32 2019-10-24 21:35:08 t 1 1 133911 481 0.00 2019-10-24 21:07:19 2019-10-24 21:37:12 t 1 1 133915 408 0.00 2019-10-24 21:34:50 2019-10-24 21:38:13 t 1 1 62071 131 0.00 2018-04-14 01:00:23 2018-04-14 01:01:48 t 1 1 133916 562 0.00 2019-10-24 21:32:28 2019-10-24 21:39:01 t 1 1 133918 544 0.00 2019-10-24 21:29:59 2019-10-24 21:41:28 t 1 2 133920 595 0.00 2019-10-24 21:42:03 2019-10-24 21:42:23 t 1 1 133922 408 0.00 2019-10-24 21:42:37 2019-10-24 21:42:56 t 1 1 133924 520 0.00 2019-10-24 21:35:04 2019-10-24 21:44:53 t 1 1 133925 587 0.00 2019-10-24 21:30:17 2019-10-24 21:46:51 t 1 1 133927 361 0.00 2019-10-24 19:50:48 2019-10-24 21:47:37 t 1 2 133928 485 0.00 2019-10-24 21:46:00 2019-10-24 21:49:00 t 1 1 133929 566 0.00 2019-10-24 21:38:10 2019-10-24 21:50:36 t 1 1 133932 566 0.00 2019-10-24 21:50:36 2019-10-24 21:53:07 t 1 1 133944 562 0.00 2019-10-24 21:56:26 2019-10-24 21:57:45 t 1 1 133947 408 0.00 2019-10-24 21:49:17 2019-10-24 21:59:37 t 1 1 133949 520 0.00 2019-10-24 21:44:52 2019-10-24 22:00:15 t 1 1 133950 220 0.00 2019-10-24 22:00:12 2019-10-24 22:01:38 t 1 1 133954 597 0.00 2019-10-24 21:59:53 2019-10-24 22:03:23 t 1 1 133959 581 0.00 2019-10-24 22:05:31 2019-10-24 22:05:43 t 1 1 133960 607 0.00 2019-10-24 22:06:06 2019-10-24 22:06:11 t 1 1 133963 581 0.00 2019-10-24 22:06:52 2019-10-24 22:06:57 t 1 1 133965 520 0.00 2019-10-24 22:06:47 2019-10-24 22:08:47 t 1 1 133974 451 0.00 2019-10-24 21:56:25 2019-10-24 22:13:45 t 1 1 133976 578 0.00 2019-10-24 22:03:36 2019-10-24 22:15:31 t 1 1 133977 581 0.00 2019-10-24 22:13:58 2019-10-24 22:16:06 t 1 1 133978 430 0.00 2019-10-24 22:16:16 2019-10-24 22:17:02 t 1 1 133979 514 0.00 2019-10-24 20:52:52 2019-10-24 22:17:25 t 1 1 133982 445 0.00 2019-10-24 21:58:28 2019-10-24 22:18:14 t 1 1 133984 430 0.00 2019-10-24 22:19:07 2019-10-24 22:19:14 t 1 1 133987 578 0.00 2019-10-24 22:15:31 2019-10-24 22:21:12 t 1 1 133989 361 0.00 2019-10-24 21:52:20 2019-10-24 22:21:41 t 1 2 62167 131 0.00 2018-04-17 03:35:47 2018-04-17 03:36:48 t 1 1 133992 514 0.00 2019-10-24 22:17:25 2019-10-24 22:23:21 t 1 1 134001 430 0.00 2019-10-24 22:28:33 2019-10-24 22:29:33 t 1 1 134004 220 0.00 2019-10-24 22:28:31 2019-10-24 22:30:38 t 1 1 134011 485 0.00 2019-10-24 22:30:55 2019-10-24 22:33:54 t 1 1 134013 508 0.00 2019-10-24 21:50:22 2019-10-24 22:36:13 t 1 2 134015 220 0.00 2019-10-24 22:11:19 2019-10-24 22:39:33 t 1 2 134016 585 0.00 2019-10-24 22:34:25 2019-10-24 22:40:00 t 1 1 134021 595 0.00 2019-10-24 22:43:21 2019-10-24 22:43:49 t 1 1 134022 485 0.00 2019-10-24 22:42:41 2019-10-24 22:45:48 t 1 1 134025 595 0.00 2019-10-24 22:49:07 2019-10-24 22:49:31 t 1 1 134029 562 0.00 2019-10-24 22:22:34 2019-10-24 22:50:55 t 1 1 134033 597 0.00 2019-10-24 22:33:34 2019-10-24 22:53:52 t 1 1 134034 290 0.00 2019-10-24 22:54:07 2019-10-24 22:54:07 f 1 2 134055 585 0.00 2019-10-24 23:18:16 2019-10-24 23:28:20 t 1 1 134056 587 0.00 2019-10-24 23:12:36 2019-10-24 23:29:04 t 1 1 134059 595 0.00 2019-10-24 23:33:01 2019-10-24 23:33:41 t 1 1 133770 607 0.00 2019-10-24 20:01:56 2019-10-24 20:03:04 t 1 1 133771 544 0.00 2019-10-24 20:01:21 2019-10-24 20:03:26 t 1 2 133773 607 0.00 2019-10-24 20:03:38 2019-10-24 20:03:38 f 1 1 133780 536 0.00 2019-10-24 20:04:29 2019-10-24 20:04:31 t 1 1 133783 536 0.00 2019-10-24 20:06:22 2019-10-24 20:06:30 t 1 1 133786 585 0.00 2019-10-24 20:01:36 2019-10-24 20:07:24 t 1 1 133790 591 0.00 2019-10-24 20:04:25 2019-10-24 20:08:22 t 1 1 133794 536 0.00 2019-10-24 20:09:53 2019-10-24 20:10:31 t 1 1 133795 562 0.00 2019-10-24 20:10:48 2019-10-24 20:10:59 t 1 1 133797 551 0.00 2019-10-24 19:58:31 2019-10-24 20:11:34 t 1 1 133798 220 0.00 2019-10-24 19:58:22 2019-10-24 20:12:58 t 1 1 133802 536 0.00 2019-10-24 20:13:42 2019-10-24 20:13:55 t 1 1 133803 536 0.00 2019-10-24 20:14:19 2019-10-24 20:14:41 t 1 1 133805 536 0.00 2019-10-24 20:15:13 2019-10-24 20:15:28 t 1 1 133807 566 0.00 2019-10-24 20:07:26 2019-10-24 20:18:11 t 1 1 133809 536 0.00 2019-10-24 20:19:21 2019-10-24 20:19:23 t 1 1 133810 570 0.00 2019-10-24 20:01:00 2019-10-24 20:20:20 t 1 1 133811 536 0.00 2019-10-24 20:20:29 2019-10-24 20:20:42 t 1 1 133812 536 0.00 2019-10-24 20:22:04 2019-10-24 20:22:21 t 1 1 133818 607 0.00 2019-10-24 20:04:41 2019-10-24 20:26:27 t 1 1 133824 591 0.00 2019-10-24 20:28:52 2019-10-24 20:31:07 t 1 1 133833 587 0.00 2019-10-24 20:34:39 2019-10-24 20:35:41 t 1 1 133835 536 0.00 2019-10-24 20:35:17 2019-10-24 20:36:55 t 1 1 133836 536 0.00 2019-10-24 20:39:12 2019-10-24 20:39:22 t 1 1 133837 412 0.00 2019-10-24 15:55:28 2019-10-24 20:40:04 t 1 1 133839 607 0.00 2019-10-24 20:35:25 2019-10-24 20:41:10 t 1 1 133841 536 0.00 2019-10-24 20:41:03 2019-10-24 20:41:20 t 1 1 133842 562 0.00 2019-10-24 20:41:39 2019-10-24 20:42:03 t 1 1 133844 536 0.00 2019-10-24 20:42:28 2019-10-24 20:42:46 t 1 1 133848 583 0.00 2019-10-24 20:38:45 2019-10-24 20:46:54 t 1 1 133849 220 0.00 2019-10-24 20:22:09 2019-10-24 20:48:02 t 1 2 133852 599 0.00 2019-10-24 20:28:11 2019-10-24 20:49:42 t 1 1 133853 536 0.00 2019-10-24 20:49:46 2019-10-24 20:49:54 t 1 1 133854 430 0.00 2019-10-24 20:48:54 2019-10-24 20:50:44 t 1 1 133857 445 0.00 2019-10-24 18:11:57 2019-10-24 20:52:13 t 1 1 133861 583 0.00 2019-10-24 20:46:54 2019-10-24 20:55:41 t 1 1 133865 585 0.00 2019-10-24 20:47:55 2019-10-24 21:02:17 t 1 1 133868 562 0.00 2019-10-24 20:46:56 2019-10-24 21:05:00 t 1 1 133869 587 0.00 2019-10-24 20:34:51 2019-10-24 21:06:11 t 1 1 133871 566 0.00 2019-10-24 21:00:51 2019-10-24 21:06:40 t 1 1 133872 562 0.00 2019-10-24 21:06:07 2019-10-24 21:06:47 t 1 1 133875 220 0.00 2019-10-24 21:09:47 2019-10-24 21:12:21 t 1 2 133877 430 0.00 2019-10-24 21:10:37 2019-10-24 21:12:51 t 1 1 133878 430 0.00 2019-10-24 21:10:29 2019-10-24 21:13:06 t 1 1 133879 430 0.00 2019-10-24 21:12:58 2019-10-24 21:14:39 t 1 1 133882 430 0.00 2019-10-24 21:15:15 2019-10-24 21:16:16 t 1 1 133884 562 0.00 2019-10-24 21:16:30 2019-10-24 21:18:16 t 1 1 133886 562 0.00 2019-10-24 21:18:16 2019-10-24 21:21:15 t 1 1 133889 449 0.00 2019-10-24 21:21:01 2019-10-24 21:25:30 t 1 1 133891 562 0.00 2019-10-24 21:22:18 2019-10-24 21:26:09 t 1 1 133893 583 0.00 2019-10-24 21:22:04 2019-10-24 21:27:32 t 1 1 133895 587 0.00 2019-10-24 21:27:07 2019-10-24 21:28:28 t 1 1 133898 449 0.00 2019-10-24 21:28:54 2019-10-24 21:30:44 t 1 1 133899 595 0.00 2019-10-24 21:31:16 2019-10-24 21:31:28 t 1 1 133900 595 0.00 2019-10-24 21:31:40 2019-10-24 21:32:01 t 1 1 133903 595 0.00 2019-10-24 21:32:11 2019-10-24 21:32:33 t 1 1 133905 488 0.00 2019-10-24 21:34:21 2019-10-24 21:34:21 f 1 1 133908 544 0.00 2019-10-24 20:51:14 2019-10-24 21:36:19 t 1 2 133910 595 0.00 2019-10-24 21:36:44 2019-10-24 21:37:06 t 1 1 133913 585 0.00 2019-10-24 21:12:43 2019-10-24 21:37:23 t 1 1 133919 595 0.00 2019-10-24 21:40:14 2019-10-24 21:42:00 t 1 1 133931 595 0.00 2019-10-24 21:49:02 2019-10-24 21:53:05 t 1 1 133933 607 0.00 2019-10-24 21:32:25 2019-10-24 21:53:16 t 1 1 133934 595 0.00 2019-10-24 21:53:20 2019-10-24 21:53:40 t 1 1 133935 595 0.00 2019-10-24 21:53:48 2019-10-24 21:54:11 t 1 1 133936 595 0.00 2019-10-24 21:54:22 2019-10-24 21:54:24 t 1 1 133937 566 0.00 2019-10-24 21:53:07 2019-10-24 21:55:26 t 1 1 133938 578 0.00 2019-10-24 18:23:30 2019-10-24 21:56:13 t 1 1 133940 445 0.00 2019-10-24 21:51:03 2019-10-24 21:56:23 t 1 1 133942 566 0.00 2019-10-24 21:55:26 2019-10-24 21:57:15 t 1 1 133943 595 0.00 2019-10-24 21:57:21 2019-10-24 21:57:26 t 1 1 62424 131 0.00 2018-04-24 04:43:42 2018-04-24 04:44:52 t 1 1 62425 131 0.00 2018-04-24 04:54:09 2018-04-24 04:55:52 t 1 1 133951 566 0.00 2019-10-24 21:59:28 2019-10-24 22:02:06 t 1 1 133952 595 0.00 2019-10-24 22:02:11 2019-10-24 22:02:19 t 1 1 133956 578 0.00 2019-10-24 21:56:13 2019-10-24 22:03:36 t 1 1 133957 566 0.00 2019-10-24 22:02:06 2019-10-24 22:04:15 t 1 1 133958 581 0.00 2019-10-24 22:04:46 2019-10-24 22:04:53 t 1 1 133964 595 0.00 2019-10-24 22:07:19 2019-10-24 22:07:26 t 1 1 133967 581 0.00 2019-10-24 22:08:46 2019-10-24 22:08:53 t 1 1 133968 581 0.00 2019-10-24 22:10:00 2019-10-24 22:10:05 t 1 1 133969 581 0.00 2019-10-24 22:11:28 2019-10-24 22:12:07 t 1 1 133971 562 0.00 2019-10-24 22:09:06 2019-10-24 22:12:54 t 1 1 133972 566 0.00 2019-10-24 22:04:15 2019-10-24 22:13:16 t 1 1 133973 581 0.00 2019-10-24 22:13:26 2019-10-24 22:13:41 t 1 1 133975 595 0.00 2019-10-24 22:13:21 2019-10-24 22:15:06 t 1 1 133980 595 0.00 2019-10-24 22:17:35 2019-10-24 22:17:41 t 1 1 133985 581 0.00 2019-10-24 22:18:46 2019-10-24 22:19:36 t 1 1 133986 591 0.00 2019-10-24 22:18:33 2019-10-24 22:21:09 t 1 1 133988 595 0.00 2019-10-24 22:21:02 2019-10-24 22:21:21 t 1 1 133994 514 0.00 2019-10-24 22:23:20 2019-10-24 22:23:45 t 1 1 133999 430 0.00 2019-10-24 22:27:33 2019-10-24 22:27:41 t 1 1 134003 430 0.00 2019-10-24 22:29:17 2019-10-24 22:30:02 t 1 1 134005 430 0.00 2019-10-24 22:30:43 2019-10-24 22:30:50 t 1 1 134008 430 0.00 2019-10-24 22:31:23 2019-10-24 22:32:24 t 1 1 134009 581 0.00 2019-10-24 22:32:47 2019-10-24 22:33:29 t 1 1 134020 581 0.00 2019-10-24 22:42:38 2019-10-24 22:43:23 t 1 1 134023 595 0.00 2019-10-24 22:44:31 2019-10-24 22:46:25 t 1 1 134026 544 0.00 2019-10-24 22:30:23 2019-10-24 22:49:55 t 1 2 134027 595 0.00 2019-10-24 22:49:40 2019-10-24 22:50:05 t 1 1 134030 595 0.00 2019-10-24 22:50:47 2019-10-24 22:51:08 t 1 1 134035 290 0.00 2019-10-24 22:54:25 2019-10-24 22:54:25 f 1 2 134041 562 0.00 2019-10-24 22:50:55 2019-10-24 23:01:47 t 1 1 134042 597 0.00 2019-10-24 23:04:12 2019-10-24 23:08:06 t 1 1 134043 585 0.00 2019-10-24 23:07:22 2019-10-24 23:09:32 t 1 1 134045 587 0.00 2019-10-24 23:09:44 2019-10-24 23:12:06 t 1 1 134047 333 0.00 2019-10-24 22:56:04 2019-10-24 23:13:25 t 1 2 133926 595 0.00 2019-10-24 21:46:37 2019-10-24 21:46:53 t 1 1 133930 445 0.00 2019-10-24 20:53:46 2019-10-24 21:51:03 t 1 1 133939 562 0.00 2019-10-24 21:54:21 2019-10-24 21:56:20 t 1 1 133941 595 0.00 2019-10-24 21:57:03 2019-10-24 21:57:11 t 1 1 133945 220 0.00 2019-10-24 21:42:08 2019-10-24 21:58:31 t 1 2 133946 566 0.00 2019-10-24 21:57:15 2019-10-24 21:59:28 t 1 1 133948 607 0.00 2019-10-24 21:53:16 2019-10-24 21:59:59 t 1 1 133953 595 0.00 2019-10-24 22:02:29 2019-10-24 22:02:51 t 1 1 133955 581 0.00 2019-10-24 21:58:56 2019-10-24 22:03:36 t 1 1 62228 131 0.00 2018-04-18 02:20:16 2018-04-18 02:21:48 t 1 1 133961 520 0.00 2019-10-24 22:00:18 2019-10-24 22:06:45 t 1 1 133962 562 0.00 2019-10-24 21:57:50 2019-10-24 22:06:56 t 1 1 133966 520 0.00 2019-10-24 22:08:46 2019-10-24 22:08:53 t 1 1 133970 595 0.00 2019-10-24 22:12:25 2019-10-24 22:12:32 t 1 1 133981 430 0.00 2019-10-24 22:17:12 2019-10-24 22:18:01 t 1 1 133983 430 0.00 2019-10-24 22:18:08 2019-10-24 22:19:02 t 1 1 133990 485 0.00 2019-10-24 22:13:07 2019-10-24 22:21:55 t 1 1 133991 562 0.00 2019-10-24 22:22:11 2019-10-24 22:22:25 t 1 1 133993 581 0.00 2019-10-24 22:22:56 2019-10-24 22:23:34 t 1 1 133995 585 0.00 2019-10-24 21:42:04 2019-10-24 22:24:59 t 1 1 133996 430 0.00 2019-10-24 22:26:29 2019-10-24 22:26:36 t 1 1 133997 430 0.00 2019-10-24 22:26:41 2019-10-24 22:26:57 t 1 1 133998 585 0.00 2019-10-24 22:24:59 2019-10-24 22:27:37 t 1 1 134000 585 0.00 2019-10-24 22:27:36 2019-10-24 22:29:10 t 1 1 134002 587 0.00 2019-10-24 22:11:03 2019-10-24 22:29:38 t 1 1 134006 430 0.00 2019-10-24 22:31:33 2019-10-24 22:31:33 f 1 1 134007 430 0.00 2019-10-24 22:30:10 2019-10-24 22:32:06 t 1 1 134010 585 0.00 2019-10-24 22:31:55 2019-10-24 22:33:51 t 1 1 134012 220 0.00 2019-10-24 22:30:38 2019-10-24 22:34:43 t 1 1 134014 220 0.00 2019-10-24 22:34:18 2019-10-24 22:36:22 t 1 1 134017 595 0.00 2019-10-24 22:36:06 2019-10-24 22:40:46 t 1 1 134018 581 0.00 2019-10-24 22:41:07 2019-10-24 22:41:24 t 1 1 134019 485 0.00 2019-10-24 22:33:54 2019-10-24 22:42:41 t 1 1 134024 595 0.00 2019-10-24 22:48:49 2019-10-24 22:48:58 t 1 1 134028 595 0.00 2019-10-24 22:50:15 2019-10-24 22:50:36 t 1 1 134031 508 0.00 2019-10-24 22:38:59 2019-10-24 22:51:44 t 1 2 134032 544 0.00 2019-10-24 22:50:50 2019-10-24 22:53:24 t 1 2 134036 290 0.00 2019-10-24 22:54:50 2019-10-24 22:54:50 f 1 2 134037 595 0.00 2019-10-24 22:53:50 2019-10-24 22:55:17 t 1 1 134038 485 0.00 2019-10-24 22:51:27 2019-10-24 22:56:35 t 1 1 134039 585 0.00 2019-10-24 22:50:54 2019-10-24 22:58:27 t 1 1 134040 456 0.00 2019-10-24 22:58:46 2019-10-24 23:00:58 t 1 1 134044 587 0.00 2019-10-24 22:29:51 2019-10-24 23:09:44 t 1 1 134046 581 0.00 2019-10-24 22:45:23 2019-10-24 23:12:42 t 1 1 134048 570 0.00 2019-10-24 23:02:25 2019-10-24 23:14:18 t 1 1 134052 585 0.00 2019-10-24 23:09:32 2019-10-24 23:18:17 t 1 1 134053 581 0.00 2019-10-24 23:12:59 2019-10-24 23:20:54 t 1 1 134058 544 0.00 2019-10-24 23:12:56 2019-10-24 23:31:34 t 1 2 134062 485 0.00 2019-10-24 23:31:05 2019-10-24 23:37:45 t 1 1 134063 483 0.00 2019-10-24 23:34:15 2019-10-24 23:39:11 t 1 1 134064 333 0.00 2019-10-24 23:34:37 2019-10-24 23:42:13 t 1 2 134066 595 0.00 2019-10-24 23:44:06 2019-10-24 23:44:34 t 1 1 62347 131 0.00 2018-04-21 08:12:45 2018-04-21 08:13:50 t 1 1 134068 483 0.00 2019-10-24 23:43:43 2019-10-24 23:47:05 t 1 1 134071 591 0.00 2019-10-24 23:58:21 2019-10-24 23:58:53 t 1 1 134072 607 0.00 2019-10-24 23:32:32 2019-10-24 23:59:47 t 1 1 134076 591 0.00 2019-10-24 23:58:57 2019-10-25 00:06:41 t 1 1 134077 591 0.00 2019-10-25 00:06:41 2019-10-25 00:06:45 t 1 1 134079 451 0.00 2019-10-24 23:51:35 2019-10-25 00:09:33 t 1 1 134081 490 0.00 2019-10-25 00:09:38 2019-10-25 00:15:01 t 1 1 134084 512 0.00 2019-10-24 23:09:47 2019-10-25 00:17:31 t 1 1 134085 562 0.00 2019-10-25 00:06:44 2019-10-25 00:18:50 t 1 1 134086 570 0.00 2019-10-25 00:05:46 2019-10-25 00:19:02 t 1 1 134089 512 0.00 2019-10-25 00:17:30 2019-10-25 00:21:36 t 1 1 134093 375 0.00 2019-10-25 00:16:22 2019-10-25 00:28:30 t 1 1 134095 570 0.00 2019-10-25 00:24:22 2019-10-25 00:29:37 t 1 1 134096 607 0.00 2019-10-25 00:24:18 2019-10-25 00:31:30 t 1 1 134108 327 0.00 2019-10-25 00:24:49 2019-10-25 00:51:51 t 1 1 134110 551 0.00 2019-10-25 00:42:06 2019-10-25 00:53:15 t 1 1 134116 327 0.00 2019-10-25 01:02:11 2019-10-25 01:03:21 t 1 1 134117 562 0.00 2019-10-25 01:07:52 2019-10-25 01:08:16 t 1 1 134129 562 0.00 2019-10-25 01:36:55 2019-10-25 01:37:28 t 1 1 134131 503 0.00 2019-10-25 01:15:39 2019-10-25 01:40:02 t 1 1 62397 131 0.00 2018-04-23 00:17:43 2018-04-23 00:18:51 t 1 1 134132 595 0.00 2019-10-25 01:40:23 2019-10-25 01:40:30 t 1 1 134133 595 0.00 2019-10-25 01:40:40 2019-10-25 01:41:02 t 1 1 134139 562 0.00 2019-10-25 01:47:49 2019-10-25 01:48:08 t 1 1 134145 562 0.00 2019-10-25 01:58:35 2019-10-25 01:58:57 t 1 1 134146 372 0.00 2019-10-25 01:58:28 2019-10-25 02:00:04 t 1 2 134154 595 0.00 2019-10-25 02:11:02 2019-10-25 02:11:18 t 1 1 134159 361 0.00 2019-10-25 00:21:32 2019-10-25 02:28:18 t 1 2 134161 551 0.00 2019-10-25 02:22:43 2019-10-25 02:30:47 t 1 1 134163 607 0.00 2019-10-25 02:24:47 2019-10-25 02:32:17 t 1 1 134166 562 0.00 2019-10-25 02:41:35 2019-10-25 02:41:58 t 1 1 134169 562 0.00 2019-10-25 02:52:20 2019-10-25 02:52:42 t 1 1 134170 551 0.00 2019-10-25 02:42:04 2019-10-25 02:56:52 t 1 1 134175 570 0.00 2019-10-25 00:29:37 2019-10-25 03:18:04 t 1 1 134176 562 0.00 2019-10-25 03:21:25 2019-10-25 03:21:45 t 1 1 134181 562 0.00 2019-10-25 03:43:05 2019-10-25 03:43:16 t 1 1 134182 562 0.00 2019-10-25 03:53:48 2019-10-25 03:54:04 t 1 1 134184 562 0.00 2019-10-25 04:04:35 2019-10-25 04:04:49 t 1 1 134186 562 0.00 2019-10-25 04:15:22 2019-10-25 04:15:37 t 1 1 134187 501 0.00 2019-10-25 03:22:10 2019-10-25 04:17:50 t 1 1 134191 375 0.00 2019-10-25 04:19:13 2019-10-25 04:27:51 t 1 1 134192 375 0.00 2019-10-25 04:33:33 2019-10-25 04:35:06 t 1 1 134194 490 0.00 2019-10-25 04:38:45 2019-10-25 04:42:45 t 1 1 134196 562 0.00 2019-10-25 04:47:41 2019-10-25 04:47:54 t 1 1 134197 522 0.00 2019-10-25 04:43:50 2019-10-25 04:50:57 t 1 1 134198 501 0.00 2019-10-25 04:22:20 2019-10-25 04:52:52 t 1 1 134206 522 0.00 2019-10-25 05:05:04 2019-10-25 05:07:00 t 1 1 134208 375 0.00 2019-10-25 05:06:12 2019-10-25 05:07:18 t 1 1 134214 501 0.00 2019-10-25 05:10:41 2019-10-25 05:13:15 t 1 1 134217 375 0.00 2019-10-25 05:12:29 2019-10-25 05:18:22 t 1 1 134219 562 0.00 2019-10-25 05:19:52 2019-10-25 05:20:12 t 1 1 134222 522 0.00 2019-10-25 05:25:48 2019-10-25 05:25:57 t 1 1 134224 522 0.00 2019-10-25 05:30:59 2019-10-25 05:31:02 t 1 1 134228 375 0.00 2019-10-25 05:30:53 2019-10-25 05:40:28 t 1 1 134049 538 0.00 2019-10-24 21:21:36 2019-10-24 23:15:52 t 1 1 134050 556 0.00 2019-10-24 15:31:22 2019-10-24 23:16:00 t 1 1 134051 485 0.00 2019-10-24 23:09:50 2019-10-24 23:17:58 t 1 1 134054 581 0.00 2019-10-24 23:20:54 2019-10-24 23:24:58 t 1 1 134057 485 0.00 2019-10-24 23:20:22 2019-10-24 23:31:05 t 1 1 134060 333 0.00 2019-10-24 23:24:46 2019-10-24 23:34:11 t 1 2 134061 597 0.00 2019-10-24 23:20:41 2019-10-24 23:36:09 t 1 1 134065 483 0.00 2019-10-24 23:39:14 2019-10-24 23:42:35 t 1 1 134067 587 0.00 2019-10-24 23:29:04 2019-10-24 23:46:53 t 1 1 134069 585 0.00 2019-10-24 23:29:38 2019-10-24 23:52:05 t 1 1 134073 508 0.00 2019-10-24 23:22:44 2019-10-25 00:04:09 t 1 2 134074 570 0.00 2019-10-24 23:14:18 2019-10-25 00:05:46 t 1 1 134075 562 0.00 2019-10-24 23:51:17 2019-10-25 00:06:02 t 1 1 134082 490 0.00 2019-10-25 00:15:01 2019-10-25 00:16:13 t 1 1 134088 562 0.00 2019-10-25 00:19:00 2019-10-25 00:21:06 t 1 1 134091 570 0.00 2019-10-25 00:19:02 2019-10-25 00:24:22 t 1 1 134092 562 0.00 2019-10-25 00:20:39 2019-10-25 00:26:26 t 1 1 134097 551 0.00 2019-10-25 00:06:27 2019-10-25 00:33:48 t 1 1 134098 556 0.00 2019-10-24 23:16:00 2019-10-25 00:34:58 t 1 1 134100 556 0.00 2019-10-25 00:34:05 2019-10-25 00:35:56 t 1 1 134101 562 0.00 2019-10-25 00:35:32 2019-10-25 00:35:57 t 1 1 134103 490 0.00 2019-10-25 00:31:05 2019-10-25 00:39:35 t 1 1 134104 551 0.00 2019-10-25 00:33:48 2019-10-25 00:42:06 t 1 1 134106 562 0.00 2019-10-25 00:46:16 2019-10-25 00:46:42 t 1 1 134107 456 0.00 2019-10-25 00:13:07 2019-10-25 00:48:29 t 1 1 134113 562 0.00 2019-10-25 00:57:06 2019-10-25 00:57:40 t 1 1 134114 327 0.00 2019-10-25 00:51:51 2019-10-25 01:01:54 t 1 1 134119 607 0.00 2019-10-25 00:56:23 2019-10-25 01:25:09 t 1 1 134121 514 0.00 2019-10-25 01:06:33 2019-10-25 01:27:01 t 1 1 134122 375 0.00 2019-10-25 00:53:09 2019-10-25 01:29:17 t 1 1 134123 375 0.00 2019-10-25 01:29:16 2019-10-25 01:30:46 t 1 1 134125 595 0.00 2019-10-25 01:32:16 2019-10-25 01:32:38 t 1 1 134126 375 0.00 2019-10-25 01:31:16 2019-10-25 01:35:18 t 1 1 134137 595 0.00 2019-10-25 01:45:44 2019-10-25 01:45:49 t 1 1 134142 595 0.00 2019-10-25 01:55:40 2019-10-25 01:55:48 t 1 1 134143 595 0.00 2019-10-25 01:55:59 2019-10-25 01:56:21 t 1 1 134147 490 0.00 2019-10-25 01:44:45 2019-10-25 02:00:48 t 1 1 134148 595 0.00 2019-10-25 02:00:53 2019-10-25 02:01:07 t 1 1 134150 607 0.00 2019-10-25 01:56:57 2019-10-25 02:04:19 t 1 1 134152 595 0.00 2019-10-25 02:08:28 2019-10-25 02:08:30 t 1 1 134153 562 0.00 2019-10-25 02:09:30 2019-10-25 02:09:40 t 1 1 134157 562 0.00 2019-10-25 02:20:11 2019-10-25 02:20:24 t 1 1 134158 551 0.00 2019-10-25 00:53:15 2019-10-25 02:22:43 t 1 1 134160 490 0.00 2019-10-25 02:26:54 2019-10-25 02:30:44 t 1 1 134162 562 0.00 2019-10-25 02:30:50 2019-10-25 02:31:11 t 1 1 134164 490 0.00 2019-10-25 02:30:44 2019-10-25 02:32:49 t 1 1 134167 551 0.00 2019-10-25 02:36:34 2019-10-25 02:42:04 t 1 1 134172 551 0.00 2019-10-25 02:56:52 2019-10-25 03:09:39 t 1 1 134173 562 0.00 2019-10-25 03:10:42 2019-10-25 03:11:08 t 1 1 134174 574 0.00 2019-10-25 02:44:29 2019-10-25 03:17:35 t 1 1 134178 551 0.00 2019-10-25 03:09:39 2019-10-25 03:27:11 t 1 1 134179 562 0.00 2019-10-25 03:32:19 2019-10-25 03:32:30 t 1 1 134180 551 0.00 2019-10-25 03:27:11 2019-10-25 03:41:54 t 1 1 134183 551 0.00 2019-10-25 03:41:54 2019-10-25 03:56:43 t 1 1 134185 490 0.00 2019-10-25 04:08:38 2019-10-25 04:10:00 t 1 1 134188 501 0.00 2019-10-25 04:17:50 2019-10-25 04:20:11 t 1 1 134190 562 0.00 2019-10-25 04:26:10 2019-10-25 04:26:20 t 1 1 134193 562 0.00 2019-10-25 04:36:53 2019-10-25 04:37:05 t 1 1 134195 490 0.00 2019-10-25 04:42:45 2019-10-25 04:45:50 t 1 1 134199 522 0.00 2019-10-25 04:51:02 2019-10-25 04:58:39 t 1 1 134201 522 0.00 2019-10-25 05:00:25 2019-10-25 05:00:28 t 1 1 134203 375 0.00 2019-10-25 05:00:47 2019-10-25 05:02:57 t 1 1 134204 375 0.00 2019-10-25 05:02:56 2019-10-25 05:04:48 t 1 1 134205 481 0.00 2019-10-24 21:37:00 2019-10-25 05:06:35 t 1 1 134207 564 0.00 2019-10-24 18:44:58 2019-10-25 05:07:06 t 1 1 134209 375 0.00 2019-10-25 05:07:18 2019-10-25 05:09:18 t 1 1 134211 522 0.00 2019-10-25 05:10:34 2019-10-25 05:10:37 t 1 1 134213 375 0.00 2019-10-25 05:10:32 2019-10-25 05:12:30 t 1 1 134221 375 0.00 2019-10-25 05:20:55 2019-10-25 05:22:59 t 1 1 134223 562 0.00 2019-10-25 05:30:39 2019-10-25 05:30:59 t 1 1 62427 131 0.00 2018-04-24 07:05:03 2018-04-24 07:06:52 t 1 1 134225 522 0.00 2019-10-25 05:36:04 2019-10-25 05:36:07 t 1 1 134227 220 0.00 2019-10-25 05:35:26 2019-10-25 05:37:48 t 1 2 134229 522 0.00 2019-10-25 05:41:10 2019-10-25 05:41:15 t 1 1 134230 522 0.00 2019-10-25 05:41:31 2019-10-25 05:41:32 t 1 1 134232 562 0.00 2019-10-25 05:41:25 2019-10-25 05:41:46 t 1 1 134233 522 0.00 2019-10-25 05:46:17 2019-10-25 05:46:18 t 1 1 134234 520 0.00 2019-10-25 05:45:20 2019-10-25 05:48:04 t 1 1 134251 375 0.00 2019-10-25 05:40:46 2019-10-25 06:24:33 t 1 1 134253 520 0.00 2019-10-25 06:16:54 2019-10-25 06:28:45 t 1 1 134254 522 0.00 2019-10-25 06:29:06 2019-10-25 06:29:09 t 1 1 134256 375 0.00 2019-10-25 06:30:42 2019-10-25 06:31:47 t 1 1 134260 375 0.00 2019-10-25 06:31:55 2019-10-25 06:41:10 t 1 1 134262 516 0.00 2019-10-25 06:18:53 2019-10-25 06:44:20 t 1 1 134267 522 0.00 2019-10-25 06:54:44 2019-10-25 06:54:48 t 1 1 134270 522 0.00 2019-10-25 06:59:46 2019-10-25 06:59:47 t 1 1 134274 516 0.00 2019-10-25 06:52:26 2019-10-25 07:06:00 t 1 1 134276 522 0.00 2019-10-25 07:09:54 2019-10-25 07:09:57 t 1 1 134277 522 0.00 2019-10-25 07:11:42 2019-10-25 07:11:44 t 1 1 134278 375 0.00 2019-10-25 06:41:09 2019-10-25 07:13:15 t 1 1 134279 562 0.00 2019-10-25 07:14:15 2019-10-25 07:14:28 t 1 1 134283 562 0.00 2019-10-25 07:20:46 2019-10-25 07:21:00 t 1 1 134285 522 0.00 2019-10-25 07:25:12 2019-10-25 07:25:15 t 1 1 134286 522 0.00 2019-10-25 07:30:17 2019-10-25 07:30:18 t 1 1 134287 562 0.00 2019-10-25 07:31:33 2019-10-25 07:31:43 t 1 1 134288 522 0.00 2019-10-25 07:35:20 2019-10-25 07:35:21 t 1 1 134292 485 0.00 2019-10-25 07:42:44 2019-10-25 07:44:13 t 1 1 134294 522 0.00 2019-10-25 07:45:25 2019-10-25 07:45:25 t 1 1 134295 445 0.00 2019-10-25 06:56:13 2019-10-25 07:48:07 t 1 1 134296 485 0.00 2019-10-25 07:48:04 2019-10-25 07:49:27 t 1 1 134297 522 0.00 2019-10-25 07:50:32 2019-10-25 07:51:32 t 1 1 134306 483 0.00 2019-10-25 07:54:30 2019-10-25 08:01:42 t 1 1 134311 522 0.00 2019-10-25 08:05:39 2019-10-25 08:05:40 t 1 1 134313 220 0.00 2019-10-25 07:59:38 2019-10-25 08:07:42 t 1 1 134314 220 0.00 2019-10-25 08:07:42 2019-10-25 08:08:20 t 1 1 134317 220 0.00 2019-10-25 08:09:29 2019-10-25 08:10:00 t 1 1 134321 220 0.00 2019-10-25 08:11:04 2019-10-25 08:11:12 t 1 1 134070 483 0.00 2019-10-24 23:49:58 2019-10-24 23:54:27 t 1 1 134078 327 0.00 2019-10-25 00:07:51 2019-10-25 00:09:05 t 1 1 134080 375 0.00 2019-10-24 20:00:29 2019-10-25 00:13:52 t 1 1 134083 490 0.00 2019-10-25 00:16:13 2019-10-25 00:16:19 t 1 1 134087 327 0.00 2019-10-25 00:18:34 2019-10-25 00:19:33 t 1 1 134090 607 0.00 2019-10-24 23:59:47 2019-10-25 00:24:18 t 1 1 134094 562 0.00 2019-10-25 00:26:53 2019-10-25 00:29:10 t 1 1 134099 585 0.00 2019-10-24 23:53:49 2019-10-25 00:35:14 t 1 1 134102 585 0.00 2019-10-25 00:36:26 2019-10-25 00:38:02 t 1 1 134105 490 0.00 2019-10-25 00:39:39 2019-10-25 00:44:30 t 1 1 134109 375 0.00 2019-10-25 00:28:30 2019-10-25 00:53:10 t 1 1 134111 556 0.00 2019-10-25 00:35:56 2019-10-25 00:53:47 t 1 1 134112 607 0.00 2019-10-25 00:31:30 2019-10-25 00:56:23 t 1 1 134115 585 0.00 2019-10-25 00:57:38 2019-10-25 01:03:19 t 1 1 134118 562 0.00 2019-10-25 01:15:45 2019-10-25 01:17:06 t 1 1 134120 562 0.00 2019-10-25 01:26:10 2019-10-25 01:26:35 t 1 1 134124 595 0.00 2019-10-25 01:27:18 2019-10-25 01:32:06 t 1 1 134127 595 0.00 2019-10-25 01:35:07 2019-10-25 01:35:24 t 1 1 134128 595 0.00 2019-10-25 01:35:33 2019-10-25 01:35:56 t 1 1 134130 375 0.00 2019-10-25 01:35:44 2019-10-25 01:38:23 t 1 1 134134 375 0.00 2019-10-25 01:40:06 2019-10-25 01:41:45 t 1 1 134135 490 0.00 2019-10-25 01:43:26 2019-10-25 01:44:45 t 1 1 134136 595 0.00 2019-10-25 01:41:43 2019-10-25 01:45:34 t 1 1 134138 595 0.00 2019-10-25 01:45:59 2019-10-25 01:46:21 t 1 1 134140 595 0.00 2019-10-25 01:50:35 2019-10-25 01:50:43 t 1 1 134141 595 0.00 2019-10-25 01:50:54 2019-10-25 01:51:16 t 1 1 134144 607 0.00 2019-10-25 01:25:09 2019-10-25 01:56:57 t 1 1 134149 375 0.00 2019-10-25 01:54:00 2019-10-25 02:03:48 t 1 1 134151 595 0.00 2019-10-25 02:05:03 2019-10-25 02:08:19 t 1 1 134155 372 0.00 2019-10-25 02:02:16 2019-10-25 02:12:21 t 1 2 134156 562 0.00 2019-10-25 02:13:13 2019-10-25 02:13:56 t 1 1 134165 551 0.00 2019-10-25 02:30:47 2019-10-25 02:36:34 t 1 1 134168 490 0.00 2019-10-25 02:32:49 2019-10-25 02:44:17 t 1 1 134171 562 0.00 2019-10-25 03:03:13 2019-10-25 03:03:29 t 1 1 134177 501 0.00 2019-10-25 03:12:12 2019-10-25 03:22:10 t 1 1 134189 501 0.00 2019-10-25 04:20:11 2019-10-25 04:22:20 t 1 1 134200 562 0.00 2019-10-25 04:58:29 2019-10-25 04:58:41 t 1 1 134202 375 0.00 2019-10-25 04:47:09 2019-10-25 05:00:42 t 1 1 134210 562 0.00 2019-10-25 05:09:08 2019-10-25 05:09:28 t 1 1 134212 501 0.00 2019-10-25 04:52:52 2019-10-25 05:10:41 t 1 1 134215 501 0.00 2019-10-25 05:13:15 2019-10-25 05:15:22 t 1 1 134216 522 0.00 2019-10-25 05:15:37 2019-10-25 05:15:40 t 1 1 134218 501 0.00 2019-10-25 05:15:22 2019-10-25 05:19:47 t 1 1 134220 522 0.00 2019-10-25 05:20:46 2019-10-25 05:20:48 t 1 1 134226 220 0.00 2019-10-25 05:34:23 2019-10-25 05:36:24 t 1 1 134235 522 0.00 2019-10-25 05:51:20 2019-10-25 05:51:23 t 1 1 134236 562 0.00 2019-10-25 05:52:19 2019-10-25 05:52:29 t 1 1 134238 522 0.00 2019-10-25 05:56:39 2019-10-25 05:56:52 t 1 1 134239 220 0.00 2019-10-25 05:49:18 2019-10-25 05:58:53 t 1 2 134240 522 0.00 2019-10-25 06:01:35 2019-10-25 06:01:38 t 1 1 134244 562 0.00 2019-10-25 06:13:41 2019-10-25 06:14:09 t 1 1 134247 520 0.00 2019-10-25 06:09:42 2019-10-25 06:16:54 t 1 1 134249 220 0.00 2019-10-25 06:22:02 2019-10-25 06:22:24 t 1 2 134259 522 0.00 2019-10-25 06:39:23 2019-10-25 06:39:37 t 1 1 134264 520 0.00 2019-10-25 06:46:01 2019-10-25 06:48:37 t 1 1 134265 522 0.00 2019-10-25 06:49:33 2019-10-25 06:49:42 t 1 1 134269 520 0.00 2019-10-25 06:48:37 2019-10-25 06:59:38 t 1 1 134271 520 0.00 2019-10-25 06:59:38 2019-10-25 07:01:16 t 1 1 134275 514 0.00 2019-10-25 01:27:01 2019-10-25 07:06:37 t 1 1 134280 522 0.00 2019-10-25 07:14:58 2019-10-25 07:14:59 t 1 1 134281 522 0.00 2019-10-25 07:20:01 2019-10-25 07:20:11 t 1 1 134284 375 0.00 2019-10-25 07:20:33 2019-10-25 07:21:48 t 1 1 134293 520 0.00 2019-10-25 07:41:00 2019-10-25 07:44:58 t 1 1 134298 578 0.00 2019-10-24 22:21:12 2019-10-25 07:51:40 t 1 1 134300 562 0.00 2019-10-25 07:52:48 2019-10-25 07:53:13 t 1 1 134301 483 0.00 2019-10-25 07:45:38 2019-10-25 07:54:30 t 1 1 134302 485 0.00 2019-10-25 07:55:13 2019-10-25 07:57:08 t 1 1 134303 220 0.00 2019-10-25 07:35:20 2019-10-25 07:59:38 t 1 1 134304 520 0.00 2019-10-25 07:44:58 2019-10-25 08:00:55 t 1 1 134305 522 0.00 2019-10-25 08:00:58 2019-10-25 08:00:59 t 1 1 134308 483 0.00 2019-10-25 08:01:42 2019-10-25 08:03:09 t 1 1 134309 562 0.00 2019-10-25 08:03:39 2019-10-25 08:04:02 t 1 1 134312 522 0.00 2019-10-25 08:06:50 2019-10-25 08:06:59 t 1 1 134319 522 0.00 2019-10-25 08:10:41 2019-10-25 08:10:44 t 1 1 134320 220 0.00 2019-10-25 08:10:37 2019-10-25 08:11:04 t 1 1 134323 220 0.00 2019-10-25 08:11:41 2019-10-25 08:11:48 t 1 1 134324 220 0.00 2019-10-25 08:11:47 2019-10-25 08:12:16 t 1 1 134328 220 0.00 2019-10-25 08:13:02 2019-10-25 08:13:28 t 1 1 134332 220 0.00 2019-10-25 08:14:14 2019-10-25 08:14:48 t 1 1 134334 220 0.00 2019-10-25 08:14:51 2019-10-25 08:15:25 t 1 1 134339 220 0.00 2019-10-25 08:15:26 2019-10-25 08:16:03 t 1 1 134340 220 0.00 2019-10-25 08:16:03 2019-10-25 08:16:37 t 1 1 134344 562 0.00 2019-10-25 08:15:52 2019-10-25 08:18:20 t 1 1 134351 220 0.00 2019-10-25 08:20:13 2019-10-25 08:20:46 t 1 1 134359 522 0.00 2019-10-25 08:21:53 2019-10-25 08:21:56 t 1 1 134360 220 0.00 2019-10-25 08:21:52 2019-10-25 08:21:58 t 1 1 134366 562 0.00 2019-10-25 08:31:15 2019-10-25 08:31:28 t 1 1 134367 522 0.00 2019-10-25 08:32:05 2019-10-25 08:32:14 t 1 1 134373 516 0.00 2019-10-25 08:32:39 2019-10-25 08:39:12 t 1 1 134382 562 0.00 2019-10-25 08:49:46 2019-10-25 08:50:44 t 1 1 134384 585 0.00 2019-10-25 08:48:52 2019-10-25 08:51:01 t 1 1 134386 483 0.00 2019-10-25 08:43:12 2019-10-25 08:51:37 t 1 1 134391 578 0.00 2019-10-25 07:51:44 2019-10-25 08:57:56 t 1 1 134392 562 0.00 2019-10-25 08:57:12 2019-10-25 08:58:02 t 1 1 134393 522 0.00 2019-10-25 08:57:10 2019-10-25 08:59:42 t 1 1 134394 585 0.00 2019-10-25 08:58:22 2019-10-25 09:00:44 t 1 1 134396 522 0.00 2019-10-25 09:02:51 2019-10-25 09:02:52 t 1 1 134400 522 0.00 2019-10-25 09:12:43 2019-10-25 09:12:47 t 1 1 134404 522 0.00 2019-10-25 09:13:18 2019-10-25 09:13:24 t 1 1 134405 522 0.00 2019-10-25 09:13:47 2019-10-25 09:13:58 t 1 1 134413 556 0.00 2019-10-25 08:36:46 2019-10-25 09:17:03 t 1 1 134415 522 0.00 2019-10-25 09:17:48 2019-10-25 09:17:49 t 1 1 134417 556 0.00 2019-10-25 09:17:02 2019-10-25 09:20:23 t 1 1 134423 522 0.00 2019-10-25 09:27:02 2019-10-25 09:27:04 t 1 1 134430 522 0.00 2019-10-25 09:35:05 2019-10-25 09:35:40 t 1 1 134434 522 0.00 2019-10-25 09:38:36 2019-10-25 09:39:01 t 1 1 134441 595 0.00 2019-10-25 09:33:28 2019-10-25 09:43:32 t 1 1 134231 522 0.00 2019-10-25 05:41:38 2019-10-25 05:41:39 t 1 1 134237 522 0.00 2019-10-25 05:56:27 2019-10-25 05:56:34 t 1 1 134241 562 0.00 2019-10-25 06:02:55 2019-10-25 06:03:15 t 1 1 134242 522 0.00 2019-10-25 06:06:37 2019-10-25 06:06:37 t 1 1 134243 522 0.00 2019-10-25 06:11:41 2019-10-25 06:11:42 t 1 1 134245 562 0.00 2019-10-25 06:14:17 2019-10-25 06:15:16 t 1 1 134246 522 0.00 2019-10-25 06:16:45 2019-10-25 06:16:46 t 1 1 134248 522 0.00 2019-10-25 06:21:48 2019-10-25 06:21:57 t 1 1 134250 522 0.00 2019-10-25 06:23:57 2019-10-25 06:24:02 t 1 1 134252 562 0.00 2019-10-25 06:25:49 2019-10-25 06:25:59 t 1 1 134255 375 0.00 2019-10-25 06:26:21 2019-10-25 06:31:23 t 1 1 134257 562 0.00 2019-10-25 06:33:22 2019-10-25 06:33:35 t 1 1 134258 522 0.00 2019-10-25 06:34:09 2019-10-25 06:34:18 t 1 1 134261 562 0.00 2019-10-25 06:44:08 2019-10-25 06:44:19 t 1 1 134263 522 0.00 2019-10-25 06:44:29 2019-10-25 06:44:32 t 1 1 134266 562 0.00 2019-10-25 06:52:52 2019-10-25 06:52:57 t 1 1 134268 445 0.00 2019-10-24 22:20:45 2019-10-25 06:56:13 t 1 1 134272 562 0.00 2019-10-25 07:03:18 2019-10-25 07:03:44 t 1 1 134273 522 0.00 2019-10-25 07:04:50 2019-10-25 07:04:51 t 1 1 134282 375 0.00 2019-10-25 07:17:39 2019-10-25 07:20:12 t 1 1 134289 522 0.00 2019-10-25 07:40:22 2019-10-25 07:40:23 t 1 1 134290 520 0.00 2019-10-25 07:35:18 2019-10-25 07:41:01 t 1 1 134291 562 0.00 2019-10-25 07:42:04 2019-10-25 07:42:30 t 1 1 134299 516 0.00 2019-10-25 07:49:55 2019-10-25 07:51:43 t 1 1 134307 522 0.00 2019-10-25 08:00:52 2019-10-25 08:02:06 t 1 1 134310 520 0.00 2019-10-25 08:00:54 2019-10-25 08:04:56 t 1 1 134315 220 0.00 2019-10-25 08:08:20 2019-10-25 08:08:52 t 1 1 134316 220 0.00 2019-10-25 08:08:52 2019-10-25 08:09:29 t 1 1 134318 220 0.00 2019-10-25 08:09:59 2019-10-25 08:10:37 t 1 1 134322 220 0.00 2019-10-25 08:11:11 2019-10-25 08:11:41 t 1 1 134326 220 0.00 2019-10-25 08:12:25 2019-10-25 08:12:50 t 1 1 134327 220 0.00 2019-10-25 08:12:50 2019-10-25 08:13:02 t 1 1 134331 562 0.00 2019-10-25 08:14:34 2019-10-25 08:14:43 t 1 1 134336 514 0.00 2019-10-25 07:06:37 2019-10-25 08:15:30 t 1 1 134338 514 0.00 2019-10-25 08:15:30 2019-10-25 08:16:01 t 1 1 134343 220 0.00 2019-10-25 08:17:14 2019-10-25 08:17:49 t 1 1 134348 220 0.00 2019-10-25 08:19:34 2019-10-25 08:19:38 t 1 1 134350 220 0.00 2019-10-25 08:20:09 2019-10-25 08:20:13 t 1 1 134354 220 0.00 2019-10-25 08:20:47 2019-10-25 08:21:18 t 1 1 134356 220 0.00 2019-10-25 08:21:18 2019-10-25 08:21:24 t 1 1 134358 220 0.00 2019-10-25 08:21:24 2019-10-25 08:21:52 t 1 1 134362 522 0.00 2019-10-25 08:26:58 2019-10-25 08:26:59 t 1 1 134364 595 0.00 2019-10-25 08:25:32 2019-10-25 08:28:07 t 1 1 134365 562 0.00 2019-10-25 08:28:29 2019-10-25 08:29:14 t 1 1 134368 585 0.00 2019-10-25 08:23:05 2019-10-25 08:32:16 t 1 1 134369 562 0.00 2019-10-25 08:33:59 2019-10-25 08:35:37 t 1 1 134370 556 0.00 2019-10-25 00:53:47 2019-10-25 08:36:46 t 1 1 134371 522 0.00 2019-10-25 08:37:12 2019-10-25 08:37:15 t 1 1 134374 597 0.00 2019-10-25 08:34:15 2019-10-25 08:39:36 t 1 1 134375 522 0.00 2019-10-25 08:37:34 2019-10-25 08:40:05 t 1 1 134378 522 0.00 2019-10-25 08:44:09 2019-10-25 08:47:18 t 1 1 134379 522 0.00 2019-10-25 08:48:36 2019-10-25 08:48:40 t 1 1 134381 522 0.00 2019-10-25 08:49:31 2019-10-25 08:49:31 t 1 1 134383 522 0.00 2019-10-25 08:49:54 2019-10-25 08:50:49 t 1 1 134387 522 0.00 2019-10-25 08:53:38 2019-10-25 08:53:53 t 1 1 134388 522 0.00 2019-10-25 08:54:25 2019-10-25 08:54:26 t 1 1 134397 562 0.00 2019-10-25 09:06:06 2019-10-25 09:06:17 t 1 1 134398 522 0.00 2019-10-25 09:07:34 2019-10-25 09:07:42 t 1 1 134403 522 0.00 2019-10-25 09:13:10 2019-10-25 09:13:11 t 1 1 134407 522 0.00 2019-10-25 09:14:10 2019-10-25 09:14:13 t 1 1 134410 498 0.00 2019-10-25 07:28:39 2019-10-25 09:16:42 t 1 2 134412 562 0.00 2019-10-25 09:15:40 2019-10-25 09:16:58 t 1 1 134414 485 0.00 2019-10-25 09:13:58 2019-10-25 09:17:10 t 1 1 134416 578 0.00 2019-10-25 09:07:57 2019-10-25 09:19:14 t 1 1 134418 562 0.00 2019-10-25 09:19:43 2019-10-25 09:20:46 t 1 1 134419 516 0.00 2019-10-25 09:19:03 2019-10-25 09:21:18 t 1 1 134425 562 0.00 2019-10-25 09:30:17 2019-10-25 09:30:27 t 1 1 134427 522 0.00 2019-10-25 09:33:00 2019-10-25 09:33:04 t 1 1 134429 562 0.00 2019-10-25 09:34:03 2019-10-25 09:34:46 t 1 1 134431 522 0.00 2019-10-25 09:35:46 2019-10-25 09:36:21 t 1 1 134433 562 0.00 2019-10-25 09:36:45 2019-10-25 09:38:06 t 1 1 134435 520 0.00 2019-10-25 09:34:48 2019-10-25 09:39:41 t 1 1 134436 522 0.00 2019-10-25 09:40:31 2019-10-25 09:41:02 t 1 1 134437 522 0.00 2019-10-25 09:41:14 2019-10-25 09:41:24 t 1 1 134445 595 0.00 2019-10-25 09:44:31 2019-10-25 09:44:53 t 1 1 134448 595 0.00 2019-10-25 09:45:37 2019-10-25 09:46:00 t 1 1 134450 220 0.00 2019-10-25 08:22:30 2019-10-25 09:46:33 t 1 1 134451 562 0.00 2019-10-25 09:46:32 2019-10-25 09:47:14 t 1 1 134454 562 0.00 2019-10-25 09:47:58 2019-10-25 09:48:03 t 1 1 134457 595 0.00 2019-10-25 09:49:48 2019-10-25 09:50:13 t 1 1 134461 551 0.00 2019-10-25 09:44:22 2019-10-25 09:52:22 t 1 1 134464 562 0.00 2019-10-25 09:54:14 2019-10-25 09:54:29 t 1 1 134466 595 0.00 2019-10-25 09:54:51 2019-10-25 09:54:59 t 1 1 134471 591 0.00 2019-10-25 09:54:40 2019-10-25 09:57:27 t 1 1 134472 595 0.00 2019-10-25 09:57:35 2019-10-25 09:57:57 t 1 1 134473 595 0.00 2019-10-25 09:58:07 2019-10-25 09:58:09 t 1 1 134476 595 0.00 2019-10-25 09:58:58 2019-10-25 09:59:27 t 1 1 134479 562 0.00 2019-10-25 10:00:49 2019-10-25 10:01:12 t 1 1 134484 488 0.00 2019-10-25 10:02:03 2019-10-25 10:02:03 f 1 1 134490 595 0.00 2019-10-25 10:05:53 2019-10-25 10:06:00 t 1 1 134495 522 0.00 2019-10-25 10:08:50 2019-10-25 10:09:50 t 1 1 134496 562 0.00 2019-10-25 10:09:21 2019-10-25 10:10:41 t 1 1 134502 562 0.00 2019-10-25 10:13:46 2019-10-25 10:14:14 t 1 1 134506 595 0.00 2019-10-25 10:17:32 2019-10-25 10:17:54 t 1 1 134507 568 0.00 2019-10-25 10:12:38 2019-10-25 10:18:07 t 1 1 134510 568 0.00 2019-10-25 10:22:45 2019-10-25 10:22:49 t 1 1 134511 595 0.00 2019-10-25 10:22:58 2019-10-25 10:23:15 t 1 1 134512 595 0.00 2019-10-25 10:23:29 2019-10-25 10:23:59 t 1 1 134516 595 0.00 2019-10-25 10:28:42 2019-10-25 10:28:50 t 1 1 134521 562 0.00 2019-10-25 10:31:56 2019-10-25 10:33:12 t 1 1 134524 595 0.00 2019-10-25 10:34:22 2019-10-25 10:34:43 t 1 1 134525 445 0.00 2019-10-25 09:49:10 2019-10-25 10:36:13 t 1 1 134528 595 0.00 2019-10-25 10:37:57 2019-10-25 10:38:10 t 1 1 134530 583 0.00 2019-10-25 10:28:52 2019-10-25 10:38:58 t 1 1 134533 595 0.00 2019-10-25 10:40:33 2019-10-25 10:40:53 t 1 1 134537 585 0.00 2019-10-25 10:34:52 2019-10-25 10:42:01 t 1 1 134546 445 0.00 2019-10-25 10:36:33 2019-10-25 10:59:26 t 1 1 134325 220 0.00 2019-10-25 08:12:16 2019-10-25 08:12:25 t 1 1 134329 220 0.00 2019-10-25 08:13:28 2019-10-25 08:13:37 t 1 1 134330 220 0.00 2019-10-25 08:13:36 2019-10-25 08:14:14 t 1 1 134333 220 0.00 2019-10-25 08:14:48 2019-10-25 08:14:51 t 1 1 134335 220 0.00 2019-10-25 08:15:25 2019-10-25 08:15:26 t 1 1 134337 522 0.00 2019-10-25 08:15:48 2019-10-25 08:15:57 t 1 1 134341 522 0.00 2019-10-25 08:16:46 2019-10-25 08:16:56 t 1 1 134342 220 0.00 2019-10-25 08:16:37 2019-10-25 08:17:14 t 1 1 134345 220 0.00 2019-10-25 08:17:48 2019-10-25 08:18:26 t 1 1 134346 220 0.00 2019-10-25 08:18:26 2019-10-25 08:19:00 t 1 1 134347 220 0.00 2019-10-25 08:18:59 2019-10-25 08:19:35 t 1 1 134349 220 0.00 2019-10-25 08:19:38 2019-10-25 08:20:09 t 1 1 134352 220 0.00 2019-10-25 08:20:46 2019-10-25 08:20:47 t 1 1 134353 514 0.00 2019-10-25 08:16:00 2019-10-25 08:21:07 t 1 1 134355 562 0.00 2019-10-25 08:19:31 2019-10-25 08:21:23 t 1 1 134357 585 0.00 2019-10-25 08:16:16 2019-10-25 08:21:40 t 1 1 134361 220 0.00 2019-10-25 08:21:57 2019-10-25 08:22:30 t 1 1 134363 485 0.00 2019-10-25 08:25:14 2019-10-25 08:27:51 t 1 1 134372 585 0.00 2019-10-25 08:32:29 2019-10-25 08:39:10 t 1 1 134376 522 0.00 2019-10-25 08:42:16 2019-10-25 08:42:19 t 1 1 134377 562 0.00 2019-10-25 08:42:26 2019-10-25 08:43:06 t 1 1 134380 522 0.00 2019-10-25 08:48:48 2019-10-25 08:49:23 t 1 1 134385 522 0.00 2019-10-25 08:51:05 2019-10-25 08:51:10 t 1 1 134389 562 0.00 2019-10-25 08:55:14 2019-10-25 08:55:40 t 1 1 134390 522 0.00 2019-10-25 08:56:27 2019-10-25 08:56:33 t 1 1 134395 578 0.00 2019-10-25 08:57:56 2019-10-25 09:01:28 t 1 1 134399 578 0.00 2019-10-25 09:01:28 2019-10-25 09:07:57 t 1 1 134401 522 0.00 2019-10-25 09:12:53 2019-10-25 09:12:54 t 1 1 134402 514 0.00 2019-10-25 08:21:06 2019-10-25 09:13:01 t 1 1 134406 585 0.00 2019-10-25 09:12:08 2019-10-25 09:14:06 t 1 1 134408 522 0.00 2019-10-25 09:15:21 2019-10-25 09:15:22 t 1 1 134409 514 0.00 2019-10-25 09:13:00 2019-10-25 09:15:52 t 1 1 134411 508 0.00 2019-10-25 09:15:39 2019-10-25 09:16:53 t 1 2 134420 562 0.00 2019-10-25 09:21:10 2019-10-25 09:21:28 t 1 1 134421 522 0.00 2019-10-25 09:22:50 2019-10-25 09:22:56 t 1 1 134422 522 0.00 2019-10-25 09:23:16 2019-10-25 09:23:17 t 1 1 134424 522 0.00 2019-10-25 09:27:50 2019-10-25 09:27:55 t 1 1 134426 585 0.00 2019-10-25 09:28:32 2019-10-25 09:30:51 t 1 1 134428 551 0.00 2019-10-25 03:56:43 2019-10-25 09:34:22 t 1 1 134432 522 0.00 2019-10-25 09:37:04 2019-10-25 09:37:09 t 1 1 134438 562 0.00 2019-10-25 09:38:54 2019-10-25 09:41:24 t 1 1 134439 485 0.00 2019-10-25 09:27:57 2019-10-25 09:42:30 t 1 1 134440 522 0.00 2019-10-25 09:41:32 2019-10-25 09:43:19 t 1 1 134442 595 0.00 2019-10-25 09:43:44 2019-10-25 09:43:46 t 1 1 134443 595 0.00 2019-10-25 09:44:00 2019-10-25 09:44:19 t 1 1 134446 522 0.00 2019-10-25 09:44:51 2019-10-25 09:45:15 t 1 1 134449 522 0.00 2019-10-25 09:45:40 2019-10-25 09:46:15 t 1 1 134452 595 0.00 2019-10-25 09:47:01 2019-10-25 09:47:26 t 1 1 134455 445 0.00 2019-10-25 07:48:12 2019-10-25 09:48:28 t 1 1 134459 522 0.00 2019-10-25 09:50:47 2019-10-25 09:50:53 t 1 1 134462 522 0.00 2019-10-25 09:53:13 2019-10-25 09:53:21 t 1 1 62887 131 0.00 2018-05-06 10:52:09 2018-05-06 10:52:09 f 1 1 134465 591 0.00 2019-10-25 09:35:49 2019-10-25 09:54:40 t 1 1 62892 131 0.00 2018-05-06 11:24:27 2018-05-06 11:25:53 t 1 1 62895 131 0.00 2018-05-06 11:50:22 2018-05-06 11:51:34 t 1 1 134467 544 0.00 2019-10-25 09:41:15 2019-10-25 09:55:01 t 1 2 134468 538 0.00 2019-10-25 00:22:58 2019-10-25 09:56:37 t 1 1 134477 522 0.00 2019-10-25 09:59:36 2019-10-25 10:00:12 t 1 1 134478 551 0.00 2019-10-25 09:52:22 2019-10-25 10:01:07 t 1 1 134480 595 0.00 2019-10-25 10:00:50 2019-10-25 10:01:16 t 1 1 134482 595 0.00 2019-10-25 10:01:26 2019-10-25 10:01:28 t 1 1 134483 595 0.00 2019-10-25 10:01:40 2019-10-25 10:02:02 t 1 1 134486 544 0.00 2019-10-25 10:02:04 2019-10-25 10:03:45 t 1 2 134488 522 0.00 2019-10-25 10:02:26 2019-10-25 10:05:19 t 1 1 134492 522 0.00 2019-10-25 10:07:10 2019-10-25 10:07:22 t 1 1 134494 568 0.00 2019-10-25 09:57:39 2019-10-25 10:08:25 t 1 1 134497 595 0.00 2019-10-25 10:11:02 2019-10-25 10:11:10 t 1 1 134498 607 0.00 2019-10-25 09:38:12 2019-10-25 10:12:05 t 1 1 134499 568 0.00 2019-10-25 10:09:10 2019-10-25 10:12:39 t 1 1 134500 595 0.00 2019-10-25 10:13:20 2019-10-25 10:13:44 t 1 1 134501 379 0.00 2019-10-24 22:19:23 2019-10-25 10:13:55 t 1 1 134503 595 0.00 2019-10-25 10:13:54 2019-10-25 10:16:37 t 1 1 134504 556 0.00 2019-10-25 09:39:41 2019-10-25 10:16:48 t 1 1 134505 595 0.00 2019-10-25 10:16:47 2019-10-25 10:17:21 t 1 1 134509 516 0.00 2019-10-25 10:11:22 2019-10-25 10:22:44 t 1 1 134515 516 0.00 2019-10-25 10:22:44 2019-10-25 10:28:00 t 1 1 134517 583 0.00 2019-10-25 10:17:04 2019-10-25 10:28:52 t 1 1 134518 220 0.00 2019-10-25 10:10:00 2019-10-25 10:29:30 t 1 2 134520 595 0.00 2019-10-25 10:32:33 2019-10-25 10:32:45 t 1 1 134522 538 0.00 2019-10-25 10:17:55 2019-10-25 10:33:43 t 1 1 134523 595 0.00 2019-10-25 10:33:48 2019-10-25 10:34:10 t 1 1 134529 562 0.00 2019-10-25 10:37:49 2019-10-25 10:38:51 t 1 1 134532 522 0.00 2019-10-25 10:10:23 2019-10-25 10:40:47 t 1 1 134535 595 0.00 2019-10-25 10:41:08 2019-10-25 10:41:22 t 1 1 134536 595 0.00 2019-10-25 10:41:45 2019-10-25 10:41:54 t 1 1 134538 501 0.00 2019-10-25 10:26:33 2019-10-25 10:42:30 t 1 1 134541 522 0.00 2019-10-25 10:40:47 2019-10-25 10:47:49 t 1 1 134542 583 0.00 2019-10-25 10:38:58 2019-10-25 10:53:34 t 1 1 134545 607 0.00 2019-10-25 10:12:05 2019-10-25 10:54:48 t 1 1 134547 501 0.00 2019-10-25 10:54:01 2019-10-25 11:00:35 t 1 1 134553 498 0.00 2019-10-25 10:51:18 2019-10-25 11:08:23 t 1 2 134560 562 0.00 2019-10-25 11:13:52 2019-10-25 11:14:44 t 1 1 134561 485 0.00 2019-10-25 11:05:24 2019-10-25 11:15:16 t 1 1 134563 522 0.00 2019-10-25 11:13:44 2019-10-25 11:19:29 t 1 1 134564 591 0.00 2019-10-25 10:11:03 2019-10-25 11:19:58 t 1 1 134565 593 0.00 2019-10-25 11:01:03 2019-10-25 11:21:32 t 1 1 134569 597 0.00 2019-10-25 10:53:59 2019-10-25 11:27:12 t 1 1 134570 501 0.00 2019-10-25 11:12:31 2019-10-25 11:27:47 t 1 1 134571 220 0.00 2019-10-25 11:26:41 2019-10-25 11:27:59 t 1 2 134574 595 0.00 2019-10-25 11:24:27 2019-10-25 11:31:53 t 1 1 134576 220 0.00 2019-10-25 11:27:31 2019-10-25 11:32:47 t 1 1 134578 327 0.00 2019-10-25 11:32:51 2019-10-25 11:34:06 t 1 1 134580 451 0.00 2019-10-25 11:20:01 2019-10-25 11:34:58 t 1 1 134581 583 0.00 2019-10-25 11:32:49 2019-10-25 11:36:24 t 1 1 134592 412 0.00 2019-10-25 01:45:49 2019-10-25 11:43:43 t 1 1 134595 562 0.00 2019-10-25 11:44:43 2019-10-25 11:45:39 t 1 1 134596 562 0.00 2019-10-25 11:46:08 2019-10-25 11:46:38 t 1 1 134444 551 0.00 2019-10-25 09:34:22 2019-10-25 09:44:22 t 1 1 134447 595 0.00 2019-10-25 09:45:02 2019-10-25 09:45:26 t 1 1 134453 595 0.00 2019-10-25 09:47:36 2019-10-25 09:47:59 t 1 1 134456 562 0.00 2019-10-25 09:48:45 2019-10-25 09:49:30 t 1 1 134458 595 0.00 2019-10-25 09:50:24 2019-10-25 09:50:26 t 1 1 134460 522 0.00 2019-10-25 09:51:46 2019-10-25 09:52:17 t 1 1 134463 485 0.00 2019-10-25 09:42:31 2019-10-25 09:53:23 t 1 1 134469 595 0.00 2019-10-25 09:56:29 2019-10-25 09:56:49 t 1 1 134470 595 0.00 2019-10-25 09:57:02 2019-10-25 09:57:24 t 1 1 134474 595 0.00 2019-10-25 09:58:22 2019-10-25 09:58:44 t 1 1 134475 522 0.00 2019-10-25 09:54:07 2019-10-25 09:59:05 t 1 1 134481 522 0.00 2019-10-25 10:00:48 2019-10-25 10:01:24 t 1 1 134485 483 0.00 2019-10-25 10:00:58 2019-10-25 10:02:05 t 1 1 134487 516 0.00 2019-10-25 10:02:31 2019-10-25 10:05:11 t 1 1 134489 522 0.00 2019-10-25 10:05:19 2019-10-25 10:05:20 t 1 1 134491 522 0.00 2019-10-25 10:05:23 2019-10-25 10:07:04 t 1 1 134493 562 0.00 2019-10-25 10:03:13 2019-10-25 10:07:25 t 1 1 134508 595 0.00 2019-10-25 10:22:36 2019-10-25 10:22:42 t 1 1 134513 562 0.00 2019-10-25 10:24:37 2019-10-25 10:24:56 t 1 1 134514 599 0.00 2019-10-25 10:18:34 2019-10-25 10:25:35 t 1 1 134519 595 0.00 2019-10-25 10:29:46 2019-10-25 10:30:11 t 1 1 134526 595 0.00 2019-10-25 10:34:55 2019-10-25 10:36:55 t 1 1 134527 595 0.00 2019-10-25 10:37:38 2019-10-25 10:37:43 t 1 1 134531 595 0.00 2019-10-25 10:39:57 2019-10-25 10:40:20 t 1 1 134534 564 0.00 2019-10-25 10:10:34 2019-10-25 10:41:07 t 1 1 134539 595 0.00 2019-10-25 10:42:30 2019-10-25 10:43:39 t 1 1 134540 562 0.00 2019-10-25 10:46:13 2019-10-25 10:46:36 t 1 1 62804 131 0.00 2018-05-05 09:42:34 2018-05-05 09:43:51 t 1 1 134543 562 0.00 2019-10-25 10:52:59 2019-10-25 10:53:45 t 1 1 134544 501 0.00 2019-10-25 10:42:30 2019-10-25 10:54:01 t 1 1 134548 593 0.00 2019-10-25 10:52:04 2019-10-25 11:01:03 t 1 1 134549 556 0.00 2019-10-25 10:16:47 2019-10-25 11:01:27 t 1 1 134552 562 0.00 2019-10-25 11:06:51 2019-10-25 11:07:20 t 1 1 134555 585 0.00 2019-10-25 11:07:01 2019-10-25 11:09:35 t 1 1 134568 520 0.00 2019-10-25 11:09:11 2019-10-25 11:25:42 t 1 1 134572 562 0.00 2019-10-25 11:25:37 2019-10-25 11:28:14 t 1 1 134573 562 0.00 2019-10-25 11:28:35 2019-10-25 11:29:50 t 1 1 134579 501 0.00 2019-10-25 11:27:48 2019-10-25 11:34:22 t 1 1 134582 538 0.00 2019-10-25 11:27:39 2019-10-25 11:36:25 t 1 1 134585 483 0.00 2019-10-25 11:02:41 2019-10-25 11:37:25 t 1 1 134587 583 0.00 2019-10-25 11:37:35 2019-10-25 11:39:12 t 1 1 134588 562 0.00 2019-10-25 11:39:34 2019-10-25 11:40:41 t 1 1 134590 562 0.00 2019-10-25 11:41:28 2019-10-25 11:41:55 t 1 1 134591 451 0.00 2019-10-25 11:34:58 2019-10-25 11:43:24 t 1 1 134593 520 0.00 2019-10-25 11:33:04 2019-10-25 11:44:52 t 1 1 134597 593 0.00 2019-10-25 11:21:32 2019-10-25 11:47:30 t 1 1 134600 512 0.00 2019-10-25 11:41:03 2019-10-25 11:52:11 t 1 1 134601 485 0.00 2019-10-25 11:47:06 2019-10-25 11:53:18 t 1 1 134603 562 0.00 2019-10-25 11:56:07 2019-10-25 11:56:26 t 1 1 134604 520 0.00 2019-10-25 11:44:52 2019-10-25 11:58:44 t 1 1 134607 583 0.00 2019-10-25 11:54:46 2019-10-25 12:03:55 t 1 1 134608 451 0.00 2019-10-25 12:00:02 2019-10-25 12:04:23 t 1 1 134611 583 0.00 2019-10-25 12:03:55 2019-10-25 12:11:17 t 1 1 62894 131 0.00 2018-05-06 11:40:13 2018-05-06 11:41:53 t 1 1 134613 520 0.00 2019-10-25 11:59:37 2019-10-25 12:15:07 t 1 1 134616 483 0.00 2019-10-25 11:37:25 2019-10-25 12:17:57 t 1 1 134620 220 0.00 2019-10-25 11:39:49 2019-10-25 12:20:19 t 1 2 134623 372 0.00 2019-10-25 11:58:53 2019-10-25 12:23:58 t 1 2 134624 556 0.00 2019-10-25 11:23:09 2019-10-25 12:24:24 t 1 1 134628 220 0.00 2019-10-25 12:25:26 2019-10-25 12:28:38 t 1 2 134630 220 0.00 2019-10-25 12:24:48 2019-10-25 12:30:11 t 1 2 134634 481 0.00 2019-10-25 12:05:33 2019-10-25 12:34:40 t 1 1 134637 583 0.00 2019-10-25 12:31:13 2019-10-25 12:38:36 t 1 1 134638 562 0.00 2019-10-25 12:36:01 2019-10-25 12:40:42 t 1 1 134640 587 0.00 2019-10-25 12:25:56 2019-10-25 12:41:28 t 1 1 134642 562 0.00 2019-10-25 12:42:29 2019-10-25 12:44:40 t 1 1 134644 587 0.00 2019-10-25 12:41:46 2019-10-25 12:47:08 t 1 1 134647 327 0.00 2019-10-25 12:29:57 2019-10-25 12:49:49 t 1 1 134648 597 0.00 2019-10-25 11:27:12 2019-10-25 12:50:23 t 1 1 134652 587 0.00 2019-10-25 12:48:28 2019-10-25 12:55:04 t 1 1 134655 485 0.00 2019-10-25 12:55:20 2019-10-25 13:01:04 t 1 1 134658 544 0.00 2019-10-25 12:59:38 2019-10-25 13:02:56 t 1 2 134659 562 0.00 2019-10-25 13:02:56 2019-10-25 13:03:43 t 1 1 134660 220 0.00 2019-10-25 12:42:50 2019-10-25 13:04:13 t 1 2 134667 583 0.00 2019-10-25 13:02:55 2019-10-25 13:11:21 t 1 1 134669 593 0.00 2019-10-25 11:47:30 2019-10-25 13:15:33 t 1 1 134675 599 0.00 2019-10-25 12:40:09 2019-10-25 13:25:20 t 1 1 134679 220 0.00 2019-10-25 13:06:57 2019-10-25 13:29:20 t 1 2 134682 445 0.00 2019-10-25 12:16:13 2019-10-25 13:31:38 t 1 1 134685 593 0.00 2019-10-25 13:26:27 2019-10-25 13:33:44 t 1 1 134686 445 0.00 2019-10-25 13:32:35 2019-10-25 13:34:13 t 1 1 134691 585 0.00 2019-10-25 13:37:05 2019-10-25 13:39:54 t 1 1 134695 578 0.00 2019-10-25 09:19:14 2019-10-25 13:45:03 t 1 1 134700 562 0.00 2019-10-25 13:47:53 2019-10-25 13:48:26 t 1 1 134704 562 0.00 2019-10-25 13:53:47 2019-10-25 13:54:16 t 1 1 134708 372 0.00 2019-10-25 13:37:52 2019-10-25 13:57:57 t 1 2 134715 220 0.00 2019-10-25 13:02:53 2019-10-25 14:03:41 t 1 1 134719 562 0.00 2019-10-25 14:04:21 2019-10-25 14:05:18 t 1 1 134722 538 0.00 2019-10-25 14:04:42 2019-10-25 14:06:35 t 1 1 134723 372 0.00 2019-10-25 13:52:18 2019-10-25 14:07:23 t 1 2 134724 375 0.00 2019-10-25 13:52:50 2019-10-25 14:08:10 t 1 1 134728 538 0.00 2019-10-25 14:06:58 2019-10-25 14:12:26 t 1 1 134729 578 0.00 2019-10-25 13:45:03 2019-10-25 14:13:00 t 1 1 63000 157 0.00 2018-05-07 14:46:51 2018-05-07 14:48:26 t 1 1 134731 562 0.00 2019-10-25 14:12:53 2019-10-25 14:14:24 t 1 1 134736 587 0.00 2019-10-25 14:05:38 2019-10-25 14:18:54 t 1 1 134737 485 0.00 2019-10-25 14:18:33 2019-10-25 14:19:21 t 1 1 134742 562 0.00 2019-10-25 14:22:04 2019-10-25 14:24:45 t 1 1 134745 562 0.00 2019-10-25 14:29:21 2019-10-25 14:29:38 t 1 1 134746 562 0.00 2019-10-25 14:30:48 2019-10-25 14:31:03 t 1 1 134750 566 0.00 2019-10-25 14:28:11 2019-10-25 14:34:02 t 1 1 134751 562 0.00 2019-10-25 14:37:13 2019-10-25 14:37:27 t 1 1 134753 562 0.00 2019-10-25 14:41:28 2019-10-25 14:41:39 t 1 1 134758 327 0.00 2019-10-25 14:45:23 2019-10-25 14:45:38 t 1 1 134763 587 0.00 2019-10-25 14:50:10 2019-10-25 14:51:33 t 1 1 134764 587 0.00 2019-10-25 14:51:45 2019-10-25 14:51:51 t 1 1 134766 583 0.00 2019-10-25 14:37:54 2019-10-25 14:53:55 t 1 1 134550 562 0.00 2019-10-25 11:00:51 2019-10-25 11:01:51 t 1 1 134551 562 0.00 2019-10-25 11:03:46 2019-10-25 11:04:01 t 1 1 134554 520 0.00 2019-10-25 10:57:08 2019-10-25 11:09:04 t 1 1 134556 564 0.00 2019-10-25 10:41:30 2019-10-25 11:11:01 t 1 1 134557 501 0.00 2019-10-25 11:00:35 2019-10-25 11:12:31 t 1 1 134558 522 0.00 2019-10-25 10:47:54 2019-10-25 11:13:44 t 1 1 134559 556 0.00 2019-10-25 11:01:27 2019-10-25 11:13:48 t 1 1 134562 456 0.00 2019-10-25 11:14:22 2019-10-25 11:16:11 t 1 1 134566 556 0.00 2019-10-25 11:13:48 2019-10-25 11:23:09 t 1 1 134567 562 0.00 2019-10-25 11:24:36 2019-10-25 11:25:04 t 1 1 134575 562 0.00 2019-10-25 11:30:20 2019-10-25 11:32:18 t 1 1 134577 562 0.00 2019-10-25 11:33:13 2019-10-25 11:34:04 t 1 1 134583 501 0.00 2019-10-25 11:34:22 2019-10-25 11:36:37 t 1 1 134584 562 0.00 2019-10-25 11:35:16 2019-10-25 11:37:19 t 1 1 134586 485 0.00 2019-10-25 11:33:31 2019-10-25 11:38:20 t 1 1 134589 501 0.00 2019-10-25 11:36:37 2019-10-25 11:41:29 t 1 1 134594 412 0.00 2019-10-25 11:43:43 2019-10-25 11:45:23 t 1 1 62805 131 0.00 2018-05-05 10:00:57 2018-05-05 10:02:51 t 1 1 134605 451 0.00 2019-10-25 11:55:34 2019-10-25 12:00:02 t 1 1 134609 562 0.00 2019-10-25 12:06:45 2019-10-25 12:07:09 t 1 1 134610 562 0.00 2019-10-25 12:07:39 2019-10-25 12:08:09 t 1 1 134612 583 0.00 2019-10-25 12:11:35 2019-10-25 12:14:58 t 1 1 134614 562 0.00 2019-10-25 12:11:51 2019-10-25 12:15:16 t 1 1 134615 445 0.00 2019-10-25 10:59:42 2019-10-25 12:16:13 t 1 1 134618 512 0.00 2019-10-25 11:52:11 2019-10-25 12:19:33 t 1 1 134621 587 0.00 2019-10-25 12:13:20 2019-10-25 12:20:32 t 1 1 134622 599 0.00 2019-10-25 12:00:37 2019-10-25 12:23:34 t 1 1 134625 587 0.00 2019-10-25 12:21:17 2019-10-25 12:24:27 t 1 1 134627 562 0.00 2019-10-25 12:20:05 2019-10-25 12:27:38 t 1 1 134629 327 0.00 2019-10-25 12:12:25 2019-10-25 12:29:57 t 1 1 134631 501 0.00 2019-10-25 11:49:28 2019-10-25 12:31:35 t 1 1 134636 607 0.00 2019-10-25 11:50:08 2019-10-25 12:38:03 t 1 1 134641 488 0.00 2019-10-25 12:43:42 2019-10-25 12:43:42 f 1 1 134643 361 0.00 2019-10-25 12:02:28 2019-10-25 12:46:18 t 1 2 134650 485 0.00 2019-10-25 12:51:08 2019-10-25 12:52:57 t 1 1 134653 583 0.00 2019-10-25 12:47:34 2019-10-25 12:55:15 t 1 1 134654 562 0.00 2019-10-25 12:58:27 2019-10-25 13:00:46 t 1 1 134656 327 0.00 2019-10-25 12:56:37 2019-10-25 13:01:26 t 1 1 134657 583 0.00 2019-10-25 12:55:15 2019-10-25 13:02:55 t 1 1 134661 587 0.00 2019-10-25 12:55:00 2019-10-25 13:04:15 t 1 1 62856 131 0.00 2018-05-05 20:42:38 2018-05-05 20:43:52 t 1 1 134663 220 0.00 2019-10-25 13:05:00 2019-10-25 13:06:23 t 1 2 134664 538 0.00 2019-10-25 12:30:26 2019-10-25 13:07:20 t 1 1 134672 562 0.00 2019-10-25 13:06:10 2019-10-25 13:17:07 t 1 1 134673 593 0.00 2019-10-25 13:15:33 2019-10-25 13:20:26 t 1 1 134676 593 0.00 2019-10-25 13:20:26 2019-10-25 13:26:27 t 1 1 134677 581 0.00 2019-10-25 13:18:33 2019-10-25 13:27:08 t 1 1 134678 327 0.00 2019-10-25 13:25:58 2019-10-25 13:28:40 t 1 1 134683 599 0.00 2019-10-25 13:30:28 2019-10-25 13:31:45 t 1 1 134684 445 0.00 2019-10-25 13:31:37 2019-10-25 13:32:35 t 1 1 134687 587 0.00 2019-10-25 13:05:08 2019-10-25 13:34:34 t 1 1 62889 131 0.00 2018-05-06 11:08:21 2018-05-06 11:09:53 t 1 1 62896 131 0.00 2018-05-06 11:51:34 2018-05-06 11:52:53 t 1 1 62897 131 0.00 2018-05-06 11:53:04 2018-05-06 11:54:17 t 1 1 134688 581 0.00 2019-10-25 13:27:08 2019-10-25 13:36:06 t 1 1 134692 538 0.00 2019-10-25 13:07:40 2019-10-25 13:42:03 t 1 1 134693 562 0.00 2019-10-25 13:38:47 2019-10-25 13:44:37 t 1 1 134697 516 0.00 2019-10-25 13:41:57 2019-10-25 13:47:03 t 1 1 134701 587 0.00 2019-10-25 13:34:34 2019-10-25 13:48:45 t 1 1 134702 607 0.00 2019-10-25 13:14:16 2019-10-25 13:49:06 t 1 1 134703 375 0.00 2019-10-25 07:22:35 2019-10-25 13:52:50 t 1 1 134705 587 0.00 2019-10-25 13:48:56 2019-10-25 13:54:40 t 1 1 134706 327 0.00 2019-10-25 13:41:01 2019-10-25 13:54:58 t 1 1 134709 562 0.00 2019-10-25 13:58:48 2019-10-25 13:59:04 t 1 1 134712 538 0.00 2019-10-25 14:01:07 2019-10-25 14:02:26 t 1 1 134714 538 0.00 2019-10-25 14:02:26 2019-10-25 14:03:02 t 1 1 134717 566 0.00 2019-10-25 13:49:26 2019-10-25 14:04:49 t 1 1 134718 485 0.00 2019-10-25 13:59:30 2019-10-25 14:05:13 t 1 1 134720 327 0.00 2019-10-25 14:04:22 2019-10-25 14:05:35 t 1 1 134721 445 0.00 2019-10-25 14:02:04 2019-10-25 14:05:42 t 1 1 134730 327 0.00 2019-10-25 14:11:05 2019-10-25 14:13:11 t 1 1 134732 562 0.00 2019-10-25 14:14:33 2019-10-25 14:16:31 t 1 1 134738 607 0.00 2019-10-25 13:49:06 2019-10-25 14:19:48 t 1 1 134741 485 0.00 2019-10-25 14:19:21 2019-10-25 14:24:02 t 1 1 134743 607 0.00 2019-10-25 14:19:48 2019-10-25 14:25:36 t 1 1 134747 327 0.00 2019-10-25 14:25:12 2019-10-25 14:31:47 t 1 1 134749 587 0.00 2019-10-25 14:29:56 2019-10-25 14:32:05 t 1 1 134756 488 0.00 2019-10-25 14:42:14 2019-10-25 14:42:14 f 1 1 134757 327 0.00 2019-10-25 14:41:22 2019-10-25 14:45:15 t 1 1 134760 587 0.00 2019-10-25 14:32:14 2019-10-25 14:49:45 t 1 1 134762 481 0.00 2019-10-25 12:34:48 2019-10-25 14:50:58 t 1 1 134765 562 0.00 2019-10-25 14:52:06 2019-10-25 14:52:43 t 1 1 134767 585 0.00 2019-10-25 14:39:41 2019-10-25 14:54:07 t 1 1 134768 583 0.00 2019-10-25 14:53:55 2019-10-25 14:55:45 t 1 1 134771 599 0.00 2019-10-25 14:23:08 2019-10-25 14:56:24 t 1 1 134773 488 0.00 2019-10-25 14:56:56 2019-10-25 14:56:56 f 1 1 134775 361 0.00 2019-10-25 13:16:25 2019-10-25 14:57:05 t 1 2 134776 327 0.00 2019-10-25 14:55:54 2019-10-25 14:57:51 t 1 1 134779 585 0.00 2019-10-25 14:57:22 2019-10-25 15:01:59 t 1 1 134781 562 0.00 2019-10-25 15:02:38 2019-10-25 15:02:58 t 1 1 134782 481 0.00 2019-10-25 14:51:05 2019-10-25 15:04:06 t 1 1 134784 220 0.00 2019-10-25 15:04:58 2019-10-25 15:07:08 t 1 1 134786 220 0.00 2019-10-25 15:07:08 2019-10-25 15:07:39 t 1 1 134788 220 0.00 2019-10-25 15:07:39 2019-10-25 15:10:17 t 1 1 134790 583 0.00 2019-10-25 15:02:43 2019-10-25 15:12:00 t 1 1 134792 562 0.00 2019-10-25 15:10:51 2019-10-25 15:13:04 t 1 1 134793 562 0.00 2019-10-25 15:13:30 2019-10-25 15:15:49 t 1 1 134796 562 0.00 2019-10-25 15:20:30 2019-10-25 15:21:59 t 1 1 134798 516 0.00 2019-10-25 15:12:02 2019-10-25 15:26:32 t 1 1 134800 485 0.00 2019-10-25 15:22:44 2019-10-25 15:29:46 t 1 1 134804 562 0.00 2019-10-25 15:29:52 2019-10-25 15:31:40 t 1 1 63030 131 0.00 2018-05-07 21:04:19 2018-05-07 21:05:27 t 1 1 134809 375 0.00 2019-10-25 14:08:10 2019-10-25 15:39:27 t 1 1 134812 587 0.00 2019-10-25 15:35:18 2019-10-25 15:42:28 t 1 1 134818 587 0.00 2019-10-25 15:42:43 2019-10-25 15:48:13 t 1 1 134820 327 0.00 2019-10-25 15:49:29 2019-10-25 15:51:16 t 1 1 134824 220 0.00 2019-10-25 15:42:39 2019-10-25 15:55:34 t 1 1 134598 562 0.00 2019-10-25 11:47:21 2019-10-25 11:47:40 t 1 1 63057 131 0.00 2018-05-08 10:05:05 2018-05-08 10:06:28 t 1 1 134599 501 0.00 2019-10-25 11:41:29 2019-10-25 11:49:28 t 1 1 134602 583 0.00 2019-10-25 11:39:32 2019-10-25 11:54:46 t 1 1 134606 591 0.00 2019-10-25 11:38:05 2019-10-25 12:00:15 t 1 1 63071 157 0.00 2018-05-08 12:21:29 2018-05-08 12:22:16 t 1 1 63073 157 0.00 2018-05-08 12:23:54 2018-05-08 12:25:28 t 1 1 63074 157 0.00 2018-05-08 12:43:46 2018-05-08 12:43:46 f 1 1 134617 520 0.00 2019-10-25 12:15:07 2019-10-25 12:18:09 t 1 1 63078 157 0.00 2018-05-08 13:49:22 2018-05-08 13:49:22 f 1 1 63079 157 0.00 2018-05-08 13:58:57 2018-05-08 14:00:28 t 1 1 134619 591 0.00 2019-10-25 12:00:15 2019-10-25 12:19:50 t 1 1 134626 583 0.00 2019-10-25 12:23:58 2019-10-25 12:25:04 t 1 1 134632 585 0.00 2019-10-25 12:20:59 2019-10-25 12:33:51 t 1 1 134633 562 0.00 2019-10-25 12:33:11 2019-10-25 12:34:38 t 1 1 134635 562 0.00 2019-10-25 12:34:51 2019-10-25 12:35:34 t 1 1 134639 599 0.00 2019-10-25 12:33:59 2019-10-25 12:41:04 t 1 1 134645 583 0.00 2019-10-25 12:38:36 2019-10-25 12:47:34 t 1 1 63098 131 0.00 2018-05-08 17:40:16 2018-05-08 17:41:28 t 1 1 134646 562 0.00 2019-10-25 12:47:22 2019-10-25 12:48:00 t 1 1 134649 327 0.00 2019-10-25 12:50:54 2019-10-25 12:51:09 t 1 1 134651 562 0.00 2019-10-25 12:54:14 2019-10-25 12:55:02 t 1 1 134662 562 0.00 2019-10-25 13:04:03 2019-10-25 13:04:17 t 1 1 134665 220 0.00 2019-10-25 13:06:12 2019-10-25 13:07:35 t 1 2 134666 564 0.00 2019-10-25 11:11:18 2019-10-25 13:10:06 t 1 1 134668 607 0.00 2019-10-25 12:38:03 2019-10-25 13:14:16 t 1 1 134670 583 0.00 2019-10-25 13:11:21 2019-10-25 13:15:52 t 1 1 134671 327 0.00 2019-10-25 13:10:50 2019-10-25 13:16:34 t 1 1 134674 456 0.00 2019-10-25 13:10:34 2019-10-25 13:22:04 t 1 1 134680 562 0.00 2019-10-25 13:23:28 2019-10-25 13:29:36 t 1 1 134681 599 0.00 2019-10-25 13:25:24 2019-10-25 13:30:00 t 1 1 134689 562 0.00 2019-10-25 13:37:25 2019-10-25 13:37:45 t 1 1 134690 327 0.00 2019-10-25 13:38:04 2019-10-25 13:39:09 t 1 1 134694 485 0.00 2019-10-25 13:24:26 2019-10-25 13:44:39 t 1 1 134696 562 0.00 2019-10-25 13:46:11 2019-10-25 13:46:52 t 1 1 134698 562 0.00 2019-10-25 13:46:51 2019-10-25 13:47:41 t 1 1 134699 485 0.00 2019-10-25 13:44:39 2019-10-25 13:48:17 t 1 1 134707 562 0.00 2019-10-25 13:57:20 2019-10-25 13:57:46 t 1 1 134710 485 0.00 2019-10-25 13:49:45 2019-10-25 13:59:30 t 1 1 134711 445 0.00 2019-10-25 13:34:11 2019-10-25 14:02:11 t 1 1 134713 562 0.00 2019-10-25 14:00:48 2019-10-25 14:02:56 t 1 1 134716 538 0.00 2019-10-25 14:03:07 2019-10-25 14:04:37 t 1 1 134725 562 0.00 2019-10-25 14:08:09 2019-10-25 14:08:16 t 1 1 134726 562 0.00 2019-10-25 14:09:22 2019-10-25 14:09:41 t 1 1 134727 485 0.00 2019-10-25 14:05:13 2019-10-25 14:12:08 t 1 1 134733 599 0.00 2019-10-25 13:36:00 2019-10-25 14:16:45 t 1 1 134734 220 0.00 2019-10-25 13:29:31 2019-10-25 14:17:55 t 1 2 134735 485 0.00 2019-10-25 14:15:30 2019-10-25 14:18:34 t 1 1 134739 562 0.00 2019-10-25 14:19:58 2019-10-25 14:21:22 t 1 1 134740 327 0.00 2019-10-25 14:22:36 2019-10-25 14:23:51 t 1 1 134744 566 0.00 2019-10-25 14:03:55 2019-10-25 14:28:11 t 1 1 134748 485 0.00 2019-10-25 14:24:02 2019-10-25 14:31:53 t 1 1 134752 488 0.00 2019-10-25 14:40:22 2019-10-25 14:40:22 f 1 1 134754 488 0.00 2019-10-25 14:41:48 2019-10-25 14:41:48 f 1 1 134755 488 0.00 2019-10-25 14:42:03 2019-10-25 14:42:03 f 1 1 134759 566 0.00 2019-10-25 14:34:01 2019-10-25 14:46:32 t 1 1 134761 503 0.00 2019-10-25 14:17:17 2019-10-25 14:50:11 t 1 1 134769 597 0.00 2019-10-25 12:50:52 2019-10-25 14:56:02 t 1 1 134772 587 0.00 2019-10-25 14:52:31 2019-10-25 14:56:35 t 1 1 134778 412 0.00 2019-10-25 11:45:18 2019-10-25 14:59:18 t 1 1 134785 587 0.00 2019-10-25 14:57:11 2019-10-25 15:07:26 t 1 1 134787 562 0.00 2019-10-25 15:09:21 2019-10-25 15:09:41 t 1 1 134789 327 0.00 2019-10-25 15:03:15 2019-10-25 15:11:34 t 1 1 134791 485 0.00 2019-10-25 15:09:48 2019-10-25 15:12:24 t 1 1 134795 372 0.00 2019-10-25 14:51:49 2019-10-25 15:21:54 t 1 2 134797 583 0.00 2019-10-25 15:12:00 2019-10-25 15:22:20 t 1 1 134801 562 0.00 2019-10-25 15:28:58 2019-10-25 15:29:47 t 1 1 134803 445 0.00 2019-10-25 14:05:41 2019-10-25 15:30:38 t 1 1 134808 583 0.00 2019-10-25 15:29:59 2019-10-25 15:37:22 t 1 1 134810 327 0.00 2019-10-25 15:17:14 2019-10-25 15:40:04 t 1 1 134814 583 0.00 2019-10-25 15:37:22 2019-10-25 15:42:49 t 1 1 134819 485 0.00 2019-10-25 15:33:22 2019-10-25 15:48:44 t 1 1 134821 445 0.00 2019-10-25 15:30:37 2019-10-25 15:51:38 t 1 1 134823 566 0.00 2019-10-25 15:30:36 2019-10-25 15:55:22 t 1 1 134825 562 0.00 2019-10-25 15:56:16 2019-10-25 15:56:48 t 1 1 134826 445 0.00 2019-10-25 15:52:05 2019-10-25 15:57:31 t 1 1 134833 562 0.00 2019-10-25 16:03:02 2019-10-25 16:03:51 t 1 1 134840 587 0.00 2019-10-25 15:51:00 2019-10-25 16:12:39 t 1 1 134842 327 0.00 2019-10-25 16:11:58 2019-10-25 16:14:05 t 1 1 134844 587 0.00 2019-10-25 16:12:44 2019-10-25 16:16:39 t 1 1 134845 375 0.00 2019-10-25 16:09:21 2019-10-25 16:17:20 t 1 1 63296 157 0.00 2018-05-10 09:18:14 2018-05-10 09:18:14 f 1 1 63299 157 0.00 2018-05-10 09:21:18 2018-05-10 09:21:18 f 1 1 63301 157 0.00 2018-05-10 09:25:16 2018-05-10 09:25:16 f 1 1 134849 562 0.00 2019-10-25 16:20:17 2019-10-25 16:21:14 t 1 1 134850 599 0.00 2019-10-25 15:16:53 2019-10-25 16:22:03 t 1 1 134852 587 0.00 2019-10-25 16:16:58 2019-10-25 16:22:37 t 1 1 134856 562 0.00 2019-10-25 16:24:50 2019-10-25 16:24:55 t 1 1 63314 157 0.00 2018-05-10 10:37:33 2018-05-10 10:38:03 t 1 1 134860 449 0.00 2019-10-25 16:23:30 2019-10-25 16:26:37 t 1 1 63320 157 0.00 2018-05-10 10:45:28 2018-05-10 10:45:46 t 1 1 63324 157 0.00 2018-05-10 10:47:07 2018-05-10 10:47:07 f 1 1 134863 562 0.00 2019-10-25 16:28:22 2019-10-25 16:28:51 t 1 1 134864 449 0.00 2019-10-25 16:26:37 2019-10-25 16:31:09 t 1 1 134869 375 0.00 2019-10-25 16:25:55 2019-10-25 16:34:56 t 1 1 134870 449 0.00 2019-10-25 16:31:09 2019-10-25 16:35:59 t 1 1 63342 157 0.00 2018-05-10 11:50:52 2018-05-10 11:52:31 t 1 1 134871 445 0.00 2019-10-25 16:12:18 2019-10-25 16:36:49 t 1 1 134874 220 0.00 2019-10-25 16:16:15 2019-10-25 16:40:40 t 1 1 134877 585 0.00 2019-10-25 16:39:51 2019-10-25 16:42:40 t 1 1 134882 581 0.00 2019-10-25 16:20:38 2019-10-25 16:45:42 t 1 1 134889 585 0.00 2019-10-25 16:48:21 2019-10-25 16:51:24 t 1 1 134892 449 0.00 2019-10-25 16:46:52 2019-10-25 16:52:05 t 1 1 134893 220 0.00 2019-10-25 16:52:01 2019-10-25 16:52:14 t 1 1 134895 220 0.00 2019-10-25 16:53:27 2019-10-25 16:55:13 t 1 1 134900 522 0.00 2019-10-25 16:45:39 2019-10-25 16:59:27 t 1 1 134902 581 0.00 2019-10-25 16:55:06 2019-10-25 17:00:02 t 1 1 134770 516 0.00 2019-10-25 14:21:21 2019-10-25 14:56:08 t 1 1 134774 585 0.00 2019-10-25 14:54:06 2019-10-25 14:57:02 t 1 1 63064 157 0.00 2018-05-08 11:19:14 2018-05-08 11:19:14 f 1 1 134777 503 0.00 2019-10-25 14:55:57 2019-10-25 14:58:06 t 1 1 63069 157 0.00 2018-05-08 12:20:21 2018-05-08 12:20:52 t 1 1 134780 220 0.00 2019-10-25 14:45:03 2019-10-25 15:02:34 t 1 1 134783 220 0.00 2019-10-25 15:02:33 2019-10-25 15:04:59 t 1 1 134794 485 0.00 2019-10-25 15:12:23 2019-10-25 15:19:29 t 1 1 134799 220 0.00 2019-10-25 14:48:16 2019-10-25 15:27:55 t 1 2 134802 583 0.00 2019-10-25 15:22:20 2019-10-25 15:29:59 t 1 1 134805 562 0.00 2019-10-25 15:33:41 2019-10-25 15:33:47 t 1 1 134806 587 0.00 2019-10-25 15:14:48 2019-10-25 15:35:08 t 1 1 134807 544 0.00 2019-10-25 15:34:39 2019-10-25 15:36:57 t 1 2 134811 585 0.00 2019-10-25 15:39:05 2019-10-25 15:42:21 t 1 1 134813 220 0.00 2019-10-25 15:10:17 2019-10-25 15:42:39 t 1 1 134815 583 0.00 2019-10-25 15:42:49 2019-10-25 15:44:20 t 1 1 134816 562 0.00 2019-10-25 15:34:33 2019-10-25 15:45:30 t 1 1 134817 562 0.00 2019-10-25 15:45:52 2019-10-25 15:46:08 t 1 1 134822 522 0.00 2019-10-25 15:46:32 2019-10-25 15:52:59 t 1 1 134829 522 0.00 2019-10-25 15:52:59 2019-10-25 15:59:57 t 1 1 134831 327 0.00 2019-10-25 16:00:42 2019-10-25 16:02:32 t 1 1 134836 485 0.00 2019-10-25 15:59:51 2019-10-25 16:06:58 t 1 1 134841 562 0.00 2019-10-25 16:11:16 2019-10-25 16:12:39 t 1 1 134846 461 0.00 2019-10-25 16:18:45 2019-10-25 16:18:45 f 1 2 134847 566 0.00 2019-10-25 15:55:22 2019-10-25 16:19:50 t 1 1 134851 522 0.00 2019-10-25 15:59:57 2019-10-25 16:22:36 t 1 1 134853 449 0.00 2019-10-25 16:19:09 2019-10-25 16:23:30 t 1 1 134857 375 0.00 2019-10-25 16:17:20 2019-10-25 16:25:55 t 1 1 134858 585 0.00 2019-10-25 16:21:47 2019-10-25 16:26:11 t 1 1 134862 327 0.00 2019-10-25 16:23:30 2019-10-25 16:28:30 t 1 1 63154 157 0.00 2018-05-09 09:42:59 2018-05-09 09:44:28 t 1 1 134865 562 0.00 2019-10-25 16:31:55 2019-10-25 16:32:00 t 1 1 63156 131 0.00 2018-05-09 10:17:16 2018-05-09 10:18:28 t 1 1 134866 587 0.00 2019-10-25 16:25:13 2019-10-25 16:33:14 t 1 1 134876 562 0.00 2019-10-25 16:39:49 2019-10-25 16:41:47 t 1 1 134879 583 0.00 2019-10-25 16:38:45 2019-10-25 16:43:59 t 1 1 134881 522 0.00 2019-10-25 16:33:29 2019-10-25 16:45:39 t 1 1 134883 597 0.00 2019-10-25 16:24:36 2019-10-25 16:46:21 t 1 1 134887 562 0.00 2019-10-25 16:47:37 2019-10-25 16:48:29 t 1 1 134894 581 0.00 2019-10-25 16:45:42 2019-10-25 16:55:06 t 1 1 134896 587 0.00 2019-10-25 16:46:12 2019-10-25 16:55:23 t 1 1 134897 485 0.00 2019-10-25 16:54:20 2019-10-25 16:56:48 t 1 1 134899 449 0.00 2019-10-25 16:52:05 2019-10-25 16:57:10 t 1 1 134901 593 0.00 2019-10-25 16:13:46 2019-10-25 17:00:00 t 1 1 134903 581 0.00 2019-10-25 17:00:02 2019-10-25 17:01:58 t 1 1 134905 449 0.00 2019-10-25 16:57:10 2019-10-25 17:03:05 t 1 1 134906 562 0.00 2019-10-25 16:57:44 2019-10-25 17:03:35 t 1 1 134908 593 0.00 2019-10-25 17:00:00 2019-10-25 17:11:44 t 1 1 134912 566 0.00 2019-10-25 16:44:26 2019-10-25 17:13:56 t 1 1 134913 562 0.00 2019-10-25 17:13:00 2019-10-25 17:14:06 t 1 1 134915 220 0.00 2019-10-25 17:13:36 2019-10-25 17:14:11 t 1 1 134916 593 0.00 2019-10-25 17:11:44 2019-10-25 17:19:56 t 1 1 134918 562 0.00 2019-10-25 17:17:23 2019-10-25 17:22:59 t 1 1 134919 591 0.00 2019-10-25 17:13:30 2019-10-25 17:24:35 t 1 1 134920 585 0.00 2019-10-25 17:21:56 2019-10-25 17:26:52 t 1 1 134921 562 0.00 2019-10-25 17:23:40 2019-10-25 17:27:23 t 1 1 134925 562 0.00 2019-10-25 17:33:21 2019-10-25 17:34:18 t 1 1 134927 562 0.00 2019-10-25 17:34:39 2019-10-25 17:37:47 t 1 1 134930 220 0.00 2019-10-25 17:14:11 2019-10-25 17:43:01 t 1 1 134931 591 0.00 2019-10-25 17:37:53 2019-10-25 17:44:01 t 1 1 134932 562 0.00 2019-10-25 17:38:12 2019-10-25 17:45:26 t 1 1 134933 375 0.00 2019-10-25 17:34:34 2019-10-25 17:46:37 t 1 1 134935 587 0.00 2019-10-25 17:45:16 2019-10-25 17:48:21 t 1 1 134936 566 0.00 2019-10-25 17:13:56 2019-10-25 17:49:33 t 1 1 134939 597 0.00 2019-10-25 17:51:48 2019-10-25 17:52:33 t 1 1 134944 485 0.00 2019-10-25 17:56:09 2019-10-25 17:57:54 t 1 1 134947 595 0.00 2019-10-25 17:54:30 2019-10-25 17:59:36 t 1 1 134960 595 0.00 2019-10-25 18:04:38 2019-10-25 18:05:01 t 1 1 134962 585 0.00 2019-10-25 18:00:52 2019-10-25 18:05:56 t 1 1 134965 583 0.00 2019-10-25 18:04:10 2019-10-25 18:06:12 t 1 1 134966 220 0.00 2019-10-25 18:06:04 2019-10-25 18:06:39 t 1 1 63294 157 0.00 2018-05-10 09:17:39 2018-05-10 09:17:39 f 1 1 63297 157 0.00 2018-05-10 09:20:46 2018-05-10 09:20:46 f 1 1 63303 157 0.00 2018-05-10 09:38:15 2018-05-10 09:38:15 f 1 1 134967 566 0.00 2019-10-25 17:49:33 2019-10-25 18:07:01 t 1 1 134969 587 0.00 2019-10-25 17:51:14 2019-10-25 18:07:49 t 1 1 63315 157 0.00 2018-05-10 10:38:03 2018-05-10 10:38:08 t 1 1 63317 157 0.00 2018-05-10 10:38:21 2018-05-10 10:39:31 t 1 1 63321 157 0.00 2018-05-10 10:45:46 2018-05-10 10:45:59 t 1 1 63322 157 0.00 2018-05-10 10:45:59 2018-05-10 10:46:49 t 1 1 63326 157 0.00 2018-05-10 10:47:48 2018-05-10 10:49:31 t 1 1 134971 595 0.00 2019-10-25 18:08:07 2019-10-25 18:08:25 t 1 1 134986 595 0.00 2019-10-25 18:15:02 2019-10-25 18:15:11 t 1 1 134989 562 0.00 2019-10-25 17:57:26 2019-10-25 18:15:34 t 1 1 134991 220 0.00 2019-10-25 18:15:30 2019-10-25 18:15:40 t 1 1 134995 562 0.00 2019-10-25 18:15:48 2019-10-25 18:16:09 t 1 1 134997 595 0.00 2019-10-25 18:15:58 2019-10-25 18:16:16 t 1 1 134999 587 0.00 2019-10-25 18:08:02 2019-10-25 18:16:29 t 1 1 135006 220 0.00 2019-10-25 18:17:12 2019-10-25 18:17:23 t 1 1 135008 562 0.00 2019-10-25 18:16:33 2019-10-25 18:17:35 t 1 1 135012 220 0.00 2019-10-25 18:18:03 2019-10-25 18:18:14 t 1 1 135015 220 0.00 2019-10-25 18:18:35 2019-10-25 18:18:48 t 1 1 135016 220 0.00 2019-10-25 18:18:48 2019-10-25 18:18:58 t 1 1 135019 220 0.00 2019-10-25 18:19:18 2019-10-25 18:19:36 t 1 1 135022 220 0.00 2019-10-25 18:19:56 2019-10-25 18:20:06 t 1 1 135024 595 0.00 2019-10-25 18:20:13 2019-10-25 18:20:15 t 1 1 135027 220 0.00 2019-10-25 18:20:26 2019-10-25 18:20:40 t 1 1 135034 220 0.00 2019-10-25 18:21:33 2019-10-25 18:21:45 t 1 1 135036 220 0.00 2019-10-25 18:21:44 2019-10-25 18:21:54 t 1 1 135037 220 0.00 2019-10-25 18:21:54 2019-10-25 18:22:05 t 1 1 135040 220 0.00 2019-10-25 18:22:25 2019-10-25 18:22:36 t 1 1 135045 220 0.00 2019-10-25 18:23:18 2019-10-25 18:23:29 t 1 1 135046 220 0.00 2019-10-25 18:23:28 2019-10-25 18:23:38 t 1 1 135049 220 0.00 2019-10-25 18:23:49 2019-10-25 18:24:00 t 1 1 135050 593 0.00 2019-10-25 17:48:56 2019-10-25 18:24:07 t 1 1 135055 220 0.00 2019-10-25 18:24:31 2019-10-25 18:24:41 t 1 1 135056 220 0.00 2019-10-25 18:24:41 2019-10-25 18:24:52 t 1 1 134827 451 0.00 2019-10-25 15:18:29 2019-10-25 15:58:11 t 1 1 134828 485 0.00 2019-10-25 15:48:44 2019-10-25 15:59:51 t 1 1 134830 562 0.00 2019-10-25 16:00:05 2019-10-25 16:01:55 t 1 1 63066 157 0.00 2018-05-08 11:50:13 2018-05-08 11:51:28 t 1 1 63072 157 0.00 2018-05-08 12:22:16 2018-05-08 12:23:28 t 1 1 134832 451 0.00 2019-10-25 15:58:11 2019-10-25 16:03:20 t 1 1 134834 451 0.00 2019-10-25 16:03:19 2019-10-25 16:04:21 t 1 1 134835 372 0.00 2019-10-25 15:30:13 2019-10-25 16:05:18 t 1 2 134837 562 0.00 2019-10-25 16:06:23 2019-10-25 16:07:46 t 1 1 134838 375 0.00 2019-10-25 15:39:27 2019-10-25 16:09:21 t 1 1 134839 445 0.00 2019-10-25 15:57:31 2019-10-25 16:12:18 t 1 1 134843 220 0.00 2019-10-25 15:55:37 2019-10-25 16:16:15 t 1 1 134848 481 0.00 2019-10-25 15:04:06 2019-10-25 16:20:06 t 1 1 134854 597 0.00 2019-10-25 16:23:10 2019-10-25 16:24:30 t 1 1 134855 587 0.00 2019-10-25 16:22:42 2019-10-25 16:24:53 t 1 1 134859 485 0.00 2019-10-25 16:06:58 2019-10-25 16:26:27 t 1 1 134861 562 0.00 2019-10-25 16:27:49 2019-10-25 16:28:10 t 1 1 134867 522 0.00 2019-10-25 16:22:36 2019-10-25 16:33:29 t 1 1 134868 562 0.00 2019-10-25 16:33:12 2019-10-25 16:34:26 t 1 1 134872 562 0.00 2019-10-25 16:35:54 2019-10-25 16:37:25 t 1 1 134873 445 0.00 2019-10-25 16:36:48 2019-10-25 16:40:14 t 1 1 134875 449 0.00 2019-10-25 16:35:59 2019-10-25 16:41:08 t 1 1 134878 498 0.00 2019-10-25 15:41:12 2019-10-25 16:43:50 t 1 2 134880 566 0.00 2019-10-25 16:19:50 2019-10-25 16:44:26 t 1 1 134884 449 0.00 2019-10-25 16:41:08 2019-10-25 16:46:52 t 1 1 134885 562 0.00 2019-10-25 16:45:36 2019-10-25 16:47:22 t 1 1 134886 327 0.00 2019-10-25 16:29:28 2019-10-25 16:47:58 t 1 1 134888 220 0.00 2019-10-25 15:11:06 2019-10-25 16:51:22 t 1 1 134890 220 0.00 2019-10-25 16:51:21 2019-10-25 16:51:36 t 1 1 134891 220 0.00 2019-10-25 16:51:35 2019-10-25 16:52:02 t 1 1 134898 562 0.00 2019-10-25 16:56:30 2019-10-25 16:56:54 t 1 1 134904 585 0.00 2019-10-25 16:59:45 2019-10-25 17:02:38 t 1 1 134910 591 0.00 2019-10-25 16:50:18 2019-10-25 17:13:30 t 1 1 134914 562 0.00 2019-10-25 17:13:36 2019-10-25 17:14:09 t 1 1 134917 375 0.00 2019-10-25 16:34:56 2019-10-25 17:21:12 t 1 1 134922 485 0.00 2019-10-25 17:26:00 2019-10-25 17:27:23 t 1 1 134924 562 0.00 2019-10-25 17:28:55 2019-10-25 17:30:59 t 1 1 134928 591 0.00 2019-10-25 17:24:35 2019-10-25 17:37:53 t 1 1 134934 562 0.00 2019-10-25 17:46:08 2019-10-25 17:46:52 t 1 1 134937 591 0.00 2019-10-25 17:44:01 2019-10-25 17:50:36 t 1 1 134938 485 0.00 2019-10-25 17:48:11 2019-10-25 17:52:22 t 1 1 134941 562 0.00 2019-10-25 17:53:16 2019-10-25 17:54:33 t 1 1 134945 220 0.00 2019-10-25 17:14:29 2019-10-25 17:59:00 t 1 2 134946 514 0.00 2019-10-25 17:52:38 2019-10-25 17:59:23 t 1 1 134951 220 0.00 2019-10-25 18:00:24 2019-10-25 18:00:57 t 1 1 134953 220 0.00 2019-10-25 18:00:57 2019-10-25 18:01:33 t 1 1 134954 220 0.00 2019-10-25 18:01:33 2019-10-25 18:02:07 t 1 1 134955 220 0.00 2019-10-25 18:02:07 2019-10-25 18:02:37 t 1 1 134956 220 0.00 2019-10-25 18:02:37 2019-10-25 18:03:11 t 1 1 134957 220 0.00 2019-10-25 18:03:11 2019-10-25 18:04:01 t 1 1 134973 220 0.00 2019-10-25 18:07:57 2019-10-25 18:09:06 t 1 1 134975 220 0.00 2019-10-25 18:09:06 2019-10-25 18:09:38 t 1 1 134977 220 0.00 2019-10-25 18:09:38 2019-10-25 18:10:11 t 1 1 134980 591 0.00 2019-10-25 17:50:36 2019-10-25 18:11:01 t 1 1 134983 564 0.00 2019-10-25 17:29:28 2019-10-25 18:14:44 t 1 1 134990 372 0.00 2019-10-25 18:00:34 2019-10-25 18:15:40 t 1 2 134992 595 0.00 2019-10-25 18:15:23 2019-10-25 18:15:44 t 1 1 134993 220 0.00 2019-10-25 18:15:40 2019-10-25 18:15:52 t 1 1 135005 220 0.00 2019-10-25 18:17:03 2019-10-25 18:17:13 t 1 1 135010 220 0.00 2019-10-25 18:17:43 2019-10-25 18:17:54 t 1 1 135011 220 0.00 2019-10-25 18:17:53 2019-10-25 18:18:04 t 1 1 135014 220 0.00 2019-10-25 18:18:26 2019-10-25 18:18:36 t 1 1 135018 220 0.00 2019-10-25 18:19:08 2019-10-25 18:19:18 t 1 1 135021 220 0.00 2019-10-25 18:19:46 2019-10-25 18:19:57 t 1 1 135023 587 0.00 2019-10-25 18:16:37 2019-10-25 18:20:11 t 1 1 135026 220 0.00 2019-10-25 18:20:16 2019-10-25 18:20:26 t 1 1 135030 220 0.00 2019-10-25 18:21:01 2019-10-25 18:21:11 t 1 1 135033 220 0.00 2019-10-25 18:21:23 2019-10-25 18:21:33 t 1 1 135035 485 0.00 2019-10-25 18:20:05 2019-10-25 18:21:54 t 1 1 135039 220 0.00 2019-10-25 18:22:15 2019-10-25 18:22:26 t 1 1 135043 220 0.00 2019-10-25 18:22:58 2019-10-25 18:23:09 t 1 1 135044 220 0.00 2019-10-25 18:23:08 2019-10-25 18:23:18 t 1 1 135052 220 0.00 2019-10-25 18:24:11 2019-10-25 18:24:21 t 1 1 135054 220 0.00 2019-10-25 18:24:21 2019-10-25 18:24:32 t 1 1 135061 220 0.00 2019-10-25 18:25:12 2019-10-25 18:25:22 t 1 1 135067 220 0.00 2019-10-25 18:26:05 2019-10-25 18:26:17 t 1 1 135070 220 0.00 2019-10-25 18:26:39 2019-10-25 18:26:49 t 1 1 135071 220 0.00 2019-10-25 18:26:48 2019-10-25 18:26:59 t 1 1 135073 220 0.00 2019-10-25 18:26:59 2019-10-25 18:27:09 t 1 1 135076 220 0.00 2019-10-25 18:27:29 2019-10-25 18:27:40 t 1 1 135080 220 0.00 2019-10-25 18:28:10 2019-10-25 18:28:24 t 1 1 135085 220 0.00 2019-10-25 18:29:04 2019-10-25 18:29:14 t 1 1 135088 220 0.00 2019-10-25 18:29:35 2019-10-25 18:29:47 t 1 1 63290 157 0.00 2018-05-10 09:15:07 2018-05-10 09:15:07 f 1 1 63292 157 0.00 2018-05-10 09:16:03 2018-05-10 09:16:03 f 1 1 63293 157 0.00 2018-05-10 09:16:33 2018-05-10 09:16:33 f 1 1 63295 157 0.00 2018-05-10 09:17:46 2018-05-10 09:17:46 f 1 1 135096 595 0.00 2019-10-25 18:32:02 2019-10-25 18:32:23 t 1 1 135102 562 0.00 2019-10-25 18:35:22 2019-10-25 18:36:05 t 1 1 135105 562 0.00 2019-10-25 18:38:50 2019-10-25 18:40:02 t 1 1 135106 361 0.00 2019-10-25 18:23:12 2019-10-25 18:40:23 t 1 2 135112 220 0.00 2019-10-25 18:43:16 2019-10-25 18:43:26 t 1 1 135115 220 0.00 2019-10-25 18:34:17 2019-10-25 18:44:10 t 1 1 135121 220 0.00 2019-10-25 18:44:35 2019-10-25 18:44:47 t 1 1 135122 562 0.00 2019-10-25 18:44:33 2019-10-25 18:45:10 t 1 1 63319 157 0.00 2018-05-10 10:45:03 2018-05-10 10:45:28 t 1 1 63323 157 0.00 2018-05-10 10:46:49 2018-05-10 10:47:07 t 1 1 63325 157 0.00 2018-05-10 10:47:23 2018-05-10 10:47:48 t 1 1 135126 220 0.00 2019-10-25 18:45:43 2019-10-25 18:46:08 t 1 1 135128 220 0.00 2019-10-25 18:46:17 2019-10-25 18:47:09 t 1 1 63340 157 0.00 2018-05-10 11:49:35 2018-05-10 11:49:55 t 1 1 63341 157 0.00 2018-05-10 11:49:55 2018-05-10 11:50:52 t 1 1 135131 220 0.00 2019-10-25 18:47:31 2019-10-25 18:47:41 t 1 1 135134 585 0.00 2019-10-25 18:44:43 2019-10-25 18:48:22 t 1 1 135136 562 0.00 2019-10-25 18:48:28 2019-10-25 18:48:32 t 1 1 135140 220 0.00 2019-10-25 18:49:24 2019-10-25 18:49:34 t 1 1 135142 220 0.00 2019-10-25 18:49:34 2019-10-25 18:51:19 t 1 1 134907 449 0.00 2019-10-25 17:03:05 2019-10-25 17:06:38 t 1 1 134909 220 0.00 2019-10-25 17:03:15 2019-10-25 17:12:59 t 1 1 134911 220 0.00 2019-10-25 17:12:59 2019-10-25 17:13:36 t 1 1 134923 538 0.00 2019-10-25 14:16:02 2019-10-25 17:29:59 t 1 1 134926 372 0.00 2019-10-25 17:22:22 2019-10-25 17:37:28 t 1 2 134929 512 0.00 2019-10-25 17:26:58 2019-10-25 17:38:48 t 1 1 134940 514 0.00 2019-10-25 17:48:08 2019-10-25 17:52:38 t 1 1 134942 562 0.00 2019-10-25 17:54:36 2019-10-25 17:55:33 t 1 1 134943 485 0.00 2019-10-25 17:52:22 2019-10-25 17:56:10 t 1 1 134948 220 0.00 2019-10-25 17:43:13 2019-10-25 17:59:51 t 1 1 134949 485 0.00 2019-10-25 17:57:53 2019-10-25 18:00:19 t 1 1 134950 220 0.00 2019-10-25 17:59:50 2019-10-25 18:00:24 t 1 1 134952 597 0.00 2019-10-25 17:58:56 2019-10-25 18:01:30 t 1 1 134958 583 0.00 2019-10-25 18:02:24 2019-10-25 18:04:10 t 1 1 134959 220 0.00 2019-10-25 18:04:01 2019-10-25 18:04:36 t 1 1 134961 595 0.00 2019-10-25 18:05:13 2019-10-25 18:05:32 t 1 1 134963 485 0.00 2019-10-25 18:00:19 2019-10-25 18:06:02 t 1 1 134964 220 0.00 2019-10-25 18:04:35 2019-10-25 18:06:04 t 1 1 134968 220 0.00 2019-10-25 18:06:38 2019-10-25 18:07:24 t 1 1 134970 220 0.00 2019-10-25 18:07:24 2019-10-25 18:07:57 t 1 1 134972 538 0.00 2019-10-25 17:34:23 2019-10-25 18:09:05 t 1 1 134974 485 0.00 2019-10-25 18:06:02 2019-10-25 18:09:19 t 1 1 134976 595 0.00 2019-10-25 18:09:52 2019-10-25 18:09:59 t 1 1 134978 514 0.00 2019-10-25 17:59:23 2019-10-25 18:10:18 t 1 1 134979 220 0.00 2019-10-25 18:10:11 2019-10-25 18:10:46 t 1 1 134981 220 0.00 2019-10-25 18:10:45 2019-10-25 18:13:40 t 1 1 134982 220 0.00 2019-10-25 18:13:40 2019-10-25 18:14:14 t 1 1 134984 583 0.00 2019-10-25 18:06:12 2019-10-25 18:14:50 t 1 1 134985 220 0.00 2019-10-25 16:52:13 2019-10-25 18:15:09 t 1 1 134987 220 0.00 2019-10-25 18:15:09 2019-10-25 18:15:19 t 1 1 134988 220 0.00 2019-10-25 18:15:18 2019-10-25 18:15:30 t 1 1 134994 220 0.00 2019-10-25 18:15:51 2019-10-25 18:16:01 t 1 1 134996 220 0.00 2019-10-25 18:16:01 2019-10-25 18:16:12 t 1 1 134998 220 0.00 2019-10-25 18:16:12 2019-10-25 18:16:22 t 1 1 135000 564 0.00 2019-10-25 18:14:44 2019-10-25 18:16:29 t 1 1 135001 220 0.00 2019-10-25 18:16:21 2019-10-25 18:16:34 t 1 1 135002 220 0.00 2019-10-25 18:16:33 2019-10-25 18:16:43 t 1 1 135003 351 0.00 2019-10-25 18:06:55 2019-10-25 18:17:00 t 1 2 135004 220 0.00 2019-10-25 18:16:43 2019-10-25 18:17:03 t 1 1 135007 220 0.00 2019-10-25 18:17:23 2019-10-25 18:17:33 t 1 1 135009 220 0.00 2019-10-25 18:17:33 2019-10-25 18:17:44 t 1 1 135013 220 0.00 2019-10-25 18:18:13 2019-10-25 18:18:26 t 1 1 135017 220 0.00 2019-10-25 18:18:58 2019-10-25 18:19:09 t 1 1 135020 220 0.00 2019-10-25 18:19:31 2019-10-25 18:19:46 t 1 1 135025 220 0.00 2019-10-25 18:20:06 2019-10-25 18:20:17 t 1 1 135028 220 0.00 2019-10-25 18:20:40 2019-10-25 18:20:50 t 1 1 135029 220 0.00 2019-10-25 18:20:49 2019-10-25 18:21:02 t 1 1 135031 514 0.00 2019-10-25 18:10:18 2019-10-25 18:21:20 t 1 1 135032 220 0.00 2019-10-25 18:21:11 2019-10-25 18:21:24 t 1 1 135038 220 0.00 2019-10-25 18:22:05 2019-10-25 18:22:15 t 1 1 135041 220 0.00 2019-10-25 18:22:35 2019-10-25 18:22:49 t 1 1 135042 220 0.00 2019-10-25 18:22:48 2019-10-25 18:22:58 t 1 1 135047 220 0.00 2019-10-25 18:23:38 2019-10-25 18:23:50 t 1 1 135048 583 0.00 2019-10-25 18:14:50 2019-10-25 18:23:59 t 1 1 135051 220 0.00 2019-10-25 18:23:59 2019-10-25 18:24:12 t 1 1 135053 562 0.00 2019-10-25 18:16:48 2019-10-25 18:24:26 t 1 1 135058 220 0.00 2019-10-25 18:24:51 2019-10-25 18:25:01 t 1 1 135060 220 0.00 2019-10-25 18:25:01 2019-10-25 18:25:12 t 1 1 135063 220 0.00 2019-10-25 18:25:22 2019-10-25 18:25:33 t 1 1 135064 220 0.00 2019-10-25 18:25:33 2019-10-25 18:25:43 t 1 1 135065 220 0.00 2019-10-25 18:25:42 2019-10-25 18:25:55 t 1 1 135066 220 0.00 2019-10-25 18:25:55 2019-10-25 18:26:05 t 1 1 135069 220 0.00 2019-10-25 18:26:26 2019-10-25 18:26:39 t 1 1 135072 562 0.00 2019-10-25 18:25:46 2019-10-25 18:27:06 t 1 1 135075 220 0.00 2019-10-25 18:27:19 2019-10-25 18:27:29 t 1 1 135079 220 0.00 2019-10-25 18:28:01 2019-10-25 18:28:11 t 1 1 135083 220 0.00 2019-10-25 18:28:43 2019-10-25 18:28:53 t 1 1 135084 220 0.00 2019-10-25 18:28:53 2019-10-25 18:29:05 t 1 1 135087 220 0.00 2019-10-25 18:29:25 2019-10-25 18:29:36 t 1 1 135089 526 0.00 2019-10-25 18:28:35 2019-10-25 18:29:47 t 1 1 135091 220 0.00 2019-10-25 18:29:47 2019-10-25 18:29:57 t 1 1 135092 595 0.00 2019-10-25 18:30:32 2019-10-25 18:30:43 t 1 1 135093 597 0.00 2019-10-25 18:23:30 2019-10-25 18:30:58 t 1 1 135097 587 0.00 2019-10-25 18:30:26 2019-10-25 18:32:32 t 1 1 135099 514 0.00 2019-10-25 18:21:20 2019-10-25 18:33:15 t 1 1 135100 512 0.00 2019-10-25 18:30:09 2019-10-25 18:34:08 t 1 1 135101 595 0.00 2019-10-25 18:35:40 2019-10-25 18:35:47 t 1 1 135103 585 0.00 2019-10-25 18:32:06 2019-10-25 18:36:18 t 1 1 135107 562 0.00 2019-10-25 18:40:22 2019-10-25 18:40:28 t 1 1 135110 585 0.00 2019-10-25 18:38:25 2019-10-25 18:42:59 t 1 1 135111 220 0.00 2019-10-25 18:29:56 2019-10-25 18:43:16 t 1 1 135117 220 0.00 2019-10-25 18:44:10 2019-10-25 18:44:20 t 1 1 63620 131 0.00 2018-05-12 14:45:02 2018-05-12 14:46:32 t 1 1 135120 351 0.00 2019-10-25 18:42:33 2019-10-25 18:44:44 t 1 2 135124 220 0.00 2019-10-25 18:45:33 2019-10-25 18:45:44 t 1 1 135130 220 0.00 2019-10-25 18:47:18 2019-10-25 18:47:31 t 1 1 135132 570 0.00 2019-10-25 18:46:23 2019-10-25 18:47:53 t 1 1 135133 220 0.00 2019-10-25 18:47:40 2019-10-25 18:48:13 t 1 1 135135 220 0.00 2019-10-25 18:48:12 2019-10-25 18:48:22 t 1 1 135138 220 0.00 2019-10-25 18:48:33 2019-10-25 18:48:44 t 1 1 135139 220 0.00 2019-10-25 18:48:43 2019-10-25 18:49:25 t 1 1 135141 597 0.00 2019-10-25 18:36:42 2019-10-25 18:50:59 t 1 1 135147 220 0.00 2019-10-25 18:52:12 2019-10-25 18:52:45 t 1 1 135152 562 0.00 2019-10-25 18:54:06 2019-10-25 18:55:40 t 1 1 135154 599 0.00 2019-10-25 18:54:05 2019-10-25 18:57:13 t 1 1 135155 562 0.00 2019-10-25 18:58:16 2019-10-25 18:58:43 t 1 1 135159 514 0.00 2019-10-25 18:42:16 2019-10-25 19:02:27 t 1 1 135160 591 0.00 2019-10-25 18:41:48 2019-10-25 19:03:34 t 1 1 135164 562 0.00 2019-10-25 19:07:30 2019-10-25 19:08:54 t 1 1 135165 514 0.00 2019-10-25 19:02:27 2019-10-25 19:09:45 t 1 1 135168 562 0.00 2019-10-25 19:09:06 2019-10-25 19:13:36 t 1 1 135170 593 0.00 2019-10-25 18:24:06 2019-10-25 19:14:17 t 1 1 135172 481 0.00 2019-10-25 18:25:33 2019-10-25 19:16:37 t 1 1 135175 562 0.00 2019-10-25 19:17:09 2019-10-25 19:17:51 t 1 1 135177 327 0.00 2019-10-25 19:15:42 2019-10-25 19:18:53 t 1 1 135182 578 0.00 2019-10-25 19:17:43 2019-10-25 19:23:42 t 1 1 135183 593 0.00 2019-10-25 19:14:17 2019-10-25 19:24:18 t 1 1 135057 562 0.00 2019-10-25 18:24:44 2019-10-25 18:25:01 t 1 1 135059 583 0.00 2019-10-25 18:24:01 2019-10-25 18:25:03 t 1 1 135062 595 0.00 2019-10-25 18:25:25 2019-10-25 18:25:32 t 1 1 135068 220 0.00 2019-10-25 18:26:16 2019-10-25 18:26:27 t 1 1 135074 220 0.00 2019-10-25 18:27:09 2019-10-25 18:27:20 t 1 1 135077 220 0.00 2019-10-25 18:27:40 2019-10-25 18:27:50 t 1 1 135078 220 0.00 2019-10-25 18:27:50 2019-10-25 18:28:01 t 1 1 135081 220 0.00 2019-10-25 18:28:23 2019-10-25 18:28:33 t 1 1 135082 220 0.00 2019-10-25 18:28:33 2019-10-25 18:28:44 t 1 1 135086 220 0.00 2019-10-25 18:29:14 2019-10-25 18:29:26 t 1 1 135090 220 0.00 2019-10-25 18:14:14 2019-10-25 18:29:54 t 1 1 135094 595 0.00 2019-10-25 18:30:52 2019-10-25 18:31:13 t 1 1 135095 595 0.00 2019-10-25 18:31:28 2019-10-25 18:31:53 t 1 1 135098 562 0.00 2019-10-25 18:31:26 2019-10-25 18:32:34 t 1 1 135104 591 0.00 2019-10-25 18:17:01 2019-10-25 18:37:47 t 1 1 135108 595 0.00 2019-10-25 18:40:12 2019-10-25 18:41:40 t 1 1 135109 514 0.00 2019-10-25 18:33:15 2019-10-25 18:42:16 t 1 1 135113 220 0.00 2019-10-25 18:43:25 2019-10-25 18:43:48 t 1 1 135114 220 0.00 2019-10-25 18:43:48 2019-10-25 18:43:57 t 1 1 135116 220 0.00 2019-10-25 18:43:57 2019-10-25 18:44:10 t 1 1 135118 562 0.00 2019-10-25 18:41:38 2019-10-25 18:44:25 t 1 1 135119 220 0.00 2019-10-25 18:44:20 2019-10-25 18:44:35 t 1 1 135123 220 0.00 2019-10-25 18:44:47 2019-10-25 18:45:33 t 1 1 135125 578 0.00 2019-10-25 17:45:18 2019-10-25 18:45:47 t 1 1 135127 220 0.00 2019-10-25 18:46:08 2019-10-25 18:46:18 t 1 1 135129 220 0.00 2019-10-25 18:47:09 2019-10-25 18:47:19 t 1 1 135137 220 0.00 2019-10-25 18:48:22 2019-10-25 18:48:34 t 1 1 135143 220 0.00 2019-10-25 18:51:18 2019-10-25 18:51:28 t 1 1 135146 220 0.00 2019-10-25 18:52:02 2019-10-25 18:52:12 t 1 1 135151 578 0.00 2019-10-25 18:45:47 2019-10-25 18:54:15 t 1 1 135153 564 0.00 2019-10-25 18:16:29 2019-10-25 18:56:26 t 1 1 135158 361 0.00 2019-10-25 18:42:35 2019-10-25 19:01:50 t 1 2 135161 327 0.00 2019-10-25 18:59:12 2019-10-25 19:03:53 t 1 1 135162 327 0.00 2019-10-25 19:04:04 2019-10-25 19:04:05 t 1 1 135163 562 0.00 2019-10-25 19:04:05 2019-10-25 19:04:37 t 1 1 135166 578 0.00 2019-10-25 18:54:15 2019-10-25 19:10:42 t 1 1 135167 327 0.00 2019-10-25 19:04:12 2019-10-25 19:11:09 t 1 1 135173 562 0.00 2019-10-25 19:13:36 2019-10-25 19:16:45 t 1 1 135174 578 0.00 2019-10-25 19:10:42 2019-10-25 19:17:43 t 1 1 135185 445 0.00 2019-10-25 19:26:02 2019-10-25 19:26:03 t 1 1 135195 578 0.00 2019-10-25 19:30:18 2019-10-25 19:38:43 t 1 1 135198 220 0.00 2019-10-25 19:40:16 2019-10-25 19:40:30 t 1 1 135201 591 0.00 2019-10-25 19:35:19 2019-10-25 19:40:58 t 1 1 135202 220 0.00 2019-10-25 19:40:51 2019-10-25 19:41:01 t 1 1 135207 583 0.00 2019-10-25 19:40:02 2019-10-25 19:42:08 t 1 1 135213 587 0.00 2019-10-25 19:39:54 2019-10-25 19:44:46 t 1 1 135215 220 0.00 2019-10-25 19:44:56 2019-10-25 19:45:06 t 1 1 135218 578 0.00 2019-10-25 19:38:43 2019-10-25 19:45:51 t 1 1 135219 599 0.00 2019-10-25 18:56:17 2019-10-25 19:45:57 t 1 1 135220 220 0.00 2019-10-25 19:45:38 2019-10-25 19:46:05 t 1 1 135223 220 0.00 2019-10-25 19:46:15 2019-10-25 19:46:44 t 1 1 135227 220 0.00 2019-10-25 19:48:32 2019-10-25 19:48:44 t 1 1 135231 220 0.00 2019-10-25 19:53:02 2019-10-25 19:53:13 t 1 1 135239 220 0.00 2019-10-25 19:54:52 2019-10-25 19:54:53 t 1 1 135243 551 0.00 2019-10-25 19:30:38 2019-10-25 19:56:57 t 1 1 135246 514 0.00 2019-10-25 19:09:45 2019-10-25 20:00:45 t 1 1 135248 585 0.00 2019-10-25 19:54:05 2019-10-25 20:02:45 t 1 1 135250 445 0.00 2019-10-25 19:46:14 2019-10-25 20:04:31 t 1 1 135254 583 0.00 2019-10-25 20:06:40 2019-10-25 20:11:58 t 1 1 135256 456 0.00 2019-10-25 20:07:53 2019-10-25 20:14:48 t 1 1 135260 516 0.00 2019-10-25 20:11:24 2019-10-25 20:18:41 t 1 1 135262 587 0.00 2019-10-25 20:19:07 2019-10-25 20:20:20 t 1 1 135263 570 0.00 2019-10-25 19:55:44 2019-10-25 20:22:37 t 1 1 135265 481 0.00 2019-10-25 20:17:45 2019-10-25 20:29:31 t 1 1 135266 220 0.00 2019-10-25 20:23:19 2019-10-25 20:35:00 t 1 1 135268 591 0.00 2019-10-25 20:28:27 2019-10-25 20:38:36 t 1 1 135269 591 0.00 2019-10-25 20:38:36 2019-10-25 20:39:26 t 1 1 135271 220 0.00 2019-10-25 19:55:02 2019-10-25 20:40:53 t 1 1 135272 220 0.00 2019-10-25 20:40:52 2019-10-25 20:41:02 t 1 1 135276 220 0.00 2019-10-25 17:59:07 2019-10-25 20:42:06 t 1 2 135278 583 0.00 2019-10-25 20:42:37 2019-10-25 20:43:27 t 1 1 135281 587 0.00 2019-10-25 20:44:40 2019-10-25 20:45:06 t 1 1 135284 583 0.00 2019-10-25 20:43:27 2019-10-25 20:46:20 t 1 1 135289 220 0.00 2019-10-25 20:49:37 2019-10-25 20:49:39 t 1 1 135291 583 0.00 2019-10-25 20:46:20 2019-10-25 20:49:50 t 1 1 135299 607 0.00 2019-10-25 20:55:16 2019-10-25 20:55:50 t 1 1 135300 220 0.00 2019-10-25 20:55:07 2019-10-25 20:56:00 t 1 1 135302 597 0.00 2019-10-25 20:53:43 2019-10-25 20:56:12 t 1 1 135304 508 0.00 2019-10-25 20:51:11 2019-10-25 20:58:11 t 1 2 135306 591 0.00 2019-10-25 20:57:45 2019-10-25 20:58:19 t 1 1 135323 585 0.00 2019-10-25 21:17:03 2019-10-25 21:18:48 t 1 1 135326 516 0.00 2019-10-25 21:14:59 2019-10-25 21:22:22 t 1 1 135327 327 0.00 2019-10-25 21:11:59 2019-10-25 21:23:35 t 1 1 135332 501 0.00 2019-10-25 21:30:35 2019-10-25 21:30:35 f 1 1 135333 501 0.00 2019-10-25 21:33:10 2019-10-25 21:33:10 f 1 1 135335 327 0.00 2019-10-25 21:30:18 2019-10-25 21:33:51 t 1 1 135340 220 0.00 2019-10-25 21:40:38 2019-10-25 21:42:01 t 1 2 135342 538 0.00 2019-10-25 19:43:27 2019-10-25 21:43:22 t 1 1 135343 587 0.00 2019-10-25 21:42:47 2019-10-25 21:49:42 t 1 1 135351 566 0.00 2019-10-25 21:48:40 2019-10-25 22:07:48 t 1 1 135352 485 0.00 2019-10-25 22:05:14 2019-10-25 22:08:39 t 1 1 135355 451 0.00 2019-10-25 22:02:19 2019-10-25 22:17:53 t 1 1 135356 481 0.00 2019-10-25 20:29:46 2019-10-25 22:18:23 t 1 1 135358 566 0.00 2019-10-25 22:07:48 2019-10-25 22:21:04 t 1 1 135361 220 0.00 2019-10-25 21:42:12 2019-10-25 22:24:36 t 1 2 135368 587 0.00 2019-10-25 22:18:45 2019-10-25 22:30:06 t 1 1 135371 451 0.00 2019-10-25 22:17:53 2019-10-25 22:31:30 t 1 1 135372 587 0.00 2019-10-25 22:31:04 2019-10-25 22:32:06 t 1 1 135374 566 0.00 2019-10-25 22:21:04 2019-10-25 22:34:25 t 1 1 135376 508 0.00 2019-10-25 22:35:11 2019-10-25 22:35:52 t 1 2 135380 485 0.00 2019-10-25 22:33:59 2019-10-25 22:39:23 t 1 1 135388 589 0.00 2019-10-25 22:43:13 2019-10-25 22:48:11 t 1 1 135391 412 0.00 2019-10-25 22:46:54 2019-10-25 22:50:01 t 1 1 135392 566 0.00 2019-10-25 22:49:16 2019-10-25 22:51:27 t 1 1 135395 544 0.00 2019-10-25 22:56:46 2019-10-25 22:56:56 t 1 2 135397 585 0.00 2019-10-25 22:31:07 2019-10-25 22:57:08 t 1 1 135399 501 0.00 2019-10-25 23:03:38 2019-10-25 23:03:38 f 1 1 135144 351 0.00 2019-10-25 18:41:37 2019-10-25 18:51:42 t 1 2 135145 220 0.00 2019-10-25 18:51:28 2019-10-25 18:52:02 t 1 1 135148 220 0.00 2019-10-25 18:52:44 2019-10-25 18:52:54 t 1 1 135149 562 0.00 2019-10-25 18:53:27 2019-10-25 18:53:31 t 1 1 135150 599 0.00 2019-10-25 16:28:30 2019-10-25 18:54:05 t 1 1 135156 585 0.00 2019-10-25 18:54:59 2019-10-25 18:59:54 t 1 1 135157 562 0.00 2019-10-25 18:59:53 2019-10-25 19:00:46 t 1 1 135169 327 0.00 2019-10-25 19:12:50 2019-10-25 19:14:01 t 1 1 135171 583 0.00 2019-10-25 18:43:00 2019-10-25 19:15:56 t 1 1 135176 445 0.00 2019-10-25 16:40:14 2019-10-25 19:18:15 t 1 1 135178 516 0.00 2019-10-25 19:16:25 2019-10-25 19:19:19 t 1 1 135179 551 0.00 2019-10-25 10:01:07 2019-10-25 19:20:21 t 1 1 135180 562 0.00 2019-10-25 19:21:00 2019-10-25 19:22:52 t 1 1 135181 562 0.00 2019-10-25 19:23:07 2019-10-25 19:23:22 t 1 1 135184 585 0.00 2019-10-25 18:59:54 2019-10-25 19:24:29 t 1 1 135187 562 0.00 2019-10-25 19:26:04 2019-10-25 19:26:05 t 1 1 135188 583 0.00 2019-10-25 19:15:56 2019-10-25 19:27:04 t 1 1 135190 564 0.00 2019-10-25 18:56:26 2019-10-25 19:27:55 t 1 1 135192 585 0.00 2019-10-25 19:24:28 2019-10-25 19:30:33 t 1 1 135196 220 0.00 2019-10-25 18:52:54 2019-10-25 19:40:00 t 1 1 135197 220 0.00 2019-10-25 19:40:00 2019-10-25 19:40:16 t 1 1 135200 220 0.00 2019-10-25 19:40:39 2019-10-25 19:40:52 t 1 1 135204 220 0.00 2019-10-25 19:41:11 2019-10-25 19:41:21 t 1 1 135206 220 0.00 2019-10-25 19:41:21 2019-10-25 19:41:35 t 1 1 135209 220 0.00 2019-10-25 19:42:08 2019-10-25 19:42:21 t 1 1 135210 220 0.00 2019-10-25 19:42:20 2019-10-25 19:44:26 t 1 1 135212 220 0.00 2019-10-25 19:44:26 2019-10-25 19:44:39 t 1 1 135221 583 0.00 2019-10-25 19:44:15 2019-10-25 19:46:10 t 1 1 135222 220 0.00 2019-10-25 19:46:05 2019-10-25 19:46:16 t 1 1 135224 498 0.00 2019-10-25 18:36:41 2019-10-25 19:46:47 t 1 2 135225 220 0.00 2019-10-25 19:46:44 2019-10-25 19:47:17 t 1 1 135226 220 0.00 2019-10-25 19:47:16 2019-10-25 19:48:32 t 1 1 135228 581 0.00 2019-10-25 19:45:36 2019-10-25 19:50:45 t 1 1 135229 556 0.00 2019-10-25 12:24:23 2019-10-25 19:51:16 t 1 1 135230 220 0.00 2019-10-25 19:48:43 2019-10-25 19:53:02 t 1 1 135233 597 0.00 2019-10-25 19:53:01 2019-10-25 19:53:58 t 1 1 135235 220 0.00 2019-10-25 19:54:23 2019-10-25 19:54:33 t 1 1 135236 220 0.00 2019-10-25 19:54:33 2019-10-25 19:54:43 t 1 1 135240 485 0.00 2019-10-25 19:54:02 2019-10-25 19:55:21 t 1 1 135244 591 0.00 2019-10-25 19:54:41 2019-10-25 19:58:19 t 1 1 63500 131 0.00 2018-05-11 13:06:04 2018-05-11 13:07:32 t 1 1 135251 583 0.00 2019-10-25 20:01:54 2019-10-25 20:06:09 t 1 1 135257 583 0.00 2019-10-25 20:12:19 2019-10-25 20:16:25 t 1 1 135261 587 0.00 2019-10-25 19:44:46 2019-10-25 20:18:56 t 1 1 135264 430 0.00 2019-10-25 19:57:49 2019-10-25 20:26:19 t 1 1 135267 583 0.00 2019-10-25 20:36:13 2019-10-25 20:37:40 t 1 1 135270 570 0.00 2019-10-25 20:34:39 2019-10-25 20:39:39 t 1 1 135274 220 0.00 2019-10-25 20:41:11 2019-10-25 20:41:38 t 1 1 135275 220 0.00 2019-10-25 20:41:38 2019-10-25 20:41:48 t 1 1 135283 585 0.00 2019-10-25 20:40:32 2019-10-25 20:45:51 t 1 1 135285 564 0.00 2019-10-25 19:27:55 2019-10-25 20:47:55 t 1 1 135287 220 0.00 2019-10-25 20:42:25 2019-10-25 20:48:47 t 1 1 135288 220 0.00 2019-10-25 20:48:47 2019-10-25 20:49:30 t 1 1 135292 585 0.00 2019-10-25 20:48:10 2019-10-25 20:50:55 t 1 1 135294 512 0.00 2019-10-25 20:47:50 2019-10-25 20:52:59 t 1 1 135295 220 0.00 2019-10-25 20:52:50 2019-10-25 20:53:51 t 1 1 135296 220 0.00 2019-10-25 20:42:07 2019-10-25 20:54:48 t 1 1 135298 220 0.00 2019-10-25 20:54:57 2019-10-25 20:55:08 t 1 1 135305 514 0.00 2019-10-25 20:00:45 2019-10-25 20:58:14 t 1 1 135307 583 0.00 2019-10-25 20:49:50 2019-10-25 20:58:36 t 1 1 135310 587 0.00 2019-10-25 20:45:19 2019-10-25 21:00:54 t 1 1 135311 585 0.00 2019-10-25 20:57:38 2019-10-25 21:01:16 t 1 1 135312 516 0.00 2019-10-25 20:43:50 2019-10-25 21:04:06 t 1 1 135314 583 0.00 2019-10-25 20:58:36 2019-10-25 21:06:01 t 1 1 135316 585 0.00 2019-10-25 21:01:16 2019-10-25 21:10:28 t 1 1 135318 327 0.00 2019-10-25 20:41:39 2019-10-25 21:11:20 t 1 1 135322 485 0.00 2019-10-25 21:03:27 2019-10-25 21:18:23 t 1 1 135325 485 0.00 2019-10-25 21:18:23 2019-10-25 21:21:02 t 1 1 63597 131 0.00 2018-05-12 11:00:43 2018-05-12 11:02:32 t 1 1 135330 566 0.00 2019-10-25 21:17:33 2019-10-25 21:27:10 t 1 1 135331 327 0.00 2019-10-25 21:23:46 2019-10-25 21:29:47 t 1 1 135337 485 0.00 2019-10-25 21:23:19 2019-10-25 21:34:51 t 1 1 135338 445 0.00 2019-10-25 21:18:56 2019-10-25 21:39:02 t 1 1 135344 514 0.00 2019-10-25 20:58:14 2019-10-25 21:50:00 t 1 1 135353 595 0.00 2019-10-25 22:12:58 2019-10-25 22:13:52 t 1 1 135360 485 0.00 2019-10-25 22:19:37 2019-10-25 22:23:58 t 1 1 135362 290 0.00 2019-10-25 22:24:59 2019-10-25 22:24:59 f 1 2 135363 290 0.00 2019-10-25 22:25:24 2019-10-25 22:25:24 f 1 2 135367 485 0.00 2019-10-25 22:23:58 2019-10-25 22:30:02 t 1 1 135369 538 0.00 2019-10-25 22:14:44 2019-10-25 22:30:31 t 1 1 135373 485 0.00 2019-10-25 22:30:02 2019-10-25 22:33:59 t 1 1 135378 581 0.00 2019-10-25 21:54:02 2019-10-25 22:37:18 t 1 1 135379 412 0.00 2019-10-25 17:59:09 2019-10-25 22:38:31 t 1 1 135381 451 0.00 2019-10-25 22:32:55 2019-10-25 22:40:05 t 1 1 135383 456 0.00 2019-10-25 22:26:05 2019-10-25 22:41:01 t 1 1 135386 514 0.00 2019-10-25 21:50:00 2019-10-25 22:46:11 t 1 1 135394 412 0.00 2019-10-25 22:51:22 2019-10-25 22:53:00 t 1 1 135398 372 0.00 2019-10-25 22:48:44 2019-10-25 22:58:49 t 1 2 135401 587 0.00 2019-10-25 23:05:09 2019-10-25 23:06:40 t 1 1 135402 327 0.00 2019-10-25 22:21:37 2019-10-25 23:07:29 t 1 1 135405 587 0.00 2019-10-25 23:07:22 2019-10-25 23:19:30 t 1 1 135416 556 0.00 2019-10-25 19:51:16 2019-10-25 23:36:04 t 1 1 135420 587 0.00 2019-10-25 23:37:05 2019-10-25 23:40:18 t 1 1 135425 449 0.00 2019-10-25 23:43:15 2019-10-25 23:46:45 t 1 1 135427 422 0.00 2019-10-25 23:47:44 2019-10-25 23:49:20 t 1 1 135430 412 0.00 2019-10-25 23:49:11 2019-10-25 23:52:29 t 1 1 135431 585 0.00 2019-10-25 23:41:55 2019-10-25 23:54:19 t 1 1 135434 372 0.00 2019-10-25 23:49:06 2019-10-25 23:59:12 t 1 2 135436 412 0.00 2019-10-25 23:57:32 2019-10-26 00:01:06 t 1 1 135438 587 0.00 2019-10-25 23:47:05 2019-10-26 00:01:54 t 1 1 135439 501 0.00 2019-10-26 00:02:01 2019-10-26 00:02:01 f 1 1 135440 528 0.00 2019-10-26 00:01:02 2019-10-26 00:05:29 t 1 1 135443 578 0.00 2019-10-25 22:29:01 2019-10-26 00:07:22 t 1 1 135448 585 0.00 2019-10-26 00:08:59 2019-10-26 00:12:18 t 1 1 135451 375 0.00 2019-10-25 21:52:14 2019-10-26 00:15:57 t 1 1 135452 578 0.00 2019-10-26 00:07:22 2019-10-26 00:16:27 t 1 1 135453 412 0.00 2019-10-26 00:16:06 2019-10-26 00:16:54 t 1 1 135186 445 0.00 2019-10-25 19:26:04 2019-10-25 19:26:04 t 1 1 135189 562 0.00 2019-10-25 19:26:05 2019-10-25 19:27:06 t 1 1 135191 578 0.00 2019-10-25 19:23:42 2019-10-25 19:30:18 t 1 1 135193 551 0.00 2019-10-25 19:20:21 2019-10-25 19:30:38 t 1 1 135194 485 0.00 2019-10-25 19:29:12 2019-10-25 19:31:22 t 1 1 135199 220 0.00 2019-10-25 19:40:29 2019-10-25 19:40:40 t 1 1 135203 220 0.00 2019-10-25 19:41:01 2019-10-25 19:41:12 t 1 1 135205 327 0.00 2019-10-25 19:21:33 2019-10-25 19:41:31 t 1 1 135208 220 0.00 2019-10-25 19:41:34 2019-10-25 19:42:08 t 1 1 135211 591 0.00 2019-10-25 19:40:58 2019-10-25 19:44:34 t 1 1 135214 220 0.00 2019-10-25 19:44:38 2019-10-25 19:44:56 t 1 1 135216 220 0.00 2019-10-25 19:45:06 2019-10-25 19:45:28 t 1 1 135217 220 0.00 2019-10-25 19:45:27 2019-10-25 19:45:39 t 1 1 135232 485 0.00 2019-10-25 19:53:54 2019-10-25 19:53:57 t 1 1 135234 220 0.00 2019-10-25 19:53:12 2019-10-25 19:54:23 t 1 1 135237 578 0.00 2019-10-25 19:45:51 2019-10-25 19:54:47 t 1 1 135238 220 0.00 2019-10-25 19:54:43 2019-10-25 19:54:53 t 1 1 135241 570 0.00 2019-10-25 19:27:17 2019-10-25 19:55:44 t 1 1 135242 574 0.00 2019-10-25 12:49:48 2019-10-25 19:56:24 t 1 1 135245 481 0.00 2019-10-25 19:58:51 2019-10-25 20:00:40 t 1 1 135247 327 0.00 2019-10-25 19:50:55 2019-10-25 20:02:34 t 1 1 135249 591 0.00 2019-10-25 19:58:19 2019-10-25 20:03:38 t 1 1 135252 591 0.00 2019-10-25 20:03:38 2019-10-25 20:06:34 t 1 1 135253 508 0.00 2019-10-25 20:07:10 2019-10-25 20:08:22 t 1 2 135255 327 0.00 2019-10-25 20:12:00 2019-10-25 20:14:20 t 1 1 135258 481 0.00 2019-10-25 20:00:40 2019-10-25 20:17:44 t 1 1 135259 327 0.00 2019-10-25 20:17:15 2019-10-25 20:18:09 t 1 1 135273 220 0.00 2019-10-25 20:41:02 2019-10-25 20:41:12 t 1 1 135277 220 0.00 2019-10-25 20:41:47 2019-10-25 20:42:07 t 1 1 135279 485 0.00 2019-10-25 20:30:14 2019-10-25 20:44:49 t 1 1 135280 372 0.00 2019-10-25 20:17:05 2019-10-25 20:45:06 t 1 2 135282 379 0.00 2019-10-25 19:06:37 2019-10-25 20:45:50 t 1 1 135286 599 0.00 2019-10-25 19:46:04 2019-10-25 20:48:27 t 1 1 135290 220 0.00 2019-10-25 20:49:46 2019-10-25 20:49:47 t 1 1 135293 599 0.00 2019-10-25 20:48:42 2019-10-25 20:51:32 t 1 1 135297 220 0.00 2019-10-25 20:54:48 2019-10-25 20:54:58 t 1 1 135301 220 0.00 2019-10-25 20:56:00 2019-10-25 20:56:10 t 1 1 135303 585 0.00 2019-10-25 20:51:05 2019-10-25 20:57:18 t 1 1 135308 220 0.00 2019-10-25 20:56:09 2019-10-25 20:59:08 t 1 1 135309 512 0.00 2019-10-25 20:53:29 2019-10-25 21:00:21 t 1 1 135313 587 0.00 2019-10-25 21:01:57 2019-10-25 21:04:32 t 1 1 135315 583 0.00 2019-10-25 21:06:01 2019-10-25 21:08:55 t 1 1 135317 583 0.00 2019-10-25 21:09:02 2019-10-25 21:10:47 t 1 1 135319 597 0.00 2019-10-25 21:05:34 2019-10-25 21:13:33 t 1 1 135320 587 0.00 2019-10-25 21:13:51 2019-10-25 21:14:54 t 1 1 135321 512 0.00 2019-10-25 21:00:21 2019-10-25 21:16:49 t 1 1 135324 445 0.00 2019-10-25 20:04:30 2019-10-25 21:18:57 t 1 1 135328 220 0.00 2019-10-25 21:15:38 2019-10-25 21:25:02 t 1 2 135329 595 0.00 2019-10-25 21:25:43 2019-10-25 21:26:39 t 1 1 135334 501 0.00 2019-10-25 21:33:22 2019-10-25 21:33:22 f 1 1 135336 501 0.00 2019-10-25 21:33:57 2019-10-25 21:33:57 f 1 1 135339 501 0.00 2019-10-25 21:40:23 2019-10-25 21:40:23 f 1 1 135341 587 0.00 2019-10-25 21:36:46 2019-10-25 21:42:27 t 1 1 135345 587 0.00 2019-10-25 21:49:46 2019-10-25 21:53:53 t 1 1 135346 595 0.00 2019-10-25 21:50:35 2019-10-25 21:55:14 t 1 1 135347 587 0.00 2019-10-25 21:54:08 2019-10-25 21:57:27 t 1 1 135348 599 0.00 2019-10-25 20:51:35 2019-10-25 21:59:32 t 1 1 135349 528 0.00 2019-10-25 21:56:12 2019-10-25 21:59:58 t 1 1 135350 485 0.00 2019-10-25 21:55:47 2019-10-25 22:05:14 t 1 1 135354 516 0.00 2019-10-25 22:01:23 2019-10-25 22:17:10 t 1 1 135357 587 0.00 2019-10-25 22:08:57 2019-10-25 22:18:23 t 1 1 135359 327 0.00 2019-10-25 21:43:17 2019-10-25 22:21:37 t 1 1 135364 595 0.00 2019-10-25 22:25:15 2019-10-25 22:25:56 t 1 1 135365 599 0.00 2019-10-25 22:09:56 2019-10-25 22:26:13 t 1 1 135366 578 0.00 2019-10-25 19:54:47 2019-10-25 22:29:01 t 1 1 135370 585 0.00 2019-10-25 21:57:19 2019-10-25 22:30:46 t 1 1 135375 512 0.00 2019-10-25 22:29:02 2019-10-25 22:35:22 t 1 1 135377 481 0.00 2019-10-25 22:18:23 2019-10-25 22:36:29 t 1 1 135382 220 0.00 2019-10-25 22:27:46 2019-10-25 22:40:15 t 1 1 135384 485 0.00 2019-10-25 22:39:23 2019-10-25 22:41:32 t 1 1 135385 587 0.00 2019-10-25 22:31:53 2019-10-25 22:46:08 t 1 1 135387 581 0.00 2019-10-25 22:37:18 2019-10-25 22:46:53 t 1 1 135389 485 0.00 2019-10-25 22:44:21 2019-10-25 22:48:35 t 1 1 135390 566 0.00 2019-10-25 22:34:25 2019-10-25 22:49:16 t 1 1 135393 589 0.00 2019-10-25 22:48:11 2019-10-25 22:52:55 t 1 1 135396 412 0.00 2019-10-25 22:55:35 2019-10-25 22:56:59 t 1 1 135400 587 0.00 2019-10-25 22:46:08 2019-10-25 23:04:46 t 1 1 135404 327 0.00 2019-10-25 23:07:44 2019-10-25 23:12:02 t 1 1 135406 587 0.00 2019-10-25 23:19:49 2019-10-25 23:21:14 t 1 1 135415 587 0.00 2019-10-25 23:28:30 2019-10-25 23:34:41 t 1 1 135423 449 0.00 2019-10-25 23:20:19 2019-10-25 23:43:15 t 1 1 135429 501 0.00 2019-10-25 23:51:49 2019-10-25 23:51:49 f 1 1 135432 451 0.00 2019-10-25 23:43:08 2019-10-25 23:54:39 t 1 1 135433 581 0.00 2019-10-25 23:44:48 2019-10-25 23:58:03 t 1 1 135437 599 0.00 2019-10-25 23:38:31 2019-10-26 00:01:53 t 1 1 135445 412 0.00 2019-10-26 00:04:33 2019-10-26 00:09:42 t 1 1 135447 412 0.00 2019-10-26 00:09:41 2019-10-26 00:11:28 t 1 1 135449 490 0.00 2019-10-26 00:03:18 2019-10-26 00:12:18 t 1 1 135450 412 0.00 2019-10-26 00:12:37 2019-10-26 00:15:29 t 1 1 135455 578 0.00 2019-10-26 00:16:27 2019-10-26 00:24:17 t 1 1 135457 451 0.00 2019-10-26 00:20:25 2019-10-26 00:31:14 t 1 1 135460 451 0.00 2019-10-26 00:31:14 2019-10-26 00:38:32 t 1 1 135468 544 0.00 2019-10-26 01:01:27 2019-10-26 01:08:23 t 1 2 135475 379 0.00 2019-10-25 20:45:50 2019-10-26 02:56:18 t 1 1 135479 499 0.00 2019-10-26 03:33:21 2019-10-26 03:34:45 t 1 1 135481 430 0.00 2019-10-26 04:13:29 2019-10-26 04:14:30 t 1 1 135487 445 0.00 2019-10-26 04:40:37 2019-10-26 04:41:58 t 1 1 135488 538 0.00 2019-10-26 04:45:36 2019-10-26 04:46:58 t 1 1 135492 412 0.00 2019-10-26 00:16:54 2019-10-26 05:41:26 t 1 1 135496 430 0.00 2019-10-26 05:47:17 2019-10-26 05:47:24 t 1 1 135498 430 0.00 2019-10-26 05:49:33 2019-10-26 05:49:39 t 1 1 135501 430 0.00 2019-10-26 05:55:35 2019-10-26 05:55:46 t 1 1 135502 430 0.00 2019-10-26 05:55:51 2019-10-26 05:56:10 t 1 1 135516 220 0.00 2019-10-26 06:15:58 2019-10-26 06:57:39 t 1 1 135518 581 0.00 2019-10-26 07:02:28 2019-10-26 07:10:08 t 1 1 135525 597 0.00 2019-10-26 07:24:40 2019-10-26 07:26:28 t 1 1 135527 558 0.00 2019-10-26 03:26:33 2019-10-26 07:29:41 t 1 1 135403 585 0.00 2019-10-25 22:58:02 2019-10-25 23:09:56 t 1 1 135407 327 0.00 2019-10-25 23:12:43 2019-10-25 23:21:36 t 1 1 135408 412 0.00 2019-10-25 22:56:55 2019-10-25 23:25:01 t 1 1 135409 587 0.00 2019-10-25 23:26:02 2019-10-25 23:26:09 t 1 1 63708 131 0.00 2018-05-13 10:37:37 2018-05-13 10:39:32 t 1 1 135410 220 0.00 2019-10-25 22:27:00 2019-10-25 23:26:40 t 1 2 135411 544 0.00 2019-10-25 22:57:19 2019-10-25 23:27:32 t 1 2 135412 587 0.00 2019-10-25 23:26:28 2019-10-25 23:28:19 t 1 1 135413 581 0.00 2019-10-25 23:18:21 2019-10-25 23:29:36 t 1 1 135414 220 0.00 2019-10-25 20:59:07 2019-10-25 23:30:45 t 1 1 135417 587 0.00 2019-10-25 23:35:38 2019-10-25 23:36:39 t 1 1 135418 585 0.00 2019-10-25 23:09:55 2019-10-25 23:37:28 t 1 1 135419 599 0.00 2019-10-25 23:26:44 2019-10-25 23:38:31 t 1 1 135421 412 0.00 2019-10-25 23:26:32 2019-10-25 23:40:34 t 1 1 135422 574 0.00 2019-10-25 23:19:44 2019-10-25 23:42:58 t 1 1 135424 372 0.00 2019-10-25 23:41:52 2019-10-25 23:46:29 t 1 2 135426 412 0.00 2019-10-25 23:40:34 2019-10-25 23:48:28 t 1 1 135428 501 0.00 2019-10-25 23:51:17 2019-10-25 23:51:17 f 1 1 135435 585 0.00 2019-10-25 23:55:48 2019-10-25 23:59:19 t 1 1 135441 587 0.00 2019-10-26 00:02:23 2019-10-26 00:06:17 t 1 1 135442 585 0.00 2019-10-25 23:59:19 2019-10-26 00:07:00 t 1 1 135444 599 0.00 2019-10-26 00:01:53 2019-10-26 00:07:43 t 1 1 135446 451 0.00 2019-10-25 23:58:02 2019-10-26 00:09:44 t 1 1 135465 538 0.00 2019-10-26 00:42:43 2019-10-26 00:52:27 t 1 1 135466 544 0.00 2019-10-25 23:27:39 2019-10-26 00:54:18 t 1 2 135470 587 0.00 2019-10-26 00:49:58 2019-10-26 01:21:40 t 1 1 135472 585 0.00 2019-10-26 01:30:27 2019-10-26 01:48:01 t 1 1 135473 375 0.00 2019-10-26 01:10:27 2019-10-26 02:04:14 t 1 1 135478 558 0.00 2019-10-25 21:32:01 2019-10-26 03:26:33 t 1 1 135480 339 0.00 2019-10-26 02:03:06 2019-10-26 03:51:30 t 1 2 135482 430 0.00 2019-10-26 04:14:34 2019-10-26 04:16:27 t 1 1 135483 445 0.00 2019-10-26 00:48:04 2019-10-26 04:20:15 t 1 1 135489 538 0.00 2019-10-26 04:47:02 2019-10-26 04:52:52 t 1 1 135490 430 0.00 2019-10-26 05:28:29 2019-10-26 05:39:57 t 1 1 135493 430 0.00 2019-10-26 05:43:00 2019-10-26 05:44:02 t 1 1 135500 430 0.00 2019-10-26 05:52:19 2019-10-26 05:54:32 t 1 1 135505 430 0.00 2019-10-26 05:58:26 2019-10-26 05:58:28 t 1 1 135508 430 0.00 2019-10-26 05:59:13 2019-10-26 06:00:14 t 1 1 135509 485 0.00 2019-10-26 05:59:40 2019-10-26 06:02:08 t 1 1 135512 564 0.00 2019-10-25 20:47:55 2019-10-26 06:46:55 t 1 1 135513 566 0.00 2019-10-26 06:30:23 2019-10-26 06:47:00 t 1 1 135515 445 0.00 2019-10-26 06:47:43 2019-10-26 06:55:29 t 1 1 135517 456 0.00 2019-10-26 06:59:15 2019-10-26 07:06:14 t 1 1 135519 597 0.00 2019-10-26 07:06:40 2019-10-26 07:14:13 t 1 1 135521 581 0.00 2019-10-26 07:14:55 2019-10-26 07:15:34 t 1 1 135524 581 0.00 2019-10-26 07:26:21 2019-10-26 07:26:22 t 1 1 135526 595 0.00 2019-10-26 07:25:45 2019-10-26 07:29:01 t 1 1 135530 581 0.00 2019-10-26 07:34:40 2019-10-26 07:35:15 t 1 1 135536 581 0.00 2019-10-26 07:41:10 2019-10-26 07:41:54 t 1 1 135538 445 0.00 2019-10-26 06:55:44 2019-10-26 07:42:17 t 1 1 135540 581 0.00 2019-10-26 07:45:04 2019-10-26 07:45:50 t 1 1 135541 581 0.00 2019-10-26 07:46:06 2019-10-26 07:46:13 t 1 1 135543 445 0.00 2019-10-26 07:44:58 2019-10-26 07:46:34 t 1 1 135548 581 0.00 2019-10-26 07:50:13 2019-10-26 07:51:14 t 1 1 135550 581 0.00 2019-10-26 07:52:31 2019-10-26 07:52:48 t 1 1 135551 585 0.00 2019-10-26 07:52:20 2019-10-26 07:53:49 t 1 1 135552 581 0.00 2019-10-26 07:55:36 2019-10-26 07:56:32 t 1 1 135557 562 0.00 2019-10-26 07:51:43 2019-10-26 07:58:14 t 1 1 135558 581 0.00 2019-10-26 07:59:47 2019-10-26 08:00:34 t 1 1 135560 566 0.00 2019-10-26 07:56:39 2019-10-26 08:07:08 t 1 1 135561 445 0.00 2019-10-26 07:47:27 2019-10-26 08:08:54 t 1 1 135562 597 0.00 2019-10-26 07:49:32 2019-10-26 08:09:35 t 1 1 135566 516 0.00 2019-10-26 08:10:40 2019-10-26 08:13:13 t 1 1 135570 481 0.00 2019-10-26 08:11:37 2019-10-26 08:20:37 t 1 1 135575 416 0.00 2019-10-26 08:05:03 2019-10-26 08:24:21 t 1 1 135577 581 0.00 2019-10-26 08:22:42 2019-10-26 08:25:29 t 1 1 135580 562 0.00 2019-10-26 08:27:47 2019-10-26 08:28:10 t 1 1 135589 562 0.00 2019-10-26 08:41:12 2019-10-26 08:42:10 t 1 1 135590 585 0.00 2019-10-26 08:38:13 2019-10-26 08:44:28 t 1 1 135592 512 0.00 2019-10-26 08:45:02 2019-10-26 08:50:12 t 1 1 135593 562 0.00 2019-10-26 08:48:17 2019-10-26 08:51:39 t 1 1 135594 562 0.00 2019-10-26 08:51:45 2019-10-26 08:52:20 t 1 1 135607 512 0.00 2019-10-26 08:50:12 2019-10-26 09:07:54 t 1 1 135611 570 0.00 2019-10-26 09:10:52 2019-10-26 09:16:36 t 1 1 135613 445 0.00 2019-10-26 08:25:35 2019-10-26 09:18:10 t 1 1 135614 591 0.00 2019-10-26 09:09:55 2019-10-26 09:21:43 t 1 1 135615 562 0.00 2019-10-26 09:05:20 2019-10-26 09:22:51 t 1 1 135619 445 0.00 2019-10-26 09:18:09 2019-10-26 09:24:57 t 1 1 135623 445 0.00 2019-10-26 09:24:57 2019-10-26 09:26:34 t 1 1 135629 562 0.00 2019-10-26 09:28:16 2019-10-26 09:28:34 t 1 1 135631 585 0.00 2019-10-26 09:18:38 2019-10-26 09:29:29 t 1 1 135633 220 0.00 2019-10-26 09:29:37 2019-10-26 09:30:10 t 1 1 135640 581 0.00 2019-10-26 09:17:48 2019-10-26 09:33:24 t 1 1 135642 562 0.00 2019-10-26 09:29:09 2019-10-26 09:33:43 t 1 1 135643 220 0.00 2019-10-26 09:33:34 2019-10-26 09:34:09 t 1 1 135647 220 0.00 2019-10-26 09:34:43 2019-10-26 09:37:01 t 1 1 135655 581 0.00 2019-10-26 09:36:14 2019-10-26 09:40:47 t 1 1 135656 220 0.00 2019-10-26 09:40:24 2019-10-26 09:40:58 t 1 1 135657 585 0.00 2019-10-26 09:37:34 2019-10-26 09:42:10 t 1 1 135659 220 0.00 2019-10-26 09:42:25 2019-10-26 09:42:59 t 1 1 135662 609 0.00 2019-10-26 09:44:31 2019-10-26 09:44:35 t 1 1 135664 570 0.00 2019-10-26 09:41:35 2019-10-26 09:44:50 t 1 1 135666 220 0.00 2019-10-26 09:45:14 2019-10-26 09:47:27 t 1 1 135667 220 0.00 2019-10-26 09:47:27 2019-10-26 09:47:58 t 1 1 135669 220 0.00 2019-10-26 09:49:13 2019-10-26 09:49:46 t 1 1 135671 562 0.00 2019-10-26 09:45:43 2019-10-26 09:51:40 t 1 1 135676 445 0.00 2019-10-26 09:26:34 2019-10-26 09:55:24 t 1 1 135677 220 0.00 2019-10-26 09:54:22 2019-10-26 09:55:57 t 1 1 135678 220 0.00 2019-10-26 09:55:56 2019-10-26 09:56:29 t 1 1 135679 220 0.00 2019-10-26 09:56:29 2019-10-26 09:57:04 t 1 1 135681 220 0.00 2019-10-26 09:57:35 2019-10-26 09:58:09 t 1 1 135685 220 0.00 2019-10-26 09:59:20 2019-10-26 09:59:54 t 1 1 135690 562 0.00 2019-10-26 10:01:42 2019-10-26 10:02:08 t 1 1 135691 220 0.00 2019-10-26 10:02:05 2019-10-26 10:02:39 t 1 1 135692 220 0.00 2019-10-26 10:02:39 2019-10-26 10:03:11 t 1 1 135693 220 0.00 2019-10-26 10:03:11 2019-10-26 10:03:45 t 1 1 135695 585 0.00 2019-10-26 09:42:53 2019-10-26 10:09:05 t 1 1 135454 451 0.00 2019-10-26 00:09:44 2019-10-26 00:20:25 t 1 1 135456 372 0.00 2019-10-26 00:23:47 2019-10-26 00:26:07 t 1 2 135458 578 0.00 2019-10-26 00:24:17 2019-10-26 00:31:55 t 1 1 135459 587 0.00 2019-10-26 00:06:50 2019-10-26 00:32:29 t 1 1 135461 578 0.00 2019-10-26 00:31:55 2019-10-26 00:39:42 t 1 1 135462 451 0.00 2019-10-26 00:38:32 2019-10-26 00:42:37 t 1 1 135463 445 0.00 2019-10-25 21:39:01 2019-10-26 00:48:04 t 1 1 135464 587 0.00 2019-10-26 00:32:31 2019-10-26 00:49:03 t 1 1 135467 528 0.00 2019-10-26 00:51:07 2019-10-26 00:54:23 t 1 1 135469 375 0.00 2019-10-26 00:15:57 2019-10-26 01:10:27 t 1 1 135471 538 0.00 2019-10-26 00:52:27 2019-10-26 01:42:38 t 1 1 135474 574 0.00 2019-10-26 00:03:27 2019-10-26 02:46:11 t 1 1 135476 514 0.00 2019-10-26 01:27:20 2019-10-26 03:13:39 t 1 1 135477 514 0.00 2019-10-26 03:13:38 2019-10-26 03:16:01 t 1 1 135484 445 0.00 2019-10-26 04:21:39 2019-10-26 04:30:44 t 1 1 135485 516 0.00 2019-10-26 04:38:13 2019-10-26 04:39:58 t 1 1 135486 445 0.00 2019-10-26 04:30:46 2019-10-26 04:41:08 t 1 1 135491 430 0.00 2019-10-26 05:40:08 2019-10-26 05:40:10 t 1 1 135494 430 0.00 2019-10-26 05:46:26 2019-10-26 05:46:34 t 1 1 135495 430 0.00 2019-10-26 05:46:58 2019-10-26 05:47:07 t 1 1 135497 430 0.00 2019-10-26 05:49:20 2019-10-26 05:49:26 t 1 1 135499 430 0.00 2019-10-26 05:50:25 2019-10-26 05:50:32 t 1 1 135503 516 0.00 2019-10-26 05:50:39 2019-10-26 05:56:30 t 1 1 135504 430 0.00 2019-10-26 05:56:52 2019-10-26 05:57:45 t 1 1 135506 430 0.00 2019-10-26 05:58:46 2019-10-26 05:58:52 t 1 1 135507 430 0.00 2019-10-26 05:58:12 2019-10-26 06:00:06 t 1 1 63789 131 0.00 2018-05-14 11:10:51 2018-05-14 11:12:33 t 1 1 135510 520 0.00 2019-10-26 06:18:22 2019-10-26 06:29:48 t 1 1 135511 445 0.00 2019-10-26 04:42:01 2019-10-26 06:46:38 t 1 1 135514 516 0.00 2019-10-26 06:38:12 2019-10-26 06:51:48 t 1 1 135520 416 0.00 2019-10-26 06:54:14 2019-10-26 07:14:37 t 1 1 135522 581 0.00 2019-10-26 07:21:47 2019-10-26 07:23:06 t 1 1 135523 581 0.00 2019-10-26 07:24:48 2019-10-26 07:25:26 t 1 1 135528 581 0.00 2019-10-26 07:29:52 2019-10-26 07:30:52 t 1 1 135529 520 0.00 2019-10-26 07:30:54 2019-10-26 07:34:08 t 1 1 135531 581 0.00 2019-10-26 07:35:30 2019-10-26 07:35:37 t 1 1 135532 581 0.00 2019-10-26 07:36:36 2019-10-26 07:36:49 t 1 1 135533 581 0.00 2019-10-26 07:37:18 2019-10-26 07:37:34 t 1 1 135537 558 0.00 2019-10-26 07:28:45 2019-10-26 07:42:10 t 1 1 135542 581 0.00 2019-10-26 07:46:26 2019-10-26 07:46:27 t 1 1 135546 581 0.00 2019-10-26 07:49:11 2019-10-26 07:49:27 t 1 1 135554 585 0.00 2019-10-26 07:53:48 2019-10-26 07:56:35 t 1 1 135559 416 0.00 2019-10-26 07:37:45 2019-10-26 08:05:03 t 1 1 135563 595 0.00 2019-10-26 08:10:05 2019-10-26 08:10:34 t 1 1 135564 583 0.00 2019-10-26 08:08:53 2019-10-26 08:11:10 t 1 1 135568 566 0.00 2019-10-26 08:09:54 2019-10-26 08:13:33 t 1 1 135569 597 0.00 2019-10-26 08:12:55 2019-10-26 08:16:14 t 1 1 135572 581 0.00 2019-10-26 08:00:44 2019-10-26 08:22:42 t 1 1 135573 481 0.00 2019-10-26 08:20:37 2019-10-26 08:23:44 t 1 1 135576 445 0.00 2019-10-26 08:13:51 2019-10-26 08:24:22 t 1 1 135579 416 0.00 2019-10-26 08:24:21 2019-10-26 08:26:31 t 1 1 135582 597 0.00 2019-10-26 08:26:00 2019-10-26 08:30:13 t 1 1 135583 538 0.00 2019-10-26 07:57:08 2019-10-26 08:31:03 t 1 1 135585 562 0.00 2019-10-26 08:30:59 2019-10-26 08:33:45 t 1 1 135586 595 0.00 2019-10-26 08:33:53 2019-10-26 08:34:28 t 1 1 135588 562 0.00 2019-10-26 08:35:41 2019-10-26 08:38:45 t 1 1 135591 562 0.00 2019-10-26 08:45:38 2019-10-26 08:46:24 t 1 1 135595 585 0.00 2019-10-26 08:49:37 2019-10-26 08:53:15 t 1 1 135596 564 0.00 2019-10-26 06:46:55 2019-10-26 08:54:46 t 1 1 135597 591 0.00 2019-10-26 08:47:27 2019-10-26 08:55:05 t 1 1 135598 562 0.00 2019-10-26 08:54:10 2019-10-26 08:56:06 t 1 1 135603 585 0.00 2019-10-26 08:57:55 2019-10-26 09:01:44 t 1 1 135606 591 0.00 2019-10-26 08:56:25 2019-10-26 09:05:43 t 1 1 135608 597 0.00 2019-10-26 09:06:52 2019-10-26 09:08:39 t 1 1 135610 570 0.00 2019-10-26 08:45:13 2019-10-26 09:10:52 t 1 1 135617 562 0.00 2019-10-26 09:22:58 2019-10-26 09:23:53 t 1 1 135618 220 0.00 2019-10-26 09:23:45 2019-10-26 09:24:24 t 1 1 135620 220 0.00 2019-10-26 09:24:24 2019-10-26 09:24:59 t 1 1 135624 220 0.00 2019-10-26 09:26:10 2019-10-26 09:26:50 t 1 1 135626 562 0.00 2019-10-26 09:27:20 2019-10-26 09:27:40 t 1 1 135628 220 0.00 2019-10-26 09:27:56 2019-10-26 09:28:31 t 1 1 135632 220 0.00 2019-10-26 09:29:02 2019-10-26 09:29:37 t 1 1 135634 220 0.00 2019-10-26 09:30:10 2019-10-26 09:30:45 t 1 1 135635 220 0.00 2019-10-26 09:30:45 2019-10-26 09:31:18 t 1 1 135639 591 0.00 2019-10-26 09:26:59 2019-10-26 09:33:14 t 1 1 135641 220 0.00 2019-10-26 09:33:00 2019-10-26 09:33:34 t 1 1 135644 501 0.00 2019-10-26 09:34:25 2019-10-26 09:34:25 f 1 1 135646 516 0.00 2019-10-26 09:28:39 2019-10-26 09:35:47 t 1 1 135648 220 0.00 2019-10-26 09:37:01 2019-10-26 09:37:33 t 1 1 135650 220 0.00 2019-10-26 09:37:33 2019-10-26 09:38:08 t 1 1 135652 220 0.00 2019-10-26 09:38:42 2019-10-26 09:39:16 t 1 1 135654 220 0.00 2019-10-26 09:39:51 2019-10-26 09:40:24 t 1 1 135658 220 0.00 2019-10-26 09:40:58 2019-10-26 09:42:26 t 1 1 135663 220 0.00 2019-10-26 09:42:59 2019-10-26 09:44:41 t 1 1 135670 220 0.00 2019-10-26 09:49:45 2019-10-26 09:51:08 t 1 1 135672 220 0.00 2019-10-26 09:51:08 2019-10-26 09:51:41 t 1 1 135673 416 0.00 2019-10-26 09:35:27 2019-10-26 09:53:24 t 1 1 135680 220 0.00 2019-10-26 09:57:04 2019-10-26 09:57:35 t 1 1 135682 220 0.00 2019-10-26 09:58:09 2019-10-26 09:58:48 t 1 1 135683 220 0.00 2019-10-26 09:58:48 2019-10-26 09:59:20 t 1 1 135687 220 0.00 2019-10-26 10:00:27 2019-10-26 10:01:04 t 1 1 135689 220 0.00 2019-10-26 10:01:34 2019-10-26 10:02:06 t 1 1 135694 583 0.00 2019-10-26 10:03:16 2019-10-26 10:09:03 t 1 1 64005 131 0.00 2018-05-16 12:31:00 2018-05-16 12:32:36 t 1 1 135696 528 0.00 2019-10-26 10:02:12 2019-10-26 10:11:07 t 1 1 135700 562 0.00 2019-10-26 10:14:47 2019-10-26 10:15:06 t 1 1 135703 327 0.00 2019-10-26 09:58:07 2019-10-26 10:20:51 t 1 1 135704 562 0.00 2019-10-26 10:21:05 2019-10-26 10:21:12 t 1 1 135705 528 0.00 2019-10-26 10:15:19 2019-10-26 10:22:13 t 1 1 135711 430 0.00 2019-10-26 10:34:07 2019-10-26 10:34:16 t 1 1 135713 430 0.00 2019-10-26 10:35:51 2019-10-26 10:35:53 t 1 1 135715 430 0.00 2019-10-26 10:36:30 2019-10-26 10:37:24 t 1 1 135720 430 0.00 2019-10-26 10:40:36 2019-10-26 10:41:17 t 1 1 135722 430 0.00 2019-10-26 10:43:02 2019-10-26 10:43:04 t 1 1 135725 445 0.00 2019-10-26 10:00:29 2019-10-26 10:47:46 t 1 1 135728 430 0.00 2019-10-26 10:48:48 2019-10-26 10:49:50 t 1 1 135731 516 0.00 2019-10-26 10:48:28 2019-10-26 10:51:44 t 1 1 135534 416 0.00 2019-10-26 07:14:37 2019-10-26 07:37:46 t 1 1 135535 581 0.00 2019-10-26 07:40:03 2019-10-26 07:40:19 t 1 1 135539 562 0.00 2019-10-26 07:41:43 2019-10-26 07:45:04 t 1 1 135544 581 0.00 2019-10-26 07:47:06 2019-10-26 07:47:13 t 1 1 135545 581 0.00 2019-10-26 07:46:42 2019-10-26 07:47:42 t 1 1 135547 516 0.00 2019-10-26 07:45:23 2019-10-26 07:50:36 t 1 1 135549 562 0.00 2019-10-26 07:47:30 2019-10-26 07:51:43 t 1 1 135553 566 0.00 2019-10-26 06:47:00 2019-10-26 07:56:33 t 1 1 135555 538 0.00 2019-10-26 07:41:46 2019-10-26 07:56:48 t 1 1 135556 556 0.00 2019-10-25 23:36:04 2019-10-26 07:57:31 t 1 1 135565 562 0.00 2019-10-26 07:58:14 2019-10-26 08:11:55 t 1 1 135567 445 0.00 2019-10-26 08:09:09 2019-10-26 08:13:26 t 1 1 135571 591 0.00 2019-10-26 08:20:24 2019-10-26 08:22:00 t 1 1 135574 562 0.00 2019-10-26 08:11:55 2019-10-26 08:23:46 t 1 1 135578 445 0.00 2019-10-26 08:24:30 2019-10-26 08:25:34 t 1 1 135581 481 0.00 2019-10-26 08:23:44 2019-10-26 08:28:29 t 1 1 135584 583 0.00 2019-10-26 08:31:14 2019-10-26 08:33:06 t 1 1 135587 585 0.00 2019-10-26 08:31:28 2019-10-26 08:38:14 t 1 1 135599 456 0.00 2019-10-26 08:46:10 2019-10-26 08:56:22 t 1 1 135600 562 0.00 2019-10-26 08:55:59 2019-10-26 08:57:45 t 1 1 135601 597 0.00 2019-10-26 08:46:56 2019-10-26 08:58:33 t 1 1 135602 562 0.00 2019-10-26 09:00:47 2019-10-26 09:01:33 t 1 1 135604 456 0.00 2019-10-26 08:56:21 2019-10-26 09:03:16 t 1 1 135605 562 0.00 2019-10-26 09:03:01 2019-10-26 09:04:54 t 1 1 135609 456 0.00 2019-10-26 09:03:16 2019-10-26 09:10:19 t 1 1 135612 516 0.00 2019-10-26 09:14:11 2019-10-26 09:16:54 t 1 1 135616 220 0.00 2019-10-26 09:22:37 2019-10-26 09:23:45 t 1 1 135621 220 0.00 2019-10-26 09:24:58 2019-10-26 09:25:35 t 1 1 135622 220 0.00 2019-10-26 09:25:35 2019-10-26 09:26:10 t 1 1 135625 220 0.00 2019-10-26 09:26:50 2019-10-26 09:27:22 t 1 1 135627 220 0.00 2019-10-26 09:27:22 2019-10-26 09:27:57 t 1 1 135630 220 0.00 2019-10-26 09:28:30 2019-10-26 09:29:02 t 1 1 135636 220 0.00 2019-10-26 09:31:18 2019-10-26 09:31:52 t 1 1 135637 220 0.00 2019-10-26 09:31:52 2019-10-26 09:32:26 t 1 1 135638 220 0.00 2019-10-26 09:32:26 2019-10-26 09:33:00 t 1 1 135645 220 0.00 2019-10-26 09:34:08 2019-10-26 09:34:43 t 1 1 135649 562 0.00 2019-10-26 09:36:29 2019-10-26 09:37:34 t 1 1 135651 220 0.00 2019-10-26 09:38:07 2019-10-26 09:38:42 t 1 1 135653 220 0.00 2019-10-26 09:39:16 2019-10-26 09:39:51 t 1 1 135660 562 0.00 2019-10-26 09:37:51 2019-10-26 09:43:30 t 1 1 135661 609 0.00 2019-10-26 09:44:08 2019-10-26 09:44:27 t 1 1 135665 220 0.00 2019-10-26 09:44:41 2019-10-26 09:45:14 t 1 1 135668 220 0.00 2019-10-26 09:47:58 2019-10-26 09:49:13 t 1 1 135674 220 0.00 2019-10-26 09:51:41 2019-10-26 09:54:22 t 1 1 135675 562 0.00 2019-10-26 09:53:33 2019-10-26 09:55:06 t 1 1 135684 445 0.00 2019-10-26 09:55:23 2019-10-26 09:59:44 t 1 1 135686 220 0.00 2019-10-26 09:59:54 2019-10-26 10:00:28 t 1 1 135688 220 0.00 2019-10-26 10:01:04 2019-10-26 10:01:34 t 1 1 135697 583 0.00 2019-10-26 10:10:29 2019-10-26 10:12:26 t 1 1 135698 562 0.00 2019-10-26 10:12:38 2019-10-26 10:12:56 t 1 1 135702 562 0.00 2019-10-26 10:18:41 2019-10-26 10:20:35 t 1 1 135710 416 0.00 2019-10-26 10:19:36 2019-10-26 10:33:36 t 1 1 135714 591 0.00 2019-10-26 09:59:36 2019-10-26 10:35:59 t 1 1 135717 512 0.00 2019-10-26 09:36:55 2019-10-26 10:38:30 t 1 1 135718 430 0.00 2019-10-26 10:37:33 2019-10-26 10:39:12 t 1 1 135721 430 0.00 2019-10-26 10:41:30 2019-10-26 10:41:52 t 1 1 135723 430 0.00 2019-10-26 10:45:47 2019-10-26 10:45:49 t 1 1 135724 562 0.00 2019-10-26 10:28:36 2019-10-26 10:47:28 t 1 1 135726 430 0.00 2019-10-26 10:48:16 2019-10-26 10:48:41 t 1 1 135727 562 0.00 2019-10-26 10:48:16 2019-10-26 10:49:30 t 1 1 135736 430 0.00 2019-10-26 10:52:00 2019-10-26 10:53:04 t 1 1 135739 220 0.00 2019-10-26 10:53:33 2019-10-26 10:54:06 t 1 1 135740 220 0.00 2019-10-26 10:54:05 2019-10-26 10:54:39 t 1 1 135743 220 0.00 2019-10-26 10:54:38 2019-10-26 10:55:12 t 1 1 135746 445 0.00 2019-10-26 10:52:04 2019-10-26 10:56:10 t 1 1 135756 430 0.00 2019-10-26 10:58:17 2019-10-26 10:59:40 t 1 1 135758 220 0.00 2019-10-26 11:00:07 2019-10-26 11:00:39 t 1 1 135759 220 0.00 2019-10-26 11:00:39 2019-10-26 11:01:13 t 1 1 135762 585 0.00 2019-10-26 11:02:56 2019-10-26 11:04:40 t 1 1 135765 220 0.00 2019-10-26 11:04:46 2019-10-26 11:05:50 t 1 1 135766 514 0.00 2019-10-26 03:16:00 2019-10-26 11:06:14 t 1 1 135769 220 0.00 2019-10-26 11:05:52 2019-10-26 11:06:25 t 1 1 135770 220 0.00 2019-10-26 11:06:25 2019-10-26 11:06:59 t 1 1 135775 220 0.00 2019-10-26 11:08:47 2019-10-26 11:09:22 t 1 1 135786 522 0.00 2019-10-26 11:09:25 2019-10-26 11:14:19 t 1 1 135788 220 0.00 2019-10-26 11:14:16 2019-10-26 11:14:51 t 1 1 135789 562 0.00 2019-10-26 11:14:34 2019-10-26 11:15:16 t 1 1 135791 522 0.00 2019-10-26 11:14:35 2019-10-26 11:15:37 t 1 1 135798 591 0.00 2019-10-26 10:59:28 2019-10-26 11:17:41 t 1 1 135801 220 0.00 2019-10-26 11:18:08 2019-10-26 11:18:39 t 1 1 135802 220 0.00 2019-10-26 11:18:38 2019-10-26 11:19:13 t 1 1 135803 562 0.00 2019-10-26 11:15:43 2019-10-26 11:20:00 t 1 1 135806 562 0.00 2019-10-26 11:21:38 2019-10-26 11:22:11 t 1 1 135807 514 0.00 2019-10-26 11:06:14 2019-10-26 11:22:42 t 1 1 135809 522 0.00 2019-10-26 11:22:37 2019-10-26 11:22:45 t 1 1 135810 220 0.00 2019-10-26 11:22:42 2019-10-26 11:23:13 t 1 1 135819 220 0.00 2019-10-26 11:27:05 2019-10-26 11:27:36 t 1 1 135826 416 0.00 2019-10-26 11:26:55 2019-10-26 11:29:42 t 1 1 135828 522 0.00 2019-10-26 11:28:07 2019-10-26 11:29:51 t 1 1 135831 220 0.00 2019-10-26 11:30:22 2019-10-26 11:30:56 t 1 1 135832 220 0.00 2019-10-26 11:30:56 2019-10-26 11:31:31 t 1 1 135834 522 0.00 2019-10-26 11:31:56 2019-10-26 11:32:09 t 1 1 135836 220 0.00 2019-10-26 11:32:03 2019-10-26 11:32:36 t 1 1 135838 220 0.00 2019-10-26 11:32:36 2019-10-26 11:33:14 t 1 1 135840 220 0.00 2019-10-26 11:33:14 2019-10-26 11:33:45 t 1 1 135841 220 0.00 2019-10-26 11:33:45 2019-10-26 11:34:17 t 1 1 135845 220 0.00 2019-10-26 11:34:50 2019-10-26 11:35:54 t 1 1 135846 220 0.00 2019-10-26 11:35:54 2019-10-26 11:36:29 t 1 1 135847 220 0.00 2019-10-26 11:36:29 2019-10-26 11:37:02 t 1 1 135850 220 0.00 2019-10-26 11:37:36 2019-10-26 11:38:06 t 1 1 135853 528 0.00 2019-10-26 11:11:11 2019-10-26 11:39:48 t 1 1 135858 220 0.00 2019-10-26 11:42:58 2019-10-26 11:43:32 t 1 1 135864 220 0.00 2019-10-26 11:44:46 2019-10-26 11:45:24 t 1 1 135866 522 0.00 2019-10-26 11:45:34 2019-10-26 11:45:37 t 1 1 135867 220 0.00 2019-10-26 11:45:24 2019-10-26 11:45:58 t 1 1 135869 512 0.00 2019-10-26 11:16:28 2019-10-26 11:46:17 t 1 1 135870 220 0.00 2019-10-26 11:45:58 2019-10-26 11:46:33 t 1 1 135699 485 0.00 2019-10-26 10:12:32 2019-10-26 10:13:57 t 1 1 135701 416 0.00 2019-10-26 09:53:24 2019-10-26 10:19:36 t 1 1 135706 562 0.00 2019-10-26 10:21:21 2019-10-26 10:22:26 t 1 1 135707 379 0.00 2019-10-26 02:56:18 2019-10-26 10:25:31 t 1 1 135708 562 0.00 2019-10-26 10:24:53 2019-10-26 10:26:56 t 1 1 135709 430 0.00 2019-10-26 10:30:07 2019-10-26 10:33:33 t 1 1 135712 430 0.00 2019-10-26 10:35:16 2019-10-26 10:35:22 t 1 1 135716 430 0.00 2019-10-26 10:38:20 2019-10-26 10:38:27 t 1 1 135719 430 0.00 2019-10-26 10:39:40 2019-10-26 10:39:50 t 1 1 135729 570 0.00 2019-10-26 10:47:52 2019-10-26 10:50:22 t 1 1 135730 430 0.00 2019-10-26 10:50:44 2019-10-26 10:50:57 t 1 1 135732 445 0.00 2019-10-26 10:48:23 2019-10-26 10:51:56 t 1 1 135734 562 0.00 2019-10-26 10:51:28 2019-10-26 10:52:36 t 1 1 135735 220 0.00 2019-10-26 10:52:10 2019-10-26 10:52:59 t 1 1 135737 430 0.00 2019-10-26 10:53:11 2019-10-26 10:53:24 t 1 1 135738 220 0.00 2019-10-26 10:52:59 2019-10-26 10:53:33 t 1 1 135742 490 0.00 2019-10-26 10:31:45 2019-10-26 10:54:45 t 1 1 135747 220 0.00 2019-10-26 10:55:43 2019-10-26 10:56:15 t 1 1 135748 430 0.00 2019-10-26 10:56:18 2019-10-26 10:56:28 t 1 1 135754 591 0.00 2019-10-26 10:35:59 2019-10-26 10:59:28 t 1 1 135755 220 0.00 2019-10-26 10:59:04 2019-10-26 10:59:36 t 1 1 135760 512 0.00 2019-10-26 10:55:35 2019-10-26 11:02:48 t 1 1 135761 220 0.00 2019-10-26 11:01:13 2019-10-26 11:04:12 t 1 1 135763 220 0.00 2019-10-26 11:04:12 2019-10-26 11:04:47 t 1 1 135764 562 0.00 2019-10-26 10:53:26 2019-10-26 11:05:46 t 1 1 135767 416 0.00 2019-10-26 10:34:09 2019-10-26 11:06:19 t 1 1 135771 220 0.00 2019-10-26 11:06:59 2019-10-26 11:07:31 t 1 1 135772 220 0.00 2019-10-26 11:07:31 2019-10-26 11:08:05 t 1 1 135773 220 0.00 2019-10-26 11:08:05 2019-10-26 11:08:47 t 1 1 135777 220 0.00 2019-10-26 11:09:54 2019-10-26 11:10:28 t 1 1 135778 220 0.00 2019-10-26 11:10:28 2019-10-26 11:10:59 t 1 1 135779 220 0.00 2019-10-26 11:10:59 2019-10-26 11:11:34 t 1 1 64111 131 0.00 2018-05-17 13:33:46 2018-05-17 13:35:38 t 1 1 135780 220 0.00 2019-10-26 11:11:33 2019-10-26 11:12:06 t 1 1 135782 220 0.00 2019-10-26 11:12:39 2019-10-26 11:13:12 t 1 1 135784 562 0.00 2019-10-26 11:13:12 2019-10-26 11:13:52 t 1 1 135785 220 0.00 2019-10-26 11:13:45 2019-10-26 11:14:16 t 1 1 135787 522 0.00 2019-10-26 11:14:24 2019-10-26 11:14:27 t 1 1 135790 220 0.00 2019-10-26 11:14:50 2019-10-26 11:15:24 t 1 1 135793 512 0.00 2019-10-26 11:03:59 2019-10-26 11:16:21 t 1 1 135794 220 0.00 2019-10-26 11:15:58 2019-10-26 11:16:29 t 1 1 135795 220 0.00 2019-10-26 11:16:29 2019-10-26 11:17:01 t 1 1 135804 481 0.00 2019-10-26 10:48:33 2019-10-26 11:21:33 t 1 1 135808 220 0.00 2019-10-26 11:22:08 2019-10-26 11:22:42 t 1 1 135811 220 0.00 2019-10-26 11:23:13 2019-10-26 11:23:47 t 1 1 135812 220 0.00 2019-10-26 11:23:47 2019-10-26 11:24:19 t 1 1 135814 220 0.00 2019-10-26 11:24:53 2019-10-26 11:25:24 t 1 1 135815 220 0.00 2019-10-26 11:25:24 2019-10-26 11:25:59 t 1 1 135817 416 0.00 2019-10-26 11:06:19 2019-10-26 11:26:42 t 1 1 135820 522 0.00 2019-10-26 11:27:47 2019-10-26 11:27:50 t 1 1 135824 562 0.00 2019-10-26 11:28:17 2019-10-26 11:28:57 t 1 1 135825 220 0.00 2019-10-26 11:28:41 2019-10-26 11:29:16 t 1 1 135827 220 0.00 2019-10-26 11:29:16 2019-10-26 11:29:48 t 1 1 135829 522 0.00 2019-10-26 11:30:05 2019-10-26 11:30:11 t 1 1 135833 220 0.00 2019-10-26 11:31:30 2019-10-26 11:32:03 t 1 1 135835 522 0.00 2019-10-26 11:32:19 2019-10-26 11:32:24 t 1 1 135837 532 0.00 2019-10-26 11:22:10 2019-10-26 11:32:57 t 1 1 135842 220 0.00 2019-10-26 11:34:17 2019-10-26 11:34:50 t 1 1 135851 445 0.00 2019-10-26 11:09:22 2019-10-26 11:38:55 t 1 1 135855 532 0.00 2019-10-26 11:32:57 2019-10-26 11:41:59 t 1 1 135860 532 0.00 2019-10-26 11:44:07 2019-10-26 11:44:43 t 1 1 135862 445 0.00 2019-10-26 11:38:55 2019-10-26 11:44:47 t 1 1 135871 220 0.00 2019-10-26 11:46:32 2019-10-26 11:46:53 t 1 1 135879 445 0.00 2019-10-26 11:49:28 2019-10-26 11:54:24 t 1 1 135883 220 0.00 2019-10-26 11:47:06 2019-10-26 11:57:09 t 1 1 135885 445 0.00 2019-10-26 11:55:32 2019-10-26 11:58:00 t 1 1 135887 445 0.00 2019-10-26 11:58:00 2019-10-26 12:00:00 t 1 1 135894 597 0.00 2019-10-26 11:37:18 2019-10-26 12:04:17 t 1 1 135895 503 0.00 2019-10-26 11:54:59 2019-10-26 12:05:29 t 1 1 135896 516 0.00 2019-10-26 12:00:48 2019-10-26 12:06:23 t 1 1 135900 503 0.00 2019-10-26 12:08:59 2019-10-26 12:15:22 t 1 1 135901 562 0.00 2019-10-26 12:11:28 2019-10-26 12:16:48 t 1 1 135903 591 0.00 2019-10-26 11:56:57 2019-10-26 12:16:59 t 1 1 135905 481 0.00 2019-10-26 12:08:53 2019-10-26 12:18:45 t 1 1 135907 528 0.00 2019-10-26 12:07:19 2019-10-26 12:19:39 t 1 1 135908 490 0.00 2019-10-26 12:17:32 2019-10-26 12:20:19 t 1 1 135909 522 0.00 2019-10-26 12:21:46 2019-10-26 12:21:49 t 1 1 135910 585 0.00 2019-10-26 12:17:18 2019-10-26 12:22:18 t 1 1 135916 585 0.00 2019-10-26 12:22:18 2019-10-26 12:27:13 t 1 1 135919 538 0.00 2019-10-26 12:22:36 2019-10-26 12:32:26 t 1 1 135920 562 0.00 2019-10-26 12:26:10 2019-10-26 12:33:12 t 1 1 135921 481 0.00 2019-10-26 12:18:45 2019-10-26 12:34:24 t 1 1 135922 379 0.00 2019-10-26 10:25:31 2019-10-26 12:36:07 t 1 1 135930 522 0.00 2019-10-26 12:37:14 2019-10-26 12:39:06 t 1 1 135936 562 0.00 2019-10-26 12:34:34 2019-10-26 12:43:51 t 1 1 135938 522 0.00 2019-10-26 12:43:13 2019-10-26 12:45:06 t 1 1 135942 585 0.00 2019-10-26 12:39:00 2019-10-26 12:47:06 t 1 1 135947 522 0.00 2019-10-26 12:47:53 2019-10-26 12:51:53 t 1 1 135948 514 0.00 2019-10-26 12:48:08 2019-10-26 12:52:02 t 1 1 135949 522 0.00 2019-10-26 12:51:54 2019-10-26 12:52:52 t 1 1 135951 522 0.00 2019-10-26 12:53:14 2019-10-26 12:53:39 t 1 1 135954 522 0.00 2019-10-26 12:53:06 2019-10-26 12:55:06 t 1 1 135959 522 0.00 2019-10-26 12:57:22 2019-10-26 12:57:22 f 1 1 135963 558 0.00 2019-10-26 12:53:19 2019-10-26 13:00:01 t 1 1 135966 585 0.00 2019-10-26 12:47:28 2019-10-26 13:03:25 t 1 1 135979 327 0.00 2019-10-26 13:02:59 2019-10-26 13:19:01 t 1 1 135981 595 0.00 2019-10-26 13:21:02 2019-10-26 13:22:53 t 1 1 135983 578 0.00 2019-10-26 00:39:42 2019-10-26 13:27:16 t 1 1 135984 481 0.00 2019-10-26 13:12:38 2019-10-26 13:27:28 t 1 1 135986 595 0.00 2019-10-26 13:23:35 2019-10-26 13:29:38 t 1 1 64310 131 0.00 2018-05-19 13:16:52 2018-05-19 13:18:47 t 1 1 135996 578 0.00 2019-10-26 13:34:35 2019-10-26 13:41:45 t 1 1 136001 566 0.00 2019-10-26 13:41:56 2019-10-26 13:47:32 t 1 1 136004 420 0.00 2019-10-26 13:50:29 2019-10-26 13:50:29 f 1 1 136008 445 0.00 2019-10-26 13:33:16 2019-10-26 13:52:38 t 1 1 136009 585 0.00 2019-10-26 13:49:20 2019-10-26 13:53:07 t 1 1 136010 591 0.00 2019-10-26 13:29:59 2019-10-26 13:54:25 t 1 1 135733 220 0.00 2019-10-26 10:03:45 2019-10-26 10:52:10 t 1 1 135741 512 0.00 2019-10-26 10:38:58 2019-10-26 10:54:44 t 1 1 135744 430 0.00 2019-10-26 10:54:12 2019-10-26 10:55:26 t 1 1 135745 220 0.00 2019-10-26 10:55:11 2019-10-26 10:55:43 t 1 1 135749 220 0.00 2019-10-26 10:56:15 2019-10-26 10:56:50 t 1 1 135750 220 0.00 2019-10-26 10:56:50 2019-10-26 10:57:23 t 1 1 135751 220 0.00 2019-10-26 10:57:23 2019-10-26 10:57:57 t 1 1 135752 220 0.00 2019-10-26 10:57:57 2019-10-26 10:58:30 t 1 1 135753 220 0.00 2019-10-26 10:58:29 2019-10-26 10:59:04 t 1 1 135757 220 0.00 2019-10-26 10:59:36 2019-10-26 11:00:07 t 1 1 135768 570 0.00 2019-10-26 10:50:22 2019-10-26 11:06:22 t 1 1 135774 445 0.00 2019-10-26 10:56:26 2019-10-26 11:09:13 t 1 1 135776 220 0.00 2019-10-26 11:09:21 2019-10-26 11:09:54 t 1 1 135781 220 0.00 2019-10-26 11:12:06 2019-10-26 11:12:40 t 1 1 135783 220 0.00 2019-10-26 11:13:12 2019-10-26 11:13:46 t 1 1 135792 220 0.00 2019-10-26 11:15:24 2019-10-26 11:15:58 t 1 1 135796 522 0.00 2019-10-26 11:17:08 2019-10-26 11:17:11 t 1 1 135797 220 0.00 2019-10-26 11:17:01 2019-10-26 11:17:34 t 1 1 135799 522 0.00 2019-10-26 11:17:32 2019-10-26 11:17:41 t 1 1 135800 220 0.00 2019-10-26 11:17:34 2019-10-26 11:18:08 t 1 1 135805 220 0.00 2019-10-26 11:19:13 2019-10-26 11:22:08 t 1 1 135813 220 0.00 2019-10-26 11:24:18 2019-10-26 11:24:53 t 1 1 135816 220 0.00 2019-10-26 11:25:58 2019-10-26 11:26:31 t 1 1 135818 220 0.00 2019-10-26 11:26:31 2019-10-26 11:27:06 t 1 1 135821 562 0.00 2019-10-26 11:26:46 2019-10-26 11:28:07 t 1 1 135822 220 0.00 2019-10-26 11:27:36 2019-10-26 11:28:10 t 1 1 135823 220 0.00 2019-10-26 11:28:10 2019-10-26 11:28:41 t 1 1 135830 220 0.00 2019-10-26 11:29:47 2019-10-26 11:30:22 t 1 1 135839 522 0.00 2019-10-26 11:32:49 2019-10-26 11:33:16 t 1 1 135843 522 0.00 2019-10-26 11:34:52 2019-10-26 11:34:55 t 1 1 135844 522 0.00 2019-10-26 11:32:33 2019-10-26 11:35:06 t 1 1 135848 597 0.00 2019-10-26 09:55:33 2019-10-26 11:37:18 t 1 1 135849 220 0.00 2019-10-26 11:37:02 2019-10-26 11:37:37 t 1 1 135852 591 0.00 2019-10-26 11:17:40 2019-10-26 11:38:57 t 1 1 135854 522 0.00 2019-10-26 11:39:58 2019-10-26 11:40:01 t 1 1 135856 528 0.00 2019-10-26 11:42:27 2019-10-26 11:42:33 t 1 1 135857 220 0.00 2019-10-26 11:38:11 2019-10-26 11:42:58 t 1 1 135859 220 0.00 2019-10-26 11:43:32 2019-10-26 11:44:12 t 1 1 135861 220 0.00 2019-10-26 11:44:12 2019-10-26 11:44:46 t 1 1 135863 528 0.00 2019-10-26 11:45:00 2019-10-26 11:45:19 t 1 1 135865 522 0.00 2019-10-26 11:41:39 2019-10-26 11:45:29 t 1 1 135868 564 0.00 2019-10-26 11:30:10 2019-10-26 11:46:00 t 1 1 135873 528 0.00 2019-10-26 11:47:16 2019-10-26 11:47:38 t 1 1 135877 562 0.00 2019-10-26 11:31:39 2019-10-26 11:53:23 t 1 1 135878 585 0.00 2019-10-26 11:51:28 2019-10-26 11:54:10 t 1 1 135880 522 0.00 2019-10-26 11:54:33 2019-10-26 11:54:40 t 1 1 135882 562 0.00 2019-10-26 11:53:23 2019-10-26 11:57:05 t 1 1 135886 528 0.00 2019-10-26 11:57:02 2019-10-26 11:58:06 t 1 1 135888 522 0.00 2019-10-26 12:01:31 2019-10-26 12:01:32 t 1 1 135890 422 0.00 2019-10-26 12:02:02 2019-10-26 12:02:33 t 1 1 135892 528 0.00 2019-10-26 12:02:33 2019-10-26 12:02:52 t 1 1 135897 481 0.00 2019-10-26 11:21:33 2019-10-26 12:08:53 t 1 1 135904 581 0.00 2019-10-26 10:53:38 2019-10-26 12:17:28 t 1 1 135911 562 0.00 2019-10-26 12:24:44 2019-10-26 12:25:45 t 1 1 135912 430 0.00 2019-10-26 12:24:37 2019-10-26 12:26:12 t 1 1 135915 512 0.00 2019-10-26 11:46:39 2019-10-26 12:27:03 t 1 1 135917 522 0.00 2019-10-26 12:29:32 2019-10-26 12:29:54 t 1 1 135918 522 0.00 2019-10-26 12:31:52 2019-10-26 12:32:00 t 1 1 135923 522 0.00 2019-10-26 12:37:02 2019-10-26 12:37:09 t 1 1 135924 538 0.00 2019-10-26 12:32:46 2019-10-26 12:37:26 t 1 1 135925 522 0.00 2019-10-26 12:37:44 2019-10-26 12:37:53 t 1 1 135926 430 0.00 2019-10-26 12:36:45 2019-10-26 12:38:30 t 1 1 135929 583 0.00 2019-10-26 12:28:09 2019-10-26 12:39:06 t 1 1 135933 522 0.00 2019-10-26 12:38:21 2019-10-26 12:40:06 t 1 1 135934 581 0.00 2019-10-26 12:41:17 2019-10-26 12:41:45 t 1 1 135935 544 0.00 2019-10-26 12:28:30 2019-10-26 12:43:35 t 1 2 135937 522 0.00 2019-10-26 12:43:01 2019-10-26 12:44:06 t 1 1 135939 562 0.00 2019-10-26 12:44:45 2019-10-26 12:45:32 t 1 1 135940 481 0.00 2019-10-26 12:34:24 2019-10-26 12:46:29 t 1 1 135941 591 0.00 2019-10-26 12:28:35 2019-10-26 12:47:00 t 1 1 135943 498 0.00 2019-10-26 09:49:01 2019-10-26 12:47:44 t 1 2 135944 514 0.00 2019-10-26 12:15:01 2019-10-26 12:48:08 t 1 1 135953 522 0.00 2019-10-26 12:53:52 2019-10-26 12:55:06 t 1 1 135955 516 0.00 2019-10-26 12:45:27 2019-10-26 12:55:39 t 1 1 135957 522 0.00 2019-10-26 12:55:13 2019-10-26 12:56:24 t 1 1 135958 562 0.00 2019-10-26 12:55:00 2019-10-26 12:56:57 t 1 1 135960 522 0.00 2019-10-26 12:57:30 2019-10-26 12:57:30 f 1 1 135962 522 0.00 2019-10-26 12:57:07 2019-10-26 12:58:08 t 1 1 135972 587 0.00 2019-10-26 13:07:49 2019-10-26 13:08:17 t 1 1 135975 562 0.00 2019-10-26 13:09:38 2019-10-26 13:11:30 t 1 1 135977 379 0.00 2019-10-26 12:36:07 2019-10-26 13:15:46 t 1 1 135978 566 0.00 2019-10-26 13:04:28 2019-10-26 13:17:44 t 1 1 135982 538 0.00 2019-10-26 12:37:25 2019-10-26 13:23:06 t 1 1 135985 597 0.00 2019-10-26 13:27:25 2019-10-26 13:29:24 t 1 1 135989 578 0.00 2019-10-26 13:27:16 2019-10-26 13:34:35 t 1 1 135992 558 0.00 2019-10-26 13:34:14 2019-10-26 13:36:07 t 1 1 135994 585 0.00 2019-10-26 13:35:44 2019-10-26 13:37:42 t 1 1 64301 131 0.00 2018-05-19 11:19:50 2018-05-19 11:21:46 t 1 1 135995 581 0.00 2019-10-26 12:42:15 2019-10-26 13:41:39 t 1 1 135997 566 0.00 2019-10-26 13:17:44 2019-10-26 13:41:56 t 1 1 135998 562 0.00 2019-10-26 13:36:12 2019-10-26 13:42:15 t 1 1 135999 562 0.00 2019-10-26 13:43:38 2019-10-26 13:43:47 t 1 1 136002 498 0.00 2019-10-26 13:36:29 2019-10-26 13:48:14 t 1 2 136003 516 0.00 2019-10-26 13:46:23 2019-10-26 13:49:50 t 1 1 136005 420 0.00 2019-10-26 13:50:38 2019-10-26 13:50:38 f 1 1 136006 327 0.00 2019-10-26 13:35:30 2019-10-26 13:51:03 t 1 1 136015 562 0.00 2019-10-26 14:01:54 2019-10-26 14:02:48 t 1 1 136019 416 0.00 2019-10-26 13:07:09 2019-10-26 14:06:10 t 1 1 136024 562 0.00 2019-10-26 14:12:27 2019-10-26 14:12:59 t 1 1 136027 591 0.00 2019-10-26 14:04:19 2019-10-26 14:14:25 t 1 1 136028 599 0.00 2019-10-26 14:13:29 2019-10-26 14:15:06 t 1 1 136031 562 0.00 2019-10-26 14:17:52 2019-10-26 14:19:55 t 1 1 136036 528 0.00 2019-10-26 14:10:15 2019-10-26 14:23:35 t 1 1 136038 585 0.00 2019-10-26 14:22:28 2019-10-26 14:25:39 t 1 1 136041 220 0.00 2019-10-26 13:27:56 2019-10-26 14:26:40 t 1 1 136042 556 0.00 2019-10-26 13:51:02 2019-10-26 14:28:35 t 1 1 136045 538 0.00 2019-10-26 14:30:20 2019-10-26 14:31:25 t 1 1 135872 220 0.00 2019-10-26 11:08:16 2019-10-26 11:47:24 t 1 2 135874 564 0.00 2019-10-26 11:46:00 2019-10-26 11:51:39 t 1 1 135875 522 0.00 2019-10-26 11:46:25 2019-10-26 11:52:02 t 1 1 135876 528 0.00 2019-10-26 11:52:24 2019-10-26 11:53:15 t 1 1 135881 522 0.00 2019-10-26 11:55:15 2019-10-26 11:55:17 t 1 1 135884 522 0.00 2019-10-26 11:56:26 2019-10-26 11:57:28 t 1 1 135889 445 0.00 2019-10-26 12:00:53 2019-10-26 12:02:06 t 1 1 135891 532 0.00 2019-10-26 11:45:12 2019-10-26 12:02:37 t 1 1 135893 445 0.00 2019-10-26 12:02:03 2019-10-26 12:03:04 t 1 1 135898 585 0.00 2019-10-26 12:08:51 2019-10-26 12:14:08 t 1 1 135899 514 0.00 2019-10-26 11:22:42 2019-10-26 12:15:01 t 1 1 135902 562 0.00 2019-10-26 12:15:52 2019-10-26 12:16:54 t 1 1 135906 522 0.00 2019-10-26 12:01:56 2019-10-26 12:18:48 t 1 1 135913 522 0.00 2019-10-26 12:26:49 2019-10-26 12:26:50 t 1 1 135914 544 0.00 2019-10-26 12:26:52 2019-10-26 12:27:01 t 1 2 135927 512 0.00 2019-10-26 12:28:25 2019-10-26 12:38:53 t 1 1 135928 585 0.00 2019-10-26 12:34:11 2019-10-26 12:39:00 t 1 1 135931 528 0.00 2019-10-26 12:37:36 2019-10-26 12:39:25 t 1 1 135932 512 0.00 2019-10-26 12:38:53 2019-10-26 12:40:03 t 1 1 135945 562 0.00 2019-10-26 12:45:38 2019-10-26 12:48:15 t 1 1 135946 501 0.00 2019-10-26 12:49:11 2019-10-26 12:49:11 f 1 1 135950 562 0.00 2019-10-26 12:52:15 2019-10-26 12:52:55 t 1 1 135952 522 0.00 2019-10-26 12:55:05 2019-10-26 12:55:05 f 1 1 135956 599 0.00 2019-10-26 12:49:50 2019-10-26 12:56:22 t 1 1 135961 522 0.00 2019-10-26 12:56:29 2019-10-26 12:58:06 t 1 1 135964 514 0.00 2019-10-26 12:52:02 2019-10-26 13:00:08 t 1 1 135965 562 0.00 2019-10-26 12:57:19 2019-10-26 13:01:19 t 1 1 135967 445 0.00 2019-10-26 12:06:00 2019-10-26 13:04:40 t 1 1 135968 562 0.00 2019-10-26 13:02:23 2019-10-26 13:05:22 t 1 1 135969 416 0.00 2019-10-26 11:32:34 2019-10-26 13:07:04 t 1 1 135970 587 0.00 2019-10-26 13:04:15 2019-10-26 13:07:28 t 1 1 135971 562 0.00 2019-10-26 13:07:10 2019-10-26 13:08:15 t 1 1 135973 585 0.00 2019-10-26 13:03:28 2019-10-26 13:09:08 t 1 1 135974 481 0.00 2019-10-26 12:46:42 2019-10-26 13:11:23 t 1 1 135976 585 0.00 2019-10-26 13:10:20 2019-10-26 13:14:04 t 1 1 135980 564 0.00 2019-10-26 11:51:39 2019-10-26 13:20:21 t 1 1 135987 562 0.00 2019-10-26 13:14:04 2019-10-26 13:32:31 t 1 1 135988 445 0.00 2019-10-26 13:04:40 2019-10-26 13:33:16 t 1 1 135990 562 0.00 2019-10-26 13:33:56 2019-10-26 13:34:57 t 1 1 135991 327 0.00 2019-10-26 13:19:01 2019-10-26 13:35:30 t 1 1 135993 597 0.00 2019-10-26 13:30:24 2019-10-26 13:37:26 t 1 1 136000 514 0.00 2019-10-26 13:00:08 2019-10-26 13:45:35 t 1 1 136007 556 0.00 2019-10-26 09:04:11 2019-10-26 13:51:03 t 1 1 136011 562 0.00 2019-10-26 13:44:03 2019-10-26 13:56:50 t 1 1 136014 516 0.00 2019-10-26 13:58:20 2019-10-26 14:02:40 t 1 1 136016 351 0.00 2019-10-26 13:52:41 2019-10-26 14:03:08 t 1 2 136017 591 0.00 2019-10-26 13:58:08 2019-10-26 14:04:19 t 1 1 136020 420 0.00 2019-10-26 14:07:39 2019-10-26 14:07:39 f 1 1 136023 562 0.00 2019-10-26 14:07:21 2019-10-26 14:11:29 t 1 1 136026 599 0.00 2019-10-26 14:04:30 2019-10-26 14:13:29 t 1 1 136034 512 0.00 2019-10-26 14:19:11 2019-10-26 14:21:41 t 1 1 136037 564 0.00 2019-10-26 13:20:21 2019-10-26 14:24:04 t 1 1 136039 503 0.00 2019-10-26 13:57:54 2019-10-26 14:26:01 t 1 1 136043 562 0.00 2019-10-26 14:23:11 2019-10-26 14:28:45 t 1 1 136044 520 0.00 2019-10-26 14:20:01 2019-10-26 14:31:02 t 1 1 136048 416 0.00 2019-10-26 14:06:30 2019-10-26 14:34:48 t 1 1 136049 514 0.00 2019-10-26 14:33:05 2019-10-26 14:38:38 t 1 1 136052 220 0.00 2019-10-26 14:26:39 2019-10-26 14:40:18 t 1 1 136054 220 0.00 2019-10-26 14:40:54 2019-10-26 14:41:28 t 1 1 136057 220 0.00 2019-10-26 14:42:00 2019-10-26 14:42:35 t 1 1 136062 220 0.00 2019-10-26 14:43:41 2019-10-26 14:44:13 t 1 1 136066 532 0.00 2019-10-26 14:45:32 2019-10-26 14:45:35 t 1 1 136069 508 0.00 2019-10-26 14:35:58 2019-10-26 14:46:15 t 1 2 136070 220 0.00 2019-10-26 14:45:52 2019-10-26 14:46:25 t 1 1 136078 581 0.00 2019-10-26 14:17:35 2019-10-26 14:52:57 t 1 1 136081 578 0.00 2019-10-26 13:41:45 2019-10-26 14:56:01 t 1 1 136082 379 0.00 2019-10-26 14:19:00 2019-10-26 14:56:52 t 1 1 136086 589 0.00 2019-10-26 14:22:30 2019-10-26 14:59:15 t 1 1 136089 562 0.00 2019-10-26 15:01:41 2019-10-26 15:01:52 t 1 1 136090 532 0.00 2019-10-26 15:03:41 2019-10-26 15:04:02 t 1 1 136092 562 0.00 2019-10-26 15:03:51 2019-10-26 15:05:06 t 1 1 136093 595 0.00 2019-10-26 15:04:36 2019-10-26 15:06:59 t 1 1 136094 481 0.00 2019-10-26 13:27:56 2019-10-26 15:07:57 t 1 1 136096 532 0.00 2019-10-26 15:10:56 2019-10-26 15:11:20 t 1 1 136097 597 0.00 2019-10-26 15:04:18 2019-10-26 15:12:38 t 1 1 136105 528 0.00 2019-10-26 15:19:36 2019-10-26 15:20:30 t 1 1 136108 585 0.00 2019-10-26 15:18:53 2019-10-26 15:27:21 t 1 1 136115 532 0.00 2019-10-26 15:32:17 2019-10-26 15:32:38 t 1 1 136118 220 0.00 2019-10-26 15:27:59 2019-10-26 15:37:41 t 1 2 64572 131 0.00 2018-05-21 15:54:00 2018-05-21 15:55:49 t 1 1 136119 595 0.00 2019-10-26 15:34:38 2019-10-26 15:38:46 t 1 1 136120 532 0.00 2019-10-26 15:39:17 2019-10-26 15:39:22 t 1 1 136123 327 0.00 2019-10-26 15:40:03 2019-10-26 15:40:36 t 1 1 136128 595 0.00 2019-10-26 15:42:50 2019-10-26 15:43:51 t 1 1 136130 591 0.00 2019-10-26 15:42:47 2019-10-26 15:44:21 t 1 1 136132 528 0.00 2019-10-26 15:45:09 2019-10-26 15:45:54 t 1 1 136134 532 0.00 2019-10-26 15:48:34 2019-10-26 15:48:39 t 1 1 136140 532 0.00 2019-10-26 15:54:40 2019-10-26 15:55:37 t 1 1 136147 562 0.00 2019-10-26 16:01:36 2019-10-26 16:02:29 t 1 1 136155 587 0.00 2019-10-26 16:06:08 2019-10-26 16:12:28 t 1 1 136156 430 0.00 2019-10-26 16:10:36 2019-10-26 16:13:30 t 1 1 136157 532 0.00 2019-10-26 16:14:44 2019-10-26 16:15:04 t 1 1 136160 485 0.00 2019-10-26 16:07:40 2019-10-26 16:16:37 t 1 1 136161 327 0.00 2019-10-26 16:11:23 2019-10-26 16:17:15 t 1 1 136162 562 0.00 2019-10-26 16:09:02 2019-10-26 16:18:11 t 1 1 136164 562 0.00 2019-10-26 16:18:34 2019-10-26 16:18:49 t 1 1 136166 544 0.00 2019-10-26 16:05:28 2019-10-26 16:20:34 t 1 2 136172 516 0.00 2019-10-26 16:24:26 2019-10-26 16:25:49 t 1 1 136174 578 0.00 2019-10-26 16:19:56 2019-10-26 16:27:31 t 1 1 136176 562 0.00 2019-10-26 16:29:04 2019-10-26 16:29:24 t 1 1 136177 528 0.00 2019-10-26 16:09:13 2019-10-26 16:30:11 t 1 1 136179 528 0.00 2019-10-26 16:30:57 2019-10-26 16:31:11 t 1 1 136182 532 0.00 2019-10-26 16:31:27 2019-10-26 16:32:22 t 1 1 136184 528 0.00 2019-10-26 16:32:13 2019-10-26 16:32:27 t 1 1 136190 528 0.00 2019-10-26 16:36:01 2019-10-26 16:36:24 t 1 1 136192 578 0.00 2019-10-26 16:27:31 2019-10-26 16:37:28 t 1 1 64635 131 0.00 2018-05-22 10:46:28 2018-05-22 10:47:50 t 1 1 136012 327 0.00 2019-10-26 13:51:03 2019-10-26 13:57:52 t 1 1 136013 562 0.00 2019-10-26 13:58:54 2019-10-26 13:59:11 t 1 1 136018 599 0.00 2019-10-26 13:04:23 2019-10-26 14:04:30 t 1 1 136021 562 0.00 2019-10-26 14:03:52 2019-10-26 14:08:13 t 1 1 136022 327 0.00 2019-10-26 13:58:29 2019-10-26 14:11:00 t 1 1 136025 585 0.00 2019-10-26 14:00:32 2019-10-26 14:13:18 t 1 1 136029 562 0.00 2019-10-26 14:15:44 2019-10-26 14:16:40 t 1 1 136030 379 0.00 2019-10-26 13:59:05 2019-10-26 14:19:00 t 1 1 136032 591 0.00 2019-10-26 14:19:29 2019-10-26 14:20:08 t 1 1 136033 585 0.00 2019-10-26 14:13:53 2019-10-26 14:21:29 t 1 1 136035 562 0.00 2019-10-26 14:21:26 2019-10-26 14:22:04 t 1 1 136040 512 0.00 2019-10-26 14:26:22 2019-10-26 14:26:29 t 1 1 64379 131 0.00 2018-05-20 10:35:56 2018-05-20 10:36:59 t 1 1 136046 514 0.00 2019-10-26 13:45:35 2019-10-26 14:33:05 t 1 1 136050 416 0.00 2019-10-26 14:37:26 2019-10-26 14:38:40 t 1 1 136051 558 0.00 2019-10-26 13:36:41 2019-10-26 14:39:21 t 1 1 136053 220 0.00 2019-10-26 14:40:18 2019-10-26 14:40:55 t 1 1 136060 514 0.00 2019-10-26 14:38:38 2019-10-26 14:43:42 t 1 1 136061 562 0.00 2019-10-26 14:43:44 2019-10-26 14:43:54 t 1 1 136063 220 0.00 2019-10-26 14:44:13 2019-10-26 14:44:47 t 1 1 136064 532 0.00 2019-10-26 14:37:57 2019-10-26 14:45:00 t 1 1 136067 220 0.00 2019-10-26 14:45:21 2019-10-26 14:45:53 t 1 1 136071 562 0.00 2019-10-26 14:44:08 2019-10-26 14:47:02 t 1 1 136075 485 0.00 2019-10-26 14:46:10 2019-10-26 14:49:54 t 1 1 136077 422 0.00 2019-10-26 14:39:42 2019-10-26 14:52:19 t 1 1 136079 514 0.00 2019-10-26 14:43:42 2019-10-26 14:54:38 t 1 1 136083 562 0.00 2019-10-26 14:56:27 2019-10-26 14:56:58 t 1 1 136091 558 0.00 2019-10-26 14:47:14 2019-10-26 15:04:35 t 1 1 136095 514 0.00 2019-10-26 15:01:46 2019-10-26 15:08:28 t 1 1 136098 558 0.00 2019-10-26 15:11:54 2019-10-26 15:13:09 t 1 1 136101 528 0.00 2019-10-26 14:52:19 2019-10-26 15:17:43 t 1 1 136103 558 0.00 2019-10-26 15:15:43 2019-10-26 15:18:48 t 1 1 136107 562 0.00 2019-10-26 15:22:53 2019-10-26 15:23:04 t 1 1 136110 528 0.00 2019-10-26 15:28:04 2019-10-26 15:28:11 t 1 1 136112 516 0.00 2019-10-26 15:21:06 2019-10-26 15:30:55 t 1 1 136113 544 0.00 2019-10-26 14:42:59 2019-10-26 15:32:14 t 1 2 136114 445 0.00 2019-10-26 14:57:05 2019-10-26 15:32:35 t 1 1 136116 599 0.00 2019-10-26 15:13:40 2019-10-26 15:36:20 t 1 1 136117 562 0.00 2019-10-26 15:35:48 2019-10-26 15:37:06 t 1 1 136121 562 0.00 2019-10-26 15:39:41 2019-10-26 15:40:00 t 1 1 136127 528 0.00 2019-10-26 15:41:59 2019-10-26 15:43:26 t 1 1 136129 564 0.00 2019-10-26 14:24:04 2019-10-26 15:44:06 t 1 1 136133 583 0.00 2019-10-26 15:38:39 2019-10-26 15:46:41 t 1 1 136138 532 0.00 2019-10-26 15:50:53 2019-10-26 15:54:27 t 1 1 136141 528 0.00 2019-10-26 15:55:03 2019-10-26 15:56:39 t 1 1 136142 562 0.00 2019-10-26 15:57:07 2019-10-26 15:57:16 t 1 1 136143 532 0.00 2019-10-26 15:57:41 2019-10-26 15:57:45 t 1 1 136144 587 0.00 2019-10-26 15:55:27 2019-10-26 15:58:50 t 1 1 136145 562 0.00 2019-10-26 15:58:27 2019-10-26 16:00:10 t 1 1 136146 327 0.00 2019-10-26 15:59:01 2019-10-26 16:01:25 t 1 1 136148 532 0.00 2019-10-26 16:02:14 2019-10-26 16:02:45 t 1 1 136150 445 0.00 2019-10-26 15:32:35 2019-10-26 16:03:27 t 1 1 136151 587 0.00 2019-10-26 16:00:18 2019-10-26 16:03:58 t 1 1 136154 562 0.00 2019-10-26 16:08:02 2019-10-26 16:08:11 t 1 1 136159 532 0.00 2019-10-26 16:16:30 2019-10-26 16:16:32 t 1 1 136163 574 0.00 2019-10-26 15:57:43 2019-10-26 16:18:45 t 1 1 136165 578 0.00 2019-10-26 14:56:01 2019-10-26 16:19:56 t 1 1 136168 485 0.00 2019-10-26 16:16:37 2019-10-26 16:21:55 t 1 1 136171 532 0.00 2019-10-26 16:25:27 2019-10-26 16:25:46 t 1 1 64545 131 0.00 2018-05-21 12:43:18 2018-05-21 12:44:49 t 1 1 136173 597 0.00 2019-10-26 16:08:07 2019-10-26 16:27:26 t 1 1 136175 327 0.00 2019-10-26 16:27:10 2019-10-26 16:29:17 t 1 1 136187 528 0.00 2019-10-26 16:34:00 2019-10-26 16:34:19 t 1 1 64557 131 0.00 2018-05-21 13:02:23 2018-05-21 13:03:49 t 1 1 64560 131 0.00 2018-05-21 13:36:50 2018-05-21 13:38:49 t 1 1 136194 430 0.00 2019-10-26 16:25:21 2019-10-26 16:37:49 t 1 1 136198 516 0.00 2019-10-26 16:27:19 2019-10-26 16:42:25 t 1 1 136200 562 0.00 2019-10-26 16:44:20 2019-10-26 16:44:29 t 1 1 136205 430 0.00 2019-10-26 16:37:49 2019-10-26 16:49:29 t 1 1 136209 611 0.00 2019-10-26 16:50:52 2019-10-26 16:51:01 t 1 1 136213 587 0.00 2019-10-26 16:51:18 2019-10-26 16:52:22 t 1 1 136214 562 0.00 2019-10-26 16:52:10 2019-10-26 16:52:38 t 1 1 136218 488 0.00 2019-10-26 16:55:43 2019-10-26 16:55:43 f 1 1 136231 532 0.00 2019-10-26 17:04:04 2019-10-26 17:04:10 t 1 1 136233 488 0.00 2019-10-26 17:04:54 2019-10-26 17:04:54 f 1 1 136235 578 0.00 2019-10-26 16:37:28 2019-10-26 17:05:52 t 1 1 136238 532 0.00 2019-10-26 17:06:16 2019-10-26 17:06:47 t 1 1 136239 613 0.00 2019-10-26 17:05:46 2019-10-26 17:06:51 t 1 1 136248 613 0.00 2019-10-26 17:08:17 2019-10-26 17:10:31 t 1 1 136251 488 0.00 2019-10-26 17:11:57 2019-10-26 17:11:57 f 1 1 136253 430 0.00 2019-10-26 17:07:08 2019-10-26 17:13:11 t 1 1 136254 591 0.00 2019-10-26 17:13:29 2019-10-26 17:15:42 t 1 1 136258 456 0.00 2019-10-26 17:05:18 2019-10-26 17:17:11 t 1 1 136264 488 0.00 2019-10-26 17:17:05 2019-10-26 17:22:51 t 1 1 136270 514 0.00 2019-10-26 17:09:13 2019-10-26 17:26:18 t 1 1 136278 532 0.00 2019-10-26 17:29:53 2019-10-26 17:36:29 t 1 1 136281 532 0.00 2019-10-26 17:37:42 2019-10-26 17:37:46 t 1 1 136284 562 0.00 2019-10-26 17:37:24 2019-10-26 17:39:14 t 1 1 136286 532 0.00 2019-10-26 17:40:08 2019-10-26 17:40:10 t 1 1 136288 445 0.00 2019-10-26 17:29:17 2019-10-26 17:40:54 t 1 1 136294 532 0.00 2019-10-26 17:43:20 2019-10-26 17:43:35 t 1 1 136298 528 0.00 2019-10-26 17:43:31 2019-10-26 17:47:05 t 1 1 136300 591 0.00 2019-10-26 17:43:44 2019-10-26 17:47:20 t 1 1 136308 498 0.00 2019-10-26 17:52:39 2019-10-26 17:52:39 f 1 2 136311 445 0.00 2019-10-26 17:41:33 2019-10-26 17:55:57 t 1 1 136312 532 0.00 2019-10-26 17:56:14 2019-10-26 17:56:34 t 1 1 136316 591 0.00 2019-10-26 17:50:57 2019-10-26 17:58:52 t 1 1 136317 532 0.00 2019-10-26 17:59:16 2019-10-26 17:59:19 t 1 1 136320 528 0.00 2019-10-26 17:49:02 2019-10-26 18:00:38 t 1 1 136324 556 0.00 2019-10-26 14:28:38 2019-10-26 18:04:29 t 1 1 136326 532 0.00 2019-10-26 18:06:55 2019-10-26 18:07:17 t 1 1 136330 570 0.00 2019-10-26 17:37:27 2019-10-26 18:09:41 t 1 1 136333 562 0.00 2019-10-26 18:14:21 2019-10-26 18:14:47 t 1 1 136335 597 0.00 2019-10-26 18:15:24 2019-10-26 18:16:42 t 1 1 136337 532 0.00 2019-10-26 18:18:58 2019-10-26 18:20:03 t 1 1 136339 532 0.00 2019-10-26 18:24:18 2019-10-26 18:24:41 t 1 1 136346 562 0.00 2019-10-26 18:32:45 2019-10-26 18:33:30 t 1 1 136047 562 0.00 2019-10-26 14:33:02 2019-10-26 14:33:19 t 1 1 136055 562 0.00 2019-10-26 14:41:09 2019-10-26 14:41:45 t 1 1 136056 220 0.00 2019-10-26 14:41:28 2019-10-26 14:42:00 t 1 1 136058 220 0.00 2019-10-26 14:42:34 2019-10-26 14:43:09 t 1 1 136059 220 0.00 2019-10-26 14:43:08 2019-10-26 14:43:42 t 1 1 136065 220 0.00 2019-10-26 14:44:47 2019-10-26 14:45:21 t 1 1 136068 485 0.00 2019-10-26 14:43:26 2019-10-26 14:46:10 t 1 1 136072 558 0.00 2019-10-26 14:39:21 2019-10-26 14:47:14 t 1 1 136073 562 0.00 2019-10-26 14:48:21 2019-10-26 14:48:35 t 1 1 136074 532 0.00 2019-10-26 14:49:39 2019-10-26 14:49:52 t 1 1 136076 528 0.00 2019-10-26 14:46:22 2019-10-26 14:52:02 t 1 1 136080 562 0.00 2019-10-26 14:54:39 2019-10-26 14:55:06 t 1 1 136084 445 0.00 2019-10-26 13:53:26 2019-10-26 14:57:06 t 1 1 136085 327 0.00 2019-10-26 14:20:24 2019-10-26 14:59:13 t 1 1 136087 532 0.00 2019-10-26 15:00:17 2019-10-26 15:00:33 t 1 1 136088 514 0.00 2019-10-26 14:54:38 2019-10-26 15:01:46 t 1 1 136099 599 0.00 2019-10-26 14:15:06 2019-10-26 15:13:40 t 1 1 136100 558 0.00 2019-10-26 15:13:38 2019-10-26 15:14:54 t 1 1 136102 591 0.00 2019-10-26 15:07:08 2019-10-26 15:17:58 t 1 1 136104 585 0.00 2019-10-26 15:16:15 2019-10-26 15:18:53 t 1 1 136106 532 0.00 2019-10-26 15:21:35 2019-10-26 15:21:57 t 1 1 136109 591 0.00 2019-10-26 15:24:51 2019-10-26 15:27:53 t 1 1 136111 327 0.00 2019-10-26 14:59:13 2019-10-26 15:30:39 t 1 1 136122 595 0.00 2019-10-26 15:39:50 2019-10-26 15:40:07 t 1 1 136124 595 0.00 2019-10-26 15:40:17 2019-10-26 15:40:39 t 1 1 136125 528 0.00 2019-10-26 15:29:35 2019-10-26 15:42:52 t 1 1 136126 532 0.00 2019-10-26 15:42:57 2019-10-26 15:43:19 t 1 1 136131 532 0.00 2019-10-26 15:44:32 2019-10-26 15:45:02 t 1 1 136135 532 0.00 2019-10-26 15:49:29 2019-10-26 15:49:37 t 1 1 136136 327 0.00 2019-10-26 15:50:32 2019-10-26 15:51:06 t 1 1 136137 587 0.00 2019-10-26 15:52:26 2019-10-26 15:54:27 t 1 1 136139 456 0.00 2019-10-26 15:52:27 2019-10-26 15:55:25 t 1 1 136149 562 0.00 2019-10-26 16:02:40 2019-10-26 16:03:20 t 1 1 136152 532 0.00 2019-10-26 16:04:02 2019-10-26 16:04:23 t 1 1 136153 587 0.00 2019-10-26 16:05:57 2019-10-26 16:05:59 t 1 1 136158 538 0.00 2019-10-26 14:39:46 2019-10-26 16:15:12 t 1 1 136167 595 0.00 2019-10-26 16:21:19 2019-10-26 16:21:49 t 1 1 136169 516 0.00 2019-10-26 16:17:27 2019-10-26 16:22:37 t 1 1 136170 562 0.00 2019-10-26 16:23:22 2019-10-26 16:23:47 t 1 1 136178 599 0.00 2019-10-26 15:36:20 2019-10-26 16:30:16 t 1 1 136180 532 0.00 2019-10-26 16:31:01 2019-10-26 16:31:12 t 1 1 136181 599 0.00 2019-10-26 16:30:42 2019-10-26 16:32:00 t 1 1 136183 481 0.00 2019-10-26 15:07:57 2019-10-26 16:32:26 t 1 1 136185 532 0.00 2019-10-26 16:33:36 2019-10-26 16:33:54 t 1 1 136186 562 0.00 2019-10-26 16:33:49 2019-10-26 16:34:02 t 1 1 136188 581 0.00 2019-10-26 16:14:35 2019-10-26 16:34:43 t 1 1 136189 528 0.00 2019-10-26 16:34:40 2019-10-26 16:35:03 t 1 1 136191 532 0.00 2019-10-26 16:35:45 2019-10-26 16:36:26 t 1 1 136195 532 0.00 2019-10-26 16:37:45 2019-10-26 16:37:54 t 1 1 136206 611 0.00 2019-10-26 16:49:13 2019-10-26 16:49:35 t 1 1 136210 587 0.00 2019-10-26 16:40:51 2019-10-26 16:51:18 t 1 1 136216 611 0.00 2019-10-26 16:51:07 2019-10-26 16:54:11 t 1 1 136219 445 0.00 2019-10-26 16:03:27 2019-10-26 16:55:56 t 1 1 136221 430 0.00 2019-10-26 16:49:29 2019-10-26 16:58:20 t 1 1 136222 587 0.00 2019-10-26 16:52:26 2019-10-26 17:00:15 t 1 1 136225 528 0.00 2019-10-26 17:01:23 2019-10-26 17:02:49 t 1 1 136226 528 0.00 2019-10-26 17:03:12 2019-10-26 17:03:21 t 1 1 136228 430 0.00 2019-10-26 16:58:20 2019-10-26 17:03:32 t 1 1 136230 611 0.00 2019-10-26 17:01:53 2019-10-26 17:04:06 t 1 1 136236 456 0.00 2019-10-26 16:21:49 2019-10-26 17:05:55 t 1 1 136237 430 0.00 2019-10-26 17:03:32 2019-10-26 17:06:30 t 1 1 136241 597 0.00 2019-10-26 17:00:40 2019-10-26 17:06:57 t 1 1 136242 611 0.00 2019-10-26 17:04:06 2019-10-26 17:07:12 t 1 1 136244 514 0.00 2019-10-26 15:08:28 2019-10-26 17:09:13 t 1 1 136245 488 0.00 2019-10-26 17:09:15 2019-10-26 17:09:15 f 1 1 136247 488 0.00 2019-10-26 17:10:19 2019-10-26 17:10:19 f 1 1 136249 597 0.00 2019-10-26 17:07:17 2019-10-26 17:11:16 t 1 1 136255 488 0.00 2019-10-26 17:14:03 2019-10-26 17:16:57 t 1 1 136257 532 0.00 2019-10-26 17:17:02 2019-10-26 17:17:11 t 1 1 136259 587 0.00 2019-10-26 17:00:15 2019-10-26 17:18:15 t 1 1 136260 445 0.00 2019-10-26 16:55:56 2019-10-26 17:18:32 t 1 1 136263 456 0.00 2019-10-26 17:17:06 2019-10-26 17:21:12 t 1 1 136267 488 0.00 2019-10-26 17:22:51 2019-10-26 17:24:25 t 1 1 136269 488 0.00 2019-10-26 17:24:25 2019-10-26 17:26:15 t 1 1 136272 445 0.00 2019-10-26 17:18:39 2019-10-26 17:28:17 t 1 1 136273 562 0.00 2019-10-26 16:53:51 2019-10-26 17:31:31 t 1 1 136275 581 0.00 2019-10-26 17:32:26 2019-10-26 17:32:52 t 1 1 136279 589 0.00 2019-10-26 17:21:21 2019-10-26 17:37:03 t 1 1 64558 131 0.00 2018-05-21 13:03:52 2018-05-21 13:05:49 t 1 1 136283 514 0.00 2019-10-26 17:26:18 2019-10-26 17:39:06 t 1 1 136287 514 0.00 2019-10-26 17:39:06 2019-10-26 17:40:50 t 1 1 136289 587 0.00 2019-10-26 17:24:05 2019-10-26 17:41:10 t 1 1 136291 516 0.00 2019-10-26 17:40:09 2019-10-26 17:42:30 t 1 1 136293 528 0.00 2019-10-26 17:37:30 2019-10-26 17:43:32 t 1 1 136299 562 0.00 2019-10-26 17:46:07 2019-10-26 17:47:13 t 1 1 136301 528 0.00 2019-10-26 17:47:13 2019-10-26 17:48:13 t 1 1 136303 416 0.00 2019-10-26 14:39:54 2019-10-26 17:51:10 t 1 1 136305 485 0.00 2019-10-26 17:50:12 2019-10-26 17:51:38 t 1 1 136309 544 0.00 2019-10-26 17:49:53 2019-10-26 17:53:53 t 1 2 136310 564 0.00 2019-10-26 16:52:35 2019-10-26 17:54:06 t 1 1 136314 562 0.00 2019-10-26 17:56:54 2019-10-26 17:57:19 t 1 1 136315 562 0.00 2019-10-26 17:57:28 2019-10-26 17:57:58 t 1 1 136319 562 0.00 2019-10-26 18:00:06 2019-10-26 18:00:30 t 1 1 136322 220 0.00 2019-10-26 14:46:25 2019-10-26 18:03:29 t 1 1 64599 131 0.00 2018-05-21 19:11:38 2018-05-21 19:12:49 t 1 1 136325 528 0.00 2019-10-26 18:04:31 2019-10-26 18:04:43 t 1 1 136328 562 0.00 2019-10-26 18:07:38 2019-10-26 18:08:03 t 1 1 136331 456 0.00 2019-10-26 18:07:45 2019-10-26 18:09:48 t 1 1 136341 562 0.00 2019-10-26 18:25:13 2019-10-26 18:25:20 t 1 1 136343 587 0.00 2019-10-26 18:17:52 2019-10-26 18:29:11 t 1 1 136345 522 0.00 2019-10-26 18:29:15 2019-10-26 18:31:06 t 1 1 136349 532 0.00 2019-10-26 18:34:12 2019-10-26 18:34:46 t 1 1 136351 485 0.00 2019-10-26 18:33:49 2019-10-26 18:35:42 t 1 1 136352 597 0.00 2019-10-26 18:21:21 2019-10-26 18:37:16 t 1 1 136355 528 0.00 2019-10-26 18:06:07 2019-10-26 18:40:54 t 1 1 136356 522 0.00 2019-10-26 18:39:19 2019-10-26 18:41:06 t 1 1 136362 528 0.00 2019-10-26 18:44:31 2019-10-26 18:45:57 t 1 1 136193 528 0.00 2019-10-26 16:37:31 2019-10-26 16:37:38 t 1 1 136196 587 0.00 2019-10-26 16:12:39 2019-10-26 16:40:51 t 1 1 136197 597 0.00 2019-10-26 16:38:31 2019-10-26 16:41:09 t 1 1 136199 528 0.00 2019-10-26 16:43:32 2019-10-26 16:44:10 t 1 1 136201 481 0.00 2019-10-26 16:32:26 2019-10-26 16:44:38 t 1 1 136202 311 0.00 2019-10-26 16:37:56 2019-10-26 16:46:20 t 1 2 136203 532 0.00 2019-10-26 16:38:28 2019-10-26 16:48:28 t 1 1 136204 562 0.00 2019-10-26 16:46:00 2019-10-26 16:49:04 t 1 1 136207 528 0.00 2019-10-26 16:49:40 2019-10-26 16:50:05 t 1 1 136208 611 0.00 2019-10-26 16:49:43 2019-10-26 16:50:52 t 1 1 136211 562 0.00 2019-10-26 16:50:23 2019-10-26 16:51:41 t 1 1 136212 488 0.00 2019-10-26 16:52:04 2019-10-26 16:52:04 f 1 1 136215 538 0.00 2019-10-26 16:16:06 2019-10-26 16:54:01 t 1 1 136217 488 0.00 2019-10-26 16:54:41 2019-10-26 16:54:41 f 1 1 136220 528 0.00 2019-10-26 16:55:11 2019-10-26 16:56:03 t 1 1 136223 481 0.00 2019-10-26 16:44:38 2019-10-26 17:01:34 t 1 1 136224 532 0.00 2019-10-26 16:48:28 2019-10-26 17:02:38 t 1 1 136227 488 0.00 2019-10-26 17:03:23 2019-10-26 17:03:23 f 1 1 136229 591 0.00 2019-10-26 15:59:07 2019-10-26 17:03:55 t 1 1 136232 488 0.00 2019-10-26 17:04:45 2019-10-26 17:04:45 f 1 1 136234 528 0.00 2019-10-26 17:04:03 2019-10-26 17:05:42 t 1 1 136240 430 0.00 2019-10-26 17:06:48 2019-10-26 17:06:51 t 1 1 136243 516 0.00 2019-10-26 16:56:07 2019-10-26 17:07:35 t 1 1 136246 488 0.00 2019-10-26 17:09:56 2019-10-26 17:09:56 f 1 1 136250 488 0.00 2019-10-26 17:11:46 2019-10-26 17:11:46 f 1 1 136252 591 0.00 2019-10-26 17:03:55 2019-10-26 17:12:45 t 1 1 136256 591 0.00 2019-10-26 17:15:41 2019-10-26 17:17:09 t 1 1 136261 485 0.00 2019-10-26 17:14:13 2019-10-26 17:18:55 t 1 1 136262 591 0.00 2019-10-26 17:18:22 2019-10-26 17:19:50 t 1 1 136265 587 0.00 2019-10-26 17:18:26 2019-10-26 17:23:54 t 1 1 136266 498 0.00 2019-10-26 15:49:17 2019-10-26 17:24:22 t 1 2 136268 485 0.00 2019-10-26 17:19:41 2019-10-26 17:26:03 t 1 1 136271 532 0.00 2019-10-26 17:23:51 2019-10-26 17:28:12 t 1 1 136274 591 0.00 2019-10-26 17:21:20 2019-10-26 17:32:08 t 1 1 136276 562 0.00 2019-10-26 17:32:14 2019-10-26 17:33:20 t 1 1 136277 516 0.00 2019-10-26 17:34:00 2019-10-26 17:36:24 t 1 1 136280 589 0.00 2019-10-26 17:37:12 2019-10-26 17:37:30 t 1 1 136282 591 0.00 2019-10-26 17:36:27 2019-10-26 17:37:54 t 1 1 136285 581 0.00 2019-10-26 17:32:51 2019-10-26 17:39:38 t 1 1 136290 611 0.00 2019-10-26 17:41:17 2019-10-26 17:42:18 t 1 1 136292 532 0.00 2019-10-26 17:42:34 2019-10-26 17:42:41 t 1 1 136295 481 0.00 2019-10-26 17:06:47 2019-10-26 17:43:37 t 1 1 136296 587 0.00 2019-10-26 17:41:10 2019-10-26 17:44:35 t 1 1 136297 532 0.00 2019-10-26 17:46:03 2019-10-26 17:46:30 t 1 1 136302 595 0.00 2019-10-26 17:48:22 2019-10-26 17:50:08 t 1 1 136304 532 0.00 2019-10-26 17:51:11 2019-10-26 17:51:19 t 1 1 136306 498 0.00 2019-10-26 17:51:40 2019-10-26 17:51:40 f 1 2 136307 532 0.00 2019-10-26 17:52:31 2019-10-26 17:52:34 t 1 1 136313 445 0.00 2019-10-26 17:55:33 2019-10-26 17:57:06 t 1 1 136318 498 0.00 2019-10-26 17:29:40 2019-10-26 17:59:46 t 1 2 136321 445 0.00 2019-10-26 17:56:47 2019-10-26 18:03:14 t 1 1 136323 456 0.00 2019-10-26 18:00:48 2019-10-26 18:04:03 t 1 1 136327 422 0.00 2019-10-26 14:52:19 2019-10-26 18:07:26 t 1 1 136329 445 0.00 2019-10-26 18:03:11 2019-10-26 18:09:16 t 1 1 136332 591 0.00 2019-10-26 18:00:54 2019-10-26 18:14:10 t 1 1 136334 570 0.00 2019-10-26 18:09:41 2019-10-26 18:15:46 t 1 1 136336 532 0.00 2019-10-26 18:12:14 2019-10-26 18:18:23 t 1 1 136338 562 0.00 2019-10-26 18:23:39 2019-10-26 18:24:04 t 1 1 136340 591 0.00 2019-10-26 18:22:43 2019-10-26 18:24:55 t 1 1 136342 522 0.00 2019-10-26 18:24:04 2019-10-26 18:29:10 t 1 1 136344 522 0.00 2019-10-26 18:29:28 2019-10-26 18:29:55 t 1 1 136354 522 0.00 2019-10-26 18:38:55 2019-10-26 18:38:57 t 1 1 136359 587 0.00 2019-10-26 18:29:11 2019-10-26 18:43:52 t 1 1 136363 528 0.00 2019-10-26 18:46:17 2019-10-26 18:46:19 t 1 1 136364 544 0.00 2019-10-26 18:22:43 2019-10-26 18:47:47 t 1 2 136365 528 0.00 2019-10-26 18:47:43 2019-10-26 18:48:17 t 1 1 136366 528 0.00 2019-10-26 18:49:20 2019-10-26 18:49:50 t 1 1 136367 611 0.00 2019-10-26 18:37:59 2019-10-26 18:50:02 t 1 1 136373 522 0.00 2019-10-26 18:51:56 2019-10-26 18:52:24 t 1 1 136376 587 0.00 2019-10-26 18:55:25 2019-10-26 18:55:31 t 1 1 136381 595 0.00 2019-10-26 18:51:18 2019-10-26 18:57:47 t 1 1 136385 522 0.00 2019-10-26 18:58:34 2019-10-26 18:58:56 t 1 1 136386 522 0.00 2019-10-26 18:57:13 2019-10-26 18:59:06 t 1 1 136391 591 0.00 2019-10-26 18:58:27 2019-10-26 19:01:22 t 1 1 136399 562 0.00 2019-10-26 19:04:37 2019-10-26 19:05:35 t 1 1 136405 581 0.00 2019-10-26 19:06:36 2019-10-26 19:06:47 t 1 1 136409 581 0.00 2019-10-26 19:08:44 2019-10-26 19:08:56 t 1 1 136410 581 0.00 2019-10-26 19:09:03 2019-10-26 19:09:14 t 1 1 136412 591 0.00 2019-10-26 19:05:50 2019-10-26 19:09:40 t 1 1 136416 562 0.00 2019-10-26 19:10:45 2019-10-26 19:11:43 t 1 1 136422 581 0.00 2019-10-26 19:12:53 2019-10-26 19:14:42 t 1 1 136426 522 0.00 2019-10-26 19:15:23 2019-10-26 19:15:32 t 1 1 136428 538 0.00 2019-10-26 19:13:13 2019-10-26 19:16:00 t 1 1 136429 562 0.00 2019-10-26 19:16:17 2019-10-26 19:16:43 t 1 1 136436 615 0.00 2019-10-26 19:19:55 2019-10-26 19:20:10 t 1 1 136438 581 0.00 2019-10-26 19:19:55 2019-10-26 19:20:23 t 1 1 136439 528 0.00 2019-10-26 19:14:12 2019-10-26 19:20:32 t 1 1 136441 581 0.00 2019-10-26 19:19:45 2019-10-26 19:20:46 t 1 1 136446 581 0.00 2019-10-26 19:21:37 2019-10-26 19:21:49 t 1 1 136453 522 0.00 2019-10-26 19:23:20 2019-10-26 19:23:44 t 1 1 136457 562 0.00 2019-10-26 19:24:24 2019-10-26 19:24:48 t 1 1 136460 522 0.00 2019-10-26 19:25:38 2019-10-26 19:25:41 t 1 1 136462 587 0.00 2019-10-26 19:26:05 2019-10-26 19:26:05 f 1 1 136466 581 0.00 2019-10-26 19:26:37 2019-10-26 19:27:02 t 1 1 136472 558 0.00 2019-10-26 18:51:52 2019-10-26 19:30:35 t 1 1 136476 522 0.00 2019-10-26 19:26:23 2019-10-26 19:32:42 t 1 1 136478 581 0.00 2019-10-26 19:31:54 2019-10-26 19:33:00 t 1 1 136479 581 0.00 2019-10-26 19:33:07 2019-10-26 19:33:29 t 1 1 136482 581 0.00 2019-10-26 19:33:55 2019-10-26 19:34:07 t 1 1 136483 556 0.00 2019-10-26 19:09:42 2019-10-26 19:34:26 t 1 1 136485 581 0.00 2019-10-26 19:34:34 2019-10-26 19:34:46 t 1 1 136487 522 0.00 2019-10-26 19:34:58 2019-10-26 19:35:08 t 1 1 136488 522 0.00 2019-10-26 19:33:07 2019-10-26 19:35:20 t 1 1 136491 522 0.00 2019-10-26 19:35:20 2019-10-26 19:35:50 t 1 1 136492 581 0.00 2019-10-26 19:35:50 2019-10-26 19:36:32 t 1 1 136493 581 0.00 2019-10-26 19:36:45 2019-10-26 19:37:38 t 1 1 136494 581 0.00 2019-10-26 19:37:44 2019-10-26 19:38:05 t 1 1 136347 522 0.00 2019-10-26 18:33:50 2019-10-26 18:33:51 t 1 1 64663 131 0.00 2018-05-22 17:53:04 2018-05-22 17:54:50 t 1 1 136348 562 0.00 2019-10-26 18:33:52 2019-10-26 18:34:01 t 1 1 136350 522 0.00 2019-10-26 18:35:28 2019-10-26 18:35:34 t 1 1 136353 445 0.00 2019-10-26 18:09:23 2019-10-26 18:38:13 t 1 1 136357 514 0.00 2019-10-26 17:40:50 2019-10-26 18:41:25 t 1 1 136358 528 0.00 2019-10-26 18:42:30 2019-10-26 18:43:44 t 1 1 136360 562 0.00 2019-10-26 18:43:33 2019-10-26 18:43:53 t 1 1 136361 587 0.00 2019-10-26 18:43:52 2019-10-26 18:45:29 t 1 1 136368 445 0.00 2019-10-26 18:38:13 2019-10-26 18:51:13 t 1 1 136369 522 0.00 2019-10-26 18:41:00 2019-10-26 18:51:36 t 1 1 136370 522 0.00 2019-10-26 18:51:43 2019-10-26 18:51:44 t 1 1 136372 562 0.00 2019-10-26 18:51:50 2019-10-26 18:52:17 t 1 1 136375 587 0.00 2019-10-26 18:51:40 2019-10-26 18:54:46 t 1 1 136379 522 0.00 2019-10-26 18:56:48 2019-10-26 18:57:00 t 1 1 136380 522 0.00 2019-10-26 18:57:25 2019-10-26 18:57:25 f 1 1 64712 131 0.00 2018-05-23 10:15:28 2018-05-23 10:16:50 t 1 1 136382 522 0.00 2019-10-26 18:56:25 2019-10-26 18:58:06 t 1 1 136384 611 0.00 2019-10-26 18:50:02 2019-10-26 18:58:51 t 1 1 136388 522 0.00 2019-10-26 18:59:09 2019-10-26 19:00:36 t 1 1 136390 532 0.00 2019-10-26 18:38:36 2019-10-26 19:01:15 t 1 1 136394 522 0.00 2019-10-26 19:02:29 2019-10-26 19:02:39 t 1 1 136395 562 0.00 2019-10-26 19:03:26 2019-10-26 19:03:53 t 1 1 136396 512 0.00 2019-10-26 19:02:29 2019-10-26 19:04:25 t 1 1 136398 522 0.00 2019-10-26 19:05:09 2019-10-26 19:05:18 t 1 1 136401 532 0.00 2019-10-26 19:01:14 2019-10-26 19:06:04 t 1 1 136403 581 0.00 2019-10-26 18:44:57 2019-10-26 19:06:28 t 1 1 136407 611 0.00 2019-10-26 19:05:58 2019-10-26 19:07:12 t 1 1 136411 481 0.00 2019-10-26 17:48:13 2019-10-26 19:09:38 t 1 1 136413 556 0.00 2019-10-26 18:04:28 2019-10-26 19:09:42 t 1 1 136417 581 0.00 2019-10-26 19:11:33 2019-10-26 19:12:16 t 1 1 136419 581 0.00 2019-10-26 19:12:24 2019-10-26 19:12:46 t 1 1 136420 538 0.00 2019-10-26 18:35:37 2019-10-26 19:13:02 t 1 1 136424 585 0.00 2019-10-26 19:12:41 2019-10-26 19:14:47 t 1 1 136430 570 0.00 2019-10-26 19:14:18 2019-10-26 19:17:35 t 1 1 136431 581 0.00 2019-10-26 19:14:50 2019-10-26 19:18:23 t 1 1 136435 562 0.00 2019-10-26 19:19:40 2019-10-26 19:20:01 t 1 1 136437 615 0.00 2019-10-26 19:19:13 2019-10-26 19:20:14 t 1 1 136440 522 0.00 2019-10-26 19:20:35 2019-10-26 19:20:38 t 1 1 136442 581 0.00 2019-10-26 19:20:31 2019-10-26 19:21:09 t 1 1 136444 581 0.00 2019-10-26 19:21:16 2019-10-26 19:21:30 t 1 1 136445 522 0.00 2019-10-26 19:21:34 2019-10-26 19:21:44 t 1 1 136447 587 0.00 2019-10-26 19:20:26 2019-10-26 19:21:50 t 1 1 136448 581 0.00 2019-10-26 19:21:57 2019-10-26 19:22:08 t 1 1 136449 587 0.00 2019-10-26 19:22:36 2019-10-26 19:22:47 t 1 1 136454 514 0.00 2019-10-26 19:12:26 2019-10-26 19:23:51 t 1 1 136455 587 0.00 2019-10-26 19:23:51 2019-10-26 19:23:59 t 1 1 136461 581 0.00 2019-10-26 19:24:37 2019-10-26 19:25:54 t 1 1 136464 581 0.00 2019-10-26 19:26:19 2019-10-26 19:26:30 t 1 1 136468 587 0.00 2019-10-26 19:25:08 2019-10-26 19:27:06 t 1 1 136469 587 0.00 2019-10-26 19:25:51 2019-10-26 19:28:06 t 1 1 136470 514 0.00 2019-10-26 19:23:51 2019-10-26 19:29:12 t 1 1 136473 578 0.00 2019-10-26 19:25:28 2019-10-26 19:31:34 t 1 1 136475 585 0.00 2019-10-26 19:30:08 2019-10-26 19:31:51 t 1 1 136480 581 0.00 2019-10-26 19:33:36 2019-10-26 19:33:48 t 1 1 136486 581 0.00 2019-10-26 19:34:53 2019-10-26 19:35:04 t 1 1 136490 581 0.00 2019-10-26 19:35:11 2019-10-26 19:35:43 t 1 1 136495 581 0.00 2019-10-26 19:38:11 2019-10-26 19:38:29 t 1 1 136502 581 0.00 2019-10-26 19:39:59 2019-10-26 19:40:17 t 1 1 136506 581 0.00 2019-10-26 19:41:07 2019-10-26 19:41:24 t 1 1 136508 514 0.00 2019-10-26 19:29:12 2019-10-26 19:41:45 t 1 1 136510 581 0.00 2019-10-26 19:42:06 2019-10-26 19:42:21 t 1 1 136514 581 0.00 2019-10-26 19:43:11 2019-10-26 19:43:25 t 1 1 136515 581 0.00 2019-10-26 19:43:30 2019-10-26 19:43:46 t 1 1 136521 581 0.00 2019-10-26 19:44:37 2019-10-26 19:44:51 t 1 1 136523 615 0.00 2019-10-26 19:43:37 2019-10-26 19:45:18 t 1 1 136528 581 0.00 2019-10-26 19:45:56 2019-10-26 19:46:09 t 1 1 136529 581 0.00 2019-10-26 19:46:14 2019-10-26 19:46:27 t 1 1 136533 562 0.00 2019-10-26 19:47:20 2019-10-26 19:47:53 t 1 1 136535 544 0.00 2019-10-26 19:50:05 2019-10-26 19:50:10 t 1 2 136537 558 0.00 2019-10-26 19:50:43 2019-10-26 19:52:06 t 1 1 136542 591 0.00 2019-10-26 19:56:08 2019-10-26 19:59:40 t 1 1 136544 562 0.00 2019-10-26 20:00:31 2019-10-26 20:01:01 t 1 1 136551 522 0.00 2019-10-26 20:04:13 2019-10-26 20:04:23 t 1 1 136554 613 0.00 2019-10-26 20:01:18 2019-10-26 20:07:07 t 1 1 136557 522 0.00 2019-10-26 20:07:16 2019-10-26 20:09:06 t 1 1 136560 514 0.00 2019-10-26 20:04:04 2019-10-26 20:10:17 t 1 1 136570 562 0.00 2019-10-26 20:17:53 2019-10-26 20:18:02 t 1 1 136576 611 0.00 2019-10-26 20:21:04 2019-10-26 20:22:48 t 1 1 136583 613 0.00 2019-10-26 20:21:55 2019-10-26 20:28:57 t 1 1 136591 220 0.00 2019-10-26 20:34:06 2019-10-26 20:37:06 t 1 2 136592 587 0.00 2019-10-26 20:26:00 2019-10-26 20:38:04 t 1 1 136595 613 0.00 2019-10-26 20:33:10 2019-10-26 20:42:02 t 1 1 136604 562 0.00 2019-10-26 20:53:43 2019-10-26 20:55:07 t 1 1 136606 587 0.00 2019-10-26 20:38:23 2019-10-26 20:55:53 t 1 1 136609 613 0.00 2019-10-26 21:00:08 2019-10-26 21:00:46 t 1 1 136612 516 0.00 2019-10-26 20:17:49 2019-10-26 21:04:27 t 1 1 136615 445 0.00 2019-10-26 20:09:49 2019-10-26 21:07:40 t 1 1 136617 613 0.00 2019-10-26 21:05:15 2019-10-26 21:09:21 t 1 1 136621 613 0.00 2019-10-26 21:12:44 2019-10-26 21:13:52 t 1 1 136624 613 0.00 2019-10-26 21:14:45 2019-10-26 21:20:31 t 1 1 136630 485 0.00 2019-10-26 21:22:54 2019-10-26 21:25:22 t 1 1 136631 422 0.00 2019-10-26 21:25:23 2019-10-26 21:29:03 t 1 1 136635 613 0.00 2019-10-26 21:34:59 2019-10-26 21:34:59 f 1 1 136640 422 0.00 2019-10-26 21:33:53 2019-10-26 21:36:41 t 1 1 136645 562 0.00 2019-10-26 21:19:27 2019-10-26 21:44:58 t 1 1 136648 445 0.00 2019-10-26 21:24:37 2019-10-26 21:49:02 t 1 1 136651 613 0.00 2019-10-26 21:45:55 2019-10-26 21:51:00 t 1 1 136654 591 0.00 2019-10-26 21:50:33 2019-10-26 21:51:30 t 1 1 136658 613 0.00 2019-10-26 21:52:54 2019-10-26 21:53:56 t 1 1 136659 581 0.00 2019-10-26 21:24:10 2019-10-26 21:56:34 t 1 1 136660 327 0.00 2019-10-26 21:55:11 2019-10-26 21:57:22 t 1 1 136661 485 0.00 2019-10-26 21:53:37 2019-10-26 21:59:40 t 1 1 136662 327 0.00 2019-10-26 21:58:18 2019-10-26 22:03:47 t 1 1 136664 430 0.00 2019-10-26 22:06:07 2019-10-26 22:06:25 t 1 1 136665 327 0.00 2019-10-26 22:04:18 2019-10-26 22:06:53 t 1 1 136669 361 0.00 2019-10-26 19:40:03 2019-10-26 22:10:30 t 1 2 136371 445 0.00 2019-10-26 18:51:13 2019-10-26 18:52:14 t 1 1 136374 591 0.00 2019-10-26 18:29:28 2019-10-26 18:54:07 t 1 1 136377 516 0.00 2019-10-26 18:52:31 2019-10-26 18:55:57 t 1 1 136378 522 0.00 2019-10-26 18:56:12 2019-10-26 18:56:13 t 1 1 136383 514 0.00 2019-10-26 18:41:25 2019-10-26 18:58:30 t 1 1 136387 562 0.00 2019-10-26 18:59:03 2019-10-26 19:00:31 t 1 1 136389 522 0.00 2019-10-26 19:01:13 2019-10-26 19:01:14 t 1 1 136392 562 0.00 2019-10-26 19:01:03 2019-10-26 19:01:33 t 1 1 136393 514 0.00 2019-10-26 18:58:30 2019-10-26 19:02:21 t 1 1 136397 522 0.00 2019-10-26 19:04:16 2019-10-26 19:04:40 t 1 1 136400 611 0.00 2019-10-26 18:58:50 2019-10-26 19:05:39 t 1 1 136402 562 0.00 2019-10-26 19:06:04 2019-10-26 19:06:27 t 1 1 136404 514 0.00 2019-10-26 19:02:21 2019-10-26 19:06:39 t 1 1 136406 587 0.00 2019-10-26 19:01:40 2019-10-26 19:06:53 t 1 1 136408 581 0.00 2019-10-26 19:06:55 2019-10-26 19:08:37 t 1 1 136414 522 0.00 2019-10-26 19:10:17 2019-10-26 19:10:21 t 1 1 136415 581 0.00 2019-10-26 19:09:22 2019-10-26 19:11:26 t 1 1 136418 514 0.00 2019-10-26 19:06:39 2019-10-26 19:12:26 t 1 1 136421 528 0.00 2019-10-26 18:50:36 2019-10-26 19:13:54 t 1 1 136423 587 0.00 2019-10-26 19:07:02 2019-10-26 19:14:44 t 1 1 136425 562 0.00 2019-10-26 19:14:23 2019-10-26 19:14:51 t 1 1 136427 587 0.00 2019-10-26 19:14:58 2019-10-26 19:15:45 t 1 1 136432 581 0.00 2019-10-26 19:18:31 2019-10-26 19:18:42 t 1 1 136433 581 0.00 2019-10-26 19:18:49 2019-10-26 19:19:10 t 1 1 136434 581 0.00 2019-10-26 19:19:18 2019-10-26 19:19:29 t 1 1 136443 615 0.00 2019-10-26 19:20:13 2019-10-26 19:21:22 t 1 1 136450 581 0.00 2019-10-26 19:22:15 2019-10-26 19:22:57 t 1 1 136451 587 0.00 2019-10-26 19:23:08 2019-10-26 19:23:11 t 1 1 136452 587 0.00 2019-10-26 19:23:16 2019-10-26 19:23:23 t 1 1 136456 581 0.00 2019-10-26 19:23:04 2019-10-26 19:24:30 t 1 1 136458 578 0.00 2019-10-26 17:05:52 2019-10-26 19:25:28 t 1 1 136459 587 0.00 2019-10-26 19:25:34 2019-10-26 19:25:38 t 1 1 136463 581 0.00 2019-10-26 19:26:01 2019-10-26 19:26:12 t 1 1 136465 562 0.00 2019-10-26 19:26:13 2019-10-26 19:26:52 t 1 1 136467 456 0.00 2019-10-26 19:21:50 2019-10-26 19:27:06 t 1 1 136471 562 0.00 2019-10-26 19:29:07 2019-10-26 19:29:13 t 1 1 136474 581 0.00 2019-10-26 19:27:09 2019-10-26 19:31:46 t 1 1 136477 562 0.00 2019-10-26 19:32:19 2019-10-26 19:32:51 t 1 1 136481 611 0.00 2019-10-26 19:30:19 2019-10-26 19:33:57 t 1 1 136484 581 0.00 2019-10-26 19:34:14 2019-10-26 19:34:27 t 1 1 136489 361 0.00 2019-10-26 19:18:08 2019-10-26 19:35:28 t 1 2 136496 581 0.00 2019-10-26 19:38:35 2019-10-26 19:38:49 t 1 1 136497 581 0.00 2019-10-26 19:38:54 2019-10-26 19:39:12 t 1 1 136498 581 0.00 2019-10-26 19:39:17 2019-10-26 19:39:33 t 1 1 136500 581 0.00 2019-10-26 19:39:38 2019-10-26 19:39:54 t 1 1 136501 522 0.00 2019-10-26 19:40:07 2019-10-26 19:40:08 t 1 1 136503 570 0.00 2019-10-26 19:23:40 2019-10-26 19:40:31 t 1 1 136507 581 0.00 2019-10-26 19:41:29 2019-10-26 19:41:42 t 1 1 136511 570 0.00 2019-10-26 19:40:31 2019-10-26 19:42:22 t 1 1 136517 581 0.00 2019-10-26 19:43:51 2019-10-26 19:44:08 t 1 1 136518 581 0.00 2019-10-26 19:44:13 2019-10-26 19:44:32 t 1 1 136520 522 0.00 2019-10-26 19:44:31 2019-10-26 19:44:49 t 1 1 136522 522 0.00 2019-10-26 19:45:12 2019-10-26 19:45:12 t 1 1 136525 581 0.00 2019-10-26 19:44:57 2019-10-26 19:45:29 t 1 1 136526 581 0.00 2019-10-26 19:45:34 2019-10-26 19:45:50 t 1 1 136527 562 0.00 2019-10-26 19:45:43 2019-10-26 19:46:05 t 1 1 136530 522 0.00 2019-10-26 19:46:17 2019-10-26 19:46:41 t 1 1 136531 445 0.00 2019-10-26 18:51:31 2019-10-26 19:47:21 t 1 1 136538 518 0.00 2019-10-26 17:29:37 2019-10-26 19:54:42 t 1 2 136539 522 0.00 2019-10-26 19:52:50 2019-10-26 19:55:06 t 1 1 136540 613 0.00 2019-10-26 19:51:30 2019-10-26 19:55:53 t 1 1 136543 613 0.00 2019-10-26 19:55:53 2019-10-26 20:01:01 t 1 1 136545 522 0.00 2019-10-26 19:55:06 2019-10-26 20:01:30 t 1 1 136547 522 0.00 2019-10-26 20:01:58 2019-10-26 20:02:04 t 1 1 136548 544 0.00 2019-10-26 18:47:53 2019-10-26 20:02:58 t 1 2 136549 514 0.00 2019-10-26 19:41:45 2019-10-26 20:04:04 t 1 1 136553 522 0.00 2019-10-26 20:06:10 2019-10-26 20:07:03 t 1 1 136555 522 0.00 2019-10-26 20:07:36 2019-10-26 20:07:36 f 1 1 136556 522 0.00 2019-10-26 20:07:29 2019-10-26 20:09:06 t 1 1 136559 445 0.00 2019-10-26 19:47:28 2019-10-26 20:09:48 t 1 1 136562 585 0.00 2019-10-26 20:08:27 2019-10-26 20:10:34 t 1 1 136563 562 0.00 2019-10-26 20:11:09 2019-10-26 20:11:18 t 1 1 136566 562 0.00 2019-10-26 20:14:23 2019-10-26 20:14:48 t 1 1 136571 611 0.00 2019-10-26 20:03:48 2019-10-26 20:18:54 t 1 1 136572 562 0.00 2019-10-26 20:19:22 2019-10-26 20:20:35 t 1 1 136573 611 0.00 2019-10-26 20:18:54 2019-10-26 20:21:07 t 1 1 136574 613 0.00 2019-10-26 20:16:50 2019-10-26 20:21:55 t 1 1 136578 587 0.00 2019-10-26 20:17:32 2019-10-26 20:24:52 t 1 1 136579 562 0.00 2019-10-26 20:22:20 2019-10-26 20:25:19 t 1 1 136584 562 0.00 2019-10-26 20:28:07 2019-10-26 20:29:10 t 1 1 136585 581 0.00 2019-10-26 20:14:50 2019-10-26 20:30:10 t 1 1 136586 562 0.00 2019-10-26 20:30:52 2019-10-26 20:31:03 t 1 1 136588 613 0.00 2019-10-26 20:28:56 2019-10-26 20:33:10 t 1 1 136596 538 0.00 2019-10-26 20:41:33 2019-10-26 20:42:47 t 1 1 136597 613 0.00 2019-10-26 20:42:02 2019-10-26 20:43:54 t 1 1 136601 613 0.00 2019-10-26 20:48:10 2019-10-26 20:49:03 t 1 1 136602 562 0.00 2019-10-26 20:51:27 2019-10-26 20:52:12 t 1 1 136608 613 0.00 2019-10-26 20:55:25 2019-10-26 21:00:08 t 1 1 136610 574 0.00 2019-10-26 20:35:14 2019-10-26 21:03:28 t 1 1 136619 562 0.00 2019-10-26 21:11:52 2019-10-26 21:12:00 t 1 1 136623 591 0.00 2019-10-26 20:44:00 2019-10-26 21:15:00 t 1 1 136626 445 0.00 2019-10-26 21:08:50 2019-10-26 21:22:29 t 1 1 136628 445 0.00 2019-10-26 21:22:29 2019-10-26 21:24:07 t 1 1 136632 613 0.00 2019-10-26 21:25:16 2019-10-26 21:30:07 t 1 1 136634 422 0.00 2019-10-26 21:31:07 2019-10-26 21:33:53 t 1 1 136636 613 0.00 2019-10-26 21:35:07 2019-10-26 21:35:07 f 1 1 136638 613 0.00 2019-10-26 21:30:07 2019-10-26 21:35:20 t 1 1 136639 613 0.00 2019-10-26 21:34:36 2019-10-26 21:36:06 t 1 1 136641 422 0.00 2019-10-26 21:36:41 2019-10-26 21:39:37 t 1 1 136644 591 0.00 2019-10-26 21:15:00 2019-10-26 21:44:04 t 1 1 136646 613 0.00 2019-10-26 21:40:03 2019-10-26 21:45:55 t 1 1 136647 516 0.00 2019-10-26 21:22:33 2019-10-26 21:46:32 t 1 1 136649 422 0.00 2019-10-26 21:42:31 2019-10-26 21:49:43 t 1 1 136653 587 0.00 2019-10-26 21:50:11 2019-10-26 21:51:30 t 1 1 136655 587 0.00 2019-10-26 21:49:53 2019-10-26 21:52:06 t 1 1 136667 591 0.00 2019-10-26 21:56:56 2019-10-26 22:08:17 t 1 1 136668 327 0.00 2019-10-26 22:08:37 2019-10-26 22:10:26 t 1 1 136499 562 0.00 2019-10-26 19:39:31 2019-10-26 19:39:51 t 1 1 136504 581 0.00 2019-10-26 19:40:22 2019-10-26 19:40:40 t 1 1 136505 581 0.00 2019-10-26 19:40:45 2019-10-26 19:41:02 t 1 1 136509 581 0.00 2019-10-26 19:41:48 2019-10-26 19:42:01 t 1 1 136512 581 0.00 2019-10-26 19:42:26 2019-10-26 19:42:44 t 1 1 136513 581 0.00 2019-10-26 19:42:49 2019-10-26 19:43:06 t 1 1 136516 562 0.00 2019-10-26 19:43:52 2019-10-26 19:43:58 t 1 1 136519 578 0.00 2019-10-26 19:31:34 2019-10-26 19:44:46 t 1 1 136524 570 0.00 2019-10-26 19:42:21 2019-10-26 19:45:24 t 1 1 136532 581 0.00 2019-10-26 19:46:32 2019-10-26 19:47:44 t 1 1 136534 544 0.00 2019-10-26 19:49:36 2019-10-26 19:49:48 t 1 2 136536 522 0.00 2019-10-26 19:49:51 2019-10-26 19:51:31 t 1 1 136541 562 0.00 2019-10-26 19:54:21 2019-10-26 19:56:01 t 1 1 136546 522 0.00 2019-10-26 20:01:36 2019-10-26 20:01:41 t 1 1 136550 522 0.00 2019-10-26 20:01:46 2019-10-26 20:04:06 t 1 1 136552 522 0.00 2019-10-26 20:04:50 2019-10-26 20:05:28 t 1 1 136558 538 0.00 2019-10-26 19:16:04 2019-10-26 20:09:21 t 1 1 136561 562 0.00 2019-10-26 20:08:05 2019-10-26 20:10:19 t 1 1 136564 562 0.00 2019-10-26 20:13:08 2019-10-26 20:13:50 t 1 1 136565 581 0.00 2019-10-26 19:47:50 2019-10-26 20:14:45 t 1 1 136567 449 0.00 2019-10-26 20:15:07 2019-10-26 20:15:56 t 1 1 136568 613 0.00 2019-10-26 20:07:40 2019-10-26 20:16:27 t 1 1 136569 587 0.00 2019-10-26 20:02:33 2019-10-26 20:17:32 t 1 1 136575 564 0.00 2019-10-26 17:54:06 2019-10-26 20:22:06 t 1 1 136577 395 0.00 2019-10-26 20:12:46 2019-10-26 20:24:07 t 1 2 136580 562 0.00 2019-10-26 20:25:25 2019-10-26 20:26:54 t 1 1 136581 562 0.00 2019-10-26 20:27:29 2019-10-26 20:27:49 t 1 1 136582 449 0.00 2019-10-26 20:15:56 2019-10-26 20:28:34 t 1 1 136587 562 0.00 2019-10-26 20:31:10 2019-10-26 20:31:52 t 1 1 136589 591 0.00 2019-10-26 20:07:27 2019-10-26 20:35:09 t 1 1 136590 615 0.00 2019-10-26 20:26:37 2019-10-26 20:36:48 t 1 1 136593 538 0.00 2019-10-26 20:21:52 2019-10-26 20:38:17 t 1 1 136594 562 0.00 2019-10-26 20:37:26 2019-10-26 20:40:11 t 1 1 136598 562 0.00 2019-10-26 20:45:41 2019-10-26 20:46:14 t 1 1 136599 562 0.00 2019-10-26 20:47:22 2019-10-26 20:47:37 t 1 1 136600 613 0.00 2019-10-26 20:43:53 2019-10-26 20:48:10 t 1 1 136603 512 0.00 2019-10-26 20:48:58 2019-10-26 20:53:41 t 1 1 136605 613 0.00 2019-10-26 20:49:02 2019-10-26 20:55:24 t 1 1 136607 562 0.00 2019-10-26 20:56:26 2019-10-26 20:56:44 t 1 1 136611 556 0.00 2019-10-26 19:34:26 2019-10-26 21:03:53 t 1 1 65085 131 0.00 2018-05-27 18:27:07 2018-05-27 18:28:55 t 1 1 136613 613 0.00 2019-10-26 21:00:51 2019-10-26 21:05:15 t 1 1 136614 562 0.00 2019-10-26 20:56:43 2019-10-26 21:06:16 t 1 1 136616 556 0.00 2019-10-26 21:03:53 2019-10-26 21:09:06 t 1 1 136618 562 0.00 2019-10-26 21:09:32 2019-10-26 21:10:36 t 1 1 136620 613 0.00 2019-10-26 21:09:20 2019-10-26 21:12:44 t 1 1 136622 613 0.00 2019-10-26 21:14:17 2019-10-26 21:14:45 t 1 1 136625 585 0.00 2019-10-26 21:16:43 2019-10-26 21:20:37 t 1 1 136627 485 0.00 2019-10-26 21:05:22 2019-10-26 21:22:54 t 1 1 136629 613 0.00 2019-10-26 21:20:31 2019-10-26 21:25:01 t 1 1 136633 422 0.00 2019-10-26 21:29:03 2019-10-26 21:31:07 t 1 1 136637 613 0.00 2019-10-26 21:35:17 2019-10-26 21:35:17 f 1 1 136642 613 0.00 2019-10-26 21:35:39 2019-10-26 21:40:03 t 1 1 136643 422 0.00 2019-10-26 21:39:37 2019-10-26 21:42:31 t 1 1 136650 587 0.00 2019-10-26 21:49:58 2019-10-26 21:50:05 t 1 1 136652 562 0.00 2019-10-26 21:44:57 2019-10-26 21:51:12 t 1 1 136656 613 0.00 2019-10-26 21:51:00 2019-10-26 21:52:55 t 1 1 136657 538 0.00 2019-10-26 20:44:22 2019-10-26 21:53:31 t 1 1 136663 430 0.00 2019-10-26 21:57:35 2019-10-26 22:06:03 t 1 1 136666 327 0.00 2019-10-26 22:07:05 2019-10-26 22:08:04 t 1 1 136672 485 0.00 2019-10-26 21:59:40 2019-10-26 22:11:55 t 1 1 136673 430 0.00 2019-10-26 22:06:32 2019-10-26 22:12:29 t 1 1 136675 595 0.00 2019-10-26 22:14:41 2019-10-26 22:14:49 t 1 1 136677 591 0.00 2019-10-26 22:14:35 2019-10-26 22:19:53 t 1 1 136683 595 0.00 2019-10-26 22:27:58 2019-10-26 22:28:06 t 1 1 136691 587 0.00 2019-10-26 22:27:07 2019-10-26 22:34:23 t 1 1 136693 595 0.00 2019-10-26 22:28:45 2019-10-26 22:35:19 t 1 1 136695 587 0.00 2019-10-26 22:34:53 2019-10-26 22:35:49 t 1 1 136699 591 0.00 2019-10-26 22:21:36 2019-10-26 22:39:59 t 1 1 136701 327 0.00 2019-10-26 22:39:51 2019-10-26 22:40:20 t 1 1 136705 485 0.00 2019-10-26 22:37:26 2019-10-26 22:45:56 t 1 1 136710 585 0.00 2019-10-26 22:46:03 2019-10-26 22:51:04 t 1 1 136712 587 0.00 2019-10-26 22:51:10 2019-10-26 22:52:57 t 1 1 136714 430 0.00 2019-10-26 22:50:15 2019-10-26 22:54:03 t 1 1 136715 595 0.00 2019-10-26 22:38:10 2019-10-26 22:58:49 t 1 1 136716 595 0.00 2019-10-26 23:01:33 2019-10-26 23:01:41 t 1 1 136727 485 0.00 2019-10-26 23:07:11 2019-10-26 23:10:18 t 1 1 136729 587 0.00 2019-10-26 23:03:32 2019-10-26 23:13:26 t 1 1 136730 587 0.00 2019-10-26 23:13:39 2019-10-26 23:13:43 t 1 1 136737 558 0.00 2019-10-26 23:10:33 2019-10-26 23:22:21 t 1 1 136738 558 0.00 2019-10-26 23:22:20 2019-10-26 23:24:55 t 1 1 136746 587 0.00 2019-10-26 23:25:14 2019-10-26 23:37:21 t 1 1 136748 566 0.00 2019-10-26 23:18:08 2019-10-26 23:38:41 t 1 1 136749 379 0.00 2019-10-26 23:30:40 2019-10-26 23:38:54 t 1 1 136751 595 0.00 2019-10-26 23:38:35 2019-10-26 23:40:53 t 1 1 136753 445 0.00 2019-10-26 21:49:15 2019-10-26 23:41:52 t 1 1 136754 595 0.00 2019-10-26 23:42:30 2019-10-26 23:42:34 t 1 1 136755 566 0.00 2019-10-26 23:38:41 2019-10-26 23:44:42 t 1 1 136757 585 0.00 2019-10-26 23:43:42 2019-10-26 23:46:40 t 1 1 136762 595 0.00 2019-10-26 23:53:09 2019-10-26 23:53:34 t 1 1 136766 562 0.00 2019-10-26 23:57:25 2019-10-26 23:58:33 t 1 1 136774 522 0.00 2019-10-27 00:03:25 2019-10-27 00:05:42 t 1 1 136777 522 0.00 2019-10-27 00:06:10 2019-10-27 00:06:18 t 1 1 136782 327 0.00 2019-10-27 00:04:07 2019-10-27 00:09:48 t 1 1 136784 587 0.00 2019-10-27 00:11:47 2019-10-27 00:14:57 t 1 1 136786 522 0.00 2019-10-27 00:08:17 2019-10-27 00:15:36 t 1 1 136788 585 0.00 2019-10-27 00:14:58 2019-10-27 00:17:13 t 1 1 136792 522 0.00 2019-10-27 00:15:36 2019-10-27 00:24:45 t 1 1 136795 522 0.00 2019-10-27 00:28:13 2019-10-27 00:28:29 t 1 1 136796 311 0.00 2019-10-27 00:28:21 2019-10-27 00:29:44 t 1 2 136801 587 0.00 2019-10-27 00:15:21 2019-10-27 00:32:10 t 1 1 136804 562 0.00 2019-10-27 00:36:23 2019-10-27 00:36:46 t 1 1 136806 522 0.00 2019-10-27 00:41:14 2019-10-27 00:42:15 t 1 1 136807 558 0.00 2019-10-27 00:32:15 2019-10-27 00:46:17 t 1 1 136810 522 0.00 2019-10-27 00:46:22 2019-10-27 00:48:06 t 1 1 136811 522 0.00 2019-10-27 00:51:25 2019-10-27 00:51:34 t 1 1 136812 587 0.00 2019-10-27 00:37:07 2019-10-27 00:53:01 t 1 1 136670 611 0.00 2019-10-26 21:46:13 2019-10-26 22:11:03 t 1 1 136674 430 0.00 2019-10-26 22:12:33 2019-10-26 22:13:21 t 1 1 136676 220 0.00 2019-10-26 22:18:27 2019-10-26 22:19:18 t 1 1 136679 220 0.00 2019-10-26 22:12:43 2019-10-26 22:22:07 t 1 2 136680 566 0.00 2019-10-26 22:06:45 2019-10-26 22:24:54 t 1 1 136684 538 0.00 2019-10-26 21:53:31 2019-10-26 22:28:26 t 1 1 136688 327 0.00 2019-10-26 22:31:46 2019-10-26 22:32:55 t 1 1 136689 528 0.00 2019-10-26 22:08:49 2019-10-26 22:33:18 t 1 1 136692 327 0.00 2019-10-26 22:33:02 2019-10-26 22:35:06 t 1 1 136694 485 0.00 2019-10-26 22:31:27 2019-10-26 22:35:45 t 1 1 136696 327 0.00 2019-10-26 22:33:47 2019-10-26 22:35:52 t 1 1 136697 528 0.00 2019-10-26 22:35:11 2019-10-26 22:36:21 t 1 1 136700 566 0.00 2019-10-26 22:24:54 2019-10-26 22:40:05 t 1 1 136702 327 0.00 2019-10-26 22:40:32 2019-10-26 22:42:06 t 1 1 136704 430 0.00 2019-10-26 22:33:42 2019-10-26 22:43:09 t 1 1 136707 481 0.00 2019-10-26 19:09:53 2019-10-26 22:46:27 t 1 1 136719 327 0.00 2019-10-26 22:52:02 2019-10-26 23:03:41 t 1 1 136723 566 0.00 2019-10-26 22:51:39 2019-10-26 23:07:00 t 1 1 136724 595 0.00 2019-10-26 23:06:56 2019-10-26 23:07:19 t 1 1 136728 595 0.00 2019-10-26 23:09:57 2019-10-26 23:12:34 t 1 1 136733 327 0.00 2019-10-26 23:17:13 2019-10-26 23:18:11 t 1 1 65041 131 0.00 2018-05-27 12:41:55 2018-05-27 12:43:55 t 1 1 136739 587 0.00 2019-10-26 23:19:25 2019-10-26 23:24:55 t 1 1 136740 611 0.00 2019-10-26 23:25:09 2019-10-26 23:26:45 t 1 1 136741 595 0.00 2019-10-26 23:19:30 2019-10-26 23:27:19 t 1 1 136742 379 0.00 2019-10-26 20:19:24 2019-10-26 23:30:40 t 1 1 136743 595 0.00 2019-10-26 23:32:16 2019-10-26 23:33:17 t 1 1 136744 595 0.00 2019-10-26 23:33:25 2019-10-26 23:34:29 t 1 1 136747 595 0.00 2019-10-26 23:37:22 2019-10-26 23:38:26 t 1 1 136761 595 0.00 2019-10-26 23:52:45 2019-10-26 23:53:00 t 1 1 136763 585 0.00 2019-10-26 23:51:34 2019-10-26 23:53:51 t 1 1 136764 595 0.00 2019-10-26 23:53:59 2019-10-26 23:56:32 t 1 1 136768 587 0.00 2019-10-26 23:37:21 2019-10-26 23:59:39 t 1 1 136773 327 0.00 2019-10-26 23:28:07 2019-10-27 00:04:07 t 1 1 136776 562 0.00 2019-10-26 23:59:20 2019-10-27 00:06:03 t 1 1 136780 566 0.00 2019-10-27 00:01:13 2019-10-27 00:08:51 t 1 1 136781 587 0.00 2019-10-27 00:08:02 2019-10-27 00:09:28 t 1 1 136783 327 0.00 2019-10-27 00:09:45 2019-10-27 00:10:50 t 1 1 136785 585 0.00 2019-10-27 00:14:16 2019-10-27 00:14:59 t 1 1 136787 562 0.00 2019-10-27 00:16:17 2019-10-27 00:16:41 t 1 1 136789 566 0.00 2019-10-27 00:08:51 2019-10-27 00:17:26 t 1 1 136794 562 0.00 2019-10-27 00:25:40 2019-10-27 00:25:58 t 1 1 136797 566 0.00 2019-10-27 00:17:26 2019-10-27 00:29:54 t 1 1 136799 522 0.00 2019-10-27 00:30:09 2019-10-27 00:30:19 t 1 1 136800 522 0.00 2019-10-27 00:30:31 2019-10-27 00:31:11 t 1 1 136803 522 0.00 2019-10-27 00:36:10 2019-10-27 00:36:13 t 1 1 136808 522 0.00 2019-10-27 00:46:28 2019-10-27 00:46:30 t 1 1 136809 562 0.00 2019-10-27 00:47:11 2019-10-27 00:47:38 t 1 1 136819 522 0.00 2019-10-27 01:01:50 2019-10-27 01:01:53 t 1 1 136822 522 0.00 2019-10-27 01:06:52 2019-10-27 01:06:54 t 1 1 136831 522 0.00 2019-10-27 01:27:06 2019-10-27 01:27:08 t 1 1 136834 562 0.00 2019-10-27 01:27:42 2019-10-27 01:27:56 t 1 1 136837 522 0.00 2019-10-27 01:34:36 2019-10-27 01:34:43 t 1 1 136842 562 0.00 2019-10-27 01:38:28 2019-10-27 01:38:38 t 1 1 136844 609 0.00 2019-10-27 01:37:09 2019-10-27 01:40:45 t 1 1 136848 220 0.00 2019-10-27 01:43:00 2019-10-27 01:47:28 t 1 1 136851 609 0.00 2019-10-27 01:40:45 2019-10-27 01:52:56 t 1 1 136852 587 0.00 2019-10-27 01:51:23 2019-10-27 01:53:45 t 1 1 136857 562 0.00 2019-10-27 02:00:03 2019-10-27 02:00:12 t 1 1 136860 522 0.00 2019-10-27 02:05:09 2019-10-27 02:05:11 t 1 1 136866 522 0.00 2019-10-27 02:15:06 2019-10-27 02:15:09 t 1 1 136869 522 0.00 2019-10-27 02:25:20 2019-10-27 02:25:28 t 1 1 136871 587 0.00 2019-10-27 02:29:08 2019-10-27 02:31:21 t 1 1 136876 522 0.00 2019-10-27 02:40:41 2019-10-27 02:40:43 t 1 1 136879 522 0.00 2019-10-27 02:45:42 2019-10-27 02:45:44 t 1 1 136882 562 0.00 2019-10-27 02:53:43 2019-10-27 02:54:02 t 1 1 136885 522 0.00 2019-10-27 03:00:56 2019-10-27 03:00:59 t 1 1 136888 522 0.00 2019-10-27 03:06:15 2019-10-27 03:06:20 t 1 1 136889 522 0.00 2019-10-27 03:11:04 2019-10-27 03:12:06 t 1 1 136891 522 0.00 2019-10-27 03:16:07 2019-10-27 03:16:22 t 1 1 136897 522 0.00 2019-10-27 03:33:42 2019-10-27 03:33:45 t 1 1 136900 522 0.00 2019-10-27 03:34:38 2019-10-27 03:35:02 t 1 1 136901 522 0.00 2019-10-27 03:36:34 2019-10-27 03:36:35 t 1 1 136902 522 0.00 2019-10-27 03:37:43 2019-10-27 03:37:48 t 1 1 136907 522 0.00 2019-10-27 03:41:42 2019-10-27 03:41:45 t 1 1 136909 562 0.00 2019-10-27 03:42:58 2019-10-27 03:43:22 t 1 1 136910 522 0.00 2019-10-27 03:44:44 2019-10-27 03:44:47 t 1 1 136914 522 0.00 2019-10-27 03:48:45 2019-10-27 03:49:01 t 1 1 136917 522 0.00 2019-10-27 03:53:48 2019-10-27 03:53:51 t 1 1 136919 522 0.00 2019-10-27 03:54:57 2019-10-27 03:54:58 t 1 1 136921 522 0.00 2019-10-27 03:56:47 2019-10-27 03:56:50 t 1 1 136925 522 0.00 2019-10-27 04:00:53 2019-10-27 04:00:56 t 1 1 136926 522 0.00 2019-10-27 04:01:49 2019-10-27 04:01:51 t 1 1 136930 361 0.00 2019-10-27 03:55:29 2019-10-27 04:05:50 t 1 2 136931 522 0.00 2019-10-27 04:06:51 2019-10-27 04:06:53 t 1 1 136932 522 0.00 2019-10-27 04:07:04 2019-10-27 04:07:07 t 1 1 136934 522 0.00 2019-10-27 04:09:59 2019-10-27 04:10:02 t 1 1 136937 522 0.00 2019-10-27 04:13:12 2019-10-27 04:13:24 t 1 1 136941 522 0.00 2019-10-27 04:18:05 2019-10-27 04:18:08 t 1 1 136943 522 0.00 2019-10-27 04:20:05 2019-10-27 04:20:18 t 1 1 136944 522 0.00 2019-10-27 04:21:07 2019-10-27 04:21:08 t 1 1 136950 522 0.00 2019-10-27 04:24:18 2019-10-27 04:26:33 t 1 1 136953 522 0.00 2019-10-27 04:30:10 2019-10-27 04:30:40 t 1 1 136954 522 0.00 2019-10-27 04:29:21 2019-10-27 04:31:07 t 1 1 136959 522 0.00 2019-10-27 04:33:03 2019-10-27 04:36:45 t 1 1 136960 522 0.00 2019-10-27 04:37:19 2019-10-27 04:37:22 t 1 1 136962 522 0.00 2019-10-27 04:39:59 2019-10-27 04:40:02 t 1 1 136964 562 0.00 2019-10-27 04:47:05 2019-10-27 04:47:19 t 1 1 136969 522 0.00 2019-10-27 04:52:32 2019-10-27 04:52:34 t 1 1 136974 522 0.00 2019-10-27 04:57:33 2019-10-27 04:57:39 t 1 1 136975 562 0.00 2019-10-27 04:57:51 2019-10-27 04:58:04 t 1 1 136976 522 0.00 2019-10-27 04:59:33 2019-10-27 04:59:39 t 1 1 136979 522 0.00 2019-10-27 05:00:59 2019-10-27 05:01:01 t 1 1 136986 522 0.00 2019-10-27 05:05:44 2019-10-27 05:07:07 t 1 1 136990 522 0.00 2019-10-27 05:09:35 2019-10-27 05:09:38 t 1 1 137002 522 0.00 2019-10-27 05:19:44 2019-10-27 05:19:45 t 1 1 137004 522 0.00 2019-10-27 05:22:53 2019-10-27 05:23:07 t 1 1 136671 595 0.00 2019-10-26 22:05:59 2019-10-26 22:11:32 t 1 1 136678 327 0.00 2019-10-26 22:19:51 2019-10-26 22:21:50 t 1 1 136681 595 0.00 2019-10-26 22:16:02 2019-10-26 22:25:49 t 1 1 136682 587 0.00 2019-10-26 22:16:59 2019-10-26 22:27:07 t 1 1 136685 485 0.00 2019-10-26 22:11:55 2019-10-26 22:29:57 t 1 1 136686 538 0.00 2019-10-26 22:28:55 2019-10-26 22:30:22 t 1 1 136687 538 0.00 2019-10-26 22:30:26 2019-10-26 22:32:53 t 1 1 136690 430 0.00 2019-10-26 22:13:28 2019-10-26 22:33:42 t 1 1 136698 585 0.00 2019-10-26 22:35:45 2019-10-26 22:37:44 t 1 1 136703 587 0.00 2019-10-26 22:36:08 2019-10-26 22:42:56 t 1 1 136706 591 0.00 2019-10-26 22:44:37 2019-10-26 22:46:03 t 1 1 136708 587 0.00 2019-10-26 22:45:13 2019-10-26 22:46:30 t 1 1 136709 430 0.00 2019-10-26 22:43:09 2019-10-26 22:50:15 t 1 1 136711 566 0.00 2019-10-26 22:40:05 2019-10-26 22:51:39 t 1 1 136713 485 0.00 2019-10-26 22:50:19 2019-10-26 22:54:01 t 1 1 136717 587 0.00 2019-10-26 22:53:16 2019-10-26 23:02:56 t 1 1 136718 587 0.00 2019-10-26 23:03:09 2019-10-26 23:03:18 t 1 1 136720 597 0.00 2019-10-26 22:53:06 2019-10-26 23:05:12 t 1 1 136721 595 0.00 2019-10-26 23:06:37 2019-10-26 23:06:47 t 1 1 136722 528 0.00 2019-10-26 22:37:29 2019-10-26 23:06:58 t 1 1 136725 508 0.00 2019-10-26 22:45:51 2019-10-26 23:07:47 t 1 2 136726 528 0.00 2019-10-26 23:06:58 2019-10-26 23:09:17 t 1 1 136731 327 0.00 2019-10-26 23:13:36 2019-10-26 23:15:33 t 1 1 136732 566 0.00 2019-10-26 23:07:00 2019-10-26 23:18:08 t 1 1 136734 587 0.00 2019-10-26 23:13:47 2019-10-26 23:18:32 t 1 1 136735 595 0.00 2019-10-26 23:16:50 2019-10-26 23:19:19 t 1 1 136736 325 0.00 2019-10-26 20:42:16 2019-10-26 23:22:21 t 1 2 136745 595 0.00 2019-10-26 23:34:37 2019-10-26 23:35:34 t 1 1 136750 379 0.00 2019-10-26 23:38:54 2019-10-26 23:40:46 t 1 1 136752 585 0.00 2019-10-26 23:36:32 2019-10-26 23:41:49 t 1 1 136756 562 0.00 2019-10-26 23:38:49 2019-10-26 23:46:03 t 1 1 136758 564 0.00 2019-10-26 20:23:44 2019-10-26 23:47:27 t 1 1 136759 595 0.00 2019-10-26 23:43:15 2019-10-26 23:48:38 t 1 1 136760 595 0.00 2019-10-26 23:49:05 2019-10-26 23:49:21 t 1 1 136765 558 0.00 2019-10-26 23:27:06 2019-10-26 23:58:28 t 1 1 136767 456 0.00 2019-10-26 23:42:40 2019-10-26 23:59:10 t 1 1 136769 566 0.00 2019-10-26 23:44:42 2019-10-27 00:01:13 t 1 1 136770 220 0.00 2019-10-26 23:22:06 2019-10-27 00:01:22 t 1 1 136771 587 0.00 2019-10-26 23:59:39 2019-10-27 00:02:34 t 1 1 136772 220 0.00 2019-10-27 00:01:22 2019-10-27 00:03:33 t 1 1 136775 522 0.00 2019-10-27 00:05:47 2019-10-27 00:05:49 t 1 1 136778 587 0.00 2019-10-27 00:05:28 2019-10-27 00:07:37 t 1 1 65152 131 0.00 2018-05-28 15:02:20 2018-05-28 15:03:55 t 1 1 136779 483 0.00 2019-10-26 20:39:37 2019-10-27 00:08:04 t 1 1 136790 607 0.00 2019-10-26 23:18:36 2019-10-27 00:20:19 t 1 1 136791 327 0.00 2019-10-27 00:10:08 2019-10-27 00:21:24 t 1 1 136793 522 0.00 2019-10-27 00:25:51 2019-10-27 00:25:55 t 1 1 136798 522 0.00 2019-10-27 00:28:46 2019-10-27 00:30:06 t 1 1 136802 311 0.00 2019-10-27 00:32:13 2019-10-27 00:34:50 t 1 2 136805 566 0.00 2019-10-27 00:29:54 2019-10-27 00:41:12 t 1 1 136814 522 0.00 2019-10-27 00:55:00 2019-10-27 00:55:09 t 1 1 136815 522 0.00 2019-10-27 00:56:42 2019-10-27 00:56:48 t 1 1 136816 591 0.00 2019-10-27 00:56:57 2019-10-27 00:57:50 t 1 1 136817 562 0.00 2019-10-27 00:57:55 2019-10-27 00:58:19 t 1 1 136821 562 0.00 2019-10-27 01:06:07 2019-10-27 01:06:31 t 1 1 136823 587 0.00 2019-10-27 00:53:12 2019-10-27 01:11:15 t 1 1 136824 522 0.00 2019-10-27 01:11:54 2019-10-27 01:11:56 t 1 1 136825 607 0.00 2019-10-27 00:59:57 2019-10-27 01:13:42 t 1 1 136827 587 0.00 2019-10-27 01:11:49 2019-10-27 01:15:18 t 1 1 136829 562 0.00 2019-10-27 01:17:04 2019-10-27 01:17:11 t 1 1 136830 522 0.00 2019-10-27 01:22:02 2019-10-27 01:22:05 t 1 1 136832 566 0.00 2019-10-27 01:15:15 2019-10-27 01:27:10 t 1 1 136835 522 0.00 2019-10-27 01:29:25 2019-10-27 01:29:34 t 1 1 136839 574 0.00 2019-10-27 01:06:27 2019-10-27 01:36:38 t 1 1 136847 587 0.00 2019-10-27 01:36:42 2019-10-27 01:46:30 t 1 1 136849 562 0.00 2019-10-27 01:48:59 2019-10-27 01:49:27 t 1 1 136859 566 0.00 2019-10-27 01:27:10 2019-10-27 02:04:10 t 1 1 136862 564 0.00 2019-10-26 23:47:27 2019-10-27 02:07:06 t 1 1 136863 538 0.00 2019-10-26 22:32:54 2019-10-27 02:09:53 t 1 1 136865 562 0.00 2019-10-27 02:10:34 2019-10-27 02:10:54 t 1 1 136870 522 0.00 2019-10-27 02:30:31 2019-10-27 02:30:33 t 1 1 136872 562 0.00 2019-10-27 02:32:03 2019-10-27 02:32:27 t 1 1 136873 522 0.00 2019-10-27 02:35:35 2019-10-27 02:35:38 t 1 1 136874 587 0.00 2019-10-27 02:31:39 2019-10-27 02:36:11 t 1 1 136878 587 0.00 2019-10-27 02:36:11 2019-10-27 02:44:03 t 1 1 136881 587 0.00 2019-10-27 02:44:03 2019-10-27 02:51:13 t 1 1 136883 522 0.00 2019-10-27 02:55:51 2019-10-27 02:55:54 t 1 1 136884 522 0.00 2019-10-27 02:59:05 2019-10-27 02:59:18 t 1 1 136887 522 0.00 2019-10-27 03:06:00 2019-10-27 03:06:10 t 1 1 136892 522 0.00 2019-10-27 03:21:18 2019-10-27 03:22:19 t 1 1 136893 562 0.00 2019-10-27 03:22:46 2019-10-27 03:23:18 t 1 1 136894 522 0.00 2019-10-27 03:26:23 2019-10-27 03:26:24 t 1 1 136903 522 0.00 2019-10-27 03:39:43 2019-10-27 03:39:50 t 1 1 136905 522 0.00 2019-10-27 03:40:07 2019-10-27 03:40:09 t 1 1 136906 501 0.00 2019-10-27 03:41:13 2019-10-27 03:41:13 f 1 1 136911 522 0.00 2019-10-27 03:45:51 2019-10-27 03:45:52 t 1 1 136913 522 0.00 2019-10-27 03:46:39 2019-10-27 03:46:41 t 1 1 136915 522 0.00 2019-10-27 03:50:41 2019-10-27 03:50:42 t 1 1 136916 522 0.00 2019-10-27 03:51:50 2019-10-27 03:51:55 t 1 1 136920 522 0.00 2019-10-27 03:55:10 2019-10-27 03:56:10 t 1 1 136923 522 0.00 2019-10-27 03:58:53 2019-10-27 03:59:06 t 1 1 136927 522 0.00 2019-10-27 04:03:51 2019-10-27 04:03:52 t 1 1 136928 562 0.00 2019-10-27 04:04:29 2019-10-27 04:04:52 t 1 1 136933 522 0.00 2019-10-27 04:08:07 2019-10-27 04:08:10 t 1 1 136935 522 0.00 2019-10-27 04:11:58 2019-10-27 04:12:07 t 1 1 136936 522 0.00 2019-10-27 04:12:28 2019-10-27 04:13:00 t 1 1 136939 562 0.00 2019-10-27 04:15:15 2019-10-27 04:15:35 t 1 1 136940 522 0.00 2019-10-27 04:16:12 2019-10-27 04:16:14 t 1 1 136947 522 0.00 2019-10-27 04:22:26 2019-10-27 04:22:29 t 1 1 136951 522 0.00 2019-10-27 04:28:15 2019-10-27 04:28:18 t 1 1 136952 522 0.00 2019-10-27 04:29:28 2019-10-27 04:30:05 t 1 1 136955 522 0.00 2019-10-27 04:30:45 2019-10-27 04:31:27 t 1 1 136956 522 0.00 2019-10-27 04:32:13 2019-10-27 04:32:19 t 1 1 136957 361 0.00 2019-10-27 04:07:37 2019-10-27 04:33:47 t 1 2 136961 522 0.00 2019-10-27 04:38:53 2019-10-27 04:38:54 t 1 1 136963 522 0.00 2019-10-27 04:38:46 2019-10-27 04:40:07 t 1 1 136966 522 0.00 2019-10-27 04:50:06 2019-10-27 04:50:18 t 1 1 136813 566 0.00 2019-10-27 00:41:12 2019-10-27 00:54:20 t 1 1 136818 607 0.00 2019-10-27 00:20:19 2019-10-27 00:59:57 t 1 1 136820 487 0.00 2019-10-27 00:02:05 2019-10-27 01:02:10 t 1 2 136826 566 0.00 2019-10-27 00:54:20 2019-10-27 01:15:15 t 1 1 136828 522 0.00 2019-10-27 01:16:59 2019-10-27 01:17:00 t 1 1 136833 522 0.00 2019-10-27 01:27:37 2019-10-27 01:27:46 t 1 1 136836 609 0.00 2019-10-27 01:31:14 2019-10-27 01:33:28 t 1 1 136838 522 0.00 2019-10-27 01:34:55 2019-10-27 01:36:02 t 1 1 136840 587 0.00 2019-10-27 01:20:37 2019-10-27 01:36:42 t 1 1 136841 609 0.00 2019-10-27 01:33:28 2019-10-27 01:37:09 t 1 1 136843 522 0.00 2019-10-27 01:40:12 2019-10-27 01:40:15 t 1 1 136845 220 0.00 2019-10-27 01:36:10 2019-10-27 01:43:00 t 1 1 136846 522 0.00 2019-10-27 01:45:17 2019-10-27 01:45:19 t 1 1 136850 522 0.00 2019-10-27 01:50:23 2019-10-27 01:50:25 t 1 1 136853 522 0.00 2019-10-27 01:55:26 2019-10-27 01:55:28 t 1 1 136854 609 0.00 2019-10-27 01:52:56 2019-10-27 01:57:01 t 1 1 136855 609 0.00 2019-10-27 01:57:01 2019-10-27 01:58:37 t 1 1 136856 522 0.00 2019-10-27 01:59:36 2019-10-27 01:59:41 t 1 1 136858 595 0.00 2019-10-27 02:00:52 2019-10-27 02:03:31 t 1 1 136861 522 0.00 2019-10-27 02:05:03 2019-10-27 02:06:06 t 1 1 136864 522 0.00 2019-10-27 02:10:03 2019-10-27 02:10:06 t 1 1 136867 522 0.00 2019-10-27 02:20:14 2019-10-27 02:20:16 t 1 1 136868 562 0.00 2019-10-27 02:21:32 2019-10-27 02:21:41 t 1 1 136875 339 0.00 2019-10-27 02:29:01 2019-10-27 02:39:07 t 1 2 136877 562 0.00 2019-10-27 02:42:55 2019-10-27 02:43:15 t 1 1 136880 522 0.00 2019-10-27 02:50:44 2019-10-27 02:50:47 t 1 1 136886 562 0.00 2019-10-27 03:01:21 2019-10-27 03:01:40 t 1 1 136890 562 0.00 2019-10-27 03:12:08 2019-10-27 03:12:28 t 1 1 136895 522 0.00 2019-10-27 03:30:32 2019-10-27 03:30:34 t 1 1 136896 522 0.00 2019-10-27 03:31:29 2019-10-27 03:31:36 t 1 1 136898 514 0.00 2019-10-27 03:16:49 2019-10-27 03:33:56 t 1 1 136899 562 0.00 2019-10-27 03:33:53 2019-10-27 03:34:04 t 1 1 136904 522 0.00 2019-10-27 03:39:55 2019-10-27 03:40:02 t 1 1 136908 522 0.00 2019-10-27 03:42:38 2019-10-27 03:42:59 t 1 1 136912 522 0.00 2019-10-27 03:46:13 2019-10-27 03:46:16 t 1 1 136918 562 0.00 2019-10-27 03:53:45 2019-10-27 03:54:07 t 1 1 136922 514 0.00 2019-10-27 03:33:56 2019-10-27 03:57:22 t 1 1 136924 516 0.00 2019-10-27 03:45:59 2019-10-27 03:59:47 t 1 1 136929 522 0.00 2019-10-27 04:04:55 2019-10-27 04:04:58 t 1 1 136938 522 0.00 2019-10-27 04:15:04 2019-10-27 04:15:07 t 1 1 65431 131 0.00 2018-05-31 21:22:11 2018-05-31 21:22:11 f 1 1 136942 522 0.00 2019-10-27 04:17:09 2019-10-27 04:19:07 t 1 1 136945 522 0.00 2019-10-27 04:21:14 2019-10-27 04:21:15 t 1 1 136946 522 0.00 2019-10-27 04:22:11 2019-10-27 04:22:13 t 1 1 136948 522 0.00 2019-10-27 04:24:06 2019-10-27 04:24:13 t 1 1 136949 562 0.00 2019-10-27 04:26:14 2019-10-27 04:26:25 t 1 1 136958 562 0.00 2019-10-27 04:36:18 2019-10-27 04:36:32 t 1 1 136965 522 0.00 2019-10-27 04:41:18 2019-10-27 04:50:01 t 1 1 136967 522 0.00 2019-10-27 04:51:34 2019-10-27 04:52:02 t 1 1 136973 522 0.00 2019-10-27 04:55:41 2019-10-27 04:55:44 t 1 1 136977 522 0.00 2019-10-27 04:59:44 2019-10-27 04:59:49 t 1 1 136978 522 0.00 2019-10-27 05:00:29 2019-10-27 05:00:59 t 1 1 136980 522 0.00 2019-10-27 05:01:37 2019-10-27 05:01:38 t 1 1 136983 522 0.00 2019-10-27 05:03:18 2019-10-27 05:04:25 t 1 1 136988 562 0.00 2019-10-27 05:08:36 2019-10-27 05:08:50 t 1 1 136991 522 0.00 2019-10-27 05:10:36 2019-10-27 05:11:41 t 1 1 136992 522 0.00 2019-10-27 05:12:30 2019-10-27 05:12:38 t 1 1 136994 522 0.00 2019-10-27 05:13:47 2019-10-27 05:13:50 t 1 1 136995 522 0.00 2019-10-27 05:14:40 2019-10-27 05:14:43 t 1 1 136996 485 0.00 2019-10-27 05:13:08 2019-10-27 05:15:23 t 1 1 136999 522 0.00 2019-10-27 05:17:50 2019-10-27 05:18:04 t 1 1 137000 522 0.00 2019-10-27 05:19:12 2019-10-27 05:19:15 t 1 1 137003 522 0.00 2019-10-27 05:20:50 2019-10-27 05:21:04 t 1 1 137006 522 0.00 2019-10-27 05:24:49 2019-10-27 05:26:07 t 1 1 137007 522 0.00 2019-10-27 05:26:57 2019-10-27 05:27:00 t 1 1 137009 522 0.00 2019-10-27 05:29:53 2019-10-27 05:29:54 t 1 1 137011 522 0.00 2019-10-27 05:32:01 2019-10-27 05:32:04 t 1 1 137015 522 0.00 2019-10-27 05:38:04 2019-10-27 05:38:07 t 1 1 137016 522 0.00 2019-10-27 05:39:06 2019-10-27 05:39:07 t 1 1 137018 522 0.00 2019-10-27 05:39:48 2019-10-27 05:40:00 t 1 1 137023 522 0.00 2019-10-27 05:42:59 2019-10-27 05:44:00 t 1 1 137025 311 0.00 2019-10-27 05:40:04 2019-10-27 05:44:27 t 1 2 137030 485 0.00 2019-10-27 05:40:37 2019-10-27 05:50:21 t 1 1 137032 562 0.00 2019-10-27 05:51:33 2019-10-27 05:52:02 t 1 1 137034 522 0.00 2019-10-27 05:54:14 2019-10-27 05:54:16 t 1 1 137036 522 0.00 2019-10-27 05:57:14 2019-10-27 05:57:17 t 1 1 137038 570 0.00 2019-10-27 05:56:11 2019-10-27 05:58:53 t 1 1 137039 522 0.00 2019-10-27 05:59:17 2019-10-27 05:59:20 t 1 1 137044 556 0.00 2019-10-27 00:18:14 2019-10-27 06:02:46 t 1 1 137046 485 0.00 2019-10-27 05:59:39 2019-10-27 06:05:59 t 1 1 137052 562 0.00 2019-10-27 06:13:10 2019-10-27 06:13:30 t 1 1 137054 522 0.00 2019-10-27 06:15:23 2019-10-27 06:15:31 t 1 1 137056 522 0.00 2019-10-27 06:17:27 2019-10-27 06:17:28 t 1 1 137058 522 0.00 2019-10-27 06:20:30 2019-10-27 06:20:40 t 1 1 137059 522 0.00 2019-10-27 06:21:28 2019-10-27 06:21:31 t 1 1 137062 520 0.00 2019-10-27 06:18:41 2019-10-27 06:23:42 t 1 1 137064 522 0.00 2019-10-27 06:24:04 2019-10-27 06:24:27 t 1 1 137066 522 0.00 2019-10-27 06:28:01 2019-10-27 06:28:03 t 1 1 137071 522 0.00 2019-10-27 06:32:36 2019-10-27 06:32:37 t 1 1 137072 520 0.00 2019-10-27 06:24:13 2019-10-27 06:33:34 t 1 1 137083 522 0.00 2019-10-27 06:45:00 2019-10-27 06:45:03 t 1 1 137090 522 0.00 2019-10-27 06:51:56 2019-10-27 06:51:58 t 1 1 137092 520 0.00 2019-10-27 06:33:34 2019-10-27 06:54:49 t 1 1 137094 522 0.00 2019-10-27 06:55:48 2019-10-27 06:55:59 t 1 1 137097 522 0.00 2019-10-27 06:59:04 2019-10-27 06:59:07 t 1 1 137100 522 0.00 2019-10-27 07:04:09 2019-10-27 07:04:10 t 1 1 137102 522 0.00 2019-10-27 07:07:12 2019-10-27 07:07:17 t 1 1 137105 522 0.00 2019-10-27 07:09:59 2019-10-27 07:10:18 t 1 1 137106 522 0.00 2019-10-27 07:11:16 2019-10-27 07:11:18 t 1 1 137115 522 0.00 2019-10-27 07:20:01 2019-10-27 07:20:21 t 1 1 137118 522 0.00 2019-10-27 07:25:21 2019-10-27 07:25:24 t 1 1 137119 522 0.00 2019-10-27 07:26:37 2019-10-27 07:26:39 t 1 1 137125 522 0.00 2019-10-27 07:29:30 2019-10-27 07:29:32 t 1 1 137129 522 0.00 2019-10-27 07:34:42 2019-10-27 07:34:48 t 1 1 137132 522 0.00 2019-10-27 07:36:34 2019-10-27 07:36:37 t 1 1 137135 562 0.00 2019-10-27 07:39:19 2019-10-27 07:39:41 t 1 1 137138 488 0.00 2019-10-27 07:35:37 2019-10-27 07:41:58 t 1 1 136968 522 0.00 2019-10-27 04:52:10 2019-10-27 04:52:20 t 1 1 136970 361 0.00 2019-10-27 04:35:10 2019-10-27 04:52:45 t 1 2 136971 522 0.00 2019-10-27 04:53:23 2019-10-27 04:53:44 t 1 1 136972 522 0.00 2019-10-27 04:54:22 2019-10-27 04:54:23 t 1 1 136981 522 0.00 2019-10-27 05:01:43 2019-10-27 05:01:46 t 1 1 136982 522 0.00 2019-10-27 05:02:29 2019-10-27 05:02:32 t 1 1 136984 522 0.00 2019-10-27 05:04:30 2019-10-27 05:04:33 t 1 1 136985 522 0.00 2019-10-27 05:06:38 2019-10-27 05:06:41 t 1 1 136987 522 0.00 2019-10-27 05:08:38 2019-10-27 05:08:41 t 1 1 136989 558 0.00 2019-10-27 00:46:21 2019-10-27 05:09:21 t 1 1 136993 522 0.00 2019-10-27 05:12:46 2019-10-27 05:12:47 t 1 1 136997 522 0.00 2019-10-27 05:15:52 2019-10-27 05:15:53 t 1 1 136998 522 0.00 2019-10-27 05:15:58 2019-10-27 05:16:00 t 1 1 137001 562 0.00 2019-10-27 05:19:23 2019-10-27 05:19:39 t 1 1 137005 522 0.00 2019-10-27 05:25:57 2019-10-27 05:26:04 t 1 1 137010 562 0.00 2019-10-27 05:30:06 2019-10-27 05:30:25 t 1 1 137013 522 0.00 2019-10-27 05:34:55 2019-10-27 05:34:58 t 1 1 137014 522 0.00 2019-10-27 05:36:08 2019-10-27 05:36:11 t 1 1 137017 522 0.00 2019-10-27 05:39:12 2019-10-27 05:39:15 t 1 1 137019 485 0.00 2019-10-27 05:30:25 2019-10-27 05:40:37 t 1 1 137021 522 0.00 2019-10-27 05:41:11 2019-10-27 05:41:26 t 1 1 137024 522 0.00 2019-10-27 05:44:06 2019-10-27 05:44:09 t 1 1 137028 522 0.00 2019-10-27 05:48:09 2019-10-27 05:48:23 t 1 1 137031 522 0.00 2019-10-27 05:50:21 2019-10-27 05:50:24 t 1 1 137033 522 0.00 2019-10-27 05:52:11 2019-10-27 05:52:13 t 1 1 137035 522 0.00 2019-10-27 05:55:08 2019-10-27 05:56:03 t 1 1 137037 485 0.00 2019-10-27 05:50:21 2019-10-27 05:58:10 t 1 1 137040 522 0.00 2019-10-27 06:00:13 2019-10-27 06:00:22 t 1 1 137041 522 0.00 2019-10-27 06:01:15 2019-10-27 06:01:16 t 1 1 137042 522 0.00 2019-10-27 06:02:21 2019-10-27 06:02:22 t 1 1 137045 522 0.00 2019-10-27 06:04:21 2019-10-27 06:04:25 t 1 1 137047 556 0.00 2019-10-27 06:02:46 2019-10-27 06:06:06 t 1 1 137049 522 0.00 2019-10-27 06:08:24 2019-10-27 06:08:27 t 1 1 137051 522 0.00 2019-10-27 06:12:26 2019-10-27 06:12:29 t 1 1 137055 522 0.00 2019-10-27 06:15:41 2019-10-27 06:15:44 t 1 1 137057 522 0.00 2019-10-27 06:19:28 2019-10-27 06:19:29 t 1 1 137060 516 0.00 2019-10-27 06:03:09 2019-10-27 06:22:24 t 1 1 137061 522 0.00 2019-10-27 06:23:29 2019-10-27 06:23:30 t 1 1 137063 562 0.00 2019-10-27 06:23:49 2019-10-27 06:24:19 t 1 1 137065 522 0.00 2019-10-27 06:26:31 2019-10-27 06:26:34 t 1 1 137067 522 0.00 2019-10-27 06:28:11 2019-10-27 06:28:23 t 1 1 137070 522 0.00 2019-10-27 06:30:45 2019-10-27 06:30:48 t 1 1 137073 522 0.00 2019-10-27 06:33:36 2019-10-27 06:33:39 t 1 1 137074 522 0.00 2019-10-27 06:34:17 2019-10-27 06:34:35 t 1 1 137075 522 0.00 2019-10-27 06:34:46 2019-10-27 06:34:48 t 1 1 65433 131 0.00 2018-05-31 21:28:16 2018-05-31 21:30:06 t 1 1 137076 562 0.00 2019-10-27 06:34:42 2019-10-27 06:35:02 t 1 1 137078 522 0.00 2019-10-27 06:37:41 2019-10-27 06:37:42 t 1 1 137081 522 0.00 2019-10-27 06:43:51 2019-10-27 06:43:54 t 1 1 137082 522 0.00 2019-10-27 06:44:21 2019-10-27 06:44:24 t 1 1 137084 562 0.00 2019-10-27 06:45:30 2019-10-27 06:45:51 t 1 1 137085 522 0.00 2019-10-27 06:46:54 2019-10-27 06:46:57 t 1 1 137088 522 0.00 2019-10-27 06:49:29 2019-10-27 06:49:46 t 1 1 137089 508 0.00 2019-10-27 06:47:55 2019-10-27 06:50:18 t 1 2 137095 562 0.00 2019-10-27 06:56:25 2019-10-27 06:56:39 t 1 1 137096 522 0.00 2019-10-27 06:57:04 2019-10-27 06:57:07 t 1 1 137099 522 0.00 2019-10-27 07:02:09 2019-10-27 07:02:12 t 1 1 137104 522 0.00 2019-10-27 07:09:12 2019-10-27 07:09:13 t 1 1 137107 522 0.00 2019-10-27 07:11:47 2019-10-27 07:11:48 t 1 1 137108 220 0.00 2019-10-27 07:11:50 2019-10-27 07:12:00 t 1 1 137109 522 0.00 2019-10-27 07:13:16 2019-10-27 07:13:19 t 1 1 137110 522 0.00 2019-10-27 07:15:02 2019-10-27 07:15:11 t 1 1 137113 562 0.00 2019-10-27 07:17:51 2019-10-27 07:18:11 t 1 1 137114 522 0.00 2019-10-27 07:19:16 2019-10-27 07:19:26 t 1 1 137117 522 0.00 2019-10-27 07:24:25 2019-10-27 07:24:29 t 1 1 137120 516 0.00 2019-10-27 07:13:47 2019-10-27 07:27:05 t 1 1 137121 522 0.00 2019-10-27 07:27:36 2019-10-27 07:27:38 t 1 1 137122 522 0.00 2019-10-27 07:28:29 2019-10-27 07:28:30 t 1 1 137123 522 0.00 2019-10-27 07:28:36 2019-10-27 07:28:37 t 1 1 137126 522 0.00 2019-10-27 07:29:44 2019-10-27 07:29:46 t 1 1 137127 522 0.00 2019-10-27 07:31:28 2019-10-27 07:31:31 t 1 1 137134 522 0.00 2019-10-27 07:39:31 2019-10-27 07:39:35 t 1 1 137136 522 0.00 2019-10-27 07:41:16 2019-10-27 07:41:29 t 1 1 137140 522 0.00 2019-10-27 07:44:59 2019-10-27 07:45:01 t 1 1 137141 522 0.00 2019-10-27 07:46:41 2019-10-27 07:46:44 t 1 1 137148 522 0.00 2019-10-27 07:52:49 2019-10-27 07:52:52 t 1 1 137150 522 0.00 2019-10-27 07:55:01 2019-10-27 07:55:06 t 1 1 137152 522 0.00 2019-10-27 07:57:38 2019-10-27 07:57:47 t 1 1 137154 522 0.00 2019-10-27 07:59:12 2019-10-27 07:59:26 t 1 1 137158 522 0.00 2019-10-27 08:02:07 2019-10-27 08:02:08 t 1 1 137160 522 0.00 2019-10-27 08:04:55 2019-10-27 08:04:56 t 1 1 137161 522 0.00 2019-10-27 08:07:01 2019-10-27 08:07:04 t 1 1 137165 566 0.00 2019-10-27 07:53:02 2019-10-27 08:10:26 t 1 1 137168 522 0.00 2019-10-27 08:13:13 2019-10-27 08:13:15 t 1 1 65561 131 0.00 2018-06-02 10:47:35 2018-06-02 10:49:09 t 1 1 137170 562 0.00 2019-10-27 08:12:26 2019-10-27 08:13:38 t 1 1 137173 522 0.00 2019-10-27 08:18:08 2019-10-27 08:18:10 t 1 1 137176 522 0.00 2019-10-27 08:18:29 2019-10-27 08:18:32 t 1 1 137178 566 0.00 2019-10-27 08:10:26 2019-10-27 08:20:23 t 1 1 137179 611 0.00 2019-10-27 08:14:48 2019-10-27 08:21:04 t 1 1 137182 562 0.00 2019-10-27 08:23:08 2019-10-27 08:23:15 t 1 1 137183 522 0.00 2019-10-27 08:24:19 2019-10-27 08:24:21 t 1 1 137186 556 0.00 2019-10-27 06:06:05 2019-10-27 08:27:10 t 1 1 65578 131 0.00 2018-06-02 13:22:45 2018-06-02 13:24:09 t 1 1 137189 566 0.00 2019-10-27 08:20:23 2019-10-27 08:29:06 t 1 1 137193 522 0.00 2019-10-27 08:32:26 2019-10-27 08:32:28 t 1 1 137195 562 0.00 2019-10-27 08:33:43 2019-10-27 08:33:52 t 1 1 137197 522 0.00 2019-10-27 08:35:17 2019-10-27 08:35:21 t 1 1 137199 522 0.00 2019-10-27 08:35:32 2019-10-27 08:35:36 t 1 1 137201 522 0.00 2019-10-27 08:36:33 2019-10-27 08:36:34 t 1 1 137204 585 0.00 2019-10-27 08:38:27 2019-10-27 08:39:30 t 1 1 137208 522 0.00 2019-10-27 08:41:53 2019-10-27 08:41:55 t 1 1 137209 520 0.00 2019-10-27 08:38:20 2019-10-27 08:42:17 t 1 1 137214 562 0.00 2019-10-27 08:41:20 2019-10-27 08:45:37 t 1 1 137215 522 0.00 2019-10-27 08:46:36 2019-10-27 08:46:38 t 1 1 137217 522 0.00 2019-10-27 08:48:27 2019-10-27 08:48:35 t 1 1 137218 522 0.00 2019-10-27 08:49:27 2019-10-27 08:49:30 t 1 1 137008 522 0.00 2019-10-27 05:28:57 2019-10-27 05:29:00 t 1 1 137012 522 0.00 2019-10-27 05:34:01 2019-10-27 05:34:04 t 1 1 137020 562 0.00 2019-10-27 05:40:52 2019-10-27 05:41:11 t 1 1 137022 522 0.00 2019-10-27 05:41:37 2019-10-27 05:41:56 t 1 1 137026 522 0.00 2019-10-27 05:45:03 2019-10-27 05:45:05 t 1 1 137027 522 0.00 2019-10-27 05:46:18 2019-10-27 05:46:21 t 1 1 137029 522 0.00 2019-10-27 05:50:07 2019-10-27 05:50:09 t 1 1 137043 562 0.00 2019-10-27 06:02:27 2019-10-27 06:02:45 t 1 1 137048 522 0.00 2019-10-27 06:06:21 2019-10-27 06:06:24 t 1 1 137050 522 0.00 2019-10-27 06:10:24 2019-10-27 06:10:27 t 1 1 137053 522 0.00 2019-10-27 06:13:20 2019-10-27 06:13:38 t 1 1 137068 522 0.00 2019-10-27 06:28:35 2019-10-27 06:28:37 t 1 1 137069 522 0.00 2019-10-27 06:29:14 2019-10-27 06:29:26 t 1 1 137077 522 0.00 2019-10-27 06:35:50 2019-10-27 06:35:53 t 1 1 137079 522 0.00 2019-10-27 06:39:26 2019-10-27 06:39:38 t 1 1 137080 522 0.00 2019-10-27 06:42:04 2019-10-27 06:42:07 t 1 1 65352 131 0.00 2018-05-30 21:16:36 2018-05-30 21:18:05 t 1 1 137086 522 0.00 2019-10-27 06:48:54 2019-10-27 06:48:57 t 1 1 137087 516 0.00 2019-10-27 06:43:43 2019-10-27 06:49:32 t 1 1 137091 522 0.00 2019-10-27 06:53:58 2019-10-27 06:54:01 t 1 1 137093 522 0.00 2019-10-27 06:54:37 2019-10-27 06:54:52 t 1 1 137098 522 0.00 2019-10-27 06:59:47 2019-10-27 06:59:59 t 1 1 137101 522 0.00 2019-10-27 07:04:55 2019-10-27 07:05:15 t 1 1 137103 562 0.00 2019-10-27 07:07:02 2019-10-27 07:07:23 t 1 1 137111 522 0.00 2019-10-27 07:15:23 2019-10-27 07:15:25 t 1 1 137112 522 0.00 2019-10-27 07:17:20 2019-10-27 07:18:09 t 1 1 137116 522 0.00 2019-10-27 07:22:25 2019-10-27 07:22:28 t 1 1 137124 562 0.00 2019-10-27 07:28:36 2019-10-27 07:28:57 t 1 1 137128 522 0.00 2019-10-27 07:34:13 2019-10-27 07:34:34 t 1 1 137130 522 0.00 2019-10-27 07:34:59 2019-10-27 07:35:02 t 1 1 137131 516 0.00 2019-10-27 07:27:05 2019-10-27 07:36:03 t 1 1 137133 522 0.00 2019-10-27 07:38:34 2019-10-27 07:38:37 t 1 1 137137 522 0.00 2019-10-27 07:41:40 2019-10-27 07:41:43 t 1 1 137139 520 0.00 2019-10-27 07:30:14 2019-10-27 07:44:36 t 1 1 137144 562 0.00 2019-10-27 07:50:09 2019-10-27 07:50:29 t 1 1 137146 522 0.00 2019-10-27 07:51:36 2019-10-27 07:51:58 t 1 1 137149 522 0.00 2019-10-27 07:54:47 2019-10-27 07:54:50 t 1 1 137155 522 0.00 2019-10-27 07:59:51 2019-10-27 07:59:54 t 1 1 137164 522 0.00 2019-10-27 08:09:58 2019-10-27 08:09:59 t 1 1 137166 562 0.00 2019-10-27 08:11:35 2019-10-27 08:12:01 t 1 1 137172 585 0.00 2019-10-27 08:12:28 2019-10-27 08:16:42 t 1 1 137174 522 0.00 2019-10-27 08:18:15 2019-10-27 08:18:16 t 1 1 137177 522 0.00 2019-10-27 08:20:06 2019-10-27 08:20:08 t 1 1 137180 522 0.00 2019-10-27 08:21:27 2019-10-27 08:21:29 t 1 1 137181 522 0.00 2019-10-27 08:23:10 2019-10-27 08:23:11 t 1 1 137185 522 0.00 2019-10-27 08:26:11 2019-10-27 08:26:14 t 1 1 137190 522 0.00 2019-10-27 08:30:15 2019-10-27 08:30:18 t 1 1 137196 595 0.00 2019-10-27 08:26:37 2019-10-27 08:34:41 t 1 1 137198 538 0.00 2019-10-27 06:38:06 2019-10-27 08:35:34 t 1 1 137205 522 0.00 2019-10-27 08:40:21 2019-10-27 08:40:30 t 1 1 137212 585 0.00 2019-10-27 08:39:30 2019-10-27 08:43:33 t 1 1 137213 522 0.00 2019-10-27 08:45:27 2019-10-27 08:45:33 t 1 1 137216 566 0.00 2019-10-27 08:29:06 2019-10-27 08:47:50 t 1 1 137230 430 0.00 2019-10-27 08:56:08 2019-10-27 08:57:04 t 1 1 137233 430 0.00 2019-10-27 08:55:50 2019-10-27 08:58:08 t 1 1 137237 562 0.00 2019-10-27 09:01:09 2019-10-27 09:01:33 t 1 1 137239 585 0.00 2019-10-27 08:58:59 2019-10-27 09:02:47 t 1 1 137243 522 0.00 2019-10-27 09:03:38 2019-10-27 09:03:41 t 1 1 137244 615 0.00 2019-10-27 08:59:16 2019-10-27 09:04:40 t 1 1 137249 591 0.00 2019-10-27 08:59:31 2019-10-27 09:08:39 t 1 1 137250 522 0.00 2019-10-27 09:08:41 2019-10-27 09:08:46 t 1 1 137251 562 0.00 2019-10-27 09:09:06 2019-10-27 09:09:29 t 1 1 137254 430 0.00 2019-10-27 09:11:16 2019-10-27 09:11:24 t 1 1 137255 615 0.00 2019-10-27 09:04:40 2019-10-27 09:11:49 t 1 1 137259 570 0.00 2019-10-27 09:11:34 2019-10-27 09:13:33 t 1 1 137260 522 0.00 2019-10-27 09:13:53 2019-10-27 09:13:55 t 1 1 137263 445 0.00 2019-10-27 09:01:06 2019-10-27 09:15:42 t 1 1 137265 591 0.00 2019-10-27 09:08:39 2019-10-27 09:16:00 t 1 1 137269 581 0.00 2019-10-27 08:53:53 2019-10-27 09:18:12 t 1 1 137272 566 0.00 2019-10-27 09:05:14 2019-10-27 09:18:42 t 1 1 137289 522 0.00 2019-10-27 09:27:01 2019-10-27 09:27:02 t 1 1 65512 131 0.00 2018-06-01 19:14:02 2018-06-01 19:15:08 t 1 1 137292 522 0.00 2019-10-27 09:27:15 2019-10-27 09:27:43 t 1 1 137295 562 0.00 2019-10-27 09:27:55 2019-10-27 09:28:27 t 1 1 137297 591 0.00 2019-10-27 09:22:17 2019-10-27 09:30:27 t 1 1 137302 522 0.00 2019-10-27 09:32:35 2019-10-27 09:32:53 t 1 1 137306 430 0.00 2019-10-27 09:35:51 2019-10-27 09:37:01 t 1 1 137308 566 0.00 2019-10-27 09:30:41 2019-10-27 09:37:31 t 1 1 137310 615 0.00 2019-10-27 09:23:15 2019-10-27 09:40:19 t 1 1 137311 581 0.00 2019-10-27 09:38:55 2019-10-27 09:42:11 t 1 1 137312 562 0.00 2019-10-27 09:43:04 2019-10-27 09:43:15 t 1 1 137313 562 0.00 2019-10-27 09:43:31 2019-10-27 09:44:36 t 1 1 137316 522 0.00 2019-10-27 09:50:04 2019-10-27 09:50:07 t 1 1 137319 538 0.00 2019-10-27 08:55:30 2019-10-27 09:52:28 t 1 1 137324 522 0.00 2019-10-27 09:57:48 2019-10-27 09:58:07 t 1 1 137326 585 0.00 2019-10-27 09:57:46 2019-10-27 09:59:37 t 1 1 137334 522 0.00 2019-10-27 10:02:44 2019-10-27 10:03:19 t 1 1 137336 327 0.00 2019-10-27 10:03:10 2019-10-27 10:03:44 t 1 1 137338 522 0.00 2019-10-27 10:03:59 2019-10-27 10:04:08 t 1 1 137340 585 0.00 2019-10-27 09:59:37 2019-10-27 10:04:46 t 1 1 137343 327 0.00 2019-10-27 10:05:15 2019-10-27 10:06:11 t 1 1 137352 597 0.00 2019-10-27 09:59:43 2019-10-27 10:10:14 t 1 1 137355 327 0.00 2019-10-27 10:07:13 2019-10-27 10:11:15 t 1 1 137358 522 0.00 2019-10-27 10:12:42 2019-10-27 10:12:47 t 1 1 137359 522 0.00 2019-10-27 10:12:58 2019-10-27 10:13:09 t 1 1 137360 522 0.00 2019-10-27 10:13:58 2019-10-27 10:14:25 t 1 1 137362 522 0.00 2019-10-27 10:14:37 2019-10-27 10:14:47 t 1 1 137364 522 0.00 2019-10-27 10:15:11 2019-10-27 10:15:24 t 1 1 137367 566 0.00 2019-10-27 09:37:31 2019-10-27 10:16:41 t 1 1 137369 327 0.00 2019-10-27 10:16:08 2019-10-27 10:17:06 t 1 1 137370 522 0.00 2019-10-27 10:17:32 2019-10-27 10:17:38 t 1 1 137372 522 0.00 2019-10-27 10:17:49 2019-10-27 10:17:50 t 1 1 137374 522 0.00 2019-10-27 10:18:27 2019-10-27 10:18:48 t 1 1 137375 591 0.00 2019-10-27 10:11:16 2019-10-27 10:19:05 t 1 1 137377 327 0.00 2019-10-27 10:17:54 2019-10-27 10:19:23 t 1 1 137380 522 0.00 2019-10-27 10:19:33 2019-10-27 10:19:34 t 1 1 137383 522 0.00 2019-10-27 10:21:33 2019-10-27 10:21:34 t 1 1 137142 522 0.00 2019-10-27 07:48:44 2019-10-27 07:48:46 t 1 1 65626 131 0.00 2018-06-02 22:04:53 2018-06-02 22:06:10 t 1 1 137143 522 0.00 2019-10-27 07:49:41 2019-10-27 07:49:48 t 1 1 137145 522 0.00 2019-10-27 07:50:41 2019-10-27 07:50:46 t 1 1 137147 522 0.00 2019-10-27 07:52:05 2019-10-27 07:52:06 t 1 1 137151 522 0.00 2019-10-27 07:56:54 2019-10-27 07:57:33 t 1 1 137153 522 0.00 2019-10-27 07:58:50 2019-10-27 07:59:06 t 1 1 137156 562 0.00 2019-10-27 08:00:51 2019-10-27 08:01:16 t 1 1 137157 522 0.00 2019-10-27 08:01:58 2019-10-27 08:02:01 t 1 1 137159 522 0.00 2019-10-27 08:04:01 2019-10-27 08:04:04 t 1 1 137162 522 0.00 2019-10-27 08:08:13 2019-10-27 08:08:53 t 1 1 137163 522 0.00 2019-10-27 08:09:14 2019-10-27 08:09:17 t 1 1 137167 522 0.00 2019-10-27 08:12:05 2019-10-27 08:12:06 t 1 1 137169 570 0.00 2019-10-27 08:07:57 2019-10-27 08:13:26 t 1 1 137171 522 0.00 2019-10-27 08:16:09 2019-10-27 08:16:11 t 1 1 137175 522 0.00 2019-10-27 08:18:22 2019-10-27 08:18:24 t 1 1 137184 570 0.00 2019-10-27 08:13:26 2019-10-27 08:24:36 t 1 1 65658 131 0.00 2018-06-03 11:05:59 2018-06-03 11:07:11 t 1 1 65660 131 0.00 2018-06-03 13:31:36 2018-06-03 13:33:11 t 1 1 65662 131 0.00 2018-06-03 13:33:41 2018-06-03 13:35:11 t 1 1 65663 131 0.00 2018-06-03 13:36:41 2018-06-03 13:38:11 t 1 1 137187 516 0.00 2019-10-27 08:24:59 2019-10-27 08:27:42 t 1 1 137188 522 0.00 2019-10-27 08:28:14 2019-10-27 08:28:17 t 1 1 137191 562 0.00 2019-10-27 08:25:36 2019-10-27 08:31:08 t 1 1 65673 131 0.00 2018-06-03 15:00:23 2018-06-03 15:02:11 t 1 1 65676 131 0.00 2018-06-03 15:05:51 2018-06-03 15:07:11 t 1 1 137192 522 0.00 2019-10-27 08:32:18 2019-10-27 08:32:20 t 1 1 137194 522 0.00 2019-10-27 08:33:15 2019-10-27 08:33:21 t 1 1 137200 522 0.00 2019-10-27 08:36:26 2019-10-27 08:36:27 t 1 1 137202 522 0.00 2019-10-27 08:38:25 2019-10-27 08:38:28 t 1 1 137203 562 0.00 2019-10-27 08:38:42 2019-10-27 08:38:59 t 1 1 137206 597 0.00 2019-10-27 08:22:14 2019-10-27 08:41:13 t 1 1 137207 522 0.00 2019-10-27 08:41:25 2019-10-27 08:41:32 t 1 1 137210 528 0.00 2019-10-27 08:37:46 2019-10-27 08:42:24 t 1 1 137211 522 0.00 2019-10-27 08:43:26 2019-10-27 08:43:29 t 1 1 137219 522 0.00 2019-10-27 08:50:36 2019-10-27 08:50:39 t 1 1 137220 522 0.00 2019-10-27 08:50:51 2019-10-27 08:50:53 t 1 1 137222 522 0.00 2019-10-27 08:52:30 2019-10-27 08:52:33 t 1 1 137225 430 0.00 2019-10-27 08:40:14 2019-10-27 08:55:06 t 1 1 137227 430 0.00 2019-10-27 08:55:12 2019-10-27 08:55:22 t 1 1 137228 522 0.00 2019-10-27 08:55:33 2019-10-27 08:55:36 t 1 1 137231 522 0.00 2019-10-27 08:57:33 2019-10-27 08:57:36 t 1 1 137240 522 0.00 2019-10-27 09:02:49 2019-10-27 09:02:55 t 1 1 137241 430 0.00 2019-10-27 09:02:57 2019-10-27 09:03:03 t 1 1 137245 522 0.00 2019-10-27 09:04:32 2019-10-27 09:04:42 t 1 1 137246 566 0.00 2019-10-27 08:47:50 2019-10-27 09:05:14 t 1 1 137258 430 0.00 2019-10-27 09:13:04 2019-10-27 09:13:10 t 1 1 137261 520 0.00 2019-10-27 09:05:39 2019-10-27 09:14:20 t 1 1 137262 522 0.00 2019-10-27 09:13:47 2019-10-27 09:15:08 t 1 1 137266 570 0.00 2019-10-27 09:15:43 2019-10-27 09:16:00 t 1 1 137271 607 0.00 2019-10-27 09:16:35 2019-10-27 09:18:23 t 1 1 137274 498 0.00 2019-10-27 07:44:15 2019-10-27 09:19:16 t 1 2 137275 522 0.00 2019-10-27 09:19:49 2019-10-27 09:19:50 t 1 1 137277 562 0.00 2019-10-27 09:19:47 2019-10-27 09:20:41 t 1 1 137278 522 0.00 2019-10-27 09:21:47 2019-10-27 09:21:50 t 1 1 137281 615 0.00 2019-10-27 09:11:49 2019-10-27 09:23:12 t 1 1 137283 562 0.00 2019-10-27 09:22:51 2019-10-27 09:23:42 t 1 1 137284 522 0.00 2019-10-27 09:23:56 2019-10-27 09:23:59 t 1 1 137286 522 0.00 2019-10-27 09:25:49 2019-10-27 09:25:52 t 1 1 137288 430 0.00 2019-10-27 09:26:29 2019-10-27 09:26:49 t 1 1 65781 131 0.00 2018-06-05 12:46:51 2018-06-05 12:47:03 t 1 1 137291 430 0.00 2019-10-27 09:27:10 2019-10-27 09:27:37 t 1 1 137294 522 0.00 2019-10-27 09:26:54 2019-10-27 09:28:08 t 1 1 137296 522 0.00 2019-10-27 09:30:11 2019-10-27 09:30:13 t 1 1 137299 430 0.00 2019-10-27 09:31:47 2019-10-27 09:31:48 t 1 1 137300 522 0.00 2019-10-27 09:31:55 2019-10-27 09:31:58 t 1 1 137305 430 0.00 2019-10-27 09:35:10 2019-10-27 09:35:44 t 1 1 137307 430 0.00 2019-10-27 09:37:06 2019-10-27 09:37:13 t 1 1 137315 522 0.00 2019-10-27 09:46:42 2019-10-27 09:49:45 t 1 1 137317 544 0.00 2019-10-27 09:24:57 2019-10-27 09:51:15 t 1 2 137318 522 0.00 2019-10-27 09:51:57 2019-10-27 09:52:00 t 1 1 137320 522 0.00 2019-10-27 09:52:44 2019-10-27 09:52:54 t 1 1 137321 591 0.00 2019-10-27 09:49:07 2019-10-27 09:53:35 t 1 1 137323 522 0.00 2019-10-27 09:56:58 2019-10-27 09:56:59 t 1 1 137325 522 0.00 2019-10-27 09:58:25 2019-10-27 09:58:56 t 1 1 137328 327 0.00 2019-10-27 09:59:18 2019-10-27 10:00:20 t 1 1 137330 327 0.00 2019-10-27 10:00:55 2019-10-27 10:01:33 t 1 1 137332 562 0.00 2019-10-27 10:00:47 2019-10-27 10:02:18 t 1 1 137333 522 0.00 2019-10-27 10:02:24 2019-10-27 10:02:34 t 1 1 137335 522 0.00 2019-10-27 10:03:31 2019-10-27 10:03:34 t 1 1 137337 556 0.00 2019-10-27 08:27:10 2019-10-27 10:03:51 t 1 1 137341 522 0.00 2019-10-27 10:04:39 2019-10-27 10:04:56 t 1 1 137344 522 0.00 2019-10-27 10:06:16 2019-10-27 10:06:19 t 1 1 137345 327 0.00 2019-10-27 10:06:20 2019-10-27 10:06:54 t 1 1 137348 522 0.00 2019-10-27 10:07:42 2019-10-27 10:08:46 t 1 1 137349 522 0.00 2019-10-27 10:08:51 2019-10-27 10:09:02 t 1 1 137351 522 0.00 2019-10-27 10:09:43 2019-10-27 10:10:11 t 1 1 137353 585 0.00 2019-10-27 10:08:37 2019-10-27 10:10:43 t 1 1 137354 522 0.00 2019-10-27 10:10:30 2019-10-27 10:11:08 t 1 1 137376 522 0.00 2019-10-27 10:19:04 2019-10-27 10:19:18 t 1 1 137378 522 0.00 2019-10-27 10:19:26 2019-10-27 10:19:27 t 1 1 137381 522 0.00 2019-10-27 10:19:59 2019-10-27 10:20:23 t 1 1 137385 522 0.00 2019-10-27 10:22:27 2019-10-27 10:22:38 t 1 1 137389 445 0.00 2019-10-27 10:19:27 2019-10-27 10:23:29 t 1 1 137392 327 0.00 2019-10-27 10:23:15 2019-10-27 10:24:15 t 1 1 137393 445 0.00 2019-10-27 10:23:29 2019-10-27 10:24:36 t 1 1 137395 522 0.00 2019-10-27 10:24:54 2019-10-27 10:25:00 t 1 1 137398 522 0.00 2019-10-27 10:25:38 2019-10-27 10:25:39 t 1 1 137401 522 0.00 2019-10-27 10:26:45 2019-10-27 10:26:46 t 1 1 137402 522 0.00 2019-10-27 10:26:54 2019-10-27 10:26:59 t 1 1 137405 327 0.00 2019-10-27 10:28:11 2019-10-27 10:28:44 t 1 1 137407 562 0.00 2019-10-27 10:28:52 2019-10-27 10:29:44 t 1 1 137410 327 0.00 2019-10-27 10:30:19 2019-10-27 10:31:01 t 1 1 137412 570 0.00 2019-10-27 10:23:58 2019-10-27 10:31:32 t 1 1 137415 562 0.00 2019-10-27 10:30:48 2019-10-27 10:31:46 t 1 1 137418 522 0.00 2019-10-27 10:32:47 2019-10-27 10:32:48 t 1 1 137421 327 0.00 2019-10-27 10:33:20 2019-10-27 10:33:51 t 1 1 137221 445 0.00 2019-10-27 08:32:38 2019-10-27 08:51:12 t 1 1 137223 522 0.00 2019-10-27 08:53:42 2019-10-27 08:54:22 t 1 1 65631 131 0.00 2018-06-02 22:56:06 2018-06-02 22:57:10 t 1 1 137224 520 0.00 2019-10-27 08:42:17 2019-10-27 08:55:03 t 1 1 137226 538 0.00 2019-10-27 08:35:37 2019-10-27 08:55:15 t 1 1 137229 522 0.00 2019-10-27 08:55:44 2019-10-27 08:55:47 t 1 1 137232 430 0.00 2019-10-27 08:57:48 2019-10-27 08:57:56 t 1 1 137234 562 0.00 2019-10-27 08:50:40 2019-10-27 08:58:28 t 1 1 137235 522 0.00 2019-10-27 08:59:34 2019-10-27 08:59:37 t 1 1 65659 131 0.00 2018-06-03 11:50:26 2018-06-03 11:52:11 t 1 1 65661 131 0.00 2018-06-03 13:33:12 2018-06-03 13:33:41 t 1 1 137236 445 0.00 2019-10-27 08:51:20 2019-10-27 09:00:45 t 1 1 137238 522 0.00 2019-10-27 09:01:32 2019-10-27 09:01:35 t 1 1 65671 131 0.00 2018-06-03 14:59:28 2018-06-03 14:59:49 t 1 1 65672 131 0.00 2018-06-03 14:59:49 2018-06-03 15:00:23 t 1 1 137242 430 0.00 2019-10-27 09:03:09 2019-10-27 09:03:16 t 1 1 65675 131 0.00 2018-06-03 15:04:43 2018-06-03 15:05:51 t 1 1 137247 522 0.00 2019-10-27 09:06:38 2019-10-27 09:06:41 t 1 1 137248 522 0.00 2019-10-27 09:07:06 2019-10-27 09:07:12 t 1 1 137252 522 0.00 2019-10-27 09:10:41 2019-10-27 09:10:44 t 1 1 65680 131 0.00 2018-06-03 15:25:36 2018-06-03 15:27:11 t 1 1 137253 562 0.00 2019-10-27 09:10:45 2019-10-27 09:11:10 t 1 1 137256 522 0.00 2019-10-27 09:12:20 2019-10-27 09:12:37 t 1 1 137257 430 0.00 2019-10-27 09:11:37 2019-10-27 09:13:08 t 1 1 137264 522 0.00 2019-10-27 09:15:45 2019-10-27 09:15:48 t 1 1 137267 522 0.00 2019-10-27 09:16:40 2019-10-27 09:16:52 t 1 1 137268 522 0.00 2019-10-27 09:17:16 2019-10-27 09:17:17 t 1 1 137270 585 0.00 2019-10-27 09:16:39 2019-10-27 09:18:18 t 1 1 137273 522 0.00 2019-10-27 09:18:46 2019-10-27 09:19:04 t 1 1 137276 522 0.00 2019-10-27 09:19:56 2019-10-27 09:19:57 t 1 1 137279 591 0.00 2019-10-27 09:16:00 2019-10-27 09:22:17 t 1 1 137280 522 0.00 2019-10-27 09:22:21 2019-10-27 09:22:38 t 1 1 137282 430 0.00 2019-10-27 09:23:10 2019-10-27 09:23:17 t 1 1 137285 445 0.00 2019-10-27 09:15:46 2019-10-27 09:25:51 t 1 1 137287 607 0.00 2019-10-27 09:20:40 2019-10-27 09:26:22 t 1 1 137290 562 0.00 2019-10-27 09:27:11 2019-10-27 09:27:34 t 1 1 137293 522 0.00 2019-10-27 09:27:55 2019-10-27 09:27:57 t 1 1 137298 566 0.00 2019-10-27 09:18:42 2019-10-27 09:30:41 t 1 1 137301 522 0.00 2019-10-27 09:32:28 2019-10-27 09:32:29 t 1 1 137303 522 0.00 2019-10-27 09:34:57 2019-10-27 09:35:00 t 1 1 137304 562 0.00 2019-10-27 09:33:54 2019-10-27 09:35:33 t 1 1 137309 430 0.00 2019-10-27 09:38:29 2019-10-27 09:38:41 t 1 1 137314 522 0.00 2019-10-27 09:35:07 2019-10-27 09:46:42 t 1 1 137322 522 0.00 2019-10-27 09:54:58 2019-10-27 09:55:01 t 1 1 137327 562 0.00 2019-10-27 09:47:30 2019-10-27 10:00:17 t 1 1 137329 522 0.00 2019-10-27 10:01:04 2019-10-27 10:01:07 t 1 1 137331 581 0.00 2019-10-27 09:53:26 2019-10-27 10:02:00 t 1 1 137339 562 0.00 2019-10-27 10:04:07 2019-10-27 10:04:33 t 1 1 137342 581 0.00 2019-10-27 10:02:31 2019-10-27 10:05:47 t 1 1 137346 522 0.00 2019-10-27 10:06:51 2019-10-27 10:07:05 t 1 1 137347 522 0.00 2019-10-27 10:07:16 2019-10-27 10:07:21 t 1 1 137350 522 0.00 2019-10-27 10:09:07 2019-10-27 10:09:23 t 1 1 137356 522 0.00 2019-10-27 10:11:36 2019-10-27 10:11:38 t 1 1 137357 522 0.00 2019-10-27 10:11:44 2019-10-27 10:12:06 t 1 1 137361 327 0.00 2019-10-27 10:11:24 2019-10-27 10:14:30 t 1 1 137363 562 0.00 2019-10-27 10:05:15 2019-10-27 10:14:50 t 1 1 137365 327 0.00 2019-10-27 10:14:59 2019-10-27 10:15:57 t 1 1 137366 522 0.00 2019-10-27 10:16:17 2019-10-27 10:16:26 t 1 1 137368 522 0.00 2019-10-27 10:16:36 2019-10-27 10:16:46 t 1 1 137371 327 0.00 2019-10-27 10:17:22 2019-10-27 10:17:38 t 1 1 137373 522 0.00 2019-10-27 10:17:56 2019-10-27 10:18:18 t 1 1 137379 445 0.00 2019-10-27 09:26:47 2019-10-27 10:19:27 t 1 1 137382 615 0.00 2019-10-27 10:10:45 2019-10-27 10:21:27 t 1 1 137384 522 0.00 2019-10-27 10:21:41 2019-10-27 10:22:27 t 1 1 137386 522 0.00 2019-10-27 10:22:43 2019-10-27 10:22:45 t 1 1 137387 327 0.00 2019-10-27 10:19:48 2019-10-27 10:23:10 t 1 1 137390 522 0.00 2019-10-27 10:23:44 2019-10-27 10:23:49 t 1 1 137394 522 0.00 2019-10-27 10:24:40 2019-10-27 10:24:41 t 1 1 137397 591 0.00 2019-10-27 10:19:05 2019-10-27 10:25:07 t 1 1 137399 562 0.00 2019-10-27 10:25:20 2019-10-27 10:26:04 t 1 1 137404 522 0.00 2019-10-27 10:28:37 2019-10-27 10:28:38 t 1 1 137406 522 0.00 2019-10-27 10:29:18 2019-10-27 10:29:28 t 1 1 137409 591 0.00 2019-10-27 10:25:07 2019-10-27 10:30:40 t 1 1 137411 327 0.00 2019-10-27 10:31:08 2019-10-27 10:31:20 t 1 1 137414 327 0.00 2019-10-27 10:31:35 2019-10-27 10:31:42 t 1 1 137416 522 0.00 2019-10-27 10:31:49 2019-10-27 10:31:57 t 1 1 137419 327 0.00 2019-10-27 10:32:29 2019-10-27 10:33:13 t 1 1 137420 585 0.00 2019-10-27 10:15:28 2019-10-27 10:33:45 t 1 1 137433 327 0.00 2019-10-27 10:38:46 2019-10-27 10:40:05 t 1 1 137437 327 0.00 2019-10-27 10:40:48 2019-10-27 10:41:09 t 1 1 137443 327 0.00 2019-10-27 10:42:14 2019-10-27 10:42:48 t 1 1 137445 522 0.00 2019-10-27 10:42:56 2019-10-27 10:43:01 t 1 1 137448 522 0.00 2019-10-27 10:44:03 2019-10-27 10:44:19 t 1 1 137450 522 0.00 2019-10-27 10:45:00 2019-10-27 10:45:11 t 1 1 137451 522 0.00 2019-10-27 10:45:16 2019-10-27 10:45:49 t 1 1 137453 591 0.00 2019-10-27 10:39:54 2019-10-27 10:46:03 t 1 1 137455 522 0.00 2019-10-27 10:46:09 2019-10-27 10:46:11 t 1 1 137456 585 0.00 2019-10-27 10:39:23 2019-10-27 10:46:18 t 1 1 137461 522 0.00 2019-10-27 10:46:55 2019-10-27 10:47:01 t 1 1 65878 131 0.00 2018-06-06 13:41:18 2018-06-06 13:42:42 t 1 1 137463 327 0.00 2019-10-27 10:45:34 2019-10-27 10:47:52 t 1 1 137464 522 0.00 2019-10-27 10:48:03 2019-10-27 10:48:05 t 1 1 137473 327 0.00 2019-10-27 10:55:48 2019-10-27 10:57:05 t 1 1 137475 528 0.00 2019-10-27 10:56:51 2019-10-27 10:57:26 t 1 1 137477 327 0.00 2019-10-27 10:57:18 2019-10-27 10:58:07 t 1 1 137479 528 0.00 2019-10-27 10:58:38 2019-10-27 10:59:07 t 1 1 137481 522 0.00 2019-10-27 10:59:30 2019-10-27 10:59:44 t 1 1 137484 522 0.00 2019-10-27 10:59:44 2019-10-27 10:59:47 t 1 1 137486 528 0.00 2019-10-27 10:59:20 2019-10-27 11:00:11 t 1 1 137488 562 0.00 2019-10-27 11:00:16 2019-10-27 11:00:34 t 1 1 137489 562 0.00 2019-10-27 11:00:58 2019-10-27 11:01:03 t 1 1 137491 528 0.00 2019-10-27 11:01:27 2019-10-27 11:01:52 t 1 1 137496 327 0.00 2019-10-27 11:02:12 2019-10-27 11:02:51 t 1 1 137497 528 0.00 2019-10-27 11:02:22 2019-10-27 11:02:56 t 1 1 137498 522 0.00 2019-10-27 11:02:55 2019-10-27 11:03:22 t 1 1 137500 528 0.00 2019-10-27 11:03:10 2019-10-27 11:03:34 t 1 1 137502 327 0.00 2019-10-27 11:02:56 2019-10-27 11:04:51 t 1 1 137388 522 0.00 2019-10-27 10:23:04 2019-10-27 10:23:26 t 1 1 137391 570 0.00 2019-10-27 09:16:04 2019-10-27 10:23:58 t 1 1 137396 562 0.00 2019-10-27 10:15:49 2019-10-27 10:25:07 t 1 1 137400 522 0.00 2019-10-27 10:26:25 2019-10-27 10:26:37 t 1 1 137403 327 0.00 2019-10-27 10:24:28 2019-10-27 10:27:44 t 1 1 137408 327 0.00 2019-10-27 10:29:23 2019-10-27 10:29:56 t 1 1 137413 522 0.00 2019-10-27 10:31:38 2019-10-27 10:31:39 t 1 1 137417 522 0.00 2019-10-27 10:32:40 2019-10-27 10:32:41 t 1 1 65665 131 0.00 2018-06-03 13:50:03 2018-06-03 13:51:11 t 1 1 137423 445 0.00 2019-10-27 10:24:36 2019-10-27 10:34:18 t 1 1 65682 131 0.00 2018-06-03 16:01:22 2018-06-03 16:03:11 t 1 1 137427 327 0.00 2019-10-27 10:35:40 2019-10-27 10:36:55 t 1 1 137428 585 0.00 2019-10-27 10:34:17 2019-10-27 10:38:22 t 1 1 137430 445 0.00 2019-10-27 10:37:56 2019-10-27 10:39:08 t 1 1 137431 522 0.00 2019-10-27 10:37:30 2019-10-27 10:39:55 t 1 1 137432 611 0.00 2019-10-27 10:35:32 2019-10-27 10:40:04 t 1 1 137434 522 0.00 2019-10-27 10:40:06 2019-10-27 10:40:12 t 1 1 137436 522 0.00 2019-10-27 10:41:03 2019-10-27 10:41:05 t 1 1 137438 522 0.00 2019-10-27 10:41:10 2019-10-27 10:41:12 t 1 1 137440 522 0.00 2019-10-27 10:41:17 2019-10-27 10:41:46 t 1 1 137444 522 0.00 2019-10-27 10:42:49 2019-10-27 10:42:50 t 1 1 137446 522 0.00 2019-10-27 10:43:22 2019-10-27 10:43:50 t 1 1 137447 327 0.00 2019-10-27 10:42:59 2019-10-27 10:44:04 t 1 1 137449 522 0.00 2019-10-27 10:44:26 2019-10-27 10:44:49 t 1 1 137452 522 0.00 2019-10-27 10:45:54 2019-10-27 10:45:56 t 1 1 137459 522 0.00 2019-10-27 10:46:28 2019-10-27 10:46:50 t 1 1 137462 522 0.00 2019-10-27 10:47:06 2019-10-27 10:47:07 t 1 1 137465 522 0.00 2019-10-27 10:48:10 2019-10-27 10:48:16 t 1 1 137466 327 0.00 2019-10-27 10:48:23 2019-10-27 10:48:57 t 1 1 137472 585 0.00 2019-10-27 10:49:55 2019-10-27 10:57:01 t 1 1 137476 445 0.00 2019-10-27 10:38:34 2019-10-27 10:58:05 t 1 1 137483 615 0.00 2019-10-27 10:55:54 2019-10-27 10:59:45 t 1 1 137487 522 0.00 2019-10-27 11:00:06 2019-10-27 11:00:34 t 1 1 137490 327 0.00 2019-10-27 10:58:12 2019-10-27 11:01:16 t 1 1 137492 327 0.00 2019-10-27 11:01:29 2019-10-27 11:02:07 t 1 1 137493 522 0.00 2019-10-27 11:01:15 2019-10-27 11:02:16 t 1 1 137495 522 0.00 2019-10-27 11:02:08 2019-10-27 11:02:41 t 1 1 137504 327 0.00 2019-10-27 11:05:18 2019-10-27 11:05:49 t 1 1 137508 522 0.00 2019-10-27 11:07:19 2019-10-27 11:07:27 t 1 1 137510 522 0.00 2019-10-27 11:08:21 2019-10-27 11:08:29 t 1 1 137514 327 0.00 2019-10-27 11:08:12 2019-10-27 11:09:12 t 1 1 137517 327 0.00 2019-10-27 11:11:02 2019-10-27 11:11:37 t 1 1 137518 327 0.00 2019-10-27 11:11:54 2019-10-27 11:12:36 t 1 1 137519 445 0.00 2019-10-27 11:11:59 2019-10-27 11:13:02 t 1 1 137523 562 0.00 2019-10-27 11:12:06 2019-10-27 11:13:47 t 1 1 137525 327 0.00 2019-10-27 11:12:57 2019-10-27 11:14:12 t 1 1 137530 528 0.00 2019-10-27 11:05:35 2019-10-27 11:15:47 t 1 1 137531 522 0.00 2019-10-27 11:15:41 2019-10-27 11:16:06 t 1 1 137534 327 0.00 2019-10-27 11:15:59 2019-10-27 11:18:30 t 1 1 137536 522 0.00 2019-10-27 11:18:36 2019-10-27 11:20:08 t 1 1 137538 522 0.00 2019-10-27 11:20:36 2019-10-27 11:22:08 t 1 1 137539 570 0.00 2019-10-27 11:15:40 2019-10-27 11:22:40 t 1 1 137545 522 0.00 2019-10-27 11:24:55 2019-10-27 11:24:55 t 1 1 137548 327 0.00 2019-10-27 11:24:21 2019-10-27 11:25:55 t 1 1 137551 327 0.00 2019-10-27 11:26:52 2019-10-27 11:28:20 t 1 1 137554 562 0.00 2019-10-27 11:30:25 2019-10-27 11:30:47 t 1 1 137555 445 0.00 2019-10-27 11:26:12 2019-10-27 11:31:00 t 1 1 137557 485 0.00 2019-10-27 11:28:00 2019-10-27 11:31:10 t 1 1 137563 522 0.00 2019-10-27 11:32:49 2019-10-27 11:33:13 t 1 1 137569 564 0.00 2019-10-27 10:04:51 2019-10-27 11:34:52 t 1 1 137577 327 0.00 2019-10-27 11:36:53 2019-10-27 11:38:45 t 1 1 137579 522 0.00 2019-10-27 11:37:33 2019-10-27 11:38:54 t 1 1 137582 522 0.00 2019-10-27 11:39:56 2019-10-27 11:40:10 t 1 1 137584 570 0.00 2019-10-27 11:32:19 2019-10-27 11:40:41 t 1 1 137588 562 0.00 2019-10-27 11:40:16 2019-10-27 11:41:37 t 1 1 137590 327 0.00 2019-10-27 11:41:03 2019-10-27 11:42:48 t 1 1 137591 522 0.00 2019-10-27 11:42:36 2019-10-27 11:43:03 t 1 1 137592 522 0.00 2019-10-27 11:43:58 2019-10-27 11:44:07 t 1 1 137594 522 0.00 2019-10-27 11:44:59 2019-10-27 11:44:59 t 1 1 137596 522 0.00 2019-10-27 11:46:15 2019-10-27 11:46:26 t 1 1 65861 131 0.00 2018-06-06 12:34:48 2018-06-06 12:36:42 t 1 1 137598 522 0.00 2019-10-27 11:45:59 2019-10-27 11:47:08 t 1 1 137601 327 0.00 2019-10-27 11:48:26 2019-10-27 11:48:59 t 1 1 137604 562 0.00 2019-10-27 11:51:09 2019-10-27 11:51:25 t 1 1 137609 327 0.00 2019-10-27 11:53:36 2019-10-27 11:55:58 t 1 1 137611 327 0.00 2019-10-27 11:58:32 2019-10-27 12:00:42 t 1 1 137616 327 0.00 2019-10-27 12:02:15 2019-10-27 12:03:49 t 1 1 137617 327 0.00 2019-10-27 12:04:06 2019-10-27 12:06:13 t 1 1 137618 361 0.00 2019-10-27 11:22:26 2019-10-27 12:07:17 t 1 2 137621 327 0.00 2019-10-27 12:08:36 2019-10-27 12:08:42 t 1 1 137627 327 0.00 2019-10-27 12:12:09 2019-10-27 12:12:47 t 1 1 137631 556 0.00 2019-10-27 10:03:51 2019-10-27 12:16:03 t 1 1 137633 528 0.00 2019-10-27 11:16:23 2019-10-27 12:18:21 t 1 1 137636 445 0.00 2019-10-27 11:41:55 2019-10-27 12:19:41 t 1 1 137638 591 0.00 2019-10-27 12:15:56 2019-10-27 12:20:44 t 1 1 137641 327 0.00 2019-10-27 12:22:16 2019-10-27 12:23:44 t 1 1 137642 498 0.00 2019-10-27 10:32:19 2019-10-27 12:24:12 t 1 2 137643 597 0.00 2019-10-27 12:09:09 2019-10-27 12:27:51 t 1 1 137644 327 0.00 2019-10-27 12:23:59 2019-10-27 12:28:56 t 1 1 137654 562 0.00 2019-10-27 12:34:41 2019-10-27 12:36:21 t 1 1 137665 607 0.00 2019-10-27 12:36:04 2019-10-27 12:52:56 t 1 1 137667 520 0.00 2019-10-27 12:42:28 2019-10-27 12:55:35 t 1 1 137675 562 0.00 2019-10-27 13:03:16 2019-10-27 13:04:05 t 1 1 137677 327 0.00 2019-10-27 13:01:12 2019-10-27 13:05:32 t 1 1 137684 562 0.00 2019-10-27 13:10:15 2019-10-27 13:10:22 t 1 1 137686 490 0.00 2019-10-27 13:06:13 2019-10-27 13:11:10 t 1 1 137692 327 0.00 2019-10-27 13:16:26 2019-10-27 13:16:59 t 1 1 137693 589 0.00 2019-10-27 12:52:21 2019-10-27 13:18:30 t 1 1 65936 131 0.00 2018-06-07 11:20:09 2018-06-07 11:21:45 t 1 1 137694 327 0.00 2019-10-27 13:19:11 2019-10-27 13:19:45 t 1 1 137697 430 0.00 2019-10-27 13:21:03 2019-10-27 13:21:44 t 1 1 137699 327 0.00 2019-10-27 13:20:14 2019-10-27 13:23:59 t 1 1 137700 564 0.00 2019-10-27 11:34:52 2019-10-27 13:25:01 t 1 1 137701 581 0.00 2019-10-27 13:05:42 2019-10-27 13:25:42 t 1 1 137703 562 0.00 2019-10-27 13:26:57 2019-10-27 13:27:19 t 1 1 137704 578 0.00 2019-10-27 11:41:23 2019-10-27 13:29:18 t 1 1 137707 591 0.00 2019-10-27 13:30:35 2019-10-27 13:32:25 t 1 1 137422 585 0.00 2019-10-27 10:33:45 2019-10-27 10:34:17 t 1 1 65946 131 0.00 2018-06-07 12:42:15 2018-06-07 12:44:08 t 1 1 137424 522 0.00 2019-10-27 10:34:39 2019-10-27 10:34:42 t 1 1 137425 522 0.00 2019-10-27 10:35:10 2019-10-27 10:35:56 t 1 1 137426 591 0.00 2019-10-27 10:30:40 2019-10-27 10:36:44 t 1 1 137429 327 0.00 2019-10-27 10:37:43 2019-10-27 10:38:41 t 1 1 137435 522 0.00 2019-10-27 10:40:17 2019-10-27 10:40:45 t 1 1 65982 131 0.00 2018-06-07 16:47:10 2018-06-07 16:49:08 t 1 1 65983 131 0.00 2018-06-07 16:49:40 2018-06-07 16:49:59 t 1 1 137439 562 0.00 2019-10-27 10:38:46 2019-10-27 10:41:44 t 1 1 137441 522 0.00 2019-10-27 10:41:51 2019-10-27 10:41:55 t 1 1 137442 522 0.00 2019-10-27 10:42:00 2019-10-27 10:42:01 t 1 1 137454 522 0.00 2019-10-27 10:46:02 2019-10-27 10:46:03 t 1 1 137457 522 0.00 2019-10-27 10:46:16 2019-10-27 10:46:22 t 1 1 137458 562 0.00 2019-10-27 10:46:13 2019-10-27 10:46:47 t 1 1 137460 528 0.00 2019-10-27 10:36:07 2019-10-27 10:46:57 t 1 1 137467 585 0.00 2019-10-27 10:46:30 2019-10-27 10:49:15 t 1 1 137468 327 0.00 2019-10-27 10:50:25 2019-10-27 10:50:59 t 1 1 137469 611 0.00 2019-10-27 10:51:31 2019-10-27 10:51:57 t 1 1 137470 327 0.00 2019-10-27 10:52:05 2019-10-27 10:52:36 t 1 1 137471 327 0.00 2019-10-27 10:52:51 2019-10-27 10:54:59 t 1 1 137474 591 0.00 2019-10-27 10:46:03 2019-10-27 10:57:11 t 1 1 137478 562 0.00 2019-10-27 10:51:23 2019-10-27 10:58:59 t 1 1 137480 522 0.00 2019-10-27 10:48:29 2019-10-27 10:59:17 t 1 1 137482 562 0.00 2019-10-27 10:59:36 2019-10-27 10:59:44 t 1 1 137485 522 0.00 2019-10-27 10:59:52 2019-10-27 11:00:01 t 1 1 137494 562 0.00 2019-10-27 11:01:30 2019-10-27 11:02:38 t 1 1 137499 481 0.00 2019-10-27 08:43:50 2019-10-27 11:03:29 t 1 1 137501 522 0.00 2019-10-27 11:04:18 2019-10-27 11:04:26 t 1 1 137505 562 0.00 2019-10-27 11:04:41 2019-10-27 11:05:59 t 1 1 137506 522 0.00 2019-10-27 11:06:18 2019-10-27 11:06:26 t 1 1 137509 327 0.00 2019-10-27 11:05:59 2019-10-27 11:08:01 t 1 1 137512 562 0.00 2019-10-27 11:08:28 2019-10-27 11:08:55 t 1 1 137521 522 0.00 2019-10-27 11:12:08 2019-10-27 11:13:11 t 1 1 137524 522 0.00 2019-10-27 11:13:39 2019-10-27 11:14:04 t 1 1 137528 570 0.00 2019-10-27 10:31:32 2019-10-27 11:15:40 t 1 1 137529 327 0.00 2019-10-27 11:15:10 2019-10-27 11:15:44 t 1 1 137533 522 0.00 2019-10-27 11:17:53 2019-10-27 11:18:02 t 1 1 137535 562 0.00 2019-10-27 11:19:41 2019-10-27 11:20:02 t 1 1 137540 327 0.00 2019-10-27 11:19:27 2019-10-27 11:22:50 t 1 1 137541 327 0.00 2019-10-27 11:22:55 2019-10-27 11:23:09 t 1 1 137547 445 0.00 2019-10-27 11:17:12 2019-10-27 11:25:55 t 1 1 137549 522 0.00 2019-10-27 11:24:38 2019-10-27 11:26:08 t 1 1 137556 522 0.00 2019-10-27 11:29:40 2019-10-27 11:31:08 t 1 1 137559 327 0.00 2019-10-27 11:30:58 2019-10-27 11:31:52 t 1 1 137560 570 0.00 2019-10-27 11:22:40 2019-10-27 11:32:19 t 1 1 137561 522 0.00 2019-10-27 11:31:42 2019-10-27 11:32:43 t 1 1 137562 522 0.00 2019-10-27 11:32:03 2019-10-27 11:33:08 t 1 1 137567 522 0.00 2019-10-27 11:33:56 2019-10-27 11:34:20 t 1 1 137570 522 0.00 2019-10-27 11:34:30 2019-10-27 11:34:54 t 1 1 137572 327 0.00 2019-10-27 11:34:22 2019-10-27 11:35:50 t 1 1 137573 220 0.00 2019-10-27 11:22:19 2019-10-27 11:35:59 t 1 1 137574 514 0.00 2019-10-27 11:24:56 2019-10-27 11:36:15 t 1 1 137575 327 0.00 2019-10-27 11:36:05 2019-10-27 11:36:37 t 1 1 137578 220 0.00 2019-10-27 11:35:59 2019-10-27 11:38:47 t 1 1 137580 591 0.00 2019-10-27 11:36:57 2019-10-27 11:39:06 t 1 1 137583 445 0.00 2019-10-27 11:35:15 2019-10-27 11:40:32 t 1 1 137586 522 0.00 2019-10-27 11:40:49 2019-10-27 11:41:00 t 1 1 137603 327 0.00 2019-10-27 11:50:01 2019-10-27 11:50:56 t 1 1 137606 327 0.00 2019-10-27 11:52:14 2019-10-27 11:52:48 t 1 1 137607 327 0.00 2019-10-27 11:52:55 2019-10-27 11:53:27 t 1 1 137612 597 0.00 2019-10-27 11:31:26 2019-10-27 12:00:51 t 1 1 137614 562 0.00 2019-10-27 12:01:56 2019-10-27 12:02:10 t 1 1 137615 597 0.00 2019-10-27 12:00:51 2019-10-27 12:03:10 t 1 1 137619 327 0.00 2019-10-27 12:06:39 2019-10-27 12:08:09 t 1 1 137622 327 0.00 2019-10-27 12:08:49 2019-10-27 12:08:52 t 1 1 137625 327 0.00 2019-10-27 12:11:13 2019-10-27 12:12:00 t 1 1 137626 591 0.00 2019-10-27 12:09:03 2019-10-27 12:12:46 t 1 1 137629 514 0.00 2019-10-27 11:36:15 2019-10-27 12:13:38 t 1 1 137630 327 0.00 2019-10-27 12:13:14 2019-10-27 12:14:20 t 1 1 137637 327 0.00 2019-10-27 12:19:15 2019-10-27 12:20:36 t 1 1 137640 562 0.00 2019-10-27 12:22:28 2019-10-27 12:23:13 t 1 1 137645 516 0.00 2019-10-27 12:15:36 2019-10-27 12:29:02 t 1 1 137648 327 0.00 2019-10-27 12:31:12 2019-10-27 12:32:15 t 1 1 137650 562 0.00 2019-10-27 12:31:23 2019-10-27 12:33:25 t 1 1 137653 327 0.00 2019-10-27 12:33:41 2019-10-27 12:35:12 t 1 1 137656 615 0.00 2019-10-27 12:39:33 2019-10-27 12:41:20 t 1 1 137657 562 0.00 2019-10-27 12:43:28 2019-10-27 12:44:07 t 1 1 137660 327 0.00 2019-10-27 12:49:51 2019-10-27 12:50:27 t 1 1 137662 327 0.00 2019-10-27 12:52:28 2019-10-27 12:52:29 t 1 1 137664 430 0.00 2019-10-27 12:27:30 2019-10-27 12:52:46 t 1 1 137666 327 0.00 2019-10-27 12:52:42 2019-10-27 12:53:18 t 1 1 137670 430 0.00 2019-10-27 12:55:46 2019-10-27 12:56:19 t 1 1 137671 562 0.00 2019-10-27 12:56:53 2019-10-27 12:57:38 t 1 1 137672 325 0.00 2019-10-27 12:19:00 2019-10-27 12:59:25 t 1 2 137674 327 0.00 2019-10-27 12:53:38 2019-10-27 13:01:12 t 1 1 137676 430 0.00 2019-10-27 13:04:40 2019-10-27 13:04:49 t 1 1 137680 562 0.00 2019-10-27 13:07:37 2019-10-27 13:07:53 t 1 1 66223 131 0.00 2018-06-09 15:00:52 2018-06-09 15:00:57 t 1 1 137681 327 0.00 2019-10-27 13:08:07 2019-10-27 13:08:41 t 1 1 137682 327 0.00 2019-10-27 13:08:52 2019-10-27 13:09:30 t 1 1 137683 430 0.00 2019-10-27 13:09:46 2019-10-27 13:09:56 t 1 1 137685 327 0.00 2019-10-27 13:09:55 2019-10-27 13:11:03 t 1 1 137688 327 0.00 2019-10-27 13:11:40 2019-10-27 13:13:37 t 1 1 137690 327 0.00 2019-10-27 13:15:13 2019-10-27 13:16:21 t 1 1 137696 607 0.00 2019-10-27 12:54:40 2019-10-27 13:21:38 t 1 1 137705 327 0.00 2019-10-27 13:27:14 2019-10-27 13:29:42 t 1 1 137709 430 0.00 2019-10-27 13:31:21 2019-10-27 13:33:08 t 1 1 137711 327 0.00 2019-10-27 13:32:53 2019-10-27 13:33:34 t 1 1 137717 485 0.00 2019-10-27 13:34:42 2019-10-27 13:36:20 t 1 1 137719 578 0.00 2019-10-27 13:29:18 2019-10-27 13:37:15 t 1 1 137720 589 0.00 2019-10-27 13:20:03 2019-10-27 13:37:57 t 1 1 137721 570 0.00 2019-10-27 11:40:41 2019-10-27 13:38:06 t 1 1 137725 430 0.00 2019-10-27 13:39:45 2019-10-27 13:39:56 t 1 1 137726 430 0.00 2019-10-27 13:41:19 2019-10-27 13:41:31 t 1 1 137729 327 0.00 2019-10-27 13:44:00 2019-10-27 13:44:06 t 1 1 137732 327 0.00 2019-10-27 13:44:17 2019-10-27 13:45:09 t 1 1 137503 522 0.00 2019-10-27 11:05:18 2019-10-27 11:05:30 t 1 1 137507 591 0.00 2019-10-27 11:03:55 2019-10-27 11:07:06 t 1 1 137511 615 0.00 2019-10-27 11:05:19 2019-10-27 11:08:51 t 1 1 137513 514 0.00 2019-10-27 03:57:22 2019-10-27 11:09:04 t 1 1 137515 522 0.00 2019-10-27 11:10:23 2019-10-27 11:10:33 t 1 1 137516 445 0.00 2019-10-27 10:59:04 2019-10-27 11:11:18 t 1 1 137520 522 0.00 2019-10-27 11:11:26 2019-10-27 11:13:08 t 1 1 137522 522 0.00 2019-10-27 11:13:20 2019-10-27 11:13:30 t 1 1 137526 522 0.00 2019-10-27 11:14:13 2019-10-27 11:15:07 t 1 1 137527 522 0.00 2019-10-27 11:15:15 2019-10-27 11:15:32 t 1 1 137532 522 0.00 2019-10-27 11:16:44 2019-10-27 11:17:11 t 1 1 137537 522 0.00 2019-10-27 11:19:44 2019-10-27 11:20:10 t 1 1 137542 327 0.00 2019-10-27 11:23:22 2019-10-27 11:23:38 t 1 1 137543 516 0.00 2019-10-27 11:21:04 2019-10-27 11:24:00 t 1 1 65986 131 0.00 2018-06-07 16:50:53 2018-06-07 16:50:53 f 1 1 137544 562 0.00 2019-10-27 11:23:53 2019-10-27 11:24:38 t 1 1 137546 514 0.00 2019-10-27 11:09:04 2019-10-27 11:24:56 t 1 1 137550 522 0.00 2019-10-27 11:26:46 2019-10-27 11:27:13 t 1 1 137552 522 0.00 2019-10-27 11:27:39 2019-10-27 11:28:40 t 1 1 137553 327 0.00 2019-10-27 11:28:41 2019-10-27 11:30:13 t 1 1 137558 578 0.00 2019-10-27 11:27:14 2019-10-27 11:31:11 t 1 1 137564 445 0.00 2019-10-27 11:31:03 2019-10-27 11:33:20 t 1 1 137565 522 0.00 2019-10-27 11:33:21 2019-10-27 11:33:46 t 1 1 137566 327 0.00 2019-10-27 11:32:37 2019-10-27 11:34:11 t 1 1 137568 445 0.00 2019-10-27 11:33:36 2019-10-27 11:34:22 t 1 1 137571 522 0.00 2019-10-27 11:35:02 2019-10-27 11:35:19 t 1 1 137576 522 0.00 2019-10-27 11:36:07 2019-10-27 11:36:53 t 1 1 137581 585 0.00 2019-10-27 11:36:34 2019-10-27 11:39:55 t 1 1 137585 327 0.00 2019-10-27 11:39:26 2019-10-27 11:40:58 t 1 1 137587 578 0.00 2019-10-27 11:31:11 2019-10-27 11:41:23 t 1 1 137589 522 0.00 2019-10-27 11:41:55 2019-10-27 11:42:03 t 1 1 137593 327 0.00 2019-10-27 11:42:59 2019-10-27 11:44:17 t 1 1 137595 327 0.00 2019-10-27 11:44:32 2019-10-27 11:45:06 t 1 1 137597 522 0.00 2019-10-27 11:46:41 2019-10-27 11:46:41 f 1 1 137599 327 0.00 2019-10-27 11:45:14 2019-10-27 11:47:56 t 1 1 137600 591 0.00 2019-10-27 11:46:28 2019-10-27 11:48:42 t 1 1 137602 522 0.00 2019-10-27 11:46:35 2019-10-27 11:49:08 t 1 1 137605 327 0.00 2019-10-27 11:51:11 2019-10-27 11:51:43 t 1 1 137608 220 0.00 2019-10-27 11:51:59 2019-10-27 11:55:22 t 1 2 137610 327 0.00 2019-10-27 11:57:06 2019-10-27 11:58:21 t 1 1 137613 327 0.00 2019-10-27 12:00:49 2019-10-27 12:02:08 t 1 1 137620 327 0.00 2019-10-27 12:08:24 2019-10-27 12:08:29 t 1 1 137623 220 0.00 2019-10-27 11:38:46 2019-10-27 12:09:40 t 1 1 137624 327 0.00 2019-10-27 12:09:23 2019-10-27 12:10:03 t 1 1 137628 562 0.00 2019-10-27 12:12:37 2019-10-27 12:13:17 t 1 1 137632 562 0.00 2019-10-27 12:16:27 2019-10-27 12:17:35 t 1 1 137634 327 0.00 2019-10-27 12:14:45 2019-10-27 12:18:48 t 1 1 137635 615 0.00 2019-10-27 12:13:05 2019-10-27 12:19:06 t 1 1 137639 327 0.00 2019-10-27 12:20:59 2019-10-27 12:22:08 t 1 1 137646 562 0.00 2019-10-27 12:29:26 2019-10-27 12:30:06 t 1 1 137647 327 0.00 2019-10-27 12:29:27 2019-10-27 12:31:05 t 1 1 137649 220 0.00 2019-10-27 11:40:07 2019-10-27 12:33:08 t 1 2 137651 615 0.00 2019-10-27 12:30:34 2019-10-27 12:33:54 t 1 1 137652 591 0.00 2019-10-27 12:28:12 2019-10-27 12:34:30 t 1 1 137655 562 0.00 2019-10-27 12:39:00 2019-10-27 12:39:39 t 1 1 137658 585 0.00 2019-10-27 12:37:25 2019-10-27 12:47:38 t 1 1 137659 327 0.00 2019-10-27 12:35:59 2019-10-27 12:49:03 t 1 1 137661 327 0.00 2019-10-27 12:50:54 2019-10-27 12:52:03 t 1 1 137663 562 0.00 2019-10-27 12:52:21 2019-10-27 12:52:43 t 1 1 137668 585 0.00 2019-10-27 12:50:41 2019-10-27 12:55:41 t 1 1 137669 562 0.00 2019-10-27 12:55:10 2019-10-27 12:56:00 t 1 1 137673 430 0.00 2019-10-27 12:59:33 2019-10-27 12:59:55 t 1 1 137678 327 0.00 2019-10-27 13:05:50 2019-10-27 13:05:57 t 1 1 137679 327 0.00 2019-10-27 13:06:24 2019-10-27 13:07:50 t 1 1 137687 585 0.00 2019-10-27 13:06:10 2019-10-27 13:11:27 t 1 1 137689 327 0.00 2019-10-27 13:14:06 2019-10-27 13:15:08 t 1 1 137691 562 0.00 2019-10-27 13:16:06 2019-10-27 13:16:33 t 1 1 137695 589 0.00 2019-10-27 13:18:30 2019-10-27 13:20:04 t 1 1 137698 416 0.00 2019-10-27 13:05:07 2019-10-27 13:23:22 t 1 1 137702 430 0.00 2019-10-27 13:25:09 2019-10-27 13:27:08 t 1 1 137706 327 0.00 2019-10-27 13:29:47 2019-10-27 13:30:44 t 1 1 137708 327 0.00 2019-10-27 13:31:27 2019-10-27 13:32:36 t 1 1 137723 430 0.00 2019-10-27 13:38:51 2019-10-27 13:39:02 t 1 1 137728 327 0.00 2019-10-27 13:41:02 2019-10-27 13:43:39 t 1 1 137730 562 0.00 2019-10-27 13:43:56 2019-10-27 13:44:57 t 1 1 137731 585 0.00 2019-10-27 13:39:04 2019-10-27 13:44:59 t 1 1 137736 327 0.00 2019-10-27 13:47:57 2019-10-27 13:48:41 t 1 1 137740 327 0.00 2019-10-27 13:48:54 2019-10-27 13:51:21 t 1 1 137741 430 0.00 2019-10-27 13:51:36 2019-10-27 13:51:53 t 1 1 137745 327 0.00 2019-10-27 13:54:02 2019-10-27 13:55:51 t 1 1 137748 430 0.00 2019-10-27 13:56:51 2019-10-27 13:57:17 t 1 1 137757 589 0.00 2019-10-27 13:52:22 2019-10-27 14:01:40 t 1 1 137759 327 0.00 2019-10-27 14:02:37 2019-10-27 14:04:41 t 1 1 137760 327 0.00 2019-10-27 14:04:52 2019-10-27 14:06:15 t 1 1 137763 327 0.00 2019-10-27 14:07:11 2019-10-27 14:07:18 t 1 1 137764 327 0.00 2019-10-27 14:07:33 2019-10-27 14:08:03 t 1 1 137767 562 0.00 2019-10-27 14:11:27 2019-10-27 14:11:46 t 1 1 137768 430 0.00 2019-10-27 14:12:11 2019-10-27 14:12:16 t 1 1 137779 327 0.00 2019-10-27 14:17:46 2019-10-27 14:20:28 t 1 1 137781 562 0.00 2019-10-27 14:20:54 2019-10-27 14:21:16 t 1 1 137782 564 0.00 2019-10-27 13:25:01 2019-10-27 14:21:59 t 1 1 137790 456 0.00 2019-10-27 14:06:07 2019-10-27 14:26:47 t 1 1 137797 430 0.00 2019-10-27 14:35:44 2019-10-27 14:37:08 t 1 1 137801 430 0.00 2019-10-27 14:41:04 2019-10-27 14:41:19 t 1 1 137804 562 0.00 2019-10-27 14:42:14 2019-10-27 14:42:39 t 1 1 137808 430 0.00 2019-10-27 14:44:51 2019-10-27 14:45:18 t 1 1 137810 430 0.00 2019-10-27 14:47:37 2019-10-27 14:47:48 t 1 1 137812 485 0.00 2019-10-27 14:31:12 2019-10-27 14:49:09 t 1 1 137815 562 0.00 2019-10-27 14:53:13 2019-10-27 14:53:27 t 1 1 137816 591 0.00 2019-10-27 14:52:48 2019-10-27 14:54:51 t 1 1 137822 430 0.00 2019-10-27 14:47:53 2019-10-27 15:00:23 t 1 1 137834 578 0.00 2019-10-27 14:46:19 2019-10-27 15:10:55 t 1 1 137838 327 0.00 2019-10-27 15:07:34 2019-10-27 15:13:00 t 1 1 137843 327 0.00 2019-10-27 15:15:11 2019-10-27 15:15:47 t 1 1 137848 456 0.00 2019-10-27 14:52:06 2019-10-27 15:19:22 t 1 1 137850 562 0.00 2019-10-27 15:19:44 2019-10-27 15:20:10 t 1 1 137852 327 0.00 2019-10-27 15:19:39 2019-10-27 15:22:15 t 1 1 137710 430 0.00 2019-10-27 13:33:06 2019-10-27 13:33:18 t 1 1 137712 430 0.00 2019-10-27 13:33:26 2019-10-27 13:33:40 t 1 1 137713 430 0.00 2019-10-27 13:33:55 2019-10-27 13:34:05 t 1 1 137714 485 0.00 2019-10-27 13:02:30 2019-10-27 13:34:43 t 1 1 137715 430 0.00 2019-10-27 13:34:44 2019-10-27 13:34:51 t 1 1 137716 562 0.00 2019-10-27 13:34:47 2019-10-27 13:34:57 t 1 1 137718 327 0.00 2019-10-27 13:34:17 2019-10-27 13:36:27 t 1 1 137722 327 0.00 2019-10-27 13:37:24 2019-10-27 13:38:33 t 1 1 137724 327 0.00 2019-10-27 13:39:02 2019-10-27 13:39:38 t 1 1 137727 562 0.00 2019-10-27 13:42:38 2019-10-27 13:43:07 t 1 1 137734 430 0.00 2019-10-27 13:46:21 2019-10-27 13:46:35 t 1 1 137735 327 0.00 2019-10-27 13:47:01 2019-10-27 13:47:48 t 1 1 137738 585 0.00 2019-10-27 13:46:17 2019-10-27 13:49:37 t 1 1 137742 589 0.00 2019-10-27 13:38:05 2019-10-27 13:52:22 t 1 1 137747 430 0.00 2019-10-27 13:56:40 2019-10-27 13:56:46 t 1 1 65981 131 0.00 2018-06-07 16:46:32 2018-06-07 16:47:10 t 1 1 65984 131 0.00 2018-06-07 16:49:59 2018-06-07 16:50:29 t 1 1 65985 131 0.00 2018-06-07 16:50:29 2018-06-07 16:50:53 t 1 1 65987 131 0.00 2018-06-07 16:51:07 2018-06-07 16:52:08 t 1 1 65988 131 0.00 2018-06-07 17:04:48 2018-06-07 17:06:08 t 1 1 137750 607 0.00 2019-10-27 13:58:27 2019-10-27 13:58:27 f 1 1 137752 327 0.00 2019-10-27 13:58:25 2019-10-27 13:59:28 t 1 1 137754 327 0.00 2019-10-27 13:59:35 2019-10-27 14:00:40 t 1 1 137755 562 0.00 2019-10-27 14:00:47 2019-10-27 14:01:02 t 1 1 137756 430 0.00 2019-10-27 14:01:31 2019-10-27 14:01:32 t 1 1 137762 430 0.00 2019-10-27 14:07:08 2019-10-27 14:07:15 t 1 1 137765 327 0.00 2019-10-27 14:08:10 2019-10-27 14:08:40 t 1 1 137766 589 0.00 2019-10-27 14:01:40 2019-10-27 14:09:37 t 1 1 137769 430 0.00 2019-10-27 14:12:21 2019-10-27 14:12:28 t 1 1 137772 327 0.00 2019-10-27 14:10:33 2019-10-27 14:15:02 t 1 1 137773 327 0.00 2019-10-27 14:15:21 2019-10-27 14:15:57 t 1 1 137775 562 0.00 2019-10-27 14:16:09 2019-10-27 14:16:26 t 1 1 137777 589 0.00 2019-10-27 14:09:37 2019-10-27 14:19:35 t 1 1 137778 597 0.00 2019-10-27 14:04:08 2019-10-27 14:20:13 t 1 1 137780 327 0.00 2019-10-27 14:20:37 2019-10-27 14:21:13 t 1 1 137784 327 0.00 2019-10-27 14:21:58 2019-10-27 14:22:30 t 1 1 137789 339 0.00 2019-10-27 14:24:15 2019-10-27 14:24:44 t 1 2 137791 585 0.00 2019-10-27 13:50:01 2019-10-27 14:29:15 t 1 1 66045 131 0.00 2018-06-08 11:46:08 2018-06-08 11:47:09 t 1 1 137793 562 0.00 2019-10-27 14:31:48 2019-10-27 14:31:58 t 1 1 137799 430 0.00 2019-10-27 14:40:35 2019-10-27 14:40:43 t 1 1 137800 430 0.00 2019-10-27 14:40:06 2019-10-27 14:41:08 t 1 1 137802 591 0.00 2019-10-27 14:01:48 2019-10-27 14:41:57 t 1 1 137803 585 0.00 2019-10-27 14:37:36 2019-10-27 14:42:38 t 1 1 137806 430 0.00 2019-10-27 14:41:32 2019-10-27 14:43:49 t 1 1 137807 430 0.00 2019-10-27 14:43:49 2019-10-27 14:44:46 t 1 1 137809 578 0.00 2019-10-27 13:37:15 2019-10-27 14:46:19 t 1 1 137819 562 0.00 2019-10-27 14:57:53 2019-10-27 14:58:07 t 1 1 137821 514 0.00 2019-10-27 12:13:38 2019-10-27 14:59:10 t 1 1 137824 430 0.00 2019-10-27 15:00:44 2019-10-27 15:04:18 t 1 1 137826 544 0.00 2019-10-27 15:01:31 2019-10-27 15:05:57 t 1 2 137827 514 0.00 2019-10-27 14:59:10 2019-10-27 15:06:57 t 1 1 137828 327 0.00 2019-10-27 14:47:50 2019-10-27 15:07:13 t 1 1 137830 538 0.00 2019-10-27 14:31:24 2019-10-27 15:07:31 t 1 1 137832 562 0.00 2019-10-27 15:07:51 2019-10-27 15:08:07 t 1 1 137833 562 0.00 2019-10-27 15:09:17 2019-10-27 15:09:27 t 1 1 137836 485 0.00 2019-10-27 15:09:49 2019-10-27 15:12:56 t 1 1 137840 327 0.00 2019-10-27 15:14:20 2019-10-27 15:14:58 t 1 1 137842 538 0.00 2019-10-27 15:13:39 2019-10-27 15:15:44 t 1 1 137847 327 0.00 2019-10-27 15:17:27 2019-10-27 15:19:12 t 1 1 137849 538 0.00 2019-10-27 15:17:49 2019-10-27 15:19:42 t 1 1 137855 327 0.00 2019-10-27 15:24:03 2019-10-27 15:24:33 t 1 1 137857 327 0.00 2019-10-27 15:25:04 2019-10-27 15:25:35 t 1 1 137860 528 0.00 2019-10-27 15:25:15 2019-10-27 15:28:16 t 1 1 137862 528 0.00 2019-10-27 15:28:35 2019-10-27 15:29:56 t 1 1 137863 485 0.00 2019-10-27 15:26:47 2019-10-27 15:30:53 t 1 1 137867 514 0.00 2019-10-27 15:06:57 2019-10-27 15:34:26 t 1 1 137869 589 0.00 2019-10-27 15:37:11 2019-10-27 15:37:19 t 1 1 137872 327 0.00 2019-10-27 15:34:51 2019-10-27 15:41:01 t 1 1 137875 445 0.00 2019-10-27 15:35:13 2019-10-27 15:43:54 t 1 1 137877 327 0.00 2019-10-27 15:41:01 2019-10-27 15:45:51 t 1 1 137879 327 0.00 2019-10-27 15:47:44 2019-10-27 15:47:49 t 1 1 137890 327 0.00 2019-10-27 15:56:42 2019-10-27 15:57:51 t 1 1 137891 327 0.00 2019-10-27 15:58:38 2019-10-27 16:00:04 t 1 1 137894 220 0.00 2019-10-27 15:52:02 2019-10-27 16:03:43 t 1 1 137895 578 0.00 2019-10-27 15:57:29 2019-10-27 16:04:12 t 1 1 137898 327 0.00 2019-10-27 16:05:23 2019-10-27 16:05:59 t 1 1 137900 327 0.00 2019-10-27 16:09:22 2019-10-27 16:10:19 t 1 1 137901 327 0.00 2019-10-27 16:10:34 2019-10-27 16:11:13 t 1 1 137904 327 0.00 2019-10-27 16:11:30 2019-10-27 16:12:37 t 1 1 137905 518 0.00 2019-10-27 15:18:15 2019-10-27 16:13:20 t 1 2 137907 562 0.00 2019-10-27 15:42:09 2019-10-27 16:13:36 t 1 1 137910 562 0.00 2019-10-27 16:13:46 2019-10-27 16:15:32 t 1 1 137915 445 0.00 2019-10-27 15:44:54 2019-10-27 16:19:44 t 1 1 137918 327 0.00 2019-10-27 16:21:07 2019-10-27 16:21:40 t 1 1 137921 485 0.00 2019-10-27 16:19:52 2019-10-27 16:22:47 t 1 1 137922 481 0.00 2019-10-27 11:03:29 2019-10-27 16:23:00 t 1 1 137925 327 0.00 2019-10-27 16:24:39 2019-10-27 16:25:30 t 1 1 137926 538 0.00 2019-10-27 16:22:35 2019-10-27 16:26:02 t 1 1 137932 528 0.00 2019-10-27 16:14:18 2019-10-27 16:30:33 t 1 1 137934 327 0.00 2019-10-27 16:30:26 2019-10-27 16:31:34 t 1 1 137935 538 0.00 2019-10-27 16:26:08 2019-10-27 16:32:18 t 1 1 137937 587 0.00 2019-10-27 16:29:52 2019-10-27 16:33:03 t 1 1 137940 485 0.00 2019-10-27 16:22:47 2019-10-27 16:34:49 t 1 1 137944 587 0.00 2019-10-27 16:35:23 2019-10-27 16:36:14 t 1 1 137946 562 0.00 2019-10-27 16:33:35 2019-10-27 16:37:49 t 1 1 137950 488 0.00 2019-10-27 16:35:34 2019-10-27 16:40:34 t 1 1 137954 587 0.00 2019-10-27 16:36:45 2019-10-27 16:43:47 t 1 1 137956 591 0.00 2019-10-27 16:22:41 2019-10-27 16:44:01 t 1 1 137958 485 0.00 2019-10-27 16:44:22 2019-10-27 16:46:16 t 1 1 137961 445 0.00 2019-10-27 16:42:21 2019-10-27 16:47:29 t 1 1 137962 327 0.00 2019-10-27 16:46:44 2019-10-27 16:48:22 t 1 1 137966 327 0.00 2019-10-27 16:51:49 2019-10-27 16:53:23 t 1 1 137969 327 0.00 2019-10-27 16:53:34 2019-10-27 16:55:11 t 1 1 137974 514 0.00 2019-10-27 16:47:23 2019-10-27 16:58:43 t 1 1 137976 485 0.00 2019-10-27 16:57:27 2019-10-27 16:58:46 t 1 1 137978 611 0.00 2019-10-27 16:59:05 2019-10-27 16:59:47 t 1 1 137733 327 0.00 2019-10-27 13:45:26 2019-10-27 13:46:34 t 1 1 137737 562 0.00 2019-10-27 13:48:28 2019-10-27 13:49:29 t 1 1 137739 445 0.00 2019-10-27 12:19:53 2019-10-27 13:51:16 t 1 1 137743 327 0.00 2019-10-27 13:51:32 2019-10-27 13:52:26 t 1 1 137744 327 0.00 2019-10-27 13:52:33 2019-10-27 13:53:13 t 1 1 137746 327 0.00 2019-10-27 13:56:10 2019-10-27 13:56:44 t 1 1 137749 327 0.00 2019-10-27 13:57:00 2019-10-27 13:57:30 t 1 1 137751 607 0.00 2019-10-27 13:45:52 2019-10-27 13:59:16 t 1 1 137753 430 0.00 2019-10-27 14:00:25 2019-10-27 14:00:33 t 1 1 137758 327 0.00 2019-10-27 14:01:03 2019-10-27 14:02:12 t 1 1 137761 526 0.00 2019-10-27 13:49:26 2019-10-27 14:07:12 t 1 2 137770 430 0.00 2019-10-27 14:13:57 2019-10-27 14:14:08 t 1 1 137771 538 0.00 2019-10-27 14:09:01 2019-10-27 14:14:57 t 1 1 137774 445 0.00 2019-10-27 13:51:19 2019-10-27 14:15:57 t 1 1 137776 327 0.00 2019-10-27 14:16:04 2019-10-27 14:17:39 t 1 1 137783 503 0.00 2019-10-27 14:13:36 2019-10-27 14:22:16 t 1 1 137785 483 0.00 2019-10-27 14:21:04 2019-10-27 14:22:51 t 1 1 137786 538 0.00 2019-10-27 14:15:24 2019-10-27 14:22:59 t 1 1 137787 430 0.00 2019-10-27 14:23:08 2019-10-27 14:24:08 t 1 1 66331 131 0.00 2018-06-10 10:52:17 2018-06-10 10:53:48 t 1 1 137788 430 0.00 2019-10-27 14:24:08 2019-10-27 14:24:15 t 1 1 137792 430 0.00 2019-10-27 14:29:14 2019-10-27 14:29:18 t 1 1 137794 585 0.00 2019-10-27 14:29:15 2019-10-27 14:34:07 t 1 1 137795 430 0.00 2019-10-27 14:34:05 2019-10-27 14:35:31 t 1 1 137796 574 0.00 2019-10-27 14:29:45 2019-10-27 14:36:14 t 1 1 137798 585 0.00 2019-10-27 14:34:07 2019-10-27 14:37:31 t 1 1 137805 562 0.00 2019-10-27 14:42:46 2019-10-27 14:43:48 t 1 1 137811 327 0.00 2019-10-27 14:22:42 2019-10-27 14:47:50 t 1 1 137813 585 0.00 2019-10-27 14:43:45 2019-10-27 14:49:18 t 1 1 137814 456 0.00 2019-10-27 14:37:40 2019-10-27 14:52:07 t 1 1 137817 607 0.00 2019-10-27 14:40:10 2019-10-27 14:56:54 t 1 1 137818 311 0.00 2019-10-27 14:52:58 2019-10-27 14:57:59 t 1 2 137820 562 0.00 2019-10-27 14:57:19 2019-10-27 14:59:08 t 1 1 137823 449 0.00 2019-10-27 14:53:53 2019-10-27 15:02:32 t 1 1 137825 485 0.00 2019-10-27 15:01:26 2019-10-27 15:04:36 t 1 1 137829 327 0.00 2019-10-27 15:07:20 2019-10-27 15:07:27 t 1 1 137831 607 0.00 2019-10-27 14:56:54 2019-10-27 15:07:40 t 1 1 137835 430 0.00 2019-10-27 15:04:23 2019-10-27 15:12:31 t 1 1 137837 449 0.00 2019-10-27 15:02:32 2019-10-27 15:13:00 t 1 1 137839 327 0.00 2019-10-27 15:13:23 2019-10-27 15:14:11 t 1 1 137841 566 0.00 2019-10-27 15:05:58 2019-10-27 15:15:39 t 1 1 137844 327 0.00 2019-10-27 15:16:30 2019-10-27 15:17:02 t 1 1 137845 518 0.00 2019-10-27 15:17:27 2019-10-27 15:17:35 t 1 2 137846 449 0.00 2019-10-27 15:13:00 2019-10-27 15:19:09 t 1 1 137851 578 0.00 2019-10-27 15:10:55 2019-10-27 15:20:50 t 1 1 137854 562 0.00 2019-10-27 15:23:59 2019-10-27 15:24:14 t 1 1 137859 485 0.00 2019-10-27 15:18:27 2019-10-27 15:26:47 t 1 1 137865 597 0.00 2019-10-27 14:30:10 2019-10-27 15:32:55 t 1 1 137866 445 0.00 2019-10-27 14:16:15 2019-10-27 15:34:11 t 1 1 137874 512 0.00 2019-10-27 15:39:16 2019-10-27 15:43:11 t 1 1 137876 485 0.00 2019-10-27 15:40:30 2019-10-27 15:44:54 t 1 1 137881 220 0.00 2019-10-27 12:20:07 2019-10-27 15:50:27 t 1 1 137882 327 0.00 2019-10-27 15:49:33 2019-10-27 15:51:08 t 1 1 137884 220 0.00 2019-10-27 15:50:50 2019-10-27 15:53:37 t 1 1 137886 327 0.00 2019-10-27 15:54:41 2019-10-27 15:55:24 t 1 1 137887 607 0.00 2019-10-27 15:07:40 2019-10-27 15:56:07 t 1 1 137896 327 0.00 2019-10-27 16:04:20 2019-10-27 16:05:06 t 1 1 137899 327 0.00 2019-10-27 16:07:16 2019-10-27 16:09:11 t 1 1 137909 361 0.00 2019-10-27 15:01:24 2019-10-27 16:15:22 t 1 2 137912 327 0.00 2019-10-27 16:18:06 2019-10-27 16:18:56 t 1 1 137913 562 0.00 2019-10-27 16:19:03 2019-10-27 16:19:14 t 1 1 137917 562 0.00 2019-10-27 16:21:04 2019-10-27 16:21:17 t 1 1 137919 538 0.00 2019-10-27 16:18:29 2019-10-27 16:21:49 t 1 1 137927 562 0.00 2019-10-27 16:24:12 2019-10-27 16:26:38 t 1 1 137928 327 0.00 2019-10-27 16:25:37 2019-10-27 16:28:27 t 1 1 137929 327 0.00 2019-10-27 16:29:06 2019-10-27 16:29:37 t 1 1 137930 445 0.00 2019-10-27 16:19:44 2019-10-27 16:29:56 t 1 1 137939 528 0.00 2019-10-27 16:34:30 2019-10-27 16:34:36 t 1 1 137942 488 0.00 2019-10-27 16:17:47 2019-10-27 16:35:34 t 1 1 137943 327 0.00 2019-10-27 16:34:34 2019-10-27 16:36:03 t 1 1 137947 607 0.00 2019-10-27 15:56:08 2019-10-27 16:39:27 t 1 1 137949 327 0.00 2019-10-27 16:39:46 2019-10-27 16:40:29 t 1 1 137951 445 0.00 2019-10-27 16:29:38 2019-10-27 16:41:00 t 1 1 137953 562 0.00 2019-10-27 16:39:19 2019-10-27 16:42:50 t 1 1 137957 327 0.00 2019-10-27 16:44:22 2019-10-27 16:45:05 t 1 1 137964 327 0.00 2019-10-27 16:48:33 2019-10-27 16:51:40 t 1 1 137965 607 0.00 2019-10-27 16:39:30 2019-10-27 16:52:30 t 1 1 137967 445 0.00 2019-10-27 16:48:10 2019-10-27 16:53:49 t 1 1 137968 487 0.00 2019-10-27 15:29:09 2019-10-27 16:54:14 t 1 2 137970 327 0.00 2019-10-27 16:55:20 2019-10-27 16:55:38 t 1 1 137971 327 0.00 2019-10-27 16:56:13 2019-10-27 16:56:45 t 1 1 137972 562 0.00 2019-10-27 16:48:39 2019-10-27 16:57:06 t 1 1 137975 220 0.00 2019-10-27 10:56:21 2019-10-27 16:58:45 t 1 2 137981 611 0.00 2019-10-27 16:59:46 2019-10-27 17:01:04 t 1 1 137984 327 0.00 2019-10-27 17:03:31 2019-10-27 17:04:42 t 1 1 137986 516 0.00 2019-10-27 17:04:53 2019-10-27 17:06:58 t 1 1 137990 514 0.00 2019-10-27 16:58:43 2019-10-27 17:08:14 t 1 1 137994 585 0.00 2019-10-27 16:53:14 2019-10-27 17:10:26 t 1 1 137997 591 0.00 2019-10-27 17:05:53 2019-10-27 17:11:06 t 1 1 138001 528 0.00 2019-10-27 16:38:51 2019-10-27 17:13:18 t 1 1 138004 327 0.00 2019-10-27 17:13:37 2019-10-27 17:15:18 t 1 1 138006 514 0.00 2019-10-27 17:08:14 2019-10-27 17:16:49 t 1 1 138008 562 0.00 2019-10-27 17:16:57 2019-10-27 17:17:38 t 1 1 138009 591 0.00 2019-10-27 17:16:10 2019-10-27 17:17:59 t 1 1 138013 597 0.00 2019-10-27 17:16:57 2019-10-27 17:19:09 t 1 1 138015 327 0.00 2019-10-27 17:19:09 2019-10-27 17:19:43 t 1 1 138017 615 0.00 2019-10-27 17:16:01 2019-10-27 17:19:53 t 1 1 138019 327 0.00 2019-10-27 17:20:22 2019-10-27 17:20:54 t 1 1 138020 416 0.00 2019-10-27 17:19:51 2019-10-27 17:21:28 t 1 1 138021 327 0.00 2019-10-27 17:21:01 2019-10-27 17:22:06 t 1 1 138024 485 0.00 2019-10-27 17:21:31 2019-10-27 17:23:17 t 1 1 138027 566 0.00 2019-10-27 17:14:54 2019-10-27 17:26:27 t 1 1 138028 585 0.00 2019-10-27 17:19:07 2019-10-27 17:27:09 t 1 1 138030 528 0.00 2019-10-27 17:15:33 2019-10-27 17:27:57 t 1 1 138035 562 0.00 2019-10-27 17:29:53 2019-10-27 17:31:22 t 1 1 138040 327 0.00 2019-10-27 17:34:03 2019-10-27 17:34:42 t 1 1 138045 613 0.00 2019-10-27 17:31:21 2019-10-27 17:37:23 t 1 1 137853 327 0.00 2019-10-27 15:22:32 2019-10-27 15:23:04 t 1 1 137856 528 0.00 2019-10-27 14:22:54 2019-10-27 15:25:04 t 1 1 137858 562 0.00 2019-10-27 15:25:45 2019-10-27 15:26:15 t 1 1 137861 578 0.00 2019-10-27 15:20:50 2019-10-27 15:29:12 t 1 1 137864 562 0.00 2019-10-27 15:31:41 2019-10-27 15:32:24 t 1 1 137868 327 0.00 2019-10-27 15:26:13 2019-10-27 15:34:51 t 1 1 137870 578 0.00 2019-10-27 15:29:12 2019-10-27 15:37:46 t 1 1 137871 562 0.00 2019-10-27 15:38:51 2019-10-27 15:39:45 t 1 1 137873 562 0.00 2019-10-27 15:41:24 2019-10-27 15:41:58 t 1 1 137878 327 0.00 2019-10-27 15:45:51 2019-10-27 15:47:37 t 1 1 137880 327 0.00 2019-10-27 15:48:54 2019-10-27 15:49:28 t 1 1 137883 456 0.00 2019-10-27 15:21:29 2019-10-27 15:52:59 t 1 1 137885 327 0.00 2019-10-27 15:51:43 2019-10-27 15:54:32 t 1 1 137888 327 0.00 2019-10-27 15:55:29 2019-10-27 15:56:23 t 1 1 137889 578 0.00 2019-10-27 15:37:46 2019-10-27 15:57:29 t 1 1 137892 327 0.00 2019-10-27 16:00:21 2019-10-27 16:01:47 t 1 1 137893 327 0.00 2019-10-27 16:02:08 2019-10-27 16:02:42 t 1 1 137897 538 0.00 2019-10-27 15:42:10 2019-10-27 16:05:33 t 1 1 137902 597 0.00 2019-10-27 16:01:34 2019-10-27 16:11:24 t 1 1 137903 578 0.00 2019-10-27 16:04:12 2019-10-27 16:12:15 t 1 1 137906 327 0.00 2019-10-27 16:12:56 2019-10-27 16:13:29 t 1 1 137908 327 0.00 2019-10-27 16:13:36 2019-10-27 16:14:23 t 1 1 137911 327 0.00 2019-10-27 16:14:32 2019-10-27 16:17:55 t 1 1 137914 220 0.00 2019-10-27 12:34:27 2019-10-27 16:19:32 t 1 2 137916 327 0.00 2019-10-27 16:19:19 2019-10-27 16:20:52 t 1 1 137920 327 0.00 2019-10-27 16:21:47 2019-10-27 16:22:21 t 1 1 137923 327 0.00 2019-10-27 16:22:44 2019-10-27 16:23:21 t 1 1 137924 578 0.00 2019-10-27 16:12:15 2019-10-27 16:25:00 t 1 1 66332 131 0.00 2018-06-10 10:53:48 2018-06-10 10:54:06 t 1 1 137931 578 0.00 2019-10-27 16:25:00 2019-10-27 16:30:28 t 1 1 137933 562 0.00 2019-10-27 16:30:18 2019-10-27 16:30:35 t 1 1 137936 327 0.00 2019-10-27 16:31:55 2019-10-27 16:32:54 t 1 1 137938 327 0.00 2019-10-27 16:33:23 2019-10-27 16:34:21 t 1 1 137941 587 0.00 2019-10-27 16:34:25 2019-10-27 16:34:52 t 1 1 137945 528 0.00 2019-10-27 16:36:23 2019-10-27 16:36:56 t 1 1 137948 327 0.00 2019-10-27 16:36:24 2019-10-27 16:39:41 t 1 1 137952 445 0.00 2019-10-27 16:41:40 2019-10-27 16:42:21 t 1 1 137955 327 0.00 2019-10-27 16:41:19 2019-10-27 16:43:57 t 1 1 137959 327 0.00 2019-10-27 16:45:24 2019-10-27 16:46:24 t 1 1 137960 587 0.00 2019-10-27 16:46:09 2019-10-27 16:47:22 t 1 1 137963 516 0.00 2019-10-27 16:43:45 2019-10-27 16:49:56 t 1 1 137973 327 0.00 2019-10-27 16:56:52 2019-10-27 16:57:55 t 1 1 137977 591 0.00 2019-10-27 16:54:16 2019-10-27 16:59:38 t 1 1 137979 327 0.00 2019-10-27 16:59:21 2019-10-27 16:59:51 t 1 1 137983 327 0.00 2019-10-27 17:02:42 2019-10-27 17:03:18 t 1 1 137985 516 0.00 2019-10-27 17:00:37 2019-10-27 17:05:49 t 1 1 137988 327 0.00 2019-10-27 17:05:09 2019-10-27 17:07:35 t 1 1 137989 562 0.00 2019-10-27 17:03:03 2019-10-27 17:08:11 t 1 1 137991 327 0.00 2019-10-27 17:07:42 2019-10-27 17:08:15 t 1 1 137992 327 0.00 2019-10-27 17:08:54 2019-10-27 17:09:27 t 1 1 137993 562 0.00 2019-10-27 17:08:38 2019-10-27 17:10:09 t 1 1 137996 508 0.00 2019-10-27 15:05:05 2019-10-27 17:10:31 t 1 2 137999 587 0.00 2019-10-27 16:52:43 2019-10-27 17:11:12 t 1 1 138003 585 0.00 2019-10-27 17:11:05 2019-10-27 17:14:54 t 1 1 138005 583 0.00 2019-10-27 17:14:36 2019-10-27 17:16:19 t 1 1 138007 327 0.00 2019-10-27 17:15:23 2019-10-27 17:17:37 t 1 1 138011 587 0.00 2019-10-27 17:16:14 2019-10-27 17:18:45 t 1 1 138014 581 0.00 2019-10-27 17:11:47 2019-10-27 17:19:35 t 1 1 138018 416 0.00 2019-10-27 13:23:22 2019-10-27 17:19:53 t 1 1 138022 607 0.00 2019-10-27 17:08:48 2019-10-27 17:22:28 t 1 1 138031 562 0.00 2019-10-27 17:27:58 2019-10-27 17:28:14 t 1 1 138032 615 0.00 2019-10-27 17:19:53 2019-10-27 17:30:17 t 1 1 138033 613 0.00 2019-10-27 17:24:13 2019-10-27 17:30:30 t 1 1 138037 585 0.00 2019-10-27 17:27:09 2019-10-27 17:31:29 t 1 1 138039 516 0.00 2019-10-27 17:29:04 2019-10-27 17:34:16 t 1 1 138050 562 0.00 2019-10-27 17:39:11 2019-10-27 17:39:21 t 1 1 138053 430 0.00 2019-10-27 17:30:18 2019-10-27 17:40:08 t 1 1 138056 327 0.00 2019-10-27 17:42:07 2019-10-27 17:42:42 t 1 1 138057 585 0.00 2019-10-27 17:34:08 2019-10-27 17:43:33 t 1 1 138062 514 0.00 2019-10-27 17:16:49 2019-10-27 17:46:38 t 1 1 138063 327 0.00 2019-10-27 17:45:52 2019-10-27 17:47:08 t 1 1 138064 485 0.00 2019-10-27 17:38:37 2019-10-27 17:48:54 t 1 1 138066 327 0.00 2019-10-27 17:47:13 2019-10-27 17:50:13 t 1 1 138070 566 0.00 2019-10-27 17:26:27 2019-10-27 17:51:33 t 1 1 138074 613 0.00 2019-10-27 17:50:17 2019-10-27 17:57:58 t 1 1 138076 327 0.00 2019-10-27 17:53:20 2019-10-27 17:59:50 t 1 1 138079 430 0.00 2019-10-27 17:40:08 2019-10-27 18:01:43 t 1 1 138082 456 0.00 2019-10-27 18:01:34 2019-10-27 18:03:58 t 1 1 138084 514 0.00 2019-10-27 17:46:38 2019-10-27 18:04:32 t 1 1 138085 613 0.00 2019-10-27 17:57:58 2019-10-27 18:05:01 t 1 1 138087 327 0.00 2019-10-27 18:05:37 2019-10-27 18:05:45 t 1 1 138089 587 0.00 2019-10-27 18:04:54 2019-10-27 18:07:03 t 1 1 138091 456 0.00 2019-10-27 18:03:57 2019-10-27 18:07:19 t 1 1 138092 327 0.00 2019-10-27 18:07:19 2019-10-27 18:07:50 t 1 1 138093 585 0.00 2019-10-27 17:45:44 2019-10-27 18:08:46 t 1 1 138098 562 0.00 2019-10-27 18:10:24 2019-10-27 18:10:52 t 1 1 138100 327 0.00 2019-10-27 18:10:20 2019-10-27 18:11:36 t 1 1 138103 327 0.00 2019-10-27 18:11:41 2019-10-27 18:12:42 t 1 1 138109 327 0.00 2019-10-27 18:13:32 2019-10-27 18:14:32 t 1 1 138111 562 0.00 2019-10-27 18:14:29 2019-10-27 18:15:26 t 1 1 138114 613 0.00 2019-10-27 18:13:34 2019-10-27 18:15:44 t 1 1 138115 587 0.00 2019-10-27 18:13:02 2019-10-27 18:16:27 t 1 1 138116 327 0.00 2019-10-27 18:15:58 2019-10-27 18:17:26 t 1 1 138117 290 0.00 2019-10-27 18:17:36 2019-10-27 18:17:36 f 1 2 138120 562 0.00 2019-10-27 18:18:47 2019-10-27 18:19:35 t 1 1 138121 327 0.00 2019-10-27 18:18:48 2019-10-27 18:20:11 t 1 1 138125 327 0.00 2019-10-27 18:21:03 2019-10-27 18:21:37 t 1 1 138126 327 0.00 2019-10-27 18:21:44 2019-10-27 18:22:20 t 1 1 138139 613 0.00 2019-10-27 18:29:40 2019-10-27 18:30:16 t 1 1 138141 587 0.00 2019-10-27 18:26:38 2019-10-27 18:30:41 t 1 1 138143 327 0.00 2019-10-27 18:28:17 2019-10-27 18:30:58 t 1 1 138145 562 0.00 2019-10-27 18:31:40 2019-10-27 18:31:45 t 1 1 138147 430 0.00 2019-10-27 18:32:23 2019-10-27 18:32:26 t 1 1 138149 522 0.00 2019-10-27 18:31:06 2019-10-27 18:33:09 t 1 1 138152 445 0.00 2019-10-27 17:43:55 2019-10-27 18:33:34 t 1 1 66567 131 0.00 2018-06-11 22:42:00 2018-06-11 22:43:13 t 1 1 138156 327 0.00 2019-10-27 18:33:49 2019-10-27 18:35:08 t 1 1 137980 327 0.00 2019-10-27 17:00:14 2019-10-27 17:00:50 t 1 1 137982 327 0.00 2019-10-27 17:01:23 2019-10-27 17:01:57 t 1 1 137987 538 0.00 2019-10-27 17:04:00 2019-10-27 17:07:23 t 1 1 137995 583 0.00 2019-10-27 17:08:29 2019-10-27 17:10:28 t 1 1 137998 327 0.00 2019-10-27 17:10:31 2019-10-27 17:11:11 t 1 1 138000 611 0.00 2019-10-27 17:01:46 2019-10-27 17:11:13 t 1 1 138002 327 0.00 2019-10-27 17:11:16 2019-10-27 17:13:32 t 1 1 138010 583 0.00 2019-10-27 17:16:19 2019-10-27 17:18:28 t 1 1 138012 327 0.00 2019-10-27 17:17:43 2019-10-27 17:18:58 t 1 1 138016 611 0.00 2019-10-27 17:11:13 2019-10-27 17:19:48 t 1 1 138023 327 0.00 2019-10-27 17:22:21 2019-10-27 17:22:55 t 1 1 138025 607 0.00 2019-10-27 17:22:33 2019-10-27 17:24:56 t 1 1 138026 327 0.00 2019-10-27 17:23:18 2019-10-27 17:25:36 t 1 1 138029 327 0.00 2019-10-27 17:26:46 2019-10-27 17:27:18 t 1 1 138034 327 0.00 2019-10-27 17:27:27 2019-10-27 17:31:12 t 1 1 138036 607 0.00 2019-10-27 17:27:43 2019-10-27 17:31:24 t 1 1 138038 327 0.00 2019-10-27 17:31:33 2019-10-27 17:33:10 t 1 1 138041 562 0.00 2019-10-27 17:32:33 2019-10-27 17:35:26 t 1 1 138042 327 0.00 2019-10-27 17:35:01 2019-10-27 17:36:23 t 1 1 138043 562 0.00 2019-10-27 17:36:25 2019-10-27 17:36:38 t 1 1 138044 327 0.00 2019-10-27 17:36:30 2019-10-27 17:37:18 t 1 1 138047 615 0.00 2019-10-27 17:30:17 2019-10-27 17:39:07 t 1 1 138049 591 0.00 2019-10-27 17:37:12 2019-10-27 17:39:12 t 1 1 138051 597 0.00 2019-10-27 17:35:32 2019-10-27 17:39:53 t 1 1 138052 327 0.00 2019-10-27 17:39:26 2019-10-27 17:39:59 t 1 1 138055 562 0.00 2019-10-27 17:41:22 2019-10-27 17:42:13 t 1 1 138060 327 0.00 2019-10-27 17:44:36 2019-10-27 17:45:38 t 1 1 138061 613 0.00 2019-10-27 17:41:06 2019-10-27 17:46:37 t 1 1 138065 562 0.00 2019-10-27 17:49:12 2019-10-27 17:49:58 t 1 1 138067 613 0.00 2019-10-27 17:46:37 2019-10-27 17:50:17 t 1 1 138068 292 0.00 2019-10-27 17:50:54 2019-10-27 17:50:54 f 1 2 138069 562 0.00 2019-10-27 17:51:01 2019-10-27 17:51:26 t 1 1 138071 327 0.00 2019-10-27 17:50:18 2019-10-27 17:52:48 t 1 1 138075 566 0.00 2019-10-27 17:53:41 2019-10-27 17:59:44 t 1 1 138078 327 0.00 2019-10-27 18:00:15 2019-10-27 18:00:17 t 1 1 138081 327 0.00 2019-10-27 18:00:53 2019-10-27 18:03:20 t 1 1 138083 562 0.00 2019-10-27 18:04:08 2019-10-27 18:04:22 t 1 1 138090 562 0.00 2019-10-27 18:07:04 2019-10-27 18:07:18 t 1 1 138094 587 0.00 2019-10-27 18:07:35 2019-10-27 18:09:08 t 1 1 138096 327 0.00 2019-10-27 18:08:07 2019-10-27 18:10:07 t 1 1 138097 587 0.00 2019-10-27 18:09:51 2019-10-27 18:10:48 t 1 1 138099 430 0.00 2019-10-27 18:02:49 2019-10-27 18:11:16 t 1 1 138102 562 0.00 2019-10-27 18:12:17 2019-10-27 18:12:39 t 1 1 138104 591 0.00 2019-10-27 18:06:03 2019-10-27 18:12:46 t 1 1 138106 613 0.00 2019-10-27 18:09:16 2019-10-27 18:13:34 t 1 1 138107 430 0.00 2019-10-27 18:13:45 2019-10-27 18:13:53 t 1 1 138110 595 0.00 2019-10-27 18:13:32 2019-10-27 18:14:47 t 1 1 138113 327 0.00 2019-10-27 18:14:40 2019-10-27 18:15:35 t 1 1 138118 327 0.00 2019-10-27 18:17:34 2019-10-27 18:18:16 t 1 1 138124 430 0.00 2019-10-27 18:20:44 2019-10-27 18:21:32 t 1 1 138129 613 0.00 2019-10-27 18:16:32 2019-10-27 18:24:45 t 1 1 138130 585 0.00 2019-10-27 18:20:23 2019-10-27 18:25:24 t 1 1 138133 514 0.00 2019-10-27 18:04:32 2019-10-27 18:28:21 t 1 1 138134 522 0.00 2019-10-27 18:25:35 2019-10-27 18:29:06 t 1 1 138137 430 0.00 2019-10-27 18:29:53 2019-10-27 18:30:10 t 1 1 138144 522 0.00 2019-10-27 18:29:11 2019-10-27 18:31:09 t 1 1 138148 327 0.00 2019-10-27 18:32:17 2019-10-27 18:33:00 t 1 1 138151 430 0.00 2019-10-27 18:33:22 2019-10-27 18:33:28 t 1 1 138153 327 0.00 2019-10-27 18:33:11 2019-10-27 18:33:42 t 1 1 138154 522 0.00 2019-10-27 18:32:10 2019-10-27 18:34:07 t 1 1 138159 522 0.00 2019-10-27 18:34:19 2019-10-27 18:36:09 t 1 1 138160 327 0.00 2019-10-27 18:36:15 2019-10-27 18:36:20 t 1 1 138167 522 0.00 2019-10-27 18:36:12 2019-10-27 18:38:09 t 1 1 138170 587 0.00 2019-10-27 18:31:26 2019-10-27 18:39:09 t 1 1 138174 485 0.00 2019-10-27 18:41:05 2019-10-27 18:42:37 t 1 1 138175 327 0.00 2019-10-27 18:44:03 2019-10-27 18:45:23 t 1 1 138180 566 0.00 2019-10-27 18:34:22 2019-10-27 18:47:53 t 1 1 138181 327 0.00 2019-10-27 18:47:33 2019-10-27 18:48:07 t 1 1 138183 327 0.00 2019-10-27 18:48:23 2019-10-27 18:48:52 t 1 1 138186 562 0.00 2019-10-27 18:53:20 2019-10-27 18:53:42 t 1 1 138188 456 0.00 2019-10-27 18:12:23 2019-10-27 18:54:03 t 1 1 138194 327 0.00 2019-10-27 18:54:34 2019-10-27 18:57:35 t 1 1 138200 587 0.00 2019-10-27 18:39:09 2019-10-27 19:00:56 t 1 1 138201 585 0.00 2019-10-27 18:30:10 2019-10-27 19:01:22 t 1 1 138203 327 0.00 2019-10-27 19:00:58 2019-10-27 19:01:37 t 1 1 138206 562 0.00 2019-10-27 19:04:09 2019-10-27 19:04:36 t 1 1 138208 520 0.00 2019-10-27 19:05:49 2019-10-27 19:07:09 t 1 1 138209 562 0.00 2019-10-27 19:07:17 2019-10-27 19:07:44 t 1 1 138215 520 0.00 2019-10-27 19:06:51 2019-10-27 19:10:31 t 1 1 138218 562 0.00 2019-10-27 19:09:46 2019-10-27 19:11:02 t 1 1 138220 327 0.00 2019-10-27 19:10:47 2019-10-27 19:11:25 t 1 1 138223 361 0.00 2019-10-27 18:25:35 2019-10-27 19:12:23 t 1 2 138227 528 0.00 2019-10-27 19:12:22 2019-10-27 19:12:39 t 1 1 138234 532 0.00 2019-10-27 19:14:44 2019-10-27 19:14:56 t 1 1 138236 532 0.00 2019-10-27 19:15:23 2019-10-27 19:15:33 t 1 1 138237 566 0.00 2019-10-27 18:56:08 2019-10-27 19:15:56 t 1 1 138238 562 0.00 2019-10-27 19:13:27 2019-10-27 19:16:49 t 1 1 138243 327 0.00 2019-10-27 19:17:25 2019-10-27 19:18:44 t 1 1 138248 587 0.00 2019-10-27 19:13:25 2019-10-27 19:22:51 t 1 1 138249 562 0.00 2019-10-27 19:22:28 2019-10-27 19:23:01 t 1 1 138264 430 0.00 2019-10-27 19:31:06 2019-10-27 19:31:08 t 1 1 138267 327 0.00 2019-10-27 19:29:41 2019-10-27 19:32:24 t 1 1 138268 595 0.00 2019-10-27 19:32:18 2019-10-27 19:33:22 t 1 1 138269 595 0.00 2019-10-27 19:33:29 2019-10-27 19:33:54 t 1 1 138272 514 0.00 2019-10-27 18:28:21 2019-10-27 19:35:20 t 1 1 138273 595 0.00 2019-10-27 19:35:10 2019-10-27 19:35:38 t 1 1 138279 220 0.00 2019-10-27 19:35:48 2019-10-27 19:36:23 t 1 1 138281 220 0.00 2019-10-27 19:36:23 2019-10-27 19:37:22 t 1 1 138283 430 0.00 2019-10-27 19:37:24 2019-10-27 19:37:31 t 1 1 138285 220 0.00 2019-10-27 19:37:22 2019-10-27 19:37:57 t 1 1 138286 528 0.00 2019-10-27 19:38:04 2019-10-27 19:38:20 t 1 1 138288 522 0.00 2019-10-27 19:36:24 2019-10-27 19:39:02 t 1 1 138290 220 0.00 2019-10-27 19:37:56 2019-10-27 19:39:04 t 1 1 138293 220 0.00 2019-10-27 19:39:04 2019-10-27 19:39:35 t 1 1 138299 220 0.00 2019-10-27 19:40:18 2019-10-27 19:40:54 t 1 1 138302 522 0.00 2019-10-27 19:39:19 2019-10-27 19:41:09 t 1 1 138306 430 0.00 2019-10-27 19:41:03 2019-10-27 19:41:18 t 1 1 138046 327 0.00 2019-10-27 17:37:59 2019-10-27 17:38:11 t 1 1 138048 327 0.00 2019-10-27 17:38:22 2019-10-27 17:39:11 t 1 1 138054 613 0.00 2019-10-27 17:37:23 2019-10-27 17:41:06 t 1 1 138058 445 0.00 2019-10-27 16:53:49 2019-10-27 17:43:46 t 1 1 138059 327 0.00 2019-10-27 17:42:47 2019-10-27 17:44:31 t 1 1 138072 544 0.00 2019-10-27 16:43:10 2019-10-27 17:55:04 t 1 2 138073 591 0.00 2019-10-27 17:54:14 2019-10-27 17:56:18 t 1 1 138077 615 0.00 2019-10-27 17:55:58 2019-10-27 17:59:52 t 1 1 138080 562 0.00 2019-10-27 17:56:22 2019-10-27 18:03:02 t 1 1 138086 327 0.00 2019-10-27 18:03:26 2019-10-27 18:05:34 t 1 1 138088 327 0.00 2019-10-27 18:06:06 2019-10-27 18:06:40 t 1 1 138095 613 0.00 2019-10-27 18:05:00 2019-10-27 18:09:17 t 1 1 138101 587 0.00 2019-10-27 18:12:18 2019-10-27 18:12:35 t 1 1 138105 327 0.00 2019-10-27 18:12:44 2019-10-27 18:13:02 t 1 1 138108 327 0.00 2019-10-27 18:12:28 2019-10-27 18:14:09 t 1 1 138112 430 0.00 2019-10-27 18:15:19 2019-10-27 18:15:27 t 1 1 138119 430 0.00 2019-10-27 18:18:37 2019-10-27 18:18:55 t 1 1 138122 327 0.00 2019-10-27 18:20:18 2019-10-27 18:20:56 t 1 1 138123 597 0.00 2019-10-27 18:18:46 2019-10-27 18:21:05 t 1 1 138127 327 0.00 2019-10-27 18:22:37 2019-10-27 18:23:23 t 1 1 138128 430 0.00 2019-10-27 18:23:12 2019-10-27 18:23:46 t 1 1 138131 327 0.00 2019-10-27 18:23:28 2019-10-27 18:28:12 t 1 1 138132 430 0.00 2019-10-27 18:28:18 2019-10-27 18:28:19 t 1 1 138135 591 0.00 2019-10-27 18:24:45 2019-10-27 18:29:20 t 1 1 138136 613 0.00 2019-10-27 18:24:45 2019-10-27 18:29:41 t 1 1 138138 562 0.00 2019-10-27 18:23:26 2019-10-27 18:30:15 t 1 1 138140 522 0.00 2019-10-27 18:29:24 2019-10-27 18:30:26 t 1 1 138142 430 0.00 2019-10-27 18:30:37 2019-10-27 18:30:42 t 1 1 138146 327 0.00 2019-10-27 18:31:19 2019-10-27 18:31:47 t 1 1 138150 416 0.00 2019-10-27 17:26:38 2019-10-27 18:33:22 t 1 1 138155 566 0.00 2019-10-27 18:26:21 2019-10-27 18:34:22 t 1 1 138158 327 0.00 2019-10-27 18:35:31 2019-10-27 18:36:08 t 1 1 138163 522 0.00 2019-10-27 18:35:12 2019-10-27 18:37:09 t 1 1 138165 430 0.00 2019-10-27 18:36:33 2019-10-27 18:37:40 t 1 1 138166 445 0.00 2019-10-27 18:33:35 2019-10-27 18:37:57 t 1 1 138171 445 0.00 2019-10-27 18:38:24 2019-10-27 18:40:13 t 1 1 138173 556 0.00 2019-10-27 12:16:03 2019-10-27 18:42:21 t 1 1 138177 613 0.00 2019-10-27 18:36:54 2019-10-27 18:46:54 t 1 1 138178 327 0.00 2019-10-27 18:45:34 2019-10-27 18:47:27 t 1 1 138182 607 0.00 2019-10-27 18:35:20 2019-10-27 18:48:42 t 1 1 138184 327 0.00 2019-10-27 18:49:30 2019-10-27 18:50:22 t 1 1 66628 131 0.00 2018-06-12 18:20:47 2018-06-12 18:21:28 t 1 1 138185 327 0.00 2019-10-27 18:51:28 2019-10-27 18:52:35 t 1 1 138189 445 0.00 2019-10-27 18:40:12 2019-10-27 18:54:21 t 1 1 138191 607 0.00 2019-10-27 18:51:44 2019-10-27 18:55:41 t 1 1 138193 445 0.00 2019-10-27 18:54:21 2019-10-27 18:57:23 t 1 1 138197 327 0.00 2019-10-27 18:58:12 2019-10-27 18:59:13 t 1 1 138199 327 0.00 2019-10-27 18:59:32 2019-10-27 19:00:48 t 1 1 138204 528 0.00 2019-10-27 17:27:57 2019-10-27 19:02:02 t 1 1 138207 532 0.00 2019-10-27 19:01:36 2019-10-27 19:07:06 t 1 1 138211 327 0.00 2019-10-27 19:07:22 2019-10-27 19:08:49 t 1 1 138212 562 0.00 2019-10-27 19:08:01 2019-10-27 19:08:59 t 1 1 138214 327 0.00 2019-10-27 19:08:58 2019-10-27 19:10:25 t 1 1 138216 461 0.00 2019-10-27 19:10:38 2019-10-27 19:10:38 f 1 2 138219 445 0.00 2019-10-27 18:58:29 2019-10-27 19:11:19 t 1 1 138222 445 0.00 2019-10-27 19:11:37 2019-10-27 19:12:02 t 1 1 138226 562 0.00 2019-10-27 19:12:14 2019-10-27 19:12:38 t 1 1 138229 220 0.00 2019-10-27 17:46:02 2019-10-27 19:12:43 t 1 1 138230 532 0.00 2019-10-27 19:12:30 2019-10-27 19:12:58 t 1 1 138231 327 0.00 2019-10-27 19:13:19 2019-10-27 19:14:01 t 1 1 138233 591 0.00 2019-10-27 18:47:29 2019-10-27 19:14:32 t 1 1 138239 485 0.00 2019-10-27 19:15:00 2019-10-27 19:17:11 t 1 1 138242 562 0.00 2019-10-27 19:17:34 2019-10-27 19:18:41 t 1 1 138247 327 0.00 2019-10-27 19:20:18 2019-10-27 19:21:50 t 1 1 138252 562 0.00 2019-10-27 19:23:46 2019-10-27 19:24:13 t 1 1 138253 587 0.00 2019-10-27 19:23:04 2019-10-27 19:24:59 t 1 1 138254 532 0.00 2019-10-27 19:25:07 2019-10-27 19:25:40 t 1 1 138255 445 0.00 2019-10-27 19:12:15 2019-10-27 19:26:14 t 1 1 138257 585 0.00 2019-10-27 19:18:37 2019-10-27 19:28:11 t 1 1 138259 430 0.00 2019-10-27 19:28:45 2019-10-27 19:28:46 t 1 1 138261 430 0.00 2019-10-27 19:28:54 2019-10-27 19:29:47 t 1 1 138262 562 0.00 2019-10-27 19:29:11 2019-10-27 19:30:23 t 1 1 138265 591 0.00 2019-10-27 19:21:07 2019-10-27 19:31:36 t 1 1 138266 595 0.00 2019-10-27 19:27:31 2019-10-27 19:32:10 t 1 1 138271 220 0.00 2019-10-27 19:12:43 2019-10-27 19:35:08 t 1 1 138274 430 0.00 2019-10-27 19:33:44 2019-10-27 19:35:41 t 1 1 138276 220 0.00 2019-10-27 19:35:08 2019-10-27 19:35:48 t 1 1 138278 532 0.00 2019-10-27 19:36:03 2019-10-27 19:36:22 t 1 1 138280 430 0.00 2019-10-27 19:36:18 2019-10-27 19:37:17 t 1 1 138284 327 0.00 2019-10-27 19:35:48 2019-10-27 19:37:34 t 1 1 138287 587 0.00 2019-10-27 19:25:13 2019-10-27 19:38:38 t 1 1 138289 528 0.00 2019-10-27 19:38:41 2019-10-27 19:39:02 t 1 1 138292 522 0.00 2019-10-27 19:39:31 2019-10-27 19:39:31 f 1 1 138296 528 0.00 2019-10-27 19:40:05 2019-10-27 19:40:14 t 1 1 138297 220 0.00 2019-10-27 19:39:35 2019-10-27 19:40:18 t 1 1 138298 587 0.00 2019-10-27 19:40:32 2019-10-27 19:40:34 t 1 1 138300 532 0.00 2019-10-27 19:40:44 2019-10-27 19:40:54 t 1 1 138303 522 0.00 2019-10-27 19:39:07 2019-10-27 19:41:09 t 1 1 138307 516 0.00 2019-10-27 19:14:48 2019-10-27 19:41:21 t 1 1 138309 327 0.00 2019-10-27 19:39:06 2019-10-27 19:41:23 t 1 1 138312 430 0.00 2019-10-27 19:41:27 2019-10-27 19:41:45 t 1 1 138315 528 0.00 2019-10-27 19:40:42 2019-10-27 19:42:09 t 1 1 138317 220 0.00 2019-10-27 19:41:45 2019-10-27 19:42:20 t 1 1 138320 430 0.00 2019-10-27 19:41:54 2019-10-27 19:42:36 t 1 1 138322 220 0.00 2019-10-27 19:42:20 2019-10-27 19:42:54 t 1 1 138324 587 0.00 2019-10-27 19:43:16 2019-10-27 19:43:42 t 1 1 138327 220 0.00 2019-10-27 19:44:19 2019-10-27 19:44:50 t 1 1 138330 562 0.00 2019-10-27 19:45:24 2019-10-27 19:46:16 t 1 1 138332 532 0.00 2019-10-27 19:46:35 2019-10-27 19:46:44 t 1 1 138333 532 0.00 2019-10-27 19:46:12 2019-10-27 19:47:13 t 1 1 138335 220 0.00 2019-10-27 19:44:50 2019-10-27 19:47:27 t 1 1 138336 327 0.00 2019-10-27 19:45:07 2019-10-27 19:48:24 t 1 1 138337 220 0.00 2019-10-27 19:47:27 2019-10-27 19:48:39 t 1 1 138340 516 0.00 2019-10-27 19:41:21 2019-10-27 19:49:02 t 1 1 138342 220 0.00 2019-10-27 19:48:38 2019-10-27 19:49:17 t 1 1 138344 532 0.00 2019-10-27 19:50:05 2019-10-27 19:50:19 t 1 1 66693 131 0.00 2018-06-13 12:37:05 2018-06-13 12:38:28 t 1 1 138157 562 0.00 2019-10-27 18:35:03 2019-10-27 18:35:23 t 1 1 138161 613 0.00 2019-10-27 18:30:16 2019-10-27 18:36:54 t 1 1 138162 522 0.00 2019-10-27 18:37:07 2019-10-27 18:37:07 f 1 1 138164 327 0.00 2019-10-27 18:36:51 2019-10-27 18:37:28 t 1 1 138168 445 0.00 2019-10-27 18:37:16 2019-10-27 18:38:18 t 1 1 138169 327 0.00 2019-10-27 18:37:48 2019-10-27 18:38:34 t 1 1 138172 327 0.00 2019-10-27 18:38:34 2019-10-27 18:42:12 t 1 1 138176 562 0.00 2019-10-27 18:45:46 2019-10-27 18:46:08 t 1 1 138179 591 0.00 2019-10-27 18:41:24 2019-10-27 18:47:29 t 1 1 138187 327 0.00 2019-10-27 18:52:45 2019-10-27 18:53:48 t 1 1 66734 131 0.00 2018-06-13 21:00:43 2018-06-13 21:02:11 t 1 1 138190 613 0.00 2019-10-27 18:47:10 2019-10-27 18:55:28 t 1 1 138192 566 0.00 2019-10-27 18:47:53 2019-10-27 18:56:08 t 1 1 138195 445 0.00 2019-10-27 18:57:23 2019-10-27 18:58:41 t 1 1 138196 613 0.00 2019-10-27 18:55:28 2019-10-27 18:59:02 t 1 1 138198 613 0.00 2019-10-27 18:59:01 2019-10-27 18:59:20 t 1 1 138202 532 0.00 2019-10-27 18:52:32 2019-10-27 19:01:36 t 1 1 138205 613 0.00 2019-10-27 18:59:19 2019-10-27 19:02:41 t 1 1 138210 613 0.00 2019-10-27 19:02:40 2019-10-27 19:08:02 t 1 1 138213 613 0.00 2019-10-27 19:08:01 2019-10-27 19:09:55 t 1 1 138217 528 0.00 2019-10-27 19:05:02 2019-10-27 19:10:49 t 1 1 138221 528 0.00 2019-10-27 19:11:06 2019-10-27 19:11:32 t 1 1 138224 379 0.00 2019-10-27 19:02:56 2019-10-27 19:12:28 t 1 1 138225 498 0.00 2019-10-27 18:35:35 2019-10-27 19:12:33 t 1 2 138228 327 0.00 2019-10-27 19:11:53 2019-10-27 19:12:41 t 1 1 138232 528 0.00 2019-10-27 19:13:57 2019-10-27 19:14:22 t 1 1 138235 327 0.00 2019-10-27 19:14:18 2019-10-27 19:15:20 t 1 1 138240 430 0.00 2019-10-27 19:15:54 2019-10-27 19:18:13 t 1 1 138241 585 0.00 2019-10-27 19:18:13 2019-10-27 19:18:38 t 1 1 138244 327 0.00 2019-10-27 19:18:50 2019-10-27 19:19:35 t 1 1 138245 591 0.00 2019-10-27 19:14:32 2019-10-27 19:21:06 t 1 1 138246 562 0.00 2019-10-27 19:20:15 2019-10-27 19:21:21 t 1 1 138250 327 0.00 2019-10-27 19:21:57 2019-10-27 19:23:05 t 1 1 138251 485 0.00 2019-10-27 19:17:21 2019-10-27 19:23:55 t 1 1 138256 327 0.00 2019-10-27 19:23:20 2019-10-27 19:28:02 t 1 1 138258 430 0.00 2019-10-27 19:19:10 2019-10-27 19:28:37 t 1 1 138260 327 0.00 2019-10-27 19:28:09 2019-10-27 19:29:22 t 1 1 138263 566 0.00 2019-10-27 19:15:57 2019-10-27 19:30:26 t 1 1 138270 327 0.00 2019-10-27 19:32:45 2019-10-27 19:34:06 t 1 1 138275 327 0.00 2019-10-27 19:34:24 2019-10-27 19:35:43 t 1 1 138277 562 0.00 2019-10-27 19:35:28 2019-10-27 19:36:12 t 1 1 138282 528 0.00 2019-10-27 19:15:35 2019-10-27 19:37:30 t 1 1 138291 587 0.00 2019-10-27 19:38:49 2019-10-27 19:39:25 t 1 1 138294 430 0.00 2019-10-27 19:39:23 2019-10-27 19:39:51 t 1 1 138295 532 0.00 2019-10-27 19:39:36 2019-10-27 19:40:02 t 1 1 138301 430 0.00 2019-10-27 19:40:18 2019-10-27 19:40:56 t 1 1 138304 591 0.00 2019-10-27 19:31:36 2019-10-27 19:41:11 t 1 1 138305 532 0.00 2019-10-27 19:41:12 2019-10-27 19:41:14 t 1 1 138316 587 0.00 2019-10-27 19:41:04 2019-10-27 19:42:18 t 1 1 138318 327 0.00 2019-10-27 19:41:30 2019-10-27 19:42:23 t 1 1 138319 379 0.00 2019-10-27 19:12:28 2019-10-27 19:42:35 t 1 1 138321 532 0.00 2019-10-27 19:42:26 2019-10-27 19:42:46 t 1 1 138326 562 0.00 2019-10-27 19:44:03 2019-10-27 19:44:47 t 1 1 138328 532 0.00 2019-10-27 19:44:44 2019-10-27 19:44:54 t 1 1 138329 327 0.00 2019-10-27 19:42:30 2019-10-27 19:44:59 t 1 1 138331 595 0.00 2019-10-27 19:43:17 2019-10-27 19:46:19 t 1 1 138334 528 0.00 2019-10-27 19:46:53 2019-10-27 19:47:19 t 1 1 138338 591 0.00 2019-10-27 19:41:11 2019-10-27 19:48:40 t 1 1 138341 532 0.00 2019-10-27 19:48:12 2019-10-27 19:49:10 t 1 1 138345 327 0.00 2019-10-27 19:49:46 2019-10-27 19:50:20 t 1 1 138351 327 0.00 2019-10-27 19:50:58 2019-10-27 19:52:12 t 1 1 138355 599 0.00 2019-10-27 19:48:47 2019-10-27 19:52:26 t 1 1 138359 220 0.00 2019-10-27 19:53:09 2019-10-27 19:53:43 t 1 1 138363 220 0.00 2019-10-27 19:53:43 2019-10-27 19:54:42 t 1 1 138365 607 0.00 2019-10-27 19:54:52 2019-10-27 19:54:52 f 1 1 138368 607 0.00 2019-10-27 19:55:28 2019-10-27 19:55:28 f 1 1 138371 581 0.00 2019-10-27 19:22:53 2019-10-27 19:56:48 t 1 1 138372 591 0.00 2019-10-27 19:51:44 2019-10-27 19:57:03 t 1 1 138374 607 0.00 2019-10-27 19:55:44 2019-10-27 19:58:06 t 1 1 138387 220 0.00 2019-10-27 20:01:54 2019-10-27 20:04:12 t 1 1 138388 220 0.00 2019-10-27 20:04:12 2019-10-27 20:04:47 t 1 1 138389 327 0.00 2019-10-27 20:03:44 2019-10-27 20:05:52 t 1 1 138391 220 0.00 2019-10-27 20:04:46 2019-10-27 20:07:26 t 1 1 138393 220 0.00 2019-10-27 20:07:26 2019-10-27 20:08:01 t 1 1 138399 220 0.00 2019-10-27 20:09:33 2019-10-27 20:10:25 t 1 1 138402 566 0.00 2019-10-27 20:01:50 2019-10-27 20:11:09 t 1 1 138411 597 0.00 2019-10-27 20:00:53 2019-10-27 20:14:57 t 1 1 138412 532 0.00 2019-10-27 20:14:54 2019-10-27 20:15:16 t 1 1 138413 220 0.00 2019-10-27 20:14:53 2019-10-27 20:15:28 t 1 1 138416 585 0.00 2019-10-27 20:16:07 2019-10-27 20:16:07 t 1 1 138420 220 0.00 2019-10-27 20:17:25 2019-10-27 20:17:59 t 1 1 138422 581 0.00 2019-10-27 20:04:14 2019-10-27 20:18:55 t 1 1 138424 532 0.00 2019-10-27 20:19:32 2019-10-27 20:19:36 t 1 1 138426 220 0.00 2019-10-27 20:19:25 2019-10-27 20:19:58 t 1 1 138432 566 0.00 2019-10-27 20:11:09 2019-10-27 20:22:14 t 1 1 138433 220 0.00 2019-10-27 20:22:00 2019-10-27 20:22:35 t 1 1 138434 220 0.00 2019-10-27 20:22:35 2019-10-27 20:23:12 t 1 1 138435 220 0.00 2019-10-27 20:23:12 2019-10-27 20:23:43 t 1 1 138436 532 0.00 2019-10-27 20:23:21 2019-10-27 20:24:21 t 1 1 138439 220 0.00 2019-10-27 20:23:43 2019-10-27 20:25:20 t 1 1 138445 528 0.00 2019-10-27 20:26:14 2019-10-27 20:28:22 t 1 1 138449 591 0.00 2019-10-27 20:17:39 2019-10-27 20:31:31 t 1 1 138451 532 0.00 2019-10-27 20:31:57 2019-10-27 20:32:02 t 1 1 138456 485 0.00 2019-10-27 20:25:31 2019-10-27 20:34:55 t 1 1 138458 532 0.00 2019-10-27 20:35:00 2019-10-27 20:35:21 t 1 1 138466 514 0.00 2019-10-27 20:30:01 2019-10-27 20:38:04 t 1 1 138467 327 0.00 2019-10-27 20:37:37 2019-10-27 20:38:18 t 1 1 138468 327 0.00 2019-10-27 20:38:48 2019-10-27 20:39:56 t 1 1 138470 532 0.00 2019-10-27 20:37:39 2019-10-27 20:42:49 t 1 1 138473 514 0.00 2019-10-27 20:38:04 2019-10-27 20:43:47 t 1 1 138477 528 0.00 2019-10-27 20:38:06 2019-10-27 20:45:47 t 1 1 138482 587 0.00 2019-10-27 20:35:17 2019-10-27 20:47:22 t 1 1 138485 587 0.00 2019-10-27 20:47:34 2019-10-27 20:48:57 t 1 1 138490 528 0.00 2019-10-27 20:45:56 2019-10-27 20:52:29 t 1 1 138498 562 0.00 2019-10-27 20:53:21 2019-10-27 20:54:46 t 1 1 138501 591 0.00 2019-10-27 20:43:07 2019-10-27 20:55:58 t 1 1 138509 514 0.00 2019-10-27 20:43:47 2019-10-27 20:58:49 t 1 1 138308 595 0.00 2019-10-27 19:40:22 2019-10-27 19:41:23 t 1 1 138310 528 0.00 2019-10-27 19:40:51 2019-10-27 19:41:30 t 1 1 138311 562 0.00 2019-10-27 19:37:12 2019-10-27 19:41:42 t 1 1 138313 220 0.00 2019-10-27 19:40:54 2019-10-27 19:41:46 t 1 1 138314 528 0.00 2019-10-27 19:41:42 2019-10-27 19:42:07 t 1 1 138323 220 0.00 2019-10-27 19:42:54 2019-10-27 19:43:29 t 1 1 138325 220 0.00 2019-10-27 19:43:29 2019-10-27 19:44:20 t 1 1 138339 327 0.00 2019-10-27 19:48:32 2019-10-27 19:49:02 t 1 1 138343 481 0.00 2019-10-27 16:22:59 2019-10-27 19:49:55 t 1 1 138348 532 0.00 2019-10-27 19:51:15 2019-10-27 19:51:22 t 1 1 138353 532 0.00 2019-10-27 19:52:14 2019-10-27 19:52:25 t 1 1 138357 456 0.00 2019-10-27 19:21:07 2019-10-27 19:52:45 t 1 1 138358 220 0.00 2019-10-27 19:52:39 2019-10-27 19:53:10 t 1 1 138360 327 0.00 2019-10-27 19:52:28 2019-10-27 19:53:50 t 1 1 138361 556 0.00 2019-10-27 19:50:56 2019-10-27 19:54:14 t 1 1 138364 327 0.00 2019-10-27 19:54:12 2019-10-27 19:54:43 t 1 1 138366 514 0.00 2019-10-27 19:35:20 2019-10-27 19:55:07 t 1 1 138367 607 0.00 2019-10-27 19:55:20 2019-10-27 19:55:20 f 1 1 138369 607 0.00 2019-10-27 19:51:25 2019-10-27 19:55:33 t 1 1 138373 562 0.00 2019-10-27 19:55:02 2019-10-27 19:57:28 t 1 1 138375 587 0.00 2019-10-27 19:43:53 2019-10-27 19:58:45 t 1 1 138376 220 0.00 2019-10-27 19:54:41 2019-10-27 19:59:30 t 1 1 138377 220 0.00 2019-10-27 19:59:30 2019-10-27 20:00:08 t 1 1 138378 220 0.00 2019-10-27 20:00:07 2019-10-27 20:00:38 t 1 1 138379 532 0.00 2019-10-27 20:00:29 2019-10-27 20:00:59 t 1 1 138381 220 0.00 2019-10-27 20:00:38 2019-10-27 20:01:20 t 1 1 66776 131 0.00 2018-06-14 09:32:25 2018-06-14 09:33:29 t 1 1 138384 611 0.00 2019-10-27 19:54:38 2019-10-27 20:02:18 t 1 1 138390 327 0.00 2019-10-27 20:06:20 2019-10-27 20:07:17 t 1 1 138392 528 0.00 2019-10-27 19:48:55 2019-10-27 20:07:32 t 1 1 138394 327 0.00 2019-10-27 20:07:36 2019-10-27 20:08:44 t 1 1 138395 220 0.00 2019-10-27 20:08:01 2019-10-27 20:09:02 t 1 1 138396 220 0.00 2019-10-27 20:09:02 2019-10-27 20:09:33 t 1 1 138398 327 0.00 2019-10-27 20:09:06 2019-10-27 20:09:46 t 1 1 138400 327 0.00 2019-10-27 20:09:58 2019-10-27 20:10:29 t 1 1 138401 220 0.00 2019-10-27 20:10:25 2019-10-27 20:10:56 t 1 1 138405 220 0.00 2019-10-27 20:10:56 2019-10-27 20:12:18 t 1 1 138410 220 0.00 2019-10-27 20:14:22 2019-10-27 20:14:53 t 1 1 138414 532 0.00 2019-10-27 20:15:26 2019-10-27 20:15:32 t 1 1 138415 220 0.00 2019-10-27 20:15:28 2019-10-27 20:16:03 t 1 1 138423 220 0.00 2019-10-27 20:17:58 2019-10-27 20:19:25 t 1 1 138428 532 0.00 2019-10-27 20:20:42 2019-10-27 20:20:45 t 1 1 138429 585 0.00 2019-10-27 20:16:25 2019-10-27 20:21:34 t 1 1 138430 220 0.00 2019-10-27 20:19:58 2019-10-27 20:22:00 t 1 1 138440 578 0.00 2019-10-27 16:30:28 2019-10-27 20:26:16 t 1 1 138446 508 0.00 2019-10-27 20:26:19 2019-10-27 20:28:24 t 1 2 138453 532 0.00 2019-10-27 20:32:37 2019-10-27 20:32:41 t 1 1 138454 532 0.00 2019-10-27 20:31:40 2019-10-27 20:34:10 t 1 1 138457 587 0.00 2019-10-27 20:00:06 2019-10-27 20:35:17 t 1 1 138460 591 0.00 2019-10-27 20:31:31 2019-10-27 20:36:19 t 1 1 138461 220 0.00 2019-10-27 20:28:14 2019-10-27 20:36:31 t 1 1 138464 220 0.00 2019-10-27 20:36:31 2019-10-27 20:37:20 t 1 1 138471 220 0.00 2019-10-27 20:37:20 2019-10-27 20:43:17 t 1 1 138483 327 0.00 2019-10-27 20:46:23 2019-10-27 20:47:32 t 1 1 138486 532 0.00 2019-10-27 20:48:47 2019-10-27 20:49:08 t 1 1 138487 327 0.00 2019-10-27 20:47:53 2019-10-27 20:50:16 t 1 1 138488 327 0.00 2019-10-27 20:50:23 2019-10-27 20:50:59 t 1 1 138491 613 0.00 2019-10-27 20:52:01 2019-10-27 20:52:37 t 1 1 138493 327 0.00 2019-10-27 20:51:09 2019-10-27 20:53:22 t 1 1 138494 516 0.00 2019-10-27 20:24:11 2019-10-27 20:53:32 t 1 1 138503 416 0.00 2019-10-27 18:33:22 2019-10-27 20:56:33 t 1 1 138504 327 0.00 2019-10-27 20:56:30 2019-10-27 20:57:06 t 1 1 138505 516 0.00 2019-10-27 20:53:38 2019-10-27 20:57:44 t 1 1 138508 220 0.00 2019-10-27 20:57:55 2019-10-27 20:58:30 t 1 1 138511 327 0.00 2019-10-27 20:57:42 2019-10-27 20:59:04 t 1 1 138514 532 0.00 2019-10-27 20:59:28 2019-10-27 20:59:50 t 1 1 138516 327 0.00 2019-10-27 20:59:30 2019-10-27 21:00:09 t 1 1 138520 327 0.00 2019-10-27 21:01:36 2019-10-27 21:02:22 t 1 1 138521 597 0.00 2019-10-27 20:58:03 2019-10-27 21:02:58 t 1 1 138528 532 0.00 2019-10-27 21:06:13 2019-10-27 21:06:26 t 1 1 138530 327 0.00 2019-10-27 21:05:36 2019-10-27 21:06:51 t 1 1 138535 220 0.00 2019-10-27 21:08:01 2019-10-27 21:08:35 t 1 1 138543 220 0.00 2019-10-27 21:10:49 2019-10-27 21:11:27 t 1 1 138546 327 0.00 2019-10-27 21:10:51 2019-10-27 21:12:21 t 1 1 138552 327 0.00 2019-10-27 21:12:42 2019-10-27 21:13:15 t 1 1 138554 220 0.00 2019-10-27 21:13:07 2019-10-27 21:13:39 t 1 1 138555 528 0.00 2019-10-27 21:12:57 2019-10-27 21:14:10 t 1 1 138557 327 0.00 2019-10-27 21:13:41 2019-10-27 21:14:13 t 1 1 138558 220 0.00 2019-10-27 21:14:10 2019-10-27 21:14:50 t 1 1 138561 220 0.00 2019-10-27 21:15:23 2019-10-27 21:16:35 t 1 1 138564 220 0.00 2019-10-27 21:16:35 2019-10-27 21:17:10 t 1 1 138568 445 0.00 2019-10-27 19:52:02 2019-10-27 21:18:20 t 1 1 138570 587 0.00 2019-10-27 20:48:56 2019-10-27 21:18:44 t 1 1 138572 520 0.00 2019-10-27 21:10:12 2019-10-27 21:19:05 t 1 1 138579 220 0.00 2019-10-27 21:20:59 2019-10-27 21:21:32 t 1 1 138582 220 0.00 2019-10-27 21:22:07 2019-10-27 21:22:39 t 1 1 138584 532 0.00 2019-10-27 21:18:12 2019-10-27 21:22:59 t 1 1 138586 220 0.00 2019-10-27 21:22:39 2019-10-27 21:23:13 t 1 1 138589 591 0.00 2019-10-27 21:07:15 2019-10-27 21:24:10 t 1 1 138590 220 0.00 2019-10-27 21:23:47 2019-10-27 21:24:22 t 1 1 138594 220 0.00 2019-10-27 21:24:52 2019-10-27 21:25:27 t 1 1 138596 613 0.00 2019-10-27 21:21:13 2019-10-27 21:25:45 t 1 1 138597 220 0.00 2019-10-27 21:25:27 2019-10-27 21:26:01 t 1 1 138598 220 0.00 2019-10-27 21:26:01 2019-10-27 21:26:36 t 1 1 138602 485 0.00 2019-10-27 21:26:03 2019-10-27 21:27:39 t 1 1 138605 220 0.00 2019-10-27 21:27:40 2019-10-27 21:28:12 t 1 1 138609 220 0.00 2019-10-27 21:28:43 2019-10-27 21:29:16 t 1 1 138611 532 0.00 2019-10-27 21:26:30 2019-10-27 21:29:45 t 1 1 138613 327 0.00 2019-10-27 21:29:02 2019-10-27 21:29:54 t 1 1 138615 532 0.00 2019-10-27 21:30:43 2019-10-27 21:30:46 t 1 1 138619 220 0.00 2019-10-27 21:31:28 2019-10-27 21:32:04 t 1 1 138622 562 0.00 2019-10-27 21:28:39 2019-10-27 21:32:48 t 1 1 138623 327 0.00 2019-10-27 21:31:33 2019-10-27 21:33:06 t 1 1 138627 220 0.00 2019-10-27 21:33:40 2019-10-27 21:34:15 t 1 1 138630 220 0.00 2019-10-27 21:34:14 2019-10-27 21:34:47 t 1 1 138631 327 0.00 2019-10-27 21:34:25 2019-10-27 21:34:58 t 1 1 138634 532 0.00 2019-10-27 21:35:05 2019-10-27 21:35:51 t 1 1 138346 220 0.00 2019-10-27 19:49:16 2019-10-27 19:50:35 t 1 1 138347 556 0.00 2019-10-27 19:39:00 2019-10-27 19:50:56 t 1 1 66699 131 0.00 2018-06-13 13:47:24 2018-06-13 13:48:28 t 1 1 138349 532 0.00 2019-10-27 19:51:38 2019-10-27 19:51:50 t 1 1 138350 445 0.00 2019-10-27 19:26:14 2019-10-27 19:52:03 t 1 1 138352 566 0.00 2019-10-27 19:30:26 2019-10-27 19:52:19 t 1 1 138354 562 0.00 2019-10-27 19:50:38 2019-10-27 19:52:26 t 1 1 138356 220 0.00 2019-10-27 19:50:34 2019-10-27 19:52:35 t 1 1 138362 597 0.00 2019-10-27 19:51:18 2019-10-27 19:54:29 t 1 1 138370 532 0.00 2019-10-27 19:54:40 2019-10-27 19:56:09 t 1 1 138380 485 0.00 2019-10-27 19:56:55 2019-10-27 20:01:05 t 1 1 138382 566 0.00 2019-10-27 19:52:19 2019-10-27 20:01:50 t 1 1 138383 220 0.00 2019-10-27 20:01:19 2019-10-27 20:01:54 t 1 1 138385 327 0.00 2019-10-27 19:55:36 2019-10-27 20:02:20 t 1 1 138386 327 0.00 2019-10-27 20:03:05 2019-10-27 20:03:35 t 1 1 138397 514 0.00 2019-10-27 19:55:07 2019-10-27 20:09:37 t 1 1 66731 131 0.00 2018-06-13 20:39:07 2018-06-13 20:40:28 t 1 1 138403 327 0.00 2019-10-27 20:10:49 2019-10-27 20:11:23 t 1 1 138404 607 0.00 2019-10-27 19:59:42 2019-10-27 20:12:17 t 1 1 138406 327 0.00 2019-10-27 20:11:31 2019-10-27 20:12:38 t 1 1 138407 220 0.00 2019-10-27 20:12:17 2019-10-27 20:12:51 t 1 1 138408 220 0.00 2019-10-27 20:12:50 2019-10-27 20:13:48 t 1 1 138409 220 0.00 2019-10-27 20:13:47 2019-10-27 20:14:22 t 1 1 138417 585 0.00 2019-10-27 20:16:07 2019-10-27 20:16:25 t 1 1 138418 220 0.00 2019-10-27 20:16:03 2019-10-27 20:16:38 t 1 1 138419 220 0.00 2019-10-27 20:16:38 2019-10-27 20:17:26 t 1 1 138421 562 0.00 2019-10-27 20:07:34 2019-10-27 20:18:54 t 1 1 138425 532 0.00 2019-10-27 20:19:43 2019-10-27 20:19:45 t 1 1 138427 532 0.00 2019-10-27 20:20:16 2019-10-27 20:20:23 t 1 1 138431 532 0.00 2019-10-27 20:20:57 2019-10-27 20:22:06 t 1 1 138437 581 0.00 2019-10-27 20:18:55 2019-10-27 20:24:45 t 1 1 138438 532 0.00 2019-10-27 20:24:33 2019-10-27 20:25:02 t 1 1 138441 532 0.00 2019-10-27 20:26:25 2019-10-27 20:26:35 t 1 1 138442 532 0.00 2019-10-27 20:27:38 2019-10-27 20:27:47 t 1 1 138443 532 0.00 2019-10-27 20:27:59 2019-10-27 20:28:01 t 1 1 138444 532 0.00 2019-10-27 20:28:09 2019-10-27 20:28:14 t 1 1 138447 532 0.00 2019-10-27 20:29:22 2019-10-27 20:29:23 t 1 1 138448 514 0.00 2019-10-27 20:09:37 2019-10-27 20:30:01 t 1 1 138450 532 0.00 2019-10-27 20:31:10 2019-10-27 20:31:32 t 1 1 138452 532 0.00 2019-10-27 20:32:14 2019-10-27 20:32:20 t 1 1 138455 566 0.00 2019-10-27 20:22:14 2019-10-27 20:34:54 t 1 1 138459 532 0.00 2019-10-27 20:35:38 2019-10-27 20:35:50 t 1 1 138462 327 0.00 2019-10-27 20:12:46 2019-10-27 20:36:34 t 1 1 138463 379 0.00 2019-10-27 19:42:35 2019-10-27 20:36:57 t 1 1 138465 327 0.00 2019-10-27 20:36:42 2019-10-27 20:37:29 t 1 1 138469 327 0.00 2019-10-27 20:40:25 2019-10-27 20:40:59 t 1 1 138472 327 0.00 2019-10-27 20:41:45 2019-10-27 20:43:26 t 1 1 138474 536 0.00 2019-10-27 20:42:10 2019-10-27 20:43:50 t 1 1 138475 532 0.00 2019-10-27 20:45:09 2019-10-27 20:45:11 t 1 1 138476 220 0.00 2019-10-27 20:43:17 2019-10-27 20:45:42 t 1 1 138478 327 0.00 2019-10-27 20:43:59 2019-10-27 20:45:57 t 1 1 138479 220 0.00 2019-10-27 20:45:42 2019-10-27 20:46:13 t 1 1 138480 220 0.00 2019-10-27 20:46:13 2019-10-27 20:46:48 t 1 1 138481 220 0.00 2019-10-27 20:46:48 2019-10-27 20:47:20 t 1 1 138484 611 0.00 2019-10-27 20:45:36 2019-10-27 20:47:34 t 1 1 138489 562 0.00 2019-10-27 20:36:22 2019-10-27 20:52:04 t 1 1 138492 220 0.00 2019-10-27 20:47:20 2019-10-27 20:52:59 t 1 1 138495 220 0.00 2019-10-27 20:52:59 2019-10-27 20:53:32 t 1 1 138496 613 0.00 2019-10-27 20:52:39 2019-10-27 20:53:58 t 1 1 138497 220 0.00 2019-10-27 20:53:32 2019-10-27 20:54:19 t 1 1 138499 220 0.00 2019-10-27 20:54:19 2019-10-27 20:54:50 t 1 1 138500 327 0.00 2019-10-27 20:53:59 2019-10-27 20:55:13 t 1 1 138502 327 0.00 2019-10-27 20:55:21 2019-10-27 20:56:14 t 1 1 138506 562 0.00 2019-10-27 20:57:27 2019-10-27 20:57:52 t 1 1 138507 220 0.00 2019-10-27 20:54:50 2019-10-27 20:57:56 t 1 1 138519 585 0.00 2019-10-27 21:00:04 2019-10-27 21:01:37 t 1 1 138522 327 0.00 2019-10-27 21:02:45 2019-10-27 21:03:16 t 1 1 138524 220 0.00 2019-10-27 21:04:02 2019-10-27 21:04:37 t 1 1 138534 613 0.00 2019-10-27 21:06:16 2019-10-27 21:08:11 t 1 1 138536 220 0.00 2019-10-27 21:08:34 2019-10-27 21:09:10 t 1 1 138538 220 0.00 2019-10-27 21:09:10 2019-10-27 21:09:44 t 1 1 138540 532 0.00 2019-10-27 21:10:19 2019-10-27 21:10:31 t 1 1 138542 220 0.00 2019-10-27 21:10:17 2019-10-27 21:10:50 t 1 1 138547 528 0.00 2019-10-27 20:53:30 2019-10-27 21:12:25 t 1 1 138549 220 0.00 2019-10-27 21:12:01 2019-10-27 21:12:36 t 1 1 138553 562 0.00 2019-10-27 21:13:00 2019-10-27 21:13:20 t 1 1 138559 220 0.00 2019-10-27 21:14:50 2019-10-27 21:15:23 t 1 1 138563 327 0.00 2019-10-27 21:16:21 2019-10-27 21:17:04 t 1 1 138576 220 0.00 2019-10-27 21:19:51 2019-10-27 21:20:24 t 1 1 138578 613 0.00 2019-10-27 21:16:41 2019-10-27 21:21:14 t 1 1 138580 327 0.00 2019-10-27 21:20:36 2019-10-27 21:21:36 t 1 1 138583 562 0.00 2019-10-27 21:22:12 2019-10-27 21:22:50 t 1 1 138585 532 0.00 2019-10-27 21:22:27 2019-10-27 21:22:59 t 1 1 138587 327 0.00 2019-10-27 21:21:50 2019-10-27 21:23:19 t 1 1 138588 220 0.00 2019-10-27 21:23:13 2019-10-27 21:23:47 t 1 1 138591 532 0.00 2019-10-27 21:24:14 2019-10-27 21:24:30 t 1 1 138592 220 0.00 2019-10-27 21:24:22 2019-10-27 21:24:53 t 1 1 138593 587 0.00 2019-10-27 21:18:59 2019-10-27 21:24:58 t 1 1 138595 327 0.00 2019-10-27 21:24:39 2019-10-27 21:25:42 t 1 1 138599 220 0.00 2019-10-27 21:26:36 2019-10-27 21:27:07 t 1 1 138604 562 0.00 2019-10-27 21:23:42 2019-10-27 21:27:57 t 1 1 138606 587 0.00 2019-10-27 21:26:10 2019-10-27 21:28:38 t 1 1 138607 220 0.00 2019-10-27 21:28:12 2019-10-27 21:28:44 t 1 1 138614 220 0.00 2019-10-27 21:29:50 2019-10-27 21:30:24 t 1 1 138621 220 0.00 2019-10-27 21:32:03 2019-10-27 21:32:36 t 1 1 138626 327 0.00 2019-10-27 21:33:36 2019-10-27 21:34:11 t 1 1 138628 514 0.00 2019-10-27 20:58:49 2019-10-27 21:34:16 t 1 1 138632 220 0.00 2019-10-27 21:34:47 2019-10-27 21:35:22 t 1 1 138636 220 0.00 2019-10-27 21:34:28 2019-10-27 21:36:09 t 1 2 138638 613 0.00 2019-10-27 21:32:26 2019-10-27 21:36:45 t 1 1 66998 131 0.00 2018-06-18 13:39:02 2018-06-18 13:40:33 t 1 1 138639 220 0.00 2019-10-27 21:36:27 2019-10-27 21:37:01 t 1 1 67002 131 0.00 2018-06-18 16:00:19 2018-06-18 16:01:33 t 1 1 138640 220 0.00 2019-10-27 21:37:00 2019-10-27 21:37:35 t 1 1 138641 220 0.00 2019-10-27 21:37:35 2019-10-27 21:38:09 t 1 1 138645 514 0.00 2019-10-27 21:34:16 2019-10-27 21:38:42 t 1 1 138653 327 0.00 2019-10-27 21:38:36 2019-10-27 21:41:09 t 1 1 138510 430 0.00 2019-10-27 20:57:52 2019-10-27 20:59:02 t 1 1 138512 220 0.00 2019-10-27 20:58:29 2019-10-27 20:59:20 t 1 1 138513 508 0.00 2019-10-27 20:56:37 2019-10-27 20:59:32 t 1 2 138515 220 0.00 2019-10-27 20:59:20 2019-10-27 20:59:52 t 1 1 138517 220 0.00 2019-10-27 20:59:52 2019-10-27 21:00:47 t 1 1 138518 220 0.00 2019-10-27 21:00:47 2019-10-27 21:01:22 t 1 1 138523 220 0.00 2019-10-27 21:01:21 2019-10-27 21:04:02 t 1 1 138525 327 0.00 2019-10-27 21:03:22 2019-10-27 21:04:47 t 1 1 138526 220 0.00 2019-10-27 21:04:37 2019-10-27 21:06:09 t 1 1 138527 613 0.00 2019-10-27 20:55:35 2019-10-27 21:06:16 t 1 1 138529 220 0.00 2019-10-27 21:06:09 2019-10-27 21:06:44 t 1 1 138531 591 0.00 2019-10-27 20:55:58 2019-10-27 21:07:15 t 1 1 138532 327 0.00 2019-10-27 21:07:27 2019-10-27 21:07:29 t 1 1 138533 220 0.00 2019-10-27 21:06:44 2019-10-27 21:08:01 t 1 1 138537 327 0.00 2019-10-27 21:08:49 2019-10-27 21:09:18 t 1 1 138539 220 0.00 2019-10-27 21:09:44 2019-10-27 21:10:17 t 1 1 138541 327 0.00 2019-10-27 21:09:51 2019-10-27 21:10:44 t 1 1 138544 613 0.00 2019-10-27 21:08:11 2019-10-27 21:11:47 t 1 1 138545 220 0.00 2019-10-27 21:11:27 2019-10-27 21:12:02 t 1 1 138548 562 0.00 2019-10-27 20:58:14 2019-10-27 21:12:28 t 1 1 138550 485 0.00 2019-10-27 21:10:58 2019-10-27 21:12:37 t 1 1 138551 220 0.00 2019-10-27 21:12:36 2019-10-27 21:13:07 t 1 1 138556 220 0.00 2019-10-27 21:13:38 2019-10-27 21:14:11 t 1 1 138560 327 0.00 2019-10-27 21:14:46 2019-10-27 21:15:48 t 1 1 138562 613 0.00 2019-10-27 21:11:47 2019-10-27 21:16:41 t 1 1 138565 220 0.00 2019-10-27 21:17:09 2019-10-27 21:17:44 t 1 1 138566 544 0.00 2019-10-27 20:18:07 2019-10-27 21:18:12 t 1 2 138567 220 0.00 2019-10-27 21:17:44 2019-10-27 21:18:15 t 1 1 138569 327 0.00 2019-10-27 21:18:03 2019-10-27 21:18:40 t 1 1 138571 220 0.00 2019-10-27 21:18:15 2019-10-27 21:18:47 t 1 1 138573 220 0.00 2019-10-27 21:18:47 2019-10-27 21:19:18 t 1 1 138574 220 0.00 2019-10-27 21:19:18 2019-10-27 21:19:52 t 1 1 138575 327 0.00 2019-10-27 21:19:23 2019-10-27 21:20:11 t 1 1 138577 220 0.00 2019-10-27 21:20:24 2019-10-27 21:20:59 t 1 1 138581 220 0.00 2019-10-27 21:21:32 2019-10-27 21:22:07 t 1 1 138600 327 0.00 2019-10-27 21:26:07 2019-10-27 21:27:11 t 1 1 138601 520 0.00 2019-10-27 21:19:05 2019-10-27 21:27:33 t 1 1 138603 220 0.00 2019-10-27 21:27:07 2019-10-27 21:27:40 t 1 1 138608 327 0.00 2019-10-27 21:27:32 2019-10-27 21:28:54 t 1 1 138610 532 0.00 2019-10-27 21:29:24 2019-10-27 21:29:40 t 1 1 67127 185 0.00 2018-06-20 20:12:57 2018-06-20 20:14:33 t 1 1 138612 220 0.00 2019-10-27 21:29:16 2019-10-27 21:29:50 t 1 1 138616 520 0.00 2019-10-27 21:27:33 2019-10-27 21:30:49 t 1 1 138617 220 0.00 2019-10-27 21:30:23 2019-10-27 21:30:58 t 1 1 138618 220 0.00 2019-10-27 21:30:58 2019-10-27 21:31:29 t 1 1 138620 613 0.00 2019-10-27 21:25:45 2019-10-27 21:32:26 t 1 1 138624 220 0.00 2019-10-27 21:32:36 2019-10-27 21:33:08 t 1 1 138625 220 0.00 2019-10-27 21:33:08 2019-10-27 21:33:41 t 1 1 138629 611 0.00 2019-10-27 21:26:38 2019-10-27 21:34:47 t 1 1 138633 327 0.00 2019-10-27 21:35:18 2019-10-27 21:35:49 t 1 1 138635 220 0.00 2019-10-27 21:35:21 2019-10-27 21:35:52 t 1 1 138642 327 0.00 2019-10-27 21:36:28 2019-10-27 21:38:26 t 1 1 138646 587 0.00 2019-10-27 21:32:42 2019-10-27 21:39:03 t 1 1 138648 220 0.00 2019-10-27 21:38:40 2019-10-27 21:39:12 t 1 1 138650 587 0.00 2019-10-27 21:40:14 2019-10-27 21:40:17 t 1 1 138654 514 0.00 2019-10-27 21:38:42 2019-10-27 21:42:19 t 1 1 138657 613 0.00 2019-10-27 21:43:40 2019-10-27 21:43:40 f 1 1 138660 613 0.00 2019-10-27 21:36:45 2019-10-27 21:44:11 t 1 1 138667 562 0.00 2019-10-27 21:45:05 2019-10-27 21:46:17 t 1 1 138669 581 0.00 2019-10-27 21:31:09 2019-10-27 21:47:00 t 1 1 138675 520 0.00 2019-10-27 21:30:49 2019-10-27 21:49:07 t 1 1 138679 551 0.00 2019-10-27 21:10:11 2019-10-27 21:50:10 t 1 1 138681 585 0.00 2019-10-27 21:38:43 2019-10-27 21:50:27 t 1 1 67198 185 0.00 2018-06-21 14:47:18 2018-06-21 14:48:33 t 1 1 138683 562 0.00 2019-10-27 21:51:22 2019-10-27 21:51:57 t 1 1 138692 532 0.00 2019-10-27 21:56:35 2019-10-27 21:58:10 t 1 1 138696 562 0.00 2019-10-27 21:56:33 2019-10-27 22:02:45 t 1 1 138698 520 0.00 2019-10-27 21:49:06 2019-10-27 22:02:55 t 1 1 138701 585 0.00 2019-10-27 22:02:55 2019-10-27 22:04:30 t 1 1 138703 562 0.00 2019-10-27 22:06:49 2019-10-27 22:07:18 t 1 1 138705 591 0.00 2019-10-27 22:08:57 2019-10-27 22:09:24 t 1 1 138709 379 0.00 2019-10-27 21:54:26 2019-10-27 22:12:12 t 1 1 138718 520 0.00 2019-10-27 22:02:54 2019-10-27 22:17:11 t 1 1 138721 327 0.00 2019-10-27 22:18:44 2019-10-27 22:20:36 t 1 1 138723 327 0.00 2019-10-27 22:21:27 2019-10-27 22:21:58 t 1 1 138728 327 0.00 2019-10-27 22:26:14 2019-10-27 22:27:38 t 1 1 138729 327 0.00 2019-10-27 22:27:45 2019-10-27 22:28:18 t 1 1 138731 327 0.00 2019-10-27 22:30:06 2019-10-27 22:30:42 t 1 1 138734 327 0.00 2019-10-27 22:34:48 2019-10-27 22:35:26 t 1 1 138741 532 0.00 2019-10-27 22:38:31 2019-10-27 22:39:34 t 1 1 138742 551 0.00 2019-10-27 21:50:10 2019-10-27 22:40:36 t 1 1 138743 445 0.00 2019-10-27 21:18:20 2019-10-27 22:41:48 t 1 1 138744 585 0.00 2019-10-27 22:38:09 2019-10-27 22:42:25 t 1 1 138746 327 0.00 2019-10-27 22:38:29 2019-10-27 22:42:38 t 1 1 138750 481 0.00 2019-10-27 22:42:25 2019-10-27 22:48:26 t 1 1 138751 587 0.00 2019-10-27 22:38:02 2019-10-27 22:49:15 t 1 1 138753 485 0.00 2019-10-27 22:36:31 2019-10-27 22:50:28 t 1 1 138764 587 0.00 2019-10-27 22:49:47 2019-10-27 23:03:09 t 1 1 138769 514 0.00 2019-10-27 22:59:46 2019-10-27 23:05:58 t 1 1 138770 587 0.00 2019-10-27 23:05:24 2019-10-27 23:05:59 t 1 1 138772 485 0.00 2019-10-27 23:00:40 2019-10-27 23:08:02 t 1 1 138783 587 0.00 2019-10-27 23:10:47 2019-10-27 23:14:45 t 1 1 138784 611 0.00 2019-10-27 23:02:01 2019-10-27 23:16:19 t 1 1 138787 532 0.00 2019-10-27 23:17:02 2019-10-27 23:17:20 t 1 1 138788 595 0.00 2019-10-27 23:17:56 2019-10-27 23:18:06 t 1 1 138793 445 0.00 2019-10-27 22:58:46 2019-10-27 23:24:19 t 1 1 138795 595 0.00 2019-10-27 23:22:21 2019-10-27 23:26:21 t 1 1 138796 562 0.00 2019-10-27 23:26:44 2019-10-27 23:27:11 t 1 1 138799 595 0.00 2019-10-27 23:28:20 2019-10-27 23:28:28 t 1 1 138800 327 0.00 2019-10-27 23:10:54 2019-10-27 23:28:58 t 1 1 138804 562 0.00 2019-10-27 23:32:03 2019-10-27 23:32:13 t 1 1 138805 327 0.00 2019-10-27 23:33:23 2019-10-27 23:33:25 t 1 1 138807 532 0.00 2019-10-27 23:33:43 2019-10-27 23:34:16 t 1 1 138808 327 0.00 2019-10-27 23:34:09 2019-10-27 23:35:03 t 1 1 138810 327 0.00 2019-10-27 23:35:14 2019-10-27 23:37:04 t 1 1 138811 327 0.00 2019-10-27 23:37:35 2019-10-27 23:38:10 t 1 1 138814 361 0.00 2019-10-27 23:35:23 2019-10-27 23:40:39 t 1 2 138637 220 0.00 2019-10-27 21:35:52 2019-10-27 21:36:27 t 1 1 138643 416 0.00 2019-10-27 20:58:43 2019-10-27 21:38:31 t 1 1 138644 220 0.00 2019-10-27 21:38:09 2019-10-27 21:38:40 t 1 1 138647 562 0.00 2019-10-27 21:33:00 2019-10-27 21:39:04 t 1 1 138649 532 0.00 2019-10-27 21:36:29 2019-10-27 21:39:34 t 1 1 138651 562 0.00 2019-10-27 21:39:36 2019-10-27 21:40:21 t 1 1 138652 587 0.00 2019-10-27 21:41:01 2019-10-27 21:41:07 t 1 1 138656 532 0.00 2019-10-27 21:41:38 2019-10-27 21:43:10 t 1 1 138661 562 0.00 2019-10-27 21:40:43 2019-10-27 21:44:44 t 1 1 138663 613 0.00 2019-10-27 21:43:24 2019-10-27 21:45:10 t 1 1 138666 591 0.00 2019-10-27 21:37:05 2019-10-27 21:46:11 t 1 1 138668 512 0.00 2019-10-27 21:45:31 2019-10-27 21:46:48 t 1 1 138670 607 0.00 2019-10-27 21:34:29 2019-10-27 21:47:14 t 1 1 138671 327 0.00 2019-10-27 21:45:21 2019-10-27 21:48:07 t 1 1 138673 613 0.00 2019-10-27 21:44:21 2019-10-27 21:48:29 t 1 1 138676 562 0.00 2019-10-27 21:47:48 2019-10-27 21:49:09 t 1 1 138677 544 0.00 2019-10-27 21:49:06 2019-10-27 21:49:42 t 1 2 138682 591 0.00 2019-10-27 21:51:17 2019-10-27 21:51:33 t 1 1 138685 587 0.00 2019-10-27 21:43:21 2019-10-27 21:53:28 t 1 1 138686 613 0.00 2019-10-27 21:48:29 2019-10-27 21:53:38 t 1 1 138688 613 0.00 2019-10-27 21:53:38 2019-10-27 21:56:59 t 1 1 138689 585 0.00 2019-10-27 21:55:31 2019-10-27 21:57:28 t 1 1 138694 613 0.00 2019-10-27 21:56:59 2019-10-27 22:00:46 t 1 1 138697 613 0.00 2019-10-27 22:00:45 2019-10-27 22:02:52 t 1 1 138700 611 0.00 2019-10-27 21:58:05 2019-10-27 22:03:40 t 1 1 138704 538 0.00 2019-10-27 21:49:47 2019-10-27 22:07:56 t 1 1 138707 585 0.00 2019-10-27 22:08:32 2019-10-27 22:12:06 t 1 1 138711 512 0.00 2019-10-27 21:49:14 2019-10-27 22:13:51 t 1 1 138713 451 0.00 2019-10-27 22:07:17 2019-10-27 22:16:15 t 1 1 138714 379 0.00 2019-10-27 22:12:12 2019-10-27 22:16:17 t 1 1 138717 451 0.00 2019-10-27 22:16:15 2019-10-27 22:17:03 t 1 1 138719 327 0.00 2019-10-27 22:17:09 2019-10-27 22:17:17 t 1 1 138720 327 0.00 2019-10-27 22:17:42 2019-10-27 22:18:37 t 1 1 138722 532 0.00 2019-10-27 22:21:07 2019-10-27 22:21:38 t 1 1 138732 327 0.00 2019-10-27 22:31:02 2019-10-27 22:32:13 t 1 1 138733 327 0.00 2019-10-27 22:32:40 2019-10-27 22:33:55 t 1 1 138735 327 0.00 2019-10-27 22:35:45 2019-10-27 22:36:42 t 1 1 138736 327 0.00 2019-10-27 22:36:51 2019-10-27 22:36:58 t 1 1 138739 587 0.00 2019-10-27 22:13:58 2019-10-27 22:38:02 t 1 1 138740 514 0.00 2019-10-27 21:42:19 2019-10-27 22:39:12 t 1 1 138745 481 0.00 2019-10-27 22:23:42 2019-10-27 22:42:25 t 1 1 138747 327 0.00 2019-10-27 22:42:43 2019-10-27 22:44:52 t 1 1 138754 451 0.00 2019-10-27 22:37:02 2019-10-27 22:53:27 t 1 1 138757 451 0.00 2019-10-27 22:53:27 2019-10-27 22:58:26 t 1 1 138758 595 0.00 2019-10-27 22:49:52 2019-10-27 22:59:13 t 1 1 138760 514 0.00 2019-10-27 22:46:10 2019-10-27 22:59:46 t 1 1 138763 595 0.00 2019-10-27 23:02:30 2019-10-27 23:02:39 t 1 1 138766 587 0.00 2019-10-27 23:03:11 2019-10-27 23:04:00 t 1 1 138768 562 0.00 2019-10-27 23:05:22 2019-10-27 23:05:48 t 1 1 138771 532 0.00 2019-10-27 23:05:58 2019-10-27 23:06:20 t 1 1 138774 595 0.00 2019-10-27 23:07:27 2019-10-27 23:09:52 t 1 1 138775 587 0.00 2019-10-27 23:06:21 2019-10-27 23:09:59 t 1 1 138776 595 0.00 2019-10-27 23:10:02 2019-10-27 23:10:24 t 1 1 138778 595 0.00 2019-10-27 23:10:34 2019-10-27 23:10:37 t 1 1 138779 327 0.00 2019-10-27 22:45:39 2019-10-27 23:10:53 t 1 1 138780 595 0.00 2019-10-27 23:10:47 2019-10-27 23:11:12 t 1 1 138782 595 0.00 2019-10-27 23:13:09 2019-10-27 23:13:31 t 1 1 67186 131 0.00 2018-06-21 12:34:03 2018-06-21 12:35:33 t 1 1 138785 562 0.00 2019-10-27 23:16:06 2019-10-27 23:16:25 t 1 1 138786 595 0.00 2019-10-27 23:16:39 2019-10-27 23:16:57 t 1 1 138794 551 0.00 2019-10-27 22:40:36 2019-10-27 23:25:11 t 1 1 138797 220 0.00 2019-10-27 16:03:49 2019-10-27 23:27:16 t 1 1 138798 532 0.00 2019-10-27 23:27:43 2019-10-27 23:28:09 t 1 1 138801 611 0.00 2019-10-27 23:16:17 2019-10-27 23:31:29 t 1 1 138806 514 0.00 2019-10-27 23:20:56 2019-10-27 23:34:02 t 1 1 138817 220 0.00 2019-10-27 21:40:30 2019-10-27 23:42:39 t 1 2 138823 220 0.00 2019-10-27 23:44:46 2019-10-27 23:45:18 t 1 1 138830 220 0.00 2019-10-27 23:46:25 2019-10-27 23:47:24 t 1 1 138831 585 0.00 2019-10-27 23:46:21 2019-10-27 23:47:50 t 1 1 138832 220 0.00 2019-10-27 23:47:24 2019-10-27 23:47:57 t 1 1 138835 562 0.00 2019-10-27 23:49:06 2019-10-27 23:49:32 t 1 1 138836 327 0.00 2019-10-27 23:50:59 2019-10-27 23:51:16 t 1 1 138843 611 0.00 2019-10-27 23:56:43 2019-10-27 23:57:09 t 1 1 138847 416 0.00 2019-10-27 21:42:09 2019-10-27 23:58:22 t 1 1 138852 514 0.00 2019-10-27 23:34:02 2019-10-28 00:02:02 t 1 1 138859 551 0.00 2019-10-28 00:00:54 2019-10-28 00:09:56 t 1 1 138863 327 0.00 2019-10-28 00:15:08 2019-10-28 00:15:38 t 1 1 67243 185 0.00 2018-06-22 02:00:20 2018-06-22 02:01:35 t 1 1 138865 449 0.00 2019-10-28 00:09:19 2019-10-28 00:16:32 t 1 1 138866 551 0.00 2019-10-28 00:09:56 2019-10-28 00:17:42 t 1 1 138867 587 0.00 2019-10-28 00:16:51 2019-10-28 00:18:20 t 1 1 138868 551 0.00 2019-10-28 00:17:42 2019-10-28 00:19:11 t 1 1 138870 395 0.00 2019-10-27 23:47:39 2019-10-28 00:21:02 t 1 2 138872 327 0.00 2019-10-28 00:22:26 2019-10-28 00:23:31 t 1 1 138873 587 0.00 2019-10-28 00:18:20 2019-10-28 00:24:50 t 1 1 138876 327 0.00 2019-10-28 00:26:20 2019-10-28 00:26:32 t 1 1 138881 587 0.00 2019-10-28 00:24:50 2019-10-28 00:30:54 t 1 1 138885 327 0.00 2019-10-28 00:33:05 2019-10-28 00:33:39 t 1 1 138886 327 0.00 2019-10-28 00:34:10 2019-10-28 00:34:43 t 1 1 138887 532 0.00 2019-10-28 00:36:19 2019-10-28 00:36:39 t 1 1 138892 503 0.00 2019-10-28 00:28:23 2019-10-28 00:41:51 t 1 1 138894 220 0.00 2019-10-27 23:47:57 2019-10-28 00:42:27 t 1 1 138895 327 0.00 2019-10-28 00:46:31 2019-10-28 00:46:38 t 1 1 138899 562 0.00 2019-10-28 00:47:17 2019-10-28 00:47:44 t 1 1 138905 532 0.00 2019-10-28 00:53:17 2019-10-28 00:53:18 t 1 1 138908 327 0.00 2019-10-28 00:53:56 2019-10-28 00:54:26 t 1 1 138915 587 0.00 2019-10-28 00:54:31 2019-10-28 01:02:49 t 1 1 67308 185 0.00 2018-06-23 02:48:52 2018-06-23 02:50:36 t 1 1 138918 327 0.00 2019-10-28 01:06:06 2019-10-28 01:06:29 t 1 1 138921 562 0.00 2019-10-28 01:09:36 2019-10-28 01:09:44 t 1 1 138928 327 0.00 2019-10-28 01:12:27 2019-10-28 01:12:39 t 1 1 138929 327 0.00 2019-10-28 01:13:33 2019-10-28 01:13:47 t 1 1 138931 327 0.00 2019-10-28 01:17:45 2019-10-28 01:17:50 t 1 1 138932 327 0.00 2019-10-28 01:18:39 2019-10-28 01:18:45 t 1 1 138933 220 0.00 2019-10-28 01:16:39 2019-10-28 01:19:05 t 1 1 138937 587 0.00 2019-10-28 01:12:01 2019-10-28 01:22:17 t 1 1 138938 587 0.00 2019-10-28 01:22:45 2019-10-28 01:23:30 t 1 1 138655 416 0.00 2019-10-27 21:40:41 2019-10-27 21:42:39 t 1 1 138658 613 0.00 2019-10-27 21:43:49 2019-10-27 21:43:49 f 1 1 138659 613 0.00 2019-10-27 21:44:10 2019-10-27 21:44:10 f 1 1 138662 532 0.00 2019-10-27 21:43:29 2019-10-27 21:45:00 t 1 1 138664 327 0.00 2019-10-27 21:44:39 2019-10-27 21:45:13 t 1 1 138665 532 0.00 2019-10-27 21:45:00 2019-10-27 21:45:38 t 1 1 138672 532 0.00 2019-10-27 21:46:16 2019-10-27 21:48:10 t 1 1 138674 578 0.00 2019-10-27 20:26:16 2019-10-27 21:49:01 t 1 1 138678 538 0.00 2019-10-27 20:28:28 2019-10-27 21:49:44 t 1 1 67043 131 0.00 2018-06-19 13:23:46 2018-06-19 13:25:33 t 1 1 67044 131 0.00 2018-06-19 13:55:18 2018-06-19 13:56:33 t 1 1 67046 131 0.00 2018-06-19 15:08:39 2018-06-19 15:10:33 t 1 1 138680 562 0.00 2019-10-27 21:49:28 2019-10-27 21:50:15 t 1 1 138684 532 0.00 2019-10-27 21:48:58 2019-10-27 21:52:13 t 1 1 67054 131 0.00 2018-06-19 16:16:24 2018-06-19 16:17:33 t 1 1 138687 562 0.00 2019-10-27 21:52:08 2019-10-27 21:56:26 t 1 1 138690 532 0.00 2019-10-27 21:57:07 2019-10-27 21:57:32 t 1 1 138691 611 0.00 2019-10-27 21:34:46 2019-10-27 21:58:05 t 1 1 138693 220 0.00 2019-10-27 21:39:12 2019-10-27 22:00:43 t 1 1 138695 456 0.00 2019-10-27 21:44:23 2019-10-27 22:00:51 t 1 1 138699 585 0.00 2019-10-27 22:01:27 2019-10-27 22:02:55 t 1 1 138702 562 0.00 2019-10-27 22:04:44 2019-10-27 22:06:21 t 1 1 138706 562 0.00 2019-10-27 22:09:55 2019-10-27 22:10:49 t 1 1 138708 532 0.00 2019-10-27 22:10:44 2019-10-27 22:12:10 t 1 1 138710 587 0.00 2019-10-27 21:53:28 2019-10-27 22:12:49 t 1 1 138712 327 0.00 2019-10-27 21:48:33 2019-10-27 22:14:25 t 1 1 138715 327 0.00 2019-10-27 22:14:25 2019-10-27 22:16:43 t 1 1 138716 327 0.00 2019-10-27 22:16:49 2019-10-27 22:16:57 t 1 1 67102 131 0.00 2018-06-20 12:28:52 2018-06-20 12:30:33 t 1 1 138724 327 0.00 2019-10-27 22:22:14 2019-10-27 22:22:49 t 1 1 138725 512 0.00 2019-10-27 22:13:51 2019-10-27 22:23:22 t 1 1 138726 327 0.00 2019-10-27 22:23:13 2019-10-27 22:24:47 t 1 1 138727 379 0.00 2019-10-27 22:16:17 2019-10-27 22:27:24 t 1 1 138730 585 0.00 2019-10-27 22:27:21 2019-10-27 22:29:45 t 1 1 138737 451 0.00 2019-10-27 22:17:02 2019-10-27 22:37:02 t 1 1 138738 327 0.00 2019-10-27 22:37:03 2019-10-27 22:37:41 t 1 1 138748 327 0.00 2019-10-27 22:45:09 2019-10-27 22:45:16 t 1 1 138749 514 0.00 2019-10-27 22:39:12 2019-10-27 22:46:10 t 1 1 138752 532 0.00 2019-10-27 22:49:00 2019-10-27 22:50:16 t 1 1 138755 445 0.00 2019-10-27 22:41:48 2019-10-27 22:57:04 t 1 1 138756 518 0.00 2019-10-27 21:57:22 2019-10-27 22:57:27 t 1 2 138759 485 0.00 2019-10-27 22:57:25 2019-10-27 22:59:39 t 1 1 138761 532 0.00 2019-10-27 22:59:44 2019-10-27 23:00:04 t 1 1 138762 451 0.00 2019-10-27 23:00:10 2019-10-27 23:02:18 t 1 1 138765 574 0.00 2019-10-27 22:57:16 2019-10-27 23:03:12 t 1 1 138767 562 0.00 2019-10-27 22:11:00 2019-10-27 23:04:14 t 1 1 138773 514 0.00 2019-10-27 23:05:58 2019-10-27 23:09:48 t 1 1 138777 587 0.00 2019-10-27 23:10:23 2019-10-27 23:10:29 t 1 1 138781 595 0.00 2019-10-27 23:12:47 2019-10-27 23:13:00 t 1 1 67179 131 0.00 2018-06-21 10:30:02 2018-06-21 10:31:33 t 1 1 138789 595 0.00 2019-10-27 23:18:18 2019-10-27 23:18:40 t 1 1 138790 595 0.00 2019-10-27 23:18:49 2019-10-27 23:19:12 t 1 1 138791 595 0.00 2019-10-27 23:19:22 2019-10-27 23:19:45 t 1 1 138792 514 0.00 2019-10-27 23:09:48 2019-10-27 23:20:56 t 1 1 138802 327 0.00 2019-10-27 23:28:57 2019-10-27 23:31:49 t 1 1 138803 585 0.00 2019-10-27 23:30:15 2019-10-27 23:32:09 t 1 1 138809 611 0.00 2019-10-27 23:31:28 2019-10-27 23:36:58 t 1 1 138812 562 0.00 2019-10-27 23:38:20 2019-10-27 23:38:39 t 1 1 138813 327 0.00 2019-10-27 23:39:14 2019-10-27 23:39:50 t 1 1 138816 327 0.00 2019-10-27 23:41:22 2019-10-27 23:41:55 t 1 1 138819 327 0.00 2019-10-27 23:42:40 2019-10-27 23:43:14 t 1 1 138822 220 0.00 2019-10-27 22:25:38 2019-10-27 23:44:46 t 1 1 138825 456 0.00 2019-10-27 23:34:07 2019-10-27 23:46:01 t 1 1 138829 327 0.00 2019-10-27 23:46:50 2019-10-27 23:47:23 t 1 1 138833 327 0.00 2019-10-27 23:47:32 2019-10-27 23:48:07 t 1 1 138839 327 0.00 2019-10-27 23:52:15 2019-10-27 23:53:08 t 1 1 138840 327 0.00 2019-10-27 23:54:18 2019-10-27 23:54:58 t 1 1 138844 327 0.00 2019-10-27 23:56:37 2019-10-27 23:57:09 t 1 1 138846 327 0.00 2019-10-27 23:57:27 2019-10-27 23:57:39 t 1 1 138850 551 0.00 2019-10-27 23:47:21 2019-10-28 00:00:54 t 1 1 138851 327 0.00 2019-10-27 23:59:56 2019-10-28 00:01:01 t 1 1 138854 532 0.00 2019-10-28 00:02:20 2019-10-28 00:02:32 t 1 1 138856 327 0.00 2019-10-28 00:05:23 2019-10-28 00:06:10 t 1 1 138857 562 0.00 2019-10-28 00:07:34 2019-10-28 00:07:53 t 1 1 138858 449 0.00 2019-10-28 00:00:43 2019-10-28 00:09:19 t 1 1 138869 327 0.00 2019-10-28 00:19:58 2019-10-28 00:20:09 t 1 1 138874 327 0.00 2019-10-28 00:25:22 2019-10-28 00:25:33 t 1 1 138875 562 0.00 2019-10-28 00:25:50 2019-10-28 00:26:15 t 1 1 138878 551 0.00 2019-10-28 00:27:12 2019-10-28 00:30:05 t 1 1 138888 562 0.00 2019-10-28 00:36:36 2019-10-28 00:36:56 t 1 1 138890 327 0.00 2019-10-28 00:37:14 2019-10-28 00:38:15 t 1 1 67277 185 0.00 2018-06-22 18:31:27 2018-06-22 18:32:36 t 1 1 138891 327 0.00 2019-10-28 00:38:52 2019-10-28 00:39:08 t 1 1 138896 532 0.00 2019-10-28 00:46:58 2019-10-28 00:47:21 t 1 1 138897 532 0.00 2019-10-28 00:47:30 2019-10-28 00:47:41 t 1 1 138902 327 0.00 2019-10-28 00:51:35 2019-10-28 00:51:37 t 1 1 138904 587 0.00 2019-10-28 00:51:46 2019-10-28 00:53:05 t 1 1 138906 220 0.00 2019-10-27 23:49:53 2019-10-28 00:53:56 t 1 2 138910 327 0.00 2019-10-28 00:55:24 2019-10-28 00:55:41 t 1 1 138914 327 0.00 2019-10-28 01:00:34 2019-10-28 01:01:31 t 1 1 138916 562 0.00 2019-10-28 01:04:41 2019-10-28 01:05:10 t 1 1 138917 220 0.00 2019-10-28 00:42:27 2019-10-28 01:06:26 t 1 1 138919 532 0.00 2019-10-28 01:08:23 2019-10-28 01:08:42 t 1 1 138920 327 0.00 2019-10-28 01:09:14 2019-10-28 01:09:15 t 1 1 138922 587 0.00 2019-10-28 01:03:10 2019-10-28 01:09:46 t 1 1 138925 587 0.00 2019-10-28 01:10:03 2019-10-28 01:11:29 t 1 1 138927 220 0.00 2019-10-28 01:06:26 2019-10-28 01:12:39 t 1 1 138936 585 0.00 2019-10-28 01:19:48 2019-10-28 01:21:19 t 1 1 138940 416 0.00 2019-10-28 01:10:15 2019-10-28 01:24:31 t 1 1 138942 220 0.00 2019-10-28 01:19:05 2019-10-28 01:27:55 t 1 1 138943 587 0.00 2019-10-28 01:25:51 2019-10-28 01:28:27 t 1 1 138945 532 0.00 2019-10-28 01:29:44 2019-10-28 01:30:05 t 1 1 138955 532 0.00 2019-10-28 01:40:28 2019-10-28 01:40:48 t 1 1 138965 220 0.00 2019-10-28 01:54:48 2019-10-28 02:01:11 t 1 1 138969 220 0.00 2019-10-28 02:01:11 2019-10-28 02:07:13 t 1 1 138970 585 0.00 2019-10-28 02:03:08 2019-10-28 02:08:49 t 1 1 138972 562 0.00 2019-10-28 02:13:45 2019-10-28 02:14:15 t 1 1 138815 532 0.00 2019-10-27 23:40:48 2019-10-27 23:41:07 t 1 1 138818 395 0.00 2019-10-27 23:19:26 2019-10-27 23:42:43 t 1 2 138820 609 0.00 2019-10-27 23:40:23 2019-10-27 23:43:22 t 1 1 138821 220 0.00 2019-10-27 23:33:58 2019-10-27 23:44:22 t 1 2 138824 220 0.00 2019-10-27 23:45:17 2019-10-27 23:45:56 t 1 1 67349 185 0.00 2018-06-23 14:04:03 2018-06-23 14:05:34 t 1 1 138826 327 0.00 2019-10-27 23:45:08 2019-10-27 23:46:19 t 1 1 138827 220 0.00 2019-10-27 23:45:55 2019-10-27 23:46:26 t 1 1 67354 185 0.00 2018-06-23 14:37:40 2018-06-23 14:39:34 t 1 1 138828 551 0.00 2019-10-27 23:34:05 2019-10-27 23:47:21 t 1 1 138834 327 0.00 2019-10-27 23:48:52 2019-10-27 23:49:27 t 1 1 138837 532 0.00 2019-10-27 23:51:30 2019-10-27 23:51:49 t 1 1 138838 595 0.00 2019-10-27 23:29:42 2019-10-27 23:52:39 t 1 1 138841 538 0.00 2019-10-27 22:11:40 2019-10-27 23:55:10 t 1 1 138842 327 0.00 2019-10-27 23:55:55 2019-10-27 23:56:26 t 1 1 138845 595 0.00 2019-10-27 23:54:21 2019-10-27 23:57:16 t 1 1 138848 372 0.00 2019-10-27 23:43:44 2019-10-27 23:58:49 t 1 2 138849 562 0.00 2019-10-27 23:59:52 2019-10-28 00:00:17 t 1 1 138853 327 0.00 2019-10-28 00:01:58 2019-10-28 00:02:11 t 1 1 138855 327 0.00 2019-10-28 00:03:51 2019-10-28 00:03:58 t 1 1 138860 327 0.00 2019-10-28 00:10:30 2019-10-28 00:10:37 t 1 1 138861 416 0.00 2019-10-27 23:58:22 2019-10-28 00:12:16 t 1 1 138862 562 0.00 2019-10-28 00:14:59 2019-10-28 00:15:25 t 1 1 138864 587 0.00 2019-10-28 00:13:03 2019-10-28 00:15:59 t 1 1 138871 327 0.00 2019-10-28 00:21:19 2019-10-28 00:21:32 t 1 1 138877 327 0.00 2019-10-28 00:27:36 2019-10-28 00:28:09 t 1 1 138879 416 0.00 2019-10-28 00:12:16 2019-10-28 00:30:42 t 1 1 138880 327 0.00 2019-10-28 00:30:45 2019-10-28 00:30:51 t 1 1 138882 327 0.00 2019-10-28 00:31:12 2019-10-28 00:31:19 t 1 1 138883 327 0.00 2019-10-28 00:32:17 2019-10-28 00:32:50 t 1 1 138884 532 0.00 2019-10-28 00:31:05 2019-10-28 00:33:11 t 1 1 138889 587 0.00 2019-10-28 00:30:54 2019-10-28 00:38:13 t 1 1 138893 327 0.00 2019-10-28 00:41:12 2019-10-28 00:42:02 t 1 1 138898 532 0.00 2019-10-28 00:47:41 2019-10-28 00:47:41 t 1 1 138900 416 0.00 2019-10-28 00:30:42 2019-10-28 00:48:16 t 1 1 138901 587 0.00 2019-10-28 00:38:13 2019-10-28 00:51:21 t 1 1 138903 532 0.00 2019-10-28 00:52:49 2019-10-28 00:52:55 t 1 1 138907 587 0.00 2019-10-28 00:54:05 2019-10-28 00:54:14 t 1 1 138909 562 0.00 2019-10-28 00:55:01 2019-10-28 00:55:23 t 1 1 138911 327 0.00 2019-10-28 00:56:37 2019-10-28 00:57:40 t 1 1 138912 532 0.00 2019-10-28 00:57:40 2019-10-28 00:58:01 t 1 1 138913 327 0.00 2019-10-28 00:58:23 2019-10-28 00:59:48 t 1 1 138923 416 0.00 2019-10-28 00:48:16 2019-10-28 01:10:15 t 1 1 138924 327 0.00 2019-10-28 01:10:41 2019-10-28 01:10:54 t 1 1 138926 327 0.00 2019-10-28 01:11:35 2019-10-28 01:12:08 t 1 1 138930 220 0.00 2019-10-28 01:12:39 2019-10-28 01:16:39 t 1 1 138934 532 0.00 2019-10-28 01:19:04 2019-10-28 01:19:23 t 1 1 138935 562 0.00 2019-10-28 01:20:15 2019-10-28 01:20:25 t 1 1 138944 327 0.00 2019-10-28 01:19:45 2019-10-28 01:28:29 t 1 1 138946 585 0.00 2019-10-28 01:29:12 2019-10-28 01:30:30 t 1 1 138947 562 0.00 2019-10-28 01:31:01 2019-10-28 01:31:10 t 1 1 138949 220 0.00 2019-10-28 01:27:55 2019-10-28 01:32:17 t 1 1 138951 220 0.00 2019-10-28 01:32:17 2019-10-28 01:36:12 t 1 1 138953 412 0.00 2019-10-28 01:24:44 2019-10-28 01:38:42 t 1 1 138954 220 0.00 2019-10-28 01:36:12 2019-10-28 01:40:41 t 1 1 138956 562 0.00 2019-10-28 01:41:36 2019-10-28 01:41:58 t 1 1 138960 532 0.00 2019-10-28 01:50:14 2019-10-28 01:50:45 t 1 1 138963 532 0.00 2019-10-28 01:54:59 2019-10-28 01:55:10 t 1 1 138964 514 0.00 2019-10-28 00:02:02 2019-10-28 01:57:11 t 1 1 138967 562 0.00 2019-10-28 02:03:06 2019-10-28 02:03:27 t 1 1 138971 532 0.00 2019-10-28 02:11:46 2019-10-28 02:12:06 t 1 1 67538 185 0.00 2018-06-25 01:05:39 2018-06-25 01:07:38 t 1 1 138973 220 0.00 2019-10-28 02:07:13 2019-10-28 02:16:01 t 1 1 138977 220 0.00 2019-10-28 02:16:01 2019-10-28 02:22:20 t 1 1 138978 532 0.00 2019-10-28 02:22:26 2019-10-28 02:22:45 t 1 1 138986 562 0.00 2019-10-28 02:32:17 2019-10-28 02:32:39 t 1 1 67551 131 0.00 2018-06-25 10:06:29 2018-06-25 10:07:39 t 1 1 138987 220 0.00 2019-10-28 02:29:52 2019-10-28 02:33:09 t 1 1 138991 587 0.00 2019-10-28 02:35:26 2019-10-28 02:35:53 t 1 1 138996 587 0.00 2019-10-28 02:36:06 2019-10-28 02:51:38 t 1 1 138999 562 0.00 2019-10-28 02:53:45 2019-10-28 02:54:08 t 1 1 139002 562 0.00 2019-10-28 03:04:33 2019-10-28 03:04:53 t 1 1 139008 551 0.00 2019-10-28 03:07:11 2019-10-28 03:25:45 t 1 1 139012 587 0.00 2019-10-28 03:34:05 2019-10-28 03:34:14 t 1 1 139014 562 0.00 2019-10-28 03:36:50 2019-10-28 03:37:10 t 1 1 139016 587 0.00 2019-10-28 03:34:29 2019-10-28 03:38:50 t 1 1 139017 514 0.00 2019-10-28 03:28:35 2019-10-28 03:39:59 t 1 1 139018 562 0.00 2019-10-28 03:43:05 2019-10-28 03:43:23 t 1 1 139019 311 0.00 2019-10-28 03:18:52 2019-10-28 03:46:15 t 1 2 139021 514 0.00 2019-10-28 03:39:59 2019-10-28 03:47:29 t 1 1 139024 562 0.00 2019-10-28 03:53:43 2019-10-28 03:54:03 t 1 1 139027 587 0.00 2019-10-28 03:56:02 2019-10-28 04:02:05 t 1 1 139031 551 0.00 2019-10-28 03:49:53 2019-10-28 04:08:10 t 1 1 139032 578 0.00 2019-10-27 21:49:01 2019-10-28 04:11:06 t 1 1 139036 578 0.00 2019-10-28 04:11:06 2019-10-28 04:18:47 t 1 1 139038 514 0.00 2019-10-28 04:15:03 2019-10-28 04:25:50 t 1 1 139040 578 0.00 2019-10-28 04:18:47 2019-10-28 04:27:16 t 1 1 139041 416 0.00 2019-10-28 04:05:04 2019-10-28 04:29:59 t 1 1 139043 578 0.00 2019-10-28 04:27:16 2019-10-28 04:37:47 t 1 1 139044 562 0.00 2019-10-28 04:44:18 2019-10-28 04:44:39 t 1 1 139046 445 0.00 2019-10-27 23:24:33 2019-10-28 04:49:15 t 1 1 139049 522 0.00 2019-10-28 04:43:51 2019-10-28 04:56:22 t 1 1 139051 578 0.00 2019-10-28 04:55:12 2019-10-28 05:00:39 t 1 1 139053 416 0.00 2019-10-28 04:30:04 2019-10-28 05:02:49 t 1 1 139055 578 0.00 2019-10-28 05:00:39 2019-10-28 05:11:27 t 1 1 139058 522 0.00 2019-10-28 05:13:54 2019-10-28 05:14:09 t 1 1 139061 522 0.00 2019-10-28 05:15:17 2019-10-28 05:16:05 t 1 1 139066 522 0.00 2019-10-28 05:20:06 2019-10-28 05:20:18 t 1 1 139067 522 0.00 2019-10-28 05:20:41 2019-10-28 05:21:07 t 1 1 139068 522 0.00 2019-10-28 05:22:22 2019-10-28 05:22:40 t 1 1 139069 522 0.00 2019-10-28 05:22:57 2019-10-28 05:23:11 t 1 1 139070 522 0.00 2019-10-28 05:23:23 2019-10-28 05:24:03 t 1 1 139074 562 0.00 2019-10-28 05:27:24 2019-10-28 05:27:43 t 1 1 139076 522 0.00 2019-10-28 05:30:27 2019-10-28 05:30:39 t 1 1 139077 522 0.00 2019-10-28 05:30:53 2019-10-28 05:31:09 t 1 1 139079 522 0.00 2019-10-28 05:32:53 2019-10-28 05:33:13 t 1 1 139080 522 0.00 2019-10-28 05:34:30 2019-10-28 05:34:42 t 1 1 138939 587 0.00 2019-10-28 01:24:11 2019-10-28 01:24:16 t 1 1 138941 412 0.00 2019-10-28 00:46:29 2019-10-28 01:24:44 t 1 1 138948 327 0.00 2019-10-28 01:30:02 2019-10-28 01:31:15 t 1 1 138950 220 0.00 2019-10-28 01:34:21 2019-10-28 01:35:47 t 1 2 138952 587 0.00 2019-10-28 01:28:55 2019-10-28 01:38:06 t 1 1 138957 587 0.00 2019-10-28 01:38:32 2019-10-28 01:44:02 t 1 1 138958 587 0.00 2019-10-28 01:44:01 2019-10-28 01:45:14 t 1 1 138959 220 0.00 2019-10-28 01:40:41 2019-10-28 01:46:44 t 1 1 138961 562 0.00 2019-10-28 01:52:19 2019-10-28 01:52:42 t 1 1 138962 220 0.00 2019-10-28 01:46:44 2019-10-28 01:54:48 t 1 1 138966 532 0.00 2019-10-28 02:01:04 2019-10-28 02:01:24 t 1 1 138968 514 0.00 2019-10-28 01:57:11 2019-10-28 02:05:57 t 1 1 138974 416 0.00 2019-10-28 01:24:31 2019-10-28 02:18:22 t 1 1 138976 551 0.00 2019-10-28 02:14:03 2019-10-28 02:22:18 t 1 1 138979 532 0.00 2019-10-28 02:24:11 2019-10-28 02:24:23 t 1 1 138981 416 0.00 2019-10-28 02:26:30 2019-10-28 02:29:45 t 1 1 138983 220 0.00 2019-10-28 02:22:20 2019-10-28 02:29:52 t 1 1 138988 416 0.00 2019-10-28 02:29:51 2019-10-28 02:33:15 t 1 1 138990 587 0.00 2019-10-28 02:32:27 2019-10-28 02:35:26 t 1 1 138992 536 0.00 2019-10-28 02:39:03 2019-10-28 02:39:21 t 1 1 138994 562 0.00 2019-10-28 02:43:01 2019-10-28 02:43:21 t 1 1 138995 536 0.00 2019-10-28 02:45:06 2019-10-28 02:48:14 t 1 1 138998 416 0.00 2019-10-28 02:41:39 2019-10-28 02:52:46 t 1 1 139001 536 0.00 2019-10-28 02:54:49 2019-10-28 03:04:09 t 1 1 139006 587 0.00 2019-10-28 03:11:05 2019-10-28 03:16:28 t 1 1 139009 562 0.00 2019-10-28 03:26:06 2019-10-28 03:26:26 t 1 1 139010 514 0.00 2019-10-28 03:24:18 2019-10-28 03:28:35 t 1 1 139011 587 0.00 2019-10-28 03:17:30 2019-10-28 03:34:05 t 1 1 139013 551 0.00 2019-10-28 03:25:45 2019-10-28 03:35:20 t 1 1 139022 551 0.00 2019-10-28 03:35:20 2019-10-28 03:49:53 t 1 1 139023 587 0.00 2019-10-28 03:39:01 2019-10-28 03:52:52 t 1 1 139025 587 0.00 2019-10-28 03:52:52 2019-10-28 03:56:02 t 1 1 139028 514 0.00 2019-10-28 03:58:14 2019-10-28 04:04:03 t 1 1 139029 416 0.00 2019-10-28 03:38:55 2019-10-28 04:04:39 t 1 1 139033 514 0.00 2019-10-28 04:04:03 2019-10-28 04:15:03 t 1 1 139034 551 0.00 2019-10-28 04:08:10 2019-10-28 04:15:31 t 1 1 139037 587 0.00 2019-10-28 04:02:33 2019-10-28 04:22:19 t 1 1 139039 562 0.00 2019-10-28 04:25:56 2019-10-28 04:26:19 t 1 1 139047 578 0.00 2019-10-28 04:47:48 2019-10-28 04:55:12 t 1 1 139048 562 0.00 2019-10-28 04:55:16 2019-10-28 04:55:25 t 1 1 139050 522 0.00 2019-10-28 04:58:27 2019-10-28 04:58:39 t 1 1 139052 522 0.00 2019-10-28 04:58:53 2019-10-28 05:02:22 t 1 1 139059 416 0.00 2019-10-28 05:02:55 2019-10-28 05:14:09 t 1 1 139060 522 0.00 2019-10-28 05:14:21 2019-10-28 05:14:33 t 1 1 139064 522 0.00 2019-10-28 05:19:14 2019-10-28 05:19:15 t 1 1 139072 522 0.00 2019-10-28 05:25:20 2019-10-28 05:26:12 t 1 1 139078 485 0.00 2019-10-28 05:28:36 2019-10-28 05:31:25 t 1 1 139082 562 0.00 2019-10-28 05:38:03 2019-10-28 05:38:23 t 1 1 139083 522 0.00 2019-10-28 05:38:27 2019-10-28 05:39:16 t 1 1 139086 522 0.00 2019-10-28 05:41:30 2019-10-28 05:41:31 t 1 1 139089 522 0.00 2019-10-28 05:43:03 2019-10-28 05:43:43 t 1 1 139091 445 0.00 2019-10-28 04:49:23 2019-10-28 05:44:26 t 1 1 139095 445 0.00 2019-10-28 05:44:33 2019-10-28 05:46:58 t 1 1 139096 522 0.00 2019-10-28 05:47:43 2019-10-28 05:47:55 t 1 1 139097 520 0.00 2019-10-28 05:41:55 2019-10-28 05:48:24 t 1 1 139098 522 0.00 2019-10-28 05:48:43 2019-10-28 05:48:55 t 1 1 139100 522 0.00 2019-10-28 05:50:35 2019-10-28 05:50:52 t 1 1 139101 522 0.00 2019-10-28 05:51:18 2019-10-28 05:51:30 t 1 1 139103 522 0.00 2019-10-28 05:53:23 2019-10-28 05:53:39 t 1 1 139104 522 0.00 2019-10-28 05:54:14 2019-10-28 05:54:43 t 1 1 139105 522 0.00 2019-10-28 05:56:01 2019-10-28 05:56:34 t 1 1 139106 522 0.00 2019-10-28 05:56:45 2019-10-28 05:56:58 t 1 1 139118 522 0.00 2019-10-28 06:07:53 2019-10-28 06:08:05 t 1 1 139122 522 0.00 2019-10-28 06:11:38 2019-10-28 06:11:54 t 1 1 139125 520 0.00 2019-10-28 05:48:24 2019-10-28 06:14:39 t 1 1 139127 485 0.00 2019-10-28 06:03:13 2019-10-28 06:15:46 t 1 1 139131 522 0.00 2019-10-28 06:16:43 2019-10-28 06:16:55 t 1 1 139134 522 0.00 2019-10-28 06:18:58 2019-10-28 06:19:11 t 1 1 139135 485 0.00 2019-10-28 06:15:46 2019-10-28 06:19:58 t 1 1 139137 562 0.00 2019-10-28 06:21:00 2019-10-28 06:21:21 t 1 1 139144 522 0.00 2019-10-28 06:28:08 2019-10-28 06:28:20 t 1 1 139145 522 0.00 2019-10-28 06:29:17 2019-10-28 06:29:34 t 1 1 139146 520 0.00 2019-10-28 06:16:37 2019-10-28 06:30:10 t 1 1 139147 522 0.00 2019-10-28 06:31:08 2019-10-28 06:31:20 t 1 1 139148 562 0.00 2019-10-28 06:31:52 2019-10-28 06:32:09 t 1 1 139152 416 0.00 2019-10-28 05:45:38 2019-10-28 06:34:48 t 1 1 139153 522 0.00 2019-10-28 06:36:15 2019-10-28 06:36:27 t 1 1 139156 520 0.00 2019-10-28 06:37:26 2019-10-28 06:39:07 t 1 1 139163 522 0.00 2019-10-28 06:44:25 2019-10-28 06:44:48 t 1 1 139165 522 0.00 2019-10-28 06:45:23 2019-10-28 06:45:34 t 1 1 139166 522 0.00 2019-10-28 06:46:38 2019-10-28 06:46:50 t 1 1 139167 522 0.00 2019-10-28 06:47:37 2019-10-28 06:47:50 t 1 1 139168 522 0.00 2019-10-28 06:48:37 2019-10-28 06:48:49 t 1 1 139169 522 0.00 2019-10-28 06:50:04 2019-10-28 06:50:21 t 1 1 139174 522 0.00 2019-10-28 06:54:59 2019-10-28 06:55:00 t 1 1 139178 522 0.00 2019-10-28 06:58:35 2019-10-28 06:58:47 t 1 1 139179 522 0.00 2019-10-28 06:59:44 2019-10-28 06:59:47 t 1 1 139184 522 0.00 2019-10-28 07:03:41 2019-10-28 07:03:58 t 1 1 139186 522 0.00 2019-10-28 07:05:06 2019-10-28 07:05:07 t 1 1 139187 522 0.00 2019-10-28 07:05:53 2019-10-28 07:06:06 t 1 1 139189 522 0.00 2019-10-28 07:07:45 2019-10-28 07:07:57 t 1 1 139190 522 0.00 2019-10-28 07:08:57 2019-10-28 07:09:10 t 1 1 139192 522 0.00 2019-10-28 07:10:26 2019-10-28 07:10:40 t 1 1 139197 522 0.00 2019-10-28 07:13:14 2019-10-28 07:13:42 t 1 1 139198 522 0.00 2019-10-28 07:15:13 2019-10-28 07:15:14 t 1 1 139201 522 0.00 2019-10-28 07:15:22 2019-10-28 07:15:45 t 1 1 139202 522 0.00 2019-10-28 07:15:57 2019-10-28 07:16:09 t 1 1 139204 522 0.00 2019-10-28 07:18:15 2019-10-28 07:18:16 t 1 1 139206 562 0.00 2019-10-28 07:18:22 2019-10-28 07:18:38 t 1 1 139207 522 0.00 2019-10-28 07:18:53 2019-10-28 07:19:02 t 1 1 139210 522 0.00 2019-10-28 07:19:53 2019-10-28 07:21:11 t 1 1 139214 416 0.00 2019-10-28 07:15:24 2019-10-28 07:23:17 t 1 1 139218 522 0.00 2019-10-28 07:26:02 2019-10-28 07:26:14 t 1 1 139219 416 0.00 2019-10-28 07:23:57 2019-10-28 07:27:34 t 1 1 139220 522 0.00 2019-10-28 07:26:59 2019-10-28 07:28:11 t 1 1 139233 522 0.00 2019-10-28 07:42:51 2019-10-28 07:43:13 t 1 1 139239 522 0.00 2019-10-28 07:51:21 2019-10-28 07:51:33 t 1 1 138975 562 0.00 2019-10-28 02:21:32 2019-10-28 02:21:54 t 1 1 138980 416 0.00 2019-10-28 02:18:32 2019-10-28 02:26:24 t 1 1 138982 220 0.00 2019-10-28 02:06:24 2019-10-28 02:29:47 t 1 2 138984 551 0.00 2019-10-28 02:22:18 2019-10-28 02:30:49 t 1 1 138985 587 0.00 2019-10-28 01:46:35 2019-10-28 02:31:44 t 1 1 138989 532 0.00 2019-10-28 02:33:06 2019-10-28 02:33:29 t 1 1 138993 416 0.00 2019-10-28 02:33:31 2019-10-28 02:41:34 t 1 1 138997 536 0.00 2019-10-28 02:48:14 2019-10-28 02:52:28 t 1 1 139000 551 0.00 2019-10-28 02:30:49 2019-10-28 02:56:45 t 1 1 139003 551 0.00 2019-10-28 02:56:45 2019-10-28 03:07:11 t 1 1 139004 587 0.00 2019-10-28 02:52:31 2019-10-28 03:10:33 t 1 1 67380 185 0.00 2018-06-23 20:24:58 2018-06-23 20:26:34 t 1 1 139005 562 0.00 2019-10-28 03:15:18 2019-10-28 03:15:40 t 1 1 139007 514 0.00 2019-10-28 03:19:01 2019-10-28 03:24:18 t 1 1 139015 416 0.00 2019-10-28 02:52:52 2019-10-28 03:38:50 t 1 1 139020 562 0.00 2019-10-28 03:45:11 2019-10-28 03:47:11 t 1 1 139026 514 0.00 2019-10-28 03:47:29 2019-10-28 03:58:14 t 1 1 139030 562 0.00 2019-10-28 04:04:28 2019-10-28 04:04:49 t 1 1 139035 562 0.00 2019-10-28 04:15:12 2019-10-28 04:15:32 t 1 1 139042 562 0.00 2019-10-28 04:36:41 2019-10-28 04:37:02 t 1 1 139045 578 0.00 2019-10-28 04:37:47 2019-10-28 04:47:48 t 1 1 139054 562 0.00 2019-10-28 05:05:55 2019-10-28 05:06:11 t 1 1 139056 522 0.00 2019-10-28 05:02:22 2019-10-28 05:11:54 t 1 1 139057 522 0.00 2019-10-28 05:12:00 2019-10-28 05:12:27 t 1 1 139062 562 0.00 2019-10-28 05:16:39 2019-10-28 05:16:53 t 1 1 139063 522 0.00 2019-10-28 05:17:03 2019-10-28 05:17:20 t 1 1 139065 522 0.00 2019-10-28 05:19:07 2019-10-28 05:20:11 t 1 1 139071 522 0.00 2019-10-28 05:24:23 2019-10-28 05:24:39 t 1 1 139073 522 0.00 2019-10-28 05:27:16 2019-10-28 05:27:28 t 1 1 139075 522 0.00 2019-10-28 05:29:17 2019-10-28 05:29:33 t 1 1 139081 522 0.00 2019-10-28 05:36:02 2019-10-28 05:36:17 t 1 1 139085 522 0.00 2019-10-28 05:41:01 2019-10-28 05:41:22 t 1 1 139087 520 0.00 2019-10-28 05:37:19 2019-10-28 05:41:55 t 1 1 139092 416 0.00 2019-10-28 05:14:20 2019-10-28 05:45:32 t 1 1 139093 522 0.00 2019-10-28 05:45:33 2019-10-28 05:45:46 t 1 1 139094 522 0.00 2019-10-28 05:46:06 2019-10-28 05:46:25 t 1 1 139102 522 0.00 2019-10-28 05:52:47 2019-10-28 05:53:00 t 1 1 139107 522 0.00 2019-10-28 05:55:36 2019-10-28 05:57:11 t 1 1 139108 522 0.00 2019-10-28 05:57:53 2019-10-28 05:58:06 t 1 1 139109 562 0.00 2019-10-28 05:59:32 2019-10-28 05:59:51 t 1 1 139115 430 0.00 2019-10-28 05:32:09 2019-10-28 06:04:47 t 1 1 139120 562 0.00 2019-10-28 06:10:23 2019-10-28 06:10:38 t 1 1 139121 522 0.00 2019-10-28 06:11:05 2019-10-28 06:11:18 t 1 1 139123 522 0.00 2019-10-28 06:12:56 2019-10-28 06:13:08 t 1 1 139124 522 0.00 2019-10-28 06:14:08 2019-10-28 06:14:21 t 1 1 139126 522 0.00 2019-10-28 06:15:09 2019-10-28 06:15:25 t 1 1 139130 520 0.00 2019-10-28 06:14:39 2019-10-28 06:16:38 t 1 1 139138 522 0.00 2019-10-28 06:21:16 2019-10-28 06:21:28 t 1 1 139139 522 0.00 2019-10-28 06:21:50 2019-10-28 06:22:55 t 1 1 139141 522 0.00 2019-10-28 06:24:28 2019-10-28 06:24:40 t 1 1 139154 522 0.00 2019-10-28 06:37:25 2019-10-28 06:37:36 t 1 1 139155 522 0.00 2019-10-28 06:38:24 2019-10-28 06:38:35 t 1 1 139157 522 0.00 2019-10-28 06:39:41 2019-10-28 06:40:13 t 1 1 139158 522 0.00 2019-10-28 06:41:13 2019-10-28 06:41:48 t 1 1 139159 522 0.00 2019-10-28 06:41:56 2019-10-28 06:42:23 t 1 1 139160 522 0.00 2019-10-28 06:42:34 2019-10-28 06:42:48 t 1 1 139170 562 0.00 2019-10-28 06:50:07 2019-10-28 06:50:34 t 1 1 139172 522 0.00 2019-10-28 06:52:41 2019-10-28 06:52:53 t 1 1 139177 416 0.00 2019-10-28 06:34:53 2019-10-28 06:57:07 t 1 1 139180 522 0.00 2019-10-28 07:00:04 2019-10-28 07:00:04 t 1 1 139181 516 0.00 2019-10-28 06:43:43 2019-10-28 07:01:08 t 1 1 139183 522 0.00 2019-10-28 07:01:38 2019-10-28 07:01:51 t 1 1 139188 416 0.00 2019-10-28 06:57:13 2019-10-28 07:06:48 t 1 1 139191 566 0.00 2019-10-28 06:57:09 2019-10-28 07:09:50 t 1 1 139193 566 0.00 2019-10-28 07:09:50 2019-10-28 07:10:52 t 1 1 139194 522 0.00 2019-10-28 07:10:52 2019-10-28 07:11:04 t 1 1 139195 522 0.00 2019-10-28 07:11:44 2019-10-28 07:11:57 t 1 1 139196 562 0.00 2019-10-28 07:11:46 2019-10-28 07:13:07 t 1 1 139203 595 0.00 2019-10-28 07:13:56 2019-10-28 07:16:13 t 1 1 139208 522 0.00 2019-10-28 07:18:08 2019-10-28 07:19:11 t 1 1 139211 522 0.00 2019-10-28 07:21:53 2019-10-28 07:22:10 t 1 1 139212 522 0.00 2019-10-28 07:22:59 2019-10-28 07:23:11 t 1 1 139216 522 0.00 2019-10-28 07:24:56 2019-10-28 07:25:01 t 1 1 139221 522 0.00 2019-10-28 07:28:04 2019-10-28 07:28:17 t 1 1 139222 522 0.00 2019-10-28 07:30:21 2019-10-28 07:30:37 t 1 1 139223 522 0.00 2019-10-28 07:31:19 2019-10-28 07:31:31 t 1 1 139226 522 0.00 2019-10-28 07:36:15 2019-10-28 07:36:27 t 1 1 139227 522 0.00 2019-10-28 07:37:24 2019-10-28 07:37:38 t 1 1 139228 522 0.00 2019-10-28 07:38:24 2019-10-28 07:38:36 t 1 1 139229 522 0.00 2019-10-28 07:40:15 2019-10-28 07:40:31 t 1 1 139231 379 0.00 2019-10-27 22:27:19 2019-10-28 07:41:58 t 1 1 139232 522 0.00 2019-10-28 07:42:10 2019-10-28 07:42:51 t 1 1 139234 522 0.00 2019-10-28 07:43:55 2019-10-28 07:44:26 t 1 1 139235 522 0.00 2019-10-28 07:45:28 2019-10-28 07:46:08 t 1 1 139236 522 0.00 2019-10-28 07:47:19 2019-10-28 07:47:31 t 1 1 139237 522 0.00 2019-10-28 07:48:26 2019-10-28 07:48:38 t 1 1 139238 522 0.00 2019-10-28 07:49:02 2019-10-28 07:49:15 t 1 1 139244 522 0.00 2019-10-28 07:56:11 2019-10-28 07:56:41 t 1 1 139247 591 0.00 2019-10-28 07:44:47 2019-10-28 07:58:06 t 1 1 139250 522 0.00 2019-10-28 08:01:19 2019-10-28 08:01:35 t 1 1 139251 522 0.00 2019-10-28 08:02:40 2019-10-28 08:02:51 t 1 1 139253 522 0.00 2019-10-28 08:05:33 2019-10-28 08:06:22 t 1 1 139254 562 0.00 2019-10-28 07:23:32 2019-10-28 08:07:28 t 1 1 139255 615 0.00 2019-10-28 08:01:29 2019-10-28 08:07:44 t 1 1 139260 416 0.00 2019-10-28 07:28:57 2019-10-28 08:10:26 t 1 1 139261 591 0.00 2019-10-28 07:58:06 2019-10-28 08:10:51 t 1 1 139263 522 0.00 2019-10-28 08:12:35 2019-10-28 08:12:53 t 1 1 139270 522 0.00 2019-10-28 08:18:50 2019-10-28 08:19:06 t 1 1 139272 522 0.00 2019-10-28 08:19:49 2019-10-28 08:20:01 t 1 1 139273 522 0.00 2019-10-28 08:20:50 2019-10-28 08:21:02 t 1 1 139275 516 0.00 2019-10-28 08:11:50 2019-10-28 08:21:40 t 1 1 139276 522 0.00 2019-10-28 08:21:53 2019-10-28 08:22:33 t 1 1 139277 522 0.00 2019-10-28 08:22:53 2019-10-28 08:23:34 t 1 1 139278 522 0.00 2019-10-28 08:23:54 2019-10-28 08:24:11 t 1 1 139284 522 0.00 2019-10-28 08:26:40 2019-10-28 08:26:52 t 1 1 139286 522 0.00 2019-10-28 08:27:57 2019-10-28 08:28:39 t 1 1 139287 522 0.00 2019-10-28 08:28:50 2019-10-28 08:29:02 t 1 1 139084 522 0.00 2019-10-28 05:39:22 2019-10-28 05:39:34 t 1 1 139088 522 0.00 2019-10-28 05:41:45 2019-10-28 05:41:56 t 1 1 139090 522 0.00 2019-10-28 05:41:39 2019-10-28 05:44:11 t 1 1 139099 562 0.00 2019-10-28 05:48:48 2019-10-28 05:49:08 t 1 1 139110 522 0.00 2019-10-28 06:00:02 2019-10-28 06:00:14 t 1 1 139111 522 0.00 2019-10-28 06:01:31 2019-10-28 06:01:41 t 1 1 139112 522 0.00 2019-10-28 06:01:52 2019-10-28 06:02:09 t 1 1 139113 522 0.00 2019-10-28 06:02:43 2019-10-28 06:03:09 t 1 1 139114 522 0.00 2019-10-28 06:03:20 2019-10-28 06:03:47 t 1 1 139116 522 0.00 2019-10-28 06:05:01 2019-10-28 06:05:13 t 1 1 139117 522 0.00 2019-10-28 06:06:36 2019-10-28 06:06:48 t 1 1 139119 522 0.00 2019-10-28 06:09:56 2019-10-28 06:10:08 t 1 1 67706 185 0.00 2018-06-26 11:57:45 2018-06-26 11:59:39 t 1 1 139128 522 0.00 2019-10-28 06:15:41 2019-10-28 06:15:55 t 1 1 139129 522 0.00 2019-10-28 06:16:07 2019-10-28 06:16:19 t 1 1 139132 522 0.00 2019-10-28 06:18:16 2019-10-28 06:18:17 t 1 1 139133 522 0.00 2019-10-28 06:18:09 2019-10-28 06:19:11 t 1 1 139136 522 0.00 2019-10-28 06:20:16 2019-10-28 06:20:28 t 1 1 139140 522 0.00 2019-10-28 06:24:07 2019-10-28 06:24:19 t 1 1 139142 522 0.00 2019-10-28 06:25:16 2019-10-28 06:25:29 t 1 1 139143 522 0.00 2019-10-28 06:26:01 2019-10-28 06:26:14 t 1 1 139149 522 0.00 2019-10-28 06:32:20 2019-10-28 06:32:33 t 1 1 139150 522 0.00 2019-10-28 06:33:20 2019-10-28 06:33:32 t 1 1 139151 522 0.00 2019-10-28 06:34:21 2019-10-28 06:34:38 t 1 1 139161 562 0.00 2019-10-28 06:42:40 2019-10-28 06:42:53 t 1 1 139162 522 0.00 2019-10-28 06:43:06 2019-10-28 06:43:21 t 1 1 139164 522 0.00 2019-10-28 06:44:54 2019-10-28 06:44:54 t 1 1 139171 522 0.00 2019-10-28 06:51:29 2019-10-28 06:52:21 t 1 1 139173 522 0.00 2019-10-28 06:53:41 2019-10-28 06:54:21 t 1 1 139175 522 0.00 2019-10-28 06:55:12 2019-10-28 06:55:31 t 1 1 139176 522 0.00 2019-10-28 06:56:29 2019-10-28 06:56:42 t 1 1 139182 562 0.00 2019-10-28 07:00:54 2019-10-28 07:01:15 t 1 1 139185 522 0.00 2019-10-28 07:04:44 2019-10-28 07:04:57 t 1 1 139199 416 0.00 2019-10-28 07:06:52 2019-10-28 07:15:19 t 1 1 139200 562 0.00 2019-10-28 07:15:17 2019-10-28 07:15:32 t 1 1 139205 445 0.00 2019-10-28 05:47:05 2019-10-28 07:18:33 t 1 1 139209 522 0.00 2019-10-28 07:20:59 2019-10-28 07:21:00 t 1 1 139213 562 0.00 2019-10-28 07:21:21 2019-10-28 07:23:14 t 1 1 139215 522 0.00 2019-10-28 07:24:12 2019-10-28 07:24:23 t 1 1 139217 445 0.00 2019-10-28 07:19:13 2019-10-28 07:26:04 t 1 1 139224 522 0.00 2019-10-28 07:32:30 2019-10-28 07:33:10 t 1 1 139225 522 0.00 2019-10-28 07:34:12 2019-10-28 07:34:25 t 1 1 139230 522 0.00 2019-10-28 07:41:24 2019-10-28 07:41:36 t 1 1 139240 615 0.00 2019-10-28 07:44:11 2019-10-28 07:52:17 t 1 1 67831 131 0.00 2018-06-27 12:05:11 2018-06-27 12:06:42 t 1 1 139243 522 0.00 2019-10-28 07:54:53 2019-10-28 07:56:06 t 1 1 139245 615 0.00 2019-10-28 07:52:17 2019-10-28 07:56:46 t 1 1 139246 522 0.00 2019-10-28 07:57:36 2019-10-28 07:57:47 t 1 1 139248 522 0.00 2019-10-28 07:59:28 2019-10-28 07:59:44 t 1 1 139252 522 0.00 2019-10-28 08:04:30 2019-10-28 08:04:35 t 1 1 139256 522 0.00 2019-10-28 08:07:33 2019-10-28 08:07:49 t 1 1 67854 131 0.00 2018-06-27 14:48:21 2018-06-27 14:49:42 t 1 1 67855 185 0.00 2018-06-27 14:51:04 2018-06-27 14:52:42 t 1 1 139262 522 0.00 2019-10-28 08:10:43 2019-10-28 08:10:56 t 1 1 139264 522 0.00 2019-10-28 08:13:38 2019-10-28 08:13:50 t 1 1 67865 185 0.00 2018-06-27 16:50:06 2018-06-27 16:51:42 t 1 1 139265 522 0.00 2019-10-28 08:14:32 2019-10-28 08:14:49 t 1 1 139268 591 0.00 2019-10-28 08:13:08 2019-10-28 08:16:48 t 1 1 139269 522 0.00 2019-10-28 08:16:50 2019-10-28 08:17:32 t 1 1 139279 562 0.00 2019-10-28 08:15:44 2019-10-28 08:24:19 t 1 1 139280 522 0.00 2019-10-28 08:24:28 2019-10-28 08:24:42 t 1 1 139282 522 0.00 2019-10-28 08:25:54 2019-10-28 08:25:57 t 1 1 139283 520 0.00 2019-10-28 08:21:05 2019-10-28 08:25:58 t 1 1 139288 522 0.00 2019-10-28 08:29:58 2019-10-28 08:30:10 t 1 1 139290 522 0.00 2019-10-28 08:31:49 2019-10-28 08:32:01 t 1 1 139291 522 0.00 2019-10-28 08:33:06 2019-10-28 08:33:07 t 1 1 139298 522 0.00 2019-10-28 08:38:52 2019-10-28 08:38:53 t 1 1 139301 522 0.00 2019-10-28 08:40:54 2019-10-28 08:41:07 t 1 1 139304 522 0.00 2019-10-28 08:42:56 2019-10-28 08:43:09 t 1 1 139305 522 0.00 2019-10-28 08:44:04 2019-10-28 08:44:15 t 1 1 67906 185 0.00 2018-06-28 01:21:29 2018-06-28 01:21:53 t 1 1 139311 522 0.00 2019-10-28 08:50:00 2019-10-28 08:50:13 t 1 1 139316 522 0.00 2019-10-28 08:54:35 2019-10-28 08:54:46 t 1 1 139318 445 0.00 2019-10-28 07:26:04 2019-10-28 08:58:18 t 1 1 139320 520 0.00 2019-10-28 08:34:55 2019-10-28 09:02:39 t 1 1 139324 615 0.00 2019-10-28 09:03:38 2019-10-28 09:07:33 t 1 1 139325 562 0.00 2019-10-28 09:06:16 2019-10-28 09:08:24 t 1 1 67920 131 0.00 2018-06-28 10:05:54 2018-06-28 10:07:44 t 1 1 139328 522 0.00 2019-10-28 09:08:51 2019-10-28 09:09:42 t 1 1 139330 516 0.00 2019-10-28 08:45:06 2019-10-28 09:10:38 t 1 1 139331 522 0.00 2019-10-28 09:11:16 2019-10-28 09:11:28 t 1 1 139332 536 0.00 2019-10-28 09:09:53 2019-10-28 09:12:50 t 1 1 139334 445 0.00 2019-10-28 08:59:18 2019-10-28 09:13:55 t 1 1 139338 522 0.00 2019-10-28 09:15:45 2019-10-28 09:15:46 t 1 1 139340 562 0.00 2019-10-28 09:08:38 2019-10-28 09:16:26 t 1 1 139343 591 0.00 2019-10-28 09:13:31 2019-10-28 09:17:23 t 1 1 139347 522 0.00 2019-10-28 09:19:49 2019-10-28 09:19:51 t 1 1 139349 522 0.00 2019-10-28 09:19:43 2019-10-28 09:21:11 t 1 1 139356 562 0.00 2019-10-28 09:28:04 2019-10-28 09:28:31 t 1 1 139357 562 0.00 2019-10-28 09:28:39 2019-10-28 09:29:07 t 1 1 139362 416 0.00 2019-10-28 09:18:05 2019-10-28 09:34:53 t 1 1 139365 522 0.00 2019-10-28 09:36:10 2019-10-28 09:36:47 t 1 1 139367 522 0.00 2019-10-28 09:38:17 2019-10-28 09:38:45 t 1 1 139373 522 0.00 2019-10-28 09:44:12 2019-10-28 09:44:28 t 1 1 139375 562 0.00 2019-10-28 09:45:43 2019-10-28 09:46:45 t 1 1 139381 220 0.00 2019-10-28 09:02:51 2019-10-28 09:50:54 t 1 1 139383 522 0.00 2019-10-28 09:52:34 2019-10-28 09:52:43 t 1 1 139384 522 0.00 2019-10-28 09:53:33 2019-10-28 09:53:41 t 1 1 139385 522 0.00 2019-10-28 09:54:33 2019-10-28 09:54:41 t 1 1 139390 522 0.00 2019-10-28 09:57:45 2019-10-28 09:57:52 t 1 1 139394 522 0.00 2019-10-28 09:59:22 2019-10-28 09:59:39 t 1 1 139396 522 0.00 2019-10-28 10:00:41 2019-10-28 10:00:43 t 1 1 139401 522 0.00 2019-10-28 10:03:51 2019-10-28 10:05:11 t 1 1 139404 522 0.00 2019-10-28 10:08:02 2019-10-28 10:08:02 f 1 1 139407 445 0.00 2019-10-28 10:05:03 2019-10-28 10:08:32 t 1 1 139413 581 0.00 2019-10-28 10:17:37 2019-10-28 10:19:47 t 1 1 139418 481 0.00 2019-10-28 10:00:22 2019-10-28 10:22:01 t 1 1 139241 522 0.00 2019-10-28 07:53:24 2019-10-28 07:53:35 t 1 1 139242 522 0.00 2019-10-28 07:54:07 2019-10-28 07:54:23 t 1 1 139249 522 0.00 2019-10-28 08:00:37 2019-10-28 08:00:40 t 1 1 139257 522 0.00 2019-10-28 08:08:28 2019-10-28 08:08:41 t 1 1 139258 522 0.00 2019-10-28 08:09:26 2019-10-28 08:09:57 t 1 1 139259 544 0.00 2019-10-28 08:07:00 2019-10-28 08:09:58 t 1 2 139266 562 0.00 2019-10-28 08:07:28 2019-10-28 08:15:44 t 1 1 139267 522 0.00 2019-10-28 08:15:38 2019-10-28 08:15:51 t 1 1 139271 522 0.00 2019-10-28 08:19:22 2019-10-28 08:19:37 t 1 1 139274 520 0.00 2019-10-28 08:15:50 2019-10-28 08:21:06 t 1 1 139281 522 0.00 2019-10-28 08:24:54 2019-10-28 08:25:06 t 1 1 67693 131 0.00 2018-06-26 09:38:44 2018-06-26 09:40:39 t 1 1 139285 615 0.00 2019-10-28 08:07:59 2019-10-28 08:27:38 t 1 1 139289 562 0.00 2019-10-28 08:24:19 2019-10-28 08:30:44 t 1 1 139294 520 0.00 2019-10-28 08:25:58 2019-10-28 08:34:56 t 1 1 139295 416 0.00 2019-10-28 08:10:42 2019-10-28 08:35:42 t 1 1 139299 591 0.00 2019-10-28 08:18:36 2019-10-28 08:40:12 t 1 1 139302 611 0.00 2019-10-28 08:38:28 2019-10-28 08:41:25 t 1 1 139306 562 0.00 2019-10-28 08:30:44 2019-10-28 08:45:28 t 1 1 139307 522 0.00 2019-10-28 08:45:56 2019-10-28 08:46:08 t 1 1 139310 562 0.00 2019-10-28 08:48:38 2019-10-28 08:48:48 t 1 1 139312 522 0.00 2019-10-28 08:51:09 2019-10-28 08:51:22 t 1 1 139314 522 0.00 2019-10-28 08:51:37 2019-10-28 08:53:47 t 1 1 139315 591 0.00 2019-10-28 08:50:52 2019-10-28 08:54:13 t 1 1 139321 562 0.00 2019-10-28 09:00:48 2019-10-28 09:02:50 t 1 1 139336 536 0.00 2019-10-28 09:12:56 2019-10-28 09:14:53 t 1 1 139337 522 0.00 2019-10-28 09:14:48 2019-10-28 09:14:59 t 1 1 67746 131 0.00 2018-06-26 16:33:02 2018-06-26 16:34:39 t 1 1 139341 522 0.00 2019-10-28 09:16:22 2019-10-28 09:16:33 t 1 1 139346 516 0.00 2019-10-28 09:12:02 2019-10-28 09:19:04 t 1 1 139348 522 0.00 2019-10-28 09:20:22 2019-10-28 09:20:37 t 1 1 139351 522 0.00 2019-10-28 09:21:28 2019-10-28 09:21:39 t 1 1 139355 562 0.00 2019-10-28 09:16:54 2019-10-28 09:23:54 t 1 1 139358 562 0.00 2019-10-28 09:29:48 2019-10-28 09:30:13 t 1 1 139360 536 0.00 2019-10-28 09:23:25 2019-10-28 09:33:20 t 1 1 139363 522 0.00 2019-10-28 09:34:53 2019-10-28 09:35:37 t 1 1 139364 562 0.00 2019-10-28 09:34:50 2019-10-28 09:36:11 t 1 1 139366 522 0.00 2019-10-28 09:36:47 2019-10-28 09:38:21 t 1 1 139368 522 0.00 2019-10-28 09:38:45 2019-10-28 09:40:55 t 1 1 139369 522 0.00 2019-10-28 09:41:29 2019-10-28 09:41:34 t 1 1 139370 522 0.00 2019-10-28 09:42:24 2019-10-28 09:42:49 t 1 1 139371 522 0.00 2019-10-28 09:43:27 2019-10-28 09:43:30 t 1 1 139372 522 0.00 2019-10-28 09:43:53 2019-10-28 09:44:01 t 1 1 139376 615 0.00 2019-10-28 09:35:15 2019-10-28 09:48:05 t 1 1 139377 597 0.00 2019-10-28 09:14:15 2019-10-28 09:49:02 t 1 1 139379 522 0.00 2019-10-28 09:49:16 2019-10-28 09:49:29 t 1 1 139380 522 0.00 2019-10-28 09:48:39 2019-10-28 09:50:11 t 1 1 139382 522 0.00 2019-10-28 09:50:34 2019-10-28 09:52:11 t 1 1 139386 522 0.00 2019-10-28 09:55:13 2019-10-28 09:55:36 t 1 1 139387 562 0.00 2019-10-28 09:55:46 2019-10-28 09:56:11 t 1 1 139389 522 0.00 2019-10-28 09:57:36 2019-10-28 09:57:38 t 1 1 139392 522 0.00 2019-10-28 09:58:33 2019-10-28 09:58:46 t 1 1 139393 522 0.00 2019-10-28 09:58:52 2019-10-28 09:59:07 t 1 1 139395 481 0.00 2019-10-28 09:21:33 2019-10-28 10:00:22 t 1 1 139399 585 0.00 2019-10-28 10:03:45 2019-10-28 10:03:59 t 1 1 139405 522 0.00 2019-10-28 10:06:53 2019-10-28 10:08:11 t 1 1 139408 562 0.00 2019-10-28 10:07:33 2019-10-28 10:10:54 t 1 1 139409 528 0.00 2019-10-28 10:05:21 2019-10-28 10:12:06 t 1 1 139410 562 0.00 2019-10-28 10:12:11 2019-10-28 10:13:20 t 1 1 139411 585 0.00 2019-10-28 10:03:59 2019-10-28 10:19:15 t 1 1 139414 581 0.00 2019-10-28 10:19:59 2019-10-28 10:20:03 t 1 1 139416 522 0.00 2019-10-28 10:15:12 2019-10-28 10:21:48 t 1 1 139417 581 0.00 2019-10-28 10:21:50 2019-10-28 10:21:58 t 1 1 139420 522 0.00 2019-10-28 10:22:00 2019-10-28 10:22:44 t 1 1 139421 522 0.00 2019-10-28 10:22:51 2019-10-28 10:23:22 t 1 1 67847 131 0.00 2018-06-27 14:10:02 2018-06-27 14:11:42 t 1 1 67851 131 0.00 2018-06-27 14:44:42 2018-06-27 14:46:42 t 1 1 67853 131 0.00 2018-06-27 14:47:28 2018-06-27 14:48:21 t 1 1 139423 615 0.00 2019-10-28 10:21:29 2019-10-28 10:24:07 t 1 1 139428 581 0.00 2019-10-28 10:24:06 2019-10-28 10:25:10 t 1 1 139429 581 0.00 2019-10-28 10:25:17 2019-10-28 10:26:53 t 1 1 139432 522 0.00 2019-10-28 10:25:53 2019-10-28 10:27:11 t 1 1 139434 522 0.00 2019-10-28 10:27:54 2019-10-28 10:27:56 t 1 1 139435 581 0.00 2019-10-28 10:27:58 2019-10-28 10:28:17 t 1 1 139436 522 0.00 2019-10-28 10:28:49 2019-10-28 10:28:57 t 1 1 139439 581 0.00 2019-10-28 10:29:33 2019-10-28 10:29:48 t 1 1 139440 581 0.00 2019-10-28 10:30:33 2019-10-28 10:30:40 t 1 1 139444 562 0.00 2019-10-28 10:33:10 2019-10-28 10:33:29 t 1 1 139446 581 0.00 2019-10-28 10:33:06 2019-10-28 10:34:06 t 1 1 139448 522 0.00 2019-10-28 10:34:46 2019-10-28 10:34:47 t 1 1 139449 581 0.00 2019-10-28 10:35:56 2019-10-28 10:35:59 t 1 1 139452 581 0.00 2019-10-28 10:36:11 2019-10-28 10:38:52 t 1 1 139453 522 0.00 2019-10-28 10:38:54 2019-10-28 10:39:22 t 1 1 139455 617 0.00 2019-10-28 10:38:17 2019-10-28 10:39:28 t 1 1 139458 617 0.00 2019-10-28 10:39:32 2019-10-28 10:40:33 t 1 1 67907 185 0.00 2018-06-28 01:21:53 2018-06-28 01:23:42 t 1 1 139465 522 0.00 2019-10-28 10:41:06 2019-10-28 10:43:11 t 1 1 139466 562 0.00 2019-10-28 10:40:21 2019-10-28 10:43:47 t 1 1 139469 508 0.00 2019-10-28 10:36:14 2019-10-28 10:45:22 t 1 2 139473 522 0.00 2019-10-28 10:47:21 2019-10-28 10:47:23 t 1 1 139476 581 0.00 2019-10-28 10:47:58 2019-10-28 10:48:05 t 1 1 139477 585 0.00 2019-10-28 10:45:56 2019-10-28 10:49:38 t 1 1 139488 619 0.00 2019-10-28 10:56:06 2019-10-28 10:56:06 f 1 1 139490 522 0.00 2019-10-28 10:55:54 2019-10-28 10:56:21 t 1 1 139494 562 0.00 2019-10-28 10:53:04 2019-10-28 10:57:20 t 1 1 139497 522 0.00 2019-10-28 10:57:35 2019-10-28 10:58:08 t 1 1 139500 522 0.00 2019-10-28 10:59:44 2019-10-28 10:59:55 t 1 1 139505 562 0.00 2019-10-28 11:00:46 2019-10-28 11:01:50 t 1 1 139506 522 0.00 2019-10-28 11:02:53 2019-10-28 11:03:03 t 1 1 139512 522 0.00 2019-10-28 11:03:15 2019-10-28 11:05:11 t 1 1 139518 522 0.00 2019-10-28 11:06:09 2019-10-28 11:08:12 t 1 1 139523 617 0.00 2019-10-28 11:09:26 2019-10-28 11:11:01 t 1 1 139526 619 0.00 2019-10-28 11:05:37 2019-10-28 11:12:37 t 1 1 139529 617 0.00 2019-10-28 11:11:01 2019-10-28 11:18:55 t 1 1 139530 554 0.00 2019-10-28 11:07:52 2019-10-28 11:19:18 t 1 1 139537 619 0.00 2019-10-28 11:12:37 2019-10-28 11:34:57 t 1 1 139538 562 0.00 2019-10-28 11:14:24 2019-10-28 11:35:25 t 1 1 139292 522 0.00 2019-10-28 08:33:15 2019-10-28 08:33:47 t 1 1 139293 522 0.00 2019-10-28 08:33:58 2019-10-28 08:34:14 t 1 1 139296 522 0.00 2019-10-28 08:35:52 2019-10-28 08:36:04 t 1 1 139297 522 0.00 2019-10-28 08:37:01 2019-10-28 08:37:17 t 1 1 139300 615 0.00 2019-10-28 08:27:38 2019-10-28 08:40:12 t 1 1 139303 615 0.00 2019-10-28 08:40:12 2019-10-28 08:41:42 t 1 1 139308 522 0.00 2019-10-28 08:47:08 2019-10-28 08:47:21 t 1 1 139309 522 0.00 2019-10-28 08:48:08 2019-10-28 08:48:20 t 1 1 139313 562 0.00 2019-10-28 08:51:48 2019-10-28 08:52:17 t 1 1 139317 522 0.00 2019-10-28 08:55:48 2019-10-28 08:56:07 t 1 1 139319 562 0.00 2019-10-28 08:54:11 2019-10-28 09:00:18 t 1 1 139322 562 0.00 2019-10-28 09:04:01 2019-10-28 09:04:46 t 1 1 139323 522 0.00 2019-10-28 08:56:39 2019-10-28 09:07:23 t 1 1 139326 522 0.00 2019-10-28 09:07:50 2019-10-28 09:08:46 t 1 1 139327 591 0.00 2019-10-28 09:03:48 2019-10-28 09:09:15 t 1 1 139329 522 0.00 2019-10-28 09:10:11 2019-10-28 09:10:29 t 1 1 139333 522 0.00 2019-10-28 09:13:35 2019-10-28 09:13:47 t 1 1 139335 522 0.00 2019-10-28 09:14:26 2019-10-28 09:14:26 t 1 1 139339 481 0.00 2019-10-28 07:38:45 2019-10-28 09:16:05 t 1 1 139342 522 0.00 2019-10-28 09:16:56 2019-10-28 09:17:07 t 1 1 139344 416 0.00 2019-10-28 08:35:47 2019-10-28 09:18:05 t 1 1 139345 522 0.00 2019-10-28 09:18:38 2019-10-28 09:18:39 t 1 1 139350 481 0.00 2019-10-28 09:16:05 2019-10-28 09:21:33 t 1 1 139352 591 0.00 2019-10-28 09:19:38 2019-10-28 09:21:49 t 1 1 139353 514 0.00 2019-10-28 04:25:50 2019-10-28 09:22:48 t 1 1 139354 536 0.00 2019-10-28 09:16:26 2019-10-28 09:23:02 t 1 1 139359 562 0.00 2019-10-28 09:31:33 2019-10-28 09:32:19 t 1 1 139361 522 0.00 2019-10-28 09:22:10 2019-10-28 09:34:53 t 1 1 139374 516 0.00 2019-10-28 09:19:04 2019-10-28 09:46:17 t 1 1 139378 522 0.00 2019-10-28 09:47:33 2019-10-28 09:49:11 t 1 1 139388 522 0.00 2019-10-28 09:56:36 2019-10-28 09:56:58 t 1 1 139391 562 0.00 2019-10-28 09:56:36 2019-10-28 09:57:59 t 1 1 139397 522 0.00 2019-10-28 10:01:42 2019-10-28 10:02:43 t 1 1 139398 522 0.00 2019-10-28 10:03:43 2019-10-28 10:03:44 t 1 1 139400 445 0.00 2019-10-28 09:14:04 2019-10-28 10:04:44 t 1 1 139402 591 0.00 2019-10-28 10:01:25 2019-10-28 10:05:27 t 1 1 139403 562 0.00 2019-10-28 10:06:33 2019-10-28 10:06:59 t 1 1 139406 522 0.00 2019-10-28 10:05:44 2019-10-28 10:08:11 t 1 1 139412 516 0.00 2019-10-28 10:17:05 2019-10-28 10:19:20 t 1 1 139415 581 0.00 2019-10-28 10:20:28 2019-10-28 10:21:28 t 1 1 139419 581 0.00 2019-10-28 10:22:08 2019-10-28 10:22:10 t 1 1 139424 562 0.00 2019-10-28 10:21:18 2019-10-28 10:24:12 t 1 1 139430 562 0.00 2019-10-28 10:26:20 2019-10-28 10:26:55 t 1 1 139433 522 0.00 2019-10-28 10:26:59 2019-10-28 10:27:26 t 1 1 139438 581 0.00 2019-10-28 10:29:05 2019-10-28 10:29:12 t 1 1 139441 508 0.00 2019-10-28 10:25:21 2019-10-28 10:30:46 t 1 2 139445 611 0.00 2019-10-28 10:30:17 2019-10-28 10:33:40 t 1 1 139447 522 0.00 2019-10-28 10:30:27 2019-10-28 10:34:38 t 1 1 139450 562 0.00 2019-10-28 10:36:29 2019-10-28 10:36:41 t 1 1 139451 522 0.00 2019-10-28 10:35:34 2019-10-28 10:37:59 t 1 1 139456 554 0.00 2019-10-28 10:39:26 2019-10-28 10:39:39 t 1 1 139457 562 0.00 2019-10-28 10:36:56 2019-10-28 10:39:58 t 1 1 139459 522 0.00 2019-10-28 10:39:35 2019-10-28 10:40:41 t 1 1 139461 607 0.00 2019-10-28 10:32:00 2019-10-28 10:41:04 t 1 1 139462 581 0.00 2019-10-28 10:41:29 2019-10-28 10:41:41 t 1 1 139463 522 0.00 2019-10-28 10:42:12 2019-10-28 10:43:03 t 1 1 139468 522 0.00 2019-10-28 10:43:33 2019-10-28 10:44:36 t 1 1 139470 562 0.00 2019-10-28 10:44:43 2019-10-28 10:45:23 t 1 1 139471 522 0.00 2019-10-28 10:44:35 2019-10-28 10:46:23 t 1 1 139472 514 0.00 2019-10-28 09:22:48 2019-10-28 10:47:15 t 1 1 139474 581 0.00 2019-10-28 10:46:47 2019-10-28 10:47:26 t 1 1 139479 607 0.00 2019-10-28 10:41:04 2019-10-28 10:50:42 t 1 1 139480 581 0.00 2019-10-28 10:49:58 2019-10-28 10:51:10 t 1 1 139483 591 0.00 2019-10-28 10:15:21 2019-10-28 10:54:18 t 1 1 139485 617 0.00 2019-10-28 10:44:41 2019-10-28 10:55:53 t 1 1 139486 490 0.00 2019-10-28 10:55:00 2019-10-28 10:55:56 t 1 1 139487 619 0.00 2019-10-28 10:55:58 2019-10-28 10:55:58 f 1 1 139491 544 0.00 2019-10-28 10:41:40 2019-10-28 10:56:45 t 1 2 139493 619 0.00 2019-10-28 10:57:04 2019-10-28 10:57:04 f 1 1 139495 522 0.00 2019-10-28 10:57:18 2019-10-28 10:57:23 t 1 1 139498 522 0.00 2019-10-28 10:56:51 2019-10-28 10:58:11 t 1 1 139501 522 0.00 2019-10-28 10:58:52 2019-10-28 11:00:11 t 1 1 139503 522 0.00 2019-10-28 11:00:07 2019-10-28 11:00:35 t 1 1 139507 562 0.00 2019-10-28 11:02:08 2019-10-28 11:03:03 t 1 1 139510 379 0.00 2019-10-28 11:00:20 2019-10-28 11:04:40 t 1 1 139513 522 0.00 2019-10-28 11:04:59 2019-10-28 11:05:11 t 1 1 139515 554 0.00 2019-10-28 10:50:37 2019-10-28 11:05:51 t 1 1 139517 554 0.00 2019-10-28 11:05:50 2019-10-28 11:07:53 t 1 1 67859 131 0.00 2018-06-27 14:57:58 2018-06-27 14:59:42 t 1 1 139519 562 0.00 2019-10-28 11:05:17 2019-10-28 11:09:14 t 1 1 139521 522 0.00 2019-10-28 11:08:34 2019-10-28 11:09:35 t 1 1 139525 562 0.00 2019-10-28 11:09:39 2019-10-28 11:12:09 t 1 1 139527 327 0.00 2019-10-28 11:03:25 2019-10-28 11:16:35 t 1 1 139528 607 0.00 2019-10-28 10:50:42 2019-10-28 11:18:50 t 1 1 139532 554 0.00 2019-10-28 11:19:51 2019-10-28 11:21:23 t 1 1 139534 554 0.00 2019-10-28 11:21:23 2019-10-28 11:27:31 t 1 1 139535 520 0.00 2019-10-28 11:08:57 2019-10-28 11:28:43 t 1 1 139536 498 0.00 2019-10-28 11:15:50 2019-10-28 11:33:15 t 1 2 139539 562 0.00 2019-10-28 11:35:42 2019-10-28 11:37:11 t 1 1 139544 619 0.00 2019-10-28 11:40:25 2019-10-28 11:41:57 t 1 1 139546 595 0.00 2019-10-28 11:43:14 2019-10-28 11:43:32 t 1 1 139552 595 0.00 2019-10-28 11:46:13 2019-10-28 11:46:26 t 1 1 139553 595 0.00 2019-10-28 11:46:40 2019-10-28 11:46:57 t 1 1 139556 327 0.00 2019-10-28 11:22:02 2019-10-28 11:49:03 t 1 1 139562 619 0.00 2019-10-28 11:46:07 2019-10-28 11:52:13 t 1 1 139564 522 0.00 2019-10-28 11:51:31 2019-10-28 11:52:33 t 1 1 139566 538 0.00 2019-10-28 11:52:18 2019-10-28 11:54:13 t 1 1 139568 522 0.00 2019-10-28 11:54:27 2019-10-28 11:54:37 t 1 1 139570 220 0.00 2019-10-28 11:15:01 2019-10-28 11:55:19 t 1 1 139571 522 0.00 2019-10-28 11:56:16 2019-10-28 11:56:44 t 1 1 139575 595 0.00 2019-10-28 11:57:03 2019-10-28 11:57:59 t 1 1 139580 522 0.00 2019-10-28 11:57:11 2019-10-28 11:59:11 t 1 1 139585 562 0.00 2019-10-28 11:58:31 2019-10-28 12:00:30 t 1 1 139587 522 0.00 2019-10-28 12:02:35 2019-10-28 12:02:37 t 1 1 139588 522 0.00 2019-10-28 12:01:13 2019-10-28 12:03:11 t 1 1 139591 591 0.00 2019-10-28 12:03:03 2019-10-28 12:05:16 t 1 1 139596 522 0.00 2019-10-28 12:06:39 2019-10-28 12:08:11 t 1 1 139422 581 0.00 2019-10-28 10:23:31 2019-10-28 10:23:41 t 1 1 139425 522 0.00 2019-10-28 10:23:41 2019-10-28 10:24:22 t 1 1 139426 522 0.00 2019-10-28 10:24:52 2019-10-28 10:24:56 t 1 1 139427 562 0.00 2019-10-28 10:24:42 2019-10-28 10:25:09 t 1 1 139431 581 0.00 2019-10-28 10:27:00 2019-10-28 10:27:07 t 1 1 139437 581 0.00 2019-10-28 10:28:20 2019-10-28 10:28:57 t 1 1 139442 607 0.00 2019-10-28 07:24:36 2019-10-28 10:32:00 t 1 1 139443 581 0.00 2019-10-28 10:31:44 2019-10-28 10:32:59 t 1 1 139454 554 0.00 2019-10-28 10:33:01 2019-10-28 10:39:26 t 1 1 139460 554 0.00 2019-10-28 10:39:38 2019-10-28 10:40:52 t 1 1 139464 538 0.00 2019-10-28 08:46:40 2019-10-28 10:43:10 t 1 1 139467 617 0.00 2019-10-28 10:42:01 2019-10-28 10:44:34 t 1 1 139475 554 0.00 2019-10-28 10:41:26 2019-10-28 10:47:27 t 1 1 139478 581 0.00 2019-10-28 10:49:47 2019-10-28 10:49:52 t 1 1 139481 522 0.00 2019-10-28 10:47:40 2019-10-28 10:51:13 t 1 1 139482 564 0.00 2019-10-27 22:00:13 2019-10-28 10:54:16 t 1 1 139484 430 0.00 2019-10-28 10:55:11 2019-10-28 10:55:47 t 1 1 139489 619 0.00 2019-10-28 10:56:20 2019-10-28 10:56:20 f 1 1 139492 490 0.00 2019-10-28 10:55:55 2019-10-28 10:57:04 t 1 1 139496 619 0.00 2019-10-28 10:58:06 2019-10-28 10:58:06 f 1 1 139499 490 0.00 2019-10-28 10:57:03 2019-10-28 10:58:11 t 1 1 139502 379 0.00 2019-10-28 10:43:43 2019-10-28 11:00:20 t 1 1 139504 522 0.00 2019-10-28 11:00:40 2019-10-28 11:01:07 t 1 1 139508 522 0.00 2019-10-28 11:01:58 2019-10-28 11:03:11 t 1 1 139509 619 0.00 2019-10-28 11:03:23 2019-10-28 11:03:23 f 1 1 139511 522 0.00 2019-10-28 11:04:07 2019-10-28 11:04:54 t 1 1 139514 619 0.00 2019-10-28 11:04:08 2019-10-28 11:05:38 t 1 1 139516 522 0.00 2019-10-28 11:05:16 2019-10-28 11:07:11 t 1 1 139520 617 0.00 2019-10-28 10:55:52 2019-10-28 11:09:26 t 1 1 139522 591 0.00 2019-10-28 10:54:18 2019-10-28 11:10:12 t 1 1 139524 591 0.00 2019-10-28 11:10:12 2019-10-28 11:11:52 t 1 1 139531 554 0.00 2019-10-28 11:19:18 2019-10-28 11:19:51 t 1 1 139533 615 0.00 2019-10-28 11:04:05 2019-10-28 11:25:03 t 1 1 139542 595 0.00 2019-10-28 11:41:25 2019-10-28 11:41:27 t 1 1 139548 591 0.00 2019-10-28 11:11:52 2019-10-28 11:44:51 t 1 1 139549 512 0.00 2019-10-28 11:26:00 2019-10-28 11:45:04 t 1 1 139550 562 0.00 2019-10-28 11:45:23 2019-10-28 11:45:32 t 1 1 139551 607 0.00 2019-10-28 11:18:51 2019-10-28 11:46:07 t 1 1 139554 595 0.00 2019-10-28 11:47:08 2019-10-28 11:47:39 t 1 1 139555 595 0.00 2019-10-28 11:47:48 2019-10-28 11:48:11 t 1 1 139558 522 0.00 2019-10-28 11:51:06 2019-10-28 11:51:18 t 1 1 139559 595 0.00 2019-10-28 11:51:27 2019-10-28 11:51:44 t 1 1 139560 591 0.00 2019-10-28 11:50:28 2019-10-28 11:51:59 t 1 1 139567 522 0.00 2019-10-28 11:53:53 2019-10-28 11:54:22 t 1 1 139569 327 0.00 2019-10-28 11:49:03 2019-10-28 11:55:11 t 1 1 139572 595 0.00 2019-10-28 11:51:58 2019-10-28 11:56:54 t 1 1 139573 520 0.00 2019-10-28 11:49:22 2019-10-28 11:57:06 t 1 1 139578 522 0.00 2019-10-28 11:58:18 2019-10-28 11:58:45 t 1 1 139581 595 0.00 2019-10-28 11:58:54 2019-10-28 11:59:16 t 1 1 139583 522 0.00 2019-10-28 11:59:34 2019-10-28 11:59:35 t 1 1 139586 522 0.00 2019-10-28 12:02:01 2019-10-28 12:02:23 t 1 1 139593 522 0.00 2019-10-28 12:06:25 2019-10-28 12:06:27 t 1 1 139594 327 0.00 2019-10-28 11:55:15 2019-10-28 12:07:18 t 1 1 139595 512 0.00 2019-10-28 12:01:56 2019-10-28 12:07:43 t 1 1 139599 522 0.00 2019-10-28 12:09:25 2019-10-28 12:09:25 f 1 1 139602 522 0.00 2019-10-28 12:07:24 2019-10-28 12:10:11 t 1 1 139605 466 0.00 2019-10-28 12:10:51 2019-10-28 12:10:51 f 1 1 139609 522 0.00 2019-10-28 12:10:29 2019-10-28 12:12:11 t 1 1 139613 585 0.00 2019-10-28 12:07:24 2019-10-28 12:18:44 t 1 1 139614 220 0.00 2019-10-28 12:15:19 2019-10-28 12:19:36 t 1 1 139616 220 0.00 2019-10-28 12:20:11 2019-10-28 12:20:44 t 1 1 139617 220 0.00 2019-10-28 12:20:44 2019-10-28 12:21:20 t 1 1 139624 220 0.00 2019-10-28 12:23:01 2019-10-28 12:23:36 t 1 1 139625 220 0.00 2019-10-28 12:23:36 2019-10-28 12:24:10 t 1 1 139631 562 0.00 2019-10-28 12:22:11 2019-10-28 12:30:40 t 1 1 139643 487 0.00 2019-10-28 09:51:39 2019-10-28 12:36:45 t 1 2 139645 220 0.00 2019-10-28 12:36:48 2019-10-28 12:37:23 t 1 1 139646 220 0.00 2019-10-28 12:37:22 2019-10-28 12:37:56 t 1 1 139647 220 0.00 2019-10-28 12:37:55 2019-10-28 12:38:28 t 1 1 139648 220 0.00 2019-10-28 12:38:28 2019-10-28 12:39:02 t 1 1 139650 220 0.00 2019-10-28 12:39:36 2019-10-28 12:40:10 t 1 1 139653 562 0.00 2019-10-28 12:33:40 2019-10-28 12:41:34 t 1 1 139654 220 0.00 2019-10-28 12:41:19 2019-10-28 12:41:54 t 1 1 68195 185 0.00 2018-07-01 03:04:58 2018-07-01 03:06:46 t 1 1 139655 220 0.00 2019-10-28 12:41:53 2019-10-28 12:42:28 t 1 1 139658 220 0.00 2019-10-28 12:43:02 2019-10-28 12:43:22 t 1 1 139663 327 0.00 2019-10-28 12:17:19 2019-10-28 12:47:34 t 1 1 139671 562 0.00 2019-10-28 12:48:11 2019-10-28 12:53:19 t 1 1 139672 520 0.00 2019-10-28 12:51:14 2019-10-28 12:54:48 t 1 1 139674 538 0.00 2019-10-28 12:52:36 2019-10-28 12:56:58 t 1 1 139675 562 0.00 2019-10-28 12:53:19 2019-10-28 12:58:03 t 1 1 139676 220 0.00 2019-10-28 12:58:31 2019-10-28 12:58:45 t 1 1 139680 562 0.00 2019-10-28 13:00:45 2019-10-28 13:01:29 t 1 1 139682 591 0.00 2019-10-28 12:54:58 2019-10-28 13:03:39 t 1 1 139685 327 0.00 2019-10-28 12:57:15 2019-10-28 13:08:27 t 1 1 139691 514 0.00 2019-10-28 10:48:38 2019-10-28 13:17:03 t 1 1 139693 514 0.00 2019-10-28 13:16:19 2019-10-28 13:18:12 t 1 1 139697 220 0.00 2019-10-28 13:20:10 2019-10-28 13:20:25 t 1 1 139699 615 0.00 2019-10-28 13:17:15 2019-10-28 13:21:43 t 1 1 139700 562 0.00 2019-10-28 13:22:30 2019-10-28 13:22:40 t 1 1 139706 327 0.00 2019-10-28 13:29:00 2019-10-28 13:29:32 t 1 1 68256 185 0.00 2018-07-01 16:29:20 2018-07-01 16:31:08 t 1 1 139714 327 0.00 2019-10-28 13:39:32 2019-10-28 13:41:56 t 1 1 139716 514 0.00 2019-10-28 13:18:27 2019-10-28 13:43:08 t 1 1 139720 503 0.00 2019-10-28 13:31:21 2019-10-28 13:48:19 t 1 1 139724 481 0.00 2019-10-28 13:18:49 2019-10-28 13:52:31 t 1 1 139725 456 0.00 2019-10-28 13:42:54 2019-10-28 13:54:27 t 1 1 139728 516 0.00 2019-10-28 12:23:26 2019-10-28 14:00:03 t 1 1 139729 503 0.00 2019-10-28 13:48:23 2019-10-28 14:01:38 t 1 1 139731 570 0.00 2019-10-28 13:54:56 2019-10-28 14:03:28 t 1 1 139735 562 0.00 2019-10-28 13:44:48 2019-10-28 14:07:54 t 1 1 139736 522 0.00 2019-10-28 14:04:28 2019-10-28 14:09:54 t 1 1 139738 570 0.00 2019-10-28 14:03:28 2019-10-28 14:13:02 t 1 1 139742 220 0.00 2019-10-28 14:14:13 2019-10-28 14:15:49 t 1 1 139743 619 0.00 2019-10-28 14:15:19 2019-10-28 14:16:59 t 1 1 139757 327 0.00 2019-10-28 14:27:43 2019-10-28 14:27:57 t 1 1 139760 562 0.00 2019-10-28 14:29:36 2019-10-28 14:30:54 t 1 1 139540 538 0.00 2019-10-28 11:16:34 2019-10-28 11:38:20 t 1 1 139541 595 0.00 2019-10-28 11:29:29 2019-10-28 11:41:15 t 1 1 139543 615 0.00 2019-10-28 11:32:33 2019-10-28 11:41:48 t 1 1 139545 562 0.00 2019-10-28 11:43:06 2019-10-28 11:43:27 t 1 1 139547 595 0.00 2019-10-28 11:43:46 2019-10-28 11:43:46 t 1 1 139557 522 0.00 2019-10-28 11:47:18 2019-10-28 11:50:09 t 1 1 139561 522 0.00 2019-10-28 11:50:14 2019-10-28 11:52:11 t 1 1 139563 538 0.00 2019-10-28 11:45:29 2019-10-28 11:52:18 t 1 1 139565 522 0.00 2019-10-28 11:53:07 2019-10-28 11:54:11 t 1 1 139574 522 0.00 2019-10-28 11:55:09 2019-10-28 11:57:11 t 1 1 139576 595 0.00 2019-10-28 11:58:07 2019-10-28 11:58:09 t 1 1 139577 562 0.00 2019-10-28 11:47:25 2019-10-28 11:58:23 t 1 1 139579 595 0.00 2019-10-28 11:58:23 2019-10-28 11:58:45 t 1 1 139582 522 0.00 2019-10-28 11:58:51 2019-10-28 11:59:18 t 1 1 139584 522 0.00 2019-10-28 12:00:12 2019-10-28 12:00:23 t 1 1 139589 562 0.00 2019-10-28 12:00:50 2019-10-28 12:03:17 t 1 1 139590 522 0.00 2019-10-28 12:03:12 2019-10-28 12:05:11 t 1 1 139592 522 0.00 2019-10-28 12:03:56 2019-10-28 12:06:18 t 1 1 139598 512 0.00 2019-10-28 12:08:21 2019-10-28 12:09:21 t 1 1 139600 522 0.00 2019-10-28 12:09:45 2019-10-28 12:09:45 f 1 1 139603 220 0.00 2019-10-28 12:09:29 2019-10-28 12:10:17 t 1 1 139604 466 0.00 2019-10-28 12:10:42 2019-10-28 12:10:42 f 1 1 139612 538 0.00 2019-10-28 12:14:11 2019-10-28 12:15:38 t 1 1 139615 220 0.00 2019-10-28 12:19:35 2019-10-28 12:20:11 t 1 1 139619 562 0.00 2019-10-28 12:16:57 2019-10-28 12:22:05 t 1 1 139620 220 0.00 2019-10-28 12:21:53 2019-10-28 12:22:28 t 1 1 139623 516 0.00 2019-10-28 12:18:04 2019-10-28 12:23:26 t 1 1 139626 508 0.00 2019-10-28 12:24:43 2019-10-28 12:26:06 t 1 2 139627 512 0.00 2019-10-28 12:10:08 2019-10-28 12:28:23 t 1 1 139635 220 0.00 2019-10-28 12:32:14 2019-10-28 12:32:49 t 1 1 139636 220 0.00 2019-10-28 12:32:49 2019-10-28 12:33:23 t 1 1 139638 220 0.00 2019-10-28 12:33:58 2019-10-28 12:34:33 t 1 1 139640 220 0.00 2019-10-28 12:35:04 2019-10-28 12:35:39 t 1 1 139656 512 0.00 2019-10-28 12:37:11 2019-10-28 12:42:56 t 1 1 139657 220 0.00 2019-10-28 12:42:28 2019-10-28 12:43:03 t 1 1 139659 220 0.00 2019-10-28 12:43:21 2019-10-28 12:43:29 t 1 1 139665 538 0.00 2019-10-28 12:15:38 2019-10-28 12:48:15 t 1 1 139666 456 0.00 2019-10-28 12:44:12 2019-10-28 12:49:47 t 1 1 139670 220 0.00 2019-10-28 12:51:48 2019-10-28 12:52:41 t 1 1 139673 619 0.00 2019-10-28 12:55:35 2019-10-28 12:56:52 t 1 1 139678 220 0.00 2019-10-28 12:59:12 2019-10-28 12:59:26 t 1 1 139679 562 0.00 2019-10-28 12:58:33 2019-10-28 13:00:11 t 1 1 139684 562 0.00 2019-10-28 13:06:49 2019-10-28 13:07:03 t 1 1 139688 619 0.00 2019-10-28 13:06:43 2019-10-28 13:12:32 t 1 1 139690 585 0.00 2019-10-28 13:09:35 2019-10-28 13:15:33 t 1 1 139692 562 0.00 2019-10-28 13:17:20 2019-10-28 13:17:44 t 1 1 139695 481 0.00 2019-10-28 10:22:38 2019-10-28 13:18:49 t 1 1 139696 619 0.00 2019-10-28 13:16:41 2019-10-28 13:19:56 t 1 1 139698 327 0.00 2019-10-28 13:18:22 2019-10-28 13:20:31 t 1 1 139701 331 0.00 2019-10-28 12:55:52 2019-10-28 13:24:56 t 1 1 139702 619 0.00 2019-10-28 13:20:07 2019-10-28 13:25:12 t 1 1 139709 331 0.00 2019-10-28 13:24:15 2019-10-28 13:33:35 t 1 1 139710 456 0.00 2019-10-28 13:29:23 2019-10-28 13:34:53 t 1 1 139712 562 0.00 2019-10-28 13:40:31 2019-10-28 13:41:33 t 1 1 139717 514 0.00 2019-10-28 13:43:28 2019-10-28 13:45:58 t 1 1 139718 570 0.00 2019-10-28 13:37:51 2019-10-28 13:46:58 t 1 1 139719 361 0.00 2019-10-28 13:00:31 2019-10-28 13:47:54 t 1 2 139722 619 0.00 2019-10-28 13:38:27 2019-10-28 13:50:45 t 1 1 139726 570 0.00 2019-10-28 13:46:58 2019-10-28 13:54:56 t 1 1 139733 597 0.00 2019-10-28 14:02:30 2019-10-28 14:04:14 t 1 1 139737 562 0.00 2019-10-28 14:11:40 2019-10-28 14:12:32 t 1 1 139741 522 0.00 2019-10-28 14:09:54 2019-10-28 14:15:19 t 1 1 139745 327 0.00 2019-10-28 14:14:26 2019-10-28 14:18:23 t 1 1 139746 570 0.00 2019-10-28 14:13:02 2019-10-28 14:19:50 t 1 1 139748 327 0.00 2019-10-28 14:19:55 2019-10-28 14:21:09 t 1 1 139749 562 0.00 2019-10-28 14:13:32 2019-10-28 14:22:01 t 1 1 139752 331 0.00 2019-10-28 13:33:40 2019-10-28 14:24:35 t 1 1 139755 591 0.00 2019-10-28 13:47:44 2019-10-28 14:26:53 t 1 1 139762 591 0.00 2019-10-28 14:26:53 2019-10-28 14:31:32 t 1 1 139764 585 0.00 2019-10-28 14:29:25 2019-10-28 14:33:54 t 1 1 139765 522 0.00 2019-10-28 14:31:14 2019-10-28 14:34:43 t 1 1 139771 220 0.00 2019-10-28 14:45:10 2019-10-28 14:45:17 t 1 1 139772 562 0.00 2019-10-28 14:33:40 2019-10-28 14:48:35 t 1 1 139781 595 0.00 2019-10-28 14:53:08 2019-10-28 14:55:31 t 1 1 139782 220 0.00 2019-10-28 14:55:38 2019-10-28 14:56:11 t 1 1 68204 131 0.00 2018-07-01 10:11:21 2018-07-01 10:13:06 t 1 1 139788 562 0.00 2019-10-28 14:58:16 2019-10-28 14:58:25 t 1 1 139789 516 0.00 2019-10-28 14:47:59 2019-10-28 14:59:08 t 1 1 139791 522 0.00 2019-10-28 14:57:35 2019-10-28 14:59:42 t 1 1 139792 412 0.00 2019-10-28 01:38:42 2019-10-28 15:00:53 t 1 1 139793 481 0.00 2019-10-28 14:15:12 2019-10-28 15:01:15 t 1 1 139800 522 0.00 2019-10-28 15:03:40 2019-10-28 15:04:17 t 1 1 139814 485 0.00 2019-10-28 14:59:50 2019-10-28 15:12:16 t 1 1 139815 481 0.00 2019-10-28 15:01:22 2019-10-28 15:12:31 t 1 1 139817 562 0.00 2019-10-28 15:14:10 2019-10-28 15:14:21 t 1 1 139825 220 0.00 2019-10-28 15:16:54 2019-10-28 15:17:09 t 1 1 139831 522 0.00 2019-10-28 15:19:03 2019-10-28 15:19:41 t 1 1 139833 522 0.00 2019-10-28 15:19:46 2019-10-28 15:20:55 t 1 1 139834 485 0.00 2019-10-28 15:12:16 2019-10-28 15:21:21 t 1 1 139839 522 0.00 2019-10-28 15:21:43 2019-10-28 15:22:57 t 1 1 139840 481 0.00 2019-10-28 15:12:30 2019-10-28 15:23:27 t 1 1 139841 522 0.00 2019-10-28 15:23:02 2019-10-28 15:23:57 t 1 1 139842 451 0.00 2019-10-28 15:14:52 2019-10-28 15:25:45 t 1 1 139843 542 0.00 2019-10-28 15:23:29 2019-10-28 15:26:46 t 1 1 139844 617 0.00 2019-10-28 15:24:24 2019-10-28 15:27:26 t 1 1 139846 220 0.00 2019-10-28 15:27:24 2019-10-28 15:27:39 t 1 1 139848 220 0.00 2019-10-28 15:27:47 2019-10-28 15:28:48 t 1 1 139849 597 0.00 2019-10-28 14:50:03 2019-10-28 15:29:48 t 1 1 139855 451 0.00 2019-10-28 15:25:45 2019-10-28 15:35:13 t 1 1 139856 451 0.00 2019-10-28 15:35:13 2019-10-28 15:35:39 t 1 1 139858 220 0.00 2019-10-28 15:36:56 2019-10-28 15:37:07 t 1 1 139860 412 0.00 2019-10-28 15:01:01 2019-10-28 15:37:44 t 1 1 139862 451 0.00 2019-10-28 15:35:38 2019-10-28 15:39:15 t 1 1 139864 412 0.00 2019-10-28 15:42:51 2019-10-28 15:44:00 t 1 1 139866 544 0.00 2019-10-28 15:42:21 2019-10-28 15:44:51 t 1 2 139867 220 0.00 2019-10-28 15:29:22 2019-10-28 15:46:21 t 1 1 139874 327 0.00 2019-10-28 15:54:37 2019-10-28 15:55:43 t 1 1 139597 562 0.00 2019-10-28 12:03:26 2019-10-28 12:08:24 t 1 1 139601 522 0.00 2019-10-28 12:08:24 2019-10-28 12:10:11 t 1 1 139606 562 0.00 2019-10-28 12:09:39 2019-10-28 12:11:13 t 1 1 139607 522 0.00 2019-10-28 12:11:44 2019-10-28 12:11:44 f 1 1 139608 466 0.00 2019-10-28 12:12:03 2019-10-28 12:12:03 f 1 1 139610 522 0.00 2019-10-28 12:11:32 2019-10-28 12:13:11 t 1 1 139611 538 0.00 2019-10-28 11:57:23 2019-10-28 12:14:11 t 1 1 139618 220 0.00 2019-10-28 12:21:19 2019-10-28 12:21:53 t 1 1 139621 564 0.00 2019-10-28 10:54:16 2019-10-28 12:22:50 t 1 1 139622 220 0.00 2019-10-28 12:22:28 2019-10-28 12:23:01 t 1 1 139628 619 0.00 2019-10-28 12:16:22 2019-10-28 12:28:34 t 1 1 139629 456 0.00 2019-10-28 12:24:19 2019-10-28 12:29:56 t 1 1 139630 512 0.00 2019-10-28 12:28:46 2019-10-28 12:30:02 t 1 1 139632 361 0.00 2019-10-28 10:55:38 2019-10-28 12:30:59 t 1 2 139633 220 0.00 2019-10-28 12:24:10 2019-10-28 12:31:42 t 1 1 139634 220 0.00 2019-10-28 12:31:42 2019-10-28 12:32:15 t 1 1 139637 220 0.00 2019-10-28 12:33:23 2019-10-28 12:33:58 t 1 1 139639 220 0.00 2019-10-28 12:34:32 2019-10-28 12:35:04 t 1 1 139641 512 0.00 2019-10-28 12:31:07 2019-10-28 12:35:52 t 1 1 139642 220 0.00 2019-10-28 12:35:39 2019-10-28 12:36:14 t 1 1 139644 220 0.00 2019-10-28 12:36:14 2019-10-28 12:36:48 t 1 1 139649 220 0.00 2019-10-28 12:39:01 2019-10-28 12:39:36 t 1 1 139651 220 0.00 2019-10-28 12:40:10 2019-10-28 12:40:44 t 1 1 139652 220 0.00 2019-10-28 12:40:44 2019-10-28 12:41:19 t 1 1 139660 220 0.00 2019-10-28 12:43:52 2019-10-28 12:45:48 t 1 1 139661 506 0.00 2019-10-28 12:37:36 2019-10-28 12:46:30 t 1 1 139662 619 0.00 2019-10-28 12:46:09 2019-10-28 12:47:23 t 1 1 139664 562 0.00 2019-10-28 12:41:34 2019-10-28 12:48:11 t 1 1 139667 220 0.00 2019-10-28 12:47:08 2019-10-28 12:50:07 t 1 1 68074 131 0.00 2018-06-30 10:36:37 2018-06-30 10:37:46 t 1 1 139668 220 0.00 2019-10-28 12:50:06 2019-10-28 12:51:38 t 1 1 139669 538 0.00 2019-10-28 12:49:30 2019-10-28 12:52:28 t 1 1 139677 512 0.00 2019-10-28 12:44:11 2019-10-28 12:59:07 t 1 1 139681 556 0.00 2019-10-28 07:40:41 2019-10-28 13:03:18 t 1 1 139683 512 0.00 2019-10-28 13:00:14 2019-10-28 13:06:05 t 1 1 139686 591 0.00 2019-10-28 13:06:21 2019-10-28 13:09:09 t 1 1 139687 220 0.00 2019-10-28 13:09:41 2019-10-28 13:09:49 t 1 1 139689 570 0.00 2019-10-28 13:02:17 2019-10-28 13:12:47 t 1 1 139694 514 0.00 2019-10-28 13:17:09 2019-10-28 13:18:25 t 1 1 139703 607 0.00 2019-10-28 13:25:52 2019-10-28 13:27:30 t 1 1 139704 562 0.00 2019-10-28 13:28:05 2019-10-28 13:28:25 t 1 1 139705 379 0.00 2019-10-28 11:28:23 2019-10-28 13:29:16 t 1 1 139707 220 0.00 2019-10-28 13:30:40 2019-10-28 13:31:13 t 1 1 139708 615 0.00 2019-10-28 13:29:27 2019-10-28 13:31:59 t 1 1 139711 562 0.00 2019-10-28 13:38:42 2019-10-28 13:38:58 t 1 1 139713 220 0.00 2019-10-28 13:41:09 2019-10-28 13:41:43 t 1 1 139715 379 0.00 2019-10-28 13:29:16 2019-10-28 13:42:14 t 1 1 139721 514 0.00 2019-10-28 13:45:58 2019-10-28 13:48:56 t 1 1 139723 220 0.00 2019-10-28 13:51:38 2019-10-28 13:51:46 t 1 1 139727 619 0.00 2019-10-28 13:50:54 2019-10-28 13:58:09 t 1 1 139730 379 0.00 2019-10-28 13:42:14 2019-10-28 14:02:58 t 1 1 139732 220 0.00 2019-10-28 14:02:07 2019-10-28 14:03:45 t 1 1 139734 327 0.00 2019-10-28 13:51:50 2019-10-28 14:05:02 t 1 1 139739 220 0.00 2019-10-28 14:13:41 2019-10-28 14:14:13 t 1 1 139740 481 0.00 2019-10-28 13:52:31 2019-10-28 14:15:12 t 1 1 139744 514 0.00 2019-10-28 13:48:56 2019-10-28 14:18:17 t 1 1 139747 327 0.00 2019-10-28 14:18:33 2019-10-28 14:20:13 t 1 1 139750 615 0.00 2019-10-28 13:40:39 2019-10-28 14:22:33 t 1 1 139751 220 0.00 2019-10-28 14:24:11 2019-10-28 14:24:19 t 1 1 139753 562 0.00 2019-10-28 14:22:42 2019-10-28 14:24:42 t 1 1 139754 581 0.00 2019-10-28 14:24:51 2019-10-28 14:26:00 t 1 1 139756 327 0.00 2019-10-28 14:21:42 2019-10-28 14:27:36 t 1 1 139758 562 0.00 2019-10-28 14:26:15 2019-10-28 14:28:58 t 1 1 139759 585 0.00 2019-10-28 14:29:17 2019-10-28 14:29:25 t 1 1 139761 522 0.00 2019-10-28 14:15:19 2019-10-28 14:31:14 t 1 1 139769 564 0.00 2019-10-28 12:25:43 2019-10-28 14:37:51 t 1 1 139770 514 0.00 2019-10-28 14:18:17 2019-10-28 14:39:18 t 1 1 139773 451 0.00 2019-10-28 14:37:16 2019-10-28 14:48:39 t 1 1 139775 619 0.00 2019-10-28 14:37:52 2019-10-28 14:49:19 t 1 1 139778 564 0.00 2019-10-28 14:37:51 2019-10-28 14:51:23 t 1 1 139779 562 0.00 2019-10-28 14:51:12 2019-10-28 14:52:02 t 1 1 139783 611 0.00 2019-10-28 14:32:49 2019-10-28 14:56:40 t 1 1 139784 611 0.00 2019-10-28 14:56:40 2019-10-28 14:57:18 t 1 1 139786 536 0.00 2019-10-28 14:51:04 2019-10-28 14:57:43 t 1 1 139787 536 0.00 2019-10-28 14:57:49 2019-10-28 14:58:01 t 1 1 139795 522 0.00 2019-10-28 14:59:48 2019-10-28 15:01:54 t 1 1 139796 522 0.00 2019-10-28 15:01:59 2019-10-28 15:02:42 t 1 1 139797 544 0.00 2019-10-28 15:00:13 2019-10-28 15:03:13 t 1 2 139805 220 0.00 2019-10-28 15:06:09 2019-10-28 15:06:23 t 1 1 68220 185 0.00 2018-07-01 12:48:30 2018-07-01 12:50:07 t 1 1 139807 522 0.00 2019-10-28 15:04:22 2019-10-28 15:08:25 t 1 1 139808 522 0.00 2019-10-28 15:08:30 2019-10-28 15:09:03 t 1 1 139812 562 0.00 2019-10-28 15:10:08 2019-10-28 15:11:48 t 1 1 139813 522 0.00 2019-10-28 15:11:33 2019-10-28 15:12:06 t 1 1 139818 522 0.00 2019-10-28 15:13:46 2019-10-28 15:14:24 t 1 1 139819 451 0.00 2019-10-28 14:48:39 2019-10-28 15:14:52 t 1 1 139821 522 0.00 2019-10-28 15:14:29 2019-10-28 15:15:50 t 1 1 139822 619 0.00 2019-10-28 15:07:03 2019-10-28 15:16:24 t 1 1 139826 581 0.00 2019-10-28 15:11:59 2019-10-28 15:17:22 t 1 1 139828 570 0.00 2019-10-28 15:10:50 2019-10-28 15:18:00 t 1 1 139830 522 0.00 2019-10-28 15:18:00 2019-10-28 15:18:58 t 1 1 139836 522 0.00 2019-10-28 15:21:00 2019-10-28 15:21:38 t 1 1 139837 617 0.00 2019-10-28 15:20:09 2019-10-28 15:21:59 t 1 1 139847 617 0.00 2019-10-28 15:27:26 2019-10-28 15:28:16 t 1 1 139850 327 0.00 2019-10-28 15:15:43 2019-10-28 15:29:56 t 1 1 139851 617 0.00 2019-10-28 15:28:16 2019-10-28 15:30:04 t 1 1 139859 522 0.00 2019-10-28 15:24:02 2019-10-28 15:37:44 t 1 1 139868 220 0.00 2019-10-28 15:46:21 2019-10-28 15:46:34 t 1 1 139870 562 0.00 2019-10-28 15:47:06 2019-10-28 15:48:08 t 1 1 139871 412 0.00 2019-10-28 15:44:08 2019-10-28 15:51:13 t 1 1 139872 562 0.00 2019-10-28 15:52:57 2019-10-28 15:54:20 t 1 1 139875 544 0.00 2019-10-28 15:45:49 2019-10-28 15:55:54 t 1 2 139880 554 0.00 2019-10-28 11:27:31 2019-10-28 16:00:53 t 1 1 139881 619 0.00 2019-10-28 15:57:32 2019-10-28 16:02:33 t 1 1 139886 585 0.00 2019-10-28 15:56:54 2019-10-28 16:05:39 t 1 1 139890 595 0.00 2019-10-28 16:06:12 2019-10-28 16:07:17 t 1 1 139892 220 0.00 2019-10-28 16:07:19 2019-10-28 16:07:34 t 1 1 139763 619 0.00 2019-10-28 14:27:27 2019-10-28 14:32:48 t 1 1 139766 220 0.00 2019-10-28 14:34:40 2019-10-28 14:34:48 t 1 1 139767 597 0.00 2019-10-28 14:27:52 2019-10-28 14:35:00 t 1 1 139768 451 0.00 2019-10-28 14:24:23 2019-10-28 14:37:16 t 1 1 139774 327 0.00 2019-10-28 14:38:13 2019-10-28 14:48:59 t 1 1 139776 562 0.00 2019-10-28 14:48:41 2019-10-28 14:49:21 t 1 1 139777 512 0.00 2019-10-28 14:47:51 2019-10-28 14:50:03 t 1 1 139780 615 0.00 2019-10-28 14:22:33 2019-10-28 14:53:46 t 1 1 139785 522 0.00 2019-10-28 14:34:43 2019-10-28 14:57:30 t 1 1 139790 503 0.00 2019-10-28 14:25:53 2019-10-28 14:59:36 t 1 1 139794 619 0.00 2019-10-28 14:52:37 2019-10-28 15:01:50 t 1 1 139798 522 0.00 2019-10-28 15:02:47 2019-10-28 15:03:35 t 1 1 139799 536 0.00 2019-10-28 14:59:33 2019-10-28 15:04:06 t 1 1 139801 570 0.00 2019-10-28 14:59:04 2019-10-28 15:04:31 t 1 1 139802 619 0.00 2019-10-28 15:01:50 2019-10-28 15:04:51 t 1 1 139803 536 0.00 2019-10-28 15:04:38 2019-10-28 15:05:29 t 1 1 139804 536 0.00 2019-10-28 15:05:34 2019-10-28 15:06:02 t 1 1 139806 562 0.00 2019-10-28 15:06:51 2019-10-28 15:07:19 t 1 1 68364 131 0.00 2018-07-02 19:33:18 2018-07-02 19:35:08 t 1 1 139809 522 0.00 2019-10-28 15:09:08 2019-10-28 15:10:03 t 1 1 139810 570 0.00 2019-10-28 15:04:31 2019-10-28 15:10:50 t 1 1 139811 522 0.00 2019-10-28 15:10:08 2019-10-28 15:11:28 t 1 1 139816 522 0.00 2019-10-28 15:12:11 2019-10-28 15:13:41 t 1 1 139820 327 0.00 2019-10-28 14:49:16 2019-10-28 15:15:43 t 1 1 139823 522 0.00 2019-10-28 15:15:55 2019-10-28 15:16:34 t 1 1 139824 220 0.00 2019-10-28 15:16:39 2019-10-28 15:16:46 t 1 1 139827 522 0.00 2019-10-28 15:16:39 2019-10-28 15:17:55 t 1 1 139829 514 0.00 2019-10-28 14:39:18 2019-10-28 15:18:49 t 1 1 139832 508 0.00 2019-10-28 14:00:29 2019-10-28 15:20:34 t 1 2 139835 570 0.00 2019-10-28 15:18:00 2019-10-28 15:21:37 t 1 1 139838 570 0.00 2019-10-28 15:21:37 2019-10-28 15:22:45 t 1 1 139845 508 0.00 2019-10-28 15:14:49 2019-10-28 15:27:31 t 1 2 139852 516 0.00 2019-10-28 15:28:45 2019-10-28 15:33:49 t 1 1 139853 514 0.00 2019-10-28 15:18:48 2019-10-28 15:34:33 t 1 1 139854 619 0.00 2019-10-28 15:16:49 2019-10-28 15:35:01 t 1 1 139857 485 0.00 2019-10-28 15:21:21 2019-10-28 15:36:53 t 1 1 139861 562 0.00 2019-10-28 15:38:49 2019-10-28 15:39:03 t 1 1 68421 185 0.00 2018-07-03 16:18:24 2018-07-03 16:20:08 t 1 1 139863 412 0.00 2019-10-28 15:41:36 2019-10-28 15:42:42 t 1 1 139865 327 0.00 2019-10-28 15:40:14 2019-10-28 15:44:40 t 1 1 139869 619 0.00 2019-10-28 15:38:07 2019-10-28 15:47:10 t 1 1 139873 528 0.00 2019-10-28 15:49:00 2019-10-28 15:55:01 t 1 1 139876 220 0.00 2019-10-28 15:46:52 2019-10-28 15:56:51 t 1 1 139877 220 0.00 2019-10-28 15:56:50 2019-10-28 15:57:06 t 1 1 139878 412 0.00 2019-10-28 15:57:06 2019-10-28 15:59:53 t 1 1 139879 597 0.00 2019-10-28 15:51:41 2019-10-28 16:00:22 t 1 1 139882 485 0.00 2019-10-28 15:36:53 2019-10-28 16:03:47 t 1 1 139887 554 0.00 2019-10-28 16:00:53 2019-10-28 16:05:51 t 1 1 139888 327 0.00 2019-10-28 16:05:48 2019-10-28 16:06:37 t 1 1 139894 516 0.00 2019-10-28 15:33:49 2019-10-28 16:11:31 t 1 1 139900 528 0.00 2019-10-28 16:17:02 2019-10-28 16:17:13 t 1 1 139904 538 0.00 2019-10-28 14:05:39 2019-10-28 16:19:58 t 1 1 139907 562 0.00 2019-10-28 16:21:02 2019-10-28 16:21:29 t 1 1 139909 619 0.00 2019-10-28 16:19:09 2019-10-28 16:22:49 t 1 1 68455 185 0.00 2018-07-03 21:46:18 2018-07-03 21:48:08 t 1 1 139913 412 0.00 2019-10-28 16:21:46 2019-10-28 16:25:23 t 1 1 139918 220 0.00 2019-10-28 16:28:19 2019-10-28 16:28:23 t 1 1 139920 544 0.00 2019-10-28 16:13:35 2019-10-28 16:28:40 t 1 2 139922 220 0.00 2019-10-28 16:29:47 2019-10-28 16:32:11 t 1 2 139926 562 0.00 2019-10-28 16:29:08 2019-10-28 16:34:32 t 1 1 139930 220 0.00 2019-10-28 16:34:55 2019-10-28 16:35:27 t 1 1 139935 220 0.00 2019-10-28 16:37:06 2019-10-28 16:37:46 t 1 1 139938 615 0.00 2019-10-28 16:30:38 2019-10-28 16:38:35 t 1 1 139940 220 0.00 2019-10-28 16:38:23 2019-10-28 16:38:41 t 1 1 139942 220 0.00 2019-10-28 16:38:40 2019-10-28 16:39:02 t 1 1 139943 220 0.00 2019-10-28 16:39:11 2019-10-28 16:39:15 t 1 1 139945 516 0.00 2019-10-28 16:25:22 2019-10-28 16:39:56 t 1 1 68496 131 0.00 2018-07-04 17:47:11 2018-07-04 17:49:09 t 1 1 139947 220 0.00 2019-10-28 16:39:48 2019-10-28 16:40:23 t 1 1 139954 578 0.00 2019-10-28 16:26:26 2019-10-28 16:46:20 t 1 1 68514 185 0.00 2018-07-04 21:14:38 2018-07-04 21:16:10 t 1 1 139955 327 0.00 2019-10-28 16:44:15 2019-10-28 16:47:24 t 1 1 139959 554 0.00 2019-10-28 16:05:50 2019-10-28 16:47:55 t 1 1 139962 220 0.00 2019-10-28 16:48:11 2019-10-28 16:48:27 t 1 1 139964 395 0.00 2019-10-28 16:05:43 2019-10-28 16:48:47 t 1 2 139966 220 0.00 2019-10-28 16:49:03 2019-10-28 16:49:21 t 1 1 139968 488 0.00 2019-10-28 16:38:08 2019-10-28 16:49:27 t 1 1 139969 220 0.00 2019-10-28 16:49:26 2019-10-28 16:49:34 t 1 1 139971 220 0.00 2019-10-28 16:50:01 2019-10-28 16:50:09 t 1 1 139975 220 0.00 2019-10-28 16:51:23 2019-10-28 16:51:56 t 1 1 139978 220 0.00 2019-10-28 16:51:56 2019-10-28 16:52:45 t 1 1 139980 522 0.00 2019-10-28 16:47:30 2019-10-28 16:53:11 t 1 1 139988 522 0.00 2019-10-28 16:54:44 2019-10-28 16:55:57 t 1 1 139989 220 0.00 2019-10-28 16:55:32 2019-10-28 16:56:06 t 1 1 139992 220 0.00 2019-10-28 16:56:11 2019-10-28 16:56:46 t 1 1 139996 522 0.00 2019-10-28 16:56:59 2019-10-28 16:57:53 t 1 1 139998 220 0.00 2019-10-28 16:57:22 2019-10-28 16:57:56 t 1 1 139999 220 0.00 2019-10-28 16:57:56 2019-10-28 16:58:39 t 1 1 140001 220 0.00 2019-10-28 16:59:12 2019-10-28 16:59:14 t 1 1 140004 220 0.00 2019-10-28 16:59:45 2019-10-28 17:00:07 t 1 1 140006 220 0.00 2019-10-28 17:00:07 2019-10-28 17:00:19 t 1 1 140013 220 0.00 2019-10-28 17:01:17 2019-10-28 17:01:45 t 1 1 140014 220 0.00 2019-10-28 17:01:45 2019-10-28 17:01:52 t 1 1 140017 220 0.00 2019-10-28 17:02:26 2019-10-28 17:02:30 t 1 1 140020 522 0.00 2019-10-28 17:00:41 2019-10-28 17:03:14 t 1 1 140024 544 0.00 2019-10-28 17:02:24 2019-10-28 17:05:38 t 1 2 140026 528 0.00 2019-10-28 17:05:30 2019-10-28 17:05:55 t 1 1 140029 220 0.00 2019-10-28 17:06:19 2019-10-28 17:06:29 t 1 1 140032 220 0.00 2019-10-28 17:06:57 2019-10-28 17:07:01 t 1 1 140033 220 0.00 2019-10-28 17:07:00 2019-10-28 17:07:23 t 1 1 140035 595 0.00 2019-10-28 17:02:49 2019-10-28 17:07:42 t 1 1 140038 220 0.00 2019-10-28 17:07:57 2019-10-28 17:08:03 t 1 1 140044 595 0.00 2019-10-28 17:12:42 2019-10-28 17:12:50 t 1 1 140048 554 0.00 2019-10-28 17:01:13 2019-10-28 17:17:02 t 1 1 140049 562 0.00 2019-10-28 17:16:26 2019-10-28 17:22:07 t 1 1 140052 488 0.00 2019-10-28 17:09:51 2019-10-28 17:28:48 t 1 1 140054 412 0.00 2019-10-28 16:47:27 2019-10-28 17:30:33 t 1 1 139883 528 0.00 2019-10-28 16:02:59 2019-10-28 16:03:48 t 1 1 139884 528 0.00 2019-10-28 16:04:05 2019-10-28 16:04:32 t 1 1 139885 412 0.00 2019-10-28 16:02:50 2019-10-28 16:05:03 t 1 1 139889 522 0.00 2019-10-28 15:37:44 2019-10-28 16:06:50 t 1 1 139891 220 0.00 2019-10-28 15:57:23 2019-10-28 16:07:20 t 1 1 139893 528 0.00 2019-10-28 16:09:42 2019-10-28 16:10:25 t 1 1 139895 220 0.00 2019-10-28 16:07:13 2019-10-28 16:11:36 t 1 2 139896 591 0.00 2019-10-28 16:09:56 2019-10-28 16:13:04 t 1 1 139898 562 0.00 2019-10-28 16:14:50 2019-10-28 16:16:11 t 1 1 139902 220 0.00 2019-10-28 16:17:49 2019-10-28 16:18:04 t 1 1 68321 185 0.00 2018-07-02 12:11:15 2018-07-02 12:13:08 t 1 1 139905 412 0.00 2019-10-28 16:17:47 2019-10-28 16:19:59 t 1 1 139912 538 0.00 2019-10-28 16:21:17 2019-10-28 16:25:07 t 1 1 139914 512 0.00 2019-10-28 16:22:11 2019-10-28 16:25:37 t 1 1 139915 578 0.00 2019-10-28 05:11:27 2019-10-28 16:26:26 t 1 1 139916 220 0.00 2019-10-28 16:24:53 2019-10-28 16:27:17 t 1 2 139919 522 0.00 2019-10-28 16:06:50 2019-10-28 16:28:32 t 1 1 139923 379 0.00 2019-10-28 15:23:54 2019-10-28 16:32:14 t 1 1 139924 379 0.00 2019-10-28 16:32:40 2019-10-28 16:34:13 t 1 1 139927 528 0.00 2019-10-28 16:33:58 2019-10-28 16:34:49 t 1 1 139928 220 0.00 2019-10-28 16:29:13 2019-10-28 16:34:55 t 1 1 139929 488 0.00 2019-10-28 16:31:26 2019-10-28 16:35:06 t 1 1 139934 220 0.00 2019-10-28 16:36:33 2019-10-28 16:37:06 t 1 1 139939 220 0.00 2019-10-28 16:36:12 2019-10-28 16:38:35 t 1 2 139941 522 0.00 2019-10-28 16:28:32 2019-10-28 16:38:45 t 1 1 139946 485 0.00 2019-10-28 16:34:51 2019-10-28 16:40:01 t 1 1 139949 220 0.00 2019-10-28 16:40:55 2019-10-28 16:42:07 t 1 1 139950 220 0.00 2019-10-28 16:42:07 2019-10-28 16:42:57 t 1 1 139951 220 0.00 2019-10-28 16:42:57 2019-10-28 16:43:34 t 1 1 139953 528 0.00 2019-10-28 16:45:02 2019-10-28 16:45:31 t 1 1 139961 220 0.00 2019-10-28 16:47:51 2019-10-28 16:48:11 t 1 1 139965 220 0.00 2019-10-28 16:48:45 2019-10-28 16:49:03 t 1 1 139970 220 0.00 2019-10-28 16:49:34 2019-10-28 16:50:01 t 1 1 139972 220 0.00 2019-10-28 16:50:09 2019-10-28 16:50:27 t 1 1 139973 220 0.00 2019-10-28 16:50:33 2019-10-28 16:50:44 t 1 1 139974 220 0.00 2019-10-28 16:50:44 2019-10-28 16:51:24 t 1 1 139977 544 0.00 2019-10-28 16:52:18 2019-10-28 16:52:28 t 1 2 139979 220 0.00 2019-10-28 16:52:45 2019-10-28 16:53:10 t 1 1 139982 544 0.00 2019-10-28 16:53:45 2019-10-28 16:53:55 t 1 2 139983 220 0.00 2019-10-28 16:53:19 2019-10-28 16:54:08 t 1 1 139985 220 0.00 2019-10-28 16:54:08 2019-10-28 16:54:39 t 1 1 139986 220 0.00 2019-10-28 16:54:39 2019-10-28 16:55:33 t 1 1 139991 522 0.00 2019-10-28 16:56:35 2019-10-28 16:56:44 t 1 1 139993 544 0.00 2019-10-28 16:56:53 2019-10-28 16:57:05 t 1 2 139997 327 0.00 2019-10-28 16:57:19 2019-10-28 16:57:53 t 1 1 68412 131 0.00 2018-07-03 11:57:39 2018-07-03 11:59:08 t 1 1 140000 220 0.00 2019-10-28 16:58:39 2019-10-28 16:59:12 t 1 1 140002 488 0.00 2019-10-28 16:49:27 2019-10-28 16:59:32 t 1 1 140003 220 0.00 2019-10-28 16:59:13 2019-10-28 16:59:46 t 1 1 140005 522 0.00 2019-10-28 16:58:40 2019-10-28 17:00:14 t 1 1 140007 416 0.00 2019-10-28 16:27:20 2019-10-28 17:00:39 t 1 1 140008 220 0.00 2019-10-28 17:00:19 2019-10-28 17:00:39 t 1 1 140009 220 0.00 2019-10-28 17:00:39 2019-10-28 17:00:42 t 1 1 140016 522 0.00 2019-10-28 17:02:28 2019-10-28 17:02:28 f 1 1 140018 220 0.00 2019-10-28 17:02:30 2019-10-28 17:03:02 t 1 1 140027 562 0.00 2019-10-28 17:04:28 2019-10-28 17:05:56 t 1 1 140028 220 0.00 2019-10-28 17:05:45 2019-10-28 17:06:20 t 1 1 140030 485 0.00 2019-10-28 17:01:40 2019-10-28 17:06:37 t 1 1 140031 220 0.00 2019-10-28 17:06:29 2019-10-28 17:06:57 t 1 1 140034 562 0.00 2019-10-28 17:07:07 2019-10-28 17:07:26 t 1 1 140040 528 0.00 2019-10-28 17:08:58 2019-10-28 17:09:52 t 1 1 140041 416 0.00 2019-10-28 17:00:39 2019-10-28 17:10:30 t 1 1 140042 220 0.00 2019-10-28 15:56:35 2019-10-28 17:10:58 t 1 2 140043 516 0.00 2019-10-28 17:01:54 2019-10-28 17:12:23 t 1 1 140045 595 0.00 2019-10-28 17:13:54 2019-10-28 17:14:32 t 1 1 140051 562 0.00 2019-10-28 17:26:22 2019-10-28 17:27:35 t 1 1 68486 131 0.00 2018-07-04 12:32:02 2018-07-04 12:32:02 f 1 1 140061 578 0.00 2019-10-28 16:46:20 2019-10-28 17:35:57 t 1 1 140063 481 0.00 2019-10-28 16:41:19 2019-10-28 17:40:57 t 1 1 140064 562 0.00 2019-10-28 17:40:26 2019-10-28 17:41:00 t 1 1 140069 220 0.00 2019-10-28 17:21:40 2019-10-28 17:47:04 t 1 2 68495 131 0.00 2018-07-04 17:43:44 2018-07-04 17:45:09 t 1 1 140074 528 0.00 2019-10-28 17:47:47 2019-10-28 17:52:54 t 1 1 140078 585 0.00 2019-10-28 17:53:52 2019-10-28 17:59:01 t 1 1 140082 562 0.00 2019-10-28 18:02:39 2019-10-28 18:02:48 t 1 1 140083 562 0.00 2019-10-28 18:03:20 2019-10-28 18:03:38 t 1 1 140090 562 0.00 2019-10-28 18:09:51 2019-10-28 18:10:07 t 1 1 140091 591 0.00 2019-10-28 16:48:48 2019-10-28 18:11:05 t 1 1 140094 562 0.00 2019-10-28 18:13:23 2019-10-28 18:15:13 t 1 1 140099 522 0.00 2019-10-28 18:24:02 2019-10-28 18:25:14 t 1 1 140101 619 0.00 2019-10-28 18:24:13 2019-10-28 18:26:37 t 1 1 140103 562 0.00 2019-10-28 18:27:41 2019-10-28 18:28:51 t 1 1 140105 562 0.00 2019-10-28 18:29:38 2019-10-28 18:30:12 t 1 1 140109 522 0.00 2019-10-28 18:31:15 2019-10-28 18:31:51 t 1 1 140110 562 0.00 2019-10-28 18:32:00 2019-10-28 18:32:30 t 1 1 140114 522 0.00 2019-10-28 18:32:56 2019-10-28 18:34:14 t 1 1 140116 522 0.00 2019-10-28 18:34:34 2019-10-28 18:34:58 t 1 1 140121 619 0.00 2019-10-28 18:35:00 2019-10-28 18:37:27 t 1 1 140125 522 0.00 2019-10-28 18:38:01 2019-10-28 18:38:41 t 1 1 140129 562 0.00 2019-10-28 18:39:41 2019-10-28 18:39:53 t 1 1 140131 522 0.00 2019-10-28 18:41:11 2019-10-28 18:41:43 t 1 1 140139 220 0.00 2019-10-28 18:39:47 2019-10-28 18:44:37 t 1 1 68551 131 0.00 2018-07-05 12:37:24 2018-07-05 12:39:10 t 1 1 140142 617 0.00 2019-10-28 18:42:45 2019-10-28 18:45:40 t 1 1 140143 562 0.00 2019-10-28 18:42:22 2019-10-28 18:45:59 t 1 1 140146 562 0.00 2019-10-28 18:47:45 2019-10-28 18:48:31 t 1 1 140150 522 0.00 2019-10-28 18:49:10 2019-10-28 18:49:45 t 1 1 140153 562 0.00 2019-10-28 18:48:40 2019-10-28 18:50:14 t 1 1 140157 587 0.00 2019-10-28 18:45:12 2019-10-28 18:52:48 t 1 1 140160 522 0.00 2019-10-28 18:52:54 2019-10-28 18:54:14 t 1 1 140161 522 0.00 2019-10-28 18:54:56 2019-10-28 18:54:56 f 1 1 140162 522 0.00 2019-10-28 18:53:54 2019-10-28 18:55:14 t 1 1 140164 522 0.00 2019-10-28 18:54:24 2019-10-28 18:56:14 t 1 1 140167 481 0.00 2019-10-28 17:40:59 2019-10-28 18:57:40 t 1 1 140171 522 0.00 2019-10-28 18:59:45 2019-10-28 19:00:29 t 1 1 140172 522 0.00 2019-10-28 19:00:56 2019-10-28 19:01:36 t 1 1 140174 522 0.00 2019-10-28 19:02:56 2019-10-28 19:03:35 t 1 1 139897 528 0.00 2019-10-28 16:15:22 2019-10-28 16:15:25 t 1 1 139899 327 0.00 2019-10-28 16:16:38 2019-10-28 16:17:06 t 1 1 139901 220 0.00 2019-10-28 16:07:51 2019-10-28 16:17:49 t 1 1 139903 528 0.00 2019-10-28 16:17:45 2019-10-28 16:18:08 t 1 1 139906 220 0.00 2019-10-28 16:18:58 2019-10-28 16:21:18 t 1 2 139908 570 0.00 2019-10-28 16:17:36 2019-10-28 16:22:17 t 1 1 139910 327 0.00 2019-10-28 16:22:12 2019-10-28 16:23:46 t 1 1 139911 528 0.00 2019-10-28 16:24:08 2019-10-28 16:24:11 t 1 1 139917 220 0.00 2019-10-28 16:18:23 2019-10-28 16:28:19 t 1 1 139921 488 0.00 2019-10-28 16:24:50 2019-10-28 16:30:46 t 1 1 139925 327 0.00 2019-10-28 16:33:44 2019-10-28 16:34:16 t 1 1 139931 528 0.00 2019-10-28 16:35:32 2019-10-28 16:35:37 t 1 1 139932 220 0.00 2019-10-28 16:35:27 2019-10-28 16:36:00 t 1 1 139933 220 0.00 2019-10-28 16:35:59 2019-10-28 16:36:33 t 1 1 139936 488 0.00 2019-10-28 16:36:35 2019-10-28 16:38:03 t 1 1 139937 220 0.00 2019-10-28 16:37:46 2019-10-28 16:38:24 t 1 1 139944 220 0.00 2019-10-28 16:39:15 2019-10-28 16:39:48 t 1 1 139948 220 0.00 2019-10-28 16:40:22 2019-10-28 16:40:56 t 1 1 139952 220 0.00 2019-10-28 16:43:34 2019-10-28 16:44:11 t 1 1 139956 619 0.00 2019-10-28 16:43:37 2019-10-28 16:47:30 t 1 1 139957 220 0.00 2019-10-28 16:44:11 2019-10-28 16:47:37 t 1 1 139958 220 0.00 2019-10-28 16:47:37 2019-10-28 16:47:52 t 1 1 139960 597 0.00 2019-10-28 16:40:01 2019-10-28 16:48:11 t 1 1 139963 220 0.00 2019-10-28 16:48:26 2019-10-28 16:48:46 t 1 1 139967 220 0.00 2019-10-28 16:49:21 2019-10-28 16:49:26 t 1 1 139976 220 0.00 2019-10-28 16:47:44 2019-10-28 16:52:07 t 1 2 139981 220 0.00 2019-10-28 16:53:10 2019-10-28 16:53:20 t 1 1 139984 522 0.00 2019-10-28 16:53:10 2019-10-28 16:54:33 t 1 1 139987 528 0.00 2019-10-28 16:55:27 2019-10-28 16:55:51 t 1 1 139990 220 0.00 2019-10-28 16:56:06 2019-10-28 16:56:11 t 1 1 139994 456 0.00 2019-10-28 16:43:17 2019-10-28 16:57:13 t 1 1 139995 220 0.00 2019-10-28 16:56:45 2019-10-28 16:57:22 t 1 1 140010 485 0.00 2019-10-28 16:52:59 2019-10-28 17:00:50 t 1 1 140011 220 0.00 2019-10-28 17:00:42 2019-10-28 17:01:12 t 1 1 68411 131 0.00 2018-07-03 11:57:23 2018-07-03 11:57:23 f 1 1 140012 220 0.00 2019-10-28 17:01:12 2019-10-28 17:01:17 t 1 1 140015 220 0.00 2019-10-28 17:01:52 2019-10-28 17:02:26 t 1 1 140019 522 0.00 2019-10-28 17:01:47 2019-10-28 17:03:14 t 1 1 140021 220 0.00 2019-10-28 17:03:01 2019-10-28 17:03:37 t 1 1 140022 220 0.00 2019-10-28 17:03:37 2019-10-28 17:04:17 t 1 1 140023 220 0.00 2019-10-28 17:04:17 2019-10-28 17:04:31 t 1 1 140025 220 0.00 2019-10-28 17:04:30 2019-10-28 17:05:45 t 1 1 140036 220 0.00 2019-10-28 17:07:23 2019-10-28 17:07:50 t 1 1 140037 220 0.00 2019-10-28 17:07:50 2019-10-28 17:07:57 t 1 1 140039 488 0.00 2019-10-28 16:59:32 2019-10-28 17:09:51 t 1 1 140046 562 0.00 2019-10-28 17:09:33 2019-10-28 17:14:56 t 1 1 140047 619 0.00 2019-10-28 17:07:36 2019-10-28 17:15:51 t 1 1 140050 570 0.00 2019-10-28 17:01:27 2019-10-28 17:25:52 t 1 1 140053 327 0.00 2019-10-28 16:59:55 2019-10-28 17:29:46 t 1 1 140058 562 0.00 2019-10-28 17:29:35 2019-10-28 17:34:08 t 1 1 140065 220 0.00 2019-10-28 17:08:54 2019-10-28 17:41:45 t 1 1 140070 528 0.00 2019-10-28 17:11:59 2019-10-28 17:47:47 t 1 1 140071 562 0.00 2019-10-28 17:47:48 2019-10-28 17:49:25 t 1 1 140072 619 0.00 2019-10-28 17:42:31 2019-10-28 17:52:22 t 1 1 68485 131 0.00 2018-07-04 12:27:06 2018-07-04 12:27:06 f 1 1 68488 131 0.00 2018-07-04 12:52:12 2018-07-04 12:52:12 f 1 1 68491 185 0.00 2018-07-04 16:40:29 2018-07-04 16:42:09 t 1 1 140075 562 0.00 2019-10-28 17:49:42 2019-10-28 17:55:10 t 1 1 140076 562 0.00 2019-10-28 17:55:18 2019-10-28 17:55:27 t 1 1 140077 562 0.00 2019-10-28 17:55:32 2019-10-28 17:56:17 t 1 1 140079 562 0.00 2019-10-28 17:58:54 2019-10-28 17:59:21 t 1 1 140081 615 0.00 2019-10-28 17:55:11 2019-10-28 18:02:36 t 1 1 140085 516 0.00 2019-10-28 17:39:31 2019-10-28 18:05:37 t 1 1 140092 416 0.00 2019-10-28 17:10:30 2019-10-28 18:14:24 t 1 1 68512 131 0.00 2018-07-04 20:21:53 2018-07-04 20:23:10 t 1 1 140097 522 0.00 2019-10-28 18:22:03 2019-10-28 18:22:17 t 1 1 140100 585 0.00 2019-10-28 18:10:49 2019-10-28 18:25:43 t 1 1 140106 522 0.00 2019-10-28 18:24:33 2019-10-28 18:30:53 t 1 1 140108 587 0.00 2019-10-28 17:54:44 2019-10-28 18:31:45 t 1 1 140111 599 0.00 2019-10-28 18:00:31 2019-10-28 18:32:41 t 1 1 140113 522 0.00 2019-10-28 18:33:59 2019-10-28 18:34:01 t 1 1 140115 522 0.00 2019-10-28 18:34:09 2019-10-28 18:34:21 t 1 1 68550 131 0.00 2018-07-05 12:35:50 2018-07-05 12:37:10 t 1 1 68552 131 0.00 2018-07-05 12:42:49 2018-07-05 12:44:10 t 1 1 140122 522 0.00 2019-10-28 18:37:07 2019-10-28 18:37:34 t 1 1 140123 562 0.00 2019-10-28 18:34:51 2019-10-28 18:38:22 t 1 1 140128 220 0.00 2019-10-28 18:30:59 2019-10-28 18:39:42 t 1 1 140132 562 0.00 2019-10-28 18:41:24 2019-10-28 18:41:53 t 1 1 140133 361 0.00 2019-10-28 18:27:55 2019-10-28 18:42:13 t 1 2 140136 619 0.00 2019-10-28 18:42:18 2019-10-28 18:43:40 t 1 1 140137 522 0.00 2019-10-28 18:43:13 2019-10-28 18:44:14 t 1 1 140140 587 0.00 2019-10-28 18:36:20 2019-10-28 18:44:51 t 1 1 140148 522 0.00 2019-10-28 18:44:09 2019-10-28 18:48:43 t 1 1 140149 522 0.00 2019-10-28 18:48:51 2019-10-28 18:49:02 t 1 1 140151 422 0.00 2019-10-28 18:05:48 2019-10-28 18:49:52 t 1 1 140154 522 0.00 2019-10-28 18:50:52 2019-10-28 18:51:24 t 1 1 140155 522 0.00 2019-10-28 18:50:19 2019-10-28 18:52:14 t 1 1 140158 599 0.00 2019-10-28 18:48:42 2019-10-28 18:53:06 t 1 1 140165 416 0.00 2019-10-28 18:14:24 2019-10-28 18:57:03 t 1 1 140168 522 0.00 2019-10-28 18:56:59 2019-10-28 18:57:48 t 1 1 140175 587 0.00 2019-10-28 18:52:48 2019-10-28 19:03:45 t 1 1 140182 562 0.00 2019-10-28 19:07:56 2019-10-28 19:08:11 t 1 1 140184 585 0.00 2019-10-28 19:07:08 2019-10-28 19:09:36 t 1 1 140189 587 0.00 2019-10-28 19:03:45 2019-10-28 19:10:31 t 1 1 140190 619 0.00 2019-10-28 19:06:12 2019-10-28 19:10:46 t 1 1 140195 554 0.00 2019-10-28 18:38:55 2019-10-28 19:12:22 t 1 1 140196 522 0.00 2019-10-28 19:11:34 2019-10-28 19:13:32 t 1 1 140197 587 0.00 2019-10-28 19:10:44 2019-10-28 19:14:34 t 1 1 140200 522 0.00 2019-10-28 19:16:31 2019-10-28 19:17:04 t 1 1 140208 522 0.00 2019-10-28 19:18:18 2019-10-28 19:18:45 t 1 1 140209 522 0.00 2019-10-28 19:19:16 2019-10-28 19:19:36 t 1 1 140210 591 0.00 2019-10-28 19:10:02 2019-10-28 19:21:57 t 1 1 140212 619 0.00 2019-10-28 19:23:25 2019-10-28 19:24:44 t 1 1 140213 520 0.00 2019-10-28 19:15:20 2019-10-28 19:25:10 t 1 1 140217 613 0.00 2019-10-28 19:29:51 2019-10-28 19:30:56 t 1 1 140228 578 0.00 2019-10-28 18:23:47 2019-10-28 19:36:34 t 1 1 140230 327 0.00 2019-10-28 19:35:05 2019-10-28 19:37:20 t 1 1 140055 615 0.00 2019-10-28 17:26:34 2019-10-28 17:31:29 t 1 1 140056 554 0.00 2019-10-28 17:17:20 2019-10-28 17:33:08 t 1 1 140057 412 0.00 2019-10-28 17:30:33 2019-10-28 17:33:39 t 1 1 140059 485 0.00 2019-10-28 17:30:37 2019-10-28 17:34:42 t 1 1 140060 619 0.00 2019-10-28 17:29:30 2019-10-28 17:35:30 t 1 1 140062 488 0.00 2019-10-28 17:29:00 2019-10-28 17:39:49 t 1 1 140066 570 0.00 2019-10-28 17:39:45 2019-10-28 17:41:49 t 1 1 140067 562 0.00 2019-10-28 17:43:15 2019-10-28 17:44:42 t 1 1 140068 562 0.00 2019-10-28 17:45:04 2019-10-28 17:47:02 t 1 1 140073 220 0.00 2019-10-28 17:48:17 2019-10-28 17:52:40 t 1 2 140080 562 0.00 2019-10-28 18:01:27 2019-10-28 18:01:51 t 1 1 140084 578 0.00 2019-10-28 17:35:57 2019-10-28 18:05:14 t 1 1 140086 562 0.00 2019-10-28 18:03:53 2019-10-28 18:06:10 t 1 1 140087 595 0.00 2019-10-28 18:05:47 2019-10-28 18:07:08 t 1 1 140088 562 0.00 2019-10-28 18:06:25 2019-10-28 18:07:59 t 1 1 140089 562 0.00 2019-10-28 18:08:38 2019-10-28 18:09:46 t 1 1 140093 597 0.00 2019-10-28 18:13:31 2019-10-28 18:15:03 t 1 1 140095 554 0.00 2019-10-28 17:33:12 2019-10-28 18:21:45 t 1 1 140096 522 0.00 2019-10-28 18:20:24 2019-10-28 18:21:58 t 1 1 140098 522 0.00 2019-10-28 18:22:57 2019-10-28 18:24:14 t 1 1 140102 562 0.00 2019-10-28 18:17:36 2019-10-28 18:27:29 t 1 1 140104 220 0.00 2019-10-28 18:21:21 2019-10-28 18:30:10 t 1 1 140107 522 0.00 2019-10-28 18:31:01 2019-10-28 18:31:03 t 1 1 140112 599 0.00 2019-10-28 18:32:41 2019-10-28 18:34:00 t 1 1 140117 619 0.00 2019-10-28 18:33:04 2019-10-28 18:35:00 t 1 1 140118 587 0.00 2019-10-28 18:31:45 2019-10-28 18:36:20 t 1 1 140119 615 0.00 2019-10-28 18:05:33 2019-10-28 18:36:32 t 1 1 140120 522 0.00 2019-10-28 18:35:59 2019-10-28 18:37:14 t 1 1 140124 585 0.00 2019-10-28 18:36:23 2019-10-28 18:38:36 t 1 1 140126 554 0.00 2019-10-28 18:21:50 2019-10-28 18:38:51 t 1 1 140127 522 0.00 2019-10-28 18:38:46 2019-10-28 18:39:29 t 1 1 140130 562 0.00 2019-10-28 18:40:11 2019-10-28 18:40:45 t 1 1 140134 522 0.00 2019-10-28 18:40:03 2019-10-28 18:42:14 t 1 1 140135 522 0.00 2019-10-28 18:42:05 2019-10-28 18:43:14 t 1 1 68723 131 0.00 2018-07-08 11:41:15 2018-07-08 11:42:16 t 1 1 140138 591 0.00 2019-10-28 18:11:05 2019-10-28 18:44:36 t 1 1 140141 220 0.00 2019-10-28 18:00:33 2019-10-28 18:44:57 t 1 2 140144 562 0.00 2019-10-28 18:46:54 2019-10-28 18:47:34 t 1 1 140145 617 0.00 2019-10-28 18:45:40 2019-10-28 18:48:11 t 1 1 140147 599 0.00 2019-10-28 18:34:00 2019-10-28 18:48:42 t 1 1 140152 522 0.00 2019-10-28 18:49:53 2019-10-28 18:50:07 t 1 1 140156 520 0.00 2019-10-28 18:47:10 2019-10-28 18:52:45 t 1 1 140159 522 0.00 2019-10-28 18:51:46 2019-10-28 18:53:14 t 1 1 68750 131 0.00 2018-07-08 23:28:00 2018-07-08 23:29:16 t 1 1 140163 562 0.00 2019-10-28 18:55:34 2019-10-28 18:56:01 t 1 1 140166 522 0.00 2019-10-28 18:55:57 2019-10-28 18:57:14 t 1 1 68756 131 0.00 2018-07-09 10:15:04 2018-07-09 10:16:26 t 1 1 68757 131 0.00 2018-07-09 10:16:27 2018-07-09 10:17:58 t 1 1 140169 522 0.00 2019-10-28 18:57:58 2019-10-28 18:58:48 t 1 1 140170 522 0.00 2019-10-28 18:59:00 2019-10-28 18:59:12 t 1 1 140173 522 0.00 2019-10-28 19:01:41 2019-10-28 19:01:53 t 1 1 140176 522 0.00 2019-10-28 19:03:46 2019-10-28 19:04:45 t 1 1 140180 522 0.00 2019-10-28 19:07:14 2019-10-28 19:07:14 f 1 1 140183 522 0.00 2019-10-28 19:06:33 2019-10-28 19:08:14 t 1 1 140185 522 0.00 2019-10-28 19:09:11 2019-10-28 19:09:37 t 1 1 140187 522 0.00 2019-10-28 19:08:14 2019-10-28 19:10:14 t 1 1 140192 581 0.00 2019-10-28 19:07:15 2019-10-28 19:11:33 t 1 1 140193 220 0.00 2019-10-28 19:10:40 2019-10-28 19:12:07 t 1 1 140198 522 0.00 2019-10-28 19:14:33 2019-10-28 19:15:06 t 1 1 140202 562 0.00 2019-10-28 19:17:20 2019-10-28 19:17:36 t 1 1 140205 522 0.00 2019-10-28 19:17:45 2019-10-28 19:18:10 t 1 1 140206 585 0.00 2019-10-28 19:09:35 2019-10-28 19:18:28 t 1 1 140211 220 0.00 2019-10-28 19:22:36 2019-10-28 19:23:39 t 1 1 140214 562 0.00 2019-10-28 19:28:07 2019-10-28 19:28:19 t 1 1 140215 585 0.00 2019-10-28 19:18:27 2019-10-28 19:28:29 t 1 1 140216 619 0.00 2019-10-28 19:25:21 2019-10-28 19:30:19 t 1 1 140220 220 0.00 2019-10-28 19:33:05 2019-10-28 19:33:13 t 1 1 140222 570 0.00 2019-10-28 18:07:42 2019-10-28 19:33:47 t 1 1 140223 554 0.00 2019-10-28 19:12:30 2019-10-28 19:33:58 t 1 1 140224 562 0.00 2019-10-28 19:35:00 2019-10-28 19:35:20 t 1 1 140226 522 0.00 2019-10-28 19:19:44 2019-10-28 19:36:02 t 1 1 140227 587 0.00 2019-10-28 19:36:12 2019-10-28 19:36:19 t 1 1 140233 220 0.00 2019-10-28 19:40:03 2019-10-28 19:40:11 t 1 1 140238 566 0.00 2019-10-28 19:34:50 2019-10-28 19:43:38 t 1 1 140240 538 0.00 2019-10-28 19:16:43 2019-10-28 19:44:31 t 1 1 140245 412 0.00 2019-10-28 17:33:39 2019-10-28 19:49:41 t 1 1 140249 220 0.00 2019-10-28 19:50:33 2019-10-28 19:50:41 t 1 1 140251 327 0.00 2019-10-28 19:46:48 2019-10-28 19:51:39 t 1 1 140260 522 0.00 2019-10-28 19:57:15 2019-10-28 19:57:40 t 1 1 140262 562 0.00 2019-10-28 19:56:23 2019-10-28 19:58:14 t 1 1 140265 522 0.00 2019-10-28 19:58:55 2019-10-28 19:59:20 t 1 1 140266 522 0.00 2019-10-28 19:59:28 2019-10-28 20:00:29 t 1 1 140268 619 0.00 2019-10-28 19:52:57 2019-10-28 20:00:49 t 1 1 140273 430 0.00 2019-10-28 20:01:58 2019-10-28 20:02:35 t 1 1 140275 566 0.00 2019-10-28 19:55:35 2019-10-28 20:02:41 t 1 1 68872 131 0.00 2018-07-11 11:50:27 2018-07-11 11:52:03 t 1 1 140278 522 0.00 2019-10-28 20:03:23 2019-10-28 20:04:25 t 1 1 140282 430 0.00 2019-10-28 20:07:19 2019-10-28 20:07:26 t 1 1 140284 585 0.00 2019-10-28 19:42:07 2019-10-28 20:08:44 t 1 1 140287 585 0.00 2019-10-28 20:10:48 2019-10-28 20:11:47 t 1 1 140288 220 0.00 2019-10-28 20:08:03 2019-10-28 20:11:54 t 1 1 140295 522 0.00 2019-10-28 20:14:13 2019-10-28 20:15:14 t 1 1 140299 220 0.00 2019-10-28 20:12:44 2019-10-28 20:16:33 t 1 1 140301 522 0.00 2019-10-28 20:16:49 2019-10-28 20:16:50 t 1 1 140303 562 0.00 2019-10-28 20:16:57 2019-10-28 20:17:28 t 1 1 140309 522 0.00 2019-10-28 20:18:31 2019-10-28 20:19:21 t 1 1 140310 522 0.00 2019-10-28 20:19:29 2019-10-28 20:19:52 t 1 1 140313 522 0.00 2019-10-28 20:20:00 2019-10-28 20:20:56 t 1 1 140320 522 0.00 2019-10-28 20:24:12 2019-10-28 20:24:12 f 1 1 140322 327 0.00 2019-10-28 20:23:51 2019-10-28 20:24:23 t 1 1 140323 556 0.00 2019-10-28 13:03:17 2019-10-28 20:24:57 t 1 1 140324 522 0.00 2019-10-28 20:23:59 2019-10-28 20:25:14 t 1 1 140325 566 0.00 2019-10-28 20:17:01 2019-10-28 20:28:08 t 1 1 140327 597 0.00 2019-10-28 20:28:07 2019-10-28 20:30:52 t 1 1 140331 570 0.00 2019-10-28 20:22:23 2019-10-28 20:34:04 t 1 1 140335 619 0.00 2019-10-28 20:36:43 2019-10-28 20:38:31 t 1 1 140336 621 0.00 2019-10-28 20:24:59 2019-10-28 20:39:18 t 1 1 140177 522 0.00 2019-10-28 19:04:50 2019-10-28 19:05:03 t 1 1 140178 562 0.00 2019-10-28 19:06:13 2019-10-28 19:06:43 t 1 1 140179 585 0.00 2019-10-28 18:47:18 2019-10-28 19:07:08 t 1 1 140181 522 0.00 2019-10-28 19:06:06 2019-10-28 19:07:14 t 1 1 140186 591 0.00 2019-10-28 18:53:43 2019-10-28 19:10:02 t 1 1 140188 522 0.00 2019-10-28 19:09:50 2019-10-28 19:10:28 t 1 1 140191 518 0.00 2019-10-28 18:56:00 2019-10-28 19:11:05 t 1 2 140194 522 0.00 2019-10-28 19:11:12 2019-10-28 19:12:14 t 1 1 140199 538 0.00 2019-10-28 16:26:22 2019-10-28 19:15:17 t 1 1 140201 522 0.00 2019-10-28 19:15:33 2019-10-28 19:17:14 t 1 1 140203 522 0.00 2019-10-28 19:17:12 2019-10-28 19:17:37 t 1 1 140204 587 0.00 2019-10-28 19:14:47 2019-10-28 19:17:52 t 1 1 140207 416 0.00 2019-10-28 18:57:03 2019-10-28 19:18:42 t 1 1 140218 587 0.00 2019-10-28 19:29:26 2019-10-28 19:31:08 t 1 1 140219 416 0.00 2019-10-28 19:17:46 2019-10-28 19:33:12 t 1 1 140221 587 0.00 2019-10-28 19:31:21 2019-10-28 19:33:15 t 1 1 140225 587 0.00 2019-10-28 19:33:32 2019-10-28 19:35:40 t 1 1 140229 587 0.00 2019-10-28 19:36:25 2019-10-28 19:37:10 t 1 1 140232 585 0.00 2019-10-28 19:28:28 2019-10-28 19:39:01 t 1 1 140235 522 0.00 2019-10-28 19:36:02 2019-10-28 19:41:58 t 1 1 140236 220 0.00 2019-10-28 19:28:28 2019-10-28 19:42:51 t 1 2 140237 522 0.00 2019-10-28 19:42:11 2019-10-28 19:43:14 t 1 1 140241 528 0.00 2019-10-28 18:43:22 2019-10-28 19:44:34 t 1 1 140244 220 0.00 2019-10-28 19:30:39 2019-10-28 19:46:39 t 1 2 140246 587 0.00 2019-10-28 19:39:34 2019-10-28 19:49:48 t 1 1 140252 562 0.00 2019-10-28 19:51:07 2019-10-28 19:51:40 t 1 1 68688 131 0.00 2018-07-07 14:22:52 2018-07-07 14:24:15 t 1 1 140254 220 0.00 2019-10-28 19:44:03 2019-10-28 19:54:28 t 1 2 140255 566 0.00 2019-10-28 19:43:38 2019-10-28 19:55:35 t 1 1 140256 498 0.00 2019-10-28 19:41:09 2019-10-28 19:56:14 t 1 2 140257 522 0.00 2019-10-28 19:43:57 2019-10-28 19:57:07 t 1 1 140271 522 0.00 2019-10-28 20:01:22 2019-10-28 20:01:49 t 1 1 140276 587 0.00 2019-10-28 19:59:28 2019-10-28 20:03:21 t 1 1 140281 562 0.00 2019-10-28 20:06:58 2019-10-28 20:07:15 t 1 1 140283 430 0.00 2019-10-28 20:07:46 2019-10-28 20:08:31 t 1 1 140290 522 0.00 2019-10-28 20:04:47 2019-10-28 20:12:12 t 1 1 140292 587 0.00 2019-10-28 20:06:07 2019-10-28 20:13:48 t 1 1 140293 516 0.00 2019-10-28 20:11:50 2019-10-28 20:14:06 t 1 1 140294 327 0.00 2019-10-28 20:12:11 2019-10-28 20:14:26 t 1 1 140296 585 0.00 2019-10-28 20:11:47 2019-10-28 20:15:25 t 1 1 140298 562 0.00 2019-10-28 20:14:41 2019-10-28 20:15:41 t 1 1 140300 522 0.00 2019-10-28 20:15:37 2019-10-28 20:16:41 t 1 1 140304 522 0.00 2019-10-28 20:17:03 2019-10-28 20:17:34 t 1 1 140306 522 0.00 2019-10-28 20:17:40 2019-10-28 20:17:41 t 1 1 140307 522 0.00 2019-10-28 20:17:47 2019-10-28 20:18:17 t 1 1 140308 619 0.00 2019-10-28 20:13:36 2019-10-28 20:18:43 t 1 1 140311 516 0.00 2019-10-28 20:14:05 2019-10-28 20:19:56 t 1 1 140315 570 0.00 2019-10-28 19:33:47 2019-10-28 20:21:33 t 1 1 140317 522 0.00 2019-10-28 20:21:41 2019-10-28 20:22:23 t 1 1 140318 220 0.00 2019-10-28 20:22:24 2019-10-28 20:22:43 t 1 1 140319 522 0.00 2019-10-28 20:22:44 2019-10-28 20:23:48 t 1 1 140330 220 0.00 2019-10-28 20:32:54 2019-10-28 20:33:56 t 1 1 140332 327 0.00 2019-10-28 20:34:21 2019-10-28 20:34:54 t 1 1 140333 587 0.00 2019-10-28 20:14:06 2019-10-28 20:35:18 t 1 1 140337 585 0.00 2019-10-28 20:26:32 2019-10-28 20:40:01 t 1 1 140339 562 0.00 2019-10-28 20:39:11 2019-10-28 20:40:36 t 1 1 140344 587 0.00 2019-10-28 20:35:52 2019-10-28 20:44:51 t 1 1 140346 512 0.00 2019-10-28 20:32:44 2019-10-28 20:45:27 t 1 1 140349 591 0.00 2019-10-28 19:27:14 2019-10-28 20:47:14 t 1 1 140355 220 0.00 2019-10-28 20:57:16 2019-10-28 20:57:29 t 1 1 140357 528 0.00 2019-10-28 20:59:24 2019-10-28 20:59:47 t 1 1 140358 528 0.00 2019-10-28 21:01:24 2019-10-28 21:01:54 t 1 1 140360 528 0.00 2019-10-28 21:03:00 2019-10-28 21:03:14 t 1 1 140363 528 0.00 2019-10-28 21:05:24 2019-10-28 21:05:35 t 1 1 140367 522 0.00 2019-10-28 21:06:58 2019-10-28 21:07:38 t 1 1 140369 512 0.00 2019-10-28 20:45:27 2019-10-28 21:07:49 t 1 1 140372 327 0.00 2019-10-28 21:06:12 2019-10-28 21:09:13 t 1 1 140374 566 0.00 2019-10-28 21:04:13 2019-10-28 21:10:31 t 1 1 140375 522 0.00 2019-10-28 21:10:35 2019-10-28 21:10:48 t 1 1 140382 416 0.00 2019-10-28 19:33:12 2019-10-28 21:13:08 t 1 1 140384 325 0.00 2019-10-28 21:13:16 2019-10-28 21:13:16 f 1 2 140386 325 0.00 2019-10-28 21:13:42 2019-10-28 21:13:42 f 1 2 140390 522 0.00 2019-10-28 21:13:52 2019-10-28 21:14:20 t 1 1 140394 325 0.00 2019-10-28 21:16:38 2019-10-28 21:16:38 f 1 2 140396 522 0.00 2019-10-28 21:16:22 2019-10-28 21:16:50 t 1 1 140397 528 0.00 2019-10-28 21:16:38 2019-10-28 21:17:09 t 1 1 140400 522 0.00 2019-10-28 21:17:02 2019-10-28 21:17:47 t 1 1 140401 220 0.00 2019-10-28 21:08:16 2019-10-28 21:18:16 t 1 1 140406 581 0.00 2019-10-28 20:38:26 2019-10-28 21:19:29 t 1 1 140407 522 0.00 2019-10-28 21:19:45 2019-10-28 21:19:56 t 1 1 140408 327 0.00 2019-10-28 21:19:09 2019-10-28 21:20:00 t 1 1 140411 538 0.00 2019-10-28 21:15:04 2019-10-28 21:22:09 t 1 1 140415 522 0.00 2019-10-28 21:23:04 2019-10-28 21:24:14 t 1 1 68850 131 0.00 2018-07-11 01:41:46 2018-07-11 01:43:03 t 1 1 140416 220 0.00 2019-10-28 21:18:50 2019-10-28 21:25:39 t 1 1 140423 566 0.00 2019-10-28 21:19:01 2019-10-28 21:28:14 t 1 1 140427 220 0.00 2019-10-28 21:26:13 2019-10-28 21:28:54 t 1 1 140429 220 0.00 2019-10-28 21:28:53 2019-10-28 21:29:26 t 1 1 140432 585 0.00 2019-10-28 20:42:22 2019-10-28 21:32:58 t 1 1 140434 597 0.00 2019-10-28 21:25:36 2019-10-28 21:34:08 t 1 1 68863 131 0.00 2018-07-11 10:09:09 2018-07-11 10:11:03 t 1 1 140436 325 0.00 2019-10-28 21:34:44 2019-10-28 21:34:44 f 1 2 140437 325 0.00 2019-10-28 21:37:30 2019-10-28 21:37:30 f 1 2 140439 220 0.00 2019-10-28 21:30:19 2019-10-28 21:39:23 t 1 1 140441 220 0.00 2019-10-28 21:39:23 2019-10-28 21:39:30 t 1 1 140443 325 0.00 2019-10-28 21:40:57 2019-10-28 21:40:57 f 1 2 140445 325 0.00 2019-10-28 21:41:17 2019-10-28 21:41:17 f 1 2 140447 566 0.00 2019-10-28 21:28:14 2019-10-28 21:42:32 t 1 1 68890 131 0.00 2018-07-11 16:52:10 2018-07-11 16:54:04 t 1 1 140450 520 0.00 2019-10-28 21:39:24 2019-10-28 21:43:21 t 1 1 140452 522 0.00 2019-10-28 21:43:43 2019-10-28 21:44:27 t 1 1 140453 220 0.00 2019-10-28 21:44:25 2019-10-28 21:44:33 t 1 1 140460 522 0.00 2019-10-28 21:46:53 2019-10-28 21:48:14 t 1 1 140462 522 0.00 2019-10-28 21:47:54 2019-10-28 21:49:14 t 1 1 140464 430 0.00 2019-10-28 21:49:16 2019-10-28 21:49:24 t 1 1 140466 522 0.00 2019-10-28 21:49:32 2019-10-28 21:50:09 t 1 1 140470 522 0.00 2019-10-28 21:50:52 2019-10-28 21:50:53 t 1 1 140231 613 0.00 2019-10-28 19:31:32 2019-10-28 19:38:45 t 1 1 140234 613 0.00 2019-10-28 19:38:45 2019-10-28 19:41:42 t 1 1 140239 522 0.00 2019-10-28 19:43:04 2019-10-28 19:44:14 t 1 1 140242 562 0.00 2019-10-28 19:45:27 2019-10-28 19:45:37 t 1 1 140243 613 0.00 2019-10-28 19:41:42 2019-10-28 19:46:01 t 1 1 140247 613 0.00 2019-10-28 19:46:00 2019-10-28 19:50:09 t 1 1 140248 498 0.00 2019-10-28 19:50:38 2019-10-28 19:50:38 f 1 2 140250 613 0.00 2019-10-28 19:50:09 2019-10-28 19:50:54 t 1 1 140253 615 0.00 2019-10-28 19:50:41 2019-10-28 19:53:28 t 1 1 140258 611 0.00 2019-10-28 19:43:21 2019-10-28 19:57:10 t 1 1 140259 587 0.00 2019-10-28 19:51:08 2019-10-28 19:57:16 t 1 1 140261 522 0.00 2019-10-28 19:57:48 2019-10-28 19:58:14 t 1 1 140263 522 0.00 2019-10-28 19:58:22 2019-10-28 19:58:47 t 1 1 140264 587 0.00 2019-10-28 19:57:43 2019-10-28 19:59:14 t 1 1 140267 611 0.00 2019-10-28 19:57:15 2019-10-28 20:00:44 t 1 1 140269 522 0.00 2019-10-28 20:00:37 2019-10-28 20:01:10 t 1 1 140270 220 0.00 2019-10-28 20:01:19 2019-10-28 20:01:33 t 1 1 140272 430 0.00 2019-10-28 19:58:11 2019-10-28 20:01:55 t 1 1 140274 327 0.00 2019-10-28 20:01:35 2019-10-28 20:02:39 t 1 1 140277 522 0.00 2019-10-28 20:02:15 2019-10-28 20:04:14 t 1 1 140279 587 0.00 2019-10-28 20:03:34 2019-10-28 20:05:59 t 1 1 140280 430 0.00 2019-10-28 20:02:42 2019-10-28 20:06:57 t 1 1 140285 430 0.00 2019-10-28 20:08:33 2019-10-28 20:09:06 t 1 1 68700 131 0.00 2018-07-07 21:03:08 2018-07-07 21:04:15 t 1 1 140286 516 0.00 2019-10-28 20:02:37 2019-10-28 20:10:30 t 1 1 140289 220 0.00 2019-10-28 20:11:54 2019-10-28 20:12:09 t 1 1 140291 522 0.00 2019-10-28 20:13:12 2019-10-28 20:13:24 t 1 1 140297 522 0.00 2019-10-28 20:14:58 2019-10-28 20:15:29 t 1 1 140302 566 0.00 2019-10-28 20:02:41 2019-10-28 20:17:01 t 1 1 140305 528 0.00 2019-10-28 20:17:00 2019-10-28 20:17:35 t 1 1 140312 522 0.00 2019-10-28 20:18:23 2019-10-28 20:20:14 t 1 1 140314 562 0.00 2019-10-28 20:19:34 2019-10-28 20:21:02 t 1 1 140316 522 0.00 2019-10-28 20:21:04 2019-10-28 20:21:33 t 1 1 140321 522 0.00 2019-10-28 20:22:35 2019-10-28 20:24:14 t 1 1 140326 562 0.00 2019-10-28 20:24:12 2019-10-28 20:30:50 t 1 1 140328 498 0.00 2019-10-28 19:59:41 2019-10-28 20:31:49 t 1 2 140329 566 0.00 2019-10-28 20:28:08 2019-10-28 20:33:30 t 1 1 140334 562 0.00 2019-10-28 20:34:16 2019-10-28 20:38:29 t 1 1 140342 564 0.00 2019-10-28 14:51:23 2019-10-28 20:41:57 t 1 1 140343 520 0.00 2019-10-28 20:40:30 2019-10-28 20:42:28 t 1 1 140348 619 0.00 2019-10-28 20:43:06 2019-10-28 20:46:41 t 1 1 140350 528 0.00 2019-10-28 20:22:02 2019-10-28 20:53:24 t 1 1 140351 528 0.00 2019-10-28 20:53:46 2019-10-28 20:54:40 t 1 1 140352 566 0.00 2019-10-28 20:41:06 2019-10-28 20:55:15 t 1 1 140356 570 0.00 2019-10-28 20:34:29 2019-10-28 20:58:00 t 1 1 140362 522 0.00 2019-10-28 20:57:31 2019-10-28 21:04:46 t 1 1 140373 522 0.00 2019-10-28 21:08:36 2019-10-28 21:09:17 t 1 1 140376 587 0.00 2019-10-28 21:08:06 2019-10-28 21:10:50 t 1 1 140377 528 0.00 2019-10-28 21:10:28 2019-10-28 21:11:07 t 1 1 140379 522 0.00 2019-10-28 21:11:41 2019-10-28 21:11:54 t 1 1 140380 522 0.00 2019-10-28 21:11:00 2019-10-28 21:12:14 t 1 1 140383 522 0.00 2019-10-28 21:12:06 2019-10-28 21:13:14 t 1 1 140385 331 0.00 2019-10-28 20:58:28 2019-10-28 21:13:21 t 1 1 140388 325 0.00 2019-10-28 21:14:08 2019-10-28 21:14:08 f 1 2 140391 538 0.00 2019-10-28 19:46:17 2019-10-28 21:14:41 t 1 1 140398 522 0.00 2019-10-28 21:15:47 2019-10-28 21:17:14 t 1 1 140404 566 0.00 2019-10-28 21:10:31 2019-10-28 21:19:01 t 1 1 140409 619 0.00 2019-10-28 21:19:16 2019-10-28 21:20:26 t 1 1 140412 522 0.00 2019-10-28 21:21:57 2019-10-28 21:23:14 t 1 1 140417 220 0.00 2019-10-28 21:25:39 2019-10-28 21:26:14 t 1 1 140420 562 0.00 2019-10-28 21:22:07 2019-10-28 21:27:22 t 1 1 140425 528 0.00 2019-10-28 21:22:28 2019-10-28 21:28:28 t 1 1 140426 562 0.00 2019-10-28 21:27:22 2019-10-28 21:28:51 t 1 1 140430 613 0.00 2019-10-28 21:27:48 2019-10-28 21:29:29 t 1 1 140435 599 0.00 2019-10-28 21:27:55 2019-10-28 21:34:28 t 1 1 140438 325 0.00 2019-10-28 21:39:12 2019-10-28 21:39:12 f 1 2 140454 522 0.00 2019-10-28 21:44:32 2019-10-28 21:44:45 t 1 1 140456 562 0.00 2019-10-28 21:28:49 2019-10-28 21:47:09 t 1 1 140458 430 0.00 2019-10-28 21:30:00 2019-10-28 21:47:29 t 1 1 140467 430 0.00 2019-10-28 21:50:00 2019-10-28 21:50:11 t 1 1 140469 528 0.00 2019-10-28 21:49:02 2019-10-28 21:50:17 t 1 1 140473 430 0.00 2019-10-28 21:52:01 2019-10-28 21:52:44 t 1 1 140480 585 0.00 2019-10-28 21:51:47 2019-10-28 21:54:26 t 1 1 140482 581 0.00 2019-10-28 21:19:29 2019-10-28 21:54:48 t 1 1 140484 581 0.00 2019-10-28 21:54:54 2019-10-28 21:55:13 t 1 1 140486 522 0.00 2019-10-28 21:54:37 2019-10-28 21:55:55 t 1 1 140489 220 0.00 2019-10-28 21:54:54 2019-10-28 21:56:14 t 1 1 140497 585 0.00 2019-10-28 21:56:58 2019-10-28 21:58:29 t 1 1 140499 591 0.00 2019-10-28 21:07:54 2019-10-28 21:58:37 t 1 1 140501 522 0.00 2019-10-28 21:58:42 2019-10-28 21:59:18 t 1 1 140503 522 0.00 2019-10-28 21:59:35 2019-10-28 21:59:58 t 1 1 140504 522 0.00 2019-10-28 22:00:10 2019-10-28 22:00:24 t 1 1 140509 528 0.00 2019-10-28 21:50:16 2019-10-28 22:01:49 t 1 1 140512 566 0.00 2019-10-28 21:53:32 2019-10-28 22:02:50 t 1 1 140515 581 0.00 2019-10-28 22:00:30 2019-10-28 22:03:59 t 1 1 140518 522 0.00 2019-10-28 22:06:09 2019-10-28 22:06:10 t 1 1 140520 522 0.00 2019-10-28 22:06:18 2019-10-28 22:06:31 t 1 1 140523 522 0.00 2019-10-28 22:06:52 2019-10-28 22:07:23 t 1 1 140527 220 0.00 2019-10-28 21:58:58 2019-10-28 22:08:39 t 1 2 140529 595 0.00 2019-10-28 22:05:01 2019-10-28 22:09:34 t 1 1 140532 522 0.00 2019-10-28 22:10:11 2019-10-28 22:11:53 t 1 1 140533 522 0.00 2019-10-28 22:12:36 2019-10-28 22:12:36 f 1 1 68911 131 0.00 2018-07-12 09:43:18 2018-07-12 09:45:06 t 1 1 140540 574 0.00 2019-10-28 21:45:33 2019-10-28 22:14:33 t 1 1 140542 220 0.00 2019-10-28 21:57:10 2019-10-28 22:14:49 t 1 2 140545 528 0.00 2019-10-28 22:08:59 2019-10-28 22:16:12 t 1 1 140548 522 0.00 2019-10-28 22:17:30 2019-10-28 22:17:41 t 1 1 140551 430 0.00 2019-10-28 22:00:32 2019-10-28 22:18:02 t 1 1 140552 528 0.00 2019-10-28 22:17:52 2019-10-28 22:18:18 t 1 1 140554 522 0.00 2019-10-28 22:19:40 2019-10-28 22:19:54 t 1 1 140559 522 0.00 2019-10-28 22:20:07 2019-10-28 22:20:26 t 1 1 140561 522 0.00 2019-10-28 22:21:10 2019-10-28 22:21:23 t 1 1 140562 522 0.00 2019-10-28 22:21:56 2019-10-28 22:21:57 t 1 1 140563 522 0.00 2019-10-28 22:22:52 2019-10-28 22:23:04 t 1 1 140565 522 0.00 2019-10-28 22:23:38 2019-10-28 22:23:50 t 1 1 140568 564 0.00 2019-10-28 20:41:57 2019-10-28 22:24:48 t 1 1 140571 430 0.00 2019-10-28 22:18:02 2019-10-28 22:25:08 t 1 1 140338 520 0.00 2019-10-28 20:32:49 2019-10-28 20:40:30 t 1 1 140340 566 0.00 2019-10-28 20:33:30 2019-10-28 20:41:06 t 1 1 140341 220 0.00 2019-10-28 20:41:15 2019-10-28 20:41:25 t 1 1 140345 556 0.00 2019-10-28 20:24:57 2019-10-28 20:44:56 t 1 1 140347 327 0.00 2019-10-28 20:44:51 2019-10-28 20:45:35 t 1 1 140353 327 0.00 2019-10-28 20:55:37 2019-10-28 20:56:17 t 1 1 140354 220 0.00 2019-10-28 20:51:12 2019-10-28 20:57:16 t 1 1 140359 587 0.00 2019-10-28 20:44:51 2019-10-28 21:03:09 t 1 1 140361 566 0.00 2019-10-28 20:55:15 2019-10-28 21:04:13 t 1 1 140364 570 0.00 2019-10-28 20:58:41 2019-10-28 21:05:53 t 1 1 140365 522 0.00 2019-10-28 21:04:46 2019-10-28 21:06:36 t 1 1 140366 587 0.00 2019-10-28 21:03:09 2019-10-28 21:07:35 t 1 1 140368 220 0.00 2019-10-28 20:57:46 2019-10-28 21:07:46 t 1 1 140370 220 0.00 2019-10-28 21:07:46 2019-10-28 21:08:16 t 1 1 140371 619 0.00 2019-10-28 21:05:44 2019-10-28 21:09:13 t 1 1 68978 131 0.00 2018-07-13 18:28:12 2018-07-13 18:30:09 t 1 1 140378 522 0.00 2019-10-28 21:09:40 2019-10-28 21:11:14 t 1 1 140381 528 0.00 2019-10-28 21:12:40 2019-10-28 21:13:06 t 1 1 140387 325 0.00 2019-10-28 21:13:58 2019-10-28 21:13:58 f 1 2 140389 522 0.00 2019-10-28 21:12:51 2019-10-28 21:14:14 t 1 1 140392 522 0.00 2019-10-28 21:14:47 2019-10-28 21:15:00 t 1 1 140393 325 0.00 2019-10-28 21:16:05 2019-10-28 21:16:05 f 1 2 140395 325 0.00 2019-10-28 21:16:49 2019-10-28 21:16:49 f 1 2 140399 528 0.00 2019-10-28 21:15:00 2019-10-28 21:17:14 t 1 1 140402 220 0.00 2019-10-28 21:18:16 2019-10-28 21:18:48 t 1 1 140403 325 0.00 2019-10-28 21:18:51 2019-10-28 21:18:51 f 1 2 140405 522 0.00 2019-10-28 21:18:48 2019-10-28 21:19:27 t 1 1 140410 522 0.00 2019-10-28 21:20:56 2019-10-28 21:21:35 t 1 1 140413 516 0.00 2019-10-28 21:00:44 2019-10-28 21:23:23 t 1 1 140414 522 0.00 2019-10-28 21:24:00 2019-10-28 21:24:13 t 1 1 140418 522 0.00 2019-10-28 21:24:25 2019-10-28 21:26:14 t 1 1 140419 522 0.00 2019-10-28 21:26:06 2019-10-28 21:27:14 t 1 1 140421 615 0.00 2019-10-28 20:51:13 2019-10-28 21:28:08 t 1 1 140422 331 0.00 2019-10-28 21:13:44 2019-10-28 21:28:09 t 1 1 140424 522 0.00 2019-10-28 21:27:07 2019-10-28 21:28:14 t 1 1 140428 522 0.00 2019-10-28 21:28:09 2019-10-28 21:29:14 t 1 1 140431 327 0.00 2019-10-28 21:29:58 2019-10-28 21:31:00 t 1 1 140433 619 0.00 2019-10-28 21:32:54 2019-10-28 21:34:04 t 1 1 140440 520 0.00 2019-10-28 21:21:19 2019-10-28 21:39:25 t 1 1 140442 325 0.00 2019-10-28 21:39:37 2019-10-28 21:39:37 f 1 2 140444 522 0.00 2019-10-28 21:28:49 2019-10-28 21:41:09 t 1 1 140446 327 0.00 2019-10-28 21:40:56 2019-10-28 21:42:00 t 1 1 140448 522 0.00 2019-10-28 21:41:09 2019-10-28 21:42:43 t 1 1 140449 522 0.00 2019-10-28 21:42:55 2019-10-28 21:43:08 t 1 1 140451 220 0.00 2019-10-28 21:39:57 2019-10-28 21:44:25 t 1 1 140455 585 0.00 2019-10-28 21:41:12 2019-10-28 21:46:08 t 1 1 140457 522 0.00 2019-10-28 21:45:46 2019-10-28 21:47:14 t 1 1 140459 528 0.00 2019-10-28 21:28:28 2019-10-28 21:48:06 t 1 1 140461 430 0.00 2019-10-28 21:47:29 2019-10-28 21:49:11 t 1 1 140463 570 0.00 2019-10-28 21:46:46 2019-10-28 21:49:22 t 1 1 140465 220 0.00 2019-10-28 21:43:26 2019-10-28 21:49:49 t 1 2 140468 522 0.00 2019-10-28 21:48:56 2019-10-28 21:50:14 t 1 1 140474 522 0.00 2019-10-28 21:51:57 2019-10-28 21:53:14 t 1 1 140476 566 0.00 2019-10-28 21:42:32 2019-10-28 21:53:32 t 1 1 140478 430 0.00 2019-10-28 21:52:51 2019-10-28 21:54:00 t 1 1 140483 520 0.00 2019-10-28 21:44:30 2019-10-28 21:54:53 t 1 1 140487 522 0.00 2019-10-28 21:56:03 2019-10-28 21:56:04 t 1 1 140491 581 0.00 2019-10-28 21:56:50 2019-10-28 21:57:03 t 1 1 140492 522 0.00 2019-10-28 21:56:59 2019-10-28 21:57:14 t 1 1 140494 331 0.00 2019-10-28 21:28:09 2019-10-28 21:57:30 t 1 1 140505 581 0.00 2019-10-28 21:57:49 2019-10-28 22:00:25 t 1 1 140508 481 0.00 2019-10-28 18:58:35 2019-10-28 22:00:55 t 1 1 140510 522 0.00 2019-10-28 22:02:10 2019-10-28 22:02:23 t 1 1 140514 528 0.00 2019-10-28 22:03:34 2019-10-28 22:03:53 t 1 1 140516 522 0.00 2019-10-28 22:03:05 2019-10-28 22:04:06 t 1 1 140519 528 0.00 2019-10-28 22:05:56 2019-10-28 22:06:16 t 1 1 140525 522 0.00 2019-10-28 22:07:35 2019-10-28 22:08:07 t 1 1 140530 327 0.00 2019-10-28 22:04:39 2019-10-28 22:09:58 t 1 1 140531 589 0.00 2019-10-28 22:09:37 2019-10-28 22:10:45 t 1 1 140535 619 0.00 2019-10-28 22:11:58 2019-10-28 22:13:21 t 1 1 140538 522 0.00 2019-10-28 22:12:28 2019-10-28 22:14:14 t 1 1 140543 522 0.00 2019-10-28 22:15:00 2019-10-28 22:15:38 t 1 1 140544 522 0.00 2019-10-28 22:15:46 2019-10-28 22:15:59 t 1 1 140546 522 0.00 2019-10-28 22:16:07 2019-10-28 22:16:43 t 1 1 140547 522 0.00 2019-10-28 22:16:51 2019-10-28 22:17:18 t 1 1 140555 562 0.00 2019-10-28 22:04:52 2019-10-28 22:19:56 t 1 1 140557 595 0.00 2019-10-28 22:19:59 2019-10-28 22:20:20 t 1 1 140567 522 0.00 2019-10-28 22:24:30 2019-10-28 22:24:43 t 1 1 140573 522 0.00 2019-10-28 22:25:46 2019-10-28 22:25:58 t 1 1 140576 607 0.00 2019-10-28 22:06:41 2019-10-28 22:28:11 t 1 1 140578 220 0.00 2019-10-28 22:28:13 2019-10-28 22:28:28 t 1 1 140581 528 0.00 2019-10-28 22:30:37 2019-10-28 22:30:44 t 1 1 140584 522 0.00 2019-10-28 22:32:21 2019-10-28 22:32:42 t 1 1 140586 595 0.00 2019-10-28 22:29:47 2019-10-28 22:33:01 t 1 1 140587 562 0.00 2019-10-28 22:25:21 2019-10-28 22:34:08 t 1 1 140590 522 0.00 2019-10-28 22:34:48 2019-10-28 22:35:00 t 1 1 140594 514 0.00 2019-10-28 22:23:30 2019-10-28 22:35:47 t 1 1 140601 220 0.00 2019-10-28 22:30:24 2019-10-28 22:38:44 t 1 1 140602 220 0.00 2019-10-28 22:38:43 2019-10-28 22:38:59 t 1 1 140603 528 0.00 2019-10-28 22:38:50 2019-10-28 22:39:12 t 1 1 140605 512 0.00 2019-10-28 22:37:20 2019-10-28 22:39:49 t 1 1 140607 522 0.00 2019-10-28 22:40:02 2019-10-28 22:40:14 t 1 1 140609 422 0.00 2019-10-28 22:39:11 2019-10-28 22:41:19 t 1 1 140613 327 0.00 2019-10-28 22:42:47 2019-10-28 22:43:27 t 1 1 140615 522 0.00 2019-10-28 22:43:57 2019-10-28 22:44:08 t 1 1 140617 528 0.00 2019-10-28 22:45:11 2019-10-28 22:45:37 t 1 1 140618 522 0.00 2019-10-28 22:45:59 2019-10-28 22:46:11 t 1 1 140620 595 0.00 2019-10-28 22:46:28 2019-10-28 22:46:31 t 1 1 140622 528 0.00 2019-10-28 22:46:47 2019-10-28 22:47:12 t 1 1 140627 220 0.00 2019-10-28 22:39:23 2019-10-28 22:49:14 t 1 1 140631 220 0.00 2019-10-28 22:14:13 2019-10-28 22:50:36 t 1 2 140633 528 0.00 2019-10-28 22:50:19 2019-10-28 22:50:48 t 1 1 140636 591 0.00 2019-10-28 22:42:52 2019-10-28 22:52:48 t 1 1 140638 528 0.00 2019-10-28 22:54:02 2019-10-28 22:54:25 t 1 1 140640 522 0.00 2019-10-28 22:55:09 2019-10-28 22:55:22 t 1 1 140641 595 0.00 2019-10-28 22:47:19 2019-10-28 22:56:49 t 1 1 140649 562 0.00 2019-10-28 22:34:48 2019-10-28 23:01:42 t 1 1 140471 619 0.00 2019-10-28 21:48:41 2019-10-28 21:51:31 t 1 1 140472 522 0.00 2019-10-28 21:51:06 2019-10-28 21:52:14 t 1 1 140475 522 0.00 2019-10-28 21:52:59 2019-10-28 21:53:26 t 1 1 140477 597 0.00 2019-10-28 21:46:21 2019-10-28 21:53:50 t 1 1 140479 562 0.00 2019-10-28 21:47:23 2019-10-28 21:54:20 t 1 1 140481 327 0.00 2019-10-28 21:51:55 2019-10-28 21:54:42 t 1 1 140485 581 0.00 2019-10-28 21:55:18 2019-10-28 21:55:51 t 1 1 140488 220 0.00 2019-10-28 21:40:10 2019-10-28 21:56:10 t 1 2 140490 581 0.00 2019-10-28 21:55:57 2019-10-28 21:56:44 t 1 1 140493 522 0.00 2019-10-28 21:56:16 2019-10-28 21:57:16 t 1 1 140495 581 0.00 2019-10-28 21:57:08 2019-10-28 21:57:43 t 1 1 140496 562 0.00 2019-10-28 21:58:03 2019-10-28 21:58:25 t 1 1 140498 522 0.00 2019-10-28 21:58:00 2019-10-28 21:58:35 t 1 1 140500 522 0.00 2019-10-28 21:57:28 2019-10-28 21:59:14 t 1 1 140502 522 0.00 2019-10-28 21:59:26 2019-10-28 21:59:27 t 1 1 140506 520 0.00 2019-10-28 21:57:47 2019-10-28 22:00:28 t 1 1 140507 562 0.00 2019-10-28 22:00:02 2019-10-28 22:00:36 t 1 1 140511 528 0.00 2019-10-28 22:02:06 2019-10-28 22:02:28 t 1 1 140513 562 0.00 2019-10-28 22:03:15 2019-10-28 22:03:24 t 1 1 140517 528 0.00 2019-10-28 22:04:52 2019-10-28 22:05:12 t 1 1 140521 528 0.00 2019-10-28 22:06:32 2019-10-28 22:06:56 t 1 1 140522 220 0.00 2019-10-28 21:44:56 2019-10-28 22:07:14 t 1 1 140524 220 0.00 2019-10-28 22:07:14 2019-10-28 22:07:45 t 1 1 140526 522 0.00 2019-10-28 22:06:44 2019-10-28 22:08:14 t 1 1 140528 522 0.00 2019-10-28 22:09:08 2019-10-28 22:09:19 t 1 1 140534 522 0.00 2019-10-28 22:12:42 2019-10-28 22:12:42 f 1 1 140536 566 0.00 2019-10-28 22:02:50 2019-10-28 22:13:53 t 1 1 140537 566 0.00 2019-10-28 22:13:53 2019-10-28 22:14:11 t 1 1 69008 131 0.00 2018-07-14 11:36:11 2018-07-14 11:38:09 t 1 1 140539 522 0.00 2019-10-28 22:12:15 2019-10-28 22:14:14 t 1 1 140541 595 0.00 2019-10-28 22:14:34 2019-10-28 22:14:42 t 1 1 140549 220 0.00 2019-10-28 22:09:07 2019-10-28 22:17:44 t 1 1 140550 220 0.00 2019-10-28 22:17:44 2019-10-28 22:17:58 t 1 1 140553 522 0.00 2019-10-28 22:18:38 2019-10-28 22:18:50 t 1 1 140556 591 0.00 2019-10-28 21:58:37 2019-10-28 22:20:06 t 1 1 140558 327 0.00 2019-10-28 22:19:22 2019-10-28 22:20:23 t 1 1 140560 595 0.00 2019-10-28 22:20:33 2019-10-28 22:20:52 t 1 1 140564 522 0.00 2019-10-28 22:23:12 2019-10-28 22:23:26 t 1 1 140566 528 0.00 2019-10-28 22:23:29 2019-10-28 22:24:12 t 1 1 69039 131 0.00 2018-07-14 21:00:09 2018-07-14 21:01:09 t 1 1 140569 595 0.00 2019-10-28 22:24:47 2019-10-28 22:24:53 t 1 1 140570 562 0.00 2019-10-28 22:20:54 2019-10-28 22:25:02 t 1 1 140572 512 0.00 2019-10-28 22:10:08 2019-10-28 22:25:11 t 1 1 140574 528 0.00 2019-10-28 22:27:59 2019-10-28 22:28:00 t 1 1 140579 522 0.00 2019-10-28 22:29:42 2019-10-28 22:29:54 t 1 1 140580 528 0.00 2019-10-28 22:30:12 2019-10-28 22:30:24 t 1 1 140582 522 0.00 2019-10-28 22:31:44 2019-10-28 22:31:56 t 1 1 140583 522 0.00 2019-10-28 22:32:03 2019-10-28 22:32:03 t 1 1 140585 327 0.00 2019-10-28 22:30:19 2019-10-28 22:32:56 t 1 1 140592 585 0.00 2019-10-28 22:31:09 2019-10-28 22:35:41 t 1 1 140595 430 0.00 2019-10-28 22:25:08 2019-10-28 22:36:05 t 1 1 140599 522 0.00 2019-10-28 22:37:04 2019-10-28 22:37:40 t 1 1 140600 522 0.00 2019-10-28 22:37:45 2019-10-28 22:37:57 t 1 1 140604 522 0.00 2019-10-28 22:39:01 2019-10-28 22:39:13 t 1 1 140606 508 0.00 2019-10-28 22:33:17 2019-10-28 22:40:04 t 1 2 140608 528 0.00 2019-10-28 22:40:13 2019-10-28 22:40:40 t 1 1 140616 528 0.00 2019-10-28 22:43:46 2019-10-28 22:44:08 t 1 1 140619 595 0.00 2019-10-28 22:36:38 2019-10-28 22:46:20 t 1 1 140621 595 0.00 2019-10-28 22:46:42 2019-10-28 22:47:05 t 1 1 140623 522 0.00 2019-10-28 22:47:05 2019-10-28 22:47:17 t 1 1 140624 522 0.00 2019-10-28 22:47:29 2019-10-28 22:47:51 t 1 1 140626 528 0.00 2019-10-28 22:48:42 2019-10-28 22:49:10 t 1 1 140628 522 0.00 2019-10-28 22:49:08 2019-10-28 22:49:21 t 1 1 140630 522 0.00 2019-10-28 22:49:32 2019-10-28 22:49:54 t 1 1 140632 422 0.00 2019-10-28 22:41:19 2019-10-28 22:50:40 t 1 1 140634 331 0.00 2019-10-28 21:58:35 2019-10-28 22:51:31 t 1 1 140637 619 0.00 2019-10-28 22:50:59 2019-10-28 22:52:50 t 1 1 140639 522 0.00 2019-10-28 22:54:45 2019-10-28 22:54:58 t 1 1 140642 514 0.00 2019-10-28 22:35:47 2019-10-28 22:56:49 t 1 1 140643 564 0.00 2019-10-28 22:24:48 2019-10-28 22:57:00 t 1 1 140646 522 0.00 2019-10-28 22:59:16 2019-10-28 22:59:28 t 1 1 140651 595 0.00 2019-10-28 22:57:58 2019-10-28 23:02:18 t 1 1 140655 562 0.00 2019-10-28 23:02:49 2019-10-28 23:03:07 t 1 1 140659 528 0.00 2019-10-28 23:04:02 2019-10-28 23:04:38 t 1 1 140663 522 0.00 2019-10-28 23:08:27 2019-10-28 23:08:38 t 1 1 140664 595 0.00 2019-10-28 23:05:09 2019-10-28 23:08:58 t 1 1 140668 595 0.00 2019-10-28 23:09:14 2019-10-28 23:09:34 t 1 1 140669 522 0.00 2019-10-28 23:10:16 2019-10-28 23:10:29 t 1 1 140672 562 0.00 2019-10-28 23:11:23 2019-10-28 23:11:35 t 1 1 140674 220 0.00 2019-10-28 22:50:47 2019-10-28 23:12:11 t 1 2 140677 522 0.00 2019-10-28 23:13:36 2019-10-28 23:13:48 t 1 1 140683 595 0.00 2019-10-28 23:16:27 2019-10-28 23:16:47 t 1 1 140684 522 0.00 2019-10-28 23:17:36 2019-10-28 23:17:47 t 1 1 140690 522 0.00 2019-10-28 23:18:38 2019-10-28 23:18:39 t 1 1 140693 544 0.00 2019-10-28 23:04:22 2019-10-28 23:21:31 t 1 2 140700 587 0.00 2019-10-28 23:18:26 2019-10-28 23:24:22 t 1 1 140703 220 0.00 2019-10-28 23:19:57 2019-10-28 23:29:03 t 1 1 140707 595 0.00 2019-10-28 23:31:22 2019-10-28 23:31:28 t 1 1 140710 587 0.00 2019-10-28 23:29:43 2019-10-28 23:32:42 t 1 1 140714 595 0.00 2019-10-28 23:36:47 2019-10-28 23:37:07 t 1 1 140716 585 0.00 2019-10-28 23:07:12 2019-10-28 23:38:01 t 1 1 140719 220 0.00 2019-10-28 23:38:21 2019-10-28 23:39:44 t 1 1 140724 595 0.00 2019-10-28 23:41:04 2019-10-28 23:43:14 t 1 1 140733 566 0.00 2019-10-28 23:41:41 2019-10-28 23:48:56 t 1 1 140742 522 0.00 2019-10-28 23:52:12 2019-10-28 23:52:35 t 1 1 140746 609 0.00 2019-10-28 23:50:28 2019-10-28 23:53:46 t 1 1 140748 522 0.00 2019-10-28 23:53:14 2019-10-28 23:57:06 t 1 1 140753 522 0.00 2019-10-28 23:58:07 2019-10-28 23:58:18 t 1 1 140755 485 0.00 2019-10-28 23:45:43 2019-10-28 23:58:32 t 1 1 140758 422 0.00 2019-10-28 23:35:54 2019-10-28 23:59:12 t 1 1 140760 585 0.00 2019-10-28 23:58:20 2019-10-29 00:00:56 t 1 1 140762 220 0.00 2019-10-29 00:01:06 2019-10-29 00:01:13 t 1 1 140764 220 0.00 2019-10-29 00:01:21 2019-10-29 00:01:35 t 1 1 140767 578 0.00 2019-10-28 19:41:40 2019-10-29 00:04:47 t 1 1 140769 522 0.00 2019-10-29 00:05:04 2019-10-29 00:05:05 t 1 1 140771 485 0.00 2019-10-29 00:00:51 2019-10-29 00:05:33 t 1 1 140774 587 0.00 2019-10-29 00:01:06 2019-10-29 00:07:12 t 1 1 140575 522 0.00 2019-10-28 22:26:32 2019-10-28 22:28:04 t 1 1 140577 220 0.00 2019-10-28 22:18:15 2019-10-28 22:28:14 t 1 1 140588 591 0.00 2019-10-28 22:27:02 2019-10-28 22:34:54 t 1 1 140589 528 0.00 2019-10-28 22:34:27 2019-10-28 22:34:59 t 1 1 140591 595 0.00 2019-10-28 22:35:01 2019-10-28 22:35:04 t 1 1 140593 528 0.00 2019-10-28 22:35:22 2019-10-28 22:35:47 t 1 1 140596 522 0.00 2019-10-28 22:35:58 2019-10-28 22:36:10 t 1 1 140597 522 0.00 2019-10-28 22:36:44 2019-10-28 22:36:56 t 1 1 140598 512 0.00 2019-10-28 22:25:11 2019-10-28 22:37:20 t 1 1 140610 587 0.00 2019-10-28 22:34:11 2019-10-28 22:41:48 t 1 1 140611 522 0.00 2019-10-28 22:41:55 2019-10-28 22:42:07 t 1 1 140612 528 0.00 2019-10-28 22:42:57 2019-10-28 22:43:21 t 1 1 140614 587 0.00 2019-10-28 22:42:18 2019-10-28 22:43:52 t 1 1 140625 570 0.00 2019-10-28 22:45:08 2019-10-28 22:49:01 t 1 1 140629 220 0.00 2019-10-28 22:49:14 2019-10-28 22:49:28 t 1 1 140635 522 0.00 2019-10-28 22:52:04 2019-10-28 22:52:16 t 1 1 140644 522 0.00 2019-10-28 22:56:39 2019-10-28 22:57:20 t 1 1 140645 522 0.00 2019-10-28 22:58:46 2019-10-28 22:59:04 t 1 1 140647 327 0.00 2019-10-28 22:53:30 2019-10-28 23:00:08 t 1 1 140648 522 0.00 2019-10-28 23:01:14 2019-10-28 23:01:26 t 1 1 140657 522 0.00 2019-10-28 23:03:10 2019-10-28 23:03:31 t 1 1 140661 522 0.00 2019-10-28 23:07:20 2019-10-28 23:07:32 t 1 1 140662 422 0.00 2019-10-28 22:49:54 2019-10-28 23:08:27 t 1 1 140665 485 0.00 2019-10-28 22:59:47 2019-10-28 23:09:08 t 1 1 140670 595 0.00 2019-10-28 23:09:46 2019-10-28 23:10:51 t 1 1 140671 595 0.00 2019-10-28 23:11:03 2019-10-28 23:11:06 t 1 1 140676 327 0.00 2019-10-28 23:10:05 2019-10-28 23:13:27 t 1 1 140681 595 0.00 2019-10-28 23:11:41 2019-10-28 23:16:02 t 1 1 140686 595 0.00 2019-10-28 23:16:14 2019-10-28 23:18:14 t 1 1 140689 522 0.00 2019-10-28 23:18:32 2019-10-28 23:18:32 t 1 1 140691 220 0.00 2019-10-28 23:18:31 2019-10-28 23:18:45 t 1 1 140692 595 0.00 2019-10-28 23:20:57 2019-10-28 23:21:03 t 1 1 140694 595 0.00 2019-10-28 23:21:16 2019-10-28 23:21:37 t 1 1 140695 570 0.00 2019-10-28 23:20:36 2019-10-28 23:22:07 t 1 1 140697 554 0.00 2019-10-28 23:11:46 2019-10-28 23:22:35 t 1 1 140699 327 0.00 2019-10-28 23:22:52 2019-10-28 23:24:03 t 1 1 140701 570 0.00 2019-10-28 23:26:36 2019-10-28 23:27:10 t 1 1 140704 562 0.00 2019-10-28 23:28:41 2019-10-28 23:29:06 t 1 1 140706 587 0.00 2019-10-28 23:24:22 2019-10-28 23:29:43 t 1 1 140709 554 0.00 2019-10-28 23:22:35 2019-10-28 23:32:30 t 1 1 140713 595 0.00 2019-10-28 23:34:39 2019-10-28 23:36:33 t 1 1 140715 456 0.00 2019-10-28 23:35:27 2019-10-28 23:37:50 t 1 1 140717 587 0.00 2019-10-28 23:32:55 2019-10-28 23:38:08 t 1 1 140718 220 0.00 2019-10-28 23:29:33 2019-10-28 23:38:22 t 1 1 140720 220 0.00 2019-10-28 23:39:40 2019-10-28 23:39:52 t 1 1 140727 587 0.00 2019-10-28 23:45:18 2019-10-28 23:45:22 t 1 1 140729 485 0.00 2019-10-28 23:30:23 2019-10-28 23:45:43 t 1 1 140730 526 0.00 2019-10-28 23:39:23 2019-10-28 23:46:13 t 1 2 140732 456 0.00 2019-10-28 23:45:42 2019-10-28 23:47:56 t 1 1 140736 562 0.00 2019-10-28 23:50:14 2019-10-28 23:50:39 t 1 1 140738 595 0.00 2019-10-28 23:50:15 2019-10-28 23:51:16 t 1 1 140740 570 0.00 2019-10-28 23:27:14 2019-10-28 23:51:31 t 1 1 140743 220 0.00 2019-10-28 23:36:43 2019-10-28 23:53:03 t 1 2 140745 595 0.00 2019-10-28 23:52:39 2019-10-28 23:53:38 t 1 1 140749 481 0.00 2019-10-28 22:00:49 2019-10-28 23:57:11 t 1 1 140751 566 0.00 2019-10-28 23:48:56 2019-10-28 23:57:19 t 1 1 140759 522 0.00 2019-10-29 00:00:14 2019-10-29 00:00:27 t 1 1 140761 609 0.00 2019-10-28 23:57:17 2019-10-29 00:01:11 t 1 1 140766 570 0.00 2019-10-28 23:58:21 2019-10-29 00:04:01 t 1 1 140778 609 0.00 2019-10-29 00:01:11 2019-10-29 00:09:10 t 1 1 140782 522 0.00 2019-10-29 00:11:17 2019-10-29 00:11:29 t 1 1 140787 327 0.00 2019-10-29 00:13:43 2019-10-29 00:14:11 t 1 1 140789 578 0.00 2019-10-29 00:04:47 2019-10-29 00:16:07 t 1 1 140792 220 0.00 2019-10-29 00:09:51 2019-10-29 00:17:14 t 1 2 140800 220 0.00 2019-10-29 00:22:20 2019-10-29 00:22:27 t 1 1 140801 220 0.00 2019-10-29 00:22:35 2019-10-29 00:22:43 t 1 1 140806 449 0.00 2019-10-29 00:18:55 2019-10-29 00:25:44 t 1 1 140807 578 0.00 2019-10-29 00:16:07 2019-10-29 00:26:26 t 1 1 140809 514 0.00 2019-10-28 23:14:08 2019-10-29 00:27:40 t 1 1 140810 522 0.00 2019-10-29 00:19:18 2019-10-29 00:28:14 t 1 1 69176 131 0.00 2018-07-16 13:25:26 2018-07-16 13:27:10 t 1 1 140812 220 0.00 2019-10-29 00:31:15 2019-10-29 00:31:29 t 1 1 140814 562 0.00 2019-10-29 00:33:16 2019-10-29 00:33:40 t 1 1 140820 545 0.00 2019-10-29 00:30:17 2019-10-29 00:37:49 t 1 1 140821 522 0.00 2019-10-29 00:34:31 2019-10-29 00:39:01 t 1 1 140829 522 0.00 2019-10-29 00:45:05 2019-10-29 00:45:06 t 1 1 140835 556 0.00 2019-10-29 00:43:13 2019-10-29 00:50:26 t 1 1 140839 522 0.00 2019-10-29 00:47:28 2019-10-29 00:52:41 t 1 1 140841 422 0.00 2019-10-29 00:49:37 2019-10-29 00:53:14 t 1 1 140843 522 0.00 2019-10-29 00:54:47 2019-10-29 00:54:59 t 1 1 140853 587 0.00 2019-10-29 00:37:03 2019-10-29 01:00:09 t 1 1 140858 566 0.00 2019-10-29 00:52:34 2019-10-29 01:02:50 t 1 1 140859 522 0.00 2019-10-29 01:02:43 2019-10-29 01:02:56 t 1 1 140860 220 0.00 2019-10-29 01:02:44 2019-10-29 01:03:17 t 1 1 140864 587 0.00 2019-10-29 01:01:38 2019-10-29 01:04:26 t 1 1 140866 522 0.00 2019-10-29 01:05:06 2019-10-29 01:05:18 t 1 1 140873 327 0.00 2019-10-29 01:08:51 2019-10-29 01:08:59 t 1 1 140887 522 0.00 2019-10-29 01:18:10 2019-10-29 01:18:22 t 1 1 140888 522 0.00 2019-10-29 01:18:49 2019-10-29 01:19:01 t 1 1 140892 422 0.00 2019-10-29 01:17:15 2019-10-29 01:23:03 t 1 1 140893 522 0.00 2019-10-29 01:23:15 2019-10-29 01:23:27 t 1 1 140894 220 0.00 2019-10-29 01:23:43 2019-10-29 01:23:50 t 1 1 140896 220 0.00 2019-10-29 01:23:58 2019-10-29 01:24:06 t 1 1 140899 514 0.00 2019-10-29 01:15:17 2019-10-29 01:24:49 t 1 1 140901 522 0.00 2019-10-29 01:25:12 2019-10-29 01:25:25 t 1 1 140906 522 0.00 2019-10-29 01:28:21 2019-10-29 01:28:37 t 1 1 140908 327 0.00 2019-10-29 01:29:26 2019-10-29 01:29:28 t 1 1 140910 327 0.00 2019-10-29 01:29:37 2019-10-29 01:29:52 t 1 1 140912 501 0.00 2019-10-29 01:30:23 2019-10-29 01:30:23 f 1 1 140917 522 0.00 2019-10-29 01:33:58 2019-10-29 01:33:58 t 1 1 140919 422 0.00 2019-10-29 01:32:00 2019-10-29 01:34:34 t 1 1 140921 522 0.00 2019-10-29 01:35:24 2019-10-29 01:35:36 t 1 1 140922 522 0.00 2019-10-29 01:35:48 2019-10-29 01:36:00 t 1 1 140924 522 0.00 2019-10-29 01:38:16 2019-10-29 01:38:31 t 1 1 140925 522 0.00 2019-10-29 01:38:42 2019-10-29 01:38:59 t 1 1 140926 621 0.00 2019-10-29 01:31:09 2019-10-29 01:40:21 t 1 1 140927 522 0.00 2019-10-29 01:40:30 2019-10-29 01:40:41 t 1 1 140650 522 0.00 2019-10-28 23:02:17 2019-10-28 23:02:18 t 1 1 140652 522 0.00 2019-10-28 23:02:24 2019-10-28 23:02:25 t 1 1 140653 595 0.00 2019-10-28 23:02:27 2019-10-28 23:02:50 t 1 1 140654 585 0.00 2019-10-28 22:58:56 2019-10-28 23:03:07 t 1 1 140656 595 0.00 2019-10-28 23:02:58 2019-10-28 23:03:10 t 1 1 140658 595 0.00 2019-10-28 23:03:21 2019-10-28 23:03:44 t 1 1 140660 522 0.00 2019-10-28 23:05:18 2019-10-28 23:05:30 t 1 1 140666 522 0.00 2019-10-28 23:08:50 2019-10-28 23:09:13 t 1 1 140667 522 0.00 2019-10-28 23:09:23 2019-10-28 23:09:24 t 1 1 140673 554 0.00 2019-10-28 20:39:23 2019-10-28 23:11:42 t 1 1 140675 522 0.00 2019-10-28 23:12:24 2019-10-28 23:12:38 t 1 1 140678 514 0.00 2019-10-28 22:56:49 2019-10-28 23:14:08 t 1 1 140679 522 0.00 2019-10-28 23:14:20 2019-10-28 23:14:33 t 1 1 140680 456 0.00 2019-10-28 23:11:51 2019-10-28 23:15:13 t 1 1 140682 522 0.00 2019-10-28 23:16:28 2019-10-28 23:16:40 t 1 1 140685 522 0.00 2019-10-28 23:17:53 2019-10-28 23:17:55 t 1 1 140687 587 0.00 2019-10-28 22:44:00 2019-10-28 23:18:26 t 1 1 140688 220 0.00 2019-10-28 22:51:34 2019-10-28 23:18:31 t 1 1 140696 562 0.00 2019-10-28 23:22:02 2019-10-28 23:22:23 t 1 1 140698 522 0.00 2019-10-28 23:19:25 2019-10-28 23:22:45 t 1 1 140702 595 0.00 2019-10-28 23:24:06 2019-10-28 23:28:31 t 1 1 140705 220 0.00 2019-10-28 23:29:03 2019-10-28 23:29:18 t 1 1 140708 522 0.00 2019-10-28 23:23:01 2019-10-28 23:32:10 t 1 1 140711 327 0.00 2019-10-28 23:33:59 2019-10-28 23:35:00 t 1 1 140712 422 0.00 2019-10-28 23:07:34 2019-10-28 23:35:54 t 1 1 140721 562 0.00 2019-10-28 23:39:42 2019-10-28 23:39:53 t 1 1 140722 554 0.00 2019-10-28 23:32:30 2019-10-28 23:40:21 t 1 1 140723 220 0.00 2019-10-28 23:40:25 2019-10-28 23:41:32 t 1 1 140725 595 0.00 2019-10-28 23:43:28 2019-10-28 23:43:46 t 1 1 140726 587 0.00 2019-10-28 23:38:08 2019-10-28 23:44:47 t 1 1 140728 327 0.00 2019-10-28 23:44:56 2019-10-28 23:45:29 t 1 1 140731 595 0.00 2019-10-28 23:44:22 2019-10-28 23:46:54 t 1 1 140734 379 0.00 2019-10-28 16:36:57 2019-10-28 23:50:03 t 1 1 140735 220 0.00 2019-10-28 23:50:14 2019-10-28 23:50:28 t 1 1 140737 220 0.00 2019-10-28 23:50:36 2019-10-28 23:50:56 t 1 1 140739 522 0.00 2019-10-28 23:32:10 2019-10-28 23:51:26 t 1 1 140741 595 0.00 2019-10-28 23:51:28 2019-10-28 23:52:26 t 1 1 140744 327 0.00 2019-10-28 23:52:35 2019-10-28 23:53:06 t 1 1 140747 595 0.00 2019-10-28 23:53:54 2019-10-28 23:55:27 t 1 1 140750 609 0.00 2019-10-28 23:53:45 2019-10-28 23:57:17 t 1 1 140752 570 0.00 2019-10-28 23:51:31 2019-10-28 23:58:14 t 1 1 140754 522 0.00 2019-10-28 23:58:26 2019-10-28 23:58:28 t 1 1 140756 522 0.00 2019-10-28 23:58:35 2019-10-28 23:58:37 t 1 1 140757 522 0.00 2019-10-28 23:58:45 2019-10-28 23:59:04 t 1 1 140763 562 0.00 2019-10-29 00:00:59 2019-10-29 00:01:28 t 1 1 69391 131 0.00 2018-07-19 12:29:20 2018-07-19 12:30:56 t 1 1 140765 327 0.00 2019-10-29 00:03:07 2019-10-29 00:03:38 t 1 1 140768 522 0.00 2019-10-29 00:01:54 2019-10-29 00:04:56 t 1 1 140770 595 0.00 2019-10-28 23:55:46 2019-10-29 00:05:24 t 1 1 140772 522 0.00 2019-10-29 00:05:13 2019-10-29 00:06:27 t 1 1 140773 522 0.00 2019-10-29 00:06:38 2019-10-29 00:06:57 t 1 1 140775 570 0.00 2019-10-29 00:04:01 2019-10-29 00:07:44 t 1 1 140780 220 0.00 2019-10-29 00:08:27 2019-10-29 00:09:50 t 1 2 140783 220 0.00 2019-10-29 00:11:50 2019-10-29 00:12:04 t 1 1 140786 522 0.00 2019-10-29 00:13:19 2019-10-29 00:13:31 t 1 1 140791 522 0.00 2019-10-29 00:16:37 2019-10-29 00:16:50 t 1 1 140793 327 0.00 2019-10-29 00:15:45 2019-10-29 00:17:18 t 1 1 140795 522 0.00 2019-10-29 00:17:49 2019-10-29 00:18:00 t 1 1 140798 538 0.00 2019-10-28 23:27:34 2019-10-29 00:19:42 t 1 1 140802 545 0.00 2019-10-29 00:13:56 2019-10-29 00:22:50 t 1 1 140803 220 0.00 2019-10-29 00:22:53 2019-10-29 00:22:53 t 1 1 140805 587 0.00 2019-10-29 00:07:39 2019-10-29 00:24:59 t 1 1 140816 566 0.00 2019-10-29 00:21:26 2019-10-29 00:34:33 t 1 1 140818 609 0.00 2019-10-29 00:18:03 2019-10-29 00:35:39 t 1 1 140822 522 0.00 2019-10-29 00:40:08 2019-10-29 00:40:35 t 1 1 140826 566 0.00 2019-10-29 00:34:33 2019-10-29 00:43:51 t 1 1 140827 220 0.00 2019-10-29 00:43:07 2019-10-29 00:44:33 t 1 1 140828 522 0.00 2019-10-29 00:40:43 2019-10-29 00:44:57 t 1 1 140831 522 0.00 2019-10-29 00:45:21 2019-10-29 00:45:32 t 1 1 140832 522 0.00 2019-10-29 00:45:56 2019-10-29 00:46:09 t 1 1 140833 522 0.00 2019-10-29 00:46:55 2019-10-29 00:47:07 t 1 1 140836 562 0.00 2019-10-29 00:51:40 2019-10-29 00:52:01 t 1 1 140838 566 0.00 2019-10-29 00:43:51 2019-10-29 00:52:34 t 1 1 140840 220 0.00 2019-10-29 00:52:14 2019-10-29 00:52:47 t 1 1 140845 545 0.00 2019-10-29 00:37:49 2019-10-29 00:56:02 t 1 1 140848 522 0.00 2019-10-29 00:57:39 2019-10-29 00:58:05 t 1 1 140851 220 0.00 2019-10-28 23:41:30 2019-10-29 00:59:41 t 1 2 140854 512 0.00 2019-10-29 00:57:10 2019-10-29 01:00:50 t 1 1 140855 522 0.00 2019-10-29 01:01:04 2019-10-29 01:01:16 t 1 1 140856 327 0.00 2019-10-29 00:53:32 2019-10-29 01:02:01 t 1 1 140861 522 0.00 2019-10-29 01:03:08 2019-10-29 01:03:19 t 1 1 140862 522 0.00 2019-10-29 01:03:50 2019-10-29 01:04:03 t 1 1 140865 514 0.00 2019-10-29 00:27:40 2019-10-29 01:04:33 t 1 1 140867 451 0.00 2019-10-29 00:58:07 2019-10-29 01:05:26 t 1 1 140870 522 0.00 2019-10-29 01:07:23 2019-10-29 01:07:57 t 1 1 140871 327 0.00 2019-10-29 01:08:02 2019-10-29 01:08:03 t 1 1 140872 522 0.00 2019-10-29 01:08:39 2019-10-29 01:08:52 t 1 1 140874 522 0.00 2019-10-29 01:09:57 2019-10-29 01:10:10 t 1 1 140875 522 0.00 2019-10-29 01:11:13 2019-10-29 01:11:25 t 1 1 140878 456 0.00 2019-10-29 00:54:30 2019-10-29 01:13:27 t 1 1 140880 522 0.00 2019-10-29 01:13:25 2019-10-29 01:14:07 t 1 1 140882 522 0.00 2019-10-29 01:15:11 2019-10-29 01:15:32 t 1 1 140883 522 0.00 2019-10-29 01:15:40 2019-10-29 01:15:58 t 1 1 140885 422 0.00 2019-10-29 00:57:16 2019-10-29 01:17:15 t 1 1 140889 587 0.00 2019-10-29 01:06:04 2019-10-29 01:19:09 t 1 1 140891 327 0.00 2019-10-29 01:19:13 2019-10-29 01:22:05 t 1 1 140897 562 0.00 2019-10-29 01:24:03 2019-10-29 01:24:13 t 1 1 140902 587 0.00 2019-10-29 01:19:20 2019-10-29 01:25:31 t 1 1 140905 422 0.00 2019-10-29 01:23:03 2019-10-29 01:28:36 t 1 1 140909 522 0.00 2019-10-29 01:29:16 2019-10-29 01:29:29 t 1 1 140911 501 0.00 2019-10-29 01:30:15 2019-10-29 01:30:15 f 1 1 140913 522 0.00 2019-10-29 01:31:24 2019-10-29 01:31:40 t 1 1 140915 422 0.00 2019-10-29 01:28:36 2019-10-29 01:32:00 t 1 1 140918 607 0.00 2019-10-28 23:36:36 2019-10-29 01:34:28 t 1 1 140920 562 0.00 2019-10-29 01:34:43 2019-10-29 01:35:00 t 1 1 140932 522 0.00 2019-10-29 01:43:38 2019-10-29 01:43:54 t 1 1 140934 522 0.00 2019-10-29 01:44:00 2019-10-29 01:44:39 t 1 1 140776 220 0.00 2019-10-28 23:58:26 2019-10-29 00:07:50 t 1 2 140777 566 0.00 2019-10-28 23:57:19 2019-10-29 00:08:53 t 1 1 140779 522 0.00 2019-10-29 00:09:05 2019-10-29 00:09:21 t 1 1 140781 522 0.00 2019-10-29 00:09:48 2019-10-29 00:10:01 t 1 1 140784 562 0.00 2019-10-29 00:11:45 2019-10-29 00:12:08 t 1 1 140785 522 0.00 2019-10-29 00:12:24 2019-10-29 00:13:08 t 1 1 140788 220 0.00 2019-10-28 23:30:53 2019-10-29 00:15:58 t 1 2 140790 522 0.00 2019-10-29 00:13:41 2019-10-29 00:16:08 t 1 1 140794 556 0.00 2019-10-28 20:44:56 2019-10-29 00:17:47 t 1 1 140796 609 0.00 2019-10-29 00:09:10 2019-10-29 00:18:03 t 1 1 140797 522 0.00 2019-10-29 00:18:12 2019-10-29 00:18:42 t 1 1 140799 566 0.00 2019-10-29 00:08:53 2019-10-29 00:21:26 t 1 1 140804 562 0.00 2019-10-29 00:22:31 2019-10-29 00:22:55 t 1 1 140808 220 0.00 2019-10-29 00:25:53 2019-10-29 00:27:14 t 1 1 140811 545 0.00 2019-10-29 00:22:50 2019-10-29 00:30:17 t 1 1 140813 556 0.00 2019-10-29 00:17:47 2019-10-29 00:32:42 t 1 1 140815 522 0.00 2019-10-29 00:28:14 2019-10-29 00:34:31 t 1 1 140817 327 0.00 2019-10-29 00:17:59 2019-10-29 00:35:28 t 1 1 140819 587 0.00 2019-10-29 00:25:19 2019-10-29 00:37:03 t 1 1 140823 562 0.00 2019-10-29 00:41:07 2019-10-29 00:41:19 t 1 1 140824 220 0.00 2019-10-29 00:41:45 2019-10-29 00:42:00 t 1 1 140825 556 0.00 2019-10-29 00:32:42 2019-10-29 00:43:13 t 1 1 140830 522 0.00 2019-10-29 00:45:14 2019-10-29 00:45:15 t 1 1 140834 422 0.00 2019-10-29 00:37:19 2019-10-29 00:49:37 t 1 1 140837 609 0.00 2019-10-29 00:35:39 2019-10-29 00:52:03 t 1 1 140842 327 0.00 2019-10-29 00:35:28 2019-10-29 00:53:32 t 1 1 140844 522 0.00 2019-10-29 00:55:21 2019-10-29 00:55:40 t 1 1 140846 422 0.00 2019-10-29 00:53:14 2019-10-29 00:57:16 t 1 1 140847 545 0.00 2019-10-29 00:56:02 2019-10-29 00:57:53 t 1 1 140849 451 0.00 2019-10-29 00:10:12 2019-10-29 00:58:07 t 1 1 140850 522 0.00 2019-10-29 00:58:17 2019-10-29 00:58:43 t 1 1 140852 522 0.00 2019-10-29 00:59:47 2019-10-29 01:00:00 t 1 1 140857 562 0.00 2019-10-29 01:02:26 2019-10-29 01:02:48 t 1 1 140863 327 0.00 2019-10-29 01:02:51 2019-10-29 01:04:14 t 1 1 140868 327 0.00 2019-10-29 01:06:11 2019-10-29 01:06:25 t 1 1 140869 522 0.00 2019-10-29 01:06:59 2019-10-29 01:07:11 t 1 1 140876 522 0.00 2019-10-29 01:13:02 2019-10-29 01:13:13 t 1 1 140877 220 0.00 2019-10-29 01:13:14 2019-10-29 01:13:21 t 1 1 140879 562 0.00 2019-10-29 01:13:20 2019-10-29 01:13:30 t 1 1 140881 514 0.00 2019-10-29 01:04:33 2019-10-29 01:15:17 t 1 1 140884 522 0.00 2019-10-29 01:16:10 2019-10-29 01:16:26 t 1 1 140886 327 0.00 2019-10-29 01:16:24 2019-10-29 01:18:14 t 1 1 140890 522 0.00 2019-10-29 01:21:13 2019-10-29 01:21:25 t 1 1 140895 327 0.00 2019-10-29 01:23:38 2019-10-29 01:23:51 t 1 1 140898 522 0.00 2019-10-29 01:23:51 2019-10-29 01:24:13 t 1 1 140900 503 0.00 2019-10-29 01:16:08 2019-10-29 01:25:19 t 1 1 140903 522 0.00 2019-10-29 01:26:13 2019-10-29 01:26:36 t 1 1 140904 538 0.00 2019-10-29 00:19:42 2019-10-29 01:28:07 t 1 1 140907 522 0.00 2019-10-29 01:28:52 2019-10-29 01:28:53 t 1 1 140914 587 0.00 2019-10-29 01:25:48 2019-10-29 01:31:52 t 1 1 140916 514 0.00 2019-10-29 01:24:49 2019-10-29 01:33:31 t 1 1 140923 522 0.00 2019-10-29 01:36:38 2019-10-29 01:36:50 t 1 1 140929 522 0.00 2019-10-29 01:40:49 2019-10-29 01:41:27 t 1 1 140930 522 0.00 2019-10-29 01:41:42 2019-10-29 01:41:54 t 1 1 140931 522 0.00 2019-10-29 01:41:35 2019-10-29 01:43:14 t 1 1 140933 562 0.00 2019-10-29 01:43:55 2019-10-29 01:44:09 t 1 1 140935 621 0.00 2019-10-29 01:40:25 2019-10-29 01:44:39 t 1 1 140938 522 0.00 2019-10-29 01:46:41 2019-10-29 01:46:53 t 1 1 140940 522 0.00 2019-10-29 01:48:43 2019-10-29 01:48:55 t 1 1 140941 522 0.00 2019-10-29 01:49:04 2019-10-29 01:49:05 t 1 1 140942 522 0.00 2019-10-29 01:49:38 2019-10-29 01:49:51 t 1 1 140945 522 0.00 2019-10-29 01:51:42 2019-10-29 01:51:53 t 1 1 140951 621 0.00 2019-10-29 01:46:47 2019-10-29 01:55:17 t 1 1 140953 522 0.00 2019-10-29 01:58:51 2019-10-29 01:59:14 t 1 1 140957 522 0.00 2019-10-29 02:00:16 2019-10-29 02:00:50 t 1 1 140958 522 0.00 2019-10-29 02:01:00 2019-10-29 02:01:10 t 1 1 140965 522 0.00 2019-10-29 02:07:31 2019-10-29 02:07:52 t 1 1 140967 220 0.00 2019-10-29 02:10:53 2019-10-29 02:11:01 t 1 1 140969 566 0.00 2019-10-29 02:01:46 2019-10-29 02:11:47 t 1 1 140970 522 0.00 2019-10-29 02:11:59 2019-10-29 02:12:12 t 1 1 140972 522 0.00 2019-10-29 02:13:00 2019-10-29 02:13:10 t 1 1 140974 522 0.00 2019-10-29 02:15:04 2019-10-29 02:15:15 t 1 1 140976 522 0.00 2019-10-29 02:17:10 2019-10-29 02:17:22 t 1 1 140980 522 0.00 2019-10-29 02:20:32 2019-10-29 02:20:34 t 1 1 140986 522 0.00 2019-10-29 02:20:42 2019-10-29 02:23:14 t 1 1 140987 562 0.00 2019-10-29 02:23:44 2019-10-29 02:24:11 t 1 1 140989 522 0.00 2019-10-29 02:25:38 2019-10-29 02:25:51 t 1 1 140990 607 0.00 2019-10-29 01:34:28 2019-10-29 02:26:33 t 1 1 140993 607 0.00 2019-10-29 02:26:33 2019-10-29 02:27:57 t 1 1 140997 522 0.00 2019-10-29 02:30:31 2019-10-29 02:30:52 t 1 1 140998 522 0.00 2019-10-29 02:31:00 2019-10-29 02:31:16 t 1 1 141001 522 0.00 2019-10-29 02:31:28 2019-10-29 02:32:17 t 1 1 141002 522 0.00 2019-10-29 02:33:22 2019-10-29 02:33:35 t 1 1 141004 562 0.00 2019-10-29 02:34:35 2019-10-29 02:34:56 t 1 1 141005 522 0.00 2019-10-29 02:34:55 2019-10-29 02:35:29 t 1 1 141007 522 0.00 2019-10-29 02:36:26 2019-10-29 02:36:59 t 1 1 141011 522 0.00 2019-10-29 02:39:30 2019-10-29 02:39:43 t 1 1 141015 522 0.00 2019-10-29 02:44:41 2019-10-29 02:44:53 t 1 1 141016 587 0.00 2019-10-29 02:40:18 2019-10-29 02:45:25 t 1 1 141021 522 0.00 2019-10-29 02:50:47 2019-10-29 02:51:00 t 1 1 141022 562 0.00 2019-10-29 02:51:28 2019-10-29 02:51:40 t 1 1 141026 220 0.00 2019-10-29 02:51:10 2019-10-29 02:53:14 t 1 1 141027 220 0.00 2019-10-29 02:53:41 2019-10-29 02:53:56 t 1 1 141037 522 0.00 2019-10-29 03:02:23 2019-10-29 03:02:24 t 1 1 141038 220 0.00 2019-10-29 03:04:11 2019-10-29 03:04:25 t 1 1 141040 522 0.00 2019-10-29 03:04:41 2019-10-29 03:04:56 t 1 1 141043 522 0.00 2019-10-29 03:06:31 2019-10-29 03:06:56 t 1 1 141045 522 0.00 2019-10-29 03:10:11 2019-10-29 03:10:22 t 1 1 141050 522 0.00 2019-10-29 03:13:16 2019-10-29 03:13:16 t 1 1 141055 587 0.00 2019-10-29 03:00:44 2019-10-29 03:15:20 t 1 1 141068 522 0.00 2019-10-29 03:25:44 2019-10-29 03:25:56 t 1 1 141079 522 0.00 2019-10-29 03:35:44 2019-10-29 03:36:00 t 1 1 141080 522 0.00 2019-10-29 03:36:46 2019-10-29 03:36:57 t 1 1 141083 522 0.00 2019-10-29 03:38:47 2019-10-29 03:38:54 t 1 1 141084 522 0.00 2019-10-29 03:39:00 2019-10-29 03:39:31 t 1 1 141089 522 0.00 2019-10-29 03:42:51 2019-10-29 03:43:07 t 1 1 141091 522 0.00 2019-10-29 03:42:45 2019-10-29 03:44:14 t 1 1 140928 587 0.00 2019-10-29 01:32:21 2019-10-29 01:41:06 t 1 1 140937 621 0.00 2019-10-29 01:44:39 2019-10-29 01:46:47 t 1 1 140943 220 0.00 2019-10-29 01:49:54 2019-10-29 01:50:06 t 1 1 140946 562 0.00 2019-10-29 01:51:33 2019-10-29 01:51:54 t 1 1 140947 522 0.00 2019-10-29 01:52:05 2019-10-29 01:52:37 t 1 1 140949 522 0.00 2019-10-29 01:54:16 2019-10-29 01:54:39 t 1 1 140954 621 0.00 2019-10-29 01:55:17 2019-10-29 01:59:17 t 1 1 140959 566 0.00 2019-10-29 01:02:51 2019-10-29 02:01:46 t 1 1 140961 562 0.00 2019-10-29 02:02:28 2019-10-29 02:02:41 t 1 1 140963 522 0.00 2019-10-29 02:05:59 2019-10-29 02:06:15 t 1 1 140964 522 0.00 2019-10-29 02:07:18 2019-10-29 02:07:20 t 1 1 140966 522 0.00 2019-10-29 02:08:56 2019-10-29 02:09:09 t 1 1 140973 562 0.00 2019-10-29 02:13:00 2019-10-29 02:13:26 t 1 1 140977 587 0.00 2019-10-29 01:49:10 2019-10-29 02:19:11 t 1 1 140979 522 0.00 2019-10-29 02:19:27 2019-10-29 02:20:25 t 1 1 140981 587 0.00 2019-10-29 02:19:32 2019-10-29 02:21:05 t 1 1 140988 522 0.00 2019-10-29 02:25:15 2019-10-29 02:25:26 t 1 1 140995 522 0.00 2019-10-29 02:28:17 2019-10-29 02:28:40 t 1 1 140999 220 0.00 2019-10-29 02:31:52 2019-10-29 02:32:06 t 1 1 141003 522 0.00 2019-10-29 02:34:32 2019-10-29 02:34:43 t 1 1 141012 562 0.00 2019-10-29 02:39:53 2019-10-29 02:41:28 t 1 1 69342 131 0.00 2018-07-18 18:01:29 2018-07-18 18:03:12 t 1 1 141017 522 0.00 2019-10-29 02:46:43 2019-10-29 02:46:56 t 1 1 141018 522 0.00 2019-10-29 02:47:17 2019-10-29 02:47:35 t 1 1 141020 220 0.00 2019-10-29 02:50:43 2019-10-29 02:50:52 t 1 1 69351 131 0.00 2018-07-18 19:16:56 2018-07-18 19:18:12 t 1 1 141025 522 0.00 2019-10-29 02:52:20 2019-10-29 02:52:21 t 1 1 141029 522 0.00 2019-10-29 02:55:52 2019-10-29 02:56:04 t 1 1 141030 522 0.00 2019-10-29 02:57:28 2019-10-29 02:57:52 t 1 1 141031 587 0.00 2019-10-29 02:45:44 2019-10-29 02:59:28 t 1 1 141033 522 0.00 2019-10-29 03:00:16 2019-10-29 03:00:28 t 1 1 141035 522 0.00 2019-10-29 03:01:26 2019-10-29 03:01:56 t 1 1 141036 562 0.00 2019-10-29 03:02:07 2019-10-29 03:02:17 t 1 1 141039 522 0.00 2019-10-29 03:03:58 2019-10-29 03:04:33 t 1 1 141041 522 0.00 2019-10-29 03:05:07 2019-10-29 03:05:19 t 1 1 141042 522 0.00 2019-10-29 03:06:07 2019-10-29 03:06:19 t 1 1 141044 522 0.00 2019-10-29 03:07:30 2019-10-29 03:08:12 t 1 1 141046 516 0.00 2019-10-29 03:03:07 2019-10-29 03:10:32 t 1 1 141049 562 0.00 2019-10-29 03:12:39 2019-10-29 03:13:02 t 1 1 141053 220 0.00 2019-10-29 03:14:41 2019-10-29 03:14:49 t 1 1 141057 522 0.00 2019-10-29 03:17:18 2019-10-29 03:17:21 t 1 1 141058 522 0.00 2019-10-29 03:17:44 2019-10-29 03:18:10 t 1 1 141059 562 0.00 2019-10-29 03:18:30 2019-10-29 03:19:03 t 1 1 141061 522 0.00 2019-10-29 03:20:24 2019-10-29 03:20:40 t 1 1 141064 562 0.00 2019-10-29 03:23:22 2019-10-29 03:23:37 t 1 1 141065 220 0.00 2019-10-29 03:25:10 2019-10-29 03:25:25 t 1 1 141067 522 0.00 2019-10-29 03:25:21 2019-10-29 03:25:32 t 1 1 141069 522 0.00 2019-10-29 03:27:27 2019-10-29 03:27:40 t 1 1 141070 522 0.00 2019-10-29 03:27:53 2019-10-29 03:28:25 t 1 1 141073 522 0.00 2019-10-29 03:32:33 2019-10-29 03:33:25 t 1 1 141074 562 0.00 2019-10-29 03:33:55 2019-10-29 03:34:19 t 1 1 141076 522 0.00 2019-10-29 03:35:10 2019-10-29 03:35:32 t 1 1 141077 551 0.00 2019-10-29 03:30:13 2019-10-29 03:35:44 t 1 1 141078 220 0.00 2019-10-29 03:35:39 2019-10-29 03:35:55 t 1 1 141081 619 0.00 2019-10-29 03:35:48 2019-10-29 03:37:30 t 1 1 141082 522 0.00 2019-10-29 03:38:39 2019-10-29 03:38:41 t 1 1 141085 551 0.00 2019-10-29 03:35:44 2019-10-29 03:40:57 t 1 1 141087 522 0.00 2019-10-29 03:41:39 2019-10-29 03:41:50 t 1 1 141088 522 0.00 2019-10-29 03:41:58 2019-10-29 03:42:37 t 1 1 141090 562 0.00 2019-10-29 03:43:00 2019-10-29 03:43:09 t 1 1 141095 522 0.00 2019-10-29 03:46:48 2019-10-29 03:47:00 t 1 1 141096 522 0.00 2019-10-29 03:47:51 2019-10-29 03:48:16 t 1 1 141097 522 0.00 2019-10-29 03:48:24 2019-10-29 03:48:59 t 1 1 141102 522 0.00 2019-10-29 03:54:35 2019-10-29 03:54:49 t 1 1 141110 522 0.00 2019-10-29 04:01:05 2019-10-29 04:01:17 t 1 1 141112 522 0.00 2019-10-29 04:05:09 2019-10-29 04:05:21 t 1 1 141118 522 0.00 2019-10-29 04:08:12 2019-10-29 04:08:24 t 1 1 69458 131 0.00 2018-07-20 14:39:30 2018-07-20 14:41:28 t 1 1 141119 522 0.00 2019-10-29 04:10:14 2019-10-29 04:10:26 t 1 1 141120 522 0.00 2019-10-29 04:11:09 2019-10-29 04:11:22 t 1 1 141121 522 0.00 2019-10-29 04:12:16 2019-10-29 04:12:27 t 1 1 141122 522 0.00 2019-10-29 04:13:11 2019-10-29 04:13:24 t 1 1 141129 522 0.00 2019-10-29 04:18:48 2019-10-29 04:19:22 t 1 1 141132 522 0.00 2019-10-29 04:23:29 2019-10-29 04:23:41 t 1 1 141135 522 0.00 2019-10-29 04:25:36 2019-10-29 04:25:48 t 1 1 141136 412 0.00 2019-10-29 04:10:24 2019-10-29 04:26:26 t 1 1 141137 562 0.00 2019-10-29 04:27:30 2019-10-29 04:27:39 t 1 1 141141 522 0.00 2019-10-29 04:28:52 2019-10-29 04:29:06 t 1 1 141145 522 0.00 2019-10-29 04:31:38 2019-10-29 04:32:13 t 1 1 141146 522 0.00 2019-10-29 04:32:21 2019-10-29 04:33:24 t 1 1 141149 562 0.00 2019-10-29 04:38:09 2019-10-29 04:38:20 t 1 1 141156 522 0.00 2019-10-29 04:43:12 2019-10-29 04:43:24 t 1 1 141157 522 0.00 2019-10-29 04:43:50 2019-10-29 04:44:01 t 1 1 141161 220 0.00 2019-10-29 04:54:13 2019-10-29 04:54:34 t 1 1 141162 522 0.00 2019-10-29 04:44:09 2019-10-29 04:55:30 t 1 1 141163 522 0.00 2019-10-29 04:56:07 2019-10-29 04:56:39 t 1 1 141164 522 0.00 2019-10-29 04:56:51 2019-10-29 04:57:06 t 1 1 141171 619 0.00 2019-10-29 04:39:31 2019-10-29 05:01:30 t 1 1 69521 131 0.00 2018-07-21 11:43:10 2018-07-21 11:44:28 t 1 1 141176 220 0.00 2019-10-29 05:04:42 2019-10-29 05:04:56 t 1 1 141177 522 0.00 2019-10-29 05:05:07 2019-10-29 05:06:08 t 1 1 141180 619 0.00 2019-10-29 05:04:03 2019-10-29 05:07:34 t 1 1 141183 522 0.00 2019-10-29 05:06:57 2019-10-29 05:08:15 t 1 1 141184 522 0.00 2019-10-29 05:08:57 2019-10-29 05:09:08 t 1 1 141189 522 0.00 2019-10-29 05:13:01 2019-10-29 05:13:12 t 1 1 141191 522 0.00 2019-10-29 05:14:32 2019-10-29 05:14:53 t 1 1 141201 485 0.00 2019-10-29 05:21:29 2019-10-29 05:23:46 t 1 1 141202 522 0.00 2019-10-29 05:24:11 2019-10-29 05:24:23 t 1 1 141213 220 0.00 2019-10-29 05:36:09 2019-10-29 05:36:17 t 1 1 141215 220 0.00 2019-10-29 05:36:25 2019-10-29 05:36:27 t 1 1 141219 522 0.00 2019-10-29 05:39:46 2019-10-29 05:39:58 t 1 1 141221 220 0.00 2019-10-29 05:41:12 2019-10-29 05:41:40 t 1 1 141224 522 0.00 2019-10-29 05:42:37 2019-10-29 05:42:49 t 1 1 141226 522 0.00 2019-10-29 05:44:35 2019-10-29 05:44:49 t 1 1 141229 220 0.00 2019-10-29 05:48:09 2019-10-29 05:48:22 t 1 1 141234 562 0.00 2019-10-29 05:51:54 2019-10-29 05:52:26 t 1 1 141235 522 0.00 2019-10-29 05:53:39 2019-10-29 05:53:51 t 1 1 140936 522 0.00 2019-10-29 01:44:39 2019-10-29 01:44:51 t 1 1 140939 587 0.00 2019-10-29 01:41:06 2019-10-29 01:47:49 t 1 1 140944 587 0.00 2019-10-29 01:48:05 2019-10-29 01:50:14 t 1 1 140948 522 0.00 2019-10-29 01:54:07 2019-10-29 01:54:08 t 1 1 140950 522 0.00 2019-10-29 01:54:51 2019-10-29 01:55:03 t 1 1 140952 522 0.00 2019-10-29 01:56:49 2019-10-29 01:57:00 t 1 1 140955 522 0.00 2019-10-29 01:59:46 2019-10-29 01:59:59 t 1 1 140956 220 0.00 2019-10-29 02:00:24 2019-10-29 02:00:38 t 1 1 140960 522 0.00 2019-10-29 02:01:49 2019-10-29 02:02:20 t 1 1 140962 522 0.00 2019-10-29 02:03:57 2019-10-29 02:04:09 t 1 1 140968 522 0.00 2019-10-29 02:11:04 2019-10-29 02:11:20 t 1 1 140971 522 0.00 2019-10-29 02:12:18 2019-10-29 02:12:32 t 1 1 140975 522 0.00 2019-10-29 02:15:27 2019-10-29 02:15:39 t 1 1 140978 522 0.00 2019-10-29 02:19:08 2019-10-29 02:19:19 t 1 1 140982 522 0.00 2019-10-29 02:20:48 2019-10-29 02:21:14 t 1 1 140983 220 0.00 2019-10-29 02:21:22 2019-10-29 02:21:36 t 1 1 140984 522 0.00 2019-10-29 02:22:26 2019-10-29 02:22:41 t 1 1 140985 522 0.00 2019-10-29 02:22:52 2019-10-29 02:23:11 t 1 1 140991 522 0.00 2019-10-29 02:26:14 2019-10-29 02:26:37 t 1 1 140992 522 0.00 2019-10-29 02:26:49 2019-10-29 02:27:47 t 1 1 140994 587 0.00 2019-10-29 02:21:35 2019-10-29 02:28:07 t 1 1 140996 522 0.00 2019-10-29 02:29:18 2019-10-29 02:29:41 t 1 1 141000 331 0.00 2019-10-28 22:51:30 2019-10-29 02:32:13 t 1 1 141006 587 0.00 2019-10-29 02:28:47 2019-10-29 02:35:59 t 1 1 141008 522 0.00 2019-10-29 02:37:06 2019-10-29 02:37:26 t 1 1 141009 522 0.00 2019-10-29 02:38:29 2019-10-29 02:38:42 t 1 1 141010 587 0.00 2019-10-29 02:36:12 2019-10-29 02:39:38 t 1 1 141013 522 0.00 2019-10-29 02:40:31 2019-10-29 02:41:49 t 1 1 141014 522 0.00 2019-10-29 02:42:15 2019-10-29 02:42:29 t 1 1 141019 522 0.00 2019-10-29 02:48:54 2019-10-29 02:49:07 t 1 1 141023 522 0.00 2019-10-29 02:51:50 2019-10-29 02:51:50 t 1 1 141024 522 0.00 2019-10-29 02:51:56 2019-10-29 02:52:08 t 1 1 141028 522 0.00 2019-10-29 02:53:50 2019-10-29 02:54:03 t 1 1 141032 522 0.00 2019-10-29 02:59:53 2019-10-29 03:00:04 t 1 1 141034 522 0.00 2019-10-29 03:01:03 2019-10-29 03:01:14 t 1 1 141047 522 0.00 2019-10-29 03:12:13 2019-10-29 03:12:25 t 1 1 141048 522 0.00 2019-10-29 03:12:40 2019-10-29 03:12:40 t 1 1 141051 522 0.00 2019-10-29 03:13:22 2019-10-29 03:13:34 t 1 1 141052 522 0.00 2019-10-29 03:14:24 2019-10-29 03:14:36 t 1 1 141054 522 0.00 2019-10-29 03:15:18 2019-10-29 03:15:18 t 1 1 141056 522 0.00 2019-10-29 03:15:24 2019-10-29 03:15:36 t 1 1 141060 522 0.00 2019-10-29 03:19:26 2019-10-29 03:20:12 t 1 1 141062 522 0.00 2019-10-29 03:22:19 2019-10-29 03:22:30 t 1 1 141063 522 0.00 2019-10-29 03:22:42 2019-10-29 03:23:17 t 1 1 141066 551 0.00 2019-10-29 03:16:27 2019-10-29 03:25:27 t 1 1 141071 551 0.00 2019-10-29 03:25:27 2019-10-29 03:30:13 t 1 1 141072 522 0.00 2019-10-29 03:30:31 2019-10-29 03:30:43 t 1 1 141075 522 0.00 2019-10-29 03:34:41 2019-10-29 03:35:02 t 1 1 141086 412 0.00 2019-10-28 22:27:19 2019-10-29 03:41:37 t 1 1 141100 619 0.00 2019-10-29 03:46:30 2019-10-29 03:53:10 t 1 1 141101 522 0.00 2019-10-29 03:53:52 2019-10-29 03:54:27 t 1 1 141103 522 0.00 2019-10-29 03:55:00 2019-10-29 03:55:12 t 1 1 141105 522 0.00 2019-10-29 03:56:04 2019-10-29 03:56:57 t 1 1 141106 220 0.00 2019-10-29 03:56:44 2019-10-29 03:57:13 t 1 1 141111 522 0.00 2019-10-29 04:03:07 2019-10-29 04:03:19 t 1 1 141113 522 0.00 2019-10-29 04:06:04 2019-10-29 04:06:17 t 1 1 141116 220 0.00 2019-10-29 04:07:29 2019-10-29 04:07:37 t 1 1 141117 220 0.00 2019-10-29 04:07:45 2019-10-29 04:08:00 t 1 1 141126 522 0.00 2019-10-29 04:17:06 2019-10-29 04:17:19 t 1 1 141128 220 0.00 2019-10-29 04:18:15 2019-10-29 04:18:48 t 1 1 141131 522 0.00 2019-10-29 04:19:37 2019-10-29 04:19:49 t 1 1 141134 522 0.00 2019-10-29 04:25:10 2019-10-29 04:25:24 t 1 1 141138 522 0.00 2019-10-29 04:26:23 2019-10-29 04:27:53 t 1 1 141143 522 0.00 2019-10-29 04:29:40 2019-10-29 04:29:40 t 1 1 141148 522 0.00 2019-10-29 04:34:47 2019-10-29 04:38:07 t 1 1 141154 522 0.00 2019-10-29 04:42:11 2019-10-29 04:42:22 t 1 1 141155 522 0.00 2019-10-29 04:43:06 2019-10-29 04:43:06 t 1 1 141166 562 0.00 2019-10-29 04:59:25 2019-10-29 04:59:35 t 1 1 141168 522 0.00 2019-10-29 04:59:49 2019-10-29 04:59:50 t 1 1 141172 522 0.00 2019-10-29 05:02:47 2019-10-29 05:03:13 t 1 1 141173 522 0.00 2019-10-29 05:03:21 2019-10-29 05:03:47 t 1 1 141178 522 0.00 2019-10-29 05:05:00 2019-10-29 05:06:15 t 1 1 141181 485 0.00 2019-10-29 05:03:32 2019-10-29 05:07:58 t 1 1 141185 485 0.00 2019-10-29 05:07:58 2019-10-29 05:10:11 t 1 1 141190 522 0.00 2019-10-29 05:14:06 2019-10-29 05:14:20 t 1 1 141192 485 0.00 2019-10-29 05:11:10 2019-10-29 05:15:48 t 1 1 141195 412 0.00 2019-10-29 05:13:29 2019-10-29 05:17:12 t 1 1 141196 522 0.00 2019-10-29 05:18:05 2019-10-29 05:18:17 t 1 1 141197 522 0.00 2019-10-29 05:19:15 2019-10-29 05:19:27 t 1 1 141199 562 0.00 2019-10-29 05:20:42 2019-10-29 05:20:53 t 1 1 141200 522 0.00 2019-10-29 05:22:09 2019-10-29 05:22:21 t 1 1 141203 220 0.00 2019-10-29 05:25:41 2019-10-29 05:25:48 t 1 1 141204 522 0.00 2019-10-29 05:26:13 2019-10-29 05:26:25 t 1 1 141207 522 0.00 2019-10-29 05:29:25 2019-10-29 05:29:26 t 1 1 141212 522 0.00 2019-10-29 05:34:51 2019-10-29 05:35:13 t 1 1 141214 522 0.00 2019-10-29 05:36:11 2019-10-29 05:36:23 t 1 1 141216 619 0.00 2019-10-29 05:22:17 2019-10-29 05:36:50 t 1 1 141222 562 0.00 2019-10-29 05:41:31 2019-10-29 05:41:44 t 1 1 141225 522 0.00 2019-10-29 05:43:38 2019-10-29 05:44:03 t 1 1 141227 522 0.00 2019-10-29 05:45:01 2019-10-29 05:45:22 t 1 1 141231 522 0.00 2019-10-29 05:50:36 2019-10-29 05:50:48 t 1 1 141232 522 0.00 2019-10-29 05:51:39 2019-10-29 05:51:39 t 1 1 141237 522 0.00 2019-10-29 05:54:48 2019-10-29 05:55:01 t 1 1 141242 485 0.00 2019-10-29 05:55:18 2019-10-29 05:57:50 t 1 1 141246 485 0.00 2019-10-29 05:57:49 2019-10-29 05:59:11 t 1 1 141250 514 0.00 2019-10-29 01:33:31 2019-10-29 06:02:42 t 1 1 141251 522 0.00 2019-10-29 06:02:41 2019-10-29 06:02:48 t 1 1 141253 485 0.00 2019-10-29 05:59:11 2019-10-29 06:03:19 t 1 1 141258 522 0.00 2019-10-29 06:09:54 2019-10-29 06:10:07 t 1 1 141259 522 0.00 2019-10-29 06:11:05 2019-10-29 06:11:16 t 1 1 141260 562 0.00 2019-10-29 06:12:19 2019-10-29 06:12:34 t 1 1 141271 522 0.00 2019-10-29 06:19:04 2019-10-29 06:19:17 t 1 1 141273 485 0.00 2019-10-29 06:15:06 2019-10-29 06:21:13 t 1 1 141277 562 0.00 2019-10-29 06:24:08 2019-10-29 06:24:25 t 1 1 141279 520 0.00 2019-10-29 05:45:23 2019-10-29 06:25:09 t 1 1 141287 522 0.00 2019-10-29 06:32:24 2019-10-29 06:32:35 t 1 1 141296 522 0.00 2019-10-29 06:43:27 2019-10-29 06:43:39 t 1 1 141092 562 0.00 2019-10-29 03:44:43 2019-10-29 03:44:53 t 1 1 141093 522 0.00 2019-10-29 03:44:46 2019-10-29 03:44:58 t 1 1 141094 220 0.00 2019-10-29 03:46:10 2019-10-29 03:46:25 t 1 1 141098 522 0.00 2019-10-29 03:49:29 2019-10-29 03:49:48 t 1 1 141099 522 0.00 2019-10-29 03:51:54 2019-10-29 03:52:22 t 1 1 141104 562 0.00 2019-10-29 03:55:15 2019-10-29 03:56:25 t 1 1 141107 522 0.00 2019-10-29 03:57:08 2019-10-29 03:57:24 t 1 1 141108 522 0.00 2019-10-29 03:58:20 2019-10-29 03:58:32 t 1 1 141109 522 0.00 2019-10-29 03:58:57 2019-10-29 03:59:10 t 1 1 141114 562 0.00 2019-10-29 04:06:07 2019-10-29 04:06:27 t 1 1 141115 220 0.00 2019-10-29 04:07:14 2019-10-29 04:07:22 t 1 1 141123 522 0.00 2019-10-29 04:15:19 2019-10-29 04:15:35 t 1 1 141124 522 0.00 2019-10-29 04:16:14 2019-10-29 04:16:27 t 1 1 141125 562 0.00 2019-10-29 04:16:49 2019-10-29 04:16:59 t 1 1 69744 131 0.00 2018-07-24 10:13:08 2018-07-24 10:14:36 t 1 1 141127 522 0.00 2019-10-29 04:18:29 2019-10-29 04:18:40 t 1 1 141130 522 0.00 2019-10-29 04:19:30 2019-10-29 04:19:31 t 1 1 141133 522 0.00 2019-10-29 04:24:31 2019-10-29 04:25:02 t 1 1 141139 522 0.00 2019-10-29 04:28:44 2019-10-29 04:28:45 t 1 1 141140 220 0.00 2019-10-29 04:28:44 2019-10-29 04:28:58 t 1 1 141142 522 0.00 2019-10-29 04:29:14 2019-10-29 04:29:32 t 1 1 141144 522 0.00 2019-10-29 04:29:46 2019-10-29 04:29:58 t 1 1 141147 522 0.00 2019-10-29 04:33:31 2019-10-29 04:33:45 t 1 1 141150 522 0.00 2019-10-29 04:38:45 2019-10-29 04:38:57 t 1 1 141151 220 0.00 2019-10-29 04:39:14 2019-10-29 04:39:15 t 1 1 141152 522 0.00 2019-10-29 04:41:02 2019-10-29 04:41:14 t 1 1 141153 522 0.00 2019-10-29 04:42:05 2019-10-29 04:42:06 t 1 1 141158 220 0.00 2019-10-29 04:45:29 2019-10-29 04:45:42 t 1 1 141159 562 0.00 2019-10-29 04:48:47 2019-10-29 04:49:03 t 1 1 141160 485 0.00 2019-10-29 04:50:27 2019-10-29 04:52:43 t 1 1 141165 522 0.00 2019-10-29 04:57:38 2019-10-29 04:57:57 t 1 1 141167 522 0.00 2019-10-29 04:59:27 2019-10-29 04:59:41 t 1 1 141169 522 0.00 2019-10-29 05:00:32 2019-10-29 05:00:43 t 1 1 141170 522 0.00 2019-10-29 05:00:55 2019-10-29 05:01:06 t 1 1 141174 522 0.00 2019-10-29 05:03:54 2019-10-29 05:04:06 t 1 1 141175 522 0.00 2019-10-29 05:04:14 2019-10-29 05:04:52 t 1 1 141179 522 0.00 2019-10-29 05:07:03 2019-10-29 05:07:05 t 1 1 141182 522 0.00 2019-10-29 05:07:50 2019-10-29 05:07:59 t 1 1 141186 562 0.00 2019-10-29 05:10:07 2019-10-29 05:10:18 t 1 1 141187 522 0.00 2019-10-29 05:10:55 2019-10-29 05:11:09 t 1 1 141188 522 0.00 2019-10-29 05:11:21 2019-10-29 05:11:33 t 1 1 141193 220 0.00 2019-10-29 05:15:12 2019-10-29 05:15:49 t 1 1 141194 522 0.00 2019-10-29 05:15:52 2019-10-29 05:16:08 t 1 1 141198 522 0.00 2019-10-29 05:20:16 2019-10-29 05:20:29 t 1 1 141205 522 0.00 2019-10-29 05:28:15 2019-10-29 05:28:16 t 1 1 141206 522 0.00 2019-10-29 05:29:10 2019-10-29 05:29:19 t 1 1 141208 522 0.00 2019-10-29 05:30:11 2019-10-29 05:30:18 t 1 1 141209 562 0.00 2019-10-29 05:31:18 2019-10-29 05:31:32 t 1 1 141210 522 0.00 2019-10-29 05:32:19 2019-10-29 05:32:31 t 1 1 141211 522 0.00 2019-10-29 05:33:29 2019-10-29 05:33:41 t 1 1 141217 522 0.00 2019-10-29 05:38:24 2019-10-29 05:38:37 t 1 1 141218 522 0.00 2019-10-29 05:39:34 2019-10-29 05:39:35 t 1 1 141220 522 0.00 2019-10-29 05:41:27 2019-10-29 05:41:39 t 1 1 141223 485 0.00 2019-10-29 05:35:29 2019-10-29 05:41:49 t 1 1 141228 522 0.00 2019-10-29 05:46:32 2019-10-29 05:46:44 t 1 1 141230 522 0.00 2019-10-29 05:48:34 2019-10-29 05:48:45 t 1 1 141233 522 0.00 2019-10-29 05:51:46 2019-10-29 05:51:57 t 1 1 141238 485 0.00 2019-10-29 05:42:37 2019-10-29 05:55:18 t 1 1 141239 220 0.00 2019-10-29 04:21:31 2019-10-29 05:56:37 t 1 2 141240 522 0.00 2019-10-29 05:56:44 2019-10-29 05:57:00 t 1 1 141241 522 0.00 2019-10-29 05:57:45 2019-10-29 05:57:45 t 1 1 141243 220 0.00 2019-10-29 05:57:37 2019-10-29 05:57:51 t 1 1 69857 131 0.00 2018-07-25 11:56:40 2018-07-25 11:58:39 t 1 1 141244 522 0.00 2019-10-29 05:57:51 2019-10-29 05:58:04 t 1 1 141245 522 0.00 2019-10-29 05:58:55 2019-10-29 05:59:07 t 1 1 141249 522 0.00 2019-10-29 06:02:11 2019-10-29 06:02:13 t 1 1 141254 522 0.00 2019-10-29 06:03:57 2019-10-29 06:04:09 t 1 1 141255 522 0.00 2019-10-29 06:05:50 2019-10-29 06:06:03 t 1 1 141257 220 0.00 2019-10-29 06:08:07 2019-10-29 06:08:21 t 1 1 141263 562 0.00 2019-10-29 06:13:34 2019-10-29 06:13:46 t 1 1 141264 522 0.00 2019-10-29 06:14:08 2019-10-29 06:14:20 t 1 1 141266 522 0.00 2019-10-29 06:14:54 2019-10-29 06:15:07 t 1 1 141272 522 0.00 2019-10-29 06:19:59 2019-10-29 06:20:11 t 1 1 141274 562 0.00 2019-10-29 06:22:12 2019-10-29 06:22:20 t 1 1 141278 522 0.00 2019-10-29 06:24:35 2019-10-29 06:25:01 t 1 1 141280 522 0.00 2019-10-29 06:27:13 2019-10-29 06:27:25 t 1 1 141281 522 0.00 2019-10-29 06:28:23 2019-10-29 06:28:35 t 1 1 141282 522 0.00 2019-10-29 06:29:08 2019-10-29 06:29:18 t 1 1 141284 220 0.00 2019-10-29 06:29:36 2019-10-29 06:29:40 t 1 1 141285 522 0.00 2019-10-29 06:31:12 2019-10-29 06:31:33 t 1 1 141286 522 0.00 2019-10-29 06:31:57 2019-10-29 06:32:12 t 1 1 141288 520 0.00 2019-10-29 06:25:08 2019-10-29 06:32:37 t 1 1 141298 562 0.00 2019-10-29 06:45:15 2019-10-29 06:45:45 t 1 1 141302 522 0.00 2019-10-29 06:50:27 2019-10-29 06:50:40 t 1 1 141309 562 0.00 2019-10-29 06:56:10 2019-10-29 06:56:21 t 1 1 141313 522 0.00 2019-10-29 06:58:41 2019-10-29 06:58:53 t 1 1 141314 522 0.00 2019-10-29 06:59:36 2019-10-29 06:59:49 t 1 1 141317 522 0.00 2019-10-29 07:01:38 2019-10-29 07:01:50 t 1 1 141321 522 0.00 2019-10-29 07:06:44 2019-10-29 07:07:05 t 1 1 141328 522 0.00 2019-10-29 07:14:50 2019-10-29 07:15:02 t 1 1 141329 562 0.00 2019-10-29 07:17:18 2019-10-29 07:17:42 t 1 1 141340 562 0.00 2019-10-29 07:28:02 2019-10-29 07:28:20 t 1 1 141345 522 0.00 2019-10-29 07:32:12 2019-10-29 07:32:24 t 1 1 141346 220 0.00 2019-10-29 07:32:52 2019-10-29 07:32:59 t 1 1 141347 522 0.00 2019-10-29 07:34:14 2019-10-29 07:34:26 t 1 1 141352 562 0.00 2019-10-29 07:38:33 2019-10-29 07:39:02 t 1 1 141355 516 0.00 2019-10-29 07:28:46 2019-10-29 07:42:42 t 1 1 141356 220 0.00 2019-10-29 07:43:21 2019-10-29 07:43:36 t 1 1 141357 522 0.00 2019-10-29 07:44:22 2019-10-29 07:44:34 t 1 1 141362 522 0.00 2019-10-29 07:50:18 2019-10-29 07:50:31 t 1 1 141364 522 0.00 2019-10-29 07:53:39 2019-10-29 07:53:52 t 1 1 141365 498 0.00 2019-10-29 07:28:24 2019-10-29 07:54:00 t 1 2 141369 522 0.00 2019-10-29 07:56:41 2019-10-29 07:56:55 t 1 1 141371 522 0.00 2019-10-29 07:57:42 2019-10-29 07:57:53 t 1 1 141375 522 0.00 2019-10-29 07:58:36 2019-10-29 08:00:15 t 1 1 141377 522 0.00 2019-10-29 08:02:37 2019-10-29 08:02:49 t 1 1 141379 220 0.00 2019-10-29 08:04:19 2019-10-29 08:04:34 t 1 1 141236 522 0.00 2019-10-29 05:54:42 2019-10-29 05:54:42 t 1 1 141247 522 0.00 2019-10-29 06:00:46 2019-10-29 06:00:59 t 1 1 141248 522 0.00 2019-10-29 06:01:54 2019-10-29 06:02:05 t 1 1 141252 562 0.00 2019-10-29 06:02:48 2019-10-29 06:03:02 t 1 1 141256 522 0.00 2019-10-29 06:07:52 2019-10-29 06:08:04 t 1 1 141261 522 0.00 2019-10-29 06:12:41 2019-10-29 06:12:55 t 1 1 141262 522 0.00 2019-10-29 06:13:07 2019-10-29 06:13:19 t 1 1 141265 485 0.00 2019-10-29 06:03:19 2019-10-29 06:15:06 t 1 1 141267 522 0.00 2019-10-29 06:17:02 2019-10-29 06:17:14 t 1 1 141268 220 0.00 2019-10-29 06:18:36 2019-10-29 06:18:43 t 1 1 141269 220 0.00 2019-10-29 06:18:51 2019-10-29 06:18:59 t 1 1 141270 220 0.00 2019-10-29 06:19:07 2019-10-29 06:19:15 t 1 1 141275 522 0.00 2019-10-29 06:22:07 2019-10-29 06:22:23 t 1 1 141276 522 0.00 2019-10-29 06:24:01 2019-10-29 06:24:22 t 1 1 141283 619 0.00 2019-10-29 06:22:36 2019-10-29 06:29:34 t 1 1 141289 522 0.00 2019-10-29 06:34:14 2019-10-29 06:34:28 t 1 1 141290 522 0.00 2019-10-29 06:34:40 2019-10-29 06:34:52 t 1 1 141291 562 0.00 2019-10-29 06:34:34 2019-10-29 06:35:07 t 1 1 141292 522 0.00 2019-10-29 06:36:20 2019-10-29 06:36:32 t 1 1 141293 522 0.00 2019-10-29 06:37:31 2019-10-29 06:37:44 t 1 1 141294 220 0.00 2019-10-29 06:39:58 2019-10-29 06:40:18 t 1 1 141295 522 0.00 2019-10-29 06:41:25 2019-10-29 06:41:36 t 1 1 141299 522 0.00 2019-10-29 06:47:31 2019-10-29 06:47:43 t 1 1 141300 522 0.00 2019-10-29 06:48:26 2019-10-29 06:48:40 t 1 1 141301 522 0.00 2019-10-29 06:49:26 2019-10-29 06:49:27 t 1 1 141303 220 0.00 2019-10-29 06:50:39 2019-10-29 06:50:47 t 1 1 141304 220 0.00 2019-10-29 06:50:55 2019-10-29 06:51:10 t 1 1 141305 522 0.00 2019-10-29 06:52:35 2019-10-29 06:52:47 t 1 1 141306 522 0.00 2019-10-29 06:53:30 2019-10-29 06:53:44 t 1 1 141307 522 0.00 2019-10-29 06:54:31 2019-10-29 06:54:43 t 1 1 141310 522 0.00 2019-10-29 06:56:03 2019-10-29 06:56:30 t 1 1 141311 522 0.00 2019-10-29 06:57:42 2019-10-29 06:57:43 t 1 1 141312 522 0.00 2019-10-29 06:57:51 2019-10-29 06:57:59 t 1 1 141318 522 0.00 2019-10-29 07:03:46 2019-10-29 07:03:56 t 1 1 141319 522 0.00 2019-10-29 07:04:40 2019-10-29 07:04:52 t 1 1 141324 522 0.00 2019-10-29 07:10:10 2019-10-29 07:10:22 t 1 1 141326 522 0.00 2019-10-29 07:12:24 2019-10-29 07:12:47 t 1 1 141331 554 0.00 2019-10-28 23:40:21 2019-10-29 07:20:11 t 1 1 141334 220 0.00 2019-10-29 07:22:22 2019-10-29 07:22:31 t 1 1 141335 522 0.00 2019-10-29 07:23:04 2019-10-29 07:23:16 t 1 1 141343 522 0.00 2019-10-29 07:30:14 2019-10-29 07:30:26 t 1 1 141348 562 0.00 2019-10-29 07:35:03 2019-10-29 07:35:56 t 1 1 141349 522 0.00 2019-10-29 07:36:15 2019-10-29 07:36:27 t 1 1 141351 412 0.00 2019-10-29 06:05:11 2019-10-29 07:38:47 t 1 1 141353 522 0.00 2019-10-29 07:40:31 2019-10-29 07:40:47 t 1 1 141358 522 0.00 2019-10-29 07:45:12 2019-10-29 07:45:13 t 1 1 141360 522 0.00 2019-10-29 07:47:25 2019-10-29 07:47:37 t 1 1 141363 522 0.00 2019-10-29 07:52:29 2019-10-29 07:52:45 t 1 1 141366 220 0.00 2019-10-29 07:53:50 2019-10-29 07:54:05 t 1 1 141368 562 0.00 2019-10-29 07:53:52 2019-10-29 07:56:06 t 1 1 141370 522 0.00 2019-10-29 07:57:35 2019-10-29 07:57:35 t 1 1 141372 522 0.00 2019-10-29 07:58:42 2019-10-29 07:58:44 t 1 1 141373 522 0.00 2019-10-29 07:59:29 2019-10-29 07:59:41 t 1 1 141374 570 0.00 2019-10-29 07:53:38 2019-10-29 08:00:00 t 1 1 141378 522 0.00 2019-10-29 08:03:47 2019-10-29 08:03:59 t 1 1 141381 522 0.00 2019-10-29 08:04:45 2019-10-29 08:05:06 t 1 1 141382 522 0.00 2019-10-29 08:05:14 2019-10-29 08:05:32 t 1 1 141386 570 0.00 2019-10-29 08:00:00 2019-10-29 08:10:19 t 1 1 141393 220 0.00 2019-10-29 08:14:58 2019-10-29 08:15:32 t 1 1 141395 522 0.00 2019-10-29 08:15:39 2019-10-29 08:15:54 t 1 1 141396 220 0.00 2019-10-29 08:15:32 2019-10-29 08:16:05 t 1 1 141397 220 0.00 2019-10-29 08:16:05 2019-10-29 08:16:09 t 1 1 141399 220 0.00 2019-10-29 08:16:08 2019-10-29 08:16:41 t 1 1 141403 220 0.00 2019-10-29 08:17:16 2019-10-29 08:17:18 t 1 1 141409 220 0.00 2019-10-29 08:18:27 2019-10-29 08:19:02 t 1 1 141411 220 0.00 2019-10-29 08:19:02 2019-10-29 08:19:37 t 1 1 141413 597 0.00 2019-10-29 08:14:53 2019-10-29 08:20:12 t 1 1 141415 220 0.00 2019-10-29 08:19:37 2019-10-29 08:20:17 t 1 1 141420 578 0.00 2019-10-29 07:16:48 2019-10-29 08:21:44 t 1 1 141422 522 0.00 2019-10-29 08:21:48 2019-10-29 08:22:01 t 1 1 141427 220 0.00 2019-10-29 08:23:39 2019-10-29 08:24:21 t 1 1 141429 220 0.00 2019-10-29 08:24:50 2019-10-29 08:24:59 t 1 1 141431 220 0.00 2019-10-29 08:25:24 2019-10-29 08:25:31 t 1 1 141432 522 0.00 2019-10-29 08:25:51 2019-10-29 08:26:05 t 1 1 141442 220 0.00 2019-10-29 08:29:14 2019-10-29 08:29:46 t 1 1 141445 522 0.00 2019-10-29 08:30:54 2019-10-29 08:30:55 t 1 1 141446 220 0.00 2019-10-29 08:30:22 2019-10-29 08:30:57 t 1 1 141451 220 0.00 2019-10-29 08:32:14 2019-10-29 08:32:50 t 1 1 141453 595 0.00 2019-10-29 08:13:52 2019-10-29 08:34:26 t 1 1 141456 562 0.00 2019-10-29 08:30:20 2019-10-29 08:35:30 t 1 1 141459 522 0.00 2019-10-29 08:35:56 2019-10-29 08:35:57 t 1 1 141460 220 0.00 2019-10-29 08:35:52 2019-10-29 08:36:00 t 1 1 141464 595 0.00 2019-10-29 08:36:52 2019-10-29 08:38:42 t 1 1 141468 220 0.00 2019-10-29 08:38:15 2019-10-29 08:40:17 t 1 1 141472 522 0.00 2019-10-29 08:41:40 2019-10-29 08:42:01 t 1 1 141475 522 0.00 2019-10-29 08:42:18 2019-10-29 08:42:39 t 1 1 141479 220 0.00 2019-10-29 08:43:23 2019-10-29 08:43:56 t 1 1 141482 522 0.00 2019-10-29 08:44:48 2019-10-29 08:44:59 t 1 1 141486 220 0.00 2019-10-29 08:45:33 2019-10-29 08:46:21 t 1 1 141488 578 0.00 2019-10-29 08:32:25 2019-10-29 08:47:15 t 1 1 141489 595 0.00 2019-10-29 08:39:03 2019-10-29 08:47:42 t 1 1 141492 566 0.00 2019-10-29 08:36:00 2019-10-29 08:49:39 t 1 1 141493 220 0.00 2019-10-29 08:48:58 2019-10-29 08:49:50 t 1 1 141498 522 0.00 2019-10-29 08:50:25 2019-10-29 08:51:29 t 1 1 141503 220 0.00 2019-10-29 08:51:33 2019-10-29 08:55:08 t 1 1 141507 522 0.00 2019-10-29 08:56:02 2019-10-29 08:56:17 t 1 1 141509 522 0.00 2019-10-29 08:56:28 2019-10-29 08:56:51 t 1 1 141515 522 0.00 2019-10-29 08:59:03 2019-10-29 08:59:16 t 1 1 141517 522 0.00 2019-10-29 09:00:14 2019-10-29 09:00:26 t 1 1 141518 522 0.00 2019-10-29 09:00:48 2019-10-29 09:01:00 t 1 1 141525 522 0.00 2019-10-29 09:05:59 2019-10-29 09:06:10 t 1 1 141527 522 0.00 2019-10-29 09:06:22 2019-10-29 09:06:34 t 1 1 141528 220 0.00 2019-10-29 08:57:28 2019-10-29 09:07:39 t 1 1 141529 220 0.00 2019-10-29 09:07:38 2019-10-29 09:08:12 t 1 1 141534 522 0.00 2019-10-29 09:12:25 2019-10-29 09:12:37 t 1 1 141537 522 0.00 2019-10-29 09:16:07 2019-10-29 09:16:18 t 1 1 141540 562 0.00 2019-10-29 09:16:25 2019-10-29 09:16:48 t 1 1 141297 522 0.00 2019-10-29 06:44:22 2019-10-29 06:44:35 t 1 1 141308 522 0.00 2019-10-29 06:55:32 2019-10-29 06:55:46 t 1 1 141315 522 0.00 2019-10-29 07:00:54 2019-10-29 07:01:10 t 1 1 141316 220 0.00 2019-10-29 07:01:25 2019-10-29 07:01:40 t 1 1 141320 562 0.00 2019-10-29 07:06:25 2019-10-29 07:07:01 t 1 1 141322 522 0.00 2019-10-29 07:07:18 2019-10-29 07:07:39 t 1 1 141323 522 0.00 2019-10-29 07:09:46 2019-10-29 07:09:58 t 1 1 141325 220 0.00 2019-10-29 07:11:54 2019-10-29 07:12:09 t 1 1 141327 522 0.00 2019-10-29 07:14:05 2019-10-29 07:14:20 t 1 1 141330 522 0.00 2019-10-29 07:16:58 2019-10-29 07:17:57 t 1 1 141332 522 0.00 2019-10-29 07:21:02 2019-10-29 07:21:14 t 1 1 141333 562 0.00 2019-10-29 07:21:16 2019-10-29 07:22:18 t 1 1 141336 520 0.00 2019-10-29 07:17:44 2019-10-29 07:23:26 t 1 1 141337 522 0.00 2019-10-29 07:25:18 2019-10-29 07:25:30 t 1 1 141338 522 0.00 2019-10-29 07:26:17 2019-10-29 07:26:28 t 1 1 141339 522 0.00 2019-10-29 07:27:17 2019-10-29 07:27:29 t 1 1 141341 522 0.00 2019-10-29 07:28:18 2019-10-29 07:28:30 t 1 1 141342 522 0.00 2019-10-29 07:30:01 2019-10-29 07:30:03 t 1 1 141344 520 0.00 2019-10-29 07:24:34 2019-10-29 07:30:35 t 1 1 141350 522 0.00 2019-10-29 07:38:17 2019-10-29 07:38:29 t 1 1 141354 522 0.00 2019-10-29 07:42:20 2019-10-29 07:42:36 t 1 1 141359 562 0.00 2019-10-29 07:45:20 2019-10-29 07:46:58 t 1 1 141361 522 0.00 2019-10-29 07:49:27 2019-10-29 07:49:38 t 1 1 141367 522 0.00 2019-10-29 07:54:51 2019-10-29 07:55:25 t 1 1 141376 522 0.00 2019-10-29 08:00:30 2019-10-29 08:00:49 t 1 1 141383 220 0.00 2019-10-29 08:04:42 2019-10-29 08:05:42 t 1 1 141384 522 0.00 2019-10-29 08:06:42 2019-10-29 08:06:53 t 1 1 141387 522 0.00 2019-10-29 08:10:42 2019-10-29 08:10:58 t 1 1 141390 522 0.00 2019-10-29 08:13:57 2019-10-29 08:14:08 t 1 1 141392 220 0.00 2019-10-29 08:11:58 2019-10-29 08:14:58 t 1 1 141394 220 0.00 2019-10-29 08:13:54 2019-10-29 08:15:35 t 1 1 141398 522 0.00 2019-10-29 08:16:05 2019-10-29 08:16:21 t 1 1 141402 220 0.00 2019-10-29 08:16:41 2019-10-29 08:17:17 t 1 1 141405 220 0.00 2019-10-29 08:17:50 2019-10-29 08:17:54 t 1 1 141410 522 0.00 2019-10-29 08:19:01 2019-10-29 08:19:18 t 1 1 141414 522 0.00 2019-10-29 08:20:01 2019-10-29 08:20:13 t 1 1 141417 220 0.00 2019-10-29 08:20:17 2019-10-29 08:20:48 t 1 1 141418 220 0.00 2019-10-29 08:20:48 2019-10-29 08:21:23 t 1 1 141421 220 0.00 2019-10-29 08:21:22 2019-10-29 08:21:55 t 1 1 141425 220 0.00 2019-10-29 08:23:09 2019-10-29 08:23:39 t 1 1 141426 522 0.00 2019-10-29 08:23:56 2019-10-29 08:24:07 t 1 1 141433 220 0.00 2019-10-29 08:26:10 2019-10-29 08:26:26 t 1 1 141437 562 0.00 2019-10-29 08:27:40 2019-10-29 08:27:55 t 1 1 141440 220 0.00 2019-10-29 08:28:07 2019-10-29 08:28:39 t 1 1 69860 131 0.00 2018-07-25 13:30:23 2018-07-25 13:31:39 t 1 1 141441 220 0.00 2019-10-29 08:28:39 2019-10-29 08:29:14 t 1 1 141443 522 0.00 2019-10-29 08:30:03 2019-10-29 08:30:19 t 1 1 141444 220 0.00 2019-10-29 08:29:45 2019-10-29 08:30:22 t 1 1 141449 220 0.00 2019-10-29 08:31:32 2019-10-29 08:32:14 t 1 1 141454 522 0.00 2019-10-29 08:32:37 2019-10-29 08:34:32 t 1 1 141458 220 0.00 2019-10-29 08:34:57 2019-10-29 08:35:53 t 1 1 141462 220 0.00 2019-10-29 08:36:11 2019-10-29 08:37:08 t 1 1 141463 220 0.00 2019-10-29 08:37:07 2019-10-29 08:38:16 t 1 1 141465 522 0.00 2019-10-29 08:38:36 2019-10-29 08:38:57 t 1 1 141467 522 0.00 2019-10-29 08:39:18 2019-10-29 08:39:46 t 1 1 141469 597 0.00 2019-10-29 08:32:54 2019-10-29 08:40:49 t 1 1 141470 220 0.00 2019-10-29 08:40:16 2019-10-29 08:41:10 t 1 1 141471 220 0.00 2019-10-29 08:41:10 2019-10-29 08:41:43 t 1 1 141474 220 0.00 2019-10-29 08:41:43 2019-10-29 08:42:16 t 1 1 141478 220 0.00 2019-10-29 08:42:49 2019-10-29 08:43:24 t 1 1 141480 220 0.00 2019-10-29 08:43:56 2019-10-29 08:44:27 t 1 1 141484 220 0.00 2019-10-29 08:45:00 2019-10-29 08:45:34 t 1 1 141485 522 0.00 2019-10-29 08:45:49 2019-10-29 08:46:02 t 1 1 141487 220 0.00 2019-10-29 08:46:21 2019-10-29 08:46:29 t 1 1 141490 522 0.00 2019-10-29 08:47:51 2019-10-29 08:48:03 t 1 1 141491 220 0.00 2019-10-29 08:47:37 2019-10-29 08:48:58 t 1 1 141494 516 0.00 2019-10-29 08:40:01 2019-10-29 08:50:01 t 1 1 141496 220 0.00 2019-10-29 08:49:50 2019-10-29 08:50:21 t 1 1 141497 220 0.00 2019-10-29 08:50:21 2019-10-29 08:50:56 t 1 1 141501 522 0.00 2019-10-29 08:52:04 2019-10-29 08:52:06 t 1 1 141502 522 0.00 2019-10-29 08:52:51 2019-10-29 08:53:00 t 1 1 141505 562 0.00 2019-10-29 08:55:09 2019-10-29 08:55:33 t 1 1 141508 562 0.00 2019-10-29 08:55:41 2019-10-29 08:56:26 t 1 1 141511 220 0.00 2019-10-29 08:56:51 2019-10-29 08:56:59 t 1 1 141512 220 0.00 2019-10-29 08:47:54 2019-10-29 08:57:18 t 1 2 141519 597 0.00 2019-10-29 08:57:13 2019-10-29 09:01:02 t 1 1 141520 522 0.00 2019-10-29 09:02:08 2019-10-29 09:02:09 t 1 1 141524 538 0.00 2019-10-29 09:04:01 2019-10-29 09:04:19 t 1 1 141526 562 0.00 2019-10-29 09:05:54 2019-10-29 09:06:16 t 1 1 141531 522 0.00 2019-10-29 09:09:53 2019-10-29 09:10:05 t 1 1 141532 522 0.00 2019-10-29 09:10:59 2019-10-29 09:11:09 t 1 1 141536 522 0.00 2019-10-29 09:14:18 2019-10-29 09:14:30 t 1 1 141538 422 0.00 2019-10-29 09:16:30 2019-10-29 09:16:38 t 1 1 141544 220 0.00 2019-10-29 09:18:08 2019-10-29 09:18:39 t 1 1 141547 566 0.00 2019-10-29 08:49:39 2019-10-29 09:21:30 t 1 1 141553 379 0.00 2019-10-28 23:50:03 2019-10-29 09:28:00 t 1 1 141560 333 0.00 2019-10-29 09:14:07 2019-10-29 09:32:50 t 1 2 141563 597 0.00 2019-10-29 09:38:07 2019-10-29 09:40:27 t 1 1 141566 591 0.00 2019-10-29 09:34:47 2019-10-29 09:41:23 t 1 1 141568 591 0.00 2019-10-29 09:42:18 2019-10-29 09:47:56 t 1 1 141570 522 0.00 2019-10-29 09:23:13 2019-10-29 09:48:43 t 1 1 141573 522 0.00 2019-10-29 09:49:05 2019-10-29 09:50:12 t 1 1 141575 522 0.00 2019-10-29 09:50:19 2019-10-29 09:50:35 t 1 1 141577 562 0.00 2019-10-29 09:51:22 2019-10-29 09:51:44 t 1 1 141580 522 0.00 2019-10-29 09:52:37 2019-10-29 09:52:54 t 1 1 141581 615 0.00 2019-10-29 09:40:42 2019-10-29 09:53:16 t 1 1 141586 522 0.00 2019-10-29 09:54:55 2019-10-29 09:55:07 t 1 1 141592 522 0.00 2019-10-29 09:59:28 2019-10-29 09:59:44 t 1 1 141594 522 0.00 2019-10-29 09:59:49 2019-10-29 10:00:37 t 1 1 141598 522 0.00 2019-10-29 10:02:07 2019-10-29 10:02:24 t 1 1 141599 522 0.00 2019-10-29 10:02:43 2019-10-29 10:02:49 t 1 1 141601 619 0.00 2019-10-29 09:57:51 2019-10-29 10:03:35 t 1 1 141603 220 0.00 2019-10-29 09:56:30 2019-10-29 10:04:09 t 1 2 141605 562 0.00 2019-10-29 10:02:06 2019-10-29 10:04:43 t 1 1 141606 585 0.00 2019-10-29 10:03:01 2019-10-29 10:07:28 t 1 1 141607 562 0.00 2019-10-29 10:07:06 2019-10-29 10:08:45 t 1 1 141619 585 0.00 2019-10-29 10:14:01 2019-10-29 10:16:35 t 1 1 141380 562 0.00 2019-10-29 08:04:41 2019-10-29 08:05:00 t 1 1 141385 522 0.00 2019-10-29 08:07:53 2019-10-29 08:08:06 t 1 1 141388 570 0.00 2019-10-29 08:10:19 2019-10-29 08:12:01 t 1 1 141389 522 0.00 2019-10-29 08:12:47 2019-10-29 08:12:59 t 1 1 141391 585 0.00 2019-10-29 08:11:55 2019-10-29 08:14:12 t 1 1 141400 220 0.00 2019-10-29 08:16:40 2019-10-29 08:16:41 t 1 1 141401 522 0.00 2019-10-29 08:16:44 2019-10-29 08:16:58 t 1 1 141404 220 0.00 2019-10-29 08:17:18 2019-10-29 08:17:50 t 1 1 141406 220 0.00 2019-10-29 08:17:54 2019-10-29 08:17:55 t 1 1 141407 522 0.00 2019-10-29 08:18:00 2019-10-29 08:18:11 t 1 1 141408 220 0.00 2019-10-29 08:18:22 2019-10-29 08:18:27 t 1 1 141412 522 0.00 2019-10-29 08:19:55 2019-10-29 08:19:55 t 1 1 141416 522 0.00 2019-10-29 08:20:43 2019-10-29 08:20:44 t 1 1 141419 562 0.00 2019-10-29 08:05:27 2019-10-29 08:21:31 t 1 1 141423 220 0.00 2019-10-29 08:21:55 2019-10-29 08:22:30 t 1 1 141424 220 0.00 2019-10-29 08:22:29 2019-10-29 08:23:09 t 1 1 141428 220 0.00 2019-10-29 08:24:20 2019-10-29 08:24:51 t 1 1 141430 220 0.00 2019-10-29 08:24:57 2019-10-29 08:25:24 t 1 1 141434 522 0.00 2019-10-29 08:26:13 2019-10-29 08:26:53 t 1 1 141435 522 0.00 2019-10-29 08:27:01 2019-10-29 08:27:13 t 1 1 141436 220 0.00 2019-10-29 08:26:26 2019-10-29 08:27:36 t 1 1 141438 522 0.00 2019-10-29 08:27:25 2019-10-29 08:27:57 t 1 1 141439 220 0.00 2019-10-29 08:27:35 2019-10-29 08:28:07 t 1 1 141447 220 0.00 2019-10-29 08:30:57 2019-10-29 08:31:32 t 1 1 141448 522 0.00 2019-10-29 08:31:58 2019-10-29 08:32:12 t 1 1 141450 578 0.00 2019-10-29 08:21:44 2019-10-29 08:32:25 t 1 1 141452 220 0.00 2019-10-29 08:32:50 2019-10-29 08:34:07 t 1 1 141455 220 0.00 2019-10-29 08:34:06 2019-10-29 08:34:57 t 1 1 141457 522 0.00 2019-10-29 08:35:31 2019-10-29 08:35:44 t 1 1 141461 522 0.00 2019-10-29 08:36:48 2019-10-29 08:37:06 t 1 1 141466 522 0.00 2019-10-29 08:39:05 2019-10-29 08:39:06 t 1 1 141473 522 0.00 2019-10-29 08:42:09 2019-10-29 08:42:10 t 1 1 141476 220 0.00 2019-10-29 08:42:16 2019-10-29 08:42:49 t 1 1 141477 522 0.00 2019-10-29 08:42:51 2019-10-29 08:43:03 t 1 1 141481 562 0.00 2019-10-29 08:44:25 2019-10-29 08:44:47 t 1 1 141483 220 0.00 2019-10-29 08:44:26 2019-10-29 08:45:00 t 1 1 141495 522 0.00 2019-10-29 08:49:53 2019-10-29 08:50:05 t 1 1 141499 220 0.00 2019-10-29 08:50:56 2019-10-29 08:51:33 t 1 1 141500 522 0.00 2019-10-29 08:51:58 2019-10-29 08:51:58 t 1 1 141504 522 0.00 2019-10-29 08:54:59 2019-10-29 08:55:11 t 1 1 141506 595 0.00 2019-10-29 08:49:30 2019-10-29 08:55:38 t 1 1 141510 220 0.00 2019-10-29 08:55:14 2019-10-29 08:56:52 t 1 1 141513 220 0.00 2019-10-29 08:57:07 2019-10-29 08:57:22 t 1 1 141514 578 0.00 2019-10-29 08:47:15 2019-10-29 08:58:14 t 1 1 141516 339 0.00 2019-10-29 07:57:11 2019-10-29 08:59:43 t 1 2 141521 585 0.00 2019-10-29 08:59:42 2019-10-29 09:02:16 t 1 1 141522 522 0.00 2019-10-29 09:03:03 2019-10-29 09:03:14 t 1 1 141523 522 0.00 2019-10-29 09:03:26 2019-10-29 09:03:59 t 1 1 70179 131 0.00 2018-07-29 12:44:43 2018-07-29 12:45:54 t 1 1 141530 522 0.00 2019-10-29 09:08:13 2019-10-29 09:08:24 t 1 1 141533 516 0.00 2019-10-29 09:05:33 2019-10-29 09:12:32 t 1 1 141535 578 0.00 2019-10-29 08:58:14 2019-10-29 09:13:14 t 1 1 141539 522 0.00 2019-10-29 09:16:30 2019-10-29 09:16:41 t 1 1 141541 220 0.00 2019-10-29 09:08:11 2019-10-29 09:18:09 t 1 1 141543 522 0.00 2019-10-29 09:18:23 2019-10-29 09:18:35 t 1 1 141549 578 0.00 2019-10-29 09:13:14 2019-10-29 09:22:26 t 1 1 141550 522 0.00 2019-10-29 09:22:34 2019-10-29 09:22:46 t 1 1 141552 562 0.00 2019-10-29 09:26:35 2019-10-29 09:26:58 t 1 1 141555 220 0.00 2019-10-29 09:18:39 2019-10-29 09:28:39 t 1 1 141558 562 0.00 2019-10-29 09:29:53 2019-10-29 09:30:16 t 1 1 141559 562 0.00 2019-10-29 09:30:54 2019-10-29 09:31:34 t 1 1 141561 220 0.00 2019-10-29 09:29:13 2019-10-29 09:39:29 t 1 1 141564 570 0.00 2019-10-29 09:38:39 2019-10-29 09:40:33 t 1 1 141567 566 0.00 2019-10-29 09:21:30 2019-10-29 09:45:08 t 1 1 141574 220 0.00 2019-10-29 09:49:58 2019-10-29 09:50:13 t 1 1 141578 522 0.00 2019-10-29 09:51:05 2019-10-29 09:51:46 t 1 1 141579 522 0.00 2019-10-29 09:51:57 2019-10-29 09:52:32 t 1 1 141582 522 0.00 2019-10-29 09:53:14 2019-10-29 09:53:32 t 1 1 141584 522 0.00 2019-10-29 09:53:50 2019-10-29 09:53:56 t 1 1 141589 591 0.00 2019-10-29 09:55:39 2019-10-29 09:57:23 t 1 1 141590 578 0.00 2019-10-29 09:22:26 2019-10-29 09:58:26 t 1 1 141591 522 0.00 2019-10-29 09:56:12 2019-10-29 09:59:23 t 1 1 141595 220 0.00 2019-10-29 10:00:29 2019-10-29 10:00:38 t 1 1 141600 522 0.00 2019-10-29 10:03:06 2019-10-29 10:03:23 t 1 1 141602 522 0.00 2019-10-29 10:03:34 2019-10-29 10:03:49 t 1 1 141609 522 0.00 2019-10-29 10:09:35 2019-10-29 10:09:51 t 1 1 141611 220 0.00 2019-10-29 10:01:12 2019-10-29 10:11:00 t 1 1 141613 597 0.00 2019-10-29 10:02:18 2019-10-29 10:11:21 t 1 1 141622 597 0.00 2019-10-29 10:11:21 2019-10-29 10:20:23 t 1 1 141624 562 0.00 2019-10-29 10:19:53 2019-10-29 10:20:43 t 1 1 141627 522 0.00 2019-10-29 10:10:26 2019-10-29 10:22:29 t 1 1 141629 522 0.00 2019-10-29 10:22:34 2019-10-29 10:22:37 t 1 1 141631 522 0.00 2019-10-29 10:23:18 2019-10-29 10:24:17 t 1 1 141634 562 0.00 2019-10-29 10:23:06 2019-10-29 10:26:23 t 1 1 141637 615 0.00 2019-10-29 10:23:48 2019-10-29 10:27:29 t 1 1 141642 556 0.00 2019-10-29 06:30:02 2019-10-29 10:30:07 t 1 1 141645 562 0.00 2019-10-29 10:29:21 2019-10-29 10:32:00 t 1 1 141648 566 0.00 2019-10-29 10:30:16 2019-10-29 10:32:18 t 1 1 141651 522 0.00 2019-10-29 10:34:16 2019-10-29 10:34:43 t 1 1 141652 597 0.00 2019-10-29 10:29:09 2019-10-29 10:35:08 t 1 1 141654 522 0.00 2019-10-29 10:35:10 2019-10-29 10:35:11 t 1 1 141656 562 0.00 2019-10-29 10:34:09 2019-10-29 10:36:50 t 1 1 141657 522 0.00 2019-10-29 10:35:30 2019-10-29 10:37:28 t 1 1 141659 591 0.00 2019-10-29 10:13:12 2019-10-29 10:38:21 t 1 1 141660 522 0.00 2019-10-29 10:38:30 2019-10-29 10:38:38 t 1 1 141667 220 0.00 2019-10-29 10:42:29 2019-10-29 10:42:37 t 1 1 141669 220 0.00 2019-10-29 10:43:59 2019-10-29 10:44:05 t 1 1 141673 220 0.00 2019-10-29 10:20:35 2019-10-29 10:46:59 t 1 2 141675 522 0.00 2019-10-29 10:46:36 2019-10-29 10:48:16 t 1 1 141678 490 0.00 2019-10-29 10:40:42 2019-10-29 10:49:15 t 1 1 141680 562 0.00 2019-10-29 10:50:38 2019-10-29 10:50:58 t 1 1 141682 562 0.00 2019-10-29 10:52:17 2019-10-29 10:53:06 t 1 1 141689 220 0.00 2019-10-29 10:54:29 2019-10-29 10:54:44 t 1 1 141694 481 0.00 2019-10-29 10:53:59 2019-10-29 10:57:59 t 1 1 141695 562 0.00 2019-10-29 10:58:07 2019-10-29 10:58:08 t 1 1 141698 591 0.00 2019-10-29 10:38:21 2019-10-29 10:59:14 t 1 1 141701 481 0.00 2019-10-29 10:58:00 2019-10-29 11:00:48 t 1 1 141542 522 0.00 2019-10-29 09:17:25 2019-10-29 09:18:11 t 1 1 141545 522 0.00 2019-10-29 09:20:23 2019-10-29 09:20:35 t 1 1 141546 522 0.00 2019-10-29 09:21:07 2019-10-29 09:21:19 t 1 1 141548 591 0.00 2019-10-29 09:11:23 2019-10-29 09:21:34 t 1 1 141551 562 0.00 2019-10-29 09:23:33 2019-10-29 09:23:55 t 1 1 141554 615 0.00 2019-10-29 09:26:12 2019-10-29 09:28:26 t 1 1 141556 562 0.00 2019-10-29 09:28:23 2019-10-29 09:28:44 t 1 1 141557 220 0.00 2019-10-29 09:28:38 2019-10-29 09:29:13 t 1 1 141562 220 0.00 2019-10-29 09:39:28 2019-10-29 09:39:43 t 1 1 141565 562 0.00 2019-10-29 09:40:48 2019-10-29 09:41:01 t 1 1 141569 220 0.00 2019-10-29 09:40:01 2019-10-29 09:48:15 t 1 1 141571 522 0.00 2019-10-29 09:48:56 2019-10-29 09:48:57 t 1 1 141572 220 0.00 2019-10-29 09:47:19 2019-10-29 09:49:15 t 1 1 141576 522 0.00 2019-10-29 09:50:46 2019-10-29 09:50:52 t 1 1 141583 516 0.00 2019-10-29 09:30:03 2019-10-29 09:53:45 t 1 1 141585 522 0.00 2019-10-29 09:54:13 2019-10-29 09:54:34 t 1 1 141587 522 0.00 2019-10-29 09:55:12 2019-10-29 09:55:33 t 1 1 141588 522 0.00 2019-10-29 09:55:38 2019-10-29 09:55:54 t 1 1 141593 220 0.00 2019-10-29 09:54:18 2019-10-29 10:00:30 t 1 1 141596 522 0.00 2019-10-29 10:01:04 2019-10-29 10:01:29 t 1 1 141597 522 0.00 2019-10-29 10:01:42 2019-10-29 10:02:01 t 1 1 141604 522 0.00 2019-10-29 10:02:36 2019-10-29 10:04:15 t 1 1 141608 522 0.00 2019-10-29 10:04:10 2019-10-29 10:09:22 t 1 1 141610 522 0.00 2019-10-29 10:10:02 2019-10-29 10:10:21 t 1 1 141612 220 0.00 2019-10-29 10:10:59 2019-10-29 10:11:14 t 1 1 141614 562 0.00 2019-10-29 10:10:59 2019-10-29 10:11:48 t 1 1 141615 562 0.00 2019-10-29 10:11:59 2019-10-29 10:12:13 t 1 1 141616 585 0.00 2019-10-29 10:08:09 2019-10-29 10:13:59 t 1 1 141617 562 0.00 2019-10-29 10:14:19 2019-10-29 10:14:43 t 1 1 141618 562 0.00 2019-10-29 10:15:48 2019-10-29 10:16:15 t 1 1 141620 538 0.00 2019-10-29 09:04:30 2019-10-29 10:17:14 t 1 1 141623 570 0.00 2019-10-29 10:13:48 2019-10-29 10:20:30 t 1 1 141625 220 0.00 2019-10-29 10:12:24 2019-10-29 10:21:30 t 1 1 141628 562 0.00 2019-10-29 10:22:02 2019-10-29 10:22:32 t 1 1 141632 520 0.00 2019-10-29 10:16:06 2019-10-29 10:25:21 t 1 1 141633 516 0.00 2019-10-29 10:21:01 2019-10-29 10:26:19 t 1 1 141635 522 0.00 2019-10-29 10:26:19 2019-10-29 10:26:29 t 1 1 141638 562 0.00 2019-10-29 10:26:49 2019-10-29 10:28:21 t 1 1 141646 522 0.00 2019-10-29 10:31:58 2019-10-29 10:32:07 t 1 1 141649 554 0.00 2019-10-29 07:20:13 2019-10-29 10:32:52 t 1 1 141650 522 0.00 2019-10-29 10:33:08 2019-10-29 10:34:16 t 1 1 141653 615 0.00 2019-10-29 10:27:29 2019-10-29 10:35:09 t 1 1 141655 481 0.00 2019-10-29 10:25:46 2019-10-29 10:36:05 t 1 1 141662 522 0.00 2019-10-29 10:39:29 2019-10-29 10:39:37 t 1 1 141664 562 0.00 2019-10-29 10:40:58 2019-10-29 10:41:38 t 1 1 141670 554 0.00 2019-10-29 10:32:57 2019-10-29 10:44:14 t 1 1 141674 562 0.00 2019-10-29 10:43:37 2019-10-29 10:47:29 t 1 1 141676 481 0.00 2019-10-29 10:43:18 2019-10-29 10:48:29 t 1 1 141677 522 0.00 2019-10-29 10:48:39 2019-10-29 10:48:48 t 1 1 141679 522 0.00 2019-10-29 10:49:40 2019-10-29 10:50:41 t 1 1 141681 516 0.00 2019-10-29 10:45:49 2019-10-29 10:52:36 t 1 1 141683 522 0.00 2019-10-29 10:51:41 2019-10-29 10:53:16 t 1 1 141685 490 0.00 2019-10-29 10:49:15 2019-10-29 10:53:43 t 1 1 141690 597 0.00 2019-10-29 10:53:46 2019-10-29 10:56:29 t 1 1 141691 522 0.00 2019-10-29 10:54:45 2019-10-29 10:57:16 t 1 1 141693 522 0.00 2019-10-29 10:57:48 2019-10-29 10:57:56 t 1 1 141697 522 0.00 2019-10-29 10:58:49 2019-10-29 10:58:57 t 1 1 141702 522 0.00 2019-10-29 11:00:54 2019-10-29 11:01:21 t 1 1 141706 522 0.00 2019-10-29 11:06:03 2019-10-29 11:07:22 t 1 1 141709 554 0.00 2019-10-29 10:46:20 2019-10-29 11:08:46 t 1 1 141710 522 0.00 2019-10-29 11:09:15 2019-10-29 11:09:22 t 1 1 141711 619 0.00 2019-10-29 10:51:23 2019-10-29 11:10:21 t 1 1 141715 220 0.00 2019-10-29 11:08:33 2019-10-29 11:15:29 t 1 1 141718 611 0.00 2019-10-29 11:10:39 2019-10-29 11:16:22 t 1 1 141719 485 0.00 2019-10-29 11:11:16 2019-10-29 11:16:44 t 1 1 141721 522 0.00 2019-10-29 11:15:43 2019-10-29 11:16:52 t 1 1 141722 522 0.00 2019-10-29 11:17:27 2019-10-29 11:17:29 t 1 1 141724 327 0.00 2019-10-29 11:16:20 2019-10-29 11:18:16 t 1 1 141725 554 0.00 2019-10-29 11:16:31 2019-10-29 11:19:00 t 1 1 141731 578 0.00 2019-10-29 09:58:26 2019-10-29 11:21:15 t 1 1 141732 522 0.00 2019-10-29 11:21:31 2019-10-29 11:21:32 t 1 1 141736 522 0.00 2019-10-29 11:24:34 2019-10-29 11:26:16 t 1 1 141737 522 0.00 2019-10-29 11:26:36 2019-10-29 11:26:45 t 1 1 141738 451 0.00 2019-10-29 11:12:46 2019-10-29 11:27:25 t 1 1 141742 522 0.00 2019-10-29 11:28:56 2019-10-29 11:29:39 t 1 1 141749 220 0.00 2019-10-29 11:32:37 2019-10-29 11:32:52 t 1 1 141752 522 0.00 2019-10-29 11:33:09 2019-10-29 11:33:14 t 1 1 141754 522 0.00 2019-10-29 11:33:27 2019-10-29 11:33:39 t 1 1 141758 522 0.00 2019-10-29 11:32:56 2019-10-29 11:35:16 t 1 1 141760 522 0.00 2019-10-29 11:35:21 2019-10-29 11:35:27 t 1 1 141762 522 0.00 2019-10-29 11:35:32 2019-10-29 11:37:11 t 1 1 141765 522 0.00 2019-10-29 11:37:51 2019-10-29 11:38:24 t 1 1 70256 131 0.00 2018-07-30 10:25:59 2018-07-30 10:26:26 t 1 1 141766 522 0.00 2019-10-29 11:38:48 2019-10-29 11:39:05 t 1 1 141769 564 0.00 2019-10-29 11:31:14 2019-10-29 11:40:01 t 1 1 141771 522 0.00 2019-10-29 11:40:10 2019-10-29 11:40:22 t 1 1 141776 522 0.00 2019-10-29 11:41:41 2019-10-29 11:42:29 t 1 1 141778 220 0.00 2019-10-29 11:34:36 2019-10-29 11:43:08 t 1 1 141780 554 0.00 2019-10-29 11:37:31 2019-10-29 11:43:46 t 1 1 70277 131 0.00 2018-07-30 17:27:59 2018-07-30 17:29:55 t 1 1 141782 522 0.00 2019-10-29 11:43:56 2019-10-29 11:44:42 t 1 1 141785 522 0.00 2019-10-29 11:45:45 2019-10-29 11:46:59 t 1 1 141788 522 0.00 2019-10-29 11:47:38 2019-10-29 11:47:43 t 1 1 141789 516 0.00 2019-10-29 11:42:05 2019-10-29 11:48:12 t 1 1 141791 522 0.00 2019-10-29 11:48:59 2019-10-29 11:48:59 f 1 1 141795 220 0.00 2019-10-29 11:44:28 2019-10-29 11:53:37 t 1 1 141798 581 0.00 2019-10-29 11:31:04 2019-10-29 11:55:01 t 1 1 141803 581 0.00 2019-10-29 11:56:28 2019-10-29 11:58:47 t 1 1 141806 581 0.00 2019-10-29 12:01:30 2019-10-29 12:01:43 t 1 1 141808 615 0.00 2019-10-29 11:59:33 2019-10-29 12:02:03 t 1 1 141809 597 0.00 2019-10-29 12:00:45 2019-10-29 12:03:05 t 1 1 141817 503 0.00 2019-10-29 12:05:29 2019-10-29 12:07:05 t 1 1 141819 581 0.00 2019-10-29 12:03:27 2019-10-29 12:08:50 t 1 1 141820 485 0.00 2019-10-29 12:06:50 2019-10-29 12:09:45 t 1 1 141823 490 0.00 2019-10-29 12:06:51 2019-10-29 12:12:24 t 1 1 141824 481 0.00 2019-10-29 11:00:48 2019-10-29 12:13:36 t 1 1 141827 220 0.00 2019-10-29 12:14:37 2019-10-29 12:14:52 t 1 1 141621 566 0.00 2019-10-29 09:45:08 2019-10-29 10:17:28 t 1 1 141626 220 0.00 2019-10-29 10:21:29 2019-10-29 10:21:37 t 1 1 141630 522 0.00 2019-10-29 10:22:40 2019-10-29 10:22:54 t 1 1 141636 522 0.00 2019-10-29 10:26:43 2019-10-29 10:27:10 t 1 1 141639 619 0.00 2019-10-29 10:25:20 2019-10-29 10:28:40 t 1 1 141640 562 0.00 2019-10-29 10:28:58 2019-10-29 10:29:06 t 1 1 141641 522 0.00 2019-10-29 10:29:49 2019-10-29 10:30:02 t 1 1 141643 566 0.00 2019-10-29 10:17:28 2019-10-29 10:30:16 t 1 1 141644 220 0.00 2019-10-29 10:23:35 2019-10-29 10:32:00 t 1 1 141647 220 0.00 2019-10-29 10:31:59 2019-10-29 10:32:14 t 1 1 141658 562 0.00 2019-10-29 10:37:25 2019-10-29 10:38:10 t 1 1 141661 485 0.00 2019-10-29 10:27:29 2019-10-29 10:39:01 t 1 1 141663 481 0.00 2019-10-29 10:36:05 2019-10-29 10:39:43 t 1 1 141665 522 0.00 2019-10-29 10:41:33 2019-10-29 10:41:43 t 1 1 141666 220 0.00 2019-10-29 10:35:29 2019-10-29 10:42:30 t 1 1 141668 481 0.00 2019-10-29 10:39:43 2019-10-29 10:43:18 t 1 1 141671 615 0.00 2019-10-29 10:43:52 2019-10-29 10:45:27 t 1 1 141672 522 0.00 2019-10-29 10:44:34 2019-10-29 10:46:16 t 1 1 141684 522 0.00 2019-10-29 10:52:13 2019-10-29 10:53:17 t 1 1 141686 522 0.00 2019-10-29 10:53:26 2019-10-29 10:53:45 t 1 1 141687 481 0.00 2019-10-29 10:48:29 2019-10-29 10:53:59 t 1 1 141688 220 0.00 2019-10-29 10:44:04 2019-10-29 10:54:29 t 1 1 141692 522 0.00 2019-10-29 10:56:54 2019-10-29 10:57:21 t 1 1 141696 562 0.00 2019-10-29 10:58:08 2019-10-29 10:58:49 t 1 1 141699 456 0.00 2019-10-29 10:51:15 2019-10-29 10:59:56 t 1 1 141700 522 0.00 2019-10-29 10:59:42 2019-10-29 11:00:15 t 1 1 141703 220 0.00 2019-10-29 10:55:21 2019-10-29 11:05:00 t 1 1 141705 522 0.00 2019-10-29 11:01:32 2019-10-29 11:06:03 t 1 1 141712 611 0.00 2019-10-29 11:06:08 2019-10-29 11:10:39 t 1 1 141714 522 0.00 2019-10-29 11:10:43 2019-10-29 11:15:25 t 1 1 141716 220 0.00 2019-10-29 11:15:29 2019-10-29 11:15:37 t 1 1 141717 327 0.00 2019-10-29 10:55:28 2019-10-29 11:16:10 t 1 1 141723 591 0.00 2019-10-29 11:06:09 2019-10-29 11:17:33 t 1 1 141726 597 0.00 2019-10-29 11:18:06 2019-10-29 11:19:26 t 1 1 141728 522 0.00 2019-10-29 11:19:31 2019-10-29 11:19:32 t 1 1 141730 522 0.00 2019-10-29 11:19:45 2019-10-29 11:20:27 t 1 1 141733 522 0.00 2019-10-29 11:22:32 2019-10-29 11:24:16 t 1 1 141734 220 0.00 2019-10-29 11:16:50 2019-10-29 11:26:00 t 1 1 141739 522 0.00 2019-10-29 11:27:38 2019-10-29 11:27:46 t 1 1 141740 327 0.00 2019-10-29 11:27:07 2019-10-29 11:28:11 t 1 1 141743 522 0.00 2019-10-29 11:30:39 2019-10-29 11:30:47 t 1 1 141744 564 0.00 2019-10-29 10:22:09 2019-10-29 11:31:14 t 1 1 141746 615 0.00 2019-10-29 11:27:36 2019-10-29 11:32:09 t 1 1 70110 131 0.00 2018-07-28 13:10:04 2018-07-28 13:11:22 t 1 1 70113 131 0.00 2018-07-28 13:20:38 2018-07-28 13:21:54 t 1 1 141747 220 0.00 2019-10-29 11:26:33 2019-10-29 11:32:37 t 1 1 141750 522 0.00 2019-10-29 11:31:53 2019-10-29 11:32:55 t 1 1 141751 514 0.00 2019-10-29 06:02:42 2019-10-29 11:33:04 t 1 1 141753 578 0.00 2019-10-29 11:21:15 2019-10-29 11:33:17 t 1 1 141768 522 0.00 2019-10-29 11:39:36 2019-10-29 11:39:37 t 1 1 141770 522 0.00 2019-10-29 11:39:55 2019-10-29 11:40:03 t 1 1 141772 451 0.00 2019-10-29 11:27:25 2019-10-29 11:40:28 t 1 1 141773 522 0.00 2019-10-29 11:39:42 2019-10-29 11:40:43 t 1 1 141774 522 0.00 2019-10-29 11:40:30 2019-10-29 11:41:38 t 1 1 141777 564 0.00 2019-10-29 11:41:21 2019-10-29 11:42:31 t 1 1 141779 220 0.00 2019-10-29 11:43:07 2019-10-29 11:43:22 t 1 1 141781 522 0.00 2019-10-29 11:42:34 2019-10-29 11:43:53 t 1 1 141783 522 0.00 2019-10-29 11:44:48 2019-10-29 11:45:40 t 1 1 141784 591 0.00 2019-10-29 11:17:33 2019-10-29 11:46:30 t 1 1 141787 522 0.00 2019-10-29 11:47:32 2019-10-29 11:47:33 t 1 1 141790 522 0.00 2019-10-29 11:48:04 2019-10-29 11:48:31 t 1 1 141794 490 0.00 2019-10-29 11:49:50 2019-10-29 11:50:23 t 1 1 141799 585 0.00 2019-10-29 11:53:25 2019-10-29 11:55:24 t 1 1 141800 544 0.00 2019-10-29 11:53:11 2019-10-29 11:56:52 t 1 2 141801 544 0.00 2019-10-29 11:57:01 2019-10-29 11:57:51 t 1 2 141805 619 0.00 2019-10-29 11:54:49 2019-10-29 12:00:05 t 1 1 141810 220 0.00 2019-10-29 11:54:10 2019-10-29 12:03:19 t 1 1 141811 220 0.00 2019-10-29 12:03:19 2019-10-29 12:04:08 t 1 1 141813 361 0.00 2019-10-29 11:24:05 2019-10-29 12:04:42 t 1 2 141821 485 0.00 2019-10-29 12:10:43 2019-10-29 12:10:45 t 1 1 141822 615 0.00 2019-10-29 12:09:19 2019-10-29 12:11:14 t 1 1 141826 327 0.00 2019-10-29 11:28:50 2019-10-29 12:14:35 t 1 1 141828 327 0.00 2019-10-29 12:15:37 2019-10-29 12:15:37 f 1 1 141830 220 0.00 2019-10-29 12:13:52 2019-10-29 12:17:15 t 1 2 141832 597 0.00 2019-10-29 12:14:33 2019-10-29 12:19:38 t 1 1 141835 538 0.00 2019-10-29 12:22:14 2019-10-29 12:23:28 t 1 1 141837 485 0.00 2019-10-29 12:20:01 2019-10-29 12:25:23 t 1 1 141840 451 0.00 2019-10-29 11:43:06 2019-10-29 12:26:54 t 1 1 141841 591 0.00 2019-10-29 11:53:45 2019-10-29 12:28:04 t 1 1 141844 490 0.00 2019-10-29 12:17:13 2019-10-29 12:30:17 t 1 1 141846 585 0.00 2019-10-29 12:34:23 2019-10-29 12:35:57 t 1 1 141849 220 0.00 2019-10-29 12:38:20 2019-10-29 12:39:55 t 1 1 141854 412 0.00 2019-10-29 12:40:42 2019-10-29 12:41:58 t 1 1 141856 220 0.00 2019-10-29 12:49:20 2019-10-29 12:49:34 t 1 1 141857 591 0.00 2019-10-29 12:48:15 2019-10-29 12:50:31 t 1 1 141858 485 0.00 2019-10-29 12:51:14 2019-10-29 12:51:15 t 1 1 141859 554 0.00 2019-10-29 11:43:46 2019-10-29 12:52:17 t 1 1 141862 528 0.00 2019-10-29 12:36:28 2019-10-29 12:58:36 t 1 1 141865 597 0.00 2019-10-29 12:53:46 2019-10-29 12:59:35 t 1 1 141867 220 0.00 2019-10-29 12:37:20 2019-10-29 13:02:22 t 1 2 141868 451 0.00 2019-10-29 12:52:26 2019-10-29 13:04:39 t 1 1 141871 451 0.00 2019-10-29 13:05:25 2019-10-29 13:09:40 t 1 1 141879 461 0.00 2019-10-29 13:26:53 2019-10-29 13:26:53 f 1 2 141881 220 0.00 2019-10-29 13:28:14 2019-10-29 13:28:22 t 1 1 141888 516 0.00 2019-10-29 13:17:16 2019-10-29 13:33:33 t 1 1 141891 516 0.00 2019-10-29 13:33:33 2019-10-29 13:35:00 t 1 1 141894 591 0.00 2019-10-29 13:32:53 2019-10-29 13:38:43 t 1 1 141896 220 0.00 2019-10-29 13:38:43 2019-10-29 13:38:51 t 1 1 141899 372 0.00 2019-10-29 13:31:18 2019-10-29 13:41:23 t 1 2 141900 514 0.00 2019-10-29 13:21:34 2019-10-29 13:42:20 t 1 1 141902 514 0.00 2019-10-29 13:42:20 2019-10-29 13:49:06 t 1 1 141903 220 0.00 2019-10-29 13:39:13 2019-10-29 13:49:28 t 1 1 141905 220 0.00 2019-10-29 13:49:28 2019-10-29 13:49:37 t 1 1 141909 619 0.00 2019-10-29 13:53:09 2019-10-29 13:55:40 t 1 1 141910 570 0.00 2019-10-29 13:49:30 2019-10-29 13:57:12 t 1 1 141918 220 0.00 2019-10-29 14:01:40 2019-10-29 14:01:49 t 1 1 141921 325 0.00 2019-10-29 14:09:27 2019-10-29 14:09:27 f 1 2 141704 220 0.00 2019-10-29 11:04:59 2019-10-29 11:05:07 t 1 1 141707 522 0.00 2019-10-29 11:07:35 2019-10-29 11:07:40 t 1 1 141708 566 0.00 2019-10-29 11:03:17 2019-10-29 11:08:35 t 1 1 141713 451 0.00 2019-10-29 10:49:24 2019-10-29 11:12:47 t 1 1 141720 327 0.00 2019-10-29 11:16:31 2019-10-29 11:16:52 t 1 1 141727 522 0.00 2019-10-29 11:18:28 2019-10-29 11:19:30 t 1 1 141729 619 0.00 2019-10-29 11:17:46 2019-10-29 11:20:04 t 1 1 70352 131 0.00 2018-07-31 13:06:51 2018-07-31 13:07:57 t 1 1 141735 220 0.00 2019-10-29 11:25:59 2019-10-29 11:26:14 t 1 1 141741 522 0.00 2019-10-29 11:28:02 2019-10-29 11:28:46 t 1 1 141745 522 0.00 2019-10-29 11:31:18 2019-10-29 11:31:53 t 1 1 141748 522 0.00 2019-10-29 11:32:31 2019-10-29 11:32:45 t 1 1 141755 522 0.00 2019-10-29 11:33:50 2019-10-29 11:33:57 t 1 1 141756 522 0.00 2019-10-29 11:34:19 2019-10-29 11:34:25 t 1 1 141757 522 0.00 2019-10-29 11:34:30 2019-10-29 11:34:48 t 1 1 141759 522 0.00 2019-10-29 11:34:53 2019-10-29 11:35:21 t 1 1 141761 498 0.00 2019-10-29 11:02:17 2019-10-29 11:35:44 t 1 2 141763 585 0.00 2019-10-29 11:35:46 2019-10-29 11:37:47 t 1 1 141764 220 0.00 2019-10-29 11:22:47 2019-10-29 11:38:11 t 1 2 141767 522 0.00 2019-10-29 11:39:16 2019-10-29 11:39:23 t 1 1 141775 451 0.00 2019-10-29 11:40:28 2019-10-29 11:42:13 t 1 1 141786 522 0.00 2019-10-29 11:47:04 2019-10-29 11:47:19 t 1 1 141792 522 0.00 2019-10-29 11:48:50 2019-10-29 11:49:51 t 1 1 141793 522 0.00 2019-10-29 11:48:44 2019-10-29 11:50:16 t 1 1 141796 220 0.00 2019-10-29 11:53:36 2019-10-29 11:53:51 t 1 1 141797 220 0.00 2019-10-29 11:44:00 2019-10-29 11:54:32 t 1 2 141802 490 0.00 2019-10-29 11:50:23 2019-10-29 11:57:53 t 1 1 141804 615 0.00 2019-10-29 11:52:52 2019-10-29 11:59:33 t 1 1 141807 485 0.00 2019-10-29 11:59:51 2019-10-29 12:02:01 t 1 1 141812 220 0.00 2019-10-29 12:04:07 2019-10-29 12:04:16 t 1 1 141814 520 0.00 2019-10-29 12:02:22 2019-10-29 12:04:48 t 1 1 141815 564 0.00 2019-10-29 12:01:04 2019-10-29 12:05:10 t 1 1 141816 490 0.00 2019-10-29 11:57:53 2019-10-29 12:06:48 t 1 1 141818 220 0.00 2019-10-29 12:04:38 2019-10-29 12:08:02 t 1 1 70419 131 0.00 2018-08-01 12:16:39 2018-08-01 12:17:57 t 1 1 141825 485 0.00 2019-10-29 12:10:49 2019-10-29 12:13:49 t 1 1 141829 490 0.00 2019-10-29 12:12:24 2019-10-29 12:17:13 t 1 1 141833 538 0.00 2019-10-29 12:03:47 2019-10-29 12:19:50 t 1 1 141834 485 0.00 2019-10-29 12:14:18 2019-10-29 12:20:01 t 1 1 141838 544 0.00 2019-10-29 11:57:58 2019-10-29 12:25:27 t 1 2 141839 516 0.00 2019-10-29 12:23:19 2019-10-29 12:26:38 t 1 1 141842 516 0.00 2019-10-29 12:26:37 2019-10-29 12:28:12 t 1 1 141847 490 0.00 2019-10-29 12:30:17 2019-10-29 12:38:02 t 1 1 141848 619 0.00 2019-10-29 12:37:01 2019-10-29 12:38:36 t 1 1 141850 412 0.00 2019-10-29 12:30:19 2019-10-29 12:40:43 t 1 1 141852 490 0.00 2019-10-29 12:38:03 2019-10-29 12:41:04 t 1 1 141855 481 0.00 2019-10-29 12:13:36 2019-10-29 12:42:33 t 1 1 141860 451 0.00 2019-10-29 12:41:48 2019-10-29 12:52:26 t 1 1 141863 514 0.00 2019-10-29 12:43:21 2019-10-29 12:58:48 t 1 1 141872 611 0.00 2019-10-29 13:00:29 2019-10-29 13:13:38 t 1 1 141875 591 0.00 2019-10-29 13:01:56 2019-10-29 13:20:41 t 1 1 141877 619 0.00 2019-10-29 13:19:51 2019-10-29 13:24:28 t 1 1 141882 485 0.00 2019-10-29 13:21:29 2019-10-29 13:28:25 t 1 1 141883 544 0.00 2019-10-29 13:02:37 2019-10-29 13:29:26 t 1 2 141886 591 0.00 2019-10-29 13:25:42 2019-10-29 13:32:53 t 1 1 141887 607 0.00 2019-10-29 13:08:41 2019-10-29 13:33:24 t 1 1 141897 220 0.00 2019-10-29 13:38:59 2019-10-29 13:39:13 t 1 1 141901 619 0.00 2019-10-29 13:37:53 2019-10-29 13:44:20 t 1 1 141904 570 0.00 2019-10-29 13:38:53 2019-10-29 13:49:30 t 1 1 141906 361 0.00 2019-10-29 12:17:57 2019-10-29 13:49:48 t 1 2 141911 220 0.00 2019-10-29 13:49:59 2019-10-29 13:59:58 t 1 1 141913 220 0.00 2019-10-29 14:00:14 2019-10-29 14:00:22 t 1 1 141914 220 0.00 2019-10-29 14:00:30 2019-10-29 14:00:32 t 1 1 141915 220 0.00 2019-10-29 14:00:32 2019-10-29 14:01:08 t 1 1 141917 220 0.00 2019-10-29 14:01:24 2019-10-29 14:01:32 t 1 1 141924 325 0.00 2019-10-29 14:11:39 2019-10-29 14:11:39 f 1 2 141926 220 0.00 2019-10-29 14:02:09 2019-10-29 14:12:11 t 1 1 141936 220 0.00 2019-10-29 14:12:44 2019-10-29 14:21:07 t 1 1 141944 220 0.00 2019-10-29 14:22:40 2019-10-29 14:22:48 t 1 1 141945 522 0.00 2019-10-29 14:07:31 2019-10-29 14:23:05 t 1 1 141948 522 0.00 2019-10-29 14:23:10 2019-10-29 14:24:09 t 1 1 141956 220 0.00 2019-10-29 14:33:26 2019-10-29 14:33:34 t 1 1 141958 522 0.00 2019-10-29 14:25:27 2019-10-29 14:34:54 t 1 1 141960 522 0.00 2019-10-29 14:35:17 2019-10-29 14:35:18 t 1 1 141961 522 0.00 2019-10-29 14:36:07 2019-10-29 14:36:09 t 1 1 141969 574 0.00 2019-10-29 13:41:57 2019-10-29 14:43:03 t 1 1 141972 220 0.00 2019-10-29 14:44:12 2019-10-29 14:44:27 t 1 1 141974 522 0.00 2019-10-29 14:44:51 2019-10-29 14:44:52 t 1 1 141975 522 0.00 2019-10-29 14:45:04 2019-10-29 14:47:00 t 1 1 141977 619 0.00 2019-10-29 14:48:13 2019-10-29 14:51:38 t 1 1 141979 220 0.00 2019-10-29 14:48:07 2019-10-29 14:54:53 t 1 1 141982 522 0.00 2019-10-29 14:58:31 2019-10-29 14:59:52 t 1 1 141984 485 0.00 2019-10-29 14:48:49 2019-10-29 15:00:36 t 1 1 141989 522 0.00 2019-10-29 15:03:27 2019-10-29 15:05:03 t 1 1 141994 220 0.00 2019-10-29 15:07:25 2019-10-29 15:07:38 t 1 1 141998 522 0.00 2019-10-29 15:11:39 2019-10-29 15:11:51 t 1 1 141999 522 0.00 2019-10-29 15:11:59 2019-10-29 15:12:35 t 1 1 142004 619 0.00 2019-10-29 15:00:53 2019-10-29 15:16:55 t 1 1 142005 522 0.00 2019-10-29 15:13:39 2019-10-29 15:17:18 t 1 1 142008 522 0.00 2019-10-29 15:17:47 2019-10-29 15:20:28 t 1 1 142013 570 0.00 2019-10-29 15:17:32 2019-10-29 15:24:21 t 1 1 142016 451 0.00 2019-10-29 15:03:56 2019-10-29 15:29:57 t 1 1 142018 485 0.00 2019-10-29 15:21:49 2019-10-29 15:33:01 t 1 1 142022 220 0.00 2019-10-29 15:38:05 2019-10-29 15:38:19 t 1 1 142025 220 0.00 2019-10-29 15:42:46 2019-10-29 15:43:00 t 1 1 142028 485 0.00 2019-10-29 15:41:22 2019-10-29 15:47:55 t 1 1 142036 544 0.00 2019-10-29 15:36:49 2019-10-29 16:06:54 t 1 2 142037 587 0.00 2019-10-29 16:07:15 2019-10-29 16:07:18 t 1 1 142039 514 0.00 2019-10-29 16:02:50 2019-10-29 16:07:33 t 1 1 142041 522 0.00 2019-10-29 15:48:37 2019-10-29 16:11:54 t 1 1 142042 514 0.00 2019-10-29 16:09:11 2019-10-29 16:12:45 t 1 1 142045 587 0.00 2019-10-29 16:09:16 2019-10-29 16:14:06 t 1 1 142048 520 0.00 2019-10-29 16:13:35 2019-10-29 16:18:53 t 1 1 142050 587 0.00 2019-10-29 16:16:55 2019-10-29 16:20:02 t 1 1 142056 220 0.00 2019-10-29 16:23:11 2019-10-29 16:23:11 t 1 1 142058 451 0.00 2019-10-29 16:13:59 2019-10-29 16:23:26 t 1 1 142063 220 0.00 2019-10-29 16:26:13 2019-10-29 16:26:28 t 1 1 141831 220 0.00 2019-10-29 12:17:58 2019-10-29 12:19:16 t 1 1 141836 220 0.00 2019-10-29 12:25:07 2019-10-29 12:25:08 t 1 1 141843 412 0.00 2019-10-29 11:20:10 2019-10-29 12:30:00 t 1 1 141845 220 0.00 2019-10-29 12:34:56 2019-10-29 12:35:09 t 1 1 141851 220 0.00 2019-10-29 12:16:32 2019-10-29 12:40:56 t 1 2 141853 451 0.00 2019-10-29 12:26:54 2019-10-29 12:41:48 t 1 1 141861 485 0.00 2019-10-29 12:51:21 2019-10-29 12:53:54 t 1 1 141864 516 0.00 2019-10-29 12:44:24 2019-10-29 12:59:05 t 1 1 141866 220 0.00 2019-10-29 12:59:50 2019-10-29 12:59:51 t 1 1 141869 615 0.00 2019-10-29 13:04:35 2019-10-29 13:06:23 t 1 1 141870 220 0.00 2019-10-29 13:07:13 2019-10-29 13:07:27 t 1 1 141873 451 0.00 2019-10-29 13:09:40 2019-10-29 13:15:27 t 1 1 141874 220 0.00 2019-10-29 13:17:44 2019-10-29 13:17:59 t 1 1 141876 514 0.00 2019-10-29 12:58:48 2019-10-29 13:21:34 t 1 1 141878 591 0.00 2019-10-29 13:20:41 2019-10-29 13:25:42 t 1 1 141880 220 0.00 2019-10-29 13:27:30 2019-10-29 13:28:14 t 1 1 141884 597 0.00 2019-10-29 13:30:13 2019-10-29 13:31:06 t 1 1 141885 220 0.00 2019-10-29 13:04:35 2019-10-29 13:31:59 t 1 2 141889 585 0.00 2019-10-29 13:32:48 2019-10-29 13:34:37 t 1 1 141890 597 0.00 2019-10-29 13:31:06 2019-10-29 13:34:58 t 1 1 141892 331 0.00 2019-10-29 13:25:05 2019-10-29 13:37:10 t 1 1 141893 220 0.00 2019-10-29 13:36:42 2019-10-29 13:38:06 t 1 2 141895 220 0.00 2019-10-29 13:28:49 2019-10-29 13:38:43 t 1 1 141898 331 0.00 2019-10-29 13:36:18 2019-10-29 13:40:52 t 1 1 141907 331 0.00 2019-10-29 13:41:00 2019-10-29 13:50:15 t 1 1 141908 619 0.00 2019-10-29 13:48:44 2019-10-29 13:52:11 t 1 1 141912 220 0.00 2019-10-29 13:59:58 2019-10-29 14:00:06 t 1 1 141916 220 0.00 2019-10-29 14:01:08 2019-10-29 14:01:17 t 1 1 141919 570 0.00 2019-10-29 13:57:12 2019-10-29 14:05:49 t 1 1 141920 566 0.00 2019-10-29 13:41:14 2019-10-29 14:06:44 t 1 1 141922 325 0.00 2019-10-29 14:09:41 2019-10-29 14:09:41 f 1 2 141925 325 0.00 2019-10-29 14:12:00 2019-10-29 14:12:00 f 1 2 141927 220 0.00 2019-10-29 14:12:10 2019-10-29 14:12:25 t 1 1 141929 609 0.00 2019-10-29 14:11:22 2019-10-29 14:12:43 t 1 1 141931 609 0.00 2019-10-29 14:13:39 2019-10-29 14:13:58 t 1 1 141932 564 0.00 2019-10-29 12:58:49 2019-10-29 14:15:12 t 1 1 141938 325 0.00 2019-10-29 14:21:16 2019-10-29 14:21:16 f 1 2 141940 325 0.00 2019-10-29 14:21:39 2019-10-29 14:21:39 f 1 2 141942 325 0.00 2019-10-29 14:21:54 2019-10-29 14:21:54 f 1 2 141943 325 0.00 2019-10-29 14:22:20 2019-10-29 14:22:20 f 1 2 141947 325 0.00 2019-10-29 14:23:12 2019-10-29 14:23:12 f 1 2 141950 522 0.00 2019-10-29 14:25:08 2019-10-29 14:25:19 t 1 1 141951 325 0.00 2019-10-29 14:25:38 2019-10-29 14:25:38 f 1 2 141953 585 0.00 2019-10-29 14:24:41 2019-10-29 14:29:37 t 1 1 141954 591 0.00 2019-10-29 14:31:05 2019-10-29 14:32:06 t 1 1 141955 325 0.00 2019-10-29 14:33:23 2019-10-29 14:33:23 f 1 2 141959 522 0.00 2019-10-29 14:35:02 2019-10-29 14:35:03 t 1 1 141963 522 0.00 2019-10-29 14:38:02 2019-10-29 14:38:05 t 1 1 141968 528 0.00 2019-10-29 14:40:57 2019-10-29 14:42:37 t 1 1 141970 528 0.00 2019-10-29 14:42:37 2019-10-29 14:43:38 t 1 1 141971 220 0.00 2019-10-29 14:43:56 2019-10-29 14:44:04 t 1 1 141973 522 0.00 2019-10-29 14:39:08 2019-10-29 14:44:43 t 1 1 141976 412 0.00 2019-10-29 12:41:57 2019-10-29 14:50:21 t 1 1 141978 449 0.00 2019-10-29 14:53:07 2019-10-29 14:53:56 t 1 1 141980 522 0.00 2019-10-29 14:47:11 2019-10-29 14:56:49 t 1 1 141983 522 0.00 2019-10-29 15:00:00 2019-10-29 15:00:21 t 1 1 141985 522 0.00 2019-10-29 15:00:29 2019-10-29 15:01:54 t 1 1 141986 522 0.00 2019-10-29 15:02:06 2019-10-29 15:02:50 t 1 1 141987 220 0.00 2019-10-29 15:03:53 2019-10-29 15:04:06 t 1 1 141992 556 0.00 2019-10-29 10:30:07 2019-10-29 15:06:58 t 1 1 141993 554 0.00 2019-10-29 14:48:20 2019-10-29 15:07:30 t 1 1 141996 485 0.00 2019-10-29 15:00:36 2019-10-29 15:10:41 t 1 1 141997 522 0.00 2019-10-29 15:10:35 2019-10-29 15:11:31 t 1 1 142003 556 0.00 2019-10-29 15:06:58 2019-10-29 15:16:53 t 1 1 142007 220 0.00 2019-10-29 15:17:55 2019-10-29 15:18:10 t 1 1 142009 619 0.00 2019-10-29 15:16:55 2019-10-29 15:20:36 t 1 1 142010 485 0.00 2019-10-29 15:10:41 2019-10-29 15:21:49 t 1 1 142012 522 0.00 2019-10-29 15:20:50 2019-10-29 15:23:30 t 1 1 142014 522 0.00 2019-10-29 15:24:58 2019-10-29 15:25:56 t 1 1 142015 220 0.00 2019-10-29 15:28:25 2019-10-29 15:28:54 t 1 1 142017 451 0.00 2019-10-29 15:29:57 2019-10-29 15:32:55 t 1 1 142019 607 0.00 2019-10-29 15:28:55 2019-10-29 15:34:10 t 1 1 142026 581 0.00 2019-10-29 15:18:17 2019-10-29 15:45:00 t 1 1 142027 220 0.00 2019-10-29 15:46:03 2019-10-29 15:46:17 t 1 1 142030 587 0.00 2019-10-29 15:50:59 2019-10-29 15:54:24 t 1 1 142031 585 0.00 2019-10-29 15:52:59 2019-10-29 15:57:25 t 1 1 142032 587 0.00 2019-10-29 15:54:58 2019-10-29 16:01:06 t 1 1 142038 621 0.00 2019-10-29 16:01:19 2019-10-29 16:07:24 t 1 1 142040 587 0.00 2019-10-29 16:08:27 2019-10-29 16:09:17 t 1 1 142043 522 0.00 2019-10-29 16:12:01 2019-10-29 16:12:54 t 1 1 142044 621 0.00 2019-10-29 16:07:24 2019-10-29 16:14:06 t 1 1 142047 587 0.00 2019-10-29 16:14:56 2019-10-29 16:16:39 t 1 1 142052 587 0.00 2019-10-29 16:20:17 2019-10-29 16:20:54 t 1 1 142053 587 0.00 2019-10-29 16:21:05 2019-10-29 16:21:19 t 1 1 142055 220 0.00 2019-10-29 16:22:51 2019-10-29 16:23:03 t 1 1 142057 587 0.00 2019-10-29 16:22:34 2019-10-29 16:23:17 t 1 1 142059 621 0.00 2019-10-29 16:19:01 2019-10-29 16:23:46 t 1 1 142060 587 0.00 2019-10-29 16:23:21 2019-10-29 16:23:58 t 1 1 142064 621 0.00 2019-10-29 16:23:46 2019-10-29 16:27:51 t 1 1 142069 621 0.00 2019-10-29 16:27:51 2019-10-29 16:31:12 t 1 1 142070 554 0.00 2019-10-29 16:20:19 2019-10-29 16:32:37 t 1 1 142071 522 0.00 2019-10-29 16:13:01 2019-10-29 16:33:25 t 1 1 142072 621 0.00 2019-10-29 16:31:12 2019-10-29 16:34:22 t 1 1 142085 395 0.00 2019-10-29 16:42:56 2019-10-29 16:43:59 t 1 2 142086 587 0.00 2019-10-29 16:38:41 2019-10-29 16:44:44 t 1 1 142087 395 0.00 2019-10-29 16:44:22 2019-10-29 16:45:26 t 1 2 142090 395 0.00 2019-10-29 16:45:47 2019-10-29 16:46:51 t 1 2 142092 607 0.00 2019-10-29 16:32:49 2019-10-29 16:47:40 t 1 1 142093 538 0.00 2019-10-29 16:29:51 2019-10-29 16:48:55 t 1 1 142099 585 0.00 2019-10-29 16:44:41 2019-10-29 16:53:09 t 1 1 142101 621 0.00 2019-10-29 16:50:01 2019-10-29 16:54:47 t 1 1 142102 451 0.00 2019-10-29 16:53:24 2019-10-29 16:54:47 t 1 1 142103 395 0.00 2019-10-29 16:53:28 2019-10-29 16:55:27 t 1 2 142107 585 0.00 2019-10-29 16:54:25 2019-10-29 16:58:40 t 1 1 142112 621 0.00 2019-10-29 16:57:30 2019-10-29 17:00:44 t 1 1 142113 522 0.00 2019-10-29 17:00:17 2019-10-29 17:01:18 t 1 1 142115 570 0.00 2019-10-29 16:59:39 2019-10-29 17:02:08 t 1 1 141923 325 0.00 2019-10-29 14:10:11 2019-10-29 14:10:11 f 1 2 141928 544 0.00 2019-10-29 14:11:59 2019-10-29 14:12:33 t 1 2 70343 131 0.00 2018-07-31 10:39:43 2018-07-31 10:40:56 t 1 1 141930 609 0.00 2019-10-29 14:12:43 2019-10-29 14:13:40 t 1 1 141933 570 0.00 2019-10-29 14:05:49 2019-10-29 14:15:25 t 1 1 141934 585 0.00 2019-10-29 14:05:01 2019-10-29 14:19:28 t 1 1 141935 325 0.00 2019-10-29 14:21:01 2019-10-29 14:21:01 f 1 2 141937 325 0.00 2019-10-29 14:21:08 2019-10-29 14:21:08 f 1 2 141939 566 0.00 2019-10-29 14:06:44 2019-10-29 14:21:36 t 1 1 141941 220 0.00 2019-10-29 14:20:17 2019-10-29 14:21:40 t 1 2 141946 220 0.00 2019-10-29 14:22:56 2019-10-29 14:23:11 t 1 1 141949 570 0.00 2019-10-29 14:15:25 2019-10-29 14:24:42 t 1 1 141952 570 0.00 2019-10-29 14:24:42 2019-10-29 14:28:29 t 1 1 141957 451 0.00 2019-10-29 13:29:29 2019-10-29 14:34:48 t 1 1 141962 522 0.00 2019-10-29 14:36:23 2019-10-29 14:36:23 t 1 1 141964 538 0.00 2019-10-29 12:23:28 2019-10-29 14:38:17 t 1 1 141965 528 0.00 2019-10-29 14:37:00 2019-10-29 14:40:54 t 1 1 141966 599 0.00 2019-10-29 14:38:26 2019-10-29 14:41:02 t 1 1 141967 514 0.00 2019-10-29 13:49:06 2019-10-29 14:42:28 t 1 1 141981 522 0.00 2019-10-29 14:56:54 2019-10-29 14:57:24 t 1 1 141988 481 0.00 2019-10-29 12:42:33 2019-10-29 15:04:47 t 1 1 141990 522 0.00 2019-10-29 15:05:36 2019-10-29 15:05:36 t 1 1 141991 522 0.00 2019-10-29 15:05:42 2019-10-29 15:06:48 t 1 1 141995 522 0.00 2019-10-29 15:07:32 2019-10-29 15:08:30 t 1 1 142000 514 0.00 2019-10-29 14:42:28 2019-10-29 15:12:46 t 1 1 142001 522 0.00 2019-10-29 15:12:47 2019-10-29 15:13:12 t 1 1 142002 514 0.00 2019-10-29 15:12:46 2019-10-29 15:15:46 t 1 1 142006 570 0.00 2019-10-29 15:17:18 2019-10-29 15:17:29 t 1 1 142011 514 0.00 2019-10-29 15:15:45 2019-10-29 15:22:06 t 1 1 142020 412 0.00 2019-10-29 14:57:21 2019-10-29 15:36:01 t 1 1 142021 412 0.00 2019-10-29 15:36:37 2019-10-29 15:38:18 t 1 1 142023 485 0.00 2019-10-29 15:33:01 2019-10-29 15:41:22 t 1 1 142024 554 0.00 2019-10-29 15:33:51 2019-10-29 15:41:57 t 1 1 142029 522 0.00 2019-10-29 15:26:04 2019-10-29 15:48:37 t 1 1 142033 587 0.00 2019-10-29 16:02:10 2019-10-29 16:02:19 t 1 1 142034 514 0.00 2019-10-29 15:22:05 2019-10-29 16:02:51 t 1 1 142035 587 0.00 2019-10-29 16:02:46 2019-10-29 16:06:21 t 1 1 142046 587 0.00 2019-10-29 16:14:25 2019-10-29 16:14:43 t 1 1 142049 621 0.00 2019-10-29 16:14:06 2019-10-29 16:19:01 t 1 1 142051 554 0.00 2019-10-29 15:42:32 2019-10-29 16:20:19 t 1 1 142054 587 0.00 2019-10-29 16:21:22 2019-10-29 16:22:22 t 1 1 142061 587 0.00 2019-10-29 16:24:15 2019-10-29 16:25:51 t 1 1 142062 361 0.00 2019-10-29 13:55:29 2019-10-29 16:26:27 t 1 2 142065 585 0.00 2019-10-29 16:16:57 2019-10-29 16:29:15 t 1 1 142067 538 0.00 2019-10-29 16:29:41 2019-10-29 16:29:48 t 1 1 142074 520 0.00 2019-10-29 16:22:57 2019-10-29 16:35:06 t 1 1 142075 514 0.00 2019-10-29 16:22:08 2019-10-29 16:35:26 t 1 1 142077 296 0.00 2019-10-29 16:37:39 2019-10-29 16:37:39 f 1 2 142079 621 0.00 2019-10-29 16:34:22 2019-10-29 16:38:29 t 1 1 142083 395 0.00 2019-10-29 16:41:32 2019-10-29 16:42:36 t 1 2 142089 481 0.00 2019-10-29 15:04:47 2019-10-29 16:46:32 t 1 1 142096 514 0.00 2019-10-29 16:35:25 2019-10-29 16:50:36 t 1 1 142100 451 0.00 2019-10-29 16:41:09 2019-10-29 16:53:24 t 1 1 142105 621 0.00 2019-10-29 16:54:47 2019-10-29 16:57:30 t 1 1 142106 220 0.00 2019-10-29 16:57:28 2019-10-29 16:58:00 t 1 1 142108 412 0.00 2019-10-29 16:50:47 2019-10-29 16:58:52 t 1 1 142114 522 0.00 2019-10-29 17:00:11 2019-10-29 17:01:18 t 1 1 142116 621 0.00 2019-10-29 17:00:44 2019-10-29 17:04:56 t 1 1 142120 619 0.00 2019-10-29 17:03:19 2019-10-29 17:07:31 t 1 1 142121 516 0.00 2019-10-29 17:00:31 2019-10-29 17:08:35 t 1 1 142124 619 0.00 2019-10-29 17:09:17 2019-10-29 17:12:36 t 1 1 70532 131 0.00 2018-08-02 20:48:28 2018-08-02 20:49:38 t 1 1 142131 619 0.00 2019-10-29 17:17:46 2019-10-29 17:20:56 t 1 1 142137 613 0.00 2019-10-29 17:22:34 2019-10-29 17:23:34 t 1 1 142140 395 0.00 2019-10-29 16:55:38 2019-10-29 17:26:17 t 1 2 142141 451 0.00 2019-10-29 17:11:54 2019-10-29 17:28:45 t 1 1 142142 412 0.00 2019-10-29 17:27:19 2019-10-29 17:29:18 t 1 1 142144 220 0.00 2019-10-29 17:29:21 2019-10-29 17:29:54 t 1 1 142149 488 0.00 2019-10-29 17:20:54 2019-10-29 17:35:22 t 1 1 142155 607 0.00 2019-10-29 17:18:31 2019-10-29 17:47:10 t 1 1 142160 570 0.00 2019-10-29 17:48:42 2019-10-29 17:51:27 t 1 1 142162 619 0.00 2019-10-29 17:43:20 2019-10-29 17:54:03 t 1 1 142164 591 0.00 2019-10-29 17:24:08 2019-10-29 17:54:54 t 1 1 142167 488 0.00 2019-10-29 17:48:13 2019-10-29 18:00:30 t 1 1 142169 613 0.00 2019-10-29 18:02:15 2019-10-29 18:03:16 t 1 1 142172 220 0.00 2019-10-29 18:08:55 2019-10-29 18:09:09 t 1 1 142173 412 0.00 2019-10-29 17:54:18 2019-10-29 18:10:45 t 1 1 142176 585 0.00 2019-10-29 18:00:11 2019-10-29 18:12:13 t 1 1 142179 372 0.00 2019-10-29 18:13:30 2019-10-29 18:14:35 t 1 2 142185 488 0.00 2019-10-29 18:04:11 2019-10-29 18:24:48 t 1 1 142190 591 0.00 2019-10-29 18:22:24 2019-10-29 18:30:10 t 1 1 142194 522 0.00 2019-10-29 18:32:22 2019-10-29 18:32:32 t 1 1 142196 522 0.00 2019-10-29 18:31:36 2019-10-29 18:33:18 t 1 1 142197 481 0.00 2019-10-29 18:24:53 2019-10-29 18:34:05 t 1 1 142199 522 0.00 2019-10-29 18:34:37 2019-10-29 18:34:41 t 1 1 142203 522 0.00 2019-10-29 18:35:46 2019-10-29 18:37:18 t 1 1 142204 591 0.00 2019-10-29 18:30:10 2019-10-29 18:38:19 t 1 1 142208 587 0.00 2019-10-29 18:38:37 2019-10-29 18:42:15 t 1 1 142209 587 0.00 2019-10-29 18:42:53 2019-10-29 18:44:18 t 1 1 142212 516 0.00 2019-10-29 18:41:02 2019-10-29 18:47:34 t 1 1 142213 613 0.00 2019-10-29 18:43:37 2019-10-29 18:49:17 t 1 1 142215 220 0.00 2019-10-29 18:41:47 2019-10-29 18:51:17 t 1 1 142219 514 0.00 2019-10-29 18:30:35 2019-10-29 18:56:20 t 1 1 142226 220 0.00 2019-10-29 18:39:14 2019-10-29 19:09:56 t 1 2 142233 615 0.00 2019-10-29 19:10:39 2019-10-29 19:16:25 t 1 1 142235 220 0.00 2019-10-29 19:22:45 2019-10-29 19:22:47 t 1 1 142236 619 0.00 2019-10-29 19:21:35 2019-10-29 19:25:20 t 1 1 142239 220 0.00 2019-10-29 19:32:01 2019-10-29 19:32:12 t 1 1 142242 220 0.00 2019-10-29 19:32:33 2019-10-29 19:32:44 t 1 1 142245 220 0.00 2019-10-29 19:33:05 2019-10-29 19:33:14 t 1 1 142250 220 0.00 2019-10-29 19:35:00 2019-10-29 19:35:57 t 1 1 142251 220 0.00 2019-10-29 19:35:59 2019-10-29 19:38:12 t 1 1 142254 585 0.00 2019-10-29 19:36:24 2019-10-29 19:42:27 t 1 1 142255 220 0.00 2019-10-29 19:42:22 2019-10-29 19:42:58 t 1 1 142257 220 0.00 2019-10-29 19:42:58 2019-10-29 19:43:34 t 1 1 142258 220 0.00 2019-10-29 19:43:34 2019-10-29 19:44:11 t 1 1 142260 220 0.00 2019-10-29 19:44:10 2019-10-29 19:44:48 t 1 1 142066 485 0.00 2019-10-29 16:11:32 2019-10-29 16:29:21 t 1 1 142068 587 0.00 2019-10-29 16:26:40 2019-10-29 16:30:25 t 1 1 142073 587 0.00 2019-10-29 16:30:28 2019-10-29 16:34:41 t 1 1 142076 587 0.00 2019-10-29 16:34:55 2019-10-29 16:35:57 t 1 1 142078 220 0.00 2019-10-29 16:36:45 2019-10-29 16:37:46 t 1 1 142080 520 0.00 2019-10-29 16:35:05 2019-10-29 16:39:24 t 1 1 142081 395 0.00 2019-10-29 16:40:15 2019-10-29 16:41:17 t 1 2 142082 621 0.00 2019-10-29 16:38:29 2019-10-29 16:42:32 t 1 1 142084 516 0.00 2019-10-29 16:32:36 2019-10-29 16:42:49 t 1 1 142088 621 0.00 2019-10-29 16:42:32 2019-10-29 16:46:08 t 1 1 142091 220 0.00 2019-10-29 16:45:58 2019-10-29 16:47:13 t 1 1 142094 412 0.00 2019-10-29 16:07:33 2019-10-29 16:49:01 t 1 1 142095 621 0.00 2019-10-29 16:46:08 2019-10-29 16:50:01 t 1 1 142097 581 0.00 2019-10-29 16:35:12 2019-10-29 16:50:39 t 1 1 142098 587 0.00 2019-10-29 16:45:33 2019-10-29 16:51:20 t 1 1 142104 220 0.00 2019-10-29 16:56:43 2019-10-29 16:56:58 t 1 1 142109 522 0.00 2019-10-29 16:33:25 2019-10-29 16:59:53 t 1 1 142110 451 0.00 2019-10-29 16:54:47 2019-10-29 17:00:10 t 1 1 142111 522 0.00 2019-10-29 17:00:33 2019-10-29 17:00:33 f 1 1 142117 587 0.00 2019-10-29 16:51:59 2019-10-29 17:05:23 t 1 1 142119 621 0.00 2019-10-29 17:04:56 2019-10-29 17:07:18 t 1 1 142125 587 0.00 2019-10-29 17:06:18 2019-10-29 17:12:51 t 1 1 142130 585 0.00 2019-10-29 16:58:40 2019-10-29 17:20:00 t 1 1 142133 621 0.00 2019-10-29 17:07:18 2019-10-29 17:22:30 t 1 1 142134 613 0.00 2019-10-29 17:18:48 2019-10-29 17:22:34 t 1 1 142135 595 0.00 2019-10-29 17:21:51 2019-10-29 17:23:07 t 1 1 142138 585 0.00 2019-10-29 17:19:59 2019-10-29 17:24:24 t 1 1 142145 339 0.00 2019-10-29 17:12:34 2019-10-29 17:31:40 t 1 2 142147 587 0.00 2019-10-29 17:22:37 2019-10-29 17:34:14 t 1 1 142150 570 0.00 2019-10-29 17:33:12 2019-10-29 17:36:47 t 1 1 142152 613 0.00 2019-10-29 17:23:53 2019-10-29 17:37:53 t 1 1 142157 570 0.00 2019-10-29 17:36:44 2019-10-29 17:48:40 t 1 1 142159 587 0.00 2019-10-29 17:45:53 2019-10-29 17:50:59 t 1 1 142165 587 0.00 2019-10-29 17:51:14 2019-10-29 17:55:36 t 1 1 142166 220 0.00 2019-10-29 17:59:29 2019-10-29 17:59:41 t 1 1 142170 570 0.00 2019-10-29 17:51:35 2019-10-29 18:04:19 t 1 1 142175 372 0.00 2019-10-29 18:09:56 2019-10-29 18:11:05 t 1 2 142177 456 0.00 2019-10-29 18:09:34 2019-10-29 18:12:48 t 1 1 142180 591 0.00 2019-10-29 18:05:11 2019-10-29 18:14:39 t 1 1 142181 372 0.00 2019-10-29 18:15:14 2019-10-29 18:16:17 t 1 2 142182 220 0.00 2019-10-29 18:19:26 2019-10-29 18:19:40 t 1 1 142183 570 0.00 2019-10-29 18:05:01 2019-10-29 18:22:03 t 1 1 142188 220 0.00 2019-10-29 18:29:56 2019-10-29 18:30:04 t 1 1 142191 220 0.00 2019-10-29 18:30:12 2019-10-29 18:30:17 t 1 1 142193 522 0.00 2019-10-29 18:30:14 2019-10-29 18:30:36 t 1 1 142198 522 0.00 2019-10-29 18:32:45 2019-10-29 18:34:18 t 1 1 142202 522 0.00 2019-10-29 18:34:53 2019-10-29 18:36:18 t 1 1 142205 587 0.00 2019-10-29 18:32:43 2019-10-29 18:38:24 t 1 1 142206 619 0.00 2019-10-29 18:38:09 2019-10-29 18:40:17 t 1 1 142207 220 0.00 2019-10-29 18:40:34 2019-10-29 18:40:55 t 1 1 142214 587 0.00 2019-10-29 18:43:14 2019-10-29 18:49:25 t 1 1 142217 619 0.00 2019-10-29 18:40:17 2019-10-29 18:52:20 t 1 1 142218 619 0.00 2019-10-29 18:53:17 2019-10-29 18:55:22 t 1 1 142220 556 0.00 2019-10-29 18:46:38 2019-10-29 18:58:30 t 1 1 142221 220 0.00 2019-10-29 18:51:50 2019-10-29 19:01:46 t 1 1 142222 220 0.00 2019-10-29 19:01:46 2019-10-29 19:02:19 t 1 1 142228 456 0.00 2019-10-29 19:09:18 2019-10-29 19:11:30 t 1 1 142232 587 0.00 2019-10-29 19:03:02 2019-10-29 19:16:09 t 1 1 142238 220 0.00 2019-10-29 19:03:00 2019-10-29 19:32:02 t 1 1 142241 220 0.00 2019-10-29 19:32:22 2019-10-29 19:32:33 t 1 1 142246 220 0.00 2019-10-29 19:30:24 2019-10-29 19:34:18 t 1 1 142248 220 0.00 2019-10-29 19:34:18 2019-10-29 19:34:45 t 1 1 142252 220 0.00 2019-10-29 19:33:15 2019-10-29 19:38:52 t 1 1 142256 570 0.00 2019-10-29 19:34:32 2019-10-29 19:43:20 t 1 1 142259 619 0.00 2019-10-29 19:40:37 2019-10-29 19:44:30 t 1 1 142261 220 0.00 2019-10-29 19:44:48 2019-10-29 19:45:04 t 1 1 142262 220 0.00 2019-10-29 19:45:04 2019-10-29 19:45:42 t 1 1 142263 220 0.00 2019-10-29 19:45:42 2019-10-29 19:46:34 t 1 1 142270 514 0.00 2019-10-29 18:56:20 2019-10-29 19:52:38 t 1 1 142272 514 0.00 2019-10-29 19:52:37 2019-10-29 19:53:24 t 1 1 142278 514 0.00 2019-10-29 19:54:16 2019-10-29 19:55:17 t 1 1 142279 220 0.00 2019-10-29 19:54:43 2019-10-29 19:55:18 t 1 1 142284 514 0.00 2019-10-29 19:56:14 2019-10-29 19:57:01 t 1 1 142287 538 0.00 2019-10-29 18:19:26 2019-10-29 19:57:28 t 1 1 142294 520 0.00 2019-10-29 19:58:20 2019-10-29 20:10:03 t 1 1 142296 220 0.00 2019-10-29 19:57:41 2019-10-29 20:10:35 t 1 1 142297 220 0.00 2019-10-29 20:10:34 2019-10-29 20:11:06 t 1 1 142306 331 0.00 2019-10-29 20:17:38 2019-10-29 20:17:38 f 1 1 142309 220 0.00 2019-10-29 20:01:42 2019-10-29 20:18:10 t 1 2 142311 220 0.00 2019-10-29 20:12:07 2019-10-29 20:21:33 t 1 1 142320 585 0.00 2019-10-29 20:30:51 2019-10-29 20:32:45 t 1 1 142321 544 0.00 2019-10-29 20:30:57 2019-10-29 20:34:10 t 1 2 142324 361 0.00 2019-10-29 19:15:20 2019-10-29 20:34:29 t 1 2 142329 220 0.00 2019-10-29 20:31:41 2019-10-29 20:40:41 t 1 1 142332 581 0.00 2019-10-29 20:43:14 2019-10-29 20:43:34 t 1 1 142333 292 0.00 2019-10-29 20:46:19 2019-10-29 20:46:19 f 1 2 142337 581 0.00 2019-10-29 20:47:02 2019-10-29 20:48:17 t 1 1 142356 591 0.00 2019-10-29 20:59:15 2019-10-29 21:03:07 t 1 1 142361 581 0.00 2019-10-29 21:06:07 2019-10-29 21:06:51 t 1 1 142363 570 0.00 2019-10-29 21:01:39 2019-10-29 21:10:32 t 1 1 142364 220 0.00 2019-10-29 19:55:55 2019-10-29 21:10:32 t 1 1 142371 613 0.00 2019-10-29 21:12:11 2019-10-29 21:15:42 t 1 1 142372 585 0.00 2019-10-29 21:15:21 2019-10-29 21:17:57 t 1 1 142374 591 0.00 2019-10-29 21:15:14 2019-10-29 21:19:06 t 1 1 142376 570 0.00 2019-10-29 21:10:32 2019-10-29 21:19:45 t 1 1 142378 528 0.00 2019-10-29 21:06:32 2019-10-29 21:20:22 t 1 1 142380 220 0.00 2019-10-29 21:20:49 2019-10-29 21:21:42 t 1 1 142381 597 0.00 2019-10-29 21:19:05 2019-10-29 21:23:12 t 1 1 142382 613 0.00 2019-10-29 21:19:18 2019-10-29 21:23:59 t 1 1 142383 619 0.00 2019-10-29 21:08:03 2019-10-29 21:24:59 t 1 1 142386 512 0.00 2019-10-29 21:14:49 2019-10-29 21:25:49 t 1 1 142387 528 0.00 2019-10-29 21:20:22 2019-10-29 21:26:49 t 1 1 142389 220 0.00 2019-10-29 21:25:35 2019-10-29 21:29:08 t 1 1 142390 220 0.00 2019-10-29 21:29:08 2019-10-29 21:29:43 t 1 1 142392 220 0.00 2019-10-29 21:30:44 2019-10-29 21:30:52 t 1 1 142393 585 0.00 2019-10-29 21:25:28 2019-10-29 21:31:04 t 1 1 142394 578 0.00 2019-10-29 17:42:29 2019-10-29 21:31:25 t 1 1 70654 131 0.00 2018-08-04 12:37:04 2018-08-04 12:37:04 f 1 1 70656 131 0.00 2018-08-04 12:40:49 2018-08-04 12:40:49 f 1 1 142118 485 0.00 2019-10-29 16:59:42 2019-10-29 17:05:51 t 1 1 142122 220 0.00 2019-10-29 17:08:00 2019-10-29 17:08:55 t 1 1 142123 451 0.00 2019-10-29 17:00:10 2019-10-29 17:11:54 t 1 1 142126 587 0.00 2019-10-29 17:13:10 2019-10-29 17:14:54 t 1 1 142127 412 0.00 2019-10-29 17:06:14 2019-10-29 17:15:27 t 1 1 142128 607 0.00 2019-10-29 16:47:40 2019-10-29 17:18:31 t 1 1 142129 220 0.00 2019-10-29 17:18:51 2019-10-29 17:19:23 t 1 1 142132 587 0.00 2019-10-29 17:19:54 2019-10-29 17:22:07 t 1 1 142136 412 0.00 2019-10-29 17:16:25 2019-10-29 17:23:33 t 1 1 142139 619 0.00 2019-10-29 17:20:56 2019-10-29 17:26:01 t 1 1 142143 516 0.00 2019-10-29 17:08:45 2019-10-29 17:29:40 t 1 1 142146 621 0.00 2019-10-29 17:22:30 2019-10-29 17:33:50 t 1 1 142148 412 0.00 2019-10-29 17:29:14 2019-10-29 17:35:04 t 1 1 142151 587 0.00 2019-10-29 17:34:31 2019-10-29 17:36:51 t 1 1 142153 220 0.00 2019-10-29 17:39:51 2019-10-29 17:40:24 t 1 1 142154 578 0.00 2019-10-29 17:28:25 2019-10-29 17:42:29 t 1 1 142156 488 0.00 2019-10-29 17:35:22 2019-10-29 17:48:13 t 1 1 142158 597 0.00 2019-10-29 17:27:53 2019-10-29 17:49:09 t 1 1 142161 597 0.00 2019-10-29 17:49:08 2019-10-29 17:51:52 t 1 1 142163 412 0.00 2019-10-29 17:38:14 2019-10-29 17:54:18 t 1 1 142168 613 0.00 2019-10-29 18:00:08 2019-10-29 18:01:20 t 1 1 142171 591 0.00 2019-10-29 17:54:54 2019-10-29 18:05:11 t 1 1 142174 613 0.00 2019-10-29 18:03:35 2019-10-29 18:10:50 t 1 1 142178 613 0.00 2019-10-29 18:10:50 2019-10-29 18:14:14 t 1 1 142184 591 0.00 2019-10-29 18:14:39 2019-10-29 18:22:24 t 1 1 142186 481 0.00 2019-10-29 16:46:32 2019-10-29 18:24:55 t 1 1 142187 564 0.00 2019-10-29 17:22:29 2019-10-29 18:28:36 t 1 1 142189 522 0.00 2019-10-29 18:20:31 2019-10-29 18:30:09 t 1 1 70719 131 0.00 2018-08-05 10:49:40 2018-08-05 10:49:40 f 1 1 142192 514 0.00 2019-10-29 17:19:02 2019-10-29 18:30:35 t 1 1 142195 522 0.00 2019-10-29 18:32:57 2019-10-29 18:32:57 f 1 1 142200 522 0.00 2019-10-29 18:33:44 2019-10-29 18:35:18 t 1 1 142201 522 0.00 2019-10-29 18:35:55 2019-10-29 18:35:55 f 1 1 142210 556 0.00 2019-10-29 15:16:53 2019-10-29 18:46:38 t 1 1 142211 585 0.00 2019-10-29 18:44:36 2019-10-29 18:47:05 t 1 1 142216 220 0.00 2019-10-29 18:51:17 2019-10-29 18:51:50 t 1 1 142223 611 0.00 2019-10-29 19:02:02 2019-10-29 19:03:01 t 1 1 142224 456 0.00 2019-10-29 19:08:45 2019-10-29 19:08:56 t 1 1 142225 498 0.00 2019-10-29 17:49:55 2019-10-29 19:09:40 t 1 2 142227 556 0.00 2019-10-29 18:58:30 2019-10-29 19:11:02 t 1 1 142229 611 0.00 2019-10-29 19:03:01 2019-10-29 19:11:54 t 1 1 142230 220 0.00 2019-10-29 19:12:16 2019-10-29 19:12:49 t 1 1 142231 619 0.00 2019-10-29 19:01:24 2019-10-29 19:15:21 t 1 1 142234 587 0.00 2019-10-29 19:16:09 2019-10-29 19:21:21 t 1 1 142237 591 0.00 2019-10-29 19:00:05 2019-10-29 19:28:55 t 1 1 142240 220 0.00 2019-10-29 19:32:12 2019-10-29 19:32:23 t 1 1 142243 220 0.00 2019-10-29 19:32:43 2019-10-29 19:32:55 t 1 1 142244 220 0.00 2019-10-29 19:32:55 2019-10-29 19:33:06 t 1 1 142247 570 0.00 2019-10-29 19:23:30 2019-10-29 19:34:32 t 1 1 142249 619 0.00 2019-10-29 19:26:05 2019-10-29 19:35:14 t 1 1 142253 220 0.00 2019-10-29 19:38:59 2019-10-29 19:42:23 t 1 1 142265 220 0.00 2019-10-29 19:49:09 2019-10-29 19:49:42 t 1 1 142268 220 0.00 2019-10-29 19:51:06 2019-10-29 19:51:42 t 1 1 142269 220 0.00 2019-10-29 19:51:41 2019-10-29 19:52:16 t 1 1 142275 514 0.00 2019-10-29 19:53:24 2019-10-29 19:54:16 t 1 1 142276 220 0.00 2019-10-29 19:54:07 2019-10-29 19:54:43 t 1 1 142277 597 0.00 2019-10-29 19:53:12 2019-10-29 19:55:06 t 1 1 142280 220 0.00 2019-10-29 19:55:18 2019-10-29 19:55:32 t 1 1 142282 566 0.00 2019-10-29 19:56:32 2019-10-29 19:56:36 t 1 1 142283 514 0.00 2019-10-29 19:55:12 2019-10-29 19:57:01 t 1 1 142285 516 0.00 2019-10-29 19:45:13 2019-10-29 19:57:10 t 1 1 142289 220 0.00 2019-10-29 19:57:31 2019-10-29 19:57:42 t 1 1 142291 564 0.00 2019-10-29 18:34:53 2019-10-29 19:59:55 t 1 1 142292 514 0.00 2019-10-29 19:57:01 2019-10-29 20:03:51 t 1 1 142293 619 0.00 2019-10-29 19:59:47 2019-10-29 20:06:20 t 1 1 142295 591 0.00 2019-10-29 20:04:40 2019-10-29 20:10:32 t 1 1 142300 220 0.00 2019-10-29 20:11:39 2019-10-29 20:11:49 t 1 1 142301 220 0.00 2019-10-29 20:11:49 2019-10-29 20:12:07 t 1 1 142305 554 0.00 2019-10-29 20:17:06 2019-10-29 20:17:26 t 1 1 142308 331 0.00 2019-10-29 20:17:46 2019-10-29 20:17:46 f 1 1 142314 587 0.00 2019-10-29 20:11:28 2019-10-29 20:25:06 t 1 1 142316 220 0.00 2019-10-29 20:21:42 2019-10-29 20:31:07 t 1 1 142318 617 0.00 2019-10-29 20:09:55 2019-10-29 20:31:23 t 1 1 142322 581 0.00 2019-10-29 20:19:21 2019-10-29 20:34:25 t 1 1 142325 395 0.00 2019-10-29 19:48:52 2019-10-29 20:37:16 t 1 2 142327 587 0.00 2019-10-29 20:37:41 2019-10-29 20:39:09 t 1 1 142328 512 0.00 2019-10-29 20:35:04 2019-10-29 20:40:23 t 1 1 142331 581 0.00 2019-10-29 20:34:38 2019-10-29 20:41:23 t 1 1 142336 619 0.00 2019-10-29 20:31:20 2019-10-29 20:47:07 t 1 1 142338 520 0.00 2019-10-29 20:46:57 2019-10-29 20:50:07 t 1 1 142340 220 0.00 2019-10-29 20:40:51 2019-10-29 20:50:15 t 1 1 142342 619 0.00 2019-10-29 20:48:55 2019-10-29 20:51:28 t 1 1 142345 581 0.00 2019-10-29 20:51:57 2019-10-29 20:52:58 t 1 1 142348 528 0.00 2019-10-29 20:42:33 2019-10-29 20:57:25 t 1 1 142350 220 0.00 2019-10-29 20:50:28 2019-10-29 20:59:52 t 1 1 142352 220 0.00 2019-10-29 21:00:03 2019-10-29 21:00:14 t 1 1 142354 520 0.00 2019-10-29 20:54:55 2019-10-29 21:01:02 t 1 1 142358 514 0.00 2019-10-29 21:03:45 2019-10-29 21:04:47 t 1 1 142360 528 0.00 2019-10-29 20:57:25 2019-10-29 21:06:32 t 1 1 142362 520 0.00 2019-10-29 21:05:49 2019-10-29 21:08:27 t 1 1 142365 220 0.00 2019-10-29 21:10:32 2019-10-29 21:10:40 t 1 1 142367 613 0.00 2019-10-29 21:06:25 2019-10-29 21:12:12 t 1 1 142370 220 0.00 2019-10-29 21:00:29 2019-10-29 21:15:38 t 1 1 142388 613 0.00 2019-10-29 21:23:58 2019-10-29 21:28:04 t 1 1 142395 551 0.00 2019-10-29 21:13:32 2019-10-29 21:32:48 t 1 1 142398 485 0.00 2019-10-29 21:29:30 2019-10-29 21:33:18 t 1 1 142400 220 0.00 2019-10-29 21:33:15 2019-10-29 21:33:50 t 1 1 142405 220 0.00 2019-10-29 21:35:02 2019-10-29 21:35:56 t 1 1 142411 613 0.00 2019-10-29 21:34:32 2019-10-29 21:41:08 t 1 1 142414 611 0.00 2019-10-29 21:28:40 2019-10-29 21:41:25 t 1 1 142416 570 0.00 2019-10-29 21:19:45 2019-10-29 21:41:35 t 1 1 142420 220 0.00 2019-10-29 21:44:27 2019-10-29 21:45:00 t 1 1 142425 220 0.00 2019-10-29 21:45:00 2019-10-29 21:48:58 t 1 1 142428 613 0.00 2019-10-29 21:45:34 2019-10-29 21:50:54 t 1 1 142432 570 0.00 2019-10-29 21:41:35 2019-10-29 21:51:53 t 1 1 142264 220 0.00 2019-10-29 19:46:39 2019-10-29 19:49:09 t 1 1 142266 220 0.00 2019-10-29 19:49:42 2019-10-29 19:50:21 t 1 1 142267 220 0.00 2019-10-29 19:50:21 2019-10-29 19:51:06 t 1 1 142271 220 0.00 2019-10-29 19:52:16 2019-10-29 19:52:55 t 1 1 142273 220 0.00 2019-10-29 19:52:55 2019-10-29 19:53:29 t 1 1 142274 220 0.00 2019-10-29 19:53:29 2019-10-29 19:54:08 t 1 1 142281 617 0.00 2019-10-29 19:54:19 2019-10-29 19:56:21 t 1 1 142286 220 0.00 2019-10-29 19:55:18 2019-10-29 19:57:18 t 1 1 142288 220 0.00 2019-10-29 19:38:56 2019-10-29 19:57:32 t 1 1 142290 611 0.00 2019-10-29 19:45:50 2019-10-29 19:59:16 t 1 1 142298 220 0.00 2019-10-29 20:11:05 2019-10-29 20:11:16 t 1 1 142299 220 0.00 2019-10-29 20:11:16 2019-10-29 20:11:39 t 1 1 142302 220 0.00 2019-10-29 20:12:17 2019-10-29 20:14:18 t 1 1 142303 512 0.00 2019-10-29 20:15:15 2019-10-29 20:16:41 t 1 1 142304 554 0.00 2019-10-29 19:18:07 2019-10-29 20:17:07 t 1 1 142307 554 0.00 2019-10-29 20:17:26 2019-10-29 20:17:43 t 1 1 142310 331 0.00 2019-10-29 20:18:17 2019-10-29 20:18:17 f 1 1 142312 220 0.00 2019-10-29 20:21:32 2019-10-29 20:21:43 t 1 1 142313 566 0.00 2019-10-29 19:56:40 2019-10-29 20:23:45 t 1 1 142315 619 0.00 2019-10-29 20:26:34 2019-10-29 20:28:29 t 1 1 142317 220 0.00 2019-10-29 20:31:06 2019-10-29 20:31:17 t 1 1 142319 617 0.00 2019-10-29 20:31:45 2019-10-29 20:32:17 t 1 1 142323 512 0.00 2019-10-29 20:16:40 2019-10-29 20:34:28 t 1 1 142326 566 0.00 2019-10-29 20:23:45 2019-10-29 20:37:30 t 1 1 142330 220 0.00 2019-10-29 20:40:40 2019-10-29 20:40:52 t 1 1 142334 292 0.00 2019-10-29 20:46:30 2019-10-29 20:46:30 f 1 2 142335 520 0.00 2019-10-29 20:10:03 2019-10-29 20:46:57 t 1 1 142339 581 0.00 2019-10-29 20:49:17 2019-10-29 20:50:09 t 1 1 142341 220 0.00 2019-10-29 20:50:15 2019-10-29 20:50:27 t 1 1 142343 581 0.00 2019-10-29 20:51:06 2019-10-29 20:51:52 t 1 1 142344 220 0.00 2019-10-29 20:50:37 2019-10-29 20:52:18 t 1 1 142346 566 0.00 2019-10-29 20:37:30 2019-10-29 20:53:40 t 1 1 142347 520 0.00 2019-10-29 20:50:04 2019-10-29 20:54:55 t 1 1 142349 581 0.00 2019-10-29 20:59:39 2019-10-29 20:59:43 t 1 1 142351 220 0.00 2019-10-29 20:59:51 2019-10-29 21:00:03 t 1 1 142353 220 0.00 2019-10-29 21:00:14 2019-10-29 21:00:15 t 1 1 142355 581 0.00 2019-10-29 21:00:17 2019-10-29 21:01:09 t 1 1 142357 514 0.00 2019-10-29 20:03:50 2019-10-29 21:03:45 t 1 1 142359 520 0.00 2019-10-29 21:01:01 2019-10-29 21:05:49 t 1 1 142366 581 0.00 2019-10-29 21:10:13 2019-10-29 21:10:56 t 1 1 142368 581 0.00 2019-10-29 21:11:30 2019-10-29 21:12:32 t 1 1 142369 585 0.00 2019-10-29 21:06:03 2019-10-29 21:13:24 t 1 1 142373 538 0.00 2019-10-29 20:27:35 2019-10-29 21:18:08 t 1 1 142375 613 0.00 2019-10-29 21:15:42 2019-10-29 21:19:18 t 1 1 142377 220 0.00 2019-10-29 21:12:54 2019-10-29 21:20:13 t 1 1 142379 220 0.00 2019-10-29 21:20:12 2019-10-29 21:20:28 t 1 1 142384 220 0.00 2019-10-29 21:21:42 2019-10-29 21:25:01 t 1 1 142385 220 0.00 2019-10-29 21:25:01 2019-10-29 21:25:36 t 1 1 142391 220 0.00 2019-10-29 21:29:40 2019-10-29 21:30:44 t 1 1 142399 585 0.00 2019-10-29 21:31:04 2019-10-29 21:33:42 t 1 1 142401 512 0.00 2019-10-29 21:25:49 2019-10-29 21:33:55 t 1 1 142402 220 0.00 2019-10-29 21:33:50 2019-10-29 21:34:27 t 1 1 142404 220 0.00 2019-10-29 21:34:27 2019-10-29 21:35:02 t 1 1 142406 220 0.00 2019-10-29 21:35:55 2019-10-29 21:36:30 t 1 1 142407 220 0.00 2019-10-29 21:36:30 2019-10-29 21:39:11 t 1 1 142409 220 0.00 2019-10-29 21:39:11 2019-10-29 21:39:45 t 1 1 142413 220 0.00 2019-10-29 21:39:45 2019-10-29 21:41:14 t 1 1 142415 220 0.00 2019-10-29 21:41:14 2019-10-29 21:41:29 t 1 1 142418 220 0.00 2019-10-29 21:43:11 2019-10-29 21:43:43 t 1 1 142422 587 0.00 2019-10-29 21:44:12 2019-10-29 21:46:09 t 1 1 142427 613 0.00 2019-10-29 21:50:35 2019-10-29 21:50:35 f 1 1 142435 585 0.00 2019-10-29 21:50:36 2019-10-29 21:52:23 t 1 1 142437 220 0.00 2019-10-29 21:52:33 2019-10-29 21:52:47 t 1 1 142440 481 0.00 2019-10-29 20:59:06 2019-10-29 21:55:12 t 1 1 142442 220 0.00 2019-10-29 21:55:06 2019-10-29 21:57:46 t 1 1 142445 613 0.00 2019-10-29 21:51:20 2019-10-29 21:58:36 t 1 1 142448 510 0.00 2019-10-29 21:48:47 2019-10-29 21:59:55 t 1 1 142450 587 0.00 2019-10-29 21:56:23 2019-10-29 22:00:37 t 1 1 142451 570 0.00 2019-10-29 21:51:53 2019-10-29 22:00:58 t 1 1 142453 514 0.00 2019-10-29 21:54:33 2019-10-29 22:01:30 t 1 1 142454 613 0.00 2019-10-29 21:58:35 2019-10-29 22:02:06 t 1 1 142455 220 0.00 2019-10-29 22:00:59 2019-10-29 22:02:55 t 1 1 142456 220 0.00 2019-10-29 22:02:55 2019-10-29 22:03:03 t 1 1 142462 520 0.00 2019-10-29 22:00:32 2019-10-29 22:04:27 t 1 1 142464 220 0.00 2019-10-29 22:04:20 2019-10-29 22:05:15 t 1 1 142465 566 0.00 2019-10-29 22:03:51 2019-10-29 22:06:18 t 1 1 142467 587 0.00 2019-10-29 22:05:20 2019-10-29 22:06:41 t 1 1 142470 554 0.00 2019-10-29 22:06:40 2019-10-29 22:07:28 t 1 1 142472 578 0.00 2019-10-29 21:59:29 2019-10-29 22:07:46 t 1 1 142473 611 0.00 2019-10-29 22:03:46 2019-10-29 22:07:57 t 1 1 142477 613 0.00 2019-10-29 22:02:05 2019-10-29 22:09:46 t 1 1 142482 220 0.00 2019-10-29 22:13:33 2019-10-29 22:13:47 t 1 1 142486 613 0.00 2019-10-29 22:09:45 2019-10-29 22:15:10 t 1 1 142489 220 0.00 2019-10-29 22:14:58 2019-10-29 22:16:16 t 1 1 142491 613 0.00 2019-10-29 22:17:02 2019-10-29 22:17:08 t 1 1 142494 327 0.00 2019-10-29 22:17:50 2019-10-29 22:17:50 f 1 1 142495 327 0.00 2019-10-29 22:18:03 2019-10-29 22:18:03 f 1 1 142498 587 0.00 2019-10-29 22:14:51 2019-10-29 22:19:28 t 1 1 142500 220 0.00 2019-10-29 22:18:58 2019-10-29 22:20:05 t 1 1 142502 581 0.00 2019-10-29 22:21:04 2019-10-29 22:22:18 t 1 1 142505 613 0.00 2019-10-29 22:17:08 2019-10-29 22:24:29 t 1 1 142508 578 0.00 2019-10-29 22:15:50 2019-10-29 22:25:16 t 1 1 142509 220 0.00 2019-10-29 22:24:12 2019-10-29 22:25:20 t 1 1 142511 591 0.00 2019-10-29 22:24:54 2019-10-29 22:26:43 t 1 1 142512 528 0.00 2019-10-29 22:16:28 2019-10-29 22:27:46 t 1 1 142515 220 0.00 2019-10-29 22:28:20 2019-10-29 22:29:28 t 1 1 142516 587 0.00 2019-10-29 22:19:54 2019-10-29 22:30:04 t 1 1 142520 581 0.00 2019-10-29 22:32:22 2019-10-29 22:32:38 t 1 1 142521 554 0.00 2019-10-29 22:07:28 2019-10-29 22:33:00 t 1 1 142523 220 0.00 2019-10-29 22:32:27 2019-10-29 22:33:34 t 1 1 142527 220 0.00 2019-10-29 22:36:35 2019-10-29 22:38:35 t 1 1 142532 220 0.00 2019-10-29 22:39:56 2019-10-29 22:40:49 t 1 1 142535 220 0.00 2019-10-29 22:42:48 2019-10-29 22:42:51 t 1 1 142536 220 0.00 2019-10-29 22:42:51 2019-10-29 22:43:27 t 1 1 142538 587 0.00 2019-10-29 22:40:57 2019-10-29 22:43:55 t 1 1 142539 220 0.00 2019-10-29 22:43:47 2019-10-29 22:44:02 t 1 1 142546 220 0.00 2019-10-29 22:45:24 2019-10-29 22:46:02 t 1 1 142396 528 0.00 2019-10-29 21:29:45 2019-10-29 21:32:50 t 1 1 142397 220 0.00 2019-10-29 21:31:18 2019-10-29 21:33:15 t 1 1 142403 613 0.00 2019-10-29 21:28:03 2019-10-29 21:34:32 t 1 1 142408 619 0.00 2019-10-29 21:36:36 2019-10-29 21:39:24 t 1 1 142410 551 0.00 2019-10-29 21:32:48 2019-10-29 21:39:50 t 1 1 142412 510 0.00 2019-10-29 20:26:29 2019-10-29 21:41:14 t 1 1 142417 220 0.00 2019-10-29 21:41:47 2019-10-29 21:43:11 t 1 1 142419 220 0.00 2019-10-29 21:43:43 2019-10-29 21:44:27 t 1 1 142421 613 0.00 2019-10-29 21:41:08 2019-10-29 21:45:34 t 1 1 142423 520 0.00 2019-10-29 21:46:26 2019-10-29 21:47:27 t 1 1 142424 510 0.00 2019-10-29 21:41:14 2019-10-29 21:48:47 t 1 1 142426 220 0.00 2019-10-29 21:48:58 2019-10-29 21:49:32 t 1 1 142429 613 0.00 2019-10-29 21:50:08 2019-10-29 21:51:18 t 1 1 142430 220 0.00 2019-10-29 21:49:32 2019-10-29 21:51:24 t 1 1 142431 220 0.00 2019-10-29 21:51:24 2019-10-29 21:51:43 t 1 1 142439 220 0.00 2019-10-29 21:54:30 2019-10-29 21:55:06 t 1 1 142441 587 0.00 2019-10-29 21:46:31 2019-10-29 21:55:34 t 1 1 142444 554 0.00 2019-10-29 20:17:43 2019-10-29 21:58:19 t 1 1 142447 578 0.00 2019-10-29 21:31:25 2019-10-29 21:59:29 t 1 1 142457 566 0.00 2019-10-29 21:51:54 2019-10-29 22:03:09 t 1 1 142458 611 0.00 2019-10-29 21:41:25 2019-10-29 22:03:46 t 1 1 142459 220 0.00 2019-10-29 22:03:03 2019-10-29 22:04:07 t 1 1 142460 587 0.00 2019-10-29 22:00:55 2019-10-29 22:04:20 t 1 1 142466 585 0.00 2019-10-29 22:03:32 2019-10-29 22:06:20 t 1 1 142468 554 0.00 2019-10-29 21:58:19 2019-10-29 22:06:41 t 1 1 142469 597 0.00 2019-10-29 22:02:41 2019-10-29 22:07:06 t 1 1 142475 220 0.00 2019-10-29 22:08:04 2019-10-29 22:08:48 t 1 1 142476 220 0.00 2019-10-29 22:08:48 2019-10-29 22:09:22 t 1 1 142478 220 0.00 2019-10-29 22:09:22 2019-10-29 22:10:49 t 1 1 142480 510 0.00 2019-10-29 21:59:55 2019-10-29 22:12:47 t 1 1 142483 220 0.00 2019-10-29 22:14:09 2019-10-29 22:14:19 t 1 1 142485 220 0.00 2019-10-29 22:14:19 2019-10-29 22:14:58 t 1 1 142487 551 0.00 2019-10-29 21:39:50 2019-10-29 22:15:24 t 1 1 142490 613 0.00 2019-10-29 22:15:10 2019-10-29 22:17:02 t 1 1 142493 327 0.00 2019-10-29 22:17:37 2019-10-29 22:17:37 f 1 1 142499 581 0.00 2019-10-29 21:36:15 2019-10-29 22:19:59 t 1 1 142501 510 0.00 2019-10-29 22:12:47 2019-10-29 22:20:19 t 1 1 142506 581 0.00 2019-10-29 22:23:41 2019-10-29 22:24:40 t 1 1 142510 597 0.00 2019-10-29 22:11:03 2019-10-29 22:25:38 t 1 1 142517 591 0.00 2019-10-29 22:29:25 2019-10-29 22:30:05 t 1 1 142518 416 0.00 2019-10-29 21:32:28 2019-10-29 22:32:00 t 1 1 142522 220 0.00 2019-10-29 22:33:11 2019-10-29 22:33:22 t 1 1 142526 220 0.00 2019-10-29 22:34:22 2019-10-29 22:36:36 t 1 1 142528 485 0.00 2019-10-29 22:37:08 2019-10-29 22:38:54 t 1 1 142530 220 0.00 2019-10-29 22:39:21 2019-10-29 22:39:56 t 1 1 142531 587 0.00 2019-10-29 22:32:49 2019-10-29 22:40:17 t 1 1 142533 220 0.00 2019-10-29 22:40:49 2019-10-29 22:41:23 t 1 1 142534 220 0.00 2019-10-29 22:41:23 2019-10-29 22:42:48 t 1 1 142537 220 0.00 2019-10-29 22:43:26 2019-10-29 22:43:35 t 1 1 142542 220 0.00 2019-10-29 22:44:37 2019-10-29 22:44:49 t 1 1 142544 220 0.00 2019-10-29 22:45:15 2019-10-29 22:45:24 t 1 1 142547 451 0.00 2019-10-29 22:34:02 2019-10-29 22:46:04 t 1 1 142553 220 0.00 2019-10-29 22:47:35 2019-10-29 22:48:10 t 1 1 142555 220 0.00 2019-10-29 22:48:50 2019-10-29 22:49:23 t 1 1 142556 587 0.00 2019-10-29 22:45:52 2019-10-29 22:50:00 t 1 1 142563 538 0.00 2019-10-29 22:51:24 2019-10-29 22:54:54 t 1 1 142564 587 0.00 2019-10-29 22:52:43 2019-10-29 22:54:58 t 1 1 142566 451 0.00 2019-10-29 22:46:04 2019-10-29 22:55:34 t 1 1 142568 528 0.00 2019-10-29 22:48:14 2019-10-29 22:57:24 t 1 1 142570 220 0.00 2019-10-29 22:57:52 2019-10-29 22:59:23 t 1 1 142574 220 0.00 2019-10-29 23:02:12 2019-10-29 23:02:48 t 1 1 142575 220 0.00 2019-10-29 23:02:48 2019-10-29 23:04:11 t 1 1 142577 220 0.00 2019-10-29 23:04:26 2019-10-29 23:04:41 t 1 1 142580 220 0.00 2019-10-29 23:05:47 2019-10-29 23:07:18 t 1 1 142584 220 0.00 2019-10-29 23:08:26 2019-10-29 23:08:55 t 1 1 142585 528 0.00 2019-10-29 22:57:23 2019-10-29 23:09:10 t 1 1 142596 485 0.00 2019-10-29 23:09:57 2019-10-29 23:12:09 t 1 1 142599 220 0.00 2019-10-29 23:12:47 2019-10-29 23:12:55 t 1 1 142601 220 0.00 2019-10-29 23:13:21 2019-10-29 23:13:35 t 1 1 142602 220 0.00 2019-10-29 23:13:35 2019-10-29 23:14:09 t 1 1 142603 220 0.00 2019-10-29 23:14:09 2019-10-29 23:14:46 t 1 1 142606 220 0.00 2019-10-29 23:14:55 2019-10-29 23:15:03 t 1 1 142608 220 0.00 2019-10-29 23:15:21 2019-10-29 23:15:31 t 1 1 142609 220 0.00 2019-10-29 23:15:31 2019-10-29 23:16:03 t 1 1 142615 220 0.00 2019-10-29 23:16:51 2019-10-29 23:17:01 t 1 1 142616 220 0.00 2019-10-29 23:17:00 2019-10-29 23:17:44 t 1 1 142618 481 0.00 2019-10-29 23:10:31 2019-10-29 23:18:05 t 1 1 142629 220 0.00 2019-10-29 23:20:46 2019-10-29 23:21:20 t 1 1 142632 587 0.00 2019-10-29 23:21:55 2019-10-29 23:23:14 t 1 1 142637 220 0.00 2019-10-29 23:22:06 2019-10-29 23:25:24 t 1 1 142638 220 0.00 2019-10-29 23:21:20 2019-10-29 23:25:33 t 1 1 142640 522 0.00 2019-10-29 23:25:28 2019-10-29 23:25:37 t 1 1 142643 220 0.00 2019-10-29 23:25:32 2019-10-29 23:26:05 t 1 1 142651 220 0.00 2019-10-29 23:30:02 2019-10-29 23:30:04 t 1 1 142655 220 0.00 2019-10-29 23:26:11 2019-10-29 23:36:02 t 1 1 142658 522 0.00 2019-10-29 23:26:40 2019-10-29 23:37:07 t 1 1 142661 581 0.00 2019-10-29 23:37:28 2019-10-29 23:38:06 t 1 1 142666 416 0.00 2019-10-29 22:32:00 2019-10-29 23:41:16 t 1 1 142669 311 0.00 2019-10-29 23:39:00 2019-10-29 23:44:23 t 1 2 142671 220 0.00 2019-10-29 23:44:40 2019-10-29 23:45:22 t 1 1 142673 220 0.00 2019-10-29 23:45:23 2019-10-29 23:45:37 t 1 1 142675 522 0.00 2019-10-29 23:41:03 2019-10-29 23:46:36 t 1 1 142677 538 0.00 2019-10-29 23:35:54 2019-10-29 23:46:47 t 1 1 142681 581 0.00 2019-10-29 23:47:21 2019-10-29 23:47:58 t 1 1 142686 564 0.00 2019-10-29 23:10:07 2019-10-29 23:49:34 t 1 1 142688 220 0.00 2019-10-29 23:49:36 2019-10-29 23:50:07 t 1 1 142692 416 0.00 2019-10-29 23:41:16 2019-10-29 23:51:00 t 1 1 142699 220 0.00 2019-10-29 23:52:31 2019-10-29 23:53:21 t 1 1 142701 581 0.00 2019-10-29 23:52:53 2019-10-29 23:53:54 t 1 1 142702 220 0.00 2019-10-29 23:53:52 2019-10-29 23:54:35 t 1 1 142704 220 0.00 2019-10-29 23:54:35 2019-10-29 23:55:10 t 1 1 142706 522 0.00 2019-10-29 23:47:09 2019-10-29 23:55:56 t 1 1 142707 220 0.00 2019-10-29 23:55:54 2019-10-29 23:55:57 t 1 1 142711 220 0.00 2019-10-29 23:56:32 2019-10-29 23:56:45 t 1 1 142712 220 0.00 2019-10-29 23:03:20 2019-10-29 23:57:05 t 1 2 142715 581 0.00 2019-10-29 23:57:12 2019-10-29 23:57:56 t 1 1 142716 220 0.00 2019-10-29 23:57:08 2019-10-29 23:58:31 t 1 1 142433 566 0.00 2019-10-29 21:51:32 2019-10-29 21:51:54 t 1 1 142434 220 0.00 2019-10-29 21:51:43 2019-10-29 21:51:57 t 1 1 142436 220 0.00 2019-10-29 21:51:57 2019-10-29 21:52:34 t 1 1 142438 220 0.00 2019-10-29 21:53:06 2019-10-29 21:54:31 t 1 1 142443 430 0.00 2019-10-29 21:40:36 2019-10-29 21:57:59 t 1 1 142446 220 0.00 2019-10-29 21:57:46 2019-10-29 21:58:47 t 1 1 142449 520 0.00 2019-10-29 21:48:17 2019-10-29 22:00:35 t 1 1 142452 220 0.00 2019-10-29 21:58:47 2019-10-29 22:00:59 t 1 1 142461 220 0.00 2019-10-29 22:04:11 2019-10-29 22:04:21 t 1 1 142463 587 0.00 2019-10-29 22:04:30 2019-10-29 22:04:56 t 1 1 142471 220 0.00 2019-10-29 22:05:15 2019-10-29 22:07:29 t 1 1 142474 220 0.00 2019-10-29 22:07:29 2019-10-29 22:08:04 t 1 1 142479 220 0.00 2019-10-29 22:10:49 2019-10-29 22:11:56 t 1 1 142481 220 0.00 2019-10-29 22:11:56 2019-10-29 22:13:33 t 1 1 142484 587 0.00 2019-10-29 22:07:00 2019-10-29 22:14:20 t 1 1 142488 578 0.00 2019-10-29 22:07:46 2019-10-29 22:15:50 t 1 1 142492 481 0.00 2019-10-29 21:55:11 2019-10-29 22:17:25 t 1 1 142496 327 0.00 2019-10-29 22:18:41 2019-10-29 22:18:41 f 1 1 142497 220 0.00 2019-10-29 22:16:16 2019-10-29 22:18:58 t 1 1 142503 220 0.00 2019-10-29 22:20:05 2019-10-29 22:22:27 t 1 1 142504 220 0.00 2019-10-29 22:22:27 2019-10-29 22:24:12 t 1 1 142507 591 0.00 2019-10-29 21:32:21 2019-10-29 22:24:54 t 1 1 142513 510 0.00 2019-10-29 22:20:19 2019-10-29 22:28:19 t 1 1 142514 220 0.00 2019-10-29 22:25:20 2019-10-29 22:28:20 t 1 1 142519 220 0.00 2019-10-29 22:29:28 2019-10-29 22:32:28 t 1 1 142524 220 0.00 2019-10-29 22:33:34 2019-10-29 22:34:22 t 1 1 142525 554 0.00 2019-10-29 22:35:34 2019-10-29 22:36:06 t 1 1 142529 220 0.00 2019-10-29 22:38:35 2019-10-29 22:39:21 t 1 1 142540 220 0.00 2019-10-29 22:44:02 2019-10-29 22:44:17 t 1 1 142541 220 0.00 2019-10-29 22:44:16 2019-10-29 22:44:37 t 1 1 142543 220 0.00 2019-10-29 22:44:49 2019-10-29 22:45:15 t 1 1 142545 587 0.00 2019-10-29 22:44:20 2019-10-29 22:45:25 t 1 1 142549 220 0.00 2019-10-29 22:46:02 2019-10-29 22:46:36 t 1 1 142552 220 0.00 2019-10-29 22:47:04 2019-10-29 22:47:35 t 1 1 142554 528 0.00 2019-10-29 22:27:45 2019-10-29 22:48:14 t 1 1 142559 595 0.00 2019-10-29 22:33:20 2019-10-29 22:51:40 t 1 1 142560 220 0.00 2019-10-29 22:50:21 2019-10-29 22:52:03 t 1 1 142562 220 0.00 2019-10-29 22:53:56 2019-10-29 22:54:11 t 1 1 142567 220 0.00 2019-10-29 22:55:08 2019-10-29 22:57:20 t 1 1 142572 220 0.00 2019-10-29 22:59:55 2019-10-29 23:01:39 t 1 1 142573 220 0.00 2019-10-29 23:01:39 2019-10-29 23:02:12 t 1 1 142579 220 0.00 2019-10-29 23:05:16 2019-10-29 23:05:47 t 1 1 142583 220 0.00 2019-10-29 23:08:24 2019-10-29 23:08:27 t 1 1 142587 220 0.00 2019-10-29 23:09:31 2019-10-29 23:10:03 t 1 1 142589 544 0.00 2019-10-29 21:28:10 2019-10-29 23:10:24 t 1 2 142593 220 0.00 2019-10-29 23:11:07 2019-10-29 23:11:41 t 1 1 142594 587 0.00 2019-10-29 23:04:08 2019-10-29 23:12:01 t 1 1 142598 220 0.00 2019-10-29 23:12:15 2019-10-29 23:12:47 t 1 1 142600 220 0.00 2019-10-29 23:12:55 2019-10-29 23:13:21 t 1 1 142610 512 0.00 2019-10-29 23:14:29 2019-10-29 23:16:11 t 1 1 142611 220 0.00 2019-10-29 23:16:03 2019-10-29 23:16:28 t 1 1 142614 587 0.00 2019-10-29 23:15:27 2019-10-29 23:16:57 t 1 1 142623 220 0.00 2019-10-29 23:19:29 2019-10-29 23:20:12 t 1 1 142627 220 0.00 2019-10-29 23:20:45 2019-10-29 23:20:46 t 1 1 142630 587 0.00 2019-10-29 23:20:27 2019-10-29 23:21:43 t 1 1 142631 585 0.00 2019-10-29 23:20:42 2019-10-29 23:22:58 t 1 1 142633 581 0.00 2019-10-29 23:21:45 2019-10-29 23:23:18 t 1 1 142635 587 0.00 2019-10-29 23:23:44 2019-10-29 23:23:50 t 1 1 142636 522 0.00 2019-10-29 23:16:24 2019-10-29 23:25:23 t 1 1 142645 522 0.00 2019-10-29 23:26:19 2019-10-29 23:26:25 t 1 1 142647 220 0.00 2019-10-29 23:27:11 2019-10-29 23:27:22 t 1 1 142648 581 0.00 2019-10-29 23:27:41 2019-10-29 23:28:19 t 1 1 142649 587 0.00 2019-10-29 23:24:06 2019-10-29 23:29:09 t 1 1 142652 581 0.00 2019-10-29 23:31:47 2019-10-29 23:31:50 t 1 1 142656 220 0.00 2019-10-29 23:36:02 2019-10-29 23:36:04 t 1 1 142660 581 0.00 2019-10-29 23:36:48 2019-10-29 23:37:29 t 1 1 142664 528 0.00 2019-10-29 23:12:01 2019-10-29 23:41:07 t 1 1 142679 587 0.00 2019-10-29 23:29:09 2019-10-29 23:47:26 t 1 1 142680 220 0.00 2019-10-29 23:47:17 2019-10-29 23:47:46 t 1 1 142683 508 0.00 2019-10-29 23:48:47 2019-10-29 23:48:47 f 1 2 142684 220 0.00 2019-10-29 23:48:25 2019-10-29 23:49:01 t 1 1 142690 508 0.00 2019-10-29 23:50:31 2019-10-29 23:50:31 f 1 2 142691 220 0.00 2019-10-29 23:50:07 2019-10-29 23:50:48 t 1 1 142693 220 0.00 2019-10-29 23:50:48 2019-10-29 23:51:20 t 1 1 142697 220 0.00 2019-10-29 23:51:57 2019-10-29 23:52:31 t 1 1 142703 449 0.00 2019-10-29 23:32:47 2019-10-29 23:54:59 t 1 1 142705 220 0.00 2019-10-29 23:55:10 2019-10-29 23:55:31 t 1 1 142709 220 0.00 2019-10-29 23:55:57 2019-10-29 23:56:32 t 1 1 142718 556 0.00 2019-10-29 19:11:02 2019-10-29 23:58:56 t 1 1 142720 522 0.00 2019-10-30 00:00:30 2019-10-30 00:00:32 t 1 1 142726 220 0.00 2019-10-30 00:06:03 2019-10-30 00:06:17 t 1 1 142727 522 0.00 2019-10-30 00:01:39 2019-10-30 00:07:12 t 1 1 142730 416 0.00 2019-10-30 00:04:23 2019-10-30 00:11:44 t 1 1 142731 581 0.00 2019-10-30 00:11:38 2019-10-30 00:12:13 t 1 1 142733 522 0.00 2019-10-30 00:12:29 2019-10-30 00:12:41 t 1 1 142734 522 0.00 2019-10-30 00:12:52 2019-10-30 00:13:00 t 1 1 142737 522 0.00 2019-10-30 00:13:48 2019-10-30 00:13:50 t 1 1 142738 522 0.00 2019-10-30 00:13:55 2019-10-30 00:14:01 t 1 1 142740 522 0.00 2019-10-30 00:14:38 2019-10-30 00:15:26 t 1 1 142742 522 0.00 2019-10-30 00:15:56 2019-10-30 00:16:03 t 1 1 142744 522 0.00 2019-10-30 00:16:08 2019-10-30 00:16:25 t 1 1 142745 522 0.00 2019-10-30 00:16:30 2019-10-30 00:16:48 t 1 1 142746 522 0.00 2019-10-30 00:17:00 2019-10-30 00:17:02 t 1 1 142748 522 0.00 2019-10-30 00:17:07 2019-10-30 00:17:36 t 1 1 142752 522 0.00 2019-10-30 00:18:03 2019-10-30 00:18:10 t 1 1 142755 522 0.00 2019-10-30 00:18:15 2019-10-30 00:20:11 t 1 1 142756 522 0.00 2019-10-30 00:20:16 2019-10-30 00:20:39 t 1 1 142758 522 0.00 2019-10-30 00:20:44 2019-10-30 00:20:51 t 1 1 142760 522 0.00 2019-10-30 00:20:56 2019-10-30 00:21:38 t 1 1 142761 522 0.00 2019-10-30 00:21:43 2019-10-30 00:22:04 t 1 1 142763 522 0.00 2019-10-30 00:22:09 2019-10-30 00:22:16 t 1 1 142765 522 0.00 2019-10-30 00:22:21 2019-10-30 00:22:43 t 1 1 142773 522 0.00 2019-10-30 00:24:15 2019-10-30 00:24:22 t 1 1 142775 522 0.00 2019-10-30 00:25:09 2019-10-30 00:25:10 t 1 1 142781 522 0.00 2019-10-30 00:27:23 2019-10-30 00:27:49 t 1 1 142783 522 0.00 2019-10-30 00:28:00 2019-10-30 00:28:17 t 1 1 142787 522 0.00 2019-10-30 00:29:23 2019-10-30 00:29:52 t 1 1 142548 597 0.00 2019-10-29 22:39:04 2019-10-29 22:46:17 t 1 1 142550 538 0.00 2019-10-29 21:18:19 2019-10-29 22:46:39 t 1 1 142551 220 0.00 2019-10-29 22:46:36 2019-10-29 22:47:04 t 1 1 142557 220 0.00 2019-10-29 22:49:23 2019-10-29 22:50:21 t 1 1 142558 587 0.00 2019-10-29 22:50:58 2019-10-29 22:51:11 t 1 1 142561 220 0.00 2019-10-29 22:52:03 2019-10-29 22:53:56 t 1 1 142565 220 0.00 2019-10-29 22:54:16 2019-10-29 22:55:08 t 1 1 142569 220 0.00 2019-10-29 22:57:19 2019-10-29 22:57:53 t 1 1 142571 220 0.00 2019-10-29 22:59:23 2019-10-29 22:59:55 t 1 1 142576 220 0.00 2019-10-29 23:04:11 2019-10-29 23:04:26 t 1 1 142578 220 0.00 2019-10-29 23:04:54 2019-10-29 23:05:16 t 1 1 142581 220 0.00 2019-10-29 23:07:17 2019-10-29 23:07:52 t 1 1 142582 220 0.00 2019-10-29 23:07:52 2019-10-29 23:08:24 t 1 1 142586 220 0.00 2019-10-29 23:08:55 2019-10-29 23:09:31 t 1 1 142588 564 0.00 2019-10-29 19:59:55 2019-10-29 23:10:07 t 1 1 142590 481 0.00 2019-10-29 22:17:25 2019-10-29 23:10:31 t 1 1 142591 220 0.00 2019-10-29 23:10:01 2019-10-29 23:10:33 t 1 1 142592 220 0.00 2019-10-29 23:10:33 2019-10-29 23:11:07 t 1 1 142595 528 0.00 2019-10-29 23:09:09 2019-10-29 23:12:01 t 1 1 142597 220 0.00 2019-10-29 23:11:41 2019-10-29 23:12:15 t 1 1 142604 220 0.00 2019-10-29 23:14:46 2019-10-29 23:14:55 t 1 1 142605 587 0.00 2019-10-29 23:12:59 2019-10-29 23:15:01 t 1 1 142607 220 0.00 2019-10-29 23:15:11 2019-10-29 23:15:19 t 1 1 142612 510 0.00 2019-10-29 22:28:19 2019-10-29 23:16:47 t 1 1 142613 220 0.00 2019-10-29 23:16:27 2019-10-29 23:16:51 t 1 1 142617 574 0.00 2019-10-29 19:48:48 2019-10-29 23:18:04 t 1 1 142619 220 0.00 2019-10-29 23:17:43 2019-10-29 23:18:18 t 1 1 142620 220 0.00 2019-10-29 23:18:18 2019-10-29 23:18:55 t 1 1 142621 220 0.00 2019-10-29 23:18:55 2019-10-29 23:19:29 t 1 1 142622 587 0.00 2019-10-29 23:17:24 2019-10-29 23:20:02 t 1 1 142624 581 0.00 2019-10-29 22:33:09 2019-10-29 23:20:13 t 1 1 142625 585 0.00 2019-10-29 23:06:00 2019-10-29 23:20:42 t 1 1 142626 220 0.00 2019-10-29 23:20:12 2019-10-29 23:20:45 t 1 1 142628 581 0.00 2019-10-29 23:20:37 2019-10-29 23:20:54 t 1 1 142634 220 0.00 2019-10-29 23:21:20 2019-10-29 23:23:18 t 1 1 142639 220 0.00 2019-10-29 23:25:23 2019-10-29 23:25:33 t 1 1 142641 220 0.00 2019-10-29 23:25:33 2019-10-29 23:25:48 t 1 1 142642 220 0.00 2019-10-29 23:25:48 2019-10-29 23:25:59 t 1 1 142644 581 0.00 2019-10-29 23:24:19 2019-10-29 23:26:18 t 1 1 142646 220 0.00 2019-10-29 23:25:57 2019-10-29 23:27:12 t 1 1 142650 220 0.00 2019-10-29 23:27:22 2019-10-29 23:30:02 t 1 1 142653 585 0.00 2019-10-29 23:23:06 2019-10-29 23:34:45 t 1 1 142654 591 0.00 2019-10-29 23:34:28 2019-10-29 23:35:15 t 1 1 142657 512 0.00 2019-10-29 23:18:21 2019-10-29 23:36:27 t 1 1 142659 510 0.00 2019-10-29 23:16:47 2019-10-29 23:37:24 t 1 1 142662 220 0.00 2019-10-29 23:30:12 2019-10-29 23:40:10 t 1 1 142663 522 0.00 2019-10-29 23:37:07 2019-10-29 23:41:03 t 1 1 142665 585 0.00 2019-10-29 23:34:45 2019-10-29 23:41:15 t 1 1 142667 220 0.00 2019-10-29 23:36:39 2019-10-29 23:43:33 t 1 1 142668 220 0.00 2019-10-29 23:43:33 2019-10-29 23:44:06 t 1 1 142670 220 0.00 2019-10-29 23:44:05 2019-10-29 23:44:40 t 1 1 142672 220 0.00 2019-10-29 23:45:22 2019-10-29 23:45:23 t 1 1 142674 220 0.00 2019-10-29 23:45:53 2019-10-29 23:46:06 t 1 1 142676 220 0.00 2019-10-29 23:46:05 2019-10-29 23:46:40 t 1 1 142678 220 0.00 2019-10-29 23:46:40 2019-10-29 23:47:17 t 1 1 142682 220 0.00 2019-10-29 23:47:46 2019-10-29 23:48:25 t 1 1 142685 361 0.00 2019-10-29 22:24:04 2019-10-29 23:49:25 t 1 2 142687 220 0.00 2019-10-29 23:49:01 2019-10-29 23:49:36 t 1 1 142689 508 0.00 2019-10-29 23:50:18 2019-10-29 23:50:18 f 1 2 142694 581 0.00 2019-10-29 23:51:06 2019-10-29 23:51:32 t 1 1 142695 220 0.00 2019-10-29 23:51:20 2019-10-29 23:51:57 t 1 1 142696 581 0.00 2019-10-29 23:52:04 2019-10-29 23:52:14 t 1 1 142698 581 0.00 2019-10-29 23:52:14 2019-10-29 23:52:47 t 1 1 142700 220 0.00 2019-10-29 23:53:21 2019-10-29 23:53:52 t 1 1 142708 522 0.00 2019-10-29 23:56:01 2019-10-29 23:56:24 t 1 1 142710 609 0.00 2019-10-29 23:50:32 2019-10-29 23:56:45 t 1 1 142713 220 0.00 2019-10-29 23:56:53 2019-10-29 23:57:08 t 1 1 142714 522 0.00 2019-10-29 23:57:23 2019-10-29 23:57:26 t 1 1 142717 522 0.00 2019-10-29 23:58:37 2019-10-29 23:58:39 t 1 1 142719 522 0.00 2019-10-29 23:58:31 2019-10-30 00:00:18 t 1 1 142724 581 0.00 2019-10-30 00:04:37 2019-10-30 00:04:59 t 1 1 142732 522 0.00 2019-10-30 00:07:31 2019-10-30 00:12:22 t 1 1 142736 522 0.00 2019-10-30 00:13:22 2019-10-30 00:13:24 t 1 1 142743 581 0.00 2019-10-30 00:15:49 2019-10-30 00:16:05 t 1 1 142747 220 0.00 2019-10-30 00:16:33 2019-10-30 00:17:07 t 1 1 142753 581 0.00 2019-10-30 00:19:00 2019-10-30 00:19:30 t 1 1 142757 581 0.00 2019-10-30 00:20:16 2019-10-30 00:20:43 t 1 1 142759 581 0.00 2019-10-30 00:21:04 2019-10-30 00:21:23 t 1 1 142762 581 0.00 2019-10-30 00:21:28 2019-10-30 00:22:09 t 1 1 142768 522 0.00 2019-10-30 00:23:14 2019-10-30 00:23:16 t 1 1 142772 522 0.00 2019-10-30 00:24:06 2019-10-30 00:24:08 t 1 1 142774 522 0.00 2019-10-30 00:24:29 2019-10-30 00:25:02 t 1 1 142780 220 0.00 2019-10-30 00:27:03 2019-10-30 00:27:37 t 1 1 142782 587 0.00 2019-10-29 23:47:26 2019-10-30 00:27:54 t 1 1 142786 522 0.00 2019-10-30 00:29:08 2019-10-30 00:29:10 t 1 1 142788 522 0.00 2019-10-30 00:29:59 2019-10-30 00:30:00 t 1 1 142791 522 0.00 2019-10-30 00:30:32 2019-10-30 00:30:48 t 1 1 142793 522 0.00 2019-10-30 00:30:59 2019-10-30 00:31:06 t 1 1 142796 522 0.00 2019-10-30 00:31:11 2019-10-30 00:31:27 t 1 1 142799 522 0.00 2019-10-30 00:31:59 2019-10-30 00:32:17 t 1 1 142802 512 0.00 2019-10-30 00:32:28 2019-10-30 00:33:20 t 1 1 142805 522 0.00 2019-10-30 00:32:30 2019-10-30 00:34:18 t 1 1 142809 522 0.00 2019-10-30 00:35:22 2019-10-30 00:35:23 t 1 1 142813 522 0.00 2019-10-30 00:36:20 2019-10-30 00:36:21 t 1 1 142820 522 0.00 2019-10-30 00:38:16 2019-10-30 00:38:24 t 1 1 142825 408 0.00 2019-10-30 00:38:51 2019-10-30 00:41:24 t 1 1 142832 581 0.00 2019-10-30 00:47:18 2019-10-30 00:47:41 t 1 1 142838 538 0.00 2019-10-30 00:32:55 2019-10-30 01:00:07 t 1 1 142841 587 0.00 2019-10-30 00:43:18 2019-10-30 01:03:55 t 1 1 142843 581 0.00 2019-10-30 01:10:54 2019-10-30 01:11:31 t 1 1 142844 220 0.00 2019-10-30 01:12:28 2019-10-30 01:12:40 t 1 1 142845 607 0.00 2019-10-30 00:11:06 2019-10-30 01:19:19 t 1 1 142848 538 0.00 2019-10-30 01:00:16 2019-10-30 01:21:33 t 1 1 142849 220 0.00 2019-10-30 01:22:07 2019-10-30 01:22:17 t 1 1 142850 581 0.00 2019-10-30 01:22:44 2019-10-30 01:23:16 t 1 1 142854 514 0.00 2019-10-30 01:25:27 2019-10-30 01:29:20 t 1 1 142855 581 0.00 2019-10-30 01:30:39 2019-10-30 01:31:16 t 1 1 142721 372 0.00 2019-10-29 23:40:58 2019-10-30 00:01:03 t 1 2 142722 581 0.00 2019-10-30 00:02:18 2019-10-30 00:02:29 t 1 1 142723 416 0.00 2019-10-29 23:51:00 2019-10-30 00:04:23 t 1 1 142725 581 0.00 2019-10-30 00:05:39 2019-10-30 00:06:12 t 1 1 142728 522 0.00 2019-10-30 00:07:20 2019-10-30 00:07:24 t 1 1 142729 581 0.00 2019-10-30 00:06:58 2019-10-30 00:08:18 t 1 1 142735 522 0.00 2019-10-30 00:13:05 2019-10-30 00:13:17 t 1 1 142739 522 0.00 2019-10-30 00:14:06 2019-10-30 00:14:25 t 1 1 142741 522 0.00 2019-10-30 00:15:33 2019-10-30 00:15:45 t 1 1 142749 522 0.00 2019-10-30 00:17:49 2019-10-30 00:17:50 t 1 1 142750 522 0.00 2019-10-30 00:17:55 2019-10-30 00:17:57 t 1 1 142751 581 0.00 2019-10-30 00:18:04 2019-10-30 00:18:09 t 1 1 142754 581 0.00 2019-10-30 00:19:58 2019-10-30 00:20:11 t 1 1 142764 339 0.00 2019-10-29 22:34:16 2019-10-30 00:22:41 t 1 2 142766 522 0.00 2019-10-30 00:22:48 2019-10-30 00:22:55 t 1 1 142767 522 0.00 2019-10-30 00:23:08 2019-10-30 00:23:09 t 1 1 142769 416 0.00 2019-10-30 00:11:44 2019-10-30 00:23:21 t 1 1 142770 522 0.00 2019-10-30 00:23:21 2019-10-30 00:23:44 t 1 1 142771 522 0.00 2019-10-30 00:23:57 2019-10-30 00:23:59 t 1 1 142776 522 0.00 2019-10-30 00:25:23 2019-10-30 00:25:40 t 1 1 142777 522 0.00 2019-10-30 00:25:45 2019-10-30 00:26:16 t 1 1 142778 522 0.00 2019-10-30 00:26:21 2019-10-30 00:26:57 t 1 1 142779 522 0.00 2019-10-30 00:27:02 2019-10-30 00:27:10 t 1 1 142784 522 0.00 2019-10-30 00:28:23 2019-10-30 00:28:49 t 1 1 142785 522 0.00 2019-10-30 00:29:02 2019-10-30 00:29:03 t 1 1 142790 327 0.00 2019-10-30 00:30:30 2019-10-30 00:30:30 f 1 1 142794 581 0.00 2019-10-30 00:31:04 2019-10-30 00:31:09 t 1 1 71408 131 0.00 2018-08-13 12:27:49 2018-08-13 12:27:49 f 1 1 71409 131 0.00 2018-08-13 12:28:55 2018-08-13 12:28:55 f 1 1 71412 131 0.00 2018-08-13 12:33:46 2018-08-13 12:33:46 f 1 1 71413 131 0.00 2018-08-13 12:38:18 2018-08-13 12:38:18 f 1 1 71414 131 0.00 2018-08-13 12:39:28 2018-08-13 12:39:28 f 1 1 142800 538 0.00 2019-10-29 23:46:59 2019-10-30 00:32:39 t 1 1 142801 522 0.00 2019-10-30 00:32:36 2019-10-30 00:32:59 t 1 1 142803 522 0.00 2019-10-30 00:33:12 2019-10-30 00:33:34 t 1 1 142806 522 0.00 2019-10-30 00:33:41 2019-10-30 00:34:37 t 1 1 142808 522 0.00 2019-10-30 00:35:08 2019-10-30 00:35:15 t 1 1 142811 522 0.00 2019-10-30 00:35:28 2019-10-30 00:35:35 t 1 1 142812 522 0.00 2019-10-30 00:35:40 2019-10-30 00:36:07 t 1 1 142815 581 0.00 2019-10-30 00:37:00 2019-10-30 00:37:04 t 1 1 142817 522 0.00 2019-10-30 00:37:15 2019-10-30 00:37:16 t 1 1 142818 522 0.00 2019-10-30 00:37:29 2019-10-30 00:37:42 t 1 1 142819 522 0.00 2019-10-30 00:37:49 2019-10-30 00:38:05 t 1 1 142821 220 0.00 2019-10-30 00:37:34 2019-10-30 00:39:18 t 1 1 142823 522 0.00 2019-10-30 00:39:31 2019-10-30 00:39:38 t 1 1 142826 522 0.00 2019-10-30 00:40:19 2019-10-30 00:41:46 t 1 1 142834 581 0.00 2019-10-30 00:51:08 2019-10-30 00:51:46 t 1 1 142835 512 0.00 2019-10-30 00:49:30 2019-10-30 00:52:23 t 1 1 142836 581 0.00 2019-10-30 00:52:03 2019-10-30 00:53:18 t 1 1 142839 581 0.00 2019-10-30 01:00:48 2019-10-30 01:01:35 t 1 1 142852 581 0.00 2019-10-30 01:27:39 2019-10-30 01:27:50 t 1 1 142857 619 0.00 2019-10-30 01:31:58 2019-10-30 01:34:02 t 1 1 142860 514 0.00 2019-10-30 01:29:20 2019-10-30 01:36:39 t 1 1 142863 220 0.00 2019-10-30 01:41:19 2019-10-30 01:41:32 t 1 1 142865 556 0.00 2019-10-30 01:42:13 2019-10-30 01:43:34 t 1 1 142867 581 0.00 2019-10-30 01:45:08 2019-10-30 01:45:23 t 1 1 142870 514 0.00 2019-10-30 01:36:39 2019-10-30 01:51:29 t 1 1 142873 587 0.00 2019-10-30 01:52:11 2019-10-30 01:53:45 t 1 1 142874 581 0.00 2019-10-30 01:52:22 2019-10-30 01:54:18 t 1 1 142876 587 0.00 2019-10-30 01:54:04 2019-10-30 01:56:35 t 1 1 142880 599 0.00 2019-10-29 23:45:52 2019-10-30 02:01:13 t 1 1 142882 514 0.00 2019-10-30 01:59:30 2019-10-30 02:06:52 t 1 1 142885 220 0.00 2019-10-30 02:08:50 2019-10-30 02:10:07 t 1 1 142888 581 0.00 2019-10-30 02:19:58 2019-10-30 02:20:47 t 1 1 142897 581 0.00 2019-10-30 02:34:24 2019-10-30 02:34:57 t 1 1 142900 581 0.00 2019-10-30 02:36:36 2019-10-30 02:36:48 t 1 1 142903 581 0.00 2019-10-30 02:39:52 2019-10-30 02:40:31 t 1 1 142908 581 0.00 2019-10-30 02:49:45 2019-10-30 02:50:23 t 1 1 142909 514 0.00 2019-10-30 02:46:55 2019-10-30 02:56:53 t 1 1 142911 372 0.00 2019-10-30 02:12:48 2019-10-30 02:57:54 t 1 2 142912 220 0.00 2019-10-30 02:57:37 2019-10-30 02:58:38 t 1 1 142915 220 0.00 2019-10-30 03:07:10 2019-10-30 03:07:21 t 1 1 142916 581 0.00 2019-10-30 03:09:28 2019-10-30 03:10:08 t 1 1 142917 587 0.00 2019-10-30 02:38:21 2019-10-30 03:12:06 t 1 1 142918 372 0.00 2019-10-30 02:53:01 2019-10-30 03:13:06 t 1 2 142923 581 0.00 2019-10-30 03:18:48 2019-10-30 03:19:57 t 1 1 142930 581 0.00 2019-10-30 03:32:42 2019-10-30 03:33:08 t 1 1 142935 581 0.00 2019-10-30 03:42:07 2019-10-30 03:42:39 t 1 1 142938 581 0.00 2019-10-30 03:44:27 2019-10-30 03:46:19 t 1 1 142942 619 0.00 2019-10-30 03:49:27 2019-10-30 03:56:59 t 1 1 142945 220 0.00 2019-10-30 04:04:18 2019-10-30 04:04:26 t 1 1 142954 581 0.00 2019-10-30 04:22:17 2019-10-30 04:22:21 t 1 1 142955 430 0.00 2019-10-30 04:21:26 2019-10-30 04:23:04 t 1 1 142957 581 0.00 2019-10-30 04:22:57 2019-10-30 04:23:38 t 1 1 142962 587 0.00 2019-10-30 04:00:39 2019-10-30 04:26:04 t 1 1 142964 430 0.00 2019-10-30 04:25:12 2019-10-30 04:26:24 t 1 1 142967 522 0.00 2019-10-30 04:29:15 2019-10-30 04:29:17 t 1 1 142969 522 0.00 2019-10-30 04:30:14 2019-10-30 04:30:15 t 1 1 142972 522 0.00 2019-10-30 04:30:54 2019-10-30 04:30:56 t 1 1 142973 311 0.00 2019-10-30 04:23:52 2019-10-30 04:31:16 t 1 2 142976 522 0.00 2019-10-30 04:32:15 2019-10-30 04:32:17 t 1 1 142978 587 0.00 2019-10-30 04:26:04 2019-10-30 04:33:03 t 1 1 142981 522 0.00 2019-10-30 04:34:15 2019-10-30 04:34:21 t 1 1 142986 522 0.00 2019-10-30 04:38:29 2019-10-30 04:39:01 t 1 1 142988 522 0.00 2019-10-30 04:39:14 2019-10-30 04:39:19 t 1 1 142991 581 0.00 2019-10-30 04:39:24 2019-10-30 04:39:50 t 1 1 142992 522 0.00 2019-10-30 04:39:32 2019-10-30 04:40:11 t 1 1 142994 522 0.00 2019-10-30 04:41:17 2019-10-30 04:41:55 t 1 1 142995 522 0.00 2019-10-30 04:42:00 2019-10-30 04:42:07 t 1 1 143001 581 0.00 2019-10-30 04:42:43 2019-10-30 04:43:24 t 1 1 143004 522 0.00 2019-10-30 04:45:14 2019-10-30 04:45:16 t 1 1 143008 522 0.00 2019-10-30 04:46:27 2019-10-30 04:46:33 t 1 1 143012 522 0.00 2019-10-30 04:47:38 2019-10-30 04:47:45 t 1 1 143013 522 0.00 2019-10-30 04:47:50 2019-10-30 04:48:47 t 1 1 143014 522 0.00 2019-10-30 04:48:52 2019-10-30 04:48:58 t 1 1 143015 522 0.00 2019-10-30 04:49:03 2019-10-30 04:49:45 t 1 1 143017 522 0.00 2019-10-30 04:49:50 2019-10-30 04:50:32 t 1 1 142789 522 0.00 2019-10-30 00:30:05 2019-10-30 00:30:19 t 1 1 142792 327 0.00 2019-10-30 00:30:54 2019-10-30 00:30:54 f 1 2 142795 327 0.00 2019-10-30 00:31:22 2019-10-30 00:31:22 f 1 1 142797 522 0.00 2019-10-30 00:31:32 2019-10-30 00:31:54 t 1 1 142798 581 0.00 2019-10-30 00:31:22 2019-10-30 00:32:02 t 1 1 142804 581 0.00 2019-10-30 00:33:46 2019-10-30 00:34:10 t 1 1 142807 522 0.00 2019-10-30 00:34:43 2019-10-30 00:35:01 t 1 1 142810 587 0.00 2019-10-30 00:27:54 2019-10-30 00:35:34 t 1 1 142814 522 0.00 2019-10-30 00:36:26 2019-10-30 00:36:33 t 1 1 142816 522 0.00 2019-10-30 00:36:46 2019-10-30 00:37:08 t 1 1 142822 522 0.00 2019-10-30 00:38:37 2019-10-30 00:39:21 t 1 1 142824 522 0.00 2019-10-30 00:39:51 2019-10-30 00:40:08 t 1 1 142827 581 0.00 2019-10-30 00:41:17 2019-10-30 00:41:56 t 1 1 142828 587 0.00 2019-10-30 00:35:34 2019-10-30 00:43:18 t 1 1 142829 456 0.00 2019-10-30 00:36:54 2019-10-30 00:44:12 t 1 1 142830 220 0.00 2019-10-30 00:46:43 2019-10-30 00:46:55 t 1 1 142831 503 0.00 2019-10-30 00:27:40 2019-10-30 00:47:35 t 1 1 142833 512 0.00 2019-10-30 00:44:55 2019-10-30 00:48:29 t 1 1 142837 220 0.00 2019-10-30 00:53:18 2019-10-30 00:53:29 t 1 1 142840 220 0.00 2019-10-30 01:02:53 2019-10-30 01:03:05 t 1 1 142842 581 0.00 2019-10-30 01:07:15 2019-10-30 01:07:21 t 1 1 142846 587 0.00 2019-10-30 01:04:27 2019-10-30 01:20:48 t 1 1 142847 581 0.00 2019-10-30 01:20:44 2019-10-30 01:21:26 t 1 1 142851 581 0.00 2019-10-30 01:26:37 2019-10-30 01:27:08 t 1 1 142853 581 0.00 2019-10-30 01:28:45 2019-10-30 01:28:57 t 1 1 142856 220 0.00 2019-10-30 01:31:40 2019-10-30 01:31:52 t 1 1 142858 551 0.00 2019-10-30 00:28:12 2019-10-30 01:34:53 t 1 1 142859 587 0.00 2019-10-30 01:21:11 2019-10-30 01:36:29 t 1 1 142862 581 0.00 2019-10-30 01:40:31 2019-10-30 01:41:11 t 1 1 142871 220 0.00 2019-10-30 01:51:48 2019-10-30 01:52:03 t 1 1 142875 556 0.00 2019-10-30 01:43:33 2019-10-30 01:56:16 t 1 1 142878 514 0.00 2019-10-30 01:51:29 2019-10-30 01:59:30 t 1 1 71407 131 0.00 2018-08-13 12:23:41 2018-08-13 12:23:41 f 1 1 142881 581 0.00 2019-10-30 02:03:20 2019-10-30 02:03:46 t 1 1 71417 131 0.00 2018-08-13 12:42:27 2018-08-13 12:42:27 f 1 1 142883 581 0.00 2019-10-30 02:07:39 2019-10-30 02:07:40 t 1 1 142893 581 0.00 2019-10-30 02:28:04 2019-10-30 02:29:18 t 1 1 142896 514 0.00 2019-10-30 02:20:59 2019-10-30 02:32:16 t 1 1 142898 581 0.00 2019-10-30 02:35:31 2019-10-30 02:35:43 t 1 1 142901 587 0.00 2019-10-30 01:56:43 2019-10-30 02:38:21 t 1 1 142905 514 0.00 2019-10-30 02:32:16 2019-10-30 02:46:55 t 1 1 142907 619 0.00 2019-10-30 02:36:57 2019-10-30 02:48:21 t 1 1 142910 220 0.00 2019-10-30 02:57:27 2019-10-30 02:57:29 t 1 1 142914 581 0.00 2019-10-30 03:03:00 2019-10-30 03:03:22 t 1 1 142919 587 0.00 2019-10-30 03:12:06 2019-10-30 03:13:49 t 1 1 142920 581 0.00 2019-10-30 03:14:51 2019-10-30 03:15:04 t 1 1 142925 581 0.00 2019-10-30 03:24:00 2019-10-30 03:25:19 t 1 1 142927 512 0.00 2019-10-30 03:24:46 2019-10-30 03:26:51 t 1 1 142928 581 0.00 2019-10-30 03:27:09 2019-10-30 03:27:55 t 1 1 142932 581 0.00 2019-10-30 03:38:33 2019-10-30 03:38:49 t 1 1 142933 581 0.00 2019-10-30 03:39:02 2019-10-30 03:39:45 t 1 1 142936 581 0.00 2019-10-30 03:43:07 2019-10-30 03:43:24 t 1 1 142939 581 0.00 2019-10-30 03:46:12 2019-10-30 03:46:39 t 1 1 142940 581 0.00 2019-10-30 03:48:59 2019-10-30 03:49:37 t 1 1 142941 220 0.00 2019-10-30 03:53:48 2019-10-30 03:54:03 t 1 1 142943 581 0.00 2019-10-30 03:58:50 2019-10-30 03:59:32 t 1 1 142944 587 0.00 2019-10-30 03:50:37 2019-10-30 04:00:16 t 1 1 142946 430 0.00 2019-10-30 04:08:02 2019-10-30 04:08:52 t 1 1 142947 581 0.00 2019-10-30 04:08:44 2019-10-30 04:09:23 t 1 1 142948 430 0.00 2019-10-30 04:08:56 2019-10-30 04:10:01 t 1 1 142952 220 0.00 2019-10-30 04:15:04 2019-10-30 04:15:18 t 1 1 142953 430 0.00 2019-10-30 04:10:07 2019-10-30 04:21:21 t 1 1 142956 430 0.00 2019-10-30 04:23:09 2019-10-30 04:23:11 t 1 1 142959 619 0.00 2019-10-30 04:18:34 2019-10-30 04:25:27 t 1 1 142961 220 0.00 2019-10-30 04:25:50 2019-10-30 04:26:04 t 1 1 142963 581 0.00 2019-10-30 04:25:54 2019-10-30 04:26:23 t 1 1 142970 522 0.00 2019-10-30 04:30:20 2019-10-30 04:30:22 t 1 1 142979 581 0.00 2019-10-30 04:32:49 2019-10-30 04:33:31 t 1 1 142982 522 0.00 2019-10-30 04:34:26 2019-10-30 04:34:32 t 1 1 142996 522 0.00 2019-10-30 04:42:12 2019-10-30 04:42:14 t 1 1 142998 522 0.00 2019-10-30 04:42:19 2019-10-30 04:42:26 t 1 1 143000 522 0.00 2019-10-30 04:42:39 2019-10-30 04:43:19 t 1 1 143002 522 0.00 2019-10-30 04:43:24 2019-10-30 04:43:31 t 1 1 143006 581 0.00 2019-10-30 04:45:59 2019-10-30 04:46:12 t 1 1 143007 522 0.00 2019-10-30 04:46:13 2019-10-30 04:46:28 t 1 1 143010 522 0.00 2019-10-30 04:46:38 2019-10-30 04:47:22 t 1 1 143018 522 0.00 2019-10-30 04:50:37 2019-10-30 04:50:39 t 1 1 143020 522 0.00 2019-10-30 04:50:45 2019-10-30 04:50:52 t 1 1 143021 522 0.00 2019-10-30 04:50:57 2019-10-30 04:51:14 t 1 1 143023 522 0.00 2019-10-30 04:51:30 2019-10-30 04:51:35 t 1 1 143024 522 0.00 2019-10-30 04:51:40 2019-10-30 04:51:42 t 1 1 143025 522 0.00 2019-10-30 04:51:48 2019-10-30 04:51:50 t 1 1 143026 581 0.00 2019-10-30 04:51:41 2019-10-30 04:51:54 t 1 1 143028 522 0.00 2019-10-30 04:52:42 2019-10-30 04:52:44 t 1 1 143029 522 0.00 2019-10-30 04:52:50 2019-10-30 04:52:52 t 1 1 143030 581 0.00 2019-10-30 04:52:34 2019-10-30 04:53:24 t 1 1 143031 522 0.00 2019-10-30 04:52:57 2019-10-30 04:53:39 t 1 1 143032 522 0.00 2019-10-30 04:53:44 2019-10-30 04:53:47 t 1 1 143035 522 0.00 2019-10-30 04:54:51 2019-10-30 04:54:55 t 1 1 143038 522 0.00 2019-10-30 04:56:30 2019-10-30 04:56:32 t 1 1 143040 220 0.00 2019-10-30 04:57:36 2019-10-30 04:57:51 t 1 1 143042 522 0.00 2019-10-30 04:58:06 2019-10-30 04:58:45 t 1 1 143043 522 0.00 2019-10-30 04:58:50 2019-10-30 04:58:57 t 1 1 143045 522 0.00 2019-10-30 04:59:09 2019-10-30 04:59:53 t 1 1 143047 587 0.00 2019-10-30 04:33:03 2019-10-30 05:00:10 t 1 1 143048 522 0.00 2019-10-30 05:00:10 2019-10-30 05:00:53 t 1 1 143049 522 0.00 2019-10-30 05:00:58 2019-10-30 05:01:05 t 1 1 143052 522 0.00 2019-10-30 05:02:07 2019-10-30 05:02:13 t 1 1 143054 581 0.00 2019-10-30 05:02:29 2019-10-30 05:03:06 t 1 1 143056 522 0.00 2019-10-30 05:03:13 2019-10-30 05:03:39 t 1 1 143057 522 0.00 2019-10-30 05:03:44 2019-10-30 05:03:46 t 1 1 143060 522 0.00 2019-10-30 05:04:14 2019-10-30 05:04:46 t 1 1 143063 522 0.00 2019-10-30 05:05:09 2019-10-30 05:05:15 t 1 1 143064 522 0.00 2019-10-30 05:05:20 2019-10-30 05:06:01 t 1 1 143066 522 0.00 2019-10-30 05:06:15 2019-10-30 05:06:21 t 1 1 143067 522 0.00 2019-10-30 05:06:26 2019-10-30 05:07:09 t 1 1 143068 522 0.00 2019-10-30 05:07:14 2019-10-30 05:07:20 t 1 1 142861 581 0.00 2019-10-30 01:36:14 2019-10-30 01:36:41 t 1 1 142864 556 0.00 2019-10-29 23:58:56 2019-10-30 01:42:12 t 1 1 142866 607 0.00 2019-10-30 01:19:19 2019-10-30 01:45:12 t 1 1 142868 581 0.00 2019-10-30 01:49:46 2019-10-30 01:50:11 t 1 1 142869 581 0.00 2019-10-30 01:50:23 2019-10-30 01:51:12 t 1 1 142872 587 0.00 2019-10-30 01:36:35 2019-10-30 01:52:11 t 1 1 142877 581 0.00 2019-10-30 01:58:21 2019-10-30 01:58:35 t 1 1 142879 581 0.00 2019-10-30 02:00:21 2019-10-30 02:01:00 t 1 1 142884 619 0.00 2019-10-30 01:59:34 2019-10-30 02:07:43 t 1 1 142886 581 0.00 2019-10-30 02:10:09 2019-10-30 02:10:54 t 1 1 142887 566 0.00 2019-10-30 02:08:30 2019-10-30 02:12:07 t 1 1 142889 514 0.00 2019-10-30 02:06:52 2019-10-30 02:20:59 t 1 1 142890 556 0.00 2019-10-30 01:56:16 2019-10-30 02:22:54 t 1 1 142891 581 0.00 2019-10-30 02:23:25 2019-10-30 02:23:31 t 1 1 142892 220 0.00 2019-10-30 02:25:55 2019-10-30 02:26:09 t 1 1 142894 581 0.00 2019-10-30 02:29:55 2019-10-30 02:30:39 t 1 1 142895 581 0.00 2019-10-30 02:30:51 2019-10-30 02:31:05 t 1 1 142899 220 0.00 2019-10-30 02:36:26 2019-10-30 02:36:40 t 1 1 142902 581 0.00 2019-10-30 02:38:28 2019-10-30 02:40:18 t 1 1 142904 581 0.00 2019-10-30 02:42:56 2019-10-30 02:43:18 t 1 1 142906 220 0.00 2019-10-30 02:46:57 2019-10-30 02:47:11 t 1 1 71406 131 0.00 2018-08-13 12:23:14 2018-08-13 12:23:14 f 1 1 71410 131 0.00 2018-08-13 12:30:48 2018-08-13 12:30:48 f 1 1 71416 131 0.00 2018-08-13 12:40:24 2018-08-13 12:40:24 f 1 1 142913 581 0.00 2019-10-30 02:59:36 2019-10-30 03:00:17 t 1 1 142921 220 0.00 2019-10-30 03:14:23 2019-10-30 03:15:05 t 1 1 142922 516 0.00 2019-10-30 02:57:56 2019-10-30 03:17:32 t 1 1 142924 512 0.00 2019-10-30 03:03:52 2019-10-30 03:24:46 t 1 1 142926 220 0.00 2019-10-30 03:25:01 2019-10-30 03:25:34 t 1 1 142929 581 0.00 2019-10-30 03:29:13 2019-10-30 03:29:54 t 1 1 142931 220 0.00 2019-10-30 03:35:31 2019-10-30 03:35:34 t 1 1 142934 220 0.00 2019-10-30 03:39:48 2019-10-30 03:40:16 t 1 1 142937 220 0.00 2019-10-30 03:43:19 2019-10-30 03:43:49 t 1 1 142949 581 0.00 2019-10-30 04:12:26 2019-10-30 04:12:49 t 1 1 142950 581 0.00 2019-10-30 04:13:27 2019-10-30 04:13:42 t 1 1 142951 220 0.00 2019-10-30 04:14:48 2019-10-30 04:14:56 t 1 1 142958 430 0.00 2019-10-30 04:24:12 2019-10-30 04:24:14 t 1 1 142960 220 0.00 2019-10-30 04:25:34 2019-10-30 04:25:42 t 1 1 142965 522 0.00 2019-10-30 04:27:36 2019-10-30 04:28:56 t 1 1 142966 522 0.00 2019-10-30 04:29:09 2019-10-30 04:29:10 t 1 1 142968 522 0.00 2019-10-30 04:29:22 2019-10-30 04:30:01 t 1 1 142971 522 0.00 2019-10-30 04:30:28 2019-10-30 04:30:49 t 1 1 142974 522 0.00 2019-10-30 04:31:01 2019-10-30 04:31:56 t 1 1 142975 522 0.00 2019-10-30 04:32:09 2019-10-30 04:32:10 t 1 1 142977 522 0.00 2019-10-30 04:32:22 2019-10-30 04:32:57 t 1 1 142980 522 0.00 2019-10-30 04:32:56 2019-10-30 04:34:10 t 1 1 142983 522 0.00 2019-10-30 04:34:37 2019-10-30 04:34:43 t 1 1 142984 220 0.00 2019-10-30 04:36:20 2019-10-30 04:36:28 t 1 1 142985 522 0.00 2019-10-30 04:34:49 2019-10-30 04:38:03 t 1 1 142987 522 0.00 2019-10-30 04:38:08 2019-10-30 04:39:12 t 1 1 142989 581 0.00 2019-10-30 04:38:09 2019-10-30 04:39:20 t 1 1 142990 522 0.00 2019-10-30 04:39:24 2019-10-30 04:39:27 t 1 1 142993 522 0.00 2019-10-30 04:40:39 2019-10-30 04:41:06 t 1 1 142997 522 0.00 2019-10-30 04:40:16 2019-10-30 04:42:20 t 1 1 142999 522 0.00 2019-10-30 04:42:31 2019-10-30 04:42:33 t 1 1 143003 522 0.00 2019-10-30 04:43:36 2019-10-30 04:45:09 t 1 1 143005 522 0.00 2019-10-30 04:45:21 2019-10-30 04:46:08 t 1 1 143009 220 0.00 2019-10-30 04:46:50 2019-10-30 04:46:58 t 1 1 143011 522 0.00 2019-10-30 04:47:27 2019-10-30 04:47:33 t 1 1 143016 581 0.00 2019-10-30 04:49:31 2019-10-30 04:49:58 t 1 1 143019 581 0.00 2019-10-30 04:50:30 2019-10-30 04:50:47 t 1 1 143022 522 0.00 2019-10-30 04:51:19 2019-10-30 04:51:24 t 1 1 143027 522 0.00 2019-10-30 04:51:55 2019-10-30 04:52:37 t 1 1 143033 522 0.00 2019-10-30 04:53:52 2019-10-30 04:53:54 t 1 1 143034 522 0.00 2019-10-30 04:53:59 2019-10-30 04:54:46 t 1 1 143036 522 0.00 2019-10-30 04:55:00 2019-10-30 04:55:39 t 1 1 143037 522 0.00 2019-10-30 04:55:44 2019-10-30 04:56:25 t 1 1 143039 220 0.00 2019-10-30 04:57:20 2019-10-30 04:57:28 t 1 1 143041 522 0.00 2019-10-30 04:56:45 2019-10-30 04:57:54 t 1 1 143044 522 0.00 2019-10-30 04:59:02 2019-10-30 04:59:04 t 1 1 143046 522 0.00 2019-10-30 04:59:58 2019-10-30 05:00:05 t 1 1 143050 522 0.00 2019-10-30 05:01:10 2019-10-30 05:01:51 t 1 1 143051 522 0.00 2019-10-30 05:01:56 2019-10-30 05:02:02 t 1 1 143053 522 0.00 2019-10-30 05:02:18 2019-10-30 05:02:57 t 1 1 143055 522 0.00 2019-10-30 05:03:02 2019-10-30 05:03:08 t 1 1 143058 522 0.00 2019-10-30 05:03:52 2019-10-30 05:03:54 t 1 1 143059 522 0.00 2019-10-30 05:03:59 2019-10-30 05:04:01 t 1 1 143061 522 0.00 2019-10-30 05:04:58 2019-10-30 05:05:04 t 1 1 143062 520 0.00 2019-10-30 04:58:41 2019-10-30 05:05:10 t 1 1 143065 522 0.00 2019-10-30 05:06:07 2019-10-30 05:06:10 t 1 1 143069 522 0.00 2019-10-30 05:07:26 2019-10-30 05:07:38 t 1 1 143070 522 0.00 2019-10-30 05:07:43 2019-10-30 05:07:45 t 1 1 143071 522 0.00 2019-10-30 05:07:50 2019-10-30 05:07:57 t 1 1 143072 587 0.00 2019-10-30 05:00:10 2019-10-30 05:08:08 t 1 1 143073 522 0.00 2019-10-30 05:08:02 2019-10-30 05:08:09 t 1 1 143074 220 0.00 2019-10-30 05:08:06 2019-10-30 05:08:15 t 1 1 143075 522 0.00 2019-10-30 05:08:14 2019-10-30 05:08:16 t 1 1 143076 522 0.00 2019-10-30 05:08:21 2019-10-30 05:09:03 t 1 1 143077 522 0.00 2019-10-30 05:09:08 2019-10-30 05:09:11 t 1 1 143078 522 0.00 2019-10-30 05:09:16 2019-10-30 05:09:22 t 1 1 143079 522 0.00 2019-10-30 05:09:27 2019-10-30 05:10:09 t 1 1 143080 522 0.00 2019-10-30 05:10:14 2019-10-30 05:10:16 t 1 1 143081 522 0.00 2019-10-30 05:10:21 2019-10-30 05:13:01 t 1 1 143082 581 0.00 2019-10-30 05:12:21 2019-10-30 05:13:02 t 1 1 143083 522 0.00 2019-10-30 05:13:06 2019-10-30 05:13:09 t 1 1 143084 522 0.00 2019-10-30 05:13:14 2019-10-30 05:13:47 t 1 1 143085 522 0.00 2019-10-30 05:13:52 2019-10-30 05:13:59 t 1 1 143086 522 0.00 2019-10-30 05:14:04 2019-10-30 05:14:11 t 1 1 143087 522 0.00 2019-10-30 05:14:16 2019-10-30 05:14:33 t 1 1 143088 522 0.00 2019-10-30 05:14:38 2019-10-30 05:14:40 t 1 1 143089 522 0.00 2019-10-30 05:14:45 2019-10-30 05:14:51 t 1 1 143090 522 0.00 2019-10-30 05:14:57 2019-10-30 05:15:02 t 1 1 143091 522 0.00 2019-10-30 05:15:07 2019-10-30 05:15:40 t 1 1 143092 522 0.00 2019-10-30 05:15:45 2019-10-30 05:15:52 t 1 1 143093 522 0.00 2019-10-30 05:15:57 2019-10-30 05:15:59 t 1 1 143094 522 0.00 2019-10-30 05:16:04 2019-10-30 05:16:12 t 1 1 143095 581 0.00 2019-10-30 05:17:07 2019-10-30 05:17:11 t 1 1 143096 522 0.00 2019-10-30 05:16:17 2019-10-30 05:17:11 t 1 1 143098 522 0.00 2019-10-30 05:18:04 2019-10-30 05:18:06 t 1 1 143102 522 0.00 2019-10-30 05:19:09 2019-10-30 05:19:15 t 1 1 143104 522 0.00 2019-10-30 05:20:08 2019-10-30 05:20:10 t 1 1 143108 522 0.00 2019-10-30 05:21:20 2019-10-30 05:21:51 t 1 1 143109 522 0.00 2019-10-30 05:21:57 2019-10-30 05:22:03 t 1 1 143113 581 0.00 2019-10-30 05:22:11 2019-10-30 05:22:48 t 1 1 143117 522 0.00 2019-10-30 05:24:17 2019-10-30 05:24:24 t 1 1 143119 522 0.00 2019-10-30 05:24:29 2019-10-30 05:25:11 t 1 1 143121 581 0.00 2019-10-30 05:24:41 2019-10-30 05:26:00 t 1 1 143123 522 0.00 2019-10-30 05:26:11 2019-10-30 05:26:13 t 1 1 143126 522 0.00 2019-10-30 05:26:29 2019-10-30 05:26:53 t 1 1 143127 522 0.00 2019-10-30 05:26:58 2019-10-30 05:27:05 t 1 1 143133 522 0.00 2019-10-30 05:28:27 2019-10-30 05:28:33 t 1 1 143140 522 0.00 2019-10-30 05:31:24 2019-10-30 05:31:29 t 1 1 143142 522 0.00 2019-10-30 05:32:12 2019-10-30 05:32:14 t 1 1 143146 220 0.00 2019-10-30 05:33:11 2019-10-30 05:33:26 t 1 1 143149 522 0.00 2019-10-30 05:34:53 2019-10-30 05:35:05 t 1 1 143152 581 0.00 2019-10-30 05:35:37 2019-10-30 05:36:27 t 1 1 143157 522 0.00 2019-10-30 05:38:35 2019-10-30 05:38:41 t 1 1 143164 522 0.00 2019-10-30 05:40:41 2019-10-30 05:40:43 t 1 1 143166 581 0.00 2019-10-30 05:41:04 2019-10-30 05:41:21 t 1 1 143170 522 0.00 2019-10-30 05:41:42 2019-10-30 05:41:54 t 1 1 143171 581 0.00 2019-10-30 05:40:34 2019-10-30 05:42:20 t 1 1 143173 522 0.00 2019-10-30 05:42:47 2019-10-30 05:42:54 t 1 1 143175 220 0.00 2019-10-30 05:43:41 2019-10-30 05:43:42 t 1 1 143177 520 0.00 2019-10-30 05:05:09 2019-10-30 05:44:06 t 1 1 143180 581 0.00 2019-10-30 05:43:39 2019-10-30 05:44:39 t 1 1 143182 522 0.00 2019-10-30 05:44:56 2019-10-30 05:45:17 t 1 1 143185 522 0.00 2019-10-30 05:45:45 2019-10-30 05:45:47 t 1 1 143186 522 0.00 2019-10-30 05:45:52 2019-10-30 05:45:58 t 1 1 143194 522 0.00 2019-10-30 05:48:11 2019-10-30 05:48:53 t 1 1 143195 522 0.00 2019-10-30 05:48:58 2019-10-30 05:49:00 t 1 1 143201 522 0.00 2019-10-30 05:51:06 2019-10-30 05:51:48 t 1 1 143202 522 0.00 2019-10-30 05:51:53 2019-10-30 05:52:00 t 1 1 143207 522 0.00 2019-10-30 05:53:13 2019-10-30 05:53:54 t 1 1 143208 522 0.00 2019-10-30 05:53:59 2019-10-30 05:54:01 t 1 1 143211 522 0.00 2019-10-30 05:55:05 2019-10-30 05:55:08 t 1 1 143216 522 0.00 2019-10-30 05:57:08 2019-10-30 05:57:13 t 1 1 143220 522 0.00 2019-10-30 05:58:19 2019-10-30 05:58:45 t 1 1 143225 522 0.00 2019-10-30 06:00:23 2019-10-30 06:00:40 t 1 1 143230 522 0.00 2019-10-30 06:02:28 2019-10-30 06:02:49 t 1 1 143231 522 0.00 2019-10-30 06:03:02 2019-10-30 06:03:03 t 1 1 143235 522 0.00 2019-10-30 06:04:02 2019-10-30 06:04:08 t 1 1 143236 522 0.00 2019-10-30 06:04:21 2019-10-30 06:04:22 t 1 1 143238 522 0.00 2019-10-30 06:04:27 2019-10-30 06:04:54 t 1 1 143240 522 0.00 2019-10-30 06:05:13 2019-10-30 06:05:15 t 1 1 143244 522 0.00 2019-10-30 06:06:37 2019-10-30 06:06:48 t 1 1 143245 522 0.00 2019-10-30 06:06:55 2019-10-30 06:07:13 t 1 1 143249 522 0.00 2019-10-30 06:08:17 2019-10-30 06:08:24 t 1 1 143255 522 0.00 2019-10-30 06:10:32 2019-10-30 06:10:33 t 1 1 143260 522 0.00 2019-10-30 06:12:21 2019-10-30 06:12:23 t 1 1 143264 522 0.00 2019-10-30 06:13:15 2019-10-30 06:13:21 t 1 1 143268 522 0.00 2019-10-30 06:14:16 2019-10-30 06:14:23 t 1 1 143273 522 0.00 2019-10-30 06:15:28 2019-10-30 06:15:35 t 1 1 143274 522 0.00 2019-10-30 06:15:48 2019-10-30 06:16:01 t 1 1 143279 522 0.00 2019-10-30 06:17:20 2019-10-30 06:17:36 t 1 1 143280 522 0.00 2019-10-30 06:17:49 2019-10-30 06:18:10 t 1 1 143284 522 0.00 2019-10-30 06:19:19 2019-10-30 06:19:35 t 1 1 143286 522 0.00 2019-10-30 06:20:16 2019-10-30 06:20:23 t 1 1 143290 522 0.00 2019-10-30 06:21:38 2019-10-30 06:21:39 t 1 1 143295 522 0.00 2019-10-30 06:22:46 2019-10-30 06:22:52 t 1 1 143296 522 0.00 2019-10-30 06:22:57 2019-10-30 06:23:25 t 1 1 143302 522 0.00 2019-10-30 06:24:31 2019-10-30 06:24:37 t 1 1 143307 522 0.00 2019-10-30 06:25:48 2019-10-30 06:25:54 t 1 1 143308 522 0.00 2019-10-30 06:25:59 2019-10-30 06:26:11 t 1 1 143310 220 0.00 2019-10-30 06:25:26 2019-10-30 06:26:27 t 1 1 143314 522 0.00 2019-10-30 06:27:24 2019-10-30 06:27:30 t 1 1 143318 522 0.00 2019-10-30 06:28:30 2019-10-30 06:28:31 t 1 1 143322 522 0.00 2019-10-30 06:29:46 2019-10-30 06:29:52 t 1 1 143324 516 0.00 2019-10-30 06:19:33 2019-10-30 06:30:37 t 1 1 143326 522 0.00 2019-10-30 06:30:43 2019-10-30 06:30:49 t 1 1 143327 522 0.00 2019-10-30 06:30:54 2019-10-30 06:31:21 t 1 1 143333 522 0.00 2019-10-30 06:32:31 2019-10-30 06:32:38 t 1 1 143335 522 0.00 2019-10-30 06:33:05 2019-10-30 06:33:27 t 1 1 143339 609 0.00 2019-10-30 06:34:27 2019-10-30 06:34:31 t 1 1 143341 522 0.00 2019-10-30 06:34:46 2019-10-30 06:35:01 t 1 1 143345 522 0.00 2019-10-30 06:36:09 2019-10-30 06:36:35 t 1 1 143349 522 0.00 2019-10-30 06:37:43 2019-10-30 06:37:49 t 1 1 143350 522 0.00 2019-10-30 06:37:54 2019-10-30 06:38:10 t 1 1 143354 522 0.00 2019-10-30 06:39:45 2019-10-30 06:39:46 t 1 1 143356 522 0.00 2019-10-30 06:40:10 2019-10-30 06:40:12 t 1 1 143357 522 0.00 2019-10-30 06:40:17 2019-10-30 06:40:43 t 1 1 143361 522 0.00 2019-10-30 06:41:21 2019-10-30 06:41:44 t 1 1 143365 522 0.00 2019-10-30 06:42:27 2019-10-30 06:42:44 t 1 1 143367 544 0.00 2019-10-30 06:32:49 2019-10-30 06:42:54 t 1 2 143368 522 0.00 2019-10-30 06:42:57 2019-10-30 06:43:04 t 1 1 143371 522 0.00 2019-10-30 06:43:53 2019-10-30 06:43:54 t 1 1 143372 522 0.00 2019-10-30 06:43:59 2019-10-30 06:44:04 t 1 1 143377 522 0.00 2019-10-30 06:45:18 2019-10-30 06:45:24 t 1 1 143381 522 0.00 2019-10-30 06:46:31 2019-10-30 06:46:52 t 1 1 143382 522 0.00 2019-10-30 06:47:03 2019-10-30 06:47:10 t 1 1 143386 520 0.00 2019-10-30 06:40:50 2019-10-30 06:48:39 t 1 1 143389 522 0.00 2019-10-30 06:49:08 2019-10-30 06:49:15 t 1 1 143390 522 0.00 2019-10-30 06:49:28 2019-10-30 06:49:29 t 1 1 143393 522 0.00 2019-10-30 06:50:21 2019-10-30 06:50:28 t 1 1 143394 520 0.00 2019-10-30 06:49:33 2019-10-30 06:50:57 t 1 1 143398 522 0.00 2019-10-30 06:52:10 2019-10-30 06:52:11 t 1 1 143402 522 0.00 2019-10-30 06:53:12 2019-10-30 06:53:14 t 1 1 143404 587 0.00 2019-10-30 06:40:29 2019-10-30 06:53:23 t 1 1 143406 522 0.00 2019-10-30 06:54:13 2019-10-30 06:54:14 t 1 1 143408 522 0.00 2019-10-30 06:54:47 2019-10-30 06:55:15 t 1 1 143412 522 0.00 2019-10-30 06:56:25 2019-10-30 06:56:26 t 1 1 143416 522 0.00 2019-10-30 06:57:20 2019-10-30 06:57:26 t 1 1 143421 522 0.00 2019-10-30 06:58:34 2019-10-30 06:58:40 t 1 1 143422 522 0.00 2019-10-30 06:58:53 2019-10-30 06:59:09 t 1 1 143425 522 0.00 2019-10-30 06:59:37 2019-10-30 06:59:42 t 1 1 143097 522 0.00 2019-10-30 05:17:16 2019-10-30 05:17:58 t 1 1 143101 522 0.00 2019-10-30 05:18:23 2019-10-30 05:19:04 t 1 1 143103 522 0.00 2019-10-30 05:19:20 2019-10-30 05:20:03 t 1 1 143107 522 0.00 2019-10-30 05:21:09 2019-10-30 05:21:15 t 1 1 143112 522 0.00 2019-10-30 05:22:23 2019-10-30 05:22:29 t 1 1 143115 522 0.00 2019-10-30 05:23:21 2019-10-30 05:23:23 t 1 1 143116 522 0.00 2019-10-30 05:23:28 2019-10-30 05:24:12 t 1 1 143122 522 0.00 2019-10-30 05:25:27 2019-10-30 05:26:06 t 1 1 143129 522 0.00 2019-10-30 05:27:21 2019-10-30 05:27:23 t 1 1 143131 522 0.00 2019-10-30 05:27:28 2019-10-30 05:27:35 t 1 1 143132 522 0.00 2019-10-30 05:27:40 2019-10-30 05:28:22 t 1 1 143134 220 0.00 2019-10-30 05:29:06 2019-10-30 05:29:14 t 1 1 143136 522 0.00 2019-10-30 05:29:26 2019-10-30 05:29:32 t 1 1 143138 522 0.00 2019-10-30 05:30:26 2019-10-30 05:30:32 t 1 1 143139 522 0.00 2019-10-30 05:30:37 2019-10-30 05:31:19 t 1 1 143141 522 0.00 2019-10-30 05:31:35 2019-10-30 05:32:06 t 1 1 143144 522 0.00 2019-10-30 05:32:30 2019-10-30 05:32:37 t 1 1 143156 522 0.00 2019-10-30 05:38:20 2019-10-30 05:38:22 t 1 1 143160 522 0.00 2019-10-30 05:39:41 2019-10-30 05:39:43 t 1 1 143161 522 0.00 2019-10-30 05:39:48 2019-10-30 05:39:50 t 1 1 143163 522 0.00 2019-10-30 05:39:55 2019-10-30 05:40:36 t 1 1 143167 522 0.00 2019-10-30 05:40:56 2019-10-30 05:41:37 t 1 1 143168 587 0.00 2019-10-30 05:25:41 2019-10-30 05:41:51 t 1 1 143172 522 0.00 2019-10-30 05:41:59 2019-10-30 05:42:42 t 1 1 143178 581 0.00 2019-10-30 05:43:56 2019-10-30 05:44:32 t 1 1 143184 522 0.00 2019-10-30 05:45:33 2019-10-30 05:45:40 t 1 1 143189 522 0.00 2019-10-30 05:47:03 2019-10-30 05:47:42 t 1 1 143190 581 0.00 2019-10-30 05:47:45 2019-10-30 05:47:50 t 1 1 143197 522 0.00 2019-10-30 05:49:53 2019-10-30 05:49:55 t 1 1 143199 522 0.00 2019-10-30 05:50:12 2019-10-30 05:50:53 t 1 1 143200 522 0.00 2019-10-30 05:50:59 2019-10-30 05:51:01 t 1 1 143210 522 0.00 2019-10-30 05:54:18 2019-10-30 05:55:00 t 1 1 143214 522 0.00 2019-10-30 05:56:12 2019-10-30 05:56:51 t 1 1 143215 522 0.00 2019-10-30 05:56:56 2019-10-30 05:57:03 t 1 1 143218 522 0.00 2019-10-30 05:57:50 2019-10-30 05:57:56 t 1 1 143219 522 0.00 2019-10-30 05:58:07 2019-10-30 05:58:14 t 1 1 143222 522 0.00 2019-10-30 05:58:50 2019-10-30 05:59:53 t 1 1 143224 522 0.00 2019-10-30 06:00:12 2019-10-30 06:00:18 t 1 1 143229 522 0.00 2019-10-30 06:02:16 2019-10-30 06:02:23 t 1 1 143233 522 0.00 2019-10-30 06:03:29 2019-10-30 06:03:51 t 1 1 143239 522 0.00 2019-10-30 06:05:07 2019-10-30 06:05:08 t 1 1 143243 522 0.00 2019-10-30 06:06:12 2019-10-30 06:06:30 t 1 1 143248 522 0.00 2019-10-30 06:08:10 2019-10-30 06:08:12 t 1 1 143252 522 0.00 2019-10-30 06:09:21 2019-10-30 06:09:28 t 1 1 143254 522 0.00 2019-10-30 06:10:13 2019-10-30 06:10:19 t 1 1 143258 522 0.00 2019-10-30 06:11:30 2019-10-30 06:11:32 t 1 1 143259 522 0.00 2019-10-30 06:11:37 2019-10-30 06:12:09 t 1 1 143262 522 0.00 2019-10-30 06:12:39 2019-10-30 06:12:56 t 1 1 143263 522 0.00 2019-10-30 06:13:09 2019-10-30 06:13:10 t 1 1 143267 522 0.00 2019-10-30 06:14:10 2019-10-30 06:14:11 t 1 1 143270 220 0.00 2019-10-30 06:14:45 2019-10-30 06:15:04 t 1 1 143272 522 0.00 2019-10-30 06:15:21 2019-10-30 06:15:23 t 1 1 143276 522 0.00 2019-10-30 06:16:32 2019-10-30 06:16:33 t 1 1 143277 522 0.00 2019-10-30 06:16:38 2019-10-30 06:16:40 t 1 1 143278 522 0.00 2019-10-30 06:16:45 2019-10-30 06:17:15 t 1 1 143282 522 0.00 2019-10-30 06:18:41 2019-10-30 06:18:42 t 1 1 143283 522 0.00 2019-10-30 06:18:47 2019-10-30 06:19:14 t 1 1 143285 522 0.00 2019-10-30 06:19:48 2019-10-30 06:20:05 t 1 1 143288 522 0.00 2019-10-30 06:20:42 2019-10-30 06:20:48 t 1 1 143289 522 0.00 2019-10-30 06:20:54 2019-10-30 06:21:25 t 1 1 143291 379 0.00 2019-10-30 06:16:40 2019-10-30 06:21:44 t 1 1 143292 522 0.00 2019-10-30 06:21:44 2019-10-30 06:21:50 t 1 1 143294 522 0.00 2019-10-30 06:22:40 2019-10-30 06:22:41 t 1 1 143298 522 0.00 2019-10-30 06:23:44 2019-10-30 06:23:46 t 1 1 143299 522 0.00 2019-10-30 06:23:51 2019-10-30 06:24:12 t 1 1 143301 522 0.00 2019-10-30 06:24:25 2019-10-30 06:24:26 t 1 1 143303 522 0.00 2019-10-30 06:24:50 2019-10-30 06:25:11 t 1 1 143306 522 0.00 2019-10-30 06:25:41 2019-10-30 06:25:43 t 1 1 143312 522 0.00 2019-10-30 06:26:42 2019-10-30 06:26:48 t 1 1 143313 522 0.00 2019-10-30 06:26:53 2019-10-30 06:27:19 t 1 1 143316 522 0.00 2019-10-30 06:27:50 2019-10-30 06:27:55 t 1 1 143317 522 0.00 2019-10-30 06:28:00 2019-10-30 06:28:17 t 1 1 143321 522 0.00 2019-10-30 06:29:28 2019-10-30 06:29:35 t 1 1 143323 522 0.00 2019-10-30 06:29:58 2019-10-30 06:30:24 t 1 1 143325 522 0.00 2019-10-30 06:30:36 2019-10-30 06:30:38 t 1 1 143329 522 0.00 2019-10-30 06:31:40 2019-10-30 06:31:46 t 1 1 143332 522 0.00 2019-10-30 06:32:05 2019-10-30 06:32:26 t 1 1 143334 522 0.00 2019-10-30 06:32:43 2019-10-30 06:33:00 t 1 1 143343 522 0.00 2019-10-30 06:35:37 2019-10-30 06:35:44 t 1 1 143344 522 0.00 2019-10-30 06:35:49 2019-10-30 06:36:04 t 1 1 143348 522 0.00 2019-10-30 06:37:15 2019-10-30 06:37:32 t 1 1 143352 522 0.00 2019-10-30 06:38:44 2019-10-30 06:38:46 t 1 1 143353 522 0.00 2019-10-30 06:39:06 2019-10-30 06:39:38 t 1 1 143355 522 0.00 2019-10-30 06:39:52 2019-10-30 06:39:57 t 1 1 143359 522 0.00 2019-10-30 06:40:56 2019-10-30 06:40:57 t 1 1 143360 522 0.00 2019-10-30 06:41:02 2019-10-30 06:41:09 t 1 1 143364 522 0.00 2019-10-30 06:42:07 2019-10-30 06:42:14 t 1 1 143370 522 0.00 2019-10-30 06:43:23 2019-10-30 06:43:40 t 1 1 143374 522 0.00 2019-10-30 06:44:28 2019-10-30 06:44:40 t 1 1 143376 522 0.00 2019-10-30 06:45:11 2019-10-30 06:45:12 t 1 1 143380 522 0.00 2019-10-30 06:46:11 2019-10-30 06:46:18 t 1 1 143384 522 0.00 2019-10-30 06:47:29 2019-10-30 06:47:52 t 1 1 143385 522 0.00 2019-10-30 06:47:57 2019-10-30 06:48:04 t 1 1 143387 522 0.00 2019-10-30 06:48:09 2019-10-30 06:48:52 t 1 1 143388 522 0.00 2019-10-30 06:48:57 2019-10-30 06:49:03 t 1 1 143392 522 0.00 2019-10-30 06:50:14 2019-10-30 06:50:16 t 1 1 143396 522 0.00 2019-10-30 06:51:13 2019-10-30 06:51:21 t 1 1 143397 522 0.00 2019-10-30 06:51:26 2019-10-30 06:51:57 t 1 1 143400 522 0.00 2019-10-30 06:52:36 2019-10-30 06:52:38 t 1 1 143401 522 0.00 2019-10-30 06:52:43 2019-10-30 06:52:59 t 1 1 143405 522 0.00 2019-10-30 06:53:33 2019-10-30 06:54:06 t 1 1 143410 522 0.00 2019-10-30 06:55:34 2019-10-30 06:55:40 t 1 1 143411 522 0.00 2019-10-30 06:55:45 2019-10-30 06:56:12 t 1 1 143418 522 0.00 2019-10-30 06:57:46 2019-10-30 06:57:48 t 1 1 143419 522 0.00 2019-10-30 06:57:53 2019-10-30 06:58:15 t 1 1 143420 522 0.00 2019-10-30 06:58:27 2019-10-30 06:58:29 t 1 1 143424 522 0.00 2019-10-30 06:59:30 2019-10-30 06:59:31 t 1 1 143099 522 0.00 2019-10-30 05:18:11 2019-10-30 05:18:18 t 1 1 143100 220 0.00 2019-10-30 05:18:36 2019-10-30 05:18:51 t 1 1 143105 522 0.00 2019-10-30 05:20:16 2019-10-30 05:20:18 t 1 1 143106 522 0.00 2019-10-30 05:20:23 2019-10-30 05:21:04 t 1 1 143110 522 0.00 2019-10-30 05:22:08 2019-10-30 05:22:10 t 1 1 143111 522 0.00 2019-10-30 05:22:15 2019-10-30 05:22:18 t 1 1 143114 522 0.00 2019-10-30 05:22:34 2019-10-30 05:23:15 t 1 1 143118 587 0.00 2019-10-30 05:17:33 2019-10-30 05:25:10 t 1 1 143120 522 0.00 2019-10-30 05:25:16 2019-10-30 05:25:22 t 1 1 143124 522 0.00 2019-10-30 05:26:19 2019-10-30 05:26:24 t 1 1 143125 581 0.00 2019-10-30 05:26:50 2019-10-30 05:26:52 t 1 1 143128 522 0.00 2019-10-30 05:27:10 2019-10-30 05:27:16 t 1 1 143130 490 0.00 2019-10-30 00:50:41 2019-10-30 05:27:28 t 1 1 143135 522 0.00 2019-10-30 05:28:38 2019-10-30 05:29:21 t 1 1 143137 522 0.00 2019-10-30 05:29:37 2019-10-30 05:30:21 t 1 1 143143 522 0.00 2019-10-30 05:32:19 2019-10-30 05:32:25 t 1 1 143145 522 0.00 2019-10-30 05:32:42 2019-10-30 05:33:24 t 1 1 143147 522 0.00 2019-10-30 05:33:29 2019-10-30 05:33:36 t 1 1 143148 522 0.00 2019-10-30 05:33:41 2019-10-30 05:34:48 t 1 1 143150 581 0.00 2019-10-30 05:31:47 2019-10-30 05:35:34 t 1 1 143151 522 0.00 2019-10-30 05:35:18 2019-10-30 05:36:25 t 1 1 143153 522 0.00 2019-10-30 05:36:37 2019-10-30 05:36:43 t 1 1 143154 522 0.00 2019-10-30 05:36:48 2019-10-30 05:37:27 t 1 1 143155 522 0.00 2019-10-30 05:37:40 2019-10-30 05:38:13 t 1 1 143158 522 0.00 2019-10-30 05:38:47 2019-10-30 05:38:49 t 1 1 143159 522 0.00 2019-10-30 05:38:54 2019-10-30 05:39:35 t 1 1 143162 581 0.00 2019-10-30 05:39:45 2019-10-30 05:39:50 t 1 1 143165 522 0.00 2019-10-30 05:40:49 2019-10-30 05:40:51 t 1 1 143169 581 0.00 2019-10-30 05:41:47 2019-10-30 05:41:54 t 1 1 143174 522 0.00 2019-10-30 05:42:59 2019-10-30 05:43:41 t 1 1 143176 522 0.00 2019-10-30 05:43:46 2019-10-30 05:43:52 t 1 1 143179 522 0.00 2019-10-30 05:43:57 2019-10-30 05:44:39 t 1 1 143181 522 0.00 2019-10-30 05:44:44 2019-10-30 05:44:51 t 1 1 143183 522 0.00 2019-10-30 05:45:22 2019-10-30 05:45:28 t 1 1 143187 522 0.00 2019-10-30 05:46:03 2019-10-30 05:46:46 t 1 1 143188 522 0.00 2019-10-30 05:46:51 2019-10-30 05:46:58 t 1 1 143191 522 0.00 2019-10-30 05:47:47 2019-10-30 05:47:54 t 1 1 143192 522 0.00 2019-10-30 05:47:59 2019-10-30 05:48:06 t 1 1 143193 581 0.00 2019-10-30 05:48:29 2019-10-30 05:48:30 t 1 1 143196 522 0.00 2019-10-30 05:49:06 2019-10-30 05:49:48 t 1 1 143198 522 0.00 2019-10-30 05:50:01 2019-10-30 05:50:07 t 1 1 143203 522 0.00 2019-10-30 05:52:05 2019-10-30 05:52:49 t 1 1 143204 522 0.00 2019-10-30 05:52:54 2019-10-30 05:53:00 t 1 1 143205 522 0.00 2019-10-30 05:53:05 2019-10-30 05:53:07 t 1 1 143206 220 0.00 2019-10-30 05:53:22 2019-10-30 05:53:36 t 1 1 143209 522 0.00 2019-10-30 05:54:07 2019-10-30 05:54:13 t 1 1 143212 522 0.00 2019-10-30 05:55:13 2019-10-30 05:55:54 t 1 1 143213 522 0.00 2019-10-30 05:55:59 2019-10-30 05:56:06 t 1 1 143217 522 0.00 2019-10-30 05:57:18 2019-10-30 05:57:37 t 1 1 143221 512 0.00 2019-10-30 05:53:01 2019-10-30 05:58:53 t 1 1 143223 522 0.00 2019-10-30 06:00:06 2019-10-30 06:00:07 t 1 1 143226 522 0.00 2019-10-30 06:00:53 2019-10-30 06:00:55 t 1 1 143227 522 0.00 2019-10-30 06:01:00 2019-10-30 06:01:07 t 1 1 143228 522 0.00 2019-10-30 06:01:20 2019-10-30 06:02:05 t 1 1 143232 522 0.00 2019-10-30 06:03:09 2019-10-30 06:03:16 t 1 1 143234 220 0.00 2019-10-30 06:03:52 2019-10-30 06:04:07 t 1 1 143237 220 0.00 2019-10-30 06:04:15 2019-10-30 06:04:29 t 1 1 143241 522 0.00 2019-10-30 06:05:21 2019-10-30 06:05:28 t 1 1 143242 522 0.00 2019-10-30 06:05:33 2019-10-30 06:05:59 t 1 1 143246 522 0.00 2019-10-30 06:07:24 2019-10-30 06:07:30 t 1 1 143247 522 0.00 2019-10-30 06:07:35 2019-10-30 06:07:58 t 1 1 143250 522 0.00 2019-10-30 06:08:36 2019-10-30 06:08:53 t 1 1 143251 522 0.00 2019-10-30 06:09:04 2019-10-30 06:09:16 t 1 1 143253 522 0.00 2019-10-30 06:09:41 2019-10-30 06:10:02 t 1 1 143256 522 0.00 2019-10-30 06:10:39 2019-10-30 06:10:56 t 1 1 143257 522 0.00 2019-10-30 06:11:01 2019-10-30 06:11:18 t 1 1 143261 522 0.00 2019-10-30 06:12:28 2019-10-30 06:12:34 t 1 1 143265 522 0.00 2019-10-30 06:13:34 2019-10-30 06:13:35 t 1 1 143266 522 0.00 2019-10-30 06:13:40 2019-10-30 06:13:57 t 1 1 143269 522 0.00 2019-10-30 06:14:35 2019-10-30 06:14:37 t 1 1 143271 522 0.00 2019-10-30 06:14:42 2019-10-30 06:15:09 t 1 1 143275 522 0.00 2019-10-30 06:16:12 2019-10-30 06:16:19 t 1 1 143281 522 0.00 2019-10-30 06:18:21 2019-10-30 06:18:28 t 1 1 143287 522 0.00 2019-10-30 06:20:36 2019-10-30 06:20:37 t 1 1 143293 522 0.00 2019-10-30 06:21:55 2019-10-30 06:22:27 t 1 1 143297 522 0.00 2019-10-30 06:23:37 2019-10-30 06:23:39 t 1 1 143300 485 0.00 2019-10-30 06:19:35 2019-10-30 06:24:24 t 1 1 143304 220 0.00 2019-10-29 16:26:49 2019-10-30 06:25:13 t 1 2 143305 522 0.00 2019-10-30 06:25:22 2019-10-30 06:25:29 t 1 1 143309 522 0.00 2019-10-30 06:26:16 2019-10-30 06:26:23 t 1 1 143311 522 0.00 2019-10-30 06:26:36 2019-10-30 06:26:37 t 1 1 143315 522 0.00 2019-10-30 06:27:43 2019-10-30 06:27:44 t 1 1 143319 522 0.00 2019-10-30 06:28:36 2019-10-30 06:28:42 t 1 1 143320 522 0.00 2019-10-30 06:28:47 2019-10-30 06:29:15 t 1 1 143328 522 0.00 2019-10-30 06:31:33 2019-10-30 06:31:35 t 1 1 143330 581 0.00 2019-10-30 05:54:29 2019-10-30 06:31:54 t 1 1 143331 522 0.00 2019-10-30 06:31:59 2019-10-30 06:32:00 t 1 1 143336 522 0.00 2019-10-30 06:33:33 2019-10-30 06:33:38 t 1 1 143337 522 0.00 2019-10-30 06:33:43 2019-10-30 06:34:04 t 1 1 143338 522 0.00 2019-10-30 06:34:09 2019-10-30 06:34:29 t 1 1 143340 522 0.00 2019-10-30 06:34:34 2019-10-30 06:34:40 t 1 1 143342 522 0.00 2019-10-30 06:35:06 2019-10-30 06:35:32 t 1 1 143346 522 0.00 2019-10-30 06:36:48 2019-10-30 06:36:50 t 1 1 143347 522 0.00 2019-10-30 06:36:55 2019-10-30 06:37:02 t 1 1 143351 522 0.00 2019-10-30 06:38:15 2019-10-30 06:38:32 t 1 1 143358 520 0.00 2019-10-30 06:21:51 2019-10-30 06:40:50 t 1 1 143362 522 0.00 2019-10-30 06:41:51 2019-10-30 06:41:54 t 1 1 143363 522 0.00 2019-10-30 06:42:00 2019-10-30 06:42:02 t 1 1 143366 522 0.00 2019-10-30 06:42:51 2019-10-30 06:42:52 t 1 1 143369 522 0.00 2019-10-30 06:43:17 2019-10-30 06:43:18 t 1 1 143373 522 0.00 2019-10-30 06:44:09 2019-10-30 06:44:16 t 1 1 143375 522 0.00 2019-10-30 06:44:51 2019-10-30 06:44:58 t 1 1 143378 522 0.00 2019-10-30 06:45:30 2019-10-30 06:45:51 t 1 1 143379 522 0.00 2019-10-30 06:46:04 2019-10-30 06:46:05 t 1 1 143383 522 0.00 2019-10-30 06:47:22 2019-10-30 06:47:24 t 1 1 143391 522 0.00 2019-10-30 06:49:35 2019-10-30 06:50:02 t 1 1 143395 522 0.00 2019-10-30 06:50:41 2019-10-30 06:51:02 t 1 1 143399 522 0.00 2019-10-30 06:52:16 2019-10-30 06:52:24 t 1 1 143403 522 0.00 2019-10-30 06:53:19 2019-10-30 06:53:21 t 1 1 143407 522 0.00 2019-10-30 06:54:26 2019-10-30 06:54:42 t 1 1 143409 522 0.00 2019-10-30 06:55:27 2019-10-30 06:55:29 t 1 1 143413 522 0.00 2019-10-30 06:56:31 2019-10-30 06:56:33 t 1 1 143414 522 0.00 2019-10-30 06:56:46 2019-10-30 06:57:09 t 1 1 143415 520 0.00 2019-10-30 06:50:57 2019-10-30 06:57:24 t 1 1 143417 522 0.00 2019-10-30 06:57:39 2019-10-30 06:57:41 t 1 1 143423 522 0.00 2019-10-30 06:59:16 2019-10-30 06:59:17 t 1 1 143428 522 0.00 2019-10-30 07:00:47 2019-10-30 07:00:48 t 1 1 143429 522 0.00 2019-10-30 07:00:53 2019-10-30 07:01:19 t 1 1 143431 522 0.00 2019-10-30 07:01:24 2019-10-30 07:01:26 t 1 1 143434 587 0.00 2019-10-30 06:53:23 2019-10-30 07:02:20 t 1 1 143436 522 0.00 2019-10-30 07:02:26 2019-10-30 07:02:29 t 1 1 143437 522 0.00 2019-10-30 07:02:34 2019-10-30 07:02:41 t 1 1 143439 522 0.00 2019-10-30 07:03:00 2019-10-30 07:03:18 t 1 1 143443 522 0.00 2019-10-30 07:03:57 2019-10-30 07:04:18 t 1 1 143445 522 0.00 2019-10-30 07:05:02 2019-10-30 07:05:18 t 1 1 143449 587 0.00 2019-10-30 07:04:13 2019-10-30 07:06:13 t 1 1 143451 522 0.00 2019-10-30 07:06:43 2019-10-30 07:06:44 t 1 1 143453 522 0.00 2019-10-30 07:07:04 2019-10-30 07:07:27 t 1 1 143461 522 0.00 2019-10-30 07:09:40 2019-10-30 07:11:21 t 1 1 143462 564 0.00 2019-10-30 06:19:31 2019-10-30 07:15:29 t 1 1 143465 587 0.00 2019-10-30 07:19:47 2019-10-30 07:21:29 t 1 1 143479 587 0.00 2019-10-30 07:43:22 2019-10-30 07:44:52 t 1 1 143482 508 0.00 2019-10-30 07:50:42 2019-10-30 07:50:42 f 1 2 143484 520 0.00 2019-10-30 07:44:37 2019-10-30 07:52:03 t 1 1 143487 554 0.00 2019-10-29 22:36:06 2019-10-30 07:56:39 t 1 1 143496 585 0.00 2019-10-30 08:07:18 2019-10-30 08:14:34 t 1 1 143497 556 0.00 2019-10-30 07:51:21 2019-10-30 08:15:32 t 1 1 143498 556 0.00 2019-10-30 08:15:32 2019-10-30 08:16:14 t 1 1 143500 570 0.00 2019-10-30 08:14:41 2019-10-30 08:17:02 t 1 1 143503 422 0.00 2019-10-30 07:29:43 2019-10-30 08:18:59 t 1 1 143504 585 0.00 2019-10-30 08:14:46 2019-10-30 08:19:47 t 1 1 143509 615 0.00 2019-10-30 08:18:12 2019-10-30 08:28:57 t 1 1 143514 562 0.00 2019-10-30 08:38:00 2019-10-30 08:40:17 t 1 1 143517 615 0.00 2019-10-30 08:39:32 2019-10-30 08:48:43 t 1 1 143519 585 0.00 2019-10-30 08:48:13 2019-10-30 08:50:52 t 1 1 143520 430 0.00 2019-10-30 08:52:00 2019-10-30 08:52:54 t 1 1 143522 554 0.00 2019-10-30 07:56:39 2019-10-30 08:56:38 t 1 1 143525 562 0.00 2019-10-30 08:57:42 2019-10-30 08:59:22 t 1 1 143532 220 0.00 2019-10-30 09:11:15 2019-10-30 09:11:37 t 1 1 143536 220 0.00 2019-10-30 09:12:07 2019-10-30 09:12:26 t 1 1 143541 220 0.00 2019-10-30 09:13:16 2019-10-30 09:13:26 t 1 1 143543 220 0.00 2019-10-30 09:13:26 2019-10-30 09:13:47 t 1 1 143545 220 0.00 2019-10-30 09:13:47 2019-10-30 09:15:21 t 1 1 143557 327 0.00 2019-10-30 09:21:57 2019-10-30 09:21:57 f 1 1 143558 220 0.00 2019-10-30 09:21:41 2019-10-30 09:23:12 t 1 1 143559 597 0.00 2019-10-30 09:23:53 2019-10-30 09:25:26 t 1 1 143562 578 0.00 2019-10-29 22:25:16 2019-10-30 09:33:02 t 1 1 143564 481 0.00 2019-10-30 08:03:13 2019-10-30 09:38:00 t 1 1 143570 416 0.00 2019-10-30 09:44:51 2019-10-30 09:46:50 t 1 1 143571 599 0.00 2019-10-30 09:46:38 2019-10-30 09:47:10 t 1 1 143572 615 0.00 2019-10-30 09:47:54 2019-10-30 09:48:44 t 1 1 143573 570 0.00 2019-10-30 09:45:40 2019-10-30 09:49:04 t 1 1 143575 451 0.00 2019-10-30 09:43:48 2019-10-30 09:51:30 t 1 1 143576 416 0.00 2019-10-30 09:46:53 2019-10-30 09:52:28 t 1 1 143579 562 0.00 2019-10-30 09:56:34 2019-10-30 09:56:59 t 1 1 143581 554 0.00 2019-10-30 08:56:38 2019-10-30 09:57:40 t 1 1 143584 591 0.00 2019-10-30 09:44:41 2019-10-30 10:03:55 t 1 1 143585 481 0.00 2019-10-30 09:38:00 2019-10-30 10:07:33 t 1 1 143590 556 0.00 2019-10-30 08:16:14 2019-10-30 10:08:15 t 1 1 143592 595 0.00 2019-10-30 10:06:14 2019-10-30 10:10:26 t 1 1 143594 578 0.00 2019-10-30 09:33:02 2019-10-30 10:13:49 t 1 1 143595 416 0.00 2019-10-30 10:02:08 2019-10-30 10:14:04 t 1 1 143601 430 0.00 2019-10-30 10:28:40 2019-10-30 10:33:22 t 1 1 143602 430 0.00 2019-10-30 10:33:22 2019-10-30 10:35:04 t 1 1 143612 514 0.00 2019-10-30 10:41:12 2019-10-30 10:43:05 t 1 1 143614 562 0.00 2019-10-30 10:43:56 2019-10-30 10:44:39 t 1 1 143620 516 0.00 2019-10-30 10:44:08 2019-10-30 10:47:02 t 1 1 143623 481 0.00 2019-10-30 10:48:08 2019-10-30 10:49:19 t 1 1 143628 599 0.00 2019-10-30 10:20:06 2019-10-30 10:51:37 t 1 1 143631 562 0.00 2019-10-30 10:54:38 2019-10-30 10:54:53 t 1 1 143637 570 0.00 2019-10-30 10:57:31 2019-10-30 11:00:32 t 1 1 143639 591 0.00 2019-10-30 10:50:45 2019-10-30 11:01:52 t 1 1 143644 416 0.00 2019-10-30 10:49:03 2019-10-30 11:04:24 t 1 1 143645 512 0.00 2019-10-30 10:57:15 2019-10-30 11:05:24 t 1 1 143648 615 0.00 2019-10-30 10:58:57 2019-10-30 11:08:48 t 1 1 143651 562 0.00 2019-10-30 11:15:51 2019-10-30 11:16:52 t 1 1 143652 512 0.00 2019-10-30 11:05:49 2019-10-30 11:19:20 t 1 1 143655 562 0.00 2019-10-30 11:22:44 2019-10-30 11:23:22 t 1 1 143657 599 0.00 2019-10-30 11:15:34 2019-10-30 11:24:02 t 1 1 143658 220 0.00 2019-10-30 09:53:25 2019-10-30 11:24:56 t 1 1 143660 562 0.00 2019-10-30 11:25:00 2019-10-30 11:26:10 t 1 1 143661 514 0.00 2019-10-30 10:43:05 2019-10-30 11:26:26 t 1 1 143663 578 0.00 2019-10-30 11:27:12 2019-10-30 11:27:13 t 1 1 143665 514 0.00 2019-10-30 11:27:33 2019-10-30 11:27:43 t 1 1 143670 591 0.00 2019-10-30 11:19:24 2019-10-30 11:33:09 t 1 1 143677 451 0.00 2019-10-30 11:36:50 2019-10-30 11:39:31 t 1 1 143679 599 0.00 2019-10-30 11:34:52 2019-10-30 11:42:39 t 1 1 143686 220 0.00 2019-10-30 11:35:01 2019-10-30 11:52:24 t 1 2 143690 562 0.00 2019-10-30 11:55:47 2019-10-30 11:56:46 t 1 1 143691 562 0.00 2019-10-30 11:58:26 2019-10-30 11:59:14 t 1 1 143693 570 0.00 2019-10-30 11:56:30 2019-10-30 12:00:01 t 1 1 143696 564 0.00 2019-10-30 12:00:35 2019-10-30 12:00:35 t 1 1 143700 562 0.00 2019-10-30 11:59:36 2019-10-30 12:02:16 t 1 1 143701 570 0.00 2019-10-30 12:01:28 2019-10-30 12:03:22 t 1 1 143703 615 0.00 2019-10-30 11:55:29 2019-10-30 12:04:34 t 1 1 143707 581 0.00 2019-10-30 11:57:29 2019-10-30 12:08:07 t 1 1 143708 619 0.00 2019-10-30 12:06:42 2019-10-30 12:08:48 t 1 1 143709 564 0.00 2019-10-30 12:01:58 2019-10-30 12:09:15 t 1 1 143711 562 0.00 2019-10-30 12:10:17 2019-10-30 12:11:08 t 1 1 143714 581 0.00 2019-10-30 12:08:07 2019-10-30 12:13:57 t 1 1 143715 562 0.00 2019-10-30 12:15:32 2019-10-30 12:16:53 t 1 1 143718 456 0.00 2019-10-30 12:10:11 2019-10-30 12:19:40 t 1 1 143719 220 0.00 2019-10-30 12:08:52 2019-10-30 12:20:15 t 1 2 143724 585 0.00 2019-10-30 12:24:44 2019-10-30 12:30:29 t 1 1 143426 522 0.00 2019-10-30 06:59:55 2019-10-30 07:00:18 t 1 1 143430 456 0.00 2019-10-30 06:58:17 2019-10-30 07:01:25 t 1 1 143432 522 0.00 2019-10-30 07:01:39 2019-10-30 07:01:55 t 1 1 143433 522 0.00 2019-10-30 07:02:02 2019-10-30 07:02:15 t 1 1 143435 551 0.00 2019-10-30 01:34:53 2019-10-30 07:02:27 t 1 1 143438 522 0.00 2019-10-30 07:02:54 2019-10-30 07:02:55 t 1 1 143440 522 0.00 2019-10-30 07:03:31 2019-10-30 07:03:32 t 1 1 143444 522 0.00 2019-10-30 07:04:38 2019-10-30 07:04:51 t 1 1 143446 522 0.00 2019-10-30 07:05:31 2019-10-30 07:05:32 t 1 1 143452 522 0.00 2019-10-30 07:06:49 2019-10-30 07:06:51 t 1 1 143454 522 0.00 2019-10-30 07:07:37 2019-10-30 07:07:55 t 1 1 143455 522 0.00 2019-10-30 07:08:08 2019-10-30 07:08:25 t 1 1 143457 522 0.00 2019-10-30 07:09:02 2019-10-30 07:09:09 t 1 1 143463 520 0.00 2019-10-30 06:57:24 2019-10-30 07:17:59 t 1 1 143466 611 0.00 2019-10-30 07:03:09 2019-10-30 07:21:45 t 1 1 143467 520 0.00 2019-10-30 07:17:59 2019-10-30 07:25:08 t 1 1 143468 516 0.00 2019-10-30 06:49:24 2019-10-30 07:27:44 t 1 1 143470 422 0.00 2019-10-29 23:54:44 2019-10-30 07:29:43 t 1 1 143471 514 0.00 2019-10-30 07:29:09 2019-10-30 07:29:52 t 1 1 143472 595 0.00 2019-10-30 07:28:51 2019-10-30 07:35:31 t 1 1 143475 379 0.00 2019-10-30 07:38:10 2019-10-30 07:40:06 t 1 1 143476 520 0.00 2019-10-30 07:25:07 2019-10-30 07:41:47 t 1 1 143478 520 0.00 2019-10-30 07:41:46 2019-10-30 07:44:37 t 1 1 143480 379 0.00 2019-10-30 07:42:15 2019-10-30 07:46:25 t 1 1 143493 562 0.00 2019-10-30 08:06:25 2019-10-30 08:08:41 t 1 1 143495 220 0.00 2019-10-30 08:12:15 2019-10-30 08:12:35 t 1 1 143501 562 0.00 2019-10-30 08:17:04 2019-10-30 08:17:04 t 1 1 143505 562 0.00 2019-10-30 08:17:52 2019-10-30 08:22:31 t 1 1 143506 220 0.00 2019-10-30 08:12:45 2019-10-30 08:23:12 t 1 1 143507 562 0.00 2019-10-30 08:22:31 2019-10-30 08:26:06 t 1 1 143511 562 0.00 2019-10-30 08:26:06 2019-10-30 08:30:29 t 1 1 143512 562 0.00 2019-10-30 08:30:29 2019-10-30 08:31:56 t 1 1 143515 562 0.00 2019-10-30 08:40:17 2019-10-30 08:42:59 t 1 1 143518 562 0.00 2019-10-30 08:49:24 2019-10-30 08:50:10 t 1 1 143521 597 0.00 2019-10-30 08:52:13 2019-10-30 08:55:49 t 1 1 143523 562 0.00 2019-10-30 08:56:46 2019-10-30 08:56:54 t 1 1 143527 379 0.00 2019-10-30 07:46:25 2019-10-30 09:01:07 t 1 1 143529 220 0.00 2019-10-30 08:25:30 2019-10-30 09:10:56 t 1 1 143530 220 0.00 2019-10-30 09:10:56 2019-10-30 09:11:06 t 1 1 143533 220 0.00 2019-10-30 09:11:36 2019-10-30 09:11:46 t 1 1 143534 220 0.00 2019-10-30 09:11:46 2019-10-30 09:11:58 t 1 1 143537 220 0.00 2019-10-30 09:12:26 2019-10-30 09:12:36 t 1 1 143538 220 0.00 2019-10-30 09:12:35 2019-10-30 09:12:57 t 1 1 143539 220 0.00 2019-10-30 09:12:56 2019-10-30 09:13:07 t 1 1 143544 615 0.00 2019-10-30 09:06:36 2019-10-30 09:14:21 t 1 1 143550 597 0.00 2019-10-30 09:15:32 2019-10-30 09:20:10 t 1 1 143552 562 0.00 2019-10-30 09:19:32 2019-10-30 09:20:37 t 1 1 143555 422 0.00 2019-10-30 08:18:59 2019-10-30 09:21:36 t 1 1 143560 615 0.00 2019-10-30 09:26:11 2019-10-30 09:27:32 t 1 1 143561 562 0.00 2019-10-30 09:24:46 2019-10-30 09:29:48 t 1 1 143563 570 0.00 2019-10-30 09:16:13 2019-10-30 09:33:30 t 1 1 143565 562 0.00 2019-10-30 09:31:22 2019-10-30 09:38:37 t 1 1 143566 416 0.00 2019-10-30 00:23:21 2019-10-30 09:43:57 t 1 1 143568 591 0.00 2019-10-30 08:56:04 2019-10-30 09:44:41 t 1 1 143580 562 0.00 2019-10-30 09:57:18 2019-10-30 09:57:29 t 1 1 143582 416 0.00 2019-10-30 09:52:27 2019-10-30 10:02:08 t 1 1 143583 562 0.00 2019-10-30 10:03:33 2019-10-30 10:03:51 t 1 1 143587 615 0.00 2019-10-30 10:05:03 2019-10-30 10:07:43 t 1 1 143589 451 0.00 2019-10-30 09:53:05 2019-10-30 10:08:04 t 1 1 143596 562 0.00 2019-10-30 10:21:11 2019-10-30 10:21:24 t 1 1 143598 570 0.00 2019-10-30 10:22:27 2019-10-30 10:24:38 t 1 1 143600 562 0.00 2019-10-30 10:28:42 2019-10-30 10:29:00 t 1 1 143604 562 0.00 2019-10-30 10:35:33 2019-10-30 10:36:00 t 1 1 143606 430 0.00 2019-10-30 10:36:28 2019-10-30 10:38:57 t 1 1 143609 562 0.00 2019-10-30 10:40:01 2019-10-30 10:40:13 t 1 1 143610 514 0.00 2019-10-30 07:29:52 2019-10-30 10:41:12 t 1 1 143611 516 0.00 2019-10-30 10:39:22 2019-10-30 10:42:16 t 1 1 143613 516 0.00 2019-10-30 10:42:16 2019-10-30 10:44:09 t 1 1 143617 430 0.00 2019-10-30 10:39:29 2019-10-30 10:45:43 t 1 1 143625 615 0.00 2019-10-30 10:42:42 2019-10-30 10:49:40 t 1 1 143626 562 0.00 2019-10-30 10:49:58 2019-10-30 10:50:27 t 1 1 143627 597 0.00 2019-10-30 10:48:48 2019-10-30 10:51:01 t 1 1 143632 562 0.00 2019-10-30 10:57:08 2019-10-30 10:57:23 t 1 1 143636 562 0.00 2019-10-30 10:59:32 2019-10-30 11:00:14 t 1 1 143638 556 0.00 2019-10-30 10:19:38 2019-10-30 11:01:22 t 1 1 143641 451 0.00 2019-10-30 10:49:54 2019-10-30 11:01:53 t 1 1 143642 412 0.00 2019-10-30 10:08:22 2019-10-30 11:02:32 t 1 1 143646 591 0.00 2019-10-30 11:05:36 2019-10-30 11:07:27 t 1 1 143647 562 0.00 2019-10-30 11:07:50 2019-10-30 11:08:11 t 1 1 143649 570 0.00 2019-10-30 11:13:30 2019-10-30 11:14:49 t 1 1 143650 599 0.00 2019-10-30 10:57:31 2019-10-30 11:15:34 t 1 1 143653 562 0.00 2019-10-30 11:17:26 2019-10-30 11:19:38 t 1 1 143662 379 0.00 2019-10-30 11:12:31 2019-10-30 11:26:44 t 1 1 143664 514 0.00 2019-10-30 11:26:26 2019-10-30 11:27:33 t 1 1 143667 562 0.00 2019-10-30 11:28:26 2019-10-30 11:30:38 t 1 1 143668 220 0.00 2019-10-30 11:26:28 2019-10-30 11:32:17 t 1 1 143674 562 0.00 2019-10-30 11:35:03 2019-10-30 11:35:48 t 1 1 143676 581 0.00 2019-10-30 11:24:06 2019-10-30 11:39:22 t 1 1 143678 562 0.00 2019-10-30 11:35:58 2019-10-30 11:42:38 t 1 1 143681 619 0.00 2019-10-30 11:41:03 2019-10-30 11:46:04 t 1 1 143684 562 0.00 2019-10-30 11:49:45 2019-10-30 11:49:57 t 1 1 143687 599 0.00 2019-10-30 11:46:36 2019-10-30 11:53:49 t 1 1 143688 562 0.00 2019-10-30 11:54:23 2019-10-30 11:55:15 t 1 1 143689 581 0.00 2019-10-30 11:40:50 2019-10-30 11:56:40 t 1 1 143694 564 0.00 2019-10-30 12:00:27 2019-10-30 12:00:27 t 1 1 143697 516 0.00 2019-10-30 11:53:54 2019-10-30 12:00:55 t 1 1 143698 619 0.00 2019-10-30 11:59:17 2019-10-30 12:01:14 t 1 1 143702 562 0.00 2019-10-30 12:02:27 2019-10-30 12:04:16 t 1 1 143713 361 0.00 2019-10-30 12:00:59 2019-10-30 12:13:41 t 1 2 143716 516 0.00 2019-10-30 12:15:38 2019-10-30 12:17:06 t 1 1 143717 591 0.00 2019-10-30 12:15:08 2019-10-30 12:19:02 t 1 1 143721 591 0.00 2019-10-30 12:23:52 2019-10-30 12:26:06 t 1 1 143722 562 0.00 2019-10-30 12:20:56 2019-10-30 12:28:12 t 1 1 143725 597 0.00 2019-10-30 12:09:58 2019-10-30 12:31:44 t 1 1 143726 570 0.00 2019-10-30 12:01:32 2019-10-30 12:32:59 t 1 1 143729 615 0.00 2019-10-30 12:30:21 2019-10-30 12:35:01 t 1 1 143734 615 0.00 2019-10-30 12:38:20 2019-10-30 12:41:43 t 1 1 143427 522 0.00 2019-10-30 07:00:29 2019-10-30 07:00:34 t 1 1 143441 522 0.00 2019-10-30 07:03:37 2019-10-30 07:03:44 t 1 1 143442 587 0.00 2019-10-30 07:02:35 2019-10-30 07:03:59 t 1 1 143447 522 0.00 2019-10-30 07:05:38 2019-10-30 07:05:44 t 1 1 143448 522 0.00 2019-10-30 07:05:57 2019-10-30 07:05:58 t 1 1 143450 522 0.00 2019-10-30 07:06:03 2019-10-30 07:06:30 t 1 1 143456 522 0.00 2019-10-30 07:08:36 2019-10-30 07:08:43 t 1 1 143458 522 0.00 2019-10-30 07:09:14 2019-10-30 07:09:27 t 1 1 143459 522 0.00 2019-10-30 07:09:46 2019-10-30 07:09:46 f 1 1 143460 522 0.00 2019-10-30 07:08:56 2019-10-30 07:10:21 t 1 1 143464 587 0.00 2019-10-30 07:06:54 2019-10-30 07:19:32 t 1 1 143469 514 0.00 2019-10-30 02:56:54 2019-10-30 07:29:10 t 1 1 143473 595 0.00 2019-10-30 07:35:38 2019-10-30 07:35:52 t 1 1 143474 379 0.00 2019-10-30 06:21:44 2019-10-30 07:37:43 t 1 1 143477 587 0.00 2019-10-30 07:21:43 2019-10-30 07:43:22 t 1 1 143481 611 0.00 2019-10-30 07:42:32 2019-10-30 07:50:28 t 1 1 143483 611 0.00 2019-10-30 07:50:28 2019-10-30 07:51:28 t 1 1 143485 611 0.00 2019-10-30 07:51:28 2019-10-30 07:52:39 t 1 1 143486 597 0.00 2019-10-30 07:22:54 2019-10-30 07:54:14 t 1 1 143488 615 0.00 2019-10-30 07:58:13 2019-10-30 08:02:29 t 1 1 143489 481 0.00 2019-10-30 07:39:47 2019-10-30 08:03:13 t 1 1 143490 456 0.00 2019-10-30 07:49:51 2019-10-30 08:04:05 t 1 1 143491 615 0.00 2019-10-30 08:02:29 2019-10-30 08:07:09 t 1 1 143492 597 0.00 2019-10-30 07:58:12 2019-10-30 08:08:41 t 1 1 143494 220 0.00 2019-10-30 07:23:57 2019-10-30 08:12:15 t 1 1 143499 562 0.00 2019-10-30 08:10:29 2019-10-30 08:16:17 t 1 1 143502 562 0.00 2019-10-30 08:17:04 2019-10-30 08:18:21 t 1 1 143508 220 0.00 2019-10-30 08:26:22 2019-10-30 08:28:21 t 1 1 143510 615 0.00 2019-10-30 08:28:57 2019-10-30 08:30:10 t 1 1 143513 615 0.00 2019-10-30 08:33:23 2019-10-30 08:36:13 t 1 1 143516 562 0.00 2019-10-30 08:42:59 2019-10-30 08:45:26 t 1 1 143524 585 0.00 2019-10-30 08:51:57 2019-10-30 08:57:32 t 1 1 143526 430 0.00 2019-10-30 08:57:38 2019-10-30 08:59:36 t 1 1 143528 562 0.00 2019-10-30 09:01:57 2019-10-30 09:05:35 t 1 1 143531 220 0.00 2019-10-30 09:11:06 2019-10-30 09:11:16 t 1 1 143535 220 0.00 2019-10-30 09:11:57 2019-10-30 09:12:08 t 1 1 143540 220 0.00 2019-10-30 09:13:06 2019-10-30 09:13:16 t 1 1 143542 597 0.00 2019-10-30 09:12:37 2019-10-30 09:13:28 t 1 1 143546 562 0.00 2019-10-30 09:10:03 2019-10-30 09:15:26 t 1 1 143547 220 0.00 2019-10-30 09:15:21 2019-10-30 09:15:55 t 1 1 143548 220 0.00 2019-10-30 09:15:54 2019-10-30 09:18:50 t 1 1 143549 220 0.00 2019-10-30 09:18:49 2019-10-30 09:19:27 t 1 1 143551 220 0.00 2019-10-30 09:19:26 2019-10-30 09:20:29 t 1 1 143553 220 0.00 2019-10-30 09:20:29 2019-10-30 09:20:39 t 1 1 143554 220 0.00 2019-10-30 09:20:38 2019-10-30 09:21:31 t 1 1 143556 220 0.00 2019-10-30 09:21:31 2019-10-30 09:21:41 t 1 1 143567 585 0.00 2019-10-30 09:41:52 2019-10-30 09:44:10 t 1 1 143569 562 0.00 2019-10-30 09:45:54 2019-10-30 09:46:14 t 1 1 143574 220 0.00 2019-10-30 09:27:12 2019-10-30 09:51:11 t 1 1 143577 615 0.00 2019-10-30 09:48:47 2019-10-30 09:52:48 t 1 1 143578 451 0.00 2019-10-30 09:51:30 2019-10-30 09:53:05 t 1 1 143586 412 0.00 2019-10-29 18:10:44 2019-10-30 10:07:33 t 1 1 143588 379 0.00 2019-10-30 09:01:07 2019-10-30 10:08:02 t 1 1 143591 597 0.00 2019-10-30 10:09:12 2019-10-30 10:10:13 t 1 1 143593 562 0.00 2019-10-30 10:10:21 2019-10-30 10:10:49 t 1 1 143597 570 0.00 2019-10-30 10:12:34 2019-10-30 10:22:27 t 1 1 143599 562 0.00 2019-10-30 10:25:01 2019-10-30 10:25:18 t 1 1 143603 562 0.00 2019-10-30 10:34:21 2019-10-30 10:35:08 t 1 1 143605 430 0.00 2019-10-30 10:35:04 2019-10-30 10:36:28 t 1 1 143607 430 0.00 2019-10-30 10:39:02 2019-10-30 10:39:08 t 1 1 143608 585 0.00 2019-10-30 10:35:24 2019-10-30 10:39:44 t 1 1 143615 416 0.00 2019-10-30 10:14:04 2019-10-30 10:44:51 t 1 1 143616 570 0.00 2019-10-30 10:24:38 2019-10-30 10:45:05 t 1 1 143618 591 0.00 2019-10-30 10:43:49 2019-10-30 10:45:46 t 1 1 143619 498 0.00 2019-10-30 08:19:29 2019-10-30 10:46:33 t 1 2 143621 430 0.00 2019-10-30 10:45:51 2019-10-30 10:47:07 t 1 1 143622 481 0.00 2019-10-30 10:08:16 2019-10-30 10:48:08 t 1 1 143624 585 0.00 2019-10-30 10:45:45 2019-10-30 10:49:35 t 1 1 143629 516 0.00 2019-10-30 10:49:42 2019-10-30 10:53:06 t 1 1 143630 562 0.00 2019-10-30 10:53:18 2019-10-30 10:54:00 t 1 1 143633 599 0.00 2019-10-30 10:51:37 2019-10-30 10:57:31 t 1 1 143634 361 0.00 2019-10-30 10:07:24 2019-10-30 10:57:58 t 1 2 143635 574 0.00 2019-10-30 10:56:52 2019-10-30 11:00:11 t 1 1 143640 481 0.00 2019-10-30 10:49:19 2019-10-30 11:01:52 t 1 1 143643 395 0.00 2019-10-30 10:17:20 2019-10-30 11:03:44 t 1 2 143654 615 0.00 2019-10-30 11:10:07 2019-10-30 11:19:52 t 1 1 143656 581 0.00 2019-10-30 11:20:08 2019-10-30 11:23:57 t 1 1 143659 361 0.00 2019-10-30 11:17:15 2019-10-30 11:25:28 t 1 2 143666 451 0.00 2019-10-30 11:02:02 2019-10-30 11:29:23 t 1 1 143669 570 0.00 2019-10-30 11:26:24 2019-10-30 11:32:50 t 1 1 143671 416 0.00 2019-10-30 11:19:44 2019-10-30 11:33:35 t 1 1 143672 599 0.00 2019-10-30 11:24:02 2019-10-30 11:34:52 t 1 1 143673 570 0.00 2019-10-30 11:32:49 2019-10-30 11:35:36 t 1 1 143675 451 0.00 2019-10-30 11:29:45 2019-10-30 11:36:57 t 1 1 143680 615 0.00 2019-10-30 11:41:37 2019-10-30 11:46:01 t 1 1 143682 599 0.00 2019-10-30 11:42:39 2019-10-30 11:46:36 t 1 1 143683 597 0.00 2019-10-30 11:37:18 2019-10-30 11:47:03 t 1 1 143685 591 0.00 2019-10-30 11:46:32 2019-10-30 11:51:08 t 1 1 143692 619 0.00 2019-10-30 11:47:15 2019-10-30 11:59:17 t 1 1 143695 564 0.00 2019-10-30 12:00:27 2019-10-30 12:00:35 t 1 1 143699 564 0.00 2019-10-30 12:00:35 2019-10-30 12:01:58 t 1 1 143704 619 0.00 2019-10-30 12:01:14 2019-10-30 12:04:48 t 1 1 143705 619 0.00 2019-10-30 12:04:48 2019-10-30 12:06:42 t 1 1 143706 562 0.00 2019-10-30 12:06:26 2019-10-30 12:07:16 t 1 1 143710 591 0.00 2019-10-30 11:55:55 2019-10-30 12:09:40 t 1 1 143712 430 0.00 2019-10-30 12:10:00 2019-10-30 12:11:55 t 1 1 143720 481 0.00 2019-10-30 11:01:56 2019-10-30 12:20:25 t 1 1 143723 562 0.00 2019-10-30 12:28:15 2019-10-30 12:29:22 t 1 1 143728 220 0.00 2019-10-30 12:16:06 2019-10-30 12:34:58 t 1 1 143733 562 0.00 2019-10-30 12:35:45 2019-10-30 12:40:22 t 1 1 143736 619 0.00 2019-10-30 12:40:49 2019-10-30 12:46:09 t 1 1 143738 597 0.00 2019-10-30 12:37:14 2019-10-30 12:47:27 t 1 1 143745 512 0.00 2019-10-30 12:55:44 2019-10-30 13:02:08 t 1 1 143748 422 0.00 2019-10-30 12:59:29 2019-10-30 13:09:55 t 1 1 143750 562 0.00 2019-10-30 13:10:02 2019-10-30 13:10:27 t 1 1 143752 220 0.00 2019-10-30 12:44:17 2019-10-30 13:14:41 t 1 2 143756 422 0.00 2019-10-30 13:09:55 2019-10-30 13:18:17 t 1 1 143727 585 0.00 2019-10-30 12:30:28 2019-10-30 12:33:35 t 1 1 143730 562 0.00 2019-10-30 12:28:27 2019-10-30 12:35:45 t 1 1 143731 544 0.00 2019-10-30 12:22:59 2019-10-30 12:36:22 t 1 2 143732 220 0.00 2019-10-30 12:37:09 2019-10-30 12:38:55 t 1 1 143739 564 0.00 2019-10-30 12:11:59 2019-10-30 12:48:09 t 1 1 143740 562 0.00 2019-10-30 12:48:31 2019-10-30 12:48:52 t 1 1 143741 220 0.00 2019-10-30 12:42:22 2019-10-30 12:59:23 t 1 1 143742 562 0.00 2019-10-30 12:59:13 2019-10-30 12:59:39 t 1 1 143743 591 0.00 2019-10-30 12:29:06 2019-10-30 13:00:35 t 1 1 143747 591 0.00 2019-10-30 13:04:05 2019-10-30 13:05:48 t 1 1 143749 615 0.00 2019-10-30 13:07:58 2019-10-30 13:10:22 t 1 1 143751 619 0.00 2019-10-30 13:11:04 2019-10-30 13:12:33 t 1 1 143755 220 0.00 2019-10-30 13:14:29 2019-10-30 13:18:08 t 1 2 143760 422 0.00 2019-10-30 13:18:17 2019-10-30 13:23:56 t 1 1 143761 617 0.00 2019-10-30 13:15:38 2019-10-30 13:25:33 t 1 1 143764 220 0.00 2019-10-30 13:28:13 2019-10-30 13:29:22 t 1 1 143767 591 0.00 2019-10-30 13:16:42 2019-10-30 13:31:41 t 1 1 143776 597 0.00 2019-10-30 13:33:23 2019-10-30 13:41:00 t 1 1 143779 514 0.00 2019-10-30 13:39:06 2019-10-30 13:45:44 t 1 1 143785 514 0.00 2019-10-30 13:49:02 2019-10-30 13:49:53 t 1 1 143786 581 0.00 2019-10-30 13:46:20 2019-10-30 13:50:04 t 1 1 143789 514 0.00 2019-10-30 13:50:36 2019-10-30 13:52:48 t 1 1 143793 585 0.00 2019-10-30 13:53:48 2019-10-30 13:57:02 t 1 1 143796 514 0.00 2019-10-30 13:52:47 2019-10-30 13:59:52 t 1 1 143797 617 0.00 2019-10-30 13:47:37 2019-10-30 14:00:11 t 1 1 143801 522 0.00 2019-10-30 14:02:12 2019-10-30 14:02:15 t 1 1 143805 522 0.00 2019-10-30 14:06:06 2019-10-30 14:06:30 t 1 1 143807 422 0.00 2019-10-30 13:35:10 2019-10-30 14:09:34 t 1 1 143810 522 0.00 2019-10-30 14:10:40 2019-10-30 14:12:12 t 1 1 143813 514 0.00 2019-10-30 14:06:26 2019-10-30 14:19:52 t 1 1 143814 512 0.00 2019-10-30 14:20:31 2019-10-30 14:21:51 t 1 1 143817 562 0.00 2019-10-30 14:26:09 2019-10-30 14:26:59 t 1 1 143823 544 0.00 2019-10-30 14:32:20 2019-10-30 14:32:33 t 1 2 143825 562 0.00 2019-10-30 14:27:56 2019-10-30 14:33:20 t 1 1 143830 422 0.00 2019-10-30 14:35:36 2019-10-30 14:37:45 t 1 1 143832 562 0.00 2019-10-30 14:33:45 2019-10-30 14:40:21 t 1 1 143836 619 0.00 2019-10-30 14:32:31 2019-10-30 14:42:44 t 1 1 143838 562 0.00 2019-10-30 14:43:10 2019-10-30 14:44:10 t 1 1 143840 570 0.00 2019-10-30 14:41:29 2019-10-30 14:44:47 t 1 1 143848 562 0.00 2019-10-30 14:50:52 2019-10-30 14:52:10 t 1 1 143850 522 0.00 2019-10-30 14:53:29 2019-10-30 14:53:52 t 1 1 143851 522 0.00 2019-10-30 14:54:03 2019-10-30 14:54:26 t 1 1 143854 451 0.00 2019-10-30 14:39:57 2019-10-30 14:55:29 t 1 1 143859 522 0.00 2019-10-30 14:59:48 2019-10-30 15:00:50 t 1 1 143860 562 0.00 2019-10-30 15:01:14 2019-10-30 15:01:26 t 1 1 143861 570 0.00 2019-10-30 14:44:47 2019-10-30 15:02:02 t 1 1 143864 522 0.00 2019-10-30 15:02:50 2019-10-30 15:06:30 t 1 1 143867 451 0.00 2019-10-30 14:55:29 2019-10-30 15:07:46 t 1 1 143868 544 0.00 2019-10-30 15:06:11 2019-10-30 15:08:02 t 1 2 143870 619 0.00 2019-10-30 15:01:36 2019-10-30 15:08:32 t 1 1 143871 522 0.00 2019-10-30 15:08:26 2019-10-30 15:09:16 t 1 1 143873 597 0.00 2019-10-30 15:04:54 2019-10-30 15:09:35 t 1 1 143878 522 0.00 2019-10-30 15:11:11 2019-10-30 15:13:47 t 1 1 143879 522 0.00 2019-10-30 15:13:55 2019-10-30 15:14:11 t 1 1 143883 619 0.00 2019-10-30 15:18:37 2019-10-30 15:21:23 t 1 1 143887 522 0.00 2019-10-30 15:14:23 2019-10-30 15:24:33 t 1 1 143888 522 0.00 2019-10-30 15:24:39 2019-10-30 15:24:53 t 1 1 143889 445 0.00 2019-10-30 15:23:48 2019-10-30 15:25:51 t 1 1 143894 562 0.00 2019-10-30 15:27:28 2019-10-30 15:27:51 t 1 1 143895 585 0.00 2019-10-30 15:24:24 2019-10-30 15:28:20 t 1 1 143900 522 0.00 2019-10-30 15:30:36 2019-10-30 15:31:08 t 1 1 143901 619 0.00 2019-10-30 15:26:55 2019-10-30 15:31:59 t 1 1 143903 443 0.00 2019-10-30 15:30:29 2019-10-30 15:32:43 t 1 1 143905 578 0.00 2019-10-30 15:28:18 2019-10-30 15:33:10 t 1 1 143906 522 0.00 2019-10-30 15:33:51 2019-10-30 15:34:57 t 1 1 143909 597 0.00 2019-10-30 15:28:43 2019-10-30 15:36:35 t 1 1 143910 522 0.00 2019-10-30 15:36:40 2019-10-30 15:37:03 t 1 1 143911 522 0.00 2019-10-30 15:37:39 2019-10-30 15:38:11 t 1 1 143914 512 0.00 2019-10-30 15:13:12 2019-10-30 15:39:30 t 1 1 143915 422 0.00 2019-10-30 14:40:22 2019-10-30 15:40:16 t 1 1 143919 372 0.00 2019-10-30 15:24:33 2019-10-30 15:49:39 t 1 2 143920 619 0.00 2019-10-30 15:46:26 2019-10-30 15:50:00 t 1 1 143923 522 0.00 2019-10-30 15:38:55 2019-10-30 15:55:19 t 1 1 143924 522 0.00 2019-10-30 15:55:26 2019-10-30 15:55:48 t 1 1 143925 522 0.00 2019-10-30 15:55:55 2019-10-30 15:56:37 t 1 1 143926 591 0.00 2019-10-30 15:55:25 2019-10-30 15:57:02 t 1 1 143929 522 0.00 2019-10-30 15:58:58 2019-10-30 15:59:30 t 1 1 143931 522 0.00 2019-10-30 15:59:35 2019-10-30 15:59:42 t 1 1 143934 522 0.00 2019-10-30 16:00:37 2019-10-30 16:00:53 t 1 1 143935 522 0.00 2019-10-30 16:00:58 2019-10-30 16:01:31 t 1 1 143942 611 0.00 2019-10-30 16:02:12 2019-10-30 16:03:27 t 1 1 143948 599 0.00 2019-10-30 15:53:46 2019-10-30 16:04:32 t 1 1 143950 522 0.00 2019-10-30 16:04:44 2019-10-30 16:04:50 t 1 1 143953 522 0.00 2019-10-30 16:04:55 2019-10-30 16:06:09 t 1 1 143956 562 0.00 2019-10-30 16:08:29 2019-10-30 16:08:47 t 1 1 143962 522 0.00 2019-10-30 16:10:22 2019-10-30 16:10:27 t 1 1 143963 522 0.00 2019-10-30 16:10:40 2019-10-30 16:10:42 t 1 1 143964 522 0.00 2019-10-30 16:10:47 2019-10-30 16:11:13 t 1 1 143967 522 0.00 2019-10-30 16:11:46 2019-10-30 16:11:48 t 1 1 143968 512 0.00 2019-10-30 16:08:40 2019-10-30 16:12:02 t 1 1 143970 451 0.00 2019-10-30 16:03:10 2019-10-30 16:12:54 t 1 1 143974 520 0.00 2019-10-30 16:10:39 2019-10-30 16:16:24 t 1 1 143979 445 0.00 2019-10-30 16:03:46 2019-10-30 16:22:49 t 1 1 143984 585 0.00 2019-10-30 16:24:05 2019-10-30 16:26:23 t 1 1 143992 562 0.00 2019-10-30 16:35:44 2019-10-30 16:35:53 t 1 1 143993 481 0.00 2019-10-30 16:34:27 2019-10-30 16:36:47 t 1 1 143995 481 0.00 2019-10-30 16:37:06 2019-10-30 16:38:11 t 1 1 143997 599 0.00 2019-10-30 16:34:33 2019-10-30 16:39:48 t 1 1 143999 522 0.00 2019-10-30 16:34:17 2019-10-30 16:40:32 t 1 1 144002 562 0.00 2019-10-30 16:48:35 2019-10-30 16:48:47 t 1 1 144004 522 0.00 2019-10-30 16:49:11 2019-10-30 16:49:59 t 1 1 144008 514 0.00 2019-10-30 16:37:08 2019-10-30 16:51:35 t 1 1 144013 516 0.00 2019-10-30 16:52:05 2019-10-30 16:54:19 t 1 1 144016 522 0.00 2019-10-30 16:52:38 2019-10-30 16:54:24 t 1 1 144019 522 0.00 2019-10-30 16:54:59 2019-10-30 16:55:41 t 1 1 144021 522 0.00 2019-10-30 16:55:40 2019-10-30 16:55:57 t 1 1 144027 220 0.00 2019-10-30 15:58:05 2019-10-30 16:58:05 t 1 1 143735 562 0.00 2019-10-30 12:40:58 2019-10-30 12:42:43 t 1 1 143737 581 0.00 2019-10-30 12:42:49 2019-10-30 12:46:25 t 1 1 143744 585 0.00 2019-10-30 12:49:26 2019-10-30 13:01:27 t 1 1 143746 220 0.00 2019-10-30 12:59:27 2019-10-30 13:02:46 t 1 1 143753 617 0.00 2019-10-30 13:02:49 2019-10-30 13:15:38 t 1 1 143754 591 0.00 2019-10-30 13:09:21 2019-10-30 13:16:42 t 1 1 143757 514 0.00 2019-10-30 13:11:30 2019-10-30 13:19:20 t 1 1 143759 562 0.00 2019-10-30 13:19:48 2019-10-30 13:20:35 t 1 1 143763 220 0.00 2019-10-30 13:25:12 2019-10-30 13:27:41 t 1 1 143768 514 0.00 2019-10-30 13:19:20 2019-10-30 13:32:25 t 1 1 143770 422 0.00 2019-10-30 13:29:34 2019-10-30 13:35:10 t 1 1 143771 585 0.00 2019-10-30 13:25:46 2019-10-30 13:38:08 t 1 1 143774 617 0.00 2019-10-30 13:36:29 2019-10-30 13:39:50 t 1 1 143775 220 0.00 2019-10-30 13:29:57 2019-10-30 13:40:04 t 1 1 143780 581 0.00 2019-10-30 13:45:09 2019-10-30 13:45:57 t 1 1 143782 514 0.00 2019-10-30 13:45:51 2019-10-30 13:47:15 t 1 1 143783 617 0.00 2019-10-30 13:43:15 2019-10-30 13:47:37 t 1 1 143787 514 0.00 2019-10-30 13:49:53 2019-10-30 13:50:36 t 1 1 143790 220 0.00 2019-10-30 13:40:04 2019-10-30 13:53:05 t 1 1 143792 597 0.00 2019-10-30 13:52:47 2019-10-30 13:55:14 t 1 1 143794 607 0.00 2019-10-30 13:46:37 2019-10-30 13:58:38 t 1 1 143798 325 0.00 2019-10-30 14:00:29 2019-10-30 14:00:29 f 1 2 143803 481 0.00 2019-10-30 13:38:43 2019-10-30 14:06:20 t 1 1 143804 514 0.00 2019-10-30 13:59:51 2019-10-30 14:06:27 t 1 1 143811 591 0.00 2019-10-30 14:06:21 2019-10-30 14:14:46 t 1 1 143812 556 0.00 2019-10-30 11:01:58 2019-10-30 14:18:07 t 1 1 143815 562 0.00 2019-10-30 14:12:33 2019-10-30 14:22:34 t 1 1 143818 562 0.00 2019-10-30 14:27:13 2019-10-30 14:27:17 t 1 1 143819 570 0.00 2019-10-30 14:24:09 2019-10-30 14:31:27 t 1 1 143820 544 0.00 2019-10-30 14:31:30 2019-10-30 14:31:56 t 1 2 143826 538 0.00 2019-10-30 14:05:22 2019-10-30 14:34:32 t 1 1 143827 514 0.00 2019-10-30 14:19:52 2019-10-30 14:35:31 t 1 1 143831 395 0.00 2019-10-30 12:08:26 2019-10-30 14:39:24 t 1 2 143837 564 0.00 2019-10-30 12:48:09 2019-10-30 14:44:03 t 1 1 143842 522 0.00 2019-10-30 14:12:41 2019-10-30 14:45:49 t 1 1 143843 562 0.00 2019-10-30 14:45:05 2019-10-30 14:45:56 t 1 1 143844 522 0.00 2019-10-30 14:45:49 2019-10-30 14:47:50 t 1 1 143845 556 0.00 2019-10-30 14:18:07 2019-10-30 14:48:31 t 1 1 143847 522 0.00 2019-10-30 14:50:41 2019-10-30 14:51:42 t 1 1 143853 512 0.00 2019-10-30 14:43:29 2019-10-30 14:55:10 t 1 1 143858 562 0.00 2019-10-30 14:59:17 2019-10-30 15:00:27 t 1 1 143862 481 0.00 2019-10-30 14:06:20 2019-10-30 15:02:24 t 1 1 143863 556 0.00 2019-10-30 14:57:39 2019-10-30 15:05:36 t 1 1 143872 481 0.00 2019-10-30 15:02:24 2019-10-30 15:09:29 t 1 1 143880 562 0.00 2019-10-30 15:13:45 2019-10-30 15:14:42 t 1 1 143882 570 0.00 2019-10-30 15:12:51 2019-10-30 15:20:14 t 1 1 143885 451 0.00 2019-10-30 15:07:46 2019-10-30 15:21:48 t 1 1 143891 522 0.00 2019-10-30 15:26:34 2019-10-30 15:26:55 t 1 1 143892 574 0.00 2019-10-30 15:26:07 2019-10-30 15:27:08 t 1 1 143893 522 0.00 2019-10-30 15:27:09 2019-10-30 15:27:42 t 1 1 143897 522 0.00 2019-10-30 15:28:46 2019-10-30 15:29:42 t 1 1 143899 522 0.00 2019-10-30 15:29:57 2019-10-30 15:29:59 t 1 1 143904 522 0.00 2019-10-30 15:32:36 2019-10-30 15:33:08 t 1 1 143907 522 0.00 2019-10-30 15:35:04 2019-10-30 15:35:05 t 1 1 143912 562 0.00 2019-10-30 15:38:01 2019-10-30 15:38:15 t 1 1 143913 416 0.00 2019-10-30 15:26:49 2019-10-30 15:39:09 t 1 1 143918 516 0.00 2019-10-30 15:34:00 2019-10-30 15:49:24 t 1 1 143928 522 0.00 2019-10-30 15:57:27 2019-10-30 15:58:53 t 1 1 143930 585 0.00 2019-10-30 15:52:04 2019-10-30 15:59:37 t 1 1 143933 522 0.00 2019-10-30 15:59:47 2019-10-30 16:00:20 t 1 1 143936 522 0.00 2019-10-30 16:01:36 2019-10-30 16:01:43 t 1 1 143938 619 0.00 2019-10-30 16:00:26 2019-10-30 16:01:53 t 1 1 143939 522 0.00 2019-10-30 16:01:48 2019-10-30 16:02:20 t 1 1 143941 562 0.00 2019-10-30 16:00:46 2019-10-30 16:03:15 t 1 1 143944 522 0.00 2019-10-30 16:02:37 2019-10-30 16:03:54 t 1 1 143945 522 0.00 2019-10-30 16:03:59 2019-10-30 16:04:02 t 1 1 143947 562 0.00 2019-10-30 16:03:47 2019-10-30 16:04:27 t 1 1 143951 512 0.00 2019-10-30 16:03:47 2019-10-30 16:05:17 t 1 1 143954 522 0.00 2019-10-30 16:06:14 2019-10-30 16:06:50 t 1 1 143955 512 0.00 2019-10-30 16:05:30 2019-10-30 16:08:40 t 1 1 143957 522 0.00 2019-10-30 16:07:03 2019-10-30 16:09:09 t 1 1 143958 522 0.00 2019-10-30 16:09:22 2019-10-30 16:09:28 t 1 1 143960 522 0.00 2019-10-30 16:09:58 2019-10-30 16:10:10 t 1 1 143965 522 0.00 2019-10-30 16:11:31 2019-10-30 16:11:33 t 1 1 143971 562 0.00 2019-10-30 16:09:14 2019-10-30 16:13:27 t 1 1 143973 562 0.00 2019-10-30 16:14:04 2019-10-30 16:16:12 t 1 1 143975 538 0.00 2019-10-30 14:45:50 2019-10-30 16:17:15 t 1 1 143976 485 0.00 2019-10-30 16:14:35 2019-10-30 16:20:10 t 1 1 143977 522 0.00 2019-10-30 16:12:19 2019-10-30 16:21:12 t 1 1 143983 619 0.00 2019-10-30 16:25:11 2019-10-30 16:25:21 t 1 1 143987 522 0.00 2019-10-30 16:24:08 2019-10-30 16:32:41 t 1 1 143991 599 0.00 2019-10-30 16:30:23 2019-10-30 16:34:34 t 1 1 143998 481 0.00 2019-10-30 16:38:11 2019-10-30 16:40:26 t 1 1 144000 599 0.00 2019-10-30 16:39:48 2019-10-30 16:45:23 t 1 1 144003 522 0.00 2019-10-30 16:40:37 2019-10-30 16:48:58 t 1 1 144005 522 0.00 2019-10-30 16:50:12 2019-10-30 16:50:17 t 1 1 144009 522 0.00 2019-10-30 16:51:20 2019-10-30 16:52:01 t 1 1 144011 522 0.00 2019-10-30 16:52:14 2019-10-30 16:52:16 t 1 1 144015 562 0.00 2019-10-30 16:52:13 2019-10-30 16:54:21 t 1 1 144017 522 0.00 2019-10-30 16:54:35 2019-10-30 16:54:41 t 1 1 144022 522 0.00 2019-10-30 16:56:02 2019-10-30 16:56:23 t 1 1 144025 522 0.00 2019-10-30 16:57:52 2019-10-30 16:57:54 t 1 1 144026 522 0.00 2019-10-30 16:57:59 2019-10-30 16:58:01 t 1 1 144028 522 0.00 2019-10-30 16:58:06 2019-10-30 16:58:29 t 1 1 144030 522 0.00 2019-10-30 16:58:34 2019-10-30 16:58:40 t 1 1 144033 619 0.00 2019-10-30 16:57:50 2019-10-30 16:59:19 t 1 1 144041 522 0.00 2019-10-30 17:00:57 2019-10-30 17:00:57 f 1 1 144046 522 0.00 2019-10-30 17:00:51 2019-10-30 17:02:22 t 1 1 144052 516 0.00 2019-10-30 17:00:32 2019-10-30 17:06:04 t 1 1 144056 430 0.00 2019-10-30 17:05:57 2019-10-30 17:07:09 t 1 1 144060 587 0.00 2019-10-30 17:02:49 2019-10-30 17:09:58 t 1 1 144062 615 0.00 2019-10-30 16:58:50 2019-10-30 17:10:16 t 1 1 144063 587 0.00 2019-10-30 17:10:18 2019-10-30 17:11:55 t 1 1 144070 516 0.00 2019-10-30 17:13:56 2019-10-30 17:21:53 t 1 1 144072 597 0.00 2019-10-30 17:01:17 2019-10-30 17:22:28 t 1 1 144074 562 0.00 2019-10-30 17:05:10 2019-10-30 17:24:23 t 1 1 144075 538 0.00 2019-10-30 17:15:35 2019-10-30 17:26:01 t 1 1 143758 562 0.00 2019-10-30 13:18:59 2019-10-30 13:19:30 t 1 1 143762 220 0.00 2019-10-30 13:17:21 2019-10-30 13:25:44 t 1 2 143765 422 0.00 2019-10-30 13:23:56 2019-10-30 13:29:34 t 1 1 143766 562 0.00 2019-10-30 13:29:46 2019-10-30 13:30:26 t 1 1 143769 562 0.00 2019-10-30 13:32:51 2019-10-30 13:33:33 t 1 1 143772 481 0.00 2019-10-30 12:20:48 2019-10-30 13:38:44 t 1 1 143773 514 0.00 2019-10-30 13:33:17 2019-10-30 13:39:06 t 1 1 143777 562 0.00 2019-10-30 13:40:43 2019-10-30 13:41:10 t 1 1 143778 581 0.00 2019-10-30 13:42:13 2019-10-30 13:43:56 t 1 1 143781 538 0.00 2019-10-30 13:41:29 2019-10-30 13:47:02 t 1 1 143784 514 0.00 2019-10-30 13:47:32 2019-10-30 13:48:45 t 1 1 143788 562 0.00 2019-10-30 13:49:19 2019-10-30 13:51:18 t 1 1 143791 220 0.00 2019-10-30 13:53:05 2019-10-30 13:54:06 t 1 1 143795 591 0.00 2019-10-30 13:56:30 2019-10-30 13:59:51 t 1 1 143799 619 0.00 2019-10-30 13:52:09 2019-10-30 14:01:28 t 1 1 143800 522 0.00 2019-10-30 13:55:01 2019-10-30 14:02:07 t 1 1 143802 522 0.00 2019-10-30 14:03:02 2019-10-30 14:05:28 t 1 1 143806 619 0.00 2019-10-30 14:01:28 2019-10-30 14:08:52 t 1 1 143808 522 0.00 2019-10-30 14:07:07 2019-10-30 14:10:16 t 1 1 143809 562 0.00 2019-10-30 13:53:54 2019-10-30 14:11:51 t 1 1 143816 485 0.00 2019-10-30 14:18:35 2019-10-30 14:23:02 t 1 1 143821 422 0.00 2019-10-30 14:09:34 2019-10-30 14:32:08 t 1 1 143822 585 0.00 2019-10-30 14:29:48 2019-10-30 14:32:30 t 1 1 143824 597 0.00 2019-10-30 14:29:30 2019-10-30 14:32:45 t 1 1 143828 422 0.00 2019-10-30 14:32:08 2019-10-30 14:35:36 t 1 1 143829 544 0.00 2019-10-30 14:33:22 2019-10-30 14:36:22 t 1 2 143833 422 0.00 2019-10-30 14:37:45 2019-10-30 14:40:22 t 1 1 143834 570 0.00 2019-10-30 14:31:27 2019-10-30 14:41:29 t 1 1 143835 379 0.00 2019-10-30 11:26:44 2019-10-30 14:42:17 t 1 1 143839 456 0.00 2019-10-30 14:39:19 2019-10-30 14:44:21 t 1 1 143841 538 0.00 2019-10-30 14:34:32 2019-10-30 14:44:54 t 1 1 143846 522 0.00 2019-10-30 14:48:21 2019-10-30 14:48:45 t 1 1 143849 522 0.00 2019-10-30 14:51:49 2019-10-30 14:53:04 t 1 1 143852 591 0.00 2019-10-30 14:52:31 2019-10-30 14:54:36 t 1 1 143855 556 0.00 2019-10-30 14:48:31 2019-10-30 14:57:39 t 1 1 143856 562 0.00 2019-10-30 14:52:20 2019-10-30 14:58:32 t 1 1 143857 522 0.00 2019-10-30 14:54:55 2019-10-30 14:59:48 t 1 1 143865 416 0.00 2019-10-30 11:34:18 2019-10-30 15:06:36 t 1 1 143866 522 0.00 2019-10-30 15:06:38 2019-10-30 15:07:24 t 1 1 143869 522 0.00 2019-10-30 15:07:32 2019-10-30 15:08:18 t 1 1 143874 562 0.00 2019-10-30 15:08:54 2019-10-30 15:09:50 t 1 1 143875 522 0.00 2019-10-30 15:09:24 2019-10-30 15:10:10 t 1 1 143876 522 0.00 2019-10-30 15:10:17 2019-10-30 15:11:03 t 1 1 143877 570 0.00 2019-10-30 15:02:02 2019-10-30 15:12:51 t 1 1 143881 562 0.00 2019-10-30 15:15:00 2019-10-30 15:16:55 t 1 1 143884 570 0.00 2019-10-30 15:20:14 2019-10-30 15:21:33 t 1 1 143886 591 0.00 2019-10-30 15:20:19 2019-10-30 15:22:32 t 1 1 143890 416 0.00 2019-10-30 15:05:39 2019-10-30 15:26:28 t 1 1 143896 522 0.00 2019-10-30 15:27:03 2019-10-30 15:29:22 t 1 1 143898 522 0.00 2019-10-30 15:29:50 2019-10-30 15:29:51 t 1 1 143902 522 0.00 2019-10-30 15:31:36 2019-10-30 15:32:08 t 1 1 143908 522 0.00 2019-10-30 15:35:11 2019-10-30 15:35:42 t 1 1 143916 619 0.00 2019-10-30 15:37:58 2019-10-30 15:41:57 t 1 1 143917 599 0.00 2019-10-30 15:37:58 2019-10-30 15:44:21 t 1 1 143921 562 0.00 2019-10-30 15:48:59 2019-10-30 15:50:05 t 1 1 143922 220 0.00 2019-10-30 14:51:52 2019-10-30 15:51:58 t 1 2 143927 522 0.00 2019-10-30 15:56:48 2019-10-30 15:57:22 t 1 1 143932 562 0.00 2019-10-30 15:59:25 2019-10-30 15:59:57 t 1 1 143937 611 0.00 2019-10-30 15:52:43 2019-10-30 16:01:51 t 1 1 143940 522 0.00 2019-10-30 16:02:25 2019-10-30 16:02:32 t 1 1 143943 445 0.00 2019-10-30 15:25:58 2019-10-30 16:03:37 t 1 1 143946 512 0.00 2019-10-30 15:45:57 2019-10-30 16:04:27 t 1 1 143949 522 0.00 2019-10-30 16:04:07 2019-10-30 16:04:39 t 1 1 143952 611 0.00 2019-10-30 16:05:05 2019-10-30 16:05:47 t 1 1 143959 522 0.00 2019-10-30 16:09:46 2019-10-30 16:09:53 t 1 1 143961 522 0.00 2019-10-30 16:10:15 2019-10-30 16:10:17 t 1 1 143966 522 0.00 2019-10-30 16:11:38 2019-10-30 16:11:40 t 1 1 143969 522 0.00 2019-10-30 16:11:53 2019-10-30 16:12:14 t 1 1 143972 422 0.00 2019-10-30 15:40:16 2019-10-30 16:16:06 t 1 1 143978 619 0.00 2019-10-30 16:16:04 2019-10-30 16:21:38 t 1 1 143980 522 0.00 2019-10-30 16:21:18 2019-10-30 16:24:02 t 1 1 143981 599 0.00 2019-10-30 16:20:16 2019-10-30 16:24:49 t 1 1 143982 562 0.00 2019-10-30 16:24:56 2019-10-30 16:25:18 t 1 1 143985 562 0.00 2019-10-30 16:25:24 2019-10-30 16:26:23 t 1 1 143986 599 0.00 2019-10-30 16:24:49 2019-10-30 16:30:23 t 1 1 143988 522 0.00 2019-10-30 16:32:46 2019-10-30 16:32:52 t 1 1 143989 522 0.00 2019-10-30 16:33:12 2019-10-30 16:33:14 t 1 1 143990 522 0.00 2019-10-30 16:33:19 2019-10-30 16:34:12 t 1 1 143994 514 0.00 2019-10-30 14:35:31 2019-10-30 16:37:08 t 1 1 143996 562 0.00 2019-10-30 16:38:05 2019-10-30 16:38:14 t 1 1 144001 615 0.00 2019-10-30 16:42:21 2019-10-30 16:46:55 t 1 1 144006 522 0.00 2019-10-30 16:50:32 2019-10-30 16:50:56 t 1 1 144007 522 0.00 2019-10-30 16:51:07 2019-10-30 16:51:14 t 1 1 144010 416 0.00 2019-10-30 15:38:13 2019-10-30 16:52:05 t 1 1 144012 522 0.00 2019-10-30 16:52:23 2019-10-30 16:52:31 t 1 1 144014 619 0.00 2019-10-30 16:53:06 2019-10-30 16:54:21 t 1 1 144018 522 0.00 2019-10-30 16:55:12 2019-10-30 16:55:29 t 1 1 144020 445 0.00 2019-10-30 16:23:30 2019-10-30 16:55:42 t 1 1 144023 522 0.00 2019-10-30 16:56:44 2019-10-30 16:56:50 t 1 1 144024 522 0.00 2019-10-30 16:57:09 2019-10-30 16:57:31 t 1 1 144031 522 0.00 2019-10-30 16:58:58 2019-10-30 16:59:00 t 1 1 144037 562 0.00 2019-10-30 17:00:15 2019-10-30 17:00:26 t 1 1 144039 522 0.00 2019-10-30 17:00:14 2019-10-30 17:00:38 t 1 1 144044 619 0.00 2019-10-30 17:00:45 2019-10-30 17:01:50 t 1 1 144045 587 0.00 2019-10-30 16:58:20 2019-10-30 17:02:22 t 1 1 144048 481 0.00 2019-10-30 17:01:21 2019-10-30 17:03:29 t 1 1 144049 562 0.00 2019-10-30 17:04:11 2019-10-30 17:04:58 t 1 1 144051 430 0.00 2019-10-30 16:40:33 2019-10-30 17:05:49 t 1 1 144054 595 0.00 2019-10-30 16:59:44 2019-10-30 17:06:15 t 1 1 144055 593 0.00 2019-10-30 17:05:54 2019-10-30 17:06:58 t 1 1 144059 619 0.00 2019-10-30 17:07:22 2019-10-30 17:09:49 t 1 1 144061 570 0.00 2019-10-30 16:40:08 2019-10-30 17:10:15 t 1 1 144066 619 0.00 2019-10-30 17:09:52 2019-10-30 17:14:53 t 1 1 144067 591 0.00 2019-10-30 16:25:30 2019-10-30 17:15:16 t 1 1 144068 445 0.00 2019-10-30 16:57:33 2019-10-30 17:15:36 t 1 1 144071 591 0.00 2019-10-30 17:17:02 2019-10-30 17:22:20 t 1 1 144082 498 0.00 2019-10-30 17:33:44 2019-10-30 17:33:44 f 1 2 144029 562 0.00 2019-10-30 16:58:17 2019-10-30 16:58:32 t 1 1 144032 522 0.00 2019-10-30 16:59:05 2019-10-30 16:59:07 t 1 1 144034 522 0.00 2019-10-30 16:59:13 2019-10-30 16:59:34 t 1 1 144035 522 0.00 2019-10-30 16:59:52 2019-10-30 16:59:57 t 1 1 144036 412 0.00 2019-10-30 11:01:59 2019-10-30 17:00:16 t 1 1 144038 416 0.00 2019-10-30 16:52:12 2019-10-30 17:00:36 t 1 1 144040 597 0.00 2019-10-30 16:37:20 2019-10-30 17:00:57 t 1 1 144042 481 0.00 2019-10-30 16:40:54 2019-10-30 17:01:11 t 1 1 144043 522 0.00 2019-10-30 16:58:45 2019-10-30 17:01:22 t 1 1 144047 512 0.00 2019-10-30 16:59:43 2019-10-30 17:02:40 t 1 1 144050 416 0.00 2019-10-30 17:00:41 2019-10-30 17:05:48 t 1 1 144053 585 0.00 2019-10-30 17:02:12 2019-10-30 17:06:11 t 1 1 144057 538 0.00 2019-10-30 16:17:28 2019-10-30 17:08:06 t 1 1 144058 412 0.00 2019-10-30 17:03:32 2019-10-30 17:09:07 t 1 1 144064 570 0.00 2019-10-30 17:10:09 2019-10-30 17:13:38 t 1 1 144065 416 0.00 2019-10-30 17:06:35 2019-10-30 17:14:18 t 1 1 144069 445 0.00 2019-10-30 17:15:24 2019-10-30 17:16:28 t 1 1 144073 430 0.00 2019-10-30 17:07:16 2019-10-30 17:22:56 t 1 1 144076 591 0.00 2019-10-30 17:24:09 2019-10-30 17:26:07 t 1 1 144078 562 0.00 2019-10-30 17:28:40 2019-10-30 17:29:16 t 1 1 144084 430 0.00 2019-10-30 17:34:18 2019-10-30 17:34:20 t 1 1 144086 412 0.00 2019-10-30 17:09:07 2019-10-30 17:35:01 t 1 1 144089 615 0.00 2019-10-30 17:21:45 2019-10-30 17:37:00 t 1 1 144090 562 0.00 2019-10-30 17:37:40 2019-10-30 17:37:49 t 1 1 144094 522 0.00 2019-10-30 17:39:48 2019-10-30 17:39:48 f 1 1 144097 562 0.00 2019-10-30 17:40:08 2019-10-30 17:40:17 t 1 1 144099 522 0.00 2019-10-30 17:39:18 2019-10-30 17:40:22 t 1 1 144100 522 0.00 2019-10-30 17:40:48 2019-10-30 17:41:15 t 1 1 144102 587 0.00 2019-10-30 17:40:22 2019-10-30 17:41:43 t 1 1 144110 412 0.00 2019-10-30 17:35:15 2019-10-30 17:45:47 t 1 1 144111 615 0.00 2019-10-30 17:40:52 2019-10-30 17:45:53 t 1 1 144112 562 0.00 2019-10-30 17:45:49 2019-10-30 17:46:25 t 1 1 144113 522 0.00 2019-10-30 17:46:30 2019-10-30 17:46:33 t 1 1 144114 430 0.00 2019-10-30 17:41:01 2019-10-30 17:47:48 t 1 1 144118 522 0.00 2019-10-30 17:48:33 2019-10-30 17:50:22 t 1 1 144122 522 0.00 2019-10-30 17:51:20 2019-10-30 17:51:34 t 1 1 144129 615 0.00 2019-10-30 17:45:53 2019-10-30 17:53:32 t 1 1 144130 591 0.00 2019-10-30 17:52:11 2019-10-30 17:53:35 t 1 1 144135 331 0.00 2019-10-30 17:54:45 2019-10-30 17:54:45 f 1 1 144138 430 0.00 2019-10-30 17:54:28 2019-10-30 17:55:04 t 1 1 144142 430 0.00 2019-10-30 17:56:09 2019-10-30 17:56:43 t 1 1 144146 220 0.00 2019-10-30 17:46:28 2019-10-30 17:57:52 t 1 2 144149 430 0.00 2019-10-30 17:57:15 2019-10-30 17:58:53 t 1 1 144150 613 0.00 2019-10-30 17:55:08 2019-10-30 17:59:02 t 1 1 144160 522 0.00 2019-10-30 18:10:27 2019-10-30 18:11:46 t 1 1 144162 522 0.00 2019-10-30 18:13:14 2019-10-30 18:13:28 t 1 1 144165 522 0.00 2019-10-30 18:13:36 2019-10-30 18:14:24 t 1 1 144167 522 0.00 2019-10-30 18:14:45 2019-10-30 18:15:48 t 1 1 144168 412 0.00 2019-10-30 18:01:13 2019-10-30 18:16:51 t 1 1 144171 522 0.00 2019-10-30 18:17:14 2019-10-30 18:17:34 t 1 1 144174 522 0.00 2019-10-30 18:17:42 2019-10-30 18:21:44 t 1 1 144175 562 0.00 2019-10-30 18:21:30 2019-10-30 18:21:57 t 1 1 144181 522 0.00 2019-10-30 18:24:29 2019-10-30 18:25:05 t 1 1 144185 591 0.00 2019-10-30 18:26:18 2019-10-30 18:28:06 t 1 1 144188 522 0.00 2019-10-30 18:28:52 2019-10-30 18:30:23 t 1 1 144190 485 0.00 2019-10-30 18:24:03 2019-10-30 18:31:39 t 1 1 144191 522 0.00 2019-10-30 18:30:58 2019-10-30 18:32:23 t 1 1 144194 522 0.00 2019-10-30 18:33:06 2019-10-30 18:33:06 f 1 1 144197 522 0.00 2019-10-30 18:32:58 2019-10-30 18:34:23 t 1 1 144198 619 0.00 2019-10-30 18:23:11 2019-10-30 18:35:32 t 1 1 144199 220 0.00 2019-10-30 18:33:49 2019-10-30 18:36:13 t 1 2 144202 562 0.00 2019-10-30 18:38:33 2019-10-30 18:38:58 t 1 1 144206 485 0.00 2019-10-30 18:37:20 2019-10-30 18:42:27 t 1 1 144208 597 0.00 2019-10-30 18:39:37 2019-10-30 18:47:24 t 1 1 144211 522 0.00 2019-10-30 18:43:06 2019-10-30 18:49:19 t 1 1 144216 485 0.00 2019-10-30 18:49:31 2019-10-30 18:51:59 t 1 1 144221 412 0.00 2019-10-30 18:25:06 2019-10-30 18:55:39 t 1 1 144227 430 0.00 2019-10-30 18:56:39 2019-10-30 18:59:17 t 1 1 144233 593 0.00 2019-10-30 17:44:33 2019-10-30 19:05:15 t 1 1 144235 562 0.00 2019-10-30 19:03:19 2019-10-30 19:08:22 t 1 1 144239 445 0.00 2019-10-30 18:53:15 2019-10-30 19:12:02 t 1 1 144244 597 0.00 2019-10-30 19:14:04 2019-10-30 19:18:31 t 1 1 144246 430 0.00 2019-10-30 19:19:09 2019-10-30 19:21:48 t 1 1 144247 587 0.00 2019-10-30 19:01:39 2019-10-30 19:22:26 t 1 1 144248 562 0.00 2019-10-30 19:22:18 2019-10-30 19:23:30 t 1 1 144257 589 0.00 2019-10-30 18:38:42 2019-10-30 19:30:56 t 1 1 144258 562 0.00 2019-10-30 19:33:00 2019-10-30 19:33:19 t 1 1 144263 562 0.00 2019-10-30 19:37:45 2019-10-30 19:37:54 t 1 1 144267 587 0.00 2019-10-30 19:40:50 2019-10-30 19:41:51 t 1 1 144271 599 0.00 2019-10-30 19:43:03 2019-10-30 19:50:53 t 1 1 144272 570 0.00 2019-10-30 18:27:53 2019-10-30 19:51:27 t 1 1 144274 512 0.00 2019-10-30 19:21:04 2019-10-30 19:52:53 t 1 1 144276 619 0.00 2019-10-30 19:53:28 2019-10-30 19:54:40 t 1 1 144277 587 0.00 2019-10-30 19:42:04 2019-10-30 19:55:01 t 1 1 144282 562 0.00 2019-10-30 19:59:03 2019-10-30 19:59:38 t 1 1 144285 599 0.00 2019-10-30 20:01:27 2019-10-30 20:02:44 t 1 1 144287 516 0.00 2019-10-30 19:58:32 2019-10-30 20:03:46 t 1 1 144290 562 0.00 2019-10-30 20:07:16 2019-10-30 20:07:24 t 1 1 144291 587 0.00 2019-10-30 20:03:52 2019-10-30 20:08:18 t 1 1 144294 562 0.00 2019-10-30 20:09:33 2019-10-30 20:10:03 t 1 1 144297 562 0.00 2019-10-30 20:13:17 2019-10-30 20:13:32 t 1 1 144298 516 0.00 2019-10-30 20:13:27 2019-10-30 20:17:07 t 1 1 144302 395 0.00 2019-10-30 20:23:28 2019-10-30 20:24:33 t 1 2 144304 538 0.00 2019-10-30 19:36:08 2019-10-30 20:28:52 t 1 1 144306 562 0.00 2019-10-30 20:31:30 2019-10-30 20:32:08 t 1 1 144309 522 0.00 2019-10-30 20:32:20 2019-10-30 20:35:59 t 1 1 144310 220 0.00 2019-10-30 19:38:39 2019-10-30 20:37:24 t 1 1 144311 220 0.00 2019-10-30 20:37:24 2019-10-30 20:37:56 t 1 1 144313 522 0.00 2019-10-30 20:37:43 2019-10-30 20:38:27 t 1 1 144314 220 0.00 2019-10-30 20:37:55 2019-10-30 20:38:44 t 1 1 144319 522 0.00 2019-10-30 20:39:28 2019-10-30 20:41:23 t 1 1 144324 514 0.00 2019-10-30 19:51:38 2019-10-30 20:43:15 t 1 1 144326 522 0.00 2019-10-30 20:41:11 2019-10-30 20:43:23 t 1 1 144329 562 0.00 2019-10-30 20:45:59 2019-10-30 20:46:16 t 1 1 144331 430 0.00 2019-10-30 20:47:30 2019-10-30 20:47:43 t 1 1 144336 619 0.00 2019-10-30 20:47:20 2019-10-30 20:51:11 t 1 1 144339 430 0.00 2019-10-30 20:52:55 2019-10-30 20:53:57 t 1 1 144077 562 0.00 2019-10-30 17:24:58 2019-10-30 17:27:22 t 1 1 144079 591 0.00 2019-10-30 17:29:25 2019-10-30 17:30:54 t 1 1 144080 430 0.00 2019-10-30 17:22:56 2019-10-30 17:32:35 t 1 1 144081 430 0.00 2019-10-30 17:33:28 2019-10-30 17:33:33 t 1 1 144083 562 0.00 2019-10-30 17:29:50 2019-10-30 17:33:49 t 1 1 144087 516 0.00 2019-10-30 17:25:53 2019-10-30 17:35:49 t 1 1 144091 522 0.00 2019-10-30 17:37:26 2019-10-30 17:38:44 t 1 1 144093 522 0.00 2019-10-30 17:38:59 2019-10-30 17:39:06 t 1 1 144104 591 0.00 2019-10-30 17:40:23 2019-10-30 17:42:50 t 1 1 144106 587 0.00 2019-10-30 17:42:43 2019-10-30 17:43:15 t 1 1 144109 556 0.00 2019-10-30 15:05:36 2019-10-30 17:45:44 t 1 1 144115 522 0.00 2019-10-30 17:47:02 2019-10-30 17:48:03 t 1 1 144116 562 0.00 2019-10-30 17:47:28 2019-10-30 17:48:36 t 1 1 144119 522 0.00 2019-10-30 17:50:27 2019-10-30 17:50:32 t 1 1 144121 430 0.00 2019-10-30 17:50:12 2019-10-30 17:50:48 t 1 1 144125 522 0.00 2019-10-30 17:52:20 2019-10-30 17:52:47 t 1 1 144126 430 0.00 2019-10-30 17:52:30 2019-10-30 17:53:06 t 1 1 144128 522 0.00 2019-10-30 17:50:38 2019-10-30 17:53:22 t 1 1 144131 522 0.00 2019-10-30 17:53:37 2019-10-30 17:53:40 t 1 1 144132 430 0.00 2019-10-30 17:53:34 2019-10-30 17:54:12 t 1 1 144136 331 0.00 2019-10-30 17:54:55 2019-10-30 17:54:55 f 1 1 144137 613 0.00 2019-10-30 17:47:16 2019-10-30 17:55:02 t 1 1 144139 562 0.00 2019-10-30 17:53:43 2019-10-30 17:55:12 t 1 1 144141 412 0.00 2019-10-30 17:47:39 2019-10-30 17:56:25 t 1 1 144144 430 0.00 2019-10-30 17:56:48 2019-10-30 17:56:54 t 1 1 144145 522 0.00 2019-10-30 17:55:39 2019-10-30 17:57:22 t 1 1 144147 619 0.00 2019-10-30 17:52:51 2019-10-30 17:58:10 t 1 1 144152 615 0.00 2019-10-30 17:53:32 2019-10-30 17:59:51 t 1 1 144153 587 0.00 2019-10-30 17:44:13 2019-10-30 18:00:05 t 1 1 144156 613 0.00 2019-10-30 17:59:01 2019-10-30 18:03:47 t 1 1 144159 516 0.00 2019-10-30 18:06:25 2019-10-30 18:10:40 t 1 1 144161 516 0.00 2019-10-30 18:10:40 2019-10-30 18:13:16 t 1 1 144166 522 0.00 2019-10-30 18:14:32 2019-10-30 18:14:33 t 1 1 144170 522 0.00 2019-10-30 18:16:31 2019-10-30 18:17:31 t 1 1 144173 562 0.00 2019-10-30 18:17:51 2019-10-30 18:18:26 t 1 1 144177 570 0.00 2019-10-30 17:16:58 2019-10-30 18:22:25 t 1 1 144180 522 0.00 2019-10-30 18:23:05 2019-10-30 18:24:07 t 1 1 144182 522 0.00 2019-10-30 18:25:51 2019-10-30 18:26:52 t 1 1 144183 522 0.00 2019-10-30 18:26:57 2019-10-30 18:27:25 t 1 1 144184 522 0.00 2019-10-30 18:27:43 2019-10-30 18:27:52 t 1 1 144187 516 0.00 2019-10-30 18:27:50 2019-10-30 18:29:23 t 1 1 144189 522 0.00 2019-10-30 18:29:58 2019-10-30 18:31:23 t 1 1 144193 615 0.00 2019-10-30 18:29:06 2019-10-30 18:32:51 t 1 1 144196 587 0.00 2019-10-30 18:14:16 2019-10-30 18:33:38 t 1 1 144200 485 0.00 2019-10-30 18:31:39 2019-10-30 18:37:20 t 1 1 144204 581 0.00 2019-10-30 18:09:53 2019-10-30 18:41:12 t 1 1 144205 562 0.00 2019-10-30 18:41:16 2019-10-30 18:42:06 t 1 1 144207 587 0.00 2019-10-30 18:33:38 2019-10-30 18:44:22 t 1 1 144210 562 0.00 2019-10-30 18:48:44 2019-10-30 18:49:03 t 1 1 144212 485 0.00 2019-10-30 18:42:27 2019-10-30 18:49:31 t 1 1 144213 445 0.00 2019-10-30 17:43:22 2019-10-30 18:50:52 t 1 1 144215 587 0.00 2019-10-30 18:46:42 2019-10-30 18:51:58 t 1 1 144218 619 0.00 2019-10-30 18:50:03 2019-10-30 18:52:51 t 1 1 144220 611 0.00 2019-10-30 18:40:40 2019-10-30 18:54:21 t 1 1 144223 516 0.00 2019-10-30 18:51:14 2019-10-30 18:58:32 t 1 1 144225 562 0.00 2019-10-30 18:58:35 2019-10-30 18:58:39 t 1 1 144228 430 0.00 2019-10-30 18:59:23 2019-10-30 18:59:32 t 1 1 144229 514 0.00 2019-10-30 18:07:09 2019-10-30 19:00:04 t 1 1 144231 430 0.00 2019-10-30 19:01:51 2019-10-30 19:01:53 t 1 1 144232 481 0.00 2019-10-30 17:03:26 2019-10-30 19:02:43 t 1 1 144236 562 0.00 2019-10-30 19:08:32 2019-10-30 19:08:55 t 1 1 144237 481 0.00 2019-10-30 19:02:43 2019-10-30 19:11:43 t 1 1 144240 562 0.00 2019-10-30 19:12:25 2019-10-30 19:12:45 t 1 1 144241 481 0.00 2019-10-30 19:11:43 2019-10-30 19:13:48 t 1 1 144245 512 0.00 2019-10-30 18:51:51 2019-10-30 19:20:21 t 1 1 144249 498 0.00 2019-10-30 18:31:53 2019-10-30 19:24:04 t 1 2 144251 514 0.00 2019-10-30 19:18:10 2019-10-30 19:24:43 t 1 1 144252 607 0.00 2019-10-30 19:02:19 2019-10-30 19:24:53 t 1 1 144253 619 0.00 2019-10-30 19:21:43 2019-10-30 19:25:46 t 1 1 144255 599 0.00 2019-10-30 19:24:11 2019-10-30 19:28:00 t 1 1 144259 481 0.00 2019-10-30 19:13:59 2019-10-30 19:33:48 t 1 1 144260 599 0.00 2019-10-30 19:28:00 2019-10-30 19:34:15 t 1 1 144261 538 0.00 2019-10-30 18:50:37 2019-10-30 19:36:09 t 1 1 144264 220 0.00 2019-10-30 16:58:20 2019-10-30 19:38:39 t 1 1 144266 562 0.00 2019-10-30 19:40:57 2019-10-30 19:41:41 t 1 1 144270 562 0.00 2019-10-30 19:47:58 2019-10-30 19:49:32 t 1 1 144273 514 0.00 2019-10-30 19:24:43 2019-10-30 19:51:38 t 1 1 144275 562 0.00 2019-10-30 19:52:49 2019-10-30 19:53:07 t 1 1 144278 562 0.00 2019-10-30 19:56:15 2019-10-30 19:56:39 t 1 1 144279 516 0.00 2019-10-30 19:53:48 2019-10-30 19:58:32 t 1 1 144281 485 0.00 2019-10-30 19:55:04 2019-10-30 19:59:15 t 1 1 144286 587 0.00 2019-10-30 19:55:25 2019-10-30 20:03:40 t 1 1 144289 220 0.00 2019-10-30 19:49:53 2019-10-30 20:07:17 t 1 2 144293 581 0.00 2019-10-30 20:08:03 2019-10-30 20:09:31 t 1 1 144301 562 0.00 2019-10-30 20:24:02 2019-10-30 20:24:13 t 1 1 144305 564 0.00 2019-10-30 20:25:17 2019-10-30 20:29:25 t 1 1 144312 522 0.00 2019-10-30 20:36:58 2019-10-30 20:38:23 t 1 1 144315 522 0.00 2019-10-30 20:38:35 2019-10-30 20:39:16 t 1 1 144322 589 0.00 2019-10-30 20:04:26 2019-10-30 20:41:38 t 1 1 144323 562 0.00 2019-10-30 20:42:25 2019-10-30 20:42:39 t 1 1 144325 522 0.00 2019-10-30 20:41:24 2019-10-30 20:43:23 t 1 1 144330 585 0.00 2019-10-30 20:30:00 2019-10-30 20:46:39 t 1 1 144332 445 0.00 2019-10-30 19:13:58 2019-10-30 20:48:06 t 1 1 144333 562 0.00 2019-10-30 20:48:46 2019-10-30 20:49:01 t 1 1 144337 430 0.00 2019-10-30 20:51:15 2019-10-30 20:51:21 t 1 1 144340 591 0.00 2019-10-30 20:52:04 2019-10-30 20:54:16 t 1 1 144342 445 0.00 2019-10-30 20:57:11 2019-10-30 20:57:58 t 1 1 144345 220 0.00 2019-10-30 20:39:20 2019-10-30 21:00:57 t 1 1 144347 220 0.00 2019-10-30 21:00:57 2019-10-30 21:01:42 t 1 1 144348 220 0.00 2019-10-30 21:01:42 2019-10-30 21:02:17 t 1 1 144355 220 0.00 2019-10-30 21:05:11 2019-10-30 21:05:47 t 1 1 144356 220 0.00 2019-10-30 21:05:46 2019-10-30 21:06:21 t 1 1 144359 514 0.00 2019-10-30 20:43:15 2019-10-30 21:07:26 t 1 1 144363 220 0.00 2019-10-30 21:07:51 2019-10-30 21:09:11 t 1 1 144367 538 0.00 2019-10-30 21:09:27 2019-10-30 21:10:53 t 1 1 144372 220 0.00 2019-10-30 21:11:27 2019-10-30 21:13:20 t 1 1 144374 597 0.00 2019-10-30 21:11:14 2019-10-30 21:15:10 t 1 1 144085 562 0.00 2019-10-30 17:34:13 2019-10-30 17:34:33 t 1 1 144088 498 0.00 2019-10-30 16:36:41 2019-10-30 17:36:47 t 1 2 144092 445 0.00 2019-10-30 17:17:47 2019-10-30 17:38:53 t 1 1 144095 587 0.00 2019-10-30 17:12:15 2019-10-30 17:39:52 t 1 1 144096 430 0.00 2019-10-30 17:38:57 2019-10-30 17:39:59 t 1 1 144098 619 0.00 2019-10-30 17:35:01 2019-10-30 17:40:21 t 1 1 144101 522 0.00 2019-10-30 17:38:49 2019-10-30 17:41:22 t 1 1 144103 562 0.00 2019-10-30 17:42:06 2019-10-30 17:42:47 t 1 1 144105 445 0.00 2019-10-30 17:39:13 2019-10-30 17:42:59 t 1 1 144107 597 0.00 2019-10-30 17:34:55 2019-10-30 17:43:24 t 1 1 144108 522 0.00 2019-10-30 17:41:41 2019-10-30 17:45:33 t 1 1 144117 522 0.00 2019-10-30 17:49:39 2019-10-30 17:50:07 t 1 1 144120 591 0.00 2019-10-30 17:48:11 2019-10-30 17:50:46 t 1 1 144123 430 0.00 2019-10-30 17:51:07 2019-10-30 17:51:39 t 1 1 144124 522 0.00 2019-10-30 17:51:42 2019-10-30 17:52:08 t 1 1 144127 430 0.00 2019-10-30 17:53:11 2019-10-30 17:53:13 t 1 1 144133 430 0.00 2019-10-30 17:54:17 2019-10-30 17:54:23 t 1 1 144134 522 0.00 2019-10-30 17:54:26 2019-10-30 17:54:36 t 1 1 144140 430 0.00 2019-10-30 17:55:17 2019-10-30 17:56:09 t 1 1 144143 522 0.00 2019-10-30 17:56:54 2019-10-30 17:56:54 f 1 1 144148 522 0.00 2019-10-30 17:56:46 2019-10-30 17:58:22 t 1 1 144151 619 0.00 2019-10-30 17:58:10 2019-10-30 17:59:29 t 1 1 144154 562 0.00 2019-10-30 17:58:39 2019-10-30 18:00:15 t 1 1 144155 591 0.00 2019-10-30 18:01:38 2019-10-30 18:03:16 t 1 1 144157 587 0.00 2019-10-30 18:00:05 2019-10-30 18:07:21 t 1 1 144158 562 0.00 2019-10-30 18:07:21 2019-10-30 18:08:09 t 1 1 144163 522 0.00 2019-10-30 18:11:46 2019-10-30 18:13:34 t 1 1 144164 587 0.00 2019-10-30 18:13:03 2019-10-30 18:13:59 t 1 1 144169 562 0.00 2019-10-30 18:17:07 2019-10-30 18:17:29 t 1 1 144172 591 0.00 2019-10-30 18:08:13 2019-10-30 18:18:05 t 1 1 144176 522 0.00 2019-10-30 18:21:51 2019-10-30 18:22:20 t 1 1 144178 522 0.00 2019-10-30 18:22:28 2019-10-30 18:22:53 t 1 1 144179 485 0.00 2019-10-30 18:21:30 2019-10-30 18:24:03 t 1 1 144186 562 0.00 2019-10-30 18:27:52 2019-10-30 18:28:15 t 1 1 144192 562 0.00 2019-10-30 18:32:11 2019-10-30 18:32:41 t 1 1 144195 522 0.00 2019-10-30 18:31:59 2019-10-30 18:33:23 t 1 1 144201 220 0.00 2019-10-30 18:36:08 2019-10-30 18:37:31 t 1 2 144203 516 0.00 2019-10-30 18:30:44 2019-10-30 18:40:32 t 1 1 144209 562 0.00 2019-10-30 18:47:20 2019-10-30 18:47:51 t 1 1 144214 516 0.00 2019-10-30 18:40:32 2019-10-30 18:51:14 t 1 1 144217 591 0.00 2019-10-30 18:31:18 2019-10-30 18:52:43 t 1 1 144219 587 0.00 2019-10-30 18:53:29 2019-10-30 18:54:09 t 1 1 144222 562 0.00 2019-10-30 18:58:02 2019-10-30 18:58:27 t 1 1 144224 615 0.00 2019-10-30 18:49:20 2019-10-30 18:58:37 t 1 1 144226 564 0.00 2019-10-30 16:48:40 2019-10-30 18:58:59 t 1 1 144230 587 0.00 2019-10-30 18:55:16 2019-10-30 19:00:30 t 1 1 144234 564 0.00 2019-10-30 18:58:59 2019-10-30 19:05:53 t 1 1 144238 562 0.00 2019-10-30 19:11:35 2019-10-30 19:11:55 t 1 1 144242 562 0.00 2019-10-30 19:13:12 2019-10-30 19:14:49 t 1 1 144243 514 0.00 2019-10-30 19:00:04 2019-10-30 19:18:10 t 1 1 144250 587 0.00 2019-10-30 19:23:19 2019-10-30 19:24:14 t 1 1 144254 587 0.00 2019-10-30 19:24:52 2019-10-30 19:26:17 t 1 1 144256 587 0.00 2019-10-30 19:27:44 2019-10-30 19:30:20 t 1 1 144262 619 0.00 2019-10-30 19:35:00 2019-10-30 19:37:44 t 1 1 144265 587 0.00 2019-10-30 19:30:40 2019-10-30 19:40:31 t 1 1 144268 599 0.00 2019-10-30 19:34:15 2019-10-30 19:42:06 t 1 1 144269 599 0.00 2019-10-30 19:42:06 2019-10-30 19:43:03 t 1 1 144280 599 0.00 2019-10-30 19:50:53 2019-10-30 19:59:12 t 1 1 144283 599 0.00 2019-10-30 19:59:12 2019-10-30 20:00:20 t 1 1 144284 599 0.00 2019-10-30 20:00:20 2019-10-30 20:01:27 t 1 1 144288 589 0.00 2019-10-30 19:30:56 2019-10-30 20:04:26 t 1 1 144292 516 0.00 2019-10-30 20:03:46 2019-10-30 20:08:19 t 1 1 144295 587 0.00 2019-10-30 20:08:26 2019-10-30 20:10:13 t 1 1 144296 516 0.00 2019-10-30 20:08:19 2019-10-30 20:13:27 t 1 1 144299 587 0.00 2019-10-30 20:10:43 2019-10-30 20:19:11 t 1 1 144300 619 0.00 2019-10-30 20:18:40 2019-10-30 20:20:16 t 1 1 144303 564 0.00 2019-10-30 19:06:01 2019-10-30 20:25:17 t 1 1 144307 570 0.00 2019-10-30 19:51:27 2019-10-30 20:34:32 t 1 1 144308 591 0.00 2019-10-30 19:44:31 2019-10-30 20:35:57 t 1 1 144316 220 0.00 2019-10-30 20:38:44 2019-10-30 20:39:21 t 1 1 144317 522 0.00 2019-10-30 20:39:36 2019-10-30 20:40:23 t 1 1 144318 522 0.00 2019-10-30 20:40:35 2019-10-30 20:41:06 t 1 1 144320 220 0.00 2019-10-30 20:39:53 2019-10-30 20:41:23 t 1 1 144321 522 0.00 2019-10-30 20:41:32 2019-10-30 20:41:32 f 1 1 144327 412 0.00 2019-10-30 18:55:44 2019-10-30 20:43:38 t 1 1 144328 562 0.00 2019-10-30 20:42:58 2019-10-30 20:44:01 t 1 1 144334 570 0.00 2019-10-30 20:36:45 2019-10-30 20:49:38 t 1 1 144335 451 0.00 2019-10-30 20:36:41 2019-10-30 20:51:03 t 1 1 144338 585 0.00 2019-10-30 20:46:38 2019-10-30 20:53:48 t 1 1 144349 485 0.00 2019-10-30 21:00:15 2019-10-30 21:02:18 t 1 1 144350 220 0.00 2019-10-30 21:02:17 2019-10-30 21:03:06 t 1 1 144351 220 0.00 2019-10-30 21:03:06 2019-10-30 21:03:41 t 1 1 144352 220 0.00 2019-10-30 21:03:40 2019-10-30 21:04:37 t 1 1 144353 538 0.00 2019-10-30 20:57:52 2019-10-30 21:05:05 t 1 1 144358 220 0.00 2019-10-30 21:06:21 2019-10-30 21:07:19 t 1 1 144360 430 0.00 2019-10-30 21:00:08 2019-10-30 21:07:48 t 1 1 144361 220 0.00 2019-10-30 21:07:19 2019-10-30 21:07:51 t 1 1 144362 451 0.00 2019-10-30 20:51:03 2019-10-30 21:08:23 t 1 1 144365 220 0.00 2019-10-30 21:09:11 2019-10-30 21:09:43 t 1 1 144366 485 0.00 2019-10-30 21:06:36 2019-10-30 21:10:52 t 1 1 144368 220 0.00 2019-10-30 21:09:43 2019-10-30 21:10:53 t 1 1 144370 220 0.00 2019-10-30 21:10:53 2019-10-30 21:11:27 t 1 1 144373 220 0.00 2019-10-30 21:13:20 2019-10-30 21:13:54 t 1 1 144375 220 0.00 2019-10-30 21:13:54 2019-10-30 21:15:10 t 1 1 144376 220 0.00 2019-10-30 21:15:10 2019-10-30 21:15:41 t 1 1 144377 220 0.00 2019-10-30 21:15:40 2019-10-30 21:16:54 t 1 1 144385 430 0.00 2019-10-30 21:12:37 2019-10-30 21:22:45 t 1 1 144386 220 0.00 2019-10-30 21:22:23 2019-10-30 21:22:59 t 1 1 144389 220 0.00 2019-10-30 21:22:59 2019-10-30 21:23:47 t 1 1 144390 220 0.00 2019-10-30 21:23:47 2019-10-30 21:24:20 t 1 1 144392 556 0.00 2019-10-30 21:17:45 2019-10-30 21:24:36 t 1 1 144393 220 0.00 2019-10-30 21:24:19 2019-10-30 21:24:59 t 1 1 144399 430 0.00 2019-10-30 21:26:24 2019-10-30 21:26:32 t 1 1 144400 220 0.00 2019-10-30 21:26:10 2019-10-30 21:27:00 t 1 1 144403 514 0.00 2019-10-30 21:25:24 2019-10-30 21:28:01 t 1 1 144405 220 0.00 2019-10-30 21:27:00 2019-10-30 21:28:30 t 1 1 144412 412 0.00 2019-10-30 20:43:50 2019-10-30 21:32:02 t 1 1 144341 361 0.00 2019-10-30 20:25:03 2019-10-30 20:54:38 t 1 2 144343 570 0.00 2019-10-30 20:49:37 2019-10-30 20:59:12 t 1 1 144344 430 0.00 2019-10-30 20:54:04 2019-10-30 21:00:08 t 1 1 144346 562 0.00 2019-10-30 20:50:00 2019-10-30 21:01:38 t 1 1 144354 220 0.00 2019-10-30 21:04:36 2019-10-30 21:05:12 t 1 1 144357 485 0.00 2019-10-30 21:02:18 2019-10-30 21:06:36 t 1 1 144364 481 0.00 2019-10-30 19:33:46 2019-10-30 21:09:24 t 1 1 144369 564 0.00 2019-10-30 20:42:42 2019-10-30 21:11:00 t 1 1 144371 430 0.00 2019-10-30 21:07:48 2019-10-30 21:12:37 t 1 1 144378 562 0.00 2019-10-30 21:03:17 2019-10-30 21:17:06 t 1 1 144380 556 0.00 2019-10-30 17:45:48 2019-10-30 21:17:45 t 1 1 144387 430 0.00 2019-10-30 21:23:16 2019-10-30 21:23:21 t 1 1 144391 514 0.00 2019-10-30 21:23:45 2019-10-30 21:24:29 t 1 1 144396 510 0.00 2019-10-30 20:50:39 2019-10-30 21:25:30 t 1 1 144406 514 0.00 2019-10-30 21:28:00 2019-10-30 21:28:43 t 1 1 144408 430 0.00 2019-10-30 21:30:05 2019-10-30 21:30:13 t 1 1 144415 430 0.00 2019-10-30 21:32:21 2019-10-30 21:32:29 t 1 1 144418 520 0.00 2019-10-30 21:13:06 2019-10-30 21:34:24 t 1 1 144420 556 0.00 2019-10-30 21:24:36 2019-10-30 21:34:52 t 1 1 144422 220 0.00 2019-10-30 21:31:37 2019-10-30 21:35:23 t 1 1 144423 220 0.00 2019-10-30 21:35:23 2019-10-30 21:35:57 t 1 1 144427 430 0.00 2019-10-30 21:37:03 2019-10-30 21:37:10 t 1 1 144428 430 0.00 2019-10-30 21:37:36 2019-10-30 21:37:38 t 1 1 144430 430 0.00 2019-10-30 21:38:26 2019-10-30 21:40:23 t 1 1 144431 430 0.00 2019-10-30 21:40:49 2019-10-30 21:40:58 t 1 1 144438 430 0.00 2019-10-30 21:42:28 2019-10-30 21:42:30 t 1 1 144451 520 0.00 2019-10-30 21:34:21 2019-10-30 21:55:06 t 1 1 144453 445 0.00 2019-10-30 20:58:05 2019-10-30 21:56:54 t 1 1 144454 562 0.00 2019-10-30 21:58:00 2019-10-30 21:58:17 t 1 1 144456 556 0.00 2019-10-30 21:41:29 2019-10-30 22:00:02 t 1 1 144457 520 0.00 2019-10-30 21:55:06 2019-10-30 22:00:07 t 1 1 144458 520 0.00 2019-10-30 22:00:07 2019-10-30 22:03:28 t 1 1 144461 485 0.00 2019-10-30 22:06:50 2019-10-30 22:08:06 t 1 1 144462 562 0.00 2019-10-30 22:08:37 2019-10-30 22:08:57 t 1 1 144464 587 0.00 2019-10-30 22:10:58 2019-10-30 22:11:23 t 1 1 144466 566 0.00 2019-10-30 21:48:23 2019-10-30 22:13:05 t 1 1 144468 585 0.00 2019-10-30 22:09:02 2019-10-30 22:14:22 t 1 1 144470 587 0.00 2019-10-30 22:13:44 2019-10-30 22:16:08 t 1 1 144472 510 0.00 2019-10-30 21:25:34 2019-10-30 22:17:10 t 1 1 144478 485 0.00 2019-10-30 22:08:27 2019-10-30 22:18:43 t 1 1 144483 451 0.00 2019-10-30 22:17:05 2019-10-30 22:21:49 t 1 1 144484 595 0.00 2019-10-30 22:19:50 2019-10-30 22:22:18 t 1 1 144486 595 0.00 2019-10-30 22:24:19 2019-10-30 22:24:26 t 1 1 144487 220 0.00 2019-10-30 22:17:05 2019-10-30 22:25:15 t 1 2 144488 510 0.00 2019-10-30 22:17:10 2019-10-30 22:26:42 t 1 1 144492 562 0.00 2019-10-30 22:30:04 2019-10-30 22:30:15 t 1 1 144495 587 0.00 2019-10-30 22:32:02 2019-10-30 22:34:33 t 1 1 144497 619 0.00 2019-10-30 22:26:59 2019-10-30 22:34:55 t 1 1 144503 520 0.00 2019-10-30 22:29:58 2019-10-30 22:39:34 t 1 1 144505 595 0.00 2019-10-30 22:36:04 2019-10-30 22:40:59 t 1 1 144506 587 0.00 2019-10-30 22:35:45 2019-10-30 22:43:16 t 1 1 144507 595 0.00 2019-10-30 22:44:41 2019-10-30 22:44:50 t 1 1 144509 512 0.00 2019-10-30 22:20:23 2019-10-30 22:47:38 t 1 1 144510 481 0.00 2019-10-30 22:14:36 2019-10-30 22:49:26 t 1 1 144512 566 0.00 2019-10-30 22:34:36 2019-10-30 22:50:51 t 1 1 144514 587 0.00 2019-10-30 22:50:16 2019-10-30 22:52:48 t 1 1 144526 456 0.00 2019-10-30 22:36:43 2019-10-30 23:02:03 t 1 1 144528 597 0.00 2019-10-30 22:48:06 2019-10-30 23:03:10 t 1 1 144532 595 0.00 2019-10-30 23:04:50 2019-10-30 23:04:59 t 1 1 144534 595 0.00 2019-10-30 23:05:07 2019-10-30 23:05:30 t 1 1 144535 595 0.00 2019-10-30 23:05:39 2019-10-30 23:06:03 t 1 1 144538 595 0.00 2019-10-30 23:06:48 2019-10-30 23:07:10 t 1 1 144541 528 0.00 2019-10-30 22:39:33 2019-10-30 23:08:58 t 1 1 144547 570 0.00 2019-10-30 22:47:43 2019-10-30 23:12:43 t 1 1 144548 562 0.00 2019-10-30 23:12:44 2019-10-30 23:12:56 t 1 1 144549 587 0.00 2019-10-30 22:59:12 2019-10-30 23:14:13 t 1 1 144551 485 0.00 2019-10-30 23:03:36 2019-10-30 23:15:51 t 1 1 144552 566 0.00 2019-10-30 23:07:57 2019-10-30 23:16:35 t 1 1 144555 595 0.00 2019-10-30 23:20:14 2019-10-30 23:20:17 t 1 1 144556 570 0.00 2019-10-30 23:12:43 2019-10-30 23:22:28 t 1 1 144557 587 0.00 2019-10-30 23:15:28 2019-10-30 23:23:22 t 1 1 144558 562 0.00 2019-10-30 23:23:22 2019-10-30 23:23:46 t 1 1 144560 485 0.00 2019-10-30 23:15:51 2019-10-30 23:25:12 t 1 1 144561 220 0.00 2019-10-30 23:07:10 2019-10-30 23:25:20 t 1 2 144564 544 0.00 2019-10-30 23:19:49 2019-10-30 23:27:44 t 1 2 144567 581 0.00 2019-10-30 22:55:21 2019-10-30 23:30:15 t 1 1 144569 595 0.00 2019-10-30 23:30:22 2019-10-30 23:30:42 t 1 1 144571 562 0.00 2019-10-30 23:31:03 2019-10-30 23:31:26 t 1 1 144573 566 0.00 2019-10-30 23:23:51 2019-10-30 23:31:45 t 1 1 144577 445 0.00 2019-10-30 22:22:34 2019-10-30 23:34:36 t 1 1 144582 564 0.00 2019-10-30 23:37:02 2019-10-30 23:39:52 t 1 1 144584 485 0.00 2019-10-30 23:34:20 2019-10-30 23:40:40 t 1 1 144593 595 0.00 2019-10-30 23:50:47 2019-10-30 23:51:51 t 1 1 144594 562 0.00 2019-10-30 23:52:44 2019-10-30 23:52:54 t 1 1 144602 570 0.00 2019-10-30 23:46:07 2019-10-30 23:59:16 t 1 1 144604 587 0.00 2019-10-30 23:40:13 2019-10-31 00:02:49 t 1 1 144605 609 0.00 2019-10-30 23:57:11 2019-10-31 00:03:00 t 1 1 144606 485 0.00 2019-10-30 23:53:05 2019-10-31 00:03:26 t 1 1 144611 570 0.00 2019-10-30 23:59:16 2019-10-31 00:05:13 t 1 1 144612 545 0.00 2019-10-30 23:54:21 2019-10-31 00:07:10 t 1 1 144614 456 0.00 2019-10-30 23:55:51 2019-10-31 00:09:50 t 1 1 144618 522 0.00 2019-10-31 00:07:22 2019-10-31 00:14:10 t 1 1 144621 522 0.00 2019-10-31 00:14:45 2019-10-31 00:16:45 t 1 1 144623 556 0.00 2019-10-31 00:13:23 2019-10-31 00:21:19 t 1 1 144625 587 0.00 2019-10-31 00:02:52 2019-10-31 00:26:30 t 1 1 144626 220 0.00 2019-10-30 23:59:37 2019-10-31 00:27:47 t 1 2 144631 422 0.00 2019-10-31 00:19:47 2019-10-31 00:36:21 t 1 1 144632 522 0.00 2019-10-31 00:36:40 2019-10-31 00:36:55 t 1 1 144638 587 0.00 2019-10-31 00:44:48 2019-10-31 00:47:11 t 1 1 144642 562 0.00 2019-10-31 00:56:55 2019-10-31 00:57:17 t 1 1 144645 522 0.00 2019-10-31 01:00:34 2019-10-31 01:02:08 t 1 1 144647 412 0.00 2019-10-31 00:59:16 2019-10-31 01:04:03 t 1 1 144654 514 0.00 2019-10-30 21:30:34 2019-10-31 01:13:03 t 1 1 144655 499 0.00 2019-10-31 01:12:46 2019-10-31 01:14:28 t 1 1 144657 412 0.00 2019-10-31 01:04:03 2019-10-31 01:16:14 t 1 1 144662 412 0.00 2019-10-31 01:20:50 2019-10-31 01:23:58 t 1 1 144667 562 0.00 2019-10-31 01:29:28 2019-10-31 01:29:38 t 1 1 144379 220 0.00 2019-10-30 21:16:54 2019-10-30 21:17:29 t 1 1 144381 220 0.00 2019-10-30 21:17:28 2019-10-30 21:18:30 t 1 1 144382 220 0.00 2019-10-30 21:18:30 2019-10-30 21:19:03 t 1 1 144383 619 0.00 2019-10-30 21:17:53 2019-10-30 21:19:36 t 1 1 144384 220 0.00 2019-10-30 21:19:03 2019-10-30 21:22:25 t 1 1 144388 514 0.00 2019-10-30 21:07:26 2019-10-30 21:23:46 t 1 1 144394 430 0.00 2019-10-30 21:24:58 2019-10-30 21:25:10 t 1 1 144395 514 0.00 2019-10-30 21:24:28 2019-10-30 21:25:25 t 1 1 144397 430 0.00 2019-10-30 21:25:19 2019-10-30 21:25:48 t 1 1 144398 220 0.00 2019-10-30 21:24:58 2019-10-30 21:26:11 t 1 1 144401 485 0.00 2019-10-30 21:15:12 2019-10-30 21:27:10 t 1 1 144402 570 0.00 2019-10-30 20:59:11 2019-10-30 21:27:59 t 1 1 144404 562 0.00 2019-10-30 21:19:24 2019-10-30 21:28:25 t 1 1 144407 395 0.00 2019-10-30 21:08:20 2019-10-30 21:29:02 t 1 2 144409 514 0.00 2019-10-30 21:28:43 2019-10-30 21:30:36 t 1 1 144410 220 0.00 2019-10-30 21:28:30 2019-10-30 21:31:03 t 1 1 144411 220 0.00 2019-10-30 21:31:02 2019-10-30 21:31:37 t 1 1 144413 562 0.00 2019-10-30 21:31:25 2019-10-30 21:32:07 t 1 1 144419 456 0.00 2019-10-30 21:19:15 2019-10-30 21:34:40 t 1 1 144425 456 0.00 2019-10-30 21:34:39 2019-10-30 21:36:50 t 1 1 144433 430 0.00 2019-10-30 21:40:16 2019-10-30 21:41:23 t 1 1 144435 556 0.00 2019-10-30 21:34:52 2019-10-30 21:41:29 t 1 1 144441 412 0.00 2019-10-30 21:32:58 2019-10-30 21:45:13 t 1 1 144443 430 0.00 2019-10-30 21:43:28 2019-10-30 21:45:23 t 1 1 144446 395 0.00 2019-10-30 21:46:21 2019-10-30 21:47:08 t 1 2 144448 562 0.00 2019-10-30 21:46:28 2019-10-30 21:48:10 t 1 1 144449 607 0.00 2019-10-30 21:22:38 2019-10-30 21:50:26 t 1 1 144452 585 0.00 2019-10-30 21:54:16 2019-10-30 21:56:42 t 1 1 144455 619 0.00 2019-10-30 21:53:31 2019-10-30 21:58:58 t 1 1 144459 451 0.00 2019-10-30 21:57:05 2019-10-30 22:04:43 t 1 1 144463 595 0.00 2019-10-30 22:02:33 2019-10-30 22:10:26 t 1 1 144473 591 0.00 2019-10-30 21:45:33 2019-10-30 22:17:21 t 1 1 144475 595 0.00 2019-10-30 22:11:23 2019-10-30 22:17:35 t 1 1 144477 566 0.00 2019-10-30 22:14:01 2019-10-30 22:18:32 t 1 1 144481 220 0.00 2019-10-30 21:39:42 2019-10-30 22:20:17 t 1 1 144482 485 0.00 2019-10-30 22:18:44 2019-10-30 22:21:27 t 1 1 144490 520 0.00 2019-10-30 22:12:18 2019-10-30 22:27:25 t 1 1 144491 451 0.00 2019-10-30 22:21:49 2019-10-30 22:28:18 t 1 1 144493 595 0.00 2019-10-30 22:25:30 2019-10-30 22:31:37 t 1 1 144494 451 0.00 2019-10-30 22:28:18 2019-10-30 22:32:05 t 1 1 144496 595 0.00 2019-10-30 22:34:30 2019-10-30 22:34:38 t 1 1 144499 510 0.00 2019-10-30 22:26:42 2019-10-30 22:36:20 t 1 1 144500 485 0.00 2019-10-30 22:37:14 2019-10-30 22:37:21 t 1 1 144515 485 0.00 2019-10-30 22:39:04 2019-10-30 22:53:03 t 1 1 144517 485 0.00 2019-10-30 22:53:03 2019-10-30 22:55:36 t 1 1 144518 451 0.00 2019-10-30 22:46:05 2019-10-30 22:56:24 t 1 1 144521 379 0.00 2019-10-30 14:42:17 2019-10-30 22:57:32 t 1 1 144522 510 0.00 2019-10-30 22:47:00 2019-10-30 22:58:04 t 1 1 144525 595 0.00 2019-10-30 22:59:48 2019-10-30 23:01:06 t 1 1 144530 485 0.00 2019-10-30 22:55:36 2019-10-30 23:03:36 t 1 1 144531 585 0.00 2019-10-30 22:59:33 2019-10-30 23:04:34 t 1 1 144533 510 0.00 2019-10-30 22:58:04 2019-10-30 23:05:18 t 1 1 144537 595 0.00 2019-10-30 23:06:13 2019-10-30 23:06:38 t 1 1 144539 566 0.00 2019-10-30 22:50:51 2019-10-30 23:07:57 t 1 1 144543 595 0.00 2019-10-30 23:09:55 2019-10-30 23:10:06 t 1 1 144546 412 0.00 2019-10-30 21:48:11 2019-10-30 23:12:41 t 1 1 144553 451 0.00 2019-10-30 23:06:11 2019-10-30 23:16:49 t 1 1 144563 512 0.00 2019-10-30 22:47:38 2019-10-30 23:27:21 t 1 1 144565 587 0.00 2019-10-30 23:23:36 2019-10-30 23:28:42 t 1 1 144575 595 0.00 2019-10-30 23:31:55 2019-10-30 23:33:44 t 1 1 144578 595 0.00 2019-10-30 23:35:27 2019-10-30 23:35:35 t 1 1 144579 564 0.00 2019-10-30 21:11:13 2019-10-30 23:37:02 t 1 1 144580 587 0.00 2019-10-30 23:31:06 2019-10-30 23:38:03 t 1 1 144585 595 0.00 2019-10-30 23:40:36 2019-10-30 23:40:44 t 1 1 144587 220 0.00 2019-10-30 23:17:02 2019-10-30 23:41:52 t 1 1 144588 562 0.00 2019-10-30 23:41:55 2019-10-30 23:42:09 t 1 1 144589 485 0.00 2019-10-30 23:40:40 2019-10-30 23:43:43 t 1 1 144590 595 0.00 2019-10-30 23:45:43 2019-10-30 23:45:50 t 1 1 144592 485 0.00 2019-10-30 23:43:43 2019-10-30 23:50:12 t 1 1 144595 485 0.00 2019-10-30 23:50:32 2019-10-30 23:53:05 t 1 1 144598 556 0.00 2019-10-30 22:00:02 2019-10-30 23:55:47 t 1 1 144599 456 0.00 2019-10-30 23:50:08 2019-10-30 23:55:52 t 1 1 144603 522 0.00 2019-10-30 23:56:12 2019-10-31 00:00:15 t 1 1 144607 562 0.00 2019-10-31 00:03:16 2019-10-31 00:03:38 t 1 1 144608 522 0.00 2019-10-31 00:04:37 2019-10-31 00:04:40 t 1 1 144615 485 0.00 2019-10-31 00:03:26 2019-10-31 00:12:15 t 1 1 144619 562 0.00 2019-10-31 00:14:12 2019-10-31 00:14:23 t 1 1 144628 562 0.00 2019-10-31 00:35:36 2019-10-31 00:35:51 t 1 1 144630 587 0.00 2019-10-31 00:26:47 2019-10-31 00:36:18 t 1 1 144634 522 0.00 2019-10-31 00:42:00 2019-10-31 00:42:02 t 1 1 144635 587 0.00 2019-10-31 00:38:46 2019-10-31 00:44:36 t 1 1 144636 522 0.00 2019-10-31 00:44:41 2019-10-31 00:44:50 t 1 1 144641 522 0.00 2019-10-31 00:55:01 2019-10-31 00:55:04 t 1 1 144646 522 0.00 2019-10-31 01:02:19 2019-10-31 01:02:22 t 1 1 144652 522 0.00 2019-10-31 01:10:11 2019-10-31 01:10:13 t 1 1 144653 587 0.00 2019-10-31 01:08:32 2019-10-31 01:12:08 t 1 1 144661 412 0.00 2019-10-31 01:19:48 2019-10-31 01:21:45 t 1 1 144663 514 0.00 2019-10-31 01:13:03 2019-10-31 01:24:21 t 1 1 144665 361 0.00 2019-10-31 00:41:22 2019-10-31 01:25:21 t 1 2 144666 412 0.00 2019-10-31 01:24:03 2019-10-31 01:29:36 t 1 1 144670 514 0.00 2019-10-31 01:24:21 2019-10-31 01:38:14 t 1 1 144681 522 0.00 2019-10-31 01:59:06 2019-10-31 01:59:06 t 1 1 144684 607 0.00 2019-10-31 00:39:28 2019-10-31 02:04:34 t 1 1 144686 574 0.00 2019-10-31 02:08:59 2019-10-31 02:09:59 t 1 1 144687 562 0.00 2019-10-31 02:10:59 2019-10-31 02:11:25 t 1 1 144688 609 0.00 2019-10-31 00:14:09 2019-10-31 02:17:59 t 1 1 144691 562 0.00 2019-10-31 02:32:40 2019-10-31 02:32:50 t 1 1 144695 562 0.00 2019-10-31 02:54:12 2019-10-31 02:54:23 t 1 1 144696 562 0.00 2019-10-31 03:02:01 2019-10-31 03:02:14 t 1 1 144702 562 0.00 2019-10-31 03:40:16 2019-10-31 03:40:53 t 1 1 144705 445 0.00 2019-10-31 02:31:18 2019-10-31 03:59:31 t 1 1 144706 562 0.00 2019-10-31 04:02:04 2019-10-31 04:02:28 t 1 1 144707 562 0.00 2019-10-31 04:12:52 2019-10-31 04:13:11 t 1 1 144709 562 0.00 2019-10-31 04:20:28 2019-10-31 04:20:49 t 1 1 144710 445 0.00 2019-10-31 03:59:32 2019-10-31 04:24:04 t 1 1 144711 562 0.00 2019-10-31 04:31:12 2019-10-31 04:31:32 t 1 1 144712 562 0.00 2019-10-31 04:41:56 2019-10-31 04:42:21 t 1 1 144414 430 0.00 2019-10-30 21:32:10 2019-10-30 21:32:16 t 1 1 144416 481 0.00 2019-10-30 21:09:24 2019-10-30 21:33:49 t 1 1 144417 430 0.00 2019-10-30 21:33:14 2019-10-30 21:34:14 t 1 1 144421 430 0.00 2019-10-30 21:35:11 2019-10-30 21:35:15 t 1 1 144424 485 0.00 2019-10-30 21:27:10 2019-10-30 21:36:41 t 1 1 144426 220 0.00 2019-10-30 21:35:57 2019-10-30 21:36:57 t 1 1 144429 430 0.00 2019-10-30 21:37:19 2019-10-30 21:39:23 t 1 1 144432 562 0.00 2019-10-30 21:35:14 2019-10-30 21:41:08 t 1 1 144434 430 0.00 2019-10-30 21:41:23 2019-10-30 21:41:28 t 1 1 144436 451 0.00 2019-10-30 21:08:23 2019-10-30 21:41:57 t 1 1 144437 430 0.00 2019-10-30 21:42:18 2019-10-30 21:42:22 t 1 1 144439 430 0.00 2019-10-30 21:43:34 2019-10-30 21:43:40 t 1 1 144440 562 0.00 2019-10-30 21:44:02 2019-10-30 21:44:12 t 1 1 144442 430 0.00 2019-10-30 21:45:15 2019-10-30 21:45:15 f 1 1 144444 430 0.00 2019-10-30 21:44:30 2019-10-30 21:46:23 t 1 1 144445 566 0.00 2019-10-30 21:35:10 2019-10-30 21:47:08 t 1 1 144447 412 0.00 2019-10-30 21:45:26 2019-10-30 21:48:08 t 1 1 144450 562 0.00 2019-10-30 21:51:47 2019-10-30 21:53:23 t 1 1 144460 585 0.00 2019-10-30 21:59:27 2019-10-30 22:07:19 t 1 1 144465 520 0.00 2019-10-30 22:03:25 2019-10-30 22:12:19 t 1 1 144467 587 0.00 2019-10-30 22:11:27 2019-10-30 22:13:13 t 1 1 144469 481 0.00 2019-10-30 21:33:49 2019-10-30 22:14:36 t 1 1 144471 451 0.00 2019-10-30 22:04:43 2019-10-30 22:17:05 t 1 1 144474 570 0.00 2019-10-30 22:05:46 2019-10-30 22:17:28 t 1 1 144476 587 0.00 2019-10-30 22:16:43 2019-10-30 22:18:12 t 1 1 144479 595 0.00 2019-10-30 22:19:08 2019-10-30 22:19:16 t 1 1 144480 562 0.00 2019-10-30 22:19:19 2019-10-30 22:19:39 t 1 1 144485 445 0.00 2019-10-30 21:57:02 2019-10-30 22:22:34 t 1 1 144489 597 0.00 2019-10-30 22:14:17 2019-10-30 22:27:02 t 1 1 144498 587 0.00 2019-10-30 22:35:18 2019-10-30 22:35:32 t 1 1 144501 538 0.00 2019-10-30 22:27:54 2019-10-30 22:38:11 t 1 1 144502 485 0.00 2019-10-30 22:37:21 2019-10-30 22:39:05 t 1 1 144504 562 0.00 2019-10-30 22:40:13 2019-10-30 22:40:43 t 1 1 144508 510 0.00 2019-10-30 22:36:20 2019-10-30 22:47:00 t 1 1 144511 587 0.00 2019-10-30 22:44:54 2019-10-30 22:50:01 t 1 1 144513 562 0.00 2019-10-30 22:51:04 2019-10-30 22:51:25 t 1 1 144516 595 0.00 2019-10-30 22:49:47 2019-10-30 22:55:28 t 1 1 144519 587 0.00 2019-10-30 22:53:34 2019-10-30 22:56:35 t 1 1 144520 585 0.00 2019-10-30 22:53:04 2019-10-30 22:57:25 t 1 1 144523 591 0.00 2019-10-30 22:17:21 2019-10-30 22:58:48 t 1 1 144524 595 0.00 2019-10-30 22:56:45 2019-10-30 22:59:48 t 1 1 144527 562 0.00 2019-10-30 23:01:47 2019-10-30 23:02:15 t 1 1 144529 220 0.00 2019-10-30 22:59:07 2019-10-30 23:03:34 t 1 2 144536 451 0.00 2019-10-30 22:56:27 2019-10-30 23:06:10 t 1 1 144540 591 0.00 2019-10-30 23:06:17 2019-10-30 23:08:08 t 1 1 144542 361 0.00 2019-10-30 21:54:16 2019-10-30 23:09:22 t 1 2 144544 595 0.00 2019-10-30 23:10:15 2019-10-30 23:10:37 t 1 1 144545 361 0.00 2019-10-30 23:02:02 2019-10-30 23:12:13 t 1 2 144550 595 0.00 2019-10-30 23:15:08 2019-10-30 23:15:13 t 1 1 144554 591 0.00 2019-10-30 23:16:58 2019-10-30 23:17:27 t 1 1 144559 566 0.00 2019-10-30 23:16:35 2019-10-30 23:23:51 t 1 1 144562 595 0.00 2019-10-30 23:25:16 2019-10-30 23:25:28 t 1 1 144566 485 0.00 2019-10-30 23:25:12 2019-10-30 23:29:58 t 1 1 144568 451 0.00 2019-10-30 23:16:49 2019-10-30 23:30:22 t 1 1 144570 512 0.00 2019-10-30 23:27:20 2019-10-30 23:30:49 t 1 1 144572 570 0.00 2019-10-30 23:22:28 2019-10-30 23:31:28 t 1 1 144574 595 0.00 2019-10-30 23:30:52 2019-10-30 23:31:46 t 1 1 144576 485 0.00 2019-10-30 23:29:58 2019-10-30 23:34:20 t 1 1 144581 570 0.00 2019-10-30 23:31:28 2019-10-30 23:39:33 t 1 1 144583 220 0.00 2019-10-30 22:19:21 2019-10-30 23:39:56 t 1 1 144586 570 0.00 2019-10-30 23:39:33 2019-10-30 23:40:57 t 1 1 144591 609 0.00 2019-10-30 23:46:14 2019-10-30 23:49:23 t 1 1 144596 609 0.00 2019-10-30 23:49:22 2019-10-30 23:53:26 t 1 1 144597 545 0.00 2019-10-30 23:45:11 2019-10-30 23:54:21 t 1 1 144600 609 0.00 2019-10-30 23:53:26 2019-10-30 23:57:11 t 1 1 144601 220 0.00 2019-10-30 23:57:01 2019-10-30 23:58:48 t 1 2 144609 412 0.00 2019-10-30 23:29:40 2019-10-31 00:04:53 t 1 1 144610 422 0.00 2019-10-31 00:00:36 2019-10-31 00:05:02 t 1 1 144613 609 0.00 2019-10-31 00:03:00 2019-10-31 00:07:20 t 1 1 144616 556 0.00 2019-10-30 23:55:47 2019-10-31 00:13:23 t 1 1 144617 609 0.00 2019-10-31 00:07:20 2019-10-31 00:14:09 t 1 1 144620 538 0.00 2019-10-30 23:18:40 2019-10-31 00:14:42 t 1 1 144622 422 0.00 2019-10-31 00:05:02 2019-10-31 00:19:47 t 1 1 144624 562 0.00 2019-10-31 00:24:51 2019-10-31 00:25:07 t 1 1 144627 522 0.00 2019-10-31 00:28:37 2019-10-31 00:31:50 t 1 1 144629 574 0.00 2019-10-31 00:01:06 2019-10-31 00:35:58 t 1 1 144633 587 0.00 2019-10-31 00:37:09 2019-10-31 00:38:22 t 1 1 144637 562 0.00 2019-10-31 00:46:23 2019-10-31 00:46:33 t 1 1 144639 587 0.00 2019-10-31 00:47:26 2019-10-31 00:49:41 t 1 1 144640 522 0.00 2019-10-31 00:49:48 2019-10-31 00:49:56 t 1 1 144643 412 0.00 2019-10-31 00:04:53 2019-10-31 00:57:29 t 1 1 144644 522 0.00 2019-10-31 01:00:04 2019-10-31 01:01:04 t 1 1 144648 522 0.00 2019-10-31 01:05:07 2019-10-31 01:05:08 t 1 1 144649 587 0.00 2019-10-31 00:49:55 2019-10-31 01:07:05 t 1 1 144650 562 0.00 2019-10-31 01:07:55 2019-10-31 01:08:05 t 1 1 144651 422 0.00 2019-10-31 00:36:21 2019-10-31 01:09:28 t 1 1 144656 522 0.00 2019-10-31 01:15:14 2019-10-31 01:15:15 t 1 1 144658 562 0.00 2019-10-31 01:18:40 2019-10-31 01:18:52 t 1 1 144659 522 0.00 2019-10-31 01:20:20 2019-10-31 01:20:22 t 1 1 144660 587 0.00 2019-10-31 01:12:22 2019-10-31 01:21:05 t 1 1 144664 522 0.00 2019-10-31 01:24:57 2019-10-31 01:25:06 t 1 1 144668 522 0.00 2019-10-31 01:30:09 2019-10-31 01:30:12 t 1 1 144669 522 0.00 2019-10-31 01:35:13 2019-10-31 01:35:22 t 1 1 144672 522 0.00 2019-10-31 01:40:21 2019-10-31 01:40:24 t 1 1 144673 522 0.00 2019-10-31 01:43:49 2019-10-31 01:43:58 t 1 1 144674 599 0.00 2019-10-31 00:14:31 2019-10-31 01:45:52 t 1 1 144676 522 0.00 2019-10-31 01:48:56 2019-10-31 01:49:02 t 1 1 144678 599 0.00 2019-10-31 01:45:52 2019-10-31 01:51:05 t 1 1 144679 522 0.00 2019-10-31 01:54:04 2019-10-31 01:54:07 t 1 1 144692 311 0.00 2019-10-31 02:28:36 2019-10-31 02:39:59 t 1 2 144697 562 0.00 2019-10-31 03:12:43 2019-10-31 03:12:52 t 1 1 144698 562 0.00 2019-10-31 03:16:51 2019-10-31 03:18:03 t 1 1 144699 562 0.00 2019-10-31 03:18:38 2019-10-31 03:19:02 t 1 1 144700 599 0.00 2019-10-31 01:57:16 2019-10-31 03:20:57 t 1 1 144701 562 0.00 2019-10-31 03:29:31 2019-10-31 03:29:45 t 1 1 144703 483 0.00 2019-10-31 03:45:55 2019-10-31 03:50:01 t 1 1 144704 562 0.00 2019-10-31 03:51:19 2019-10-31 03:51:41 t 1 1 144671 562 0.00 2019-10-31 01:38:54 2019-10-31 01:39:04 t 1 1 144675 514 0.00 2019-10-31 01:38:14 2019-10-31 01:48:15 t 1 1 144677 562 0.00 2019-10-31 01:49:38 2019-10-31 01:49:47 t 1 1 144680 599 0.00 2019-10-31 01:51:05 2019-10-31 01:57:16 t 1 1 144682 562 0.00 2019-10-31 02:00:11 2019-10-31 02:00:34 t 1 1 144683 522 0.00 2019-10-31 02:04:09 2019-10-31 02:04:10 t 1 1 144685 522 0.00 2019-10-31 02:04:10 2019-10-31 02:05:24 t 1 1 144689 562 0.00 2019-10-31 02:21:56 2019-10-31 02:22:04 t 1 1 144690 445 0.00 2019-10-30 23:34:48 2019-10-31 02:30:56 t 1 1 144693 562 0.00 2019-10-31 02:43:19 2019-10-31 02:43:35 t 1 1 144694 607 0.00 2019-10-31 02:04:34 2019-10-31 02:52:37 t 1 1 144708 607 0.00 2019-10-31 02:52:37 2019-10-31 04:14:41 t 1 1 144713 617 0.00 2019-10-31 04:37:57 2019-10-31 04:43:40 t 1 1 144714 514 0.00 2019-10-31 01:48:15 2019-10-31 04:44:45 t 1 1 144715 617 0.00 2019-10-31 04:43:40 2019-10-31 04:48:11 t 1 1 144716 617 0.00 2019-10-31 04:48:10 2019-10-31 04:52:17 t 1 1 144717 562 0.00 2019-10-31 04:52:43 2019-10-31 04:53:04 t 1 1 144718 607 0.00 2019-10-31 04:14:41 2019-10-31 04:59:29 t 1 1 144719 562 0.00 2019-10-31 05:03:29 2019-10-31 05:03:51 t 1 1 144720 617 0.00 2019-10-31 04:52:17 2019-10-31 05:04:49 t 1 1 144721 562 0.00 2019-10-31 05:08:42 2019-10-31 05:08:51 t 1 1 144722 562 0.00 2019-10-31 05:14:21 2019-10-31 05:14:34 t 1 1 144723 522 0.00 2019-10-31 04:50:09 2019-10-31 05:20:09 t 1 1 144724 522 0.00 2019-10-31 05:20:14 2019-10-31 05:20:27 t 1 1 144725 617 0.00 2019-10-31 05:04:49 2019-10-31 05:21:14 t 1 1 144726 522 0.00 2019-10-31 05:21:54 2019-10-31 05:22:07 t 1 1 144727 522 0.00 2019-10-31 05:23:33 2019-10-31 05:23:34 t 1 1 144728 562 0.00 2019-10-31 05:25:08 2019-10-31 05:25:20 t 1 1 144729 522 0.00 2019-10-31 05:27:50 2019-10-31 05:27:52 t 1 1 144730 522 0.00 2019-10-31 05:28:38 2019-10-31 05:28:41 t 1 1 144731 522 0.00 2019-10-31 05:33:44 2019-10-31 05:33:47 t 1 1 144732 522 0.00 2019-10-31 05:35:06 2019-10-31 05:35:18 t 1 1 144733 562 0.00 2019-10-31 05:35:52 2019-10-31 05:36:10 t 1 1 144734 522 0.00 2019-10-31 05:43:49 2019-10-31 05:43:56 t 1 1 144735 607 0.00 2019-10-31 04:59:29 2019-10-31 05:45:05 t 1 1 144736 562 0.00 2019-10-31 05:46:32 2019-10-31 05:46:53 t 1 1 144737 522 0.00 2019-10-31 05:48:59 2019-10-31 05:49:02 t 1 1 144738 617 0.00 2019-10-31 05:21:14 2019-10-31 05:53:15 t 1 1 144739 522 0.00 2019-10-31 05:54:01 2019-10-31 05:54:02 t 1 1 144740 562 0.00 2019-10-31 05:57:23 2019-10-31 05:57:37 t 1 1 144741 516 0.00 2019-10-31 05:48:06 2019-10-31 05:58:49 t 1 1 144742 522 0.00 2019-10-31 05:59:03 2019-10-31 05:59:04 t 1 1 144743 522 0.00 2019-10-31 06:04:08 2019-10-31 06:04:08 t 1 1 144744 564 0.00 2019-10-31 05:52:09 2019-10-31 06:06:44 t 1 1 144745 520 0.00 2019-10-31 06:00:21 2019-10-31 06:07:32 t 1 1 144746 562 0.00 2019-10-31 06:08:12 2019-10-31 06:08:26 t 1 1 144747 522 0.00 2019-10-31 06:09:10 2019-10-31 06:09:11 t 1 1 144748 522 0.00 2019-10-31 06:09:22 2019-10-31 06:09:32 t 1 1 144749 522 0.00 2019-10-31 06:14:29 2019-10-31 06:14:31 t 1 1 144750 562 0.00 2019-10-31 06:15:48 2019-10-31 06:16:05 t 1 1 144751 522 0.00 2019-10-31 06:19:36 2019-10-31 06:19:36 t 1 1 144752 617 0.00 2019-10-31 05:55:04 2019-10-31 06:22:05 t 1 1 144753 520 0.00 2019-10-31 06:07:32 2019-10-31 06:23:18 t 1 1 144754 522 0.00 2019-10-31 06:24:37 2019-10-31 06:24:42 t 1 1 144755 379 0.00 2019-10-30 22:57:32 2019-10-31 06:24:44 t 1 1 144756 522 0.00 2019-10-31 06:24:55 2019-10-31 06:25:00 t 1 1 144757 522 0.00 2019-10-31 06:26:02 2019-10-31 06:26:12 t 1 1 144758 562 0.00 2019-10-31 06:26:37 2019-10-31 06:26:49 t 1 1 144759 520 0.00 2019-10-31 06:23:18 2019-10-31 06:27:26 t 1 1 144760 520 0.00 2019-10-31 06:27:25 2019-10-31 06:30:42 t 1 1 144761 607 0.00 2019-10-31 05:45:05 2019-10-31 06:30:48 t 1 1 144762 522 0.00 2019-10-31 06:28:49 2019-10-31 06:31:30 t 1 1 144763 520 0.00 2019-10-31 06:30:42 2019-10-31 06:32:38 t 1 1 144764 522 0.00 2019-10-31 06:34:01 2019-10-31 06:34:04 t 1 1 144765 570 0.00 2019-10-31 06:24:41 2019-10-31 06:36:13 t 1 1 144766 522 0.00 2019-10-31 06:36:14 2019-10-31 06:36:15 t 1 1 144767 562 0.00 2019-10-31 06:37:22 2019-10-31 06:37:35 t 1 1 144768 522 0.00 2019-10-31 06:40:31 2019-10-31 06:40:32 t 1 1 144769 522 0.00 2019-10-31 06:41:16 2019-10-31 06:41:17 t 1 1 144770 520 0.00 2019-10-31 06:32:38 2019-10-31 06:44:08 t 1 1 144771 522 0.00 2019-10-31 06:46:18 2019-10-31 06:46:22 t 1 1 144772 570 0.00 2019-10-31 06:36:13 2019-10-31 06:47:16 t 1 1 144773 562 0.00 2019-10-31 06:48:02 2019-10-31 06:48:21 t 1 1 144774 516 0.00 2019-10-31 06:46:55 2019-10-31 06:50:59 t 1 1 144775 522 0.00 2019-10-31 06:51:23 2019-10-31 06:51:25 t 1 1 144776 522 0.00 2019-10-31 06:51:36 2019-10-31 06:51:39 t 1 1 144777 520 0.00 2019-10-31 06:44:08 2019-10-31 06:53:08 t 1 1 144778 617 0.00 2019-10-31 06:22:05 2019-10-31 06:53:31 t 1 1 144779 520 0.00 2019-10-31 06:53:08 2019-10-31 06:54:54 t 1 1 144780 522 0.00 2019-10-31 06:56:25 2019-10-31 06:56:26 t 1 1 144781 570 0.00 2019-10-31 06:47:16 2019-10-31 06:57:56 t 1 1 144782 520 0.00 2019-10-31 06:54:54 2019-10-31 06:58:58 t 1 1 144783 562 0.00 2019-10-31 06:58:45 2019-10-31 06:59:11 t 1 1 144784 607 0.00 2019-10-31 06:30:48 2019-10-31 07:00:54 t 1 1 144785 522 0.00 2019-10-31 07:01:27 2019-10-31 07:01:28 t 1 1 144786 522 0.00 2019-10-31 07:02:18 2019-10-31 07:02:20 t 1 1 144787 570 0.00 2019-10-31 06:57:56 2019-10-31 07:06:12 t 1 1 144788 522 0.00 2019-10-31 07:06:29 2019-10-31 07:06:30 t 1 1 144789 562 0.00 2019-10-31 07:09:38 2019-10-31 07:09:53 t 1 1 144790 522 0.00 2019-10-31 07:11:34 2019-10-31 07:11:35 t 1 1 144791 522 0.00 2019-10-31 07:16:36 2019-10-31 07:16:37 t 1 1 144792 522 0.00 2019-10-31 07:16:43 2019-10-31 07:16:44 t 1 1 144793 617 0.00 2019-10-31 06:53:30 2019-10-31 07:17:50 t 1 1 144794 562 0.00 2019-10-31 07:20:21 2019-10-31 07:20:42 t 1 1 144795 522 0.00 2019-10-31 07:21:41 2019-10-31 07:21:41 t 1 1 144796 566 0.00 2019-10-31 07:18:53 2019-10-31 07:24:15 t 1 1 144797 615 0.00 2019-10-31 07:22:57 2019-10-31 07:24:19 t 1 1 144798 522 0.00 2019-10-31 07:26:45 2019-10-31 07:26:51 t 1 1 144799 522 0.00 2019-10-31 07:26:56 2019-10-31 07:27:25 t 1 1 144800 615 0.00 2019-10-31 07:26:20 2019-10-31 07:29:19 t 1 1 144801 607 0.00 2019-10-31 07:01:08 2019-10-31 07:31:07 t 1 1 144802 562 0.00 2019-10-31 07:31:13 2019-10-31 07:31:28 t 1 1 144803 522 0.00 2019-10-31 07:31:49 2019-10-31 07:31:50 t 1 1 144804 522 0.00 2019-10-31 07:32:02 2019-10-31 07:32:05 t 1 1 144805 566 0.00 2019-10-31 07:24:15 2019-10-31 07:32:24 t 1 1 144806 617 0.00 2019-10-31 07:19:05 2019-10-31 07:33:21 t 1 1 144807 445 0.00 2019-10-31 04:24:04 2019-10-31 07:33:47 t 1 1 144808 522 0.00 2019-10-31 07:36:53 2019-10-31 07:36:54 t 1 1 144810 522 0.00 2019-10-31 07:41:55 2019-10-31 07:41:56 t 1 1 144814 585 0.00 2019-10-31 07:38:16 2019-10-31 07:45:38 t 1 1 144815 445 0.00 2019-10-31 07:33:47 2019-10-31 07:46:35 t 1 1 144818 591 0.00 2019-10-31 07:42:13 2019-10-31 07:49:04 t 1 1 144820 516 0.00 2019-10-31 07:35:40 2019-10-31 07:52:00 t 1 1 144822 481 0.00 2019-10-31 07:21:09 2019-10-31 07:52:23 t 1 1 144826 481 0.00 2019-10-31 07:52:23 2019-10-31 07:54:56 t 1 1 144827 522 0.00 2019-10-31 07:57:06 2019-10-31 07:57:11 t 1 1 144828 522 0.00 2019-10-31 08:02:13 2019-10-31 08:02:13 t 1 1 144830 597 0.00 2019-10-31 07:57:55 2019-10-31 08:04:13 t 1 1 144834 562 0.00 2019-10-31 08:14:14 2019-10-31 08:14:36 t 1 1 144844 522 0.00 2019-10-31 08:27:51 2019-10-31 08:27:53 t 1 1 144846 522 0.00 2019-10-31 08:29:48 2019-10-31 08:29:51 t 1 1 144850 522 0.00 2019-10-31 08:35:13 2019-10-31 08:35:14 t 1 1 144852 617 0.00 2019-10-31 08:23:25 2019-10-31 08:38:49 t 1 1 144853 522 0.00 2019-10-31 08:39:23 2019-10-31 08:39:30 t 1 1 144856 619 0.00 2019-10-31 08:27:35 2019-10-31 08:41:30 t 1 1 144858 562 0.00 2019-10-31 08:40:36 2019-10-31 08:41:53 t 1 1 144860 591 0.00 2019-10-31 08:38:35 2019-10-31 08:45:50 t 1 1 144863 585 0.00 2019-10-31 08:48:12 2019-10-31 08:49:31 t 1 1 144864 522 0.00 2019-10-31 08:43:01 2019-10-31 08:50:49 t 1 1 144865 522 0.00 2019-10-31 08:51:02 2019-10-31 08:51:04 t 1 1 144866 522 0.00 2019-10-31 08:51:24 2019-10-31 08:51:46 t 1 1 144872 522 0.00 2019-10-31 08:53:04 2019-10-31 08:53:06 t 1 1 144873 522 0.00 2019-10-31 08:53:45 2019-10-31 08:53:51 t 1 1 144874 520 0.00 2019-10-31 08:48:17 2019-10-31 08:53:58 t 1 1 144877 522 0.00 2019-10-31 08:54:41 2019-10-31 08:54:54 t 1 1 144879 522 0.00 2019-10-31 08:55:24 2019-10-31 08:55:26 t 1 1 144882 522 0.00 2019-10-31 08:55:45 2019-10-31 08:55:51 t 1 1 144883 522 0.00 2019-10-31 08:56:04 2019-10-31 08:56:05 t 1 1 144888 520 0.00 2019-10-31 08:53:58 2019-10-31 08:57:53 t 1 1 144889 522 0.00 2019-10-31 08:57:55 2019-10-31 08:58:01 t 1 1 144893 522 0.00 2019-10-31 08:58:20 2019-10-31 08:58:26 t 1 1 144897 522 0.00 2019-10-31 08:59:37 2019-10-31 08:59:38 t 1 1 144899 522 0.00 2019-10-31 08:59:11 2019-10-31 09:00:25 t 1 1 144901 522 0.00 2019-10-31 09:00:36 2019-10-31 09:00:43 t 1 1 144903 522 0.00 2019-10-31 09:01:13 2019-10-31 09:01:40 t 1 1 144904 522 0.00 2019-10-31 09:01:46 2019-10-31 09:02:03 t 1 1 144908 615 0.00 2019-10-31 08:56:21 2019-10-31 09:02:30 t 1 1 144911 522 0.00 2019-10-31 09:03:00 2019-10-31 09:03:38 t 1 1 144914 562 0.00 2019-10-31 09:02:44 2019-10-31 09:04:20 t 1 1 144922 522 0.00 2019-10-31 09:05:49 2019-10-31 09:05:55 t 1 1 144923 562 0.00 2019-10-31 09:05:18 2019-10-31 09:06:23 t 1 1 144931 562 0.00 2019-10-31 09:07:15 2019-10-31 09:07:53 t 1 1 144934 220 0.00 2019-10-31 08:53:12 2019-10-31 09:08:20 t 1 1 144936 522 0.00 2019-10-31 09:08:25 2019-10-31 09:08:32 t 1 1 144938 520 0.00 2019-10-31 08:57:50 2019-10-31 09:08:45 t 1 1 144941 522 0.00 2019-10-31 09:09:16 2019-10-31 09:09:37 t 1 1 144944 562 0.00 2019-10-31 09:09:48 2019-10-31 09:10:38 t 1 1 144952 522 0.00 2019-10-31 09:11:46 2019-10-31 09:11:54 t 1 1 144953 520 0.00 2019-10-31 09:08:50 2019-10-31 09:11:59 t 1 1 144956 522 0.00 2019-10-31 09:12:39 2019-10-31 09:12:46 t 1 1 144957 522 0.00 2019-10-31 09:12:58 2019-10-31 09:13:00 t 1 1 144960 522 0.00 2019-10-31 09:13:19 2019-10-31 09:13:21 t 1 1 144962 522 0.00 2019-10-31 09:13:45 2019-10-31 09:14:02 t 1 1 144964 522 0.00 2019-10-31 09:15:09 2019-10-31 09:15:11 t 1 1 144967 522 0.00 2019-10-31 09:15:48 2019-10-31 09:15:54 t 1 1 144968 522 0.00 2019-10-31 09:16:07 2019-10-31 09:16:09 t 1 1 144972 520 0.00 2019-10-31 09:11:59 2019-10-31 09:17:33 t 1 1 144977 522 0.00 2019-10-31 09:18:19 2019-10-31 09:18:21 t 1 1 144978 522 0.00 2019-10-31 09:18:33 2019-10-31 09:18:59 t 1 1 144981 522 0.00 2019-10-31 09:19:18 2019-10-31 09:19:26 t 1 1 144985 522 0.00 2019-10-31 09:20:04 2019-10-31 09:20:51 t 1 1 144986 522 0.00 2019-10-31 09:21:04 2019-10-31 09:21:06 t 1 1 144995 522 0.00 2019-10-31 09:24:07 2019-10-31 09:24:09 t 1 1 144997 522 0.00 2019-10-31 09:24:14 2019-10-31 09:24:21 t 1 1 144998 522 0.00 2019-10-31 09:24:26 2019-10-31 09:26:16 t 1 1 145003 481 0.00 2019-10-31 09:24:40 2019-10-31 09:36:00 t 1 1 145010 451 0.00 2019-10-31 09:41:32 2019-10-31 09:43:55 t 1 1 145016 520 0.00 2019-10-31 09:39:51 2019-10-31 09:48:01 t 1 1 145018 570 0.00 2019-10-31 09:07:36 2019-10-31 09:48:20 t 1 1 145022 522 0.00 2019-10-31 09:51:32 2019-10-31 09:51:42 t 1 1 145023 528 0.00 2019-10-31 09:51:18 2019-10-31 09:52:22 t 1 1 145025 522 0.00 2019-10-31 09:52:33 2019-10-31 09:52:45 t 1 1 145028 445 0.00 2019-10-31 09:52:54 2019-10-31 09:55:03 t 1 1 145030 522 0.00 2019-10-31 09:55:11 2019-10-31 09:55:13 t 1 1 145031 522 0.00 2019-10-31 09:55:16 2019-10-31 09:55:20 t 1 1 145033 562 0.00 2019-10-31 09:53:54 2019-10-31 09:55:31 t 1 1 145039 430 0.00 2019-10-31 09:58:20 2019-10-31 09:59:05 t 1 1 145041 522 0.00 2019-10-31 10:00:14 2019-10-31 10:00:17 t 1 1 145045 520 0.00 2019-10-31 09:55:55 2019-10-31 10:02:06 t 1 1 145051 593 0.00 2019-10-31 09:51:19 2019-10-31 10:08:34 t 1 1 145053 528 0.00 2019-10-31 09:52:06 2019-10-31 10:11:02 t 1 1 145055 528 0.00 2019-10-31 10:12:09 2019-10-31 10:12:29 t 1 1 145058 615 0.00 2019-10-31 10:08:48 2019-10-31 10:13:17 t 1 1 145059 445 0.00 2019-10-31 10:13:20 2019-10-31 10:14:17 t 1 1 145061 528 0.00 2019-10-31 10:15:07 2019-10-31 10:15:38 t 1 1 145062 611 0.00 2019-10-31 10:11:08 2019-10-31 10:16:02 t 1 1 145064 528 0.00 2019-10-31 10:16:35 2019-10-31 10:16:42 t 1 1 145067 522 0.00 2019-10-31 10:17:25 2019-10-31 10:17:41 t 1 1 145071 514 0.00 2019-10-31 06:21:12 2019-10-31 10:18:31 t 1 1 145072 422 0.00 2019-10-31 10:16:05 2019-10-31 10:19:28 t 1 1 145075 595 0.00 2019-10-31 10:19:59 2019-10-31 10:22:15 t 1 1 145077 615 0.00 2019-10-31 10:18:01 2019-10-31 10:23:17 t 1 1 145080 522 0.00 2019-10-31 10:22:45 2019-10-31 10:24:26 t 1 1 145083 445 0.00 2019-10-31 10:21:13 2019-10-31 10:24:29 t 1 1 145087 583 0.00 2019-10-31 10:19:58 2019-10-31 10:27:56 t 1 1 145088 528 0.00 2019-10-31 10:27:38 2019-10-31 10:28:11 t 1 1 145097 562 0.00 2019-10-31 10:38:30 2019-10-31 10:38:44 t 1 1 145102 585 0.00 2019-10-31 10:40:49 2019-10-31 10:43:04 t 1 1 145105 528 0.00 2019-10-31 10:44:56 2019-10-31 10:45:27 t 1 1 145108 528 0.00 2019-10-31 10:50:20 2019-10-31 10:51:14 t 1 1 145110 562 0.00 2019-10-31 10:52:48 2019-10-31 10:54:10 t 1 1 145114 619 0.00 2019-10-31 10:55:03 2019-10-31 10:56:25 t 1 1 145117 528 0.00 2019-10-31 10:55:49 2019-10-31 10:57:26 t 1 1 145121 522 0.00 2019-10-31 11:00:14 2019-10-31 11:00:23 t 1 1 144809 617 0.00 2019-10-31 07:33:21 2019-10-31 07:41:33 t 1 1 144811 562 0.00 2019-10-31 07:42:00 2019-10-31 07:42:14 t 1 1 144816 522 0.00 2019-10-31 07:46:54 2019-10-31 07:46:59 t 1 1 144819 585 0.00 2019-10-31 07:47:20 2019-10-31 07:51:43 t 1 1 144823 562 0.00 2019-10-31 07:52:36 2019-10-31 07:53:01 t 1 1 144829 562 0.00 2019-10-31 08:03:26 2019-10-31 08:03:50 t 1 1 144831 617 0.00 2019-10-31 07:54:11 2019-10-31 08:05:52 t 1 1 144833 522 0.00 2019-10-31 08:12:19 2019-10-31 08:12:20 t 1 1 144837 562 0.00 2019-10-31 08:16:16 2019-10-31 08:17:19 t 1 1 144842 522 0.00 2019-10-31 08:25:03 2019-10-31 08:25:05 t 1 1 144861 520 0.00 2019-10-31 08:29:52 2019-10-31 08:48:08 t 1 1 144862 597 0.00 2019-10-31 08:44:00 2019-10-31 08:48:33 t 1 1 144867 528 0.00 2019-10-31 08:38:37 2019-10-31 08:51:55 t 1 1 144868 607 0.00 2019-10-31 08:51:41 2019-10-31 08:52:42 t 1 1 144870 501 0.00 2019-10-31 08:52:50 2019-10-31 08:52:50 f 1 1 144871 522 0.00 2019-10-31 08:52:57 2019-10-31 08:52:58 t 1 1 144876 522 0.00 2019-10-31 08:54:10 2019-10-31 08:54:12 t 1 1 144878 522 0.00 2019-10-31 08:55:05 2019-10-31 08:55:12 t 1 1 144881 522 0.00 2019-10-31 08:55:38 2019-10-31 08:55:40 t 1 1 144885 522 0.00 2019-10-31 08:56:22 2019-10-31 08:56:59 t 1 1 144887 522 0.00 2019-10-31 08:57:46 2019-10-31 08:57:49 t 1 1 144891 522 0.00 2019-10-31 08:57:12 2019-10-31 08:58:25 t 1 1 144895 522 0.00 2019-10-31 08:58:32 2019-10-31 08:58:58 t 1 1 144896 522 0.00 2019-10-31 08:59:17 2019-10-31 08:59:24 t 1 1 144900 522 0.00 2019-10-31 08:59:58 2019-10-31 09:00:25 t 1 1 144902 522 0.00 2019-10-31 09:01:03 2019-10-31 09:01:08 t 1 1 144906 522 0.00 2019-10-31 09:00:56 2019-10-31 09:02:25 t 1 1 144915 522 0.00 2019-10-31 09:02:42 2019-10-31 09:04:25 t 1 1 144916 522 0.00 2019-10-31 09:04:39 2019-10-31 09:04:46 t 1 1 144918 522 0.00 2019-10-31 09:05:11 2019-10-31 09:05:13 t 1 1 144919 562 0.00 2019-10-31 09:04:33 2019-10-31 09:05:18 t 1 1 144921 522 0.00 2019-10-31 09:05:42 2019-10-31 09:05:44 t 1 1 144925 522 0.00 2019-10-31 09:06:13 2019-10-31 09:06:50 t 1 1 144929 522 0.00 2019-10-31 09:07:29 2019-10-31 09:07:31 t 1 1 144933 522 0.00 2019-10-31 09:08:11 2019-10-31 09:08:12 t 1 1 144935 522 0.00 2019-10-31 09:08:18 2019-10-31 09:08:20 t 1 1 144939 522 0.00 2019-10-31 09:09:01 2019-10-31 09:09:03 t 1 1 144940 522 0.00 2019-10-31 09:09:08 2019-10-31 09:09:10 t 1 1 144943 522 0.00 2019-10-31 09:10:10 2019-10-31 09:10:21 t 1 1 144945 522 0.00 2019-10-31 09:10:34 2019-10-31 09:10:40 t 1 1 144947 522 0.00 2019-10-31 09:10:51 2019-10-31 09:10:55 t 1 1 144949 522 0.00 2019-10-31 09:11:18 2019-10-31 09:11:25 t 1 1 144951 522 0.00 2019-10-31 09:11:32 2019-10-31 09:11:39 t 1 1 144955 522 0.00 2019-10-31 09:12:12 2019-10-31 09:12:19 t 1 1 144959 522 0.00 2019-10-31 09:13:12 2019-10-31 09:13:14 t 1 1 144966 522 0.00 2019-10-31 09:15:26 2019-10-31 09:15:31 t 1 1 144970 522 0.00 2019-10-31 09:16:21 2019-10-31 09:16:26 t 1 1 144971 562 0.00 2019-10-31 09:13:46 2019-10-31 09:17:13 t 1 1 144973 522 0.00 2019-10-31 09:16:31 2019-10-31 09:17:34 t 1 1 144974 522 0.00 2019-10-31 09:17:47 2019-10-31 09:17:52 t 1 1 144976 445 0.00 2019-10-31 07:46:35 2019-10-31 09:18:18 t 1 1 144980 615 0.00 2019-10-31 09:02:30 2019-10-31 09:19:20 t 1 1 144983 522 0.00 2019-10-31 09:19:46 2019-10-31 09:19:48 t 1 1 144989 520 0.00 2019-10-31 09:17:32 2019-10-31 09:22:26 t 1 1 144993 522 0.00 2019-10-31 09:23:36 2019-10-31 09:23:42 t 1 1 144994 522 0.00 2019-10-31 09:24:00 2019-10-31 09:24:02 t 1 1 144999 562 0.00 2019-10-31 09:17:40 2019-10-31 09:28:02 t 1 1 145001 522 0.00 2019-10-31 09:26:16 2019-10-31 09:28:23 t 1 1 145002 445 0.00 2019-10-31 09:28:13 2019-10-31 09:30:59 t 1 1 145005 562 0.00 2019-10-31 09:36:30 2019-10-31 09:36:41 t 1 1 145007 522 0.00 2019-10-31 09:28:37 2019-10-31 09:41:24 t 1 1 145012 522 0.00 2019-10-31 09:45:50 2019-10-31 09:46:31 t 1 1 145013 456 0.00 2019-10-31 09:34:24 2019-10-31 09:47:17 t 1 1 145019 522 0.00 2019-10-31 09:49:21 2019-10-31 09:49:32 t 1 1 145021 445 0.00 2019-10-31 09:48:59 2019-10-31 09:51:14 t 1 1 145026 522 0.00 2019-10-31 09:53:53 2019-10-31 09:54:02 t 1 1 145029 522 0.00 2019-10-31 09:54:54 2019-10-31 09:55:06 t 1 1 145035 615 0.00 2019-10-31 09:55:16 2019-10-31 09:57:31 t 1 1 145038 522 0.00 2019-10-31 09:57:13 2019-10-31 09:58:25 t 1 1 145040 522 0.00 2019-10-31 09:58:43 2019-10-31 09:59:10 t 1 1 145042 562 0.00 2019-10-31 10:00:05 2019-10-31 10:00:26 t 1 1 145044 615 0.00 2019-10-31 09:58:38 2019-10-31 10:01:35 t 1 1 145046 445 0.00 2019-10-31 10:02:21 2019-10-31 10:03:50 t 1 1 145047 451 0.00 2019-10-31 09:59:05 2019-10-31 10:05:19 t 1 1 145050 562 0.00 2019-10-31 10:07:31 2019-10-31 10:08:19 t 1 1 145052 445 0.00 2019-10-31 10:04:31 2019-10-31 10:10:00 t 1 1 145054 593 0.00 2019-10-31 10:08:34 2019-10-31 10:12:26 t 1 1 145056 597 0.00 2019-10-31 10:08:31 2019-10-31 10:12:34 t 1 1 145057 445 0.00 2019-10-31 10:10:00 2019-10-31 10:13:09 t 1 1 145060 451 0.00 2019-10-31 10:05:19 2019-10-31 10:14:48 t 1 1 145063 422 0.00 2019-10-31 10:13:16 2019-10-31 10:16:05 t 1 1 145069 445 0.00 2019-10-31 10:15:29 2019-10-31 10:17:56 t 1 1 145070 562 0.00 2019-10-31 10:17:22 2019-10-31 10:18:08 t 1 1 145073 583 0.00 2019-10-31 10:15:46 2019-10-31 10:19:58 t 1 1 145074 445 0.00 2019-10-31 10:17:56 2019-10-31 10:20:34 t 1 1 145076 220 0.00 2019-10-31 10:19:08 2019-10-31 10:22:23 t 1 1 145078 220 0.00 2019-10-31 10:22:38 2019-10-31 10:23:34 t 1 1 145079 522 0.00 2019-10-31 10:23:43 2019-10-31 10:23:43 f 1 1 145081 522 0.00 2019-10-31 10:22:39 2019-10-31 10:24:26 t 1 1 145085 514 0.00 2019-10-31 10:18:31 2019-10-31 10:25:34 t 1 1 145086 422 0.00 2019-10-31 10:19:28 2019-10-31 10:25:59 t 1 1 145089 562 0.00 2019-10-31 10:27:31 2019-10-31 10:28:13 t 1 1 145090 581 0.00 2019-10-31 10:02:35 2019-10-31 10:32:35 t 1 1 145091 528 0.00 2019-10-31 10:32:42 2019-10-31 10:33:06 t 1 1 145094 512 0.00 2019-10-31 10:33:46 2019-10-31 10:37:06 t 1 1 145099 451 0.00 2019-10-31 10:24:42 2019-10-31 10:39:38 t 1 1 145103 451 0.00 2019-10-31 10:39:38 2019-10-31 10:43:12 t 1 1 145104 528 0.00 2019-10-31 10:43:21 2019-10-31 10:43:44 t 1 1 145107 562 0.00 2019-10-31 10:49:20 2019-10-31 10:49:30 t 1 1 145115 522 0.00 2019-10-31 10:56:51 2019-10-31 10:56:59 t 1 1 145118 528 0.00 2019-10-31 10:58:53 2019-10-31 10:59:02 t 1 1 145119 522 0.00 2019-10-31 10:59:53 2019-10-31 10:59:54 t 1 1 145122 522 0.00 2019-10-31 11:01:36 2019-10-31 11:01:44 t 1 1 145125 597 0.00 2019-10-31 11:00:44 2019-10-31 11:02:46 t 1 1 145127 528 0.00 2019-10-31 11:04:03 2019-10-31 11:04:51 t 1 1 145128 522 0.00 2019-10-31 11:06:47 2019-10-31 11:06:54 t 1 1 145129 522 0.00 2019-10-31 11:07:08 2019-10-31 11:07:17 t 1 1 144812 597 0.00 2019-10-31 07:39:48 2019-10-31 07:42:19 t 1 1 144813 566 0.00 2019-10-31 07:32:24 2019-10-31 07:44:25 t 1 1 144817 585 0.00 2019-10-31 07:45:56 2019-10-31 07:47:20 t 1 1 144821 522 0.00 2019-10-31 07:52:03 2019-10-31 07:52:14 t 1 1 144824 566 0.00 2019-10-31 07:44:25 2019-10-31 07:53:38 t 1 1 144825 617 0.00 2019-10-31 07:41:33 2019-10-31 07:54:11 t 1 1 144832 522 0.00 2019-10-31 08:07:16 2019-10-31 08:07:17 t 1 1 144835 617 0.00 2019-10-31 08:05:52 2019-10-31 08:15:24 t 1 1 144836 619 0.00 2019-10-31 08:12:54 2019-10-31 08:16:19 t 1 1 144838 379 0.00 2019-10-31 08:03:01 2019-10-31 08:17:36 t 1 1 144839 520 0.00 2019-10-31 08:15:05 2019-10-31 08:22:34 t 1 1 144840 617 0.00 2019-10-31 08:15:24 2019-10-31 08:23:25 t 1 1 144841 522 0.00 2019-10-31 08:24:41 2019-10-31 08:24:50 t 1 1 144843 562 0.00 2019-10-31 08:24:55 2019-10-31 08:25:25 t 1 1 144845 562 0.00 2019-10-31 08:27:25 2019-10-31 08:28:18 t 1 1 144847 520 0.00 2019-10-31 08:22:33 2019-10-31 08:29:53 t 1 1 144848 562 0.00 2019-10-31 08:29:28 2019-10-31 08:32:12 t 1 1 144849 591 0.00 2019-10-31 08:27:29 2019-10-31 08:34:39 t 1 1 144851 522 0.00 2019-10-31 08:35:20 2019-10-31 08:35:23 t 1 1 144854 522 0.00 2019-10-31 08:39:38 2019-10-31 08:39:40 t 1 1 144855 522 0.00 2019-10-31 08:41:17 2019-10-31 08:41:20 t 1 1 144857 522 0.00 2019-10-31 08:41:32 2019-10-31 08:41:33 t 1 1 144859 617 0.00 2019-10-31 08:38:49 2019-10-31 08:45:24 t 1 1 144869 522 0.00 2019-10-31 08:52:27 2019-10-31 08:52:44 t 1 1 144875 522 0.00 2019-10-31 08:54:04 2019-10-31 08:54:05 t 1 1 144880 522 0.00 2019-10-31 08:55:31 2019-10-31 08:55:33 t 1 1 144884 522 0.00 2019-10-31 08:56:10 2019-10-31 08:56:17 t 1 1 144886 522 0.00 2019-10-31 08:57:18 2019-10-31 08:57:25 t 1 1 144890 522 0.00 2019-10-31 08:58:14 2019-10-31 08:58:15 t 1 1 144892 562 0.00 2019-10-31 08:56:56 2019-10-31 08:58:25 t 1 1 144894 562 0.00 2019-10-31 08:57:22 2019-10-31 08:58:32 t 1 1 144898 522 0.00 2019-10-31 08:59:43 2019-10-31 08:59:45 t 1 1 144905 522 0.00 2019-10-31 09:02:16 2019-10-31 09:02:17 t 1 1 144907 522 0.00 2019-10-31 09:02:22 2019-10-31 09:02:29 t 1 1 144909 522 0.00 2019-10-31 09:02:49 2019-10-31 09:02:54 t 1 1 144910 570 0.00 2019-10-31 08:30:57 2019-10-31 09:03:27 t 1 1 144912 522 0.00 2019-10-31 09:03:50 2019-10-31 09:03:52 t 1 1 144913 522 0.00 2019-10-31 09:03:57 2019-10-31 09:04:19 t 1 1 144917 522 0.00 2019-10-31 09:05:03 2019-10-31 09:05:05 t 1 1 144920 522 0.00 2019-10-31 09:05:18 2019-10-31 09:05:24 t 1 1 144924 522 0.00 2019-10-31 09:06:26 2019-10-31 09:06:39 t 1 1 144926 522 0.00 2019-10-31 09:06:50 2019-10-31 09:06:52 t 1 1 144927 522 0.00 2019-10-31 09:06:57 2019-10-31 09:07:04 t 1 1 144928 522 0.00 2019-10-31 09:07:22 2019-10-31 09:07:24 t 1 1 144930 522 0.00 2019-10-31 09:07:36 2019-10-31 09:07:52 t 1 1 144932 522 0.00 2019-10-31 09:07:52 2019-10-31 09:07:58 t 1 1 144937 522 0.00 2019-10-31 09:08:37 2019-10-31 09:08:43 t 1 1 144942 522 0.00 2019-10-31 09:09:58 2019-10-31 09:10:05 t 1 1 144946 585 0.00 2019-10-31 09:09:09 2019-10-31 09:10:42 t 1 1 144948 522 0.00 2019-10-31 09:11:00 2019-10-31 09:11:06 t 1 1 144950 562 0.00 2019-10-31 09:11:01 2019-10-31 09:11:29 t 1 1 144954 522 0.00 2019-10-31 09:12:05 2019-10-31 09:12:07 t 1 1 144958 522 0.00 2019-10-31 09:13:05 2019-10-31 09:13:07 t 1 1 144961 522 0.00 2019-10-31 09:13:27 2019-10-31 09:13:32 t 1 1 144963 522 0.00 2019-10-31 09:14:09 2019-10-31 09:14:46 t 1 1 144965 522 0.00 2019-10-31 09:15:16 2019-10-31 09:15:21 t 1 1 144969 522 0.00 2019-10-31 09:16:14 2019-10-31 09:16:16 t 1 1 144975 522 0.00 2019-10-31 09:18:12 2019-10-31 09:18:14 t 1 1 144979 522 0.00 2019-10-31 09:19:06 2019-10-31 09:19:11 t 1 1 144982 522 0.00 2019-10-31 09:19:37 2019-10-31 09:19:41 t 1 1 144984 522 0.00 2019-10-31 09:17:59 2019-10-31 09:20:25 t 1 1 144987 522 0.00 2019-10-31 09:21:18 2019-10-31 09:21:28 t 1 1 144988 522 0.00 2019-10-31 09:21:57 2019-10-31 09:22:02 t 1 1 144990 522 0.00 2019-10-31 09:22:20 2019-10-31 09:22:27 t 1 1 144991 522 0.00 2019-10-31 09:22:47 2019-10-31 09:22:53 t 1 1 144992 522 0.00 2019-10-31 09:23:06 2019-10-31 09:23:23 t 1 1 144996 615 0.00 2019-10-31 09:19:20 2019-10-31 09:24:14 t 1 1 145000 445 0.00 2019-10-31 09:18:18 2019-10-31 09:28:12 t 1 1 145004 562 0.00 2019-10-31 09:32:42 2019-10-31 09:36:01 t 1 1 145006 520 0.00 2019-10-31 09:22:51 2019-10-31 09:38:57 t 1 1 145008 451 0.00 2019-10-31 09:31:21 2019-10-31 09:41:32 t 1 1 145009 562 0.00 2019-10-31 09:43:28 2019-10-31 09:43:51 t 1 1 145011 522 0.00 2019-10-31 09:41:46 2019-10-31 09:45:50 t 1 1 145014 445 0.00 2019-10-31 09:33:37 2019-10-31 09:47:20 t 1 1 145015 522 0.00 2019-10-31 09:47:02 2019-10-31 09:48:00 t 1 1 145017 522 0.00 2019-10-31 09:48:09 2019-10-31 09:48:09 t 1 1 145020 522 0.00 2019-10-31 09:49:47 2019-10-31 09:50:17 t 1 1 145024 445 0.00 2019-10-31 09:51:17 2019-10-31 09:52:37 t 1 1 145027 597 0.00 2019-10-31 09:53:05 2019-10-31 09:54:59 t 1 1 145032 522 0.00 2019-10-31 09:55:26 2019-10-31 09:55:28 t 1 1 145034 520 0.00 2019-10-31 09:47:46 2019-10-31 09:55:55 t 1 1 145036 522 0.00 2019-10-31 09:57:24 2019-10-31 09:57:38 t 1 1 145037 522 0.00 2019-10-31 09:57:50 2019-10-31 09:57:59 t 1 1 145043 562 0.00 2019-10-31 10:00:41 2019-10-31 10:00:48 t 1 1 145048 522 0.00 2019-10-31 10:00:30 2019-10-31 10:05:36 t 1 1 145049 585 0.00 2019-10-31 10:00:35 2019-10-31 10:07:49 t 1 1 145065 522 0.00 2019-10-31 10:05:43 2019-10-31 10:17:19 t 1 1 145066 597 0.00 2019-10-31 10:12:36 2019-10-31 10:17:26 t 1 1 145068 522 0.00 2019-10-31 10:17:48 2019-10-31 10:17:48 t 1 1 145082 528 0.00 2019-10-31 10:20:43 2019-10-31 10:24:28 t 1 1 145084 451 0.00 2019-10-31 10:16:35 2019-10-31 10:24:42 t 1 1 145092 585 0.00 2019-10-31 10:07:49 2019-10-31 10:33:08 t 1 1 145093 220 0.00 2019-10-31 10:23:37 2019-10-31 10:34:14 t 1 1 145095 583 0.00 2019-10-31 10:27:56 2019-10-31 10:37:55 t 1 1 145096 597 0.00 2019-10-31 10:16:29 2019-10-31 10:38:10 t 1 1 145098 528 0.00 2019-10-31 10:38:10 2019-10-31 10:38:57 t 1 1 145100 619 0.00 2019-10-31 10:38:41 2019-10-31 10:40:34 t 1 1 145101 522 0.00 2019-10-31 10:39:32 2019-10-31 10:42:58 t 1 1 145106 619 0.00 2019-10-31 10:43:28 2019-10-31 10:46:53 t 1 1 145109 522 0.00 2019-10-31 10:52:58 2019-10-31 10:53:10 t 1 1 145111 570 0.00 2019-10-31 10:24:51 2019-10-31 10:55:21 t 1 1 145112 583 0.00 2019-10-31 10:37:55 2019-10-31 10:55:59 t 1 1 145113 522 0.00 2019-10-31 10:56:05 2019-10-31 10:56:13 t 1 1 145116 528 0.00 2019-10-31 10:56:43 2019-10-31 10:57:07 t 1 1 145120 562 0.00 2019-10-31 10:59:53 2019-10-31 11:00:16 t 1 1 145124 583 0.00 2019-10-31 10:55:59 2019-10-31 11:02:33 t 1 1 145130 522 0.00 2019-10-31 11:08:55 2019-10-31 11:09:16 t 1 1 145123 514 0.00 2019-10-31 10:25:33 2019-10-31 11:02:29 t 1 1 145126 615 0.00 2019-10-31 10:53:30 2019-10-31 11:03:35 t 1 1 145132 583 0.00 2019-10-31 11:02:33 2019-10-31 11:10:10 t 1 1 145134 220 0.00 2019-10-31 10:42:28 2019-10-31 11:10:42 t 1 1 145137 522 0.00 2019-10-31 11:11:31 2019-10-31 11:11:41 t 1 1 145140 562 0.00 2019-10-31 11:14:50 2019-10-31 11:15:00 t 1 1 145146 583 0.00 2019-10-31 11:10:10 2019-10-31 11:16:15 t 1 1 145147 522 0.00 2019-10-31 11:18:11 2019-10-31 11:18:20 t 1 1 145152 514 0.00 2019-10-31 11:19:22 2019-10-31 11:22:57 t 1 1 145153 583 0.00 2019-10-31 11:16:15 2019-10-31 11:23:13 t 1 1 145154 522 0.00 2019-10-31 11:23:20 2019-10-31 11:23:21 t 1 1 145159 562 0.00 2019-10-31 11:21:50 2019-10-31 11:26:21 t 1 1 145167 593 0.00 2019-10-31 11:27:43 2019-10-31 11:31:43 t 1 1 145168 422 0.00 2019-10-31 10:25:59 2019-10-31 11:31:51 t 1 1 145185 597 0.00 2019-10-31 11:32:04 2019-10-31 11:45:08 t 1 1 145190 570 0.00 2019-10-31 11:42:16 2019-10-31 11:50:57 t 1 1 145194 522 0.00 2019-10-31 11:48:40 2019-10-31 11:53:30 t 1 1 145198 522 0.00 2019-10-31 11:56:16 2019-10-31 11:56:39 t 1 1 145205 516 0.00 2019-10-31 11:59:16 2019-10-31 12:02:46 t 1 1 145210 622 0.00 2019-10-31 11:43:34 2019-10-31 12:08:44 t 1 1 145211 562 0.00 2019-10-31 12:05:27 2019-10-31 12:09:27 t 1 1 145214 570 0.00 2019-10-31 11:58:07 2019-10-31 12:11:10 t 1 1 145217 570 0.00 2019-10-31 12:11:09 2019-10-31 12:12:55 t 1 1 145227 514 0.00 2019-10-31 12:10:00 2019-10-31 12:21:52 t 1 1 145230 615 0.00 2019-10-31 12:18:48 2019-10-31 12:24:28 t 1 1 145233 622 0.00 2019-10-31 12:08:44 2019-10-31 12:27:06 t 1 1 145237 422 0.00 2019-10-31 12:25:13 2019-10-31 12:32:11 t 1 1 145242 581 0.00 2019-10-31 12:32:05 2019-10-31 12:38:13 t 1 1 145244 422 0.00 2019-10-31 12:32:11 2019-10-31 12:38:50 t 1 1 145247 522 0.00 2019-10-31 12:39:15 2019-10-31 12:39:33 t 1 1 145249 430 0.00 2019-10-31 12:39:36 2019-10-31 12:39:43 t 1 1 145254 430 0.00 2019-10-31 12:41:48 2019-10-31 12:42:20 t 1 1 145255 562 0.00 2019-10-31 12:43:13 2019-10-31 12:43:44 t 1 1 145256 522 0.00 2019-10-31 12:45:48 2019-10-31 12:45:57 t 1 1 145263 562 0.00 2019-10-31 12:46:11 2019-10-31 12:49:43 t 1 1 145265 430 0.00 2019-10-31 12:49:41 2019-10-31 12:52:19 t 1 1 145266 522 0.00 2019-10-31 12:48:48 2019-10-31 12:53:16 t 1 1 145269 522 0.00 2019-10-31 12:53:36 2019-10-31 12:55:10 t 1 1 145270 430 0.00 2019-10-31 12:56:43 2019-10-31 12:56:54 t 1 1 145274 520 0.00 2019-10-31 12:39:07 2019-10-31 12:59:21 t 1 1 145275 430 0.00 2019-10-31 12:59:49 2019-10-31 12:59:56 t 1 1 145276 562 0.00 2019-10-31 12:52:06 2019-10-31 13:00:30 t 1 1 145279 412 0.00 2019-10-31 13:00:55 2019-10-31 13:01:39 t 1 1 145282 570 0.00 2019-10-31 12:40:50 2019-10-31 13:03:07 t 1 1 145287 430 0.00 2019-10-31 13:07:05 2019-10-31 13:07:11 t 1 1 145289 430 0.00 2019-10-31 13:09:58 2019-10-31 13:10:05 t 1 1 145296 615 0.00 2019-10-31 13:11:31 2019-10-31 13:11:49 t 1 1 145300 556 0.00 2019-10-31 13:02:57 2019-10-31 13:12:39 t 1 1 145301 430 0.00 2019-10-31 13:12:03 2019-10-31 13:13:05 t 1 1 145303 585 0.00 2019-10-31 13:13:19 2019-10-31 13:13:22 t 1 1 145305 591 0.00 2019-10-31 13:12:36 2019-10-31 13:13:45 t 1 1 145308 514 0.00 2019-10-31 13:01:47 2019-10-31 13:15:04 t 1 1 145310 522 0.00 2019-10-31 13:17:46 2019-10-31 13:17:48 t 1 1 145311 514 0.00 2019-10-31 13:18:07 2019-10-31 13:19:09 t 1 1 145315 556 0.00 2019-10-31 13:12:39 2019-10-31 13:21:13 t 1 1 145316 528 0.00 2019-10-31 13:19:03 2019-10-31 13:22:00 t 1 1 145320 570 0.00 2019-10-31 13:10:45 2019-10-31 13:24:25 t 1 1 145321 522 0.00 2019-10-31 13:24:28 2019-10-31 13:24:29 t 1 1 145322 522 0.00 2019-10-31 13:24:44 2019-10-31 13:26:41 t 1 1 145324 581 0.00 2019-10-31 13:20:50 2019-10-31 13:29:02 t 1 1 145328 451 0.00 2019-10-31 13:30:44 2019-10-31 13:34:06 t 1 1 145329 522 0.00 2019-10-31 13:34:40 2019-10-31 13:34:43 t 1 1 145332 522 0.00 2019-10-31 13:37:46 2019-10-31 13:38:46 t 1 1 145336 522 0.00 2019-10-31 13:40:32 2019-10-31 13:40:39 t 1 1 145344 445 0.00 2019-10-31 13:14:24 2019-10-31 13:43:58 t 1 1 145346 528 0.00 2019-10-31 13:24:31 2019-10-31 13:44:24 t 1 1 145349 622 0.00 2019-10-31 13:22:52 2019-10-31 13:45:20 t 1 1 145350 522 0.00 2019-10-31 13:45:38 2019-10-31 13:45:39 t 1 1 145352 522 0.00 2019-10-31 13:47:00 2019-10-31 13:47:04 t 1 1 145355 451 0.00 2019-10-31 13:36:36 2019-10-31 13:48:05 t 1 1 145356 522 0.00 2019-10-31 13:48:06 2019-10-31 13:48:18 t 1 1 145361 522 0.00 2019-10-31 13:50:47 2019-10-31 13:51:07 t 1 1 145365 570 0.00 2019-10-31 13:27:59 2019-10-31 13:55:18 t 1 1 145366 562 0.00 2019-10-31 13:55:07 2019-10-31 13:56:04 t 1 1 145370 451 0.00 2019-10-31 13:48:05 2019-10-31 13:57:58 t 1 1 145376 581 0.00 2019-10-31 13:58:27 2019-10-31 14:01:43 t 1 1 145378 412 0.00 2019-10-31 13:57:54 2019-10-31 14:02:08 t 1 1 145382 570 0.00 2019-10-31 13:58:43 2019-10-31 14:07:01 t 1 1 145384 611 0.00 2019-10-31 13:55:36 2019-10-31 14:08:21 t 1 1 145387 412 0.00 2019-10-31 14:08:53 2019-10-31 14:09:58 t 1 1 145397 562 0.00 2019-10-31 14:15:24 2019-10-31 14:16:20 t 1 1 145399 570 0.00 2019-10-31 14:07:01 2019-10-31 14:17:29 t 1 1 145408 611 0.00 2019-10-31 14:17:58 2019-10-31 14:22:57 t 1 1 145414 412 0.00 2019-10-31 14:28:23 2019-10-31 14:29:38 t 1 1 145426 220 0.00 2019-10-31 14:42:21 2019-10-31 14:42:56 t 1 1 145427 220 0.00 2019-10-31 14:42:56 2019-10-31 14:43:31 t 1 1 145430 520 0.00 2019-10-31 14:34:08 2019-10-31 14:44:48 t 1 1 145431 538 0.00 2019-10-31 14:37:20 2019-10-31 14:45:04 t 1 1 145433 522 0.00 2019-10-31 14:46:34 2019-10-31 14:46:47 t 1 1 145436 522 0.00 2019-10-31 14:48:14 2019-10-31 14:48:27 t 1 1 145444 522 0.00 2019-10-31 14:54:49 2019-10-31 14:55:48 t 1 1 145446 522 0.00 2019-10-31 14:59:53 2019-10-31 14:59:56 t 1 1 145447 220 0.00 2019-10-31 14:54:18 2019-10-31 15:00:42 t 1 2 145451 514 0.00 2019-10-31 13:35:26 2019-10-31 15:05:36 t 1 1 145453 520 0.00 2019-10-31 14:57:46 2019-10-31 15:05:55 t 1 1 145454 599 0.00 2019-10-31 15:04:33 2019-10-31 15:09:14 t 1 1 145456 522 0.00 2019-10-31 15:10:00 2019-10-31 15:10:03 t 1 1 145457 522 0.00 2019-10-31 15:13:54 2019-10-31 15:14:19 t 1 1 145459 412 0.00 2019-10-31 14:47:34 2019-10-31 15:14:43 t 1 1 145467 599 0.00 2019-10-31 15:15:57 2019-10-31 15:22:02 t 1 1 145469 591 0.00 2019-10-31 15:11:21 2019-10-31 15:22:27 t 1 1 145471 599 0.00 2019-10-31 15:22:02 2019-10-31 15:27:26 t 1 1 145475 528 0.00 2019-10-31 14:22:46 2019-10-31 15:32:12 t 1 1 145482 597 0.00 2019-10-31 15:37:25 2019-10-31 15:38:54 t 1 1 145483 528 0.00 2019-10-31 15:39:16 2019-10-31 15:41:42 t 1 1 145484 538 0.00 2019-10-31 15:42:01 2019-10-31 15:43:41 t 1 1 145486 562 0.00 2019-10-31 15:45:38 2019-10-31 15:48:34 t 1 1 145131 528 0.00 2019-10-31 11:06:27 2019-10-31 11:10:10 t 1 1 145133 570 0.00 2019-10-31 10:55:20 2019-10-31 11:10:27 t 1 1 145135 514 0.00 2019-10-31 11:02:29 2019-10-31 11:10:55 t 1 1 145136 562 0.00 2019-10-31 11:10:51 2019-10-31 11:11:01 t 1 1 145138 339 0.00 2019-10-31 11:13:11 2019-10-31 11:13:11 f 1 2 145141 339 0.00 2019-10-31 11:15:12 2019-10-31 11:15:12 f 1 2 145143 514 0.00 2019-10-31 11:10:55 2019-10-31 11:15:29 t 1 1 145144 339 0.00 2019-10-31 11:15:32 2019-10-31 11:15:32 f 1 2 145145 522 0.00 2019-10-31 11:15:56 2019-10-31 11:16:05 t 1 1 145149 514 0.00 2019-10-31 11:15:29 2019-10-31 11:19:22 t 1 1 145151 562 0.00 2019-10-31 11:19:31 2019-10-31 11:20:52 t 1 1 145161 528 0.00 2019-10-31 11:16:27 2019-10-31 11:27:06 t 1 1 145165 583 0.00 2019-10-31 11:23:13 2019-10-31 11:29:23 t 1 1 145169 622 0.00 2019-10-31 11:12:28 2019-10-31 11:31:59 t 1 1 145173 520 0.00 2019-10-31 11:37:46 2019-10-31 11:39:50 t 1 1 145174 583 0.00 2019-10-31 11:38:53 2019-10-31 11:40:18 t 1 1 145176 570 0.00 2019-10-31 11:26:54 2019-10-31 11:41:08 t 1 1 145178 520 0.00 2019-10-31 11:39:50 2019-10-31 11:42:07 t 1 1 145179 522 0.00 2019-10-31 11:42:46 2019-10-31 11:42:50 t 1 1 145180 514 0.00 2019-10-31 11:26:40 2019-10-31 11:43:01 t 1 1 145181 522 0.00 2019-10-31 11:42:59 2019-10-31 11:43:36 t 1 1 145184 522 0.00 2019-10-31 11:45:02 2019-10-31 11:45:07 t 1 1 145186 522 0.00 2019-10-31 11:45:15 2019-10-31 11:45:53 t 1 1 145187 520 0.00 2019-10-31 11:42:06 2019-10-31 11:46:50 t 1 1 145188 522 0.00 2019-10-31 11:47:00 2019-10-31 11:47:25 t 1 1 145189 619 0.00 2019-10-31 11:36:31 2019-10-31 11:48:44 t 1 1 145191 445 0.00 2019-10-31 10:25:46 2019-10-31 11:52:45 t 1 1 145192 379 0.00 2019-10-31 08:17:36 2019-10-31 11:53:14 t 1 1 145195 585 0.00 2019-10-31 11:52:08 2019-10-31 11:54:01 t 1 1 145196 522 0.00 2019-10-31 11:54:29 2019-10-31 11:54:40 t 1 1 145197 538 0.00 2019-10-31 11:36:39 2019-10-31 11:55:46 t 1 1 145200 619 0.00 2019-10-31 11:57:51 2019-10-31 11:59:09 t 1 1 145201 339 0.00 2019-10-31 12:00:53 2019-10-31 12:00:53 f 1 2 145204 522 0.00 2019-10-31 12:01:56 2019-10-31 12:02:03 t 1 1 145218 615 0.00 2019-10-31 12:11:45 2019-10-31 12:13:23 t 1 1 145219 522 0.00 2019-10-31 12:14:38 2019-10-31 12:14:48 t 1 1 145220 593 0.00 2019-10-31 11:44:13 2019-10-31 12:15:16 t 1 1 145224 520 0.00 2019-10-31 12:16:37 2019-10-31 12:19:41 t 1 1 145226 593 0.00 2019-10-31 12:15:16 2019-10-31 12:21:52 t 1 1 145228 445 0.00 2019-10-31 11:52:55 2019-10-31 12:23:05 t 1 1 145235 562 0.00 2019-10-31 12:30:51 2019-10-31 12:31:23 t 1 1 145238 615 0.00 2019-10-31 12:29:38 2019-10-31 12:32:19 t 1 1 145240 520 0.00 2019-10-31 12:19:40 2019-10-31 12:35:02 t 1 1 145241 514 0.00 2019-10-31 12:21:52 2019-10-31 12:36:38 t 1 1 145243 619 0.00 2019-10-31 12:20:39 2019-10-31 12:38:24 t 1 1 145245 591 0.00 2019-10-31 12:37:04 2019-10-31 12:39:07 t 1 1 145246 430 0.00 2019-10-31 12:32:58 2019-10-31 12:39:30 t 1 1 145248 220 0.00 2019-10-31 12:22:38 2019-10-31 12:39:40 t 1 1 145251 570 0.00 2019-10-31 12:17:41 2019-10-31 12:40:50 t 1 1 145253 562 0.00 2019-10-31 12:40:53 2019-10-31 12:42:10 t 1 1 145258 430 0.00 2019-10-31 12:47:01 2019-10-31 12:47:03 t 1 1 145264 622 0.00 2019-10-31 12:27:06 2019-10-31 12:51:37 t 1 1 145268 430 0.00 2019-10-31 12:54:43 2019-10-31 12:54:51 t 1 1 145271 512 0.00 2019-10-31 12:48:25 2019-10-31 12:57:29 t 1 1 145272 430 0.00 2019-10-31 12:57:37 2019-10-31 12:57:55 t 1 1 145278 514 0.00 2019-10-31 12:57:54 2019-10-31 13:00:48 t 1 1 145281 556 0.00 2019-10-31 10:54:05 2019-10-31 13:02:57 t 1 1 145283 430 0.00 2019-10-31 13:03:12 2019-10-31 13:03:14 t 1 1 145284 445 0.00 2019-10-31 12:23:08 2019-10-31 13:04:51 t 1 1 145286 622 0.00 2019-10-31 12:51:37 2019-10-31 13:05:20 t 1 1 145291 522 0.00 2019-10-31 12:55:10 2019-10-31 13:10:30 t 1 1 145293 622 0.00 2019-10-31 13:05:20 2019-10-31 13:11:14 t 1 1 145294 615 0.00 2019-10-31 13:09:58 2019-10-31 13:11:31 t 1 1 145298 522 0.00 2019-10-31 13:12:04 2019-10-31 13:12:11 t 1 1 145306 481 0.00 2019-10-31 11:28:23 2019-10-31 13:13:54 t 1 1 145307 522 0.00 2019-10-31 13:14:22 2019-10-31 13:14:58 t 1 1 145313 562 0.00 2019-10-31 13:20:12 2019-10-31 13:20:46 t 1 1 145314 585 0.00 2019-10-31 13:13:31 2019-10-31 13:21:02 t 1 1 145327 597 0.00 2019-10-31 13:22:01 2019-10-31 13:34:03 t 1 1 145331 585 0.00 2019-10-31 13:33:14 2019-10-31 13:35:33 t 1 1 145335 522 0.00 2019-10-31 13:38:16 2019-10-31 13:39:55 t 1 1 145338 220 0.00 2019-10-31 13:24:19 2019-10-31 13:41:13 t 1 1 145339 615 0.00 2019-10-31 13:39:08 2019-10-31 13:41:55 t 1 1 145343 522 0.00 2019-10-31 13:43:17 2019-10-31 13:43:29 t 1 1 145348 562 0.00 2019-10-31 13:41:02 2019-10-31 13:44:37 t 1 1 145351 445 0.00 2019-10-31 13:43:58 2019-10-31 13:46:33 t 1 1 145354 520 0.00 2019-10-31 12:59:41 2019-10-31 13:48:04 t 1 1 145360 412 0.00 2019-10-31 13:11:09 2019-10-31 13:50:30 t 1 1 145362 520 0.00 2019-10-31 13:48:04 2019-10-31 13:51:48 t 1 1 145364 528 0.00 2019-10-31 13:51:04 2019-10-31 13:52:24 t 1 1 145367 522 0.00 2019-10-31 13:56:10 2019-10-31 13:56:13 t 1 1 145369 581 0.00 2019-10-31 13:54:41 2019-10-31 13:57:52 t 1 1 145375 522 0.00 2019-10-31 14:01:12 2019-10-31 14:01:15 t 1 1 145381 522 0.00 2019-10-31 14:06:19 2019-10-31 14:06:20 t 1 1 145383 556 0.00 2019-10-31 13:47:40 2019-10-31 14:07:52 t 1 1 145385 412 0.00 2019-10-31 14:06:46 2019-10-31 14:08:35 t 1 1 145386 481 0.00 2019-10-31 13:13:54 2019-10-31 14:09:50 t 1 1 145388 520 0.00 2019-10-31 13:51:48 2019-10-31 14:10:25 t 1 1 145390 512 0.00 2019-10-31 13:23:28 2019-10-31 14:11:19 t 1 1 145393 516 0.00 2019-10-31 13:30:49 2019-10-31 14:13:45 t 1 1 145396 622 0.00 2019-10-31 14:06:49 2019-10-31 14:15:59 t 1 1 145398 412 0.00 2019-10-31 14:15:18 2019-10-31 14:17:05 t 1 1 145402 556 0.00 2019-10-31 14:07:52 2019-10-31 14:18:47 t 1 1 145404 520 0.00 2019-10-31 14:18:26 2019-10-31 14:20:32 t 1 1 145405 528 0.00 2019-10-31 14:18:23 2019-10-31 14:21:19 t 1 1 145406 520 0.00 2019-10-31 14:20:37 2019-10-31 14:21:49 t 1 1 145410 562 0.00 2019-10-31 14:25:19 2019-10-31 14:25:40 t 1 1 145411 562 0.00 2019-10-31 14:26:39 2019-10-31 14:26:48 t 1 1 145417 597 0.00 2019-10-31 14:31:58 2019-10-31 14:32:23 t 1 1 145418 585 0.00 2019-10-31 14:28:21 2019-10-31 14:32:38 t 1 1 145422 220 0.00 2019-10-31 14:32:27 2019-10-31 14:40:35 t 1 1 145423 220 0.00 2019-10-31 14:40:35 2019-10-31 14:41:14 t 1 1 145432 522 0.00 2019-10-31 14:08:25 2019-10-31 14:45:16 t 1 1 145434 538 0.00 2019-10-31 14:45:12 2019-10-31 14:46:59 t 1 1 145438 522 0.00 2019-10-31 14:49:43 2019-10-31 14:50:07 t 1 1 145439 520 0.00 2019-10-31 14:45:30 2019-10-31 14:51:08 t 1 1 145441 220 0.00 2019-10-31 11:54:01 2019-10-31 14:52:14 t 1 2 145139 522 0.00 2019-10-31 11:13:19 2019-10-31 11:13:41 t 1 1 145142 339 0.00 2019-10-31 11:15:21 2019-10-31 11:15:21 f 1 2 145148 593 0.00 2019-10-31 10:12:26 2019-10-31 11:18:48 t 1 1 145150 619 0.00 2019-10-31 11:18:52 2019-10-31 11:20:14 t 1 1 145155 593 0.00 2019-10-31 11:18:48 2019-10-31 11:23:37 t 1 1 145156 522 0.00 2019-10-31 11:23:45 2019-10-31 11:23:53 t 1 1 145157 599 0.00 2019-10-31 11:24:18 2019-10-31 11:24:31 t 1 1 145158 522 0.00 2019-10-31 11:25:06 2019-10-31 11:25:52 t 1 1 145160 514 0.00 2019-10-31 11:22:57 2019-10-31 11:26:40 t 1 1 145162 593 0.00 2019-10-31 11:23:37 2019-10-31 11:27:43 t 1 1 145163 481 0.00 2019-10-31 09:36:00 2019-10-31 11:28:23 t 1 1 145164 619 0.00 2019-10-31 11:25:10 2019-10-31 11:29:11 t 1 1 145166 485 0.00 2019-10-31 11:27:33 2019-10-31 11:29:36 t 1 1 145170 520 0.00 2019-10-31 11:31:07 2019-10-31 11:35:37 t 1 1 145171 593 0.00 2019-10-31 11:31:43 2019-10-31 11:37:51 t 1 1 145172 583 0.00 2019-10-31 11:29:23 2019-10-31 11:38:53 t 1 1 145175 522 0.00 2019-10-31 11:35:23 2019-10-31 11:41:06 t 1 1 145177 522 0.00 2019-10-31 11:41:13 2019-10-31 11:41:22 t 1 1 145182 593 0.00 2019-10-31 11:37:51 2019-10-31 11:44:13 t 1 1 145183 522 0.00 2019-10-31 11:44:42 2019-10-31 11:44:45 t 1 1 145193 514 0.00 2019-10-31 11:43:01 2019-10-31 11:53:28 t 1 1 145199 570 0.00 2019-10-31 11:50:57 2019-10-31 11:58:07 t 1 1 145202 615 0.00 2019-10-31 11:55:49 2019-10-31 12:01:07 t 1 1 145203 522 0.00 2019-10-31 12:01:40 2019-10-31 12:01:45 t 1 1 145206 522 0.00 2019-10-31 12:04:25 2019-10-31 12:04:34 t 1 1 145207 562 0.00 2019-10-31 11:32:21 2019-10-31 12:05:27 t 1 1 145208 619 0.00 2019-10-31 12:02:03 2019-10-31 12:06:19 t 1 1 145209 522 0.00 2019-10-31 12:07:05 2019-10-31 12:07:14 t 1 1 145212 498 0.00 2019-10-31 11:41:35 2019-10-31 12:09:36 t 1 2 145213 514 0.00 2019-10-31 11:53:28 2019-10-31 12:10:00 t 1 1 145215 615 0.00 2019-10-31 12:01:07 2019-10-31 12:11:45 t 1 1 145216 512 0.00 2019-10-31 11:58:17 2019-10-31 12:11:58 t 1 1 145221 520 0.00 2019-10-31 11:46:50 2019-10-31 12:16:37 t 1 1 145222 570 0.00 2019-10-31 12:12:55 2019-10-31 12:17:42 t 1 1 145223 591 0.00 2019-10-31 11:25:18 2019-10-31 12:19:41 t 1 1 145225 220 0.00 2019-10-31 12:00:49 2019-10-31 12:21:24 t 1 1 145229 522 0.00 2019-10-31 12:15:43 2019-10-31 12:23:54 t 1 1 145231 422 0.00 2019-10-31 11:31:51 2019-10-31 12:25:13 t 1 1 145232 591 0.00 2019-10-31 12:24:52 2019-10-31 12:26:21 t 1 1 145234 562 0.00 2019-10-31 12:11:07 2019-10-31 12:30:34 t 1 1 145236 581 0.00 2019-10-31 12:18:47 2019-10-31 12:31:59 t 1 1 145239 522 0.00 2019-10-31 12:34:08 2019-10-31 12:34:24 t 1 1 145250 520 0.00 2019-10-31 12:35:02 2019-10-31 12:39:47 t 1 1 145252 581 0.00 2019-10-31 12:38:18 2019-10-31 12:41:58 t 1 1 145257 514 0.00 2019-10-31 12:36:38 2019-10-31 12:46:11 t 1 1 145259 379 0.00 2019-10-31 11:53:14 2019-10-31 12:47:48 t 1 1 145260 522 0.00 2019-10-31 12:47:34 2019-10-31 12:47:57 t 1 1 145261 597 0.00 2019-10-31 12:31:18 2019-10-31 12:48:48 t 1 1 145262 430 0.00 2019-10-31 12:48:35 2019-10-31 12:49:34 t 1 1 145267 522 0.00 2019-10-31 12:53:16 2019-10-31 12:53:26 t 1 1 145273 544 0.00 2019-10-31 12:47:55 2019-10-31 12:58:01 t 1 2 145277 412 0.00 2019-10-31 01:31:01 2019-10-31 13:00:37 t 1 1 145280 430 0.00 2019-10-31 13:02:37 2019-10-31 13:02:50 t 1 1 145285 430 0.00 2019-10-31 13:04:48 2019-10-31 13:04:55 t 1 1 145288 615 0.00 2019-10-31 13:07:47 2019-10-31 13:09:53 t 1 1 145290 412 0.00 2019-10-31 13:01:39 2019-10-31 13:10:18 t 1 1 145292 570 0.00 2019-10-31 13:03:07 2019-10-31 13:10:46 t 1 1 145295 562 0.00 2019-10-31 13:09:27 2019-10-31 13:11:39 t 1 1 145297 430 0.00 2019-10-31 13:10:59 2019-10-31 13:11:56 t 1 1 145299 522 0.00 2019-10-31 13:12:28 2019-10-31 13:12:29 t 1 1 145302 583 0.00 2019-10-31 13:09:19 2019-10-31 13:13:16 t 1 1 145304 445 0.00 2019-10-31 13:04:54 2019-10-31 13:13:28 t 1 1 145309 522 0.00 2019-10-31 13:17:01 2019-10-31 13:17:41 t 1 1 145312 522 0.00 2019-10-31 13:18:23 2019-10-31 13:20:19 t 1 1 145317 597 0.00 2019-10-31 13:11:38 2019-10-31 13:22:01 t 1 1 145318 622 0.00 2019-10-31 13:11:14 2019-10-31 13:22:52 t 1 1 145319 528 0.00 2019-10-31 13:22:43 2019-10-31 13:24:24 t 1 1 145323 570 0.00 2019-10-31 13:24:24 2019-10-31 13:28:53 t 1 1 145325 522 0.00 2019-10-31 13:29:37 2019-10-31 13:30:05 t 1 1 145326 562 0.00 2019-10-31 13:31:05 2019-10-31 13:32:00 t 1 1 145330 514 0.00 2019-10-31 13:24:27 2019-10-31 13:35:27 t 1 1 145333 599 0.00 2019-10-31 13:34:26 2019-10-31 13:38:53 t 1 1 145334 615 0.00 2019-10-31 13:11:49 2019-10-31 13:39:13 t 1 1 145337 522 0.00 2019-10-31 13:40:48 2019-10-31 13:41:03 t 1 1 145340 522 0.00 2019-10-31 13:41:51 2019-10-31 13:41:58 t 1 1 145341 522 0.00 2019-10-31 13:42:08 2019-10-31 13:42:43 t 1 1 145342 615 0.00 2019-10-31 13:41:55 2019-10-31 13:43:25 t 1 1 145345 522 0.00 2019-10-31 13:43:45 2019-10-31 13:44:00 t 1 1 145347 522 0.00 2019-10-31 13:44:12 2019-10-31 13:44:25 t 1 1 145353 556 0.00 2019-10-31 13:21:13 2019-10-31 13:47:40 t 1 1 145357 622 0.00 2019-10-31 13:45:20 2019-10-31 13:48:39 t 1 1 145358 528 0.00 2019-10-31 13:48:54 2019-10-31 13:49:32 t 1 1 145359 562 0.00 2019-10-31 13:45:12 2019-10-31 13:50:23 t 1 1 145363 412 0.00 2019-10-31 13:51:13 2019-10-31 13:52:16 t 1 1 145368 445 0.00 2019-10-31 13:46:46 2019-10-31 13:57:43 t 1 1 145371 456 0.00 2019-10-31 13:42:40 2019-10-31 13:58:07 t 1 1 145372 619 0.00 2019-10-31 13:51:16 2019-10-31 13:58:54 t 1 1 145373 562 0.00 2019-10-31 13:57:54 2019-10-31 13:59:03 t 1 1 145374 485 0.00 2019-10-31 13:51:48 2019-10-31 14:00:12 t 1 1 145377 562 0.00 2019-10-31 14:00:41 2019-10-31 14:01:48 t 1 1 145379 619 0.00 2019-10-31 13:58:54 2019-10-31 14:02:39 t 1 1 145380 544 0.00 2019-10-31 12:50:32 2019-10-31 14:04:13 t 1 2 145389 619 0.00 2019-10-31 14:05:50 2019-10-31 14:11:03 t 1 1 145391 597 0.00 2019-10-31 14:04:37 2019-10-31 14:11:47 t 1 1 145392 562 0.00 2019-10-31 14:11:42 2019-10-31 14:13:22 t 1 1 145394 562 0.00 2019-10-31 14:14:52 2019-10-31 14:15:01 t 1 1 145395 481 0.00 2019-10-31 14:09:50 2019-10-31 14:15:41 t 1 1 145400 611 0.00 2019-10-31 14:08:21 2019-10-31 14:17:58 t 1 1 145401 520 0.00 2019-10-31 14:10:24 2019-10-31 14:18:27 t 1 1 145403 570 0.00 2019-10-31 14:17:29 2019-10-31 14:20:08 t 1 1 145407 528 0.00 2019-10-31 14:21:37 2019-10-31 14:22:13 t 1 1 145409 412 0.00 2019-10-31 14:23:27 2019-10-31 14:24:37 t 1 1 145412 585 0.00 2019-10-31 14:27:08 2019-10-31 14:28:22 t 1 1 145413 581 0.00 2019-10-31 14:15:59 2019-10-31 14:29:25 t 1 1 145415 412 0.00 2019-10-31 14:29:37 2019-10-31 14:31:10 t 1 1 145416 520 0.00 2019-10-31 14:21:49 2019-10-31 14:32:13 t 1 1 145419 520 0.00 2019-10-31 14:32:28 2019-10-31 14:33:48 t 1 1 145420 538 0.00 2019-10-31 14:36:35 2019-10-31 14:37:16 t 1 1 145421 562 0.00 2019-10-31 14:37:18 2019-10-31 14:37:25 t 1 1 145424 220 0.00 2019-10-31 14:41:14 2019-10-31 14:41:47 t 1 1 145425 220 0.00 2019-10-31 14:41:47 2019-10-31 14:42:22 t 1 1 145428 412 0.00 2019-10-31 14:40:23 2019-10-31 14:43:36 t 1 1 145429 220 0.00 2019-10-31 14:43:31 2019-10-31 14:44:04 t 1 1 145435 562 0.00 2019-10-31 14:47:10 2019-10-31 14:47:21 t 1 1 145437 556 0.00 2019-10-31 14:18:55 2019-10-31 14:49:48 t 1 1 145440 585 0.00 2019-10-31 14:48:34 2019-10-31 14:52:05 t 1 1 145442 520 0.00 2019-10-31 14:51:08 2019-10-31 14:53:35 t 1 1 145443 522 0.00 2019-10-31 14:54:02 2019-10-31 14:54:15 t 1 1 145445 522 0.00 2019-10-31 14:57:19 2019-10-31 14:57:41 t 1 1 145448 562 0.00 2019-10-31 15:01:25 2019-10-31 15:01:38 t 1 1 145450 585 0.00 2019-10-31 15:00:44 2019-10-31 15:04:42 t 1 1 145458 522 0.00 2019-10-31 15:13:19 2019-10-31 15:14:20 t 1 1 145460 522 0.00 2019-10-31 15:14:31 2019-10-31 15:14:45 t 1 1 145463 522 0.00 2019-10-31 15:15:50 2019-10-31 15:16:13 t 1 1 145465 581 0.00 2019-10-31 15:04:52 2019-10-31 15:19:33 t 1 1 145472 379 0.00 2019-10-31 13:07:22 2019-10-31 15:29:13 t 1 1 145474 562 0.00 2019-10-31 15:30:10 2019-10-31 15:31:12 t 1 1 145478 528 0.00 2019-10-31 15:34:20 2019-10-31 15:34:53 t 1 1 145480 522 0.00 2019-10-31 15:23:42 2019-10-31 15:36:39 t 1 1 145485 528 0.00 2019-10-31 15:42:52 2019-10-31 15:47:14 t 1 1 145494 522 0.00 2019-10-31 15:59:57 2019-10-31 16:00:41 t 1 1 145497 562 0.00 2019-10-31 16:01:21 2019-10-31 16:02:05 t 1 1 145503 516 0.00 2019-10-31 15:53:14 2019-10-31 16:04:29 t 1 1 145505 522 0.00 2019-10-31 16:04:48 2019-10-31 16:05:20 t 1 1 145510 622 0.00 2019-10-31 16:03:04 2019-10-31 16:09:56 t 1 1 145512 591 0.00 2019-10-31 15:22:27 2019-10-31 16:11:03 t 1 1 145518 220 0.00 2019-10-31 15:42:41 2019-10-31 16:15:39 t 1 2 145519 615 0.00 2019-10-31 16:08:41 2019-10-31 16:18:17 t 1 1 145523 583 0.00 2019-10-31 16:13:08 2019-10-31 16:21:26 t 1 1 145525 514 0.00 2019-10-31 16:00:49 2019-10-31 16:23:30 t 1 1 145526 422 0.00 2019-10-31 16:19:56 2019-10-31 16:23:39 t 1 1 145532 545 0.00 2019-10-31 16:25:57 2019-10-31 16:38:18 t 1 1 145535 522 0.00 2019-10-31 16:06:06 2019-10-31 16:39:46 t 1 1 145539 562 0.00 2019-10-31 16:45:27 2019-10-31 16:45:36 t 1 1 145540 562 0.00 2019-10-31 16:45:47 2019-10-31 16:46:02 t 1 1 145549 545 0.00 2019-10-31 16:38:18 2019-10-31 16:55:45 t 1 1 145554 522 0.00 2019-10-31 17:02:01 2019-10-31 17:02:07 t 1 1 145558 422 0.00 2019-10-31 16:43:36 2019-10-31 17:02:38 t 1 1 145561 522 0.00 2019-10-31 17:03:48 2019-10-31 17:03:55 t 1 1 145564 522 0.00 2019-10-31 17:04:37 2019-10-31 17:04:39 t 1 1 145566 522 0.00 2019-10-31 17:05:11 2019-10-31 17:05:13 t 1 1 145572 587 0.00 2019-10-31 17:02:06 2019-10-31 17:06:04 t 1 1 145574 522 0.00 2019-10-31 17:06:19 2019-10-31 17:06:21 t 1 1 145580 522 0.00 2019-10-31 17:05:38 2019-10-31 17:07:27 t 1 1 145584 587 0.00 2019-10-31 17:07:31 2019-10-31 17:10:22 t 1 1 145587 520 0.00 2019-10-31 16:59:49 2019-10-31 17:13:43 t 1 1 145589 520 0.00 2019-10-31 17:13:42 2019-10-31 17:14:59 t 1 1 145594 520 0.00 2019-10-31 17:17:07 2019-10-31 17:18:25 t 1 1 145596 220 0.00 2019-10-31 14:44:04 2019-10-31 17:22:18 t 1 1 145597 538 0.00 2019-10-31 17:20:05 2019-10-31 17:23:11 t 1 1 145601 562 0.00 2019-10-31 17:27:00 2019-10-31 17:27:27 t 1 1 145603 570 0.00 2019-10-31 17:07:08 2019-10-31 17:29:01 t 1 1 145611 562 0.00 2019-10-31 17:33:45 2019-10-31 17:36:55 t 1 1 145615 585 0.00 2019-10-31 17:35:39 2019-10-31 17:41:46 t 1 1 145618 562 0.00 2019-10-31 17:45:11 2019-10-31 17:45:32 t 1 1 145620 587 0.00 2019-10-31 17:16:18 2019-10-31 17:48:59 t 1 1 145621 615 0.00 2019-10-31 17:46:53 2019-10-31 17:49:51 t 1 1 145623 622 0.00 2019-10-31 17:39:50 2019-10-31 17:49:59 t 1 1 145629 514 0.00 2019-10-31 17:27:35 2019-10-31 17:55:42 t 1 1 145630 570 0.00 2019-10-31 17:49:44 2019-10-31 17:56:37 t 1 1 145633 528 0.00 2019-10-31 17:51:55 2019-10-31 17:57:22 t 1 1 145636 562 0.00 2019-10-31 17:50:35 2019-10-31 18:00:20 t 1 1 145639 562 0.00 2019-10-31 18:00:36 2019-10-31 18:01:04 t 1 1 145643 481 0.00 2019-10-31 17:49:59 2019-10-31 18:02:57 t 1 1 145646 416 0.00 2019-10-31 17:58:06 2019-10-31 18:03:23 t 1 1 145648 585 0.00 2019-10-31 17:58:20 2019-10-31 18:04:17 t 1 1 145649 514 0.00 2019-10-31 17:55:42 2019-10-31 18:05:05 t 1 1 145652 528 0.00 2019-10-31 17:58:42 2019-10-31 18:07:39 t 1 1 145657 619 0.00 2019-10-31 18:04:14 2019-10-31 18:09:48 t 1 1 145660 597 0.00 2019-10-31 18:09:24 2019-10-31 18:11:34 t 1 1 145663 512 0.00 2019-10-31 18:10:10 2019-10-31 18:13:35 t 1 1 145669 566 0.00 2019-10-31 18:15:07 2019-10-31 18:16:15 t 1 1 145670 512 0.00 2019-10-31 18:14:19 2019-10-31 18:18:19 t 1 1 145671 481 0.00 2019-10-31 18:02:57 2019-10-31 18:21:01 t 1 1 145672 562 0.00 2019-10-31 18:21:10 2019-10-31 18:21:32 t 1 1 145674 514 0.00 2019-10-31 18:05:05 2019-10-31 18:22:04 t 1 1 145676 597 0.00 2019-10-31 18:20:44 2019-10-31 18:23:21 t 1 1 145678 619 0.00 2019-10-31 18:23:07 2019-10-31 18:26:58 t 1 1 145687 481 0.00 2019-10-31 18:21:07 2019-10-31 18:37:58 t 1 1 145691 562 0.00 2019-10-31 18:40:05 2019-10-31 18:41:55 t 1 1 145694 587 0.00 2019-10-31 18:42:21 2019-10-31 18:42:33 t 1 1 145698 587 0.00 2019-10-31 18:43:22 2019-10-31 18:44:25 t 1 1 145700 562 0.00 2019-10-31 18:44:53 2019-10-31 18:47:54 t 1 1 145703 551 0.00 2019-10-31 18:47:52 2019-10-31 18:50:36 t 1 1 145704 622 0.00 2019-10-31 18:44:10 2019-10-31 18:52:42 t 1 1 145708 514 0.00 2019-10-31 18:22:04 2019-10-31 18:54:03 t 1 1 145711 545 0.00 2019-10-31 18:55:06 2019-10-31 18:56:27 t 1 1 145712 528 0.00 2019-10-31 18:56:33 2019-10-31 18:58:18 t 1 1 145713 591 0.00 2019-10-31 18:48:53 2019-10-31 18:59:30 t 1 1 145714 528 0.00 2019-10-31 18:59:25 2019-10-31 19:00:27 t 1 1 145718 528 0.00 2019-10-31 19:02:06 2019-10-31 19:03:52 t 1 1 145719 622 0.00 2019-10-31 18:52:42 2019-10-31 19:04:06 t 1 1 145723 587 0.00 2019-10-31 19:06:31 2019-10-31 19:06:51 t 1 1 145726 622 0.00 2019-10-31 19:04:06 2019-10-31 19:10:40 t 1 1 145734 545 0.00 2019-10-31 19:09:03 2019-10-31 19:17:42 t 1 1 145735 220 0.00 2019-10-31 19:12:30 2019-10-31 19:18:53 t 1 1 145737 220 0.00 2019-10-31 19:11:43 2019-10-31 19:20:26 t 1 2 145739 551 0.00 2019-10-31 19:05:41 2019-10-31 19:22:19 t 1 1 145740 528 0.00 2019-10-31 19:04:36 2019-10-31 19:22:31 t 1 1 145743 220 0.00 2019-10-31 19:20:32 2019-10-31 19:24:55 t 1 2 145745 483 0.00 2019-10-31 19:20:54 2019-10-31 19:25:30 t 1 1 145746 528 0.00 2019-10-31 19:25:55 2019-10-31 19:26:21 t 1 1 145748 622 0.00 2019-10-31 19:10:40 2019-10-31 19:27:56 t 1 1 145749 562 0.00 2019-10-31 19:27:11 2019-10-31 19:27:59 t 1 1 145449 599 0.00 2019-10-31 14:47:43 2019-10-31 15:04:33 t 1 1 145452 522 0.00 2019-10-31 15:04:46 2019-10-31 15:05:46 t 1 1 145455 516 0.00 2019-10-31 15:07:22 2019-10-31 15:09:51 t 1 1 145461 522 0.00 2019-10-31 15:15:03 2019-10-31 15:15:35 t 1 1 145462 599 0.00 2019-10-31 15:09:14 2019-10-31 15:15:57 t 1 1 145464 451 0.00 2019-10-31 15:12:27 2019-10-31 15:16:43 t 1 1 145466 520 0.00 2019-10-31 15:05:45 2019-10-31 15:21:58 t 1 1 145468 522 0.00 2019-10-31 15:20:59 2019-10-31 15:22:17 t 1 1 145470 412 0.00 2019-10-31 15:18:26 2019-10-31 15:22:31 t 1 1 145473 619 0.00 2019-10-31 15:24:14 2019-10-31 15:30:42 t 1 1 145476 412 0.00 2019-10-31 15:24:55 2019-10-31 15:33:55 t 1 1 145477 622 0.00 2019-10-31 14:15:59 2019-10-31 15:34:33 t 1 1 145479 599 0.00 2019-10-31 15:27:26 2019-10-31 15:36:12 t 1 1 145481 562 0.00 2019-10-31 15:36:41 2019-10-31 15:37:05 t 1 1 145487 562 0.00 2019-10-31 15:49:20 2019-10-31 15:52:15 t 1 1 145488 516 0.00 2019-10-31 15:26:29 2019-10-31 15:53:14 t 1 1 145490 512 0.00 2019-10-31 14:44:04 2019-10-31 15:54:11 t 1 1 145493 522 0.00 2019-10-31 15:36:39 2019-10-31 15:59:52 t 1 1 145496 562 0.00 2019-10-31 16:00:03 2019-10-31 16:00:51 t 1 1 145498 522 0.00 2019-10-31 16:00:46 2019-10-31 16:02:18 t 1 1 145499 522 0.00 2019-10-31 16:02:31 2019-10-31 16:03:04 t 1 1 145502 522 0.00 2019-10-31 16:03:11 2019-10-31 16:04:02 t 1 1 145506 522 0.00 2019-10-31 16:05:27 2019-10-31 16:05:59 t 1 1 145507 516 0.00 2019-10-31 16:04:38 2019-10-31 16:06:17 t 1 1 145509 516 0.00 2019-10-31 16:06:16 2019-10-31 16:07:18 t 1 1 145511 619 0.00 2019-10-31 16:07:20 2019-10-31 16:10:36 t 1 1 145513 597 0.00 2019-10-31 16:01:46 2019-10-31 16:11:24 t 1 1 145515 516 0.00 2019-10-31 16:07:18 2019-10-31 16:14:02 t 1 1 145516 574 0.00 2019-10-31 15:27:00 2019-10-31 16:15:13 t 1 1 145522 615 0.00 2019-10-31 16:18:17 2019-10-31 16:21:05 t 1 1 145524 562 0.00 2019-10-31 16:21:18 2019-10-31 16:21:27 t 1 1 145527 422 0.00 2019-10-31 16:23:38 2019-10-31 16:24:54 t 1 1 145529 516 0.00 2019-10-31 16:26:04 2019-10-31 16:30:32 t 1 1 145531 570 0.00 2019-10-31 16:22:56 2019-10-31 16:35:16 t 1 1 145541 514 0.00 2019-10-31 16:23:30 2019-10-31 16:46:11 t 1 1 145544 520 0.00 2019-10-31 16:43:20 2019-10-31 16:50:17 t 1 1 145545 562 0.00 2019-10-31 16:50:34 2019-10-31 16:51:08 t 1 1 145550 562 0.00 2019-10-31 16:56:39 2019-10-31 16:57:13 t 1 1 145551 622 0.00 2019-10-31 16:54:14 2019-10-31 16:59:34 t 1 1 145552 520 0.00 2019-10-31 16:53:50 2019-10-31 16:59:50 t 1 1 145556 416 0.00 2019-10-31 15:25:15 2019-10-31 17:02:29 t 1 1 145559 522 0.00 2019-10-31 17:03:05 2019-10-31 17:03:17 t 1 1 145560 522 0.00 2019-10-31 17:03:30 2019-10-31 17:03:37 t 1 1 145563 522 0.00 2019-10-31 17:04:30 2019-10-31 17:04:32 t 1 1 145568 416 0.00 2019-10-31 17:03:20 2019-10-31 17:05:42 t 1 1 145569 522 0.00 2019-10-31 17:05:45 2019-10-31 17:05:46 t 1 1 145573 597 0.00 2019-10-31 16:52:33 2019-10-31 17:06:06 t 1 1 145576 522 0.00 2019-10-31 17:06:50 2019-10-31 17:06:52 t 1 1 145579 522 0.00 2019-10-31 17:07:22 2019-10-31 17:07:22 f 1 1 145582 522 0.00 2019-10-31 17:07:15 2019-10-31 17:08:27 t 1 1 145583 622 0.00 2019-10-31 16:59:34 2019-10-31 17:09:15 t 1 1 145586 587 0.00 2019-10-31 17:10:48 2019-10-31 17:13:03 t 1 1 145590 587 0.00 2019-10-31 17:14:08 2019-10-31 17:15:49 t 1 1 145593 562 0.00 2019-10-31 17:16:11 2019-10-31 17:16:36 t 1 1 145595 619 0.00 2019-10-31 17:16:13 2019-10-31 17:18:29 t 1 1 145599 581 0.00 2019-10-31 17:17:22 2019-10-31 17:26:47 t 1 1 145600 514 0.00 2019-10-31 17:09:23 2019-10-31 17:27:14 t 1 1 145602 562 0.00 2019-10-31 17:27:34 2019-10-31 17:28:45 t 1 1 145604 564 0.00 2019-10-31 17:15:56 2019-10-31 17:30:30 t 1 1 145606 615 0.00 2019-10-31 17:21:16 2019-10-31 17:31:21 t 1 1 145608 220 0.00 2019-10-31 17:23:22 2019-10-31 17:33:18 t 1 2 145610 615 0.00 2019-10-31 17:31:35 2019-10-31 17:33:27 t 1 1 145612 562 0.00 2019-10-31 17:37:39 2019-10-31 17:38:28 t 1 1 145614 622 0.00 2019-10-31 17:33:19 2019-10-31 17:39:50 t 1 1 145617 544 0.00 2019-10-31 17:45:00 2019-10-31 17:45:12 t 1 2 145625 528 0.00 2019-10-31 17:50:15 2019-10-31 17:50:34 t 1 1 145627 516 0.00 2019-10-31 17:36:29 2019-10-31 17:54:32 t 1 1 145628 554 0.00 2019-10-31 17:53:47 2019-10-31 17:55:18 t 1 1 145632 622 0.00 2019-10-31 17:49:59 2019-10-31 17:57:14 t 1 1 145635 570 0.00 2019-10-31 17:56:37 2019-10-31 17:58:56 t 1 1 145638 456 0.00 2019-10-31 17:52:00 2019-10-31 18:00:46 t 1 1 145641 554 0.00 2019-10-31 17:55:31 2019-10-31 18:02:03 t 1 1 145644 619 0.00 2019-10-31 17:48:30 2019-10-31 18:03:06 t 1 1 145651 551 0.00 2019-10-31 17:59:45 2019-10-31 18:06:45 t 1 1 145654 564 0.00 2019-10-31 17:30:30 2019-10-31 18:08:04 t 1 1 145655 591 0.00 2019-10-31 17:51:51 2019-10-31 18:09:34 t 1 1 145658 544 0.00 2019-10-31 17:45:24 2019-10-31 18:10:29 t 1 2 145661 585 0.00 2019-10-31 18:04:16 2019-10-31 18:11:41 t 1 1 145666 220 0.00 2019-10-31 17:22:18 2019-10-31 18:15:11 t 1 1 145681 562 0.00 2019-10-31 18:29:47 2019-10-31 18:31:23 t 1 1 145684 615 0.00 2019-10-31 18:27:19 2019-10-31 18:33:44 t 1 1 145685 220 0.00 2019-10-31 15:20:13 2019-10-31 18:34:25 t 1 2 145686 556 0.00 2019-10-31 18:31:02 2019-10-31 18:35:18 t 1 1 145688 562 0.00 2019-10-31 18:37:59 2019-10-31 18:38:54 t 1 1 145689 544 0.00 2019-10-31 18:06:13 2019-10-31 18:41:18 t 1 2 145692 587 0.00 2019-10-31 18:31:28 2019-10-31 18:41:56 t 1 1 145697 622 0.00 2019-10-31 18:06:21 2019-10-31 18:44:10 t 1 1 145699 551 0.00 2019-10-31 18:22:18 2019-10-31 18:47:52 t 1 1 145706 587 0.00 2019-10-31 18:43:38 2019-10-31 18:53:00 t 1 1 145707 528 0.00 2019-10-31 18:53:23 2019-10-31 18:53:50 t 1 1 145710 562 0.00 2019-10-31 18:55:40 2019-10-31 18:56:05 t 1 1 145715 562 0.00 2019-10-31 19:00:24 2019-10-31 19:00:33 t 1 1 145717 562 0.00 2019-10-31 19:01:58 2019-10-31 19:02:24 t 1 1 145720 585 0.00 2019-10-31 18:57:05 2019-10-31 19:04:43 t 1 1 145721 551 0.00 2019-10-31 18:55:22 2019-10-31 19:05:41 t 1 1 145722 587 0.00 2019-10-31 18:53:00 2019-10-31 19:06:09 t 1 1 145728 587 0.00 2019-10-31 19:07:14 2019-10-31 19:11:25 t 1 1 145729 591 0.00 2019-10-31 18:59:32 2019-10-31 19:11:43 t 1 1 145732 512 0.00 2019-10-31 18:38:46 2019-10-31 19:16:16 t 1 1 145733 562 0.00 2019-10-31 19:16:30 2019-10-31 19:16:52 t 1 1 145738 516 0.00 2019-10-31 19:19:27 2019-10-31 19:21:28 t 1 1 145741 591 0.00 2019-10-31 19:12:06 2019-10-31 19:22:34 t 1 1 145747 514 0.00 2019-10-31 18:54:03 2019-10-31 19:26:33 t 1 1 145750 528 0.00 2019-10-31 19:27:42 2019-10-31 19:28:27 t 1 1 145751 619 0.00 2019-10-31 19:25:03 2019-10-31 19:31:29 t 1 1 145756 570 0.00 2019-10-31 18:02:37 2019-10-31 19:35:29 t 1 1 145757 551 0.00 2019-10-31 19:22:19 2019-10-31 19:35:34 t 1 1 145489 554 0.00 2019-10-31 15:38:32 2019-10-31 15:53:27 t 1 1 145491 583 0.00 2019-10-31 15:56:02 2019-10-31 15:57:45 t 1 1 145492 490 0.00 2019-10-31 15:56:01 2019-10-31 15:58:56 t 1 1 145495 514 0.00 2019-10-31 15:51:46 2019-10-31 16:00:49 t 1 1 145500 622 0.00 2019-10-31 15:34:33 2019-10-31 16:03:04 t 1 1 145501 583 0.00 2019-10-31 15:57:45 2019-10-31 16:03:16 t 1 1 145504 522 0.00 2019-10-31 16:04:09 2019-10-31 16:04:41 t 1 1 145508 325 0.00 2019-10-31 16:07:17 2019-10-31 16:07:17 f 1 2 145514 562 0.00 2019-10-31 16:06:46 2019-10-31 16:13:39 t 1 1 145517 585 0.00 2019-10-31 16:05:34 2019-10-31 16:15:23 t 1 1 145520 562 0.00 2019-10-31 16:16:48 2019-10-31 16:18:26 t 1 1 145521 422 0.00 2019-10-31 16:19:11 2019-10-31 16:20:27 t 1 1 145528 619 0.00 2019-10-31 16:22:36 2019-10-31 16:27:09 t 1 1 145530 562 0.00 2019-10-31 16:31:49 2019-10-31 16:32:13 t 1 1 145533 599 0.00 2019-10-31 16:24:16 2019-10-31 16:38:23 t 1 1 145534 562 0.00 2019-10-31 16:38:46 2019-10-31 16:39:37 t 1 1 145536 422 0.00 2019-10-31 16:24:54 2019-10-31 16:41:05 t 1 1 145537 562 0.00 2019-10-31 16:42:30 2019-10-31 16:42:50 t 1 1 145538 562 0.00 2019-10-31 16:44:31 2019-10-31 16:44:53 t 1 1 145542 562 0.00 2019-10-31 16:46:39 2019-10-31 16:47:03 t 1 1 145543 622 0.00 2019-10-31 16:09:56 2019-10-31 16:50:02 t 1 1 145546 570 0.00 2019-10-31 16:48:31 2019-10-31 16:51:36 t 1 1 145547 562 0.00 2019-10-31 16:52:56 2019-10-31 16:53:09 t 1 1 145548 622 0.00 2019-10-31 16:50:02 2019-10-31 16:54:14 t 1 1 145553 522 0.00 2019-10-31 16:39:46 2019-10-31 17:01:54 t 1 1 145555 522 0.00 2019-10-31 17:02:18 2019-10-31 17:02:20 t 1 1 145557 522 0.00 2019-10-31 17:02:25 2019-10-31 17:02:31 t 1 1 145562 514 0.00 2019-10-31 16:46:11 2019-10-31 17:04:24 t 1 1 145565 522 0.00 2019-10-31 17:04:44 2019-10-31 17:04:51 t 1 1 145567 522 0.00 2019-10-31 17:05:18 2019-10-31 17:05:25 t 1 1 145570 581 0.00 2019-10-31 16:52:08 2019-10-31 17:05:47 t 1 1 145571 522 0.00 2019-10-31 17:05:52 2019-10-31 17:05:57 t 1 1 145575 522 0.00 2019-10-31 17:06:26 2019-10-31 17:06:32 t 1 1 145577 522 0.00 2019-10-31 17:06:57 2019-10-31 17:07:02 t 1 1 145578 587 0.00 2019-10-31 17:06:54 2019-10-31 17:07:20 t 1 1 145581 562 0.00 2019-10-31 17:07:24 2019-10-31 17:07:35 t 1 1 145585 545 0.00 2019-10-31 17:08:37 2019-10-31 17:12:47 t 1 1 145588 456 0.00 2019-10-31 17:11:23 2019-10-31 17:14:01 t 1 1 145591 622 0.00 2019-10-31 17:09:15 2019-10-31 17:15:55 t 1 1 145592 564 0.00 2019-10-31 11:03:56 2019-10-31 17:15:56 t 1 1 145598 422 0.00 2019-10-31 17:02:44 2019-10-31 17:25:13 t 1 1 145605 619 0.00 2019-10-31 17:27:27 2019-10-31 17:30:48 t 1 1 145607 562 0.00 2019-10-31 17:32:00 2019-10-31 17:32:09 t 1 1 145609 622 0.00 2019-10-31 17:15:55 2019-10-31 17:33:19 t 1 1 145613 591 0.00 2019-10-31 16:37:58 2019-10-31 17:38:30 t 1 1 145616 544 0.00 2019-10-31 17:44:29 2019-10-31 17:44:43 t 1 2 145619 416 0.00 2019-10-31 17:05:46 2019-10-31 17:46:16 t 1 1 145622 481 0.00 2019-10-31 16:15:46 2019-10-31 17:49:59 t 1 1 145624 562 0.00 2019-10-31 17:49:53 2019-10-31 17:50:14 t 1 1 145626 554 0.00 2019-10-31 17:49:41 2019-10-31 17:52:56 t 1 1 145631 587 0.00 2019-10-31 17:54:00 2019-10-31 17:56:45 t 1 1 145634 416 0.00 2019-10-31 17:46:28 2019-10-31 17:57:46 t 1 1 145637 456 0.00 2019-10-31 17:59:53 2019-10-31 18:00:43 t 1 1 145640 456 0.00 2019-10-31 18:01:34 2019-10-31 18:01:47 t 1 1 145642 456 0.00 2019-10-31 18:00:46 2019-10-31 18:02:31 t 1 1 145645 412 0.00 2019-10-31 15:36:32 2019-10-31 18:03:22 t 1 1 145647 570 0.00 2019-10-31 17:58:56 2019-10-31 18:03:33 t 1 1 145650 622 0.00 2019-10-31 17:57:14 2019-10-31 18:06:21 t 1 1 145653 583 0.00 2019-10-31 18:06:17 2019-10-31 18:07:40 t 1 1 145656 583 0.00 2019-10-31 18:07:39 2019-10-31 18:09:38 t 1 1 145659 562 0.00 2019-10-31 18:10:40 2019-10-31 18:11:04 t 1 1 145662 545 0.00 2019-10-31 17:59:08 2019-10-31 18:13:00 t 1 1 145664 545 0.00 2019-10-31 18:13:00 2019-10-31 18:14:08 t 1 1 145665 566 0.00 2019-10-31 18:10:58 2019-10-31 18:15:07 t 1 1 145667 587 0.00 2019-10-31 17:57:26 2019-10-31 18:15:19 t 1 1 145668 564 0.00 2019-10-31 18:07:08 2019-10-31 18:16:10 t 1 1 145673 619 0.00 2019-10-31 18:14:13 2019-10-31 18:21:58 t 1 1 145675 551 0.00 2019-10-31 18:06:45 2019-10-31 18:22:18 t 1 1 145677 587 0.00 2019-10-31 18:15:19 2019-10-31 18:24:28 t 1 1 145679 528 0.00 2019-10-31 18:07:39 2019-10-31 18:29:45 t 1 1 145680 556 0.00 2019-10-31 14:49:48 2019-10-31 18:31:02 t 1 1 145682 587 0.00 2019-10-31 18:24:28 2019-10-31 18:31:28 t 1 1 145683 220 0.00 2019-10-31 18:14:15 2019-10-31 18:31:59 t 1 1 145690 528 0.00 2019-10-31 18:30:39 2019-10-31 18:41:29 t 1 1 145693 528 0.00 2019-10-31 18:42:05 2019-10-31 18:42:26 t 1 1 145695 585 0.00 2019-10-31 18:24:41 2019-10-31 18:43:21 t 1 1 145696 615 0.00 2019-10-31 18:33:44 2019-10-31 18:43:44 t 1 1 145701 528 0.00 2019-10-31 18:46:43 2019-10-31 18:48:03 t 1 1 145702 562 0.00 2019-10-31 18:48:53 2019-10-31 18:50:06 t 1 1 145705 619 0.00 2019-10-31 18:28:14 2019-10-31 18:52:50 t 1 1 145709 528 0.00 2019-10-31 18:55:18 2019-10-31 18:55:52 t 1 1 145716 528 0.00 2019-10-31 18:59:35 2019-10-31 19:00:35 t 1 1 145724 545 0.00 2019-10-31 18:57:55 2019-10-31 19:09:03 t 1 1 145725 481 0.00 2019-10-31 18:38:20 2019-10-31 19:09:14 t 1 1 145727 562 0.00 2019-10-31 19:10:20 2019-10-31 19:10:43 t 1 1 145730 585 0.00 2019-10-31 19:11:29 2019-10-31 19:14:44 t 1 1 145731 597 0.00 2019-10-31 19:12:09 2019-10-31 19:15:55 t 1 1 145736 619 0.00 2019-10-31 19:16:20 2019-10-31 19:20:18 t 1 1 145742 585 0.00 2019-10-31 19:17:51 2019-10-31 19:22:52 t 1 1 145744 528 0.00 2019-10-31 19:23:32 2019-10-31 19:25:13 t 1 1 145752 585 0.00 2019-10-31 19:22:29 2019-10-31 19:31:43 t 1 1 145753 528 0.00 2019-10-31 19:31:07 2019-10-31 19:32:31 t 1 1 145754 622 0.00 2019-10-31 19:27:56 2019-10-31 19:33:42 t 1 1 145755 528 0.00 2019-10-31 19:33:39 2019-10-31 19:34:20 t 1 1 145759 528 0.00 2019-10-31 19:35:31 2019-10-31 19:35:57 t 1 1 145762 220 0.00 2019-10-31 19:34:20 2019-10-31 19:38:03 t 1 1 145766 528 0.00 2019-10-31 19:39:21 2019-10-31 19:39:27 t 1 1 145774 591 0.00 2019-10-31 19:44:58 2019-10-31 19:46:46 t 1 1 145779 522 0.00 2019-10-31 19:52:20 2019-10-31 19:54:14 t 1 1 145781 416 0.00 2019-10-31 18:03:29 2019-10-31 19:55:10 t 1 1 145782 528 0.00 2019-10-31 19:54:53 2019-10-31 19:55:17 t 1 1 145785 522 0.00 2019-10-31 19:55:10 2019-10-31 19:56:24 t 1 1 145787 514 0.00 2019-10-31 19:27:01 2019-10-31 19:57:34 t 1 1 145790 570 0.00 2019-10-31 19:35:29 2019-10-31 20:00:12 t 1 1 145792 220 0.00 2019-10-31 19:55:41 2019-10-31 20:01:01 t 1 1 145794 593 0.00 2019-10-31 19:52:27 2019-10-31 20:01:33 t 1 1 145796 416 0.00 2019-10-31 19:55:10 2019-10-31 20:03:09 t 1 1 145758 619 0.00 2019-10-31 19:34:36 2019-10-31 19:35:47 t 1 1 145764 622 0.00 2019-10-31 19:33:42 2019-10-31 19:38:44 t 1 1 145765 587 0.00 2019-10-31 19:38:13 2019-10-31 19:39:12 t 1 1 145767 528 0.00 2019-10-31 19:38:41 2019-10-31 19:40:28 t 1 1 145769 545 0.00 2019-10-31 19:24:57 2019-10-31 19:42:03 t 1 1 145771 587 0.00 2019-10-31 19:39:59 2019-10-31 19:45:15 t 1 1 145776 562 0.00 2019-10-31 19:51:34 2019-10-31 19:53:24 t 1 1 145778 556 0.00 2019-10-31 18:35:18 2019-10-31 19:53:56 t 1 1 145789 587 0.00 2019-10-31 19:53:10 2019-10-31 19:59:10 t 1 1 145791 481 0.00 2019-10-31 19:09:14 2019-10-31 20:00:42 t 1 1 145793 522 0.00 2019-10-31 19:59:57 2019-10-31 20:01:16 t 1 1 145795 621 0.00 2019-10-31 19:42:42 2019-10-31 20:02:41 t 1 1 145797 538 0.00 2019-10-31 20:00:39 2019-10-31 20:03:10 t 1 1 145799 551 0.00 2019-10-31 19:45:22 2019-10-31 20:03:25 t 1 1 145802 570 0.00 2019-10-31 20:00:12 2019-10-31 20:05:41 t 1 1 145804 528 0.00 2019-10-31 20:04:37 2019-10-31 20:06:05 t 1 1 145805 562 0.00 2019-10-31 20:06:09 2019-10-31 20:06:33 t 1 1 145809 528 0.00 2019-10-31 20:07:45 2019-10-31 20:08:10 t 1 1 145812 528 0.00 2019-10-31 20:08:41 2019-10-31 20:09:11 t 1 1 145816 528 0.00 2019-10-31 20:11:25 2019-10-31 20:12:28 t 1 1 145819 522 0.00 2019-10-31 20:12:31 2019-10-31 20:12:43 t 1 1 145824 593 0.00 2019-10-31 20:07:37 2019-10-31 20:16:46 t 1 1 145826 562 0.00 2019-10-31 20:16:56 2019-10-31 20:17:19 t 1 1 145827 566 0.00 2019-10-31 20:12:30 2019-10-31 20:19:20 t 1 1 145829 585 0.00 2019-10-31 19:48:57 2019-10-31 20:20:16 t 1 1 145832 528 0.00 2019-10-31 20:21:44 2019-10-31 20:22:01 t 1 1 145836 562 0.00 2019-10-31 20:24:17 2019-10-31 20:25:26 t 1 1 145838 585 0.00 2019-10-31 20:20:46 2019-10-31 20:26:42 t 1 1 145839 556 0.00 2019-10-31 19:53:56 2019-10-31 20:26:58 t 1 1 145851 619 0.00 2019-10-31 20:20:16 2019-10-31 20:37:05 t 1 1 145852 522 0.00 2019-10-31 20:35:49 2019-10-31 20:37:11 t 1 1 145855 220 0.00 2019-10-31 20:36:27 2019-10-31 20:37:52 t 1 1 145856 562 0.00 2019-10-31 20:37:30 2019-10-31 20:38:02 t 1 1 145859 220 0.00 2019-10-31 20:12:37 2019-10-31 20:42:00 t 1 2 145861 528 0.00 2019-10-31 20:37:07 2019-10-31 20:44:13 t 1 1 145863 591 0.00 2019-10-31 20:26:01 2019-10-31 20:45:54 t 1 1 145867 220 0.00 2019-10-31 20:46:14 2019-10-31 20:48:42 t 1 1 145868 585 0.00 2019-10-31 20:26:42 2019-10-31 20:52:01 t 1 1 145873 562 0.00 2019-10-31 20:50:08 2019-10-31 20:55:42 t 1 1 145876 566 0.00 2019-10-31 20:55:21 2019-10-31 20:57:22 t 1 1 145877 522 0.00 2019-10-31 20:55:31 2019-10-31 21:00:21 t 1 1 145878 488 0.00 2019-10-31 20:52:29 2019-10-31 21:01:06 t 1 1 145882 522 0.00 2019-10-31 21:05:40 2019-10-31 21:05:43 t 1 1 145890 220 0.00 2019-10-31 21:06:08 2019-10-31 21:14:26 t 1 1 145891 589 0.00 2019-10-31 21:06:03 2019-10-31 21:15:05 t 1 1 145892 220 0.00 2019-10-31 21:14:26 2019-10-31 21:15:50 t 1 1 145894 516 0.00 2019-10-31 21:07:35 2019-10-31 21:17:26 t 1 1 145895 522 0.00 2019-10-31 21:17:37 2019-10-31 21:17:38 t 1 1 145896 556 0.00 2019-10-31 20:26:58 2019-10-31 21:18:46 t 1 1 145898 585 0.00 2019-10-31 21:15:28 2019-10-31 21:21:29 t 1 1 145902 587 0.00 2019-10-31 21:17:08 2019-10-31 21:26:52 t 1 1 145903 566 0.00 2019-10-31 21:17:30 2019-10-31 21:27:01 t 1 1 145906 591 0.00 2019-10-31 21:29:23 2019-10-31 21:31:00 t 1 1 145908 587 0.00 2019-10-31 21:26:52 2019-10-31 21:31:26 t 1 1 145909 591 0.00 2019-10-31 21:31:00 2019-10-31 21:32:36 t 1 1 145911 488 0.00 2019-10-31 21:01:06 2019-10-31 21:35:57 t 1 1 145912 522 0.00 2019-10-31 21:36:06 2019-10-31 21:36:07 t 1 1 145916 485 0.00 2019-10-31 21:38:28 2019-10-31 21:41:35 t 1 1 145920 587 0.00 2019-10-31 21:40:48 2019-10-31 21:42:16 t 1 1 145925 566 0.00 2019-10-31 21:43:44 2019-10-31 21:44:32 t 1 1 145928 220 0.00 2019-10-31 21:01:04 2019-10-31 21:45:19 t 1 2 145932 591 0.00 2019-10-31 21:48:40 2019-10-31 21:50:05 t 1 1 145936 522 0.00 2019-10-31 21:53:36 2019-10-31 21:53:44 t 1 1 145938 562 0.00 2019-10-31 21:56:34 2019-10-31 21:58:03 t 1 1 145940 587 0.00 2019-10-31 21:54:13 2019-10-31 21:59:16 t 1 1 145950 220 0.00 2019-10-31 22:02:07 2019-10-31 22:02:43 t 1 1 145953 562 0.00 2019-10-31 22:02:57 2019-10-31 22:04:29 t 1 1 145959 220 0.00 2019-10-31 22:06:05 2019-10-31 22:07:53 t 1 1 145961 619 0.00 2019-10-31 22:08:20 2019-10-31 22:08:51 t 1 1 145964 220 0.00 2019-10-31 22:07:52 2019-10-31 22:11:26 t 1 1 145969 562 0.00 2019-10-31 22:16:04 2019-10-31 22:17:29 t 1 1 145973 325 0.00 2019-10-31 22:27:27 2019-10-31 22:27:27 f 1 2 145975 562 0.00 2019-10-31 22:18:07 2019-10-31 22:28:52 t 1 1 145980 416 0.00 2019-10-31 22:18:17 2019-10-31 22:33:36 t 1 1 145983 562 0.00 2019-10-31 22:33:33 2019-10-31 22:37:40 t 1 1 145986 562 0.00 2019-10-31 22:37:47 2019-10-31 22:41:54 t 1 1 145988 416 0.00 2019-10-31 22:33:36 2019-10-31 22:44:43 t 1 1 145992 622 0.00 2019-10-31 22:31:21 2019-10-31 22:47:50 t 1 1 145995 562 0.00 2019-10-31 22:49:12 2019-10-31 22:49:42 t 1 1 145996 587 0.00 2019-10-31 22:18:17 2019-10-31 22:50:11 t 1 1 145998 562 0.00 2019-10-31 22:50:35 2019-10-31 22:51:30 t 1 1 145999 595 0.00 2019-10-31 22:45:13 2019-10-31 22:52:05 t 1 1 146001 514 0.00 2019-10-31 22:38:58 2019-10-31 22:52:30 t 1 1 146003 562 0.00 2019-10-31 22:52:11 2019-10-31 22:54:09 t 1 1 146005 587 0.00 2019-10-31 22:50:50 2019-10-31 22:54:54 t 1 1 146007 566 0.00 2019-10-31 22:47:47 2019-10-31 22:55:48 t 1 1 146009 609 0.00 2019-10-31 22:54:18 2019-10-31 22:57:13 t 1 1 146012 220 0.00 2019-10-31 22:14:42 2019-10-31 22:58:15 t 1 1 146017 220 0.00 2019-10-31 22:59:29 2019-10-31 23:00:31 t 1 1 146018 220 0.00 2019-10-31 23:00:30 2019-10-31 23:01:06 t 1 1 146021 220 0.00 2019-10-31 23:01:39 2019-10-31 23:02:16 t 1 1 146026 220 0.00 2019-10-31 23:03:33 2019-10-31 23:04:06 t 1 1 146029 220 0.00 2019-10-31 23:04:41 2019-10-31 23:04:42 t 1 1 146030 619 0.00 2019-10-31 22:56:54 2019-10-31 23:05:04 t 1 1 146032 566 0.00 2019-10-31 22:55:48 2019-10-31 23:05:37 t 1 1 146035 562 0.00 2019-10-31 23:03:26 2019-10-31 23:06:05 t 1 1 146045 220 0.00 2019-10-31 23:09:28 2019-10-31 23:10:02 t 1 1 146049 566 0.00 2019-10-31 23:05:37 2019-10-31 23:11:38 t 1 1 146050 220 0.00 2019-10-31 23:11:12 2019-10-31 23:11:49 t 1 1 146051 220 0.00 2019-10-31 23:11:48 2019-10-31 23:12:25 t 1 1 146053 220 0.00 2019-10-31 23:13:00 2019-10-31 23:13:35 t 1 1 146054 220 0.00 2019-10-31 23:13:35 2019-10-31 23:14:10 t 1 1 146055 220 0.00 2019-10-31 23:14:10 2019-10-31 23:14:43 t 1 1 146056 587 0.00 2019-10-31 23:08:52 2019-10-31 23:15:24 t 1 1 146058 490 0.00 2019-10-31 23:06:22 2019-10-31 23:15:40 t 1 1 146060 587 0.00 2019-10-31 23:16:22 2019-10-31 23:16:39 t 1 1 146062 619 0.00 2019-10-31 23:10:14 2019-10-31 23:16:50 t 1 1 145760 528 0.00 2019-10-31 19:36:26 2019-10-31 19:36:52 t 1 1 145761 587 0.00 2019-10-31 19:37:09 2019-10-31 19:37:37 t 1 1 145763 562 0.00 2019-10-31 19:38:02 2019-10-31 19:38:34 t 1 1 145768 220 0.00 2019-10-31 19:38:02 2019-10-31 19:41:20 t 1 1 145770 622 0.00 2019-10-31 19:38:44 2019-10-31 19:45:01 t 1 1 145772 551 0.00 2019-10-31 19:35:34 2019-10-31 19:45:22 t 1 1 145773 585 0.00 2019-10-31 19:32:21 2019-10-31 19:46:22 t 1 1 145775 593 0.00 2019-10-31 18:56:17 2019-10-31 19:52:27 t 1 1 145777 528 0.00 2019-10-31 19:40:31 2019-10-31 19:53:36 t 1 1 145780 522 0.00 2019-10-31 19:54:44 2019-10-31 19:54:46 t 1 1 145783 220 0.00 2019-10-31 19:41:20 2019-10-31 19:55:41 t 1 1 145784 562 0.00 2019-10-31 19:55:28 2019-10-31 19:55:57 t 1 1 145786 522 0.00 2019-10-31 19:56:35 2019-10-31 19:56:47 t 1 1 145788 562 0.00 2019-10-31 19:57:07 2019-10-31 19:58:34 t 1 1 145798 566 0.00 2019-10-31 19:52:31 2019-10-31 20:03:21 t 1 1 145800 522 0.00 2019-10-31 20:05:05 2019-10-31 20:05:18 t 1 1 145803 591 0.00 2019-10-31 20:04:06 2019-10-31 20:05:45 t 1 1 145806 619 0.00 2019-10-31 20:04:38 2019-10-31 20:06:54 t 1 1 145808 593 0.00 2019-10-31 20:01:33 2019-10-31 20:07:37 t 1 1 145813 570 0.00 2019-10-31 20:04:49 2019-10-31 20:10:42 t 1 1 145814 528 0.00 2019-10-31 20:11:30 2019-10-31 20:12:05 t 1 1 145817 566 0.00 2019-10-31 20:03:21 2019-10-31 20:12:30 t 1 1 145818 611 0.00 2019-10-31 20:04:28 2019-10-31 20:12:32 t 1 1 145821 522 0.00 2019-10-31 20:14:22 2019-10-31 20:14:42 t 1 1 145822 551 0.00 2019-10-31 20:03:25 2019-10-31 20:14:57 t 1 1 145830 528 0.00 2019-10-31 20:15:51 2019-10-31 20:20:58 t 1 1 145834 566 0.00 2019-10-31 20:19:20 2019-10-31 20:25:13 t 1 1 145837 528 0.00 2019-10-31 20:25:03 2019-10-31 20:25:28 t 1 1 145840 538 0.00 2019-10-31 20:13:46 2019-10-31 20:27:24 t 1 1 145843 514 0.00 2019-10-31 20:19:36 2019-10-31 20:31:56 t 1 1 145849 488 0.00 2019-10-31 20:09:59 2019-10-31 20:36:30 t 1 1 145850 528 0.00 2019-10-31 20:36:34 2019-10-31 20:36:43 t 1 1 145853 593 0.00 2019-10-31 20:21:09 2019-10-31 20:37:18 t 1 1 145854 481 0.00 2019-10-31 20:00:41 2019-10-31 20:37:45 t 1 1 145857 593 0.00 2019-10-31 20:37:18 2019-10-31 20:40:00 t 1 1 145858 220 0.00 2019-10-31 20:37:53 2019-10-31 20:41:20 t 1 1 145860 583 0.00 2019-10-31 20:35:08 2019-10-31 20:42:38 t 1 1 145862 488 0.00 2019-10-31 20:36:30 2019-10-31 20:44:43 t 1 1 145865 528 0.00 2019-10-31 20:47:03 2019-10-31 20:48:04 t 1 1 145869 488 0.00 2019-10-31 20:44:43 2019-10-31 20:52:29 t 1 1 145872 522 0.00 2019-10-31 20:37:11 2019-10-31 20:55:31 t 1 1 145875 562 0.00 2019-10-31 20:56:10 2019-10-31 20:56:46 t 1 1 145883 220 0.00 2019-10-31 21:03:45 2019-10-31 21:05:52 t 1 1 145887 514 0.00 2019-10-31 20:31:56 2019-10-31 21:12:25 t 1 1 145888 522 0.00 2019-10-31 21:12:33 2019-10-31 21:12:33 t 1 1 145897 597 0.00 2019-10-31 21:16:08 2019-10-31 21:19:59 t 1 1 145899 522 0.00 2019-10-31 21:22:39 2019-10-31 21:22:40 t 1 1 145913 379 0.00 2019-10-31 21:35:39 2019-10-31 21:37:22 t 1 1 145914 583 0.00 2019-10-31 21:37:05 2019-10-31 21:38:54 t 1 1 145917 597 0.00 2019-10-31 21:33:57 2019-10-31 21:41:37 t 1 1 145921 416 0.00 2019-10-31 20:03:30 2019-10-31 21:42:22 t 1 1 145922 566 0.00 2019-10-31 21:30:24 2019-10-31 21:43:09 t 1 1 145923 522 0.00 2019-10-31 21:43:01 2019-10-31 21:44:28 t 1 1 145926 562 0.00 2019-10-31 21:32:42 2019-10-31 21:44:35 t 1 1 145934 522 0.00 2019-10-31 21:45:20 2019-10-31 21:52:10 t 1 1 145935 522 0.00 2019-10-31 21:52:22 2019-10-31 21:53:28 t 1 1 145937 522 0.00 2019-10-31 21:53:56 2019-10-31 21:55:28 t 1 1 145939 522 0.00 2019-10-31 21:54:47 2019-10-31 21:58:17 t 1 1 145943 522 0.00 2019-10-31 21:58:48 2019-10-31 22:00:28 t 1 1 145945 220 0.00 2019-10-31 21:59:49 2019-10-31 22:00:55 t 1 1 145946 220 0.00 2019-10-31 22:00:55 2019-10-31 22:01:30 t 1 1 145947 220 0.00 2019-10-31 22:01:30 2019-10-31 22:02:07 t 1 1 145949 562 0.00 2019-10-31 21:59:46 2019-10-31 22:02:34 t 1 1 145951 220 0.00 2019-10-31 22:02:43 2019-10-31 22:03:51 t 1 1 145955 514 0.00 2019-10-31 21:48:47 2019-10-31 22:06:03 t 1 1 145956 220 0.00 2019-10-31 22:04:25 2019-10-31 22:06:05 t 1 1 145958 595 0.00 2019-10-31 22:05:16 2019-10-31 22:07:23 t 1 1 145963 562 0.00 2019-10-31 22:08:28 2019-10-31 22:11:08 t 1 1 145965 220 0.00 2019-10-31 22:11:26 2019-10-31 22:12:27 t 1 1 145967 220 0.00 2019-10-31 22:12:25 2019-10-31 22:14:42 t 1 1 145968 587 0.00 2019-10-31 22:02:29 2019-10-31 22:15:52 t 1 1 145970 587 0.00 2019-10-31 22:16:54 2019-10-31 22:17:54 t 1 1 145971 416 0.00 2019-10-31 21:42:22 2019-10-31 22:18:17 t 1 1 145979 545 0.00 2019-10-31 22:18:47 2019-10-31 22:31:53 t 1 1 145981 220 0.00 2019-10-31 22:00:00 2019-10-31 22:34:24 t 1 2 145984 619 0.00 2019-10-31 22:22:34 2019-10-31 22:37:43 t 1 1 145991 566 0.00 2019-10-31 22:34:50 2019-10-31 22:47:47 t 1 1 145993 619 0.00 2019-10-31 22:40:09 2019-10-31 22:48:01 t 1 1 145994 490 0.00 2019-10-31 22:40:53 2019-10-31 22:49:16 t 1 1 145997 361 0.00 2019-10-31 19:04:01 2019-10-31 22:50:16 t 1 2 146004 609 0.00 2019-10-31 22:51:32 2019-10-31 22:54:18 t 1 1 146006 490 0.00 2019-10-31 22:49:16 2019-10-31 22:55:30 t 1 1 146008 416 0.00 2019-10-31 22:44:43 2019-10-31 22:56:08 t 1 1 146011 585 0.00 2019-10-31 22:50:33 2019-10-31 22:58:10 t 1 1 146014 490 0.00 2019-10-31 22:55:30 2019-10-31 22:59:15 t 1 1 146015 220 0.00 2019-10-31 22:58:49 2019-10-31 22:59:30 t 1 1 146016 587 0.00 2019-10-31 22:57:06 2019-10-31 23:00:26 t 1 1 146022 585 0.00 2019-10-31 23:01:30 2019-10-31 23:02:54 t 1 1 146023 562 0.00 2019-10-31 22:55:14 2019-10-31 23:03:00 t 1 1 146024 220 0.00 2019-10-31 23:02:15 2019-10-31 23:03:34 t 1 1 146028 220 0.00 2019-10-31 23:04:06 2019-10-31 23:04:41 t 1 1 146034 220 0.00 2019-10-31 23:05:15 2019-10-31 23:05:55 t 1 1 146036 490 0.00 2019-10-31 22:59:15 2019-10-31 23:06:22 t 1 1 146037 220 0.00 2019-10-31 23:05:55 2019-10-31 23:06:30 t 1 1 146039 220 0.00 2019-10-31 23:07:11 2019-10-31 23:07:51 t 1 1 146041 587 0.00 2019-10-31 23:08:01 2019-10-31 23:08:25 t 1 1 146052 220 0.00 2019-10-31 23:12:24 2019-10-31 23:13:00 t 1 1 146059 220 0.00 2019-10-31 23:15:31 2019-10-31 23:16:08 t 1 1 146066 220 0.00 2019-10-31 23:17:18 2019-10-31 23:18:09 t 1 1 146070 609 0.00 2019-10-31 23:01:39 2019-10-31 23:19:15 t 1 1 146072 587 0.00 2019-10-31 23:17:10 2019-10-31 23:20:06 t 1 1 146075 514 0.00 2019-10-31 23:18:59 2019-10-31 23:21:23 t 1 1 146077 562 0.00 2019-10-31 23:22:16 2019-10-31 23:22:42 t 1 1 146079 485 0.00 2019-10-31 23:18:26 2019-10-31 23:24:10 t 1 1 146080 485 0.00 2019-10-31 23:24:10 2019-10-31 23:26:01 t 1 1 146082 587 0.00 2019-10-31 23:21:43 2019-10-31 23:26:40 t 1 1 146085 528 0.00 2019-10-31 23:14:30 2019-10-31 23:27:43 t 1 1 145801 220 0.00 2019-10-31 20:01:30 2019-10-31 20:05:20 t 1 1 145807 528 0.00 2019-10-31 20:06:23 2019-10-31 20:06:56 t 1 1 145810 522 0.00 2019-10-31 20:08:23 2019-10-31 20:08:36 t 1 1 145811 351 0.00 2019-10-31 19:59:55 2019-10-31 20:09:03 t 1 2 145815 538 0.00 2019-10-31 20:03:59 2019-10-31 20:12:09 t 1 1 145820 570 0.00 2019-10-31 20:10:42 2019-10-31 20:13:02 t 1 1 145823 570 0.00 2019-10-31 20:13:02 2019-10-31 20:16:31 t 1 1 145825 587 0.00 2019-10-31 20:02:33 2019-10-31 20:17:01 t 1 1 145828 514 0.00 2019-10-31 19:57:33 2019-10-31 20:19:36 t 1 1 145831 593 0.00 2019-10-31 20:16:46 2019-10-31 20:21:09 t 1 1 145833 522 0.00 2019-10-31 20:22:28 2019-10-31 20:22:46 t 1 1 145835 516 0.00 2019-10-31 20:16:57 2019-10-31 20:25:26 t 1 1 145841 528 0.00 2019-10-31 20:26:00 2019-10-31 20:29:26 t 1 1 145842 562 0.00 2019-10-31 20:30:00 2019-10-31 20:30:55 t 1 1 145844 528 0.00 2019-10-31 20:29:38 2019-10-31 20:32:09 t 1 1 145845 528 0.00 2019-10-31 20:32:08 2019-10-31 20:34:34 t 1 1 145846 583 0.00 2019-10-31 20:30:19 2019-10-31 20:35:08 t 1 1 145847 522 0.00 2019-10-31 20:25:13 2019-10-31 20:35:50 t 1 1 145848 528 0.00 2019-10-31 20:36:18 2019-10-31 20:36:20 t 1 1 145864 220 0.00 2019-10-31 20:41:20 2019-10-31 20:47:04 t 1 1 145866 562 0.00 2019-10-31 20:44:12 2019-10-31 20:48:37 t 1 1 145870 585 0.00 2019-10-31 20:52:01 2019-10-31 20:54:45 t 1 1 145871 566 0.00 2019-10-31 20:44:58 2019-10-31 20:55:21 t 1 1 145874 528 0.00 2019-10-31 20:48:44 2019-10-31 20:55:59 t 1 1 145879 562 0.00 2019-10-31 21:00:48 2019-10-31 21:01:24 t 1 1 145880 220 0.00 2019-10-31 21:00:34 2019-10-31 21:03:03 t 1 1 145881 522 0.00 2019-10-31 21:00:21 2019-10-31 21:04:38 t 1 1 145884 551 0.00 2019-10-31 20:14:57 2019-10-31 21:06:05 t 1 1 145885 619 0.00 2019-10-31 20:59:56 2019-10-31 21:06:41 t 1 1 145886 522 0.00 2019-10-31 21:05:59 2019-10-31 21:11:47 t 1 1 145889 487 0.00 2019-10-31 20:07:44 2019-10-31 21:12:50 t 1 2 145893 562 0.00 2019-10-31 21:10:34 2019-10-31 21:16:00 t 1 1 145900 556 0.00 2019-10-31 21:18:46 2019-10-31 21:24:56 t 1 1 145901 522 0.00 2019-10-31 21:25:55 2019-10-31 21:26:05 t 1 1 145904 514 0.00 2019-10-31 21:12:25 2019-10-31 21:28:54 t 1 1 145905 562 0.00 2019-10-31 21:21:41 2019-10-31 21:31:00 t 1 1 145907 522 0.00 2019-10-31 21:31:04 2019-10-31 21:31:05 t 1 1 145910 379 0.00 2019-10-31 19:04:22 2019-10-31 21:32:43 t 1 1 145915 587 0.00 2019-10-31 21:31:30 2019-10-31 21:39:58 t 1 1 145918 622 0.00 2019-10-31 19:45:01 2019-10-31 21:41:40 t 1 1 145919 522 0.00 2019-10-31 21:41:09 2019-10-31 21:42:10 t 1 1 145924 522 0.00 2019-10-31 21:42:55 2019-10-31 21:44:28 t 1 1 145927 481 0.00 2019-10-31 20:37:45 2019-10-31 21:44:38 t 1 1 145929 587 0.00 2019-10-31 21:43:08 2019-10-31 21:45:55 t 1 1 145930 514 0.00 2019-10-31 21:28:54 2019-10-31 21:48:47 t 1 1 145931 551 0.00 2019-10-31 21:06:05 2019-10-31 21:49:36 t 1 1 145933 585 0.00 2019-10-31 21:48:09 2019-10-31 21:51:55 t 1 1 145941 522 0.00 2019-10-31 21:59:28 2019-10-31 21:59:28 f 1 1 145942 220 0.00 2019-10-31 21:15:49 2019-10-31 21:59:49 t 1 1 145944 522 0.00 2019-10-31 21:58:29 2019-10-31 22:00:28 t 1 1 145948 587 0.00 2019-10-31 21:59:57 2019-10-31 22:02:08 t 1 1 145952 220 0.00 2019-10-31 22:03:50 2019-10-31 22:04:25 t 1 1 145954 520 0.00 2019-10-31 21:58:19 2019-10-31 22:04:46 t 1 1 145957 562 0.00 2019-10-31 22:04:36 2019-10-31 22:06:41 t 1 1 145960 622 0.00 2019-10-31 21:41:40 2019-10-31 22:08:09 t 1 1 145962 585 0.00 2019-10-31 22:04:06 2019-10-31 22:09:03 t 1 1 145966 591 0.00 2019-10-31 22:10:57 2019-10-31 22:12:51 t 1 1 145972 514 0.00 2019-10-31 22:06:03 2019-10-31 22:22:18 t 1 1 145974 520 0.00 2019-10-31 22:21:48 2019-10-31 22:28:01 t 1 1 145976 585 0.00 2019-10-31 22:14:34 2019-10-31 22:29:05 t 1 1 145977 514 0.00 2019-10-31 22:22:18 2019-10-31 22:30:47 t 1 1 145978 622 0.00 2019-10-31 22:08:09 2019-10-31 22:31:21 t 1 1 145982 528 0.00 2019-10-31 22:11:32 2019-10-31 22:35:32 t 1 1 145985 514 0.00 2019-10-31 22:30:47 2019-10-31 22:38:58 t 1 1 145987 481 0.00 2019-10-31 21:44:38 2019-10-31 22:42:10 t 1 1 145989 545 0.00 2019-10-31 22:31:53 2019-10-31 22:45:32 t 1 1 145990 481 0.00 2019-10-31 22:42:10 2019-10-31 22:46:13 t 1 1 146000 574 0.00 2019-10-31 22:37:22 2019-10-31 22:52:21 t 1 1 146002 597 0.00 2019-10-31 22:34:04 2019-10-31 22:52:37 t 1 1 146010 587 0.00 2019-10-31 22:55:57 2019-10-31 22:57:29 t 1 1 146013 220 0.00 2019-10-31 22:58:15 2019-10-31 22:58:49 t 1 1 146019 609 0.00 2019-10-31 22:57:13 2019-10-31 23:01:39 t 1 1 146020 220 0.00 2019-10-31 23:01:05 2019-10-31 23:01:39 t 1 1 146025 514 0.00 2019-10-31 22:52:30 2019-10-31 23:03:35 t 1 1 146027 220 0.00 2019-10-31 23:04:05 2019-10-31 23:04:07 t 1 1 146031 220 0.00 2019-10-31 23:04:42 2019-10-31 23:05:15 t 1 1 146033 587 0.00 2019-10-31 23:01:45 2019-10-31 23:05:43 t 1 1 146038 220 0.00 2019-10-31 23:06:30 2019-10-31 23:07:11 t 1 1 146040 622 0.00 2019-10-31 22:47:50 2019-10-31 23:07:54 t 1 1 146042 587 0.00 2019-10-31 23:06:51 2019-10-31 23:08:29 t 1 1 146043 485 0.00 2019-10-31 23:02:58 2019-10-31 23:09:10 t 1 1 146044 220 0.00 2019-10-31 23:07:50 2019-10-31 23:09:28 t 1 1 146046 607 0.00 2019-10-31 22:53:07 2019-10-31 23:10:25 t 1 1 146047 220 0.00 2019-10-31 23:10:02 2019-10-31 23:10:38 t 1 1 146048 220 0.00 2019-10-31 23:10:37 2019-10-31 23:11:12 t 1 1 146057 220 0.00 2019-10-31 23:14:43 2019-10-31 23:15:32 t 1 1 146061 220 0.00 2019-10-31 23:16:07 2019-10-31 23:16:45 t 1 1 146063 562 0.00 2019-10-31 23:08:04 2019-10-31 23:17:03 t 1 1 146064 220 0.00 2019-10-31 23:16:44 2019-10-31 23:17:19 t 1 1 146067 485 0.00 2019-10-31 23:09:10 2019-10-31 23:18:26 t 1 1 146068 220 0.00 2019-10-31 23:18:09 2019-10-31 23:18:40 t 1 1 146073 566 0.00 2019-10-31 23:11:38 2019-10-31 23:20:16 t 1 1 146074 220 0.00 2019-10-31 23:19:58 2019-10-31 23:20:32 t 1 1 146076 585 0.00 2019-10-31 23:19:03 2019-10-31 23:21:31 t 1 1 146081 490 0.00 2019-10-31 23:15:40 2019-10-31 23:26:27 t 1 1 146084 599 0.00 2019-10-31 22:47:56 2019-10-31 23:27:12 t 1 1 146090 545 0.00 2019-10-31 22:45:33 2019-10-31 23:33:49 t 1 1 146091 619 0.00 2019-10-31 23:25:21 2019-10-31 23:34:55 t 1 1 146092 566 0.00 2019-10-31 23:20:16 2019-10-31 23:35:39 t 1 1 146096 445 0.00 2019-10-31 23:12:47 2019-10-31 23:36:29 t 1 1 146103 514 0.00 2019-10-31 23:21:37 2019-10-31 23:41:20 t 1 1 146104 587 0.00 2019-10-31 23:36:06 2019-10-31 23:42:24 t 1 1 146110 545 0.00 2019-10-31 23:33:49 2019-10-31 23:47:22 t 1 1 146116 490 0.00 2019-10-31 23:45:53 2019-10-31 23:52:11 t 1 1 146120 544 0.00 2019-10-31 23:50:36 2019-11-01 00:00:41 t 1 2 146122 451 0.00 2019-10-31 23:51:21 2019-11-01 00:01:14 t 1 1 146131 562 0.00 2019-11-01 00:11:30 2019-11-01 00:11:44 t 1 1 146065 622 0.00 2019-10-31 23:07:54 2019-10-31 23:17:53 t 1 1 146069 514 0.00 2019-10-31 23:03:35 2019-10-31 23:18:50 t 1 1 146071 220 0.00 2019-10-31 23:18:40 2019-10-31 23:19:58 t 1 1 146078 609 0.00 2019-10-31 23:19:15 2019-10-31 23:23:54 t 1 1 146083 622 0.00 2019-10-31 23:17:53 2019-10-31 23:27:06 t 1 1 146087 587 0.00 2019-10-31 23:27:40 2019-10-31 23:29:25 t 1 1 146095 622 0.00 2019-10-31 23:27:06 2019-10-31 23:36:15 t 1 1 146099 451 0.00 2019-10-31 23:24:33 2019-10-31 23:40:11 t 1 1 146100 220 0.00 2019-10-31 23:37:16 2019-10-31 23:40:40 t 1 1 146101 562 0.00 2019-10-31 23:40:47 2019-10-31 23:41:08 t 1 1 146105 372 0.00 2019-10-31 23:42:28 2019-10-31 23:43:31 t 1 2 146108 595 0.00 2019-10-31 23:40:37 2019-10-31 23:45:35 t 1 1 146111 566 0.00 2019-10-31 23:35:39 2019-10-31 23:49:10 t 1 1 146115 562 0.00 2019-10-31 23:51:42 2019-10-31 23:51:53 t 1 1 146121 587 0.00 2019-10-31 23:51:49 2019-11-01 00:01:12 t 1 1 146123 566 0.00 2019-10-31 23:49:10 2019-11-01 00:01:50 t 1 1 146125 562 0.00 2019-11-01 00:02:15 2019-11-01 00:02:41 t 1 1 146126 514 0.00 2019-10-31 23:41:20 2019-11-01 00:04:28 t 1 1 146132 607 0.00 2019-10-31 23:39:59 2019-11-01 00:11:47 t 1 1 146135 619 0.00 2019-11-01 00:16:35 2019-11-01 00:18:14 t 1 1 146137 609 0.00 2019-10-31 23:29:18 2019-11-01 00:19:09 t 1 1 146140 622 0.00 2019-11-01 00:10:53 2019-11-01 00:21:53 t 1 1 146144 587 0.00 2019-11-01 00:13:06 2019-11-01 00:26:20 t 1 1 146149 514 0.00 2019-11-01 00:04:29 2019-11-01 00:33:00 t 1 1 146150 562 0.00 2019-11-01 00:33:03 2019-11-01 00:33:16 t 1 1 146153 556 0.00 2019-11-01 00:16:05 2019-11-01 00:34:05 t 1 1 146155 607 0.00 2019-11-01 00:11:47 2019-11-01 00:37:17 t 1 1 146157 566 0.00 2019-11-01 00:30:27 2019-11-01 00:38:20 t 1 1 146163 562 0.00 2019-11-01 00:43:47 2019-11-01 00:44:16 t 1 1 146165 512 0.00 2019-11-01 00:42:49 2019-11-01 00:50:14 t 1 1 146166 556 0.00 2019-11-01 00:37:09 2019-11-01 00:51:47 t 1 1 146172 526 0.00 2019-11-01 01:00:04 2019-11-01 01:01:29 t 1 2 146174 483 0.00 2019-11-01 00:45:14 2019-11-01 01:02:39 t 1 1 146176 587 0.00 2019-11-01 01:05:18 2019-11-01 01:09:02 t 1 1 146178 562 0.00 2019-11-01 01:11:44 2019-11-01 01:11:58 t 1 1 146180 556 0.00 2019-11-01 01:05:11 2019-11-01 01:13:51 t 1 1 146182 556 0.00 2019-11-01 01:13:51 2019-11-01 01:22:09 t 1 1 146183 562 0.00 2019-11-01 01:22:31 2019-11-01 01:22:42 t 1 1 146187 556 0.00 2019-11-01 01:22:09 2019-11-01 01:32:26 t 1 1 146196 587 0.00 2019-11-01 01:53:17 2019-11-01 01:55:29 t 1 1 146197 587 0.00 2019-11-01 01:55:48 2019-11-01 01:59:08 t 1 1 146199 587 0.00 2019-11-01 02:01:29 2019-11-01 02:02:52 t 1 1 146201 562 0.00 2019-11-01 02:05:33 2019-11-01 02:05:47 t 1 1 146203 617 0.00 2019-11-01 02:03:27 2019-11-01 02:08:56 t 1 1 146204 562 0.00 2019-11-01 02:16:13 2019-11-01 02:16:36 t 1 1 146206 538 0.00 2019-10-31 20:28:09 2019-11-01 02:26:36 t 1 1 146207 562 0.00 2019-11-01 02:27:00 2019-11-01 02:27:20 t 1 1 146209 220 0.00 2019-11-01 00:36:56 2019-11-01 02:32:01 t 1 2 146210 562 0.00 2019-11-01 02:37:47 2019-11-01 02:38:06 t 1 1 146212 587 0.00 2019-11-01 02:28:05 2019-11-01 02:48:21 t 1 1 146226 562 0.00 2019-11-01 04:02:23 2019-11-01 04:02:44 t 1 1 146227 562 0.00 2019-11-01 04:10:01 2019-11-01 04:10:21 t 1 1 146228 566 0.00 2019-11-01 04:14:51 2019-11-01 04:20:16 t 1 1 146233 566 0.00 2019-11-01 04:31:26 2019-11-01 04:33:01 t 1 1 146238 562 0.00 2019-11-01 05:02:14 2019-11-01 05:02:51 t 1 1 146239 562 0.00 2019-11-01 05:13:06 2019-11-01 05:13:32 t 1 1 146240 562 0.00 2019-11-01 05:23:59 2019-11-01 05:24:18 t 1 1 146242 562 0.00 2019-11-01 05:45:27 2019-11-01 05:45:47 t 1 1 146243 562 0.00 2019-11-01 05:56:11 2019-11-01 05:56:32 t 1 1 146247 379 0.00 2019-10-31 21:36:59 2019-11-01 06:05:40 t 1 1 146253 445 0.00 2019-11-01 06:09:37 2019-11-01 06:20:22 t 1 1 146254 520 0.00 2019-11-01 06:15:29 2019-11-01 06:24:09 t 1 1 146264 562 0.00 2019-11-01 06:46:51 2019-11-01 06:48:55 t 1 1 146265 562 0.00 2019-11-01 06:49:06 2019-11-01 06:49:14 t 1 1 146267 562 0.00 2019-11-01 06:58:02 2019-11-01 06:58:14 t 1 1 146273 551 0.00 2019-10-31 21:49:36 2019-11-01 07:10:25 t 1 1 146274 570 0.00 2019-11-01 07:04:56 2019-11-01 07:11:57 t 1 1 146276 619 0.00 2019-11-01 07:16:06 2019-11-01 07:18:43 t 1 1 146277 562 0.00 2019-11-01 07:19:28 2019-11-01 07:19:36 t 1 1 146280 570 0.00 2019-11-01 07:20:43 2019-11-01 07:27:30 t 1 1 146283 516 0.00 2019-11-01 07:30:11 2019-11-01 07:34:42 t 1 1 146284 570 0.00 2019-11-01 07:27:30 2019-11-01 07:35:35 t 1 1 146286 570 0.00 2019-11-01 07:35:35 2019-11-01 07:43:07 t 1 1 146292 619 0.00 2019-11-01 07:52:11 2019-11-01 08:00:48 t 1 1 146295 570 0.00 2019-11-01 07:43:07 2019-11-01 08:06:54 t 1 1 146301 562 0.00 2019-11-01 08:26:04 2019-11-01 08:26:32 t 1 1 146304 520 0.00 2019-11-01 08:30:05 2019-11-01 08:32:22 t 1 1 146306 220 0.00 2019-11-01 08:32:11 2019-11-01 08:34:44 t 1 1 146307 562 0.00 2019-11-01 08:36:58 2019-11-01 08:37:15 t 1 1 146308 220 0.00 2019-11-01 08:34:44 2019-11-01 08:40:35 t 1 1 146309 597 0.00 2019-11-01 08:32:37 2019-11-01 08:41:23 t 1 1 146311 619 0.00 2019-11-01 08:24:06 2019-11-01 08:42:29 t 1 1 146320 499 0.00 2019-11-01 08:41:20 2019-11-01 09:10:16 t 1 1 146321 551 0.00 2019-11-01 09:04:53 2019-11-01 09:11:23 t 1 1 146322 499 0.00 2019-11-01 09:12:17 2019-11-01 09:16:03 t 1 1 146323 619 0.00 2019-11-01 09:10:14 2019-11-01 09:18:46 t 1 1 146325 619 0.00 2019-11-01 09:18:46 2019-11-01 09:26:10 t 1 1 146327 562 0.00 2019-11-01 09:23:00 2019-11-01 09:29:49 t 1 1 146328 514 0.00 2019-11-01 09:29:10 2019-11-01 09:30:18 t 1 1 146332 585 0.00 2019-11-01 09:43:31 2019-11-01 09:46:38 t 1 1 146340 562 0.00 2019-11-01 09:54:53 2019-11-01 09:55:14 t 1 1 146343 485 0.00 2019-11-01 09:51:12 2019-11-01 09:58:14 t 1 1 146346 430 0.00 2019-11-01 10:02:39 2019-11-01 10:02:42 t 1 1 146348 619 0.00 2019-11-01 10:01:21 2019-11-01 10:04:33 t 1 1 146349 430 0.00 2019-11-01 10:03:49 2019-11-01 10:05:14 t 1 1 146350 562 0.00 2019-11-01 10:05:48 2019-11-01 10:05:58 t 1 1 146352 487 0.00 2019-10-31 21:24:58 2019-11-01 10:10:05 t 1 2 146356 562 0.00 2019-11-01 10:16:21 2019-11-01 10:16:43 t 1 1 146359 485 0.00 2019-11-01 09:58:14 2019-11-01 10:19:43 t 1 1 146366 566 0.00 2019-11-01 10:16:17 2019-11-01 10:29:30 t 1 1 146369 622 0.00 2019-11-01 10:23:12 2019-11-01 10:36:25 t 1 1 146371 514 0.00 2019-11-01 10:26:09 2019-11-01 10:36:51 t 1 1 146373 456 0.00 2019-11-01 09:32:17 2019-11-01 10:39:31 t 1 1 146374 566 0.00 2019-11-01 10:38:56 2019-11-01 10:39:47 t 1 1 146375 615 0.00 2019-11-01 10:36:25 2019-11-01 10:41:07 t 1 1 146376 562 0.00 2019-11-01 10:36:07 2019-11-01 10:42:47 t 1 1 146377 562 0.00 2019-11-01 10:43:45 2019-11-01 10:44:03 t 1 1 146086 609 0.00 2019-10-31 23:23:54 2019-10-31 23:29:18 t 1 1 146088 220 0.00 2019-10-31 23:20:31 2019-10-31 23:30:12 t 1 1 146089 562 0.00 2019-10-31 23:33:00 2019-10-31 23:33:29 t 1 1 146093 490 0.00 2019-10-31 23:26:27 2019-10-31 23:35:48 t 1 1 146094 587 0.00 2019-10-31 23:30:26 2019-10-31 23:36:05 t 1 1 146097 599 0.00 2019-10-31 23:37:36 2019-10-31 23:39:45 t 1 1 146098 607 0.00 2019-10-31 23:10:25 2019-10-31 23:39:59 t 1 1 146102 585 0.00 2019-10-31 23:38:58 2019-10-31 23:41:12 t 1 1 146106 622 0.00 2019-10-31 23:36:15 2019-10-31 23:43:45 t 1 1 146107 445 0.00 2019-10-31 23:36:29 2019-10-31 23:45:05 t 1 1 146109 490 0.00 2019-10-31 23:35:48 2019-10-31 23:45:53 t 1 1 146112 545 0.00 2019-10-31 23:47:22 2019-10-31 23:50:05 t 1 1 146113 451 0.00 2019-10-31 23:40:11 2019-10-31 23:51:21 t 1 1 146114 587 0.00 2019-10-31 23:42:36 2019-10-31 23:51:49 t 1 1 146117 619 0.00 2019-10-31 23:44:57 2019-10-31 23:52:50 t 1 1 146118 581 0.00 2019-10-31 23:29:46 2019-10-31 23:54:38 t 1 1 146119 490 0.00 2019-10-31 23:52:11 2019-10-31 23:58:34 t 1 1 146124 622 0.00 2019-10-31 23:43:45 2019-11-01 00:02:16 t 1 1 146127 445 0.00 2019-10-31 23:45:05 2019-11-01 00:05:24 t 1 1 146128 622 0.00 2019-11-01 00:02:16 2019-11-01 00:06:40 t 1 1 146129 566 0.00 2019-11-01 00:01:50 2019-11-01 00:09:01 t 1 1 146130 622 0.00 2019-11-01 00:06:40 2019-11-01 00:10:53 t 1 1 146133 587 0.00 2019-11-01 00:01:12 2019-11-01 00:13:06 t 1 1 146136 566 0.00 2019-11-01 00:09:01 2019-11-01 00:18:57 t 1 1 146138 591 0.00 2019-11-01 00:18:58 2019-11-01 00:19:28 t 1 1 146141 562 0.00 2019-11-01 00:22:09 2019-11-01 00:22:30 t 1 1 146142 609 0.00 2019-11-01 00:19:08 2019-11-01 00:25:15 t 1 1 146146 566 0.00 2019-11-01 00:25:22 2019-11-01 00:30:27 t 1 1 146148 220 0.00 2019-11-01 00:28:51 2019-11-01 00:32:10 t 1 1 146156 544 0.00 2019-11-01 00:08:49 2019-11-01 00:37:53 t 1 2 146159 622 0.00 2019-11-01 00:30:03 2019-11-01 00:40:23 t 1 1 146160 587 0.00 2019-11-01 00:27:23 2019-11-01 00:42:13 t 1 1 146169 220 0.00 2019-11-01 00:57:46 2019-11-01 00:59:15 t 1 1 146177 587 0.00 2019-11-01 01:09:34 2019-11-01 01:10:38 t 1 1 146184 422 0.00 2019-11-01 01:15:39 2019-11-01 01:22:52 t 1 1 146188 562 0.00 2019-11-01 01:33:03 2019-11-01 01:33:30 t 1 1 146205 587 0.00 2019-11-01 02:06:58 2019-11-01 02:25:04 t 1 1 146208 587 0.00 2019-11-01 02:25:04 2019-11-01 02:27:40 t 1 1 146211 372 0.00 2019-11-01 02:41:50 2019-11-01 02:42:51 t 1 2 146214 562 0.00 2019-11-01 02:59:20 2019-11-01 02:59:42 t 1 1 146216 587 0.00 2019-11-01 03:01:52 2019-11-01 03:04:36 t 1 1 146219 587 0.00 2019-11-01 03:28:01 2019-11-01 03:29:21 t 1 1 146222 587 0.00 2019-11-01 03:34:19 2019-11-01 03:35:11 t 1 1 146229 581 0.00 2019-11-01 04:19:20 2019-11-01 04:20:29 t 1 1 146230 562 0.00 2019-11-01 04:20:40 2019-11-01 04:21:06 t 1 1 146232 566 0.00 2019-11-01 04:20:16 2019-11-01 04:31:26 t 1 1 146234 562 0.00 2019-11-01 04:41:40 2019-11-01 04:42:01 t 1 1 146235 566 0.00 2019-11-01 04:39:46 2019-11-01 04:51:15 t 1 1 146236 562 0.00 2019-11-01 04:51:35 2019-11-01 04:51:55 t 1 1 146237 566 0.00 2019-11-01 04:51:15 2019-11-01 04:58:18 t 1 1 146244 499 0.00 2019-11-01 02:50:55 2019-11-01 05:59:30 t 1 1 146245 564 0.00 2019-11-01 00:40:12 2019-11-01 06:00:21 t 1 1 146246 520 0.00 2019-11-01 05:58:52 2019-11-01 06:05:38 t 1 1 146248 562 0.00 2019-11-01 06:06:56 2019-11-01 06:07:17 t 1 1 146249 445 0.00 2019-11-01 00:34:00 2019-11-01 06:09:37 t 1 1 146250 562 0.00 2019-11-01 06:14:34 2019-11-01 06:14:54 t 1 1 146251 520 0.00 2019-11-01 06:05:37 2019-11-01 06:15:29 t 1 1 146256 485 0.00 2019-11-01 06:16:40 2019-11-01 06:28:32 t 1 1 146257 485 0.00 2019-11-01 06:28:32 2019-11-01 06:31:54 t 1 1 146258 562 0.00 2019-11-01 06:36:06 2019-11-01 06:36:25 t 1 1 146260 516 0.00 2019-11-01 06:34:58 2019-11-01 06:43:02 t 1 1 146262 445 0.00 2019-11-01 06:39:17 2019-11-01 06:47:44 t 1 1 146263 570 0.00 2019-11-01 06:46:41 2019-11-01 06:48:46 t 1 1 146268 445 0.00 2019-11-01 06:47:44 2019-11-01 06:59:34 t 1 1 146270 566 0.00 2019-11-01 07:03:22 2019-11-01 07:06:42 t 1 1 146272 562 0.00 2019-11-01 07:08:47 2019-11-01 07:08:57 t 1 1 146281 562 0.00 2019-11-01 07:30:03 2019-11-01 07:30:11 t 1 1 146282 562 0.00 2019-11-01 07:33:35 2019-11-01 07:34:11 t 1 1 146285 562 0.00 2019-11-01 07:40:29 2019-11-01 07:41:06 t 1 1 146287 566 0.00 2019-11-01 07:38:10 2019-11-01 07:43:12 t 1 1 146288 619 0.00 2019-11-01 07:41:07 2019-11-01 07:47:21 t 1 1 146289 562 0.00 2019-11-01 07:48:22 2019-11-01 07:48:32 t 1 1 146290 562 0.00 2019-11-01 07:51:23 2019-11-01 07:51:31 t 1 1 146291 562 0.00 2019-11-01 07:54:21 2019-11-01 07:55:35 t 1 1 146293 516 0.00 2019-11-01 07:53:48 2019-11-01 08:01:16 t 1 1 146294 562 0.00 2019-11-01 08:01:59 2019-11-01 08:02:11 t 1 1 146297 562 0.00 2019-11-01 08:14:01 2019-11-01 08:14:27 t 1 1 146298 562 0.00 2019-11-01 08:16:55 2019-11-01 08:17:28 t 1 1 146300 481 0.00 2019-11-01 08:08:06 2019-11-01 08:22:52 t 1 1 146303 520 0.00 2019-11-01 08:20:08 2019-11-01 08:29:41 t 1 1 146310 570 0.00 2019-11-01 08:39:27 2019-11-01 08:42:20 t 1 1 146313 619 0.00 2019-11-01 08:51:19 2019-11-01 08:54:01 t 1 1 146314 597 0.00 2019-11-01 08:51:19 2019-11-01 08:57:34 t 1 1 146315 619 0.00 2019-11-01 08:58:29 2019-11-01 09:03:03 t 1 1 146316 551 0.00 2019-11-01 08:55:52 2019-11-01 09:04:53 t 1 1 146318 516 0.00 2019-11-01 09:03:44 2019-11-01 09:06:54 t 1 1 146319 562 0.00 2019-11-01 09:09:23 2019-11-01 09:09:55 t 1 1 146326 514 0.00 2019-11-01 00:33:39 2019-11-01 09:27:28 t 1 1 146330 615 0.00 2019-11-01 09:36:13 2019-11-01 09:39:06 t 1 1 146331 481 0.00 2019-11-01 08:22:52 2019-11-01 09:45:34 t 1 1 146335 591 0.00 2019-11-01 09:34:56 2019-11-01 09:48:13 t 1 1 146337 544 0.00 2019-11-01 09:11:11 2019-11-01 09:50:36 t 1 2 146338 430 0.00 2019-11-01 09:40:43 2019-11-01 09:51:15 t 1 1 146339 430 0.00 2019-11-01 09:52:04 2019-11-01 09:52:48 t 1 1 146341 430 0.00 2019-11-01 09:55:50 2019-11-01 09:55:57 t 1 1 146347 566 0.00 2019-11-01 09:53:07 2019-11-01 10:03:35 t 1 1 146353 619 0.00 2019-11-01 10:11:34 2019-11-01 10:15:37 t 1 1 146354 566 0.00 2019-11-01 10:03:35 2019-11-01 10:16:17 t 1 1 146355 591 0.00 2019-11-01 10:09:55 2019-11-01 10:16:29 t 1 1 146357 619 0.00 2019-11-01 10:15:40 2019-11-01 10:18:23 t 1 1 146358 591 0.00 2019-11-01 10:17:04 2019-11-01 10:19:37 t 1 1 146360 619 0.00 2019-11-01 10:19:55 2019-11-01 10:24:58 t 1 1 146361 514 0.00 2019-11-01 09:31:02 2019-11-01 10:26:10 t 1 1 146363 619 0.00 2019-11-01 10:26:39 2019-11-01 10:27:47 t 1 1 146365 615 0.00 2019-11-01 10:23:42 2019-11-01 10:28:48 t 1 1 146367 451 0.00 2019-11-01 10:21:07 2019-11-01 10:31:15 t 1 1 146368 566 0.00 2019-11-01 10:29:30 2019-11-01 10:32:16 t 1 1 146134 556 0.00 2019-10-31 21:24:56 2019-11-01 00:16:05 t 1 1 146139 574 0.00 2019-11-01 00:10:23 2019-11-01 00:21:40 t 1 1 146143 566 0.00 2019-11-01 00:18:57 2019-11-01 00:25:22 t 1 1 146145 622 0.00 2019-11-01 00:21:53 2019-11-01 00:30:03 t 1 1 146147 490 0.00 2019-11-01 00:26:05 2019-11-01 00:32:02 t 1 1 146151 514 0.00 2019-11-01 00:33:10 2019-11-01 00:33:39 t 1 1 146152 445 0.00 2019-11-01 00:05:24 2019-11-01 00:34:01 t 1 1 146154 607 0.00 2019-11-01 00:36:28 2019-11-01 00:36:28 f 1 1 146158 564 0.00 2019-10-31 20:42:59 2019-11-01 00:40:12 t 1 1 146161 512 0.00 2019-11-01 00:32:05 2019-11-01 00:42:49 t 1 1 146162 566 0.00 2019-11-01 00:38:20 2019-11-01 00:43:43 t 1 1 146164 566 0.00 2019-11-01 00:43:43 2019-11-01 00:46:41 t 1 1 146167 562 0.00 2019-11-01 00:54:43 2019-11-01 00:55:01 t 1 1 146168 456 0.00 2019-11-01 00:51:31 2019-11-01 00:58:03 t 1 1 146170 599 0.00 2019-11-01 00:56:03 2019-11-01 01:00:25 t 1 1 146171 562 0.00 2019-11-01 01:01:01 2019-11-01 01:01:12 t 1 1 146173 587 0.00 2019-11-01 00:48:52 2019-11-01 01:02:34 t 1 1 146175 556 0.00 2019-11-01 00:51:47 2019-11-01 01:05:11 t 1 1 146179 587 0.00 2019-11-01 01:10:47 2019-11-01 01:13:30 t 1 1 146181 422 0.00 2019-11-01 00:09:40 2019-11-01 01:15:39 t 1 1 146185 416 0.00 2019-10-31 22:56:08 2019-11-01 01:24:04 t 1 1 146186 422 0.00 2019-11-01 01:22:52 2019-11-01 01:30:54 t 1 1 146189 422 0.00 2019-11-01 01:30:54 2019-11-01 01:34:58 t 1 1 146190 456 0.00 2019-11-01 01:35:31 2019-11-01 01:36:39 t 1 1 146191 609 0.00 2019-11-01 00:25:15 2019-11-01 01:37:59 t 1 1 146192 562 0.00 2019-11-01 01:43:51 2019-11-01 01:44:16 t 1 1 146193 556 0.00 2019-11-01 01:32:26 2019-11-01 01:45:08 t 1 1 146194 587 0.00 2019-11-01 01:52:30 2019-11-01 01:53:03 t 1 1 146195 562 0.00 2019-11-01 01:54:40 2019-11-01 01:55:02 t 1 1 146198 587 0.00 2019-11-01 01:59:33 2019-11-01 01:59:38 t 1 1 146200 587 0.00 2019-11-01 02:02:52 2019-11-01 02:03:12 t 1 1 146202 587 0.00 2019-11-01 02:03:33 2019-11-01 02:06:46 t 1 1 146213 562 0.00 2019-11-01 02:48:33 2019-11-01 02:48:54 t 1 1 146215 587 0.00 2019-11-01 02:49:35 2019-11-01 03:01:52 t 1 1 146217 562 0.00 2019-11-01 03:10:11 2019-11-01 03:10:23 t 1 1 146218 562 0.00 2019-11-01 03:20:58 2019-11-01 03:21:17 t 1 1 146220 562 0.00 2019-11-01 03:31:45 2019-11-01 03:32:01 t 1 1 146221 587 0.00 2019-11-01 03:29:35 2019-11-01 03:34:07 t 1 1 146223 587 0.00 2019-11-01 03:35:11 2019-11-01 03:35:19 t 1 1 146224 562 0.00 2019-11-01 03:40:58 2019-11-01 03:41:13 t 1 1 146225 562 0.00 2019-11-01 03:51:36 2019-11-01 03:51:57 t 1 1 146231 562 0.00 2019-11-01 04:30:55 2019-11-01 04:31:14 t 1 1 146241 562 0.00 2019-11-01 05:34:36 2019-11-01 05:35:01 t 1 1 146252 485 0.00 2019-11-01 06:07:00 2019-11-01 06:15:39 t 1 1 146255 562 0.00 2019-11-01 06:25:22 2019-11-01 06:25:41 t 1 1 146259 445 0.00 2019-11-01 06:20:22 2019-11-01 06:39:17 t 1 1 146261 570 0.00 2019-11-01 06:38:29 2019-11-01 06:46:41 t 1 1 146266 562 0.00 2019-11-01 06:52:31 2019-11-01 06:53:42 t 1 1 146269 566 0.00 2019-11-01 07:01:24 2019-11-01 07:03:22 t 1 1 146271 445 0.00 2019-11-01 06:59:34 2019-11-01 07:07:44 t 1 1 146275 562 0.00 2019-11-01 07:12:46 2019-11-01 07:15:07 t 1 1 146278 570 0.00 2019-11-01 07:11:57 2019-11-01 07:20:43 t 1 1 146279 562 0.00 2019-11-01 07:20:09 2019-11-01 07:21:10 t 1 1 146296 562 0.00 2019-11-01 08:12:31 2019-11-01 08:12:52 t 1 1 146299 516 0.00 2019-11-01 08:06:22 2019-11-01 08:18:43 t 1 1 146302 597 0.00 2019-11-01 08:25:22 2019-11-01 08:29:23 t 1 1 146305 499 0.00 2019-11-01 06:00:22 2019-11-01 08:32:26 t 1 1 146312 562 0.00 2019-11-01 08:47:40 2019-11-01 08:48:03 t 1 1 146317 445 0.00 2019-11-01 07:07:44 2019-11-01 09:05:57 t 1 1 146324 562 0.00 2019-11-01 09:19:52 2019-11-01 09:21:13 t 1 1 146329 562 0.00 2019-11-01 09:36:22 2019-11-01 09:36:56 t 1 1 146333 562 0.00 2019-11-01 09:46:16 2019-11-01 09:46:42 t 1 1 146334 619 0.00 2019-11-01 09:41:11 2019-11-01 09:48:07 t 1 1 146336 562 0.00 2019-11-01 09:48:26 2019-11-01 09:48:49 t 1 1 146342 430 0.00 2019-11-01 09:57:22 2019-11-01 09:57:30 t 1 1 146344 591 0.00 2019-11-01 09:56:43 2019-11-01 10:01:56 t 1 1 146345 430 0.00 2019-11-01 10:02:26 2019-11-01 10:02:32 t 1 1 146351 562 0.00 2019-11-01 10:07:14 2019-11-01 10:07:59 t 1 1 146362 562 0.00 2019-11-01 10:26:12 2019-11-01 10:26:26 t 1 1 146364 562 0.00 2019-11-01 10:26:44 2019-11-01 10:28:22 t 1 1 146370 615 0.00 2019-11-01 10:28:48 2019-11-01 10:36:25 t 1 1 146372 451 0.00 2019-11-01 10:31:15 2019-11-01 10:38:31 t 1 1 146378 499 0.00 2019-11-01 10:28:49 2019-11-01 10:44:45 t 1 1 146379 562 0.00 2019-11-01 10:46:27 2019-11-01 10:47:16 t 1 1 146380 619 0.00 2019-11-01 10:38:45 2019-11-01 10:47:48 t 1 1 146381 514 0.00 2019-11-01 10:36:51 2019-11-01 10:49:02 t 1 1 146382 622 0.00 2019-11-01 10:43:08 2019-11-01 10:51:27 t 1 1 146383 498 0.00 2019-11-01 10:51:54 2019-11-01 10:51:54 f 1 2 146384 566 0.00 2019-11-01 10:39:47 2019-11-01 10:52:09 t 1 1 146385 566 0.00 2019-11-01 10:52:09 2019-11-01 10:52:26 t 1 1 146386 562 0.00 2019-11-01 10:53:09 2019-11-01 10:53:34 t 1 1 146387 498 0.00 2019-11-01 10:53:53 2019-11-01 10:53:53 f 1 2 146388 445 0.00 2019-11-01 09:07:22 2019-11-01 10:54:32 t 1 1 146389 562 0.00 2019-11-01 10:54:06 2019-11-01 10:54:51 t 1 1 146390 498 0.00 2019-11-01 10:55:25 2019-11-01 10:55:25 f 1 2 146391 508 0.00 2019-11-01 10:55:34 2019-11-01 10:55:34 f 1 2 146392 619 0.00 2019-11-01 10:56:09 2019-11-01 10:58:07 t 1 1 146393 566 0.00 2019-11-01 10:57:45 2019-11-01 10:59:30 t 1 1 146394 514 0.00 2019-11-01 10:49:02 2019-11-01 11:00:24 t 1 1 146395 545 0.00 2019-11-01 10:47:44 2019-11-01 11:01:43 t 1 1 146396 622 0.00 2019-11-01 10:51:27 2019-11-01 11:01:49 t 1 1 146397 615 0.00 2019-11-01 10:41:07 2019-11-01 11:02:05 t 1 1 146398 562 0.00 2019-11-01 11:02:05 2019-11-01 11:02:27 t 1 1 146399 622 0.00 2019-11-01 11:01:49 2019-11-01 11:07:53 t 1 1 146400 544 0.00 2019-11-01 11:01:43 2019-11-01 11:08:10 t 1 2 146401 516 0.00 2019-11-01 10:52:37 2019-11-01 11:08:52 t 1 1 146402 445 0.00 2019-11-01 10:54:32 2019-11-01 11:09:43 t 1 1 146403 562 0.00 2019-11-01 11:09:36 2019-11-01 11:10:14 t 1 1 146404 556 0.00 2019-11-01 01:45:08 2019-11-01 11:10:29 t 1 1 146405 585 0.00 2019-11-01 11:05:02 2019-11-01 11:11:15 t 1 1 146406 445 0.00 2019-11-01 11:11:34 2019-11-01 11:18:01 t 1 1 146407 562 0.00 2019-11-01 11:17:09 2019-11-01 11:18:13 t 1 1 146408 445 0.00 2019-11-01 11:18:01 2019-11-01 11:18:42 t 1 1 146409 514 0.00 2019-11-01 11:00:24 2019-11-01 11:18:56 t 1 1 146410 514 0.00 2019-11-01 11:19:00 2019-11-01 11:19:55 t 1 1 146411 481 0.00 2019-11-01 09:45:34 2019-11-01 11:20:16 t 1 1 146412 619 0.00 2019-11-01 11:14:24 2019-11-01 11:20:20 t 1 1 146413 544 0.00 2019-11-01 11:20:14 2019-11-01 11:20:47 t 1 2 146422 445 0.00 2019-11-01 11:24:38 2019-11-01 11:26:30 t 1 1 146429 551 0.00 2019-11-01 09:11:23 2019-11-01 11:37:08 t 1 1 146433 570 0.00 2019-11-01 11:35:19 2019-11-01 11:40:36 t 1 1 146439 617 0.00 2019-11-01 11:46:32 2019-11-01 11:46:33 t 1 1 146441 597 0.00 2019-11-01 11:43:06 2019-11-01 11:46:46 t 1 1 146443 514 0.00 2019-11-01 11:39:06 2019-11-01 11:47:45 t 1 1 146447 361 0.00 2019-11-01 11:48:03 2019-11-01 11:50:38 t 1 2 146449 408 0.00 2019-11-01 11:49:05 2019-11-01 11:52:01 t 1 1 146450 422 0.00 2019-11-01 11:49:37 2019-11-01 11:56:48 t 1 1 146451 562 0.00 2019-11-01 11:51:08 2019-11-01 11:57:59 t 1 1 146452 597 0.00 2019-11-01 11:57:36 2019-11-01 11:59:02 t 1 1 146458 599 0.00 2019-11-01 12:02:05 2019-11-01 12:06:26 t 1 1 146465 498 0.00 2019-11-01 10:18:58 2019-11-01 12:17:33 t 1 2 146466 422 0.00 2019-11-01 11:56:48 2019-11-01 12:18:00 t 1 1 146468 619 0.00 2019-11-01 12:17:58 2019-11-01 12:19:53 t 1 1 146469 585 0.00 2019-11-01 12:18:48 2019-11-01 12:20:31 t 1 1 146470 220 0.00 2019-11-01 12:18:02 2019-11-01 12:21:26 t 1 2 146473 570 0.00 2019-11-01 12:15:24 2019-11-01 12:25:20 t 1 1 146475 422 0.00 2019-11-01 12:18:17 2019-11-01 12:27:50 t 1 1 146477 422 0.00 2019-11-01 12:28:17 2019-11-01 12:30:04 t 1 1 146480 597 0.00 2019-11-01 12:21:00 2019-11-01 12:32:18 t 1 1 146481 422 0.00 2019-11-01 12:30:21 2019-11-01 12:35:02 t 1 1 146487 619 0.00 2019-11-01 12:42:41 2019-11-01 12:44:15 t 1 1 146494 585 0.00 2019-11-01 12:43:11 2019-11-01 12:52:44 t 1 1 146498 585 0.00 2019-11-01 12:56:07 2019-11-01 12:57:56 t 1 1 146500 585 0.00 2019-11-01 12:58:32 2019-11-01 13:01:24 t 1 1 146506 545 0.00 2019-11-01 13:04:31 2019-11-01 13:05:48 t 1 1 146508 422 0.00 2019-11-01 13:01:13 2019-11-01 13:09:41 t 1 1 146510 622 0.00 2019-11-01 13:03:02 2019-11-01 13:11:07 t 1 1 146511 516 0.00 2019-11-01 13:08:26 2019-11-01 13:15:03 t 1 1 146516 587 0.00 2019-11-01 13:17:42 2019-11-01 13:18:59 t 1 1 146518 422 0.00 2019-11-01 13:09:41 2019-11-01 13:20:35 t 1 1 146520 562 0.00 2019-11-01 13:23:06 2019-11-01 13:23:57 t 1 1 146522 622 0.00 2019-11-01 13:15:04 2019-11-01 13:26:47 t 1 1 146531 562 0.00 2019-11-01 13:33:47 2019-11-01 13:34:09 t 1 1 146535 562 0.00 2019-11-01 13:36:31 2019-11-01 13:37:45 t 1 1 146536 564 0.00 2019-11-01 10:45:55 2019-11-01 13:38:53 t 1 1 146537 619 0.00 2019-11-01 13:36:36 2019-11-01 13:39:03 t 1 1 146541 591 0.00 2019-11-01 13:41:39 2019-11-01 13:43:24 t 1 1 146543 451 0.00 2019-11-01 13:09:08 2019-11-01 13:46:44 t 1 1 146546 485 0.00 2019-11-01 13:45:26 2019-11-01 13:49:02 t 1 1 146548 562 0.00 2019-11-01 13:47:55 2019-11-01 13:53:22 t 1 1 146549 516 0.00 2019-11-01 13:51:31 2019-11-01 13:56:59 t 1 1 146550 591 0.00 2019-11-01 13:58:05 2019-11-01 13:58:25 t 1 1 146557 587 0.00 2019-11-01 14:01:12 2019-11-01 14:07:28 t 1 1 146558 562 0.00 2019-11-01 14:09:21 2019-11-01 14:09:50 t 1 1 146559 562 0.00 2019-11-01 14:10:57 2019-11-01 14:11:53 t 1 1 146560 585 0.00 2019-11-01 14:09:58 2019-11-01 14:13:30 t 1 1 146564 416 0.00 2019-11-01 13:41:12 2019-11-01 14:25:44 t 1 1 146566 619 0.00 2019-11-01 14:22:54 2019-11-01 14:28:00 t 1 1 146570 562 0.00 2019-11-01 14:32:21 2019-11-01 14:32:38 t 1 1 146574 499 0.00 2019-11-01 11:37:53 2019-11-01 14:40:19 t 1 1 146579 619 0.00 2019-11-01 14:38:19 2019-11-01 14:46:35 t 1 1 146580 615 0.00 2019-11-01 14:38:46 2019-11-01 14:48:06 t 1 1 146583 562 0.00 2019-11-01 14:53:39 2019-11-01 14:53:58 t 1 1 146584 220 0.00 2019-11-01 13:02:47 2019-11-01 14:57:08 t 1 2 146587 220 0.00 2019-11-01 14:52:51 2019-11-01 15:02:52 t 1 1 146598 562 0.00 2019-11-01 15:14:59 2019-11-01 15:15:10 t 1 1 146605 487 0.00 2019-11-01 14:54:10 2019-11-01 15:24:15 t 1 2 146607 562 0.00 2019-11-01 15:25:32 2019-11-01 15:25:51 t 1 1 146609 622 0.00 2019-11-01 15:20:46 2019-11-01 15:26:05 t 1 1 146610 220 0.00 2019-11-01 15:25:51 2019-11-01 15:26:21 t 1 1 146613 617 0.00 2019-11-01 15:26:51 2019-11-01 15:27:06 t 1 1 146614 220 0.00 2019-11-01 15:26:55 2019-11-01 15:27:27 t 1 1 146618 587 0.00 2019-11-01 15:28:25 2019-11-01 15:28:32 t 1 1 146619 617 0.00 2019-11-01 15:28:06 2019-11-01 15:29:31 t 1 1 146621 545 0.00 2019-11-01 15:21:23 2019-11-01 15:31:02 t 1 1 146624 220 0.00 2019-11-01 15:27:59 2019-11-01 15:40:07 t 1 1 146626 556 0.00 2019-11-01 14:31:41 2019-11-01 15:40:35 t 1 1 146628 587 0.00 2019-11-01 15:29:59 2019-11-01 15:41:32 t 1 1 146633 516 0.00 2019-11-01 15:41:40 2019-11-01 15:51:05 t 1 1 146636 587 0.00 2019-11-01 15:51:23 2019-11-01 15:54:35 t 1 1 146640 220 0.00 2019-11-01 15:55:11 2019-11-01 15:55:40 t 1 1 146642 545 0.00 2019-11-01 15:31:02 2019-11-01 15:57:37 t 1 1 146645 551 0.00 2019-11-01 15:52:33 2019-11-01 15:59:49 t 1 1 146648 522 0.00 2019-11-01 16:01:24 2019-11-01 16:01:24 f 1 1 146651 499 0.00 2019-11-01 14:41:09 2019-11-01 16:06:27 t 1 1 146656 562 0.00 2019-11-01 16:12:43 2019-11-01 16:13:07 t 1 1 146657 597 0.00 2019-11-01 16:09:30 2019-11-01 16:18:55 t 1 1 146665 562 0.00 2019-11-01 16:29:24 2019-11-01 16:30:04 t 1 1 146667 430 0.00 2019-11-01 16:32:51 2019-11-01 16:36:39 t 1 1 146669 562 0.00 2019-11-01 16:38:05 2019-11-01 16:38:28 t 1 1 146671 499 0.00 2019-11-01 16:06:26 2019-11-01 16:40:56 t 1 1 146672 587 0.00 2019-11-01 16:41:00 2019-11-01 16:41:19 t 1 1 146674 220 0.00 2019-11-01 16:27:08 2019-11-01 16:41:59 t 1 1 146679 526 0.00 2019-11-01 16:40:33 2019-11-01 16:44:21 t 1 1 146684 481 0.00 2019-11-01 16:01:02 2019-11-01 16:50:18 t 1 1 146685 456 0.00 2019-11-01 16:18:48 2019-11-01 16:52:05 t 1 1 146690 395 0.00 2019-11-01 16:13:36 2019-11-01 16:56:00 t 1 2 146693 562 0.00 2019-11-01 16:59:37 2019-11-01 17:00:23 t 1 1 146698 597 0.00 2019-11-01 17:05:57 2019-11-01 17:09:13 t 1 1 146699 619 0.00 2019-11-01 17:08:42 2019-11-01 17:10:13 t 1 1 146704 581 0.00 2019-11-01 17:15:58 2019-11-01 17:19:26 t 1 1 146706 591 0.00 2019-11-01 17:07:01 2019-11-01 17:24:48 t 1 1 146708 562 0.00 2019-11-01 17:27:18 2019-11-01 17:27:44 t 1 1 146714 597 0.00 2019-11-01 17:32:45 2019-11-01 17:37:02 t 1 1 146715 416 0.00 2019-11-01 16:41:46 2019-11-01 17:38:20 t 1 1 146716 562 0.00 2019-11-01 17:36:43 2019-11-01 17:39:20 t 1 1 146717 562 0.00 2019-11-01 17:41:15 2019-11-01 17:42:50 t 1 1 146718 545 0.00 2019-11-01 17:29:21 2019-11-01 17:43:43 t 1 1 146719 514 0.00 2019-11-01 16:57:52 2019-11-01 17:44:16 t 1 1 146720 516 0.00 2019-11-01 17:33:29 2019-11-01 17:45:01 t 1 1 146723 562 0.00 2019-11-01 17:50:08 2019-11-01 17:51:49 t 1 1 146725 514 0.00 2019-11-01 17:44:16 2019-11-01 17:53:23 t 1 1 146728 430 0.00 2019-11-01 17:54:35 2019-11-01 17:54:38 t 1 1 146729 290 0.00 2019-11-01 17:55:37 2019-11-01 17:55:37 f 1 2 146414 545 0.00 2019-11-01 11:01:43 2019-11-01 11:20:56 t 1 1 146418 445 0.00 2019-11-01 11:23:07 2019-11-01 11:24:11 t 1 1 146423 451 0.00 2019-11-01 11:27:06 2019-11-01 11:28:12 t 1 1 146424 574 0.00 2019-11-01 10:17:08 2019-11-01 11:29:42 t 1 1 146426 456 0.00 2019-11-01 10:39:31 2019-11-01 11:33:01 t 1 1 146434 585 0.00 2019-11-01 11:31:55 2019-11-01 11:42:25 t 1 1 146435 617 0.00 2019-11-01 11:45:28 2019-11-01 11:45:37 t 1 1 146436 619 0.00 2019-11-01 11:44:36 2019-11-01 11:46:00 t 1 1 146438 585 0.00 2019-11-01 11:42:25 2019-11-01 11:46:12 t 1 1 146440 361 0.00 2019-11-01 11:31:54 2019-11-01 11:46:39 t 1 2 146444 622 0.00 2019-11-01 11:07:53 2019-11-01 11:48:08 t 1 1 146445 562 0.00 2019-11-01 11:45:10 2019-11-01 11:48:30 t 1 1 146446 416 0.00 2019-11-01 11:33:35 2019-11-01 11:50:16 t 1 1 146448 591 0.00 2019-11-01 11:46:05 2019-11-01 11:51:39 t 1 1 146453 617 0.00 2019-11-01 11:46:41 2019-11-01 11:59:18 t 1 1 146456 562 0.00 2019-11-01 11:59:30 2019-11-01 12:04:42 t 1 1 146457 562 0.00 2019-11-01 12:04:42 2019-11-01 12:05:44 t 1 1 146460 485 0.00 2019-11-01 12:05:03 2019-11-01 12:07:05 t 1 1 146463 619 0.00 2019-11-01 12:05:26 2019-11-01 12:11:35 t 1 1 146467 551 0.00 2019-11-01 11:37:08 2019-11-01 12:18:57 t 1 1 146471 416 0.00 2019-11-01 11:50:16 2019-11-01 12:21:31 t 1 1 146478 422 0.00 2019-11-01 12:29:08 2019-11-01 12:30:15 t 1 1 146479 562 0.00 2019-11-01 12:30:01 2019-11-01 12:31:49 t 1 1 146482 516 0.00 2019-11-01 12:27:39 2019-11-01 12:36:53 t 1 1 146484 485 0.00 2019-11-01 12:36:06 2019-11-01 12:39:32 t 1 1 146485 570 0.00 2019-11-01 12:25:20 2019-11-01 12:42:49 t 1 1 146488 570 0.00 2019-11-01 12:42:49 2019-11-01 12:44:40 t 1 1 146490 445 0.00 2019-11-01 12:01:22 2019-11-01 12:46:03 t 1 1 146491 481 0.00 2019-11-01 11:20:16 2019-11-01 12:47:25 t 1 1 146492 570 0.00 2019-11-01 12:44:40 2019-11-01 12:48:15 t 1 1 146493 591 0.00 2019-11-01 11:57:52 2019-11-01 12:51:19 t 1 1 146495 562 0.00 2019-11-01 12:54:06 2019-11-01 12:54:25 t 1 1 146496 422 0.00 2019-11-01 12:35:06 2019-11-01 12:56:53 t 1 1 146497 622 0.00 2019-11-01 11:48:08 2019-11-01 12:57:02 t 1 1 146499 422 0.00 2019-11-01 12:56:53 2019-11-01 13:00:57 t 1 1 146501 520 0.00 2019-11-01 12:37:21 2019-11-01 13:01:44 t 1 1 146503 220 0.00 2019-11-01 12:55:19 2019-11-01 13:03:42 t 1 2 146504 545 0.00 2019-11-01 11:20:56 2019-11-01 13:04:31 t 1 1 146512 622 0.00 2019-11-01 13:11:07 2019-11-01 13:15:04 t 1 1 146513 597 0.00 2019-11-01 12:50:13 2019-11-01 13:15:51 t 1 1 146521 597 0.00 2019-11-01 13:21:30 2019-11-01 13:24:40 t 1 1 146523 587 0.00 2019-11-01 13:24:51 2019-11-01 13:27:40 t 1 1 146525 481 0.00 2019-11-01 12:47:25 2019-11-01 13:28:30 t 1 1 146527 619 0.00 2019-11-01 13:28:07 2019-11-01 13:31:04 t 1 1 146529 587 0.00 2019-11-01 13:29:00 2019-11-01 13:32:32 t 1 1 146532 481 0.00 2019-11-01 13:28:30 2019-11-01 13:34:29 t 1 1 146538 545 0.00 2019-11-01 13:30:13 2019-11-01 13:39:10 t 1 1 146540 220 0.00 2019-11-01 13:36:57 2019-11-01 13:42:17 t 1 2 146542 562 0.00 2019-11-01 13:43:54 2019-11-01 13:44:53 t 1 1 146545 587 0.00 2019-11-01 13:46:49 2019-11-01 13:48:34 t 1 1 146547 451 0.00 2019-11-01 13:46:44 2019-11-01 13:49:06 t 1 1 146551 587 0.00 2019-11-01 13:49:27 2019-11-01 13:58:31 t 1 1 146555 422 0.00 2019-11-01 13:20:35 2019-11-01 14:03:58 t 1 1 146561 562 0.00 2019-11-01 14:21:48 2019-11-01 14:22:03 t 1 1 146562 451 0.00 2019-11-01 14:09:32 2019-11-01 14:23:51 t 1 1 146563 514 0.00 2019-11-01 13:32:58 2019-11-01 14:25:01 t 1 1 146568 562 0.00 2019-11-01 14:30:09 2019-11-01 14:31:04 t 1 1 146572 451 0.00 2019-11-01 14:23:51 2019-11-01 14:35:51 t 1 1 146573 220 0.00 2019-11-01 14:06:05 2019-11-01 14:38:50 t 1 2 146577 451 0.00 2019-11-01 14:35:51 2019-11-01 14:44:00 t 1 1 146585 622 0.00 2019-11-01 13:35:38 2019-11-01 15:00:26 t 1 1 146586 516 0.00 2019-11-01 14:34:05 2019-11-01 15:01:41 t 1 1 146588 587 0.00 2019-11-01 14:37:54 2019-11-01 15:02:54 t 1 1 146589 445 0.00 2019-11-01 14:05:26 2019-11-01 15:03:34 t 1 1 146592 622 0.00 2019-11-01 15:00:26 2019-11-01 15:06:39 t 1 1 146593 488 0.00 2019-11-01 15:00:01 2019-11-01 15:08:31 t 1 1 146595 488 0.00 2019-11-01 15:09:29 2019-11-01 15:10:55 t 1 1 146596 622 0.00 2019-11-01 15:06:39 2019-11-01 15:12:23 t 1 1 146600 617 0.00 2019-11-01 14:57:27 2019-11-01 15:18:19 t 1 1 146601 512 0.00 2019-11-01 15:18:17 2019-11-01 15:19:42 t 1 1 146602 622 0.00 2019-11-01 15:12:23 2019-11-01 15:20:46 t 1 1 146603 545 0.00 2019-11-01 15:09:24 2019-11-01 15:21:23 t 1 1 146604 617 0.00 2019-11-01 15:23:00 2019-11-01 15:23:06 t 1 1 146606 512 0.00 2019-11-01 15:19:42 2019-11-01 15:24:48 t 1 1 146608 220 0.00 2019-11-01 15:10:02 2019-11-01 15:25:51 t 1 1 146611 617 0.00 2019-11-01 15:23:05 2019-11-01 15:26:23 t 1 1 146612 220 0.00 2019-11-01 15:26:20 2019-11-01 15:26:55 t 1 1 146615 617 0.00 2019-11-01 15:27:14 2019-11-01 15:27:39 t 1 1 146616 220 0.00 2019-11-01 15:27:27 2019-11-01 15:27:59 t 1 1 146617 587 0.00 2019-11-01 15:08:18 2019-11-01 15:28:22 t 1 1 146620 587 0.00 2019-11-01 15:28:47 2019-11-01 15:29:54 t 1 1 146625 562 0.00 2019-11-01 15:39:17 2019-11-01 15:40:19 t 1 1 146629 619 0.00 2019-11-01 15:42:42 2019-11-01 15:46:21 t 1 1 146631 587 0.00 2019-11-01 15:41:36 2019-11-01 15:47:04 t 1 1 146632 562 0.00 2019-11-01 15:49:33 2019-11-01 15:49:53 t 1 1 146634 587 0.00 2019-11-01 15:47:11 2019-11-01 15:51:23 t 1 1 146638 562 0.00 2019-11-01 15:54:46 2019-11-01 15:55:20 t 1 1 146644 562 0.00 2019-11-01 15:58:32 2019-11-01 15:58:48 t 1 1 146646 481 0.00 2019-11-01 13:33:50 2019-11-01 16:00:55 t 1 1 146647 551 0.00 2019-11-01 15:59:49 2019-11-01 16:01:21 t 1 1 146652 564 0.00 2019-11-01 13:38:53 2019-11-01 16:09:26 t 1 1 146655 311 0.00 2019-11-01 16:04:28 2019-11-01 16:12:48 t 1 2 146659 581 0.00 2019-11-01 16:04:51 2019-11-01 16:21:06 t 1 1 146660 516 0.00 2019-11-01 16:16:32 2019-11-01 16:22:31 t 1 1 146662 522 0.00 2019-11-01 16:26:38 2019-11-01 16:26:38 f 1 1 146664 545 0.00 2019-11-01 16:20:26 2019-11-01 16:28:17 t 1 1 146676 587 0.00 2019-11-01 16:41:32 2019-11-01 16:43:03 t 1 1 146677 587 0.00 2019-11-01 16:43:10 2019-11-01 16:43:25 t 1 1 146680 562 0.00 2019-11-01 16:43:33 2019-11-01 16:44:38 t 1 1 146686 562 0.00 2019-11-01 16:51:47 2019-11-01 16:52:17 t 1 1 146689 587 0.00 2019-11-01 16:45:00 2019-11-01 16:54:31 t 1 1 146692 622 0.00 2019-11-01 16:49:26 2019-11-01 16:57:00 t 1 1 146696 562 0.00 2019-11-01 17:04:16 2019-11-01 17:06:10 t 1 1 146701 587 0.00 2019-11-01 16:54:31 2019-11-01 17:12:15 t 1 1 146702 585 0.00 2019-11-01 17:13:18 2019-11-01 17:15:18 t 1 1 146707 622 0.00 2019-11-01 16:57:00 2019-11-01 17:27:09 t 1 1 146710 481 0.00 2019-11-01 16:53:04 2019-11-01 17:28:37 t 1 1 146415 514 0.00 2019-11-01 11:19:58 2019-11-01 11:21:21 t 1 1 146416 514 0.00 2019-11-01 11:21:21 2019-11-01 11:22:12 t 1 1 146417 445 0.00 2019-11-01 11:18:41 2019-11-01 11:23:08 t 1 1 146419 562 0.00 2019-11-01 11:24:27 2019-11-01 11:24:53 t 1 1 146420 445 0.00 2019-11-01 11:24:14 2019-11-01 11:25:16 t 1 1 146421 562 0.00 2019-11-01 11:26:04 2019-11-01 11:26:16 t 1 1 146425 585 0.00 2019-11-01 11:29:32 2019-11-01 11:30:59 t 1 1 146427 416 0.00 2019-11-01 11:13:01 2019-11-01 11:33:35 t 1 1 146428 562 0.00 2019-11-01 11:36:37 2019-11-01 11:36:58 t 1 1 146430 499 0.00 2019-11-01 10:45:08 2019-11-01 11:37:39 t 1 1 146431 514 0.00 2019-11-01 11:22:11 2019-11-01 11:39:07 t 1 1 146432 562 0.00 2019-11-01 11:38:51 2019-11-01 11:40:10 t 1 1 146437 591 0.00 2019-11-01 10:21:06 2019-11-01 11:46:05 t 1 1 146442 617 0.00 2019-11-01 11:45:42 2019-11-01 11:47:30 t 1 1 146454 597 0.00 2019-11-01 11:59:02 2019-11-01 12:00:05 t 1 1 146455 599 0.00 2019-11-01 11:47:47 2019-11-01 12:03:00 t 1 1 146459 599 0.00 2019-11-01 12:06:30 2019-11-01 12:06:33 t 1 1 146461 516 0.00 2019-11-01 11:50:40 2019-11-01 12:07:55 t 1 1 146462 514 0.00 2019-11-01 11:48:30 2019-11-01 12:09:14 t 1 1 146464 570 0.00 2019-11-01 12:10:05 2019-11-01 12:15:24 t 1 1 146472 562 0.00 2019-11-01 12:13:13 2019-11-01 12:23:58 t 1 1 146474 562 0.00 2019-11-01 12:23:58 2019-11-01 12:27:42 t 1 1 146476 562 0.00 2019-11-01 12:28:31 2019-11-01 12:28:41 t 1 1 146483 562 0.00 2019-11-01 12:34:05 2019-11-01 12:37:59 t 1 1 146486 585 0.00 2019-11-01 12:29:31 2019-11-01 12:43:11 t 1 1 146489 562 0.00 2019-11-01 12:43:15 2019-11-01 12:45:54 t 1 1 146502 622 0.00 2019-11-01 12:57:02 2019-11-01 13:03:02 t 1 1 146505 562 0.00 2019-11-01 13:04:46 2019-11-01 13:05:12 t 1 1 146507 451 0.00 2019-11-01 12:43:15 2019-11-01 13:09:09 t 1 1 146509 619 0.00 2019-11-01 13:08:33 2019-11-01 13:09:56 t 1 1 146514 562 0.00 2019-11-01 13:15:45 2019-11-01 13:15:56 t 1 1 146515 587 0.00 2019-11-01 13:14:19 2019-11-01 13:17:20 t 1 1 146517 587 0.00 2019-11-01 13:19:20 2019-11-01 13:19:40 t 1 1 146519 587 0.00 2019-11-01 13:19:54 2019-11-01 13:22:00 t 1 1 146524 587 0.00 2019-11-01 13:28:04 2019-11-01 13:28:17 t 1 1 146526 587 0.00 2019-11-01 13:28:41 2019-11-01 13:29:45 t 1 1 146528 597 0.00 2019-11-01 13:26:54 2019-11-01 13:31:15 t 1 1 146530 591 0.00 2019-11-01 13:13:27 2019-11-01 13:33:26 t 1 1 146533 416 0.00 2019-11-01 12:28:14 2019-11-01 13:34:48 t 1 1 146534 622 0.00 2019-11-01 13:26:47 2019-11-01 13:35:38 t 1 1 146539 562 0.00 2019-11-01 13:40:10 2019-11-01 13:41:40 t 1 1 146544 587 0.00 2019-11-01 13:33:01 2019-11-01 13:46:49 t 1 1 146552 562 0.00 2019-11-01 13:58:38 2019-11-01 13:59:06 t 1 1 146553 587 0.00 2019-11-01 13:58:42 2019-11-01 14:00:54 t 1 1 146554 562 0.00 2019-11-01 14:02:36 2019-11-01 14:03:23 t 1 1 146556 445 0.00 2019-11-01 12:46:22 2019-11-01 14:05:26 t 1 1 146565 514 0.00 2019-11-01 14:25:18 2019-11-01 14:26:37 t 1 1 146567 587 0.00 2019-11-01 14:07:41 2019-11-01 14:30:24 t 1 1 146569 556 0.00 2019-11-01 11:10:29 2019-11-01 14:31:38 t 1 1 146571 395 0.00 2019-11-01 13:44:34 2019-11-01 14:32:57 t 1 2 146575 562 0.00 2019-11-01 14:37:27 2019-11-01 14:42:06 t 1 1 146576 562 0.00 2019-11-01 14:43:04 2019-11-01 14:43:22 t 1 1 146578 597 0.00 2019-11-01 14:40:38 2019-11-01 14:44:54 t 1 1 146581 220 0.00 2019-11-01 14:38:52 2019-11-01 14:48:58 t 1 2 146582 311 0.00 2019-11-01 14:27:05 2019-11-01 14:50:28 t 1 2 146590 562 0.00 2019-11-01 15:04:21 2019-11-01 15:04:31 t 1 1 146591 587 0.00 2019-11-01 15:02:54 2019-11-01 15:05:51 t 1 1 146594 488 0.00 2019-11-01 15:08:31 2019-11-01 15:09:29 t 1 1 146597 488 0.00 2019-11-01 15:10:54 2019-11-01 15:14:38 t 1 1 146599 562 0.00 2019-11-01 15:18:01 2019-11-01 15:18:10 t 1 1 146622 619 0.00 2019-11-01 15:31:44 2019-11-01 15:33:37 t 1 1 146623 562 0.00 2019-11-01 15:36:08 2019-11-01 15:36:27 t 1 1 146627 617 0.00 2019-11-01 15:28:17 2019-11-01 15:40:57 t 1 1 146630 562 0.00 2019-11-01 15:46:13 2019-11-01 15:46:33 t 1 1 146635 551 0.00 2019-11-01 15:46:19 2019-11-01 15:52:33 t 1 1 146637 562 0.00 2019-11-01 15:50:29 2019-11-01 15:54:40 t 1 1 146639 587 0.00 2019-11-01 15:54:35 2019-11-01 15:55:37 t 1 1 146641 562 0.00 2019-11-01 15:55:47 2019-11-01 15:57:31 t 1 1 146643 587 0.00 2019-11-01 15:56:46 2019-11-01 15:58:07 t 1 1 146649 522 0.00 2019-11-01 16:01:30 2019-11-01 16:01:30 f 1 1 146650 562 0.00 2019-11-01 16:01:53 2019-11-01 16:02:13 t 1 1 146653 597 0.00 2019-11-01 15:48:47 2019-11-01 16:10:26 t 1 1 146654 619 0.00 2019-11-01 16:03:50 2019-11-01 16:12:02 t 1 1 146658 562 0.00 2019-11-01 16:17:27 2019-11-01 16:19:10 t 1 1 146661 526 0.00 2019-11-01 16:15:08 2019-11-01 16:26:25 t 1 1 146663 562 0.00 2019-11-01 16:27:26 2019-11-01 16:27:46 t 1 1 146666 597 0.00 2019-11-01 16:25:49 2019-11-01 16:31:04 t 1 1 146668 416 0.00 2019-11-01 14:24:48 2019-11-01 16:38:27 t 1 1 146670 587 0.00 2019-11-01 16:32:06 2019-11-01 16:40:52 t 1 1 146673 430 0.00 2019-11-01 16:37:39 2019-11-01 16:41:37 t 1 1 146675 430 0.00 2019-11-01 16:41:39 2019-11-01 16:42:19 t 1 1 146678 597 0.00 2019-11-01 16:34:25 2019-11-01 16:44:08 t 1 1 146681 587 0.00 2019-11-01 16:43:29 2019-11-01 16:44:46 t 1 1 146682 591 0.00 2019-11-01 16:43:21 2019-11-01 16:47:52 t 1 1 146683 622 0.00 2019-11-01 15:26:05 2019-11-01 16:49:26 t 1 1 146687 481 0.00 2019-11-01 16:50:50 2019-11-01 16:52:40 t 1 1 146688 581 0.00 2019-11-01 16:21:06 2019-11-01 16:53:12 t 1 1 146691 220 0.00 2019-11-01 16:41:59 2019-11-01 16:57:00 t 1 1 146694 220 0.00 2019-11-01 16:51:43 2019-11-01 17:01:48 t 1 2 146695 220 0.00 2019-11-01 16:57:00 2019-11-01 17:03:10 t 1 1 146697 220 0.00 2019-11-01 17:03:10 2019-11-01 17:06:44 t 1 1 146700 585 0.00 2019-11-01 17:07:25 2019-11-01 17:10:57 t 1 1 146703 562 0.00 2019-11-01 17:16:30 2019-11-01 17:16:55 t 1 1 146705 556 0.00 2019-11-01 15:40:35 2019-11-01 17:21:02 t 1 1 146709 412 0.00 2019-11-01 08:47:33 2019-11-01 17:28:21 t 1 1 146722 562 0.00 2019-11-01 17:47:46 2019-11-01 17:49:14 t 1 1 146733 430 0.00 2019-11-01 17:59:27 2019-11-01 17:59:33 t 1 1 146741 220 0.00 2019-11-01 18:03:36 2019-11-01 18:09:59 t 1 2 146742 430 0.00 2019-11-01 18:03:54 2019-11-01 18:12:10 t 1 1 146748 412 0.00 2019-11-01 17:28:21 2019-11-01 18:17:03 t 1 1 146752 430 0.00 2019-11-01 18:19:45 2019-11-01 18:19:51 t 1 1 146754 591 0.00 2019-11-01 17:49:48 2019-11-01 18:20:25 t 1 1 146759 430 0.00 2019-11-01 18:23:33 2019-11-01 18:23:44 t 1 1 146760 430 0.00 2019-11-01 18:24:33 2019-11-01 18:24:46 t 1 1 146762 430 0.00 2019-11-01 18:26:19 2019-11-01 18:27:30 t 1 1 146766 562 0.00 2019-11-01 18:28:02 2019-11-01 18:28:27 t 1 1 146769 597 0.00 2019-11-01 18:26:40 2019-11-01 18:29:18 t 1 1 146711 591 0.00 2019-11-01 17:24:48 2019-11-01 17:29:01 t 1 1 146712 538 0.00 2019-11-01 15:45:52 2019-11-01 17:33:33 t 1 1 146713 518 0.00 2019-11-01 13:38:12 2019-11-01 17:36:51 t 1 2 146721 570 0.00 2019-11-01 17:37:51 2019-11-01 17:47:40 t 1 1 146724 622 0.00 2019-11-01 17:27:09 2019-11-01 17:53:16 t 1 1 146726 430 0.00 2019-11-01 17:38:38 2019-11-01 17:53:49 t 1 1 146727 430 0.00 2019-11-01 17:54:23 2019-11-01 17:54:28 t 1 1 146731 562 0.00 2019-11-01 17:54:54 2019-11-01 17:58:56 t 1 1 146734 430 0.00 2019-11-01 18:00:09 2019-11-01 18:00:16 t 1 1 146739 587 0.00 2019-11-01 18:05:36 2019-11-01 18:07:25 t 1 1 146740 619 0.00 2019-11-01 18:03:42 2019-11-01 18:08:39 t 1 1 146746 499 0.00 2019-11-01 18:06:11 2019-11-01 18:16:53 t 1 1 146747 587 0.00 2019-11-01 18:08:11 2019-11-01 18:17:01 t 1 1 146749 499 0.00 2019-11-01 18:16:53 2019-11-01 18:17:16 t 1 1 146750 562 0.00 2019-11-01 18:17:17 2019-11-01 18:18:28 t 1 1 146753 430 0.00 2019-11-01 18:20:14 2019-11-01 18:20:15 t 1 1 146756 430 0.00 2019-11-01 18:22:17 2019-11-01 18:22:25 t 1 1 146757 430 0.00 2019-11-01 18:23:08 2019-11-01 18:23:16 t 1 1 146761 430 0.00 2019-11-01 18:24:53 2019-11-01 18:26:02 t 1 1 146763 430 0.00 2019-11-01 18:27:36 2019-11-01 18:27:44 t 1 1 146764 430 0.00 2019-11-01 18:27:55 2019-11-01 18:27:57 t 1 1 146765 430 0.00 2019-11-01 18:28:12 2019-11-01 18:28:25 t 1 1 146767 622 0.00 2019-11-01 18:21:48 2019-11-01 18:28:42 t 1 1 146768 430 0.00 2019-11-01 18:28:57 2019-11-01 18:28:59 t 1 1 146772 430 0.00 2019-11-01 18:32:00 2019-11-01 18:33:22 t 1 1 146775 430 0.00 2019-11-01 18:33:35 2019-11-01 18:34:45 t 1 1 146777 522 0.00 2019-11-01 18:35:15 2019-11-01 18:35:15 f 1 1 146778 430 0.00 2019-11-01 18:35:44 2019-11-01 18:36:01 t 1 1 146781 615 0.00 2019-11-01 18:36:17 2019-11-01 18:37:43 t 1 1 146783 220 0.00 2019-11-01 18:39:38 2019-11-01 18:39:40 t 1 1 146786 587 0.00 2019-11-01 18:16:14 2019-11-01 18:40:26 t 1 1 146788 562 0.00 2019-11-01 18:42:09 2019-11-01 18:42:36 t 1 1 146790 619 0.00 2019-11-01 18:44:39 2019-11-01 18:46:14 t 1 1 146793 445 0.00 2019-11-01 15:03:34 2019-11-01 18:52:21 t 1 1 146794 514 0.00 2019-11-01 18:52:27 2019-11-01 18:54:07 t 1 1 146795 615 0.00 2019-11-01 18:49:46 2019-11-01 18:54:51 t 1 1 146796 562 0.00 2019-11-01 18:54:21 2019-11-01 18:55:25 t 1 1 146799 570 0.00 2019-11-01 18:57:46 2019-11-01 18:59:22 t 1 1 146800 562 0.00 2019-11-01 19:02:46 2019-11-01 19:03:11 t 1 1 146803 545 0.00 2019-11-01 18:41:49 2019-11-01 19:03:44 t 1 1 146810 545 0.00 2019-11-01 19:03:44 2019-11-01 19:13:25 t 1 1 146812 597 0.00 2019-11-01 19:07:14 2019-11-01 19:15:11 t 1 1 146815 520 0.00 2019-11-01 19:15:48 2019-11-01 19:19:44 t 1 1 146817 619 0.00 2019-11-01 19:14:41 2019-11-01 19:22:05 t 1 1 146818 562 0.00 2019-11-01 19:23:55 2019-11-01 19:25:46 t 1 1 146823 562 0.00 2019-11-01 19:30:30 2019-11-01 19:33:05 t 1 1 146826 395 0.00 2019-11-01 19:16:29 2019-11-01 19:36:49 t 1 2 146828 562 0.00 2019-11-01 19:36:17 2019-11-01 19:39:01 t 1 1 146832 520 0.00 2019-11-01 19:19:44 2019-11-01 19:43:31 t 1 1 146833 562 0.00 2019-11-01 19:43:25 2019-11-01 19:44:15 t 1 1 146834 520 0.00 2019-11-01 19:43:30 2019-11-01 19:45:31 t 1 1 146836 619 0.00 2019-11-01 19:44:11 2019-11-01 19:45:55 t 1 1 146837 456 0.00 2019-11-01 19:40:15 2019-11-01 19:46:13 t 1 1 146841 514 0.00 2019-11-01 19:46:59 2019-11-01 19:49:47 t 1 1 146848 619 0.00 2019-11-01 19:58:21 2019-11-01 20:05:02 t 1 1 146852 520 0.00 2019-11-01 19:54:28 2019-11-01 20:13:10 t 1 1 146853 566 0.00 2019-11-01 20:03:00 2019-11-01 20:14:27 t 1 1 146854 361 0.00 2019-11-01 19:55:47 2019-11-01 20:14:48 t 1 2 146857 220 0.00 2019-11-01 20:09:19 2019-11-01 20:17:38 t 1 1 146861 585 0.00 2019-11-01 20:20:14 2019-11-01 20:21:49 t 1 1 146862 587 0.00 2019-11-01 20:20:46 2019-11-01 20:23:21 t 1 1 146867 520 0.00 2019-11-01 20:14:39 2019-11-01 20:26:13 t 1 1 146870 562 0.00 2019-11-01 20:25:43 2019-11-01 20:27:48 t 1 1 146871 587 0.00 2019-11-01 20:26:20 2019-11-01 20:29:41 t 1 1 146875 587 0.00 2019-11-01 20:30:41 2019-11-01 20:32:57 t 1 1 146877 562 0.00 2019-11-01 20:33:58 2019-11-01 20:34:18 t 1 1 146880 587 0.00 2019-11-01 20:33:09 2019-11-01 20:35:07 t 1 1 146885 562 0.00 2019-11-01 20:40:00 2019-11-01 20:40:12 t 1 1 146887 562 0.00 2019-11-01 20:40:18 2019-11-01 20:40:33 t 1 1 146890 556 0.00 2019-11-01 17:21:02 2019-11-01 20:43:24 t 1 1 146891 562 0.00 2019-11-01 20:43:15 2019-11-01 20:44:00 t 1 1 146894 430 0.00 2019-11-01 20:45:09 2019-11-01 20:45:53 t 1 1 146896 430 0.00 2019-11-01 20:45:58 2019-11-01 20:47:37 t 1 1 146898 587 0.00 2019-11-01 20:38:35 2019-11-01 20:48:55 t 1 1 146901 430 0.00 2019-11-01 20:49:10 2019-11-01 20:49:17 t 1 1 146910 361 0.00 2019-11-01 20:21:33 2019-11-01 21:01:04 t 1 2 146911 451 0.00 2019-11-01 20:59:49 2019-11-01 21:01:30 t 1 1 146913 520 0.00 2019-11-01 20:49:08 2019-11-01 21:01:36 t 1 1 146915 619 0.00 2019-11-01 20:58:55 2019-11-01 21:02:02 t 1 1 146917 430 0.00 2019-11-01 21:04:18 2019-11-01 21:04:25 t 1 1 146920 595 0.00 2019-11-01 21:05:06 2019-11-01 21:05:28 t 1 1 146923 595 0.00 2019-11-01 21:06:14 2019-11-01 21:06:35 t 1 1 146926 562 0.00 2019-11-01 21:11:58 2019-11-01 21:12:36 t 1 1 146928 485 0.00 2019-11-01 21:10:05 2019-11-01 21:13:23 t 1 1 146929 481 0.00 2019-11-01 20:17:40 2019-11-01 21:17:07 t 1 1 146932 520 0.00 2019-11-01 21:01:35 2019-11-01 21:20:44 t 1 1 146935 430 0.00 2019-11-01 21:18:57 2019-11-01 21:22:39 t 1 1 146936 562 0.00 2019-11-01 21:22:54 2019-11-01 21:23:30 t 1 1 146938 327 0.00 2019-11-01 21:28:21 2019-11-01 21:28:21 f 1 1 146942 545 0.00 2019-11-01 20:36:22 2019-11-01 21:32:32 t 1 1 146949 595 0.00 2019-11-01 21:32:38 2019-11-01 21:38:05 t 1 1 146950 220 0.00 2019-11-01 21:33:01 2019-11-01 21:43:32 t 1 1 146953 411 0.00 2019-11-01 21:44:39 2019-11-01 21:44:39 f 1 1 146958 451 0.00 2019-11-01 21:36:11 2019-11-01 21:48:38 t 1 1 146962 562 0.00 2019-11-01 21:52:41 2019-11-01 21:52:42 t 1 1 146964 220 0.00 2019-11-01 21:52:20 2019-11-01 21:52:55 t 1 1 146973 220 0.00 2019-11-01 21:56:23 2019-11-01 21:56:57 t 1 1 146975 587 0.00 2019-11-01 21:53:05 2019-11-01 21:57:11 t 1 1 146979 619 0.00 2019-11-01 21:55:16 2019-11-01 22:01:01 t 1 1 146986 570 0.00 2019-11-01 21:57:20 2019-11-01 22:09:30 t 1 1 146987 622 0.00 2019-11-01 22:07:38 2019-11-01 22:09:44 t 1 1 146990 456 0.00 2019-11-01 22:05:21 2019-11-01 22:10:35 t 1 1 146992 412 0.00 2019-11-01 22:10:48 2019-11-01 22:11:52 t 1 1 146994 587 0.00 2019-11-01 22:00:10 2019-11-01 22:12:18 t 1 1 147000 587 0.00 2019-11-01 22:12:36 2019-11-01 22:16:34 t 1 1 147001 408 0.00 2019-11-01 21:55:15 2019-11-01 22:17:02 t 1 1 147004 587 0.00 2019-11-01 22:19:23 2019-11-01 22:26:55 t 1 1 146730 587 0.00 2019-11-01 17:54:59 2019-11-01 17:57:00 t 1 1 146732 512 0.00 2019-11-01 17:49:40 2019-11-01 17:59:11 t 1 1 146735 545 0.00 2019-11-01 17:45:36 2019-11-01 18:01:24 t 1 1 146736 449 0.00 2019-11-01 18:01:37 2019-11-01 18:02:48 t 1 1 146737 587 0.00 2019-11-01 18:03:37 2019-11-01 18:05:18 t 1 1 146738 562 0.00 2019-11-01 18:06:42 2019-11-01 18:07:07 t 1 1 146743 430 0.00 2019-11-01 18:13:52 2019-11-01 18:13:59 t 1 1 146744 622 0.00 2019-11-01 17:53:16 2019-11-01 18:14:28 t 1 1 146745 430 0.00 2019-11-01 18:14:12 2019-11-01 18:15:12 t 1 1 146751 430 0.00 2019-11-01 18:15:26 2019-11-01 18:19:40 t 1 1 146755 430 0.00 2019-11-01 18:21:30 2019-11-01 18:21:37 t 1 1 146758 430 0.00 2019-11-01 18:23:23 2019-11-01 18:23:27 t 1 1 146771 430 0.00 2019-11-01 18:30:59 2019-11-01 18:31:32 t 1 1 146774 562 0.00 2019-11-01 18:34:07 2019-11-01 18:34:35 t 1 1 146779 516 0.00 2019-11-01 18:20:11 2019-11-01 18:36:25 t 1 1 146782 220 0.00 2019-11-01 18:14:21 2019-11-01 18:39:38 t 1 1 146785 615 0.00 2019-11-01 18:37:42 2019-11-01 18:40:07 t 1 1 146789 619 0.00 2019-11-01 18:44:01 2019-11-01 18:44:39 t 1 1 146797 615 0.00 2019-11-01 18:54:51 2019-11-01 18:56:21 t 1 1 146798 520 0.00 2019-11-01 18:35:03 2019-11-01 18:57:15 t 1 1 146802 514 0.00 2019-11-01 19:02:28 2019-11-01 19:03:29 t 1 1 146806 512 0.00 2019-11-01 19:04:41 2019-11-01 19:06:43 t 1 1 146807 619 0.00 2019-11-01 19:04:28 2019-11-01 19:09:02 t 1 1 146808 562 0.00 2019-11-01 19:08:31 2019-11-01 19:10:24 t 1 1 146809 562 0.00 2019-11-01 19:11:44 2019-11-01 19:13:08 t 1 1 146811 520 0.00 2019-11-01 18:57:15 2019-11-01 19:15:06 t 1 1 146814 562 0.00 2019-11-01 19:17:41 2019-11-01 19:18:45 t 1 1 146821 566 0.00 2019-11-01 19:28:59 2019-11-01 19:29:32 t 1 1 146829 562 0.00 2019-11-01 19:40:05 2019-11-01 19:40:57 t 1 1 146835 220 0.00 2019-11-01 19:30:17 2019-11-01 19:45:39 t 1 2 146839 445 0.00 2019-11-01 18:52:22 2019-11-01 19:46:53 t 1 1 146840 514 0.00 2019-11-01 19:46:02 2019-11-01 19:47:00 t 1 1 146842 562 0.00 2019-11-01 19:49:52 2019-11-01 19:50:48 t 1 1 146844 597 0.00 2019-11-01 19:50:34 2019-11-01 19:51:51 t 1 1 146847 581 0.00 2019-11-01 20:00:19 2019-11-01 20:02:18 t 1 1 146850 583 0.00 2019-11-01 20:03:44 2019-11-01 20:09:56 t 1 1 146851 597 0.00 2019-11-01 20:10:12 2019-11-01 20:11:35 t 1 1 146856 562 0.00 2019-11-01 20:16:56 2019-11-01 20:17:21 t 1 1 146859 583 0.00 2019-11-01 20:11:16 2019-11-01 20:19:25 t 1 1 146863 587 0.00 2019-11-01 20:23:21 2019-11-01 20:23:29 t 1 1 146873 220 0.00 2019-11-01 20:29:21 2019-11-01 20:31:51 t 1 2 146876 520 0.00 2019-11-01 20:26:13 2019-11-01 20:34:02 t 1 1 146879 583 0.00 2019-11-01 20:26:20 2019-11-01 20:34:31 t 1 1 146881 587 0.00 2019-11-01 20:35:30 2019-11-01 20:36:34 t 1 1 146886 520 0.00 2019-11-01 20:34:01 2019-11-01 20:40:19 t 1 1 146889 622 0.00 2019-11-01 20:39:09 2019-11-01 20:41:38 t 1 1 146893 619 0.00 2019-11-01 20:29:24 2019-11-01 20:44:04 t 1 1 146899 430 0.00 2019-11-01 20:48:51 2019-11-01 20:48:57 t 1 1 146908 430 0.00 2019-11-01 20:59:01 2019-11-01 20:59:44 t 1 1 146916 562 0.00 2019-11-01 21:02:24 2019-11-01 21:02:39 t 1 1 146921 516 0.00 2019-11-01 21:00:38 2019-11-01 21:05:57 t 1 1 146927 622 0.00 2019-11-01 21:09:41 2019-11-01 21:13:15 t 1 1 146930 430 0.00 2019-11-01 21:07:52 2019-11-01 21:18:57 t 1 1 146934 595 0.00 2019-11-01 21:06:50 2019-11-01 21:22:20 t 1 1 146937 595 0.00 2019-11-01 21:23:39 2019-11-01 21:23:46 t 1 1 146940 619 0.00 2019-11-01 21:20:49 2019-11-01 21:30:42 t 1 1 146944 554 0.00 2019-11-01 20:48:12 2019-11-01 21:35:36 t 1 1 146947 408 0.00 2019-11-01 21:20:32 2019-11-01 21:37:26 t 1 1 146948 545 0.00 2019-11-01 21:32:32 2019-11-01 21:38:04 t 1 1 146951 587 0.00 2019-11-01 21:35:24 2019-11-01 21:43:40 t 1 1 146954 411 0.00 2019-11-01 21:44:45 2019-11-01 21:44:45 f 1 1 146955 562 0.00 2019-11-01 21:44:29 2019-11-01 21:45:03 t 1 1 146956 411 0.00 2019-11-01 21:45:26 2019-11-01 21:45:26 f 1 1 146959 516 0.00 2019-11-01 21:45:54 2019-11-01 21:49:22 t 1 1 146967 408 0.00 2019-11-01 21:48:01 2019-11-01 21:54:30 t 1 1 146969 412 0.00 2019-11-01 21:12:14 2019-11-01 21:54:47 t 1 1 146974 220 0.00 2019-11-01 21:56:57 2019-11-01 21:57:10 t 1 1 146977 587 0.00 2019-11-01 21:57:34 2019-11-01 21:59:34 t 1 1 146978 412 0.00 2019-11-01 21:58:21 2019-11-01 22:01:00 t 1 1 146980 622 0.00 2019-11-01 21:49:32 2019-11-01 22:02:16 t 1 1 146981 562 0.00 2019-11-01 22:03:10 2019-11-01 22:03:35 t 1 1 146982 412 0.00 2019-11-01 22:00:59 2019-11-01 22:04:42 t 1 1 146983 412 0.00 2019-11-01 22:05:19 2019-11-01 22:06:31 t 1 1 146985 622 0.00 2019-11-01 22:03:41 2019-11-01 22:07:39 t 1 1 146989 516 0.00 2019-11-01 22:06:53 2019-11-01 22:10:16 t 1 1 146993 570 0.00 2019-11-01 22:09:30 2019-11-01 22:12:05 t 1 1 146995 562 0.00 2019-11-01 22:12:30 2019-11-01 22:12:54 t 1 1 146996 361 0.00 2019-11-01 22:12:45 2019-11-01 22:13:43 t 1 2 146999 545 0.00 2019-11-01 22:13:18 2019-11-01 22:14:54 t 1 1 147002 562 0.00 2019-11-01 22:23:06 2019-11-01 22:23:39 t 1 1 147006 622 0.00 2019-11-01 22:10:07 2019-11-01 22:28:58 t 1 1 147008 619 0.00 2019-11-01 22:29:12 2019-11-01 22:31:42 t 1 1 147016 372 0.00 2019-11-01 22:34:39 2019-11-01 22:41:11 t 1 2 147017 597 0.00 2019-11-01 22:09:44 2019-11-01 22:42:04 t 1 1 147023 412 0.00 2019-11-01 22:38:27 2019-11-01 22:44:23 t 1 1 147025 562 0.00 2019-11-01 22:44:52 2019-11-01 22:45:12 t 1 1 147026 587 0.00 2019-11-01 22:44:34 2019-11-01 22:47:16 t 1 1 147029 585 0.00 2019-11-01 22:44:15 2019-11-01 22:49:46 t 1 1 147032 556 0.00 2019-11-01 22:39:43 2019-11-01 22:52:58 t 1 1 147033 587 0.00 2019-11-01 22:50:19 2019-11-01 22:53:38 t 1 1 147035 562 0.00 2019-11-01 22:55:32 2019-11-01 22:56:00 t 1 1 147041 445 0.00 2019-11-01 22:51:49 2019-11-01 22:59:28 t 1 1 147044 445 0.00 2019-11-01 22:59:27 2019-11-01 23:00:26 t 1 1 147048 412 0.00 2019-11-01 23:00:01 2019-11-01 23:03:11 t 1 1 147051 445 0.00 2019-11-01 23:00:57 2019-11-01 23:07:06 t 1 1 147054 538 0.00 2019-11-01 20:50:43 2019-11-01 23:08:54 t 1 1 147056 587 0.00 2019-11-01 23:00:14 2019-11-01 23:14:35 t 1 1 147058 445 0.00 2019-11-01 23:14:21 2019-11-01 23:16:03 t 1 1 147060 514 0.00 2019-11-01 22:56:14 2019-11-01 23:19:37 t 1 1 147061 587 0.00 2019-11-01 23:15:03 2019-11-01 23:21:32 t 1 1 147062 554 0.00 2019-11-01 22:41:01 2019-11-01 23:22:55 t 1 1 147063 585 0.00 2019-11-01 23:21:13 2019-11-01 23:24:09 t 1 1 147066 445 0.00 2019-11-01 23:25:46 2019-11-01 23:28:02 t 1 1 147070 372 0.00 2019-11-01 23:27:05 2019-11-01 23:31:24 t 1 2 147074 587 0.00 2019-11-01 23:22:29 2019-11-01 23:39:12 t 1 1 147079 503 0.00 2019-11-01 23:38:32 2019-11-01 23:43:39 t 1 1 147085 220 0.00 2019-11-01 22:06:32 2019-11-01 23:53:04 t 1 1 146770 585 0.00 2019-11-01 18:28:39 2019-11-01 18:31:28 t 1 1 146773 512 0.00 2019-11-01 17:59:43 2019-11-01 18:34:17 t 1 1 146776 520 0.00 2019-11-01 18:21:31 2019-11-01 18:35:03 t 1 1 146780 514 0.00 2019-11-01 17:53:22 2019-11-01 18:37:38 t 1 1 146784 619 0.00 2019-11-01 18:30:42 2019-11-01 18:39:47 t 1 1 146787 430 0.00 2019-11-01 18:39:20 2019-11-01 18:40:35 t 1 1 146791 562 0.00 2019-11-01 18:47:44 2019-11-01 18:48:45 t 1 1 146792 615 0.00 2019-11-01 18:40:07 2019-11-01 18:49:46 t 1 1 146801 619 0.00 2019-11-01 18:52:30 2019-11-01 19:03:18 t 1 1 146804 585 0.00 2019-11-01 19:02:40 2019-11-01 19:04:39 t 1 1 146805 514 0.00 2019-11-01 19:04:43 2019-11-01 19:06:23 t 1 1 146813 585 0.00 2019-11-01 19:11:58 2019-11-01 19:15:16 t 1 1 146816 562 0.00 2019-11-01 19:19:42 2019-11-01 19:21:37 t 1 1 146819 562 0.00 2019-11-01 19:26:58 2019-11-01 19:27:53 t 1 1 146820 562 0.00 2019-11-01 19:28:05 2019-11-01 19:28:16 t 1 1 146822 416 0.00 2019-11-01 17:43:33 2019-11-01 19:32:39 t 1 1 146824 619 0.00 2019-11-01 19:30:49 2019-11-01 19:33:17 t 1 1 146825 562 0.00 2019-11-01 19:33:21 2019-11-01 19:34:48 t 1 1 146827 566 0.00 2019-11-01 19:29:32 2019-11-01 19:36:50 t 1 1 146830 566 0.00 2019-11-01 19:38:25 2019-11-01 19:41:07 t 1 1 146831 481 0.00 2019-11-01 17:28:37 2019-11-01 19:43:03 t 1 1 146838 562 0.00 2019-11-01 19:45:33 2019-11-01 19:46:35 t 1 1 146843 585 0.00 2019-11-01 19:47:55 2019-11-01 19:51:27 t 1 1 146845 512 0.00 2019-11-01 19:43:19 2019-11-01 19:55:53 t 1 1 146846 562 0.00 2019-11-01 19:56:09 2019-11-01 19:56:32 t 1 1 146849 562 0.00 2019-11-01 20:06:06 2019-11-01 20:07:22 t 1 1 146855 516 0.00 2019-11-01 20:12:16 2019-11-01 20:16:16 t 1 1 146858 481 0.00 2019-11-01 19:43:03 2019-11-01 20:17:40 t 1 1 146860 562 0.00 2019-11-01 20:19:44 2019-11-01 20:21:07 t 1 1 146864 566 0.00 2019-11-01 20:14:27 2019-11-01 20:24:40 t 1 1 146865 562 0.00 2019-11-01 20:24:06 2019-11-01 20:25:31 t 1 1 146866 220 0.00 2019-11-01 20:24:24 2019-11-01 20:25:59 t 1 1 146868 583 0.00 2019-11-01 20:19:25 2019-11-01 20:26:20 t 1 1 146869 587 0.00 2019-11-01 20:24:05 2019-11-01 20:26:20 t 1 1 146872 581 0.00 2019-11-01 20:14:26 2019-11-01 20:30:56 t 1 1 146874 562 0.00 2019-11-01 20:31:33 2019-11-01 20:32:46 t 1 1 146878 456 0.00 2019-11-01 20:27:52 2019-11-01 20:34:23 t 1 1 146882 562 0.00 2019-11-01 20:36:22 2019-11-01 20:37:18 t 1 1 146883 498 0.00 2019-11-01 15:51:28 2019-11-01 20:38:25 t 1 2 146884 562 0.00 2019-11-01 20:37:49 2019-11-01 20:39:00 t 1 1 146888 562 0.00 2019-11-01 20:41:13 2019-11-01 20:41:29 t 1 1 146892 581 0.00 2019-11-01 20:31:02 2019-11-01 20:44:03 t 1 1 146895 520 0.00 2019-11-01 20:40:49 2019-11-01 20:46:14 t 1 1 146897 430 0.00 2019-11-01 20:47:44 2019-11-01 20:48:46 t 1 1 146900 520 0.00 2019-11-01 20:46:14 2019-11-01 20:49:08 t 1 1 146902 430 0.00 2019-11-01 20:50:19 2019-11-01 20:50:21 t 1 1 146903 562 0.00 2019-11-01 20:50:31 2019-11-01 20:50:51 t 1 1 146904 430 0.00 2019-11-01 20:51:36 2019-11-01 20:51:56 t 1 1 146905 583 0.00 2019-11-01 20:34:31 2019-11-01 20:52:14 t 1 1 146906 430 0.00 2019-11-01 20:55:22 2019-11-01 20:55:28 t 1 1 146907 430 0.00 2019-11-01 20:56:20 2019-11-01 20:56:31 t 1 1 146909 595 0.00 2019-11-01 20:56:38 2019-11-01 21:00:47 t 1 1 146912 430 0.00 2019-11-01 21:01:10 2019-11-01 21:01:32 t 1 1 146914 562 0.00 2019-11-01 21:01:08 2019-11-01 21:01:37 t 1 1 146918 595 0.00 2019-11-01 21:03:43 2019-11-01 21:04:55 t 1 1 146919 585 0.00 2019-11-01 21:02:50 2019-11-01 21:04:59 t 1 1 146922 595 0.00 2019-11-01 21:05:41 2019-11-01 21:06:02 t 1 1 146924 361 0.00 2019-11-01 21:04:15 2019-11-01 21:09:17 t 1 2 146925 412 0.00 2019-11-01 18:17:03 2019-11-01 21:12:14 t 1 1 146931 408 0.00 2019-11-01 21:08:45 2019-11-01 21:20:33 t 1 1 146933 220 0.00 2019-11-01 21:18:47 2019-11-01 21:22:11 t 1 1 146939 595 0.00 2019-11-01 21:26:15 2019-11-01 21:28:53 t 1 1 146941 520 0.00 2019-11-01 21:20:43 2019-11-01 21:31:05 t 1 1 146943 562 0.00 2019-11-01 21:33:43 2019-11-01 21:34:13 t 1 1 146945 451 0.00 2019-11-01 21:25:47 2019-11-01 21:36:11 t 1 1 146946 481 0.00 2019-11-01 21:17:24 2019-11-01 21:37:22 t 1 1 146952 411 0.00 2019-11-01 21:44:31 2019-11-01 21:44:31 f 1 1 146957 408 0.00 2019-11-01 21:37:26 2019-11-01 21:48:01 t 1 1 146960 456 0.00 2019-11-01 21:45:08 2019-11-01 21:49:34 t 1 1 146961 220 0.00 2019-11-01 21:43:35 2019-11-01 21:52:20 t 1 1 146963 587 0.00 2019-11-01 21:43:59 2019-11-01 21:52:49 t 1 1 146965 220 0.00 2019-11-01 21:52:54 2019-11-01 21:53:30 t 1 1 146966 220 0.00 2019-11-01 21:53:29 2019-11-01 21:54:04 t 1 1 146968 220 0.00 2019-11-01 21:54:04 2019-11-01 21:54:41 t 1 1 146970 220 0.00 2019-11-01 21:54:40 2019-11-01 21:55:15 t 1 1 146971 220 0.00 2019-11-01 21:55:15 2019-11-01 21:55:49 t 1 1 146972 220 0.00 2019-11-01 21:55:49 2019-11-01 21:56:24 t 1 1 146976 570 0.00 2019-11-01 21:39:34 2019-11-01 21:57:20 t 1 1 146984 220 0.00 2019-11-01 21:57:31 2019-11-01 22:06:32 t 1 1 146988 412 0.00 2019-11-01 22:08:47 2019-11-01 22:09:50 t 1 1 146991 449 0.00 2019-11-01 22:11:06 2019-11-01 22:11:44 t 1 1 146997 449 0.00 2019-11-01 22:12:25 2019-11-01 22:13:57 t 1 1 146998 562 0.00 2019-11-01 22:14:08 2019-11-01 22:14:26 t 1 1 147003 408 0.00 2019-11-01 22:17:02 2019-11-01 22:23:39 t 1 1 147005 587 0.00 2019-11-01 22:27:36 2019-11-01 22:27:51 t 1 1 147007 408 0.00 2019-11-01 22:23:39 2019-11-01 22:30:58 t 1 1 147009 562 0.00 2019-11-01 22:33:57 2019-11-01 22:34:27 t 1 1 147012 512 0.00 2019-11-01 22:27:34 2019-11-01 22:37:50 t 1 1 147013 554 0.00 2019-11-01 22:14:00 2019-11-01 22:38:09 t 1 1 147015 554 0.00 2019-11-01 22:38:09 2019-11-01 22:40:24 t 1 1 147020 597 0.00 2019-11-01 22:42:04 2019-11-01 22:43:21 t 1 1 147022 585 0.00 2019-11-01 22:38:22 2019-11-01 22:43:39 t 1 1 147024 520 0.00 2019-11-01 22:41:43 2019-11-01 22:45:08 t 1 1 147027 587 0.00 2019-11-01 22:48:25 2019-11-01 22:49:06 t 1 1 147039 587 0.00 2019-11-01 22:54:00 2019-11-01 22:58:56 t 1 1 147049 611 0.00 2019-11-01 22:58:11 2019-11-01 23:03:43 t 1 1 147053 562 0.00 2019-11-01 23:06:59 2019-11-01 23:08:46 t 1 1 147065 562 0.00 2019-11-01 23:13:20 2019-11-01 23:25:40 t 1 1 147067 562 0.00 2019-11-01 23:25:46 2019-11-01 23:28:50 t 1 1 147068 445 0.00 2019-11-01 23:28:09 2019-11-01 23:29:55 t 1 1 147075 551 0.00 2019-11-01 23:31:21 2019-11-01 23:40:06 t 1 1 147076 445 0.00 2019-11-01 23:29:59 2019-11-01 23:41:35 t 1 1 147078 514 0.00 2019-11-01 23:19:37 2019-11-01 23:41:57 t 1 1 147080 562 0.00 2019-11-01 23:28:59 2019-11-01 23:45:26 t 1 1 147083 551 0.00 2019-11-01 23:40:06 2019-11-01 23:49:06 t 1 1 147084 510 0.00 2019-11-01 21:10:34 2019-11-01 23:51:39 t 1 1 147086 562 0.00 2019-11-01 23:49:36 2019-11-01 23:55:15 t 1 1 147010 587 0.00 2019-11-01 22:28:04 2019-11-01 22:34:49 t 1 1 147011 412 0.00 2019-11-01 22:11:52 2019-11-01 22:35:47 t 1 1 147014 556 0.00 2019-11-01 20:43:27 2019-11-01 22:39:43 t 1 1 147018 545 0.00 2019-11-01 22:38:52 2019-11-01 22:42:27 t 1 1 147019 545 0.00 2019-11-01 22:42:27 2019-11-01 22:43:01 t 1 1 147021 545 0.00 2019-11-01 22:43:00 2019-11-01 22:43:23 t 1 1 147028 408 0.00 2019-11-01 22:44:01 2019-11-01 22:49:41 t 1 1 147030 562 0.00 2019-11-01 22:49:36 2019-11-01 22:49:57 t 1 1 147031 408 0.00 2019-11-01 22:49:41 2019-11-01 22:52:39 t 1 1 147034 412 0.00 2019-11-01 22:51:09 2019-11-01 22:53:49 t 1 1 147036 514 0.00 2019-11-01 22:40:31 2019-11-01 22:56:14 t 1 1 147037 556 0.00 2019-11-01 22:52:58 2019-11-01 22:56:58 t 1 1 147038 611 0.00 2019-11-01 22:53:18 2019-11-01 22:58:12 t 1 1 147040 412 0.00 2019-11-01 22:54:27 2019-11-01 22:59:11 t 1 1 147042 516 0.00 2019-11-01 22:57:54 2019-11-01 22:59:52 t 1 1 147043 556 0.00 2019-11-01 22:56:58 2019-11-01 22:59:59 t 1 1 147045 585 0.00 2019-11-01 22:57:38 2019-11-01 23:00:29 t 1 1 147046 445 0.00 2019-11-01 23:00:25 2019-11-01 23:00:57 t 1 1 147047 562 0.00 2019-11-01 23:01:21 2019-11-01 23:02:10 t 1 1 147050 611 0.00 2019-11-01 23:03:43 2019-11-01 23:04:44 t 1 1 147052 591 0.00 2019-11-01 23:06:20 2019-11-01 23:07:18 t 1 1 147055 412 0.00 2019-11-01 23:07:37 2019-11-01 23:12:28 t 1 1 147057 445 0.00 2019-11-01 23:07:06 2019-11-01 23:14:50 t 1 1 147059 220 0.00 2019-11-01 23:07:32 2019-11-01 23:18:56 t 1 2 147064 445 0.00 2019-11-01 23:16:20 2019-11-01 23:24:53 t 1 1 147069 551 0.00 2019-11-01 22:42:26 2019-11-01 23:31:21 t 1 1 147071 585 0.00 2019-11-01 23:25:11 2019-11-01 23:31:54 t 1 1 147072 456 0.00 2019-11-01 23:10:38 2019-11-01 23:33:26 t 1 1 147073 545 0.00 2019-11-01 22:43:23 2019-11-01 23:39:09 t 1 1 147077 585 0.00 2019-11-01 23:39:49 2019-11-01 23:41:45 t 1 1 147081 581 0.00 2019-11-01 21:39:39 2019-11-01 23:46:03 t 1 1 147082 562 0.00 2019-11-01 23:46:27 2019-11-01 23:48:58 t 1 1 147088 220 0.00 2019-11-01 23:53:04 2019-11-01 23:59:03 t 1 1 147090 545 0.00 2019-11-01 23:39:09 2019-11-02 00:02:35 t 1 1 147092 587 0.00 2019-11-01 23:39:27 2019-11-02 00:08:09 t 1 1 147093 220 0.00 2019-11-01 23:59:40 2019-11-02 00:11:09 t 1 1 147099 587 0.00 2019-11-02 00:15:31 2019-11-02 00:15:50 t 1 1 147104 562 0.00 2019-11-01 23:55:52 2019-11-02 00:23:37 t 1 1 147107 587 0.00 2019-11-02 00:16:05 2019-11-02 00:28:15 t 1 1 147108 556 0.00 2019-11-02 00:24:00 2019-11-02 00:29:51 t 1 1 147109 562 0.00 2019-11-02 00:34:03 2019-11-02 00:34:31 t 1 1 147112 456 0.00 2019-11-02 00:26:09 2019-11-02 00:43:09 t 1 1 147114 562 0.00 2019-11-02 00:43:06 2019-11-02 00:43:37 t 1 1 147116 587 0.00 2019-11-02 00:28:15 2019-11-02 00:52:23 t 1 1 147118 503 0.00 2019-11-02 00:49:07 2019-11-02 00:56:37 t 1 1 147119 587 0.00 2019-11-02 00:52:23 2019-11-02 00:58:39 t 1 1 147120 607 0.00 2019-11-02 00:19:27 2019-11-02 01:04:16 t 1 1 147121 556 0.00 2019-11-02 00:29:51 2019-11-02 01:04:31 t 1 1 147123 562 0.00 2019-11-02 01:04:48 2019-11-02 01:05:07 t 1 1 147124 617 0.00 2019-11-02 01:02:06 2019-11-02 01:07:28 t 1 1 147126 599 0.00 2019-11-02 00:14:33 2019-11-02 01:13:48 t 1 1 147128 562 0.00 2019-11-02 01:15:29 2019-11-02 01:15:53 t 1 1 147135 607 0.00 2019-11-02 01:04:16 2019-11-02 01:32:51 t 1 1 147138 220 0.00 2019-11-02 00:16:46 2019-11-02 01:37:33 t 1 1 147140 587 0.00 2019-11-02 01:44:23 2019-11-02 01:44:33 t 1 1 147142 514 0.00 2019-11-02 01:36:23 2019-11-02 01:52:45 t 1 1 147146 562 0.00 2019-11-02 02:09:31 2019-11-02 02:09:43 t 1 1 147148 562 0.00 2019-11-02 02:20:17 2019-11-02 02:20:31 t 1 1 147150 587 0.00 2019-11-02 02:12:54 2019-11-02 02:21:53 t 1 1 147155 514 0.00 2019-11-02 02:35:02 2019-11-02 02:37:10 t 1 1 147156 562 0.00 2019-11-02 02:41:44 2019-11-02 02:41:58 t 1 1 147157 562 0.00 2019-11-02 02:49:45 2019-11-02 02:50:05 t 1 1 147158 514 0.00 2019-11-02 02:37:10 2019-11-02 02:52:06 t 1 1 147159 587 0.00 2019-11-02 02:40:59 2019-11-02 02:55:36 t 1 1 147165 562 0.00 2019-11-02 03:43:05 2019-11-02 03:43:18 t 1 1 147168 562 0.00 2019-11-02 04:01:27 2019-11-02 04:01:39 t 1 1 147169 562 0.00 2019-11-02 04:12:12 2019-11-02 04:12:28 t 1 1 147170 562 0.00 2019-11-02 04:19:56 2019-11-02 04:20:11 t 1 1 147171 562 0.00 2019-11-02 04:30:37 2019-11-02 04:31:00 t 1 1 147178 562 0.00 2019-11-02 05:29:33 2019-11-02 05:31:03 t 1 1 147185 445 0.00 2019-11-02 05:38:38 2019-11-02 05:45:52 t 1 1 147191 520 0.00 2019-11-02 06:17:49 2019-11-02 06:22:32 t 1 1 147194 516 0.00 2019-11-02 05:53:38 2019-11-02 06:28:51 t 1 1 147204 585 0.00 2019-11-02 06:49:20 2019-11-02 06:55:06 t 1 1 147205 562 0.00 2019-11-02 06:55:45 2019-11-02 06:55:52 t 1 1 147206 551 0.00 2019-11-02 06:50:45 2019-11-02 06:59:47 t 1 1 147209 516 0.00 2019-11-02 06:53:00 2019-11-02 07:04:48 t 1 1 147210 595 0.00 2019-11-02 07:02:25 2019-11-02 07:05:02 t 1 1 147213 551 0.00 2019-11-02 06:59:47 2019-11-02 07:09:05 t 1 1 147215 585 0.00 2019-11-02 07:08:23 2019-11-02 07:13:02 t 1 1 147219 585 0.00 2019-11-02 07:16:17 2019-11-02 07:26:18 t 1 1 147220 562 0.00 2019-11-02 07:27:32 2019-11-02 07:27:55 t 1 1 147224 562 0.00 2019-11-02 07:41:30 2019-11-02 07:42:30 t 1 1 147233 481 0.00 2019-11-02 07:43:53 2019-11-02 08:00:16 t 1 1 147238 570 0.00 2019-11-02 08:07:45 2019-11-02 08:14:11 t 1 1 147239 585 0.00 2019-11-02 08:13:00 2019-11-02 08:15:29 t 1 1 147240 562 0.00 2019-11-02 08:16:57 2019-11-02 08:17:31 t 1 1 147242 520 0.00 2019-11-02 08:16:18 2019-11-02 08:20:52 t 1 1 147244 585 0.00 2019-11-02 08:23:39 2019-11-02 08:25:10 t 1 1 147254 591 0.00 2019-11-02 08:40:53 2019-11-02 08:46:08 t 1 1 147257 445 0.00 2019-11-02 08:44:06 2019-11-02 08:48:18 t 1 1 147263 562 0.00 2019-11-02 08:52:31 2019-11-02 08:53:51 t 1 1 147265 599 0.00 2019-11-02 08:58:08 2019-11-02 08:58:14 t 1 1 147266 619 0.00 2019-11-02 08:57:26 2019-11-02 08:59:04 t 1 1 147269 611 0.00 2019-11-02 08:56:20 2019-11-02 09:03:39 t 1 1 147273 623 0.00 2019-11-02 09:04:04 2019-11-02 09:05:14 t 1 1 147274 623 0.00 2019-11-02 09:05:26 2019-11-02 09:06:03 t 1 1 147277 623 0.00 2019-11-02 09:08:54 2019-11-02 09:08:59 t 1 1 147278 562 0.00 2019-11-02 09:09:11 2019-11-02 09:09:36 t 1 1 147281 625 0.00 2019-11-02 09:08:43 2019-11-02 09:11:01 t 1 1 147282 562 0.00 2019-11-02 09:12:39 2019-11-02 09:13:19 t 1 1 147284 562 0.00 2019-11-02 09:16:03 2019-11-02 09:16:30 t 1 1 147287 625 0.00 2019-11-02 09:17:22 2019-11-02 09:18:03 t 1 1 147288 545 0.00 2019-11-02 09:15:08 2019-11-02 09:19:42 t 1 1 147293 623 0.00 2019-11-02 09:22:02 2019-11-02 09:22:25 t 1 1 147294 562 0.00 2019-11-02 09:22:28 2019-11-02 09:22:59 t 1 1 147295 623 0.00 2019-11-02 09:22:25 2019-11-02 09:24:46 t 1 1 147087 503 0.00 2019-11-01 23:43:39 2019-11-01 23:57:14 t 1 1 147089 220 0.00 2019-11-01 23:59:03 2019-11-01 23:59:40 t 1 1 147095 556 0.00 2019-11-01 22:59:59 2019-11-02 00:13:25 t 1 1 147096 599 0.00 2019-11-02 00:05:01 2019-11-02 00:14:33 t 1 1 147101 544 0.00 2019-11-02 00:02:57 2019-11-02 00:18:02 t 1 2 147105 556 0.00 2019-11-02 00:13:25 2019-11-02 00:24:00 t 1 1 147117 562 0.00 2019-11-02 00:53:59 2019-11-02 00:54:21 t 1 1 147132 562 0.00 2019-11-02 01:26:19 2019-11-02 01:26:54 t 1 1 147133 551 0.00 2019-11-02 01:18:51 2019-11-02 01:28:04 t 1 1 147136 587 0.00 2019-11-02 01:24:12 2019-11-02 01:35:09 t 1 1 147137 562 0.00 2019-11-02 01:37:06 2019-11-02 01:37:30 t 1 1 147141 562 0.00 2019-11-02 01:47:49 2019-11-02 01:48:17 t 1 1 147143 538 0.00 2019-11-02 01:37:57 2019-11-02 01:55:10 t 1 1 147144 562 0.00 2019-11-02 01:58:33 2019-11-02 01:58:58 t 1 1 147145 587 0.00 2019-11-02 01:44:44 2019-11-02 02:00:18 t 1 1 147151 562 0.00 2019-11-02 02:31:01 2019-11-02 02:31:16 t 1 1 147152 622 0.00 2019-11-02 02:30:32 2019-11-02 02:33:21 t 1 1 147154 587 0.00 2019-11-02 02:21:53 2019-11-02 02:34:49 t 1 1 147160 562 0.00 2019-11-02 03:00:33 2019-11-02 03:00:47 t 1 1 147161 562 0.00 2019-11-02 03:11:17 2019-11-02 03:11:31 t 1 1 147162 562 0.00 2019-11-02 03:22:04 2019-11-02 03:22:18 t 1 1 147166 430 0.00 2019-11-02 03:44:33 2019-11-02 03:45:16 t 1 1 147167 562 0.00 2019-11-02 03:53:50 2019-11-02 03:54:03 t 1 1 147172 562 0.00 2019-11-02 04:41:15 2019-11-02 04:41:36 t 1 1 147173 562 0.00 2019-11-02 04:52:09 2019-11-02 04:52:26 t 1 1 147174 562 0.00 2019-11-02 05:02:52 2019-11-02 05:03:07 t 1 1 147176 562 0.00 2019-11-02 05:24:22 2019-11-02 05:24:41 t 1 1 147179 617 0.00 2019-11-02 05:27:12 2019-11-02 05:32:10 t 1 1 147180 562 0.00 2019-11-02 05:33:10 2019-11-02 05:33:19 t 1 1 147184 520 0.00 2019-11-02 05:40:56 2019-11-02 05:45:32 t 1 1 147188 520 0.00 2019-11-02 05:59:39 2019-11-02 06:01:50 t 1 1 147189 562 0.00 2019-11-02 06:02:33 2019-11-02 06:02:41 t 1 1 147190 562 0.00 2019-11-02 06:13:12 2019-11-02 06:13:21 t 1 1 147195 445 0.00 2019-11-02 05:56:19 2019-11-02 06:30:38 t 1 1 147196 619 0.00 2019-11-02 06:29:56 2019-11-02 06:31:47 t 1 1 147197 562 0.00 2019-11-02 06:34:28 2019-11-02 06:34:42 t 1 1 147198 566 0.00 2019-11-02 06:32:33 2019-11-02 06:38:04 t 1 1 147199 562 0.00 2019-11-02 06:45:08 2019-11-02 06:45:16 t 1 1 147200 551 0.00 2019-11-02 06:46:32 2019-11-02 06:50:45 t 1 1 147201 516 0.00 2019-11-02 06:48:14 2019-11-02 06:51:35 t 1 1 147203 544 0.00 2019-11-02 06:47:58 2019-11-02 06:54:17 t 1 2 147207 585 0.00 2019-11-02 06:57:14 2019-11-02 07:01:05 t 1 1 147216 562 0.00 2019-11-02 07:16:59 2019-11-02 07:17:13 t 1 1 147217 556 0.00 2019-11-02 01:04:31 2019-11-02 07:25:29 t 1 1 147222 581 0.00 2019-11-02 07:23:50 2019-11-02 07:31:27 t 1 1 147230 516 0.00 2019-11-02 07:44:51 2019-11-02 07:51:59 t 1 1 147231 585 0.00 2019-11-02 07:51:29 2019-11-02 07:53:50 t 1 1 147234 516 0.00 2019-11-02 07:56:10 2019-11-02 08:00:28 t 1 1 147236 562 0.00 2019-11-02 08:03:40 2019-11-02 08:07:16 t 1 1 147237 551 0.00 2019-11-02 07:42:49 2019-11-02 08:08:07 t 1 1 147241 585 0.00 2019-11-02 08:15:44 2019-11-02 08:20:02 t 1 1 147243 619 0.00 2019-11-02 08:23:26 2019-11-02 08:23:44 t 1 1 147245 609 0.00 2019-11-02 08:21:54 2019-11-02 08:28:03 t 1 1 147247 379 0.00 2019-11-02 08:08:32 2019-11-02 08:35:40 t 1 1 147248 599 0.00 2019-11-02 08:22:14 2019-11-02 08:39:04 t 1 1 147249 562 0.00 2019-11-02 08:38:19 2019-11-02 08:40:11 t 1 1 147253 597 0.00 2019-11-02 08:36:55 2019-11-02 08:44:40 t 1 1 147256 599 0.00 2019-11-02 08:39:00 2019-11-02 08:46:44 t 1 1 147259 562 0.00 2019-11-02 08:49:32 2019-11-02 08:50:12 t 1 1 147260 562 0.00 2019-11-02 08:50:33 2019-11-02 08:50:58 t 1 1 147262 562 0.00 2019-11-02 08:51:28 2019-11-02 08:51:47 t 1 1 147267 609 0.00 2019-11-02 08:28:03 2019-11-02 08:59:20 t 1 1 147268 562 0.00 2019-11-02 09:00:15 2019-11-02 09:01:18 t 1 1 147272 619 0.00 2019-11-02 09:00:57 2019-11-02 09:04:49 t 1 1 147275 623 0.00 2019-11-02 09:06:16 2019-11-02 09:06:18 t 1 1 147276 623 0.00 2019-11-02 09:07:11 2019-11-02 09:08:41 t 1 1 147296 623 0.00 2019-11-02 09:24:59 2019-11-02 09:25:12 t 1 1 147297 556 0.00 2019-11-02 07:25:29 2019-11-02 09:25:32 t 1 1 147299 609 0.00 2019-11-02 08:59:19 2019-11-02 09:25:57 t 1 1 147301 623 0.00 2019-11-02 09:26:53 2019-11-02 09:27:11 t 1 1 147302 445 0.00 2019-11-02 08:55:13 2019-11-02 09:28:01 t 1 1 147304 625 0.00 2019-11-02 09:18:03 2019-11-02 09:29:41 t 1 1 147305 585 0.00 2019-11-02 09:24:47 2019-11-02 09:30:54 t 1 1 147306 623 0.00 2019-11-02 09:29:28 2019-11-02 09:31:08 t 1 1 147307 514 0.00 2019-11-02 09:21:38 2019-11-02 09:32:22 t 1 1 147309 562 0.00 2019-11-02 09:26:50 2019-11-02 09:33:05 t 1 1 147310 623 0.00 2019-11-02 09:33:05 2019-11-02 09:33:18 t 1 1 147311 585 0.00 2019-11-02 09:30:54 2019-11-02 09:33:36 t 1 1 147312 581 0.00 2019-11-02 09:31:32 2019-11-02 09:34:09 t 1 1 147313 623 0.00 2019-11-02 09:34:52 2019-11-02 09:35:17 t 1 1 147314 583 0.00 2019-11-01 20:52:13 2019-11-02 09:36:21 t 1 1 147316 445 0.00 2019-11-02 09:29:03 2019-11-02 09:37:09 t 1 1 147317 623 0.00 2019-11-02 09:38:20 2019-11-02 09:38:23 t 1 1 147318 623 0.00 2019-11-02 09:40:34 2019-11-02 09:40:45 t 1 1 147319 615 0.00 2019-11-02 09:34:32 2019-11-02 09:41:38 t 1 1 147320 581 0.00 2019-11-02 09:41:51 2019-11-02 09:42:34 t 1 1 147321 623 0.00 2019-11-02 09:43:25 2019-11-02 09:43:28 t 1 1 147322 615 0.00 2019-11-02 09:41:38 2019-11-02 09:45:03 t 1 1 147323 623 0.00 2019-11-02 09:45:10 2019-11-02 09:45:21 t 1 1 147325 562 0.00 2019-11-02 09:44:41 2019-11-02 09:45:39 t 1 1 147330 581 0.00 2019-11-02 09:50:02 2019-11-02 09:50:04 t 1 1 147331 562 0.00 2019-11-02 09:51:03 2019-11-02 09:51:19 t 1 1 147332 581 0.00 2019-11-02 09:51:22 2019-11-02 09:51:24 t 1 1 147333 623 0.00 2019-11-02 09:51:18 2019-11-02 09:51:27 t 1 1 147334 562 0.00 2019-11-02 09:52:46 2019-11-02 09:53:10 t 1 1 147336 623 0.00 2019-11-02 09:51:39 2019-11-02 09:53:34 t 1 1 147337 623 0.00 2019-11-02 09:53:44 2019-11-02 09:55:34 t 1 1 147338 562 0.00 2019-11-02 09:56:26 2019-11-02 09:57:09 t 1 1 147340 623 0.00 2019-11-02 09:59:42 2019-11-02 09:59:51 t 1 1 147341 623 0.00 2019-11-02 09:58:41 2019-11-02 10:00:34 t 1 1 147343 623 0.00 2019-11-02 10:00:03 2019-11-02 10:01:34 t 1 1 147344 581 0.00 2019-11-02 09:54:46 2019-11-02 10:02:18 t 1 1 147345 585 0.00 2019-11-02 09:35:52 2019-11-02 10:02:50 t 1 1 147346 562 0.00 2019-11-02 10:04:01 2019-11-02 10:04:27 t 1 1 147348 623 0.00 2019-11-02 10:04:14 2019-11-02 10:05:01 t 1 1 147350 623 0.00 2019-11-02 10:03:53 2019-11-02 10:05:34 t 1 1 147351 622 0.00 2019-11-02 09:56:39 2019-11-02 10:05:45 t 1 1 147091 599 0.00 2019-11-01 22:47:50 2019-11-02 00:05:01 t 1 1 147094 545 0.00 2019-11-02 00:02:35 2019-11-02 00:11:29 t 1 1 147097 220 0.00 2019-11-01 22:52:28 2019-11-02 00:14:49 t 1 2 147098 587 0.00 2019-11-02 00:08:21 2019-11-02 00:15:14 t 1 1 147100 514 0.00 2019-11-01 23:41:57 2019-11-02 00:15:51 t 1 1 147102 483 0.00 2019-11-01 23:53:24 2019-11-02 00:20:24 t 1 1 147103 545 0.00 2019-11-02 00:11:29 2019-11-02 00:22:23 t 1 1 147106 551 0.00 2019-11-01 23:49:06 2019-11-02 00:26:03 t 1 1 147110 564 0.00 2019-11-01 22:21:09 2019-11-02 00:34:51 t 1 1 147111 220 0.00 2019-11-01 23:47:49 2019-11-02 00:38:10 t 1 2 147113 514 0.00 2019-11-02 00:15:51 2019-11-02 00:43:26 t 1 1 147115 551 0.00 2019-11-02 00:26:03 2019-11-02 00:52:19 t 1 1 147122 551 0.00 2019-11-02 00:52:19 2019-11-02 01:05:05 t 1 1 147125 617 0.00 2019-11-02 01:07:28 2019-11-02 01:09:52 t 1 1 147127 599 0.00 2019-11-02 01:13:48 2019-11-02 01:13:51 t 1 1 147129 551 0.00 2019-11-02 01:05:05 2019-11-02 01:18:51 t 1 1 147130 622 0.00 2019-11-01 22:37:04 2019-11-02 01:20:57 t 1 1 147131 587 0.00 2019-11-02 01:11:34 2019-11-02 01:23:04 t 1 1 147134 514 0.00 2019-11-02 00:43:26 2019-11-02 01:31:01 t 1 1 147139 587 0.00 2019-11-02 01:35:52 2019-11-02 01:44:09 t 1 1 147147 587 0.00 2019-11-02 02:00:18 2019-11-02 02:11:49 t 1 1 147149 514 0.00 2019-11-02 01:52:45 2019-11-02 02:20:44 t 1 1 147153 514 0.00 2019-11-02 02:24:10 2019-11-02 02:34:20 t 1 1 147163 514 0.00 2019-11-02 02:52:48 2019-11-02 03:22:52 t 1 1 147164 562 0.00 2019-11-02 03:32:50 2019-11-02 03:33:02 t 1 1 147175 562 0.00 2019-11-02 05:13:37 2019-11-02 05:13:51 t 1 1 147177 617 0.00 2019-11-02 05:15:13 2019-11-02 05:27:12 t 1 1 147181 445 0.00 2019-11-01 23:41:39 2019-11-02 05:38:30 t 1 1 147182 520 0.00 2019-11-02 05:36:30 2019-11-02 05:39:31 t 1 1 147183 562 0.00 2019-11-02 05:40:56 2019-11-02 05:41:17 t 1 1 147186 562 0.00 2019-11-02 05:51:51 2019-11-02 05:51:59 t 1 1 147187 520 0.00 2019-11-02 05:45:32 2019-11-02 05:57:02 t 1 1 147192 562 0.00 2019-11-02 06:23:53 2019-11-02 06:24:01 t 1 1 147193 622 0.00 2019-11-02 06:26:52 2019-11-02 06:27:46 t 1 1 147202 545 0.00 2019-11-02 06:46:27 2019-11-02 06:52:37 t 1 1 147208 566 0.00 2019-11-02 06:41:11 2019-11-02 07:04:12 t 1 1 147211 544 0.00 2019-11-02 06:55:27 2019-11-02 07:05:32 t 1 2 147212 562 0.00 2019-11-02 07:06:24 2019-11-02 07:06:35 t 1 1 147214 487 0.00 2019-11-01 20:17:08 2019-11-02 07:12:13 t 1 2 147218 566 0.00 2019-11-02 07:04:12 2019-11-02 07:25:52 t 1 1 147221 585 0.00 2019-11-02 07:29:07 2019-11-02 07:31:17 t 1 1 147223 562 0.00 2019-11-02 07:32:26 2019-11-02 07:33:58 t 1 1 147225 551 0.00 2019-11-02 07:09:05 2019-11-02 07:42:48 t 1 1 147226 481 0.00 2019-11-02 07:34:31 2019-11-02 07:43:53 t 1 1 147227 451 0.00 2019-11-02 06:54:52 2019-11-02 07:44:07 t 1 1 147228 585 0.00 2019-11-02 07:41:47 2019-11-02 07:46:07 t 1 1 147229 562 0.00 2019-11-02 07:45:48 2019-11-02 07:48:09 t 1 1 147232 562 0.00 2019-11-02 07:52:06 2019-11-02 07:54:16 t 1 1 147235 562 0.00 2019-11-02 07:55:22 2019-11-02 08:00:59 t 1 1 147246 562 0.00 2019-11-02 08:27:49 2019-11-02 08:30:24 t 1 1 147250 445 0.00 2019-11-02 06:31:02 2019-11-02 08:42:26 t 1 1 147251 456 0.00 2019-11-02 08:04:32 2019-11-02 08:43:28 t 1 1 147252 445 0.00 2019-11-02 08:42:26 2019-11-02 08:44:06 t 1 1 147255 562 0.00 2019-11-02 08:42:58 2019-11-02 08:46:34 t 1 1 147258 445 0.00 2019-11-02 08:48:17 2019-11-02 08:50:09 t 1 1 147261 619 0.00 2019-11-02 08:49:17 2019-11-02 08:51:33 t 1 1 147264 445 0.00 2019-11-02 08:50:08 2019-11-02 08:55:08 t 1 1 147270 611 0.00 2019-11-02 09:03:39 2019-11-02 09:03:56 t 1 1 147271 591 0.00 2019-11-02 08:59:02 2019-11-02 09:04:37 t 1 1 147279 623 0.00 2019-11-02 09:09:30 2019-11-02 09:09:47 t 1 1 147280 619 0.00 2019-11-02 09:04:53 2019-11-02 09:09:58 t 1 1 147283 623 0.00 2019-11-02 09:12:51 2019-11-02 09:13:25 t 1 1 147285 625 0.00 2019-11-02 09:11:04 2019-11-02 09:17:23 t 1 1 147286 623 0.00 2019-11-02 09:18:00 2019-11-02 09:18:03 t 1 1 147289 623 0.00 2019-11-02 09:19:16 2019-11-02 09:19:51 t 1 1 147290 220 0.00 2019-11-02 09:14:27 2019-11-02 09:20:47 t 1 2 147291 514 0.00 2019-11-02 03:22:51 2019-11-02 09:21:38 t 1 1 147292 562 0.00 2019-11-02 09:16:39 2019-11-02 09:22:14 t 1 1 147298 622 0.00 2019-11-02 09:24:25 2019-11-02 09:25:35 t 1 1 147300 623 0.00 2019-11-02 09:26:17 2019-11-02 09:26:53 t 1 1 147303 623 0.00 2019-11-02 09:28:12 2019-11-02 09:29:30 t 1 1 147308 623 0.00 2019-11-02 09:32:44 2019-11-02 09:32:53 t 1 1 147315 562 0.00 2019-11-02 09:34:03 2019-11-02 09:36:32 t 1 1 147324 581 0.00 2019-11-02 09:44:23 2019-11-02 09:45:25 t 1 1 147326 615 0.00 2019-11-02 09:45:03 2019-11-02 09:46:03 t 1 1 147327 623 0.00 2019-11-02 09:46:54 2019-11-02 09:47:04 t 1 1 147328 591 0.00 2019-11-02 09:06:29 2019-11-02 09:48:57 t 1 1 147329 623 0.00 2019-11-02 09:48:14 2019-11-02 09:49:18 t 1 1 147335 623 0.00 2019-11-02 09:53:04 2019-11-02 09:53:32 t 1 1 147339 514 0.00 2019-11-02 09:34:34 2019-11-02 09:57:09 t 1 1 147342 562 0.00 2019-11-02 10:00:06 2019-11-02 10:00:51 t 1 1 147347 609 0.00 2019-11-02 09:25:23 2019-11-02 10:04:36 t 1 1 147349 623 0.00 2019-11-02 10:05:09 2019-11-02 10:05:13 t 1 1 147352 570 0.00 2019-11-02 09:25:17 2019-11-02 10:06:06 t 1 1 147353 623 0.00 2019-11-02 10:06:08 2019-11-02 10:06:24 t 1 1 147354 556 0.00 2019-11-02 09:25:31 2019-11-02 10:06:30 t 1 1 147355 545 0.00 2019-11-02 09:54:15 2019-11-02 10:06:32 t 1 1 147356 623 0.00 2019-11-02 10:05:25 2019-11-02 10:06:34 t 1 1 147357 623 0.00 2019-11-02 10:06:32 2019-11-02 10:06:46 t 1 1 147358 623 0.00 2019-11-02 10:06:58 2019-11-02 10:07:03 t 1 1 147359 562 0.00 2019-11-02 10:07:41 2019-11-02 10:07:48 t 1 1 147360 625 0.00 2019-11-02 10:00:38 2019-11-02 10:09:29 t 1 1 147361 585 0.00 2019-11-02 10:07:01 2019-11-02 10:10:29 t 1 1 147362 562 0.00 2019-11-02 10:10:22 2019-11-02 10:10:46 t 1 1 147363 562 0.00 2019-11-02 10:11:10 2019-11-02 10:11:19 t 1 1 147364 220 0.00 2019-11-02 10:09:56 2019-11-02 10:11:52 t 1 2 147365 623 0.00 2019-11-02 10:08:22 2019-11-02 10:12:02 t 1 1 147366 562 0.00 2019-11-02 10:12:15 2019-11-02 10:12:40 t 1 1 147367 220 0.00 2019-11-02 10:12:15 2019-11-02 10:13:35 t 1 2 147368 623 0.00 2019-11-02 10:12:15 2019-11-02 10:13:52 t 1 1 147369 538 0.00 2019-11-02 10:13:59 2019-11-02 10:14:03 t 1 1 147370 445 0.00 2019-11-02 09:38:45 2019-11-02 10:14:11 t 1 1 147371 585 0.00 2019-11-02 10:10:28 2019-11-02 10:14:24 t 1 1 147372 623 0.00 2019-11-02 10:13:54 2019-11-02 10:14:48 t 1 1 147373 538 0.00 2019-11-02 10:14:03 2019-11-02 10:15:36 t 1 1 147374 623 0.00 2019-11-02 10:15:55 2019-11-02 10:15:58 t 1 1 147375 623 0.00 2019-11-02 10:17:48 2019-11-02 10:17:51 t 1 1 147376 416 0.00 2019-11-02 10:05:35 2019-11-02 10:18:25 t 1 1 147379 625 0.00 2019-11-02 10:09:29 2019-11-02 10:21:54 t 1 1 147384 556 0.00 2019-11-02 10:06:29 2019-11-02 10:26:38 t 1 1 147387 623 0.00 2019-11-02 10:28:50 2019-11-02 10:28:53 t 1 1 147388 623 0.00 2019-11-02 10:29:33 2019-11-02 10:29:49 t 1 1 147393 615 0.00 2019-11-02 10:32:57 2019-11-02 10:35:34 t 1 1 147395 623 0.00 2019-11-02 10:36:06 2019-11-02 10:36:10 t 1 1 147399 623 0.00 2019-11-02 10:38:01 2019-11-02 10:39:26 t 1 1 147401 562 0.00 2019-11-02 10:39:27 2019-11-02 10:39:52 t 1 1 147404 623 0.00 2019-11-02 10:39:56 2019-11-02 10:40:52 t 1 1 147405 623 0.00 2019-11-02 10:40:54 2019-11-02 10:41:27 t 1 1 147408 625 0.00 2019-11-02 10:21:54 2019-11-02 10:42:45 t 1 1 147409 623 0.00 2019-11-02 10:42:31 2019-11-02 10:43:34 t 1 1 147415 520 0.00 2019-11-02 10:31:12 2019-11-02 10:46:12 t 1 1 147417 562 0.00 2019-11-02 10:46:51 2019-11-02 10:46:58 t 1 1 147419 623 0.00 2019-11-02 10:46:22 2019-11-02 10:47:22 t 1 1 147421 570 0.00 2019-11-02 10:06:06 2019-11-02 10:49:41 t 1 1 147424 615 0.00 2019-11-02 10:48:38 2019-11-02 10:52:00 t 1 1 147426 623 0.00 2019-11-02 10:51:18 2019-11-02 10:52:34 t 1 1 147427 591 0.00 2019-11-02 10:51:30 2019-11-02 10:53:08 t 1 1 147429 619 0.00 2019-11-02 10:55:07 2019-11-02 10:55:38 t 1 1 147432 622 0.00 2019-11-02 10:47:14 2019-11-02 10:56:48 t 1 1 147444 623 0.00 2019-11-02 11:01:18 2019-11-02 11:01:57 t 1 1 147445 623 0.00 2019-11-02 11:02:02 2019-11-02 11:02:08 t 1 1 147446 623 0.00 2019-11-02 11:02:32 2019-11-02 11:03:31 t 1 1 147449 623 0.00 2019-11-02 11:07:41 2019-11-02 11:07:42 t 1 1 147453 625 0.00 2019-11-02 10:58:26 2019-11-02 11:12:43 t 1 1 147457 562 0.00 2019-11-02 11:13:26 2019-11-02 11:14:21 t 1 1 147459 445 0.00 2019-11-02 11:01:45 2019-11-02 11:15:28 t 1 1 147463 623 0.00 2019-11-02 11:16:48 2019-11-02 11:17:34 t 1 1 147468 623 0.00 2019-11-02 11:19:03 2019-11-02 11:19:15 t 1 1 147471 220 0.00 2019-11-02 11:19:31 2019-11-02 11:20:03 t 1 1 147472 220 0.00 2019-11-02 11:20:03 2019-11-02 11:20:44 t 1 1 147474 623 0.00 2019-11-02 11:20:36 2019-11-02 11:21:11 t 1 1 147475 220 0.00 2019-11-02 11:20:43 2019-11-02 11:21:22 t 1 1 147477 562 0.00 2019-11-02 11:21:23 2019-11-02 11:21:51 t 1 1 147478 220 0.00 2019-11-02 11:21:22 2019-11-02 11:22:17 t 1 1 147479 623 0.00 2019-11-02 11:22:28 2019-11-02 11:23:12 t 1 1 147481 544 0.00 2019-11-02 11:13:26 2019-11-02 11:23:31 t 1 2 147485 585 0.00 2019-11-02 11:23:17 2019-11-02 11:25:25 t 1 1 147490 623 0.00 2019-11-02 11:28:50 2019-11-02 11:29:53 t 1 1 147493 562 0.00 2019-11-02 11:27:25 2019-11-02 11:31:25 t 1 1 147497 562 0.00 2019-11-02 11:32:15 2019-11-02 11:32:36 t 1 1 147504 545 0.00 2019-11-02 11:31:45 2019-11-02 11:39:10 t 1 1 147506 220 0.00 2019-11-02 11:38:37 2019-11-02 11:39:27 t 1 1 147510 538 0.00 2019-11-02 11:33:48 2019-11-02 11:42:21 t 1 1 147513 514 0.00 2019-11-02 10:43:37 2019-11-02 11:44:07 t 1 1 147515 498 0.00 2019-11-02 10:52:48 2019-11-02 11:45:16 t 1 2 147516 623 0.00 2019-11-02 11:45:42 2019-11-02 11:45:46 t 1 1 147520 623 0.00 2019-11-02 11:47:08 2019-11-02 11:47:35 t 1 1 147528 622 0.00 2019-11-02 11:50:33 2019-11-02 11:54:15 t 1 1 147534 416 0.00 2019-11-02 11:48:34 2019-11-02 12:03:06 t 1 1 147536 512 0.00 2019-11-02 11:52:50 2019-11-02 12:03:35 t 1 1 147537 562 0.00 2019-11-02 12:04:32 2019-11-02 12:04:46 t 1 1 147545 623 0.00 2019-11-02 12:14:53 2019-11-02 12:14:54 t 1 1 147552 416 0.00 2019-11-02 12:07:52 2019-11-02 12:17:24 t 1 1 147564 416 0.00 2019-11-02 12:17:59 2019-11-02 12:30:47 t 1 1 147565 564 0.00 2019-11-02 11:31:42 2019-11-02 12:31:20 t 1 1 147571 623 0.00 2019-11-02 12:32:50 2019-11-02 12:33:10 t 1 1 147576 564 0.00 2019-11-02 12:31:20 2019-11-02 12:35:44 t 1 1 147579 625 0.00 2019-11-02 12:28:59 2019-11-02 12:37:37 t 1 1 147580 445 0.00 2019-11-02 12:29:23 2019-11-02 12:38:41 t 1 1 147581 562 0.00 2019-11-02 12:37:01 2019-11-02 12:38:59 t 1 1 147586 585 0.00 2019-11-02 12:39:34 2019-11-02 12:43:08 t 1 1 147590 574 0.00 2019-11-02 12:33:01 2019-11-02 12:46:18 t 1 1 147595 512 0.00 2019-11-02 12:33:51 2019-11-02 12:47:46 t 1 1 147596 623 0.00 2019-11-02 12:48:32 2019-11-02 12:48:39 t 1 1 147601 512 0.00 2019-11-02 12:50:19 2019-11-02 12:52:47 t 1 1 147606 591 0.00 2019-11-02 12:53:10 2019-11-02 12:56:13 t 1 1 147608 623 0.00 2019-11-02 12:56:27 2019-11-02 12:56:33 t 1 1 147609 566 0.00 2019-11-02 12:52:11 2019-11-02 12:57:24 t 1 1 147611 498 0.00 2019-11-02 12:53:08 2019-11-02 13:00:26 t 1 2 147613 562 0.00 2019-11-02 13:00:59 2019-11-02 13:02:28 t 1 1 147615 445 0.00 2019-11-02 12:38:41 2019-11-02 13:03:58 t 1 1 147617 623 0.00 2019-11-02 13:04:44 2019-11-02 13:04:47 t 1 1 147618 566 0.00 2019-11-02 12:57:24 2019-11-02 13:05:19 t 1 1 147622 623 0.00 2019-11-02 13:06:30 2019-11-02 13:06:57 t 1 1 147623 623 0.00 2019-11-02 13:08:12 2019-11-02 13:08:33 t 1 1 147627 623 0.00 2019-11-02 13:11:49 2019-11-02 13:12:16 t 1 1 147634 619 0.00 2019-11-02 13:15:01 2019-11-02 13:17:14 t 1 1 147636 528 0.00 2019-11-02 13:10:27 2019-11-02 13:20:47 t 1 1 147639 587 0.00 2019-11-02 13:21:32 2019-11-02 13:21:37 t 1 1 147640 445 0.00 2019-11-02 13:17:03 2019-11-02 13:22:10 t 1 1 147641 562 0.00 2019-11-02 13:22:25 2019-11-02 13:22:50 t 1 1 147642 498 0.00 2019-11-02 13:19:22 2019-11-02 13:24:33 t 1 2 147646 623 0.00 2019-11-02 13:23:38 2019-11-02 13:28:20 t 1 1 147652 562 0.00 2019-11-02 13:33:16 2019-11-02 13:33:40 t 1 1 147657 623 0.00 2019-11-02 13:39:11 2019-11-02 13:39:50 t 1 1 147659 623 0.00 2019-11-02 13:40:47 2019-11-02 13:40:53 t 1 1 147662 562 0.00 2019-11-02 13:44:04 2019-11-02 13:44:29 t 1 1 147664 445 0.00 2019-11-02 13:24:52 2019-11-02 13:45:32 t 1 1 147669 591 0.00 2019-11-02 13:45:41 2019-11-02 13:48:52 t 1 1 147671 623 0.00 2019-11-02 13:48:45 2019-11-02 13:49:17 t 1 1 147674 623 0.00 2019-11-02 13:51:47 2019-11-02 13:51:53 t 1 1 147678 615 0.00 2019-11-02 13:52:06 2019-11-02 13:53:19 t 1 1 147682 623 0.00 2019-11-02 13:55:06 2019-11-02 13:55:13 t 1 1 147684 623 0.00 2019-11-02 13:55:18 2019-11-02 13:55:45 t 1 1 147690 625 0.00 2019-11-02 13:44:10 2019-11-02 13:58:03 t 1 1 147693 623 0.00 2019-11-02 13:58:14 2019-11-02 13:59:13 t 1 1 147695 562 0.00 2019-11-02 14:05:40 2019-11-02 14:06:02 t 1 1 147699 562 0.00 2019-11-02 14:11:05 2019-11-02 14:12:09 t 1 1 147700 611 0.00 2019-11-02 14:04:06 2019-11-02 14:13:14 t 1 1 147704 619 0.00 2019-11-02 14:04:37 2019-11-02 14:16:36 t 1 1 147705 597 0.00 2019-11-02 14:13:56 2019-11-02 14:17:37 t 1 1 147708 512 0.00 2019-11-02 14:18:39 2019-11-02 14:19:52 t 1 1 147713 528 0.00 2019-11-02 14:05:15 2019-11-02 14:24:07 t 1 1 147720 623 0.00 2019-11-02 14:30:35 2019-11-02 14:31:16 t 1 1 147377 623 0.00 2019-11-02 10:18:25 2019-11-02 10:18:52 t 1 1 147380 623 0.00 2019-11-02 10:22:02 2019-11-02 10:22:58 t 1 1 147382 379 0.00 2019-11-02 08:35:40 2019-11-02 10:24:42 t 1 1 147385 416 0.00 2019-11-02 10:24:07 2019-11-02 10:26:42 t 1 1 147386 562 0.00 2019-11-02 10:16:00 2019-11-02 10:27:48 t 1 1 147389 585 0.00 2019-11-02 10:27:14 2019-11-02 10:31:09 t 1 1 147392 514 0.00 2019-11-02 09:57:09 2019-11-02 10:35:08 t 1 1 147397 623 0.00 2019-11-02 10:36:35 2019-11-02 10:37:42 t 1 1 147400 623 0.00 2019-11-02 10:37:54 2019-11-02 10:39:34 t 1 1 147403 585 0.00 2019-11-02 10:35:55 2019-11-02 10:40:24 t 1 1 147407 597 0.00 2019-11-02 10:07:00 2019-11-02 10:41:44 t 1 1 147410 514 0.00 2019-11-02 10:35:37 2019-11-02 10:43:38 t 1 1 147416 564 0.00 2019-11-02 10:12:55 2019-11-02 10:46:44 t 1 1 147418 622 0.00 2019-11-02 10:45:37 2019-11-02 10:47:15 t 1 1 147425 247 0.00 2019-11-02 10:52:30 2019-11-02 10:52:30 f 1 2 147430 564 0.00 2019-11-02 10:50:28 2019-11-02 10:56:02 t 1 1 147431 445 0.00 2019-11-02 10:37:43 2019-11-02 10:56:14 t 1 1 147433 623 0.00 2019-11-02 10:56:10 2019-11-02 10:56:56 t 1 1 147435 625 0.00 2019-11-02 10:42:45 2019-11-02 10:58:22 t 1 1 147437 623 0.00 2019-11-02 10:59:11 2019-11-02 10:59:13 t 1 1 147439 623 0.00 2019-11-02 10:59:25 2019-11-02 10:59:42 t 1 1 147441 562 0.00 2019-11-02 11:00:07 2019-11-02 11:00:29 t 1 1 147442 623 0.00 2019-11-02 11:00:50 2019-11-02 11:00:58 t 1 1 147443 445 0.00 2019-11-02 10:59:52 2019-11-02 11:01:45 t 1 1 147451 562 0.00 2019-11-02 11:10:49 2019-11-02 11:11:13 t 1 1 147452 623 0.00 2019-11-02 11:08:11 2019-11-02 11:12:01 t 1 1 147461 220 0.00 2019-11-02 07:10:05 2019-11-02 11:16:50 t 1 1 147462 220 0.00 2019-11-02 11:16:50 2019-11-02 11:17:20 t 1 1 147464 220 0.00 2019-11-02 11:17:20 2019-11-02 11:17:53 t 1 1 147465 220 0.00 2019-11-02 11:17:53 2019-11-02 11:18:25 t 1 1 147469 220 0.00 2019-11-02 11:18:58 2019-11-02 11:19:31 t 1 1 147476 623 0.00 2019-11-02 11:21:16 2019-11-02 11:21:30 t 1 1 147480 545 0.00 2019-11-02 10:31:58 2019-11-02 11:23:28 t 1 1 147482 597 0.00 2019-11-02 11:11:44 2019-11-02 11:23:58 t 1 1 147484 623 0.00 2019-11-02 11:24:45 2019-11-02 11:25:11 t 1 1 147486 220 0.00 2019-11-02 11:24:31 2019-11-02 11:25:45 t 1 1 147487 623 0.00 2019-11-02 11:26:38 2019-11-02 11:28:10 t 1 1 147489 220 0.00 2019-11-02 11:28:37 2019-11-02 11:29:46 t 1 1 147491 220 0.00 2019-11-02 11:29:45 2019-11-02 11:30:20 t 1 1 147492 220 0.00 2019-11-02 11:30:20 2019-11-02 11:31:19 t 1 1 147498 623 0.00 2019-11-02 11:33:31 2019-11-02 11:34:31 t 1 1 147509 622 0.00 2019-11-02 11:10:26 2019-11-02 11:41:46 t 1 1 147511 623 0.00 2019-11-02 11:42:06 2019-11-02 11:43:07 t 1 1 147512 562 0.00 2019-11-02 11:42:20 2019-11-02 11:44:01 t 1 1 147514 562 0.00 2019-11-02 11:44:39 2019-11-02 11:45:02 t 1 1 147519 623 0.00 2019-11-02 11:45:58 2019-11-02 11:47:34 t 1 1 147521 622 0.00 2019-11-02 11:45:53 2019-11-02 11:48:11 t 1 1 147522 416 0.00 2019-11-02 11:32:30 2019-11-02 11:48:30 t 1 1 147526 512 0.00 2019-11-02 11:48:40 2019-11-02 11:51:33 t 1 1 147527 623 0.00 2019-11-02 11:52:09 2019-11-02 11:52:09 t 1 1 147530 481 0.00 2019-11-02 11:35:25 2019-11-02 11:56:05 t 1 1 147533 615 0.00 2019-11-02 12:00:32 2019-11-02 12:01:35 t 1 1 147540 220 0.00 2019-11-02 11:39:58 2019-11-02 12:07:31 t 1 1 147543 623 0.00 2019-11-02 12:11:25 2019-11-02 12:11:37 t 1 1 147548 443 0.00 2019-11-02 12:10:41 2019-11-02 12:16:14 t 1 1 147549 623 0.00 2019-11-02 12:15:35 2019-11-02 12:16:29 t 1 1 147551 443 0.00 2019-11-02 12:16:20 2019-11-02 12:17:22 t 1 1 147554 591 0.00 2019-11-02 12:17:13 2019-11-02 12:18:44 t 1 1 147557 445 0.00 2019-11-02 11:49:47 2019-11-02 12:22:00 t 1 1 147558 562 0.00 2019-11-02 12:21:40 2019-11-02 12:23:10 t 1 1 147559 615 0.00 2019-11-02 12:22:40 2019-11-02 12:28:49 t 1 1 147561 625 0.00 2019-11-02 12:18:16 2019-11-02 12:28:59 t 1 1 147562 619 0.00 2019-11-02 12:25:20 2019-11-02 12:29:35 t 1 1 147566 623 0.00 2019-11-02 12:25:16 2019-11-02 12:31:24 t 1 1 147568 623 0.00 2019-11-02 12:31:24 2019-11-02 12:31:35 t 1 1 147570 591 0.00 2019-11-02 12:30:04 2019-11-02 12:32:22 t 1 1 147572 623 0.00 2019-11-02 12:33:22 2019-11-02 12:33:35 t 1 1 147573 514 0.00 2019-11-02 12:03:27 2019-11-02 12:34:28 t 1 1 147575 619 0.00 2019-11-02 12:30:35 2019-11-02 12:34:55 t 1 1 147582 379 0.00 2019-11-02 10:24:42 2019-11-02 12:39:31 t 1 1 147584 615 0.00 2019-11-02 12:38:43 2019-11-02 12:40:56 t 1 1 147588 609 0.00 2019-11-02 12:15:57 2019-11-02 12:44:59 t 1 1 147592 623 0.00 2019-11-02 12:42:07 2019-11-02 12:46:43 t 1 1 147594 597 0.00 2019-11-02 12:37:22 2019-11-02 12:47:21 t 1 1 147600 623 0.00 2019-11-02 12:49:24 2019-11-02 12:52:22 t 1 1 147602 625 0.00 2019-11-02 12:43:08 2019-11-02 12:53:05 t 1 1 147603 623 0.00 2019-11-02 12:53:41 2019-11-02 12:53:44 t 1 1 147605 593 0.00 2019-11-02 11:59:23 2019-11-02 12:54:10 t 1 1 147610 623 0.00 2019-11-02 12:57:13 2019-11-02 12:59:16 t 1 1 147620 623 0.00 2019-11-02 13:06:10 2019-11-02 13:06:18 t 1 1 147624 623 0.00 2019-11-02 13:11:17 2019-11-02 13:11:26 t 1 1 147626 562 0.00 2019-11-02 13:11:46 2019-11-02 13:12:06 t 1 1 147628 623 0.00 2019-11-02 13:12:54 2019-11-02 13:12:55 t 1 1 147629 570 0.00 2019-11-02 10:49:41 2019-11-02 13:14:40 t 1 1 147631 623 0.00 2019-11-02 13:15:39 2019-11-02 13:15:43 t 1 1 147632 623 0.00 2019-11-02 13:16:22 2019-11-02 13:16:31 t 1 1 147633 445 0.00 2019-11-02 13:03:58 2019-11-02 13:17:03 t 1 1 147635 625 0.00 2019-11-02 12:53:05 2019-11-02 13:18:00 t 1 1 147643 445 0.00 2019-11-02 13:22:54 2019-11-02 13:24:52 t 1 1 147644 512 0.00 2019-11-02 13:23:16 2019-11-02 13:25:58 t 1 1 147645 570 0.00 2019-11-02 13:22:34 2019-11-02 13:28:06 t 1 1 147650 587 0.00 2019-11-02 13:32:01 2019-11-02 13:32:09 t 1 1 147653 570 0.00 2019-11-02 13:32:48 2019-11-02 13:33:51 t 1 1 147655 587 0.00 2019-11-02 13:33:22 2019-11-02 13:35:32 t 1 1 147656 619 0.00 2019-11-02 13:33:00 2019-11-02 13:37:35 t 1 1 147666 623 0.00 2019-11-02 13:45:34 2019-11-02 13:46:35 t 1 1 147667 623 0.00 2019-11-02 13:47:41 2019-11-02 13:48:19 t 1 1 147670 416 0.00 2019-11-02 12:31:12 2019-11-02 13:48:58 t 1 1 147676 443 0.00 2019-11-02 13:52:04 2019-11-02 13:53:01 t 1 1 147677 623 0.00 2019-11-02 13:53:03 2019-11-02 13:53:10 t 1 1 147679 623 0.00 2019-11-02 13:53:23 2019-11-02 13:53:45 t 1 1 147680 623 0.00 2019-11-02 13:53:52 2019-11-02 13:54:35 t 1 1 147681 623 0.00 2019-11-02 13:54:42 2019-11-02 13:54:55 t 1 1 147685 623 0.00 2019-11-02 13:55:50 2019-11-02 13:56:52 t 1 1 147686 623 0.00 2019-11-02 13:56:57 2019-11-02 13:57:14 t 1 1 147688 623 0.00 2019-11-02 13:57:19 2019-11-02 13:57:47 t 1 1 147689 361 0.00 2019-11-02 13:52:53 2019-11-02 13:58:02 t 1 2 147378 623 0.00 2019-11-02 10:19:58 2019-11-02 10:20:01 t 1 1 147381 623 0.00 2019-11-02 10:23:43 2019-11-02 10:23:54 t 1 1 147383 623 0.00 2019-11-02 10:25:30 2019-11-02 10:25:54 t 1 1 147390 623 0.00 2019-11-02 10:30:55 2019-11-02 10:31:56 t 1 1 147391 562 0.00 2019-11-02 10:28:53 2019-11-02 10:32:12 t 1 1 147394 623 0.00 2019-11-02 10:34:01 2019-11-02 10:35:34 t 1 1 147396 445 0.00 2019-11-02 10:14:07 2019-11-02 10:37:38 t 1 1 147398 538 0.00 2019-11-02 10:37:21 2019-11-02 10:38:38 t 1 1 147402 416 0.00 2019-11-02 10:26:42 2019-11-02 10:40:09 t 1 1 147406 591 0.00 2019-11-02 09:48:57 2019-11-02 10:41:29 t 1 1 147411 416 0.00 2019-11-02 10:42:12 2019-11-02 10:44:19 t 1 1 147412 622 0.00 2019-11-02 10:05:45 2019-11-02 10:45:08 t 1 1 147413 220 0.00 2019-11-02 10:24:24 2019-11-02 10:45:47 t 1 2 147414 623 0.00 2019-11-02 10:46:01 2019-11-02 10:46:10 t 1 1 147420 520 0.00 2019-11-02 10:46:11 2019-11-02 10:49:00 t 1 1 147422 564 0.00 2019-11-02 10:46:44 2019-11-02 10:50:28 t 1 1 147423 562 0.00 2019-11-02 10:49:25 2019-11-02 10:51:09 t 1 1 147428 623 0.00 2019-11-02 10:51:58 2019-11-02 10:53:34 t 1 1 147434 623 0.00 2019-11-02 10:56:56 2019-11-02 10:58:03 t 1 1 147436 623 0.00 2019-11-02 10:58:02 2019-11-02 10:58:41 t 1 1 147438 623 0.00 2019-11-02 10:58:47 2019-11-02 10:59:25 t 1 1 147440 445 0.00 2019-11-02 10:57:01 2019-11-02 10:59:52 t 1 1 147447 623 0.00 2019-11-02 11:04:52 2019-11-02 11:04:54 t 1 1 147448 623 0.00 2019-11-02 11:06:22 2019-11-02 11:07:07 t 1 1 147450 622 0.00 2019-11-02 11:04:20 2019-11-02 11:10:22 t 1 1 147454 416 0.00 2019-11-02 10:45:24 2019-11-02 11:12:50 t 1 1 147455 544 0.00 2019-11-02 11:12:52 2019-11-02 11:13:00 t 1 2 147456 623 0.00 2019-11-02 11:13:42 2019-11-02 11:13:45 t 1 1 147458 619 0.00 2019-11-02 11:13:11 2019-11-02 11:14:56 t 1 1 147460 615 0.00 2019-11-02 11:10:12 2019-11-02 11:15:38 t 1 1 147466 623 0.00 2019-11-02 11:18:31 2019-11-02 11:18:47 t 1 1 147467 220 0.00 2019-11-02 11:18:25 2019-11-02 11:18:59 t 1 1 147470 623 0.00 2019-11-02 11:19:32 2019-11-02 11:19:34 t 1 1 147473 623 0.00 2019-11-02 11:19:48 2019-11-02 11:20:49 t 1 1 147483 220 0.00 2019-11-02 11:22:17 2019-11-02 11:24:31 t 1 1 147488 220 0.00 2019-11-02 11:25:44 2019-11-02 11:28:38 t 1 1 147494 564 0.00 2019-11-02 10:56:02 2019-11-02 11:31:42 t 1 1 147495 416 0.00 2019-11-02 11:15:15 2019-11-02 11:31:47 t 1 1 147496 623 0.00 2019-11-02 11:30:16 2019-11-02 11:32:25 t 1 1 147499 220 0.00 2019-11-02 11:31:18 2019-11-02 11:34:31 t 1 1 147500 481 0.00 2019-11-02 08:00:16 2019-11-02 11:35:25 t 1 1 147501 220 0.00 2019-11-02 11:34:31 2019-11-02 11:35:27 t 1 1 147502 623 0.00 2019-11-02 11:37:04 2019-11-02 11:37:06 t 1 1 147503 220 0.00 2019-11-02 11:35:27 2019-11-02 11:38:38 t 1 1 147505 615 0.00 2019-11-02 11:36:08 2019-11-02 11:39:24 t 1 1 147507 220 0.00 2019-11-02 11:39:27 2019-11-02 11:39:59 t 1 1 147508 623 0.00 2019-11-02 11:40:00 2019-11-02 11:41:34 t 1 1 147517 623 0.00 2019-11-02 11:45:19 2019-11-02 11:46:34 t 1 1 147518 445 0.00 2019-11-02 11:15:28 2019-11-02 11:47:30 t 1 1 147523 622 0.00 2019-11-02 11:48:14 2019-11-02 11:49:48 t 1 1 147524 516 0.00 2019-11-02 11:43:21 2019-11-02 11:49:59 t 1 1 147525 623 0.00 2019-11-02 11:48:25 2019-11-02 11:51:28 t 1 1 147529 562 0.00 2019-11-02 11:53:41 2019-11-02 11:54:21 t 1 1 147531 593 0.00 2019-11-02 11:13:06 2019-11-02 11:59:23 t 1 1 147532 591 0.00 2019-11-02 11:36:57 2019-11-02 12:00:58 t 1 1 147535 514 0.00 2019-11-02 11:44:07 2019-11-02 12:03:16 t 1 1 147538 619 0.00 2019-11-02 12:02:22 2019-11-02 12:05:49 t 1 1 147539 591 0.00 2019-11-02 12:04:52 2019-11-02 12:07:10 t 1 1 147541 581 0.00 2019-11-02 11:53:36 2019-11-02 12:09:42 t 1 1 147542 623 0.00 2019-11-02 11:54:02 2019-11-02 12:10:30 t 1 1 147544 591 0.00 2019-11-02 12:09:34 2019-11-02 12:12:47 t 1 1 147546 562 0.00 2019-11-02 12:14:13 2019-11-02 12:15:43 t 1 1 147547 609 0.00 2019-11-02 10:04:43 2019-11-02 12:15:58 t 1 1 147550 623 0.00 2019-11-02 12:16:28 2019-11-02 12:17:19 t 1 1 147553 623 0.00 2019-11-02 12:17:18 2019-11-02 12:18:23 t 1 1 147555 623 0.00 2019-11-02 12:19:33 2019-11-02 12:20:04 t 1 1 147556 623 0.00 2019-11-02 12:21:19 2019-11-02 12:21:21 t 1 1 147560 445 0.00 2019-11-02 12:21:48 2019-11-02 12:28:59 t 1 1 147563 516 0.00 2019-11-02 12:23:39 2019-11-02 12:30:17 t 1 1 147567 597 0.00 2019-11-02 12:26:12 2019-11-02 12:31:30 t 1 1 147569 545 0.00 2019-11-02 12:30:08 2019-11-02 12:32:08 t 1 1 147574 623 0.00 2019-11-02 12:34:50 2019-11-02 12:34:53 t 1 1 147577 562 0.00 2019-11-02 12:27:21 2019-11-02 12:37:01 t 1 1 147578 514 0.00 2019-11-02 12:36:50 2019-11-02 12:37:07 t 1 1 147583 564 0.00 2019-11-02 12:39:04 2019-11-02 12:40:37 t 1 1 147585 623 0.00 2019-11-02 12:35:37 2019-11-02 12:42:07 t 1 1 147587 562 0.00 2019-11-02 12:41:17 2019-11-02 12:44:48 t 1 1 147589 456 0.00 2019-11-02 12:16:31 2019-11-02 12:45:53 t 1 1 147591 520 0.00 2019-11-02 12:41:47 2019-11-02 12:46:40 t 1 1 147593 627 0.00 2019-11-02 12:45:17 2019-11-02 12:47:06 t 1 1 147597 520 0.00 2019-11-02 12:48:51 2019-11-02 12:50:30 t 1 1 147598 562 0.00 2019-11-02 12:44:48 2019-11-02 12:51:34 t 1 1 147599 498 0.00 2019-11-02 12:43:02 2019-11-02 12:52:19 t 1 2 147604 562 0.00 2019-11-02 12:53:42 2019-11-02 12:54:05 t 1 1 147607 619 0.00 2019-11-02 12:50:32 2019-11-02 12:56:25 t 1 1 147612 623 0.00 2019-11-02 13:00:21 2019-11-02 13:00:31 t 1 1 147614 528 0.00 2019-11-02 12:59:04 2019-11-02 13:02:44 t 1 1 147616 623 0.00 2019-11-02 13:00:46 2019-11-02 13:04:38 t 1 1 147619 591 0.00 2019-11-02 13:03:47 2019-11-02 13:06:14 t 1 1 147621 623 0.00 2019-11-02 13:05:43 2019-11-02 13:06:30 t 1 1 147625 623 0.00 2019-11-02 13:11:34 2019-11-02 13:11:37 t 1 1 147630 591 0.00 2019-11-02 13:09:12 2019-11-02 13:15:42 t 1 1 147637 587 0.00 2019-11-02 13:19:39 2019-11-02 13:20:55 t 1 1 147638 623 0.00 2019-11-02 13:21:27 2019-11-02 13:21:30 t 1 1 147647 627 0.00 2019-11-02 13:25:15 2019-11-02 13:28:35 t 1 1 147648 443 0.00 2019-11-02 13:24:57 2019-11-02 13:29:32 t 1 1 147649 587 0.00 2019-11-02 13:21:57 2019-11-02 13:30:32 t 1 1 147651 570 0.00 2019-11-02 13:28:52 2019-11-02 13:32:48 t 1 1 147654 625 0.00 2019-11-02 13:18:00 2019-11-02 13:34:51 t 1 1 147658 623 0.00 2019-11-02 13:40:14 2019-11-02 13:40:42 t 1 1 147660 623 0.00 2019-11-02 13:41:04 2019-11-02 13:41:56 t 1 1 147661 625 0.00 2019-11-02 13:34:51 2019-11-02 13:44:10 t 1 1 147663 623 0.00 2019-11-02 13:44:53 2019-11-02 13:45:03 t 1 1 147665 619 0.00 2019-11-02 13:43:24 2019-11-02 13:46:13 t 1 1 147668 623 0.00 2019-11-02 13:48:24 2019-11-02 13:48:40 t 1 1 147672 623 0.00 2019-11-02 13:49:22 2019-11-02 13:50:04 t 1 1 147673 623 0.00 2019-11-02 13:50:09 2019-11-02 13:51:42 t 1 1 147675 623 0.00 2019-11-02 13:51:58 2019-11-02 13:52:58 t 1 1 147683 562 0.00 2019-11-02 13:54:50 2019-11-02 13:55:17 t 1 1 147687 562 0.00 2019-11-02 13:56:40 2019-11-02 13:57:24 t 1 1 147692 619 0.00 2019-11-02 13:56:30 2019-11-02 13:58:51 t 1 1 147696 512 0.00 2019-11-02 14:00:36 2019-11-02 14:06:18 t 1 1 147697 623 0.00 2019-11-02 13:59:30 2019-11-02 14:07:40 t 1 1 147698 587 0.00 2019-11-02 13:53:08 2019-11-02 14:08:52 t 1 1 147701 611 0.00 2019-11-02 14:13:14 2019-11-02 14:14:43 t 1 1 147702 623 0.00 2019-11-02 14:07:40 2019-11-02 14:15:39 t 1 1 147703 625 0.00 2019-11-02 13:58:03 2019-11-02 14:15:57 t 1 1 147707 456 0.00 2019-11-02 13:46:44 2019-11-02 14:18:50 t 1 1 147709 625 0.00 2019-11-02 14:15:57 2019-11-02 14:20:23 t 1 1 147712 585 0.00 2019-11-02 14:17:34 2019-11-02 14:22:39 t 1 1 147714 597 0.00 2019-11-02 14:23:23 2019-11-02 14:24:46 t 1 1 147717 587 0.00 2019-11-02 14:09:01 2019-11-02 14:29:08 t 1 1 147722 623 0.00 2019-11-02 14:31:29 2019-11-02 14:31:34 t 1 1 147723 622 0.00 2019-11-02 13:47:40 2019-11-02 14:31:42 t 1 1 147725 623 0.00 2019-11-02 14:31:41 2019-11-02 14:32:24 t 1 1 147728 562 0.00 2019-11-02 14:26:54 2019-11-02 14:33:04 t 1 1 147731 623 0.00 2019-11-02 14:33:43 2019-11-02 14:33:50 t 1 1 147732 587 0.00 2019-11-02 14:29:08 2019-11-02 14:35:19 t 1 1 147733 587 0.00 2019-11-02 14:35:49 2019-11-02 14:37:36 t 1 1 147737 562 0.00 2019-11-02 14:35:27 2019-11-02 14:41:03 t 1 1 147738 562 0.00 2019-11-02 14:42:09 2019-11-02 14:42:25 t 1 1 147740 623 0.00 2019-11-02 14:42:33 2019-11-02 14:42:51 t 1 1 147743 623 0.00 2019-11-02 14:43:29 2019-11-02 14:43:50 t 1 1 147745 562 0.00 2019-11-02 14:43:54 2019-11-02 14:44:09 t 1 1 147748 623 0.00 2019-11-02 14:44:50 2019-11-02 14:44:52 t 1 1 147750 585 0.00 2019-11-02 14:22:38 2019-11-02 14:45:10 t 1 1 147754 587 0.00 2019-11-02 14:39:06 2019-11-02 14:48:41 t 1 1 147755 625 0.00 2019-11-02 14:46:24 2019-11-02 14:50:25 t 1 1 147761 623 0.00 2019-11-02 14:51:29 2019-11-02 14:51:35 t 1 1 147765 623 0.00 2019-11-02 14:52:34 2019-11-02 14:52:45 t 1 1 147766 623 0.00 2019-11-02 14:52:56 2019-11-02 14:53:03 t 1 1 147768 570 0.00 2019-11-02 14:53:14 2019-11-02 14:54:17 t 1 1 147770 619 0.00 2019-11-02 14:43:58 2019-11-02 14:54:38 t 1 1 147772 587 0.00 2019-11-02 14:54:57 2019-11-02 14:55:32 t 1 1 147776 623 0.00 2019-11-02 14:56:31 2019-11-02 14:56:32 t 1 1 147777 623 0.00 2019-11-02 14:56:40 2019-11-02 14:56:41 t 1 1 147778 623 0.00 2019-11-02 14:56:46 2019-11-02 14:56:53 t 1 1 147782 623 0.00 2019-11-02 14:57:56 2019-11-02 14:58:25 t 1 1 147785 623 0.00 2019-11-02 14:58:51 2019-11-02 14:58:57 t 1 1 147790 623 0.00 2019-11-02 14:59:49 2019-11-02 15:00:10 t 1 1 147791 623 0.00 2019-11-02 15:00:15 2019-11-02 15:00:32 t 1 1 147792 623 0.00 2019-11-02 15:00:45 2019-11-02 15:00:46 t 1 1 147794 623 0.00 2019-11-02 15:00:59 2019-11-02 15:01:15 t 1 1 147797 623 0.00 2019-11-02 15:01:34 2019-11-02 15:01:41 t 1 1 147804 587 0.00 2019-11-02 14:56:14 2019-11-02 15:02:45 t 1 1 147805 556 0.00 2019-11-02 14:59:01 2019-11-02 15:02:51 t 1 1 147809 623 0.00 2019-11-02 15:03:28 2019-11-02 15:03:35 t 1 1 147813 623 0.00 2019-11-02 15:04:05 2019-11-02 15:04:27 t 1 1 147818 570 0.00 2019-11-02 14:54:35 2019-11-02 15:06:05 t 1 1 147821 623 0.00 2019-11-02 15:04:40 2019-11-02 15:06:34 t 1 1 147841 556 0.00 2019-11-02 15:17:24 2019-11-02 15:21:34 t 1 1 147843 623 0.00 2019-11-02 15:21:42 2019-11-02 15:22:35 t 1 1 147845 562 0.00 2019-11-02 15:21:41 2019-11-02 15:22:42 t 1 1 147847 623 0.00 2019-11-02 15:22:40 2019-11-02 15:23:17 t 1 1 147854 623 0.00 2019-11-02 15:25:42 2019-11-02 15:25:47 t 1 1 147856 623 0.00 2019-11-02 15:25:52 2019-11-02 15:26:25 t 1 1 147858 623 0.00 2019-11-02 15:26:30 2019-11-02 15:26:37 t 1 1 147862 562 0.00 2019-11-02 15:28:43 2019-11-02 15:29:54 t 1 1 147863 587 0.00 2019-11-02 15:26:10 2019-11-02 15:29:59 t 1 1 147865 623 0.00 2019-11-02 15:26:42 2019-11-02 15:31:49 t 1 1 147868 528 0.00 2019-11-02 15:27:08 2019-11-02 15:35:13 t 1 1 147869 619 0.00 2019-11-02 15:34:08 2019-11-02 15:36:07 t 1 1 147872 516 0.00 2019-11-02 15:31:31 2019-11-02 15:37:42 t 1 1 147873 570 0.00 2019-11-02 15:22:57 2019-11-02 15:38:09 t 1 1 147875 627 0.00 2019-11-02 15:12:16 2019-11-02 15:38:21 t 1 1 147876 528 0.00 2019-11-02 15:35:13 2019-11-02 15:39:21 t 1 1 147878 591 0.00 2019-11-02 15:38:07 2019-11-02 15:39:46 t 1 1 147882 456 0.00 2019-11-02 15:22:50 2019-11-02 15:41:38 t 1 1 147887 430 0.00 2019-11-02 15:34:32 2019-11-02 15:44:39 t 1 1 147892 556 0.00 2019-11-02 15:44:15 2019-11-02 15:46:14 t 1 1 147893 430 0.00 2019-11-02 15:46:36 2019-11-02 15:46:39 t 1 1 147895 562 0.00 2019-11-02 15:46:59 2019-11-02 15:47:10 t 1 1 147897 430 0.00 2019-11-02 15:47:45 2019-11-02 15:47:58 t 1 1 147900 556 0.00 2019-11-02 15:47:59 2019-11-02 15:50:10 t 1 1 147901 597 0.00 2019-11-02 15:39:00 2019-11-02 15:50:36 t 1 1 147904 556 0.00 2019-11-02 15:50:10 2019-11-02 15:52:02 t 1 1 147909 623 0.00 2019-11-02 15:54:34 2019-11-02 15:54:36 t 1 1 147911 623 0.00 2019-11-02 15:54:43 2019-11-02 15:54:44 t 1 1 147914 516 0.00 2019-11-02 15:53:36 2019-11-02 15:56:24 t 1 1 147915 430 0.00 2019-11-02 15:56:45 2019-11-02 15:57:20 t 1 1 147917 445 0.00 2019-11-02 15:53:28 2019-11-02 15:59:17 t 1 1 147919 508 0.00 2019-11-02 15:04:22 2019-11-02 15:59:40 t 1 2 147920 556 0.00 2019-11-02 15:56:21 2019-11-02 16:00:13 t 1 1 147922 591 0.00 2019-11-02 15:49:37 2019-11-02 16:01:45 t 1 1 147925 556 0.00 2019-11-02 16:00:13 2019-11-02 16:02:06 t 1 1 147926 562 0.00 2019-11-02 16:01:17 2019-11-02 16:02:24 t 1 1 147928 619 0.00 2019-11-02 15:54:24 2019-11-02 16:03:13 t 1 1 147930 445 0.00 2019-11-02 16:01:57 2019-11-02 16:03:46 t 1 1 147931 445 0.00 2019-11-02 16:03:54 2019-11-02 16:04:41 t 1 1 147932 445 0.00 2019-11-02 16:04:45 2019-11-02 16:05:13 t 1 1 147934 562 0.00 2019-11-02 16:05:07 2019-11-02 16:06:30 t 1 1 147941 562 0.00 2019-11-02 16:08:46 2019-11-02 16:11:02 t 1 1 147942 597 0.00 2019-11-02 15:51:15 2019-11-02 16:12:26 t 1 1 147943 514 0.00 2019-11-02 14:55:45 2019-11-02 16:13:03 t 1 1 147951 587 0.00 2019-11-02 16:15:02 2019-11-02 16:17:01 t 1 1 147954 619 0.00 2019-11-02 16:15:12 2019-11-02 16:20:58 t 1 1 147958 430 0.00 2019-11-02 16:27:32 2019-11-02 16:27:50 t 1 1 147960 562 0.00 2019-11-02 16:30:13 2019-11-02 16:30:39 t 1 1 147961 587 0.00 2019-11-02 16:28:06 2019-11-02 16:31:31 t 1 1 147964 508 0.00 2019-11-02 16:26:09 2019-11-02 16:33:13 t 1 2 147968 562 0.00 2019-11-02 16:34:05 2019-11-02 16:34:48 t 1 1 147969 623 0.00 2019-11-02 16:16:42 2019-11-02 16:35:09 t 1 1 147972 430 0.00 2019-11-02 16:35:59 2019-11-02 16:36:11 t 1 1 147977 623 0.00 2019-11-02 16:36:34 2019-11-02 16:36:46 t 1 1 147691 623 0.00 2019-11-02 13:57:52 2019-11-02 13:58:09 t 1 1 147694 623 0.00 2019-11-02 13:59:18 2019-11-02 13:59:25 t 1 1 147706 512 0.00 2019-11-02 14:07:35 2019-11-02 14:18:04 t 1 1 147710 562 0.00 2019-11-02 14:20:30 2019-11-02 14:21:33 t 1 1 147711 512 0.00 2019-11-02 14:21:09 2019-11-02 14:22:33 t 1 1 147715 514 0.00 2019-11-02 12:37:07 2019-11-02 14:26:49 t 1 1 147716 619 0.00 2019-11-02 14:21:53 2019-11-02 14:27:34 t 1 1 147718 623 0.00 2019-11-02 14:15:39 2019-11-02 14:30:30 t 1 1 147719 597 0.00 2019-11-02 14:28:39 2019-11-02 14:31:08 t 1 1 147730 623 0.00 2019-11-02 14:33:13 2019-11-02 14:33:38 t 1 1 147736 619 0.00 2019-11-02 14:34:34 2019-11-02 14:40:01 t 1 1 147739 623 0.00 2019-11-02 14:38:10 2019-11-02 14:42:28 t 1 1 147741 597 0.00 2019-11-02 14:36:37 2019-11-02 14:42:52 t 1 1 147742 623 0.00 2019-11-02 14:43:05 2019-11-02 14:43:18 t 1 1 147747 623 0.00 2019-11-02 14:44:21 2019-11-02 14:44:37 t 1 1 147749 623 0.00 2019-11-02 14:44:57 2019-11-02 14:45:03 t 1 1 147751 623 0.00 2019-11-02 14:45:08 2019-11-02 14:45:24 t 1 1 147752 625 0.00 2019-11-02 14:20:23 2019-11-02 14:46:24 t 1 1 147753 514 0.00 2019-11-02 14:27:55 2019-11-02 14:47:26 t 1 1 147757 623 0.00 2019-11-02 14:50:46 2019-11-02 14:50:52 t 1 1 147760 623 0.00 2019-11-02 14:51:22 2019-11-02 14:51:24 t 1 1 147763 623 0.00 2019-11-02 14:51:55 2019-11-02 14:51:57 t 1 1 147764 623 0.00 2019-11-02 14:52:02 2019-11-02 14:52:08 t 1 1 147767 570 0.00 2019-11-02 14:38:37 2019-11-02 14:53:08 t 1 1 147769 623 0.00 2019-11-02 14:53:16 2019-11-02 14:54:34 t 1 1 147771 587 0.00 2019-11-02 14:49:00 2019-11-02 14:54:43 t 1 1 147773 562 0.00 2019-11-02 14:55:34 2019-11-02 14:55:50 t 1 1 147774 623 0.00 2019-11-02 14:53:27 2019-11-02 14:56:09 t 1 1 147775 623 0.00 2019-11-02 14:56:22 2019-11-02 14:56:24 t 1 1 147780 623 0.00 2019-11-02 14:57:46 2019-11-02 14:57:51 t 1 1 147784 597 0.00 2019-11-02 14:58:03 2019-11-02 14:58:53 t 1 1 147786 556 0.00 2019-11-02 14:55:58 2019-11-02 14:59:01 t 1 1 147787 623 0.00 2019-11-02 14:59:02 2019-11-02 14:59:19 t 1 1 147788 623 0.00 2019-11-02 14:59:32 2019-11-02 14:59:38 t 1 1 147795 451 0.00 2019-11-02 14:54:55 2019-11-02 15:01:24 t 1 1 147796 623 0.00 2019-11-02 15:01:28 2019-11-02 15:01:29 t 1 1 147798 485 0.00 2019-11-02 14:49:04 2019-11-02 15:01:41 t 1 1 147800 623 0.00 2019-11-02 15:01:54 2019-11-02 15:01:55 t 1 1 147801 623 0.00 2019-11-02 15:02:00 2019-11-02 15:02:05 t 1 1 147802 623 0.00 2019-11-02 15:02:18 2019-11-02 15:02:39 t 1 1 147808 623 0.00 2019-11-02 15:03:22 2019-11-02 15:03:23 t 1 1 147812 498 0.00 2019-11-02 15:00:10 2019-11-02 15:04:16 t 1 2 147814 623 0.00 2019-11-02 15:04:46 2019-11-02 15:04:51 t 1 1 147816 623 0.00 2019-11-02 15:05:26 2019-11-02 15:05:49 t 1 1 147817 623 0.00 2019-11-02 15:05:56 2019-11-02 15:05:58 t 1 1 147820 623 0.00 2019-11-02 15:06:11 2019-11-02 15:06:18 t 1 1 147823 451 0.00 2019-11-02 15:01:24 2019-11-02 15:07:27 t 1 1 147825 481 0.00 2019-11-02 11:58:19 2019-11-02 15:07:31 t 1 1 147826 564 0.00 2019-11-02 12:42:17 2019-11-02 15:08:21 t 1 1 147829 627 0.00 2019-11-02 15:07:29 2019-11-02 15:12:16 t 1 1 147830 545 0.00 2019-11-02 14:57:22 2019-11-02 15:13:22 t 1 1 147832 544 0.00 2019-11-02 14:59:36 2019-11-02 15:14:49 t 1 2 147833 587 0.00 2019-11-02 15:02:50 2019-11-02 15:15:13 t 1 1 147834 619 0.00 2019-11-02 15:14:13 2019-11-02 15:16:33 t 1 1 147835 556 0.00 2019-11-02 15:14:29 2019-11-02 15:17:24 t 1 1 147837 623 0.00 2019-11-02 15:19:21 2019-11-02 15:19:28 t 1 1 147839 623 0.00 2019-11-02 15:20:11 2019-11-02 15:20:47 t 1 1 147840 623 0.00 2019-11-02 15:20:52 2019-11-02 15:21:25 t 1 1 147844 587 0.00 2019-11-02 15:16:15 2019-11-02 15:22:39 t 1 1 147848 623 0.00 2019-11-02 15:23:22 2019-11-02 15:24:27 t 1 1 147850 556 0.00 2019-11-02 15:21:34 2019-11-02 15:24:37 t 1 1 147853 623 0.00 2019-11-02 15:25:04 2019-11-02 15:25:36 t 1 1 147857 591 0.00 2019-11-02 15:25:01 2019-11-02 15:26:29 t 1 1 147859 545 0.00 2019-11-02 15:13:22 2019-11-02 15:26:42 t 1 1 147861 585 0.00 2019-11-02 15:16:59 2019-11-02 15:27:49 t 1 1 147866 556 0.00 2019-11-02 15:30:50 2019-11-02 15:33:20 t 1 1 147870 597 0.00 2019-11-02 15:23:15 2019-11-02 15:36:18 t 1 1 147874 556 0.00 2019-11-02 15:36:25 2019-11-02 15:38:17 t 1 1 147879 528 0.00 2019-11-02 15:39:41 2019-11-02 15:39:54 t 1 1 147880 556 0.00 2019-11-02 15:38:17 2019-11-02 15:40:18 t 1 1 147886 556 0.00 2019-11-02 15:42:19 2019-11-02 15:44:15 t 1 1 147888 587 0.00 2019-11-02 15:30:23 2019-11-02 15:45:27 t 1 1 147889 528 0.00 2019-11-02 15:45:05 2019-11-02 15:45:38 t 1 1 147891 587 0.00 2019-11-02 15:45:27 2019-11-02 15:45:58 t 1 1 147894 445 0.00 2019-11-02 15:41:23 2019-11-02 15:47:00 t 1 1 147898 556 0.00 2019-11-02 15:46:14 2019-11-02 15:47:59 t 1 1 147899 516 0.00 2019-11-02 15:47:09 2019-11-02 15:49:30 t 1 1 147902 445 0.00 2019-11-02 15:46:56 2019-11-02 15:50:37 t 1 1 147903 512 0.00 2019-11-02 15:50:25 2019-11-02 15:51:46 t 1 1 147905 623 0.00 2019-11-02 15:31:49 2019-11-02 15:53:33 t 1 1 147907 615 0.00 2019-11-02 15:49:36 2019-11-02 15:54:00 t 1 1 147910 562 0.00 2019-11-02 15:54:34 2019-11-02 15:54:42 t 1 1 147913 556 0.00 2019-11-02 15:53:59 2019-11-02 15:56:21 t 1 1 147916 587 0.00 2019-11-02 15:46:08 2019-11-02 15:57:38 t 1 1 147921 587 0.00 2019-11-02 15:57:58 2019-11-02 16:01:08 t 1 1 147923 445 0.00 2019-11-02 15:59:22 2019-11-02 16:01:55 t 1 1 147927 528 0.00 2019-11-02 15:47:47 2019-11-02 16:02:46 t 1 1 147933 587 0.00 2019-11-02 16:02:18 2019-11-02 16:05:20 t 1 1 147935 430 0.00 2019-11-02 16:06:59 2019-11-02 16:07:06 t 1 1 147937 430 0.00 2019-11-02 16:08:02 2019-11-02 16:08:44 t 1 1 147944 570 0.00 2019-11-02 16:11:54 2019-11-02 16:13:34 t 1 1 147947 556 0.00 2019-11-02 16:03:24 2019-11-02 16:15:40 t 1 1 147949 623 0.00 2019-11-02 15:55:01 2019-11-02 16:16:42 t 1 1 147950 361 0.00 2019-11-02 14:56:37 2019-11-02 16:16:55 t 1 2 147953 562 0.00 2019-11-02 16:19:31 2019-11-02 16:19:57 t 1 1 147955 587 0.00 2019-11-02 16:19:32 2019-11-02 16:21:28 t 1 1 147962 430 0.00 2019-11-02 16:31:20 2019-11-02 16:31:33 t 1 1 147963 619 0.00 2019-11-02 16:30:31 2019-11-02 16:32:07 t 1 1 147965 587 0.00 2019-11-02 16:31:46 2019-11-02 16:33:14 t 1 1 147966 585 0.00 2019-11-02 16:30:33 2019-11-02 16:33:29 t 1 1 147971 623 0.00 2019-11-02 16:35:28 2019-11-02 16:35:35 t 1 1 147973 623 0.00 2019-11-02 16:35:40 2019-11-02 16:36:29 t 1 1 147975 615 0.00 2019-11-02 16:17:43 2019-11-02 16:36:33 t 1 1 147984 623 0.00 2019-11-02 16:38:27 2019-11-02 16:38:39 t 1 1 147986 597 0.00 2019-11-02 16:23:30 2019-11-02 16:38:54 t 1 1 147987 514 0.00 2019-11-02 16:13:03 2019-11-02 16:39:03 t 1 1 147989 623 0.00 2019-11-02 16:39:51 2019-11-02 16:39:52 t 1 1 147721 611 0.00 2019-11-02 14:14:43 2019-11-02 14:31:33 t 1 1 147724 520 0.00 2019-11-02 14:24:04 2019-11-02 14:32:22 t 1 1 147726 623 0.00 2019-11-02 14:32:31 2019-11-02 14:32:52 t 1 1 147727 623 0.00 2019-11-02 14:32:59 2019-11-02 14:33:01 t 1 1 147729 623 0.00 2019-11-02 14:33:06 2019-11-02 14:33:08 t 1 1 147734 623 0.00 2019-11-02 14:33:55 2019-11-02 14:38:05 t 1 1 147735 570 0.00 2019-11-02 13:33:49 2019-11-02 14:38:38 t 1 1 147744 623 0.00 2019-11-02 14:44:03 2019-11-02 14:44:04 t 1 1 147746 623 0.00 2019-11-02 14:44:10 2019-11-02 14:44:16 t 1 1 147756 623 0.00 2019-11-02 14:45:37 2019-11-02 14:50:39 t 1 1 147758 562 0.00 2019-11-02 14:50:33 2019-11-02 14:50:55 t 1 1 147759 623 0.00 2019-11-02 14:51:03 2019-11-02 14:51:09 t 1 1 147762 623 0.00 2019-11-02 14:51:48 2019-11-02 14:51:50 t 1 1 147779 623 0.00 2019-11-02 14:56:58 2019-11-02 14:57:41 t 1 1 147781 498 0.00 2019-11-02 14:56:44 2019-11-02 14:58:23 t 1 2 147783 623 0.00 2019-11-02 14:58:30 2019-11-02 14:58:46 t 1 1 147789 619 0.00 2019-11-02 14:55:42 2019-11-02 14:59:58 t 1 1 147793 623 0.00 2019-11-02 15:00:52 2019-11-02 15:00:54 t 1 1 147799 562 0.00 2019-11-02 15:01:15 2019-11-02 15:01:48 t 1 1 147803 622 0.00 2019-11-02 14:31:42 2019-11-02 15:02:44 t 1 1 147806 623 0.00 2019-11-02 15:02:46 2019-11-02 15:02:52 t 1 1 147807 623 0.00 2019-11-02 15:03:03 2019-11-02 15:03:09 t 1 1 147810 623 0.00 2019-11-02 15:03:48 2019-11-02 15:03:49 t 1 1 147811 623 0.00 2019-11-02 15:03:54 2019-11-02 15:04:00 t 1 1 147815 623 0.00 2019-11-02 15:05:04 2019-11-02 15:05:06 t 1 1 147819 623 0.00 2019-11-02 15:06:05 2019-11-02 15:06:06 t 1 1 147822 556 0.00 2019-11-02 15:02:51 2019-11-02 15:07:01 t 1 1 147824 627 0.00 2019-11-02 14:57:20 2019-11-02 15:07:29 t 1 1 147827 556 0.00 2019-11-02 15:07:01 2019-11-02 15:10:33 t 1 1 147828 516 0.00 2019-11-02 15:04:43 2019-11-02 15:11:38 t 1 1 147831 556 0.00 2019-11-02 15:10:33 2019-11-02 15:14:29 t 1 1 147836 623 0.00 2019-11-02 15:06:23 2019-11-02 15:19:16 t 1 1 147838 623 0.00 2019-11-02 15:19:33 2019-11-02 15:20:06 t 1 1 147842 623 0.00 2019-11-02 15:21:30 2019-11-02 15:21:37 t 1 1 147846 570 0.00 2019-11-02 15:06:05 2019-11-02 15:22:57 t 1 1 147849 562 0.00 2019-11-02 15:24:02 2019-11-02 15:24:30 t 1 1 147851 623 0.00 2019-11-02 15:24:32 2019-11-02 15:24:59 t 1 1 147852 481 0.00 2019-11-02 15:07:38 2019-11-02 15:25:12 t 1 1 147855 430 0.00 2019-11-02 15:25:22 2019-11-02 15:26:17 t 1 1 147860 556 0.00 2019-11-02 15:24:37 2019-11-02 15:27:30 t 1 1 147864 556 0.00 2019-11-02 15:27:30 2019-11-02 15:30:50 t 1 1 147867 430 0.00 2019-11-02 15:26:17 2019-11-02 15:34:32 t 1 1 147871 556 0.00 2019-11-02 15:33:20 2019-11-02 15:36:25 t 1 1 147877 619 0.00 2019-11-02 15:37:03 2019-11-02 15:39:42 t 1 1 147881 445 0.00 2019-11-02 13:45:32 2019-11-02 15:41:24 t 1 1 147883 556 0.00 2019-11-02 15:40:18 2019-11-02 15:42:19 t 1 1 147884 528 0.00 2019-11-02 15:42:32 2019-11-02 15:42:36 t 1 1 147885 528 0.00 2019-11-02 15:43:29 2019-11-02 15:43:40 t 1 1 147890 430 0.00 2019-11-02 15:45:31 2019-11-02 15:45:47 t 1 1 147896 430 0.00 2019-11-02 15:47:11 2019-11-02 15:47:17 t 1 1 147906 556 0.00 2019-11-02 15:52:02 2019-11-02 15:53:59 t 1 1 147908 623 0.00 2019-11-02 15:53:38 2019-11-02 15:54:21 t 1 1 147912 623 0.00 2019-11-02 15:54:49 2019-11-02 15:54:56 t 1 1 147918 562 0.00 2019-11-02 15:58:46 2019-11-02 15:59:31 t 1 1 147924 430 0.00 2019-11-02 16:01:55 2019-11-02 16:02:01 t 1 1 147929 556 0.00 2019-11-02 16:02:06 2019-11-02 16:03:25 t 1 1 147936 445 0.00 2019-11-02 16:05:13 2019-11-02 16:07:11 t 1 1 147938 615 0.00 2019-11-02 16:00:52 2019-11-02 16:08:45 t 1 1 147939 587 0.00 2019-11-02 16:08:45 2019-11-02 16:08:54 t 1 1 147940 591 0.00 2019-11-02 16:07:40 2019-11-02 16:09:55 t 1 1 147945 587 0.00 2019-11-02 16:09:14 2019-11-02 16:13:53 t 1 1 147946 516 0.00 2019-11-02 16:06:35 2019-11-02 16:14:50 t 1 1 147948 622 0.00 2019-11-02 16:14:13 2019-11-02 16:15:46 t 1 1 147952 587 0.00 2019-11-02 16:17:22 2019-11-02 16:19:11 t 1 1 147956 430 0.00 2019-11-02 16:23:25 2019-11-02 16:23:27 t 1 1 147957 430 0.00 2019-11-02 16:26:04 2019-11-02 16:26:21 t 1 1 147959 430 0.00 2019-11-02 16:28:24 2019-11-02 16:28:31 t 1 1 147967 430 0.00 2019-11-02 16:33:28 2019-11-02 16:33:33 t 1 1 147970 623 0.00 2019-11-02 16:35:22 2019-11-02 16:35:23 t 1 1 147974 379 0.00 2019-11-02 12:39:31 2019-11-02 16:36:30 t 1 1 147976 615 0.00 2019-11-02 16:36:33 2019-11-02 16:36:41 t 1 1 147979 587 0.00 2019-11-02 16:33:52 2019-11-02 16:37:04 t 1 1 147980 562 0.00 2019-11-02 16:37:16 2019-11-02 16:37:21 t 1 1 147982 623 0.00 2019-11-02 16:37:34 2019-11-02 16:37:55 t 1 1 147983 623 0.00 2019-11-02 16:38:08 2019-11-02 16:38:20 t 1 1 147985 591 0.00 2019-11-02 16:16:48 2019-11-02 16:38:41 t 1 1 147988 623 0.00 2019-11-02 16:38:46 2019-11-02 16:39:44 t 1 1 147990 587 0.00 2019-11-02 16:37:18 2019-11-02 16:39:55 t 1 1 147997 623 0.00 2019-11-02 16:41:39 2019-11-02 16:41:45 t 1 1 148000 623 0.00 2019-11-02 16:42:05 2019-11-02 16:42:14 t 1 1 148006 445 0.00 2019-11-02 16:07:22 2019-11-02 16:48:12 t 1 1 148008 623 0.00 2019-11-02 16:48:57 2019-11-02 16:49:51 t 1 1 148009 622 0.00 2019-11-02 16:23:47 2019-11-02 16:50:00 t 1 1 148010 619 0.00 2019-11-02 16:45:16 2019-11-02 16:50:24 t 1 1 148012 430 0.00 2019-11-02 16:50:20 2019-11-02 16:50:28 t 1 1 148032 623 0.00 2019-11-02 16:52:00 2019-11-02 16:58:00 t 1 1 148034 587 0.00 2019-11-02 16:49:30 2019-11-02 16:58:52 t 1 1 148036 430 0.00 2019-11-02 16:57:11 2019-11-02 16:59:37 t 1 1 148041 430 0.00 2019-11-02 17:01:10 2019-11-02 17:01:28 t 1 1 148042 430 0.00 2019-11-02 17:01:58 2019-11-02 17:02:10 t 1 1 148044 430 0.00 2019-11-02 17:02:24 2019-11-02 17:02:42 t 1 1 148047 587 0.00 2019-11-02 16:58:52 2019-11-02 17:06:34 t 1 1 148049 619 0.00 2019-11-02 17:03:03 2019-11-02 17:06:44 t 1 1 148051 623 0.00 2019-11-02 16:58:05 2019-11-02 17:07:34 t 1 1 148053 587 0.00 2019-11-02 17:07:52 2019-11-02 17:08:02 t 1 1 148055 581 0.00 2019-11-02 17:06:08 2019-11-02 17:08:30 t 1 1 148056 623 0.00 2019-11-02 17:07:59 2019-11-02 17:09:11 t 1 1 148062 430 0.00 2019-11-02 17:11:16 2019-11-02 17:12:08 t 1 1 148065 514 0.00 2019-11-02 16:51:48 2019-11-02 17:13:23 t 1 1 148067 562 0.00 2019-11-02 17:12:50 2019-11-02 17:13:33 t 1 1 148070 587 0.00 2019-11-02 17:13:42 2019-11-02 17:14:54 t 1 1 148073 220 0.00 2019-11-02 14:31:30 2019-11-02 17:16:19 t 1 1 148074 430 0.00 2019-11-02 17:16:36 2019-11-02 17:16:43 t 1 1 148075 623 0.00 2019-11-02 17:16:48 2019-11-02 17:16:59 t 1 1 148077 485 0.00 2019-11-02 17:10:42 2019-11-02 17:17:13 t 1 1 148081 591 0.00 2019-11-02 16:44:15 2019-11-02 17:18:36 t 1 1 148087 430 0.00 2019-11-02 17:19:53 2019-11-02 17:20:09 t 1 1 147978 623 0.00 2019-11-02 16:36:51 2019-11-02 16:36:57 t 1 1 147981 623 0.00 2019-11-02 16:37:02 2019-11-02 16:37:29 t 1 1 147991 623 0.00 2019-11-02 16:40:00 2019-11-02 16:40:02 t 1 1 147993 623 0.00 2019-11-02 16:40:07 2019-11-02 16:40:13 t 1 1 147994 623 0.00 2019-11-02 16:40:18 2019-11-02 16:40:36 t 1 1 147995 623 0.00 2019-11-02 16:40:41 2019-11-02 16:41:03 t 1 1 147996 430 0.00 2019-11-02 16:41:09 2019-11-02 16:41:15 t 1 1 148001 587 0.00 2019-11-02 16:40:15 2019-11-02 16:43:14 t 1 1 148003 430 0.00 2019-11-02 16:45:16 2019-11-02 16:45:29 t 1 1 148004 220 0.00 2019-11-02 16:27:17 2019-11-02 16:47:22 t 1 2 148014 623 0.00 2019-11-02 16:50:52 2019-11-02 16:50:54 t 1 1 148015 514 0.00 2019-11-02 16:39:03 2019-11-02 16:51:01 t 1 1 148017 623 0.00 2019-11-02 16:51:23 2019-11-02 16:51:25 t 1 1 148018 445 0.00 2019-11-02 16:48:11 2019-11-02 16:51:31 t 1 1 148020 623 0.00 2019-11-02 16:51:37 2019-11-02 16:51:39 t 1 1 148021 623 0.00 2019-11-02 16:51:44 2019-11-02 16:51:46 t 1 1 148024 562 0.00 2019-11-02 16:52:33 2019-11-02 16:52:43 t 1 1 148028 629 0.00 2019-11-02 16:54:19 2019-11-02 16:55:23 t 1 1 148031 629 0.00 2019-11-02 16:55:22 2019-11-02 16:56:27 t 1 1 148035 622 0.00 2019-11-02 16:50:31 2019-11-02 16:59:29 t 1 1 148039 430 0.00 2019-11-02 17:00:02 2019-11-02 17:00:49 t 1 1 148040 430 0.00 2019-11-02 17:00:58 2019-11-02 17:01:00 t 1 1 148043 615 0.00 2019-11-02 16:57:43 2019-11-02 17:02:11 t 1 1 148057 587 0.00 2019-11-02 17:08:36 2019-11-02 17:09:26 t 1 1 148058 562 0.00 2019-11-02 17:09:27 2019-11-02 17:09:50 t 1 1 148060 430 0.00 2019-11-02 17:10:29 2019-11-02 17:10:30 t 1 1 148064 629 0.00 2019-11-02 17:11:10 2019-11-02 17:13:19 t 1 1 148066 538 0.00 2019-11-02 17:13:14 2019-11-02 17:13:29 t 1 1 148068 629 0.00 2019-11-02 17:13:19 2019-11-02 17:14:06 t 1 1 148071 430 0.00 2019-11-02 17:15:38 2019-11-02 17:15:45 t 1 1 148072 430 0.00 2019-11-02 17:15:57 2019-11-02 17:16:00 t 1 1 148078 430 0.00 2019-11-02 17:17:31 2019-11-02 17:17:33 t 1 1 148082 623 0.00 2019-11-02 17:18:44 2019-11-02 17:18:51 t 1 1 148083 562 0.00 2019-11-02 17:18:49 2019-11-02 17:19:04 t 1 1 148085 623 0.00 2019-11-02 17:18:56 2019-11-02 17:19:09 t 1 1 148089 623 0.00 2019-11-02 17:22:24 2019-11-02 17:22:29 t 1 1 148090 623 0.00 2019-11-02 17:22:32 2019-11-02 17:23:06 t 1 1 148091 545 0.00 2019-11-02 17:20:18 2019-11-02 17:25:14 t 1 1 148094 622 0.00 2019-11-02 16:59:29 2019-11-02 17:25:48 t 1 1 148095 591 0.00 2019-11-02 17:18:36 2019-11-02 17:26:09 t 1 1 148098 538 0.00 2019-11-02 17:13:32 2019-11-02 17:28:34 t 1 1 148099 562 0.00 2019-11-02 17:29:26 2019-11-02 17:30:06 t 1 1 148103 430 0.00 2019-11-02 17:30:56 2019-11-02 17:31:14 t 1 1 148104 430 0.00 2019-11-02 17:31:21 2019-11-02 17:32:09 t 1 1 148105 430 0.00 2019-11-02 17:32:38 2019-11-02 17:32:51 t 1 1 148107 587 0.00 2019-11-02 17:16:42 2019-11-02 17:33:29 t 1 1 148111 623 0.00 2019-11-02 17:33:50 2019-11-02 17:34:20 t 1 1 148112 430 0.00 2019-11-02 17:34:32 2019-11-02 17:34:34 t 1 1 148113 430 0.00 2019-11-02 17:34:43 2019-11-02 17:34:52 t 1 1 148115 430 0.00 2019-11-02 17:35:06 2019-11-02 17:35:12 t 1 1 148120 623 0.00 2019-11-02 17:34:38 2019-11-02 17:36:34 t 1 1 148121 514 0.00 2019-11-02 17:13:23 2019-11-02 17:37:01 t 1 1 148127 445 0.00 2019-11-02 17:34:07 2019-11-02 17:41:43 t 1 1 148128 430 0.00 2019-11-02 17:41:59 2019-11-02 17:42:07 t 1 1 148133 430 0.00 2019-11-02 17:44:01 2019-11-02 17:44:13 t 1 1 148138 623 0.00 2019-11-02 17:37:36 2019-11-02 17:45:56 t 1 1 148141 430 0.00 2019-11-02 17:45:49 2019-11-02 17:47:15 t 1 1 148145 623 0.00 2019-11-02 17:46:01 2019-11-02 17:48:35 t 1 1 148146 581 0.00 2019-11-02 17:47:35 2019-11-02 17:49:20 t 1 1 148149 562 0.00 2019-11-02 17:50:48 2019-11-02 17:51:20 t 1 1 148161 498 0.00 2019-11-02 15:28:08 2019-11-02 17:58:13 t 1 2 148162 623 0.00 2019-11-02 17:58:18 2019-11-02 17:58:19 t 1 1 148166 581 0.00 2019-11-02 17:59:15 2019-11-02 17:59:54 t 1 1 148168 562 0.00 2019-11-02 17:59:45 2019-11-02 18:03:17 t 1 1 148169 585 0.00 2019-11-02 17:53:10 2019-11-02 18:04:09 t 1 1 148176 562 0.00 2019-11-02 18:10:10 2019-11-02 18:10:34 t 1 1 148178 528 0.00 2019-11-02 17:43:59 2019-11-02 18:13:41 t 1 1 148180 445 0.00 2019-11-02 17:51:44 2019-11-02 18:14:44 t 1 1 148194 562 0.00 2019-11-02 18:34:16 2019-11-02 18:34:45 t 1 1 148198 591 0.00 2019-11-02 17:27:44 2019-11-02 18:38:43 t 1 1 148200 591 0.00 2019-11-02 18:38:43 2019-11-02 18:43:56 t 1 1 148203 615 0.00 2019-11-02 18:34:31 2019-11-02 18:46:02 t 1 1 148204 623 0.00 2019-11-02 18:46:33 2019-11-02 18:46:43 t 1 1 148209 597 0.00 2019-11-02 18:42:06 2019-11-02 18:49:14 t 1 1 148210 591 0.00 2019-11-02 18:47:16 2019-11-02 18:50:04 t 1 1 148213 623 0.00 2019-11-02 18:52:42 2019-11-02 18:53:14 t 1 1 148216 562 0.00 2019-11-02 18:53:52 2019-11-02 18:54:20 t 1 1 148221 562 0.00 2019-11-02 18:57:45 2019-11-02 18:58:03 t 1 1 148223 562 0.00 2019-11-02 19:00:14 2019-11-02 19:00:29 t 1 1 148226 562 0.00 2019-11-02 19:06:03 2019-11-02 19:06:10 t 1 1 148228 220 0.00 2019-11-02 17:41:08 2019-11-02 19:08:30 t 1 1 148229 619 0.00 2019-11-02 19:06:19 2019-11-02 19:10:18 t 1 1 148232 585 0.00 2019-11-02 19:14:50 2019-11-02 19:16:00 t 1 1 148234 518 0.00 2019-11-02 18:46:27 2019-11-02 19:16:32 t 1 2 148239 562 0.00 2019-11-02 19:08:21 2019-11-02 19:21:29 t 1 1 148243 562 0.00 2019-11-02 19:22:58 2019-11-02 19:24:02 t 1 1 148247 220 0.00 2019-11-02 19:08:30 2019-11-02 19:30:06 t 1 1 148253 562 0.00 2019-11-02 19:33:27 2019-11-02 19:34:01 t 1 1 148254 622 0.00 2019-11-02 19:26:16 2019-11-02 19:35:27 t 1 1 148258 562 0.00 2019-11-02 19:40:12 2019-11-02 19:40:36 t 1 1 148262 220 0.00 2019-11-02 19:03:22 2019-11-02 19:43:44 t 1 2 148267 622 0.00 2019-11-02 19:35:27 2019-11-02 19:54:09 t 1 1 148269 562 0.00 2019-11-02 19:54:31 2019-11-02 19:55:28 t 1 1 148271 585 0.00 2019-11-02 19:53:40 2019-11-02 19:56:18 t 1 1 148273 372 0.00 2019-11-02 19:58:06 2019-11-02 19:59:02 t 1 2 148275 591 0.00 2019-11-02 19:58:44 2019-11-02 20:01:12 t 1 1 148278 562 0.00 2019-11-02 20:00:58 2019-11-02 20:02:39 t 1 1 148281 520 0.00 2019-11-02 19:55:13 2019-11-02 20:04:55 t 1 1 148282 445 0.00 2019-11-02 18:44:35 2019-11-02 20:05:52 t 1 1 148283 591 0.00 2019-11-02 20:01:44 2019-11-02 20:07:19 t 1 1 148286 516 0.00 2019-11-02 19:57:12 2019-11-02 20:08:27 t 1 1 148288 623 0.00 2019-11-02 19:54:56 2019-11-02 20:12:31 t 1 1 148289 562 0.00 2019-11-02 20:12:36 2019-11-02 20:12:44 t 1 1 148292 220 0.00 2019-11-02 20:06:31 2019-11-02 20:16:37 t 1 2 148293 585 0.00 2019-11-02 20:15:24 2019-11-02 20:17:32 t 1 1 148295 481 0.00 2019-11-02 16:43:05 2019-11-02 20:18:51 t 1 1 148301 520 0.00 2019-11-02 20:04:54 2019-11-02 20:22:05 t 1 1 147992 585 0.00 2019-11-02 16:33:29 2019-11-02 16:40:02 t 1 1 147998 623 0.00 2019-11-02 16:41:52 2019-11-02 16:41:57 t 1 1 147999 623 0.00 2019-11-02 16:41:08 2019-11-02 16:42:09 t 1 1 148002 562 0.00 2019-11-02 16:44:38 2019-11-02 16:44:50 t 1 1 148005 623 0.00 2019-11-02 16:42:25 2019-11-02 16:47:36 t 1 1 148007 623 0.00 2019-11-02 16:48:16 2019-11-02 16:48:17 t 1 1 148011 623 0.00 2019-11-02 16:50:09 2019-11-02 16:50:26 t 1 1 148013 623 0.00 2019-11-02 16:50:26 2019-11-02 16:50:33 t 1 1 148016 623 0.00 2019-11-02 16:50:59 2019-11-02 16:51:05 t 1 1 148019 623 0.00 2019-11-02 16:51:30 2019-11-02 16:51:32 t 1 1 148022 623 0.00 2019-11-02 16:51:51 2019-11-02 16:51:55 t 1 1 148023 562 0.00 2019-11-02 16:51:40 2019-11-02 16:52:25 t 1 1 148025 545 0.00 2019-11-02 16:48:04 2019-11-02 16:52:53 t 1 1 148026 430 0.00 2019-11-02 16:53:43 2019-11-02 16:53:54 t 1 1 148027 615 0.00 2019-11-02 16:36:41 2019-11-02 16:54:22 t 1 1 148029 562 0.00 2019-11-02 16:55:20 2019-11-02 16:55:30 t 1 1 148030 430 0.00 2019-11-02 16:56:11 2019-11-02 16:56:12 t 1 1 148033 629 0.00 2019-11-02 16:56:27 2019-11-02 16:58:46 t 1 1 148037 430 0.00 2019-11-02 16:59:42 2019-11-02 16:59:49 t 1 1 148038 629 0.00 2019-11-02 16:59:34 2019-11-02 17:00:00 t 1 1 148045 430 0.00 2019-11-02 17:02:49 2019-11-02 17:02:51 t 1 1 148046 430 0.00 2019-11-02 17:06:14 2019-11-02 17:06:20 t 1 1 148048 379 0.00 2019-11-02 16:36:30 2019-11-02 17:06:40 t 1 1 148050 361 0.00 2019-11-02 16:36:06 2019-11-02 17:07:14 t 1 2 148052 623 0.00 2019-11-02 17:07:39 2019-11-02 17:07:46 t 1 1 148054 379 0.00 2019-11-02 17:06:40 2019-11-02 17:08:26 t 1 1 148059 430 0.00 2019-11-02 17:09:29 2019-11-02 17:10:20 t 1 1 148061 430 0.00 2019-11-02 17:10:41 2019-11-02 17:11:02 t 1 1 148063 587 0.00 2019-11-02 17:10:09 2019-11-02 17:13:16 t 1 1 148069 430 0.00 2019-11-02 17:12:14 2019-11-02 17:14:24 t 1 1 148076 623 0.00 2019-11-02 17:17:04 2019-11-02 17:17:11 t 1 1 148079 623 0.00 2019-11-02 17:17:29 2019-11-02 17:17:35 t 1 1 148080 623 0.00 2019-11-02 17:18:19 2019-11-02 17:18:27 t 1 1 148084 220 0.00 2019-11-02 13:41:41 2019-11-02 17:19:05 t 1 2 148086 623 0.00 2019-11-02 17:19:09 2019-11-02 17:19:10 t 1 1 148088 623 0.00 2019-11-02 17:20:11 2019-11-02 17:20:12 t 1 1 148092 623 0.00 2019-11-02 17:24:02 2019-11-02 17:25:23 t 1 1 148097 485 0.00 2019-11-02 17:17:13 2019-11-02 17:28:27 t 1 1 148100 485 0.00 2019-11-02 17:28:27 2019-11-02 17:30:17 t 1 1 148108 623 0.00 2019-11-02 17:28:09 2019-11-02 17:33:51 t 1 1 148109 445 0.00 2019-11-02 17:26:11 2019-11-02 17:34:07 t 1 1 148117 430 0.00 2019-11-02 17:35:22 2019-11-02 17:35:31 t 1 1 148122 430 0.00 2019-11-02 17:37:58 2019-11-02 17:38:20 t 1 1 148123 430 0.00 2019-11-02 17:38:28 2019-11-02 17:38:33 t 1 1 148124 430 0.00 2019-11-02 17:39:33 2019-11-02 17:39:45 t 1 1 148126 220 0.00 2019-11-02 17:16:19 2019-11-02 17:41:08 t 1 1 148129 430 0.00 2019-11-02 17:43:00 2019-11-02 17:43:05 t 1 1 148130 578 0.00 2019-11-02 17:43:07 2019-11-02 17:43:24 t 1 1 148132 430 0.00 2019-11-02 17:43:35 2019-11-02 17:43:53 t 1 1 148135 430 0.00 2019-11-02 17:44:51 2019-11-02 17:45:17 t 1 1 148139 623 0.00 2019-11-02 17:46:10 2019-11-02 17:46:35 t 1 1 148143 623 0.00 2019-11-02 17:47:16 2019-11-02 17:47:42 t 1 1 148151 615 0.00 2019-11-02 17:38:28 2019-11-02 17:52:47 t 1 1 148152 581 0.00 2019-11-02 17:49:33 2019-11-02 17:53:07 t 1 1 148153 623 0.00 2019-11-02 17:53:16 2019-11-02 17:53:19 t 1 1 148155 629 0.00 2019-11-02 17:14:06 2019-11-02 17:54:57 t 1 1 148158 581 0.00 2019-11-02 17:55:23 2019-11-02 17:57:47 t 1 1 148159 619 0.00 2019-11-02 17:47:55 2019-11-02 17:58:07 t 1 1 148164 623 0.00 2019-11-02 17:59:08 2019-11-02 17:59:14 t 1 1 148165 623 0.00 2019-11-02 17:59:35 2019-11-02 17:59:40 t 1 1 148170 220 0.00 2019-11-02 16:28:02 2019-11-02 18:04:24 t 1 2 148173 623 0.00 2019-11-02 18:02:06 2019-11-02 18:08:57 t 1 1 148174 247 0.00 2019-11-02 18:09:11 2019-11-02 18:09:11 f 1 2 148175 587 0.00 2019-11-02 17:46:45 2019-11-02 18:09:59 t 1 1 148181 619 0.00 2019-11-02 18:14:50 2019-11-02 18:16:52 t 1 1 148183 498 0.00 2019-11-02 18:12:17 2019-11-02 18:19:33 t 1 2 148184 445 0.00 2019-11-02 18:17:01 2019-11-02 18:20:23 t 1 1 148185 615 0.00 2019-11-02 18:18:17 2019-11-02 18:21:20 t 1 1 148189 562 0.00 2019-11-02 18:21:50 2019-11-02 18:27:40 t 1 1 148191 623 0.00 2019-11-02 18:25:37 2019-11-02 18:30:22 t 1 1 148192 629 0.00 2019-11-02 18:30:48 2019-11-02 18:33:35 t 1 1 148195 619 0.00 2019-11-02 18:29:02 2019-11-02 18:34:46 t 1 1 148199 566 0.00 2019-11-02 18:30:21 2019-11-02 18:41:24 t 1 1 148201 623 0.00 2019-11-02 18:37:42 2019-11-02 18:44:50 t 1 1 148205 562 0.00 2019-11-02 18:46:25 2019-11-02 18:46:47 t 1 1 148207 623 0.00 2019-11-02 18:47:27 2019-11-02 18:47:40 t 1 1 148208 623 0.00 2019-11-02 18:48:05 2019-11-02 18:48:43 t 1 1 148214 623 0.00 2019-11-02 18:53:44 2019-11-02 18:53:44 f 1 1 148215 623 0.00 2019-11-02 18:53:56 2019-11-02 18:53:56 f 1 1 148217 623 0.00 2019-11-02 18:53:32 2019-11-02 18:54:35 t 1 1 148218 566 0.00 2019-11-02 18:41:24 2019-11-02 18:55:18 t 1 1 148220 581 0.00 2019-11-02 18:51:42 2019-11-02 18:56:05 t 1 1 148225 589 0.00 2019-11-02 19:02:12 2019-11-02 19:03:20 t 1 1 148227 591 0.00 2019-11-02 18:52:35 2019-11-02 19:08:04 t 1 1 148231 566 0.00 2019-11-02 19:02:33 2019-11-02 19:11:08 t 1 1 148233 585 0.00 2019-11-02 19:16:00 2019-11-02 19:16:03 t 1 1 148236 585 0.00 2019-11-02 19:16:07 2019-11-02 19:18:14 t 1 1 148241 361 0.00 2019-11-02 19:04:29 2019-11-02 19:22:39 t 1 2 148242 456 0.00 2019-11-02 19:21:33 2019-11-02 19:22:59 t 1 1 148245 562 0.00 2019-11-02 19:27:34 2019-11-02 19:27:50 t 1 1 148246 585 0.00 2019-11-02 19:18:28 2019-11-02 19:29:57 t 1 1 148249 520 0.00 2019-11-02 19:10:56 2019-11-02 19:30:53 t 1 1 148250 615 0.00 2019-11-02 19:28:07 2019-11-02 19:31:43 t 1 1 148251 564 0.00 2019-11-02 19:25:48 2019-11-02 19:33:05 t 1 1 148252 619 0.00 2019-11-02 19:24:21 2019-11-02 19:33:34 t 1 1 148256 516 0.00 2019-11-02 19:30:59 2019-11-02 19:36:18 t 1 1 148264 562 0.00 2019-11-02 19:47:14 2019-11-02 19:47:41 t 1 1 148272 372 0.00 2019-11-02 19:56:38 2019-11-02 19:57:41 t 1 2 148274 597 0.00 2019-11-02 19:41:55 2019-11-02 19:59:16 t 1 1 148276 416 0.00 2019-11-02 19:43:00 2019-11-02 20:01:14 t 1 1 148280 498 0.00 2019-11-02 18:35:49 2019-11-02 20:04:46 t 1 2 148284 562 0.00 2019-11-02 20:07:15 2019-11-02 20:07:41 t 1 1 148285 551 0.00 2019-11-02 19:54:51 2019-11-02 20:08:11 t 1 1 148287 585 0.00 2019-11-02 20:07:46 2019-11-02 20:12:03 t 1 1 148297 562 0.00 2019-11-02 20:18:55 2019-11-02 20:20:00 t 1 1 148298 528 0.00 2019-11-02 20:12:05 2019-11-02 20:21:03 t 1 1 148300 591 0.00 2019-11-02 20:12:58 2019-11-02 20:21:31 t 1 1 148093 619 0.00 2019-11-02 17:23:51 2019-11-02 17:25:32 t 1 1 148096 445 0.00 2019-11-02 16:51:31 2019-11-02 17:26:11 t 1 1 148101 430 0.00 2019-11-02 17:25:57 2019-11-02 17:30:37 t 1 1 148102 485 0.00 2019-11-02 17:30:06 2019-11-02 17:31:08 t 1 1 148106 430 0.00 2019-11-02 17:32:51 2019-11-02 17:33:02 t 1 1 148110 430 0.00 2019-11-02 17:33:43 2019-11-02 17:34:12 t 1 1 148114 623 0.00 2019-11-02 17:34:52 2019-11-02 17:34:52 f 1 1 148116 623 0.00 2019-11-02 17:35:15 2019-11-02 17:35:15 f 1 1 148118 623 0.00 2019-11-02 17:34:25 2019-11-02 17:35:34 t 1 1 148119 430 0.00 2019-11-02 17:35:40 2019-11-02 17:36:05 t 1 1 148125 562 0.00 2019-11-02 17:40:10 2019-11-02 17:40:32 t 1 1 148131 430 0.00 2019-11-02 17:43:11 2019-11-02 17:43:29 t 1 1 148134 430 0.00 2019-11-02 17:44:13 2019-11-02 17:44:27 t 1 1 148136 581 0.00 2019-11-02 17:45:08 2019-11-02 17:45:39 t 1 1 148137 587 0.00 2019-11-02 17:33:47 2019-11-02 17:45:51 t 1 1 148140 623 0.00 2019-11-02 17:46:43 2019-11-02 17:47:08 t 1 1 148142 581 0.00 2019-11-02 17:45:45 2019-11-02 17:47:34 t 1 1 148144 623 0.00 2019-11-02 17:47:54 2019-11-02 17:48:21 t 1 1 148147 623 0.00 2019-11-02 17:48:37 2019-11-02 17:49:37 t 1 1 148148 623 0.00 2019-11-02 17:49:58 2019-11-02 17:51:06 t 1 1 148150 445 0.00 2019-11-02 17:43:04 2019-11-02 17:51:45 t 1 1 148154 581 0.00 2019-11-02 17:53:21 2019-11-02 17:54:21 t 1 1 148156 581 0.00 2019-11-02 17:54:48 2019-11-02 17:55:13 t 1 1 148157 629 0.00 2019-11-02 17:54:57 2019-11-02 17:56:14 t 1 1 148160 581 0.00 2019-11-02 17:57:56 2019-11-02 17:58:12 t 1 1 148163 581 0.00 2019-11-02 17:58:19 2019-11-02 17:59:05 t 1 1 148167 581 0.00 2019-11-02 18:01:04 2019-11-02 18:01:43 t 1 1 148171 581 0.00 2019-11-02 18:03:36 2019-11-02 18:04:43 t 1 1 148172 514 0.00 2019-11-02 17:37:00 2019-11-02 18:05:46 t 1 1 148177 578 0.00 2019-11-02 17:44:26 2019-11-02 18:11:56 t 1 1 148179 544 0.00 2019-11-02 17:54:06 2019-11-02 18:14:11 t 1 2 148182 562 0.00 2019-11-02 18:16:29 2019-11-02 18:17:47 t 1 1 148186 562 0.00 2019-11-02 18:18:20 2019-11-02 18:21:24 t 1 1 148187 623 0.00 2019-11-02 18:08:57 2019-11-02 18:22:43 t 1 1 148188 623 0.00 2019-11-02 18:23:42 2019-11-02 18:23:45 t 1 1 148190 566 0.00 2019-11-02 18:24:23 2019-11-02 18:30:21 t 1 1 148193 562 0.00 2019-11-02 18:29:14 2019-11-02 18:33:39 t 1 1 148196 623 0.00 2019-11-02 18:30:22 2019-11-02 18:37:42 t 1 1 148197 562 0.00 2019-11-02 18:34:54 2019-11-02 18:38:25 t 1 1 148202 445 0.00 2019-11-02 18:20:24 2019-11-02 18:44:54 t 1 1 148206 562 0.00 2019-11-02 18:46:54 2019-11-02 18:47:25 t 1 1 148211 615 0.00 2019-11-02 18:46:02 2019-11-02 18:51:16 t 1 1 148212 619 0.00 2019-11-02 18:46:12 2019-11-02 18:52:01 t 1 1 148219 623 0.00 2019-11-02 18:53:20 2019-11-02 18:55:35 t 1 1 148222 574 0.00 2019-11-02 18:16:49 2019-11-02 19:00:26 t 1 1 148224 597 0.00 2019-11-02 18:56:53 2019-11-02 19:01:13 t 1 1 148230 520 0.00 2019-11-02 18:44:49 2019-11-02 19:10:56 t 1 1 148235 622 0.00 2019-11-02 17:52:49 2019-11-02 19:17:07 t 1 1 148237 545 0.00 2019-11-02 19:15:56 2019-11-02 19:18:27 t 1 1 148238 566 0.00 2019-11-02 19:11:08 2019-11-02 19:19:06 t 1 1 148240 456 0.00 2019-11-02 19:09:55 2019-11-02 19:21:33 t 1 1 148244 558 0.00 2019-11-02 18:17:40 2019-11-02 19:27:26 t 1 1 148248 562 0.00 2019-11-02 19:30:16 2019-11-02 19:30:28 t 1 1 148255 597 0.00 2019-11-02 19:33:15 2019-11-02 19:35:52 t 1 1 148257 562 0.00 2019-11-02 19:37:38 2019-11-02 19:37:59 t 1 1 148259 585 0.00 2019-11-02 19:39:25 2019-11-02 19:41:23 t 1 1 148260 566 0.00 2019-11-02 19:39:45 2019-11-02 19:42:05 t 1 1 148261 416 0.00 2019-11-02 18:41:13 2019-11-02 19:43:00 t 1 1 148263 520 0.00 2019-11-02 19:30:52 2019-11-02 19:43:55 t 1 1 148265 591 0.00 2019-11-02 19:49:27 2019-11-02 19:51:26 t 1 1 148266 562 0.00 2019-11-02 19:52:23 2019-11-02 19:52:50 t 1 1 148268 520 0.00 2019-11-02 19:43:55 2019-11-02 19:55:14 t 1 1 148270 622 0.00 2019-11-02 19:54:59 2019-11-02 19:56:07 t 1 1 148277 372 0.00 2019-11-02 19:46:56 2019-11-02 20:02:01 t 1 2 148279 619 0.00 2019-11-02 20:01:55 2019-11-02 20:03:32 t 1 1 148290 585 0.00 2019-11-02 20:13:22 2019-11-02 20:15:25 t 1 1 148291 562 0.00 2019-11-02 20:15:39 2019-11-02 20:16:01 t 1 1 148294 562 0.00 2019-11-02 20:17:03 2019-11-02 20:18:33 t 1 1 148296 623 0.00 2019-11-02 20:12:31 2019-11-02 20:19:40 t 1 1 148299 395 0.00 2019-11-02 20:19:57 2019-11-02 20:21:03 t 1 2 148303 585 0.00 2019-11-02 20:19:20 2019-11-02 20:23:26 t 1 1 148305 395 0.00 2019-11-02 20:22:47 2019-11-02 20:23:50 t 1 2 148306 395 0.00 2019-11-02 20:24:03 2019-11-02 20:25:08 t 1 2 148311 623 0.00 2019-11-02 20:27:06 2019-11-02 20:27:06 f 1 1 148313 619 0.00 2019-11-02 20:21:12 2019-11-02 20:27:54 t 1 1 148315 566 0.00 2019-11-02 20:11:00 2019-11-02 20:28:37 t 1 1 148316 562 0.00 2019-11-02 20:29:33 2019-11-02 20:29:58 t 1 1 148320 591 0.00 2019-11-02 20:30:54 2019-11-02 20:33:28 t 1 1 148321 445 0.00 2019-11-02 20:05:52 2019-11-02 20:38:00 t 1 1 148322 562 0.00 2019-11-02 20:34:50 2019-11-02 20:39:43 t 1 1 148323 622 0.00 2019-11-02 20:23:41 2019-11-02 20:40:22 t 1 1 148326 516 0.00 2019-11-02 20:43:34 2019-11-02 20:46:01 t 1 1 148330 619 0.00 2019-11-02 20:56:07 2019-11-02 20:57:41 t 1 1 148333 617 0.00 2019-11-02 20:54:58 2019-11-02 21:00:03 t 1 1 148341 623 0.00 2019-11-02 20:55:53 2019-11-02 21:14:08 t 1 1 148348 623 0.00 2019-11-02 21:17:38 2019-11-02 21:17:38 f 1 1 148350 623 0.00 2019-11-02 21:17:51 2019-11-02 21:17:51 f 1 1 148354 623 0.00 2019-11-02 21:16:58 2019-11-02 21:18:36 t 1 1 148358 379 0.00 2019-11-02 21:19:37 2019-11-02 21:20:13 t 1 1 148363 379 0.00 2019-11-02 21:20:36 2019-11-02 21:23:18 t 1 1 148365 220 0.00 2019-11-02 21:23:53 2019-11-02 21:24:27 t 1 1 148370 562 0.00 2019-11-02 21:22:54 2019-11-02 21:26:40 t 1 1 148373 220 0.00 2019-11-02 21:26:57 2019-11-02 21:27:28 t 1 1 148374 220 0.00 2019-11-02 21:27:28 2019-11-02 21:28:04 t 1 1 148381 220 0.00 2019-11-02 21:31:38 2019-11-02 21:32:13 t 1 1 148382 220 0.00 2019-11-02 21:32:12 2019-11-02 21:32:50 t 1 1 148386 551 0.00 2019-11-02 20:08:11 2019-11-02 21:34:35 t 1 1 148387 220 0.00 2019-11-02 21:34:08 2019-11-02 21:34:43 t 1 1 148394 619 0.00 2019-11-02 21:27:09 2019-11-02 21:37:26 t 1 1 148396 220 0.00 2019-11-02 21:37:05 2019-11-02 21:37:47 t 1 1 148397 587 0.00 2019-11-02 21:33:19 2019-11-02 21:38:18 t 1 1 148400 220 0.00 2019-11-02 21:38:18 2019-11-02 21:38:51 t 1 1 148408 325 0.00 2019-11-02 21:40:44 2019-11-02 21:40:44 f 1 2 148409 220 0.00 2019-11-02 21:40:32 2019-11-02 21:41:07 t 1 1 148413 220 0.00 2019-11-02 21:41:07 2019-11-02 21:41:41 t 1 1 148416 623 0.00 2019-11-02 21:32:03 2019-11-02 21:43:30 t 1 1 148417 581 0.00 2019-11-02 21:41:49 2019-11-02 21:44:09 t 1 1 148302 562 0.00 2019-11-02 20:22:12 2019-11-02 20:23:14 t 1 1 148307 623 0.00 2019-11-02 20:19:40 2019-11-02 20:25:41 t 1 1 148308 623 0.00 2019-11-02 20:25:41 2019-11-02 20:26:24 t 1 1 148310 562 0.00 2019-11-02 20:25:01 2019-11-02 20:26:41 t 1 1 148312 623 0.00 2019-11-02 20:26:29 2019-11-02 20:27:36 t 1 1 148314 623 0.00 2019-11-02 20:26:41 2019-11-02 20:28:36 t 1 1 148318 562 0.00 2019-11-02 20:30:41 2019-11-02 20:31:09 t 1 1 148319 597 0.00 2019-11-02 20:27:28 2019-11-02 20:33:10 t 1 1 148328 622 0.00 2019-11-02 20:42:41 2019-11-02 20:46:52 t 1 1 148329 512 0.00 2019-11-02 20:37:26 2019-11-02 20:47:14 t 1 1 148331 570 0.00 2019-11-02 20:48:17 2019-11-02 20:58:44 t 1 1 148332 379 0.00 2019-11-02 17:08:26 2019-11-02 20:59:51 t 1 1 148335 220 0.00 2019-11-02 19:30:06 2019-11-02 21:03:24 t 1 1 148337 562 0.00 2019-11-02 21:06:18 2019-11-02 21:07:26 t 1 1 148340 622 0.00 2019-11-02 20:54:29 2019-11-02 21:12:22 t 1 1 148342 622 0.00 2019-11-02 21:12:22 2019-11-02 21:14:19 t 1 1 148343 562 0.00 2019-11-02 21:12:06 2019-11-02 21:15:47 t 1 1 148344 623 0.00 2019-11-02 21:14:08 2019-11-02 21:16:37 t 1 1 148345 623 0.00 2019-11-02 21:16:51 2019-11-02 21:16:53 t 1 1 148353 562 0.00 2019-11-02 21:17:18 2019-11-02 21:18:00 t 1 1 148357 379 0.00 2019-11-02 20:59:51 2019-11-02 21:19:37 t 1 1 148359 379 0.00 2019-11-02 21:20:12 2019-11-02 21:20:37 t 1 1 148361 220 0.00 2019-11-02 21:19:14 2019-11-02 21:21:37 t 1 1 148362 220 0.00 2019-11-02 21:22:03 2019-11-02 21:23:18 t 1 1 148364 220 0.00 2019-11-02 21:23:17 2019-11-02 21:23:53 t 1 1 148367 422 0.00 2019-11-02 21:23:59 2019-11-02 21:25:27 t 1 1 148371 220 0.00 2019-11-02 21:26:15 2019-11-02 21:26:57 t 1 1 148375 220 0.00 2019-11-02 21:28:04 2019-11-02 21:28:37 t 1 1 148376 220 0.00 2019-11-02 21:28:37 2019-11-02 21:29:17 t 1 1 148378 220 0.00 2019-11-02 21:29:49 2019-11-02 21:30:24 t 1 1 148379 220 0.00 2019-11-02 21:30:24 2019-11-02 21:31:03 t 1 1 148383 587 0.00 2019-11-02 21:31:55 2019-11-02 21:33:13 t 1 1 148384 220 0.00 2019-11-02 21:32:49 2019-11-02 21:33:24 t 1 1 148385 220 0.00 2019-11-02 21:33:23 2019-11-02 21:34:08 t 1 1 148389 566 0.00 2019-11-02 21:26:29 2019-11-02 21:35:26 t 1 1 148390 220 0.00 2019-11-02 21:35:18 2019-11-02 21:35:59 t 1 1 148393 581 0.00 2019-11-02 21:35:42 2019-11-02 21:37:22 t 1 1 148398 220 0.00 2019-11-02 21:37:47 2019-11-02 21:38:19 t 1 1 148401 220 0.00 2019-11-02 21:38:51 2019-11-02 21:39:23 t 1 1 148403 545 0.00 2019-11-02 21:38:08 2019-11-02 21:39:38 t 1 1 148405 581 0.00 2019-11-02 21:39:42 2019-11-02 21:40:09 t 1 1 148411 587 0.00 2019-11-02 21:38:52 2019-11-02 21:41:14 t 1 1 148415 562 0.00 2019-11-02 21:42:50 2019-11-02 21:43:08 t 1 1 148423 570 0.00 2019-11-02 21:46:00 2019-11-02 21:48:59 t 1 1 148432 520 0.00 2019-11-02 21:42:27 2019-11-02 21:53:55 t 1 1 148441 562 0.00 2019-11-02 22:03:50 2019-11-02 22:04:35 t 1 1 148443 556 0.00 2019-11-02 22:02:09 2019-11-02 22:05:40 t 1 1 148448 379 0.00 2019-11-02 21:45:46 2019-11-02 22:16:27 t 1 1 148449 562 0.00 2019-11-02 22:11:49 2019-11-02 22:19:19 t 1 1 148451 619 0.00 2019-11-02 22:16:38 2019-11-02 22:20:15 t 1 1 148453 597 0.00 2019-11-02 22:16:36 2019-11-02 22:23:32 t 1 1 148468 591 0.00 2019-11-02 22:42:28 2019-11-02 22:44:40 t 1 1 148472 625 0.00 2019-11-02 22:16:47 2019-11-02 22:51:15 t 1 1 148473 556 0.00 2019-11-02 22:05:40 2019-11-02 22:54:13 t 1 1 148474 556 0.00 2019-11-02 22:54:13 2019-11-02 22:55:20 t 1 1 148480 562 0.00 2019-11-02 23:06:13 2019-11-02 23:10:40 t 1 1 148489 562 0.00 2019-11-02 23:25:02 2019-11-02 23:28:07 t 1 1 148491 528 0.00 2019-11-02 23:19:01 2019-11-02 23:28:55 t 1 1 148495 551 0.00 2019-11-02 21:34:35 2019-11-02 23:32:46 t 1 1 148496 578 0.00 2019-11-02 23:17:57 2019-11-02 23:32:59 t 1 1 148498 510 0.00 2019-11-02 22:37:45 2019-11-02 23:37:12 t 1 1 148499 220 0.00 2019-11-02 23:21:52 2019-11-02 23:38:58 t 1 1 148500 483 0.00 2019-11-02 23:32:03 2019-11-02 23:39:58 t 1 1 148502 623 0.00 2019-11-02 23:40:20 2019-11-02 23:40:54 t 1 1 148503 623 0.00 2019-11-02 23:40:59 2019-11-02 23:41:42 t 1 1 148507 623 0.00 2019-11-02 23:44:12 2019-11-02 23:44:24 t 1 1 148508 585 0.00 2019-11-02 23:41:49 2019-11-02 23:45:49 t 1 1 148509 623 0.00 2019-11-02 23:45:52 2019-11-02 23:46:04 t 1 1 148511 623 0.00 2019-11-02 23:46:45 2019-11-02 23:46:46 t 1 1 148512 422 0.00 2019-11-02 23:42:54 2019-11-02 23:48:12 t 1 1 148514 514 0.00 2019-11-02 23:30:35 2019-11-02 23:51:41 t 1 1 148521 528 0.00 2019-11-02 23:28:55 2019-11-02 23:53:37 t 1 1 148524 623 0.00 2019-11-02 23:58:46 2019-11-02 23:59:00 t 1 1 148526 599 0.00 2019-11-02 23:52:14 2019-11-03 00:02:19 t 1 1 148534 551 0.00 2019-11-02 23:32:46 2019-11-03 00:12:16 t 1 1 148537 623 0.00 2019-11-03 00:14:40 2019-11-03 00:14:44 t 1 1 148543 623 0.00 2019-11-03 00:24:43 2019-11-03 00:25:46 t 1 1 148546 545 0.00 2019-11-02 23:57:07 2019-11-03 00:29:28 t 1 1 148547 623 0.00 2019-11-03 00:29:45 2019-11-03 00:29:54 t 1 1 148550 581 0.00 2019-11-03 00:09:23 2019-11-03 00:39:21 t 1 1 148551 545 0.00 2019-11-03 00:29:28 2019-11-03 00:39:58 t 1 1 148552 623 0.00 2019-11-03 00:40:01 2019-11-03 00:40:05 t 1 1 148554 544 0.00 2019-11-03 00:33:22 2019-11-03 00:41:16 t 1 2 148556 562 0.00 2019-11-03 00:43:27 2019-11-03 00:43:54 t 1 1 148562 623 0.00 2019-11-03 00:50:06 2019-11-03 00:50:07 t 1 1 148564 581 0.00 2019-11-03 00:53:19 2019-11-03 00:53:57 t 1 1 148565 581 0.00 2019-11-03 00:54:20 2019-11-03 00:54:31 t 1 1 148575 483 0.00 2019-11-03 00:58:29 2019-11-03 01:07:32 t 1 1 148576 623 0.00 2019-11-03 01:08:11 2019-11-03 01:08:14 t 1 1 148577 623 0.00 2019-11-03 01:09:18 2019-11-03 01:09:19 t 1 1 148581 623 0.00 2019-11-03 01:14:23 2019-11-03 01:14:24 t 1 1 148582 483 0.00 2019-11-03 01:11:56 2019-11-03 01:15:13 t 1 1 148583 562 0.00 2019-11-03 01:15:53 2019-11-03 01:16:05 t 1 1 148586 609 0.00 2019-11-03 01:06:29 2019-11-03 01:22:07 t 1 1 148587 581 0.00 2019-11-03 01:23:00 2019-11-03 01:23:35 t 1 1 148588 623 0.00 2019-11-03 01:24:30 2019-11-03 01:24:38 t 1 1 148591 581 0.00 2019-11-03 01:32:53 2019-11-03 01:33:32 t 1 1 148592 623 0.00 2019-11-03 01:34:46 2019-11-03 01:34:49 t 1 1 148595 581 0.00 2019-11-03 01:38:08 2019-11-03 01:38:35 t 1 1 148597 581 0.00 2019-11-03 01:42:44 2019-11-03 01:43:24 t 1 1 148600 483 0.00 2019-11-03 01:38:18 2019-11-03 01:48:04 t 1 1 148602 622 0.00 2019-11-03 01:29:59 2019-11-03 01:49:00 t 1 1 148604 581 0.00 2019-11-03 01:51:39 2019-11-03 01:52:05 t 1 1 148606 581 0.00 2019-11-03 01:52:34 2019-11-03 01:53:16 t 1 1 148608 623 0.00 2019-11-03 01:53:53 2019-11-03 01:53:59 t 1 1 148611 623 0.00 2019-11-03 01:54:46 2019-11-03 01:55:03 t 1 1 148612 623 0.00 2019-11-03 01:55:14 2019-11-03 01:55:21 t 1 1 148304 615 0.00 2019-11-02 20:20:05 2019-11-02 20:23:30 t 1 1 148309 395 0.00 2019-11-02 20:25:29 2019-11-02 20:26:29 t 1 2 148317 566 0.00 2019-11-02 20:28:37 2019-11-02 20:31:02 t 1 1 148324 562 0.00 2019-11-02 20:41:52 2019-11-02 20:42:21 t 1 1 148325 562 0.00 2019-11-02 20:43:52 2019-11-02 20:44:36 t 1 1 148327 562 0.00 2019-11-02 20:45:21 2019-11-02 20:46:07 t 1 1 148334 562 0.00 2019-11-02 20:47:10 2019-11-02 21:00:51 t 1 1 148336 562 0.00 2019-11-02 21:04:30 2019-11-02 21:05:46 t 1 1 148338 562 0.00 2019-11-02 21:09:13 2019-11-02 21:09:40 t 1 1 148339 570 0.00 2019-11-02 20:58:44 2019-11-02 21:09:44 t 1 1 148346 623 0.00 2019-11-02 21:17:11 2019-11-02 21:17:11 f 1 1 148347 623 0.00 2019-11-02 21:17:25 2019-11-02 21:17:25 f 1 1 148349 512 0.00 2019-11-02 20:47:14 2019-11-02 21:17:39 t 1 1 148351 570 0.00 2019-11-02 21:09:40 2019-11-02 21:17:54 t 1 1 148352 623 0.00 2019-11-02 21:18:00 2019-11-02 21:18:00 f 1 1 148355 623 0.00 2019-11-02 21:16:42 2019-11-02 21:18:36 t 1 1 148356 220 0.00 2019-11-02 21:19:01 2019-11-02 21:19:09 t 1 1 148360 562 0.00 2019-11-02 21:19:12 2019-11-02 21:21:00 t 1 1 148366 220 0.00 2019-11-02 21:24:27 2019-11-02 21:25:00 t 1 1 148368 220 0.00 2019-11-02 21:25:00 2019-11-02 21:25:43 t 1 1 148369 220 0.00 2019-11-02 21:25:43 2019-11-02 21:26:15 t 1 1 148372 392 0.00 2019-11-02 21:27:24 2019-11-02 21:27:24 f 1 2 148377 220 0.00 2019-11-02 21:29:16 2019-11-02 21:29:50 t 1 1 148380 220 0.00 2019-11-02 21:31:03 2019-11-02 21:31:38 t 1 1 148388 220 0.00 2019-11-02 21:34:43 2019-11-02 21:35:19 t 1 1 148391 220 0.00 2019-11-02 21:35:58 2019-11-02 21:36:31 t 1 1 148392 220 0.00 2019-11-02 21:36:31 2019-11-02 21:37:05 t 1 1 148395 562 0.00 2019-11-02 21:26:59 2019-11-02 21:37:29 t 1 1 148399 581 0.00 2019-11-02 21:38:26 2019-11-02 21:38:39 t 1 1 148402 581 0.00 2019-11-02 21:39:24 2019-11-02 21:39:36 t 1 1 148404 220 0.00 2019-11-02 21:39:23 2019-11-02 21:39:58 t 1 1 148406 566 0.00 2019-11-02 21:35:26 2019-11-02 21:40:15 t 1 1 148407 220 0.00 2019-11-02 21:39:58 2019-11-02 21:40:32 t 1 1 148410 445 0.00 2019-11-02 20:38:19 2019-11-02 21:41:08 t 1 1 148412 581 0.00 2019-11-02 21:41:23 2019-11-02 21:41:28 t 1 1 148414 562 0.00 2019-11-02 21:40:27 2019-11-02 21:42:02 t 1 1 148419 544 0.00 2019-11-02 21:10:52 2019-11-02 21:45:58 t 1 2 148420 372 0.00 2019-11-02 21:45:52 2019-11-02 21:46:49 t 1 2 148421 578 0.00 2019-11-02 21:35:46 2019-11-02 21:47:07 t 1 1 148425 623 0.00 2019-11-02 21:43:30 2019-11-02 21:49:32 t 1 1 148426 623 0.00 2019-11-02 21:49:49 2019-11-02 21:50:33 t 1 1 148428 566 0.00 2019-11-02 21:47:44 2019-11-02 21:51:38 t 1 1 148429 623 0.00 2019-11-02 21:52:14 2019-11-02 21:52:15 t 1 1 148431 623 0.00 2019-11-02 21:52:52 2019-11-02 21:53:52 t 1 1 148433 623 0.00 2019-11-02 21:53:00 2019-11-02 21:54:37 t 1 1 148434 570 0.00 2019-11-02 21:50:32 2019-11-02 21:55:04 t 1 1 148438 562 0.00 2019-11-02 21:58:50 2019-11-02 22:02:16 t 1 1 148440 545 0.00 2019-11-02 22:02:17 2019-11-02 22:04:08 t 1 1 148446 520 0.00 2019-11-02 21:58:01 2019-11-02 22:10:41 t 1 1 148454 566 0.00 2019-11-02 22:05:34 2019-11-02 22:26:02 t 1 1 148455 379 0.00 2019-11-02 22:18:04 2019-11-02 22:30:26 t 1 1 148459 578 0.00 2019-11-02 21:47:07 2019-11-02 22:34:24 t 1 1 148461 562 0.00 2019-11-02 22:19:45 2019-11-02 22:37:23 t 1 1 148464 595 0.00 2019-11-02 22:26:45 2019-11-02 22:40:32 t 1 1 148467 619 0.00 2019-11-02 22:42:29 2019-11-02 22:44:36 t 1 1 148469 564 0.00 2019-11-02 21:57:23 2019-11-02 22:47:57 t 1 1 148471 558 0.00 2019-11-02 22:49:53 2019-11-02 22:50:56 t 1 1 148477 562 0.00 2019-11-02 22:50:44 2019-11-02 23:03:39 t 1 1 148478 392 0.00 2019-11-02 23:08:36 2019-11-02 23:08:36 f 1 2 148481 578 0.00 2019-11-02 22:55:45 2019-11-02 23:12:07 t 1 1 148484 562 0.00 2019-11-02 23:13:08 2019-11-02 23:13:37 t 1 1 148485 578 0.00 2019-11-02 23:12:07 2019-11-02 23:17:57 t 1 1 148493 562 0.00 2019-11-02 23:31:07 2019-11-02 23:31:51 t 1 1 148494 483 0.00 2019-11-02 23:17:15 2019-11-02 23:32:04 t 1 1 148497 556 0.00 2019-11-02 23:21:02 2019-11-02 23:35:44 t 1 1 148504 562 0.00 2019-11-02 23:42:02 2019-11-02 23:42:29 t 1 1 148506 623 0.00 2019-11-02 23:42:56 2019-11-02 23:42:58 t 1 1 148513 564 0.00 2019-11-02 22:47:57 2019-11-02 23:51:17 t 1 1 148517 623 0.00 2019-11-02 23:52:02 2019-11-02 23:52:03 t 1 1 148523 623 0.00 2019-11-02 23:56:59 2019-11-02 23:57:13 t 1 1 148525 623 0.00 2019-11-02 23:59:42 2019-11-02 23:59:51 t 1 1 148527 562 0.00 2019-11-03 00:03:31 2019-11-03 00:03:58 t 1 1 148530 623 0.00 2019-11-03 00:07:25 2019-11-03 00:07:28 t 1 1 148531 623 0.00 2019-11-03 00:09:25 2019-11-03 00:09:36 t 1 1 148532 422 0.00 2019-11-02 23:53:16 2019-11-03 00:10:48 t 1 1 148535 585 0.00 2019-11-03 00:07:53 2019-11-03 00:12:29 t 1 1 148536 562 0.00 2019-11-03 00:14:23 2019-11-03 00:14:42 t 1 1 148538 558 0.00 2019-11-02 22:51:02 2019-11-03 00:17:35 t 1 1 148541 551 0.00 2019-11-03 00:18:02 2019-11-03 00:23:42 t 1 1 148542 562 0.00 2019-11-03 00:25:08 2019-11-03 00:25:26 t 1 1 148544 422 0.00 2019-11-03 00:14:38 2019-11-03 00:28:49 t 1 1 148548 623 0.00 2019-11-03 00:34:58 2019-11-03 00:35:01 t 1 1 148549 562 0.00 2019-11-03 00:35:51 2019-11-03 00:36:11 t 1 1 148557 581 0.00 2019-11-03 00:43:29 2019-11-03 00:44:11 t 1 1 148559 623 0.00 2019-11-03 00:45:02 2019-11-03 00:45:03 t 1 1 148560 514 0.00 2019-11-02 23:51:41 2019-11-03 00:47:00 t 1 1 148563 623 0.00 2019-11-03 00:52:08 2019-11-03 00:52:11 t 1 1 148567 623 0.00 2019-11-03 00:55:10 2019-11-03 00:55:12 t 1 1 148568 623 0.00 2019-11-03 00:55:57 2019-11-03 00:55:58 t 1 1 148570 623 0.00 2019-11-03 00:59:09 2019-11-03 00:59:14 t 1 1 148571 422 0.00 2019-11-03 00:50:30 2019-11-03 01:00:01 t 1 1 148574 562 0.00 2019-11-03 01:04:56 2019-11-03 01:05:21 t 1 1 148578 623 0.00 2019-11-03 01:11:48 2019-11-03 01:11:51 t 1 1 148579 581 0.00 2019-11-03 01:12:25 2019-11-03 01:13:46 t 1 1 148584 623 0.00 2019-11-03 01:19:26 2019-11-03 01:19:29 t 1 1 148589 562 0.00 2019-11-03 01:26:38 2019-11-03 01:26:52 t 1 1 148594 581 0.00 2019-11-03 01:35:42 2019-11-03 01:37:38 t 1 1 148596 623 0.00 2019-11-03 01:39:50 2019-11-03 01:40:11 t 1 1 148598 623 0.00 2019-11-03 01:44:55 2019-11-03 01:44:58 t 1 1 148609 623 0.00 2019-11-03 01:54:12 2019-11-03 01:54:13 t 1 1 148613 623 0.00 2019-11-03 01:55:34 2019-11-03 01:55:35 t 1 1 148619 623 0.00 2019-11-03 01:56:50 2019-11-03 01:56:52 t 1 1 148620 623 0.00 2019-11-03 01:56:57 2019-11-03 01:57:04 t 1 1 148623 623 0.00 2019-11-03 01:57:30 2019-11-03 01:57:36 t 1 1 148627 623 0.00 2019-11-03 01:58:34 2019-11-03 01:58:40 t 1 1 148628 623 0.00 2019-11-03 01:58:53 2019-11-03 01:58:54 t 1 1 148629 422 0.00 2019-11-03 01:52:32 2019-11-03 01:59:01 t 1 1 148418 570 0.00 2019-11-02 21:39:12 2019-11-02 21:45:07 t 1 1 148422 566 0.00 2019-11-02 21:40:15 2019-11-02 21:47:44 t 1 1 148424 562 0.00 2019-11-02 21:48:51 2019-11-02 21:49:23 t 1 1 148427 623 0.00 2019-11-02 21:49:37 2019-11-02 21:51:37 t 1 1 148430 623 0.00 2019-11-02 21:53:06 2019-11-02 21:53:06 f 1 1 148435 456 0.00 2019-11-02 21:46:13 2019-11-02 21:57:48 t 1 1 148436 520 0.00 2019-11-02 21:56:49 2019-11-02 21:58:03 t 1 1 148437 556 0.00 2019-11-02 21:32:25 2019-11-02 22:02:09 t 1 1 148439 220 0.00 2019-11-02 21:41:41 2019-11-02 22:02:35 t 1 1 148442 485 0.00 2019-11-02 21:58:30 2019-11-02 22:04:38 t 1 1 148444 597 0.00 2019-11-02 21:46:51 2019-11-02 22:09:53 t 1 1 148445 544 0.00 2019-11-02 22:09:16 2019-11-02 22:10:19 t 1 2 148447 562 0.00 2019-11-02 22:05:51 2019-11-02 22:11:12 t 1 1 148450 591 0.00 2019-11-02 21:09:11 2019-11-02 22:19:36 t 1 1 148452 445 0.00 2019-11-02 21:41:42 2019-11-02 22:20:25 t 1 1 148456 591 0.00 2019-11-02 22:19:36 2019-11-02 22:30:59 t 1 1 148457 585 0.00 2019-11-02 22:28:50 2019-11-02 22:32:27 t 1 1 148458 585 0.00 2019-11-02 22:32:27 2019-11-02 22:34:00 t 1 1 148460 445 0.00 2019-11-02 22:20:32 2019-11-02 22:37:21 t 1 1 148462 566 0.00 2019-11-02 22:26:02 2019-11-02 22:37:31 t 1 1 148463 591 0.00 2019-11-02 22:35:30 2019-11-02 22:40:02 t 1 1 148465 585 0.00 2019-11-02 22:34:31 2019-11-02 22:41:11 t 1 1 148466 481 0.00 2019-11-02 20:18:51 2019-11-02 22:44:00 t 1 1 148470 558 0.00 2019-11-02 22:18:32 2019-11-02 22:50:46 t 1 1 148475 578 0.00 2019-11-02 22:34:24 2019-11-02 22:55:45 t 1 1 148476 591 0.00 2019-11-02 22:59:08 2019-11-02 23:00:18 t 1 1 148479 503 0.00 2019-11-02 22:52:49 2019-11-02 23:09:16 t 1 1 148482 422 0.00 2019-11-02 23:11:18 2019-11-02 23:12:53 t 1 1 148483 585 0.00 2019-11-02 23:10:57 2019-11-02 23:13:15 t 1 1 148486 503 0.00 2019-11-02 23:09:16 2019-11-02 23:18:27 t 1 1 148487 562 0.00 2019-11-02 23:20:34 2019-11-02 23:20:45 t 1 1 148488 574 0.00 2019-11-02 23:09:42 2019-11-02 23:27:18 t 1 1 148490 372 0.00 2019-11-02 23:26:41 2019-11-02 23:28:15 t 1 2 148492 599 0.00 2019-11-02 23:26:38 2019-11-02 23:28:56 t 1 1 148501 623 0.00 2019-11-02 23:26:12 2019-11-02 23:40:15 t 1 1 148505 623 0.00 2019-11-02 23:42:34 2019-11-02 23:42:44 t 1 1 148510 483 0.00 2019-11-02 23:42:26 2019-11-02 23:46:17 t 1 1 148515 623 0.00 2019-11-02 23:51:49 2019-11-02 23:51:55 t 1 1 148516 422 0.00 2019-11-02 23:51:49 2019-11-02 23:52:03 t 1 1 148518 623 0.00 2019-11-02 23:52:09 2019-11-02 23:52:12 t 1 1 148519 623 0.00 2019-11-02 23:52:29 2019-11-02 23:52:30 t 1 1 148520 562 0.00 2019-11-02 23:52:49 2019-11-02 23:53:14 t 1 1 148522 623 0.00 2019-11-02 23:56:52 2019-11-02 23:56:53 t 1 1 148528 623 0.00 2019-11-03 00:04:17 2019-11-03 00:04:27 t 1 1 148529 607 0.00 2019-11-02 23:43:18 2019-11-03 00:05:34 t 1 1 148533 528 0.00 2019-11-02 23:53:39 2019-11-03 00:11:48 t 1 1 148539 551 0.00 2019-11-03 00:12:16 2019-11-03 00:18:02 t 1 1 148540 623 0.00 2019-11-03 00:20:34 2019-11-03 00:20:36 t 1 1 148545 361 0.00 2019-11-02 23:13:44 2019-11-03 00:28:50 t 1 2 148553 483 0.00 2019-11-03 00:27:56 2019-11-03 00:40:27 t 1 1 148555 545 0.00 2019-11-03 00:39:58 2019-11-03 00:41:32 t 1 1 148558 623 0.00 2019-11-03 00:44:46 2019-11-03 00:44:49 t 1 1 148561 422 0.00 2019-11-03 00:28:49 2019-11-03 00:49:59 t 1 1 148566 562 0.00 2019-11-03 00:54:12 2019-11-03 00:54:38 t 1 1 148569 623 0.00 2019-11-03 00:56:04 2019-11-03 00:56:05 t 1 1 148572 581 0.00 2019-11-03 01:03:13 2019-11-03 01:03:51 t 1 1 148573 623 0.00 2019-11-03 01:04:15 2019-11-03 01:04:17 t 1 1 148580 623 0.00 2019-11-03 01:13:45 2019-11-03 01:14:00 t 1 1 148585 581 0.00 2019-11-03 01:19:54 2019-11-03 01:19:55 t 1 1 148590 623 0.00 2019-11-03 01:29:40 2019-11-03 01:30:02 t 1 1 148593 562 0.00 2019-11-03 01:37:26 2019-11-03 01:37:38 t 1 1 148599 581 0.00 2019-11-03 01:45:11 2019-11-03 01:45:24 t 1 1 148601 562 0.00 2019-11-03 01:47:58 2019-11-03 01:48:20 t 1 1 148603 623 0.00 2019-11-03 01:49:59 2019-11-03 01:50:00 t 1 1 148605 422 0.00 2019-11-03 01:42:46 2019-11-03 01:52:32 t 1 1 148607 623 0.00 2019-11-03 01:53:06 2019-11-03 01:53:42 t 1 1 148610 623 0.00 2019-11-03 01:54:18 2019-11-03 01:54:20 t 1 1 148614 623 0.00 2019-11-03 01:55:40 2019-11-03 01:55:47 t 1 1 148615 623 0.00 2019-11-03 01:56:00 2019-11-03 01:56:01 t 1 1 148617 623 0.00 2019-11-03 01:56:06 2019-11-03 01:56:13 t 1 1 148621 623 0.00 2019-11-03 01:57:17 2019-11-03 01:57:18 t 1 1 148624 623 0.00 2019-11-03 01:57:49 2019-11-03 01:57:50 t 1 1 148625 623 0.00 2019-11-03 01:57:55 2019-11-03 01:57:57 t 1 1 148630 562 0.00 2019-11-03 01:58:42 2019-11-03 01:59:07 t 1 1 148632 623 0.00 2019-11-03 01:59:20 2019-11-03 01:59:21 t 1 1 148634 623 0.00 2019-11-03 01:59:41 2019-11-03 01:59:57 t 1 1 148637 623 0.00 2019-11-03 02:00:41 2019-11-03 02:00:43 t 1 1 148641 623 0.00 2019-11-03 02:01:33 2019-11-03 02:01:34 t 1 1 148644 422 0.00 2019-11-03 01:59:01 2019-11-03 02:02:20 t 1 1 148645 623 0.00 2019-11-03 02:02:21 2019-11-03 02:02:27 t 1 1 148646 623 0.00 2019-11-03 02:02:40 2019-11-03 02:02:41 t 1 1 148649 623 0.00 2019-11-03 02:03:01 2019-11-03 02:03:14 t 1 1 148653 623 0.00 2019-11-03 02:04:24 2019-11-03 02:04:30 t 1 1 148654 623 0.00 2019-11-03 02:04:43 2019-11-03 02:04:44 t 1 1 148656 623 0.00 2019-11-03 02:04:58 2019-11-03 02:05:04 t 1 1 148660 623 0.00 2019-11-03 02:06:12 2019-11-03 02:06:13 t 1 1 148664 623 0.00 2019-11-03 02:07:09 2019-11-03 02:07:16 t 1 1 148667 623 0.00 2019-11-03 02:07:54 2019-11-03 02:07:56 t 1 1 148668 623 0.00 2019-11-03 02:08:01 2019-11-03 02:08:08 t 1 1 148672 516 0.00 2019-11-03 02:04:30 2019-11-03 02:09:39 t 1 1 148676 623 0.00 2019-11-03 02:10:06 2019-11-03 02:10:07 t 1 1 148680 581 0.00 2019-11-03 02:11:13 2019-11-03 02:11:17 t 1 1 148682 623 0.00 2019-11-03 02:11:27 2019-11-03 02:11:28 t 1 1 148684 623 0.00 2019-11-03 02:11:45 2019-11-03 02:12:03 t 1 1 148688 623 0.00 2019-11-03 02:12:35 2019-11-03 02:13:03 t 1 1 148691 623 0.00 2019-11-03 02:13:43 2019-11-03 02:13:51 t 1 1 148692 623 0.00 2019-11-03 02:14:03 2019-11-03 02:14:05 t 1 1 148697 623 0.00 2019-11-03 02:15:37 2019-11-03 02:15:42 t 1 1 148702 538 0.00 2019-11-03 00:57:10 2019-11-03 02:16:38 t 1 1 148706 623 0.00 2019-11-03 02:17:45 2019-11-03 02:17:47 t 1 1 148707 623 0.00 2019-11-03 02:17:52 2019-11-03 02:17:57 t 1 1 148710 623 0.00 2019-11-03 02:18:38 2019-11-03 02:18:45 t 1 1 148711 623 0.00 2019-11-03 02:19:03 2019-11-03 02:19:10 t 1 1 148714 623 0.00 2019-11-03 02:19:44 2019-11-03 02:19:56 t 1 1 148717 623 0.00 2019-11-03 02:20:38 2019-11-03 02:20:39 t 1 1 148719 623 0.00 2019-11-03 02:20:44 2019-11-03 02:20:46 t 1 1 148721 623 0.00 2019-11-03 02:21:23 2019-11-03 02:21:30 t 1 1 148616 581 0.00 2019-11-03 01:55:08 2019-11-03 01:56:10 t 1 1 148618 623 0.00 2019-11-03 01:56:31 2019-11-03 01:56:38 t 1 1 148622 623 0.00 2019-11-03 01:57:23 2019-11-03 01:57:25 t 1 1 148626 623 0.00 2019-11-03 01:58:10 2019-11-03 01:58:23 t 1 1 148633 623 0.00 2019-11-03 01:59:26 2019-11-03 01:59:28 t 1 1 148635 623 0.00 2019-11-03 02:00:04 2019-11-03 02:00:11 t 1 1 148638 623 0.00 2019-11-03 02:00:48 2019-11-03 02:00:54 t 1 1 148639 623 0.00 2019-11-03 02:01:07 2019-11-03 02:01:08 t 1 1 148642 623 0.00 2019-11-03 02:01:39 2019-11-03 02:01:41 t 1 1 148643 623 0.00 2019-11-03 02:01:54 2019-11-03 02:02:10 t 1 1 148647 623 0.00 2019-11-03 02:02:46 2019-11-03 02:02:49 t 1 1 148648 581 0.00 2019-11-03 02:02:29 2019-11-03 02:03:10 t 1 1 148650 623 0.00 2019-11-03 02:03:21 2019-11-03 02:03:48 t 1 1 148651 623 0.00 2019-11-03 02:03:59 2019-11-03 02:04:05 t 1 1 148655 623 0.00 2019-11-03 02:04:49 2019-11-03 02:04:52 t 1 1 148657 623 0.00 2019-11-03 02:05:09 2019-11-03 02:05:14 t 1 1 148661 623 0.00 2019-11-03 02:06:18 2019-11-03 02:06:20 t 1 1 148665 623 0.00 2019-11-03 02:07:29 2019-11-03 02:07:30 t 1 1 148669 623 0.00 2019-11-03 02:08:13 2019-11-03 02:08:51 t 1 1 148670 623 0.00 2019-11-03 02:09:04 2019-11-03 02:09:06 t 1 1 148673 623 0.00 2019-11-03 02:09:40 2019-11-03 02:09:41 t 1 1 148677 623 0.00 2019-11-03 02:10:13 2019-11-03 02:10:20 t 1 1 148679 623 0.00 2019-11-03 02:10:47 2019-11-03 02:11:14 t 1 1 148683 623 0.00 2019-11-03 02:11:33 2019-11-03 02:11:40 t 1 1 148685 623 0.00 2019-11-03 02:12:16 2019-11-03 02:12:17 t 1 1 148686 623 0.00 2019-11-03 02:12:22 2019-11-03 02:12:30 t 1 1 148687 581 0.00 2019-11-03 02:12:22 2019-11-03 02:13:01 t 1 1 148689 623 0.00 2019-11-03 02:13:08 2019-11-03 02:13:24 t 1 1 148693 623 0.00 2019-11-03 02:14:10 2019-11-03 02:14:12 t 1 1 148695 623 0.00 2019-11-03 02:15:01 2019-11-03 02:15:17 t 1 1 148698 623 0.00 2019-11-03 02:15:55 2019-11-03 02:15:56 t 1 1 148699 623 0.00 2019-11-03 02:16:01 2019-11-03 02:16:03 t 1 1 148701 623 0.00 2019-11-03 02:16:16 2019-11-03 02:16:29 t 1 1 148703 623 0.00 2019-11-03 02:16:40 2019-11-03 02:16:46 t 1 1 148704 623 0.00 2019-11-03 02:17:05 2019-11-03 02:17:11 t 1 1 148708 623 0.00 2019-11-03 02:18:02 2019-11-03 02:18:19 t 1 1 148712 623 0.00 2019-11-03 02:19:22 2019-11-03 02:19:24 t 1 1 148722 623 0.00 2019-11-03 02:21:42 2019-11-03 02:21:55 t 1 1 148724 623 0.00 2019-11-03 02:22:36 2019-11-03 02:22:38 t 1 1 148726 623 0.00 2019-11-03 02:22:43 2019-11-03 02:22:50 t 1 1 148730 623 0.00 2019-11-03 02:23:34 2019-11-03 02:23:40 t 1 1 148731 623 0.00 2019-11-03 02:23:54 2019-11-03 02:24:10 t 1 1 148734 623 0.00 2019-11-03 02:24:46 2019-11-03 02:24:52 t 1 1 148736 623 0.00 2019-11-03 02:25:12 2019-11-03 02:25:15 t 1 1 148739 623 0.00 2019-11-03 02:25:46 2019-11-03 02:25:53 t 1 1 148740 623 0.00 2019-11-03 02:25:58 2019-11-03 02:26:15 t 1 1 148743 623 0.00 2019-11-03 02:26:54 2019-11-03 02:26:55 t 1 1 148744 623 0.00 2019-11-03 02:27:00 2019-11-03 02:27:07 t 1 1 148751 623 0.00 2019-11-03 02:28:25 2019-11-03 02:28:41 t 1 1 148757 623 0.00 2019-11-03 02:29:52 2019-11-03 02:29:58 t 1 1 148760 623 0.00 2019-11-03 02:30:30 2019-11-03 02:30:36 t 1 1 148764 562 0.00 2019-11-03 02:31:03 2019-11-03 02:31:28 t 1 1 148769 623 0.00 2019-11-03 02:32:34 2019-11-03 02:32:36 t 1 1 148772 623 0.00 2019-11-03 02:33:09 2019-11-03 02:33:26 t 1 1 148776 623 0.00 2019-11-03 02:34:22 2019-11-03 02:34:24 t 1 1 148781 623 0.00 2019-11-03 02:35:28 2019-11-03 02:35:35 t 1 1 148782 623 0.00 2019-11-03 02:35:40 2019-11-03 02:35:58 t 1 1 148783 623 0.00 2019-11-03 02:36:03 2019-11-03 02:36:19 t 1 1 148785 599 0.00 2019-11-03 02:29:34 2019-11-03 02:36:25 t 1 1 148788 623 0.00 2019-11-03 02:37:25 2019-11-03 02:37:26 t 1 1 148792 623 0.00 2019-11-03 02:38:19 2019-11-03 02:38:25 t 1 1 148796 623 0.00 2019-11-03 02:39:18 2019-11-03 02:39:46 t 1 1 148798 623 0.00 2019-11-03 02:39:51 2019-11-03 02:40:10 t 1 1 148800 623 0.00 2019-11-03 02:40:23 2019-11-03 02:40:24 t 1 1 148809 623 0.00 2019-11-03 02:42:48 2019-11-03 02:42:54 t 1 1 148810 623 0.00 2019-11-03 02:43:07 2019-11-03 02:43:08 t 1 1 148814 623 0.00 2019-11-03 02:44:20 2019-11-03 02:44:27 t 1 1 148819 623 0.00 2019-11-03 02:45:33 2019-11-03 02:45:39 t 1 1 148821 623 0.00 2019-11-03 02:46:19 2019-11-03 02:46:20 t 1 1 148825 623 0.00 2019-11-03 02:47:03 2019-11-03 02:47:09 t 1 1 148827 581 0.00 2019-11-03 02:46:02 2019-11-03 02:47:38 t 1 1 148828 623 0.00 2019-11-03 02:47:39 2019-11-03 02:48:06 t 1 1 148832 623 0.00 2019-11-03 02:49:12 2019-11-03 02:49:18 t 1 1 148833 581 0.00 2019-11-03 02:49:25 2019-11-03 02:49:40 t 1 1 148837 623 0.00 2019-11-03 02:50:18 2019-11-03 02:50:24 t 1 1 148840 562 0.00 2019-11-03 02:50:41 2019-11-03 02:50:54 t 1 1 148841 623 0.00 2019-11-03 02:51:03 2019-11-03 02:51:04 t 1 1 148843 361 0.00 2019-11-03 01:50:59 2019-11-03 02:51:22 t 1 2 148848 623 0.00 2019-11-03 02:52:13 2019-11-03 02:52:30 t 1 1 148850 623 0.00 2019-11-03 02:52:35 2019-11-03 02:52:53 t 1 1 148851 623 0.00 2019-11-03 02:52:58 2019-11-03 02:53:24 t 1 1 148855 623 0.00 2019-11-03 02:54:31 2019-11-03 02:54:48 t 1 1 148857 623 0.00 2019-11-03 02:55:27 2019-11-03 02:55:49 t 1 1 148859 623 0.00 2019-11-03 02:56:02 2019-11-03 02:56:08 t 1 1 148863 623 0.00 2019-11-03 02:57:34 2019-11-03 02:57:47 t 1 1 148864 623 0.00 2019-11-03 02:57:58 2019-11-03 02:58:04 t 1 1 148865 623 0.00 2019-11-03 02:58:10 2019-11-03 02:58:27 t 1 1 148869 623 0.00 2019-11-03 02:59:23 2019-11-03 02:59:31 t 1 1 148878 623 0.00 2019-11-03 03:01:40 2019-11-03 03:01:47 t 1 1 148879 623 0.00 2019-11-03 03:01:52 2019-11-03 03:02:09 t 1 1 148881 623 0.00 2019-11-03 03:02:22 2019-11-03 03:02:23 t 1 1 148885 623 0.00 2019-11-03 03:03:14 2019-11-03 03:03:16 t 1 1 148888 599 0.00 2019-11-03 02:58:24 2019-11-03 03:04:02 t 1 1 148890 623 0.00 2019-11-03 03:04:54 2019-11-03 03:05:26 t 1 1 148891 623 0.00 2019-11-03 03:05:49 2019-11-03 03:06:21 t 1 1 148892 623 0.00 2019-11-03 03:06:32 2019-11-03 03:07:04 t 1 1 148896 623 0.00 2019-11-03 03:08:09 2019-11-03 03:08:16 t 1 1 148897 623 0.00 2019-11-03 03:08:28 2019-11-03 03:09:01 t 1 1 148900 623 0.00 2019-11-03 03:09:23 2019-11-03 03:09:31 t 1 1 148905 562 0.00 2019-11-03 03:12:05 2019-11-03 03:12:26 t 1 1 148908 623 0.00 2019-11-03 03:13:19 2019-11-03 03:13:52 t 1 1 148910 623 0.00 2019-11-03 03:14:37 2019-11-03 03:14:38 t 1 1 148912 623 0.00 2019-11-03 03:14:53 2019-11-03 03:15:29 t 1 1 148913 623 0.00 2019-11-03 03:15:34 2019-11-03 03:16:08 t 1 1 148917 623 0.00 2019-11-03 03:17:18 2019-11-03 03:17:25 t 1 1 148918 623 0.00 2019-11-03 03:17:38 2019-11-03 03:18:14 t 1 1 148919 623 0.00 2019-11-03 03:18:25 2019-11-03 03:19:00 t 1 1 148631 623 0.00 2019-11-03 01:58:59 2019-11-03 01:59:07 t 1 1 148636 623 0.00 2019-11-03 02:00:22 2019-11-03 02:00:29 t 1 1 148640 623 0.00 2019-11-03 02:01:13 2019-11-03 02:01:20 t 1 1 148652 623 0.00 2019-11-03 02:04:18 2019-11-03 02:04:19 t 1 1 148658 623 0.00 2019-11-03 02:05:19 2019-11-03 02:05:37 t 1 1 148659 623 0.00 2019-11-03 02:05:42 2019-11-03 02:05:59 t 1 1 148662 623 0.00 2019-11-03 02:06:33 2019-11-03 02:06:55 t 1 1 148663 623 0.00 2019-11-03 02:07:02 2019-11-03 02:07:04 t 1 1 148666 623 0.00 2019-11-03 02:07:35 2019-11-03 02:07:42 t 1 1 148671 623 0.00 2019-11-03 02:09:21 2019-11-03 02:09:27 t 1 1 148674 623 0.00 2019-11-03 02:09:46 2019-11-03 02:09:53 t 1 1 148675 562 0.00 2019-11-03 02:09:38 2019-11-03 02:09:57 t 1 1 148678 623 0.00 2019-11-03 02:10:25 2019-11-03 02:10:42 t 1 1 148681 422 0.00 2019-11-03 02:02:20 2019-11-03 02:11:20 t 1 1 148690 623 0.00 2019-11-03 02:13:37 2019-11-03 02:13:38 t 1 1 148694 623 0.00 2019-11-03 02:14:24 2019-11-03 02:14:46 t 1 1 148696 623 0.00 2019-11-03 02:15:30 2019-11-03 02:15:31 t 1 1 148700 483 0.00 2019-11-03 02:11:51 2019-11-03 02:16:24 t 1 1 148705 623 0.00 2019-11-03 02:17:16 2019-11-03 02:17:33 t 1 1 148709 623 0.00 2019-11-03 02:18:31 2019-11-03 02:18:33 t 1 1 148713 623 0.00 2019-11-03 02:19:29 2019-11-03 02:19:31 t 1 1 148715 623 0.00 2019-11-03 02:20:07 2019-11-03 02:20:12 t 1 1 148716 623 0.00 2019-11-03 02:20:18 2019-11-03 02:20:25 t 1 1 148718 562 0.00 2019-11-03 02:20:13 2019-11-03 02:20:39 t 1 1 148720 623 0.00 2019-11-03 02:20:59 2019-11-03 02:21:12 t 1 1 148725 622 0.00 2019-11-03 02:21:07 2019-11-03 02:22:47 t 1 1 148732 623 0.00 2019-11-03 02:24:21 2019-11-03 02:24:27 t 1 1 148737 623 0.00 2019-11-03 02:25:20 2019-11-03 02:25:27 t 1 1 148741 623 0.00 2019-11-03 02:26:27 2019-11-03 02:26:29 t 1 1 148745 623 0.00 2019-11-03 02:27:20 2019-11-03 02:27:22 t 1 1 148748 581 0.00 2019-11-03 02:27:35 2019-11-03 02:27:48 t 1 1 148749 623 0.00 2019-11-03 02:27:52 2019-11-03 02:27:57 t 1 1 148752 623 0.00 2019-11-03 02:28:54 2019-11-03 02:28:56 t 1 1 148753 623 0.00 2019-11-03 02:29:19 2019-11-03 02:29:21 t 1 1 148755 599 0.00 2019-11-03 00:02:19 2019-11-03 02:29:34 t 1 1 148756 623 0.00 2019-11-03 02:29:45 2019-11-03 02:29:46 t 1 1 148758 623 0.00 2019-11-03 02:30:11 2019-11-03 02:30:12 t 1 1 148761 623 0.00 2019-11-03 02:30:48 2019-11-03 02:30:50 t 1 1 148762 623 0.00 2019-11-03 02:30:55 2019-11-03 02:31:02 t 1 1 148763 623 0.00 2019-11-03 02:31:07 2019-11-03 02:31:24 t 1 1 148765 623 0.00 2019-11-03 02:31:36 2019-11-03 02:31:38 t 1 1 148767 623 0.00 2019-11-03 02:32:07 2019-11-03 02:32:15 t 1 1 148773 623 0.00 2019-11-03 02:33:37 2019-11-03 02:33:44 t 1 1 148774 623 0.00 2019-11-03 02:33:56 2019-11-03 02:33:58 t 1 1 148777 623 0.00 2019-11-03 02:34:29 2019-11-03 02:34:36 t 1 1 148779 623 0.00 2019-11-03 02:35:10 2019-11-03 02:35:11 t 1 1 148789 623 0.00 2019-11-03 02:37:31 2019-11-03 02:37:37 t 1 1 148790 623 0.00 2019-11-03 02:37:42 2019-11-03 02:37:59 t 1 1 148793 623 0.00 2019-11-03 02:38:30 2019-11-03 02:38:47 t 1 1 148794 623 0.00 2019-11-03 02:39:00 2019-11-03 02:39:01 t 1 1 148797 562 0.00 2019-11-03 02:39:55 2019-11-03 02:40:09 t 1 1 148801 623 0.00 2019-11-03 02:40:29 2019-11-03 02:40:36 t 1 1 148805 623 0.00 2019-11-03 02:41:39 2019-11-03 02:41:57 t 1 1 148807 581 0.00 2019-11-03 02:41:56 2019-11-03 02:42:41 t 1 1 148811 623 0.00 2019-11-03 02:43:13 2019-11-03 02:43:20 t 1 1 148815 623 0.00 2019-11-03 02:44:40 2019-11-03 02:44:41 t 1 1 148817 623 0.00 2019-11-03 02:45:06 2019-11-03 02:45:08 t 1 1 148822 623 0.00 2019-11-03 02:46:25 2019-11-03 02:46:32 t 1 1 148826 623 0.00 2019-11-03 02:47:27 2019-11-03 02:47:34 t 1 1 148829 623 0.00 2019-11-03 02:48:11 2019-11-03 02:48:28 t 1 1 148835 623 0.00 2019-11-03 02:49:53 2019-11-03 02:50:05 t 1 1 148838 623 0.00 2019-11-03 02:50:37 2019-11-03 02:50:38 t 1 1 148839 623 0.00 2019-11-03 02:50:43 2019-11-03 02:50:50 t 1 1 148842 623 0.00 2019-11-03 02:51:09 2019-11-03 02:51:16 t 1 1 148844 623 0.00 2019-11-03 02:51:28 2019-11-03 02:51:30 t 1 1 148852 623 0.00 2019-11-03 02:53:29 2019-11-03 02:53:57 t 1 1 148853 623 0.00 2019-11-03 02:54:09 2019-11-03 02:54:11 t 1 1 148860 623 0.00 2019-11-03 02:56:13 2019-11-03 02:56:30 t 1 1 148861 581 0.00 2019-11-03 02:55:51 2019-11-03 02:56:51 t 1 1 148866 623 0.00 2019-11-03 02:58:40 2019-11-03 02:58:41 t 1 1 148870 623 0.00 2019-11-03 02:59:43 2019-11-03 02:59:45 t 1 1 148872 623 0.00 2019-11-03 03:00:23 2019-11-03 03:00:24 t 1 1 148875 619 0.00 2019-11-03 02:56:30 2019-11-03 03:01:06 t 1 1 148876 623 0.00 2019-11-03 03:01:15 2019-11-03 03:01:22 t 1 1 148880 581 0.00 2019-11-03 03:01:43 2019-11-03 03:02:23 t 1 1 148882 623 0.00 2019-11-03 03:02:29 2019-11-03 03:02:35 t 1 1 148886 623 0.00 2019-11-03 03:03:21 2019-11-03 03:03:23 t 1 1 148889 623 0.00 2019-11-03 03:04:04 2019-11-03 03:04:40 t 1 1 148893 623 0.00 2019-11-03 03:07:09 2019-11-03 03:07:11 t 1 1 148898 623 0.00 2019-11-03 03:09:08 2019-11-03 03:09:10 t 1 1 148903 623 0.00 2019-11-03 03:11:24 2019-11-03 03:12:00 t 1 1 148904 581 0.00 2019-11-03 03:11:28 2019-11-03 03:12:15 t 1 1 148911 623 0.00 2019-11-03 03:14:43 2019-11-03 03:14:48 t 1 1 148914 623 0.00 2019-11-03 03:16:13 2019-11-03 03:16:20 t 1 1 148915 623 0.00 2019-11-03 03:16:32 2019-11-03 03:17:04 t 1 1 148920 623 0.00 2019-11-03 03:19:13 2019-11-03 03:19:45 t 1 1 148924 623 0.00 2019-11-03 03:21:26 2019-11-03 03:21:58 t 1 1 148935 623 0.00 2019-11-03 03:27:19 2019-11-03 03:27:26 t 1 1 148936 623 0.00 2019-11-03 03:27:39 2019-11-03 03:28:11 t 1 1 148940 623 0.00 2019-11-03 03:29:43 2019-11-03 03:29:45 t 1 1 148942 623 0.00 2019-11-03 03:30:37 2019-11-03 03:30:38 t 1 1 148949 623 0.00 2019-11-03 03:34:10 2019-11-03 03:35:18 t 1 1 148951 623 0.00 2019-11-03 03:35:25 2019-11-03 03:35:26 t 1 1 148952 623 0.00 2019-11-03 03:35:39 2019-11-03 03:36:11 t 1 1 148956 623 0.00 2019-11-03 03:37:22 2019-11-03 03:37:24 t 1 1 148958 623 0.00 2019-11-03 03:37:47 2019-11-03 03:38:19 t 1 1 148959 623 0.00 2019-11-03 03:38:30 2019-11-03 03:39:02 t 1 1 148961 623 0.00 2019-11-03 03:39:27 2019-11-03 03:39:59 t 1 1 148966 581 0.00 2019-11-03 03:41:12 2019-11-03 03:41:50 t 1 1 148969 623 0.00 2019-11-03 03:42:46 2019-11-03 03:42:52 t 1 1 148973 623 0.00 2019-11-03 03:44:39 2019-11-03 03:45:11 t 1 1 148979 623 0.00 2019-11-03 03:46:29 2019-11-03 03:46:31 t 1 1 148980 623 0.00 2019-11-03 03:46:36 2019-11-03 03:47:12 t 1 1 148981 623 0.00 2019-11-03 03:47:25 2019-11-03 03:47:58 t 1 1 148985 623 0.00 2019-11-03 03:49:09 2019-11-03 03:49:10 t 1 1 148989 623 0.00 2019-11-03 03:50:30 2019-11-03 03:51:04 t 1 1 148992 623 0.00 2019-11-03 03:51:29 2019-11-03 03:52:01 t 1 1 148723 623 0.00 2019-11-03 02:22:06 2019-11-03 02:22:24 t 1 1 148727 581 0.00 2019-11-03 02:22:14 2019-11-03 02:22:53 t 1 1 148728 623 0.00 2019-11-03 02:23:08 2019-11-03 02:23:14 t 1 1 148729 623 0.00 2019-11-03 02:23:27 2019-11-03 02:23:28 t 1 1 148733 623 0.00 2019-11-03 02:24:40 2019-11-03 02:24:41 t 1 1 148735 623 0.00 2019-11-03 02:25:05 2019-11-03 02:25:07 t 1 1 148738 623 0.00 2019-11-03 02:25:40 2019-11-03 02:25:41 t 1 1 148742 623 0.00 2019-11-03 02:26:34 2019-11-03 02:26:41 t 1 1 148746 623 0.00 2019-11-03 02:27:27 2019-11-03 02:27:32 t 1 1 148747 623 0.00 2019-11-03 02:27:45 2019-11-03 02:27:46 t 1 1 148750 623 0.00 2019-11-03 02:28:02 2019-11-03 02:28:20 t 1 1 148754 623 0.00 2019-11-03 02:29:26 2019-11-03 02:29:32 t 1 1 148759 623 0.00 2019-11-03 02:30:17 2019-11-03 02:30:25 t 1 1 148766 623 0.00 2019-11-03 02:31:43 2019-11-03 02:31:49 t 1 1 148768 623 0.00 2019-11-03 02:32:28 2019-11-03 02:32:29 t 1 1 148770 581 0.00 2019-11-03 02:32:08 2019-11-03 02:32:46 t 1 1 148771 623 0.00 2019-11-03 02:32:49 2019-11-03 02:33:02 t 1 1 148775 623 0.00 2019-11-03 02:34:03 2019-11-03 02:34:10 t 1 1 148778 623 0.00 2019-11-03 02:34:41 2019-11-03 02:34:57 t 1 1 148780 623 0.00 2019-11-03 02:35:16 2019-11-03 02:35:23 t 1 1 148784 581 0.00 2019-11-03 02:35:58 2019-11-03 02:36:19 t 1 1 148786 623 0.00 2019-11-03 02:36:24 2019-11-03 02:36:51 t 1 1 148787 623 0.00 2019-11-03 02:36:56 2019-11-03 02:37:12 t 1 1 148791 623 0.00 2019-11-03 02:38:12 2019-11-03 02:38:13 t 1 1 148795 623 0.00 2019-11-03 02:39:07 2019-11-03 02:39:13 t 1 1 148799 538 0.00 2019-11-03 02:23:21 2019-11-03 02:40:19 t 1 1 148802 623 0.00 2019-11-03 02:40:49 2019-11-03 02:40:51 t 1 1 148803 623 0.00 2019-11-03 02:40:56 2019-11-03 02:41:03 t 1 1 148804 623 0.00 2019-11-03 02:41:08 2019-11-03 02:41:34 t 1 1 148806 623 0.00 2019-11-03 02:42:02 2019-11-03 02:42:29 t 1 1 148808 623 0.00 2019-11-03 02:42:41 2019-11-03 02:42:43 t 1 1 148812 623 0.00 2019-11-03 02:43:33 2019-11-03 02:43:45 t 1 1 148813 623 0.00 2019-11-03 02:43:52 2019-11-03 02:44:09 t 1 1 148816 623 0.00 2019-11-03 02:44:46 2019-11-03 02:44:53 t 1 1 148818 623 0.00 2019-11-03 02:45:13 2019-11-03 02:45:20 t 1 1 148820 623 0.00 2019-11-03 02:45:50 2019-11-03 02:46:06 t 1 1 148823 623 0.00 2019-11-03 02:46:45 2019-11-03 02:46:46 t 1 1 148824 623 0.00 2019-11-03 02:46:51 2019-11-03 02:46:58 t 1 1 148830 623 0.00 2019-11-03 02:48:46 2019-11-03 02:48:53 t 1 1 148831 623 0.00 2019-11-03 02:49:06 2019-11-03 02:49:07 t 1 1 148834 623 0.00 2019-11-03 02:49:23 2019-11-03 02:49:40 t 1 1 148836 623 0.00 2019-11-03 02:50:11 2019-11-03 02:50:13 t 1 1 148845 623 0.00 2019-11-03 02:51:35 2019-11-03 02:51:41 t 1 1 148846 623 0.00 2019-11-03 02:51:54 2019-11-03 02:51:55 t 1 1 148847 623 0.00 2019-11-03 02:52:00 2019-11-03 02:52:08 t 1 1 148849 581 0.00 2019-11-03 02:51:50 2019-11-03 02:52:32 t 1 1 148854 623 0.00 2019-11-03 02:54:16 2019-11-03 02:54:18 t 1 1 148856 623 0.00 2019-11-03 02:54:55 2019-11-03 02:55:20 t 1 1 148858 623 0.00 2019-11-03 02:55:56 2019-11-03 02:55:57 t 1 1 148862 623 0.00 2019-11-03 02:56:45 2019-11-03 02:57:28 t 1 1 148867 623 0.00 2019-11-03 02:58:46 2019-11-03 02:58:53 t 1 1 148868 623 0.00 2019-11-03 02:59:05 2019-11-03 02:59:13 t 1 1 148871 623 0.00 2019-11-03 02:59:50 2019-11-03 02:59:57 t 1 1 148873 623 0.00 2019-11-03 03:00:30 2019-11-03 03:00:35 t 1 1 148874 623 0.00 2019-11-03 03:00:48 2019-11-03 03:01:04 t 1 1 148877 562 0.00 2019-11-03 03:01:21 2019-11-03 03:01:41 t 1 1 148883 623 0.00 2019-11-03 03:02:48 2019-11-03 03:02:50 t 1 1 148884 623 0.00 2019-11-03 03:02:55 2019-11-03 03:03:02 t 1 1 148887 623 0.00 2019-11-03 03:03:36 2019-11-03 03:03:52 t 1 1 148894 623 0.00 2019-11-03 03:07:24 2019-11-03 03:07:56 t 1 1 148895 623 0.00 2019-11-03 03:08:02 2019-11-03 03:08:04 t 1 1 148899 623 0.00 2019-11-03 03:09:15 2019-11-03 03:09:18 t 1 1 148901 623 0.00 2019-11-03 03:09:50 2019-11-03 03:10:25 t 1 1 148902 623 0.00 2019-11-03 03:10:39 2019-11-03 03:11:13 t 1 1 148906 623 0.00 2019-11-03 03:12:13 2019-11-03 03:12:45 t 1 1 148907 623 0.00 2019-11-03 03:12:59 2019-11-03 03:13:06 t 1 1 148909 623 0.00 2019-11-03 03:13:58 2019-11-03 03:14:30 t 1 1 148916 623 0.00 2019-11-03 03:17:11 2019-11-03 03:17:13 t 1 1 148921 483 0.00 2019-11-03 03:14:20 2019-11-03 03:19:55 t 1 1 148922 623 0.00 2019-11-03 03:19:52 2019-11-03 03:20:25 t 1 1 148923 623 0.00 2019-11-03 03:20:36 2019-11-03 03:21:14 t 1 1 148928 623 0.00 2019-11-03 03:22:59 2019-11-03 03:23:31 t 1 1 148929 623 0.00 2019-11-03 03:23:38 2019-11-03 03:24:11 t 1 1 148931 623 0.00 2019-11-03 03:25:00 2019-11-03 03:25:06 t 1 1 148937 623 0.00 2019-11-03 03:28:18 2019-11-03 03:28:51 t 1 1 148938 623 0.00 2019-11-03 03:28:58 2019-11-03 03:29:29 t 1 1 148945 623 0.00 2019-11-03 03:31:42 2019-11-03 03:32:15 t 1 1 148946 623 0.00 2019-11-03 03:32:26 2019-11-03 03:33:03 t 1 1 148947 623 0.00 2019-11-03 03:33:20 2019-11-03 03:33:57 t 1 1 148953 623 0.00 2019-11-03 03:36:18 2019-11-03 03:36:20 t 1 1 148957 623 0.00 2019-11-03 03:37:29 2019-11-03 03:37:34 t 1 1 148960 623 0.00 2019-11-03 03:39:08 2019-11-03 03:39:14 t 1 1 148962 623 0.00 2019-11-03 03:40:05 2019-11-03 03:40:07 t 1 1 148967 623 0.00 2019-11-03 03:41:25 2019-11-03 03:41:57 t 1 1 148971 623 0.00 2019-11-03 03:43:05 2019-11-03 03:43:37 t 1 1 148972 623 0.00 2019-11-03 03:43:48 2019-11-03 03:44:26 t 1 1 148974 623 0.00 2019-11-03 03:45:18 2019-11-03 03:45:19 t 1 1 148976 619 0.00 2019-11-03 03:38:01 2019-11-03 03:45:37 t 1 1 148977 623 0.00 2019-11-03 03:45:44 2019-11-03 03:46:15 t 1 1 148982 623 0.00 2019-11-03 03:48:04 2019-11-03 03:48:06 t 1 1 148986 623 0.00 2019-11-03 03:49:16 2019-11-03 03:49:22 t 1 1 148988 623 0.00 2019-11-03 03:49:46 2019-11-03 03:50:20 t 1 1 148990 623 0.00 2019-11-03 03:51:09 2019-11-03 03:51:17 t 1 1 148993 623 0.00 2019-11-03 03:52:21 2019-11-03 03:52:53 t 1 1 148994 623 0.00 2019-11-03 03:53:03 2019-11-03 03:53:11 t 1 1 148995 623 0.00 2019-11-03 03:53:23 2019-11-03 03:53:55 t 1 1 148998 623 0.00 2019-11-03 03:54:44 2019-11-03 03:54:50 t 1 1 149002 623 0.00 2019-11-03 03:57:18 2019-11-03 03:57:24 t 1 1 149006 623 0.00 2019-11-03 03:58:36 2019-11-03 03:58:42 t 1 1 149009 623 0.00 2019-11-03 04:00:00 2019-11-03 04:00:33 t 1 1 149011 581 0.00 2019-11-03 04:00:58 2019-11-03 04:01:38 t 1 1 149014 623 0.00 2019-11-03 04:02:31 2019-11-03 04:02:39 t 1 1 149015 623 0.00 2019-11-03 04:02:51 2019-11-03 04:03:23 t 1 1 149021 623 0.00 2019-11-03 04:05:03 2019-11-03 04:05:36 t 1 1 149022 623 0.00 2019-11-03 04:05:47 2019-11-03 04:06:24 t 1 1 149023 623 0.00 2019-11-03 04:06:36 2019-11-03 04:07:09 t 1 1 149028 623 0.00 2019-11-03 04:09:32 2019-11-03 04:10:08 t 1 1 148925 581 0.00 2019-11-03 03:21:28 2019-11-03 03:22:06 t 1 1 148926 623 0.00 2019-11-03 03:22:09 2019-11-03 03:22:46 t 1 1 148927 562 0.00 2019-11-03 03:22:46 2019-11-03 03:23:15 t 1 1 148930 623 0.00 2019-11-03 03:24:22 2019-11-03 03:24:55 t 1 1 148932 623 0.00 2019-11-03 03:25:19 2019-11-03 03:25:50 t 1 1 148933 623 0.00 2019-11-03 03:26:01 2019-11-03 03:26:37 t 1 1 148934 623 0.00 2019-11-03 03:26:42 2019-11-03 03:27:14 t 1 1 148939 623 0.00 2019-11-03 03:29:36 2019-11-03 03:29:38 t 1 1 148941 623 0.00 2019-11-03 03:29:57 2019-11-03 03:30:30 t 1 1 148943 623 0.00 2019-11-03 03:30:51 2019-11-03 03:31:23 t 1 1 148944 581 0.00 2019-11-03 03:31:20 2019-11-03 03:31:57 t 1 1 148948 562 0.00 2019-11-03 03:33:31 2019-11-03 03:33:58 t 1 1 148950 581 0.00 2019-11-03 03:35:11 2019-11-03 03:35:23 t 1 1 148954 623 0.00 2019-11-03 03:36:25 2019-11-03 03:36:31 t 1 1 148955 623 0.00 2019-11-03 03:36:44 2019-11-03 03:37:16 t 1 1 148963 623 0.00 2019-11-03 03:40:20 2019-11-03 03:40:51 t 1 1 148964 623 0.00 2019-11-03 03:40:58 2019-11-03 03:41:00 t 1 1 148965 623 0.00 2019-11-03 03:41:06 2019-11-03 03:41:12 t 1 1 148968 623 0.00 2019-11-03 03:42:08 2019-11-03 03:42:41 t 1 1 148970 562 0.00 2019-11-03 03:43:00 2019-11-03 03:43:20 t 1 1 148975 623 0.00 2019-11-03 03:45:24 2019-11-03 03:45:31 t 1 1 148978 623 0.00 2019-11-03 03:46:22 2019-11-03 03:46:24 t 1 1 148983 623 0.00 2019-11-03 03:48:11 2019-11-03 03:48:17 t 1 1 148984 623 0.00 2019-11-03 03:48:30 2019-11-03 03:49:02 t 1 1 148987 623 0.00 2019-11-03 03:49:27 2019-11-03 03:49:34 t 1 1 148991 581 0.00 2019-11-03 03:51:03 2019-11-03 03:51:47 t 1 1 148996 562 0.00 2019-11-03 03:53:45 2019-11-03 03:54:04 t 1 1 149003 623 0.00 2019-11-03 03:57:29 2019-11-03 03:57:36 t 1 1 149004 518 0.00 2019-11-03 01:42:54 2019-11-03 03:58:00 t 1 2 149007 623 0.00 2019-11-03 03:58:47 2019-11-03 03:58:53 t 1 1 149008 623 0.00 2019-11-03 03:59:06 2019-11-03 03:59:38 t 1 1 149012 623 0.00 2019-11-03 04:01:11 2019-11-03 04:01:43 t 1 1 149013 623 0.00 2019-11-03 04:01:54 2019-11-03 04:02:26 t 1 1 149017 623 0.00 2019-11-03 04:03:36 2019-11-03 04:03:44 t 1 1 149019 623 0.00 2019-11-03 04:04:44 2019-11-03 04:04:51 t 1 1 149027 623 0.00 2019-11-03 04:09:25 2019-11-03 04:09:27 t 1 1 149029 581 0.00 2019-11-03 04:09:31 2019-11-03 04:10:13 t 1 1 149030 623 0.00 2019-11-03 04:10:13 2019-11-03 04:10:19 t 1 1 149032 623 0.00 2019-11-03 04:10:43 2019-11-03 04:11:16 t 1 1 149034 581 0.00 2019-11-03 04:10:53 2019-11-03 04:11:33 t 1 1 149035 623 0.00 2019-11-03 04:11:37 2019-11-03 04:12:08 t 1 1 149039 623 0.00 2019-11-03 04:13:36 2019-11-03 04:14:08 t 1 1 149040 623 0.00 2019-11-03 04:14:19 2019-11-03 04:14:53 t 1 1 149042 623 0.00 2019-11-03 04:15:06 2019-11-03 04:15:38 t 1 1 149043 623 0.00 2019-11-03 04:15:49 2019-11-03 04:16:20 t 1 1 149044 623 0.00 2019-11-03 04:16:37 2019-11-03 04:17:09 t 1 1 149046 623 0.00 2019-11-03 04:17:38 2019-11-03 04:17:45 t 1 1 149048 623 0.00 2019-11-03 04:17:57 2019-11-03 04:18:30 t 1 1 149049 623 0.00 2019-11-03 04:18:41 2019-11-03 04:19:14 t 1 1 149051 623 0.00 2019-11-03 04:19:33 2019-11-03 04:20:08 t 1 1 149054 623 0.00 2019-11-03 04:21:05 2019-11-03 04:21:07 t 1 1 149055 623 0.00 2019-11-03 04:21:24 2019-11-03 04:21:56 t 1 1 149056 623 0.00 2019-11-03 04:22:01 2019-11-03 04:22:03 t 1 1 149058 623 0.00 2019-11-03 04:22:59 2019-11-03 04:23:31 t 1 1 149059 581 0.00 2019-11-03 04:22:58 2019-11-03 04:23:35 t 1 1 149060 623 0.00 2019-11-03 04:23:36 2019-11-03 04:23:43 t 1 1 149061 623 0.00 2019-11-03 04:23:55 2019-11-03 04:24:24 t 1 1 149062 623 0.00 2019-11-03 04:24:35 2019-11-03 04:25:08 t 1 1 149063 623 0.00 2019-11-03 04:25:13 2019-11-03 04:25:15 t 1 1 149064 623 0.00 2019-11-03 04:25:27 2019-11-03 04:26:00 t 1 1 149065 623 0.00 2019-11-03 04:26:07 2019-11-03 04:26:15 t 1 1 149066 562 0.00 2019-11-03 04:25:54 2019-11-03 04:26:20 t 1 1 149067 623 0.00 2019-11-03 04:26:25 2019-11-03 04:27:01 t 1 1 149068 623 0.00 2019-11-03 04:27:14 2019-11-03 04:27:46 t 1 1 149071 623 0.00 2019-11-03 04:30:41 2019-11-03 04:30:42 t 1 1 149072 623 0.00 2019-11-03 04:30:47 2019-11-03 04:30:49 t 1 1 149073 623 0.00 2019-11-03 04:31:14 2019-11-03 04:31:47 t 1 1 149074 623 0.00 2019-11-03 04:31:57 2019-11-03 04:32:04 t 1 1 149076 623 0.00 2019-11-03 04:32:23 2019-11-03 04:32:30 t 1 1 149077 623 0.00 2019-11-03 04:32:43 2019-11-03 04:32:44 t 1 1 149078 623 0.00 2019-11-03 04:32:49 2019-11-03 04:33:16 t 1 1 149081 623 0.00 2019-11-03 04:34:07 2019-11-03 04:34:09 t 1 1 149082 623 0.00 2019-11-03 04:34:21 2019-11-03 04:35:31 t 1 1 149083 623 0.00 2019-11-03 04:35:42 2019-11-03 04:36:21 t 1 1 149084 562 0.00 2019-11-03 04:36:43 2019-11-03 04:37:07 t 1 1 149085 619 0.00 2019-11-03 04:34:35 2019-11-03 04:38:15 t 1 1 149086 623 0.00 2019-11-03 04:36:33 2019-11-03 04:40:09 t 1 1 149087 623 0.00 2019-11-03 04:40:20 2019-11-03 04:40:28 t 1 1 149090 623 0.00 2019-11-03 04:41:14 2019-11-03 04:41:21 t 1 1 149091 623 0.00 2019-11-03 04:41:32 2019-11-03 04:41:40 t 1 1 149094 623 0.00 2019-11-03 04:42:09 2019-11-03 04:42:16 t 1 1 149095 623 0.00 2019-11-03 04:42:21 2019-11-03 04:42:27 t 1 1 149097 623 0.00 2019-11-03 04:42:52 2019-11-03 04:42:54 t 1 1 149098 562 0.00 2019-11-03 04:47:30 2019-11-03 04:47:53 t 1 1 149099 445 0.00 2019-11-03 04:17:58 2019-11-03 04:53:23 t 1 1 149100 562 0.00 2019-11-03 04:58:17 2019-11-03 04:59:05 t 1 1 149102 562 0.00 2019-11-03 05:08:57 2019-11-03 05:09:22 t 1 1 149105 520 0.00 2019-11-03 05:10:04 2019-11-03 05:13:56 t 1 1 149106 623 0.00 2019-11-03 05:11:00 2019-11-03 05:14:29 t 1 1 149107 445 0.00 2019-11-03 04:53:31 2019-11-03 05:14:47 t 1 1 149108 520 0.00 2019-11-03 05:13:55 2019-11-03 05:15:10 t 1 1 149109 430 0.00 2019-11-03 05:10:19 2019-11-03 05:15:51 t 1 1 149110 430 0.00 2019-11-03 05:15:58 2019-11-03 05:16:00 t 1 1 149111 520 0.00 2019-11-03 05:15:10 2019-11-03 05:17:54 t 1 1 149112 430 0.00 2019-11-03 05:16:24 2019-11-03 05:18:20 t 1 1 149114 430 0.00 2019-11-03 05:18:38 2019-11-03 05:18:40 t 1 1 149115 430 0.00 2019-11-03 05:18:49 2019-11-03 05:19:07 t 1 1 149116 430 0.00 2019-11-03 05:19:12 2019-11-03 05:19:18 t 1 1 149117 562 0.00 2019-11-03 05:19:46 2019-11-03 05:20:06 t 1 1 149120 562 0.00 2019-11-03 05:30:33 2019-11-03 05:30:53 t 1 1 149121 536 0.00 2019-11-03 05:29:29 2019-11-03 05:31:14 t 1 1 149122 536 0.00 2019-11-03 05:31:14 2019-11-03 05:33:07 t 1 1 149123 536 0.00 2019-11-03 05:33:07 2019-11-03 05:33:31 t 1 1 149124 445 0.00 2019-11-03 05:14:57 2019-11-03 05:35:50 t 1 1 149126 445 0.00 2019-11-03 05:35:58 2019-11-03 05:43:07 t 1 1 149127 520 0.00 2019-11-03 05:21:16 2019-11-03 05:43:51 t 1 1 149130 445 0.00 2019-11-03 05:47:30 2019-11-03 05:48:33 t 1 1 148997 623 0.00 2019-11-03 03:54:06 2019-11-03 03:54:39 t 1 1 148999 623 0.00 2019-11-03 03:55:03 2019-11-03 03:55:36 t 1 1 149000 623 0.00 2019-11-03 03:55:46 2019-11-03 03:56:19 t 1 1 149001 623 0.00 2019-11-03 03:56:31 2019-11-03 03:57:04 t 1 1 149005 623 0.00 2019-11-03 03:57:49 2019-11-03 03:58:20 t 1 1 149010 623 0.00 2019-11-03 04:00:48 2019-11-03 04:00:59 t 1 1 149016 623 0.00 2019-11-03 04:03:30 2019-11-03 04:03:31 t 1 1 149018 623 0.00 2019-11-03 04:04:02 2019-11-03 04:04:39 t 1 1 149020 562 0.00 2019-11-03 04:04:31 2019-11-03 04:04:53 t 1 1 149024 623 0.00 2019-11-03 04:07:20 2019-11-03 04:07:52 t 1 1 149025 623 0.00 2019-11-03 04:08:04 2019-11-03 04:08:37 t 1 1 149026 623 0.00 2019-11-03 04:08:47 2019-11-03 04:09:20 t 1 1 149031 623 0.00 2019-11-03 04:10:24 2019-11-03 04:10:31 t 1 1 149033 623 0.00 2019-11-03 04:11:23 2019-11-03 04:11:24 t 1 1 149036 623 0.00 2019-11-03 04:12:23 2019-11-03 04:12:29 t 1 1 149037 623 0.00 2019-11-03 04:12:42 2019-11-03 04:13:13 t 1 1 149038 581 0.00 2019-11-03 04:13:24 2019-11-03 04:13:44 t 1 1 149041 562 0.00 2019-11-03 04:15:14 2019-11-03 04:15:35 t 1 1 149045 623 0.00 2019-11-03 04:17:15 2019-11-03 04:17:20 t 1 1 149047 445 0.00 2019-11-02 22:37:24 2019-11-03 04:17:48 t 1 1 149050 623 0.00 2019-11-03 04:19:19 2019-11-03 04:19:21 t 1 1 149052 623 0.00 2019-11-03 04:20:19 2019-11-03 04:20:51 t 1 1 149053 623 0.00 2019-11-03 04:20:56 2019-11-03 04:21:00 t 1 1 149057 623 0.00 2019-11-03 04:22:16 2019-11-03 04:22:48 t 1 1 149069 581 0.00 2019-11-03 04:27:59 2019-11-03 04:28:59 t 1 1 149070 623 0.00 2019-11-03 04:27:57 2019-11-03 04:30:28 t 1 1 149075 623 0.00 2019-11-03 04:32:17 2019-11-03 04:32:18 t 1 1 149079 623 0.00 2019-11-03 04:33:34 2019-11-03 04:33:41 t 1 1 149080 623 0.00 2019-11-03 04:34:00 2019-11-03 04:34:02 t 1 1 149088 623 0.00 2019-11-03 04:40:40 2019-11-03 04:40:43 t 1 1 149089 623 0.00 2019-11-03 04:40:55 2019-11-03 04:41:01 t 1 1 149092 623 0.00 2019-11-03 04:41:45 2019-11-03 04:41:52 t 1 1 149093 623 0.00 2019-11-03 04:41:57 2019-11-03 04:42:04 t 1 1 149096 623 0.00 2019-11-03 04:42:32 2019-11-03 04:42:40 t 1 1 149101 430 0.00 2019-11-03 04:53:36 2019-11-03 05:09:04 t 1 1 149103 430 0.00 2019-11-03 05:09:16 2019-11-03 05:09:33 t 1 1 149104 623 0.00 2019-11-03 04:42:59 2019-11-03 05:11:00 t 1 1 149113 430 0.00 2019-11-03 05:18:27 2019-11-03 05:18:31 t 1 1 149118 430 0.00 2019-11-03 05:19:31 2019-11-03 05:20:37 t 1 1 149119 520 0.00 2019-11-03 05:19:48 2019-11-03 05:21:17 t 1 1 149125 562 0.00 2019-11-03 05:41:11 2019-11-03 05:41:37 t 1 1 149128 445 0.00 2019-11-03 05:43:16 2019-11-03 05:46:41 t 1 1 149129 581 0.00 2019-11-03 05:20:21 2019-11-03 05:47:50 t 1 1 149131 562 0.00 2019-11-03 05:48:55 2019-11-03 05:49:18 t 1 1 149132 520 0.00 2019-11-03 05:43:50 2019-11-03 05:51:21 t 1 1 149133 516 0.00 2019-11-03 05:42:57 2019-11-03 05:52:09 t 1 1 149134 520 0.00 2019-11-03 05:51:20 2019-11-03 05:52:31 t 1 1 149135 445 0.00 2019-11-03 05:48:54 2019-11-03 05:54:25 t 1 1 149136 445 0.00 2019-11-03 05:54:24 2019-11-03 05:56:58 t 1 1 149137 520 0.00 2019-11-03 05:52:31 2019-11-03 05:57:55 t 1 1 149138 622 0.00 2019-11-03 05:54:58 2019-11-03 05:57:55 t 1 1 149139 538 0.00 2019-11-03 02:41:20 2019-11-03 05:59:44 t 1 1 149140 562 0.00 2019-11-03 05:59:38 2019-11-03 06:00:00 t 1 1 149141 562 0.00 2019-11-03 06:02:25 2019-11-03 06:03:56 t 1 1 149142 625 0.00 2019-11-02 22:51:15 2019-11-03 06:05:14 t 1 1 149143 445 0.00 2019-11-03 06:05:58 2019-11-03 06:09:19 t 1 1 149144 538 0.00 2019-11-03 05:59:43 2019-11-03 06:10:17 t 1 1 149145 520 0.00 2019-11-03 05:57:54 2019-11-03 06:12:22 t 1 1 149146 538 0.00 2019-11-03 06:10:17 2019-11-03 06:13:23 t 1 1 149147 562 0.00 2019-11-03 06:13:55 2019-11-03 06:14:31 t 1 1 149148 445 0.00 2019-11-03 06:17:01 2019-11-03 06:17:49 t 1 1 149149 609 0.00 2019-11-03 06:17:23 2019-11-03 06:18:38 t 1 1 149150 445 0.00 2019-11-03 06:17:53 2019-11-03 06:21:20 t 1 1 149151 518 0.00 2019-11-03 06:06:44 2019-11-03 06:21:49 t 1 2 149152 562 0.00 2019-11-03 06:24:37 2019-11-03 06:25:03 t 1 1 149153 609 0.00 2019-11-03 06:17:55 2019-11-03 06:27:54 t 1 1 149154 551 0.00 2019-11-03 06:25:04 2019-11-03 06:33:52 t 1 1 149155 562 0.00 2019-11-03 06:35:07 2019-11-03 06:35:28 t 1 1 149156 516 0.00 2019-11-03 06:35:39 2019-11-03 06:37:25 t 1 1 149157 520 0.00 2019-11-03 06:16:21 2019-11-03 06:38:02 t 1 1 149158 520 0.00 2019-11-03 06:38:02 2019-11-03 06:40:17 t 1 1 149159 570 0.00 2019-11-03 06:31:05 2019-11-03 06:41:12 t 1 1 149160 609 0.00 2019-11-03 06:27:54 2019-11-03 06:41:13 t 1 1 149161 551 0.00 2019-11-03 06:33:52 2019-11-03 06:41:39 t 1 1 149162 578 0.00 2019-11-02 23:32:59 2019-11-03 06:43:10 t 1 1 149163 562 0.00 2019-11-03 06:45:50 2019-11-03 06:46:10 t 1 1 149164 566 0.00 2019-11-03 06:37:34 2019-11-03 06:48:33 t 1 1 149165 609 0.00 2019-11-03 06:41:13 2019-11-03 06:49:05 t 1 1 149166 551 0.00 2019-11-03 06:41:39 2019-11-03 06:49:40 t 1 1 149167 566 0.00 2019-11-03 06:48:33 2019-11-03 06:51:15 t 1 1 149168 570 0.00 2019-11-03 06:41:12 2019-11-03 06:51:46 t 1 1 149169 445 0.00 2019-11-03 06:50:30 2019-11-03 06:52:17 t 1 1 149170 445 0.00 2019-11-03 06:52:25 2019-11-03 06:53:35 t 1 1 149171 609 0.00 2019-11-03 06:49:05 2019-11-03 06:56:01 t 1 1 149172 595 0.00 2019-11-03 06:55:38 2019-11-03 06:56:30 t 1 1 149173 562 0.00 2019-11-03 06:56:26 2019-11-03 06:56:46 t 1 1 149174 556 0.00 2019-11-02 23:35:44 2019-11-03 07:01:23 t 1 1 149175 578 0.00 2019-11-03 06:43:10 2019-11-03 07:03:25 t 1 1 149176 627 0.00 2019-11-03 07:03:29 2019-11-03 07:04:04 t 1 1 149177 609 0.00 2019-11-03 06:56:01 2019-11-03 07:05:59 t 1 1 149178 619 0.00 2019-11-03 07:10:47 2019-11-03 07:15:12 t 1 1 149179 483 0.00 2019-11-03 04:50:59 2019-11-03 07:20:32 t 1 1 149180 562 0.00 2019-11-03 07:13:40 2019-11-03 07:25:06 t 1 1 149181 609 0.00 2019-11-03 07:05:59 2019-11-03 07:29:15 t 1 1 149182 562 0.00 2019-11-03 07:31:23 2019-11-03 07:31:36 t 1 1 149183 597 0.00 2019-11-03 07:28:02 2019-11-03 07:32:00 t 1 1 149184 625 0.00 2019-11-03 06:05:14 2019-11-03 07:36:30 t 1 1 149185 516 0.00 2019-11-03 07:33:13 2019-11-03 07:37:38 t 1 1 149186 538 0.00 2019-11-03 06:13:23 2019-11-03 07:39:34 t 1 1 149187 597 0.00 2019-11-03 07:38:58 2019-11-03 07:40:19 t 1 1 149188 430 0.00 2019-11-03 07:36:18 2019-11-03 07:41:49 t 1 1 149189 430 0.00 2019-11-03 07:42:23 2019-11-03 07:42:40 t 1 1 149190 430 0.00 2019-11-03 07:43:41 2019-11-03 07:44:58 t 1 1 149191 516 0.00 2019-11-03 07:37:37 2019-11-03 07:45:41 t 1 1 149192 562 0.00 2019-11-03 07:36:01 2019-11-03 07:47:44 t 1 1 149193 456 0.00 2019-11-03 07:00:08 2019-11-03 07:49:27 t 1 1 149194 481 0.00 2019-11-03 07:44:47 2019-11-03 07:50:42 t 1 1 149195 562 0.00 2019-11-03 07:47:44 2019-11-03 07:55:57 t 1 1 149196 591 0.00 2019-11-03 07:50:59 2019-11-03 08:00:40 t 1 1 149200 623 0.00 2019-11-03 08:01:14 2019-11-03 08:01:21 t 1 1 149205 623 0.00 2019-11-03 08:03:18 2019-11-03 08:03:20 t 1 1 149209 623 0.00 2019-11-03 08:04:17 2019-11-03 08:04:19 t 1 1 149212 623 0.00 2019-11-03 08:05:06 2019-11-03 08:05:08 t 1 1 149215 623 0.00 2019-11-03 08:05:49 2019-11-03 08:05:51 t 1 1 149216 623 0.00 2019-11-03 08:05:56 2019-11-03 08:06:02 t 1 1 149219 623 0.00 2019-11-03 08:06:40 2019-11-03 08:06:41 t 1 1 149224 623 0.00 2019-11-03 08:07:31 2019-11-03 08:07:32 t 1 1 149228 623 0.00 2019-11-03 08:08:17 2019-11-03 08:08:29 t 1 1 149232 623 0.00 2019-11-03 08:09:15 2019-11-03 08:09:22 t 1 1 149234 554 0.00 2019-11-03 07:43:11 2019-11-03 08:14:08 t 1 1 149237 623 0.00 2019-11-03 08:16:30 2019-11-03 08:16:35 t 1 1 149241 623 0.00 2019-11-03 08:17:13 2019-11-03 08:17:14 t 1 1 149243 623 0.00 2019-11-03 08:17:27 2019-11-03 08:17:40 t 1 1 149248 623 0.00 2019-11-03 08:18:20 2019-11-03 08:18:32 t 1 1 149256 623 0.00 2019-11-03 08:20:19 2019-11-03 08:20:21 t 1 1 149261 623 0.00 2019-11-03 08:21:49 2019-11-03 08:21:55 t 1 1 149264 623 0.00 2019-11-03 08:22:15 2019-11-03 08:22:17 t 1 1 149267 591 0.00 2019-11-03 08:00:40 2019-11-03 08:22:48 t 1 1 149271 623 0.00 2019-11-03 08:24:04 2019-11-03 08:24:30 t 1 1 149273 623 0.00 2019-11-03 08:24:45 2019-11-03 08:25:22 t 1 1 149277 430 0.00 2019-11-03 08:26:27 2019-11-03 08:26:40 t 1 1 149278 578 0.00 2019-11-03 07:03:25 2019-11-03 08:26:57 t 1 1 149281 623 0.00 2019-11-03 08:27:30 2019-11-03 08:27:36 t 1 1 149283 578 0.00 2019-11-03 08:26:56 2019-11-03 08:28:02 t 1 1 149286 623 0.00 2019-11-03 08:28:25 2019-11-03 08:28:27 t 1 1 149288 623 0.00 2019-11-03 08:29:44 2019-11-03 08:29:46 t 1 1 149292 623 0.00 2019-11-03 08:30:35 2019-11-03 08:30:37 t 1 1 149294 623 0.00 2019-11-03 08:31:35 2019-11-03 08:31:48 t 1 1 149295 623 0.00 2019-11-03 08:31:54 2019-11-03 08:32:17 t 1 1 149297 623 0.00 2019-11-03 08:32:32 2019-11-03 08:32:39 t 1 1 149298 623 0.00 2019-11-03 08:32:44 2019-11-03 08:32:50 t 1 1 149299 591 0.00 2019-11-03 08:31:12 2019-11-03 08:32:58 t 1 1 149303 623 0.00 2019-11-03 08:33:43 2019-11-03 08:33:44 t 1 1 149308 623 0.00 2019-11-03 08:34:48 2019-11-03 08:35:25 t 1 1 149312 551 0.00 2019-11-03 06:49:40 2019-11-03 08:36:29 t 1 1 149314 623 0.00 2019-11-03 08:36:49 2019-11-03 08:37:31 t 1 1 149325 623 0.00 2019-11-03 08:40:03 2019-11-03 08:40:10 t 1 1 149333 623 0.00 2019-11-03 08:41:42 2019-11-03 08:42:06 t 1 1 149336 623 0.00 2019-11-03 08:42:48 2019-11-03 08:42:54 t 1 1 149337 623 0.00 2019-11-03 08:42:59 2019-11-03 08:43:51 t 1 1 149340 623 0.00 2019-11-03 08:44:45 2019-11-03 08:44:51 t 1 1 149343 562 0.00 2019-11-03 08:45:07 2019-11-03 08:45:33 t 1 1 149346 623 0.00 2019-11-03 08:46:14 2019-11-03 08:46:19 t 1 1 149351 623 0.00 2019-11-03 08:47:26 2019-11-03 08:47:41 t 1 1 149353 520 0.00 2019-11-03 08:40:34 2019-11-03 08:48:01 t 1 1 149355 623 0.00 2019-11-03 08:48:08 2019-11-03 08:48:14 t 1 1 149359 623 0.00 2019-11-03 08:49:15 2019-11-03 08:49:17 t 1 1 149363 623 0.00 2019-11-03 08:50:53 2019-11-03 08:50:54 t 1 1 149364 585 0.00 2019-11-03 08:44:13 2019-11-03 08:51:05 t 1 1 149370 623 0.00 2019-11-03 08:53:31 2019-11-03 08:53:48 t 1 1 149371 623 0.00 2019-11-03 08:54:13 2019-11-03 08:54:20 t 1 1 149372 597 0.00 2019-11-03 08:47:17 2019-11-03 08:54:39 t 1 1 149375 623 0.00 2019-11-03 08:56:19 2019-11-03 08:56:21 t 1 1 149376 623 0.00 2019-11-03 08:56:26 2019-11-03 08:56:32 t 1 1 149377 623 0.00 2019-11-03 08:56:45 2019-11-03 08:57:08 t 1 1 149379 585 0.00 2019-11-03 08:53:12 2019-11-03 08:57:18 t 1 1 149383 623 0.00 2019-11-03 08:58:32 2019-11-03 08:58:38 t 1 1 149386 554 0.00 2019-11-03 09:00:58 2019-11-03 09:01:09 t 1 1 149389 554 0.00 2019-11-03 09:01:26 2019-11-03 09:01:35 t 1 1 149390 554 0.00 2019-11-03 09:01:34 2019-11-03 09:01:43 t 1 1 149393 623 0.00 2019-11-03 09:02:08 2019-11-03 09:02:30 t 1 1 149397 554 0.00 2019-11-03 09:01:43 2019-11-03 09:03:19 t 1 1 149399 623 0.00 2019-11-03 09:03:51 2019-11-03 09:03:53 t 1 1 149403 623 0.00 2019-11-03 09:04:53 2019-11-03 09:04:55 t 1 1 149405 623 0.00 2019-11-03 09:05:07 2019-11-03 09:05:13 t 1 1 149407 623 0.00 2019-11-03 09:05:40 2019-11-03 09:06:17 t 1 1 149410 623 0.00 2019-11-03 09:07:04 2019-11-03 09:07:10 t 1 1 149413 483 0.00 2019-11-03 09:03:01 2019-11-03 09:08:50 t 1 1 149419 623 0.00 2019-11-03 09:10:22 2019-11-03 09:10:31 t 1 1 149422 395 0.00 2019-11-03 09:11:31 2019-11-03 09:11:54 t 1 2 149423 538 0.00 2019-11-03 08:44:00 2019-11-03 09:12:54 t 1 1 149430 623 0.00 2019-11-03 09:16:10 2019-11-03 09:18:03 t 1 1 149433 623 0.00 2019-11-03 09:18:03 2019-11-03 09:21:11 t 1 1 149434 625 0.00 2019-11-03 09:11:37 2019-11-03 09:21:54 t 1 1 149436 623 0.00 2019-11-03 09:21:11 2019-11-03 09:23:28 t 1 1 149440 220 0.00 2019-11-03 07:07:39 2019-11-03 09:24:07 t 1 1 149442 623 0.00 2019-11-03 09:25:04 2019-11-03 09:25:06 t 1 1 149445 562 0.00 2019-11-03 09:27:30 2019-11-03 09:27:51 t 1 1 149446 562 0.00 2019-11-03 09:27:58 2019-11-03 09:28:11 t 1 1 149452 623 0.00 2019-11-03 09:29:30 2019-11-03 09:29:47 t 1 1 149454 623 0.00 2019-11-03 09:30:20 2019-11-03 09:30:21 t 1 1 149455 481 0.00 2019-11-03 07:50:42 2019-11-03 09:31:02 t 1 1 149460 595 0.00 2019-11-03 09:31:14 2019-11-03 09:32:46 t 1 1 149462 220 0.00 2019-11-02 21:09:43 2019-11-03 09:33:04 t 1 2 149466 623 0.00 2019-11-03 09:34:21 2019-11-03 09:34:23 t 1 1 149474 623 0.00 2019-11-03 09:37:14 2019-11-03 09:37:16 t 1 1 149475 623 0.00 2019-11-03 09:37:21 2019-11-03 09:37:23 t 1 1 149476 623 0.00 2019-11-03 09:37:28 2019-11-03 09:37:34 t 1 1 149481 220 0.00 2019-11-03 09:37:23 2019-11-03 09:39:33 t 1 1 149482 554 0.00 2019-11-03 09:10:37 2019-11-03 09:40:38 t 1 1 149483 562 0.00 2019-11-03 09:42:14 2019-11-03 09:42:38 t 1 1 149485 623 0.00 2019-11-03 09:39:13 2019-11-03 09:45:23 t 1 1 149489 623 0.00 2019-11-03 09:46:55 2019-11-03 09:46:57 t 1 1 149491 623 0.00 2019-11-03 09:47:02 2019-11-03 09:50:58 t 1 1 149492 591 0.00 2019-11-03 08:51:10 2019-11-03 09:52:17 t 1 1 149494 623 0.00 2019-11-03 09:52:29 2019-11-03 09:52:38 t 1 1 149495 538 0.00 2019-11-03 09:37:24 2019-11-03 09:52:58 t 1 1 149497 562 0.00 2019-11-03 09:52:59 2019-11-03 09:53:28 t 1 1 149499 623 0.00 2019-11-03 09:53:52 2019-11-03 09:55:04 t 1 1 149502 597 0.00 2019-11-03 09:53:00 2019-11-03 09:56:16 t 1 1 149506 593 0.00 2019-11-03 09:57:32 2019-11-03 10:01:14 t 1 1 149510 623 0.00 2019-11-03 10:02:52 2019-11-03 10:02:53 t 1 1 149511 623 0.00 2019-11-03 10:02:58 2019-11-03 10:03:04 t 1 1 149518 623 0.00 2019-11-03 10:05:08 2019-11-03 10:05:09 t 1 1 149197 623 0.00 2019-11-03 07:58:47 2019-11-03 08:00:44 t 1 1 149198 623 0.00 2019-11-03 08:00:57 2019-11-03 08:00:58 t 1 1 149201 623 0.00 2019-11-03 08:01:26 2019-11-03 08:01:33 t 1 1 149202 623 0.00 2019-11-03 08:01:39 2019-11-03 08:02:41 t 1 1 149206 623 0.00 2019-11-03 08:03:25 2019-11-03 08:03:27 t 1 1 149210 623 0.00 2019-11-03 08:04:24 2019-11-03 08:04:42 t 1 1 149211 623 0.00 2019-11-03 08:04:47 2019-11-03 08:04:54 t 1 1 149213 623 0.00 2019-11-03 08:05:13 2019-11-03 08:05:25 t 1 1 149217 623 0.00 2019-11-03 08:06:15 2019-11-03 08:06:16 t 1 1 149225 623 0.00 2019-11-03 08:07:37 2019-11-03 08:07:43 t 1 1 149226 623 0.00 2019-11-03 08:07:56 2019-11-03 08:07:58 t 1 1 149229 623 0.00 2019-11-03 08:08:36 2019-11-03 08:08:38 t 1 1 149235 623 0.00 2019-11-03 08:09:27 2019-11-03 08:16:11 t 1 1 149238 623 0.00 2019-11-03 08:16:40 2019-11-03 08:16:46 t 1 1 149239 623 0.00 2019-11-03 08:16:59 2019-11-03 08:17:00 t 1 1 149244 623 0.00 2019-11-03 08:17:47 2019-11-03 08:17:48 t 1 1 149246 623 0.00 2019-11-03 08:18:01 2019-11-03 08:18:07 t 1 1 149249 623 0.00 2019-11-03 08:18:42 2019-11-03 08:18:51 t 1 1 149250 623 0.00 2019-11-03 08:19:04 2019-11-03 08:19:16 t 1 1 149252 623 0.00 2019-11-03 08:19:27 2019-11-03 08:19:33 t 1 1 149254 623 0.00 2019-11-03 08:19:53 2019-11-03 08:19:59 t 1 1 149257 623 0.00 2019-11-03 08:20:33 2019-11-03 08:20:49 t 1 1 149258 623 0.00 2019-11-03 08:21:00 2019-11-03 08:21:19 t 1 1 149262 562 0.00 2019-11-03 08:21:34 2019-11-03 08:22:00 t 1 1 149265 623 0.00 2019-11-03 08:22:22 2019-11-03 08:22:28 t 1 1 149268 623 0.00 2019-11-03 08:22:46 2019-11-03 08:23:11 t 1 1 149272 623 0.00 2019-11-03 08:24:35 2019-11-03 08:24:40 t 1 1 149274 623 0.00 2019-11-03 08:25:35 2019-11-03 08:25:37 t 1 1 149275 623 0.00 2019-11-03 08:25:42 2019-11-03 08:26:03 t 1 1 149276 623 0.00 2019-11-03 08:26:08 2019-11-03 08:26:36 t 1 1 149279 623 0.00 2019-11-03 08:26:48 2019-11-03 08:27:10 t 1 1 149282 562 0.00 2019-11-03 08:27:50 2019-11-03 08:28:01 t 1 1 149284 623 0.00 2019-11-03 08:27:49 2019-11-03 08:28:12 t 1 1 149290 623 0.00 2019-11-03 08:29:51 2019-11-03 08:30:19 t 1 1 149301 623 0.00 2019-11-03 08:32:55 2019-11-03 08:33:21 t 1 1 149304 623 0.00 2019-11-03 08:33:49 2019-11-03 08:33:51 t 1 1 149305 623 0.00 2019-11-03 08:34:04 2019-11-03 08:34:16 t 1 1 149307 538 0.00 2019-11-03 07:39:34 2019-11-03 08:34:47 t 1 1 149309 623 0.00 2019-11-03 08:35:38 2019-11-03 08:35:39 t 1 1 149311 623 0.00 2019-11-03 08:35:55 2019-11-03 08:36:22 t 1 1 149313 623 0.00 2019-11-03 08:36:36 2019-11-03 08:36:42 t 1 1 149315 623 0.00 2019-11-03 08:37:42 2019-11-03 08:37:48 t 1 1 149316 623 0.00 2019-11-03 08:37:53 2019-11-03 08:37:59 t 1 1 149318 623 0.00 2019-11-03 08:38:04 2019-11-03 08:38:32 t 1 1 149321 623 0.00 2019-11-03 08:39:06 2019-11-03 08:39:28 t 1 1 149326 623 0.00 2019-11-03 08:40:15 2019-11-03 08:40:28 t 1 1 149327 623 0.00 2019-11-03 08:40:40 2019-11-03 08:40:42 t 1 1 149329 538 0.00 2019-11-03 08:35:52 2019-11-03 08:40:56 t 1 1 149330 623 0.00 2019-11-03 08:40:57 2019-11-03 08:41:03 t 1 1 149332 585 0.00 2019-11-03 08:27:42 2019-11-03 08:41:33 t 1 1 149334 623 0.00 2019-11-03 08:42:12 2019-11-03 08:42:35 t 1 1 149347 623 0.00 2019-11-03 08:46:26 2019-11-03 08:46:38 t 1 1 149352 623 0.00 2019-11-03 08:47:54 2019-11-03 08:47:55 t 1 1 149356 623 0.00 2019-11-03 08:48:27 2019-11-03 08:48:39 t 1 1 149361 623 0.00 2019-11-03 08:49:42 2019-11-03 08:50:09 t 1 1 149366 623 0.00 2019-11-03 08:51:10 2019-11-03 08:52:16 t 1 1 149374 623 0.00 2019-11-03 08:54:33 2019-11-03 08:56:08 t 1 1 149378 623 0.00 2019-11-03 08:57:15 2019-11-03 08:57:17 t 1 1 149380 623 0.00 2019-11-03 08:57:28 2019-11-03 08:57:35 t 1 1 149381 623 0.00 2019-11-03 08:57:48 2019-11-03 08:58:15 t 1 1 149387 554 0.00 2019-11-03 09:01:09 2019-11-03 09:01:18 t 1 1 149395 483 0.00 2019-11-03 07:20:32 2019-11-03 09:03:01 t 1 1 149401 623 0.00 2019-11-03 09:04:18 2019-11-03 09:04:35 t 1 1 149406 623 0.00 2019-11-03 09:05:19 2019-11-03 09:05:35 t 1 1 149408 623 0.00 2019-11-03 09:06:23 2019-11-03 09:06:40 t 1 1 149409 631 0.00 2019-11-03 09:05:44 2019-11-03 09:07:06 t 1 1 149411 623 0.00 2019-11-03 09:07:21 2019-11-03 09:07:43 t 1 1 149412 623 0.00 2019-11-03 09:08:27 2019-11-03 09:08:39 t 1 1 149414 623 0.00 2019-11-03 09:08:50 2019-11-03 09:08:52 t 1 1 149415 623 0.00 2019-11-03 09:08:57 2019-11-03 09:09:03 t 1 1 149416 623 0.00 2019-11-03 09:09:21 2019-11-03 09:09:48 t 1 1 149417 554 0.00 2019-11-03 09:02:45 2019-11-03 09:09:59 t 1 1 149421 623 0.00 2019-11-03 09:10:34 2019-11-03 09:11:08 t 1 1 149425 538 0.00 2019-11-03 09:13:13 2019-11-03 09:13:24 t 1 1 149427 623 0.00 2019-11-03 09:13:06 2019-11-03 09:13:45 t 1 1 149429 623 0.00 2019-11-03 09:14:51 2019-11-03 09:16:38 t 1 1 149431 562 0.00 2019-11-03 09:17:06 2019-11-03 09:18:37 t 1 1 149432 538 0.00 2019-11-03 09:14:43 2019-11-03 09:19:38 t 1 1 149438 514 0.00 2019-11-03 09:22:40 2019-11-03 09:23:42 t 1 1 149439 623 0.00 2019-11-03 09:23:56 2019-11-03 09:24:01 t 1 1 149441 623 0.00 2019-11-03 09:24:19 2019-11-03 09:24:40 t 1 1 149443 623 0.00 2019-11-03 09:25:11 2019-11-03 09:25:17 t 1 1 149444 623 0.00 2019-11-03 09:25:22 2019-11-03 09:26:01 t 1 1 149449 623 0.00 2019-11-03 09:28:20 2019-11-03 09:28:47 t 1 1 149450 623 0.00 2019-11-03 09:28:52 2019-11-03 09:29:08 t 1 1 149456 623 0.00 2019-11-03 09:30:26 2019-11-03 09:31:22 t 1 1 149457 623 0.00 2019-11-03 09:31:28 2019-11-03 09:31:30 t 1 1 149463 623 0.00 2019-11-03 09:33:09 2019-11-03 09:33:21 t 1 1 149467 623 0.00 2019-11-03 09:34:28 2019-11-03 09:34:33 t 1 1 149469 623 0.00 2019-11-03 09:34:38 2019-11-03 09:35:05 t 1 1 149470 623 0.00 2019-11-03 09:35:22 2019-11-03 09:36:01 t 1 1 149472 623 0.00 2019-11-03 09:36:42 2019-11-03 09:37:02 t 1 1 149477 623 0.00 2019-11-03 09:37:39 2019-11-03 09:37:40 t 1 1 149478 623 0.00 2019-11-03 09:38:15 2019-11-03 09:38:17 t 1 1 149484 220 0.00 2019-11-03 09:36:34 2019-11-03 09:42:58 t 1 2 149486 623 0.00 2019-11-03 09:45:28 2019-11-03 09:45:40 t 1 1 149487 623 0.00 2019-11-03 09:45:54 2019-11-03 09:46:26 t 1 1 149490 220 0.00 2019-11-03 09:40:40 2019-11-03 09:49:02 t 1 2 149501 631 0.00 2019-11-03 09:55:25 2019-11-03 09:56:04 t 1 1 149503 554 0.00 2019-11-03 09:56:39 2019-11-03 09:57:07 t 1 1 149507 623 0.00 2019-11-03 09:56:04 2019-11-03 10:01:37 t 1 1 149512 623 0.00 2019-11-03 10:03:17 2019-11-03 10:03:34 t 1 1 149513 623 0.00 2019-11-03 10:03:45 2019-11-03 10:03:52 t 1 1 149514 623 0.00 2019-11-03 10:04:04 2019-11-03 10:04:06 t 1 1 149516 623 0.00 2019-11-03 10:04:11 2019-11-03 10:04:18 t 1 1 149517 623 0.00 2019-11-03 10:04:23 2019-11-03 10:04:55 t 1 1 149519 623 0.00 2019-11-03 10:05:14 2019-11-03 10:05:21 t 1 1 149199 623 0.00 2019-11-03 08:01:03 2019-11-03 08:01:09 t 1 1 149203 623 0.00 2019-11-03 08:02:53 2019-11-03 08:02:55 t 1 1 149204 623 0.00 2019-11-03 08:03:00 2019-11-03 08:03:06 t 1 1 149207 623 0.00 2019-11-03 08:03:51 2019-11-03 08:03:52 t 1 1 149208 623 0.00 2019-11-03 08:03:57 2019-11-03 08:04:05 t 1 1 149214 623 0.00 2019-11-03 08:05:30 2019-11-03 08:05:36 t 1 1 149218 623 0.00 2019-11-03 08:06:21 2019-11-03 08:06:27 t 1 1 149220 562 0.00 2019-11-03 07:55:57 2019-11-03 08:06:45 t 1 1 149221 623 0.00 2019-11-03 08:06:46 2019-11-03 08:06:52 t 1 1 149222 623 0.00 2019-11-03 08:07:05 2019-11-03 08:07:06 t 1 1 149223 623 0.00 2019-11-03 08:07:11 2019-11-03 08:07:18 t 1 1 149227 623 0.00 2019-11-03 08:08:03 2019-11-03 08:08:05 t 1 1 149230 623 0.00 2019-11-03 08:08:43 2019-11-03 08:08:45 t 1 1 149231 623 0.00 2019-11-03 08:09:09 2019-11-03 08:09:10 t 1 1 149233 562 0.00 2019-11-03 08:06:45 2019-11-03 08:10:10 t 1 1 149236 623 0.00 2019-11-03 08:16:24 2019-11-03 08:16:25 t 1 1 149240 623 0.00 2019-11-03 08:17:05 2019-11-03 08:17:07 t 1 1 149242 570 0.00 2019-11-03 07:52:47 2019-11-03 08:17:20 t 1 1 149245 623 0.00 2019-11-03 08:17:54 2019-11-03 08:17:56 t 1 1 149247 562 0.00 2019-11-03 08:18:01 2019-11-03 08:18:11 t 1 1 149251 619 0.00 2019-11-03 08:18:10 2019-11-03 08:19:33 t 1 1 149253 623 0.00 2019-11-03 08:19:46 2019-11-03 08:19:48 t 1 1 149255 623 0.00 2019-11-03 08:20:12 2019-11-03 08:20:13 t 1 1 149259 623 0.00 2019-11-03 08:21:24 2019-11-03 08:21:30 t 1 1 149260 623 0.00 2019-11-03 08:21:43 2019-11-03 08:21:44 t 1 1 149263 623 0.00 2019-11-03 08:22:08 2019-11-03 08:22:10 t 1 1 149266 623 0.00 2019-11-03 08:22:33 2019-11-03 08:22:41 t 1 1 149269 623 0.00 2019-11-03 08:23:16 2019-11-03 08:23:23 t 1 1 149270 623 0.00 2019-11-03 08:23:42 2019-11-03 08:23:59 t 1 1 149280 623 0.00 2019-11-03 08:27:21 2019-11-03 08:27:25 t 1 1 149285 623 0.00 2019-11-03 08:28:19 2019-11-03 08:28:20 t 1 1 149287 623 0.00 2019-11-03 08:28:40 2019-11-03 08:29:38 t 1 1 149289 220 0.00 2019-11-03 08:28:06 2019-11-03 08:30:13 t 1 2 149291 623 0.00 2019-11-03 08:30:24 2019-11-03 08:30:30 t 1 1 149293 623 0.00 2019-11-03 08:30:50 2019-11-03 08:31:13 t 1 1 149296 514 0.00 2019-11-03 03:58:02 2019-11-03 08:32:24 t 1 1 149300 562 0.00 2019-11-03 08:32:42 2019-11-03 08:32:58 t 1 1 149302 623 0.00 2019-11-03 08:33:34 2019-11-03 08:33:36 t 1 1 149306 623 0.00 2019-11-03 08:34:23 2019-11-03 08:34:33 t 1 1 149310 623 0.00 2019-11-03 08:35:44 2019-11-03 08:35:50 t 1 1 149317 562 0.00 2019-11-03 08:37:10 2019-11-03 08:38:20 t 1 1 149319 623 0.00 2019-11-03 08:38:37 2019-11-03 08:38:53 t 1 1 149320 578 0.00 2019-11-03 08:29:19 2019-11-03 08:39:14 t 1 1 149322 623 0.00 2019-11-03 08:39:35 2019-11-03 08:39:37 t 1 1 149323 554 0.00 2019-11-03 08:14:15 2019-11-03 08:39:43 t 1 1 149324 623 0.00 2019-11-03 08:39:42 2019-11-03 08:39:58 t 1 1 149328 623 0.00 2019-11-03 08:40:47 2019-11-03 08:40:52 t 1 1 149331 623 0.00 2019-11-03 08:41:08 2019-11-03 08:41:30 t 1 1 149335 623 0.00 2019-11-03 08:42:41 2019-11-03 08:42:43 t 1 1 149338 623 0.00 2019-11-03 08:44:08 2019-11-03 08:44:11 t 1 1 149339 623 0.00 2019-11-03 08:44:16 2019-11-03 08:44:40 t 1 1 149341 623 0.00 2019-11-03 08:45:04 2019-11-03 08:45:05 t 1 1 149342 623 0.00 2019-11-03 08:45:10 2019-11-03 08:45:12 t 1 1 149344 623 0.00 2019-11-03 08:45:17 2019-11-03 08:45:44 t 1 1 149345 623 0.00 2019-11-03 08:45:49 2019-11-03 08:46:01 t 1 1 149348 623 0.00 2019-11-03 08:46:49 2019-11-03 08:46:56 t 1 1 149349 623 0.00 2019-11-03 08:47:08 2019-11-03 08:47:10 t 1 1 149350 623 0.00 2019-11-03 08:47:15 2019-11-03 08:47:21 t 1 1 149354 623 0.00 2019-11-03 08:48:00 2019-11-03 08:48:02 t 1 1 149357 623 0.00 2019-11-03 08:48:50 2019-11-03 08:48:56 t 1 1 149358 623 0.00 2019-11-03 08:49:09 2019-11-03 08:49:10 t 1 1 149360 520 0.00 2019-11-03 08:48:01 2019-11-03 08:49:30 t 1 1 149362 623 0.00 2019-11-03 08:50:14 2019-11-03 08:50:40 t 1 1 149365 623 0.00 2019-11-03 08:50:59 2019-11-03 08:51:05 t 1 1 149367 623 0.00 2019-11-03 08:52:29 2019-11-03 08:52:51 t 1 1 149368 623 0.00 2019-11-03 08:53:02 2019-11-03 08:53:09 t 1 1 149369 623 0.00 2019-11-03 08:53:22 2019-11-03 08:53:24 t 1 1 149373 562 0.00 2019-11-03 08:54:31 2019-11-03 08:54:52 t 1 1 149382 623 0.00 2019-11-03 08:58:25 2019-11-03 08:58:27 t 1 1 149384 623 0.00 2019-11-03 08:58:43 2019-11-03 09:00:54 t 1 1 149385 554 0.00 2019-11-03 08:39:43 2019-11-03 09:00:58 t 1 1 149388 554 0.00 2019-11-03 09:01:17 2019-11-03 09:01:26 t 1 1 149391 623 0.00 2019-11-03 08:59:58 2019-11-03 09:01:47 t 1 1 149392 623 0.00 2019-11-03 09:01:58 2019-11-03 09:02:03 t 1 1 149394 631 0.00 2019-11-03 09:01:38 2019-11-03 09:02:45 t 1 1 149396 623 0.00 2019-11-03 09:03:05 2019-11-03 09:03:12 t 1 1 149398 623 0.00 2019-11-03 09:03:17 2019-11-03 09:03:34 t 1 1 149400 562 0.00 2019-11-03 09:04:03 2019-11-03 09:04:31 t 1 1 149402 623 0.00 2019-11-03 09:04:46 2019-11-03 09:04:48 t 1 1 149404 623 0.00 2019-11-03 09:05:00 2019-11-03 09:05:02 t 1 1 149418 623 0.00 2019-11-03 09:10:05 2019-11-03 09:10:17 t 1 1 149420 395 0.00 2019-11-03 09:09:30 2019-11-03 09:10:34 t 1 2 149424 562 0.00 2019-11-03 09:12:01 2019-11-03 09:12:56 t 1 1 149426 623 0.00 2019-11-03 09:11:45 2019-11-03 09:13:38 t 1 1 149428 538 0.00 2019-11-03 09:13:28 2019-11-03 09:14:37 t 1 1 149435 615 0.00 2019-11-03 09:19:09 2019-11-03 09:23:05 t 1 1 149437 623 0.00 2019-11-03 09:23:28 2019-11-03 09:23:38 t 1 1 149447 623 0.00 2019-11-03 09:26:06 2019-11-03 09:28:14 t 1 1 149448 562 0.00 2019-11-03 09:28:23 2019-11-03 09:28:39 t 1 1 149451 623 0.00 2019-11-03 09:29:21 2019-11-03 09:29:23 t 1 1 149453 623 0.00 2019-11-03 09:30:00 2019-11-03 09:30:07 t 1 1 149458 623 0.00 2019-11-03 09:31:35 2019-11-03 09:31:54 t 1 1 149459 623 0.00 2019-11-03 09:32:23 2019-11-03 09:32:27 t 1 1 149461 623 0.00 2019-11-03 09:32:33 2019-11-03 09:32:56 t 1 1 149464 623 0.00 2019-11-03 09:33:32 2019-11-03 09:33:33 t 1 1 149465 623 0.00 2019-11-03 09:33:39 2019-11-03 09:34:08 t 1 1 149468 562 0.00 2019-11-03 09:34:36 2019-11-03 09:35:03 t 1 1 149471 623 0.00 2019-11-03 09:36:19 2019-11-03 09:36:24 t 1 1 149473 623 0.00 2019-11-03 09:37:07 2019-11-03 09:37:09 t 1 1 149479 623 0.00 2019-11-03 09:38:33 2019-11-03 09:38:40 t 1 1 149480 623 0.00 2019-11-03 09:38:45 2019-11-03 09:39:08 t 1 1 149488 623 0.00 2019-11-03 09:46:37 2019-11-03 09:46:43 t 1 1 149493 623 0.00 2019-11-03 09:51:14 2019-11-03 09:52:23 t 1 1 149496 623 0.00 2019-11-03 09:52:56 2019-11-03 09:53:16 t 1 1 149498 623 0.00 2019-11-03 09:53:23 2019-11-03 09:53:45 t 1 1 149500 631 0.00 2019-11-03 09:41:28 2019-11-03 09:55:11 t 1 1 149504 554 0.00 2019-11-03 09:57:07 2019-11-03 09:57:32 t 1 1 149505 631 0.00 2019-11-03 09:56:51 2019-11-03 09:58:07 t 1 1 149508 623 0.00 2019-11-03 10:01:43 2019-11-03 10:01:43 t 1 1 149509 623 0.00 2019-11-03 10:02:25 2019-11-03 10:02:39 t 1 1 149515 562 0.00 2019-11-03 10:03:51 2019-11-03 10:04:13 t 1 1 149520 623 0.00 2019-11-03 10:05:26 2019-11-03 10:05:38 t 1 1 149521 623 0.00 2019-11-03 10:05:43 2019-11-03 10:05:50 t 1 1 149522 623 0.00 2019-11-03 10:06:03 2019-11-03 10:06:04 t 1 1 149525 625 0.00 2019-11-03 09:21:54 2019-11-03 10:06:52 t 1 1 149526 623 0.00 2019-11-03 10:06:51 2019-11-03 10:06:58 t 1 1 149529 623 0.00 2019-11-03 10:07:17 2019-11-03 10:07:21 t 1 1 149533 623 0.00 2019-11-03 10:08:20 2019-11-03 10:08:22 t 1 1 149537 554 0.00 2019-11-03 09:57:31 2019-11-03 10:09:23 t 1 1 149538 554 0.00 2019-11-03 10:09:23 2019-11-03 10:09:39 t 1 1 149541 623 0.00 2019-11-03 10:09:54 2019-11-03 10:10:02 t 1 1 149544 623 0.00 2019-11-03 10:10:21 2019-11-03 10:10:23 t 1 1 149545 623 0.00 2019-11-03 10:10:28 2019-11-03 10:10:44 t 1 1 149548 623 0.00 2019-11-03 10:11:03 2019-11-03 10:11:05 t 1 1 149550 597 0.00 2019-11-03 10:09:40 2019-11-03 10:11:48 t 1 1 149553 623 0.00 2019-11-03 10:12:26 2019-11-03 10:12:33 t 1 1 149554 623 0.00 2019-11-03 10:12:40 2019-11-03 10:12:52 t 1 1 149555 623 0.00 2019-11-03 10:13:03 2019-11-03 10:13:10 t 1 1 149560 623 0.00 2019-11-03 10:14:15 2019-11-03 10:14:16 t 1 1 149565 623 0.00 2019-11-03 10:14:32 2019-11-03 10:15:15 t 1 1 149572 623 0.00 2019-11-03 10:17:29 2019-11-03 10:17:34 t 1 1 149573 623 0.00 2019-11-03 10:17:39 2019-11-03 10:18:01 t 1 1 149576 623 0.00 2019-11-03 10:18:41 2019-11-03 10:19:06 t 1 1 149577 623 0.00 2019-11-03 10:18:32 2019-11-03 10:19:16 t 1 1 149580 623 0.00 2019-11-03 10:19:46 2019-11-03 10:20:28 t 1 1 149583 220 0.00 2019-11-03 10:05:38 2019-11-03 10:22:03 t 1 2 149585 623 0.00 2019-11-03 10:21:38 2019-11-03 10:22:49 t 1 1 149591 623 0.00 2019-11-03 10:30:17 2019-11-03 10:30:19 t 1 1 149593 623 0.00 2019-11-03 10:30:24 2019-11-03 10:30:46 t 1 1 149597 623 0.00 2019-11-03 10:35:57 2019-11-03 10:37:38 t 1 1 149598 615 0.00 2019-11-03 10:36:25 2019-11-03 10:38:29 t 1 1 149601 615 0.00 2019-11-03 10:41:17 2019-11-03 10:41:17 t 1 1 149604 623 0.00 2019-11-03 10:39:37 2019-11-03 10:42:04 t 1 1 149608 591 0.00 2019-11-03 10:01:29 2019-11-03 10:43:56 t 1 1 149609 581 0.00 2019-11-03 10:42:40 2019-11-03 10:44:03 t 1 1 149612 623 0.00 2019-11-03 10:43:21 2019-11-03 10:46:30 t 1 1 149614 508 0.00 2019-11-03 10:23:04 2019-11-03 10:47:03 t 1 2 149618 615 0.00 2019-11-03 10:47:19 2019-11-03 10:48:53 t 1 1 149621 625 0.00 2019-11-03 10:06:52 2019-11-03 10:49:14 t 1 1 149622 562 0.00 2019-11-03 10:49:05 2019-11-03 10:50:17 t 1 1 149627 562 0.00 2019-11-03 10:53:54 2019-11-03 10:54:35 t 1 1 149631 562 0.00 2019-11-03 10:57:16 2019-11-03 10:59:38 t 1 1 149633 623 0.00 2019-11-03 10:47:41 2019-11-03 11:02:09 t 1 1 149634 633 0.00 2019-11-03 10:53:02 2019-11-03 11:02:18 t 1 1 149640 623 0.00 2019-11-03 11:03:00 2019-11-03 11:03:05 t 1 1 149641 220 0.00 2019-11-03 11:02:49 2019-11-03 11:03:17 t 1 1 149643 623 0.00 2019-11-03 11:03:18 2019-11-03 11:03:51 t 1 1 149644 623 0.00 2019-11-03 11:03:10 2019-11-03 11:04:02 t 1 1 149649 625 0.00 2019-11-03 11:05:12 2019-11-03 11:09:20 t 1 1 149654 623 0.00 2019-11-03 11:13:14 2019-11-03 11:13:14 f 1 1 149656 585 0.00 2019-11-03 11:10:37 2019-11-03 11:13:45 t 1 1 149658 623 0.00 2019-11-03 11:12:54 2019-11-03 11:14:38 t 1 1 149663 562 0.00 2019-11-03 11:18:24 2019-11-03 11:20:00 t 1 1 149668 562 0.00 2019-11-03 11:22:18 2019-11-03 11:23:32 t 1 1 149671 562 0.00 2019-11-03 11:31:35 2019-11-03 11:31:54 t 1 1 149672 333 0.00 2019-11-03 11:32:10 2019-11-03 11:32:10 f 1 2 149673 633 0.00 2019-11-03 11:20:31 2019-11-03 11:34:39 t 1 1 149676 623 0.00 2019-11-03 11:36:12 2019-11-03 11:36:15 t 1 1 149677 333 0.00 2019-11-03 11:37:35 2019-11-03 11:37:35 f 1 2 149678 333 0.00 2019-11-03 11:37:47 2019-11-03 11:37:47 f 1 2 149679 623 0.00 2019-11-03 11:37:02 2019-11-03 11:38:04 t 1 1 149681 562 0.00 2019-11-03 11:37:57 2019-11-03 11:38:25 t 1 1 149683 623 0.00 2019-11-03 11:37:31 2019-11-03 11:38:38 t 1 1 149686 333 0.00 2019-11-03 11:39:59 2019-11-03 11:39:59 f 1 2 149692 623 0.00 2019-11-03 11:42:12 2019-11-03 11:43:12 t 1 1 149696 623 0.00 2019-11-03 11:45:09 2019-11-03 11:45:11 t 1 1 149698 623 0.00 2019-11-03 11:47:16 2019-11-03 11:48:39 t 1 1 149700 578 0.00 2019-11-03 11:15:52 2019-11-03 11:49:09 t 1 1 149707 623 0.00 2019-11-03 11:52:18 2019-11-03 11:52:45 t 1 1 149710 562 0.00 2019-11-03 11:54:06 2019-11-03 11:56:44 t 1 1 149715 379 0.00 2019-11-03 11:02:41 2019-11-03 12:03:07 t 1 1 149717 481 0.00 2019-11-03 11:58:57 2019-11-03 12:04:32 t 1 1 149718 562 0.00 2019-11-03 12:03:08 2019-11-03 12:04:45 t 1 1 149723 619 0.00 2019-11-03 12:05:31 2019-11-03 12:09:36 t 1 1 149725 520 0.00 2019-11-03 12:04:01 2019-11-03 12:10:05 t 1 1 149726 623 0.00 2019-11-03 12:09:54 2019-11-03 12:10:54 t 1 1 149728 623 0.00 2019-11-03 12:10:54 2019-11-03 12:11:21 t 1 1 149729 591 0.00 2019-11-03 11:12:04 2019-11-03 12:12:10 t 1 1 149731 623 0.00 2019-11-03 12:12:43 2019-11-03 12:12:52 t 1 1 149732 490 0.00 2019-11-03 12:06:55 2019-11-03 12:13:13 t 1 1 149734 623 0.00 2019-11-03 12:13:04 2019-11-03 12:14:06 t 1 1 149735 623 0.00 2019-11-03 12:14:48 2019-11-03 12:15:50 t 1 1 149737 562 0.00 2019-11-03 12:17:01 2019-11-03 12:17:58 t 1 1 149746 623 0.00 2019-11-03 12:16:02 2019-11-03 12:27:01 t 1 1 149749 623 0.00 2019-11-03 12:27:13 2019-11-03 12:28:39 t 1 1 149750 623 0.00 2019-11-03 12:28:44 2019-11-03 12:29:17 t 1 1 149752 562 0.00 2019-11-03 12:25:19 2019-11-03 12:30:13 t 1 1 149755 520 0.00 2019-11-03 12:21:26 2019-11-03 12:31:55 t 1 1 149756 623 0.00 2019-11-03 12:31:04 2019-11-03 12:32:05 t 1 1 149762 623 0.00 2019-11-03 12:33:05 2019-11-03 12:34:06 t 1 1 149763 562 0.00 2019-11-03 12:33:25 2019-11-03 12:34:39 t 1 1 149765 416 0.00 2019-11-03 12:29:28 2019-11-03 12:35:09 t 1 1 149767 623 0.00 2019-11-03 12:34:12 2019-11-03 12:35:17 t 1 1 149769 562 0.00 2019-11-03 12:34:52 2019-11-03 12:35:52 t 1 1 149773 623 0.00 2019-11-03 12:37:31 2019-11-03 12:38:31 t 1 1 149775 481 0.00 2019-11-03 12:04:39 2019-11-03 12:39:18 t 1 1 149777 623 0.00 2019-11-03 12:39:17 2019-11-03 12:40:39 t 1 1 149780 456 0.00 2019-11-03 12:18:40 2019-11-03 12:42:44 t 1 1 149783 623 0.00 2019-11-03 12:42:20 2019-11-03 12:43:39 t 1 1 149785 623 0.00 2019-11-03 12:45:17 2019-11-03 12:45:17 f 1 1 149788 220 0.00 2019-11-03 12:45:53 2019-11-03 12:47:11 t 1 2 149790 570 0.00 2019-11-03 12:08:07 2019-11-03 12:50:44 t 1 1 149795 220 0.00 2019-11-03 12:42:37 2019-11-03 12:55:00 t 1 2 149801 451 0.00 2019-11-03 12:48:28 2019-11-03 13:07:06 t 1 1 149523 623 0.00 2019-11-03 10:06:09 2019-11-03 10:06:15 t 1 1 149527 538 0.00 2019-11-03 09:53:02 2019-11-03 10:07:10 t 1 1 149530 623 0.00 2019-11-03 10:07:26 2019-11-03 10:07:42 t 1 1 149534 623 0.00 2019-11-03 10:08:29 2019-11-03 10:08:47 t 1 1 149535 623 0.00 2019-11-03 10:09:10 2019-11-03 10:09:11 t 1 1 149539 623 0.00 2019-11-03 10:09:31 2019-11-03 10:09:43 t 1 1 149542 554 0.00 2019-11-03 10:10:11 2019-11-03 10:10:11 f 1 1 149549 554 0.00 2019-11-03 10:10:01 2019-11-03 10:11:38 t 1 1 149556 623 0.00 2019-11-03 10:13:22 2019-11-03 10:13:24 t 1 1 149558 562 0.00 2019-11-03 10:12:49 2019-11-03 10:13:38 t 1 1 149561 623 0.00 2019-11-03 10:14:21 2019-11-03 10:14:27 t 1 1 149563 562 0.00 2019-11-03 10:14:02 2019-11-03 10:14:40 t 1 1 149564 615 0.00 2019-11-03 10:10:43 2019-11-03 10:15:09 t 1 1 149566 623 0.00 2019-11-03 10:15:28 2019-11-03 10:15:29 t 1 1 149568 623 0.00 2019-11-03 10:15:35 2019-11-03 10:15:57 t 1 1 149569 623 0.00 2019-11-03 10:16:02 2019-11-03 10:16:33 t 1 1 149570 623 0.00 2019-11-03 10:16:38 2019-11-03 10:17:09 t 1 1 149574 623 0.00 2019-11-03 10:18:06 2019-11-03 10:18:13 t 1 1 149575 623 0.00 2019-11-03 10:18:26 2019-11-03 10:18:27 t 1 1 149579 562 0.00 2019-11-03 10:19:15 2019-11-03 10:20:04 t 1 1 149581 623 0.00 2019-11-03 10:20:39 2019-11-03 10:20:45 t 1 1 149582 623 0.00 2019-11-03 10:20:50 2019-11-03 10:21:10 t 1 1 149584 538 0.00 2019-11-03 10:21:36 2019-11-03 10:22:40 t 1 1 149586 623 0.00 2019-11-03 10:22:56 2019-11-03 10:23:29 t 1 1 149588 623 0.00 2019-11-03 10:23:50 2019-11-03 10:24:07 t 1 1 149592 562 0.00 2019-11-03 10:30:02 2019-11-03 10:30:30 t 1 1 149596 615 0.00 2019-11-03 10:24:05 2019-11-03 10:36:25 t 1 1 149602 615 0.00 2019-11-03 10:41:17 2019-11-03 10:41:21 t 1 1 149606 562 0.00 2019-11-03 10:34:02 2019-11-03 10:42:59 t 1 1 149610 581 0.00 2019-11-03 10:44:47 2019-11-03 10:44:48 t 1 1 149611 562 0.00 2019-11-03 10:45:03 2019-11-03 10:46:11 t 1 1 149613 623 0.00 2019-11-03 10:46:49 2019-11-03 10:47:02 t 1 1 149616 538 0.00 2019-11-03 10:22:40 2019-11-03 10:47:26 t 1 1 149625 562 0.00 2019-11-03 10:51:54 2019-11-03 10:53:42 t 1 1 149630 416 0.00 2019-11-03 10:52:48 2019-11-03 10:57:49 t 1 1 149636 379 0.00 2019-11-03 08:07:12 2019-11-03 11:02:41 t 1 1 149642 562 0.00 2019-11-03 11:03:04 2019-11-03 11:03:36 t 1 1 149646 625 0.00 2019-11-03 10:49:14 2019-11-03 11:05:12 t 1 1 149647 562 0.00 2019-11-03 11:08:25 2019-11-03 11:08:38 t 1 1 149652 623 0.00 2019-11-03 11:09:05 2019-11-03 11:12:34 t 1 1 149655 562 0.00 2019-11-03 11:13:17 2019-11-03 11:13:31 t 1 1 149657 623 0.00 2019-11-03 11:13:06 2019-11-03 11:14:38 t 1 1 149661 578 0.00 2019-11-03 08:41:35 2019-11-03 11:16:48 t 1 1 149662 633 0.00 2019-11-03 11:10:05 2019-11-03 11:17:43 t 1 1 149664 599 0.00 2019-11-03 11:19:26 2019-11-03 11:20:42 t 1 1 149665 570 0.00 2019-11-03 10:04:39 2019-11-03 11:21:01 t 1 1 149667 562 0.00 2019-11-03 11:21:02 2019-11-03 11:21:31 t 1 1 149670 333 0.00 2019-11-03 11:31:42 2019-11-03 11:31:42 f 1 2 149674 333 0.00 2019-11-03 11:35:54 2019-11-03 11:35:54 f 1 2 149680 333 0.00 2019-11-03 11:38:16 2019-11-03 11:38:16 f 1 2 149682 333 0.00 2019-11-03 11:38:27 2019-11-03 11:38:27 f 1 2 149685 333 0.00 2019-11-03 11:39:08 2019-11-03 11:39:08 f 1 2 149687 623 0.00 2019-11-03 11:39:03 2019-11-03 11:40:38 t 1 1 149688 623 0.00 2019-11-03 11:40:12 2019-11-03 11:41:12 t 1 1 149689 597 0.00 2019-11-03 11:37:40 2019-11-03 11:42:07 t 1 1 149691 623 0.00 2019-11-03 11:43:12 2019-11-03 11:43:12 f 1 1 149694 623 0.00 2019-11-03 11:42:33 2019-11-03 11:43:39 t 1 1 149695 623 0.00 2019-11-03 11:44:13 2019-11-03 11:44:40 t 1 1 149697 623 0.00 2019-11-03 11:46:10 2019-11-03 11:47:39 t 1 1 149702 623 0.00 2019-11-03 11:50:18 2019-11-03 11:50:45 t 1 1 149703 512 0.00 2019-11-03 11:47:48 2019-11-03 11:51:35 t 1 1 149705 520 0.00 2019-11-03 11:36:31 2019-11-03 11:51:55 t 1 1 149708 633 0.00 2019-11-03 11:35:27 2019-11-03 11:53:00 t 1 1 149709 623 0.00 2019-11-03 11:53:11 2019-11-03 11:54:39 t 1 1 149712 481 0.00 2019-11-03 09:31:28 2019-11-03 11:59:31 t 1 1 149713 623 0.00 2019-11-03 11:53:25 2019-11-03 12:00:44 t 1 1 149716 520 0.00 2019-11-03 11:57:26 2019-11-03 12:04:02 t 1 1 149719 597 0.00 2019-11-03 12:04:36 2019-11-03 12:06:01 t 1 1 149720 490 0.00 2019-11-03 12:01:19 2019-11-03 12:06:55 t 1 1 149721 623 0.00 2019-11-03 12:00:56 2019-11-03 12:07:47 t 1 1 149722 570 0.00 2019-11-03 11:49:35 2019-11-03 12:08:07 t 1 1 149727 562 0.00 2019-11-03 12:06:08 2019-11-03 12:11:07 t 1 1 149730 623 0.00 2019-11-03 12:11:47 2019-11-03 12:12:49 t 1 1 149736 623 0.00 2019-11-03 12:15:50 2019-11-03 12:15:54 t 1 1 149740 220 0.00 2019-11-03 11:03:16 2019-11-03 12:21:12 t 1 1 149742 625 0.00 2019-11-03 12:09:31 2019-11-03 12:22:36 t 1 1 149743 220 0.00 2019-11-03 12:21:12 2019-11-03 12:23:21 t 1 1 149745 562 0.00 2019-11-03 12:22:05 2019-11-03 12:24:49 t 1 1 149748 416 0.00 2019-11-03 12:20:27 2019-11-03 12:28:35 t 1 1 149751 623 0.00 2019-11-03 12:29:38 2019-11-03 12:30:05 t 1 1 149753 220 0.00 2019-11-03 12:30:51 2019-11-03 12:30:56 t 1 1 149754 625 0.00 2019-11-03 12:22:36 2019-11-03 12:31:16 t 1 1 149757 562 0.00 2019-11-03 12:32:04 2019-11-03 12:32:40 t 1 1 149758 623 0.00 2019-11-03 12:32:11 2019-11-03 12:33:05 t 1 1 149760 633 0.00 2019-11-03 11:53:07 2019-11-03 12:33:45 t 1 1 149764 623 0.00 2019-11-03 12:34:40 2019-11-03 12:34:40 f 1 1 149766 623 0.00 2019-11-03 12:35:12 2019-11-03 12:35:12 f 1 1 149768 623 0.00 2019-11-03 12:34:27 2019-11-03 12:35:39 t 1 1 149770 623 0.00 2019-11-03 12:36:48 2019-11-03 12:37:19 t 1 1 149779 623 0.00 2019-11-03 12:41:20 2019-11-03 12:42:39 t 1 1 149781 456 0.00 2019-11-03 12:42:53 2019-11-03 12:42:57 t 1 1 149782 623 0.00 2019-11-03 12:43:03 2019-11-03 12:43:34 t 1 1 149787 623 0.00 2019-11-03 12:43:46 2019-11-03 12:45:39 t 1 1 149789 220 0.00 2019-11-03 12:47:23 2019-11-03 12:47:52 t 1 2 149791 514 0.00 2019-11-03 12:50:09 2019-11-03 12:51:16 t 1 1 149794 220 0.00 2019-11-03 12:48:12 2019-11-03 12:53:13 t 1 2 149797 591 0.00 2019-11-03 12:58:34 2019-11-03 13:00:09 t 1 1 149798 520 0.00 2019-11-03 12:48:07 2019-11-03 13:01:19 t 1 1 149799 570 0.00 2019-11-03 12:50:44 2019-11-03 13:02:44 t 1 1 149802 623 0.00 2019-11-03 13:06:31 2019-11-03 13:07:12 t 1 1 149804 623 0.00 2019-11-03 13:07:54 2019-11-03 13:07:54 f 1 1 149805 623 0.00 2019-11-03 13:08:02 2019-11-03 13:08:02 f 1 1 149810 631 0.00 2019-11-03 13:09:33 2019-11-03 13:09:59 t 1 1 149816 625 0.00 2019-11-03 12:39:13 2019-11-03 13:18:14 t 1 1 149822 562 0.00 2019-11-03 13:20:18 2019-11-03 13:21:09 t 1 1 149829 512 0.00 2019-11-03 11:51:35 2019-11-03 13:28:02 t 1 1 149832 451 0.00 2019-11-03 13:21:07 2019-11-03 13:30:56 t 1 1 149524 623 0.00 2019-11-03 10:06:28 2019-11-03 10:06:40 t 1 1 149528 623 0.00 2019-11-03 10:07:11 2019-11-03 10:07:12 t 1 1 149531 623 0.00 2019-11-03 10:07:55 2019-11-03 10:07:56 t 1 1 149532 623 0.00 2019-11-03 10:08:02 2019-11-03 10:08:07 t 1 1 149536 623 0.00 2019-11-03 10:09:17 2019-11-03 10:09:19 t 1 1 149540 554 0.00 2019-11-03 10:09:39 2019-11-03 10:09:50 t 1 1 149543 623 0.00 2019-11-03 10:10:15 2019-11-03 10:10:16 t 1 1 149546 554 0.00 2019-11-03 10:09:50 2019-11-03 10:10:54 t 1 1 149547 623 0.00 2019-11-03 10:10:57 2019-11-03 10:10:58 t 1 1 149551 623 0.00 2019-11-03 10:11:18 2019-11-03 10:11:55 t 1 1 149552 623 0.00 2019-11-03 10:12:06 2019-11-03 10:12:13 t 1 1 149557 623 0.00 2019-11-03 10:13:29 2019-11-03 10:13:36 t 1 1 149559 623 0.00 2019-11-03 10:13:41 2019-11-03 10:14:02 t 1 1 149562 220 0.00 2019-11-03 10:13:54 2019-11-03 10:14:34 t 1 1 149567 538 0.00 2019-11-03 10:07:09 2019-11-03 10:15:35 t 1 1 149571 623 0.00 2019-11-03 10:17:22 2019-11-03 10:17:23 t 1 1 149578 623 0.00 2019-11-03 10:19:16 2019-11-03 10:19:33 t 1 1 149587 623 0.00 2019-11-03 10:23:36 2019-11-03 10:23:38 t 1 1 149589 623 0.00 2019-11-03 10:24:14 2019-11-03 10:24:29 t 1 1 149590 623 0.00 2019-11-03 10:24:39 2019-11-03 10:30:12 t 1 1 149594 623 0.00 2019-11-03 10:31:09 2019-11-03 10:32:25 t 1 1 149595 623 0.00 2019-11-03 10:32:53 2019-11-03 10:33:07 t 1 1 149599 623 0.00 2019-11-03 10:37:03 2019-11-03 10:38:38 t 1 1 149600 623 0.00 2019-11-03 10:38:05 2019-11-03 10:39:38 t 1 1 149603 581 0.00 2019-11-03 10:29:46 2019-11-03 10:41:48 t 1 1 149605 615 0.00 2019-11-03 10:41:21 2019-11-03 10:42:29 t 1 1 149607 623 0.00 2019-11-03 10:43:00 2019-11-03 10:43:08 t 1 1 149615 615 0.00 2019-11-03 10:42:35 2019-11-03 10:47:19 t 1 1 149617 623 0.00 2019-11-03 10:47:24 2019-11-03 10:47:42 t 1 1 149619 562 0.00 2019-11-03 10:46:44 2019-11-03 10:48:59 t 1 1 149620 581 0.00 2019-11-03 10:44:53 2019-11-03 10:49:14 t 1 1 149623 581 0.00 2019-11-03 10:49:14 2019-11-03 10:52:37 t 1 1 149624 416 0.00 2019-11-03 10:46:54 2019-11-03 10:53:40 t 1 1 149626 581 0.00 2019-11-03 10:52:37 2019-11-03 10:53:56 t 1 1 149628 633 0.00 2019-11-03 10:52:57 2019-11-03 10:54:38 t 1 1 149629 591 0.00 2019-11-03 10:43:56 2019-11-03 10:57:23 t 1 1 149632 562 0.00 2019-11-03 10:59:47 2019-11-03 11:00:12 t 1 1 149635 562 0.00 2019-11-03 11:01:42 2019-11-03 11:02:22 t 1 1 149637 623 0.00 2019-11-03 11:02:14 2019-11-03 11:02:41 t 1 1 149638 220 0.00 2019-11-03 11:01:56 2019-11-03 11:02:49 t 1 1 149639 623 0.00 2019-11-03 11:02:46 2019-11-03 11:03:00 t 1 1 149645 623 0.00 2019-11-03 11:04:02 2019-11-03 11:05:02 t 1 1 149648 623 0.00 2019-11-03 11:04:10 2019-11-03 11:08:58 t 1 1 149650 633 0.00 2019-11-03 11:02:18 2019-11-03 11:10:05 t 1 1 149651 416 0.00 2019-11-03 10:58:22 2019-11-03 11:12:22 t 1 1 149653 623 0.00 2019-11-03 11:12:41 2019-11-03 11:12:42 t 1 1 149659 220 0.00 2019-11-03 10:22:59 2019-11-03 11:15:37 t 1 2 149660 562 0.00 2019-11-03 11:15:06 2019-11-03 11:16:00 t 1 1 149666 633 0.00 2019-11-03 11:17:43 2019-11-03 11:21:26 t 1 1 149669 622 0.00 2019-11-03 10:18:16 2019-11-03 11:25:52 t 1 1 149675 623 0.00 2019-11-03 11:27:18 2019-11-03 11:36:07 t 1 1 149684 220 0.00 2019-11-03 11:29:13 2019-11-03 11:38:42 t 1 2 149690 623 0.00 2019-11-03 11:41:12 2019-11-03 11:42:12 t 1 1 149693 562 0.00 2019-11-03 11:42:05 2019-11-03 11:43:20 t 1 1 149699 623 0.00 2019-11-03 11:47:39 2019-11-03 11:48:41 t 1 1 149701 570 0.00 2019-11-03 11:21:00 2019-11-03 11:49:35 t 1 1 149704 623 0.00 2019-11-03 11:49:12 2019-11-03 11:51:39 t 1 1 149706 562 0.00 2019-11-03 11:50:54 2019-11-03 11:52:05 t 1 1 149711 562 0.00 2019-11-03 11:56:53 2019-11-03 11:57:31 t 1 1 149714 416 0.00 2019-11-03 11:12:22 2019-11-03 12:02:31 t 1 1 149724 623 0.00 2019-11-03 12:08:46 2019-11-03 12:09:47 t 1 1 149733 615 0.00 2019-11-03 12:10:44 2019-11-03 12:13:22 t 1 1 149738 416 0.00 2019-11-03 12:14:48 2019-11-03 12:19:14 t 1 1 149739 562 0.00 2019-11-03 12:18:47 2019-11-03 12:20:08 t 1 1 149741 520 0.00 2019-11-03 12:10:05 2019-11-03 12:21:26 t 1 1 149744 585 0.00 2019-11-03 12:21:57 2019-11-03 12:24:01 t 1 1 149747 623 0.00 2019-11-03 12:27:58 2019-11-03 12:28:32 t 1 1 149759 591 0.00 2019-11-03 12:14:12 2019-11-03 12:33:31 t 1 1 149761 379 0.00 2019-11-03 12:03:07 2019-11-03 12:34:01 t 1 1 149771 623 0.00 2019-11-03 12:36:12 2019-11-03 12:37:39 t 1 1 149772 622 0.00 2019-11-03 11:25:52 2019-11-03 12:38:05 t 1 1 149774 623 0.00 2019-11-03 12:38:01 2019-11-03 12:38:33 t 1 1 149776 623 0.00 2019-11-03 12:40:17 2019-11-03 12:40:17 f 1 1 149778 623 0.00 2019-11-03 12:38:45 2019-11-03 12:40:39 t 1 1 149784 623 0.00 2019-11-03 12:44:10 2019-11-03 12:44:14 t 1 1 149786 623 0.00 2019-11-03 12:44:26 2019-11-03 12:45:39 t 1 1 149792 562 0.00 2019-11-03 12:41:22 2019-11-03 12:52:25 t 1 1 149793 538 0.00 2019-11-03 10:47:26 2019-11-03 12:53:05 t 1 1 149796 562 0.00 2019-11-03 12:52:25 2019-11-03 12:59:35 t 1 1 149800 516 0.00 2019-11-03 12:17:46 2019-11-03 13:03:22 t 1 1 149807 379 0.00 2019-11-03 12:34:01 2019-11-03 13:08:32 t 1 1 149809 562 0.00 2019-11-03 12:59:35 2019-11-03 13:08:41 t 1 1 149813 516 0.00 2019-11-03 13:04:00 2019-11-03 13:15:07 t 1 1 149815 570 0.00 2019-11-03 13:02:44 2019-11-03 13:18:09 t 1 1 149818 562 0.00 2019-11-03 13:15:57 2019-11-03 13:19:05 t 1 1 149820 622 0.00 2019-11-03 13:18:51 2019-11-03 13:19:44 t 1 1 149821 451 0.00 2019-11-03 13:07:06 2019-11-03 13:21:07 t 1 1 149824 538 0.00 2019-11-03 12:56:02 2019-11-03 13:22:40 t 1 1 149826 220 0.00 2019-11-03 13:10:55 2019-11-03 13:24:18 t 1 2 149837 597 0.00 2019-11-03 13:30:58 2019-11-03 13:36:49 t 1 1 149838 562 0.00 2019-11-03 13:38:21 2019-11-03 13:39:09 t 1 1 149844 456 0.00 2019-11-03 13:35:29 2019-11-03 13:44:36 t 1 1 149846 566 0.00 2019-11-03 13:34:31 2019-11-03 13:48:34 t 1 1 149848 481 0.00 2019-11-03 13:44:56 2019-11-03 13:52:13 t 1 1 149850 562 0.00 2019-11-03 13:52:58 2019-11-03 13:53:12 t 1 1 149854 566 0.00 2019-11-03 13:48:34 2019-11-03 13:56:22 t 1 1 149856 481 0.00 2019-11-03 13:52:14 2019-11-03 13:59:14 t 1 1 149868 562 0.00 2019-11-03 14:12:56 2019-11-03 14:15:25 t 1 1 149871 623 0.00 2019-11-03 14:08:50 2019-11-03 14:22:58 t 1 1 149872 481 0.00 2019-11-03 13:59:14 2019-11-03 14:23:02 t 1 1 149873 481 0.00 2019-11-03 14:23:01 2019-11-03 14:24:01 t 1 1 149877 520 0.00 2019-11-03 14:00:02 2019-11-03 14:27:58 t 1 1 149881 566 0.00 2019-11-03 14:12:04 2019-11-03 14:36:19 t 1 1 149882 562 0.00 2019-11-03 14:36:50 2019-11-03 14:37:08 t 1 1 149885 562 0.00 2019-11-03 14:37:57 2019-11-03 14:38:45 t 1 1 149887 623 0.00 2019-11-03 14:32:03 2019-11-03 14:39:25 t 1 1 149889 581 0.00 2019-11-03 14:40:12 2019-11-03 14:40:39 t 1 1 149803 623 0.00 2019-11-03 13:07:42 2019-11-03 13:07:42 f 1 1 149806 623 0.00 2019-11-03 13:07:17 2019-11-03 13:08:17 t 1 1 149808 623 0.00 2019-11-03 13:07:29 2019-11-03 13:08:40 t 1 1 149811 220 0.00 2019-11-03 13:09:40 2019-11-03 13:12:02 t 1 2 149812 564 0.00 2019-11-03 12:24:57 2019-11-03 13:14:02 t 1 1 149814 562 0.00 2019-11-03 13:08:41 2019-11-03 13:15:57 t 1 1 149817 622 0.00 2019-11-03 12:38:05 2019-11-03 13:18:58 t 1 1 149819 562 0.00 2019-11-03 13:19:29 2019-11-03 13:19:38 t 1 1 149823 562 0.00 2019-11-03 13:21:29 2019-11-03 13:22:40 t 1 1 149825 622 0.00 2019-11-03 13:22:08 2019-11-03 13:22:40 t 1 1 149827 562 0.00 2019-11-03 13:24:22 2019-11-03 13:24:38 t 1 1 149828 597 0.00 2019-11-03 12:06:54 2019-11-03 13:25:52 t 1 1 149830 481 0.00 2019-11-03 12:40:35 2019-11-03 13:28:09 t 1 1 149831 625 0.00 2019-11-03 13:18:14 2019-11-03 13:29:01 t 1 1 149833 566 0.00 2019-11-03 13:26:15 2019-11-03 13:34:31 t 1 1 149835 562 0.00 2019-11-03 13:35:03 2019-11-03 13:35:21 t 1 1 149840 556 0.00 2019-11-03 07:01:23 2019-11-03 13:39:57 t 1 1 149841 451 0.00 2019-11-03 13:39:28 2019-11-03 13:41:02 t 1 1 149842 538 0.00 2019-11-03 13:22:40 2019-11-03 13:43:35 t 1 1 149843 481 0.00 2019-11-03 13:28:24 2019-11-03 13:44:09 t 1 1 149845 562 0.00 2019-11-03 13:45:20 2019-11-03 13:45:53 t 1 1 149849 625 0.00 2019-11-03 13:29:01 2019-11-03 13:52:14 t 1 1 149851 625 0.00 2019-11-03 13:52:14 2019-11-03 13:53:42 t 1 1 149853 220 0.00 2019-11-03 13:48:39 2019-11-03 13:54:59 t 1 2 149855 562 0.00 2019-11-03 13:56:17 2019-11-03 13:56:36 t 1 1 149858 585 0.00 2019-11-03 14:04:01 2019-11-03 14:05:23 t 1 1 149860 562 0.00 2019-11-03 14:05:05 2019-11-03 14:08:56 t 1 1 149866 451 0.00 2019-11-03 14:02:55 2019-11-03 14:13:55 t 1 1 149867 589 0.00 2019-11-03 14:08:05 2019-11-03 14:14:13 t 1 1 149869 597 0.00 2019-11-03 13:36:53 2019-11-03 14:18:40 t 1 1 149870 451 0.00 2019-11-03 14:13:55 2019-11-03 14:20:48 t 1 1 149875 597 0.00 2019-11-03 14:24:40 2019-11-03 14:25:47 t 1 1 149876 562 0.00 2019-11-03 14:16:05 2019-11-03 14:26:31 t 1 1 149878 562 0.00 2019-11-03 14:28:14 2019-11-03 14:28:21 t 1 1 149879 623 0.00 2019-11-03 14:22:58 2019-11-03 14:32:03 t 1 1 149884 520 0.00 2019-11-03 14:27:57 2019-11-03 14:38:40 t 1 1 149891 581 0.00 2019-11-03 14:41:01 2019-11-03 14:41:48 t 1 1 149893 619 0.00 2019-11-03 14:38:05 2019-11-03 14:43:28 t 1 1 149894 625 0.00 2019-11-03 13:55:40 2019-11-03 14:44:24 t 1 1 149898 556 0.00 2019-11-03 14:32:24 2019-11-03 14:48:01 t 1 1 149903 562 0.00 2019-11-03 14:41:59 2019-11-03 14:52:51 t 1 1 149910 597 0.00 2019-11-03 14:53:16 2019-11-03 14:55:23 t 1 1 149914 556 0.00 2019-11-03 14:48:01 2019-11-03 14:57:09 t 1 1 149920 220 0.00 2019-11-03 14:37:25 2019-11-03 15:03:05 t 1 2 149925 220 0.00 2019-11-03 13:54:57 2019-11-03 15:05:35 t 1 1 149928 585 0.00 2019-11-03 15:03:02 2019-11-03 15:07:35 t 1 1 149930 556 0.00 2019-11-03 14:57:09 2019-11-03 15:09:19 t 1 1 149936 623 0.00 2019-11-03 15:10:59 2019-11-03 15:11:31 t 1 1 149937 623 0.00 2019-11-03 15:11:59 2019-11-03 15:12:55 t 1 1 149941 623 0.00 2019-11-03 15:15:00 2019-11-03 15:15:23 t 1 1 149943 623 0.00 2019-11-03 15:17:06 2019-11-03 15:17:09 t 1 1 149944 451 0.00 2019-11-03 15:10:21 2019-11-03 15:18:10 t 1 1 149954 623 0.00 2019-11-03 15:24:05 2019-11-03 15:25:03 t 1 1 149962 623 0.00 2019-11-03 15:30:11 2019-11-03 15:31:10 t 1 1 149967 623 0.00 2019-11-03 15:33:36 2019-11-03 15:34:44 t 1 1 149968 591 0.00 2019-11-03 15:34:16 2019-11-03 15:36:07 t 1 1 149970 562 0.00 2019-11-03 15:36:42 2019-11-03 15:38:00 t 1 1 149972 562 0.00 2019-11-03 15:38:23 2019-11-03 15:38:41 t 1 1 149974 562 0.00 2019-11-03 15:47:35 2019-11-03 15:47:44 t 1 1 149978 416 0.00 2019-11-03 15:51:32 2019-11-03 15:53:48 t 1 1 149981 597 0.00 2019-11-03 15:44:00 2019-11-03 15:58:11 t 1 1 149987 562 0.00 2019-11-03 16:05:37 2019-11-03 16:06:16 t 1 1 149994 562 0.00 2019-11-03 16:10:09 2019-11-03 16:11:08 t 1 1 149996 623 0.00 2019-11-03 16:11:29 2019-11-03 16:11:51 t 1 1 149998 623 0.00 2019-11-03 16:13:09 2019-11-03 16:13:26 t 1 1 150000 591 0.00 2019-11-03 15:36:07 2019-11-03 16:13:56 t 1 1 150001 623 0.00 2019-11-03 16:13:38 2019-11-03 16:14:10 t 1 1 150002 623 0.00 2019-11-03 16:14:23 2019-11-03 16:15:00 t 1 1 150006 623 0.00 2019-11-03 16:16:56 2019-11-03 16:16:57 t 1 1 150012 623 0.00 2019-11-03 16:24:16 2019-11-03 16:24:24 t 1 1 150014 545 0.00 2019-11-03 16:19:50 2019-11-03 16:25:41 t 1 1 150016 562 0.00 2019-11-03 16:25:14 2019-11-03 16:26:40 t 1 1 150017 591 0.00 2019-11-03 16:15:03 2019-11-03 16:27:09 t 1 1 150018 623 0.00 2019-11-03 16:24:29 2019-11-03 16:29:55 t 1 1 150024 623 0.00 2019-11-03 16:31:09 2019-11-03 16:31:15 t 1 1 150026 623 0.00 2019-11-03 16:31:34 2019-11-03 16:32:01 t 1 1 150029 623 0.00 2019-11-03 16:32:20 2019-11-03 16:32:22 t 1 1 150032 623 0.00 2019-11-03 16:32:35 2019-11-03 16:32:58 t 1 1 150035 623 0.00 2019-11-03 16:33:47 2019-11-03 16:34:26 t 1 1 150038 623 0.00 2019-11-03 16:35:08 2019-11-03 16:35:10 t 1 1 150040 562 0.00 2019-11-03 16:36:00 2019-11-03 16:36:10 t 1 1 150042 623 0.00 2019-11-03 16:36:26 2019-11-03 16:36:32 t 1 1 150046 623 0.00 2019-11-03 16:37:17 2019-11-03 16:37:19 t 1 1 150048 623 0.00 2019-11-03 16:37:24 2019-11-03 16:37:30 t 1 1 150049 623 0.00 2019-11-03 16:37:43 2019-11-03 16:38:12 t 1 1 150052 564 0.00 2019-11-03 16:00:00 2019-11-03 16:39:25 t 1 1 150054 451 0.00 2019-11-03 16:34:32 2019-11-03 16:40:56 t 1 1 150055 623 0.00 2019-11-03 16:40:42 2019-11-03 16:43:32 t 1 1 150056 562 0.00 2019-11-03 16:45:57 2019-11-03 16:46:14 t 1 1 150057 220 0.00 2019-11-03 16:01:37 2019-11-03 16:49:01 t 1 2 150058 597 0.00 2019-11-03 16:48:29 2019-11-03 16:50:14 t 1 1 150059 578 0.00 2019-11-03 11:49:09 2019-11-03 16:53:55 t 1 1 150060 416 0.00 2019-11-03 15:53:47 2019-11-03 16:55:15 t 1 1 150061 623 0.00 2019-11-03 16:55:02 2019-11-03 16:55:54 t 1 1 150064 623 0.00 2019-11-03 16:56:53 2019-11-03 16:56:54 t 1 1 150067 451 0.00 2019-11-03 16:40:56 2019-11-03 17:00:54 t 1 1 150070 562 0.00 2019-11-03 17:01:32 2019-11-03 17:02:19 t 1 1 150075 585 0.00 2019-11-03 17:01:23 2019-11-03 17:05:15 t 1 1 150079 562 0.00 2019-11-03 17:08:37 2019-11-03 17:08:51 t 1 1 150085 623 0.00 2019-11-03 17:10:52 2019-11-03 17:12:20 t 1 1 150087 623 0.00 2019-11-03 17:12:44 2019-11-03 17:13:13 t 1 1 150088 570 0.00 2019-11-03 17:11:56 2019-11-03 17:13:49 t 1 1 150091 623 0.00 2019-11-03 17:12:36 2019-11-03 17:14:42 t 1 1 150096 379 0.00 2019-11-03 13:08:32 2019-11-03 17:18:04 t 1 1 150097 379 0.00 2019-11-03 17:18:25 2019-11-03 17:19:53 t 1 1 150098 623 0.00 2019-11-03 17:14:58 2019-11-03 17:21:53 t 1 1 150100 623 0.00 2019-11-03 17:22:18 2019-11-03 17:22:18 f 1 1 149834 456 0.00 2019-11-03 13:14:46 2019-11-03 13:35:16 t 1 1 149836 520 0.00 2019-11-03 13:01:19 2019-11-03 13:35:57 t 1 1 149839 451 0.00 2019-11-03 13:30:56 2019-11-03 13:39:28 t 1 1 149847 591 0.00 2019-11-03 13:22:45 2019-11-03 13:49:41 t 1 1 149852 562 0.00 2019-11-03 13:53:37 2019-11-03 13:54:24 t 1 1 149857 562 0.00 2019-11-03 13:56:43 2019-11-03 14:04:36 t 1 1 149859 538 0.00 2019-11-03 13:43:35 2019-11-03 14:06:20 t 1 1 149861 591 0.00 2019-11-03 13:59:04 2019-11-03 14:09:25 t 1 1 149862 512 0.00 2019-11-03 14:07:43 2019-11-03 14:10:40 t 1 1 149863 566 0.00 2019-11-03 13:56:22 2019-11-03 14:11:12 t 1 1 149864 562 0.00 2019-11-03 14:08:55 2019-11-03 14:12:26 t 1 1 149865 566 0.00 2019-11-03 14:11:11 2019-11-03 14:13:00 t 1 1 149874 597 0.00 2019-11-03 14:18:40 2019-11-03 14:24:40 t 1 1 149880 556 0.00 2019-11-03 13:39:57 2019-11-03 14:32:24 t 1 1 149883 619 0.00 2019-11-03 14:26:09 2019-11-03 14:38:05 t 1 1 149886 585 0.00 2019-11-03 14:34:45 2019-11-03 14:38:52 t 1 1 149888 581 0.00 2019-11-03 14:38:12 2019-11-03 14:40:10 t 1 1 149890 562 0.00 2019-11-03 14:41:00 2019-11-03 14:41:20 t 1 1 149892 623 0.00 2019-11-03 14:39:42 2019-11-03 14:43:24 t 1 1 149895 581 0.00 2019-11-03 14:41:55 2019-11-03 14:44:55 t 1 1 149896 623 0.00 2019-11-03 14:43:37 2019-11-03 14:44:58 t 1 1 149899 623 0.00 2019-11-03 14:45:29 2019-11-03 14:48:13 t 1 1 149902 625 0.00 2019-11-03 14:44:24 2019-11-03 14:52:51 t 1 1 149905 623 0.00 2019-11-03 14:52:02 2019-11-03 14:53:42 t 1 1 149908 623 0.00 2019-11-03 14:55:03 2019-11-03 14:55:04 t 1 1 149909 623 0.00 2019-11-03 14:55:09 2019-11-03 14:55:12 t 1 1 149915 623 0.00 2019-11-03 14:56:46 2019-11-03 14:57:18 t 1 1 149916 623 0.00 2019-11-03 14:57:47 2019-11-03 14:58:19 t 1 1 149917 623 0.00 2019-11-03 14:58:47 2019-11-03 14:59:47 t 1 1 149918 609 0.00 2019-11-03 08:04:44 2019-11-03 15:00:18 t 1 1 149924 562 0.00 2019-11-03 15:04:54 2019-11-03 15:05:11 t 1 1 149926 623 0.00 2019-11-03 15:05:56 2019-11-03 15:06:28 t 1 1 149927 623 0.00 2019-11-03 15:06:57 2019-11-03 15:07:29 t 1 1 149931 623 0.00 2019-11-03 15:08:25 2019-11-03 15:09:23 t 1 1 149933 623 0.00 2019-11-03 15:10:06 2019-11-03 15:10:09 t 1 1 149935 625 0.00 2019-11-03 14:52:50 2019-11-03 15:11:12 t 1 1 149940 591 0.00 2019-11-03 15:04:58 2019-11-03 15:14:38 t 1 1 149942 562 0.00 2019-11-03 15:15:27 2019-11-03 15:15:55 t 1 1 149947 564 0.00 2019-11-03 13:29:32 2019-11-03 15:19:51 t 1 1 149951 585 0.00 2019-11-03 15:08:31 2019-11-03 15:22:45 t 1 1 149952 623 0.00 2019-11-03 15:23:05 2019-11-03 15:23:18 t 1 1 149958 562 0.00 2019-11-03 15:27:22 2019-11-03 15:27:52 t 1 1 149965 585 0.00 2019-11-03 15:28:21 2019-11-03 15:32:43 t 1 1 149966 623 0.00 2019-11-03 15:33:15 2019-11-03 15:33:28 t 1 1 149971 520 0.00 2019-11-03 14:53:31 2019-11-03 15:38:39 t 1 1 149973 625 0.00 2019-11-03 15:36:15 2019-11-03 15:45:19 t 1 1 149975 623 0.00 2019-11-03 15:34:50 2019-11-03 15:50:33 t 1 1 149976 564 0.00 2019-11-03 15:19:51 2019-11-03 15:51:13 t 1 1 149977 416 0.00 2019-11-03 12:35:28 2019-11-03 15:51:32 t 1 1 149983 564 0.00 2019-11-03 15:51:13 2019-11-03 16:00:00 t 1 1 149984 619 0.00 2019-11-03 15:58:38 2019-11-03 16:01:36 t 1 1 149985 516 0.00 2019-11-03 15:59:52 2019-11-03 16:02:26 t 1 1 149986 570 0.00 2019-11-03 15:56:32 2019-11-03 16:04:23 t 1 1 149988 581 0.00 2019-11-03 15:43:30 2019-11-03 16:07:29 t 1 1 150005 623 0.00 2019-11-03 16:15:10 2019-11-03 16:15:26 t 1 1 150007 625 0.00 2019-11-03 15:45:19 2019-11-03 16:16:58 t 1 1 150010 599 0.00 2019-11-03 16:21:19 2019-11-03 16:22:00 t 1 1 150013 562 0.00 2019-11-03 16:18:22 2019-11-03 16:24:53 t 1 1 150020 520 0.00 2019-11-03 16:10:56 2019-11-03 16:30:14 t 1 1 150021 623 0.00 2019-11-03 16:30:20 2019-11-03 16:30:26 t 1 1 150025 623 0.00 2019-11-03 16:31:28 2019-11-03 16:31:29 t 1 1 150027 625 0.00 2019-11-03 16:16:57 2019-11-03 16:32:09 t 1 1 150030 619 0.00 2019-11-03 16:23:01 2019-11-03 16:32:46 t 1 1 150033 623 0.00 2019-11-03 16:33:05 2019-11-03 16:33:37 t 1 1 150034 562 0.00 2019-11-03 16:27:04 2019-11-03 16:34:07 t 1 1 150036 623 0.00 2019-11-03 16:34:31 2019-11-03 16:34:32 t 1 1 150039 520 0.00 2019-11-03 16:32:47 2019-11-03 16:35:47 t 1 1 150043 623 0.00 2019-11-03 16:36:38 2019-11-03 16:36:43 t 1 1 150047 597 0.00 2019-11-03 16:20:28 2019-11-03 16:37:28 t 1 1 150050 623 0.00 2019-11-03 16:38:33 2019-11-03 16:38:41 t 1 1 150051 623 0.00 2019-11-03 16:38:46 2019-11-03 16:39:10 t 1 1 150053 623 0.00 2019-11-03 16:39:38 2019-11-03 16:40:43 t 1 1 150069 451 0.00 2019-11-03 17:00:54 2019-11-03 17:02:12 t 1 1 150071 597 0.00 2019-11-03 17:01:34 2019-11-03 17:03:08 t 1 1 150074 623 0.00 2019-11-03 17:03:24 2019-11-03 17:03:30 t 1 1 150076 578 0.00 2019-11-03 16:53:55 2019-11-03 17:05:46 t 1 1 150077 562 0.00 2019-11-03 17:05:54 2019-11-03 17:07:40 t 1 1 150081 597 0.00 2019-11-03 17:07:30 2019-11-03 17:09:56 t 1 1 150082 623 0.00 2019-11-03 17:09:10 2019-11-03 17:10:01 t 1 1 150084 623 0.00 2019-11-03 17:10:08 2019-11-03 17:10:41 t 1 1 150086 623 0.00 2019-11-03 17:12:25 2019-11-03 17:12:31 t 1 1 150093 562 0.00 2019-11-03 17:12:18 2019-11-03 17:17:16 t 1 1 150095 585 0.00 2019-11-03 17:15:57 2019-11-03 17:17:46 t 1 1 150102 623 0.00 2019-11-03 17:22:09 2019-11-03 17:23:42 t 1 1 150109 220 0.00 2019-11-03 16:55:41 2019-11-03 17:32:42 t 1 1 150110 597 0.00 2019-11-03 17:32:25 2019-11-03 17:35:48 t 1 1 150112 562 0.00 2019-11-03 17:33:07 2019-11-03 17:40:52 t 1 1 150114 615 0.00 2019-11-03 17:32:22 2019-11-03 17:43:06 t 1 1 150116 622 0.00 2019-11-03 17:23:27 2019-11-03 17:43:48 t 1 1 150117 562 0.00 2019-11-03 17:41:00 2019-11-03 17:44:56 t 1 1 150119 622 0.00 2019-11-03 17:43:48 2019-11-03 17:49:50 t 1 1 150120 585 0.00 2019-11-03 17:45:59 2019-11-03 17:51:16 t 1 1 150121 615 0.00 2019-11-03 17:43:06 2019-11-03 17:52:27 t 1 1 150122 514 0.00 2019-11-03 17:52:26 2019-11-03 17:53:27 t 1 1 150125 591 0.00 2019-11-03 17:48:16 2019-11-03 17:57:36 t 1 1 150128 623 0.00 2019-11-03 18:00:34 2019-11-03 18:00:43 t 1 1 150131 623 0.00 2019-11-03 18:02:12 2019-11-03 18:02:43 t 1 1 150133 623 0.00 2019-11-03 18:02:51 2019-11-03 18:02:52 t 1 1 150134 562 0.00 2019-11-03 18:02:37 2019-11-03 18:03:09 t 1 1 150139 622 0.00 2019-11-03 17:49:50 2019-11-03 18:06:51 t 1 1 150143 635 0.00 2019-11-03 18:13:54 2019-11-03 18:14:50 t 1 1 150144 562 0.00 2019-11-03 18:14:08 2019-11-03 18:15:19 t 1 1 150145 615 0.00 2019-11-03 18:11:55 2019-11-03 18:17:01 t 1 1 150147 623 0.00 2019-11-03 18:05:34 2019-11-03 18:18:55 t 1 1 150150 591 0.00 2019-11-03 17:57:36 2019-11-03 18:21:43 t 1 1 150152 623 0.00 2019-11-03 18:23:08 2019-11-03 18:23:10 t 1 1 150154 623 0.00 2019-11-03 18:24:23 2019-11-03 18:24:23 f 1 1 149897 512 0.00 2019-11-03 14:14:19 2019-11-03 14:47:18 t 1 1 149900 623 0.00 2019-11-03 14:49:37 2019-11-03 14:50:35 t 1 1 149901 623 0.00 2019-11-03 14:50:43 2019-11-03 14:51:37 t 1 1 149904 520 0.00 2019-11-03 14:38:40 2019-11-03 14:53:31 t 1 1 149906 623 0.00 2019-11-03 14:53:50 2019-11-03 14:53:51 t 1 1 149907 623 0.00 2019-11-03 14:53:58 2019-11-03 14:54:55 t 1 1 149911 512 0.00 2019-11-03 14:47:17 2019-11-03 14:55:33 t 1 1 149912 623 0.00 2019-11-03 14:55:46 2019-11-03 14:56:00 t 1 1 149913 562 0.00 2019-11-03 14:56:29 2019-11-03 14:56:55 t 1 1 149919 623 0.00 2019-11-03 15:00:50 2019-11-03 15:03:00 t 1 1 149921 508 0.00 2019-11-03 14:19:59 2019-11-03 15:03:20 t 1 2 149922 623 0.00 2019-11-03 15:03:22 2019-11-03 15:04:06 t 1 1 149923 623 0.00 2019-11-03 15:04:56 2019-11-03 15:05:10 t 1 1 149929 619 0.00 2019-11-03 15:06:20 2019-11-03 15:07:37 t 1 1 149932 623 0.00 2019-11-03 15:09:31 2019-11-03 15:09:55 t 1 1 149934 451 0.00 2019-11-03 15:06:18 2019-11-03 15:10:21 t 1 1 149938 623 0.00 2019-11-03 15:13:15 2019-11-03 15:13:38 t 1 1 149939 623 0.00 2019-11-03 15:14:00 2019-11-03 15:14:23 t 1 1 149945 623 0.00 2019-11-03 15:18:02 2019-11-03 15:18:15 t 1 1 149946 623 0.00 2019-11-03 15:18:22 2019-11-03 15:19:21 t 1 1 149948 623 0.00 2019-11-03 15:20:05 2019-11-03 15:20:23 t 1 1 149949 623 0.00 2019-11-03 15:21:05 2019-11-03 15:21:36 t 1 1 149950 623 0.00 2019-11-03 15:22:05 2019-11-03 15:22:36 t 1 1 149953 623 0.00 2019-11-03 15:23:27 2019-11-03 15:23:28 t 1 1 149955 623 0.00 2019-11-03 15:26:07 2019-11-03 15:26:20 t 1 1 149956 623 0.00 2019-11-03 15:27:14 2019-11-03 15:27:15 t 1 1 149957 562 0.00 2019-11-03 15:26:09 2019-11-03 15:27:22 t 1 1 149959 623 0.00 2019-11-03 15:27:21 2019-11-03 15:28:04 t 1 1 149960 623 0.00 2019-11-03 15:28:33 2019-11-03 15:28:34 t 1 1 149961 623 0.00 2019-11-03 15:29:09 2019-11-03 15:29:40 t 1 1 149963 607 0.00 2019-11-03 14:55:07 2019-11-03 15:31:48 t 1 1 149964 623 0.00 2019-11-03 15:32:15 2019-11-03 15:32:36 t 1 1 149969 625 0.00 2019-11-03 15:11:12 2019-11-03 15:36:15 t 1 1 149979 562 0.00 2019-11-03 15:55:02 2019-11-03 15:56:41 t 1 1 149980 520 0.00 2019-11-03 15:38:58 2019-11-03 15:57:44 t 1 1 149982 562 0.00 2019-11-03 15:59:09 2019-11-03 15:59:26 t 1 1 149989 623 0.00 2019-11-03 15:50:33 2019-11-03 16:08:46 t 1 1 149990 570 0.00 2019-11-03 16:04:46 2019-11-03 16:09:15 t 1 1 149991 623 0.00 2019-11-03 16:08:46 2019-11-03 16:10:06 t 1 1 149992 623 0.00 2019-11-03 16:10:11 2019-11-03 16:10:13 t 1 1 149993 520 0.00 2019-11-03 15:57:44 2019-11-03 16:10:56 t 1 1 149995 623 0.00 2019-11-03 16:10:29 2019-11-03 16:11:23 t 1 1 149997 623 0.00 2019-11-03 16:12:23 2019-11-03 16:12:59 t 1 1 149999 619 0.00 2019-11-03 16:05:10 2019-11-03 16:13:32 t 1 1 150003 623 0.00 2019-11-03 16:15:00 2019-11-03 16:15:01 t 1 1 150004 562 0.00 2019-11-03 16:14:24 2019-11-03 16:15:11 t 1 1 150008 623 0.00 2019-11-03 16:17:58 2019-11-03 16:21:49 t 1 1 150009 623 0.00 2019-11-03 16:21:54 2019-11-03 16:21:57 t 1 1 150011 623 0.00 2019-11-03 16:22:09 2019-11-03 16:24:11 t 1 1 150015 570 0.00 2019-11-03 16:14:10 2019-11-03 16:25:50 t 1 1 150019 623 0.00 2019-11-03 16:30:00 2019-11-03 16:30:07 t 1 1 150022 623 0.00 2019-11-03 16:30:33 2019-11-03 16:30:55 t 1 1 150023 623 0.00 2019-11-03 16:31:02 2019-11-03 16:31:04 t 1 1 150028 623 0.00 2019-11-03 16:32:14 2019-11-03 16:32:15 t 1 1 150031 520 0.00 2019-11-03 16:30:26 2019-11-03 16:32:47 t 1 1 150037 623 0.00 2019-11-03 16:34:37 2019-11-03 16:35:03 t 1 1 150041 623 0.00 2019-11-03 16:35:23 2019-11-03 16:36:16 t 1 1 150044 520 0.00 2019-11-03 16:35:56 2019-11-03 16:36:46 t 1 1 150045 623 0.00 2019-11-03 16:36:48 2019-11-03 16:37:12 t 1 1 150062 516 0.00 2019-11-03 16:42:27 2019-11-03 16:55:56 t 1 1 150063 562 0.00 2019-11-03 16:56:24 2019-11-03 16:56:48 t 1 1 150065 619 0.00 2019-11-03 16:50:58 2019-11-03 16:59:34 t 1 1 150066 591 0.00 2019-11-03 16:31:44 2019-11-03 17:00:46 t 1 1 150068 623 0.00 2019-11-03 17:00:49 2019-11-03 17:01:57 t 1 1 150072 556 0.00 2019-11-03 15:09:19 2019-11-03 17:03:14 t 1 1 150073 520 0.00 2019-11-03 16:36:46 2019-11-03 17:03:25 t 1 1 150078 585 0.00 2019-11-03 17:05:33 2019-11-03 17:08:05 t 1 1 150080 623 0.00 2019-11-03 17:08:51 2019-11-03 17:09:10 t 1 1 150083 578 0.00 2019-11-03 17:05:46 2019-11-03 17:10:21 t 1 1 150089 623 0.00 2019-11-03 17:13:20 2019-11-03 17:13:52 t 1 1 150090 623 0.00 2019-11-03 17:13:59 2019-11-03 17:14:04 t 1 1 150092 623 0.00 2019-11-03 17:14:15 2019-11-03 17:14:52 t 1 1 150094 220 0.00 2019-11-03 17:11:11 2019-11-03 17:17:35 t 1 2 150099 520 0.00 2019-11-03 17:03:24 2019-11-03 17:21:57 t 1 1 150104 597 0.00 2019-11-03 17:23:04 2019-11-03 17:25:45 t 1 1 150106 619 0.00 2019-11-03 17:20:33 2019-11-03 17:29:31 t 1 1 150107 562 0.00 2019-11-03 17:18:01 2019-11-03 17:32:20 t 1 1 150115 591 0.00 2019-11-03 17:13:24 2019-11-03 17:43:13 t 1 1 150123 625 0.00 2019-11-03 16:32:09 2019-11-03 17:54:02 t 1 1 150126 623 0.00 2019-11-03 17:55:03 2019-11-03 18:00:03 t 1 1 150129 623 0.00 2019-11-03 18:01:56 2019-11-03 18:02:04 t 1 1 150130 623 0.00 2019-11-03 18:01:30 2019-11-03 18:02:42 t 1 1 150137 562 0.00 2019-11-03 18:04:41 2019-11-03 18:05:57 t 1 1 150138 623 0.00 2019-11-03 18:04:36 2019-11-03 18:06:42 t 1 1 150141 520 0.00 2019-11-03 18:08:57 2019-11-03 18:10:56 t 1 1 150146 220 0.00 2019-11-03 16:51:19 2019-11-03 18:18:25 t 1 2 150148 635 0.00 2019-11-03 18:14:50 2019-11-03 18:19:20 t 1 1 150149 635 0.00 2019-11-03 18:19:21 2019-11-03 18:21:09 t 1 1 150151 623 0.00 2019-11-03 18:19:21 2019-11-03 18:22:11 t 1 1 150155 623 0.00 2019-11-03 18:23:22 2019-11-03 18:24:42 t 1 1 150159 422 0.00 2019-11-03 18:24:43 2019-11-03 18:27:24 t 1 1 150161 562 0.00 2019-11-03 18:30:48 2019-11-03 18:30:58 t 1 1 150166 498 0.00 2019-11-03 15:13:20 2019-11-03 18:33:26 t 1 2 150167 562 0.00 2019-11-03 18:33:53 2019-11-03 18:34:17 t 1 1 150168 591 0.00 2019-11-03 18:34:03 2019-11-03 18:35:20 t 1 1 150170 545 0.00 2019-11-03 18:33:57 2019-11-03 18:36:01 t 1 1 150173 562 0.00 2019-11-03 18:40:03 2019-11-03 18:40:24 t 1 1 150174 622 0.00 2019-11-03 18:33:08 2019-11-03 18:42:51 t 1 1 150177 585 0.00 2019-11-03 18:37:02 2019-11-03 18:46:24 t 1 1 150179 622 0.00 2019-11-03 18:42:51 2019-11-03 18:49:16 t 1 1 150181 562 0.00 2019-11-03 18:50:46 2019-11-03 18:51:09 t 1 1 150188 545 0.00 2019-11-03 18:52:01 2019-11-03 18:58:38 t 1 1 150191 562 0.00 2019-11-03 19:00:20 2019-11-03 19:00:41 t 1 1 150197 416 0.00 2019-11-03 18:34:02 2019-11-03 19:05:30 t 1 1 150200 416 0.00 2019-11-03 19:05:30 2019-11-03 19:07:41 t 1 1 150201 562 0.00 2019-11-03 19:08:13 2019-11-03 19:08:36 t 1 1 150205 619 0.00 2019-11-03 19:07:31 2019-11-03 19:13:30 t 1 1 150101 622 0.00 2019-11-03 16:46:30 2019-11-03 17:23:27 t 1 1 150103 623 0.00 2019-11-03 17:21:57 2019-11-03 17:23:42 t 1 1 150105 538 0.00 2019-11-03 17:17:19 2019-11-03 17:29:03 t 1 1 150108 615 0.00 2019-11-03 17:29:42 2019-11-03 17:32:22 t 1 1 150111 585 0.00 2019-11-03 17:17:55 2019-11-03 17:38:55 t 1 1 150113 597 0.00 2019-11-03 17:39:16 2019-11-03 17:42:55 t 1 1 150118 220 0.00 2019-11-03 17:45:17 2019-11-03 17:45:21 t 1 1 150124 562 0.00 2019-11-03 17:54:51 2019-11-03 17:55:24 t 1 1 150127 623 0.00 2019-11-03 18:00:08 2019-11-03 18:00:28 t 1 1 150132 619 0.00 2019-11-03 17:55:35 2019-11-03 18:02:48 t 1 1 150135 623 0.00 2019-11-03 18:03:04 2019-11-03 18:03:32 t 1 1 150136 562 0.00 2019-11-03 18:03:55 2019-11-03 18:04:20 t 1 1 150140 562 0.00 2019-11-03 18:08:50 2019-11-03 18:09:10 t 1 1 150142 615 0.00 2019-11-03 17:52:27 2019-11-03 18:11:55 t 1 1 150153 416 0.00 2019-11-03 16:55:32 2019-11-03 18:24:13 t 1 1 150156 585 0.00 2019-11-03 17:51:07 2019-11-03 18:24:44 t 1 1 150157 623 0.00 2019-11-03 18:24:11 2019-11-03 18:25:11 t 1 1 150160 615 0.00 2019-11-03 18:25:49 2019-11-03 18:28:10 t 1 1 150163 574 0.00 2019-11-03 18:23:02 2019-11-03 18:31:51 t 1 1 150171 520 0.00 2019-11-03 18:10:56 2019-11-03 18:36:22 t 1 1 150172 545 0.00 2019-11-03 18:36:56 2019-11-03 18:40:19 t 1 1 150175 545 0.00 2019-11-03 18:43:19 2019-11-03 18:45:50 t 1 1 150178 615 0.00 2019-11-03 18:33:08 2019-11-03 18:47:50 t 1 1 150180 520 0.00 2019-11-03 18:36:21 2019-11-03 18:50:13 t 1 1 150182 585 0.00 2019-11-03 18:46:23 2019-11-03 18:51:42 t 1 1 150186 597 0.00 2019-11-03 18:50:41 2019-11-03 18:57:26 t 1 1 150189 562 0.00 2019-11-03 18:58:20 2019-11-03 18:58:57 t 1 1 150192 591 0.00 2019-11-03 18:59:45 2019-11-03 19:02:59 t 1 1 150195 622 0.00 2019-11-03 18:57:36 2019-11-03 19:04:43 t 1 1 150196 520 0.00 2019-11-03 18:50:12 2019-11-03 19:04:49 t 1 1 150199 516 0.00 2019-11-03 18:53:24 2019-11-03 19:06:21 t 1 1 150207 562 0.00 2019-11-03 19:14:31 2019-11-03 19:14:55 t 1 1 150209 591 0.00 2019-11-03 19:10:11 2019-11-03 19:20:10 t 1 1 150214 379 0.00 2019-11-03 17:20:48 2019-11-03 19:24:30 t 1 1 150217 375 0.00 2019-11-03 19:17:43 2019-11-03 19:28:02 t 1 1 150220 578 0.00 2019-11-03 19:20:30 2019-11-03 19:29:20 t 1 1 150224 585 0.00 2019-11-03 19:22:03 2019-11-03 19:34:33 t 1 1 150226 622 0.00 2019-11-03 19:17:13 2019-11-03 19:38:11 t 1 1 150231 520 0.00 2019-11-03 19:31:58 2019-11-03 19:45:02 t 1 1 150236 556 0.00 2019-11-03 19:45:29 2019-11-03 19:48:52 t 1 1 150237 556 0.00 2019-11-03 19:48:52 2019-11-03 19:50:53 t 1 1 150241 623 0.00 2019-11-03 19:51:53 2019-11-03 19:55:36 t 1 1 150243 562 0.00 2019-11-03 19:56:20 2019-11-03 19:57:15 t 1 1 150248 520 0.00 2019-11-03 19:52:59 2019-11-03 20:00:08 t 1 1 150253 556 0.00 2019-11-03 20:00:44 2019-11-03 20:00:48 t 1 1 150258 623 0.00 2019-11-03 20:00:44 2019-11-03 20:02:43 t 1 1 150259 375 0.00 2019-11-03 20:01:08 2019-11-03 20:03:28 t 1 1 150264 556 0.00 2019-11-03 20:04:13 2019-11-03 20:06:05 t 1 1 150273 556 0.00 2019-11-03 20:10:34 2019-11-03 20:12:43 t 1 1 150277 372 0.00 2019-11-03 19:56:12 2019-11-03 20:16:17 t 1 2 150279 622 0.00 2019-11-03 19:38:11 2019-11-03 20:17:50 t 1 1 150282 520 0.00 2019-11-03 20:11:23 2019-11-03 20:19:47 t 1 1 150283 562 0.00 2019-11-03 20:20:56 2019-11-03 20:21:17 t 1 1 150289 585 0.00 2019-11-03 20:24:38 2019-11-03 20:28:04 t 1 1 150292 520 0.00 2019-11-03 20:22:08 2019-11-03 20:31:06 t 1 1 150298 564 0.00 2019-11-03 20:31:47 2019-11-03 20:34:27 t 1 1 150300 375 0.00 2019-11-03 20:36:21 2019-11-03 20:37:03 t 1 1 150301 375 0.00 2019-11-03 20:37:04 2019-11-03 20:37:33 t 1 1 150308 375 0.00 2019-11-03 20:40:53 2019-11-03 20:45:10 t 1 1 150310 375 0.00 2019-11-03 20:45:14 2019-11-03 20:46:14 t 1 1 150311 570 0.00 2019-11-03 20:38:13 2019-11-03 20:47:51 t 1 1 150314 375 0.00 2019-11-03 20:46:13 2019-11-03 20:49:23 t 1 1 150316 375 0.00 2019-11-03 20:49:34 2019-11-03 20:51:19 t 1 1 150317 516 0.00 2019-11-03 20:49:33 2019-11-03 20:51:53 t 1 1 150321 635 0.00 2019-11-03 19:43:56 2019-11-03 20:55:28 t 1 1 150328 585 0.00 2019-11-03 20:53:58 2019-11-03 21:02:07 t 1 1 150330 622 0.00 2019-11-03 20:43:34 2019-11-03 21:02:43 t 1 1 150332 520 0.00 2019-11-03 20:57:31 2019-11-03 21:03:42 t 1 1 150333 481 0.00 2019-11-03 20:45:41 2019-11-03 21:04:35 t 1 1 150335 481 0.00 2019-11-03 21:04:33 2019-11-03 21:06:48 t 1 1 150337 591 0.00 2019-11-03 19:47:13 2019-11-03 21:09:56 t 1 1 150339 566 0.00 2019-11-03 21:09:21 2019-11-03 21:13:45 t 1 1 150340 622 0.00 2019-11-03 21:02:43 2019-11-03 21:13:57 t 1 1 150342 597 0.00 2019-11-03 21:12:05 2019-11-03 21:14:58 t 1 1 150349 566 0.00 2019-11-03 21:13:45 2019-11-03 21:23:57 t 1 1 150350 562 0.00 2019-11-03 21:22:24 2019-11-03 21:24:08 t 1 1 150353 422 0.00 2019-11-03 21:26:35 2019-11-03 21:29:53 t 1 1 150354 585 0.00 2019-11-03 21:27:01 2019-11-03 21:30:19 t 1 1 150359 635 0.00 2019-11-03 20:55:28 2019-11-03 21:34:54 t 1 1 150360 375 0.00 2019-11-03 20:59:47 2019-11-03 21:34:58 t 1 1 150363 562 0.00 2019-11-03 21:35:23 2019-11-03 21:36:32 t 1 1 150364 375 0.00 2019-11-03 21:36:30 2019-11-03 21:37:36 t 1 1 150367 375 0.00 2019-11-03 21:37:35 2019-11-03 21:41:48 t 1 1 150369 562 0.00 2019-11-03 21:41:55 2019-11-03 21:42:27 t 1 1 150374 627 0.00 2019-11-03 21:28:21 2019-11-03 21:51:17 t 1 1 150376 585 0.00 2019-11-03 21:48:51 2019-11-03 21:52:24 t 1 1 150378 416 0.00 2019-11-03 21:34:33 2019-11-03 21:53:05 t 1 1 150379 451 0.00 2019-11-03 21:45:31 2019-11-03 21:53:40 t 1 1 150382 375 0.00 2019-11-03 21:41:54 2019-11-03 21:55:50 t 1 1 150384 627 0.00 2019-11-03 21:51:17 2019-11-03 21:59:06 t 1 1 150386 520 0.00 2019-11-03 21:54:17 2019-11-03 21:59:51 t 1 1 150387 554 0.00 2019-11-03 21:59:03 2019-11-03 22:00:24 t 1 1 150388 562 0.00 2019-11-03 22:00:29 2019-11-03 22:00:45 t 1 1 150391 562 0.00 2019-11-03 22:02:53 2019-11-03 22:03:42 t 1 1 150394 562 0.00 2019-11-03 22:04:53 2019-11-03 22:06:19 t 1 1 150396 562 0.00 2019-11-03 22:06:39 2019-11-03 22:06:53 t 1 1 150398 585 0.00 2019-11-03 22:05:14 2019-11-03 22:08:56 t 1 1 150402 545 0.00 2019-11-03 20:54:37 2019-11-03 22:15:43 t 1 1 150403 483 0.00 2019-11-03 22:01:48 2019-11-03 22:19:29 t 1 1 150404 416 0.00 2019-11-03 21:53:09 2019-11-03 22:21:19 t 1 1 150406 619 0.00 2019-11-03 22:03:03 2019-11-03 22:23:42 t 1 1 150413 562 0.00 2019-11-03 22:31:44 2019-11-03 22:32:02 t 1 1 150415 562 0.00 2019-11-03 22:33:06 2019-11-03 22:34:18 t 1 1 150417 562 0.00 2019-11-03 22:34:26 2019-11-03 22:34:40 t 1 1 150420 451 0.00 2019-11-03 22:25:24 2019-11-03 22:36:17 t 1 1 150423 516 0.00 2019-11-03 22:22:07 2019-11-03 22:37:59 t 1 1 150424 591 0.00 2019-11-03 22:35:24 2019-11-03 22:39:09 t 1 1 150158 562 0.00 2019-11-03 18:25:36 2019-11-03 18:26:01 t 1 1 150162 619 0.00 2019-11-03 18:24:37 2019-11-03 18:31:27 t 1 1 150164 416 0.00 2019-11-03 18:25:55 2019-11-03 18:32:51 t 1 1 150165 622 0.00 2019-11-03 18:06:51 2019-11-03 18:33:08 t 1 1 150169 585 0.00 2019-11-03 18:30:00 2019-11-03 18:35:30 t 1 1 150176 591 0.00 2019-11-03 18:44:22 2019-11-03 18:46:15 t 1 1 150183 585 0.00 2019-11-03 18:51:42 2019-11-03 18:53:38 t 1 1 150184 622 0.00 2019-11-03 18:49:21 2019-11-03 18:56:12 t 1 1 150185 622 0.00 2019-11-03 18:56:55 2019-11-03 18:57:18 t 1 1 150187 597 0.00 2019-11-03 18:57:27 2019-11-03 18:58:36 t 1 1 150190 615 0.00 2019-11-03 18:47:50 2019-11-03 19:00:20 t 1 1 150193 615 0.00 2019-11-03 19:00:19 2019-11-03 19:03:38 t 1 1 150194 591 0.00 2019-11-03 19:03:36 2019-11-03 19:04:41 t 1 1 150198 556 0.00 2019-11-03 17:03:14 2019-11-03 19:05:48 t 1 1 150202 597 0.00 2019-11-03 19:01:47 2019-11-03 19:08:46 t 1 1 150203 520 0.00 2019-11-03 19:04:49 2019-11-03 19:09:23 t 1 1 150204 591 0.00 2019-11-03 19:04:41 2019-11-03 19:09:58 t 1 1 150206 518 0.00 2019-11-03 19:14:33 2019-11-03 19:14:45 t 1 2 150208 622 0.00 2019-11-03 19:04:43 2019-11-03 19:17:13 t 1 1 150212 585 0.00 2019-11-03 19:06:10 2019-11-03 19:22:04 t 1 1 150218 545 0.00 2019-11-03 18:58:37 2019-11-03 19:28:08 t 1 1 150219 545 0.00 2019-11-03 19:28:07 2019-11-03 19:29:19 t 1 1 150221 566 0.00 2019-11-03 18:06:20 2019-11-03 19:30:20 t 1 1 150222 597 0.00 2019-11-03 19:20:57 2019-11-03 19:31:56 t 1 1 150223 520 0.00 2019-11-03 19:09:22 2019-11-03 19:31:58 t 1 1 150225 562 0.00 2019-11-03 19:36:29 2019-11-03 19:36:40 t 1 1 150228 562 0.00 2019-11-03 19:39:42 2019-11-03 19:40:05 t 1 1 150229 556 0.00 2019-11-03 19:05:48 2019-11-03 19:42:54 t 1 1 150233 556 0.00 2019-11-03 19:44:12 2019-11-03 19:45:29 t 1 1 150234 562 0.00 2019-11-03 19:47:01 2019-11-03 19:47:29 t 1 1 150239 556 0.00 2019-11-03 19:50:53 2019-11-03 19:53:30 t 1 1 150240 619 0.00 2019-11-03 19:49:35 2019-11-03 19:54:33 t 1 1 150245 619 0.00 2019-11-03 19:56:54 2019-11-03 19:58:43 t 1 1 150247 562 0.00 2019-11-03 19:58:26 2019-11-03 19:59:57 t 1 1 150250 556 0.00 2019-11-03 19:55:51 2019-11-03 20:00:42 t 1 1 150256 520 0.00 2019-11-03 20:00:08 2019-11-03 20:01:21 t 1 1 150257 623 0.00 2019-11-03 20:00:48 2019-11-03 20:02:43 t 1 1 150262 556 0.00 2019-11-03 20:02:52 2019-11-03 20:04:13 t 1 1 150267 375 0.00 2019-11-03 20:07:09 2019-11-03 20:08:55 t 1 1 150269 556 0.00 2019-11-03 20:08:12 2019-11-03 20:10:34 t 1 1 150271 633 0.00 2019-11-03 20:08:06 2019-11-03 20:10:43 t 1 1 150272 520 0.00 2019-11-03 20:01:33 2019-11-03 20:11:23 t 1 1 150275 556 0.00 2019-11-03 20:12:43 2019-11-03 20:14:59 t 1 1 150278 375 0.00 2019-11-03 20:09:03 2019-11-03 20:17:48 t 1 1 150280 593 0.00 2019-11-03 19:57:52 2019-11-03 20:19:01 t 1 1 150281 375 0.00 2019-11-03 20:18:41 2019-11-03 20:19:40 t 1 1 150284 566 0.00 2019-11-03 19:47:59 2019-11-03 20:21:24 t 1 1 150285 520 0.00 2019-11-03 20:19:39 2019-11-03 20:22:08 t 1 1 150286 597 0.00 2019-11-03 20:21:21 2019-11-03 20:23:18 t 1 1 150288 622 0.00 2019-11-03 20:17:50 2019-11-03 20:25:50 t 1 1 150291 545 0.00 2019-11-03 20:03:51 2019-11-03 20:30:22 t 1 1 150297 375 0.00 2019-11-03 20:19:47 2019-11-03 20:34:20 t 1 1 150302 570 0.00 2019-11-03 20:27:29 2019-11-03 20:38:13 t 1 1 150304 562 0.00 2019-11-03 20:42:24 2019-11-03 20:42:43 t 1 1 150306 622 0.00 2019-11-03 20:36:44 2019-11-03 20:43:34 t 1 1 150307 585 0.00 2019-11-03 20:40:18 2019-11-03 20:44:25 t 1 1 150309 481 0.00 2019-11-03 19:21:55 2019-11-03 20:45:41 t 1 1 150312 607 0.00 2019-11-03 20:42:01 2019-11-03 20:48:33 t 1 1 150318 619 0.00 2019-11-03 20:44:55 2019-11-03 20:52:28 t 1 1 150320 619 0.00 2019-11-03 20:52:45 2019-11-03 20:55:01 t 1 1 150322 375 0.00 2019-11-03 20:51:39 2019-11-03 20:55:33 t 1 1 150324 220 0.00 2019-11-03 20:13:30 2019-11-03 20:57:54 t 1 2 150336 562 0.00 2019-11-03 21:07:30 2019-11-03 21:09:22 t 1 1 150341 585 0.00 2019-11-03 21:10:02 2019-11-03 21:14:32 t 1 1 150347 591 0.00 2019-11-03 21:09:56 2019-11-03 21:20:47 t 1 1 150355 622 0.00 2019-11-03 21:13:57 2019-11-03 21:30:52 t 1 1 150356 422 0.00 2019-11-03 21:30:23 2019-11-03 21:31:57 t 1 1 150362 375 0.00 2019-11-03 21:35:19 2019-11-03 21:36:30 t 1 1 150365 591 0.00 2019-11-03 21:36:22 2019-11-03 21:37:57 t 1 1 150370 220 0.00 2019-11-03 20:16:02 2019-11-03 21:43:02 t 1 1 150371 451 0.00 2019-11-03 21:35:35 2019-11-03 21:45:31 t 1 1 150372 619 0.00 2019-11-03 21:43:13 2019-11-03 21:46:17 t 1 1 150375 562 0.00 2019-11-03 21:51:54 2019-11-03 21:52:08 t 1 1 150380 551 0.00 2019-11-03 21:41:58 2019-11-03 21:53:58 t 1 1 150381 591 0.00 2019-11-03 21:54:00 2019-11-03 21:55:38 t 1 1 150385 554 0.00 2019-11-03 20:47:23 2019-11-03 21:59:17 t 1 1 150389 627 0.00 2019-11-03 21:59:06 2019-11-03 22:01:36 t 1 1 150390 562 0.00 2019-11-03 22:02:02 2019-11-03 22:02:19 t 1 1 150393 551 0.00 2019-11-03 21:53:58 2019-11-03 22:04:58 t 1 1 150397 566 0.00 2019-11-03 21:41:08 2019-11-03 22:07:15 t 1 1 150401 451 0.00 2019-11-03 21:57:35 2019-11-03 22:14:29 t 1 1 150407 451 0.00 2019-11-03 22:14:29 2019-11-03 22:25:24 t 1 1 150408 562 0.00 2019-11-03 22:24:36 2019-11-03 22:25:43 t 1 1 150410 508 0.00 2019-11-03 22:28:10 2019-11-03 22:28:56 t 1 2 150411 545 0.00 2019-11-03 22:15:43 2019-11-03 22:29:19 t 1 1 150412 545 0.00 2019-11-03 22:29:19 2019-11-03 22:30:32 t 1 1 150419 562 0.00 2019-11-03 22:35:10 2019-11-03 22:35:21 t 1 1 150421 483 0.00 2019-11-03 22:19:44 2019-11-03 22:36:44 t 1 1 150427 510 0.00 2019-11-03 22:04:09 2019-11-03 22:42:23 t 1 1 150428 619 0.00 2019-11-03 22:40:58 2019-11-03 22:43:20 t 1 1 150430 585 0.00 2019-11-03 22:40:41 2019-11-03 22:44:00 t 1 1 150431 627 0.00 2019-11-03 22:41:07 2019-11-03 22:45:10 t 1 1 150432 220 0.00 2019-11-03 21:43:02 2019-11-03 22:45:51 t 1 1 150436 220 0.00 2019-11-03 22:47:15 2019-11-03 22:48:37 t 1 1 150437 220 0.00 2019-11-03 22:48:37 2019-11-03 22:49:11 t 1 1 150441 578 0.00 2019-11-03 19:29:20 2019-11-03 22:52:22 t 1 1 150444 570 0.00 2019-11-03 22:40:39 2019-11-03 22:53:19 t 1 1 150446 623 0.00 2019-11-03 22:49:17 2019-11-03 22:53:47 t 1 1 150448 623 0.00 2019-11-03 22:53:47 2019-11-03 22:54:12 t 1 1 150449 220 0.00 2019-11-03 22:54:09 2019-11-03 22:54:44 t 1 1 150450 623 0.00 2019-11-03 22:54:25 2019-11-03 22:55:06 t 1 1 150451 623 0.00 2019-11-03 22:55:14 2019-11-03 22:55:15 t 1 1 150452 220 0.00 2019-11-03 22:54:44 2019-11-03 22:55:23 t 1 1 150454 623 0.00 2019-11-03 22:55:29 2019-11-03 22:55:34 t 1 1 150455 220 0.00 2019-11-03 22:55:23 2019-11-03 22:55:58 t 1 1 150457 564 0.00 2019-11-03 20:36:49 2019-11-03 22:56:15 t 1 1 150465 485 0.00 2019-11-03 22:55:13 2019-11-03 23:00:20 t 1 1 150210 578 0.00 2019-11-03 18:54:54 2019-11-03 19:20:30 t 1 1 150211 481 0.00 2019-11-03 14:24:00 2019-11-03 19:21:55 t 1 1 150213 416 0.00 2019-11-03 19:06:48 2019-11-03 19:23:45 t 1 1 150215 562 0.00 2019-11-03 19:25:38 2019-11-03 19:26:17 t 1 1 150216 591 0.00 2019-11-03 19:21:15 2019-11-03 19:27:58 t 1 1 150227 566 0.00 2019-11-03 19:30:20 2019-11-03 19:39:47 t 1 1 150230 556 0.00 2019-11-03 19:42:54 2019-11-03 19:44:12 t 1 1 150232 597 0.00 2019-11-03 19:37:30 2019-11-03 19:45:05 t 1 1 150235 566 0.00 2019-11-03 19:39:47 2019-11-03 19:47:59 t 1 1 150238 520 0.00 2019-11-03 19:45:01 2019-11-03 19:52:59 t 1 1 150242 556 0.00 2019-11-03 19:53:30 2019-11-03 19:55:51 t 1 1 150244 593 0.00 2019-11-03 19:28:11 2019-11-03 19:57:52 t 1 1 150246 375 0.00 2019-11-03 19:28:02 2019-11-03 19:59:39 t 1 1 150249 623 0.00 2019-11-03 19:54:40 2019-11-03 20:00:34 t 1 1 150251 556 0.00 2019-11-03 20:00:44 2019-11-03 20:00:44 t 1 1 150252 623 0.00 2019-11-03 20:00:44 2019-11-03 20:00:44 t 1 1 150254 623 0.00 2019-11-03 20:01:01 2019-11-03 20:01:01 f 1 1 150255 623 0.00 2019-11-03 20:01:13 2019-11-03 20:01:13 f 1 1 150260 545 0.00 2019-11-03 19:29:35 2019-11-03 20:03:51 t 1 1 150261 512 0.00 2019-11-03 19:33:48 2019-11-03 20:04:05 t 1 1 150263 375 0.00 2019-11-03 20:04:39 2019-11-03 20:05:44 t 1 1 150265 556 0.00 2019-11-03 20:06:05 2019-11-03 20:08:12 t 1 1 150266 562 0.00 2019-11-03 20:06:59 2019-11-03 20:08:34 t 1 1 150268 585 0.00 2019-11-03 19:56:56 2019-11-03 20:10:09 t 1 1 150270 619 0.00 2019-11-03 20:08:21 2019-11-03 20:10:36 t 1 1 150274 512 0.00 2019-11-03 20:12:16 2019-11-03 20:13:48 t 1 1 150276 220 0.00 2019-11-03 18:06:06 2019-11-03 20:16:02 t 1 1 150287 585 0.00 2019-11-03 20:22:54 2019-11-03 20:24:34 t 1 1 150290 564 0.00 2019-11-03 19:21:23 2019-11-03 20:28:23 t 1 1 150293 562 0.00 2019-11-03 20:30:51 2019-11-03 20:31:15 t 1 1 150294 585 0.00 2019-11-03 20:28:04 2019-11-03 20:31:51 t 1 1 150295 562 0.00 2019-11-03 20:31:51 2019-11-03 20:32:53 t 1 1 150296 593 0.00 2019-11-03 20:19:01 2019-11-03 20:34:01 t 1 1 150299 622 0.00 2019-11-03 20:25:50 2019-11-03 20:34:50 t 1 1 150303 375 0.00 2019-11-03 20:37:33 2019-11-03 20:38:37 t 1 1 150305 545 0.00 2019-11-03 20:30:22 2019-11-03 20:43:20 t 1 1 150313 379 0.00 2019-11-03 19:24:31 2019-11-03 20:49:01 t 1 1 150315 562 0.00 2019-11-03 20:49:53 2019-11-03 20:50:34 t 1 1 150319 585 0.00 2019-11-03 20:51:22 2019-11-03 20:53:59 t 1 1 150323 520 0.00 2019-11-03 20:31:23 2019-11-03 20:57:31 t 1 1 150325 375 0.00 2019-11-03 20:55:50 2019-11-03 20:58:40 t 1 1 150326 607 0.00 2019-11-03 20:49:34 2019-11-03 21:00:54 t 1 1 150327 562 0.00 2019-11-03 21:00:43 2019-11-03 21:01:12 t 1 1 150329 379 0.00 2019-11-03 20:49:01 2019-11-03 21:02:28 t 1 1 150331 562 0.00 2019-11-03 21:03:18 2019-11-03 21:03:28 t 1 1 150334 520 0.00 2019-11-03 21:03:42 2019-11-03 21:06:30 t 1 1 150338 520 0.00 2019-11-03 21:07:50 2019-11-03 21:10:41 t 1 1 150343 607 0.00 2019-11-03 21:00:54 2019-11-03 21:15:35 t 1 1 150344 562 0.00 2019-11-03 21:14:39 2019-11-03 21:16:06 t 1 1 150345 520 0.00 2019-11-03 21:10:41 2019-11-03 21:18:10 t 1 1 150346 520 0.00 2019-11-03 21:19:30 2019-11-03 21:20:47 t 1 1 150348 619 0.00 2019-11-03 21:10:05 2019-11-03 21:22:34 t 1 1 150351 562 0.00 2019-11-03 21:24:49 2019-11-03 21:25:00 t 1 1 150352 566 0.00 2019-11-03 21:23:57 2019-11-03 21:27:53 t 1 1 150357 562 0.00 2019-11-03 21:31:55 2019-11-03 21:32:03 t 1 1 150358 416 0.00 2019-11-03 19:24:37 2019-11-03 21:34:33 t 1 1 150361 591 0.00 2019-11-03 21:20:47 2019-11-03 21:35:09 t 1 1 150366 566 0.00 2019-11-03 21:27:53 2019-11-03 21:41:08 t 1 1 150368 551 0.00 2019-11-03 21:26:42 2019-11-03 21:41:58 t 1 1 150373 379 0.00 2019-11-03 21:02:28 2019-11-03 21:49:14 t 1 1 150377 220 0.00 2019-11-03 21:51:27 2019-11-03 21:52:54 t 1 2 150383 562 0.00 2019-11-03 21:53:20 2019-11-03 21:57:18 t 1 1 150392 562 0.00 2019-11-03 22:04:16 2019-11-03 22:04:47 t 1 1 150395 375 0.00 2019-11-03 21:55:50 2019-11-03 22:06:24 t 1 1 150399 554 0.00 2019-11-03 22:00:31 2019-11-03 22:10:27 t 1 1 150400 562 0.00 2019-11-03 22:10:40 2019-11-03 22:11:43 t 1 1 150405 562 0.00 2019-11-03 22:21:12 2019-11-03 22:21:23 t 1 1 150409 481 0.00 2019-11-03 21:06:47 2019-11-03 22:28:34 t 1 1 150414 566 0.00 2019-11-03 22:07:15 2019-11-03 22:33:58 t 1 1 150416 585 0.00 2019-11-03 22:25:27 2019-11-03 22:34:26 t 1 1 150418 545 0.00 2019-11-03 22:34:13 2019-11-03 22:35:15 t 1 1 150422 562 0.00 2019-11-03 22:36:16 2019-11-03 22:37:21 t 1 1 150425 562 0.00 2019-11-03 22:40:38 2019-11-03 22:40:47 t 1 1 150426 627 0.00 2019-11-03 22:01:36 2019-11-03 22:41:07 t 1 1 150433 220 0.00 2019-11-03 22:45:51 2019-11-03 22:46:37 t 1 1 150434 220 0.00 2019-11-03 22:46:37 2019-11-03 22:47:15 t 1 1 150438 451 0.00 2019-11-03 22:36:17 2019-11-03 22:49:54 t 1 1 150439 622 0.00 2019-11-03 22:46:25 2019-11-03 22:51:50 t 1 1 150440 516 0.00 2019-11-03 22:45:57 2019-11-03 22:52:08 t 1 1 150442 220 0.00 2019-11-03 22:49:10 2019-11-03 22:52:44 t 1 1 150443 220 0.00 2019-11-03 22:52:44 2019-11-03 22:53:17 t 1 1 150445 416 0.00 2019-11-03 22:21:25 2019-11-03 22:53:39 t 1 1 150447 220 0.00 2019-11-03 22:53:17 2019-11-03 22:54:09 t 1 1 150459 623 0.00 2019-11-03 22:56:48 2019-11-03 22:57:08 t 1 1 150461 220 0.00 2019-11-03 22:55:58 2019-11-03 22:59:08 t 1 1 150464 623 0.00 2019-11-03 23:00:13 2019-11-03 23:00:15 t 1 1 150467 220 0.00 2019-11-03 23:00:59 2019-11-03 23:01:35 t 1 1 150468 220 0.00 2019-11-03 23:01:34 2019-11-03 23:02:05 t 1 1 150469 544 0.00 2019-11-03 21:07:26 2019-11-03 23:02:18 t 1 2 150475 623 0.00 2019-11-03 23:04:29 2019-11-03 23:04:40 t 1 1 150481 623 0.00 2019-11-03 23:06:23 2019-11-03 23:06:36 t 1 1 150483 623 0.00 2019-11-03 23:06:51 2019-11-03 23:07:48 t 1 1 150487 623 0.00 2019-11-03 23:08:01 2019-11-03 23:08:22 t 1 1 150492 220 0.00 2019-11-03 23:07:58 2019-11-03 23:10:16 t 1 1 150494 556 0.00 2019-11-03 21:19:54 2019-11-03 23:10:59 t 1 1 150499 623 0.00 2019-11-03 23:12:29 2019-11-03 23:12:30 t 1 1 150500 623 0.00 2019-11-03 23:12:45 2019-11-03 23:13:20 t 1 1 150503 623 0.00 2019-11-03 23:14:24 2019-11-03 23:14:28 t 1 1 150505 220 0.00 2019-11-03 23:14:23 2019-11-03 23:14:55 t 1 1 150507 585 0.00 2019-11-03 23:11:02 2019-11-03 23:15:54 t 1 1 150508 623 0.00 2019-11-03 23:16:26 2019-11-03 23:16:28 t 1 1 150510 623 0.00 2019-11-03 23:17:22 2019-11-03 23:17:29 t 1 1 150511 562 0.00 2019-11-03 23:15:10 2019-11-03 23:17:58 t 1 1 150514 220 0.00 2019-11-03 23:18:29 2019-11-03 23:19:12 t 1 1 150517 622 0.00 2019-11-03 23:04:40 2019-11-03 23:22:23 t 1 1 150521 220 0.00 2019-11-03 23:21:07 2019-11-03 23:24:25 t 1 1 150525 609 0.00 2019-11-03 23:24:17 2019-11-03 23:28:03 t 1 1 150429 562 0.00 2019-11-03 22:42:17 2019-11-03 22:43:20 t 1 1 150435 595 0.00 2019-11-03 22:38:34 2019-11-03 22:48:16 t 1 1 150453 623 0.00 2019-11-03 22:55:23 2019-11-03 22:55:23 t 1 1 150456 622 0.00 2019-11-03 22:51:50 2019-11-03 22:56:08 t 1 1 150458 562 0.00 2019-11-03 22:45:36 2019-11-03 22:57:01 t 1 1 150460 623 0.00 2019-11-03 22:57:24 2019-11-03 22:57:30 t 1 1 150462 623 0.00 2019-11-03 22:59:15 2019-11-03 22:59:18 t 1 1 150463 220 0.00 2019-11-03 22:59:08 2019-11-03 22:59:39 t 1 1 150472 623 0.00 2019-11-03 23:02:34 2019-11-03 23:02:45 t 1 1 150478 220 0.00 2019-11-03 23:02:36 2019-11-03 23:05:22 t 1 1 150479 220 0.00 2019-11-03 23:05:22 2019-11-03 23:05:56 t 1 1 150482 220 0.00 2019-11-03 23:05:56 2019-11-03 23:07:25 t 1 1 150485 220 0.00 2019-11-03 23:07:25 2019-11-03 23:07:59 t 1 1 150486 562 0.00 2019-11-03 23:07:21 2019-11-03 23:08:09 t 1 1 150489 451 0.00 2019-11-03 22:49:54 2019-11-03 23:09:09 t 1 1 150496 607 0.00 2019-11-03 23:07:53 2019-11-03 23:11:34 t 1 1 150498 623 0.00 2019-11-03 23:11:39 2019-11-03 23:12:29 t 1 1 150509 623 0.00 2019-11-03 23:16:41 2019-11-03 23:16:43 t 1 1 150512 220 0.00 2019-11-03 23:14:55 2019-11-03 23:18:29 t 1 1 150518 623 0.00 2019-11-03 23:17:47 2019-11-03 23:22:47 t 1 1 150519 585 0.00 2019-11-03 23:15:54 2019-11-03 23:22:59 t 1 1 150520 556 0.00 2019-11-03 23:10:59 2019-11-03 23:24:09 t 1 1 150522 220 0.00 2019-11-03 23:24:25 2019-11-03 23:25:09 t 1 1 150526 220 0.00 2019-11-03 23:25:54 2019-11-03 23:28:08 t 1 1 150528 585 0.00 2019-11-03 23:22:59 2019-11-03 23:28:34 t 1 1 150529 562 0.00 2019-11-03 23:25:04 2019-11-03 23:29:47 t 1 1 150531 623 0.00 2019-11-03 23:22:47 2019-11-03 23:31:07 t 1 1 150532 220 0.00 2019-11-03 23:30:03 2019-11-03 23:31:15 t 1 1 150534 599 0.00 2019-11-03 23:32:34 2019-11-03 23:33:06 t 1 1 150537 412 0.00 2019-11-03 22:01:59 2019-11-03 23:34:37 t 1 1 150541 622 0.00 2019-11-03 23:32:33 2019-11-03 23:36:46 t 1 1 150542 623 0.00 2019-11-03 23:36:27 2019-11-03 23:37:00 t 1 1 150544 581 0.00 2019-11-03 23:33:49 2019-11-03 23:37:45 t 1 1 150545 220 0.00 2019-11-03 23:35:22 2019-11-03 23:38:20 t 1 1 150548 562 0.00 2019-11-03 23:36:02 2019-11-03 23:39:40 t 1 1 150551 623 0.00 2019-11-03 23:39:33 2019-11-03 23:41:06 t 1 1 150556 623 0.00 2019-11-03 23:43:12 2019-11-03 23:43:15 t 1 1 150557 585 0.00 2019-11-03 23:42:30 2019-11-03 23:44:34 t 1 1 150558 545 0.00 2019-11-03 23:37:22 2019-11-03 23:44:58 t 1 1 150559 556 0.00 2019-11-03 23:24:09 2019-11-03 23:49:13 t 1 1 150566 623 0.00 2019-11-03 23:58:35 2019-11-03 23:58:37 t 1 1 150567 623 0.00 2019-11-03 23:59:09 2019-11-03 23:59:20 t 1 1 150571 623 0.00 2019-11-04 00:03:31 2019-11-04 00:03:44 t 1 1 150572 623 0.00 2019-11-04 00:04:11 2019-11-04 00:04:24 t 1 1 150576 609 0.00 2019-11-04 00:01:21 2019-11-04 00:07:20 t 1 1 150578 220 0.00 2019-11-03 23:40:09 2019-11-04 00:08:19 t 1 1 150579 623 0.00 2019-11-04 00:09:13 2019-11-04 00:09:25 t 1 1 150581 625 0.00 2019-11-04 00:04:55 2019-11-04 00:11:02 t 1 1 150584 514 0.00 2019-11-03 23:16:58 2019-11-04 00:12:23 t 1 1 150586 623 0.00 2019-11-04 00:13:13 2019-11-04 00:13:28 t 1 1 150594 574 0.00 2019-11-04 00:13:26 2019-11-04 00:18:44 t 1 1 150595 623 0.00 2019-11-04 00:19:20 2019-11-04 00:19:40 t 1 1 150601 623 0.00 2019-11-04 00:22:46 2019-11-04 00:22:49 t 1 1 150605 220 0.00 2019-11-04 00:04:41 2019-11-04 00:26:04 t 1 2 150609 623 0.00 2019-11-04 00:30:14 2019-11-04 00:30:30 t 1 1 150614 623 0.00 2019-11-04 00:35:18 2019-11-04 00:35:19 t 1 1 150618 562 0.00 2019-11-04 00:36:35 2019-11-04 00:36:57 t 1 1 150619 623 0.00 2019-11-04 00:36:58 2019-11-04 00:37:01 t 1 1 150621 623 0.00 2019-11-04 00:41:03 2019-11-04 00:41:06 t 1 1 150622 623 0.00 2019-11-04 00:41:59 2019-11-04 00:42:08 t 1 1 150624 623 0.00 2019-11-04 00:46:09 2019-11-04 00:46:12 t 1 1 150625 623 0.00 2019-11-04 00:47:05 2019-11-04 00:47:14 t 1 1 150634 623 0.00 2019-11-04 00:56:20 2019-11-04 00:56:23 t 1 1 150635 623 0.00 2019-11-04 00:57:15 2019-11-04 00:57:17 t 1 1 150637 623 0.00 2019-11-04 01:01:08 2019-11-04 01:01:17 t 1 1 150647 538 0.00 2019-11-03 20:12:23 2019-11-04 01:12:10 t 1 1 150648 623 0.00 2019-11-04 01:13:27 2019-11-04 01:13:30 t 1 1 150649 623 0.00 2019-11-04 01:15:27 2019-11-04 01:15:30 t 1 1 150650 623 0.00 2019-11-04 01:16:31 2019-11-04 01:16:33 t 1 1 150652 623 0.00 2019-11-04 01:18:29 2019-11-04 01:18:32 t 1 1 150653 623 0.00 2019-11-04 01:19:23 2019-11-04 01:19:26 t 1 1 150655 503 0.00 2019-11-04 01:15:05 2019-11-04 01:21:57 t 1 1 150660 623 0.00 2019-11-04 01:28:35 2019-11-04 01:28:38 t 1 1 150667 623 0.00 2019-11-04 01:36:45 2019-11-04 01:36:48 t 1 1 150671 220 0.00 2019-11-04 00:27:39 2019-11-04 01:42:44 t 1 2 150672 623 0.00 2019-11-04 01:43:50 2019-11-04 01:43:53 t 1 1 150673 623 0.00 2019-11-04 01:44:41 2019-11-04 01:44:42 t 1 1 150675 587 0.00 2019-11-04 01:37:06 2019-11-04 01:46:48 t 1 1 150678 623 0.00 2019-11-04 01:50:02 2019-11-04 01:50:15 t 1 1 150681 623 0.00 2019-11-04 01:57:59 2019-11-04 01:58:00 t 1 1 150682 623 0.00 2019-11-04 01:58:59 2019-11-04 01:59:02 t 1 1 150688 623 0.00 2019-11-04 02:04:03 2019-11-04 02:04:04 t 1 1 150692 587 0.00 2019-11-04 02:05:38 2019-11-04 02:07:43 t 1 1 150693 623 0.00 2019-11-04 02:08:08 2019-11-04 02:08:09 t 1 1 150696 623 0.00 2019-11-04 02:11:07 2019-11-04 02:11:10 t 1 1 150700 623 0.00 2019-11-04 02:13:07 2019-11-04 02:13:10 t 1 1 150701 623 0.00 2019-11-04 02:16:12 2019-11-04 02:16:15 t 1 1 150709 623 0.00 2019-11-04 02:30:20 2019-11-04 02:30:23 t 1 1 150711 623 0.00 2019-11-04 02:32:24 2019-11-04 02:32:27 t 1 1 150713 623 0.00 2019-11-04 02:35:23 2019-11-04 02:35:24 t 1 1 150723 623 0.00 2019-11-04 02:49:38 2019-11-04 02:49:41 t 1 1 150726 623 0.00 2019-11-04 02:53:43 2019-11-04 02:53:46 t 1 1 150728 623 0.00 2019-11-04 02:55:46 2019-11-04 02:55:49 t 1 1 150738 623 0.00 2019-11-04 03:04:46 2019-11-04 03:04:47 t 1 1 150743 562 0.00 2019-11-04 03:08:04 2019-11-04 03:09:43 t 1 1 150748 623 0.00 2019-11-04 03:14:57 2019-11-04 03:15:00 t 1 1 150749 623 0.00 2019-11-04 03:16:00 2019-11-04 03:16:01 t 1 1 150751 623 0.00 2019-11-04 03:17:43 2019-11-04 03:17:52 t 1 1 150755 623 0.00 2019-11-04 03:21:13 2019-11-04 03:21:16 t 1 1 150757 623 0.00 2019-11-04 03:25:05 2019-11-04 03:25:08 t 1 1 150758 623 0.00 2019-11-04 03:25:59 2019-11-04 03:26:03 t 1 1 150760 623 0.00 2019-11-04 03:30:06 2019-11-04 03:30:09 t 1 1 150761 623 0.00 2019-11-04 03:31:01 2019-11-04 03:31:05 t 1 1 150763 623 0.00 2019-11-04 03:33:33 2019-11-04 03:33:34 t 1 1 150764 623 0.00 2019-11-04 03:34:14 2019-11-04 03:34:16 t 1 1 150770 623 0.00 2019-11-04 03:41:21 2019-11-04 03:41:24 t 1 1 150772 623 0.00 2019-11-04 03:43:14 2019-11-04 03:43:17 t 1 1 150466 220 0.00 2019-11-03 22:59:39 2019-11-03 23:00:59 t 1 1 150470 623 0.00 2019-11-03 23:02:18 2019-11-03 23:02:21 t 1 1 150471 220 0.00 2019-11-03 23:02:05 2019-11-03 23:02:36 t 1 1 150473 566 0.00 2019-11-03 22:59:35 2019-11-03 23:03:40 t 1 1 150474 623 0.00 2019-11-03 23:04:16 2019-11-03 23:04:17 t 1 1 150476 622 0.00 2019-11-03 22:56:08 2019-11-03 23:04:40 t 1 1 150477 623 0.00 2019-11-03 23:04:51 2019-11-03 23:04:54 t 1 1 150480 485 0.00 2019-11-03 23:02:09 2019-11-03 23:06:16 t 1 1 150484 607 0.00 2019-11-03 21:15:35 2019-11-03 23:07:53 t 1 1 150488 570 0.00 2019-11-03 22:53:19 2019-11-03 23:08:23 t 1 1 150490 623 0.00 2019-11-03 23:09:16 2019-11-03 23:09:50 t 1 1 150491 311 0.00 2019-11-03 23:05:52 2019-11-03 23:10:15 t 1 2 150493 570 0.00 2019-11-03 23:08:23 2019-11-03 23:10:41 t 1 1 150495 623 0.00 2019-11-03 23:11:16 2019-11-03 23:11:27 t 1 1 150497 220 0.00 2019-11-03 23:10:15 2019-11-03 23:11:35 t 1 1 150501 564 0.00 2019-11-03 22:56:15 2019-11-03 23:13:27 t 1 1 150502 220 0.00 2019-11-03 23:11:35 2019-11-03 23:14:23 t 1 1 150504 528 0.00 2019-11-03 23:08:26 2019-11-03 23:14:35 t 1 1 150506 562 0.00 2019-11-03 23:08:09 2019-11-03 23:15:30 t 1 1 150513 456 0.00 2019-11-03 22:07:30 2019-11-03 23:19:04 t 1 1 150515 220 0.00 2019-11-03 23:19:12 2019-11-03 23:20:16 t 1 1 150516 220 0.00 2019-11-03 23:20:16 2019-11-03 23:21:08 t 1 1 150523 220 0.00 2019-11-03 23:25:09 2019-11-03 23:25:54 t 1 1 150524 510 0.00 2019-11-03 22:42:23 2019-11-03 23:27:08 t 1 1 150533 622 0.00 2019-11-03 23:28:13 2019-11-03 23:32:33 t 1 1 150536 220 0.00 2019-11-03 23:31:15 2019-11-03 23:34:10 t 1 1 150546 623 0.00 2019-11-03 23:38:48 2019-11-03 23:38:49 t 1 1 150552 623 0.00 2019-11-03 23:41:13 2019-11-03 23:41:14 t 1 1 150555 622 0.00 2019-11-03 23:36:46 2019-11-03 23:42:50 t 1 1 150560 622 0.00 2019-11-03 23:42:50 2019-11-03 23:49:15 t 1 1 150561 562 0.00 2019-11-03 23:49:19 2019-11-03 23:49:46 t 1 1 150562 623 0.00 2019-11-03 23:44:10 2019-11-03 23:55:44 t 1 1 150569 609 0.00 2019-11-03 23:57:35 2019-11-04 00:01:21 t 1 1 150570 623 0.00 2019-11-04 00:01:28 2019-11-04 00:01:31 t 1 1 150573 625 0.00 2019-11-03 23:48:37 2019-11-04 00:04:55 t 1 1 150577 562 0.00 2019-11-04 00:07:42 2019-11-04 00:08:09 t 1 1 150582 623 0.00 2019-11-04 00:11:35 2019-11-04 00:11:38 t 1 1 150585 416 0.00 2019-11-03 22:54:01 2019-11-04 00:13:02 t 1 1 150587 623 0.00 2019-11-04 00:13:39 2019-11-04 00:13:42 t 1 1 150591 623 0.00 2019-11-04 00:16:40 2019-11-04 00:16:43 t 1 1 150592 562 0.00 2019-11-04 00:17:17 2019-11-04 00:17:41 t 1 1 150593 623 0.00 2019-11-04 00:18:40 2019-11-04 00:18:43 t 1 1 150597 609 0.00 2019-11-04 00:15:52 2019-11-04 00:20:29 t 1 1 150598 623 0.00 2019-11-04 00:20:46 2019-11-04 00:20:47 t 1 1 150602 512 0.00 2019-11-03 23:57:54 2019-11-04 00:23:54 t 1 1 150612 623 0.00 2019-11-04 00:35:00 2019-11-04 00:35:01 t 1 1 150615 622 0.00 2019-11-04 00:14:14 2019-11-04 00:36:15 t 1 1 150616 412 0.00 2019-11-03 23:34:37 2019-11-04 00:36:51 t 1 1 150627 512 0.00 2019-11-04 00:36:52 2019-11-04 00:49:51 t 1 1 150630 416 0.00 2019-11-04 00:13:02 2019-11-04 00:52:17 t 1 1 150631 623 0.00 2019-11-04 00:52:22 2019-11-04 00:52:23 t 1 1 150632 622 0.00 2019-11-04 00:36:15 2019-11-04 00:54:01 t 1 1 150638 623 0.00 2019-11-04 01:01:24 2019-11-04 01:01:27 t 1 1 150641 623 0.00 2019-11-04 01:03:18 2019-11-04 01:04:19 t 1 1 150645 623 0.00 2019-11-04 01:09:25 2019-11-04 01:09:28 t 1 1 150651 623 0.00 2019-11-04 01:16:45 2019-11-04 01:16:47 t 1 1 150654 623 0.00 2019-11-04 01:21:29 2019-11-04 01:21:32 t 1 1 150656 623 0.00 2019-11-04 01:23:29 2019-11-04 01:23:32 t 1 1 150657 623 0.00 2019-11-04 01:24:27 2019-11-04 01:24:29 t 1 1 150658 574 0.00 2019-11-04 01:06:18 2019-11-04 01:25:29 t 1 1 150662 503 0.00 2019-11-04 01:21:57 2019-11-04 01:31:09 t 1 1 150664 623 0.00 2019-11-04 01:33:42 2019-11-04 01:33:45 t 1 1 150668 623 0.00 2019-11-04 01:38:47 2019-11-04 01:38:50 t 1 1 150669 623 0.00 2019-11-04 01:39:38 2019-11-04 01:39:39 t 1 1 150676 623 0.00 2019-11-04 01:47:55 2019-11-04 01:47:58 t 1 1 150677 623 0.00 2019-11-04 01:49:46 2019-11-04 01:49:50 t 1 1 150680 623 0.00 2019-11-04 01:55:59 2019-11-04 01:56:02 t 1 1 150687 623 0.00 2019-11-04 02:00:58 2019-11-04 02:02:43 t 1 1 150689 623 0.00 2019-11-04 02:04:56 2019-11-04 02:04:57 t 1 1 150690 587 0.00 2019-11-04 01:46:48 2019-11-04 02:05:18 t 1 1 150694 623 0.00 2019-11-04 02:08:15 2019-11-04 02:08:16 t 1 1 150697 412 0.00 2019-11-04 01:34:00 2019-11-04 02:12:11 t 1 1 150704 623 0.00 2019-11-04 02:23:18 2019-11-04 02:23:21 t 1 1 150707 623 0.00 2019-11-04 02:28:23 2019-11-04 02:28:26 t 1 1 150710 623 0.00 2019-11-04 02:30:34 2019-11-04 02:30:37 t 1 1 150714 499 0.00 2019-11-04 02:35:13 2019-11-04 02:36:52 t 1 1 150715 623 0.00 2019-11-04 02:37:33 2019-11-04 02:37:36 t 1 1 150716 623 0.00 2019-11-04 02:37:58 2019-11-04 02:38:31 t 1 1 150717 562 0.00 2019-11-04 02:39:15 2019-11-04 02:39:29 t 1 1 150719 412 0.00 2019-11-04 02:12:11 2019-11-04 02:43:33 t 1 1 150720 623 0.00 2019-11-04 02:43:36 2019-11-04 02:43:39 t 1 1 150722 623 0.00 2019-11-04 02:47:38 2019-11-04 02:47:41 t 1 1 150727 562 0.00 2019-11-04 02:53:37 2019-11-04 02:54:01 t 1 1 150730 623 0.00 2019-11-04 02:59:47 2019-11-04 02:59:50 t 1 1 150731 488 0.00 2019-11-04 02:42:02 2019-11-04 02:59:58 t 1 1 150734 488 0.00 2019-11-04 02:59:58 2019-11-04 03:02:29 t 1 1 150735 623 0.00 2019-11-04 03:02:50 2019-11-04 03:02:53 t 1 1 150739 623 0.00 2019-11-04 03:04:53 2019-11-04 03:04:54 t 1 1 150740 623 0.00 2019-11-04 03:03:53 2019-11-04 03:05:43 t 1 1 150742 623 0.00 2019-11-04 03:07:50 2019-11-04 03:07:53 t 1 1 150744 623 0.00 2019-11-04 03:09:52 2019-11-04 03:09:55 t 1 1 150750 623 0.00 2019-11-04 03:16:07 2019-11-04 03:16:08 t 1 1 150752 562 0.00 2019-11-04 03:17:47 2019-11-04 03:18:14 t 1 1 150753 623 0.00 2019-11-04 03:19:00 2019-11-04 03:19:03 t 1 1 150767 623 0.00 2019-11-04 03:38:09 2019-11-04 03:38:12 t 1 1 150768 623 0.00 2019-11-04 03:39:19 2019-11-04 03:39:21 t 1 1 150773 562 0.00 2019-11-04 03:44:51 2019-11-04 03:45:00 t 1 1 150776 623 0.00 2019-11-04 03:48:16 2019-11-04 03:48:19 t 1 1 150783 623 0.00 2019-11-04 03:54:25 2019-11-04 03:54:28 t 1 1 150784 623 0.00 2019-11-04 03:57:28 2019-11-04 03:57:31 t 1 1 150786 623 0.00 2019-11-04 04:01:25 2019-11-04 04:01:34 t 1 1 150788 623 0.00 2019-11-04 04:03:30 2019-11-04 04:03:33 t 1 1 150790 623 0.00 2019-11-04 04:07:32 2019-11-04 04:07:35 t 1 1 150792 623 0.00 2019-11-04 04:11:38 2019-11-04 04:11:44 t 1 1 150794 623 0.00 2019-11-04 04:15:41 2019-11-04 04:15:44 t 1 1 150803 623 0.00 2019-11-04 04:30:49 2019-11-04 04:30:52 t 1 1 150804 623 0.00 2019-11-04 04:31:39 2019-11-04 04:31:49 t 1 1 150527 622 0.00 2019-11-03 23:22:23 2019-11-03 23:28:13 t 1 1 150530 220 0.00 2019-11-03 23:28:08 2019-11-03 23:30:03 t 1 1 150535 581 0.00 2019-11-03 22:50:06 2019-11-03 23:33:49 t 1 1 150538 623 0.00 2019-11-03 23:31:07 2019-11-03 23:35:19 t 1 1 150539 220 0.00 2019-11-03 23:34:10 2019-11-03 23:35:22 t 1 1 150540 623 0.00 2019-11-03 23:35:19 2019-11-03 23:36:22 t 1 1 150543 545 0.00 2019-11-03 22:39:37 2019-11-03 23:37:22 t 1 1 150547 220 0.00 2019-11-03 23:38:20 2019-11-03 23:39:21 t 1 1 150549 585 0.00 2019-11-03 23:28:35 2019-11-03 23:39:50 t 1 1 150550 585 0.00 2019-11-03 23:40:31 2019-11-03 23:40:55 t 1 1 150553 623 0.00 2019-11-03 23:41:20 2019-11-03 23:41:21 t 1 1 150554 585 0.00 2019-11-03 23:40:55 2019-11-03 23:42:30 t 1 1 150563 622 0.00 2019-11-03 23:49:15 2019-11-03 23:56:06 t 1 1 150564 623 0.00 2019-11-03 23:56:20 2019-11-03 23:56:48 t 1 1 150565 623 0.00 2019-11-03 23:57:18 2019-11-03 23:57:31 t 1 1 150568 562 0.00 2019-11-04 00:00:19 2019-11-04 00:00:32 t 1 1 150574 622 0.00 2019-11-03 23:56:06 2019-11-04 00:06:17 t 1 1 150575 623 0.00 2019-11-04 00:06:33 2019-11-04 00:06:36 t 1 1 150580 609 0.00 2019-11-04 00:07:20 2019-11-04 00:09:37 t 1 1 150583 609 0.00 2019-11-04 00:09:37 2019-11-04 00:12:07 t 1 1 150588 622 0.00 2019-11-04 00:06:17 2019-11-04 00:14:14 t 1 1 150589 623 0.00 2019-11-04 00:14:16 2019-11-04 00:14:36 t 1 1 150590 609 0.00 2019-11-04 00:12:07 2019-11-04 00:15:52 t 1 1 150596 623 0.00 2019-11-04 00:19:54 2019-11-04 00:20:03 t 1 1 150599 623 0.00 2019-11-04 00:20:53 2019-11-04 00:20:54 t 1 1 150600 609 0.00 2019-11-04 00:20:29 2019-11-04 00:22:16 t 1 1 150603 623 0.00 2019-11-04 00:25:04 2019-11-04 00:25:13 t 1 1 150604 623 0.00 2019-11-04 00:25:26 2019-11-04 00:25:50 t 1 1 150606 623 0.00 2019-11-04 00:27:54 2019-11-04 00:27:57 t 1 1 150607 562 0.00 2019-11-04 00:28:10 2019-11-04 00:28:28 t 1 1 150608 623 0.00 2019-11-04 00:29:54 2019-11-04 00:29:57 t 1 1 150610 623 0.00 2019-11-04 00:30:30 2019-11-04 00:30:52 t 1 1 150611 623 0.00 2019-11-04 00:33:58 2019-11-04 00:34:01 t 1 1 150613 623 0.00 2019-11-04 00:35:07 2019-11-04 00:35:08 t 1 1 150617 512 0.00 2019-11-04 00:25:36 2019-11-04 00:36:52 t 1 1 150620 623 0.00 2019-11-04 00:39:02 2019-11-04 00:39:05 t 1 1 150623 623 0.00 2019-11-04 00:44:09 2019-11-04 00:44:12 t 1 1 150626 623 0.00 2019-11-04 00:49:12 2019-11-04 00:49:15 t 1 1 150628 623 0.00 2019-11-04 00:51:13 2019-11-04 00:51:16 t 1 1 150629 623 0.00 2019-11-04 00:52:15 2019-11-04 00:52:16 t 1 1 150633 623 0.00 2019-11-04 00:54:16 2019-11-04 00:54:19 t 1 1 150636 623 0.00 2019-11-04 00:59:20 2019-11-04 00:59:23 t 1 1 150639 623 0.00 2019-11-04 01:01:39 2019-11-04 01:01:41 t 1 1 150640 623 0.00 2019-11-04 01:02:18 2019-11-04 01:02:21 t 1 1 150642 623 0.00 2019-11-04 01:04:25 2019-11-04 01:04:28 t 1 1 150643 623 0.00 2019-11-04 01:06:21 2019-11-04 01:06:31 t 1 1 150644 623 0.00 2019-11-04 01:07:25 2019-11-04 01:07:28 t 1 1 150646 623 0.00 2019-11-04 01:11:27 2019-11-04 01:11:33 t 1 1 150659 623 0.00 2019-11-04 01:25:32 2019-11-04 01:25:35 t 1 1 150661 623 0.00 2019-11-04 01:29:30 2019-11-04 01:29:33 t 1 1 150663 623 0.00 2019-11-04 01:31:39 2019-11-04 01:31:42 t 1 1 150665 412 0.00 2019-11-04 00:36:51 2019-11-04 01:34:00 t 1 1 150666 623 0.00 2019-11-04 01:34:35 2019-11-04 01:34:36 t 1 1 150670 623 0.00 2019-11-04 01:41:47 2019-11-04 01:41:50 t 1 1 150674 623 0.00 2019-11-04 01:45:52 2019-11-04 01:45:55 t 1 1 150679 623 0.00 2019-11-04 01:51:56 2019-11-04 01:51:59 t 1 1 150683 623 0.00 2019-11-04 01:59:51 2019-11-04 01:59:57 t 1 1 150684 623 0.00 2019-11-04 02:00:28 2019-11-04 02:00:29 t 1 1 150685 623 0.00 2019-11-04 02:00:22 2019-11-04 02:01:43 t 1 1 150686 623 0.00 2019-11-04 02:02:03 2019-11-04 02:02:06 t 1 1 150691 623 0.00 2019-11-04 02:07:04 2019-11-04 02:07:07 t 1 1 150695 587 0.00 2019-11-04 02:07:43 2019-11-04 02:09:52 t 1 1 150698 556 0.00 2019-11-03 23:49:13 2019-11-04 02:12:44 t 1 1 150699 488 0.00 2019-11-04 01:28:43 2019-11-04 02:13:03 t 1 1 150702 623 0.00 2019-11-04 02:18:15 2019-11-04 02:18:18 t 1 1 150703 623 0.00 2019-11-04 02:21:15 2019-11-04 02:21:18 t 1 1 150705 623 0.00 2019-11-04 02:25:11 2019-11-04 02:25:19 t 1 1 150706 623 0.00 2019-11-04 02:26:23 2019-11-04 02:26:26 t 1 1 150708 562 0.00 2019-11-04 02:28:41 2019-11-04 02:28:55 t 1 1 150712 623 0.00 2019-11-04 02:34:27 2019-11-04 02:34:30 t 1 1 150718 623 0.00 2019-11-04 02:41:35 2019-11-04 02:41:38 t 1 1 150721 623 0.00 2019-11-04 02:45:37 2019-11-04 02:45:39 t 1 1 150724 623 0.00 2019-11-04 02:50:34 2019-11-04 02:50:36 t 1 1 150725 623 0.00 2019-11-04 02:51:51 2019-11-04 02:51:53 t 1 1 150729 623 0.00 2019-11-04 02:57:47 2019-11-04 02:57:50 t 1 1 150732 412 0.00 2019-11-04 02:43:33 2019-11-04 03:00:32 t 1 1 150733 623 0.00 2019-11-04 03:00:44 2019-11-04 03:00:47 t 1 1 150736 488 0.00 2019-11-04 03:02:29 2019-11-04 03:03:17 t 1 1 150737 554 0.00 2019-11-04 03:01:31 2019-11-04 03:04:25 t 1 1 150741 623 0.00 2019-11-04 03:05:45 2019-11-04 03:05:49 t 1 1 150745 623 0.00 2019-11-04 03:10:50 2019-11-04 03:10:57 t 1 1 150746 562 0.00 2019-11-04 03:12:10 2019-11-04 03:12:20 t 1 1 150747 623 0.00 2019-11-04 03:12:57 2019-11-04 03:13:00 t 1 1 150754 623 0.00 2019-11-04 03:20:58 2019-11-04 03:21:02 t 1 1 150756 623 0.00 2019-11-04 03:23:04 2019-11-04 03:23:07 t 1 1 150759 623 0.00 2019-11-04 03:28:05 2019-11-04 03:28:07 t 1 1 150762 623 0.00 2019-11-04 03:33:02 2019-11-04 03:33:18 t 1 1 150765 623 0.00 2019-11-04 03:34:52 2019-11-04 03:35:04 t 1 1 150766 623 0.00 2019-11-04 03:36:04 2019-11-04 03:36:07 t 1 1 150769 623 0.00 2019-11-04 03:41:08 2019-11-04 03:41:09 t 1 1 150771 562 0.00 2019-11-04 03:43:00 2019-11-04 03:43:08 t 1 1 150774 623 0.00 2019-11-04 03:45:14 2019-11-04 03:45:17 t 1 1 150775 623 0.00 2019-11-04 03:46:11 2019-11-04 03:46:15 t 1 1 150777 623 0.00 2019-11-04 03:50:19 2019-11-04 03:50:22 t 1 1 150778 623 0.00 2019-11-04 03:51:17 2019-11-04 03:51:18 t 1 1 150779 623 0.00 2019-11-04 03:52:22 2019-11-04 03:52:25 t 1 1 150780 551 0.00 2019-11-03 22:05:18 2019-11-04 03:53:39 t 1 1 150787 623 0.00 2019-11-04 04:01:46 2019-11-04 04:01:48 t 1 1 150789 623 0.00 2019-11-04 04:05:30 2019-11-04 04:05:33 t 1 1 150796 623 0.00 2019-11-04 04:19:42 2019-11-04 04:19:45 t 1 1 150798 623 0.00 2019-11-04 04:23:45 2019-11-04 04:23:48 t 1 1 150799 623 0.00 2019-11-04 04:24:52 2019-11-04 04:24:54 t 1 1 150805 445 0.00 2019-11-04 04:34:03 2019-11-04 04:44:36 t 1 1 150806 562 0.00 2019-11-04 05:07:10 2019-11-04 05:07:15 t 1 1 150807 562 0.00 2019-11-04 05:17:34 2019-11-04 05:17:56 t 1 1 150809 430 0.00 2019-11-04 05:23:09 2019-11-04 05:33:49 t 1 1 150810 562 0.00 2019-11-04 05:39:09 2019-11-04 05:39:35 t 1 1 150781 562 0.00 2019-11-04 03:53:24 2019-11-04 03:53:46 t 1 1 150782 562 0.00 2019-11-04 03:54:07 2019-11-04 03:54:10 t 1 1 150785 623 0.00 2019-11-04 03:59:29 2019-11-04 03:59:32 t 1 1 150791 623 0.00 2019-11-04 04:09:35 2019-11-04 04:09:38 t 1 1 150793 623 0.00 2019-11-04 04:13:41 2019-11-04 04:13:44 t 1 1 150795 623 0.00 2019-11-04 04:17:41 2019-11-04 04:17:54 t 1 1 150797 623 0.00 2019-11-04 04:21:45 2019-11-04 04:21:49 t 1 1 150800 623 0.00 2019-11-04 04:26:45 2019-11-04 04:26:52 t 1 1 150801 562 0.00 2019-11-04 04:27:39 2019-11-04 04:27:49 t 1 1 150802 623 0.00 2019-11-04 04:28:46 2019-11-04 04:28:49 t 1 1 150808 562 0.00 2019-11-04 05:28:20 2019-11-04 05:28:50 t 1 1 150811 562 0.00 2019-11-04 05:44:33 2019-11-04 05:44:41 t 1 1 150812 562 0.00 2019-11-04 05:45:11 2019-11-04 05:45:48 t 1 1 150813 430 0.00 2019-11-04 05:33:49 2019-11-04 05:45:59 t 1 1 150814 430 0.00 2019-11-04 05:45:59 2019-11-04 05:51:39 t 1 1 150815 430 0.00 2019-11-04 05:51:39 2019-11-04 05:53:41 t 1 1 150816 430 0.00 2019-11-04 05:54:07 2019-11-04 05:54:09 t 1 1 150817 498 0.00 2019-11-04 05:30:25 2019-11-04 05:54:33 t 1 2 150818 430 0.00 2019-11-04 05:56:20 2019-11-04 05:56:25 t 1 1 150819 562 0.00 2019-11-04 05:56:12 2019-11-04 05:56:25 t 1 1 150820 430 0.00 2019-11-04 05:56:35 2019-11-04 05:57:47 t 1 1 150821 430 0.00 2019-11-04 05:57:53 2019-11-04 05:57:56 t 1 1 150822 430 0.00 2019-11-04 05:59:54 2019-11-04 06:00:06 t 1 1 150823 520 0.00 2019-11-04 05:56:58 2019-11-04 06:00:54 t 1 1 150824 430 0.00 2019-11-04 06:02:41 2019-11-04 06:02:48 t 1 1 150825 430 0.00 2019-11-04 06:05:10 2019-11-04 06:05:17 t 1 1 150826 430 0.00 2019-11-04 06:03:55 2019-11-04 06:05:43 t 1 1 150827 562 0.00 2019-11-04 06:06:46 2019-11-04 06:07:09 t 1 1 150828 430 0.00 2019-11-04 06:07:40 2019-11-04 06:07:46 t 1 1 150829 430 0.00 2019-11-04 06:08:57 2019-11-04 06:09:04 t 1 1 150830 430 0.00 2019-11-04 06:09:31 2019-11-04 06:09:37 t 1 1 150831 430 0.00 2019-11-04 06:13:15 2019-11-04 06:14:43 t 1 1 150832 430 0.00 2019-11-04 06:14:46 2019-11-04 06:14:52 t 1 1 150833 562 0.00 2019-11-04 06:17:33 2019-11-04 06:17:51 t 1 1 150834 430 0.00 2019-11-04 06:17:51 2019-11-04 06:17:53 t 1 1 150835 445 0.00 2019-11-04 04:44:42 2019-11-04 06:20:35 t 1 1 150836 430 0.00 2019-11-04 06:22:55 2019-11-04 06:22:58 t 1 1 150837 430 0.00 2019-11-04 06:26:15 2019-11-04 06:26:31 t 1 1 150838 430 0.00 2019-11-04 06:28:02 2019-11-04 06:28:15 t 1 1 150839 562 0.00 2019-11-04 06:28:10 2019-11-04 06:28:40 t 1 1 150840 430 0.00 2019-11-04 06:28:45 2019-11-04 06:30:43 t 1 1 150841 520 0.00 2019-11-04 06:25:24 2019-11-04 06:32:51 t 1 1 150842 430 0.00 2019-11-04 06:32:14 2019-11-04 06:33:43 t 1 1 150843 430 0.00 2019-11-04 06:33:56 2019-11-04 06:34:18 t 1 1 150844 430 0.00 2019-11-04 06:35:48 2019-11-04 06:35:52 t 1 1 150845 430 0.00 2019-11-04 06:37:22 2019-11-04 06:37:24 t 1 1 150846 516 0.00 2019-11-04 05:28:44 2019-11-04 06:37:31 t 1 1 150847 562 0.00 2019-11-04 06:37:11 2019-11-04 06:37:36 t 1 1 150848 430 0.00 2019-11-04 06:37:33 2019-11-04 06:38:28 t 1 1 150849 430 0.00 2019-11-04 06:38:28 2019-11-04 06:40:16 t 1 1 150850 520 0.00 2019-11-04 06:40:02 2019-11-04 06:42:32 t 1 1 150851 585 0.00 2019-11-04 06:39:58 2019-11-04 06:43:37 t 1 1 150852 516 0.00 2019-11-04 06:37:31 2019-11-04 06:46:14 t 1 1 150853 585 0.00 2019-11-04 06:43:46 2019-11-04 06:47:33 t 1 1 150854 562 0.00 2019-11-04 06:47:59 2019-11-04 06:48:19 t 1 1 150855 445 0.00 2019-11-04 06:22:35 2019-11-04 06:48:53 t 1 1 150856 625 0.00 2019-11-04 05:37:30 2019-11-04 06:50:39 t 1 1 150857 445 0.00 2019-11-04 06:49:42 2019-11-04 06:50:50 t 1 1 150858 445 0.00 2019-11-04 06:50:55 2019-11-04 06:53:28 t 1 1 150859 627 0.00 2019-11-04 06:44:54 2019-11-04 06:54:00 t 1 1 150860 619 0.00 2019-11-04 06:51:19 2019-11-04 06:55:52 t 1 1 150861 562 0.00 2019-11-04 06:58:46 2019-11-04 06:59:02 t 1 1 150862 585 0.00 2019-11-04 06:47:33 2019-11-04 06:59:16 t 1 1 150863 544 0.00 2019-11-04 00:07:32 2019-11-04 07:02:37 t 1 2 150864 416 0.00 2019-11-04 00:52:23 2019-11-04 07:04:28 t 1 1 150865 551 0.00 2019-11-04 03:53:39 2019-11-04 07:06:15 t 1 1 150866 619 0.00 2019-11-04 07:02:45 2019-11-04 07:07:01 t 1 1 150867 551 0.00 2019-11-04 07:06:18 2019-11-04 07:07:24 t 1 1 150868 545 0.00 2019-11-04 07:06:19 2019-11-04 07:09:41 t 1 1 150869 562 0.00 2019-11-04 07:09:29 2019-11-04 07:09:46 t 1 1 150870 445 0.00 2019-11-04 06:54:26 2019-11-04 07:10:42 t 1 1 150871 556 0.00 2019-11-04 02:12:44 2019-11-04 07:13:03 t 1 1 150872 585 0.00 2019-11-04 07:13:23 2019-11-04 07:15:36 t 1 1 150873 545 0.00 2019-11-04 07:11:02 2019-11-04 07:15:51 t 1 1 150874 562 0.00 2019-11-04 07:16:39 2019-11-04 07:16:57 t 1 1 150875 625 0.00 2019-11-04 06:50:38 2019-11-04 07:17:32 t 1 1 150876 514 0.00 2019-11-04 07:17:16 2019-11-04 07:17:33 t 1 1 150877 625 0.00 2019-11-04 07:17:32 2019-11-04 07:18:52 t 1 1 150878 445 0.00 2019-11-04 07:11:31 2019-11-04 07:19:20 t 1 1 150879 545 0.00 2019-11-04 07:18:20 2019-11-04 07:19:30 t 1 1 150880 585 0.00 2019-11-04 07:18:15 2019-11-04 07:20:33 t 1 1 150881 556 0.00 2019-11-04 07:13:03 2019-11-04 07:21:14 t 1 1 150882 595 0.00 2019-11-04 07:16:13 2019-11-04 07:21:43 t 1 1 150883 585 0.00 2019-11-04 07:20:33 2019-11-04 07:22:35 t 1 1 150884 416 0.00 2019-11-04 07:05:15 2019-11-04 07:25:21 t 1 1 150885 625 0.00 2019-11-04 07:18:52 2019-11-04 07:26:10 t 1 1 150886 570 0.00 2019-11-04 07:17:45 2019-11-04 07:26:25 t 1 1 150887 619 0.00 2019-11-04 07:21:29 2019-11-04 07:26:39 t 1 1 150888 562 0.00 2019-11-04 07:27:22 2019-11-04 07:27:44 t 1 1 150889 585 0.00 2019-11-04 07:22:35 2019-11-04 07:29:18 t 1 1 150890 556 0.00 2019-11-04 07:21:14 2019-11-04 07:31:53 t 1 1 150891 379 0.00 2019-11-03 21:49:14 2019-11-04 07:32:05 t 1 1 150892 585 0.00 2019-11-04 07:29:18 2019-11-04 07:32:42 t 1 1 150893 520 0.00 2019-11-04 07:24:43 2019-11-04 07:33:04 t 1 1 150894 619 0.00 2019-11-04 07:31:06 2019-11-04 07:33:14 t 1 1 150895 570 0.00 2019-11-04 07:26:25 2019-11-04 07:33:49 t 1 1 150896 562 0.00 2019-11-04 07:33:42 2019-11-04 07:34:05 t 1 1 150897 379 0.00 2019-11-04 07:32:42 2019-11-04 07:34:08 t 1 1 150898 379 0.00 2019-11-04 07:34:08 2019-11-04 07:36:04 t 1 1 150899 625 0.00 2019-11-04 07:26:10 2019-11-04 07:39:06 t 1 1 150900 562 0.00 2019-11-04 07:40:27 2019-11-04 07:41:21 t 1 1 150901 445 0.00 2019-11-04 07:19:28 2019-11-04 07:41:50 t 1 1 150902 516 0.00 2019-11-04 07:40:19 2019-11-04 07:46:50 t 1 1 150903 619 0.00 2019-11-04 07:36:26 2019-11-04 07:49:53 t 1 1 150904 430 0.00 2019-11-04 07:48:39 2019-11-04 07:50:06 t 1 1 150905 445 0.00 2019-11-04 07:42:25 2019-11-04 07:50:36 t 1 1 150906 562 0.00 2019-11-04 07:50:18 2019-11-04 07:50:46 t 1 1 150907 625 0.00 2019-11-04 07:44:40 2019-11-04 07:52:33 t 1 1 150908 544 0.00 2019-11-04 07:32:45 2019-11-04 07:53:47 t 1 2 150909 456 0.00 2019-11-04 07:43:06 2019-11-04 07:54:54 t 1 1 150911 456 0.00 2019-11-04 07:54:53 2019-11-04 08:02:03 t 1 1 150913 625 0.00 2019-11-04 07:52:33 2019-11-04 08:03:26 t 1 1 150914 562 0.00 2019-11-04 08:05:17 2019-11-04 08:06:16 t 1 1 150916 562 0.00 2019-11-04 08:10:19 2019-11-04 08:10:37 t 1 1 150917 556 0.00 2019-11-04 07:57:12 2019-11-04 08:12:02 t 1 1 150920 623 0.00 2019-11-04 08:12:21 2019-11-04 08:16:51 t 1 1 150921 623 0.00 2019-11-04 08:16:56 2019-11-04 08:17:09 t 1 1 150923 591 0.00 2019-11-04 08:14:56 2019-11-04 08:17:38 t 1 1 150928 611 0.00 2019-11-04 08:21:02 2019-11-04 08:22:24 t 1 1 150932 516 0.00 2019-11-04 08:15:01 2019-11-04 08:26:52 t 1 1 150934 562 0.00 2019-11-04 08:27:35 2019-11-04 08:28:03 t 1 1 150936 591 0.00 2019-11-04 08:22:00 2019-11-04 08:30:48 t 1 1 150938 528 0.00 2019-11-04 08:30:58 2019-11-04 08:31:45 t 1 1 150939 220 0.00 2019-11-04 07:28:43 2019-11-04 08:32:51 t 1 1 150941 445 0.00 2019-11-04 08:27:11 2019-11-04 08:34:08 t 1 1 150948 220 0.00 2019-11-04 08:35:10 2019-11-04 08:35:49 t 1 1 150949 416 0.00 2019-11-04 08:31:23 2019-11-04 08:36:02 t 1 1 150952 587 0.00 2019-11-04 08:36:24 2019-11-04 08:38:40 t 1 1 150954 591 0.00 2019-11-04 08:30:48 2019-11-04 08:39:05 t 1 1 150957 220 0.00 2019-11-04 08:40:08 2019-11-04 08:40:40 t 1 1 150961 623 0.00 2019-11-04 08:42:49 2019-11-04 08:42:51 t 1 1 150964 220 0.00 2019-11-04 08:44:33 2019-11-04 08:45:08 t 1 1 150978 445 0.00 2019-11-04 08:48:06 2019-11-04 08:52:56 t 1 1 150980 220 0.00 2019-11-04 08:50:14 2019-11-04 08:54:22 t 1 1 150981 623 0.00 2019-11-04 08:54:42 2019-11-04 08:54:52 t 1 1 150982 220 0.00 2019-11-04 08:54:21 2019-11-04 08:54:54 t 1 1 150985 637 0.00 2019-11-04 08:54:32 2019-11-04 08:56:37 t 1 1 150986 562 0.00 2019-11-04 08:56:51 2019-11-04 08:57:06 t 1 1 150992 220 0.00 2019-11-04 08:59:33 2019-11-04 09:00:07 t 1 1 150994 623 0.00 2019-11-04 09:00:31 2019-11-04 09:00:35 t 1 1 150999 623 0.00 2019-11-04 09:05:37 2019-11-04 09:05:40 t 1 1 151003 562 0.00 2019-11-04 09:07:24 2019-11-04 09:07:52 t 1 1 151007 416 0.00 2019-11-04 08:36:40 2019-11-04 09:12:51 t 1 1 151008 623 0.00 2019-11-04 09:13:13 2019-11-04 09:13:17 t 1 1 151020 623 0.00 2019-11-04 09:20:07 2019-11-04 09:20:10 t 1 1 151024 623 0.00 2019-11-04 09:20:19 2019-11-04 09:20:54 t 1 1 151025 220 0.00 2019-11-04 09:20:28 2019-11-04 09:21:03 t 1 1 151026 220 0.00 2019-11-04 09:21:02 2019-11-04 09:21:40 t 1 1 151029 597 0.00 2019-11-04 08:58:57 2019-11-04 09:22:37 t 1 1 151034 591 0.00 2019-11-04 09:18:39 2019-11-04 09:27:24 t 1 1 151035 623 0.00 2019-11-04 09:27:26 2019-11-04 09:27:37 t 1 1 151036 623 0.00 2019-11-04 09:27:50 2019-11-04 09:27:51 t 1 1 151039 516 0.00 2019-11-04 09:26:40 2019-11-04 09:30:06 t 1 1 151040 623 0.00 2019-11-04 09:30:33 2019-11-04 09:30:36 t 1 1 151041 623 0.00 2019-11-04 09:30:48 2019-11-04 09:30:54 t 1 1 151043 445 0.00 2019-11-04 09:30:34 2019-11-04 09:31:53 t 1 1 151049 554 0.00 2019-11-04 09:39:31 2019-11-04 09:39:43 t 1 1 151052 591 0.00 2019-11-04 09:32:01 2019-11-04 09:40:25 t 1 1 151053 578 0.00 2019-11-04 09:23:39 2019-11-04 09:41:09 t 1 1 151055 585 0.00 2019-11-04 09:35:05 2019-11-04 09:44:32 t 1 1 151059 562 0.00 2019-11-04 09:46:12 2019-11-04 09:46:30 t 1 1 151060 597 0.00 2019-11-04 09:37:35 2019-11-04 09:49:21 t 1 1 151062 422 0.00 2019-11-04 09:42:17 2019-11-04 09:50:17 t 1 1 151067 220 0.00 2019-11-04 09:54:39 2019-11-04 09:54:49 t 1 1 151071 220 0.00 2019-11-04 09:55:44 2019-11-04 09:55:58 t 1 1 151073 220 0.00 2019-11-04 09:55:58 2019-11-04 09:56:18 t 1 1 151075 220 0.00 2019-11-04 09:56:18 2019-11-04 09:56:38 t 1 1 151078 220 0.00 2019-11-04 09:56:53 2019-11-04 09:57:11 t 1 1 151082 220 0.00 2019-11-04 09:58:21 2019-11-04 09:58:47 t 1 1 151083 528 0.00 2019-11-04 09:55:44 2019-11-04 09:59:21 t 1 1 151088 528 0.00 2019-11-04 09:59:52 2019-11-04 10:00:07 t 1 1 151096 615 0.00 2019-11-04 09:59:30 2019-11-04 10:04:02 t 1 1 151100 615 0.00 2019-11-04 10:04:35 2019-11-04 10:06:55 t 1 1 151105 528 0.00 2019-11-04 10:07:56 2019-11-04 10:09:48 t 1 1 151109 617 0.00 2019-11-04 10:10:14 2019-11-04 10:12:22 t 1 1 151119 619 0.00 2019-11-04 10:14:11 2019-11-04 10:17:29 t 1 1 151125 623 0.00 2019-11-04 10:16:49 2019-11-04 10:22:15 t 1 1 151127 554 0.00 2019-11-04 10:19:51 2019-11-04 10:22:36 t 1 1 151133 416 0.00 2019-11-04 10:16:48 2019-11-04 10:26:14 t 1 1 151141 619 0.00 2019-11-04 10:21:10 2019-11-04 10:29:11 t 1 1 151144 623 0.00 2019-11-04 10:30:49 2019-11-04 10:31:00 t 1 1 151148 615 0.00 2019-11-04 10:22:56 2019-11-04 10:32:34 t 1 1 151152 220 0.00 2019-11-04 10:32:59 2019-11-04 10:33:49 t 1 1 151154 554 0.00 2019-11-04 10:33:53 2019-11-04 10:34:04 t 1 1 151156 220 0.00 2019-11-04 10:33:48 2019-11-04 10:34:38 t 1 1 151162 625 0.00 2019-11-04 10:17:09 2019-11-04 10:37:26 t 1 1 151166 220 0.00 2019-11-04 10:36:23 2019-11-04 10:40:01 t 1 1 151169 623 0.00 2019-11-04 10:42:10 2019-11-04 10:42:11 t 1 1 151171 562 0.00 2019-11-04 10:42:38 2019-11-04 10:43:01 t 1 1 151177 591 0.00 2019-11-04 10:45:52 2019-11-04 10:47:22 t 1 1 151182 623 0.00 2019-11-04 10:44:54 2019-11-04 10:48:44 t 1 1 151183 623 0.00 2019-11-04 10:48:56 2019-11-04 10:49:01 t 1 1 151187 623 0.00 2019-11-04 10:50:37 2019-11-04 10:50:38 t 1 1 151190 516 0.00 2019-11-04 10:51:05 2019-11-04 10:52:54 t 1 1 151191 554 0.00 2019-11-04 10:34:04 2019-11-04 10:53:01 t 1 1 151194 623 0.00 2019-11-04 10:52:44 2019-11-04 10:53:25 t 1 1 151196 591 0.00 2019-11-04 10:52:15 2019-11-04 10:53:36 t 1 1 151202 416 0.00 2019-11-04 10:43:29 2019-11-04 10:57:23 t 1 1 151213 615 0.00 2019-11-04 11:04:22 2019-11-04 11:06:44 t 1 1 151228 416 0.00 2019-11-04 11:14:18 2019-11-04 11:19:21 t 1 1 151229 615 0.00 2019-11-04 11:14:24 2019-11-04 11:20:04 t 1 1 151234 623 0.00 2019-11-04 11:22:39 2019-11-04 11:22:52 t 1 1 151236 570 0.00 2019-11-04 11:10:40 2019-11-04 11:23:49 t 1 1 151238 623 0.00 2019-11-04 11:24:04 2019-11-04 11:25:15 t 1 1 151244 623 0.00 2019-11-04 11:27:35 2019-11-04 11:27:46 t 1 1 151247 623 0.00 2019-11-04 11:28:42 2019-11-04 11:28:43 t 1 1 151248 623 0.00 2019-11-04 11:28:54 2019-11-04 11:29:00 t 1 1 151250 623 0.00 2019-11-04 11:29:15 2019-11-04 11:29:24 t 1 1 151253 593 0.00 2019-11-04 11:25:50 2019-11-04 11:30:50 t 1 1 151254 514 0.00 2019-11-04 11:30:03 2019-11-04 11:31:08 t 1 1 151256 619 0.00 2019-11-04 11:29:50 2019-11-04 11:33:42 t 1 1 151262 562 0.00 2019-11-04 11:35:34 2019-11-04 11:35:45 t 1 1 151264 623 0.00 2019-11-04 11:36:04 2019-11-04 11:37:04 t 1 1 151266 562 0.00 2019-11-04 11:35:56 2019-11-04 11:37:22 t 1 1 150910 556 0.00 2019-11-04 07:31:53 2019-11-04 07:57:12 t 1 1 150918 544 0.00 2019-11-04 08:07:23 2019-11-04 08:14:39 t 1 2 150924 623 0.00 2019-11-04 08:18:37 2019-11-04 08:18:45 t 1 1 150927 562 0.00 2019-11-04 08:20:43 2019-11-04 08:21:11 t 1 1 150933 445 0.00 2019-11-04 07:50:43 2019-11-04 08:26:58 t 1 1 150935 623 0.00 2019-11-04 08:29:57 2019-11-04 08:29:59 t 1 1 150944 623 0.00 2019-11-04 08:35:00 2019-11-04 08:35:09 t 1 1 150946 570 0.00 2019-11-04 08:24:41 2019-11-04 08:35:19 t 1 1 150951 625 0.00 2019-11-04 08:18:08 2019-11-04 08:38:21 t 1 1 150955 220 0.00 2019-11-04 08:36:49 2019-11-04 08:40:08 t 1 1 150958 544 0.00 2019-11-04 08:35:59 2019-11-04 08:41:08 t 1 2 150962 570 0.00 2019-11-04 08:35:20 2019-11-04 08:43:31 t 1 1 150965 623 0.00 2019-11-04 08:45:16 2019-11-04 08:45:19 t 1 1 150969 570 0.00 2019-11-04 08:43:31 2019-11-04 08:47:50 t 1 1 150970 623 0.00 2019-11-04 08:48:31 2019-11-04 08:48:44 t 1 1 150971 623 0.00 2019-11-04 08:48:55 2019-11-04 08:49:05 t 1 1 150973 562 0.00 2019-11-04 08:49:06 2019-11-04 08:49:26 t 1 1 150975 220 0.00 2019-11-04 08:49:35 2019-11-04 08:50:14 t 1 1 150984 481 0.00 2019-11-04 08:44:15 2019-11-04 08:55:39 t 1 1 150987 220 0.00 2019-11-04 08:54:54 2019-11-04 08:57:46 t 1 1 150988 220 0.00 2019-11-04 08:57:46 2019-11-04 08:58:20 t 1 1 150990 220 0.00 2019-11-04 08:58:20 2019-11-04 08:58:58 t 1 1 150993 591 0.00 2019-11-04 08:54:52 2019-11-04 09:00:32 t 1 1 150995 220 0.00 2019-11-04 09:00:07 2019-11-04 09:00:42 t 1 1 150997 623 0.00 2019-11-04 09:01:39 2019-11-04 09:02:40 t 1 1 150998 623 0.00 2019-11-04 09:03:45 2019-11-04 09:03:52 t 1 1 151000 615 0.00 2019-11-04 08:59:39 2019-11-04 09:06:38 t 1 1 151002 635 0.00 2019-11-04 09:04:26 2019-11-04 09:07:44 t 1 1 151011 445 0.00 2019-11-04 08:58:34 2019-11-04 09:14:16 t 1 1 151012 570 0.00 2019-11-04 08:47:48 2019-11-04 09:15:13 t 1 1 151016 220 0.00 2019-11-04 09:01:18 2019-11-04 09:19:11 t 1 1 151017 585 0.00 2019-11-04 09:10:44 2019-11-04 09:19:43 t 1 1 151021 637 0.00 2019-11-04 08:56:37 2019-11-04 09:20:25 t 1 1 151023 623 0.00 2019-11-04 09:19:29 2019-11-04 09:20:43 t 1 1 151027 623 0.00 2019-11-04 09:21:09 2019-11-04 09:22:09 t 1 1 151030 220 0.00 2019-11-04 09:21:39 2019-11-04 09:22:52 t 1 1 151033 623 0.00 2019-11-04 09:22:23 2019-11-04 09:25:34 t 1 1 151037 562 0.00 2019-11-04 09:27:44 2019-11-04 09:28:03 t 1 1 151038 623 0.00 2019-11-04 09:28:04 2019-11-04 09:28:59 t 1 1 151042 585 0.00 2019-11-04 09:27:34 2019-11-04 09:31:32 t 1 1 151044 623 0.00 2019-11-04 09:33:11 2019-11-04 09:33:31 t 1 1 151045 528 0.00 2019-11-04 09:30:37 2019-11-04 09:34:48 t 1 1 151046 623 0.00 2019-11-04 09:33:38 2019-11-04 09:37:05 t 1 1 151050 554 0.00 2019-11-04 09:39:42 2019-11-04 09:39:54 t 1 1 151051 619 0.00 2019-11-04 09:12:08 2019-11-04 09:40:09 t 1 1 151054 623 0.00 2019-11-04 09:37:05 2019-11-04 09:41:12 t 1 1 151057 625 0.00 2019-11-04 09:29:35 2019-11-04 09:44:49 t 1 1 151058 623 0.00 2019-11-04 09:41:12 2019-11-04 09:45:35 t 1 1 151063 578 0.00 2019-11-04 09:41:09 2019-11-04 09:50:38 t 1 1 151064 562 0.00 2019-11-04 09:49:53 2019-11-04 09:51:15 t 1 1 151065 597 0.00 2019-11-04 09:49:20 2019-11-04 09:52:29 t 1 1 151070 623 0.00 2019-11-04 09:50:17 2019-11-04 09:55:53 t 1 1 151076 220 0.00 2019-11-04 09:56:38 2019-11-04 09:56:53 t 1 1 151079 220 0.00 2019-11-04 09:57:11 2019-11-04 09:57:46 t 1 1 151080 220 0.00 2019-11-04 09:57:46 2019-11-04 09:58:04 t 1 1 151084 220 0.00 2019-11-04 09:58:47 2019-11-04 09:59:22 t 1 1 151086 623 0.00 2019-11-04 09:55:53 2019-11-04 09:59:40 t 1 1 151087 623 0.00 2019-11-04 09:59:54 2019-11-04 10:00:06 t 1 1 151089 220 0.00 2019-11-04 09:59:54 2019-11-04 10:00:16 t 1 1 151091 498 0.00 2019-11-04 07:29:23 2019-11-04 10:00:54 t 1 2 151092 220 0.00 2019-11-04 10:00:16 2019-11-04 10:01:00 t 1 1 151094 623 0.00 2019-11-04 10:01:04 2019-11-04 10:02:58 t 1 1 151097 220 0.00 2019-11-04 10:01:00 2019-11-04 10:04:22 t 1 1 151101 589 0.00 2019-11-04 09:52:45 2019-11-04 10:07:53 t 1 1 151102 623 0.00 2019-11-04 10:05:55 2019-11-04 10:08:23 t 1 1 151104 623 0.00 2019-11-04 10:09:23 2019-11-04 10:09:31 t 1 1 151106 220 0.00 2019-11-04 10:08:38 2019-11-04 10:10:07 t 1 1 151111 220 0.00 2019-11-04 10:02:30 2019-11-04 10:13:27 t 1 2 151112 562 0.00 2019-11-04 10:13:43 2019-11-04 10:14:01 t 1 1 151113 220 0.00 2019-11-04 10:13:04 2019-11-04 10:14:18 t 1 1 151115 625 0.00 2019-11-04 10:12:59 2019-11-04 10:14:44 t 1 1 151116 416 0.00 2019-11-04 10:14:39 2019-11-04 10:15:44 t 1 1 151121 554 0.00 2019-11-04 09:39:54 2019-11-04 10:19:51 t 1 1 151123 220 0.00 2019-11-04 10:17:11 2019-11-04 10:21:07 t 1 1 151124 617 0.00 2019-11-04 10:20:43 2019-11-04 10:22:13 t 1 1 151126 623 0.00 2019-11-04 10:22:22 2019-11-04 10:22:24 t 1 1 151128 554 0.00 2019-11-04 10:22:36 2019-11-04 10:22:45 t 1 1 151129 623 0.00 2019-11-04 10:22:36 2019-11-04 10:23:03 t 1 1 151131 220 0.00 2019-11-04 10:23:28 2019-11-04 10:24:33 t 1 1 151132 562 0.00 2019-11-04 10:24:25 2019-11-04 10:24:47 t 1 1 151134 568 0.00 2019-11-04 10:22:27 2019-11-04 10:26:49 t 1 1 151137 516 0.00 2019-11-04 10:24:37 2019-11-04 10:27:53 t 1 1 151138 220 0.00 2019-11-04 10:24:33 2019-11-04 10:28:15 t 1 1 151142 516 0.00 2019-11-04 10:28:43 2019-11-04 10:29:30 t 1 1 151145 623 0.00 2019-11-04 10:31:14 2019-11-04 10:31:29 t 1 1 151147 516 0.00 2019-11-04 10:29:29 2019-11-04 10:32:26 t 1 1 151149 623 0.00 2019-11-04 10:32:06 2019-11-04 10:32:52 t 1 1 151150 220 0.00 2019-11-04 10:32:22 2019-11-04 10:32:59 t 1 1 151153 554 0.00 2019-11-04 10:22:44 2019-11-04 10:33:53 t 1 1 151157 220 0.00 2019-11-04 10:34:38 2019-11-04 10:35:51 t 1 1 151159 562 0.00 2019-11-04 10:34:57 2019-11-04 10:36:17 t 1 1 151161 416 0.00 2019-11-04 10:26:19 2019-11-04 10:36:37 t 1 1 151170 591 0.00 2019-11-04 10:37:46 2019-11-04 10:42:39 t 1 1 151175 538 0.00 2019-11-04 10:46:41 2019-11-04 10:46:47 t 1 1 151179 597 0.00 2019-11-04 10:42:57 2019-11-04 10:47:37 t 1 1 151181 220 0.00 2019-11-04 10:47:39 2019-11-04 10:48:23 t 1 1 151184 220 0.00 2019-11-04 10:48:22 2019-11-04 10:49:07 t 1 1 151186 570 0.00 2019-11-04 10:32:02 2019-11-04 10:49:55 t 1 1 151192 220 0.00 2019-11-04 10:49:48 2019-11-04 10:53:13 t 1 1 151195 554 0.00 2019-11-04 10:53:17 2019-11-04 10:53:27 t 1 1 151198 623 0.00 2019-11-04 10:54:41 2019-11-04 10:55:41 t 1 1 151201 623 0.00 2019-11-04 10:57:12 2019-11-04 10:57:20 t 1 1 151204 623 0.00 2019-11-04 10:57:44 2019-11-04 10:57:44 f 1 1 151206 623 0.00 2019-11-04 10:56:46 2019-11-04 10:58:43 t 1 1 151208 481 0.00 2019-11-04 10:10:34 2019-11-04 11:02:22 t 1 1 151210 562 0.00 2019-11-04 11:02:45 2019-11-04 11:03:10 t 1 1 151212 562 0.00 2019-11-04 11:05:06 2019-11-04 11:05:39 t 1 1 150912 562 0.00 2019-11-04 08:01:10 2019-11-04 08:02:19 t 1 1 150915 581 0.00 2019-11-04 07:59:28 2019-11-04 08:07:28 t 1 1 150919 591 0.00 2019-11-04 07:53:24 2019-11-04 08:14:56 t 1 1 150922 611 0.00 2019-11-04 08:06:44 2019-11-04 08:17:27 t 1 1 150925 597 0.00 2019-11-04 08:10:15 2019-11-04 08:19:11 t 1 1 150926 611 0.00 2019-11-04 08:17:30 2019-11-04 08:21:02 t 1 1 150929 562 0.00 2019-11-04 08:21:59 2019-11-04 08:22:40 t 1 1 150930 623 0.00 2019-11-04 08:23:48 2019-11-04 08:23:52 t 1 1 150931 623 0.00 2019-11-04 08:24:50 2019-11-04 08:24:59 t 1 1 150937 416 0.00 2019-11-04 07:25:27 2019-11-04 08:31:01 t 1 1 150940 220 0.00 2019-11-04 08:32:51 2019-11-04 08:33:43 t 1 1 150942 619 0.00 2019-11-04 08:18:28 2019-11-04 08:34:16 t 1 1 150943 445 0.00 2019-11-04 08:34:22 2019-11-04 08:35:04 t 1 1 150945 220 0.00 2019-11-04 08:33:43 2019-11-04 08:35:11 t 1 1 150947 587 0.00 2019-11-04 08:33:13 2019-11-04 08:35:28 t 1 1 150950 220 0.00 2019-11-04 08:35:49 2019-11-04 08:36:50 t 1 1 150953 562 0.00 2019-11-04 08:38:20 2019-11-04 08:38:42 t 1 1 150956 623 0.00 2019-11-04 08:40:12 2019-11-04 08:40:15 t 1 1 150959 220 0.00 2019-11-04 08:40:40 2019-11-04 08:41:51 t 1 1 150960 220 0.00 2019-11-04 08:41:50 2019-11-04 08:42:35 t 1 1 150963 220 0.00 2019-11-04 08:42:35 2019-11-04 08:44:33 t 1 1 150966 445 0.00 2019-11-04 08:35:03 2019-11-04 08:46:54 t 1 1 150967 597 0.00 2019-11-04 08:44:57 2019-11-04 08:47:25 t 1 1 150968 220 0.00 2019-11-04 08:45:08 2019-11-04 08:47:49 t 1 1 150972 591 0.00 2019-11-04 08:47:03 2019-11-04 08:49:12 t 1 1 150974 220 0.00 2019-11-04 08:47:49 2019-11-04 08:49:35 t 1 1 150976 623 0.00 2019-11-04 08:50:21 2019-11-04 08:50:24 t 1 1 150977 619 0.00 2019-11-04 08:48:32 2019-11-04 08:52:20 t 1 1 150979 623 0.00 2019-11-04 08:53:57 2019-11-04 08:54:07 t 1 1 150983 623 0.00 2019-11-04 08:55:25 2019-11-04 08:55:26 t 1 1 150989 445 0.00 2019-11-04 08:52:55 2019-11-04 08:58:34 t 1 1 150991 220 0.00 2019-11-04 08:58:58 2019-11-04 08:59:33 t 1 1 150996 220 0.00 2019-11-04 09:00:41 2019-11-04 09:01:14 t 1 1 151001 623 0.00 2019-11-04 09:07:13 2019-11-04 09:07:38 t 1 1 151004 562 0.00 2019-11-04 09:08:46 2019-11-04 09:09:36 t 1 1 151005 623 0.00 2019-11-04 09:10:42 2019-11-04 09:10:45 t 1 1 151006 619 0.00 2019-11-04 09:03:55 2019-11-04 09:12:08 t 1 1 151009 591 0.00 2019-11-04 09:09:57 2019-11-04 09:13:30 t 1 1 151010 615 0.00 2019-11-04 09:06:38 2019-11-04 09:14:06 t 1 1 151013 623 0.00 2019-11-04 09:15:35 2019-11-04 09:15:39 t 1 1 151014 623 0.00 2019-11-04 09:15:47 2019-11-04 09:15:48 t 1 1 151015 562 0.00 2019-11-04 09:18:17 2019-11-04 09:18:35 t 1 1 151018 625 0.00 2019-11-04 08:39:21 2019-11-04 09:19:44 t 1 1 151019 562 0.00 2019-11-04 09:19:36 2019-11-04 09:20:07 t 1 1 151022 220 0.00 2019-11-04 09:19:11 2019-11-04 09:20:28 t 1 1 151028 623 0.00 2019-11-04 09:22:10 2019-11-04 09:22:14 t 1 1 151031 625 0.00 2019-11-04 09:19:43 2019-11-04 09:23:25 t 1 1 151032 554 0.00 2019-11-04 08:08:48 2019-11-04 09:24:49 t 1 1 151047 562 0.00 2019-11-04 09:38:27 2019-11-04 09:38:45 t 1 1 151048 554 0.00 2019-11-04 09:25:18 2019-11-04 09:39:31 t 1 1 151056 544 0.00 2019-11-04 07:38:48 2019-11-04 09:44:34 t 1 2 151061 623 0.00 2019-11-04 09:45:35 2019-11-04 09:50:17 t 1 1 151066 220 0.00 2019-11-04 09:22:52 2019-11-04 09:54:39 t 1 1 151068 220 0.00 2019-11-04 09:54:49 2019-11-04 09:55:24 t 1 1 151069 220 0.00 2019-11-04 09:55:24 2019-11-04 09:55:45 t 1 1 151072 570 0.00 2019-11-04 09:15:46 2019-11-04 09:56:10 t 1 1 151074 562 0.00 2019-11-04 09:51:39 2019-11-04 09:56:19 t 1 1 151077 422 0.00 2019-11-04 09:50:17 2019-11-04 09:56:57 t 1 1 151081 220 0.00 2019-11-04 09:58:04 2019-11-04 09:58:21 t 1 1 151085 220 0.00 2019-11-04 09:59:21 2019-11-04 09:59:31 t 1 1 151090 623 0.00 2019-11-04 10:00:21 2019-11-04 10:00:29 t 1 1 151093 585 0.00 2019-11-04 09:59:10 2019-11-04 10:01:25 t 1 1 151095 562 0.00 2019-11-04 10:02:59 2019-11-04 10:03:18 t 1 1 151098 220 0.00 2019-11-04 10:04:22 2019-11-04 10:05:17 t 1 1 151099 591 0.00 2019-11-04 09:40:25 2019-11-04 10:06:49 t 1 1 151103 220 0.00 2019-11-04 10:05:17 2019-11-04 10:08:39 t 1 1 151107 481 0.00 2019-11-04 08:55:39 2019-11-04 10:10:34 t 1 1 151108 625 0.00 2019-11-04 09:43:53 2019-11-04 10:11:44 t 1 1 151110 220 0.00 2019-11-04 10:10:07 2019-11-04 10:13:05 t 1 1 151114 416 0.00 2019-11-04 09:13:46 2019-11-04 10:14:39 t 1 1 151117 591 0.00 2019-11-04 10:06:49 2019-11-04 10:16:00 t 1 1 151118 220 0.00 2019-11-04 10:14:18 2019-11-04 10:17:11 t 1 1 151120 597 0.00 2019-11-04 10:09:59 2019-11-04 10:17:43 t 1 1 151122 617 0.00 2019-11-04 10:20:35 2019-11-04 10:20:38 t 1 1 151130 220 0.00 2019-11-04 10:21:07 2019-11-04 10:23:29 t 1 1 151135 623 0.00 2019-11-04 10:26:55 2019-11-04 10:26:56 t 1 1 151136 623 0.00 2019-11-04 10:27:39 2019-11-04 10:27:49 t 1 1 151139 623 0.00 2019-11-04 10:28:26 2019-11-04 10:28:38 t 1 1 151140 220 0.00 2019-11-04 10:28:14 2019-11-04 10:28:51 t 1 1 151143 622 0.00 2019-11-04 10:20:00 2019-11-04 10:30:59 t 1 1 151146 220 0.00 2019-11-04 10:28:51 2019-11-04 10:32:23 t 1 1 151151 623 0.00 2019-11-04 10:33:32 2019-11-04 10:33:34 t 1 1 151155 623 0.00 2019-11-04 10:34:03 2019-11-04 10:34:25 t 1 1 151158 615 0.00 2019-11-04 10:32:34 2019-11-04 10:36:02 t 1 1 151160 220 0.00 2019-11-04 10:35:51 2019-11-04 10:36:23 t 1 1 151163 623 0.00 2019-11-04 10:36:44 2019-11-04 10:37:35 t 1 1 151164 623 0.00 2019-11-04 10:37:40 2019-11-04 10:37:51 t 1 1 151165 623 0.00 2019-11-04 10:38:18 2019-11-04 10:38:19 t 1 1 151167 622 0.00 2019-11-04 10:30:59 2019-11-04 10:40:30 t 1 1 151168 220 0.00 2019-11-04 10:40:01 2019-11-04 10:40:39 t 1 1 151172 416 0.00 2019-11-04 10:36:47 2019-11-04 10:43:25 t 1 1 151173 220 0.00 2019-11-04 10:40:39 2019-11-04 10:43:33 t 1 1 151174 220 0.00 2019-11-04 10:43:32 2019-11-04 10:44:34 t 1 1 151176 585 0.00 2019-11-04 10:24:46 2019-11-04 10:46:52 t 1 1 151178 615 0.00 2019-11-04 10:42:41 2019-11-04 10:47:35 t 1 1 151180 220 0.00 2019-11-04 10:44:33 2019-11-04 10:47:40 t 1 1 151185 220 0.00 2019-11-04 10:49:07 2019-11-04 10:49:49 t 1 1 151188 623 0.00 2019-11-04 10:50:59 2019-11-04 10:51:38 t 1 1 151189 544 0.00 2019-11-04 10:47:59 2019-11-04 10:52:35 t 1 2 151193 554 0.00 2019-11-04 10:53:01 2019-11-04 10:53:17 t 1 1 151197 562 0.00 2019-11-04 10:53:18 2019-11-04 10:53:44 t 1 1 151199 623 0.00 2019-11-04 10:55:37 2019-11-04 10:56:24 t 1 1 151200 623 0.00 2019-11-04 10:56:32 2019-11-04 10:56:33 t 1 1 151203 220 0.00 2019-11-04 10:54:23 2019-11-04 10:57:25 t 1 1 151205 623 0.00 2019-11-04 10:57:32 2019-11-04 10:58:43 t 1 1 151207 625 0.00 2019-11-04 10:41:44 2019-11-04 11:00:55 t 1 1 151209 516 0.00 2019-11-04 10:59:30 2019-11-04 11:02:42 t 1 1 151211 562 0.00 2019-11-04 11:04:39 2019-11-04 11:04:52 t 1 1 151215 597 0.00 2019-11-04 11:06:24 2019-11-04 11:08:34 t 1 1 151216 589 0.00 2019-11-04 10:08:55 2019-11-04 11:10:10 t 1 1 151217 562 0.00 2019-11-04 11:08:45 2019-11-04 11:11:11 t 1 1 151219 220 0.00 2019-11-04 10:53:13 2019-11-04 11:11:51 t 1 1 151221 416 0.00 2019-11-04 10:56:28 2019-11-04 11:13:59 t 1 1 151224 556 0.00 2019-11-04 08:12:02 2019-11-04 11:16:13 t 1 1 151225 625 0.00 2019-11-04 11:00:55 2019-11-04 11:17:23 t 1 1 151226 481 0.00 2019-11-04 11:02:22 2019-11-04 11:18:04 t 1 1 151230 564 0.00 2019-11-04 09:18:21 2019-11-04 11:20:22 t 1 1 151233 416 0.00 2019-11-04 11:18:34 2019-11-04 11:22:50 t 1 1 151235 623 0.00 2019-11-04 11:22:51 2019-11-04 11:22:57 t 1 1 151237 562 0.00 2019-11-04 11:16:49 2019-11-04 11:24:14 t 1 1 151240 593 0.00 2019-11-04 11:12:20 2019-11-04 11:25:50 t 1 1 151242 562 0.00 2019-11-04 11:24:55 2019-11-04 11:26:55 t 1 1 151243 623 0.00 2019-11-04 11:26:21 2019-11-04 11:27:43 t 1 1 151245 585 0.00 2019-11-04 11:25:10 2019-11-04 11:27:51 t 1 1 151246 623 0.00 2019-11-04 11:27:59 2019-11-04 11:28:37 t 1 1 151249 562 0.00 2019-11-04 11:27:46 2019-11-04 11:29:10 t 1 1 151259 220 0.00 2019-11-04 10:57:29 2019-11-04 11:34:48 t 1 1 151263 623 0.00 2019-11-04 11:35:31 2019-11-04 11:35:52 t 1 1 151265 591 0.00 2019-11-04 11:04:08 2019-11-04 11:37:07 t 1 1 151267 538 0.00 2019-11-04 10:46:50 2019-11-04 11:37:40 t 1 1 151270 623 0.00 2019-11-04 11:40:50 2019-11-04 11:40:51 t 1 1 151271 581 0.00 2019-11-04 11:38:33 2019-11-04 11:41:11 t 1 1 151275 597 0.00 2019-11-04 11:39:28 2019-11-04 11:44:27 t 1 1 151281 623 0.00 2019-11-04 11:51:08 2019-11-04 11:52:43 t 1 1 151284 562 0.00 2019-11-04 11:49:36 2019-11-04 11:53:27 t 1 1 151291 623 0.00 2019-11-04 11:56:05 2019-11-04 11:57:12 t 1 1 151295 623 0.00 2019-11-04 11:59:22 2019-11-04 11:59:23 t 1 1 151298 623 0.00 2019-11-04 12:01:44 2019-11-04 12:01:55 t 1 1 151304 623 0.00 2019-11-04 12:05:35 2019-11-04 12:06:54 t 1 1 151309 595 0.00 2019-11-04 12:11:39 2019-11-04 12:15:37 t 1 1 151310 562 0.00 2019-11-04 12:15:55 2019-11-04 12:16:07 t 1 1 151313 623 0.00 2019-11-04 12:19:47 2019-11-04 12:21:43 t 1 1 151318 623 0.00 2019-11-04 12:30:26 2019-11-04 12:30:41 t 1 1 151322 593 0.00 2019-11-04 11:30:50 2019-11-04 12:32:33 t 1 1 151325 623 0.00 2019-11-04 12:33:05 2019-11-04 12:34:43 t 1 1 151327 623 0.00 2019-11-04 12:36:48 2019-11-04 12:36:49 t 1 1 151329 581 0.00 2019-11-04 12:29:45 2019-11-04 12:41:29 t 1 1 151336 562 0.00 2019-11-04 12:46:42 2019-11-04 12:46:56 t 1 1 151339 623 0.00 2019-11-04 12:47:00 2019-11-04 12:48:43 t 1 1 151340 516 0.00 2019-11-04 12:44:33 2019-11-04 12:49:03 t 1 1 151344 416 0.00 2019-11-04 12:42:29 2019-11-04 12:50:53 t 1 1 151345 623 0.00 2019-11-04 12:52:02 2019-11-04 12:53:43 t 1 1 151347 623 0.00 2019-11-04 12:56:22 2019-11-04 12:56:22 t 1 1 151350 623 0.00 2019-11-04 12:57:05 2019-11-04 12:57:09 t 1 1 151360 456 0.00 2019-11-04 12:44:52 2019-11-04 13:03:30 t 1 1 151363 585 0.00 2019-11-04 12:46:59 2019-11-04 13:04:35 t 1 1 151367 220 0.00 2019-11-04 12:47:31 2019-11-04 13:06:54 t 1 2 151369 585 0.00 2019-11-04 13:05:52 2019-11-04 13:07:21 t 1 1 151370 627 0.00 2019-11-04 13:07:40 2019-11-04 13:08:01 t 1 1 151371 623 0.00 2019-11-04 13:05:20 2019-11-04 13:08:55 t 1 1 151374 627 0.00 2019-11-04 13:09:46 2019-11-04 13:10:06 t 1 1 151378 627 0.00 2019-11-04 13:11:12 2019-11-04 13:12:09 t 1 1 151384 623 0.00 2019-11-04 13:13:22 2019-11-04 13:13:28 t 1 1 151386 627 0.00 2019-11-04 13:13:53 2019-11-04 13:14:11 t 1 1 151387 623 0.00 2019-11-04 13:14:29 2019-11-04 13:14:36 t 1 1 151390 623 0.00 2019-11-04 13:15:15 2019-11-04 13:15:25 t 1 1 151393 627 0.00 2019-11-04 13:13:32 2019-11-04 13:15:43 t 1 1 151394 516 0.00 2019-11-04 13:04:56 2019-11-04 13:16:07 t 1 1 151398 562 0.00 2019-11-04 13:19:46 2019-11-04 13:19:56 t 1 1 151405 631 0.00 2019-11-04 13:22:58 2019-11-04 13:24:32 t 1 1 151409 623 0.00 2019-11-04 13:24:31 2019-11-04 13:26:43 t 1 1 151412 578 0.00 2019-11-04 11:53:16 2019-11-04 13:34:47 t 1 1 151413 451 0.00 2019-11-04 13:30:18 2019-11-04 13:36:51 t 1 1 151417 623 0.00 2019-11-04 13:39:48 2019-11-04 13:42:33 t 1 1 151419 220 0.00 2019-11-04 12:37:52 2019-11-04 13:43:17 t 1 1 151421 456 0.00 2019-11-04 13:39:26 2019-11-04 13:44:13 t 1 1 151422 627 0.00 2019-11-04 13:40:27 2019-11-04 13:45:23 t 1 1 151441 623 0.00 2019-11-04 13:58:01 2019-11-04 13:59:43 t 1 1 151446 623 0.00 2019-11-04 14:01:01 2019-11-04 14:01:44 t 1 1 151452 623 0.00 2019-11-04 14:03:44 2019-11-04 14:03:50 t 1 1 151454 623 0.00 2019-11-04 14:04:26 2019-11-04 14:04:39 t 1 1 151458 623 0.00 2019-11-04 14:05:38 2019-11-04 14:05:54 t 1 1 151459 456 0.00 2019-11-04 13:44:24 2019-11-04 14:06:14 t 1 1 151461 412 0.00 2019-11-04 03:00:32 2019-11-04 14:06:38 t 1 1 151466 623 0.00 2019-11-04 14:07:43 2019-11-04 14:08:05 t 1 1 151470 623 0.00 2019-11-04 14:09:14 2019-11-04 14:09:30 t 1 1 151472 623 0.00 2019-11-04 14:09:43 2019-11-04 14:10:06 t 1 1 151474 623 0.00 2019-11-04 14:10:13 2019-11-04 14:10:26 t 1 1 151475 545 0.00 2019-11-04 13:49:38 2019-11-04 14:10:37 t 1 1 151482 581 0.00 2019-11-04 14:02:23 2019-11-04 14:12:47 t 1 1 151486 623 0.00 2019-11-04 14:14:11 2019-11-04 14:14:18 t 1 1 151491 623 0.00 2019-11-04 14:15:17 2019-11-04 14:15:33 t 1 1 151493 623 0.00 2019-11-04 14:15:38 2019-11-04 14:15:54 t 1 1 151495 562 0.00 2019-11-04 14:16:17 2019-11-04 14:16:54 t 1 1 151500 623 0.00 2019-11-04 14:18:19 2019-11-04 14:18:35 t 1 1 151501 623 0.00 2019-11-04 14:18:48 2019-11-04 14:19:01 t 1 1 151503 623 0.00 2019-11-04 14:19:52 2019-11-04 14:20:04 t 1 1 151510 623 0.00 2019-11-04 14:22:02 2019-11-04 14:22:39 t 1 1 151511 623 0.00 2019-11-04 14:22:50 2019-11-04 14:23:07 t 1 1 151514 623 0.00 2019-11-04 14:23:49 2019-11-04 14:23:50 t 1 1 151515 623 0.00 2019-11-04 14:24:03 2019-11-04 14:24:10 t 1 1 151517 623 0.00 2019-11-04 14:24:47 2019-11-04 14:25:29 t 1 1 151518 623 0.00 2019-11-04 14:25:47 2019-11-04 14:26:03 t 1 1 151521 623 0.00 2019-11-04 14:26:30 2019-11-04 14:26:46 t 1 1 151525 562 0.00 2019-11-04 14:27:22 2019-11-04 14:27:36 t 1 1 151526 623 0.00 2019-11-04 14:27:44 2019-11-04 14:28:00 t 1 1 151528 623 0.00 2019-11-04 14:28:05 2019-11-04 14:28:53 t 1 1 151529 623 0.00 2019-11-04 14:28:58 2019-11-04 14:29:04 t 1 1 151531 623 0.00 2019-11-04 14:29:55 2019-11-04 14:30:03 t 1 1 151540 623 0.00 2019-11-04 14:32:49 2019-11-04 14:33:15 t 1 1 151545 528 0.00 2019-11-04 14:34:39 2019-11-04 14:35:17 t 1 1 151547 623 0.00 2019-11-04 14:35:24 2019-11-04 14:35:37 t 1 1 151552 528 0.00 2019-11-04 14:36:34 2019-11-04 14:36:52 t 1 1 151556 528 0.00 2019-11-04 14:37:18 2019-11-04 14:37:58 t 1 1 151214 562 0.00 2019-11-04 11:06:35 2019-11-04 11:07:49 t 1 1 151218 570 0.00 2019-11-04 11:02:59 2019-11-04 11:11:35 t 1 1 151220 554 0.00 2019-11-04 10:53:27 2019-11-04 11:13:32 t 1 1 151222 619 0.00 2019-11-04 11:08:41 2019-11-04 11:14:04 t 1 1 151223 528 0.00 2019-11-04 11:11:36 2019-11-04 11:14:48 t 1 1 151227 625 0.00 2019-11-04 11:17:28 2019-11-04 11:19:02 t 1 1 151231 512 0.00 2019-11-04 09:48:27 2019-11-04 11:21:43 t 1 1 151232 623 0.00 2019-11-04 11:20:55 2019-11-04 11:22:34 t 1 1 151239 623 0.00 2019-11-04 11:25:31 2019-11-04 11:25:40 t 1 1 151241 623 0.00 2019-11-04 11:25:47 2019-11-04 11:26:10 t 1 1 151251 623 0.00 2019-11-04 11:29:46 2019-11-04 11:29:47 t 1 1 151252 623 0.00 2019-11-04 11:30:37 2019-11-04 11:30:46 t 1 1 151255 623 0.00 2019-11-04 11:31:52 2019-11-04 11:31:57 t 1 1 151257 623 0.00 2019-11-04 11:33:43 2019-11-04 11:33:53 t 1 1 151258 623 0.00 2019-11-04 11:32:19 2019-11-04 11:34:43 t 1 1 151260 581 0.00 2019-11-04 11:26:02 2019-11-04 11:35:09 t 1 1 151261 623 0.00 2019-11-04 11:34:05 2019-11-04 11:35:43 t 1 1 151268 615 0.00 2019-11-04 11:34:45 2019-11-04 11:37:55 t 1 1 151269 562 0.00 2019-11-04 11:38:25 2019-11-04 11:39:14 t 1 1 151274 562 0.00 2019-11-04 11:42:31 2019-11-04 11:43:01 t 1 1 151276 591 0.00 2019-11-04 11:37:07 2019-11-04 11:44:56 t 1 1 151279 622 0.00 2019-11-04 11:42:30 2019-11-04 11:49:22 t 1 1 151280 623 0.00 2019-11-04 11:50:45 2019-11-04 11:50:56 t 1 1 151282 623 0.00 2019-11-04 11:52:32 2019-11-04 11:52:53 t 1 1 151283 578 0.00 2019-11-04 09:50:38 2019-11-04 11:53:14 t 1 1 151285 562 0.00 2019-11-04 11:53:44 2019-11-04 11:54:07 t 1 1 151287 562 0.00 2019-11-04 11:54:45 2019-11-04 11:54:54 t 1 1 151292 585 0.00 2019-11-04 11:54:05 2019-11-04 11:57:17 t 1 1 151294 622 0.00 2019-11-04 11:49:22 2019-11-04 11:57:56 t 1 1 151296 562 0.00 2019-11-04 12:00:26 2019-11-04 12:00:50 t 1 1 151297 562 0.00 2019-11-04 12:01:14 2019-11-04 12:01:28 t 1 1 151301 623 0.00 2019-11-04 12:04:10 2019-11-04 12:04:37 t 1 1 151306 562 0.00 2019-11-04 12:08:15 2019-11-04 12:08:22 t 1 1 151311 623 0.00 2019-11-04 12:08:02 2019-11-04 12:19:35 t 1 1 151312 623 0.00 2019-11-04 12:20:13 2019-11-04 12:20:40 t 1 1 151315 512 0.00 2019-11-04 11:22:11 2019-11-04 12:26:57 t 1 1 151316 570 0.00 2019-11-04 11:23:53 2019-11-04 12:29:43 t 1 1 151317 623 0.00 2019-11-04 12:29:50 2019-11-04 12:29:52 t 1 1 151321 562 0.00 2019-11-04 12:19:50 2019-11-04 12:31:59 t 1 1 151323 562 0.00 2019-11-04 12:32:07 2019-11-04 12:32:36 t 1 1 151328 589 0.00 2019-11-04 12:23:40 2019-11-04 12:36:50 t 1 1 151332 512 0.00 2019-11-04 12:34:53 2019-11-04 12:42:30 t 1 1 151337 622 0.00 2019-11-04 12:05:03 2019-11-04 12:47:18 t 1 1 151341 623 0.00 2019-11-04 12:48:54 2019-11-04 12:49:04 t 1 1 151346 623 0.00 2019-11-04 12:55:42 2019-11-04 12:56:16 t 1 1 151352 562 0.00 2019-11-04 12:57:16 2019-11-04 12:57:41 t 1 1 151353 562 0.00 2019-11-04 12:57:49 2019-11-04 12:58:07 t 1 1 151356 623 0.00 2019-11-04 13:02:04 2019-11-04 13:02:05 t 1 1 151357 597 0.00 2019-11-04 13:00:36 2019-11-04 13:02:36 t 1 1 151358 591 0.00 2019-11-04 13:02:14 2019-11-04 13:03:00 t 1 1 151361 623 0.00 2019-11-04 13:02:17 2019-11-04 13:03:43 t 1 1 151362 545 0.00 2019-11-04 12:48:16 2019-11-04 13:04:23 t 1 1 151364 562 0.00 2019-11-04 13:04:23 2019-11-04 13:04:49 t 1 1 151366 627 0.00 2019-11-04 12:50:31 2019-11-04 13:05:58 t 1 1 151376 619 0.00 2019-11-04 13:08:42 2019-11-04 13:11:03 t 1 1 151379 481 0.00 2019-11-04 11:56:54 2019-11-04 13:12:13 t 1 1 151380 627 0.00 2019-11-04 13:12:29 2019-11-04 13:12:37 t 1 1 151383 627 0.00 2019-11-04 13:12:48 2019-11-04 13:13:12 t 1 1 151385 623 0.00 2019-11-04 13:13:50 2019-11-04 13:13:55 t 1 1 151389 623 0.00 2019-11-04 13:15:00 2019-11-04 13:15:10 t 1 1 151391 627 0.00 2019-11-04 13:14:27 2019-11-04 13:15:27 t 1 1 151395 623 0.00 2019-11-04 13:15:44 2019-11-04 13:16:35 t 1 1 151399 622 0.00 2019-11-04 13:11:27 2019-11-04 13:21:51 t 1 1 151400 623 0.00 2019-11-04 13:22:04 2019-11-04 13:22:10 t 1 1 151401 623 0.00 2019-11-04 13:22:41 2019-11-04 13:22:51 t 1 1 151403 623 0.00 2019-11-04 13:23:17 2019-11-04 13:23:43 t 1 1 151404 623 0.00 2019-11-04 13:23:55 2019-11-04 13:24:26 t 1 1 151406 623 0.00 2019-11-04 13:22:15 2019-11-04 13:24:43 t 1 1 151407 416 0.00 2019-11-04 12:57:29 2019-11-04 13:25:57 t 1 1 151408 566 0.00 2019-11-04 13:05:03 2019-11-04 13:26:28 t 1 1 151411 562 0.00 2019-11-04 13:30:13 2019-11-04 13:30:37 t 1 1 151415 591 0.00 2019-11-04 13:37:21 2019-11-04 13:40:29 t 1 1 151416 483 0.00 2019-11-04 13:34:58 2019-11-04 13:41:45 t 1 1 151423 623 0.00 2019-11-04 13:44:25 2019-11-04 13:45:26 t 1 1 151425 589 0.00 2019-11-04 13:43:38 2019-11-04 13:45:35 t 1 1 151426 451 0.00 2019-11-04 13:40:35 2019-11-04 13:47:06 t 1 1 151429 623 0.00 2019-11-04 13:49:09 2019-11-04 13:49:53 t 1 1 151431 562 0.00 2019-11-04 13:50:31 2019-11-04 13:50:46 t 1 1 151436 587 0.00 2019-11-04 13:57:30 2019-11-04 13:57:39 t 1 1 151440 623 0.00 2019-11-04 13:59:20 2019-11-04 13:59:22 t 1 1 151442 451 0.00 2019-11-04 13:49:26 2019-11-04 13:59:51 t 1 1 151444 623 0.00 2019-11-04 14:00:42 2019-11-04 14:00:54 t 1 1 151447 220 0.00 2019-11-04 11:34:48 2019-11-04 14:01:49 t 1 1 151448 623 0.00 2019-11-04 14:01:51 2019-11-04 14:02:04 t 1 1 151449 623 0.00 2019-11-04 14:02:15 2019-11-04 14:02:31 t 1 1 151451 623 0.00 2019-11-04 14:02:36 2019-11-04 14:03:39 t 1 1 151453 623 0.00 2019-11-04 14:04:03 2019-11-04 14:04:19 t 1 1 151455 562 0.00 2019-11-04 14:04:14 2019-11-04 14:04:43 t 1 1 151457 623 0.00 2019-11-04 14:05:11 2019-11-04 14:05:18 t 1 1 151460 623 0.00 2019-11-04 14:06:05 2019-11-04 14:06:33 t 1 1 151464 587 0.00 2019-11-04 14:03:28 2019-11-04 14:07:30 t 1 1 151468 623 0.00 2019-11-04 14:08:40 2019-11-04 14:08:56 t 1 1 151469 623 0.00 2019-11-04 14:09:02 2019-11-04 14:09:08 t 1 1 151471 566 0.00 2019-11-04 13:55:22 2019-11-04 14:09:31 t 1 1 151473 566 0.00 2019-11-04 14:09:31 2019-11-04 14:10:10 t 1 1 151476 623 0.00 2019-11-04 14:10:37 2019-11-04 14:10:54 t 1 1 151479 623 0.00 2019-11-04 14:10:59 2019-11-04 14:11:26 t 1 1 151480 623 0.00 2019-11-04 14:11:31 2019-11-04 14:11:48 t 1 1 151481 623 0.00 2019-11-04 14:12:01 2019-11-04 14:12:23 t 1 1 151484 623 0.00 2019-11-04 14:13:13 2019-11-04 14:13:29 t 1 1 151485 623 0.00 2019-11-04 14:13:36 2019-11-04 14:13:58 t 1 1 151487 538 0.00 2019-11-04 11:38:57 2019-11-04 14:14:20 t 1 1 151488 623 0.00 2019-11-04 14:14:23 2019-11-04 14:14:50 t 1 1 151490 451 0.00 2019-11-04 14:11:18 2019-11-04 14:15:24 t 1 1 151494 623 0.00 2019-11-04 14:16:07 2019-11-04 14:16:34 t 1 1 151496 623 0.00 2019-11-04 14:16:41 2019-11-04 14:16:54 t 1 1 151497 587 0.00 2019-11-04 14:08:02 2019-11-04 14:17:29 t 1 1 151272 622 0.00 2019-11-04 10:40:30 2019-11-04 11:42:30 t 1 1 151273 623 0.00 2019-11-04 11:41:03 2019-11-04 11:42:43 t 1 1 151277 623 0.00 2019-11-04 11:45:59 2019-11-04 11:47:43 t 1 1 151278 591 0.00 2019-11-04 11:44:56 2019-11-04 11:49:16 t 1 1 151286 623 0.00 2019-11-04 11:53:05 2019-11-04 11:54:43 t 1 1 151288 498 0.00 2019-11-04 10:17:20 2019-11-04 11:54:56 t 1 2 151289 481 0.00 2019-11-04 11:18:04 2019-11-04 11:56:54 t 1 1 151290 562 0.00 2019-11-04 11:55:59 2019-11-04 11:57:03 t 1 1 151293 591 0.00 2019-11-04 11:49:16 2019-11-04 11:57:43 t 1 1 151299 379 0.00 2019-11-04 07:36:04 2019-11-04 12:03:30 t 1 1 151300 623 0.00 2019-11-04 12:03:27 2019-11-04 12:03:58 t 1 1 151302 623 0.00 2019-11-04 12:03:12 2019-11-04 12:04:43 t 1 1 151303 622 0.00 2019-11-04 11:57:56 2019-11-04 12:05:03 t 1 1 151305 591 0.00 2019-11-04 11:57:43 2019-11-04 12:07:24 t 1 1 151307 623 0.00 2019-11-04 12:07:53 2019-11-04 12:08:53 t 1 1 151308 562 0.00 2019-11-04 12:11:08 2019-11-04 12:11:28 t 1 1 151314 623 0.00 2019-11-04 12:25:13 2019-11-04 12:25:21 t 1 1 151319 623 0.00 2019-11-04 12:30:48 2019-11-04 12:30:55 t 1 1 151320 623 0.00 2019-11-04 12:31:07 2019-11-04 12:31:47 t 1 1 151324 623 0.00 2019-11-04 12:29:59 2019-11-04 12:32:43 t 1 1 151326 623 0.00 2019-11-04 12:34:56 2019-11-04 12:34:57 t 1 1 151330 623 0.00 2019-11-04 12:41:51 2019-11-04 12:41:56 t 1 1 151331 416 0.00 2019-11-04 12:35:40 2019-11-04 12:42:29 t 1 1 151333 591 0.00 2019-11-04 12:29:42 2019-11-04 12:42:36 t 1 1 151334 562 0.00 2019-11-04 12:42:57 2019-11-04 12:43:13 t 1 1 151335 623 0.00 2019-11-04 12:42:01 2019-11-04 12:44:43 t 1 1 151338 220 0.00 2019-11-04 12:45:59 2019-11-04 12:48:22 t 1 2 151342 570 0.00 2019-11-04 12:29:42 2019-11-04 12:50:15 t 1 1 151343 623 0.00 2019-11-04 12:49:16 2019-11-04 12:50:43 t 1 1 151348 416 0.00 2019-11-04 12:51:39 2019-11-04 12:56:28 t 1 1 151349 623 0.00 2019-11-04 12:56:28 2019-11-04 12:57:06 t 1 1 151351 591 0.00 2019-11-04 12:55:26 2019-11-04 12:57:20 t 1 1 151354 623 0.00 2019-11-04 12:58:31 2019-11-04 12:59:32 t 1 1 151355 597 0.00 2019-11-04 12:58:47 2019-11-04 13:00:27 t 1 1 151359 623 0.00 2019-11-04 13:02:40 2019-11-04 13:03:28 t 1 1 151365 623 0.00 2019-11-04 13:03:49 2019-11-04 13:04:52 t 1 1 151368 627 0.00 2019-11-04 13:06:40 2019-11-04 13:06:57 t 1 1 151372 627 0.00 2019-11-04 13:08:44 2019-11-04 13:09:01 t 1 1 151373 627 0.00 2019-11-04 13:09:16 2019-11-04 13:09:31 t 1 1 151375 570 0.00 2019-11-04 12:50:38 2019-11-04 13:10:47 t 1 1 151377 627 0.00 2019-11-04 13:10:45 2019-11-04 13:11:06 t 1 1 151381 623 0.00 2019-11-04 13:09:29 2019-11-04 13:12:42 t 1 1 151382 623 0.00 2019-11-04 13:12:47 2019-11-04 13:12:50 t 1 1 151388 627 0.00 2019-11-04 13:14:55 2019-11-04 13:14:55 f 1 1 151392 562 0.00 2019-11-04 13:15:02 2019-11-04 13:15:37 t 1 1 151396 481 0.00 2019-11-04 13:12:13 2019-11-04 13:19:21 t 1 1 151397 623 0.00 2019-11-04 13:19:40 2019-11-04 13:19:48 t 1 1 151402 623 0.00 2019-11-04 13:23:00 2019-11-04 13:23:10 t 1 1 151410 623 0.00 2019-11-04 13:26:04 2019-11-04 13:29:04 t 1 1 151414 562 0.00 2019-11-04 13:39:47 2019-11-04 13:40:02 t 1 1 151418 587 0.00 2019-11-04 13:39:49 2019-11-04 13:43:11 t 1 1 151420 623 0.00 2019-11-04 13:44:10 2019-11-04 13:44:13 t 1 1 151424 566 0.00 2019-11-04 13:26:28 2019-11-04 13:45:26 t 1 1 151427 597 0.00 2019-11-04 13:43:50 2019-11-04 13:47:27 t 1 1 151428 587 0.00 2019-11-04 13:44:21 2019-11-04 13:49:01 t 1 1 151430 623 0.00 2019-11-04 13:50:05 2019-11-04 13:50:06 t 1 1 151432 623 0.00 2019-11-04 13:51:58 2019-11-04 13:52:15 t 1 1 151433 566 0.00 2019-11-04 13:45:26 2019-11-04 13:55:22 t 1 1 151434 623 0.00 2019-11-04 13:55:21 2019-11-04 13:56:32 t 1 1 151435 587 0.00 2019-11-04 13:49:06 2019-11-04 13:57:20 t 1 1 151437 623 0.00 2019-11-04 13:57:11 2019-11-04 13:57:56 t 1 1 151438 562 0.00 2019-11-04 13:57:58 2019-11-04 13:58:27 t 1 1 151439 623 0.00 2019-11-04 13:58:21 2019-11-04 13:59:13 t 1 1 151443 623 0.00 2019-11-04 13:59:29 2019-11-04 14:00:23 t 1 1 151445 562 0.00 2019-11-04 14:01:27 2019-11-04 14:01:38 t 1 1 151450 587 0.00 2019-11-04 13:58:20 2019-11-04 14:03:24 t 1 1 151456 623 0.00 2019-11-04 14:04:52 2019-11-04 14:04:58 t 1 1 151462 623 0.00 2019-11-04 14:06:38 2019-11-04 14:06:55 t 1 1 151463 623 0.00 2019-11-04 14:07:00 2019-11-04 14:07:07 t 1 1 151465 623 0.00 2019-11-04 14:07:20 2019-11-04 14:07:36 t 1 1 151467 623 0.00 2019-11-04 14:08:12 2019-11-04 14:08:29 t 1 1 151477 562 0.00 2019-11-04 14:10:35 2019-11-04 14:10:55 t 1 1 151478 451 0.00 2019-11-04 13:59:51 2019-11-04 14:11:18 t 1 1 151483 623 0.00 2019-11-04 14:12:34 2019-11-04 14:13:00 t 1 1 151489 623 0.00 2019-11-04 14:14:55 2019-11-04 14:15:12 t 1 1 151492 591 0.00 2019-11-04 13:59:09 2019-11-04 14:15:48 t 1 1 151498 623 0.00 2019-11-04 14:17:04 2019-11-04 14:17:32 t 1 1 151502 623 0.00 2019-11-04 14:19:12 2019-11-04 14:19:39 t 1 1 151504 623 0.00 2019-11-04 14:20:15 2019-11-04 14:20:32 t 1 1 151505 623 0.00 2019-11-04 14:20:45 2019-11-04 14:20:58 t 1 1 151507 585 0.00 2019-11-04 14:03:01 2019-11-04 14:21:40 t 1 1 151512 538 0.00 2019-11-04 14:14:20 2019-11-04 14:23:07 t 1 1 151516 623 0.00 2019-11-04 14:24:15 2019-11-04 14:24:42 t 1 1 151519 623 0.00 2019-11-04 14:26:08 2019-11-04 14:26:25 t 1 1 151522 528 0.00 2019-11-04 14:17:53 2019-11-04 14:26:55 t 1 1 151524 623 0.00 2019-11-04 14:27:21 2019-11-04 14:27:34 t 1 1 151527 528 0.00 2019-11-04 14:27:14 2019-11-04 14:28:21 t 1 1 151530 623 0.00 2019-11-04 14:29:09 2019-11-04 14:29:50 t 1 1 151532 623 0.00 2019-11-04 14:30:08 2019-11-04 14:30:10 t 1 1 151533 623 0.00 2019-11-04 14:30:27 2019-11-04 14:30:58 t 1 1 151537 528 0.00 2019-11-04 14:31:10 2019-11-04 14:32:03 t 1 1 151538 623 0.00 2019-11-04 14:32:12 2019-11-04 14:32:24 t 1 1 151539 587 0.00 2019-11-04 14:17:53 2019-11-04 14:33:05 t 1 1 151541 623 0.00 2019-11-04 14:33:20 2019-11-04 14:33:38 t 1 1 151542 623 0.00 2019-11-04 14:33:51 2019-11-04 14:34:02 t 1 1 151549 623 0.00 2019-11-04 14:35:48 2019-11-04 14:36:05 t 1 1 151550 623 0.00 2019-11-04 14:36:18 2019-11-04 14:36:34 t 1 1 151553 623 0.00 2019-11-04 14:36:45 2019-11-04 14:37:02 t 1 1 151554 623 0.00 2019-11-04 14:37:07 2019-11-04 14:37:24 t 1 1 151558 623 0.00 2019-11-04 14:37:37 2019-11-04 14:38:08 t 1 1 151560 623 0.00 2019-11-04 14:38:40 2019-11-04 14:39:07 t 1 1 151565 412 0.00 2019-11-04 14:06:38 2019-11-04 14:39:31 t 1 1 151569 623 0.00 2019-11-04 14:41:39 2019-11-04 14:41:51 t 1 1 151570 623 0.00 2019-11-04 14:42:02 2019-11-04 14:42:08 t 1 1 151575 623 0.00 2019-11-04 14:43:31 2019-11-04 14:43:37 t 1 1 151580 623 0.00 2019-11-04 14:43:59 2019-11-04 14:45:39 t 1 1 151581 623 0.00 2019-11-04 14:45:46 2019-11-04 14:45:48 t 1 1 151499 623 0.00 2019-11-04 14:17:37 2019-11-04 14:18:14 t 1 1 151506 623 0.00 2019-11-04 14:21:09 2019-11-04 14:21:36 t 1 1 151508 623 0.00 2019-11-04 14:21:41 2019-11-04 14:21:49 t 1 1 151509 545 0.00 2019-11-04 14:11:32 2019-11-04 14:22:20 t 1 1 151513 623 0.00 2019-11-04 14:23:20 2019-11-04 14:23:42 t 1 1 151520 578 0.00 2019-11-04 13:34:47 2019-11-04 14:26:43 t 1 1 151523 623 0.00 2019-11-04 14:26:51 2019-11-04 14:27:08 t 1 1 151534 623 0.00 2019-11-04 14:31:03 2019-11-04 14:31:05 t 1 1 151535 623 0.00 2019-11-04 14:31:22 2019-11-04 14:31:36 t 1 1 151536 623 0.00 2019-11-04 14:31:42 2019-11-04 14:31:59 t 1 1 151543 623 0.00 2019-11-04 14:34:13 2019-11-04 14:34:29 t 1 1 151544 623 0.00 2019-11-04 14:34:42 2019-11-04 14:34:58 t 1 1 151546 623 0.00 2019-11-04 14:35:05 2019-11-04 14:35:17 t 1 1 151548 528 0.00 2019-11-04 14:35:41 2019-11-04 14:36:05 t 1 1 151551 562 0.00 2019-11-04 14:36:30 2019-11-04 14:36:39 t 1 1 151555 512 0.00 2019-11-04 14:34:58 2019-11-04 14:37:46 t 1 1 151557 451 0.00 2019-11-04 14:15:24 2019-11-04 14:38:06 t 1 1 151559 623 0.00 2019-11-04 14:38:19 2019-11-04 14:38:35 t 1 1 151562 545 0.00 2019-11-04 14:22:20 2019-11-04 14:39:12 t 1 1 151564 623 0.00 2019-11-04 14:39:12 2019-11-04 14:39:29 t 1 1 151566 623 0.00 2019-11-04 14:39:41 2019-11-04 14:40:24 t 1 1 151567 623 0.00 2019-11-04 14:40:31 2019-11-04 14:40:58 t 1 1 151572 562 0.00 2019-11-04 14:42:34 2019-11-04 14:42:55 t 1 1 151573 623 0.00 2019-11-04 14:43:05 2019-11-04 14:43:12 t 1 1 151576 623 0.00 2019-11-04 14:43:50 2019-11-04 14:43:52 t 1 1 151577 556 0.00 2019-11-04 11:16:13 2019-11-04 14:44:01 t 1 1 151579 379 0.00 2019-11-04 12:03:30 2019-11-04 14:44:55 t 1 1 151583 623 0.00 2019-11-04 14:46:25 2019-11-04 14:46:32 t 1 1 151585 623 0.00 2019-11-04 14:47:02 2019-11-04 14:47:45 t 1 1 151587 623 0.00 2019-11-04 14:48:15 2019-11-04 14:48:18 t 1 1 151590 623 0.00 2019-11-04 14:49:04 2019-11-04 14:49:08 t 1 1 151595 623 0.00 2019-11-04 14:50:15 2019-11-04 14:50:32 t 1 1 151600 623 0.00 2019-11-04 14:53:57 2019-11-04 14:54:02 t 1 1 151601 562 0.00 2019-11-04 14:54:01 2019-11-04 14:54:09 t 1 1 151603 623 0.00 2019-11-04 14:54:24 2019-11-04 14:54:31 t 1 1 151609 623 0.00 2019-11-04 14:56:27 2019-11-04 14:56:34 t 1 1 151614 570 0.00 2019-11-04 14:46:38 2019-11-04 14:57:27 t 1 1 151616 623 0.00 2019-11-04 14:58:05 2019-11-04 14:59:54 t 1 1 151618 623 0.00 2019-11-04 15:00:12 2019-11-04 15:00:18 t 1 1 151622 623 0.00 2019-11-04 15:01:57 2019-11-04 15:02:03 t 1 1 151631 451 0.00 2019-11-04 14:50:48 2019-11-04 15:04:43 t 1 1 151637 422 0.00 2019-11-04 15:15:47 2019-11-04 15:18:58 t 1 1 151641 545 0.00 2019-11-04 15:21:02 2019-11-04 15:22:08 t 1 1 151645 562 0.00 2019-11-04 15:26:33 2019-11-04 15:27:14 t 1 1 151651 516 0.00 2019-11-04 15:28:25 2019-11-04 15:32:56 t 1 1 151652 562 0.00 2019-11-04 15:34:29 2019-11-04 15:34:54 t 1 1 151655 562 0.00 2019-11-04 15:41:50 2019-11-04 15:43:10 t 1 1 151662 562 0.00 2019-11-04 15:50:58 2019-11-04 15:52:25 t 1 1 151664 570 0.00 2019-11-04 15:48:04 2019-11-04 15:56:49 t 1 1 151666 544 0.00 2019-11-04 15:56:13 2019-11-04 15:57:20 t 1 2 151669 516 0.00 2019-11-04 15:38:51 2019-11-04 16:02:07 t 1 1 151671 379 0.00 2019-11-04 14:44:55 2019-11-04 16:04:53 t 1 1 151675 562 0.00 2019-11-04 16:07:45 2019-11-04 16:09:43 t 1 1 151676 562 0.00 2019-11-04 16:08:42 2019-11-04 16:10:08 t 1 1 151679 562 0.00 2019-11-04 16:16:32 2019-11-04 16:16:56 t 1 1 151685 430 0.00 2019-11-04 16:25:02 2019-11-04 16:28:50 t 1 1 151690 379 0.00 2019-11-04 16:04:53 2019-11-04 16:32:39 t 1 1 151691 430 0.00 2019-11-04 16:28:50 2019-11-04 16:33:43 t 1 1 151692 379 0.00 2019-11-04 16:33:14 2019-11-04 16:34:18 t 1 1 151695 416 0.00 2019-11-04 13:27:13 2019-11-04 16:37:25 t 1 1 151696 551 0.00 2019-11-04 16:26:47 2019-11-04 16:38:02 t 1 1 151703 498 0.00 2019-11-04 16:36:41 2019-11-04 16:47:41 t 1 2 151705 416 0.00 2019-11-04 16:37:25 2019-11-04 16:49:49 t 1 1 151707 591 0.00 2019-11-04 16:48:56 2019-11-04 16:49:55 t 1 1 151708 551 0.00 2019-11-04 16:38:02 2019-11-04 16:50:23 t 1 1 151711 619 0.00 2019-11-04 16:43:25 2019-11-04 16:51:34 t 1 1 151714 615 0.00 2019-11-04 16:48:58 2019-11-04 16:52:53 t 1 1 151715 562 0.00 2019-11-04 16:52:50 2019-11-04 16:53:13 t 1 1 151717 516 0.00 2019-11-04 16:44:12 2019-11-04 16:55:37 t 1 1 151719 562 0.00 2019-11-04 16:57:43 2019-11-04 16:58:07 t 1 1 151723 585 0.00 2019-11-04 16:50:29 2019-11-04 17:00:38 t 1 1 151725 562 0.00 2019-11-04 17:03:38 2019-11-04 17:03:55 t 1 1 151727 617 0.00 2019-11-04 17:03:29 2019-11-04 17:06:36 t 1 1 151728 562 0.00 2019-11-04 17:08:54 2019-11-04 17:10:03 t 1 1 151731 430 0.00 2019-11-04 17:03:00 2019-11-04 17:12:55 t 1 1 151733 220 0.00 2019-11-04 17:01:51 2019-11-04 17:15:14 t 1 2 151735 633 0.00 2019-11-04 17:14:10 2019-11-04 17:16:11 t 1 1 151743 562 0.00 2019-11-04 17:31:18 2019-11-04 17:31:40 t 1 1 151748 581 0.00 2019-11-04 17:27:10 2019-11-04 17:38:53 t 1 1 151754 619 0.00 2019-11-04 17:31:07 2019-11-04 17:46:06 t 1 1 151756 562 0.00 2019-11-04 17:49:52 2019-11-04 17:50:12 t 1 1 151758 562 0.00 2019-11-04 17:59:28 2019-11-04 17:59:47 t 1 1 151766 615 0.00 2019-11-04 18:04:59 2019-11-04 18:06:39 t 1 1 151774 581 0.00 2019-11-04 18:15:02 2019-11-04 18:20:34 t 1 1 151779 520 0.00 2019-11-04 18:20:22 2019-11-04 18:29:18 t 1 1 151781 639 0.00 2019-11-04 18:30:20 2019-11-04 18:34:14 t 1 1 151789 220 0.00 2019-11-04 18:00:07 2019-11-04 18:38:15 t 1 1 151791 562 0.00 2019-11-04 18:42:24 2019-11-04 18:42:43 t 1 1 151793 551 0.00 2019-11-04 18:36:00 2019-11-04 18:43:30 t 1 1 151794 639 0.00 2019-11-04 18:39:26 2019-11-04 18:44:42 t 1 1 151798 220 0.00 2019-11-04 18:38:15 2019-11-04 18:46:24 t 1 1 151799 581 0.00 2019-11-04 18:46:49 2019-11-04 18:47:57 t 1 1 151806 639 0.00 2019-11-04 18:51:34 2019-11-04 18:51:47 t 1 1 151809 562 0.00 2019-11-04 18:53:03 2019-11-04 18:53:32 t 1 1 151815 639 0.00 2019-11-04 18:55:02 2019-11-04 18:55:03 t 1 1 151817 430 0.00 2019-11-04 18:55:12 2019-11-04 18:55:18 t 1 1 151827 639 0.00 2019-11-04 19:00:29 2019-11-04 19:01:52 t 1 1 151828 430 0.00 2019-11-04 19:02:08 2019-11-04 19:02:21 t 1 1 151829 639 0.00 2019-11-04 19:02:41 2019-11-04 19:02:46 t 1 1 151830 639 0.00 2019-11-04 19:02:55 2019-11-04 19:02:58 t 1 1 151831 551 0.00 2019-11-04 18:57:47 2019-11-04 19:03:48 t 1 1 151835 615 0.00 2019-11-04 19:04:03 2019-11-04 19:06:03 t 1 1 151836 430 0.00 2019-11-04 19:06:16 2019-11-04 19:06:22 t 1 1 151838 631 0.00 2019-11-04 19:02:22 2019-11-04 19:07:15 t 1 1 151840 639 0.00 2019-11-04 19:07:40 2019-11-04 19:07:56 t 1 1 151841 615 0.00 2019-11-04 19:06:02 2019-11-04 19:08:38 t 1 1 151843 430 0.00 2019-11-04 19:08:24 2019-11-04 19:09:24 t 1 1 151561 528 0.00 2019-11-04 14:39:00 2019-11-04 14:39:10 t 1 1 151563 490 0.00 2019-11-04 14:32:09 2019-11-04 14:39:15 t 1 1 151568 623 0.00 2019-11-04 14:41:05 2019-11-04 14:41:32 t 1 1 151571 623 0.00 2019-11-04 14:42:21 2019-11-04 14:42:55 t 1 1 151574 528 0.00 2019-11-04 14:42:43 2019-11-04 14:43:30 t 1 1 151578 623 0.00 2019-11-04 14:43:25 2019-11-04 14:44:43 t 1 1 151586 623 0.00 2019-11-04 14:47:50 2019-11-04 14:47:56 t 1 1 151588 623 0.00 2019-11-04 14:48:24 2019-11-04 14:48:26 t 1 1 151589 623 0.00 2019-11-04 14:48:31 2019-11-04 14:48:43 t 1 1 151591 623 0.00 2019-11-04 14:49:13 2019-11-04 14:49:26 t 1 1 151593 623 0.00 2019-11-04 14:49:51 2019-11-04 14:50:04 t 1 1 151596 623 0.00 2019-11-04 14:50:37 2019-11-04 14:50:44 t 1 1 151597 483 0.00 2019-11-04 14:48:58 2019-11-04 14:51:28 t 1 1 151598 623 0.00 2019-11-04 14:52:00 2019-11-04 14:52:45 t 1 1 151599 562 0.00 2019-11-04 14:53:16 2019-11-04 14:53:52 t 1 1 151605 623 0.00 2019-11-04 14:54:44 2019-11-04 14:55:01 t 1 1 151610 591 0.00 2019-11-04 14:56:07 2019-11-04 14:56:49 t 1 1 151611 623 0.00 2019-11-04 14:56:52 2019-11-04 14:56:59 t 1 1 151613 623 0.00 2019-11-04 14:57:18 2019-11-04 14:57:23 t 1 1 151615 623 0.00 2019-11-04 14:57:42 2019-11-04 14:57:49 t 1 1 151619 623 0.00 2019-11-04 15:00:37 2019-11-04 15:00:43 t 1 1 151620 623 0.00 2019-11-04 15:01:04 2019-11-04 15:01:11 t 1 1 151623 623 0.00 2019-11-04 15:02:08 2019-11-04 15:02:39 t 1 1 151624 623 0.00 2019-11-04 15:02:57 2019-11-04 15:03:04 t 1 1 151627 623 0.00 2019-11-04 15:03:31 2019-11-04 15:03:44 t 1 1 151630 585 0.00 2019-11-04 15:01:52 2019-11-04 15:04:37 t 1 1 151632 623 0.00 2019-11-04 15:04:44 2019-11-04 15:06:43 t 1 1 151633 585 0.00 2019-11-04 15:06:49 2019-11-04 15:09:33 t 1 1 151634 562 0.00 2019-11-04 15:13:51 2019-11-04 15:14:15 t 1 1 151635 422 0.00 2019-11-04 15:06:44 2019-11-04 15:15:47 t 1 1 151636 551 0.00 2019-11-04 14:50:31 2019-11-04 15:18:09 t 1 1 151643 562 0.00 2019-11-04 15:24:41 2019-11-04 15:25:04 t 1 1 151647 591 0.00 2019-11-04 15:26:32 2019-11-04 15:27:44 t 1 1 151649 551 0.00 2019-11-04 15:26:24 2019-11-04 15:31:39 t 1 1 151650 544 0.00 2019-11-04 14:48:39 2019-11-04 15:32:32 t 1 2 151660 551 0.00 2019-11-04 15:47:54 2019-11-04 15:49:56 t 1 1 151661 619 0.00 2019-11-04 15:49:31 2019-11-04 15:52:01 t 1 1 151663 562 0.00 2019-11-04 15:55:58 2019-11-04 15:56:33 t 1 1 151665 544 0.00 2019-11-04 15:34:16 2019-11-04 15:57:06 t 1 2 151668 538 0.00 2019-11-04 14:23:07 2019-11-04 16:00:20 t 1 1 151673 562 0.00 2019-11-04 16:05:51 2019-11-04 16:07:25 t 1 1 151674 545 0.00 2019-11-04 15:28:49 2019-11-04 16:08:07 t 1 1 151678 498 0.00 2019-11-04 14:54:09 2019-11-04 16:16:45 t 1 2 151686 545 0.00 2019-11-04 16:19:06 2019-11-04 16:28:52 t 1 1 151689 562 0.00 2019-11-04 16:30:15 2019-11-04 16:30:29 t 1 1 151693 562 0.00 2019-11-04 16:35:56 2019-11-04 16:36:16 t 1 1 151694 637 0.00 2019-11-04 15:23:40 2019-11-04 16:37:12 t 1 1 151698 545 0.00 2019-11-04 16:28:52 2019-11-04 16:41:18 t 1 1 151700 430 0.00 2019-11-04 16:33:43 2019-11-04 16:44:30 t 1 1 151701 562 0.00 2019-11-04 16:45:58 2019-11-04 16:46:23 t 1 1 151702 562 0.00 2019-11-04 16:46:54 2019-11-04 16:47:05 t 1 1 151704 581 0.00 2019-11-04 16:30:47 2019-11-04 16:49:04 t 1 1 151706 578 0.00 2019-11-04 16:04:50 2019-11-04 16:49:51 t 1 1 151712 430 0.00 2019-11-04 16:44:30 2019-11-04 16:52:20 t 1 1 151716 416 0.00 2019-11-04 16:49:49 2019-11-04 16:55:12 t 1 1 151721 545 0.00 2019-11-04 16:41:18 2019-11-04 16:58:56 t 1 1 151724 430 0.00 2019-11-04 16:56:26 2019-11-04 17:03:00 t 1 1 151726 551 0.00 2019-11-04 16:59:32 2019-11-04 17:06:04 t 1 1 151729 581 0.00 2019-11-04 17:00:18 2019-11-04 17:11:02 t 1 1 151730 619 0.00 2019-11-04 17:07:31 2019-11-04 17:12:40 t 1 1 151732 562 0.00 2019-11-04 17:14:02 2019-11-04 17:14:16 t 1 1 151736 562 0.00 2019-11-04 17:16:26 2019-11-04 17:16:46 t 1 1 151737 593 0.00 2019-11-04 16:26:56 2019-11-04 17:21:03 t 1 1 151740 562 0.00 2019-11-04 17:24:26 2019-11-04 17:24:42 t 1 1 151741 545 0.00 2019-11-04 17:24:13 2019-11-04 17:25:14 t 1 1 151744 512 0.00 2019-11-04 16:53:03 2019-11-04 17:32:11 t 1 1 151747 372 0.00 2019-11-04 17:34:16 2019-11-04 17:38:22 t 1 2 151749 488 0.00 2019-11-04 17:20:34 2019-11-04 17:39:04 t 1 1 151751 488 0.00 2019-11-04 17:41:32 2019-11-04 17:43:59 t 1 1 151755 220 0.00 2019-11-04 17:31:12 2019-11-04 17:47:45 t 1 1 151760 488 0.00 2019-11-04 17:56:56 2019-11-04 18:02:35 t 1 1 151761 516 0.00 2019-11-04 17:54:07 2019-11-04 18:03:01 t 1 1 151763 488 0.00 2019-11-04 18:02:35 2019-11-04 18:03:36 t 1 1 151764 538 0.00 2019-11-04 16:19:06 2019-11-04 18:05:22 t 1 1 151768 597 0.00 2019-11-04 18:03:19 2019-11-04 18:08:42 t 1 1 151770 562 0.00 2019-11-04 18:10:10 2019-11-04 18:10:35 t 1 1 151778 551 0.00 2019-11-04 17:07:20 2019-11-04 18:28:28 t 1 1 151782 639 0.00 2019-11-04 18:34:32 2019-11-04 18:34:48 t 1 1 151783 544 0.00 2019-11-04 18:33:28 2019-11-04 18:35:34 t 1 2 151785 551 0.00 2019-11-04 18:28:28 2019-11-04 18:36:00 t 1 1 151786 639 0.00 2019-11-04 18:36:02 2019-11-04 18:36:08 t 1 1 151790 639 0.00 2019-11-04 18:38:05 2019-11-04 18:39:05 t 1 1 151792 544 0.00 2019-11-04 18:39:18 2019-11-04 18:43:18 t 1 2 151795 512 0.00 2019-11-04 18:40:23 2019-11-04 18:44:52 t 1 1 151796 639 0.00 2019-11-04 18:44:48 2019-11-04 18:45:54 t 1 1 151797 581 0.00 2019-11-04 18:33:43 2019-11-04 18:46:23 t 1 1 151800 639 0.00 2019-11-04 18:46:54 2019-11-04 18:49:07 t 1 1 151802 639 0.00 2019-11-04 18:49:40 2019-11-04 18:50:16 t 1 1 151803 639 0.00 2019-11-04 18:50:22 2019-11-04 18:51:02 t 1 1 151805 551 0.00 2019-11-04 18:43:30 2019-11-04 18:51:17 t 1 1 151807 514 0.00 2019-11-04 18:15:02 2019-11-04 18:51:58 t 1 1 151808 639 0.00 2019-11-04 18:52:06 2019-11-04 18:52:33 t 1 1 151812 430 0.00 2019-11-04 18:54:12 2019-11-04 18:54:13 t 1 1 151819 619 0.00 2019-11-04 18:37:57 2019-11-04 18:56:04 t 1 1 151821 639 0.00 2019-11-04 18:55:53 2019-11-04 18:57:00 t 1 1 151823 551 0.00 2019-11-04 18:51:17 2019-11-04 18:57:47 t 1 1 151824 485 0.00 2019-11-04 18:54:10 2019-11-04 18:58:55 t 1 1 151826 430 0.00 2019-11-04 19:01:22 2019-11-04 19:01:30 t 1 1 151832 562 0.00 2019-11-04 19:03:52 2019-11-04 19:04:11 t 1 1 151844 639 0.00 2019-11-04 19:09:30 2019-11-04 19:09:37 t 1 1 151846 639 0.00 2019-11-04 19:10:00 2019-11-04 19:10:07 t 1 1 151848 395 0.00 2019-11-04 19:10:17 2019-11-04 19:11:23 t 1 2 151850 551 0.00 2019-11-04 19:03:48 2019-11-04 19:11:50 t 1 1 151853 639 0.00 2019-11-04 19:13:53 2019-11-04 19:13:58 t 1 1 151855 639 0.00 2019-11-04 19:14:03 2019-11-04 19:14:14 t 1 1 151856 430 0.00 2019-11-04 19:13:10 2019-11-04 19:14:43 t 1 1 151858 639 0.00 2019-11-04 19:14:49 2019-11-04 19:14:57 t 1 1 151582 623 0.00 2019-11-04 14:45:59 2019-11-04 14:46:06 t 1 1 151584 623 0.00 2019-11-04 14:46:50 2019-11-04 14:46:57 t 1 1 151592 623 0.00 2019-11-04 14:49:31 2019-11-04 14:49:37 t 1 1 151594 585 0.00 2019-11-04 14:45:45 2019-11-04 14:50:22 t 1 1 151602 623 0.00 2019-11-04 14:54:09 2019-11-04 14:54:11 t 1 1 151604 528 0.00 2019-11-04 14:48:07 2019-11-04 14:54:34 t 1 1 151606 623 0.00 2019-11-04 14:55:30 2019-11-04 14:55:37 t 1 1 151607 623 0.00 2019-11-04 14:55:56 2019-11-04 14:55:58 t 1 1 151608 623 0.00 2019-11-04 14:56:03 2019-11-04 14:56:09 t 1 1 151612 562 0.00 2019-11-04 14:56:42 2019-11-04 14:57:20 t 1 1 151617 623 0.00 2019-11-04 15:00:05 2019-11-04 15:00:07 t 1 1 151621 623 0.00 2019-11-04 15:01:31 2019-11-04 15:01:52 t 1 1 151625 623 0.00 2019-11-04 15:03:17 2019-11-04 15:03:18 t 1 1 151626 562 0.00 2019-11-04 15:03:21 2019-11-04 15:03:31 t 1 1 151628 623 0.00 2019-11-04 15:03:51 2019-11-04 15:03:54 t 1 1 151629 623 0.00 2019-11-04 15:04:08 2019-11-04 15:04:20 t 1 1 151638 562 0.00 2019-11-04 15:18:56 2019-11-04 15:19:57 t 1 1 151639 220 0.00 2019-11-04 15:01:58 2019-11-04 15:20:21 t 1 2 151640 545 0.00 2019-11-04 15:17:35 2019-11-04 15:21:03 t 1 1 151642 551 0.00 2019-11-04 15:18:09 2019-11-04 15:22:09 t 1 1 151644 551 0.00 2019-11-04 15:22:09 2019-11-04 15:26:24 t 1 1 151646 635 0.00 2019-11-04 15:23:45 2019-11-04 15:27:21 t 1 1 151648 585 0.00 2019-11-04 15:23:41 2019-11-04 15:28:11 t 1 1 151653 551 0.00 2019-11-04 15:31:39 2019-11-04 15:36:54 t 1 1 151654 520 0.00 2019-11-04 15:13:34 2019-11-04 15:41:20 t 1 1 151656 551 0.00 2019-11-04 15:36:54 2019-11-04 15:43:24 t 1 1 151657 562 0.00 2019-11-04 15:44:57 2019-11-04 15:45:41 t 1 1 151658 551 0.00 2019-11-04 15:43:24 2019-11-04 15:47:54 t 1 1 151659 570 0.00 2019-11-04 15:33:26 2019-11-04 15:48:04 t 1 1 151667 562 0.00 2019-11-04 15:58:38 2019-11-04 15:59:12 t 1 1 151670 578 0.00 2019-11-04 14:26:45 2019-11-04 16:04:50 t 1 1 151672 619 0.00 2019-11-04 15:59:51 2019-11-04 16:05:09 t 1 1 151677 564 0.00 2019-11-04 11:20:22 2019-11-04 16:10:20 t 1 1 151680 545 0.00 2019-11-04 16:08:07 2019-11-04 16:19:06 t 1 1 151681 538 0.00 2019-11-04 16:00:35 2019-11-04 16:19:06 t 1 1 151682 619 0.00 2019-11-04 16:13:43 2019-11-04 16:20:49 t 1 1 151683 562 0.00 2019-11-04 16:23:15 2019-11-04 16:23:37 t 1 1 151684 570 0.00 2019-11-04 16:22:32 2019-11-04 16:24:42 t 1 1 151687 562 0.00 2019-11-04 16:28:45 2019-11-04 16:28:57 t 1 1 151688 562 0.00 2019-11-04 16:29:06 2019-11-04 16:29:44 t 1 1 151697 220 0.00 2019-11-04 15:42:21 2019-11-04 16:41:17 t 1 2 151699 619 0.00 2019-11-04 16:23:49 2019-11-04 16:43:25 t 1 1 151709 508 0.00 2019-11-04 16:44:03 2019-11-04 16:50:26 t 1 2 151710 562 0.00 2019-11-04 16:50:26 2019-11-04 16:50:43 t 1 1 151713 512 0.00 2019-11-04 16:03:55 2019-11-04 16:52:35 t 1 1 151718 430 0.00 2019-11-04 16:52:20 2019-11-04 16:56:26 t 1 1 151720 619 0.00 2019-11-04 16:55:42 2019-11-04 16:58:40 t 1 1 151722 551 0.00 2019-11-04 16:53:48 2019-11-04 16:59:32 t 1 1 151734 570 0.00 2019-11-04 16:25:29 2019-11-04 17:15:24 t 1 1 151738 570 0.00 2019-11-04 17:18:10 2019-11-04 17:21:14 t 1 1 151739 545 0.00 2019-11-04 17:11:04 2019-11-04 17:23:02 t 1 1 151742 416 0.00 2019-11-04 16:55:48 2019-11-04 17:30:14 t 1 1 151745 593 0.00 2019-11-04 17:21:03 2019-11-04 17:33:24 t 1 1 151746 562 0.00 2019-11-04 17:37:52 2019-11-04 17:38:13 t 1 1 151750 488 0.00 2019-11-04 17:39:04 2019-11-04 17:41:32 t 1 1 151752 514 0.00 2019-11-04 17:43:59 2019-11-04 17:44:22 t 1 1 151753 372 0.00 2019-11-04 17:43:25 2019-11-04 17:45:00 t 1 2 151757 488 0.00 2019-11-04 17:43:59 2019-11-04 17:56:56 t 1 1 151759 597 0.00 2019-11-04 17:57:14 2019-11-04 18:00:35 t 1 1 151762 585 0.00 2019-11-04 17:59:39 2019-11-04 18:03:20 t 1 1 151765 516 0.00 2019-11-04 18:02:49 2019-11-04 18:05:54 t 1 1 151767 538 0.00 2019-11-04 18:05:21 2019-11-04 18:08:05 t 1 1 151769 585 0.00 2019-11-04 18:07:59 2019-11-04 18:09:17 t 1 1 151771 514 0.00 2019-11-04 18:05:41 2019-11-04 18:11:37 t 1 1 151772 412 0.00 2019-11-04 14:39:31 2019-11-04 18:14:34 t 1 1 151773 514 0.00 2019-11-04 18:11:37 2019-11-04 18:15:02 t 1 1 151775 562 0.00 2019-11-04 18:20:55 2019-11-04 18:21:13 t 1 1 151776 516 0.00 2019-11-04 18:23:13 2019-11-04 18:26:21 t 1 1 151777 615 0.00 2019-11-04 18:20:49 2019-11-04 18:28:13 t 1 1 151780 562 0.00 2019-11-04 18:31:42 2019-11-04 18:31:59 t 1 1 151784 619 0.00 2019-11-04 17:49:06 2019-11-04 18:35:59 t 1 1 151787 639 0.00 2019-11-04 18:36:31 2019-11-04 18:36:37 t 1 1 151788 639 0.00 2019-11-04 18:36:46 2019-11-04 18:37:05 t 1 1 151801 639 0.00 2019-11-04 18:49:13 2019-11-04 18:49:21 t 1 1 151804 639 0.00 2019-11-04 18:51:11 2019-11-04 18:51:12 t 1 1 151810 639 0.00 2019-11-04 18:53:29 2019-11-04 18:53:37 t 1 1 151811 430 0.00 2019-11-04 18:52:31 2019-11-04 18:53:58 t 1 1 151813 639 0.00 2019-11-04 18:54:04 2019-11-04 18:54:20 t 1 1 151814 597 0.00 2019-11-04 18:46:16 2019-11-04 18:55:02 t 1 1 151816 430 0.00 2019-11-04 18:54:16 2019-11-04 18:55:07 t 1 1 151818 639 0.00 2019-11-04 18:53:54 2019-11-04 18:55:43 t 1 1 151820 430 0.00 2019-11-04 18:55:55 2019-11-04 18:56:59 t 1 1 151822 639 0.00 2019-11-04 18:57:08 2019-11-04 18:57:14 t 1 1 151825 430 0.00 2019-11-04 19:00:04 2019-11-04 19:00:16 t 1 1 151833 430 0.00 2019-11-04 19:04:44 2019-11-04 19:04:52 t 1 1 151834 639 0.00 2019-11-04 19:05:57 2019-11-04 19:06:02 t 1 1 151837 639 0.00 2019-11-04 19:06:08 2019-11-04 19:06:41 t 1 1 151839 220 0.00 2019-11-04 18:20:25 2019-11-04 19:07:32 t 1 2 151842 619 0.00 2019-11-04 19:03:01 2019-11-04 19:08:45 t 1 1 151849 430 0.00 2019-11-04 19:11:28 2019-11-04 19:11:35 t 1 1 151851 430 0.00 2019-11-04 19:12:06 2019-11-04 19:13:02 t 1 1 151852 639 0.00 2019-11-04 19:13:17 2019-11-04 19:13:21 t 1 1 151854 430 0.00 2019-11-04 19:13:22 2019-11-04 19:14:08 t 1 1 151857 562 0.00 2019-11-04 19:14:33 2019-11-04 19:14:55 t 1 1 151860 430 0.00 2019-11-04 19:15:27 2019-11-04 19:15:33 t 1 1 151863 597 0.00 2019-11-04 19:04:57 2019-11-04 19:16:25 t 1 1 151865 639 0.00 2019-11-04 19:17:41 2019-11-04 19:17:48 t 1 1 151866 430 0.00 2019-11-04 19:18:30 2019-11-04 19:18:36 t 1 1 151868 639 0.00 2019-11-04 19:18:48 2019-11-04 19:18:56 t 1 1 151872 639 0.00 2019-11-04 19:20:16 2019-11-04 19:20:53 t 1 1 151876 639 0.00 2019-11-04 19:22:17 2019-11-04 19:22:28 t 1 1 151879 538 0.00 2019-11-04 18:12:35 2019-11-04 19:23:43 t 1 1 151883 566 0.00 2019-11-04 19:09:48 2019-11-04 19:25:03 t 1 1 151885 562 0.00 2019-11-04 19:25:16 2019-11-04 19:25:36 t 1 1 151894 430 0.00 2019-11-04 19:31:23 2019-11-04 19:32:43 t 1 1 151895 430 0.00 2019-11-04 19:33:25 2019-11-04 19:33:32 t 1 1 151898 430 0.00 2019-11-04 19:35:14 2019-11-04 19:35:22 t 1 1 151845 566 0.00 2019-11-04 18:40:38 2019-11-04 19:09:48 t 1 1 151847 639 0.00 2019-11-04 19:10:22 2019-11-04 19:10:57 t 1 1 151861 639 0.00 2019-11-04 19:15:35 2019-11-04 19:15:49 t 1 1 151862 639 0.00 2019-11-04 19:16:09 2019-11-04 19:16:22 t 1 1 151864 430 0.00 2019-11-04 19:16:32 2019-11-04 19:16:34 t 1 1 151869 551 0.00 2019-11-04 19:11:50 2019-11-04 19:19:19 t 1 1 151871 430 0.00 2019-11-04 19:19:43 2019-11-04 19:20:45 t 1 1 151874 430 0.00 2019-11-04 19:21:48 2019-11-04 19:21:54 t 1 1 151882 430 0.00 2019-11-04 19:24:53 2019-11-04 19:25:00 t 1 1 151888 551 0.00 2019-11-04 19:25:34 2019-11-04 19:27:53 t 1 1 151889 430 0.00 2019-11-04 19:28:38 2019-11-04 19:28:45 t 1 1 151890 430 0.00 2019-11-04 19:29:09 2019-11-04 19:29:30 t 1 1 151891 639 0.00 2019-11-04 19:30:02 2019-11-04 19:30:47 t 1 1 151893 220 0.00 2019-11-04 19:19:38 2019-11-04 19:32:02 t 1 2 151896 512 0.00 2019-11-04 19:10:11 2019-11-04 19:34:06 t 1 1 151897 430 0.00 2019-11-04 19:34:15 2019-11-04 19:35:15 t 1 1 151899 430 0.00 2019-11-04 19:36:01 2019-11-04 19:36:13 t 1 1 151901 562 0.00 2019-11-04 19:35:59 2019-11-04 19:36:21 t 1 1 151902 430 0.00 2019-11-04 19:37:21 2019-11-04 19:37:28 t 1 1 151905 619 0.00 2019-11-04 19:30:01 2019-11-04 19:38:52 t 1 1 151906 512 0.00 2019-11-04 19:34:06 2019-11-04 19:39:42 t 1 1 151910 430 0.00 2019-11-04 19:40:47 2019-11-04 19:40:53 t 1 1 151914 639 0.00 2019-11-04 19:45:02 2019-11-04 19:45:06 t 1 1 151922 587 0.00 2019-11-04 19:25:32 2019-11-04 19:48:13 t 1 1 151923 430 0.00 2019-11-04 19:47:45 2019-11-04 19:48:46 t 1 1 151925 564 0.00 2019-11-04 19:20:00 2019-11-04 19:49:04 t 1 1 151930 587 0.00 2019-11-04 19:48:24 2019-11-04 19:50:31 t 1 1 151931 520 0.00 2019-11-04 19:49:51 2019-11-04 19:50:49 t 1 1 151932 430 0.00 2019-11-04 19:51:19 2019-11-04 19:51:35 t 1 1 151933 430 0.00 2019-11-04 19:52:13 2019-11-04 19:52:20 t 1 1 151936 430 0.00 2019-11-04 19:53:34 2019-11-04 19:54:15 t 1 1 151944 633 0.00 2019-11-04 19:55:09 2019-11-04 19:55:15 t 1 1 151948 639 0.00 2019-11-04 19:57:38 2019-11-04 19:57:59 t 1 1 151950 622 0.00 2019-11-04 19:49:49 2019-11-04 20:00:03 t 1 1 151951 430 0.00 2019-11-04 20:00:10 2019-11-04 20:00:13 t 1 1 151954 220 0.00 2019-11-04 19:55:33 2019-11-04 20:02:23 t 1 1 151955 514 0.00 2019-11-04 19:54:50 2019-11-04 20:03:12 t 1 1 151957 520 0.00 2019-11-04 19:50:49 2019-11-04 20:04:10 t 1 1 151969 633 0.00 2019-11-04 20:03:14 2019-11-04 20:10:41 t 1 1 151975 591 0.00 2019-11-04 19:20:16 2019-11-04 20:13:09 t 1 1 151978 562 0.00 2019-11-04 20:15:47 2019-11-04 20:16:06 t 1 1 151981 639 0.00 2019-11-04 20:16:11 2019-11-04 20:16:51 t 1 1 151984 593 0.00 2019-11-04 20:05:16 2019-11-04 20:18:48 t 1 1 151985 597 0.00 2019-11-04 20:16:33 2019-11-04 20:19:10 t 1 1 151986 566 0.00 2019-11-04 20:04:11 2019-11-04 20:20:25 t 1 1 151994 562 0.00 2019-11-04 20:26:30 2019-11-04 20:26:55 t 1 1 151997 587 0.00 2019-11-04 20:05:08 2019-11-04 20:27:37 t 1 1 152001 639 0.00 2019-11-04 20:30:23 2019-11-04 20:30:35 t 1 1 152003 430 0.00 2019-11-04 20:31:14 2019-11-04 20:31:16 t 1 1 152005 520 0.00 2019-11-04 20:12:12 2019-11-04 20:32:57 t 1 1 152006 593 0.00 2019-11-04 20:28:03 2019-11-04 20:33:41 t 1 1 152007 619 0.00 2019-11-04 20:15:30 2019-11-04 20:34:02 t 1 1 152011 562 0.00 2019-11-04 20:37:10 2019-11-04 20:37:39 t 1 1 152014 430 0.00 2019-11-04 20:42:08 2019-11-04 20:42:25 t 1 1 152016 593 0.00 2019-11-04 20:33:41 2019-11-04 20:42:56 t 1 1 152018 514 0.00 2019-11-04 20:11:57 2019-11-04 20:43:48 t 1 1 152020 516 0.00 2019-11-04 20:40:16 2019-11-04 20:44:41 t 1 1 152021 639 0.00 2019-11-04 20:44:06 2019-11-04 20:44:51 t 1 1 152027 639 0.00 2019-11-04 20:44:51 2019-11-04 20:47:11 t 1 1 152028 562 0.00 2019-11-04 20:47:57 2019-11-04 20:48:17 t 1 1 152032 485 0.00 2019-11-04 20:26:34 2019-11-04 20:49:44 t 1 1 152034 587 0.00 2019-11-04 20:46:18 2019-11-04 20:51:58 t 1 1 152035 430 0.00 2019-11-04 20:52:02 2019-11-04 20:52:09 t 1 1 152037 220 0.00 2019-11-04 20:51:36 2019-11-04 20:52:52 t 1 2 152038 430 0.00 2019-11-04 20:53:03 2019-11-04 20:53:16 t 1 1 152040 639 0.00 2019-11-04 20:47:24 2019-11-04 20:54:02 t 1 1 152042 416 0.00 2019-11-04 19:54:32 2019-11-04 20:55:49 t 1 1 152044 430 0.00 2019-11-04 20:56:05 2019-11-04 20:56:05 f 1 1 152046 591 0.00 2019-11-04 20:13:09 2019-11-04 20:57:52 t 1 1 152049 562 0.00 2019-11-04 20:58:38 2019-11-04 20:59:05 t 1 1 152051 639 0.00 2019-11-04 20:54:02 2019-11-04 20:59:37 t 1 1 152055 623 0.00 2019-11-04 21:02:32 2019-11-04 21:02:43 t 1 1 152057 591 0.00 2019-11-04 20:57:52 2019-11-04 21:06:26 t 1 1 152058 520 0.00 2019-11-04 21:06:35 2019-11-04 21:06:36 t 1 1 152060 520 0.00 2019-11-04 21:04:44 2019-11-04 21:07:29 t 1 1 152062 562 0.00 2019-11-04 21:09:24 2019-11-04 21:09:47 t 1 1 152065 623 0.00 2019-11-04 21:06:44 2019-11-04 21:13:47 t 1 1 152068 520 0.00 2019-11-04 21:07:20 2019-11-04 21:16:46 t 1 1 152070 622 0.00 2019-11-04 21:14:08 2019-11-04 21:18:07 t 1 1 152072 562 0.00 2019-11-04 21:20:06 2019-11-04 21:20:31 t 1 1 152074 639 0.00 2019-11-04 20:59:37 2019-11-04 21:20:59 t 1 1 152077 520 0.00 2019-11-04 21:17:04 2019-11-04 21:23:42 t 1 1 152081 514 0.00 2019-11-04 20:43:48 2019-11-04 21:24:57 t 1 1 152083 635 0.00 2019-11-04 21:10:31 2019-11-04 21:25:20 t 1 1 152098 622 0.00 2019-11-04 21:29:47 2019-11-04 21:36:50 t 1 1 152101 556 0.00 2019-11-04 21:16:39 2019-11-04 21:37:28 t 1 1 152107 520 0.00 2019-11-04 21:38:16 2019-11-04 21:41:04 t 1 1 152109 623 0.00 2019-11-04 21:39:09 2019-11-04 21:41:47 t 1 1 152114 622 0.00 2019-11-04 21:36:50 2019-11-04 21:46:16 t 1 1 152116 623 0.00 2019-11-04 21:41:47 2019-11-04 21:46:46 t 1 1 152117 623 0.00 2019-11-04 21:46:51 2019-11-04 21:46:57 t 1 1 152119 639 0.00 2019-11-04 21:44:11 2019-11-04 21:47:33 t 1 1 152123 562 0.00 2019-11-04 21:47:27 2019-11-04 21:48:15 t 1 1 152128 623 0.00 2019-11-04 21:49:08 2019-11-04 21:49:08 f 1 1 152132 562 0.00 2019-11-04 21:49:59 2019-11-04 21:50:22 t 1 1 152136 639 0.00 2019-11-04 21:52:40 2019-11-04 21:53:46 t 1 1 152140 562 0.00 2019-11-04 21:54:58 2019-11-04 21:55:07 t 1 1 152142 625 0.00 2019-11-04 21:53:19 2019-11-04 21:56:17 t 1 1 152145 562 0.00 2019-11-04 21:55:54 2019-11-04 21:56:43 t 1 1 152146 639 0.00 2019-11-04 21:56:31 2019-11-04 21:57:28 t 1 1 152149 639 0.00 2019-11-04 21:58:09 2019-11-04 21:58:12 t 1 1 152154 585 0.00 2019-11-04 21:56:47 2019-11-04 21:59:20 t 1 1 152156 639 0.00 2019-11-04 22:00:10 2019-11-04 22:00:27 t 1 1 152159 639 0.00 2019-11-04 22:01:42 2019-11-04 22:01:44 t 1 1 152160 639 0.00 2019-11-04 22:02:00 2019-11-04 22:02:02 t 1 1 152161 639 0.00 2019-11-04 22:02:36 2019-11-04 22:02:48 t 1 1 152162 639 0.00 2019-11-04 22:03:12 2019-11-04 22:03:17 t 1 1 151859 430 0.00 2019-11-04 19:14:42 2019-11-04 19:15:19 t 1 1 151867 639 0.00 2019-11-04 19:16:49 2019-11-04 19:18:43 t 1 1 151870 564 0.00 2019-11-04 17:14:39 2019-11-04 19:19:54 t 1 1 151873 483 0.00 2019-11-04 19:19:45 2019-11-04 19:21:53 t 1 1 151875 619 0.00 2019-11-04 19:20:41 2019-11-04 19:22:15 t 1 1 151877 544 0.00 2019-11-04 19:21:15 2019-11-04 19:22:56 t 1 2 151878 639 0.00 2019-11-04 19:23:06 2019-11-04 19:23:34 t 1 1 151880 430 0.00 2019-11-04 19:23:37 2019-11-04 19:23:43 t 1 1 151881 639 0.00 2019-11-04 19:24:13 2019-11-04 19:24:27 t 1 1 151884 551 0.00 2019-11-04 19:19:19 2019-11-04 19:25:34 t 1 1 151886 562 0.00 2019-11-04 19:25:45 2019-11-04 19:26:19 t 1 1 151887 430 0.00 2019-11-04 19:26:58 2019-11-04 19:27:03 t 1 1 151892 430 0.00 2019-11-04 19:30:22 2019-11-04 19:31:13 t 1 1 151904 430 0.00 2019-11-04 19:38:26 2019-11-04 19:38:40 t 1 1 151907 430 0.00 2019-11-04 19:39:40 2019-11-04 19:39:55 t 1 1 151908 514 0.00 2019-11-04 19:31:19 2019-11-04 19:40:27 t 1 1 151912 430 0.00 2019-11-04 19:42:50 2019-11-04 19:42:57 t 1 1 151913 220 0.00 2019-11-04 19:42:17 2019-11-04 19:44:41 t 1 2 151915 430 0.00 2019-11-04 19:45:24 2019-11-04 19:45:26 t 1 1 151917 430 0.00 2019-11-04 19:45:54 2019-11-04 19:46:01 t 1 1 151920 566 0.00 2019-11-04 19:36:20 2019-11-04 19:47:13 t 1 1 151929 639 0.00 2019-11-04 19:49:49 2019-11-04 19:50:27 t 1 1 151934 430 0.00 2019-11-04 19:52:31 2019-11-04 19:52:52 t 1 1 151935 430 0.00 2019-11-04 19:52:57 2019-11-04 19:53:26 t 1 1 151937 639 0.00 2019-11-04 19:54:02 2019-11-04 19:54:19 t 1 1 151939 514 0.00 2019-11-04 19:40:27 2019-11-04 19:54:50 t 1 1 151941 220 0.00 2019-11-04 18:46:58 2019-11-04 19:54:54 t 1 1 151945 220 0.00 2019-11-04 19:54:56 2019-11-04 19:55:33 t 1 1 151946 639 0.00 2019-11-04 19:56:20 2019-11-04 19:56:23 t 1 1 151953 430 0.00 2019-11-04 20:00:45 2019-11-04 20:01:59 t 1 1 151956 430 0.00 2019-11-04 20:03:08 2019-11-04 20:03:13 t 1 1 151959 587 0.00 2019-11-04 19:50:48 2019-11-04 20:05:08 t 1 1 151961 593 0.00 2019-11-04 19:47:34 2019-11-04 20:05:16 t 1 1 151965 430 0.00 2019-11-04 20:07:42 2019-11-04 20:09:15 t 1 1 151967 639 0.00 2019-11-04 20:09:39 2019-11-04 20:10:17 t 1 1 151970 597 0.00 2019-11-04 20:04:43 2019-11-04 20:10:52 t 1 1 151973 514 0.00 2019-11-04 20:03:12 2019-11-04 20:11:57 t 1 1 151974 520 0.00 2019-11-04 20:04:09 2019-11-04 20:13:07 t 1 1 151976 430 0.00 2019-11-04 20:12:50 2019-11-04 20:13:28 t 1 1 151977 622 0.00 2019-11-04 20:06:55 2019-11-04 20:15:33 t 1 1 151979 633 0.00 2019-11-04 20:10:41 2019-11-04 20:16:25 t 1 1 151980 639 0.00 2019-11-04 20:15:28 2019-11-04 20:16:43 t 1 1 151982 633 0.00 2019-11-04 20:16:25 2019-11-04 20:17:30 t 1 1 151983 430 0.00 2019-11-04 20:17:59 2019-11-04 20:18:05 t 1 1 151988 639 0.00 2019-11-04 20:23:20 2019-11-04 20:23:32 t 1 1 151989 639 0.00 2019-11-04 20:23:48 2019-11-04 20:23:54 t 1 1 151992 545 0.00 2019-11-04 20:11:37 2019-11-04 20:25:33 t 1 1 151993 639 0.00 2019-11-04 20:26:04 2019-11-04 20:26:43 t 1 1 151995 597 0.00 2019-11-04 20:25:21 2019-11-04 20:27:12 t 1 1 152000 430 0.00 2019-11-04 20:29:14 2019-11-04 20:29:25 t 1 1 152002 639 0.00 2019-11-04 20:30:42 2019-11-04 20:30:46 t 1 1 152004 564 0.00 2019-11-04 19:49:20 2019-11-04 20:32:13 t 1 1 152009 220 0.00 2019-11-04 20:26:12 2019-11-04 20:35:51 t 1 2 152010 430 0.00 2019-11-04 20:36:19 2019-11-04 20:36:37 t 1 1 152012 430 0.00 2019-11-04 20:37:28 2019-11-04 20:38:44 t 1 1 152017 564 0.00 2019-11-04 20:39:58 2019-11-04 20:43:23 t 1 1 152019 639 0.00 2019-11-04 20:30:55 2019-11-04 20:43:53 t 1 1 152024 587 0.00 2019-11-04 20:27:47 2019-11-04 20:46:18 t 1 1 152025 556 0.00 2019-11-04 14:44:01 2019-11-04 20:46:50 t 1 1 152026 430 0.00 2019-11-04 20:46:54 2019-11-04 20:47:10 t 1 1 152029 622 0.00 2019-11-04 20:15:33 2019-11-04 20:49:33 t 1 1 152031 430 0.00 2019-11-04 20:47:53 2019-11-04 20:49:44 t 1 1 152041 623 0.00 2019-11-04 20:48:04 2019-11-04 20:54:09 t 1 1 152043 587 0.00 2019-11-04 20:51:58 2019-11-04 20:55:53 t 1 1 152047 430 0.00 2019-11-04 20:55:59 2019-11-04 20:58:44 t 1 1 152050 623 0.00 2019-11-04 20:59:10 2019-11-04 20:59:18 t 1 1 152052 566 0.00 2019-11-04 20:51:57 2019-11-04 21:01:37 t 1 1 152053 623 0.00 2019-11-04 21:02:01 2019-11-04 21:02:09 t 1 1 152061 220 0.00 2019-11-04 21:07:05 2019-11-04 21:09:28 t 1 2 152066 622 0.00 2019-11-04 20:49:33 2019-11-04 21:14:08 t 1 1 152067 556 0.00 2019-11-04 20:46:42 2019-11-04 21:16:40 t 1 1 152071 220 0.00 2019-11-04 21:13:07 2019-11-04 21:18:30 t 1 2 152075 639 0.00 2019-11-04 21:21:11 2019-11-04 21:21:22 t 1 1 152080 587 0.00 2019-11-04 21:23:01 2019-11-04 21:24:19 t 1 1 152082 570 0.00 2019-11-04 20:23:50 2019-11-04 21:25:15 t 1 1 152086 639 0.00 2019-11-04 21:21:38 2019-11-04 21:26:49 t 1 1 152089 544 0.00 2019-11-04 21:25:03 2019-11-04 21:28:23 t 1 2 152091 622 0.00 2019-11-04 21:23:59 2019-11-04 21:29:47 t 1 1 152092 623 0.00 2019-11-04 21:31:07 2019-11-04 21:31:16 t 1 1 152096 639 0.00 2019-11-04 21:34:23 2019-11-04 21:35:02 t 1 1 152100 639 0.00 2019-11-04 21:37:23 2019-11-04 21:37:26 t 1 1 152103 562 0.00 2019-11-04 21:37:23 2019-11-04 21:37:46 t 1 1 152104 520 0.00 2019-11-04 21:36:08 2019-11-04 21:38:11 t 1 1 152106 639 0.00 2019-11-04 21:40:05 2019-11-04 21:40:36 t 1 1 152110 562 0.00 2019-11-04 21:42:15 2019-11-04 21:42:55 t 1 1 152115 597 0.00 2019-11-04 21:37:07 2019-11-04 21:46:42 t 1 1 152118 623 0.00 2019-11-04 21:47:28 2019-11-04 21:47:28 f 1 1 152120 623 0.00 2019-11-04 21:47:41 2019-11-04 21:47:41 f 1 1 152122 623 0.00 2019-11-04 21:48:05 2019-11-04 21:48:05 f 1 1 152124 623 0.00 2019-11-04 21:48:18 2019-11-04 21:48:18 f 1 1 152127 623 0.00 2019-11-04 21:47:15 2019-11-04 21:48:44 t 1 1 152129 623 0.00 2019-11-04 21:49:21 2019-11-04 21:49:21 f 1 1 152131 623 0.00 2019-11-04 21:47:03 2019-11-04 21:49:44 t 1 1 152134 512 0.00 2019-11-04 21:42:33 2019-11-04 21:50:47 t 1 1 152135 639 0.00 2019-11-04 21:48:05 2019-11-04 21:51:48 t 1 1 152139 587 0.00 2019-11-04 21:51:37 2019-11-04 21:55:03 t 1 1 152147 639 0.00 2019-11-04 21:57:34 2019-11-04 21:57:50 t 1 1 152148 625 0.00 2019-11-04 21:56:17 2019-11-04 21:58:10 t 1 1 152151 516 0.00 2019-11-04 21:54:15 2019-11-04 21:58:53 t 1 1 152153 520 0.00 2019-11-04 21:43:48 2019-11-04 21:59:14 t 1 1 152164 514 0.00 2019-11-04 21:24:57 2019-11-04 22:04:14 t 1 1 152165 639 0.00 2019-11-04 22:04:14 2019-11-04 22:04:25 t 1 1 152167 562 0.00 2019-11-04 22:04:23 2019-11-04 22:04:42 t 1 1 152169 639 0.00 2019-11-04 22:05:13 2019-11-04 22:05:44 t 1 1 152172 639 0.00 2019-11-04 22:07:49 2019-11-04 22:08:05 t 1 1 152173 639 0.00 2019-11-04 22:08:42 2019-11-04 22:08:59 t 1 1 152177 639 0.00 2019-11-04 22:10:46 2019-11-04 22:10:59 t 1 1 151900 566 0.00 2019-11-04 19:25:03 2019-11-04 19:36:20 t 1 1 151903 430 0.00 2019-11-04 19:35:49 2019-11-04 19:37:43 t 1 1 151909 639 0.00 2019-11-04 19:39:45 2019-11-04 19:40:38 t 1 1 151911 633 0.00 2019-11-04 19:03:06 2019-11-04 19:40:54 t 1 1 151916 639 0.00 2019-11-04 19:45:33 2019-11-04 19:45:38 t 1 1 151918 639 0.00 2019-11-04 19:46:17 2019-11-04 19:46:22 t 1 1 151919 562 0.00 2019-11-04 19:46:44 2019-11-04 19:47:05 t 1 1 151921 512 0.00 2019-11-04 19:45:46 2019-11-04 19:47:17 t 1 1 151924 639 0.00 2019-11-04 19:47:58 2019-11-04 19:48:57 t 1 1 151926 430 0.00 2019-11-04 19:48:33 2019-11-04 19:49:14 t 1 1 151927 622 0.00 2019-11-04 18:28:53 2019-11-04 19:49:49 t 1 1 151928 430 0.00 2019-11-04 19:49:44 2019-11-04 19:50:07 t 1 1 151938 562 0.00 2019-11-04 19:54:17 2019-11-04 19:54:43 t 1 1 151940 220 0.00 2019-11-04 19:44:30 2019-11-04 19:54:53 t 1 2 151942 220 0.00 2019-11-04 18:51:45 2019-11-04 19:54:57 t 1 1 151943 633 0.00 2019-11-04 19:40:54 2019-11-04 19:55:09 t 1 1 151947 430 0.00 2019-11-04 19:56:45 2019-11-04 19:57:52 t 1 1 151949 597 0.00 2019-11-04 19:38:31 2019-11-04 19:58:48 t 1 1 151952 639 0.00 2019-11-04 19:59:45 2019-11-04 20:00:30 t 1 1 151958 566 0.00 2019-11-04 19:47:13 2019-11-04 20:04:11 t 1 1 151960 430 0.00 2019-11-04 20:04:46 2019-11-04 20:05:08 t 1 1 151962 562 0.00 2019-11-04 20:05:04 2019-11-04 20:05:31 t 1 1 151963 622 0.00 2019-11-04 20:00:03 2019-11-04 20:06:55 t 1 1 151964 430 0.00 2019-11-04 20:06:35 2019-11-04 20:07:25 t 1 1 151966 430 0.00 2019-11-04 20:09:22 2019-11-04 20:10:12 t 1 1 151968 430 0.00 2019-11-04 20:10:18 2019-11-04 20:10:25 t 1 1 151971 430 0.00 2019-11-04 20:10:36 2019-11-04 20:11:08 t 1 1 151972 639 0.00 2019-11-04 20:11:40 2019-11-04 20:11:51 t 1 1 151987 430 0.00 2019-11-04 20:20:46 2019-11-04 20:21:40 t 1 1 151990 593 0.00 2019-11-04 20:18:48 2019-11-04 20:24:14 t 1 1 151991 639 0.00 2019-11-04 20:24:24 2019-11-04 20:25:33 t 1 1 151996 430 0.00 2019-11-04 20:27:26 2019-11-04 20:27:31 t 1 1 151998 430 0.00 2019-11-04 20:27:37 2019-11-04 20:27:44 t 1 1 151999 593 0.00 2019-11-04 20:24:14 2019-11-04 20:28:03 t 1 1 152008 430 0.00 2019-11-04 20:35:17 2019-11-04 20:35:23 t 1 1 152013 564 0.00 2019-11-04 20:33:16 2019-11-04 20:39:34 t 1 1 152015 566 0.00 2019-11-04 20:20:25 2019-11-04 20:42:33 t 1 1 152022 430 0.00 2019-11-04 20:44:48 2019-11-04 20:44:55 t 1 1 152023 623 0.00 2019-11-04 20:44:27 2019-11-04 20:45:14 t 1 1 152030 585 0.00 2019-11-04 20:46:12 2019-11-04 20:49:38 t 1 1 152033 566 0.00 2019-11-04 20:42:33 2019-11-04 20:51:57 t 1 1 152036 485 0.00 2019-11-04 20:49:44 2019-11-04 20:52:16 t 1 1 152039 430 0.00 2019-11-04 20:52:28 2019-11-04 20:53:44 t 1 1 152045 430 0.00 2019-11-04 20:55:04 2019-11-04 20:56:44 t 1 1 152048 564 0.00 2019-11-04 20:45:31 2019-11-04 20:58:58 t 1 1 152054 623 0.00 2019-11-04 21:02:22 2019-11-04 21:02:27 t 1 1 152056 623 0.00 2019-11-04 21:04:18 2019-11-04 21:04:21 t 1 1 152059 623 0.00 2019-11-04 21:06:35 2019-11-04 21:06:41 t 1 1 152063 220 0.00 2019-11-04 21:10:02 2019-11-04 21:11:25 t 1 2 152064 483 0.00 2019-11-04 21:11:10 2019-11-04 21:13:07 t 1 1 152069 623 0.00 2019-11-04 21:17:23 2019-11-04 21:17:30 t 1 1 152073 545 0.00 2019-11-04 20:58:39 2019-11-04 21:20:38 t 1 1 152076 597 0.00 2019-11-04 21:18:51 2019-11-04 21:23:20 t 1 1 152078 622 0.00 2019-11-04 21:18:07 2019-11-04 21:23:59 t 1 1 152079 623 0.00 2019-11-04 21:23:59 2019-11-04 21:24:08 t 1 1 152084 587 0.00 2019-11-04 21:23:55 2019-11-04 21:25:21 t 1 1 152085 623 0.00 2019-11-04 21:25:48 2019-11-04 21:26:26 t 1 1 152087 639 0.00 2019-11-04 21:26:56 2019-11-04 21:27:29 t 1 1 152088 562 0.00 2019-11-04 21:27:09 2019-11-04 21:28:03 t 1 1 152090 619 0.00 2019-11-04 21:27:16 2019-11-04 21:29:10 t 1 1 152093 566 0.00 2019-11-04 21:23:36 2019-11-04 21:32:32 t 1 1 152094 520 0.00 2019-11-04 21:23:47 2019-11-04 21:33:44 t 1 1 152095 639 0.00 2019-11-04 21:27:38 2019-11-04 21:34:13 t 1 1 152097 520 0.00 2019-11-04 21:33:52 2019-11-04 21:36:01 t 1 1 152099 639 0.00 2019-11-04 21:36:53 2019-11-04 21:37:06 t 1 1 152102 566 0.00 2019-11-04 21:32:43 2019-11-04 21:37:34 t 1 1 152105 325 0.00 2019-11-04 21:39:17 2019-11-04 21:39:17 f 1 2 152108 639 0.00 2019-11-04 21:40:42 2019-11-04 21:41:14 t 1 1 152111 591 0.00 2019-11-04 21:09:22 2019-11-04 21:43:05 t 1 1 152112 520 0.00 2019-11-04 21:41:03 2019-11-04 21:43:43 t 1 1 152113 562 0.00 2019-11-04 21:43:42 2019-11-04 21:43:59 t 1 1 152121 623 0.00 2019-11-04 21:47:53 2019-11-04 21:47:53 f 1 1 152125 623 0.00 2019-11-04 21:48:30 2019-11-04 21:48:30 f 1 1 152126 623 0.00 2019-11-04 21:48:43 2019-11-04 21:48:43 f 1 1 152130 623 0.00 2019-11-04 21:49:33 2019-11-04 21:49:33 f 1 1 152133 623 0.00 2019-11-04 21:48:55 2019-11-04 21:50:44 t 1 1 152137 451 0.00 2019-11-04 21:43:13 2019-11-04 21:53:53 t 1 1 152138 562 0.00 2019-11-04 21:52:42 2019-11-04 21:54:01 t 1 1 152141 456 0.00 2019-11-04 21:55:26 2019-11-04 21:56:06 t 1 1 152143 639 0.00 2019-11-04 21:54:53 2019-11-04 21:56:25 t 1 1 152144 622 0.00 2019-11-04 21:46:16 2019-11-04 21:56:32 t 1 1 152150 562 0.00 2019-11-04 21:58:28 2019-11-04 21:58:51 t 1 1 152152 483 0.00 2019-11-04 21:56:27 2019-11-04 21:58:57 t 1 1 152155 639 0.00 2019-11-04 21:58:42 2019-11-04 21:59:45 t 1 1 152157 485 0.00 2019-11-04 21:54:24 2019-11-04 22:00:31 t 1 1 152158 639 0.00 2019-11-04 22:00:58 2019-11-04 22:01:12 t 1 1 152168 538 0.00 2019-11-04 19:25:40 2019-11-04 22:05:24 t 1 1 152170 451 0.00 2019-11-04 21:53:53 2019-11-04 22:06:30 t 1 1 152171 639 0.00 2019-11-04 22:06:39 2019-11-04 22:06:51 t 1 1 152174 595 0.00 2019-11-04 21:53:32 2019-11-04 22:09:31 t 1 1 152175 639 0.00 2019-11-04 22:09:28 2019-11-04 22:10:05 t 1 1 152176 622 0.00 2019-11-04 22:04:40 2019-11-04 22:10:48 t 1 1 152181 625 0.00 2019-11-04 21:58:14 2019-11-04 22:11:52 t 1 1 152184 639 0.00 2019-11-04 22:13:33 2019-11-04 22:13:46 t 1 1 152191 220 0.00 2019-11-04 22:14:24 2019-11-04 22:15:24 t 1 1 152193 639 0.00 2019-11-04 22:15:49 2019-11-04 22:16:00 t 1 1 152194 639 0.00 2019-11-04 22:16:27 2019-11-04 22:16:43 t 1 1 152197 587 0.00 2019-11-04 21:55:47 2019-11-04 22:17:26 t 1 1 152199 451 0.00 2019-11-04 22:06:30 2019-11-04 22:17:37 t 1 1 152203 625 0.00 2019-11-04 22:14:01 2019-11-04 22:18:18 t 1 1 152207 622 0.00 2019-11-04 22:10:48 2019-11-04 22:19:09 t 1 1 152210 220 0.00 2019-11-04 22:19:33 2019-11-04 22:20:09 t 1 1 152214 639 0.00 2019-11-04 22:21:12 2019-11-04 22:21:33 t 1 1 152224 514 0.00 2019-11-04 22:14:53 2019-11-04 22:26:48 t 1 1 152225 585 0.00 2019-11-04 22:26:33 2019-11-04 22:27:32 t 1 1 152229 622 0.00 2019-11-04 22:25:14 2019-11-04 22:29:17 t 1 1 152232 333 0.00 2019-11-04 22:30:51 2019-11-04 22:30:51 f 1 2 152163 591 0.00 2019-11-04 22:02:44 2019-11-04 22:04:06 t 1 1 152166 622 0.00 2019-11-04 21:56:32 2019-11-04 22:04:40 t 1 1 152178 562 0.00 2019-11-04 22:10:58 2019-11-04 22:11:14 t 1 1 152180 639 0.00 2019-11-04 22:10:24 2019-11-04 22:11:44 t 1 1 152182 220 0.00 2019-11-04 21:19:29 2019-11-04 22:13:05 t 1 1 152185 220 0.00 2019-11-04 22:13:05 2019-11-04 22:13:49 t 1 1 152186 625 0.00 2019-11-04 22:12:28 2019-11-04 22:14:01 t 1 1 152189 514 0.00 2019-11-04 22:04:14 2019-11-04 22:14:53 t 1 1 152192 220 0.00 2019-11-04 22:15:23 2019-11-04 22:15:59 t 1 1 152196 220 0.00 2019-11-04 22:15:59 2019-11-04 22:17:13 t 1 1 152198 639 0.00 2019-11-04 22:17:12 2019-11-04 22:17:28 t 1 1 152202 639 0.00 2019-11-04 22:17:56 2019-11-04 22:18:11 t 1 1 152206 639 0.00 2019-11-04 22:18:51 2019-11-04 22:19:03 t 1 1 152209 220 0.00 2019-11-04 22:17:46 2019-11-04 22:19:34 t 1 1 152212 639 0.00 2019-11-04 22:19:51 2019-11-04 22:20:40 t 1 1 152213 570 0.00 2019-11-04 22:13:40 2019-11-04 22:21:26 t 1 1 152219 639 0.00 2019-11-04 22:25:23 2019-11-04 22:25:42 t 1 1 152221 639 0.00 2019-11-04 22:25:47 2019-11-04 22:25:55 t 1 1 152223 562 0.00 2019-11-04 22:26:05 2019-11-04 22:26:44 t 1 1 152227 639 0.00 2019-11-04 22:28:04 2019-11-04 22:28:22 t 1 1 152228 639 0.00 2019-11-04 22:28:48 2019-11-04 22:29:00 t 1 1 152230 585 0.00 2019-11-04 22:27:32 2019-11-04 22:29:29 t 1 1 152235 639 0.00 2019-11-04 22:30:40 2019-11-04 22:31:48 t 1 1 152236 639 0.00 2019-11-04 22:32:26 2019-11-04 22:32:43 t 1 1 152241 514 0.00 2019-11-04 22:26:48 2019-11-04 22:37:22 t 1 1 152242 639 0.00 2019-11-04 22:37:28 2019-11-04 22:37:41 t 1 1 152243 639 0.00 2019-11-04 22:38:16 2019-11-04 22:38:19 t 1 1 152244 639 0.00 2019-11-04 22:39:49 2019-11-04 22:40:03 t 1 1 152246 639 0.00 2019-11-04 22:39:17 2019-11-04 22:40:44 t 1 1 152249 451 0.00 2019-11-04 22:17:37 2019-11-04 22:41:58 t 1 1 152251 570 0.00 2019-11-04 22:36:07 2019-11-04 22:42:48 t 1 1 152256 639 0.00 2019-11-04 22:44:06 2019-11-04 22:44:24 t 1 1 152258 220 0.00 2019-11-04 21:48:39 2019-11-04 22:45:02 t 1 2 152263 639 0.00 2019-11-04 22:46:56 2019-11-04 22:47:13 t 1 1 152267 639 0.00 2019-11-04 22:48:44 2019-11-04 22:48:58 t 1 1 152269 627 0.00 2019-11-04 22:44:24 2019-11-04 22:49:26 t 1 1 152271 639 0.00 2019-11-04 22:49:52 2019-11-04 22:50:09 t 1 1 152275 591 0.00 2019-11-04 22:49:43 2019-11-04 22:51:15 t 1 1 152280 570 0.00 2019-11-04 22:42:48 2019-11-04 22:53:36 t 1 1 152281 625 0.00 2019-11-04 22:27:32 2019-11-04 22:54:17 t 1 1 152282 639 0.00 2019-11-04 22:54:20 2019-11-04 22:54:34 t 1 1 152283 422 0.00 2019-11-04 22:52:00 2019-11-04 22:55:01 t 1 1 152290 587 0.00 2019-11-04 22:44:12 2019-11-04 22:58:35 t 1 1 152291 220 0.00 2019-11-04 22:58:17 2019-11-04 22:58:51 t 1 1 152293 220 0.00 2019-11-04 22:58:50 2019-11-04 23:01:07 t 1 1 152302 551 0.00 2019-11-04 21:59:46 2019-11-04 23:04:44 t 1 1 152304 591 0.00 2019-11-04 22:55:54 2019-11-04 23:04:50 t 1 1 152306 485 0.00 2019-11-04 23:01:29 2019-11-04 23:05:17 t 1 1 152307 220 0.00 2019-11-04 23:05:01 2019-11-04 23:05:37 t 1 1 152308 220 0.00 2019-11-04 23:05:36 2019-11-04 23:06:36 t 1 1 152309 220 0.00 2019-11-04 23:06:36 2019-11-04 23:07:11 t 1 1 152310 220 0.00 2019-11-04 23:07:10 2019-11-04 23:07:54 t 1 1 152313 562 0.00 2019-11-04 23:08:03 2019-11-04 23:08:25 t 1 1 152316 587 0.00 2019-11-04 22:58:35 2019-11-04 23:09:39 t 1 1 152318 220 0.00 2019-11-04 23:09:58 2019-11-04 23:10:34 t 1 1 152319 220 0.00 2019-11-04 23:10:34 2019-11-04 23:11:09 t 1 1 152325 422 0.00 2019-11-04 23:07:25 2019-11-04 23:14:18 t 1 1 152332 220 0.00 2019-11-04 23:16:16 2019-11-04 23:16:48 t 1 1 152335 422 0.00 2019-11-04 23:17:31 2019-11-04 23:17:40 t 1 1 152338 551 0.00 2019-11-04 23:04:44 2019-11-04 23:18:01 t 1 1 152339 545 0.00 2019-11-04 23:17:47 2019-11-04 23:18:28 t 1 1 152343 220 0.00 2019-11-04 23:18:32 2019-11-04 23:19:06 t 1 1 152345 595 0.00 2019-11-04 22:36:33 2019-11-04 23:19:40 t 1 1 152349 422 0.00 2019-11-04 23:18:46 2019-11-04 23:21:39 t 1 1 152354 622 0.00 2019-11-04 22:29:17 2019-11-04 23:29:07 t 1 1 152358 622 0.00 2019-11-04 23:29:07 2019-11-04 23:36:52 t 1 1 152364 551 0.00 2019-11-04 23:18:01 2019-11-04 23:40:22 t 1 1 152366 220 0.00 2019-11-04 23:20:50 2019-11-04 23:41:48 t 1 1 152368 587 0.00 2019-11-04 23:41:18 2019-11-04 23:45:53 t 1 1 152371 587 0.00 2019-11-04 23:46:03 2019-11-04 23:48:45 t 1 1 152372 622 0.00 2019-11-04 23:43:27 2019-11-04 23:49:41 t 1 1 152373 562 0.00 2019-11-04 23:51:14 2019-11-04 23:51:18 t 1 1 152374 562 0.00 2019-11-04 23:51:28 2019-11-04 23:52:39 t 1 1 152377 639 0.00 2019-11-04 23:54:44 2019-11-04 23:55:01 t 1 1 152379 512 0.00 2019-11-04 23:47:48 2019-11-04 23:55:24 t 1 1 152383 514 0.00 2019-11-04 23:39:01 2019-11-04 23:56:09 t 1 1 152384 639 0.00 2019-11-04 23:56:22 2019-11-04 23:56:36 t 1 1 152385 639 0.00 2019-11-04 23:57:00 2019-11-04 23:57:03 t 1 1 152392 639 0.00 2019-11-04 23:57:56 2019-11-04 23:58:06 t 1 1 152397 587 0.00 2019-11-04 23:59:37 2019-11-05 00:02:15 t 1 1 152402 639 0.00 2019-11-05 00:04:34 2019-11-05 00:04:53 t 1 1 152403 562 0.00 2019-11-05 00:04:43 2019-11-05 00:04:59 t 1 1 152406 639 0.00 2019-11-05 00:05:45 2019-11-05 00:05:55 t 1 1 152407 639 0.00 2019-11-05 00:06:32 2019-11-05 00:06:50 t 1 1 152409 639 0.00 2019-11-05 00:08:38 2019-11-05 00:08:51 t 1 1 152410 639 0.00 2019-11-05 00:09:32 2019-11-05 00:09:45 t 1 1 152412 587 0.00 2019-11-05 00:04:28 2019-11-05 00:14:06 t 1 1 152418 412 0.00 2019-11-04 22:53:13 2019-11-05 00:26:51 t 1 1 152421 574 0.00 2019-11-05 00:21:16 2019-11-05 00:29:26 t 1 1 152424 562 0.00 2019-11-05 00:32:09 2019-11-05 00:32:35 t 1 1 152425 625 0.00 2019-11-05 00:32:41 2019-11-05 00:32:56 t 1 1 152430 625 0.00 2019-11-05 00:35:38 2019-11-05 00:35:52 t 1 1 152431 625 0.00 2019-11-05 00:35:52 2019-11-05 00:36:17 t 1 1 152433 625 0.00 2019-11-05 00:36:31 2019-11-05 00:38:24 t 1 1 152435 587 0.00 2019-11-05 00:30:49 2019-11-05 00:43:54 t 1 1 152438 633 0.00 2019-11-05 00:28:20 2019-11-05 00:49:37 t 1 1 152442 408 0.00 2019-11-05 00:46:54 2019-11-05 00:54:26 t 1 1 152443 639 0.00 2019-11-05 00:45:15 2019-11-05 00:57:11 t 1 1 152446 639 0.00 2019-11-05 00:59:20 2019-11-05 01:03:29 t 1 1 152449 639 0.00 2019-11-05 01:05:31 2019-11-05 01:05:43 t 1 1 152450 639 0.00 2019-11-05 01:05:46 2019-11-05 01:06:24 t 1 1 152452 639 0.00 2019-11-05 01:06:31 2019-11-05 01:06:39 t 1 1 152453 639 0.00 2019-11-05 01:06:41 2019-11-05 01:07:36 t 1 1 152457 562 0.00 2019-11-05 01:15:58 2019-11-05 01:17:09 t 1 1 152458 562 0.00 2019-11-05 01:17:16 2019-11-05 01:18:20 t 1 1 152460 639 0.00 2019-11-05 01:16:40 2019-11-05 01:18:57 t 1 1 152461 220 0.00 2019-11-05 00:54:45 2019-11-05 01:22:08 t 1 2 152179 639 0.00 2019-11-04 22:11:25 2019-11-04 22:11:38 t 1 1 152183 570 0.00 2019-11-04 22:03:36 2019-11-04 22:13:40 t 1 1 152187 220 0.00 2019-11-04 22:13:49 2019-11-04 22:14:25 t 1 1 152188 639 0.00 2019-11-04 22:14:34 2019-11-04 22:14:46 t 1 1 152190 562 0.00 2019-11-04 22:15:03 2019-11-04 22:15:14 t 1 1 152195 639 0.00 2019-11-04 22:14:26 2019-11-04 22:16:44 t 1 1 152200 220 0.00 2019-11-04 22:17:13 2019-11-04 22:17:46 t 1 1 152201 562 0.00 2019-11-04 22:17:40 2019-11-04 22:18:01 t 1 1 152204 545 0.00 2019-11-04 22:16:06 2019-11-04 22:18:19 t 1 1 152205 456 0.00 2019-11-04 21:56:04 2019-11-04 22:19:00 t 1 1 152208 510 0.00 2019-11-04 22:19:12 2019-11-04 22:19:34 t 1 1 152211 220 0.00 2019-11-04 22:20:08 2019-11-04 22:20:09 t 1 1 152215 639 0.00 2019-11-04 22:22:24 2019-11-04 22:22:37 t 1 1 152216 639 0.00 2019-11-04 22:23:04 2019-11-04 22:23:17 t 1 1 152217 639 0.00 2019-11-04 22:24:24 2019-11-04 22:24:38 t 1 1 152218 622 0.00 2019-11-04 22:19:09 2019-11-04 22:25:14 t 1 1 152220 562 0.00 2019-11-04 22:25:35 2019-11-04 22:25:54 t 1 1 152222 639 0.00 2019-11-04 22:26:21 2019-11-04 22:26:33 t 1 1 152226 625 0.00 2019-11-04 22:20:01 2019-11-04 22:27:32 t 1 1 152231 639 0.00 2019-11-04 22:29:35 2019-11-04 22:29:53 t 1 1 152234 639 0.00 2019-11-04 22:30:22 2019-11-04 22:31:44 t 1 1 152238 570 0.00 2019-11-04 22:30:02 2019-11-04 22:36:07 t 1 1 152239 639 0.00 2019-11-04 22:33:01 2019-11-04 22:36:50 t 1 1 152245 639 0.00 2019-11-04 22:40:27 2019-11-04 22:40:39 t 1 1 152247 562 0.00 2019-11-04 22:26:55 2019-11-04 22:41:07 t 1 1 152250 639 0.00 2019-11-04 22:42:33 2019-11-04 22:42:46 t 1 1 152253 639 0.00 2019-11-04 22:43:03 2019-11-04 22:43:16 t 1 1 152259 639 0.00 2019-11-04 22:45:25 2019-11-04 22:45:41 t 1 1 152260 430 0.00 2019-11-04 22:15:45 2019-11-04 22:46:08 t 1 1 152262 639 0.00 2019-11-04 22:44:52 2019-11-04 22:46:44 t 1 1 152266 514 0.00 2019-11-04 22:37:22 2019-11-04 22:48:19 t 1 1 152274 639 0.00 2019-11-04 22:50:53 2019-11-04 22:51:11 t 1 1 152276 639 0.00 2019-11-04 22:51:58 2019-11-04 22:52:37 t 1 1 152277 451 0.00 2019-11-04 22:41:58 2019-11-04 22:52:59 t 1 1 152279 639 0.00 2019-11-04 22:53:04 2019-11-04 22:53:16 t 1 1 152285 451 0.00 2019-11-04 22:53:00 2019-11-04 22:56:43 t 1 1 152288 562 0.00 2019-11-04 22:57:35 2019-11-04 22:57:49 t 1 1 152289 220 0.00 2019-11-04 22:57:40 2019-11-04 22:58:17 t 1 1 152292 545 0.00 2019-11-04 22:45:50 2019-11-04 23:00:56 t 1 1 152295 485 0.00 2019-11-04 22:56:47 2019-11-04 23:01:29 t 1 1 152296 220 0.00 2019-11-04 23:01:07 2019-11-04 23:01:42 t 1 1 152301 562 0.00 2019-11-04 23:03:24 2019-11-04 23:04:25 t 1 1 152303 570 0.00 2019-11-04 23:02:47 2019-11-04 23:04:46 t 1 1 152311 485 0.00 2019-11-04 23:05:17 2019-11-04 23:08:01 t 1 1 152312 220 0.00 2019-11-04 22:53:00 2019-11-04 23:08:20 t 1 2 152314 220 0.00 2019-11-04 23:07:54 2019-11-04 23:08:26 t 1 1 152315 220 0.00 2019-11-04 23:08:25 2019-11-04 23:09:24 t 1 1 152320 485 0.00 2019-11-04 23:08:01 2019-11-04 23:11:58 t 1 1 152322 510 0.00 2019-11-04 22:19:42 2019-11-04 23:12:57 t 1 1 152323 220 0.00 2019-11-04 23:12:54 2019-11-04 23:13:27 t 1 1 152324 220 0.00 2019-11-04 23:13:27 2019-11-04 23:13:59 t 1 1 152326 220 0.00 2019-11-04 23:13:59 2019-11-04 23:14:32 t 1 1 152328 625 0.00 2019-11-04 22:54:17 2019-11-04 23:15:20 t 1 1 152329 585 0.00 2019-11-04 22:51:49 2019-11-04 23:15:36 t 1 1 152333 422 0.00 2019-11-04 23:14:36 2019-11-04 23:16:59 t 1 1 152340 220 0.00 2019-11-04 23:17:55 2019-11-04 23:18:32 t 1 1 152341 220 0.00 2019-11-04 19:56:31 2019-11-04 23:18:55 t 1 1 152347 545 0.00 2019-11-04 23:18:28 2019-11-04 23:20:19 t 1 1 152351 481 0.00 2019-11-04 23:19:26 2019-11-04 23:25:40 t 1 1 152352 562 0.00 2019-11-04 23:26:16 2019-11-04 23:26:47 t 1 1 152353 585 0.00 2019-11-04 23:15:35 2019-11-04 23:29:00 t 1 1 152357 514 0.00 2019-11-04 23:24:01 2019-11-04 23:32:56 t 1 1 152361 508 0.00 2019-11-04 23:37:48 2019-11-04 23:38:44 t 1 2 152363 514 0.00 2019-11-04 23:32:56 2019-11-04 23:39:01 t 1 1 152365 587 0.00 2019-11-04 23:31:27 2019-11-04 23:40:22 t 1 1 152370 562 0.00 2019-11-04 23:47:54 2019-11-04 23:48:15 t 1 1 152376 562 0.00 2019-11-04 23:53:13 2019-11-04 23:54:18 t 1 1 152378 587 0.00 2019-11-04 23:49:07 2019-11-04 23:55:24 t 1 1 152380 622 0.00 2019-11-04 23:49:41 2019-11-04 23:55:32 t 1 1 152382 639 0.00 2019-11-04 23:55:52 2019-11-04 23:56:00 t 1 1 152388 639 0.00 2019-11-04 23:57:23 2019-11-04 23:57:29 t 1 1 152391 514 0.00 2019-11-04 23:56:09 2019-11-04 23:58:00 t 1 1 152393 639 0.00 2019-11-04 23:58:11 2019-11-04 23:58:29 t 1 1 152394 639 0.00 2019-11-04 23:59:22 2019-11-04 23:59:36 t 1 1 152395 639 0.00 2019-11-05 00:00:23 2019-11-05 00:00:36 t 1 1 152400 587 0.00 2019-11-05 00:02:53 2019-11-05 00:03:51 t 1 1 152401 639 0.00 2019-11-05 00:04:06 2019-11-05 00:04:20 t 1 1 152413 562 0.00 2019-11-05 00:15:25 2019-11-05 00:15:41 t 1 1 152416 562 0.00 2019-11-05 00:21:12 2019-11-05 00:21:49 t 1 1 152417 551 0.00 2019-11-04 23:40:22 2019-11-05 00:23:16 t 1 1 152420 633 0.00 2019-11-05 00:18:23 2019-11-05 00:28:20 t 1 1 152426 625 0.00 2019-11-05 00:32:55 2019-11-05 00:33:04 t 1 1 152427 625 0.00 2019-11-05 00:33:05 2019-11-05 00:33:20 t 1 1 152428 625 0.00 2019-11-05 00:33:20 2019-11-05 00:34:25 t 1 1 152432 625 0.00 2019-11-05 00:36:16 2019-11-05 00:36:32 t 1 1 152434 562 0.00 2019-11-05 00:42:53 2019-11-05 00:43:15 t 1 1 152437 587 0.00 2019-11-05 00:46:24 2019-11-05 00:46:43 t 1 1 152441 562 0.00 2019-11-05 00:53:37 2019-11-05 00:53:58 t 1 1 152445 564 0.00 2019-11-04 20:59:03 2019-11-05 01:03:17 t 1 1 152454 639 0.00 2019-11-05 01:07:44 2019-11-05 01:07:47 t 1 1 152462 562 0.00 2019-11-05 01:25:47 2019-11-05 01:26:21 t 1 1 152463 408 0.00 2019-11-05 01:22:21 2019-11-05 01:28:28 t 1 1 152466 625 0.00 2019-11-05 00:38:23 2019-11-05 01:38:02 t 1 1 152467 587 0.00 2019-11-05 01:20:13 2019-11-05 01:42:09 t 1 1 152471 587 0.00 2019-11-05 01:50:57 2019-11-05 01:53:33 t 1 1 152472 562 0.00 2019-11-05 01:57:57 2019-11-05 01:58:22 t 1 1 152477 556 0.00 2019-11-04 21:38:01 2019-11-05 02:18:23 t 1 1 152478 562 0.00 2019-11-05 02:19:28 2019-11-05 02:19:50 t 1 1 152481 587 0.00 2019-11-05 02:28:34 2019-11-05 02:37:01 t 1 1 152486 587 0.00 2019-11-05 02:53:14 2019-11-05 03:01:48 t 1 1 152488 562 0.00 2019-11-05 03:10:32 2019-11-05 03:10:55 t 1 1 152489 562 0.00 2019-11-05 03:18:09 2019-11-05 03:18:30 t 1 1 152490 562 0.00 2019-11-05 03:28:53 2019-11-05 03:29:18 t 1 1 152492 562 0.00 2019-11-05 03:43:01 2019-11-05 03:43:08 t 1 1 152495 622 0.00 2019-11-05 03:17:37 2019-11-05 04:05:48 t 1 1 152498 485 0.00 2019-11-05 04:14:20 2019-11-05 04:16:22 t 1 1 152500 562 0.00 2019-11-05 04:30:11 2019-11-05 04:30:33 t 1 1 152233 331 0.00 2019-11-04 22:31:14 2019-11-04 22:31:14 f 1 1 152237 591 0.00 2019-11-04 22:22:34 2019-11-04 22:36:06 t 1 1 152240 379 0.00 2019-11-04 16:39:02 2019-11-04 22:37:03 t 1 1 152248 639 0.00 2019-11-04 22:41:22 2019-11-04 22:41:55 t 1 1 152252 639 0.00 2019-11-04 22:42:12 2019-11-04 22:43:14 t 1 1 152254 639 0.00 2019-11-04 22:43:34 2019-11-04 22:43:47 t 1 1 152255 587 0.00 2019-11-04 22:17:26 2019-11-04 22:44:12 t 1 1 152257 627 0.00 2019-11-04 22:29:54 2019-11-04 22:44:24 t 1 1 152261 639 0.00 2019-11-04 22:46:21 2019-11-04 22:46:35 t 1 1 152264 562 0.00 2019-11-04 22:46:51 2019-11-04 22:47:13 t 1 1 152265 639 0.00 2019-11-04 22:47:57 2019-11-04 22:48:11 t 1 1 152268 581 0.00 2019-11-04 22:26:53 2019-11-04 22:49:07 t 1 1 152270 639 0.00 2019-11-04 22:49:26 2019-11-04 22:49:31 t 1 1 152272 619 0.00 2019-11-04 22:21:43 2019-11-04 22:50:46 t 1 1 152273 485 0.00 2019-11-04 22:42:04 2019-11-04 22:51:01 t 1 1 152278 562 0.00 2019-11-04 22:52:48 2019-11-04 22:53:00 t 1 1 152284 639 0.00 2019-11-04 22:55:47 2019-11-04 22:55:58 t 1 1 152286 514 0.00 2019-11-04 22:48:19 2019-11-04 22:57:36 t 1 1 152287 220 0.00 2019-11-04 22:21:52 2019-11-04 22:57:40 t 1 1 152294 562 0.00 2019-11-04 23:00:33 2019-11-04 23:01:20 t 1 1 152297 570 0.00 2019-11-04 22:53:36 2019-11-04 23:02:47 t 1 1 152298 456 0.00 2019-11-04 22:21:46 2019-11-04 23:03:08 t 1 1 152299 220 0.00 2019-11-04 23:01:42 2019-11-04 23:03:27 t 1 1 152300 220 0.00 2019-11-04 23:03:26 2019-11-04 23:04:01 t 1 1 152305 220 0.00 2019-11-04 23:04:01 2019-11-04 23:05:02 t 1 1 152317 220 0.00 2019-11-04 23:09:23 2019-11-04 23:09:58 t 1 1 152321 220 0.00 2019-11-04 23:11:09 2019-11-04 23:12:54 t 1 1 152327 220 0.00 2019-11-04 23:14:32 2019-11-04 23:15:11 t 1 1 152330 220 0.00 2019-11-04 23:15:11 2019-11-04 23:15:43 t 1 1 152331 220 0.00 2019-11-04 23:15:43 2019-11-04 23:16:16 t 1 1 152334 220 0.00 2019-11-04 23:16:48 2019-11-04 23:17:21 t 1 1 152336 545 0.00 2019-11-04 23:00:56 2019-11-04 23:17:47 t 1 1 152337 220 0.00 2019-11-04 23:17:21 2019-11-04 23:17:56 t 1 1 152342 562 0.00 2019-11-04 23:18:34 2019-11-04 23:19:02 t 1 1 152344 481 0.00 2019-11-04 23:05:07 2019-11-04 23:19:26 t 1 1 152346 591 0.00 2019-11-04 23:19:42 2019-11-04 23:20:01 t 1 1 152348 220 0.00 2019-11-04 23:19:06 2019-11-04 23:20:50 t 1 1 152350 514 0.00 2019-11-04 22:57:36 2019-11-04 23:24:01 t 1 1 152355 585 0.00 2019-11-04 23:29:00 2019-11-04 23:30:42 t 1 1 152356 372 0.00 2019-11-04 23:26:54 2019-11-04 23:31:59 t 1 2 152359 562 0.00 2019-11-04 23:37:07 2019-11-04 23:37:28 t 1 1 152360 625 0.00 2019-11-04 23:15:20 2019-11-04 23:38:23 t 1 1 152362 544 0.00 2019-11-04 23:31:55 2019-11-04 23:38:57 t 1 2 152367 622 0.00 2019-11-04 23:36:52 2019-11-04 23:43:27 t 1 1 152369 512 0.00 2019-11-04 23:30:55 2019-11-04 23:47:48 t 1 1 152375 639 0.00 2019-11-04 22:57:04 2019-11-04 23:54:11 t 1 1 152381 639 0.00 2019-11-04 23:55:20 2019-11-04 23:55:33 t 1 1 152386 544 0.00 2019-11-04 23:41:01 2019-11-04 23:57:08 t 1 2 152387 639 0.00 2019-11-04 23:57:08 2019-11-04 23:57:24 t 1 1 152389 639 0.00 2019-11-04 23:57:41 2019-11-04 23:57:47 t 1 1 152390 587 0.00 2019-11-04 23:56:00 2019-11-04 23:57:58 t 1 1 152396 639 0.00 2019-11-04 23:59:57 2019-11-05 00:00:58 t 1 1 152398 512 0.00 2019-11-04 23:55:24 2019-11-05 00:02:22 t 1 1 152399 639 0.00 2019-11-05 00:01:35 2019-11-05 00:03:29 t 1 1 152404 622 0.00 2019-11-04 23:55:32 2019-11-05 00:05:07 t 1 1 152405 639 0.00 2019-11-05 00:05:35 2019-11-05 00:05:39 t 1 1 152408 639 0.00 2019-11-05 00:07:46 2019-11-05 00:08:02 t 1 1 152411 622 0.00 2019-11-05 00:05:07 2019-11-05 00:10:24 t 1 1 152414 587 0.00 2019-11-05 00:14:38 2019-11-05 00:16:21 t 1 1 152415 520 0.00 2019-11-05 00:19:12 2019-11-05 00:21:38 t 1 1 152419 412 0.00 2019-11-05 00:26:50 2019-11-05 00:28:09 t 1 1 152422 587 0.00 2019-11-05 00:16:36 2019-11-05 00:29:37 t 1 1 152423 412 0.00 2019-11-05 00:28:08 2019-11-05 00:30:04 t 1 1 152429 625 0.00 2019-11-05 00:34:24 2019-11-05 00:35:38 t 1 1 152436 639 0.00 2019-11-05 00:09:57 2019-11-05 00:45:07 t 1 1 152439 412 0.00 2019-11-05 00:29:09 2019-11-05 00:51:10 t 1 1 152440 220 0.00 2019-11-05 00:35:05 2019-11-05 00:52:28 t 1 2 152444 639 0.00 2019-11-05 00:57:17 2019-11-05 00:59:10 t 1 1 152447 562 0.00 2019-11-05 01:04:23 2019-11-05 01:04:41 t 1 1 152448 639 0.00 2019-11-05 01:03:50 2019-11-05 01:05:24 t 1 1 152451 526 0.00 2019-11-05 00:47:09 2019-11-05 01:06:27 t 1 1 152455 639 0.00 2019-11-05 01:07:52 2019-11-05 01:12:14 t 1 1 152456 562 0.00 2019-11-05 01:15:08 2019-11-05 01:15:24 t 1 1 152459 587 0.00 2019-11-05 00:46:46 2019-11-05 01:18:55 t 1 1 152464 408 0.00 2019-11-05 01:28:28 2019-11-05 01:33:00 t 1 1 152465 562 0.00 2019-11-05 01:36:28 2019-11-05 01:36:55 t 1 1 152469 562 0.00 2019-11-05 01:47:15 2019-11-05 01:47:36 t 1 1 152473 587 0.00 2019-11-05 01:53:35 2019-11-05 01:59:19 t 1 1 152479 587 0.00 2019-11-05 02:10:18 2019-11-05 02:27:24 t 1 1 152480 562 0.00 2019-11-05 02:27:43 2019-11-05 02:28:02 t 1 1 152487 589 0.00 2019-11-05 03:03:34 2019-11-05 03:04:10 t 1 1 152493 562 0.00 2019-11-05 03:50:25 2019-11-05 03:50:40 t 1 1 152496 622 0.00 2019-11-05 04:05:47 2019-11-05 04:06:49 t 1 1 152499 562 0.00 2019-11-05 04:19:26 2019-11-05 04:19:43 t 1 1 152501 562 0.00 2019-11-05 04:40:56 2019-11-05 04:41:12 t 1 1 152503 623 0.00 2019-11-05 04:46:53 2019-11-05 04:50:23 t 1 1 152505 623 0.00 2019-11-05 04:51:32 2019-11-05 04:52:03 t 1 1 152506 623 0.00 2019-11-05 04:53:28 2019-11-05 04:53:40 t 1 1 152507 623 0.00 2019-11-05 04:53:45 2019-11-05 04:53:47 t 1 1 152508 623 0.00 2019-11-05 04:54:02 2019-11-05 04:54:03 t 1 1 152509 623 0.00 2019-11-05 04:56:04 2019-11-05 04:56:19 t 1 1 152511 623 0.00 2019-11-05 04:59:07 2019-11-05 04:59:08 t 1 1 152512 562 0.00 2019-11-05 05:02:21 2019-11-05 05:02:38 t 1 1 152514 623 0.00 2019-11-05 05:02:26 2019-11-05 05:03:49 t 1 1 152516 623 0.00 2019-11-05 05:08:33 2019-11-05 05:08:36 t 1 1 152517 623 0.00 2019-11-05 05:09:20 2019-11-05 05:09:23 t 1 1 152518 623 0.00 2019-11-05 05:11:05 2019-11-05 05:11:06 t 1 1 152520 562 0.00 2019-11-05 05:13:05 2019-11-05 05:13:23 t 1 1 152521 623 0.00 2019-11-05 05:14:31 2019-11-05 05:15:45 t 1 1 152522 623 0.00 2019-11-05 05:14:10 2019-11-05 05:15:45 t 1 1 152523 623 0.00 2019-11-05 05:19:47 2019-11-05 05:20:19 t 1 1 152526 623 0.00 2019-11-05 05:24:30 2019-11-05 05:24:31 t 1 1 152527 619 0.00 2019-11-05 04:58:16 2019-11-05 05:25:44 t 1 1 152528 619 0.00 2019-11-05 05:26:04 2019-11-05 05:27:23 t 1 1 152529 623 0.00 2019-11-05 05:28:48 2019-11-05 05:28:50 t 1 1 152530 623 0.00 2019-11-05 05:29:34 2019-11-05 05:29:35 t 1 1 152531 625 0.00 2019-11-05 01:43:43 2019-11-05 05:30:18 t 1 1 152468 625 0.00 2019-11-05 01:38:02 2019-11-05 01:43:43 t 1 1 152470 587 0.00 2019-11-05 01:42:09 2019-11-05 01:49:57 t 1 1 152474 587 0.00 2019-11-05 01:59:19 2019-11-05 02:04:49 t 1 1 152475 562 0.00 2019-11-05 02:08:44 2019-11-05 02:09:01 t 1 1 152476 587 0.00 2019-11-05 02:04:49 2019-11-05 02:10:18 t 1 1 152482 562 0.00 2019-11-05 02:38:20 2019-11-05 02:38:46 t 1 1 152483 562 0.00 2019-11-05 02:49:08 2019-11-05 02:49:27 t 1 1 152484 587 0.00 2019-11-05 02:37:01 2019-11-05 02:53:01 t 1 1 152485 562 0.00 2019-11-05 02:59:48 2019-11-05 03:00:10 t 1 1 152491 562 0.00 2019-11-05 03:39:40 2019-11-05 03:39:58 t 1 1 152494 562 0.00 2019-11-05 03:57:59 2019-11-05 03:58:16 t 1 1 152497 562 0.00 2019-11-05 04:08:40 2019-11-05 04:08:58 t 1 1 152502 520 0.00 2019-11-05 04:42:55 2019-11-05 04:45:12 t 1 1 152504 562 0.00 2019-11-05 04:51:38 2019-11-05 04:51:55 t 1 1 152510 623 0.00 2019-11-05 04:56:19 2019-11-05 04:57:20 t 1 1 152513 623 0.00 2019-11-05 05:02:18 2019-11-05 05:03:45 t 1 1 152515 623 0.00 2019-11-05 05:04:01 2019-11-05 05:05:30 t 1 1 152519 623 0.00 2019-11-05 05:11:41 2019-11-05 05:11:42 t 1 1 152524 623 0.00 2019-11-05 05:19:36 2019-11-05 05:20:45 t 1 1 152525 562 0.00 2019-11-05 05:23:49 2019-11-05 05:24:06 t 1 1 152532 619 0.00 2019-11-05 05:27:23 2019-11-05 05:31:38 t 1 1 152533 623 0.00 2019-11-05 05:33:37 2019-11-05 05:34:51 t 1 1 152534 562 0.00 2019-11-05 05:34:33 2019-11-05 05:34:52 t 1 1 152535 623 0.00 2019-11-05 05:34:56 2019-11-05 05:34:58 t 1 1 152536 623 0.00 2019-11-05 05:36:45 2019-11-05 05:36:46 t 1 1 152537 623 0.00 2019-11-05 05:36:52 2019-11-05 05:36:53 t 1 1 152538 625 0.00 2019-11-05 05:30:18 2019-11-05 05:38:34 t 1 1 152539 619 0.00 2019-11-05 05:33:57 2019-11-05 05:39:08 t 1 1 152540 623 0.00 2019-11-05 05:39:45 2019-11-05 05:39:48 t 1 1 152541 619 0.00 2019-11-05 05:39:15 2019-11-05 05:44:24 t 1 1 152542 623 0.00 2019-11-05 05:44:53 2019-11-05 05:45:00 t 1 1 152543 562 0.00 2019-11-05 05:45:17 2019-11-05 05:45:35 t 1 1 152544 623 0.00 2019-11-05 05:50:01 2019-11-05 05:50:04 t 1 1 152545 623 0.00 2019-11-05 05:50:39 2019-11-05 05:50:40 t 1 1 152546 619 0.00 2019-11-05 05:47:11 2019-11-05 05:53:32 t 1 1 152547 623 0.00 2019-11-05 05:55:10 2019-11-05 05:55:10 t 1 1 152548 562 0.00 2019-11-05 05:56:00 2019-11-05 05:56:21 t 1 1 152549 430 0.00 2019-11-05 05:44:34 2019-11-05 05:56:33 t 1 1 152550 430 0.00 2019-11-05 05:56:38 2019-11-05 05:56:45 t 1 1 152551 430 0.00 2019-11-05 05:56:51 2019-11-05 05:56:57 t 1 1 152552 562 0.00 2019-11-05 05:57:43 2019-11-05 05:57:47 t 1 1 152553 430 0.00 2019-11-05 05:58:56 2019-11-05 05:58:58 t 1 1 152554 623 0.00 2019-11-05 06:00:12 2019-11-05 06:00:13 t 1 1 152555 430 0.00 2019-11-05 05:59:35 2019-11-05 06:00:52 t 1 1 152556 623 0.00 2019-11-05 06:02:19 2019-11-05 06:02:20 t 1 1 152557 623 0.00 2019-11-05 06:02:38 2019-11-05 06:02:51 t 1 1 152558 623 0.00 2019-11-05 06:04:25 2019-11-05 06:04:48 t 1 1 152559 622 0.00 2019-11-05 06:02:49 2019-11-05 06:05:09 t 1 1 152560 623 0.00 2019-11-05 06:05:15 2019-11-05 06:05:16 t 1 1 152561 639 0.00 2019-11-05 06:05:58 2019-11-05 06:06:59 t 1 1 152562 562 0.00 2019-11-05 06:06:44 2019-11-05 06:07:04 t 1 1 152563 639 0.00 2019-11-05 06:07:05 2019-11-05 06:07:10 t 1 1 152564 639 0.00 2019-11-05 06:08:07 2019-11-05 06:08:10 t 1 1 152565 623 0.00 2019-11-05 06:10:18 2019-11-05 06:10:22 t 1 1 152566 451 0.00 2019-11-05 05:58:57 2019-11-05 06:12:07 t 1 1 152567 379 0.00 2019-11-04 22:37:03 2019-11-05 06:13:07 t 1 1 152568 619 0.00 2019-11-05 06:09:40 2019-11-05 06:13:23 t 1 1 152569 623 0.00 2019-11-05 06:15:24 2019-11-05 06:15:29 t 1 1 152570 639 0.00 2019-11-05 06:15:16 2019-11-05 06:15:42 t 1 1 152571 520 0.00 2019-11-05 06:08:39 2019-11-05 06:16:04 t 1 1 152572 639 0.00 2019-11-05 06:15:42 2019-11-05 06:16:53 t 1 1 152573 562 0.00 2019-11-05 06:17:27 2019-11-05 06:17:49 t 1 1 152574 451 0.00 2019-11-05 06:12:07 2019-11-05 06:19:29 t 1 1 152575 220 0.00 2019-11-05 06:15:37 2019-11-05 06:19:56 t 1 1 152576 623 0.00 2019-11-05 06:20:28 2019-11-05 06:20:29 t 1 1 152577 639 0.00 2019-11-05 06:20:41 2019-11-05 06:20:57 t 1 1 152578 639 0.00 2019-11-05 06:21:05 2019-11-05 06:22:22 t 1 1 152579 639 0.00 2019-11-05 06:22:35 2019-11-05 06:22:40 t 1 1 152580 609 0.00 2019-11-05 06:18:02 2019-11-05 06:23:02 t 1 1 152581 639 0.00 2019-11-05 06:22:47 2019-11-05 06:23:51 t 1 1 152582 623 0.00 2019-11-05 06:24:08 2019-11-05 06:24:13 t 1 1 152583 562 0.00 2019-11-05 06:23:59 2019-11-05 06:24:25 t 1 1 152584 609 0.00 2019-11-05 06:23:01 2019-11-05 06:28:59 t 1 1 152585 516 0.00 2019-11-05 05:48:58 2019-11-05 06:30:46 t 1 1 152586 639 0.00 2019-11-05 06:30:50 2019-11-05 06:34:43 t 1 1 152587 562 0.00 2019-11-05 06:34:45 2019-11-05 06:35:07 t 1 1 152588 639 0.00 2019-11-05 06:35:47 2019-11-05 06:35:51 t 1 1 152589 639 0.00 2019-11-05 06:36:31 2019-11-05 06:36:39 t 1 1 152590 639 0.00 2019-11-05 06:36:45 2019-11-05 06:36:51 t 1 1 152591 623 0.00 2019-11-05 06:37:02 2019-11-05 06:37:11 t 1 1 152592 623 0.00 2019-11-05 06:37:24 2019-11-05 06:37:25 t 1 1 152593 609 0.00 2019-11-05 06:28:59 2019-11-05 06:38:03 t 1 1 152594 639 0.00 2019-11-05 06:38:20 2019-11-05 06:38:26 t 1 1 152595 639 0.00 2019-11-05 06:36:05 2019-11-05 06:38:45 t 1 1 152596 639 0.00 2019-11-05 06:38:48 2019-11-05 06:39:00 t 1 1 152597 639 0.00 2019-11-05 06:39:05 2019-11-05 06:39:12 t 1 1 152598 639 0.00 2019-11-05 06:39:17 2019-11-05 06:39:47 t 1 1 152599 639 0.00 2019-11-05 06:40:39 2019-11-05 06:40:43 t 1 1 152600 623 0.00 2019-11-05 06:41:07 2019-11-05 06:41:21 t 1 1 152601 639 0.00 2019-11-05 06:41:28 2019-11-05 06:41:31 t 1 1 152602 623 0.00 2019-11-05 06:42:11 2019-11-05 06:42:18 t 1 1 152603 639 0.00 2019-11-05 06:42:57 2019-11-05 06:43:33 t 1 1 152604 639 0.00 2019-11-05 06:44:22 2019-11-05 06:44:31 t 1 1 152605 562 0.00 2019-11-05 06:45:29 2019-11-05 06:45:56 t 1 1 152606 639 0.00 2019-11-05 06:46:29 2019-11-05 06:46:44 t 1 1 152607 639 0.00 2019-11-05 06:44:53 2019-11-05 06:46:45 t 1 1 152608 516 0.00 2019-11-05 06:34:52 2019-11-05 06:47:20 t 1 1 152609 623 0.00 2019-11-05 06:47:22 2019-11-05 06:47:24 t 1 1 152610 639 0.00 2019-11-05 06:46:50 2019-11-05 06:47:32 t 1 1 152611 625 0.00 2019-11-05 05:38:34 2019-11-05 06:47:41 t 1 1 152612 639 0.00 2019-11-05 06:47:42 2019-11-05 06:48:45 t 1 1 152613 609 0.00 2019-11-05 06:38:03 2019-11-05 06:49:21 t 1 1 152614 639 0.00 2019-11-05 06:49:41 2019-11-05 06:49:44 t 1 1 152615 639 0.00 2019-11-05 06:49:32 2019-11-05 06:50:33 t 1 1 152616 639 0.00 2019-11-05 06:52:02 2019-11-05 06:52:22 t 1 1 152617 623 0.00 2019-11-05 06:52:25 2019-11-05 06:52:28 t 1 1 152618 545 0.00 2019-11-05 06:49:09 2019-11-05 06:52:32 t 1 1 152619 639 0.00 2019-11-05 06:51:25 2019-11-05 06:52:45 t 1 1 152624 562 0.00 2019-11-05 06:56:11 2019-11-05 06:56:34 t 1 1 152627 623 0.00 2019-11-05 06:57:31 2019-11-05 06:57:32 t 1 1 152630 609 0.00 2019-11-05 06:49:21 2019-11-05 07:00:20 t 1 1 152631 623 0.00 2019-11-05 07:05:09 2019-11-05 07:05:22 t 1 1 152635 562 0.00 2019-11-05 07:06:57 2019-11-05 07:07:21 t 1 1 152641 562 0.00 2019-11-05 07:14:35 2019-11-05 07:14:55 t 1 1 152643 609 0.00 2019-11-05 07:07:24 2019-11-05 07:16:26 t 1 1 152644 619 0.00 2019-11-05 07:11:17 2019-11-05 07:16:55 t 1 1 152651 623 0.00 2019-11-05 07:22:49 2019-11-05 07:22:51 t 1 1 152652 623 0.00 2019-11-05 07:22:57 2019-11-05 07:22:58 t 1 1 152655 609 0.00 2019-11-05 07:16:26 2019-11-05 07:26:31 t 1 1 152660 609 0.00 2019-11-05 07:26:31 2019-11-05 07:32:03 t 1 1 152661 625 0.00 2019-11-05 06:47:41 2019-11-05 07:32:56 t 1 1 152666 551 0.00 2019-11-05 00:23:16 2019-11-05 07:34:52 t 1 1 152667 485 0.00 2019-11-05 07:31:02 2019-11-05 07:35:45 t 1 1 152668 562 0.00 2019-11-05 07:36:01 2019-11-05 07:36:23 t 1 1 152670 516 0.00 2019-11-05 07:36:33 2019-11-05 07:38:02 t 1 1 152671 623 0.00 2019-11-05 07:38:04 2019-11-05 07:38:19 t 1 1 152672 619 0.00 2019-11-05 07:38:32 2019-11-05 07:39:53 t 1 1 152673 416 0.00 2019-11-04 20:55:49 2019-11-05 07:40:23 t 1 1 152675 485 0.00 2019-11-05 07:35:44 2019-11-05 07:42:41 t 1 1 152677 556 0.00 2019-11-05 07:38:17 2019-11-05 07:44:14 t 1 1 152685 639 0.00 2019-11-05 07:51:24 2019-11-05 07:51:29 t 1 1 152686 639 0.00 2019-11-05 07:51:34 2019-11-05 07:51:42 t 1 1 152691 562 0.00 2019-11-05 07:57:30 2019-11-05 07:57:53 t 1 1 152694 430 0.00 2019-11-05 07:58:36 2019-11-05 07:58:41 t 1 1 152695 639 0.00 2019-11-05 07:58:53 2019-11-05 07:59:15 t 1 1 152696 623 0.00 2019-11-05 08:00:37 2019-11-05 08:00:55 t 1 1 152697 430 0.00 2019-11-05 08:01:00 2019-11-05 08:01:05 t 1 1 152700 591 0.00 2019-11-05 07:55:55 2019-11-05 08:03:55 t 1 1 152702 430 0.00 2019-11-05 08:05:04 2019-11-05 08:05:11 t 1 1 152705 430 0.00 2019-11-05 08:07:17 2019-11-05 08:07:28 t 1 1 152708 430 0.00 2019-11-05 08:09:05 2019-11-05 08:09:07 t 1 1 152710 430 0.00 2019-11-05 08:09:43 2019-11-05 08:11:04 t 1 1 152712 591 0.00 2019-11-05 08:06:10 2019-11-05 08:11:33 t 1 1 152715 639 0.00 2019-11-05 08:14:20 2019-11-05 08:14:48 t 1 1 152716 430 0.00 2019-11-05 08:13:30 2019-11-05 08:15:39 t 1 1 152720 623 0.00 2019-11-05 08:10:33 2019-11-05 08:17:35 t 1 1 152721 639 0.00 2019-11-05 08:17:39 2019-11-05 08:18:00 t 1 1 152722 430 0.00 2019-11-05 08:18:26 2019-11-05 08:18:33 t 1 1 152724 623 0.00 2019-11-05 08:18:36 2019-11-05 08:19:02 t 1 1 152725 623 0.00 2019-11-05 08:19:10 2019-11-05 08:19:35 t 1 1 152726 562 0.00 2019-11-05 08:18:41 2019-11-05 08:19:58 t 1 1 152729 639 0.00 2019-11-05 08:21:04 2019-11-05 08:21:27 t 1 1 152731 623 0.00 2019-11-05 08:22:11 2019-11-05 08:22:20 t 1 1 152733 623 0.00 2019-11-05 08:22:31 2019-11-05 08:22:58 t 1 1 152737 562 0.00 2019-11-05 08:22:28 2019-11-05 08:23:31 t 1 1 152744 623 0.00 2019-11-05 08:26:15 2019-11-05 08:26:25 t 1 1 152749 639 0.00 2019-11-05 08:27:39 2019-11-05 08:27:49 t 1 1 152750 639 0.00 2019-11-05 08:27:57 2019-11-05 08:28:09 t 1 1 152751 639 0.00 2019-11-05 08:28:19 2019-11-05 08:28:30 t 1 1 152753 639 0.00 2019-11-05 08:29:19 2019-11-05 08:29:31 t 1 1 152759 639 0.00 2019-11-05 08:32:13 2019-11-05 08:32:19 t 1 1 152760 623 0.00 2019-11-05 08:32:25 2019-11-05 08:32:37 t 1 1 152762 639 0.00 2019-11-05 08:32:30 2019-11-05 08:32:44 t 1 1 152764 623 0.00 2019-11-05 08:35:44 2019-11-05 08:35:53 t 1 1 152767 639 0.00 2019-11-05 08:36:33 2019-11-05 08:36:42 t 1 1 152771 623 0.00 2019-11-05 08:41:39 2019-11-05 08:41:49 t 1 1 152773 623 0.00 2019-11-05 08:43:24 2019-11-05 08:43:25 t 1 1 152777 591 0.00 2019-11-05 08:39:30 2019-11-05 08:44:54 t 1 1 152781 430 0.00 2019-11-05 08:29:07 2019-11-05 08:46:37 t 1 1 152782 430 0.00 2019-11-05 08:46:42 2019-11-05 08:46:48 t 1 1 152785 591 0.00 2019-11-05 08:44:54 2019-11-05 08:47:13 t 1 1 152788 485 0.00 2019-11-05 08:41:49 2019-11-05 08:47:24 t 1 1 152789 430 0.00 2019-11-05 08:47:32 2019-11-05 08:47:41 t 1 1 152793 639 0.00 2019-11-05 08:38:04 2019-11-05 08:50:10 t 1 1 152810 639 0.00 2019-11-05 08:53:39 2019-11-05 08:54:07 t 1 1 152813 430 0.00 2019-11-05 08:55:36 2019-11-05 08:55:43 t 1 1 152816 623 0.00 2019-11-05 08:56:14 2019-11-05 08:56:23 t 1 1 152820 639 0.00 2019-11-05 08:57:06 2019-11-05 08:58:03 t 1 1 152821 562 0.00 2019-11-05 08:58:12 2019-11-05 08:58:25 t 1 1 152822 623 0.00 2019-11-05 08:58:34 2019-11-05 08:58:39 t 1 1 152823 430 0.00 2019-11-05 08:58:52 2019-11-05 08:59:05 t 1 1 152825 430 0.00 2019-11-05 08:58:36 2019-11-05 08:59:46 t 1 1 152827 623 0.00 2019-11-05 09:00:57 2019-11-05 09:01:15 t 1 1 152829 623 0.00 2019-11-05 09:01:23 2019-11-05 09:01:25 t 1 1 152830 597 0.00 2019-11-05 09:00:34 2019-11-05 09:02:05 t 1 1 152832 623 0.00 2019-11-05 09:01:38 2019-11-05 09:02:48 t 1 1 152833 639 0.00 2019-11-05 08:58:13 2019-11-05 09:02:59 t 1 1 152835 589 0.00 2019-11-05 09:04:55 2019-11-05 09:05:03 t 1 1 152842 516 0.00 2019-11-05 08:49:07 2019-11-05 09:09:14 t 1 1 152844 639 0.00 2019-11-05 09:10:00 2019-11-05 09:10:08 t 1 1 152848 430 0.00 2019-11-05 09:12:26 2019-11-05 09:12:38 t 1 1 152850 379 0.00 2019-11-05 08:52:59 2019-11-05 09:12:54 t 1 1 152852 430 0.00 2019-11-05 09:13:06 2019-11-05 09:13:29 t 1 1 152854 430 0.00 2019-11-05 09:13:34 2019-11-05 09:13:41 t 1 1 152855 623 0.00 2019-11-05 09:13:52 2019-11-05 09:13:54 t 1 1 152856 430 0.00 2019-11-05 09:13:54 2019-11-05 09:14:05 t 1 1 152858 623 0.00 2019-11-05 09:14:30 2019-11-05 09:15:08 t 1 1 152860 585 0.00 2019-11-05 09:11:15 2019-11-05 09:16:05 t 1 1 152866 430 0.00 2019-11-05 09:20:08 2019-11-05 09:20:08 t 1 1 152867 485 0.00 2019-11-05 09:17:19 2019-11-05 09:21:15 t 1 1 152874 623 0.00 2019-11-05 09:25:12 2019-11-05 09:25:13 t 1 1 152876 623 0.00 2019-11-05 09:27:46 2019-11-05 09:27:50 t 1 1 152879 581 0.00 2019-11-05 09:15:05 2019-11-05 09:29:47 t 1 1 152880 619 0.00 2019-11-05 09:28:43 2019-11-05 09:30:05 t 1 1 152884 591 0.00 2019-11-05 09:26:51 2019-11-05 09:32:37 t 1 1 152885 581 0.00 2019-11-05 09:31:16 2019-11-05 09:33:06 t 1 1 152887 639 0.00 2019-11-05 09:32:00 2019-11-05 09:33:35 t 1 1 152893 639 0.00 2019-11-05 09:34:40 2019-11-05 09:34:51 t 1 1 152896 512 0.00 2019-11-05 09:34:49 2019-11-05 09:38:07 t 1 1 152901 416 0.00 2019-11-05 09:41:10 2019-11-05 09:42:30 t 1 1 152902 639 0.00 2019-11-05 09:36:12 2019-11-05 09:43:55 t 1 1 152907 639 0.00 2019-11-05 09:46:59 2019-11-05 09:48:13 t 1 1 152909 639 0.00 2019-11-05 09:48:38 2019-11-05 09:50:08 t 1 1 152910 562 0.00 2019-11-05 09:50:14 2019-11-05 09:50:50 t 1 1 152620 639 0.00 2019-11-05 06:52:34 2019-11-05 06:52:46 t 1 1 152621 639 0.00 2019-11-05 06:53:14 2019-11-05 06:53:22 t 1 1 152622 520 0.00 2019-11-05 06:36:37 2019-11-05 06:54:08 t 1 1 152625 639 0.00 2019-11-05 06:56:13 2019-11-05 06:56:40 t 1 1 152626 619 0.00 2019-11-05 06:52:11 2019-11-05 06:57:18 t 1 1 152628 639 0.00 2019-11-05 06:57:07 2019-11-05 06:57:47 t 1 1 152629 639 0.00 2019-11-05 06:58:51 2019-11-05 06:58:57 t 1 1 152636 609 0.00 2019-11-05 07:00:20 2019-11-05 07:07:24 t 1 1 152637 623 0.00 2019-11-05 07:07:39 2019-11-05 07:07:41 t 1 1 152639 639 0.00 2019-11-05 06:59:27 2019-11-05 07:13:32 t 1 1 152642 639 0.00 2019-11-05 07:15:37 2019-11-05 07:15:55 t 1 1 152647 545 0.00 2019-11-05 07:11:52 2019-11-05 07:18:01 t 1 1 152654 485 0.00 2019-11-05 07:16:54 2019-11-05 07:25:52 t 1 1 152656 412 0.00 2019-11-05 00:51:17 2019-11-05 07:27:24 t 1 1 152657 623 0.00 2019-11-05 07:27:51 2019-11-05 07:27:52 t 1 1 152659 516 0.00 2019-11-05 06:47:20 2019-11-05 07:31:44 t 1 1 152663 597 0.00 2019-11-05 07:29:08 2019-11-05 07:33:48 t 1 1 152664 623 0.00 2019-11-05 07:34:22 2019-11-05 07:34:34 t 1 1 152669 627 0.00 2019-11-05 07:21:19 2019-11-05 07:36:25 t 1 1 152674 623 0.00 2019-11-05 07:41:18 2019-11-05 07:41:32 t 1 1 152676 623 0.00 2019-11-05 07:43:09 2019-11-05 07:43:12 t 1 1 152678 551 0.00 2019-11-05 07:34:52 2019-11-05 07:44:43 t 1 1 152679 627 0.00 2019-11-05 07:36:25 2019-11-05 07:45:42 t 1 1 152680 623 0.00 2019-11-05 07:45:59 2019-11-05 07:46:13 t 1 1 152684 639 0.00 2019-11-05 07:35:40 2019-11-05 07:49:57 t 1 1 152687 623 0.00 2019-11-05 07:53:32 2019-11-05 07:53:43 t 1 1 152688 623 0.00 2019-11-05 07:53:55 2019-11-05 07:53:57 t 1 1 152693 623 0.00 2019-11-05 07:58:23 2019-11-05 07:58:24 t 1 1 152701 430 0.00 2019-11-05 08:02:17 2019-11-05 08:04:59 t 1 1 152704 623 0.00 2019-11-05 08:03:26 2019-11-05 08:07:00 t 1 1 152706 430 0.00 2019-11-05 08:08:30 2019-11-05 08:08:32 t 1 1 152711 516 0.00 2019-11-05 08:00:35 2019-11-05 08:11:07 t 1 1 152714 639 0.00 2019-11-05 07:59:31 2019-11-05 08:14:04 t 1 1 152727 485 0.00 2019-11-05 08:18:29 2019-11-05 08:21:13 t 1 1 152730 430 0.00 2019-11-05 08:22:12 2019-11-05 08:22:14 t 1 1 152732 639 0.00 2019-11-05 08:22:14 2019-11-05 08:22:25 t 1 1 152734 639 0.00 2019-11-05 08:22:47 2019-11-05 08:23:03 t 1 1 152735 430 0.00 2019-11-05 08:23:10 2019-11-05 08:23:12 t 1 1 152740 623 0.00 2019-11-05 08:25:19 2019-11-05 08:25:31 t 1 1 152745 639 0.00 2019-11-05 08:26:12 2019-11-05 08:26:38 t 1 1 152748 623 0.00 2019-11-05 08:27:26 2019-11-05 08:27:36 t 1 1 152752 430 0.00 2019-11-05 08:28:30 2019-11-05 08:28:37 t 1 1 152754 562 0.00 2019-11-05 08:29:30 2019-11-05 08:29:49 t 1 1 152757 639 0.00 2019-11-05 08:31:28 2019-11-05 08:31:34 t 1 1 152758 639 0.00 2019-11-05 08:31:57 2019-11-05 08:32:04 t 1 1 152763 585 0.00 2019-11-05 08:19:16 2019-11-05 08:34:29 t 1 1 152765 639 0.00 2019-11-05 08:33:20 2019-11-05 08:35:56 t 1 1 152766 623 0.00 2019-11-05 08:36:19 2019-11-05 08:36:22 t 1 1 152769 562 0.00 2019-11-05 08:40:15 2019-11-05 08:40:32 t 1 1 152772 623 0.00 2019-11-05 08:42:50 2019-11-05 08:43:03 t 1 1 152774 623 0.00 2019-11-05 08:43:51 2019-11-05 08:44:01 t 1 1 152779 623 0.00 2019-11-05 08:45:10 2019-11-05 08:45:11 t 1 1 152783 623 0.00 2019-11-05 08:46:40 2019-11-05 08:46:49 t 1 1 152784 623 0.00 2019-11-05 08:46:55 2019-11-05 08:47:07 t 1 1 152786 623 0.00 2019-11-05 08:47:12 2019-11-05 08:47:20 t 1 1 152790 485 0.00 2019-11-05 08:47:24 2019-11-05 08:48:27 t 1 1 152792 623 0.00 2019-11-05 08:48:22 2019-11-05 08:48:56 t 1 1 152795 633 0.00 2019-11-05 08:43:32 2019-11-05 08:50:27 t 1 1 152796 430 0.00 2019-11-05 08:50:30 2019-11-05 08:50:36 t 1 1 152798 639 0.00 2019-11-05 08:50:47 2019-11-05 08:50:49 t 1 1 152800 623 0.00 2019-11-05 08:51:08 2019-11-05 08:51:20 t 1 1 152802 623 0.00 2019-11-05 08:51:28 2019-11-05 08:51:38 t 1 1 152805 639 0.00 2019-11-05 08:51:50 2019-11-05 08:51:57 t 1 1 152808 562 0.00 2019-11-05 08:52:45 2019-11-05 08:53:48 t 1 1 152809 430 0.00 2019-11-05 08:53:58 2019-11-05 08:54:05 t 1 1 152812 639 0.00 2019-11-05 08:54:07 2019-11-05 08:55:08 t 1 1 152814 623 0.00 2019-11-05 08:54:53 2019-11-05 08:55:49 t 1 1 152819 623 0.00 2019-11-05 08:57:28 2019-11-05 08:57:29 t 1 1 152826 623 0.00 2019-11-05 09:00:12 2019-11-05 09:00:14 t 1 1 152828 430 0.00 2019-11-05 09:00:15 2019-11-05 09:01:22 t 1 1 152837 591 0.00 2019-11-05 08:50:15 2019-11-05 09:06:36 t 1 1 152840 430 0.00 2019-11-05 09:08:56 2019-11-05 09:09:03 t 1 1 152846 639 0.00 2019-11-05 09:10:42 2019-11-05 09:10:55 t 1 1 152849 639 0.00 2019-11-05 09:12:18 2019-11-05 09:12:48 t 1 1 152857 615 0.00 2019-11-05 09:11:58 2019-11-05 09:14:57 t 1 1 152859 623 0.00 2019-11-05 09:13:46 2019-11-05 09:15:46 t 1 1 152862 430 0.00 2019-11-05 09:16:24 2019-11-05 09:16:30 t 1 1 152864 562 0.00 2019-11-05 09:18:56 2019-11-05 09:19:11 t 1 1 152870 623 0.00 2019-11-05 09:22:08 2019-11-05 09:22:09 t 1 1 152871 485 0.00 2019-11-05 09:21:15 2019-11-05 09:23:11 t 1 1 152872 416 0.00 2019-11-05 07:40:23 2019-11-05 09:23:58 t 1 1 152878 623 0.00 2019-11-05 09:28:02 2019-11-05 09:28:09 t 1 1 152882 639 0.00 2019-11-05 09:13:19 2019-11-05 09:31:26 t 1 1 152886 562 0.00 2019-11-05 09:32:45 2019-11-05 09:33:20 t 1 1 152888 611 0.00 2019-11-05 09:26:19 2019-11-05 09:33:40 t 1 1 152892 581 0.00 2019-11-05 09:33:46 2019-11-05 09:34:46 t 1 1 152894 623 0.00 2019-11-05 09:35:46 2019-11-05 09:35:56 t 1 1 152895 416 0.00 2019-11-05 09:23:58 2019-11-05 09:36:46 t 1 1 152897 585 0.00 2019-11-05 09:28:34 2019-11-05 09:38:14 t 1 1 152898 416 0.00 2019-11-05 09:38:03 2019-11-05 09:41:02 t 1 1 152899 551 0.00 2019-11-05 08:39:25 2019-11-05 09:41:20 t 1 1 152900 581 0.00 2019-11-05 09:41:14 2019-11-05 09:41:53 t 1 1 152904 623 0.00 2019-11-05 09:39:08 2019-11-05 09:44:23 t 1 1 152906 639 0.00 2019-11-05 09:44:44 2019-11-05 09:46:56 t 1 1 152908 416 0.00 2019-11-05 09:42:48 2019-11-05 09:48:20 t 1 1 152911 581 0.00 2019-11-05 09:51:04 2019-11-05 09:51:58 t 1 1 152913 623 0.00 2019-11-05 09:44:22 2019-11-05 09:52:31 t 1 1 152914 581 0.00 2019-11-05 09:55:32 2019-11-05 09:55:49 t 1 1 152915 581 0.00 2019-11-05 09:56:12 2019-11-05 09:56:13 t 1 1 152918 639 0.00 2019-11-05 09:50:25 2019-11-05 09:58:37 t 1 1 152924 562 0.00 2019-11-05 10:00:52 2019-11-05 10:01:50 t 1 1 152930 581 0.00 2019-11-05 10:06:39 2019-11-05 10:06:56 t 1 1 152933 623 0.00 2019-11-05 10:07:24 2019-11-05 10:07:39 t 1 1 152934 623 0.00 2019-11-05 10:07:42 2019-11-05 10:08:01 t 1 1 152948 623 0.00 2019-11-05 10:21:35 2019-11-05 10:21:52 t 1 1 152949 581 0.00 2019-11-05 10:21:43 2019-11-05 10:22:43 t 1 1 152957 623 0.00 2019-11-05 10:26:05 2019-11-05 10:26:33 t 1 1 152623 520 0.00 2019-11-05 06:54:08 2019-11-05 06:55:57 t 1 1 152632 623 0.00 2019-11-05 07:05:34 2019-11-05 07:05:36 t 1 1 152633 520 0.00 2019-11-05 06:55:57 2019-11-05 07:06:00 t 1 1 152634 520 0.00 2019-11-05 07:06:00 2019-11-05 07:07:16 t 1 1 152638 623 0.00 2019-11-05 07:12:43 2019-11-05 07:12:45 t 1 1 152640 639 0.00 2019-11-05 07:14:12 2019-11-05 07:14:37 t 1 1 152645 538 0.00 2019-11-04 22:05:24 2019-11-05 07:17:15 t 1 1 152646 623 0.00 2019-11-05 07:17:46 2019-11-05 07:17:49 t 1 1 152648 538 0.00 2019-11-05 07:17:17 2019-11-05 07:18:44 t 1 1 152649 639 0.00 2019-11-05 07:20:03 2019-11-05 07:21:04 t 1 1 152650 639 0.00 2019-11-05 07:21:07 2019-11-05 07:21:20 t 1 1 152653 562 0.00 2019-11-05 07:25:20 2019-11-05 07:25:40 t 1 1 152658 485 0.00 2019-11-05 07:25:52 2019-11-05 07:31:02 t 1 1 152662 623 0.00 2019-11-05 07:32:53 2019-11-05 07:33:01 t 1 1 152665 639 0.00 2019-11-05 07:21:26 2019-11-05 07:34:48 t 1 1 152681 485 0.00 2019-11-05 07:42:41 2019-11-05 07:46:18 t 1 1 152682 562 0.00 2019-11-05 07:46:46 2019-11-05 07:47:08 t 1 1 152683 623 0.00 2019-11-05 07:48:12 2019-11-05 07:48:19 t 1 1 152689 639 0.00 2019-11-05 07:56:29 2019-11-05 07:57:07 t 1 1 152690 639 0.00 2019-11-05 07:57:21 2019-11-05 07:57:52 t 1 1 152692 430 0.00 2019-11-05 07:51:31 2019-11-05 07:58:17 t 1 1 152698 430 0.00 2019-11-05 08:01:16 2019-11-05 08:01:29 t 1 1 152699 623 0.00 2019-11-05 08:02:04 2019-11-05 08:02:07 t 1 1 152703 430 0.00 2019-11-05 08:06:24 2019-11-05 08:06:37 t 1 1 152707 562 0.00 2019-11-05 08:08:17 2019-11-05 08:08:38 t 1 1 152709 430 0.00 2019-11-05 08:09:20 2019-11-05 08:09:22 t 1 1 152713 485 0.00 2019-11-05 08:10:02 2019-11-05 08:11:54 t 1 1 152717 430 0.00 2019-11-05 08:15:46 2019-11-05 08:15:53 t 1 1 152718 639 0.00 2019-11-05 08:16:09 2019-11-05 08:16:53 t 1 1 152719 430 0.00 2019-11-05 08:17:11 2019-11-05 08:17:13 t 1 1 152723 430 0.00 2019-11-05 08:18:38 2019-11-05 08:18:59 t 1 1 152728 430 0.00 2019-11-05 08:21:02 2019-11-05 08:21:15 t 1 1 152736 639 0.00 2019-11-05 08:23:11 2019-11-05 08:23:14 t 1 1 152738 639 0.00 2019-11-05 08:23:33 2019-11-05 08:23:40 t 1 1 152739 639 0.00 2019-11-05 08:24:17 2019-11-05 08:24:22 t 1 1 152741 639 0.00 2019-11-05 08:24:38 2019-11-05 08:25:42 t 1 1 152742 639 0.00 2019-11-05 08:25:59 2019-11-05 08:26:04 t 1 1 152743 516 0.00 2019-11-05 08:11:07 2019-11-05 08:26:18 t 1 1 152746 591 0.00 2019-11-05 08:11:33 2019-11-05 08:26:55 t 1 1 152747 639 0.00 2019-11-05 08:27:17 2019-11-05 08:27:19 t 1 1 152755 623 0.00 2019-11-05 08:30:45 2019-11-05 08:30:48 t 1 1 152756 623 0.00 2019-11-05 08:31:10 2019-11-05 08:31:22 t 1 1 152761 623 0.00 2019-11-05 08:32:42 2019-11-05 08:32:43 t 1 1 152768 623 0.00 2019-11-05 08:39:17 2019-11-05 08:39:26 t 1 1 152770 585 0.00 2019-11-05 08:34:29 2019-11-05 08:40:44 t 1 1 152775 564 0.00 2019-11-05 08:08:46 2019-11-05 08:44:24 t 1 1 152776 623 0.00 2019-11-05 08:44:49 2019-11-05 08:44:50 t 1 1 152778 623 0.00 2019-11-05 08:45:03 2019-11-05 08:45:04 t 1 1 152780 623 0.00 2019-11-05 08:46:02 2019-11-05 08:46:13 t 1 1 152787 597 0.00 2019-11-05 08:45:31 2019-11-05 08:47:22 t 1 1 152791 481 0.00 2019-11-05 07:26:36 2019-11-05 08:48:54 t 1 1 152794 430 0.00 2019-11-05 08:47:46 2019-11-05 08:50:25 t 1 1 152797 639 0.00 2019-11-05 08:50:30 2019-11-05 08:50:39 t 1 1 152799 633 0.00 2019-11-05 08:50:27 2019-11-05 08:51:03 t 1 1 152801 562 0.00 2019-11-05 08:50:58 2019-11-05 08:51:24 t 1 1 152803 639 0.00 2019-11-05 08:50:57 2019-11-05 08:51:42 t 1 1 152804 623 0.00 2019-11-05 08:51:50 2019-11-05 08:51:53 t 1 1 152806 625 0.00 2019-11-05 07:33:36 2019-11-05 08:52:07 t 1 1 152807 639 0.00 2019-11-05 08:52:07 2019-11-05 08:53:07 t 1 1 152811 639 0.00 2019-11-05 08:54:24 2019-11-05 08:54:38 t 1 1 152815 430 0.00 2019-11-05 08:56:04 2019-11-05 08:56:17 t 1 1 152817 639 0.00 2019-11-05 08:54:54 2019-11-05 08:57:01 t 1 1 152818 430 0.00 2019-11-05 08:57:17 2019-11-05 08:57:20 t 1 1 152824 623 0.00 2019-11-05 08:59:37 2019-11-05 08:59:42 t 1 1 152831 430 0.00 2019-11-05 09:02:21 2019-11-05 09:02:24 t 1 1 152834 639 0.00 2019-11-05 09:03:04 2019-11-05 09:03:49 t 1 1 152836 589 0.00 2019-11-05 09:05:06 2019-11-05 09:05:51 t 1 1 152838 639 0.00 2019-11-05 09:03:58 2019-11-05 09:06:56 t 1 1 152839 639 0.00 2019-11-05 09:07:04 2019-11-05 09:07:13 t 1 1 152841 562 0.00 2019-11-05 09:08:51 2019-11-05 09:09:08 t 1 1 152843 639 0.00 2019-11-05 09:09:33 2019-11-05 09:10:00 t 1 1 152845 639 0.00 2019-11-05 09:10:13 2019-11-05 09:10:35 t 1 1 152847 615 0.00 2019-11-05 09:04:27 2019-11-05 09:11:58 t 1 1 152851 639 0.00 2019-11-05 09:12:54 2019-11-05 09:12:56 t 1 1 152853 623 0.00 2019-11-05 09:02:57 2019-11-05 09:13:39 t 1 1 152861 623 0.00 2019-11-05 09:16:14 2019-11-05 09:16:22 t 1 1 152863 430 0.00 2019-11-05 09:18:57 2019-11-05 09:19:04 t 1 1 152865 430 0.00 2019-11-05 09:19:09 2019-11-05 09:19:16 t 1 1 152868 430 0.00 2019-11-05 09:20:08 2019-11-05 09:21:27 t 1 1 152869 623 0.00 2019-11-05 09:21:27 2019-11-05 09:21:57 t 1 1 152873 623 0.00 2019-11-05 09:22:31 2019-11-05 09:24:22 t 1 1 152875 623 0.00 2019-11-05 09:25:26 2019-11-05 09:25:40 t 1 1 152877 562 0.00 2019-11-05 09:27:37 2019-11-05 09:27:58 t 1 1 152881 623 0.00 2019-11-05 09:30:14 2019-11-05 09:30:19 t 1 1 152883 639 0.00 2019-11-05 09:31:26 2019-11-05 09:31:53 t 1 1 152889 625 0.00 2019-11-05 08:52:07 2019-11-05 09:33:41 t 1 1 152890 562 0.00 2019-11-05 09:33:29 2019-11-05 09:34:07 t 1 1 152891 639 0.00 2019-11-05 09:34:17 2019-11-05 09:34:30 t 1 1 152903 562 0.00 2019-11-05 09:41:37 2019-11-05 09:44:09 t 1 1 152905 456 0.00 2019-11-05 09:31:16 2019-11-05 09:45:26 t 1 1 152912 516 0.00 2019-11-05 09:37:45 2019-11-05 09:52:01 t 1 1 152916 581 0.00 2019-11-05 09:57:56 2019-11-05 09:57:59 t 1 1 152919 625 0.00 2019-11-05 09:34:22 2019-11-05 09:58:55 t 1 1 152922 485 0.00 2019-11-05 09:29:10 2019-11-05 10:00:45 t 1 1 152925 485 0.00 2019-11-05 10:00:45 2019-11-05 10:01:55 t 1 1 152926 623 0.00 2019-11-05 10:02:38 2019-11-05 10:02:47 t 1 1 152927 623 0.00 2019-11-05 10:05:03 2019-11-05 10:05:15 t 1 1 152928 639 0.00 2019-11-05 09:58:58 2019-11-05 10:06:02 t 1 1 152932 623 0.00 2019-11-05 10:07:17 2019-11-05 10:07:19 t 1 1 152937 581 0.00 2019-11-05 10:10:51 2019-11-05 10:11:30 t 1 1 152939 639 0.00 2019-11-05 10:06:12 2019-11-05 10:14:59 t 1 1 152944 639 0.00 2019-11-05 10:17:26 2019-11-05 10:17:40 t 1 1 152946 639 0.00 2019-11-05 10:19:35 2019-11-05 10:21:27 t 1 1 152951 581 0.00 2019-11-05 10:23:02 2019-11-05 10:23:39 t 1 1 152952 623 0.00 2019-11-05 10:23:27 2019-11-05 10:23:58 t 1 1 152954 581 0.00 2019-11-05 10:24:31 2019-11-05 10:25:17 t 1 1 152956 623 0.00 2019-11-05 10:25:41 2019-11-05 10:25:47 t 1 1 152917 518 0.00 2019-11-05 09:32:14 2019-11-05 09:58:02 t 1 2 152920 581 0.00 2019-11-05 09:59:44 2019-11-05 09:59:49 t 1 1 152921 623 0.00 2019-11-05 09:52:31 2019-11-05 10:00:26 t 1 1 152923 581 0.00 2019-11-05 10:00:57 2019-11-05 10:01:38 t 1 1 152929 623 0.00 2019-11-05 10:06:27 2019-11-05 10:06:41 t 1 1 152931 562 0.00 2019-11-05 10:05:48 2019-11-05 10:07:16 t 1 1 152935 581 0.00 2019-11-05 10:08:36 2019-11-05 10:08:40 t 1 1 152936 581 0.00 2019-11-05 10:09:12 2019-11-05 10:09:16 t 1 1 152938 581 0.00 2019-11-05 10:13:39 2019-11-05 10:13:48 t 1 1 152940 562 0.00 2019-11-05 10:14:55 2019-11-05 10:15:16 t 1 1 152941 220 0.00 2019-11-05 08:05:14 2019-11-05 10:16:10 t 1 1 152942 639 0.00 2019-11-05 10:16:21 2019-11-05 10:16:24 t 1 1 152943 639 0.00 2019-11-05 10:16:35 2019-11-05 10:17:08 t 1 1 152945 544 0.00 2019-11-05 10:16:17 2019-11-05 10:19:22 t 1 2 152947 562 0.00 2019-11-05 10:21:31 2019-11-05 10:21:52 t 1 1 152950 615 0.00 2019-11-05 10:18:55 2019-11-05 10:23:39 t 1 1 152953 639 0.00 2019-11-05 10:23:09 2019-11-05 10:24:00 t 1 1 152955 623 0.00 2019-11-05 10:23:58 2019-11-05 10:25:36 t 1 1 152959 639 0.00 2019-11-05 10:24:07 2019-11-05 10:27:07 t 1 1 152961 623 0.00 2019-11-05 10:26:39 2019-11-05 10:28:46 t 1 1 152962 581 0.00 2019-11-05 10:29:51 2019-11-05 10:29:57 t 1 1 152968 445 0.00 2019-11-05 10:25:56 2019-11-05 10:34:06 t 1 1 152970 512 0.00 2019-11-05 09:47:37 2019-11-05 10:36:03 t 1 1 152971 445 0.00 2019-11-05 10:34:05 2019-11-05 10:37:39 t 1 1 152973 562 0.00 2019-11-05 10:39:27 2019-11-05 10:39:52 t 1 1 152979 562 0.00 2019-11-05 10:40:05 2019-11-05 10:46:47 t 1 1 152981 587 0.00 2019-11-05 10:48:15 2019-11-05 10:48:51 t 1 1 152982 615 0.00 2019-11-05 10:33:59 2019-11-05 10:49:35 t 1 1 152984 591 0.00 2019-11-05 10:49:11 2019-11-05 10:50:47 t 1 1 152987 585 0.00 2019-11-05 10:48:43 2019-11-05 10:52:42 t 1 1 152993 512 0.00 2019-11-05 10:45:56 2019-11-05 11:04:35 t 1 1 152997 445 0.00 2019-11-05 10:53:44 2019-11-05 11:06:28 t 1 1 152999 516 0.00 2019-11-05 11:04:10 2019-11-05 11:08:06 t 1 1 153006 544 0.00 2019-11-05 10:28:18 2019-11-05 11:18:26 t 1 2 153009 220 0.00 2019-11-05 10:58:30 2019-11-05 11:21:54 t 1 2 153013 615 0.00 2019-11-05 11:27:24 2019-11-05 11:28:55 t 1 1 153014 528 0.00 2019-11-05 11:16:23 2019-11-05 11:29:53 t 1 1 153018 512 0.00 2019-11-05 11:25:23 2019-11-05 11:35:35 t 1 1 153023 395 0.00 2019-11-05 11:38:51 2019-11-05 11:39:55 t 1 2 153024 625 0.00 2019-11-05 11:35:50 2019-11-05 11:40:22 t 1 1 153028 591 0.00 2019-11-05 11:44:11 2019-11-05 11:46:54 t 1 1 153031 625 0.00 2019-11-05 11:40:29 2019-11-05 11:52:31 t 1 1 153035 512 0.00 2019-11-05 11:35:53 2019-11-05 11:56:30 t 1 1 153036 562 0.00 2019-11-05 11:57:50 2019-11-05 11:59:37 t 1 1 153037 619 0.00 2019-11-05 11:56:11 2019-11-05 12:00:29 t 1 1 153042 562 0.00 2019-11-05 12:04:40 2019-11-05 12:05:04 t 1 1 153043 562 0.00 2019-11-05 12:09:46 2019-11-05 12:10:00 t 1 1 153045 528 0.00 2019-11-05 12:04:13 2019-11-05 12:10:54 t 1 1 153049 615 0.00 2019-11-05 12:10:35 2019-11-05 12:16:44 t 1 1 153055 622 0.00 2019-11-05 10:21:54 2019-11-05 12:23:06 t 1 1 153058 562 0.00 2019-11-05 12:24:39 2019-11-05 12:28:11 t 1 1 153060 622 0.00 2019-11-05 12:23:25 2019-11-05 12:30:29 t 1 1 153066 498 0.00 2019-11-05 08:37:18 2019-11-05 12:42:32 t 1 2 153069 516 0.00 2019-11-05 12:14:15 2019-11-05 12:44:54 t 1 1 153070 520 0.00 2019-11-05 11:36:43 2019-11-05 12:45:02 t 1 1 153073 622 0.00 2019-11-05 12:45:36 2019-11-05 12:46:49 t 1 1 153082 562 0.00 2019-11-05 12:59:36 2019-11-05 13:00:47 t 1 1 153084 481 0.00 2019-11-05 11:38:08 2019-11-05 13:04:07 t 1 1 153089 544 0.00 2019-11-05 12:20:37 2019-11-05 13:11:17 t 1 2 153092 585 0.00 2019-11-05 13:03:11 2019-11-05 13:12:28 t 1 1 153096 562 0.00 2019-11-05 13:10:32 2019-11-05 13:13:46 t 1 1 153098 591 0.00 2019-11-05 12:42:10 2019-11-05 13:17:11 t 1 1 153100 445 0.00 2019-11-05 13:17:54 2019-11-05 13:20:35 t 1 1 153104 639 0.00 2019-11-05 10:27:58 2019-11-05 13:24:45 t 1 1 153106 562 0.00 2019-11-05 13:24:28 2019-11-05 13:25:57 t 1 1 153108 615 0.00 2019-11-05 13:22:39 2019-11-05 13:26:31 t 1 1 153109 445 0.00 2019-11-05 13:20:35 2019-11-05 13:27:08 t 1 1 153110 619 0.00 2019-11-05 13:26:43 2019-11-05 13:28:22 t 1 1 153121 416 0.00 2019-11-05 13:33:38 2019-11-05 13:37:04 t 1 1 153130 625 0.00 2019-11-05 13:39:35 2019-11-05 13:42:47 t 1 1 153134 625 0.00 2019-11-05 13:46:21 2019-11-05 13:47:00 t 1 1 153135 564 0.00 2019-11-05 08:44:37 2019-11-05 13:48:18 t 1 1 153136 416 0.00 2019-11-05 13:38:45 2019-11-05 13:48:34 t 1 1 153139 625 0.00 2019-11-05 13:48:40 2019-11-05 13:51:00 t 1 1 153140 622 0.00 2019-11-05 13:41:58 2019-11-05 13:52:39 t 1 1 153144 562 0.00 2019-11-05 13:57:12 2019-11-05 13:57:42 t 1 1 153146 585 0.00 2019-11-05 14:00:20 2019-11-05 14:02:50 t 1 1 153148 445 0.00 2019-11-05 13:30:26 2019-11-05 14:06:44 t 1 1 153152 562 0.00 2019-11-05 14:07:59 2019-11-05 14:08:25 t 1 1 153159 622 0.00 2019-11-05 14:07:08 2019-11-05 14:23:56 t 1 1 153161 562 0.00 2019-11-05 14:24:53 2019-11-05 14:25:46 t 1 1 153162 585 0.00 2019-11-05 14:25:43 2019-11-05 14:26:29 t 1 1 153163 625 0.00 2019-11-05 14:24:50 2019-11-05 14:27:15 t 1 1 153165 591 0.00 2019-11-05 14:05:20 2019-11-05 14:29:46 t 1 1 153170 512 0.00 2019-11-05 14:18:16 2019-11-05 14:35:11 t 1 1 153171 445 0.00 2019-11-05 14:34:41 2019-11-05 14:35:41 t 1 1 153173 585 0.00 2019-11-05 14:26:29 2019-11-05 14:36:14 t 1 1 153174 562 0.00 2019-11-05 14:36:59 2019-11-05 14:37:20 t 1 1 153179 445 0.00 2019-11-05 14:35:41 2019-11-05 14:40:27 t 1 1 153182 566 0.00 2019-11-05 14:42:08 2019-11-05 14:46:04 t 1 1 153183 585 0.00 2019-11-05 14:42:19 2019-11-05 14:46:14 t 1 1 153184 597 0.00 2019-11-05 14:38:21 2019-11-05 14:47:20 t 1 1 153187 422 0.00 2019-11-05 14:49:29 2019-11-05 14:49:44 t 1 1 153194 623 0.00 2019-11-05 14:57:34 2019-11-05 14:58:46 t 1 1 153200 597 0.00 2019-11-05 15:00:52 2019-11-05 15:07:39 t 1 1 153202 623 0.00 2019-11-05 15:09:05 2019-11-05 15:10:11 t 1 1 153203 520 0.00 2019-11-05 15:09:20 2019-11-05 15:11:41 t 1 1 153206 623 0.00 2019-11-05 15:13:06 2019-11-05 15:13:12 t 1 1 153209 619 0.00 2019-11-05 15:10:00 2019-11-05 15:16:42 t 1 1 153210 623 0.00 2019-11-05 15:17:19 2019-11-05 15:17:21 t 1 1 153212 220 0.00 2019-11-05 15:11:19 2019-11-05 15:18:46 t 1 2 153216 520 0.00 2019-11-05 15:11:48 2019-11-05 15:24:19 t 1 1 153217 623 0.00 2019-11-05 15:25:18 2019-11-05 15:25:19 t 1 1 153219 585 0.00 2019-11-05 15:23:04 2019-11-05 15:28:49 t 1 1 153221 451 0.00 2019-11-05 15:20:13 2019-11-05 15:29:47 t 1 1 153223 623 0.00 2019-11-05 15:30:26 2019-11-05 15:30:30 t 1 1 153225 581 0.00 2019-11-05 15:29:47 2019-11-05 15:31:56 t 1 1 152958 623 0.00 2019-11-05 10:26:46 2019-11-05 10:26:46 f 1 1 152960 623 0.00 2019-11-05 10:25:52 2019-11-05 10:27:46 t 1 1 152964 581 0.00 2019-11-05 10:30:09 2019-11-05 10:32:25 t 1 1 152967 551 0.00 2019-11-05 09:41:20 2019-11-05 10:34:02 t 1 1 152969 585 0.00 2019-11-05 10:28:18 2019-11-05 10:34:24 t 1 1 152972 544 0.00 2019-11-05 10:34:39 2019-11-05 10:39:04 t 1 2 152974 220 0.00 2019-11-05 10:31:37 2019-11-05 10:39:54 t 1 2 152975 516 0.00 2019-11-05 10:36:51 2019-11-05 10:41:49 t 1 1 152980 581 0.00 2019-11-05 10:44:04 2019-11-05 10:48:21 t 1 1 152994 562 0.00 2019-11-05 11:04:35 2019-11-05 11:04:39 t 1 1 152995 587 0.00 2019-11-05 11:04:29 2019-11-05 11:05:34 t 1 1 152998 587 0.00 2019-11-05 11:06:01 2019-11-05 11:06:50 t 1 1 153000 562 0.00 2019-11-05 11:10:26 2019-11-05 11:12:11 t 1 1 153004 528 0.00 2019-11-05 11:12:51 2019-11-05 11:16:23 t 1 1 153008 544 0.00 2019-11-05 11:18:39 2019-11-05 11:21:16 t 1 2 153011 445 0.00 2019-11-05 11:07:12 2019-11-05 11:27:46 t 1 1 153019 562 0.00 2019-11-05 11:34:05 2019-11-05 11:35:58 t 1 1 153020 516 0.00 2019-11-05 11:25:49 2019-11-05 11:37:01 t 1 1 153022 528 0.00 2019-11-05 11:29:53 2019-11-05 11:39:02 t 1 1 153025 514 0.00 2019-11-05 11:42:47 2019-11-05 11:43:48 t 1 1 153026 609 0.00 2019-11-05 07:32:03 2019-11-05 11:45:43 t 1 1 153029 562 0.00 2019-11-05 11:47:52 2019-11-05 11:48:35 t 1 1 153030 516 0.00 2019-11-05 11:48:46 2019-11-05 11:50:54 t 1 1 153032 562 0.00 2019-11-05 11:52:14 2019-11-05 11:52:52 t 1 1 153033 445 0.00 2019-11-05 11:27:46 2019-11-05 11:53:18 t 1 1 153034 538 0.00 2019-11-05 11:42:44 2019-11-05 11:54:16 t 1 1 153039 585 0.00 2019-11-05 12:00:45 2019-11-05 12:03:14 t 1 1 153041 528 0.00 2019-11-05 11:39:02 2019-11-05 12:04:13 t 1 1 153044 615 0.00 2019-11-05 12:09:52 2019-11-05 12:10:30 t 1 1 153048 562 0.00 2019-11-05 12:13:11 2019-11-05 12:14:13 t 1 1 153051 544 0.00 2019-11-05 11:56:36 2019-11-05 12:19:55 t 1 2 153054 445 0.00 2019-11-05 11:53:18 2019-11-05 12:22:39 t 1 1 153057 445 0.00 2019-11-05 12:22:39 2019-11-05 12:27:07 t 1 1 153062 562 0.00 2019-11-05 12:31:27 2019-11-05 12:33:32 t 1 1 153063 625 0.00 2019-11-05 12:23:09 2019-11-05 12:36:00 t 1 1 153065 619 0.00 2019-11-05 12:26:27 2019-11-05 12:39:10 t 1 1 153067 562 0.00 2019-11-05 12:42:26 2019-11-05 12:42:44 t 1 1 153075 416 0.00 2019-11-05 12:03:00 2019-11-05 12:52:31 t 1 1 153076 562 0.00 2019-11-05 12:52:49 2019-11-05 12:53:07 t 1 1 153077 562 0.00 2019-11-05 12:54:45 2019-11-05 12:55:36 t 1 1 153080 625 0.00 2019-11-05 12:40:34 2019-11-05 12:59:25 t 1 1 153086 538 0.00 2019-11-05 13:01:39 2019-11-05 13:09:03 t 1 1 153090 451 0.00 2019-11-05 12:58:26 2019-11-05 13:11:31 t 1 1 153091 619 0.00 2019-11-05 13:07:43 2019-11-05 13:11:40 t 1 1 153095 556 0.00 2019-11-05 11:27:00 2019-11-05 13:13:08 t 1 1 153103 220 0.00 2019-11-05 13:12:28 2019-11-05 13:24:23 t 1 1 153105 516 0.00 2019-11-05 13:11:36 2019-11-05 13:25:52 t 1 1 153107 639 0.00 2019-11-05 13:24:51 2019-11-05 13:26:01 t 1 1 153111 451 0.00 2019-11-05 13:15:52 2019-11-05 13:28:53 t 1 1 153112 562 0.00 2019-11-05 13:26:16 2019-11-05 13:29:51 t 1 1 153119 562 0.00 2019-11-05 13:34:19 2019-11-05 13:34:48 t 1 1 153120 609 0.00 2019-11-05 11:45:43 2019-11-05 13:35:42 t 1 1 153122 625 0.00 2019-11-05 13:33:37 2019-11-05 13:37:54 t 1 1 153123 451 0.00 2019-11-05 13:28:53 2019-11-05 13:38:04 t 1 1 153125 562 0.00 2019-11-05 13:40:40 2019-11-05 13:40:55 t 1 1 153126 520 0.00 2019-11-05 13:34:39 2019-11-05 13:41:41 t 1 1 153128 622 0.00 2019-11-05 13:36:22 2019-11-05 13:41:58 t 1 1 153129 538 0.00 2019-11-05 13:16:05 2019-11-05 13:42:23 t 1 1 153131 625 0.00 2019-11-05 13:42:46 2019-11-05 13:44:15 t 1 1 153133 625 0.00 2019-11-05 13:44:15 2019-11-05 13:46:21 t 1 1 153141 622 0.00 2019-11-05 13:52:38 2019-11-05 13:54:22 t 1 1 153149 551 0.00 2019-11-05 11:44:00 2019-11-05 14:06:55 t 1 1 153155 445 0.00 2019-11-05 14:08:01 2019-11-05 14:18:26 t 1 1 153160 625 0.00 2019-11-05 14:08:07 2019-11-05 14:25:17 t 1 1 153176 516 0.00 2019-11-05 14:27:05 2019-11-05 14:38:34 t 1 1 153177 564 0.00 2019-11-05 13:48:18 2019-11-05 14:39:40 t 1 1 153178 562 0.00 2019-11-05 14:39:21 2019-11-05 14:40:19 t 1 1 153181 622 0.00 2019-11-05 14:23:56 2019-11-05 14:44:28 t 1 1 153185 585 0.00 2019-11-05 14:46:13 2019-11-05 14:47:42 t 1 1 153186 422 0.00 2019-11-05 14:33:12 2019-11-05 14:49:00 t 1 1 153188 597 0.00 2019-11-05 14:47:20 2019-11-05 14:50:57 t 1 1 153189 566 0.00 2019-11-05 14:46:04 2019-11-05 14:52:22 t 1 1 153191 623 0.00 2019-11-05 14:54:32 2019-11-05 14:54:37 t 1 1 153193 566 0.00 2019-11-05 14:52:22 2019-11-05 14:58:12 t 1 1 153196 562 0.00 2019-11-05 14:43:15 2019-11-05 15:00:55 t 1 1 153197 562 0.00 2019-11-05 15:00:54 2019-11-05 15:01:42 t 1 1 153199 566 0.00 2019-11-05 14:58:12 2019-11-05 15:06:11 t 1 1 153204 623 0.00 2019-11-05 15:12:12 2019-11-05 15:12:26 t 1 1 153205 562 0.00 2019-11-05 15:05:41 2019-11-05 15:13:05 t 1 1 153211 445 0.00 2019-11-05 14:40:26 2019-11-05 15:18:35 t 1 1 153213 451 0.00 2019-11-05 15:04:01 2019-11-05 15:20:13 t 1 1 153214 574 0.00 2019-11-05 15:18:34 2019-11-05 15:21:27 t 1 1 153215 562 0.00 2019-11-05 15:23:18 2019-11-05 15:23:35 t 1 1 153230 481 0.00 2019-11-05 14:12:01 2019-11-05 15:39:18 t 1 1 153234 623 0.00 2019-11-05 15:43:29 2019-11-05 15:43:31 t 1 1 153236 520 0.00 2019-11-05 15:43:24 2019-11-05 15:44:46 t 1 1 153238 619 0.00 2019-11-05 15:33:15 2019-11-05 15:46:40 t 1 1 153239 623 0.00 2019-11-05 15:46:48 2019-11-05 15:46:51 t 1 1 153240 512 0.00 2019-11-05 15:37:49 2019-11-05 15:47:55 t 1 1 153241 623 0.00 2019-11-05 15:47:22 2019-11-05 15:48:29 t 1 1 153243 422 0.00 2019-11-05 15:43:24 2019-11-05 15:49:25 t 1 1 153245 619 0.00 2019-11-05 15:46:40 2019-11-05 15:52:52 t 1 1 153249 422 0.00 2019-11-05 15:55:34 2019-11-05 15:55:51 t 1 1 153252 416 0.00 2019-11-05 15:34:49 2019-11-05 15:56:25 t 1 1 153259 623 0.00 2019-11-05 15:59:06 2019-11-05 15:59:38 t 1 1 153263 623 0.00 2019-11-05 16:01:35 2019-11-05 16:01:56 t 1 1 153266 562 0.00 2019-11-05 16:03:24 2019-11-05 16:04:08 t 1 1 153267 623 0.00 2019-11-05 16:04:16 2019-11-05 16:04:16 f 1 1 153268 623 0.00 2019-11-05 16:04:10 2019-11-05 16:05:46 t 1 1 153274 526 0.00 2019-11-05 16:08:14 2019-11-05 16:09:27 t 1 1 153276 562 0.00 2019-11-05 16:09:49 2019-11-05 16:10:18 t 1 1 153278 587 0.00 2019-11-05 16:09:13 2019-11-05 16:11:27 t 1 1 153280 619 0.00 2019-11-05 16:06:39 2019-11-05 16:13:24 t 1 1 153282 625 0.00 2019-11-05 16:10:10 2019-11-05 16:15:49 t 1 1 153284 445 0.00 2019-11-05 15:59:48 2019-11-05 16:16:46 t 1 1 153285 562 0.00 2019-11-05 16:17:27 2019-11-05 16:17:50 t 1 1 153289 639 0.00 2019-11-05 16:15:51 2019-11-05 16:27:32 t 1 1 152963 581 0.00 2019-11-05 10:29:37 2019-11-05 10:30:46 t 1 1 152965 562 0.00 2019-11-05 10:32:18 2019-11-05 10:32:33 t 1 1 152966 615 0.00 2019-11-05 10:23:39 2019-11-05 10:33:59 t 1 1 152976 585 0.00 2019-11-05 10:40:11 2019-11-05 10:43:04 t 1 1 152977 481 0.00 2019-11-05 08:48:54 2019-11-05 10:44:12 t 1 1 152978 587 0.00 2019-11-05 10:42:44 2019-11-05 10:46:41 t 1 1 152983 562 0.00 2019-11-05 10:49:39 2019-11-05 10:49:47 t 1 1 152985 587 0.00 2019-11-05 10:49:48 2019-11-05 10:51:57 t 1 1 152986 445 0.00 2019-11-05 10:38:18 2019-11-05 10:52:32 t 1 1 152988 587 0.00 2019-11-05 10:52:31 2019-11-05 10:53:22 t 1 1 152989 562 0.00 2019-11-05 10:55:52 2019-11-05 10:57:26 t 1 1 152990 591 0.00 2019-11-05 10:58:14 2019-11-05 10:59:49 t 1 1 152991 562 0.00 2019-11-05 11:01:14 2019-11-05 11:03:13 t 1 1 152992 587 0.00 2019-11-05 10:58:44 2019-11-05 11:04:07 t 1 1 152996 633 0.00 2019-11-05 11:03:34 2019-11-05 11:05:45 t 1 1 153001 528 0.00 2019-11-05 11:01:41 2019-11-05 11:12:51 t 1 1 153002 633 0.00 2019-11-05 11:05:45 2019-11-05 11:13:00 t 1 1 153003 587 0.00 2019-11-05 11:07:30 2019-11-05 11:16:20 t 1 1 153005 512 0.00 2019-11-05 11:13:26 2019-11-05 11:16:56 t 1 1 153007 587 0.00 2019-11-05 11:17:58 2019-11-05 11:20:20 t 1 1 153010 562 0.00 2019-11-05 11:21:51 2019-11-05 11:22:07 t 1 1 153012 591 0.00 2019-11-05 11:00:31 2019-11-05 11:28:33 t 1 1 153015 562 0.00 2019-11-05 11:29:25 2019-11-05 11:29:54 t 1 1 153016 416 0.00 2019-11-05 11:28:18 2019-11-05 11:34:57 t 1 1 153017 625 0.00 2019-11-05 10:57:25 2019-11-05 11:35:34 t 1 1 153021 481 0.00 2019-11-05 10:44:12 2019-11-05 11:37:17 t 1 1 153027 562 0.00 2019-11-05 11:46:22 2019-11-05 11:46:39 t 1 1 153038 416 0.00 2019-11-05 11:34:01 2019-11-05 12:03:00 t 1 1 153040 615 0.00 2019-11-05 11:54:02 2019-11-05 12:03:33 t 1 1 153046 625 0.00 2019-11-05 11:52:30 2019-11-05 12:11:46 t 1 1 153047 518 0.00 2019-11-05 11:49:43 2019-11-05 12:13:24 t 1 2 153050 619 0.00 2019-11-05 12:12:37 2019-11-05 12:19:28 t 1 1 153052 591 0.00 2019-11-05 12:19:24 2019-11-05 12:20:46 t 1 1 153053 562 0.00 2019-11-05 12:19:31 2019-11-05 12:22:23 t 1 1 153056 625 0.00 2019-11-05 12:11:46 2019-11-05 12:23:09 t 1 1 153059 445 0.00 2019-11-05 12:27:07 2019-11-05 12:29:17 t 1 1 153061 445 0.00 2019-11-05 12:30:14 2019-11-05 12:32:56 t 1 1 153064 591 0.00 2019-11-05 12:36:02 2019-11-05 12:38:13 t 1 1 153068 562 0.00 2019-11-05 12:43:21 2019-11-05 12:44:22 t 1 1 153071 622 0.00 2019-11-05 12:35:26 2019-11-05 12:45:37 t 1 1 153072 456 0.00 2019-11-05 12:24:14 2019-11-05 12:46:18 t 1 1 153074 562 0.00 2019-11-05 12:45:44 2019-11-05 12:47:01 t 1 1 153078 562 0.00 2019-11-05 12:56:16 2019-11-05 12:57:51 t 1 1 153079 619 0.00 2019-11-05 12:48:28 2019-11-05 12:58:41 t 1 1 153081 416 0.00 2019-11-05 12:53:49 2019-11-05 12:59:59 t 1 1 153083 445 0.00 2019-11-05 12:32:55 2019-11-05 13:01:50 t 1 1 153085 562 0.00 2019-11-05 13:01:29 2019-11-05 13:06:53 t 1 1 153087 625 0.00 2019-11-05 13:02:33 2019-11-05 13:09:50 t 1 1 153088 481 0.00 2019-11-05 13:06:10 2019-11-05 13:10:11 t 1 1 153093 220 0.00 2019-11-05 10:16:10 2019-11-05 13:12:28 t 1 1 153094 445 0.00 2019-11-05 13:01:55 2019-11-05 13:12:48 t 1 1 153097 451 0.00 2019-11-05 13:11:31 2019-11-05 13:15:52 t 1 1 153099 445 0.00 2019-11-05 13:12:48 2019-11-05 13:17:54 t 1 1 153101 585 0.00 2019-11-05 13:20:34 2019-11-05 13:23:31 t 1 1 153102 562 0.00 2019-11-05 13:23:43 2019-11-05 13:24:15 t 1 1 153113 445 0.00 2019-11-05 13:27:22 2019-11-05 13:29:52 t 1 1 153114 416 0.00 2019-11-05 13:00:53 2019-11-05 13:31:15 t 1 1 153115 591 0.00 2019-11-05 13:31:04 2019-11-05 13:32:46 t 1 1 153116 625 0.00 2019-11-05 13:12:32 2019-11-05 13:33:37 t 1 1 153117 562 0.00 2019-11-05 13:33:14 2019-11-05 13:33:55 t 1 1 153118 591 0.00 2019-11-05 13:32:46 2019-11-05 13:34:29 t 1 1 153124 625 0.00 2019-11-05 13:37:57 2019-11-05 13:39:28 t 1 1 153127 562 0.00 2019-11-05 13:41:01 2019-11-05 13:41:47 t 1 1 153132 538 0.00 2019-11-05 13:42:23 2019-11-05 13:44:36 t 1 1 153137 625 0.00 2019-11-05 13:47:02 2019-11-05 13:48:35 t 1 1 153138 538 0.00 2019-11-05 13:48:25 2019-11-05 13:50:47 t 1 1 153142 585 0.00 2019-11-05 13:48:34 2019-11-05 13:54:28 t 1 1 153143 451 0.00 2019-11-05 13:38:04 2019-11-05 13:55:38 t 1 1 153145 619 0.00 2019-11-05 13:50:53 2019-11-05 14:02:23 t 1 1 153147 412 0.00 2019-11-05 07:27:24 2019-11-05 14:05:07 t 1 1 153150 622 0.00 2019-11-05 13:54:21 2019-11-05 14:07:08 t 1 1 153151 625 0.00 2019-11-05 13:50:59 2019-11-05 14:07:59 t 1 1 153153 379 0.00 2019-11-05 09:12:54 2019-11-05 14:11:55 t 1 1 153154 481 0.00 2019-11-05 13:10:54 2019-11-05 14:12:01 t 1 1 153156 562 0.00 2019-11-05 14:18:45 2019-11-05 14:19:05 t 1 1 153157 422 0.00 2019-11-05 14:16:22 2019-11-05 14:20:47 t 1 1 153158 585 0.00 2019-11-05 14:22:03 2019-11-05 14:23:56 t 1 1 153164 633 0.00 2019-11-05 14:07:06 2019-11-05 14:28:38 t 1 1 153166 445 0.00 2019-11-05 14:18:52 2019-11-05 14:30:21 t 1 1 153167 633 0.00 2019-11-05 14:28:38 2019-11-05 14:31:33 t 1 1 153168 422 0.00 2019-11-05 14:21:04 2019-11-05 14:33:12 t 1 1 153169 445 0.00 2019-11-05 14:30:21 2019-11-05 14:34:40 t 1 1 153172 562 0.00 2019-11-05 14:35:34 2019-11-05 14:35:59 t 1 1 153175 597 0.00 2019-11-05 14:30:26 2019-11-05 14:38:08 t 1 1 153180 562 0.00 2019-11-05 14:40:49 2019-11-05 14:40:53 t 1 1 153190 623 0.00 2019-11-05 14:44:51 2019-11-05 14:54:25 t 1 1 153192 619 0.00 2019-11-05 14:30:10 2019-11-05 14:56:19 t 1 1 153195 597 0.00 2019-11-05 14:57:34 2019-11-05 15:00:52 t 1 1 153198 562 0.00 2019-11-05 15:01:42 2019-11-05 15:03:38 t 1 1 153201 422 0.00 2019-11-05 15:03:09 2019-11-05 15:10:04 t 1 1 153207 623 0.00 2019-11-05 15:13:26 2019-11-05 15:13:50 t 1 1 153208 562 0.00 2019-11-05 15:15:15 2019-11-05 15:16:26 t 1 1 153218 520 0.00 2019-11-05 15:24:25 2019-11-05 15:26:19 t 1 1 153220 581 0.00 2019-11-05 15:12:33 2019-11-05 15:29:40 t 1 1 153222 635 0.00 2019-11-05 15:18:13 2019-11-05 15:29:53 t 1 1 153224 619 0.00 2019-11-05 15:22:40 2019-11-05 15:31:27 t 1 1 153226 416 0.00 2019-11-05 13:49:29 2019-11-05 15:32:54 t 1 1 153228 520 0.00 2019-11-05 15:26:26 2019-11-05 15:37:49 t 1 1 153229 623 0.00 2019-11-05 15:38:08 2019-11-05 15:38:24 t 1 1 153231 422 0.00 2019-11-05 15:33:48 2019-11-05 15:39:22 t 1 1 153232 623 0.00 2019-11-05 15:39:43 2019-11-05 15:39:43 t 1 1 153235 538 0.00 2019-11-05 15:41:58 2019-11-05 15:43:38 t 1 1 153237 562 0.00 2019-11-05 15:25:08 2019-11-05 15:44:54 t 1 1 153242 526 0.00 2019-11-05 15:48:00 2019-11-05 15:48:54 t 1 1 153244 538 0.00 2019-11-05 15:45:54 2019-11-05 15:49:42 t 1 1 153247 562 0.00 2019-11-05 15:53:14 2019-11-05 15:53:25 t 1 1 153253 422 0.00 2019-11-05 15:56:27 2019-11-05 15:57:16 t 1 1 153227 512 0.00 2019-11-05 14:50:05 2019-11-05 15:37:44 t 1 1 153233 422 0.00 2019-11-05 15:39:31 2019-11-05 15:39:45 t 1 1 153246 422 0.00 2019-11-05 15:51:04 2019-11-05 15:53:13 t 1 1 153248 623 0.00 2019-11-05 15:55:44 2019-11-05 15:55:46 t 1 1 153250 623 0.00 2019-11-05 15:55:53 2019-11-05 15:55:55 t 1 1 153251 623 0.00 2019-11-05 15:56:06 2019-11-05 15:56:07 t 1 1 153254 623 0.00 2019-11-05 15:58:30 2019-11-05 15:58:35 t 1 1 153256 512 0.00 2019-11-05 15:54:29 2019-11-05 15:58:54 t 1 1 153257 623 0.00 2019-11-05 15:58:41 2019-11-05 15:59:03 t 1 1 153261 416 0.00 2019-11-05 15:56:30 2019-11-05 16:00:00 t 1 1 153262 220 0.00 2019-11-05 13:24:23 2019-11-05 16:00:55 t 1 1 153264 623 0.00 2019-11-05 16:00:01 2019-11-05 16:02:27 t 1 1 153265 623 0.00 2019-11-05 16:03:01 2019-11-05 16:03:02 t 1 1 153270 512 0.00 2019-11-05 15:58:54 2019-11-05 16:06:03 t 1 1 153272 639 0.00 2019-11-05 15:51:48 2019-11-05 16:07:35 t 1 1 153275 625 0.00 2019-11-05 15:59:07 2019-11-05 16:10:10 t 1 1 153281 562 0.00 2019-11-05 16:14:48 2019-11-05 16:15:01 t 1 1 153286 220 0.00 2019-11-05 16:06:24 2019-11-05 16:19:46 t 1 1 153287 611 0.00 2019-11-05 16:16:24 2019-11-05 16:19:58 t 1 1 153290 445 0.00 2019-11-05 16:16:46 2019-11-05 16:27:46 t 1 1 153293 622 0.00 2019-11-05 15:03:39 2019-11-05 16:27:49 t 1 1 153294 562 0.00 2019-11-05 16:28:16 2019-11-05 16:28:33 t 1 1 153296 619 0.00 2019-11-05 16:22:34 2019-11-05 16:31:23 t 1 1 153300 562 0.00 2019-11-05 16:36:16 2019-11-05 16:36:34 t 1 1 153302 445 0.00 2019-11-05 16:27:59 2019-11-05 16:40:30 t 1 1 153306 639 0.00 2019-11-05 16:35:25 2019-11-05 16:46:29 t 1 1 153308 456 0.00 2019-11-05 15:52:19 2019-11-05 16:46:46 t 1 1 153309 379 0.00 2019-11-05 14:11:55 2019-11-05 16:46:56 t 1 1 153310 562 0.00 2019-11-05 16:46:55 2019-11-05 16:47:18 t 1 1 153314 416 0.00 2019-11-05 16:00:22 2019-11-05 16:49:43 t 1 1 153318 625 0.00 2019-11-05 16:49:20 2019-11-05 16:54:50 t 1 1 153319 625 0.00 2019-11-05 16:54:50 2019-11-05 16:56:02 t 1 1 153321 220 0.00 2019-11-05 16:53:53 2019-11-05 16:58:16 t 1 1 153323 564 0.00 2019-11-05 16:50:32 2019-11-05 16:58:39 t 1 1 153324 619 0.00 2019-11-05 16:43:58 2019-11-05 17:01:27 t 1 1 153325 445 0.00 2019-11-05 16:58:34 2019-11-05 17:01:28 t 1 1 153326 564 0.00 2019-11-05 16:59:13 2019-11-05 17:02:12 t 1 1 153330 562 0.00 2019-11-05 17:04:19 2019-11-05 17:04:36 t 1 1 153333 619 0.00 2019-11-05 17:01:27 2019-11-05 17:07:15 t 1 1 153337 562 0.00 2019-11-05 17:11:51 2019-11-05 17:12:11 t 1 1 153340 587 0.00 2019-11-05 16:46:25 2019-11-05 17:14:50 t 1 1 153343 562 0.00 2019-11-05 17:17:40 2019-11-05 17:18:21 t 1 1 153344 562 0.00 2019-11-05 17:19:47 2019-11-05 17:20:09 t 1 1 153351 581 0.00 2019-11-05 17:23:14 2019-11-05 17:25:11 t 1 1 153356 451 0.00 2019-11-05 17:13:12 2019-11-05 17:27:35 t 1 1 153366 639 0.00 2019-11-05 17:36:36 2019-11-05 17:36:59 t 1 1 153369 562 0.00 2019-11-05 17:39:16 2019-11-05 17:40:02 t 1 1 153372 619 0.00 2019-11-05 17:37:18 2019-11-05 17:41:12 t 1 1 153375 422 0.00 2019-11-05 17:37:55 2019-11-05 17:46:29 t 1 1 153381 514 0.00 2019-11-05 17:22:49 2019-11-05 17:53:05 t 1 1 153383 562 0.00 2019-11-05 17:54:11 2019-11-05 17:54:38 t 1 1 153385 422 0.00 2019-11-05 17:54:08 2019-11-05 17:55:32 t 1 1 153386 564 0.00 2019-11-05 17:46:32 2019-11-05 17:56:59 t 1 1 153388 562 0.00 2019-11-05 17:54:52 2019-11-05 17:59:44 t 1 1 153390 514 0.00 2019-11-05 17:53:05 2019-11-05 18:03:04 t 1 1 153392 562 0.00 2019-11-05 18:05:27 2019-11-05 18:06:47 t 1 1 153395 422 0.00 2019-11-05 18:09:27 2019-11-05 18:11:26 t 1 1 153396 520 0.00 2019-11-05 17:59:03 2019-11-05 18:12:09 t 1 1 153398 514 0.00 2019-11-05 18:03:04 2019-11-05 18:14:14 t 1 1 153399 562 0.00 2019-11-05 18:13:19 2019-11-05 18:14:32 t 1 1 153405 619 0.00 2019-11-05 18:05:36 2019-11-05 18:18:27 t 1 1 153406 564 0.00 2019-11-05 17:57:58 2019-11-05 18:18:53 t 1 1 153416 481 0.00 2019-11-05 18:17:30 2019-11-05 18:27:55 t 1 1 153417 625 0.00 2019-11-05 17:54:55 2019-11-05 18:28:09 t 1 1 153419 416 0.00 2019-11-05 18:26:41 2019-11-05 18:28:55 t 1 1 153420 639 0.00 2019-11-05 18:19:19 2019-11-05 18:29:37 t 1 1 153424 637 0.00 2019-11-05 18:27:29 2019-11-05 18:30:45 t 1 1 153425 520 0.00 2019-11-05 18:12:08 2019-11-05 18:31:05 t 1 1 153427 639 0.00 2019-11-05 18:31:14 2019-11-05 18:31:29 t 1 1 153428 615 0.00 2019-11-05 18:30:03 2019-11-05 18:32:22 t 1 1 153431 637 0.00 2019-11-05 18:30:44 2019-11-05 18:32:40 t 1 1 153436 587 0.00 2019-11-05 18:14:24 2019-11-05 18:38:14 t 1 1 153438 585 0.00 2019-11-05 18:41:48 2019-11-05 18:43:43 t 1 1 153441 514 0.00 2019-11-05 18:34:35 2019-11-05 18:51:38 t 1 1 153443 585 0.00 2019-11-05 18:48:29 2019-11-05 18:52:09 t 1 1 153445 637 0.00 2019-11-05 18:32:45 2019-11-05 18:53:18 t 1 1 153447 625 0.00 2019-11-05 18:28:15 2019-11-05 18:53:39 t 1 1 153456 623 0.00 2019-11-05 19:00:51 2019-11-05 19:00:51 f 1 1 153457 623 0.00 2019-11-05 19:01:04 2019-11-05 19:01:04 f 1 1 153460 623 0.00 2019-11-05 19:01:40 2019-11-05 19:01:40 f 1 1 153464 623 0.00 2019-11-05 19:02:30 2019-11-05 19:02:30 f 1 1 153471 520 0.00 2019-11-05 18:56:35 2019-11-05 19:03:52 t 1 1 153474 622 0.00 2019-11-05 19:03:30 2019-11-05 19:11:15 t 1 1 153477 562 0.00 2019-11-05 19:12:58 2019-11-05 19:13:59 t 1 1 153479 562 0.00 2019-11-05 19:14:48 2019-11-05 19:15:53 t 1 1 153480 562 0.00 2019-11-05 19:16:17 2019-11-05 19:16:26 t 1 1 153481 545 0.00 2019-11-05 19:07:25 2019-11-05 19:17:23 t 1 1 153485 570 0.00 2019-11-05 18:19:27 2019-11-05 19:21:18 t 1 1 153488 597 0.00 2019-11-05 19:22:39 2019-11-05 19:24:27 t 1 1 153489 516 0.00 2019-11-05 19:10:31 2019-11-05 19:25:37 t 1 1 153490 562 0.00 2019-11-05 19:26:29 2019-11-05 19:26:37 t 1 1 153491 556 0.00 2019-11-05 19:20:32 2019-11-05 19:28:38 t 1 1 153492 445 0.00 2019-11-05 18:51:31 2019-11-05 19:29:39 t 1 1 153495 639 0.00 2019-11-05 19:34:33 2019-11-05 19:34:39 t 1 1 153501 481 0.00 2019-11-05 19:10:00 2019-11-05 19:40:02 t 1 1 153502 637 0.00 2019-11-05 19:38:53 2019-11-05 19:40:07 t 1 1 153504 639 0.00 2019-11-05 19:36:00 2019-11-05 19:40:24 t 1 1 153507 562 0.00 2019-11-05 19:41:03 2019-11-05 19:41:48 t 1 1 153509 445 0.00 2019-11-05 19:33:26 2019-11-05 19:41:54 t 1 1 153511 581 0.00 2019-11-05 19:41:03 2019-11-05 19:42:47 t 1 1 153512 570 0.00 2019-11-05 19:41:11 2019-11-05 19:43:02 t 1 1 153515 619 0.00 2019-11-05 19:42:16 2019-11-05 19:43:45 t 1 1 153517 597 0.00 2019-11-05 19:33:47 2019-11-05 19:44:22 t 1 1 153521 562 0.00 2019-11-05 19:47:49 2019-11-05 19:48:22 t 1 1 153523 556 0.00 2019-11-05 19:28:38 2019-11-05 19:49:47 t 1 1 153527 562 0.00 2019-11-05 19:51:25 2019-11-05 19:52:02 t 1 1 153530 562 0.00 2019-11-05 19:53:28 2019-11-05 19:55:40 t 1 1 153255 445 0.00 2019-11-05 15:18:40 2019-11-05 15:58:52 t 1 1 153258 625 0.00 2019-11-05 14:28:40 2019-11-05 15:59:07 t 1 1 153260 562 0.00 2019-11-05 15:57:56 2019-11-05 15:59:59 t 1 1 153269 623 0.00 2019-11-05 16:03:40 2019-11-05 16:05:46 t 1 1 153271 220 0.00 2019-11-05 16:01:23 2019-11-05 16:06:24 t 1 1 153273 562 0.00 2019-11-05 16:06:00 2019-11-05 16:07:46 t 1 1 153277 581 0.00 2019-11-05 16:05:58 2019-11-05 16:10:43 t 1 1 153279 562 0.00 2019-11-05 16:12:07 2019-11-05 16:12:25 t 1 1 153283 639 0.00 2019-11-05 16:07:35 2019-11-05 16:15:51 t 1 1 153288 562 0.00 2019-11-05 16:21:34 2019-11-05 16:22:26 t 1 1 153292 639 0.00 2019-11-05 16:27:42 2019-11-05 16:27:47 t 1 1 153295 587 0.00 2019-11-05 16:12:04 2019-11-05 16:31:23 t 1 1 153297 619 0.00 2019-11-05 16:31:23 2019-11-05 16:34:41 t 1 1 153298 639 0.00 2019-11-05 16:27:57 2019-11-05 16:34:59 t 1 1 153301 622 0.00 2019-11-05 16:27:49 2019-11-05 16:37:03 t 1 1 153304 526 0.00 2019-11-05 16:43:11 2019-11-05 16:45:20 t 1 1 153307 639 0.00 2019-11-05 16:46:40 2019-11-05 16:46:44 t 1 1 153313 562 0.00 2019-11-05 16:47:39 2019-11-05 16:49:27 t 1 1 153315 562 0.00 2019-11-05 16:51:38 2019-11-05 16:52:06 t 1 1 153316 512 0.00 2019-11-05 16:07:35 2019-11-05 16:53:32 t 1 1 153317 562 0.00 2019-11-05 16:53:11 2019-11-05 16:53:59 t 1 1 153320 622 0.00 2019-11-05 16:44:31 2019-11-05 16:57:06 t 1 1 153327 625 0.00 2019-11-05 16:56:02 2019-11-05 17:02:59 t 1 1 153328 220 0.00 2019-11-05 16:58:15 2019-11-05 17:03:35 t 1 1 153329 564 0.00 2019-11-05 17:02:11 2019-11-05 17:04:20 t 1 1 153332 625 0.00 2019-11-05 17:05:53 2019-11-05 17:07:07 t 1 1 153334 581 0.00 2019-11-05 17:03:28 2019-11-05 17:07:24 t 1 1 153338 615 0.00 2019-11-05 17:05:55 2019-11-05 17:12:59 t 1 1 153341 445 0.00 2019-11-05 17:08:40 2019-11-05 17:15:36 t 1 1 153342 587 0.00 2019-11-05 17:14:50 2019-11-05 17:17:35 t 1 1 153346 514 0.00 2019-11-05 17:10:42 2019-11-05 17:22:49 t 1 1 153347 625 0.00 2019-11-05 17:07:07 2019-11-05 17:22:55 t 1 1 153348 587 0.00 2019-11-05 17:17:35 2019-11-05 17:23:33 t 1 1 153352 422 0.00 2019-11-05 17:19:48 2019-11-05 17:26:01 t 1 1 153355 615 0.00 2019-11-05 17:25:05 2019-11-05 17:27:29 t 1 1 153357 639 0.00 2019-11-05 16:46:54 2019-11-05 17:27:39 t 1 1 153358 639 0.00 2019-11-05 17:27:44 2019-11-05 17:28:17 t 1 1 153360 587 0.00 2019-11-05 17:29:00 2019-11-05 17:29:15 t 1 1 153361 587 0.00 2019-11-05 17:31:04 2019-11-05 17:32:04 t 1 1 153362 562 0.00 2019-11-05 17:33:01 2019-11-05 17:33:08 t 1 1 153363 451 0.00 2019-11-05 17:27:35 2019-11-05 17:34:51 t 1 1 153364 639 0.00 2019-11-05 17:28:26 2019-11-05 17:36:30 t 1 1 153368 422 0.00 2019-11-05 17:26:02 2019-11-05 17:37:55 t 1 1 153370 545 0.00 2019-11-05 17:35:48 2019-11-05 17:40:12 t 1 1 153374 564 0.00 2019-11-05 17:26:30 2019-11-05 17:46:27 t 1 1 153377 625 0.00 2019-11-05 17:24:22 2019-11-05 17:48:53 t 1 1 153382 422 0.00 2019-11-05 17:50:57 2019-11-05 17:53:49 t 1 1 153387 520 0.00 2019-11-05 17:52:47 2019-11-05 17:59:03 t 1 1 153391 562 0.00 2019-11-05 18:00:50 2019-11-05 18:05:13 t 1 1 153393 587 0.00 2019-11-05 17:42:54 2019-11-05 18:07:28 t 1 1 153394 562 0.00 2019-11-05 18:07:38 2019-11-05 18:08:03 t 1 1 153397 562 0.00 2019-11-05 18:12:36 2019-11-05 18:12:43 t 1 1 153402 570 0.00 2019-11-05 17:44:03 2019-11-05 18:16:13 t 1 1 153407 639 0.00 2019-11-05 17:37:08 2019-11-05 18:19:09 t 1 1 153409 512 0.00 2019-11-05 18:16:59 2019-11-05 18:20:45 t 1 1 153410 619 0.00 2019-11-05 18:18:27 2019-11-05 18:21:10 t 1 1 153412 512 0.00 2019-11-05 18:20:45 2019-11-05 18:21:49 t 1 1 153414 637 0.00 2019-11-05 18:16:35 2019-11-05 18:26:55 t 1 1 153418 445 0.00 2019-11-05 17:15:36 2019-11-05 18:28:51 t 1 1 153421 639 0.00 2019-11-05 18:29:44 2019-11-05 18:30:14 t 1 1 153422 639 0.00 2019-11-05 18:30:20 2019-11-05 18:30:33 t 1 1 153423 445 0.00 2019-11-05 18:29:22 2019-11-05 18:30:45 t 1 1 153430 639 0.00 2019-11-05 18:31:35 2019-11-05 18:32:31 t 1 1 153432 639 0.00 2019-11-05 18:32:41 2019-11-05 18:34:16 t 1 1 153434 639 0.00 2019-11-05 18:34:22 2019-11-05 18:35:05 t 1 1 153435 562 0.00 2019-11-05 18:35:35 2019-11-05 18:35:51 t 1 1 153437 520 0.00 2019-11-05 18:31:05 2019-11-05 18:40:45 t 1 1 153442 597 0.00 2019-11-05 18:30:31 2019-11-05 18:52:06 t 1 1 153448 639 0.00 2019-11-05 18:53:27 2019-11-05 18:53:50 t 1 1 153449 639 0.00 2019-11-05 18:53:59 2019-11-05 18:54:24 t 1 1 153451 520 0.00 2019-11-05 18:41:44 2019-11-05 18:55:19 t 1 1 153452 520 0.00 2019-11-05 18:55:24 2019-11-05 18:56:21 t 1 1 153453 623 0.00 2019-11-05 18:57:22 2019-11-05 18:59:56 t 1 1 153454 623 0.00 2019-11-05 19:00:27 2019-11-05 19:00:27 f 1 1 153458 623 0.00 2019-11-05 19:01:16 2019-11-05 19:01:16 f 1 1 153462 623 0.00 2019-11-05 19:00:02 2019-11-05 19:01:49 t 1 1 153465 623 0.00 2019-11-05 19:02:42 2019-11-05 19:02:42 f 1 1 153468 622 0.00 2019-11-05 18:18:22 2019-11-05 19:03:30 t 1 1 153470 623 0.00 2019-11-05 19:01:52 2019-11-05 19:03:49 t 1 1 153472 562 0.00 2019-11-05 19:09:09 2019-11-05 19:09:33 t 1 1 153473 481 0.00 2019-11-05 18:33:49 2019-11-05 19:10:00 t 1 1 153475 619 0.00 2019-11-05 19:08:09 2019-11-05 19:12:29 t 1 1 153476 556 0.00 2019-11-05 17:40:32 2019-11-05 19:13:01 t 1 1 153482 591 0.00 2019-11-05 16:20:40 2019-11-05 19:18:47 t 1 1 153486 562 0.00 2019-11-05 19:16:51 2019-11-05 19:21:32 t 1 1 153493 562 0.00 2019-11-05 19:29:39 2019-11-05 19:29:55 t 1 1 153499 637 0.00 2019-11-05 19:37:35 2019-11-05 19:38:56 t 1 1 153500 220 0.00 2019-11-05 18:17:17 2019-11-05 19:39:50 t 1 1 153505 639 0.00 2019-11-05 19:40:35 2019-11-05 19:40:39 t 1 1 153514 512 0.00 2019-11-05 19:38:59 2019-11-05 19:43:32 t 1 1 153518 562 0.00 2019-11-05 19:42:00 2019-11-05 19:44:47 t 1 1 153519 445 0.00 2019-11-05 19:44:23 2019-11-05 19:45:36 t 1 1 153522 562 0.00 2019-11-05 19:49:30 2019-11-05 19:49:40 t 1 1 153525 445 0.00 2019-11-05 19:50:16 2019-11-05 19:51:32 t 1 1 153529 516 0.00 2019-11-05 19:36:37 2019-11-05 19:55:03 t 1 1 153535 639 0.00 2019-11-05 19:58:38 2019-11-05 19:58:45 t 1 1 153536 639 0.00 2019-11-05 19:58:54 2019-11-05 19:59:57 t 1 1 153537 593 0.00 2019-11-05 19:33:04 2019-11-05 20:00:00 t 1 1 153539 220 0.00 2019-11-05 20:00:14 2019-11-05 20:00:32 t 1 1 153544 445 0.00 2019-11-05 20:00:32 2019-11-05 20:02:09 t 1 1 153546 585 0.00 2019-11-05 20:02:14 2019-11-05 20:03:55 t 1 1 153550 220 0.00 2019-11-05 20:01:05 2019-11-05 20:10:09 t 1 1 153553 520 0.00 2019-11-05 20:04:40 2019-11-05 20:11:58 t 1 1 153555 516 0.00 2019-11-05 20:00:58 2019-11-05 20:13:44 t 1 1 153559 416 0.00 2019-11-05 18:34:11 2019-11-05 20:16:04 t 1 1 153560 445 0.00 2019-11-05 20:02:15 2019-11-05 20:16:50 t 1 1 153566 556 0.00 2019-11-05 19:49:47 2019-11-05 20:26:38 t 1 1 153291 220 0.00 2019-11-05 16:19:46 2019-11-05 16:27:46 t 1 1 153299 639 0.00 2019-11-05 16:35:08 2019-11-05 16:35:16 t 1 1 153303 622 0.00 2019-11-05 16:37:03 2019-11-05 16:44:31 t 1 1 153305 587 0.00 2019-11-05 16:35:57 2019-11-05 16:46:17 t 1 1 153311 609 0.00 2019-11-05 13:35:42 2019-11-05 16:49:06 t 1 1 153312 625 0.00 2019-11-05 16:19:00 2019-11-05 16:49:20 t 1 1 153322 445 0.00 2019-11-05 16:40:29 2019-11-05 16:58:29 t 1 1 153331 625 0.00 2019-11-05 17:02:59 2019-11-05 17:05:48 t 1 1 153335 445 0.00 2019-11-05 17:01:28 2019-11-05 17:08:03 t 1 1 153336 619 0.00 2019-11-05 17:07:15 2019-11-05 17:09:26 t 1 1 153339 581 0.00 2019-11-05 17:11:24 2019-11-05 17:13:14 t 1 1 153345 564 0.00 2019-11-05 17:05:02 2019-11-05 17:20:24 t 1 1 153349 625 0.00 2019-11-05 17:22:55 2019-11-05 17:23:48 t 1 1 153350 625 0.00 2019-11-05 17:23:48 2019-11-05 17:24:23 t 1 1 153353 564 0.00 2019-11-05 17:20:29 2019-11-05 17:26:24 t 1 1 153354 587 0.00 2019-11-05 17:24:40 2019-11-05 17:27:29 t 1 1 153359 562 0.00 2019-11-05 17:28:37 2019-11-05 17:29:04 t 1 1 153365 562 0.00 2019-11-05 17:36:15 2019-11-05 17:36:38 t 1 1 153367 556 0.00 2019-11-05 13:13:11 2019-11-05 17:37:04 t 1 1 153371 556 0.00 2019-11-05 17:37:04 2019-11-05 17:40:32 t 1 1 153373 587 0.00 2019-11-05 17:33:25 2019-11-05 17:41:23 t 1 1 153376 562 0.00 2019-11-05 17:46:17 2019-11-05 17:46:44 t 1 1 153378 422 0.00 2019-11-05 17:46:29 2019-11-05 17:50:50 t 1 1 153379 562 0.00 2019-11-05 17:48:33 2019-11-05 17:51:05 t 1 1 153380 520 0.00 2019-11-05 17:46:37 2019-11-05 17:52:48 t 1 1 153384 625 0.00 2019-11-05 17:48:53 2019-11-05 17:54:39 t 1 1 153389 562 0.00 2019-11-05 17:59:55 2019-11-05 18:00:43 t 1 1 153400 481 0.00 2019-11-05 17:07:00 2019-11-05 18:14:48 t 1 1 153401 220 0.00 2019-11-05 18:08:28 2019-11-05 18:15:31 t 1 1 153403 562 0.00 2019-11-05 18:15:53 2019-11-05 18:16:52 t 1 1 153404 622 0.00 2019-11-05 16:57:06 2019-11-05 18:18:22 t 1 1 153408 570 0.00 2019-11-05 18:16:13 2019-11-05 18:20:22 t 1 1 153411 545 0.00 2019-11-05 17:40:11 2019-11-05 18:21:36 t 1 1 153413 416 0.00 2019-11-05 16:49:52 2019-11-05 18:22:49 t 1 1 153415 619 0.00 2019-11-05 18:21:23 2019-11-05 18:27:18 t 1 1 153426 639 0.00 2019-11-05 18:30:42 2019-11-05 18:31:06 t 1 1 153429 481 0.00 2019-11-05 18:28:08 2019-11-05 18:32:30 t 1 1 153433 514 0.00 2019-11-05 18:14:14 2019-11-05 18:34:35 t 1 1 153439 585 0.00 2019-11-05 18:43:42 2019-11-05 18:45:22 t 1 1 153440 445 0.00 2019-11-05 18:33:10 2019-11-05 18:51:23 t 1 1 153444 587 0.00 2019-11-05 18:38:14 2019-11-05 18:52:45 t 1 1 153446 639 0.00 2019-11-05 18:35:14 2019-11-05 18:53:22 t 1 1 153450 639 0.00 2019-11-05 18:54:30 2019-11-05 18:54:36 t 1 1 153455 623 0.00 2019-11-05 19:00:39 2019-11-05 19:00:39 f 1 1 153459 623 0.00 2019-11-05 19:01:28 2019-11-05 19:01:28 f 1 1 153461 623 0.00 2019-11-05 19:00:14 2019-11-05 19:01:49 t 1 1 153463 623 0.00 2019-11-05 19:02:17 2019-11-05 19:02:17 f 1 1 153466 623 0.00 2019-11-05 19:02:55 2019-11-05 19:02:55 f 1 1 153467 623 0.00 2019-11-05 19:03:07 2019-11-05 19:03:07 f 1 1 153469 623 0.00 2019-11-05 19:02:04 2019-11-05 19:03:49 t 1 1 153478 637 0.00 2019-11-05 19:13:16 2019-11-05 19:15:04 t 1 1 153483 556 0.00 2019-11-05 19:13:01 2019-11-05 19:20:32 t 1 1 153484 637 0.00 2019-11-05 19:15:14 2019-11-05 19:21:06 t 1 1 153487 637 0.00 2019-11-05 19:21:23 2019-11-05 19:23:35 t 1 1 153494 639 0.00 2019-11-05 18:54:45 2019-11-05 19:34:24 t 1 1 153496 639 0.00 2019-11-05 19:34:48 2019-11-05 19:35:35 t 1 1 153497 639 0.00 2019-11-05 19:35:45 2019-11-05 19:35:51 t 1 1 153498 637 0.00 2019-11-05 19:31:53 2019-11-05 19:36:32 t 1 1 153503 562 0.00 2019-11-05 19:40:02 2019-11-05 19:40:07 t 1 1 153506 570 0.00 2019-11-05 19:21:17 2019-11-05 19:41:11 t 1 1 153508 639 0.00 2019-11-05 19:41:44 2019-11-05 19:41:49 t 1 1 153510 619 0.00 2019-11-05 19:23:14 2019-11-05 19:42:16 t 1 1 153513 625 0.00 2019-11-05 18:53:45 2019-11-05 19:43:15 t 1 1 153516 445 0.00 2019-11-05 19:41:53 2019-11-05 19:43:48 t 1 1 153520 220 0.00 2019-11-05 19:39:50 2019-11-05 19:48:04 t 1 1 153524 445 0.00 2019-11-05 19:49:09 2019-11-05 19:50:15 t 1 1 153526 451 0.00 2019-11-05 19:35:50 2019-11-05 19:51:55 t 1 1 153528 566 0.00 2019-11-05 19:37:27 2019-11-05 19:54:47 t 1 1 153531 445 0.00 2019-11-05 19:51:38 2019-11-05 19:55:51 t 1 1 153533 591 0.00 2019-11-05 19:18:47 2019-11-05 19:58:11 t 1 1 153541 422 0.00 2019-11-05 19:49:19 2019-11-05 20:01:14 t 1 1 153543 481 0.00 2019-11-05 19:40:02 2019-11-05 20:01:57 t 1 1 153547 566 0.00 2019-11-05 19:54:47 2019-11-05 20:04:07 t 1 1 153548 562 0.00 2019-11-05 20:04:39 2019-11-05 20:05:00 t 1 1 153551 379 0.00 2019-11-05 16:47:17 2019-11-05 20:10:25 t 1 1 153552 591 0.00 2019-11-05 20:03:36 2019-11-05 20:11:24 t 1 1 153554 520 0.00 2019-11-05 20:11:57 2019-11-05 20:13:02 t 1 1 153556 637 0.00 2019-11-05 19:56:44 2019-11-05 20:14:03 t 1 1 153557 566 0.00 2019-11-05 20:04:07 2019-11-05 20:14:24 t 1 1 153558 570 0.00 2019-11-05 19:43:02 2019-11-05 20:14:51 t 1 1 153562 516 0.00 2019-11-05 20:16:04 2019-11-05 20:20:13 t 1 1 153564 520 0.00 2019-11-05 20:20:44 2019-11-05 20:24:06 t 1 1 153565 641 0.00 2019-11-05 20:16:21 2019-11-05 20:26:09 t 1 1 153571 639 0.00 2019-11-05 20:28:12 2019-11-05 20:32:21 t 1 1 153577 562 0.00 2019-11-05 20:33:05 2019-11-05 20:35:44 t 1 1 153580 633 0.00 2019-11-05 20:02:07 2019-11-05 20:37:55 t 1 1 153581 551 0.00 2019-11-05 20:33:33 2019-11-05 20:40:03 t 1 1 153585 445 0.00 2019-11-05 20:35:09 2019-11-05 20:42:51 t 1 1 153597 416 0.00 2019-11-05 20:41:12 2019-11-05 20:51:34 t 1 1 153602 416 0.00 2019-11-05 20:51:43 2019-11-05 20:54:19 t 1 1 153605 562 0.00 2019-11-05 20:58:47 2019-11-05 20:59:21 t 1 1 153607 627 0.00 2019-11-05 20:59:48 2019-11-05 21:00:31 t 1 1 153611 633 0.00 2019-11-05 20:54:00 2019-11-05 21:02:47 t 1 1 153617 562 0.00 2019-11-05 21:14:41 2019-11-05 21:14:53 t 1 1 153618 633 0.00 2019-11-05 21:12:00 2019-11-05 21:14:57 t 1 1 153621 619 0.00 2019-11-05 21:13:11 2019-11-05 21:17:23 t 1 1 153622 564 0.00 2019-11-05 20:49:57 2019-11-05 21:19:22 t 1 1 153625 625 0.00 2019-11-05 20:45:00 2019-11-05 21:22:38 t 1 1 153633 637 0.00 2019-11-05 21:16:47 2019-11-05 21:30:18 t 1 1 153635 551 0.00 2019-11-05 21:26:57 2019-11-05 21:32:42 t 1 1 153637 637 0.00 2019-11-05 21:30:18 2019-11-05 21:36:08 t 1 1 153640 619 0.00 2019-11-05 21:31:51 2019-11-05 21:40:13 t 1 1 153644 562 0.00 2019-11-05 21:40:40 2019-11-05 21:41:32 t 1 1 153646 566 0.00 2019-11-05 21:24:38 2019-11-05 21:43:44 t 1 1 153648 551 0.00 2019-11-05 21:38:29 2019-11-05 21:43:44 t 1 1 153651 566 0.00 2019-11-05 21:43:44 2019-11-05 21:53:28 t 1 1 153653 456 0.00 2019-11-05 21:32:58 2019-11-05 21:57:09 t 1 1 153532 637 0.00 2019-11-05 19:40:08 2019-11-05 19:56:10 t 1 1 153534 639 0.00 2019-11-05 19:41:59 2019-11-05 19:58:28 t 1 1 153538 220 0.00 2019-11-05 19:48:04 2019-11-05 20:00:14 t 1 1 153540 220 0.00 2019-11-05 20:00:32 2019-11-05 20:01:05 t 1 1 153542 422 0.00 2019-11-05 20:01:14 2019-11-05 20:01:26 t 1 1 153545 591 0.00 2019-11-05 19:58:11 2019-11-05 20:03:36 t 1 1 153549 619 0.00 2019-11-05 20:05:34 2019-11-05 20:07:16 t 1 1 153561 591 0.00 2019-11-05 20:11:24 2019-11-05 20:19:35 t 1 1 153563 551 0.00 2019-11-05 14:06:55 2019-11-05 20:23:16 t 1 1 153572 556 0.00 2019-11-05 20:26:38 2019-11-05 20:32:25 t 1 1 153573 639 0.00 2019-11-05 20:32:25 2019-11-05 20:33:01 t 1 1 153574 551 0.00 2019-11-05 20:23:16 2019-11-05 20:33:33 t 1 1 153578 597 0.00 2019-11-05 20:23:33 2019-11-05 20:36:13 t 1 1 153582 619 0.00 2019-11-05 20:24:15 2019-11-05 20:40:10 t 1 1 153583 416 0.00 2019-11-05 20:18:19 2019-11-05 20:41:49 t 1 1 153588 551 0.00 2019-11-05 20:40:03 2019-11-05 20:45:33 t 1 1 153589 633 0.00 2019-11-05 20:38:12 2019-11-05 20:46:04 t 1 1 153590 566 0.00 2019-11-05 20:33:57 2019-11-05 20:47:12 t 1 1 153592 556 0.00 2019-11-05 20:43:42 2019-11-05 20:48:55 t 1 1 153593 564 0.00 2019-11-05 18:18:52 2019-11-05 20:49:57 t 1 1 153595 551 0.00 2019-11-05 20:45:33 2019-11-05 20:50:48 t 1 1 153596 585 0.00 2019-11-05 20:49:06 2019-11-05 20:51:21 t 1 1 153599 562 0.00 2019-11-05 20:52:23 2019-11-05 20:52:54 t 1 1 153600 633 0.00 2019-11-05 20:46:04 2019-11-05 20:54:00 t 1 1 153604 639 0.00 2019-11-05 20:55:24 2019-11-05 20:56:11 t 1 1 153610 639 0.00 2019-11-05 21:00:58 2019-11-05 21:01:43 t 1 1 153613 551 0.00 2019-11-05 20:50:48 2019-11-05 21:11:26 t 1 1 153614 619 0.00 2019-11-05 21:11:37 2019-11-05 21:11:37 t 1 1 153615 633 0.00 2019-11-05 21:02:47 2019-11-05 21:12:00 t 1 1 153626 566 0.00 2019-11-05 21:15:23 2019-11-05 21:24:38 t 1 1 153628 562 0.00 2019-11-05 21:24:11 2019-11-05 21:25:50 t 1 1 153630 551 0.00 2019-11-05 21:19:43 2019-11-05 21:26:57 t 1 1 153631 625 0.00 2019-11-05 21:22:38 2019-11-05 21:27:48 t 1 1 153638 551 0.00 2019-11-05 21:32:42 2019-11-05 21:38:29 t 1 1 153642 570 0.00 2019-11-05 20:32:13 2019-11-05 21:40:38 t 1 1 153643 643 0.00 2019-11-05 21:35:25 2019-11-05 21:41:09 t 1 1 153647 562 0.00 2019-11-05 21:41:35 2019-11-05 21:43:44 t 1 1 153654 578 0.00 2019-11-05 20:55:20 2019-11-05 21:58:15 t 1 1 153657 545 0.00 2019-11-05 21:35:17 2019-11-05 21:58:43 t 1 1 153659 412 0.00 2019-11-05 14:05:07 2019-11-05 22:01:01 t 1 1 153660 430 0.00 2019-11-05 22:01:50 2019-11-05 22:01:52 t 1 1 153670 416 0.00 2019-11-05 20:54:26 2019-11-05 22:11:14 t 1 1 153672 591 0.00 2019-11-05 21:58:36 2019-11-05 22:12:00 t 1 1 153674 597 0.00 2019-11-05 22:01:55 2019-11-05 22:12:37 t 1 1 153678 520 0.00 2019-11-05 22:03:07 2019-11-05 22:14:39 t 1 1 153681 587 0.00 2019-11-05 22:14:00 2019-11-05 22:15:18 t 1 1 153682 430 0.00 2019-11-05 22:15:23 2019-11-05 22:15:44 t 1 1 153684 430 0.00 2019-11-05 22:19:41 2019-11-05 22:19:46 t 1 1 153689 570 0.00 2019-11-05 22:09:22 2019-11-05 22:24:46 t 1 1 153693 578 0.00 2019-11-05 22:11:16 2019-11-05 22:27:51 t 1 1 153696 445 0.00 2019-11-05 21:58:41 2019-11-05 22:29:18 t 1 1 153697 430 0.00 2019-11-05 22:29:40 2019-11-05 22:29:47 t 1 1 153700 587 0.00 2019-11-05 22:27:01 2019-11-05 22:32:51 t 1 1 153704 430 0.00 2019-11-05 22:34:39 2019-11-05 22:34:46 t 1 1 153708 430 0.00 2019-11-05 22:37:40 2019-11-05 22:37:47 t 1 1 153710 562 0.00 2019-11-05 22:37:56 2019-11-05 22:38:45 t 1 1 153711 422 0.00 2019-11-05 22:38:12 2019-11-05 22:39:08 t 1 1 153713 538 0.00 2019-11-05 22:30:26 2019-11-05 22:39:22 t 1 1 153717 422 0.00 2019-11-05 22:39:14 2019-11-05 22:40:25 t 1 1 153719 451 0.00 2019-11-05 22:27:10 2019-11-05 22:40:44 t 1 1 153722 481 0.00 2019-11-05 20:42:13 2019-11-05 22:42:33 t 1 1 153725 430 0.00 2019-11-05 22:42:40 2019-11-05 22:42:49 t 1 1 153729 430 0.00 2019-11-05 22:44:43 2019-11-05 22:44:50 t 1 1 153731 422 0.00 2019-11-05 22:42:46 2019-11-05 22:46:02 t 1 1 153733 416 0.00 2019-11-05 22:23:54 2019-11-05 22:47:39 t 1 1 153734 220 0.00 2019-11-05 22:46:04 2019-11-05 22:47:40 t 1 1 153738 637 0.00 2019-11-05 22:40:38 2019-11-05 22:49:37 t 1 1 153739 430 0.00 2019-11-05 22:49:03 2019-11-05 22:49:42 t 1 1 153745 623 0.00 2019-11-05 22:47:54 2019-11-05 22:51:26 t 1 1 153746 623 0.00 2019-11-05 22:51:39 2019-11-05 22:51:40 t 1 1 153750 591 0.00 2019-11-05 22:12:00 2019-11-05 22:54:38 t 1 1 153751 220 0.00 2019-11-05 22:48:11 2019-11-05 22:54:46 t 1 1 153753 623 0.00 2019-11-05 22:55:06 2019-11-05 22:55:08 t 1 1 153755 623 0.00 2019-11-05 22:56:35 2019-11-05 22:56:47 t 1 1 153757 637 0.00 2019-11-05 22:49:37 2019-11-05 22:56:53 t 1 1 153759 623 0.00 2019-11-05 22:57:31 2019-11-05 22:57:34 t 1 1 153762 430 0.00 2019-11-05 22:56:51 2019-11-05 22:58:51 t 1 1 153763 562 0.00 2019-11-05 22:59:55 2019-11-05 23:00:14 t 1 1 153765 422 0.00 2019-11-05 22:46:18 2019-11-05 23:00:56 t 1 1 153767 430 0.00 2019-11-05 23:01:55 2019-11-05 23:02:02 t 1 1 153771 220 0.00 2019-11-05 22:55:20 2019-11-05 23:03:47 t 1 1 153772 637 0.00 2019-11-05 22:56:53 2019-11-05 23:04:08 t 1 1 153773 220 0.00 2019-11-05 23:03:46 2019-11-05 23:04:17 t 1 1 153776 597 0.00 2019-11-05 23:01:31 2019-11-05 23:05:21 t 1 1 153779 430 0.00 2019-11-05 23:06:57 2019-11-05 23:07:03 t 1 1 153783 430 0.00 2019-11-05 23:07:14 2019-11-05 23:07:53 t 1 1 153786 587 0.00 2019-11-05 23:02:10 2019-11-05 23:08:25 t 1 1 153788 220 0.00 2019-11-05 23:09:02 2019-11-05 23:09:37 t 1 1 153789 430 0.00 2019-11-05 23:10:30 2019-11-05 23:10:46 t 1 1 153792 623 0.00 2019-11-05 23:11:10 2019-11-05 23:11:34 t 1 1 153796 514 0.00 2019-11-05 23:07:28 2019-11-05 23:13:54 t 1 1 153801 514 0.00 2019-11-05 23:13:54 2019-11-05 23:16:49 t 1 1 153804 639 0.00 2019-11-05 23:19:05 2019-11-05 23:19:12 t 1 1 153806 445 0.00 2019-11-05 23:16:13 2019-11-05 23:19:55 t 1 1 153811 220 0.00 2019-11-05 23:21:48 2019-11-05 23:23:17 t 1 1 153813 622 0.00 2019-11-05 21:43:03 2019-11-05 23:25:24 t 1 1 153815 623 0.00 2019-11-05 23:13:40 2019-11-05 23:27:05 t 1 1 153828 528 0.00 2019-11-05 23:20:15 2019-11-05 23:32:50 t 1 1 153829 430 0.00 2019-11-05 23:33:10 2019-11-05 23:33:12 t 1 1 153833 562 0.00 2019-11-05 23:34:23 2019-11-05 23:35:58 t 1 1 153836 416 0.00 2019-11-05 23:07:39 2019-11-05 23:37:46 t 1 1 153847 220 0.00 2019-11-05 23:40:28 2019-11-05 23:44:16 t 1 1 153851 623 0.00 2019-11-05 23:47:51 2019-11-05 23:47:55 t 1 1 153852 623 0.00 2019-11-05 23:48:07 2019-11-05 23:48:09 t 1 1 153855 622 0.00 2019-11-05 23:43:18 2019-11-05 23:50:44 t 1 1 153856 587 0.00 2019-11-05 23:37:49 2019-11-05 23:51:14 t 1 1 153857 220 0.00 2019-11-05 23:46:20 2019-11-05 23:51:22 t 1 1 153567 591 0.00 2019-11-05 20:19:35 2019-11-05 20:27:08 t 1 1 153568 639 0.00 2019-11-05 20:00:28 2019-11-05 20:28:12 t 1 1 153569 611 0.00 2019-11-05 20:05:22 2019-11-05 20:30:29 t 1 1 153570 570 0.00 2019-11-05 20:14:17 2019-11-05 20:32:13 t 1 1 153575 566 0.00 2019-11-05 20:14:24 2019-11-05 20:33:57 t 1 1 153576 445 0.00 2019-11-05 20:16:55 2019-11-05 20:35:10 t 1 1 153579 556 0.00 2019-11-05 20:32:25 2019-11-05 20:37:52 t 1 1 153584 481 0.00 2019-11-05 20:01:57 2019-11-05 20:42:13 t 1 1 153586 556 0.00 2019-11-05 20:37:52 2019-11-05 20:43:42 t 1 1 153587 625 0.00 2019-11-05 20:25:01 2019-11-05 20:44:55 t 1 1 153591 591 0.00 2019-11-05 20:27:08 2019-11-05 20:48:09 t 1 1 153594 562 0.00 2019-11-05 20:35:43 2019-11-05 20:50:45 t 1 1 153598 619 0.00 2019-11-05 20:43:36 2019-11-05 20:52:42 t 1 1 153601 556 0.00 2019-11-05 20:48:55 2019-11-05 20:54:16 t 1 1 153603 639 0.00 2019-11-05 20:33:08 2019-11-05 20:55:19 t 1 1 153606 556 0.00 2019-11-05 20:54:16 2019-11-05 21:00:08 t 1 1 153608 639 0.00 2019-11-05 20:56:18 2019-11-05 21:00:55 t 1 1 153609 581 0.00 2019-11-05 20:19:13 2019-11-05 21:01:00 t 1 1 153612 520 0.00 2019-11-05 21:02:30 2019-11-05 21:05:58 t 1 1 153616 619 0.00 2019-11-05 21:11:37 2019-11-05 21:12:50 t 1 1 153619 637 0.00 2019-11-05 20:14:06 2019-11-05 21:16:47 t 1 1 153620 545 0.00 2019-11-05 20:58:52 2019-11-05 21:17:13 t 1 1 153623 551 0.00 2019-11-05 21:11:26 2019-11-05 21:19:43 t 1 1 153624 545 0.00 2019-11-05 21:17:13 2019-11-05 21:21:19 t 1 1 153627 562 0.00 2019-11-05 21:25:14 2019-11-05 21:25:31 t 1 1 153629 220 0.00 2019-11-05 20:10:09 2019-11-05 21:26:12 t 1 1 153632 512 0.00 2019-11-05 21:15:41 2019-11-05 21:28:30 t 1 1 153634 562 0.00 2019-11-05 21:31:58 2019-11-05 21:32:08 t 1 1 153636 545 0.00 2019-11-05 21:34:32 2019-11-05 21:35:17 t 1 1 153639 622 0.00 2019-11-05 20:29:27 2019-11-05 21:38:32 t 1 1 153641 562 0.00 2019-11-05 21:36:01 2019-11-05 21:40:21 t 1 1 153645 622 0.00 2019-11-05 21:38:32 2019-11-05 21:43:03 t 1 1 153649 637 0.00 2019-11-05 21:36:08 2019-11-05 21:47:37 t 1 1 153650 619 0.00 2019-11-05 21:43:48 2019-11-05 21:50:26 t 1 1 153652 516 0.00 2019-11-05 21:51:33 2019-11-05 21:54:39 t 1 1 153655 430 0.00 2019-11-05 21:46:23 2019-11-05 21:58:31 t 1 1 153658 566 0.00 2019-11-05 21:53:28 2019-11-05 21:59:12 t 1 1 153662 430 0.00 2019-11-05 22:02:11 2019-11-05 22:02:47 t 1 1 153665 379 0.00 2019-11-05 20:10:25 2019-11-05 22:04:35 t 1 1 153667 637 0.00 2019-11-05 22:04:26 2019-11-05 22:06:09 t 1 1 153669 637 0.00 2019-11-05 22:07:31 2019-11-05 22:11:03 t 1 1 153671 578 0.00 2019-11-05 21:58:15 2019-11-05 22:11:16 t 1 1 153673 619 0.00 2019-11-05 22:07:56 2019-11-05 22:12:29 t 1 1 153675 430 0.00 2019-11-05 22:02:56 2019-11-05 22:12:58 t 1 1 153677 595 0.00 2019-11-05 22:08:23 2019-11-05 22:14:32 t 1 1 153686 430 0.00 2019-11-05 22:22:21 2019-11-05 22:22:53 t 1 1 153691 451 0.00 2019-11-05 22:15:31 2019-11-05 22:27:10 t 1 1 153692 430 0.00 2019-11-05 22:27:32 2019-11-05 22:27:35 t 1 1 153694 562 0.00 2019-11-05 22:09:36 2019-11-05 22:27:56 t 1 1 153695 595 0.00 2019-11-05 22:19:33 2019-11-05 22:29:12 t 1 1 153698 545 0.00 2019-11-05 22:15:18 2019-11-05 22:31:21 t 1 1 153699 430 0.00 2019-11-05 22:32:36 2019-11-05 22:32:45 t 1 1 153702 589 0.00 2019-11-05 22:31:01 2019-11-05 22:33:48 t 1 1 153706 587 0.00 2019-11-05 22:32:54 2019-11-05 22:35:49 t 1 1 153714 220 0.00 2019-11-05 21:35:49 2019-11-05 22:39:32 t 1 1 153720 422 0.00 2019-11-05 22:42:01 2019-11-05 22:42:12 t 1 1 153724 220 0.00 2019-11-05 22:42:14 2019-11-05 22:42:47 t 1 1 153726 451 0.00 2019-11-05 22:40:44 2019-11-05 22:43:01 t 1 1 153732 220 0.00 2019-11-05 22:45:28 2019-11-05 22:46:04 t 1 1 153736 562 0.00 2019-11-05 22:38:45 2019-11-05 22:48:31 t 1 1 153737 597 0.00 2019-11-05 22:47:07 2019-11-05 22:49:13 t 1 1 153741 562 0.00 2019-11-05 22:49:37 2019-11-05 22:50:14 t 1 1 153744 375 0.00 2019-11-05 22:44:05 2019-11-05 22:51:23 t 1 1 153747 430 0.00 2019-11-05 22:51:39 2019-11-05 22:52:13 t 1 1 153754 220 0.00 2019-11-05 22:54:46 2019-11-05 22:55:21 t 1 1 153760 623 0.00 2019-11-05 22:57:46 2019-11-05 22:57:48 t 1 1 153761 562 0.00 2019-11-05 22:58:11 2019-11-05 22:58:37 t 1 1 153764 591 0.00 2019-11-05 22:59:59 2019-11-05 23:00:36 t 1 1 153766 587 0.00 2019-11-05 23:00:19 2019-11-05 23:01:04 t 1 1 153769 623 0.00 2019-11-05 23:02:36 2019-11-05 23:02:44 t 1 1 153774 562 0.00 2019-11-05 23:04:17 2019-11-05 23:04:39 t 1 1 153775 430 0.00 2019-11-05 23:03:54 2019-11-05 23:04:59 t 1 1 153777 556 0.00 2019-11-05 22:53:11 2019-11-05 23:06:03 t 1 1 153778 625 0.00 2019-11-05 22:31:03 2019-11-05 23:06:07 t 1 1 153781 416 0.00 2019-11-05 22:47:39 2019-11-05 23:07:39 t 1 1 153782 623 0.00 2019-11-05 23:07:48 2019-11-05 23:07:50 t 1 1 153785 422 0.00 2019-11-05 23:08:04 2019-11-05 23:08:23 t 1 1 153790 422 0.00 2019-11-05 23:10:36 2019-11-05 23:10:59 t 1 1 153791 422 0.00 2019-11-05 23:11:23 2019-11-05 23:11:31 t 1 1 153798 422 0.00 2019-11-05 23:12:00 2019-11-05 23:14:28 t 1 1 153800 562 0.00 2019-11-05 23:12:42 2019-11-05 23:16:17 t 1 1 153805 585 0.00 2019-11-05 23:10:35 2019-11-05 23:19:46 t 1 1 153808 587 0.00 2019-11-05 23:08:39 2019-11-05 23:21:44 t 1 1 153810 430 0.00 2019-11-05 23:22:09 2019-11-05 23:22:15 t 1 1 153812 514 0.00 2019-11-05 23:20:20 2019-11-05 23:24:49 t 1 1 153816 623 0.00 2019-11-05 23:27:49 2019-11-05 23:27:52 t 1 1 153817 514 0.00 2019-11-05 23:24:49 2019-11-05 23:28:13 t 1 1 153819 411 0.00 2019-11-05 23:28:22 2019-11-05 23:28:22 f 1 1 153820 623 0.00 2019-11-05 23:28:40 2019-11-05 23:28:55 t 1 1 153821 445 0.00 2019-11-05 23:21:53 2019-11-05 23:28:58 t 1 1 153823 220 0.00 2019-11-05 23:23:17 2019-11-05 23:30:50 t 1 1 153824 220 0.00 2019-11-05 23:30:49 2019-11-05 23:31:23 t 1 1 153826 622 0.00 2019-11-05 23:25:24 2019-11-05 23:32:09 t 1 1 153827 430 0.00 2019-11-05 23:32:19 2019-11-05 23:32:20 t 1 1 153830 625 0.00 2019-11-05 23:06:07 2019-11-05 23:33:30 t 1 1 153831 483 0.00 2019-11-05 23:30:18 2019-11-05 23:34:02 t 1 1 153832 483 0.00 2019-11-05 23:34:29 2019-11-05 23:35:40 t 1 1 153834 623 0.00 2019-11-05 23:32:24 2019-11-05 23:36:19 t 1 1 153835 622 0.00 2019-11-05 23:32:09 2019-11-05 23:37:18 t 1 1 153838 445 0.00 2019-11-05 23:28:57 2019-11-05 23:38:29 t 1 1 153839 220 0.00 2019-11-05 23:31:23 2019-11-05 23:39:49 t 1 1 153840 510 0.00 2019-11-05 23:08:02 2019-11-05 23:40:14 t 1 1 153841 220 0.00 2019-11-05 23:39:48 2019-11-05 23:40:28 t 1 1 153844 445 0.00 2019-11-05 23:38:29 2019-11-05 23:41:35 t 1 1 153846 430 0.00 2019-11-05 23:43:11 2019-11-05 23:43:23 t 1 1 153848 562 0.00 2019-11-05 23:45:10 2019-11-05 23:45:37 t 1 1 153849 445 0.00 2019-11-05 23:41:35 2019-11-05 23:46:26 t 1 1 153656 445 0.00 2019-11-05 20:42:55 2019-11-05 21:58:38 t 1 1 153661 597 0.00 2019-11-05 21:36:54 2019-11-05 22:01:55 t 1 1 153663 625 0.00 2019-11-05 21:30:11 2019-11-05 22:04:19 t 1 1 153664 551 0.00 2019-11-05 21:43:44 2019-11-05 22:04:31 t 1 1 153666 637 0.00 2019-11-05 21:49:21 2019-11-05 22:04:40 t 1 1 153668 375 0.00 2019-11-05 21:43:54 2019-11-05 22:07:02 t 1 1 153676 430 0.00 2019-11-05 22:13:38 2019-11-05 22:13:57 t 1 1 153679 585 0.00 2019-11-05 22:10:07 2019-11-05 22:14:57 t 1 1 153680 430 0.00 2019-11-05 22:14:04 2019-11-05 22:15:16 t 1 1 153683 595 0.00 2019-11-05 22:17:36 2019-11-05 22:17:39 t 1 1 153685 430 0.00 2019-11-05 22:20:09 2019-11-05 22:20:14 t 1 1 153687 416 0.00 2019-11-05 22:11:14 2019-11-05 22:23:47 t 1 1 153688 625 0.00 2019-11-05 22:04:19 2019-11-05 22:24:31 t 1 1 153690 430 0.00 2019-11-05 22:24:41 2019-11-05 22:24:47 t 1 1 153701 422 0.00 2019-11-05 22:33:15 2019-11-05 22:33:47 t 1 1 153703 595 0.00 2019-11-05 22:30:22 2019-11-05 22:34:17 t 1 1 153705 422 0.00 2019-11-05 22:35:25 2019-11-05 22:35:38 t 1 1 153707 422 0.00 2019-11-05 22:37:15 2019-11-05 22:37:38 t 1 1 153709 562 0.00 2019-11-05 22:36:58 2019-11-05 22:37:50 t 1 1 153712 430 0.00 2019-11-05 22:38:56 2019-11-05 22:39:09 t 1 1 153715 430 0.00 2019-11-05 22:39:41 2019-11-05 22:39:43 t 1 1 153716 570 0.00 2019-11-05 22:24:47 2019-11-05 22:40:13 t 1 1 153718 637 0.00 2019-11-05 22:11:49 2019-11-05 22:40:38 t 1 1 153721 220 0.00 2019-11-05 22:39:32 2019-11-05 22:42:14 t 1 1 153723 422 0.00 2019-11-05 22:42:18 2019-11-05 22:42:39 t 1 1 153727 375 0.00 2019-11-05 22:07:02 2019-11-05 22:44:05 t 1 1 153728 445 0.00 2019-11-05 22:29:24 2019-11-05 22:44:30 t 1 1 153730 220 0.00 2019-11-05 22:42:46 2019-11-05 22:45:28 t 1 1 153735 220 0.00 2019-11-05 22:47:39 2019-11-05 22:48:12 t 1 1 153740 570 0.00 2019-11-05 22:40:13 2019-11-05 22:50:12 t 1 1 153742 445 0.00 2019-11-05 22:44:27 2019-11-05 22:50:22 t 1 1 153743 445 0.00 2019-11-05 22:50:22 2019-11-05 22:51:18 t 1 1 153748 556 0.00 2019-11-05 21:00:08 2019-11-05 22:53:11 t 1 1 153749 562 0.00 2019-11-05 22:53:17 2019-11-05 22:53:26 t 1 1 153752 430 0.00 2019-11-05 22:54:46 2019-11-05 22:54:52 t 1 1 153756 623 0.00 2019-11-05 22:54:59 2019-11-05 22:56:51 t 1 1 153758 623 0.00 2019-11-05 22:57:11 2019-11-05 22:57:18 t 1 1 153768 570 0.00 2019-11-05 22:50:12 2019-11-05 23:02:09 t 1 1 153770 528 0.00 2019-11-05 22:56:09 2019-11-05 23:03:16 t 1 1 153780 562 0.00 2019-11-05 23:07:11 2019-11-05 23:07:39 t 1 1 153784 510 0.00 2019-11-05 23:06:07 2019-11-05 23:07:56 t 1 1 153787 220 0.00 2019-11-05 23:04:16 2019-11-05 23:09:02 t 1 1 153793 430 0.00 2019-11-05 23:11:51 2019-11-05 23:12:28 t 1 1 153794 220 0.00 2019-11-05 23:09:37 2019-11-05 23:12:48 t 1 1 153795 220 0.00 2019-11-05 23:12:47 2019-11-05 23:13:19 t 1 1 153797 430 0.00 2019-11-05 23:13:55 2019-11-05 23:14:11 t 1 1 153799 445 0.00 2019-11-05 22:51:18 2019-11-05 23:16:14 t 1 1 153802 430 0.00 2019-11-05 23:17:04 2019-11-05 23:17:06 t 1 1 153803 639 0.00 2019-11-05 21:01:51 2019-11-05 23:19:02 t 1 1 153807 514 0.00 2019-11-05 23:16:49 2019-11-05 23:20:20 t 1 1 153809 220 0.00 2019-11-05 23:13:19 2019-11-05 23:21:49 t 1 1 153814 562 0.00 2019-11-05 23:25:31 2019-11-05 23:26:04 t 1 1 153818 483 0.00 2019-11-05 23:21:41 2019-11-05 23:28:13 t 1 1 153822 483 0.00 2019-11-05 23:28:47 2019-11-05 23:30:19 t 1 1 153825 609 0.00 2019-11-05 16:49:06 2019-11-05 23:31:24 t 1 1 153837 587 0.00 2019-11-05 23:22:31 2019-11-05 23:37:49 t 1 1 153842 514 0.00 2019-11-05 23:28:13 2019-11-05 23:40:44 t 1 1 153843 570 0.00 2019-11-05 23:02:09 2019-11-05 23:41:15 t 1 1 153845 622 0.00 2019-11-05 23:37:18 2019-11-05 23:43:18 t 1 1 153850 623 0.00 2019-11-05 23:36:24 2019-11-05 23:46:35 t 1 1 153853 430 0.00 2019-11-05 23:48:19 2019-11-05 23:48:26 t 1 1 153854 430 0.00 2019-11-05 23:49:18 2019-11-05 23:49:41 t 1 1 153860 220 0.00 2019-11-05 23:52:48 2019-11-05 23:53:20 t 1 1 153861 587 0.00 2019-11-05 23:51:14 2019-11-05 23:54:10 t 1 1 153868 623 0.00 2019-11-05 23:58:00 2019-11-05 23:58:02 t 1 1 153871 430 0.00 2019-11-05 23:58:43 2019-11-05 23:58:55 t 1 1 153872 622 0.00 2019-11-05 23:50:44 2019-11-05 23:59:05 t 1 1 153874 623 0.00 2019-11-06 00:00:22 2019-11-06 00:00:34 t 1 1 153878 562 0.00 2019-11-06 00:03:31 2019-11-06 00:03:37 t 1 1 153885 623 0.00 2019-11-06 00:08:10 2019-11-06 00:08:14 t 1 1 153888 622 0.00 2019-11-05 23:59:05 2019-11-06 00:10:17 t 1 1 153892 562 0.00 2019-11-06 00:04:15 2019-11-06 00:12:11 t 1 1 153895 220 0.00 2019-11-06 00:04:58 2019-11-06 00:13:21 t 1 1 153896 220 0.00 2019-11-06 00:13:20 2019-11-06 00:13:56 t 1 1 153898 609 0.00 2019-11-05 23:58:15 2019-11-06 00:14:43 t 1 1 153901 623 0.00 2019-11-06 00:18:17 2019-11-06 00:18:26 t 1 1 153904 623 0.00 2019-11-06 00:19:00 2019-11-06 00:19:03 t 1 1 153906 430 0.00 2019-11-06 00:19:09 2019-11-06 00:19:11 t 1 1 153908 587 0.00 2019-11-06 00:19:38 2019-11-06 00:19:43 t 1 1 153911 623 0.00 2019-11-06 00:23:28 2019-11-06 00:23:35 t 1 1 153912 623 0.00 2019-11-06 00:23:52 2019-11-06 00:23:54 t 1 1 153913 633 0.00 2019-11-06 00:16:07 2019-11-06 00:24:07 t 1 1 153915 587 0.00 2019-11-06 00:23:41 2019-11-06 00:24:55 t 1 1 153916 512 0.00 2019-11-06 00:08:09 2019-11-06 00:27:39 t 1 1 153917 220 0.00 2019-11-06 00:22:23 2019-11-06 00:28:15 t 1 1 153918 623 0.00 2019-11-06 00:28:33 2019-11-06 00:28:34 t 1 1 153919 430 0.00 2019-11-06 00:29:02 2019-11-06 00:29:09 t 1 1 153922 637 0.00 2019-11-05 23:04:08 2019-11-06 00:29:59 t 1 1 153926 430 0.00 2019-11-06 00:32:04 2019-11-06 00:32:11 t 1 1 153933 623 0.00 2019-11-06 00:38:38 2019-11-06 00:38:40 t 1 1 153934 430 0.00 2019-11-06 00:39:21 2019-11-06 00:39:28 t 1 1 153935 633 0.00 2019-11-06 00:32:58 2019-11-06 00:40:05 t 1 1 153936 220 0.00 2019-11-06 00:32:00 2019-11-06 00:40:26 t 1 1 153939 623 0.00 2019-11-06 00:43:43 2019-11-06 00:43:45 t 1 1 153943 633 0.00 2019-11-06 00:40:05 2019-11-06 00:45:42 t 1 1 153945 623 0.00 2019-11-06 00:48:48 2019-11-06 00:48:50 t 1 1 153946 220 0.00 2019-11-06 00:40:58 2019-11-06 00:49:29 t 1 1 153948 570 0.00 2019-11-06 00:34:45 2019-11-06 00:49:43 t 1 1 153950 220 0.00 2019-11-06 00:49:28 2019-11-06 00:50:04 t 1 1 153954 622 0.00 2019-11-06 00:18:36 2019-11-06 00:52:56 t 1 1 153955 514 0.00 2019-11-05 23:40:44 2019-11-06 00:53:39 t 1 1 153956 623 0.00 2019-11-06 00:53:56 2019-11-06 00:53:57 t 1 1 153957 430 0.00 2019-11-06 00:54:37 2019-11-06 00:54:39 t 1 1 153960 633 0.00 2019-11-06 00:50:59 2019-11-06 00:57:46 t 1 1 153963 623 0.00 2019-11-06 00:58:59 2019-11-06 00:59:02 t 1 1 153965 430 0.00 2019-11-06 00:59:41 2019-11-06 00:59:42 t 1 1 153967 633 0.00 2019-11-06 00:57:46 2019-11-06 01:01:48 t 1 1 153858 220 0.00 2019-11-05 23:51:22 2019-11-05 23:52:49 t 1 1 153859 623 0.00 2019-11-05 23:52:55 2019-11-05 23:52:57 t 1 1 153862 430 0.00 2019-11-05 23:54:02 2019-11-05 23:54:14 t 1 1 153864 587 0.00 2019-11-05 23:54:46 2019-11-05 23:54:50 t 1 1 153866 220 0.00 2019-11-05 23:55:22 2019-11-05 23:55:56 t 1 1 153867 562 0.00 2019-11-05 23:56:02 2019-11-05 23:56:16 t 1 1 153875 483 0.00 2019-11-05 23:38:11 2019-11-06 00:00:51 t 1 1 153876 564 0.00 2019-11-05 21:20:05 2019-11-06 00:02:23 t 1 1 153877 623 0.00 2019-11-06 00:03:06 2019-11-06 00:03:08 t 1 1 153880 220 0.00 2019-11-05 23:55:56 2019-11-06 00:04:23 t 1 1 153882 445 0.00 2019-11-05 23:46:42 2019-11-06 00:05:33 t 1 1 153886 430 0.00 2019-11-06 00:08:53 2019-11-06 00:09:00 t 1 1 153889 538 0.00 2019-11-05 23:58:57 2019-11-06 00:11:47 t 1 1 153891 625 0.00 2019-11-05 23:33:30 2019-11-06 00:12:04 t 1 1 153893 422 0.00 2019-11-06 00:04:12 2019-11-06 00:12:13 t 1 1 153894 623 0.00 2019-11-06 00:13:14 2019-11-06 00:13:17 t 1 1 153900 220 0.00 2019-11-06 00:13:55 2019-11-06 00:16:13 t 1 1 153903 623 0.00 2019-11-06 00:18:32 2019-11-06 00:18:39 t 1 1 153905 430 0.00 2019-11-06 00:18:58 2019-11-06 00:19:04 t 1 1 153907 562 0.00 2019-11-06 00:19:02 2019-11-06 00:19:22 t 1 1 153909 587 0.00 2019-11-06 00:20:10 2019-11-06 00:20:23 t 1 1 153910 587 0.00 2019-11-06 00:20:37 2019-11-06 00:23:08 t 1 1 153920 587 0.00 2019-11-06 00:25:41 2019-11-06 00:29:13 t 1 1 153923 562 0.00 2019-11-06 00:29:45 2019-11-06 00:30:07 t 1 1 153924 220 0.00 2019-11-06 00:28:15 2019-11-06 00:31:25 t 1 1 153925 220 0.00 2019-11-06 00:31:25 2019-11-06 00:32:00 t 1 1 153928 570 0.00 2019-11-06 00:16:12 2019-11-06 00:33:00 t 1 1 153929 623 0.00 2019-11-06 00:33:35 2019-11-06 00:33:36 t 1 1 153930 430 0.00 2019-11-06 00:33:57 2019-11-06 00:34:19 t 1 1 153932 639 0.00 2019-11-05 23:19:19 2019-11-06 00:36:08 t 1 1 153941 512 0.00 2019-11-06 00:28:29 2019-11-06 00:45:07 t 1 1 153949 556 0.00 2019-11-06 00:47:38 2019-11-06 00:50:03 t 1 1 153951 412 0.00 2019-11-05 22:01:01 2019-11-06 00:50:48 t 1 1 153952 633 0.00 2019-11-06 00:45:42 2019-11-06 00:50:59 t 1 1 153953 562 0.00 2019-11-06 00:51:17 2019-11-06 00:51:37 t 1 1 153958 564 0.00 2019-11-06 00:17:01 2019-11-06 00:56:16 t 1 1 153961 220 0.00 2019-11-06 00:50:04 2019-11-06 00:58:28 t 1 1 153964 585 0.00 2019-11-06 00:57:04 2019-11-06 00:59:10 t 1 1 153966 220 0.00 2019-11-06 00:59:00 2019-11-06 01:00:38 t 1 1 153968 562 0.00 2019-11-06 01:01:58 2019-11-06 01:02:22 t 1 1 153970 430 0.00 2019-11-06 01:04:34 2019-11-06 01:04:50 t 1 1 153971 585 0.00 2019-11-06 01:00:28 2019-11-06 01:05:38 t 1 1 153974 587 0.00 2019-11-06 00:46:50 2019-11-06 01:08:06 t 1 1 153976 633 0.00 2019-11-06 01:01:48 2019-11-06 01:09:48 t 1 1 153977 430 0.00 2019-11-06 01:09:53 2019-11-06 01:09:55 t 1 1 153979 570 0.00 2019-11-06 00:49:43 2019-11-06 01:14:08 t 1 1 153981 430 0.00 2019-11-06 01:14:54 2019-11-06 01:15:01 t 1 1 153983 416 0.00 2019-11-05 23:37:46 2019-11-06 01:18:35 t 1 1 153990 633 0.00 2019-11-06 01:15:02 2019-11-06 01:21:51 t 1 1 153991 562 0.00 2019-11-06 01:23:34 2019-11-06 01:23:56 t 1 1 153992 430 0.00 2019-11-06 01:24:03 2019-11-06 01:24:15 t 1 1 153994 430 0.00 2019-11-06 01:25:42 2019-11-06 01:25:49 t 1 1 153995 622 0.00 2019-11-06 01:18:50 2019-11-06 01:27:42 t 1 1 153998 623 0.00 2019-11-06 01:29:32 2019-11-06 01:29:38 t 1 1 154004 430 0.00 2019-11-06 01:30:13 2019-11-06 01:32:51 t 1 1 154005 430 0.00 2019-11-06 01:33:20 2019-11-06 01:33:26 t 1 1 154006 430 0.00 2019-11-06 01:34:09 2019-11-06 01:34:11 t 1 1 154010 514 0.00 2019-11-06 01:29:07 2019-11-06 01:37:16 t 1 1 154011 587 0.00 2019-11-06 01:35:39 2019-11-06 01:38:13 t 1 1 154012 430 0.00 2019-11-06 01:39:18 2019-11-06 01:39:20 t 1 1 154015 622 0.00 2019-11-06 01:34:14 2019-11-06 01:40:39 t 1 1 154016 562 0.00 2019-11-06 01:41:57 2019-11-06 01:42:16 t 1 1 154022 514 0.00 2019-11-06 01:37:16 2019-11-06 01:46:25 t 1 1 154023 623 0.00 2019-11-06 01:47:19 2019-11-06 01:48:20 t 1 1 154024 430 0.00 2019-11-06 01:49:25 2019-11-06 01:49:26 t 1 1 154028 587 0.00 2019-11-06 01:47:10 2019-11-06 01:52:42 t 1 1 154030 587 0.00 2019-11-06 01:53:45 2019-11-06 01:54:04 t 1 1 154032 633 0.00 2019-11-06 01:44:19 2019-11-06 01:54:48 t 1 1 154035 514 0.00 2019-11-06 01:46:25 2019-11-06 01:59:28 t 1 1 154037 623 0.00 2019-11-06 02:02:29 2019-11-06 02:02:32 t 1 1 154038 562 0.00 2019-11-06 02:03:24 2019-11-06 02:03:41 t 1 1 154041 623 0.00 2019-11-06 02:07:34 2019-11-06 02:07:41 t 1 1 154042 430 0.00 2019-11-06 02:07:43 2019-11-06 02:08:00 t 1 1 154043 430 0.00 2019-11-06 02:09:07 2019-11-06 02:09:15 t 1 1 154047 416 0.00 2019-11-06 02:10:37 2019-11-06 02:13:33 t 1 1 154048 430 0.00 2019-11-06 02:14:13 2019-11-06 02:14:15 t 1 1 154050 430 0.00 2019-11-06 02:19:16 2019-11-06 02:19:21 t 1 1 154052 564 0.00 2019-11-06 00:56:28 2019-11-06 02:19:45 t 1 1 154053 623 0.00 2019-11-06 02:19:35 2019-11-06 02:20:37 t 1 1 154055 416 0.00 2019-11-06 02:14:19 2019-11-06 02:23:38 t 1 1 154061 623 0.00 2019-11-06 02:33:03 2019-11-06 02:33:04 t 1 1 154063 578 0.00 2019-11-05 22:27:51 2019-11-06 02:38:33 t 1 1 154067 430 0.00 2019-11-06 02:45:06 2019-11-06 02:45:12 t 1 1 154068 416 0.00 2019-11-06 02:24:59 2019-11-06 02:46:12 t 1 1 154071 430 0.00 2019-11-06 02:50:36 2019-11-06 02:50:49 t 1 1 154072 499 0.00 2019-11-06 02:45:30 2019-11-06 02:52:39 t 1 1 154073 623 0.00 2019-11-06 02:53:18 2019-11-06 02:53:21 t 1 1 154079 430 0.00 2019-11-06 03:00:45 2019-11-06 03:00:51 t 1 1 154085 416 0.00 2019-11-06 03:07:31 2019-11-06 03:09:27 t 1 1 154088 623 0.00 2019-11-06 03:13:44 2019-11-06 03:13:47 t 1 1 154089 430 0.00 2019-11-06 03:16:02 2019-11-06 03:16:07 t 1 1 154093 430 0.00 2019-11-06 03:21:42 2019-11-06 03:22:08 t 1 1 154094 430 0.00 2019-11-06 03:22:39 2019-11-06 03:23:01 t 1 1 154103 623 0.00 2019-11-06 03:34:52 2019-11-06 03:35:04 t 1 1 154120 623 0.00 2019-11-06 04:04:43 2019-11-06 04:04:45 t 1 1 154123 416 0.00 2019-11-06 04:00:50 2019-11-06 04:08:28 t 1 1 154124 623 0.00 2019-11-06 04:09:47 2019-11-06 04:10:47 t 1 1 154128 562 0.00 2019-11-06 04:15:16 2019-11-06 04:15:37 t 1 1 154138 623 0.00 2019-11-06 04:29:59 2019-11-06 04:30:02 t 1 1 154140 623 0.00 2019-11-06 04:31:39 2019-11-06 04:32:02 t 1 1 154142 445 0.00 2019-11-06 04:21:43 2019-11-06 04:34:33 t 1 1 154144 220 0.00 2019-11-06 04:32:55 2019-11-06 04:35:49 t 1 1 154145 220 0.00 2019-11-06 04:35:49 2019-11-06 04:36:49 t 1 1 154150 623 0.00 2019-11-06 04:41:27 2019-11-06 04:41:28 t 1 1 154155 623 0.00 2019-11-06 04:49:42 2019-11-06 04:50:44 t 1 1 154156 623 0.00 2019-11-06 04:53:20 2019-11-06 04:53:33 t 1 1 154163 562 0.00 2019-11-06 05:19:41 2019-11-06 05:19:59 t 1 1 153863 631 0.00 2019-11-05 23:50:32 2019-11-05 23:54:22 t 1 1 153865 220 0.00 2019-11-05 23:53:20 2019-11-05 23:55:22 t 1 1 153869 609 0.00 2019-11-05 23:35:04 2019-11-05 23:58:15 t 1 1 153870 623 0.00 2019-11-05 23:58:42 2019-11-05 23:58:45 t 1 1 153873 545 0.00 2019-11-05 23:57:22 2019-11-05 23:59:54 t 1 1 153879 430 0.00 2019-11-06 00:03:49 2019-11-06 00:03:51 t 1 1 153881 220 0.00 2019-11-06 00:04:22 2019-11-06 00:04:58 t 1 1 153883 483 0.00 2019-11-06 00:01:02 2019-11-06 00:05:54 t 1 1 153884 512 0.00 2019-11-05 21:54:32 2019-11-06 00:07:57 t 1 1 153887 585 0.00 2019-11-06 00:08:24 2019-11-06 00:10:13 t 1 1 153890 585 0.00 2019-11-06 00:10:12 2019-11-06 00:11:52 t 1 1 153897 430 0.00 2019-11-06 00:13:56 2019-11-06 00:14:02 t 1 1 153899 570 0.00 2019-11-06 00:11:02 2019-11-06 00:16:12 t 1 1 153902 622 0.00 2019-11-06 00:10:17 2019-11-06 00:18:36 t 1 1 153914 430 0.00 2019-11-06 00:24:02 2019-11-06 00:24:10 t 1 1 153921 625 0.00 2019-11-06 00:12:04 2019-11-06 00:29:13 t 1 1 153927 633 0.00 2019-11-06 00:24:07 2019-11-06 00:32:58 t 1 1 153931 570 0.00 2019-11-06 00:33:00 2019-11-06 00:34:41 t 1 1 153937 562 0.00 2019-11-06 00:40:32 2019-11-06 00:40:53 t 1 1 153938 220 0.00 2019-11-06 00:40:25 2019-11-06 00:40:58 t 1 1 153940 556 0.00 2019-11-05 23:06:03 2019-11-06 00:44:38 t 1 1 153942 430 0.00 2019-11-06 00:45:02 2019-11-06 00:45:14 t 1 1 153944 556 0.00 2019-11-06 00:44:38 2019-11-06 00:47:38 t 1 1 153947 430 0.00 2019-11-06 00:49:34 2019-11-06 00:49:41 t 1 1 153959 510 0.00 2019-11-05 23:40:14 2019-11-06 00:57:22 t 1 1 153962 220 0.00 2019-11-06 00:58:27 2019-11-06 00:59:01 t 1 1 153969 623 0.00 2019-11-06 01:04:03 2019-11-06 01:04:13 t 1 1 153978 562 0.00 2019-11-06 01:12:49 2019-11-06 01:13:13 t 1 1 153982 633 0.00 2019-11-06 01:09:48 2019-11-06 01:15:02 t 1 1 153987 623 0.00 2019-11-06 01:19:32 2019-11-06 01:19:35 t 1 1 153989 483 0.00 2019-11-06 01:08:59 2019-11-06 01:20:25 t 1 1 153996 514 0.00 2019-11-06 01:19:20 2019-11-06 01:29:07 t 1 1 153997 430 0.00 2019-11-06 01:29:09 2019-11-06 01:29:15 t 1 1 153999 587 0.00 2019-11-06 01:08:06 2019-11-06 01:29:38 t 1 1 154001 430 0.00 2019-11-06 01:30:03 2019-11-06 01:30:08 t 1 1 154007 622 0.00 2019-11-06 01:27:42 2019-11-06 01:34:14 t 1 1 154013 574 0.00 2019-11-06 01:35:46 2019-11-06 01:40:06 t 1 1 154017 623 0.00 2019-11-06 01:42:11 2019-11-06 01:42:18 t 1 1 154018 623 0.00 2019-11-06 01:43:03 2019-11-06 01:43:06 t 1 1 154021 430 0.00 2019-11-06 01:45:15 2019-11-06 01:45:17 t 1 1 154027 639 0.00 2019-11-06 00:36:08 2019-11-06 01:52:41 t 1 1 154031 430 0.00 2019-11-06 01:53:57 2019-11-06 01:54:31 t 1 1 154033 623 0.00 2019-11-06 01:57:27 2019-11-06 01:57:29 t 1 1 154044 562 0.00 2019-11-06 02:09:43 2019-11-06 02:10:01 t 1 1 154046 623 0.00 2019-11-06 02:12:46 2019-11-06 02:12:52 t 1 1 154049 562 0.00 2019-11-06 02:17:10 2019-11-06 02:17:37 t 1 1 154051 623 0.00 2019-11-06 02:19:11 2019-11-06 02:19:23 t 1 1 154054 623 0.00 2019-11-06 02:22:53 2019-11-06 02:22:53 t 1 1 154060 562 0.00 2019-11-06 02:28:02 2019-11-06 02:28:23 t 1 1 154064 562 0.00 2019-11-06 02:38:45 2019-11-06 02:39:06 t 1 1 154066 623 0.00 2019-11-06 02:43:07 2019-11-06 02:43:08 t 1 1 154075 430 0.00 2019-11-06 02:55:46 2019-11-06 02:55:47 t 1 1 154076 416 0.00 2019-11-06 02:54:57 2019-11-06 02:57:50 t 1 1 154078 562 0.00 2019-11-06 03:00:09 2019-11-06 03:00:32 t 1 1 154081 430 0.00 2019-11-06 03:05:50 2019-11-06 03:05:56 t 1 1 154082 416 0.00 2019-11-06 02:58:16 2019-11-06 03:07:25 t 1 1 154084 623 0.00 2019-11-06 03:08:41 2019-11-06 03:08:41 t 1 1 154086 430 0.00 2019-11-06 03:10:59 2019-11-06 03:11:06 t 1 1 154090 623 0.00 2019-11-06 03:18:47 2019-11-06 03:18:48 t 1 1 154091 430 0.00 2019-11-06 03:21:04 2019-11-06 03:21:05 t 1 1 154098 430 0.00 2019-11-06 03:27:44 2019-11-06 03:27:50 t 1 1 154101 430 0.00 2019-11-06 03:32:47 2019-11-06 03:32:52 t 1 1 154104 416 0.00 2019-11-06 03:10:13 2019-11-06 03:37:39 t 1 1 154105 430 0.00 2019-11-06 03:37:53 2019-11-06 03:38:00 t 1 1 154107 562 0.00 2019-11-06 03:43:01 2019-11-06 03:43:21 t 1 1 154108 623 0.00 2019-11-06 03:44:17 2019-11-06 03:44:20 t 1 1 154110 538 0.00 2019-11-06 03:35:31 2019-11-06 03:47:28 t 1 1 154111 430 0.00 2019-11-06 03:47:51 2019-11-06 03:48:09 t 1 1 154112 623 0.00 2019-11-06 03:49:22 2019-11-06 03:49:24 t 1 1 154115 623 0.00 2019-11-06 03:54:28 2019-11-06 03:54:37 t 1 1 154117 430 0.00 2019-11-06 03:58:05 2019-11-06 03:58:06 t 1 1 154118 623 0.00 2019-11-06 03:59:40 2019-11-06 03:59:44 t 1 1 154119 416 0.00 2019-11-06 03:56:31 2019-11-06 04:00:45 t 1 1 154121 562 0.00 2019-11-06 04:04:24 2019-11-06 04:04:50 t 1 1 154127 623 0.00 2019-11-06 04:14:58 2019-11-06 04:14:59 t 1 1 154131 220 0.00 2019-11-06 01:07:27 2019-11-06 04:18:46 t 1 1 154132 623 0.00 2019-11-06 04:19:51 2019-11-06 04:19:55 t 1 1 154134 623 0.00 2019-11-06 04:24:58 2019-11-06 04:24:59 t 1 1 154136 379 0.00 2019-11-05 22:04:35 2019-11-06 04:27:15 t 1 1 154137 416 0.00 2019-11-06 04:18:14 2019-11-06 04:29:14 t 1 1 154139 220 0.00 2019-11-06 04:25:30 2019-11-06 04:30:27 t 1 1 154141 220 0.00 2019-11-06 04:30:27 2019-11-06 04:32:55 t 1 1 154143 623 0.00 2019-11-06 04:35:02 2019-11-06 04:35:08 t 1 1 154149 623 0.00 2019-11-06 04:41:20 2019-11-06 04:41:21 t 1 1 154151 623 0.00 2019-11-06 04:45:09 2019-11-06 04:45:18 t 1 1 154152 623 0.00 2019-11-06 04:45:28 2019-11-06 04:46:28 t 1 1 154160 562 0.00 2019-11-06 05:08:55 2019-11-06 05:09:17 t 1 1 154161 623 0.00 2019-11-06 04:58:01 2019-11-06 05:10:26 t 1 1 154167 623 0.00 2019-11-06 05:23:45 2019-11-06 05:23:49 t 1 1 154168 520 0.00 2019-11-06 05:22:51 2019-11-06 05:26:06 t 1 1 154169 623 0.00 2019-11-06 05:26:06 2019-11-06 05:26:09 t 1 1 154170 562 0.00 2019-11-06 05:30:24 2019-11-06 05:30:45 t 1 1 154171 520 0.00 2019-11-06 05:26:06 2019-11-06 05:31:04 t 1 1 154172 623 0.00 2019-11-06 05:31:10 2019-11-06 05:31:10 t 1 1 154174 562 0.00 2019-11-06 05:39:43 2019-11-06 05:40:01 t 1 1 154175 623 0.00 2019-11-06 05:41:18 2019-11-06 05:41:27 t 1 1 154176 623 0.00 2019-11-06 05:46:30 2019-11-06 05:46:31 t 1 1 154178 562 0.00 2019-11-06 05:50:26 2019-11-06 05:50:48 t 1 1 154179 520 0.00 2019-11-06 05:31:04 2019-11-06 05:51:11 t 1 1 154181 520 0.00 2019-11-06 05:51:10 2019-11-06 05:53:31 t 1 1 154183 625 0.00 2019-11-06 05:54:13 2019-11-06 05:59:08 t 1 1 154184 520 0.00 2019-11-06 05:53:31 2019-11-06 06:00:06 t 1 1 154185 562 0.00 2019-11-06 06:01:11 2019-11-06 06:01:32 t 1 1 154186 623 0.00 2019-11-06 06:01:39 2019-11-06 06:01:40 t 1 1 154188 623 0.00 2019-11-06 06:11:48 2019-11-06 06:11:49 t 1 1 154189 520 0.00 2019-11-06 06:00:08 2019-11-06 06:11:51 t 1 1 154190 562 0.00 2019-11-06 06:11:54 2019-11-06 06:12:11 t 1 1 153972 622 0.00 2019-11-06 00:52:56 2019-11-06 01:06:23 t 1 1 153973 514 0.00 2019-11-06 00:53:39 2019-11-06 01:07:19 t 1 1 153975 623 0.00 2019-11-06 01:09:14 2019-11-06 01:09:17 t 1 1 153980 623 0.00 2019-11-06 01:14:21 2019-11-06 01:14:22 t 1 1 153984 622 0.00 2019-11-06 01:06:23 2019-11-06 01:18:50 t 1 1 153985 514 0.00 2019-11-06 01:07:19 2019-11-06 01:19:20 t 1 1 153986 623 0.00 2019-11-06 01:19:26 2019-11-06 01:19:26 t 1 1 153988 430 0.00 2019-11-06 01:19:58 2019-11-06 01:20:05 t 1 1 153993 623 0.00 2019-11-06 01:24:29 2019-11-06 01:24:38 t 1 1 154000 633 0.00 2019-11-06 01:21:51 2019-11-06 01:30:01 t 1 1 154002 562 0.00 2019-11-06 01:31:05 2019-11-06 01:31:33 t 1 1 154003 623 0.00 2019-11-06 01:32:28 2019-11-06 01:32:37 t 1 1 154008 587 0.00 2019-11-06 01:29:38 2019-11-06 01:34:59 t 1 1 154009 623 0.00 2019-11-06 01:37:00 2019-11-06 01:37:10 t 1 1 154014 483 0.00 2019-11-06 01:20:25 2019-11-06 01:40:38 t 1 1 154019 430 0.00 2019-11-06 01:44:21 2019-11-06 01:44:30 t 1 1 154020 587 0.00 2019-11-06 01:40:05 2019-11-06 01:45:01 t 1 1 154025 430 0.00 2019-11-06 01:50:59 2019-11-06 01:51:06 t 1 1 154026 623 0.00 2019-11-06 01:52:21 2019-11-06 01:52:21 t 1 1 154029 562 0.00 2019-11-06 01:52:40 2019-11-06 01:52:58 t 1 1 154034 430 0.00 2019-11-06 01:59:04 2019-11-06 01:59:12 t 1 1 154036 622 0.00 2019-11-06 01:40:39 2019-11-06 02:01:27 t 1 1 154039 622 0.00 2019-11-06 02:01:27 2019-11-06 02:04:10 t 1 1 154040 633 0.00 2019-11-06 01:54:48 2019-11-06 02:05:04 t 1 1 154045 416 0.00 2019-11-06 01:18:40 2019-11-06 02:10:16 t 1 1 154056 587 0.00 2019-11-06 01:54:32 2019-11-06 02:24:02 t 1 1 154057 430 0.00 2019-11-06 02:24:18 2019-11-06 02:24:25 t 1 1 154058 587 0.00 2019-11-06 02:24:02 2019-11-06 02:27:09 t 1 1 154059 623 0.00 2019-11-06 02:27:57 2019-11-06 02:27:59 t 1 1 154062 623 0.00 2019-11-06 02:38:05 2019-11-06 02:38:06 t 1 1 154065 430 0.00 2019-11-06 02:39:59 2019-11-06 02:40:10 t 1 1 154069 623 0.00 2019-11-06 02:48:14 2019-11-06 02:48:16 t 1 1 154070 562 0.00 2019-11-06 02:49:27 2019-11-06 02:49:45 t 1 1 154074 416 0.00 2019-11-06 02:46:17 2019-11-06 02:54:52 t 1 1 154077 623 0.00 2019-11-06 02:58:24 2019-11-06 02:58:33 t 1 1 154080 623 0.00 2019-11-06 03:03:36 2019-11-06 03:03:37 t 1 1 154083 430 0.00 2019-11-06 03:07:50 2019-11-06 03:08:07 t 1 1 154087 562 0.00 2019-11-06 03:10:55 2019-11-06 03:11:14 t 1 1 154092 562 0.00 2019-11-06 03:21:30 2019-11-06 03:22:01 t 1 1 154095 623 0.00 2019-11-06 03:23:53 2019-11-06 03:23:56 t 1 1 154096 430 0.00 2019-11-06 03:26:05 2019-11-06 03:26:12 t 1 1 154097 623 0.00 2019-11-06 03:27:11 2019-11-06 03:27:24 t 1 1 154099 623 0.00 2019-11-06 03:29:01 2019-11-06 03:29:03 t 1 1 154100 562 0.00 2019-11-06 03:32:23 2019-11-06 03:32:42 t 1 1 154102 623 0.00 2019-11-06 03:34:08 2019-11-06 03:34:10 t 1 1 154106 623 0.00 2019-11-06 03:39:12 2019-11-06 03:39:15 t 1 1 154109 430 0.00 2019-11-06 03:42:56 2019-11-06 03:44:51 t 1 1 154113 430 0.00 2019-11-06 03:52:59 2019-11-06 03:53:06 t 1 1 154114 562 0.00 2019-11-06 03:53:48 2019-11-06 03:54:08 t 1 1 154116 416 0.00 2019-11-06 03:38:02 2019-11-06 03:56:24 t 1 1 154122 430 0.00 2019-11-06 04:08:08 2019-11-06 04:08:10 t 1 1 154125 430 0.00 2019-11-06 04:13:09 2019-11-06 04:13:17 t 1 1 154126 445 0.00 2019-11-06 00:05:32 2019-11-06 04:14:11 t 1 1 154129 623 0.00 2019-11-06 04:14:52 2019-11-06 04:16:51 t 1 1 154130 416 0.00 2019-11-06 04:08:34 2019-11-06 04:18:06 t 1 1 154133 445 0.00 2019-11-06 04:14:10 2019-11-06 04:21:40 t 1 1 154135 562 0.00 2019-11-06 04:25:59 2019-11-06 04:26:18 t 1 1 154146 562 0.00 2019-11-06 04:36:44 2019-11-06 04:37:06 t 1 1 154147 623 0.00 2019-11-06 04:40:05 2019-11-06 04:40:12 t 1 1 154148 623 0.00 2019-11-06 04:40:45 2019-11-06 04:41:12 t 1 1 154153 562 0.00 2019-11-06 04:47:20 2019-11-06 04:47:47 t 1 1 154154 623 0.00 2019-11-06 04:47:42 2019-11-06 04:49:32 t 1 1 154157 623 0.00 2019-11-06 04:54:34 2019-11-06 04:58:01 t 1 1 154158 562 0.00 2019-11-06 04:58:13 2019-11-06 04:58:30 t 1 1 154159 520 0.00 2019-11-06 04:51:24 2019-11-06 04:59:47 t 1 1 154162 520 0.00 2019-11-06 04:59:47 2019-11-06 05:14:44 t 1 1 154164 520 0.00 2019-11-06 05:14:43 2019-11-06 05:20:14 t 1 1 154165 520 0.00 2019-11-06 05:20:13 2019-11-06 05:22:03 t 1 1 154166 623 0.00 2019-11-06 05:10:46 2019-11-06 05:23:25 t 1 1 154173 623 0.00 2019-11-06 05:36:13 2019-11-06 05:36:16 t 1 1 154177 623 0.00 2019-11-06 05:46:42 2019-11-06 05:46:45 t 1 1 154180 623 0.00 2019-11-06 05:51:31 2019-11-06 05:51:34 t 1 1 154182 623 0.00 2019-11-06 05:56:35 2019-11-06 05:56:38 t 1 1 154187 623 0.00 2019-11-06 06:06:45 2019-11-06 06:06:46 t 1 1 154191 514 0.00 2019-11-06 01:59:28 2019-11-06 06:15:55 t 1 1 154192 623 0.00 2019-11-06 06:16:54 2019-11-06 06:16:55 t 1 1 154193 609 0.00 2019-11-06 05:55:13 2019-11-06 06:17:26 t 1 1 154194 623 0.00 2019-11-06 06:18:43 2019-11-06 06:18:53 t 1 1 154195 623 0.00 2019-11-06 06:19:57 2019-11-06 06:20:03 t 1 1 154196 562 0.00 2019-11-06 06:22:37 2019-11-06 06:22:56 t 1 1 154197 520 0.00 2019-11-06 06:11:50 2019-11-06 06:24:48 t 1 1 154198 623 0.00 2019-11-06 06:25:03 2019-11-06 06:25:14 t 1 1 154199 623 0.00 2019-11-06 06:25:19 2019-11-06 06:25:20 t 1 1 154200 609 0.00 2019-11-06 06:17:26 2019-11-06 06:26:15 t 1 1 154201 562 0.00 2019-11-06 06:28:43 2019-11-06 06:29:21 t 1 1 154202 562 0.00 2019-11-06 06:29:27 2019-11-06 06:29:34 t 1 1 154203 623 0.00 2019-11-06 06:30:14 2019-11-06 06:30:15 t 1 1 154204 520 0.00 2019-11-06 06:24:47 2019-11-06 06:30:34 t 1 1 154205 609 0.00 2019-11-06 06:26:15 2019-11-06 06:30:51 t 1 1 154206 623 0.00 2019-11-06 06:35:16 2019-11-06 06:35:25 t 1 1 154207 609 0.00 2019-11-06 06:30:51 2019-11-06 06:36:53 t 1 1 154208 520 0.00 2019-11-06 06:30:34 2019-11-06 06:37:46 t 1 1 154209 562 0.00 2019-11-06 06:39:38 2019-11-06 06:39:51 t 1 1 154210 623 0.00 2019-11-06 06:40:26 2019-11-06 06:40:33 t 1 1 154211 520 0.00 2019-11-06 06:37:47 2019-11-06 06:40:48 t 1 1 154212 562 0.00 2019-11-06 06:41:10 2019-11-06 06:42:12 t 1 1 154213 609 0.00 2019-11-06 06:36:53 2019-11-06 06:48:19 t 1 1 154214 562 0.00 2019-11-06 06:48:11 2019-11-06 06:48:53 t 1 1 154215 609 0.00 2019-11-06 06:48:19 2019-11-06 06:53:22 t 1 1 154216 619 0.00 2019-11-06 06:35:24 2019-11-06 06:55:22 t 1 1 154217 520 0.00 2019-11-06 06:40:48 2019-11-06 06:56:05 t 1 1 154218 609 0.00 2019-11-06 06:53:22 2019-11-06 06:56:34 t 1 1 154219 623 0.00 2019-11-06 06:56:36 2019-11-06 06:56:38 t 1 1 154220 445 0.00 2019-11-06 04:34:33 2019-11-06 06:57:08 t 1 1 154221 562 0.00 2019-11-06 06:53:19 2019-11-06 06:57:49 t 1 1 154222 445 0.00 2019-11-06 06:57:07 2019-11-06 06:58:52 t 1 1 154223 562 0.00 2019-11-06 06:59:19 2019-11-06 06:59:29 t 1 1 154224 445 0.00 2019-11-06 06:58:18 2019-11-06 06:59:46 t 1 1 154229 445 0.00 2019-11-06 06:59:51 2019-11-06 07:02:20 t 1 1 154233 562 0.00 2019-11-06 07:02:57 2019-11-06 07:03:50 t 1 1 154239 416 0.00 2019-11-06 07:00:11 2019-11-06 07:09:15 t 1 1 154244 416 0.00 2019-11-06 07:09:24 2019-11-06 07:13:59 t 1 1 154245 520 0.00 2019-11-06 07:03:29 2019-11-06 07:14:39 t 1 1 154248 562 0.00 2019-11-06 07:18:34 2019-11-06 07:19:11 t 1 1 154249 623 0.00 2019-11-06 07:21:02 2019-11-06 07:21:05 t 1 1 154256 623 0.00 2019-11-06 07:36:17 2019-11-06 07:36:18 t 1 1 154258 520 0.00 2019-11-06 07:14:36 2019-11-06 07:39:18 t 1 1 154262 562 0.00 2019-11-06 07:46:44 2019-11-06 07:47:09 t 1 1 154268 597 0.00 2019-11-06 07:56:33 2019-11-06 07:58:21 t 1 1 154272 609 0.00 2019-11-06 07:05:02 2019-11-06 08:02:01 t 1 1 154276 623 0.00 2019-11-06 08:11:37 2019-11-06 08:11:37 t 1 1 154277 220 0.00 2019-11-06 08:07:19 2019-11-06 08:12:26 t 1 1 154280 562 0.00 2019-11-06 08:14:34 2019-11-06 08:14:45 t 1 1 154285 609 0.00 2019-11-06 08:19:44 2019-11-06 08:20:03 t 1 1 154287 595 0.00 2019-11-06 08:20:06 2019-11-06 08:20:26 t 1 1 154288 595 0.00 2019-11-06 08:20:36 2019-11-06 08:20:58 t 1 1 154289 623 0.00 2019-11-06 08:21:45 2019-11-06 08:21:45 t 1 1 154294 562 0.00 2019-11-06 08:25:06 2019-11-06 08:25:28 t 1 1 154296 595 0.00 2019-11-06 08:25:06 2019-11-06 08:27:17 t 1 1 154297 220 0.00 2019-11-06 08:27:49 2019-11-06 08:28:44 t 1 1 154299 597 0.00 2019-11-06 08:26:31 2019-11-06 08:30:17 t 1 1 154301 623 0.00 2019-11-06 08:32:00 2019-11-06 08:32:03 t 1 1 154305 623 0.00 2019-11-06 08:35:17 2019-11-06 08:35:29 t 1 1 154308 623 0.00 2019-11-06 08:36:55 2019-11-06 08:37:07 t 1 1 154310 416 0.00 2019-11-06 08:24:21 2019-11-06 08:37:43 t 1 1 154317 623 0.00 2019-11-06 08:44:31 2019-11-06 08:44:33 t 1 1 154326 591 0.00 2019-11-06 08:53:19 2019-11-06 08:54:52 t 1 1 154330 623 0.00 2019-11-06 08:59:55 2019-11-06 09:00:01 t 1 1 154335 623 0.00 2019-11-06 09:01:19 2019-11-06 09:01:25 t 1 1 154339 623 0.00 2019-11-06 09:02:23 2019-11-06 09:02:30 t 1 1 154343 623 0.00 2019-11-06 09:03:15 2019-11-06 09:03:21 t 1 1 154350 623 0.00 2019-11-06 09:04:45 2019-11-06 09:04:51 t 1 1 154352 623 0.00 2019-11-06 09:05:10 2019-11-06 09:05:12 t 1 1 154355 627 0.00 2019-11-06 08:54:57 2019-11-06 09:10:03 t 1 1 154362 623 0.00 2019-11-06 09:12:24 2019-11-06 09:12:30 t 1 1 154366 623 0.00 2019-11-06 09:13:15 2019-11-06 09:13:17 t 1 1 154370 623 0.00 2019-11-06 09:14:12 2019-11-06 09:14:14 t 1 1 154375 623 0.00 2019-11-06 09:15:17 2019-11-06 09:15:23 t 1 1 154379 623 0.00 2019-11-06 09:16:25 2019-11-06 09:16:35 t 1 1 154382 623 0.00 2019-11-06 09:17:32 2019-11-06 09:17:38 t 1 1 154384 578 0.00 2019-11-06 09:04:01 2019-11-06 09:19:43 t 1 1 154388 627 0.00 2019-11-06 09:10:03 2019-11-06 09:23:48 t 1 1 154389 623 0.00 2019-11-06 09:21:31 2019-11-06 09:24:13 t 1 1 154391 623 0.00 2019-11-06 09:25:11 2019-11-06 09:25:12 t 1 1 154395 623 0.00 2019-11-06 09:26:10 2019-11-06 09:26:16 t 1 1 154400 566 0.00 2019-11-06 09:22:55 2019-11-06 09:28:12 t 1 1 154401 623 0.00 2019-11-06 09:28:37 2019-11-06 09:28:44 t 1 1 154403 623 0.00 2019-11-06 09:26:29 2019-11-06 09:28:52 t 1 1 154404 623 0.00 2019-11-06 09:28:56 2019-11-06 09:29:03 t 1 1 154416 623 0.00 2019-11-06 09:44:21 2019-11-06 09:44:34 t 1 1 154420 623 0.00 2019-11-06 09:45:27 2019-11-06 09:45:29 t 1 1 154422 220 0.00 2019-11-06 09:19:07 2019-11-06 09:45:47 t 1 1 154423 623 0.00 2019-11-06 09:45:58 2019-11-06 09:46:04 t 1 1 154426 520 0.00 2019-11-06 09:30:21 2019-11-06 09:46:55 t 1 1 154429 578 0.00 2019-11-06 09:19:43 2019-11-06 09:47:36 t 1 1 154430 623 0.00 2019-11-06 09:47:39 2019-11-06 09:47:40 t 1 1 154435 623 0.00 2019-11-06 09:48:51 2019-11-06 09:48:57 t 1 1 154438 623 0.00 2019-11-06 09:49:15 2019-11-06 09:49:47 t 1 1 154440 623 0.00 2019-11-06 09:50:10 2019-11-06 09:50:16 t 1 1 154447 623 0.00 2019-11-06 09:51:47 2019-11-06 09:51:53 t 1 1 154449 451 0.00 2019-11-06 09:44:45 2019-11-06 09:53:10 t 1 1 154452 520 0.00 2019-11-06 09:51:47 2019-11-06 09:53:37 t 1 1 154453 623 0.00 2019-11-06 09:53:50 2019-11-06 09:53:56 t 1 1 154459 623 0.00 2019-11-06 09:55:17 2019-11-06 09:56:06 t 1 1 154460 623 0.00 2019-11-06 09:56:18 2019-11-06 09:56:20 t 1 1 154462 615 0.00 2019-11-06 09:54:46 2019-11-06 09:56:33 t 1 1 154466 623 0.00 2019-11-06 09:57:21 2019-11-06 09:57:48 t 1 1 154470 416 0.00 2019-11-06 09:53:51 2019-11-06 09:58:08 t 1 1 154476 623 0.00 2019-11-06 09:59:56 2019-11-06 09:59:58 t 1 1 154478 538 0.00 2019-11-06 09:55:53 2019-11-06 10:00:10 t 1 1 154481 623 0.00 2019-11-06 10:00:35 2019-11-06 10:00:40 t 1 1 154482 220 0.00 2019-11-06 10:00:19 2019-11-06 10:00:57 t 1 1 154483 220 0.00 2019-11-06 10:00:55 2019-11-06 10:01:09 t 1 1 154486 416 0.00 2019-11-06 09:58:06 2019-11-06 10:02:19 t 1 1 154493 220 0.00 2019-11-06 10:04:12 2019-11-06 10:09:35 t 1 1 154494 520 0.00 2019-11-06 10:05:45 2019-11-06 10:10:06 t 1 1 154499 595 0.00 2019-11-06 10:13:04 2019-11-06 10:14:29 t 1 1 154502 490 0.00 2019-11-06 10:13:00 2019-11-06 10:20:33 t 1 1 154503 623 0.00 2019-11-06 10:00:53 2019-11-06 10:20:53 t 1 1 154508 619 0.00 2019-11-06 10:22:12 2019-11-06 10:24:51 t 1 1 154509 585 0.00 2019-11-06 10:20:37 2019-11-06 10:25:34 t 1 1 154513 490 0.00 2019-11-06 10:23:27 2019-11-06 10:30:17 t 1 1 154515 445 0.00 2019-11-06 10:30:37 2019-11-06 10:31:41 t 1 1 154519 623 0.00 2019-11-06 10:20:56 2019-11-06 10:36:32 t 1 1 154522 422 0.00 2019-11-06 10:37:11 2019-11-06 10:37:34 t 1 1 154524 520 0.00 2019-11-06 10:24:06 2019-11-06 10:40:52 t 1 1 154525 445 0.00 2019-11-06 10:33:53 2019-11-06 10:42:40 t 1 1 154530 623 0.00 2019-11-06 10:49:09 2019-11-06 10:49:22 t 1 1 154535 623 0.00 2019-11-06 10:50:37 2019-11-06 10:50:38 t 1 1 154541 623 0.00 2019-11-06 10:51:40 2019-11-06 10:51:47 t 1 1 154542 623 0.00 2019-11-06 10:51:54 2019-11-06 10:52:06 t 1 1 154546 623 0.00 2019-11-06 10:53:06 2019-11-06 10:53:13 t 1 1 154550 623 0.00 2019-11-06 10:54:45 2019-11-06 10:54:46 t 1 1 154553 623 0.00 2019-11-06 10:55:03 2019-11-06 10:56:27 t 1 1 154555 623 0.00 2019-11-06 10:57:05 2019-11-06 10:57:29 t 1 1 154558 623 0.00 2019-11-06 10:57:47 2019-11-06 10:57:58 t 1 1 154563 512 0.00 2019-11-06 10:54:58 2019-11-06 11:01:53 t 1 1 154567 623 0.00 2019-11-06 11:04:21 2019-11-06 11:04:22 t 1 1 154569 587 0.00 2019-11-06 11:02:59 2019-11-06 11:04:53 t 1 1 154571 587 0.00 2019-11-06 11:05:03 2019-11-06 11:05:05 t 1 1 154576 623 0.00 2019-11-06 11:05:49 2019-11-06 11:05:55 t 1 1 154577 589 0.00 2019-11-06 10:29:23 2019-11-06 11:06:08 t 1 1 154578 623 0.00 2019-11-06 11:06:14 2019-11-06 11:06:16 t 1 1 154580 627 0.00 2019-11-06 11:05:21 2019-11-06 11:06:39 t 1 1 154225 416 0.00 2019-11-06 04:29:22 2019-11-06 07:00:04 t 1 1 154228 619 0.00 2019-11-06 06:55:22 2019-11-06 07:01:29 t 1 1 154230 520 0.00 2019-11-06 06:56:05 2019-11-06 07:03:03 t 1 1 154234 551 0.00 2019-11-06 06:52:01 2019-11-06 07:05:02 t 1 1 154235 609 0.00 2019-11-06 07:03:16 2019-11-06 07:05:03 t 1 1 154240 562 0.00 2019-11-06 07:09:02 2019-11-06 07:09:57 t 1 1 154251 562 0.00 2019-11-06 07:26:42 2019-11-06 07:26:57 t 1 1 154252 562 0.00 2019-11-06 07:27:26 2019-11-06 07:27:34 t 1 1 154257 562 0.00 2019-11-06 07:36:13 2019-11-06 07:36:27 t 1 1 154259 520 0.00 2019-11-06 07:39:18 2019-11-06 07:40:45 t 1 1 154260 416 0.00 2019-11-06 07:14:04 2019-11-06 07:42:38 t 1 1 154261 416 0.00 2019-11-06 07:42:43 2019-11-06 07:45:37 t 1 1 154263 623 0.00 2019-11-06 07:51:30 2019-11-06 07:51:31 t 1 1 154264 416 0.00 2019-11-06 07:45:42 2019-11-06 07:53:04 t 1 1 154266 520 0.00 2019-11-06 07:40:44 2019-11-06 07:56:52 t 1 1 154267 562 0.00 2019-11-06 07:57:32 2019-11-06 07:57:53 t 1 1 154269 578 0.00 2019-11-06 02:38:49 2019-11-06 07:58:24 t 1 1 154270 625 0.00 2019-11-06 07:30:31 2019-11-06 07:59:16 t 1 1 154271 623 0.00 2019-11-06 08:01:29 2019-11-06 08:01:31 t 1 1 154273 623 0.00 2019-11-06 08:06:33 2019-11-06 08:06:34 t 1 1 154278 623 0.00 2019-11-06 08:13:22 2019-11-06 08:13:34 t 1 1 154279 595 0.00 2019-11-06 08:08:33 2019-11-06 08:14:33 t 1 1 154281 595 0.00 2019-11-06 08:14:32 2019-11-06 08:16:07 t 1 1 154282 595 0.00 2019-11-06 08:16:19 2019-11-06 08:16:44 t 1 1 154284 625 0.00 2019-11-06 07:59:16 2019-11-06 08:17:35 t 1 1 154292 416 0.00 2019-11-06 08:08:05 2019-11-06 08:24:15 t 1 1 154293 595 0.00 2019-11-06 08:24:47 2019-11-06 08:24:55 t 1 1 154298 566 0.00 2019-11-06 08:22:01 2019-11-06 08:28:54 t 1 1 154300 625 0.00 2019-11-06 08:17:35 2019-11-06 08:30:43 t 1 1 154303 578 0.00 2019-11-06 08:09:57 2019-11-06 08:33:39 t 1 1 154309 566 0.00 2019-11-06 08:28:54 2019-11-06 08:37:23 t 1 1 154311 623 0.00 2019-11-06 08:38:35 2019-11-06 08:38:47 t 1 1 154312 623 0.00 2019-11-06 08:39:27 2019-11-06 08:39:28 t 1 1 154313 416 0.00 2019-11-06 08:37:49 2019-11-06 08:40:05 t 1 1 154314 625 0.00 2019-11-06 08:30:43 2019-11-06 08:40:41 t 1 1 154319 591 0.00 2019-11-06 08:40:45 2019-11-06 08:46:51 t 1 1 154325 516 0.00 2019-11-06 08:46:00 2019-11-06 08:54:30 t 1 1 154327 627 0.00 2019-11-06 08:36:54 2019-11-06 08:54:57 t 1 1 154328 623 0.00 2019-11-06 08:54:21 2019-11-06 08:57:19 t 1 1 154332 623 0.00 2019-11-06 09:00:45 2019-11-06 09:00:52 t 1 1 154333 623 0.00 2019-11-06 09:01:05 2019-11-06 09:01:06 t 1 1 154334 623 0.00 2019-11-06 09:01:11 2019-11-06 09:01:13 t 1 1 154337 623 0.00 2019-11-06 09:01:45 2019-11-06 09:01:46 t 1 1 154338 623 0.00 2019-11-06 09:02:16 2019-11-06 09:02:18 t 1 1 154341 591 0.00 2019-11-06 08:54:51 2019-11-06 09:03:08 t 1 1 154342 623 0.00 2019-11-06 09:03:09 2019-11-06 09:03:10 t 1 1 154345 623 0.00 2019-11-06 09:03:46 2019-11-06 09:03:47 t 1 1 154346 623 0.00 2019-11-06 09:03:52 2019-11-06 09:03:59 t 1 1 154349 623 0.00 2019-11-06 09:04:18 2019-11-06 09:04:25 t 1 1 154351 623 0.00 2019-11-06 09:05:03 2019-11-06 09:05:05 t 1 1 154357 566 0.00 2019-11-06 08:51:46 2019-11-06 09:10:34 t 1 1 154358 597 0.00 2019-11-06 09:06:46 2019-11-06 09:11:19 t 1 1 154360 623 0.00 2019-11-06 09:11:39 2019-11-06 09:11:41 t 1 1 154361 623 0.00 2019-11-06 09:11:53 2019-11-06 09:12:05 t 1 1 154364 623 0.00 2019-11-06 09:12:49 2019-11-06 09:12:56 t 1 1 154365 623 0.00 2019-11-06 09:13:09 2019-11-06 09:13:10 t 1 1 154368 623 0.00 2019-11-06 09:13:30 2019-11-06 09:13:35 t 1 1 154369 623 0.00 2019-11-06 09:13:53 2019-11-06 09:14:00 t 1 1 154372 623 0.00 2019-11-06 09:14:52 2019-11-06 09:14:57 t 1 1 154374 623 0.00 2019-11-06 09:15:10 2019-11-06 09:15:11 t 1 1 154378 623 0.00 2019-11-06 09:16:17 2019-11-06 09:16:20 t 1 1 154380 623 0.00 2019-11-06 09:14:45 2019-11-06 09:16:52 t 1 1 154381 623 0.00 2019-11-06 09:16:59 2019-11-06 09:17:21 t 1 1 154383 566 0.00 2019-11-06 09:10:34 2019-11-06 09:18:32 t 1 1 154386 623 0.00 2019-11-06 09:21:19 2019-11-06 09:21:24 t 1 1 154390 623 0.00 2019-11-06 09:24:24 2019-11-06 09:24:58 t 1 1 154393 623 0.00 2019-11-06 09:25:43 2019-11-06 09:25:50 t 1 1 154394 623 0.00 2019-11-06 09:26:03 2019-11-06 09:26:04 t 1 1 154397 623 0.00 2019-11-06 09:26:35 2019-11-06 09:26:37 t 1 1 154398 623 0.00 2019-11-06 09:26:43 2019-11-06 09:27:25 t 1 1 154399 623 0.00 2019-11-06 09:27:37 2019-11-06 09:27:58 t 1 1 154402 220 0.00 2019-11-06 09:10:21 2019-11-06 09:28:49 t 1 1 154406 623 0.00 2019-11-06 09:29:38 2019-11-06 09:29:45 t 1 1 154409 623 0.00 2019-11-06 09:30:04 2019-11-06 09:30:57 t 1 1 154412 220 0.00 2019-11-06 09:28:49 2019-11-06 09:40:18 t 1 1 154414 416 0.00 2019-11-06 09:18:06 2019-11-06 09:41:33 t 1 1 154415 623 0.00 2019-11-06 09:30:56 2019-11-06 09:44:21 t 1 1 154418 619 0.00 2019-11-06 09:40:14 2019-11-06 09:44:53 t 1 1 154419 623 0.00 2019-11-06 09:44:52 2019-11-06 09:45:09 t 1 1 154425 623 0.00 2019-11-06 09:46:48 2019-11-06 09:46:53 t 1 1 154431 623 0.00 2019-11-06 09:47:46 2019-11-06 09:48:03 t 1 1 154433 623 0.00 2019-11-06 09:48:27 2019-11-06 09:48:33 t 1 1 154436 578 0.00 2019-11-06 09:47:40 2019-11-06 09:49:06 t 1 1 154437 623 0.00 2019-11-06 09:49:28 2019-11-06 09:49:36 t 1 1 154439 623 0.00 2019-11-06 09:49:47 2019-11-06 09:49:52 t 1 1 154442 623 0.00 2019-11-06 09:50:44 2019-11-06 09:50:57 t 1 1 154443 578 0.00 2019-11-06 09:49:56 2019-11-06 09:51:16 t 1 1 154451 623 0.00 2019-11-06 09:53:25 2019-11-06 09:53:32 t 1 1 154455 615 0.00 2019-11-06 09:48:55 2019-11-06 09:54:46 t 1 1 154456 520 0.00 2019-11-06 09:53:37 2019-11-06 09:54:50 t 1 1 154457 220 0.00 2019-11-06 09:51:37 2019-11-06 09:55:03 t 1 1 154465 623 0.00 2019-11-06 09:57:14 2019-11-06 09:57:16 t 1 1 154467 587 0.00 2019-11-06 09:51:56 2019-11-06 09:58:03 t 1 1 154469 520 0.00 2019-11-06 09:54:50 2019-11-06 09:58:04 t 1 1 154472 220 0.00 2019-11-06 09:56:17 2019-11-06 09:58:54 t 1 1 154473 220 0.00 2019-11-06 09:58:02 2019-11-06 09:59:27 t 1 1 154474 220 0.00 2019-11-06 09:59:25 2019-11-06 09:59:38 t 1 1 154484 220 0.00 2019-11-06 10:01:08 2019-11-06 10:01:52 t 1 1 154485 220 0.00 2019-11-06 10:01:50 2019-11-06 10:02:03 t 1 1 154488 220 0.00 2019-11-06 10:02:22 2019-11-06 10:02:35 t 1 1 154490 445 0.00 2019-11-06 09:59:30 2019-11-06 10:03:39 t 1 1 154491 520 0.00 2019-11-06 09:58:04 2019-11-06 10:05:46 t 1 1 154497 416 0.00 2019-11-06 10:11:16 2019-11-06 10:12:29 t 1 1 154498 220 0.00 2019-11-06 10:02:34 2019-11-06 10:13:03 t 1 1 154504 587 0.00 2019-11-06 10:06:50 2019-11-06 10:22:00 t 1 1 154505 587 0.00 2019-11-06 10:22:31 2019-11-06 10:22:39 t 1 1 154506 490 0.00 2019-11-06 10:20:33 2019-11-06 10:23:26 t 1 1 154226 545 0.00 2019-11-06 06:52:02 2019-11-06 07:00:05 t 1 1 154227 623 0.00 2019-11-06 07:00:41 2019-11-06 07:00:41 t 1 1 154231 609 0.00 2019-11-06 06:56:34 2019-11-06 07:03:16 t 1 1 154232 639 0.00 2019-11-06 01:52:41 2019-11-06 07:03:43 t 1 1 154236 445 0.00 2019-11-06 07:02:26 2019-11-06 07:05:28 t 1 1 154237 623 0.00 2019-11-06 07:05:47 2019-11-06 07:05:47 t 1 1 154238 516 0.00 2019-11-06 05:41:07 2019-11-06 07:09:15 t 1 1 154241 445 0.00 2019-11-06 07:05:44 2019-11-06 07:10:32 t 1 1 154242 623 0.00 2019-11-06 07:10:53 2019-11-06 07:10:53 t 1 1 154243 562 0.00 2019-11-06 07:11:28 2019-11-06 07:11:48 t 1 1 154246 623 0.00 2019-11-06 07:15:55 2019-11-06 07:15:57 t 1 1 154247 562 0.00 2019-11-06 07:16:02 2019-11-06 07:17:07 t 1 1 154250 623 0.00 2019-11-06 07:26:08 2019-11-06 07:26:09 t 1 1 154253 562 0.00 2019-11-06 07:29:36 2019-11-06 07:29:43 t 1 1 154254 623 0.00 2019-11-06 07:31:12 2019-11-06 07:31:14 t 1 1 154255 635 0.00 2019-11-06 07:21:02 2019-11-06 07:35:57 t 1 1 154265 623 0.00 2019-11-06 07:56:27 2019-11-06 07:56:27 t 1 1 154274 416 0.00 2019-11-06 07:53:10 2019-11-06 08:08:00 t 1 1 154275 578 0.00 2019-11-06 07:58:24 2019-11-06 08:09:57 t 1 1 154283 623 0.00 2019-11-06 08:16:41 2019-11-06 08:16:44 t 1 1 154286 595 0.00 2019-11-06 08:19:39 2019-11-06 08:20:06 t 1 1 154290 566 0.00 2019-11-06 08:11:59 2019-11-06 08:22:01 t 1 1 154291 595 0.00 2019-11-06 08:21:16 2019-11-06 08:23:44 t 1 1 154295 623 0.00 2019-11-06 08:26:49 2019-11-06 08:26:59 t 1 1 154302 623 0.00 2019-11-06 08:32:30 2019-11-06 08:32:45 t 1 1 154304 623 0.00 2019-11-06 08:33:42 2019-11-06 08:34:24 t 1 1 154306 623 0.00 2019-11-06 08:35:40 2019-11-06 08:35:42 t 1 1 154307 562 0.00 2019-11-06 08:35:50 2019-11-06 08:36:14 t 1 1 154315 625 0.00 2019-11-06 08:40:40 2019-11-06 08:41:52 t 1 1 154316 623 0.00 2019-11-06 08:42:23 2019-11-06 08:42:25 t 1 1 154318 623 0.00 2019-11-06 08:44:40 2019-11-06 08:44:43 t 1 1 154320 566 0.00 2019-11-06 08:37:23 2019-11-06 08:46:56 t 1 1 154321 623 0.00 2019-11-06 08:49:12 2019-11-06 08:49:43 t 1 1 154322 578 0.00 2019-11-06 08:33:39 2019-11-06 08:50:08 t 1 1 154323 566 0.00 2019-11-06 08:46:56 2019-11-06 08:51:46 t 1 1 154324 416 0.00 2019-11-06 08:40:10 2019-11-06 08:54:14 t 1 1 154329 623 0.00 2019-11-06 08:58:22 2019-11-06 08:59:44 t 1 1 154331 623 0.00 2019-11-06 09:00:19 2019-11-06 09:00:25 t 1 1 154336 623 0.00 2019-11-06 09:01:38 2019-11-06 09:01:39 t 1 1 154340 623 0.00 2019-11-06 09:02:50 2019-11-06 09:02:56 t 1 1 154344 623 0.00 2019-11-06 09:03:26 2019-11-06 09:03:33 t 1 1 154347 578 0.00 2019-11-06 08:50:08 2019-11-06 09:04:01 t 1 1 154348 623 0.00 2019-11-06 09:04:11 2019-11-06 09:04:13 t 1 1 154353 623 0.00 2019-11-06 09:05:45 2019-11-06 09:05:50 t 1 1 154354 591 0.00 2019-11-06 09:03:08 2019-11-06 09:08:00 t 1 1 154356 220 0.00 2019-11-06 08:12:26 2019-11-06 09:10:21 t 1 1 154359 623 0.00 2019-11-06 09:06:11 2019-11-06 09:11:26 t 1 1 154363 623 0.00 2019-11-06 09:12:43 2019-11-06 09:12:44 t 1 1 154367 623 0.00 2019-11-06 09:13:22 2019-11-06 09:13:24 t 1 1 154371 623 0.00 2019-11-06 09:14:19 2019-11-06 09:14:21 t 1 1 154373 619 0.00 2019-11-06 09:01:07 2019-11-06 09:15:04 t 1 1 154376 623 0.00 2019-11-06 09:15:36 2019-11-06 09:15:37 t 1 1 154377 623 0.00 2019-11-06 09:15:42 2019-11-06 09:15:59 t 1 1 154385 623 0.00 2019-11-06 09:17:59 2019-11-06 09:21:06 t 1 1 154387 566 0.00 2019-11-06 09:18:32 2019-11-06 09:22:55 t 1 1 154392 623 0.00 2019-11-06 09:25:17 2019-11-06 09:25:23 t 1 1 154396 625 0.00 2019-11-06 08:41:38 2019-11-06 09:26:31 t 1 1 154405 623 0.00 2019-11-06 09:29:14 2019-11-06 09:29:20 t 1 1 154407 623 0.00 2019-11-06 09:29:57 2019-11-06 09:29:59 t 1 1 154408 520 0.00 2019-11-06 09:22:21 2019-11-06 09:30:22 t 1 1 154410 627 0.00 2019-11-06 09:23:48 2019-11-06 09:35:13 t 1 1 154411 627 0.00 2019-11-06 09:35:13 2019-11-06 09:39:07 t 1 1 154413 597 0.00 2019-11-06 09:28:18 2019-11-06 09:40:45 t 1 1 154417 627 0.00 2019-11-06 09:39:07 2019-11-06 09:44:52 t 1 1 154421 623 0.00 2019-11-06 09:45:34 2019-11-06 09:45:40 t 1 1 154424 623 0.00 2019-11-06 09:46:22 2019-11-06 09:46:28 t 1 1 154427 625 0.00 2019-11-06 09:28:09 2019-11-06 09:47:08 t 1 1 154428 623 0.00 2019-11-06 09:47:11 2019-11-06 09:47:17 t 1 1 154432 623 0.00 2019-11-06 09:48:03 2019-11-06 09:48:09 t 1 1 154434 587 0.00 2019-11-06 09:44:24 2019-11-06 09:48:47 t 1 1 154441 623 0.00 2019-11-06 09:50:34 2019-11-06 09:50:39 t 1 1 154444 623 0.00 2019-11-06 09:51:15 2019-11-06 09:51:22 t 1 1 154445 623 0.00 2019-11-06 09:51:40 2019-11-06 09:51:42 t 1 1 154446 520 0.00 2019-11-06 09:46:55 2019-11-06 09:51:48 t 1 1 154448 623 0.00 2019-11-06 09:52:11 2019-11-06 09:53:00 t 1 1 154450 623 0.00 2019-11-06 09:53:18 2019-11-06 09:53:20 t 1 1 154454 416 0.00 2019-11-06 09:43:06 2019-11-06 09:53:58 t 1 1 154458 623 0.00 2019-11-06 09:54:09 2019-11-06 09:55:10 t 1 1 154461 623 0.00 2019-11-06 09:56:25 2019-11-06 09:56:30 t 1 1 154463 623 0.00 2019-11-06 09:56:35 2019-11-06 09:56:47 t 1 1 154464 623 0.00 2019-11-06 09:56:52 2019-11-06 09:57:09 t 1 1 154468 623 0.00 2019-11-06 09:57:53 2019-11-06 09:58:03 t 1 1 154471 445 0.00 2019-11-06 07:10:34 2019-11-06 09:58:21 t 1 1 154475 623 0.00 2019-11-06 09:58:09 2019-11-06 09:59:51 t 1 1 154477 220 0.00 2019-11-06 09:59:37 2019-11-06 10:00:08 t 1 1 154479 220 0.00 2019-11-06 10:00:00 2019-11-06 10:00:20 t 1 1 154480 623 0.00 2019-11-06 10:00:21 2019-11-06 10:00:35 t 1 1 154487 220 0.00 2019-11-06 10:02:03 2019-11-06 10:02:24 t 1 1 154489 528 0.00 2019-11-06 09:58:47 2019-11-06 10:02:45 t 1 1 154492 615 0.00 2019-11-06 10:01:28 2019-11-06 10:07:10 t 1 1 154495 619 0.00 2019-11-06 10:01:10 2019-11-06 10:10:59 t 1 1 154496 416 0.00 2019-11-06 10:02:16 2019-11-06 10:11:20 t 1 1 154500 416 0.00 2019-11-06 10:13:05 2019-11-06 10:17:08 t 1 1 154501 220 0.00 2019-11-06 10:13:03 2019-11-06 10:18:01 t 1 1 154507 520 0.00 2019-11-06 10:11:13 2019-11-06 10:24:06 t 1 1 154510 445 0.00 2019-11-06 10:08:22 2019-11-06 10:26:16 t 1 1 154511 587 0.00 2019-11-06 10:23:08 2019-11-06 10:27:23 t 1 1 154517 619 0.00 2019-11-06 10:27:05 2019-11-06 10:33:12 t 1 1 154518 587 0.00 2019-11-06 10:27:59 2019-11-06 10:36:03 t 1 1 154521 587 0.00 2019-11-06 10:37:20 2019-11-06 10:37:22 t 1 1 154526 490 0.00 2019-11-06 10:40:51 2019-11-06 10:42:57 t 1 1 154528 587 0.00 2019-11-06 10:37:55 2019-11-06 10:43:31 t 1 1 154533 623 0.00 2019-11-06 10:49:45 2019-11-06 10:50:02 t 1 1 154536 422 0.00 2019-11-06 10:49:26 2019-11-06 10:50:40 t 1 1 154538 416 0.00 2019-11-06 10:31:36 2019-11-06 10:50:52 t 1 1 154539 623 0.00 2019-11-06 10:50:58 2019-11-06 10:51:10 t 1 1 154543 623 0.00 2019-11-06 10:52:17 2019-11-06 10:52:24 t 1 1 154512 412 0.00 2019-11-06 00:50:48 2019-11-06 10:29:02 t 1 1 154514 416 0.00 2019-11-06 10:17:51 2019-11-06 10:31:17 t 1 1 154516 591 0.00 2019-11-06 09:18:47 2019-11-06 10:31:42 t 1 1 154520 490 0.00 2019-11-06 10:30:17 2019-11-06 10:37:08 t 1 1 154523 490 0.00 2019-11-06 10:37:08 2019-11-06 10:40:51 t 1 1 154527 615 0.00 2019-11-06 10:36:59 2019-11-06 10:43:21 t 1 1 154529 623 0.00 2019-11-06 10:36:32 2019-11-06 10:49:02 t 1 1 154531 422 0.00 2019-11-06 10:40:51 2019-11-06 10:49:26 t 1 1 154532 623 0.00 2019-11-06 10:49:32 2019-11-06 10:49:40 t 1 1 154534 623 0.00 2019-11-06 10:50:07 2019-11-06 10:50:24 t 1 1 154537 623 0.00 2019-11-06 10:50:43 2019-11-06 10:50:45 t 1 1 154540 623 0.00 2019-11-06 10:51:21 2019-11-06 10:51:27 t 1 1 154544 623 0.00 2019-11-06 10:52:29 2019-11-06 10:52:47 t 1 1 154545 623 0.00 2019-11-06 10:53:00 2019-11-06 10:53:01 t 1 1 154549 623 0.00 2019-11-06 10:54:26 2019-11-06 10:54:32 t 1 1 154551 623 0.00 2019-11-06 10:54:51 2019-11-06 10:54:58 t 1 1 154552 445 0.00 2019-11-06 10:42:44 2019-11-06 10:56:18 t 1 1 154557 587 0.00 2019-11-06 10:50:39 2019-11-06 10:57:49 t 1 1 154560 619 0.00 2019-11-06 10:55:22 2019-11-06 10:58:40 t 1 1 154562 623 0.00 2019-11-06 10:58:50 2019-11-06 10:58:51 t 1 1 154566 623 0.00 2019-11-06 11:01:19 2019-11-06 11:04:08 t 1 1 154570 623 0.00 2019-11-06 11:04:54 2019-11-06 11:04:59 t 1 1 154573 623 0.00 2019-11-06 11:05:18 2019-11-06 11:05:20 t 1 1 154575 623 0.00 2019-11-06 11:05:42 2019-11-06 11:05:44 t 1 1 154583 623 0.00 2019-11-06 11:07:11 2019-11-06 11:07:12 t 1 1 154586 587 0.00 2019-11-06 11:05:34 2019-11-06 11:10:51 t 1 1 154587 623 0.00 2019-11-06 11:07:17 2019-11-06 11:11:11 t 1 1 154591 623 0.00 2019-11-06 11:12:28 2019-11-06 11:12:35 t 1 1 154595 623 0.00 2019-11-06 11:13:36 2019-11-06 11:13:37 t 1 1 154597 516 0.00 2019-11-06 10:58:56 2019-11-06 11:14:06 t 1 1 154600 587 0.00 2019-11-06 11:10:51 2019-11-06 11:15:16 t 1 1 154603 623 0.00 2019-11-06 11:16:50 2019-11-06 11:16:51 t 1 1 154604 623 0.00 2019-11-06 11:16:57 2019-11-06 11:17:03 t 1 1 154607 589 0.00 2019-11-06 11:06:07 2019-11-06 11:18:16 t 1 1 154614 623 0.00 2019-11-06 11:20:35 2019-11-06 11:20:37 t 1 1 154621 623 0.00 2019-11-06 11:22:36 2019-11-06 11:22:42 t 1 1 154626 623 0.00 2019-11-06 11:23:54 2019-11-06 11:23:56 t 1 1 154627 623 0.00 2019-11-06 11:24:01 2019-11-06 11:24:08 t 1 1 154630 623 0.00 2019-11-06 11:23:22 2019-11-06 11:24:52 t 1 1 154631 623 0.00 2019-11-06 11:24:33 2019-11-06 11:25:22 t 1 1 154634 623 0.00 2019-11-06 11:26:13 2019-11-06 11:26:19 t 1 1 154637 623 0.00 2019-11-06 11:26:45 2019-11-06 11:26:47 t 1 1 154641 623 0.00 2019-11-06 11:27:41 2019-11-06 11:27:43 t 1 1 154644 587 0.00 2019-11-06 11:21:35 2019-11-06 11:28:32 t 1 1 154649 623 0.00 2019-11-06 11:29:04 2019-11-06 11:29:35 t 1 1 154651 587 0.00 2019-11-06 11:29:58 2019-11-06 11:30:59 t 1 1 154653 622 0.00 2019-11-06 11:27:01 2019-11-06 11:32:00 t 1 1 154658 615 0.00 2019-11-06 11:19:04 2019-11-06 11:40:35 t 1 1 154659 587 0.00 2019-11-06 11:40:23 2019-11-06 11:42:24 t 1 1 154660 451 0.00 2019-11-06 11:35:47 2019-11-06 11:43:34 t 1 1 154661 619 0.00 2019-11-06 11:39:57 2019-11-06 11:44:06 t 1 1 154662 451 0.00 2019-11-06 11:43:34 2019-11-06 11:47:29 t 1 1 154665 445 0.00 2019-11-06 11:46:08 2019-11-06 11:48:54 t 1 1 154668 587 0.00 2019-11-06 11:42:24 2019-11-06 11:50:43 t 1 1 154670 622 0.00 2019-11-06 11:47:48 2019-11-06 11:54:40 t 1 1 154672 587 0.00 2019-11-06 11:51:01 2019-11-06 11:57:48 t 1 1 154673 625 0.00 2019-11-06 11:29:25 2019-11-06 11:59:08 t 1 1 154674 545 0.00 2019-11-06 11:56:13 2019-11-06 12:01:08 t 1 1 154679 422 0.00 2019-11-06 12:06:11 2019-11-06 12:07:46 t 1 1 154682 520 0.00 2019-11-06 12:04:02 2019-11-06 12:10:41 t 1 1 154687 622 0.00 2019-11-06 12:05:10 2019-11-06 12:13:32 t 1 1 154688 587 0.00 2019-11-06 12:04:12 2019-11-06 12:16:10 t 1 1 154690 622 0.00 2019-11-06 12:13:32 2019-11-06 12:16:41 t 1 1 154691 615 0.00 2019-11-06 12:15:20 2019-11-06 12:19:35 t 1 1 154698 622 0.00 2019-11-06 12:19:48 2019-11-06 12:27:34 t 1 1 154699 451 0.00 2019-11-06 12:14:23 2019-11-06 12:30:18 t 1 1 154702 615 0.00 2019-11-06 12:29:07 2019-11-06 12:33:56 t 1 1 154703 545 0.00 2019-11-06 12:33:40 2019-11-06 12:35:35 t 1 1 154708 615 0.00 2019-11-06 12:33:56 2019-11-06 12:46:10 t 1 1 154711 615 0.00 2019-11-06 12:46:41 2019-11-06 12:50:11 t 1 1 154713 220 0.00 2019-11-06 12:46:46 2019-11-06 12:53:33 t 1 1 154715 445 0.00 2019-11-06 12:11:05 2019-11-06 12:58:39 t 1 1 154721 520 0.00 2019-11-06 13:00:09 2019-11-06 13:06:39 t 1 1 154723 587 0.00 2019-11-06 12:50:54 2019-11-06 13:07:46 t 1 1 154724 587 0.00 2019-11-06 13:08:21 2019-11-06 13:08:31 t 1 1 154727 619 0.00 2019-11-06 13:03:30 2019-11-06 13:11:44 t 1 1 154731 445 0.00 2019-11-06 13:26:56 2019-11-06 13:30:01 t 1 1 154732 516 0.00 2019-11-06 13:29:38 2019-11-06 13:31:29 t 1 1 154735 538 0.00 2019-11-06 13:35:57 2019-11-06 13:37:09 t 1 1 154736 490 0.00 2019-11-06 13:16:31 2019-11-06 13:40:54 t 1 1 154740 538 0.00 2019-11-06 13:37:20 2019-11-06 13:44:39 t 1 1 154741 520 0.00 2019-11-06 13:32:26 2019-11-06 13:47:37 t 1 1 154742 445 0.00 2019-11-06 13:30:05 2019-11-06 13:48:10 t 1 1 154743 520 0.00 2019-11-06 13:47:43 2019-11-06 13:48:58 t 1 1 154746 597 0.00 2019-11-06 13:48:19 2019-11-06 13:50:22 t 1 1 154747 445 0.00 2019-11-06 13:48:21 2019-11-06 13:51:57 t 1 1 154751 412 0.00 2019-11-06 13:48:46 2019-11-06 13:55:53 t 1 1 154752 412 0.00 2019-11-06 13:58:41 2019-11-06 14:00:19 t 1 1 154753 445 0.00 2019-11-06 13:54:09 2019-11-06 14:03:07 t 1 1 154754 412 0.00 2019-11-06 14:03:16 2019-11-06 14:05:28 t 1 1 154761 220 0.00 2019-11-06 14:21:24 2019-11-06 14:22:03 t 1 1 154763 591 0.00 2019-11-06 14:18:06 2019-11-06 14:23:55 t 1 1 154766 625 0.00 2019-11-06 11:59:35 2019-11-06 14:24:26 t 1 1 154770 627 0.00 2019-11-06 14:11:44 2019-11-06 14:27:11 t 1 1 154773 528 0.00 2019-11-06 13:55:20 2019-11-06 14:28:30 t 1 1 154774 627 0.00 2019-11-06 14:27:11 2019-11-06 14:29:53 t 1 1 154777 587 0.00 2019-11-06 14:28:04 2019-11-06 14:33:35 t 1 1 154782 538 0.00 2019-11-06 14:29:17 2019-11-06 14:39:08 t 1 1 154784 609 0.00 2019-11-06 14:38:12 2019-11-06 14:39:27 t 1 1 154786 538 0.00 2019-11-06 14:39:08 2019-11-06 14:40:17 t 1 1 154790 627 0.00 2019-11-06 14:37:01 2019-11-06 14:43:20 t 1 1 154795 609 0.00 2019-11-06 14:39:59 2019-11-06 14:47:44 t 1 1 154796 627 0.00 2019-11-06 14:43:20 2019-11-06 14:48:30 t 1 1 154799 622 0.00 2019-11-06 14:41:22 2019-11-06 14:54:13 t 1 1 154807 528 0.00 2019-11-06 14:55:22 2019-11-06 14:59:19 t 1 1 154814 379 0.00 2019-11-06 14:59:14 2019-11-06 15:11:53 t 1 1 154815 412 0.00 2019-11-06 15:05:47 2019-11-06 15:12:26 t 1 1 154547 623 0.00 2019-11-06 10:53:35 2019-11-06 10:53:41 t 1 1 154548 623 0.00 2019-11-06 10:54:01 2019-11-06 10:54:07 t 1 1 154554 623 0.00 2019-11-06 10:56:40 2019-11-06 10:56:46 t 1 1 154556 623 0.00 2019-11-06 10:57:40 2019-11-06 10:57:42 t 1 1 154559 623 0.00 2019-11-06 10:58:16 2019-11-06 10:58:23 t 1 1 154561 623 0.00 2019-11-06 10:58:28 2019-11-06 10:58:45 t 1 1 154564 615 0.00 2019-11-06 10:57:13 2019-11-06 11:02:07 t 1 1 154565 587 0.00 2019-11-06 11:00:58 2019-11-06 11:03:00 t 1 1 154568 623 0.00 2019-11-06 11:04:27 2019-11-06 11:04:33 t 1 1 154572 623 0.00 2019-11-06 11:05:12 2019-11-06 11:05:13 t 1 1 154574 623 0.00 2019-11-06 11:05:26 2019-11-06 11:05:36 t 1 1 154579 623 0.00 2019-11-06 11:06:33 2019-11-06 11:06:34 t 1 1 154581 623 0.00 2019-11-06 11:06:40 2019-11-06 11:06:42 t 1 1 154582 623 0.00 2019-11-06 11:06:54 2019-11-06 11:07:04 t 1 1 154585 490 0.00 2019-11-06 10:56:12 2019-11-06 11:08:20 t 1 1 154590 623 0.00 2019-11-06 11:12:21 2019-11-06 11:12:23 t 1 1 154594 623 0.00 2019-11-06 11:13:18 2019-11-06 11:13:23 t 1 1 154598 445 0.00 2019-11-06 10:56:20 2019-11-06 11:14:19 t 1 1 154602 623 0.00 2019-11-06 11:16:43 2019-11-06 11:16:44 t 1 1 154608 615 0.00 2019-11-06 11:17:23 2019-11-06 11:18:39 t 1 1 154609 490 0.00 2019-11-06 11:08:20 2019-11-06 11:19:13 t 1 1 154611 623 0.00 2019-11-06 11:19:40 2019-11-06 11:19:46 t 1 1 154613 623 0.00 2019-11-06 11:20:11 2019-11-06 11:20:17 t 1 1 154616 623 0.00 2019-11-06 11:20:50 2019-11-06 11:20:56 t 1 1 154619 623 0.00 2019-11-06 11:21:48 2019-11-06 11:21:54 t 1 1 154620 623 0.00 2019-11-06 11:22:12 2019-11-06 11:22:18 t 1 1 154622 623 0.00 2019-11-06 11:21:09 2019-11-06 11:22:52 t 1 1 154625 623 0.00 2019-11-06 11:23:48 2019-11-06 11:23:49 t 1 1 154629 623 0.00 2019-11-06 11:24:26 2019-11-06 11:24:27 t 1 1 154633 623 0.00 2019-11-06 11:25:41 2019-11-06 11:25:43 t 1 1 154636 623 0.00 2019-11-06 11:26:38 2019-11-06 11:26:40 t 1 1 154640 623 0.00 2019-11-06 11:27:33 2019-11-06 11:27:36 t 1 1 154646 623 0.00 2019-11-06 11:28:42 2019-11-06 11:28:44 t 1 1 154647 623 0.00 2019-11-06 11:28:49 2019-11-06 11:28:51 t 1 1 154648 625 0.00 2019-11-06 11:24:27 2019-11-06 11:29:25 t 1 1 154650 587 0.00 2019-11-06 11:28:48 2019-11-06 11:29:38 t 1 1 154652 422 0.00 2019-11-06 11:26:13 2019-11-06 11:31:29 t 1 1 154654 451 0.00 2019-11-06 11:25:59 2019-11-06 11:35:47 t 1 1 154655 445 0.00 2019-11-06 11:14:27 2019-11-06 11:36:40 t 1 1 154657 585 0.00 2019-11-06 11:32:58 2019-11-06 11:37:28 t 1 1 154663 622 0.00 2019-11-06 11:40:12 2019-11-06 11:47:48 t 1 1 154669 379 0.00 2019-11-06 09:23:28 2019-11-06 11:52:14 t 1 1 154677 445 0.00 2019-11-06 11:50:08 2019-11-06 12:04:11 t 1 1 154678 622 0.00 2019-11-06 11:54:40 2019-11-06 12:05:10 t 1 1 154683 490 0.00 2019-11-06 12:04:33 2019-11-06 12:10:46 t 1 1 154685 445 0.00 2019-11-06 12:04:16 2019-11-06 12:10:57 t 1 1 154689 585 0.00 2019-11-06 12:13:53 2019-11-06 12:16:12 t 1 1 154692 622 0.00 2019-11-06 12:16:41 2019-11-06 12:19:48 t 1 1 154695 587 0.00 2019-11-06 12:24:20 2019-11-06 12:24:30 t 1 1 154696 585 0.00 2019-11-06 12:18:52 2019-11-06 12:25:39 t 1 1 154697 520 0.00 2019-11-06 12:10:41 2019-11-06 12:25:57 t 1 1 154704 379 0.00 2019-11-06 11:52:14 2019-11-06 12:41:15 t 1 1 154705 422 0.00 2019-11-06 12:40:57 2019-11-06 12:42:25 t 1 1 154706 597 0.00 2019-11-06 12:34:13 2019-11-06 12:44:16 t 1 1 154707 607 0.00 2019-11-06 12:41:43 2019-11-06 12:45:29 t 1 1 154709 622 0.00 2019-11-06 12:27:34 2019-11-06 12:47:20 t 1 1 154712 587 0.00 2019-11-06 12:39:20 2019-11-06 12:50:51 t 1 1 154714 589 0.00 2019-11-06 11:18:16 2019-11-06 12:57:21 t 1 1 154717 589 0.00 2019-11-06 12:57:20 2019-11-06 13:03:26 t 1 1 154726 622 0.00 2019-11-06 12:47:20 2019-11-06 13:08:52 t 1 1 154738 587 0.00 2019-11-06 13:22:24 2019-11-06 13:42:05 t 1 1 154739 587 0.00 2019-11-06 13:42:43 2019-11-06 13:43:54 t 1 1 154744 520 0.00 2019-11-06 13:48:57 2019-11-06 13:49:20 t 1 1 154757 591 0.00 2019-11-06 12:31:41 2019-11-06 14:18:06 t 1 1 154758 412 0.00 2019-11-06 14:14:27 2019-11-06 14:19:34 t 1 1 154759 220 0.00 2019-11-06 12:29:24 2019-11-06 14:21:25 t 1 1 154765 220 0.00 2019-11-06 14:22:03 2019-11-06 14:24:19 t 1 1 154767 445 0.00 2019-11-06 14:03:07 2019-11-06 14:25:14 t 1 1 154769 622 0.00 2019-11-06 14:21:45 2019-11-06 14:27:02 t 1 1 154775 445 0.00 2019-11-06 14:26:10 2019-11-06 14:30:43 t 1 1 154780 627 0.00 2019-11-06 14:33:44 2019-11-06 14:37:01 t 1 1 154783 617 0.00 2019-11-06 14:31:53 2019-11-06 14:39:20 t 1 1 154792 617 0.00 2019-11-06 14:41:04 2019-11-06 14:46:17 t 1 1 154794 528 0.00 2019-11-06 14:39:35 2019-11-06 14:47:26 t 1 1 154797 451 0.00 2019-11-06 14:32:46 2019-11-06 14:49:23 t 1 1 154800 528 0.00 2019-11-06 14:47:26 2019-11-06 14:55:22 t 1 1 154801 627 0.00 2019-11-06 14:52:55 2019-11-06 14:56:12 t 1 1 154803 625 0.00 2019-11-06 14:24:26 2019-11-06 14:58:36 t 1 1 154804 412 0.00 2019-11-06 14:36:35 2019-11-06 14:59:01 t 1 1 154806 379 0.00 2019-11-06 14:38:30 2019-11-06 14:59:14 t 1 1 154809 622 0.00 2019-11-06 14:54:13 2019-11-06 15:02:31 t 1 1 154810 412 0.00 2019-11-06 15:01:21 2019-11-06 15:03:00 t 1 1 154811 412 0.00 2019-11-06 15:03:04 2019-11-06 15:04:19 t 1 1 154812 510 0.00 2019-11-06 14:59:05 2019-11-06 15:07:41 t 1 1 154813 451 0.00 2019-11-06 14:49:23 2019-11-06 15:11:02 t 1 1 154821 514 0.00 2019-11-06 15:29:39 2019-11-06 15:30:42 t 1 1 154823 451 0.00 2019-11-06 15:11:02 2019-11-06 15:33:20 t 1 1 154826 456 0.00 2019-11-06 14:49:18 2019-11-06 15:41:01 t 1 1 154827 451 0.00 2019-11-06 15:33:20 2019-11-06 15:43:31 t 1 1 154828 412 0.00 2019-11-06 15:39:51 2019-11-06 15:44:08 t 1 1 154831 430 0.00 2019-11-06 15:47:39 2019-11-06 15:47:40 t 1 1 154832 430 0.00 2019-11-06 15:48:40 2019-11-06 15:48:42 t 1 1 154833 621 0.00 2019-11-06 15:41:17 2019-11-06 15:52:28 t 1 1 154840 449 0.00 2019-11-06 15:59:16 2019-11-06 16:03:27 t 1 1 154841 451 0.00 2019-11-06 15:43:31 2019-11-06 16:07:25 t 1 1 154845 379 0.00 2019-11-06 15:11:53 2019-11-06 16:16:01 t 1 1 154846 220 0.00 2019-11-06 15:33:37 2019-11-06 16:16:27 t 1 1 154850 566 0.00 2019-11-06 16:16:27 2019-11-06 16:26:47 t 1 1 154852 220 0.00 2019-11-06 16:27:46 2019-11-06 16:33:09 t 1 1 154853 451 0.00 2019-11-06 16:07:26 2019-11-06 16:36:25 t 1 1 154854 591 0.00 2019-11-06 16:26:45 2019-11-06 16:39:33 t 1 1 154856 220 0.00 2019-11-06 16:33:56 2019-11-06 16:42:34 t 1 1 154863 597 0.00 2019-11-06 16:52:04 2019-11-06 16:56:59 t 1 1 154864 516 0.00 2019-11-06 16:56:39 2019-11-06 16:58:28 t 1 1 154866 528 0.00 2019-11-06 17:04:02 2019-11-06 17:04:52 t 1 1 154871 220 0.00 2019-11-06 16:49:55 2019-11-06 17:14:27 t 1 1 154873 578 0.00 2019-11-06 16:02:59 2019-11-06 17:14:44 t 1 1 154584 623 0.00 2019-11-06 11:06:08 2019-11-06 11:07:52 t 1 1 154588 623 0.00 2019-11-06 11:11:32 2019-11-06 11:11:38 t 1 1 154589 623 0.00 2019-11-06 11:12:04 2019-11-06 11:12:10 t 1 1 154592 623 0.00 2019-11-06 11:12:48 2019-11-06 11:12:49 t 1 1 154593 623 0.00 2019-11-06 11:12:54 2019-11-06 11:13:00 t 1 1 154596 623 0.00 2019-11-06 11:13:42 2019-11-06 11:13:46 t 1 1 154599 619 0.00 2019-11-06 11:13:51 2019-11-06 11:15:11 t 1 1 154601 623 0.00 2019-11-06 11:13:51 2019-11-06 11:16:30 t 1 1 154605 623 0.00 2019-11-06 11:17:08 2019-11-06 11:17:17 t 1 1 154606 623 0.00 2019-11-06 11:17:47 2019-11-06 11:17:53 t 1 1 154610 623 0.00 2019-11-06 11:18:06 2019-11-06 11:19:29 t 1 1 154612 623 0.00 2019-11-06 11:20:04 2019-11-06 11:20:06 t 1 1 154615 623 0.00 2019-11-06 11:20:43 2019-11-06 11:20:44 t 1 1 154617 623 0.00 2019-11-06 11:21:15 2019-11-06 11:21:22 t 1 1 154618 623 0.00 2019-11-06 11:21:35 2019-11-06 11:21:36 t 1 1 154623 623 0.00 2019-11-06 11:23:03 2019-11-06 11:23:09 t 1 1 154624 623 0.00 2019-11-06 11:23:29 2019-11-06 11:23:35 t 1 1 154628 625 0.00 2019-11-06 09:47:08 2019-11-06 11:24:27 t 1 1 154632 623 0.00 2019-11-06 11:25:35 2019-11-06 11:25:36 t 1 1 154635 623 0.00 2019-11-06 11:26:32 2019-11-06 11:26:33 t 1 1 154638 622 0.00 2019-11-06 11:23:03 2019-11-06 11:27:01 t 1 1 154639 623 0.00 2019-11-06 11:27:27 2019-11-06 11:27:28 t 1 1 154642 623 0.00 2019-11-06 11:27:48 2019-11-06 11:27:50 t 1 1 154643 623 0.00 2019-11-06 11:28:07 2019-11-06 11:28:23 t 1 1 154645 623 0.00 2019-11-06 11:28:36 2019-11-06 11:28:37 t 1 1 154656 622 0.00 2019-11-06 11:32:00 2019-11-06 11:36:47 t 1 1 154664 556 0.00 2019-11-06 01:22:39 2019-11-06 11:48:51 t 1 1 154666 445 0.00 2019-11-06 11:49:04 2019-11-06 11:50:08 t 1 1 154667 556 0.00 2019-11-06 11:48:51 2019-11-06 11:50:18 t 1 1 154671 481 0.00 2019-11-06 11:53:53 2019-11-06 11:55:52 t 1 1 154675 585 0.00 2019-11-06 11:55:34 2019-11-06 12:01:30 t 1 1 154676 599 0.00 2019-11-06 11:59:19 2019-11-06 12:03:25 t 1 1 154680 585 0.00 2019-11-06 12:01:30 2019-11-06 12:08:32 t 1 1 154681 599 0.00 2019-11-06 12:03:25 2019-11-06 12:09:17 t 1 1 154684 451 0.00 2019-11-06 12:03:38 2019-11-06 12:10:56 t 1 1 154686 585 0.00 2019-11-06 12:08:32 2019-11-06 12:13:09 t 1 1 154693 587 0.00 2019-11-06 12:16:23 2019-11-06 12:23:36 t 1 1 154694 587 0.00 2019-11-06 12:23:54 2019-11-06 12:24:01 t 1 1 154700 591 0.00 2019-11-06 10:31:42 2019-11-06 12:31:41 t 1 1 154701 619 0.00 2019-11-06 12:29:38 2019-11-06 12:32:09 t 1 1 154710 520 0.00 2019-11-06 12:25:57 2019-11-06 12:48:03 t 1 1 154716 520 0.00 2019-11-06 12:48:03 2019-11-06 13:00:10 t 1 1 154718 589 0.00 2019-11-06 13:03:26 2019-11-06 13:03:27 t 1 1 154719 445 0.00 2019-11-06 13:03:24 2019-11-06 13:04:30 t 1 1 154720 597 0.00 2019-11-06 13:03:23 2019-11-06 13:06:20 t 1 1 154722 516 0.00 2019-11-06 13:02:18 2019-11-06 13:07:17 t 1 1 154725 587 0.00 2019-11-06 13:08:40 2019-11-06 13:08:43 t 1 1 154728 445 0.00 2019-11-06 13:04:31 2019-11-06 13:26:54 t 1 1 154729 422 0.00 2019-11-06 13:15:42 2019-11-06 13:27:41 t 1 1 154730 619 0.00 2019-11-06 13:26:25 2019-11-06 13:29:15 t 1 1 154733 520 0.00 2019-11-06 13:06:19 2019-11-06 13:32:17 t 1 1 154734 622 0.00 2019-11-06 13:08:51 2019-11-06 13:33:52 t 1 1 154737 412 0.00 2019-11-06 10:29:02 2019-11-06 13:41:56 t 1 1 154745 564 0.00 2019-11-06 12:33:12 2019-11-06 13:50:21 t 1 1 154748 587 0.00 2019-11-06 13:44:53 2019-11-06 13:52:57 t 1 1 154749 445 0.00 2019-11-06 13:52:02 2019-11-06 13:53:53 t 1 1 154750 619 0.00 2019-11-06 13:49:32 2019-11-06 13:54:39 t 1 1 154755 587 0.00 2019-11-06 13:52:57 2019-11-06 14:09:09 t 1 1 154756 619 0.00 2019-11-06 14:04:12 2019-11-06 14:10:24 t 1 1 154760 622 0.00 2019-11-06 14:13:50 2019-11-06 14:21:45 t 1 1 154762 587 0.00 2019-11-06 14:17:01 2019-11-06 14:23:18 t 1 1 154764 379 0.00 2019-11-06 14:02:13 2019-11-06 14:23:59 t 1 1 154768 516 0.00 2019-11-06 13:59:47 2019-11-06 14:25:14 t 1 1 154771 587 0.00 2019-11-06 14:26:29 2019-11-06 14:27:45 t 1 1 154772 220 0.00 2019-11-06 14:24:24 2019-11-06 14:28:20 t 1 1 154776 412 0.00 2019-11-06 14:21:02 2019-11-06 14:33:30 t 1 1 154778 627 0.00 2019-11-06 14:29:53 2019-11-06 14:33:44 t 1 1 154779 412 0.00 2019-11-06 14:34:58 2019-11-06 14:36:35 t 1 1 154781 379 0.00 2019-11-06 14:23:59 2019-11-06 14:38:30 t 1 1 154785 609 0.00 2019-11-06 14:39:26 2019-11-06 14:40:00 t 1 1 154787 538 0.00 2019-11-06 14:40:18 2019-11-06 14:40:32 t 1 1 154788 622 0.00 2019-11-06 14:27:02 2019-11-06 14:41:10 t 1 1 154789 599 0.00 2019-11-06 14:42:59 2019-11-06 14:43:07 t 1 1 154791 220 0.00 2019-11-06 14:36:01 2019-11-06 14:45:02 t 1 1 154793 585 0.00 2019-11-06 14:42:18 2019-11-06 14:46:49 t 1 1 154798 627 0.00 2019-11-06 14:48:30 2019-11-06 14:52:55 t 1 1 154802 609 0.00 2019-11-06 14:47:44 2019-11-06 14:58:07 t 1 1 154805 510 0.00 2019-11-06 14:33:44 2019-11-06 14:59:05 t 1 1 154808 627 0.00 2019-11-06 14:56:12 2019-11-06 15:01:44 t 1 1 154817 412 0.00 2019-11-06 15:16:23 2019-11-06 15:18:45 t 1 1 154818 445 0.00 2019-11-06 14:31:29 2019-11-06 15:26:03 t 1 1 154829 430 0.00 2019-11-06 15:36:51 2019-11-06 15:46:51 t 1 1 154830 430 0.00 2019-11-06 15:46:56 2019-11-06 15:47:02 t 1 1 154834 456 0.00 2019-11-06 15:41:01 2019-11-06 15:54:00 t 1 1 154836 621 0.00 2019-11-06 15:52:28 2019-11-06 15:58:51 t 1 1 154839 578 0.00 2019-11-06 15:28:07 2019-11-06 16:02:59 t 1 1 154844 566 0.00 2019-11-06 16:09:54 2019-11-06 16:15:40 t 1 1 154855 585 0.00 2019-11-06 16:39:16 2019-11-06 16:41:02 t 1 1 154858 591 0.00 2019-11-06 16:39:33 2019-11-06 16:44:37 t 1 1 154859 597 0.00 2019-11-06 16:40:56 2019-11-06 16:45:10 t 1 1 154860 619 0.00 2019-11-06 16:46:00 2019-11-06 16:48:03 t 1 1 154861 451 0.00 2019-11-06 16:36:25 2019-11-06 16:55:09 t 1 1 154867 619 0.00 2019-11-06 17:04:52 2019-11-06 17:06:44 t 1 1 154870 422 0.00 2019-11-06 17:10:08 2019-11-06 17:14:14 t 1 1 154872 625 0.00 2019-11-06 14:58:36 2019-11-06 17:14:28 t 1 1 154878 622 0.00 2019-11-06 15:02:31 2019-11-06 17:26:30 t 1 1 154884 622 0.00 2019-11-06 17:29:31 2019-11-06 17:31:56 t 1 1 154890 445 0.00 2019-11-06 17:32:19 2019-11-06 17:33:54 t 1 1 154892 597 0.00 2019-11-06 17:32:21 2019-11-06 17:41:58 t 1 1 154895 430 0.00 2019-11-06 17:32:10 2019-11-06 17:43:42 t 1 1 154896 520 0.00 2019-11-06 17:33:47 2019-11-06 17:44:37 t 1 1 154899 430 0.00 2019-11-06 17:43:42 2019-11-06 17:51:02 t 1 1 154902 528 0.00 2019-11-06 17:53:05 2019-11-06 17:54:23 t 1 1 154905 619 0.00 2019-11-06 17:57:19 2019-11-06 17:58:35 t 1 1 154906 622 0.00 2019-11-06 17:46:37 2019-11-06 17:59:22 t 1 1 154908 585 0.00 2019-11-06 17:53:43 2019-11-06 18:00:08 t 1 1 154910 528 0.00 2019-11-06 18:00:40 2019-11-06 18:01:53 t 1 1 154816 545 0.00 2019-11-06 14:50:38 2019-11-06 15:16:01 t 1 1 154819 578 0.00 2019-11-06 10:28:39 2019-11-06 15:28:07 t 1 1 154820 595 0.00 2019-11-06 15:27:22 2019-11-06 15:28:59 t 1 1 154822 619 0.00 2019-11-06 15:31:22 2019-11-06 15:33:12 t 1 1 154824 430 0.00 2019-11-06 15:33:25 2019-11-06 15:34:19 t 1 1 154825 412 0.00 2019-11-06 15:18:42 2019-11-06 15:39:51 t 1 1 154835 430 0.00 2019-11-06 15:54:56 2019-11-06 15:54:58 t 1 1 154837 619 0.00 2019-11-06 15:57:30 2019-11-06 15:59:42 t 1 1 154838 430 0.00 2019-11-06 16:02:15 2019-11-06 16:02:36 t 1 1 154842 621 0.00 2019-11-06 15:58:51 2019-11-06 16:10:10 t 1 1 154843 635 0.00 2019-11-06 16:09:56 2019-11-06 16:13:18 t 1 1 154847 566 0.00 2019-11-06 16:15:39 2019-11-06 16:16:27 t 1 1 154848 516 0.00 2019-11-06 16:12:08 2019-11-06 16:20:08 t 1 1 154849 220 0.00 2019-11-06 16:16:27 2019-11-06 16:26:45 t 1 1 154851 566 0.00 2019-11-06 16:26:47 2019-11-06 16:30:15 t 1 1 154857 585 0.00 2019-11-06 16:41:01 2019-11-06 16:43:05 t 1 1 154862 591 0.00 2019-11-06 16:47:30 2019-11-06 16:55:09 t 1 1 154865 528 0.00 2019-11-06 17:02:52 2019-11-06 17:03:32 t 1 1 154868 430 0.00 2019-11-06 17:06:56 2019-11-06 17:08:27 t 1 1 154869 220 0.00 2019-11-06 16:57:03 2019-11-06 17:13:55 t 1 1 154874 528 0.00 2019-11-06 17:14:24 2019-11-06 17:14:48 t 1 1 154875 445 0.00 2019-11-06 15:26:03 2019-11-06 17:15:43 t 1 1 154876 422 0.00 2019-11-06 17:19:59 2019-11-06 17:21:15 t 1 1 154877 597 0.00 2019-11-06 17:17:50 2019-11-06 17:23:02 t 1 1 154879 528 0.00 2019-11-06 17:26:42 2019-11-06 17:27:12 t 1 1 154881 622 0.00 2019-11-06 17:26:38 2019-11-06 17:28:09 t 1 1 154886 430 0.00 2019-11-06 17:09:40 2019-11-06 17:32:10 t 1 1 154887 528 0.00 2019-11-06 17:32:29 2019-11-06 17:33:06 t 1 1 154897 551 0.00 2019-11-06 07:05:02 2019-11-06 17:45:40 t 1 1 154903 422 0.00 2019-11-06 17:50:53 2019-11-06 17:55:48 t 1 1 154907 503 0.00 2019-11-06 17:53:49 2019-11-06 17:59:26 t 1 1 154909 430 0.00 2019-11-06 17:51:02 2019-11-06 18:01:45 t 1 1 154916 528 0.00 2019-11-06 18:04:33 2019-11-06 18:05:05 t 1 1 154919 622 0.00 2019-11-06 17:59:21 2019-11-06 18:06:25 t 1 1 154922 445 0.00 2019-11-06 17:53:33 2019-11-06 18:09:08 t 1 1 154924 520 0.00 2019-11-06 18:02:59 2019-11-06 18:10:13 t 1 1 154927 622 0.00 2019-11-06 18:07:42 2019-11-06 18:11:42 t 1 1 154931 528 0.00 2019-11-06 18:12:34 2019-11-06 18:13:53 t 1 1 154933 516 0.00 2019-11-06 18:10:30 2019-11-06 18:15:11 t 1 1 154938 503 0.00 2019-11-06 18:11:45 2019-11-06 18:20:05 t 1 1 154939 615 0.00 2019-11-06 18:17:01 2019-11-06 18:21:33 t 1 1 154941 520 0.00 2019-11-06 18:10:13 2019-11-06 18:23:26 t 1 1 154943 558 0.00 2019-11-06 18:23:02 2019-11-06 18:24:31 t 1 1 154948 587 0.00 2019-11-06 18:28:18 2019-11-06 18:29:55 t 1 1 154949 445 0.00 2019-11-06 18:28:11 2019-11-06 18:30:00 t 1 1 154954 220 0.00 2019-11-06 18:31:20 2019-11-06 18:31:52 t 1 1 154956 503 0.00 2019-11-06 18:20:05 2019-11-06 18:35:19 t 1 1 154958 520 0.00 2019-11-06 18:24:01 2019-11-06 18:35:54 t 1 1 154964 622 0.00 2019-11-06 18:37:48 2019-11-06 18:38:53 t 1 1 154966 445 0.00 2019-11-06 18:30:06 2019-11-06 18:39:40 t 1 1 154969 451 0.00 2019-11-06 18:35:47 2019-11-06 18:43:50 t 1 1 154972 445 0.00 2019-11-06 18:40:10 2019-11-06 18:46:11 t 1 1 154975 514 0.00 2019-11-06 18:22:12 2019-11-06 18:47:42 t 1 1 154978 445 0.00 2019-11-06 18:46:11 2019-11-06 18:48:15 t 1 1 154981 528 0.00 2019-11-06 18:51:53 2019-11-06 18:51:56 t 1 1 154983 587 0.00 2019-11-06 18:51:57 2019-11-06 18:53:23 t 1 1 154985 545 0.00 2019-11-06 18:00:32 2019-11-06 18:55:03 t 1 1 154987 562 0.00 2019-11-06 18:55:41 2019-11-06 18:56:01 t 1 1 154989 451 0.00 2019-11-06 18:53:22 2019-11-06 18:56:47 t 1 1 154992 599 0.00 2019-11-06 18:45:04 2019-11-06 18:59:13 t 1 1 154993 609 0.00 2019-11-06 14:58:07 2019-11-06 18:59:56 t 1 1 154994 520 0.00 2019-11-06 18:55:57 2019-11-06 19:00:09 t 1 1 154996 631 0.00 2019-11-06 18:58:12 2019-11-06 19:01:07 t 1 1 154999 631 0.00 2019-11-06 19:03:39 2019-11-06 19:04:00 t 1 1 155001 514 0.00 2019-11-06 18:56:24 2019-11-06 19:04:34 t 1 1 155002 445 0.00 2019-11-06 18:49:32 2019-11-06 19:05:06 t 1 1 155003 622 0.00 2019-11-06 19:03:19 2019-11-06 19:05:20 t 1 1 155005 566 0.00 2019-11-06 18:36:52 2019-11-06 19:06:00 t 1 1 155006 528 0.00 2019-11-06 19:06:00 2019-11-06 19:06:42 t 1 1 155008 587 0.00 2019-11-06 19:05:02 2019-11-06 19:09:42 t 1 1 155011 562 0.00 2019-11-06 19:11:32 2019-11-06 19:11:39 t 1 1 155012 520 0.00 2019-11-06 19:05:03 2019-11-06 19:11:44 t 1 1 155015 516 0.00 2019-11-06 19:01:22 2019-11-06 19:14:10 t 1 1 155019 599 0.00 2019-11-06 19:11:54 2019-11-06 19:16:19 t 1 1 155021 528 0.00 2019-11-06 19:17:19 2019-11-06 19:17:26 t 1 1 155023 597 0.00 2019-11-06 19:11:43 2019-11-06 19:18:44 t 1 1 155027 528 0.00 2019-11-06 19:20:34 2019-11-06 19:21:04 t 1 1 155030 564 0.00 2019-11-06 17:25:54 2019-11-06 19:22:07 t 1 1 155036 562 0.00 2019-11-06 19:21:49 2019-11-06 19:26:41 t 1 1 155037 631 0.00 2019-11-06 19:27:29 2019-11-06 19:27:34 t 1 1 155040 587 0.00 2019-11-06 19:16:11 2019-11-06 19:29:27 t 1 1 155044 514 0.00 2019-11-06 19:22:06 2019-11-06 19:32:41 t 1 1 155046 631 0.00 2019-11-06 19:32:39 2019-11-06 19:32:59 t 1 1 155048 615 0.00 2019-11-06 19:28:24 2019-11-06 19:33:31 t 1 1 155053 615 0.00 2019-11-06 19:33:31 2019-11-06 19:34:48 t 1 1 155054 587 0.00 2019-11-06 19:29:27 2019-11-06 19:37:36 t 1 1 155055 566 0.00 2019-11-06 19:29:51 2019-11-06 19:38:09 t 1 1 155056 619 0.00 2019-11-06 19:36:41 2019-11-06 19:38:33 t 1 1 155058 631 0.00 2019-11-06 19:40:08 2019-11-06 19:40:13 t 1 1 155062 445 0.00 2019-11-06 19:05:06 2019-11-06 19:42:18 t 1 1 155063 220 0.00 2019-11-06 18:38:26 2019-11-06 19:42:52 t 1 1 155064 562 0.00 2019-11-06 19:43:06 2019-11-06 19:43:15 t 1 1 155066 220 0.00 2019-11-06 19:42:52 2019-11-06 19:43:34 t 1 1 155067 220 0.00 2019-11-06 19:43:33 2019-11-06 19:44:09 t 1 1 155069 220 0.00 2019-11-06 19:44:09 2019-11-06 19:44:48 t 1 1 155071 566 0.00 2019-11-06 19:38:09 2019-11-06 19:46:53 t 1 1 155072 578 0.00 2019-11-06 19:33:58 2019-11-06 19:47:12 t 1 1 155073 589 0.00 2019-11-06 19:25:00 2019-11-06 19:48:08 t 1 1 155080 609 0.00 2019-11-06 19:01:41 2019-11-06 19:54:04 t 1 1 155081 220 0.00 2019-11-06 19:45:23 2019-11-06 19:54:16 t 1 1 155086 587 0.00 2019-11-06 19:49:05 2019-11-06 19:56:37 t 1 1 155088 578 0.00 2019-11-06 19:47:12 2019-11-06 19:56:47 t 1 1 155091 220 0.00 2019-11-06 19:57:11 2019-11-06 19:57:49 t 1 1 155093 220 0.00 2019-11-06 19:57:49 2019-11-06 19:59:08 t 1 1 155094 220 0.00 2019-11-06 19:59:07 2019-11-06 19:59:46 t 1 1 155100 220 0.00 2019-11-06 20:02:05 2019-11-06 20:02:40 t 1 1 155102 528 0.00 2019-11-06 20:00:12 2019-11-06 20:03:07 t 1 1 154880 619 0.00 2019-11-06 17:26:10 2019-11-06 17:27:42 t 1 1 154882 556 0.00 2019-11-06 11:50:14 2019-11-06 17:28:55 t 1 1 154883 591 0.00 2019-11-06 17:26:12 2019-11-06 17:31:24 t 1 1 154885 445 0.00 2019-11-06 17:15:45 2019-11-06 17:31:57 t 1 1 154888 625 0.00 2019-11-06 17:14:28 2019-11-06 17:33:32 t 1 1 154889 520 0.00 2019-11-06 17:19:22 2019-11-06 17:33:47 t 1 1 154891 622 0.00 2019-11-06 17:32:01 2019-11-06 17:36:19 t 1 1 154893 621 0.00 2019-11-06 16:10:10 2019-11-06 17:42:07 t 1 1 154894 528 0.00 2019-11-06 17:42:59 2019-11-06 17:43:19 t 1 1 154898 516 0.00 2019-11-06 17:47:48 2019-11-06 17:50:38 t 1 1 154900 445 0.00 2019-11-06 17:40:42 2019-11-06 17:53:33 t 1 1 154901 520 0.00 2019-11-06 17:44:43 2019-11-06 17:54:15 t 1 1 154904 422 0.00 2019-11-06 17:56:53 2019-11-06 17:58:30 t 1 1 154911 520 0.00 2019-11-06 17:54:43 2019-11-06 18:03:00 t 1 1 154914 422 0.00 2019-11-06 17:59:31 2019-11-06 18:04:48 t 1 1 154917 514 0.00 2019-11-06 17:54:13 2019-11-06 18:05:39 t 1 1 154921 528 0.00 2019-11-06 18:08:01 2019-11-06 18:08:28 t 1 1 154928 503 0.00 2019-11-06 17:59:26 2019-11-06 18:11:45 t 1 1 154930 587 0.00 2019-11-06 18:12:10 2019-11-06 18:13:37 t 1 1 154935 551 0.00 2019-11-06 17:45:40 2019-11-06 18:16:16 t 1 1 154942 562 0.00 2019-11-06 18:23:56 2019-11-06 18:24:09 t 1 1 154944 562 0.00 2019-11-06 18:24:27 2019-11-06 18:24:43 t 1 1 154945 445 0.00 2019-11-06 18:16:40 2019-11-06 18:28:11 t 1 1 154947 528 0.00 2019-11-06 18:28:48 2019-11-06 18:28:52 t 1 1 154950 220 0.00 2019-11-06 18:13:48 2019-11-06 18:30:14 t 1 1 154952 220 0.00 2019-11-06 18:30:14 2019-11-06 18:30:46 t 1 1 154953 220 0.00 2019-11-06 18:30:46 2019-11-06 18:31:20 t 1 1 154957 528 0.00 2019-11-06 18:35:31 2019-11-06 18:35:54 t 1 1 154959 599 0.00 2019-11-06 18:33:40 2019-11-06 18:36:34 t 1 1 154961 520 0.00 2019-11-06 18:35:54 2019-11-06 18:36:57 t 1 1 154967 379 0.00 2019-11-06 16:16:01 2019-11-06 18:39:46 t 1 1 154970 562 0.00 2019-11-06 18:45:11 2019-11-06 18:45:20 t 1 1 154971 528 0.00 2019-11-06 18:45:44 2019-11-06 18:46:05 t 1 1 154973 430 0.00 2019-11-06 18:34:38 2019-11-06 18:46:31 t 1 1 154977 430 0.00 2019-11-06 18:46:38 2019-11-06 18:47:56 t 1 1 154980 520 0.00 2019-11-06 18:37:30 2019-11-06 18:49:17 t 1 1 154982 451 0.00 2019-11-06 18:43:50 2019-11-06 18:53:22 t 1 1 154986 520 0.00 2019-11-06 18:49:16 2019-11-06 18:55:57 t 1 1 154988 514 0.00 2019-11-06 18:47:42 2019-11-06 18:56:24 t 1 1 154990 528 0.00 2019-11-06 18:57:45 2019-11-06 18:57:56 t 1 1 154995 562 0.00 2019-11-06 18:59:53 2019-11-06 19:00:30 t 1 1 154997 516 0.00 2019-11-06 18:43:03 2019-11-06 19:01:22 t 1 1 154998 528 0.00 2019-11-06 19:02:53 2019-11-06 19:03:05 t 1 1 155000 621 0.00 2019-11-06 17:42:06 2019-11-06 19:04:27 t 1 1 155004 528 0.00 2019-11-06 19:05:14 2019-11-06 19:05:33 t 1 1 155009 591 0.00 2019-11-06 18:54:44 2019-11-06 19:10:01 t 1 1 155010 599 0.00 2019-11-06 18:59:13 2019-11-06 19:11:22 t 1 1 155013 585 0.00 2019-11-06 18:57:56 2019-11-06 19:12:25 t 1 1 155018 587 0.00 2019-11-06 19:09:42 2019-11-06 19:16:11 t 1 1 155020 578 0.00 2019-11-06 17:14:44 2019-11-06 19:16:51 t 1 1 155026 566 0.00 2019-11-06 19:06:00 2019-11-06 19:20:59 t 1 1 155028 545 0.00 2019-11-06 18:55:46 2019-11-06 19:21:09 t 1 1 155029 514 0.00 2019-11-06 19:04:34 2019-11-06 19:22:06 t 1 1 155031 528 0.00 2019-11-06 19:23:53 2019-11-06 19:24:13 t 1 1 155039 528 0.00 2019-11-06 19:28:51 2019-11-06 19:29:07 t 1 1 155042 528 0.00 2019-11-06 19:29:56 2019-11-06 19:30:16 t 1 1 155043 562 0.00 2019-11-06 19:29:20 2019-11-06 19:31:35 t 1 1 155045 528 0.00 2019-11-06 19:32:19 2019-11-06 19:32:50 t 1 1 155051 528 0.00 2019-11-06 19:33:40 2019-11-06 19:34:03 t 1 1 155057 631 0.00 2019-11-06 19:38:17 2019-11-06 19:38:47 t 1 1 155061 562 0.00 2019-11-06 19:31:47 2019-11-06 19:41:42 t 1 1 155065 528 0.00 2019-11-06 19:42:47 2019-11-06 19:43:15 t 1 1 155068 631 0.00 2019-11-06 19:41:30 2019-11-06 19:44:18 t 1 1 155070 220 0.00 2019-11-06 19:44:45 2019-11-06 19:45:23 t 1 1 155075 528 0.00 2019-11-06 19:48:12 2019-11-06 19:49:05 t 1 1 155078 562 0.00 2019-11-06 19:51:38 2019-11-06 19:52:03 t 1 1 155079 562 0.00 2019-11-06 19:53:48 2019-11-06 19:53:53 t 1 1 155084 220 0.00 2019-11-06 19:54:48 2019-11-06 19:55:26 t 1 1 155089 220 0.00 2019-11-06 19:56:38 2019-11-06 19:57:12 t 1 1 155090 622 0.00 2019-11-06 19:14:08 2019-11-06 19:57:44 t 1 1 155098 422 0.00 2019-11-06 19:59:42 2019-11-06 20:01:55 t 1 1 155099 220 0.00 2019-11-06 20:01:27 2019-11-06 20:02:05 t 1 1 155101 591 0.00 2019-11-06 19:10:01 2019-11-06 20:02:52 t 1 1 155104 587 0.00 2019-11-06 20:03:25 2019-11-06 20:03:34 t 1 1 155105 220 0.00 2019-11-06 20:02:40 2019-11-06 20:04:45 t 1 1 155109 220 0.00 2019-11-06 20:04:45 2019-11-06 20:05:19 t 1 1 155111 220 0.00 2019-11-06 20:05:57 2019-11-06 20:06:30 t 1 1 155120 585 0.00 2019-11-06 20:07:29 2019-11-06 20:11:18 t 1 1 155121 220 0.00 2019-11-06 20:10:49 2019-11-06 20:11:54 t 1 1 155122 220 0.00 2019-11-06 20:11:54 2019-11-06 20:12:30 t 1 1 155123 220 0.00 2019-11-06 20:12:30 2019-11-06 20:13:06 t 1 1 155128 412 0.00 2019-11-06 18:14:54 2019-11-06 20:15:10 t 1 1 155129 220 0.00 2019-11-06 20:14:54 2019-11-06 20:15:26 t 1 1 155133 220 0.00 2019-11-06 20:16:03 2019-11-06 20:16:36 t 1 1 155141 445 0.00 2019-11-06 19:48:45 2019-11-06 20:19:47 t 1 1 155146 220 0.00 2019-11-06 20:21:17 2019-11-06 20:21:54 t 1 1 155147 220 0.00 2019-11-06 20:21:54 2019-11-06 20:22:27 t 1 1 155150 627 0.00 2019-11-06 20:07:33 2019-11-06 20:23:19 t 1 1 155154 627 0.00 2019-11-06 20:23:58 2019-11-06 20:24:15 t 1 1 155155 220 0.00 2019-11-06 20:24:13 2019-11-06 20:24:48 t 1 1 155157 220 0.00 2019-11-06 20:24:48 2019-11-06 20:25:25 t 1 1 155160 627 0.00 2019-11-06 20:26:02 2019-11-06 20:26:20 t 1 1 155161 220 0.00 2019-11-06 20:25:57 2019-11-06 20:26:35 t 1 1 155164 220 0.00 2019-11-06 20:26:35 2019-11-06 20:27:05 t 1 1 155169 220 0.00 2019-11-06 20:27:41 2019-11-06 20:28:16 t 1 1 155171 589 0.00 2019-11-06 20:15:01 2019-11-06 20:28:35 t 1 1 155172 220 0.00 2019-11-06 20:28:15 2019-11-06 20:28:52 t 1 1 155173 627 0.00 2019-11-06 20:28:58 2019-11-06 20:28:58 f 1 1 155175 627 0.00 2019-11-06 20:28:49 2019-11-06 20:29:50 t 1 1 155178 220 0.00 2019-11-06 20:29:25 2019-11-06 20:30:03 t 1 1 155179 220 0.00 2019-11-06 20:30:03 2019-11-06 20:30:37 t 1 1 155180 220 0.00 2019-11-06 20:30:37 2019-11-06 20:31:15 t 1 1 155182 220 0.00 2019-11-06 20:31:15 2019-11-06 20:31:50 t 1 1 155188 220 0.00 2019-11-06 20:33:55 2019-11-06 20:34:30 t 1 1 155190 220 0.00 2019-11-06 20:35:06 2019-11-06 20:35:37 t 1 1 155194 220 0.00 2019-11-06 20:35:37 2019-11-06 20:39:22 t 1 1 155197 220 0.00 2019-11-06 20:39:22 2019-11-06 20:39:54 t 1 1 154912 538 0.00 2019-11-06 18:01:54 2019-11-06 18:03:40 t 1 1 154913 566 0.00 2019-11-06 17:50:52 2019-11-06 18:04:46 t 1 1 154915 220 0.00 2019-11-06 17:38:25 2019-11-06 18:05:03 t 1 1 154918 528 0.00 2019-11-06 18:06:07 2019-11-06 18:06:08 t 1 1 154920 422 0.00 2019-11-06 18:04:48 2019-11-06 18:07:19 t 1 1 154923 587 0.00 2019-11-06 18:07:48 2019-11-06 18:09:32 t 1 1 154925 514 0.00 2019-11-06 18:05:39 2019-11-06 18:10:54 t 1 1 154926 430 0.00 2019-11-06 18:01:45 2019-11-06 18:11:11 t 1 1 154929 528 0.00 2019-11-06 18:12:54 2019-11-06 18:12:56 t 1 1 154932 412 0.00 2019-11-06 15:44:07 2019-11-06 18:14:54 t 1 1 154934 538 0.00 2019-11-06 18:12:17 2019-11-06 18:15:29 t 1 1 154936 445 0.00 2019-11-06 18:09:08 2019-11-06 18:16:28 t 1 1 154937 528 0.00 2019-11-06 18:18:20 2019-11-06 18:18:54 t 1 1 154940 514 0.00 2019-11-06 18:10:54 2019-11-06 18:22:12 t 1 1 154946 528 0.00 2019-11-06 18:28:42 2019-11-06 18:28:43 t 1 1 154951 528 0.00 2019-11-06 18:30:12 2019-11-06 18:30:22 t 1 1 154955 538 0.00 2019-11-06 18:15:29 2019-11-06 18:34:00 t 1 1 154960 566 0.00 2019-11-06 18:04:46 2019-11-06 18:36:52 t 1 1 154962 622 0.00 2019-11-06 18:36:16 2019-11-06 18:37:49 t 1 1 154963 220 0.00 2019-11-06 18:31:50 2019-11-06 18:38:26 t 1 1 154965 503 0.00 2019-11-06 18:35:19 2019-11-06 18:39:22 t 1 1 154968 599 0.00 2019-11-06 18:36:33 2019-11-06 18:41:20 t 1 1 154974 562 0.00 2019-11-06 18:46:56 2019-11-06 18:47:06 t 1 1 154976 591 0.00 2019-11-06 17:56:40 2019-11-06 18:47:43 t 1 1 154979 587 0.00 2019-11-06 18:40:25 2019-11-06 18:48:59 t 1 1 154984 591 0.00 2019-11-06 18:47:43 2019-11-06 18:54:44 t 1 1 154991 585 0.00 2019-11-06 18:51:30 2019-11-06 18:57:56 t 1 1 155007 631 0.00 2019-11-06 19:09:04 2019-11-06 19:09:25 t 1 1 155014 528 0.00 2019-11-06 19:12:02 2019-11-06 19:12:36 t 1 1 155016 631 0.00 2019-11-06 19:14:31 2019-11-06 19:14:51 t 1 1 155017 520 0.00 2019-11-06 19:11:44 2019-11-06 19:15:35 t 1 1 155022 562 0.00 2019-11-06 19:17:24 2019-11-06 19:18:43 t 1 1 155024 631 0.00 2019-11-06 19:19:53 2019-11-06 19:20:14 t 1 1 155025 631 0.00 2019-11-06 19:20:42 2019-11-06 19:20:44 t 1 1 155032 510 0.00 2019-11-06 19:03:06 2019-11-06 19:24:59 t 1 1 155033 589 0.00 2019-11-06 18:49:47 2019-11-06 19:25:00 t 1 1 155034 631 0.00 2019-11-06 19:25:19 2019-11-06 19:25:40 t 1 1 155035 528 0.00 2019-11-06 19:26:19 2019-11-06 19:26:40 t 1 1 155038 615 0.00 2019-11-06 19:24:32 2019-11-06 19:28:24 t 1 1 155041 566 0.00 2019-11-06 19:20:59 2019-11-06 19:29:51 t 1 1 155047 631 0.00 2019-11-06 19:33:11 2019-11-06 19:33:17 t 1 1 155049 585 0.00 2019-11-06 19:25:20 2019-11-06 19:33:34 t 1 1 155050 578 0.00 2019-11-06 19:16:51 2019-11-06 19:33:58 t 1 1 155052 516 0.00 2019-11-06 19:28:54 2019-11-06 19:34:43 t 1 1 155059 528 0.00 2019-11-06 19:40:22 2019-11-06 19:40:31 t 1 1 155060 528 0.00 2019-11-06 19:40:44 2019-11-06 19:41:11 t 1 1 155074 587 0.00 2019-11-06 19:37:36 2019-11-06 19:49:01 t 1 1 155076 510 0.00 2019-11-06 19:24:59 2019-11-06 19:50:58 t 1 1 155077 566 0.00 2019-11-06 19:46:53 2019-11-06 19:51:41 t 1 1 155082 220 0.00 2019-11-06 19:54:16 2019-11-06 19:54:48 t 1 1 155083 528 0.00 2019-11-06 19:54:14 2019-11-06 19:55:00 t 1 1 155085 220 0.00 2019-11-06 19:55:26 2019-11-06 19:56:00 t 1 1 155087 220 0.00 2019-11-06 19:56:00 2019-11-06 19:56:38 t 1 1 155092 422 0.00 2019-11-06 19:55:51 2019-11-06 19:58:45 t 1 1 155095 220 0.00 2019-11-06 19:59:46 2019-11-06 20:00:16 t 1 1 155096 220 0.00 2019-11-06 20:00:15 2019-11-06 20:00:53 t 1 1 155097 220 0.00 2019-11-06 20:00:53 2019-11-06 20:01:27 t 1 1 155103 510 0.00 2019-11-06 19:50:58 2019-11-06 20:03:33 t 1 1 155106 578 0.00 2019-11-06 19:56:47 2019-11-06 20:04:49 t 1 1 155108 597 0.00 2019-11-06 20:01:28 2019-11-06 20:05:19 t 1 1 155112 622 0.00 2019-11-06 19:57:44 2019-11-06 20:06:50 t 1 1 155113 220 0.00 2019-11-06 20:06:29 2019-11-06 20:07:07 t 1 1 155116 220 0.00 2019-11-06 20:08:17 2019-11-06 20:08:57 t 1 1 155117 220 0.00 2019-11-06 20:08:57 2019-11-06 20:09:34 t 1 1 155119 220 0.00 2019-11-06 20:10:12 2019-11-06 20:10:50 t 1 1 155126 220 0.00 2019-11-06 20:14:17 2019-11-06 20:14:54 t 1 1 155130 528 0.00 2019-11-06 20:05:15 2019-11-06 20:15:48 t 1 1 155132 520 0.00 2019-11-06 20:00:44 2019-11-06 20:16:07 t 1 1 155134 566 0.00 2019-11-06 20:06:27 2019-11-06 20:16:46 t 1 1 155136 220 0.00 2019-11-06 20:17:14 2019-11-06 20:17:45 t 1 1 155137 220 0.00 2019-11-06 20:17:45 2019-11-06 20:18:23 t 1 1 155139 220 0.00 2019-11-06 20:18:23 2019-11-06 20:18:55 t 1 1 155142 220 0.00 2019-11-06 20:19:33 2019-11-06 20:20:05 t 1 1 155143 220 0.00 2019-11-06 20:20:04 2019-11-06 20:20:42 t 1 1 155145 621 0.00 2019-11-06 19:04:27 2019-11-06 20:21:19 t 1 1 155148 445 0.00 2019-11-06 20:20:17 2019-11-06 20:22:41 t 1 1 155152 220 0.00 2019-11-06 20:23:05 2019-11-06 20:23:37 t 1 1 155156 627 0.00 2019-11-06 20:25:03 2019-11-06 20:25:16 t 1 1 155162 528 0.00 2019-11-06 20:15:54 2019-11-06 20:26:51 t 1 1 155165 449 0.00 2019-11-06 20:25:47 2019-11-06 20:27:08 t 1 1 155167 220 0.00 2019-11-06 20:27:04 2019-11-06 20:27:41 t 1 1 155170 627 0.00 2019-11-06 20:28:08 2019-11-06 20:28:25 t 1 1 155176 627 0.00 2019-11-06 20:28:35 2019-11-06 20:29:53 t 1 1 155181 538 0.00 2019-11-06 19:57:23 2019-11-06 20:31:28 t 1 1 155183 220 0.00 2019-11-06 20:31:50 2019-11-06 20:32:28 t 1 1 155184 220 0.00 2019-11-06 20:32:27 2019-11-06 20:33:18 t 1 1 155187 516 0.00 2019-11-06 20:24:35 2019-11-06 20:34:23 t 1 1 155189 220 0.00 2019-11-06 20:34:29 2019-11-06 20:35:07 t 1 1 155193 562 0.00 2019-11-06 19:58:48 2019-11-06 20:39:06 t 1 1 155195 627 0.00 2019-11-06 20:32:03 2019-11-06 20:39:28 t 1 1 155196 545 0.00 2019-11-06 20:11:24 2019-11-06 20:39:47 t 1 1 155199 220 0.00 2019-11-06 20:39:54 2019-11-06 20:40:32 t 1 1 155203 220 0.00 2019-11-06 20:41:05 2019-11-06 20:41:43 t 1 1 155209 451 0.00 2019-11-06 20:26:17 2019-11-06 20:43:10 t 1 1 155212 220 0.00 2019-11-06 20:43:26 2019-11-06 20:44:05 t 1 1 155213 220 0.00 2019-11-06 20:44:04 2019-11-06 20:44:38 t 1 1 155217 562 0.00 2019-11-06 20:43:46 2019-11-06 20:45:16 t 1 1 155224 627 0.00 2019-11-06 20:46:23 2019-11-06 20:47:25 t 1 1 155225 220 0.00 2019-11-06 20:46:56 2019-11-06 20:47:33 t 1 1 155228 422 0.00 2019-11-06 20:39:33 2019-11-06 20:48:22 t 1 1 155237 528 0.00 2019-11-06 20:48:11 2019-11-06 20:50:05 t 1 1 155242 220 0.00 2019-11-06 20:51:10 2019-11-06 20:51:38 t 1 1 155244 220 0.00 2019-11-06 20:51:45 2019-11-06 20:52:13 t 1 1 155246 585 0.00 2019-11-06 20:41:52 2019-11-06 20:52:33 t 1 1 155255 566 0.00 2019-11-06 20:39:38 2019-11-06 20:55:27 t 1 1 155260 621 0.00 2019-11-06 20:21:19 2019-11-06 20:56:48 t 1 1 155261 220 0.00 2019-11-06 20:56:23 2019-11-06 20:57:01 t 1 1 155107 422 0.00 2019-11-06 20:04:27 2019-11-06 20:05:11 t 1 1 155110 220 0.00 2019-11-06 20:05:19 2019-11-06 20:05:57 t 1 1 155114 220 0.00 2019-11-06 20:07:06 2019-11-06 20:07:40 t 1 1 155115 220 0.00 2019-11-06 20:07:40 2019-11-06 20:08:18 t 1 1 155118 220 0.00 2019-11-06 20:09:34 2019-11-06 20:10:12 t 1 1 155124 220 0.00 2019-11-06 20:13:06 2019-11-06 20:13:44 t 1 1 155125 220 0.00 2019-11-06 20:13:44 2019-11-06 20:14:17 t 1 1 155127 589 0.00 2019-11-06 19:48:29 2019-11-06 20:15:01 t 1 1 155131 220 0.00 2019-11-06 20:15:25 2019-11-06 20:16:03 t 1 1 155135 220 0.00 2019-11-06 20:16:36 2019-11-06 20:17:14 t 1 1 155138 587 0.00 2019-11-06 20:03:56 2019-11-06 20:18:47 t 1 1 155140 220 0.00 2019-11-06 20:18:55 2019-11-06 20:19:33 t 1 1 155144 220 0.00 2019-11-06 20:20:42 2019-11-06 20:21:17 t 1 1 155149 220 0.00 2019-11-06 20:22:27 2019-11-06 20:23:05 t 1 1 155151 627 0.00 2019-11-06 20:23:24 2019-11-06 20:23:28 t 1 1 155153 220 0.00 2019-11-06 20:23:37 2019-11-06 20:24:14 t 1 1 155158 520 0.00 2019-11-06 20:16:06 2019-11-06 20:25:44 t 1 1 155159 220 0.00 2019-11-06 20:25:25 2019-11-06 20:25:57 t 1 1 155163 619 0.00 2019-11-06 20:21:16 2019-11-06 20:26:56 t 1 1 155166 627 0.00 2019-11-06 20:27:04 2019-11-06 20:27:19 t 1 1 155168 627 0.00 2019-11-06 20:26:32 2019-11-06 20:27:53 t 1 1 155174 220 0.00 2019-11-06 20:28:52 2019-11-06 20:29:26 t 1 1 155177 566 0.00 2019-11-06 20:16:46 2019-11-06 20:29:57 t 1 1 155185 587 0.00 2019-11-06 20:19:03 2019-11-06 20:33:20 t 1 1 155186 220 0.00 2019-11-06 20:33:18 2019-11-06 20:33:55 t 1 1 155191 520 0.00 2019-11-06 20:25:43 2019-11-06 20:37:44 t 1 1 155192 622 0.00 2019-11-06 20:36:22 2019-11-06 20:38:25 t 1 1 155198 627 0.00 2019-11-06 20:40:11 2019-11-06 20:40:29 t 1 1 155202 627 0.00 2019-11-06 20:41:13 2019-11-06 20:41:31 t 1 1 155204 520 0.00 2019-11-06 20:37:44 2019-11-06 20:41:47 t 1 1 155205 562 0.00 2019-11-06 20:40:22 2019-11-06 20:42:06 t 1 1 155206 220 0.00 2019-11-06 20:41:43 2019-11-06 20:42:15 t 1 1 155208 220 0.00 2019-11-06 20:42:15 2019-11-06 20:42:52 t 1 1 155210 220 0.00 2019-11-06 20:42:52 2019-11-06 20:43:26 t 1 1 155214 627 0.00 2019-11-06 20:44:16 2019-11-06 20:44:40 t 1 1 155215 627 0.00 2019-11-06 20:44:46 2019-11-06 20:44:54 t 1 1 155219 220 0.00 2019-11-06 20:45:14 2019-11-06 20:45:46 t 1 1 155221 220 0.00 2019-11-06 20:46:23 2019-11-06 20:46:56 t 1 1 155222 625 0.00 2019-11-06 17:33:32 2019-11-06 20:47:15 t 1 1 155226 627 0.00 2019-11-06 20:47:33 2019-11-06 20:47:45 t 1 1 155227 220 0.00 2019-11-06 20:47:33 2019-11-06 20:48:05 t 1 1 155230 451 0.00 2019-11-06 20:43:10 2019-11-06 20:48:38 t 1 1 155232 220 0.00 2019-11-06 20:48:04 2019-11-06 20:48:43 t 1 1 155233 220 0.00 2019-11-06 20:48:43 2019-11-06 20:49:16 t 1 1 155235 220 0.00 2019-11-06 20:49:16 2019-11-06 20:49:53 t 1 1 155239 220 0.00 2019-11-06 20:50:24 2019-11-06 20:50:35 t 1 1 155241 220 0.00 2019-11-06 20:50:59 2019-11-06 20:51:10 t 1 1 155248 220 0.00 2019-11-06 20:52:48 2019-11-06 20:52:54 t 1 1 155249 220 0.00 2019-11-06 20:52:54 2019-11-06 20:53:26 t 1 1 155250 220 0.00 2019-11-06 20:53:26 2019-11-06 20:54:01 t 1 1 155252 220 0.00 2019-11-06 20:54:01 2019-11-06 20:54:39 t 1 1 155259 220 0.00 2019-11-06 20:55:50 2019-11-06 20:56:24 t 1 1 155262 538 0.00 2019-11-06 20:55:10 2019-11-06 20:57:07 t 1 1 155263 220 0.00 2019-11-06 20:57:01 2019-11-06 20:57:35 t 1 1 155270 220 0.00 2019-11-06 20:59:54 2019-11-06 21:00:33 t 1 1 155271 220 0.00 2019-11-06 21:00:33 2019-11-06 21:01:04 t 1 1 155273 591 0.00 2019-11-06 20:58:39 2019-11-06 21:01:20 t 1 1 155275 220 0.00 2019-11-06 21:01:03 2019-11-06 21:01:42 t 1 1 155276 220 0.00 2019-11-06 21:01:41 2019-11-06 21:02:14 t 1 1 155283 445 0.00 2019-11-06 20:22:59 2019-11-06 21:05:22 t 1 1 155290 556 0.00 2019-11-06 20:04:42 2019-11-06 21:09:49 t 1 1 155296 510 0.00 2019-11-06 20:03:33 2019-11-06 21:19:57 t 1 1 155298 587 0.00 2019-11-06 21:12:03 2019-11-06 21:22:23 t 1 1 155299 562 0.00 2019-11-06 21:19:38 2019-11-06 21:24:34 t 1 1 155303 585 0.00 2019-11-06 21:12:36 2019-11-06 21:30:45 t 1 1 155308 408 0.00 2019-11-06 21:31:41 2019-11-06 21:36:12 t 1 1 155312 591 0.00 2019-11-06 21:34:51 2019-11-06 21:37:49 t 1 1 155314 625 0.00 2019-11-06 21:22:22 2019-11-06 21:40:25 t 1 1 155316 585 0.00 2019-11-06 21:32:18 2019-11-06 21:40:56 t 1 1 155319 538 0.00 2019-11-06 21:39:23 2019-11-06 21:41:41 t 1 1 155320 595 0.00 2019-11-06 21:41:56 2019-11-06 21:42:09 t 1 1 155322 408 0.00 2019-11-06 21:36:12 2019-11-06 21:43:25 t 1 1 155326 621 0.00 2019-11-06 21:06:18 2019-11-06 21:46:24 t 1 1 155329 408 0.00 2019-11-06 21:43:25 2019-11-06 21:47:10 t 1 1 155334 545 0.00 2019-11-06 21:38:51 2019-11-06 21:53:40 t 1 1 155340 595 0.00 2019-11-06 21:57:00 2019-11-06 21:57:17 t 1 1 155344 408 0.00 2019-11-06 22:00:27 2019-11-06 22:02:24 t 1 1 155350 562 0.00 2019-11-06 21:57:06 2019-11-06 22:05:20 t 1 1 155352 623 0.00 2019-11-06 22:05:05 2019-11-06 22:06:09 t 1 1 155356 623 0.00 2019-11-06 22:07:51 2019-11-06 22:08:24 t 1 1 155357 595 0.00 2019-11-06 22:08:25 2019-11-06 22:08:40 t 1 1 155359 585 0.00 2019-11-06 21:57:18 2019-11-06 22:10:31 t 1 1 155361 619 0.00 2019-11-06 22:04:37 2019-11-06 22:11:43 t 1 1 155363 578 0.00 2019-11-06 20:55:44 2019-11-06 22:12:01 t 1 1 155365 562 0.00 2019-11-06 22:13:44 2019-11-06 22:15:39 t 1 1 155370 623 0.00 2019-11-06 22:17:38 2019-11-06 22:17:39 t 1 1 155377 622 0.00 2019-11-06 22:13:01 2019-11-06 22:24:29 t 1 1 155379 595 0.00 2019-11-06 22:25:04 2019-11-06 22:25:12 t 1 1 155381 622 0.00 2019-11-06 22:23:34 2019-11-06 22:26:03 t 1 1 155384 408 0.00 2019-11-06 22:24:39 2019-11-06 22:27:57 t 1 1 155386 623 0.00 2019-11-06 22:29:52 2019-11-06 22:30:02 t 1 1 155387 623 0.00 2019-11-06 22:30:13 2019-11-06 22:30:16 t 1 1 155391 566 0.00 2019-11-06 22:23:10 2019-11-06 22:32:09 t 1 1 155395 623 0.00 2019-11-06 22:34:03 2019-11-06 22:34:15 t 1 1 155397 623 0.00 2019-11-06 22:37:06 2019-11-06 22:37:08 t 1 1 155398 597 0.00 2019-11-06 22:33:32 2019-11-06 22:39:07 t 1 1 155399 623 0.00 2019-11-06 22:39:14 2019-11-06 22:39:17 t 1 1 155408 619 0.00 2019-11-06 22:44:11 2019-11-06 22:46:58 t 1 1 155413 623 0.00 2019-11-06 22:49:21 2019-11-06 22:49:23 t 1 1 155415 220 0.00 2019-11-06 22:37:26 2019-11-06 22:50:21 t 1 1 155416 220 0.00 2019-11-06 22:50:21 2019-11-06 22:50:55 t 1 1 155417 595 0.00 2019-11-06 22:32:44 2019-11-06 22:51:02 t 1 1 155419 220 0.00 2019-11-06 22:50:54 2019-11-06 22:51:33 t 1 1 155424 566 0.00 2019-11-06 22:45:20 2019-11-06 22:53:47 t 1 1 155427 587 0.00 2019-11-06 22:48:35 2019-11-06 22:55:35 t 1 1 155433 587 0.00 2019-11-06 22:57:58 2019-11-06 23:00:18 t 1 1 155435 566 0.00 2019-11-06 22:53:47 2019-11-06 23:02:09 t 1 1 155200 627 0.00 2019-11-06 20:40:35 2019-11-06 20:40:43 t 1 1 155201 220 0.00 2019-11-06 20:40:31 2019-11-06 20:41:05 t 1 1 155207 627 0.00 2019-11-06 20:42:13 2019-11-06 20:42:34 t 1 1 155211 627 0.00 2019-11-06 20:43:16 2019-11-06 20:43:34 t 1 1 155216 220 0.00 2019-11-06 20:44:38 2019-11-06 20:45:14 t 1 1 155218 627 0.00 2019-11-06 20:45:21 2019-11-06 20:45:39 t 1 1 155220 220 0.00 2019-11-06 20:45:45 2019-11-06 20:46:23 t 1 1 155223 538 0.00 2019-11-06 20:30:33 2019-11-06 20:47:17 t 1 1 155229 627 0.00 2019-11-06 20:48:28 2019-11-06 20:48:28 t 1 1 155231 627 0.00 2019-11-06 20:48:28 2019-11-06 20:48:43 t 1 1 155234 622 0.00 2019-11-06 20:38:25 2019-11-06 20:49:47 t 1 1 155236 220 0.00 2019-11-06 20:49:53 2019-11-06 20:49:58 t 1 1 155238 220 0.00 2019-11-06 20:49:57 2019-11-06 20:50:24 t 1 1 155240 220 0.00 2019-11-06 20:50:35 2019-11-06 20:50:59 t 1 1 155243 220 0.00 2019-11-06 20:51:37 2019-11-06 20:51:45 t 1 1 155245 220 0.00 2019-11-06 20:52:13 2019-11-06 20:52:23 t 1 1 155247 220 0.00 2019-11-06 20:52:23 2019-11-06 20:52:48 t 1 1 155251 591 0.00 2019-11-06 20:50:44 2019-11-06 20:54:32 t 1 1 155253 520 0.00 2019-11-06 20:44:44 2019-11-06 20:55:08 t 1 1 155254 220 0.00 2019-11-06 20:54:39 2019-11-06 20:55:13 t 1 1 155256 578 0.00 2019-11-06 20:04:49 2019-11-06 20:55:44 t 1 1 155257 220 0.00 2019-11-06 20:55:13 2019-11-06 20:55:51 t 1 1 155258 520 0.00 2019-11-06 20:55:07 2019-11-06 20:56:16 t 1 1 155264 587 0.00 2019-11-06 20:33:20 2019-11-06 20:57:36 t 1 1 155268 220 0.00 2019-11-06 20:59:20 2019-11-06 20:59:54 t 1 1 155269 619 0.00 2019-11-06 20:56:29 2019-11-06 21:00:31 t 1 1 155272 625 0.00 2019-11-06 20:51:55 2019-11-06 21:01:04 t 1 1 155274 587 0.00 2019-11-06 20:57:36 2019-11-06 21:01:35 t 1 1 155278 622 0.00 2019-11-06 20:57:09 2019-11-06 21:03:02 t 1 1 155281 220 0.00 2019-11-06 21:04:08 2019-11-06 21:04:44 t 1 1 155285 566 0.00 2019-11-06 20:55:27 2019-11-06 21:06:02 t 1 1 155286 220 0.00 2019-11-06 21:05:53 2019-11-06 21:06:28 t 1 1 155288 220 0.00 2019-11-06 21:07:05 2019-11-06 21:07:36 t 1 1 155291 585 0.00 2019-11-06 21:06:52 2019-11-06 21:12:36 t 1 1 155292 591 0.00 2019-11-06 21:10:24 2019-11-06 21:13:20 t 1 1 155293 220 0.00 2019-11-06 21:07:36 2019-11-06 21:15:59 t 1 1 155295 562 0.00 2019-11-06 21:12:06 2019-11-06 21:19:35 t 1 1 155297 625 0.00 2019-11-06 21:01:04 2019-11-06 21:22:22 t 1 1 155300 510 0.00 2019-11-06 21:19:57 2019-11-06 21:25:36 t 1 1 155302 510 0.00 2019-11-06 21:25:36 2019-11-06 21:29:28 t 1 1 155304 551 0.00 2019-11-06 21:27:21 2019-11-06 21:30:51 t 1 1 155305 587 0.00 2019-11-06 21:29:31 2019-11-06 21:33:43 t 1 1 155306 556 0.00 2019-11-06 21:09:49 2019-11-06 21:34:41 t 1 1 155321 619 0.00 2019-11-06 21:36:39 2019-11-06 21:42:46 t 1 1 155323 512 0.00 2019-11-06 21:39:32 2019-11-06 21:44:45 t 1 1 155328 595 0.00 2019-11-06 21:46:43 2019-11-06 21:46:48 t 1 1 155330 566 0.00 2019-11-06 21:40:58 2019-11-06 21:50:40 t 1 1 155333 595 0.00 2019-11-06 21:51:48 2019-11-06 21:51:55 t 1 1 155335 595 0.00 2019-11-06 21:53:30 2019-11-06 21:53:40 t 1 1 155336 595 0.00 2019-11-06 21:53:50 2019-11-06 21:54:15 t 1 1 155337 556 0.00 2019-11-06 21:34:41 2019-11-06 21:55:32 t 1 1 155341 512 0.00 2019-11-06 21:57:47 2019-11-06 21:59:47 t 1 1 155342 566 0.00 2019-11-06 21:52:13 2019-11-06 22:00:13 t 1 1 155345 595 0.00 2019-11-06 22:02:15 2019-11-06 22:02:27 t 1 1 155346 595 0.00 2019-11-06 22:02:37 2019-11-06 22:03:00 t 1 1 155347 408 0.00 2019-11-06 22:02:21 2019-11-06 22:03:23 t 1 1 155351 516 0.00 2019-11-06 21:59:37 2019-11-06 22:05:52 t 1 1 155354 566 0.00 2019-11-06 22:00:13 2019-11-06 22:08:01 t 1 1 155362 562 0.00 2019-11-06 22:10:02 2019-11-06 22:11:57 t 1 1 155366 520 0.00 2019-11-06 21:46:39 2019-11-06 22:16:31 t 1 1 155368 623 0.00 2019-11-06 22:11:56 2019-11-06 22:17:03 t 1 1 155369 623 0.00 2019-11-06 22:17:32 2019-11-06 22:17:32 t 1 1 155373 607 0.00 2019-11-06 22:20:22 2019-11-06 22:20:22 f 1 1 155376 595 0.00 2019-11-06 22:13:20 2019-11-06 22:23:37 t 1 1 155378 408 0.00 2019-11-06 22:20:39 2019-11-06 22:24:39 t 1 1 155380 585 0.00 2019-11-06 22:15:52 2019-11-06 22:25:21 t 1 1 155383 623 0.00 2019-11-06 22:20:08 2019-11-06 22:27:06 t 1 1 155385 623 0.00 2019-11-06 22:28:12 2019-11-06 22:28:59 t 1 1 155388 595 0.00 2019-11-06 22:30:09 2019-11-06 22:30:16 t 1 1 155394 623 0.00 2019-11-06 22:32:48 2019-11-06 22:33:58 t 1 1 155396 566 0.00 2019-11-06 22:32:09 2019-11-06 22:34:41 t 1 1 155400 516 0.00 2019-11-06 22:35:41 2019-11-06 22:39:29 t 1 1 155406 623 0.00 2019-11-06 22:44:19 2019-11-06 22:44:20 t 1 1 155407 566 0.00 2019-11-06 22:37:38 2019-11-06 22:45:20 t 1 1 155409 585 0.00 2019-11-06 22:34:50 2019-11-06 22:48:10 t 1 1 155412 623 0.00 2019-11-06 22:49:12 2019-11-06 22:49:16 t 1 1 155414 607 0.00 2019-11-06 22:50:13 2019-11-06 22:50:13 f 1 1 155418 607 0.00 2019-11-06 22:29:44 2019-11-06 22:51:08 t 1 1 155420 627 0.00 2019-11-06 22:42:02 2019-11-06 22:51:45 t 1 1 155421 220 0.00 2019-11-06 22:51:33 2019-11-06 22:52:07 t 1 1 155422 595 0.00 2019-11-06 22:52:36 2019-11-06 22:52:52 t 1 1 155423 595 0.00 2019-11-06 22:53:05 2019-11-06 22:53:26 t 1 1 155425 623 0.00 2019-11-06 22:54:27 2019-11-06 22:54:37 t 1 1 155426 578 0.00 2019-11-06 22:12:01 2019-11-06 22:55:24 t 1 1 155429 587 0.00 2019-11-06 22:55:35 2019-11-06 22:57:54 t 1 1 155431 619 0.00 2019-11-06 22:50:48 2019-11-06 23:00:16 t 1 1 155437 625 0.00 2019-11-06 22:14:06 2019-11-06 23:03:31 t 1 1 155452 587 0.00 2019-11-06 23:06:01 2019-11-06 23:17:17 t 1 1 155453 623 0.00 2019-11-06 23:17:20 2019-11-06 23:17:47 t 1 1 155457 609 0.00 2019-11-06 23:07:32 2019-11-06 23:19:04 t 1 1 155459 623 0.00 2019-11-06 23:18:18 2019-11-06 23:19:54 t 1 1 155464 510 0.00 2019-11-06 21:35:26 2019-11-06 23:25:44 t 1 1 155468 587 0.00 2019-11-06 23:22:18 2019-11-06 23:28:51 t 1 1 155469 622 0.00 2019-11-06 23:26:40 2019-11-06 23:29:01 t 1 1 155474 609 0.00 2019-11-06 23:19:04 2019-11-06 23:33:03 t 1 1 155479 562 0.00 2019-11-06 23:39:04 2019-11-06 23:39:45 t 1 1 155481 623 0.00 2019-11-06 23:40:12 2019-11-06 23:40:15 t 1 1 155483 623 0.00 2019-11-06 23:40:49 2019-11-06 23:40:49 t 1 1 155485 585 0.00 2019-11-06 23:34:52 2019-11-06 23:42:02 t 1 1 155492 485 0.00 2019-11-06 23:47:34 2019-11-06 23:47:57 t 1 1 155499 585 0.00 2019-11-06 23:42:01 2019-11-06 23:54:10 t 1 1 155501 623 0.00 2019-11-06 23:54:26 2019-11-06 23:55:04 t 1 1 155502 607 0.00 2019-11-06 23:13:42 2019-11-06 23:56:52 t 1 1 155503 545 0.00 2019-11-06 23:55:17 2019-11-06 23:57:18 t 1 1 155509 562 0.00 2019-11-07 00:00:49 2019-11-07 00:01:15 t 1 1 155513 622 0.00 2019-11-06 23:39:06 2019-11-07 00:08:34 t 1 1 155514 623 0.00 2019-11-07 00:09:34 2019-11-07 00:09:37 t 1 1 155265 220 0.00 2019-11-06 20:57:35 2019-11-06 20:58:12 t 1 1 155266 220 0.00 2019-11-06 20:58:12 2019-11-06 20:58:43 t 1 1 155267 220 0.00 2019-11-06 20:58:43 2019-11-06 20:59:21 t 1 1 155277 220 0.00 2019-11-06 21:02:13 2019-11-06 21:02:51 t 1 1 155279 520 0.00 2019-11-06 20:56:15 2019-11-06 21:03:20 t 1 1 155280 220 0.00 2019-11-06 21:02:51 2019-11-06 21:04:08 t 1 1 155282 220 0.00 2019-11-06 21:04:44 2019-11-06 21:05:15 t 1 1 155284 220 0.00 2019-11-06 21:05:15 2019-11-06 21:05:53 t 1 1 155287 220 0.00 2019-11-06 21:06:27 2019-11-06 21:07:06 t 1 1 155289 562 0.00 2019-11-06 20:47:00 2019-11-06 21:09:31 t 1 1 155294 622 0.00 2019-11-06 21:12:04 2019-11-06 21:19:23 t 1 1 155301 551 0.00 2019-11-06 21:19:34 2019-11-06 21:27:21 t 1 1 155307 510 0.00 2019-11-06 21:29:28 2019-11-06 21:35:26 t 1 1 155309 595 0.00 2019-11-06 21:27:42 2019-11-06 21:36:27 t 1 1 155310 595 0.00 2019-11-06 21:36:39 2019-11-06 21:36:40 t 1 1 155311 595 0.00 2019-11-06 21:36:59 2019-11-06 21:37:15 t 1 1 155313 538 0.00 2019-11-06 21:08:17 2019-11-06 21:39:23 t 1 1 155315 622 0.00 2019-11-06 21:21:24 2019-11-06 21:40:36 t 1 1 155317 566 0.00 2019-11-06 21:14:32 2019-11-06 21:40:58 t 1 1 155318 595 0.00 2019-11-06 21:41:03 2019-11-06 21:41:34 t 1 1 155324 562 0.00 2019-11-06 21:25:08 2019-11-06 21:45:20 t 1 1 155325 622 0.00 2019-11-06 21:45:15 2019-11-06 21:46:24 t 1 1 155327 520 0.00 2019-11-06 21:35:37 2019-11-06 21:46:40 t 1 1 155331 408 0.00 2019-11-06 21:47:10 2019-11-06 21:50:45 t 1 1 155332 585 0.00 2019-11-06 21:49:27 2019-11-06 21:51:31 t 1 1 155338 512 0.00 2019-11-06 21:44:44 2019-11-06 21:55:52 t 1 1 155339 562 0.00 2019-11-06 21:45:20 2019-11-06 21:57:06 t 1 1 155343 408 0.00 2019-11-06 21:50:45 2019-11-06 22:01:21 t 1 1 155348 595 0.00 2019-11-06 22:03:08 2019-11-06 22:03:30 t 1 1 155349 623 0.00 2019-11-06 22:03:16 2019-11-06 22:04:46 t 1 1 155353 625 0.00 2019-11-06 21:40:25 2019-11-06 22:07:21 t 1 1 155355 595 0.00 2019-11-06 22:07:49 2019-11-06 22:08:08 t 1 1 155358 597 0.00 2019-11-06 22:08:30 2019-11-06 22:09:12 t 1 1 155360 625 0.00 2019-11-06 22:07:21 2019-11-06 22:11:27 t 1 1 155364 595 0.00 2019-11-06 22:11:54 2019-11-06 22:12:37 t 1 1 155367 591 0.00 2019-11-06 22:11:47 2019-11-06 22:16:36 t 1 1 155371 562 0.00 2019-11-06 22:16:17 2019-11-06 22:18:23 t 1 1 155372 623 0.00 2019-11-06 22:19:11 2019-11-06 22:19:25 t 1 1 155374 408 0.00 2019-11-06 22:15:22 2019-11-06 22:20:39 t 1 1 155375 607 0.00 2019-11-06 22:17:30 2019-11-06 22:21:17 t 1 1 155382 379 0.00 2019-11-06 18:40:06 2019-11-06 22:27:02 t 1 1 155389 623 0.00 2019-11-06 22:31:29 2019-11-06 22:31:45 t 1 1 155390 623 0.00 2019-11-06 22:32:04 2019-11-06 22:32:08 t 1 1 155392 587 0.00 2019-11-06 22:30:19 2019-11-06 22:32:18 t 1 1 155393 587 0.00 2019-11-06 22:32:32 2019-11-06 22:33:38 t 1 1 155401 587 0.00 2019-11-06 22:39:16 2019-11-06 22:39:44 t 1 1 155402 623 0.00 2019-11-06 22:41:50 2019-11-06 22:41:52 t 1 1 155403 623 0.00 2019-11-06 22:41:57 2019-11-06 22:41:58 t 1 1 155404 621 0.00 2019-11-06 21:56:33 2019-11-06 22:43:36 t 1 1 155405 587 0.00 2019-11-06 22:40:07 2019-11-06 22:44:16 t 1 1 155410 587 0.00 2019-11-06 22:47:21 2019-11-06 22:48:25 t 1 1 155411 631 0.00 2019-11-06 22:46:33 2019-11-06 22:49:09 t 1 1 155428 595 0.00 2019-11-06 22:53:38 2019-11-06 22:57:06 t 1 1 155430 562 0.00 2019-11-06 22:57:43 2019-11-06 22:58:03 t 1 1 155432 623 0.00 2019-11-06 22:59:40 2019-11-06 23:00:17 t 1 1 155434 220 0.00 2019-11-06 22:52:06 2019-11-06 23:02:00 t 1 1 155436 587 0.00 2019-11-06 23:00:34 2019-11-06 23:02:57 t 1 1 155438 619 0.00 2019-11-06 23:01:47 2019-11-06 23:04:26 t 1 1 155440 623 0.00 2019-11-06 23:04:48 2019-11-06 23:04:50 t 1 1 155441 587 0.00 2019-11-06 23:03:34 2019-11-06 23:05:25 t 1 1 155443 623 0.00 2019-11-06 23:09:46 2019-11-06 23:09:48 t 1 1 155444 562 0.00 2019-11-06 23:08:58 2019-11-06 23:10:00 t 1 1 155446 622 0.00 2019-11-06 22:52:18 2019-11-06 23:12:24 t 1 1 155447 585 0.00 2019-11-06 23:09:38 2019-11-06 23:13:22 t 1 1 155449 607 0.00 2019-11-06 22:56:27 2019-11-06 23:13:42 t 1 1 155450 623 0.00 2019-11-06 23:10:59 2019-11-06 23:14:52 t 1 1 155451 623 0.00 2019-11-06 23:15:33 2019-11-06 23:16:04 t 1 1 155454 562 0.00 2019-11-06 23:17:30 2019-11-06 23:17:50 t 1 1 155462 622 0.00 2019-11-06 23:12:38 2019-11-06 23:25:21 t 1 1 155466 562 0.00 2019-11-06 23:28:14 2019-11-06 23:28:39 t 1 1 155470 562 0.00 2019-11-06 23:29:01 2019-11-06 23:29:18 t 1 1 155473 623 0.00 2019-11-06 23:31:33 2019-11-06 23:31:33 t 1 1 155476 623 0.00 2019-11-06 23:35:47 2019-11-06 23:36:54 t 1 1 155477 512 0.00 2019-11-06 22:50:58 2019-11-06 23:38:27 t 1 1 155480 623 0.00 2019-11-06 23:39:57 2019-11-06 23:40:01 t 1 1 155482 503 0.00 2019-11-06 23:33:37 2019-11-06 23:40:22 t 1 1 155484 609 0.00 2019-11-06 23:33:03 2019-11-06 23:40:56 t 1 1 155486 587 0.00 2019-11-06 23:31:55 2019-11-06 23:42:34 t 1 1 155487 609 0.00 2019-11-06 23:40:56 2019-11-06 23:43:17 t 1 1 155491 566 0.00 2019-11-06 23:28:15 2019-11-06 23:46:24 t 1 1 155495 562 0.00 2019-11-06 23:50:11 2019-11-06 23:50:29 t 1 1 155497 623 0.00 2019-11-06 23:50:54 2019-11-06 23:50:56 t 1 1 155498 587 0.00 2019-11-06 23:48:43 2019-11-06 23:51:46 t 1 1 155504 516 0.00 2019-11-06 23:54:04 2019-11-06 23:57:19 t 1 1 155505 481 0.00 2019-11-06 23:48:26 2019-11-06 23:57:58 t 1 1 155508 591 0.00 2019-11-06 23:58:12 2019-11-07 00:00:48 t 1 1 155511 623 0.00 2019-11-07 00:04:29 2019-11-07 00:04:32 t 1 1 155512 609 0.00 2019-11-07 00:00:33 2019-11-07 00:05:15 t 1 1 155515 609 0.00 2019-11-07 00:05:15 2019-11-07 00:11:06 t 1 1 155518 609 0.00 2019-11-07 00:11:06 2019-11-07 00:16:56 t 1 1 155527 562 0.00 2019-11-07 00:30:09 2019-11-07 00:30:31 t 1 1 155529 623 0.00 2019-11-07 00:30:52 2019-11-07 00:30:53 t 1 1 155530 623 0.00 2019-11-07 00:31:15 2019-11-07 00:31:17 t 1 1 155536 585 0.00 2019-11-07 00:35:52 2019-11-07 00:37:43 t 1 1 155538 623 0.00 2019-11-07 00:39:22 2019-11-07 00:39:34 t 1 1 155540 623 0.00 2019-11-07 00:40:53 2019-11-07 00:40:56 t 1 1 155545 562 0.00 2019-11-07 00:48:06 2019-11-07 00:48:27 t 1 1 155554 623 0.00 2019-11-07 01:01:13 2019-11-07 01:01:16 t 1 1 155556 623 0.00 2019-11-07 01:06:19 2019-11-07 01:06:28 t 1 1 155558 621 0.00 2019-11-07 00:57:26 2019-11-07 01:09:37 t 1 1 155559 623 0.00 2019-11-07 01:11:30 2019-11-07 01:11:33 t 1 1 155566 587 0.00 2019-11-07 01:06:18 2019-11-07 01:17:51 t 1 1 155567 623 0.00 2019-11-07 01:21:46 2019-11-07 01:21:49 t 1 1 155569 422 0.00 2019-11-07 01:21:25 2019-11-07 01:24:39 t 1 1 155570 587 0.00 2019-11-07 01:19:16 2019-11-07 01:25:27 t 1 1 155571 621 0.00 2019-11-07 01:22:23 2019-11-07 01:26:43 t 1 1 155572 623 0.00 2019-11-07 01:26:50 2019-11-07 01:26:51 t 1 1 155439 585 0.00 2019-11-06 22:57:58 2019-11-06 23:04:36 t 1 1 155442 562 0.00 2019-11-06 23:08:26 2019-11-06 23:08:52 t 1 1 155445 545 0.00 2019-11-06 22:38:15 2019-11-06 23:10:30 t 1 1 155448 566 0.00 2019-11-06 23:02:09 2019-11-06 23:13:40 t 1 1 155455 621 0.00 2019-11-06 22:47:33 2019-11-06 23:17:52 t 1 1 155456 422 0.00 2019-11-06 23:16:02 2019-11-06 23:19:03 t 1 1 155458 514 0.00 2019-11-06 22:27:50 2019-11-06 23:19:26 t 1 1 155460 587 0.00 2019-11-06 23:18:19 2019-11-06 23:22:14 t 1 1 155461 545 0.00 2019-11-06 23:10:30 2019-11-06 23:23:38 t 1 1 155463 622 0.00 2019-11-06 23:24:31 2019-11-06 23:25:34 t 1 1 155465 566 0.00 2019-11-06 23:13:40 2019-11-06 23:28:15 t 1 1 155467 623 0.00 2019-11-06 23:18:24 2019-11-06 23:28:46 t 1 1 155471 623 0.00 2019-11-06 23:30:34 2019-11-06 23:30:44 t 1 1 155472 623 0.00 2019-11-06 23:31:04 2019-11-06 23:31:25 t 1 1 155475 585 0.00 2019-11-06 23:26:31 2019-11-06 23:34:53 t 1 1 155478 622 0.00 2019-11-06 23:32:34 2019-11-06 23:38:51 t 1 1 155488 379 0.00 2019-11-06 22:27:02 2019-11-06 23:44:40 t 1 1 155489 609 0.00 2019-11-06 23:43:17 2019-11-06 23:45:46 t 1 1 155490 623 0.00 2019-11-06 23:45:51 2019-11-06 23:45:51 t 1 1 155493 587 0.00 2019-11-06 23:42:34 2019-11-06 23:48:43 t 1 1 155494 609 0.00 2019-11-06 23:45:46 2019-11-06 23:49:17 t 1 1 155496 485 0.00 2019-11-06 23:47:57 2019-11-06 23:50:53 t 1 1 155500 609 0.00 2019-11-06 23:49:17 2019-11-06 23:54:31 t 1 1 155506 623 0.00 2019-11-06 23:59:21 2019-11-06 23:59:52 t 1 1 155507 609 0.00 2019-11-06 23:54:31 2019-11-07 00:00:33 t 1 1 155510 587 0.00 2019-11-06 23:51:46 2019-11-07 00:02:35 t 1 1 155516 562 0.00 2019-11-07 00:11:33 2019-11-07 00:12:09 t 1 1 155519 538 0.00 2019-11-06 21:58:21 2019-11-07 00:18:15 t 1 1 155521 623 0.00 2019-11-07 00:19:50 2019-11-07 00:19:57 t 1 1 155522 451 0.00 2019-11-06 23:57:52 2019-11-07 00:21:23 t 1 1 155524 623 0.00 2019-11-07 00:24:53 2019-11-07 00:25:01 t 1 1 155533 623 0.00 2019-11-07 00:35:46 2019-11-07 00:35:48 t 1 1 155541 562 0.00 2019-11-07 00:40:53 2019-11-07 00:41:19 t 1 1 155542 621 0.00 2019-11-07 00:34:28 2019-11-07 00:43:28 t 1 1 155543 512 0.00 2019-11-07 00:28:49 2019-11-07 00:43:35 t 1 1 155544 623 0.00 2019-11-07 00:46:00 2019-11-07 00:46:02 t 1 1 155547 621 0.00 2019-11-07 00:43:28 2019-11-07 00:51:04 t 1 1 155549 422 0.00 2019-11-07 00:50:26 2019-11-07 00:51:41 t 1 1 155551 623 0.00 2019-11-07 00:56:07 2019-11-07 00:56:09 t 1 1 155555 607 0.00 2019-11-06 23:56:52 2019-11-07 01:06:18 t 1 1 155560 622 0.00 2019-11-07 01:07:23 2019-11-07 01:11:59 t 1 1 155562 621 0.00 2019-11-07 01:09:37 2019-11-07 01:16:41 t 1 1 155564 625 0.00 2019-11-06 23:03:31 2019-11-07 01:16:54 t 1 1 155565 562 0.00 2019-11-07 01:17:16 2019-11-07 01:17:38 t 1 1 155568 621 0.00 2019-11-07 01:16:41 2019-11-07 01:22:23 t 1 1 155575 609 0.00 2019-11-07 00:16:56 2019-11-07 01:31:26 t 1 1 155576 623 0.00 2019-11-07 01:31:55 2019-11-07 01:31:58 t 1 1 155584 574 0.00 2019-11-07 01:42:43 2019-11-07 01:47:01 t 1 1 155590 623 0.00 2019-11-07 01:52:21 2019-11-07 01:52:22 t 1 1 155591 587 0.00 2019-11-07 01:47:38 2019-11-07 01:54:35 t 1 1 155593 623 0.00 2019-11-07 01:57:24 2019-11-07 01:57:25 t 1 1 155594 562 0.00 2019-11-07 02:00:23 2019-11-07 02:00:43 t 1 1 155596 587 0.00 2019-11-07 01:56:10 2019-11-07 02:01:08 t 1 1 155597 587 0.00 2019-11-07 02:01:24 2019-11-07 02:02:25 t 1 1 155602 623 0.00 2019-11-07 02:12:50 2019-11-07 02:12:52 t 1 1 155603 587 0.00 2019-11-07 02:03:23 2019-11-07 02:14:14 t 1 1 155604 538 0.00 2019-11-07 02:09:28 2019-11-07 02:17:44 t 1 1 155605 623 0.00 2019-11-07 02:17:48 2019-11-07 02:17:50 t 1 1 155607 538 0.00 2019-11-07 02:17:47 2019-11-07 02:19:05 t 1 1 155608 562 0.00 2019-11-07 02:21:54 2019-11-07 02:22:14 t 1 1 155613 587 0.00 2019-11-07 02:28:23 2019-11-07 02:28:37 t 1 1 155614 623 0.00 2019-11-07 02:32:59 2019-11-07 02:33:03 t 1 1 155616 619 0.00 2019-11-07 02:29:59 2019-11-07 02:36:30 t 1 1 155620 623 0.00 2019-11-07 02:43:11 2019-11-07 02:43:12 t 1 1 155623 637 0.00 2019-11-07 02:29:06 2019-11-07 02:49:08 t 1 1 155624 622 0.00 2019-11-07 01:11:59 2019-11-07 02:52:27 t 1 1 155625 623 0.00 2019-11-07 02:53:19 2019-11-07 02:53:22 t 1 1 155626 562 0.00 2019-11-07 02:54:21 2019-11-07 02:54:32 t 1 1 155628 379 0.00 2019-11-06 23:44:40 2019-11-07 03:01:08 t 1 1 155631 422 0.00 2019-11-07 01:51:38 2019-11-07 03:03:58 t 1 1 155637 623 0.00 2019-11-07 03:08:38 2019-11-07 03:08:40 t 1 1 155643 422 0.00 2019-11-07 03:16:08 2019-11-07 03:16:47 t 1 1 155645 623 0.00 2019-11-07 03:20:39 2019-11-07 03:20:51 t 1 1 155653 623 0.00 2019-11-07 03:34:52 2019-11-07 03:35:04 t 1 1 155655 623 0.00 2019-11-07 03:39:02 2019-11-07 03:39:05 t 1 1 155666 562 0.00 2019-11-07 04:01:48 2019-11-07 04:02:14 t 1 1 155668 623 0.00 2019-11-07 04:09:43 2019-11-07 04:09:46 t 1 1 155670 512 0.00 2019-11-07 03:07:55 2019-11-07 04:13:22 t 1 1 155674 220 0.00 2019-11-07 04:11:05 2019-11-07 04:19:39 t 1 1 155675 623 0.00 2019-11-07 04:19:53 2019-11-07 04:19:56 t 1 1 155688 623 0.00 2019-11-07 04:42:06 2019-11-07 04:44:39 t 1 1 155692 422 0.00 2019-11-07 04:46:49 2019-11-07 04:46:50 t 1 1 155694 623 0.00 2019-11-07 04:46:10 2019-11-07 04:48:59 t 1 1 155695 562 0.00 2019-11-07 04:51:01 2019-11-07 04:51:23 t 1 1 155697 445 0.00 2019-11-07 04:41:57 2019-11-07 04:56:11 t 1 1 155703 422 0.00 2019-11-07 05:04:06 2019-11-07 05:05:07 t 1 1 155706 562 0.00 2019-11-07 05:09:27 2019-11-07 05:09:48 t 1 1 155707 422 0.00 2019-11-07 05:14:15 2019-11-07 05:14:29 t 1 1 155711 619 0.00 2019-11-07 05:10:51 2019-11-07 05:25:26 t 1 1 155713 562 0.00 2019-11-07 05:30:59 2019-11-07 05:31:18 t 1 1 155715 609 0.00 2019-11-07 05:30:33 2019-11-07 05:40:11 t 1 1 155717 562 0.00 2019-11-07 05:41:43 2019-11-07 05:42:03 t 1 1 155718 609 0.00 2019-11-07 05:40:11 2019-11-07 05:48:26 t 1 1 155720 562 0.00 2019-11-07 05:52:30 2019-11-07 05:52:49 t 1 1 155725 520 0.00 2019-11-07 06:00:49 2019-11-07 06:02:15 t 1 1 155726 562 0.00 2019-11-07 06:03:16 2019-11-07 06:03:37 t 1 1 155729 607 0.00 2019-11-07 01:06:18 2019-11-07 06:19:12 t 1 1 155731 551 0.00 2019-11-07 06:20:40 2019-11-07 06:28:11 t 1 1 155737 607 0.00 2019-11-07 06:19:12 2019-11-07 06:41:41 t 1 1 155742 422 0.00 2019-11-07 06:54:25 2019-11-07 06:55:54 t 1 1 155750 516 0.00 2019-11-07 07:06:15 2019-11-07 07:08:26 t 1 1 155761 422 0.00 2019-11-07 07:31:37 2019-11-07 07:32:54 t 1 1 155771 566 0.00 2019-11-07 07:34:42 2019-11-07 07:43:29 t 1 1 155772 597 0.00 2019-11-07 07:40:52 2019-11-07 07:44:04 t 1 1 155774 585 0.00 2019-11-07 07:39:39 2019-11-07 07:45:43 t 1 1 155775 585 0.00 2019-11-07 07:45:42 2019-11-07 07:47:44 t 1 1 155776 595 0.00 2019-11-07 07:48:08 2019-11-07 07:48:16 t 1 1 155517 623 0.00 2019-11-07 00:14:37 2019-11-07 00:14:45 t 1 1 155520 562 0.00 2019-11-07 00:19:30 2019-11-07 00:19:44 t 1 1 155523 587 0.00 2019-11-07 00:02:35 2019-11-07 00:24:12 t 1 1 155525 587 0.00 2019-11-07 00:25:18 2019-11-07 00:27:20 t 1 1 155526 587 0.00 2019-11-07 00:27:55 2019-11-07 00:29:26 t 1 1 155528 623 0.00 2019-11-07 00:30:06 2019-11-07 00:30:44 t 1 1 155531 621 0.00 2019-11-07 00:34:13 2019-11-07 00:34:23 t 1 1 155532 622 0.00 2019-11-07 00:32:51 2019-11-07 00:34:47 t 1 1 155534 585 0.00 2019-11-07 00:18:18 2019-11-07 00:35:52 t 1 1 155535 422 0.00 2019-11-07 00:26:27 2019-11-07 00:36:35 t 1 1 155537 481 0.00 2019-11-07 00:24:02 2019-11-07 00:39:17 t 1 1 155539 622 0.00 2019-11-07 00:36:22 2019-11-07 00:39:46 t 1 1 155546 587 0.00 2019-11-07 00:34:35 2019-11-07 00:48:37 t 1 1 155548 623 0.00 2019-11-07 00:51:02 2019-11-07 00:51:05 t 1 1 155550 456 0.00 2019-11-07 00:33:24 2019-11-07 00:52:44 t 1 1 155552 621 0.00 2019-11-07 00:51:04 2019-11-07 00:57:26 t 1 1 155553 562 0.00 2019-11-07 00:58:46 2019-11-07 00:59:12 t 1 1 155557 562 0.00 2019-11-07 01:06:24 2019-11-07 01:06:51 t 1 1 155561 456 0.00 2019-11-07 00:58:58 2019-11-07 01:16:38 t 1 1 155563 623 0.00 2019-11-07 01:16:35 2019-11-07 01:16:43 t 1 1 155573 562 0.00 2019-11-07 01:27:59 2019-11-07 01:28:24 t 1 1 155577 621 0.00 2019-11-07 01:29:49 2019-11-07 01:35:08 t 1 1 155578 621 0.00 2019-11-07 01:35:08 2019-11-07 01:36:09 t 1 1 155579 623 0.00 2019-11-07 01:36:58 2019-11-07 01:37:01 t 1 1 155581 562 0.00 2019-11-07 01:38:48 2019-11-07 01:39:09 t 1 1 155582 623 0.00 2019-11-07 01:42:05 2019-11-07 01:42:07 t 1 1 155585 623 0.00 2019-11-07 01:47:12 2019-11-07 01:47:15 t 1 1 155588 599 0.00 2019-11-07 01:48:17 2019-11-07 01:48:22 t 1 1 155589 562 0.00 2019-11-07 01:49:35 2019-11-07 01:49:55 t 1 1 155592 587 0.00 2019-11-07 01:54:52 2019-11-07 01:54:56 t 1 1 155598 623 0.00 2019-11-07 02:02:27 2019-11-07 02:02:30 t 1 1 155599 623 0.00 2019-11-07 02:07:31 2019-11-07 02:07:32 t 1 1 155609 623 0.00 2019-11-07 02:22:51 2019-11-07 02:22:54 t 1 1 155617 456 0.00 2019-11-07 02:31:10 2019-11-07 02:37:09 t 1 1 155618 623 0.00 2019-11-07 02:38:07 2019-11-07 02:38:07 t 1 1 155619 623 0.00 2019-11-07 02:40:56 2019-11-07 02:41:08 t 1 1 155621 562 0.00 2019-11-07 02:43:33 2019-11-07 02:43:45 t 1 1 155629 623 0.00 2019-11-07 03:03:30 2019-11-07 03:03:39 t 1 1 155632 422 0.00 2019-11-07 03:03:13 2019-11-07 03:04:54 t 1 1 155634 422 0.00 2019-11-07 03:04:12 2019-11-07 03:05:49 t 1 1 155635 587 0.00 2019-11-07 03:05:06 2019-11-07 03:06:12 t 1 1 155636 512 0.00 2019-11-07 01:39:02 2019-11-07 03:07:47 t 1 1 155638 587 0.00 2019-11-07 03:06:20 2019-11-07 03:11:52 t 1 1 155639 619 0.00 2019-11-07 03:06:04 2019-11-07 03:12:21 t 1 1 155640 623 0.00 2019-11-07 03:13:44 2019-11-07 03:13:45 t 1 1 155646 623 0.00 2019-11-07 03:23:52 2019-11-07 03:23:55 t 1 1 155649 562 0.00 2019-11-07 03:26:31 2019-11-07 03:26:50 t 1 1 155650 422 0.00 2019-11-07 03:27:36 2019-11-07 03:27:37 t 1 1 155651 623 0.00 2019-11-07 03:28:57 2019-11-07 03:29:58 t 1 1 155652 623 0.00 2019-11-07 03:33:59 2019-11-07 03:34:00 t 1 1 155657 422 0.00 2019-11-07 03:40:45 2019-11-07 03:40:57 t 1 1 155658 562 0.00 2019-11-07 03:43:02 2019-11-07 03:43:46 t 1 1 155659 623 0.00 2019-11-07 03:44:11 2019-11-07 03:44:11 t 1 1 155662 562 0.00 2019-11-07 03:54:11 2019-11-07 03:54:31 t 1 1 155663 619 0.00 2019-11-07 03:43:10 2019-11-07 03:55:26 t 1 1 155664 623 0.00 2019-11-07 03:59:23 2019-11-07 03:59:32 t 1 1 155665 637 0.00 2019-11-07 02:49:08 2019-11-07 04:00:13 t 1 1 155667 623 0.00 2019-11-07 04:04:36 2019-11-07 04:04:39 t 1 1 155669 562 0.00 2019-11-07 04:12:37 2019-11-07 04:12:54 t 1 1 155671 623 0.00 2019-11-07 04:14:49 2019-11-07 04:14:51 t 1 1 155678 562 0.00 2019-11-07 04:29:29 2019-11-07 04:29:50 t 1 1 155683 220 0.00 2019-11-07 04:19:39 2019-11-07 04:40:08 t 1 1 155684 562 0.00 2019-11-07 04:40:10 2019-11-07 04:40:33 t 1 1 155691 422 0.00 2019-11-07 04:46:30 2019-11-07 04:46:40 t 1 1 155698 422 0.00 2019-11-07 04:56:53 2019-11-07 04:57:03 t 1 1 155699 623 0.00 2019-11-07 04:50:54 2019-11-07 04:59:26 t 1 1 155701 623 0.00 2019-11-07 04:59:26 2019-11-07 05:03:23 t 1 1 155702 422 0.00 2019-11-07 05:03:56 2019-11-07 05:03:57 t 1 1 155704 623 0.00 2019-11-07 05:03:23 2019-11-07 05:06:57 t 1 1 155709 422 0.00 2019-11-07 05:19:32 2019-11-07 05:19:42 t 1 1 155721 609 0.00 2019-11-07 05:48:26 2019-11-07 05:55:55 t 1 1 155730 562 0.00 2019-11-07 06:24:45 2019-11-07 06:25:07 t 1 1 155738 562 0.00 2019-11-07 06:46:13 2019-11-07 06:46:40 t 1 1 155739 412 0.00 2019-11-06 20:15:11 2019-11-07 06:48:03 t 1 1 155740 422 0.00 2019-11-07 06:53:14 2019-11-07 06:54:54 t 1 1 155741 625 0.00 2019-11-07 05:17:51 2019-11-07 06:55:21 t 1 1 155744 516 0.00 2019-11-07 06:42:56 2019-11-07 06:59:13 t 1 1 155746 481 0.00 2019-11-07 06:54:45 2019-11-07 07:02:20 t 1 1 155748 422 0.00 2019-11-07 07:03:17 2019-11-07 07:03:29 t 1 1 155751 562 0.00 2019-11-07 07:07:55 2019-11-07 07:08:45 t 1 1 155752 422 0.00 2019-11-07 07:13:52 2019-11-07 07:14:04 t 1 1 155755 545 0.00 2019-11-07 07:15:59 2019-11-07 07:23:41 t 1 1 155757 520 0.00 2019-11-07 07:02:29 2019-11-07 07:29:44 t 1 1 155758 597 0.00 2019-11-07 07:28:07 2019-11-07 07:30:36 t 1 1 155762 562 0.00 2019-11-07 07:33:57 2019-11-07 07:34:05 t 1 1 155764 591 0.00 2019-11-07 07:06:30 2019-11-07 07:34:44 t 1 1 155767 585 0.00 2019-11-07 07:26:15 2019-11-07 07:39:39 t 1 1 155768 597 0.00 2019-11-07 07:37:35 2019-11-07 07:40:17 t 1 1 155773 597 0.00 2019-11-07 07:44:05 2019-11-07 07:45:15 t 1 1 155777 566 0.00 2019-11-07 07:43:29 2019-11-07 07:48:48 t 1 1 155780 566 0.00 2019-11-07 07:48:48 2019-11-07 07:52:34 t 1 1 155781 595 0.00 2019-11-07 07:53:16 2019-11-07 07:53:25 t 1 1 155782 595 0.00 2019-11-07 07:53:55 2019-11-07 07:54:18 t 1 1 155787 595 0.00 2019-11-07 07:59:24 2019-11-07 07:59:40 t 1 1 155789 562 0.00 2019-11-07 07:52:22 2019-11-07 08:01:44 t 1 1 155790 562 0.00 2019-11-07 08:02:03 2019-11-07 08:02:30 t 1 1 155791 595 0.00 2019-11-07 08:03:29 2019-11-07 08:03:36 t 1 1 155792 562 0.00 2019-11-07 08:03:38 2019-11-07 08:04:13 t 1 1 155794 220 0.00 2019-11-07 06:43:07 2019-11-07 08:08:21 t 1 1 155796 595 0.00 2019-11-07 08:08:35 2019-11-07 08:09:26 t 1 1 155797 595 0.00 2019-11-07 08:09:36 2019-11-07 08:09:58 t 1 1 155798 422 0.00 2019-11-07 08:10:22 2019-11-07 08:10:40 t 1 1 155800 220 0.00 2019-11-07 08:10:55 2019-11-07 08:11:30 t 1 1 155801 422 0.00 2019-11-07 08:12:05 2019-11-07 08:12:20 t 1 1 155803 564 0.00 2019-11-07 07:55:51 2019-11-07 08:13:06 t 1 1 155805 595 0.00 2019-11-07 08:13:45 2019-11-07 08:13:54 t 1 1 155807 516 0.00 2019-11-07 08:11:04 2019-11-07 08:14:24 t 1 1 155574 621 0.00 2019-11-07 01:26:43 2019-11-07 01:29:49 t 1 1 155580 512 0.00 2019-11-07 00:43:34 2019-11-07 01:39:03 t 1 1 155583 587 0.00 2019-11-07 01:25:27 2019-11-07 01:46:55 t 1 1 155586 422 0.00 2019-11-07 01:46:43 2019-11-07 01:47:54 t 1 1 155587 599 0.00 2019-11-07 00:28:01 2019-11-07 01:48:17 t 1 1 155595 538 0.00 2019-11-07 00:37:53 2019-11-07 02:00:46 t 1 1 155600 562 0.00 2019-11-07 02:11:07 2019-11-07 02:11:31 t 1 1 155601 623 0.00 2019-11-07 02:12:35 2019-11-07 02:12:45 t 1 1 155606 587 0.00 2019-11-07 02:15:47 2019-11-07 02:17:51 t 1 1 155610 538 0.00 2019-11-07 02:19:05 2019-11-07 02:25:02 t 1 1 155611 587 0.00 2019-11-07 02:18:53 2019-11-07 02:27:53 t 1 1 155612 623 0.00 2019-11-07 02:27:56 2019-11-07 02:27:59 t 1 1 155615 562 0.00 2019-11-07 02:32:43 2019-11-07 02:33:05 t 1 1 155622 623 0.00 2019-11-07 02:48:15 2019-11-07 02:48:22 t 1 1 155627 623 0.00 2019-11-07 02:58:24 2019-11-07 02:58:27 t 1 1 155630 623 0.00 2019-11-07 03:03:44 2019-11-07 03:03:46 t 1 1 155633 562 0.00 2019-11-07 03:04:59 2019-11-07 03:05:18 t 1 1 155641 587 0.00 2019-11-07 03:12:07 2019-11-07 03:14:19 t 1 1 155642 562 0.00 2019-11-07 03:15:45 2019-11-07 03:16:03 t 1 1 155644 623 0.00 2019-11-07 03:18:48 2019-11-07 03:18:48 t 1 1 155647 587 0.00 2019-11-07 03:14:39 2019-11-07 03:24:18 t 1 1 155648 587 0.00 2019-11-07 03:24:39 2019-11-07 03:26:32 t 1 1 155654 562 0.00 2019-11-07 03:37:17 2019-11-07 03:37:36 t 1 1 155656 422 0.00 2019-11-07 03:37:42 2019-11-07 03:39:54 t 1 1 155660 623 0.00 2019-11-07 03:49:14 2019-11-07 03:49:15 t 1 1 155661 623 0.00 2019-11-07 03:54:19 2019-11-07 03:54:21 t 1 1 155672 562 0.00 2019-11-07 04:18:07 2019-11-07 04:18:17 t 1 1 155673 562 0.00 2019-11-07 04:18:30 2019-11-07 04:19:01 t 1 1 155676 623 0.00 2019-11-07 04:24:58 2019-11-07 04:24:59 t 1 1 155677 422 0.00 2019-11-07 04:25:53 2019-11-07 04:26:06 t 1 1 155679 623 0.00 2019-11-07 04:30:04 2019-11-07 04:30:07 t 1 1 155680 499 0.00 2019-11-07 04:20:46 2019-11-07 04:31:01 t 1 1 155681 623 0.00 2019-11-07 04:32:39 2019-11-07 04:34:00 t 1 1 155682 512 0.00 2019-11-07 04:13:25 2019-11-07 04:35:21 t 1 1 155685 623 0.00 2019-11-07 04:37:52 2019-11-07 04:40:37 t 1 1 155686 623 0.00 2019-11-07 04:41:46 2019-11-07 04:41:52 t 1 1 155687 445 0.00 2019-11-07 04:30:08 2019-11-07 04:41:57 t 1 1 155689 623 0.00 2019-11-07 04:44:50 2019-11-07 04:44:53 t 1 1 155690 422 0.00 2019-11-07 04:46:09 2019-11-07 04:46:21 t 1 1 155693 510 0.00 2019-11-06 23:25:44 2019-11-07 04:47:25 t 1 1 155696 220 0.00 2019-11-07 04:40:08 2019-11-07 04:52:57 t 1 1 155700 562 0.00 2019-11-07 05:01:47 2019-11-07 05:02:11 t 1 1 155705 220 0.00 2019-11-07 04:52:57 2019-11-07 05:07:06 t 1 1 155708 512 0.00 2019-11-07 05:06:51 2019-11-07 05:16:57 t 1 1 155710 562 0.00 2019-11-07 05:20:13 2019-11-07 05:20:35 t 1 1 155712 422 0.00 2019-11-07 05:30:05 2019-11-07 05:30:06 t 1 1 155714 516 0.00 2019-11-07 05:36:51 2019-11-07 05:38:55 t 1 1 155716 516 0.00 2019-11-07 05:38:54 2019-11-07 05:40:12 t 1 1 155719 220 0.00 2019-11-07 05:47:20 2019-11-07 05:48:41 t 1 1 155722 538 0.00 2019-11-07 05:53:03 2019-11-07 05:57:34 t 1 1 155723 520 0.00 2019-11-07 05:54:02 2019-11-07 05:59:13 t 1 1 155724 609 0.00 2019-11-07 05:55:55 2019-11-07 06:00:03 t 1 1 155727 422 0.00 2019-11-07 06:04:52 2019-11-07 06:05:18 t 1 1 155728 562 0.00 2019-11-07 06:14:00 2019-11-07 06:14:21 t 1 1 155732 516 0.00 2019-11-07 06:27:46 2019-11-07 06:28:37 t 1 1 155733 562 0.00 2019-11-07 06:35:33 2019-11-07 06:35:55 t 1 1 155734 220 0.00 2019-11-07 06:29:24 2019-11-07 06:37:01 t 1 1 155735 551 0.00 2019-11-07 06:28:11 2019-11-07 06:40:58 t 1 1 155736 607 0.00 2019-11-07 06:41:21 2019-11-07 06:41:21 f 1 1 155743 578 0.00 2019-11-06 22:55:24 2019-11-07 06:58:45 t 1 1 155745 562 0.00 2019-11-07 06:57:06 2019-11-07 06:59:35 t 1 1 155747 514 0.00 2019-11-07 06:23:48 2019-11-07 07:02:26 t 1 1 155749 562 0.00 2019-11-07 07:02:41 2019-11-07 07:04:59 t 1 1 155753 562 0.00 2019-11-07 07:15:03 2019-11-07 07:17:20 t 1 1 155754 597 0.00 2019-11-07 07:17:46 2019-11-07 07:22:24 t 1 1 155756 422 0.00 2019-11-07 07:26:36 2019-11-07 07:26:52 t 1 1 155759 562 0.00 2019-11-07 07:17:55 2019-11-07 07:32:17 t 1 1 155760 562 0.00 2019-11-07 07:32:44 2019-11-07 07:32:52 t 1 1 155763 595 0.00 2019-11-07 07:32:52 2019-11-07 07:34:39 t 1 1 155765 562 0.00 2019-11-07 07:38:05 2019-11-07 07:38:10 t 1 1 155766 595 0.00 2019-11-07 07:37:00 2019-11-07 07:39:27 t 1 1 155769 516 0.00 2019-11-07 07:35:38 2019-11-07 07:40:41 t 1 1 155770 595 0.00 2019-11-07 07:43:04 2019-11-07 07:43:11 t 1 1 155778 595 0.00 2019-11-07 07:48:29 2019-11-07 07:48:51 t 1 1 155779 562 0.00 2019-11-07 07:38:43 2019-11-07 07:52:00 t 1 1 155783 591 0.00 2019-11-07 07:48:21 2019-11-07 07:54:44 t 1 1 155784 564 0.00 2019-11-06 19:30:30 2019-11-07 07:55:51 t 1 1 155785 595 0.00 2019-11-07 07:58:21 2019-11-07 07:58:29 t 1 1 155786 595 0.00 2019-11-07 07:58:39 2019-11-07 07:59:02 t 1 1 155788 595 0.00 2019-11-07 07:59:49 2019-11-07 08:00:14 t 1 1 155793 562 0.00 2019-11-07 08:04:32 2019-11-07 08:05:16 t 1 1 155795 562 0.00 2019-11-07 08:08:54 2019-11-07 08:09:03 t 1 1 155799 220 0.00 2019-11-07 08:08:21 2019-11-07 08:10:55 t 1 1 155802 220 0.00 2019-11-07 08:11:30 2019-11-07 08:13:04 t 1 1 155804 562 0.00 2019-11-07 08:12:58 2019-11-07 08:13:09 t 1 1 155806 520 0.00 2019-11-07 08:11:02 2019-11-07 08:14:17 t 1 1 155808 637 0.00 2019-11-07 04:00:13 2019-11-07 08:16:27 t 1 1 155809 637 0.00 2019-11-07 08:16:27 2019-11-07 08:17:57 t 1 1 155810 595 0.00 2019-11-07 08:18:53 2019-11-07 08:19:07 t 1 1 155811 637 0.00 2019-11-07 08:17:57 2019-11-07 08:19:27 t 1 1 155812 422 0.00 2019-11-07 08:18:35 2019-11-07 08:19:54 t 1 1 155813 422 0.00 2019-11-07 08:20:04 2019-11-07 08:21:06 t 1 1 155814 562 0.00 2019-11-07 08:18:50 2019-11-07 08:21:09 t 1 1 155815 637 0.00 2019-11-07 08:19:27 2019-11-07 08:21:58 t 1 1 155816 585 0.00 2019-11-07 08:13:54 2019-11-07 08:23:02 t 1 1 155817 445 0.00 2019-11-07 04:56:11 2019-11-07 08:23:25 t 1 1 155818 562 0.00 2019-11-07 08:22:45 2019-11-07 08:23:25 t 1 1 155819 520 0.00 2019-11-07 08:14:17 2019-11-07 08:24:08 t 1 1 155820 595 0.00 2019-11-07 08:24:06 2019-11-07 08:24:14 t 1 1 155821 445 0.00 2019-11-07 08:23:24 2019-11-07 08:25:35 t 1 1 155822 422 0.00 2019-11-07 08:26:28 2019-11-07 08:26:52 t 1 1 155823 615 0.00 2019-11-07 08:24:55 2019-11-07 08:28:07 t 1 1 155824 220 0.00 2019-11-07 08:13:03 2019-11-07 08:28:08 t 1 1 155825 422 0.00 2019-11-07 08:28:25 2019-11-07 08:28:44 t 1 1 155826 595 0.00 2019-11-07 08:29:13 2019-11-07 08:29:20 t 1 1 155827 585 0.00 2019-11-07 08:23:02 2019-11-07 08:31:07 t 1 1 155828 562 0.00 2019-11-07 08:33:02 2019-11-07 08:33:36 t 1 1 155829 562 0.00 2019-11-07 08:33:43 2019-11-07 08:34:41 t 1 1 155831 595 0.00 2019-11-07 08:35:13 2019-11-07 08:35:30 t 1 1 155834 422 0.00 2019-11-07 08:38:57 2019-11-07 08:39:06 t 1 1 155836 562 0.00 2019-11-07 08:38:48 2019-11-07 08:40:34 t 1 1 155840 625 0.00 2019-11-07 06:55:21 2019-11-07 08:43:34 t 1 1 155846 562 0.00 2019-11-07 08:46:09 2019-11-07 08:46:34 t 1 1 155849 585 0.00 2019-11-07 08:47:25 2019-11-07 08:49:02 t 1 1 155854 615 0.00 2019-11-07 08:43:44 2019-11-07 08:51:52 t 1 1 155859 538 0.00 2019-11-07 08:58:05 2019-11-07 08:58:38 t 1 1 155860 422 0.00 2019-11-07 08:59:42 2019-11-07 08:59:43 t 1 1 155861 562 0.00 2019-11-07 08:59:36 2019-11-07 09:00:03 t 1 1 155863 615 0.00 2019-11-07 08:51:52 2019-11-07 09:00:57 t 1 1 155864 564 0.00 2019-11-07 08:13:06 2019-11-07 09:02:03 t 1 1 155866 595 0.00 2019-11-07 09:04:32 2019-11-07 09:04:37 t 1 1 155868 625 0.00 2019-11-07 08:57:24 2019-11-07 09:05:40 t 1 1 155870 562 0.00 2019-11-07 09:07:04 2019-11-07 09:07:21 t 1 1 155872 615 0.00 2019-11-07 09:00:57 2019-11-07 09:08:22 t 1 1 155874 637 0.00 2019-11-07 08:21:58 2019-11-07 09:09:32 t 1 1 155876 585 0.00 2019-11-07 09:09:33 2019-11-07 09:11:09 t 1 1 155881 611 0.00 2019-11-07 09:10:05 2019-11-07 09:16:53 t 1 1 155883 625 0.00 2019-11-07 09:05:40 2019-11-07 09:17:50 t 1 1 155886 591 0.00 2019-11-07 09:21:45 2019-11-07 09:24:42 t 1 1 155892 595 0.00 2019-11-07 09:29:34 2019-11-07 09:29:35 t 1 1 155894 220 0.00 2019-11-07 08:53:47 2019-11-07 09:30:24 t 1 1 155901 422 0.00 2019-11-07 09:35:23 2019-11-07 09:35:40 t 1 1 155905 591 0.00 2019-11-07 09:35:17 2019-11-07 09:37:29 t 1 1 155906 220 0.00 2019-11-07 09:30:28 2019-11-07 09:38:21 t 1 1 155909 220 0.00 2019-11-07 09:39:26 2019-11-07 09:40:00 t 1 1 155912 625 0.00 2019-11-07 09:31:10 2019-11-07 09:41:11 t 1 1 155913 220 0.00 2019-11-07 09:41:05 2019-11-07 09:41:37 t 1 1 155914 220 0.00 2019-11-07 09:41:37 2019-11-07 09:42:11 t 1 1 155919 220 0.00 2019-11-07 09:44:26 2019-11-07 09:44:59 t 1 1 155922 220 0.00 2019-11-07 09:46:47 2019-11-07 09:47:21 t 1 1 155925 220 0.00 2019-11-07 09:47:55 2019-11-07 09:48:29 t 1 1 155928 220 0.00 2019-11-07 09:48:59 2019-11-07 09:49:34 t 1 1 155932 615 0.00 2019-11-07 09:44:24 2019-11-07 09:51:13 t 1 1 155933 220 0.00 2019-11-07 09:51:11 2019-11-07 09:51:46 t 1 1 155934 220 0.00 2019-11-07 09:51:46 2019-11-07 09:52:17 t 1 1 155940 422 0.00 2019-11-07 09:54:16 2019-11-07 09:54:46 t 1 1 155945 623 0.00 2019-11-07 09:55:33 2019-11-07 09:55:59 t 1 1 155949 623 0.00 2019-11-07 09:56:39 2019-11-07 09:57:13 t 1 1 155952 623 0.00 2019-11-07 09:55:24 2019-11-07 09:57:55 t 1 1 155953 220 0.00 2019-11-07 09:57:35 2019-11-07 09:58:21 t 1 1 155954 422 0.00 2019-11-07 09:58:36 2019-11-07 09:58:50 t 1 1 155956 623 0.00 2019-11-07 09:57:34 2019-11-07 09:58:55 t 1 1 155957 623 0.00 2019-11-07 09:58:31 2019-11-07 09:59:55 t 1 1 155962 220 0.00 2019-11-07 10:03:11 2019-11-07 10:03:52 t 1 1 155965 422 0.00 2019-11-07 10:06:00 2019-11-07 10:07:06 t 1 1 155969 220 0.00 2019-11-07 10:08:27 2019-11-07 10:08:30 t 1 1 155971 422 0.00 2019-11-07 10:07:51 2019-11-07 10:08:49 t 1 1 155973 422 0.00 2019-11-07 10:09:18 2019-11-07 10:09:19 t 1 1 155975 623 0.00 2019-11-07 10:10:15 2019-11-07 10:11:38 t 1 1 155978 623 0.00 2019-11-07 10:15:05 2019-11-07 10:15:16 t 1 1 155984 520 0.00 2019-11-07 10:09:03 2019-11-07 10:18:41 t 1 1 155987 623 0.00 2019-11-07 10:22:08 2019-11-07 10:22:28 t 1 1 155999 520 0.00 2019-11-07 10:35:15 2019-11-07 10:36:37 t 1 1 156003 562 0.00 2019-11-07 10:41:03 2019-11-07 10:41:18 t 1 1 156007 645 0.00 2019-11-07 10:43:12 2019-11-07 10:44:34 t 1 1 156009 445 0.00 2019-11-07 10:36:27 2019-11-07 10:45:41 t 1 1 156011 623 0.00 2019-11-07 10:44:10 2019-11-07 10:45:55 t 1 1 156013 625 0.00 2019-11-07 10:38:23 2019-11-07 10:46:48 t 1 1 156015 445 0.00 2019-11-07 10:45:41 2019-11-07 10:46:55 t 1 1 156020 445 0.00 2019-11-07 10:46:54 2019-11-07 10:48:04 t 1 1 156033 416 0.00 2019-11-07 10:54:12 2019-11-07 10:55:36 t 1 1 156034 445 0.00 2019-11-07 10:50:54 2019-11-07 10:56:09 t 1 1 156038 623 0.00 2019-11-07 11:01:22 2019-11-07 11:01:22 t 1 1 156042 615 0.00 2019-11-07 11:00:57 2019-11-07 11:03:48 t 1 1 156043 416 0.00 2019-11-07 10:57:26 2019-11-07 11:06:05 t 1 1 156044 619 0.00 2019-11-07 10:53:35 2019-11-07 11:06:25 t 1 1 156046 562 0.00 2019-11-07 11:04:05 2019-11-07 11:07:23 t 1 1 156050 520 0.00 2019-11-07 11:00:31 2019-11-07 11:09:17 t 1 1 156054 591 0.00 2019-11-07 11:03:25 2019-11-07 11:12:54 t 1 1 156063 637 0.00 2019-11-07 11:09:11 2019-11-07 11:16:46 t 1 1 156069 619 0.00 2019-11-07 11:10:55 2019-11-07 11:18:02 t 1 1 156071 623 0.00 2019-11-07 11:16:47 2019-11-07 11:18:43 t 1 1 156073 512 0.00 2019-11-07 09:50:45 2019-11-07 11:21:36 t 1 1 156075 623 0.00 2019-11-07 11:23:34 2019-11-07 11:24:01 t 1 1 156078 520 0.00 2019-11-07 11:18:19 2019-11-07 11:25:51 t 1 1 156079 562 0.00 2019-11-07 11:21:02 2019-11-07 11:27:01 t 1 1 156080 520 0.00 2019-11-07 11:25:50 2019-11-07 11:27:22 t 1 1 156082 623 0.00 2019-11-07 11:28:06 2019-11-07 11:30:10 t 1 1 156084 520 0.00 2019-11-07 11:27:22 2019-11-07 11:30:49 t 1 1 156085 597 0.00 2019-11-07 11:29:34 2019-11-07 11:31:37 t 1 1 156088 623 0.00 2019-11-07 11:33:05 2019-11-07 11:33:48 t 1 1 156090 562 0.00 2019-11-07 11:27:01 2019-11-07 11:34:18 t 1 1 156097 625 0.00 2019-11-07 11:30:57 2019-11-07 11:43:35 t 1 1 156098 445 0.00 2019-11-07 11:34:54 2019-11-07 11:43:54 t 1 1 156100 562 0.00 2019-11-07 11:42:52 2019-11-07 11:46:28 t 1 1 156102 445 0.00 2019-11-07 11:43:52 2019-11-07 11:49:37 t 1 1 156107 623 0.00 2019-11-07 11:35:14 2019-11-07 11:51:47 t 1 1 156112 562 0.00 2019-11-07 11:49:49 2019-11-07 11:53:41 t 1 1 156114 538 0.00 2019-11-07 11:53:51 2019-11-07 11:56:04 t 1 1 156118 615 0.00 2019-11-07 11:59:40 2019-11-07 12:01:55 t 1 1 156123 445 0.00 2019-11-07 11:59:09 2019-11-07 12:11:25 t 1 1 156124 623 0.00 2019-11-07 12:12:18 2019-11-07 12:13:16 t 1 1 156126 516 0.00 2019-11-07 12:09:23 2019-11-07 12:13:43 t 1 1 156127 623 0.00 2019-11-07 12:13:49 2019-11-07 12:14:01 t 1 1 156128 625 0.00 2019-11-07 12:09:14 2019-11-07 12:15:10 t 1 1 156129 562 0.00 2019-11-07 12:04:08 2019-11-07 12:16:51 t 1 1 156131 625 0.00 2019-11-07 12:15:26 2019-11-07 12:17:33 t 1 1 156132 445 0.00 2019-11-07 12:11:25 2019-11-07 12:17:45 t 1 1 156133 490 0.00 2019-11-07 12:13:00 2019-11-07 12:20:40 t 1 1 156135 570 0.00 2019-11-07 11:14:26 2019-11-07 12:22:49 t 1 1 156142 623 0.00 2019-11-07 12:28:21 2019-11-07 12:28:26 t 1 1 156144 623 0.00 2019-11-07 12:28:33 2019-11-07 12:29:52 t 1 1 156145 623 0.00 2019-11-07 12:30:52 2019-11-07 12:30:59 t 1 1 156154 591 0.00 2019-11-07 12:03:04 2019-11-07 12:37:05 t 1 1 155830 595 0.00 2019-11-07 08:32:31 2019-11-07 08:35:02 t 1 1 155837 562 0.00 2019-11-07 08:41:59 2019-11-07 08:42:20 t 1 1 155844 595 0.00 2019-11-07 08:44:52 2019-11-07 08:45:14 t 1 1 155847 591 0.00 2019-11-07 08:44:27 2019-11-07 08:47:57 t 1 1 155848 412 0.00 2019-11-07 08:45:25 2019-11-07 08:48:09 t 1 1 155851 595 0.00 2019-11-07 08:49:41 2019-11-07 08:49:50 t 1 1 155855 220 0.00 2019-11-07 08:45:11 2019-11-07 08:53:44 t 1 1 155856 591 0.00 2019-11-07 08:48:01 2019-11-07 08:54:23 t 1 1 155857 538 0.00 2019-11-07 08:55:36 2019-11-07 08:57:24 t 1 1 155862 595 0.00 2019-11-07 08:59:11 2019-11-07 09:00:20 t 1 1 155865 595 0.00 2019-11-07 09:04:14 2019-11-07 09:04:19 t 1 1 155867 595 0.00 2019-11-07 09:04:47 2019-11-07 09:05:08 t 1 1 155871 220 0.00 2019-11-07 08:46:46 2019-11-07 09:07:34 t 1 1 155875 595 0.00 2019-11-07 09:09:42 2019-11-07 09:09:48 t 1 1 155877 510 0.00 2019-11-07 04:47:25 2019-11-07 09:11:43 t 1 1 155878 562 0.00 2019-11-07 09:14:38 2019-11-07 09:15:00 t 1 1 155880 422 0.00 2019-11-07 09:14:58 2019-11-07 09:15:58 t 1 1 155884 631 0.00 2019-11-07 09:18:29 2019-11-07 09:20:13 t 1 1 155885 595 0.00 2019-11-07 09:20:54 2019-11-07 09:20:59 t 1 1 155889 615 0.00 2019-11-07 09:24:45 2019-11-07 09:28:07 t 1 1 155891 595 0.00 2019-11-07 09:27:33 2019-11-07 09:29:24 t 1 1 155893 595 0.00 2019-11-07 09:29:47 2019-11-07 09:30:10 t 1 1 155899 445 0.00 2019-11-07 09:31:17 2019-11-07 09:33:03 t 1 1 155900 591 0.00 2019-11-07 09:32:00 2019-11-07 09:34:55 t 1 1 155902 445 0.00 2019-11-07 09:34:07 2019-11-07 09:35:54 t 1 1 155903 562 0.00 2019-11-07 09:36:11 2019-11-07 09:36:34 t 1 1 155904 445 0.00 2019-11-07 09:36:37 2019-11-07 09:37:22 t 1 1 155917 220 0.00 2019-11-07 09:43:16 2019-11-07 09:43:51 t 1 1 155924 562 0.00 2019-11-07 09:46:59 2019-11-07 09:48:07 t 1 1 155926 637 0.00 2019-11-07 09:30:41 2019-11-07 09:48:43 t 1 1 155927 220 0.00 2019-11-07 09:48:28 2019-11-07 09:49:00 t 1 1 155929 220 0.00 2019-11-07 09:49:34 2019-11-07 09:50:07 t 1 1 155930 220 0.00 2019-11-07 09:50:07 2019-11-07 09:50:40 t 1 1 155936 220 0.00 2019-11-07 09:52:51 2019-11-07 09:53:29 t 1 1 155938 562 0.00 2019-11-07 09:53:44 2019-11-07 09:53:55 t 1 1 155939 220 0.00 2019-11-07 09:53:29 2019-11-07 09:54:02 t 1 1 155941 562 0.00 2019-11-07 09:54:56 2019-11-07 09:55:15 t 1 1 155947 623 0.00 2019-11-07 09:56:06 2019-11-07 09:56:32 t 1 1 155958 220 0.00 2019-11-07 09:58:51 2019-11-07 10:00:29 t 1 1 155959 220 0.00 2019-11-07 10:00:29 2019-11-07 10:01:04 t 1 1 155963 623 0.00 2019-11-07 10:03:33 2019-11-07 10:05:55 t 1 1 155964 562 0.00 2019-11-07 10:05:42 2019-11-07 10:06:01 t 1 1 155972 623 0.00 2019-11-07 10:09:05 2019-11-07 10:09:06 t 1 1 155974 623 0.00 2019-11-07 10:08:52 2019-11-07 10:09:55 t 1 1 155979 422 0.00 2019-11-07 10:14:34 2019-11-07 10:15:28 t 1 1 155980 615 0.00 2019-11-07 10:12:00 2019-11-07 10:16:37 t 1 1 155983 623 0.00 2019-11-07 10:17:27 2019-11-07 10:17:27 t 1 1 155986 220 0.00 2019-11-07 10:09:01 2019-11-07 10:19:46 t 1 1 155988 619 0.00 2019-11-07 10:20:19 2019-11-07 10:22:34 t 1 1 155989 445 0.00 2019-11-07 10:20:55 2019-11-07 10:24:32 t 1 1 155992 595 0.00 2019-11-07 10:26:48 2019-11-07 10:29:03 t 1 1 155996 445 0.00 2019-11-07 10:32:44 2019-11-07 10:33:51 t 1 1 156001 615 0.00 2019-11-07 10:28:27 2019-11-07 10:40:27 t 1 1 156005 623 0.00 2019-11-07 10:42:26 2019-11-07 10:42:38 t 1 1 156008 645 0.00 2019-11-07 10:44:44 2019-11-07 10:45:02 t 1 1 156012 645 0.00 2019-11-07 10:46:04 2019-11-07 10:46:12 t 1 1 156018 623 0.00 2019-11-07 10:47:38 2019-11-07 10:47:40 t 1 1 156019 623 0.00 2019-11-07 10:47:54 2019-11-07 10:48:00 t 1 1 156023 645 0.00 2019-11-07 10:48:27 2019-11-07 10:48:49 t 1 1 156025 449 0.00 2019-11-07 10:40:01 2019-11-07 10:49:14 t 1 1 156027 416 0.00 2019-11-07 09:59:28 2019-11-07 10:50:32 t 1 1 156028 623 0.00 2019-11-07 10:48:38 2019-11-07 10:51:22 t 1 1 156029 623 0.00 2019-11-07 10:51:43 2019-11-07 10:51:46 t 1 1 156031 562 0.00 2019-11-07 10:48:32 2019-11-07 10:52:18 t 1 1 156039 449 0.00 2019-11-07 10:49:14 2019-11-07 11:01:40 t 1 1 156040 591 0.00 2019-11-07 10:58:36 2019-11-07 11:03:25 t 1 1 156045 623 0.00 2019-11-07 11:06:24 2019-11-07 11:06:27 t 1 1 156047 625 0.00 2019-11-07 10:46:48 2019-11-07 11:08:44 t 1 1 156049 637 0.00 2019-11-07 10:33:34 2019-11-07 11:09:11 t 1 1 156051 220 0.00 2019-11-07 10:19:45 2019-11-07 11:10:47 t 1 1 156052 562 0.00 2019-11-07 11:10:15 2019-11-07 11:11:03 t 1 1 156053 623 0.00 2019-11-07 11:11:28 2019-11-07 11:12:35 t 1 1 156055 623 0.00 2019-11-07 11:12:35 2019-11-07 11:13:41 t 1 1 156057 591 0.00 2019-11-07 11:12:53 2019-11-07 11:14:01 t 1 1 156059 570 0.00 2019-11-07 10:37:56 2019-11-07 11:14:29 t 1 1 156060 623 0.00 2019-11-07 11:14:42 2019-11-07 11:14:50 t 1 1 156061 625 0.00 2019-11-07 11:07:49 2019-11-07 11:16:42 t 1 1 156066 445 0.00 2019-11-07 11:17:01 2019-11-07 11:17:30 t 1 1 156068 637 0.00 2019-11-07 11:16:54 2019-11-07 11:17:52 t 1 1 156070 520 0.00 2019-11-07 11:17:01 2019-11-07 11:18:05 t 1 1 156074 637 0.00 2019-11-07 11:17:51 2019-11-07 11:21:41 t 1 1 156076 609 0.00 2019-11-07 11:14:43 2019-11-07 11:24:18 t 1 1 156083 625 0.00 2019-11-07 11:17:10 2019-11-07 11:30:33 t 1 1 156086 645 0.00 2019-11-07 11:30:04 2019-11-07 11:31:52 t 1 1 156089 520 0.00 2019-11-07 11:32:16 2019-11-07 11:33:55 t 1 1 156091 445 0.00 2019-11-07 11:17:29 2019-11-07 11:35:21 t 1 1 156093 615 0.00 2019-11-07 11:31:59 2019-11-07 11:36:17 t 1 1 156095 619 0.00 2019-11-07 11:33:40 2019-11-07 11:40:35 t 1 1 156096 562 0.00 2019-11-07 11:34:18 2019-11-07 11:41:55 t 1 1 156104 619 0.00 2019-11-07 11:43:29 2019-11-07 11:50:20 t 1 1 156108 591 0.00 2019-11-07 11:14:53 2019-11-07 11:51:48 t 1 1 156110 445 0.00 2019-11-07 11:50:54 2019-11-07 11:53:26 t 1 1 156115 562 0.00 2019-11-07 11:55:46 2019-11-07 11:56:10 t 1 1 156117 562 0.00 2019-11-07 11:58:20 2019-11-07 12:00:18 t 1 1 156120 625 0.00 2019-11-07 11:43:35 2019-11-07 12:09:15 t 1 1 156122 449 0.00 2019-11-07 12:09:21 2019-11-07 12:10:20 t 1 1 156136 623 0.00 2019-11-07 12:23:31 2019-11-07 12:24:05 t 1 1 156137 623 0.00 2019-11-07 12:25:19 2019-11-07 12:25:41 t 1 1 156138 445 0.00 2019-11-07 12:17:45 2019-11-07 12:26:16 t 1 1 156146 570 0.00 2019-11-07 12:22:48 2019-11-07 12:31:00 t 1 1 156148 451 0.00 2019-11-07 12:24:20 2019-11-07 12:31:46 t 1 1 156149 615 0.00 2019-11-07 12:31:11 2019-11-07 12:32:59 t 1 1 156153 562 0.00 2019-11-07 12:36:15 2019-11-07 12:36:25 t 1 1 156158 516 0.00 2019-11-07 12:39:49 2019-11-07 12:41:22 t 1 1 156160 611 0.00 2019-11-07 12:40:38 2019-11-07 12:45:21 t 1 1 156163 611 0.00 2019-11-07 12:46:39 2019-11-07 12:47:42 t 1 1 156165 623 0.00 2019-11-07 12:37:39 2019-11-07 12:48:31 t 1 1 155832 562 0.00 2019-11-07 08:35:37 2019-11-07 08:37:30 t 1 1 155833 619 0.00 2019-11-07 08:35:40 2019-11-07 08:38:49 t 1 1 155835 595 0.00 2019-11-07 08:39:23 2019-11-07 08:39:37 t 1 1 155838 220 0.00 2019-11-07 08:39:51 2019-11-07 08:42:32 t 1 1 155839 562 0.00 2019-11-07 08:42:47 2019-11-07 08:43:03 t 1 1 155841 615 0.00 2019-11-07 08:38:51 2019-11-07 08:43:44 t 1 1 155842 591 0.00 2019-11-07 08:34:41 2019-11-07 08:44:07 t 1 1 155843 595 0.00 2019-11-07 08:44:33 2019-11-07 08:44:41 t 1 1 155845 412 0.00 2019-11-07 06:48:03 2019-11-07 08:45:19 t 1 1 155850 562 0.00 2019-11-07 08:49:02 2019-11-07 08:49:18 t 1 1 155852 595 0.00 2019-11-07 08:50:23 2019-11-07 08:50:31 t 1 1 155853 595 0.00 2019-11-07 08:50:45 2019-11-07 08:51:14 t 1 1 155858 625 0.00 2019-11-07 08:43:34 2019-11-07 08:57:24 t 1 1 155869 595 0.00 2019-11-07 09:05:23 2019-11-07 09:05:43 t 1 1 155873 619 0.00 2019-11-07 08:59:22 2019-11-07 09:09:17 t 1 1 155879 595 0.00 2019-11-07 09:14:47 2019-11-07 09:15:48 t 1 1 155882 562 0.00 2019-11-07 09:16:30 2019-11-07 09:16:58 t 1 1 155887 562 0.00 2019-11-07 09:25:22 2019-11-07 09:25:44 t 1 1 155888 595 0.00 2019-11-07 09:25:56 2019-11-07 09:26:04 t 1 1 155890 591 0.00 2019-11-07 09:26:28 2019-11-07 09:28:27 t 1 1 155895 637 0.00 2019-11-07 09:09:32 2019-11-07 09:30:41 t 1 1 155896 625 0.00 2019-11-07 09:17:50 2019-11-07 09:31:10 t 1 1 155897 445 0.00 2019-11-07 08:28:10 2019-11-07 09:31:18 t 1 1 155898 595 0.00 2019-11-07 09:30:19 2019-11-07 09:32:43 t 1 1 155907 220 0.00 2019-11-07 09:38:21 2019-11-07 09:38:53 t 1 1 155908 220 0.00 2019-11-07 09:38:53 2019-11-07 09:39:26 t 1 1 155910 220 0.00 2019-11-07 09:40:00 2019-11-07 09:40:33 t 1 1 155911 220 0.00 2019-11-07 09:40:32 2019-11-07 09:41:05 t 1 1 155915 220 0.00 2019-11-07 09:42:11 2019-11-07 09:42:43 t 1 1 155916 220 0.00 2019-11-07 09:42:43 2019-11-07 09:43:17 t 1 1 155918 220 0.00 2019-11-07 09:43:51 2019-11-07 09:44:26 t 1 1 155920 220 0.00 2019-11-07 09:44:59 2019-11-07 09:45:30 t 1 1 155921 220 0.00 2019-11-07 09:45:30 2019-11-07 09:46:47 t 1 1 155923 220 0.00 2019-11-07 09:47:21 2019-11-07 09:47:55 t 1 1 155931 220 0.00 2019-11-07 09:50:40 2019-11-07 09:51:11 t 1 1 155935 220 0.00 2019-11-07 09:52:17 2019-11-07 09:52:52 t 1 1 155937 422 0.00 2019-11-07 09:52:53 2019-11-07 09:53:42 t 1 1 155942 623 0.00 2019-11-07 09:53:05 2019-11-07 09:55:19 t 1 1 155943 220 0.00 2019-11-07 09:54:02 2019-11-07 09:55:28 t 1 1 155944 619 0.00 2019-11-07 09:51:41 2019-11-07 09:55:57 t 1 1 155946 220 0.00 2019-11-07 09:55:28 2019-11-07 09:56:04 t 1 1 155948 220 0.00 2019-11-07 09:56:03 2019-11-07 09:57:03 t 1 1 155950 623 0.00 2019-11-07 09:57:21 2019-11-07 09:57:22 t 1 1 155951 220 0.00 2019-11-07 09:57:03 2019-11-07 09:57:36 t 1 1 155955 220 0.00 2019-11-07 09:58:20 2019-11-07 09:58:51 t 1 1 155960 220 0.00 2019-11-07 10:01:04 2019-11-07 10:03:11 t 1 1 155961 445 0.00 2019-11-07 09:37:29 2019-11-07 10:03:52 t 1 1 155966 220 0.00 2019-11-07 10:03:52 2019-11-07 10:07:19 t 1 1 155967 220 0.00 2019-11-07 10:07:19 2019-11-07 10:07:52 t 1 1 155968 220 0.00 2019-11-07 10:07:52 2019-11-07 10:08:27 t 1 1 155970 623 0.00 2019-11-07 10:08:30 2019-11-07 10:08:40 t 1 1 155976 615 0.00 2019-11-07 10:04:32 2019-11-07 10:12:00 t 1 1 155977 623 0.00 2019-11-07 10:12:21 2019-11-07 10:12:52 t 1 1 155981 562 0.00 2019-11-07 10:16:23 2019-11-07 10:16:42 t 1 1 155982 623 0.00 2019-11-07 10:16:52 2019-11-07 10:17:16 t 1 1 155985 445 0.00 2019-11-07 10:03:54 2019-11-07 10:19:19 t 1 1 155990 595 0.00 2019-11-07 10:23:47 2019-11-07 10:26:06 t 1 1 155991 562 0.00 2019-11-07 10:27:11 2019-11-07 10:28:51 t 1 1 155993 637 0.00 2019-11-07 09:50:38 2019-11-07 10:29:08 t 1 1 155994 445 0.00 2019-11-07 10:24:32 2019-11-07 10:32:18 t 1 1 155995 562 0.00 2019-11-07 10:32:32 2019-11-07 10:33:01 t 1 1 155997 570 0.00 2019-11-07 10:32:44 2019-11-07 10:35:15 t 1 1 155998 445 0.00 2019-11-07 10:34:16 2019-11-07 10:36:28 t 1 1 156000 625 0.00 2019-11-07 09:41:30 2019-11-07 10:38:23 t 1 1 156002 623 0.00 2019-11-07 10:23:30 2019-11-07 10:41:16 t 1 1 156004 615 0.00 2019-11-07 10:40:27 2019-11-07 10:42:25 t 1 1 156006 619 0.00 2019-11-07 10:34:40 2019-11-07 10:44:24 t 1 1 156010 645 0.00 2019-11-07 10:45:44 2019-11-07 10:45:50 t 1 1 156014 623 0.00 2019-11-07 10:44:21 2019-11-07 10:46:55 t 1 1 156016 623 0.00 2019-11-07 10:46:09 2019-11-07 10:47:00 t 1 1 156017 623 0.00 2019-11-07 10:47:03 2019-11-07 10:47:26 t 1 1 156021 645 0.00 2019-11-07 10:48:09 2019-11-07 10:48:20 t 1 1 156022 545 0.00 2019-11-07 10:43:57 2019-11-07 10:48:37 t 1 1 156024 645 0.00 2019-11-07 10:47:11 2019-11-07 10:48:55 t 1 1 156026 445 0.00 2019-11-07 10:48:04 2019-11-07 10:49:58 t 1 1 156030 645 0.00 2019-11-07 10:50:04 2019-11-07 10:51:49 t 1 1 156032 562 0.00 2019-11-07 10:51:24 2019-11-07 10:52:19 t 1 1 156035 623 0.00 2019-11-07 10:56:17 2019-11-07 10:56:18 t 1 1 156036 562 0.00 2019-11-07 10:58:10 2019-11-07 10:58:53 t 1 1 156037 623 0.00 2019-11-07 11:00:22 2019-11-07 11:00:38 t 1 1 156041 562 0.00 2019-11-07 11:02:12 2019-11-07 11:03:47 t 1 1 156048 562 0.00 2019-11-07 11:08:09 2019-11-07 11:08:55 t 1 1 156056 609 0.00 2019-11-07 10:08:59 2019-11-07 11:13:54 t 1 1 156058 645 0.00 2019-11-07 11:11:51 2019-11-07 11:14:21 t 1 1 156062 520 0.00 2019-11-07 11:13:25 2019-11-07 11:16:44 t 1 1 156064 445 0.00 2019-11-07 10:56:08 2019-11-07 11:17:01 t 1 1 156065 645 0.00 2019-11-07 11:15:46 2019-11-07 11:17:15 t 1 1 156067 449 0.00 2019-11-07 11:01:40 2019-11-07 11:17:51 t 1 1 156072 562 0.00 2019-11-07 11:12:15 2019-11-07 11:19:06 t 1 1 156077 422 0.00 2019-11-07 11:20:01 2019-11-07 11:24:34 t 1 1 156081 512 0.00 2019-11-07 11:21:35 2019-11-07 11:29:52 t 1 1 156087 520 0.00 2019-11-07 11:30:49 2019-11-07 11:32:46 t 1 1 156092 623 0.00 2019-11-07 11:34:49 2019-11-07 11:35:55 t 1 1 156094 416 0.00 2019-11-07 11:06:14 2019-11-07 11:39:01 t 1 1 156099 520 0.00 2019-11-07 11:40:06 2019-11-07 11:44:04 t 1 1 156101 416 0.00 2019-11-07 11:39:01 2019-11-07 11:46:57 t 1 1 156103 562 0.00 2019-11-07 11:46:28 2019-11-07 11:49:49 t 1 1 156105 445 0.00 2019-11-07 11:49:42 2019-11-07 11:50:44 t 1 1 156106 516 0.00 2019-11-07 11:48:08 2019-11-07 11:51:26 t 1 1 156109 623 0.00 2019-11-07 11:51:53 2019-11-07 11:53:04 t 1 1 156111 538 0.00 2019-11-07 11:50:07 2019-11-07 11:53:33 t 1 1 156113 445 0.00 2019-11-07 11:53:24 2019-11-07 11:56:02 t 1 1 156116 623 0.00 2019-11-07 11:56:22 2019-11-07 11:59:10 t 1 1 156119 591 0.00 2019-11-07 11:54:32 2019-11-07 12:03:04 t 1 1 156121 449 0.00 2019-11-07 12:01:58 2019-11-07 12:09:21 t 1 1 156125 623 0.00 2019-11-07 12:13:26 2019-11-07 12:13:35 t 1 1 156130 379 0.00 2019-11-07 12:09:01 2019-11-07 12:17:11 t 1 1 156134 609 0.00 2019-11-07 11:49:34 2019-11-07 12:20:56 t 1 1 156139 562 0.00 2019-11-07 12:25:22 2019-11-07 12:26:43 t 1 1 156140 490 0.00 2019-11-07 12:20:40 2019-11-07 12:27:32 t 1 1 156141 623 0.00 2019-11-07 12:26:47 2019-11-07 12:28:21 t 1 1 156143 445 0.00 2019-11-07 12:26:15 2019-11-07 12:29:15 t 1 1 156147 615 0.00 2019-11-07 12:19:35 2019-11-07 12:31:11 t 1 1 156150 220 0.00 2019-11-07 11:59:23 2019-11-07 12:33:48 t 1 1 156151 570 0.00 2019-11-07 12:30:59 2019-11-07 12:34:23 t 1 1 156152 416 0.00 2019-11-07 11:46:57 2019-11-07 12:35:48 t 1 1 156155 623 0.00 2019-11-07 12:37:22 2019-11-07 12:37:31 t 1 1 156156 619 0.00 2019-11-07 12:28:57 2019-11-07 12:38:46 t 1 1 156157 562 0.00 2019-11-07 12:39:38 2019-11-07 12:40:35 t 1 1 156161 564 0.00 2019-11-07 11:13:03 2019-11-07 12:46:48 t 1 1 156162 570 0.00 2019-11-07 12:34:23 2019-11-07 12:47:14 t 1 1 156166 445 0.00 2019-11-07 12:29:15 2019-11-07 12:51:03 t 1 1 156169 625 0.00 2019-11-07 12:17:36 2019-11-07 12:52:20 t 1 1 156171 220 0.00 2019-11-07 12:35:58 2019-11-07 12:55:05 t 1 1 156174 623 0.00 2019-11-07 12:56:20 2019-11-07 12:56:42 t 1 1 156175 623 0.00 2019-11-07 12:56:47 2019-11-07 12:57:08 t 1 1 156179 562 0.00 2019-11-07 13:01:08 2019-11-07 13:01:51 t 1 1 156181 619 0.00 2019-11-07 12:53:48 2019-11-07 13:02:20 t 1 1 156182 623 0.00 2019-11-07 13:00:54 2019-11-07 13:03:23 t 1 1 156185 623 0.00 2019-11-07 13:06:05 2019-11-07 13:08:52 t 1 1 156193 625 0.00 2019-11-07 13:10:11 2019-11-07 13:17:24 t 1 1 156194 623 0.00 2019-11-07 13:19:23 2019-11-07 13:19:28 t 1 1 156198 625 0.00 2019-11-07 13:20:27 2019-11-07 13:21:39 t 1 1 156200 591 0.00 2019-11-07 13:19:23 2019-11-07 13:23:21 t 1 1 156201 623 0.00 2019-11-07 13:23:29 2019-11-07 13:24:05 t 1 1 156202 623 0.00 2019-11-07 13:24:18 2019-11-07 13:24:19 t 1 1 156205 623 0.00 2019-11-07 13:26:11 2019-11-07 13:27:13 t 1 1 156207 623 0.00 2019-11-07 13:28:15 2019-11-07 13:30:04 t 1 1 156210 625 0.00 2019-11-07 13:21:47 2019-11-07 13:36:56 t 1 1 156211 591 0.00 2019-11-07 13:32:11 2019-11-07 13:36:58 t 1 1 156212 623 0.00 2019-11-07 13:38:08 2019-11-07 13:38:21 t 1 1 156216 623 0.00 2019-11-07 13:39:28 2019-11-07 13:39:29 t 1 1 156218 623 0.00 2019-11-07 13:43:14 2019-11-07 13:43:54 t 1 1 156222 445 0.00 2019-11-07 12:52:12 2019-11-07 13:50:14 t 1 1 156223 623 0.00 2019-11-07 13:51:00 2019-11-07 13:51:02 t 1 1 156224 591 0.00 2019-11-07 13:46:31 2019-11-07 13:52:56 t 1 1 156233 562 0.00 2019-11-07 14:00:22 2019-11-07 14:01:17 t 1 1 156237 562 0.00 2019-11-07 14:10:10 2019-11-07 14:10:31 t 1 1 156240 578 0.00 2019-11-07 13:58:54 2019-11-07 14:15:56 t 1 1 156241 538 0.00 2019-11-07 14:04:25 2019-11-07 14:16:02 t 1 1 156243 562 0.00 2019-11-07 14:14:33 2019-11-07 14:17:41 t 1 1 156245 619 0.00 2019-11-07 14:17:55 2019-11-07 14:21:01 t 1 1 156252 585 0.00 2019-11-07 14:26:46 2019-11-07 14:28:14 t 1 1 156256 645 0.00 2019-11-07 14:26:46 2019-11-07 14:30:51 t 1 1 156261 416 0.00 2019-11-07 12:35:48 2019-11-07 14:39:11 t 1 1 156263 591 0.00 2019-11-07 14:37:41 2019-11-07 14:39:16 t 1 1 156266 645 0.00 2019-11-07 14:40:12 2019-11-07 14:40:38 t 1 1 156267 562 0.00 2019-11-07 14:39:51 2019-11-07 14:41:30 t 1 1 156269 570 0.00 2019-11-07 14:27:48 2019-11-07 14:42:00 t 1 1 156280 562 0.00 2019-11-07 14:53:00 2019-11-07 14:54:56 t 1 1 156281 619 0.00 2019-11-07 14:48:16 2019-11-07 14:55:53 t 1 1 156283 562 0.00 2019-11-07 14:57:34 2019-11-07 14:57:42 t 1 1 156293 562 0.00 2019-11-07 15:03:33 2019-11-07 15:03:33 f 1 1 156296 623 0.00 2019-11-07 15:04:07 2019-11-07 15:04:44 t 1 1 156298 623 0.00 2019-11-07 15:05:05 2019-11-07 15:05:41 t 1 1 156299 623 0.00 2019-11-07 15:07:21 2019-11-07 15:07:57 t 1 1 156309 623 0.00 2019-11-07 15:15:16 2019-11-07 15:15:36 t 1 1 156311 526 0.00 2019-11-07 15:15:22 2019-11-07 15:17:04 t 1 1 156314 416 0.00 2019-11-07 15:00:03 2019-11-07 15:21:31 t 1 1 156315 619 0.00 2019-11-07 15:19:19 2019-11-07 15:22:08 t 1 1 156318 562 0.00 2019-11-07 15:24:44 2019-11-07 15:25:17 t 1 1 156321 562 0.00 2019-11-07 15:26:42 2019-11-07 15:27:44 t 1 1 156328 623 0.00 2019-11-07 15:25:17 2019-11-07 15:34:44 t 1 1 156329 220 0.00 2019-11-07 15:20:49 2019-11-07 15:35:53 t 1 1 156330 416 0.00 2019-11-07 15:21:31 2019-11-07 15:37:10 t 1 1 156331 451 0.00 2019-11-07 15:28:28 2019-11-07 15:39:07 t 1 1 156334 587 0.00 2019-11-07 15:29:55 2019-11-07 15:39:56 t 1 1 156335 516 0.00 2019-11-07 15:32:23 2019-11-07 15:40:42 t 1 1 156336 451 0.00 2019-11-07 15:39:07 2019-11-07 15:41:31 t 1 1 156340 619 0.00 2019-11-07 15:46:16 2019-11-07 15:51:33 t 1 1 156341 645 0.00 2019-11-07 15:16:37 2019-11-07 15:52:33 t 1 1 156342 445 0.00 2019-11-07 15:33:36 2019-11-07 15:53:52 t 1 1 156343 623 0.00 2019-11-07 15:44:31 2019-11-07 15:54:36 t 1 1 156346 422 0.00 2019-11-07 15:52:16 2019-11-07 15:56:55 t 1 1 156347 422 0.00 2019-11-07 15:57:16 2019-11-07 15:57:28 t 1 1 156348 422 0.00 2019-11-07 15:57:57 2019-11-07 15:58:05 t 1 1 156350 562 0.00 2019-11-07 15:44:57 2019-11-07 15:59:24 t 1 1 156357 623 0.00 2019-11-07 16:08:59 2019-11-07 16:09:15 t 1 1 156360 615 0.00 2019-11-07 16:10:45 2019-11-07 16:12:15 t 1 1 156361 556 0.00 2019-11-07 14:09:57 2019-11-07 16:13:57 t 1 1 156365 623 0.00 2019-11-07 16:20:44 2019-11-07 16:21:42 t 1 1 156366 623 0.00 2019-11-07 16:21:56 2019-11-07 16:22:10 t 1 1 156368 422 0.00 2019-11-07 16:21:49 2019-11-07 16:22:48 t 1 1 156371 619 0.00 2019-11-07 16:09:23 2019-11-07 16:24:31 t 1 1 156372 623 0.00 2019-11-07 16:25:47 2019-11-07 16:26:16 t 1 1 156374 623 0.00 2019-11-07 16:26:21 2019-11-07 16:26:35 t 1 1 156378 623 0.00 2019-11-07 16:27:42 2019-11-07 16:28:05 t 1 1 156379 562 0.00 2019-11-07 16:28:46 2019-11-07 16:28:54 t 1 1 156380 562 0.00 2019-11-07 16:29:12 2019-11-07 16:29:22 t 1 1 156382 637 0.00 2019-11-07 15:58:45 2019-11-07 16:32:09 t 1 1 156383 451 0.00 2019-11-07 16:15:20 2019-11-07 16:33:11 t 1 1 156384 445 0.00 2019-11-07 15:55:49 2019-11-07 16:34:18 t 1 1 156385 562 0.00 2019-11-07 16:36:39 2019-11-07 16:36:55 t 1 1 156389 503 0.00 2019-11-07 16:36:52 2019-11-07 16:40:01 t 1 1 156392 451 0.00 2019-11-07 16:33:11 2019-11-07 16:43:15 t 1 1 156394 619 0.00 2019-11-07 16:42:25 2019-11-07 16:46:05 t 1 1 156397 623 0.00 2019-11-07 16:28:46 2019-11-07 16:50:18 t 1 1 156400 578 0.00 2019-11-07 16:43:09 2019-11-07 16:52:49 t 1 1 156403 623 0.00 2019-11-07 16:53:47 2019-11-07 16:53:50 t 1 1 156404 623 0.00 2019-11-07 16:53:38 2019-11-07 16:54:03 t 1 1 156407 625 0.00 2019-11-07 16:37:41 2019-11-07 16:57:29 t 1 1 156409 631 0.00 2019-11-07 16:56:46 2019-11-07 16:57:44 t 1 1 156412 623 0.00 2019-11-07 16:57:36 2019-11-07 17:02:13 t 1 1 156422 451 0.00 2019-11-07 16:58:20 2019-11-07 17:09:32 t 1 1 156159 562 0.00 2019-11-07 12:41:15 2019-11-07 12:42:05 t 1 1 156164 562 0.00 2019-11-07 12:43:03 2019-11-07 12:48:14 t 1 1 156167 564 0.00 2019-11-07 12:46:48 2019-11-07 12:51:37 t 1 1 156176 564 0.00 2019-11-07 12:51:37 2019-11-07 12:57:22 t 1 1 156177 562 0.00 2019-11-07 12:48:38 2019-11-07 12:58:18 t 1 1 156183 619 0.00 2019-11-07 13:02:20 2019-11-07 13:07:13 t 1 1 156184 562 0.00 2019-11-07 13:07:14 2019-11-07 13:08:28 t 1 1 156188 562 0.00 2019-11-07 13:12:51 2019-11-07 13:15:46 t 1 1 156190 619 0.00 2019-11-07 13:08:28 2019-11-07 13:16:14 t 1 1 156195 619 0.00 2019-11-07 13:18:23 2019-11-07 13:20:18 t 1 1 156199 623 0.00 2019-11-07 13:22:04 2019-11-07 13:22:26 t 1 1 156203 562 0.00 2019-11-07 13:24:14 2019-11-07 13:24:35 t 1 1 156209 562 0.00 2019-11-07 13:34:57 2019-11-07 13:35:24 t 1 1 156215 623 0.00 2019-11-07 13:39:20 2019-11-07 13:39:23 t 1 1 156217 623 0.00 2019-11-07 13:42:56 2019-11-07 13:43:00 t 1 1 156219 562 0.00 2019-11-07 13:45:48 2019-11-07 13:46:07 t 1 1 156220 623 0.00 2019-11-07 13:48:59 2019-11-07 13:49:02 t 1 1 156221 619 0.00 2019-11-07 13:45:53 2019-11-07 13:50:03 t 1 1 156228 623 0.00 2019-11-07 13:54:13 2019-11-07 13:54:26 t 1 1 156229 562 0.00 2019-11-07 13:57:20 2019-11-07 13:57:29 t 1 1 156230 562 0.00 2019-11-07 13:57:43 2019-11-07 13:58:53 t 1 1 156232 562 0.00 2019-11-07 13:59:33 2019-11-07 13:59:42 t 1 1 156235 623 0.00 2019-11-07 13:59:03 2019-11-07 14:09:23 t 1 1 156236 510 0.00 2019-11-07 14:03:15 2019-11-07 14:10:20 t 1 1 156239 623 0.00 2019-11-07 14:11:33 2019-11-07 14:11:40 t 1 1 156242 516 0.00 2019-11-07 13:51:44 2019-11-07 14:16:49 t 1 1 156244 562 0.00 2019-11-07 14:19:37 2019-11-07 14:20:28 t 1 1 156246 623 0.00 2019-11-07 14:14:00 2019-11-07 14:24:56 t 1 1 156249 623 0.00 2019-11-07 14:27:25 2019-11-07 14:27:29 t 1 1 156251 499 0.00 2019-11-07 13:17:12 2019-11-07 14:27:53 t 1 1 156254 510 0.00 2019-11-07 14:10:20 2019-11-07 14:28:43 t 1 1 156257 483 0.00 2019-11-07 14:32:51 2019-11-07 14:34:26 t 1 1 156259 645 0.00 2019-11-07 14:34:02 2019-11-07 14:35:09 t 1 1 156260 645 0.00 2019-11-07 14:35:09 2019-11-07 14:37:20 t 1 1 156262 645 0.00 2019-11-07 14:37:39 2019-11-07 14:39:11 t 1 1 156264 483 0.00 2019-11-07 14:35:04 2019-11-07 14:39:39 t 1 1 156268 645 0.00 2019-11-07 14:40:38 2019-11-07 14:41:49 t 1 1 156270 617 0.00 2019-11-07 14:45:29 2019-11-07 14:45:41 t 1 1 156272 617 0.00 2019-11-07 14:47:21 2019-11-07 14:48:48 t 1 1 156273 538 0.00 2019-11-07 14:42:38 2019-11-07 14:49:29 t 1 1 156274 578 0.00 2019-11-07 14:28:55 2019-11-07 14:50:02 t 1 1 156277 617 0.00 2019-11-07 14:51:48 2019-11-07 14:53:29 t 1 1 156279 623 0.00 2019-11-07 14:40:13 2019-11-07 14:54:10 t 1 1 156286 220 0.00 2019-11-07 14:48:44 2019-11-07 14:59:06 t 1 1 156287 416 0.00 2019-11-07 14:39:16 2019-11-07 15:00:02 t 1 1 156288 499 0.00 2019-11-07 14:58:26 2019-11-07 15:01:01 t 1 1 156289 623 0.00 2019-11-07 14:54:10 2019-11-07 15:03:01 t 1 1 156290 562 0.00 2019-11-07 15:03:22 2019-11-07 15:03:22 f 1 1 156292 587 0.00 2019-11-07 14:57:36 2019-11-07 15:03:29 t 1 1 156294 566 0.00 2019-11-07 15:03:23 2019-11-07 15:03:46 t 1 1 156301 562 0.00 2019-11-07 15:08:10 2019-11-07 15:08:23 t 1 1 156303 445 0.00 2019-11-07 13:50:13 2019-11-07 15:08:41 t 1 1 156307 623 0.00 2019-11-07 15:12:19 2019-11-07 15:13:07 t 1 1 156308 526 0.00 2019-11-07 15:06:04 2019-11-07 15:15:22 t 1 1 156312 526 0.00 2019-11-07 15:17:04 2019-11-07 15:17:08 t 1 1 156316 623 0.00 2019-11-07 15:19:58 2019-11-07 15:22:26 t 1 1 156317 445 0.00 2019-11-07 15:08:40 2019-11-07 15:24:04 t 1 1 156319 562 0.00 2019-11-07 15:26:00 2019-11-07 15:26:16 t 1 1 156320 637 0.00 2019-11-07 12:56:16 2019-11-07 15:26:58 t 1 1 156325 445 0.00 2019-11-07 15:24:08 2019-11-07 15:32:35 t 1 1 156327 562 0.00 2019-11-07 15:33:54 2019-11-07 15:34:03 t 1 1 156332 637 0.00 2019-11-07 15:26:58 2019-11-07 15:39:29 t 1 1 156337 623 0.00 2019-11-07 15:34:44 2019-11-07 15:44:31 t 1 1 156338 562 0.00 2019-11-07 15:44:33 2019-11-07 15:44:41 t 1 1 156339 578 0.00 2019-11-07 14:58:07 2019-11-07 15:51:28 t 1 1 156344 445 0.00 2019-11-07 15:54:27 2019-11-07 15:55:45 t 1 1 156345 416 0.00 2019-11-07 15:41:01 2019-11-07 15:56:36 t 1 1 156353 623 0.00 2019-11-07 16:04:03 2019-11-07 16:05:23 t 1 1 156359 562 0.00 2019-11-07 16:11:16 2019-11-07 16:11:41 t 1 1 156362 623 0.00 2019-11-07 16:11:29 2019-11-07 16:14:43 t 1 1 156363 645 0.00 2019-11-07 16:05:33 2019-11-07 16:15:07 t 1 1 156364 422 0.00 2019-11-07 15:58:31 2019-11-07 16:20:48 t 1 1 156370 623 0.00 2019-11-07 16:22:20 2019-11-07 16:24:20 t 1 1 156373 562 0.00 2019-11-07 16:26:03 2019-11-07 16:26:17 t 1 1 156375 422 0.00 2019-11-07 16:26:51 2019-11-07 16:27:21 t 1 1 156381 625 0.00 2019-11-07 15:28:15 2019-11-07 16:30:58 t 1 1 156388 619 0.00 2019-11-07 16:31:12 2019-11-07 16:38:13 t 1 1 156391 578 0.00 2019-11-07 15:51:28 2019-11-07 16:43:09 t 1 1 156393 562 0.00 2019-11-07 16:45:22 2019-11-07 16:45:37 t 1 1 156395 637 0.00 2019-11-07 16:41:10 2019-11-07 16:46:25 t 1 1 156399 416 0.00 2019-11-07 15:56:40 2019-11-07 16:52:04 t 1 1 156402 623 0.00 2019-11-07 16:53:02 2019-11-07 16:53:38 t 1 1 156413 578 0.00 2019-11-07 16:52:49 2019-11-07 17:02:48 t 1 1 156415 625 0.00 2019-11-07 16:57:29 2019-11-07 17:03:23 t 1 1 156416 623 0.00 2019-11-07 17:05:10 2019-11-07 17:05:34 t 1 1 156418 623 0.00 2019-11-07 17:05:44 2019-11-07 17:05:45 t 1 1 156419 623 0.00 2019-11-07 17:06:54 2019-11-07 17:07:14 t 1 1 156423 445 0.00 2019-11-07 17:08:58 2019-11-07 17:09:47 t 1 1 156425 625 0.00 2019-11-07 17:03:23 2019-11-07 17:10:39 t 1 1 156427 562 0.00 2019-11-07 16:55:49 2019-11-07 17:11:23 t 1 1 156428 545 0.00 2019-11-07 17:04:12 2019-11-07 17:14:26 t 1 1 156430 578 0.00 2019-11-07 17:02:48 2019-11-07 17:15:08 t 1 1 156433 585 0.00 2019-11-07 17:12:11 2019-11-07 17:16:30 t 1 1 156437 611 0.00 2019-11-07 17:16:40 2019-11-07 17:19:36 t 1 1 156438 587 0.00 2019-11-07 17:07:31 2019-11-07 17:20:45 t 1 1 156439 623 0.00 2019-11-07 17:20:23 2019-11-07 17:21:05 t 1 1 156441 619 0.00 2019-11-07 17:14:40 2019-11-07 17:21:52 t 1 1 156442 585 0.00 2019-11-07 17:21:08 2019-11-07 17:23:14 t 1 1 156446 578 0.00 2019-11-07 17:15:08 2019-11-07 17:24:55 t 1 1 156447 562 0.00 2019-11-07 17:17:08 2019-11-07 17:27:04 t 1 1 156451 562 0.00 2019-11-07 17:27:22 2019-11-07 17:29:38 t 1 1 156452 623 0.00 2019-11-07 17:31:01 2019-11-07 17:31:10 t 1 1 156460 562 0.00 2019-11-07 17:34:32 2019-11-07 17:36:24 t 1 1 156464 623 0.00 2019-11-07 17:38:50 2019-11-07 17:39:56 t 1 1 156465 220 0.00 2019-11-07 17:32:28 2019-11-07 17:40:27 t 1 1 156468 619 0.00 2019-11-07 17:40:29 2019-11-07 17:43:09 t 1 1 156470 422 0.00 2019-11-07 17:32:16 2019-11-07 17:44:45 t 1 1 156168 595 0.00 2019-11-07 12:41:03 2019-11-07 12:52:15 t 1 1 156170 623 0.00 2019-11-07 12:48:31 2019-11-07 12:54:47 t 1 1 156172 637 0.00 2019-11-07 12:44:26 2019-11-07 12:56:16 t 1 1 156173 623 0.00 2019-11-07 12:54:47 2019-11-07 12:56:21 t 1 1 156178 625 0.00 2019-11-07 12:52:20 2019-11-07 13:01:40 t 1 1 156180 564 0.00 2019-11-07 12:57:22 2019-11-07 13:02:11 t 1 1 156186 545 0.00 2019-11-07 13:05:22 2019-11-07 13:10:17 t 1 1 156187 623 0.00 2019-11-07 13:12:02 2019-11-07 13:13:56 t 1 1 156189 623 0.00 2019-11-07 13:14:51 2019-11-07 13:15:52 t 1 1 156191 591 0.00 2019-11-07 13:05:01 2019-11-07 13:16:27 t 1 1 156192 499 0.00 2019-11-07 04:31:01 2019-11-07 13:17:13 t 1 1 156196 623 0.00 2019-11-07 13:20:17 2019-11-07 13:20:23 t 1 1 156197 556 0.00 2019-11-07 11:41:25 2019-11-07 13:21:28 t 1 1 156204 570 0.00 2019-11-07 12:47:35 2019-11-07 13:27:06 t 1 1 156206 623 0.00 2019-11-07 13:29:40 2019-11-07 13:29:52 t 1 1 156208 623 0.00 2019-11-07 13:30:03 2019-11-07 13:31:56 t 1 1 156213 623 0.00 2019-11-07 13:38:29 2019-11-07 13:38:44 t 1 1 156214 623 0.00 2019-11-07 13:38:51 2019-11-07 13:39:07 t 1 1 156225 481 0.00 2019-11-07 12:46:29 2019-11-07 13:53:24 t 1 1 156226 562 0.00 2019-11-07 13:53:25 2019-11-07 13:53:52 t 1 1 156227 623 0.00 2019-11-07 13:54:02 2019-11-07 13:54:08 t 1 1 156231 578 0.00 2019-11-07 10:32:13 2019-11-07 13:58:54 t 1 1 156234 379 0.00 2019-11-07 13:03:49 2019-11-07 14:03:58 t 1 1 156238 623 0.00 2019-11-07 14:10:28 2019-11-07 14:11:09 t 1 1 156247 623 0.00 2019-11-07 14:25:01 2019-11-07 14:25:14 t 1 1 156248 562 0.00 2019-11-07 14:27:05 2019-11-07 14:27:17 t 1 1 156250 570 0.00 2019-11-07 13:26:51 2019-11-07 14:27:42 t 1 1 156253 623 0.00 2019-11-07 14:28:25 2019-11-07 14:28:37 t 1 1 156255 578 0.00 2019-11-07 14:15:56 2019-11-07 14:28:55 t 1 1 156258 562 0.00 2019-11-07 14:29:25 2019-11-07 14:34:30 t 1 1 156265 623 0.00 2019-11-07 14:30:46 2019-11-07 14:40:07 t 1 1 156271 617 0.00 2019-11-07 14:45:49 2019-11-07 14:47:05 t 1 1 156275 566 0.00 2019-11-07 14:41:23 2019-11-07 14:50:59 t 1 1 156276 562 0.00 2019-11-07 14:50:40 2019-11-07 14:51:10 t 1 1 156278 645 0.00 2019-11-07 14:51:07 2019-11-07 14:53:41 t 1 1 156282 516 0.00 2019-11-07 14:49:07 2019-11-07 14:56:56 t 1 1 156284 578 0.00 2019-11-07 14:50:02 2019-11-07 14:58:04 t 1 1 156285 499 0.00 2019-11-07 14:28:40 2019-11-07 14:58:26 t 1 1 156291 566 0.00 2019-11-07 14:50:59 2019-11-07 15:03:23 t 1 1 156295 570 0.00 2019-11-07 15:04:42 2019-11-07 15:04:42 f 1 1 156297 562 0.00 2019-11-07 15:05:13 2019-11-07 15:05:13 f 1 1 156300 623 0.00 2019-11-07 15:08:02 2019-11-07 15:08:04 t 1 1 156302 587 0.00 2019-11-07 15:03:49 2019-11-07 15:08:29 t 1 1 156304 623 0.00 2019-11-07 15:10:12 2019-11-07 15:11:09 t 1 1 156305 623 0.00 2019-11-07 15:11:25 2019-11-07 15:12:13 t 1 1 156306 625 0.00 2019-11-07 13:36:56 2019-11-07 15:12:46 t 1 1 156310 645 0.00 2019-11-07 15:10:26 2019-11-07 15:16:19 t 1 1 156313 562 0.00 2019-11-07 15:18:59 2019-11-07 15:19:09 t 1 1 156322 625 0.00 2019-11-07 15:12:44 2019-11-07 15:28:15 t 1 1 156323 551 0.00 2019-11-07 06:40:58 2019-11-07 15:28:53 t 1 1 156324 587 0.00 2019-11-07 15:15:07 2019-11-07 15:29:30 t 1 1 156326 562 0.00 2019-11-07 15:32:21 2019-11-07 15:32:46 t 1 1 156333 562 0.00 2019-11-07 15:39:26 2019-11-07 15:39:47 t 1 1 156349 637 0.00 2019-11-07 15:39:29 2019-11-07 15:58:45 t 1 1 156351 623 0.00 2019-11-07 15:54:36 2019-11-07 16:02:11 t 1 1 156352 562 0.00 2019-11-07 15:59:23 2019-11-07 16:03:53 t 1 1 156354 645 0.00 2019-11-07 15:52:33 2019-11-07 16:05:33 t 1 1 156355 562 0.00 2019-11-07 16:07:56 2019-11-07 16:08:10 t 1 1 156356 538 0.00 2019-11-07 16:02:55 2019-11-07 16:09:06 t 1 1 156358 623 0.00 2019-11-07 16:09:20 2019-11-07 16:10:20 t 1 1 156367 562 0.00 2019-11-07 16:22:00 2019-11-07 16:22:24 t 1 1 156369 623 0.00 2019-11-07 16:21:49 2019-11-07 16:22:57 t 1 1 156376 623 0.00 2019-11-07 16:27:13 2019-11-07 16:27:22 t 1 1 156377 619 0.00 2019-11-07 16:24:31 2019-11-07 16:27:59 t 1 1 156386 625 0.00 2019-11-07 16:31:31 2019-11-07 16:37:38 t 1 1 156387 422 0.00 2019-11-07 16:37:44 2019-11-07 16:37:50 t 1 1 156390 637 0.00 2019-11-07 16:32:09 2019-11-07 16:41:10 t 1 1 156396 591 0.00 2019-11-07 16:45:33 2019-11-07 16:48:29 t 1 1 156398 456 0.00 2019-11-07 16:31:01 2019-11-07 16:50:59 t 1 1 156401 623 0.00 2019-11-07 16:53:23 2019-11-07 16:53:26 t 1 1 156405 623 0.00 2019-11-07 16:54:17 2019-11-07 16:54:18 t 1 1 156406 623 0.00 2019-11-07 16:54:02 2019-11-07 16:55:03 t 1 1 156408 623 0.00 2019-11-07 16:55:34 2019-11-07 16:57:37 t 1 1 156410 451 0.00 2019-11-07 16:43:15 2019-11-07 16:58:20 t 1 1 156411 445 0.00 2019-11-07 16:38:53 2019-11-07 16:59:17 t 1 1 156414 645 0.00 2019-11-07 17:01:01 2019-11-07 17:03:13 t 1 1 156417 445 0.00 2019-11-07 16:59:53 2019-11-07 17:05:41 t 1 1 156420 422 0.00 2019-11-07 17:06:22 2019-11-07 17:07:27 t 1 1 156421 445 0.00 2019-11-07 17:06:31 2019-11-07 17:08:31 t 1 1 156426 623 0.00 2019-11-07 17:09:18 2019-11-07 17:10:54 t 1 1 156432 545 0.00 2019-11-07 17:14:26 2019-11-07 17:15:41 t 1 1 156436 623 0.00 2019-11-07 17:18:37 2019-11-07 17:18:46 t 1 1 156443 422 0.00 2019-11-07 17:20:28 2019-11-07 17:23:39 t 1 1 156444 645 0.00 2019-11-07 17:20:49 2019-11-07 17:24:29 t 1 1 156448 422 0.00 2019-11-07 17:27:40 2019-11-07 17:28:04 t 1 1 156449 623 0.00 2019-11-07 17:29:18 2019-11-07 17:29:27 t 1 1 156453 422 0.00 2019-11-07 17:29:46 2019-11-07 17:31:21 t 1 1 156454 623 0.00 2019-11-07 17:32:46 2019-11-07 17:33:10 t 1 1 156455 625 0.00 2019-11-07 17:10:38 2019-11-07 17:34:22 t 1 1 156458 578 0.00 2019-11-07 17:24:55 2019-11-07 17:35:55 t 1 1 156459 545 0.00 2019-11-07 17:27:03 2019-11-07 17:36:04 t 1 1 156461 445 0.00 2019-11-07 17:10:02 2019-11-07 17:36:26 t 1 1 156462 623 0.00 2019-11-07 17:37:01 2019-11-07 17:37:11 t 1 1 156463 623 0.00 2019-11-07 17:37:33 2019-11-07 17:38:37 t 1 1 156466 619 0.00 2019-11-07 17:26:20 2019-11-07 17:40:29 t 1 1 156469 623 0.00 2019-11-07 17:42:19 2019-11-07 17:43:19 t 1 1 156471 220 0.00 2019-11-07 17:39:56 2019-11-07 17:44:46 t 1 1 156475 625 0.00 2019-11-07 17:34:22 2019-11-07 17:48:58 t 1 1 156478 623 0.00 2019-11-07 17:51:30 2019-11-07 17:51:41 t 1 1 156480 623 0.00 2019-11-07 17:53:11 2019-11-07 17:53:20 t 1 1 156481 562 0.00 2019-11-07 17:53:32 2019-11-07 17:55:00 t 1 1 156483 619 0.00 2019-11-07 17:55:43 2019-11-07 17:57:10 t 1 1 156486 625 0.00 2019-11-07 17:48:58 2019-11-07 18:02:29 t 1 1 156487 623 0.00 2019-11-07 18:01:59 2019-11-07 18:03:07 t 1 1 156497 645 0.00 2019-11-07 18:10:34 2019-11-07 18:12:27 t 1 1 156498 587 0.00 2019-11-07 18:10:07 2019-11-07 18:13:12 t 1 1 156500 562 0.00 2019-11-07 18:13:12 2019-11-07 18:13:55 t 1 1 156424 551 0.00 2019-11-07 15:28:53 2019-11-07 17:10:39 t 1 1 156429 623 0.00 2019-11-07 17:14:31 2019-11-07 17:14:32 t 1 1 156431 416 0.00 2019-11-07 16:52:04 2019-11-07 17:15:35 t 1 1 156434 623 0.00 2019-11-07 17:16:54 2019-11-07 17:17:25 t 1 1 156435 623 0.00 2019-11-07 17:17:59 2019-11-07 17:18:30 t 1 1 156440 587 0.00 2019-11-07 17:20:45 2019-11-07 17:21:49 t 1 1 156445 623 0.00 2019-11-07 17:24:11 2019-11-07 17:24:41 t 1 1 156450 611 0.00 2019-11-07 17:26:04 2019-11-07 17:29:29 t 1 1 156456 623 0.00 2019-11-07 17:34:38 2019-11-07 17:34:47 t 1 1 156457 416 0.00 2019-11-07 17:15:35 2019-11-07 17:35:45 t 1 1 156467 623 0.00 2019-11-07 17:40:55 2019-11-07 17:41:03 t 1 1 156472 611 0.00 2019-11-07 17:39:20 2019-11-07 17:44:55 t 1 1 156473 637 0.00 2019-11-07 16:46:25 2019-11-07 17:45:15 t 1 1 156474 562 0.00 2019-11-07 17:46:08 2019-11-07 17:46:31 t 1 1 156485 545 0.00 2019-11-07 17:50:11 2019-11-07 18:02:08 t 1 1 156490 562 0.00 2019-11-07 18:05:23 2019-11-07 18:05:51 t 1 1 156493 623 0.00 2019-11-07 18:09:25 2019-11-07 18:09:35 t 1 1 156501 623 0.00 2019-11-07 18:14:36 2019-11-07 18:14:37 t 1 1 156502 623 0.00 2019-11-07 18:15:42 2019-11-07 18:16:13 t 1 1 156504 481 0.00 2019-11-07 13:53:24 2019-11-07 18:17:01 t 1 1 156506 645 0.00 2019-11-07 18:16:50 2019-11-07 18:18:12 t 1 1 156508 623 0.00 2019-11-07 18:19:47 2019-11-07 18:20:00 t 1 1 156512 587 0.00 2019-11-07 18:20:52 2019-11-07 18:21:32 t 1 1 156518 481 0.00 2019-11-07 18:21:18 2019-11-07 18:24:57 t 1 1 156519 623 0.00 2019-11-07 18:24:36 2019-11-07 18:25:00 t 1 1 156522 623 0.00 2019-11-07 18:27:10 2019-11-07 18:27:34 t 1 1 156523 562 0.00 2019-11-07 18:28:54 2019-11-07 18:29:18 t 1 1 156525 416 0.00 2019-11-07 17:35:45 2019-11-07 18:31:31 t 1 1 156527 623 0.00 2019-11-07 18:29:20 2019-11-07 18:31:40 t 1 1 156530 456 0.00 2019-11-07 18:35:16 2019-11-07 18:36:33 t 1 1 156537 422 0.00 2019-11-07 18:42:05 2019-11-07 18:42:15 t 1 1 156541 623 0.00 2019-11-07 18:44:57 2019-11-07 18:45:14 t 1 1 156548 623 0.00 2019-11-07 18:50:39 2019-11-07 18:50:49 t 1 1 156550 551 0.00 2019-11-07 18:36:44 2019-11-07 18:51:48 t 1 1 156552 625 0.00 2019-11-07 18:27:50 2019-11-07 18:52:29 t 1 1 156556 538 0.00 2019-11-07 18:36:14 2019-11-07 18:55:20 t 1 1 156561 619 0.00 2019-11-07 18:55:34 2019-11-07 18:57:07 t 1 1 156562 430 0.00 2019-11-07 18:57:57 2019-11-07 18:57:58 t 1 1 156563 587 0.00 2019-11-07 18:54:41 2019-11-07 18:59:05 t 1 1 156565 562 0.00 2019-11-07 18:59:09 2019-11-07 18:59:43 t 1 1 156570 422 0.00 2019-11-07 19:01:54 2019-11-07 19:02:07 t 1 1 156576 430 0.00 2019-11-07 19:03:40 2019-11-07 19:03:42 t 1 1 156577 220 0.00 2019-11-07 19:03:17 2019-11-07 19:03:55 t 1 1 156582 566 0.00 2019-11-07 18:55:21 2019-11-07 19:04:46 t 1 1 156584 625 0.00 2019-11-07 19:04:04 2019-11-07 19:05:17 t 1 1 156585 220 0.00 2019-11-07 19:05:05 2019-11-07 19:05:41 t 1 1 156589 516 0.00 2019-11-07 18:59:10 2019-11-07 19:07:03 t 1 1 156591 220 0.00 2019-11-07 19:07:30 2019-11-07 19:08:04 t 1 1 156596 430 0.00 2019-11-07 19:08:53 2019-11-07 19:09:00 t 1 1 156597 220 0.00 2019-11-07 19:08:41 2019-11-07 19:09:12 t 1 1 156599 562 0.00 2019-11-07 19:09:58 2019-11-07 19:10:16 t 1 1 156605 625 0.00 2019-11-07 19:05:26 2019-11-07 19:13:27 t 1 1 156611 623 0.00 2019-11-07 18:56:40 2019-11-07 19:17:10 t 1 1 156614 422 0.00 2019-11-07 19:17:56 2019-11-07 19:18:05 t 1 1 156616 562 0.00 2019-11-07 19:18:13 2019-11-07 19:18:38 t 1 1 156620 430 0.00 2019-11-07 19:21:20 2019-11-07 19:21:21 t 1 1 156623 430 0.00 2019-11-07 19:22:17 2019-11-07 19:22:59 t 1 1 156626 545 0.00 2019-11-07 18:46:19 2019-11-07 19:23:38 t 1 1 156627 220 0.00 2019-11-07 19:23:29 2019-11-07 19:24:03 t 1 1 156629 587 0.00 2019-11-07 19:19:46 2019-11-07 19:24:32 t 1 1 156632 623 0.00 2019-11-07 19:24:37 2019-11-07 19:24:46 t 1 1 156633 623 0.00 2019-11-07 19:24:58 2019-11-07 19:25:09 t 1 1 156635 220 0.00 2019-11-07 19:24:41 2019-11-07 19:25:16 t 1 1 156637 220 0.00 2019-11-07 19:25:15 2019-11-07 19:25:54 t 1 1 156640 220 0.00 2019-11-07 19:26:27 2019-11-07 19:27:05 t 1 1 156642 637 0.00 2019-11-07 19:03:47 2019-11-07 19:27:37 t 1 1 156644 430 0.00 2019-11-07 19:27:36 2019-11-07 19:27:43 t 1 1 156652 623 0.00 2019-11-07 19:29:44 2019-11-07 19:29:52 t 1 1 156654 220 0.00 2019-11-07 19:29:29 2019-11-07 19:30:05 t 1 1 156656 562 0.00 2019-11-07 19:30:15 2019-11-07 19:30:26 t 1 1 156658 220 0.00 2019-11-07 19:30:43 2019-11-07 19:31:18 t 1 1 156661 220 0.00 2019-11-07 19:31:55 2019-11-07 19:32:30 t 1 1 156662 220 0.00 2019-11-07 19:32:30 2019-11-07 19:33:07 t 1 1 156666 220 0.00 2019-11-07 19:34:51 2019-11-07 19:35:29 t 1 1 156669 623 0.00 2019-11-07 19:35:49 2019-11-07 19:36:00 t 1 1 156671 562 0.00 2019-11-07 19:35:47 2019-11-07 19:36:13 t 1 1 156681 422 0.00 2019-11-07 19:40:38 2019-11-07 19:40:45 t 1 1 156682 220 0.00 2019-11-07 19:40:18 2019-11-07 19:40:53 t 1 1 156683 623 0.00 2019-11-07 19:40:34 2019-11-07 19:41:06 t 1 1 156685 578 0.00 2019-11-07 17:35:55 2019-11-07 19:41:53 t 1 1 156686 570 0.00 2019-11-07 19:12:27 2019-11-07 19:41:56 t 1 1 156687 220 0.00 2019-11-07 19:41:31 2019-11-07 19:42:04 t 1 1 156691 220 0.00 2019-11-07 19:43:18 2019-11-07 19:43:56 t 1 1 156692 623 0.00 2019-11-07 19:43:59 2019-11-07 19:44:09 t 1 1 156694 220 0.00 2019-11-07 19:43:56 2019-11-07 19:44:31 t 1 1 156701 545 0.00 2019-11-07 19:41:18 2019-11-07 19:46:22 t 1 1 156704 587 0.00 2019-11-07 19:44:56 2019-11-07 19:47:31 t 1 1 156707 220 0.00 2019-11-07 19:48:03 2019-11-07 19:48:35 t 1 1 156711 220 0.00 2019-11-07 19:49:16 2019-11-07 19:49:47 t 1 1 156714 220 0.00 2019-11-07 19:50:21 2019-11-07 19:50:28 t 1 1 156721 220 0.00 2019-11-07 19:52:16 2019-11-07 19:52:45 t 1 1 156724 220 0.00 2019-11-07 19:52:57 2019-11-07 19:53:23 t 1 1 156727 430 0.00 2019-11-07 19:52:04 2019-11-07 19:54:00 t 1 1 156729 220 0.00 2019-11-07 19:54:13 2019-11-07 19:54:33 t 1 1 156731 220 0.00 2019-11-07 19:54:33 2019-11-07 19:54:48 t 1 1 156735 220 0.00 2019-11-07 19:55:23 2019-11-07 19:55:44 t 1 1 156736 220 0.00 2019-11-07 19:55:44 2019-11-07 19:56:02 t 1 1 156739 645 0.00 2019-11-07 19:54:18 2019-11-07 19:56:21 t 1 1 156741 220 0.00 2019-11-07 19:56:16 2019-11-07 19:56:36 t 1 1 156745 623 0.00 2019-11-07 19:56:43 2019-11-07 19:56:55 t 1 1 156750 220 0.00 2019-11-07 19:58:21 2019-11-07 19:58:59 t 1 1 156751 220 0.00 2019-11-07 19:58:59 2019-11-07 19:59:34 t 1 1 156753 220 0.00 2019-11-07 19:59:34 2019-11-07 20:00:12 t 1 1 156755 220 0.00 2019-11-07 20:00:12 2019-11-07 20:00:47 t 1 1 156756 220 0.00 2019-11-07 20:00:46 2019-11-07 20:01:24 t 1 1 156757 220 0.00 2019-11-07 20:01:24 2019-11-07 20:01:57 t 1 1 156761 220 0.00 2019-11-07 18:41:55 2019-11-07 20:03:02 t 1 1 156476 516 0.00 2019-11-07 17:33:54 2019-11-07 17:49:39 t 1 1 156477 545 0.00 2019-11-07 17:36:04 2019-11-07 17:50:11 t 1 1 156479 623 0.00 2019-11-07 17:53:02 2019-11-07 17:53:11 t 1 1 156482 562 0.00 2019-11-07 17:56:58 2019-11-07 17:57:06 t 1 1 156484 623 0.00 2019-11-07 17:54:22 2019-11-07 18:01:59 t 1 1 156488 623 0.00 2019-11-07 18:03:15 2019-11-07 18:03:18 t 1 1 156489 562 0.00 2019-11-07 18:04:16 2019-11-07 18:04:59 t 1 1 156491 625 0.00 2019-11-07 18:02:53 2019-11-07 18:08:34 t 1 1 156492 623 0.00 2019-11-07 18:03:32 2019-11-07 18:09:17 t 1 1 156494 545 0.00 2019-11-07 18:02:08 2019-11-07 18:10:18 t 1 1 156495 516 0.00 2019-11-07 18:06:59 2019-11-07 18:10:56 t 1 1 156496 619 0.00 2019-11-07 18:07:19 2019-11-07 18:12:21 t 1 1 156499 623 0.00 2019-11-07 18:12:28 2019-11-07 18:13:29 t 1 1 156503 623 0.00 2019-11-07 18:15:30 2019-11-07 18:16:57 t 1 1 156507 587 0.00 2019-11-07 18:14:36 2019-11-07 18:18:18 t 1 1 156510 562 0.00 2019-11-07 18:20:08 2019-11-07 18:20:36 t 1 1 156513 623 0.00 2019-11-07 18:22:50 2019-11-07 18:23:00 t 1 1 156515 587 0.00 2019-11-07 18:22:12 2019-11-07 18:23:57 t 1 1 156520 623 0.00 2019-11-07 18:25:24 2019-11-07 18:25:36 t 1 1 156524 545 0.00 2019-11-07 18:10:18 2019-11-07 18:30:37 t 1 1 156528 566 0.00 2019-11-07 18:07:01 2019-11-07 18:31:48 t 1 1 156531 551 0.00 2019-11-07 18:20:11 2019-11-07 18:36:44 t 1 1 156533 422 0.00 2019-11-07 17:47:57 2019-11-07 18:40:06 t 1 1 156535 591 0.00 2019-11-07 17:03:06 2019-11-07 18:40:44 t 1 1 156536 422 0.00 2019-11-07 18:40:49 2019-11-07 18:40:51 t 1 1 156538 587 0.00 2019-11-07 18:40:42 2019-11-07 18:43:50 t 1 1 156539 623 0.00 2019-11-07 18:44:19 2019-11-07 18:44:45 t 1 1 156542 545 0.00 2019-11-07 18:32:16 2019-11-07 18:46:19 t 1 1 156543 621 0.00 2019-11-07 18:46:31 2019-11-07 18:46:34 t 1 1 156546 516 0.00 2019-11-07 18:43:50 2019-11-07 18:47:19 t 1 1 156551 623 0.00 2019-11-07 18:52:04 2019-11-07 18:52:04 t 1 1 156557 566 0.00 2019-11-07 18:31:48 2019-11-07 18:55:21 t 1 1 156558 430 0.00 2019-11-07 18:45:15 2019-11-07 18:55:47 t 1 1 156559 430 0.00 2019-11-07 18:55:52 2019-11-07 18:55:58 t 1 1 156560 430 0.00 2019-11-07 18:56:03 2019-11-07 18:56:46 t 1 1 156566 430 0.00 2019-11-07 18:59:16 2019-11-07 18:59:52 t 1 1 156571 220 0.00 2019-11-07 19:01:32 2019-11-07 19:02:07 t 1 1 156572 220 0.00 2019-11-07 19:02:07 2019-11-07 19:02:45 t 1 1 156574 430 0.00 2019-11-07 19:02:50 2019-11-07 19:02:56 t 1 1 156575 220 0.00 2019-11-07 19:02:45 2019-11-07 19:03:17 t 1 1 156580 220 0.00 2019-11-07 19:03:54 2019-11-07 19:04:28 t 1 1 156586 220 0.00 2019-11-07 19:05:40 2019-11-07 19:06:18 t 1 1 156588 220 0.00 2019-11-07 19:06:18 2019-11-07 19:06:53 t 1 1 156592 551 0.00 2019-11-07 18:51:48 2019-11-07 19:08:10 t 1 1 156593 220 0.00 2019-11-07 19:08:03 2019-11-07 19:08:42 t 1 1 156602 220 0.00 2019-11-07 19:11:02 2019-11-07 19:11:37 t 1 1 156603 430 0.00 2019-11-07 19:11:50 2019-11-07 19:11:59 t 1 1 156606 566 0.00 2019-11-07 19:04:46 2019-11-07 19:13:47 t 1 1 156607 556 0.00 2019-11-07 18:54:21 2019-11-07 19:14:00 t 1 1 156608 587 0.00 2019-11-07 19:07:51 2019-11-07 19:16:10 t 1 1 156609 430 0.00 2019-11-07 19:16:11 2019-11-07 19:16:20 t 1 1 156612 587 0.00 2019-11-07 19:16:10 2019-11-07 19:18:00 t 1 1 156618 623 0.00 2019-11-07 19:19:53 2019-11-07 19:19:56 t 1 1 156619 430 0.00 2019-11-07 19:20:54 2019-11-07 19:21:01 t 1 1 156621 566 0.00 2019-11-07 19:13:47 2019-11-07 19:21:46 t 1 1 156624 551 0.00 2019-11-07 19:16:28 2019-11-07 19:23:27 t 1 1 156625 220 0.00 2019-11-07 19:11:36 2019-11-07 19:23:29 t 1 1 156630 220 0.00 2019-11-07 19:24:03 2019-11-07 19:24:41 t 1 1 156634 430 0.00 2019-11-07 19:25:08 2019-11-07 19:25:14 t 1 1 156636 562 0.00 2019-11-07 19:24:59 2019-11-07 19:25:22 t 1 1 156641 623 0.00 2019-11-07 19:26:33 2019-11-07 19:27:09 t 1 1 156646 220 0.00 2019-11-07 19:27:38 2019-11-07 19:28:16 t 1 1 156653 623 0.00 2019-11-07 19:29:58 2019-11-07 19:29:59 t 1 1 156660 623 0.00 2019-11-07 19:30:51 2019-11-07 19:32:01 t 1 1 156665 220 0.00 2019-11-07 19:34:17 2019-11-07 19:34:51 t 1 1 156667 623 0.00 2019-11-07 19:35:25 2019-11-07 19:35:29 t 1 1 156674 220 0.00 2019-11-07 19:36:42 2019-11-07 19:37:19 t 1 1 156675 220 0.00 2019-11-07 19:37:19 2019-11-07 19:37:58 t 1 1 156677 220 0.00 2019-11-07 19:37:57 2019-11-07 19:38:29 t 1 1 156679 220 0.00 2019-11-07 19:39:07 2019-11-07 19:39:40 t 1 1 156690 220 0.00 2019-11-07 19:42:41 2019-11-07 19:43:18 t 1 1 156693 625 0.00 2019-11-07 19:38:34 2019-11-07 19:44:21 t 1 1 156695 587 0.00 2019-11-07 19:41:06 2019-11-07 19:44:42 t 1 1 156698 625 0.00 2019-11-07 19:45:06 2019-11-07 19:45:59 t 1 1 156699 220 0.00 2019-11-07 19:45:40 2019-11-07 19:46:18 t 1 1 156705 562 0.00 2019-11-07 19:45:33 2019-11-07 19:47:33 t 1 1 156706 220 0.00 2019-11-07 19:47:30 2019-11-07 19:48:04 t 1 1 156710 220 0.00 2019-11-07 19:49:09 2019-11-07 19:49:17 t 1 1 156713 220 0.00 2019-11-07 19:49:50 2019-11-07 19:50:22 t 1 1 156718 220 0.00 2019-11-07 19:51:34 2019-11-07 19:51:40 t 1 1 156720 220 0.00 2019-11-07 19:52:09 2019-11-07 19:52:17 t 1 1 156723 623 0.00 2019-11-07 19:44:48 2019-11-07 19:53:01 t 1 1 156726 220 0.00 2019-11-07 19:53:36 2019-11-07 19:53:57 t 1 1 156730 623 0.00 2019-11-07 19:54:24 2019-11-07 19:54:34 t 1 1 156734 430 0.00 2019-11-07 19:55:07 2019-11-07 19:55:38 t 1 1 156738 220 0.00 2019-11-07 19:56:02 2019-11-07 19:56:16 t 1 1 156740 623 0.00 2019-11-07 19:56:07 2019-11-07 19:56:32 t 1 1 156742 220 0.00 2019-11-07 19:56:36 2019-11-07 19:56:40 t 1 1 156744 422 0.00 2019-11-07 19:40:51 2019-11-07 19:56:51 t 1 1 156747 220 0.00 2019-11-07 19:57:09 2019-11-07 19:57:47 t 1 1 156748 220 0.00 2019-11-07 19:57:46 2019-11-07 19:58:22 t 1 1 156752 578 0.00 2019-11-07 19:41:53 2019-11-07 19:59:36 t 1 1 156754 637 0.00 2019-11-07 19:28:42 2019-11-07 20:00:34 t 1 1 156758 619 0.00 2019-11-07 19:58:30 2019-11-07 20:02:18 t 1 1 156759 220 0.00 2019-11-07 20:01:57 2019-11-07 20:02:35 t 1 1 156764 422 0.00 2019-11-07 20:02:40 2019-11-07 20:03:25 t 1 1 156768 430 0.00 2019-11-07 20:03:29 2019-11-07 20:04:18 t 1 1 156771 220 0.00 2019-11-07 20:04:20 2019-11-07 20:04:58 t 1 1 156772 220 0.00 2019-11-07 20:04:58 2019-11-07 20:05:32 t 1 1 156774 220 0.00 2019-11-07 20:05:32 2019-11-07 20:06:10 t 1 1 156776 422 0.00 2019-11-07 20:05:29 2019-11-07 20:06:31 t 1 1 156778 220 0.00 2019-11-07 20:06:10 2019-11-07 20:06:44 t 1 1 156780 220 0.00 2019-11-07 20:06:44 2019-11-07 20:07:21 t 1 1 156782 645 0.00 2019-11-07 20:03:32 2019-11-07 20:07:56 t 1 1 156785 430 0.00 2019-11-07 20:08:23 2019-11-07 20:08:41 t 1 1 156789 430 0.00 2019-11-07 20:09:27 2019-11-07 20:09:38 t 1 1 156791 220 0.00 2019-11-07 20:09:40 2019-11-07 20:10:13 t 1 1 156505 623 0.00 2019-11-07 18:16:18 2019-11-07 18:17:57 t 1 1 156509 551 0.00 2019-11-07 18:01:39 2019-11-07 18:20:11 t 1 1 156511 481 0.00 2019-11-07 18:17:01 2019-11-07 18:21:18 t 1 1 156514 587 0.00 2019-11-07 18:22:59 2019-11-07 18:23:45 t 1 1 156516 625 0.00 2019-11-07 18:09:09 2019-11-07 18:24:11 t 1 1 156517 562 0.00 2019-11-07 18:24:14 2019-11-07 18:24:45 t 1 1 156521 625 0.00 2019-11-07 18:25:07 2019-11-07 18:27:21 t 1 1 156526 587 0.00 2019-11-07 18:28:27 2019-11-07 18:31:35 t 1 1 156529 456 0.00 2019-11-07 18:25:06 2019-11-07 18:35:16 t 1 1 156532 562 0.00 2019-11-07 18:36:50 2019-11-07 18:37:23 t 1 1 156534 587 0.00 2019-11-07 18:33:36 2019-11-07 18:40:42 t 1 1 156540 645 0.00 2019-11-07 18:43:05 2019-11-07 18:44:56 t 1 1 156544 562 0.00 2019-11-07 18:46:13 2019-11-07 18:46:47 t 1 1 156545 623 0.00 2019-11-07 18:46:49 2019-11-07 18:46:59 t 1 1 156547 645 0.00 2019-11-07 18:47:16 2019-11-07 18:49:03 t 1 1 156549 591 0.00 2019-11-07 18:40:44 2019-11-07 18:51:45 t 1 1 156553 623 0.00 2019-11-07 18:52:26 2019-11-07 18:52:49 t 1 1 156554 562 0.00 2019-11-07 18:53:06 2019-11-07 18:53:35 t 1 1 156555 587 0.00 2019-11-07 18:48:05 2019-11-07 18:54:41 t 1 1 156564 220 0.00 2019-11-07 18:36:30 2019-11-07 18:59:40 t 1 1 156567 220 0.00 2019-11-07 18:59:40 2019-11-07 19:00:18 t 1 1 156568 220 0.00 2019-11-07 19:00:18 2019-11-07 19:00:54 t 1 1 156569 220 0.00 2019-11-07 19:00:54 2019-11-07 19:01:32 t 1 1 156573 430 0.00 2019-11-07 19:02:40 2019-11-07 19:02:45 t 1 1 156578 625 0.00 2019-11-07 18:52:44 2019-11-07 19:03:58 t 1 1 156579 615 0.00 2019-11-07 18:58:13 2019-11-07 19:04:28 t 1 1 156581 430 0.00 2019-11-07 19:04:27 2019-11-07 19:04:33 t 1 1 156583 220 0.00 2019-11-07 19:04:28 2019-11-07 19:05:06 t 1 1 156587 587 0.00 2019-11-07 19:00:33 2019-11-07 19:06:47 t 1 1 156590 220 0.00 2019-11-07 19:06:53 2019-11-07 19:07:31 t 1 1 156594 430 0.00 2019-11-07 19:06:17 2019-11-07 19:08:48 t 1 1 156595 564 0.00 2019-11-07 18:22:45 2019-11-07 19:08:58 t 1 1 156598 220 0.00 2019-11-07 19:09:12 2019-11-07 19:09:50 t 1 1 156600 220 0.00 2019-11-07 19:09:50 2019-11-07 19:10:26 t 1 1 156601 220 0.00 2019-11-07 19:10:25 2019-11-07 19:11:03 t 1 1 156604 422 0.00 2019-11-07 19:12:45 2019-11-07 19:12:57 t 1 1 156610 551 0.00 2019-11-07 19:08:10 2019-11-07 19:16:28 t 1 1 156613 430 0.00 2019-11-07 19:17:04 2019-11-07 19:18:05 t 1 1 156615 591 0.00 2019-11-07 19:17:17 2019-11-07 19:18:34 t 1 1 156617 556 0.00 2019-11-07 19:14:00 2019-11-07 19:19:35 t 1 1 156622 562 0.00 2019-11-07 19:19:36 2019-11-07 19:21:56 t 1 1 156628 430 0.00 2019-11-07 19:24:06 2019-11-07 19:24:08 t 1 1 156631 545 0.00 2019-11-07 19:23:38 2019-11-07 19:24:44 t 1 1 156638 625 0.00 2019-11-07 19:20:25 2019-11-07 19:26:19 t 1 1 156639 220 0.00 2019-11-07 19:25:54 2019-11-07 19:26:27 t 1 1 156643 220 0.00 2019-11-07 19:27:05 2019-11-07 19:27:38 t 1 1 156645 593 0.00 2019-11-07 19:15:51 2019-11-07 19:28:09 t 1 1 156647 587 0.00 2019-11-07 19:24:32 2019-11-07 19:28:29 t 1 1 156648 422 0.00 2019-11-07 19:28:33 2019-11-07 19:28:43 t 1 1 156649 220 0.00 2019-11-07 19:28:15 2019-11-07 19:28:51 t 1 1 156650 220 0.00 2019-11-07 19:28:51 2019-11-07 19:29:29 t 1 1 156651 430 0.00 2019-11-07 19:28:50 2019-11-07 19:29:52 t 1 1 156655 551 0.00 2019-11-07 19:23:28 2019-11-07 19:30:26 t 1 1 156657 220 0.00 2019-11-07 19:30:05 2019-11-07 19:30:43 t 1 1 156659 220 0.00 2019-11-07 19:31:17 2019-11-07 19:31:55 t 1 1 156663 220 0.00 2019-11-07 19:33:07 2019-11-07 19:33:41 t 1 1 156664 220 0.00 2019-11-07 19:33:41 2019-11-07 19:34:18 t 1 1 156668 587 0.00 2019-11-07 19:29:43 2019-11-07 19:35:36 t 1 1 156670 220 0.00 2019-11-07 19:35:29 2019-11-07 19:36:04 t 1 1 156672 220 0.00 2019-11-07 19:36:04 2019-11-07 19:36:42 t 1 1 156673 422 0.00 2019-11-07 19:36:57 2019-11-07 19:36:59 t 1 1 156676 625 0.00 2019-11-07 19:26:26 2019-11-07 19:38:27 t 1 1 156678 220 0.00 2019-11-07 19:38:29 2019-11-07 19:39:07 t 1 1 156680 220 0.00 2019-11-07 19:39:40 2019-11-07 19:40:18 t 1 1 156684 220 0.00 2019-11-07 19:40:53 2019-11-07 19:41:31 t 1 1 156688 220 0.00 2019-11-07 19:42:04 2019-11-07 19:42:42 t 1 1 156689 570 0.00 2019-11-07 19:41:56 2019-11-07 19:42:57 t 1 1 156696 220 0.00 2019-11-07 19:44:31 2019-11-07 19:45:08 t 1 1 156697 220 0.00 2019-11-07 19:45:08 2019-11-07 19:45:40 t 1 1 156700 591 0.00 2019-11-07 19:41:14 2019-11-07 19:46:19 t 1 1 156702 220 0.00 2019-11-07 19:46:18 2019-11-07 19:46:53 t 1 1 156703 220 0.00 2019-11-07 19:46:53 2019-11-07 19:47:31 t 1 1 156708 220 0.00 2019-11-07 19:48:34 2019-11-07 19:48:42 t 1 1 156709 220 0.00 2019-11-07 19:48:42 2019-11-07 19:49:10 t 1 1 156712 220 0.00 2019-11-07 19:49:47 2019-11-07 19:49:51 t 1 1 156715 220 0.00 2019-11-07 19:50:28 2019-11-07 19:50:56 t 1 1 156716 220 0.00 2019-11-07 19:50:56 2019-11-07 19:51:05 t 1 1 156717 220 0.00 2019-11-07 19:51:04 2019-11-07 19:51:34 t 1 1 156719 220 0.00 2019-11-07 19:51:39 2019-11-07 19:52:10 t 1 1 156722 220 0.00 2019-11-07 19:52:45 2019-11-07 19:52:57 t 1 1 156725 220 0.00 2019-11-07 19:53:23 2019-11-07 19:53:36 t 1 1 156728 220 0.00 2019-11-07 19:53:57 2019-11-07 19:54:13 t 1 1 156732 220 0.00 2019-11-07 19:54:48 2019-11-07 19:55:11 t 1 1 156733 220 0.00 2019-11-07 19:55:11 2019-11-07 19:55:24 t 1 1 156737 623 0.00 2019-11-07 19:55:31 2019-11-07 19:56:08 t 1 1 156743 562 0.00 2019-11-07 19:56:17 2019-11-07 19:56:40 t 1 1 156746 220 0.00 2019-11-07 19:56:54 2019-11-07 19:57:09 t 1 1 156749 591 0.00 2019-11-07 19:55:22 2019-11-07 19:58:25 t 1 1 156760 545 0.00 2019-11-07 19:59:05 2019-11-07 20:03:02 t 1 1 156762 220 0.00 2019-11-07 20:02:35 2019-11-07 20:03:08 t 1 1 156765 220 0.00 2019-11-07 20:03:08 2019-11-07 20:03:46 t 1 1 156766 585 0.00 2019-11-07 20:02:26 2019-11-07 20:03:59 t 1 1 156775 430 0.00 2019-11-07 20:04:27 2019-11-07 20:06:18 t 1 1 156777 430 0.00 2019-11-07 20:06:28 2019-11-07 20:06:39 t 1 1 156779 587 0.00 2019-11-07 19:50:15 2019-11-07 20:06:51 t 1 1 156786 587 0.00 2019-11-07 20:07:04 2019-11-07 20:08:44 t 1 1 156787 430 0.00 2019-11-07 20:08:48 2019-11-07 20:08:53 t 1 1 156788 220 0.00 2019-11-07 20:08:31 2019-11-07 20:09:04 t 1 1 156793 220 0.00 2019-11-07 20:10:13 2019-11-07 20:10:51 t 1 1 156794 220 0.00 2019-11-07 20:10:51 2019-11-07 20:11:26 t 1 1 156795 220 0.00 2019-11-07 20:11:26 2019-11-07 20:12:03 t 1 1 156798 483 0.00 2019-11-07 20:05:46 2019-11-07 20:12:58 t 1 1 156800 587 0.00 2019-11-07 20:08:51 2019-11-07 20:13:42 t 1 1 156801 430 0.00 2019-11-07 20:13:43 2019-11-07 20:13:47 t 1 1 156805 430 0.00 2019-11-07 20:14:25 2019-11-07 20:14:36 t 1 1 156806 430 0.00 2019-11-07 20:14:45 2019-11-07 20:14:51 t 1 1 156809 562 0.00 2019-11-07 20:14:40 2019-11-07 20:15:02 t 1 1 156763 430 0.00 2019-11-07 19:57:08 2019-11-07 20:03:19 t 1 1 156767 562 0.00 2019-11-07 20:03:53 2019-11-07 20:04:17 t 1 1 156769 220 0.00 2019-11-07 20:03:46 2019-11-07 20:04:20 t 1 1 156770 562 0.00 2019-11-07 20:04:30 2019-11-07 20:04:57 t 1 1 156773 483 0.00 2019-11-07 20:05:36 2019-11-07 20:05:40 t 1 1 156781 220 0.00 2019-11-07 20:07:21 2019-11-07 20:07:54 t 1 1 156783 430 0.00 2019-11-07 20:06:51 2019-11-07 20:08:18 t 1 1 156784 220 0.00 2019-11-07 20:07:53 2019-11-07 20:08:31 t 1 1 156790 220 0.00 2019-11-07 20:09:03 2019-11-07 20:09:40 t 1 1 156792 625 0.00 2019-11-07 19:46:02 2019-11-07 20:10:32 t 1 1 156796 623 0.00 2019-11-07 19:57:07 2019-11-07 20:12:36 t 1 1 156797 220 0.00 2019-11-07 20:12:03 2019-11-07 20:12:37 t 1 1 156807 220 0.00 2019-11-07 20:14:25 2019-11-07 20:14:57 t 1 1 156810 220 0.00 2019-11-07 20:14:57 2019-11-07 20:15:35 t 1 1 156811 220 0.00 2019-11-07 20:15:35 2019-11-07 20:16:09 t 1 1 156813 220 0.00 2019-11-07 20:16:09 2019-11-07 20:16:46 t 1 1 156818 220 0.00 2019-11-07 20:17:57 2019-11-07 20:18:32 t 1 1 156821 422 0.00 2019-11-07 20:19:06 2019-11-07 20:19:16 t 1 1 156822 220 0.00 2019-11-07 20:19:08 2019-11-07 20:19:39 t 1 1 156830 220 0.00 2019-11-07 20:20:48 2019-11-07 20:21:25 t 1 1 156832 623 0.00 2019-11-07 20:21:29 2019-11-07 20:21:38 t 1 1 156833 220 0.00 2019-11-07 20:21:25 2019-11-07 20:21:58 t 1 1 156836 220 0.00 2019-11-07 20:21:57 2019-11-07 20:22:36 t 1 1 156843 220 0.00 2019-11-07 20:23:45 2019-11-07 20:24:24 t 1 1 156846 220 0.00 2019-11-07 20:24:24 2019-11-07 20:25:00 t 1 1 156852 220 0.00 2019-11-07 20:27:23 2019-11-07 20:27:58 t 1 1 156858 220 0.00 2019-11-07 20:28:35 2019-11-07 20:29:11 t 1 1 156861 570 0.00 2019-11-07 20:22:49 2019-11-07 20:29:47 t 1 1 156866 430 0.00 2019-11-07 20:29:27 2019-11-07 20:30:58 t 1 1 156871 220 0.00 2019-11-07 20:32:08 2019-11-07 20:32:39 t 1 1 156874 422 0.00 2019-11-07 20:27:38 2019-11-07 20:32:51 t 1 1 156875 623 0.00 2019-11-07 20:33:06 2019-11-07 20:33:12 t 1 1 156877 430 0.00 2019-11-07 20:33:30 2019-11-07 20:33:36 t 1 1 156879 220 0.00 2019-11-07 20:33:16 2019-11-07 20:33:50 t 1 1 156881 430 0.00 2019-11-07 20:34:29 2019-11-07 20:34:34 t 1 1 156886 220 0.00 2019-11-07 20:34:59 2019-11-07 20:35:35 t 1 1 156888 430 0.00 2019-11-07 20:35:42 2019-11-07 20:35:44 t 1 1 156889 220 0.00 2019-11-07 20:35:35 2019-11-07 20:36:08 t 1 1 156892 430 0.00 2019-11-07 20:37:47 2019-11-07 20:37:49 t 1 1 156897 430 0.00 2019-11-07 20:38:53 2019-11-07 20:39:02 t 1 1 156899 570 0.00 2019-11-07 20:29:47 2019-11-07 20:39:12 t 1 1 156903 220 0.00 2019-11-07 20:39:40 2019-11-07 20:40:17 t 1 1 156904 623 0.00 2019-11-07 20:40:44 2019-11-07 20:40:47 t 1 1 156907 645 0.00 2019-11-07 20:36:11 2019-11-07 20:41:05 t 1 1 156910 220 0.00 2019-11-07 20:40:48 2019-11-07 20:41:25 t 1 1 156913 422 0.00 2019-11-07 20:41:57 2019-11-07 20:42:02 t 1 1 156918 430 0.00 2019-11-07 20:42:07 2019-11-07 20:43:58 t 1 1 156921 220 0.00 2019-11-07 20:44:24 2019-11-07 20:45:01 t 1 1 156925 220 0.00 2019-11-07 20:45:35 2019-11-07 20:46:13 t 1 1 156927 623 0.00 2019-11-07 20:46:26 2019-11-07 20:46:35 t 1 1 156928 220 0.00 2019-11-07 20:46:13 2019-11-07 20:46:47 t 1 1 156930 623 0.00 2019-11-07 20:46:51 2019-11-07 20:46:56 t 1 1 156931 570 0.00 2019-11-07 20:39:12 2019-11-07 20:47:22 t 1 1 156932 220 0.00 2019-11-07 20:46:46 2019-11-07 20:47:24 t 1 1 156937 623 0.00 2019-11-07 20:48:47 2019-11-07 20:48:56 t 1 1 156938 220 0.00 2019-11-07 20:48:36 2019-11-07 20:49:08 t 1 1 156940 220 0.00 2019-11-07 20:49:08 2019-11-07 20:49:46 t 1 1 156943 430 0.00 2019-11-07 20:51:18 2019-11-07 20:51:25 t 1 1 156944 430 0.00 2019-11-07 20:50:33 2019-11-07 20:51:58 t 1 1 156946 570 0.00 2019-11-07 20:48:24 2019-11-07 20:53:59 t 1 1 156948 562 0.00 2019-11-07 20:53:38 2019-11-07 20:54:08 t 1 1 156952 422 0.00 2019-11-07 20:55:26 2019-11-07 20:56:58 t 1 1 156954 430 0.00 2019-11-07 20:57:14 2019-11-07 20:57:26 t 1 1 156956 623 0.00 2019-11-07 20:58:46 2019-11-07 20:58:49 t 1 1 156958 422 0.00 2019-11-07 20:58:56 2019-11-07 20:59:58 t 1 1 156960 430 0.00 2019-11-07 21:00:36 2019-11-07 21:00:42 t 1 1 156962 562 0.00 2019-11-07 21:02:41 2019-11-07 21:03:07 t 1 1 156964 551 0.00 2019-11-07 20:53:39 2019-11-07 21:04:00 t 1 1 156965 623 0.00 2019-11-07 21:04:44 2019-11-07 21:04:47 t 1 1 156966 516 0.00 2019-11-07 21:01:49 2019-11-07 21:05:34 t 1 1 156970 619 0.00 2019-11-07 21:01:18 2019-11-07 21:08:20 t 1 1 156974 422 0.00 2019-11-07 21:08:58 2019-11-07 21:09:15 t 1 1 156981 562 0.00 2019-11-07 21:11:11 2019-11-07 21:11:56 t 1 1 156986 597 0.00 2019-11-07 21:14:58 2019-11-07 21:16:44 t 1 1 156988 220 0.00 2019-11-07 20:50:20 2019-11-07 21:17:46 t 1 1 156989 578 0.00 2019-11-07 19:59:36 2019-11-07 21:19:13 t 1 1 156990 591 0.00 2019-11-07 20:52:39 2019-11-07 21:21:06 t 1 1 156996 551 0.00 2019-11-07 21:16:26 2019-11-07 21:25:44 t 1 1 156997 510 0.00 2019-11-07 21:19:22 2019-11-07 21:26:41 t 1 1 156998 220 0.00 2019-11-07 21:23:14 2019-11-07 21:30:16 t 1 1 156999 422 0.00 2019-11-07 21:27:20 2019-11-07 21:31:30 t 1 1 157000 619 0.00 2019-11-07 21:18:16 2019-11-07 21:32:05 t 1 1 157004 456 0.00 2019-11-07 21:05:55 2019-11-07 21:35:51 t 1 1 157005 625 0.00 2019-11-07 20:56:44 2019-11-07 21:36:54 t 1 1 157010 562 0.00 2019-11-07 21:36:44 2019-11-07 21:40:43 t 1 1 157013 220 0.00 2019-11-07 21:37:29 2019-11-07 21:43:44 t 1 1 157014 562 0.00 2019-11-07 21:42:39 2019-11-07 21:44:03 t 1 1 157021 220 0.00 2019-11-07 21:46:39 2019-11-07 21:46:50 t 1 1 157022 422 0.00 2019-11-07 21:46:57 2019-11-07 21:46:59 t 1 1 157027 220 0.00 2019-11-07 21:47:27 2019-11-07 21:47:38 t 1 1 157031 220 0.00 2019-11-07 21:48:15 2019-11-07 21:48:26 t 1 1 157035 220 0.00 2019-11-07 21:48:50 2019-11-07 21:49:04 t 1 1 157038 220 0.00 2019-11-07 21:49:27 2019-11-07 21:49:38 t 1 1 157041 220 0.00 2019-11-07 21:50:02 2019-11-07 21:50:16 t 1 1 157044 220 0.00 2019-11-07 21:50:39 2019-11-07 21:50:51 t 1 1 157046 591 0.00 2019-11-07 21:21:06 2019-11-07 21:50:58 t 1 1 157047 220 0.00 2019-11-07 21:50:50 2019-11-07 21:51:05 t 1 1 157048 220 0.00 2019-11-07 21:51:04 2019-11-07 21:51:15 t 1 1 157050 220 0.00 2019-11-07 21:51:15 2019-11-07 21:51:29 t 1 1 157052 551 0.00 2019-11-07 21:25:44 2019-11-07 21:51:34 t 1 1 157053 220 0.00 2019-11-07 21:51:28 2019-11-07 21:51:39 t 1 1 157055 220 0.00 2019-11-07 21:51:52 2019-11-07 21:52:03 t 1 1 157057 220 0.00 2019-11-07 21:52:03 2019-11-07 21:52:17 t 1 1 157060 220 0.00 2019-11-07 21:52:27 2019-11-07 21:52:37 t 1 1 157062 422 0.00 2019-11-07 21:55:18 2019-11-07 21:55:23 t 1 1 157064 430 0.00 2019-11-07 21:45:18 2019-11-07 21:59:11 t 1 1 157067 520 0.00 2019-11-07 21:50:19 2019-11-07 21:59:40 t 1 1 156799 220 0.00 2019-11-07 20:12:37 2019-11-07 20:13:16 t 1 1 156802 220 0.00 2019-11-07 20:13:16 2019-11-07 20:13:48 t 1 1 156803 430 0.00 2019-11-07 20:13:52 2019-11-07 20:13:58 t 1 1 156804 220 0.00 2019-11-07 20:13:47 2019-11-07 20:14:25 t 1 1 156808 570 0.00 2019-11-07 19:42:56 2019-11-07 20:14:59 t 1 1 156812 587 0.00 2019-11-07 20:13:42 2019-11-07 20:16:14 t 1 1 156815 220 0.00 2019-11-07 20:16:46 2019-11-07 20:17:20 t 1 1 156817 422 0.00 2019-11-07 20:15:18 2019-11-07 20:18:19 t 1 1 156823 623 0.00 2019-11-07 20:12:36 2019-11-07 20:19:57 t 1 1 156825 220 0.00 2019-11-07 20:19:39 2019-11-07 20:20:17 t 1 1 156826 220 0.00 2019-11-07 20:20:16 2019-11-07 20:20:48 t 1 1 156828 483 0.00 2019-11-07 20:17:38 2019-11-07 20:20:56 t 1 1 156829 623 0.00 2019-11-07 20:20:54 2019-11-07 20:21:23 t 1 1 156831 562 0.00 2019-11-07 20:21:00 2019-11-07 20:21:27 t 1 1 156834 430 0.00 2019-11-07 20:20:34 2019-11-07 20:21:58 t 1 1 156838 570 0.00 2019-11-07 20:22:33 2019-11-07 20:22:50 t 1 1 156839 623 0.00 2019-11-07 20:22:55 2019-11-07 20:23:02 t 1 1 156840 220 0.00 2019-11-07 20:22:35 2019-11-07 20:23:09 t 1 1 156841 220 0.00 2019-11-07 20:23:09 2019-11-07 20:23:45 t 1 1 156844 430 0.00 2019-11-07 20:24:19 2019-11-07 20:24:50 t 1 1 156845 623 0.00 2019-11-07 20:23:08 2019-11-07 20:24:58 t 1 1 156851 430 0.00 2019-11-07 20:27:25 2019-11-07 20:27:32 t 1 1 156855 220 0.00 2019-11-07 20:27:58 2019-11-07 20:28:36 t 1 1 156857 220 0.00 2019-11-07 20:22:29 2019-11-07 20:29:03 t 1 1 156859 490 0.00 2019-11-07 20:27:40 2019-11-07 20:29:20 t 1 1 156863 645 0.00 2019-11-07 20:29:32 2019-11-07 20:30:46 t 1 1 156868 220 0.00 2019-11-07 20:30:57 2019-11-07 20:31:32 t 1 1 156869 220 0.00 2019-11-07 20:31:32 2019-11-07 20:32:08 t 1 1 156872 430 0.00 2019-11-07 20:32:29 2019-11-07 20:32:41 t 1 1 156878 623 0.00 2019-11-07 20:33:35 2019-11-07 20:33:43 t 1 1 156880 220 0.00 2019-11-07 20:33:50 2019-11-07 20:34:25 t 1 1 156884 220 0.00 2019-11-07 20:34:25 2019-11-07 20:34:59 t 1 1 156890 220 0.00 2019-11-07 20:36:07 2019-11-07 20:36:46 t 1 1 156891 220 0.00 2019-11-07 20:36:45 2019-11-07 20:37:18 t 1 1 156894 430 0.00 2019-11-07 20:36:45 2019-11-07 20:37:58 t 1 1 156895 220 0.00 2019-11-07 20:37:55 2019-11-07 20:38:30 t 1 1 156901 220 0.00 2019-11-07 20:39:06 2019-11-07 20:39:40 t 1 1 156902 625 0.00 2019-11-07 20:10:25 2019-11-07 20:40:16 t 1 1 156909 430 0.00 2019-11-07 20:41:06 2019-11-07 20:41:09 t 1 1 156911 422 0.00 2019-11-07 20:35:31 2019-11-07 20:41:39 t 1 1 156917 220 0.00 2019-11-07 20:43:13 2019-11-07 20:43:51 t 1 1 156919 625 0.00 2019-11-07 20:42:23 2019-11-07 20:43:59 t 1 1 156920 220 0.00 2019-11-07 20:43:51 2019-11-07 20:44:24 t 1 1 156922 556 0.00 2019-11-07 19:19:35 2019-11-07 20:45:26 t 1 1 156923 220 0.00 2019-11-07 20:45:01 2019-11-07 20:45:36 t 1 1 156924 623 0.00 2019-11-07 20:46:04 2019-11-07 20:46:07 t 1 1 156929 562 0.00 2019-11-07 20:46:36 2019-11-07 20:46:50 t 1 1 156933 570 0.00 2019-11-07 20:47:02 2019-11-07 20:47:46 t 1 1 156935 570 0.00 2019-11-07 20:47:22 2019-11-07 20:48:18 t 1 1 156936 220 0.00 2019-11-07 20:47:58 2019-11-07 20:48:36 t 1 1 156939 570 0.00 2019-11-07 20:47:46 2019-11-07 20:49:26 t 1 1 156941 645 0.00 2019-11-07 20:48:07 2019-11-07 20:49:57 t 1 1 156949 538 0.00 2019-11-07 20:53:43 2019-11-07 20:55:44 t 1 1 156950 430 0.00 2019-11-07 20:56:16 2019-11-07 20:56:28 t 1 1 156953 430 0.00 2019-11-07 20:56:45 2019-11-07 20:57:03 t 1 1 156959 623 0.00 2019-11-07 20:59:38 2019-11-07 21:00:09 t 1 1 156967 623 0.00 2019-11-07 21:06:04 2019-11-07 21:06:09 t 1 1 156971 623 0.00 2019-11-07 21:08:05 2019-11-07 21:08:39 t 1 1 156972 430 0.00 2019-11-07 21:07:46 2019-11-07 21:08:58 t 1 1 156973 623 0.00 2019-11-07 21:09:03 2019-11-07 21:09:03 f 1 1 156976 623 0.00 2019-11-07 21:09:28 2019-11-07 21:09:28 f 1 1 156978 623 0.00 2019-11-07 21:09:40 2019-11-07 21:09:40 f 1 1 156980 623 0.00 2019-11-07 21:08:51 2019-11-07 21:10:58 t 1 1 156983 430 0.00 2019-11-07 21:09:51 2019-11-07 21:14:28 t 1 1 156985 551 0.00 2019-11-07 21:04:00 2019-11-07 21:16:25 t 1 1 156994 570 0.00 2019-11-07 20:53:59 2019-11-07 21:24:58 t 1 1 157001 416 0.00 2019-11-07 18:31:31 2019-11-07 21:32:23 t 1 1 157008 516 0.00 2019-11-07 21:18:30 2019-11-07 21:39:43 t 1 1 157011 430 0.00 2019-11-07 21:39:53 2019-11-07 21:40:51 t 1 1 157012 422 0.00 2019-11-07 21:31:46 2019-11-07 21:41:37 t 1 1 157017 220 0.00 2019-11-07 21:46:02 2019-11-07 21:46:16 t 1 1 157020 220 0.00 2019-11-07 21:46:26 2019-11-07 21:46:39 t 1 1 157024 220 0.00 2019-11-07 21:47:03 2019-11-07 21:47:14 t 1 1 157026 220 0.00 2019-11-07 21:47:14 2019-11-07 21:47:27 t 1 1 157030 220 0.00 2019-11-07 21:48:01 2019-11-07 21:48:15 t 1 1 157033 220 0.00 2019-11-07 21:48:39 2019-11-07 21:48:50 t 1 1 157034 570 0.00 2019-11-07 21:43:44 2019-11-07 21:49:00 t 1 1 157037 220 0.00 2019-11-07 21:49:14 2019-11-07 21:49:28 t 1 1 157040 220 0.00 2019-11-07 21:49:51 2019-11-07 21:50:02 t 1 1 157042 220 0.00 2019-11-07 21:50:15 2019-11-07 21:50:27 t 1 1 157043 220 0.00 2019-11-07 21:50:26 2019-11-07 21:50:40 t 1 1 157045 422 0.00 2019-11-07 21:49:55 2019-11-07 21:50:55 t 1 1 157049 422 0.00 2019-11-07 21:51:06 2019-11-07 21:51:20 t 1 1 157056 422 0.00 2019-11-07 21:51:59 2019-11-07 21:52:04 t 1 1 157061 570 0.00 2019-11-07 21:48:59 2019-11-07 21:54:23 t 1 1 157063 562 0.00 2019-11-07 21:54:30 2019-11-07 21:55:53 t 1 1 157066 220 0.00 2019-11-07 21:52:40 2019-11-07 21:59:37 t 1 1 157072 220 0.00 2019-11-07 22:04:19 2019-11-07 22:04:31 t 1 1 157076 220 0.00 2019-11-07 22:04:54 2019-11-07 22:05:08 t 1 1 157079 220 0.00 2019-11-07 22:05:31 2019-11-07 22:05:43 t 1 1 157081 220 0.00 2019-11-07 22:05:42 2019-11-07 22:05:56 t 1 1 157082 220 0.00 2019-11-07 22:05:55 2019-11-07 22:06:07 t 1 1 157088 220 0.00 2019-11-07 22:06:31 2019-11-07 22:06:45 t 1 1 157092 220 0.00 2019-11-07 22:07:08 2019-11-07 22:07:19 t 1 1 157105 645 0.00 2019-11-07 22:17:05 2019-11-07 22:17:11 t 1 1 157108 645 0.00 2019-11-07 22:18:28 2019-11-07 22:18:38 t 1 1 157110 422 0.00 2019-11-07 22:19:04 2019-11-07 22:19:14 t 1 1 157116 625 0.00 2019-11-07 22:19:55 2019-11-07 22:22:12 t 1 1 157124 595 0.00 2019-11-07 22:25:12 2019-11-07 22:25:33 t 1 1 157129 595 0.00 2019-11-07 22:28:35 2019-11-07 22:29:03 t 1 1 157134 595 0.00 2019-11-07 22:29:20 2019-11-07 22:30:12 t 1 1 157139 451 0.00 2019-11-07 22:22:37 2019-11-07 22:32:29 t 1 1 157140 551 0.00 2019-11-07 22:19:08 2019-11-07 22:33:34 t 1 1 157143 430 0.00 2019-11-07 22:21:33 2019-11-07 22:34:55 t 1 1 157151 645 0.00 2019-11-07 22:39:26 2019-11-07 22:40:03 t 1 1 157153 619 0.00 2019-11-07 22:27:32 2019-11-07 22:41:48 t 1 1 157154 625 0.00 2019-11-07 22:25:29 2019-11-07 22:42:28 t 1 1 156814 514 0.00 2019-11-07 19:51:30 2019-11-07 20:17:11 t 1 1 156816 220 0.00 2019-11-07 20:17:20 2019-11-07 20:17:58 t 1 1 156819 591 0.00 2019-11-07 20:02:42 2019-11-07 20:19:00 t 1 1 156820 220 0.00 2019-11-07 20:18:32 2019-11-07 20:19:08 t 1 1 156824 430 0.00 2019-11-07 20:19:31 2019-11-07 20:19:57 t 1 1 156827 645 0.00 2019-11-07 20:18:07 2019-11-07 20:20:53 t 1 1 156835 570 0.00 2019-11-07 20:15:12 2019-11-07 20:22:11 t 1 1 156837 430 0.00 2019-11-07 20:22:39 2019-11-07 20:22:45 t 1 1 156842 623 0.00 2019-11-07 20:23:19 2019-11-07 20:23:47 t 1 1 156847 220 0.00 2019-11-07 20:25:00 2019-11-07 20:25:34 t 1 1 156848 220 0.00 2019-11-07 20:25:34 2019-11-07 20:26:12 t 1 1 156849 220 0.00 2019-11-07 20:26:12 2019-11-07 20:26:45 t 1 1 156850 220 0.00 2019-11-07 20:26:45 2019-11-07 20:27:23 t 1 1 156853 623 0.00 2019-11-07 20:28:01 2019-11-07 20:28:04 t 1 1 156854 430 0.00 2019-11-07 20:28:24 2019-11-07 20:28:27 t 1 1 156856 562 0.00 2019-11-07 20:28:14 2019-11-07 20:28:50 t 1 1 156860 220 0.00 2019-11-07 20:29:10 2019-11-07 20:29:46 t 1 1 156862 220 0.00 2019-11-07 20:29:46 2019-11-07 20:30:21 t 1 1 156864 623 0.00 2019-11-07 20:30:39 2019-11-07 20:30:49 t 1 1 156865 220 0.00 2019-11-07 20:30:20 2019-11-07 20:30:57 t 1 1 156867 430 0.00 2019-11-07 20:30:58 2019-11-07 20:31:05 t 1 1 156870 619 0.00 2019-11-07 20:26:35 2019-11-07 20:32:39 t 1 1 156873 623 0.00 2019-11-07 20:32:25 2019-11-07 20:32:49 t 1 1 156876 220 0.00 2019-11-07 20:32:38 2019-11-07 20:33:16 t 1 1 156882 430 0.00 2019-11-07 20:34:40 2019-11-07 20:34:46 t 1 1 156883 623 0.00 2019-11-07 20:33:18 2019-11-07 20:34:58 t 1 1 156885 623 0.00 2019-11-07 20:33:57 2019-11-07 20:35:09 t 1 1 156887 623 0.00 2019-11-07 20:35:19 2019-11-07 20:35:43 t 1 1 156893 220 0.00 2019-11-07 20:37:18 2019-11-07 20:37:55 t 1 1 156896 430 0.00 2019-11-07 20:38:19 2019-11-07 20:38:32 t 1 1 156898 220 0.00 2019-11-07 20:38:30 2019-11-07 20:39:06 t 1 1 156900 562 0.00 2019-11-07 20:38:56 2019-11-07 20:39:22 t 1 1 156905 220 0.00 2019-11-07 20:40:16 2019-11-07 20:40:49 t 1 1 156906 562 0.00 2019-11-07 20:40:46 2019-11-07 20:41:04 t 1 1 156908 623 0.00 2019-11-07 20:40:57 2019-11-07 20:41:07 t 1 1 156912 220 0.00 2019-11-07 20:41:25 2019-11-07 20:42:00 t 1 1 156914 625 0.00 2019-11-07 20:41:08 2019-11-07 20:42:11 t 1 1 156915 220 0.00 2019-11-07 20:42:00 2019-11-07 20:42:39 t 1 1 156916 220 0.00 2019-11-07 20:42:38 2019-11-07 20:43:14 t 1 1 156926 585 0.00 2019-11-07 20:44:44 2019-11-07 20:46:34 t 1 1 156934 220 0.00 2019-11-07 20:47:24 2019-11-07 20:47:58 t 1 1 156942 220 0.00 2019-11-07 20:49:46 2019-11-07 20:50:20 t 1 1 156945 591 0.00 2019-11-07 20:20:13 2019-11-07 20:52:39 t 1 1 156947 623 0.00 2019-11-07 20:53:33 2019-11-07 20:54:07 t 1 1 156951 625 0.00 2019-11-07 20:44:03 2019-11-07 20:56:41 t 1 1 156955 430 0.00 2019-11-07 20:57:34 2019-11-07 20:57:46 t 1 1 156957 430 0.00 2019-11-07 20:59:21 2019-11-07 20:59:25 t 1 1 156961 430 0.00 2019-11-07 20:59:11 2019-11-07 21:00:58 t 1 1 156963 430 0.00 2019-11-07 21:02:58 2019-11-07 21:03:59 t 1 1 156968 623 0.00 2019-11-07 21:06:49 2019-11-07 21:07:43 t 1 1 156969 623 0.00 2019-11-07 21:07:48 2019-11-07 21:07:51 t 1 1 156975 623 0.00 2019-11-07 21:09:16 2019-11-07 21:09:16 f 1 1 156977 430 0.00 2019-11-07 21:09:13 2019-11-07 21:09:30 t 1 1 156979 623 0.00 2019-11-07 21:07:57 2019-11-07 21:09:58 t 1 1 156982 538 0.00 2019-11-07 20:58:02 2019-11-07 21:12:01 t 1 1 156984 645 0.00 2019-11-07 21:14:11 2019-11-07 21:15:16 t 1 1 156987 422 0.00 2019-11-07 21:13:45 2019-11-07 21:17:33 t 1 1 156991 422 0.00 2019-11-07 21:19:01 2019-11-07 21:21:32 t 1 1 156992 562 0.00 2019-11-07 21:21:58 2019-11-07 21:22:25 t 1 1 156993 220 0.00 2019-11-07 20:51:37 2019-11-07 21:23:14 t 1 1 156995 422 0.00 2019-11-07 21:23:02 2019-11-07 21:25:01 t 1 1 157002 562 0.00 2019-11-07 21:32:43 2019-11-07 21:33:11 t 1 1 157003 562 0.00 2019-11-07 21:34:24 2019-11-07 21:35:11 t 1 1 157006 220 0.00 2019-11-07 21:30:16 2019-11-07 21:37:29 t 1 1 157007 574 0.00 2019-11-07 21:06:52 2019-11-07 21:38:33 t 1 1 157009 538 0.00 2019-11-07 21:33:35 2019-11-07 21:40:10 t 1 1 157015 562 0.00 2019-11-07 21:44:42 2019-11-07 21:45:46 t 1 1 157016 220 0.00 2019-11-07 21:43:44 2019-11-07 21:46:02 t 1 1 157018 578 0.00 2019-11-07 21:19:13 2019-11-07 21:46:23 t 1 1 157019 220 0.00 2019-11-07 21:46:15 2019-11-07 21:46:26 t 1 1 157023 220 0.00 2019-11-07 21:46:50 2019-11-07 21:47:04 t 1 1 157025 585 0.00 2019-11-07 21:28:37 2019-11-07 21:47:17 t 1 1 157028 220 0.00 2019-11-07 21:47:38 2019-11-07 21:47:51 t 1 1 157029 220 0.00 2019-11-07 21:47:51 2019-11-07 21:48:02 t 1 1 157032 220 0.00 2019-11-07 21:48:26 2019-11-07 21:48:39 t 1 1 157036 220 0.00 2019-11-07 21:49:03 2019-11-07 21:49:14 t 1 1 157039 220 0.00 2019-11-07 21:49:38 2019-11-07 21:49:52 t 1 1 157051 422 0.00 2019-11-07 21:51:32 2019-11-07 21:51:33 t 1 1 157054 220 0.00 2019-11-07 21:51:39 2019-11-07 21:51:52 t 1 1 157058 556 0.00 2019-11-07 20:45:26 2019-11-07 21:52:17 t 1 1 157059 220 0.00 2019-11-07 21:52:16 2019-11-07 21:52:27 t 1 1 157065 566 0.00 2019-11-07 21:50:27 2019-11-07 21:59:14 t 1 1 157068 591 0.00 2019-11-07 21:50:58 2019-11-07 22:01:24 t 1 1 157069 619 0.00 2019-11-07 22:01:34 2019-11-07 22:03:27 t 1 1 157071 220 0.00 2019-11-07 22:04:06 2019-11-07 22:04:20 t 1 1 157074 220 0.00 2019-11-07 22:04:44 2019-11-07 22:04:55 t 1 1 157075 422 0.00 2019-11-07 22:03:02 2019-11-07 22:04:58 t 1 1 157078 220 0.00 2019-11-07 22:05:18 2019-11-07 22:05:32 t 1 1 157080 520 0.00 2019-11-07 22:00:23 2019-11-07 22:05:53 t 1 1 157083 591 0.00 2019-11-07 22:01:24 2019-11-07 22:06:18 t 1 1 157084 220 0.00 2019-11-07 22:06:06 2019-11-07 22:06:21 t 1 1 157085 220 0.00 2019-11-07 22:06:20 2019-11-07 22:06:31 t 1 1 157087 422 0.00 2019-11-07 22:06:25 2019-11-07 22:06:39 t 1 1 157089 625 0.00 2019-11-07 21:40:53 2019-11-07 22:06:52 t 1 1 157090 220 0.00 2019-11-07 22:06:44 2019-11-07 22:06:55 t 1 1 157091 220 0.00 2019-11-07 22:06:55 2019-11-07 22:07:08 t 1 1 157095 220 0.00 2019-11-07 22:07:44 2019-11-07 22:07:51 t 1 1 157097 551 0.00 2019-11-07 21:51:34 2019-11-07 22:09:07 t 1 1 157100 562 0.00 2019-11-07 22:09:41 2019-11-07 22:12:29 t 1 1 157102 625 0.00 2019-11-07 22:06:52 2019-11-07 22:13:13 t 1 1 157106 625 0.00 2019-11-07 22:13:13 2019-11-07 22:17:38 t 1 1 157107 422 0.00 2019-11-07 22:17:06 2019-11-07 22:18:13 t 1 1 157109 551 0.00 2019-11-07 22:09:07 2019-11-07 22:19:08 t 1 1 157111 220 0.00 2019-11-07 22:15:23 2019-11-07 22:19:37 t 1 1 157113 625 0.00 2019-11-07 22:18:07 2019-11-07 22:19:56 t 1 1 157115 430 0.00 2019-11-07 21:59:11 2019-11-07 22:21:33 t 1 1 157117 451 0.00 2019-11-07 22:11:25 2019-11-07 22:22:37 t 1 1 157070 220 0.00 2019-11-07 21:59:37 2019-11-07 22:04:07 t 1 1 157073 220 0.00 2019-11-07 22:04:30 2019-11-07 22:04:44 t 1 1 157077 220 0.00 2019-11-07 22:05:07 2019-11-07 22:05:19 t 1 1 157086 562 0.00 2019-11-07 22:03:38 2019-11-07 22:06:35 t 1 1 157093 220 0.00 2019-11-07 22:07:19 2019-11-07 22:07:33 t 1 1 157094 220 0.00 2019-11-07 22:07:32 2019-11-07 22:07:44 t 1 1 157096 631 0.00 2019-11-07 22:06:37 2019-11-07 22:08:34 t 1 1 157098 587 0.00 2019-11-07 22:07:57 2019-11-07 22:10:52 t 1 1 157099 645 0.00 2019-11-07 22:10:48 2019-11-07 22:11:51 t 1 1 157101 619 0.00 2019-11-07 22:07:46 2019-11-07 22:13:02 t 1 1 157103 220 0.00 2019-11-07 22:07:57 2019-11-07 22:15:23 t 1 1 157104 645 0.00 2019-11-07 22:13:00 2019-11-07 22:15:59 t 1 1 157112 595 0.00 2019-11-07 22:07:41 2019-11-07 22:19:50 t 1 1 157114 566 0.00 2019-11-07 21:59:14 2019-11-07 22:21:02 t 1 1 157118 422 0.00 2019-11-07 22:22:43 2019-11-07 22:23:27 t 1 1 157120 556 0.00 2019-11-07 21:52:17 2019-11-07 22:24:19 t 1 1 157122 562 0.00 2019-11-07 22:12:39 2019-11-07 22:25:10 t 1 1 157123 625 0.00 2019-11-07 22:22:11 2019-11-07 22:25:30 t 1 1 157125 562 0.00 2019-11-07 22:26:14 2019-11-07 22:27:15 t 1 1 157128 587 0.00 2019-11-07 22:28:45 2019-11-07 22:28:58 t 1 1 157130 587 0.00 2019-11-07 22:29:09 2019-11-07 22:29:17 t 1 1 157133 566 0.00 2019-11-07 22:21:02 2019-11-07 22:29:47 t 1 1 157136 645 0.00 2019-11-07 22:31:06 2019-11-07 22:31:13 t 1 1 157138 645 0.00 2019-11-07 22:32:13 2019-11-07 22:32:25 t 1 1 157142 503 0.00 2019-11-07 22:28:03 2019-11-07 22:34:21 t 1 1 157145 566 0.00 2019-11-07 22:29:47 2019-11-07 22:36:54 t 1 1 157148 599 0.00 2019-11-07 22:23:41 2019-11-07 22:37:22 t 1 1 157149 422 0.00 2019-11-07 22:38:11 2019-11-07 22:38:47 t 1 1 157150 422 0.00 2019-11-07 22:39:50 2019-11-07 22:40:00 t 1 1 157161 430 0.00 2019-11-07 22:43:36 2019-11-07 22:47:21 t 1 1 157172 562 0.00 2019-11-07 22:58:12 2019-11-07 22:58:26 t 1 1 157174 566 0.00 2019-11-07 22:49:36 2019-11-07 22:58:46 t 1 1 157175 456 0.00 2019-11-07 22:55:50 2019-11-07 23:01:05 t 1 1 157178 635 0.00 2019-11-07 22:48:44 2019-11-07 23:04:17 t 1 1 157179 551 0.00 2019-11-07 22:33:34 2019-11-07 23:05:39 t 1 1 157184 578 0.00 2019-11-07 23:01:07 2019-11-07 23:12:55 t 1 1 157185 451 0.00 2019-11-07 22:51:47 2019-11-07 23:13:00 t 1 1 157186 422 0.00 2019-11-07 23:13:03 2019-11-07 23:13:05 t 1 1 157195 587 0.00 2019-11-07 23:16:47 2019-11-07 23:19:05 t 1 1 157206 637 0.00 2019-11-07 22:10:51 2019-11-07 23:27:45 t 1 1 157208 566 0.00 2019-11-07 23:26:53 2019-11-07 23:31:39 t 1 1 157209 430 0.00 2019-11-07 23:26:20 2019-11-07 23:31:58 t 1 1 157210 566 0.00 2019-11-07 23:31:39 2019-11-07 23:32:06 t 1 1 157212 625 0.00 2019-11-07 22:42:27 2019-11-07 23:33:38 t 1 1 157217 622 0.00 2019-11-07 22:21:51 2019-11-07 23:40:07 t 1 1 157218 566 0.00 2019-11-07 23:39:42 2019-11-07 23:41:40 t 1 1 157220 625 0.00 2019-11-07 23:33:38 2019-11-07 23:46:27 t 1 1 157222 510 0.00 2019-11-07 21:27:32 2019-11-07 23:47:53 t 1 1 157224 451 0.00 2019-11-07 23:36:55 2019-11-07 23:49:45 t 1 1 157227 556 0.00 2019-11-07 22:58:35 2019-11-07 23:53:47 t 1 1 157228 451 0.00 2019-11-07 23:49:45 2019-11-07 23:55:06 t 1 1 157233 545 0.00 2019-11-07 23:57:05 2019-11-08 00:01:06 t 1 1 157236 587 0.00 2019-11-07 23:55:37 2019-11-08 00:03:12 t 1 1 157239 587 0.00 2019-11-08 00:03:45 2019-11-08 00:06:21 t 1 1 157244 570 0.00 2019-11-08 00:02:04 2019-11-08 00:14:02 t 1 1 157248 536 0.00 2019-11-08 00:15:14 2019-11-08 00:15:14 f 1 1 157250 556 0.00 2019-11-07 23:53:47 2019-11-08 00:18:31 t 1 1 157252 422 0.00 2019-11-08 00:11:52 2019-11-08 00:20:48 t 1 1 157253 562 0.00 2019-11-08 00:21:02 2019-11-08 00:21:24 t 1 1 157256 556 0.00 2019-11-08 00:18:31 2019-11-08 00:25:41 t 1 1 157257 622 0.00 2019-11-08 00:07:58 2019-11-08 00:26:04 t 1 1 157258 503 0.00 2019-11-08 00:25:36 2019-11-08 00:26:17 t 1 1 157263 375 0.00 2019-11-08 00:28:36 2019-11-08 00:31:16 t 1 1 157267 623 0.00 2019-11-08 00:31:47 2019-11-08 00:31:49 t 1 1 157272 623 0.00 2019-11-08 00:36:51 2019-11-08 00:36:52 t 1 1 157275 503 0.00 2019-11-08 00:31:49 2019-11-08 00:39:15 t 1 1 157287 623 0.00 2019-11-08 00:49:05 2019-11-08 00:49:05 t 1 1 157296 623 0.00 2019-11-08 00:59:10 2019-11-08 00:59:11 t 1 1 157299 449 0.00 2019-11-08 00:55:57 2019-11-08 01:02:17 t 1 1 157301 545 0.00 2019-11-08 00:54:19 2019-11-08 01:03:57 t 1 1 157304 562 0.00 2019-11-08 01:04:13 2019-11-08 01:04:34 t 1 1 157305 375 0.00 2019-11-08 00:56:44 2019-11-08 01:05:25 t 1 1 157307 623 0.00 2019-11-08 01:09:18 2019-11-08 01:09:19 t 1 1 157315 623 0.00 2019-11-08 01:14:20 2019-11-08 01:14:23 t 1 1 157323 623 0.00 2019-11-08 01:24:32 2019-11-08 01:25:33 t 1 1 157324 562 0.00 2019-11-08 01:25:48 2019-11-08 01:26:08 t 1 1 157326 633 0.00 2019-11-08 01:19:15 2019-11-08 01:27:42 t 1 1 157328 623 0.00 2019-11-08 01:29:37 2019-11-08 01:29:38 t 1 1 157330 633 0.00 2019-11-08 01:27:42 2019-11-08 01:34:23 t 1 1 157331 623 0.00 2019-11-08 01:34:40 2019-11-08 01:34:43 t 1 1 157333 633 0.00 2019-11-08 01:34:23 2019-11-08 01:39:25 t 1 1 157334 623 0.00 2019-11-08 01:39:46 2019-11-08 01:39:49 t 1 1 157340 623 0.00 2019-11-08 01:49:55 2019-11-08 01:49:58 t 1 1 157343 623 0.00 2019-11-08 01:55:01 2019-11-08 01:55:02 t 1 1 157348 623 0.00 2019-11-08 02:05:08 2019-11-08 02:05:09 t 1 1 157350 622 0.00 2019-11-08 01:12:17 2019-11-08 02:08:05 t 1 1 157351 623 0.00 2019-11-08 02:10:10 2019-11-08 02:10:11 t 1 1 157354 562 0.00 2019-11-08 02:15:15 2019-11-08 02:15:33 t 1 1 157355 633 0.00 2019-11-08 02:11:16 2019-11-08 02:17:08 t 1 1 157360 514 0.00 2019-11-08 01:40:16 2019-11-08 02:29:31 t 1 1 157363 633 0.00 2019-11-08 02:30:42 2019-11-08 02:36:34 t 1 1 157364 562 0.00 2019-11-08 02:36:52 2019-11-08 02:37:07 t 1 1 157365 623 0.00 2019-11-08 02:40:52 2019-11-08 02:40:53 t 1 1 157366 623 0.00 2019-11-08 02:40:59 2019-11-08 02:41:04 t 1 1 157368 562 0.00 2019-11-08 02:42:35 2019-11-08 02:43:13 t 1 1 157375 623 0.00 2019-11-08 03:00:51 2019-11-08 03:00:54 t 1 1 157379 623 0.00 2019-11-08 03:10:59 2019-11-08 03:11:02 t 1 1 157381 562 0.00 2019-11-08 03:15:08 2019-11-08 03:15:30 t 1 1 157382 623 0.00 2019-11-08 03:16:06 2019-11-08 03:16:09 t 1 1 157385 623 0.00 2019-11-08 03:21:40 2019-11-08 03:21:43 t 1 1 157390 623 0.00 2019-11-08 03:31:20 2019-11-08 03:32:20 t 1 1 157391 623 0.00 2019-11-08 03:34:53 2019-11-08 03:35:03 t 1 1 157395 623 0.00 2019-11-08 03:41:30 2019-11-08 03:41:33 t 1 1 157400 623 0.00 2019-11-08 03:51:38 2019-11-08 03:51:38 t 1 1 157403 623 0.00 2019-11-08 03:56:41 2019-11-08 03:56:42 t 1 1 157404 623 0.00 2019-11-08 04:01:48 2019-11-08 04:02:05 t 1 1 157410 564 0.00 2019-11-07 19:09:01 2019-11-08 04:16:01 t 1 1 157119 595 0.00 2019-11-07 22:24:08 2019-11-07 22:24:15 t 1 1 157121 595 0.00 2019-11-07 22:24:48 2019-11-07 22:25:02 t 1 1 157126 619 0.00 2019-11-07 22:23:54 2019-11-07 22:27:32 t 1 1 157127 587 0.00 2019-11-07 22:25:59 2019-11-07 22:28:18 t 1 1 157131 585 0.00 2019-11-07 21:50:20 2019-11-07 22:29:18 t 1 1 157132 587 0.00 2019-11-07 22:29:30 2019-11-07 22:29:33 t 1 1 157135 645 0.00 2019-11-07 22:18:43 2019-11-07 22:30:13 t 1 1 157137 645 0.00 2019-11-07 22:31:18 2019-11-07 22:31:30 t 1 1 157141 422 0.00 2019-11-07 22:33:48 2019-11-07 22:33:59 t 1 1 157144 430 0.00 2019-11-07 22:35:00 2019-11-07 22:35:08 t 1 1 157146 562 0.00 2019-11-07 22:36:46 2019-11-07 22:36:56 t 1 1 157147 422 0.00 2019-11-07 22:36:58 2019-11-07 22:36:59 t 1 1 157152 585 0.00 2019-11-07 22:29:18 2019-11-07 22:40:34 t 1 1 157155 587 0.00 2019-11-07 22:30:21 2019-11-07 22:42:44 t 1 1 157156 566 0.00 2019-11-07 22:36:54 2019-11-07 22:43:22 t 1 1 157163 578 0.00 2019-11-07 21:46:23 2019-11-07 22:49:12 t 1 1 157165 566 0.00 2019-11-07 22:43:22 2019-11-07 22:49:36 t 1 1 157168 587 0.00 2019-11-07 22:50:29 2019-11-07 22:51:34 t 1 1 157170 645 0.00 2019-11-07 22:52:08 2019-11-07 22:52:16 t 1 1 157177 422 0.00 2019-11-07 23:02:08 2019-11-07 23:02:20 t 1 1 157181 483 0.00 2019-11-07 23:04:11 2019-11-07 23:06:46 t 1 1 157183 422 0.00 2019-11-07 23:12:41 2019-11-07 23:12:53 t 1 1 157188 587 0.00 2019-11-07 22:51:40 2019-11-07 23:14:47 t 1 1 157190 483 0.00 2019-11-07 23:13:54 2019-11-07 23:15:41 t 1 1 157198 220 0.00 2019-11-07 22:57:21 2019-11-07 23:21:09 t 1 1 157201 578 0.00 2019-11-07 23:12:55 2019-11-07 23:24:25 t 1 1 157203 566 0.00 2019-11-07 23:19:17 2019-11-07 23:26:53 t 1 1 157205 562 0.00 2019-11-07 23:27:14 2019-11-07 23:27:37 t 1 1 157211 587 0.00 2019-11-07 23:25:48 2019-11-07 23:33:30 t 1 1 157213 220 0.00 2019-11-07 23:21:09 2019-11-07 23:33:40 t 1 1 157215 562 0.00 2019-11-07 23:38:11 2019-11-07 23:38:30 t 1 1 157221 645 0.00 2019-11-07 23:40:32 2019-11-07 23:47:13 t 1 1 157223 562 0.00 2019-11-07 23:48:47 2019-11-07 23:49:16 t 1 1 157230 220 0.00 2019-11-07 23:34:04 2019-11-07 23:55:32 t 1 1 157232 562 0.00 2019-11-07 23:59:43 2019-11-07 23:59:51 t 1 1 157234 570 0.00 2019-11-07 23:24:05 2019-11-08 00:02:04 t 1 1 157235 595 0.00 2019-11-07 23:40:05 2019-11-08 00:02:59 t 1 1 157237 625 0.00 2019-11-07 23:53:18 2019-11-08 00:05:39 t 1 1 157238 574 0.00 2019-11-08 00:00:15 2019-11-08 00:06:17 t 1 1 157241 562 0.00 2019-11-08 00:10:15 2019-11-08 00:10:40 t 1 1 157243 625 0.00 2019-11-08 00:05:39 2019-11-08 00:12:37 t 1 1 157245 637 0.00 2019-11-07 23:27:59 2019-11-08 00:14:45 t 1 1 157246 570 0.00 2019-11-08 00:14:02 2019-11-08 00:15:04 t 1 1 157249 625 0.00 2019-11-08 00:12:36 2019-11-08 00:18:25 t 1 1 157251 625 0.00 2019-11-08 00:18:25 2019-11-08 00:19:52 t 1 1 157254 570 0.00 2019-11-08 00:19:32 2019-11-08 00:22:44 t 1 1 157261 538 0.00 2019-11-07 21:52:19 2019-11-08 00:30:15 t 1 1 157264 623 0.00 2019-11-08 00:29:20 2019-11-08 00:31:26 t 1 1 157266 503 0.00 2019-11-08 00:30:45 2019-11-08 00:31:49 t 1 1 157268 587 0.00 2019-11-08 00:06:40 2019-11-08 00:32:08 t 1 1 157271 375 0.00 2019-11-08 00:31:16 2019-11-08 00:34:52 t 1 1 157274 514 0.00 2019-11-08 00:13:42 2019-11-08 00:38:33 t 1 1 157277 545 0.00 2019-11-08 00:09:37 2019-11-08 00:39:29 t 1 1 157279 456 0.00 2019-11-08 00:34:55 2019-11-08 00:40:28 t 1 1 157280 422 0.00 2019-11-08 00:41:01 2019-11-08 00:41:35 t 1 1 157281 622 0.00 2019-11-08 00:39:30 2019-11-08 00:42:41 t 1 1 157283 623 0.00 2019-11-08 00:44:01 2019-11-08 00:44:02 t 1 1 157286 545 0.00 2019-11-08 00:39:29 2019-11-08 00:48:05 t 1 1 157290 562 0.00 2019-11-08 00:53:26 2019-11-08 00:53:48 t 1 1 157292 545 0.00 2019-11-08 00:48:05 2019-11-08 00:54:19 t 1 1 157295 512 0.00 2019-11-08 00:44:25 2019-11-08 00:58:35 t 1 1 157300 570 0.00 2019-11-08 00:49:06 2019-11-08 01:02:37 t 1 1 157303 449 0.00 2019-11-08 01:02:17 2019-11-08 01:04:20 t 1 1 157306 637 0.00 2019-11-08 00:54:56 2019-11-08 01:07:58 t 1 1 157309 637 0.00 2019-11-08 01:07:58 2019-11-08 01:10:13 t 1 1 157310 551 0.00 2019-11-07 23:26:56 2019-11-08 01:11:16 t 1 1 157317 637 0.00 2019-11-08 01:10:13 2019-11-08 01:18:14 t 1 1 157318 623 0.00 2019-11-08 01:18:21 2019-11-08 01:18:34 t 1 1 157321 570 0.00 2019-11-08 01:02:37 2019-11-08 01:22:43 t 1 1 157329 623 0.00 2019-11-08 01:29:50 2019-11-08 01:29:53 t 1 1 157332 562 0.00 2019-11-08 01:36:27 2019-11-08 01:36:52 t 1 1 157335 512 0.00 2019-11-08 00:58:35 2019-11-08 01:44:00 t 1 1 157337 562 0.00 2019-11-08 01:47:22 2019-11-08 01:47:47 t 1 1 157341 556 0.00 2019-11-08 01:45:14 2019-11-08 01:51:27 t 1 1 157342 562 0.00 2019-11-08 01:53:38 2019-11-08 01:54:00 t 1 1 157344 633 0.00 2019-11-08 01:49:14 2019-11-08 01:56:31 t 1 1 157346 623 0.00 2019-11-08 02:00:03 2019-11-08 02:00:04 t 1 1 157347 562 0.00 2019-11-08 02:04:28 2019-11-08 02:04:41 t 1 1 157352 633 0.00 2019-11-08 02:05:38 2019-11-08 02:11:16 t 1 1 157353 623 0.00 2019-11-08 02:15:16 2019-11-08 02:15:17 t 1 1 157357 633 0.00 2019-11-08 02:17:08 2019-11-08 02:23:39 t 1 1 157358 623 0.00 2019-11-08 02:25:20 2019-11-08 02:25:23 t 1 1 157359 562 0.00 2019-11-08 02:26:08 2019-11-08 02:26:17 t 1 1 157362 633 0.00 2019-11-08 02:23:39 2019-11-08 02:30:42 t 1 1 157367 623 0.00 2019-11-08 02:41:09 2019-11-08 02:41:20 t 1 1 157369 623 0.00 2019-11-08 02:45:40 2019-11-08 02:45:41 t 1 1 157373 623 0.00 2019-11-08 02:55:48 2019-11-08 02:55:51 t 1 1 157376 587 0.00 2019-11-08 02:47:53 2019-11-08 03:03:57 t 1 1 157383 623 0.00 2019-11-08 03:21:14 2019-11-08 03:21:21 t 1 1 157386 562 0.00 2019-11-08 03:25:51 2019-11-08 03:26:15 t 1 1 157392 623 0.00 2019-11-08 03:35:15 2019-11-08 03:35:18 t 1 1 157393 623 0.00 2019-11-08 03:36:26 2019-11-08 03:36:39 t 1 1 157394 562 0.00 2019-11-08 03:36:40 2019-11-08 03:37:02 t 1 1 157398 599 0.00 2019-11-08 03:43:41 2019-11-08 03:46:11 t 1 1 157401 562 0.00 2019-11-08 03:53:45 2019-11-08 03:54:05 t 1 1 157405 623 0.00 2019-11-08 04:02:05 2019-11-08 04:02:07 t 1 1 157408 623 0.00 2019-11-08 04:12:01 2019-11-08 04:12:03 t 1 1 157409 562 0.00 2019-11-08 04:15:16 2019-11-08 04:15:38 t 1 1 157411 623 0.00 2019-11-08 04:17:06 2019-11-08 04:17:09 t 1 1 157412 562 0.00 2019-11-08 04:17:50 2019-11-08 04:17:59 t 1 1 157413 623 0.00 2019-11-08 04:22:11 2019-11-08 04:22:14 t 1 1 157414 562 0.00 2019-11-08 04:25:16 2019-11-08 04:25:36 t 1 1 157419 623 0.00 2019-11-08 04:39:24 2019-11-08 04:39:35 t 1 1 157421 623 0.00 2019-11-08 04:40:08 2019-11-08 04:40:09 t 1 1 157423 623 0.00 2019-11-08 04:42:25 2019-11-08 04:42:26 t 1 1 157424 623 0.00 2019-11-08 04:44:17 2019-11-08 04:45:07 t 1 1 157426 562 0.00 2019-11-08 04:46:46 2019-11-08 04:47:07 t 1 1 157157 430 0.00 2019-11-07 22:35:34 2019-11-07 22:43:36 t 1 1 157158 422 0.00 2019-11-07 22:42:52 2019-11-07 22:43:58 t 1 1 157159 591 0.00 2019-11-07 22:06:18 2019-11-07 22:46:43 t 1 1 157160 422 0.00 2019-11-07 22:45:47 2019-11-07 22:47:01 t 1 1 157162 562 0.00 2019-11-07 22:47:19 2019-11-07 22:47:45 t 1 1 157164 587 0.00 2019-11-07 22:44:07 2019-11-07 22:49:24 t 1 1 157166 570 0.00 2019-11-07 22:49:58 2019-11-07 22:50:15 t 1 1 157167 591 0.00 2019-11-07 22:46:43 2019-11-07 22:51:17 t 1 1 157169 451 0.00 2019-11-07 22:32:29 2019-11-07 22:51:47 t 1 1 157171 422 0.00 2019-11-07 22:58:06 2019-11-07 22:58:09 t 1 1 157173 556 0.00 2019-11-07 22:24:19 2019-11-07 22:58:35 t 1 1 157176 578 0.00 2019-11-07 22:49:12 2019-11-07 23:01:07 t 1 1 157180 562 0.00 2019-11-07 23:05:50 2019-11-07 23:06:02 t 1 1 157182 566 0.00 2019-11-07 22:58:46 2019-11-07 23:12:05 t 1 1 157187 422 0.00 2019-11-07 23:13:13 2019-11-07 23:14:14 t 1 1 157189 422 0.00 2019-11-07 23:14:58 2019-11-07 23:15:33 t 1 1 157191 587 0.00 2019-11-07 23:14:52 2019-11-07 23:16:14 t 1 1 157192 562 0.00 2019-11-07 23:16:36 2019-11-07 23:16:49 t 1 1 157193 585 0.00 2019-11-07 23:12:47 2019-11-07 23:17:26 t 1 1 157194 422 0.00 2019-11-07 23:17:50 2019-11-07 23:17:59 t 1 1 157196 566 0.00 2019-11-07 23:12:05 2019-11-07 23:19:17 t 1 1 157197 585 0.00 2019-11-07 23:17:25 2019-11-07 23:21:03 t 1 1 157199 451 0.00 2019-11-07 23:13:00 2019-11-07 23:23:58 t 1 1 157200 587 0.00 2019-11-07 23:19:17 2019-11-07 23:24:18 t 1 1 157202 587 0.00 2019-11-07 23:24:43 2019-11-07 23:25:05 t 1 1 157204 551 0.00 2019-11-07 23:05:39 2019-11-07 23:26:56 t 1 1 157207 595 0.00 2019-11-07 22:32:16 2019-11-07 23:27:57 t 1 1 157214 451 0.00 2019-11-07 23:23:58 2019-11-07 23:36:56 t 1 1 157216 566 0.00 2019-11-07 23:32:06 2019-11-07 23:39:42 t 1 1 157219 430 0.00 2019-11-07 23:31:58 2019-11-07 23:41:50 t 1 1 157225 587 0.00 2019-11-07 23:33:58 2019-11-07 23:50:45 t 1 1 157226 625 0.00 2019-11-07 23:46:23 2019-11-07 23:53:18 t 1 1 157229 587 0.00 2019-11-07 23:51:12 2019-11-07 23:55:17 t 1 1 157231 574 0.00 2019-11-07 23:49:04 2019-11-07 23:57:43 t 1 1 157240 622 0.00 2019-11-07 23:53:55 2019-11-08 00:07:58 t 1 1 157242 422 0.00 2019-11-07 23:28:21 2019-11-08 00:11:28 t 1 1 157247 536 0.00 2019-11-08 00:15:08 2019-11-08 00:15:08 f 1 1 157255 625 0.00 2019-11-08 00:19:51 2019-11-08 00:23:02 t 1 1 157259 562 0.00 2019-11-08 00:26:06 2019-11-08 00:26:22 t 1 1 157260 503 0.00 2019-11-08 00:26:17 2019-11-08 00:30:03 t 1 1 157262 503 0.00 2019-11-08 00:30:03 2019-11-08 00:30:45 t 1 1 157265 623 0.00 2019-11-08 00:31:31 2019-11-08 00:31:33 t 1 1 157269 562 0.00 2019-11-08 00:31:48 2019-11-08 00:32:13 t 1 1 157270 599 0.00 2019-11-07 23:54:23 2019-11-08 00:34:06 t 1 1 157273 587 0.00 2019-11-08 00:32:08 2019-11-08 00:38:27 t 1 1 157276 623 0.00 2019-11-08 00:38:53 2019-11-08 00:39:24 t 1 1 157278 422 0.00 2019-11-08 00:20:48 2019-11-08 00:40:09 t 1 1 157282 562 0.00 2019-11-08 00:42:34 2019-11-08 00:43:01 t 1 1 157284 375 0.00 2019-11-08 00:34:52 2019-11-08 00:47:30 t 1 1 157285 570 0.00 2019-11-08 00:45:09 2019-11-08 00:48:04 t 1 1 157288 633 0.00 2019-11-08 00:45:14 2019-11-08 00:53:11 t 1 1 157289 587 0.00 2019-11-08 00:43:12 2019-11-08 00:53:28 t 1 1 157291 422 0.00 2019-11-08 00:53:53 2019-11-08 00:54:08 t 1 1 157293 623 0.00 2019-11-08 00:54:08 2019-11-08 00:55:10 t 1 1 157294 375 0.00 2019-11-08 00:47:30 2019-11-08 00:56:44 t 1 1 157297 514 0.00 2019-11-08 00:38:33 2019-11-08 00:59:57 t 1 1 157298 633 0.00 2019-11-08 00:53:11 2019-11-08 01:02:09 t 1 1 157302 623 0.00 2019-11-08 01:04:13 2019-11-08 01:04:14 t 1 1 157308 587 0.00 2019-11-08 00:54:02 2019-11-08 01:09:24 t 1 1 157311 622 0.00 2019-11-08 01:02:03 2019-11-08 01:11:53 t 1 1 157312 633 0.00 2019-11-08 01:02:09 2019-11-08 01:12:22 t 1 1 157313 545 0.00 2019-11-08 01:03:57 2019-11-08 01:13:05 t 1 1 157314 375 0.00 2019-11-08 01:05:25 2019-11-08 01:14:18 t 1 1 157316 562 0.00 2019-11-08 01:14:53 2019-11-08 01:15:19 t 1 1 157319 633 0.00 2019-11-08 01:12:22 2019-11-08 01:19:15 t 1 1 157320 623 0.00 2019-11-08 01:19:27 2019-11-08 01:19:28 t 1 1 157322 422 0.00 2019-11-08 01:21:39 2019-11-08 01:22:59 t 1 1 157325 556 0.00 2019-11-08 00:25:41 2019-11-08 01:26:24 t 1 1 157327 422 0.00 2019-11-08 01:21:49 2019-11-08 01:29:34 t 1 1 157336 623 0.00 2019-11-08 01:44:51 2019-11-08 01:44:53 t 1 1 157338 587 0.00 2019-11-08 01:09:43 2019-11-08 01:48:34 t 1 1 157339 633 0.00 2019-11-08 01:39:25 2019-11-08 01:49:14 t 1 1 157345 587 0.00 2019-11-08 01:48:34 2019-11-08 01:56:53 t 1 1 157349 633 0.00 2019-11-08 01:56:31 2019-11-08 02:05:38 t 1 1 157356 623 0.00 2019-11-08 02:20:18 2019-11-08 02:20:19 t 1 1 157361 623 0.00 2019-11-08 02:30:29 2019-11-08 02:30:29 t 1 1 157370 587 0.00 2019-11-08 02:31:53 2019-11-08 02:46:33 t 1 1 157371 623 0.00 2019-11-08 02:50:46 2019-11-08 02:50:46 t 1 1 157372 562 0.00 2019-11-08 02:53:39 2019-11-08 02:53:59 t 1 1 157374 623 0.00 2019-11-08 02:58:33 2019-11-08 02:58:47 t 1 1 157377 562 0.00 2019-11-08 03:04:22 2019-11-08 03:04:43 t 1 1 157378 623 0.00 2019-11-08 03:05:57 2019-11-08 03:05:58 t 1 1 157380 587 0.00 2019-11-08 03:04:59 2019-11-08 03:14:28 t 1 1 157384 623 0.00 2019-11-08 03:21:34 2019-11-08 03:21:34 t 1 1 157387 623 0.00 2019-11-08 03:26:18 2019-11-08 03:26:19 t 1 1 157388 538 0.00 2019-11-08 01:53:17 2019-11-08 03:30:55 t 1 1 157389 587 0.00 2019-11-08 03:15:10 2019-11-08 03:31:32 t 1 1 157396 562 0.00 2019-11-08 03:43:01 2019-11-08 03:43:22 t 1 1 157397 551 0.00 2019-11-08 01:11:16 2019-11-08 03:44:52 t 1 1 157399 623 0.00 2019-11-08 03:46:34 2019-11-08 03:46:35 t 1 1 157402 562 0.00 2019-11-08 03:56:05 2019-11-08 03:56:18 t 1 1 157406 562 0.00 2019-11-08 04:04:26 2019-11-08 04:04:51 t 1 1 157407 623 0.00 2019-11-08 04:06:55 2019-11-08 04:06:58 t 1 1 157415 623 0.00 2019-11-08 04:27:13 2019-11-08 04:27:14 t 1 1 157416 623 0.00 2019-11-08 04:32:17 2019-11-08 04:33:01 t 1 1 157417 562 0.00 2019-11-08 04:35:59 2019-11-08 04:36:21 t 1 1 157418 623 0.00 2019-11-08 04:37:25 2019-11-08 04:37:26 t 1 1 157420 623 0.00 2019-11-08 04:39:48 2019-11-08 04:39:55 t 1 1 157422 623 0.00 2019-11-08 04:40:14 2019-11-08 04:40:16 t 1 1 157425 623 0.00 2019-11-08 04:45:15 2019-11-08 04:45:44 t 1 1 157427 623 0.00 2019-11-08 04:46:35 2019-11-08 04:51:28 t 1 1 157428 623 0.00 2019-11-08 04:51:40 2019-11-08 04:51:43 t 1 1 157429 623 0.00 2019-11-08 04:52:31 2019-11-08 04:52:33 t 1 1 157430 562 0.00 2019-11-08 04:57:30 2019-11-08 04:57:50 t 1 1 157431 623 0.00 2019-11-08 04:52:39 2019-11-08 05:00:59 t 1 1 157432 623 0.00 2019-11-08 05:00:59 2019-11-08 05:01:37 t 1 1 157433 623 0.00 2019-11-08 05:03:21 2019-11-08 05:03:24 t 1 1 157434 623 0.00 2019-11-08 05:08:23 2019-11-08 05:08:26 t 1 1 157436 220 0.00 2019-11-08 00:38:02 2019-11-08 05:09:48 t 1 1 157441 623 0.00 2019-11-08 05:28:54 2019-11-08 05:28:58 t 1 1 157446 623 0.00 2019-11-08 05:39:02 2019-11-08 05:39:03 t 1 1 157453 562 0.00 2019-11-08 05:58:52 2019-11-08 05:59:13 t 1 1 157456 637 0.00 2019-11-08 01:18:14 2019-11-08 06:04:57 t 1 1 157463 220 0.00 2019-11-08 05:57:53 2019-11-08 06:10:41 t 1 1 157464 637 0.00 2019-11-08 06:09:51 2019-11-08 06:12:34 t 1 1 157466 623 0.00 2019-11-08 06:14:47 2019-11-08 06:15:00 t 1 1 157467 556 0.00 2019-11-08 06:18:05 2019-11-08 06:19:29 t 1 1 157469 562 0.00 2019-11-08 06:20:24 2019-11-08 06:20:46 t 1 1 157470 623 0.00 2019-11-08 06:24:47 2019-11-08 06:24:55 t 1 1 157474 623 0.00 2019-11-08 06:35:01 2019-11-08 06:35:02 t 1 1 157478 562 0.00 2019-11-08 06:47:44 2019-11-08 06:48:48 t 1 1 157482 623 0.00 2019-11-08 06:55:21 2019-11-08 06:55:24 t 1 1 157488 562 0.00 2019-11-08 07:01:14 2019-11-08 07:01:53 t 1 1 157489 595 0.00 2019-11-08 07:04:44 2019-11-08 07:04:51 t 1 1 157492 623 0.00 2019-11-08 07:10:43 2019-11-08 07:10:45 t 1 1 157498 562 0.00 2019-11-08 07:09:18 2019-11-08 07:17:43 t 1 1 157500 562 0.00 2019-11-08 07:20:06 2019-11-08 07:20:13 t 1 1 157504 595 0.00 2019-11-08 07:23:26 2019-11-08 07:23:43 t 1 1 157505 595 0.00 2019-11-08 07:23:53 2019-11-08 07:24:19 t 1 1 157507 595 0.00 2019-11-08 07:24:28 2019-11-08 07:25:18 t 1 1 157510 623 0.00 2019-11-08 07:26:17 2019-11-08 07:26:30 t 1 1 157519 595 0.00 2019-11-08 07:35:30 2019-11-08 07:35:38 t 1 1 157520 623 0.00 2019-11-08 07:36:06 2019-11-08 07:36:07 t 1 1 157524 595 0.00 2019-11-08 07:40:37 2019-11-08 07:40:47 t 1 1 157525 623 0.00 2019-11-08 07:40:57 2019-11-08 07:40:58 t 1 1 157529 516 0.00 2019-11-08 07:33:52 2019-11-08 07:42:13 t 1 1 157534 562 0.00 2019-11-08 07:43:53 2019-11-08 07:45:14 t 1 1 157538 597 0.00 2019-11-08 07:41:29 2019-11-08 07:47:06 t 1 1 157541 623 0.00 2019-11-08 07:49:53 2019-11-08 07:50:05 t 1 1 157543 623 0.00 2019-11-08 07:50:29 2019-11-08 07:51:27 t 1 1 157546 570 0.00 2019-11-08 07:36:17 2019-11-08 07:53:27 t 1 1 157548 562 0.00 2019-11-08 07:54:29 2019-11-08 07:54:48 t 1 1 157551 623 0.00 2019-11-08 07:56:19 2019-11-08 07:56:31 t 1 1 157552 623 0.00 2019-11-08 07:56:43 2019-11-08 07:57:13 t 1 1 157553 566 0.00 2019-11-08 07:49:49 2019-11-08 07:59:33 t 1 1 157554 637 0.00 2019-11-08 07:44:16 2019-11-08 08:00:33 t 1 1 157556 422 0.00 2019-11-08 08:00:35 2019-11-08 08:01:37 t 1 1 157563 556 0.00 2019-11-08 07:59:48 2019-11-08 08:09:17 t 1 1 157564 623 0.00 2019-11-08 08:09:26 2019-11-08 08:09:49 t 1 1 157568 623 0.00 2019-11-08 08:15:09 2019-11-08 08:16:09 t 1 1 157569 562 0.00 2019-11-08 08:16:10 2019-11-08 08:16:23 t 1 1 157571 595 0.00 2019-11-08 08:16:28 2019-11-08 08:16:38 t 1 1 157574 422 0.00 2019-11-08 08:20:50 2019-11-08 08:21:13 t 1 1 157575 595 0.00 2019-11-08 08:21:16 2019-11-08 08:21:43 t 1 1 157577 619 0.00 2019-11-08 08:14:52 2019-11-08 08:26:31 t 1 1 157581 637 0.00 2019-11-08 08:20:46 2019-11-08 08:27:46 t 1 1 157583 562 0.00 2019-11-08 08:29:31 2019-11-08 08:30:25 t 1 1 157590 597 0.00 2019-11-08 08:31:59 2019-11-08 08:37:28 t 1 1 157592 623 0.00 2019-11-08 08:37:56 2019-11-08 08:37:57 t 1 1 157593 562 0.00 2019-11-08 08:39:50 2019-11-08 08:40:43 t 1 1 157596 623 0.00 2019-11-08 08:43:33 2019-11-08 08:43:39 t 1 1 157598 623 0.00 2019-11-08 08:44:32 2019-11-08 08:45:16 t 1 1 157603 625 0.00 2019-11-08 08:31:52 2019-11-08 08:51:38 t 1 1 157607 623 0.00 2019-11-08 08:56:36 2019-11-08 08:56:39 t 1 1 157617 623 0.00 2019-11-08 09:11:57 2019-11-08 09:12:31 t 1 1 157618 623 0.00 2019-11-08 09:12:34 2019-11-08 09:13:24 t 1 1 157619 623 0.00 2019-11-08 09:14:02 2019-11-08 09:14:17 t 1 1 157622 562 0.00 2019-11-08 09:16:31 2019-11-08 09:16:53 t 1 1 157630 619 0.00 2019-11-08 09:23:47 2019-11-08 09:27:49 t 1 1 157631 623 0.00 2019-11-08 09:27:58 2019-11-08 09:28:36 t 1 1 157634 623 0.00 2019-11-08 09:36:05 2019-11-08 09:36:18 t 1 1 157636 430 0.00 2019-11-08 09:36:37 2019-11-08 09:36:43 t 1 1 157642 566 0.00 2019-11-08 09:33:15 2019-11-08 09:46:10 t 1 1 157646 430 0.00 2019-11-08 09:48:40 2019-11-08 09:48:49 t 1 1 157649 430 0.00 2019-11-08 09:49:39 2019-11-08 09:52:20 t 1 1 157652 430 0.00 2019-11-08 09:52:44 2019-11-08 09:53:15 t 1 1 157653 623 0.00 2019-11-08 09:54:17 2019-11-08 09:54:22 t 1 1 157660 562 0.00 2019-11-08 09:38:06 2019-11-08 09:57:45 t 1 1 157663 623 0.00 2019-11-08 09:59:21 2019-11-08 09:59:24 t 1 1 157665 430 0.00 2019-11-08 09:56:42 2019-11-08 10:00:24 t 1 1 157674 430 0.00 2019-11-08 10:02:13 2019-11-08 10:02:20 t 1 1 157677 430 0.00 2019-11-08 10:03:04 2019-11-08 10:04:04 t 1 1 157679 422 0.00 2019-11-08 10:01:27 2019-11-08 10:04:11 t 1 1 157686 430 0.00 2019-11-08 10:07:18 2019-11-08 10:07:20 t 1 1 157689 623 0.00 2019-11-08 10:06:24 2019-11-08 10:09:33 t 1 1 157690 430 0.00 2019-11-08 10:08:24 2019-11-08 10:10:01 t 1 1 157692 623 0.00 2019-11-08 10:11:50 2019-11-08 10:12:29 t 1 1 157694 623 0.00 2019-11-08 10:12:42 2019-11-08 10:12:43 t 1 1 157699 623 0.00 2019-11-08 10:15:36 2019-11-08 10:15:37 t 1 1 157703 422 0.00 2019-11-08 10:15:20 2019-11-08 10:16:47 t 1 1 157705 430 0.00 2019-11-08 10:18:50 2019-11-08 10:18:52 t 1 1 157706 430 0.00 2019-11-08 10:18:58 2019-11-08 10:19:03 t 1 1 157709 545 0.00 2019-11-08 10:00:57 2019-11-08 10:21:44 t 1 1 157711 562 0.00 2019-11-08 10:20:17 2019-11-08 10:22:35 t 1 1 157713 430 0.00 2019-11-08 10:24:01 2019-11-08 10:24:03 t 1 1 157717 585 0.00 2019-11-08 10:07:09 2019-11-08 10:26:37 t 1 1 157722 595 0.00 2019-11-08 10:26:53 2019-11-08 10:30:27 t 1 1 157726 623 0.00 2019-11-08 10:19:43 2019-11-08 10:34:58 t 1 1 157728 375 0.00 2019-11-08 01:14:18 2019-11-08 10:35:15 t 1 1 157734 430 0.00 2019-11-08 10:40:34 2019-11-08 10:40:40 t 1 1 157744 430 0.00 2019-11-08 10:45:51 2019-11-08 10:46:37 t 1 1 157745 430 0.00 2019-11-08 10:47:04 2019-11-08 10:47:39 t 1 1 157746 430 0.00 2019-11-08 10:48:08 2019-11-08 10:48:14 t 1 1 157748 375 0.00 2019-11-08 10:46:36 2019-11-08 10:48:44 t 1 1 157750 430 0.00 2019-11-08 10:49:09 2019-11-08 10:49:46 t 1 1 157752 422 0.00 2019-11-08 10:49:10 2019-11-08 10:50:27 t 1 1 157756 422 0.00 2019-11-08 10:50:56 2019-11-08 10:53:06 t 1 1 157757 514 0.00 2019-11-08 10:52:26 2019-11-08 10:53:18 t 1 1 157759 514 0.00 2019-11-08 10:53:17 2019-11-08 10:54:18 t 1 1 157760 430 0.00 2019-11-08 10:54:39 2019-11-08 10:54:56 t 1 1 157761 545 0.00 2019-11-08 10:41:21 2019-11-08 10:55:00 t 1 1 157764 430 0.00 2019-11-08 10:55:44 2019-11-08 10:56:44 t 1 1 157765 430 0.00 2019-11-08 10:57:49 2019-11-08 10:57:56 t 1 1 157777 375 0.00 2019-11-08 11:01:18 2019-11-08 11:14:18 t 1 1 157435 562 0.00 2019-11-08 05:08:22 2019-11-08 05:08:37 t 1 1 157438 623 0.00 2019-11-08 05:18:41 2019-11-08 05:18:44 t 1 1 157439 562 0.00 2019-11-08 05:19:10 2019-11-08 05:19:22 t 1 1 157442 562 0.00 2019-11-08 05:29:56 2019-11-08 05:30:11 t 1 1 157443 623 0.00 2019-11-08 05:33:59 2019-11-08 05:34:00 t 1 1 157448 623 0.00 2019-11-08 05:44:08 2019-11-08 05:44:09 t 1 1 157451 623 0.00 2019-11-08 05:54:34 2019-11-08 05:54:35 t 1 1 157455 623 0.00 2019-11-08 06:04:28 2019-11-08 06:04:31 t 1 1 157457 637 0.00 2019-11-08 06:04:56 2019-11-08 06:06:34 t 1 1 157461 637 0.00 2019-11-08 06:08:33 2019-11-08 06:09:50 t 1 1 157471 623 0.00 2019-11-08 06:29:57 2019-11-08 06:29:57 t 1 1 157476 615 0.00 2019-11-08 06:41:27 2019-11-08 06:42:56 t 1 1 157477 623 0.00 2019-11-08 06:45:16 2019-11-08 06:45:27 t 1 1 157480 637 0.00 2019-11-08 06:12:41 2019-11-08 06:51:56 t 1 1 157483 595 0.00 2019-11-08 06:52:12 2019-11-08 06:57:40 t 1 1 157485 595 0.00 2019-11-08 06:59:38 2019-11-08 06:59:47 t 1 1 157490 623 0.00 2019-11-08 07:05:34 2019-11-08 07:05:37 t 1 1 157491 595 0.00 2019-11-08 07:09:50 2019-11-08 07:09:57 t 1 1 157494 514 0.00 2019-11-08 06:08:01 2019-11-08 07:12:19 t 1 1 157495 595 0.00 2019-11-08 07:14:58 2019-11-08 07:15:07 t 1 1 157496 623 0.00 2019-11-08 07:15:48 2019-11-08 07:15:52 t 1 1 157501 595 0.00 2019-11-08 07:21:08 2019-11-08 07:21:26 t 1 1 157502 623 0.00 2019-11-08 07:20:53 2019-11-08 07:21:53 t 1 1 157506 562 0.00 2019-11-08 07:21:34 2019-11-08 07:25:06 t 1 1 157509 514 0.00 2019-11-08 07:18:30 2019-11-08 07:26:01 t 1 1 157511 595 0.00 2019-11-08 07:27:07 2019-11-08 07:27:21 t 1 1 157513 562 0.00 2019-11-08 07:25:06 2019-11-08 07:28:19 t 1 1 157514 595 0.00 2019-11-08 07:30:16 2019-11-08 07:30:22 t 1 1 157515 623 0.00 2019-11-08 07:31:01 2019-11-08 07:31:04 t 1 1 157517 516 0.00 2019-11-08 06:53:43 2019-11-08 07:33:52 t 1 1 157518 422 0.00 2019-11-08 07:34:55 2019-11-08 07:35:13 t 1 1 157521 570 0.00 2019-11-08 07:25:31 2019-11-08 07:36:17 t 1 1 157522 562 0.00 2019-11-08 07:32:58 2019-11-08 07:37:01 t 1 1 157527 619 0.00 2019-11-08 07:32:22 2019-11-08 07:41:20 t 1 1 157530 562 0.00 2019-11-08 07:41:19 2019-11-08 07:42:27 t 1 1 157531 623 0.00 2019-11-08 07:42:36 2019-11-08 07:42:49 t 1 1 157532 637 0.00 2019-11-08 06:55:42 2019-11-08 07:44:17 t 1 1 157537 623 0.00 2019-11-08 07:46:16 2019-11-08 07:46:17 t 1 1 157540 566 0.00 2019-11-08 07:45:03 2019-11-08 07:49:49 t 1 1 157542 595 0.00 2019-11-08 07:50:52 2019-11-08 07:50:59 t 1 1 157544 595 0.00 2019-11-08 07:51:10 2019-11-08 07:51:33 t 1 1 157550 623 0.00 2019-11-08 07:56:07 2019-11-08 07:56:11 t 1 1 157555 595 0.00 2019-11-08 08:01:05 2019-11-08 08:01:13 t 1 1 157557 623 0.00 2019-11-08 08:01:24 2019-11-08 08:01:48 t 1 1 157559 562 0.00 2019-11-08 08:05:14 2019-11-08 08:05:34 t 1 1 157560 570 0.00 2019-11-08 07:53:27 2019-11-08 08:06:14 t 1 1 157561 595 0.00 2019-11-08 08:06:13 2019-11-08 08:06:20 t 1 1 157566 623 0.00 2019-11-08 08:11:32 2019-11-08 08:11:35 t 1 1 157567 570 0.00 2019-11-08 08:06:14 2019-11-08 08:13:16 t 1 1 157578 595 0.00 2019-11-08 08:26:43 2019-11-08 08:26:51 t 1 1 157580 623 0.00 2019-11-08 08:26:48 2019-11-08 08:27:26 t 1 1 157585 627 0.00 2019-11-08 08:13:25 2019-11-08 08:32:20 t 1 1 157587 637 0.00 2019-11-08 08:29:11 2019-11-08 08:33:10 t 1 1 157591 562 0.00 2019-11-08 08:37:16 2019-11-08 08:37:44 t 1 1 157594 623 0.00 2019-11-08 08:42:01 2019-11-08 08:42:04 t 1 1 157597 637 0.00 2019-11-08 08:33:41 2019-11-08 08:43:44 t 1 1 157599 623 0.00 2019-11-08 08:46:25 2019-11-08 08:46:56 t 1 1 157602 623 0.00 2019-11-08 08:47:54 2019-11-08 08:49:02 t 1 1 157605 619 0.00 2019-11-08 08:47:21 2019-11-08 08:53:09 t 1 1 157606 623 0.00 2019-11-08 08:54:05 2019-11-08 08:54:33 t 1 1 157608 562 0.00 2019-11-08 08:58:15 2019-11-08 08:58:40 t 1 1 157609 623 0.00 2019-11-08 09:01:40 2019-11-08 09:01:53 t 1 1 157610 623 0.00 2019-11-08 09:02:30 2019-11-08 09:02:37 t 1 1 157612 619 0.00 2019-11-08 09:06:39 2019-11-08 09:08:07 t 1 1 157613 623 0.00 2019-11-08 09:09:27 2019-11-08 09:09:38 t 1 1 157614 562 0.00 2019-11-08 09:05:40 2019-11-08 09:10:34 t 1 1 157615 623 0.00 2019-11-08 09:10:44 2019-11-08 09:11:52 t 1 1 157620 623 0.00 2019-11-08 09:14:47 2019-11-08 09:15:23 t 1 1 157623 623 0.00 2019-11-08 09:17:50 2019-11-08 09:18:34 t 1 1 157624 623 0.00 2019-11-08 09:18:53 2019-11-08 09:19:32 t 1 1 157625 623 0.00 2019-11-08 09:19:52 2019-11-08 09:21:02 t 1 1 157632 597 0.00 2019-11-08 09:24:57 2019-11-08 09:28:45 t 1 1 157635 430 0.00 2019-11-08 09:30:01 2019-11-08 09:36:27 t 1 1 157638 623 0.00 2019-11-08 09:37:35 2019-11-08 09:38:12 t 1 1 157639 623 0.00 2019-11-08 09:41:08 2019-11-08 09:41:11 t 1 1 157640 623 0.00 2019-11-08 09:43:17 2019-11-08 09:44:36 t 1 1 157644 520 0.00 2019-11-08 09:45:19 2019-11-08 09:47:24 t 1 1 157645 430 0.00 2019-11-08 09:36:49 2019-11-08 09:48:35 t 1 1 157655 623 0.00 2019-11-08 09:55:28 2019-11-08 09:55:41 t 1 1 157658 516 0.00 2019-11-08 09:51:21 2019-11-08 09:57:34 t 1 1 157662 623 0.00 2019-11-08 09:57:11 2019-11-08 09:59:01 t 1 1 157666 623 0.00 2019-11-08 10:00:20 2019-11-08 10:00:26 t 1 1 157668 430 0.00 2019-11-08 10:01:02 2019-11-08 10:01:04 t 1 1 157669 562 0.00 2019-11-08 10:01:05 2019-11-08 10:01:26 t 1 1 157673 430 0.00 2019-11-08 10:02:02 2019-11-08 10:02:07 t 1 1 157675 430 0.00 2019-11-08 10:03:13 2019-11-08 10:03:24 t 1 1 157676 430 0.00 2019-11-08 10:03:31 2019-11-08 10:03:43 t 1 1 157681 430 0.00 2019-11-08 10:04:23 2019-11-08 10:04:41 t 1 1 157682 430 0.00 2019-11-08 10:05:37 2019-11-08 10:05:50 t 1 1 157683 566 0.00 2019-11-08 10:04:30 2019-11-08 10:06:16 t 1 1 157691 430 0.00 2019-11-08 10:08:18 2019-11-08 10:10:01 t 1 1 157693 562 0.00 2019-11-08 10:11:35 2019-11-08 10:12:42 t 1 1 157696 430 0.00 2019-11-08 10:13:23 2019-11-08 10:13:25 t 1 1 157697 430 0.00 2019-11-08 10:13:44 2019-11-08 10:13:59 t 1 1 157698 619 0.00 2019-11-08 10:08:49 2019-11-08 10:15:32 t 1 1 157701 430 0.00 2019-11-08 10:14:40 2019-11-08 10:16:01 t 1 1 157704 430 0.00 2019-11-08 10:17:46 2019-11-08 10:18:02 t 1 1 157708 430 0.00 2019-11-08 10:20:46 2019-11-08 10:21:03 t 1 1 157710 595 0.00 2019-11-08 10:20:48 2019-11-08 10:21:45 t 1 1 157714 430 0.00 2019-11-08 10:25:06 2019-11-08 10:25:52 t 1 1 157715 422 0.00 2019-11-08 10:23:36 2019-11-08 10:26:12 t 1 1 157718 430 0.00 2019-11-08 10:27:28 2019-11-08 10:27:30 t 1 1 157721 597 0.00 2019-11-08 10:03:24 2019-11-08 10:29:09 t 1 1 157723 430 0.00 2019-11-08 10:30:25 2019-11-08 10:30:31 t 1 1 157724 430 0.00 2019-11-08 10:30:09 2019-11-08 10:32:01 t 1 1 157725 645 0.00 2019-11-08 10:28:25 2019-11-08 10:33:19 t 1 1 157730 430 0.00 2019-11-08 10:35:52 2019-11-08 10:36:14 t 1 1 157437 623 0.00 2019-11-08 05:13:28 2019-11-08 05:13:37 t 1 1 157440 623 0.00 2019-11-08 05:23:45 2019-11-08 05:23:53 t 1 1 157444 619 0.00 2019-11-08 05:25:25 2019-11-08 05:36:02 t 1 1 157445 562 0.00 2019-11-08 05:37:32 2019-11-08 05:37:48 t 1 1 157447 623 0.00 2019-11-08 05:39:09 2019-11-08 05:39:12 t 1 1 157449 562 0.00 2019-11-08 05:48:17 2019-11-08 05:48:33 t 1 1 157450 623 0.00 2019-11-08 05:49:14 2019-11-08 05:49:15 t 1 1 157452 623 0.00 2019-11-08 05:54:41 2019-11-08 05:55:41 t 1 1 157454 623 0.00 2019-11-08 05:59:45 2019-11-08 05:59:47 t 1 1 157458 514 0.00 2019-11-08 02:50:41 2019-11-08 06:08:01 t 1 1 157459 637 0.00 2019-11-08 06:07:24 2019-11-08 06:08:33 t 1 1 157460 623 0.00 2019-11-08 06:09:33 2019-11-08 06:09:35 t 1 1 157462 562 0.00 2019-11-08 06:09:45 2019-11-08 06:09:58 t 1 1 157465 623 0.00 2019-11-08 06:14:35 2019-11-08 06:14:42 t 1 1 157468 623 0.00 2019-11-08 06:19:43 2019-11-08 06:19:46 t 1 1 157472 220 0.00 2019-11-08 05:10:00 2019-11-08 06:30:01 t 1 1 157473 562 0.00 2019-11-08 06:31:11 2019-11-08 06:31:32 t 1 1 157475 562 0.00 2019-11-08 06:41:54 2019-11-08 06:42:14 t 1 1 157479 623 0.00 2019-11-08 06:50:15 2019-11-08 06:50:18 t 1 1 157481 637 0.00 2019-11-08 06:53:44 2019-11-08 06:54:55 t 1 1 157484 562 0.00 2019-11-08 06:58:39 2019-11-08 06:59:03 t 1 1 157486 623 0.00 2019-11-08 07:00:27 2019-11-08 07:00:30 t 1 1 157487 619 0.00 2019-11-08 06:42:44 2019-11-08 07:01:52 t 1 1 157493 619 0.00 2019-11-08 07:02:48 2019-11-08 07:11:34 t 1 1 157497 595 0.00 2019-11-08 07:15:35 2019-11-08 07:15:53 t 1 1 157499 595 0.00 2019-11-08 07:20:03 2019-11-08 07:20:12 t 1 1 157503 595 0.00 2019-11-08 07:21:35 2019-11-08 07:21:57 t 1 1 157508 619 0.00 2019-11-08 07:17:23 2019-11-08 07:25:48 t 1 1 157512 422 0.00 2019-11-08 07:27:18 2019-11-08 07:27:40 t 1 1 157516 562 0.00 2019-11-08 07:28:19 2019-11-08 07:32:58 t 1 1 157523 562 0.00 2019-11-08 07:37:01 2019-11-08 07:39:46 t 1 1 157526 623 0.00 2019-11-08 07:41:10 2019-11-08 07:41:18 t 1 1 157528 623 0.00 2019-11-08 07:41:56 2019-11-08 07:42:10 t 1 1 157533 623 0.00 2019-11-08 07:44:16 2019-11-08 07:44:29 t 1 1 157535 595 0.00 2019-11-08 07:45:44 2019-11-08 07:45:52 t 1 1 157536 623 0.00 2019-11-08 07:45:56 2019-11-08 07:46:09 t 1 1 157539 619 0.00 2019-11-08 07:42:38 2019-11-08 07:48:45 t 1 1 157545 623 0.00 2019-11-08 07:52:52 2019-11-08 07:53:06 t 1 1 157547 623 0.00 2019-11-08 07:54:31 2019-11-08 07:54:35 t 1 1 157549 595 0.00 2019-11-08 07:55:59 2019-11-08 07:56:06 t 1 1 157558 416 0.00 2019-11-07 21:32:23 2019-11-08 08:03:21 t 1 1 157562 623 0.00 2019-11-08 08:06:14 2019-11-08 08:06:39 t 1 1 157565 595 0.00 2019-11-08 08:10:48 2019-11-08 08:11:29 t 1 1 157570 623 0.00 2019-11-08 08:16:19 2019-11-08 08:16:36 t 1 1 157572 566 0.00 2019-11-08 07:59:33 2019-11-08 08:17:23 t 1 1 157573 637 0.00 2019-11-08 08:00:32 2019-11-08 08:20:00 t 1 1 157576 623 0.00 2019-11-08 08:21:42 2019-11-08 08:22:55 t 1 1 157579 562 0.00 2019-11-08 08:26:35 2019-11-08 08:26:52 t 1 1 157582 637 0.00 2019-11-08 08:27:46 2019-11-08 08:29:23 t 1 1 157584 595 0.00 2019-11-08 08:28:39 2019-11-08 08:31:44 t 1 1 157586 623 0.00 2019-11-08 08:31:54 2019-11-08 08:32:29 t 1 1 157588 623 0.00 2019-11-08 08:36:41 2019-11-08 08:36:56 t 1 1 157589 566 0.00 2019-11-08 08:17:23 2019-11-08 08:37:23 t 1 1 157595 516 0.00 2019-11-08 08:26:18 2019-11-08 08:42:40 t 1 1 157600 597 0.00 2019-11-08 08:45:50 2019-11-08 08:47:50 t 1 1 157601 562 0.00 2019-11-08 08:47:31 2019-11-08 08:48:17 t 1 1 157604 623 0.00 2019-11-08 08:49:34 2019-11-08 08:52:33 t 1 1 157611 623 0.00 2019-11-08 09:06:54 2019-11-08 09:07:07 t 1 1 157616 422 0.00 2019-11-08 09:12:05 2019-11-08 09:12:17 t 1 1 157621 623 0.00 2019-11-08 09:15:31 2019-11-08 09:16:44 t 1 1 157626 623 0.00 2019-11-08 09:21:02 2019-11-08 09:21:41 t 1 1 157627 623 0.00 2019-11-08 09:22:42 2019-11-08 09:22:47 t 1 1 157628 623 0.00 2019-11-08 09:25:41 2019-11-08 09:26:46 t 1 1 157629 562 0.00 2019-11-08 09:27:23 2019-11-08 09:27:43 t 1 1 157633 623 0.00 2019-11-08 09:31:00 2019-11-08 09:31:34 t 1 1 157637 591 0.00 2019-11-08 09:35:07 2019-11-08 09:38:02 t 1 1 157641 422 0.00 2019-11-08 09:44:13 2019-11-08 09:46:01 t 1 1 157643 623 0.00 2019-11-08 09:45:36 2019-11-08 09:46:20 t 1 1 157647 591 0.00 2019-11-08 09:44:47 2019-11-08 09:50:02 t 1 1 157648 623 0.00 2019-11-08 09:51:17 2019-11-08 09:51:20 t 1 1 157650 430 0.00 2019-11-08 09:52:27 2019-11-08 09:52:29 t 1 1 157651 623 0.00 2019-11-08 09:51:54 2019-11-08 09:53:08 t 1 1 157654 566 0.00 2019-11-08 09:46:10 2019-11-08 09:55:38 t 1 1 157656 430 0.00 2019-11-08 09:54:26 2019-11-08 09:55:56 t 1 1 157657 623 0.00 2019-11-08 09:56:21 2019-11-08 09:56:22 t 1 1 157659 422 0.00 2019-11-08 09:48:29 2019-11-08 09:57:36 t 1 1 157661 623 0.00 2019-11-08 09:57:33 2019-11-08 09:58:11 t 1 1 157664 623 0.00 2019-11-08 09:59:35 2019-11-08 09:59:38 t 1 1 157667 623 0.00 2019-11-08 10:00:48 2019-11-08 10:00:58 t 1 1 157670 623 0.00 2019-11-08 10:01:23 2019-11-08 10:01:26 t 1 1 157671 623 0.00 2019-11-08 10:01:46 2019-11-08 10:01:49 t 1 1 157672 430 0.00 2019-11-08 10:01:55 2019-11-08 10:01:57 t 1 1 157678 430 0.00 2019-11-08 10:04:06 2019-11-08 10:04:08 t 1 1 157680 566 0.00 2019-11-08 09:55:38 2019-11-08 10:04:30 t 1 1 157684 430 0.00 2019-11-08 10:06:16 2019-11-08 10:06:18 t 1 1 157685 430 0.00 2019-11-08 10:05:06 2019-11-08 10:07:01 t 1 1 157687 562 0.00 2019-11-08 10:07:18 2019-11-08 10:08:04 t 1 1 157688 430 0.00 2019-11-08 10:09:27 2019-11-08 10:09:27 f 1 1 157695 422 0.00 2019-11-08 10:05:36 2019-11-08 10:13:16 t 1 1 157700 430 0.00 2019-11-08 10:15:42 2019-11-08 10:15:42 f 1 1 157702 430 0.00 2019-11-08 10:15:13 2019-11-08 10:16:14 t 1 1 157707 623 0.00 2019-11-08 10:19:06 2019-11-08 10:19:14 t 1 1 157712 430 0.00 2019-11-08 10:21:08 2019-11-08 10:23:01 t 1 1 157716 430 0.00 2019-11-08 10:26:04 2019-11-08 10:26:21 t 1 1 157719 562 0.00 2019-11-08 10:27:40 2019-11-08 10:28:17 t 1 1 157720 430 0.00 2019-11-08 10:28:40 2019-11-08 10:28:51 t 1 1 157727 422 0.00 2019-11-08 10:33:32 2019-11-08 10:35:01 t 1 1 157729 422 0.00 2019-11-08 10:35:20 2019-11-08 10:35:59 t 1 1 157736 422 0.00 2019-11-08 10:40:33 2019-11-08 10:41:52 t 1 1 157737 430 0.00 2019-11-08 10:42:19 2019-11-08 10:42:31 t 1 1 157739 619 0.00 2019-11-08 10:28:06 2019-11-08 10:42:56 t 1 1 157740 645 0.00 2019-11-08 10:42:58 2019-11-08 10:43:05 t 1 1 157741 430 0.00 2019-11-08 10:45:24 2019-11-08 10:45:33 t 1 1 157747 430 0.00 2019-11-08 10:48:22 2019-11-08 10:48:24 t 1 1 157749 562 0.00 2019-11-08 10:33:07 2019-11-08 10:49:41 t 1 1 157751 430 0.00 2019-11-08 10:49:50 2019-11-08 10:49:52 t 1 1 157754 619 0.00 2019-11-08 10:50:10 2019-11-08 10:52:20 t 1 1 157731 430 0.00 2019-11-08 10:37:36 2019-11-08 10:37:38 t 1 1 157732 430 0.00 2019-11-08 10:38:38 2019-11-08 10:38:44 t 1 1 157733 422 0.00 2019-11-08 10:38:56 2019-11-08 10:39:54 t 1 1 157735 375 0.00 2019-11-08 10:36:06 2019-11-08 10:40:47 t 1 1 157738 430 0.00 2019-11-08 10:42:37 2019-11-08 10:42:42 t 1 1 157742 430 0.00 2019-11-08 10:45:40 2019-11-08 10:45:42 t 1 1 157743 375 0.00 2019-11-08 10:41:00 2019-11-08 10:46:10 t 1 1 157753 645 0.00 2019-11-08 10:44:03 2019-11-08 10:50:42 t 1 1 157758 430 0.00 2019-11-08 10:53:15 2019-11-08 10:53:29 t 1 1 157767 562 0.00 2019-11-08 11:00:15 2019-11-08 11:02:01 t 1 1 157770 562 0.00 2019-11-08 11:07:20 2019-11-08 11:08:03 t 1 1 157772 623 0.00 2019-11-08 10:34:58 2019-11-08 11:09:17 t 1 1 157774 545 0.00 2019-11-08 11:06:13 2019-11-08 11:13:09 t 1 1 157776 570 0.00 2019-11-08 11:02:28 2019-11-08 11:14:13 t 1 1 157779 637 0.00 2019-11-08 11:15:10 2019-11-08 11:17:31 t 1 1 157781 562 0.00 2019-11-08 11:08:09 2019-11-08 11:27:35 t 1 1 157782 597 0.00 2019-11-08 11:19:23 2019-11-08 11:28:41 t 1 1 157783 422 0.00 2019-11-08 11:29:46 2019-11-08 11:30:04 t 1 1 157789 591 0.00 2019-11-08 11:24:10 2019-11-08 11:38:01 t 1 1 157791 422 0.00 2019-11-08 11:39:58 2019-11-08 11:41:08 t 1 1 157796 520 0.00 2019-11-08 11:40:27 2019-11-08 11:45:15 t 1 1 157799 538 0.00 2019-11-08 11:17:49 2019-11-08 11:48:29 t 1 1 157801 545 0.00 2019-11-08 11:24:29 2019-11-08 11:49:02 t 1 1 157806 585 0.00 2019-11-08 11:51:15 2019-11-08 11:53:32 t 1 1 157810 451 0.00 2019-11-08 11:38:19 2019-11-08 12:00:08 t 1 1 157812 422 0.00 2019-11-08 12:00:43 2019-11-08 12:00:44 t 1 1 157815 625 0.00 2019-11-08 11:32:20 2019-11-08 12:04:45 t 1 1 157816 375 0.00 2019-11-08 11:39:31 2019-11-08 12:05:02 t 1 1 157821 375 0.00 2019-11-08 12:05:02 2019-11-08 12:10:47 t 1 1 157822 623 0.00 2019-11-08 11:52:22 2019-11-08 12:11:28 t 1 1 157826 556 0.00 2019-11-08 08:09:17 2019-11-08 12:14:20 t 1 1 157830 422 0.00 2019-11-08 12:21:05 2019-11-08 12:21:13 t 1 1 157833 645 0.00 2019-11-08 12:17:55 2019-11-08 12:22:19 t 1 1 157837 516 0.00 2019-11-08 12:17:37 2019-11-08 12:24:27 t 1 1 157840 585 0.00 2019-11-08 12:12:47 2019-11-08 12:26:50 t 1 1 157845 625 0.00 2019-11-08 12:05:29 2019-11-08 12:29:34 t 1 1 157848 422 0.00 2019-11-08 12:31:44 2019-11-08 12:33:02 t 1 1 157850 623 0.00 2019-11-08 12:37:44 2019-11-08 12:37:55 t 1 1 157853 623 0.00 2019-11-08 12:27:59 2019-11-08 12:38:07 t 1 1 157855 562 0.00 2019-11-08 12:38:32 2019-11-08 12:38:47 t 1 1 157859 578 0.00 2019-11-07 23:24:25 2019-11-08 12:40:57 t 1 1 157861 520 0.00 2019-11-08 12:35:25 2019-11-08 12:41:18 t 1 1 157865 627 0.00 2019-11-08 12:42:23 2019-11-08 12:44:08 t 1 1 157866 623 0.00 2019-11-08 12:46:08 2019-11-08 12:46:11 t 1 1 157867 562 0.00 2019-11-08 12:49:04 2019-11-08 12:49:26 t 1 1 157868 422 0.00 2019-11-08 12:48:37 2019-11-08 12:49:58 t 1 1 157870 623 0.00 2019-11-08 12:50:45 2019-11-08 12:51:16 t 1 1 157872 619 0.00 2019-11-08 12:45:50 2019-11-08 12:51:38 t 1 1 157873 623 0.00 2019-11-08 12:51:40 2019-11-08 12:51:59 t 1 1 157875 510 0.00 2019-11-08 12:44:05 2019-11-08 12:56:05 t 1 1 157876 623 0.00 2019-11-08 12:56:17 2019-11-08 12:56:18 t 1 1 157878 585 0.00 2019-11-08 12:34:35 2019-11-08 12:56:35 t 1 1 157880 623 0.00 2019-11-08 13:01:58 2019-11-08 13:02:21 t 1 1 157882 623 0.00 2019-11-08 13:03:01 2019-11-08 13:03:04 t 1 1 157884 619 0.00 2019-11-08 13:01:05 2019-11-08 13:03:15 t 1 1 157885 516 0.00 2019-11-08 12:50:12 2019-11-08 13:04:57 t 1 1 157887 623 0.00 2019-11-08 13:03:34 2019-11-08 13:05:14 t 1 1 157892 623 0.00 2019-11-08 13:06:22 2019-11-08 13:07:34 t 1 1 157893 416 0.00 2019-11-08 13:03:05 2019-11-08 13:08:39 t 1 1 157897 422 0.00 2019-11-08 13:02:47 2019-11-08 13:10:37 t 1 1 157905 623 0.00 2019-11-08 13:13:13 2019-11-08 13:13:14 t 1 1 157906 623 0.00 2019-11-08 13:13:22 2019-11-08 13:14:01 t 1 1 157909 516 0.00 2019-11-08 13:04:57 2019-11-08 13:19:55 t 1 1 157910 623 0.00 2019-11-08 13:19:15 2019-11-08 13:20:13 t 1 1 157916 623 0.00 2019-11-08 13:24:28 2019-11-08 13:25:13 t 1 1 157918 619 0.00 2019-11-08 13:17:47 2019-11-08 13:25:57 t 1 1 157920 585 0.00 2019-11-08 13:23:56 2019-11-08 13:28:20 t 1 1 157923 545 0.00 2019-11-08 13:24:16 2019-11-08 13:29:58 t 1 1 157928 623 0.00 2019-11-08 13:30:03 2019-11-08 13:32:22 t 1 1 157930 623 0.00 2019-11-08 13:32:33 2019-11-08 13:33:18 t 1 1 157932 562 0.00 2019-11-08 13:30:21 2019-11-08 13:34:27 t 1 1 157933 637 0.00 2019-11-08 13:28:35 2019-11-08 13:35:05 t 1 1 157936 422 0.00 2019-11-08 13:33:03 2019-11-08 13:37:09 t 1 1 157939 635 0.00 2019-11-08 13:28:28 2019-11-08 13:38:49 t 1 1 157940 562 0.00 2019-11-08 13:40:24 2019-11-08 13:40:34 t 1 1 157944 526 0.00 2019-11-08 13:43:39 2019-11-08 13:43:43 t 1 1 157949 619 0.00 2019-11-08 13:35:11 2019-11-08 13:48:26 t 1 1 157952 490 0.00 2019-11-08 13:48:34 2019-11-08 13:51:10 t 1 1 157953 623 0.00 2019-11-08 13:51:56 2019-11-08 13:52:05 t 1 1 157954 623 0.00 2019-11-08 13:53:50 2019-11-08 13:53:51 t 1 1 157960 623 0.00 2019-11-08 13:57:35 2019-11-08 13:58:57 t 1 1 157965 375 0.00 2019-11-08 13:45:35 2019-11-08 14:00:40 t 1 1 157973 379 0.00 2019-11-08 14:02:51 2019-11-08 14:05:54 t 1 1 157974 566 0.00 2019-11-08 13:57:55 2019-11-08 14:06:34 t 1 1 157976 595 0.00 2019-11-08 14:05:26 2019-11-08 14:07:28 t 1 1 157978 623 0.00 2019-11-08 14:07:45 2019-11-08 14:07:55 t 1 1 157979 516 0.00 2019-11-08 13:59:50 2019-11-08 14:08:17 t 1 1 157985 578 0.00 2019-11-08 13:30:21 2019-11-08 14:12:13 t 1 1 157990 562 0.00 2019-11-08 14:16:30 2019-11-08 14:17:48 t 1 1 157991 422 0.00 2019-11-08 14:15:19 2019-11-08 14:20:55 t 1 1 157992 562 0.00 2019-11-08 14:20:11 2019-11-08 14:22:17 t 1 1 157995 623 0.00 2019-11-08 14:15:59 2019-11-08 14:23:37 t 1 1 157997 422 0.00 2019-11-08 14:23:55 2019-11-08 14:24:00 t 1 1 157998 623 0.00 2019-11-08 14:23:55 2019-11-08 14:25:37 t 1 1 158001 623 0.00 2019-11-08 14:27:35 2019-11-08 14:27:35 t 1 1 158003 623 0.00 2019-11-08 14:27:47 2019-11-08 14:28:20 t 1 1 158014 422 0.00 2019-11-08 14:33:53 2019-11-08 14:34:09 t 1 1 158015 422 0.00 2019-11-08 14:34:48 2019-11-08 14:39:51 t 1 1 158018 623 0.00 2019-11-08 14:40:33 2019-11-08 14:40:43 t 1 1 158023 422 0.00 2019-11-08 14:44:17 2019-11-08 14:44:29 t 1 1 158027 623 0.00 2019-11-08 14:46:38 2019-11-08 14:46:42 t 1 1 158036 623 0.00 2019-11-08 14:53:08 2019-11-08 14:53:16 t 1 1 158049 445 0.00 2019-11-08 14:51:51 2019-11-08 15:02:27 t 1 1 158050 570 0.00 2019-11-08 14:48:24 2019-11-08 15:03:20 t 1 1 158054 570 0.00 2019-11-08 15:06:54 2019-11-08 15:09:40 t 1 1 158064 545 0.00 2019-11-08 14:42:02 2019-11-08 15:14:24 t 1 1 158069 587 0.00 2019-11-08 15:16:18 2019-11-08 15:16:31 t 1 1 157755 591 0.00 2019-11-08 10:35:23 2019-11-08 10:52:59 t 1 1 157762 562 0.00 2019-11-08 10:54:20 2019-11-08 10:55:32 t 1 1 157763 514 0.00 2019-11-08 10:55:30 2019-11-08 10:56:33 t 1 1 157766 375 0.00 2019-11-08 10:49:04 2019-11-08 11:01:18 t 1 1 157768 637 0.00 2019-11-08 08:43:38 2019-11-08 11:05:24 t 1 1 157769 562 0.00 2019-11-08 11:03:35 2019-11-08 11:07:20 t 1 1 157771 637 0.00 2019-11-08 11:06:12 2019-11-08 11:08:47 t 1 1 157773 637 0.00 2019-11-08 11:08:47 2019-11-08 11:10:31 t 1 1 157775 637 0.00 2019-11-08 11:10:32 2019-11-08 11:13:31 t 1 1 157778 645 0.00 2019-11-08 11:08:23 2019-11-08 11:16:07 t 1 1 157785 625 0.00 2019-11-08 11:22:43 2019-11-08 11:32:21 t 1 1 157786 645 0.00 2019-11-08 11:28:58 2019-11-08 11:33:26 t 1 1 157790 375 0.00 2019-11-08 11:14:17 2019-11-08 11:38:10 t 1 1 157792 562 0.00 2019-11-08 11:41:02 2019-11-08 11:41:08 t 1 1 157794 566 0.00 2019-11-08 11:39:11 2019-11-08 11:44:58 t 1 1 157800 422 0.00 2019-11-08 11:48:21 2019-11-08 11:48:34 t 1 1 157802 595 0.00 2019-11-08 11:48:24 2019-11-08 11:49:17 t 1 1 157804 422 0.00 2019-11-08 11:50:09 2019-11-08 11:50:32 t 1 1 157808 562 0.00 2019-11-08 11:57:31 2019-11-08 11:57:37 t 1 1 157811 597 0.00 2019-11-08 11:52:57 2019-11-08 12:00:15 t 1 1 157818 512 0.00 2019-11-08 11:44:28 2019-11-08 12:06:28 t 1 1 157820 512 0.00 2019-11-08 12:07:08 2019-11-08 12:08:38 t 1 1 157825 422 0.00 2019-11-08 12:12:20 2019-11-08 12:14:02 t 1 1 157829 597 0.00 2019-11-08 12:18:30 2019-11-08 12:20:58 t 1 1 157831 627 0.00 2019-11-08 12:20:45 2019-11-08 12:21:36 t 1 1 157832 627 0.00 2019-11-08 12:21:47 2019-11-08 12:21:57 t 1 1 157834 538 0.00 2019-11-08 11:55:55 2019-11-08 12:22:41 t 1 1 157839 623 0.00 2019-11-08 12:24:54 2019-11-08 12:25:57 t 1 1 157842 627 0.00 2019-11-08 12:24:40 2019-11-08 12:27:50 t 1 1 157844 645 0.00 2019-11-08 12:26:45 2019-11-08 12:29:12 t 1 1 157847 514 0.00 2019-11-08 12:31:55 2019-11-08 12:32:56 t 1 1 157852 625 0.00 2019-11-08 12:29:34 2019-11-08 12:38:07 t 1 1 157854 623 0.00 2019-11-08 12:38:07 2019-11-08 12:38:08 t 1 1 157858 623 0.00 2019-11-08 12:39:41 2019-11-08 12:39:42 t 1 1 157864 510 0.00 2019-11-08 12:30:57 2019-11-08 12:44:05 t 1 1 157883 416 0.00 2019-11-08 08:02:25 2019-11-08 13:03:05 t 1 1 157886 510 0.00 2019-11-08 12:56:05 2019-11-08 13:04:58 t 1 1 157888 562 0.00 2019-11-08 12:58:00 2019-11-08 13:05:41 t 1 1 157889 564 0.00 2019-11-08 12:03:42 2019-11-08 13:06:42 t 1 1 157894 566 0.00 2019-11-08 13:01:21 2019-11-08 13:09:06 t 1 1 157895 623 0.00 2019-11-08 13:08:40 2019-11-08 13:09:33 t 1 1 157898 562 0.00 2019-11-08 13:09:07 2019-11-08 13:10:38 t 1 1 157899 587 0.00 2019-11-08 13:07:48 2019-11-08 13:11:16 t 1 1 157902 510 0.00 2019-11-08 13:04:58 2019-11-08 13:11:59 t 1 1 157903 623 0.00 2019-11-08 13:12:25 2019-11-08 13:12:36 t 1 1 157904 623 0.00 2019-11-08 13:12:54 2019-11-08 13:13:05 t 1 1 157908 623 0.00 2019-11-08 13:19:03 2019-11-08 13:19:05 t 1 1 157912 578 0.00 2019-11-08 12:50:29 2019-11-08 13:21:51 t 1 1 157913 562 0.00 2019-11-08 13:18:47 2019-11-08 13:22:26 t 1 1 157915 379 0.00 2019-11-08 13:17:55 2019-11-08 13:25:08 t 1 1 157917 587 0.00 2019-11-08 13:11:43 2019-11-08 13:25:26 t 1 1 157925 578 0.00 2019-11-08 13:21:51 2019-11-08 13:30:21 t 1 1 157934 375 0.00 2019-11-08 13:26:16 2019-11-08 13:36:52 t 1 1 157935 379 0.00 2019-11-08 13:25:08 2019-11-08 13:37:06 t 1 1 157937 587 0.00 2019-11-08 13:25:44 2019-11-08 13:37:17 t 1 1 157941 562 0.00 2019-11-08 13:42:29 2019-11-08 13:43:16 t 1 1 157943 623 0.00 2019-11-08 13:43:29 2019-11-08 13:43:32 t 1 1 157945 566 0.00 2019-11-08 13:09:06 2019-11-08 13:43:48 t 1 1 157946 623 0.00 2019-11-08 13:44:44 2019-11-08 13:45:37 t 1 1 157948 456 0.00 2019-11-08 13:41:46 2019-11-08 13:47:44 t 1 1 157956 645 0.00 2019-11-08 13:54:55 2019-11-08 13:55:06 t 1 1 157958 566 0.00 2019-11-08 13:43:48 2019-11-08 13:57:55 t 1 1 157959 422 0.00 2019-11-08 13:41:12 2019-11-08 13:58:40 t 1 1 157962 623 0.00 2019-11-08 13:59:11 2019-11-08 13:59:12 t 1 1 157963 422 0.00 2019-11-08 14:00:09 2019-11-08 14:00:32 t 1 1 157980 623 0.00 2019-11-08 14:08:12 2019-11-08 14:08:22 t 1 1 157983 623 0.00 2019-11-08 14:10:50 2019-11-08 14:10:55 t 1 1 157984 556 0.00 2019-11-08 12:14:19 2019-11-08 14:11:05 t 1 1 157986 514 0.00 2019-11-08 14:03:01 2019-11-08 14:13:09 t 1 1 157987 637 0.00 2019-11-08 13:35:05 2019-11-08 14:14:35 t 1 1 157989 562 0.00 2019-11-08 14:10:19 2019-11-08 14:15:20 t 1 1 157999 623 0.00 2019-11-08 14:26:48 2019-11-08 14:26:54 t 1 1 158000 623 0.00 2019-11-08 14:26:59 2019-11-08 14:27:12 t 1 1 158002 623 0.00 2019-11-08 14:28:05 2019-11-08 14:28:08 t 1 1 158004 623 0.00 2019-11-08 14:28:19 2019-11-08 14:28:42 t 1 1 158005 623 0.00 2019-11-08 14:29:00 2019-11-08 14:29:06 t 1 1 158006 623 0.00 2019-11-08 14:29:33 2019-11-08 14:29:38 t 1 1 158008 623 0.00 2019-11-08 14:30:29 2019-11-08 14:30:36 t 1 1 158009 623 0.00 2019-11-08 14:30:41 2019-11-08 14:30:47 t 1 1 158011 562 0.00 2019-11-08 14:30:36 2019-11-08 14:32:03 t 1 1 158017 623 0.00 2019-11-08 14:40:22 2019-11-08 14:40:23 t 1 1 158020 623 0.00 2019-11-08 14:42:08 2019-11-08 14:42:22 t 1 1 158021 611 0.00 2019-11-08 14:26:53 2019-11-08 14:43:46 t 1 1 158022 422 0.00 2019-11-08 14:41:22 2019-11-08 14:44:11 t 1 1 158024 627 0.00 2019-11-08 14:38:26 2019-11-08 14:45:13 t 1 1 158029 645 0.00 2019-11-08 14:46:42 2019-11-08 14:47:42 t 1 1 158033 445 0.00 2019-11-08 14:43:07 2019-11-08 14:51:51 t 1 1 158039 623 0.00 2019-11-08 14:54:14 2019-11-08 14:54:29 t 1 1 158041 623 0.00 2019-11-08 14:55:43 2019-11-08 14:55:44 t 1 1 158042 623 0.00 2019-11-08 14:55:54 2019-11-08 14:56:13 t 1 1 158043 623 0.00 2019-11-08 14:56:49 2019-11-08 14:56:59 t 1 1 158051 623 0.00 2019-11-08 15:04:59 2019-11-08 15:05:00 t 1 1 158053 645 0.00 2019-11-08 14:47:42 2019-11-08 15:09:00 t 1 1 158055 585 0.00 2019-11-08 15:04:44 2019-11-08 15:09:56 t 1 1 158057 562 0.00 2019-11-08 15:10:03 2019-11-08 15:10:28 t 1 1 158058 623 0.00 2019-11-08 15:10:50 2019-11-08 15:11:05 t 1 1 158059 623 0.00 2019-11-08 15:11:54 2019-11-08 15:12:02 t 1 1 158062 599 0.00 2019-11-08 15:00:22 2019-11-08 15:12:33 t 1 1 158063 587 0.00 2019-11-08 15:12:31 2019-11-08 15:14:23 t 1 1 158066 562 0.00 2019-11-08 15:12:28 2019-11-08 15:14:38 t 1 1 158068 587 0.00 2019-11-08 15:14:37 2019-11-08 15:16:10 t 1 1 158073 566 0.00 2019-11-08 15:06:12 2019-11-08 15:17:35 t 1 1 158075 445 0.00 2019-11-08 15:16:42 2019-11-08 15:20:19 t 1 1 158076 545 0.00 2019-11-08 15:14:24 2019-11-08 15:20:51 t 1 1 158079 545 0.00 2019-11-08 15:20:51 2019-11-08 15:22:37 t 1 1 158080 562 0.00 2019-11-08 15:22:50 2019-11-08 15:23:17 t 1 1 158082 490 0.00 2019-11-08 15:24:09 2019-11-08 15:26:12 t 1 1 157780 645 0.00 2019-11-08 11:23:51 2019-11-08 11:27:20 t 1 1 157784 562 0.00 2019-11-08 11:30:20 2019-11-08 11:30:25 t 1 1 157787 623 0.00 2019-11-08 11:09:17 2019-11-08 11:37:11 t 1 1 157788 627 0.00 2019-11-08 11:31:51 2019-11-08 11:37:59 t 1 1 157793 422 0.00 2019-11-08 11:42:10 2019-11-08 11:43:18 t 1 1 157795 622 0.00 2019-11-08 02:08:21 2019-11-08 11:45:03 t 1 1 157797 645 0.00 2019-11-08 11:36:50 2019-11-08 11:46:16 t 1 1 157798 623 0.00 2019-11-08 11:37:11 2019-11-08 11:48:06 t 1 1 157803 623 0.00 2019-11-08 11:48:06 2019-11-08 11:50:20 t 1 1 157805 623 0.00 2019-11-08 11:50:26 2019-11-08 11:50:40 t 1 1 157807 422 0.00 2019-11-08 11:53:38 2019-11-08 11:53:57 t 1 1 157809 562 0.00 2019-11-08 11:58:38 2019-11-08 11:59:03 t 1 1 157813 622 0.00 2019-11-08 11:59:48 2019-11-08 12:01:06 t 1 1 157814 564 0.00 2019-11-08 11:33:07 2019-11-08 12:03:40 t 1 1 157817 422 0.00 2019-11-08 12:05:22 2019-11-08 12:05:33 t 1 1 157819 422 0.00 2019-11-08 12:07:08 2019-11-08 12:07:34 t 1 1 157823 585 0.00 2019-11-08 12:10:02 2019-11-08 12:12:32 t 1 1 157824 645 0.00 2019-11-08 12:05:13 2019-11-08 12:13:26 t 1 1 157827 623 0.00 2019-11-08 12:11:29 2019-11-08 12:18:10 t 1 1 157828 627 0.00 2019-11-08 12:12:09 2019-11-08 12:19:56 t 1 1 157835 623 0.00 2019-11-08 12:23:28 2019-11-08 12:23:36 t 1 1 157836 627 0.00 2019-11-08 12:22:50 2019-11-08 12:24:15 t 1 1 157838 623 0.00 2019-11-08 12:23:44 2019-11-08 12:24:52 t 1 1 157841 510 0.00 2019-11-08 12:21:54 2019-11-08 12:27:21 t 1 1 157843 562 0.00 2019-11-08 12:28:46 2019-11-08 12:28:50 t 1 1 157846 510 0.00 2019-11-08 12:27:21 2019-11-08 12:30:57 t 1 1 157849 645 0.00 2019-11-08 12:29:12 2019-11-08 12:34:04 t 1 1 157851 422 0.00 2019-11-08 12:36:21 2019-11-08 12:38:02 t 1 1 157856 645 0.00 2019-11-08 12:36:45 2019-11-08 12:39:02 t 1 1 157857 623 0.00 2019-11-08 12:39:22 2019-11-08 12:39:29 t 1 1 157860 623 0.00 2019-11-08 12:40:38 2019-11-08 12:41:05 t 1 1 157862 627 0.00 2019-11-08 12:38:03 2019-11-08 12:42:23 t 1 1 157863 619 0.00 2019-11-08 11:28:34 2019-11-08 12:43:42 t 1 1 157869 578 0.00 2019-11-08 12:40:57 2019-11-08 12:50:29 t 1 1 157871 623 0.00 2019-11-08 12:51:24 2019-11-08 12:51:29 t 1 1 157874 562 0.00 2019-11-08 12:54:13 2019-11-08 12:54:41 t 1 1 157877 623 0.00 2019-11-08 12:56:30 2019-11-08 12:56:31 t 1 1 157879 623 0.00 2019-11-08 13:01:18 2019-11-08 13:01:19 t 1 1 157881 422 0.00 2019-11-08 12:53:53 2019-11-08 13:02:28 t 1 1 157890 587 0.00 2019-11-08 13:00:46 2019-11-08 13:06:57 t 1 1 157891 587 0.00 2019-11-08 13:07:00 2019-11-08 13:07:16 t 1 1 157896 623 0.00 2019-11-08 13:10:16 2019-11-08 13:10:20 t 1 1 157900 591 0.00 2019-11-08 12:04:03 2019-11-08 13:11:18 t 1 1 157901 623 0.00 2019-11-08 13:11:41 2019-11-08 13:11:45 t 1 1 157907 623 0.00 2019-11-08 13:14:14 2019-11-08 13:14:16 t 1 1 157911 510 0.00 2019-11-08 13:11:59 2019-11-08 13:21:05 t 1 1 157914 585 0.00 2019-11-08 13:11:03 2019-11-08 13:22:51 t 1 1 157919 375 0.00 2019-11-08 12:10:48 2019-11-08 13:26:16 t 1 1 157921 637 0.00 2019-11-08 11:21:39 2019-11-08 13:28:35 t 1 1 157922 562 0.00 2019-11-08 13:29:35 2019-11-08 13:29:53 t 1 1 157924 422 0.00 2019-11-08 13:29:03 2019-11-08 13:30:20 t 1 1 157926 645 0.00 2019-11-08 13:29:55 2019-11-08 13:31:00 t 1 1 157927 422 0.00 2019-11-08 13:30:44 2019-11-08 13:32:13 t 1 1 157929 645 0.00 2019-11-08 13:31:27 2019-11-08 13:32:53 t 1 1 157931 514 0.00 2019-11-08 13:33:01 2019-11-08 13:34:19 t 1 1 157938 623 0.00 2019-11-08 13:38:22 2019-11-08 13:38:25 t 1 1 157942 585 0.00 2019-11-08 13:40:30 2019-11-08 13:43:19 t 1 1 157947 375 0.00 2019-11-08 13:36:52 2019-11-08 13:45:57 t 1 1 157950 623 0.00 2019-11-08 13:46:10 2019-11-08 13:48:48 t 1 1 157951 623 0.00 2019-11-08 13:48:59 2019-11-08 13:49:00 t 1 1 157955 416 0.00 2019-11-08 13:08:39 2019-11-08 13:54:22 t 1 1 157957 379 0.00 2019-11-08 13:37:06 2019-11-08 13:55:36 t 1 1 157961 623 0.00 2019-11-08 13:59:04 2019-11-08 13:59:06 t 1 1 157964 623 0.00 2019-11-08 14:00:17 2019-11-08 14:00:37 t 1 1 157966 562 0.00 2019-11-08 13:44:30 2019-11-08 14:00:47 t 1 1 157967 623 0.00 2019-11-08 14:00:49 2019-11-08 14:00:52 t 1 1 157968 379 0.00 2019-11-08 13:55:36 2019-11-08 14:02:51 t 1 1 157969 514 0.00 2019-11-08 13:45:21 2019-11-08 14:03:01 t 1 1 157970 623 0.00 2019-11-08 14:03:09 2019-11-08 14:03:14 t 1 1 157971 623 0.00 2019-11-08 14:03:32 2019-11-08 14:03:48 t 1 1 157972 623 0.00 2019-11-08 14:03:54 2019-11-08 14:03:57 t 1 1 157975 379 0.00 2019-11-08 14:05:54 2019-11-08 14:07:28 t 1 1 157977 587 0.00 2019-11-08 13:37:34 2019-11-08 14:07:51 t 1 1 157981 562 0.00 2019-11-08 14:00:47 2019-11-08 14:10:19 t 1 1 157982 623 0.00 2019-11-08 14:10:22 2019-11-08 14:10:32 t 1 1 157988 422 0.00 2019-11-08 14:03:15 2019-11-08 14:15:19 t 1 1 157993 562 0.00 2019-11-08 14:22:29 2019-11-08 14:22:38 t 1 1 157994 627 0.00 2019-11-08 14:12:49 2019-11-08 14:23:19 t 1 1 157996 422 0.00 2019-11-08 14:23:40 2019-11-08 14:23:47 t 1 1 158007 623 0.00 2019-11-08 14:29:50 2019-11-08 14:30:20 t 1 1 158010 623 0.00 2019-11-08 14:31:02 2019-11-08 14:31:49 t 1 1 158012 422 0.00 2019-11-08 14:29:09 2019-11-08 14:32:34 t 1 1 158013 623 0.00 2019-11-08 14:32:48 2019-11-08 14:33:19 t 1 1 158016 422 0.00 2019-11-08 14:40:16 2019-11-08 14:40:20 t 1 1 158019 623 0.00 2019-11-08 14:40:16 2019-11-08 14:42:03 t 1 1 158025 627 0.00 2019-11-08 14:45:13 2019-11-08 14:45:17 t 1 1 158026 422 0.00 2019-11-08 14:46:09 2019-11-08 14:46:25 t 1 1 158028 562 0.00 2019-11-08 14:31:47 2019-11-08 14:47:31 t 1 1 158030 635 0.00 2019-11-08 14:43:46 2019-11-08 14:47:57 t 1 1 158031 623 0.00 2019-11-08 14:48:11 2019-11-08 14:48:12 t 1 1 158032 562 0.00 2019-11-08 14:49:21 2019-11-08 14:50:45 t 1 1 158034 623 0.00 2019-11-08 14:52:25 2019-11-08 14:52:26 t 1 1 158035 619 0.00 2019-11-08 14:22:56 2019-11-08 14:53:16 t 1 1 158037 623 0.00 2019-11-08 14:53:30 2019-11-08 14:53:43 t 1 1 158038 623 0.00 2019-11-08 14:53:56 2019-11-08 14:54:08 t 1 1 158040 623 0.00 2019-11-08 14:54:45 2019-11-08 14:55:31 t 1 1 158044 422 0.00 2019-11-08 14:46:38 2019-11-08 14:57:26 t 1 1 158045 623 0.00 2019-11-08 14:57:59 2019-11-08 14:58:10 t 1 1 158046 623 0.00 2019-11-08 14:58:35 2019-11-08 14:58:59 t 1 1 158047 623 0.00 2019-11-08 14:59:54 2019-11-08 14:59:56 t 1 1 158048 562 0.00 2019-11-08 14:59:09 2019-11-08 15:02:07 t 1 1 158052 570 0.00 2019-11-08 15:03:28 2019-11-08 15:05:18 t 1 1 158056 623 0.00 2019-11-08 15:10:02 2019-11-08 15:10:03 t 1 1 158060 587 0.00 2019-11-08 15:08:53 2019-11-08 15:12:08 t 1 1 158061 625 0.00 2019-11-08 12:39:10 2019-11-08 15:12:31 t 1 1 158065 375 0.00 2019-11-08 14:00:40 2019-11-08 15:14:31 t 1 1 158067 623 0.00 2019-11-08 15:14:55 2019-11-08 15:15:04 t 1 1 158070 445 0.00 2019-11-08 15:02:27 2019-11-08 15:16:42 t 1 1 158072 587 0.00 2019-11-08 15:17:05 2019-11-08 15:17:23 t 1 1 158074 625 0.00 2019-11-08 15:12:31 2019-11-08 15:18:59 t 1 1 158078 619 0.00 2019-11-08 15:17:12 2019-11-08 15:22:20 t 1 1 158085 375 0.00 2019-11-08 15:14:31 2019-11-08 15:29:46 t 1 1 158086 562 0.00 2019-11-08 15:33:37 2019-11-08 15:33:59 t 1 1 158090 412 0.00 2019-11-08 13:02:26 2019-11-08 15:37:13 t 1 1 158094 570 0.00 2019-11-08 15:20:22 2019-11-08 15:41:54 t 1 1 158095 637 0.00 2019-11-08 14:14:35 2019-11-08 15:41:58 t 1 1 158097 578 0.00 2019-11-08 14:12:13 2019-11-08 15:43:26 t 1 1 158102 597 0.00 2019-11-08 15:29:31 2019-11-08 15:45:53 t 1 1 158108 562 0.00 2019-11-08 15:47:28 2019-11-08 15:48:05 t 1 1 158109 220 0.00 2019-11-08 15:47:55 2019-11-08 15:48:33 t 1 1 158110 570 0.00 2019-11-08 15:41:54 2019-11-08 15:49:48 t 1 1 158116 538 0.00 2019-11-08 15:51:13 2019-11-08 15:52:17 t 1 1 158119 375 0.00 2019-11-08 15:44:21 2019-11-08 15:54:03 t 1 1 158122 220 0.00 2019-11-08 15:52:36 2019-11-08 15:56:20 t 1 1 158123 220 0.00 2019-11-08 15:56:20 2019-11-08 15:56:56 t 1 1 158126 220 0.00 2019-11-08 15:57:26 2019-11-08 15:57:59 t 1 1 158127 578 0.00 2019-11-08 15:43:26 2019-11-08 15:59:37 t 1 1 158129 490 0.00 2019-11-08 15:46:32 2019-11-08 16:00:43 t 1 1 158132 375 0.00 2019-11-08 15:54:49 2019-11-08 16:01:16 t 1 1 158146 516 0.00 2019-11-08 15:56:23 2019-11-08 16:04:46 t 1 1 158147 375 0.00 2019-11-08 16:02:56 2019-11-08 16:05:01 t 1 1 158155 220 0.00 2019-11-08 16:07:24 2019-11-08 16:07:59 t 1 1 158159 220 0.00 2019-11-08 16:09:48 2019-11-08 16:10:22 t 1 1 158164 220 0.00 2019-11-08 16:12:04 2019-11-08 16:12:37 t 1 1 158174 220 0.00 2019-11-08 16:15:08 2019-11-08 16:16:47 t 1 1 158175 220 0.00 2019-11-08 16:16:47 2019-11-08 16:17:56 t 1 1 158178 490 0.00 2019-11-08 16:14:56 2019-11-08 16:19:53 t 1 1 158180 587 0.00 2019-11-08 16:15:54 2019-11-08 16:21:44 t 1 1 158183 566 0.00 2019-11-08 16:15:29 2019-11-08 16:22:23 t 1 1 158187 587 0.00 2019-11-08 16:21:44 2019-11-08 16:25:40 t 1 1 158196 551 0.00 2019-11-08 16:22:09 2019-11-08 16:30:39 t 1 1 158202 587 0.00 2019-11-08 16:27:33 2019-11-08 16:33:58 t 1 1 158208 220 0.00 2019-11-08 16:36:36 2019-11-08 16:36:47 t 1 1 158209 220 0.00 2019-11-08 16:36:47 2019-11-08 16:37:13 t 1 1 158212 597 0.00 2019-11-08 16:28:25 2019-11-08 16:38:18 t 1 1 158216 645 0.00 2019-11-08 16:41:28 2019-11-08 16:41:38 t 1 1 158219 220 0.00 2019-11-08 16:42:19 2019-11-08 16:42:31 t 1 1 158221 445 0.00 2019-11-08 15:21:48 2019-11-08 16:44:06 t 1 1 158228 375 0.00 2019-11-08 16:42:58 2019-11-08 16:45:28 t 1 1 158234 220 0.00 2019-11-08 16:47:15 2019-11-08 16:47:33 t 1 1 158238 645 0.00 2019-11-08 16:47:45 2019-11-08 16:48:48 t 1 1 158239 220 0.00 2019-11-08 16:47:29 2019-11-08 16:49:45 t 1 1 158242 422 0.00 2019-11-08 16:50:22 2019-11-08 16:52:04 t 1 1 158253 220 0.00 2019-11-08 16:59:08 2019-11-08 17:00:00 t 1 1 158257 578 0.00 2019-11-08 16:53:11 2019-11-08 17:01:30 t 1 1 158261 532 0.00 2019-11-08 17:00:25 2019-11-08 17:03:14 t 1 1 158266 220 0.00 2019-11-08 17:04:03 2019-11-08 17:05:00 t 1 1 158268 220 0.00 2019-11-08 17:05:00 2019-11-08 17:05:35 t 1 1 158270 637 0.00 2019-11-08 16:46:51 2019-11-08 17:07:41 t 1 1 158273 220 0.00 2019-11-08 17:08:01 2019-11-08 17:08:36 t 1 1 158274 637 0.00 2019-11-08 17:07:48 2019-11-08 17:09:15 t 1 1 158276 562 0.00 2019-11-08 17:09:07 2019-11-08 17:10:53 t 1 1 158278 532 0.00 2019-11-08 17:11:40 2019-11-08 17:11:44 t 1 1 158279 220 0.00 2019-11-08 17:08:36 2019-11-08 17:12:14 t 1 1 158281 375 0.00 2019-11-08 16:54:30 2019-11-08 17:12:50 t 1 1 158284 412 0.00 2019-11-08 17:07:50 2019-11-08 17:13:26 t 1 1 158286 609 0.00 2019-11-08 17:10:36 2019-11-08 17:13:56 t 1 1 158287 516 0.00 2019-11-08 17:11:32 2019-11-08 17:15:18 t 1 1 158288 532 0.00 2019-11-08 17:15:31 2019-11-08 17:16:03 t 1 1 158289 538 0.00 2019-11-08 17:17:38 2019-11-08 17:17:45 t 1 1 158292 532 0.00 2019-11-08 17:16:11 2019-11-08 17:19:40 t 1 1 158296 416 0.00 2019-11-08 13:54:48 2019-11-08 17:20:54 t 1 1 158297 220 0.00 2019-11-08 17:20:33 2019-11-08 17:21:08 t 1 1 158301 220 0.00 2019-11-08 17:21:40 2019-11-08 17:22:16 t 1 1 158303 220 0.00 2019-11-08 17:22:15 2019-11-08 17:23:01 t 1 1 158305 645 0.00 2019-11-08 17:17:30 2019-11-08 17:23:38 t 1 1 158308 611 0.00 2019-11-08 17:23:49 2019-11-08 17:24:03 t 1 1 158314 220 0.00 2019-11-08 17:26:16 2019-11-08 17:26:50 t 1 1 158319 597 0.00 2019-11-08 17:22:55 2019-11-08 17:28:48 t 1 1 158322 587 0.00 2019-11-08 17:27:03 2019-11-08 17:29:05 t 1 1 158324 538 0.00 2019-11-08 17:17:48 2019-11-08 17:29:59 t 1 1 158326 538 0.00 2019-11-08 17:29:59 2019-11-08 17:30:17 t 1 1 158327 220 0.00 2019-11-08 17:30:03 2019-11-08 17:30:36 t 1 1 158328 220 0.00 2019-11-08 16:49:45 2019-11-08 17:31:19 t 1 1 158330 623 0.00 2019-11-08 17:33:02 2019-11-08 17:34:05 t 1 1 158334 623 0.00 2019-11-08 17:34:40 2019-11-08 17:35:02 t 1 1 158339 609 0.00 2019-11-08 17:14:20 2019-11-08 17:36:09 t 1 1 158341 623 0.00 2019-11-08 17:35:50 2019-11-08 17:36:34 t 1 1 158343 645 0.00 2019-11-08 17:35:11 2019-11-08 17:37:09 t 1 1 158345 623 0.00 2019-11-08 17:37:44 2019-11-08 17:37:52 t 1 1 158346 623 0.00 2019-11-08 17:37:57 2019-11-08 17:38:03 t 1 1 158347 645 0.00 2019-11-08 17:37:08 2019-11-08 17:38:28 t 1 1 158349 623 0.00 2019-11-08 17:38:46 2019-11-08 17:38:53 t 1 1 158351 623 0.00 2019-11-08 17:39:20 2019-11-08 17:39:26 t 1 1 158352 220 0.00 2019-11-08 17:35:40 2019-11-08 17:39:34 t 1 1 158354 220 0.00 2019-11-08 17:39:33 2019-11-08 17:39:44 t 1 1 158360 623 0.00 2019-11-08 17:40:27 2019-11-08 17:40:34 t 1 1 158361 623 0.00 2019-11-08 17:40:39 2019-11-08 17:41:47 t 1 1 158362 623 0.00 2019-11-08 17:41:52 2019-11-08 17:42:09 t 1 1 158363 623 0.00 2019-11-08 17:42:14 2019-11-08 17:42:46 t 1 1 158367 220 0.00 2019-11-08 17:39:58 2019-11-08 17:43:23 t 1 1 158370 220 0.00 2019-11-08 17:43:22 2019-11-08 17:44:03 t 1 1 158374 587 0.00 2019-11-08 17:29:05 2019-11-08 17:44:49 t 1 1 158375 623 0.00 2019-11-08 17:44:40 2019-11-08 17:45:12 t 1 1 158376 623 0.00 2019-11-08 17:45:17 2019-11-08 17:45:19 t 1 1 158383 375 0.00 2019-11-08 17:46:20 2019-11-08 17:47:27 t 1 1 158386 623 0.00 2019-11-08 17:48:19 2019-11-08 17:48:25 t 1 1 158389 532 0.00 2019-11-08 17:44:47 2019-11-08 17:49:29 t 1 1 158391 562 0.00 2019-11-08 17:49:04 2019-11-08 17:49:38 t 1 1 158399 220 0.00 2019-11-08 17:50:29 2019-11-08 17:51:13 t 1 1 158404 623 0.00 2019-11-08 17:51:45 2019-11-08 17:52:01 t 1 1 158407 623 0.00 2019-11-08 17:52:18 2019-11-08 17:52:25 t 1 1 158411 587 0.00 2019-11-08 17:45:18 2019-11-08 17:53:31 t 1 1 158412 587 0.00 2019-11-08 17:53:45 2019-11-08 17:53:54 t 1 1 158071 587 0.00 2019-11-08 15:16:39 2019-11-08 15:16:54 t 1 1 158077 566 0.00 2019-11-08 15:17:35 2019-11-08 15:22:07 t 1 1 158081 623 0.00 2019-11-08 15:16:43 2019-11-08 15:23:55 t 1 1 158083 568 0.00 2019-11-08 15:24:41 2019-11-08 15:26:33 t 1 1 158087 568 0.00 2019-11-08 15:27:56 2019-11-08 15:34:33 t 1 1 158088 510 0.00 2019-11-08 13:21:05 2019-11-08 15:35:41 t 1 1 158092 422 0.00 2019-11-08 15:38:17 2019-11-08 15:38:30 t 1 1 158098 645 0.00 2019-11-08 15:42:41 2019-11-08 15:43:44 t 1 1 158099 422 0.00 2019-11-08 15:43:47 2019-11-08 15:44:02 t 1 1 158101 562 0.00 2019-11-08 15:43:25 2019-11-08 15:45:13 t 1 1 158115 562 0.00 2019-11-08 15:51:29 2019-11-08 15:52:02 t 1 1 158117 220 0.00 2019-11-08 15:52:02 2019-11-08 15:52:37 t 1 1 158121 637 0.00 2019-11-08 15:51:30 2019-11-08 15:54:44 t 1 1 158124 551 0.00 2019-11-08 15:46:38 2019-11-08 15:57:25 t 1 1 158125 220 0.00 2019-11-08 15:56:55 2019-11-08 15:57:26 t 1 1 158128 637 0.00 2019-11-08 15:58:47 2019-11-08 16:00:09 t 1 1 158130 220 0.00 2019-11-08 15:59:45 2019-11-08 16:00:53 t 1 1 158131 545 0.00 2019-11-08 15:44:12 2019-11-08 16:01:00 t 1 1 158137 220 0.00 2019-11-08 16:02:14 2019-11-08 16:02:46 t 1 1 158138 637 0.00 2019-11-08 16:01:38 2019-11-08 16:03:03 t 1 1 158140 562 0.00 2019-11-08 15:55:06 2019-11-08 16:03:12 t 1 1 158143 619 0.00 2019-11-08 16:02:09 2019-11-08 16:03:56 t 1 1 158144 220 0.00 2019-11-08 16:03:21 2019-11-08 16:04:03 t 1 1 158149 220 0.00 2019-11-08 16:04:36 2019-11-08 16:05:33 t 1 1 158150 220 0.00 2019-11-08 16:05:33 2019-11-08 16:06:08 t 1 1 158152 220 0.00 2019-11-08 16:06:08 2019-11-08 16:06:46 t 1 1 158153 220 0.00 2019-11-08 16:06:46 2019-11-08 16:07:25 t 1 1 158160 623 0.00 2019-11-08 15:46:44 2019-11-08 16:10:38 t 1 1 158162 220 0.00 2019-11-08 16:10:58 2019-11-08 16:11:28 t 1 1 158163 220 0.00 2019-11-08 16:11:28 2019-11-08 16:12:05 t 1 1 158165 545 0.00 2019-11-08 16:04:35 2019-11-08 16:12:39 t 1 1 158166 587 0.00 2019-11-08 16:03:13 2019-11-08 16:12:57 t 1 1 158168 623 0.00 2019-11-08 16:10:38 2019-11-08 16:14:23 t 1 1 158169 220 0.00 2019-11-08 16:12:37 2019-11-08 16:14:34 t 1 1 158171 220 0.00 2019-11-08 16:14:34 2019-11-08 16:15:08 t 1 1 158173 645 0.00 2019-11-08 16:03:31 2019-11-08 16:15:31 t 1 1 158177 645 0.00 2019-11-08 16:16:14 2019-11-08 16:18:48 t 1 1 158190 220 0.00 2019-11-08 16:27:31 2019-11-08 16:28:06 t 1 1 158192 220 0.00 2019-11-08 16:29:03 2019-11-08 16:29:53 t 1 1 158193 637 0.00 2019-11-08 16:03:09 2019-11-08 16:30:15 t 1 1 158197 220 0.00 2019-11-08 16:30:36 2019-11-08 16:31:16 t 1 1 158199 375 0.00 2019-11-08 16:09:13 2019-11-08 16:32:14 t 1 1 158201 220 0.00 2019-11-08 16:33:06 2019-11-08 16:33:45 t 1 1 158203 637 0.00 2019-11-08 16:32:42 2019-11-08 16:33:58 t 1 1 158205 220 0.00 2019-11-08 16:33:45 2019-11-08 16:35:10 t 1 1 158206 220 0.00 2019-11-08 16:35:09 2019-11-08 16:35:49 t 1 1 158207 220 0.00 2019-11-08 16:02:21 2019-11-08 16:36:37 t 1 1 158214 587 0.00 2019-11-08 16:35:27 2019-11-08 16:39:14 t 1 1 158215 637 0.00 2019-11-08 16:34:49 2019-11-08 16:41:00 t 1 1 158218 220 0.00 2019-11-08 16:38:26 2019-11-08 16:42:20 t 1 1 158220 562 0.00 2019-11-08 16:18:25 2019-11-08 16:42:48 t 1 1 158222 516 0.00 2019-11-08 16:40:36 2019-11-08 16:44:18 t 1 1 158225 220 0.00 2019-11-08 16:35:49 2019-11-08 16:44:49 t 1 1 158229 554 0.00 2019-11-08 16:31:36 2019-11-08 16:46:17 t 1 1 158231 637 0.00 2019-11-08 16:44:38 2019-11-08 16:46:52 t 1 1 158232 220 0.00 2019-11-08 16:46:46 2019-11-08 16:47:16 t 1 1 158233 556 0.00 2019-11-08 14:11:05 2019-11-08 16:47:28 t 1 1 158235 645 0.00 2019-11-08 16:47:23 2019-11-08 16:47:36 t 1 1 158236 422 0.00 2019-11-08 16:45:34 2019-11-08 16:48:26 t 1 1 158240 623 0.00 2019-11-08 16:14:23 2019-11-08 16:50:24 t 1 1 158244 578 0.00 2019-11-08 16:44:18 2019-11-08 16:53:11 t 1 1 158245 220 0.00 2019-11-08 16:45:21 2019-11-08 16:53:15 t 1 1 158246 220 0.00 2019-11-08 16:53:15 2019-11-08 16:54:26 t 1 1 158249 514 0.00 2019-11-08 15:48:49 2019-11-08 16:58:05 t 1 1 158251 220 0.00 2019-11-08 16:57:52 2019-11-08 16:58:33 t 1 1 158254 532 0.00 2019-11-08 16:47:24 2019-11-08 17:00:25 t 1 1 158263 532 0.00 2019-11-08 17:03:40 2019-11-08 17:03:42 t 1 1 158264 220 0.00 2019-11-08 17:03:31 2019-11-08 17:04:04 t 1 1 158267 562 0.00 2019-11-08 16:54:34 2019-11-08 17:05:29 t 1 1 158271 532 0.00 2019-11-08 17:07:50 2019-11-08 17:07:53 t 1 1 158272 220 0.00 2019-11-08 17:05:35 2019-11-08 17:08:01 t 1 1 158275 587 0.00 2019-11-08 16:45:15 2019-11-08 17:09:55 t 1 1 158277 516 0.00 2019-11-08 17:07:14 2019-11-08 17:11:32 t 1 1 158280 445 0.00 2019-11-08 16:59:06 2019-11-08 17:12:19 t 1 1 158285 591 0.00 2019-11-08 13:29:18 2019-11-08 17:13:43 t 1 1 158293 562 0.00 2019-11-08 17:17:56 2019-11-08 17:20:03 t 1 1 158299 220 0.00 2019-11-08 17:21:08 2019-11-08 17:21:40 t 1 1 158302 587 0.00 2019-11-08 17:19:27 2019-11-08 17:22:46 t 1 1 158307 445 0.00 2019-11-08 17:12:19 2019-11-08 17:23:58 t 1 1 158310 220 0.00 2019-11-08 17:24:08 2019-11-08 17:24:42 t 1 1 158312 220 0.00 2019-11-08 17:25:12 2019-11-08 17:25:46 t 1 1 158313 220 0.00 2019-11-08 17:25:45 2019-11-08 17:26:16 t 1 1 158317 220 0.00 2019-11-08 17:27:20 2019-11-08 17:27:52 t 1 1 158318 220 0.00 2019-11-08 17:27:52 2019-11-08 17:28:22 t 1 1 158321 562 0.00 2019-11-08 17:28:42 2019-11-08 17:29:04 t 1 1 158332 591 0.00 2019-11-08 17:20:10 2019-11-08 17:34:23 t 1 1 158335 220 0.00 2019-11-08 17:31:19 2019-11-08 17:35:29 t 1 1 158337 220 0.00 2019-11-08 17:35:29 2019-11-08 17:35:40 t 1 1 158340 551 0.00 2019-11-08 16:30:39 2019-11-08 17:36:10 t 1 1 158344 623 0.00 2019-11-08 17:36:52 2019-11-08 17:37:39 t 1 1 158348 623 0.00 2019-11-08 17:38:08 2019-11-08 17:38:41 t 1 1 158350 623 0.00 2019-11-08 17:38:58 2019-11-08 17:39:15 t 1 1 158353 645 0.00 2019-11-08 17:38:28 2019-11-08 17:39:42 t 1 1 158355 562 0.00 2019-11-08 17:39:11 2019-11-08 17:39:46 t 1 1 158357 220 0.00 2019-11-08 17:39:44 2019-11-08 17:39:58 t 1 1 158359 623 0.00 2019-11-08 17:40:07 2019-11-08 17:40:22 t 1 1 158366 623 0.00 2019-11-08 17:43:13 2019-11-08 17:43:19 t 1 1 158369 623 0.00 2019-11-08 17:43:24 2019-11-08 17:43:58 t 1 1 158372 623 0.00 2019-11-08 17:44:03 2019-11-08 17:44:35 t 1 1 158373 220 0.00 2019-11-08 17:44:02 2019-11-08 17:44:40 t 1 1 158380 623 0.00 2019-11-08 17:45:48 2019-11-08 17:45:55 t 1 1 158382 375 0.00 2019-11-08 17:14:53 2019-11-08 17:46:20 t 1 1 158384 623 0.00 2019-11-08 17:46:00 2019-11-08 17:47:38 t 1 1 158385 623 0.00 2019-11-08 17:47:43 2019-11-08 17:48:14 t 1 1 158390 623 0.00 2019-11-08 17:48:56 2019-11-08 17:49:35 t 1 1 158393 623 0.00 2019-11-08 17:49:50 2019-11-08 17:49:57 t 1 1 158395 623 0.00 2019-11-08 17:50:14 2019-11-08 17:50:22 t 1 1 158084 625 0.00 2019-11-08 15:18:59 2019-11-08 15:29:30 t 1 1 158089 422 0.00 2019-11-08 15:34:25 2019-11-08 15:36:17 t 1 1 158091 645 0.00 2019-11-08 15:09:00 2019-11-08 15:37:23 t 1 1 158093 375 0.00 2019-11-08 15:29:51 2019-11-08 15:40:45 t 1 1 158096 619 0.00 2019-11-08 15:38:01 2019-11-08 15:43:09 t 1 1 158100 375 0.00 2019-11-08 15:40:45 2019-11-08 15:44:16 t 1 1 158103 220 0.00 2019-11-08 14:33:32 2019-11-08 15:46:13 t 1 1 158104 623 0.00 2019-11-08 15:23:55 2019-11-08 15:46:44 t 1 1 158105 220 0.00 2019-11-08 15:46:13 2019-11-08 15:46:47 t 1 1 158106 220 0.00 2019-11-08 15:46:47 2019-11-08 15:47:22 t 1 1 158107 220 0.00 2019-11-08 15:47:22 2019-11-08 15:47:55 t 1 1 158111 645 0.00 2019-11-08 15:46:02 2019-11-08 15:50:56 t 1 1 158112 637 0.00 2019-11-08 15:41:58 2019-11-08 15:51:19 t 1 1 158113 538 0.00 2019-11-08 14:13:46 2019-11-08 15:51:46 t 1 1 158114 220 0.00 2019-11-08 15:48:32 2019-11-08 15:52:02 t 1 1 158118 570 0.00 2019-11-08 15:49:48 2019-11-08 15:53:33 t 1 1 158120 585 0.00 2019-11-08 15:48:21 2019-11-08 15:54:07 t 1 1 158133 220 0.00 2019-11-08 15:57:59 2019-11-08 16:01:42 t 1 1 158134 545 0.00 2019-11-08 16:01:00 2019-11-08 16:02:08 t 1 1 158135 220 0.00 2019-11-08 16:01:42 2019-11-08 16:02:14 t 1 1 158136 375 0.00 2019-11-08 16:01:24 2019-11-08 16:02:30 t 1 1 158139 645 0.00 2019-11-08 16:02:23 2019-11-08 16:03:07 t 1 1 158141 587 0.00 2019-11-08 15:17:42 2019-11-08 16:03:13 t 1 1 158142 220 0.00 2019-11-08 16:02:46 2019-11-08 16:03:21 t 1 1 158145 220 0.00 2019-11-08 16:04:02 2019-11-08 16:04:36 t 1 1 158148 490 0.00 2019-11-08 16:00:43 2019-11-08 16:05:10 t 1 1 158151 456 0.00 2019-11-08 13:47:43 2019-11-08 16:06:23 t 1 1 158154 566 0.00 2019-11-08 16:01:57 2019-11-08 16:07:34 t 1 1 158156 220 0.00 2019-11-08 16:07:59 2019-11-08 16:08:38 t 1 1 158157 220 0.00 2019-11-08 16:08:37 2019-11-08 16:09:12 t 1 1 158158 220 0.00 2019-11-08 16:09:12 2019-11-08 16:09:48 t 1 1 158161 220 0.00 2019-11-08 16:10:22 2019-11-08 16:10:59 t 1 1 158167 545 0.00 2019-11-08 16:12:43 2019-11-08 16:13:54 t 1 1 158170 490 0.00 2019-11-08 16:05:10 2019-11-08 16:14:56 t 1 1 158172 566 0.00 2019-11-08 16:07:34 2019-11-08 16:15:29 t 1 1 158176 562 0.00 2019-11-08 16:04:32 2019-11-08 16:18:12 t 1 1 158179 220 0.00 2019-11-08 16:17:56 2019-11-08 16:20:15 t 1 1 158181 551 0.00 2019-11-08 15:57:25 2019-11-08 16:22:09 t 1 1 158182 220 0.00 2019-11-08 16:20:15 2019-11-08 16:22:17 t 1 1 158184 220 0.00 2019-11-08 16:22:17 2019-11-08 16:23:48 t 1 1 158185 220 0.00 2019-11-08 16:23:48 2019-11-08 16:24:50 t 1 1 158186 645 0.00 2019-11-08 16:22:34 2019-11-08 16:25:22 t 1 1 158188 220 0.00 2019-11-08 16:24:50 2019-11-08 16:27:32 t 1 1 158189 645 0.00 2019-11-08 16:26:30 2019-11-08 16:28:04 t 1 1 158191 220 0.00 2019-11-08 16:28:06 2019-11-08 16:29:03 t 1 1 158194 490 0.00 2019-11-08 16:19:53 2019-11-08 16:30:34 t 1 1 158195 220 0.00 2019-11-08 16:29:52 2019-11-08 16:30:36 t 1 1 158198 578 0.00 2019-11-08 15:59:37 2019-11-08 16:31:17 t 1 1 158200 220 0.00 2019-11-08 16:31:15 2019-11-08 16:33:08 t 1 1 158204 490 0.00 2019-11-08 16:30:34 2019-11-08 16:34:26 t 1 1 158210 220 0.00 2019-11-08 16:37:13 2019-11-08 16:37:24 t 1 1 158211 220 0.00 2019-11-08 16:37:23 2019-11-08 16:38:15 t 1 1 158213 220 0.00 2019-11-08 16:38:15 2019-11-08 16:38:27 t 1 1 158217 375 0.00 2019-11-08 16:32:13 2019-11-08 16:42:10 t 1 1 158223 578 0.00 2019-11-08 16:31:17 2019-11-08 16:44:18 t 1 1 158224 220 0.00 2019-11-08 16:42:30 2019-11-08 16:44:40 t 1 1 158226 587 0.00 2019-11-08 16:39:17 2019-11-08 16:45:11 t 1 1 158227 220 0.00 2019-11-08 16:44:49 2019-11-08 16:45:21 t 1 1 158230 220 0.00 2019-11-08 16:46:31 2019-11-08 16:46:46 t 1 1 158237 375 0.00 2019-11-08 16:46:14 2019-11-08 16:48:32 t 1 1 158241 538 0.00 2019-11-08 15:57:37 2019-11-08 16:51:59 t 1 1 158243 445 0.00 2019-11-08 16:44:51 2019-11-08 16:53:03 t 1 1 158247 220 0.00 2019-11-08 16:54:26 2019-11-08 16:56:47 t 1 1 158248 220 0.00 2019-11-08 16:56:47 2019-11-08 16:57:52 t 1 1 158250 445 0.00 2019-11-08 16:53:07 2019-11-08 16:58:21 t 1 1 158252 220 0.00 2019-11-08 16:58:32 2019-11-08 16:59:08 t 1 1 158255 220 0.00 2019-11-08 16:59:59 2019-11-08 17:00:44 t 1 1 158256 220 0.00 2019-11-08 17:00:44 2019-11-08 17:01:29 t 1 1 158258 514 0.00 2019-11-08 17:00:42 2019-11-08 17:01:45 t 1 1 158259 220 0.00 2019-11-08 17:01:28 2019-11-08 17:02:09 t 1 1 158260 532 0.00 2019-11-08 17:02:18 2019-11-08 17:03:12 t 1 1 158262 220 0.00 2019-11-08 17:02:09 2019-11-08 17:03:31 t 1 1 158265 512 0.00 2019-11-08 16:43:27 2019-11-08 17:04:48 t 1 1 158269 623 0.00 2019-11-08 16:50:24 2019-11-08 17:06:28 t 1 1 158282 220 0.00 2019-11-08 17:12:14 2019-11-08 17:12:53 t 1 1 158283 532 0.00 2019-11-08 17:12:54 2019-11-08 17:12:57 t 1 1 158290 587 0.00 2019-11-08 17:09:55 2019-11-08 17:19:27 t 1 1 158291 220 0.00 2019-11-08 17:12:52 2019-11-08 17:19:30 t 1 1 158294 591 0.00 2019-11-08 17:13:44 2019-11-08 17:20:10 t 1 1 158295 220 0.00 2019-11-08 17:19:30 2019-11-08 17:20:33 t 1 1 158298 619 0.00 2019-11-08 17:17:14 2019-11-08 17:21:39 t 1 1 158300 623 0.00 2019-11-08 17:06:28 2019-11-08 17:21:41 t 1 1 158304 220 0.00 2019-11-08 17:23:01 2019-11-08 17:23:36 t 1 1 158306 532 0.00 2019-11-08 17:19:40 2019-11-08 17:23:52 t 1 1 158309 220 0.00 2019-11-08 17:23:36 2019-11-08 17:24:09 t 1 1 158311 220 0.00 2019-11-08 17:24:41 2019-11-08 17:25:12 t 1 1 158315 587 0.00 2019-11-08 17:22:46 2019-11-08 17:27:03 t 1 1 158316 220 0.00 2019-11-08 17:26:50 2019-11-08 17:27:20 t 1 1 158320 220 0.00 2019-11-08 17:28:22 2019-11-08 17:28:53 t 1 1 158323 220 0.00 2019-11-08 17:28:53 2019-11-08 17:29:28 t 1 1 158325 220 0.00 2019-11-08 17:29:28 2019-11-08 17:30:03 t 1 1 158329 623 0.00 2019-11-08 17:21:41 2019-11-08 17:32:57 t 1 1 158331 623 0.00 2019-11-08 17:34:10 2019-11-08 17:34:16 t 1 1 158333 623 0.00 2019-11-08 17:34:21 2019-11-08 17:34:35 t 1 1 158336 538 0.00 2019-11-08 17:30:20 2019-11-08 17:35:30 t 1 1 158338 623 0.00 2019-11-08 17:35:07 2019-11-08 17:35:45 t 1 1 158342 623 0.00 2019-11-08 17:36:39 2019-11-08 17:36:47 t 1 1 158356 623 0.00 2019-11-08 17:39:31 2019-11-08 17:39:49 t 1 1 158358 623 0.00 2019-11-08 17:39:54 2019-11-08 17:40:02 t 1 1 158364 623 0.00 2019-11-08 17:42:52 2019-11-08 17:42:57 t 1 1 158365 623 0.00 2019-11-08 17:43:02 2019-11-08 17:43:08 t 1 1 158368 645 0.00 2019-11-08 17:42:38 2019-11-08 17:43:38 t 1 1 158371 220 0.00 2019-11-08 17:30:36 2019-11-08 17:44:22 t 1 1 158377 623 0.00 2019-11-08 17:45:24 2019-11-08 17:45:28 t 1 1 158378 623 0.00 2019-11-08 17:45:33 2019-11-08 17:45:36 t 1 1 158379 623 0.00 2019-11-08 17:45:41 2019-11-08 17:45:43 t 1 1 158381 220 0.00 2019-11-08 17:44:39 2019-11-08 17:46:19 t 1 1 158387 623 0.00 2019-11-08 17:48:38 2019-11-08 17:48:44 t 1 1 158388 609 0.00 2019-11-08 17:36:08 2019-11-08 17:49:00 t 1 1 158392 623 0.00 2019-11-08 17:49:40 2019-11-08 17:49:45 t 1 1 158394 623 0.00 2019-11-08 17:50:02 2019-11-08 17:50:09 t 1 1 158397 623 0.00 2019-11-08 17:50:27 2019-11-08 17:50:33 t 1 1 158401 609 0.00 2019-11-08 17:49:15 2019-11-08 17:51:33 t 1 1 158405 623 0.00 2019-11-08 17:52:07 2019-11-08 17:52:13 t 1 1 158406 532 0.00 2019-11-08 17:49:36 2019-11-08 17:52:23 t 1 1 158408 220 0.00 2019-11-08 17:45:28 2019-11-08 17:52:37 t 1 1 158416 587 0.00 2019-11-08 17:54:12 2019-11-08 17:54:52 t 1 1 158418 623 0.00 2019-11-08 17:55:00 2019-11-08 17:55:32 t 1 1 158419 532 0.00 2019-11-08 17:52:37 2019-11-08 17:55:41 t 1 1 158421 623 0.00 2019-11-08 17:55:38 2019-11-08 17:55:44 t 1 1 158422 587 0.00 2019-11-08 17:55:35 2019-11-08 17:56:02 t 1 1 158425 587 0.00 2019-11-08 17:56:05 2019-11-08 17:57:05 t 1 1 158428 623 0.00 2019-11-08 17:57:41 2019-11-08 17:57:46 t 1 1 158429 623 0.00 2019-11-08 17:57:51 2019-11-08 17:57:57 t 1 1 158430 623 0.00 2019-11-08 17:58:02 2019-11-08 17:58:19 t 1 1 158432 220 0.00 2019-11-08 17:55:43 2019-11-08 17:58:59 t 1 1 158434 623 0.00 2019-11-08 17:58:47 2019-11-08 17:59:19 t 1 1 158436 623 0.00 2019-11-08 17:59:24 2019-11-08 17:59:31 t 1 1 158443 220 0.00 2019-11-08 17:59:09 2019-11-08 18:00:40 t 1 1 158451 623 0.00 2019-11-08 18:02:16 2019-11-08 18:02:22 t 1 1 158456 587 0.00 2019-11-08 17:57:16 2019-11-08 18:03:56 t 1 1 158457 623 0.00 2019-11-08 18:03:48 2019-11-08 18:04:06 t 1 1 158459 488 0.00 2019-11-08 17:45:37 2019-11-08 18:04:22 t 1 1 158461 623 0.00 2019-11-08 18:05:01 2019-11-08 18:05:08 t 1 1 158462 623 0.00 2019-11-08 18:05:13 2019-11-08 18:05:19 t 1 1 158465 623 0.00 2019-11-08 18:05:34 2019-11-08 18:05:52 t 1 1 158466 623 0.00 2019-11-08 18:05:57 2019-11-08 18:06:13 t 1 1 158469 623 0.00 2019-11-08 18:06:43 2019-11-08 18:06:50 t 1 1 158477 623 0.00 2019-11-08 18:08:23 2019-11-08 18:08:29 t 1 1 158480 623 0.00 2019-11-08 18:08:45 2019-11-08 18:08:52 t 1 1 158481 623 0.00 2019-11-08 18:08:57 2019-11-08 18:09:04 t 1 1 158484 623 0.00 2019-11-08 18:09:33 2019-11-08 18:09:51 t 1 1 158486 623 0.00 2019-11-08 18:10:08 2019-11-08 18:10:10 t 1 1 158489 623 0.00 2019-11-08 18:10:39 2019-11-08 18:10:46 t 1 1 158490 623 0.00 2019-11-08 18:10:51 2019-11-08 18:10:58 t 1 1 158491 562 0.00 2019-11-08 18:10:59 2019-11-08 18:11:07 t 1 1 158493 623 0.00 2019-11-08 18:11:14 2019-11-08 18:11:31 t 1 1 158497 623 0.00 2019-11-08 18:12:22 2019-11-08 18:12:29 t 1 1 158501 623 0.00 2019-11-08 18:12:59 2019-11-08 18:13:16 t 1 1 158505 623 0.00 2019-11-08 18:14:19 2019-11-08 18:14:26 t 1 1 158506 623 0.00 2019-11-08 18:14:31 2019-11-08 18:14:39 t 1 1 158508 623 0.00 2019-11-08 18:14:56 2019-11-08 18:15:03 t 1 1 158511 220 0.00 2019-11-08 18:15:06 2019-11-08 18:15:18 t 1 1 158514 623 0.00 2019-11-08 18:15:20 2019-11-08 18:16:13 t 1 1 158519 623 0.00 2019-11-08 18:16:42 2019-11-08 18:16:47 t 1 1 158520 220 0.00 2019-11-08 18:16:17 2019-11-08 18:17:08 t 1 1 158522 623 0.00 2019-11-08 18:17:33 2019-11-08 18:17:35 t 1 1 158526 623 0.00 2019-11-08 18:18:29 2019-11-08 18:18:35 t 1 1 158530 623 0.00 2019-11-08 18:19:03 2019-11-08 18:19:05 t 1 1 158531 623 0.00 2019-11-08 18:19:10 2019-11-08 18:19:17 t 1 1 158536 623 0.00 2019-11-08 18:20:17 2019-11-08 18:20:23 t 1 1 158537 623 0.00 2019-11-08 18:20:28 2019-11-08 18:21:01 t 1 1 158540 623 0.00 2019-11-08 18:21:28 2019-11-08 18:21:51 t 1 1 158541 587 0.00 2019-11-08 18:03:59 2019-11-08 18:22:08 t 1 1 158548 587 0.00 2019-11-08 18:22:08 2019-11-08 18:28:43 t 1 1 158558 623 0.00 2019-11-08 18:36:44 2019-11-08 18:36:56 t 1 1 158562 623 0.00 2019-11-08 18:38:15 2019-11-08 18:38:17 t 1 1 158567 625 0.00 2019-11-08 18:22:38 2019-11-08 18:39:26 t 1 1 158568 623 0.00 2019-11-08 18:39:44 2019-11-08 18:40:11 t 1 1 158570 623 0.00 2019-11-08 18:40:29 2019-11-08 18:40:31 t 1 1 158573 562 0.00 2019-11-08 18:41:40 2019-11-08 18:42:04 t 1 1 158575 625 0.00 2019-11-08 18:39:26 2019-11-08 18:42:36 t 1 1 158582 488 0.00 2019-11-08 18:04:22 2019-11-08 18:45:04 t 1 1 158585 623 0.00 2019-11-08 18:45:26 2019-11-08 18:45:38 t 1 1 158589 566 0.00 2019-11-08 16:22:23 2019-11-08 18:46:19 t 1 1 158597 566 0.00 2019-11-08 18:46:19 2019-11-08 18:48:33 t 1 1 158600 488 0.00 2019-11-08 18:45:04 2019-11-08 18:51:02 t 1 1 158603 623 0.00 2019-11-08 18:48:24 2019-11-08 18:56:20 t 1 1 158606 623 0.00 2019-11-08 18:57:21 2019-11-08 18:57:43 t 1 1 158607 623 0.00 2019-11-08 18:57:56 2019-11-08 18:57:57 t 1 1 158608 623 0.00 2019-11-08 18:58:02 2019-11-08 18:58:04 t 1 1 158611 623 0.00 2019-11-08 18:58:35 2019-11-08 18:58:41 t 1 1 158612 623 0.00 2019-11-08 18:59:01 2019-11-08 18:59:08 t 1 1 158615 623 0.00 2019-11-08 18:59:55 2019-11-08 19:00:01 t 1 1 158618 422 0.00 2019-11-08 18:57:58 2019-11-08 19:00:45 t 1 1 158621 623 0.00 2019-11-08 19:00:57 2019-11-08 19:01:03 t 1 1 158627 623 0.00 2019-11-08 19:02:19 2019-11-08 19:02:19 f 1 1 158629 623 0.00 2019-11-08 19:01:53 2019-11-08 19:02:53 t 1 1 158630 623 0.00 2019-11-08 19:01:46 2019-11-08 19:03:04 t 1 1 158632 375 0.00 2019-11-08 19:01:52 2019-11-08 19:03:57 t 1 1 158639 538 0.00 2019-11-08 19:12:15 2019-11-08 19:15:21 t 1 1 158641 445 0.00 2019-11-08 17:23:58 2019-11-08 19:22:05 t 1 1 158644 220 0.00 2019-11-08 18:54:15 2019-11-08 19:25:31 t 1 1 158646 637 0.00 2019-11-08 18:25:20 2019-11-08 19:26:11 t 1 1 158653 485 0.00 2019-11-08 19:33:42 2019-11-08 19:34:32 t 1 1 158657 375 0.00 2019-11-08 19:30:00 2019-11-08 19:38:30 t 1 1 158663 488 0.00 2019-11-08 19:28:41 2019-11-08 19:46:45 t 1 1 158669 488 0.00 2019-11-08 19:46:45 2019-11-08 19:50:20 t 1 1 158673 532 0.00 2019-11-08 19:52:48 2019-11-08 19:52:51 t 1 1 158674 587 0.00 2019-11-08 19:52:01 2019-11-08 19:53:56 t 1 1 158677 422 0.00 2019-11-08 19:44:27 2019-11-08 19:54:35 t 1 1 158679 512 0.00 2019-11-08 19:35:09 2019-11-08 19:57:19 t 1 1 158684 591 0.00 2019-11-08 19:27:01 2019-11-08 20:04:38 t 1 1 158685 512 0.00 2019-11-08 19:57:19 2019-11-08 20:05:09 t 1 1 158689 220 0.00 2019-11-08 20:07:12 2019-11-08 20:07:50 t 1 1 158692 551 0.00 2019-11-08 19:50:06 2019-11-08 20:08:57 t 1 1 158694 485 0.00 2019-11-08 20:07:47 2019-11-08 20:09:02 t 1 1 158696 220 0.00 2019-11-08 20:09:01 2019-11-08 20:09:34 t 1 1 158698 545 0.00 2019-11-08 19:54:38 2019-11-08 20:11:03 t 1 1 158699 220 0.00 2019-11-08 20:10:14 2019-11-08 20:11:16 t 1 1 158701 220 0.00 2019-11-08 20:11:51 2019-11-08 20:12:24 t 1 1 158703 220 0.00 2019-11-08 20:12:24 2019-11-08 20:12:55 t 1 1 158704 562 0.00 2019-11-08 20:12:58 2019-11-08 20:13:07 t 1 1 158706 220 0.00 2019-11-08 20:12:55 2019-11-08 20:14:41 t 1 1 158396 220 0.00 2019-11-08 17:46:18 2019-11-08 17:50:30 t 1 1 158398 623 0.00 2019-11-08 17:50:38 2019-11-08 17:50:44 t 1 1 158400 623 0.00 2019-11-08 17:50:49 2019-11-08 17:51:29 t 1 1 158402 623 0.00 2019-11-08 17:51:34 2019-11-08 17:51:40 t 1 1 158403 220 0.00 2019-11-08 17:51:12 2019-11-08 17:51:49 t 1 1 158409 623 0.00 2019-11-08 17:52:30 2019-11-08 17:52:48 t 1 1 158410 623 0.00 2019-11-08 17:52:53 2019-11-08 17:53:00 t 1 1 158414 623 0.00 2019-11-08 17:53:05 2019-11-08 17:54:06 t 1 1 158415 623 0.00 2019-11-08 17:54:15 2019-11-08 17:54:48 t 1 1 158417 623 0.00 2019-11-08 17:54:53 2019-11-08 17:54:55 t 1 1 158420 220 0.00 2019-11-08 17:51:48 2019-11-08 17:55:43 t 1 1 158423 485 0.00 2019-11-08 17:51:12 2019-11-08 17:56:32 t 1 1 158431 623 0.00 2019-11-08 17:58:24 2019-11-08 17:58:42 t 1 1 158433 220 0.00 2019-11-08 17:58:58 2019-11-08 17:59:09 t 1 1 158437 623 0.00 2019-11-08 17:59:36 2019-11-08 17:59:38 t 1 1 158439 619 0.00 2019-11-08 17:57:46 2019-11-08 18:00:19 t 1 1 158441 623 0.00 2019-11-08 18:00:21 2019-11-08 18:00:27 t 1 1 158442 623 0.00 2019-11-08 18:00:33 2019-11-08 18:00:39 t 1 1 158444 623 0.00 2019-11-08 18:00:44 2019-11-08 18:00:51 t 1 1 158445 623 0.00 2019-11-08 18:00:56 2019-11-08 18:01:03 t 1 1 158447 637 0.00 2019-11-08 17:11:14 2019-11-08 18:01:32 t 1 1 158449 623 0.00 2019-11-08 18:01:54 2019-11-08 18:02:11 t 1 1 158452 623 0.00 2019-11-08 18:02:27 2019-11-08 18:02:33 t 1 1 158454 623 0.00 2019-11-08 18:02:50 2019-11-08 18:03:28 t 1 1 158458 562 0.00 2019-11-08 18:03:08 2019-11-08 18:04:19 t 1 1 158460 623 0.00 2019-11-08 18:04:18 2019-11-08 18:04:56 t 1 1 158463 623 0.00 2019-11-08 18:05:24 2019-11-08 18:05:29 t 1 1 158464 220 0.00 2019-11-08 18:03:41 2019-11-08 18:05:34 t 1 1 158467 623 0.00 2019-11-08 18:06:18 2019-11-08 18:06:25 t 1 1 158470 609 0.00 2019-11-08 17:56:33 2019-11-08 18:06:56 t 1 1 158473 625 0.00 2019-11-08 18:02:18 2019-11-08 18:07:15 t 1 1 158474 623 0.00 2019-11-08 18:07:28 2019-11-08 18:07:29 t 1 1 158478 623 0.00 2019-11-08 18:08:34 2019-11-08 18:08:40 t 1 1 158482 623 0.00 2019-11-08 18:09:09 2019-11-08 18:09:15 t 1 1 158487 623 0.00 2019-11-08 18:10:15 2019-11-08 18:10:23 t 1 1 158494 623 0.00 2019-11-08 18:11:36 2019-11-08 18:11:43 t 1 1 158498 623 0.00 2019-11-08 18:12:34 2019-11-08 18:12:41 t 1 1 158500 220 0.00 2019-11-08 18:05:33 2019-11-08 18:12:59 t 1 1 158502 623 0.00 2019-11-08 18:13:21 2019-11-08 18:13:27 t 1 1 158503 623 0.00 2019-11-08 18:13:33 2019-11-08 18:14:14 t 1 1 158507 623 0.00 2019-11-08 18:14:44 2019-11-08 18:14:51 t 1 1 158509 220 0.00 2019-11-08 18:12:59 2019-11-08 18:15:07 t 1 1 158512 645 0.00 2019-11-08 18:14:35 2019-11-08 18:15:51 t 1 1 158513 220 0.00 2019-11-08 18:15:18 2019-11-08 18:16:07 t 1 1 158515 220 0.00 2019-11-08 18:16:06 2019-11-08 18:16:18 t 1 1 158517 623 0.00 2019-11-08 18:16:18 2019-11-08 18:16:25 t 1 1 158524 623 0.00 2019-11-08 18:17:40 2019-11-08 18:18:13 t 1 1 158527 451 0.00 2019-11-08 18:05:12 2019-11-08 18:18:46 t 1 1 158532 623 0.00 2019-11-08 18:19:23 2019-11-08 18:19:29 t 1 1 158533 562 0.00 2019-11-08 18:19:09 2019-11-08 18:19:41 t 1 1 158538 623 0.00 2019-11-08 18:21:06 2019-11-08 18:21:12 t 1 1 158542 625 0.00 2019-11-08 18:07:15 2019-11-08 18:22:38 t 1 1 158543 422 0.00 2019-11-08 18:19:48 2019-11-08 18:23:04 t 1 1 158545 562 0.00 2019-11-08 18:19:50 2019-11-08 18:27:20 t 1 1 158549 451 0.00 2019-11-08 18:18:46 2019-11-08 18:29:15 t 1 1 158553 516 0.00 2019-11-08 18:25:12 2019-11-08 18:34:37 t 1 1 158554 591 0.00 2019-11-08 18:19:30 2019-11-08 18:34:57 t 1 1 158556 623 0.00 2019-11-08 18:36:09 2019-11-08 18:36:12 t 1 1 158559 623 0.00 2019-11-08 18:36:03 2019-11-08 18:37:04 t 1 1 158563 623 0.00 2019-11-08 18:38:22 2019-11-08 18:38:23 t 1 1 158566 623 0.00 2019-11-08 18:38:50 2019-11-08 18:39:26 t 1 1 158571 623 0.00 2019-11-08 18:40:36 2019-11-08 18:40:43 t 1 1 158580 623 0.00 2019-11-08 18:43:33 2019-11-08 18:43:35 t 1 1 158581 623 0.00 2019-11-08 18:43:40 2019-11-08 18:44:42 t 1 1 158583 623 0.00 2019-11-08 18:44:55 2019-11-08 18:45:12 t 1 1 158586 623 0.00 2019-11-08 18:45:38 2019-11-08 18:45:44 t 1 1 158587 623 0.00 2019-11-08 18:46:02 2019-11-08 18:46:04 t 1 1 158590 623 0.00 2019-11-08 18:46:34 2019-11-08 18:46:40 t 1 1 158591 623 0.00 2019-11-08 18:46:56 2019-11-08 18:46:58 t 1 1 158593 631 0.00 2019-11-08 18:43:30 2019-11-08 18:47:17 t 1 1 158595 623 0.00 2019-11-08 18:47:52 2019-11-08 18:47:57 t 1 1 158598 623 0.00 2019-11-08 18:47:46 2019-11-08 18:49:04 t 1 1 158599 220 0.00 2019-11-08 18:01:57 2019-11-08 18:50:04 t 1 1 158604 623 0.00 2019-11-08 18:56:25 2019-11-08 18:56:26 t 1 1 158605 422 0.00 2019-11-08 18:50:58 2019-11-08 18:57:30 t 1 1 158609 623 0.00 2019-11-08 18:58:09 2019-11-08 18:58:16 t 1 1 158613 623 0.00 2019-11-08 18:59:21 2019-11-08 18:59:22 t 1 1 158614 623 0.00 2019-11-08 18:59:27 2019-11-08 18:59:35 t 1 1 158616 623 0.00 2019-11-08 19:00:21 2019-11-08 19:00:23 t 1 1 158617 623 0.00 2019-11-08 19:00:28 2019-11-08 19:00:42 t 1 1 158619 623 0.00 2019-11-08 19:00:51 2019-11-08 19:00:52 t 1 1 158620 623 0.00 2019-11-08 19:00:42 2019-11-08 19:00:57 t 1 1 158622 623 0.00 2019-11-08 19:01:08 2019-11-08 19:01:10 t 1 1 158625 488 0.00 2019-11-08 18:51:09 2019-11-08 19:01:33 t 1 1 158626 375 0.00 2019-11-08 18:28:35 2019-11-08 19:01:52 t 1 1 158628 623 0.00 2019-11-08 19:02:25 2019-11-08 19:02:25 f 1 1 158633 532 0.00 2019-11-08 18:59:25 2019-11-08 19:04:38 t 1 1 158634 551 0.00 2019-11-08 18:28:25 2019-11-08 19:07:04 t 1 1 158635 375 0.00 2019-11-08 19:03:56 2019-11-08 19:08:04 t 1 1 158636 488 0.00 2019-11-08 19:01:33 2019-11-08 19:12:58 t 1 1 158637 562 0.00 2019-11-08 19:13:50 2019-11-08 19:14:11 t 1 1 158642 551 0.00 2019-11-08 19:07:04 2019-11-08 19:24:07 t 1 1 158643 562 0.00 2019-11-08 19:24:40 2019-11-08 19:24:58 t 1 1 158650 220 0.00 2019-11-08 19:25:31 2019-11-08 19:30:36 t 1 1 158651 532 0.00 2019-11-08 19:31:42 2019-11-08 19:31:46 t 1 1 158652 516 0.00 2019-11-08 19:16:41 2019-11-08 19:34:04 t 1 1 158654 562 0.00 2019-11-08 19:35:30 2019-11-08 19:35:43 t 1 1 158656 597 0.00 2019-11-08 19:29:01 2019-11-08 19:37:25 t 1 1 158658 619 0.00 2019-11-08 19:38:48 2019-11-08 19:41:28 t 1 1 158661 587 0.00 2019-11-08 19:41:52 2019-11-08 19:45:54 t 1 1 158665 619 0.00 2019-11-08 19:44:57 2019-11-08 19:47:12 t 1 1 158667 532 0.00 2019-11-08 19:47:45 2019-11-08 19:47:48 t 1 1 158668 551 0.00 2019-11-08 19:24:07 2019-11-08 19:50:06 t 1 1 158676 562 0.00 2019-11-08 19:53:44 2019-11-08 19:54:07 t 1 1 158683 422 0.00 2019-11-08 19:54:35 2019-11-08 20:04:26 t 1 1 158686 591 0.00 2019-11-08 20:04:38 2019-11-08 20:06:04 t 1 1 158695 645 0.00 2019-11-08 19:32:26 2019-11-08 20:09:18 t 1 1 158413 623 0.00 2019-11-08 17:53:31 2019-11-08 17:54:03 t 1 1 158424 609 0.00 2019-11-08 17:52:20 2019-11-08 17:56:33 t 1 1 158426 623 0.00 2019-11-08 17:55:49 2019-11-08 17:57:13 t 1 1 158427 623 0.00 2019-11-08 17:57:18 2019-11-08 17:57:36 t 1 1 158435 545 0.00 2019-11-08 16:20:31 2019-11-08 17:59:21 t 1 1 158438 623 0.00 2019-11-08 17:59:43 2019-11-08 18:00:16 t 1 1 158440 562 0.00 2019-11-08 18:00:16 2019-11-08 18:00:25 t 1 1 158446 591 0.00 2019-11-08 17:44:34 2019-11-08 18:01:10 t 1 1 158448 623 0.00 2019-11-08 18:01:08 2019-11-08 18:01:49 t 1 1 158450 625 0.00 2019-11-08 17:54:02 2019-11-08 18:02:18 t 1 1 158453 623 0.00 2019-11-08 18:02:38 2019-11-08 18:02:45 t 1 1 158455 220 0.00 2019-11-08 18:00:39 2019-11-08 18:03:42 t 1 1 158468 623 0.00 2019-11-08 18:06:30 2019-11-08 18:06:38 t 1 1 158471 623 0.00 2019-11-08 18:06:55 2019-11-08 18:07:01 t 1 1 158472 623 0.00 2019-11-08 18:07:06 2019-11-08 18:07:12 t 1 1 158475 623 0.00 2019-11-08 18:07:35 2019-11-08 18:07:40 t 1 1 158476 623 0.00 2019-11-08 18:07:45 2019-11-08 18:08:18 t 1 1 158479 551 0.00 2019-11-08 17:36:10 2019-11-08 18:08:51 t 1 1 158483 623 0.00 2019-11-08 18:09:20 2019-11-08 18:09:28 t 1 1 158485 623 0.00 2019-11-08 18:09:56 2019-11-08 18:10:03 t 1 1 158488 623 0.00 2019-11-08 18:10:28 2019-11-08 18:10:34 t 1 1 158492 623 0.00 2019-11-08 18:11:03 2019-11-08 18:11:09 t 1 1 158495 623 0.00 2019-11-08 18:11:48 2019-11-08 18:11:55 t 1 1 158496 623 0.00 2019-11-08 18:12:00 2019-11-08 18:12:17 t 1 1 158499 623 0.00 2019-11-08 18:12:46 2019-11-08 18:12:54 t 1 1 158504 637 0.00 2019-11-08 18:01:32 2019-11-08 18:14:22 t 1 1 158510 623 0.00 2019-11-08 18:15:08 2019-11-08 18:15:15 t 1 1 158516 609 0.00 2019-11-08 18:07:07 2019-11-08 18:16:20 t 1 1 158518 623 0.00 2019-11-08 18:16:30 2019-11-08 18:16:36 t 1 1 158521 623 0.00 2019-11-08 18:16:53 2019-11-08 18:17:28 t 1 1 158523 551 0.00 2019-11-08 18:08:51 2019-11-08 18:17:38 t 1 1 158525 623 0.00 2019-11-08 18:18:18 2019-11-08 18:18:24 t 1 1 158528 623 0.00 2019-11-08 18:18:40 2019-11-08 18:18:47 t 1 1 158529 623 0.00 2019-11-08 18:18:52 2019-11-08 18:18:58 t 1 1 158534 623 0.00 2019-11-08 18:19:34 2019-11-08 18:20:01 t 1 1 158535 623 0.00 2019-11-08 18:20:06 2019-11-08 18:20:12 t 1 1 158539 623 0.00 2019-11-08 18:21:17 2019-11-08 18:21:23 t 1 1 158544 637 0.00 2019-11-08 18:14:22 2019-11-08 18:25:20 t 1 1 158546 551 0.00 2019-11-08 18:17:38 2019-11-08 18:28:25 t 1 1 158547 375 0.00 2019-11-08 17:49:25 2019-11-08 18:28:35 t 1 1 158550 562 0.00 2019-11-08 18:29:27 2019-11-08 18:29:43 t 1 1 158551 587 0.00 2019-11-08 18:28:42 2019-11-08 18:30:57 t 1 1 158552 562 0.00 2019-11-08 18:31:02 2019-11-08 18:31:22 t 1 1 158555 623 0.00 2019-11-08 18:21:56 2019-11-08 18:35:50 t 1 1 158557 623 0.00 2019-11-08 18:36:17 2019-11-08 18:36:39 t 1 1 158560 623 0.00 2019-11-08 18:37:09 2019-11-08 18:37:10 t 1 1 158561 623 0.00 2019-11-08 18:37:15 2019-11-08 18:38:02 t 1 1 158564 623 0.00 2019-11-08 18:38:43 2019-11-08 18:38:45 t 1 1 158565 220 0.00 2019-11-08 18:20:04 2019-11-08 18:39:20 t 1 1 158569 416 0.00 2019-11-08 17:21:15 2019-11-08 18:40:14 t 1 1 158572 623 0.00 2019-11-08 18:40:48 2019-11-08 18:40:49 t 1 1 158574 623 0.00 2019-11-08 18:41:34 2019-11-08 18:42:06 t 1 1 158576 623 0.00 2019-11-08 18:42:19 2019-11-08 18:42:49 t 1 1 158577 578 0.00 2019-11-08 17:01:30 2019-11-08 18:43:10 t 1 1 158578 623 0.00 2019-11-08 18:43:01 2019-11-08 18:43:16 t 1 1 158579 623 0.00 2019-11-08 18:43:15 2019-11-08 18:43:33 t 1 1 158584 623 0.00 2019-11-08 18:45:26 2019-11-08 18:45:26 t 1 1 158588 623 0.00 2019-11-08 18:46:09 2019-11-08 18:46:14 t 1 1 158592 623 0.00 2019-11-08 18:47:03 2019-11-08 18:47:09 t 1 1 158594 623 0.00 2019-11-08 18:47:27 2019-11-08 18:47:33 t 1 1 158596 623 0.00 2019-11-08 18:48:15 2019-11-08 18:48:19 t 1 1 158601 562 0.00 2019-11-08 18:52:20 2019-11-08 18:52:43 t 1 1 158602 220 0.00 2019-11-08 18:39:26 2019-11-08 18:54:11 t 1 1 158610 623 0.00 2019-11-08 18:58:29 2019-11-08 18:58:30 t 1 1 158623 623 0.00 2019-11-08 19:01:16 2019-11-08 19:01:22 t 1 1 158624 623 0.00 2019-11-08 19:01:28 2019-11-08 19:01:33 t 1 1 158631 562 0.00 2019-11-08 19:03:03 2019-11-08 19:03:29 t 1 1 158638 532 0.00 2019-11-08 19:04:38 2019-11-08 19:14:13 t 1 1 158640 532 0.00 2019-11-08 19:14:13 2019-11-08 19:18:27 t 1 1 158645 375 0.00 2019-11-08 19:23:59 2019-11-08 19:26:01 t 1 1 158647 591 0.00 2019-11-08 18:34:57 2019-11-08 19:27:01 t 1 1 158648 532 0.00 2019-11-08 19:27:14 2019-11-08 19:27:15 t 1 1 158649 532 0.00 2019-11-08 19:28:05 2019-11-08 19:28:16 t 1 1 158655 532 0.00 2019-11-08 19:35:44 2019-11-08 19:37:10 t 1 1 158659 587 0.00 2019-11-08 19:35:37 2019-11-08 19:41:52 t 1 1 158660 554 0.00 2019-11-08 16:46:24 2019-11-08 19:45:32 t 1 1 158662 562 0.00 2019-11-08 19:46:09 2019-11-08 19:46:29 t 1 1 158664 532 0.00 2019-11-08 19:37:23 2019-11-08 19:46:46 t 1 1 158666 375 0.00 2019-11-08 19:38:32 2019-11-08 19:47:32 t 1 1 158670 532 0.00 2019-11-08 19:50:26 2019-11-08 19:50:45 t 1 1 158671 587 0.00 2019-11-08 19:46:12 2019-11-08 19:52:01 t 1 1 158672 375 0.00 2019-11-08 19:47:55 2019-11-08 19:52:50 t 1 1 158675 578 0.00 2019-11-08 18:43:10 2019-11-08 19:54:00 t 1 1 158678 545 0.00 2019-11-08 19:35:32 2019-11-08 19:54:38 t 1 1 158680 562 0.00 2019-11-08 20:01:18 2019-11-08 20:01:45 t 1 1 158681 587 0.00 2019-11-08 19:54:20 2019-11-08 20:02:24 t 1 1 158682 375 0.00 2019-11-08 19:57:12 2019-11-08 20:03:15 t 1 1 158687 485 0.00 2019-11-08 19:34:32 2019-11-08 20:06:19 t 1 1 158688 220 0.00 2019-11-08 18:50:17 2019-11-08 20:07:12 t 1 1 158690 578 0.00 2019-11-08 19:54:00 2019-11-08 20:08:00 t 1 1 158691 220 0.00 2019-11-08 20:07:50 2019-11-08 20:08:25 t 1 1 158693 220 0.00 2019-11-08 20:08:25 2019-11-08 20:09:02 t 1 1 158700 220 0.00 2019-11-08 20:11:16 2019-11-08 20:11:51 t 1 1 158708 220 0.00 2019-11-08 20:14:41 2019-11-08 20:15:19 t 1 1 158709 645 0.00 2019-11-08 20:14:05 2019-11-08 20:16:00 t 1 1 158711 645 0.00 2019-11-08 20:16:22 2019-11-08 20:16:34 t 1 1 158717 566 0.00 2019-11-08 20:16:18 2019-11-08 20:19:31 t 1 1 158720 562 0.00 2019-11-08 20:20:19 2019-11-08 20:21:00 t 1 1 158722 220 0.00 2019-11-08 20:19:00 2019-11-08 20:23:29 t 1 1 158728 645 0.00 2019-11-08 20:17:35 2019-11-08 20:28:14 t 1 1 158733 220 0.00 2019-11-08 20:29:02 2019-11-08 20:29:09 t 1 1 158742 375 0.00 2019-11-08 20:28:36 2019-11-08 20:30:56 t 1 1 158744 220 0.00 2019-11-08 20:31:22 2019-11-08 20:31:56 t 1 1 158749 532 0.00 2019-11-08 20:33:46 2019-11-08 20:34:48 t 1 1 158752 551 0.00 2019-11-08 20:08:57 2019-11-08 20:35:52 t 1 1 158755 485 0.00 2019-11-08 20:32:55 2019-11-08 20:37:43 t 1 1 158757 591 0.00 2019-11-08 20:18:40 2019-11-08 20:38:16 t 1 1 158697 220 0.00 2019-11-08 20:09:34 2019-11-08 20:10:14 t 1 1 158702 562 0.00 2019-11-08 20:07:39 2019-11-08 20:12:46 t 1 1 158705 562 0.00 2019-11-08 20:13:59 2019-11-08 20:14:08 t 1 1 158713 562 0.00 2019-11-08 20:16:14 2019-11-08 20:18:13 t 1 1 158716 562 0.00 2019-11-08 20:18:50 2019-11-08 20:19:29 t 1 1 158718 483 0.00 2019-11-08 20:12:03 2019-11-08 20:19:47 t 1 1 158719 587 0.00 2019-11-08 20:02:43 2019-11-08 20:20:04 t 1 1 158721 516 0.00 2019-11-08 20:02:07 2019-11-08 20:21:06 t 1 1 158726 562 0.00 2019-11-08 20:23:41 2019-11-08 20:25:48 t 1 1 158727 220 0.00 2019-11-08 20:25:35 2019-11-08 20:26:18 t 1 1 158729 220 0.00 2019-11-08 20:26:18 2019-11-08 20:28:19 t 1 1 158735 597 0.00 2019-11-08 20:28:10 2019-11-08 20:29:36 t 1 1 158738 220 0.00 2019-11-08 20:29:39 2019-11-08 20:30:14 t 1 1 158740 220 0.00 2019-11-08 20:30:14 2019-11-08 20:30:45 t 1 1 158747 512 0.00 2019-11-08 20:05:40 2019-11-08 20:33:20 t 1 1 158748 516 0.00 2019-11-08 20:21:05 2019-11-08 20:34:31 t 1 1 158750 562 0.00 2019-11-08 20:35:15 2019-11-08 20:35:37 t 1 1 158753 645 0.00 2019-11-08 20:35:42 2019-11-08 20:35:56 t 1 1 158754 562 0.00 2019-11-08 20:36:16 2019-11-08 20:36:26 t 1 1 158760 587 0.00 2019-11-08 20:38:37 2019-11-08 20:39:36 t 1 1 158762 566 0.00 2019-11-08 20:35:48 2019-11-08 20:41:49 t 1 1 158767 622 0.00 2019-11-08 20:42:28 2019-11-08 20:47:40 t 1 1 158768 532 0.00 2019-11-08 20:47:57 2019-11-08 20:48:05 t 1 1 158772 562 0.00 2019-11-08 20:49:42 2019-11-08 20:49:52 t 1 1 158773 562 0.00 2019-11-08 20:51:02 2019-11-08 20:51:10 t 1 1 158777 597 0.00 2019-11-08 20:43:53 2019-11-08 20:54:10 t 1 1 158782 597 0.00 2019-11-08 20:54:10 2019-11-08 20:57:44 t 1 1 158792 597 0.00 2019-11-08 21:07:47 2019-11-08 21:09:38 t 1 1 158795 416 0.00 2019-11-08 19:19:56 2019-11-08 21:10:42 t 1 1 158799 587 0.00 2019-11-08 21:11:46 2019-11-08 21:12:23 t 1 1 158801 619 0.00 2019-11-08 21:05:07 2019-11-08 21:16:13 t 1 1 158805 591 0.00 2019-11-08 21:19:07 2019-11-08 21:20:44 t 1 1 158806 532 0.00 2019-11-08 21:21:37 2019-11-08 21:21:42 t 1 1 158807 545 0.00 2019-11-08 21:20:22 2019-11-08 21:25:20 t 1 1 158809 554 0.00 2019-11-08 20:55:08 2019-11-08 21:25:46 t 1 1 158812 375 0.00 2019-11-08 20:30:56 2019-11-08 21:28:04 t 1 1 158815 587 0.00 2019-11-08 21:28:48 2019-11-08 21:31:02 t 1 1 158817 220 0.00 2019-11-08 21:11:58 2019-11-08 21:31:46 t 1 1 158818 532 0.00 2019-11-08 21:31:53 2019-11-08 21:32:02 t 1 1 158822 375 0.00 2019-11-08 21:34:59 2019-11-08 21:41:47 t 1 1 158824 587 0.00 2019-11-08 21:35:21 2019-11-08 21:43:54 t 1 1 158826 587 0.00 2019-11-08 21:44:38 2019-11-08 21:44:42 t 1 1 158831 595 0.00 2019-11-08 21:47:40 2019-11-08 21:49:46 t 1 1 158835 622 0.00 2019-11-08 21:48:52 2019-11-08 21:51:13 t 1 1 158836 637 0.00 2019-11-08 21:03:38 2019-11-08 21:52:07 t 1 1 158837 220 0.00 2019-11-08 21:40:46 2019-11-08 21:52:14 t 1 1 158839 619 0.00 2019-11-08 21:40:11 2019-11-08 21:53:41 t 1 1 158840 566 0.00 2019-11-08 21:43:54 2019-11-08 21:54:23 t 1 1 158845 595 0.00 2019-11-08 21:59:07 2019-11-08 21:59:25 t 1 1 158846 595 0.00 2019-11-08 22:00:22 2019-11-08 22:02:07 t 1 1 158859 595 0.00 2019-11-08 22:07:00 2019-11-08 22:07:22 t 1 1 158862 422 0.00 2019-11-08 22:05:44 2019-11-08 22:07:42 t 1 1 158866 422 0.00 2019-11-08 22:08:14 2019-11-08 22:08:27 t 1 1 158867 485 0.00 2019-11-08 22:01:51 2019-11-08 22:08:49 t 1 1 158870 485 0.00 2019-11-08 22:08:49 2019-11-08 22:10:48 t 1 1 158874 422 0.00 2019-11-08 22:11:52 2019-11-08 22:11:59 t 1 1 158876 597 0.00 2019-11-08 22:11:36 2019-11-08 22:12:41 t 1 1 158881 566 0.00 2019-11-08 22:03:36 2019-11-08 22:14:33 t 1 1 158882 587 0.00 2019-11-08 22:12:33 2019-11-08 22:14:59 t 1 1 158884 483 0.00 2019-11-08 22:11:12 2019-11-08 22:16:39 t 1 1 158886 422 0.00 2019-11-08 22:17:23 2019-11-08 22:17:36 t 1 1 158889 619 0.00 2019-11-08 22:09:47 2019-11-08 22:18:40 t 1 1 158890 609 0.00 2019-11-08 20:15:23 2019-11-08 22:20:22 t 1 1 158892 422 0.00 2019-11-08 22:19:23 2019-11-08 22:20:33 t 1 1 158894 483 0.00 2019-11-08 22:16:39 2019-11-08 22:20:56 t 1 1 158902 585 0.00 2019-11-08 22:25:07 2019-11-08 22:28:47 t 1 1 158903 488 0.00 2019-11-08 22:17:27 2019-11-08 22:29:36 t 1 1 158907 375 0.00 2019-11-08 22:04:59 2019-11-08 22:30:34 t 1 1 158908 481 0.00 2019-11-08 21:02:18 2019-11-08 22:31:46 t 1 1 158909 625 0.00 2019-11-08 22:23:25 2019-11-08 22:32:34 t 1 1 158910 611 0.00 2019-11-08 22:24:46 2019-11-08 22:34:49 t 1 1 158912 595 0.00 2019-11-08 22:35:03 2019-11-08 22:35:10 t 1 1 158913 422 0.00 2019-11-08 22:33:49 2019-11-08 22:36:25 t 1 1 158915 585 0.00 2019-11-08 22:28:58 2019-11-08 22:37:10 t 1 1 158917 562 0.00 2019-11-08 22:37:58 2019-11-08 22:38:20 t 1 1 158922 595 0.00 2019-11-08 22:40:10 2019-11-08 22:40:18 t 1 1 158923 585 0.00 2019-11-08 22:39:08 2019-11-08 22:42:05 t 1 1 158926 483 0.00 2019-11-08 22:42:40 2019-11-08 22:45:53 t 1 1 158931 609 0.00 2019-11-08 22:47:22 2019-11-08 22:49:32 t 1 1 158935 625 0.00 2019-11-08 22:32:34 2019-11-08 22:51:18 t 1 1 158936 595 0.00 2019-11-08 22:51:31 2019-11-08 22:51:51 t 1 1 158940 456 0.00 2019-11-08 22:52:42 2019-11-08 22:53:11 t 1 1 158941 375 0.00 2019-11-08 22:30:34 2019-11-08 22:54:05 t 1 1 158942 595 0.00 2019-11-08 22:53:57 2019-11-08 22:55:04 t 1 1 158945 422 0.00 2019-11-08 22:56:27 2019-11-08 22:56:39 t 1 1 158952 551 0.00 2019-11-08 21:50:17 2019-11-08 23:01:56 t 1 1 158953 456 0.00 2019-11-08 22:54:47 2019-11-08 23:03:05 t 1 1 158956 578 0.00 2019-11-08 20:25:07 2019-11-08 23:06:38 t 1 1 158957 591 0.00 2019-11-08 22:54:57 2019-11-08 23:07:11 t 1 1 158960 645 0.00 2019-11-08 21:53:58 2019-11-08 23:10:15 t 1 1 158961 562 0.00 2019-11-08 23:10:15 2019-11-08 23:10:39 t 1 1 158964 581 0.00 2019-11-08 23:12:46 2019-11-08 23:12:48 t 1 1 158967 581 0.00 2019-11-08 23:13:05 2019-11-08 23:14:22 t 1 1 158968 619 0.00 2019-11-08 23:08:46 2019-11-08 23:15:05 t 1 1 158972 422 0.00 2019-11-08 23:19:04 2019-11-08 23:19:29 t 1 1 158979 562 0.00 2019-11-08 23:20:54 2019-11-08 23:21:23 t 1 1 158981 510 0.00 2019-11-08 22:37:25 2019-11-08 23:21:51 t 1 1 158984 422 0.00 2019-11-08 23:22:13 2019-11-08 23:24:33 t 1 1 158985 483 0.00 2019-11-08 23:06:25 2019-11-08 23:24:58 t 1 1 158989 623 0.00 2019-11-08 23:26:35 2019-11-08 23:26:37 t 1 1 158990 422 0.00 2019-11-08 23:25:52 2019-11-08 23:27:07 t 1 1 158991 490 0.00 2019-11-08 23:21:38 2019-11-08 23:29:07 t 1 1 158997 581 0.00 2019-11-08 23:18:26 2019-11-08 23:32:23 t 1 1 159000 585 0.00 2019-11-08 23:31:56 2019-11-08 23:34:39 t 1 1 159004 490 0.00 2019-11-08 23:29:07 2019-11-08 23:38:09 t 1 1 159005 623 0.00 2019-11-08 23:38:45 2019-11-08 23:39:16 t 1 1 159007 538 0.00 2019-11-08 22:22:43 2019-11-08 23:39:48 t 1 1 158707 485 0.00 2019-11-08 20:09:02 2019-11-08 20:15:03 t 1 1 158710 578 0.00 2019-11-08 20:08:00 2019-11-08 20:16:28 t 1 1 158712 545 0.00 2019-11-08 20:11:03 2019-11-08 20:18:05 t 1 1 158714 220 0.00 2019-11-08 20:15:19 2019-11-08 20:18:25 t 1 1 158715 220 0.00 2019-11-08 20:18:24 2019-11-08 20:19:00 t 1 1 158723 220 0.00 2019-11-08 20:23:29 2019-11-08 20:24:10 t 1 1 158724 578 0.00 2019-11-08 20:16:28 2019-11-08 20:25:07 t 1 1 158725 220 0.00 2019-11-08 20:24:10 2019-11-08 20:25:35 t 1 1 158730 220 0.00 2019-11-08 20:28:19 2019-11-08 20:28:31 t 1 1 158731 375 0.00 2019-11-08 20:05:51 2019-11-08 20:28:36 t 1 1 158732 220 0.00 2019-11-08 20:28:31 2019-11-08 20:29:02 t 1 1 158734 587 0.00 2019-11-08 20:20:04 2019-11-08 20:29:28 t 1 1 158736 220 0.00 2019-11-08 20:29:08 2019-11-08 20:29:37 t 1 1 158737 220 0.00 2019-11-08 20:29:36 2019-11-08 20:29:39 t 1 1 158739 220 0.00 2019-11-08 20:30:13 2019-11-08 20:30:15 t 1 1 158741 220 0.00 2019-11-08 20:30:45 2019-11-08 20:30:49 t 1 1 158743 220 0.00 2019-11-08 20:30:49 2019-11-08 20:31:23 t 1 1 158745 585 0.00 2019-11-08 20:30:20 2019-11-08 20:32:34 t 1 1 158746 220 0.00 2019-11-08 20:31:23 2019-11-08 20:33:05 t 1 1 158751 566 0.00 2019-11-08 20:19:31 2019-11-08 20:35:48 t 1 1 158756 597 0.00 2019-11-08 20:30:19 2019-11-08 20:37:57 t 1 1 158758 587 0.00 2019-11-08 20:29:38 2019-11-08 20:38:27 t 1 1 158763 532 0.00 2019-11-08 20:42:40 2019-11-08 20:42:43 t 1 1 158765 512 0.00 2019-11-08 20:44:59 2019-11-08 20:45:10 t 1 1 158766 562 0.00 2019-11-08 20:36:37 2019-11-08 20:47:09 t 1 1 158770 566 0.00 2019-11-08 20:41:49 2019-11-08 20:49:05 t 1 1 158776 562 0.00 2019-11-08 20:52:59 2019-11-08 20:54:05 t 1 1 158779 645 0.00 2019-11-08 20:50:56 2019-11-08 20:55:10 t 1 1 158784 516 0.00 2019-11-08 20:57:39 2019-11-08 20:59:46 t 1 1 158785 566 0.00 2019-11-08 20:49:05 2019-11-08 21:00:18 t 1 1 158790 591 0.00 2019-11-08 20:56:13 2019-11-08 21:08:36 t 1 1 158796 562 0.00 2019-11-08 20:55:07 2019-11-08 21:10:47 t 1 1 158800 587 0.00 2019-11-08 21:12:32 2019-11-08 21:16:12 t 1 1 158802 538 0.00 2019-11-08 21:15:48 2019-11-08 21:16:39 t 1 1 158803 645 0.00 2019-11-08 21:16:00 2019-11-08 21:17:41 t 1 1 158810 562 0.00 2019-11-08 21:12:47 2019-11-08 21:26:01 t 1 1 158811 532 0.00 2019-11-08 21:26:44 2019-11-08 21:26:44 t 1 1 158813 587 0.00 2019-11-08 21:16:32 2019-11-08 21:28:29 t 1 1 158814 538 0.00 2019-11-08 21:16:43 2019-11-08 21:29:16 t 1 1 158819 379 0.00 2019-11-08 21:26:49 2019-11-08 21:33:17 t 1 1 158830 622 0.00 2019-11-08 21:20:19 2019-11-08 21:49:07 t 1 1 158834 645 0.00 2019-11-08 21:50:11 2019-11-08 21:50:51 t 1 1 158841 595 0.00 2019-11-08 21:51:12 2019-11-08 21:55:24 t 1 1 158842 587 0.00 2019-11-08 21:45:03 2019-11-08 21:56:33 t 1 1 158843 485 0.00 2019-11-08 21:44:22 2019-11-08 21:57:35 t 1 1 158848 516 0.00 2019-11-08 21:58:23 2019-11-08 22:03:28 t 1 1 158850 566 0.00 2019-11-08 21:54:23 2019-11-08 22:03:36 t 1 1 158853 595 0.00 2019-11-08 22:04:38 2019-11-08 22:04:58 t 1 1 158855 562 0.00 2019-11-08 21:45:53 2019-11-08 22:05:04 t 1 1 158858 562 0.00 2019-11-08 22:06:22 2019-11-08 22:07:20 t 1 1 158863 595 0.00 2019-11-08 22:07:42 2019-11-08 22:08:04 t 1 1 158864 379 0.00 2019-11-08 22:05:46 2019-11-08 22:08:20 t 1 1 158865 532 0.00 2019-11-08 22:08:23 2019-11-08 22:08:26 t 1 1 158868 422 0.00 2019-11-08 22:08:43 2019-11-08 22:08:50 t 1 1 158871 483 0.00 2019-11-08 21:50:39 2019-11-08 22:11:08 t 1 1 158873 597 0.00 2019-11-08 22:07:27 2019-11-08 22:11:36 t 1 1 158877 532 0.00 2019-11-08 22:12:54 2019-11-08 22:12:56 t 1 1 158879 451 0.00 2019-11-08 21:57:15 2019-11-08 22:13:49 t 1 1 158880 422 0.00 2019-11-08 22:14:13 2019-11-08 22:14:27 t 1 1 158885 488 0.00 2019-11-08 22:16:58 2019-11-08 22:17:28 t 1 1 158888 562 0.00 2019-11-08 22:17:36 2019-11-08 22:18:03 t 1 1 158895 595 0.00 2019-11-08 22:08:17 2019-11-08 22:22:44 t 1 1 158896 625 0.00 2019-11-08 22:15:27 2019-11-08 22:23:25 t 1 1 158897 532 0.00 2019-11-08 22:23:38 2019-11-08 22:23:45 t 1 1 158900 562 0.00 2019-11-08 22:27:13 2019-11-08 22:27:33 t 1 1 158901 532 0.00 2019-11-08 22:28:20 2019-11-08 22:28:21 t 1 1 158904 483 0.00 2019-11-08 22:20:56 2019-11-08 22:29:47 t 1 1 158906 422 0.00 2019-11-08 22:20:45 2019-11-08 22:30:14 t 1 1 158916 510 0.00 2019-11-08 22:02:09 2019-11-08 22:37:25 t 1 1 158919 611 0.00 2019-11-08 22:35:50 2019-11-08 22:38:50 t 1 1 158920 483 0.00 2019-11-08 22:35:09 2019-11-08 22:39:34 t 1 1 158925 595 0.00 2019-11-08 22:45:18 2019-11-08 22:45:25 t 1 1 158927 585 0.00 2019-11-08 22:45:55 2019-11-08 22:47:08 t 1 1 158930 445 0.00 2019-11-08 19:24:35 2019-11-08 22:49:29 t 1 1 158932 412 0.00 2019-11-08 22:08:36 2019-11-08 22:50:19 t 1 1 158933 595 0.00 2019-11-08 22:50:30 2019-11-08 22:50:45 t 1 1 158934 595 0.00 2019-11-08 22:50:56 2019-11-08 22:51:16 t 1 1 158937 483 0.00 2019-11-08 22:48:54 2019-11-08 22:52:17 t 1 1 158939 512 0.00 2019-11-08 22:39:54 2019-11-08 22:52:39 t 1 1 158944 483 0.00 2019-11-08 22:52:17 2019-11-08 22:55:49 t 1 1 158948 562 0.00 2019-11-08 22:59:29 2019-11-08 22:59:48 t 1 1 158949 483 0.00 2019-11-08 22:55:49 2019-11-08 23:00:10 t 1 1 158951 623 0.00 2019-11-08 22:58:37 2019-11-08 23:01:08 t 1 1 158954 623 0.00 2019-11-08 23:02:33 2019-11-08 23:04:15 t 1 1 158958 545 0.00 2019-11-08 22:52:40 2019-11-08 23:07:30 t 1 1 158959 581 0.00 2019-11-08 23:07:40 2019-11-08 23:09:02 t 1 1 158963 623 0.00 2019-11-08 23:05:40 2019-11-08 23:11:42 t 1 1 158966 645 0.00 2019-11-08 23:10:15 2019-11-08 23:14:00 t 1 1 158970 422 0.00 2019-11-08 22:56:45 2019-11-08 23:17:44 t 1 1 158971 623 0.00 2019-11-08 23:15:09 2019-11-08 23:19:25 t 1 1 158974 545 0.00 2019-11-08 23:07:30 2019-11-08 23:20:39 t 1 1 158976 422 0.00 2019-11-08 23:20:28 2019-11-08 23:20:47 t 1 1 158983 635 0.00 2019-11-08 23:11:22 2019-11-08 23:23:45 t 1 1 158987 623 0.00 2019-11-08 23:24:08 2019-11-08 23:25:26 t 1 1 158988 645 0.00 2019-11-08 23:25:38 2019-11-08 23:25:54 t 1 1 158992 545 0.00 2019-11-08 23:20:39 2019-11-08 23:29:10 t 1 1 158993 623 0.00 2019-11-08 23:29:20 2019-11-08 23:29:23 t 1 1 158994 422 0.00 2019-11-08 23:29:39 2019-11-08 23:29:54 t 1 1 158996 562 0.00 2019-11-08 23:31:47 2019-11-08 23:32:07 t 1 1 158999 623 0.00 2019-11-08 23:34:25 2019-11-08 23:34:28 t 1 1 159002 451 0.00 2019-11-08 23:27:01 2019-11-08 23:37:50 t 1 1 159006 422 0.00 2019-11-08 23:39:17 2019-11-08 23:39:42 t 1 1 159010 562 0.00 2019-11-08 23:42:25 2019-11-08 23:42:46 t 1 1 159011 623 0.00 2019-11-08 23:43:52 2019-11-08 23:43:55 t 1 1 159014 587 0.00 2019-11-08 23:40:40 2019-11-08 23:47:17 t 1 1 159020 587 0.00 2019-11-08 23:50:25 2019-11-08 23:50:43 t 1 1 159022 422 0.00 2019-11-08 23:51:45 2019-11-08 23:52:33 t 1 1 158759 622 0.00 2019-11-08 20:32:23 2019-11-08 20:38:56 t 1 1 158761 516 0.00 2019-11-08 20:34:52 2019-11-08 20:40:38 t 1 1 158764 645 0.00 2019-11-08 20:43:24 2019-11-08 20:44:42 t 1 1 158769 562 0.00 2019-11-08 20:48:53 2019-11-08 20:48:59 t 1 1 158771 514 0.00 2019-11-08 20:36:52 2019-11-08 20:49:15 t 1 1 158774 587 0.00 2019-11-08 20:39:50 2019-11-08 20:51:51 t 1 1 158775 562 0.00 2019-11-08 20:52:43 2019-11-08 20:52:50 t 1 1 158778 554 0.00 2019-11-08 19:45:32 2019-11-08 20:55:08 t 1 1 158780 587 0.00 2019-11-08 20:54:40 2019-11-08 20:56:05 t 1 1 158781 516 0.00 2019-11-08 20:48:18 2019-11-08 20:57:39 t 1 1 158783 597 0.00 2019-11-08 20:57:44 2019-11-08 20:59:17 t 1 1 158786 481 0.00 2019-11-08 19:08:46 2019-11-08 21:00:18 t 1 1 158787 637 0.00 2019-11-08 19:28:25 2019-11-08 21:03:38 t 1 1 158788 587 0.00 2019-11-08 21:02:41 2019-11-08 21:04:05 t 1 1 158789 570 0.00 2019-11-08 20:28:32 2019-11-08 21:07:31 t 1 1 158791 587 0.00 2019-11-08 21:07:49 2019-11-08 21:09:00 t 1 1 158793 538 0.00 2019-11-08 20:18:53 2019-11-08 21:09:48 t 1 1 158794 566 0.00 2019-11-08 21:00:18 2019-11-08 21:10:35 t 1 1 158797 587 0.00 2019-11-08 21:09:28 2019-11-08 21:11:36 t 1 1 158798 220 0.00 2019-11-08 20:31:56 2019-11-08 21:11:58 t 1 1 158804 566 0.00 2019-11-08 21:10:35 2019-11-08 21:20:43 t 1 1 158808 516 0.00 2019-11-08 21:14:48 2019-11-08 21:25:36 t 1 1 158816 566 0.00 2019-11-08 21:20:43 2019-11-08 21:31:38 t 1 1 158820 375 0.00 2019-11-08 21:28:04 2019-11-08 21:34:59 t 1 1 158821 532 0.00 2019-11-08 21:37:05 2019-11-08 21:37:07 t 1 1 158823 532 0.00 2019-11-08 21:42:05 2019-11-08 21:42:06 t 1 1 158825 566 0.00 2019-11-08 21:31:38 2019-11-08 21:43:54 t 1 1 158827 562 0.00 2019-11-08 21:26:43 2019-11-08 21:44:45 t 1 1 158828 562 0.00 2019-11-08 21:44:55 2019-11-08 21:45:24 t 1 1 158829 379 0.00 2019-11-08 21:33:17 2019-11-08 21:48:20 t 1 1 158832 551 0.00 2019-11-08 20:35:52 2019-11-08 21:50:17 t 1 1 158833 379 0.00 2019-11-08 21:48:20 2019-11-08 21:50:51 t 1 1 158838 622 0.00 2019-11-08 21:50:52 2019-11-08 21:52:35 t 1 1 158844 532 0.00 2019-11-08 21:44:52 2019-11-08 21:58:20 t 1 1 158847 510 0.00 2019-11-08 21:55:33 2019-11-08 22:02:09 t 1 1 158849 532 0.00 2019-11-08 22:03:14 2019-11-08 22:03:30 t 1 1 158851 375 0.00 2019-11-08 21:41:47 2019-11-08 22:03:49 t 1 1 158852 595 0.00 2019-11-08 22:04:15 2019-11-08 22:04:23 t 1 1 158854 516 0.00 2019-11-08 22:03:28 2019-11-08 22:05:04 t 1 1 158856 379 0.00 2019-11-08 21:51:48 2019-11-08 22:05:46 t 1 1 158857 637 0.00 2019-11-08 21:52:07 2019-11-08 22:06:12 t 1 1 158860 597 0.00 2019-11-08 22:00:10 2019-11-08 22:07:27 t 1 1 158861 595 0.00 2019-11-08 22:07:28 2019-11-08 22:07:31 t 1 1 158869 545 0.00 2019-11-08 22:02:02 2019-11-08 22:09:12 t 1 1 158872 422 0.00 2019-11-08 22:10:06 2019-11-08 22:11:13 t 1 1 158875 587 0.00 2019-11-08 21:58:21 2019-11-08 22:12:33 t 1 1 158878 220 0.00 2019-11-08 21:52:14 2019-11-08 22:13:41 t 1 1 158883 422 0.00 2019-11-08 22:15:52 2019-11-08 22:16:10 t 1 1 158887 532 0.00 2019-11-08 22:17:59 2019-11-08 22:18:02 t 1 1 158891 562 0.00 2019-11-08 22:18:41 2019-11-08 22:20:22 t 1 1 158893 562 0.00 2019-11-08 22:20:28 2019-11-08 22:20:44 t 1 1 158898 514 0.00 2019-11-08 22:22:47 2019-11-08 22:24:41 t 1 1 158899 595 0.00 2019-11-08 22:24:47 2019-11-08 22:24:51 t 1 1 158905 595 0.00 2019-11-08 22:29:52 2019-11-08 22:30:00 t 1 1 158911 483 0.00 2019-11-08 22:29:47 2019-11-08 22:35:09 t 1 1 158914 622 0.00 2019-11-08 22:08:24 2019-11-08 22:36:29 t 1 1 158918 585 0.00 2019-11-08 22:37:10 2019-11-08 22:38:42 t 1 1 158921 512 0.00 2019-11-08 22:31:47 2019-11-08 22:39:54 t 1 1 158924 483 0.00 2019-11-08 22:39:34 2019-11-08 22:42:40 t 1 1 158928 483 0.00 2019-11-08 22:45:54 2019-11-08 22:48:54 t 1 1 158929 562 0.00 2019-11-08 22:48:42 2019-11-08 22:49:08 t 1 1 158938 532 0.00 2019-11-08 22:33:04 2019-11-08 22:52:33 t 1 1 158943 422 0.00 2019-11-08 22:51:31 2019-11-08 22:55:43 t 1 1 158946 623 0.00 2019-11-08 22:56:44 2019-11-08 22:57:45 t 1 1 158947 623 0.00 2019-11-08 22:57:58 2019-11-08 22:58:24 t 1 1 158950 619 0.00 2019-11-08 22:48:36 2019-11-08 23:01:04 t 1 1 158955 483 0.00 2019-11-08 23:02:47 2019-11-08 23:06:21 t 1 1 158962 581 0.00 2019-11-08 23:10:30 2019-11-08 23:10:46 t 1 1 158965 514 0.00 2019-11-08 23:11:34 2019-11-08 23:12:50 t 1 1 158969 623 0.00 2019-11-08 23:11:42 2019-11-08 23:15:09 t 1 1 158973 578 0.00 2019-11-08 23:06:38 2019-11-08 23:19:50 t 1 1 158975 623 0.00 2019-11-08 23:20:27 2019-11-08 23:20:44 t 1 1 158977 623 0.00 2019-11-08 23:20:49 2019-11-08 23:20:50 t 1 1 158978 514 0.00 2019-11-08 23:20:10 2019-11-08 23:21:11 t 1 1 158980 623 0.00 2019-11-08 23:21:18 2019-11-08 23:21:24 t 1 1 158982 587 0.00 2019-11-08 23:18:18 2019-11-08 23:23:30 t 1 1 158986 587 0.00 2019-11-08 23:24:03 2019-11-08 23:25:20 t 1 1 158995 412 0.00 2019-11-08 22:50:19 2019-11-08 23:31:51 t 1 1 158998 488 0.00 2019-11-08 22:29:36 2019-11-08 23:32:42 t 1 1 159001 545 0.00 2019-11-08 23:29:10 2019-11-08 23:34:47 t 1 1 159003 422 0.00 2019-11-08 23:37:30 2019-11-08 23:37:50 t 1 1 159009 422 0.00 2019-11-08 23:42:22 2019-11-08 23:42:34 t 1 1 159012 220 0.00 2019-11-08 20:32:11 2019-11-08 23:45:08 t 1 1 159015 220 0.00 2019-11-08 23:45:07 2019-11-08 23:47:21 t 1 1 159024 554 0.00 2019-11-08 21:25:46 2019-11-08 23:53:39 t 1 1 159030 220 0.00 2019-11-08 23:57:21 2019-11-08 23:57:33 t 1 1 159032 619 0.00 2019-11-08 23:51:31 2019-11-08 23:59:12 t 1 1 159034 574 0.00 2019-11-08 23:26:36 2019-11-09 00:02:01 t 1 1 159035 623 0.00 2019-11-09 00:03:17 2019-11-09 00:03:48 t 1 1 159037 623 0.00 2019-11-09 00:04:05 2019-11-09 00:04:37 t 1 1 159039 220 0.00 2019-11-08 23:57:32 2019-11-09 00:05:32 t 1 1 159045 220 0.00 2019-11-09 00:07:27 2019-11-09 00:07:37 t 1 1 159050 623 0.00 2019-11-09 00:09:14 2019-11-09 00:09:17 t 1 1 159052 422 0.00 2019-11-09 00:07:25 2019-11-09 00:09:39 t 1 1 159055 422 0.00 2019-11-09 00:12:29 2019-11-09 00:12:40 t 1 1 159056 611 0.00 2019-11-09 00:04:25 2019-11-09 00:13:01 t 1 1 159057 627 0.00 2019-11-09 00:09:43 2019-11-09 00:14:15 t 1 1 159061 562 0.00 2019-11-09 00:14:46 2019-11-09 00:15:00 t 1 1 159062 562 0.00 2019-11-09 00:16:21 2019-11-09 00:16:30 t 1 1 159063 623 0.00 2019-11-09 00:17:29 2019-11-09 00:17:41 t 1 1 159068 562 0.00 2019-11-09 00:19:36 2019-11-09 00:21:08 t 1 1 159077 637 0.00 2019-11-09 00:09:31 2019-11-09 00:32:34 t 1 1 159082 514 0.00 2019-11-09 00:34:39 2019-11-09 00:35:25 t 1 1 159088 451 0.00 2019-11-09 00:36:05 2019-11-09 00:37:22 t 1 1 159090 587 0.00 2019-11-09 00:37:00 2019-11-09 00:37:28 t 1 1 159092 422 0.00 2019-11-09 00:39:14 2019-11-09 00:39:14 f 1 1 159095 422 0.00 2019-11-09 00:39:48 2019-11-09 00:39:48 f 1 1 159008 645 0.00 2019-11-08 23:29:26 2019-11-08 23:41:30 t 1 1 159013 451 0.00 2019-11-08 23:37:50 2019-11-08 23:46:19 t 1 1 159016 220 0.00 2019-11-08 23:47:21 2019-11-08 23:47:32 t 1 1 159017 483 0.00 2019-11-08 23:36:17 2019-11-08 23:48:02 t 1 1 159018 623 0.00 2019-11-08 23:48:58 2019-11-08 23:49:01 t 1 1 159019 587 0.00 2019-11-08 23:47:33 2019-11-08 23:50:10 t 1 1 159021 551 0.00 2019-11-08 23:01:56 2019-11-08 23:52:20 t 1 1 159025 623 0.00 2019-11-08 23:53:38 2019-11-08 23:54:09 t 1 1 159026 635 0.00 2019-11-08 23:51:52 2019-11-08 23:55:41 t 1 1 159027 220 0.00 2019-11-08 23:47:31 2019-11-08 23:56:21 t 1 1 159038 623 0.00 2019-11-09 00:04:42 2019-11-09 00:04:44 t 1 1 159040 220 0.00 2019-11-09 00:05:32 2019-11-09 00:05:44 t 1 1 159041 220 0.00 2019-11-09 00:05:43 2019-11-09 00:06:55 t 1 1 159042 220 0.00 2019-11-09 00:06:55 2019-11-09 00:07:07 t 1 1 159046 220 0.00 2019-11-09 00:07:37 2019-11-09 00:07:48 t 1 1 159047 220 0.00 2019-11-09 00:07:48 2019-11-09 00:07:58 t 1 1 159058 623 0.00 2019-11-09 00:14:17 2019-11-09 00:14:18 t 1 1 159060 220 0.00 2019-11-09 00:08:09 2019-11-09 00:14:39 t 1 1 159064 445 0.00 2019-11-08 22:49:33 2019-11-09 00:18:28 t 1 1 159066 422 0.00 2019-11-09 00:18:38 2019-11-09 00:19:28 t 1 1 159072 623 0.00 2019-11-09 00:24:30 2019-11-09 00:24:43 t 1 1 159075 623 0.00 2019-11-09 00:29:32 2019-11-09 00:29:33 t 1 1 159076 562 0.00 2019-11-09 00:31:43 2019-11-09 00:31:57 t 1 1 159078 514 0.00 2019-11-09 00:33:11 2019-11-09 00:33:51 t 1 1 159079 623 0.00 2019-11-09 00:34:34 2019-11-09 00:34:37 t 1 1 159083 451 0.00 2019-11-09 00:13:52 2019-11-09 00:36:05 t 1 1 159086 514 0.00 2019-11-09 00:35:25 2019-11-09 00:36:26 t 1 1 159087 622 0.00 2019-11-09 00:26:46 2019-11-09 00:37:09 t 1 1 159093 422 0.00 2019-11-09 00:39:31 2019-11-09 00:39:31 f 1 1 159097 422 0.00 2019-11-09 00:38:39 2019-11-09 00:40:06 t 1 1 159099 551 0.00 2019-11-09 00:36:10 2019-11-09 00:42:10 t 1 1 159102 562 0.00 2019-11-09 00:42:27 2019-11-09 00:42:46 t 1 1 159104 412 0.00 2019-11-09 00:37:26 2019-11-09 00:43:08 t 1 1 159105 611 0.00 2019-11-09 00:42:40 2019-11-09 00:44:34 t 1 1 159108 621 0.00 2019-11-09 00:37:39 2019-11-09 00:45:45 t 1 1 159114 621 0.00 2019-11-09 00:45:45 2019-11-09 00:50:31 t 1 1 159116 623 0.00 2019-11-09 00:54:50 2019-11-09 00:54:51 t 1 1 159117 621 0.00 2019-11-09 00:50:31 2019-11-09 00:55:53 t 1 1 159118 637 0.00 2019-11-09 00:32:34 2019-11-09 00:55:58 t 1 1 159125 623 0.00 2019-11-09 01:05:10 2019-11-09 01:05:13 t 1 1 159127 607 0.00 2019-11-09 00:41:11 2019-11-09 01:06:15 t 1 1 159130 607 0.00 2019-11-09 01:06:15 2019-11-09 01:08:24 t 1 1 159137 623 0.00 2019-11-09 01:15:05 2019-11-09 01:15:06 t 1 1 159141 609 0.00 2019-11-09 01:08:15 2019-11-09 01:18:34 t 1 1 159143 422 0.00 2019-11-09 01:18:51 2019-11-09 01:19:01 t 1 1 159149 587 0.00 2019-11-09 01:19:42 2019-11-09 01:22:49 t 1 1 159150 621 0.00 2019-11-09 01:18:48 2019-11-09 01:25:08 t 1 1 159152 607 0.00 2019-11-09 01:08:24 2019-11-09 01:25:53 t 1 1 159153 564 0.00 2019-11-09 00:53:15 2019-11-09 01:28:23 t 1 1 159155 587 0.00 2019-11-09 01:24:23 2019-11-09 01:29:47 t 1 1 159161 623 0.00 2019-11-09 01:35:24 2019-11-09 01:35:26 t 1 1 159164 587 0.00 2019-11-09 01:30:07 2019-11-09 01:36:21 t 1 1 159169 587 0.00 2019-11-09 01:36:40 2019-11-09 01:43:03 t 1 1 159171 562 0.00 2019-11-09 01:43:59 2019-11-09 01:44:10 t 1 1 159177 562 0.00 2019-11-09 01:54:36 2019-11-09 01:54:55 t 1 1 159179 587 0.00 2019-11-09 01:54:24 2019-11-09 01:56:23 t 1 1 159180 623 0.00 2019-11-09 01:57:22 2019-11-09 01:57:34 t 1 1 159182 623 0.00 2019-11-09 02:00:48 2019-11-09 02:00:51 t 1 1 159184 622 0.00 2019-11-09 01:43:37 2019-11-09 02:01:13 t 1 1 159189 623 0.00 2019-11-09 02:16:01 2019-11-09 02:16:04 t 1 1 159191 587 0.00 2019-11-09 02:01:41 2019-11-09 02:20:58 t 1 1 159194 516 0.00 2019-11-09 02:12:37 2019-11-09 02:21:41 t 1 1 159196 623 0.00 2019-11-09 02:21:10 2019-11-09 02:23:06 t 1 1 159197 623 0.00 2019-11-09 02:26:13 2019-11-09 02:26:13 t 1 1 159199 562 0.00 2019-11-09 02:27:01 2019-11-09 02:27:11 t 1 1 159204 607 0.00 2019-11-09 01:25:53 2019-11-09 02:34:07 t 1 1 159205 622 0.00 2019-11-09 02:21:57 2019-11-09 02:35:50 t 1 1 159208 587 0.00 2019-11-09 02:44:44 2019-11-09 02:53:11 t 1 1 159211 587 0.00 2019-11-09 02:59:01 2019-11-09 03:00:41 t 1 1 159216 587 0.00 2019-11-09 03:02:40 2019-11-09 03:33:45 t 1 1 159219 562 0.00 2019-11-09 03:43:05 2019-11-09 03:43:10 t 1 1 159220 562 0.00 2019-11-09 03:46:22 2019-11-09 03:46:45 t 1 1 159223 623 0.00 2019-11-09 04:00:29 2019-11-09 04:00:41 t 1 1 159225 623 0.00 2019-11-09 04:02:23 2019-11-09 04:02:26 t 1 1 159228 623 0.00 2019-11-09 04:12:32 2019-11-09 04:12:35 t 1 1 159237 562 0.00 2019-11-09 04:36:57 2019-11-09 04:37:28 t 1 1 159242 587 0.00 2019-11-09 04:17:19 2019-11-09 04:51:28 t 1 1 159243 623 0.00 2019-11-09 04:44:02 2019-11-09 04:57:34 t 1 1 159248 623 0.00 2019-11-09 04:59:33 2019-11-09 04:59:35 t 1 1 159253 623 0.00 2019-11-09 05:03:34 2019-11-09 05:03:35 t 1 1 159258 445 0.00 2019-11-09 04:27:38 2019-11-09 05:18:07 t 1 1 159263 587 0.00 2019-11-09 04:53:44 2019-11-09 05:24:25 t 1 1 159266 623 0.00 2019-11-09 05:28:51 2019-11-09 05:29:51 t 1 1 159275 623 0.00 2019-11-09 05:44:05 2019-11-09 05:44:05 t 1 1 159281 623 0.00 2019-11-09 05:56:00 2019-11-09 05:56:36 t 1 1 159282 623 0.00 2019-11-09 05:56:43 2019-11-09 05:57:00 t 1 1 159284 623 0.00 2019-11-09 05:59:16 2019-11-09 05:59:17 t 1 1 159287 645 0.00 2019-11-09 06:03:07 2019-11-09 06:05:31 t 1 1 159295 645 0.00 2019-11-09 06:18:00 2019-11-09 06:18:59 t 1 1 159297 645 0.00 2019-11-09 06:23:01 2019-11-09 06:23:07 t 1 1 159300 623 0.00 2019-11-09 06:24:45 2019-11-09 06:24:57 t 1 1 159302 623 0.00 2019-11-09 06:25:09 2019-11-09 06:25:20 t 1 1 159306 516 0.00 2019-11-09 06:18:20 2019-11-09 06:34:52 t 1 1 159312 562 0.00 2019-11-09 06:40:07 2019-11-09 06:40:22 t 1 1 159314 623 0.00 2019-11-09 06:40:48 2019-11-09 06:40:49 t 1 1 159316 623 0.00 2019-11-09 06:45:32 2019-11-09 06:45:33 t 1 1 159317 562 0.00 2019-11-09 06:45:59 2019-11-09 06:46:29 t 1 1 159318 551 0.00 2019-11-09 06:39:44 2019-11-09 06:48:30 t 1 1 159319 623 0.00 2019-11-09 06:50:38 2019-11-09 06:50:40 t 1 1 159320 562 0.00 2019-11-09 06:48:18 2019-11-09 06:51:11 t 1 1 159322 645 0.00 2019-11-09 06:53:20 2019-11-09 06:53:42 t 1 1 159324 562 0.00 2019-11-09 06:56:42 2019-11-09 06:57:13 t 1 1 159325 623 0.00 2019-11-09 07:00:30 2019-11-09 07:00:32 t 1 1 159327 623 0.00 2019-11-09 07:00:45 2019-11-09 07:00:45 t 1 1 159329 570 0.00 2019-11-09 07:00:31 2019-11-09 07:10:57 t 1 1 159330 623 0.00 2019-11-09 07:10:48 2019-11-09 07:11:01 t 1 1 159331 623 0.00 2019-11-09 07:11:12 2019-11-09 07:11:15 t 1 1 159023 562 0.00 2019-11-08 23:53:10 2019-11-08 23:53:34 t 1 1 159028 220 0.00 2019-11-08 23:56:20 2019-11-08 23:56:32 t 1 1 159029 220 0.00 2019-11-08 23:56:32 2019-11-08 23:57:21 t 1 1 159031 623 0.00 2019-11-08 23:58:45 2019-11-08 23:58:46 t 1 1 159033 422 0.00 2019-11-08 23:58:31 2019-11-08 23:59:44 t 1 1 159036 562 0.00 2019-11-09 00:03:51 2019-11-09 00:04:21 t 1 1 159043 220 0.00 2019-11-09 00:07:06 2019-11-09 00:07:16 t 1 1 159044 220 0.00 2019-11-09 00:07:16 2019-11-09 00:07:27 t 1 1 159048 220 0.00 2019-11-09 00:07:57 2019-11-09 00:08:09 t 1 1 159049 587 0.00 2019-11-08 23:51:12 2019-11-09 00:09:14 t 1 1 159051 637 0.00 2019-11-08 23:59:57 2019-11-09 00:09:31 t 1 1 159053 422 0.00 2019-11-09 00:11:26 2019-11-09 00:11:33 t 1 1 159054 422 0.00 2019-11-09 00:12:05 2019-11-09 00:12:11 t 1 1 159059 623 0.00 2019-11-09 00:14:24 2019-11-09 00:14:25 t 1 1 159065 623 0.00 2019-11-09 00:19:24 2019-11-09 00:19:28 t 1 1 159067 611 0.00 2019-11-09 00:13:00 2019-11-09 00:20:21 t 1 1 159069 591 0.00 2019-11-08 23:07:11 2019-11-09 00:21:27 t 1 1 159070 422 0.00 2019-11-09 00:22:12 2019-11-09 00:22:51 t 1 1 159071 587 0.00 2019-11-09 00:09:14 2019-11-09 00:24:25 t 1 1 159073 622 0.00 2019-11-09 00:10:10 2019-11-09 00:26:47 t 1 1 159074 611 0.00 2019-11-09 00:20:21 2019-11-09 00:26:59 t 1 1 159080 514 0.00 2019-11-09 00:33:51 2019-11-09 00:34:40 t 1 1 159081 587 0.00 2019-11-09 00:24:42 2019-11-09 00:35:19 t 1 1 159084 551 0.00 2019-11-08 23:52:20 2019-11-09 00:36:09 t 1 1 159085 611 0.00 2019-11-09 00:26:59 2019-11-09 00:36:13 t 1 1 159089 412 0.00 2019-11-08 23:31:51 2019-11-09 00:37:26 t 1 1 159091 422 0.00 2019-11-09 00:24:32 2019-11-09 00:38:34 t 1 1 159094 623 0.00 2019-11-09 00:39:39 2019-11-09 00:39:42 t 1 1 159096 422 0.00 2019-11-09 00:40:06 2019-11-09 00:40:06 f 1 1 159098 422 0.00 2019-11-09 00:38:56 2019-11-09 00:41:06 t 1 1 159101 514 0.00 2019-11-09 00:41:44 2019-11-09 00:42:45 t 1 1 159106 623 0.00 2019-11-09 00:44:42 2019-11-09 00:44:43 t 1 1 159107 587 0.00 2019-11-09 00:43:31 2019-11-09 00:45:34 t 1 1 159111 551 0.00 2019-11-09 00:42:10 2019-11-09 00:49:37 t 1 1 159113 562 0.00 2019-11-09 00:50:13 2019-11-09 00:50:30 t 1 1 159115 564 0.00 2019-11-08 21:55:00 2019-11-09 00:53:15 t 1 1 159120 623 0.00 2019-11-09 00:59:55 2019-11-09 00:59:56 t 1 1 159121 562 0.00 2019-11-09 01:00:46 2019-11-09 01:01:11 t 1 1 159131 621 0.00 2019-11-09 00:58:57 2019-11-09 01:08:32 t 1 1 159132 538 0.00 2019-11-08 23:39:48 2019-11-09 01:09:17 t 1 1 159138 503 0.00 2019-11-09 01:04:19 2019-11-09 01:17:13 t 1 1 159140 623 0.00 2019-11-09 01:16:49 2019-11-09 01:18:00 t 1 1 159142 621 0.00 2019-11-09 01:13:12 2019-11-09 01:18:48 t 1 1 159147 422 0.00 2019-11-09 01:21:56 2019-11-09 01:22:12 t 1 1 159151 623 0.00 2019-11-09 01:25:16 2019-11-09 01:25:23 t 1 1 159160 609 0.00 2019-11-09 01:18:34 2019-11-09 01:33:26 t 1 1 159165 422 0.00 2019-11-09 01:36:03 2019-11-09 01:36:42 t 1 1 159168 623 0.00 2019-11-09 01:40:28 2019-11-09 01:40:31 t 1 1 159170 622 0.00 2019-11-09 01:00:06 2019-11-09 01:43:38 t 1 1 159172 623 0.00 2019-11-09 01:45:36 2019-11-09 01:45:38 t 1 1 159173 516 0.00 2019-11-09 01:35:06 2019-11-09 01:49:24 t 1 1 159174 599 0.00 2019-11-09 01:47:25 2019-11-09 01:50:38 t 1 1 159175 623 0.00 2019-11-09 01:50:40 2019-11-09 01:51:40 t 1 1 159176 587 0.00 2019-11-09 01:43:42 2019-11-09 01:53:25 t 1 1 159181 422 0.00 2019-11-09 01:44:43 2019-11-09 01:57:55 t 1 1 159185 562 0.00 2019-11-09 02:05:29 2019-11-09 02:05:38 t 1 1 159188 422 0.00 2019-11-09 01:57:55 2019-11-09 02:15:17 t 1 1 159190 562 0.00 2019-11-09 02:16:14 2019-11-09 02:16:27 t 1 1 159192 422 0.00 2019-11-09 02:15:17 2019-11-09 02:21:02 t 1 1 159193 623 0.00 2019-11-09 02:21:16 2019-11-09 02:21:18 t 1 1 159195 422 0.00 2019-11-09 02:21:58 2019-11-09 02:23:00 t 1 1 159201 623 0.00 2019-11-09 02:31:22 2019-11-09 02:31:22 t 1 1 159202 587 0.00 2019-11-09 02:20:58 2019-11-09 02:32:21 t 1 1 159206 562 0.00 2019-11-09 02:37:33 2019-11-09 02:37:59 t 1 1 159207 562 0.00 2019-11-09 02:48:18 2019-11-09 02:48:44 t 1 1 159212 562 0.00 2019-11-09 03:06:44 2019-11-09 03:07:07 t 1 1 159213 562 0.00 2019-11-09 03:17:26 2019-11-09 03:17:59 t 1 1 159215 562 0.00 2019-11-09 03:28:38 2019-11-09 03:28:46 t 1 1 159218 562 0.00 2019-11-09 03:39:21 2019-11-09 03:39:31 t 1 1 159224 623 0.00 2019-11-09 04:00:53 2019-11-09 04:00:55 t 1 1 159226 623 0.00 2019-11-09 04:07:30 2019-11-09 04:07:32 t 1 1 159227 562 0.00 2019-11-09 04:07:53 2019-11-09 04:08:13 t 1 1 159231 562 0.00 2019-11-09 04:18:38 2019-11-09 04:18:58 t 1 1 159232 445 0.00 2019-11-09 00:18:37 2019-11-09 04:20:44 t 1 1 159233 623 0.00 2019-11-09 04:22:42 2019-11-09 04:23:43 t 1 1 159234 562 0.00 2019-11-09 04:26:16 2019-11-09 04:26:38 t 1 1 159236 623 0.00 2019-11-09 04:33:41 2019-11-09 04:37:18 t 1 1 159238 623 0.00 2019-11-09 04:37:42 2019-11-09 04:37:43 t 1 1 159239 623 0.00 2019-11-09 04:38:11 2019-11-09 04:38:23 t 1 1 159240 623 0.00 2019-11-09 04:39:42 2019-11-09 04:39:43 t 1 1 159244 623 0.00 2019-11-09 04:57:39 2019-11-09 04:57:56 t 1 1 159245 623 0.00 2019-11-09 04:58:28 2019-11-09 04:58:31 t 1 1 159246 562 0.00 2019-11-09 04:58:35 2019-11-09 04:59:02 t 1 1 159249 623 0.00 2019-11-09 04:59:40 2019-11-09 04:59:41 t 1 1 159254 623 0.00 2019-11-09 05:08:36 2019-11-09 05:08:38 t 1 1 159255 562 0.00 2019-11-09 05:09:22 2019-11-09 05:09:41 t 1 1 159256 623 0.00 2019-11-09 05:11:38 2019-11-09 05:12:49 t 1 1 159257 623 0.00 2019-11-09 05:13:41 2019-11-09 05:13:41 t 1 1 159260 562 0.00 2019-11-09 05:20:13 2019-11-09 05:20:26 t 1 1 159261 623 0.00 2019-11-09 05:21:30 2019-11-09 05:21:32 t 1 1 159262 562 0.00 2019-11-09 05:23:19 2019-11-09 05:24:19 t 1 1 159264 623 0.00 2019-11-09 05:23:46 2019-11-09 05:24:47 t 1 1 159269 445 0.00 2019-11-09 05:18:07 2019-11-09 05:31:37 t 1 1 159273 623 0.00 2019-11-09 05:39:00 2019-11-09 05:39:01 t 1 1 159279 623 0.00 2019-11-09 05:54:10 2019-11-09 05:54:22 t 1 1 159280 587 0.00 2019-11-09 05:46:10 2019-11-09 05:55:17 t 1 1 159283 623 0.00 2019-11-09 05:57:11 2019-11-09 05:57:17 t 1 1 159285 562 0.00 2019-11-09 06:03:11 2019-11-09 06:03:28 t 1 1 159286 623 0.00 2019-11-09 06:04:21 2019-11-09 06:04:24 t 1 1 159292 562 0.00 2019-11-09 06:14:04 2019-11-09 06:14:15 t 1 1 159294 520 0.00 2019-11-09 06:05:33 2019-11-09 06:15:52 t 1 1 159296 623 0.00 2019-11-09 06:19:32 2019-11-09 06:19:33 t 1 1 159299 623 0.00 2019-11-09 06:24:36 2019-11-09 06:24:37 t 1 1 159305 623 0.00 2019-11-09 06:30:21 2019-11-09 06:30:22 t 1 1 159307 623 0.00 2019-11-09 06:35:26 2019-11-09 06:35:27 t 1 1 159309 562 0.00 2019-11-09 06:35:21 2019-11-09 06:35:48 t 1 1 159310 566 0.00 2019-11-09 06:31:29 2019-11-09 06:39:37 t 1 1 159100 611 0.00 2019-11-09 00:36:13 2019-11-09 00:42:40 t 1 1 159103 587 0.00 2019-11-09 00:37:49 2019-11-09 00:42:56 t 1 1 159109 587 0.00 2019-11-09 00:46:32 2019-11-09 00:46:39 t 1 1 159110 514 0.00 2019-11-09 00:48:13 2019-11-09 00:49:19 t 1 1 159112 623 0.00 2019-11-09 00:49:47 2019-11-09 00:49:49 t 1 1 159119 621 0.00 2019-11-09 00:55:53 2019-11-09 00:58:57 t 1 1 159122 623 0.00 2019-11-09 01:01:35 2019-11-09 01:01:50 t 1 1 159123 637 0.00 2019-11-09 00:55:58 2019-11-09 01:04:57 t 1 1 159124 623 0.00 2019-11-09 01:04:57 2019-11-09 01:05:05 t 1 1 159126 587 0.00 2019-11-09 00:47:48 2019-11-09 01:05:40 t 1 1 159128 587 0.00 2019-11-09 01:06:39 2019-11-09 01:07:30 t 1 1 159129 609 0.00 2019-11-08 22:49:40 2019-11-09 01:08:15 t 1 1 159133 623 0.00 2019-11-09 01:10:03 2019-11-09 01:10:05 t 1 1 159134 562 0.00 2019-11-09 01:11:43 2019-11-09 01:11:53 t 1 1 159135 621 0.00 2019-11-09 01:08:32 2019-11-09 01:13:12 t 1 1 159136 587 0.00 2019-11-09 01:08:07 2019-11-09 01:14:02 t 1 1 159139 587 0.00 2019-11-09 01:14:53 2019-11-09 01:17:59 t 1 1 159144 619 0.00 2019-11-09 01:09:37 2019-11-09 01:19:25 t 1 1 159145 623 0.00 2019-11-09 01:20:10 2019-11-09 01:20:12 t 1 1 159146 422 0.00 2019-11-09 01:21:34 2019-11-09 01:21:50 t 1 1 159148 562 0.00 2019-11-09 01:22:15 2019-11-09 01:22:37 t 1 1 159154 503 0.00 2019-11-09 01:17:13 2019-11-09 01:28:53 t 1 1 159156 570 0.00 2019-11-09 01:22:03 2019-11-09 01:30:09 t 1 1 159157 623 0.00 2019-11-09 01:30:18 2019-11-09 01:30:21 t 1 1 159158 422 0.00 2019-11-09 01:22:46 2019-11-09 01:32:34 t 1 1 159159 562 0.00 2019-11-09 01:33:06 2019-11-09 01:33:24 t 1 1 159162 570 0.00 2019-11-09 01:30:09 2019-11-09 01:35:47 t 1 1 159163 422 0.00 2019-11-09 01:33:48 2019-11-09 01:35:57 t 1 1 159166 538 0.00 2019-11-09 01:28:02 2019-11-09 01:37:10 t 1 1 159167 570 0.00 2019-11-09 01:35:47 2019-11-09 01:39:09 t 1 1 159178 623 0.00 2019-11-09 01:55:51 2019-11-09 01:55:53 t 1 1 159183 587 0.00 2019-11-09 01:57:53 2019-11-09 02:00:56 t 1 1 159186 623 0.00 2019-11-09 02:05:54 2019-11-09 02:05:55 t 1 1 159187 623 0.00 2019-11-09 02:10:56 2019-11-09 02:10:58 t 1 1 159198 623 0.00 2019-11-09 02:27:03 2019-11-09 02:27:04 t 1 1 159200 623 0.00 2019-11-09 02:27:09 2019-11-09 02:27:11 t 1 1 159203 623 0.00 2019-11-09 02:31:23 2019-11-09 02:33:06 t 1 1 159209 562 0.00 2019-11-09 02:55:57 2019-11-09 02:56:23 t 1 1 159210 587 0.00 2019-11-09 02:53:40 2019-11-09 02:58:40 t 1 1 159214 375 0.00 2019-11-08 22:54:05 2019-11-09 03:26:55 t 1 1 159217 587 0.00 2019-11-09 03:34:52 2019-11-09 03:39:22 t 1 1 159221 562 0.00 2019-11-09 03:57:07 2019-11-09 03:57:30 t 1 1 159222 623 0.00 2019-11-09 03:58:31 2019-11-09 04:00:17 t 1 1 159229 587 0.00 2019-11-09 03:47:51 2019-11-09 04:17:19 t 1 1 159230 623 0.00 2019-11-09 04:17:37 2019-11-09 04:17:39 t 1 1 159235 445 0.00 2019-11-09 04:20:51 2019-11-09 04:27:33 t 1 1 159241 562 0.00 2019-11-09 04:47:48 2019-11-09 04:48:09 t 1 1 159247 623 0.00 2019-11-09 04:59:08 2019-11-09 04:59:21 t 1 1 159250 623 0.00 2019-11-09 05:00:32 2019-11-09 05:01:02 t 1 1 159251 623 0.00 2019-11-09 05:02:30 2019-11-09 05:02:40 t 1 1 159252 623 0.00 2019-11-09 05:02:52 2019-11-09 05:03:29 t 1 1 159259 623 0.00 2019-11-09 05:18:43 2019-11-09 05:18:58 t 1 1 159265 587 0.00 2019-11-09 05:24:25 2019-11-09 05:27:55 t 1 1 159267 623 0.00 2019-11-09 05:30:50 2019-11-09 05:30:52 t 1 1 159268 562 0.00 2019-11-09 05:30:57 2019-11-09 05:31:10 t 1 1 159270 623 0.00 2019-11-09 05:33:54 2019-11-09 05:33:55 t 1 1 159271 623 0.00 2019-11-09 05:34:07 2019-11-09 05:34:13 t 1 1 159272 623 0.00 2019-11-09 05:36:43 2019-11-09 05:37:44 t 1 1 159274 562 0.00 2019-11-09 05:41:34 2019-11-09 05:41:56 t 1 1 159276 587 0.00 2019-11-09 05:27:59 2019-11-09 05:44:55 t 1 1 159277 623 0.00 2019-11-09 05:49:08 2019-11-09 05:49:09 t 1 1 159278 562 0.00 2019-11-09 05:52:26 2019-11-09 05:52:41 t 1 1 159288 619 0.00 2019-11-09 06:05:23 2019-11-09 06:07:04 t 1 1 159289 623 0.00 2019-11-09 06:08:52 2019-11-09 06:08:54 t 1 1 159290 623 0.00 2019-11-09 06:09:25 2019-11-09 06:09:26 t 1 1 159291 445 0.00 2019-11-09 05:31:37 2019-11-09 06:12:50 t 1 1 159293 623 0.00 2019-11-09 06:14:30 2019-11-09 06:14:31 t 1 1 159298 520 0.00 2019-11-09 06:15:52 2019-11-09 06:23:48 t 1 1 159301 562 0.00 2019-11-09 06:24:34 2019-11-09 06:24:57 t 1 1 159303 587 0.00 2019-11-09 05:55:57 2019-11-09 06:25:54 t 1 1 159304 645 0.00 2019-11-09 06:26:18 2019-11-09 06:26:20 t 1 1 159308 623 0.00 2019-11-09 06:35:33 2019-11-09 06:35:39 t 1 1 159311 551 0.00 2019-11-09 06:34:26 2019-11-09 06:39:44 t 1 1 159313 623 0.00 2019-11-09 06:38:41 2019-11-09 06:40:36 t 1 1 159315 623 0.00 2019-11-09 06:42:25 2019-11-09 06:42:27 t 1 1 159321 445 0.00 2019-11-09 06:12:49 2019-11-09 06:52:22 t 1 1 159323 623 0.00 2019-11-09 06:55:42 2019-11-09 06:55:42 t 1 1 159326 516 0.00 2019-11-09 06:34:51 2019-11-09 07:00:34 t 1 1 159328 623 0.00 2019-11-09 07:10:39 2019-11-09 07:10:40 t 1 1 159332 570 0.00 2019-11-09 07:10:57 2019-11-09 07:13:07 t 1 1 159333 587 0.00 2019-11-09 06:31:35 2019-11-09 07:14:16 t 1 1 159334 609 0.00 2019-11-09 06:43:19 2019-11-09 07:14:52 t 1 1 159335 623 0.00 2019-11-09 07:15:54 2019-11-09 07:15:55 t 1 1 159336 637 0.00 2019-11-09 06:31:25 2019-11-09 07:16:26 t 1 1 159337 562 0.00 2019-11-09 07:02:09 2019-11-09 07:17:43 t 1 1 159338 637 0.00 2019-11-09 07:16:26 2019-11-09 07:20:44 t 1 1 159339 623 0.00 2019-11-09 07:21:00 2019-11-09 07:21:11 t 1 1 159340 623 0.00 2019-11-09 07:21:23 2019-11-09 07:21:24 t 1 1 159341 637 0.00 2019-11-09 07:20:44 2019-11-09 07:22:13 t 1 1 159342 562 0.00 2019-11-09 07:17:43 2019-11-09 07:25:07 t 1 1 159343 587 0.00 2019-11-09 07:14:16 2019-11-09 07:25:11 t 1 1 159344 623 0.00 2019-11-09 07:26:04 2019-11-09 07:26:05 t 1 1 159345 412 0.00 2019-11-09 01:20:01 2019-11-09 07:26:14 t 1 1 159346 597 0.00 2019-11-09 07:16:54 2019-11-09 07:27:56 t 1 1 159347 562 0.00 2019-11-09 07:25:07 2019-11-09 07:29:08 t 1 1 159348 609 0.00 2019-11-09 07:14:52 2019-11-09 07:29:13 t 1 1 159349 623 0.00 2019-11-09 07:31:08 2019-11-09 07:31:08 t 1 1 159350 645 0.00 2019-11-09 07:26:56 2019-11-09 07:32:32 t 1 1 159351 562 0.00 2019-11-09 07:30:48 2019-11-09 07:35:15 t 1 1 159352 637 0.00 2019-11-09 07:22:47 2019-11-09 07:37:38 t 1 1 159353 562 0.00 2019-11-09 07:35:15 2019-11-09 07:39:47 t 1 1 159354 562 0.00 2019-11-09 07:39:47 2019-11-09 07:41:37 t 1 1 159355 623 0.00 2019-11-09 07:41:38 2019-11-09 07:42:08 t 1 1 159356 623 0.00 2019-11-09 07:42:19 2019-11-09 07:42:24 t 1 1 159357 538 0.00 2019-11-09 07:29:24 2019-11-09 07:44:08 t 1 1 159358 562 0.00 2019-11-09 07:45:25 2019-11-09 07:45:50 t 1 1 159359 562 0.00 2019-11-09 07:46:03 2019-11-09 07:46:28 t 1 1 159360 562 0.00 2019-11-09 07:46:34 2019-11-09 07:46:38 t 1 1 159363 562 0.00 2019-11-09 07:47:49 2019-11-09 07:48:10 t 1 1 159365 481 0.00 2019-11-09 07:46:13 2019-11-09 07:50:30 t 1 1 159370 412 0.00 2019-11-09 07:26:14 2019-11-09 07:54:08 t 1 1 159373 516 0.00 2019-11-09 07:51:41 2019-11-09 07:57:13 t 1 1 159380 568 0.00 2019-11-09 07:55:53 2019-11-09 08:02:58 t 1 1 159386 566 0.00 2019-11-09 06:39:37 2019-11-09 08:07:33 t 1 1 159388 597 0.00 2019-11-09 07:30:39 2019-11-09 08:08:54 t 1 1 159390 591 0.00 2019-11-09 08:05:23 2019-11-09 08:10:56 t 1 1 159392 609 0.00 2019-11-09 07:29:13 2019-11-09 08:13:35 t 1 1 159395 562 0.00 2019-11-09 08:15:32 2019-11-09 08:16:25 t 1 1 159400 623 0.00 2019-11-09 08:17:34 2019-11-09 08:17:35 t 1 1 159402 623 0.00 2019-11-09 08:17:52 2019-11-09 08:18:09 t 1 1 159407 597 0.00 2019-11-09 08:18:20 2019-11-09 08:19:54 t 1 1 159408 562 0.00 2019-11-09 08:22:00 2019-11-09 08:23:19 t 1 1 159410 615 0.00 2019-11-09 08:19:40 2019-11-09 08:26:08 t 1 1 159411 597 0.00 2019-11-09 08:23:08 2019-11-09 08:26:54 t 1 1 159414 623 0.00 2019-11-09 08:27:35 2019-11-09 08:27:36 t 1 1 159418 481 0.00 2019-11-09 08:18:47 2019-11-09 08:28:47 t 1 1 159419 623 0.00 2019-11-09 08:29:06 2019-11-09 08:29:07 t 1 1 159424 623 0.00 2019-11-09 08:30:25 2019-11-09 08:30:32 t 1 1 159430 623 0.00 2019-11-09 08:31:47 2019-11-09 08:31:53 t 1 1 159433 623 0.00 2019-11-09 08:33:06 2019-11-09 08:33:26 t 1 1 159443 623 0.00 2019-11-09 08:36:13 2019-11-09 08:36:30 t 1 1 159447 623 0.00 2019-11-09 08:37:44 2019-11-09 08:37:51 t 1 1 159448 623 0.00 2019-11-09 08:38:03 2019-11-09 08:38:05 t 1 1 159455 623 0.00 2019-11-09 08:39:37 2019-11-09 08:39:41 t 1 1 159461 623 0.00 2019-11-09 08:43:40 2019-11-09 08:43:46 t 1 1 159462 623 0.00 2019-11-09 08:43:59 2019-11-09 08:44:01 t 1 1 159465 623 0.00 2019-11-09 08:44:47 2019-11-09 08:45:00 t 1 1 159469 456 0.00 2019-11-09 07:56:09 2019-11-09 08:46:29 t 1 1 159471 562 0.00 2019-11-09 08:46:26 2019-11-09 08:46:52 t 1 1 159481 615 0.00 2019-11-09 08:37:17 2019-11-09 08:51:39 t 1 1 159483 623 0.00 2019-11-09 08:52:08 2019-11-09 08:52:15 t 1 1 159485 514 0.00 2019-11-09 08:52:35 2019-11-09 08:53:38 t 1 1 159487 416 0.00 2019-11-08 21:10:42 2019-11-09 08:54:24 t 1 1 159489 623 0.00 2019-11-09 08:52:20 2019-11-09 08:54:54 t 1 1 159491 585 0.00 2019-11-09 08:51:55 2019-11-09 08:55:24 t 1 1 159492 623 0.00 2019-11-09 08:55:24 2019-11-09 08:56:02 t 1 1 159495 623 0.00 2019-11-09 08:56:29 2019-11-09 08:56:35 t 1 1 159499 623 0.00 2019-11-09 08:57:41 2019-11-09 08:57:48 t 1 1 159506 623 0.00 2019-11-09 08:59:07 2019-11-09 08:59:14 t 1 1 159508 623 0.00 2019-11-09 08:59:56 2019-11-09 08:59:58 t 1 1 159511 623 0.00 2019-11-09 09:00:17 2019-11-09 09:00:19 t 1 1 159515 623 0.00 2019-11-09 09:01:29 2019-11-09 09:01:31 t 1 1 159517 623 0.00 2019-11-09 09:01:59 2019-11-09 09:02:06 t 1 1 159522 623 0.00 2019-11-09 09:02:38 2019-11-09 09:02:44 t 1 1 159523 635 0.00 2019-11-09 08:51:23 2019-11-09 09:02:57 t 1 1 159525 623 0.00 2019-11-09 09:03:42 2019-11-09 09:03:47 t 1 1 159526 623 0.00 2019-11-09 09:04:05 2019-11-09 09:04:14 t 1 1 159528 623 0.00 2019-11-09 09:04:34 2019-11-09 09:04:40 t 1 1 159531 623 0.00 2019-11-09 09:05:19 2019-11-09 09:05:21 t 1 1 159532 623 0.00 2019-11-09 09:05:38 2019-11-09 09:05:38 f 1 1 159533 623 0.00 2019-11-09 09:05:58 2019-11-09 09:05:58 f 1 1 159535 578 0.00 2019-11-09 09:02:22 2019-11-09 09:07:07 t 1 1 159542 597 0.00 2019-11-09 09:11:36 2019-11-09 09:14:27 t 1 1 159544 587 0.00 2019-11-09 09:05:19 2019-11-09 09:17:17 t 1 1 159546 645 0.00 2019-11-09 09:16:19 2019-11-09 09:19:26 t 1 1 159553 587 0.00 2019-11-09 09:17:56 2019-11-09 09:30:24 t 1 1 159556 645 0.00 2019-11-09 09:35:20 2019-11-09 09:39:23 t 1 1 159558 562 0.00 2019-11-09 09:37:36 2019-11-09 09:40:48 t 1 1 159564 645 0.00 2019-11-09 09:44:08 2019-11-09 09:45:32 t 1 1 159567 587 0.00 2019-11-09 09:42:38 2019-11-09 09:50:08 t 1 1 159572 591 0.00 2019-11-09 09:44:17 2019-11-09 09:54:45 t 1 1 159576 562 0.00 2019-11-09 09:57:08 2019-11-09 09:57:18 t 1 1 159580 623 0.00 2019-11-09 10:04:09 2019-11-09 10:04:16 t 1 1 159583 623 0.00 2019-11-09 10:04:52 2019-11-09 10:04:52 f 1 1 159587 587 0.00 2019-11-09 10:01:19 2019-11-09 10:06:34 t 1 1 159588 581 0.00 2019-11-09 09:55:50 2019-11-09 10:07:07 t 1 1 159592 520 0.00 2019-11-09 10:08:07 2019-11-09 10:10:42 t 1 1 159594 422 0.00 2019-11-09 10:11:17 2019-11-09 10:11:58 t 1 1 159596 625 0.00 2019-11-09 09:42:49 2019-11-09 10:16:42 t 1 1 159599 562 0.00 2019-11-09 10:18:19 2019-11-09 10:18:40 t 1 1 159601 607 0.00 2019-11-09 09:23:13 2019-11-09 10:20:38 t 1 1 159602 416 0.00 2019-11-09 10:19:22 2019-11-09 10:21:01 t 1 1 159607 591 0.00 2019-11-09 09:54:45 2019-11-09 10:24:10 t 1 1 159610 422 0.00 2019-11-09 10:24:30 2019-11-09 10:24:44 t 1 1 159611 416 0.00 2019-11-09 10:21:07 2019-11-09 10:27:20 t 1 1 159612 422 0.00 2019-11-09 10:25:28 2019-11-09 10:28:14 t 1 1 159614 591 0.00 2019-11-09 10:24:10 2019-11-09 10:28:30 t 1 1 159616 625 0.00 2019-11-09 10:16:41 2019-11-09 10:30:09 t 1 1 159619 416 0.00 2019-11-09 10:27:44 2019-11-09 10:33:49 t 1 1 159625 516 0.00 2019-11-09 10:37:07 2019-11-09 10:39:16 t 1 1 159628 445 0.00 2019-11-09 06:53:11 2019-11-09 10:41:32 t 1 1 159629 562 0.00 2019-11-09 10:35:55 2019-11-09 10:42:41 t 1 1 159630 625 0.00 2019-11-09 10:35:25 2019-11-09 10:42:50 t 1 1 159632 637 0.00 2019-11-09 10:19:36 2019-11-09 10:42:59 t 1 1 159633 625 0.00 2019-11-09 10:42:50 2019-11-09 10:43:12 t 1 1 159635 568 0.00 2019-11-09 10:42:48 2019-11-09 10:44:00 t 1 1 159636 625 0.00 2019-11-09 10:43:11 2019-11-09 10:44:36 t 1 1 159639 562 0.00 2019-11-09 10:44:04 2019-11-09 10:46:03 t 1 1 159645 562 0.00 2019-11-09 10:46:19 2019-11-09 10:49:25 t 1 1 159647 623 0.00 2019-11-09 10:50:08 2019-11-09 10:50:11 t 1 1 159654 422 0.00 2019-11-09 10:48:47 2019-11-09 10:54:48 t 1 1 159660 623 0.00 2019-11-09 10:54:18 2019-11-09 10:57:37 t 1 1 159661 623 0.00 2019-11-09 10:57:42 2019-11-09 10:57:45 t 1 1 159663 422 0.00 2019-11-09 10:56:19 2019-11-09 10:58:01 t 1 1 159670 625 0.00 2019-11-09 11:02:06 2019-11-09 11:02:14 t 1 1 159672 625 0.00 2019-11-09 11:02:14 2019-11-09 11:02:23 t 1 1 159673 625 0.00 2019-11-09 11:02:50 2019-11-09 11:02:50 f 1 1 159682 422 0.00 2019-11-09 11:06:40 2019-11-09 11:07:49 t 1 1 159685 623 0.00 2019-11-09 11:08:58 2019-11-09 11:09:01 t 1 1 159687 623 0.00 2019-11-09 11:11:47 2019-11-09 11:11:57 t 1 1 159690 422 0.00 2019-11-09 11:09:05 2019-11-09 11:13:40 t 1 1 159693 554 0.00 2019-11-09 11:08:30 2019-11-09 11:14:38 t 1 1 159699 554 0.00 2019-11-09 11:14:37 2019-11-09 11:19:45 t 1 1 159703 520 0.00 2019-11-09 11:16:11 2019-11-09 11:20:41 t 1 1 159361 623 0.00 2019-11-09 07:46:43 2019-11-09 07:46:48 t 1 1 159364 551 0.00 2019-11-09 07:47:06 2019-11-09 07:49:11 t 1 1 159366 591 0.00 2019-11-09 07:40:31 2019-11-09 07:50:56 t 1 1 159367 595 0.00 2019-11-09 07:50:00 2019-11-09 07:51:26 t 1 1 159369 456 0.00 2019-11-09 07:47:17 2019-11-09 07:52:46 t 1 1 159371 587 0.00 2019-11-09 07:27:28 2019-11-09 07:54:16 t 1 1 159375 623 0.00 2019-11-09 07:56:42 2019-11-09 07:58:04 t 1 1 159377 562 0.00 2019-11-09 07:57:56 2019-11-09 07:58:17 t 1 1 159381 637 0.00 2019-11-09 08:02:04 2019-11-09 08:03:59 t 1 1 159382 562 0.00 2019-11-09 08:02:03 2019-11-09 08:04:45 t 1 1 159384 562 0.00 2019-11-09 08:05:16 2019-11-09 08:05:29 t 1 1 159387 645 0.00 2019-11-09 08:04:18 2019-11-09 08:08:07 t 1 1 159393 562 0.00 2019-11-09 08:14:57 2019-11-09 08:15:07 t 1 1 159394 623 0.00 2019-11-09 08:10:26 2019-11-09 08:16:20 t 1 1 159396 623 0.00 2019-11-09 08:16:32 2019-11-09 08:16:39 t 1 1 159398 623 0.00 2019-11-09 08:17:09 2019-11-09 08:17:10 t 1 1 159401 623 0.00 2019-11-09 08:17:41 2019-11-09 08:17:47 t 1 1 159403 623 0.00 2019-11-09 08:18:09 2019-11-09 08:18:15 t 1 1 159404 623 0.00 2019-11-09 08:18:28 2019-11-09 08:18:29 t 1 1 159405 481 0.00 2019-11-09 08:01:49 2019-11-09 08:18:47 t 1 1 159412 623 0.00 2019-11-09 08:18:34 2019-11-09 08:27:13 t 1 1 159415 623 0.00 2019-11-09 08:27:41 2019-11-09 08:27:47 t 1 1 159416 623 0.00 2019-11-09 08:27:52 2019-11-09 08:27:58 t 1 1 159420 623 0.00 2019-11-09 08:29:13 2019-11-09 08:29:14 t 1 1 159422 623 0.00 2019-11-09 08:29:59 2019-11-09 08:30:06 t 1 1 159425 623 0.00 2019-11-09 08:30:37 2019-11-09 08:30:53 t 1 1 159426 562 0.00 2019-11-09 08:26:46 2019-11-09 08:31:09 t 1 1 159428 623 0.00 2019-11-09 08:31:14 2019-11-09 08:31:20 t 1 1 159437 623 0.00 2019-11-09 08:34:16 2019-11-09 08:35:14 t 1 1 159439 591 0.00 2019-11-09 08:18:14 2019-11-09 08:35:49 t 1 1 159440 623 0.00 2019-11-09 08:35:55 2019-11-09 08:35:56 t 1 1 159444 623 0.00 2019-11-09 08:36:50 2019-11-09 08:36:56 t 1 1 159449 623 0.00 2019-11-09 08:38:10 2019-11-09 08:38:12 t 1 1 159451 623 0.00 2019-11-09 08:38:47 2019-11-09 08:39:00 t 1 1 159453 623 0.00 2019-11-09 08:39:11 2019-11-09 08:39:18 t 1 1 159456 481 0.00 2019-11-09 08:28:47 2019-11-09 08:39:42 t 1 1 159458 623 0.00 2019-11-09 08:42:12 2019-11-09 08:42:23 t 1 1 159459 623 0.00 2019-11-09 08:42:53 2019-11-09 08:43:08 t 1 1 159463 623 0.00 2019-11-09 08:44:06 2019-11-09 08:44:12 t 1 1 159464 623 0.00 2019-11-09 08:44:31 2019-11-09 08:44:42 t 1 1 159466 591 0.00 2019-11-09 08:35:49 2019-11-09 08:45:25 t 1 1 159472 623 0.00 2019-11-09 08:45:17 2019-11-09 08:47:38 t 1 1 159477 220 0.00 2019-11-09 08:49:51 2019-11-09 08:49:53 t 1 1 159478 587 0.00 2019-11-09 08:46:50 2019-11-09 08:50:36 t 1 1 159480 597 0.00 2019-11-09 08:47:51 2019-11-09 08:51:34 t 1 1 159482 623 0.00 2019-11-09 08:51:42 2019-11-09 08:51:47 t 1 1 159484 538 0.00 2019-11-09 08:45:48 2019-11-09 08:53:33 t 1 1 159490 623 0.00 2019-11-09 08:55:12 2019-11-09 08:55:19 t 1 1 159493 623 0.00 2019-11-09 08:56:15 2019-11-09 08:56:17 t 1 1 159496 623 0.00 2019-11-09 08:56:47 2019-11-09 08:56:49 t 1 1 159497 623 0.00 2019-11-09 08:56:54 2019-11-09 08:57:00 t 1 1 159501 623 0.00 2019-11-09 08:58:08 2019-11-09 08:58:13 t 1 1 159503 623 0.00 2019-11-09 08:58:31 2019-11-09 08:58:37 t 1 1 159505 562 0.00 2019-11-09 08:59:00 2019-11-09 08:59:08 t 1 1 159507 623 0.00 2019-11-09 08:59:31 2019-11-09 08:59:38 t 1 1 159509 623 0.00 2019-11-09 09:00:03 2019-11-09 09:00:05 t 1 1 159512 587 0.00 2019-11-09 08:54:33 2019-11-09 09:00:25 t 1 1 159516 623 0.00 2019-11-09 09:01:36 2019-11-09 09:01:41 t 1 1 159519 578 0.00 2019-11-08 23:19:50 2019-11-09 09:02:22 t 1 1 159520 623 0.00 2019-11-09 09:02:24 2019-11-09 09:02:26 t 1 1 159530 623 0.00 2019-11-09 09:04:53 2019-11-09 09:05:06 t 1 1 159541 591 0.00 2019-11-09 09:12:28 2019-11-09 09:14:22 t 1 1 159543 562 0.00 2019-11-09 09:15:54 2019-11-09 09:16:18 t 1 1 159548 615 0.00 2019-11-09 09:21:43 2019-11-09 09:24:23 t 1 1 159550 581 0.00 2019-11-09 09:24:54 2019-11-09 09:27:42 t 1 1 159551 597 0.00 2019-11-09 09:19:37 2019-11-09 09:28:53 t 1 1 159555 562 0.00 2019-11-09 09:35:51 2019-11-09 09:37:29 t 1 1 159560 645 0.00 2019-11-09 09:40:46 2019-11-09 09:42:36 t 1 1 159561 538 0.00 2019-11-09 09:29:39 2019-11-09 09:43:04 t 1 1 159562 591 0.00 2019-11-09 09:25:55 2019-11-09 09:44:17 t 1 1 159568 516 0.00 2019-11-09 09:44:59 2019-11-09 09:50:50 t 1 1 159569 587 0.00 2019-11-09 09:50:13 2019-11-09 09:51:10 t 1 1 159571 645 0.00 2019-11-09 09:52:15 2019-11-09 09:54:17 t 1 1 159573 581 0.00 2019-11-09 09:47:06 2019-11-09 09:54:54 t 1 1 159574 587 0.00 2019-11-09 09:51:09 2019-11-09 09:55:01 t 1 1 159577 637 0.00 2019-11-09 08:13:15 2019-11-09 09:58:18 t 1 1 159585 623 0.00 2019-11-09 10:00:45 2019-11-09 10:05:05 t 1 1 159586 623 0.00 2019-11-09 10:04:27 2019-11-09 10:06:07 t 1 1 159589 587 0.00 2019-11-09 10:06:48 2019-11-09 10:08:52 t 1 1 159591 587 0.00 2019-11-09 10:09:04 2019-11-09 10:10:17 t 1 1 159598 637 0.00 2019-11-09 09:58:18 2019-11-09 10:18:25 t 1 1 159604 554 0.00 2019-11-09 10:21:36 2019-11-09 10:23:17 t 1 1 159606 607 0.00 2019-11-09 10:20:38 2019-11-09 10:23:48 t 1 1 159608 422 0.00 2019-11-09 10:20:05 2019-11-09 10:24:22 t 1 1 159613 570 0.00 2019-11-09 10:11:09 2019-11-09 10:28:23 t 1 1 159615 645 0.00 2019-11-09 10:28:17 2019-11-09 10:29:56 t 1 1 159618 625 0.00 2019-11-09 10:30:09 2019-11-09 10:33:47 t 1 1 159620 619 0.00 2019-11-09 10:32:17 2019-11-09 10:34:03 t 1 1 159621 607 0.00 2019-11-09 10:23:48 2019-11-09 10:34:59 t 1 1 159622 615 0.00 2019-11-09 10:22:37 2019-11-09 10:35:50 t 1 1 159624 564 0.00 2019-11-09 10:32:22 2019-11-09 10:37:35 t 1 1 159626 422 0.00 2019-11-09 10:31:24 2019-11-09 10:39:54 t 1 1 159627 591 0.00 2019-11-09 10:37:37 2019-11-09 10:40:14 t 1 1 159640 585 0.00 2019-11-09 10:45:21 2019-11-09 10:46:46 t 1 1 159641 422 0.00 2019-11-09 10:45:23 2019-11-09 10:47:25 t 1 1 159642 625 0.00 2019-11-09 10:44:36 2019-11-09 10:47:57 t 1 1 159646 625 0.00 2019-11-09 10:47:57 2019-11-09 10:49:26 t 1 1 159648 615 0.00 2019-11-09 10:45:16 2019-11-09 10:50:22 t 1 1 159650 445 0.00 2019-11-09 10:50:22 2019-11-09 10:51:48 t 1 1 159651 623 0.00 2019-11-09 10:52:00 2019-11-09 10:52:03 t 1 1 159653 562 0.00 2019-11-09 10:51:07 2019-11-09 10:53:49 t 1 1 159656 615 0.00 2019-11-09 10:50:22 2019-11-09 10:55:22 t 1 1 159662 562 0.00 2019-11-09 10:54:13 2019-11-09 10:57:58 t 1 1 159665 554 0.00 2019-11-09 10:24:25 2019-11-09 10:59:18 t 1 1 159666 516 0.00 2019-11-09 10:49:22 2019-11-09 11:00:21 t 1 1 159667 625 0.00 2019-11-09 10:49:25 2019-11-09 11:01:04 t 1 1 159674 422 0.00 2019-11-09 10:58:10 2019-11-09 11:03:03 t 1 1 159362 551 0.00 2019-11-09 06:48:30 2019-11-09 07:47:06 t 1 1 159368 623 0.00 2019-11-09 07:51:53 2019-11-09 07:52:20 t 1 1 159372 585 0.00 2019-11-09 07:51:42 2019-11-09 07:54:26 t 1 1 159374 538 0.00 2019-11-09 07:52:49 2019-11-09 07:57:25 t 1 1 159376 623 0.00 2019-11-09 07:58:09 2019-11-09 07:58:14 t 1 1 159378 637 0.00 2019-11-09 07:37:38 2019-11-09 08:00:06 t 1 1 159379 481 0.00 2019-11-09 07:50:30 2019-11-09 08:01:49 t 1 1 159383 591 0.00 2019-11-09 07:50:56 2019-11-09 08:05:24 t 1 1 159385 538 0.00 2019-11-09 07:57:53 2019-11-09 08:06:26 t 1 1 159389 623 0.00 2019-11-09 07:58:20 2019-11-09 08:10:26 t 1 1 159391 637 0.00 2019-11-09 08:04:39 2019-11-09 08:13:07 t 1 1 159397 623 0.00 2019-11-09 08:16:50 2019-11-09 08:16:56 t 1 1 159399 623 0.00 2019-11-09 08:17:16 2019-11-09 08:17:21 t 1 1 159406 615 0.00 2019-11-09 08:17:02 2019-11-09 08:19:40 t 1 1 159409 619 0.00 2019-11-09 08:22:03 2019-11-09 08:23:30 t 1 1 159413 623 0.00 2019-11-09 08:27:26 2019-11-09 08:27:27 t 1 1 159417 623 0.00 2019-11-09 08:28:16 2019-11-09 08:28:46 t 1 1 159421 623 0.00 2019-11-09 08:29:20 2019-11-09 08:29:54 t 1 1 159423 623 0.00 2019-11-09 08:30:19 2019-11-09 08:30:20 t 1 1 159427 623 0.00 2019-11-09 08:30:58 2019-11-09 08:31:14 t 1 1 159429 623 0.00 2019-11-09 08:31:33 2019-11-09 08:31:34 t 1 1 159431 623 0.00 2019-11-09 08:32:14 2019-11-09 08:33:01 t 1 1 159432 623 0.00 2019-11-09 08:33:19 2019-11-09 08:33:20 t 1 1 159434 623 0.00 2019-11-09 08:33:26 2019-11-09 08:33:37 t 1 1 159435 623 0.00 2019-11-09 08:33:53 2019-11-09 08:33:54 t 1 1 159436 623 0.00 2019-11-09 08:34:06 2019-11-09 08:34:11 t 1 1 159438 623 0.00 2019-11-09 08:35:34 2019-11-09 08:35:42 t 1 1 159441 587 0.00 2019-11-09 07:54:16 2019-11-09 08:36:00 t 1 1 159442 623 0.00 2019-11-09 08:36:01 2019-11-09 08:36:08 t 1 1 159445 615 0.00 2019-11-09 08:26:08 2019-11-09 08:37:17 t 1 1 159446 623 0.00 2019-11-09 08:37:18 2019-11-09 08:37:24 t 1 1 159450 623 0.00 2019-11-09 08:38:17 2019-11-09 08:38:19 t 1 1 159452 562 0.00 2019-11-09 08:38:54 2019-11-09 08:39:14 t 1 1 159454 623 0.00 2019-11-09 08:39:31 2019-11-09 08:39:32 t 1 1 159457 623 0.00 2019-11-09 08:39:46 2019-11-09 08:39:47 t 1 1 159460 623 0.00 2019-11-09 08:43:22 2019-11-09 08:43:23 t 1 1 159467 538 0.00 2019-11-09 08:33:41 2019-11-09 08:45:32 t 1 1 159468 623 0.00 2019-11-09 08:44:25 2019-11-09 08:46:07 t 1 1 159470 587 0.00 2019-11-09 08:36:00 2019-11-09 08:46:47 t 1 1 159473 623 0.00 2019-11-09 08:47:43 2019-11-09 08:47:48 t 1 1 159474 591 0.00 2019-11-09 08:45:25 2019-11-09 08:47:59 t 1 1 159475 623 0.00 2019-11-09 08:48:01 2019-11-09 08:49:28 t 1 1 159476 220 0.00 2019-11-09 07:07:16 2019-11-09 08:49:52 t 1 1 159479 623 0.00 2019-11-09 08:49:35 2019-11-09 08:51:31 t 1 1 159486 562 0.00 2019-11-09 08:51:08 2019-11-09 08:53:51 t 1 1 159488 587 0.00 2019-11-09 08:50:39 2019-11-09 08:54:28 t 1 1 159494 623 0.00 2019-11-09 08:56:22 2019-11-09 08:56:24 t 1 1 159498 623 0.00 2019-11-09 08:57:18 2019-11-09 08:57:23 t 1 1 159500 607 0.00 2019-11-09 08:58:13 2019-11-09 08:58:13 f 1 1 159502 607 0.00 2019-11-09 08:41:26 2019-11-09 08:58:33 t 1 1 159504 623 0.00 2019-11-09 08:58:42 2019-11-09 08:58:49 t 1 1 159510 623 0.00 2019-11-09 09:00:10 2019-11-09 09:00:12 t 1 1 159513 623 0.00 2019-11-09 09:00:24 2019-11-09 09:00:31 t 1 1 159514 623 0.00 2019-11-09 09:00:44 2019-11-09 09:01:18 t 1 1 159518 562 0.00 2019-11-09 09:02:00 2019-11-09 09:02:15 t 1 1 159521 623 0.00 2019-11-09 09:02:31 2019-11-09 09:02:33 t 1 1 159524 623 0.00 2019-11-09 09:02:57 2019-11-09 09:03:31 t 1 1 159527 591 0.00 2019-11-09 08:53:30 2019-11-09 09:04:32 t 1 1 159529 587 0.00 2019-11-09 09:00:25 2019-11-09 09:05:01 t 1 1 159534 623 0.00 2019-11-09 09:05:26 2019-11-09 09:06:26 t 1 1 159536 623 0.00 2019-11-09 09:05:13 2019-11-09 09:07:07 t 1 1 159537 562 0.00 2019-11-09 09:07:53 2019-11-09 09:08:18 t 1 1 159538 645 0.00 2019-11-09 09:10:10 2019-11-09 09:10:18 t 1 1 159539 562 0.00 2019-11-09 09:10:22 2019-11-09 09:11:26 t 1 1 159540 516 0.00 2019-11-09 09:09:55 2019-11-09 09:12:05 t 1 1 159545 562 0.00 2019-11-09 09:16:53 2019-11-09 09:17:52 t 1 1 159547 516 0.00 2019-11-09 09:18:13 2019-11-09 09:20:55 t 1 1 159549 562 0.00 2019-11-09 09:24:52 2019-11-09 09:25:22 t 1 1 159552 581 0.00 2019-11-09 09:28:07 2019-11-09 09:28:57 t 1 1 159554 562 0.00 2019-11-09 09:31:35 2019-11-09 09:31:45 t 1 1 159557 645 0.00 2019-11-09 09:40:33 2019-11-09 09:40:39 t 1 1 159559 587 0.00 2019-11-09 09:30:40 2019-11-09 09:42:25 t 1 1 159563 538 0.00 2019-11-09 09:43:04 2019-11-09 09:44:31 t 1 1 159565 514 0.00 2019-11-09 09:44:31 2019-11-09 09:45:35 t 1 1 159566 562 0.00 2019-11-09 09:42:37 2019-11-09 09:49:00 t 1 1 159570 635 0.00 2019-11-09 09:41:24 2019-11-09 09:54:10 t 1 1 159575 562 0.00 2019-11-09 09:49:11 2019-11-09 09:55:48 t 1 1 159578 587 0.00 2019-11-09 09:55:04 2019-11-09 10:01:16 t 1 1 159579 516 0.00 2019-11-09 09:59:28 2019-11-09 10:04:07 t 1 1 159581 562 0.00 2019-11-09 10:04:01 2019-11-09 10:04:26 t 1 1 159582 623 0.00 2019-11-09 10:04:40 2019-11-09 10:04:40 f 1 1 159584 623 0.00 2019-11-09 10:05:00 2019-11-09 10:05:00 f 1 1 159590 645 0.00 2019-11-09 10:07:56 2019-11-09 10:09:00 t 1 1 159593 562 0.00 2019-11-09 10:07:24 2019-11-09 10:10:53 t 1 1 159595 422 0.00 2019-11-09 10:14:34 2019-11-09 10:14:56 t 1 1 159597 516 0.00 2019-11-09 10:05:27 2019-11-09 10:16:53 t 1 1 159600 416 0.00 2019-11-09 08:55:00 2019-11-09 10:20:02 t 1 1 159603 562 0.00 2019-11-09 10:18:56 2019-11-09 10:22:37 t 1 1 159605 554 0.00 2019-11-09 10:23:16 2019-11-09 10:23:33 t 1 1 159609 554 0.00 2019-11-09 10:23:33 2019-11-09 10:24:26 t 1 1 159617 562 0.00 2019-11-09 10:24:06 2019-11-09 10:33:28 t 1 1 159623 578 0.00 2019-11-09 09:49:09 2019-11-09 10:37:25 t 1 1 159631 623 0.00 2019-11-09 10:39:34 2019-11-09 10:42:56 t 1 1 159634 585 0.00 2019-11-09 10:37:55 2019-11-09 10:43:31 t 1 1 159637 422 0.00 2019-11-09 10:40:18 2019-11-09 10:44:52 t 1 1 159638 615 0.00 2019-11-09 10:38:30 2019-11-09 10:45:16 t 1 1 159643 422 0.00 2019-11-09 10:47:47 2019-11-09 10:48:05 t 1 1 159644 623 0.00 2019-11-09 10:46:53 2019-11-09 10:49:01 t 1 1 159649 445 0.00 2019-11-09 10:42:22 2019-11-09 10:50:22 t 1 1 159652 591 0.00 2019-11-09 10:50:53 2019-11-09 10:53:10 t 1 1 159655 422 0.00 2019-11-09 10:55:07 2019-11-09 10:55:20 t 1 1 159657 422 0.00 2019-11-09 10:55:28 2019-11-09 10:55:42 t 1 1 159658 422 0.00 2019-11-09 10:55:57 2019-11-09 10:56:00 t 1 1 159659 379 0.00 2019-11-09 09:28:55 2019-11-09 10:57:03 t 1 1 159664 623 0.00 2019-11-09 10:58:42 2019-11-09 10:59:13 t 1 1 159668 623 0.00 2019-11-09 11:01:17 2019-11-09 11:01:27 t 1 1 159669 625 0.00 2019-11-09 11:01:03 2019-11-09 11:02:06 t 1 1 159671 562 0.00 2019-11-09 10:59:27 2019-11-09 11:02:17 t 1 1 159675 625 0.00 2019-11-09 11:03:06 2019-11-09 11:03:06 f 1 1 159676 623 0.00 2019-11-09 11:03:09 2019-11-09 11:03:19 t 1 1 159680 416 0.00 2019-11-09 10:38:14 2019-11-09 11:04:41 t 1 1 159683 422 0.00 2019-11-09 11:08:08 2019-11-09 11:08:14 t 1 1 159688 520 0.00 2019-11-09 10:59:51 2019-11-09 11:12:26 t 1 1 159689 538 0.00 2019-11-09 11:08:08 2019-11-09 11:13:00 t 1 1 159692 562 0.00 2019-11-09 11:04:10 2019-11-09 11:14:29 t 1 1 159694 623 0.00 2019-11-09 11:14:11 2019-11-09 11:15:41 t 1 1 159695 520 0.00 2019-11-09 11:12:52 2019-11-09 11:16:11 t 1 1 159697 623 0.00 2019-11-09 11:16:41 2019-11-09 11:16:44 t 1 1 159698 416 0.00 2019-11-09 11:07:05 2019-11-09 11:19:43 t 1 1 159701 445 0.00 2019-11-09 10:57:42 2019-11-09 11:20:32 t 1 1 159704 422 0.00 2019-11-09 11:17:33 2019-11-09 11:20:51 t 1 1 159706 622 0.00 2019-11-09 11:04:07 2019-11-09 11:24:36 t 1 1 159708 422 0.00 2019-11-09 11:24:44 2019-11-09 11:24:57 t 1 1 159713 637 0.00 2019-11-09 11:09:39 2019-11-09 11:26:44 t 1 1 159715 562 0.00 2019-11-09 11:26:28 2019-11-09 11:29:27 t 1 1 159718 422 0.00 2019-11-09 11:33:10 2019-11-09 11:33:48 t 1 1 159721 422 0.00 2019-11-09 11:34:18 2019-11-09 11:35:05 t 1 1 159734 645 0.00 2019-11-09 11:40:52 2019-11-09 11:42:18 t 1 1 159740 623 0.00 2019-11-09 11:45:39 2019-11-09 11:45:40 t 1 1 159744 445 0.00 2019-11-09 11:44:31 2019-11-09 11:48:58 t 1 1 159746 528 0.00 2019-11-09 11:47:34 2019-11-09 11:49:37 t 1 1 159748 422 0.00 2019-11-09 11:49:57 2019-11-09 11:50:35 t 1 1 159751 562 0.00 2019-11-09 11:50:06 2019-11-09 11:52:16 t 1 1 159757 623 0.00 2019-11-09 11:55:43 2019-11-09 11:55:46 t 1 1 159759 416 0.00 2019-11-09 11:41:57 2019-11-09 11:56:25 t 1 1 159769 562 0.00 2019-11-09 12:01:44 2019-11-09 12:01:59 t 1 1 159770 422 0.00 2019-11-09 12:01:18 2019-11-09 12:03:27 t 1 1 159771 623 0.00 2019-11-09 12:03:44 2019-11-09 12:05:03 t 1 1 159780 587 0.00 2019-11-09 12:11:27 2019-11-09 12:11:34 t 1 1 159782 562 0.00 2019-11-09 12:12:20 2019-11-09 12:12:34 t 1 1 159784 570 0.00 2019-11-09 11:58:12 2019-11-09 12:13:36 t 1 1 159787 623 0.00 2019-11-09 12:15:41 2019-11-09 12:16:00 t 1 1 159789 645 0.00 2019-11-09 12:17:33 2019-11-09 12:18:35 t 1 1 159790 623 0.00 2019-11-09 12:18:36 2019-11-09 12:20:07 t 1 1 159793 422 0.00 2019-11-09 12:22:01 2019-11-09 12:22:13 t 1 1 159794 562 0.00 2019-11-09 12:22:59 2019-11-09 12:23:13 t 1 1 159798 587 0.00 2019-11-09 12:11:55 2019-11-09 12:25:33 t 1 1 159800 623 0.00 2019-11-09 12:25:58 2019-11-09 12:26:46 t 1 1 159802 623 0.00 2019-11-09 12:26:59 2019-11-09 12:29:34 t 1 1 159804 619 0.00 2019-11-09 12:27:57 2019-11-09 12:29:55 t 1 1 159806 422 0.00 2019-11-09 12:28:22 2019-11-09 12:31:43 t 1 1 159807 623 0.00 2019-11-09 12:30:38 2019-11-09 12:32:07 t 1 1 159808 416 0.00 2019-11-09 11:57:30 2019-11-09 12:32:16 t 1 1 159810 623 0.00 2019-11-09 12:32:08 2019-11-09 12:32:27 t 1 1 159813 623 0.00 2019-11-09 12:32:39 2019-11-09 12:34:07 t 1 1 159815 623 0.00 2019-11-09 12:35:09 2019-11-09 12:35:18 t 1 1 159819 422 0.00 2019-11-09 12:36:55 2019-11-09 12:37:10 t 1 1 159823 416 0.00 2019-11-09 12:36:07 2019-11-09 12:37:39 t 1 1 159826 591 0.00 2019-11-09 12:26:56 2019-11-09 12:39:47 t 1 1 159828 623 0.00 2019-11-09 12:40:19 2019-11-09 12:40:20 t 1 1 159831 516 0.00 2019-11-09 12:36:56 2019-11-09 12:42:38 t 1 1 159832 422 0.00 2019-11-09 12:43:05 2019-11-09 12:43:54 t 1 1 159835 562 0.00 2019-11-09 12:44:25 2019-11-09 12:44:44 t 1 1 159837 599 0.00 2019-11-09 12:38:04 2019-11-09 12:47:45 t 1 1 159839 445 0.00 2019-11-09 12:31:46 2019-11-09 12:48:15 t 1 1 159840 599 0.00 2019-11-09 12:47:45 2019-11-09 12:48:54 t 1 1 159847 587 0.00 2019-11-09 12:36:38 2019-11-09 12:54:26 t 1 1 159849 562 0.00 2019-11-09 12:54:56 2019-11-09 12:55:14 t 1 1 159850 554 0.00 2019-11-09 11:58:04 2019-11-09 12:56:09 t 1 1 159852 416 0.00 2019-11-09 12:55:03 2019-11-09 13:00:16 t 1 1 159854 623 0.00 2019-11-09 13:00:22 2019-11-09 13:00:26 t 1 1 159856 623 0.00 2019-11-09 13:00:38 2019-11-09 13:01:05 t 1 1 159862 623 0.00 2019-11-09 13:04:16 2019-11-09 13:05:30 t 1 1 159867 637 0.00 2019-11-09 11:42:34 2019-11-09 13:07:12 t 1 1 159869 562 0.00 2019-11-09 13:03:18 2019-11-09 13:08:09 t 1 1 159872 623 0.00 2019-11-09 13:07:08 2019-11-09 13:09:07 t 1 1 159873 623 0.00 2019-11-09 13:08:27 2019-11-09 13:09:36 t 1 1 159875 623 0.00 2019-11-09 13:09:43 2019-11-09 13:11:12 t 1 1 159878 416 0.00 2019-11-09 13:03:13 2019-11-09 13:12:16 t 1 1 159880 562 0.00 2019-11-09 13:12:09 2019-11-09 13:14:53 t 1 1 159885 538 0.00 2019-11-09 13:09:35 2019-11-09 13:16:13 t 1 1 159886 422 0.00 2019-11-09 13:16:17 2019-11-09 13:16:44 t 1 1 159895 637 0.00 2019-11-09 13:19:36 2019-11-09 13:21:15 t 1 1 159898 570 0.00 2019-11-09 13:15:05 2019-11-09 13:23:10 t 1 1 159901 623 0.00 2019-11-09 13:24:05 2019-11-09 13:24:41 t 1 1 159903 516 0.00 2019-11-09 12:53:46 2019-11-09 13:26:08 t 1 1 159905 422 0.00 2019-11-09 13:27:03 2019-11-09 13:27:30 t 1 1 159907 615 0.00 2019-11-09 13:16:13 2019-11-09 13:27:56 t 1 1 159908 623 0.00 2019-11-09 13:26:55 2019-11-09 13:28:24 t 1 1 159910 416 0.00 2019-11-09 13:27:41 2019-11-09 13:30:05 t 1 1 159911 615 0.00 2019-11-09 13:27:56 2019-11-09 13:30:16 t 1 1 159914 514 0.00 2019-11-09 13:30:21 2019-11-09 13:31:23 t 1 1 159916 562 0.00 2019-11-09 13:30:56 2019-11-09 13:32:09 t 1 1 159917 623 0.00 2019-11-09 13:31:44 2019-11-09 13:32:27 t 1 1 159919 645 0.00 2019-11-09 13:32:13 2019-11-09 13:32:44 t 1 1 159922 615 0.00 2019-11-09 13:30:15 2019-11-09 13:36:25 t 1 1 159924 566 0.00 2019-11-09 13:28:53 2019-11-09 13:37:41 t 1 1 159930 445 0.00 2019-11-09 12:48:19 2019-11-09 13:41:11 t 1 1 159932 623 0.00 2019-11-09 13:42:05 2019-11-09 13:42:19 t 1 1 159934 566 0.00 2019-11-09 13:37:41 2019-11-09 13:44:19 t 1 1 159936 379 0.00 2019-11-09 10:57:03 2019-11-09 13:45:05 t 1 1 159944 566 0.00 2019-11-09 13:47:10 2019-11-09 13:48:16 t 1 1 159946 622 0.00 2019-11-09 13:11:42 2019-11-09 13:51:44 t 1 1 159949 538 0.00 2019-11-09 13:54:19 2019-11-09 13:58:13 t 1 1 159950 554 0.00 2019-11-09 13:38:44 2019-11-09 13:59:32 t 1 1 159952 445 0.00 2019-11-09 13:45:48 2019-11-09 13:59:38 t 1 1 159958 607 0.00 2019-11-09 13:59:57 2019-11-09 14:09:06 t 1 1 159963 538 0.00 2019-11-09 14:07:04 2019-11-09 14:14:08 t 1 1 159966 599 0.00 2019-11-09 13:39:52 2019-11-09 14:16:59 t 1 1 159969 422 0.00 2019-11-09 14:05:10 2019-11-09 14:19:05 t 1 1 159977 422 0.00 2019-11-09 14:19:05 2019-11-09 14:29:04 t 1 1 159978 220 0.00 2019-11-09 14:28:34 2019-11-09 14:29:30 t 1 1 159980 637 0.00 2019-11-09 13:53:37 2019-11-09 14:29:54 t 1 1 159981 619 0.00 2019-11-09 14:28:36 2019-11-09 14:30:04 t 1 1 159677 625 0.00 2019-11-09 11:02:22 2019-11-09 11:03:23 t 1 1 159678 623 0.00 2019-11-09 11:03:50 2019-11-09 11:03:51 t 1 1 159679 625 0.00 2019-11-09 11:02:31 2019-11-09 11:04:07 t 1 1 159681 422 0.00 2019-11-09 11:03:47 2019-11-09 11:06:27 t 1 1 159684 554 0.00 2019-11-09 10:59:18 2019-11-09 11:08:29 t 1 1 159686 637 0.00 2019-11-09 10:43:11 2019-11-09 11:09:39 t 1 1 159691 623 0.00 2019-11-09 11:13:34 2019-11-09 11:14:05 t 1 1 159696 591 0.00 2019-11-09 11:03:11 2019-11-09 11:16:29 t 1 1 159700 623 0.00 2019-11-09 11:20:13 2019-11-09 11:20:17 t 1 1 159702 481 0.00 2019-11-09 08:39:42 2019-11-09 11:20:34 t 1 1 159705 422 0.00 2019-11-09 11:20:56 2019-11-09 11:22:40 t 1 1 159710 623 0.00 2019-11-09 11:25:23 2019-11-09 11:25:26 t 1 1 159712 619 0.00 2019-11-09 11:24:22 2019-11-09 11:26:09 t 1 1 159714 599 0.00 2019-11-09 11:24:00 2019-11-09 11:28:15 t 1 1 159717 422 0.00 2019-11-09 11:30:17 2019-11-09 11:31:18 t 1 1 159719 622 0.00 2019-11-09 11:24:36 2019-11-09 11:33:56 t 1 1 159722 562 0.00 2019-11-09 11:33:56 2019-11-09 11:35:11 t 1 1 159723 623 0.00 2019-11-09 11:35:31 2019-11-09 11:35:32 t 1 1 159726 416 0.00 2019-11-09 11:37:02 2019-11-09 11:38:07 t 1 1 159728 581 0.00 2019-11-09 11:20:24 2019-11-09 11:38:29 t 1 1 159733 528 0.00 2019-11-09 11:35:58 2019-11-09 11:41:44 t 1 1 159735 422 0.00 2019-11-09 11:36:37 2019-11-09 11:42:23 t 1 1 159737 422 0.00 2019-11-09 11:42:30 2019-11-09 11:42:34 t 1 1 159739 445 0.00 2019-11-09 11:40:31 2019-11-09 11:44:04 t 1 1 159741 528 0.00 2019-11-09 11:41:44 2019-11-09 11:45:42 t 1 1 159742 220 0.00 2019-11-09 11:46:40 2019-11-09 11:47:48 t 1 1 159743 645 0.00 2019-11-09 11:48:02 2019-11-09 11:48:09 t 1 1 159747 422 0.00 2019-11-09 11:43:14 2019-11-09 11:49:49 t 1 1 159752 581 0.00 2019-11-09 11:52:04 2019-11-09 11:52:17 t 1 1 159755 422 0.00 2019-11-09 11:53:30 2019-11-09 11:54:43 t 1 1 159756 562 0.00 2019-11-09 11:54:46 2019-11-09 11:55:36 t 1 1 159760 520 0.00 2019-11-09 11:54:39 2019-11-09 11:56:36 t 1 1 159761 545 0.00 2019-11-09 11:54:57 2019-11-09 11:57:14 t 1 1 159763 585 0.00 2019-11-09 11:56:46 2019-11-09 11:58:42 t 1 1 159766 623 0.00 2019-11-09 12:00:49 2019-11-09 12:00:53 t 1 1 159767 422 0.00 2019-11-09 12:00:56 2019-11-09 12:01:04 t 1 1 159768 445 0.00 2019-11-09 11:51:22 2019-11-09 12:01:52 t 1 1 159773 581 0.00 2019-11-09 12:00:12 2019-11-09 12:05:45 t 1 1 159774 623 0.00 2019-11-09 12:06:03 2019-11-09 12:06:11 t 1 1 159775 623 0.00 2019-11-09 12:05:03 2019-11-09 12:07:00 t 1 1 159776 591 0.00 2019-11-09 12:05:39 2019-11-09 12:08:50 t 1 1 159777 422 0.00 2019-11-09 12:09:13 2019-11-09 12:09:23 t 1 1 159778 623 0.00 2019-11-09 12:06:38 2019-11-09 12:10:04 t 1 1 159781 422 0.00 2019-11-09 12:11:01 2019-11-09 12:12:18 t 1 1 159783 514 0.00 2019-11-09 12:11:40 2019-11-09 12:12:42 t 1 1 159785 622 0.00 2019-11-09 11:41:35 2019-11-09 12:15:08 t 1 1 159786 422 0.00 2019-11-09 12:15:30 2019-11-09 12:15:44 t 1 1 159795 623 0.00 2019-11-09 12:21:03 2019-11-09 12:23:18 t 1 1 159796 570 0.00 2019-11-09 12:21:27 2019-11-09 12:24:29 t 1 1 159801 538 0.00 2019-11-09 11:19:15 2019-11-09 12:27:35 t 1 1 159811 422 0.00 2019-11-09 12:32:33 2019-11-09 12:32:45 t 1 1 159812 562 0.00 2019-11-09 12:33:36 2019-11-09 12:33:49 t 1 1 159818 587 0.00 2019-11-09 12:25:33 2019-11-09 12:36:38 t 1 1 159821 623 0.00 2019-11-09 12:36:23 2019-11-09 12:37:34 t 1 1 159824 623 0.00 2019-11-09 12:38:34 2019-11-09 12:38:37 t 1 1 159827 564 0.00 2019-11-09 10:41:28 2019-11-09 12:39:54 t 1 1 159829 615 0.00 2019-11-09 12:39:15 2019-11-09 12:40:41 t 1 1 159836 623 0.00 2019-11-09 12:45:23 2019-11-09 12:45:30 t 1 1 159842 562 0.00 2019-11-09 12:49:58 2019-11-09 12:50:08 t 1 1 159853 562 0.00 2019-11-09 12:58:59 2019-11-09 13:00:18 t 1 1 159855 512 0.00 2019-11-09 12:26:16 2019-11-09 13:00:48 t 1 1 159857 631 0.00 2019-11-09 12:56:53 2019-11-09 13:01:14 t 1 1 159858 623 0.00 2019-11-09 13:01:52 2019-11-09 13:01:54 t 1 1 159859 554 0.00 2019-11-09 13:00:33 2019-11-09 13:02:20 t 1 1 159866 623 0.00 2019-11-09 13:05:35 2019-11-09 13:07:07 t 1 1 159871 562 0.00 2019-11-09 13:08:09 2019-11-09 13:08:40 t 1 1 159874 562 0.00 2019-11-09 13:09:12 2019-11-09 13:10:32 t 1 1 159876 422 0.00 2019-11-09 13:06:33 2019-11-09 13:11:17 t 1 1 159879 637 0.00 2019-11-09 13:07:45 2019-11-09 13:14:13 t 1 1 159881 570 0.00 2019-11-09 13:08:39 2019-11-09 13:15:06 t 1 1 159883 623 0.00 2019-11-09 13:15:43 2019-11-09 13:15:47 t 1 1 159884 623 0.00 2019-11-09 13:15:59 2019-11-09 13:16:05 t 1 1 159889 538 0.00 2019-11-09 13:16:13 2019-11-09 13:18:45 t 1 1 159890 422 0.00 2019-11-09 13:19:38 2019-11-09 13:19:48 t 1 1 159894 566 0.00 2019-11-09 12:59:51 2019-11-09 13:21:02 t 1 1 159897 619 0.00 2019-11-09 13:19:17 2019-11-09 13:22:31 t 1 1 159899 545 0.00 2019-11-09 13:20:16 2019-11-09 13:23:26 t 1 1 159902 520 0.00 2019-11-09 13:00:46 2019-11-09 13:25:18 t 1 1 159904 587 0.00 2019-11-09 13:25:04 2019-11-09 13:26:21 t 1 1 159906 416 0.00 2019-11-09 13:23:49 2019-11-09 13:27:36 t 1 1 159909 566 0.00 2019-11-09 13:21:02 2019-11-09 13:28:53 t 1 1 159926 554 0.00 2019-11-09 13:02:19 2019-11-09 13:38:44 t 1 1 159929 412 0.00 2019-11-09 13:05:52 2019-11-09 13:40:58 t 1 1 159931 623 0.00 2019-11-09 13:41:47 2019-11-09 13:41:59 t 1 1 159933 623 0.00 2019-11-09 13:43:11 2019-11-09 13:43:47 t 1 1 159938 591 0.00 2019-11-09 13:01:48 2019-11-09 13:45:48 t 1 1 159939 623 0.00 2019-11-09 13:44:51 2019-11-09 13:45:53 t 1 1 159940 481 0.00 2019-11-09 11:20:56 2019-11-09 13:46:04 t 1 1 159942 566 0.00 2019-11-09 13:44:19 2019-11-09 13:47:10 t 1 1 159943 631 0.00 2019-11-09 13:47:29 2019-11-09 13:47:53 t 1 1 159945 623 0.00 2019-11-09 13:47:03 2019-11-09 13:50:37 t 1 1 159951 422 0.00 2019-11-09 13:58:42 2019-11-09 13:59:37 t 1 1 159956 451 0.00 2019-11-09 13:47:31 2019-11-09 14:05:24 t 1 1 159957 615 0.00 2019-11-09 14:04:07 2019-11-09 14:05:59 t 1 1 159960 564 0.00 2019-11-09 12:39:54 2019-11-09 14:11:10 t 1 1 159965 623 0.00 2019-11-09 14:15:27 2019-11-09 14:16:50 t 1 1 159967 412 0.00 2019-11-09 13:40:58 2019-11-09 14:17:20 t 1 1 159968 645 0.00 2019-11-09 14:18:26 2019-11-09 14:18:40 t 1 1 159974 623 0.00 2019-11-09 14:24:43 2019-11-09 14:24:45 t 1 1 159976 645 0.00 2019-11-09 14:26:29 2019-11-09 14:28:48 t 1 1 159979 645 0.00 2019-11-09 14:29:21 2019-11-09 14:29:38 t 1 1 159984 631 0.00 2019-11-09 14:30:22 2019-11-09 14:31:38 t 1 1 159985 637 0.00 2019-11-09 14:29:54 2019-11-09 14:32:06 t 1 1 159986 422 0.00 2019-11-09 14:30:11 2019-11-09 14:33:25 t 1 1 159988 645 0.00 2019-11-09 14:34:50 2019-11-09 14:34:54 t 1 1 159989 623 0.00 2019-11-09 14:34:52 2019-11-09 14:35:02 t 1 1 159991 623 0.00 2019-11-09 14:35:10 2019-11-09 14:35:36 t 1 1 159707 516 0.00 2019-11-09 11:20:16 2019-11-09 11:24:41 t 1 1 159709 623 0.00 2019-11-09 11:24:58 2019-11-09 11:25:03 t 1 1 159711 562 0.00 2019-11-09 11:14:59 2019-11-09 11:25:44 t 1 1 159716 623 0.00 2019-11-09 11:30:29 2019-11-09 11:30:30 t 1 1 159720 607 0.00 2019-11-09 10:34:59 2019-11-09 11:34:37 t 1 1 159724 416 0.00 2019-11-09 11:20:53 2019-11-09 11:35:57 t 1 1 159725 562 0.00 2019-11-09 11:35:15 2019-11-09 11:36:17 t 1 1 159727 445 0.00 2019-11-09 11:20:59 2019-11-09 11:38:10 t 1 1 159729 416 0.00 2019-11-09 11:38:37 2019-11-09 11:39:53 t 1 1 159730 445 0.00 2019-11-09 11:38:10 2019-11-09 11:40:14 t 1 1 159731 623 0.00 2019-11-09 11:40:33 2019-11-09 11:40:34 t 1 1 159732 585 0.00 2019-11-09 11:39:36 2019-11-09 11:41:34 t 1 1 159736 562 0.00 2019-11-09 11:41:59 2019-11-09 11:42:27 t 1 1 159738 637 0.00 2019-11-09 11:26:44 2019-11-09 11:42:34 t 1 1 159745 520 0.00 2019-11-09 11:33:38 2019-11-09 11:48:58 t 1 1 159749 623 0.00 2019-11-09 11:50:41 2019-11-09 11:50:42 t 1 1 159750 422 0.00 2019-11-09 11:51:12 2019-11-09 11:52:06 t 1 1 159753 623 0.00 2019-11-09 11:53:40 2019-11-09 11:53:46 t 1 1 159754 520 0.00 2019-11-09 11:48:58 2019-11-09 11:54:38 t 1 1 159758 422 0.00 2019-11-09 11:55:30 2019-11-09 11:56:17 t 1 1 159762 554 0.00 2019-11-09 11:19:45 2019-11-09 11:58:04 t 1 1 159764 581 0.00 2019-11-09 11:54:31 2019-11-09 12:00:12 t 1 1 159765 422 0.00 2019-11-09 12:00:19 2019-11-09 12:00:32 t 1 1 159772 422 0.00 2019-11-09 12:05:07 2019-11-09 12:05:22 t 1 1 159779 587 0.00 2019-11-09 12:07:05 2019-11-09 12:10:26 t 1 1 159788 623 0.00 2019-11-09 12:17:59 2019-11-09 12:18:30 t 1 1 159791 623 0.00 2019-11-09 12:20:29 2019-11-09 12:20:44 t 1 1 159792 623 0.00 2019-11-09 12:19:42 2019-11-09 12:21:07 t 1 1 159797 623 0.00 2019-11-09 12:23:44 2019-11-09 12:25:07 t 1 1 159799 422 0.00 2019-11-09 12:24:58 2019-11-09 12:25:40 t 1 1 159803 623 0.00 2019-11-09 12:29:40 2019-11-09 12:29:43 t 1 1 159805 445 0.00 2019-11-09 12:02:27 2019-11-09 12:31:42 t 1 1 159809 422 0.00 2019-11-09 12:32:09 2019-11-09 12:32:27 t 1 1 159814 623 0.00 2019-11-09 12:34:09 2019-11-09 12:34:36 t 1 1 159816 623 0.00 2019-11-09 12:35:25 2019-11-09 12:35:35 t 1 1 159817 416 0.00 2019-11-09 12:32:16 2019-11-09 12:36:07 t 1 1 159820 422 0.00 2019-11-09 12:37:16 2019-11-09 12:37:24 t 1 1 159822 422 0.00 2019-11-09 12:37:30 2019-11-09 12:37:38 t 1 1 159825 220 0.00 2019-11-09 11:47:48 2019-11-09 12:39:43 t 1 1 159830 645 0.00 2019-11-09 12:32:28 2019-11-09 12:42:33 t 1 1 159833 416 0.00 2019-11-09 12:39:12 2019-11-09 12:44:17 t 1 1 159834 623 0.00 2019-11-09 12:41:48 2019-11-09 12:44:43 t 1 1 159838 623 0.00 2019-11-09 12:45:35 2019-11-09 12:48:07 t 1 1 159841 416 0.00 2019-11-09 12:44:28 2019-11-09 12:49:05 t 1 1 159843 623 0.00 2019-11-09 12:50:21 2019-11-09 12:51:04 t 1 1 159844 623 0.00 2019-11-09 12:51:11 2019-11-09 12:52:30 t 1 1 159845 416 0.00 2019-11-09 12:50:10 2019-11-09 12:53:49 t 1 1 159846 623 0.00 2019-11-09 12:52:38 2019-11-09 12:54:25 t 1 1 159848 416 0.00 2019-11-09 12:53:51 2019-11-09 12:55:03 t 1 1 159851 623 0.00 2019-11-09 12:56:53 2019-11-09 12:58:07 t 1 1 159860 416 0.00 2019-11-09 13:00:16 2019-11-09 13:02:47 t 1 1 159861 512 0.00 2019-11-09 13:03:55 2019-11-09 13:05:28 t 1 1 159863 412 0.00 2019-11-09 07:54:08 2019-11-09 13:05:52 t 1 1 159864 422 0.00 2019-11-09 12:49:16 2019-11-09 13:06:33 t 1 1 159865 623 0.00 2019-11-09 13:06:34 2019-11-09 13:06:56 t 1 1 159868 623 0.00 2019-11-09 13:07:16 2019-11-09 13:07:41 t 1 1 159870 570 0.00 2019-11-09 12:53:06 2019-11-09 13:08:35 t 1 1 159877 622 0.00 2019-11-09 12:53:44 2019-11-09 13:11:42 t 1 1 159882 599 0.00 2019-11-09 12:48:53 2019-11-09 13:15:42 t 1 1 159887 623 0.00 2019-11-09 13:16:51 2019-11-09 13:16:54 t 1 1 159888 637 0.00 2019-11-09 13:14:42 2019-11-09 13:17:50 t 1 1 159891 637 0.00 2019-11-09 13:17:36 2019-11-09 13:19:49 t 1 1 159892 562 0.00 2019-11-09 13:19:13 2019-11-09 13:20:04 t 1 1 159893 623 0.00 2019-11-09 13:20:42 2019-11-09 13:20:46 t 1 1 159896 587 0.00 2019-11-09 12:55:28 2019-11-09 13:21:57 t 1 1 159900 416 0.00 2019-11-09 13:13:39 2019-11-09 13:23:45 t 1 1 159912 562 0.00 2019-11-09 13:27:04 2019-11-09 13:30:50 t 1 1 159913 637 0.00 2019-11-09 13:22:05 2019-11-09 13:31:21 t 1 1 159915 456 0.00 2019-11-09 13:31:57 2019-11-09 13:31:57 f 1 1 159918 637 0.00 2019-11-09 13:31:25 2019-11-09 13:32:43 t 1 1 159920 623 0.00 2019-11-09 13:32:39 2019-11-09 13:33:11 t 1 1 159921 637 0.00 2019-11-09 13:33:21 2019-11-09 13:34:31 t 1 1 159923 615 0.00 2019-11-09 13:36:29 2019-11-09 13:36:45 t 1 1 159925 623 0.00 2019-11-09 13:37:24 2019-11-09 13:37:54 t 1 1 159927 623 0.00 2019-11-09 13:38:40 2019-11-09 13:38:46 t 1 1 159928 623 0.00 2019-11-09 13:39:46 2019-11-09 13:39:51 t 1 1 159935 416 0.00 2019-11-09 13:30:09 2019-11-09 13:44:44 t 1 1 159937 445 0.00 2019-11-09 13:41:13 2019-11-09 13:45:23 t 1 1 159941 623 0.00 2019-11-09 13:45:53 2019-11-09 13:46:33 t 1 1 159947 637 0.00 2019-11-09 13:38:30 2019-11-09 13:53:37 t 1 1 159948 623 0.00 2019-11-09 13:52:02 2019-11-09 13:54:52 t 1 1 159953 607 0.00 2019-11-09 11:34:37 2019-11-09 13:59:57 t 1 1 159954 615 0.00 2019-11-09 13:36:50 2019-11-09 14:00:29 t 1 1 159955 591 0.00 2019-11-09 13:45:48 2019-11-09 14:05:17 t 1 1 159959 483 0.00 2019-11-09 13:43:43 2019-11-09 14:09:43 t 1 1 159961 623 0.00 2019-11-09 13:56:11 2019-11-09 14:11:23 t 1 1 159962 591 0.00 2019-11-09 14:05:17 2019-11-09 14:13:26 t 1 1 159964 623 0.00 2019-11-09 14:14:34 2019-11-09 14:14:37 t 1 1 159970 451 0.00 2019-11-09 14:05:24 2019-11-09 14:19:11 t 1 1 159971 623 0.00 2019-11-09 14:19:40 2019-11-09 14:19:43 t 1 1 159972 622 0.00 2019-11-09 14:13:29 2019-11-09 14:23:01 t 1 1 159973 627 0.00 2019-11-09 14:23:42 2019-11-09 14:24:37 t 1 1 159975 451 0.00 2019-11-09 14:19:11 2019-11-09 14:24:57 t 1 1 159982 623 0.00 2019-11-09 14:25:19 2019-11-09 14:30:12 t 1 1 159993 623 0.00 2019-11-09 14:35:43 2019-11-09 14:36:26 t 1 1 159994 611 0.00 2019-11-09 14:32:38 2019-11-09 14:37:00 t 1 1 159996 422 0.00 2019-11-09 14:37:25 2019-11-09 14:37:37 t 1 1 159998 637 0.00 2019-11-09 14:31:53 2019-11-09 14:40:38 t 1 1 159999 597 0.00 2019-11-09 14:37:24 2019-11-09 14:41:08 t 1 1 160001 416 0.00 2019-11-09 13:46:58 2019-11-09 14:44:30 t 1 1 160005 451 0.00 2019-11-09 14:37:18 2019-11-09 14:47:34 t 1 1 160008 516 0.00 2019-11-09 14:47:11 2019-11-09 14:52:44 t 1 1 160011 599 0.00 2019-11-09 14:41:34 2019-11-09 14:57:24 t 1 1 160015 623 0.00 2019-11-09 14:59:45 2019-11-09 15:01:46 t 1 1 160016 451 0.00 2019-11-09 14:47:34 2019-11-09 15:02:39 t 1 1 160017 623 0.00 2019-11-09 15:01:59 2019-11-09 15:03:00 t 1 1 160019 422 0.00 2019-11-09 14:59:53 2019-11-09 15:04:30 t 1 1 159983 623 0.00 2019-11-09 14:30:17 2019-11-09 14:31:17 t 1 1 159987 456 0.00 2019-11-09 13:32:21 2019-11-09 14:33:42 t 1 1 159990 483 0.00 2019-11-09 14:09:50 2019-11-09 14:35:12 t 1 1 159992 422 0.00 2019-11-09 14:33:39 2019-11-09 14:35:47 t 1 1 160003 637 0.00 2019-11-09 14:42:36 2019-11-09 14:46:26 t 1 1 160006 591 0.00 2019-11-09 14:13:26 2019-11-09 14:49:05 t 1 1 160009 416 0.00 2019-11-09 14:44:37 2019-11-09 14:54:39 t 1 1 160010 538 0.00 2019-11-09 14:43:15 2019-11-09 14:56:42 t 1 1 160014 422 0.00 2019-11-09 14:41:27 2019-11-09 14:59:53 t 1 1 160025 597 0.00 2019-11-09 14:50:49 2019-11-09 15:09:06 t 1 1 160031 451 0.00 2019-11-09 15:06:27 2019-11-09 15:13:14 t 1 1 160033 637 0.00 2019-11-09 14:49:05 2019-11-09 15:13:27 t 1 1 160034 623 0.00 2019-11-09 15:14:18 2019-11-09 15:14:28 t 1 1 160036 633 0.00 2019-11-09 15:15:53 2019-11-09 15:15:57 t 1 1 160037 538 0.00 2019-11-09 14:56:42 2019-11-09 15:16:20 t 1 1 160039 635 0.00 2019-11-09 15:15:58 2019-11-09 15:17:19 t 1 1 160040 611 0.00 2019-11-09 15:06:15 2019-11-09 15:20:44 t 1 1 160041 485 0.00 2019-11-09 15:14:47 2019-11-09 15:21:07 t 1 1 160046 637 0.00 2019-11-09 15:15:08 2019-11-09 15:26:26 t 1 1 160048 451 0.00 2019-11-09 15:13:14 2019-11-09 15:26:41 t 1 1 160051 422 0.00 2019-11-09 15:04:30 2019-11-09 15:33:14 t 1 1 160052 451 0.00 2019-11-09 15:26:41 2019-11-09 15:33:52 t 1 1 160054 637 0.00 2019-11-09 15:26:26 2019-11-09 15:38:10 t 1 1 160055 422 0.00 2019-11-09 15:33:14 2019-11-09 15:39:25 t 1 1 160065 379 0.00 2019-11-09 13:45:05 2019-11-09 15:53:37 t 1 1 160073 623 0.00 2019-11-09 15:53:17 2019-11-09 16:12:08 t 1 1 160078 645 0.00 2019-11-09 16:12:48 2019-11-09 16:17:36 t 1 1 160079 637 0.00 2019-11-09 16:07:46 2019-11-09 16:22:47 t 1 1 160081 422 0.00 2019-11-09 16:27:45 2019-11-09 16:29:41 t 1 1 160083 516 0.00 2019-11-09 16:24:52 2019-11-09 16:31:11 t 1 1 160086 554 0.00 2019-11-09 13:59:48 2019-11-09 16:37:59 t 1 1 160092 485 0.00 2019-11-09 16:32:27 2019-11-09 16:43:31 t 1 1 160093 623 0.00 2019-11-09 16:41:37 2019-11-09 16:45:45 t 1 1 160094 597 0.00 2019-11-09 16:43:23 2019-11-09 16:47:02 t 1 1 160098 597 0.00 2019-11-09 16:51:23 2019-11-09 16:54:22 t 1 1 160099 451 0.00 2019-11-09 16:45:02 2019-11-09 16:55:07 t 1 1 160104 375 0.00 2019-11-09 16:37:38 2019-11-09 17:01:59 t 1 1 160106 422 0.00 2019-11-09 17:02:21 2019-11-09 17:03:32 t 1 1 160109 220 0.00 2019-11-09 16:15:39 2019-11-09 17:06:38 t 1 1 160111 220 0.00 2019-11-09 17:07:16 2019-11-09 17:07:50 t 1 1 160114 485 0.00 2019-11-09 17:06:30 2019-11-09 17:08:56 t 1 1 160115 220 0.00 2019-11-09 17:08:27 2019-11-09 17:08:59 t 1 1 160126 585 0.00 2019-11-09 17:08:32 2019-11-09 17:11:51 t 1 1 160127 220 0.00 2019-11-09 17:11:20 2019-11-09 17:11:58 t 1 1 160128 220 0.00 2019-11-09 17:11:58 2019-11-09 17:12:32 t 1 1 160131 451 0.00 2019-11-09 16:55:07 2019-11-09 17:13:37 t 1 1 160132 220 0.00 2019-11-09 17:13:09 2019-11-09 17:13:42 t 1 1 160134 220 0.00 2019-11-09 17:14:19 2019-11-09 17:14:49 t 1 1 160135 422 0.00 2019-11-09 17:12:30 2019-11-09 17:15:00 t 1 1 160139 375 0.00 2019-11-09 17:15:25 2019-11-09 17:16:20 t 1 1 160141 220 0.00 2019-11-09 17:16:35 2019-11-09 17:17:09 t 1 1 160144 422 0.00 2019-11-09 17:17:07 2019-11-09 17:18:09 t 1 1 160146 591 0.00 2019-11-09 17:14:03 2019-11-09 17:18:24 t 1 1 160147 220 0.00 2019-11-09 17:18:19 2019-11-09 17:18:57 t 1 1 160149 445 0.00 2019-11-09 13:59:38 2019-11-09 17:19:46 t 1 1 160150 645 0.00 2019-11-09 17:19:57 2019-11-09 17:20:04 t 1 1 160155 220 0.00 2019-11-09 17:20:42 2019-11-09 17:21:19 t 1 1 160157 619 0.00 2019-11-09 17:13:19 2019-11-09 17:21:53 t 1 1 160170 416 0.00 2019-11-09 15:10:54 2019-11-09 17:25:47 t 1 1 160171 220 0.00 2019-11-09 17:25:29 2019-11-09 17:26:07 t 1 1 160172 220 0.00 2019-11-09 17:26:07 2019-11-09 17:26:42 t 1 1 160175 585 0.00 2019-11-09 17:22:05 2019-11-09 17:27:25 t 1 1 160177 220 0.00 2019-11-09 17:27:19 2019-11-09 17:27:54 t 1 1 160178 220 0.00 2019-11-09 17:27:54 2019-11-09 17:28:33 t 1 1 160181 220 0.00 2019-11-09 17:28:33 2019-11-09 17:29:06 t 1 1 160188 623 0.00 2019-11-09 17:28:37 2019-11-09 17:31:40 t 1 1 160191 220 0.00 2019-11-09 17:32:28 2019-11-09 17:33:02 t 1 1 160194 220 0.00 2019-11-09 17:33:40 2019-11-09 17:34:14 t 1 1 160197 581 0.00 2019-11-09 17:33:45 2019-11-09 17:34:46 t 1 1 160199 220 0.00 2019-11-09 17:34:51 2019-11-09 17:35:24 t 1 1 160203 623 0.00 2019-11-09 17:34:41 2019-11-09 17:37:07 t 1 1 160208 622 0.00 2019-11-09 17:34:28 2019-11-09 17:38:41 t 1 1 160212 220 0.00 2019-11-09 17:39:34 2019-11-09 17:40:08 t 1 1 160214 220 0.00 2019-11-09 17:40:08 2019-11-09 17:40:45 t 1 1 160215 220 0.00 2019-11-09 17:40:45 2019-11-09 17:41:17 t 1 1 160216 220 0.00 2019-11-09 17:41:17 2019-11-09 17:41:54 t 1 1 160218 623 0.00 2019-11-09 17:42:31 2019-11-09 17:42:39 t 1 1 160222 485 0.00 2019-11-09 17:30:01 2019-11-09 17:43:15 t 1 1 160224 375 0.00 2019-11-09 17:16:19 2019-11-09 17:43:37 t 1 1 160227 220 0.00 2019-11-09 17:43:17 2019-11-09 17:44:06 t 1 1 160228 220 0.00 2019-11-09 17:44:06 2019-11-09 17:44:45 t 1 1 160230 619 0.00 2019-11-09 17:36:42 2019-11-09 17:44:53 t 1 1 160231 538 0.00 2019-11-09 17:44:52 2019-11-09 17:45:11 t 1 1 160232 220 0.00 2019-11-09 17:44:44 2019-11-09 17:45:28 t 1 1 160236 623 0.00 2019-11-09 17:45:48 2019-11-09 17:47:28 t 1 1 160238 220 0.00 2019-11-09 17:47:12 2019-11-09 17:47:42 t 1 1 160241 220 0.00 2019-11-09 17:47:42 2019-11-09 17:48:20 t 1 1 160245 566 0.00 2019-11-09 17:28:54 2019-11-09 17:49:33 t 1 1 160246 512 0.00 2019-11-09 17:39:19 2019-11-09 17:49:46 t 1 1 160248 631 0.00 2019-11-09 17:49:35 2019-11-09 17:50:07 t 1 1 160250 623 0.00 2019-11-09 17:49:54 2019-11-09 17:50:22 t 1 1 160252 220 0.00 2019-11-09 17:49:33 2019-11-09 17:50:39 t 1 1 160259 587 0.00 2019-11-09 17:49:54 2019-11-09 17:52:39 t 1 1 160264 623 0.00 2019-11-09 17:54:30 2019-11-09 17:54:39 t 1 1 160266 623 0.00 2019-11-09 17:54:51 2019-11-09 17:54:54 t 1 1 160271 607 0.00 2019-11-09 14:09:07 2019-11-09 17:56:03 t 1 1 160274 645 0.00 2019-11-09 17:52:38 2019-11-09 17:56:58 t 1 1 160277 220 0.00 2019-11-09 17:57:39 2019-11-09 17:58:17 t 1 1 160279 578 0.00 2019-11-09 17:36:42 2019-11-09 17:59:43 t 1 1 160284 503 0.00 2019-11-09 17:56:55 2019-11-09 18:02:17 t 1 1 160285 220 0.00 2019-11-09 18:01:56 2019-11-09 18:02:34 t 1 1 160288 587 0.00 2019-11-09 18:02:45 2019-11-09 18:02:48 t 1 1 160289 220 0.00 2019-11-09 18:02:34 2019-11-09 18:03:06 t 1 1 160292 220 0.00 2019-11-09 18:03:43 2019-11-09 18:04:26 t 1 1 160295 503 0.00 2019-11-09 18:02:38 2019-11-09 18:04:50 t 1 1 160296 631 0.00 2019-11-09 18:03:59 2019-11-09 18:04:57 t 1 1 160298 375 0.00 2019-11-09 17:46:07 2019-11-09 18:05:17 t 1 1 159995 451 0.00 2019-11-09 14:27:17 2019-11-09 14:37:18 t 1 1 159997 611 0.00 2019-11-09 14:37:00 2019-11-09 14:39:58 t 1 1 160000 637 0.00 2019-11-09 14:40:43 2019-11-09 14:42:37 t 1 1 160002 631 0.00 2019-11-09 14:44:34 2019-11-09 14:45:05 t 1 1 160004 623 0.00 2019-11-09 14:36:33 2019-11-09 14:46:28 t 1 1 160007 220 0.00 2019-11-09 14:29:29 2019-11-09 14:52:18 t 1 1 160012 416 0.00 2019-11-09 14:54:45 2019-11-09 14:58:27 t 1 1 160013 623 0.00 2019-11-09 14:46:42 2019-11-09 14:59:38 t 1 1 160018 585 0.00 2019-11-09 14:54:09 2019-11-09 15:04:03 t 1 1 160020 623 0.00 2019-11-09 15:05:23 2019-11-09 15:05:24 t 1 1 160024 623 0.00 2019-11-09 15:08:09 2019-11-09 15:08:32 t 1 1 160026 416 0.00 2019-11-09 14:58:56 2019-11-09 15:09:14 t 1 1 160027 623 0.00 2019-11-09 15:10:25 2019-11-09 15:11:02 t 1 1 160028 481 0.00 2019-11-09 13:46:04 2019-11-09 15:11:13 t 1 1 160030 623 0.00 2019-11-09 15:12:12 2019-11-09 15:12:35 t 1 1 160038 623 0.00 2019-11-09 15:15:30 2019-11-09 15:16:28 t 1 1 160042 623 0.00 2019-11-09 15:20:56 2019-11-09 15:21:19 t 1 1 160044 516 0.00 2019-11-09 15:19:24 2019-11-09 15:22:44 t 1 1 160045 635 0.00 2019-11-09 15:17:39 2019-11-09 15:24:08 t 1 1 160049 625 0.00 2019-11-09 15:29:17 2019-11-09 15:29:34 t 1 1 160050 645 0.00 2019-11-09 15:31:38 2019-11-09 15:32:38 t 1 1 160056 568 0.00 2019-11-09 15:40:04 2019-11-09 15:41:14 t 1 1 160058 512 0.00 2019-11-09 15:39:58 2019-11-09 15:44:37 t 1 1 160060 591 0.00 2019-11-09 15:36:36 2019-11-09 15:50:08 t 1 1 160064 623 0.00 2019-11-09 15:28:36 2019-11-09 15:53:17 t 1 1 160070 578 0.00 2019-11-09 15:45:59 2019-11-09 16:03:30 t 1 1 160072 220 0.00 2019-11-09 16:10:43 2019-11-09 16:11:24 t 1 1 160076 597 0.00 2019-11-09 15:53:17 2019-11-09 16:15:03 t 1 1 160080 578 0.00 2019-11-09 16:03:30 2019-11-09 16:24:36 t 1 1 160084 422 0.00 2019-11-09 16:32:42 2019-11-09 16:32:47 t 1 1 160085 481 0.00 2019-11-09 15:11:12 2019-11-09 16:33:23 t 1 1 160088 623 0.00 2019-11-09 16:12:08 2019-11-09 16:40:53 t 1 1 160089 623 0.00 2019-11-09 16:41:11 2019-11-09 16:41:17 t 1 1 160090 481 0.00 2019-11-09 16:33:23 2019-11-09 16:43:24 t 1 1 160095 591 0.00 2019-11-09 16:13:40 2019-11-09 16:47:42 t 1 1 160097 554 0.00 2019-11-09 16:37:59 2019-11-09 16:52:48 t 1 1 160102 422 0.00 2019-11-09 16:53:50 2019-11-09 16:59:50 t 1 1 160103 422 0.00 2019-11-09 17:00:47 2019-11-09 17:01:35 t 1 1 160107 631 0.00 2019-11-09 17:03:52 2019-11-09 17:05:36 t 1 1 160108 422 0.00 2019-11-09 17:03:40 2019-11-09 17:06:30 t 1 1 160110 220 0.00 2019-11-09 17:06:38 2019-11-09 17:07:16 t 1 1 160112 422 0.00 2019-11-09 17:07:06 2019-11-09 17:07:54 t 1 1 160113 220 0.00 2019-11-09 17:07:50 2019-11-09 17:08:27 t 1 1 160118 220 0.00 2019-11-09 17:08:59 2019-11-09 17:09:37 t 1 1 160120 623 0.00 2019-11-09 17:09:15 2019-11-09 17:10:24 t 1 1 160123 514 0.00 2019-11-09 16:56:23 2019-11-09 17:11:01 t 1 1 160124 220 0.00 2019-11-09 17:10:48 2019-11-09 17:11:20 t 1 1 160129 375 0.00 2019-11-09 17:02:13 2019-11-09 17:12:52 t 1 1 160130 220 0.00 2019-11-09 17:12:32 2019-11-09 17:13:09 t 1 1 160133 220 0.00 2019-11-09 17:13:42 2019-11-09 17:14:19 t 1 1 160136 615 0.00 2019-11-09 17:09:27 2019-11-09 17:15:01 t 1 1 160137 220 0.00 2019-11-09 17:14:49 2019-11-09 17:15:27 t 1 1 160138 220 0.00 2019-11-09 17:15:26 2019-11-09 17:15:58 t 1 1 160143 220 0.00 2019-11-09 17:17:09 2019-11-09 17:17:47 t 1 1 160152 623 0.00 2019-11-09 17:17:46 2019-11-09 17:20:42 t 1 1 160154 623 0.00 2019-11-09 17:20:47 2019-11-09 17:20:54 t 1 1 160156 623 0.00 2019-11-09 17:21:11 2019-11-09 17:21:43 t 1 1 160160 566 0.00 2019-11-09 17:01:11 2019-11-09 17:22:11 t 1 1 160162 623 0.00 2019-11-09 17:21:49 2019-11-09 17:23:07 t 1 1 160164 220 0.00 2019-11-09 17:22:31 2019-11-09 17:23:09 t 1 1 160165 220 0.00 2019-11-09 17:23:08 2019-11-09 17:23:47 t 1 1 160166 220 0.00 2019-11-09 17:23:47 2019-11-09 17:24:21 t 1 1 160168 220 0.00 2019-11-09 17:24:58 2019-11-09 17:25:29 t 1 1 160176 619 0.00 2019-11-09 17:23:41 2019-11-09 17:27:43 t 1 1 160180 566 0.00 2019-11-09 17:22:11 2019-11-09 17:28:54 t 1 1 160182 581 0.00 2019-11-09 17:28:47 2019-11-09 17:29:33 t 1 1 160183 220 0.00 2019-11-09 17:29:06 2019-11-09 17:29:45 t 1 1 160185 220 0.00 2019-11-09 17:29:44 2019-11-09 17:30:40 t 1 1 160186 220 0.00 2019-11-09 17:30:40 2019-11-09 17:31:18 t 1 1 160192 581 0.00 2019-11-09 17:32:56 2019-11-09 17:33:09 t 1 1 160193 220 0.00 2019-11-09 17:33:02 2019-11-09 17:33:40 t 1 1 160195 622 0.00 2019-11-09 16:59:30 2019-11-09 17:34:27 t 1 1 160196 623 0.00 2019-11-09 17:34:34 2019-11-09 17:34:35 t 1 1 160200 220 0.00 2019-11-09 17:35:24 2019-11-09 17:36:00 t 1 1 160201 220 0.00 2019-11-09 17:36:00 2019-11-09 17:36:34 t 1 1 160206 220 0.00 2019-11-09 17:37:46 2019-11-09 17:38:23 t 1 1 160210 220 0.00 2019-11-09 17:38:23 2019-11-09 17:38:57 t 1 1 160213 623 0.00 2019-11-09 17:38:21 2019-11-09 17:40:29 t 1 1 160219 597 0.00 2019-11-09 17:41:43 2019-11-09 17:42:48 t 1 1 160220 637 0.00 2019-11-09 17:27:09 2019-11-09 17:43:04 t 1 1 160225 528 0.00 2019-11-09 17:36:31 2019-11-09 17:43:40 t 1 1 160229 623 0.00 2019-11-09 17:44:43 2019-11-09 17:44:52 t 1 1 160233 220 0.00 2019-11-09 17:45:28 2019-11-09 17:46:05 t 1 1 160234 220 0.00 2019-11-09 17:46:05 2019-11-09 17:46:36 t 1 1 160237 631 0.00 2019-11-09 17:47:00 2019-11-09 17:47:31 t 1 1 160240 516 0.00 2019-11-09 17:37:57 2019-11-09 17:48:10 t 1 1 160242 622 0.00 2019-11-09 17:38:41 2019-11-09 17:48:40 t 1 1 160249 597 0.00 2019-11-09 17:48:41 2019-11-09 17:50:08 t 1 1 160251 570 0.00 2019-11-09 16:19:50 2019-11-09 17:50:34 t 1 1 160253 456 0.00 2019-11-09 16:50:22 2019-11-09 17:50:48 t 1 1 160254 220 0.00 2019-11-09 17:50:39 2019-11-09 17:51:18 t 1 1 160255 220 0.00 2019-11-09 17:51:17 2019-11-09 17:52:03 t 1 1 160258 538 0.00 2019-11-09 17:45:16 2019-11-09 17:52:38 t 1 1 160261 220 0.00 2019-11-09 17:52:41 2019-11-09 17:53:14 t 1 1 160262 220 0.00 2019-11-09 17:53:14 2019-11-09 17:53:51 t 1 1 160263 220 0.00 2019-11-09 17:53:51 2019-11-09 17:54:28 t 1 1 160267 220 0.00 2019-11-09 17:54:28 2019-11-09 17:55:06 t 1 1 160269 587 0.00 2019-11-09 17:53:13 2019-11-09 17:55:45 t 1 1 160278 631 0.00 2019-11-09 17:56:39 2019-11-09 17:58:47 t 1 1 160283 220 0.00 2019-11-09 17:58:17 2019-11-09 18:01:56 t 1 1 160287 587 0.00 2019-11-09 17:57:10 2019-11-09 18:02:45 t 1 1 160290 416 0.00 2019-11-09 17:26:31 2019-11-09 18:03:13 t 1 1 160294 570 0.00 2019-11-09 17:55:50 2019-11-09 18:04:41 t 1 1 160300 591 0.00 2019-11-09 18:04:30 2019-11-09 18:05:58 t 1 1 160305 637 0.00 2019-11-09 17:52:04 2019-11-09 18:08:42 t 1 1 160306 220 0.00 2019-11-09 18:08:33 2019-11-09 18:09:11 t 1 1 160308 485 0.00 2019-11-09 18:05:36 2019-11-09 18:09:33 t 1 1 160021 611 0.00 2019-11-09 15:06:01 2019-11-09 15:06:11 t 1 1 160022 451 0.00 2019-11-09 15:02:39 2019-11-09 15:06:27 t 1 1 160023 585 0.00 2019-11-09 15:05:46 2019-11-09 15:08:05 t 1 1 160029 645 0.00 2019-11-09 15:11:26 2019-11-09 15:12:08 t 1 1 160032 456 0.00 2019-11-09 15:11:20 2019-11-09 15:13:24 t 1 1 160035 597 0.00 2019-11-09 15:11:10 2019-11-09 15:15:11 t 1 1 160043 611 0.00 2019-11-09 15:20:44 2019-11-09 15:21:41 t 1 1 160047 623 0.00 2019-11-09 15:25:53 2019-11-09 15:26:32 t 1 1 160053 597 0.00 2019-11-09 15:33:50 2019-11-09 15:36:00 t 1 1 160057 585 0.00 2019-11-09 15:41:24 2019-11-09 15:43:26 t 1 1 160059 578 0.00 2019-11-09 15:18:25 2019-11-09 15:45:59 t 1 1 160061 422 0.00 2019-11-09 15:39:25 2019-11-09 15:50:39 t 1 1 160062 637 0.00 2019-11-09 15:38:10 2019-11-09 15:51:57 t 1 1 160063 585 0.00 2019-11-09 15:51:06 2019-11-09 15:52:47 t 1 1 160066 591 0.00 2019-11-09 15:53:35 2019-11-09 15:55:19 t 1 1 160067 538 0.00 2019-11-09 15:49:15 2019-11-09 15:59:29 t 1 1 160068 591 0.00 2019-11-09 15:58:30 2019-11-09 16:00:24 t 1 1 160069 528 0.00 2019-11-09 15:52:58 2019-11-09 16:02:52 t 1 1 160071 637 0.00 2019-11-09 15:51:57 2019-11-09 16:07:46 t 1 1 160074 631 0.00 2019-11-09 16:11:06 2019-11-09 16:12:36 t 1 1 160075 591 0.00 2019-11-09 16:10:40 2019-11-09 16:13:33 t 1 1 160077 220 0.00 2019-11-09 16:11:24 2019-11-09 16:15:39 t 1 1 160082 637 0.00 2019-11-09 16:22:47 2019-11-09 16:31:07 t 1 1 160087 637 0.00 2019-11-09 16:31:00 2019-11-09 16:40:48 t 1 1 160091 422 0.00 2019-11-09 16:43:07 2019-11-09 16:43:30 t 1 1 160096 422 0.00 2019-11-09 16:48:07 2019-11-09 16:49:14 t 1 1 160100 481 0.00 2019-11-09 16:45:23 2019-11-09 16:55:12 t 1 1 160101 622 0.00 2019-11-09 16:52:49 2019-11-09 16:59:30 t 1 1 160105 623 0.00 2019-11-09 17:03:13 2019-11-09 17:03:17 t 1 1 160116 645 0.00 2019-11-09 17:03:57 2019-11-09 17:09:19 t 1 1 160117 554 0.00 2019-11-09 16:52:47 2019-11-09 17:09:32 t 1 1 160119 220 0.00 2019-11-09 17:09:37 2019-11-09 17:10:10 t 1 1 160121 422 0.00 2019-11-09 17:10:11 2019-11-09 17:10:33 t 1 1 160122 220 0.00 2019-11-09 17:10:10 2019-11-09 17:10:48 t 1 1 160125 220 0.00 2019-11-09 16:27:02 2019-11-09 17:11:47 t 1 1 160140 220 0.00 2019-11-09 17:15:57 2019-11-09 17:16:36 t 1 1 160142 623 0.00 2019-11-09 17:10:39 2019-11-09 17:17:46 t 1 1 160145 220 0.00 2019-11-09 17:17:47 2019-11-09 17:18:19 t 1 1 160148 220 0.00 2019-11-09 17:18:57 2019-11-09 17:19:31 t 1 1 160151 220 0.00 2019-11-09 17:19:31 2019-11-09 17:20:08 t 1 1 160153 220 0.00 2019-11-09 17:20:08 2019-11-09 17:20:42 t 1 1 160158 220 0.00 2019-11-09 17:21:19 2019-11-09 17:21:53 t 1 1 160159 623 0.00 2019-11-09 17:22:00 2019-11-09 17:22:00 f 1 1 160161 220 0.00 2019-11-09 17:21:53 2019-11-09 17:22:31 t 1 1 160163 623 0.00 2019-11-09 17:20:59 2019-11-09 17:23:07 t 1 1 160167 220 0.00 2019-11-09 17:24:21 2019-11-09 17:24:58 t 1 1 160169 587 0.00 2019-11-09 17:22:20 2019-11-09 17:25:37 t 1 1 160173 637 0.00 2019-11-09 16:40:48 2019-11-09 17:26:59 t 1 1 160174 220 0.00 2019-11-09 17:26:41 2019-11-09 17:27:19 t 1 1 160179 581 0.00 2019-11-09 17:20:04 2019-11-09 17:28:41 t 1 1 160184 581 0.00 2019-11-09 17:29:41 2019-11-09 17:29:46 t 1 1 160187 451 0.00 2019-11-09 17:13:37 2019-11-09 17:31:36 t 1 1 160189 220 0.00 2019-11-09 17:31:17 2019-11-09 17:31:51 t 1 1 160190 220 0.00 2019-11-09 17:31:51 2019-11-09 17:32:28 t 1 1 160198 220 0.00 2019-11-09 17:34:14 2019-11-09 17:34:51 t 1 1 160202 578 0.00 2019-11-09 16:26:18 2019-11-09 17:36:37 t 1 1 160204 220 0.00 2019-11-09 17:36:34 2019-11-09 17:37:12 t 1 1 160205 220 0.00 2019-11-09 17:37:12 2019-11-09 17:37:46 t 1 1 160207 538 0.00 2019-11-09 17:34:04 2019-11-09 17:38:25 t 1 1 160209 512 0.00 2019-11-09 17:29:03 2019-11-09 17:38:56 t 1 1 160211 220 0.00 2019-11-09 17:38:57 2019-11-09 17:39:34 t 1 1 160217 220 0.00 2019-11-09 17:41:54 2019-11-09 17:42:39 t 1 1 160221 631 0.00 2019-11-09 17:42:10 2019-11-09 17:43:08 t 1 1 160223 220 0.00 2019-11-09 17:42:39 2019-11-09 17:43:17 t 1 1 160226 637 0.00 2019-11-09 17:43:03 2019-11-09 17:43:43 t 1 1 160235 220 0.00 2019-11-09 17:46:36 2019-11-09 17:47:13 t 1 1 160239 445 0.00 2019-11-09 17:19:48 2019-11-09 17:47:57 t 1 1 160243 220 0.00 2019-11-09 17:48:20 2019-11-09 17:48:54 t 1 1 160244 220 0.00 2019-11-09 17:48:54 2019-11-09 17:49:33 t 1 1 160247 587 0.00 2019-11-09 17:35:52 2019-11-09 17:49:54 t 1 1 160256 637 0.00 2019-11-09 17:43:50 2019-11-09 17:52:04 t 1 1 160257 422 0.00 2019-11-09 17:33:23 2019-11-09 17:52:14 t 1 1 160260 220 0.00 2019-11-09 17:52:03 2019-11-09 17:52:41 t 1 1 160265 623 0.00 2019-11-09 17:52:51 2019-11-09 17:54:52 t 1 1 160268 566 0.00 2019-11-09 17:49:33 2019-11-09 17:55:13 t 1 1 160270 607 0.00 2019-11-09 17:55:58 2019-11-09 17:55:58 f 1 1 160272 220 0.00 2019-11-09 17:55:06 2019-11-09 17:56:25 t 1 1 160273 566 0.00 2019-11-09 17:55:13 2019-11-09 17:56:37 t 1 1 160275 220 0.00 2019-11-09 17:56:25 2019-11-09 17:57:02 t 1 1 160276 220 0.00 2019-11-09 17:57:02 2019-11-09 17:57:39 t 1 1 160280 422 0.00 2019-11-09 17:52:14 2019-11-09 17:59:49 t 1 1 160281 545 0.00 2019-11-09 17:56:35 2019-11-09 18:00:11 t 1 1 160282 422 0.00 2019-11-09 18:00:27 2019-11-09 18:01:19 t 1 1 160286 503 0.00 2019-11-09 18:02:17 2019-11-09 18:02:38 t 1 1 160291 220 0.00 2019-11-09 18:03:05 2019-11-09 18:03:43 t 1 1 160293 422 0.00 2019-11-09 18:02:47 2019-11-09 18:04:32 t 1 1 160297 220 0.00 2019-11-09 18:04:25 2019-11-09 18:05:03 t 1 1 160301 503 0.00 2019-11-09 18:04:50 2019-11-09 18:06:30 t 1 1 160302 607 0.00 2019-11-09 17:58:06 2019-11-09 18:08:07 t 1 1 160304 220 0.00 2019-11-09 18:05:02 2019-11-09 18:08:33 t 1 1 160307 578 0.00 2019-11-09 17:59:43 2019-11-09 18:09:20 t 1 1 160309 615 0.00 2019-11-09 17:52:13 2019-11-09 18:09:34 t 1 1 160313 587 0.00 2019-11-09 18:03:13 2019-11-09 18:10:14 t 1 1 160315 554 0.00 2019-11-09 17:09:32 2019-11-09 18:11:06 t 1 1 160317 220 0.00 2019-11-09 18:09:11 2019-11-09 18:11:30 t 1 1 160318 220 0.00 2019-11-09 18:11:29 2019-11-09 18:12:07 t 1 1 160322 623 0.00 2019-11-09 18:15:31 2019-11-09 18:15:31 f 1 1 160324 615 0.00 2019-11-09 18:09:34 2019-11-09 18:16:34 t 1 1 160326 623 0.00 2019-11-09 18:15:11 2019-11-09 18:17:07 t 1 1 160327 422 0.00 2019-11-09 18:17:12 2019-11-09 18:17:50 t 1 1 160328 416 0.00 2019-11-09 18:03:18 2019-11-09 18:18:49 t 1 1 160334 645 0.00 2019-11-09 18:18:49 2019-11-09 18:21:24 t 1 1 160336 220 0.00 2019-11-09 18:12:07 2019-11-09 18:21:52 t 1 1 160337 516 0.00 2019-11-09 18:13:56 2019-11-09 18:22:29 t 1 1 160339 587 0.00 2019-11-09 18:17:09 2019-11-09 18:24:46 t 1 1 160344 585 0.00 2019-11-09 18:25:09 2019-11-09 18:27:31 t 1 1 160346 220 0.00 2019-11-09 18:24:37 2019-11-09 18:27:52 t 1 1 160299 451 0.00 2019-11-09 17:53:16 2019-11-09 18:05:35 t 1 1 160303 623 0.00 2019-11-09 17:56:35 2019-11-09 18:08:30 t 1 1 160311 623 0.00 2019-11-09 18:08:35 2019-11-09 18:10:07 t 1 1 160316 623 0.00 2019-11-09 18:10:07 2019-11-09 18:11:07 t 1 1 160319 503 0.00 2019-11-09 18:05:48 2019-11-09 18:12:27 t 1 1 160320 623 0.00 2019-11-09 18:14:04 2019-11-09 18:14:16 t 1 1 160325 587 0.00 2019-11-09 18:11:02 2019-11-09 18:16:51 t 1 1 160331 554 0.00 2019-11-09 18:15:09 2019-11-09 18:19:35 t 1 1 160333 422 0.00 2019-11-09 18:18:16 2019-11-09 18:21:10 t 1 1 160338 220 0.00 2019-11-09 18:21:52 2019-11-09 18:24:37 t 1 1 160341 375 0.00 2019-11-09 18:10:56 2019-11-09 18:25:25 t 1 1 160342 587 0.00 2019-11-09 18:25:17 2019-11-09 18:26:32 t 1 1 160350 375 0.00 2019-11-09 18:27:50 2019-11-09 18:30:01 t 1 1 160355 578 0.00 2019-11-09 18:19:30 2019-11-09 18:32:10 t 1 1 160357 416 0.00 2019-11-09 18:25:43 2019-11-09 18:33:28 t 1 1 160359 591 0.00 2019-11-09 18:34:43 2019-11-09 18:36:04 t 1 1 160363 587 0.00 2019-11-09 18:29:26 2019-11-09 18:38:19 t 1 1 160366 430 0.00 2019-11-09 18:37:07 2019-11-09 18:40:02 t 1 1 160372 631 0.00 2019-11-09 18:41:46 2019-11-09 18:41:59 t 1 1 160378 485 0.00 2019-11-09 18:44:32 2019-11-09 18:45:13 t 1 1 160382 485 0.00 2019-11-09 18:45:13 2019-11-09 18:46:43 t 1 1 160386 514 0.00 2019-11-09 17:11:01 2019-11-09 18:47:53 t 1 1 160388 622 0.00 2019-11-09 17:48:40 2019-11-09 18:50:18 t 1 1 160391 430 0.00 2019-11-09 18:50:30 2019-11-09 18:50:37 t 1 1 160395 587 0.00 2019-11-09 18:46:54 2019-11-09 18:54:23 t 1 1 160397 430 0.00 2019-11-09 18:54:32 2019-11-09 18:54:55 t 1 1 160400 566 0.00 2019-11-09 18:38:51 2019-11-09 18:57:56 t 1 1 160401 430 0.00 2019-11-09 18:56:15 2019-11-09 18:58:04 t 1 1 160403 587 0.00 2019-11-09 18:54:22 2019-11-09 18:58:42 t 1 1 160404 430 0.00 2019-11-09 18:58:52 2019-11-09 18:59:05 t 1 1 160406 430 0.00 2019-11-09 18:59:40 2019-11-09 19:00:32 t 1 1 160409 570 0.00 2019-11-09 18:18:04 2019-11-09 19:02:54 t 1 1 160412 622 0.00 2019-11-09 18:56:12 2019-11-09 19:05:27 t 1 1 160413 566 0.00 2019-11-09 18:57:56 2019-11-09 19:06:16 t 1 1 160414 430 0.00 2019-11-09 19:05:44 2019-11-09 19:06:50 t 1 1 160418 566 0.00 2019-11-09 19:06:16 2019-11-09 19:11:58 t 1 1 160421 631 0.00 2019-11-09 19:11:42 2019-11-09 19:12:37 t 1 1 160429 615 0.00 2019-11-09 19:15:47 2019-11-09 19:18:44 t 1 1 160431 220 0.00 2019-11-09 18:36:22 2019-11-09 19:23:07 t 1 1 160432 520 0.00 2019-11-09 19:12:27 2019-11-09 19:23:35 t 1 1 160435 456 0.00 2019-11-09 19:23:26 2019-11-09 19:25:38 t 1 1 160437 485 0.00 2019-11-09 19:22:40 2019-11-09 19:26:13 t 1 1 160438 566 0.00 2019-11-09 19:17:47 2019-11-09 19:26:19 t 1 1 160441 570 0.00 2019-11-09 19:26:36 2019-11-09 19:29:21 t 1 1 160447 570 0.00 2019-11-09 19:29:21 2019-11-09 19:35:52 t 1 1 160449 512 0.00 2019-11-09 19:07:44 2019-11-09 19:37:24 t 1 1 160450 633 0.00 2019-11-09 19:36:12 2019-11-09 19:40:55 t 1 1 160451 597 0.00 2019-11-09 19:39:09 2019-11-09 19:41:00 t 1 1 160453 456 0.00 2019-11-09 19:25:37 2019-11-09 19:41:53 t 1 1 160459 538 0.00 2019-11-09 19:27:46 2019-11-09 19:46:50 t 1 1 160460 622 0.00 2019-11-09 19:42:31 2019-11-09 19:47:10 t 1 1 160464 551 0.00 2019-11-09 19:41:47 2019-11-09 19:48:04 t 1 1 160466 633 0.00 2019-11-09 19:40:56 2019-11-09 19:48:54 t 1 1 160467 570 0.00 2019-11-09 19:47:55 2019-11-09 19:49:06 t 1 1 160470 645 0.00 2019-11-09 19:49:30 2019-11-09 19:53:26 t 1 1 160472 625 0.00 2019-11-09 19:52:34 2019-11-09 19:55:07 t 1 1 160474 625 0.00 2019-11-09 19:55:26 2019-11-09 19:56:51 t 1 1 160476 637 0.00 2019-11-09 19:08:27 2019-11-09 19:59:34 t 1 1 160479 220 0.00 2019-11-09 20:00:21 2019-11-09 20:00:31 t 1 1 160480 220 0.00 2019-11-09 20:00:31 2019-11-09 20:00:45 t 1 1 160489 633 0.00 2019-11-09 19:48:54 2019-11-09 20:03:47 t 1 1 160492 220 0.00 2019-11-09 20:04:05 2019-11-09 20:04:24 t 1 1 160494 220 0.00 2019-11-09 20:04:24 2019-11-09 20:04:35 t 1 1 160496 220 0.00 2019-11-09 20:04:35 2019-11-09 20:04:45 t 1 1 160499 220 0.00 2019-11-09 20:05:05 2019-11-09 20:05:17 t 1 1 160501 597 0.00 2019-11-09 20:05:04 2019-11-09 20:05:52 t 1 1 160502 516 0.00 2019-11-09 20:04:20 2019-11-09 20:06:18 t 1 1 160504 611 0.00 2019-11-09 20:04:20 2019-11-09 20:07:04 t 1 1 160507 445 0.00 2019-11-09 19:52:13 2019-11-09 20:09:29 t 1 1 160512 451 0.00 2019-11-09 19:59:54 2019-11-09 20:15:22 t 1 1 160515 375 0.00 2019-11-09 20:02:30 2019-11-09 20:18:13 t 1 1 160525 220 0.00 2019-11-09 20:24:10 2019-11-09 20:24:31 t 1 1 160527 220 0.00 2019-11-09 20:24:31 2019-11-09 20:25:09 t 1 1 160529 220 0.00 2019-11-09 20:26:05 2019-11-09 20:26:41 t 1 1 160532 451 0.00 2019-11-09 20:15:22 2019-11-09 20:27:52 t 1 1 160533 220 0.00 2019-11-09 20:27:23 2019-11-09 20:28:02 t 1 1 160535 483 0.00 2019-11-09 20:24:53 2019-11-09 20:28:40 t 1 1 160537 220 0.00 2019-11-09 20:29:12 2019-11-09 20:29:57 t 1 1 160539 422 0.00 2019-11-09 20:29:43 2019-11-09 20:30:40 t 1 1 160540 220 0.00 2019-11-09 20:30:33 2019-11-09 20:31:05 t 1 1 160543 422 0.00 2019-11-09 20:32:47 2019-11-09 20:33:15 t 1 1 160550 220 0.00 2019-11-09 20:36:06 2019-11-09 20:36:15 t 1 1 160552 566 0.00 2019-11-09 20:26:42 2019-11-09 20:36:47 t 1 1 160553 220 0.00 2019-11-09 20:36:43 2019-11-09 20:36:50 t 1 1 160558 645 0.00 2019-11-09 20:37:24 2019-11-09 20:38:26 t 1 1 160562 637 0.00 2019-11-09 20:00:40 2019-11-09 20:39:39 t 1 1 160566 220 0.00 2019-11-09 20:39:43 2019-11-09 20:40:41 t 1 1 160567 220 0.00 2019-11-09 20:40:40 2019-11-09 20:41:19 t 1 1 160568 220 0.00 2019-11-09 20:41:19 2019-11-09 20:41:59 t 1 1 160570 645 0.00 2019-11-09 20:40:37 2019-11-09 20:42:47 t 1 1 160571 633 0.00 2019-11-09 20:07:07 2019-11-09 20:43:00 t 1 1 160573 220 0.00 2019-11-09 20:42:36 2019-11-09 20:43:26 t 1 1 160574 220 0.00 2019-11-09 20:43:26 2019-11-09 20:44:04 t 1 1 160577 220 0.00 2019-11-09 20:44:04 2019-11-09 20:44:38 t 1 1 160581 570 0.00 2019-11-09 20:44:50 2019-11-09 20:46:00 t 1 1 160583 637 0.00 2019-11-09 20:42:47 2019-11-09 20:46:31 t 1 1 160586 220 0.00 2019-11-09 20:47:08 2019-11-09 20:47:59 t 1 1 160588 375 0.00 2019-11-09 20:25:23 2019-11-09 20:49:30 t 1 1 160589 585 0.00 2019-11-09 20:49:04 2019-11-09 20:49:48 t 1 1 160594 422 0.00 2019-11-09 20:51:12 2019-11-09 20:51:20 t 1 1 160598 570 0.00 2019-11-09 20:51:56 2019-11-09 20:52:52 t 1 1 160601 597 0.00 2019-11-09 20:53:16 2019-11-09 20:53:54 t 1 1 160602 570 0.00 2019-11-09 20:52:51 2019-11-09 20:54:03 t 1 1 160604 422 0.00 2019-11-09 20:53:42 2019-11-09 20:54:31 t 1 1 160605 570 0.00 2019-11-09 20:54:02 2019-11-09 20:54:43 t 1 1 160607 570 0.00 2019-11-09 20:54:42 2019-11-09 20:55:26 t 1 1 160609 220 0.00 2019-11-09 20:54:46 2019-11-09 20:56:37 t 1 1 160310 585 0.00 2019-11-09 18:05:23 2019-11-09 18:09:35 t 1 1 160312 375 0.00 2019-11-09 18:05:22 2019-11-09 18:10:10 t 1 1 160314 587 0.00 2019-11-09 18:10:33 2019-11-09 18:10:47 t 1 1 160321 422 0.00 2019-11-09 18:04:38 2019-11-09 18:14:17 t 1 1 160323 623 0.00 2019-11-09 18:14:27 2019-11-09 18:16:07 t 1 1 160329 445 0.00 2019-11-09 17:47:56 2019-11-09 18:18:56 t 1 1 160330 578 0.00 2019-11-09 18:09:20 2019-11-09 18:19:30 t 1 1 160332 445 0.00 2019-11-09 18:18:55 2019-11-09 18:20:46 t 1 1 160335 445 0.00 2019-11-09 18:20:46 2019-11-09 18:21:51 t 1 1 160340 416 0.00 2019-11-09 18:19:06 2019-11-09 18:25:23 t 1 1 160343 430 0.00 2019-11-09 18:17:59 2019-11-09 18:26:53 t 1 1 160345 375 0.00 2019-11-09 18:25:24 2019-11-09 18:27:51 t 1 1 160347 516 0.00 2019-11-09 18:22:44 2019-11-09 18:27:54 t 1 1 160348 587 0.00 2019-11-09 18:26:53 2019-11-09 18:29:08 t 1 1 160349 422 0.00 2019-11-09 18:21:16 2019-11-09 18:29:52 t 1 1 160351 512 0.00 2019-11-09 17:50:21 2019-11-09 18:30:06 t 1 1 160354 615 0.00 2019-11-09 18:29:17 2019-11-09 18:31:34 t 1 1 160356 220 0.00 2019-11-09 18:30:52 2019-11-09 18:33:22 t 1 1 160358 597 0.00 2019-11-09 18:31:20 2019-11-09 18:34:27 t 1 1 160360 220 0.00 2019-11-09 18:33:22 2019-11-09 18:36:22 t 1 1 160361 375 0.00 2019-11-09 18:32:29 2019-11-09 18:37:04 t 1 1 160364 422 0.00 2019-11-09 18:29:52 2019-11-09 18:39:00 t 1 1 160370 430 0.00 2019-11-09 18:41:17 2019-11-09 18:41:35 t 1 1 160371 591 0.00 2019-11-09 18:40:39 2019-11-09 18:41:53 t 1 1 160376 430 0.00 2019-11-09 18:44:16 2019-11-09 18:44:17 t 1 1 160379 430 0.00 2019-11-09 18:44:52 2019-11-09 18:45:24 t 1 1 160380 375 0.00 2019-11-09 18:44:46 2019-11-09 18:46:30 t 1 1 160384 430 0.00 2019-11-09 18:46:17 2019-11-09 18:46:57 t 1 1 160385 430 0.00 2019-11-09 18:47:04 2019-11-09 18:47:06 t 1 1 160390 625 0.00 2019-11-09 18:47:55 2019-11-09 18:50:33 t 1 1 160393 645 0.00 2019-11-09 18:48:19 2019-11-09 18:51:07 t 1 1 160394 430 0.00 2019-11-09 18:52:46 2019-11-09 18:52:52 t 1 1 160396 430 0.00 2019-11-09 18:54:10 2019-11-09 18:54:27 t 1 1 160398 622 0.00 2019-11-09 18:50:18 2019-11-09 18:56:12 t 1 1 160407 615 0.00 2019-11-09 18:56:23 2019-11-09 19:00:47 t 1 1 160410 591 0.00 2019-11-09 18:41:53 2019-11-09 19:04:04 t 1 1 160415 633 0.00 2019-11-09 15:16:02 2019-11-09 19:07:50 t 1 1 160416 637 0.00 2019-11-09 18:09:36 2019-11-09 19:08:21 t 1 1 160420 520 0.00 2019-11-09 19:06:46 2019-11-09 19:12:27 t 1 1 160422 570 0.00 2019-11-09 19:03:39 2019-11-09 19:14:32 t 1 1 160424 631 0.00 2019-11-09 19:14:37 2019-11-09 19:15:02 t 1 1 160430 585 0.00 2019-11-09 19:10:20 2019-11-09 19:18:48 t 1 1 160433 445 0.00 2019-11-09 18:21:51 2019-11-09 19:23:37 t 1 1 160436 520 0.00 2019-11-09 19:23:34 2019-11-09 19:25:45 t 1 1 160440 645 0.00 2019-11-09 19:26:18 2019-11-09 19:27:31 t 1 1 160442 625 0.00 2019-11-09 19:26:22 2019-11-09 19:34:23 t 1 1 160452 551 0.00 2019-11-09 19:33:16 2019-11-09 19:41:47 t 1 1 160458 375 0.00 2019-11-09 19:11:41 2019-11-09 19:45:35 t 1 1 160463 570 0.00 2019-11-09 19:36:54 2019-11-09 19:47:56 t 1 1 160469 625 0.00 2019-11-09 19:47:42 2019-11-09 19:52:34 t 1 1 160477 551 0.00 2019-11-09 19:54:34 2019-11-09 20:00:19 t 1 1 160478 220 0.00 2019-11-09 19:55:50 2019-11-09 20:00:21 t 1 1 160484 375 0.00 2019-11-09 19:45:35 2019-11-09 20:02:24 t 1 1 160485 220 0.00 2019-11-09 20:02:02 2019-11-09 20:02:53 t 1 1 160486 220 0.00 2019-11-09 20:02:52 2019-11-09 20:03:25 t 1 1 160493 615 0.00 2019-11-09 20:02:09 2019-11-09 20:04:33 t 1 1 160495 631 0.00 2019-11-09 20:03:34 2019-11-09 20:04:43 t 1 1 160498 220 0.00 2019-11-09 20:04:55 2019-11-09 20:05:06 t 1 1 160503 578 0.00 2019-11-09 19:34:56 2019-11-09 20:06:21 t 1 1 160506 622 0.00 2019-11-09 19:47:10 2019-11-09 20:09:18 t 1 1 160509 422 0.00 2019-11-09 20:09:36 2019-11-09 20:11:50 t 1 1 160510 585 0.00 2019-11-09 20:07:33 2019-11-09 20:13:51 t 1 1 160511 566 0.00 2019-11-09 19:26:19 2019-11-09 20:14:07 t 1 1 160516 625 0.00 2019-11-09 19:56:51 2019-11-09 20:19:21 t 1 1 160520 220 0.00 2019-11-09 20:21:48 2019-11-09 20:22:20 t 1 1 160522 220 0.00 2019-11-09 20:22:19 2019-11-09 20:22:56 t 1 1 160523 220 0.00 2019-11-09 20:22:56 2019-11-09 20:23:32 t 1 1 160524 220 0.00 2019-11-09 20:23:32 2019-11-09 20:24:10 t 1 1 160526 375 0.00 2019-11-09 20:22:18 2019-11-09 20:24:59 t 1 1 160528 220 0.00 2019-11-09 20:25:09 2019-11-09 20:26:05 t 1 1 160530 566 0.00 2019-11-09 20:14:07 2019-11-09 20:26:42 t 1 1 160536 220 0.00 2019-11-09 20:28:35 2019-11-09 20:29:12 t 1 1 160546 220 0.00 2019-11-09 20:34:05 2019-11-09 20:34:56 t 1 1 160548 220 0.00 2019-11-09 20:05:26 2019-11-09 20:35:45 t 1 1 160549 220 0.00 2019-11-09 20:35:32 2019-11-09 20:36:06 t 1 1 160555 220 0.00 2019-11-09 20:36:49 2019-11-09 20:37:18 t 1 1 160556 220 0.00 2019-11-09 20:37:18 2019-11-09 20:37:27 t 1 1 160560 220 0.00 2019-11-09 20:38:33 2019-11-09 20:38:37 t 1 1 160564 220 0.00 2019-11-09 20:39:41 2019-11-09 20:39:43 t 1 1 160565 645 0.00 2019-11-09 20:38:58 2019-11-09 20:40:37 t 1 1 160572 585 0.00 2019-11-09 20:14:08 2019-11-09 20:43:25 t 1 1 160575 422 0.00 2019-11-09 20:33:15 2019-11-09 20:44:05 t 1 1 160576 570 0.00 2019-11-09 20:37:50 2019-11-09 20:44:10 t 1 1 160579 220 0.00 2019-11-09 20:44:38 2019-11-09 20:45:15 t 1 1 160582 566 0.00 2019-11-09 20:36:47 2019-11-09 20:46:28 t 1 1 160584 220 0.00 2019-11-09 20:40:30 2019-11-09 20:47:03 t 1 1 160587 625 0.00 2019-11-09 20:19:21 2019-11-09 20:48:07 t 1 1 160590 422 0.00 2019-11-09 20:44:05 2019-11-09 20:49:54 t 1 1 160592 220 0.00 2019-11-09 20:45:15 2019-11-09 20:50:34 t 1 1 160593 220 0.00 2019-11-09 20:50:33 2019-11-09 20:51:11 t 1 1 160595 570 0.00 2019-11-09 20:50:03 2019-11-09 20:51:56 t 1 1 160596 591 0.00 2019-11-09 20:20:33 2019-11-09 20:52:13 t 1 1 160597 220 0.00 2019-11-09 20:51:11 2019-11-09 20:52:20 t 1 1 160599 220 0.00 2019-11-09 20:52:20 2019-11-09 20:52:59 t 1 1 160600 422 0.00 2019-11-09 20:53:17 2019-11-09 20:53:33 t 1 1 160608 570 0.00 2019-11-09 20:55:26 2019-11-09 20:56:05 t 1 1 160612 481 0.00 2019-11-09 20:11:09 2019-11-09 20:57:38 t 1 1 160613 220 0.00 2019-11-09 20:57:14 2019-11-09 20:58:29 t 1 1 160615 220 0.00 2019-11-09 20:58:29 2019-11-09 20:59:06 t 1 1 160617 445 0.00 2019-11-09 20:14:05 2019-11-09 20:59:26 t 1 1 160623 220 0.00 2019-11-09 21:00:19 2019-11-09 21:00:54 t 1 1 160632 481 0.00 2019-11-09 20:58:33 2019-11-09 21:04:21 t 1 1 160633 220 0.00 2019-11-09 21:04:05 2019-11-09 21:04:45 t 1 1 160635 566 0.00 2019-11-09 20:58:43 2019-11-09 21:04:49 t 1 1 160637 220 0.00 2019-11-09 21:04:45 2019-11-09 21:05:22 t 1 1 160638 220 0.00 2019-11-09 21:05:22 2019-11-09 21:06:02 t 1 1 160643 625 0.00 2019-11-09 20:48:07 2019-11-09 21:10:38 t 1 1 160352 220 0.00 2019-11-09 18:27:52 2019-11-09 18:30:52 t 1 1 160353 375 0.00 2019-11-09 18:30:00 2019-11-09 18:31:05 t 1 1 160362 430 0.00 2019-11-09 18:26:53 2019-11-09 18:37:07 t 1 1 160365 485 0.00 2019-11-09 18:32:54 2019-11-09 18:39:37 t 1 1 160367 430 0.00 2019-11-09 18:40:07 2019-11-09 18:40:15 t 1 1 160368 430 0.00 2019-11-09 18:40:54 2019-11-09 18:40:56 t 1 1 160369 430 0.00 2019-11-09 18:41:10 2019-11-09 18:41:12 t 1 1 160373 430 0.00 2019-11-09 18:42:12 2019-11-09 18:42:14 t 1 1 160374 430 0.00 2019-11-09 18:43:14 2019-11-09 18:43:16 t 1 1 160375 375 0.00 2019-11-09 18:37:34 2019-11-09 18:44:05 t 1 1 160377 485 0.00 2019-11-09 18:39:37 2019-11-09 18:44:32 t 1 1 160381 615 0.00 2019-11-09 18:43:33 2019-11-09 18:46:38 t 1 1 160383 587 0.00 2019-11-09 18:38:36 2019-11-09 18:46:54 t 1 1 160387 625 0.00 2019-11-09 18:47:12 2019-11-09 18:47:55 t 1 1 160389 430 0.00 2019-11-09 18:48:02 2019-11-09 18:50:25 t 1 1 160392 430 0.00 2019-11-09 18:50:42 2019-11-09 18:50:48 t 1 1 160399 375 0.00 2019-11-09 18:46:45 2019-11-09 18:56:18 t 1 1 160402 430 0.00 2019-11-09 18:58:09 2019-11-09 18:58:17 t 1 1 160405 430 0.00 2019-11-09 18:59:13 2019-11-09 18:59:25 t 1 1 160408 430 0.00 2019-11-09 19:01:08 2019-11-09 19:02:20 t 1 1 160411 625 0.00 2019-11-09 18:50:33 2019-11-09 19:04:09 t 1 1 160417 375 0.00 2019-11-09 18:56:18 2019-11-09 19:11:30 t 1 1 160419 633 0.00 2019-11-09 19:07:56 2019-11-09 19:12:20 t 1 1 160423 587 0.00 2019-11-09 18:57:50 2019-11-09 19:14:37 t 1 1 160425 625 0.00 2019-11-09 19:04:09 2019-11-09 19:15:06 t 1 1 160426 615 0.00 2019-11-09 19:13:34 2019-11-09 19:15:48 t 1 1 160427 566 0.00 2019-11-09 19:11:58 2019-11-09 19:17:47 t 1 1 160428 591 0.00 2019-11-09 19:07:03 2019-11-09 19:18:08 t 1 1 160434 625 0.00 2019-11-09 19:15:06 2019-11-09 19:24:43 t 1 1 160439 445 0.00 2019-11-09 19:23:37 2019-11-09 19:26:52 t 1 1 160443 587 0.00 2019-11-09 19:14:37 2019-11-09 19:34:44 t 1 1 160444 578 0.00 2019-11-09 18:33:52 2019-11-09 19:34:56 t 1 1 160445 485 0.00 2019-11-09 19:26:13 2019-11-09 19:35:29 t 1 1 160446 625 0.00 2019-11-09 19:34:23 2019-11-09 19:35:35 t 1 1 160448 554 0.00 2019-11-09 19:33:23 2019-11-09 19:36:08 t 1 1 160454 622 0.00 2019-11-09 19:12:33 2019-11-09 19:42:31 t 1 1 160455 485 0.00 2019-11-09 19:35:29 2019-11-09 19:43:43 t 1 1 160456 587 0.00 2019-11-09 19:34:44 2019-11-09 19:44:41 t 1 1 160457 412 0.00 2019-11-09 16:21:00 2019-11-09 19:45:05 t 1 1 160461 625 0.00 2019-11-09 19:35:35 2019-11-09 19:47:42 t 1 1 160462 445 0.00 2019-11-09 19:26:52 2019-11-09 19:47:52 t 1 1 160465 485 0.00 2019-11-09 19:43:43 2019-11-09 19:48:16 t 1 1 160468 445 0.00 2019-11-09 19:47:52 2019-11-09 19:52:13 t 1 1 160471 551 0.00 2019-11-09 19:48:04 2019-11-09 19:54:34 t 1 1 160473 220 0.00 2019-11-09 18:12:50 2019-11-09 19:55:40 t 1 1 160475 597 0.00 2019-11-09 19:47:45 2019-11-09 19:59:32 t 1 1 160481 220 0.00 2019-11-09 20:00:45 2019-11-09 20:00:56 t 1 1 160482 220 0.00 2019-11-09 20:00:55 2019-11-09 20:01:50 t 1 1 160483 220 0.00 2019-11-09 20:01:49 2019-11-09 20:02:02 t 1 1 160487 516 0.00 2019-11-09 19:49:53 2019-11-09 20:03:34 t 1 1 160488 220 0.00 2019-11-09 20:03:24 2019-11-09 20:03:36 t 1 1 160490 220 0.00 2019-11-09 20:03:35 2019-11-09 20:03:55 t 1 1 160491 220 0.00 2019-11-09 20:03:54 2019-11-09 20:04:05 t 1 1 160497 220 0.00 2019-11-09 20:04:45 2019-11-09 20:04:56 t 1 1 160500 220 0.00 2019-11-09 20:05:16 2019-11-09 20:05:27 t 1 1 160505 516 0.00 2019-11-09 20:06:02 2019-11-09 20:08:30 t 1 1 160508 481 0.00 2019-11-09 19:58:06 2019-11-09 20:11:02 t 1 1 160513 622 0.00 2019-11-09 20:09:18 2019-11-09 20:15:36 t 1 1 160514 422 0.00 2019-11-09 20:15:51 2019-11-09 20:15:58 t 1 1 160517 578 0.00 2019-11-09 20:08:07 2019-11-09 20:19:58 t 1 1 160518 570 0.00 2019-11-09 20:17:42 2019-11-09 20:21:01 t 1 1 160519 220 0.00 2019-11-09 20:21:10 2019-11-09 20:21:48 t 1 1 160521 422 0.00 2019-11-09 20:22:08 2019-11-09 20:22:43 t 1 1 160531 220 0.00 2019-11-09 20:26:41 2019-11-09 20:27:24 t 1 1 160534 220 0.00 2019-11-09 20:28:01 2019-11-09 20:28:35 t 1 1 160538 220 0.00 2019-11-09 20:29:56 2019-11-09 20:30:33 t 1 1 160541 220 0.00 2019-11-09 20:31:05 2019-11-09 20:31:44 t 1 1 160542 422 0.00 2019-11-09 20:31:52 2019-11-09 20:32:35 t 1 1 160544 220 0.00 2019-11-09 20:31:44 2019-11-09 20:33:29 t 1 1 160545 220 0.00 2019-11-09 20:33:28 2019-11-09 20:34:05 t 1 1 160547 220 0.00 2019-11-09 20:34:55 2019-11-09 20:35:32 t 1 1 160551 220 0.00 2019-11-09 20:36:14 2019-11-09 20:36:43 t 1 1 160554 627 0.00 2019-11-09 20:35:45 2019-11-09 20:37:03 t 1 1 160557 220 0.00 2019-11-09 20:37:27 2019-11-09 20:37:58 t 1 1 160559 220 0.00 2019-11-09 20:37:58 2019-11-09 20:38:33 t 1 1 160561 220 0.00 2019-11-09 20:38:36 2019-11-09 20:39:05 t 1 1 160563 220 0.00 2019-11-09 20:39:05 2019-11-09 20:39:41 t 1 1 160569 220 0.00 2019-11-09 20:41:59 2019-11-09 20:42:36 t 1 1 160578 570 0.00 2019-11-09 20:44:09 2019-11-09 20:44:50 t 1 1 160580 627 0.00 2019-11-09 20:44:54 2019-11-09 20:45:18 t 1 1 160585 627 0.00 2019-11-09 20:46:39 2019-11-09 20:47:04 t 1 1 160591 570 0.00 2019-11-09 20:45:41 2019-11-09 20:50:16 t 1 1 160603 220 0.00 2019-11-09 20:52:59 2019-11-09 20:54:10 t 1 1 160606 220 0.00 2019-11-09 20:54:10 2019-11-09 20:54:46 t 1 1 160616 451 0.00 2019-11-09 20:45:45 2019-11-09 20:59:14 t 1 1 160620 220 0.00 2019-11-09 20:59:41 2019-11-09 21:00:19 t 1 1 160622 619 0.00 2019-11-09 20:57:14 2019-11-09 21:00:51 t 1 1 160625 220 0.00 2019-11-09 21:00:54 2019-11-09 21:01:31 t 1 1 160627 220 0.00 2019-11-09 20:48:13 2019-11-09 21:02:14 t 1 1 160628 538 0.00 2019-11-09 20:40:30 2019-11-09 21:03:08 t 1 1 160630 220 0.00 2019-11-09 21:01:31 2019-11-09 21:03:27 t 1 1 160636 585 0.00 2019-11-09 20:49:48 2019-11-09 21:05:11 t 1 1 160649 627 0.00 2019-11-09 21:13:30 2019-11-09 21:19:21 t 1 1 160651 375 0.00 2019-11-09 21:16:45 2019-11-09 21:20:26 t 1 1 160656 627 0.00 2019-11-09 21:20:10 2019-11-09 21:22:29 t 1 1 160659 220 0.00 2019-11-09 21:21:31 2019-11-09 21:23:05 t 1 1 160661 430 0.00 2019-11-09 21:08:23 2019-11-09 21:23:50 t 1 1 160662 510 0.00 2019-11-09 20:52:53 2019-11-09 21:24:20 t 1 1 160666 430 0.00 2019-11-09 21:23:55 2019-11-09 21:25:11 t 1 1 160672 375 0.00 2019-11-09 21:20:27 2019-11-09 21:34:51 t 1 1 160676 622 0.00 2019-11-09 21:04:45 2019-11-09 21:36:30 t 1 1 160679 566 0.00 2019-11-09 21:24:46 2019-11-09 21:37:18 t 1 1 160684 528 0.00 2019-11-09 21:42:30 2019-11-09 21:43:11 t 1 1 160685 430 0.00 2019-11-09 21:34:50 2019-11-09 21:44:01 t 1 1 160687 566 0.00 2019-11-09 21:37:18 2019-11-09 21:45:05 t 1 1 160689 430 0.00 2019-11-09 21:44:19 2019-11-09 21:45:26 t 1 1 160692 623 0.00 2019-11-09 21:45:43 2019-11-09 21:46:13 t 1 1 160610 570 0.00 2019-11-09 20:56:05 2019-11-09 20:57:05 t 1 1 160611 220 0.00 2019-11-09 20:56:37 2019-11-09 20:57:14 t 1 1 160614 566 0.00 2019-11-09 20:46:28 2019-11-09 20:58:43 t 1 1 160618 220 0.00 2019-11-09 20:59:06 2019-11-09 20:59:41 t 1 1 160619 627 0.00 2019-11-09 20:54:34 2019-11-09 21:00:03 t 1 1 160621 483 0.00 2019-11-09 20:28:54 2019-11-09 21:00:20 t 1 1 160624 627 0.00 2019-11-09 21:00:44 2019-11-09 21:00:58 t 1 1 160626 570 0.00 2019-11-09 20:57:04 2019-11-09 21:01:54 t 1 1 160629 627 0.00 2019-11-09 21:02:51 2019-11-09 21:03:08 t 1 1 160631 220 0.00 2019-11-09 21:03:27 2019-11-09 21:04:05 t 1 1 160634 622 0.00 2019-11-09 20:18:42 2019-11-09 21:04:45 t 1 1 160639 220 0.00 2019-11-09 21:06:02 2019-11-09 21:06:39 t 1 1 160640 512 0.00 2019-11-09 20:46:45 2019-11-09 21:07:24 t 1 1 160641 483 0.00 2019-11-09 21:07:09 2019-11-09 21:08:06 t 1 1 160642 220 0.00 2019-11-09 21:06:39 2019-11-09 21:09:08 t 1 1 160645 645 0.00 2019-11-09 21:13:15 2019-11-09 21:14:16 t 1 1 160648 645 0.00 2019-11-09 21:14:15 2019-11-09 21:18:41 t 1 1 160652 645 0.00 2019-11-09 21:20:18 2019-11-09 21:20:26 t 1 1 160653 422 0.00 2019-11-09 21:20:02 2019-11-09 21:20:44 t 1 1 160657 591 0.00 2019-11-09 20:52:13 2019-11-09 21:22:48 t 1 1 160658 585 0.00 2019-11-09 21:19:53 2019-11-09 21:22:54 t 1 1 160664 625 0.00 2019-11-09 21:10:38 2019-11-09 21:24:49 t 1 1 160667 220 0.00 2019-11-09 21:23:32 2019-11-09 21:25:14 t 1 1 160668 422 0.00 2019-11-09 21:27:04 2019-11-09 21:27:39 t 1 1 160671 430 0.00 2019-11-09 21:25:18 2019-11-09 21:34:39 t 1 1 160673 483 0.00 2019-11-09 21:08:06 2019-11-09 21:35:30 t 1 1 160677 528 0.00 2019-11-09 21:37:06 2019-11-09 21:37:07 t 1 1 160681 375 0.00 2019-11-09 21:36:03 2019-11-09 21:41:01 t 1 1 160686 623 0.00 2019-11-09 21:42:59 2019-11-09 21:44:35 t 1 1 160690 623 0.00 2019-11-09 21:44:52 2019-11-09 21:45:37 t 1 1 160694 375 0.00 2019-11-09 21:44:17 2019-11-09 21:49:01 t 1 1 160698 623 0.00 2019-11-09 21:50:53 2019-11-09 21:51:14 t 1 1 160699 623 0.00 2019-11-09 21:51:20 2019-11-09 21:51:21 t 1 1 160701 422 0.00 2019-11-09 21:51:41 2019-11-09 21:53:08 t 1 1 160702 623 0.00 2019-11-09 21:53:42 2019-11-09 21:54:25 t 1 1 160705 483 0.00 2019-11-09 21:57:33 2019-11-09 21:57:48 t 1 1 160708 623 0.00 2019-11-09 21:59:02 2019-11-09 21:59:24 t 1 1 160713 570 0.00 2019-11-09 21:43:30 2019-11-09 22:01:00 t 1 1 160714 623 0.00 2019-11-09 22:01:15 2019-11-09 22:01:24 t 1 1 160717 623 0.00 2019-11-09 22:04:21 2019-11-09 22:04:30 t 1 1 160723 375 0.00 2019-11-09 22:01:31 2019-11-09 22:06:29 t 1 1 160726 637 0.00 2019-11-09 21:47:02 2019-11-09 22:08:26 t 1 1 160733 375 0.00 2019-11-09 22:11:20 2019-11-09 22:12:07 t 1 1 160737 520 0.00 2019-11-09 22:04:52 2019-11-09 22:14:18 t 1 1 160738 607 0.00 2019-11-09 22:06:22 2019-11-09 22:14:39 t 1 1 160743 623 0.00 2019-11-09 22:16:37 2019-11-09 22:16:50 t 1 1 160744 623 0.00 2019-11-09 22:17:36 2019-11-09 22:17:49 t 1 1 160745 623 0.00 2019-11-09 22:16:25 2019-11-09 22:18:08 t 1 1 160747 520 0.00 2019-11-09 22:14:27 2019-11-09 22:18:57 t 1 1 160758 503 0.00 2019-11-09 22:22:43 2019-11-09 22:23:41 t 1 1 160761 623 0.00 2019-11-09 22:25:23 2019-11-09 22:25:25 t 1 1 160763 623 0.00 2019-11-09 22:26:36 2019-11-09 22:26:43 t 1 1 160765 623 0.00 2019-11-09 22:28:31 2019-11-09 22:29:02 t 1 1 160769 501 0.00 2019-11-09 22:31:39 2019-11-09 22:31:39 f 1 1 160772 520 0.00 2019-11-09 22:22:51 2019-11-09 22:33:57 t 1 1 160776 623 0.00 2019-11-09 22:36:09 2019-11-09 22:36:11 t 1 1 160779 485 0.00 2019-11-09 22:32:41 2019-11-09 22:37:06 t 1 1 160780 625 0.00 2019-11-09 21:47:33 2019-11-09 22:37:53 t 1 1 160782 645 0.00 2019-11-09 22:30:49 2019-11-09 22:38:09 t 1 1 160783 485 0.00 2019-11-09 22:37:05 2019-11-09 22:39:03 t 1 1 160791 623 0.00 2019-11-09 22:43:16 2019-11-09 22:43:18 t 1 1 160796 623 0.00 2019-11-09 22:45:04 2019-11-09 22:45:19 t 1 1 160798 591 0.00 2019-11-09 22:05:18 2019-11-09 22:46:15 t 1 1 160802 422 0.00 2019-11-09 22:48:15 2019-11-09 22:48:40 t 1 1 160805 220 0.00 2019-11-09 22:22:38 2019-11-09 22:50:50 t 1 1 160807 422 0.00 2019-11-09 22:50:21 2019-11-09 22:51:26 t 1 1 160809 587 0.00 2019-11-09 22:48:45 2019-11-09 22:51:40 t 1 1 160811 623 0.00 2019-11-09 22:52:36 2019-11-09 22:52:38 t 1 1 160813 587 0.00 2019-11-09 22:52:15 2019-11-09 22:53:18 t 1 1 160814 422 0.00 2019-11-09 22:53:34 2019-11-09 22:53:48 t 1 1 160815 485 0.00 2019-11-09 22:48:04 2019-11-09 22:54:00 t 1 1 160817 587 0.00 2019-11-09 22:53:47 2019-11-09 22:55:36 t 1 1 160819 481 0.00 2019-11-09 22:14:31 2019-11-09 22:56:06 t 1 1 160821 422 0.00 2019-11-09 22:55:39 2019-11-09 22:57:12 t 1 1 160824 422 0.00 2019-11-09 22:57:59 2019-11-09 22:58:13 t 1 1 160826 220 0.00 2019-11-09 22:09:52 2019-11-09 22:59:27 t 1 1 160828 422 0.00 2019-11-09 23:00:03 2019-11-09 23:00:14 t 1 1 160831 587 0.00 2019-11-09 22:55:55 2019-11-09 23:02:34 t 1 1 160833 623 0.00 2019-11-09 23:05:04 2019-11-09 23:05:26 t 1 1 160838 587 0.00 2019-11-09 23:02:34 2019-11-09 23:08:31 t 1 1 160839 623 0.00 2019-11-09 23:08:40 2019-11-09 23:08:42 t 1 1 160842 587 0.00 2019-11-09 23:08:41 2019-11-09 23:11:46 t 1 1 160844 619 0.00 2019-11-09 22:26:42 2019-11-09 23:11:55 t 1 1 160845 587 0.00 2019-11-09 23:11:46 2019-11-09 23:12:33 t 1 1 160846 587 0.00 2019-11-09 23:12:44 2019-11-09 23:13:04 t 1 1 160847 538 0.00 2019-11-09 21:03:38 2019-11-09 23:14:43 t 1 1 160853 445 0.00 2019-11-09 23:19:59 2019-11-09 23:20:49 t 1 1 160855 623 0.00 2019-11-09 23:21:04 2019-11-09 23:21:05 t 1 1 160856 623 0.00 2019-11-09 23:21:11 2019-11-09 23:21:14 t 1 1 160858 445 0.00 2019-11-09 23:20:49 2019-11-09 23:21:40 t 1 1 160860 623 0.00 2019-11-09 23:20:58 2019-11-09 23:22:08 t 1 1 160864 587 0.00 2019-11-09 23:24:34 2019-11-09 23:25:27 t 1 1 160870 430 0.00 2019-11-09 23:26:46 2019-11-09 23:26:53 t 1 1 160871 445 0.00 2019-11-09 23:21:39 2019-11-09 23:27:27 t 1 1 160875 566 0.00 2019-11-09 23:14:06 2019-11-09 23:29:39 t 1 1 160876 430 0.00 2019-11-09 23:29:41 2019-11-09 23:29:46 t 1 1 160877 619 0.00 2019-11-09 23:22:43 2019-11-09 23:29:58 t 1 1 160879 587 0.00 2019-11-09 23:28:06 2019-11-09 23:30:44 t 1 1 160880 623 0.00 2019-11-09 23:30:50 2019-11-09 23:30:54 t 1 1 160884 551 0.00 2019-11-09 22:43:22 2019-11-09 23:33:57 t 1 1 160885 587 0.00 2019-11-09 23:30:44 2019-11-09 23:35:09 t 1 1 160886 430 0.00 2019-11-09 23:35:32 2019-11-09 23:35:44 t 1 1 160889 570 0.00 2019-11-09 23:26:51 2019-11-09 23:36:57 t 1 1 160890 562 0.00 2019-11-09 23:34:15 2019-11-09 23:37:40 t 1 1 160893 512 0.00 2019-11-09 23:17:30 2019-11-09 23:39:55 t 1 1 160894 623 0.00 2019-11-09 23:40:59 2019-11-09 23:41:00 t 1 1 160897 375 0.00 2019-11-09 23:30:34 2019-11-09 23:42:07 t 1 1 160644 627 0.00 2019-11-09 21:12:15 2019-11-09 21:13:11 t 1 1 160646 375 0.00 2019-11-09 20:49:37 2019-11-09 21:14:40 t 1 1 160647 422 0.00 2019-11-09 20:55:44 2019-11-09 21:17:02 t 1 1 160650 220 0.00 2019-11-09 21:10:16 2019-11-09 21:19:55 t 1 1 160654 645 0.00 2019-11-09 21:20:43 2019-11-09 21:20:50 t 1 1 160655 220 0.00 2019-11-09 21:19:57 2019-11-09 21:21:22 t 1 1 160660 570 0.00 2019-11-09 21:22:15 2019-11-09 21:23:36 t 1 1 160663 566 0.00 2019-11-09 21:04:49 2019-11-09 21:24:46 t 1 1 160665 607 0.00 2019-11-09 19:24:42 2019-11-09 21:25:03 t 1 1 160669 570 0.00 2019-11-09 21:27:30 2019-11-09 21:29:51 t 1 1 160670 625 0.00 2019-11-09 21:24:49 2019-11-09 21:30:32 t 1 1 160674 645 0.00 2019-11-09 21:20:56 2019-11-09 21:35:55 t 1 1 160675 528 0.00 2019-11-09 21:31:29 2019-11-09 21:36:24 t 1 1 160678 597 0.00 2019-11-09 21:28:54 2019-11-09 21:37:07 t 1 1 160680 585 0.00 2019-11-09 21:34:21 2019-11-09 21:37:35 t 1 1 160682 422 0.00 2019-11-09 21:37:58 2019-11-09 21:41:20 t 1 1 160683 483 0.00 2019-11-09 21:35:30 2019-11-09 21:42:21 t 1 1 160688 637 0.00 2019-11-09 20:47:28 2019-11-09 21:45:23 t 1 1 160691 623 0.00 2019-11-09 21:44:40 2019-11-09 21:46:08 t 1 1 160700 623 0.00 2019-11-09 21:52:15 2019-11-09 21:52:16 t 1 1 160703 528 0.00 2019-11-09 21:45:46 2019-11-09 21:57:10 t 1 1 160704 375 0.00 2019-11-09 21:56:35 2019-11-09 21:57:26 t 1 1 160707 622 0.00 2019-11-09 21:36:30 2019-11-09 21:59:21 t 1 1 160709 510 0.00 2019-11-09 21:24:20 2019-11-09 21:59:51 t 1 1 160718 520 0.00 2019-11-09 22:03:11 2019-11-09 22:04:47 t 1 1 160720 591 0.00 2019-11-09 21:22:53 2019-11-09 22:05:18 t 1 1 160721 623 0.00 2019-11-09 22:05:33 2019-11-09 22:05:41 t 1 1 160722 528 0.00 2019-11-09 22:05:15 2019-11-09 22:06:22 t 1 1 160724 566 0.00 2019-11-09 22:00:57 2019-11-09 22:07:41 t 1 1 160725 622 0.00 2019-11-09 21:59:21 2019-11-09 22:08:22 t 1 1 160727 585 0.00 2019-11-09 22:08:18 2019-11-09 22:09:54 t 1 1 160729 623 0.00 2019-11-09 22:10:42 2019-11-09 22:10:45 t 1 1 160730 375 0.00 2019-11-09 22:10:13 2019-11-09 22:11:20 t 1 1 160732 587 0.00 2019-11-09 22:06:40 2019-11-09 22:12:04 t 1 1 160741 481 0.00 2019-11-09 22:14:08 2019-11-09 22:16:08 t 1 1 160742 220 0.00 2019-11-09 22:13:58 2019-11-09 22:16:31 t 1 1 160749 623 0.00 2019-11-09 22:19:38 2019-11-09 22:19:56 t 1 1 160750 587 0.00 2019-11-09 22:14:57 2019-11-09 22:20:07 t 1 1 160752 622 0.00 2019-11-09 22:15:47 2019-11-09 22:20:24 t 1 1 160754 220 0.00 2019-11-09 22:18:44 2019-11-09 22:22:33 t 1 1 160755 623 0.00 2019-11-09 22:22:48 2019-11-09 22:23:00 t 1 1 160757 622 0.00 2019-11-09 22:20:24 2019-11-09 22:23:22 t 1 1 160759 514 0.00 2019-11-09 21:44:24 2019-11-09 22:24:57 t 1 1 160760 623 0.00 2019-11-09 22:24:58 2019-11-09 22:25:03 t 1 1 160762 445 0.00 2019-11-09 21:58:14 2019-11-09 22:25:44 t 1 1 160764 512 0.00 2019-11-09 21:57:14 2019-11-09 22:26:55 t 1 1 160766 623 0.00 2019-11-09 22:29:51 2019-11-09 22:30:25 t 1 1 160768 623 0.00 2019-11-09 22:30:59 2019-11-09 22:31:09 t 1 1 160771 514 0.00 2019-11-09 22:24:57 2019-11-09 22:32:44 t 1 1 160773 623 0.00 2019-11-09 22:35:02 2019-11-09 22:35:05 t 1 1 160775 545 0.00 2019-11-09 21:40:29 2019-11-09 22:35:35 t 1 1 160777 528 0.00 2019-11-09 22:35:27 2019-11-09 22:36:40 t 1 1 160781 623 0.00 2019-11-09 22:37:12 2019-11-09 22:37:56 t 1 1 160785 514 0.00 2019-11-09 22:32:44 2019-11-09 22:39:51 t 1 1 160789 623 0.00 2019-11-09 22:42:37 2019-11-09 22:42:39 t 1 1 160790 623 0.00 2019-11-09 22:42:47 2019-11-09 22:43:04 t 1 1 160792 422 0.00 2019-11-09 21:54:45 2019-11-09 22:43:21 t 1 1 160794 635 0.00 2019-11-09 22:11:45 2019-11-09 22:43:47 t 1 1 160797 623 0.00 2019-11-09 22:45:18 2019-11-09 22:45:20 t 1 1 160801 422 0.00 2019-11-09 22:48:01 2019-11-09 22:48:08 t 1 1 160803 587 0.00 2019-11-09 22:36:08 2019-11-09 22:48:45 t 1 1 160804 623 0.00 2019-11-09 22:50:16 2019-11-09 22:50:16 t 1 1 160806 623 0.00 2019-11-09 22:51:17 2019-11-09 22:51:18 t 1 1 160808 514 0.00 2019-11-09 22:39:51 2019-11-09 22:51:35 t 1 1 160810 622 0.00 2019-11-09 22:44:58 2019-11-09 22:51:50 t 1 1 160812 520 0.00 2019-11-09 22:41:23 2019-11-09 22:52:55 t 1 1 160818 445 0.00 2019-11-09 22:26:22 2019-11-09 22:55:55 t 1 1 160822 485 0.00 2019-11-09 22:54:00 2019-11-09 22:57:20 t 1 1 160825 591 0.00 2019-11-09 22:51:24 2019-11-09 22:58:39 t 1 1 160827 623 0.00 2019-11-09 23:00:01 2019-11-09 23:00:02 t 1 1 160829 422 0.00 2019-11-09 23:01:10 2019-11-09 23:01:24 t 1 1 160830 622 0.00 2019-11-09 22:57:57 2019-11-09 23:02:16 t 1 1 160832 422 0.00 2019-11-09 23:03:16 2019-11-09 23:03:31 t 1 1 160835 637 0.00 2019-11-09 22:08:53 2019-11-09 23:06:56 t 1 1 160841 623 0.00 2019-11-09 23:10:33 2019-11-09 23:10:36 t 1 1 160849 510 0.00 2019-11-09 21:59:51 2019-11-09 23:18:47 t 1 1 160850 430 0.00 2019-11-09 23:09:50 2019-11-09 23:19:49 t 1 1 160852 430 0.00 2019-11-09 23:20:18 2019-11-09 23:20:27 t 1 1 160854 430 0.00 2019-11-09 23:20:56 2019-11-09 23:21:02 t 1 1 160857 619 0.00 2019-11-09 23:13:58 2019-11-09 23:21:29 t 1 1 160859 430 0.00 2019-11-09 23:21:08 2019-11-09 23:21:52 t 1 1 160861 587 0.00 2019-11-09 23:13:18 2019-11-09 23:24:34 t 1 1 160862 622 0.00 2019-11-09 23:06:48 2019-11-09 23:24:53 t 1 1 160866 623 0.00 2019-11-09 23:25:49 2019-11-09 23:25:50 t 1 1 160872 587 0.00 2019-11-09 23:26:46 2019-11-09 23:27:50 t 1 1 160874 430 0.00 2019-11-09 23:28:33 2019-11-09 23:28:39 t 1 1 160882 430 0.00 2019-11-09 23:31:49 2019-11-09 23:31:52 t 1 1 160883 625 0.00 2019-11-09 23:08:06 2019-11-09 23:32:54 t 1 1 160892 619 0.00 2019-11-09 23:32:05 2019-11-09 23:38:49 t 1 1 160898 430 0.00 2019-11-09 23:44:47 2019-11-09 23:45:18 t 1 1 160903 430 0.00 2019-11-09 23:46:55 2019-11-09 23:47:12 t 1 1 160905 623 0.00 2019-11-09 23:49:25 2019-11-09 23:49:27 t 1 1 160907 430 0.00 2019-11-09 23:50:31 2019-11-09 23:50:48 t 1 1 160908 623 0.00 2019-11-09 23:51:06 2019-11-09 23:51:07 t 1 1 160909 430 0.00 2019-11-09 23:52:05 2019-11-09 23:52:07 t 1 1 160914 430 0.00 2019-11-09 23:52:40 2019-11-09 23:53:20 t 1 1 160916 430 0.00 2019-11-09 23:55:10 2019-11-09 23:55:32 t 1 1 160917 220 0.00 2019-11-09 23:47:04 2019-11-09 23:56:05 t 1 1 160919 430 0.00 2019-11-09 23:56:04 2019-11-09 23:56:21 t 1 1 160920 430 0.00 2019-11-09 23:56:34 2019-11-09 23:56:52 t 1 1 160921 430 0.00 2019-11-09 23:56:57 2019-11-09 23:56:59 t 1 1 160926 430 0.00 2019-11-10 00:01:06 2019-11-10 00:01:12 t 1 1 160928 623 0.00 2019-11-10 00:01:13 2019-11-10 00:02:10 t 1 1 160939 623 0.00 2019-11-10 00:07:50 2019-11-10 00:07:52 t 1 1 160940 430 0.00 2019-11-10 00:07:59 2019-11-10 00:08:06 t 1 1 160941 545 0.00 2019-11-10 00:06:12 2019-11-10 00:09:13 t 1 1 160943 430 0.00 2019-11-10 00:09:58 2019-11-10 00:10:11 t 1 1 160693 625 0.00 2019-11-09 21:30:32 2019-11-09 21:47:33 t 1 1 160695 623 0.00 2019-11-09 21:49:23 2019-11-09 21:49:25 t 1 1 160696 520 0.00 2019-11-09 21:22:52 2019-11-09 21:50:44 t 1 1 160697 422 0.00 2019-11-09 21:41:51 2019-11-09 21:51:01 t 1 1 160706 445 0.00 2019-11-09 20:59:26 2019-11-09 21:57:53 t 1 1 160710 520 0.00 2019-11-09 21:51:16 2019-11-09 22:00:50 t 1 1 160711 566 0.00 2019-11-09 21:45:05 2019-11-09 22:00:57 t 1 1 160712 528 0.00 2019-11-09 21:57:49 2019-11-09 22:00:59 t 1 1 160715 375 0.00 2019-11-09 21:57:19 2019-11-09 22:01:31 t 1 1 160716 520 0.00 2019-11-09 22:00:56 2019-11-09 22:03:06 t 1 1 160719 528 0.00 2019-11-09 22:01:10 2019-11-09 22:05:08 t 1 1 160728 375 0.00 2019-11-09 22:06:29 2019-11-09 22:10:14 t 1 1 160731 564 0.00 2019-11-09 17:37:33 2019-11-09 22:11:59 t 1 1 160734 481 0.00 2019-11-09 21:04:40 2019-11-09 22:13:43 t 1 1 160735 528 0.00 2019-11-09 22:11:45 2019-11-09 22:14:03 t 1 1 160736 375 0.00 2019-11-09 22:12:07 2019-11-09 22:14:16 t 1 1 160739 622 0.00 2019-11-09 22:08:22 2019-11-09 22:15:47 t 1 1 160740 623 0.00 2019-11-09 22:15:50 2019-11-09 22:15:52 t 1 1 160746 623 0.00 2019-11-09 22:18:01 2019-11-09 22:18:51 t 1 1 160748 645 0.00 2019-11-09 22:16:23 2019-11-09 22:19:36 t 1 1 160751 627 0.00 2019-11-09 22:00:52 2019-11-09 22:20:23 t 1 1 160753 623 0.00 2019-11-09 22:21:17 2019-11-09 22:21:20 t 1 1 160756 485 0.00 2019-11-09 22:07:02 2019-11-09 22:23:10 t 1 1 160767 622 0.00 2019-11-09 22:23:22 2019-11-09 22:30:25 t 1 1 160770 485 0.00 2019-11-09 22:23:10 2019-11-09 22:32:26 t 1 1 160774 627 0.00 2019-11-09 22:20:23 2019-11-09 22:35:09 t 1 1 160778 622 0.00 2019-11-09 22:30:25 2019-11-09 22:36:44 t 1 1 160784 625 0.00 2019-11-09 22:37:52 2019-11-09 22:39:24 t 1 1 160786 645 0.00 2019-11-09 22:38:09 2019-11-09 22:40:17 t 1 1 160787 520 0.00 2019-11-09 22:33:57 2019-11-09 22:41:23 t 1 1 160788 625 0.00 2019-11-09 22:39:24 2019-11-09 22:42:00 t 1 1 160793 551 0.00 2019-11-09 20:00:19 2019-11-09 22:43:22 t 1 1 160795 622 0.00 2019-11-09 22:36:44 2019-11-09 22:44:58 t 1 1 160799 545 0.00 2019-11-09 22:35:35 2019-11-09 22:47:44 t 1 1 160800 485 0.00 2019-11-09 22:39:30 2019-11-09 22:48:04 t 1 1 160816 623 0.00 2019-11-09 22:54:55 2019-11-09 22:55:02 t 1 1 160820 430 0.00 2019-11-09 22:54:47 2019-11-09 22:57:02 t 1 1 160823 622 0.00 2019-11-09 22:51:50 2019-11-09 22:57:57 t 1 1 160834 622 0.00 2019-11-09 23:02:16 2019-11-09 23:06:48 t 1 1 160836 625 0.00 2019-11-09 22:42:00 2019-11-09 23:08:06 t 1 1 160837 623 0.00 2019-11-09 23:08:18 2019-11-09 23:08:28 t 1 1 160840 570 0.00 2019-11-09 23:01:07 2019-11-09 23:09:02 t 1 1 160843 485 0.00 2019-11-09 23:02:01 2019-11-09 23:11:51 t 1 1 160848 538 0.00 2019-11-09 23:14:43 2019-11-09 23:16:29 t 1 1 160851 445 0.00 2019-11-09 22:55:55 2019-11-09 23:19:59 t 1 1 160863 430 0.00 2019-11-09 23:24:50 2019-11-09 23:25:07 t 1 1 160865 570 0.00 2019-11-09 23:18:27 2019-11-09 23:25:44 t 1 1 160867 587 0.00 2019-11-09 23:25:34 2019-11-09 23:25:56 t 1 1 160868 587 0.00 2019-11-09 23:26:00 2019-11-09 23:26:37 t 1 1 160869 514 0.00 2019-11-09 22:51:35 2019-11-09 23:26:47 t 1 1 160873 430 0.00 2019-11-09 23:28:09 2019-11-09 23:28:22 t 1 1 160878 375 0.00 2019-11-09 22:14:15 2019-11-09 23:30:34 t 1 1 160881 538 0.00 2019-11-09 23:16:01 2019-11-09 23:31:20 t 1 1 160887 623 0.00 2019-11-09 23:35:55 2019-11-09 23:35:57 t 1 1 160888 430 0.00 2019-11-09 23:36:54 2019-11-09 23:36:56 t 1 1 160891 623 0.00 2019-11-09 23:37:44 2019-11-09 23:37:46 t 1 1 160895 623 0.00 2019-11-09 23:41:21 2019-11-09 23:41:23 t 1 1 160896 430 0.00 2019-11-09 23:41:57 2019-11-09 23:42:05 t 1 1 160899 551 0.00 2019-11-09 23:33:57 2019-11-09 23:45:27 t 1 1 160900 430 0.00 2019-11-09 23:45:37 2019-11-09 23:45:50 t 1 1 160901 623 0.00 2019-11-09 23:46:05 2019-11-09 23:46:07 t 1 1 160904 220 0.00 2019-11-09 22:50:50 2019-11-09 23:47:16 t 1 1 160906 566 0.00 2019-11-09 23:29:39 2019-11-09 23:50:34 t 1 1 160910 619 0.00 2019-11-09 23:47:17 2019-11-09 23:52:16 t 1 1 160912 570 0.00 2019-11-09 23:36:57 2019-11-09 23:52:45 t 1 1 160913 622 0.00 2019-11-09 23:24:53 2019-11-09 23:53:14 t 1 1 160915 510 0.00 2019-11-09 23:18:47 2019-11-09 23:53:25 t 1 1 160923 430 0.00 2019-11-09 23:57:53 2019-11-09 23:57:56 t 1 1 160924 430 0.00 2019-11-09 23:59:03 2019-11-10 00:00:08 t 1 1 160927 570 0.00 2019-11-09 23:52:45 2019-11-10 00:02:09 t 1 1 160929 430 0.00 2019-11-10 00:02:07 2019-11-10 00:02:12 t 1 1 160930 430 0.00 2019-11-10 00:02:57 2019-11-10 00:02:59 t 1 1 160935 430 0.00 2019-11-10 00:05:15 2019-11-10 00:05:33 t 1 1 160937 623 0.00 2019-11-10 00:06:20 2019-11-10 00:06:41 t 1 1 160938 430 0.00 2019-11-10 00:07:17 2019-11-10 00:07:22 t 1 1 160945 619 0.00 2019-11-09 23:56:51 2019-11-10 00:11:44 t 1 1 160946 623 0.00 2019-11-10 00:11:46 2019-11-10 00:12:05 t 1 1 160947 623 0.00 2019-11-10 00:12:20 2019-11-10 00:12:21 t 1 1 160951 430 0.00 2019-11-10 00:13:03 2019-11-10 00:13:10 t 1 1 160954 430 0.00 2019-11-10 00:14:33 2019-11-10 00:14:34 t 1 1 160959 430 0.00 2019-11-10 00:17:40 2019-11-10 00:17:42 t 1 1 160961 551 0.00 2019-11-10 00:00:43 2019-11-10 00:18:06 t 1 1 160963 619 0.00 2019-11-10 00:12:55 2019-11-10 00:18:33 t 1 1 160968 430 0.00 2019-11-10 00:19:45 2019-11-10 00:19:51 t 1 1 160970 422 0.00 2019-11-10 00:20:37 2019-11-10 00:20:42 t 1 1 160972 566 0.00 2019-11-09 23:50:34 2019-11-10 00:22:19 t 1 1 160978 422 0.00 2019-11-10 00:25:32 2019-11-10 00:25:44 t 1 1 160980 375 0.00 2019-11-10 00:18:51 2019-11-10 00:27:36 t 1 1 160982 422 0.00 2019-11-10 00:27:34 2019-11-10 00:27:57 t 1 1 160983 422 0.00 2019-11-10 00:28:08 2019-11-10 00:28:16 t 1 1 160984 430 0.00 2019-11-10 00:28:23 2019-11-10 00:28:30 t 1 1 160985 422 0.00 2019-11-10 00:28:22 2019-11-10 00:28:45 t 1 1 160988 430 0.00 2019-11-10 00:29:23 2019-11-10 00:29:29 t 1 1 160997 623 0.00 2019-11-10 00:33:47 2019-11-10 00:33:50 t 1 1 161004 430 0.00 2019-11-10 00:37:39 2019-11-10 00:37:41 t 1 1 161008 430 0.00 2019-11-10 00:38:53 2019-11-10 00:38:55 t 1 1 161011 430 0.00 2019-11-10 00:40:51 2019-11-10 00:40:57 t 1 1 161014 566 0.00 2019-11-10 00:36:02 2019-11-10 00:42:46 t 1 1 161017 430 0.00 2019-11-10 00:43:39 2019-11-10 00:43:46 t 1 1 161020 587 0.00 2019-11-10 00:43:02 2019-11-10 00:44:59 t 1 1 161025 430 0.00 2019-11-10 00:47:16 2019-11-10 00:47:18 t 1 1 161026 623 0.00 2019-11-10 00:48:15 2019-11-10 00:48:23 t 1 1 161030 566 0.00 2019-11-10 00:42:46 2019-11-10 00:49:01 t 1 1 161033 430 0.00 2019-11-10 00:51:12 2019-11-10 00:51:17 t 1 1 161035 607 0.00 2019-11-09 22:14:39 2019-11-10 00:53:13 t 1 1 161039 430 0.00 2019-11-10 00:53:54 2019-11-10 00:54:31 t 1 1 161043 623 0.00 2019-11-10 00:54:02 2019-11-10 00:55:03 t 1 1 160902 619 0.00 2019-11-09 23:41:00 2019-11-09 23:46:37 t 1 1 160911 456 0.00 2019-11-09 23:26:50 2019-11-09 23:52:38 t 1 1 160918 623 0.00 2019-11-09 23:56:10 2019-11-09 23:56:12 t 1 1 160922 430 0.00 2019-11-09 23:57:10 2019-11-09 23:57:22 t 1 1 160925 551 0.00 2019-11-09 23:45:27 2019-11-10 00:00:43 t 1 1 160931 622 0.00 2019-11-09 23:53:14 2019-11-10 00:02:59 t 1 1 160932 570 0.00 2019-11-10 00:02:09 2019-11-10 00:03:54 t 1 1 160933 622 0.00 2019-11-10 00:02:59 2019-11-10 00:04:43 t 1 1 160934 430 0.00 2019-11-10 00:04:10 2019-11-10 00:05:10 t 1 1 160936 430 0.00 2019-11-10 00:06:14 2019-11-10 00:06:16 t 1 1 160942 430 0.00 2019-11-10 00:08:19 2019-11-10 00:10:08 t 1 1 160944 623 0.00 2019-11-10 00:10:05 2019-11-10 00:11:08 t 1 1 160949 430 0.00 2019-11-10 00:12:38 2019-11-10 00:12:44 t 1 1 160952 570 0.00 2019-11-10 00:03:53 2019-11-10 00:13:57 t 1 1 160953 623 0.00 2019-11-10 00:12:13 2019-11-10 00:14:08 t 1 1 160955 587 0.00 2019-11-09 23:35:09 2019-11-10 00:14:45 t 1 1 160960 422 0.00 2019-11-10 00:16:49 2019-11-10 00:17:45 t 1 1 160962 430 0.00 2019-11-10 00:18:10 2019-11-10 00:18:16 t 1 1 160964 623 0.00 2019-11-10 00:18:11 2019-11-10 00:18:40 t 1 1 160967 451 0.00 2019-11-10 00:00:54 2019-11-10 00:19:36 t 1 1 160969 422 0.00 2019-11-10 00:20:20 2019-11-10 00:20:31 t 1 1 160971 430 0.00 2019-11-10 00:21:49 2019-11-10 00:21:55 t 1 1 160974 623 0.00 2019-11-10 00:23:18 2019-11-10 00:23:39 t 1 1 160975 430 0.00 2019-11-10 00:23:54 2019-11-10 00:24:00 t 1 1 160976 422 0.00 2019-11-10 00:21:45 2019-11-10 00:25:04 t 1 1 160977 430 0.00 2019-11-10 00:25:11 2019-11-10 00:25:28 t 1 1 160979 430 0.00 2019-11-10 00:27:18 2019-11-10 00:27:20 t 1 1 160986 623 0.00 2019-11-10 00:28:43 2019-11-10 00:28:46 t 1 1 160987 430 0.00 2019-11-10 00:28:57 2019-11-10 00:29:14 t 1 1 160990 422 0.00 2019-11-10 00:29:42 2019-11-10 00:30:00 t 1 1 160992 430 0.00 2019-11-10 00:30:18 2019-11-10 00:30:20 t 1 1 160996 566 0.00 2019-11-10 00:22:19 2019-11-10 00:33:45 t 1 1 160999 430 0.00 2019-11-10 00:34:32 2019-11-10 00:34:33 t 1 1 161002 566 0.00 2019-11-10 00:33:45 2019-11-10 00:36:02 t 1 1 161003 538 0.00 2019-11-10 00:28:35 2019-11-10 00:36:59 t 1 1 161007 430 0.00 2019-11-10 00:38:46 2019-11-10 00:38:47 t 1 1 161012 487 0.00 2019-11-09 23:12:03 2019-11-10 00:42:18 t 1 2 161016 430 0.00 2019-11-10 00:43:10 2019-11-10 00:43:18 t 1 1 161018 430 0.00 2019-11-10 00:43:59 2019-11-10 00:44:10 t 1 1 161021 623 0.00 2019-11-10 00:44:52 2019-11-10 00:44:59 t 1 1 161023 430 0.00 2019-11-10 00:46:02 2019-11-10 00:46:05 t 1 1 161024 430 0.00 2019-11-10 00:47:05 2019-11-10 00:47:11 t 1 1 161028 430 0.00 2019-11-10 00:48:44 2019-11-10 00:48:52 t 1 1 161032 430 0.00 2019-11-10 00:50:10 2019-11-10 00:51:10 t 1 1 161037 566 0.00 2019-11-10 00:49:01 2019-11-10 00:53:55 t 1 1 161041 430 0.00 2019-11-10 00:54:48 2019-11-10 00:54:55 t 1 1 161042 375 0.00 2019-11-10 00:48:53 2019-11-10 00:55:01 t 1 1 161044 490 0.00 2019-11-10 00:45:13 2019-11-10 00:57:26 t 1 1 161048 430 0.00 2019-11-10 00:59:20 2019-11-10 00:59:24 t 1 1 161052 619 0.00 2019-11-10 00:59:40 2019-11-10 01:02:44 t 1 1 161053 430 0.00 2019-11-10 01:03:26 2019-11-10 01:03:28 t 1 1 161057 430 0.00 2019-11-10 01:05:34 2019-11-10 01:05:36 t 1 1 161064 430 0.00 2019-11-10 01:08:41 2019-11-10 01:08:47 t 1 1 161065 430 0.00 2019-11-10 01:09:16 2019-11-10 01:09:22 t 1 1 161068 587 0.00 2019-11-10 01:06:57 2019-11-10 01:11:39 t 1 1 161072 430 0.00 2019-11-10 01:13:32 2019-11-10 01:13:50 t 1 1 161074 623 0.00 2019-11-10 01:14:12 2019-11-10 01:14:12 t 1 1 161077 623 0.00 2019-11-10 01:14:43 2019-11-10 01:14:44 t 1 1 161080 430 0.00 2019-11-10 01:17:32 2019-11-10 01:18:32 t 1 1 161081 623 0.00 2019-11-10 01:19:19 2019-11-10 01:19:22 t 1 1 161082 566 0.00 2019-11-10 01:07:17 2019-11-10 01:20:06 t 1 1 161090 623 0.00 2019-11-10 01:23:17 2019-11-10 01:23:29 t 1 1 161093 430 0.00 2019-11-10 01:24:50 2019-11-10 01:25:06 t 1 1 161096 623 0.00 2019-11-10 01:28:25 2019-11-10 01:28:26 t 1 1 161102 566 0.00 2019-11-10 01:28:43 2019-11-10 01:33:56 t 1 1 161107 430 0.00 2019-11-10 01:37:36 2019-11-10 01:37:38 t 1 1 161108 587 0.00 2019-11-10 01:36:49 2019-11-10 01:38:28 t 1 1 161110 430 0.00 2019-11-10 01:38:38 2019-11-10 01:38:40 t 1 1 161111 619 0.00 2019-11-10 01:36:52 2019-11-10 01:39:02 t 1 1 161117 587 0.00 2019-11-10 01:39:27 2019-11-10 01:40:21 t 1 1 161121 430 0.00 2019-11-10 01:43:06 2019-11-10 01:44:06 t 1 1 161123 430 0.00 2019-11-10 01:45:10 2019-11-10 01:45:16 t 1 1 161124 623 0.00 2019-11-10 01:45:27 2019-11-10 01:46:27 t 1 1 161127 430 0.00 2019-11-10 01:48:16 2019-11-10 01:48:22 t 1 1 161128 430 0.00 2019-11-10 01:49:39 2019-11-10 01:49:40 t 1 1 161131 430 0.00 2019-11-10 01:51:23 2019-11-10 01:52:24 t 1 1 161134 430 0.00 2019-11-10 01:54:38 2019-11-10 01:54:45 t 1 1 161136 623 0.00 2019-11-10 01:55:35 2019-11-10 01:55:35 t 1 1 161137 430 0.00 2019-11-10 01:56:31 2019-11-10 01:56:33 t 1 1 161138 430 0.00 2019-11-10 01:57:33 2019-11-10 01:57:39 t 1 1 161142 623 0.00 2019-11-10 02:00:41 2019-11-10 02:00:41 t 1 1 161145 430 0.00 2019-11-10 02:03:02 2019-11-10 02:03:08 t 1 1 161148 623 0.00 2019-11-10 02:06:42 2019-11-10 02:06:59 t 1 1 161149 430 0.00 2019-11-10 02:07:17 2019-11-10 02:07:23 t 1 1 161151 623 0.00 2019-11-10 02:07:37 2019-11-10 02:07:43 t 1 1 161152 623 0.00 2019-11-10 02:08:05 2019-11-10 02:08:37 t 1 1 161156 623 0.00 2019-11-10 02:09:04 2019-11-10 02:09:10 t 1 1 161163 623 0.00 2019-11-10 02:11:08 2019-11-10 02:11:41 t 1 1 161168 619 0.00 2019-11-10 02:07:04 2019-11-10 02:13:14 t 1 1 161170 430 0.00 2019-11-10 02:13:28 2019-11-10 02:13:30 t 1 1 161172 623 0.00 2019-11-10 02:13:40 2019-11-10 02:13:42 t 1 1 161176 623 0.00 2019-11-10 02:14:14 2019-11-10 02:14:46 t 1 1 161179 623 0.00 2019-11-10 02:15:18 2019-11-10 02:15:50 t 1 1 161182 430 0.00 2019-11-10 02:14:28 2019-11-10 02:16:08 t 1 1 161183 623 0.00 2019-11-10 02:16:10 2019-11-10 02:16:27 t 1 1 161184 623 0.00 2019-11-10 02:16:26 2019-11-10 02:16:59 t 1 1 161188 430 0.00 2019-11-10 02:17:45 2019-11-10 02:17:51 t 1 1 161193 430 0.00 2019-11-10 02:18:36 2019-11-10 02:18:42 t 1 1 161194 623 0.00 2019-11-10 02:18:49 2019-11-10 02:19:21 t 1 1 161196 430 0.00 2019-11-10 02:19:54 2019-11-10 02:20:00 t 1 1 161201 623 0.00 2019-11-10 02:21:55 2019-11-10 02:21:56 t 1 1 161202 623 0.00 2019-11-10 02:22:02 2019-11-10 02:22:08 t 1 1 161203 587 0.00 2019-11-10 02:21:13 2019-11-10 02:22:55 t 1 1 161205 623 0.00 2019-11-10 02:22:28 2019-11-10 02:23:00 t 1 1 161207 623 0.00 2019-11-10 02:23:06 2019-11-10 02:23:11 t 1 1 161212 430 0.00 2019-11-10 02:25:04 2019-11-10 02:25:05 t 1 1 161215 623 0.00 2019-11-10 02:25:22 2019-11-10 02:25:23 t 1 1 160948 430 0.00 2019-11-10 00:12:27 2019-11-10 00:12:33 t 1 1 160950 430 0.00 2019-11-10 00:11:26 2019-11-10 00:13:08 t 1 1 160956 430 0.00 2019-11-10 00:15:03 2019-11-10 00:15:20 t 1 1 160957 430 0.00 2019-11-10 00:15:33 2019-11-10 00:15:40 t 1 1 160958 623 0.00 2019-11-10 00:15:47 2019-11-10 00:16:20 t 1 1 160965 375 0.00 2019-11-09 23:42:07 2019-11-10 00:18:51 t 1 1 160966 623 0.00 2019-11-10 00:18:52 2019-11-10 00:18:56 t 1 1 160973 430 0.00 2019-11-10 00:23:12 2019-11-10 00:23:14 t 1 1 160981 619 0.00 2019-11-10 00:22:52 2019-11-10 00:27:47 t 1 1 160989 490 0.00 2019-11-10 00:18:25 2019-11-10 00:29:45 t 1 1 160991 430 0.00 2019-11-10 00:29:58 2019-11-10 00:30:05 t 1 1 160993 430 0.00 2019-11-10 00:30:26 2019-11-10 00:31:27 t 1 1 160994 623 0.00 2019-11-10 00:32:13 2019-11-10 00:32:18 t 1 1 160995 430 0.00 2019-11-10 00:33:31 2019-11-10 00:33:43 t 1 1 160998 570 0.00 2019-11-10 00:13:57 2019-11-10 00:33:59 t 1 1 161000 490 0.00 2019-11-10 00:29:45 2019-11-10 00:35:19 t 1 1 161001 430 0.00 2019-11-10 00:35:33 2019-11-10 00:35:40 t 1 1 161005 514 0.00 2019-11-09 23:26:47 2019-11-10 00:38:34 t 1 1 161006 430 0.00 2019-11-10 00:38:39 2019-11-10 00:38:40 t 1 1 161009 375 0.00 2019-11-10 00:27:36 2019-11-10 00:39:04 t 1 1 161010 430 0.00 2019-11-10 00:39:49 2019-11-10 00:39:51 t 1 1 161013 587 0.00 2019-11-10 00:25:04 2019-11-10 00:42:20 t 1 1 161015 430 0.00 2019-11-10 00:42:58 2019-11-10 00:43:05 t 1 1 161019 430 0.00 2019-11-10 00:44:09 2019-11-10 00:44:43 t 1 1 161022 490 0.00 2019-11-10 00:35:19 2019-11-10 00:45:13 t 1 1 161027 623 0.00 2019-11-10 00:48:30 2019-11-10 00:48:42 t 1 1 161029 375 0.00 2019-11-10 00:39:04 2019-11-10 00:48:53 t 1 1 161031 623 0.00 2019-11-10 00:48:54 2019-11-10 00:49:02 t 1 1 161034 430 0.00 2019-11-10 00:51:22 2019-11-10 00:51:38 t 1 1 161036 430 0.00 2019-11-10 00:52:15 2019-11-10 00:53:16 t 1 1 161038 619 0.00 2019-11-10 00:41:52 2019-11-10 00:54:13 t 1 1 161040 430 0.00 2019-11-10 00:54:36 2019-11-10 00:54:42 t 1 1 161047 430 0.00 2019-11-10 00:58:58 2019-11-10 00:59:14 t 1 1 161051 430 0.00 2019-11-10 01:01:37 2019-11-10 01:01:44 t 1 1 161055 430 0.00 2019-11-10 01:04:14 2019-11-10 01:04:27 t 1 1 161056 430 0.00 2019-11-10 01:04:54 2019-11-10 01:05:13 t 1 1 161058 422 0.00 2019-11-10 00:30:21 2019-11-10 01:05:39 t 1 1 161059 587 0.00 2019-11-10 01:04:46 2019-11-10 01:06:24 t 1 1 161061 430 0.00 2019-11-10 01:06:36 2019-11-10 01:06:42 t 1 1 161062 607 0.00 2019-11-10 00:53:13 2019-11-10 01:07:08 t 1 1 161066 430 0.00 2019-11-10 01:09:43 2019-11-10 01:10:43 t 1 1 161067 430 0.00 2019-11-10 01:11:05 2019-11-10 01:11:22 t 1 1 161071 587 0.00 2019-11-10 01:12:04 2019-11-10 01:13:22 t 1 1 161073 430 0.00 2019-11-10 01:13:55 2019-11-10 01:14:00 t 1 1 161076 623 0.00 2019-11-10 01:14:33 2019-11-10 01:14:34 t 1 1 161084 430 0.00 2019-11-10 01:21:07 2019-11-10 01:22:09 t 1 1 161086 430 0.00 2019-11-10 01:22:19 2019-11-10 01:22:26 t 1 1 161089 430 0.00 2019-11-10 01:23:10 2019-11-10 01:23:16 t 1 1 161092 430 0.00 2019-11-10 01:24:27 2019-11-10 01:24:29 t 1 1 161094 430 0.00 2019-11-10 01:26:17 2019-11-10 01:27:18 t 1 1 161095 430 0.00 2019-11-10 01:28:19 2019-11-10 01:28:21 t 1 1 161097 566 0.00 2019-11-10 01:20:06 2019-11-10 01:28:43 t 1 1 161099 430 0.00 2019-11-10 01:29:29 2019-11-10 01:29:34 t 1 1 161104 430 0.00 2019-11-10 01:34:31 2019-11-10 01:34:33 t 1 1 161106 587 0.00 2019-11-10 01:24:45 2019-11-10 01:36:27 t 1 1 161112 623 0.00 2019-11-10 01:38:51 2019-11-10 01:39:03 t 1 1 161114 623 0.00 2019-11-10 01:39:15 2019-11-10 01:39:16 t 1 1 161115 430 0.00 2019-11-10 01:39:32 2019-11-10 01:39:55 t 1 1 161125 430 0.00 2019-11-10 01:47:15 2019-11-10 01:47:41 t 1 1 161126 430 0.00 2019-11-10 01:47:40 2019-11-10 01:48:11 t 1 1 161129 623 0.00 2019-11-10 01:50:54 2019-11-10 01:50:56 t 1 1 161133 430 0.00 2019-11-10 01:54:26 2019-11-10 01:54:33 t 1 1 161135 430 0.00 2019-11-10 01:55:29 2019-11-10 01:55:31 t 1 1 161139 623 0.00 2019-11-10 01:58:42 2019-11-10 01:58:43 t 1 1 161140 623 0.00 2019-11-10 01:58:49 2019-11-10 01:59:03 t 1 1 161141 430 0.00 2019-11-10 01:58:31 2019-11-10 01:59:59 t 1 1 161143 430 0.00 2019-11-10 02:00:59 2019-11-10 02:02:00 t 1 1 161146 430 0.00 2019-11-10 02:05:58 2019-11-10 02:06:10 t 1 1 161150 623 0.00 2019-11-10 02:06:59 2019-11-10 02:07:31 t 1 1 161154 623 0.00 2019-11-10 02:08:50 2019-11-10 02:08:51 t 1 1 161155 623 0.00 2019-11-10 02:08:57 2019-11-10 02:08:59 t 1 1 161161 570 0.00 2019-11-10 02:02:04 2019-11-10 02:10:31 t 1 1 161165 623 0.00 2019-11-10 02:10:46 2019-11-10 02:12:08 t 1 1 161166 430 0.00 2019-11-10 02:12:25 2019-11-10 02:12:32 t 1 1 161169 430 0.00 2019-11-10 02:12:53 2019-11-10 02:13:15 t 1 1 161171 623 0.00 2019-11-10 02:13:03 2019-11-10 02:13:35 t 1 1 161175 637 0.00 2019-11-09 23:07:05 2019-11-10 02:14:20 t 1 1 161177 623 0.00 2019-11-10 02:14:52 2019-11-10 02:14:58 t 1 1 161178 430 0.00 2019-11-10 02:15:28 2019-11-10 02:15:34 t 1 1 161186 623 0.00 2019-11-10 02:17:30 2019-11-10 02:17:32 t 1 1 161187 430 0.00 2019-11-10 02:17:33 2019-11-10 02:17:39 t 1 1 161190 430 0.00 2019-11-10 02:16:32 2019-11-10 02:18:09 t 1 1 161192 623 0.00 2019-11-10 02:18:30 2019-11-10 02:18:32 t 1 1 161199 587 0.00 2019-11-10 01:47:44 2019-11-10 02:21:13 t 1 1 161200 623 0.00 2019-11-10 02:21:17 2019-11-10 02:21:49 t 1 1 161209 623 0.00 2019-11-10 02:24:10 2019-11-10 02:24:16 t 1 1 161210 430 0.00 2019-11-10 02:23:45 2019-11-10 02:24:42 t 1 1 161211 430 0.00 2019-11-10 02:24:42 2019-11-10 02:24:58 t 1 1 161213 623 0.00 2019-11-10 02:24:36 2019-11-10 02:25:09 t 1 1 161214 623 0.00 2019-11-10 02:25:14 2019-11-10 02:25:16 t 1 1 161216 430 0.00 2019-11-10 02:25:16 2019-11-10 02:25:29 t 1 1 161218 430 0.00 2019-11-10 02:25:54 2019-11-10 02:26:10 t 1 1 161220 430 0.00 2019-11-10 02:28:20 2019-11-10 02:28:26 t 1 1 161225 623 0.00 2019-11-10 02:30:03 2019-11-10 02:30:25 t 1 1 161227 623 0.00 2019-11-10 02:31:09 2019-11-10 02:31:25 t 1 1 161229 623 0.00 2019-11-10 02:31:46 2019-11-10 02:31:54 t 1 1 161235 623 0.00 2019-11-10 02:33:36 2019-11-10 02:33:42 t 1 1 161240 430 0.00 2019-11-10 02:35:36 2019-11-10 02:35:38 t 1 1 161244 430 0.00 2019-11-10 02:39:47 2019-11-10 02:39:48 t 1 1 161247 430 0.00 2019-11-10 02:43:55 2019-11-10 02:44:03 t 1 1 161254 430 0.00 2019-11-10 02:51:31 2019-11-10 02:51:38 t 1 1 161257 430 0.00 2019-11-10 02:54:50 2019-11-10 02:54:54 t 1 1 161259 587 0.00 2019-11-10 02:23:33 2019-11-10 02:56:06 t 1 1 161260 430 0.00 2019-11-10 02:56:43 2019-11-10 02:56:50 t 1 1 161261 430 0.00 2019-11-10 02:56:55 2019-11-10 02:57:02 t 1 1 161265 430 0.00 2019-11-10 02:59:49 2019-11-10 03:00:32 t 1 1 161286 587 0.00 2019-11-10 03:18:52 2019-11-10 03:21:05 t 1 1 161045 430 0.00 2019-11-10 00:55:32 2019-11-10 00:58:37 t 1 1 161046 566 0.00 2019-11-10 00:53:55 2019-11-10 00:58:59 t 1 1 161049 587 0.00 2019-11-10 00:45:27 2019-11-10 00:59:54 t 1 1 161050 430 0.00 2019-11-10 01:01:22 2019-11-10 01:01:24 t 1 1 161054 587 0.00 2019-11-10 00:59:54 2019-11-10 01:04:08 t 1 1 161060 619 0.00 2019-11-10 01:04:31 2019-11-10 01:06:32 t 1 1 161063 566 0.00 2019-11-10 00:58:59 2019-11-10 01:07:17 t 1 1 161069 430 0.00 2019-11-10 01:11:48 2019-11-10 01:11:54 t 1 1 161070 430 0.00 2019-11-10 01:11:32 2019-11-10 01:12:32 t 1 1 161075 430 0.00 2019-11-10 01:14:19 2019-11-10 01:14:22 t 1 1 161078 422 0.00 2019-11-10 01:05:39 2019-11-10 01:16:34 t 1 1 161079 430 0.00 2019-11-10 01:16:00 2019-11-10 01:17:01 t 1 1 161083 430 0.00 2019-11-10 01:18:22 2019-11-10 01:20:08 t 1 1 161085 430 0.00 2019-11-10 01:22:09 2019-11-10 01:22:14 t 1 1 161087 587 0.00 2019-11-10 01:13:51 2019-11-10 01:22:27 t 1 1 161088 574 0.00 2019-11-10 00:15:23 2019-11-10 01:23:06 t 1 1 161091 587 0.00 2019-11-10 01:22:49 2019-11-10 01:24:27 t 1 1 161098 430 0.00 2019-11-10 01:29:21 2019-11-10 01:29:23 t 1 1 161100 623 0.00 2019-11-10 01:30:19 2019-11-10 01:30:40 t 1 1 161101 430 0.00 2019-11-10 01:31:24 2019-11-10 01:31:29 t 1 1 161103 430 0.00 2019-11-10 01:33:28 2019-11-10 01:34:28 t 1 1 161105 430 0.00 2019-11-10 01:35:33 2019-11-10 01:35:38 t 1 1 161109 622 0.00 2019-11-10 01:16:41 2019-11-10 01:38:39 t 1 1 161113 623 0.00 2019-11-10 01:37:55 2019-11-10 01:39:08 t 1 1 161116 430 0.00 2019-11-10 01:40:00 2019-11-10 01:40:02 t 1 1 161118 623 0.00 2019-11-10 01:40:25 2019-11-10 01:40:25 t 1 1 161119 430 0.00 2019-11-10 01:41:02 2019-11-10 01:41:04 t 1 1 161120 430 0.00 2019-11-10 01:42:04 2019-11-10 01:42:06 t 1 1 161122 430 0.00 2019-11-10 01:44:38 2019-11-10 01:44:40 t 1 1 161130 570 0.00 2019-11-10 00:34:56 2019-11-10 01:52:12 t 1 1 161132 430 0.00 2019-11-10 01:53:26 2019-11-10 01:54:13 t 1 1 161144 570 0.00 2019-11-10 01:52:55 2019-11-10 02:02:04 t 1 1 161147 623 0.00 2019-11-10 02:05:45 2019-11-10 02:06:31 t 1 1 161153 623 0.00 2019-11-10 02:08:42 2019-11-10 02:08:44 t 1 1 161157 430 0.00 2019-11-10 02:09:21 2019-11-10 02:09:26 t 1 1 161158 430 0.00 2019-11-10 02:09:47 2019-11-10 02:09:53 t 1 1 161159 623 0.00 2019-11-10 02:09:31 2019-11-10 02:10:05 t 1 1 161160 623 0.00 2019-11-10 02:10:23 2019-11-10 02:10:29 t 1 1 161162 430 0.00 2019-11-10 02:10:22 2019-11-10 02:11:22 t 1 1 161164 623 0.00 2019-11-10 02:11:46 2019-11-10 02:11:51 t 1 1 161167 623 0.00 2019-11-10 02:12:11 2019-11-10 02:12:42 t 1 1 161173 623 0.00 2019-11-10 02:13:48 2019-11-10 02:13:53 t 1 1 161174 430 0.00 2019-11-10 02:13:57 2019-11-10 02:14:10 t 1 1 161180 623 0.00 2019-11-10 02:15:55 2019-11-10 02:15:57 t 1 1 161181 623 0.00 2019-11-10 02:16:03 2019-11-10 02:16:04 t 1 1 161185 623 0.00 2019-11-10 02:17:04 2019-11-10 02:17:09 t 1 1 161189 623 0.00 2019-11-10 02:17:37 2019-11-10 02:17:53 t 1 1 161191 623 0.00 2019-11-10 02:17:53 2019-11-10 02:18:25 t 1 1 161195 623 0.00 2019-11-10 02:19:27 2019-11-10 02:19:32 t 1 1 161197 623 0.00 2019-11-10 02:20:10 2019-11-10 02:20:44 t 1 1 161198 623 0.00 2019-11-10 02:20:49 2019-11-10 02:20:56 t 1 1 161204 430 0.00 2019-11-10 02:22:44 2019-11-10 02:23:00 t 1 1 161206 430 0.00 2019-11-10 02:20:48 2019-11-10 02:23:09 t 1 1 161208 623 0.00 2019-11-10 02:23:32 2019-11-10 02:24:05 t 1 1 161221 623 0.00 2019-11-10 02:25:40 2019-11-10 02:28:55 t 1 1 161222 623 0.00 2019-11-10 02:29:13 2019-11-10 02:29:21 t 1 1 161223 430 0.00 2019-11-10 02:29:30 2019-11-10 02:29:41 t 1 1 161226 623 0.00 2019-11-10 02:30:50 2019-11-10 02:30:58 t 1 1 161228 430 0.00 2019-11-10 02:30:26 2019-11-10 02:31:27 t 1 1 161230 623 0.00 2019-11-10 02:32:17 2019-11-10 02:32:23 t 1 1 161231 430 0.00 2019-11-10 02:32:29 2019-11-10 02:32:34 t 1 1 161234 623 0.00 2019-11-10 02:33:24 2019-11-10 02:33:30 t 1 1 161236 623 0.00 2019-11-10 02:34:06 2019-11-10 02:34:06 f 1 1 161238 430 0.00 2019-11-10 02:34:31 2019-11-10 02:34:38 t 1 1 161239 623 0.00 2019-11-10 02:33:59 2019-11-10 02:35:09 t 1 1 161242 430 0.00 2019-11-10 02:38:41 2019-11-10 02:38:43 t 1 1 161243 430 0.00 2019-11-10 02:39:35 2019-11-10 02:39:41 t 1 1 161245 430 0.00 2019-11-10 02:40:48 2019-11-10 02:40:50 t 1 1 161246 430 0.00 2019-11-10 02:41:51 2019-11-10 02:41:57 t 1 1 161248 430 0.00 2019-11-10 02:44:40 2019-11-10 02:44:59 t 1 1 161249 430 0.00 2019-11-10 02:45:05 2019-11-10 02:46:05 t 1 1 161253 430 0.00 2019-11-10 02:49:28 2019-11-10 02:49:29 t 1 1 161255 430 0.00 2019-11-10 02:53:37 2019-11-10 02:53:39 t 1 1 161256 430 0.00 2019-11-10 02:54:39 2019-11-10 02:54:45 t 1 1 161258 430 0.00 2019-11-10 02:55:00 2019-11-10 02:55:01 t 1 1 161262 430 0.00 2019-11-10 02:57:46 2019-11-10 02:59:10 t 1 1 161264 570 0.00 2019-11-10 02:10:31 2019-11-10 03:00:25 t 1 1 161267 430 0.00 2019-11-10 03:01:50 2019-11-10 03:02:32 t 1 1 161270 430 0.00 2019-11-10 03:02:52 2019-11-10 03:03:54 t 1 1 161271 430 0.00 2019-11-10 03:03:56 2019-11-10 03:04:13 t 1 1 161273 430 0.00 2019-11-10 03:04:59 2019-11-10 03:05:06 t 1 1 161275 430 0.00 2019-11-10 03:07:11 2019-11-10 03:07:18 t 1 1 161276 430 0.00 2019-11-10 03:08:02 2019-11-10 03:08:08 t 1 1 161278 430 0.00 2019-11-10 03:10:06 2019-11-10 03:10:08 t 1 1 161279 430 0.00 2019-11-10 03:11:08 2019-11-10 03:11:14 t 1 1 161284 430 0.00 2019-11-10 03:18:39 2019-11-10 03:18:44 t 1 1 161295 430 0.00 2019-11-10 03:27:08 2019-11-10 03:27:14 t 1 1 161296 430 0.00 2019-11-10 03:27:59 2019-11-10 03:28:00 t 1 1 161297 430 0.00 2019-11-10 03:28:58 2019-11-10 03:29:30 t 1 1 161306 430 0.00 2019-11-10 03:39:28 2019-11-10 03:39:54 t 1 1 161311 430 0.00 2019-11-10 03:44:26 2019-11-10 03:44:34 t 1 1 161313 430 0.00 2019-11-10 03:45:27 2019-11-10 03:45:34 t 1 1 161317 430 0.00 2019-11-10 03:49:39 2019-11-10 03:49:45 t 1 1 161323 430 0.00 2019-11-10 03:54:55 2019-11-10 03:54:57 t 1 1 161327 430 0.00 2019-11-10 03:57:16 2019-11-10 03:57:32 t 1 1 161328 430 0.00 2019-11-10 03:58:01 2019-11-10 03:58:06 t 1 1 161330 430 0.00 2019-11-10 04:00:27 2019-11-10 04:03:30 t 1 1 161337 430 0.00 2019-11-10 04:11:34 2019-11-10 04:11:56 t 1 1 161338 430 0.00 2019-11-10 04:12:48 2019-11-10 04:12:53 t 1 1 161340 430 0.00 2019-11-10 04:14:55 2019-11-10 04:14:57 t 1 1 161348 430 0.00 2019-11-10 04:24:55 2019-11-10 04:25:00 t 1 1 161349 430 0.00 2019-11-10 04:25:40 2019-11-10 04:25:57 t 1 1 161352 430 0.00 2019-11-10 04:28:57 2019-11-10 04:29:15 t 1 1 161356 623 0.00 2019-11-10 05:08:13 2019-11-10 05:08:35 t 1 1 161357 623 0.00 2019-11-10 05:11:43 2019-11-10 05:11:44 t 1 1 161360 623 0.00 2019-11-10 05:26:52 2019-11-10 05:26:53 t 1 1 161365 623 0.00 2019-11-10 05:42:52 2019-11-10 05:43:13 t 1 1 161217 623 0.00 2019-11-10 02:25:29 2019-11-10 02:25:34 t 1 1 161219 430 0.00 2019-11-10 02:26:15 2019-11-10 02:26:22 t 1 1 161224 623 0.00 2019-11-10 02:29:41 2019-11-10 02:29:47 t 1 1 161232 623 0.00 2019-11-10 02:32:29 2019-11-10 02:32:36 t 1 1 161233 623 0.00 2019-11-10 02:32:56 2019-11-10 02:33:03 t 1 1 161237 623 0.00 2019-11-10 02:32:11 2019-11-10 02:34:09 t 1 1 161241 430 0.00 2019-11-10 02:36:38 2019-11-10 02:38:09 t 1 1 161250 430 0.00 2019-11-10 02:47:13 2019-11-10 02:47:15 t 1 1 161251 430 0.00 2019-11-10 02:48:15 2019-11-10 02:48:17 t 1 1 161252 430 0.00 2019-11-10 02:49:01 2019-11-10 02:49:22 t 1 1 161263 587 0.00 2019-11-10 02:56:26 2019-11-10 02:59:44 t 1 1 161266 587 0.00 2019-11-10 03:00:03 2019-11-10 03:01:02 t 1 1 161268 430 0.00 2019-11-10 03:02:32 2019-11-10 03:02:47 t 1 1 161269 587 0.00 2019-11-10 03:01:13 2019-11-10 03:03:05 t 1 1 161272 587 0.00 2019-11-10 03:03:17 2019-11-10 03:04:22 t 1 1 161274 430 0.00 2019-11-10 03:07:00 2019-11-10 03:07:05 t 1 1 161277 587 0.00 2019-11-10 03:04:56 2019-11-10 03:08:37 t 1 1 161280 430 0.00 2019-11-10 03:15:08 2019-11-10 03:15:14 t 1 1 161281 430 0.00 2019-11-10 03:16:22 2019-11-10 03:16:24 t 1 1 161282 430 0.00 2019-11-10 03:17:14 2019-11-10 03:17:32 t 1 1 161283 587 0.00 2019-11-10 03:17:57 2019-11-10 03:18:34 t 1 1 161285 430 0.00 2019-11-10 03:19:05 2019-11-10 03:19:25 t 1 1 161287 430 0.00 2019-11-10 03:21:45 2019-11-10 03:21:50 t 1 1 161288 587 0.00 2019-11-10 03:21:52 2019-11-10 03:22:28 t 1 1 161289 430 0.00 2019-11-10 03:23:49 2019-11-10 03:23:54 t 1 1 161290 430 0.00 2019-11-10 03:23:59 2019-11-10 03:24:11 t 1 1 161291 430 0.00 2019-11-10 03:24:52 2019-11-10 03:24:54 t 1 1 161293 430 0.00 2019-11-10 03:24:22 2019-11-10 03:26:10 t 1 1 161294 430 0.00 2019-11-10 03:26:57 2019-11-10 03:27:03 t 1 1 161300 430 0.00 2019-11-10 03:30:37 2019-11-10 03:32:10 t 1 1 161302 430 0.00 2019-11-10 03:34:21 2019-11-10 03:34:30 t 1 1 161304 430 0.00 2019-11-10 03:37:15 2019-11-10 03:38:15 t 1 1 161305 430 0.00 2019-11-10 03:39:17 2019-11-10 03:39:23 t 1 1 161310 637 0.00 2019-11-10 02:15:47 2019-11-10 03:44:01 t 1 1 161314 430 0.00 2019-11-10 03:47:31 2019-11-10 03:47:33 t 1 1 161315 430 0.00 2019-11-10 03:48:33 2019-11-10 03:48:40 t 1 1 161316 430 0.00 2019-11-10 03:49:32 2019-11-10 03:49:34 t 1 1 161318 430 0.00 2019-11-10 03:49:56 2019-11-10 03:50:41 t 1 1 161319 430 0.00 2019-11-10 03:51:48 2019-11-10 03:51:50 t 1 1 161322 430 0.00 2019-11-10 03:54:36 2019-11-10 03:54:41 t 1 1 161326 430 0.00 2019-11-10 03:57:05 2019-11-10 03:57:10 t 1 1 161329 570 0.00 2019-11-10 03:00:25 2019-11-10 04:00:21 t 1 1 161331 430 0.00 2019-11-10 04:03:35 2019-11-10 04:03:41 t 1 1 161333 430 0.00 2019-11-10 04:05:34 2019-11-10 04:07:11 t 1 1 161335 430 0.00 2019-11-10 04:07:37 2019-11-10 04:09:11 t 1 1 161341 430 0.00 2019-11-10 04:15:59 2019-11-10 04:16:04 t 1 1 161342 430 0.00 2019-11-10 04:17:14 2019-11-10 04:17:21 t 1 1 161346 430 0.00 2019-11-10 04:23:07 2019-11-10 04:23:09 t 1 1 161347 430 0.00 2019-11-10 04:24:09 2019-11-10 04:24:11 t 1 1 161350 430 0.00 2019-11-10 04:26:10 2019-11-10 04:26:12 t 1 1 161351 430 0.00 2019-11-10 04:27:13 2019-11-10 04:29:11 t 1 1 161353 430 0.00 2019-11-10 04:29:46 2019-11-10 04:31:54 t 1 1 161354 514 0.00 2019-11-10 00:38:34 2019-11-10 04:33:19 t 1 1 161359 623 0.00 2019-11-10 05:21:50 2019-11-10 05:22:51 t 1 1 161361 623 0.00 2019-11-10 05:28:47 2019-11-10 05:28:58 t 1 1 161362 623 0.00 2019-11-10 05:31:59 2019-11-10 05:32:23 t 1 1 161363 623 0.00 2019-11-10 05:37:24 2019-11-10 05:37:47 t 1 1 161364 445 0.00 2019-11-09 23:27:26 2019-11-10 05:41:05 t 1 1 161366 623 0.00 2019-11-10 05:48:15 2019-11-10 05:48:21 t 1 1 161369 520 0.00 2019-11-10 05:53:48 2019-11-10 05:57:35 t 1 1 161370 623 0.00 2019-11-10 05:58:23 2019-11-10 05:58:29 t 1 1 161372 623 0.00 2019-11-10 06:03:37 2019-11-10 06:03:38 t 1 1 161376 645 0.00 2019-11-10 06:13:13 2019-11-10 06:15:00 t 1 1 161378 623 0.00 2019-11-10 06:18:37 2019-11-10 06:18:38 t 1 1 161379 623 0.00 2019-11-10 06:23:41 2019-11-10 06:23:42 t 1 1 161380 623 0.00 2019-11-10 06:24:29 2019-11-10 06:24:34 t 1 1 161381 516 0.00 2019-11-10 06:21:54 2019-11-10 06:24:58 t 1 1 161383 520 0.00 2019-11-10 06:07:52 2019-11-10 06:33:13 t 1 1 161384 220 0.00 2019-11-10 06:31:33 2019-11-10 06:33:31 t 1 1 161385 623 0.00 2019-11-10 06:34:42 2019-11-10 06:34:43 t 1 1 161386 625 0.00 2019-11-10 05:34:00 2019-11-10 06:36:28 t 1 1 161387 622 0.00 2019-11-10 06:26:29 2019-11-10 06:38:27 t 1 1 161388 566 0.00 2019-11-10 06:24:48 2019-11-10 06:39:09 t 1 1 161390 623 0.00 2019-11-10 06:39:47 2019-11-10 06:40:47 t 1 1 161391 623 0.00 2019-11-10 06:44:54 2019-11-10 06:45:05 t 1 1 161394 625 0.00 2019-11-10 06:36:28 2019-11-10 06:49:57 t 1 1 161395 623 0.00 2019-11-10 06:50:00 2019-11-10 06:50:03 t 1 1 161397 566 0.00 2019-11-10 06:39:09 2019-11-10 06:54:03 t 1 1 161398 566 0.00 2019-11-10 06:54:03 2019-11-10 06:55:00 t 1 1 161399 623 0.00 2019-11-10 06:55:02 2019-11-10 06:55:18 t 1 1 161400 623 0.00 2019-11-10 06:57:29 2019-11-10 06:57:31 t 1 1 161401 581 0.00 2019-11-10 06:43:26 2019-11-10 06:58:33 t 1 1 161402 623 0.00 2019-11-10 06:58:39 2019-11-10 06:58:42 t 1 1 161403 597 0.00 2019-11-10 06:58:10 2019-11-10 06:59:05 t 1 1 161405 623 0.00 2019-11-10 07:00:08 2019-11-10 07:00:22 t 1 1 161406 623 0.00 2019-11-10 07:02:34 2019-11-10 07:02:37 t 1 1 161408 623 0.00 2019-11-10 07:05:15 2019-11-10 07:05:35 t 1 1 161409 623 0.00 2019-11-10 07:06:34 2019-11-10 07:06:37 t 1 1 161411 456 0.00 2019-11-10 07:04:35 2019-11-10 07:08:54 t 1 1 161412 416 0.00 2019-11-09 18:33:35 2019-11-10 07:10:35 t 1 1 161413 623 0.00 2019-11-10 07:10:20 2019-11-10 07:10:40 t 1 1 161415 456 0.00 2019-11-10 07:10:24 2019-11-10 07:11:27 t 1 1 161416 623 0.00 2019-11-10 07:12:47 2019-11-10 07:12:54 t 1 1 161417 623 0.00 2019-11-10 07:13:07 2019-11-10 07:13:08 t 1 1 161418 623 0.00 2019-11-10 07:13:13 2019-11-10 07:13:14 t 1 1 161419 645 0.00 2019-11-10 07:12:45 2019-11-10 07:14:04 t 1 1 161421 623 0.00 2019-11-10 07:15:03 2019-11-10 07:15:05 t 1 1 161423 623 0.00 2019-11-10 07:15:21 2019-11-10 07:15:21 t 1 1 161424 623 0.00 2019-11-10 07:16:51 2019-11-10 07:16:53 t 1 1 161425 623 0.00 2019-11-10 07:18:02 2019-11-10 07:18:04 t 1 1 161427 551 0.00 2019-11-10 06:52:32 2019-11-10 07:19:54 t 1 1 161429 607 0.00 2019-11-10 06:51:50 2019-11-10 07:21:45 t 1 1 161431 581 0.00 2019-11-10 06:58:33 2019-11-10 07:23:48 t 1 1 161433 623 0.00 2019-11-10 07:24:59 2019-11-10 07:25:01 t 1 1 161434 623 0.00 2019-11-10 07:25:26 2019-11-10 07:25:29 t 1 1 161435 619 0.00 2019-11-10 07:13:53 2019-11-10 07:25:51 t 1 1 161436 545 0.00 2019-11-10 07:17:41 2019-11-10 07:25:58 t 1 1 161292 430 0.00 2019-11-10 03:25:55 2019-11-10 03:25:57 t 1 1 161298 430 0.00 2019-11-10 03:29:37 2019-11-10 03:29:56 t 1 1 161299 430 0.00 2019-11-10 03:31:24 2019-11-10 03:31:37 t 1 1 161301 430 0.00 2019-11-10 03:32:43 2019-11-10 03:34:11 t 1 1 161303 430 0.00 2019-11-10 03:35:11 2019-11-10 03:35:17 t 1 1 161307 430 0.00 2019-11-10 03:41:21 2019-11-10 03:41:24 t 1 1 161308 430 0.00 2019-11-10 03:42:24 2019-11-10 03:42:26 t 1 1 161309 430 0.00 2019-11-10 03:42:54 2019-11-10 03:43:16 t 1 1 161312 430 0.00 2019-11-10 03:44:47 2019-11-10 03:44:49 t 1 1 161320 430 0.00 2019-11-10 03:52:50 2019-11-10 03:53:50 t 1 1 161321 430 0.00 2019-11-10 03:53:53 2019-11-10 03:54:11 t 1 1 161324 430 0.00 2019-11-10 03:55:57 2019-11-10 03:55:59 t 1 1 161325 430 0.00 2019-11-10 03:56:59 2019-11-10 03:57:00 t 1 1 161332 430 0.00 2019-11-10 04:04:33 2019-11-10 04:05:33 t 1 1 161334 430 0.00 2019-11-10 04:08:58 2019-11-10 04:09:10 t 1 1 161336 430 0.00 2019-11-10 04:09:40 2019-11-10 04:09:48 t 1 1 161339 430 0.00 2019-11-10 04:14:43 2019-11-10 04:14:50 t 1 1 161343 430 0.00 2019-11-10 04:19:52 2019-11-10 04:19:54 t 1 1 161344 430 0.00 2019-11-10 04:19:03 2019-11-10 04:20:11 t 1 1 161345 430 0.00 2019-11-10 04:21:04 2019-11-10 04:21:10 t 1 1 161355 623 0.00 2019-11-10 05:06:17 2019-11-10 05:08:07 t 1 1 161358 623 0.00 2019-11-10 05:16:48 2019-11-10 05:18:01 t 1 1 161367 623 0.00 2019-11-10 05:53:26 2019-11-10 05:53:36 t 1 1 161368 623 0.00 2019-11-10 05:55:13 2019-11-10 05:55:36 t 1 1 161371 623 0.00 2019-11-10 06:03:30 2019-11-10 06:03:31 t 1 1 161373 520 0.00 2019-11-10 05:57:35 2019-11-10 06:03:46 t 1 1 161374 623 0.00 2019-11-10 06:08:33 2019-11-10 06:08:34 t 1 1 161375 623 0.00 2019-11-10 06:13:35 2019-11-10 06:13:36 t 1 1 161377 564 0.00 2019-11-09 22:11:59 2019-11-10 06:16:12 t 1 1 161382 623 0.00 2019-11-10 06:29:38 2019-11-10 06:29:39 t 1 1 161389 619 0.00 2019-11-10 06:34:52 2019-11-10 06:39:11 t 1 1 161392 623 0.00 2019-11-10 06:45:17 2019-11-10 06:45:19 t 1 1 161393 597 0.00 2019-11-10 06:47:20 2019-11-10 06:49:15 t 1 1 161396 551 0.00 2019-11-10 00:18:06 2019-11-10 06:52:32 t 1 1 161404 623 0.00 2019-11-10 06:59:25 2019-11-10 06:59:38 t 1 1 161407 623 0.00 2019-11-10 07:04:14 2019-11-10 07:04:32 t 1 1 161410 623 0.00 2019-11-10 07:08:43 2019-11-10 07:08:46 t 1 1 161414 623 0.00 2019-11-10 07:10:52 2019-11-10 07:11:05 t 1 1 161420 623 0.00 2019-11-10 07:14:57 2019-11-10 07:14:58 t 1 1 161422 645 0.00 2019-11-10 07:14:06 2019-11-10 07:15:18 t 1 1 161426 623 0.00 2019-11-10 07:18:47 2019-11-10 07:18:48 t 1 1 161428 623 0.00 2019-11-10 07:20:33 2019-11-10 07:20:46 t 1 1 161430 623 0.00 2019-11-10 07:22:58 2019-11-10 07:23:01 t 1 1 161432 416 0.00 2019-11-10 07:10:53 2019-11-10 07:24:45 t 1 1 161437 623 0.00 2019-11-10 07:27:01 2019-11-10 07:27:03 t 1 1 161438 623 0.00 2019-11-10 07:27:56 2019-11-10 07:27:57 t 1 1 161439 645 0.00 2019-11-10 07:30:23 2019-11-10 07:30:23 t 1 1 161440 623 0.00 2019-11-10 07:30:04 2019-11-10 07:30:25 t 1 1 161441 623 0.00 2019-11-10 07:30:31 2019-11-10 07:30:33 t 1 1 161442 623 0.00 2019-11-10 07:30:59 2019-11-10 07:31:00 t 1 1 161443 645 0.00 2019-11-10 07:30:23 2019-11-10 07:32:12 t 1 1 161444 416 0.00 2019-11-10 07:24:54 2019-11-10 07:32:25 t 1 1 161445 623 0.00 2019-11-10 07:33:07 2019-11-10 07:33:09 t 1 1 161446 623 0.00 2019-11-10 07:35:09 2019-11-10 07:35:11 t 1 1 161447 623 0.00 2019-11-10 07:35:34 2019-11-10 07:35:37 t 1 1 161448 623 0.00 2019-11-10 07:36:04 2019-11-10 07:36:05 t 1 1 161449 416 0.00 2019-11-10 07:32:30 2019-11-10 07:36:11 t 1 1 161450 623 0.00 2019-11-10 07:38:12 2019-11-10 07:39:02 t 1 1 161451 623 0.00 2019-11-10 07:39:07 2019-11-10 07:39:10 t 1 1 161452 623 0.00 2019-11-10 07:40:39 2019-11-10 07:40:40 t 1 1 161453 623 0.00 2019-11-10 07:40:52 2019-11-10 07:41:11 t 1 1 161454 623 0.00 2019-11-10 07:42:11 2019-11-10 07:42:12 t 1 1 161455 481 0.00 2019-11-10 07:32:37 2019-11-10 07:42:34 t 1 1 161456 623 0.00 2019-11-10 07:44:19 2019-11-10 07:44:21 t 1 1 161457 623 0.00 2019-11-10 07:45:14 2019-11-10 07:45:17 t 1 1 161458 619 0.00 2019-11-10 07:28:09 2019-11-10 07:45:26 t 1 1 161459 623 0.00 2019-11-10 07:45:41 2019-11-10 07:45:42 t 1 1 161460 623 0.00 2019-11-10 07:47:22 2019-11-10 07:47:24 t 1 1 161461 416 0.00 2019-11-10 07:36:32 2019-11-10 07:48:10 t 1 1 161462 623 0.00 2019-11-10 07:49:24 2019-11-10 07:49:26 t 1 1 161463 623 0.00 2019-11-10 07:51:26 2019-11-10 07:51:28 t 1 1 161464 623 0.00 2019-11-10 07:53:28 2019-11-10 07:53:30 t 1 1 161465 623 0.00 2019-11-10 07:54:38 2019-11-10 07:54:44 t 1 1 161466 623 0.00 2019-11-10 07:55:30 2019-11-10 07:55:37 t 1 1 161467 623 0.00 2019-11-10 07:55:42 2019-11-10 07:55:47 t 1 1 161468 623 0.00 2019-11-10 07:56:33 2019-11-10 07:56:34 t 1 1 161469 585 0.00 2019-11-10 07:51:58 2019-11-10 07:56:39 t 1 1 161470 623 0.00 2019-11-10 07:56:39 2019-11-10 07:56:41 t 1 1 161471 566 0.00 2019-11-10 07:48:29 2019-11-10 07:58:33 t 1 1 161472 623 0.00 2019-11-10 07:58:33 2019-11-10 07:58:35 t 1 1 161473 623 0.00 2019-11-10 08:00:35 2019-11-10 08:00:37 t 1 1 161474 623 0.00 2019-11-10 08:00:49 2019-11-10 08:00:50 t 1 1 161475 623 0.00 2019-11-10 08:01:30 2019-11-10 08:01:31 t 1 1 161476 623 0.00 2019-11-10 08:03:38 2019-11-10 08:03:40 t 1 1 161477 379 0.00 2019-11-09 15:53:37 2019-11-10 08:04:04 t 1 1 161478 623 0.00 2019-11-10 08:05:40 2019-11-10 08:05:42 t 1 1 161479 623 0.00 2019-11-10 08:05:50 2019-11-10 08:05:53 t 1 1 161480 623 0.00 2019-11-10 08:07:42 2019-11-10 08:07:44 t 1 1 161481 456 0.00 2019-11-10 07:54:29 2019-11-10 08:08:00 t 1 1 161482 623 0.00 2019-11-10 08:09:40 2019-11-10 08:10:14 t 1 1 161483 623 0.00 2019-11-10 08:10:22 2019-11-10 08:10:36 t 1 1 161484 623 0.00 2019-11-10 08:10:47 2019-11-10 08:10:50 t 1 1 161485 412 0.00 2019-11-10 02:46:26 2019-11-10 08:10:54 t 1 1 161486 623 0.00 2019-11-10 08:12:46 2019-11-10 08:12:48 t 1 1 161487 599 0.00 2019-11-10 08:04:57 2019-11-10 08:14:26 t 1 1 161488 416 0.00 2019-11-10 07:48:24 2019-11-10 08:16:16 t 1 1 161489 599 0.00 2019-11-10 08:14:26 2019-11-10 08:17:55 t 1 1 161490 619 0.00 2019-11-10 08:06:48 2019-11-10 08:18:25 t 1 1 161491 416 0.00 2019-11-10 08:17:11 2019-11-10 08:19:34 t 1 1 161492 623 0.00 2019-11-10 08:14:44 2019-11-10 08:19:51 t 1 1 161493 623 0.00 2019-11-10 08:20:56 2019-11-10 08:20:58 t 1 1 161494 623 0.00 2019-11-10 08:22:58 2019-11-10 08:23:00 t 1 1 161495 615 0.00 2019-11-10 08:17:10 2019-11-10 08:24:13 t 1 1 161496 623 0.00 2019-11-10 08:25:00 2019-11-10 08:25:02 t 1 1 161497 623 0.00 2019-11-10 08:25:23 2019-11-10 08:25:26 t 1 1 161498 623 0.00 2019-11-10 08:25:55 2019-11-10 08:25:58 t 1 1 161499 520 0.00 2019-11-10 08:24:23 2019-11-10 08:27:58 t 1 1 161500 623 0.00 2019-11-10 08:28:03 2019-11-10 08:28:35 t 1 1 161501 623 0.00 2019-11-10 08:28:58 2019-11-10 08:29:00 t 1 1 161503 623 0.00 2019-11-10 08:32:07 2019-11-10 08:32:09 t 1 1 161508 615 0.00 2019-11-10 08:24:13 2019-11-10 08:38:19 t 1 1 161509 597 0.00 2019-11-10 08:35:27 2019-11-10 08:41:38 t 1 1 161516 611 0.00 2019-11-10 08:31:21 2019-11-10 08:50:54 t 1 1 161518 597 0.00 2019-11-10 08:43:30 2019-11-10 08:52:29 t 1 1 161521 375 0.00 2019-11-10 00:55:01 2019-11-10 08:54:41 t 1 1 161523 599 0.00 2019-11-10 08:48:14 2019-11-10 08:55:36 t 1 1 161526 538 0.00 2019-11-10 08:34:53 2019-11-10 08:59:13 t 1 1 161529 631 0.00 2019-11-10 09:03:29 2019-11-10 09:04:05 t 1 1 161536 538 0.00 2019-11-10 09:02:02 2019-11-10 09:14:03 t 1 1 161540 623 0.00 2019-11-10 09:17:27 2019-11-10 09:17:28 t 1 1 161542 623 0.00 2019-11-10 09:18:11 2019-11-10 09:20:28 t 1 1 161543 512 0.00 2019-11-10 08:47:19 2019-11-10 09:21:35 t 1 1 161547 591 0.00 2019-11-10 08:18:40 2019-11-10 09:26:20 t 1 1 161551 635 0.00 2019-11-10 09:22:08 2019-11-10 09:28:52 t 1 1 161554 538 0.00 2019-11-10 09:28:39 2019-11-10 09:30:27 t 1 1 161564 538 0.00 2019-11-10 09:32:48 2019-11-10 09:34:54 t 1 1 161565 375 0.00 2019-11-10 09:13:22 2019-11-10 09:35:23 t 1 1 161566 585 0.00 2019-11-10 09:33:31 2019-11-10 09:35:53 t 1 1 161569 623 0.00 2019-11-10 09:39:08 2019-11-10 09:39:17 t 1 1 161572 416 0.00 2019-11-10 09:32:34 2019-11-10 09:42:53 t 1 1 161573 623 0.00 2019-11-10 09:43:21 2019-11-10 09:43:22 t 1 1 161575 585 0.00 2019-11-10 09:35:53 2019-11-10 09:43:47 t 1 1 161576 623 0.00 2019-11-10 09:44:23 2019-11-10 09:44:24 t 1 1 161579 623 0.00 2019-11-10 09:45:51 2019-11-10 09:45:52 t 1 1 161582 623 0.00 2019-11-10 09:47:31 2019-11-10 09:48:29 t 1 1 161585 623 0.00 2019-11-10 09:49:31 2019-11-10 09:49:39 t 1 1 161589 516 0.00 2019-11-10 09:53:13 2019-11-10 09:56:16 t 1 1 161592 333 0.00 2019-11-10 09:57:50 2019-11-10 09:57:50 f 1 2 161595 379 0.00 2019-11-10 09:48:38 2019-11-10 10:03:30 t 1 1 161596 375 0.00 2019-11-10 10:02:05 2019-11-10 10:04:37 t 1 1 161599 631 0.00 2019-11-10 10:10:09 2019-11-10 10:10:33 t 1 1 161610 625 0.00 2019-11-10 09:28:42 2019-11-10 10:17:14 t 1 1 161611 623 0.00 2019-11-10 10:17:46 2019-11-10 10:17:46 t 1 1 161612 591 0.00 2019-11-10 10:14:40 2019-11-10 10:19:12 t 1 1 161616 623 0.00 2019-11-10 10:23:51 2019-11-10 10:24:51 t 1 1 161623 623 0.00 2019-11-10 10:30:57 2019-11-10 10:31:58 t 1 1 161626 379 0.00 2019-11-10 10:10:42 2019-11-10 10:34:03 t 1 1 161632 623 0.00 2019-11-10 10:35:02 2019-11-10 10:37:48 t 1 1 161636 622 0.00 2019-11-10 10:30:14 2019-11-10 10:42:14 t 1 1 161642 591 0.00 2019-11-10 10:41:28 2019-11-10 10:47:44 t 1 1 161650 516 0.00 2019-11-10 10:51:07 2019-11-10 10:54:28 t 1 1 161652 615 0.00 2019-11-10 10:55:56 2019-11-10 10:57:47 t 1 1 161654 554 0.00 2019-11-10 10:53:00 2019-11-10 11:04:07 t 1 1 161655 422 0.00 2019-11-10 11:04:13 2019-11-10 11:06:52 t 1 1 161657 615 0.00 2019-11-10 10:59:44 2019-11-10 11:07:28 t 1 1 161661 412 0.00 2019-11-10 08:10:54 2019-11-10 11:12:50 t 1 1 161663 481 0.00 2019-11-10 11:13:19 2019-11-10 11:15:15 t 1 1 161669 451 0.00 2019-11-10 10:46:59 2019-11-10 11:20:37 t 1 1 161672 554 0.00 2019-11-10 11:18:05 2019-11-10 11:22:40 t 1 1 161673 375 0.00 2019-11-10 11:16:53 2019-11-10 11:25:05 t 1 1 161674 220 0.00 2019-11-10 11:09:18 2019-11-10 11:26:45 t 1 2 161676 375 0.00 2019-11-10 11:25:38 2019-11-10 11:28:05 t 1 1 161678 412 0.00 2019-11-10 11:12:50 2019-11-10 11:33:59 t 1 1 161679 481 0.00 2019-11-10 11:14:27 2019-11-10 11:34:37 t 1 1 161681 512 0.00 2019-11-10 11:32:37 2019-11-10 11:36:43 t 1 1 161683 615 0.00 2019-11-10 11:27:51 2019-11-10 11:37:44 t 1 1 161686 422 0.00 2019-11-10 11:41:10 2019-11-10 11:41:23 t 1 1 161690 619 0.00 2019-11-10 11:38:23 2019-11-10 11:43:25 t 1 1 161695 623 0.00 2019-11-10 11:44:10 2019-11-10 11:46:15 t 1 1 161703 623 0.00 2019-11-10 11:47:57 2019-11-10 11:48:26 t 1 1 161706 485 0.00 2019-11-10 11:46:42 2019-11-10 11:51:27 t 1 1 161713 623 0.00 2019-11-10 11:51:55 2019-11-10 11:52:41 t 1 1 161718 623 0.00 2019-11-10 11:54:39 2019-11-10 11:55:06 t 1 1 161725 623 0.00 2019-11-10 11:56:39 2019-11-10 11:58:16 t 1 1 161726 631 0.00 2019-11-10 11:58:32 2019-11-10 11:59:03 t 1 1 161727 562 0.00 2019-11-10 11:48:45 2019-11-10 12:00:07 t 1 1 161728 554 0.00 2019-11-10 11:52:26 2019-11-10 12:00:13 t 1 1 161730 545 0.00 2019-11-10 11:56:38 2019-11-10 12:00:56 t 1 1 161733 562 0.00 2019-11-10 12:00:07 2019-11-10 12:02:03 t 1 1 161735 422 0.00 2019-11-10 11:54:03 2019-11-10 12:02:52 t 1 1 161739 562 0.00 2019-11-10 12:02:27 2019-11-10 12:05:49 t 1 1 161742 623 0.00 2019-11-10 12:04:00 2019-11-10 12:06:16 t 1 1 161745 412 0.00 2019-11-10 11:33:59 2019-11-10 12:09:18 t 1 1 161746 516 0.00 2019-11-10 12:06:20 2019-11-10 12:09:32 t 1 1 161747 375 0.00 2019-11-10 12:08:13 2019-11-10 12:10:41 t 1 1 161750 538 0.00 2019-11-10 12:12:07 2019-11-10 12:14:44 t 1 1 161754 647 0.00 2019-11-10 12:11:56 2019-11-10 12:18:05 t 1 1 161755 631 0.00 2019-11-10 12:19:55 2019-11-10 12:20:21 t 1 1 161763 375 0.00 2019-11-10 12:22:50 2019-11-10 12:28:48 t 1 1 161765 562 0.00 2019-11-10 12:26:35 2019-11-10 12:32:20 t 1 1 161766 375 0.00 2019-11-10 12:29:13 2019-11-10 12:32:27 t 1 1 161768 570 0.00 2019-11-10 12:33:10 2019-11-10 12:36:07 t 1 1 161769 615 0.00 2019-11-10 12:13:27 2019-11-10 12:37:42 t 1 1 161772 375 0.00 2019-11-10 12:35:57 2019-11-10 12:39:28 t 1 1 161778 451 0.00 2019-11-10 11:36:35 2019-11-10 12:45:43 t 1 1 161779 570 0.00 2019-11-10 12:40:45 2019-11-10 12:47:09 t 1 1 161782 562 0.00 2019-11-10 12:47:10 2019-11-10 12:48:03 t 1 1 161785 619 0.00 2019-11-10 12:40:34 2019-11-10 12:49:23 t 1 1 161787 647 0.00 2019-11-10 12:41:15 2019-11-10 12:50:27 t 1 1 161788 422 0.00 2019-11-10 12:50:03 2019-11-10 12:51:24 t 1 1 161797 625 0.00 2019-11-10 12:51:38 2019-11-10 12:59:02 t 1 1 161800 631 0.00 2019-11-10 13:00:57 2019-11-10 13:03:22 t 1 1 161802 562 0.00 2019-11-10 13:04:45 2019-11-10 13:05:04 t 1 1 161810 625 0.00 2019-11-10 12:59:02 2019-11-10 13:11:02 t 1 1 161811 647 0.00 2019-11-10 13:08:13 2019-11-10 13:11:45 t 1 1 161813 622 0.00 2019-11-10 12:55:11 2019-11-10 13:12:10 t 1 1 161814 647 0.00 2019-11-10 13:11:45 2019-11-10 13:12:54 t 1 1 161815 647 0.00 2019-11-10 13:12:53 2019-11-10 13:14:59 t 1 1 161818 647 0.00 2019-11-10 13:19:10 2019-11-10 13:20:20 t 1 1 161827 647 0.00 2019-11-10 13:25:48 2019-11-10 13:26:56 t 1 1 161828 422 0.00 2019-11-10 13:25:34 2019-11-10 13:28:12 t 1 1 161836 562 0.00 2019-11-10 13:20:56 2019-11-10 13:36:53 t 1 1 161839 647 0.00 2019-11-10 13:37:04 2019-11-10 13:38:13 t 1 1 161844 587 0.00 2019-11-10 13:38:38 2019-11-10 13:40:26 t 1 1 161502 623 0.00 2019-11-10 08:29:59 2019-11-10 08:30:00 t 1 1 161504 520 0.00 2019-11-10 08:27:57 2019-11-10 08:32:45 t 1 1 161505 623 0.00 2019-11-10 08:33:02 2019-11-10 08:33:14 t 1 1 161507 416 0.00 2019-11-10 08:33:58 2019-11-10 08:37:05 t 1 1 161510 512 0.00 2019-11-10 08:41:58 2019-11-10 08:44:36 t 1 1 161511 481 0.00 2019-11-10 07:42:34 2019-11-10 08:45:27 t 1 1 161520 631 0.00 2019-11-10 08:53:36 2019-11-10 08:54:10 t 1 1 161525 597 0.00 2019-11-10 08:52:29 2019-11-10 08:56:53 t 1 1 161527 611 0.00 2019-11-10 08:50:53 2019-11-10 09:01:26 t 1 1 161530 599 0.00 2019-11-10 08:55:36 2019-11-10 09:06:42 t 1 1 161531 623 0.00 2019-11-10 08:34:52 2019-11-10 09:09:18 t 1 1 161532 597 0.00 2019-11-10 09:03:03 2019-11-10 09:10:24 t 1 1 161535 416 0.00 2019-11-10 08:41:09 2019-11-10 09:13:51 t 1 1 161538 625 0.00 2019-11-10 08:51:14 2019-11-10 09:16:52 t 1 1 161539 623 0.00 2019-11-10 09:16:38 2019-11-10 09:17:14 t 1 1 161541 623 0.00 2019-11-10 09:17:45 2019-11-10 09:18:11 t 1 1 161544 623 0.00 2019-11-10 09:21:30 2019-11-10 09:21:56 t 1 1 161550 625 0.00 2019-11-10 09:16:52 2019-11-10 09:28:42 t 1 1 161552 623 0.00 2019-11-10 09:23:11 2019-11-10 09:29:29 t 1 1 161557 416 0.00 2019-11-10 09:13:19 2019-11-10 09:31:45 t 1 1 161560 623 0.00 2019-11-10 09:32:12 2019-11-10 09:32:26 t 1 1 161561 623 0.00 2019-11-10 09:32:32 2019-11-10 09:32:37 t 1 1 161568 375 0.00 2019-11-10 09:35:25 2019-11-10 09:36:37 t 1 1 161577 623 0.00 2019-11-10 09:45:14 2019-11-10 09:45:23 t 1 1 161578 623 0.00 2019-11-10 09:45:32 2019-11-10 09:45:40 t 1 1 161580 631 0.00 2019-11-10 09:46:41 2019-11-10 09:47:23 t 1 1 161583 379 0.00 2019-11-10 08:04:04 2019-11-10 09:48:38 t 1 1 161584 545 0.00 2019-11-10 09:45:30 2019-11-10 09:49:20 t 1 1 161587 623 0.00 2019-11-10 09:55:38 2019-11-10 09:56:03 t 1 1 161590 631 0.00 2019-11-10 09:54:20 2019-11-10 09:56:45 t 1 1 161591 333 0.00 2019-11-10 09:57:40 2019-11-10 09:57:40 f 1 2 161593 591 0.00 2019-11-10 09:29:05 2019-11-10 10:01:15 t 1 1 161598 220 0.00 2019-11-10 09:19:45 2019-11-10 10:09:11 t 1 2 161600 379 0.00 2019-11-10 10:03:30 2019-11-10 10:10:36 t 1 1 161601 220 0.00 2019-11-10 09:13:38 2019-11-10 10:10:59 t 1 1 161603 623 0.00 2019-11-10 10:11:47 2019-11-10 10:11:48 t 1 1 161604 375 0.00 2019-11-10 10:04:45 2019-11-10 10:12:18 t 1 1 161605 623 0.00 2019-11-10 10:12:33 2019-11-10 10:13:09 t 1 1 161607 623 0.00 2019-11-10 10:13:23 2019-11-10 10:13:50 t 1 1 161609 623 0.00 2019-11-10 10:16:18 2019-11-10 10:16:41 t 1 1 161615 554 0.00 2019-11-10 09:08:16 2019-11-10 10:22:52 t 1 1 161617 487 0.00 2019-11-10 10:18:21 2019-11-10 10:25:02 t 1 2 161620 623 0.00 2019-11-10 10:26:54 2019-11-10 10:26:55 t 1 1 161621 623 0.00 2019-11-10 10:27:37 2019-11-10 10:27:54 t 1 1 161622 375 0.00 2019-11-10 10:18:43 2019-11-10 10:30:40 t 1 1 161627 422 0.00 2019-11-10 10:20:58 2019-11-10 10:34:05 t 1 1 161628 591 0.00 2019-11-10 10:22:35 2019-11-10 10:34:26 t 1 1 161630 516 0.00 2019-11-10 10:33:49 2019-11-10 10:36:36 t 1 1 161633 554 0.00 2019-11-10 10:37:32 2019-11-10 10:38:53 t 1 1 161634 623 0.00 2019-11-10 10:38:48 2019-11-10 10:39:11 t 1 1 161635 512 0.00 2019-11-10 10:37:49 2019-11-10 10:40:31 t 1 1 161640 623 0.00 2019-11-10 10:47:14 2019-11-10 10:47:14 f 1 1 161644 622 0.00 2019-11-10 10:42:14 2019-11-10 10:49:26 t 1 1 161648 554 0.00 2019-11-10 10:50:47 2019-11-10 10:52:30 t 1 1 161659 220 0.00 2019-11-10 10:36:44 2019-11-10 11:07:49 t 1 2 161662 481 0.00 2019-11-10 08:45:27 2019-11-10 11:13:41 t 1 1 161666 554 0.00 2019-11-10 11:06:13 2019-11-10 11:18:05 t 1 1 161667 619 0.00 2019-11-10 11:18:59 2019-11-10 11:19:10 t 1 1 161680 585 0.00 2019-11-10 11:30:47 2019-11-10 11:34:40 t 1 1 161684 220 0.00 2019-11-10 10:10:03 2019-11-10 11:38:38 t 1 1 161685 422 0.00 2019-11-10 11:39:10 2019-11-10 11:39:33 t 1 1 161689 615 0.00 2019-11-10 11:38:27 2019-11-10 11:42:53 t 1 1 161691 623 0.00 2019-11-10 11:37:25 2019-11-10 11:44:05 t 1 1 161696 619 0.00 2019-11-10 11:43:35 2019-11-10 11:46:24 t 1 1 161699 481 0.00 2019-11-10 11:34:36 2019-11-10 11:47:27 t 1 1 161701 422 0.00 2019-11-10 11:46:33 2019-11-10 11:47:42 t 1 1 161704 623 0.00 2019-11-10 11:49:22 2019-11-10 11:50:12 t 1 1 161707 623 0.00 2019-11-10 11:51:14 2019-11-10 11:51:44 t 1 1 161710 647 0.00 2019-11-10 11:46:30 2019-11-10 11:52:05 t 1 1 161716 623 0.00 2019-11-10 11:52:46 2019-11-10 11:54:16 t 1 1 161719 625 0.00 2019-11-10 11:51:55 2019-11-10 11:55:38 t 1 1 161721 623 0.00 2019-11-10 11:57:15 2019-11-10 11:57:16 t 1 1 161723 623 0.00 2019-11-10 11:57:21 2019-11-10 11:57:43 t 1 1 161729 623 0.00 2019-11-10 11:57:49 2019-11-10 12:00:16 t 1 1 161732 485 0.00 2019-11-10 11:55:59 2019-11-10 12:01:44 t 1 1 161736 623 0.00 2019-11-10 12:00:26 2019-11-10 12:03:55 t 1 1 161738 623 0.00 2019-11-10 12:04:38 2019-11-10 12:05:08 t 1 1 161741 615 0.00 2019-11-10 12:04:30 2019-11-10 12:06:02 t 1 1 161743 623 0.00 2019-11-10 12:05:20 2019-11-10 12:07:16 t 1 1 161744 375 0.00 2019-11-10 12:03:16 2019-11-10 12:08:13 t 1 1 161748 554 0.00 2019-11-10 12:00:13 2019-11-10 12:11:54 t 1 1 161752 375 0.00 2019-11-10 12:11:38 2019-11-10 12:16:31 t 1 1 161753 375 0.00 2019-11-10 12:16:32 2019-11-10 12:17:27 t 1 1 161756 562 0.00 2019-11-10 12:16:10 2019-11-10 12:20:23 t 1 1 161762 562 0.00 2019-11-10 12:20:23 2019-11-10 12:26:35 t 1 1 161790 422 0.00 2019-11-10 12:51:37 2019-11-10 12:51:44 t 1 1 161791 422 0.00 2019-11-10 12:53:47 2019-11-10 12:53:59 t 1 1 161795 647 0.00 2019-11-10 12:56:22 2019-11-10 12:57:51 t 1 1 161799 647 0.00 2019-11-10 12:57:51 2019-11-10 13:02:17 t 1 1 161805 422 0.00 2019-11-10 13:07:35 2019-11-10 13:08:47 t 1 1 161806 422 0.00 2019-11-10 13:08:52 2019-11-10 13:09:08 t 1 1 161807 422 0.00 2019-11-10 13:09:14 2019-11-10 13:09:47 t 1 1 161808 619 0.00 2019-11-10 13:08:20 2019-11-10 13:10:04 t 1 1 161809 422 0.00 2019-11-10 13:10:38 2019-11-10 13:10:45 t 1 1 161812 451 0.00 2019-11-10 13:01:23 2019-11-10 13:11:54 t 1 1 161816 622 0.00 2019-11-10 13:12:10 2019-11-10 13:18:19 t 1 1 161819 562 0.00 2019-11-10 13:06:10 2019-11-10 13:20:29 t 1 1 161822 375 0.00 2019-11-10 12:57:57 2019-11-10 13:24:57 t 1 1 161823 647 0.00 2019-11-10 13:20:19 2019-11-10 13:25:48 t 1 1 161824 619 0.00 2019-11-10 13:24:49 2019-11-10 13:26:30 t 1 1 161829 597 0.00 2019-11-10 13:22:25 2019-11-10 13:28:41 t 1 1 161830 647 0.00 2019-11-10 13:26:56 2019-11-10 13:29:08 t 1 1 161833 647 0.00 2019-11-10 13:29:08 2019-11-10 13:33:55 t 1 1 161835 379 0.00 2019-11-10 10:34:20 2019-11-10 13:36:35 t 1 1 161837 647 0.00 2019-11-10 13:33:54 2019-11-10 13:37:05 t 1 1 161840 562 0.00 2019-11-10 13:37:39 2019-11-10 13:38:19 t 1 1 161842 649 0.00 2019-11-10 13:37:00 2019-11-10 13:38:55 t 1 1 161506 599 0.00 2019-11-10 08:17:55 2019-11-10 08:33:27 t 1 1 161512 290 0.00 2019-11-10 08:46:56 2019-11-10 08:46:56 f 1 2 161513 290 0.00 2019-11-10 08:47:15 2019-11-10 08:47:15 f 1 2 161514 599 0.00 2019-11-10 08:33:27 2019-11-10 08:48:14 t 1 1 161515 585 0.00 2019-11-10 08:41:43 2019-11-10 08:49:24 t 1 1 161517 625 0.00 2019-11-10 08:00:48 2019-11-10 08:51:14 t 1 1 161519 631 0.00 2019-11-10 08:51:51 2019-11-10 08:52:36 t 1 1 161522 375 0.00 2019-11-10 08:54:40 2019-11-10 08:55:23 t 1 1 161524 568 0.00 2019-11-10 08:54:54 2019-11-10 08:55:47 t 1 1 161528 538 0.00 2019-11-10 08:58:17 2019-11-10 09:01:43 t 1 1 161533 599 0.00 2019-11-10 09:06:42 2019-11-10 09:10:57 t 1 1 161534 375 0.00 2019-11-10 08:55:23 2019-11-10 09:13:23 t 1 1 161537 520 0.00 2019-11-10 08:52:49 2019-11-10 09:16:34 t 1 1 161545 623 0.00 2019-11-10 09:22:04 2019-11-10 09:22:29 t 1 1 161546 623 0.00 2019-11-10 09:22:38 2019-11-10 09:23:03 t 1 1 161548 538 0.00 2019-11-10 09:14:18 2019-11-10 09:27:38 t 1 1 161549 597 0.00 2019-11-10 09:23:42 2019-11-10 09:28:34 t 1 1 161553 512 0.00 2019-11-10 09:29:09 2019-11-10 09:30:17 t 1 1 161555 623 0.00 2019-11-10 09:30:37 2019-11-10 09:30:50 t 1 1 161556 619 0.00 2019-11-10 09:30:00 2019-11-10 09:31:09 t 1 1 161558 615 0.00 2019-11-10 09:27:52 2019-11-10 09:31:51 t 1 1 161559 538 0.00 2019-11-10 09:30:58 2019-11-10 09:32:01 t 1 1 161562 520 0.00 2019-11-10 09:31:16 2019-11-10 09:32:39 t 1 1 161563 623 0.00 2019-11-10 09:34:02 2019-11-10 09:34:10 t 1 1 161567 611 0.00 2019-11-10 09:31:57 2019-11-10 09:36:27 t 1 1 161570 623 0.00 2019-11-10 09:39:46 2019-11-10 09:41:18 t 1 1 161571 623 0.00 2019-11-10 09:42:20 2019-11-10 09:42:28 t 1 1 161574 623 0.00 2019-11-10 09:43:29 2019-11-10 09:43:37 t 1 1 161581 375 0.00 2019-11-10 09:36:36 2019-11-10 09:47:59 t 1 1 161586 623 0.00 2019-11-10 09:53:13 2019-11-10 09:53:29 t 1 1 161588 623 0.00 2019-11-10 09:54:34 2019-11-10 09:56:14 t 1 1 161594 375 0.00 2019-11-10 09:47:58 2019-11-10 10:01:17 t 1 1 161597 623 0.00 2019-11-10 09:58:28 2019-11-10 10:06:14 t 1 1 161602 623 0.00 2019-11-10 10:06:14 2019-11-10 10:11:39 t 1 1 161606 623 0.00 2019-11-10 10:11:55 2019-11-10 10:13:14 t 1 1 161608 623 0.00 2019-11-10 10:14:43 2019-11-10 10:14:45 t 1 1 161613 623 0.00 2019-11-10 10:19:50 2019-11-10 10:19:56 t 1 1 161614 623 0.00 2019-11-10 10:18:46 2019-11-10 10:20:14 t 1 1 161618 623 0.00 2019-11-10 10:24:59 2019-11-10 10:25:06 t 1 1 161619 623 0.00 2019-11-10 10:25:54 2019-11-10 10:26:12 t 1 1 161624 623 0.00 2019-11-10 10:32:46 2019-11-10 10:32:55 t 1 1 161625 623 0.00 2019-11-10 10:33:20 2019-11-10 10:33:30 t 1 1 161629 623 0.00 2019-11-10 10:33:59 2019-11-10 10:35:14 t 1 1 161631 554 0.00 2019-11-10 10:23:09 2019-11-10 10:37:41 t 1 1 161637 623 0.00 2019-11-10 10:39:11 2019-11-10 10:43:51 t 1 1 161638 623 0.00 2019-11-10 10:43:56 2019-11-10 10:45:14 t 1 1 161639 623 0.00 2019-11-10 10:45:04 2019-11-10 10:46:15 t 1 1 161641 623 0.00 2019-11-10 10:46:04 2019-11-10 10:47:15 t 1 1 161643 623 0.00 2019-11-10 10:47:05 2019-11-10 10:48:15 t 1 1 161645 554 0.00 2019-11-10 10:40:48 2019-11-10 10:50:19 t 1 1 161646 512 0.00 2019-11-10 10:43:33 2019-11-10 10:51:07 t 1 1 161647 422 0.00 2019-11-10 10:34:18 2019-11-10 10:52:07 t 1 1 161649 422 0.00 2019-11-10 10:52:22 2019-11-10 10:54:25 t 1 1 161651 615 0.00 2019-11-10 10:43:38 2019-11-10 10:55:56 t 1 1 161653 422 0.00 2019-11-10 10:55:16 2019-11-10 10:58:16 t 1 1 161656 591 0.00 2019-11-10 11:03:24 2019-11-10 11:07:25 t 1 1 161658 578 0.00 2019-11-09 20:19:58 2019-11-10 11:07:41 t 1 1 161660 591 0.00 2019-11-10 11:11:52 2019-11-10 11:12:39 t 1 1 161664 375 0.00 2019-11-10 10:31:43 2019-11-10 11:16:51 t 1 1 161665 445 0.00 2019-11-10 10:56:05 2019-11-10 11:18:01 t 1 1 161668 422 0.00 2019-11-10 11:07:37 2019-11-10 11:19:52 t 1 1 161670 422 0.00 2019-11-10 11:20:02 2019-11-10 11:21:00 t 1 1 161671 422 0.00 2019-11-10 11:21:56 2019-11-10 11:22:11 t 1 1 161675 615 0.00 2019-11-10 11:09:04 2019-11-10 11:27:51 t 1 1 161677 422 0.00 2019-11-10 11:28:31 2019-11-10 11:28:51 t 1 1 161682 375 0.00 2019-11-10 11:28:04 2019-11-10 11:37:17 t 1 1 161687 422 0.00 2019-11-10 11:41:34 2019-11-10 11:41:56 t 1 1 161688 485 0.00 2019-11-10 11:37:43 2019-11-10 11:42:44 t 1 1 161692 647 0.00 2019-11-10 11:43:41 2019-11-10 11:44:43 t 1 1 161693 623 0.00 2019-11-10 11:44:22 2019-11-10 11:45:30 t 1 1 161694 647 0.00 2019-11-10 11:44:43 2019-11-10 11:46:10 t 1 1 161697 485 0.00 2019-11-10 11:42:44 2019-11-10 11:46:42 t 1 1 161698 623 0.00 2019-11-10 11:46:00 2019-11-10 11:47:15 t 1 1 161700 375 0.00 2019-11-10 11:37:18 2019-11-10 11:47:28 t 1 1 161702 562 0.00 2019-11-10 11:46:32 2019-11-10 11:47:55 t 1 1 161705 623 0.00 2019-11-10 11:49:04 2019-11-10 11:50:16 t 1 1 161708 554 0.00 2019-11-10 11:22:52 2019-11-10 11:51:51 t 1 1 161709 625 0.00 2019-11-10 10:17:35 2019-11-10 11:51:56 t 1 1 161711 623 0.00 2019-11-10 11:50:24 2019-11-10 11:52:16 t 1 1 161712 375 0.00 2019-11-10 11:47:31 2019-11-10 11:52:36 t 1 1 161714 623 0.00 2019-11-10 11:53:24 2019-11-10 11:53:49 t 1 1 161715 422 0.00 2019-11-10 11:48:10 2019-11-10 11:54:03 t 1 1 161717 623 0.00 2019-11-10 11:53:57 2019-11-10 11:54:27 t 1 1 161720 623 0.00 2019-11-10 11:55:39 2019-11-10 11:56:11 t 1 1 161722 647 0.00 2019-11-10 11:52:16 2019-11-10 11:57:17 t 1 1 161724 623 0.00 2019-11-10 11:58:01 2019-11-10 11:58:01 f 1 1 161731 375 0.00 2019-11-10 11:52:41 2019-11-10 12:01:03 t 1 1 161734 375 0.00 2019-11-10 12:01:08 2019-11-10 12:02:35 t 1 1 161737 623 0.00 2019-11-10 12:04:08 2019-11-10 12:04:15 t 1 1 161740 623 0.00 2019-11-10 12:05:56 2019-11-10 12:05:56 f 1 1 161749 615 0.00 2019-11-10 12:06:03 2019-11-10 12:12:52 t 1 1 161751 562 0.00 2019-11-10 12:09:24 2019-11-10 12:16:10 t 1 1 161757 591 0.00 2019-11-10 11:17:01 2019-11-10 12:21:40 t 1 1 161758 375 0.00 2019-11-10 12:19:29 2019-11-10 12:22:49 t 1 1 161759 619 0.00 2019-11-10 12:06:26 2019-11-10 12:23:11 t 1 1 161760 512 0.00 2019-11-10 12:23:15 2019-11-10 12:24:42 t 1 1 161761 625 0.00 2019-11-10 12:15:04 2019-11-10 12:25:02 t 1 1 161764 647 0.00 2019-11-10 12:21:21 2019-11-10 12:30:25 t 1 1 161767 375 0.00 2019-11-10 12:32:27 2019-11-10 12:35:58 t 1 1 161770 562 0.00 2019-11-10 12:32:20 2019-11-10 12:38:03 t 1 1 161771 647 0.00 2019-11-10 12:31:50 2019-11-10 12:39:17 t 1 1 161773 570 0.00 2019-11-10 12:36:27 2019-11-10 12:40:14 t 1 1 161774 570 0.00 2019-11-10 12:40:14 2019-11-10 12:40:46 t 1 1 161775 591 0.00 2019-11-10 12:21:40 2019-11-10 12:41:41 t 1 1 161776 375 0.00 2019-11-10 12:39:30 2019-11-10 12:42:39 t 1 1 161777 375 0.00 2019-11-10 12:42:38 2019-11-10 12:43:23 t 1 1 161780 562 0.00 2019-11-10 12:38:03 2019-11-10 12:47:10 t 1 1 161781 422 0.00 2019-11-10 12:02:52 2019-11-10 12:47:59 t 1 1 161783 445 0.00 2019-11-10 11:18:00 2019-11-10 12:48:36 t 1 1 161784 422 0.00 2019-11-10 12:48:49 2019-11-10 12:49:01 t 1 1 161786 375 0.00 2019-11-10 12:43:23 2019-11-10 12:49:44 t 1 1 161789 625 0.00 2019-11-10 12:28:10 2019-11-10 12:51:38 t 1 1 161792 545 0.00 2019-11-10 12:51:12 2019-11-10 12:54:00 t 1 1 161793 622 0.00 2019-11-10 10:49:26 2019-11-10 12:55:11 t 1 1 161794 422 0.00 2019-11-10 12:55:26 2019-11-10 12:55:50 t 1 1 161796 375 0.00 2019-11-10 12:49:44 2019-11-10 12:57:52 t 1 1 161798 562 0.00 2019-11-10 12:52:15 2019-11-10 13:00:52 t 1 1 161801 422 0.00 2019-11-10 13:00:28 2019-11-10 13:04:59 t 1 1 161803 422 0.00 2019-11-10 13:05:22 2019-11-10 13:05:36 t 1 1 161804 562 0.00 2019-11-10 13:05:59 2019-11-10 13:06:04 t 1 1 161817 647 0.00 2019-11-10 13:14:59 2019-11-10 13:19:10 t 1 1 161820 220 0.00 2019-11-10 13:09:47 2019-11-10 13:21:44 t 1 1 161821 422 0.00 2019-11-10 13:21:01 2019-11-10 13:22:18 t 1 1 161825 220 0.00 2019-11-10 13:21:44 2019-11-10 13:26:40 t 1 1 161826 570 0.00 2019-11-10 12:47:09 2019-11-10 13:26:56 t 1 1 161831 622 0.00 2019-11-10 13:18:19 2019-11-10 13:31:29 t 1 1 161832 585 0.00 2019-11-10 13:31:39 2019-11-10 13:33:20 t 1 1 161834 587 0.00 2019-11-10 13:26:12 2019-11-10 13:34:57 t 1 1 161838 422 0.00 2019-11-10 13:36:00 2019-11-10 13:37:21 t 1 1 161841 587 0.00 2019-11-10 13:35:13 2019-11-10 13:38:22 t 1 1 161847 581 0.00 2019-11-10 13:40:01 2019-11-10 13:41:45 t 1 1 161851 562 0.00 2019-11-10 13:40:55 2019-11-10 13:43:06 t 1 1 161853 587 0.00 2019-11-10 13:42:27 2019-11-10 13:43:24 t 1 1 161855 581 0.00 2019-11-10 13:43:33 2019-11-10 13:44:14 t 1 1 161857 570 0.00 2019-11-10 13:26:55 2019-11-10 13:44:37 t 1 1 161858 647 0.00 2019-11-10 13:44:23 2019-11-10 13:45:28 t 1 1 161860 649 0.00 2019-11-10 13:41:07 2019-11-10 13:47:35 t 1 1 161862 422 0.00 2019-11-10 13:46:59 2019-11-10 13:47:48 t 1 1 161865 562 0.00 2019-11-10 13:48:18 2019-11-10 13:49:58 t 1 1 161868 483 0.00 2019-11-10 13:49:35 2019-11-10 13:51:21 t 1 1 161871 422 0.00 2019-11-10 13:52:02 2019-11-10 13:53:44 t 1 1 161873 587 0.00 2019-11-10 13:43:46 2019-11-10 13:54:05 t 1 1 161877 451 0.00 2019-11-10 13:47:54 2019-11-10 13:55:31 t 1 1 161879 422 0.00 2019-11-10 13:55:49 2019-11-10 13:56:02 t 1 1 161882 562 0.00 2019-11-10 13:56:10 2019-11-10 13:57:35 t 1 1 161884 597 0.00 2019-11-10 13:48:26 2019-11-10 13:58:23 t 1 1 161885 619 0.00 2019-11-10 13:51:26 2019-11-10 13:59:25 t 1 1 161892 422 0.00 2019-11-10 14:08:30 2019-11-10 14:08:58 t 1 1 161894 622 0.00 2019-11-10 13:51:45 2019-11-10 14:09:25 t 1 1 161896 623 0.00 2019-11-10 14:10:40 2019-11-10 14:11:37 t 1 1 161899 566 0.00 2019-11-10 13:41:09 2019-11-10 14:12:20 t 1 1 161905 623 0.00 2019-11-10 14:13:05 2019-11-10 14:14:41 t 1 1 161906 566 0.00 2019-11-10 14:12:20 2019-11-10 14:15:00 t 1 1 161907 597 0.00 2019-11-10 14:11:11 2019-11-10 14:16:02 t 1 1 161914 587 0.00 2019-11-10 14:13:28 2019-11-10 14:22:59 t 1 1 161916 445 0.00 2019-11-10 14:05:32 2019-11-10 14:24:42 t 1 1 161920 591 0.00 2019-11-10 14:26:45 2019-11-10 14:28:22 t 1 1 161936 422 0.00 2019-11-10 14:42:03 2019-11-10 14:42:34 t 1 1 161937 422 0.00 2019-11-10 14:43:26 2019-11-10 14:43:40 t 1 1 161940 587 0.00 2019-11-10 14:33:32 2019-11-10 14:44:39 t 1 1 161942 623 0.00 2019-11-10 14:45:17 2019-11-10 14:45:52 t 1 1 161945 566 0.00 2019-11-10 14:40:30 2019-11-10 14:47:19 t 1 1 161946 562 0.00 2019-11-10 14:46:59 2019-11-10 14:47:20 t 1 1 161950 622 0.00 2019-11-10 14:41:32 2019-11-10 14:48:01 t 1 1 161954 623 0.00 2019-11-10 14:49:37 2019-11-10 14:49:49 t 1 1 161956 623 0.00 2019-11-10 14:50:01 2019-11-10 14:51:21 t 1 1 161961 645 0.00 2019-11-10 14:53:42 2019-11-10 14:54:44 t 1 1 161965 430 0.00 2019-11-10 14:42:34 2019-11-10 14:57:31 t 1 1 161967 481 0.00 2019-11-10 14:13:56 2019-11-10 14:57:42 t 1 1 161971 566 0.00 2019-11-10 14:52:27 2019-11-10 15:01:21 t 1 1 161973 587 0.00 2019-11-10 14:52:14 2019-11-10 15:02:02 t 1 1 161974 627 0.00 2019-11-10 14:55:58 2019-11-10 15:02:24 t 1 1 161977 422 0.00 2019-11-10 15:05:17 2019-11-10 15:05:41 t 1 1 161978 445 0.00 2019-11-10 15:02:26 2019-11-10 15:05:58 t 1 1 161980 430 0.00 2019-11-10 15:02:30 2019-11-10 15:06:47 t 1 1 161988 625 0.00 2019-11-10 13:11:02 2019-11-10 15:11:33 t 1 1 161989 422 0.00 2019-11-10 15:07:33 2019-11-10 15:12:30 t 1 1 161995 587 0.00 2019-11-10 15:02:06 2019-11-10 15:17:14 t 1 1 161998 430 0.00 2019-11-10 15:18:44 2019-11-10 15:18:46 t 1 1 162001 623 0.00 2019-11-10 15:18:59 2019-11-10 15:19:22 t 1 1 162003 430 0.00 2019-11-10 15:19:36 2019-11-10 15:19:48 t 1 1 162005 562 0.00 2019-11-10 15:18:00 2019-11-10 15:20:04 t 1 1 162009 623 0.00 2019-11-10 15:21:43 2019-11-10 15:22:59 t 1 1 162011 430 0.00 2019-11-10 15:21:26 2019-11-10 15:23:18 t 1 1 162015 585 0.00 2019-11-10 15:22:28 2019-11-10 15:24:49 t 1 1 162018 623 0.00 2019-11-10 15:24:05 2019-11-10 15:26:01 t 1 1 162020 625 0.00 2019-11-10 15:11:33 2019-11-10 15:26:20 t 1 1 162029 562 0.00 2019-11-10 15:29:17 2019-11-10 15:29:34 t 1 1 162031 623 0.00 2019-11-10 15:29:38 2019-11-10 15:29:40 t 1 1 162034 430 0.00 2019-11-10 15:30:14 2019-11-10 15:30:21 t 1 1 162035 430 0.00 2019-11-10 15:30:58 2019-11-10 15:31:10 t 1 1 162044 623 0.00 2019-11-10 15:34:24 2019-11-10 15:34:25 t 1 1 162046 430 0.00 2019-11-10 15:34:56 2019-11-10 15:35:33 t 1 1 162057 430 0.00 2019-11-10 15:42:50 2019-11-10 15:44:18 t 1 1 162062 554 0.00 2019-11-10 14:46:45 2019-11-10 15:50:02 t 1 1 162073 554 0.00 2019-11-10 15:50:02 2019-11-10 15:56:31 t 1 1 162078 587 0.00 2019-11-10 15:56:49 2019-11-10 15:57:53 t 1 1 162080 430 0.00 2019-11-10 15:57:57 2019-11-10 15:58:04 t 1 1 162082 422 0.00 2019-11-10 15:38:57 2019-11-10 15:59:05 t 1 1 162083 554 0.00 2019-11-10 15:56:59 2019-11-10 15:59:30 t 1 1 162085 562 0.00 2019-11-10 15:59:18 2019-11-10 15:59:47 t 1 1 162087 514 0.00 2019-11-10 15:59:19 2019-11-10 16:00:24 t 1 1 162088 451 0.00 2019-11-10 15:58:02 2019-11-10 16:00:32 t 1 1 162090 430 0.00 2019-11-10 15:59:40 2019-11-10 16:01:18 t 1 1 162095 430 0.00 2019-11-10 16:01:57 2019-11-10 16:03:18 t 1 1 162098 430 0.00 2019-11-10 16:05:01 2019-11-10 16:05:03 t 1 1 162109 422 0.00 2019-11-10 16:09:20 2019-11-10 16:10:45 t 1 1 162115 422 0.00 2019-11-10 16:10:51 2019-11-10 16:13:16 t 1 1 162117 430 0.00 2019-11-10 16:13:26 2019-11-10 16:13:28 t 1 1 162118 585 0.00 2019-11-10 16:11:44 2019-11-10 16:14:49 t 1 1 162119 551 0.00 2019-11-10 16:07:15 2019-11-10 16:15:33 t 1 1 162121 591 0.00 2019-11-10 16:11:22 2019-11-10 16:16:38 t 1 1 162124 623 0.00 2019-11-10 16:18:58 2019-11-10 16:19:23 t 1 1 162127 623 0.00 2019-11-10 16:20:12 2019-11-10 16:20:13 t 1 1 161843 554 0.00 2019-11-10 12:11:54 2019-11-10 13:39:44 t 1 1 161845 422 0.00 2019-11-10 13:40:17 2019-11-10 13:41:04 t 1 1 161848 587 0.00 2019-11-10 13:40:48 2019-11-10 13:41:56 t 1 1 161849 581 0.00 2019-11-10 13:41:57 2019-11-10 13:42:02 t 1 1 161850 422 0.00 2019-11-10 13:41:48 2019-11-10 13:43:01 t 1 1 161852 422 0.00 2019-11-10 13:43:10 2019-11-10 13:43:24 t 1 1 161854 622 0.00 2019-11-10 13:31:29 2019-11-10 13:43:35 t 1 1 161856 647 0.00 2019-11-10 13:38:12 2019-11-10 13:44:23 t 1 1 161861 647 0.00 2019-11-10 13:45:27 2019-11-10 13:47:36 t 1 1 161864 645 0.00 2019-11-10 13:45:16 2019-11-10 13:49:06 t 1 1 161867 422 0.00 2019-11-10 13:49:03 2019-11-10 13:50:33 t 1 1 161869 622 0.00 2019-11-10 13:43:35 2019-11-10 13:51:45 t 1 1 161870 562 0.00 2019-11-10 13:52:51 2019-11-10 13:53:21 t 1 1 161875 591 0.00 2019-11-10 13:08:18 2019-11-10 13:54:56 t 1 1 161876 422 0.00 2019-11-10 13:54:46 2019-11-10 13:54:58 t 1 1 161881 516 0.00 2019-11-10 13:50:50 2019-11-10 13:57:32 t 1 1 161889 623 0.00 2019-11-10 13:59:21 2019-11-10 14:07:45 t 1 1 161893 581 0.00 2019-11-10 14:04:01 2019-11-10 14:09:15 t 1 1 161898 623 0.00 2019-11-10 14:12:04 2019-11-10 14:12:09 t 1 1 161900 516 0.00 2019-11-10 14:03:07 2019-11-10 14:12:47 t 1 1 161903 481 0.00 2019-11-10 11:47:26 2019-11-10 14:13:56 t 1 1 161908 619 0.00 2019-11-10 14:11:18 2019-11-10 14:16:49 t 1 1 161910 622 0.00 2019-11-10 14:13:04 2019-11-10 14:17:39 t 1 1 161911 422 0.00 2019-11-10 14:19:08 2019-11-10 14:19:41 t 1 1 161912 562 0.00 2019-11-10 14:17:52 2019-11-10 14:20:07 t 1 1 161913 622 0.00 2019-11-10 14:17:40 2019-11-10 14:21:08 t 1 1 161915 220 0.00 2019-11-10 14:21:07 2019-11-10 14:23:04 t 1 1 161918 623 0.00 2019-11-10 14:15:08 2019-11-10 14:27:02 t 1 1 161922 562 0.00 2019-11-10 14:23:34 2019-11-10 14:30:55 t 1 1 161925 375 0.00 2019-11-10 14:09:15 2019-11-10 14:35:00 t 1 1 161927 619 0.00 2019-11-10 14:29:06 2019-11-10 14:35:28 t 1 1 161931 562 0.00 2019-11-10 14:36:07 2019-11-10 14:36:48 t 1 1 161932 637 0.00 2019-11-10 14:31:47 2019-11-10 14:41:02 t 1 1 161933 622 0.00 2019-11-10 14:36:12 2019-11-10 14:41:32 t 1 1 161939 637 0.00 2019-11-10 14:41:02 2019-11-10 14:44:30 t 1 1 161941 623 0.00 2019-11-10 14:43:58 2019-11-10 14:44:39 t 1 1 161943 564 0.00 2019-11-10 14:31:50 2019-11-10 14:46:22 t 1 1 161948 422 0.00 2019-11-10 14:47:20 2019-11-10 14:47:33 t 1 1 161949 623 0.00 2019-11-10 14:47:37 2019-11-10 14:47:49 t 1 1 161952 375 0.00 2019-11-10 14:35:00 2019-11-10 14:49:18 t 1 1 161957 623 0.00 2019-11-10 14:51:26 2019-11-10 14:51:42 t 1 1 161958 587 0.00 2019-11-10 14:44:39 2019-11-10 14:52:14 t 1 1 161963 623 0.00 2019-11-10 14:55:13 2019-11-10 14:56:23 t 1 1 161964 622 0.00 2019-11-10 14:56:46 2019-11-10 14:57:24 t 1 1 161969 562 0.00 2019-11-10 14:57:56 2019-11-10 14:58:30 t 1 1 161970 430 0.00 2019-11-10 14:57:55 2019-11-10 15:01:19 t 1 1 161975 445 0.00 2019-11-10 14:27:16 2019-11-10 15:02:26 t 1 1 161976 422 0.00 2019-11-10 15:02:17 2019-11-10 15:04:24 t 1 1 161982 623 0.00 2019-11-10 15:06:34 2019-11-10 15:07:53 t 1 1 161983 430 0.00 2019-11-10 15:07:59 2019-11-10 15:08:10 t 1 1 161985 623 0.00 2019-11-10 15:09:54 2019-11-10 15:09:55 t 1 1 161986 430 0.00 2019-11-10 15:09:50 2019-11-10 15:10:04 t 1 1 161991 430 0.00 2019-11-10 15:13:17 2019-11-10 15:13:23 t 1 1 161994 422 0.00 2019-11-10 15:13:11 2019-11-10 15:17:08 t 1 1 162010 623 0.00 2019-11-10 15:23:04 2019-11-10 15:23:07 t 1 1 162012 430 0.00 2019-11-10 15:22:35 2019-11-10 15:23:42 t 1 1 162013 422 0.00 2019-11-10 15:23:37 2019-11-10 15:24:14 t 1 1 162014 562 0.00 2019-11-10 15:24:24 2019-11-10 15:24:34 t 1 1 162019 623 0.00 2019-11-10 15:26:06 2019-11-10 15:26:09 t 1 1 162024 562 0.00 2019-11-10 15:27:33 2019-11-10 15:27:42 t 1 1 162026 528 0.00 2019-11-10 15:28:17 2019-11-10 15:28:55 t 1 1 162028 623 0.00 2019-11-10 15:29:24 2019-11-10 15:29:25 t 1 1 162032 430 0.00 2019-11-10 15:29:15 2019-11-10 15:29:56 t 1 1 162036 623 0.00 2019-11-10 15:31:18 2019-11-10 15:31:21 t 1 1 162038 637 0.00 2019-11-10 15:12:15 2019-11-10 15:32:53 t 1 1 162040 591 0.00 2019-11-10 15:29:43 2019-11-10 15:33:33 t 1 1 162042 623 0.00 2019-11-10 15:32:12 2019-11-10 15:34:11 t 1 1 162045 637 0.00 2019-11-10 15:33:42 2019-11-10 15:35:31 t 1 1 162047 422 0.00 2019-11-10 15:34:26 2019-11-10 15:36:37 t 1 1 162049 545 0.00 2019-11-10 15:32:05 2019-11-10 15:37:54 t 1 1 162051 562 0.00 2019-11-10 15:38:45 2019-11-10 15:38:56 t 1 1 162052 551 0.00 2019-11-10 15:35:07 2019-11-10 15:39:22 t 1 1 162054 451 0.00 2019-11-10 15:26:54 2019-11-10 15:42:23 t 1 1 162056 591 0.00 2019-11-10 15:42:43 2019-11-10 15:44:15 t 1 1 162058 587 0.00 2019-11-10 15:42:47 2019-11-10 15:46:59 t 1 1 162060 430 0.00 2019-11-10 15:48:08 2019-11-10 15:48:10 t 1 1 162061 562 0.00 2019-11-10 15:49:17 2019-11-10 15:49:38 t 1 1 162064 623 0.00 2019-11-10 15:50:31 2019-11-10 15:51:15 t 1 1 162065 562 0.00 2019-11-10 15:51:24 2019-11-10 15:51:54 t 1 1 162067 430 0.00 2019-11-10 15:51:13 2019-11-10 15:52:17 t 1 1 162068 551 0.00 2019-11-10 15:47:12 2019-11-10 15:53:12 t 1 1 162069 587 0.00 2019-11-10 15:47:10 2019-11-10 15:54:37 t 1 1 162071 430 0.00 2019-11-10 15:55:42 2019-11-10 15:55:56 t 1 1 162074 430 0.00 2019-11-10 15:56:03 2019-11-10 15:57:11 t 1 1 162075 430 0.00 2019-11-10 15:57:18 2019-11-10 15:57:20 t 1 1 162077 430 0.00 2019-11-10 15:57:33 2019-11-10 15:57:49 t 1 1 162093 516 0.00 2019-11-10 16:00:28 2019-11-10 16:02:25 t 1 1 162094 430 0.00 2019-11-10 16:02:59 2019-11-10 16:03:06 t 1 1 162096 430 0.00 2019-11-10 16:03:37 2019-11-10 16:03:52 t 1 1 162097 430 0.00 2019-11-10 16:04:46 2019-11-10 16:04:54 t 1 1 162100 430 0.00 2019-11-10 16:04:35 2019-11-10 16:05:36 t 1 1 162101 551 0.00 2019-11-10 16:00:14 2019-11-10 16:07:15 t 1 1 162106 631 0.00 2019-11-10 16:08:52 2019-11-10 16:09:47 t 1 1 162108 430 0.00 2019-11-10 16:09:48 2019-11-10 16:10:16 t 1 1 162111 554 0.00 2019-11-10 16:10:17 2019-11-10 16:11:18 t 1 1 162120 430 0.00 2019-11-10 16:16:25 2019-11-10 16:16:36 t 1 1 162123 623 0.00 2019-11-10 16:11:42 2019-11-10 16:18:53 t 1 1 162128 422 0.00 2019-11-10 16:19:08 2019-11-10 16:20:42 t 1 1 162131 587 0.00 2019-11-10 15:57:19 2019-11-10 16:21:02 t 1 1 162134 623 0.00 2019-11-10 16:22:03 2019-11-10 16:22:23 t 1 1 162139 430 0.00 2019-11-10 16:21:34 2019-11-10 16:23:34 t 1 1 162140 485 0.00 2019-11-10 16:20:51 2019-11-10 16:23:55 t 1 1 162141 430 0.00 2019-11-10 16:23:36 2019-11-10 16:25:18 t 1 1 162143 422 0.00 2019-11-10 16:23:25 2019-11-10 16:26:02 t 1 1 162146 422 0.00 2019-11-10 16:26:48 2019-11-10 16:27:19 t 1 1 162148 562 0.00 2019-11-10 16:27:04 2019-11-10 16:27:31 t 1 1 162150 615 0.00 2019-11-10 16:19:28 2019-11-10 16:28:53 t 1 1 161846 566 0.00 2019-11-10 13:10:29 2019-11-10 13:41:09 t 1 1 161859 581 0.00 2019-11-10 13:45:09 2019-11-10 13:45:30 t 1 1 161863 451 0.00 2019-11-10 13:32:37 2019-11-10 13:47:54 t 1 1 161866 581 0.00 2019-11-10 13:46:05 2019-11-10 13:50:04 t 1 1 161872 483 0.00 2019-11-10 13:51:21 2019-11-10 13:53:54 t 1 1 161874 647 0.00 2019-11-10 13:47:36 2019-11-10 13:54:47 t 1 1 161878 647 0.00 2019-11-10 13:54:46 2019-11-10 13:55:55 t 1 1 161880 445 0.00 2019-11-10 12:48:35 2019-11-10 13:57:24 t 1 1 161883 647 0.00 2019-11-10 13:55:55 2019-11-10 13:57:38 t 1 1 161886 445 0.00 2019-11-10 13:57:24 2019-11-10 14:05:25 t 1 1 161887 422 0.00 2019-11-10 14:04:43 2019-11-10 14:06:40 t 1 1 161888 562 0.00 2019-11-10 14:07:11 2019-11-10 14:07:24 t 1 1 161890 451 0.00 2019-11-10 13:55:31 2019-11-10 14:07:48 t 1 1 161891 375 0.00 2019-11-10 13:25:09 2019-11-10 14:08:40 t 1 1 161895 623 0.00 2019-11-10 14:07:45 2019-11-10 14:10:23 t 1 1 161897 379 0.00 2019-11-10 13:36:35 2019-11-10 14:11:53 t 1 1 161901 622 0.00 2019-11-10 14:09:25 2019-11-10 14:13:04 t 1 1 161902 587 0.00 2019-11-10 13:54:16 2019-11-10 14:13:06 t 1 1 161904 578 0.00 2019-11-10 11:07:41 2019-11-10 14:14:26 t 1 1 161909 562 0.00 2019-11-10 14:13:33 2019-11-10 14:17:14 t 1 1 161917 622 0.00 2019-11-10 14:21:08 2019-11-10 14:24:56 t 1 1 161919 445 0.00 2019-11-10 14:24:41 2019-11-10 14:27:17 t 1 1 161921 220 0.00 2019-11-10 14:16:21 2019-11-10 14:28:26 t 1 1 161923 587 0.00 2019-11-10 14:22:59 2019-11-10 14:32:07 t 1 1 161924 422 0.00 2019-11-10 14:29:59 2019-11-10 14:34:58 t 1 1 161926 585 0.00 2019-11-10 14:29:34 2019-11-10 14:35:06 t 1 1 161928 422 0.00 2019-11-10 14:35:32 2019-11-10 14:35:40 t 1 1 161929 622 0.00 2019-11-10 14:24:56 2019-11-10 14:36:12 t 1 1 161930 422 0.00 2019-11-10 14:36:24 2019-11-10 14:36:41 t 1 1 161934 422 0.00 2019-11-10 14:41:31 2019-11-10 14:41:35 t 1 1 161935 562 0.00 2019-11-10 14:40:31 2019-11-10 14:42:17 t 1 1 161938 422 0.00 2019-11-10 14:43:54 2019-11-10 14:44:07 t 1 1 161944 554 0.00 2019-11-10 13:39:44 2019-11-10 14:46:29 t 1 1 161947 623 0.00 2019-11-10 14:46:31 2019-11-10 14:47:29 t 1 1 161951 623 0.00 2019-11-10 14:47:56 2019-11-10 14:48:25 t 1 1 161953 623 0.00 2019-11-10 14:48:32 2019-11-10 14:49:29 t 1 1 161955 564 0.00 2019-11-10 14:46:28 2019-11-10 14:50:36 t 1 1 161959 566 0.00 2019-11-10 14:47:19 2019-11-10 14:52:27 t 1 1 161960 623 0.00 2019-11-10 14:51:47 2019-11-10 14:52:59 t 1 1 161962 623 0.00 2019-11-10 14:53:28 2019-11-10 14:54:52 t 1 1 161966 422 0.00 2019-11-10 14:53:15 2019-11-10 14:57:31 t 1 1 161968 622 0.00 2019-11-10 14:48:01 2019-11-10 14:57:42 t 1 1 161972 422 0.00 2019-11-10 14:59:44 2019-11-10 15:01:53 t 1 1 161979 623 0.00 2019-11-10 14:56:22 2019-11-10 15:06:34 t 1 1 161981 430 0.00 2019-11-10 15:07:37 2019-11-10 15:07:42 t 1 1 161984 623 0.00 2019-11-10 15:08:38 2019-11-10 15:08:49 t 1 1 161987 623 0.00 2019-11-10 15:10:53 2019-11-10 15:10:56 t 1 1 161990 456 0.00 2019-11-10 15:03:59 2019-11-10 15:13:19 t 1 1 161992 430 0.00 2019-11-10 15:15:42 2019-11-10 15:15:44 t 1 1 161993 623 0.00 2019-11-10 15:11:56 2019-11-10 15:17:07 t 1 1 161996 623 0.00 2019-11-10 15:17:58 2019-11-10 15:18:00 t 1 1 161997 623 0.00 2019-11-10 15:18:17 2019-11-10 15:18:35 t 1 1 161999 581 0.00 2019-11-10 15:03:37 2019-11-10 15:18:50 t 1 1 162000 570 0.00 2019-11-10 15:12:25 2019-11-10 15:19:00 t 1 1 162002 430 0.00 2019-11-10 15:19:07 2019-11-10 15:19:25 t 1 1 162004 587 0.00 2019-11-10 15:17:28 2019-11-10 15:19:55 t 1 1 162006 623 0.00 2019-11-10 15:20:00 2019-11-10 15:20:15 t 1 1 162007 623 0.00 2019-11-10 15:21:01 2019-11-10 15:21:02 t 1 1 162008 430 0.00 2019-11-10 15:21:53 2019-11-10 15:21:59 t 1 1 162016 430 0.00 2019-11-10 15:24:34 2019-11-10 15:24:51 t 1 1 162017 528 0.00 2019-11-10 14:49:02 2019-11-10 15:25:48 t 1 1 162021 430 0.00 2019-11-10 15:26:47 2019-11-10 15:26:54 t 1 1 162022 623 0.00 2019-11-10 15:27:15 2019-11-10 15:27:15 t 1 1 162023 623 0.00 2019-11-10 15:27:21 2019-11-10 15:27:35 t 1 1 162025 623 0.00 2019-11-10 15:28:08 2019-11-10 15:28:38 t 1 1 162027 430 0.00 2019-11-10 15:27:53 2019-11-10 15:28:57 t 1 1 162030 587 0.00 2019-11-10 15:19:58 2019-11-10 15:29:37 t 1 1 162033 430 0.00 2019-11-10 15:30:02 2019-11-10 15:30:08 t 1 1 162037 430 0.00 2019-11-10 15:32:22 2019-11-10 15:32:24 t 1 1 162039 581 0.00 2019-11-10 15:21:08 2019-11-10 15:33:08 t 1 1 162041 430 0.00 2019-11-10 15:34:08 2019-11-10 15:34:10 t 1 1 162043 430 0.00 2019-11-10 15:34:17 2019-11-10 15:34:23 t 1 1 162048 528 0.00 2019-11-10 15:34:59 2019-11-10 15:36:58 t 1 1 162050 562 0.00 2019-11-10 15:38:03 2019-11-10 15:38:46 t 1 1 162053 430 0.00 2019-11-10 15:40:24 2019-11-10 15:42:18 t 1 1 162055 587 0.00 2019-11-10 15:29:57 2019-11-10 15:42:27 t 1 1 162059 551 0.00 2019-11-10 15:39:22 2019-11-10 15:47:12 t 1 1 162063 623 0.00 2019-11-10 15:35:23 2019-11-10 15:50:26 t 1 1 162066 597 0.00 2019-11-10 15:38:40 2019-11-10 15:52:00 t 1 1 162070 587 0.00 2019-11-10 15:54:56 2019-11-10 15:55:43 t 1 1 162072 570 0.00 2019-11-10 15:43:31 2019-11-10 15:55:58 t 1 1 162076 647 0.00 2019-11-10 15:56:32 2019-11-10 15:57:42 t 1 1 162079 451 0.00 2019-11-10 15:42:23 2019-11-10 15:58:02 t 1 1 162081 562 0.00 2019-11-10 15:58:01 2019-11-10 15:58:38 t 1 1 162084 538 0.00 2019-11-10 14:05:24 2019-11-10 15:59:39 t 1 1 162086 551 0.00 2019-11-10 15:53:12 2019-11-10 16:00:14 t 1 1 162089 430 0.00 2019-11-10 16:00:54 2019-11-10 16:00:54 f 1 1 162091 562 0.00 2019-11-10 16:00:44 2019-11-10 16:01:27 t 1 1 162092 430 0.00 2019-11-10 16:00:32 2019-11-10 16:02:18 t 1 1 162099 422 0.00 2019-11-10 16:04:01 2019-11-10 16:05:12 t 1 1 162102 591 0.00 2019-11-10 15:52:17 2019-11-10 16:07:49 t 1 1 162103 430 0.00 2019-11-10 16:08:19 2019-11-10 16:08:27 t 1 1 162104 554 0.00 2019-11-10 16:00:40 2019-11-10 16:09:19 t 1 1 162105 375 0.00 2019-11-10 14:49:19 2019-11-10 16:09:27 t 1 1 162107 554 0.00 2019-11-10 16:09:27 2019-11-10 16:10:14 t 1 1 162110 430 0.00 2019-11-10 16:10:27 2019-11-10 16:10:45 t 1 1 162112 623 0.00 2019-11-10 15:51:49 2019-11-10 16:11:42 t 1 1 162113 538 0.00 2019-11-10 16:00:13 2019-11-10 16:11:46 t 1 1 162114 430 0.00 2019-11-10 16:12:47 2019-11-10 16:12:49 t 1 1 162116 430 0.00 2019-11-10 16:11:10 2019-11-10 16:13:18 t 1 1 162122 422 0.00 2019-11-10 16:14:20 2019-11-10 16:18:24 t 1 1 162125 615 0.00 2019-11-10 15:40:49 2019-11-10 16:19:28 t 1 1 162126 430 0.00 2019-11-10 16:19:30 2019-11-10 16:19:33 t 1 1 162129 485 0.00 2019-11-10 16:10:09 2019-11-10 16:20:51 t 1 1 162130 623 0.00 2019-11-10 16:20:49 2019-11-10 16:21:01 t 1 1 162133 623 0.00 2019-11-10 16:19:59 2019-11-10 16:22:18 t 1 1 162135 422 0.00 2019-11-10 16:21:06 2019-11-10 16:23:02 t 1 1 162132 430 0.00 2019-11-10 16:21:12 2019-11-10 16:21:20 t 1 1 162136 562 0.00 2019-11-10 16:04:28 2019-11-10 16:23:14 t 1 1 162142 430 0.00 2019-11-10 16:25:16 2019-11-10 16:25:30 t 1 1 162144 551 0.00 2019-11-10 16:15:33 2019-11-10 16:26:34 t 1 1 162147 430 0.00 2019-11-10 16:26:44 2019-11-10 16:27:19 t 1 1 162149 623 0.00 2019-11-10 16:23:53 2019-11-10 16:28:47 t 1 1 162152 623 0.00 2019-11-10 16:29:12 2019-11-10 16:29:27 t 1 1 162157 220 0.00 2019-11-10 15:33:47 2019-11-10 16:31:52 t 1 1 162159 430 0.00 2019-11-10 16:31:38 2019-11-10 16:33:18 t 1 1 162167 430 0.00 2019-11-10 16:34:59 2019-11-10 16:35:10 t 1 1 162168 623 0.00 2019-11-10 16:35:27 2019-11-10 16:35:31 t 1 1 162170 430 0.00 2019-11-10 16:35:45 2019-11-10 16:36:11 t 1 1 162172 422 0.00 2019-11-10 16:36:23 2019-11-10 16:36:34 t 1 1 162174 623 0.00 2019-11-10 16:36:10 2019-11-10 16:37:18 t 1 1 162177 637 0.00 2019-11-10 16:34:07 2019-11-10 16:38:10 t 1 1 162179 597 0.00 2019-11-10 16:18:03 2019-11-10 16:38:26 t 1 1 162181 591 0.00 2019-11-10 16:27:08 2019-11-10 16:38:49 t 1 1 162186 597 0.00 2019-11-10 16:38:26 2019-11-10 16:39:50 t 1 1 162187 551 0.00 2019-11-10 16:34:51 2019-11-10 16:40:06 t 1 1 162189 623 0.00 2019-11-10 16:39:49 2019-11-10 16:40:51 t 1 1 162197 220 0.00 2019-11-10 16:44:05 2019-11-10 16:44:43 t 1 1 162199 220 0.00 2019-11-10 16:44:43 2019-11-10 16:45:14 t 1 1 162204 430 0.00 2019-11-10 16:47:27 2019-11-10 16:47:32 t 1 1 162209 430 0.00 2019-11-10 16:49:05 2019-11-10 16:49:38 t 1 1 162211 422 0.00 2019-11-10 16:50:27 2019-11-10 16:51:31 t 1 1 162212 591 0.00 2019-11-10 16:46:58 2019-11-10 16:53:20 t 1 1 162213 430 0.00 2019-11-10 16:54:00 2019-11-10 16:54:15 t 1 1 162219 538 0.00 2019-11-10 16:41:42 2019-11-10 16:57:02 t 1 1 162227 619 0.00 2019-11-10 16:58:51 2019-11-10 17:00:38 t 1 1 162233 623 0.00 2019-11-10 17:02:13 2019-11-10 17:02:14 t 1 1 162235 623 0.00 2019-11-10 17:02:26 2019-11-10 17:02:51 t 1 1 162236 625 0.00 2019-11-10 15:26:26 2019-11-10 17:02:59 t 1 1 162240 623 0.00 2019-11-10 17:04:35 2019-11-10 17:04:45 t 1 1 162244 623 0.00 2019-11-10 17:04:26 2019-11-10 17:05:29 t 1 1 162246 430 0.00 2019-11-10 17:05:35 2019-11-10 17:05:42 t 1 1 162249 422 0.00 2019-11-10 17:05:53 2019-11-10 17:06:27 t 1 1 162251 591 0.00 2019-11-10 16:53:15 2019-11-10 17:06:56 t 1 1 162256 554 0.00 2019-11-10 16:35:47 2019-11-10 17:10:43 t 1 1 162257 538 0.00 2019-11-10 17:01:30 2019-11-10 17:11:24 t 1 1 162259 587 0.00 2019-11-10 16:59:43 2019-11-10 17:14:04 t 1 1 162260 615 0.00 2019-11-10 17:07:19 2019-11-10 17:15:22 t 1 1 162263 430 0.00 2019-11-10 17:18:29 2019-11-10 17:18:46 t 1 1 162266 562 0.00 2019-11-10 17:19:10 2019-11-10 17:19:24 t 1 1 162268 430 0.00 2019-11-10 17:20:17 2019-11-10 17:20:55 t 1 1 162269 430 0.00 2019-11-10 17:21:08 2019-11-10 17:21:13 t 1 1 162271 422 0.00 2019-11-10 17:08:48 2019-11-10 17:21:30 t 1 1 162275 647 0.00 2019-11-10 17:22:49 2019-11-10 17:23:24 t 1 1 162278 625 0.00 2019-11-10 17:03:01 2019-11-10 17:23:48 t 1 1 162281 587 0.00 2019-11-10 17:14:27 2019-11-10 17:26:31 t 1 1 162288 562 0.00 2019-11-10 17:30:28 2019-11-10 17:30:38 t 1 1 162296 430 0.00 2019-11-10 17:34:55 2019-11-10 17:36:18 t 1 1 162297 581 0.00 2019-11-10 17:36:25 2019-11-10 17:37:05 t 1 1 162300 538 0.00 2019-11-10 17:19:06 2019-11-10 17:39:25 t 1 1 162304 581 0.00 2019-11-10 17:39:58 2019-11-10 17:40:35 t 1 1 162312 623 0.00 2019-11-10 17:41:46 2019-11-10 17:43:18 t 1 1 162329 562 0.00 2019-11-10 17:52:46 2019-11-10 17:53:58 t 1 1 162330 220 0.00 2019-11-10 17:53:43 2019-11-10 17:54:15 t 1 1 162331 220 0.00 2019-11-10 17:54:15 2019-11-10 17:54:53 t 1 1 162332 562 0.00 2019-11-10 17:54:07 2019-11-10 17:55:01 t 1 1 162338 220 0.00 2019-11-10 17:56:43 2019-11-10 17:57:20 t 1 1 162340 581 0.00 2019-11-10 17:42:47 2019-11-10 17:57:24 t 1 1 162342 430 0.00 2019-11-10 17:57:06 2019-11-10 17:58:15 t 1 1 162345 375 0.00 2019-11-10 17:33:07 2019-11-10 17:58:32 t 1 1 162348 485 0.00 2019-11-10 17:57:33 2019-11-10 17:59:42 t 1 1 162352 220 0.00 2019-11-10 17:59:57 2019-11-10 18:00:31 t 1 1 162353 220 0.00 2019-11-10 18:00:31 2019-11-10 18:01:09 t 1 1 162354 220 0.00 2019-11-10 18:01:09 2019-11-10 18:01:42 t 1 1 162356 220 0.00 2019-11-10 18:01:42 2019-11-10 18:02:20 t 1 1 162363 562 0.00 2019-11-10 18:04:10 2019-11-10 18:04:49 t 1 1 162365 220 0.00 2019-11-10 18:05:15 2019-11-10 18:05:53 t 1 1 162372 562 0.00 2019-11-10 18:06:05 2019-11-10 18:08:26 t 1 1 162382 220 0.00 2019-11-10 15:22:43 2019-11-10 18:12:56 t 1 1 162383 485 0.00 2019-11-10 18:11:30 2019-11-10 18:13:09 t 1 1 162385 375 0.00 2019-11-10 18:06:09 2019-11-10 18:13:38 t 1 1 162388 379 0.00 2019-11-10 18:01:22 2019-11-10 18:14:14 t 1 1 162389 220 0.00 2019-11-10 18:12:34 2019-11-10 18:15:20 t 1 1 162393 220 0.00 2019-11-10 18:16:28 2019-11-10 18:17:06 t 1 1 162397 220 0.00 2019-11-10 18:17:06 2019-11-10 18:19:06 t 1 1 162398 220 0.00 2019-11-10 18:19:06 2019-11-10 18:19:42 t 1 1 162401 532 0.00 2019-11-10 18:07:23 2019-11-10 18:20:27 t 1 1 162403 645 0.00 2019-11-10 18:19:37 2019-11-10 18:20:48 t 1 1 162406 562 0.00 2019-11-10 18:21:06 2019-11-10 18:21:36 t 1 1 162414 220 0.00 2019-11-10 18:25:45 2019-11-10 18:26:20 t 1 1 162415 587 0.00 2019-11-10 18:13:27 2019-11-10 18:26:58 t 1 1 162418 379 0.00 2019-11-10 18:15:13 2019-11-10 18:27:52 t 1 1 162425 562 0.00 2019-11-10 18:28:12 2019-11-10 18:28:42 t 1 1 162427 220 0.00 2019-11-10 18:28:47 2019-11-10 18:29:25 t 1 1 162430 545 0.00 2019-11-10 17:44:22 2019-11-10 18:30:21 t 1 1 162435 445 0.00 2019-11-10 17:12:17 2019-11-10 18:36:19 t 1 1 162437 532 0.00 2019-11-10 18:20:27 2019-11-10 18:36:51 t 1 1 162447 532 0.00 2019-11-10 18:42:53 2019-11-10 18:43:23 t 1 1 162449 532 0.00 2019-11-10 18:44:35 2019-11-10 18:44:51 t 1 1 162450 593 0.00 2019-11-10 18:41:18 2019-11-10 18:46:00 t 1 1 162451 532 0.00 2019-11-10 18:46:40 2019-11-10 18:46:52 t 1 1 162454 532 0.00 2019-11-10 18:47:39 2019-11-10 18:47:57 t 1 1 162455 587 0.00 2019-11-10 18:47:08 2019-11-10 18:48:37 t 1 1 162460 220 0.00 2019-11-10 18:20:56 2019-11-10 18:52:30 t 1 1 162464 622 0.00 2019-11-10 14:57:31 2019-11-10 18:53:38 t 1 1 162465 532 0.00 2019-11-10 18:53:47 2019-11-10 18:54:02 t 1 1 162466 615 0.00 2019-11-10 18:51:14 2019-11-10 18:54:59 t 1 1 162470 570 0.00 2019-11-10 17:20:14 2019-11-10 18:58:27 t 1 1 162473 532 0.00 2019-11-10 18:59:40 2019-11-10 19:00:42 t 1 1 162476 532 0.00 2019-11-10 19:01:54 2019-11-10 19:02:07 t 1 1 162478 562 0.00 2019-11-10 19:03:04 2019-11-10 19:03:26 t 1 1 162479 566 0.00 2019-11-10 18:53:28 2019-11-10 19:04:15 t 1 1 162480 532 0.00 2019-11-10 19:03:02 2019-11-10 19:05:52 t 1 1 162481 422 0.00 2019-11-10 17:24:37 2019-11-10 19:07:26 t 1 1 162137 623 0.00 2019-11-10 16:23:02 2019-11-10 16:23:19 t 1 1 162138 623 0.00 2019-11-10 16:23:27 2019-11-10 16:23:32 t 1 1 162145 591 0.00 2019-11-10 16:20:38 2019-11-10 16:26:52 t 1 1 162151 623 0.00 2019-11-10 16:28:52 2019-11-10 16:29:02 t 1 1 162153 375 0.00 2019-11-10 16:10:30 2019-11-10 16:29:45 t 1 1 162155 430 0.00 2019-11-10 16:30:42 2019-11-10 16:30:46 t 1 1 162156 566 0.00 2019-11-10 16:25:00 2019-11-10 16:31:42 t 1 1 162160 422 0.00 2019-11-10 16:27:30 2019-11-10 16:33:25 t 1 1 162162 430 0.00 2019-11-10 16:33:38 2019-11-10 16:34:11 t 1 1 162164 220 0.00 2019-11-10 16:33:57 2019-11-10 16:34:34 t 1 1 162169 430 0.00 2019-11-10 16:35:28 2019-11-10 16:35:40 t 1 1 162176 562 0.00 2019-11-10 16:37:28 2019-11-10 16:37:44 t 1 1 162183 422 0.00 2019-11-10 16:37:45 2019-11-10 16:39:00 t 1 1 162185 516 0.00 2019-11-10 16:16:18 2019-11-10 16:39:46 t 1 1 162191 430 0.00 2019-11-10 16:41:10 2019-11-10 16:42:18 t 1 1 162193 220 0.00 2019-11-10 16:38:50 2019-11-10 16:42:29 t 1 1 162194 623 0.00 2019-11-10 16:42:34 2019-11-10 16:42:44 t 1 1 162195 220 0.00 2019-11-10 16:42:29 2019-11-10 16:43:06 t 1 1 162198 422 0.00 2019-11-10 16:45:04 2019-11-10 16:45:08 t 1 1 162201 619 0.00 2019-11-10 16:44:33 2019-11-10 16:46:56 t 1 1 162203 430 0.00 2019-11-10 16:47:20 2019-11-10 16:47:22 t 1 1 162205 562 0.00 2019-11-10 16:43:24 2019-11-10 16:48:21 t 1 1 162206 430 0.00 2019-11-10 16:48:57 2019-11-10 16:48:59 t 1 1 162210 430 0.00 2019-11-10 16:50:23 2019-11-10 16:50:55 t 1 1 162214 562 0.00 2019-11-10 16:49:08 2019-11-10 16:54:29 t 1 1 162216 619 0.00 2019-11-10 16:52:48 2019-11-10 16:54:55 t 1 1 162218 508 0.00 2019-11-10 16:27:42 2019-11-10 16:56:43 t 1 2 162220 587 0.00 2019-11-10 16:32:14 2019-11-10 16:57:07 t 1 1 162222 445 0.00 2019-11-10 16:37:44 2019-11-10 16:57:20 t 1 1 162223 578 0.00 2019-11-10 14:14:26 2019-11-10 16:58:06 t 1 1 162226 445 0.00 2019-11-10 16:59:13 2019-11-10 17:00:32 t 1 1 162228 488 0.00 2019-11-10 16:54:39 2019-11-10 17:00:39 t 1 1 162231 623 0.00 2019-11-10 16:50:00 2019-11-10 17:01:48 t 1 1 162232 623 0.00 2019-11-10 17:01:53 2019-11-10 17:02:00 t 1 1 162234 516 0.00 2019-11-10 16:42:31 2019-11-10 17:02:15 t 1 1 162243 562 0.00 2019-11-10 16:58:56 2019-11-10 17:05:07 t 1 1 162247 623 0.00 2019-11-10 17:05:52 2019-11-10 17:06:01 t 1 1 162253 422 0.00 2019-11-10 17:06:54 2019-11-10 17:07:24 t 1 1 162254 430 0.00 2019-11-10 17:07:33 2019-11-10 17:08:00 t 1 1 162258 562 0.00 2019-11-10 17:05:28 2019-11-10 17:13:26 t 1 1 162261 430 0.00 2019-11-10 17:15:02 2019-11-10 17:15:30 t 1 1 162262 430 0.00 2019-11-10 17:15:58 2019-11-10 17:16:20 t 1 1 162270 562 0.00 2019-11-10 17:19:29 2019-11-10 17:21:18 t 1 1 162272 422 0.00 2019-11-10 17:21:36 2019-11-10 17:22:00 t 1 1 162273 430 0.00 2019-11-10 17:22:22 2019-11-10 17:22:39 t 1 1 162274 430 0.00 2019-11-10 17:21:26 2019-11-10 17:23:18 t 1 1 162276 562 0.00 2019-11-10 17:21:57 2019-11-10 17:23:25 t 1 1 162279 430 0.00 2019-11-10 17:24:10 2019-11-10 17:24:34 t 1 1 162280 375 0.00 2019-11-10 16:33:02 2019-11-10 17:26:10 t 1 1 162283 375 0.00 2019-11-10 17:26:20 2019-11-10 17:27:39 t 1 1 162284 430 0.00 2019-11-10 17:28:03 2019-11-10 17:28:09 t 1 1 162287 430 0.00 2019-11-10 17:29:18 2019-11-10 17:29:25 t 1 1 162292 591 0.00 2019-11-10 17:31:07 2019-11-10 17:32:51 t 1 1 162293 587 0.00 2019-11-10 17:26:31 2019-11-10 17:33:10 t 1 1 162294 430 0.00 2019-11-10 17:34:23 2019-11-10 17:34:29 t 1 1 162299 430 0.00 2019-11-10 17:37:40 2019-11-10 17:37:51 t 1 1 162303 623 0.00 2019-11-10 17:09:31 2019-11-10 17:39:54 t 1 1 162305 581 0.00 2019-11-10 17:39:48 2019-11-10 17:40:51 t 1 1 162306 623 0.00 2019-11-10 17:39:54 2019-11-10 17:41:21 t 1 1 162308 623 0.00 2019-11-10 17:42:10 2019-11-10 17:42:10 f 1 1 162313 623 0.00 2019-11-10 17:41:32 2019-11-10 17:43:18 t 1 1 162316 379 0.00 2019-11-10 14:11:53 2019-11-10 17:44:51 t 1 1 162317 591 0.00 2019-11-10 17:43:11 2019-11-10 17:45:44 t 1 1 162318 220 0.00 2019-11-10 16:45:14 2019-11-10 17:46:34 t 1 1 162319 595 0.00 2019-11-10 17:45:52 2019-11-10 17:48:01 t 1 1 162321 430 0.00 2019-11-10 17:48:50 2019-11-10 17:51:20 t 1 1 162323 220 0.00 2019-11-10 17:50:08 2019-11-10 17:52:31 t 1 1 162326 220 0.00 2019-11-10 17:53:05 2019-11-10 17:53:43 t 1 1 162328 430 0.00 2019-11-10 17:53:54 2019-11-10 17:53:56 t 1 1 162335 430 0.00 2019-11-10 17:56:13 2019-11-10 17:56:27 t 1 1 162336 220 0.00 2019-11-10 17:56:02 2019-11-10 17:56:43 t 1 1 162339 587 0.00 2019-11-10 17:38:57 2019-11-10 17:57:24 t 1 1 162343 585 0.00 2019-11-10 17:52:38 2019-11-10 17:58:21 t 1 1 162349 566 0.00 2019-11-10 17:52:29 2019-11-10 17:59:46 t 1 1 162350 220 0.00 2019-11-10 17:59:20 2019-11-10 17:59:57 t 1 1 162351 379 0.00 2019-11-10 17:52:41 2019-11-10 18:00:12 t 1 1 162359 220 0.00 2019-11-10 18:02:51 2019-11-10 18:03:29 t 1 1 162360 220 0.00 2019-11-10 18:03:29 2019-11-10 18:04:04 t 1 1 162364 220 0.00 2019-11-10 18:04:40 2019-11-10 18:05:15 t 1 1 162366 615 0.00 2019-11-10 18:02:52 2019-11-10 18:06:25 t 1 1 162367 220 0.00 2019-11-10 18:05:52 2019-11-10 18:06:27 t 1 1 162368 220 0.00 2019-11-10 18:06:27 2019-11-10 18:07:04 t 1 1 162377 220 0.00 2019-11-10 18:09:59 2019-11-10 18:10:36 t 1 1 162378 220 0.00 2019-11-10 18:10:36 2019-11-10 18:11:10 t 1 1 162384 587 0.00 2019-11-10 17:57:24 2019-11-10 18:13:27 t 1 1 162392 615 0.00 2019-11-10 18:13:38 2019-11-10 18:17:02 t 1 1 162394 585 0.00 2019-11-10 18:09:32 2019-11-10 18:17:19 t 1 1 162395 562 0.00 2019-11-10 18:17:42 2019-11-10 18:18:21 t 1 1 162399 412 0.00 2019-11-10 12:09:18 2019-11-10 18:20:17 t 1 1 162407 597 0.00 2019-11-10 17:49:59 2019-11-10 18:23:05 t 1 1 162408 589 0.00 2019-11-10 18:21:16 2019-11-10 18:23:50 t 1 1 162409 562 0.00 2019-11-10 18:23:32 2019-11-10 18:24:08 t 1 1 162410 562 0.00 2019-11-10 18:24:21 2019-11-10 18:24:29 t 1 1 162412 220 0.00 2019-11-10 18:25:07 2019-11-10 18:25:46 t 1 1 162413 562 0.00 2019-11-10 18:25:55 2019-11-10 18:26:04 t 1 1 162417 220 0.00 2019-11-10 18:26:58 2019-11-10 18:27:31 t 1 1 162420 220 0.00 2019-11-10 18:27:31 2019-11-10 18:28:09 t 1 1 162421 607 0.00 2019-11-10 18:28:24 2019-11-10 18:28:24 f 1 1 162423 619 0.00 2019-11-10 18:24:29 2019-11-10 18:28:26 t 1 1 162428 220 0.00 2019-11-10 18:29:25 2019-11-10 18:30:01 t 1 1 162438 591 0.00 2019-11-10 18:36:19 2019-11-10 18:38:28 t 1 1 162441 532 0.00 2019-11-10 18:39:56 2019-11-10 18:40:14 t 1 1 162443 587 0.00 2019-11-10 18:26:58 2019-11-10 18:41:01 t 1 1 162445 532 0.00 2019-11-10 18:41:36 2019-11-10 18:42:16 t 1 1 162448 589 0.00 2019-11-10 18:23:50 2019-11-10 18:44:13 t 1 1 162452 587 0.00 2019-11-10 18:45:10 2019-11-10 18:46:56 t 1 1 162456 625 0.00 2019-11-10 18:38:31 2019-11-10 18:50:22 t 1 1 162154 619 0.00 2019-11-10 16:27:37 2019-11-10 16:30:02 t 1 1 162158 587 0.00 2019-11-10 16:21:02 2019-11-10 16:32:14 t 1 1 162161 220 0.00 2019-11-10 16:31:51 2019-11-10 16:33:57 t 1 1 162163 623 0.00 2019-11-10 16:29:52 2019-11-10 16:34:20 t 1 1 162165 551 0.00 2019-11-10 16:26:34 2019-11-10 16:34:51 t 1 1 162166 562 0.00 2019-11-10 16:34:56 2019-11-10 16:35:05 t 1 1 162171 430 0.00 2019-11-10 16:36:16 2019-11-10 16:36:22 t 1 1 162173 430 0.00 2019-11-10 16:36:27 2019-11-10 16:37:06 t 1 1 162175 623 0.00 2019-11-10 16:36:27 2019-11-10 16:37:29 t 1 1 162178 220 0.00 2019-11-10 16:34:34 2019-11-10 16:38:12 t 1 1 162180 445 0.00 2019-11-10 15:05:58 2019-11-10 16:38:39 t 1 1 162182 220 0.00 2019-11-10 16:38:12 2019-11-10 16:38:50 t 1 1 162184 623 0.00 2019-11-10 16:37:43 2019-11-10 16:39:18 t 1 1 162188 220 0.00 2019-11-10 14:47:49 2019-11-10 16:40:25 t 1 2 162190 538 0.00 2019-11-10 16:37:59 2019-11-10 16:41:07 t 1 1 162192 623 0.00 2019-11-10 16:41:57 2019-11-10 16:42:25 t 1 1 162196 220 0.00 2019-11-10 16:43:06 2019-11-10 16:44:06 t 1 1 162200 430 0.00 2019-11-10 16:45:17 2019-11-10 16:45:20 t 1 1 162202 430 0.00 2019-11-10 16:47:10 2019-11-10 16:47:11 t 1 1 162207 623 0.00 2019-11-10 16:44:12 2019-11-10 16:49:03 t 1 1 162208 422 0.00 2019-11-10 16:47:44 2019-11-10 16:49:18 t 1 1 162215 488 0.00 2019-11-10 16:47:52 2019-11-10 16:54:39 t 1 1 162217 430 0.00 2019-11-10 16:55:33 2019-11-10 16:55:36 t 1 1 162221 422 0.00 2019-11-10 16:51:49 2019-11-10 16:57:13 t 1 1 162224 538 0.00 2019-11-10 16:57:15 2019-11-10 16:58:23 t 1 1 162225 514 0.00 2019-11-10 16:59:06 2019-11-10 17:00:07 t 1 1 162229 430 0.00 2019-11-10 17:00:35 2019-11-10 17:00:40 t 1 1 162230 514 0.00 2019-11-10 17:00:28 2019-11-10 17:01:29 t 1 1 162237 623 0.00 2019-11-10 17:02:56 2019-11-10 17:03:19 t 1 1 162238 623 0.00 2019-11-10 17:03:32 2019-11-10 17:04:13 t 1 1 162239 581 0.00 2019-11-10 16:39:29 2019-11-10 17:04:39 t 1 1 162241 623 0.00 2019-11-10 17:04:52 2019-11-10 17:04:56 t 1 1 162242 490 0.00 2019-11-10 16:49:48 2019-11-10 17:04:57 t 1 1 162245 581 0.00 2019-11-10 17:05:01 2019-11-10 17:05:41 t 1 1 162248 445 0.00 2019-11-10 17:00:50 2019-11-10 17:06:27 t 1 1 162250 623 0.00 2019-11-10 17:06:33 2019-11-10 17:06:47 t 1 1 162252 430 0.00 2019-11-10 17:06:50 2019-11-10 17:07:16 t 1 1 162255 591 0.00 2019-11-10 17:06:56 2019-11-10 17:08:24 t 1 1 162264 562 0.00 2019-11-10 17:14:53 2019-11-10 17:19:05 t 1 1 162265 430 0.00 2019-11-10 17:17:44 2019-11-10 17:19:18 t 1 1 162267 562 0.00 2019-11-10 17:20:07 2019-11-10 17:20:53 t 1 1 162277 591 0.00 2019-11-10 17:19:37 2019-11-10 17:23:27 t 1 1 162282 615 0.00 2019-11-10 17:22:19 2019-11-10 17:26:57 t 1 1 162285 562 0.00 2019-11-10 17:24:23 2019-11-10 17:28:24 t 1 1 162286 554 0.00 2019-11-10 17:09:48 2019-11-10 17:29:18 t 1 1 162289 591 0.00 2019-11-10 17:29:20 2019-11-10 17:31:01 t 1 1 162290 647 0.00 2019-11-10 17:23:24 2019-11-10 17:31:09 t 1 1 162291 647 0.00 2019-11-10 17:31:08 2019-11-10 17:32:17 t 1 1 162295 581 0.00 2019-11-10 17:11:08 2019-11-10 17:36:13 t 1 1 162298 625 0.00 2019-11-10 17:25:11 2019-11-10 17:37:08 t 1 1 162301 430 0.00 2019-11-10 17:39:22 2019-11-10 17:39:29 t 1 1 162302 430 0.00 2019-11-10 17:39:48 2019-11-10 17:39:49 t 1 1 162307 581 0.00 2019-11-10 17:41:00 2019-11-10 17:41:32 t 1 1 162309 562 0.00 2019-11-10 17:32:23 2019-11-10 17:42:27 t 1 1 162310 430 0.00 2019-11-10 17:40:02 2019-11-10 17:43:00 t 1 1 162311 591 0.00 2019-11-10 17:39:29 2019-11-10 17:43:12 t 1 1 162314 430 0.00 2019-11-10 17:43:11 2019-11-10 17:43:30 t 1 1 162315 545 0.00 2019-11-10 17:30:30 2019-11-10 17:44:21 t 1 1 162320 430 0.00 2019-11-10 17:43:38 2019-11-10 17:48:45 t 1 1 162322 562 0.00 2019-11-10 17:50:58 2019-11-10 17:51:27 t 1 1 162324 585 0.00 2019-11-10 17:51:12 2019-11-10 17:52:35 t 1 1 162325 220 0.00 2019-11-10 17:52:31 2019-11-10 17:53:05 t 1 1 162327 430 0.00 2019-11-10 17:51:29 2019-11-10 17:53:47 t 1 1 162333 220 0.00 2019-11-10 17:54:52 2019-11-10 17:55:25 t 1 1 162334 220 0.00 2019-11-10 17:55:25 2019-11-10 17:56:03 t 1 1 162337 430 0.00 2019-11-10 17:56:32 2019-11-10 17:56:55 t 1 1 162341 220 0.00 2019-11-10 17:57:19 2019-11-10 17:58:11 t 1 1 162344 562 0.00 2019-11-10 17:58:04 2019-11-10 17:58:26 t 1 1 162346 220 0.00 2019-11-10 17:58:11 2019-11-10 17:58:48 t 1 1 162347 220 0.00 2019-11-10 17:58:48 2019-11-10 17:59:20 t 1 1 162355 611 0.00 2019-11-10 17:59:47 2019-11-10 18:01:57 t 1 1 162357 220 0.00 2019-11-10 18:02:20 2019-11-10 18:02:52 t 1 1 162358 562 0.00 2019-11-10 18:01:57 2019-11-10 18:03:05 t 1 1 162361 375 0.00 2019-11-10 18:02:18 2019-11-10 18:04:04 t 1 1 162362 220 0.00 2019-11-10 18:04:03 2019-11-10 18:04:40 t 1 1 162369 532 0.00 2019-11-10 17:48:55 2019-11-10 18:07:23 t 1 1 162370 220 0.00 2019-11-10 18:07:04 2019-11-10 18:07:38 t 1 1 162371 220 0.00 2019-11-10 18:07:37 2019-11-10 18:08:15 t 1 1 162373 220 0.00 2019-11-10 18:08:15 2019-11-10 18:08:48 t 1 1 162374 589 0.00 2019-11-10 17:35:24 2019-11-10 18:09:03 t 1 1 162375 220 0.00 2019-11-10 18:08:48 2019-11-10 18:09:25 t 1 1 162376 220 0.00 2019-11-10 18:09:25 2019-11-10 18:09:59 t 1 1 162379 619 0.00 2019-11-10 18:09:48 2019-11-10 18:11:27 t 1 1 162380 220 0.00 2019-11-10 18:11:09 2019-11-10 18:11:47 t 1 1 162381 220 0.00 2019-11-10 18:11:47 2019-11-10 18:12:34 t 1 1 162386 615 0.00 2019-11-10 18:06:25 2019-11-10 18:13:38 t 1 1 162387 562 0.00 2019-11-10 18:09:15 2019-11-10 18:14:05 t 1 1 162390 562 0.00 2019-11-10 18:14:59 2019-11-10 18:15:48 t 1 1 162391 220 0.00 2019-11-10 18:15:19 2019-11-10 18:16:28 t 1 1 162396 485 0.00 2019-11-10 18:13:08 2019-11-10 18:18:24 t 1 1 162400 589 0.00 2019-11-10 18:09:03 2019-11-10 18:20:23 t 1 1 162402 585 0.00 2019-11-10 18:18:39 2019-11-10 18:20:30 t 1 1 162404 220 0.00 2019-11-10 18:19:42 2019-11-10 18:20:51 t 1 1 162405 220 0.00 2019-11-10 18:20:51 2019-11-10 18:21:29 t 1 1 162411 220 0.00 2019-11-10 18:21:28 2019-11-10 18:25:07 t 1 1 162416 220 0.00 2019-11-10 18:26:20 2019-11-10 18:26:58 t 1 1 162419 562 0.00 2019-11-10 18:27:44 2019-11-10 18:28:02 t 1 1 162422 607 0.00 2019-11-10 18:15:33 2019-11-10 18:28:25 t 1 1 162424 597 0.00 2019-11-10 18:23:05 2019-11-10 18:28:27 t 1 1 162426 220 0.00 2019-11-10 18:28:09 2019-11-10 18:28:47 t 1 1 162429 619 0.00 2019-11-10 18:28:26 2019-11-10 18:30:12 t 1 1 162431 562 0.00 2019-11-10 18:31:58 2019-11-10 18:32:21 t 1 1 162432 375 0.00 2019-11-10 18:13:47 2019-11-10 18:33:13 t 1 1 162433 619 0.00 2019-11-10 18:33:04 2019-11-10 18:34:54 t 1 1 162434 545 0.00 2019-11-10 18:30:21 2019-11-10 18:35:01 t 1 1 162436 516 0.00 2019-11-10 18:22:43 2019-11-10 18:36:50 t 1 1 162439 625 0.00 2019-11-10 17:37:08 2019-11-10 18:38:31 t 1 1 162440 619 0.00 2019-11-10 18:37:33 2019-11-10 18:39:24 t 1 1 162442 375 0.00 2019-11-10 18:33:23 2019-11-10 18:40:40 t 1 1 162444 585 0.00 2019-11-10 18:35:53 2019-11-10 18:41:53 t 1 1 162446 562 0.00 2019-11-10 18:42:41 2019-11-10 18:43:04 t 1 1 162453 589 0.00 2019-11-10 18:43:51 2019-11-10 18:47:45 t 1 1 162458 532 0.00 2019-11-10 18:51:06 2019-11-10 18:51:33 t 1 1 162461 585 0.00 2019-11-10 18:50:22 2019-11-10 18:52:54 t 1 1 162463 593 0.00 2019-11-10 18:46:00 2019-11-10 18:53:17 t 1 1 162468 532 0.00 2019-11-10 18:56:48 2019-11-10 18:57:07 t 1 1 162471 562 0.00 2019-11-10 18:59:09 2019-11-10 18:59:41 t 1 1 162474 589 0.00 2019-11-10 18:47:57 2019-11-10 19:01:21 t 1 1 162477 593 0.00 2019-11-10 18:58:17 2019-11-10 19:03:09 t 1 1 162482 445 0.00 2019-11-10 18:36:09 2019-11-10 19:07:41 t 1 1 162484 589 0.00 2019-11-10 19:05:13 2019-11-10 19:08:11 t 1 1 162485 562 0.00 2019-11-10 19:09:33 2019-11-10 19:10:00 t 1 1 162487 445 0.00 2019-11-10 19:07:46 2019-11-10 19:10:50 t 1 1 162488 597 0.00 2019-11-10 19:09:30 2019-11-10 19:12:22 t 1 1 162490 485 0.00 2019-11-10 19:08:02 2019-11-10 19:12:30 t 1 1 162491 562 0.00 2019-11-10 19:13:34 2019-11-10 19:13:42 t 1 1 162492 622 0.00 2019-11-10 18:53:37 2019-11-10 19:14:53 t 1 1 162499 593 0.00 2019-11-10 19:03:09 2019-11-10 19:19:38 t 1 1 162501 514 0.00 2019-11-10 19:10:22 2019-11-10 19:20:54 t 1 1 162508 562 0.00 2019-11-10 19:24:06 2019-11-10 19:25:07 t 1 1 162512 589 0.00 2019-11-10 19:08:10 2019-11-10 19:26:44 t 1 1 162513 445 0.00 2019-11-10 19:19:37 2019-11-10 19:27:18 t 1 1 162515 597 0.00 2019-11-10 19:25:12 2019-11-10 19:30:11 t 1 1 162519 566 0.00 2019-11-10 19:32:31 2019-11-10 19:33:03 t 1 1 162523 422 0.00 2019-11-10 19:35:08 2019-11-10 19:35:15 t 1 1 162526 622 0.00 2019-11-10 19:25:20 2019-11-10 19:36:44 t 1 1 162527 619 0.00 2019-11-10 19:18:50 2019-11-10 19:37:10 t 1 1 162530 375 0.00 2019-11-10 18:41:06 2019-11-10 19:43:23 t 1 1 162532 597 0.00 2019-11-10 19:34:06 2019-11-10 19:43:43 t 1 1 162537 562 0.00 2019-11-10 19:47:08 2019-11-10 19:47:28 t 1 1 162538 528 0.00 2019-11-10 19:03:33 2019-11-10 19:48:40 t 1 1 162543 647 0.00 2019-11-10 19:51:25 2019-11-10 19:53:36 t 1 1 162546 562 0.00 2019-11-10 19:54:27 2019-11-10 19:54:53 t 1 1 162549 351 0.00 2019-11-10 19:55:35 2019-11-10 19:55:35 f 1 2 162553 562 0.00 2019-11-10 19:58:43 2019-11-10 19:59:09 t 1 1 162556 566 0.00 2019-11-10 19:54:56 2019-11-10 20:01:39 t 1 1 162563 647 0.00 2019-11-10 19:55:22 2019-11-10 20:04:51 t 1 1 162564 445 0.00 2019-11-10 20:02:05 2019-11-10 20:05:17 t 1 1 162565 564 0.00 2019-11-10 20:01:02 2019-11-10 20:06:19 t 1 1 162567 566 0.00 2019-11-10 20:01:39 2019-11-10 20:07:32 t 1 1 162569 585 0.00 2019-11-10 20:06:29 2019-11-10 20:09:55 t 1 1 162572 375 0.00 2019-11-10 20:04:43 2019-11-10 20:11:35 t 1 1 162580 578 0.00 2019-11-10 19:35:39 2019-11-10 20:17:28 t 1 1 162582 481 0.00 2019-11-10 19:27:32 2019-11-10 20:18:22 t 1 1 162586 619 0.00 2019-11-10 20:12:15 2019-11-10 20:22:19 t 1 1 162593 528 0.00 2019-11-10 20:16:16 2019-11-10 20:25:03 t 1 1 162595 645 0.00 2019-11-10 20:23:51 2019-11-10 20:25:44 t 1 1 162596 647 0.00 2019-11-10 20:05:48 2019-11-10 20:26:36 t 1 1 162602 593 0.00 2019-11-10 19:25:55 2019-11-10 20:31:22 t 1 1 162604 512 0.00 2019-11-10 20:05:45 2019-11-10 20:32:06 t 1 1 162606 562 0.00 2019-11-10 20:31:59 2019-11-10 20:32:37 t 1 1 162608 422 0.00 2019-11-10 20:33:20 2019-11-10 20:33:28 t 1 1 162611 562 0.00 2019-11-10 20:34:00 2019-11-10 20:34:43 t 1 1 162612 532 0.00 2019-11-10 19:56:01 2019-11-10 20:35:07 t 1 1 162621 619 0.00 2019-11-10 20:32:10 2019-11-10 20:40:26 t 1 1 162627 649 0.00 2019-11-10 20:37:14 2019-11-10 20:42:13 t 1 1 162628 528 0.00 2019-11-10 20:42:06 2019-11-10 20:42:20 t 1 1 162630 551 0.00 2019-11-10 19:36:30 2019-11-10 20:42:55 t 1 1 162632 619 0.00 2019-11-10 20:42:14 2019-11-10 20:44:50 t 1 1 162635 220 0.00 2019-11-10 18:30:00 2019-11-10 20:45:26 t 1 1 162637 528 0.00 2019-11-10 20:45:49 2019-11-10 20:47:02 t 1 1 162639 551 0.00 2019-11-10 20:42:55 2019-11-10 20:48:41 t 1 1 162640 637 0.00 2019-11-10 20:24:10 2019-11-10 20:49:13 t 1 1 162643 637 0.00 2019-11-10 20:49:19 2019-11-10 20:50:34 t 1 1 162644 422 0.00 2019-11-10 20:47:39 2019-11-10 20:52:00 t 1 1 162649 532 0.00 2019-11-10 20:35:07 2019-11-10 20:56:38 t 1 1 162650 375 0.00 2019-11-10 20:24:04 2019-11-10 20:57:15 t 1 1 162653 422 0.00 2019-11-10 20:56:51 2019-11-10 20:59:18 t 1 1 162655 647 0.00 2019-11-10 20:58:29 2019-11-10 21:00:21 t 1 1 162661 422 0.00 2019-11-10 21:04:44 2019-11-10 21:05:09 t 1 1 162666 649 0.00 2019-11-10 20:42:13 2019-11-10 21:07:39 t 1 1 162669 562 0.00 2019-11-10 21:08:12 2019-11-10 21:08:23 t 1 1 162672 585 0.00 2019-11-10 20:49:47 2019-11-10 21:11:07 t 1 1 162676 532 0.00 2019-11-10 21:12:48 2019-11-10 21:13:02 t 1 1 162679 647 0.00 2019-11-10 21:13:02 2019-11-10 21:15:33 t 1 1 162682 597 0.00 2019-11-10 21:12:26 2019-11-10 21:16:57 t 1 1 162683 562 0.00 2019-11-10 21:17:24 2019-11-10 21:17:33 t 1 1 162687 647 0.00 2019-11-10 21:16:39 2019-11-10 21:18:46 t 1 1 162688 562 0.00 2019-11-10 21:18:58 2019-11-10 21:19:09 t 1 1 162690 562 0.00 2019-11-10 21:19:37 2019-11-10 21:19:49 t 1 1 162691 566 0.00 2019-11-10 21:11:55 2019-11-10 21:20:13 t 1 1 162692 647 0.00 2019-11-10 21:18:46 2019-11-10 21:20:54 t 1 1 162696 532 0.00 2019-11-10 21:22:56 2019-11-10 21:23:09 t 1 1 162699 532 0.00 2019-11-10 21:23:59 2019-11-10 21:24:15 t 1 1 162701 532 0.00 2019-11-10 21:25:18 2019-11-10 21:25:32 t 1 1 162703 532 0.00 2019-11-10 21:26:01 2019-11-10 21:26:12 t 1 1 162704 637 0.00 2019-11-10 21:24:37 2019-11-10 21:27:08 t 1 1 162707 566 0.00 2019-11-10 21:20:13 2019-11-10 21:28:30 t 1 1 162715 597 0.00 2019-11-10 21:31:05 2019-11-10 21:35:50 t 1 1 162723 585 0.00 2019-11-10 21:39:39 2019-11-10 21:41:56 t 1 1 162725 375 0.00 2019-11-10 21:41:04 2019-11-10 21:42:06 t 1 1 162728 578 0.00 2019-11-10 20:22:54 2019-11-10 21:43:45 t 1 1 162731 566 0.00 2019-11-10 21:37:13 2019-11-10 21:45:59 t 1 1 162736 562 0.00 2019-11-10 21:47:47 2019-11-10 21:48:18 t 1 1 162738 422 0.00 2019-11-10 21:49:53 2019-11-10 21:49:57 t 1 1 162739 631 0.00 2019-11-10 21:50:40 2019-11-10 21:51:30 t 1 1 162745 375 0.00 2019-11-10 21:46:44 2019-11-10 21:53:41 t 1 1 162746 532 0.00 2019-11-10 21:53:24 2019-11-10 21:54:26 t 1 1 162748 220 0.00 2019-11-10 21:24:22 2019-11-10 21:55:32 t 1 1 162749 562 0.00 2019-11-10 21:56:05 2019-11-10 21:56:09 t 1 1 162750 551 0.00 2019-11-10 20:48:41 2019-11-10 21:57:42 t 1 1 162753 422 0.00 2019-11-10 22:00:19 2019-11-10 22:00:39 t 1 1 162754 562 0.00 2019-11-10 21:59:20 2019-11-10 22:01:07 t 1 1 162758 637 0.00 2019-11-10 21:54:53 2019-11-10 22:02:50 t 1 1 162457 514 0.00 2019-11-10 18:43:39 2019-11-10 18:50:52 t 1 1 162459 532 0.00 2019-11-10 18:51:41 2019-11-10 18:51:56 t 1 1 162462 532 0.00 2019-11-10 18:52:43 2019-11-10 18:53:01 t 1 1 162467 562 0.00 2019-11-10 18:45:44 2019-11-10 18:55:46 t 1 1 162469 593 0.00 2019-11-10 18:53:17 2019-11-10 18:58:17 t 1 1 162472 514 0.00 2019-11-10 18:50:52 2019-11-10 19:00:33 t 1 1 162475 607 0.00 2019-11-10 18:29:20 2019-11-10 19:01:55 t 1 1 162489 532 0.00 2019-11-10 19:05:52 2019-11-10 19:12:25 t 1 1 162493 562 0.00 2019-11-10 19:15:08 2019-11-10 19:15:18 t 1 1 162494 578 0.00 2019-11-10 16:58:06 2019-11-10 19:17:25 t 1 1 162496 619 0.00 2019-11-10 18:40:13 2019-11-10 19:18:50 t 1 1 162497 562 0.00 2019-11-10 19:18:28 2019-11-10 19:18:59 t 1 1 162504 647 0.00 2019-11-10 19:23:16 2019-11-10 19:24:27 t 1 1 162506 562 0.00 2019-11-10 19:24:32 2019-11-10 19:24:55 t 1 1 162507 635 0.00 2019-11-10 19:18:30 2019-11-10 19:25:05 t 1 1 162509 622 0.00 2019-11-10 19:14:53 2019-11-10 19:25:20 t 1 1 162514 422 0.00 2019-11-10 19:29:48 2019-11-10 19:30:06 t 1 1 162516 483 0.00 2019-11-10 19:30:04 2019-11-10 19:31:13 t 1 1 162517 566 0.00 2019-11-10 19:26:32 2019-11-10 19:32:31 t 1 1 162520 647 0.00 2019-11-10 19:24:26 2019-11-10 19:33:12 t 1 1 162522 615 0.00 2019-11-10 19:33:57 2019-11-10 19:35:15 t 1 1 162529 562 0.00 2019-11-10 19:39:45 2019-11-10 19:40:11 t 1 1 162531 619 0.00 2019-11-10 19:39:18 2019-11-10 19:43:32 t 1 1 162533 562 0.00 2019-11-10 19:43:27 2019-11-10 19:44:05 t 1 1 162534 647 0.00 2019-11-10 19:34:23 2019-11-10 19:44:41 t 1 1 162535 422 0.00 2019-11-10 19:44:29 2019-11-10 19:45:18 t 1 1 162536 422 0.00 2019-11-10 19:45:57 2019-11-10 19:46:11 t 1 1 162539 562 0.00 2019-11-10 19:49:35 2019-11-10 19:50:15 t 1 1 162540 375 0.00 2019-11-10 19:47:19 2019-11-10 19:51:09 t 1 1 162541 647 0.00 2019-11-10 19:44:41 2019-11-10 19:51:25 t 1 1 162545 445 0.00 2019-11-10 19:27:18 2019-11-10 19:53:44 t 1 1 162548 611 0.00 2019-11-10 19:50:24 2019-11-10 19:55:22 t 1 1 162551 562 0.00 2019-11-10 19:57:06 2019-11-10 19:57:25 t 1 1 162552 422 0.00 2019-11-10 19:58:56 2019-11-10 19:59:07 t 1 1 162554 562 0.00 2019-11-10 19:59:44 2019-11-10 20:00:02 t 1 1 162555 597 0.00 2019-11-10 19:58:32 2019-11-10 20:01:20 t 1 1 162557 611 0.00 2019-11-10 19:55:22 2019-11-10 20:01:42 t 1 1 162560 609 0.00 2019-11-10 17:54:41 2019-11-10 20:02:14 t 1 1 162562 375 0.00 2019-11-10 20:03:33 2019-11-10 20:04:43 t 1 1 162568 619 0.00 2019-11-10 20:01:43 2019-11-10 20:09:49 t 1 1 162575 562 0.00 2019-11-10 20:11:17 2019-11-10 20:13:11 t 1 1 162577 591 0.00 2019-11-10 19:57:02 2019-11-10 20:14:20 t 1 1 162579 564 0.00 2019-11-10 20:11:22 2019-11-10 20:16:34 t 1 1 162583 591 0.00 2019-11-10 20:17:38 2019-11-10 20:20:39 t 1 1 162585 562 0.00 2019-11-10 20:21:40 2019-11-10 20:22:08 t 1 1 162588 585 0.00 2019-11-10 20:10:32 2019-11-10 20:22:49 t 1 1 162590 566 0.00 2019-11-10 20:12:56 2019-11-10 20:24:01 t 1 1 162592 562 0.00 2019-11-10 20:24:11 2019-11-10 20:24:27 t 1 1 162599 562 0.00 2019-11-10 20:28:52 2019-11-10 20:29:57 t 1 1 162600 451 0.00 2019-11-10 20:28:02 2019-11-10 20:31:03 t 1 1 162603 622 0.00 2019-11-10 19:36:44 2019-11-10 20:31:29 t 1 1 162605 622 0.00 2019-11-10 20:31:29 2019-11-10 20:32:33 t 1 1 162607 422 0.00 2019-11-10 20:30:35 2019-11-10 20:32:44 t 1 1 162610 566 0.00 2019-11-10 20:31:21 2019-11-10 20:33:52 t 1 1 162613 528 0.00 2019-11-10 20:30:19 2019-11-10 20:35:23 t 1 1 162614 422 0.00 2019-11-10 20:36:56 2019-11-10 20:37:03 t 1 1 162617 528 0.00 2019-11-10 20:36:36 2019-11-10 20:38:16 t 1 1 162620 451 0.00 2019-11-10 20:31:03 2019-11-10 20:39:54 t 1 1 162626 566 0.00 2019-11-10 20:33:52 2019-11-10 20:41:35 t 1 1 162631 647 0.00 2019-11-10 20:41:07 2019-11-10 20:44:09 t 1 1 162634 528 0.00 2019-11-10 20:45:16 2019-11-10 20:45:24 t 1 1 162641 562 0.00 2019-11-10 20:48:29 2019-11-10 20:49:26 t 1 1 162647 645 0.00 2019-11-10 20:40:38 2019-11-10 20:55:02 t 1 1 162648 422 0.00 2019-11-10 20:56:16 2019-11-10 20:56:34 t 1 1 162651 591 0.00 2019-11-10 20:28:27 2019-11-10 20:57:52 t 1 1 162652 566 0.00 2019-11-10 20:41:35 2019-11-10 20:58:19 t 1 1 162654 562 0.00 2019-11-10 20:59:25 2019-11-10 20:59:49 t 1 1 162656 562 0.00 2019-11-10 21:00:14 2019-11-10 21:00:35 t 1 1 162659 566 0.00 2019-11-10 20:58:19 2019-11-10 21:04:19 t 1 1 162660 422 0.00 2019-11-10 21:04:10 2019-11-10 21:04:39 t 1 1 162662 422 0.00 2019-11-10 21:05:15 2019-11-10 21:05:22 t 1 1 162663 562 0.00 2019-11-10 21:04:23 2019-11-10 21:06:18 t 1 1 162664 645 0.00 2019-11-10 20:58:07 2019-11-10 21:07:13 t 1 1 162665 532 0.00 2019-11-10 21:07:33 2019-11-10 21:07:37 t 1 1 162667 422 0.00 2019-11-10 21:05:42 2019-11-10 21:07:48 t 1 1 162671 562 0.00 2019-11-10 21:08:30 2019-11-10 21:09:09 t 1 1 162673 637 0.00 2019-11-10 20:50:30 2019-11-10 21:11:11 t 1 1 162680 375 0.00 2019-11-10 20:57:22 2019-11-10 21:16:21 t 1 1 162681 647 0.00 2019-11-10 21:15:33 2019-11-10 21:16:40 t 1 1 162685 422 0.00 2019-11-10 21:17:57 2019-11-10 21:18:20 t 1 1 162693 538 0.00 2019-11-10 20:49:36 2019-11-10 21:21:02 t 1 1 162695 591 0.00 2019-11-10 21:16:36 2019-11-10 21:23:00 t 1 1 162698 647 0.00 2019-11-10 21:20:54 2019-11-10 21:24:04 t 1 1 162706 647 0.00 2019-11-10 21:25:10 2019-11-10 21:28:19 t 1 1 162709 562 0.00 2019-11-10 21:30:00 2019-11-10 21:30:32 t 1 1 162713 532 0.00 2019-11-10 21:33:29 2019-11-10 21:34:30 t 1 1 162718 422 0.00 2019-11-10 21:35:35 2019-11-10 21:36:07 t 1 1 162722 375 0.00 2019-11-10 21:39:33 2019-11-10 21:40:59 t 1 1 162724 422 0.00 2019-11-10 21:41:50 2019-11-10 21:41:57 t 1 1 162727 637 0.00 2019-11-10 21:41:32 2019-11-10 21:42:35 t 1 1 162729 645 0.00 2019-11-10 21:42:41 2019-11-10 21:43:57 t 1 1 162732 562 0.00 2019-11-10 21:40:44 2019-11-10 21:46:12 t 1 1 162734 422 0.00 2019-11-10 21:46:20 2019-11-10 21:46:53 t 1 1 162740 545 0.00 2019-11-10 21:46:57 2019-11-10 21:52:23 t 1 1 162742 562 0.00 2019-11-10 21:52:36 2019-11-10 21:52:44 t 1 1 162744 562 0.00 2019-11-10 21:53:10 2019-11-10 21:53:25 t 1 1 162755 562 0.00 2019-11-10 22:01:07 2019-11-10 22:02:02 t 1 1 162757 647 0.00 2019-11-10 21:54:57 2019-11-10 22:02:50 t 1 1 162762 566 0.00 2019-11-10 21:52:58 2019-11-10 22:03:41 t 1 1 162771 532 0.00 2019-11-10 22:09:21 2019-11-10 22:09:31 t 1 1 162773 595 0.00 2019-11-10 22:10:11 2019-11-10 22:10:33 t 1 1 162774 585 0.00 2019-11-10 22:04:52 2019-11-10 22:11:08 t 1 1 162776 595 0.00 2019-11-10 22:11:16 2019-11-10 22:11:39 t 1 1 162778 528 0.00 2019-11-10 22:03:40 2019-11-10 22:12:28 t 1 1 162785 595 0.00 2019-11-10 22:15:16 2019-11-10 22:15:38 t 1 1 162788 532 0.00 2019-11-10 22:18:46 2019-11-10 22:18:49 t 1 1 162789 595 0.00 2019-11-10 22:15:50 2019-11-10 22:19:13 t 1 1 162483 516 0.00 2019-11-10 18:59:44 2019-11-10 19:07:45 t 1 1 162486 514 0.00 2019-11-10 19:00:33 2019-11-10 19:10:22 t 1 1 162495 422 0.00 2019-11-10 19:07:26 2019-11-10 19:17:48 t 1 1 162498 422 0.00 2019-11-10 19:19:05 2019-11-10 19:19:29 t 1 1 162500 566 0.00 2019-11-10 19:04:15 2019-11-10 19:20:31 t 1 1 162502 562 0.00 2019-11-10 19:22:21 2019-11-10 19:22:32 t 1 1 162503 647 0.00 2019-11-10 17:32:17 2019-11-10 19:23:16 t 1 1 162505 581 0.00 2019-11-10 18:59:46 2019-11-10 19:24:40 t 1 1 162510 593 0.00 2019-11-10 19:19:38 2019-11-10 19:25:55 t 1 1 162511 566 0.00 2019-11-10 19:20:31 2019-11-10 19:26:32 t 1 1 162518 562 0.00 2019-11-10 19:32:27 2019-11-10 19:32:47 t 1 1 162521 647 0.00 2019-11-10 19:33:11 2019-11-10 19:34:23 t 1 1 162524 578 0.00 2019-11-10 19:17:25 2019-11-10 19:35:39 t 1 1 162525 551 0.00 2019-11-10 16:40:06 2019-11-10 19:36:30 t 1 1 162528 532 0.00 2019-11-10 19:12:25 2019-11-10 19:37:28 t 1 1 162542 220 0.00 2019-11-10 19:14:29 2019-11-10 19:52:40 t 1 1 162544 562 0.00 2019-11-10 19:53:14 2019-11-10 19:53:38 t 1 1 162547 647 0.00 2019-11-10 19:53:36 2019-11-10 19:55:04 t 1 1 162550 422 0.00 2019-11-10 19:56:23 2019-11-10 19:56:46 t 1 1 162558 445 0.00 2019-11-10 19:54:30 2019-11-10 20:01:50 t 1 1 162559 375 0.00 2019-11-10 19:51:15 2019-11-10 20:02:10 t 1 1 162561 570 0.00 2019-11-10 18:58:27 2019-11-10 20:03:14 t 1 1 162566 562 0.00 2019-11-10 20:06:25 2019-11-10 20:06:44 t 1 1 162570 562 0.00 2019-11-10 20:09:40 2019-11-10 20:10:47 t 1 1 162571 564 0.00 2019-11-10 20:06:19 2019-11-10 20:11:22 t 1 1 162573 566 0.00 2019-11-10 20:07:32 2019-11-10 20:12:56 t 1 1 162574 635 0.00 2019-11-10 19:59:31 2019-11-10 20:13:06 t 1 1 162576 422 0.00 2019-11-10 20:05:24 2019-11-10 20:14:10 t 1 1 162578 528 0.00 2019-11-10 19:48:39 2019-11-10 20:16:16 t 1 1 162581 422 0.00 2019-11-10 20:16:51 2019-11-10 20:17:29 t 1 1 162584 485 0.00 2019-11-10 20:18:08 2019-11-10 20:22:07 t 1 1 162587 637 0.00 2019-11-10 20:21:28 2019-11-10 20:22:39 t 1 1 162589 578 0.00 2019-11-10 20:18:00 2019-11-10 20:22:54 t 1 1 162591 375 0.00 2019-11-10 20:11:42 2019-11-10 20:24:04 t 1 1 162594 528 0.00 2019-11-10 20:24:59 2019-11-10 20:25:24 t 1 1 162597 647 0.00 2019-11-10 20:26:36 2019-11-10 20:27:44 t 1 1 162598 422 0.00 2019-11-10 20:27:37 2019-11-10 20:28:11 t 1 1 162601 566 0.00 2019-11-10 20:24:01 2019-11-10 20:31:21 t 1 1 162609 562 0.00 2019-11-10 20:32:54 2019-11-10 20:33:40 t 1 1 162615 647 0.00 2019-11-10 20:27:43 2019-11-10 20:37:18 t 1 1 162616 562 0.00 2019-11-10 20:38:02 2019-11-10 20:38:10 t 1 1 162618 562 0.00 2019-11-10 20:38:23 2019-11-10 20:38:36 t 1 1 162619 528 0.00 2019-11-10 20:38:45 2019-11-10 20:39:07 t 1 1 162622 645 0.00 2019-11-10 20:36:42 2019-11-10 20:40:31 t 1 1 162623 528 0.00 2019-11-10 20:40:35 2019-11-10 20:40:55 t 1 1 162624 593 0.00 2019-11-10 20:31:22 2019-11-10 20:41:19 t 1 1 162625 562 0.00 2019-11-10 20:41:31 2019-11-10 20:41:35 t 1 1 162629 481 0.00 2019-11-10 20:18:22 2019-11-10 20:42:47 t 1 1 162633 593 0.00 2019-11-10 20:41:19 2019-11-10 20:44:51 t 1 1 162636 451 0.00 2019-11-10 20:39:54 2019-11-10 20:46:23 t 1 1 162638 422 0.00 2019-11-10 20:46:06 2019-11-10 20:47:02 t 1 1 162642 538 0.00 2019-11-10 20:25:43 2019-11-10 20:49:36 t 1 1 162645 516 0.00 2019-11-10 20:44:01 2019-11-10 20:52:16 t 1 1 162646 422 0.00 2019-11-10 20:52:39 2019-11-10 20:53:02 t 1 1 162657 422 0.00 2019-11-10 21:00:30 2019-11-10 21:01:11 t 1 1 162658 422 0.00 2019-11-10 21:01:44 2019-11-10 21:02:11 t 1 1 162668 532 0.00 2019-11-10 21:07:47 2019-11-10 21:08:00 t 1 1 162670 532 0.00 2019-11-10 21:08:48 2019-11-10 21:09:00 t 1 1 162674 566 0.00 2019-11-10 21:04:19 2019-11-10 21:11:55 t 1 1 162675 591 0.00 2019-11-10 21:07:25 2019-11-10 21:12:22 t 1 1 162677 637 0.00 2019-11-10 21:11:10 2019-11-10 21:13:31 t 1 1 162678 562 0.00 2019-11-10 21:14:21 2019-11-10 21:14:44 t 1 1 162684 532 0.00 2019-11-10 21:17:54 2019-11-10 21:18:11 t 1 1 162686 562 0.00 2019-11-10 21:18:22 2019-11-10 21:18:31 t 1 1 162689 619 0.00 2019-11-10 21:11:51 2019-11-10 21:19:13 t 1 1 162694 532 0.00 2019-11-10 21:21:30 2019-11-10 21:21:31 t 1 1 162697 516 0.00 2019-11-10 21:06:57 2019-11-10 21:23:25 t 1 1 162700 647 0.00 2019-11-10 21:24:03 2019-11-10 21:25:10 t 1 1 162702 422 0.00 2019-11-10 21:24:30 2019-11-10 21:25:51 t 1 1 162705 532 0.00 2019-11-10 21:25:54 2019-11-10 21:27:18 t 1 1 162708 532 0.00 2019-11-10 21:27:57 2019-11-10 21:29:17 t 1 1 162710 532 0.00 2019-11-10 21:32:17 2019-11-10 21:32:22 t 1 1 162711 637 0.00 2019-11-10 21:27:07 2019-11-10 21:33:04 t 1 1 162712 562 0.00 2019-11-10 21:32:45 2019-11-10 21:34:18 t 1 1 162714 445 0.00 2019-11-10 20:05:59 2019-11-10 21:35:29 t 1 1 162716 220 0.00 2019-11-10 17:36:00 2019-11-10 21:35:52 t 1 2 162717 637 0.00 2019-11-10 21:34:40 2019-11-10 21:36:01 t 1 1 162719 566 0.00 2019-11-10 21:28:30 2019-11-10 21:37:13 t 1 1 162720 562 0.00 2019-11-10 21:37:21 2019-11-10 21:37:30 t 1 1 162721 375 0.00 2019-11-10 21:26:07 2019-11-10 21:39:08 t 1 1 162726 451 0.00 2019-11-10 20:48:33 2019-11-10 21:42:25 t 1 1 162730 562 0.00 2019-11-10 21:45:18 2019-11-10 21:45:35 t 1 1 162733 647 0.00 2019-11-10 21:28:19 2019-11-10 21:46:53 t 1 1 162735 412 0.00 2019-11-10 18:20:17 2019-11-10 21:48:07 t 1 1 162737 637 0.00 2019-11-10 21:46:20 2019-11-10 21:48:41 t 1 1 162741 445 0.00 2019-11-10 21:35:56 2019-11-10 21:52:38 t 1 1 162743 566 0.00 2019-11-10 21:45:59 2019-11-10 21:52:58 t 1 1 162747 647 0.00 2019-11-10 21:46:52 2019-11-10 21:54:47 t 1 1 162751 532 0.00 2019-11-10 21:58:38 2019-11-10 21:58:39 t 1 1 162752 528 0.00 2019-11-10 21:15:07 2019-11-10 21:59:44 t 1 1 162756 528 0.00 2019-11-10 21:59:45 2019-11-10 22:02:46 t 1 1 162759 562 0.00 2019-11-10 22:02:55 2019-11-10 22:03:06 t 1 1 162765 456 0.00 2019-11-10 21:57:31 2019-11-10 22:07:24 t 1 1 162767 532 0.00 2019-11-10 22:07:34 2019-11-10 22:07:46 t 1 1 162769 551 0.00 2019-11-10 21:57:42 2019-11-10 22:08:42 t 1 1 162777 637 0.00 2019-11-10 22:03:28 2019-11-10 22:12:13 t 1 1 162780 422 0.00 2019-11-10 22:02:19 2019-11-10 22:12:52 t 1 1 162782 532 0.00 2019-11-10 22:13:46 2019-11-10 22:13:47 t 1 1 162784 532 0.00 2019-11-10 22:15:22 2019-11-10 22:15:36 t 1 1 162786 647 0.00 2019-11-10 22:06:00 2019-11-10 22:15:55 t 1 1 162787 528 0.00 2019-11-10 22:15:24 2019-11-10 22:16:00 t 1 1 162790 647 0.00 2019-11-10 22:15:57 2019-11-10 22:19:57 t 1 1 162791 585 0.00 2019-11-10 22:18:52 2019-11-10 22:22:04 t 1 1 162795 647 0.00 2019-11-10 22:19:57 2019-11-10 22:24:04 t 1 1 162796 566 0.00 2019-11-10 22:13:08 2019-11-10 22:24:53 t 1 1 162804 532 0.00 2019-11-10 22:28:29 2019-11-10 22:28:47 t 1 1 162808 581 0.00 2019-11-10 22:28:37 2019-11-10 22:30:01 t 1 1 162760 532 0.00 2019-11-10 22:03:15 2019-11-10 22:03:28 t 1 1 162761 532 0.00 2019-11-10 22:03:37 2019-11-10 22:03:40 t 1 1 162763 562 0.00 2019-11-10 22:03:49 2019-11-10 22:04:26 t 1 1 162764 647 0.00 2019-11-10 22:02:57 2019-11-10 22:06:01 t 1 1 162766 595 0.00 2019-11-10 21:43:23 2019-11-10 22:07:36 t 1 1 162768 562 0.00 2019-11-10 22:06:36 2019-11-10 22:08:18 t 1 1 162770 562 0.00 2019-11-10 22:07:01 2019-11-10 22:09:15 t 1 1 162772 595 0.00 2019-11-10 22:09:52 2019-11-10 22:10:00 t 1 1 162775 595 0.00 2019-11-10 22:10:45 2019-11-10 22:11:08 t 1 1 162779 532 0.00 2019-11-10 22:12:04 2019-11-10 22:12:37 t 1 1 162781 566 0.00 2019-11-10 22:03:41 2019-11-10 22:13:08 t 1 1 162783 595 0.00 2019-11-10 22:11:50 2019-11-10 22:15:05 t 1 1 162798 528 0.00 2019-11-10 22:23:22 2019-11-10 22:25:18 t 1 1 162801 528 0.00 2019-11-10 22:24:19 2019-11-10 22:26:15 t 1 1 162805 422 0.00 2019-11-10 22:22:50 2019-11-10 22:29:04 t 1 1 162807 422 0.00 2019-11-10 22:29:48 2019-11-10 22:29:54 t 1 1 162810 647 0.00 2019-11-10 22:27:57 2019-11-10 22:31:42 t 1 1 162813 220 0.00 2019-11-10 22:26:06 2019-11-10 22:32:19 t 1 1 162816 637 0.00 2019-11-10 22:33:59 2019-11-10 22:34:59 t 1 1 162819 581 0.00 2019-11-10 22:31:03 2019-11-10 22:36:45 t 1 1 162824 551 0.00 2019-11-10 22:08:42 2019-11-10 22:39:43 t 1 1 162826 532 0.00 2019-11-10 22:39:43 2019-11-10 22:39:59 t 1 1 162837 611 0.00 2019-11-10 22:47:16 2019-11-10 22:48:18 t 1 1 162838 562 0.00 2019-11-10 22:32:54 2019-11-10 22:49:12 t 1 1 162841 564 0.00 2019-11-10 20:16:34 2019-11-10 22:50:23 t 1 1 162842 562 0.00 2019-11-10 22:51:21 2019-11-10 22:51:30 t 1 1 162844 422 0.00 2019-11-10 22:49:40 2019-11-10 22:51:56 t 1 1 162845 587 0.00 2019-11-10 22:35:28 2019-11-10 22:52:17 t 1 1 162850 422 0.00 2019-11-10 22:56:19 2019-11-10 22:56:20 t 1 1 162854 422 0.00 2019-11-10 22:56:52 2019-11-10 22:57:15 t 1 1 162857 487 0.00 2019-11-10 22:41:26 2019-11-10 22:59:32 t 1 2 162860 532 0.00 2019-11-10 23:00:05 2019-11-10 23:00:10 t 1 1 162862 503 0.00 2019-11-10 22:58:42 2019-11-10 23:02:33 t 1 1 162867 532 0.00 2019-11-10 23:07:58 2019-11-10 23:08:13 t 1 1 162872 637 0.00 2019-11-10 22:57:22 2019-11-10 23:11:32 t 1 1 162881 532 0.00 2019-11-10 23:19:13 2019-11-10 23:19:27 t 1 1 162891 623 0.00 2019-11-10 23:23:11 2019-11-10 23:26:52 t 1 1 162892 623 0.00 2019-11-10 23:26:58 2019-11-10 23:27:04 t 1 1 162894 623 0.00 2019-11-10 23:27:57 2019-11-10 23:28:03 t 1 1 162895 623 0.00 2019-11-10 23:28:16 2019-11-10 23:28:24 t 1 1 162900 562 0.00 2019-11-10 23:29:56 2019-11-10 23:30:20 t 1 1 162903 625 0.00 2019-11-10 23:04:35 2019-11-10 23:34:30 t 1 1 162905 623 0.00 2019-11-10 23:35:20 2019-11-10 23:35:21 t 1 1 162907 587 0.00 2019-11-10 23:27:26 2019-11-10 23:35:52 t 1 1 162908 587 0.00 2019-11-10 23:35:56 2019-11-10 23:35:58 t 1 1 162911 623 0.00 2019-11-10 23:38:13 2019-11-10 23:38:14 t 1 1 162915 562 0.00 2019-11-10 23:40:46 2019-11-10 23:41:10 t 1 1 162917 451 0.00 2019-11-10 23:30:42 2019-11-10 23:41:32 t 1 1 162923 623 0.00 2019-11-10 23:41:18 2019-11-10 23:43:18 t 1 1 162927 623 0.00 2019-11-10 23:45:49 2019-11-10 23:45:57 t 1 1 162931 532 0.00 2019-11-10 23:46:48 2019-11-10 23:46:59 t 1 1 162933 587 0.00 2019-11-10 23:40:00 2019-11-10 23:47:54 t 1 1 162934 623 0.00 2019-11-10 23:48:34 2019-11-10 23:48:35 t 1 1 162937 623 0.00 2019-11-10 23:50:34 2019-11-10 23:50:41 t 1 1 162940 562 0.00 2019-11-10 23:51:24 2019-11-10 23:51:50 t 1 1 162944 623 0.00 2019-11-10 23:52:25 2019-11-10 23:52:33 t 1 1 162945 623 0.00 2019-11-10 23:52:47 2019-11-10 23:52:52 t 1 1 162947 623 0.00 2019-11-10 23:54:39 2019-11-10 23:55:29 t 1 1 162948 623 0.00 2019-11-10 23:55:48 2019-11-10 23:55:50 t 1 1 162954 422 0.00 2019-11-11 00:00:27 2019-11-11 00:00:45 t 1 1 162956 623 0.00 2019-11-11 00:01:43 2019-11-11 00:01:45 t 1 1 162959 562 0.00 2019-11-11 00:02:12 2019-11-11 00:02:37 t 1 1 162960 422 0.00 2019-11-11 00:02:52 2019-11-11 00:03:25 t 1 1 162962 623 0.00 2019-11-11 00:04:02 2019-11-11 00:04:03 t 1 1 162970 623 0.00 2019-11-11 00:11:06 2019-11-11 00:11:46 t 1 1 162972 562 0.00 2019-11-11 00:12:56 2019-11-11 00:13:24 t 1 1 162975 422 0.00 2019-11-11 00:13:39 2019-11-11 00:13:59 t 1 1 162984 512 0.00 2019-11-11 00:06:09 2019-11-11 00:20:36 t 1 1 162988 623 0.00 2019-11-11 00:24:04 2019-11-11 00:24:05 t 1 1 162992 623 0.00 2019-11-11 00:27:22 2019-11-11 00:27:23 t 1 1 162994 623 0.00 2019-11-11 00:28:14 2019-11-11 00:28:17 t 1 1 162997 532 0.00 2019-11-11 00:29:08 2019-11-11 00:29:25 t 1 1 163000 645 0.00 2019-11-11 00:30:20 2019-11-11 00:31:14 t 1 1 163008 532 0.00 2019-11-11 00:35:41 2019-11-11 00:37:18 t 1 1 163014 532 0.00 2019-11-11 00:40:44 2019-11-11 00:40:45 t 1 1 163018 532 0.00 2019-11-11 00:42:21 2019-11-11 00:42:35 t 1 1 163020 532 0.00 2019-11-11 00:43:21 2019-11-11 00:43:35 t 1 1 163023 532 0.00 2019-11-11 00:45:25 2019-11-11 00:45:38 t 1 1 163027 623 0.00 2019-11-11 00:45:32 2019-11-11 00:47:18 t 1 1 163028 623 0.00 2019-11-11 00:48:33 2019-11-11 00:48:36 t 1 1 163029 623 0.00 2019-11-11 00:49:28 2019-11-11 00:49:30 t 1 1 163031 422 0.00 2019-11-11 00:31:38 2019-11-11 00:51:31 t 1 1 163044 623 0.00 2019-11-11 00:58:49 2019-11-11 00:58:49 t 1 1 163048 623 0.00 2019-11-11 01:01:46 2019-11-11 01:01:48 t 1 1 163050 623 0.00 2019-11-11 01:03:48 2019-11-11 01:03:52 t 1 1 163054 532 0.00 2019-11-11 01:05:44 2019-11-11 01:05:53 t 1 1 163055 623 0.00 2019-11-11 01:05:59 2019-11-11 01:06:00 t 1 1 163057 623 0.00 2019-11-11 01:04:51 2019-11-11 01:06:18 t 1 1 163058 623 0.00 2019-11-11 01:06:51 2019-11-11 01:06:57 t 1 1 163060 532 0.00 2019-11-11 01:07:50 2019-11-11 01:08:46 t 1 1 163063 422 0.00 2019-11-11 01:05:27 2019-11-11 01:09:18 t 1 1 163069 562 0.00 2019-11-11 01:13:48 2019-11-11 01:13:59 t 1 1 163074 422 0.00 2019-11-11 01:18:26 2019-11-11 01:18:43 t 1 1 163075 623 0.00 2019-11-11 01:19:03 2019-11-11 01:19:06 t 1 1 163080 532 0.00 2019-11-11 01:20:56 2019-11-11 01:21:10 t 1 1 163083 562 0.00 2019-11-11 01:21:22 2019-11-11 01:21:34 t 1 1 163085 532 0.00 2019-11-11 01:22:57 2019-11-11 01:23:18 t 1 1 163086 587 0.00 2019-11-11 01:24:02 2019-11-11 01:24:09 t 1 1 163092 623 0.00 2019-11-11 01:28:12 2019-11-11 01:28:14 t 1 1 163094 587 0.00 2019-11-11 01:24:47 2019-11-11 01:29:49 t 1 1 163096 532 0.00 2019-11-11 01:30:07 2019-11-11 01:30:18 t 1 1 163101 623 0.00 2019-11-11 01:32:16 2019-11-11 01:32:18 t 1 1 163104 422 0.00 2019-11-11 01:32:43 2019-11-11 01:33:09 t 1 1 163105 623 0.00 2019-11-11 01:34:18 2019-11-11 01:34:20 t 1 1 163107 623 0.00 2019-11-11 01:35:13 2019-11-11 01:35:19 t 1 1 163108 623 0.00 2019-11-11 01:36:29 2019-11-11 01:36:37 t 1 1 163109 623 0.00 2019-11-11 01:37:21 2019-11-11 01:37:24 t 1 1 162792 422 0.00 2019-11-10 22:13:22 2019-11-10 22:22:50 t 1 1 162793 538 0.00 2019-11-10 21:35:27 2019-11-10 22:23:05 t 1 1 162794 585 0.00 2019-11-10 22:22:04 2019-11-10 22:23:35 t 1 1 162797 581 0.00 2019-11-10 22:14:59 2019-11-10 22:24:58 t 1 1 162799 532 0.00 2019-11-10 22:25:32 2019-11-10 22:25:49 t 1 1 162800 220 0.00 2019-11-10 19:52:40 2019-11-10 22:26:06 t 1 1 162802 647 0.00 2019-11-10 22:24:31 2019-11-10 22:27:26 t 1 1 162803 587 0.00 2019-11-10 22:17:38 2019-11-10 22:28:41 t 1 1 162806 220 0.00 2019-11-10 22:16:24 2019-11-10 22:29:53 t 1 1 162809 637 0.00 2019-11-10 22:12:13 2019-11-10 22:30:56 t 1 1 162812 562 0.00 2019-11-10 22:09:15 2019-11-10 22:32:14 t 1 1 162815 528 0.00 2019-11-10 22:31:53 2019-11-10 22:34:01 t 1 1 162818 528 0.00 2019-11-10 22:34:10 2019-11-10 22:35:17 t 1 1 162820 645 0.00 2019-11-10 22:27:33 2019-11-10 22:37:01 t 1 1 162822 481 0.00 2019-11-10 20:42:47 2019-11-10 22:37:38 t 1 1 162823 220 0.00 2019-11-10 22:30:00 2019-11-10 22:38:45 t 1 1 162828 503 0.00 2019-11-10 22:37:45 2019-11-10 22:42:22 t 1 1 162829 532 0.00 2019-11-10 22:42:32 2019-11-10 22:42:33 t 1 1 162832 566 0.00 2019-11-10 22:39:58 2019-11-10 22:45:15 t 1 1 162835 532 0.00 2019-11-10 22:47:35 2019-11-10 22:47:36 t 1 1 162836 532 0.00 2019-11-10 22:47:46 2019-11-10 22:48:04 t 1 1 162840 562 0.00 2019-11-10 22:49:53 2019-11-10 22:50:03 t 1 1 162847 591 0.00 2019-11-10 21:28:33 2019-11-10 22:53:33 t 1 1 162848 422 0.00 2019-11-10 22:52:17 2019-11-10 22:54:22 t 1 1 162849 220 0.00 2019-11-10 22:49:56 2019-11-10 22:55:45 t 1 1 162852 483 0.00 2019-11-10 22:45:40 2019-11-10 22:56:34 t 1 1 162853 637 0.00 2019-11-10 22:35:51 2019-11-10 22:57:14 t 1 1 162856 503 0.00 2019-11-10 22:42:22 2019-11-10 22:58:24 t 1 1 162859 566 0.00 2019-11-10 22:51:53 2019-11-10 22:59:57 t 1 1 162861 532 0.00 2019-11-10 23:02:13 2019-11-10 23:02:16 t 1 1 162863 611 0.00 2019-11-10 22:49:10 2019-11-10 23:02:46 t 1 1 162870 422 0.00 2019-11-10 23:02:09 2019-11-10 23:08:56 t 1 1 162873 220 0.00 2019-11-10 22:55:45 2019-11-10 23:12:14 t 1 1 162876 647 0.00 2019-11-10 22:33:01 2019-11-10 23:15:56 t 1 1 162878 532 0.00 2019-11-10 23:17:23 2019-11-10 23:18:23 t 1 1 162880 589 0.00 2019-11-10 23:16:49 2019-11-10 23:19:15 t 1 1 162883 578 0.00 2019-11-10 21:44:05 2019-11-10 23:19:40 t 1 1 162884 532 0.00 2019-11-10 23:20:33 2019-11-10 23:20:34 t 1 1 162885 514 0.00 2019-11-10 22:49:27 2019-11-10 23:21:48 t 1 1 162886 609 0.00 2019-11-10 23:14:15 2019-11-10 23:22:04 t 1 1 162890 485 0.00 2019-11-10 23:20:16 2019-11-10 23:26:37 t 1 1 162896 623 0.00 2019-11-10 23:28:38 2019-11-10 23:28:56 t 1 1 162898 623 0.00 2019-11-10 23:27:50 2019-11-10 23:29:18 t 1 1 162906 623 0.00 2019-11-10 23:35:27 2019-11-10 23:35:29 t 1 1 162912 623 0.00 2019-11-10 23:38:25 2019-11-10 23:38:27 t 1 1 162918 532 0.00 2019-11-10 23:41:07 2019-11-10 23:41:43 t 1 1 162919 623 0.00 2019-11-10 23:42:08 2019-11-10 23:42:17 t 1 1 162920 623 0.00 2019-11-10 23:42:43 2019-11-10 23:43:00 t 1 1 162922 623 0.00 2019-11-10 23:43:05 2019-11-10 23:43:16 t 1 1 162924 623 0.00 2019-11-10 23:43:25 2019-11-10 23:43:34 t 1 1 162928 623 0.00 2019-11-10 23:46:05 2019-11-10 23:46:21 t 1 1 162932 623 0.00 2019-11-10 23:47:15 2019-11-10 23:47:25 t 1 1 162935 623 0.00 2019-11-10 23:48:40 2019-11-10 23:48:42 t 1 1 162938 623 0.00 2019-11-10 23:50:46 2019-11-10 23:50:49 t 1 1 162939 514 0.00 2019-11-10 23:21:48 2019-11-10 23:51:38 t 1 1 162942 532 0.00 2019-11-10 23:52:05 2019-11-10 23:52:06 t 1 1 162943 422 0.00 2019-11-10 23:52:11 2019-11-10 23:52:29 t 1 1 162950 623 0.00 2019-11-10 23:57:08 2019-11-10 23:57:37 t 1 1 162952 623 0.00 2019-11-10 23:58:38 2019-11-10 23:58:51 t 1 1 162953 623 0.00 2019-11-10 23:59:39 2019-11-10 23:59:40 t 1 1 162961 623 0.00 2019-11-11 00:03:45 2019-11-11 00:03:47 t 1 1 162963 512 0.00 2019-11-10 23:54:37 2019-11-11 00:06:09 t 1 1 162965 623 0.00 2019-11-11 00:05:24 2019-11-11 00:06:41 t 1 1 162966 623 0.00 2019-11-11 00:07:53 2019-11-11 00:07:56 t 1 1 162967 623 0.00 2019-11-11 00:08:48 2019-11-11 00:08:49 t 1 1 162968 623 0.00 2019-11-11 00:09:50 2019-11-11 00:09:51 t 1 1 162969 532 0.00 2019-11-11 00:11:00 2019-11-11 00:11:07 t 1 1 162971 623 0.00 2019-11-11 00:12:58 2019-11-11 00:13:00 t 1 1 162973 591 0.00 2019-11-10 22:53:33 2019-11-11 00:13:49 t 1 1 162976 587 0.00 2019-11-10 23:58:05 2019-11-11 00:14:56 t 1 1 162979 532 0.00 2019-11-11 00:14:23 2019-11-11 00:16:18 t 1 1 162981 623 0.00 2019-11-11 00:18:04 2019-11-11 00:18:07 t 1 1 162982 623 0.00 2019-11-11 00:18:57 2019-11-11 00:18:59 t 1 1 162986 422 0.00 2019-11-11 00:19:55 2019-11-11 00:22:42 t 1 1 162987 623 0.00 2019-11-11 00:23:10 2019-11-11 00:23:12 t 1 1 162990 623 0.00 2019-11-11 00:26:12 2019-11-11 00:27:02 t 1 1 162996 623 0.00 2019-11-11 00:29:06 2019-11-11 00:29:13 t 1 1 163003 578 0.00 2019-11-10 23:19:40 2019-11-11 00:33:35 t 1 1 163006 532 0.00 2019-11-11 00:36:19 2019-11-11 00:36:39 t 1 1 163009 623 0.00 2019-11-11 00:36:26 2019-11-11 00:38:18 t 1 1 163012 623 0.00 2019-11-11 00:40:28 2019-11-11 00:40:29 t 1 1 163015 551 0.00 2019-11-10 23:44:03 2019-11-11 00:41:08 t 1 1 163016 623 0.00 2019-11-11 00:41:36 2019-11-11 00:41:39 t 1 1 163017 512 0.00 2019-11-11 00:37:11 2019-11-11 00:42:34 t 1 1 163019 623 0.00 2019-11-11 00:43:29 2019-11-11 00:43:31 t 1 1 163024 623 0.00 2019-11-11 00:45:39 2019-11-11 00:45:40 t 1 1 163032 587 0.00 2019-11-11 00:15:08 2019-11-11 00:52:03 t 1 1 163033 623 0.00 2019-11-11 00:52:37 2019-11-11 00:52:39 t 1 1 163035 422 0.00 2019-11-11 00:53:45 2019-11-11 00:54:02 t 1 1 163039 532 0.00 2019-11-11 00:55:33 2019-11-11 00:55:48 t 1 1 163040 532 0.00 2019-11-11 00:55:58 2019-11-11 00:55:59 t 1 1 163041 623 0.00 2019-11-11 00:56:51 2019-11-11 00:56:53 t 1 1 163042 623 0.00 2019-11-11 00:57:36 2019-11-11 00:57:38 t 1 1 163046 623 0.00 2019-11-11 00:59:44 2019-11-11 00:59:47 t 1 1 163051 422 0.00 2019-11-11 00:56:26 2019-11-11 01:04:28 t 1 1 163053 623 0.00 2019-11-11 01:05:52 2019-11-11 01:05:53 t 1 1 163059 623 0.00 2019-11-11 01:07:03 2019-11-11 01:07:05 t 1 1 163061 623 0.00 2019-11-11 01:08:53 2019-11-11 01:08:55 t 1 1 163062 532 0.00 2019-11-11 01:08:46 2019-11-11 01:09:01 t 1 1 163068 623 0.00 2019-11-11 01:13:52 2019-11-11 01:13:57 t 1 1 163071 623 0.00 2019-11-11 01:17:01 2019-11-11 01:17:03 t 1 1 163076 532 0.00 2019-11-11 01:19:11 2019-11-11 01:19:13 t 1 1 163077 587 0.00 2019-11-11 01:06:14 2019-11-11 01:20:17 t 1 1 163079 623 0.00 2019-11-11 01:21:07 2019-11-11 01:21:07 t 1 1 163081 623 0.00 2019-11-11 01:21:14 2019-11-11 01:21:15 t 1 1 163082 570 0.00 2019-11-11 01:08:58 2019-11-11 01:21:32 t 1 1 163084 623 0.00 2019-11-11 01:23:07 2019-11-11 01:23:09 t 1 1 162811 532 0.00 2019-11-10 22:32:01 2019-11-10 22:32:05 t 1 1 162814 566 0.00 2019-11-10 22:24:53 2019-11-10 22:33:24 t 1 1 162817 587 0.00 2019-11-10 22:28:41 2019-11-10 22:35:09 t 1 1 162821 532 0.00 2019-11-10 22:37:05 2019-11-10 22:37:26 t 1 1 162825 566 0.00 2019-11-10 22:33:24 2019-11-10 22:39:58 t 1 1 162827 635 0.00 2019-11-10 22:16:17 2019-11-10 22:40:21 t 1 1 162830 532 0.00 2019-11-10 22:42:43 2019-11-10 22:42:57 t 1 1 162831 532 0.00 2019-11-10 22:44:46 2019-11-10 22:45:02 t 1 1 162833 483 0.00 2019-11-10 22:09:06 2019-11-10 22:45:40 t 1 1 162834 422 0.00 2019-11-10 22:38:50 2019-11-10 22:46:12 t 1 1 162839 514 0.00 2019-11-10 22:31:09 2019-11-10 22:49:27 t 1 1 162843 566 0.00 2019-11-10 22:45:15 2019-11-10 22:51:53 t 1 1 162846 532 0.00 2019-11-10 22:52:36 2019-11-10 22:52:38 t 1 1 162851 597 0.00 2019-11-10 22:53:44 2019-11-10 22:56:28 t 1 1 162855 562 0.00 2019-11-10 22:57:28 2019-11-10 22:57:58 t 1 1 162858 422 0.00 2019-11-10 22:58:56 2019-11-10 22:59:40 t 1 1 162864 503 0.00 2019-11-10 23:02:43 2019-11-10 23:03:04 t 1 1 162865 532 0.00 2019-11-10 23:07:18 2019-11-10 23:07:19 t 1 1 162866 587 0.00 2019-11-10 22:52:17 2019-11-10 23:08:10 t 1 1 162868 551 0.00 2019-11-10 22:39:43 2019-11-10 23:08:15 t 1 1 162869 562 0.00 2019-11-10 23:08:16 2019-11-10 23:08:42 t 1 1 162871 220 0.00 2019-11-10 22:52:40 2019-11-10 23:09:03 t 1 2 162874 532 0.00 2019-11-10 23:12:20 2019-11-10 23:12:21 t 1 1 162875 609 0.00 2019-11-10 23:04:02 2019-11-10 23:14:15 t 1 1 162877 589 0.00 2019-11-10 23:11:00 2019-11-10 23:16:49 t 1 1 162879 532 0.00 2019-11-10 23:18:46 2019-11-10 23:18:47 t 1 1 162882 562 0.00 2019-11-10 23:19:06 2019-11-10 23:19:38 t 1 1 162887 532 0.00 2019-11-10 23:22:28 2019-11-10 23:22:29 t 1 1 162888 422 0.00 2019-11-10 23:18:18 2019-11-10 23:23:14 t 1 1 162889 422 0.00 2019-11-10 23:26:10 2019-11-10 23:26:26 t 1 1 162893 587 0.00 2019-11-10 23:08:10 2019-11-10 23:27:26 t 1 1 162897 532 0.00 2019-11-10 23:28:24 2019-11-10 23:28:59 t 1 1 162899 422 0.00 2019-11-10 23:29:48 2019-11-10 23:30:14 t 1 1 162901 451 0.00 2019-11-10 23:20:41 2019-11-10 23:30:42 t 1 1 162902 551 0.00 2019-11-10 23:08:15 2019-11-10 23:31:33 t 1 1 162904 623 0.00 2019-11-10 23:30:16 2019-11-10 23:35:12 t 1 1 162909 623 0.00 2019-11-10 23:37:18 2019-11-10 23:37:20 t 1 1 162910 422 0.00 2019-11-10 23:37:41 2019-11-10 23:37:59 t 1 1 162913 587 0.00 2019-11-10 23:36:12 2019-11-10 23:39:09 t 1 1 162914 623 0.00 2019-11-10 23:39:32 2019-11-10 23:39:33 t 1 1 162916 623 0.00 2019-11-10 23:39:25 2019-11-10 23:41:18 t 1 1 162921 422 0.00 2019-11-10 23:40:35 2019-11-10 23:43:16 t 1 1 162925 551 0.00 2019-11-10 23:31:33 2019-11-10 23:44:03 t 1 1 162926 623 0.00 2019-11-10 23:44:07 2019-11-10 23:44:36 t 1 1 162929 623 0.00 2019-11-10 23:46:29 2019-11-10 23:46:40 t 1 1 162930 623 0.00 2019-11-10 23:46:52 2019-11-10 23:46:54 t 1 1 162936 451 0.00 2019-11-10 23:41:32 2019-11-10 23:49:06 t 1 1 162941 545 0.00 2019-11-10 23:17:30 2019-11-10 23:51:52 t 1 1 162946 623 0.00 2019-11-10 23:52:41 2019-11-10 23:54:18 t 1 1 162949 623 0.00 2019-11-10 23:55:42 2019-11-10 23:57:18 t 1 1 162951 623 0.00 2019-11-10 23:57:48 2019-11-10 23:57:51 t 1 1 162955 451 0.00 2019-11-10 23:49:06 2019-11-11 00:01:10 t 1 1 162957 545 0.00 2019-11-10 23:51:52 2019-11-11 00:01:50 t 1 1 162958 623 0.00 2019-11-11 00:01:56 2019-11-11 00:01:59 t 1 1 162964 623 0.00 2019-11-11 00:03:55 2019-11-11 00:06:18 t 1 1 162974 623 0.00 2019-11-11 00:13:51 2019-11-11 00:13:53 t 1 1 162977 532 0.00 2019-11-11 00:15:17 2019-11-11 00:15:20 t 1 1 162978 623 0.00 2019-11-11 00:16:02 2019-11-11 00:16:08 t 1 1 162980 623 0.00 2019-11-11 00:16:28 2019-11-11 00:16:30 t 1 1 162983 623 0.00 2019-11-11 00:20:01 2019-11-11 00:20:03 t 1 1 162985 623 0.00 2019-11-11 00:22:09 2019-11-11 00:22:15 t 1 1 162989 562 0.00 2019-11-11 00:23:55 2019-11-11 00:24:08 t 1 1 162991 623 0.00 2019-11-11 00:27:15 2019-11-11 00:27:16 t 1 1 162993 538 0.00 2019-11-10 22:23:07 2019-11-11 00:27:33 t 1 1 162995 422 0.00 2019-11-11 00:27:37 2019-11-11 00:28:25 t 1 1 162998 623 0.00 2019-11-11 00:30:16 2019-11-11 00:30:18 t 1 1 162999 532 0.00 2019-11-11 00:30:29 2019-11-11 00:30:31 t 1 1 163001 623 0.00 2019-11-11 00:32:18 2019-11-11 00:32:20 t 1 1 163002 562 0.00 2019-11-11 00:32:40 2019-11-11 00:33:10 t 1 1 163004 623 0.00 2019-11-11 00:35:20 2019-11-11 00:35:32 t 1 1 163005 623 0.00 2019-11-11 00:36:33 2019-11-11 00:36:35 t 1 1 163007 512 0.00 2019-11-11 00:20:36 2019-11-11 00:37:11 t 1 1 163010 623 0.00 2019-11-11 00:38:23 2019-11-11 00:38:25 t 1 1 163011 623 0.00 2019-11-11 00:39:14 2019-11-11 00:39:18 t 1 1 163013 623 0.00 2019-11-11 00:40:34 2019-11-11 00:40:37 t 1 1 163021 562 0.00 2019-11-11 00:43:25 2019-11-11 00:43:51 t 1 1 163022 623 0.00 2019-11-11 00:44:22 2019-11-11 00:44:23 t 1 1 163025 532 0.00 2019-11-11 00:45:47 2019-11-11 00:45:49 t 1 1 163026 623 0.00 2019-11-11 00:46:25 2019-11-11 00:46:27 t 1 1 163030 623 0.00 2019-11-11 00:50:46 2019-11-11 00:50:50 t 1 1 163034 574 0.00 2019-11-11 00:24:44 2019-11-11 00:53:20 t 1 1 163036 623 0.00 2019-11-11 00:53:32 2019-11-11 00:54:28 t 1 1 163037 562 0.00 2019-11-11 00:54:24 2019-11-11 00:55:26 t 1 1 163038 623 0.00 2019-11-11 00:55:41 2019-11-11 00:55:43 t 1 1 163043 375 0.00 2019-11-10 21:53:55 2019-11-11 00:58:14 t 1 1 163045 623 0.00 2019-11-11 00:58:55 2019-11-11 00:59:44 t 1 1 163047 532 0.00 2019-11-11 01:00:59 2019-11-11 01:01:00 t 1 1 163049 562 0.00 2019-11-11 01:02:58 2019-11-11 01:03:10 t 1 1 163052 623 0.00 2019-11-11 01:04:57 2019-11-11 01:04:59 t 1 1 163056 587 0.00 2019-11-11 00:52:03 2019-11-11 01:06:14 t 1 1 163064 422 0.00 2019-11-11 01:09:18 2019-11-11 01:10:50 t 1 1 163065 623 0.00 2019-11-11 01:10:55 2019-11-11 01:10:57 t 1 1 163066 623 0.00 2019-11-11 01:11:50 2019-11-11 01:12:52 t 1 1 163067 623 0.00 2019-11-11 01:12:57 2019-11-11 01:12:59 t 1 1 163070 623 0.00 2019-11-11 01:14:53 2019-11-11 01:15:06 t 1 1 163072 422 0.00 2019-11-11 01:17:06 2019-11-11 01:17:13 t 1 1 163073 532 0.00 2019-11-11 01:18:10 2019-11-11 01:18:16 t 1 1 163078 623 0.00 2019-11-11 01:20:28 2019-11-11 01:20:31 t 1 1 163088 623 0.00 2019-11-11 01:25:21 2019-11-11 01:25:27 t 1 1 163091 623 0.00 2019-11-11 01:27:05 2019-11-11 01:28:06 t 1 1 163093 623 0.00 2019-11-11 01:29:07 2019-11-11 01:29:09 t 1 1 163097 570 0.00 2019-11-11 01:21:32 2019-11-11 01:30:27 t 1 1 163098 422 0.00 2019-11-11 01:29:03 2019-11-11 01:30:55 t 1 1 163099 532 0.00 2019-11-11 01:29:37 2019-11-11 01:31:18 t 1 1 163102 587 0.00 2019-11-11 01:30:32 2019-11-11 01:32:19 t 1 1 163112 538 0.00 2019-11-11 00:27:36 2019-11-11 01:38:47 t 1 1 163113 532 0.00 2019-11-11 01:39:11 2019-11-11 01:39:23 t 1 1 163087 623 0.00 2019-11-11 01:25:05 2019-11-11 01:25:09 t 1 1 163089 623 0.00 2019-11-11 01:26:10 2019-11-11 01:26:12 t 1 1 163090 422 0.00 2019-11-11 01:26:01 2019-11-11 01:27:20 t 1 1 163095 623 0.00 2019-11-11 01:30:08 2019-11-11 01:30:14 t 1 1 163100 562 0.00 2019-11-11 01:31:58 2019-11-11 01:32:18 t 1 1 163103 422 0.00 2019-11-11 01:31:00 2019-11-11 01:32:37 t 1 1 163106 532 0.00 2019-11-11 01:34:41 2019-11-11 01:34:44 t 1 1 163110 570 0.00 2019-11-11 01:30:27 2019-11-11 01:38:03 t 1 1 163117 422 0.00 2019-11-11 01:40:21 2019-11-11 01:41:08 t 1 1 163119 623 0.00 2019-11-11 01:42:27 2019-11-11 01:42:29 t 1 1 163121 562 0.00 2019-11-11 01:42:42 2019-11-11 01:43:04 t 1 1 163125 623 0.00 2019-11-11 01:45:23 2019-11-11 01:45:25 t 1 1 163127 532 0.00 2019-11-11 01:46:56 2019-11-11 01:46:58 t 1 1 163128 623 0.00 2019-11-11 01:48:26 2019-11-11 01:48:29 t 1 1 163130 623 0.00 2019-11-11 01:49:41 2019-11-11 01:49:43 t 1 1 163136 623 0.00 2019-11-11 01:51:36 2019-11-11 01:51:37 t 1 1 163141 532 0.00 2019-11-11 01:52:17 2019-11-11 01:52:50 t 1 1 163143 562 0.00 2019-11-11 01:53:24 2019-11-11 01:53:50 t 1 1 163148 532 0.00 2019-11-11 01:56:45 2019-11-11 01:57:18 t 1 1 163160 532 0.00 2019-11-11 02:03:51 2019-11-11 02:04:10 t 1 1 163163 532 0.00 2019-11-11 02:04:52 2019-11-11 02:06:18 t 1 1 163164 532 0.00 2019-11-11 02:06:53 2019-11-11 02:07:00 t 1 1 163168 623 0.00 2019-11-11 02:02:49 2019-11-11 02:08:29 t 1 1 163172 514 0.00 2019-11-11 02:03:22 2019-11-11 02:09:19 t 1 1 163173 532 0.00 2019-11-11 02:09:20 2019-11-11 02:09:20 f 1 1 163178 532 0.00 2019-11-11 02:08:57 2019-11-11 02:11:18 t 1 1 163182 562 0.00 2019-11-11 02:14:55 2019-11-11 02:15:24 t 1 1 163185 623 0.00 2019-11-11 02:18:15 2019-11-11 02:18:32 t 1 1 163187 623 0.00 2019-11-11 02:19:47 2019-11-11 02:19:57 t 1 1 163190 422 0.00 2019-11-11 02:21:04 2019-11-11 02:21:20 t 1 1 163192 514 0.00 2019-11-11 02:09:19 2019-11-11 02:21:55 t 1 1 163194 623 0.00 2019-11-11 02:24:47 2019-11-11 02:24:50 t 1 1 163197 623 0.00 2019-11-11 02:26:49 2019-11-11 02:26:50 t 1 1 163203 623 0.00 2019-11-11 02:31:54 2019-11-11 02:31:56 t 1 1 163205 623 0.00 2019-11-11 02:33:30 2019-11-11 02:33:53 t 1 1 163215 623 0.00 2019-11-11 02:44:29 2019-11-11 02:44:31 t 1 1 163217 623 0.00 2019-11-11 02:45:24 2019-11-11 02:45:25 t 1 1 163219 562 0.00 2019-11-11 02:47:23 2019-11-11 02:47:45 t 1 1 163221 623 0.00 2019-11-11 02:49:26 2019-11-11 02:49:27 t 1 1 163226 623 0.00 2019-11-11 02:53:20 2019-11-11 02:53:21 t 1 1 163231 623 0.00 2019-11-11 02:57:26 2019-11-11 02:57:28 t 1 1 163233 623 0.00 2019-11-11 02:58:33 2019-11-11 02:58:34 t 1 1 163234 623 0.00 2019-11-11 02:59:34 2019-11-11 02:59:37 t 1 1 163235 623 0.00 2019-11-11 02:58:26 2019-11-11 03:00:18 t 1 1 163236 623 0.00 2019-11-11 03:01:27 2019-11-11 03:01:28 t 1 1 163237 623 0.00 2019-11-11 03:01:58 2019-11-11 03:01:59 t 1 1 163241 422 0.00 2019-11-11 03:03:28 2019-11-11 03:03:45 t 1 1 163248 623 0.00 2019-11-11 03:11:36 2019-11-11 03:11:37 t 1 1 163249 623 0.00 2019-11-11 03:12:05 2019-11-11 03:12:06 t 1 1 163255 623 0.00 2019-11-11 03:15:22 2019-11-11 03:15:34 t 1 1 163263 422 0.00 2019-11-11 03:14:49 2019-11-11 03:17:18 t 1 1 163270 422 0.00 2019-11-11 03:18:57 2019-11-11 03:18:57 f 1 1 163271 422 0.00 2019-11-11 03:19:13 2019-11-11 03:19:13 f 1 1 163274 422 0.00 2019-11-11 03:20:01 2019-11-11 03:20:01 f 1 1 163276 422 0.00 2019-11-11 03:20:18 2019-11-11 03:20:18 f 1 1 163285 623 0.00 2019-11-11 03:22:16 2019-11-11 03:22:16 t 1 1 163287 422 0.00 2019-11-11 03:20:34 2019-11-11 03:22:18 t 1 1 163290 422 0.00 2019-11-11 03:22:50 2019-11-11 03:22:50 f 1 1 163291 623 0.00 2019-11-11 03:23:05 2019-11-11 03:23:06 t 1 1 163293 422 0.00 2019-11-11 03:21:25 2019-11-11 03:23:18 t 1 1 163294 422 0.00 2019-11-11 03:22:33 2019-11-11 03:24:18 t 1 1 163295 623 0.00 2019-11-11 03:24:50 2019-11-11 03:24:51 t 1 1 163296 422 0.00 2019-11-11 03:24:48 2019-11-11 03:25:05 t 1 1 163298 623 0.00 2019-11-11 03:25:44 2019-11-11 03:25:47 t 1 1 163304 562 0.00 2019-11-11 03:30:35 2019-11-11 03:30:44 t 1 1 163306 623 0.00 2019-11-11 03:32:07 2019-11-11 03:32:10 t 1 1 163308 623 0.00 2019-11-11 03:33:58 2019-11-11 03:34:01 t 1 1 163314 623 0.00 2019-11-11 03:40:20 2019-11-11 03:41:03 t 1 1 163315 623 0.00 2019-11-11 03:41:14 2019-11-11 03:41:21 t 1 1 163317 562 0.00 2019-11-11 03:41:13 2019-11-11 03:41:33 t 1 1 163318 623 0.00 2019-11-11 03:42:05 2019-11-11 03:42:07 t 1 1 163325 623 0.00 2019-11-11 03:50:06 2019-11-11 03:50:08 t 1 1 163327 623 0.00 2019-11-11 03:52:14 2019-11-11 03:52:16 t 1 1 163329 623 0.00 2019-11-11 03:54:16 2019-11-11 03:54:19 t 1 1 163332 623 0.00 2019-11-11 03:56:27 2019-11-11 03:56:29 t 1 1 163334 623 0.00 2019-11-11 03:58:22 2019-11-11 03:58:25 t 1 1 163335 623 0.00 2019-11-11 03:59:06 2019-11-11 03:59:28 t 1 1 163337 623 0.00 2019-11-11 04:01:18 2019-11-11 04:01:21 t 1 1 163338 623 0.00 2019-11-11 04:02:27 2019-11-11 04:02:28 t 1 1 163339 623 0.00 2019-11-11 04:02:33 2019-11-11 04:02:35 t 1 1 163340 562 0.00 2019-11-11 04:02:33 2019-11-11 04:03:04 t 1 1 163342 623 0.00 2019-11-11 04:05:29 2019-11-11 04:05:32 t 1 1 163348 623 0.00 2019-11-11 04:10:40 2019-11-11 04:10:41 t 1 1 163351 562 0.00 2019-11-11 04:13:24 2019-11-11 04:13:45 t 1 1 163352 623 0.00 2019-11-11 04:14:38 2019-11-11 04:14:39 t 1 1 163354 623 0.00 2019-11-11 04:15:56 2019-11-11 04:15:57 t 1 1 163357 623 0.00 2019-11-11 04:18:53 2019-11-11 04:18:54 t 1 1 163358 623 0.00 2019-11-11 04:19:37 2019-11-11 04:19:56 t 1 1 163360 623 0.00 2019-11-11 04:22:55 2019-11-11 04:22:58 t 1 1 163361 562 0.00 2019-11-11 04:24:06 2019-11-11 04:24:30 t 1 1 163366 623 0.00 2019-11-11 04:26:52 2019-11-11 04:28:18 t 1 1 163369 623 0.00 2019-11-11 04:30:29 2019-11-11 04:30:45 t 1 1 163370 623 0.00 2019-11-11 04:30:57 2019-11-11 04:30:57 t 1 1 163371 623 0.00 2019-11-11 04:32:13 2019-11-11 04:32:24 t 1 1 163373 562 0.00 2019-11-11 04:32:53 2019-11-11 04:33:12 t 1 1 163378 623 0.00 2019-11-11 04:37:42 2019-11-11 04:38:13 t 1 1 163381 422 0.00 2019-11-11 03:29:46 2019-11-11 04:39:22 t 1 1 163383 623 0.00 2019-11-11 04:40:39 2019-11-11 04:40:55 t 1 1 163386 562 0.00 2019-11-11 04:43:45 2019-11-11 04:43:57 t 1 1 163387 623 0.00 2019-11-11 04:44:06 2019-11-11 04:44:56 t 1 1 163390 623 0.00 2019-11-11 04:45:14 2019-11-11 04:51:52 t 1 1 163391 623 0.00 2019-11-11 04:52:18 2019-11-11 04:52:19 t 1 1 163393 562 0.00 2019-11-11 04:54:29 2019-11-11 04:54:40 t 1 1 163394 623 0.00 2019-11-11 04:54:53 2019-11-11 04:57:22 t 1 1 163400 514 0.00 2019-11-11 02:21:56 2019-11-11 05:01:37 t 1 1 163403 623 0.00 2019-11-11 05:03:05 2019-11-11 05:03:09 t 1 1 163405 623 0.00 2019-11-11 05:05:16 2019-11-11 05:05:30 t 1 1 163111 623 0.00 2019-11-11 01:38:30 2019-11-11 01:38:32 t 1 1 163116 623 0.00 2019-11-11 01:40:34 2019-11-11 01:40:37 t 1 1 163120 570 0.00 2019-11-11 01:38:03 2019-11-11 01:42:34 t 1 1 163122 422 0.00 2019-11-11 01:42:46 2019-11-11 01:43:05 t 1 1 163123 623 0.00 2019-11-11 01:44:28 2019-11-11 01:44:30 t 1 1 163124 570 0.00 2019-11-11 01:42:34 2019-11-11 01:45:18 t 1 1 163132 623 0.00 2019-11-11 01:50:28 2019-11-11 01:50:29 t 1 1 163134 422 0.00 2019-11-11 01:49:06 2019-11-11 01:50:58 t 1 1 163135 623 0.00 2019-11-11 01:49:35 2019-11-11 01:51:18 t 1 1 163138 532 0.00 2019-11-11 01:51:00 2019-11-11 01:52:04 t 1 1 163142 623 0.00 2019-11-11 01:53:36 2019-11-11 01:53:39 t 1 1 163145 422 0.00 2019-11-11 01:54:22 2019-11-11 01:54:39 t 1 1 163149 623 0.00 2019-11-11 01:56:40 2019-11-11 01:57:30 t 1 1 163150 532 0.00 2019-11-11 01:57:48 2019-11-11 01:57:49 t 1 1 163151 532 0.00 2019-11-11 01:58:54 2019-11-11 01:59:55 t 1 1 163152 422 0.00 2019-11-11 01:59:46 2019-11-11 02:00:24 t 1 1 163153 532 0.00 2019-11-11 02:00:48 2019-11-11 02:01:08 t 1 1 163154 623 0.00 2019-11-11 01:58:26 2019-11-11 02:02:19 t 1 1 163156 623 0.00 2019-11-11 02:02:27 2019-11-11 02:02:28 t 1 1 163158 532 0.00 2019-11-11 02:02:50 2019-11-11 02:03:24 t 1 1 163166 532 0.00 2019-11-11 02:07:38 2019-11-11 02:07:51 t 1 1 163167 532 0.00 2019-11-11 02:08:14 2019-11-11 02:08:21 t 1 1 163170 623 0.00 2019-11-11 02:08:50 2019-11-11 02:08:55 t 1 1 163177 623 0.00 2019-11-11 02:10:51 2019-11-11 02:10:54 t 1 1 163180 623 0.00 2019-11-11 02:12:35 2019-11-11 02:12:38 t 1 1 163181 623 0.00 2019-11-11 02:13:30 2019-11-11 02:13:35 t 1 1 163186 623 0.00 2019-11-11 02:18:58 2019-11-11 02:19:00 t 1 1 163188 623 0.00 2019-11-11 02:20:09 2019-11-11 02:20:11 t 1 1 163195 623 0.00 2019-11-11 02:24:55 2019-11-11 02:24:58 t 1 1 163196 562 0.00 2019-11-11 02:25:54 2019-11-11 02:26:05 t 1 1 163198 623 0.00 2019-11-11 02:27:59 2019-11-11 02:28:00 t 1 1 163199 623 0.00 2019-11-11 02:29:01 2019-11-11 02:29:01 t 1 1 163201 623 0.00 2019-11-11 02:30:10 2019-11-11 02:30:13 t 1 1 163204 623 0.00 2019-11-11 02:33:02 2019-11-11 02:33:08 t 1 1 163207 623 0.00 2019-11-11 02:35:40 2019-11-11 02:35:50 t 1 1 163209 623 0.00 2019-11-11 02:37:08 2019-11-11 02:37:55 t 1 1 163210 623 0.00 2019-11-11 02:40:02 2019-11-11 02:40:04 t 1 1 163212 422 0.00 2019-11-11 02:42:18 2019-11-11 02:42:32 t 1 1 163213 623 0.00 2019-11-11 02:42:57 2019-11-11 02:43:10 t 1 1 163214 623 0.00 2019-11-11 02:44:17 2019-11-11 02:44:24 t 1 1 163216 623 0.00 2019-11-11 02:45:03 2019-11-11 02:45:06 t 1 1 163218 623 0.00 2019-11-11 02:47:11 2019-11-11 02:47:13 t 1 1 163220 623 0.00 2019-11-11 02:49:13 2019-11-11 02:49:21 t 1 1 163222 623 0.00 2019-11-11 02:50:08 2019-11-11 02:50:10 t 1 1 163223 623 0.00 2019-11-11 02:51:24 2019-11-11 02:51:27 t 1 1 163224 623 0.00 2019-11-11 02:51:44 2019-11-11 02:52:25 t 1 1 163225 422 0.00 2019-11-11 02:52:52 2019-11-11 02:53:09 t 1 1 163228 623 0.00 2019-11-11 02:55:20 2019-11-11 02:55:21 t 1 1 163229 623 0.00 2019-11-11 02:56:52 2019-11-11 02:56:53 t 1 1 163230 623 0.00 2019-11-11 02:57:01 2019-11-11 02:57:14 t 1 1 163232 562 0.00 2019-11-11 02:58:16 2019-11-11 02:58:29 t 1 1 163239 623 0.00 2019-11-11 03:02:48 2019-11-11 03:02:49 t 1 1 163247 623 0.00 2019-11-11 03:09:41 2019-11-11 03:09:42 t 1 1 163251 623 0.00 2019-11-11 03:12:45 2019-11-11 03:12:47 t 1 1 163253 623 0.00 2019-11-11 03:14:39 2019-11-11 03:14:40 t 1 1 163254 422 0.00 2019-11-11 03:15:22 2019-11-11 03:15:22 f 1 1 163257 422 0.00 2019-11-11 03:15:54 2019-11-11 03:15:54 f 1 1 163258 422 0.00 2019-11-11 03:16:10 2019-11-11 03:16:10 f 1 1 163262 422 0.00 2019-11-11 03:17:17 2019-11-11 03:17:17 f 1 1 163265 422 0.00 2019-11-11 03:17:51 2019-11-11 03:17:51 f 1 1 163266 422 0.00 2019-11-11 03:18:07 2019-11-11 03:18:07 f 1 1 163269 623 0.00 2019-11-11 03:18:52 2019-11-11 03:18:55 t 1 1 163272 422 0.00 2019-11-11 03:17:34 2019-11-11 03:19:18 t 1 1 163275 562 0.00 2019-11-11 03:19:40 2019-11-11 03:20:05 t 1 1 163277 422 0.00 2019-11-11 03:18:24 2019-11-11 03:20:18 t 1 1 163279 422 0.00 2019-11-11 03:20:51 2019-11-11 03:20:51 f 1 1 163280 422 0.00 2019-11-11 03:21:08 2019-11-11 03:21:08 f 1 1 163283 422 0.00 2019-11-11 03:21:43 2019-11-11 03:21:43 f 1 1 163284 422 0.00 2019-11-11 03:22:01 2019-11-11 03:22:01 f 1 1 163288 623 0.00 2019-11-11 03:20:41 2019-11-11 03:22:18 t 1 1 163289 623 0.00 2019-11-11 03:22:41 2019-11-11 03:22:47 t 1 1 163297 422 0.00 2019-11-11 03:23:24 2019-11-11 03:25:18 t 1 1 163301 623 0.00 2019-11-11 03:27:22 2019-11-11 03:27:22 t 1 1 163302 623 0.00 2019-11-11 03:28:02 2019-11-11 03:28:02 t 1 1 163305 623 0.00 2019-11-11 03:31:56 2019-11-11 03:32:02 t 1 1 163309 623 0.00 2019-11-11 03:34:52 2019-11-11 03:35:04 t 1 1 163311 623 0.00 2019-11-11 03:37:28 2019-11-11 03:37:31 t 1 1 163322 623 0.00 2019-11-11 03:46:09 2019-11-11 03:46:12 t 1 1 163331 623 0.00 2019-11-11 03:55:23 2019-11-11 03:56:07 t 1 1 163333 623 0.00 2019-11-11 03:57:55 2019-11-11 03:58:10 t 1 1 163336 623 0.00 2019-11-11 04:00:23 2019-11-11 04:00:26 t 1 1 163341 623 0.00 2019-11-11 04:02:58 2019-11-11 04:03:22 t 1 1 163343 623 0.00 2019-11-11 04:07:31 2019-11-11 04:07:32 t 1 1 163344 623 0.00 2019-11-11 04:08:04 2019-11-11 04:08:05 t 1 1 163346 623 0.00 2019-11-11 04:10:28 2019-11-11 04:10:41 t 1 1 163349 623 0.00 2019-11-11 04:12:36 2019-11-11 04:12:37 t 1 1 163350 623 0.00 2019-11-11 04:13:08 2019-11-11 04:13:10 t 1 1 163353 623 0.00 2019-11-11 04:15:49 2019-11-11 04:15:50 t 1 1 163355 623 0.00 2019-11-11 04:17:41 2019-11-11 04:17:44 t 1 1 163356 623 0.00 2019-11-11 04:18:12 2019-11-11 04:18:15 t 1 1 163362 623 0.00 2019-11-11 04:24:48 2019-11-11 04:24:58 t 1 1 163363 623 0.00 2019-11-11 04:25:43 2019-11-11 04:25:56 t 1 1 163365 623 0.00 2019-11-11 04:26:58 2019-11-11 04:27:00 t 1 1 163368 623 0.00 2019-11-11 04:30:01 2019-11-11 04:30:22 t 1 1 163374 623 0.00 2019-11-11 04:33:04 2019-11-11 04:33:17 t 1 1 163375 623 0.00 2019-11-11 04:34:06 2019-11-11 04:34:09 t 1 1 163377 623 0.00 2019-11-11 04:35:27 2019-11-11 04:35:30 t 1 1 163384 623 0.00 2019-11-11 04:41:58 2019-11-11 04:42:01 t 1 1 163385 623 0.00 2019-11-11 04:42:59 2019-11-11 04:43:16 t 1 1 163388 339 0.00 2019-11-11 04:47:14 2019-11-11 04:47:14 f 1 2 163389 422 0.00 2019-11-11 04:49:42 2019-11-11 04:49:59 t 1 1 163392 623 0.00 2019-11-11 04:53:58 2019-11-11 04:53:59 t 1 1 163395 623 0.00 2019-11-11 04:58:00 2019-11-11 04:58:56 t 1 1 163396 623 0.00 2019-11-11 04:59:13 2019-11-11 04:59:14 t 1 1 163398 422 0.00 2019-11-11 05:00:20 2019-11-11 05:00:35 t 1 1 163399 623 0.00 2019-11-11 05:01:10 2019-11-11 05:01:15 t 1 1 163402 623 0.00 2019-11-11 05:02:25 2019-11-11 05:02:28 t 1 1 163114 623 0.00 2019-11-11 01:38:24 2019-11-11 01:40:18 t 1 1 163115 623 0.00 2019-11-11 01:40:20 2019-11-11 01:40:23 t 1 1 163118 532 0.00 2019-11-11 01:42:07 2019-11-11 01:42:27 t 1 1 163126 587 0.00 2019-11-11 01:32:48 2019-11-11 01:46:32 t 1 1 163129 587 0.00 2019-11-11 01:46:32 2019-11-11 01:49:01 t 1 1 163131 532 0.00 2019-11-11 01:49:51 2019-11-11 01:49:53 t 1 1 163133 532 0.00 2019-11-11 01:50:26 2019-11-11 01:50:35 t 1 1 163137 623 0.00 2019-11-11 01:51:43 2019-11-11 01:51:44 t 1 1 163139 422 0.00 2019-11-11 01:51:07 2019-11-11 01:52:04 t 1 1 163140 422 0.00 2019-11-11 01:52:12 2019-11-11 01:52:18 t 1 1 163144 532 0.00 2019-11-11 01:53:42 2019-11-11 01:54:17 t 1 1 163146 532 0.00 2019-11-11 01:54:43 2019-11-11 01:55:19 t 1 1 163147 532 0.00 2019-11-11 01:55:45 2019-11-11 01:56:18 t 1 1 163155 532 0.00 2019-11-11 02:01:49 2019-11-11 02:02:23 t 1 1 163157 514 0.00 2019-11-11 01:42:08 2019-11-11 02:03:22 t 1 1 163159 422 0.00 2019-11-11 02:03:51 2019-11-11 02:04:00 t 1 1 163161 562 0.00 2019-11-11 02:04:12 2019-11-11 02:04:35 t 1 1 163162 532 0.00 2019-11-11 02:05:04 2019-11-11 02:06:15 t 1 1 163165 532 0.00 2019-11-11 02:07:34 2019-11-11 02:07:34 t 1 1 163169 623 0.00 2019-11-11 02:08:36 2019-11-11 02:08:37 t 1 1 163171 532 0.00 2019-11-11 02:09:04 2019-11-11 02:09:04 f 1 1 163174 623 0.00 2019-11-11 02:09:41 2019-11-11 02:09:43 t 1 1 163175 532 0.00 2019-11-11 02:08:29 2019-11-11 02:10:18 t 1 1 163176 623 0.00 2019-11-11 02:10:38 2019-11-11 02:10:40 t 1 1 163179 422 0.00 2019-11-11 02:10:27 2019-11-11 02:12:25 t 1 1 163183 623 0.00 2019-11-11 02:15:38 2019-11-11 02:15:43 t 1 1 163184 623 0.00 2019-11-11 02:16:49 2019-11-11 02:16:51 t 1 1 163189 623 0.00 2019-11-11 02:18:40 2019-11-11 02:20:18 t 1 1 163191 623 0.00 2019-11-11 02:21:44 2019-11-11 02:21:45 t 1 1 163193 623 0.00 2019-11-11 02:22:39 2019-11-11 02:22:42 t 1 1 163200 623 0.00 2019-11-11 02:29:55 2019-11-11 02:29:59 t 1 1 163202 422 0.00 2019-11-11 02:31:42 2019-11-11 02:31:56 t 1 1 163206 623 0.00 2019-11-11 02:35:24 2019-11-11 02:35:26 t 1 1 163208 562 0.00 2019-11-11 02:36:33 2019-11-11 02:36:58 t 1 1 163211 623 0.00 2019-11-11 02:42:04 2019-11-11 02:42:07 t 1 1 163227 623 0.00 2019-11-11 02:53:33 2019-11-11 02:53:34 t 1 1 163238 623 0.00 2019-11-11 03:02:38 2019-11-11 03:02:43 t 1 1 163240 623 0.00 2019-11-11 03:03:39 2019-11-11 03:03:39 t 1 1 163242 623 0.00 2019-11-11 03:05:31 2019-11-11 03:05:32 t 1 1 163243 623 0.00 2019-11-11 03:06:07 2019-11-11 03:06:28 t 1 1 163244 623 0.00 2019-11-11 03:07:02 2019-11-11 03:07:03 t 1 1 163245 623 0.00 2019-11-11 03:08:33 2019-11-11 03:08:36 t 1 1 163246 562 0.00 2019-11-11 03:08:50 2019-11-11 03:09:15 t 1 1 163250 623 0.00 2019-11-11 03:12:39 2019-11-11 03:12:39 t 1 1 163252 422 0.00 2019-11-11 03:14:07 2019-11-11 03:14:35 t 1 1 163256 422 0.00 2019-11-11 03:15:38 2019-11-11 03:15:38 f 1 1 163259 422 0.00 2019-11-11 03:15:05 2019-11-11 03:16:18 t 1 1 163260 422 0.00 2019-11-11 03:16:44 2019-11-11 03:16:44 f 1 1 163261 422 0.00 2019-11-11 03:17:00 2019-11-11 03:17:00 f 1 1 163264 623 0.00 2019-11-11 03:17:18 2019-11-11 03:17:40 t 1 1 163267 422 0.00 2019-11-11 03:16:27 2019-11-11 03:18:18 t 1 1 163268 422 0.00 2019-11-11 03:18:40 2019-11-11 03:18:40 f 1 1 163273 422 0.00 2019-11-11 03:19:45 2019-11-11 03:19:45 f 1 1 163278 623 0.00 2019-11-11 03:20:48 2019-11-11 03:20:49 t 1 1 163281 422 0.00 2019-11-11 03:19:29 2019-11-11 03:21:18 t 1 1 163282 623 0.00 2019-11-11 03:21:41 2019-11-11 03:21:42 t 1 1 163286 422 0.00 2019-11-11 03:22:17 2019-11-11 03:22:17 f 1 1 163292 422 0.00 2019-11-11 03:23:07 2019-11-11 03:23:07 f 1 1 163299 551 0.00 2019-11-11 00:41:08 2019-11-11 03:26:29 t 1 1 163300 623 0.00 2019-11-11 03:27:00 2019-11-11 03:27:01 t 1 1 163303 623 0.00 2019-11-11 03:29:54 2019-11-11 03:29:56 t 1 1 163307 623 0.00 2019-11-11 03:32:24 2019-11-11 03:32:27 t 1 1 163310 623 0.00 2019-11-11 03:37:00 2019-11-11 03:37:02 t 1 1 163312 623 0.00 2019-11-11 03:39:02 2019-11-11 03:39:05 t 1 1 163313 623 0.00 2019-11-11 03:39:57 2019-11-11 03:40:58 t 1 1 163316 623 0.00 2019-11-11 03:41:26 2019-11-11 03:41:28 t 1 1 163319 623 0.00 2019-11-11 03:42:34 2019-11-11 03:42:37 t 1 1 163320 562 0.00 2019-11-11 03:43:03 2019-11-11 03:43:13 t 1 1 163321 623 0.00 2019-11-11 03:44:07 2019-11-11 03:44:10 t 1 1 163323 623 0.00 2019-11-11 03:47:46 2019-11-11 03:48:08 t 1 1 163324 623 0.00 2019-11-11 03:49:21 2019-11-11 03:49:24 t 1 1 163326 562 0.00 2019-11-11 03:52:01 2019-11-11 03:52:15 t 1 1 163328 623 0.00 2019-11-11 03:52:45 2019-11-11 03:52:47 t 1 1 163330 623 0.00 2019-11-11 03:55:11 2019-11-11 03:55:24 t 1 1 163345 623 0.00 2019-11-11 04:09:33 2019-11-11 04:09:34 t 1 1 163347 545 0.00 2019-11-11 04:08:19 2019-11-11 04:10:41 t 1 1 163359 623 0.00 2019-11-11 04:21:45 2019-11-11 04:21:46 t 1 1 163364 623 0.00 2019-11-11 04:25:55 2019-11-11 04:25:56 t 1 1 163367 623 0.00 2019-11-11 04:28:52 2019-11-11 04:28:53 t 1 1 163372 623 0.00 2019-11-11 04:32:32 2019-11-11 04:32:52 t 1 1 163376 623 0.00 2019-11-11 04:35:08 2019-11-11 04:35:09 t 1 1 163379 623 0.00 2019-11-11 04:38:24 2019-11-11 04:38:26 t 1 1 163380 623 0.00 2019-11-11 04:39:08 2019-11-11 04:39:19 t 1 1 163382 623 0.00 2019-11-11 04:39:30 2019-11-11 04:39:33 t 1 1 163397 623 0.00 2019-11-11 04:59:39 2019-11-11 05:00:08 t 1 1 163401 623 0.00 2019-11-11 05:01:20 2019-11-11 05:02:20 t 1 1 163404 562 0.00 2019-11-11 05:05:11 2019-11-11 05:05:25 t 1 1 163406 623 0.00 2019-11-11 05:05:09 2019-11-11 05:06:18 t 1 1 163407 623 0.00 2019-11-11 05:07:15 2019-11-11 05:07:16 t 1 1 163408 516 0.00 2019-11-11 04:58:18 2019-11-11 05:07:18 t 1 1 163409 623 0.00 2019-11-11 05:07:27 2019-11-11 05:08:09 t 1 1 163410 623 0.00 2019-11-11 05:08:14 2019-11-11 05:08:15 t 1 1 163411 623 0.00 2019-11-11 05:10:19 2019-11-11 05:10:20 t 1 1 163412 422 0.00 2019-11-11 05:10:51 2019-11-11 05:11:12 t 1 1 163413 623 0.00 2019-11-11 05:11:14 2019-11-11 05:12:10 t 1 1 163414 623 0.00 2019-11-11 05:13:22 2019-11-11 05:13:23 t 1 1 163415 562 0.00 2019-11-11 05:13:31 2019-11-11 05:13:46 t 1 1 163416 623 0.00 2019-11-11 05:15:20 2019-11-11 05:16:28 t 1 1 163417 623 0.00 2019-11-11 05:16:39 2019-11-11 05:17:14 t 1 1 163418 623 0.00 2019-11-11 05:17:35 2019-11-11 05:17:48 t 1 1 163419 623 0.00 2019-11-11 05:18:20 2019-11-11 05:18:22 t 1 1 163420 623 0.00 2019-11-11 05:19:21 2019-11-11 05:19:35 t 1 1 163421 623 0.00 2019-11-11 05:20:35 2019-11-11 05:20:36 t 1 1 163422 422 0.00 2019-11-11 05:21:33 2019-11-11 05:21:50 t 1 1 163423 623 0.00 2019-11-11 05:22:30 2019-11-11 05:22:55 t 1 1 163424 623 0.00 2019-11-11 05:23:48 2019-11-11 05:23:50 t 1 1 163425 516 0.00 2019-11-11 05:19:34 2019-11-11 05:23:54 t 1 1 163426 623 0.00 2019-11-11 05:24:02 2019-11-11 05:24:02 t 1 1 163431 623 0.00 2019-11-11 05:30:32 2019-11-11 05:30:33 t 1 1 163432 623 0.00 2019-11-11 05:31:21 2019-11-11 05:31:22 t 1 1 163433 562 0.00 2019-11-11 05:31:42 2019-11-11 05:32:07 t 1 1 163437 623 0.00 2019-11-11 05:34:58 2019-11-11 05:34:59 t 1 1 163438 623 0.00 2019-11-11 05:38:07 2019-11-11 05:38:08 t 1 1 163439 623 0.00 2019-11-11 05:41:24 2019-11-11 05:41:35 t 1 1 163440 562 0.00 2019-11-11 05:42:36 2019-11-11 05:42:49 t 1 1 163448 538 0.00 2019-11-11 01:57:34 2019-11-11 06:00:10 t 1 1 163453 623 0.00 2019-11-11 06:06:50 2019-11-11 06:06:51 t 1 1 163455 623 0.00 2019-11-11 06:08:13 2019-11-11 06:08:14 t 1 1 163458 623 0.00 2019-11-11 06:11:42 2019-11-11 06:12:08 t 1 1 163473 538 0.00 2019-11-11 06:29:58 2019-11-11 06:31:19 t 1 1 163476 422 0.00 2019-11-11 05:35:05 2019-11-11 06:35:06 t 1 1 163477 562 0.00 2019-11-11 06:36:19 2019-11-11 06:36:40 t 1 1 163479 516 0.00 2019-11-11 05:42:51 2019-11-11 06:39:48 t 1 1 163482 637 0.00 2019-11-11 06:13:30 2019-11-11 06:41:13 t 1 1 163485 566 0.00 2019-11-11 06:20:39 2019-11-11 06:43:51 t 1 1 163486 623 0.00 2019-11-11 06:45:20 2019-11-11 06:45:21 t 1 1 163488 562 0.00 2019-11-11 06:45:53 2019-11-11 06:47:33 t 1 1 163489 566 0.00 2019-11-11 06:43:51 2019-11-11 06:49:02 t 1 1 163491 623 0.00 2019-11-11 06:50:02 2019-11-11 06:50:04 t 1 1 163492 623 0.00 2019-11-11 06:54:26 2019-11-11 06:54:27 t 1 1 163494 623 0.00 2019-11-11 06:55:06 2019-11-11 06:55:20 t 1 1 163497 597 0.00 2019-11-11 06:56:55 2019-11-11 07:03:26 t 1 1 163499 623 0.00 2019-11-11 07:05:14 2019-11-11 07:05:17 t 1 1 163501 611 0.00 2019-11-11 07:06:44 2019-11-11 07:11:13 t 1 1 163503 611 0.00 2019-11-11 07:11:24 2019-11-11 07:15:40 t 1 1 163504 623 0.00 2019-11-11 07:16:32 2019-11-11 07:16:35 t 1 1 163514 622 0.00 2019-11-10 20:32:41 2019-11-11 07:33:26 t 1 1 163518 562 0.00 2019-11-11 07:39:48 2019-11-11 07:40:09 t 1 1 163520 623 0.00 2019-11-11 07:43:51 2019-11-11 07:44:03 t 1 1 163521 623 0.00 2019-11-11 07:44:15 2019-11-11 07:44:16 t 1 1 163524 566 0.00 2019-11-11 07:44:08 2019-11-11 07:50:57 t 1 1 163529 562 0.00 2019-11-11 07:51:49 2019-11-11 07:56:50 t 1 1 163530 562 0.00 2019-11-11 07:56:50 2019-11-11 07:59:00 t 1 1 163532 623 0.00 2019-11-11 07:59:54 2019-11-11 08:00:10 t 1 1 163535 562 0.00 2019-11-11 08:04:18 2019-11-11 08:04:37 t 1 1 163539 566 0.00 2019-11-11 07:59:31 2019-11-11 08:08:46 t 1 1 163543 623 0.00 2019-11-11 08:14:36 2019-11-11 08:14:37 t 1 1 163548 379 0.00 2019-11-11 08:06:58 2019-11-11 08:18:37 t 1 1 163550 591 0.00 2019-11-11 07:58:01 2019-11-11 08:20:58 t 1 1 163552 637 0.00 2019-11-11 08:20:21 2019-11-11 08:21:40 t 1 1 163554 623 0.00 2019-11-11 08:18:11 2019-11-11 08:23:57 t 1 1 163556 623 0.00 2019-11-11 08:25:02 2019-11-11 08:25:03 t 1 1 163562 645 0.00 2019-11-11 08:27:20 2019-11-11 08:28:23 t 1 1 163563 623 0.00 2019-11-11 08:28:24 2019-11-11 08:28:37 t 1 1 163566 562 0.00 2019-11-11 08:27:16 2019-11-11 08:29:31 t 1 1 163569 623 0.00 2019-11-11 08:30:10 2019-11-11 08:30:41 t 1 1 163570 623 0.00 2019-11-11 08:31:03 2019-11-11 08:31:41 t 1 1 163576 623 0.00 2019-11-11 08:36:33 2019-11-11 08:37:34 t 1 1 163577 623 0.00 2019-11-11 08:38:01 2019-11-11 08:38:12 t 1 1 163580 562 0.00 2019-11-11 08:40:00 2019-11-11 08:46:22 t 1 1 163583 623 0.00 2019-11-11 08:48:46 2019-11-11 08:48:49 t 1 1 163589 597 0.00 2019-11-11 08:45:40 2019-11-11 08:52:34 t 1 1 163592 623 0.00 2019-11-11 08:54:56 2019-11-11 08:54:59 t 1 1 163595 623 0.00 2019-11-11 08:55:07 2019-11-11 08:55:35 t 1 1 163599 591 0.00 2019-11-11 08:54:15 2019-11-11 08:58:25 t 1 1 163600 375 0.00 2019-11-11 08:55:48 2019-11-11 08:59:21 t 1 1 163602 622 0.00 2019-11-11 07:33:36 2019-11-11 09:02:11 t 1 1 163606 623 0.00 2019-11-11 08:55:49 2019-11-11 09:08:23 t 1 1 163608 499 0.00 2019-11-11 09:07:03 2019-11-11 09:09:32 t 1 1 163612 625 0.00 2019-11-11 09:10:00 2019-11-11 09:11:47 t 1 1 163617 623 0.00 2019-11-11 09:12:06 2019-11-11 09:12:46 t 1 1 163622 375 0.00 2019-11-11 09:12:47 2019-11-11 09:15:44 t 1 1 163626 623 0.00 2019-11-11 09:17:14 2019-11-11 09:17:15 t 1 1 163627 597 0.00 2019-11-11 09:16:33 2019-11-11 09:18:38 t 1 1 163628 375 0.00 2019-11-11 09:17:09 2019-11-11 09:20:32 t 1 1 163633 597 0.00 2019-11-11 09:21:13 2019-11-11 09:29:37 t 1 1 163636 581 0.00 2019-11-11 09:10:29 2019-11-11 09:30:43 t 1 1 163639 220 0.00 2019-11-11 09:19:04 2019-11-11 09:31:42 t 1 2 163643 623 0.00 2019-11-11 09:34:00 2019-11-11 09:38:20 t 1 1 163645 375 0.00 2019-11-11 09:21:03 2019-11-11 09:39:38 t 1 1 163648 623 0.00 2019-11-11 09:41:53 2019-11-11 09:42:25 t 1 1 163650 597 0.00 2019-11-11 09:42:57 2019-11-11 09:44:11 t 1 1 163652 623 0.00 2019-11-11 09:46:14 2019-11-11 09:47:35 t 1 1 163655 623 0.00 2019-11-11 09:48:41 2019-11-11 09:48:41 f 1 1 163657 416 0.00 2019-11-11 09:45:01 2019-11-11 09:49:24 t 1 1 163660 623 0.00 2019-11-11 09:48:29 2019-11-11 09:50:20 t 1 1 163662 637 0.00 2019-11-11 08:51:27 2019-11-11 09:52:35 t 1 1 163666 416 0.00 2019-11-11 09:53:19 2019-11-11 09:56:26 t 1 1 163667 625 0.00 2019-11-11 09:31:01 2019-11-11 09:58:39 t 1 1 163672 597 0.00 2019-11-11 10:03:01 2019-11-11 10:05:54 t 1 1 163674 619 0.00 2019-11-11 09:56:56 2019-11-11 10:08:02 t 1 1 163677 562 0.00 2019-11-11 10:10:54 2019-11-11 10:12:20 t 1 1 163678 591 0.00 2019-11-11 09:54:05 2019-11-11 10:14:04 t 1 1 163679 562 0.00 2019-11-11 10:14:14 2019-11-11 10:14:24 t 1 1 163682 637 0.00 2019-11-11 10:01:09 2019-11-11 10:19:36 t 1 1 163685 637 0.00 2019-11-11 10:20:17 2019-11-11 10:21:29 t 1 1 163688 220 0.00 2019-11-11 09:55:03 2019-11-11 10:22:47 t 1 1 163690 516 0.00 2019-11-11 10:21:02 2019-11-11 10:24:49 t 1 1 163693 619 0.00 2019-11-11 10:18:25 2019-11-11 10:25:47 t 1 1 163699 422 0.00 2019-11-11 10:27:33 2019-11-11 10:27:46 t 1 1 163701 562 0.00 2019-11-11 10:24:46 2019-11-11 10:28:34 t 1 1 163707 649 0.00 2019-11-11 10:31:02 2019-11-11 10:31:56 t 1 1 163709 375 0.00 2019-11-11 10:07:01 2019-11-11 10:35:22 t 1 1 163712 597 0.00 2019-11-11 10:35:55 2019-11-11 10:39:06 t 1 1 163715 220 0.00 2019-11-11 10:32:20 2019-11-11 10:40:09 t 1 1 163717 637 0.00 2019-11-11 10:28:19 2019-11-11 10:40:16 t 1 1 163720 512 0.00 2019-11-11 10:35:25 2019-11-11 10:42:10 t 1 1 163723 649 0.00 2019-11-11 10:31:55 2019-11-11 10:43:23 t 1 1 163733 645 0.00 2019-11-11 10:50:48 2019-11-11 10:51:45 t 1 1 163737 375 0.00 2019-11-11 10:51:57 2019-11-11 10:57:08 t 1 1 163743 562 0.00 2019-11-11 11:01:21 2019-11-11 11:01:58 t 1 1 163746 422 0.00 2019-11-11 11:00:22 2019-11-11 11:02:39 t 1 1 163751 512 0.00 2019-11-11 10:42:19 2019-11-11 11:05:19 t 1 1 163753 422 0.00 2019-11-11 11:06:02 2019-11-11 11:06:11 t 1 1 163427 562 0.00 2019-11-11 05:24:08 2019-11-11 05:24:32 t 1 1 163429 623 0.00 2019-11-11 05:27:59 2019-11-11 05:28:50 t 1 1 163430 623 0.00 2019-11-11 05:29:10 2019-11-11 05:29:11 t 1 1 163434 422 0.00 2019-11-11 05:32:07 2019-11-11 05:32:25 t 1 1 163435 623 0.00 2019-11-11 05:33:19 2019-11-11 05:33:41 t 1 1 163436 623 0.00 2019-11-11 05:34:34 2019-11-11 05:34:46 t 1 1 163446 562 0.00 2019-11-11 05:53:17 2019-11-11 05:53:50 t 1 1 163447 623 0.00 2019-11-11 05:56:35 2019-11-11 05:56:51 t 1 1 163449 538 0.00 2019-11-11 06:00:10 2019-11-11 06:01:12 t 1 1 163454 625 0.00 2019-11-10 23:34:30 2019-11-11 06:07:19 t 1 1 163456 623 0.00 2019-11-11 06:08:42 2019-11-11 06:08:53 t 1 1 163459 623 0.00 2019-11-11 06:12:28 2019-11-11 06:12:31 t 1 1 163462 623 0.00 2019-11-11 06:17:05 2019-11-11 06:17:08 t 1 1 163464 566 0.00 2019-11-11 06:12:04 2019-11-11 06:20:39 t 1 1 163465 623 0.00 2019-11-11 06:22:14 2019-11-11 06:22:16 t 1 1 163466 645 0.00 2019-11-11 06:20:46 2019-11-11 06:24:34 t 1 1 163468 562 0.00 2019-11-11 06:25:40 2019-11-11 06:25:54 t 1 1 163470 623 0.00 2019-11-11 06:29:54 2019-11-11 06:29:56 t 1 1 163475 623 0.00 2019-11-11 06:34:59 2019-11-11 06:35:01 t 1 1 163478 623 0.00 2019-11-11 06:38:13 2019-11-11 06:39:15 t 1 1 163481 623 0.00 2019-11-11 06:41:06 2019-11-11 06:41:07 t 1 1 163483 623 0.00 2019-11-11 06:40:53 2019-11-11 06:42:19 t 1 1 163487 623 0.00 2019-11-11 06:45:27 2019-11-11 06:45:28 t 1 1 163495 562 0.00 2019-11-11 06:56:49 2019-11-11 06:57:05 t 1 1 163496 623 0.00 2019-11-11 07:00:10 2019-11-11 07:00:13 t 1 1 163502 562 0.00 2019-11-11 07:07:34 2019-11-11 07:11:35 t 1 1 163506 562 0.00 2019-11-11 07:18:40 2019-11-11 07:18:49 t 1 1 163511 599 0.00 2019-11-11 07:23:04 2019-11-11 07:29:29 t 1 1 163515 637 0.00 2019-11-11 07:30:24 2019-11-11 07:33:48 t 1 1 163519 623 0.00 2019-11-11 07:40:40 2019-11-11 07:40:43 t 1 1 163525 562 0.00 2019-11-11 07:41:09 2019-11-11 07:51:49 t 1 1 163527 597 0.00 2019-11-11 07:50:25 2019-11-11 07:53:54 t 1 1 163528 623 0.00 2019-11-11 07:55:55 2019-11-11 07:56:22 t 1 1 163533 623 0.00 2019-11-11 08:00:21 2019-11-11 08:00:22 t 1 1 163534 623 0.00 2019-11-11 08:01:04 2019-11-11 08:01:07 t 1 1 163537 623 0.00 2019-11-11 08:05:00 2019-11-11 08:05:16 t 1 1 163538 562 0.00 2019-11-11 08:06:44 2019-11-11 08:06:50 t 1 1 163540 566 0.00 2019-11-11 08:08:46 2019-11-11 08:08:55 t 1 1 163541 623 0.00 2019-11-11 08:09:51 2019-11-11 08:09:52 t 1 1 163542 562 0.00 2019-11-11 08:11:09 2019-11-11 08:12:09 t 1 1 163546 562 0.00 2019-11-11 08:16:54 2019-11-11 08:17:25 t 1 1 163547 538 0.00 2019-11-11 07:35:53 2019-11-11 08:18:22 t 1 1 163551 597 0.00 2019-11-11 08:17:03 2019-11-11 08:21:37 t 1 1 163553 562 0.00 2019-11-11 08:20:06 2019-11-11 08:23:55 t 1 1 163555 623 0.00 2019-11-11 08:24:42 2019-11-11 08:24:49 t 1 1 163557 623 0.00 2019-11-11 08:25:09 2019-11-11 08:25:11 t 1 1 163559 562 0.00 2019-11-11 08:24:09 2019-11-11 08:26:45 t 1 1 163568 615 0.00 2019-11-11 08:27:09 2019-11-11 08:30:32 t 1 1 163571 591 0.00 2019-11-11 08:20:58 2019-11-11 08:32:33 t 1 1 163572 623 0.00 2019-11-11 08:33:03 2019-11-11 08:33:10 t 1 1 163575 562 0.00 2019-11-11 08:36:54 2019-11-11 08:37:14 t 1 1 163578 516 0.00 2019-11-11 08:24:49 2019-11-11 08:40:21 t 1 1 163581 623 0.00 2019-11-11 08:48:09 2019-11-11 08:48:20 t 1 1 163584 591 0.00 2019-11-11 08:44:11 2019-11-11 08:49:18 t 1 1 163586 568 0.00 2019-11-11 08:49:50 2019-11-11 08:50:18 t 1 1 163587 637 0.00 2019-11-11 08:28:59 2019-11-11 08:51:22 t 1 1 163588 562 0.00 2019-11-11 08:50:25 2019-11-11 08:52:30 t 1 1 163591 623 0.00 2019-11-11 08:49:26 2019-11-11 08:54:51 t 1 1 163593 625 0.00 2019-11-11 07:51:51 2019-11-11 08:55:18 t 1 1 163594 597 0.00 2019-11-11 08:52:34 2019-11-11 08:55:33 t 1 1 163596 562 0.00 2019-11-11 08:56:47 2019-11-11 08:56:55 t 1 1 163597 516 0.00 2019-11-11 08:45:47 2019-11-11 08:57:41 t 1 1 163598 645 0.00 2019-11-11 08:57:02 2019-11-11 08:58:23 t 1 1 163601 562 0.00 2019-11-11 08:58:08 2019-11-11 09:01:07 t 1 1 163603 562 0.00 2019-11-11 09:01:46 2019-11-11 09:02:58 t 1 1 163610 581 0.00 2019-11-11 09:01:37 2019-11-11 09:09:43 t 1 1 163611 538 0.00 2019-11-11 08:54:04 2019-11-11 09:10:32 t 1 1 163613 623 0.00 2019-11-11 09:11:36 2019-11-11 09:11:53 t 1 1 163614 615 0.00 2019-11-11 08:55:23 2019-11-11 09:12:25 t 1 1 163616 375 0.00 2019-11-11 08:59:21 2019-11-11 09:12:42 t 1 1 163619 615 0.00 2019-11-11 09:12:25 2019-11-11 09:13:46 t 1 1 163620 623 0.00 2019-11-11 09:12:51 2019-11-11 09:14:19 t 1 1 163623 623 0.00 2019-11-11 09:16:33 2019-11-11 09:16:48 t 1 1 163630 623 0.00 2019-11-11 09:22:20 2019-11-11 09:22:22 t 1 1 163638 619 0.00 2019-11-11 09:14:42 2019-11-11 09:31:40 t 1 1 163640 622 0.00 2019-11-11 09:30:36 2019-11-11 09:32:03 t 1 1 163644 623 0.00 2019-11-11 09:38:26 2019-11-11 09:38:32 t 1 1 163647 585 0.00 2019-11-11 09:33:17 2019-11-11 09:42:03 t 1 1 163649 623 0.00 2019-11-11 09:42:35 2019-11-11 09:42:44 t 1 1 163653 591 0.00 2019-11-11 09:17:24 2019-11-11 09:47:43 t 1 1 163654 623 0.00 2019-11-11 09:47:52 2019-11-11 09:48:24 t 1 1 163656 623 0.00 2019-11-11 09:47:40 2019-11-11 09:49:20 t 1 1 163663 416 0.00 2019-11-11 09:48:28 2019-11-11 09:53:15 t 1 1 163665 512 0.00 2019-11-11 09:52:11 2019-11-11 09:53:45 t 1 1 163669 645 0.00 2019-11-11 09:58:22 2019-11-11 10:00:38 t 1 1 163671 375 0.00 2019-11-11 09:39:37 2019-11-11 10:05:24 t 1 1 163675 516 0.00 2019-11-11 10:08:18 2019-11-11 10:10:05 t 1 1 163680 625 0.00 2019-11-11 10:12:01 2019-11-11 10:18:43 t 1 1 163684 597 0.00 2019-11-11 10:15:19 2019-11-11 10:21:07 t 1 1 163687 595 0.00 2019-11-11 10:17:52 2019-11-11 10:22:26 t 1 1 163691 649 0.00 2019-11-11 10:23:04 2019-11-11 10:24:51 t 1 1 163692 422 0.00 2019-11-11 10:14:34 2019-11-11 10:25:37 t 1 1 163694 379 0.00 2019-11-11 10:20:46 2019-11-11 10:26:15 t 1 1 163696 637 0.00 2019-11-11 10:24:30 2019-11-11 10:26:28 t 1 1 163697 591 0.00 2019-11-11 10:14:04 2019-11-11 10:27:33 t 1 1 163702 562 0.00 2019-11-11 10:28:34 2019-11-11 10:29:13 t 1 1 163705 481 0.00 2019-11-11 09:50:42 2019-11-11 10:31:30 t 1 1 163710 591 0.00 2019-11-11 10:27:33 2019-11-11 10:36:30 t 1 1 163711 422 0.00 2019-11-11 10:29:21 2019-11-11 10:36:57 t 1 1 163714 647 0.00 2019-11-11 09:56:38 2019-11-11 10:39:13 t 1 1 163718 585 0.00 2019-11-11 10:39:25 2019-11-11 10:40:48 t 1 1 163721 619 0.00 2019-11-11 10:40:14 2019-11-11 10:42:21 t 1 1 163725 220 0.00 2019-11-11 10:33:13 2019-11-11 10:45:01 t 1 1 163727 514 0.00 2019-11-11 10:39:35 2019-11-11 10:45:51 t 1 1 163728 591 0.00 2019-11-11 10:36:30 2019-11-11 10:46:05 t 1 1 163729 422 0.00 2019-11-11 10:36:57 2019-11-11 10:47:07 t 1 1 163731 375 0.00 2019-11-11 10:43:52 2019-11-11 10:50:08 t 1 1 163428 623 0.00 2019-11-11 05:24:42 2019-11-11 05:24:42 t 1 1 163441 623 0.00 2019-11-11 05:45:31 2019-11-11 05:45:34 t 1 1 163442 623 0.00 2019-11-11 05:46:26 2019-11-11 05:46:31 t 1 1 163443 623 0.00 2019-11-11 05:49:04 2019-11-11 05:49:04 t 1 1 163444 485 0.00 2019-11-11 05:48:20 2019-11-11 05:50:28 t 1 1 163445 623 0.00 2019-11-11 05:51:55 2019-11-11 05:51:56 t 1 1 163450 623 0.00 2019-11-11 06:01:39 2019-11-11 06:01:41 t 1 1 163451 562 0.00 2019-11-11 06:04:03 2019-11-11 06:04:23 t 1 1 163452 623 0.00 2019-11-11 06:06:36 2019-11-11 06:06:39 t 1 1 163457 623 0.00 2019-11-11 06:10:29 2019-11-11 06:10:53 t 1 1 163460 520 0.00 2019-11-11 06:05:06 2019-11-11 06:13:06 t 1 1 163461 562 0.00 2019-11-11 06:14:47 2019-11-11 06:15:08 t 1 1 163463 220 0.00 2019-11-10 22:52:14 2019-11-11 06:18:43 t 1 1 163467 623 0.00 2019-11-11 06:24:44 2019-11-11 06:24:49 t 1 1 163469 538 0.00 2019-11-11 06:02:15 2019-11-11 06:28:44 t 1 1 163471 538 0.00 2019-11-11 06:29:57 2019-11-11 06:29:57 t 1 1 163472 623 0.00 2019-11-11 06:29:56 2019-11-11 06:30:58 t 1 1 163474 611 0.00 2019-11-11 06:29:35 2019-11-11 06:31:52 t 1 1 163480 623 0.00 2019-11-11 06:39:56 2019-11-11 06:40:11 t 1 1 163484 625 0.00 2019-11-11 06:07:19 2019-11-11 06:43:50 t 1 1 163490 625 0.00 2019-11-11 06:43:50 2019-11-11 06:49:56 t 1 1 163493 625 0.00 2019-11-11 06:49:56 2019-11-11 06:54:31 t 1 1 163498 619 0.00 2019-11-11 06:26:36 2019-11-11 07:03:37 t 1 1 163500 623 0.00 2019-11-11 07:10:20 2019-11-11 07:10:21 t 1 1 163505 545 0.00 2019-11-11 07:12:24 2019-11-11 07:16:40 t 1 1 163507 623 0.00 2019-11-11 07:20:28 2019-11-11 07:20:29 t 1 1 163508 623 0.00 2019-11-11 07:25:32 2019-11-11 07:25:35 t 1 1 163509 595 0.00 2019-11-11 07:26:46 2019-11-11 07:28:13 t 1 1 163510 562 0.00 2019-11-11 07:29:16 2019-11-11 07:29:27 t 1 1 163512 623 0.00 2019-11-11 07:30:35 2019-11-11 07:30:50 t 1 1 163513 611 0.00 2019-11-11 07:26:20 2019-11-11 07:32:51 t 1 1 163516 623 0.00 2019-11-11 07:35:40 2019-11-11 07:35:41 t 1 1 163517 538 0.00 2019-11-11 06:30:58 2019-11-11 07:36:12 t 1 1 163522 623 0.00 2019-11-11 07:45:44 2019-11-11 07:45:45 t 1 1 163523 623 0.00 2019-11-11 07:50:48 2019-11-11 07:50:51 t 1 1 163526 625 0.00 2019-11-11 06:54:31 2019-11-11 07:51:51 t 1 1 163531 566 0.00 2019-11-11 07:50:57 2019-11-11 07:59:31 t 1 1 163536 623 0.00 2019-11-11 08:04:21 2019-11-11 08:04:55 t 1 1 163544 562 0.00 2019-11-11 08:14:57 2019-11-11 08:15:10 t 1 1 163545 623 0.00 2019-11-11 08:15:56 2019-11-11 08:15:58 t 1 1 163549 637 0.00 2019-11-11 08:04:14 2019-11-11 08:19:58 t 1 1 163558 637 0.00 2019-11-11 08:23:49 2019-11-11 08:26:33 t 1 1 163560 615 0.00 2019-11-11 08:23:25 2019-11-11 08:27:09 t 1 1 163561 637 0.00 2019-11-11 08:27:15 2019-11-11 08:27:57 t 1 1 163564 637 0.00 2019-11-11 08:28:03 2019-11-11 08:28:49 t 1 1 163565 220 0.00 2019-11-11 08:28:34 2019-11-11 08:29:03 t 1 1 163567 623 0.00 2019-11-11 08:29:24 2019-11-11 08:29:55 t 1 1 163573 623 0.00 2019-11-11 08:35:42 2019-11-11 08:35:46 t 1 1 163574 623 0.00 2019-11-11 08:35:57 2019-11-11 08:36:00 t 1 1 163579 623 0.00 2019-11-11 08:43:07 2019-11-11 08:43:10 t 1 1 163582 623 0.00 2019-11-11 08:48:25 2019-11-11 08:48:26 t 1 1 163585 562 0.00 2019-11-11 08:46:59 2019-11-11 08:50:11 t 1 1 163590 562 0.00 2019-11-11 08:54:23 2019-11-11 08:54:43 t 1 1 163604 562 0.00 2019-11-11 09:03:50 2019-11-11 09:05:18 t 1 1 163605 562 0.00 2019-11-11 09:06:09 2019-11-11 09:06:49 t 1 1 163607 597 0.00 2019-11-11 09:00:31 2019-11-11 09:08:40 t 1 1 163609 625 0.00 2019-11-11 08:55:18 2019-11-11 09:09:41 t 1 1 163615 538 0.00 2019-11-11 09:10:31 2019-11-11 09:12:30 t 1 1 163618 645 0.00 2019-11-11 09:10:53 2019-11-11 09:13:38 t 1 1 163621 623 0.00 2019-11-11 09:15:37 2019-11-11 09:15:38 t 1 1 163624 556 0.00 2019-11-10 23:53:52 2019-11-11 09:16:49 t 1 1 163625 375 0.00 2019-11-11 09:16:46 2019-11-11 09:17:09 t 1 1 163629 622 0.00 2019-11-11 09:18:38 2019-11-11 09:21:51 t 1 1 163631 623 0.00 2019-11-11 09:22:33 2019-11-11 09:22:34 t 1 1 163632 615 0.00 2019-11-11 09:15:41 2019-11-11 09:25:03 t 1 1 163634 623 0.00 2019-11-11 09:24:20 2019-11-11 09:29:44 t 1 1 163635 622 0.00 2019-11-11 09:22:12 2019-11-11 09:30:36 t 1 1 163637 562 0.00 2019-11-11 09:07:37 2019-11-11 09:30:46 t 1 1 163641 623 0.00 2019-11-11 09:32:15 2019-11-11 09:32:27 t 1 1 163642 516 0.00 2019-11-11 09:13:51 2019-11-11 09:37:16 t 1 1 163646 623 0.00 2019-11-11 09:38:38 2019-11-11 09:41:50 t 1 1 163651 623 0.00 2019-11-11 09:46:01 2019-11-11 09:46:14 t 1 1 163658 562 0.00 2019-11-11 09:30:53 2019-11-11 09:49:33 t 1 1 163659 564 0.00 2019-11-11 08:20:12 2019-11-11 09:50:07 t 1 1 163661 481 0.00 2019-11-11 07:36:47 2019-11-11 09:50:42 t 1 1 163664 619 0.00 2019-11-11 09:41:54 2019-11-11 09:53:45 t 1 1 163668 562 0.00 2019-11-11 09:58:46 2019-11-11 09:59:12 t 1 1 163670 538 0.00 2019-11-11 10:02:34 2019-11-11 10:04:59 t 1 1 163673 562 0.00 2019-11-11 10:01:25 2019-11-11 10:07:38 t 1 1 163676 625 0.00 2019-11-11 09:58:39 2019-11-11 10:12:01 t 1 1 163681 615 0.00 2019-11-11 10:12:15 2019-11-11 10:19:04 t 1 1 163683 625 0.00 2019-11-11 10:18:43 2019-11-11 10:19:57 t 1 1 163686 220 0.00 2019-11-11 10:00:06 2019-11-11 10:21:50 t 1 1 163689 220 0.00 2019-11-11 10:21:50 2019-11-11 10:24:49 t 1 1 163695 422 0.00 2019-11-11 10:26:16 2019-11-11 10:26:25 t 1 1 163698 615 0.00 2019-11-11 10:19:04 2019-11-11 10:27:34 t 1 1 163700 220 0.00 2019-11-11 10:24:49 2019-11-11 10:27:50 t 1 1 163703 649 0.00 2019-11-11 10:24:50 2019-11-11 10:29:29 t 1 1 163704 220 0.00 2019-11-11 10:22:47 2019-11-11 10:31:12 t 1 1 163706 562 0.00 2019-11-11 10:30:44 2019-11-11 10:31:52 t 1 1 163708 220 0.00 2019-11-11 10:27:50 2019-11-11 10:33:13 t 1 1 163713 375 0.00 2019-11-11 10:36:23 2019-11-11 10:39:13 t 1 1 163716 615 0.00 2019-11-11 10:27:34 2019-11-11 10:40:10 t 1 1 163719 375 0.00 2019-11-11 10:39:24 2019-11-11 10:41:55 t 1 1 163722 562 0.00 2019-11-11 10:40:16 2019-11-11 10:42:50 t 1 1 163724 562 0.00 2019-11-11 10:43:34 2019-11-11 10:44:48 t 1 1 163726 562 0.00 2019-11-11 10:44:58 2019-11-11 10:45:09 t 1 1 163730 220 0.00 2019-11-11 10:45:03 2019-11-11 10:49:19 t 1 1 163734 422 0.00 2019-11-11 10:47:07 2019-11-11 10:52:54 t 1 1 163735 591 0.00 2019-11-11 10:46:05 2019-11-11 10:54:43 t 1 1 163738 562 0.00 2019-11-11 10:58:53 2019-11-11 10:59:13 t 1 1 163739 422 0.00 2019-11-11 10:53:33 2019-11-11 11:00:01 t 1 1 163741 581 0.00 2019-11-11 10:54:34 2019-11-11 11:00:14 t 1 1 163744 375 0.00 2019-11-11 11:00:13 2019-11-11 11:02:00 t 1 1 163748 647 0.00 2019-11-11 10:39:55 2019-11-11 11:04:51 t 1 1 163749 422 0.00 2019-11-11 11:02:58 2019-11-11 11:04:59 t 1 1 163752 611 0.00 2019-11-11 10:52:07 2019-11-11 11:06:04 t 1 1 163732 562 0.00 2019-11-11 10:48:55 2019-11-11 10:51:30 t 1 1 163736 514 0.00 2019-11-11 10:45:51 2019-11-11 10:55:10 t 1 1 163740 538 0.00 2019-11-11 10:53:11 2019-11-11 11:00:05 t 1 1 163742 591 0.00 2019-11-11 10:54:43 2019-11-11 11:01:37 t 1 1 163745 520 0.00 2019-11-11 10:22:15 2019-11-11 11:02:08 t 1 1 163747 375 0.00 2019-11-11 11:02:48 2019-11-11 11:03:22 t 1 1 163750 375 0.00 2019-11-11 11:03:22 2019-11-11 11:05:07 t 1 1 163759 619 0.00 2019-11-11 11:01:38 2019-11-11 11:09:01 t 1 1 163760 562 0.00 2019-11-11 11:09:42 2019-11-11 11:09:53 t 1 1 163761 422 0.00 2019-11-11 11:09:42 2019-11-11 11:10:24 t 1 1 163764 375 0.00 2019-11-11 11:08:08 2019-11-11 11:12:54 t 1 1 163765 611 0.00 2019-11-11 11:06:04 2019-11-11 11:13:09 t 1 1 163769 422 0.00 2019-11-11 11:15:01 2019-11-11 11:15:22 t 1 1 163771 514 0.00 2019-11-11 11:12:20 2019-11-11 11:15:46 t 1 1 163774 623 0.00 2019-11-11 11:17:57 2019-11-11 11:18:05 t 1 1 163778 623 0.00 2019-11-11 11:18:23 2019-11-11 11:20:42 t 1 1 163783 422 0.00 2019-11-11 11:21:51 2019-11-11 11:22:07 t 1 1 163787 623 0.00 2019-11-11 11:22:20 2019-11-11 11:24:21 t 1 1 163789 615 0.00 2019-11-11 11:23:25 2019-11-11 11:25:21 t 1 1 163793 562 0.00 2019-11-11 11:16:18 2019-11-11 11:29:19 t 1 1 163794 375 0.00 2019-11-11 11:27:17 2019-11-11 11:29:49 t 1 1 163795 422 0.00 2019-11-11 11:30:16 2019-11-11 11:31:13 t 1 1 163800 585 0.00 2019-11-11 11:31:11 2019-11-11 11:35:16 t 1 1 163802 375 0.00 2019-11-11 11:34:57 2019-11-11 11:36:07 t 1 1 163803 619 0.00 2019-11-11 11:32:08 2019-11-11 11:37:16 t 1 1 163805 512 0.00 2019-11-11 11:35:34 2019-11-11 11:37:22 t 1 1 163809 422 0.00 2019-11-11 11:36:47 2019-11-11 11:38:41 t 1 1 163810 623 0.00 2019-11-11 11:36:50 2019-11-11 11:38:56 t 1 1 163813 623 0.00 2019-11-11 11:40:41 2019-11-11 11:41:15 t 1 1 163818 647 0.00 2019-11-11 11:42:02 2019-11-11 11:43:21 t 1 1 163821 562 0.00 2019-11-11 11:42:26 2019-11-11 11:44:50 t 1 1 163823 422 0.00 2019-11-11 11:45:11 2019-11-11 11:46:11 t 1 1 163824 623 0.00 2019-11-11 11:46:52 2019-11-11 11:46:56 t 1 1 163828 379 0.00 2019-11-11 11:38:45 2019-11-11 11:49:12 t 1 1 163830 422 0.00 2019-11-11 11:49:21 2019-11-11 11:49:25 t 1 1 163832 422 0.00 2019-11-11 11:50:53 2019-11-11 11:51:05 t 1 1 163836 562 0.00 2019-11-11 11:53:25 2019-11-11 11:53:40 t 1 1 163839 430 0.00 2019-11-11 11:54:10 2019-11-11 11:57:25 t 1 1 163842 623 0.00 2019-11-11 11:53:57 2019-11-11 11:59:41 t 1 1 163847 375 0.00 2019-11-11 11:44:15 2019-11-11 12:01:07 t 1 1 163850 597 0.00 2019-11-11 11:56:25 2019-11-11 12:02:53 t 1 1 163852 375 0.00 2019-11-11 12:01:07 2019-11-11 12:04:52 t 1 1 163856 623 0.00 2019-11-11 12:06:38 2019-11-11 12:07:35 t 1 1 163858 645 0.00 2019-11-11 12:07:05 2019-11-11 12:08:38 t 1 1 163860 562 0.00 2019-11-11 11:54:37 2019-11-11 12:09:15 t 1 1 163865 422 0.00 2019-11-11 12:12:02 2019-11-11 12:12:12 t 1 1 163867 375 0.00 2019-11-11 12:05:40 2019-11-11 12:14:02 t 1 1 163869 623 0.00 2019-11-11 12:15:23 2019-11-11 12:15:52 t 1 1 163872 375 0.00 2019-11-11 12:14:57 2019-11-11 12:17:05 t 1 1 163874 220 0.00 2019-11-11 12:13:52 2019-11-11 12:19:02 t 1 1 163875 623 0.00 2019-11-11 12:17:21 2019-11-11 12:19:34 t 1 1 163879 516 0.00 2019-11-11 12:11:05 2019-11-11 12:20:28 t 1 1 163884 585 0.00 2019-11-11 12:19:29 2019-11-11 12:25:33 t 1 1 163886 430 0.00 2019-11-11 12:24:49 2019-11-11 12:26:04 t 1 1 163895 623 0.00 2019-11-11 12:19:47 2019-11-11 12:30:27 t 1 1 163896 623 0.00 2019-11-11 12:30:34 2019-11-11 12:30:36 t 1 1 163897 623 0.00 2019-11-11 12:30:48 2019-11-11 12:31:26 t 1 1 163900 562 0.00 2019-11-11 12:33:23 2019-11-11 12:33:34 t 1 1 163906 611 0.00 2019-11-11 12:28:28 2019-11-11 12:35:24 t 1 1 163911 375 0.00 2019-11-11 12:29:43 2019-11-11 12:39:46 t 1 1 163912 220 0.00 2019-11-11 12:38:22 2019-11-11 12:39:53 t 1 1 163913 611 0.00 2019-11-11 12:35:24 2019-11-11 12:40:00 t 1 1 163917 585 0.00 2019-11-11 12:29:07 2019-11-11 12:42:19 t 1 1 163919 375 0.00 2019-11-11 12:39:49 2019-11-11 12:43:09 t 1 1 163922 623 0.00 2019-11-11 12:43:43 2019-11-11 12:43:53 t 1 1 163928 619 0.00 2019-11-11 12:44:30 2019-11-11 12:47:39 t 1 1 163932 422 0.00 2019-11-11 12:49:38 2019-11-11 12:49:56 t 1 1 163935 623 0.00 2019-11-11 12:51:03 2019-11-11 12:51:05 t 1 1 163938 647 0.00 2019-11-11 12:50:55 2019-11-11 12:53:06 t 1 1 163942 611 0.00 2019-11-11 12:44:33 2019-11-11 12:55:54 t 1 1 163945 623 0.00 2019-11-11 12:55:59 2019-11-11 12:56:12 t 1 1 163957 422 0.00 2019-11-11 13:00:13 2019-11-11 13:00:31 t 1 1 163958 220 0.00 2019-11-11 13:00:30 2019-11-11 13:00:41 t 1 1 163961 220 0.00 2019-11-11 12:30:29 2019-11-11 13:01:29 t 1 1 163965 379 0.00 2019-11-11 13:00:38 2019-11-11 13:03:42 t 1 1 163969 220 0.00 2019-11-11 13:05:56 2019-11-11 13:06:06 t 1 1 163972 623 0.00 2019-11-11 13:00:25 2019-11-11 13:06:58 t 1 1 163973 220 0.00 2019-11-11 13:06:39 2019-11-11 13:07:13 t 1 1 163975 220 0.00 2019-11-11 13:07:12 2019-11-11 13:07:45 t 1 1 163976 220 0.00 2019-11-11 13:07:44 2019-11-11 13:08:19 t 1 1 163978 564 0.00 2019-11-11 12:49:59 2019-11-11 13:08:32 t 1 1 163983 647 0.00 2019-11-11 13:08:33 2019-11-11 13:12:16 t 1 1 163986 422 0.00 2019-11-11 13:13:24 2019-11-11 13:13:59 t 1 1 163990 623 0.00 2019-11-11 13:14:47 2019-11-11 13:15:37 t 1 1 163992 375 0.00 2019-11-11 13:09:21 2019-11-11 13:15:57 t 1 1 163993 220 0.00 2019-11-11 13:15:43 2019-11-11 13:16:25 t 1 1 163997 562 0.00 2019-11-11 13:16:20 2019-11-11 13:16:47 t 1 1 164001 623 0.00 2019-11-11 13:17:06 2019-11-11 13:18:05 t 1 1 164005 220 0.00 2019-11-11 13:19:29 2019-11-11 13:20:48 t 1 1 164006 623 0.00 2019-11-11 13:20:53 2019-11-11 13:21:00 t 1 1 164011 597 0.00 2019-11-11 13:14:34 2019-11-11 13:21:39 t 1 1 164013 220 0.00 2019-11-11 13:21:03 2019-11-11 13:22:16 t 1 1 164014 637 0.00 2019-11-11 12:12:09 2019-11-11 13:23:15 t 1 1 164017 591 0.00 2019-11-11 13:14:53 2019-11-11 13:23:35 t 1 1 164022 562 0.00 2019-11-11 13:26:22 2019-11-11 13:26:35 t 1 1 164026 611 0.00 2019-11-11 13:12:22 2019-11-11 13:29:37 t 1 1 164029 516 0.00 2019-11-11 13:24:18 2019-11-11 13:31:53 t 1 1 164037 623 0.00 2019-11-11 13:33:55 2019-11-11 13:34:56 t 1 1 164038 451 0.00 2019-11-11 13:26:27 2019-11-11 13:35:04 t 1 1 164040 647 0.00 2019-11-11 13:33:34 2019-11-11 13:35:41 t 1 1 164041 430 0.00 2019-11-11 13:29:56 2019-11-11 13:36:05 t 1 1 164042 645 0.00 2019-11-11 13:30:56 2019-11-11 13:36:29 t 1 1 164043 422 0.00 2019-11-11 13:37:39 2019-11-11 13:37:51 t 1 1 164045 422 0.00 2019-11-11 13:38:31 2019-11-11 13:38:40 t 1 1 164047 645 0.00 2019-11-11 13:38:27 2019-11-11 13:40:05 t 1 1 164050 375 0.00 2019-11-11 13:31:19 2019-11-11 13:43:04 t 1 1 164052 647 0.00 2019-11-11 13:35:40 2019-11-11 13:43:48 t 1 1 163754 422 0.00 2019-11-11 11:06:39 2019-11-11 11:07:41 t 1 1 163756 591 0.00 2019-11-11 11:01:37 2019-11-11 11:07:51 t 1 1 163768 647 0.00 2019-11-11 11:06:15 2019-11-11 11:15:15 t 1 1 163770 422 0.00 2019-11-11 11:15:28 2019-11-11 11:15:42 t 1 1 163775 422 0.00 2019-11-11 11:17:12 2019-11-11 11:18:30 t 1 1 163776 375 0.00 2019-11-11 11:12:55 2019-11-11 11:19:17 t 1 1 163780 637 0.00 2019-11-11 11:19:39 2019-11-11 11:20:51 t 1 1 163782 422 0.00 2019-11-11 11:20:52 2019-11-11 11:21:45 t 1 1 163786 375 0.00 2019-11-11 11:21:32 2019-11-11 11:24:07 t 1 1 163788 564 0.00 2019-11-11 09:50:08 2019-11-11 11:25:18 t 1 1 163791 514 0.00 2019-11-11 11:16:10 2019-11-11 11:27:45 t 1 1 163799 375 0.00 2019-11-11 11:29:49 2019-11-11 11:34:54 t 1 1 163808 562 0.00 2019-11-11 11:36:55 2019-11-11 11:38:38 t 1 1 163811 647 0.00 2019-11-11 11:16:54 2019-11-11 11:39:08 t 1 1 163814 585 0.00 2019-11-11 11:37:57 2019-11-11 11:41:31 t 1 1 163815 422 0.00 2019-11-11 11:38:47 2019-11-11 11:42:09 t 1 1 163817 623 0.00 2019-11-11 11:42:16 2019-11-11 11:43:21 t 1 1 163819 556 0.00 2019-11-11 11:12:27 2019-11-11 11:44:02 t 1 1 163822 591 0.00 2019-11-11 11:07:51 2019-11-11 11:45:42 t 1 1 163825 562 0.00 2019-11-11 11:45:02 2019-11-11 11:47:04 t 1 1 163827 422 0.00 2019-11-11 11:48:31 2019-11-11 11:49:04 t 1 1 163829 623 0.00 2019-11-11 11:47:08 2019-11-11 11:49:21 t 1 1 163831 564 0.00 2019-11-11 11:25:18 2019-11-11 11:51:03 t 1 1 163833 623 0.00 2019-11-11 11:50:58 2019-11-11 11:51:25 t 1 1 163843 647 0.00 2019-11-11 11:54:58 2019-11-11 11:59:50 t 1 1 163844 649 0.00 2019-11-11 11:46:10 2019-11-11 12:00:28 t 1 1 163849 623 0.00 2019-11-11 12:01:51 2019-11-11 12:02:33 t 1 1 163853 516 0.00 2019-11-11 12:04:24 2019-11-11 12:05:54 t 1 1 163855 645 0.00 2019-11-11 12:06:40 2019-11-11 12:06:46 t 1 1 163859 422 0.00 2019-11-11 12:08:29 2019-11-11 12:09:14 t 1 1 163862 516 0.00 2019-11-11 12:06:23 2019-11-11 12:09:38 t 1 1 163863 585 0.00 2019-11-11 12:05:19 2019-11-11 12:11:01 t 1 1 163864 637 0.00 2019-11-11 11:40:04 2019-11-11 12:12:09 t 1 1 163866 623 0.00 2019-11-11 12:12:13 2019-11-11 12:12:16 t 1 1 163871 623 0.00 2019-11-11 12:15:57 2019-11-11 12:16:24 t 1 1 163876 422 0.00 2019-11-11 12:19:20 2019-11-11 12:19:51 t 1 1 163877 619 0.00 2019-11-11 12:10:37 2019-11-11 12:20:02 t 1 1 163878 375 0.00 2019-11-11 12:17:04 2019-11-11 12:20:22 t 1 1 163880 611 0.00 2019-11-11 12:08:08 2019-11-11 12:21:21 t 1 1 163881 220 0.00 2019-11-11 12:13:12 2019-11-11 12:22:03 t 1 2 163883 619 0.00 2019-11-11 12:20:02 2019-11-11 12:23:03 t 1 1 163887 622 0.00 2019-11-11 12:17:41 2019-11-11 12:26:50 t 1 1 163888 422 0.00 2019-11-11 12:26:47 2019-11-11 12:27:38 t 1 1 163889 422 0.00 2019-11-11 12:27:44 2019-11-11 12:28:43 t 1 1 163890 375 0.00 2019-11-11 12:20:21 2019-11-11 12:29:40 t 1 1 163891 422 0.00 2019-11-11 12:29:42 2019-11-11 12:29:53 t 1 1 163894 220 0.00 2019-11-11 12:29:53 2019-11-11 12:30:26 t 1 1 163901 631 0.00 2019-11-11 12:32:45 2019-11-11 12:34:22 t 1 1 163903 591 0.00 2019-11-11 11:51:07 2019-11-11 12:34:31 t 1 1 163905 220 0.00 2019-11-11 12:34:46 2019-11-11 12:34:57 t 1 1 163907 545 0.00 2019-11-11 12:08:32 2019-11-11 12:35:46 t 1 1 163908 220 0.00 2019-11-11 12:34:56 2019-11-11 12:38:13 t 1 1 163914 220 0.00 2019-11-11 12:39:52 2019-11-11 12:40:03 t 1 1 163915 220 0.00 2019-11-11 12:40:03 2019-11-11 12:40:18 t 1 1 163920 578 0.00 2019-11-11 09:11:51 2019-11-11 12:43:27 t 1 1 163925 623 0.00 2019-11-11 12:45:54 2019-11-11 12:46:04 t 1 1 163926 422 0.00 2019-11-11 12:39:27 2019-11-11 12:46:45 t 1 1 163929 623 0.00 2019-11-11 12:46:22 2019-11-11 12:48:21 t 1 1 163931 562 0.00 2019-11-11 12:48:22 2019-11-11 12:49:41 t 1 1 163934 647 0.00 2019-11-11 12:11:36 2019-11-11 12:50:55 t 1 1 163936 623 0.00 2019-11-11 12:51:17 2019-11-11 12:51:44 t 1 1 163941 619 0.00 2019-11-11 12:49:35 2019-11-11 12:53:50 t 1 1 163944 220 0.00 2019-11-11 12:55:54 2019-11-11 12:56:05 t 1 1 163946 597 0.00 2019-11-11 12:54:47 2019-11-11 12:57:58 t 1 1 163948 623 0.00 2019-11-11 12:56:17 2019-11-11 12:58:33 t 1 1 163949 647 0.00 2019-11-11 12:53:18 2019-11-11 12:58:51 t 1 1 163953 623 0.00 2019-11-11 12:59:25 2019-11-11 12:59:52 t 1 1 163954 451 0.00 2019-11-11 12:52:12 2019-11-11 13:00:13 t 1 1 163955 623 0.00 2019-11-11 12:58:38 2019-11-11 13:00:21 t 1 1 163956 220 0.00 2019-11-11 12:56:05 2019-11-11 13:00:31 t 1 1 163959 422 0.00 2019-11-11 13:00:45 2019-11-11 13:00:53 t 1 1 163963 220 0.00 2019-11-11 13:01:29 2019-11-11 13:02:43 t 1 1 163968 647 0.00 2019-11-11 12:59:05 2019-11-11 13:05:39 t 1 1 163970 220 0.00 2019-11-11 13:06:05 2019-11-11 13:06:39 t 1 1 163984 545 0.00 2019-11-11 13:03:43 2019-11-11 13:12:39 t 1 1 163985 623 0.00 2019-11-11 13:06:58 2019-11-11 13:13:58 t 1 1 163991 220 0.00 2019-11-11 13:03:48 2019-11-11 13:15:44 t 1 1 163996 623 0.00 2019-11-11 13:15:53 2019-11-11 13:16:45 t 1 1 163999 220 0.00 2019-11-11 13:16:43 2019-11-11 13:17:43 t 1 1 164002 220 0.00 2019-11-11 13:17:42 2019-11-11 13:18:13 t 1 1 164004 220 0.00 2019-11-11 13:18:12 2019-11-11 13:19:23 t 1 1 164007 220 0.00 2019-11-11 13:20:47 2019-11-11 13:21:03 t 1 1 164009 564 0.00 2019-11-11 13:08:32 2019-11-11 13:21:15 t 1 1 164010 581 0.00 2019-11-11 13:13:31 2019-11-11 13:21:31 t 1 1 164016 623 0.00 2019-11-11 13:21:05 2019-11-11 13:23:21 t 1 1 164018 481 0.00 2019-11-11 11:37:18 2019-11-11 13:24:38 t 1 1 164019 566 0.00 2019-11-11 13:16:35 2019-11-11 13:25:07 t 1 1 164020 422 0.00 2019-11-11 13:23:52 2019-11-11 13:26:15 t 1 1 164025 622 0.00 2019-11-11 12:26:50 2019-11-11 13:29:22 t 1 1 164028 481 0.00 2019-11-11 13:26:01 2019-11-11 13:31:50 t 1 1 164031 564 0.00 2019-11-11 13:21:18 2019-11-11 13:33:06 t 1 1 164033 566 0.00 2019-11-11 13:25:07 2019-11-11 13:33:32 t 1 1 164034 647 0.00 2019-11-11 13:24:23 2019-11-11 13:33:34 t 1 1 164044 551 0.00 2019-11-11 13:28:39 2019-11-11 13:38:10 t 1 1 164048 430 0.00 2019-11-11 13:36:05 2019-11-11 13:41:31 t 1 1 164049 422 0.00 2019-11-11 13:39:27 2019-11-11 13:43:03 t 1 1 164051 220 0.00 2019-11-11 13:43:08 2019-11-11 13:43:22 t 1 1 164055 562 0.00 2019-11-11 13:45:40 2019-11-11 13:46:04 t 1 1 164057 551 0.00 2019-11-11 13:38:10 2019-11-11 13:46:24 t 1 1 164058 623 0.00 2019-11-11 13:36:21 2019-11-11 13:46:33 t 1 1 164062 220 0.00 2019-11-11 13:46:53 2019-11-11 13:47:10 t 1 2 164063 623 0.00 2019-11-11 13:47:53 2019-11-11 13:47:53 f 1 1 164066 422 0.00 2019-11-11 13:48:58 2019-11-11 13:49:20 t 1 1 164070 375 0.00 2019-11-11 13:43:01 2019-11-11 13:50:36 t 1 1 164075 375 0.00 2019-11-11 13:51:19 2019-11-11 13:53:37 t 1 1 164076 220 0.00 2019-11-11 13:53:38 2019-11-11 13:53:53 t 1 1 164078 430 0.00 2019-11-11 13:46:57 2019-11-11 13:54:21 t 1 1 163755 220 0.00 2019-11-11 10:49:22 2019-11-11 11:07:50 t 1 1 163757 422 0.00 2019-11-11 11:07:47 2019-11-11 11:07:51 t 1 1 163758 375 0.00 2019-11-11 11:05:51 2019-11-11 11:08:08 t 1 1 163762 514 0.00 2019-11-11 10:55:10 2019-11-11 11:12:20 t 1 1 163763 556 0.00 2019-11-11 09:16:49 2019-11-11 11:12:27 t 1 1 163766 623 0.00 2019-11-11 11:11:34 2019-11-11 11:13:46 t 1 1 163767 422 0.00 2019-11-11 11:12:30 2019-11-11 11:14:39 t 1 1 163772 637 0.00 2019-11-11 10:42:29 2019-11-11 11:16:27 t 1 1 163773 623 0.00 2019-11-11 11:14:28 2019-11-11 11:16:59 t 1 1 163777 422 0.00 2019-11-11 11:19:01 2019-11-11 11:19:38 t 1 1 163779 623 0.00 2019-11-11 11:20:41 2019-11-11 11:20:50 t 1 1 163781 375 0.00 2019-11-11 11:19:19 2019-11-11 11:21:33 t 1 1 163784 623 0.00 2019-11-11 11:22:03 2019-11-11 11:22:15 t 1 1 163785 623 0.00 2019-11-11 11:22:36 2019-11-11 11:22:43 t 1 1 163790 375 0.00 2019-11-11 11:25:17 2019-11-11 11:26:46 t 1 1 163792 422 0.00 2019-11-11 11:25:33 2019-11-11 11:28:13 t 1 1 163796 623 0.00 2019-11-11 11:25:42 2019-11-11 11:31:16 t 1 1 163797 516 0.00 2019-11-11 11:27:45 2019-11-11 11:32:51 t 1 1 163798 562 0.00 2019-11-11 11:29:19 2019-11-11 11:34:48 t 1 1 163801 623 0.00 2019-11-11 11:35:56 2019-11-11 11:36:03 t 1 1 163804 481 0.00 2019-11-11 10:31:30 2019-11-11 11:37:18 t 1 1 163806 637 0.00 2019-11-11 11:21:05 2019-11-11 11:37:24 t 1 1 163807 623 0.00 2019-11-11 11:36:08 2019-11-11 11:38:21 t 1 1 163812 625 0.00 2019-11-11 11:17:07 2019-11-11 11:40:54 t 1 1 163816 585 0.00 2019-11-11 11:41:30 2019-11-11 11:43:05 t 1 1 163820 375 0.00 2019-11-11 11:36:04 2019-11-11 11:44:16 t 1 1 163826 623 0.00 2019-11-11 11:45:53 2019-11-11 11:47:21 t 1 1 163834 562 0.00 2019-11-11 11:50:29 2019-11-11 11:52:21 t 1 1 163835 647 0.00 2019-11-11 11:46:30 2019-11-11 11:53:15 t 1 1 163837 422 0.00 2019-11-11 11:52:51 2019-11-11 11:54:16 t 1 1 163838 422 0.00 2019-11-11 11:54:24 2019-11-11 11:55:40 t 1 1 163840 625 0.00 2019-11-11 11:42:30 2019-11-11 11:57:37 t 1 1 163841 422 0.00 2019-11-11 11:58:12 2019-11-11 11:58:20 t 1 1 163845 585 0.00 2019-11-11 11:56:50 2019-11-11 12:00:48 t 1 1 163846 623 0.00 2019-11-11 11:59:47 2019-11-11 12:00:57 t 1 1 163848 623 0.00 2019-11-11 12:00:57 2019-11-11 12:01:35 t 1 1 163851 516 0.00 2019-11-11 12:00:36 2019-11-11 12:04:24 t 1 1 163854 623 0.00 2019-11-11 12:04:31 2019-11-11 12:05:58 t 1 1 163857 647 0.00 2019-11-11 12:01:48 2019-11-11 12:07:50 t 1 1 163861 538 0.00 2019-11-11 12:06:52 2019-11-11 12:09:25 t 1 1 163868 623 0.00 2019-11-11 12:12:32 2019-11-11 12:14:21 t 1 1 163870 562 0.00 2019-11-11 12:10:27 2019-11-11 12:15:55 t 1 1 163873 623 0.00 2019-11-11 12:16:31 2019-11-11 12:18:17 t 1 1 163882 562 0.00 2019-11-11 12:16:08 2019-11-11 12:22:59 t 1 1 163885 538 0.00 2019-11-11 12:23:37 2019-11-11 12:25:57 t 1 1 163892 220 0.00 2019-11-11 12:21:31 2019-11-11 12:29:53 t 1 1 163893 430 0.00 2019-11-11 12:28:29 2019-11-11 12:30:03 t 1 1 163898 574 0.00 2019-11-11 12:27:51 2019-11-11 12:31:56 t 1 1 163899 623 0.00 2019-11-11 12:33:10 2019-11-11 12:33:13 t 1 1 163902 220 0.00 2019-11-11 12:32:17 2019-11-11 12:34:29 t 1 1 163904 220 0.00 2019-11-11 12:34:28 2019-11-11 12:34:46 t 1 1 163909 220 0.00 2019-11-11 12:38:12 2019-11-11 12:38:23 t 1 1 163910 422 0.00 2019-11-11 12:39:04 2019-11-11 12:39:19 t 1 1 163916 220 0.00 2019-11-11 12:40:17 2019-11-11 12:40:28 t 1 1 163918 562 0.00 2019-11-11 12:42:06 2019-11-11 12:42:45 t 1 1 163921 623 0.00 2019-11-11 12:38:01 2019-11-11 12:43:29 t 1 1 163923 623 0.00 2019-11-11 12:44:56 2019-11-11 12:45:05 t 1 1 163924 220 0.00 2019-11-11 12:40:27 2019-11-11 12:46:00 t 1 1 163927 512 0.00 2019-11-11 12:23:09 2019-11-11 12:47:21 t 1 1 163930 564 0.00 2019-11-11 11:51:03 2019-11-11 12:49:40 t 1 1 163933 375 0.00 2019-11-11 12:43:26 2019-11-11 12:50:03 t 1 1 163937 220 0.00 2019-11-11 12:46:39 2019-11-11 12:52:24 t 1 1 163939 220 0.00 2019-11-11 12:52:23 2019-11-11 12:53:06 t 1 1 163940 375 0.00 2019-11-11 12:51:46 2019-11-11 12:53:22 t 1 1 163943 220 0.00 2019-11-11 12:55:11 2019-11-11 12:55:55 t 1 1 163947 591 0.00 2019-11-11 12:40:39 2019-11-11 12:58:26 t 1 1 163950 623 0.00 2019-11-11 12:58:50 2019-11-11 12:59:04 t 1 1 163951 623 0.00 2019-11-11 12:59:12 2019-11-11 12:59:13 t 1 1 163952 562 0.00 2019-11-11 12:59:28 2019-11-11 12:59:38 t 1 1 163960 516 0.00 2019-11-11 12:58:13 2019-11-11 13:01:24 t 1 1 163962 220 0.00 2019-11-11 13:00:41 2019-11-11 13:01:57 t 1 1 163964 619 0.00 2019-11-11 12:56:47 2019-11-11 13:03:01 t 1 1 163966 562 0.00 2019-11-11 13:02:38 2019-11-11 13:04:21 t 1 1 163967 220 0.00 2019-11-11 13:02:42 2019-11-11 13:04:58 t 1 1 163971 619 0.00 2019-11-11 13:03:01 2019-11-11 13:06:45 t 1 1 163974 220 0.00 2019-11-11 12:40:15 2019-11-11 13:07:38 t 1 2 163977 375 0.00 2019-11-11 12:53:21 2019-11-11 13:08:20 t 1 1 163979 220 0.00 2019-11-11 13:08:18 2019-11-11 13:08:33 t 1 1 163980 635 0.00 2019-11-11 12:47:34 2019-11-11 13:09:15 t 1 1 163981 562 0.00 2019-11-11 13:10:00 2019-11-11 13:10:32 t 1 1 163982 422 0.00 2019-11-11 13:11:09 2019-11-11 13:11:26 t 1 1 163987 514 0.00 2019-11-11 12:13:02 2019-11-11 13:14:10 t 1 1 163988 220 0.00 2019-11-11 13:09:22 2019-11-11 13:14:32 t 1 1 163989 451 0.00 2019-11-11 13:00:13 2019-11-11 13:15:07 t 1 1 163994 566 0.00 2019-11-11 13:06:42 2019-11-11 13:16:35 t 1 1 163995 220 0.00 2019-11-11 13:16:24 2019-11-11 13:16:43 t 1 1 163998 514 0.00 2019-11-11 13:14:10 2019-11-11 13:16:49 t 1 1 164000 645 0.00 2019-11-11 13:17:45 2019-11-11 13:17:54 t 1 1 164003 647 0.00 2019-11-11 13:13:39 2019-11-11 13:18:59 t 1 1 164008 562 0.00 2019-11-11 13:20:34 2019-11-11 13:21:07 t 1 1 164012 647 0.00 2019-11-11 13:19:28 2019-11-11 13:21:51 t 1 1 164015 623 0.00 2019-11-11 13:21:19 2019-11-11 13:23:21 t 1 1 164021 451 0.00 2019-11-11 13:15:07 2019-11-11 13:26:27 t 1 1 164023 623 0.00 2019-11-11 13:26:04 2019-11-11 13:26:36 t 1 1 164024 623 0.00 2019-11-11 13:26:43 2019-11-11 13:27:13 t 1 1 164027 375 0.00 2019-11-11 13:15:57 2019-11-11 13:31:19 t 1 1 164030 220 0.00 2019-11-11 13:14:32 2019-11-11 13:33:05 t 1 1 164032 597 0.00 2019-11-11 13:29:08 2019-11-11 13:33:21 t 1 1 164035 623 0.00 2019-11-11 13:27:51 2019-11-11 13:33:55 t 1 1 164036 422 0.00 2019-11-11 13:34:30 2019-11-11 13:34:47 t 1 1 164039 562 0.00 2019-11-11 13:34:56 2019-11-11 13:35:22 t 1 1 164046 591 0.00 2019-11-11 13:35:42 2019-11-11 13:38:55 t 1 1 164054 220 0.00 2019-11-11 13:45:14 2019-11-11 13:46:01 t 1 1 164056 220 0.00 2019-11-11 13:46:00 2019-11-11 13:46:12 t 1 1 164065 551 0.00 2019-11-11 13:46:24 2019-11-11 13:48:57 t 1 1 164068 623 0.00 2019-11-11 13:46:57 2019-11-11 13:49:21 t 1 1 164069 591 0.00 2019-11-11 13:48:38 2019-11-11 13:50:03 t 1 1 164053 220 0.00 2019-11-11 13:25:12 2019-11-11 13:45:14 t 1 1 164059 623 0.00 2019-11-11 13:46:33 2019-11-11 13:46:43 t 1 1 164060 430 0.00 2019-11-11 13:41:31 2019-11-11 13:46:57 t 1 1 164061 566 0.00 2019-11-11 13:33:32 2019-11-11 13:47:03 t 1 1 164064 623 0.00 2019-11-11 13:48:39 2019-11-11 13:48:39 f 1 1 164067 623 0.00 2019-11-11 13:47:46 2019-11-11 13:49:21 t 1 1 164071 551 0.00 2019-11-11 13:48:57 2019-11-11 13:50:57 t 1 1 164072 562 0.00 2019-11-11 13:52:43 2019-11-11 13:52:53 t 1 1 164081 220 0.00 2019-11-11 13:58:45 2019-11-11 13:59:35 t 1 2 164082 422 0.00 2019-11-11 13:59:38 2019-11-11 13:59:55 t 1 1 164083 551 0.00 2019-11-11 13:50:57 2019-11-11 14:00:28 t 1 1 164085 508 0.00 2019-11-11 13:41:47 2019-11-11 14:01:53 t 1 2 164088 581 0.00 2019-11-11 13:53:09 2019-11-11 14:02:58 t 1 1 164092 220 0.00 2019-11-11 14:04:07 2019-11-11 14:04:21 t 1 1 164100 220 0.00 2019-11-11 13:46:11 2019-11-11 14:08:33 t 1 1 164102 585 0.00 2019-11-11 14:00:50 2019-11-11 14:09:49 t 1 1 164104 647 0.00 2019-11-11 14:03:16 2019-11-11 14:11:52 t 1 1 164111 220 0.00 2019-11-11 14:14:37 2019-11-11 14:14:52 t 1 1 164112 430 0.00 2019-11-11 14:12:15 2019-11-11 14:16:37 t 1 1 164113 220 0.00 2019-11-11 14:15:09 2019-11-11 14:16:45 t 1 1 164120 422 0.00 2019-11-11 14:13:00 2019-11-11 14:18:16 t 1 1 164123 551 0.00 2019-11-11 14:13:14 2019-11-11 14:19:29 t 1 1 164124 430 0.00 2019-11-11 14:17:36 2019-11-11 14:19:47 t 1 1 164128 566 0.00 2019-11-11 14:12:31 2019-11-11 14:21:31 t 1 1 164132 591 0.00 2019-11-11 13:57:45 2019-11-11 14:23:01 t 1 1 164133 481 0.00 2019-11-11 14:06:26 2019-11-11 14:25:42 t 1 1 164135 551 0.00 2019-11-11 14:19:29 2019-11-11 14:26:14 t 1 1 164136 220 0.00 2019-11-11 14:17:21 2019-11-11 14:27:46 t 1 1 164137 220 0.00 2019-11-11 14:27:46 2019-11-11 14:28:01 t 1 1 164141 422 0.00 2019-11-11 14:30:04 2019-11-11 14:30:35 t 1 1 164149 562 0.00 2019-11-11 14:32:06 2019-11-11 14:33:29 t 1 1 164150 422 0.00 2019-11-11 14:30:48 2019-11-11 14:34:25 t 1 1 164153 220 0.00 2019-11-11 14:33:00 2019-11-11 14:34:53 t 1 1 164156 422 0.00 2019-11-11 14:36:12 2019-11-11 14:36:24 t 1 1 164162 564 0.00 2019-11-11 14:03:31 2019-11-11 14:39:36 t 1 1 164165 623 0.00 2019-11-11 14:40:28 2019-11-11 14:42:10 t 1 1 164166 623 0.00 2019-11-11 14:45:38 2019-11-11 14:45:41 t 1 1 164167 585 0.00 2019-11-11 14:27:30 2019-11-11 14:48:08 t 1 1 164170 481 0.00 2019-11-11 14:25:42 2019-11-11 14:48:40 t 1 1 164172 562 0.00 2019-11-11 14:44:11 2019-11-11 14:48:59 t 1 1 164174 591 0.00 2019-11-11 14:49:43 2019-11-11 14:50:27 t 1 1 164178 220 0.00 2019-11-11 14:08:49 2019-11-11 14:53:51 t 1 1 164182 623 0.00 2019-11-11 14:55:45 2019-11-11 14:56:22 t 1 1 164184 562 0.00 2019-11-11 14:57:28 2019-11-11 14:58:13 t 1 1 164187 220 0.00 2019-11-11 14:38:32 2019-11-11 14:59:46 t 1 1 164191 562 0.00 2019-11-11 15:02:11 2019-11-11 15:02:46 t 1 1 164195 422 0.00 2019-11-11 15:03:26 2019-11-11 15:05:22 t 1 1 164197 220 0.00 2019-11-11 15:03:24 2019-11-11 15:05:52 t 1 1 164198 220 0.00 2019-11-11 15:05:52 2019-11-11 15:06:24 t 1 1 164200 220 0.00 2019-11-11 15:06:55 2019-11-11 15:07:29 t 1 1 164208 220 0.00 2019-11-11 15:10:18 2019-11-11 15:11:24 t 1 1 164212 623 0.00 2019-11-11 15:12:49 2019-11-11 15:13:12 t 1 1 164214 562 0.00 2019-11-11 15:13:09 2019-11-11 15:13:36 t 1 1 164218 623 0.00 2019-11-11 15:14:34 2019-11-11 15:14:43 t 1 1 164221 570 0.00 2019-11-11 15:14:52 2019-11-11 15:15:26 t 1 1 164224 220 0.00 2019-11-11 15:00:17 2019-11-11 15:16:37 t 1 2 164226 570 0.00 2019-11-11 15:16:13 2019-11-11 15:18:51 t 1 1 164229 623 0.00 2019-11-11 15:20:24 2019-11-11 15:20:47 t 1 1 164230 512 0.00 2019-11-11 14:58:55 2019-11-11 15:21:29 t 1 1 164231 622 0.00 2019-11-11 15:19:27 2019-11-11 15:22:53 t 1 1 164233 597 0.00 2019-11-11 15:15:15 2019-11-11 15:23:02 t 1 1 164238 637 0.00 2019-11-11 14:59:49 2019-11-11 15:24:46 t 1 1 164243 585 0.00 2019-11-11 15:25:09 2019-11-11 15:26:47 t 1 1 164245 585 0.00 2019-11-11 15:26:46 2019-11-11 15:28:32 t 1 1 164248 512 0.00 2019-11-11 15:21:48 2019-11-11 15:36:47 t 1 1 164249 585 0.00 2019-11-11 15:32:39 2019-11-11 15:38:30 t 1 1 164250 585 0.00 2019-11-11 15:38:30 2019-11-11 15:41:56 t 1 1 164253 551 0.00 2019-11-11 14:26:14 2019-11-11 15:44:53 t 1 1 164258 562 0.00 2019-11-11 15:49:44 2019-11-11 15:50:10 t 1 1 164260 551 0.00 2019-11-11 15:44:53 2019-11-11 15:50:38 t 1 1 164263 562 0.00 2019-11-11 15:55:35 2019-11-11 15:55:45 t 1 1 164265 551 0.00 2019-11-11 15:50:38 2019-11-11 15:57:09 t 1 1 164266 585 0.00 2019-11-11 15:50:40 2019-11-11 16:00:21 t 1 1 164267 375 0.00 2019-11-11 14:31:30 2019-11-11 16:04:01 t 1 1 164270 585 0.00 2019-11-11 16:04:38 2019-11-11 16:05:52 t 1 1 164274 375 0.00 2019-11-11 16:06:29 2019-11-11 16:07:53 t 1 1 164280 562 0.00 2019-11-11 16:13:30 2019-11-11 16:13:44 t 1 1 164283 551 0.00 2019-11-11 16:07:40 2019-11-11 16:15:00 t 1 1 164285 422 0.00 2019-11-11 16:12:09 2019-11-11 16:15:24 t 1 1 164288 375 0.00 2019-11-11 16:08:04 2019-11-11 16:20:08 t 1 1 164291 551 0.00 2019-11-11 16:15:00 2019-11-11 16:21:30 t 1 1 164293 430 0.00 2019-11-11 16:19:08 2019-11-11 16:21:43 t 1 1 164302 422 0.00 2019-11-11 16:31:45 2019-11-11 16:32:04 t 1 1 164309 556 0.00 2019-11-11 11:44:21 2019-11-11 16:38:29 t 1 1 164313 456 0.00 2019-11-11 16:25:38 2019-11-11 16:39:39 t 1 1 164314 375 0.00 2019-11-11 16:39:00 2019-11-11 16:40:54 t 1 1 164315 619 0.00 2019-11-11 16:34:45 2019-11-11 16:41:24 t 1 1 164316 615 0.00 2019-11-11 16:37:50 2019-11-11 16:42:03 t 1 1 164327 562 0.00 2019-11-11 16:48:32 2019-11-11 16:48:41 t 1 1 164329 375 0.00 2019-11-11 16:45:46 2019-11-11 16:49:35 t 1 1 164331 220 0.00 2019-11-11 16:49:12 2019-11-11 16:50:54 t 1 1 164332 587 0.00 2019-11-11 16:48:02 2019-11-11 16:52:28 t 1 1 164337 623 0.00 2019-11-11 16:54:13 2019-11-11 16:54:15 t 1 1 164341 625 0.00 2019-11-11 16:54:47 2019-11-11 16:55:31 t 1 1 164351 562 0.00 2019-11-11 16:59:10 2019-11-11 16:59:18 t 1 1 164359 449 0.00 2019-11-11 16:59:14 2019-11-11 17:07:36 t 1 1 164360 528 0.00 2019-11-11 16:36:09 2019-11-11 17:07:58 t 1 1 164365 645 0.00 2019-11-11 17:01:18 2019-11-11 17:10:11 t 1 1 164368 570 0.00 2019-11-11 16:39:39 2019-11-11 17:11:01 t 1 1 164370 430 0.00 2019-11-11 17:11:18 2019-11-11 17:11:21 t 1 1 164371 430 0.00 2019-11-11 17:11:44 2019-11-11 17:11:56 t 1 1 164373 623 0.00 2019-11-11 17:08:16 2019-11-11 17:13:04 t 1 1 164377 585 0.00 2019-11-11 16:59:26 2019-11-11 17:14:41 t 1 1 164380 562 0.00 2019-11-11 17:13:45 2019-11-11 17:15:22 t 1 1 164384 611 0.00 2019-11-11 17:15:58 2019-11-11 17:16:36 t 1 1 164386 430 0.00 2019-11-11 17:17:17 2019-11-11 17:17:41 t 1 1 164389 623 0.00 2019-11-11 17:13:04 2019-11-11 17:19:01 t 1 1 164073 647 0.00 2019-11-11 13:45:03 2019-11-11 13:52:53 t 1 1 164074 566 0.00 2019-11-11 13:47:03 2019-11-11 13:53:09 t 1 1 164077 562 0.00 2019-11-11 13:53:00 2019-11-11 13:54:07 t 1 1 164079 562 0.00 2019-11-11 13:56:31 2019-11-11 13:56:40 t 1 1 164080 422 0.00 2019-11-11 13:56:36 2019-11-11 13:58:54 t 1 1 164084 430 0.00 2019-11-11 13:54:21 2019-11-11 14:01:37 t 1 1 164087 647 0.00 2019-11-11 13:53:15 2019-11-11 14:02:40 t 1 1 164089 564 0.00 2019-11-11 13:33:12 2019-11-11 14:03:32 t 1 1 164095 551 0.00 2019-11-11 14:00:28 2019-11-11 14:06:57 t 1 1 164096 562 0.00 2019-11-11 14:07:00 2019-11-11 14:07:20 t 1 1 164098 622 0.00 2019-11-11 14:04:51 2019-11-11 14:08:13 t 1 1 164103 422 0.00 2019-11-11 14:10:16 2019-11-11 14:10:31 t 1 1 164106 566 0.00 2019-11-11 14:02:04 2019-11-11 14:12:31 t 1 1 164107 551 0.00 2019-11-11 14:06:57 2019-11-11 14:13:14 t 1 1 164108 375 0.00 2019-11-11 13:53:40 2019-11-11 14:13:16 t 1 1 164109 220 0.00 2019-11-11 14:08:51 2019-11-11 14:14:37 t 1 1 164114 430 0.00 2019-11-11 14:16:45 2019-11-11 14:16:53 t 1 1 164118 430 0.00 2019-11-11 14:17:32 2019-11-11 14:17:33 t 1 1 164130 422 0.00 2019-11-11 14:19:33 2019-11-11 14:22:02 t 1 1 164131 562 0.00 2019-11-11 14:22:22 2019-11-11 14:22:27 t 1 1 164139 422 0.00 2019-11-11 14:29:02 2019-11-11 14:29:31 t 1 1 164142 631 0.00 2019-11-11 14:29:25 2019-11-11 14:30:38 t 1 1 164144 220 0.00 2019-11-11 14:28:50 2019-11-11 14:31:13 t 1 1 164152 490 0.00 2019-11-11 14:33:58 2019-11-11 14:34:48 t 1 1 164155 422 0.00 2019-11-11 14:34:34 2019-11-11 14:36:03 t 1 1 164157 623 0.00 2019-11-11 14:35:29 2019-11-11 14:36:35 t 1 1 164158 591 0.00 2019-11-11 14:23:04 2019-11-11 14:38:16 t 1 1 164163 566 0.00 2019-11-11 14:30:42 2019-11-11 14:39:55 t 1 1 164168 623 0.00 2019-11-11 14:47:50 2019-11-11 14:48:13 t 1 1 164171 622 0.00 2019-11-11 14:45:05 2019-11-11 14:48:52 t 1 1 164175 566 0.00 2019-11-11 14:39:55 2019-11-11 14:52:05 t 1 1 164180 562 0.00 2019-11-11 14:55:19 2019-11-11 14:55:27 t 1 1 164181 516 0.00 2019-11-11 14:42:28 2019-11-11 14:55:55 t 1 1 164185 528 0.00 2019-11-11 14:55:54 2019-11-11 14:58:36 t 1 1 164186 637 0.00 2019-11-11 14:53:27 2019-11-11 14:59:46 t 1 1 164189 619 0.00 2019-11-11 14:45:41 2019-11-11 15:00:37 t 1 1 164190 623 0.00 2019-11-11 15:00:49 2019-11-11 15:01:13 t 1 1 164193 422 0.00 2019-11-11 15:01:53 2019-11-11 15:03:17 t 1 1 164194 220 0.00 2019-11-11 15:02:51 2019-11-11 15:03:28 t 1 1 164196 623 0.00 2019-11-11 15:05:16 2019-11-11 15:05:25 t 1 1 164201 220 0.00 2019-11-11 15:07:29 2019-11-11 15:08:02 t 1 1 164203 220 0.00 2019-11-11 15:08:02 2019-11-11 15:08:35 t 1 1 164204 220 0.00 2019-11-11 15:08:35 2019-11-11 15:09:10 t 1 1 164206 220 0.00 2019-11-11 15:09:09 2019-11-11 15:09:44 t 1 1 164209 481 0.00 2019-11-11 14:48:40 2019-11-11 15:11:43 t 1 1 164220 623 0.00 2019-11-11 15:15:17 2019-11-11 15:15:22 t 1 1 164222 570 0.00 2019-11-11 15:15:25 2019-11-11 15:15:29 t 1 1 164223 647 0.00 2019-11-11 15:14:33 2019-11-11 15:16:04 t 1 1 164227 570 0.00 2019-11-11 15:15:33 2019-11-11 15:18:56 t 1 1 164228 528 0.00 2019-11-11 15:01:56 2019-11-11 15:18:58 t 1 1 164236 585 0.00 2019-11-11 15:20:58 2019-11-11 15:23:58 t 1 1 164242 570 0.00 2019-11-11 15:18:56 2019-11-11 15:26:03 t 1 1 164246 623 0.00 2019-11-11 15:28:22 2019-11-11 15:28:42 t 1 1 164252 570 0.00 2019-11-11 15:32:57 2019-11-11 15:44:32 t 1 1 164254 422 0.00 2019-11-11 15:30:54 2019-11-11 15:45:11 t 1 1 164259 623 0.00 2019-11-11 15:29:25 2019-11-11 15:50:32 t 1 1 164262 516 0.00 2019-11-11 15:47:08 2019-11-11 15:50:55 t 1 1 164268 551 0.00 2019-11-11 15:57:09 2019-11-11 16:04:25 t 1 1 164271 375 0.00 2019-11-11 16:04:26 2019-11-11 16:06:29 t 1 1 164273 551 0.00 2019-11-11 16:04:25 2019-11-11 16:07:40 t 1 1 164275 422 0.00 2019-11-11 15:45:11 2019-11-11 16:07:55 t 1 1 164276 503 0.00 2019-11-11 16:05:14 2019-11-11 16:08:11 t 1 1 164277 623 0.00 2019-11-11 15:50:32 2019-11-11 16:10:52 t 1 1 164278 503 0.00 2019-11-11 16:08:19 2019-11-11 16:11:11 t 1 1 164279 379 0.00 2019-11-11 16:09:51 2019-11-11 16:11:52 t 1 1 164281 562 0.00 2019-11-11 16:14:28 2019-11-11 16:14:33 t 1 1 164286 422 0.00 2019-11-11 16:17:30 2019-11-11 16:18:28 t 1 1 164294 637 0.00 2019-11-11 16:22:13 2019-11-11 16:23:14 t 1 1 164296 551 0.00 2019-11-11 16:21:30 2019-11-11 16:27:15 t 1 1 164297 554 0.00 2019-11-11 16:27:47 2019-11-11 16:27:47 f 1 1 164300 554 0.00 2019-11-11 16:28:20 2019-11-11 16:28:20 f 1 1 164305 528 0.00 2019-11-11 15:56:35 2019-11-11 16:36:09 t 1 1 164306 375 0.00 2019-11-11 16:35:47 2019-11-11 16:36:52 t 1 1 164312 503 0.00 2019-11-11 16:14:49 2019-11-11 16:39:26 t 1 1 164319 622 0.00 2019-11-11 15:25:33 2019-11-11 16:44:21 t 1 1 164321 375 0.00 2019-11-11 16:40:54 2019-11-11 16:45:46 t 1 1 164322 556 0.00 2019-11-11 16:38:31 2019-11-11 16:46:55 t 1 1 164323 554 0.00 2019-11-11 16:47:23 2019-11-11 16:47:23 f 1 1 164326 623 0.00 2019-11-11 16:39:25 2019-11-11 16:48:27 t 1 1 164330 554 0.00 2019-11-11 16:50:29 2019-11-11 16:50:29 f 1 1 164333 623 0.00 2019-11-11 16:48:55 2019-11-11 16:53:30 t 1 1 164335 645 0.00 2019-11-11 16:52:46 2019-11-11 16:53:49 t 1 1 164339 623 0.00 2019-11-11 16:54:27 2019-11-11 16:54:29 t 1 1 164342 422 0.00 2019-11-11 16:55:13 2019-11-11 16:55:42 t 1 1 164344 538 0.00 2019-11-11 15:27:56 2019-11-11 16:56:40 t 1 1 164345 619 0.00 2019-11-11 16:56:01 2019-11-11 16:58:06 t 1 1 164348 623 0.00 2019-11-11 16:58:31 2019-11-11 16:58:38 t 1 1 164350 587 0.00 2019-11-11 16:54:03 2019-11-11 16:58:49 t 1 1 164352 585 0.00 2019-11-11 16:33:38 2019-11-11 16:59:26 t 1 1 164354 622 0.00 2019-11-11 16:58:47 2019-11-11 17:00:16 t 1 1 164355 637 0.00 2019-11-11 17:00:02 2019-11-11 17:01:20 t 1 1 164357 422 0.00 2019-11-11 17:02:49 2019-11-11 17:03:01 t 1 1 164358 451 0.00 2019-11-11 16:58:35 2019-11-11 17:07:25 t 1 1 164361 623 0.00 2019-11-11 17:04:27 2019-11-11 17:08:16 t 1 1 164362 562 0.00 2019-11-11 17:07:39 2019-11-11 17:09:15 t 1 1 164366 430 0.00 2019-11-11 17:09:48 2019-11-11 17:10:40 t 1 1 164369 430 0.00 2019-11-11 17:10:49 2019-11-11 17:11:11 t 1 1 164375 422 0.00 2019-11-11 17:13:17 2019-11-11 17:13:58 t 1 1 164379 562 0.00 2019-11-11 17:14:58 2019-11-11 17:15:15 t 1 1 164383 422 0.00 2019-11-11 17:16:19 2019-11-11 17:16:30 t 1 1 164387 611 0.00 2019-11-11 17:16:36 2019-11-11 17:17:49 t 1 1 164388 625 0.00 2019-11-11 17:15:01 2019-11-11 17:18:26 t 1 1 164392 611 0.00 2019-11-11 17:19:41 2019-11-11 17:20:28 t 1 1 164396 375 0.00 2019-11-11 17:02:53 2019-11-11 17:22:26 t 1 1 164398 451 0.00 2019-11-11 17:10:45 2019-11-11 17:23:07 t 1 1 164401 422 0.00 2019-11-11 17:23:52 2019-11-11 17:24:22 t 1 1 164403 430 0.00 2019-11-11 17:21:02 2019-11-11 17:26:30 t 1 1 164086 566 0.00 2019-11-11 13:53:09 2019-11-11 14:02:04 t 1 1 164090 516 0.00 2019-11-11 13:58:34 2019-11-11 14:03:37 t 1 1 164091 220 0.00 2019-11-11 14:03:19 2019-11-11 14:04:07 t 1 1 164093 622 0.00 2019-11-11 13:29:22 2019-11-11 14:04:51 t 1 1 164094 481 0.00 2019-11-11 13:32:22 2019-11-11 14:06:27 t 1 1 164097 220 0.00 2019-11-11 13:59:41 2019-11-11 14:07:40 t 1 2 164099 220 0.00 2019-11-11 14:04:41 2019-11-11 14:08:19 t 1 1 164101 220 0.00 2019-11-11 14:08:45 2019-11-11 14:08:46 t 1 1 164105 430 0.00 2019-11-11 14:01:37 2019-11-11 14:12:14 t 1 1 164110 597 0.00 2019-11-11 14:12:35 2019-11-11 14:14:42 t 1 1 164115 220 0.00 2019-11-11 14:16:45 2019-11-11 14:16:53 t 1 1 164116 220 0.00 2019-11-11 14:17:01 2019-11-11 14:17:09 t 1 1 164117 220 0.00 2019-11-11 14:17:17 2019-11-11 14:17:22 t 1 1 164119 562 0.00 2019-11-11 14:17:36 2019-11-11 14:18:05 t 1 1 164121 379 0.00 2019-11-11 14:16:26 2019-11-11 14:18:43 t 1 1 164122 422 0.00 2019-11-11 14:18:40 2019-11-11 14:19:19 t 1 1 164125 512 0.00 2019-11-11 13:54:55 2019-11-11 14:19:55 t 1 1 164126 647 0.00 2019-11-11 14:12:49 2019-11-11 14:20:06 t 1 1 164127 379 0.00 2019-11-11 14:18:43 2019-11-11 14:21:18 t 1 1 164129 512 0.00 2019-11-11 14:19:54 2019-11-11 14:21:38 t 1 1 164134 422 0.00 2019-11-11 14:22:14 2019-11-11 14:26:04 t 1 1 164138 562 0.00 2019-11-11 14:28:23 2019-11-11 14:28:39 t 1 1 164140 645 0.00 2019-11-11 14:26:36 2019-11-11 14:29:44 t 1 1 164143 566 0.00 2019-11-11 14:21:31 2019-11-11 14:30:42 t 1 1 164145 375 0.00 2019-11-11 14:13:16 2019-11-11 14:31:30 t 1 1 164146 597 0.00 2019-11-11 14:28:00 2019-11-11 14:32:04 t 1 1 164147 220 0.00 2019-11-11 14:31:13 2019-11-11 14:32:26 t 1 1 164148 220 0.00 2019-11-11 14:32:25 2019-11-11 14:33:00 t 1 1 164151 647 0.00 2019-11-11 14:20:47 2019-11-11 14:34:33 t 1 1 164154 220 0.00 2019-11-11 14:34:52 2019-11-11 14:35:29 t 1 1 164159 220 0.00 2019-11-11 14:35:28 2019-11-11 14:38:26 t 1 1 164160 422 0.00 2019-11-11 14:38:45 2019-11-11 14:38:53 t 1 1 164161 623 0.00 2019-11-11 14:39:00 2019-11-11 14:39:30 t 1 1 164164 562 0.00 2019-11-11 14:34:30 2019-11-11 14:40:13 t 1 1 164169 637 0.00 2019-11-11 13:23:12 2019-11-11 14:48:28 t 1 1 164173 422 0.00 2019-11-11 14:49:10 2019-11-11 14:49:36 t 1 1 164176 623 0.00 2019-11-11 14:48:36 2019-11-11 14:52:06 t 1 1 164177 637 0.00 2019-11-11 14:48:37 2019-11-11 14:53:28 t 1 1 164179 597 0.00 2019-11-11 14:51:55 2019-11-11 14:55:06 t 1 1 164183 562 0.00 2019-11-11 14:56:34 2019-11-11 14:56:48 t 1 1 164188 422 0.00 2019-11-11 14:59:53 2019-11-11 15:00:11 t 1 1 164192 220 0.00 2019-11-11 14:59:46 2019-11-11 15:02:52 t 1 1 164199 220 0.00 2019-11-11 15:06:24 2019-11-11 15:06:55 t 1 1 164202 623 0.00 2019-11-11 15:07:40 2019-11-11 15:08:11 t 1 1 164205 578 0.00 2019-11-11 12:43:27 2019-11-11 15:09:30 t 1 1 164207 220 0.00 2019-11-11 15:09:43 2019-11-11 15:09:44 t 1 1 164210 570 0.00 2019-11-11 15:11:04 2019-11-11 15:11:59 t 1 1 164211 570 0.00 2019-11-11 15:11:59 2019-11-11 15:12:34 t 1 1 164213 570 0.00 2019-11-11 15:12:34 2019-11-11 15:13:14 t 1 1 164215 570 0.00 2019-11-11 15:13:14 2019-11-11 15:13:47 t 1 1 164216 570 0.00 2019-11-11 15:13:46 2019-11-11 15:14:21 t 1 1 164217 220 0.00 2019-11-11 15:11:53 2019-11-11 15:14:43 t 1 1 164219 570 0.00 2019-11-11 15:14:20 2019-11-11 15:14:52 t 1 1 164225 623 0.00 2019-11-11 15:16:42 2019-11-11 15:16:51 t 1 1 164232 422 0.00 2019-11-11 15:07:16 2019-11-11 15:23:01 t 1 1 164234 422 0.00 2019-11-11 15:23:07 2019-11-11 15:23:12 t 1 1 164235 623 0.00 2019-11-11 15:23:16 2019-11-11 15:23:47 t 1 1 164237 422 0.00 2019-11-11 15:23:17 2019-11-11 15:24:41 t 1 1 164239 422 0.00 2019-11-11 15:24:46 2019-11-11 15:25:00 t 1 1 164240 422 0.00 2019-11-11 15:25:14 2019-11-11 15:25:19 t 1 1 164241 422 0.00 2019-11-11 15:25:25 2019-11-11 15:25:34 t 1 1 164244 538 0.00 2019-11-11 15:12:05 2019-11-11 15:27:52 t 1 1 164247 528 0.00 2019-11-11 15:31:49 2019-11-11 15:36:11 t 1 1 164251 562 0.00 2019-11-11 15:43:16 2019-11-11 15:43:42 t 1 1 164255 516 0.00 2019-11-11 15:17:39 2019-11-11 15:47:08 t 1 1 164256 570 0.00 2019-11-11 15:44:36 2019-11-11 15:48:36 t 1 1 164257 570 0.00 2019-11-11 15:48:41 2019-11-11 15:49:44 t 1 1 164261 585 0.00 2019-11-11 15:41:56 2019-11-11 15:50:40 t 1 1 164264 637 0.00 2019-11-11 15:24:46 2019-11-11 15:56:15 t 1 1 164269 585 0.00 2019-11-11 16:00:21 2019-11-11 16:04:38 t 1 1 164272 562 0.00 2019-11-11 16:06:26 2019-11-11 16:06:36 t 1 1 164282 503 0.00 2019-11-11 16:11:23 2019-11-11 16:14:37 t 1 1 164284 619 0.00 2019-11-11 16:13:57 2019-11-11 16:15:13 t 1 1 164287 645 0.00 2019-11-11 16:17:53 2019-11-11 16:19:20 t 1 1 164289 637 0.00 2019-11-11 15:56:19 2019-11-11 16:20:36 t 1 1 164290 562 0.00 2019-11-11 16:21:13 2019-11-11 16:21:28 t 1 1 164292 422 0.00 2019-11-11 16:20:14 2019-11-11 16:21:37 t 1 1 164295 520 0.00 2019-11-11 16:17:49 2019-11-11 16:25:32 t 1 1 164298 514 0.00 2019-11-11 16:11:12 2019-11-11 16:27:52 t 1 1 164299 422 0.00 2019-11-11 16:27:58 2019-11-11 16:28:06 t 1 1 164301 220 0.00 2019-11-11 14:53:52 2019-11-11 16:30:41 t 1 1 164303 562 0.00 2019-11-11 16:26:41 2019-11-11 16:33:16 t 1 1 164304 375 0.00 2019-11-11 16:20:07 2019-11-11 16:35:48 t 1 1 164307 412 0.00 2019-11-10 21:48:07 2019-11-11 16:36:53 t 1 1 164308 562 0.00 2019-11-11 16:37:52 2019-11-11 16:38:02 t 1 1 164310 623 0.00 2019-11-11 16:10:52 2019-11-11 16:38:37 t 1 1 164311 375 0.00 2019-11-11 16:36:49 2019-11-11 16:39:00 t 1 1 164317 422 0.00 2019-11-11 16:42:23 2019-11-11 16:42:42 t 1 1 164318 379 0.00 2019-11-11 16:41:30 2019-11-11 16:44:07 t 1 1 164320 422 0.00 2019-11-11 16:44:46 2019-11-11 16:45:00 t 1 1 164324 587 0.00 2019-11-11 16:46:31 2019-11-11 16:47:39 t 1 1 164325 615 0.00 2019-11-11 16:44:13 2019-11-11 16:48:00 t 1 1 164328 623 0.00 2019-11-11 16:48:48 2019-11-11 16:48:50 t 1 1 164334 587 0.00 2019-11-11 16:53:12 2019-11-11 16:53:37 t 1 1 164336 623 0.00 2019-11-11 16:53:48 2019-11-11 16:53:55 t 1 1 164338 623 0.00 2019-11-11 16:54:20 2019-11-11 16:54:23 t 1 1 164340 625 0.00 2019-11-11 15:10:16 2019-11-11 16:54:47 t 1 1 164343 623 0.00 2019-11-11 16:56:28 2019-11-11 16:56:29 t 1 1 164346 538 0.00 2019-11-11 16:56:40 2019-11-11 16:58:12 t 1 1 164347 451 0.00 2019-11-11 16:47:48 2019-11-11 16:58:35 t 1 1 164349 422 0.00 2019-11-11 16:58:34 2019-11-11 16:58:42 t 1 1 164353 637 0.00 2019-11-11 16:33:38 2019-11-11 17:00:02 t 1 1 164356 375 0.00 2019-11-11 16:50:41 2019-11-11 17:02:54 t 1 1 164363 581 0.00 2019-11-11 17:04:02 2019-11-11 17:09:18 t 1 1 164364 562 0.00 2019-11-11 17:09:37 2019-11-11 17:09:55 t 1 1 164367 451 0.00 2019-11-11 17:07:25 2019-11-11 17:10:45 t 1 1 164372 430 0.00 2019-11-11 17:12:58 2019-11-11 17:13:00 t 1 1 164374 587 0.00 2019-11-11 16:58:55 2019-11-11 17:13:16 t 1 1 164376 625 0.00 2019-11-11 16:55:31 2019-11-11 17:14:18 t 1 1 164378 430 0.00 2019-11-11 17:14:49 2019-11-11 17:14:51 t 1 1 164381 562 0.00 2019-11-11 17:15:29 2019-11-11 17:15:39 t 1 1 164382 611 0.00 2019-11-11 17:11:27 2019-11-11 17:15:59 t 1 1 164385 611 0.00 2019-11-11 17:17:31 2019-11-11 17:17:38 t 1 1 164393 637 0.00 2019-11-11 17:05:16 2019-11-11 17:20:29 t 1 1 164399 615 0.00 2019-11-11 17:22:03 2019-11-11 17:23:15 t 1 1 164402 587 0.00 2019-11-11 17:19:44 2019-11-11 17:25:39 t 1 1 164405 422 0.00 2019-11-11 17:24:33 2019-11-11 17:27:26 t 1 1 164406 581 0.00 2019-11-11 17:09:58 2019-11-11 17:28:50 t 1 1 164413 375 0.00 2019-11-11 17:29:07 2019-11-11 17:32:32 t 1 1 164416 430 0.00 2019-11-11 17:26:30 2019-11-11 17:34:13 t 1 1 164419 637 0.00 2019-11-11 17:22:31 2019-11-11 17:35:43 t 1 1 164422 512 0.00 2019-11-11 17:34:39 2019-11-11 17:36:01 t 1 1 164429 422 0.00 2019-11-11 17:34:07 2019-11-11 17:37:41 t 1 1 164433 623 0.00 2019-11-11 17:37:47 2019-11-11 17:39:22 t 1 1 164436 430 0.00 2019-11-11 17:34:13 2019-11-11 17:39:57 t 1 1 164438 589 0.00 2019-11-11 17:28:47 2019-11-11 17:41:00 t 1 1 164440 623 0.00 2019-11-11 17:41:29 2019-11-11 17:42:19 t 1 1 164442 566 0.00 2019-11-11 17:37:19 2019-11-11 17:42:55 t 1 1 164443 220 0.00 2019-11-11 17:42:03 2019-11-11 17:42:58 t 1 1 164445 623 0.00 2019-11-11 17:41:21 2019-11-11 17:43:22 t 1 1 164450 623 0.00 2019-11-11 17:45:07 2019-11-11 17:45:56 t 1 1 164451 430 0.00 2019-11-11 17:44:12 2019-11-11 17:46:35 t 1 1 164457 623 0.00 2019-11-11 17:47:56 2019-11-11 17:48:37 t 1 1 164459 430 0.00 2019-11-11 17:49:14 2019-11-11 17:49:16 t 1 1 164461 623 0.00 2019-11-11 17:47:07 2019-11-11 17:49:22 t 1 1 164465 615 0.00 2019-11-11 17:49:57 2019-11-11 17:50:24 t 1 1 164467 566 0.00 2019-11-11 17:42:55 2019-11-11 17:51:02 t 1 1 164468 623 0.00 2019-11-11 17:50:25 2019-11-11 17:51:08 t 1 1 164474 623 0.00 2019-11-11 17:51:59 2019-11-11 17:53:38 t 1 1 164477 562 0.00 2019-11-11 17:53:56 2019-11-11 17:54:36 t 1 1 164480 375 0.00 2019-11-11 17:52:14 2019-11-11 17:55:29 t 1 1 164481 623 0.00 2019-11-11 17:55:33 2019-11-11 17:56:12 t 1 1 164484 623 0.00 2019-11-11 17:56:29 2019-11-11 17:57:01 t 1 1 164486 430 0.00 2019-11-11 17:54:34 2019-11-11 17:57:44 t 1 1 164491 623 0.00 2019-11-11 17:56:17 2019-11-11 17:58:22 t 1 1 164494 587 0.00 2019-11-11 17:47:26 2019-11-11 17:59:24 t 1 1 164495 430 0.00 2019-11-11 17:59:34 2019-11-11 17:59:52 t 1 1 164496 375 0.00 2019-11-11 17:57:11 2019-11-11 18:00:08 t 1 1 164503 430 0.00 2019-11-11 18:03:49 2019-11-11 18:04:27 t 1 1 164504 375 0.00 2019-11-11 18:02:38 2019-11-11 18:04:47 t 1 1 164506 481 0.00 2019-11-11 17:45:56 2019-11-11 18:05:34 t 1 1 164509 430 0.00 2019-11-11 18:04:47 2019-11-11 18:06:30 t 1 1 164510 430 0.00 2019-11-11 18:06:38 2019-11-11 18:06:39 t 1 1 164514 619 0.00 2019-11-11 18:07:53 2019-11-11 18:08:22 t 1 1 164523 422 0.00 2019-11-11 18:05:01 2019-11-11 18:12:03 t 1 1 164528 422 0.00 2019-11-11 18:13:32 2019-11-11 18:13:36 t 1 1 164530 587 0.00 2019-11-11 18:13:11 2019-11-11 18:14:14 t 1 1 164531 562 0.00 2019-11-11 18:06:37 2019-11-11 18:14:25 t 1 1 164534 566 0.00 2019-11-11 18:09:26 2019-11-11 18:14:52 t 1 1 164543 645 0.00 2019-11-11 18:14:37 2019-11-11 18:20:47 t 1 1 164545 422 0.00 2019-11-11 18:14:16 2019-11-11 18:21:01 t 1 1 164546 430 0.00 2019-11-11 18:21:04 2019-11-11 18:21:06 t 1 1 164548 587 0.00 2019-11-11 18:19:18 2019-11-11 18:21:22 t 1 1 164560 430 0.00 2019-11-11 18:25:33 2019-11-11 18:26:06 t 1 1 164563 430 0.00 2019-11-11 18:27:07 2019-11-11 18:27:22 t 1 1 164564 430 0.00 2019-11-11 18:27:29 2019-11-11 18:28:01 t 1 1 164566 562 0.00 2019-11-11 18:28:23 2019-11-11 18:29:06 t 1 1 164569 430 0.00 2019-11-11 18:28:54 2019-11-11 18:29:26 t 1 1 164571 430 0.00 2019-11-11 18:29:44 2019-11-11 18:30:16 t 1 1 164573 585 0.00 2019-11-11 18:24:22 2019-11-11 18:32:00 t 1 1 164582 625 0.00 2019-11-11 18:33:56 2019-11-11 18:34:32 t 1 1 164583 422 0.00 2019-11-11 18:35:01 2019-11-11 18:35:10 t 1 1 164585 430 0.00 2019-11-11 18:35:17 2019-11-11 18:35:51 t 1 1 164587 514 0.00 2019-11-11 18:24:21 2019-11-11 18:36:08 t 1 1 164588 566 0.00 2019-11-11 18:23:50 2019-11-11 18:36:14 t 1 1 164590 538 0.00 2019-11-11 18:34:32 2019-11-11 18:36:22 t 1 1 164591 430 0.00 2019-11-11 18:37:15 2019-11-11 18:37:23 t 1 1 164596 375 0.00 2019-11-11 18:38:22 2019-11-11 18:39:31 t 1 1 164598 430 0.00 2019-11-11 18:39:36 2019-11-11 18:39:43 t 1 1 164600 587 0.00 2019-11-11 18:19:29 2019-11-11 18:42:00 t 1 1 164604 220 0.00 2019-11-11 18:44:58 2019-11-11 18:46:21 t 1 2 164607 566 0.00 2019-11-11 18:40:39 2019-11-11 18:46:50 t 1 1 164611 422 0.00 2019-11-11 18:50:15 2019-11-11 18:50:44 t 1 1 164614 514 0.00 2019-11-11 18:36:08 2019-11-11 18:51:55 t 1 1 164617 430 0.00 2019-11-11 18:54:23 2019-11-11 18:54:40 t 1 1 164623 528 0.00 2019-11-11 18:18:07 2019-11-11 18:57:08 t 1 1 164626 422 0.00 2019-11-11 18:56:48 2019-11-11 18:58:15 t 1 1 164627 528 0.00 2019-11-11 18:57:07 2019-11-11 18:59:58 t 1 1 164629 562 0.00 2019-11-11 18:51:17 2019-11-11 19:01:33 t 1 1 164631 220 0.00 2019-11-11 18:21:41 2019-11-11 19:02:41 t 1 1 164633 375 0.00 2019-11-11 18:47:53 2019-11-11 19:04:40 t 1 1 164634 587 0.00 2019-11-11 18:51:42 2019-11-11 19:05:04 t 1 1 164645 587 0.00 2019-11-11 19:07:02 2019-11-11 19:08:00 t 1 1 164649 564 0.00 2019-11-11 17:40:07 2019-11-11 19:10:44 t 1 1 164650 631 0.00 2019-11-11 19:07:44 2019-11-11 19:11:23 t 1 1 164656 430 0.00 2019-11-11 19:12:38 2019-11-11 19:12:43 t 1 1 164660 430 0.00 2019-11-11 19:13:45 2019-11-11 19:14:07 t 1 1 164664 430 0.00 2019-11-11 19:15:43 2019-11-11 19:16:38 t 1 1 164669 430 0.00 2019-11-11 19:18:15 2019-11-11 19:18:37 t 1 1 164674 422 0.00 2019-11-11 19:19:21 2019-11-11 19:20:42 t 1 1 164675 619 0.00 2019-11-11 18:52:39 2019-11-11 19:20:49 t 1 1 164677 551 0.00 2019-11-11 16:27:15 2019-11-11 19:21:19 t 1 1 164678 430 0.00 2019-11-11 19:21:26 2019-11-11 19:21:54 t 1 1 164679 430 0.00 2019-11-11 19:21:59 2019-11-11 19:22:10 t 1 1 164681 430 0.00 2019-11-11 19:22:25 2019-11-11 19:22:57 t 1 1 164684 514 0.00 2019-11-11 19:10:43 2019-11-11 19:23:56 t 1 1 164690 611 0.00 2019-11-11 19:23:09 2019-11-11 19:26:16 t 1 1 164693 422 0.00 2019-11-11 19:22:26 2019-11-11 19:27:33 t 1 1 164694 566 0.00 2019-11-11 19:20:44 2019-11-11 19:28:16 t 1 1 164696 422 0.00 2019-11-11 19:27:39 2019-11-11 19:28:28 t 1 1 164697 587 0.00 2019-11-11 19:17:33 2019-11-11 19:28:59 t 1 1 164698 430 0.00 2019-11-11 19:29:40 2019-11-11 19:29:47 t 1 1 164699 637 0.00 2019-11-11 19:25:41 2019-11-11 19:30:12 t 1 1 164702 422 0.00 2019-11-11 19:31:33 2019-11-11 19:31:46 t 1 1 164390 611 0.00 2019-11-11 17:18:06 2019-11-11 17:19:18 t 1 1 164391 587 0.00 2019-11-11 17:13:16 2019-11-11 17:19:44 t 1 1 164394 430 0.00 2019-11-11 17:19:33 2019-11-11 17:20:55 t 1 1 164395 623 0.00 2019-11-11 17:19:01 2019-11-11 17:21:27 t 1 1 164397 566 0.00 2019-11-11 17:15:21 2019-11-11 17:22:47 t 1 1 164400 422 0.00 2019-11-11 17:16:59 2019-11-11 17:23:21 t 1 1 164407 375 0.00 2019-11-11 17:23:05 2019-11-11 17:29:07 t 1 1 164409 422 0.00 2019-11-11 17:29:43 2019-11-11 17:29:50 t 1 1 164411 566 0.00 2019-11-11 17:22:47 2019-11-11 17:31:09 t 1 1 164415 422 0.00 2019-11-11 17:32:39 2019-11-11 17:33:58 t 1 1 164418 623 0.00 2019-11-11 17:34:55 2019-11-11 17:34:59 t 1 1 164420 623 0.00 2019-11-11 17:35:19 2019-11-11 17:35:44 t 1 1 164423 623 0.00 2019-11-11 17:35:51 2019-11-11 17:36:18 t 1 1 164425 585 0.00 2019-11-11 17:32:04 2019-11-11 17:36:46 t 1 1 164428 566 0.00 2019-11-11 17:31:09 2019-11-11 17:37:19 t 1 1 164430 623 0.00 2019-11-11 17:37:14 2019-11-11 17:37:41 t 1 1 164431 623 0.00 2019-11-11 17:37:59 2019-11-11 17:38:26 t 1 1 164432 623 0.00 2019-11-11 17:38:39 2019-11-11 17:39:06 t 1 1 164434 623 0.00 2019-11-11 17:39:13 2019-11-11 17:39:43 t 1 1 164437 637 0.00 2019-11-11 17:37:53 2019-11-11 17:40:54 t 1 1 164439 623 0.00 2019-11-11 17:39:55 2019-11-11 17:41:16 t 1 1 164444 430 0.00 2019-11-11 17:39:57 2019-11-11 17:43:07 t 1 1 164446 562 0.00 2019-11-11 17:19:17 2019-11-11 17:43:30 t 1 1 164447 623 0.00 2019-11-11 17:42:30 2019-11-11 17:43:59 t 1 1 164449 607 0.00 2019-11-11 17:40:45 2019-11-11 17:44:46 t 1 1 164453 430 0.00 2019-11-11 17:47:13 2019-11-11 17:47:20 t 1 1 164455 623 0.00 2019-11-11 17:47:19 2019-11-11 17:47:51 t 1 1 164458 430 0.00 2019-11-11 17:49:02 2019-11-11 17:49:09 t 1 1 164460 623 0.00 2019-11-11 17:48:43 2019-11-11 17:49:16 t 1 1 164463 615 0.00 2019-11-11 17:49:56 2019-11-11 17:49:57 t 1 1 164469 623 0.00 2019-11-11 17:49:21 2019-11-11 17:51:22 t 1 1 164471 637 0.00 2019-11-11 17:43:39 2019-11-11 17:52:00 t 1 1 164476 430 0.00 2019-11-11 17:54:06 2019-11-11 17:54:12 t 1 1 164478 623 0.00 2019-11-11 17:54:12 2019-11-11 17:54:41 t 1 1 164483 615 0.00 2019-11-11 17:50:24 2019-11-11 17:56:47 t 1 1 164485 623 0.00 2019-11-11 17:57:18 2019-11-11 17:57:18 f 1 1 164487 625 0.00 2019-11-11 17:21:59 2019-11-11 17:57:44 t 1 1 164492 422 0.00 2019-11-11 17:58:10 2019-11-11 17:58:26 t 1 1 164498 562 0.00 2019-11-11 17:56:55 2019-11-11 18:01:44 t 1 1 164499 430 0.00 2019-11-11 18:01:50 2019-11-11 18:02:23 t 1 1 164502 422 0.00 2019-11-11 17:59:01 2019-11-11 18:03:14 t 1 1 164505 220 0.00 2019-11-11 17:56:55 2019-11-11 18:05:17 t 1 1 164511 375 0.00 2019-11-11 18:04:47 2019-11-11 18:07:23 t 1 1 164516 587 0.00 2019-11-11 17:59:24 2019-11-11 18:08:42 t 1 1 164519 430 0.00 2019-11-11 18:08:40 2019-11-11 18:09:49 t 1 1 164521 430 0.00 2019-11-11 18:10:55 2019-11-11 18:11:02 t 1 1 164525 430 0.00 2019-11-11 18:12:29 2019-11-11 18:12:38 t 1 1 164526 587 0.00 2019-11-11 18:08:53 2019-11-11 18:13:00 t 1 1 164532 585 0.00 2019-11-11 18:10:47 2019-11-11 18:14:34 t 1 1 164533 591 0.00 2019-11-11 16:18:49 2019-11-11 18:14:44 t 1 1 164535 430 0.00 2019-11-11 18:14:17 2019-11-11 18:15:47 t 1 1 164537 375 0.00 2019-11-11 18:11:11 2019-11-11 18:16:56 t 1 1 164540 220 0.00 2019-11-11 18:18:35 2019-11-11 18:20:02 t 1 1 164544 430 0.00 2019-11-11 18:16:45 2019-11-11 18:20:57 t 1 1 164549 562 0.00 2019-11-11 18:14:34 2019-11-11 18:21:33 t 1 1 164550 220 0.00 2019-11-11 18:21:08 2019-11-11 18:21:41 t 1 1 164552 430 0.00 2019-11-11 18:21:39 2019-11-11 18:22:44 t 1 1 164554 375 0.00 2019-11-11 18:20:29 2019-11-11 18:24:06 t 1 1 164557 430 0.00 2019-11-11 18:24:21 2019-11-11 18:24:55 t 1 1 164559 562 0.00 2019-11-11 18:22:54 2019-11-11 18:25:44 t 1 1 164561 625 0.00 2019-11-11 18:03:35 2019-11-11 18:26:24 t 1 1 164562 430 0.00 2019-11-11 18:26:54 2019-11-11 18:27:04 t 1 1 164567 430 0.00 2019-11-11 18:28:06 2019-11-11 18:29:08 t 1 1 164574 430 0.00 2019-11-11 18:31:57 2019-11-11 18:32:03 t 1 1 164576 637 0.00 2019-11-11 17:51:59 2019-11-11 18:32:37 t 1 1 164577 430 0.00 2019-11-11 18:32:59 2019-11-11 18:33:19 t 1 1 164579 538 0.00 2019-11-11 18:31:54 2019-11-11 18:34:27 t 1 1 164584 430 0.00 2019-11-11 18:35:09 2019-11-11 18:35:12 t 1 1 164594 430 0.00 2019-11-11 18:37:59 2019-11-11 18:38:27 t 1 1 164595 430 0.00 2019-11-11 18:38:35 2019-11-11 18:39:09 t 1 1 164599 566 0.00 2019-11-11 18:36:14 2019-11-11 18:40:39 t 1 1 164602 430 0.00 2019-11-11 18:43:47 2019-11-11 18:45:22 t 1 1 164603 422 0.00 2019-11-11 18:45:27 2019-11-11 18:46:00 t 1 1 164605 562 0.00 2019-11-11 18:46:21 2019-11-11 18:46:37 t 1 1 164608 375 0.00 2019-11-11 18:39:31 2019-11-11 18:47:53 t 1 1 164609 637 0.00 2019-11-11 18:41:57 2019-11-11 18:48:28 t 1 1 164610 637 0.00 2019-11-11 18:48:28 2019-11-11 18:49:40 t 1 1 164612 562 0.00 2019-11-11 18:50:41 2019-11-11 18:50:46 t 1 1 164613 587 0.00 2019-11-11 18:49:13 2019-11-11 18:51:24 t 1 1 164619 430 0.00 2019-11-11 18:54:05 2019-11-11 18:55:07 t 1 1 164621 422 0.00 2019-11-11 18:54:58 2019-11-11 18:56:02 t 1 1 164625 514 0.00 2019-11-11 18:51:55 2019-11-11 18:57:59 t 1 1 164628 422 0.00 2019-11-11 18:58:21 2019-11-11 19:00:40 t 1 1 164630 645 0.00 2019-11-11 18:57:10 2019-11-11 19:01:46 t 1 1 164632 430 0.00 2019-11-11 19:04:01 2019-11-11 19:04:08 t 1 1 164635 220 0.00 2019-11-11 19:03:50 2019-11-11 19:05:13 t 1 2 164636 430 0.00 2019-11-11 19:05:26 2019-11-11 19:05:39 t 1 1 164639 589 0.00 2019-11-11 18:58:41 2019-11-11 19:06:15 t 1 1 164640 597 0.00 2019-11-11 19:02:59 2019-11-11 19:06:45 t 1 1 164642 587 0.00 2019-11-11 19:06:36 2019-11-11 19:06:59 t 1 1 164648 514 0.00 2019-11-11 18:57:59 2019-11-11 19:10:43 t 1 1 164651 422 0.00 2019-11-11 19:09:48 2019-11-11 19:11:29 t 1 1 164653 587 0.00 2019-11-11 19:08:12 2019-11-11 19:11:44 t 1 1 164654 430 0.00 2019-11-11 19:11:44 2019-11-11 19:11:49 t 1 1 164655 422 0.00 2019-11-11 19:11:58 2019-11-11 19:12:00 t 1 1 164658 422 0.00 2019-11-11 19:12:56 2019-11-11 19:13:10 t 1 1 164661 375 0.00 2019-11-11 19:04:40 2019-11-11 19:15:04 t 1 1 164662 430 0.00 2019-11-11 19:15:13 2019-11-11 19:15:20 t 1 1 164665 587 0.00 2019-11-11 19:11:47 2019-11-11 19:16:46 t 1 1 164668 422 0.00 2019-11-11 19:17:27 2019-11-11 19:17:40 t 1 1 164670 422 0.00 2019-11-11 19:18:25 2019-11-11 19:18:41 t 1 1 164676 422 0.00 2019-11-11 19:20:48 2019-11-11 19:20:56 t 1 1 164682 430 0.00 2019-11-11 19:23:02 2019-11-11 19:23:09 t 1 1 164685 430 0.00 2019-11-11 19:24:07 2019-11-11 19:24:19 t 1 1 164687 430 0.00 2019-11-11 19:25:08 2019-11-11 19:25:14 t 1 1 164689 430 0.00 2019-11-11 19:26:09 2019-11-11 19:26:15 t 1 1 164701 430 0.00 2019-11-11 19:30:40 2019-11-11 19:31:11 t 1 1 164404 623 0.00 2019-11-11 17:26:16 2019-11-11 17:27:17 t 1 1 164408 422 0.00 2019-11-11 17:28:56 2019-11-11 17:29:21 t 1 1 164410 554 0.00 2019-11-11 17:30:13 2019-11-11 17:30:13 f 1 1 164412 512 0.00 2019-11-11 16:34:24 2019-11-11 17:32:31 t 1 1 164414 512 0.00 2019-11-11 17:32:47 2019-11-11 17:33:52 t 1 1 164417 623 0.00 2019-11-11 17:26:26 2019-11-11 17:34:28 t 1 1 164421 545 0.00 2019-11-11 17:12:27 2019-11-11 17:35:49 t 1 1 164424 451 0.00 2019-11-11 17:23:33 2019-11-11 17:36:20 t 1 1 164426 623 0.00 2019-11-11 17:36:25 2019-11-11 17:36:53 t 1 1 164427 623 0.00 2019-11-11 17:37:00 2019-11-11 17:37:01 t 1 1 164435 564 0.00 2019-11-11 16:54:51 2019-11-11 17:39:48 t 1 1 164441 375 0.00 2019-11-11 17:33:38 2019-11-11 17:42:32 t 1 1 164448 430 0.00 2019-11-11 17:43:09 2019-11-11 17:44:05 t 1 1 164452 623 0.00 2019-11-11 17:46:23 2019-11-11 17:47:02 t 1 1 164454 587 0.00 2019-11-11 17:25:39 2019-11-11 17:47:26 t 1 1 164456 430 0.00 2019-11-11 17:48:13 2019-11-11 17:48:15 t 1 1 164462 545 0.00 2019-11-11 17:35:49 2019-11-11 17:49:45 t 1 1 164464 623 0.00 2019-11-11 17:49:30 2019-11-11 17:50:18 t 1 1 164466 585 0.00 2019-11-11 17:50:53 2019-11-11 17:51:02 t 1 1 164470 422 0.00 2019-11-11 17:37:48 2019-11-11 17:51:40 t 1 1 164472 375 0.00 2019-11-11 17:47:05 2019-11-11 17:52:05 t 1 1 164473 623 0.00 2019-11-11 17:51:51 2019-11-11 17:53:22 t 1 1 164475 422 0.00 2019-11-11 17:53:59 2019-11-11 17:54:10 t 1 1 164479 623 0.00 2019-11-11 17:54:49 2019-11-11 17:55:21 t 1 1 164482 585 0.00 2019-11-11 17:51:05 2019-11-11 17:56:23 t 1 1 164488 422 0.00 2019-11-11 17:57:23 2019-11-11 17:57:54 t 1 1 164489 566 0.00 2019-11-11 17:51:02 2019-11-11 17:58:01 t 1 1 164490 430 0.00 2019-11-11 17:57:57 2019-11-11 17:58:21 t 1 1 164493 623 0.00 2019-11-11 17:57:06 2019-11-11 17:59:22 t 1 1 164497 430 0.00 2019-11-11 18:00:35 2019-11-11 18:00:36 t 1 1 164500 625 0.00 2019-11-11 17:58:35 2019-11-11 18:02:30 t 1 1 164501 430 0.00 2019-11-11 18:02:49 2019-11-11 18:02:54 t 1 1 164507 562 0.00 2019-11-11 18:04:02 2019-11-11 18:05:49 t 1 1 164508 562 0.00 2019-11-11 18:05:58 2019-11-11 18:06:26 t 1 1 164512 645 0.00 2019-11-11 18:05:40 2019-11-11 18:07:39 t 1 1 164513 430 0.00 2019-11-11 18:07:12 2019-11-11 18:08:13 t 1 1 164515 375 0.00 2019-11-11 18:07:23 2019-11-11 18:08:31 t 1 1 164517 615 0.00 2019-11-11 17:56:47 2019-11-11 18:08:53 t 1 1 164518 566 0.00 2019-11-11 17:58:01 2019-11-11 18:09:26 t 1 1 164520 430 0.00 2019-11-11 18:09:56 2019-11-11 18:10:29 t 1 1 164522 375 0.00 2019-11-11 18:08:31 2019-11-11 18:11:04 t 1 1 164524 430 0.00 2019-11-11 18:11:50 2019-11-11 18:12:24 t 1 1 164527 422 0.00 2019-11-11 18:12:14 2019-11-11 18:13:03 t 1 1 164529 430 0.00 2019-11-11 18:12:43 2019-11-11 18:14:10 t 1 1 164536 430 0.00 2019-11-11 18:15:52 2019-11-11 18:15:59 t 1 1 164538 220 0.00 2019-11-11 18:13:21 2019-11-11 18:17:39 t 1 1 164539 587 0.00 2019-11-11 18:17:31 2019-11-11 18:18:34 t 1 1 164541 375 0.00 2019-11-11 18:16:56 2019-11-11 18:20:09 t 1 1 164542 220 0.00 2019-11-11 18:20:01 2019-11-11 18:20:37 t 1 1 164547 220 0.00 2019-11-11 18:20:37 2019-11-11 18:21:09 t 1 1 164551 585 0.00 2019-11-11 18:15:48 2019-11-11 18:21:44 t 1 1 164553 566 0.00 2019-11-11 18:14:52 2019-11-11 18:23:50 t 1 1 164555 430 0.00 2019-11-11 18:23:38 2019-11-11 18:24:15 t 1 1 164556 220 0.00 2019-11-11 18:23:54 2019-11-11 18:24:22 t 1 1 164558 430 0.00 2019-11-11 18:25:00 2019-11-11 18:25:02 t 1 1 164565 220 0.00 2019-11-11 18:10:36 2019-11-11 18:28:08 t 1 2 164568 422 0.00 2019-11-11 18:21:01 2019-11-11 18:29:11 t 1 1 164570 375 0.00 2019-11-11 18:24:06 2019-11-11 18:30:04 t 1 1 164572 430 0.00 2019-11-11 18:30:24 2019-11-11 18:30:57 t 1 1 164575 422 0.00 2019-11-11 18:31:47 2019-11-11 18:32:07 t 1 1 164578 430 0.00 2019-11-11 18:33:22 2019-11-11 18:34:03 t 1 1 164580 430 0.00 2019-11-11 18:34:10 2019-11-11 18:34:29 t 1 1 164581 645 0.00 2019-11-11 18:32:27 2019-11-11 18:34:32 t 1 1 164586 562 0.00 2019-11-11 18:31:22 2019-11-11 18:36:00 t 1 1 164589 430 0.00 2019-11-11 18:36:13 2019-11-11 18:36:20 t 1 1 164592 430 0.00 2019-11-11 18:37:35 2019-11-11 18:37:50 t 1 1 164593 375 0.00 2019-11-11 18:30:04 2019-11-11 18:38:11 t 1 1 164597 597 0.00 2019-11-11 18:35:07 2019-11-11 18:39:37 t 1 1 164601 625 0.00 2019-11-11 18:34:32 2019-11-11 18:42:20 t 1 1 164606 587 0.00 2019-11-11 18:42:25 2019-11-11 18:46:48 t 1 1 164615 566 0.00 2019-11-11 18:46:50 2019-11-11 18:52:49 t 1 1 164616 430 0.00 2019-11-11 18:53:53 2019-11-11 18:54:00 t 1 1 164618 625 0.00 2019-11-11 18:42:19 2019-11-11 18:54:51 t 1 1 164620 430 0.00 2019-11-11 18:55:06 2019-11-11 18:55:14 t 1 1 164622 597 0.00 2019-11-11 18:53:55 2019-11-11 18:56:15 t 1 1 164624 566 0.00 2019-11-11 18:52:49 2019-11-11 18:57:51 t 1 1 164637 512 0.00 2019-11-11 18:54:10 2019-11-11 19:05:41 t 1 1 164638 587 0.00 2019-11-11 19:05:19 2019-11-11 19:06:03 t 1 1 164641 589 0.00 2019-11-11 19:06:15 2019-11-11 19:06:50 t 1 1 164643 562 0.00 2019-11-11 19:06:07 2019-11-11 19:07:31 t 1 1 164644 422 0.00 2019-11-11 19:07:16 2019-11-11 19:07:57 t 1 1 164646 430 0.00 2019-11-11 19:05:53 2019-11-11 19:08:14 t 1 1 164647 637 0.00 2019-11-11 18:52:45 2019-11-11 19:09:53 t 1 1 164652 412 0.00 2019-11-11 16:36:53 2019-11-11 19:11:35 t 1 1 164657 562 0.00 2019-11-11 19:10:15 2019-11-11 19:12:57 t 1 1 164659 593 0.00 2019-11-11 18:40:08 2019-11-11 19:13:19 t 1 1 164663 430 0.00 2019-11-11 19:14:12 2019-11-11 19:16:22 t 1 1 164666 422 0.00 2019-11-11 19:15:15 2019-11-11 19:17:21 t 1 1 164667 430 0.00 2019-11-11 19:17:26 2019-11-11 19:17:32 t 1 1 164671 645 0.00 2019-11-11 19:17:15 2019-11-11 19:18:45 t 1 1 164672 562 0.00 2019-11-11 19:18:20 2019-11-11 19:19:52 t 1 1 164673 375 0.00 2019-11-11 19:15:26 2019-11-11 19:20:37 t 1 1 164680 562 0.00 2019-11-11 19:22:31 2019-11-11 19:22:55 t 1 1 164683 625 0.00 2019-11-11 18:54:50 2019-11-11 19:23:43 t 1 1 164686 430 0.00 2019-11-11 19:24:29 2019-11-11 19:25:03 t 1 1 164688 637 0.00 2019-11-11 19:09:53 2019-11-11 19:25:41 t 1 1 164691 430 0.00 2019-11-11 19:26:29 2019-11-11 19:26:36 t 1 1 164692 430 0.00 2019-11-11 19:27:04 2019-11-11 19:27:22 t 1 1 164695 581 0.00 2019-11-11 19:03:48 2019-11-11 19:28:23 t 1 1 164700 625 0.00 2019-11-11 19:25:46 2019-11-11 19:30:52 t 1 1 164706 430 0.00 2019-11-11 19:33:31 2019-11-11 19:33:42 t 1 1 164708 481 0.00 2019-11-11 18:05:33 2019-11-11 19:33:58 t 1 1 164713 564 0.00 2019-11-11 19:10:47 2019-11-11 19:35:08 t 1 1 164716 430 0.00 2019-11-11 19:36:07 2019-11-11 19:36:13 t 1 1 164720 375 0.00 2019-11-11 19:37:11 2019-11-11 19:37:11 f 1 1 164728 422 0.00 2019-11-11 19:37:32 2019-11-11 19:39:22 t 1 1 164735 430 0.00 2019-11-11 19:40:52 2019-11-11 19:41:25 t 1 1 164703 430 0.00 2019-11-11 19:31:51 2019-11-11 19:31:58 t 1 1 164704 591 0.00 2019-11-11 18:14:44 2019-11-11 19:32:55 t 1 1 164707 430 0.00 2019-11-11 19:33:41 2019-11-11 19:33:53 t 1 1 164710 623 0.00 2019-11-11 19:32:58 2019-11-11 19:34:43 t 1 1 164712 422 0.00 2019-11-11 19:34:45 2019-11-11 19:35:07 t 1 1 164715 562 0.00 2019-11-11 19:35:52 2019-11-11 19:36:01 t 1 1 164718 589 0.00 2019-11-11 19:07:09 2019-11-11 19:36:52 t 1 1 164719 611 0.00 2019-11-11 19:26:16 2019-11-11 19:37:03 t 1 1 164721 375 0.00 2019-11-11 19:22:18 2019-11-11 19:37:15 t 1 1 164724 623 0.00 2019-11-11 19:35:19 2019-11-11 19:38:20 t 1 1 164729 562 0.00 2019-11-11 19:39:27 2019-11-11 19:39:35 t 1 1 164731 430 0.00 2019-11-11 19:39:42 2019-11-11 19:39:47 t 1 1 164733 430 0.00 2019-11-11 19:40:24 2019-11-11 19:40:26 t 1 1 164734 623 0.00 2019-11-11 19:39:34 2019-11-11 19:40:58 t 1 1 164736 623 0.00 2019-11-11 19:41:23 2019-11-11 19:41:43 t 1 1 164738 587 0.00 2019-11-11 19:28:59 2019-11-11 19:43:01 t 1 1 164739 430 0.00 2019-11-11 19:41:44 2019-11-11 19:44:22 t 1 1 164746 430 0.00 2019-11-11 19:47:32 2019-11-11 19:47:34 t 1 1 164747 570 0.00 2019-11-11 19:46:40 2019-11-11 19:48:22 t 1 1 164749 623 0.00 2019-11-11 19:46:47 2019-11-11 19:50:08 t 1 1 164753 623 0.00 2019-11-11 19:50:55 2019-11-11 19:50:55 f 1 1 164757 566 0.00 2019-11-11 19:46:05 2019-11-11 19:52:30 t 1 1 164761 564 0.00 2019-11-11 19:45:50 2019-11-11 19:53:37 t 1 1 164763 589 0.00 2019-11-11 19:36:52 2019-11-11 19:55:24 t 1 1 164767 430 0.00 2019-11-11 19:56:52 2019-11-11 19:57:35 t 1 1 164769 625 0.00 2019-11-11 19:32:27 2019-11-11 19:57:56 t 1 1 164774 430 0.00 2019-11-11 19:57:59 2019-11-11 19:59:22 t 1 1 164775 430 0.00 2019-11-11 19:59:27 2019-11-11 19:59:38 t 1 1 164776 514 0.00 2019-11-11 19:23:56 2019-11-11 20:00:02 t 1 1 164778 562 0.00 2019-11-11 20:01:34 2019-11-11 20:02:23 t 1 1 164779 562 0.00 2019-11-11 20:02:39 2019-11-11 20:03:13 t 1 1 164781 570 0.00 2019-11-11 19:55:55 2019-11-11 20:06:21 t 1 1 164787 408 0.00 2019-11-11 20:05:37 2019-11-11 20:11:15 t 1 1 164801 566 0.00 2019-11-11 20:14:16 2019-11-11 20:22:18 t 1 1 164805 619 0.00 2019-11-11 20:16:16 2019-11-11 20:25:20 t 1 1 164812 581 0.00 2019-11-11 20:29:50 2019-11-11 20:30:03 t 1 1 164814 422 0.00 2019-11-11 20:30:07 2019-11-11 20:30:25 t 1 1 164816 562 0.00 2019-11-11 20:31:43 2019-11-11 20:31:47 t 1 1 164818 587 0.00 2019-11-11 20:16:27 2019-11-11 20:32:00 t 1 1 164819 566 0.00 2019-11-11 20:22:18 2019-11-11 20:33:32 t 1 1 164820 587 0.00 2019-11-11 20:32:00 2019-11-11 20:35:49 t 1 1 164827 611 0.00 2019-11-11 20:21:03 2019-11-11 20:42:20 t 1 1 164832 619 0.00 2019-11-11 20:34:02 2019-11-11 20:49:07 t 1 1 164835 422 0.00 2019-11-11 20:46:35 2019-11-11 20:51:05 t 1 1 164842 220 0.00 2019-11-11 20:32:27 2019-11-11 20:55:10 t 1 1 164847 516 0.00 2019-11-11 20:50:32 2019-11-11 20:58:00 t 1 1 164853 422 0.00 2019-11-11 21:05:41 2019-11-11 21:05:58 t 1 1 164864 412 0.00 2019-11-11 19:11:35 2019-11-11 21:14:53 t 1 1 164867 422 0.00 2019-11-11 21:16:06 2019-11-11 21:16:32 t 1 1 164870 562 0.00 2019-11-11 21:23:38 2019-11-11 21:23:58 t 1 1 164873 516 0.00 2019-11-11 21:15:17 2019-11-11 21:24:17 t 1 1 164875 422 0.00 2019-11-11 21:24:22 2019-11-11 21:24:52 t 1 1 164879 587 0.00 2019-11-11 21:14:56 2019-11-11 21:28:31 t 1 1 164880 422 0.00 2019-11-11 21:28:47 2019-11-11 21:29:34 t 1 1 164882 591 0.00 2019-11-11 21:28:05 2019-11-11 21:32:49 t 1 1 164884 528 0.00 2019-11-11 21:16:31 2019-11-11 21:32:54 t 1 1 164888 538 0.00 2019-11-11 21:02:39 2019-11-11 21:34:22 t 1 1 164891 566 0.00 2019-11-11 21:32:36 2019-11-11 21:34:24 t 1 1 164894 627 0.00 2019-11-11 21:34:28 2019-11-11 21:37:22 t 1 1 164895 585 0.00 2019-11-11 21:32:02 2019-11-11 21:39:04 t 1 1 164902 645 0.00 2019-11-11 21:16:10 2019-11-11 21:47:01 t 1 1 164905 412 0.00 2019-11-11 21:14:53 2019-11-11 21:50:09 t 1 1 164907 422 0.00 2019-11-11 21:51:41 2019-11-11 21:51:55 t 1 1 164913 562 0.00 2019-11-11 21:57:09 2019-11-11 21:58:30 t 1 1 164921 625 0.00 2019-11-11 22:00:26 2019-11-11 22:04:07 t 1 1 164924 528 0.00 2019-11-11 22:06:21 2019-11-11 22:08:26 t 1 1 164926 514 0.00 2019-11-11 20:59:56 2019-11-11 22:09:44 t 1 1 164930 220 0.00 2019-11-11 21:57:02 2019-11-11 22:12:16 t 1 1 164933 637 0.00 2019-11-11 22:12:32 2019-11-11 22:15:01 t 1 1 164935 562 0.00 2019-11-11 22:17:48 2019-11-11 22:18:04 t 1 1 164940 422 0.00 2019-11-11 22:22:10 2019-11-11 22:22:17 t 1 1 164943 528 0.00 2019-11-11 22:16:56 2019-11-11 22:24:43 t 1 1 164948 637 0.00 2019-11-11 22:15:01 2019-11-11 22:31:01 t 1 1 164952 587 0.00 2019-11-11 22:23:28 2019-11-11 22:35:08 t 1 1 164953 564 0.00 2019-11-11 21:34:52 2019-11-11 22:36:38 t 1 1 164954 623 0.00 2019-11-11 22:34:25 2019-11-11 22:37:12 t 1 1 164958 623 0.00 2019-11-11 22:41:04 2019-11-11 22:42:04 t 1 1 164959 516 0.00 2019-11-11 22:40:05 2019-11-11 22:42:57 t 1 1 164962 623 0.00 2019-11-11 22:43:27 2019-11-11 22:43:28 t 1 1 164968 611 0.00 2019-11-11 22:45:54 2019-11-11 22:47:24 t 1 1 164974 623 0.00 2019-11-11 22:50:02 2019-11-11 22:50:12 t 1 1 164975 595 0.00 2019-11-11 22:44:32 2019-11-11 22:50:33 t 1 1 164977 562 0.00 2019-11-11 22:49:30 2019-11-11 22:51:22 t 1 1 164981 220 0.00 2019-11-11 22:46:20 2019-11-11 22:52:56 t 1 2 164982 562 0.00 2019-11-11 22:51:53 2019-11-11 22:53:25 t 1 1 164988 585 0.00 2019-11-11 22:51:31 2019-11-11 22:55:25 t 1 1 164991 623 0.00 2019-11-11 22:57:46 2019-11-11 22:57:47 t 1 1 164992 578 0.00 2019-11-11 21:34:56 2019-11-11 22:59:42 t 1 1 164993 595 0.00 2019-11-11 23:00:41 2019-11-11 23:00:46 t 1 1 164997 220 0.00 2019-11-11 23:00:06 2019-11-11 23:02:13 t 1 2 164999 220 0.00 2019-11-11 23:02:15 2019-11-11 23:02:36 t 1 2 165000 623 0.00 2019-11-11 23:02:54 2019-11-11 23:02:57 t 1 1 165002 637 0.00 2019-11-11 22:45:12 2019-11-11 23:03:13 t 1 1 165003 422 0.00 2019-11-11 23:04:20 2019-11-11 23:04:58 t 1 1 165011 587 0.00 2019-11-11 23:08:11 2019-11-11 23:09:54 t 1 1 165014 645 0.00 2019-11-11 23:10:58 2019-11-11 23:12:40 t 1 1 165022 570 0.00 2019-11-11 23:14:21 2019-11-11 23:15:52 t 1 1 165023 623 0.00 2019-11-11 23:18:13 2019-11-11 23:18:13 t 1 1 165026 595 0.00 2019-11-11 23:15:29 2019-11-11 23:20:13 t 1 1 165032 623 0.00 2019-11-11 23:23:15 2019-11-11 23:24:15 t 1 1 165036 633 0.00 2019-11-11 21:35:34 2019-11-11 23:30:03 t 1 1 165044 587 0.00 2019-11-11 23:34:53 2019-11-11 23:37:46 t 1 1 165046 637 0.00 2019-11-11 23:28:15 2019-11-11 23:38:04 t 1 1 165048 422 0.00 2019-11-11 23:38:29 2019-11-11 23:39:12 t 1 1 165051 587 0.00 2019-11-11 23:39:48 2019-11-11 23:40:08 t 1 1 165052 587 0.00 2019-11-11 23:39:28 2019-11-11 23:40:30 t 1 1 165055 562 0.00 2019-11-11 23:40:13 2019-11-11 23:41:00 t 1 1 164705 562 0.00 2019-11-11 19:33:07 2019-11-11 19:33:24 t 1 1 164709 422 0.00 2019-11-11 19:34:08 2019-11-11 19:34:15 t 1 1 164711 623 0.00 2019-11-11 19:34:43 2019-11-11 19:35:05 t 1 1 164714 430 0.00 2019-11-11 19:35:06 2019-11-11 19:35:54 t 1 1 164717 422 0.00 2019-11-11 19:35:36 2019-11-11 19:36:22 t 1 1 164722 623 0.00 2019-11-11 19:35:10 2019-11-11 19:37:22 t 1 1 164723 611 0.00 2019-11-11 19:36:57 2019-11-11 19:38:05 t 1 1 164725 430 0.00 2019-11-11 19:38:07 2019-11-11 19:38:23 t 1 1 164726 430 0.00 2019-11-11 19:38:28 2019-11-11 19:38:34 t 1 1 164727 623 0.00 2019-11-11 19:39:13 2019-11-11 19:39:21 t 1 1 164730 430 0.00 2019-11-11 19:39:30 2019-11-11 19:39:37 t 1 1 164732 422 0.00 2019-11-11 19:38:27 2019-11-11 19:39:54 t 1 1 164737 623 0.00 2019-11-11 19:42:10 2019-11-11 19:42:22 t 1 1 164743 623 0.00 2019-11-11 19:45:13 2019-11-11 19:46:22 t 1 1 164745 562 0.00 2019-11-11 19:46:55 2019-11-11 19:47:23 t 1 1 164750 570 0.00 2019-11-11 19:48:55 2019-11-11 19:50:17 t 1 1 164751 445 0.00 2019-11-11 19:36:21 2019-11-11 19:50:26 t 1 1 164755 623 0.00 2019-11-11 19:50:43 2019-11-11 19:52:22 t 1 1 164758 637 0.00 2019-11-11 19:33:29 2019-11-11 19:53:12 t 1 1 164760 430 0.00 2019-11-11 19:53:25 2019-11-11 19:53:32 t 1 1 164762 593 0.00 2019-11-11 19:13:27 2019-11-11 19:55:07 t 1 1 164764 570 0.00 2019-11-11 19:50:23 2019-11-11 19:55:42 t 1 1 164765 619 0.00 2019-11-11 19:28:52 2019-11-11 19:56:21 t 1 1 164770 587 0.00 2019-11-11 19:43:01 2019-11-11 19:58:54 t 1 1 164771 564 0.00 2019-11-11 19:53:37 2019-11-11 19:59:02 t 1 1 164780 562 0.00 2019-11-11 20:05:33 2019-11-11 20:06:09 t 1 1 164785 625 0.00 2019-11-11 19:57:56 2019-11-11 20:10:03 t 1 1 164789 587 0.00 2019-11-11 20:07:31 2019-11-11 20:12:44 t 1 1 164792 587 0.00 2019-11-11 20:12:44 2019-11-11 20:16:10 t 1 1 164795 564 0.00 2019-11-11 19:59:20 2019-11-11 20:17:43 t 1 1 164797 422 0.00 2019-11-11 20:19:41 2019-11-11 20:19:54 t 1 1 164806 220 0.00 2019-11-11 20:02:08 2019-11-11 20:25:27 t 1 2 164808 422 0.00 2019-11-11 20:26:44 2019-11-11 20:27:01 t 1 1 164815 422 0.00 2019-11-11 20:30:50 2019-11-11 20:31:03 t 1 1 164817 570 0.00 2019-11-11 20:06:18 2019-11-11 20:31:55 t 1 1 164821 514 0.00 2019-11-11 20:18:39 2019-11-11 20:37:44 t 1 1 164822 566 0.00 2019-11-11 20:33:32 2019-11-11 20:38:20 t 1 1 164826 422 0.00 2019-11-11 20:40:44 2019-11-11 20:41:07 t 1 1 164829 593 0.00 2019-11-11 19:55:07 2019-11-11 20:43:28 t 1 1 164831 514 0.00 2019-11-11 20:37:44 2019-11-11 20:49:06 t 1 1 164837 589 0.00 2019-11-11 20:45:07 2019-11-11 20:52:39 t 1 1 164840 422 0.00 2019-11-11 20:54:02 2019-11-11 20:54:34 t 1 1 164843 514 0.00 2019-11-11 20:49:06 2019-11-11 20:56:25 t 1 1 164845 422 0.00 2019-11-11 20:54:46 2019-11-11 20:56:55 t 1 1 164846 585 0.00 2019-11-11 20:53:36 2019-11-11 20:57:27 t 1 1 164849 625 0.00 2019-11-11 20:56:50 2019-11-11 21:00:10 t 1 1 164850 422 0.00 2019-11-11 21:00:32 2019-11-11 21:01:22 t 1 1 164851 562 0.00 2019-11-11 21:01:54 2019-11-11 21:03:33 t 1 1 164856 645 0.00 2019-11-11 21:05:02 2019-11-11 21:07:43 t 1 1 164858 625 0.00 2019-11-11 21:00:10 2019-11-11 21:09:48 t 1 1 164860 570 0.00 2019-11-11 21:09:47 2019-11-11 21:10:50 t 1 1 164862 516 0.00 2019-11-11 21:06:59 2019-11-11 21:14:16 t 1 1 164866 562 0.00 2019-11-11 21:12:37 2019-11-11 21:15:17 t 1 1 164871 422 0.00 2019-11-11 21:23:41 2019-11-11 21:24:08 t 1 1 164876 422 0.00 2019-11-11 21:25:14 2019-11-11 21:25:22 t 1 1 164878 591 0.00 2019-11-11 21:07:29 2019-11-11 21:28:05 t 1 1 164883 512 0.00 2019-11-11 20:32:43 2019-11-11 21:32:50 t 1 1 164885 512 0.00 2019-11-11 21:32:50 2019-11-11 21:33:53 t 1 1 164886 633 0.00 2019-11-11 20:52:41 2019-11-11 21:34:18 t 1 1 164889 562 0.00 2019-11-11 21:31:36 2019-11-11 21:34:23 t 1 1 164892 627 0.00 2019-11-11 21:18:32 2019-11-11 21:34:25 t 1 1 164893 422 0.00 2019-11-11 21:36:37 2019-11-11 21:37:05 t 1 1 164896 627 0.00 2019-11-11 21:40:15 2019-11-11 21:40:28 t 1 1 164897 562 0.00 2019-11-11 21:35:10 2019-11-11 21:40:59 t 1 1 164898 528 0.00 2019-11-11 21:33:32 2019-11-11 21:43:19 t 1 1 164899 422 0.00 2019-11-11 21:44:32 2019-11-11 21:44:41 t 1 1 164901 649 0.00 2019-11-11 21:33:36 2019-11-11 21:46:26 t 1 1 164903 545 0.00 2019-11-11 20:21:12 2019-11-11 21:47:13 t 1 1 164908 562 0.00 2019-11-11 21:49:11 2019-11-11 21:53:34 t 1 1 164910 585 0.00 2019-11-11 21:49:28 2019-11-11 21:54:06 t 1 1 164914 422 0.00 2019-11-11 21:59:58 2019-11-11 22:00:05 t 1 1 164918 562 0.00 2019-11-11 21:59:47 2019-11-11 22:02:05 t 1 1 164922 645 0.00 2019-11-11 22:01:19 2019-11-11 22:08:05 t 1 1 164925 422 0.00 2019-11-11 22:06:56 2019-11-11 22:08:33 t 1 1 164928 422 0.00 2019-11-11 22:10:40 2019-11-11 22:10:49 t 1 1 164931 587 0.00 2019-11-11 22:02:16 2019-11-11 22:13:02 t 1 1 164936 422 0.00 2019-11-11 22:17:32 2019-11-11 22:18:44 t 1 1 164937 516 0.00 2019-11-11 22:14:46 2019-11-11 22:21:12 t 1 1 164939 581 0.00 2019-11-11 22:02:57 2019-11-11 22:22:07 t 1 1 164942 220 0.00 2019-11-11 22:12:16 2019-11-11 22:23:43 t 1 1 164944 589 0.00 2019-11-11 22:11:16 2019-11-11 22:26:30 t 1 1 164945 562 0.00 2019-11-11 22:28:25 2019-11-11 22:29:07 t 1 1 164946 585 0.00 2019-11-11 22:27:46 2019-11-11 22:29:12 t 1 1 164947 528 0.00 2019-11-11 22:29:07 2019-11-11 22:30:21 t 1 1 164949 562 0.00 2019-11-11 22:31:38 2019-11-11 22:31:44 t 1 1 164950 422 0.00 2019-11-11 22:32:39 2019-11-11 22:32:57 t 1 1 164955 623 0.00 2019-11-11 22:40:49 2019-11-11 22:40:51 t 1 1 164960 623 0.00 2019-11-11 22:42:16 2019-11-11 22:43:13 t 1 1 164961 623 0.00 2019-11-11 22:43:21 2019-11-11 22:43:21 t 1 1 164963 422 0.00 2019-11-11 22:43:18 2019-11-11 22:43:39 t 1 1 164965 637 0.00 2019-11-11 22:41:31 2019-11-11 22:44:07 t 1 1 164966 637 0.00 2019-11-11 22:44:07 2019-11-11 22:45:12 t 1 1 164967 587 0.00 2019-11-11 22:41:40 2019-11-11 22:46:19 t 1 1 164970 623 0.00 2019-11-11 22:47:24 2019-11-11 22:47:27 t 1 1 164973 591 0.00 2019-11-11 21:37:11 2019-11-11 22:49:28 t 1 1 164976 623 0.00 2019-11-11 22:50:23 2019-11-11 22:50:36 t 1 1 164983 512 0.00 2019-11-11 22:53:23 2019-11-11 22:53:36 t 1 1 164985 288 0.00 2019-11-11 22:54:14 2019-11-11 22:54:14 f 1 1 164990 422 0.00 2019-11-11 22:57:07 2019-11-11 22:57:42 t 1 1 164994 538 0.00 2019-11-11 22:55:14 2019-11-11 23:00:50 t 1 1 164995 585 0.00 2019-11-11 22:55:24 2019-11-11 23:01:42 t 1 1 165004 562 0.00 2019-11-11 23:02:10 2019-11-11 23:05:00 t 1 1 165006 587 0.00 2019-11-11 22:55:15 2019-11-11 23:06:49 t 1 1 165007 587 0.00 2019-11-11 23:07:06 2019-11-11 23:07:12 t 1 1 165010 220 0.00 2019-11-11 22:55:55 2019-11-11 23:08:15 t 1 2 165012 587 0.00 2019-11-11 23:10:00 2019-11-11 23:11:51 t 1 1 165013 637 0.00 2019-11-11 23:03:13 2019-11-11 23:12:32 t 1 1 164740 564 0.00 2019-11-11 19:35:08 2019-11-11 19:44:43 t 1 1 164741 430 0.00 2019-11-11 19:45:28 2019-11-11 19:45:34 t 1 1 164742 566 0.00 2019-11-11 19:28:16 2019-11-11 19:46:05 t 1 1 164744 570 0.00 2019-11-11 19:45:28 2019-11-11 19:46:35 t 1 1 164748 570 0.00 2019-11-11 19:48:21 2019-11-11 19:48:55 t 1 1 164752 623 0.00 2019-11-11 19:50:19 2019-11-11 19:50:26 t 1 1 164754 430 0.00 2019-11-11 19:51:30 2019-11-11 19:52:11 t 1 1 164756 623 0.00 2019-11-11 19:50:31 2019-11-11 19:52:22 t 1 1 164759 430 0.00 2019-11-11 19:52:18 2019-11-11 19:53:20 t 1 1 164766 562 0.00 2019-11-11 19:56:39 2019-11-11 19:57:07 t 1 1 164768 430 0.00 2019-11-11 19:57:42 2019-11-11 19:57:44 t 1 1 164772 566 0.00 2019-11-11 19:52:30 2019-11-11 19:59:02 t 1 1 164773 637 0.00 2019-11-11 19:53:11 2019-11-11 19:59:21 t 1 1 164777 562 0.00 2019-11-11 19:59:33 2019-11-11 20:01:22 t 1 1 164782 445 0.00 2019-11-11 19:51:11 2019-11-11 20:06:40 t 1 1 164783 566 0.00 2019-11-11 19:59:02 2019-11-11 20:07:04 t 1 1 164784 587 0.00 2019-11-11 19:58:54 2019-11-11 20:07:31 t 1 1 164786 445 0.00 2019-11-11 20:06:40 2019-11-11 20:11:01 t 1 1 164788 445 0.00 2019-11-11 20:11:01 2019-11-11 20:12:40 t 1 1 164790 408 0.00 2019-11-11 20:12:52 2019-11-11 20:13:15 t 1 1 164791 566 0.00 2019-11-11 20:07:04 2019-11-11 20:14:16 t 1 1 164793 633 0.00 2019-11-11 19:17:18 2019-11-11 20:16:43 t 1 1 164794 562 0.00 2019-11-11 20:12:55 2019-11-11 20:17:03 t 1 1 164796 408 0.00 2019-11-11 20:16:36 2019-11-11 20:17:49 t 1 1 164798 564 0.00 2019-11-11 20:17:43 2019-11-11 20:20:03 t 1 1 164799 545 0.00 2019-11-11 19:32:49 2019-11-11 20:21:12 t 1 1 164800 564 0.00 2019-11-11 20:20:02 2019-11-11 20:22:09 t 1 1 164802 625 0.00 2019-11-11 20:10:03 2019-11-11 20:22:38 t 1 1 164803 562 0.00 2019-11-11 20:23:35 2019-11-11 20:24:15 t 1 1 164804 581 0.00 2019-11-11 20:23:48 2019-11-11 20:25:00 t 1 1 164807 445 0.00 2019-11-11 20:14:04 2019-11-11 20:25:53 t 1 1 164809 581 0.00 2019-11-11 20:24:59 2019-11-11 20:27:10 t 1 1 164810 220 0.00 2019-11-11 19:44:40 2019-11-11 20:28:49 t 1 1 164811 581 0.00 2019-11-11 20:27:18 2019-11-11 20:29:25 t 1 1 164813 562 0.00 2019-11-11 20:28:49 2019-11-11 20:30:20 t 1 1 164823 445 0.00 2019-11-11 20:25:53 2019-11-11 20:40:24 t 1 1 164824 589 0.00 2019-11-11 20:30:43 2019-11-11 20:40:34 t 1 1 164825 562 0.00 2019-11-11 20:40:29 2019-11-11 20:40:54 t 1 1 164828 587 0.00 2019-11-11 20:35:49 2019-11-11 20:42:58 t 1 1 164830 422 0.00 2019-11-11 20:45:58 2019-11-11 20:46:29 t 1 1 164833 566 0.00 2019-11-11 20:40:39 2019-11-11 20:49:26 t 1 1 164834 633 0.00 2019-11-11 20:16:43 2019-11-11 20:50:31 t 1 1 164836 562 0.00 2019-11-11 20:51:22 2019-11-11 20:51:42 t 1 1 164838 633 0.00 2019-11-11 20:50:31 2019-11-11 20:52:41 t 1 1 164839 587 0.00 2019-11-11 20:42:59 2019-11-11 20:53:20 t 1 1 164841 445 0.00 2019-11-11 20:40:24 2019-11-11 20:54:41 t 1 1 164844 625 0.00 2019-11-11 20:22:38 2019-11-11 20:56:50 t 1 1 164848 220 0.00 2019-11-11 20:57:00 2019-11-11 20:59:43 t 1 1 164852 422 0.00 2019-11-11 21:03:19 2019-11-11 21:03:46 t 1 1 164854 570 0.00 2019-11-11 20:32:04 2019-11-11 21:06:39 t 1 1 164855 591 0.00 2019-11-11 20:06:39 2019-11-11 21:07:29 t 1 1 164857 570 0.00 2019-11-11 21:06:38 2019-11-11 21:09:38 t 1 1 164859 645 0.00 2019-11-11 21:09:25 2019-11-11 21:10:26 t 1 1 164861 570 0.00 2019-11-11 21:10:46 2019-11-11 21:12:18 t 1 1 164863 645 0.00 2019-11-11 21:13:05 2019-11-11 21:14:47 t 1 1 164865 587 0.00 2019-11-11 20:53:21 2019-11-11 21:14:56 t 1 1 164868 422 0.00 2019-11-11 21:18:29 2019-11-11 21:18:37 t 1 1 164869 422 0.00 2019-11-11 21:20:44 2019-11-11 21:23:17 t 1 1 164872 589 0.00 2019-11-11 20:55:12 2019-11-11 21:24:09 t 1 1 164874 443 0.00 2019-11-11 21:18:58 2019-11-11 21:24:29 t 1 1 164877 422 0.00 2019-11-11 21:26:49 2019-11-11 21:27:32 t 1 1 164881 566 0.00 2019-11-11 20:49:26 2019-11-11 21:32:37 t 1 1 164887 564 0.00 2019-11-11 20:24:59 2019-11-11 21:34:21 t 1 1 164890 578 0.00 2019-11-11 20:24:51 2019-11-11 21:34:23 t 1 1 164900 635 0.00 2019-11-11 21:33:57 2019-11-11 21:44:47 t 1 1 164904 422 0.00 2019-11-11 21:45:59 2019-11-11 21:47:19 t 1 1 164906 412 0.00 2019-11-11 21:50:39 2019-11-11 21:51:43 t 1 1 164909 570 0.00 2019-11-11 21:12:17 2019-11-11 21:53:52 t 1 1 164911 422 0.00 2019-11-11 21:52:34 2019-11-11 21:54:12 t 1 1 164912 627 0.00 2019-11-11 21:40:53 2019-11-11 21:55:10 t 1 1 164915 625 0.00 2019-11-11 21:09:50 2019-11-11 22:00:26 t 1 1 164916 645 0.00 2019-11-11 21:58:52 2019-11-11 22:00:59 t 1 1 164917 422 0.00 2019-11-11 22:01:19 2019-11-11 22:01:54 t 1 1 164919 587 0.00 2019-11-11 21:56:55 2019-11-11 22:02:11 t 1 1 164920 422 0.00 2019-11-11 22:04:02 2019-11-11 22:04:03 t 1 1 164923 562 0.00 2019-11-11 22:07:51 2019-11-11 22:08:15 t 1 1 164927 422 0.00 2019-11-11 22:09:47 2019-11-11 22:10:34 t 1 1 164929 538 0.00 2019-11-11 21:50:34 2019-11-11 22:10:55 t 1 1 164932 528 0.00 2019-11-11 22:13:59 2019-11-11 22:14:27 t 1 1 164934 562 0.00 2019-11-11 22:09:55 2019-11-11 22:15:06 t 1 1 164938 422 0.00 2019-11-11 22:21:08 2019-11-11 22:21:31 t 1 1 164941 587 0.00 2019-11-11 22:13:02 2019-11-11 22:23:28 t 1 1 164951 585 0.00 2019-11-11 22:29:11 2019-11-11 22:35:06 t 1 1 164956 587 0.00 2019-11-11 22:35:08 2019-11-11 22:40:55 t 1 1 164957 637 0.00 2019-11-11 22:31:01 2019-11-11 22:41:31 t 1 1 164964 570 0.00 2019-11-11 22:31:40 2019-11-11 22:43:53 t 1 1 164969 481 0.00 2019-11-11 19:40:23 2019-11-11 22:47:27 t 1 1 164971 562 0.00 2019-11-11 22:33:40 2019-11-11 22:47:31 t 1 1 164972 623 0.00 2019-11-11 22:47:40 2019-11-11 22:48:05 t 1 1 164978 611 0.00 2019-11-11 22:46:33 2019-11-11 22:51:46 t 1 1 164979 570 0.00 2019-11-11 22:37:02 2019-11-11 22:52:39 t 1 1 164980 623 0.00 2019-11-11 22:52:42 2019-11-11 22:52:42 t 1 1 164984 562 0.00 2019-11-11 22:53:45 2019-11-11 22:54:07 t 1 1 164986 422 0.00 2019-11-11 22:53:57 2019-11-11 22:54:23 t 1 1 164987 587 0.00 2019-11-11 22:46:35 2019-11-11 22:55:11 t 1 1 164989 595 0.00 2019-11-11 22:55:32 2019-11-11 22:55:39 t 1 1 164996 623 0.00 2019-11-11 23:01:02 2019-11-11 23:01:49 t 1 1 164998 481 0.00 2019-11-11 22:47:27 2019-11-11 23:02:29 t 1 1 165001 220 0.00 2019-11-11 23:02:45 2019-11-11 23:03:11 t 1 2 165005 591 0.00 2019-11-11 22:50:18 2019-11-11 23:05:33 t 1 1 165008 595 0.00 2019-11-11 23:02:08 2019-11-11 23:07:20 t 1 1 165009 623 0.00 2019-11-11 23:07:59 2019-11-11 23:08:04 t 1 1 165016 623 0.00 2019-11-11 23:13:22 2019-11-11 23:13:25 t 1 1 165018 570 0.00 2019-11-11 22:52:39 2019-11-11 23:14:21 t 1 1 165021 422 0.00 2019-11-11 23:15:05 2019-11-11 23:15:50 t 1 1 165025 585 0.00 2019-11-11 23:18:23 2019-11-11 23:20:07 t 1 1 165029 422 0.00 2019-11-11 23:19:37 2019-11-11 23:21:24 t 1 1 165015 562 0.00 2019-11-11 23:13:01 2019-11-11 23:13:24 t 1 1 165017 595 0.00 2019-11-11 23:12:27 2019-11-11 23:14:15 t 1 1 165019 623 0.00 2019-11-11 23:13:07 2019-11-11 23:14:24 t 1 1 165020 645 0.00 2019-11-11 23:12:52 2019-11-11 23:15:33 t 1 1 165024 637 0.00 2019-11-11 23:12:32 2019-11-11 23:19:44 t 1 1 165027 485 0.00 2019-11-11 23:12:52 2019-11-11 23:20:28 t 1 1 165028 422 0.00 2019-11-11 23:20:48 2019-11-11 23:21:03 t 1 1 165034 637 0.00 2019-11-11 23:19:44 2019-11-11 23:28:15 t 1 1 165035 422 0.00 2019-11-11 23:28:21 2019-11-11 23:28:29 t 1 1 165037 422 0.00 2019-11-11 23:30:29 2019-11-11 23:31:16 t 1 1 165040 562 0.00 2019-11-11 23:34:37 2019-11-11 23:34:59 t 1 1 165043 645 0.00 2019-11-11 23:29:20 2019-11-11 23:37:45 t 1 1 165045 422 0.00 2019-11-11 23:37:44 2019-11-11 23:37:54 t 1 1 165047 587 0.00 2019-11-11 23:38:28 2019-11-11 23:38:36 t 1 1 165049 637 0.00 2019-11-11 23:38:04 2019-11-11 23:39:53 t 1 1 165053 633 0.00 2019-11-11 23:30:08 2019-11-11 23:40:43 t 1 1 165054 585 0.00 2019-11-11 23:27:23 2019-11-11 23:40:52 t 1 1 165056 422 0.00 2019-11-11 23:40:50 2019-11-11 23:41:15 t 1 1 165061 623 0.00 2019-11-11 23:45:07 2019-11-11 23:45:10 t 1 1 165065 623 0.00 2019-11-11 23:47:34 2019-11-11 23:47:35 t 1 1 165069 587 0.00 2019-11-11 23:40:23 2019-11-11 23:49:23 t 1 1 165070 587 0.00 2019-11-11 23:49:45 2019-11-11 23:49:54 t 1 1 165072 220 0.00 2019-11-11 23:42:03 2019-11-11 23:51:28 t 1 1 165076 587 0.00 2019-11-11 23:52:17 2019-11-11 23:52:27 t 1 1 165081 623 0.00 2019-11-11 23:57:33 2019-11-11 23:57:55 t 1 1 165082 623 0.00 2019-11-11 23:58:08 2019-11-11 23:58:18 t 1 1 165087 503 0.00 2019-11-11 23:52:27 2019-11-12 00:02:15 t 1 1 165088 562 0.00 2019-11-12 00:02:30 2019-11-12 00:02:46 t 1 1 165089 623 0.00 2019-11-12 00:02:59 2019-11-12 00:03:20 t 1 1 165093 220 0.00 2019-11-11 23:59:15 2019-11-12 00:08:12 t 1 1 165096 645 0.00 2019-11-11 23:59:22 2019-11-12 00:09:58 t 1 1 165097 220 0.00 2019-11-12 00:08:12 2019-11-12 00:12:31 t 1 1 165099 503 0.00 2019-11-12 00:02:29 2019-11-12 00:12:56 t 1 1 165100 562 0.00 2019-11-12 00:13:09 2019-11-12 00:13:28 t 1 1 165102 637 0.00 2019-11-11 23:53:21 2019-11-12 00:13:57 t 1 1 165104 623 0.00 2019-11-12 00:14:00 2019-11-12 00:14:18 t 1 1 165107 587 0.00 2019-11-11 23:52:39 2019-11-12 00:15:23 t 1 1 165110 451 0.00 2019-11-12 00:14:40 2019-11-12 00:16:28 t 1 1 165113 422 0.00 2019-11-12 00:18:32 2019-11-12 00:19:42 t 1 1 165115 587 0.00 2019-11-12 00:19:52 2019-11-12 00:22:22 t 1 1 165118 623 0.00 2019-11-12 00:23:55 2019-11-12 00:24:57 t 1 1 165119 556 0.00 2019-11-12 00:25:57 2019-11-12 00:25:57 f 1 1 165122 422 0.00 2019-11-12 00:24:08 2019-11-12 00:27:21 t 1 1 165124 220 0.00 2019-11-12 00:15:36 2019-11-12 00:29:01 t 1 1 165133 512 0.00 2019-11-12 00:14:02 2019-11-12 00:34:52 t 1 1 165134 562 0.00 2019-11-12 00:34:46 2019-11-12 00:34:59 t 1 1 165135 637 0.00 2019-11-12 00:29:43 2019-11-12 00:36:15 t 1 1 165137 544 0.00 2019-11-12 00:35:59 2019-11-12 00:37:03 t 1 2 165138 422 0.00 2019-11-12 00:36:37 2019-11-12 00:38:04 t 1 1 165139 220 0.00 2019-11-12 00:29:01 2019-11-12 00:39:36 t 1 1 165141 637 0.00 2019-11-12 00:36:15 2019-11-12 00:42:45 t 1 1 165144 220 0.00 2019-11-12 00:39:36 2019-11-12 00:44:48 t 1 1 165147 562 0.00 2019-11-12 00:53:09 2019-11-12 00:53:23 t 1 1 165155 587 0.00 2019-11-12 01:03:37 2019-11-12 01:04:48 t 1 1 165156 623 0.00 2019-11-12 01:04:53 2019-11-12 01:05:13 t 1 1 165160 587 0.00 2019-11-12 01:04:55 2019-11-12 01:07:24 t 1 1 165163 587 0.00 2019-11-12 01:07:53 2019-11-12 01:08:32 t 1 1 165164 623 0.00 2019-11-12 01:10:15 2019-11-12 01:10:39 t 1 1 165165 562 0.00 2019-11-12 01:14:41 2019-11-12 01:14:55 t 1 1 165166 587 0.00 2019-11-12 01:09:09 2019-11-12 01:15:32 t 1 1 165170 587 0.00 2019-11-12 01:18:37 2019-11-12 01:25:30 t 1 1 165175 587 0.00 2019-11-12 01:29:54 2019-11-12 01:30:12 t 1 1 165176 623 0.00 2019-11-12 01:30:59 2019-11-12 01:31:00 t 1 1 165178 422 0.00 2019-11-12 01:32:50 2019-11-12 01:33:18 t 1 1 165185 587 0.00 2019-11-12 01:36:20 2019-11-12 01:37:23 t 1 1 165186 637 0.00 2019-11-12 01:28:10 2019-11-12 01:39:44 t 1 1 165189 574 0.00 2019-11-12 01:37:28 2019-11-12 01:42:54 t 1 1 165190 422 0.00 2019-11-12 01:43:15 2019-11-12 01:43:51 t 1 1 165194 637 0.00 2019-11-12 01:39:44 2019-11-12 01:47:45 t 1 1 165196 587 0.00 2019-11-12 01:38:46 2019-11-12 01:55:29 t 1 1 165198 637 0.00 2019-11-12 01:47:45 2019-11-12 01:56:14 t 1 1 165200 587 0.00 2019-11-12 01:55:29 2019-11-12 01:59:43 t 1 1 165207 623 0.00 2019-11-12 02:06:33 2019-11-12 02:06:56 t 1 1 165222 422 0.00 2019-11-12 02:36:51 2019-11-12 02:38:24 t 1 1 165224 587 0.00 2019-11-12 02:27:46 2019-11-12 02:39:59 t 1 1 165227 623 0.00 2019-11-12 02:47:36 2019-11-12 02:47:37 t 1 1 165230 562 0.00 2019-11-12 02:37:18 2019-11-12 02:52:58 t 1 1 165233 587 0.00 2019-11-12 02:56:27 2019-11-12 02:58:24 t 1 1 165236 623 0.00 2019-11-12 03:03:08 2019-11-12 03:03:11 t 1 1 165239 623 0.00 2019-11-12 03:08:15 2019-11-12 03:08:18 t 1 1 165244 623 0.00 2019-11-12 03:18:24 2019-11-12 03:18:25 t 1 1 165247 562 0.00 2019-11-12 03:28:27 2019-11-12 03:28:53 t 1 1 165250 623 0.00 2019-11-12 03:34:54 2019-11-12 03:35:06 t 1 1 165251 562 0.00 2019-11-12 03:36:17 2019-11-12 03:36:29 t 1 1 165254 623 0.00 2019-11-12 03:43:47 2019-11-12 03:43:48 t 1 1 165255 623 0.00 2019-11-12 03:48:53 2019-11-12 03:49:14 t 1 1 165258 623 0.00 2019-11-12 03:59:27 2019-11-12 03:59:30 t 1 1 165259 623 0.00 2019-11-12 04:04:33 2019-11-12 04:04:36 t 1 1 165261 625 0.00 2019-11-11 23:15:00 2019-11-12 04:09:00 t 1 1 165262 623 0.00 2019-11-12 04:09:36 2019-11-12 04:09:38 t 1 1 165264 562 0.00 2019-11-12 04:15:23 2019-11-12 04:15:41 t 1 1 165265 623 0.00 2019-11-12 04:19:42 2019-11-12 04:19:56 t 1 1 165267 623 0.00 2019-11-12 04:24:59 2019-11-12 04:25:02 t 1 1 165270 623 0.00 2019-11-12 04:35:06 2019-11-12 04:35:07 t 1 1 165273 623 0.00 2019-11-12 04:40:09 2019-11-12 04:40:12 t 1 1 165277 412 0.00 2019-11-11 22:07:43 2019-11-12 04:52:05 t 1 1 165279 562 0.00 2019-11-12 04:55:23 2019-11-12 04:55:36 t 1 1 165280 562 0.00 2019-11-12 05:05:58 2019-11-12 05:06:22 t 1 1 165285 562 0.00 2019-11-12 05:27:36 2019-11-12 05:27:55 t 1 1 165294 562 0.00 2019-11-12 06:06:20 2019-11-12 06:06:34 t 1 1 165295 520 0.00 2019-11-12 06:04:24 2019-11-12 06:07:14 t 1 1 165297 520 0.00 2019-11-12 06:07:14 2019-11-12 06:16:04 t 1 1 165298 562 0.00 2019-11-12 06:17:01 2019-11-12 06:17:23 t 1 1 165302 520 0.00 2019-11-12 06:19:54 2019-11-12 06:25:16 t 1 1 165303 520 0.00 2019-11-12 06:25:16 2019-11-12 06:26:27 t 1 1 165308 562 0.00 2019-11-12 06:39:38 2019-11-12 06:39:51 t 1 1 165309 566 0.00 2019-11-12 06:33:04 2019-11-12 06:42:59 t 1 1 165030 595 0.00 2019-11-11 23:22:43 2019-11-11 23:22:51 t 1 1 165031 562 0.00 2019-11-11 23:23:50 2019-11-11 23:24:12 t 1 1 165033 595 0.00 2019-11-11 23:24:45 2019-11-11 23:26:47 t 1 1 165038 587 0.00 2019-11-11 23:17:17 2019-11-11 23:33:56 t 1 1 165039 587 0.00 2019-11-11 23:34:23 2019-11-11 23:34:36 t 1 1 165041 562 0.00 2019-11-11 23:35:52 2019-11-11 23:36:00 t 1 1 165042 422 0.00 2019-11-11 23:36:56 2019-11-11 23:37:28 t 1 1 165050 562 0.00 2019-11-11 23:39:27 2019-11-11 23:40:08 t 1 1 165057 623 0.00 2019-11-11 23:23:34 2019-11-11 23:42:47 t 1 1 165058 623 0.00 2019-11-11 23:42:58 2019-11-11 23:43:01 t 1 1 165060 585 0.00 2019-11-11 23:40:52 2019-11-11 23:44:31 t 1 1 165062 422 0.00 2019-11-11 23:44:50 2019-11-11 23:45:50 t 1 1 165064 623 0.00 2019-11-11 23:47:17 2019-11-11 23:47:29 t 1 1 165066 451 0.00 2019-11-11 23:32:47 2019-11-11 23:47:56 t 1 1 165073 587 0.00 2019-11-11 23:50:01 2019-11-11 23:51:34 t 1 1 165075 422 0.00 2019-11-11 23:52:09 2019-11-11 23:52:23 t 1 1 165085 570 0.00 2019-11-11 23:52:17 2019-11-12 00:00:52 t 1 1 165090 451 0.00 2019-11-11 23:47:56 2019-11-12 00:03:53 t 1 1 165094 422 0.00 2019-11-12 00:08:35 2019-11-12 00:08:43 t 1 1 165103 512 0.00 2019-11-11 23:10:31 2019-11-12 00:14:02 t 1 1 165105 456 0.00 2019-11-11 23:54:14 2019-11-12 00:14:39 t 1 1 165111 451 0.00 2019-11-12 00:16:52 2019-11-12 00:18:00 t 1 1 165112 623 0.00 2019-11-12 00:18:53 2019-11-12 00:18:56 t 1 1 165117 562 0.00 2019-11-12 00:24:01 2019-11-12 00:24:15 t 1 1 165120 556 0.00 2019-11-12 00:26:05 2019-11-12 00:26:05 f 1 1 165121 556 0.00 2019-11-12 00:26:13 2019-11-12 00:26:13 f 1 1 165125 637 0.00 2019-11-12 00:21:11 2019-11-12 00:29:43 t 1 1 165127 422 0.00 2019-11-12 00:30:50 2019-11-12 00:31:19 t 1 1 165129 544 0.00 2019-11-12 00:31:43 2019-11-12 00:32:43 t 1 2 165132 623 0.00 2019-11-12 00:34:02 2019-11-12 00:34:08 t 1 1 165140 544 0.00 2019-11-12 00:39:37 2019-11-12 00:40:44 t 1 2 165143 587 0.00 2019-11-12 00:40:44 2019-11-12 00:44:10 t 1 1 165145 562 0.00 2019-11-12 00:45:31 2019-11-12 00:45:48 t 1 1 165149 637 0.00 2019-11-12 00:49:47 2019-11-12 00:58:48 t 1 1 165150 587 0.00 2019-11-12 00:45:26 2019-11-12 00:59:13 t 1 1 165151 623 0.00 2019-11-12 00:59:29 2019-11-12 00:59:50 t 1 1 165152 587 0.00 2019-11-12 00:59:20 2019-11-12 01:00:25 t 1 1 165154 562 0.00 2019-11-12 01:03:45 2019-11-12 01:04:08 t 1 1 165157 623 0.00 2019-11-12 01:05:20 2019-11-12 01:05:21 t 1 1 165167 623 0.00 2019-11-12 01:15:44 2019-11-12 01:15:47 t 1 1 165168 623 0.00 2019-11-12 01:20:49 2019-11-12 01:20:51 t 1 1 165171 562 0.00 2019-11-12 01:25:19 2019-11-12 01:25:39 t 1 1 165173 637 0.00 2019-11-12 01:21:09 2019-11-12 01:28:10 t 1 1 165174 587 0.00 2019-11-12 01:25:39 2019-11-12 01:29:48 t 1 1 165177 422 0.00 2019-11-12 00:38:24 2019-11-12 01:32:08 t 1 1 165181 587 0.00 2019-11-12 01:34:30 2019-11-12 01:35:11 t 1 1 165182 623 0.00 2019-11-12 01:35:41 2019-11-12 01:35:50 t 1 1 165183 587 0.00 2019-11-12 01:35:19 2019-11-12 01:36:13 t 1 1 165187 623 0.00 2019-11-12 01:40:51 2019-11-12 01:40:57 t 1 1 165191 562 0.00 2019-11-12 01:45:12 2019-11-12 01:45:30 t 1 1 165192 623 0.00 2019-11-12 01:46:10 2019-11-12 01:46:11 t 1 1 165195 623 0.00 2019-11-12 01:50:59 2019-11-12 01:51:00 t 1 1 165197 623 0.00 2019-11-12 01:56:03 2019-11-12 01:56:09 t 1 1 165199 562 0.00 2019-11-12 01:56:01 2019-11-12 01:56:17 t 1 1 165201 587 0.00 2019-11-12 02:00:37 2019-11-12 02:01:02 t 1 1 165202 623 0.00 2019-11-12 02:01:10 2019-11-12 02:01:29 t 1 1 165203 623 0.00 2019-11-12 02:01:44 2019-11-12 02:01:45 t 1 1 165204 637 0.00 2019-11-12 01:56:14 2019-11-12 02:03:15 t 1 1 165209 623 0.00 2019-11-12 02:12:01 2019-11-12 02:12:04 t 1 1 165213 623 0.00 2019-11-12 02:22:18 2019-11-12 02:22:19 t 1 1 165214 562 0.00 2019-11-12 02:16:50 2019-11-12 02:27:05 t 1 1 165216 587 0.00 2019-11-12 02:15:34 2019-11-12 02:27:46 t 1 1 165217 637 0.00 2019-11-12 02:21:32 2019-11-12 02:30:47 t 1 1 165218 623 0.00 2019-11-12 02:32:31 2019-11-12 02:33:32 t 1 1 165223 623 0.00 2019-11-12 02:38:41 2019-11-12 02:38:50 t 1 1 165225 623 0.00 2019-11-12 02:42:33 2019-11-12 02:42:35 t 1 1 165226 637 0.00 2019-11-12 02:30:47 2019-11-12 02:44:36 t 1 1 165231 587 0.00 2019-11-12 02:52:30 2019-11-12 02:55:57 t 1 1 165232 623 0.00 2019-11-12 02:57:44 2019-11-12 02:58:05 t 1 1 165235 562 0.00 2019-11-12 02:59:36 2019-11-12 03:01:07 t 1 1 165242 516 0.00 2019-11-12 03:11:46 2019-11-12 03:15:37 t 1 1 165245 623 0.00 2019-11-12 03:23:30 2019-11-12 03:23:31 t 1 1 165246 623 0.00 2019-11-12 03:28:32 2019-11-12 03:28:33 t 1 1 165248 623 0.00 2019-11-12 03:33:39 2019-11-12 03:33:40 t 1 1 165256 562 0.00 2019-11-12 03:53:48 2019-11-12 03:54:09 t 1 1 165260 562 0.00 2019-11-12 04:04:42 2019-11-12 04:04:56 t 1 1 165263 623 0.00 2019-11-12 04:14:40 2019-11-12 04:14:43 t 1 1 165268 623 0.00 2019-11-12 04:30:04 2019-11-12 04:30:04 t 1 1 165269 562 0.00 2019-11-12 04:33:49 2019-11-12 04:34:03 t 1 1 165271 623 0.00 2019-11-12 04:37:41 2019-11-12 04:38:52 t 1 1 165272 623 0.00 2019-11-12 04:39:01 2019-11-12 04:39:14 t 1 1 165275 623 0.00 2019-11-12 04:43:39 2019-11-12 04:46:26 t 1 1 165278 623 0.00 2019-11-12 04:55:28 2019-11-12 04:55:31 t 1 1 165281 581 0.00 2019-11-12 04:53:49 2019-11-12 05:12:09 t 1 1 165282 445 0.00 2019-11-11 20:55:10 2019-11-12 05:14:29 t 1 1 165283 562 0.00 2019-11-12 05:16:45 2019-11-12 05:17:11 t 1 1 165288 520 0.00 2019-11-12 05:28:27 2019-11-12 05:50:50 t 1 1 165290 516 0.00 2019-11-12 05:54:29 2019-11-12 05:57:36 t 1 1 165296 625 0.00 2019-11-12 04:09:00 2019-11-12 06:12:50 t 1 1 165300 625 0.00 2019-11-12 06:12:49 2019-11-12 06:22:39 t 1 1 165301 645 0.00 2019-11-12 06:21:40 2019-11-12 06:24:38 t 1 1 165307 566 0.00 2019-11-11 21:35:00 2019-11-12 06:33:04 t 1 1 165312 631 0.00 2019-11-12 06:51:37 2019-11-12 06:52:53 t 1 1 165313 516 0.00 2019-11-12 06:45:19 2019-11-12 06:53:14 t 1 1 165316 516 0.00 2019-11-12 06:53:14 2019-11-12 07:01:44 t 1 1 165317 595 0.00 2019-11-12 07:03:17 2019-11-12 07:04:15 t 1 1 165318 516 0.00 2019-11-12 07:01:44 2019-11-12 07:04:58 t 1 1 165319 585 0.00 2019-11-12 06:58:58 2019-11-12 07:05:26 t 1 1 165320 551 0.00 2019-11-11 19:21:19 2019-11-12 07:11:17 t 1 1 165321 562 0.00 2019-11-12 07:11:47 2019-11-12 07:12:09 t 1 1 165322 220 0.00 2019-11-12 02:23:35 2019-11-12 07:12:57 t 1 1 165323 220 0.00 2019-11-12 07:12:57 2019-11-12 07:13:30 t 1 1 165324 220 0.00 2019-11-12 07:13:29 2019-11-12 07:14:02 t 1 1 165325 220 0.00 2019-11-12 07:14:02 2019-11-12 07:14:35 t 1 1 165327 562 0.00 2019-11-12 07:14:21 2019-11-12 07:15:14 t 1 1 165330 220 0.00 2019-11-12 07:16:16 2019-11-12 07:16:51 t 1 1 165331 220 0.00 2019-11-12 07:16:51 2019-11-12 07:17:21 t 1 1 165059 562 0.00 2019-11-11 23:42:26 2019-11-11 23:43:36 t 1 1 165063 623 0.00 2019-11-11 23:46:59 2019-11-11 23:47:09 t 1 1 165067 645 0.00 2019-11-11 23:37:45 2019-11-11 23:48:57 t 1 1 165068 623 0.00 2019-11-11 23:48:46 2019-11-11 23:49:09 t 1 1 165071 422 0.00 2019-11-11 23:49:38 2019-11-11 23:51:08 t 1 1 165074 570 0.00 2019-11-11 23:35:41 2019-11-11 23:52:17 t 1 1 165077 623 0.00 2019-11-11 23:52:25 2019-11-11 23:52:28 t 1 1 165078 637 0.00 2019-11-11 23:40:02 2019-11-11 23:53:21 t 1 1 165079 562 0.00 2019-11-11 23:53:40 2019-11-11 23:53:55 t 1 1 165080 422 0.00 2019-11-11 23:55:02 2019-11-11 23:55:11 t 1 1 165083 623 0.00 2019-11-11 23:58:30 2019-11-11 23:58:32 t 1 1 165084 645 0.00 2019-11-11 23:48:57 2019-11-11 23:59:22 t 1 1 165086 422 0.00 2019-11-12 00:00:45 2019-11-12 00:01:10 t 1 1 165091 562 0.00 2019-11-12 00:04:42 2019-11-12 00:04:50 t 1 1 165092 422 0.00 2019-11-12 00:01:29 2019-11-12 00:05:13 t 1 1 165095 623 0.00 2019-11-12 00:08:22 2019-11-12 00:08:43 t 1 1 165098 545 0.00 2019-11-12 00:02:00 2019-11-12 00:12:37 t 1 1 165101 623 0.00 2019-11-12 00:13:47 2019-11-12 00:13:53 t 1 1 165106 451 0.00 2019-11-12 00:03:53 2019-11-12 00:14:40 t 1 1 165108 220 0.00 2019-11-12 00:12:31 2019-11-12 00:15:36 t 1 1 165109 422 0.00 2019-11-12 00:15:27 2019-11-12 00:16:05 t 1 1 165114 637 0.00 2019-11-12 00:13:57 2019-11-12 00:21:11 t 1 1 165116 422 0.00 2019-11-12 00:21:21 2019-11-12 00:23:27 t 1 1 165123 623 0.00 2019-11-12 00:29:00 2019-11-12 00:29:01 t 1 1 165126 422 0.00 2019-11-12 00:28:14 2019-11-12 00:30:12 t 1 1 165128 544 0.00 2019-11-12 00:30:14 2019-11-12 00:31:19 t 1 2 165130 544 0.00 2019-11-12 00:31:50 2019-11-12 00:32:57 t 1 2 165131 538 0.00 2019-11-12 00:30:43 2019-11-12 00:34:00 t 1 1 165136 422 0.00 2019-11-12 00:32:42 2019-11-12 00:36:15 t 1 1 165142 408 0.00 2019-11-12 00:37:45 2019-11-12 00:44:03 t 1 1 165146 637 0.00 2019-11-12 00:42:45 2019-11-12 00:49:47 t 1 1 165148 591 0.00 2019-11-11 23:27:49 2019-11-12 00:53:28 t 1 1 165153 587 0.00 2019-11-12 01:00:35 2019-11-12 01:03:27 t 1 1 165158 623 0.00 2019-11-12 01:05:27 2019-11-12 01:05:28 t 1 1 165159 587 0.00 2019-11-12 01:05:02 2019-11-12 01:07:04 t 1 1 165161 587 0.00 2019-11-12 01:07:14 2019-11-12 01:07:44 t 1 1 165162 637 0.00 2019-11-12 00:58:48 2019-11-12 01:08:06 t 1 1 165169 637 0.00 2019-11-12 01:08:06 2019-11-12 01:21:09 t 1 1 165172 623 0.00 2019-11-12 01:25:55 2019-11-12 01:25:55 t 1 1 165179 587 0.00 2019-11-12 01:32:11 2019-11-12 01:33:43 t 1 1 165180 587 0.00 2019-11-12 01:34:14 2019-11-12 01:34:21 t 1 1 165184 562 0.00 2019-11-12 01:36:02 2019-11-12 01:36:22 t 1 1 165188 422 0.00 2019-11-12 01:37:55 2019-11-12 01:41:55 t 1 1 165193 623 0.00 2019-11-12 01:46:16 2019-11-12 01:46:17 t 1 1 165205 623 0.00 2019-11-12 02:01:37 2019-11-12 02:03:24 t 1 1 165206 562 0.00 2019-11-12 02:06:19 2019-11-12 02:06:32 t 1 1 165208 637 0.00 2019-11-12 02:03:15 2019-11-12 02:11:14 t 1 1 165210 587 0.00 2019-11-12 02:01:16 2019-11-12 02:15:34 t 1 1 165211 623 0.00 2019-11-12 02:17:09 2019-11-12 02:17:12 t 1 1 165212 637 0.00 2019-11-12 02:11:14 2019-11-12 02:21:32 t 1 1 165215 623 0.00 2019-11-12 02:27:22 2019-11-12 02:27:23 t 1 1 165219 422 0.00 2019-11-12 01:54:05 2019-11-12 02:36:51 t 1 1 165220 562 0.00 2019-11-12 02:26:54 2019-11-12 02:37:09 t 1 1 165221 623 0.00 2019-11-12 02:37:31 2019-11-12 02:37:31 t 1 1 165228 587 0.00 2019-11-12 02:39:59 2019-11-12 02:52:30 t 1 1 165229 623 0.00 2019-11-12 02:52:42 2019-11-12 02:52:44 t 1 1 165234 587 0.00 2019-11-12 02:56:36 2019-11-12 02:58:57 t 1 1 165237 587 0.00 2019-11-12 02:59:01 2019-11-12 03:03:42 t 1 1 165238 623 0.00 2019-11-12 03:04:36 2019-11-12 03:04:55 t 1 1 165240 562 0.00 2019-11-12 03:07:02 2019-11-12 03:08:23 t 1 1 165241 623 0.00 2019-11-12 03:13:19 2019-11-12 03:13:22 t 1 1 165243 562 0.00 2019-11-12 03:17:43 2019-11-12 03:18:08 t 1 1 165249 623 0.00 2019-11-12 03:33:46 2019-11-12 03:33:49 t 1 1 165252 623 0.00 2019-11-12 03:38:45 2019-11-12 03:38:46 t 1 1 165253 562 0.00 2019-11-12 03:43:02 2019-11-12 03:43:22 t 1 1 165257 623 0.00 2019-11-12 03:54:21 2019-11-12 03:54:35 t 1 1 165266 562 0.00 2019-11-12 04:22:58 2019-11-12 04:23:17 t 1 1 165274 562 0.00 2019-11-12 04:44:29 2019-11-12 04:44:52 t 1 1 165276 623 0.00 2019-11-12 04:47:10 2019-11-12 04:51:25 t 1 1 165284 445 0.00 2019-11-12 05:20:30 2019-11-12 05:22:36 t 1 1 165286 562 0.00 2019-11-12 05:38:16 2019-11-12 05:38:40 t 1 1 165287 562 0.00 2019-11-12 05:49:16 2019-11-12 05:49:25 t 1 1 165289 520 0.00 2019-11-12 05:50:50 2019-11-12 05:57:20 t 1 1 165291 520 0.00 2019-11-12 05:57:20 2019-11-12 05:59:56 t 1 1 165292 562 0.00 2019-11-12 05:59:44 2019-11-12 06:00:13 t 1 1 165293 520 0.00 2019-11-12 05:59:56 2019-11-12 06:04:24 t 1 1 165299 520 0.00 2019-11-12 06:16:04 2019-11-12 06:19:55 t 1 1 165304 562 0.00 2019-11-12 06:27:47 2019-11-12 06:28:42 t 1 1 165305 562 0.00 2019-11-12 06:29:17 2019-11-12 06:29:33 t 1 1 165306 520 0.00 2019-11-12 06:26:26 2019-11-12 06:30:40 t 1 1 165310 566 0.00 2019-11-12 06:42:59 2019-11-12 06:44:28 t 1 1 165311 562 0.00 2019-11-12 06:50:24 2019-11-12 06:50:40 t 1 1 165314 570 0.00 2019-11-12 06:50:21 2019-11-12 06:56:31 t 1 1 165315 562 0.00 2019-11-12 07:00:55 2019-11-12 07:01:23 t 1 1 165326 220 0.00 2019-11-12 07:14:35 2019-11-12 07:15:09 t 1 1 165328 220 0.00 2019-11-12 07:15:09 2019-11-12 07:15:44 t 1 1 165329 220 0.00 2019-11-12 07:15:43 2019-11-12 07:16:16 t 1 1 165332 456 0.00 2019-11-12 07:10:03 2019-11-12 07:17:57 t 1 1 165333 220 0.00 2019-11-12 07:17:21 2019-11-12 07:17:58 t 1 1 165334 585 0.00 2019-11-12 07:14:52 2019-11-12 07:18:01 t 1 1 165335 220 0.00 2019-11-12 07:17:57 2019-11-12 07:18:29 t 1 1 165336 456 0.00 2019-11-12 07:17:56 2019-11-12 07:19:02 t 1 1 165337 220 0.00 2019-11-12 07:18:29 2019-11-12 07:19:05 t 1 1 165338 589 0.00 2019-11-12 07:09:52 2019-11-12 07:19:18 t 1 1 165339 220 0.00 2019-11-12 07:19:05 2019-11-12 07:19:39 t 1 1 165340 625 0.00 2019-11-12 06:22:21 2019-11-12 07:19:41 t 1 1 165341 220 0.00 2019-11-12 07:19:39 2019-11-12 07:20:15 t 1 1 165342 566 0.00 2019-11-12 06:44:23 2019-11-12 07:21:10 t 1 1 165343 516 0.00 2019-11-12 07:10:07 2019-11-12 07:22:18 t 1 1 165344 220 0.00 2019-11-12 07:20:14 2019-11-12 07:23:45 t 1 1 165345 220 0.00 2019-11-12 07:23:45 2019-11-12 07:24:21 t 1 1 165346 220 0.00 2019-11-12 07:24:20 2019-11-12 07:24:55 t 1 1 165347 220 0.00 2019-11-12 07:24:54 2019-11-12 07:25:29 t 1 1 165348 566 0.00 2019-11-12 07:21:10 2019-11-12 07:25:49 t 1 1 165349 585 0.00 2019-11-12 07:18:01 2019-11-12 07:25:56 t 1 1 165350 562 0.00 2019-11-12 07:25:21 2019-11-12 07:26:10 t 1 1 165351 220 0.00 2019-11-12 07:25:29 2019-11-12 07:29:05 t 1 1 165352 220 0.00 2019-11-12 07:29:05 2019-11-12 07:29:40 t 1 1 165354 220 0.00 2019-11-12 07:29:39 2019-11-12 07:30:30 t 1 1 165355 220 0.00 2019-11-12 07:30:30 2019-11-12 07:31:06 t 1 1 165358 220 0.00 2019-11-12 07:31:06 2019-11-12 07:34:02 t 1 1 165360 220 0.00 2019-11-12 07:34:02 2019-11-12 07:34:37 t 1 1 165362 220 0.00 2019-11-12 07:35:08 2019-11-12 07:35:42 t 1 1 165364 566 0.00 2019-11-12 07:31:21 2019-11-12 07:36:13 t 1 1 165365 220 0.00 2019-11-12 07:35:41 2019-11-12 07:36:15 t 1 1 165367 589 0.00 2019-11-12 07:19:18 2019-11-12 07:36:52 t 1 1 165368 220 0.00 2019-11-12 07:36:47 2019-11-12 07:37:22 t 1 1 165369 220 0.00 2019-11-12 07:37:22 2019-11-12 07:37:57 t 1 1 165375 220 0.00 2019-11-12 07:40:16 2019-11-12 07:40:51 t 1 1 165376 220 0.00 2019-11-12 07:40:50 2019-11-12 07:41:23 t 1 1 165379 220 0.00 2019-11-12 07:42:26 2019-11-12 07:43:11 t 1 1 165390 220 0.00 2019-11-12 07:48:21 2019-11-12 07:48:54 t 1 1 165394 595 0.00 2019-11-12 07:44:51 2019-11-12 07:50:33 t 1 1 165398 220 0.00 2019-11-12 07:51:11 2019-11-12 07:51:45 t 1 1 165399 220 0.00 2019-11-12 07:51:44 2019-11-12 07:52:19 t 1 1 165406 220 0.00 2019-11-12 07:55:08 2019-11-12 07:55:43 t 1 1 165407 220 0.00 2019-11-12 07:55:43 2019-11-12 07:56:18 t 1 1 165409 220 0.00 2019-11-12 07:56:17 2019-11-12 07:56:50 t 1 1 165414 220 0.00 2019-11-12 07:59:07 2019-11-12 07:59:40 t 1 1 165415 566 0.00 2019-11-12 07:54:46 2019-11-12 08:00:08 t 1 1 165423 220 0.00 2019-11-12 08:03:24 2019-11-12 08:03:54 t 1 1 165424 220 0.00 2019-11-12 08:03:54 2019-11-12 08:04:26 t 1 1 165426 220 0.00 2019-11-12 08:04:26 2019-11-12 08:05:00 t 1 1 165429 516 0.00 2019-11-12 08:01:25 2019-11-12 08:06:13 t 1 1 165434 220 0.00 2019-11-12 08:07:21 2019-11-12 08:07:57 t 1 1 165440 220 0.00 2019-11-12 08:09:50 2019-11-12 08:10:26 t 1 1 165442 220 0.00 2019-11-12 08:10:26 2019-11-12 08:12:26 t 1 1 165443 220 0.00 2019-11-12 08:12:26 2019-11-12 08:12:59 t 1 1 165445 220 0.00 2019-11-12 08:14:38 2019-11-12 08:15:12 t 1 1 165451 562 0.00 2019-11-12 08:17:16 2019-11-12 08:17:32 t 1 1 165452 220 0.00 2019-11-12 08:17:31 2019-11-12 08:18:15 t 1 1 165462 516 0.00 2019-11-12 08:13:22 2019-11-12 08:22:24 t 1 1 165465 220 0.00 2019-11-12 08:23:13 2019-11-12 08:23:47 t 1 1 165466 220 0.00 2019-11-12 08:23:47 2019-11-12 08:24:21 t 1 1 165468 220 0.00 2019-11-12 08:24:52 2019-11-12 08:25:26 t 1 1 165469 220 0.00 2019-11-12 08:25:25 2019-11-12 08:25:59 t 1 1 165471 520 0.00 2019-11-12 08:16:56 2019-11-12 08:26:54 t 1 1 165472 220 0.00 2019-11-12 08:26:31 2019-11-12 08:27:04 t 1 1 165476 220 0.00 2019-11-12 08:28:11 2019-11-12 08:28:44 t 1 1 165478 220 0.00 2019-11-12 08:28:44 2019-11-12 08:29:16 t 1 1 165479 220 0.00 2019-11-12 08:29:16 2019-11-12 08:29:48 t 1 1 165483 408 0.00 2019-11-12 08:15:29 2019-11-12 08:31:44 t 1 1 165484 623 0.00 2019-11-12 08:15:41 2019-11-12 08:31:58 t 1 1 165487 220 0.00 2019-11-12 08:32:01 2019-11-12 08:32:34 t 1 1 165490 645 0.00 2019-11-12 08:32:53 2019-11-12 08:33:17 t 1 1 165492 220 0.00 2019-11-12 08:33:08 2019-11-12 08:33:44 t 1 1 165493 220 0.00 2019-11-12 08:33:43 2019-11-12 08:34:15 t 1 1 165495 623 0.00 2019-11-12 08:35:01 2019-11-12 08:35:12 t 1 1 165503 562 0.00 2019-11-12 08:20:20 2019-11-12 08:38:30 t 1 1 165507 220 0.00 2019-11-12 08:39:40 2019-11-12 08:40:14 t 1 1 165509 220 0.00 2019-11-12 08:40:13 2019-11-12 08:40:43 t 1 1 165510 220 0.00 2019-11-12 08:40:43 2019-11-12 08:41:19 t 1 1 165514 623 0.00 2019-11-12 08:42:18 2019-11-12 08:42:18 t 1 1 165520 220 0.00 2019-11-12 08:44:28 2019-11-12 08:45:04 t 1 1 165522 220 0.00 2019-11-12 08:45:36 2019-11-12 08:46:08 t 1 1 165525 623 0.00 2019-11-12 08:46:35 2019-11-12 08:46:48 t 1 1 165526 623 0.00 2019-11-12 08:47:01 2019-11-12 08:47:10 t 1 1 165530 623 0.00 2019-11-12 08:48:31 2019-11-12 08:48:51 t 1 1 165534 623 0.00 2019-11-12 08:49:34 2019-11-12 08:49:40 t 1 1 165535 220 0.00 2019-11-12 08:49:24 2019-11-12 08:49:57 t 1 1 165537 562 0.00 2019-11-12 08:52:28 2019-11-12 08:52:42 t 1 1 165539 591 0.00 2019-11-12 08:23:11 2019-11-12 08:53:10 t 1 1 165540 538 0.00 2019-11-12 08:14:24 2019-11-12 08:54:37 t 1 1 165545 562 0.00 2019-11-12 09:02:19 2019-11-12 09:02:40 t 1 1 165547 591 0.00 2019-11-12 08:56:29 2019-11-12 09:04:33 t 1 1 165549 516 0.00 2019-11-12 09:02:54 2019-11-12 09:06:17 t 1 1 165553 637 0.00 2019-11-12 09:09:13 2019-11-12 09:11:16 t 1 1 165557 562 0.00 2019-11-12 09:13:08 2019-11-12 09:13:29 t 1 1 165558 637 0.00 2019-11-12 09:11:15 2019-11-12 09:14:29 t 1 1 165560 637 0.00 2019-11-12 09:20:10 2019-11-12 09:20:47 t 1 1 165562 637 0.00 2019-11-12 09:20:57 2019-11-12 09:21:41 t 1 1 165563 623 0.00 2019-11-12 09:21:36 2019-11-12 09:22:00 t 1 1 165564 481 0.00 2019-11-12 08:46:24 2019-11-12 09:22:10 t 1 1 165568 623 0.00 2019-11-12 09:23:19 2019-11-12 09:23:22 t 1 1 165571 623 0.00 2019-11-12 09:22:56 2019-11-12 09:25:25 t 1 1 165573 430 0.00 2019-11-12 09:27:16 2019-11-12 09:30:45 t 1 1 165578 645 0.00 2019-11-12 09:25:56 2019-11-12 09:33:05 t 1 1 165580 585 0.00 2019-11-12 09:31:24 2019-11-12 09:34:20 t 1 1 165583 623 0.00 2019-11-12 09:36:24 2019-11-12 09:39:18 t 1 1 165585 637 0.00 2019-11-12 09:38:25 2019-11-12 09:39:34 t 1 1 165590 562 0.00 2019-11-12 09:42:50 2019-11-12 09:43:10 t 1 1 165594 623 0.00 2019-11-12 09:45:57 2019-11-12 09:45:59 t 1 1 165599 623 0.00 2019-11-12 09:50:38 2019-11-12 09:51:01 t 1 1 165606 591 0.00 2019-11-12 09:37:33 2019-11-12 09:56:28 t 1 1 165611 637 0.00 2019-11-12 09:57:57 2019-11-12 10:01:15 t 1 1 165612 623 0.00 2019-11-12 10:00:04 2019-11-12 10:02:14 t 1 1 165614 570 0.00 2019-11-12 09:59:29 2019-11-12 10:02:48 t 1 1 165619 562 0.00 2019-11-12 10:05:27 2019-11-12 10:05:37 t 1 1 165622 623 0.00 2019-11-12 10:07:09 2019-11-12 10:08:32 t 1 1 165623 564 0.00 2019-11-12 09:57:02 2019-11-12 10:09:10 t 1 1 165625 623 0.00 2019-11-12 10:10:25 2019-11-12 10:10:26 t 1 1 165626 516 0.00 2019-11-12 10:03:34 2019-11-12 10:13:43 t 1 1 165632 625 0.00 2019-11-12 09:10:19 2019-11-12 10:22:50 t 1 1 165633 564 0.00 2019-11-12 10:09:26 2019-11-12 10:24:20 t 1 1 165635 623 0.00 2019-11-12 10:22:03 2019-11-12 10:25:51 t 1 1 165636 625 0.00 2019-11-12 10:22:50 2019-11-12 10:25:53 t 1 1 165637 562 0.00 2019-11-12 10:26:04 2019-11-12 10:26:25 t 1 1 165639 581 0.00 2019-11-12 10:21:51 2019-11-12 10:28:31 t 1 1 165646 562 0.00 2019-11-12 10:35:51 2019-11-12 10:36:03 t 1 1 165649 623 0.00 2019-11-12 10:38:20 2019-11-12 10:38:34 t 1 1 165651 623 0.00 2019-11-12 10:39:59 2019-11-12 10:40:10 t 1 1 165656 562 0.00 2019-11-12 10:36:10 2019-11-12 10:42:21 t 1 1 165658 623 0.00 2019-11-12 10:42:59 2019-11-12 10:43:00 t 1 1 165661 623 0.00 2019-11-12 10:43:30 2019-11-12 10:43:55 t 1 1 165353 562 0.00 2019-11-12 07:29:51 2019-11-12 07:30:22 t 1 1 165356 566 0.00 2019-11-12 07:25:49 2019-11-12 07:31:21 t 1 1 165359 645 0.00 2019-11-12 07:28:07 2019-11-12 07:34:28 t 1 1 165361 220 0.00 2019-11-12 07:34:36 2019-11-12 07:35:08 t 1 1 165363 585 0.00 2019-11-12 07:33:11 2019-11-12 07:35:54 t 1 1 165372 220 0.00 2019-11-12 07:39:05 2019-11-12 07:39:40 t 1 1 165374 562 0.00 2019-11-12 07:40:22 2019-11-12 07:40:42 t 1 1 165382 220 0.00 2019-11-12 07:44:20 2019-11-12 07:44:57 t 1 1 165383 220 0.00 2019-11-12 07:44:57 2019-11-12 07:45:32 t 1 1 165384 220 0.00 2019-11-12 07:45:32 2019-11-12 07:46:05 t 1 1 165388 220 0.00 2019-11-12 07:47:13 2019-11-12 07:47:48 t 1 1 165389 220 0.00 2019-11-12 07:47:48 2019-11-12 07:48:21 t 1 1 165392 220 0.00 2019-11-12 07:48:53 2019-11-12 07:49:31 t 1 1 165397 562 0.00 2019-11-12 07:51:13 2019-11-12 07:51:30 t 1 1 165403 220 0.00 2019-11-12 07:54:00 2019-11-12 07:54:34 t 1 1 165405 220 0.00 2019-11-12 07:54:34 2019-11-12 07:55:08 t 1 1 165408 625 0.00 2019-11-12 07:19:57 2019-11-12 07:56:28 t 1 1 165410 220 0.00 2019-11-12 07:56:50 2019-11-12 07:57:26 t 1 1 165412 220 0.00 2019-11-12 07:58:00 2019-11-12 07:58:35 t 1 1 165413 220 0.00 2019-11-12 07:58:34 2019-11-12 07:59:07 t 1 1 165417 220 0.00 2019-11-12 08:00:15 2019-11-12 08:00:48 t 1 1 165418 220 0.00 2019-11-12 08:00:48 2019-11-12 08:01:19 t 1 1 165421 220 0.00 2019-11-12 08:01:51 2019-11-12 08:02:51 t 1 1 165422 220 0.00 2019-11-12 08:02:50 2019-11-12 08:03:25 t 1 1 165425 379 0.00 2019-11-12 07:07:28 2019-11-12 08:04:31 t 1 1 165431 220 0.00 2019-11-12 08:06:06 2019-11-12 08:06:39 t 1 1 165432 220 0.00 2019-11-12 08:06:39 2019-11-12 08:07:22 t 1 1 165436 220 0.00 2019-11-12 08:07:56 2019-11-12 08:08:43 t 1 1 165437 220 0.00 2019-11-12 08:08:42 2019-11-12 08:09:15 t 1 1 165438 220 0.00 2019-11-12 08:09:15 2019-11-12 08:09:50 t 1 1 165446 637 0.00 2019-11-12 08:11:20 2019-11-12 08:15:20 t 1 1 165449 220 0.00 2019-11-12 08:15:11 2019-11-12 08:16:56 t 1 1 165455 220 0.00 2019-11-12 08:19:26 2019-11-12 08:19:59 t 1 1 165456 220 0.00 2019-11-12 08:19:58 2019-11-12 08:20:29 t 1 1 165459 220 0.00 2019-11-12 08:21:02 2019-11-12 08:21:37 t 1 1 165464 220 0.00 2019-11-12 08:22:40 2019-11-12 08:23:13 t 1 1 165473 625 0.00 2019-11-12 07:57:25 2019-11-12 08:27:10 t 1 1 165474 220 0.00 2019-11-12 08:27:04 2019-11-12 08:27:37 t 1 1 165475 220 0.00 2019-11-12 08:27:37 2019-11-12 08:28:12 t 1 1 165477 481 0.00 2019-11-12 08:28:49 2019-11-12 08:29:00 t 1 1 165480 220 0.00 2019-11-12 08:29:48 2019-11-12 08:30:20 t 1 1 165482 220 0.00 2019-11-12 08:30:19 2019-11-12 08:30:52 t 1 1 165486 623 0.00 2019-11-12 08:32:09 2019-11-12 08:32:12 t 1 1 165488 645 0.00 2019-11-12 08:29:27 2019-11-12 08:32:39 t 1 1 165491 408 0.00 2019-11-12 08:31:57 2019-11-12 08:33:41 t 1 1 165497 220 0.00 2019-11-12 08:35:19 2019-11-12 08:35:53 t 1 1 165498 220 0.00 2019-11-12 08:35:53 2019-11-12 08:36:24 t 1 1 165499 220 0.00 2019-11-12 08:36:24 2019-11-12 08:36:58 t 1 1 165500 220 0.00 2019-11-12 08:36:58 2019-11-12 08:37:27 t 1 1 165506 220 0.00 2019-11-12 08:39:08 2019-11-12 08:39:41 t 1 1 165508 637 0.00 2019-11-12 08:19:33 2019-11-12 08:40:42 t 1 1 165513 623 0.00 2019-11-12 08:42:09 2019-11-12 08:42:10 t 1 1 165517 220 0.00 2019-11-12 08:42:58 2019-11-12 08:43:34 t 1 1 165518 220 0.00 2019-11-12 08:43:33 2019-11-12 08:44:28 t 1 1 165523 481 0.00 2019-11-12 08:29:00 2019-11-12 08:46:24 t 1 1 165528 220 0.00 2019-11-12 08:47:14 2019-11-12 08:47:44 t 1 1 165529 220 0.00 2019-11-12 08:47:44 2019-11-12 08:48:18 t 1 1 165533 220 0.00 2019-11-12 08:48:52 2019-11-12 08:49:24 t 1 1 165538 623 0.00 2019-11-12 08:52:05 2019-11-12 08:52:52 t 1 1 165541 623 0.00 2019-11-12 08:55:44 2019-11-12 08:55:47 t 1 1 165542 538 0.00 2019-11-12 08:54:37 2019-11-12 08:56:21 t 1 1 165546 623 0.00 2019-11-12 09:02:55 2019-11-12 09:02:58 t 1 1 165548 637 0.00 2019-11-12 08:45:59 2019-11-12 09:04:38 t 1 1 165550 623 0.00 2019-11-12 09:08:01 2019-11-12 09:08:04 t 1 1 165554 516 0.00 2019-11-12 09:10:42 2019-11-12 09:11:54 t 1 1 165555 623 0.00 2019-11-12 09:12:01 2019-11-12 09:12:34 t 1 1 165556 623 0.00 2019-11-12 09:13:04 2019-11-12 09:13:07 t 1 1 165559 623 0.00 2019-11-12 09:15:08 2019-11-12 09:15:20 t 1 1 165561 623 0.00 2019-11-12 09:21:27 2019-11-12 09:21:29 t 1 1 165565 623 0.00 2019-11-12 09:22:06 2019-11-12 09:22:11 t 1 1 165566 623 0.00 2019-11-12 09:22:31 2019-11-12 09:22:35 t 1 1 165569 623 0.00 2019-11-12 09:23:34 2019-11-12 09:24:03 t 1 1 165572 637 0.00 2019-11-12 09:27:24 2019-11-12 09:28:45 t 1 1 165575 554 0.00 2019-11-12 09:31:57 2019-11-12 09:31:57 f 1 1 165577 623 0.00 2019-11-12 09:24:30 2019-11-12 09:32:41 t 1 1 165579 591 0.00 2019-11-12 09:22:30 2019-11-12 09:33:26 t 1 1 165581 430 0.00 2019-11-12 09:32:32 2019-11-12 09:35:02 t 1 1 165586 623 0.00 2019-11-12 09:40:30 2019-11-12 09:40:31 t 1 1 165591 623 0.00 2019-11-12 09:42:56 2019-11-12 09:43:14 t 1 1 165595 637 0.00 2019-11-12 09:45:14 2019-11-12 09:46:21 t 1 1 165597 623 0.00 2019-11-12 09:45:51 2019-11-12 09:47:25 t 1 1 165600 637 0.00 2019-11-12 09:50:42 2019-11-12 09:51:44 t 1 1 165601 570 0.00 2019-11-12 09:48:32 2019-11-12 09:51:58 t 1 1 165604 570 0.00 2019-11-12 09:51:56 2019-11-12 09:54:29 t 1 1 165607 564 0.00 2019-11-12 08:39:50 2019-11-12 09:57:02 t 1 1 165617 339 0.00 2019-11-12 10:04:22 2019-11-12 10:04:22 f 1 2 165620 623 0.00 2019-11-12 10:06:45 2019-11-12 10:07:01 t 1 1 165621 637 0.00 2019-11-12 10:04:01 2019-11-12 10:08:01 t 1 1 165629 623 0.00 2019-11-12 10:15:37 2019-11-12 10:17:52 t 1 1 165630 649 0.00 2019-11-12 10:12:28 2019-11-12 10:19:17 t 1 1 165631 607 0.00 2019-11-12 09:36:58 2019-11-12 10:22:02 t 1 1 165640 570 0.00 2019-11-12 10:22:22 2019-11-12 10:28:32 t 1 1 165642 637 0.00 2019-11-12 10:08:17 2019-11-12 10:29:12 t 1 1 165647 623 0.00 2019-11-12 10:35:46 2019-11-12 10:36:08 t 1 1 165650 623 0.00 2019-11-12 10:38:55 2019-11-12 10:39:14 t 1 1 165652 570 0.00 2019-11-12 10:38:08 2019-11-12 10:40:44 t 1 1 165653 623 0.00 2019-11-12 10:41:14 2019-11-12 10:41:23 t 1 1 165655 623 0.00 2019-11-12 10:41:41 2019-11-12 10:41:51 t 1 1 165657 545 0.00 2019-11-12 10:24:36 2019-11-12 10:42:32 t 1 1 165659 637 0.00 2019-11-12 10:29:12 2019-11-12 10:43:04 t 1 1 165660 581 0.00 2019-11-12 10:31:27 2019-11-12 10:43:33 t 1 1 165663 564 0.00 2019-11-12 10:43:06 2019-11-12 10:44:56 t 1 1 165665 607 0.00 2019-11-12 10:22:02 2019-11-12 10:45:45 t 1 1 165666 538 0.00 2019-11-12 10:39:53 2019-11-12 10:46:28 t 1 1 165673 591 0.00 2019-11-12 09:56:28 2019-11-12 10:52:17 t 1 1 165683 611 0.00 2019-11-12 10:55:14 2019-11-12 10:57:44 t 1 1 165684 581 0.00 2019-11-12 10:55:54 2019-11-12 10:58:07 t 1 1 165357 585 0.00 2019-11-12 07:25:56 2019-11-12 07:33:11 t 1 1 165366 220 0.00 2019-11-12 07:36:14 2019-11-12 07:36:47 t 1 1 165370 220 0.00 2019-11-12 07:37:57 2019-11-12 07:38:32 t 1 1 165371 220 0.00 2019-11-12 07:38:31 2019-11-12 07:39:05 t 1 1 165373 220 0.00 2019-11-12 07:39:40 2019-11-12 07:40:17 t 1 1 165377 220 0.00 2019-11-12 07:41:23 2019-11-12 07:41:54 t 1 1 165378 220 0.00 2019-11-12 07:41:54 2019-11-12 07:42:27 t 1 1 165380 220 0.00 2019-11-12 07:43:11 2019-11-12 07:43:46 t 1 1 165381 220 0.00 2019-11-12 07:43:45 2019-11-12 07:44:20 t 1 1 165385 587 0.00 2019-11-12 07:45:29 2019-11-12 07:46:15 t 1 1 165386 220 0.00 2019-11-12 07:46:04 2019-11-12 07:46:37 t 1 1 165387 220 0.00 2019-11-12 07:46:37 2019-11-12 07:47:14 t 1 1 165391 587 0.00 2019-11-12 07:46:22 2019-11-12 07:49:08 t 1 1 165393 220 0.00 2019-11-12 07:49:30 2019-11-12 07:50:05 t 1 1 165395 220 0.00 2019-11-12 07:50:05 2019-11-12 07:50:37 t 1 1 165396 220 0.00 2019-11-12 07:50:37 2019-11-12 07:51:12 t 1 1 165400 220 0.00 2019-11-12 07:52:18 2019-11-12 07:52:51 t 1 1 165401 220 0.00 2019-11-12 07:52:51 2019-11-12 07:53:23 t 1 1 165402 220 0.00 2019-11-12 07:53:23 2019-11-12 07:54:00 t 1 1 165404 566 0.00 2019-11-12 07:36:13 2019-11-12 07:54:46 t 1 1 165411 220 0.00 2019-11-12 07:57:25 2019-11-12 07:58:00 t 1 1 165416 220 0.00 2019-11-12 07:59:40 2019-11-12 08:00:15 t 1 1 165419 220 0.00 2019-11-12 08:01:19 2019-11-12 08:01:51 t 1 1 165420 562 0.00 2019-11-12 08:02:00 2019-11-12 08:02:11 t 1 1 165427 220 0.00 2019-11-12 08:05:00 2019-11-12 08:05:32 t 1 1 165428 220 0.00 2019-11-12 08:05:32 2019-11-12 08:06:06 t 1 1 165430 379 0.00 2019-11-12 08:04:46 2019-11-12 08:06:36 t 1 1 165433 545 0.00 2019-11-12 07:57:26 2019-11-12 08:07:30 t 1 1 165435 562 0.00 2019-11-12 08:07:51 2019-11-12 08:08:23 t 1 1 165439 562 0.00 2019-11-12 08:09:33 2019-11-12 08:09:52 t 1 1 165441 637 0.00 2019-11-12 02:44:36 2019-11-12 08:11:17 t 1 1 165444 220 0.00 2019-11-12 08:12:58 2019-11-12 08:14:38 t 1 1 165447 591 0.00 2019-11-12 08:01:25 2019-11-12 08:16:35 t 1 1 165448 520 0.00 2019-11-12 08:06:14 2019-11-12 08:16:56 t 1 1 165450 220 0.00 2019-11-12 08:16:56 2019-11-12 08:17:31 t 1 1 165453 220 0.00 2019-11-12 08:18:15 2019-11-12 08:18:48 t 1 1 165454 220 0.00 2019-11-12 08:18:48 2019-11-12 08:19:26 t 1 1 165457 591 0.00 2019-11-12 08:16:35 2019-11-12 08:20:45 t 1 1 165458 220 0.00 2019-11-12 08:20:29 2019-11-12 08:21:03 t 1 1 165460 545 0.00 2019-11-12 08:07:30 2019-11-12 08:21:42 t 1 1 165461 220 0.00 2019-11-12 08:21:37 2019-11-12 08:22:10 t 1 1 165463 220 0.00 2019-11-12 08:22:10 2019-11-12 08:22:40 t 1 1 165467 220 0.00 2019-11-12 08:24:20 2019-11-12 08:24:52 t 1 1 165470 220 0.00 2019-11-12 08:25:59 2019-11-12 08:26:32 t 1 1 165481 516 0.00 2019-11-12 08:22:42 2019-11-12 08:30:48 t 1 1 165485 220 0.00 2019-11-12 08:30:52 2019-11-12 08:32:01 t 1 1 165489 220 0.00 2019-11-12 08:32:33 2019-11-12 08:33:08 t 1 1 165494 220 0.00 2019-11-12 08:34:15 2019-11-12 08:34:49 t 1 1 165496 220 0.00 2019-11-12 08:34:48 2019-11-12 08:35:19 t 1 1 165501 623 0.00 2019-11-12 08:37:00 2019-11-12 08:37:36 t 1 1 165502 220 0.00 2019-11-12 08:37:27 2019-11-12 08:38:01 t 1 1 165504 220 0.00 2019-11-12 08:38:00 2019-11-12 08:38:35 t 1 1 165505 220 0.00 2019-11-12 08:38:35 2019-11-12 08:39:09 t 1 1 165511 220 0.00 2019-11-12 08:41:19 2019-11-12 08:41:51 t 1 1 165512 562 0.00 2019-11-12 08:41:53 2019-11-12 08:42:00 t 1 1 165515 220 0.00 2019-11-12 08:41:51 2019-11-12 08:42:24 t 1 1 165516 220 0.00 2019-11-12 08:42:24 2019-11-12 08:42:58 t 1 1 165519 514 0.00 2019-11-12 03:42:47 2019-11-12 08:44:40 t 1 1 165521 220 0.00 2019-11-12 08:45:03 2019-11-12 08:45:36 t 1 1 165524 220 0.00 2019-11-12 08:46:07 2019-11-12 08:46:40 t 1 1 165527 220 0.00 2019-11-12 08:46:39 2019-11-12 08:47:14 t 1 1 165531 220 0.00 2019-11-12 08:48:18 2019-11-12 08:48:53 t 1 1 165532 623 0.00 2019-11-12 08:49:10 2019-11-12 08:49:23 t 1 1 165536 623 0.00 2019-11-12 08:49:51 2019-11-12 08:51:04 t 1 1 165543 623 0.00 2019-11-12 08:57:52 2019-11-12 08:57:54 t 1 1 165544 220 0.00 2019-11-12 08:49:56 2019-11-12 09:00:43 t 1 1 165551 637 0.00 2019-11-12 09:05:56 2019-11-12 09:08:24 t 1 1 165552 625 0.00 2019-11-12 08:27:37 2019-11-12 09:10:19 t 1 1 165567 637 0.00 2019-11-12 09:21:41 2019-11-12 09:22:42 t 1 1 165570 562 0.00 2019-11-12 09:24:02 2019-11-12 09:24:16 t 1 1 165574 430 0.00 2019-11-12 09:30:44 2019-11-12 09:31:10 t 1 1 165576 430 0.00 2019-11-12 09:31:16 2019-11-12 09:32:29 t 1 1 165582 562 0.00 2019-11-12 09:34:39 2019-11-12 09:35:33 t 1 1 165584 623 0.00 2019-11-12 09:39:30 2019-11-12 09:39:31 t 1 1 165587 623 0.00 2019-11-12 09:42:27 2019-11-12 09:42:39 t 1 1 165588 220 0.00 2019-11-12 09:00:43 2019-11-12 09:42:56 t 1 1 165589 220 0.00 2019-11-12 09:42:56 2019-11-12 09:43:07 t 1 1 165592 516 0.00 2019-11-12 09:39:17 2019-11-12 09:43:52 t 1 1 165593 623 0.00 2019-11-12 09:44:23 2019-11-12 09:44:36 t 1 1 165596 570 0.00 2019-11-12 09:13:56 2019-11-12 09:46:51 t 1 1 165598 623 0.00 2019-11-12 09:48:52 2019-11-12 09:50:07 t 1 1 165602 578 0.00 2019-11-11 22:59:42 2019-11-12 09:52:33 t 1 1 165603 562 0.00 2019-11-12 09:53:32 2019-11-12 09:53:56 t 1 1 165605 481 0.00 2019-11-12 09:22:10 2019-11-12 09:54:52 t 1 1 165608 637 0.00 2019-11-12 09:52:57 2019-11-12 09:57:20 t 1 1 165609 379 0.00 2019-11-12 08:51:03 2019-11-12 09:58:22 t 1 1 165610 623 0.00 2019-11-12 09:53:52 2019-11-12 09:59:27 t 1 1 165613 637 0.00 2019-11-12 10:01:24 2019-11-12 10:02:26 t 1 1 165615 623 0.00 2019-11-12 10:02:19 2019-11-12 10:02:52 t 1 1 165616 623 0.00 2019-11-12 10:02:52 2019-11-12 10:03:36 t 1 1 165618 562 0.00 2019-11-12 10:04:13 2019-11-12 10:04:42 t 1 1 165624 623 0.00 2019-11-12 10:08:43 2019-11-12 10:09:56 t 1 1 165627 623 0.00 2019-11-12 10:10:55 2019-11-12 10:15:37 t 1 1 165628 562 0.00 2019-11-12 10:15:01 2019-11-12 10:16:05 t 1 1 165634 538 0.00 2019-11-12 08:56:21 2019-11-12 10:25:25 t 1 1 165638 564 0.00 2019-11-12 10:24:53 2019-11-12 10:28:28 t 1 1 165641 487 0.00 2019-11-12 10:28:27 2019-11-12 10:28:32 t 1 2 165643 623 0.00 2019-11-12 10:25:51 2019-11-12 10:30:46 t 1 1 165644 487 0.00 2019-11-12 10:31:00 2019-11-12 10:31:06 t 1 2 165645 562 0.00 2019-11-12 10:34:40 2019-11-12 10:35:12 t 1 1 165648 623 0.00 2019-11-12 10:36:42 2019-11-12 10:37:09 t 1 1 165654 564 0.00 2019-11-12 10:28:28 2019-11-12 10:41:25 t 1 1 165662 581 0.00 2019-11-12 10:43:33 2019-11-12 10:44:36 t 1 1 165664 623 0.00 2019-11-12 10:44:53 2019-11-12 10:45:24 t 1 1 165667 564 0.00 2019-11-12 10:45:15 2019-11-12 10:48:15 t 1 1 165668 623 0.00 2019-11-12 10:46:31 2019-11-12 10:48:44 t 1 1 165669 623 0.00 2019-11-12 10:49:52 2019-11-12 10:50:34 t 1 1 165670 585 0.00 2019-11-12 10:49:16 2019-11-12 10:50:57 t 1 1 165674 562 0.00 2019-11-12 10:51:20 2019-11-12 10:53:18 t 1 1 165675 562 0.00 2019-11-12 10:53:28 2019-11-12 10:53:33 t 1 1 165679 562 0.00 2019-11-12 10:54:35 2019-11-12 10:54:50 t 1 1 165681 562 0.00 2019-11-12 10:55:14 2019-11-12 10:55:59 t 1 1 165697 625 0.00 2019-11-12 10:25:53 2019-11-12 11:03:16 t 1 1 165699 637 0.00 2019-11-12 10:58:55 2019-11-12 11:04:03 t 1 1 165703 562 0.00 2019-11-12 11:05:36 2019-11-12 11:06:25 t 1 1 165704 645 0.00 2019-11-12 11:06:55 2019-11-12 11:06:58 t 1 1 165705 587 0.00 2019-11-12 11:06:02 2019-11-12 11:07:58 t 1 1 165707 490 0.00 2019-11-12 11:01:11 2019-11-12 11:08:50 t 1 1 165709 637 0.00 2019-11-12 11:07:03 2019-11-12 11:10:10 t 1 1 165711 545 0.00 2019-11-12 10:42:32 2019-11-12 11:11:22 t 1 1 165713 564 0.00 2019-11-12 10:48:24 2019-11-12 11:11:30 t 1 1 165714 623 0.00 2019-11-12 11:11:49 2019-11-12 11:11:56 t 1 1 165715 645 0.00 2019-11-12 11:11:59 2019-11-12 11:12:06 t 1 1 165716 564 0.00 2019-11-12 11:11:55 2019-11-12 11:12:16 t 1 1 165718 562 0.00 2019-11-12 11:12:14 2019-11-12 11:12:43 t 1 1 165725 379 0.00 2019-11-12 09:58:22 2019-11-12 11:16:25 t 1 1 165731 490 0.00 2019-11-12 11:14:47 2019-11-12 11:21:57 t 1 1 165737 623 0.00 2019-11-12 11:26:47 2019-11-12 11:26:57 t 1 1 165739 481 0.00 2019-11-12 10:00:11 2019-11-12 11:29:21 t 1 1 165743 481 0.00 2019-11-12 11:29:21 2019-11-12 11:31:25 t 1 1 165745 615 0.00 2019-11-12 11:32:03 2019-11-12 11:34:23 t 1 1 165746 562 0.00 2019-11-12 11:21:14 2019-11-12 11:35:02 t 1 1 165749 593 0.00 2019-11-12 10:39:04 2019-11-12 11:37:55 t 1 1 165750 562 0.00 2019-11-12 11:37:22 2019-11-12 11:38:02 t 1 1 165752 637 0.00 2019-11-12 11:31:43 2019-11-12 11:38:56 t 1 1 165754 645 0.00 2019-11-12 11:41:08 2019-11-12 11:43:23 t 1 1 165756 623 0.00 2019-11-12 11:35:19 2019-11-12 11:44:51 t 1 1 165759 623 0.00 2019-11-12 11:47:24 2019-11-12 11:47:32 t 1 1 165762 637 0.00 2019-11-12 11:38:56 2019-11-12 11:48:41 t 1 1 165766 623 0.00 2019-11-12 11:50:44 2019-11-12 11:51:27 t 1 1 165769 562 0.00 2019-11-12 11:53:29 2019-11-12 11:55:07 t 1 1 165770 645 0.00 2019-11-12 11:56:15 2019-11-12 11:58:07 t 1 1 165774 562 0.00 2019-11-12 11:58:21 2019-11-12 11:59:53 t 1 1 165776 416 0.00 2019-11-12 11:31:48 2019-11-12 12:01:09 t 1 1 165781 611 0.00 2019-11-12 12:04:17 2019-11-12 12:05:53 t 1 1 165792 422 0.00 2019-11-12 12:13:50 2019-11-12 12:14:02 t 1 1 165794 422 0.00 2019-11-12 12:15:12 2019-11-12 12:15:23 t 1 1 165799 585 0.00 2019-11-12 12:08:04 2019-11-12 12:19:45 t 1 1 165802 422 0.00 2019-11-12 12:20:27 2019-11-12 12:22:55 t 1 1 165803 422 0.00 2019-11-12 12:23:10 2019-11-12 12:23:20 t 1 1 165805 623 0.00 2019-11-12 12:23:41 2019-11-12 12:24:45 t 1 1 165806 422 0.00 2019-11-12 12:25:21 2019-11-12 12:26:37 t 1 1 165809 591 0.00 2019-11-12 12:26:02 2019-11-12 12:27:45 t 1 1 165810 562 0.00 2019-11-12 12:28:06 2019-11-12 12:28:26 t 1 1 165811 585 0.00 2019-11-12 12:22:52 2019-11-12 12:29:30 t 1 1 165813 611 0.00 2019-11-12 12:09:43 2019-11-12 12:29:46 t 1 1 165815 623 0.00 2019-11-12 12:30:00 2019-11-12 12:30:08 t 1 1 165817 615 0.00 2019-11-12 12:29:31 2019-11-12 12:32:47 t 1 1 165818 422 0.00 2019-11-12 12:33:18 2019-11-12 12:33:50 t 1 1 165821 220 0.00 2019-11-12 12:28:28 2019-11-12 12:35:03 t 1 1 165827 611 0.00 2019-11-12 12:31:54 2019-11-12 12:45:07 t 1 1 165829 591 0.00 2019-11-12 12:39:09 2019-11-12 12:45:30 t 1 1 165831 562 0.00 2019-11-12 12:45:15 2019-11-12 12:45:47 t 1 1 165832 416 0.00 2019-11-12 12:37:49 2019-11-12 12:46:23 t 1 1 165835 422 0.00 2019-11-12 12:48:44 2019-11-12 12:49:06 t 1 1 165838 623 0.00 2019-11-12 12:49:20 2019-11-12 12:52:03 t 1 1 165842 545 0.00 2019-11-12 12:15:14 2019-11-12 12:55:00 t 1 1 165843 570 0.00 2019-11-12 12:45:35 2019-11-12 12:55:38 t 1 1 165846 422 0.00 2019-11-12 12:55:47 2019-11-12 12:56:32 t 1 1 165852 631 0.00 2019-11-12 12:56:26 2019-11-12 12:59:50 t 1 1 165854 562 0.00 2019-11-12 13:00:11 2019-11-12 13:00:38 t 1 1 165855 623 0.00 2019-11-12 13:00:18 2019-11-12 13:01:50 t 1 1 165856 570 0.00 2019-11-12 12:59:07 2019-11-12 13:02:19 t 1 1 165861 607 0.00 2019-11-12 13:02:26 2019-11-12 13:05:16 t 1 1 165864 488 0.00 2019-11-12 12:59:10 2019-11-12 13:07:19 t 1 1 165866 545 0.00 2019-11-12 12:55:00 2019-11-12 13:08:45 t 1 1 165867 570 0.00 2019-11-12 13:02:19 2019-11-12 13:09:51 t 1 1 165873 623 0.00 2019-11-12 13:08:43 2019-11-12 13:14:26 t 1 1 165875 623 0.00 2019-11-12 13:14:31 2019-11-12 13:14:41 t 1 1 165878 422 0.00 2019-11-12 13:17:33 2019-11-12 13:18:07 t 1 1 165882 488 0.00 2019-11-12 13:07:19 2019-11-12 13:19:20 t 1 1 165884 485 0.00 2019-11-12 13:14:46 2019-11-12 13:19:50 t 1 1 165885 645 0.00 2019-11-12 13:23:59 2019-11-12 13:24:08 t 1 1 165887 623 0.00 2019-11-12 13:23:16 2019-11-12 13:24:25 t 1 1 165891 451 0.00 2019-11-12 13:16:09 2019-11-12 13:25:17 t 1 1 165899 587 0.00 2019-11-12 13:25:44 2019-11-12 13:30:31 t 1 1 165903 516 0.00 2019-11-12 13:28:52 2019-11-12 13:33:30 t 1 1 165904 587 0.00 2019-11-12 13:30:48 2019-11-12 13:36:01 t 1 1 165905 564 0.00 2019-11-12 13:04:47 2019-11-12 13:36:27 t 1 1 165910 623 0.00 2019-11-12 13:28:58 2019-11-12 13:40:10 t 1 1 165919 514 0.00 2019-11-12 13:35:34 2019-11-12 13:45:27 t 1 1 165923 595 0.00 2019-11-12 13:46:40 2019-11-12 13:47:23 t 1 1 165929 623 0.00 2019-11-12 13:52:46 2019-11-12 13:53:20 t 1 1 165934 422 0.00 2019-11-12 13:51:12 2019-11-12 13:59:21 t 1 1 165940 627 0.00 2019-11-12 13:54:19 2019-11-12 14:02:37 t 1 1 165943 645 0.00 2019-11-12 14:03:22 2019-11-12 14:04:08 t 1 1 165946 562 0.00 2019-11-12 14:05:18 2019-11-12 14:05:37 t 1 1 165948 627 0.00 2019-11-12 14:08:15 2019-11-12 14:08:26 t 1 1 165949 562 0.00 2019-11-12 14:08:27 2019-11-12 14:09:05 t 1 1 165954 566 0.00 2019-11-12 14:00:58 2019-11-12 14:11:15 t 1 1 165956 562 0.00 2019-11-12 14:13:12 2019-11-12 14:13:31 t 1 1 165960 483 0.00 2019-11-12 14:13:35 2019-11-12 14:15:53 t 1 1 165962 422 0.00 2019-11-12 14:14:43 2019-11-12 14:16:21 t 1 1 165963 645 0.00 2019-11-12 14:16:59 2019-11-12 14:17:29 t 1 1 165968 512 0.00 2019-11-12 14:01:39 2019-11-12 14:21:32 t 1 1 165970 623 0.00 2019-11-12 14:15:18 2019-11-12 14:23:24 t 1 1 165983 422 0.00 2019-11-12 14:31:27 2019-11-12 14:31:41 t 1 1 165984 566 0.00 2019-11-12 14:17:40 2019-11-12 14:33:16 t 1 1 165987 516 0.00 2019-11-12 14:19:23 2019-11-12 14:34:49 t 1 1 165989 623 0.00 2019-11-12 14:30:19 2019-11-12 14:36:33 t 1 1 165990 422 0.00 2019-11-12 14:36:55 2019-11-12 14:37:08 t 1 1 165993 416 0.00 2019-11-12 14:03:30 2019-11-12 14:37:54 t 1 1 165994 566 0.00 2019-11-12 14:33:16 2019-11-12 14:38:10 t 1 1 165998 422 0.00 2019-11-12 14:40:43 2019-11-12 14:40:49 t 1 1 165671 562 0.00 2019-11-12 10:42:48 2019-11-12 10:51:20 t 1 1 165672 623 0.00 2019-11-12 10:51:34 2019-11-12 10:51:42 t 1 1 165676 637 0.00 2019-11-12 10:48:39 2019-11-12 10:53:36 t 1 1 165677 611 0.00 2019-11-12 10:53:20 2019-11-12 10:54:13 t 1 1 165678 607 0.00 2019-11-12 10:45:45 2019-11-12 10:54:48 t 1 1 165680 611 0.00 2019-11-12 10:54:23 2019-11-12 10:55:15 t 1 1 165682 607 0.00 2019-11-12 10:55:21 2019-11-12 10:56:25 t 1 1 165685 562 0.00 2019-11-12 10:56:10 2019-11-12 10:58:15 t 1 1 165686 637 0.00 2019-11-12 10:53:36 2019-11-12 10:58:56 t 1 1 165687 587 0.00 2019-11-12 10:58:37 2019-11-12 10:59:14 t 1 1 165689 623 0.00 2019-11-12 10:53:47 2019-11-12 11:00:21 t 1 1 165691 587 0.00 2019-11-12 11:01:20 2019-11-12 11:01:38 t 1 1 165694 538 0.00 2019-11-12 10:45:35 2019-11-12 11:02:18 t 1 1 165695 562 0.00 2019-11-12 10:59:09 2019-11-12 11:02:37 t 1 1 165696 611 0.00 2019-11-12 10:58:05 2019-11-12 11:03:00 t 1 1 165701 611 0.00 2019-11-12 11:03:31 2019-11-12 11:04:56 t 1 1 165702 587 0.00 2019-11-12 11:02:24 2019-11-12 11:06:02 t 1 1 165712 591 0.00 2019-11-12 11:00:33 2019-11-12 11:11:28 t 1 1 165721 490 0.00 2019-11-12 11:08:50 2019-11-12 11:14:47 t 1 1 165723 591 0.00 2019-11-12 11:12:53 2019-11-12 11:15:57 t 1 1 165724 623 0.00 2019-11-12 11:15:57 2019-11-12 11:16:16 t 1 1 165729 637 0.00 2019-11-12 11:10:10 2019-11-12 11:20:27 t 1 1 165732 623 0.00 2019-11-12 11:21:47 2019-11-12 11:21:57 t 1 1 165734 623 0.00 2019-11-12 11:22:41 2019-11-12 11:22:50 t 1 1 165735 430 0.00 2019-11-12 11:23:12 2019-11-12 11:23:31 t 1 1 165741 422 0.00 2019-11-12 11:27:38 2019-11-12 11:29:41 t 1 1 165744 615 0.00 2019-11-12 11:12:26 2019-11-12 11:32:03 t 1 1 165747 645 0.00 2019-11-12 11:35:12 2019-11-12 11:37:07 t 1 1 165748 487 0.00 2019-11-12 10:31:13 2019-11-12 11:37:52 t 1 2 165753 562 0.00 2019-11-12 11:41:24 2019-11-12 11:41:37 t 1 1 165755 562 0.00 2019-11-12 11:43:09 2019-11-12 11:44:21 t 1 1 165757 562 0.00 2019-11-12 11:45:59 2019-11-12 11:46:24 t 1 1 165758 422 0.00 2019-11-12 11:29:47 2019-11-12 11:47:31 t 1 1 165761 570 0.00 2019-11-12 11:37:27 2019-11-12 11:48:33 t 1 1 165763 591 0.00 2019-11-12 11:45:29 2019-11-12 11:50:58 t 1 1 165765 652 0.00 2019-11-12 11:51:07 2019-11-12 11:51:21 t 1 1 165768 652 0.00 2019-11-12 11:51:31 2019-11-12 11:54:57 t 1 1 165771 637 0.00 2019-11-12 11:48:41 2019-11-12 11:58:26 t 1 1 165775 611 0.00 2019-11-12 11:58:55 2019-11-12 12:01:03 t 1 1 165785 593 0.00 2019-11-12 11:37:55 2019-11-12 12:07:41 t 1 1 165786 422 0.00 2019-11-12 12:05:58 2019-11-12 12:08:12 t 1 1 165788 637 0.00 2019-11-12 11:58:26 2019-11-12 12:08:26 t 1 1 165791 562 0.00 2019-11-12 12:12:59 2019-11-12 12:13:25 t 1 1 165796 422 0.00 2019-11-12 12:16:53 2019-11-12 12:17:02 t 1 1 165797 623 0.00 2019-11-12 12:17:53 2019-11-12 12:18:04 t 1 1 165798 615 0.00 2019-11-12 12:11:24 2019-11-12 12:19:39 t 1 1 165804 562 0.00 2019-11-12 12:24:13 2019-11-12 12:24:37 t 1 1 165807 623 0.00 2019-11-12 12:26:42 2019-11-12 12:26:49 t 1 1 165808 570 0.00 2019-11-12 12:20:45 2019-11-12 12:27:27 t 1 1 165814 623 0.00 2019-11-12 12:29:46 2019-11-12 12:29:54 t 1 1 165816 637 0.00 2019-11-12 12:08:26 2019-11-12 12:30:58 t 1 1 165820 623 0.00 2019-11-12 12:34:29 2019-11-12 12:34:56 t 1 1 165822 562 0.00 2019-11-12 12:34:58 2019-11-12 12:35:23 t 1 1 165823 416 0.00 2019-11-12 12:23:31 2019-11-12 12:37:27 t 1 1 165824 422 0.00 2019-11-12 12:38:54 2019-11-12 12:39:13 t 1 1 165828 456 0.00 2019-11-12 12:18:04 2019-11-12 12:45:23 t 1 1 165830 570 0.00 2019-11-12 12:32:04 2019-11-12 12:45:36 t 1 1 165834 512 0.00 2019-11-12 12:08:35 2019-11-12 12:49:06 t 1 1 165840 623 0.00 2019-11-12 12:52:03 2019-11-12 12:52:58 t 1 1 165841 488 0.00 2019-11-12 12:49:30 2019-11-12 12:53:58 t 1 1 165844 562 0.00 2019-11-12 12:56:04 2019-11-12 12:56:28 t 1 1 165847 623 0.00 2019-11-12 12:52:58 2019-11-12 12:58:32 t 1 1 165848 654 0.00 2019-11-12 12:56:59 2019-11-12 12:59:03 t 1 1 165850 488 0.00 2019-11-12 12:53:58 2019-11-12 12:59:10 t 1 1 165851 623 0.00 2019-11-12 12:58:32 2019-11-12 12:59:26 t 1 1 165853 623 0.00 2019-11-12 12:59:25 2019-11-12 13:00:18 t 1 1 165860 564 0.00 2019-11-12 11:14:08 2019-11-12 13:04:47 t 1 1 165862 562 0.00 2019-11-12 13:06:08 2019-11-12 13:06:33 t 1 1 165863 422 0.00 2019-11-12 13:06:52 2019-11-12 13:07:16 t 1 1 165868 516 0.00 2019-11-12 13:04:05 2019-11-12 13:11:45 t 1 1 165870 562 0.00 2019-11-12 13:11:04 2019-11-12 13:12:52 t 1 1 165871 562 0.00 2019-11-12 13:13:26 2019-11-12 13:13:51 t 1 1 165876 481 0.00 2019-11-12 11:31:35 2019-11-12 13:15:55 t 1 1 165877 451 0.00 2019-11-12 13:01:21 2019-11-12 13:16:09 t 1 1 165881 623 0.00 2019-11-12 13:18:53 2019-11-12 13:19:14 t 1 1 165883 623 0.00 2019-11-12 13:19:40 2019-11-12 13:19:43 t 1 1 165886 570 0.00 2019-11-12 13:09:50 2019-11-12 13:24:09 t 1 1 165890 562 0.00 2019-11-12 13:24:47 2019-11-12 13:25:13 t 1 1 165894 422 0.00 2019-11-12 13:25:25 2019-11-12 13:26:07 t 1 1 165897 623 0.00 2019-11-12 13:27:07 2019-11-12 13:28:25 t 1 1 165907 595 0.00 2019-11-12 13:29:59 2019-11-12 13:38:31 t 1 1 165909 545 0.00 2019-11-12 13:29:10 2019-11-12 13:39:13 t 1 1 165911 456 0.00 2019-11-12 12:45:52 2019-11-12 13:40:22 t 1 1 165914 595 0.00 2019-11-12 13:41:56 2019-11-12 13:42:03 t 1 1 165916 595 0.00 2019-11-12 13:42:47 2019-11-12 13:43:10 t 1 1 165921 562 0.00 2019-11-12 13:37:08 2019-11-12 13:45:38 t 1 1 165922 623 0.00 2019-11-12 13:41:28 2019-11-12 13:47:12 t 1 1 165924 562 0.00 2019-11-12 13:45:38 2019-11-12 13:47:48 t 1 1 165930 627 0.00 2019-11-12 13:51:51 2019-11-12 13:54:19 t 1 1 165933 645 0.00 2019-11-12 13:57:17 2019-11-12 13:58:00 t 1 1 165936 566 0.00 2019-11-12 13:55:16 2019-11-12 14:00:58 t 1 1 165937 587 0.00 2019-11-12 13:43:00 2019-11-12 14:01:47 t 1 1 165938 551 0.00 2019-11-12 13:06:01 2019-11-12 14:02:15 t 1 1 165941 456 0.00 2019-11-12 13:40:30 2019-11-12 14:03:23 t 1 1 165951 627 0.00 2019-11-12 14:09:12 2019-11-12 14:09:44 t 1 1 165952 422 0.00 2019-11-12 14:09:24 2019-11-12 14:10:25 t 1 1 165953 627 0.00 2019-11-12 14:10:52 2019-11-12 14:11:14 t 1 1 165955 587 0.00 2019-11-12 14:01:47 2019-11-12 14:12:08 t 1 1 165958 623 0.00 2019-11-12 14:02:25 2019-11-12 14:15:18 t 1 1 165961 652 0.00 2019-11-12 14:13:36 2019-11-12 14:16:03 t 1 1 165965 591 0.00 2019-11-12 13:52:28 2019-11-12 14:18:39 t 1 1 165966 481 0.00 2019-11-12 14:09:19 2019-11-12 14:19:03 t 1 1 165967 422 0.00 2019-11-12 14:18:31 2019-11-12 14:19:34 t 1 1 165969 551 0.00 2019-11-12 14:15:32 2019-11-12 14:22:17 t 1 1 165971 422 0.00 2019-11-12 14:22:29 2019-11-12 14:23:31 t 1 1 165972 562 0.00 2019-11-12 14:23:55 2019-11-12 14:24:06 t 1 1 165974 645 0.00 2019-11-12 14:24:07 2019-11-12 14:25:20 t 1 1 165688 587 0.00 2019-11-12 10:59:42 2019-11-12 11:00:02 t 1 1 165690 645 0.00 2019-11-12 10:59:33 2019-11-12 11:01:36 t 1 1 165692 645 0.00 2019-11-12 11:01:43 2019-11-12 11:01:57 t 1 1 165693 587 0.00 2019-11-12 11:02:11 2019-11-12 11:02:12 t 1 1 165698 562 0.00 2019-11-12 11:03:45 2019-11-12 11:03:57 t 1 1 165700 645 0.00 2019-11-12 11:02:59 2019-11-12 11:04:05 t 1 1 165706 625 0.00 2019-11-12 11:02:20 2019-11-12 11:08:42 t 1 1 165708 645 0.00 2019-11-12 11:09:02 2019-11-12 11:09:08 t 1 1 165710 623 0.00 2019-11-12 11:09:23 2019-11-12 11:10:25 t 1 1 165717 615 0.00 2019-11-12 11:03:55 2019-11-12 11:12:26 t 1 1 165719 564 0.00 2019-11-12 11:12:16 2019-11-12 11:14:02 t 1 1 165720 645 0.00 2019-11-12 11:14:11 2019-11-12 11:14:17 t 1 1 165722 623 0.00 2019-11-12 11:15:36 2019-11-12 11:15:50 t 1 1 165726 645 0.00 2019-11-12 11:17:03 2019-11-12 11:17:08 t 1 1 165727 623 0.00 2019-11-12 11:18:28 2019-11-12 11:18:42 t 1 1 165728 623 0.00 2019-11-12 11:19:10 2019-11-12 11:19:32 t 1 1 165730 623 0.00 2019-11-12 11:20:26 2019-11-12 11:20:35 t 1 1 165733 637 0.00 2019-11-12 11:21:19 2019-11-12 11:22:47 t 1 1 165736 545 0.00 2019-11-12 11:11:22 2019-11-12 11:26:07 t 1 1 165738 591 0.00 2019-11-12 11:20:32 2019-11-12 11:27:37 t 1 1 165740 625 0.00 2019-11-12 11:08:45 2019-11-12 11:29:28 t 1 1 165742 623 0.00 2019-11-12 11:30:16 2019-11-12 11:30:25 t 1 1 165751 545 0.00 2019-11-12 11:26:07 2019-11-12 11:38:28 t 1 1 165760 562 0.00 2019-11-12 11:48:01 2019-11-12 11:48:14 t 1 1 165764 516 0.00 2019-11-12 11:45:22 2019-11-12 11:51:14 t 1 1 165767 623 0.00 2019-11-12 11:52:27 2019-11-12 11:52:35 t 1 1 165772 422 0.00 2019-11-12 11:47:38 2019-11-12 11:58:39 t 1 1 165773 514 0.00 2019-11-12 11:58:01 2019-11-12 11:59:03 t 1 1 165777 422 0.00 2019-11-12 12:00:38 2019-11-12 12:01:20 t 1 1 165778 562 0.00 2019-11-12 12:02:33 2019-11-12 12:02:42 t 1 1 165779 623 0.00 2019-11-12 12:02:56 2019-11-12 12:03:31 t 1 1 165780 652 0.00 2019-11-12 11:54:57 2019-11-12 12:05:36 t 1 1 165782 615 0.00 2019-11-12 11:59:19 2019-11-12 12:05:57 t 1 1 165783 512 0.00 2019-11-12 11:26:25 2019-11-12 12:06:06 t 1 1 165784 623 0.00 2019-11-12 12:07:24 2019-11-12 12:07:35 t 1 1 165787 611 0.00 2019-11-12 12:05:53 2019-11-12 12:08:22 t 1 1 165789 611 0.00 2019-11-12 12:08:22 2019-11-12 12:09:43 t 1 1 165790 422 0.00 2019-11-12 12:11:03 2019-11-12 12:11:38 t 1 1 165793 545 0.00 2019-11-12 11:38:28 2019-11-12 12:15:14 t 1 1 165795 562 0.00 2019-11-12 12:13:42 2019-11-12 12:15:30 t 1 1 165800 623 0.00 2019-11-12 12:20:38 2019-11-12 12:20:47 t 1 1 165801 416 0.00 2019-11-12 12:03:46 2019-11-12 12:22:35 t 1 1 165812 615 0.00 2019-11-12 12:20:26 2019-11-12 12:29:31 t 1 1 165819 422 0.00 2019-11-12 12:34:18 2019-11-12 12:34:31 t 1 1 165825 422 0.00 2019-11-12 12:39:19 2019-11-12 12:39:49 t 1 1 165826 623 0.00 2019-11-12 12:35:16 2019-11-12 12:43:09 t 1 1 165833 607 0.00 2019-11-12 12:26:59 2019-11-12 12:48:17 t 1 1 165836 623 0.00 2019-11-12 12:43:10 2019-11-12 12:49:20 t 1 1 165837 379 0.00 2019-11-12 11:16:25 2019-11-12 12:50:40 t 1 1 165839 422 0.00 2019-11-12 12:49:21 2019-11-12 12:52:14 t 1 1 165845 566 0.00 2019-11-12 12:53:17 2019-11-12 12:56:32 t 1 1 165849 570 0.00 2019-11-12 12:55:38 2019-11-12 12:59:08 t 1 1 165857 607 0.00 2019-11-12 12:58:39 2019-11-12 13:02:26 t 1 1 165858 566 0.00 2019-11-12 12:56:32 2019-11-12 13:02:57 t 1 1 165859 623 0.00 2019-11-12 13:03:34 2019-11-12 13:03:37 t 1 1 165865 623 0.00 2019-11-12 13:03:52 2019-11-12 13:08:43 t 1 1 165869 607 0.00 2019-11-12 13:05:16 2019-11-12 13:12:37 t 1 1 165872 566 0.00 2019-11-12 13:02:57 2019-11-12 13:14:03 t 1 1 165874 485 0.00 2019-11-12 13:08:12 2019-11-12 13:14:26 t 1 1 165879 623 0.00 2019-11-12 13:16:19 2019-11-12 13:18:32 t 1 1 165880 566 0.00 2019-11-12 13:14:03 2019-11-12 13:19:11 t 1 1 165888 562 0.00 2019-11-12 13:14:50 2019-11-12 13:24:26 t 1 1 165889 623 0.00 2019-11-12 13:24:52 2019-11-12 13:24:54 t 1 1 165892 623 0.00 2019-11-12 13:25:08 2019-11-12 13:25:20 t 1 1 165893 562 0.00 2019-11-12 13:25:24 2019-11-12 13:26:07 t 1 1 165895 623 0.00 2019-11-12 13:26:34 2019-11-12 13:26:55 t 1 1 165896 623 0.00 2019-11-12 13:27:20 2019-11-12 13:28:25 t 1 1 165898 562 0.00 2019-11-12 13:28:29 2019-11-12 13:28:42 t 1 1 165900 581 0.00 2019-11-12 13:16:14 2019-11-12 13:30:35 t 1 1 165901 654 0.00 2019-11-12 13:25:41 2019-11-12 13:31:51 t 1 1 165902 654 0.00 2019-11-12 13:31:51 2019-11-12 13:32:53 t 1 1 165906 587 0.00 2019-11-12 13:36:11 2019-11-12 13:38:11 t 1 1 165908 645 0.00 2019-11-12 13:36:11 2019-11-12 13:39:12 t 1 1 165912 623 0.00 2019-11-12 13:40:17 2019-11-12 13:40:40 t 1 1 165913 623 0.00 2019-11-12 13:40:52 2019-11-12 13:41:19 t 1 1 165915 595 0.00 2019-11-12 13:42:13 2019-11-12 13:42:37 t 1 1 165917 422 0.00 2019-11-12 13:27:13 2019-11-12 13:44:11 t 1 1 165918 379 0.00 2019-11-12 12:50:40 2019-11-12 13:45:00 t 1 1 165920 591 0.00 2019-11-12 12:52:56 2019-11-12 13:45:30 t 1 1 165925 595 0.00 2019-11-12 13:47:37 2019-11-12 13:47:59 t 1 1 165926 422 0.00 2019-11-12 13:48:30 2019-11-12 13:48:53 t 1 1 165927 562 0.00 2019-11-12 13:48:54 2019-11-12 13:49:03 t 1 1 165928 623 0.00 2019-11-12 13:47:12 2019-11-12 13:50:48 t 1 1 165931 485 0.00 2019-11-12 13:48:37 2019-11-12 13:54:23 t 1 1 165932 545 0.00 2019-11-12 13:39:13 2019-11-12 13:56:20 t 1 1 165935 562 0.00 2019-11-12 13:59:17 2019-11-12 13:59:39 t 1 1 165939 623 0.00 2019-11-12 13:54:24 2019-11-12 14:02:25 t 1 1 165942 416 0.00 2019-11-12 12:48:43 2019-11-12 14:03:56 t 1 1 165944 562 0.00 2019-11-12 14:02:48 2019-11-12 14:04:39 t 1 1 165945 627 0.00 2019-11-12 14:02:37 2019-11-12 14:05:16 t 1 1 165947 481 0.00 2019-11-12 13:15:55 2019-11-12 14:08:05 t 1 1 165950 652 0.00 2019-11-12 13:58:55 2019-11-12 14:09:09 t 1 1 165957 422 0.00 2019-11-12 14:11:31 2019-11-12 14:14:15 t 1 1 165959 551 0.00 2019-11-12 14:02:15 2019-11-12 14:15:32 t 1 1 165964 566 0.00 2019-11-12 14:11:15 2019-11-12 14:17:40 t 1 1 165973 587 0.00 2019-11-12 14:12:08 2019-11-12 14:24:31 t 1 1 165975 422 0.00 2019-11-12 14:26:55 2019-11-12 14:27:30 t 1 1 165976 627 0.00 2019-11-12 14:11:38 2019-11-12 14:28:05 t 1 1 165978 422 0.00 2019-11-12 14:29:53 2019-11-12 14:30:00 t 1 1 165982 551 0.00 2019-11-12 14:22:17 2019-11-12 14:31:33 t 1 1 165986 562 0.00 2019-11-12 14:30:35 2019-11-12 14:34:00 t 1 1 165988 422 0.00 2019-11-12 14:34:51 2019-11-12 14:35:36 t 1 1 165992 422 0.00 2019-11-12 14:37:36 2019-11-12 14:37:48 t 1 1 165997 623 0.00 2019-11-12 14:40:18 2019-11-12 14:40:29 t 1 1 165999 623 0.00 2019-11-12 14:41:37 2019-11-12 14:41:51 t 1 1 166002 587 0.00 2019-11-12 14:24:31 2019-11-12 14:42:53 t 1 1 166005 645 0.00 2019-11-12 14:42:57 2019-11-12 14:44:59 t 1 1 165977 422 0.00 2019-11-12 14:27:37 2019-11-12 14:28:42 t 1 1 165979 623 0.00 2019-11-12 14:23:24 2019-11-12 14:30:19 t 1 1 165980 591 0.00 2019-11-12 14:18:53 2019-11-12 14:30:41 t 1 1 165981 481 0.00 2019-11-12 14:19:28 2019-11-12 14:31:19 t 1 1 165985 585 0.00 2019-11-12 14:27:12 2019-11-12 14:33:57 t 1 1 165991 551 0.00 2019-11-12 14:31:33 2019-11-12 14:37:48 t 1 1 165995 623 0.00 2019-11-12 14:38:01 2019-11-12 14:38:12 t 1 1 165996 488 0.00 2019-11-12 14:39:30 2019-11-12 14:40:04 t 1 1 166001 220 0.00 2019-11-12 14:41:42 2019-11-12 14:42:40 t 1 1 166003 623 0.00 2019-11-12 14:42:38 2019-11-12 14:43:01 t 1 1 166006 570 0.00 2019-11-12 13:24:09 2019-11-12 14:45:26 t 1 1 166012 637 0.00 2019-11-12 14:48:24 2019-11-12 14:50:20 t 1 1 166016 551 0.00 2019-11-12 14:37:48 2019-11-12 14:52:37 t 1 1 166017 637 0.00 2019-11-12 14:52:34 2019-11-12 14:53:06 t 1 1 166018 570 0.00 2019-11-12 14:50:05 2019-11-12 14:54:19 t 1 1 166021 379 0.00 2019-11-12 13:45:00 2019-11-12 14:56:49 t 1 1 166032 623 0.00 2019-11-12 15:02:14 2019-11-12 15:02:26 t 1 1 166033 623 0.00 2019-11-12 15:02:31 2019-11-12 15:02:36 t 1 1 166034 422 0.00 2019-11-12 14:52:17 2019-11-12 15:03:11 t 1 1 166037 570 0.00 2019-11-12 14:58:43 2019-11-12 15:06:25 t 1 1 166039 623 0.00 2019-11-12 15:07:06 2019-11-12 15:07:07 t 1 1 166041 422 0.00 2019-11-12 15:03:11 2019-11-12 15:07:41 t 1 1 166042 422 0.00 2019-11-12 15:07:42 2019-11-12 15:08:03 t 1 1 166045 422 0.00 2019-11-12 15:11:58 2019-11-12 15:12:12 t 1 1 166048 587 0.00 2019-11-12 14:57:34 2019-11-12 15:12:23 t 1 1 166050 585 0.00 2019-11-12 15:07:14 2019-11-12 15:16:07 t 1 1 166052 623 0.00 2019-11-12 15:14:07 2019-11-12 15:17:22 t 1 1 166054 422 0.00 2019-11-12 15:16:49 2019-11-12 15:17:41 t 1 1 166055 422 0.00 2019-11-12 15:18:12 2019-11-12 15:18:26 t 1 1 166060 422 0.00 2019-11-12 15:20:13 2019-11-12 15:20:20 t 1 1 166065 220 0.00 2019-11-12 15:01:13 2019-11-12 15:22:36 t 1 2 166070 562 0.00 2019-11-12 15:25:04 2019-11-12 15:25:22 t 1 1 166072 587 0.00 2019-11-12 15:12:23 2019-11-12 15:25:34 t 1 1 166074 512 0.00 2019-11-12 15:14:14 2019-11-12 15:31:13 t 1 1 166077 578 0.00 2019-11-12 15:25:46 2019-11-12 15:32:30 t 1 1 166078 585 0.00 2019-11-12 15:20:54 2019-11-12 15:33:08 t 1 1 166079 220 0.00 2019-11-12 15:26:35 2019-11-12 15:34:11 t 1 1 166080 449 0.00 2019-11-12 15:30:01 2019-11-12 15:35:39 t 1 1 166089 623 0.00 2019-11-12 15:43:46 2019-11-12 15:45:53 t 1 1 166092 585 0.00 2019-11-12 15:46:45 2019-11-12 15:53:59 t 1 1 166094 595 0.00 2019-11-12 15:51:56 2019-11-12 15:54:52 t 1 1 166097 562 0.00 2019-11-12 15:58:48 2019-11-12 15:59:23 t 1 1 166100 615 0.00 2019-11-12 15:56:15 2019-11-12 16:01:45 t 1 1 166106 562 0.00 2019-11-12 16:04:42 2019-11-12 16:05:09 t 1 1 166108 595 0.00 2019-11-12 16:04:58 2019-11-12 16:06:51 t 1 1 166110 637 0.00 2019-11-12 15:38:01 2019-11-12 16:08:39 t 1 1 166114 595 0.00 2019-11-12 16:13:03 2019-11-12 16:13:09 t 1 1 166125 595 0.00 2019-11-12 16:23:17 2019-11-12 16:23:24 t 1 1 166127 416 0.00 2019-11-12 16:22:58 2019-11-12 16:23:52 t 1 1 166131 490 0.00 2019-11-12 16:12:12 2019-11-12 16:28:26 t 1 1 166132 623 0.00 2019-11-12 16:14:42 2019-11-12 16:30:18 t 1 1 166135 562 0.00 2019-11-12 16:33:25 2019-11-12 16:33:48 t 1 1 166139 570 0.00 2019-11-12 16:36:27 2019-11-12 16:36:58 t 1 1 166143 570 0.00 2019-11-12 16:37:30 2019-11-12 16:38:05 t 1 1 166151 570 0.00 2019-11-12 16:39:09 2019-11-12 16:39:41 t 1 1 166152 570 0.00 2019-11-12 16:39:40 2019-11-12 16:40:00 t 1 1 166153 562 0.00 2019-11-12 16:36:30 2019-11-12 16:40:40 t 1 1 166160 623 0.00 2019-11-12 16:43:14 2019-11-12 16:43:56 t 1 1 166161 623 0.00 2019-11-12 16:44:09 2019-11-12 16:44:10 t 1 1 166164 564 0.00 2019-11-12 16:37:16 2019-11-12 16:46:57 t 1 1 166167 422 0.00 2019-11-12 15:24:42 2019-11-12 16:49:43 t 1 1 166169 637 0.00 2019-11-12 16:49:14 2019-11-12 16:53:22 t 1 1 166172 623 0.00 2019-11-12 16:54:18 2019-11-12 16:54:33 t 1 1 166174 623 0.00 2019-11-12 16:55:32 2019-11-12 16:55:40 t 1 1 166176 514 0.00 2019-11-12 14:58:52 2019-11-12 16:57:53 t 1 1 166177 562 0.00 2019-11-12 16:57:46 2019-11-12 16:58:16 t 1 1 166183 422 0.00 2019-11-12 17:03:59 2019-11-12 17:04:07 t 1 1 166188 379 0.00 2019-11-12 17:05:08 2019-11-12 17:05:08 f 1 1 166190 379 0.00 2019-11-12 14:56:49 2019-11-12 17:05:22 t 1 1 166191 562 0.00 2019-11-12 17:04:08 2019-11-12 17:05:46 t 1 1 166197 587 0.00 2019-11-12 17:06:10 2019-11-12 17:07:23 t 1 1 166198 520 0.00 2019-11-12 17:06:21 2019-11-12 17:07:42 t 1 1 166201 611 0.00 2019-11-12 16:59:30 2019-11-12 17:08:11 t 1 1 166211 485 0.00 2019-11-12 17:09:47 2019-11-12 17:12:37 t 1 1 166212 520 0.00 2019-11-12 17:09:51 2019-11-12 17:13:22 t 1 1 166213 520 0.00 2019-11-12 17:13:22 2019-11-12 17:15:23 t 1 1 166217 520 0.00 2019-11-12 17:15:23 2019-11-12 17:17:26 t 1 1 166219 451 0.00 2019-11-12 17:05:13 2019-11-12 17:19:29 t 1 1 166222 520 0.00 2019-11-12 17:17:26 2019-11-12 17:21:44 t 1 1 166234 623 0.00 2019-11-12 17:20:47 2019-11-12 17:29:57 t 1 1 166235 623 0.00 2019-11-12 17:30:59 2019-11-12 17:31:06 t 1 1 166237 422 0.00 2019-11-12 17:32:55 2019-11-12 17:33:19 t 1 1 166239 220 0.00 2019-11-12 17:21:56 2019-11-12 17:34:06 t 1 1 166240 585 0.00 2019-11-12 17:33:06 2019-11-12 17:34:28 t 1 1 166243 562 0.00 2019-11-12 17:19:11 2019-11-12 17:38:40 t 1 1 166248 520 0.00 2019-11-12 17:40:58 2019-11-12 17:43:05 t 1 1 166256 422 0.00 2019-11-12 17:48:01 2019-11-12 17:49:41 t 1 1 166257 587 0.00 2019-11-12 17:29:16 2019-11-12 17:50:12 t 1 1 166258 570 0.00 2019-11-12 17:47:43 2019-11-12 17:51:16 t 1 1 166265 570 0.00 2019-11-12 17:51:16 2019-11-12 17:54:46 t 1 1 166270 422 0.00 2019-11-12 17:57:03 2019-11-12 17:57:27 t 1 1 166273 585 0.00 2019-11-12 17:58:50 2019-11-12 17:59:51 t 1 1 166277 633 0.00 2019-11-12 18:01:32 2019-11-12 18:03:31 t 1 1 166278 564 0.00 2019-11-12 16:47:06 2019-11-12 18:04:38 t 1 1 166283 585 0.00 2019-11-12 17:59:51 2019-11-12 18:10:01 t 1 1 166289 587 0.00 2019-11-12 18:04:45 2019-11-12 18:12:57 t 1 1 166290 645 0.00 2019-11-12 18:12:36 2019-11-12 18:13:43 t 1 1 166293 562 0.00 2019-11-12 18:14:00 2019-11-12 18:16:06 t 1 1 166298 562 0.00 2019-11-12 18:23:46 2019-11-12 18:27:46 t 1 1 166303 587 0.00 2019-11-12 18:27:28 2019-11-12 18:32:34 t 1 1 166307 566 0.00 2019-11-12 18:31:41 2019-11-12 18:39:28 t 1 1 166309 422 0.00 2019-11-12 18:30:49 2019-11-12 18:40:02 t 1 1 166312 538 0.00 2019-11-12 17:47:38 2019-11-12 18:42:22 t 1 1 166313 562 0.00 2019-11-12 18:43:44 2019-11-12 18:44:11 t 1 1 166314 607 0.00 2019-11-12 18:17:01 2019-11-12 18:45:41 t 1 1 166316 566 0.00 2019-11-12 18:39:28 2019-11-12 18:46:13 t 1 1 166317 422 0.00 2019-11-12 18:46:16 2019-11-12 18:46:23 t 1 1 166000 488 0.00 2019-11-12 14:40:03 2019-11-12 14:42:21 t 1 1 166004 585 0.00 2019-11-12 14:37:52 2019-11-12 14:43:17 t 1 1 166008 637 0.00 2019-11-12 14:42:41 2019-11-12 14:47:56 t 1 1 166009 422 0.00 2019-11-12 14:48:01 2019-11-12 14:48:24 t 1 1 166010 422 0.00 2019-11-12 14:48:43 2019-11-12 14:48:48 t 1 1 166014 623 0.00 2019-11-12 14:51:51 2019-11-12 14:51:54 t 1 1 166015 637 0.00 2019-11-12 14:50:13 2019-11-12 14:52:21 t 1 1 166019 562 0.00 2019-11-12 14:34:21 2019-11-12 14:54:59 t 1 1 166022 623 0.00 2019-11-12 14:56:59 2019-11-12 14:57:00 t 1 1 166024 587 0.00 2019-11-12 14:42:53 2019-11-12 14:57:34 t 1 1 166026 514 0.00 2019-11-12 14:50:05 2019-11-12 14:58:52 t 1 1 166027 591 0.00 2019-11-12 14:55:50 2019-11-12 14:59:53 t 1 1 166028 637 0.00 2019-11-12 14:57:48 2019-11-12 15:01:22 t 1 1 166029 623 0.00 2019-11-12 15:02:04 2019-11-12 15:02:05 t 1 1 166031 551 0.00 2019-11-12 14:57:07 2019-11-12 15:02:22 t 1 1 166036 562 0.00 2019-11-12 15:02:31 2019-11-12 15:05:59 t 1 1 166040 562 0.00 2019-11-12 15:07:02 2019-11-12 15:07:11 t 1 1 166043 551 0.00 2019-11-12 15:02:22 2019-11-12 15:08:07 t 1 1 166044 481 0.00 2019-11-12 14:31:17 2019-11-12 15:11:08 t 1 1 166046 623 0.00 2019-11-12 15:12:08 2019-11-12 15:12:14 t 1 1 166049 551 0.00 2019-11-12 15:08:07 2019-11-12 15:14:37 t 1 1 166056 562 0.00 2019-11-12 15:12:49 2019-11-12 15:18:43 t 1 1 166057 637 0.00 2019-11-12 15:02:42 2019-11-12 15:19:27 t 1 1 166059 623 0.00 2019-11-12 15:19:43 2019-11-12 15:20:13 t 1 1 166061 623 0.00 2019-11-12 15:20:19 2019-11-12 15:20:20 t 1 1 166063 422 0.00 2019-11-12 15:21:19 2019-11-12 15:22:05 t 1 1 166066 562 0.00 2019-11-12 15:22:39 2019-11-12 15:23:02 t 1 1 166067 501 0.00 2019-11-12 15:24:07 2019-11-12 15:24:07 f 1 1 166069 551 0.00 2019-11-12 15:20:22 2019-11-12 15:25:22 t 1 1 166071 570 0.00 2019-11-12 15:16:33 2019-11-12 15:25:30 t 1 1 166073 578 0.00 2019-11-12 09:52:33 2019-11-12 15:25:46 t 1 1 166075 570 0.00 2019-11-12 15:25:30 2019-11-12 15:31:17 t 1 1 166082 570 0.00 2019-11-12 15:31:17 2019-11-12 15:37:31 t 1 1 166085 578 0.00 2019-11-12 15:32:30 2019-11-12 15:42:40 t 1 1 166088 562 0.00 2019-11-12 15:45:28 2019-11-12 15:45:47 t 1 1 166090 570 0.00 2019-11-12 15:44:33 2019-11-12 15:49:38 t 1 1 166098 595 0.00 2019-11-12 16:00:34 2019-11-12 16:00:45 t 1 1 166099 595 0.00 2019-11-12 16:00:55 2019-11-12 16:01:18 t 1 1 166101 595 0.00 2019-11-12 16:02:45 2019-11-12 16:02:54 t 1 1 166102 595 0.00 2019-11-12 16:03:04 2019-11-12 16:03:29 t 1 1 166103 585 0.00 2019-11-12 16:02:23 2019-11-12 16:04:04 t 1 1 166107 538 0.00 2019-11-12 16:01:27 2019-11-12 16:05:30 t 1 1 166112 595 0.00 2019-11-12 16:10:26 2019-11-12 16:10:46 t 1 1 166116 595 0.00 2019-11-12 16:13:20 2019-11-12 16:13:42 t 1 1 166117 595 0.00 2019-11-12 16:13:55 2019-11-12 16:14:15 t 1 1 166119 562 0.00 2019-11-12 16:15:21 2019-11-12 16:15:46 t 1 1 166120 570 0.00 2019-11-12 15:49:38 2019-11-12 16:16:35 t 1 1 166122 595 0.00 2019-11-12 16:18:31 2019-11-12 16:18:51 t 1 1 166126 544 0.00 2019-11-12 16:22:37 2019-11-12 16:23:41 t 1 2 166128 516 0.00 2019-11-12 16:20:04 2019-11-12 16:25:31 t 1 1 166136 220 0.00 2019-11-12 15:34:11 2019-11-12 16:35:07 t 1 1 166140 490 0.00 2019-11-12 16:28:26 2019-11-12 16:37:13 t 1 1 166142 623 0.00 2019-11-12 16:30:18 2019-11-12 16:38:02 t 1 1 166145 623 0.00 2019-11-12 16:38:27 2019-11-12 16:38:29 t 1 1 166146 570 0.00 2019-11-12 16:38:04 2019-11-12 16:38:38 t 1 1 166150 416 0.00 2019-11-12 16:38:57 2019-11-12 16:39:29 t 1 1 166155 520 0.00 2019-11-12 16:31:11 2019-11-12 16:41:46 t 1 1 166156 623 0.00 2019-11-12 16:41:50 2019-11-12 16:42:23 t 1 1 166158 623 0.00 2019-11-12 16:42:49 2019-11-12 16:42:56 t 1 1 166165 562 0.00 2019-11-12 16:45:50 2019-11-12 16:47:51 t 1 1 166166 637 0.00 2019-11-12 16:26:20 2019-11-12 16:49:03 t 1 1 166170 587 0.00 2019-11-12 16:47:05 2019-11-12 16:53:27 t 1 1 166171 623 0.00 2019-11-12 16:44:22 2019-11-12 16:54:15 t 1 1 166173 623 0.00 2019-11-12 16:54:39 2019-11-12 16:55:23 t 1 1 166175 623 0.00 2019-11-12 16:57:04 2019-11-12 16:57:05 t 1 1 166178 422 0.00 2019-11-12 16:51:04 2019-11-12 17:00:22 t 1 1 166180 623 0.00 2019-11-12 17:02:15 2019-11-12 17:02:42 t 1 1 166181 483 0.00 2019-11-12 17:03:19 2019-11-12 17:03:42 t 1 1 166185 520 0.00 2019-11-12 16:41:46 2019-11-12 17:04:31 t 1 1 166186 623 0.00 2019-11-12 17:04:33 2019-11-12 17:04:42 t 1 1 166189 451 0.00 2019-11-12 17:00:20 2019-11-12 17:05:13 t 1 1 166192 623 0.00 2019-11-12 17:05:38 2019-11-12 17:05:48 t 1 1 166194 520 0.00 2019-11-12 17:04:31 2019-11-12 17:06:21 t 1 1 166195 623 0.00 2019-11-12 17:06:52 2019-11-12 17:07:00 t 1 1 166199 623 0.00 2019-11-12 17:07:26 2019-11-12 17:07:47 t 1 1 166202 545 0.00 2019-11-12 16:59:55 2019-11-12 17:09:27 t 1 1 166206 652 0.00 2019-11-12 17:09:14 2019-11-12 17:10:33 t 1 1 166207 611 0.00 2019-11-12 17:07:50 2019-11-12 17:10:58 t 1 1 166208 652 0.00 2019-11-12 17:10:33 2019-11-12 17:11:59 t 1 1 166210 623 0.00 2019-11-12 17:12:00 2019-11-12 17:12:02 t 1 1 166216 623 0.00 2019-11-12 17:17:15 2019-11-12 17:17:15 t 1 1 166220 611 0.00 2019-11-12 17:10:57 2019-11-12 17:19:30 t 1 1 166223 514 0.00 2019-11-12 16:57:53 2019-11-12 17:22:39 t 1 1 166225 483 0.00 2019-11-12 17:03:42 2019-11-12 17:23:27 t 1 1 166226 520 0.00 2019-11-12 17:21:44 2019-11-12 17:24:20 t 1 1 166228 587 0.00 2019-11-12 17:24:38 2019-11-12 17:24:45 t 1 1 166229 520 0.00 2019-11-12 17:24:20 2019-11-12 17:26:52 t 1 1 166231 520 0.00 2019-11-12 17:26:52 2019-11-12 17:28:41 t 1 1 166238 416 0.00 2019-11-12 16:39:28 2019-11-12 17:33:29 t 1 1 166241 520 0.00 2019-11-12 17:28:40 2019-11-12 17:35:32 t 1 1 166242 585 0.00 2019-11-12 17:34:28 2019-11-12 17:37:30 t 1 1 166244 220 0.00 2019-11-12 17:31:45 2019-11-12 17:38:42 t 1 2 166250 570 0.00 2019-11-12 17:28:59 2019-11-12 17:44:46 t 1 1 166253 520 0.00 2019-11-12 17:46:48 2019-11-12 17:47:26 t 1 1 166259 422 0.00 2019-11-12 17:50:43 2019-11-12 17:51:25 t 1 1 166261 633 0.00 2019-11-12 17:46:45 2019-11-12 17:52:28 t 1 1 166264 514 0.00 2019-11-12 17:53:08 2019-11-12 17:54:11 t 1 1 166266 566 0.00 2019-11-12 17:49:09 2019-11-12 17:55:36 t 1 1 166268 587 0.00 2019-11-12 17:50:12 2019-11-12 17:56:30 t 1 1 166269 520 0.00 2019-11-12 17:49:19 2019-11-12 17:57:00 t 1 1 166271 562 0.00 2019-11-12 17:57:30 2019-11-12 17:58:08 t 1 1 166274 422 0.00 2019-11-12 18:00:47 2019-11-12 18:02:22 t 1 1 166275 562 0.00 2019-11-12 18:02:37 2019-11-12 18:02:57 t 1 1 166279 587 0.00 2019-11-12 17:56:30 2019-11-12 18:04:45 t 1 1 166284 615 0.00 2019-11-12 18:04:20 2019-11-12 18:10:07 t 1 1 166286 645 0.00 2019-11-12 18:10:30 2019-11-12 18:11:38 t 1 1 166288 422 0.00 2019-11-12 18:11:29 2019-11-12 18:12:04 t 1 1 166007 623 0.00 2019-11-12 14:46:42 2019-11-12 14:46:45 t 1 1 166011 570 0.00 2019-11-12 14:45:26 2019-11-12 14:50:05 t 1 1 166013 652 0.00 2019-11-12 14:45:50 2019-11-12 14:51:47 t 1 1 166020 637 0.00 2019-11-12 14:53:30 2019-11-12 14:55:00 t 1 1 166023 551 0.00 2019-11-12 14:52:37 2019-11-12 14:57:07 t 1 1 166025 570 0.00 2019-11-12 14:54:19 2019-11-12 14:58:43 t 1 1 166030 562 0.00 2019-11-12 14:56:18 2019-11-12 15:02:10 t 1 1 166035 516 0.00 2019-11-12 15:01:12 2019-11-12 15:05:54 t 1 1 166038 562 0.00 2019-11-12 15:06:23 2019-11-12 15:06:30 t 1 1 166047 562 0.00 2019-11-12 15:12:10 2019-11-12 15:12:18 t 1 1 166051 570 0.00 2019-11-12 15:06:25 2019-11-12 15:16:33 t 1 1 166053 623 0.00 2019-11-12 15:17:34 2019-11-12 15:17:37 t 1 1 166058 422 0.00 2019-11-12 15:18:48 2019-11-12 15:19:59 t 1 1 166062 551 0.00 2019-11-12 15:14:37 2019-11-12 15:20:22 t 1 1 166064 488 0.00 2019-11-12 15:17:18 2019-11-12 15:22:25 t 1 1 166068 422 0.00 2019-11-12 15:22:55 2019-11-12 15:24:21 t 1 1 166076 562 0.00 2019-11-12 15:31:27 2019-11-12 15:31:57 t 1 1 166081 637 0.00 2019-11-12 15:21:06 2019-11-12 15:36:26 t 1 1 166083 623 0.00 2019-11-12 15:21:45 2019-11-12 15:39:00 t 1 1 166084 623 0.00 2019-11-12 15:40:33 2019-11-12 15:41:27 t 1 1 166086 623 0.00 2019-11-12 15:42:52 2019-11-12 15:43:03 t 1 1 166087 570 0.00 2019-11-12 15:39:11 2019-11-12 15:44:33 t 1 1 166091 578 0.00 2019-11-12 15:42:40 2019-11-12 15:51:41 t 1 1 166093 562 0.00 2019-11-12 15:54:28 2019-11-12 15:54:40 t 1 1 166095 615 0.00 2019-11-12 15:53:46 2019-11-12 15:56:25 t 1 1 166096 595 0.00 2019-11-12 15:57:20 2019-11-12 15:57:47 t 1 1 166104 595 0.00 2019-11-12 16:03:57 2019-11-12 16:04:15 t 1 1 166105 595 0.00 2019-11-12 16:04:25 2019-11-12 16:04:46 t 1 1 166109 595 0.00 2019-11-12 16:07:53 2019-11-12 16:07:59 t 1 1 166111 595 0.00 2019-11-12 16:09:58 2019-11-12 16:10:12 t 1 1 166113 490 0.00 2019-11-12 16:07:02 2019-11-12 16:12:12 t 1 1 166115 416 0.00 2019-11-12 14:38:10 2019-11-12 16:13:36 t 1 1 166118 623 0.00 2019-11-12 15:45:53 2019-11-12 16:14:42 t 1 1 166121 595 0.00 2019-11-12 16:18:09 2019-11-12 16:18:21 t 1 1 166123 544 0.00 2019-11-12 16:20:04 2019-11-12 16:21:07 t 1 2 166124 416 0.00 2019-11-12 16:13:41 2019-11-12 16:22:49 t 1 1 166129 595 0.00 2019-11-12 16:24:34 2019-11-12 16:25:37 t 1 1 166130 562 0.00 2019-11-12 16:25:17 2019-11-12 16:28:02 t 1 1 166133 520 0.00 2019-11-12 16:24:53 2019-11-12 16:30:53 t 1 1 166134 595 0.00 2019-11-12 16:29:38 2019-11-12 16:31:24 t 1 1 166137 512 0.00 2019-11-12 16:11:06 2019-11-12 16:35:27 t 1 1 166138 570 0.00 2019-11-12 16:16:35 2019-11-12 16:36:27 t 1 1 166141 570 0.00 2019-11-12 16:36:58 2019-11-12 16:37:30 t 1 1 166144 623 0.00 2019-11-12 16:38:20 2019-11-12 16:38:22 t 1 1 166147 623 0.00 2019-11-12 16:38:34 2019-11-12 16:38:40 t 1 1 166148 416 0.00 2019-11-12 16:23:52 2019-11-12 16:38:57 t 1 1 166149 570 0.00 2019-11-12 16:38:38 2019-11-12 16:39:09 t 1 1 166154 623 0.00 2019-11-12 16:39:01 2019-11-12 16:41:17 t 1 1 166157 562 0.00 2019-11-12 16:40:40 2019-11-12 16:42:36 t 1 1 166159 623 0.00 2019-11-12 16:43:02 2019-11-12 16:43:14 t 1 1 166162 623 0.00 2019-11-12 16:44:16 2019-11-12 16:44:17 t 1 1 166163 490 0.00 2019-11-12 16:37:13 2019-11-12 16:46:26 t 1 1 166168 422 0.00 2019-11-12 16:50:04 2019-11-12 16:50:58 t 1 1 166179 623 0.00 2019-11-12 17:02:07 2019-11-12 17:02:09 t 1 1 166182 422 0.00 2019-11-12 17:03:20 2019-11-12 17:03:43 t 1 1 166184 623 0.00 2019-11-12 17:03:06 2019-11-12 17:04:19 t 1 1 166187 587 0.00 2019-11-12 16:54:13 2019-11-12 17:04:50 t 1 1 166193 587 0.00 2019-11-12 17:05:27 2019-11-12 17:05:50 t 1 1 166196 220 0.00 2019-11-12 17:03:51 2019-11-12 17:07:14 t 1 2 166200 570 0.00 2019-11-12 16:40:28 2019-11-12 17:08:00 t 1 1 166203 485 0.00 2019-11-12 17:05:59 2019-11-12 17:09:35 t 1 1 166204 520 0.00 2019-11-12 17:07:41 2019-11-12 17:09:51 t 1 1 166205 422 0.00 2019-11-12 17:04:39 2019-11-12 17:10:13 t 1 1 166209 587 0.00 2019-11-12 17:08:46 2019-11-12 17:11:59 t 1 1 166214 562 0.00 2019-11-12 17:14:38 2019-11-12 17:16:14 t 1 1 166215 623 0.00 2019-11-12 17:17:05 2019-11-12 17:17:07 t 1 1 166218 623 0.00 2019-11-12 17:18:41 2019-11-12 17:19:26 t 1 1 166221 422 0.00 2019-11-12 17:20:02 2019-11-12 17:20:23 t 1 1 166224 422 0.00 2019-11-12 17:22:26 2019-11-12 17:22:41 t 1 1 166227 587 0.00 2019-11-12 17:12:11 2019-11-12 17:24:26 t 1 1 166230 587 0.00 2019-11-12 17:24:57 2019-11-12 17:26:55 t 1 1 166232 587 0.00 2019-11-12 17:27:15 2019-11-12 17:28:56 t 1 1 166233 570 0.00 2019-11-12 17:08:00 2019-11-12 17:29:00 t 1 1 166236 623 0.00 2019-11-12 17:31:12 2019-11-12 17:31:13 t 1 1 166245 520 0.00 2019-11-12 17:35:32 2019-11-12 17:38:50 t 1 1 166246 623 0.00 2019-11-12 17:32:06 2019-11-12 17:39:17 t 1 1 166247 520 0.00 2019-11-12 17:38:52 2019-11-12 17:40:58 t 1 1 166249 422 0.00 2019-11-12 17:43:12 2019-11-12 17:43:37 t 1 1 166251 520 0.00 2019-11-12 17:43:05 2019-11-12 17:45:36 t 1 1 166252 422 0.00 2019-11-12 17:46:23 2019-11-12 17:46:27 t 1 1 166254 570 0.00 2019-11-12 17:45:02 2019-11-12 17:47:37 t 1 1 166255 520 0.00 2019-11-12 17:47:25 2019-11-12 17:49:20 t 1 1 166260 514 0.00 2019-11-12 17:50:35 2019-11-12 17:51:55 t 1 1 166262 562 0.00 2019-11-12 17:40:12 2019-11-12 17:52:32 t 1 1 166263 545 0.00 2019-11-12 17:48:00 2019-11-12 17:53:27 t 1 1 166267 637 0.00 2019-11-12 17:10:59 2019-11-12 17:55:51 t 1 1 166272 422 0.00 2019-11-12 17:58:07 2019-11-12 17:58:36 t 1 1 166276 562 0.00 2019-11-12 18:01:26 2019-11-12 18:03:25 t 1 1 166280 562 0.00 2019-11-12 18:05:59 2019-11-12 18:06:19 t 1 1 166281 564 0.00 2019-11-12 18:05:03 2019-11-12 18:07:41 t 1 1 166282 633 0.00 2019-11-12 18:06:40 2019-11-12 18:08:42 t 1 1 166285 562 0.00 2019-11-12 18:10:34 2019-11-12 18:11:28 t 1 1 166287 637 0.00 2019-11-12 18:01:15 2019-11-12 18:11:51 t 1 1 166292 551 0.00 2019-11-12 15:25:22 2019-11-12 18:14:43 t 1 1 166295 422 0.00 2019-11-12 18:22:19 2019-11-12 18:24:19 t 1 1 166296 637 0.00 2019-11-12 18:18:41 2019-11-12 18:27:24 t 1 1 166299 611 0.00 2019-11-12 18:19:14 2019-11-12 18:27:57 t 1 1 166300 635 0.00 2019-11-12 18:25:31 2019-11-12 18:30:26 t 1 1 166301 566 0.00 2019-11-12 18:28:26 2019-11-12 18:31:41 t 1 1 166302 562 0.00 2019-11-12 18:27:50 2019-11-12 18:32:21 t 1 1 166304 637 0.00 2019-11-12 18:27:29 2019-11-12 18:35:57 t 1 1 166306 562 0.00 2019-11-12 18:37:26 2019-11-12 18:38:59 t 1 1 166308 578 0.00 2019-11-12 15:51:41 2019-11-12 18:39:41 t 1 1 166311 422 0.00 2019-11-12 18:42:07 2019-11-12 18:42:21 t 1 1 166315 422 0.00 2019-11-12 18:43:12 2019-11-12 18:46:10 t 1 1 166321 587 0.00 2019-11-12 18:47:32 2019-11-12 18:49:00 t 1 1 166323 578 0.00 2019-11-12 18:39:41 2019-11-12 18:49:48 t 1 1 166291 637 0.00 2019-11-12 18:13:15 2019-11-12 18:14:16 t 1 1 166294 562 0.00 2019-11-12 18:18:34 2019-11-12 18:20:33 t 1 1 166297 587 0.00 2019-11-12 18:13:55 2019-11-12 18:27:28 t 1 1 166305 562 0.00 2019-11-12 18:35:29 2019-11-12 18:36:34 t 1 1 166310 516 0.00 2019-11-12 18:38:55 2019-11-12 18:40:49 t 1 1 166318 587 0.00 2019-11-12 18:32:42 2019-11-12 18:46:42 t 1 1 166319 587 0.00 2019-11-12 18:46:50 2019-11-12 18:47:03 t 1 1 166320 587 0.00 2019-11-12 18:47:06 2019-11-12 18:47:20 t 1 1 166322 422 0.00 2019-11-12 18:47:16 2019-11-12 18:49:21 t 1 1 166325 564 0.00 2019-11-12 18:07:45 2019-11-12 18:50:56 t 1 1 166328 422 0.00 2019-11-12 18:51:51 2019-11-12 18:52:58 t 1 1 166330 481 0.00 2019-11-12 18:43:29 2019-11-12 18:54:13 t 1 1 166332 422 0.00 2019-11-12 18:55:33 2019-11-12 18:55:46 t 1 1 166334 587 0.00 2019-11-12 18:54:48 2019-11-12 18:56:11 t 1 1 166335 587 0.00 2019-11-12 18:57:12 2019-11-12 18:57:24 t 1 1 166338 451 0.00 2019-11-12 18:37:20 2019-11-12 18:59:22 t 1 1 166343 587 0.00 2019-11-12 18:58:00 2019-11-12 19:04:09 t 1 1 166344 587 0.00 2019-11-12 19:04:27 2019-11-12 19:06:26 t 1 1 166353 451 0.00 2019-11-12 19:08:19 2019-11-12 19:15:14 t 1 1 166360 545 0.00 2019-11-12 18:00:55 2019-11-12 19:20:45 t 1 1 166363 564 0.00 2019-11-12 18:52:03 2019-11-12 19:21:44 t 1 1 166369 422 0.00 2019-11-12 19:25:27 2019-11-12 19:25:40 t 1 1 166371 587 0.00 2019-11-12 19:21:49 2019-11-12 19:26:39 t 1 1 166375 562 0.00 2019-11-12 19:28:10 2019-11-12 19:28:42 t 1 1 166378 375 0.00 2019-11-12 19:30:14 2019-11-12 19:30:14 f 1 1 166379 637 0.00 2019-11-12 19:30:15 2019-11-12 19:31:32 t 1 1 166381 591 0.00 2019-11-12 19:17:09 2019-11-12 19:34:23 t 1 1 166385 422 0.00 2019-11-12 19:35:40 2019-11-12 19:35:59 t 1 1 166387 481 0.00 2019-11-12 18:54:18 2019-11-12 19:37:06 t 1 1 166394 430 0.00 2019-11-12 19:39:09 2019-11-12 19:40:01 t 1 1 166396 430 0.00 2019-11-12 19:40:12 2019-11-12 19:40:18 t 1 1 166397 430 0.00 2019-11-12 19:40:31 2019-11-12 19:41:10 t 1 1 166403 430 0.00 2019-11-12 19:44:55 2019-11-12 19:45:43 t 1 1 166404 430 0.00 2019-11-12 19:45:53 2019-11-12 19:46:00 t 1 1 166412 220 0.00 2019-11-12 19:43:47 2019-11-12 19:49:10 t 1 2 166414 587 0.00 2019-11-12 19:49:16 2019-11-12 19:49:44 t 1 1 166416 430 0.00 2019-11-12 19:50:17 2019-11-12 19:50:26 t 1 1 166419 430 0.00 2019-11-12 19:51:14 2019-11-12 19:51:31 t 1 1 166425 422 0.00 2019-11-12 19:52:56 2019-11-12 19:53:07 t 1 1 166428 562 0.00 2019-11-12 19:53:42 2019-11-12 19:54:14 t 1 1 166430 430 0.00 2019-11-12 19:54:08 2019-11-12 19:55:26 t 1 1 166431 645 0.00 2019-11-12 19:54:37 2019-11-12 19:55:40 t 1 1 166436 649 0.00 2019-11-12 19:13:36 2019-11-12 19:56:24 t 1 1 166437 422 0.00 2019-11-12 19:55:37 2019-11-12 19:56:50 t 1 1 166438 562 0.00 2019-11-12 19:54:55 2019-11-12 19:57:07 t 1 1 166440 430 0.00 2019-11-12 19:56:27 2019-11-12 19:57:25 t 1 1 166444 562 0.00 2019-11-12 19:57:47 2019-11-12 19:58:29 t 1 1 166445 430 0.00 2019-11-12 19:58:33 2019-11-12 19:58:40 t 1 1 166450 562 0.00 2019-11-12 19:59:45 2019-11-12 20:00:46 t 1 1 166451 430 0.00 2019-11-12 20:00:52 2019-11-12 20:00:55 t 1 1 166454 593 0.00 2019-11-12 19:41:53 2019-11-12 20:01:51 t 1 1 166455 587 0.00 2019-11-12 20:00:48 2019-11-12 20:02:08 t 1 1 166458 430 0.00 2019-11-12 20:01:10 2019-11-12 20:03:26 t 1 1 166460 581 0.00 2019-11-12 19:55:12 2019-11-12 20:03:54 t 1 1 166461 587 0.00 2019-11-12 20:04:17 2019-11-12 20:05:46 t 1 1 166466 562 0.00 2019-11-12 20:08:20 2019-11-12 20:09:24 t 1 1 166469 593 0.00 2019-11-12 20:07:15 2019-11-12 20:13:14 t 1 1 166472 512 0.00 2019-11-12 20:11:12 2019-11-12 20:14:04 t 1 1 166473 635 0.00 2019-11-12 19:56:12 2019-11-12 20:15:18 t 1 1 166476 591 0.00 2019-11-12 19:50:39 2019-11-12 20:16:59 t 1 1 166482 416 0.00 2019-11-12 19:47:33 2019-11-12 20:22:42 t 1 1 166484 562 0.00 2019-11-12 20:16:10 2019-11-12 20:23:50 t 1 1 166485 520 0.00 2019-11-12 20:16:10 2019-11-12 20:24:27 t 1 1 166486 422 0.00 2019-11-12 20:27:04 2019-11-12 20:27:09 t 1 1 166488 593 0.00 2019-11-12 20:19:25 2019-11-12 20:27:42 t 1 1 166491 422 0.00 2019-11-12 20:29:24 2019-11-12 20:30:03 t 1 1 166493 562 0.00 2019-11-12 20:30:31 2019-11-12 20:30:46 t 1 1 166499 585 0.00 2019-11-12 20:31:40 2019-11-12 20:33:58 t 1 1 166502 516 0.00 2019-11-12 19:54:36 2019-11-12 20:36:02 t 1 1 166504 520 0.00 2019-11-12 20:35:21 2019-11-12 20:37:31 t 1 1 166512 611 0.00 2019-11-12 20:27:54 2019-11-12 20:44:27 t 1 1 166516 637 0.00 2019-11-12 20:29:52 2019-11-12 20:49:13 t 1 1 166518 587 0.00 2019-11-12 20:49:16 2019-11-12 20:50:13 t 1 1 166522 422 0.00 2019-11-12 20:52:36 2019-11-12 20:53:06 t 1 1 166523 481 0.00 2019-11-12 20:17:05 2019-11-12 20:53:29 t 1 1 166524 562 0.00 2019-11-12 20:53:23 2019-11-12 20:54:07 t 1 1 166528 566 0.00 2019-11-12 20:43:10 2019-11-12 20:55:19 t 1 1 166529 627 0.00 2019-11-12 20:54:24 2019-11-12 20:56:08 t 1 1 166530 587 0.00 2019-11-12 20:50:44 2019-11-12 20:57:05 t 1 1 166538 627 0.00 2019-11-12 21:00:57 2019-11-12 21:02:22 t 1 1 166539 627 0.00 2019-11-12 21:03:03 2019-11-12 21:03:48 t 1 1 166540 562 0.00 2019-11-12 20:54:58 2019-11-12 21:04:11 t 1 1 166542 627 0.00 2019-11-12 21:04:03 2019-11-12 21:04:22 t 1 1 166548 627 0.00 2019-11-12 21:07:08 2019-11-12 21:07:26 t 1 1 166549 627 0.00 2019-11-12 21:08:08 2019-11-12 21:08:32 t 1 1 166553 627 0.00 2019-11-12 21:09:13 2019-11-12 21:09:30 t 1 1 166555 587 0.00 2019-11-12 21:09:54 2019-11-12 21:09:59 t 1 1 166558 587 0.00 2019-11-12 21:10:19 2019-11-12 21:10:24 t 1 1 166560 587 0.00 2019-11-12 21:10:30 2019-11-12 21:10:40 t 1 1 166568 485 0.00 2019-11-12 21:06:34 2019-11-12 21:14:32 t 1 1 166570 587 0.00 2019-11-12 21:14:30 2019-11-12 21:14:46 t 1 1 166572 422 0.00 2019-11-12 21:04:58 2019-11-12 21:15:27 t 1 1 166580 520 0.00 2019-11-12 21:12:40 2019-11-12 21:19:41 t 1 1 166582 570 0.00 2019-11-12 21:14:55 2019-11-12 21:19:46 t 1 1 166583 587 0.00 2019-11-12 21:19:44 2019-11-12 21:20:28 t 1 1 166585 508 0.00 2019-11-12 21:14:42 2019-11-12 21:20:56 t 1 2 166588 422 0.00 2019-11-12 21:19:33 2019-11-12 21:22:08 t 1 1 166592 627 0.00 2019-11-12 21:23:01 2019-11-12 21:23:48 t 1 1 166594 587 0.00 2019-11-12 21:23:27 2019-11-12 21:24:06 t 1 1 166597 585 0.00 2019-11-12 21:23:34 2019-11-12 21:26:34 t 1 1 166598 627 0.00 2019-11-12 21:26:35 2019-11-12 21:26:53 t 1 1 166602 566 0.00 2019-11-12 21:09:45 2019-11-12 21:28:08 t 1 1 166604 627 0.00 2019-11-12 21:28:43 2019-11-12 21:28:56 t 1 1 166606 422 0.00 2019-11-12 21:28:32 2019-11-12 21:30:22 t 1 1 166607 627 0.00 2019-11-12 21:30:48 2019-11-12 21:31:01 t 1 1 166608 627 0.00 2019-11-12 21:31:47 2019-11-12 21:32:04 t 1 1 166610 485 0.00 2019-11-12 21:26:49 2019-11-12 21:32:56 t 1 1 166324 587 0.00 2019-11-12 18:49:19 2019-11-12 18:50:51 t 1 1 166326 566 0.00 2019-11-12 18:46:13 2019-11-12 18:51:45 t 1 1 166337 422 0.00 2019-11-12 18:58:50 2019-11-12 18:58:59 t 1 1 166340 627 0.00 2019-11-12 18:59:11 2019-11-12 18:59:45 t 1 1 166341 562 0.00 2019-11-12 18:58:18 2019-11-12 19:00:00 t 1 1 166347 562 0.00 2019-11-12 19:02:04 2019-11-12 19:08:34 t 1 1 166348 566 0.00 2019-11-12 19:04:08 2019-11-12 19:09:39 t 1 1 166349 585 0.00 2019-11-12 19:06:42 2019-11-12 19:09:45 t 1 1 166351 562 0.00 2019-11-12 19:09:46 2019-11-12 19:11:26 t 1 1 166352 566 0.00 2019-11-12 19:09:39 2019-11-12 19:14:19 t 1 1 166354 422 0.00 2019-11-12 19:11:58 2019-11-12 19:15:47 t 1 1 166355 591 0.00 2019-11-12 16:27:39 2019-11-12 19:17:09 t 1 1 166356 422 0.00 2019-11-12 19:17:21 2019-11-12 19:17:36 t 1 1 166359 516 0.00 2019-11-12 19:15:37 2019-11-12 19:19:25 t 1 1 166361 422 0.00 2019-11-12 19:20:25 2019-11-12 19:20:45 t 1 1 166362 652 0.00 2019-11-12 19:14:56 2019-11-12 19:21:10 t 1 1 166364 587 0.00 2019-11-12 19:04:37 2019-11-12 19:21:49 t 1 1 166365 520 0.00 2019-11-12 19:09:40 2019-11-12 19:21:51 t 1 1 166367 637 0.00 2019-11-12 19:06:35 2019-11-12 19:22:35 t 1 1 166370 615 0.00 2019-11-12 19:23:56 2019-11-12 19:26:09 t 1 1 166373 570 0.00 2019-11-12 17:54:45 2019-11-12 19:27:35 t 1 1 166376 619 0.00 2019-11-12 19:27:56 2019-11-12 19:29:31 t 1 1 166382 422 0.00 2019-11-12 19:33:51 2019-11-12 19:34:43 t 1 1 166383 430 0.00 2019-11-12 19:31:32 2019-11-12 19:35:31 t 1 1 166390 545 0.00 2019-11-12 19:20:45 2019-11-12 19:38:24 t 1 1 166393 562 0.00 2019-11-12 19:39:06 2019-11-12 19:39:33 t 1 1 166399 430 0.00 2019-11-12 19:43:08 2019-11-12 19:43:20 t 1 1 166401 562 0.00 2019-11-12 19:44:01 2019-11-12 19:44:33 t 1 1 166406 562 0.00 2019-11-12 19:45:40 2019-11-12 19:46:28 t 1 1 166408 516 0.00 2019-11-12 19:46:10 2019-11-12 19:47:25 t 1 1 166409 422 0.00 2019-11-12 19:47:39 2019-11-12 19:47:48 t 1 1 166410 587 0.00 2019-11-12 19:26:48 2019-11-12 19:48:42 t 1 1 166411 430 0.00 2019-11-12 19:48:58 2019-11-12 19:49:03 t 1 1 166413 487 0.00 2019-11-12 19:28:42 2019-11-12 19:49:24 t 1 2 166417 591 0.00 2019-11-12 19:34:23 2019-11-12 19:50:39 t 1 1 166418 562 0.00 2019-11-12 19:48:01 2019-11-12 19:50:51 t 1 1 166420 430 0.00 2019-11-12 19:51:36 2019-11-12 19:51:54 t 1 1 166422 516 0.00 2019-11-12 19:51:24 2019-11-12 19:52:15 t 1 1 166424 430 0.00 2019-11-12 19:52:31 2019-11-12 19:52:48 t 1 1 166435 430 0.00 2019-11-12 19:56:18 2019-11-12 19:56:21 t 1 1 166441 430 0.00 2019-11-12 19:57:25 2019-11-12 19:57:30 t 1 1 166447 430 0.00 2019-11-12 19:59:37 2019-11-12 19:59:42 t 1 1 166453 430 0.00 2019-11-12 19:59:10 2019-11-12 20:01:26 t 1 1 166456 562 0.00 2019-11-12 20:02:15 2019-11-12 20:02:20 t 1 1 166457 587 0.00 2019-11-12 20:02:44 2019-11-12 20:03:01 t 1 1 166462 562 0.00 2019-11-12 20:03:51 2019-11-12 20:06:39 t 1 1 166463 593 0.00 2019-11-12 20:01:51 2019-11-12 20:07:15 t 1 1 166467 220 0.00 2019-11-12 17:34:06 2019-11-12 20:11:02 t 1 1 166468 422 0.00 2019-11-12 20:04:11 2019-11-12 20:12:16 t 1 1 166470 422 0.00 2019-11-12 20:12:25 2019-11-12 20:13:23 t 1 1 166474 520 0.00 2019-11-12 20:13:39 2019-11-12 20:15:41 t 1 1 166478 593 0.00 2019-11-12 20:13:14 2019-11-12 20:19:25 t 1 1 166479 422 0.00 2019-11-12 20:19:37 2019-11-12 20:19:55 t 1 1 166481 652 0.00 2019-11-12 19:58:07 2019-11-12 20:22:04 t 1 1 166483 220 0.00 2019-11-12 20:21:54 2019-11-12 20:23:25 t 1 1 166489 637 0.00 2019-11-12 20:00:19 2019-11-12 20:29:07 t 1 1 166494 422 0.00 2019-11-12 20:30:53 2019-11-12 20:32:17 t 1 1 166495 422 0.00 2019-11-12 20:32:29 2019-11-12 20:32:34 t 1 1 166497 562 0.00 2019-11-12 20:33:41 2019-11-12 20:33:45 t 1 1 166501 585 0.00 2019-11-12 20:33:58 2019-11-12 20:35:15 t 1 1 166503 585 0.00 2019-11-12 20:35:15 2019-11-12 20:37:04 t 1 1 166506 587 0.00 2019-11-12 20:27:13 2019-11-12 20:39:32 t 1 1 166507 562 0.00 2019-11-12 20:41:04 2019-11-12 20:41:38 t 1 1 166508 422 0.00 2019-11-12 20:42:17 2019-11-12 20:42:39 t 1 1 166509 566 0.00 2019-11-12 20:35:27 2019-11-12 20:43:10 t 1 1 166511 422 0.00 2019-11-12 20:43:47 2019-11-12 20:44:25 t 1 1 166513 562 0.00 2019-11-12 20:45:32 2019-11-12 20:46:11 t 1 1 166515 587 0.00 2019-11-12 20:39:32 2019-11-12 20:47:55 t 1 1 166517 591 0.00 2019-11-12 20:32:26 2019-11-12 20:49:32 t 1 1 166520 562 0.00 2019-11-12 20:48:11 2019-11-12 20:50:58 t 1 1 166527 593 0.00 2019-11-12 20:53:02 2019-11-12 20:54:47 t 1 1 166532 627 0.00 2019-11-12 20:57:52 2019-11-12 20:58:22 t 1 1 166533 627 0.00 2019-11-12 20:58:40 2019-11-12 20:58:47 t 1 1 166535 422 0.00 2019-11-12 20:54:02 2019-11-12 20:59:06 t 1 1 166537 627 0.00 2019-11-12 20:59:58 2019-11-12 21:00:14 t 1 1 166541 481 0.00 2019-11-12 20:53:29 2019-11-12 21:04:20 t 1 1 166545 627 0.00 2019-11-12 21:05:07 2019-11-12 21:05:20 t 1 1 166546 627 0.00 2019-11-12 21:06:08 2019-11-12 21:06:26 t 1 1 166547 587 0.00 2019-11-12 21:06:36 2019-11-12 21:06:46 t 1 1 166550 551 0.00 2019-11-12 20:58:15 2019-11-12 21:09:15 t 1 1 166552 587 0.00 2019-11-12 21:07:14 2019-11-12 21:09:30 t 1 1 166556 483 0.00 2019-11-12 21:09:05 2019-11-12 21:10:17 t 1 1 166559 627 0.00 2019-11-12 21:10:15 2019-11-12 21:10:32 t 1 1 166561 512 0.00 2019-11-12 21:08:50 2019-11-12 21:11:05 t 1 1 166564 587 0.00 2019-11-12 21:12:53 2019-11-12 21:13:09 t 1 1 166567 587 0.00 2019-11-12 21:14:06 2019-11-12 21:14:11 t 1 1 166571 570 0.00 2019-11-12 20:33:06 2019-11-12 21:14:55 t 1 1 166574 627 0.00 2019-11-12 21:16:21 2019-11-12 21:16:38 t 1 1 166575 562 0.00 2019-11-12 21:15:55 2019-11-12 21:17:17 t 1 1 166576 587 0.00 2019-11-12 21:17:24 2019-11-12 21:17:29 t 1 1 166578 587 0.00 2019-11-12 21:17:34 2019-11-12 21:17:42 t 1 1 166579 627 0.00 2019-11-12 21:18:24 2019-11-12 21:18:42 t 1 1 166584 627 0.00 2019-11-12 21:20:30 2019-11-12 21:20:43 t 1 1 166586 587 0.00 2019-11-12 21:21:08 2019-11-12 21:21:37 t 1 1 166591 578 0.00 2019-11-12 18:49:48 2019-11-12 21:23:13 t 1 1 166593 607 0.00 2019-11-12 20:44:13 2019-11-12 21:24:01 t 1 1 166595 627 0.00 2019-11-12 21:24:36 2019-11-12 21:24:49 t 1 1 166599 422 0.00 2019-11-12 21:24:55 2019-11-12 21:27:01 t 1 1 166601 627 0.00 2019-11-12 21:27:41 2019-11-12 21:27:59 t 1 1 166605 627 0.00 2019-11-12 21:29:42 2019-11-12 21:29:59 t 1 1 166611 627 0.00 2019-11-12 21:32:46 2019-11-12 21:33:04 t 1 1 166613 627 0.00 2019-11-12 21:33:38 2019-11-12 21:34:11 t 1 1 166620 627 0.00 2019-11-12 21:36:58 2019-11-12 21:37:10 t 1 1 166622 490 0.00 2019-11-12 21:28:51 2019-11-12 21:37:58 t 1 1 166623 627 0.00 2019-11-12 21:38:02 2019-11-12 21:38:09 t 1 1 166626 585 0.00 2019-11-12 21:35:41 2019-11-12 21:40:43 t 1 1 166627 627 0.00 2019-11-12 21:40:59 2019-11-12 21:41:14 t 1 1 166327 581 0.00 2019-11-12 18:32:44 2019-11-12 18:51:50 t 1 1 166329 487 0.00 2019-11-12 17:55:29 2019-11-12 18:53:25 t 1 2 166331 562 0.00 2019-11-12 18:54:21 2019-11-12 18:54:52 t 1 1 166333 562 0.00 2019-11-12 18:55:23 2019-11-12 18:55:47 t 1 1 166336 566 0.00 2019-11-12 18:51:45 2019-11-12 18:58:20 t 1 1 166339 422 0.00 2019-11-12 18:59:05 2019-11-12 18:59:33 t 1 1 166342 566 0.00 2019-11-12 18:58:20 2019-11-12 19:04:08 t 1 1 166345 652 0.00 2019-11-12 19:01:58 2019-11-12 19:07:07 t 1 1 166346 451 0.00 2019-11-12 18:59:21 2019-11-12 19:08:19 t 1 1 166350 422 0.00 2019-11-12 19:09:17 2019-11-12 19:09:55 t 1 1 166357 456 0.00 2019-11-12 19:01:02 2019-11-12 19:18:11 t 1 1 166358 562 0.00 2019-11-12 19:18:53 2019-11-12 19:19:25 t 1 1 166366 564 0.00 2019-11-12 19:21:48 2019-11-12 19:22:34 t 1 1 166368 512 0.00 2019-11-12 19:20:53 2019-11-12 19:25:03 t 1 1 166372 422 0.00 2019-11-12 19:27:09 2019-11-12 19:27:23 t 1 1 166374 637 0.00 2019-11-12 19:23:34 2019-11-12 19:28:28 t 1 1 166377 422 0.00 2019-11-12 19:29:59 2019-11-12 19:30:07 t 1 1 166380 430 0.00 2019-11-12 19:29:46 2019-11-12 19:31:32 t 1 1 166384 520 0.00 2019-11-12 19:21:51 2019-11-12 19:35:43 t 1 1 166386 430 0.00 2019-11-12 19:36:10 2019-11-12 19:36:26 t 1 1 166388 422 0.00 2019-11-12 19:36:08 2019-11-12 19:37:45 t 1 1 166389 422 0.00 2019-11-12 19:37:54 2019-11-12 19:38:02 t 1 1 166391 422 0.00 2019-11-12 19:38:25 2019-11-12 19:38:46 t 1 1 166392 422 0.00 2019-11-12 19:39:13 2019-11-12 19:39:27 t 1 1 166395 430 0.00 2019-11-12 19:40:01 2019-11-12 19:40:06 t 1 1 166398 430 0.00 2019-11-12 19:41:15 2019-11-12 19:42:15 t 1 1 166400 430 0.00 2019-11-12 19:43:32 2019-11-12 19:43:37 t 1 1 166402 562 0.00 2019-11-12 19:44:50 2019-11-12 19:45:13 t 1 1 166405 520 0.00 2019-11-12 19:36:09 2019-11-12 19:46:17 t 1 1 166407 422 0.00 2019-11-12 19:46:14 2019-11-12 19:47:17 t 1 1 166415 430 0.00 2019-11-12 19:49:45 2019-11-12 19:50:08 t 1 1 166421 538 0.00 2019-11-12 19:32:07 2019-11-12 19:52:03 t 1 1 166423 645 0.00 2019-11-12 19:50:42 2019-11-12 19:52:38 t 1 1 166426 430 0.00 2019-11-12 19:52:53 2019-11-12 19:53:37 t 1 1 166427 637 0.00 2019-11-12 19:31:34 2019-11-12 19:54:08 t 1 1 166429 430 0.00 2019-11-12 19:54:47 2019-11-12 19:55:03 t 1 1 166432 430 0.00 2019-11-12 19:55:39 2019-11-12 19:55:41 t 1 1 166433 587 0.00 2019-11-12 19:50:27 2019-11-12 19:56:07 t 1 1 166434 430 0.00 2019-11-12 19:55:58 2019-11-12 19:56:19 t 1 1 166439 520 0.00 2019-11-12 19:46:17 2019-11-12 19:57:13 t 1 1 166442 430 0.00 2019-11-12 19:57:35 2019-11-12 19:57:38 t 1 1 166443 652 0.00 2019-11-12 19:43:12 2019-11-12 19:58:07 t 1 1 166446 587 0.00 2019-11-12 19:56:28 2019-11-12 19:58:56 t 1 1 166448 422 0.00 2019-11-12 19:57:27 2019-11-12 19:59:45 t 1 1 166449 637 0.00 2019-11-12 19:57:00 2019-11-12 19:59:59 t 1 1 166452 430 0.00 2019-11-12 20:01:21 2019-11-12 20:01:21 f 1 1 166459 611 0.00 2019-11-12 19:58:33 2019-11-12 20:03:32 t 1 1 166464 562 0.00 2019-11-12 20:07:06 2019-11-12 20:07:17 t 1 1 166465 481 0.00 2019-11-12 19:39:00 2019-11-12 20:08:20 t 1 1 166471 520 0.00 2019-11-12 20:10:40 2019-11-12 20:13:39 t 1 1 166475 520 0.00 2019-11-12 20:15:41 2019-11-12 20:16:11 t 1 1 166477 422 0.00 2019-11-12 20:16:00 2019-11-12 20:19:10 t 1 1 166480 422 0.00 2019-11-12 20:21:08 2019-11-12 20:21:24 t 1 1 166487 587 0.00 2019-11-12 20:12:59 2019-11-12 20:27:13 t 1 1 166490 520 0.00 2019-11-12 20:24:27 2019-11-12 20:29:16 t 1 1 166492 520 0.00 2019-11-12 20:29:16 2019-11-12 20:30:24 t 1 1 166496 570 0.00 2019-11-12 19:27:35 2019-11-12 20:33:06 t 1 1 166498 422 0.00 2019-11-12 20:33:37 2019-11-12 20:33:58 t 1 1 166500 652 0.00 2019-11-12 20:22:04 2019-11-12 20:34:51 t 1 1 166505 520 0.00 2019-11-12 20:37:58 2019-11-12 20:39:31 t 1 1 166510 422 0.00 2019-11-12 20:43:01 2019-11-12 20:43:19 t 1 1 166514 593 0.00 2019-11-12 20:27:42 2019-11-12 20:47:09 t 1 1 166519 422 0.00 2019-11-12 20:50:06 2019-11-12 20:50:18 t 1 1 166521 593 0.00 2019-11-12 20:47:09 2019-11-12 20:53:02 t 1 1 166525 627 0.00 2019-11-12 20:47:17 2019-11-12 20:54:24 t 1 1 166526 562 0.00 2019-11-12 20:54:31 2019-11-12 20:54:40 t 1 1 166531 627 0.00 2019-11-12 20:56:50 2019-11-12 20:57:10 t 1 1 166534 611 0.00 2019-11-12 20:58:39 2019-11-12 20:58:52 t 1 1 166536 627 0.00 2019-11-12 20:58:55 2019-11-12 20:59:14 t 1 1 166543 611 0.00 2019-11-12 20:58:52 2019-11-12 21:04:38 t 1 1 166544 422 0.00 2019-11-12 20:59:06 2019-11-12 21:04:58 t 1 1 166551 562 0.00 2019-11-12 21:05:00 2019-11-12 21:09:25 t 1 1 166554 566 0.00 2019-11-12 20:55:19 2019-11-12 21:09:45 t 1 1 166557 619 0.00 2019-11-12 20:47:26 2019-11-12 21:10:19 t 1 1 166562 520 0.00 2019-11-12 20:50:46 2019-11-12 21:12:40 t 1 1 166563 627 0.00 2019-11-12 21:12:17 2019-11-12 21:13:01 t 1 1 166565 627 0.00 2019-11-12 21:13:20 2019-11-12 21:13:37 t 1 1 166566 619 0.00 2019-11-12 21:10:19 2019-11-12 21:14:10 t 1 1 166569 627 0.00 2019-11-12 21:14:16 2019-11-12 21:14:35 t 1 1 166573 627 0.00 2019-11-12 21:15:23 2019-11-12 21:15:35 t 1 1 166577 627 0.00 2019-11-12 21:17:21 2019-11-12 21:17:42 t 1 1 166581 627 0.00 2019-11-12 21:19:24 2019-11-12 21:19:42 t 1 1 166587 627 0.00 2019-11-12 21:21:29 2019-11-12 21:21:46 t 1 1 166589 587 0.00 2019-11-12 21:21:46 2019-11-12 21:22:31 t 1 1 166590 627 0.00 2019-11-12 21:22:37 2019-11-12 21:22:44 t 1 1 166596 627 0.00 2019-11-12 21:25:35 2019-11-12 21:25:53 t 1 1 166600 538 0.00 2019-11-12 21:22:38 2019-11-12 21:27:08 t 1 1 166603 490 0.00 2019-11-12 21:21:31 2019-11-12 21:28:51 t 1 1 166609 498 0.00 2019-11-12 21:22:51 2019-11-12 21:32:26 t 1 2 166612 637 0.00 2019-11-12 20:52:42 2019-11-12 21:33:45 t 1 1 166615 627 0.00 2019-11-12 21:34:49 2019-11-12 21:35:12 t 1 1 166617 635 0.00 2019-11-12 21:27:31 2019-11-12 21:35:40 t 1 1 166624 627 0.00 2019-11-12 21:38:54 2019-11-12 21:39:11 t 1 1 166625 627 0.00 2019-11-12 21:39:56 2019-11-12 21:40:36 t 1 1 166636 422 0.00 2019-11-12 21:47:35 2019-11-12 21:48:05 t 1 1 166639 619 0.00 2019-11-12 21:46:21 2019-11-12 21:48:36 t 1 1 166641 597 0.00 2019-11-12 21:40:32 2019-11-12 21:49:32 t 1 1 166647 422 0.00 2019-11-12 21:53:22 2019-11-12 21:53:27 t 1 1 166654 627 0.00 2019-11-12 21:55:31 2019-11-12 21:56:04 t 1 1 166657 587 0.00 2019-11-12 21:55:04 2019-11-12 21:56:24 t 1 1 166659 627 0.00 2019-11-12 21:56:12 2019-11-12 21:56:32 t 1 1 166661 595 0.00 2019-11-12 21:56:54 2019-11-12 21:57:17 t 1 1 166662 627 0.00 2019-11-12 21:57:21 2019-11-12 21:57:30 t 1 1 166669 562 0.00 2019-11-12 21:57:02 2019-11-12 21:59:11 t 1 1 166671 510 0.00 2019-11-12 21:12:01 2019-11-12 21:59:52 t 1 1 166672 627 0.00 2019-11-12 22:00:12 2019-11-12 22:00:13 t 1 1 166677 627 0.00 2019-11-12 22:01:17 2019-11-12 22:01:26 t 1 1 166614 564 0.00 2019-11-12 19:22:39 2019-11-12 21:34:11 t 1 1 166616 619 0.00 2019-11-12 21:14:17 2019-11-12 21:35:36 t 1 1 166618 627 0.00 2019-11-12 21:35:47 2019-11-12 21:36:10 t 1 1 166619 566 0.00 2019-11-12 21:28:08 2019-11-12 21:37:07 t 1 1 166621 562 0.00 2019-11-12 21:17:17 2019-11-12 21:37:24 t 1 1 166628 422 0.00 2019-11-12 21:40:04 2019-11-12 21:41:35 t 1 1 166629 627 0.00 2019-11-12 21:41:59 2019-11-12 21:42:14 t 1 1 166630 627 0.00 2019-11-12 21:43:09 2019-11-12 21:43:15 t 1 1 166631 627 0.00 2019-11-12 21:44:01 2019-11-12 21:44:06 t 1 1 166632 627 0.00 2019-11-12 21:44:11 2019-11-12 21:44:54 t 1 1 166633 566 0.00 2019-11-12 21:37:07 2019-11-12 21:45:30 t 1 1 166634 619 0.00 2019-11-12 21:35:50 2019-11-12 21:46:01 t 1 1 166638 627 0.00 2019-11-12 21:48:21 2019-11-12 21:48:25 t 1 1 166640 551 0.00 2019-11-12 21:09:15 2019-11-12 21:49:02 t 1 1 166643 538 0.00 2019-11-12 21:27:08 2019-11-12 21:50:56 t 1 1 166645 422 0.00 2019-11-12 21:50:51 2019-11-12 21:51:14 t 1 1 166650 591 0.00 2019-11-12 20:59:03 2019-11-12 21:54:53 t 1 1 166660 595 0.00 2019-11-12 21:55:45 2019-11-12 21:56:45 t 1 1 166665 627 0.00 2019-11-12 21:56:44 2019-11-12 21:58:27 t 1 1 166668 422 0.00 2019-11-12 21:55:47 2019-11-12 21:59:07 t 1 1 166673 627 0.00 2019-11-12 22:00:25 2019-11-12 22:00:26 t 1 1 166674 627 0.00 2019-11-12 22:00:37 2019-11-12 22:00:48 t 1 1 166678 595 0.00 2019-11-12 22:01:44 2019-11-12 22:01:52 t 1 1 166679 627 0.00 2019-11-12 22:02:15 2019-11-12 22:02:29 t 1 1 166682 562 0.00 2019-11-12 22:03:23 2019-11-12 22:03:44 t 1 1 166684 597 0.00 2019-11-12 22:00:26 2019-11-12 22:03:56 t 1 1 166685 627 0.00 2019-11-12 22:03:57 2019-11-12 22:04:10 t 1 1 166690 649 0.00 2019-11-12 22:02:58 2019-11-12 22:05:47 t 1 1 166696 627 0.00 2019-11-12 22:07:40 2019-11-12 22:07:51 t 1 1 166697 485 0.00 2019-11-12 22:05:53 2019-11-12 22:08:04 t 1 1 166701 627 0.00 2019-11-12 22:09:26 2019-11-12 22:09:35 t 1 1 166702 562 0.00 2019-11-12 22:07:52 2019-11-12 22:10:06 t 1 1 166703 422 0.00 2019-11-12 22:09:17 2019-11-12 22:10:33 t 1 1 166706 562 0.00 2019-11-12 22:10:43 2019-11-12 22:11:03 t 1 1 166708 597 0.00 2019-11-12 22:10:08 2019-11-12 22:11:31 t 1 1 166710 627 0.00 2019-11-12 22:12:27 2019-11-12 22:12:37 t 1 1 166712 481 0.00 2019-11-12 22:01:17 2019-11-12 22:13:10 t 1 1 166717 585 0.00 2019-11-12 21:53:11 2019-11-12 22:14:40 t 1 1 166718 645 0.00 2019-11-12 21:56:07 2019-11-12 22:15:34 t 1 1 166725 587 0.00 2019-11-12 22:05:10 2019-11-12 22:19:59 t 1 1 166727 544 0.00 2019-11-12 22:13:21 2019-11-12 22:20:54 t 1 1 166728 637 0.00 2019-11-12 22:01:24 2019-11-12 22:21:51 t 1 1 166730 595 0.00 2019-11-12 22:22:27 2019-11-12 22:22:49 t 1 1 166732 544 0.00 2019-11-12 22:20:54 2019-11-12 22:24:23 t 1 1 166734 562 0.00 2019-11-12 22:15:41 2019-11-12 22:25:36 t 1 1 166736 564 0.00 2019-11-12 21:35:23 2019-11-12 22:25:49 t 1 1 166737 544 0.00 2019-11-12 22:25:44 2019-11-12 22:26:16 t 1 1 166739 595 0.00 2019-11-12 22:27:15 2019-11-12 22:27:22 t 1 1 166740 544 0.00 2019-11-12 22:26:57 2019-11-12 22:28:02 t 1 1 166744 422 0.00 2019-11-12 22:29:08 2019-11-12 22:29:29 t 1 1 166747 544 0.00 2019-11-12 22:28:43 2019-11-12 22:30:13 t 1 1 166748 544 0.00 2019-11-12 22:30:13 2019-11-12 22:31:28 t 1 1 166749 544 0.00 2019-11-12 22:31:27 2019-11-12 22:32:31 t 1 1 166750 544 0.00 2019-11-12 22:32:31 2019-11-12 22:33:12 t 1 1 166751 544 0.00 2019-11-12 22:33:11 2019-11-12 22:33:46 t 1 1 166755 595 0.00 2019-11-12 22:30:09 2019-11-12 22:34:55 t 1 1 166757 595 0.00 2019-11-12 22:35:25 2019-11-12 22:35:43 t 1 1 166759 544 0.00 2019-11-12 22:35:43 2019-11-12 22:36:18 t 1 1 166761 544 0.00 2019-11-12 22:36:56 2019-11-12 22:37:30 t 1 1 166763 587 0.00 2019-11-12 22:28:33 2019-11-12 22:37:43 t 1 1 166765 562 0.00 2019-11-12 22:36:16 2019-11-12 22:37:47 t 1 1 166766 544 0.00 2019-11-12 22:37:30 2019-11-12 22:38:11 t 1 1 166768 422 0.00 2019-11-12 22:38:16 2019-11-12 22:38:24 t 1 1 166770 483 0.00 2019-11-12 21:54:14 2019-11-12 22:38:56 t 1 1 166773 625 0.00 2019-11-12 21:53:11 2019-11-12 22:40:04 t 1 1 166781 483 0.00 2019-11-12 22:41:08 2019-11-12 22:42:27 t 1 1 166785 220 0.00 2019-11-12 22:40:48 2019-11-12 22:43:11 t 1 2 166787 483 0.00 2019-11-12 22:43:01 2019-11-12 22:43:17 t 1 1 166788 544 0.00 2019-11-12 22:43:14 2019-11-12 22:44:14 t 1 1 166793 514 0.00 2019-11-12 22:04:33 2019-11-12 22:45:50 t 1 1 166796 544 0.00 2019-11-12 22:47:07 2019-11-12 22:47:54 t 1 1 166798 591 0.00 2019-11-12 22:06:27 2019-11-12 22:49:02 t 1 1 166800 562 0.00 2019-11-12 22:41:51 2019-11-12 22:49:32 t 1 1 166811 645 0.00 2019-11-12 22:44:51 2019-11-12 22:57:48 t 1 1 166813 591 0.00 2019-11-12 22:58:06 2019-11-12 22:59:58 t 1 1 166815 595 0.00 2019-11-12 22:52:33 2019-11-12 23:00:46 t 1 1 166816 595 0.00 2019-11-12 23:03:17 2019-11-12 23:03:24 t 1 1 166819 510 0.00 2019-11-12 21:59:52 2019-11-12 23:04:37 t 1 1 166823 587 0.00 2019-11-12 23:06:30 2019-11-12 23:07:20 t 1 1 166826 587 0.00 2019-11-12 23:07:45 2019-11-12 23:09:45 t 1 1 166828 619 0.00 2019-11-12 22:49:32 2019-11-12 23:11:05 t 1 1 166835 570 0.00 2019-11-12 23:09:04 2019-11-12 23:15:01 t 1 1 166836 220 0.00 2019-11-12 23:14:39 2019-11-12 23:15:13 t 1 1 166849 451 0.00 2019-11-12 23:15:15 2019-11-12 23:24:21 t 1 1 166851 445 0.00 2019-11-12 23:24:07 2019-11-12 23:25:36 t 1 1 166854 595 0.00 2019-11-12 23:26:12 2019-11-12 23:26:18 t 1 1 166856 585 0.00 2019-11-12 23:11:02 2019-11-12 23:27:49 t 1 1 166857 587 0.00 2019-11-12 23:14:49 2019-11-12 23:28:59 t 1 1 166858 544 0.00 2019-11-12 23:21:08 2019-11-12 23:30:32 t 1 1 166859 595 0.00 2019-11-12 23:31:18 2019-11-12 23:31:48 t 1 1 166861 627 0.00 2019-11-12 23:25:53 2019-11-12 23:35:54 t 1 1 166870 544 0.00 2019-11-12 23:36:50 2019-11-12 23:45:36 t 1 1 166871 451 0.00 2019-11-12 23:36:05 2019-11-12 23:48:02 t 1 1 166875 544 0.00 2019-11-12 23:45:36 2019-11-12 23:50:51 t 1 1 166881 544 0.00 2019-11-12 23:52:13 2019-11-12 23:59:48 t 1 1 166887 566 0.00 2019-11-12 21:45:30 2019-11-13 00:04:27 t 1 1 166888 220 0.00 2019-11-12 23:53:06 2019-11-13 00:06:24 t 1 1 166891 587 0.00 2019-11-13 00:05:40 2019-11-13 00:08:06 t 1 1 166896 544 0.00 2019-11-13 00:03:15 2019-11-13 00:11:40 t 1 1 166900 623 0.00 2019-11-13 00:12:54 2019-11-13 00:12:54 t 1 1 166901 623 0.00 2019-11-13 00:13:00 2019-11-13 00:13:08 t 1 1 166905 587 0.00 2019-11-13 00:14:31 2019-11-13 00:14:43 t 1 1 166906 622 0.00 2019-11-13 00:11:23 2019-11-13 00:14:59 t 1 1 166909 623 0.00 2019-11-13 00:16:06 2019-11-13 00:17:08 t 1 1 166914 609 0.00 2019-11-13 00:14:33 2019-11-13 00:21:02 t 1 1 166918 623 0.00 2019-11-13 00:23:05 2019-11-13 00:23:06 t 1 1 166921 587 0.00 2019-11-13 00:25:05 2019-11-13 00:25:20 t 1 1 166635 422 0.00 2019-11-12 21:46:03 2019-11-12 21:46:07 t 1 1 166637 490 0.00 2019-11-12 21:37:58 2019-11-12 21:48:14 t 1 1 166642 597 0.00 2019-11-12 21:49:32 2019-11-12 21:50:53 t 1 1 166644 562 0.00 2019-11-12 21:38:16 2019-11-12 21:51:08 t 1 1 166646 585 0.00 2019-11-12 21:48:17 2019-11-12 21:53:11 t 1 1 166648 490 0.00 2019-11-12 21:48:14 2019-11-12 21:53:54 t 1 1 166649 485 0.00 2019-11-12 21:39:07 2019-11-12 21:54:36 t 1 1 166651 595 0.00 2019-11-12 21:44:35 2019-11-12 21:55:20 t 1 1 166652 595 0.00 2019-11-12 21:55:30 2019-11-12 21:55:33 t 1 1 166653 645 0.00 2019-11-12 21:49:27 2019-11-12 21:55:47 t 1 1 166655 562 0.00 2019-11-12 21:54:27 2019-11-12 21:56:06 t 1 1 166656 591 0.00 2019-11-12 21:54:53 2019-11-12 21:56:18 t 1 1 166658 578 0.00 2019-11-12 21:23:13 2019-11-12 21:56:30 t 1 1 166663 595 0.00 2019-11-12 21:57:28 2019-11-12 21:57:50 t 1 1 166664 627 0.00 2019-11-12 21:58:12 2019-11-12 21:58:24 t 1 1 166666 627 0.00 2019-11-12 21:58:31 2019-11-12 21:58:35 t 1 1 166667 627 0.00 2019-11-12 21:58:43 2019-11-12 21:59:03 t 1 1 166670 490 0.00 2019-11-12 21:53:54 2019-11-12 21:59:51 t 1 1 166675 481 0.00 2019-11-12 21:04:20 2019-11-12 22:01:17 t 1 1 166676 637 0.00 2019-11-12 21:34:09 2019-11-12 22:01:24 t 1 1 166680 627 0.00 2019-11-12 22:02:39 2019-11-12 22:02:48 t 1 1 166683 627 0.00 2019-11-12 22:03:38 2019-11-12 22:03:50 t 1 1 166687 587 0.00 2019-11-12 21:56:24 2019-11-12 22:04:27 t 1 1 166693 562 0.00 2019-11-12 22:06:24 2019-11-12 22:06:43 t 1 1 166694 595 0.00 2019-11-12 22:06:50 2019-11-12 22:06:58 t 1 1 166698 627 0.00 2019-11-12 22:08:04 2019-11-12 22:08:15 t 1 1 166705 627 0.00 2019-11-12 22:10:44 2019-11-12 22:10:59 t 1 1 166707 627 0.00 2019-11-12 22:11:09 2019-11-12 22:11:19 t 1 1 166714 508 0.00 2019-11-12 21:34:06 2019-11-12 22:13:42 t 1 2 166716 562 0.00 2019-11-12 22:13:25 2019-11-12 22:14:35 t 1 1 166723 595 0.00 2019-11-12 22:17:20 2019-11-12 22:17:42 t 1 1 166726 422 0.00 2019-11-12 22:19:50 2019-11-12 22:20:26 t 1 1 166733 544 0.00 2019-11-12 22:24:23 2019-11-12 22:25:03 t 1 1 166735 544 0.00 2019-11-12 22:25:03 2019-11-12 22:25:44 t 1 1 166738 544 0.00 2019-11-12 22:26:16 2019-11-12 22:26:57 t 1 1 166743 595 0.00 2019-11-12 22:29:09 2019-11-12 22:29:22 t 1 1 166745 595 0.00 2019-11-12 22:29:34 2019-11-12 22:30:00 t 1 1 166752 562 0.00 2019-11-12 22:27:21 2019-11-12 22:34:14 t 1 1 166754 422 0.00 2019-11-12 22:29:37 2019-11-12 22:34:29 t 1 1 166758 544 0.00 2019-11-12 22:35:02 2019-11-12 22:35:43 t 1 1 166760 544 0.00 2019-11-12 22:36:18 2019-11-12 22:36:56 t 1 1 166764 422 0.00 2019-11-12 22:37:38 2019-11-12 22:37:46 t 1 1 166767 622 0.00 2019-11-12 22:33:27 2019-11-12 22:38:20 t 1 1 166769 544 0.00 2019-11-12 22:38:11 2019-11-12 22:38:44 t 1 1 166772 544 0.00 2019-11-12 22:39:25 2019-11-12 22:40:01 t 1 1 166777 562 0.00 2019-11-12 22:38:56 2019-11-12 22:41:32 t 1 1 166782 422 0.00 2019-11-12 22:42:15 2019-11-12 22:42:28 t 1 1 166784 595 0.00 2019-11-12 22:42:43 2019-11-12 22:43:03 t 1 1 166786 544 0.00 2019-11-12 22:42:35 2019-11-12 22:43:14 t 1 1 166789 422 0.00 2019-11-12 22:44:14 2019-11-12 22:44:23 t 1 1 166790 544 0.00 2019-11-12 22:44:13 2019-11-12 22:44:56 t 1 1 166791 637 0.00 2019-11-12 22:21:51 2019-11-12 22:45:21 t 1 1 166799 544 0.00 2019-11-12 22:48:23 2019-11-12 22:49:21 t 1 1 166801 544 0.00 2019-11-12 22:49:21 2019-11-12 22:50:12 t 1 1 166803 622 0.00 2019-11-12 22:40:14 2019-11-12 22:50:51 t 1 1 166804 595 0.00 2019-11-12 22:47:59 2019-11-12 22:51:01 t 1 1 166805 544 0.00 2019-11-12 22:50:11 2019-11-12 22:51:33 t 1 1 166806 544 0.00 2019-11-12 22:51:33 2019-11-12 22:52:13 t 1 1 166809 562 0.00 2019-11-12 22:53:25 2019-11-12 22:54:16 t 1 1 166812 622 0.00 2019-11-12 22:50:51 2019-11-12 22:59:57 t 1 1 166821 622 0.00 2019-11-12 22:59:57 2019-11-12 23:05:57 t 1 1 166824 595 0.00 2019-11-12 23:08:24 2019-11-12 23:08:31 t 1 1 166825 220 0.00 2019-11-12 23:06:51 2019-11-12 23:09:14 t 1 2 166827 585 0.00 2019-11-12 23:06:46 2019-11-12 23:11:03 t 1 1 166829 625 0.00 2019-11-12 22:40:04 2019-11-12 23:11:22 t 1 1 166830 483 0.00 2019-11-12 23:11:40 2019-11-12 23:11:46 t 1 1 166831 544 0.00 2019-11-12 22:53:03 2019-11-12 23:12:00 t 1 1 166833 595 0.00 2019-11-12 23:13:30 2019-11-12 23:13:38 t 1 1 166834 220 0.00 2019-11-12 23:07:28 2019-11-12 23:14:40 t 1 1 166837 595 0.00 2019-11-12 23:15:53 2019-11-12 23:16:00 t 1 1 166843 544 0.00 2019-11-12 23:12:00 2019-11-12 23:21:08 t 1 1 166845 562 0.00 2019-11-12 22:54:27 2019-11-12 23:21:17 t 1 1 166847 445 0.00 2019-11-12 23:02:51 2019-11-12 23:22:18 t 1 1 166848 619 0.00 2019-11-12 23:18:09 2019-11-12 23:23:56 t 1 1 166850 645 0.00 2019-11-12 22:57:48 2019-11-12 23:24:55 t 1 1 166855 510 0.00 2019-11-12 23:04:37 2019-11-12 23:27:03 t 1 1 166862 451 0.00 2019-11-12 23:24:21 2019-11-12 23:36:05 t 1 1 166864 562 0.00 2019-11-12 23:24:04 2019-11-12 23:36:16 t 1 1 166867 220 0.00 2019-11-12 23:22:52 2019-11-12 23:40:09 t 1 1 166869 585 0.00 2019-11-12 23:40:05 2019-11-12 23:45:34 t 1 1 166872 585 0.00 2019-11-12 23:45:41 2019-11-12 23:48:03 t 1 1 166874 595 0.00 2019-11-12 23:32:03 2019-11-12 23:50:21 t 1 1 166876 585 0.00 2019-11-12 23:48:02 2019-11-12 23:51:22 t 1 1 166878 562 0.00 2019-11-12 23:52:10 2019-11-12 23:53:03 t 1 1 166879 587 0.00 2019-11-12 23:42:15 2019-11-12 23:55:37 t 1 1 166882 451 0.00 2019-11-12 23:55:35 2019-11-13 00:01:40 t 1 1 166885 544 0.00 2019-11-12 23:59:48 2019-11-13 00:03:15 t 1 1 166886 422 0.00 2019-11-12 22:45:36 2019-11-13 00:04:04 t 1 1 166890 483 0.00 2019-11-12 23:12:19 2019-11-13 00:08:03 t 1 1 166893 422 0.00 2019-11-13 00:08:02 2019-11-13 00:08:36 t 1 1 166894 625 0.00 2019-11-13 00:07:01 2019-11-13 00:09:30 t 1 1 166897 625 0.00 2019-11-13 00:09:29 2019-11-13 00:11:48 t 1 1 166898 623 0.00 2019-11-13 00:11:02 2019-11-13 00:12:06 t 1 1 166904 623 0.00 2019-11-13 00:13:13 2019-11-13 00:14:37 t 1 1 166907 422 0.00 2019-11-13 00:13:46 2019-11-13 00:15:22 t 1 1 166910 623 0.00 2019-11-13 00:17:47 2019-11-13 00:17:52 t 1 1 166912 625 0.00 2019-11-13 00:11:51 2019-11-13 00:19:06 t 1 1 166913 562 0.00 2019-11-13 00:06:27 2019-11-13 00:20:38 t 1 1 166916 512 0.00 2019-11-12 23:30:08 2019-11-13 00:21:53 t 1 1 166920 587 0.00 2019-11-13 00:18:09 2019-11-13 00:24:51 t 1 1 166922 623 0.00 2019-11-13 00:24:28 2019-11-13 00:25:30 t 1 1 166924 422 0.00 2019-11-13 00:15:56 2019-11-13 00:26:09 t 1 1 166926 220 0.00 2019-11-12 23:39:14 2019-11-13 00:26:56 t 1 1 166928 578 0.00 2019-11-12 21:56:30 2019-11-13 00:27:19 t 1 1 166931 220 0.00 2019-11-13 00:26:55 2019-11-13 00:29:48 t 1 1 166936 510 0.00 2019-11-12 23:49:04 2019-11-13 00:34:52 t 1 1 166939 587 0.00 2019-11-13 00:25:23 2019-11-13 00:35:20 t 1 1 166681 627 0.00 2019-11-12 22:03:17 2019-11-12 22:03:28 t 1 1 166686 422 0.00 2019-11-12 22:03:47 2019-11-12 22:04:12 t 1 1 166688 587 0.00 2019-11-12 22:04:37 2019-11-12 22:05:04 t 1 1 166689 627 0.00 2019-11-12 22:05:18 2019-11-12 22:05:28 t 1 1 166691 485 0.00 2019-11-12 21:54:36 2019-11-12 22:05:53 t 1 1 166692 627 0.00 2019-11-12 22:06:18 2019-11-12 22:06:37 t 1 1 166695 627 0.00 2019-11-12 22:07:20 2019-11-12 22:07:30 t 1 1 166699 627 0.00 2019-11-12 22:08:32 2019-11-12 22:08:43 t 1 1 166700 490 0.00 2019-11-12 21:59:51 2019-11-12 22:09:24 t 1 1 166704 627 0.00 2019-11-12 22:10:22 2019-11-12 22:10:37 t 1 1 166709 595 0.00 2019-11-12 22:12:00 2019-11-12 22:12:04 t 1 1 166711 562 0.00 2019-11-12 22:11:35 2019-11-12 22:12:37 t 1 1 166713 649 0.00 2019-11-12 22:05:47 2019-11-12 22:13:32 t 1 1 166715 627 0.00 2019-11-12 22:13:28 2019-11-12 22:14:28 t 1 1 166719 422 0.00 2019-11-12 22:16:24 2019-11-12 22:16:37 t 1 1 166720 422 0.00 2019-11-12 22:16:47 2019-11-12 22:16:55 t 1 1 166721 595 0.00 2019-11-12 22:17:02 2019-11-12 22:17:10 t 1 1 166722 627 0.00 2019-11-12 22:16:40 2019-11-12 22:17:37 t 1 1 166724 520 0.00 2019-11-12 21:59:55 2019-11-12 22:18:47 t 1 1 166729 595 0.00 2019-11-12 22:22:07 2019-11-12 22:22:15 t 1 1 166731 422 0.00 2019-11-12 22:23:57 2019-11-12 22:24:10 t 1 1 166741 587 0.00 2019-11-12 22:19:59 2019-11-12 22:28:33 t 1 1 166742 544 0.00 2019-11-12 22:28:02 2019-11-12 22:28:43 t 1 1 166746 585 0.00 2019-11-12 22:24:32 2019-11-12 22:30:10 t 1 1 166753 544 0.00 2019-11-12 22:33:46 2019-11-12 22:34:27 t 1 1 166756 544 0.00 2019-11-12 22:34:27 2019-11-12 22:35:02 t 1 1 166762 595 0.00 2019-11-12 22:37:26 2019-11-12 22:37:33 t 1 1 166771 544 0.00 2019-11-12 22:38:44 2019-11-12 22:39:25 t 1 1 166774 544 0.00 2019-11-12 22:40:01 2019-11-12 22:40:38 t 1 1 166775 422 0.00 2019-11-12 22:40:50 2019-11-12 22:40:54 t 1 1 166776 587 0.00 2019-11-12 22:37:43 2019-11-12 22:41:27 t 1 1 166778 544 0.00 2019-11-12 22:40:37 2019-11-12 22:41:34 t 1 1 166779 587 0.00 2019-11-12 22:41:35 2019-11-12 22:41:54 t 1 1 166780 422 0.00 2019-11-12 22:42:02 2019-11-12 22:42:09 t 1 1 166783 544 0.00 2019-11-12 22:41:34 2019-11-12 22:42:38 t 1 1 166792 544 0.00 2019-11-12 22:44:56 2019-11-12 22:45:36 t 1 1 166794 544 0.00 2019-11-12 22:45:36 2019-11-12 22:46:24 t 1 1 166795 544 0.00 2019-11-12 22:46:24 2019-11-12 22:47:07 t 1 1 166797 544 0.00 2019-11-12 22:47:54 2019-11-12 22:48:23 t 1 1 166802 562 0.00 2019-11-12 22:50:32 2019-11-12 22:50:40 t 1 1 166807 562 0.00 2019-11-12 22:51:02 2019-11-12 22:52:55 t 1 1 166808 514 0.00 2019-11-12 22:45:50 2019-11-12 22:53:18 t 1 1 166810 591 0.00 2019-11-12 22:51:42 2019-11-12 22:54:50 t 1 1 166814 587 0.00 2019-11-12 22:42:28 2019-11-12 23:00:13 t 1 1 166817 587 0.00 2019-11-12 23:00:18 2019-11-12 23:03:42 t 1 1 166818 587 0.00 2019-11-12 23:04:16 2019-11-12 23:04:24 t 1 1 166820 611 0.00 2019-11-12 22:54:06 2019-11-12 23:05:08 t 1 1 166822 587 0.00 2019-11-12 23:04:37 2019-11-12 23:06:23 t 1 1 166832 483 0.00 2019-11-12 23:11:50 2019-11-12 23:12:12 t 1 1 166838 622 0.00 2019-11-12 23:15:38 2019-11-12 23:17:09 t 1 1 166839 220 0.00 2019-11-12 23:15:13 2019-11-12 23:18:53 t 1 1 166840 220 0.00 2019-11-12 23:18:53 2019-11-12 23:19:28 t 1 1 166841 538 0.00 2019-11-12 23:18:30 2019-11-12 23:20:27 t 1 1 166842 485 0.00 2019-11-12 23:11:15 2019-11-12 23:21:05 t 1 1 166844 595 0.00 2019-11-12 23:21:01 2019-11-12 23:21:08 t 1 1 166846 220 0.00 2019-11-12 23:19:27 2019-11-12 23:22:03 t 1 1 166852 627 0.00 2019-11-12 22:17:37 2019-11-12 23:25:53 t 1 1 166853 625 0.00 2019-11-12 23:11:22 2019-11-12 23:25:59 t 1 1 166860 514 0.00 2019-11-12 23:27:15 2019-11-12 23:31:52 t 1 1 166863 538 0.00 2019-11-12 23:18:32 2019-11-12 23:36:12 t 1 1 166865 544 0.00 2019-11-12 23:33:29 2019-11-12 23:36:28 t 1 1 166866 585 0.00 2019-11-12 23:27:49 2019-11-12 23:40:05 t 1 1 166868 587 0.00 2019-11-12 23:29:31 2019-11-12 23:41:29 t 1 1 166873 510 0.00 2019-11-12 23:27:03 2019-11-12 23:49:04 t 1 1 166877 562 0.00 2019-11-12 23:36:27 2019-11-12 23:52:02 t 1 1 166880 445 0.00 2019-11-12 23:29:46 2019-11-12 23:59:00 t 1 1 166883 562 0.00 2019-11-13 00:01:21 2019-11-13 00:02:22 t 1 1 166884 562 0.00 2019-11-13 00:02:43 2019-11-13 00:02:58 t 1 1 166889 625 0.00 2019-11-12 23:25:34 2019-11-13 00:06:58 t 1 1 166892 220 0.00 2019-11-13 00:06:24 2019-11-13 00:08:18 t 1 1 166895 422 0.00 2019-11-13 00:09:50 2019-11-13 00:10:04 t 1 1 166899 623 0.00 2019-11-13 00:12:35 2019-11-13 00:12:46 t 1 1 166902 587 0.00 2019-11-13 00:10:49 2019-11-13 00:14:08 t 1 1 166903 609 0.00 2019-11-13 00:09:34 2019-11-13 00:14:33 t 1 1 166908 544 0.00 2019-11-13 00:11:40 2019-11-13 00:17:04 t 1 1 166911 622 0.00 2019-11-13 00:14:59 2019-11-13 00:18:09 t 1 1 166915 623 0.00 2019-11-13 00:20:53 2019-11-13 00:21:08 t 1 1 166917 625 0.00 2019-11-13 00:19:05 2019-11-13 00:22:19 t 1 1 166919 544 0.00 2019-11-13 00:17:04 2019-11-13 00:23:28 t 1 1 166927 570 0.00 2019-11-12 23:15:01 2019-11-13 00:27:08 t 1 1 166929 623 0.00 2019-11-13 00:27:19 2019-11-13 00:27:24 t 1 1 166930 562 0.00 2019-11-13 00:29:01 2019-11-13 00:29:21 t 1 1 166933 544 0.00 2019-11-13 00:23:28 2019-11-13 00:30:49 t 1 1 166934 512 0.00 2019-11-13 00:22:39 2019-11-13 00:32:24 t 1 1 166940 422 0.00 2019-11-13 00:36:23 2019-11-13 00:36:40 t 1 1 166943 609 0.00 2019-11-13 00:34:09 2019-11-13 00:37:33 t 1 1 166947 544 0.00 2019-11-13 00:37:11 2019-11-13 00:41:54 t 1 1 166950 623 0.00 2019-11-13 00:39:27 2019-11-13 00:44:35 t 1 1 166951 544 0.00 2019-11-13 00:41:54 2019-11-13 00:47:20 t 1 1 166954 562 0.00 2019-11-13 00:50:25 2019-11-13 00:50:49 t 1 1 166959 512 0.00 2019-11-13 00:44:18 2019-11-13 00:54:19 t 1 1 166961 422 0.00 2019-11-13 00:57:35 2019-11-13 00:58:13 t 1 1 166965 623 0.00 2019-11-13 00:59:44 2019-11-13 01:04:30 t 1 1 166968 623 0.00 2019-11-13 01:06:53 2019-11-13 01:06:56 t 1 1 166970 422 0.00 2019-11-13 01:04:23 2019-11-13 01:09:45 t 1 1 166971 623 0.00 2019-11-13 01:10:58 2019-11-13 01:11:01 t 1 1 166972 544 0.00 2019-11-13 01:07:11 2019-11-13 01:12:08 t 1 1 166974 622 0.00 2019-11-13 00:53:54 2019-11-13 01:12:42 t 1 1 166981 562 0.00 2019-11-13 01:22:45 2019-11-13 01:23:06 t 1 1 166984 544 0.00 2019-11-13 01:20:55 2019-11-13 01:26:04 t 1 1 166985 623 0.00 2019-11-13 01:26:18 2019-11-13 01:26:21 t 1 1 166986 544 0.00 2019-11-13 01:26:04 2019-11-13 01:30:48 t 1 1 166989 422 0.00 2019-11-13 01:25:53 2019-11-13 01:34:58 t 1 1 166991 623 0.00 2019-11-13 01:36:29 2019-11-13 01:36:29 t 1 1 166996 587 0.00 2019-11-13 01:43:15 2019-11-13 01:43:20 t 1 1 166999 587 0.00 2019-11-13 01:44:01 2019-11-13 01:45:31 t 1 1 167001 587 0.00 2019-11-13 01:46:33 2019-11-13 01:46:59 t 1 1 166923 625 0.00 2019-11-13 00:22:21 2019-11-13 00:25:36 t 1 1 166925 445 0.00 2019-11-12 23:59:00 2019-11-13 00:26:53 t 1 1 166932 422 0.00 2019-11-13 00:30:02 2019-11-13 00:30:15 t 1 1 166935 609 0.00 2019-11-13 00:21:01 2019-11-13 00:34:09 t 1 1 166937 622 0.00 2019-11-13 00:32:37 2019-11-13 00:34:53 t 1 1 166938 623 0.00 2019-11-13 00:28:43 2019-11-13 00:35:02 t 1 1 166941 544 0.00 2019-11-13 00:30:49 2019-11-13 00:37:11 t 1 1 166945 562 0.00 2019-11-13 00:39:45 2019-11-13 00:40:06 t 1 1 166949 512 0.00 2019-11-13 00:32:37 2019-11-13 00:44:19 t 1 1 166952 422 0.00 2019-11-13 00:47:00 2019-11-13 00:47:24 t 1 1 166955 514 0.00 2019-11-13 00:05:11 2019-11-13 00:51:16 t 1 1 166960 544 0.00 2019-11-13 00:52:02 2019-11-13 00:57:18 t 1 1 166962 623 0.00 2019-11-13 00:54:17 2019-11-13 00:59:44 t 1 1 166963 562 0.00 2019-11-13 01:01:09 2019-11-13 01:01:34 t 1 1 166969 544 0.00 2019-11-13 01:01:59 2019-11-13 01:07:11 t 1 1 166973 562 0.00 2019-11-13 01:12:00 2019-11-13 01:12:21 t 1 1 166977 544 0.00 2019-11-13 01:12:08 2019-11-13 01:16:49 t 1 1 166978 587 0.00 2019-11-13 01:16:00 2019-11-13 01:17:39 t 1 1 166980 623 0.00 2019-11-13 01:21:11 2019-11-13 01:21:11 t 1 1 166982 422 0.00 2019-11-13 01:10:09 2019-11-13 01:23:59 t 1 1 166988 562 0.00 2019-11-13 01:33:29 2019-11-13 01:33:54 t 1 1 166995 623 0.00 2019-11-13 01:41:34 2019-11-13 01:41:35 t 1 1 166998 544 0.00 2019-11-13 01:40:08 2019-11-13 01:44:43 t 1 1 167000 623 0.00 2019-11-13 01:45:48 2019-11-13 01:45:53 t 1 1 167003 587 0.00 2019-11-13 01:48:27 2019-11-13 01:50:04 t 1 1 167005 622 0.00 2019-11-13 01:37:08 2019-11-13 01:53:23 t 1 1 167008 562 0.00 2019-11-13 01:55:02 2019-11-13 01:55:20 t 1 1 167009 623 0.00 2019-11-13 01:55:59 2019-11-13 01:55:59 t 1 1 167012 623 0.00 2019-11-13 02:01:12 2019-11-13 02:01:15 t 1 1 167014 544 0.00 2019-11-13 01:59:44 2019-11-13 02:04:49 t 1 1 167017 544 0.00 2019-11-13 02:04:49 2019-11-13 02:09:01 t 1 1 167018 623 0.00 2019-11-13 02:09:12 2019-11-13 02:09:29 t 1 1 167021 623 0.00 2019-11-13 02:14:21 2019-11-13 02:14:22 t 1 1 167024 562 0.00 2019-11-13 02:16:27 2019-11-13 02:16:53 t 1 1 167025 544 0.00 2019-11-13 02:13:33 2019-11-13 02:18:04 t 1 1 167027 544 0.00 2019-11-13 02:18:04 2019-11-13 02:22:47 t 1 1 167028 622 0.00 2019-11-13 02:16:44 2019-11-13 02:23:23 t 1 1 167030 623 0.00 2019-11-13 02:24:41 2019-11-13 02:24:54 t 1 1 167031 544 0.00 2019-11-13 02:22:47 2019-11-13 02:27:36 t 1 1 167033 623 0.00 2019-11-13 02:29:34 2019-11-13 02:29:38 t 1 1 167035 622 0.00 2019-11-13 02:23:23 2019-11-13 02:34:15 t 1 1 167036 623 0.00 2019-11-13 02:34:39 2019-11-13 02:34:41 t 1 1 167037 622 0.00 2019-11-13 02:34:23 2019-11-13 02:35:10 t 1 1 167044 562 0.00 2019-11-13 02:48:51 2019-11-13 02:49:15 t 1 1 167049 566 0.00 2019-11-13 00:45:48 2019-11-13 02:56:05 t 1 1 167052 623 0.00 2019-11-13 03:01:39 2019-11-13 03:01:42 t 1 1 167058 562 0.00 2019-11-13 03:21:02 2019-11-13 03:21:27 t 1 1 167059 623 0.00 2019-11-13 03:21:59 2019-11-13 03:22:00 t 1 1 167062 623 0.00 2019-11-13 03:32:11 2019-11-13 03:32:12 t 1 1 167063 623 0.00 2019-11-13 03:34:53 2019-11-13 03:35:07 t 1 1 167068 570 0.00 2019-11-13 03:00:32 2019-11-13 03:40:59 t 1 1 167069 623 0.00 2019-11-13 03:42:26 2019-11-13 03:43:04 t 1 1 167077 562 0.00 2019-11-13 04:00:57 2019-11-13 04:01:17 t 1 1 167079 623 0.00 2019-11-13 04:08:48 2019-11-13 04:08:51 t 1 1 167086 623 0.00 2019-11-13 04:29:06 2019-11-13 04:29:10 t 1 1 167088 623 0.00 2019-11-13 04:31:08 2019-11-13 04:35:42 t 1 1 167090 623 0.00 2019-11-13 04:39:21 2019-11-13 04:39:28 t 1 1 167093 623 0.00 2019-11-13 04:49:54 2019-11-13 04:49:55 t 1 1 167095 581 0.00 2019-11-13 04:48:39 2019-11-13 04:55:34 t 1 1 167101 623 0.00 2019-11-13 05:06:21 2019-11-13 05:06:28 t 1 1 167102 623 0.00 2019-11-13 05:06:52 2019-11-13 05:07:03 t 1 1 167103 623 0.00 2019-11-13 05:08:16 2019-11-13 05:08:47 t 1 1 167106 416 0.00 2019-11-13 05:14:41 2019-11-13 05:15:48 t 1 1 167107 623 0.00 2019-11-13 05:16:09 2019-11-13 05:16:13 t 1 1 167110 623 0.00 2019-11-13 05:19:07 2019-11-13 05:19:09 t 1 1 167117 623 0.00 2019-11-13 05:34:31 2019-11-13 05:34:44 t 1 1 167119 562 0.00 2019-11-13 05:37:38 2019-11-13 05:38:04 t 1 1 167120 623 0.00 2019-11-13 05:40:09 2019-11-13 05:40:14 t 1 1 167121 623 0.00 2019-11-13 05:41:25 2019-11-13 05:41:28 t 1 1 167122 445 0.00 2019-11-13 03:40:18 2019-11-13 05:43:09 t 1 1 167127 445 0.00 2019-11-13 05:52:33 2019-11-13 05:54:32 t 1 1 167133 562 0.00 2019-11-13 05:59:15 2019-11-13 05:59:36 t 1 1 167135 445 0.00 2019-11-13 05:59:39 2019-11-13 06:00:32 t 1 1 167136 623 0.00 2019-11-13 06:01:44 2019-11-13 06:01:45 t 1 1 167143 566 0.00 2019-11-13 03:01:41 2019-11-13 06:12:22 t 1 1 167145 445 0.00 2019-11-13 06:04:29 2019-11-13 06:16:02 t 1 1 167146 623 0.00 2019-11-13 06:16:58 2019-11-13 06:17:01 t 1 1 167150 445 0.00 2019-11-13 06:20:39 2019-11-13 06:21:18 t 1 1 167152 623 0.00 2019-11-13 06:22:05 2019-11-13 06:22:14 t 1 1 167155 597 0.00 2019-11-13 06:21:22 2019-11-13 06:27:38 t 1 1 167156 623 0.00 2019-11-13 06:27:55 2019-11-13 06:27:58 t 1 1 167157 623 0.00 2019-11-13 06:29:31 2019-11-13 06:29:32 t 1 1 167161 562 0.00 2019-11-13 06:31:26 2019-11-13 06:31:48 t 1 1 167163 611 0.00 2019-11-13 06:25:21 2019-11-13 06:34:29 t 1 1 167166 645 0.00 2019-11-13 06:29:45 2019-11-13 06:35:42 t 1 1 167177 445 0.00 2019-11-13 06:47:43 2019-11-13 06:48:41 t 1 1 167178 623 0.00 2019-11-13 06:49:43 2019-11-13 06:49:47 t 1 1 167180 445 0.00 2019-11-13 06:50:00 2019-11-13 06:50:34 t 1 1 167183 570 0.00 2019-11-13 03:41:28 2019-11-13 06:51:53 t 1 1 167184 623 0.00 2019-11-13 06:54:51 2019-11-13 06:54:54 t 1 1 167187 551 0.00 2019-11-13 06:40:38 2019-11-13 06:56:40 t 1 1 167189 566 0.00 2019-11-13 06:42:29 2019-11-13 06:56:43 t 1 1 167192 445 0.00 2019-11-13 06:58:35 2019-11-13 06:58:45 t 1 1 167194 623 0.00 2019-11-13 06:58:56 2019-11-13 06:59:10 t 1 1 167197 623 0.00 2019-11-13 06:59:57 2019-11-13 06:59:58 t 1 1 167199 562 0.00 2019-11-13 07:02:00 2019-11-13 07:02:30 t 1 1 167200 445 0.00 2019-11-13 07:00:48 2019-11-13 07:03:09 t 1 1 167203 623 0.00 2019-11-13 07:05:01 2019-11-13 07:05:01 t 1 1 167204 585 0.00 2019-11-13 06:53:52 2019-11-13 07:07:54 t 1 1 167208 623 0.00 2019-11-13 07:13:11 2019-11-13 07:13:12 t 1 1 167213 456 0.00 2019-11-13 07:11:21 2019-11-13 07:15:40 t 1 1 167214 445 0.00 2019-11-13 07:13:40 2019-11-13 07:16:14 t 1 1 167218 551 0.00 2019-11-13 07:13:28 2019-11-13 07:19:14 t 1 1 167220 623 0.00 2019-11-13 07:20:18 2019-11-13 07:20:19 t 1 1 167226 566 0.00 2019-11-13 07:23:17 2019-11-13 07:28:34 t 1 1 167227 566 0.00 2019-11-13 07:28:34 2019-11-13 07:31:39 t 1 1 167239 623 0.00 2019-11-13 07:45:44 2019-11-13 07:46:08 t 1 1 166942 623 0.00 2019-11-13 00:35:07 2019-11-13 00:37:13 t 1 1 166944 623 0.00 2019-11-13 00:37:31 2019-11-13 00:37:33 t 1 1 166946 587 0.00 2019-11-13 00:35:20 2019-11-13 00:41:10 t 1 1 166948 622 0.00 2019-11-13 00:36:02 2019-11-13 00:43:43 t 1 1 166953 578 0.00 2019-11-13 00:27:58 2019-11-13 00:50:21 t 1 1 166956 544 0.00 2019-11-13 00:47:20 2019-11-13 00:52:02 t 1 1 166957 622 0.00 2019-11-13 00:43:43 2019-11-13 00:53:54 t 1 1 166958 623 0.00 2019-11-13 00:44:40 2019-11-13 00:54:17 t 1 1 166964 544 0.00 2019-11-13 00:57:18 2019-11-13 01:01:59 t 1 1 166966 623 0.00 2019-11-13 01:04:30 2019-11-13 01:05:47 t 1 1 166967 623 0.00 2019-11-13 01:05:56 2019-11-13 01:06:00 t 1 1 166975 587 0.00 2019-11-13 00:41:30 2019-11-13 01:14:09 t 1 1 166976 623 0.00 2019-11-13 01:16:06 2019-11-13 01:16:07 t 1 1 166979 544 0.00 2019-11-13 01:16:49 2019-11-13 01:20:55 t 1 1 166983 422 0.00 2019-11-13 01:24:24 2019-11-13 01:24:43 t 1 1 166987 623 0.00 2019-11-13 01:31:21 2019-11-13 01:31:24 t 1 1 166990 544 0.00 2019-11-13 01:30:48 2019-11-13 01:35:16 t 1 1 166992 422 0.00 2019-11-13 01:35:24 2019-11-13 01:36:37 t 1 1 166993 622 0.00 2019-11-13 01:12:42 2019-11-13 01:37:08 t 1 1 166994 544 0.00 2019-11-13 01:35:16 2019-11-13 01:40:08 t 1 1 166997 562 0.00 2019-11-13 01:44:25 2019-11-13 01:44:36 t 1 1 167002 544 0.00 2019-11-13 01:44:43 2019-11-13 01:49:48 t 1 1 167004 623 0.00 2019-11-13 01:50:55 2019-11-13 01:50:56 t 1 1 167006 422 0.00 2019-11-13 01:36:43 2019-11-13 01:53:37 t 1 1 167013 622 0.00 2019-11-13 01:53:23 2019-11-13 02:02:06 t 1 1 167016 562 0.00 2019-11-13 02:05:44 2019-11-13 02:06:08 t 1 1 167020 544 0.00 2019-11-13 02:09:01 2019-11-13 02:13:33 t 1 1 167022 623 0.00 2019-11-13 02:14:34 2019-11-13 02:14:47 t 1 1 167032 562 0.00 2019-11-13 02:27:13 2019-11-13 02:27:37 t 1 1 167038 544 0.00 2019-11-13 02:31:55 2019-11-13 02:36:15 t 1 1 167042 623 0.00 2019-11-13 02:44:48 2019-11-13 02:44:51 t 1 1 167043 544 0.00 2019-11-13 02:40:37 2019-11-13 02:45:26 t 1 1 167045 623 0.00 2019-11-13 02:49:55 2019-11-13 02:49:56 t 1 1 167046 544 0.00 2019-11-13 02:45:26 2019-11-13 02:50:47 t 1 1 167051 562 0.00 2019-11-13 02:59:46 2019-11-13 02:59:58 t 1 1 167055 562 0.00 2019-11-13 03:10:30 2019-11-13 03:10:49 t 1 1 167056 623 0.00 2019-11-13 03:11:53 2019-11-13 03:11:56 t 1 1 167057 623 0.00 2019-11-13 03:16:57 2019-11-13 03:16:59 t 1 1 167060 623 0.00 2019-11-13 03:27:05 2019-11-13 03:27:06 t 1 1 167065 562 0.00 2019-11-13 03:39:35 2019-11-13 03:39:44 t 1 1 167066 445 0.00 2019-11-13 03:00:18 2019-11-13 03:40:02 t 1 1 167070 623 0.00 2019-11-13 03:48:07 2019-11-13 03:48:08 t 1 1 167072 623 0.00 2019-11-13 03:52:36 2019-11-13 03:52:47 t 1 1 167073 623 0.00 2019-11-13 03:52:58 2019-11-13 03:53:01 t 1 1 167075 625 0.00 2019-11-13 03:42:22 2019-11-13 03:53:13 t 1 1 167076 623 0.00 2019-11-13 03:58:15 2019-11-13 03:58:37 t 1 1 167078 623 0.00 2019-11-13 04:03:43 2019-11-13 04:03:46 t 1 1 167080 562 0.00 2019-11-13 04:11:40 2019-11-13 04:12:01 t 1 1 167081 623 0.00 2019-11-13 04:13:52 2019-11-13 04:13:55 t 1 1 167082 623 0.00 2019-11-13 04:18:58 2019-11-13 04:18:59 t 1 1 167083 562 0.00 2019-11-13 04:22:24 2019-11-13 04:22:43 t 1 1 167085 623 0.00 2019-11-13 04:26:29 2019-11-13 04:26:42 t 1 1 167089 581 0.00 2019-11-13 04:36:45 2019-11-13 04:37:36 t 1 1 167100 623 0.00 2019-11-13 05:05:18 2019-11-13 05:06:04 t 1 1 167113 623 0.00 2019-11-13 05:26:34 2019-11-13 05:26:36 t 1 1 167114 562 0.00 2019-11-13 05:26:54 2019-11-13 05:27:19 t 1 1 167116 623 0.00 2019-11-13 05:31:29 2019-11-13 05:31:31 t 1 1 167123 623 0.00 2019-11-13 05:46:30 2019-11-13 05:46:31 t 1 1 167128 445 0.00 2019-11-13 05:54:30 2019-11-13 05:55:33 t 1 1 167130 623 0.00 2019-11-13 05:56:08 2019-11-13 05:56:53 t 1 1 167138 623 0.00 2019-11-13 06:06:50 2019-11-13 06:06:54 t 1 1 167139 623 0.00 2019-11-13 06:07:36 2019-11-13 06:07:48 t 1 1 167140 520 0.00 2019-11-13 05:57:53 2019-11-13 06:08:16 t 1 1 167141 623 0.00 2019-11-13 06:09:24 2019-11-13 06:09:46 t 1 1 167147 520 0.00 2019-11-13 06:08:16 2019-11-13 06:17:02 t 1 1 167148 445 0.00 2019-11-13 06:16:02 2019-11-13 06:20:40 t 1 1 167149 562 0.00 2019-11-13 06:20:43 2019-11-13 06:21:01 t 1 1 167153 623 0.00 2019-11-13 06:24:23 2019-11-13 06:24:33 t 1 1 167158 625 0.00 2019-11-13 06:21:31 2019-11-13 06:30:16 t 1 1 167159 566 0.00 2019-11-13 06:24:46 2019-11-13 06:31:01 t 1 1 167160 445 0.00 2019-11-13 06:21:18 2019-11-13 06:31:17 t 1 1 167171 562 0.00 2019-11-13 06:42:10 2019-11-13 06:42:30 t 1 1 167172 623 0.00 2019-11-13 06:43:16 2019-11-13 06:43:18 t 1 1 167179 445 0.00 2019-11-13 06:48:40 2019-11-13 06:50:01 t 1 1 167181 445 0.00 2019-11-13 06:50:34 2019-11-13 06:51:09 t 1 1 167190 445 0.00 2019-11-13 06:56:21 2019-11-13 06:57:36 t 1 1 167191 445 0.00 2019-11-13 06:57:36 2019-11-13 06:58:36 t 1 1 167193 623 0.00 2019-11-13 06:59:04 2019-11-13 06:59:04 t 1 1 167195 623 0.00 2019-11-13 06:59:10 2019-11-13 06:59:11 t 1 1 167205 623 0.00 2019-11-13 07:10:06 2019-11-13 07:10:09 t 1 1 167206 562 0.00 2019-11-13 07:10:44 2019-11-13 07:10:59 t 1 1 167209 551 0.00 2019-11-13 06:56:40 2019-11-13 07:13:28 t 1 1 167210 445 0.00 2019-11-13 07:12:31 2019-11-13 07:13:40 t 1 1 167211 623 0.00 2019-11-13 07:13:05 2019-11-13 07:14:27 t 1 1 167215 570 0.00 2019-11-13 07:09:28 2019-11-13 07:16:22 t 1 1 167216 445 0.00 2019-11-13 07:16:14 2019-11-13 07:17:43 t 1 1 167224 445 0.00 2019-11-13 07:23:23 2019-11-13 07:24:17 t 1 1 167232 445 0.00 2019-11-13 07:36:37 2019-11-13 07:38:08 t 1 1 167238 645 0.00 2019-11-13 07:41:21 2019-11-13 07:44:01 t 1 1 167242 645 0.00 2019-11-13 07:48:57 2019-11-13 07:49:34 t 1 1 167245 379 0.00 2019-11-13 07:50:46 2019-11-13 07:50:46 f 1 1 167246 623 0.00 2019-11-13 07:51:09 2019-11-13 07:51:10 t 1 1 167247 379 0.00 2019-11-13 07:51:18 2019-11-13 07:51:18 f 1 1 167249 625 0.00 2019-11-13 07:46:30 2019-11-13 07:53:31 t 1 1 167251 220 0.00 2019-11-13 06:45:53 2019-11-13 07:56:06 t 1 1 167252 220 0.00 2019-11-13 07:56:38 2019-11-13 07:58:12 t 1 1 167253 445 0.00 2019-11-13 07:38:07 2019-11-13 07:58:13 t 1 1 167254 645 0.00 2019-11-13 07:58:47 2019-11-13 07:59:17 t 1 1 167256 220 0.00 2019-11-13 07:58:21 2019-11-13 07:59:28 t 1 1 167259 562 0.00 2019-11-13 08:00:47 2019-11-13 08:04:07 t 1 1 167260 615 0.00 2019-11-13 08:03:08 2019-11-13 08:05:17 t 1 1 167261 619 0.00 2019-11-13 07:59:28 2019-11-13 08:05:25 t 1 1 167262 623 0.00 2019-11-13 08:06:43 2019-11-13 08:06:45 t 1 1 167263 562 0.00 2019-11-13 08:09:21 2019-11-13 08:09:58 t 1 1 167265 623 0.00 2019-11-13 08:11:27 2019-11-13 08:11:30 t 1 1 167266 625 0.00 2019-11-13 07:53:34 2019-11-13 08:13:20 t 1 1 167268 623 0.00 2019-11-13 08:16:55 2019-11-13 08:16:57 t 1 1 167007 544 0.00 2019-11-13 01:49:48 2019-11-13 01:54:56 t 1 1 167010 544 0.00 2019-11-13 01:54:56 2019-11-13 01:59:44 t 1 1 167011 623 0.00 2019-11-13 02:01:01 2019-11-13 02:01:07 t 1 1 167015 623 0.00 2019-11-13 02:06:05 2019-11-13 02:06:08 t 1 1 167019 622 0.00 2019-11-13 02:02:06 2019-11-13 02:09:51 t 1 1 167023 622 0.00 2019-11-13 02:09:51 2019-11-13 02:16:44 t 1 1 167026 623 0.00 2019-11-13 02:19:24 2019-11-13 02:19:27 t 1 1 167029 623 0.00 2019-11-13 02:24:28 2019-11-13 02:24:29 t 1 1 167034 544 0.00 2019-11-13 02:27:36 2019-11-13 02:31:55 t 1 1 167039 562 0.00 2019-11-13 02:38:08 2019-11-13 02:38:31 t 1 1 167040 623 0.00 2019-11-13 02:39:41 2019-11-13 02:39:44 t 1 1 167041 544 0.00 2019-11-13 02:36:15 2019-11-13 02:40:37 t 1 1 167047 220 0.00 2019-11-13 00:46:13 2019-11-13 02:51:20 t 1 2 167048 445 0.00 2019-11-13 00:31:19 2019-11-13 02:55:43 t 1 1 167050 570 0.00 2019-11-13 00:32:16 2019-11-13 02:56:18 t 1 1 167053 551 0.00 2019-11-12 21:49:02 2019-11-13 03:06:36 t 1 1 167054 623 0.00 2019-11-13 03:06:49 2019-11-13 03:06:54 t 1 1 167061 562 0.00 2019-11-13 03:31:52 2019-11-13 03:32:11 t 1 1 167064 623 0.00 2019-11-13 03:37:17 2019-11-13 03:37:18 t 1 1 167067 625 0.00 2019-11-13 03:00:28 2019-11-13 03:40:20 t 1 1 167071 562 0.00 2019-11-13 03:50:11 2019-11-13 03:50:33 t 1 1 167074 623 0.00 2019-11-13 03:53:11 2019-11-13 03:53:12 t 1 1 167084 623 0.00 2019-11-13 04:24:03 2019-11-13 04:24:06 t 1 1 167087 562 0.00 2019-11-13 04:33:15 2019-11-13 04:33:30 t 1 1 167091 562 0.00 2019-11-13 04:44:02 2019-11-13 04:44:12 t 1 1 167092 581 0.00 2019-11-13 04:37:45 2019-11-13 04:48:30 t 1 1 167094 562 0.00 2019-11-13 04:54:45 2019-11-13 04:55:01 t 1 1 167096 623 0.00 2019-11-13 04:50:34 2019-11-13 04:59:27 t 1 1 167097 623 0.00 2019-11-13 05:01:13 2019-11-13 05:02:09 t 1 1 167098 623 0.00 2019-11-13 05:03:58 2019-11-13 05:04:57 t 1 1 167099 562 0.00 2019-11-13 05:05:24 2019-11-13 05:05:46 t 1 1 167104 623 0.00 2019-11-13 05:09:56 2019-11-13 05:10:27 t 1 1 167105 623 0.00 2019-11-13 05:11:03 2019-11-13 05:11:06 t 1 1 167108 562 0.00 2019-11-13 05:16:15 2019-11-13 05:16:34 t 1 1 167109 623 0.00 2019-11-13 05:17:39 2019-11-13 05:17:39 t 1 1 167111 623 0.00 2019-11-13 05:20:47 2019-11-13 05:20:48 t 1 1 167112 623 0.00 2019-11-13 05:21:12 2019-11-13 05:21:16 t 1 1 167115 623 0.00 2019-11-13 05:31:16 2019-11-13 05:31:17 t 1 1 167118 623 0.00 2019-11-13 05:36:21 2019-11-13 05:36:22 t 1 1 167124 562 0.00 2019-11-13 05:48:33 2019-11-13 05:48:48 t 1 1 167125 623 0.00 2019-11-13 05:51:33 2019-11-13 05:51:35 t 1 1 167126 445 0.00 2019-11-13 05:43:12 2019-11-13 05:52:33 t 1 1 167129 623 0.00 2019-11-13 05:56:39 2019-11-13 05:56:41 t 1 1 167131 623 0.00 2019-11-13 05:56:52 2019-11-13 05:56:55 t 1 1 167132 520 0.00 2019-11-13 05:38:52 2019-11-13 05:57:53 t 1 1 167134 445 0.00 2019-11-13 05:55:33 2019-11-13 05:59:40 t 1 1 167137 445 0.00 2019-11-13 06:00:31 2019-11-13 06:04:29 t 1 1 167142 562 0.00 2019-11-13 06:09:59 2019-11-13 06:10:20 t 1 1 167144 623 0.00 2019-11-13 06:11:04 2019-11-13 06:12:28 t 1 1 167151 625 0.00 2019-11-13 03:53:15 2019-11-13 06:21:31 t 1 1 167154 566 0.00 2019-11-13 06:12:22 2019-11-13 06:24:46 t 1 1 167162 445 0.00 2019-11-13 06:31:16 2019-11-13 06:32:28 t 1 1 167164 623 0.00 2019-11-13 06:34:34 2019-11-13 06:34:36 t 1 1 167165 445 0.00 2019-11-13 06:33:56 2019-11-13 06:34:58 t 1 1 167167 611 0.00 2019-11-13 06:37:17 2019-11-13 06:38:39 t 1 1 167168 623 0.00 2019-11-13 06:39:36 2019-11-13 06:39:37 t 1 1 167169 551 0.00 2019-11-13 03:06:36 2019-11-13 06:40:38 t 1 1 167170 566 0.00 2019-11-13 06:31:01 2019-11-13 06:42:29 t 1 1 167173 574 0.00 2019-11-13 05:20:27 2019-11-13 06:43:23 t 1 1 167174 623 0.00 2019-11-13 06:44:41 2019-11-13 06:44:41 t 1 1 167175 623 0.00 2019-11-13 06:46:12 2019-11-13 06:46:14 t 1 1 167176 445 0.00 2019-11-13 06:42:03 2019-11-13 06:47:44 t 1 1 167182 562 0.00 2019-11-13 06:51:04 2019-11-13 06:51:39 t 1 1 167185 445 0.00 2019-11-13 06:51:08 2019-11-13 06:55:16 t 1 1 167186 445 0.00 2019-11-13 06:55:16 2019-11-13 06:56:22 t 1 1 167188 619 0.00 2019-11-13 06:54:59 2019-11-13 06:56:42 t 1 1 167196 566 0.00 2019-11-13 06:56:43 2019-11-13 06:59:22 t 1 1 167198 445 0.00 2019-11-13 06:58:44 2019-11-13 07:00:49 t 1 1 167201 445 0.00 2019-11-13 07:03:08 2019-11-13 07:03:52 t 1 1 167202 562 0.00 2019-11-13 07:03:58 2019-11-13 07:04:05 t 1 1 167207 445 0.00 2019-11-13 07:03:52 2019-11-13 07:12:31 t 1 1 167212 623 0.00 2019-11-13 07:15:12 2019-11-13 07:15:13 t 1 1 167217 623 0.00 2019-11-13 07:18:36 2019-11-13 07:19:01 t 1 1 167219 520 0.00 2019-11-13 07:13:54 2019-11-13 07:19:38 t 1 1 167221 445 0.00 2019-11-13 07:17:43 2019-11-13 07:20:48 t 1 1 167222 562 0.00 2019-11-13 07:21:22 2019-11-13 07:21:52 t 1 1 167223 445 0.00 2019-11-13 07:20:37 2019-11-13 07:23:08 t 1 1 167225 623 0.00 2019-11-13 07:25:25 2019-11-13 07:25:26 t 1 1 167228 445 0.00 2019-11-13 07:24:16 2019-11-13 07:32:03 t 1 1 167229 562 0.00 2019-11-13 07:32:12 2019-11-13 07:32:31 t 1 1 167230 516 0.00 2019-11-13 07:32:04 2019-11-13 07:33:42 t 1 1 167231 645 0.00 2019-11-13 07:32:35 2019-11-13 07:36:14 t 1 1 167233 412 0.00 2019-11-12 07:42:34 2019-11-13 07:40:28 t 1 1 167234 623 0.00 2019-11-13 07:40:42 2019-11-13 07:40:45 t 1 1 167235 623 0.00 2019-11-13 07:40:57 2019-11-13 07:40:59 t 1 1 167236 595 0.00 2019-11-13 07:34:25 2019-11-13 07:42:03 t 1 1 167237 562 0.00 2019-11-13 07:42:53 2019-11-13 07:43:16 t 1 1 167240 625 0.00 2019-11-13 06:30:30 2019-11-13 07:46:31 t 1 1 167241 645 0.00 2019-11-13 07:46:49 2019-11-13 07:47:01 t 1 1 167243 379 0.00 2019-11-13 07:50:03 2019-11-13 07:50:03 f 1 1 167244 379 0.00 2019-11-13 07:50:38 2019-11-13 07:50:38 f 1 1 167248 623 0.00 2019-11-13 07:50:37 2019-11-13 07:52:27 t 1 1 167250 562 0.00 2019-11-13 07:53:47 2019-11-13 07:54:07 t 1 1 167255 619 0.00 2019-11-13 07:47:22 2019-11-13 07:59:28 t 1 1 167257 445 0.00 2019-11-13 07:58:13 2019-11-13 08:00:29 t 1 1 167258 445 0.00 2019-11-13 08:00:50 2019-11-13 08:02:27 t 1 1 167264 623 0.00 2019-11-13 08:10:38 2019-11-13 08:11:22 t 1 1 167267 445 0.00 2019-11-13 08:07:14 2019-11-13 08:13:54 t 1 1 167269 623 0.00 2019-11-13 08:16:14 2019-11-13 08:17:27 t 1 1 167270 456 0.00 2019-11-13 08:10:14 2019-11-13 08:20:01 t 1 1 167271 623 0.00 2019-11-13 08:21:37 2019-11-13 08:21:40 t 1 1 167272 623 0.00 2019-11-13 08:26:38 2019-11-13 08:26:42 t 1 1 167273 562 0.00 2019-11-13 08:19:37 2019-11-13 08:27:24 t 1 1 167274 445 0.00 2019-11-13 08:14:01 2019-11-13 08:30:02 t 1 1 167275 445 0.00 2019-11-13 08:31:03 2019-11-13 08:32:35 t 1 1 167276 645 0.00 2019-11-13 08:32:26 2019-11-13 08:32:36 t 1 1 167277 645 0.00 2019-11-13 08:32:45 2019-11-13 08:33:57 t 1 1 167278 623 0.00 2019-11-13 08:29:42 2019-11-13 08:34:42 t 1 1 167281 623 0.00 2019-11-13 08:35:50 2019-11-13 08:35:51 t 1 1 167286 623 0.00 2019-11-13 08:36:21 2019-11-13 08:36:24 t 1 1 167291 623 0.00 2019-11-13 08:38:47 2019-11-13 08:38:51 t 1 1 167292 623 0.00 2019-11-13 08:38:56 2019-11-13 08:39:02 t 1 1 167295 623 0.00 2019-11-13 08:39:41 2019-11-13 08:39:42 t 1 1 167297 623 0.00 2019-11-13 08:40:07 2019-11-13 08:40:14 t 1 1 167299 623 0.00 2019-11-13 08:40:53 2019-11-13 08:41:00 t 1 1 167302 623 0.00 2019-11-13 08:42:10 2019-11-13 08:42:16 t 1 1 167305 623 0.00 2019-11-13 08:42:47 2019-11-13 08:42:53 t 1 1 167306 623 0.00 2019-11-13 08:43:06 2019-11-13 08:43:07 t 1 1 167314 623 0.00 2019-11-13 08:44:39 2019-11-13 08:44:40 t 1 1 167315 623 0.00 2019-11-13 08:44:45 2019-11-13 08:44:52 t 1 1 167317 623 0.00 2019-11-13 08:45:11 2019-11-13 08:45:18 t 1 1 167321 623 0.00 2019-11-13 08:46:20 2019-11-13 08:46:26 t 1 1 167329 623 0.00 2019-11-13 08:48:10 2019-11-13 08:48:11 t 1 1 167334 623 0.00 2019-11-13 08:49:01 2019-11-13 08:49:09 t 1 1 167335 623 0.00 2019-11-13 08:49:28 2019-11-13 08:49:28 f 1 1 167336 623 0.00 2019-11-13 08:49:21 2019-11-13 08:50:27 t 1 1 167338 591 0.00 2019-11-13 08:40:35 2019-11-13 08:51:06 t 1 1 167339 445 0.00 2019-11-13 08:32:34 2019-11-13 08:58:05 t 1 1 167341 551 0.00 2019-11-13 07:19:14 2019-11-13 08:59:03 t 1 1 167342 512 0.00 2019-11-13 08:54:21 2019-11-13 09:02:56 t 1 1 167345 445 0.00 2019-11-13 09:03:04 2019-11-13 09:04:12 t 1 1 167346 562 0.00 2019-11-13 08:44:44 2019-11-13 09:05:31 t 1 1 167355 597 0.00 2019-11-13 06:48:31 2019-11-13 09:17:14 t 1 1 167357 416 0.00 2019-11-13 08:23:32 2019-11-13 09:19:54 t 1 1 167358 562 0.00 2019-11-13 09:17:26 2019-11-13 09:20:38 t 1 1 167359 416 0.00 2019-11-13 09:19:54 2019-11-13 09:21:00 t 1 1 167360 562 0.00 2019-11-13 09:21:42 2019-11-13 09:22:05 t 1 1 167363 516 0.00 2019-11-13 08:48:46 2019-11-13 09:23:08 t 1 1 167365 625 0.00 2019-11-13 09:17:07 2019-11-13 09:25:11 t 1 1 167367 416 0.00 2019-11-13 09:21:00 2019-11-13 09:25:55 t 1 1 167372 487 0.00 2019-11-13 09:33:02 2019-11-13 09:33:07 t 1 2 167374 551 0.00 2019-11-13 08:59:03 2019-11-13 09:33:52 t 1 1 167376 591 0.00 2019-11-13 09:32:01 2019-11-13 09:36:09 t 1 1 167378 487 0.00 2019-11-13 09:38:21 2019-11-13 09:40:03 t 1 2 167380 625 0.00 2019-11-13 09:25:34 2019-11-13 09:40:36 t 1 1 167381 645 0.00 2019-11-13 09:37:31 2019-11-13 09:41:03 t 1 1 167384 562 0.00 2019-11-13 09:41:20 2019-11-13 09:41:59 t 1 1 167387 445 0.00 2019-11-13 09:42:15 2019-11-13 09:44:48 t 1 1 167388 645 0.00 2019-11-13 09:42:22 2019-11-13 09:45:13 t 1 1 167389 619 0.00 2019-11-13 09:39:12 2019-11-13 09:47:03 t 1 1 167392 445 0.00 2019-11-13 09:48:59 2019-11-13 09:54:22 t 1 1 167395 220 0.00 2019-11-13 09:54:34 2019-11-13 09:56:44 t 1 1 167403 562 0.00 2019-11-13 10:09:09 2019-11-13 10:09:27 t 1 1 167404 625 0.00 2019-11-13 09:58:22 2019-11-13 10:10:24 t 1 1 167405 585 0.00 2019-11-13 10:05:40 2019-11-13 10:11:06 t 1 1 167407 445 0.00 2019-11-13 10:03:19 2019-11-13 10:13:21 t 1 1 167414 416 0.00 2019-11-13 10:13:40 2019-11-13 10:21:09 t 1 1 167417 220 0.00 2019-11-13 10:13:10 2019-11-13 10:23:12 t 1 2 167420 562 0.00 2019-11-13 10:29:22 2019-11-13 10:31:09 t 1 1 167421 551 0.00 2019-11-13 09:58:57 2019-11-13 10:32:01 t 1 1 167423 625 0.00 2019-11-13 10:10:24 2019-11-13 10:36:01 t 1 1 167429 619 0.00 2019-11-13 10:31:13 2019-11-13 10:42:27 t 1 1 167434 615 0.00 2019-11-13 10:27:34 2019-11-13 10:44:56 t 1 1 167435 645 0.00 2019-11-13 10:50:06 2019-11-13 10:51:25 t 1 1 167440 615 0.00 2019-11-13 10:44:56 2019-11-13 11:00:29 t 1 1 167443 645 0.00 2019-11-13 10:58:12 2019-11-13 11:03:18 t 1 1 167446 615 0.00 2019-11-13 11:00:29 2019-11-13 11:08:49 t 1 1 167449 623 0.00 2019-11-13 11:09:04 2019-11-13 11:10:30 t 1 1 167450 445 0.00 2019-11-13 11:08:54 2019-11-13 11:10:47 t 1 1 167455 623 0.00 2019-11-13 11:10:35 2019-11-13 11:12:27 t 1 1 167457 445 0.00 2019-11-13 11:10:46 2019-11-13 11:13:23 t 1 1 167458 652 0.00 2019-11-13 11:07:25 2019-11-13 11:13:41 t 1 1 167459 623 0.00 2019-11-13 11:14:00 2019-11-13 11:14:04 t 1 1 167466 416 0.00 2019-11-13 11:15:41 2019-11-13 11:17:23 t 1 1 167469 514 0.00 2019-11-13 11:04:14 2019-11-13 11:17:58 t 1 1 167472 623 0.00 2019-11-13 11:19:06 2019-11-13 11:19:20 t 1 1 167473 570 0.00 2019-11-13 11:19:34 2019-11-13 11:21:15 t 1 1 167479 512 0.00 2019-11-13 11:20:47 2019-11-13 11:27:19 t 1 1 167481 623 0.00 2019-11-13 11:28:00 2019-11-13 11:28:55 t 1 1 167484 562 0.00 2019-11-13 11:13:28 2019-11-13 11:31:00 t 1 1 167487 622 0.00 2019-11-13 11:26:19 2019-11-13 11:35:24 t 1 1 167488 445 0.00 2019-11-13 11:23:04 2019-11-13 11:35:53 t 1 1 167489 220 0.00 2019-11-13 11:23:04 2019-11-13 11:36:05 t 1 1 167491 591 0.00 2019-11-13 11:26:55 2019-11-13 11:37:29 t 1 1 167495 416 0.00 2019-11-13 11:17:31 2019-11-13 11:39:06 t 1 1 167497 220 0.00 2019-11-13 11:38:24 2019-11-13 11:40:20 t 1 1 167499 220 0.00 2019-11-13 11:40:20 2019-11-13 11:40:55 t 1 1 167502 585 0.00 2019-11-13 11:33:27 2019-11-13 11:45:12 t 1 1 167503 416 0.00 2019-11-13 11:41:39 2019-11-13 11:47:51 t 1 1 167505 416 0.00 2019-11-13 11:47:57 2019-11-13 11:51:54 t 1 1 167508 562 0.00 2019-11-13 11:52:49 2019-11-13 11:53:45 t 1 1 167512 585 0.00 2019-11-13 11:51:13 2019-11-13 11:55:45 t 1 1 167518 581 0.00 2019-11-13 12:00:18 2019-11-13 12:00:21 t 1 1 167519 623 0.00 2019-11-13 12:00:40 2019-11-13 12:00:49 t 1 1 167520 361 0.00 2019-11-13 12:05:08 2019-11-13 12:05:08 f 1 2 167522 623 0.00 2019-11-13 12:05:47 2019-11-13 12:05:50 t 1 1 167523 591 0.00 2019-11-13 11:58:43 2019-11-13 12:07:25 t 1 1 167527 585 0.00 2019-11-13 12:07:40 2019-11-13 12:11:38 t 1 1 167530 585 0.00 2019-11-13 12:11:38 2019-11-13 12:14:00 t 1 1 167532 623 0.00 2019-11-13 12:13:48 2019-11-13 12:14:09 t 1 1 167536 623 0.00 2019-11-13 12:15:17 2019-11-13 12:16:17 t 1 1 167537 585 0.00 2019-11-13 12:13:59 2019-11-13 12:17:36 t 1 1 167547 481 0.00 2019-11-13 11:15:28 2019-11-13 12:26:18 t 1 1 167550 623 0.00 2019-11-13 12:29:29 2019-11-13 12:30:30 t 1 1 167552 562 0.00 2019-11-13 12:17:52 2019-11-13 12:32:01 t 1 1 167555 645 0.00 2019-11-13 12:32:44 2019-11-13 12:33:51 t 1 1 167556 623 0.00 2019-11-13 12:34:41 2019-11-13 12:34:49 t 1 1 167558 623 0.00 2019-11-13 12:35:21 2019-11-13 12:35:25 t 1 1 167561 416 0.00 2019-11-13 12:14:29 2019-11-13 12:36:51 t 1 1 167575 562 0.00 2019-11-13 12:44:32 2019-11-13 12:44:40 t 1 1 167579 562 0.00 2019-11-13 12:45:34 2019-11-13 12:46:24 t 1 1 167581 623 0.00 2019-11-13 12:46:23 2019-11-13 12:46:35 t 1 1 167586 585 0.00 2019-11-13 12:45:23 2019-11-13 12:49:36 t 1 1 167593 623 0.00 2019-11-13 12:55:27 2019-11-13 12:55:27 t 1 1 167279 623 0.00 2019-11-13 08:35:00 2019-11-13 08:35:17 t 1 1 167280 623 0.00 2019-11-13 08:35:29 2019-11-13 08:35:37 t 1 1 167282 538 0.00 2019-11-13 08:31:49 2019-11-13 08:35:52 t 1 1 167283 591 0.00 2019-11-13 07:59:43 2019-11-13 08:36:00 t 1 1 167285 623 0.00 2019-11-13 08:36:15 2019-11-13 08:36:16 t 1 1 167290 623 0.00 2019-11-13 08:38:33 2019-11-13 08:38:35 t 1 1 167294 623 0.00 2019-11-13 08:39:21 2019-11-13 08:39:28 t 1 1 167304 623 0.00 2019-11-13 08:42:35 2019-11-13 08:42:42 t 1 1 167308 623 0.00 2019-11-13 08:43:12 2019-11-13 08:43:20 t 1 1 167310 623 0.00 2019-11-13 08:43:33 2019-11-13 08:43:35 t 1 1 167311 623 0.00 2019-11-13 08:43:55 2019-11-13 08:44:08 t 1 1 167313 623 0.00 2019-11-13 08:44:19 2019-11-13 08:44:26 t 1 1 167316 623 0.00 2019-11-13 08:45:05 2019-11-13 08:45:06 t 1 1 167320 623 0.00 2019-11-13 08:46:14 2019-11-13 08:46:15 t 1 1 167322 615 0.00 2019-11-13 08:43:15 2019-11-13 08:46:27 t 1 1 167327 619 0.00 2019-11-13 08:42:10 2019-11-13 08:47:56 t 1 1 167330 623 0.00 2019-11-13 08:48:16 2019-11-13 08:48:22 t 1 1 167331 623 0.00 2019-11-13 08:48:41 2019-11-13 08:48:43 t 1 1 167332 623 0.00 2019-11-13 08:48:49 2019-11-13 08:48:56 t 1 1 167340 591 0.00 2019-11-13 08:51:17 2019-11-13 08:59:03 t 1 1 167347 445 0.00 2019-11-13 09:04:08 2019-11-13 09:05:52 t 1 1 167353 619 0.00 2019-11-13 09:10:53 2019-11-13 09:16:23 t 1 1 167354 625 0.00 2019-11-13 09:16:01 2019-11-13 09:17:07 t 1 1 167364 445 0.00 2019-11-13 09:22:44 2019-11-13 09:24:27 t 1 1 167366 562 0.00 2019-11-13 09:24:58 2019-11-13 09:25:36 t 1 1 167368 220 0.00 2019-11-13 09:19:27 2019-11-13 09:25:59 t 1 1 167371 562 0.00 2019-11-13 09:31:07 2019-11-13 09:31:22 t 1 1 167375 585 0.00 2019-11-13 09:31:45 2019-11-13 09:34:02 t 1 1 167377 514 0.00 2019-11-13 09:15:12 2019-11-13 09:39:29 t 1 1 167379 562 0.00 2019-11-13 09:40:03 2019-11-13 09:40:25 t 1 1 167382 487 0.00 2019-11-13 09:33:16 2019-11-13 09:41:21 t 1 2 167385 445 0.00 2019-11-13 09:41:26 2019-11-13 09:42:15 t 1 1 167386 416 0.00 2019-11-13 09:30:34 2019-11-13 09:44:06 t 1 1 167390 562 0.00 2019-11-13 09:50:56 2019-11-13 09:51:05 t 1 1 167397 445 0.00 2019-11-13 09:55:07 2019-11-13 10:01:03 t 1 1 167399 562 0.00 2019-11-13 10:01:32 2019-11-13 10:01:52 t 1 1 167400 514 0.00 2019-11-13 09:52:26 2019-11-13 10:03:08 t 1 1 167402 645 0.00 2019-11-13 09:54:26 2019-11-13 10:07:10 t 1 1 167408 220 0.00 2019-11-13 09:56:44 2019-11-13 10:15:00 t 1 1 167410 615 0.00 2019-11-13 10:16:34 2019-11-13 10:18:42 t 1 1 167412 562 0.00 2019-11-13 10:19:58 2019-11-13 10:20:11 t 1 1 167415 619 0.00 2019-11-13 10:18:19 2019-11-13 10:21:28 t 1 1 167418 514 0.00 2019-11-13 10:17:19 2019-11-13 10:30:52 t 1 1 167419 619 0.00 2019-11-13 10:28:12 2019-11-13 10:31:03 t 1 1 167425 591 0.00 2019-11-13 10:37:17 2019-11-13 10:41:00 t 1 1 167427 585 0.00 2019-11-13 10:38:53 2019-11-13 10:41:46 t 1 1 167431 645 0.00 2019-11-13 10:41:27 2019-11-13 10:42:35 t 1 1 167432 562 0.00 2019-11-13 10:40:07 2019-11-13 10:43:30 t 1 1 167433 445 0.00 2019-11-13 10:12:51 2019-11-13 10:44:55 t 1 1 167437 645 0.00 2019-11-13 10:53:41 2019-11-13 10:56:06 t 1 1 167438 562 0.00 2019-11-13 10:43:37 2019-11-13 10:57:09 t 1 1 167442 581 0.00 2019-11-13 10:47:01 2019-11-13 11:01:30 t 1 1 167444 514 0.00 2019-11-13 10:42:10 2019-11-13 11:04:14 t 1 1 167447 585 0.00 2019-11-13 11:00:04 2019-11-13 11:08:50 t 1 1 167448 645 0.00 2019-11-13 11:06:23 2019-11-13 11:10:15 t 1 1 167451 622 0.00 2019-11-13 10:56:18 2019-11-13 11:11:13 t 1 1 167452 623 0.00 2019-11-13 11:11:17 2019-11-13 11:11:21 t 1 1 167454 562 0.00 2019-11-13 11:00:12 2019-11-13 11:12:13 t 1 1 167461 481 0.00 2019-11-13 10:59:22 2019-11-13 11:15:28 t 1 1 167463 652 0.00 2019-11-13 11:13:41 2019-11-13 11:16:42 t 1 1 167465 585 0.00 2019-11-13 11:11:58 2019-11-13 11:17:12 t 1 1 167467 622 0.00 2019-11-13 11:11:13 2019-11-13 11:17:43 t 1 1 167470 512 0.00 2019-11-13 10:51:53 2019-11-13 11:18:10 t 1 1 167471 570 0.00 2019-11-13 11:16:34 2019-11-13 11:19:17 t 1 1 167475 591 0.00 2019-11-13 10:50:36 2019-11-13 11:21:36 t 1 1 167477 623 0.00 2019-11-13 11:24:48 2019-11-13 11:24:58 t 1 1 167480 570 0.00 2019-11-13 11:22:03 2019-11-13 11:28:17 t 1 1 167486 623 0.00 2019-11-13 11:35:00 2019-11-13 11:35:03 t 1 1 167492 220 0.00 2019-11-13 11:36:04 2019-11-13 11:37:51 t 1 1 167493 220 0.00 2019-11-13 11:37:51 2019-11-13 11:38:24 t 1 1 167494 516 0.00 2019-11-13 11:26:36 2019-11-13 11:38:59 t 1 1 167500 591 0.00 2019-11-13 11:38:51 2019-11-13 11:42:12 t 1 1 167501 623 0.00 2019-11-13 11:41:49 2019-11-13 11:44:08 t 1 1 167504 645 0.00 2019-11-13 11:48:08 2019-11-13 11:49:41 t 1 1 167506 623 0.00 2019-11-13 11:44:24 2019-11-13 11:52:00 t 1 1 167511 623 0.00 2019-11-13 11:54:11 2019-11-13 11:55:27 t 1 1 167513 570 0.00 2019-11-13 11:28:17 2019-11-13 11:56:20 t 1 1 167514 623 0.00 2019-11-13 11:57:28 2019-11-13 11:58:55 t 1 1 167524 623 0.00 2019-11-13 12:09:38 2019-11-13 12:09:50 t 1 1 167525 562 0.00 2019-11-13 11:58:24 2019-11-13 12:10:11 t 1 1 167526 623 0.00 2019-11-13 12:10:54 2019-11-13 12:10:55 t 1 1 167534 220 0.00 2019-11-13 11:53:54 2019-11-13 12:15:46 t 1 1 167539 585 0.00 2019-11-13 12:17:35 2019-11-13 12:18:56 t 1 1 167540 623 0.00 2019-11-13 12:19:51 2019-11-13 12:20:00 t 1 1 167544 615 0.00 2019-11-13 12:19:37 2019-11-13 12:22:53 t 1 1 167545 623 0.00 2019-11-13 12:22:45 2019-11-13 12:23:23 t 1 1 167549 623 0.00 2019-11-13 12:30:01 2019-11-13 12:30:22 t 1 1 167551 422 0.00 2019-11-13 11:51:19 2019-11-13 12:31:42 t 1 1 167559 520 0.00 2019-11-13 12:31:58 2019-11-13 12:35:47 t 1 1 167566 623 0.00 2019-11-13 12:40:27 2019-11-13 12:41:28 t 1 1 167570 416 0.00 2019-11-13 12:36:55 2019-11-13 12:42:13 t 1 1 167571 562 0.00 2019-11-13 12:41:42 2019-11-13 12:42:48 t 1 1 167573 585 0.00 2019-11-13 12:42:09 2019-11-13 12:43:53 t 1 1 167580 379 0.00 2019-11-13 12:46:28 2019-11-13 12:46:28 f 1 1 167582 379 0.00 2019-11-13 12:46:40 2019-11-13 12:46:40 f 1 2 167583 422 0.00 2019-11-13 12:47:19 2019-11-13 12:47:36 t 1 1 167584 422 0.00 2019-11-13 12:48:09 2019-11-13 12:48:21 t 1 1 167585 422 0.00 2019-11-13 12:48:45 2019-11-13 12:49:35 t 1 1 167590 422 0.00 2019-11-13 12:50:26 2019-11-13 12:53:31 t 1 1 167592 564 0.00 2019-11-13 12:42:08 2019-11-13 12:54:34 t 1 1 167596 623 0.00 2019-11-13 12:56:07 2019-11-13 12:56:13 t 1 1 167597 422 0.00 2019-11-13 12:56:25 2019-11-13 12:56:33 t 1 1 167603 516 0.00 2019-11-13 12:55:49 2019-11-13 13:03:08 t 1 1 167606 587 0.00 2019-11-13 13:02:09 2019-11-13 13:04:03 t 1 1 167609 564 0.00 2019-11-13 12:54:39 2019-11-13 13:06:04 t 1 1 167612 416 0.00 2019-11-13 12:42:16 2019-11-13 13:06:46 t 1 1 167615 578 0.00 2019-11-13 12:56:15 2019-11-13 13:07:31 t 1 1 167284 623 0.00 2019-11-13 08:35:56 2019-11-13 08:36:02 t 1 1 167287 623 0.00 2019-11-13 08:36:30 2019-11-13 08:36:35 t 1 1 167288 570 0.00 2019-11-13 08:35:19 2019-11-13 08:37:48 t 1 1 167289 623 0.00 2019-11-13 08:36:40 2019-11-13 08:38:20 t 1 1 167293 623 0.00 2019-11-13 08:39:15 2019-11-13 08:39:16 t 1 1 167296 623 0.00 2019-11-13 08:39:47 2019-11-13 08:39:54 t 1 1 167298 623 0.00 2019-11-13 08:40:25 2019-11-13 08:40:32 t 1 1 167300 623 0.00 2019-11-13 08:41:20 2019-11-13 08:41:27 t 1 1 167301 623 0.00 2019-11-13 08:41:46 2019-11-13 08:41:52 t 1 1 167303 623 0.00 2019-11-13 08:42:29 2019-11-13 08:42:30 t 1 1 167307 615 0.00 2019-11-13 08:28:43 2019-11-13 08:43:15 t 1 1 167309 623 0.00 2019-11-13 08:41:40 2019-11-13 08:43:27 t 1 1 167312 562 0.00 2019-11-13 08:29:58 2019-11-13 08:44:17 t 1 1 167318 623 0.00 2019-11-13 08:45:31 2019-11-13 08:45:43 t 1 1 167319 623 0.00 2019-11-13 08:45:53 2019-11-13 08:46:01 t 1 1 167323 481 0.00 2019-11-13 08:11:10 2019-11-13 08:46:27 t 1 1 167324 623 0.00 2019-11-13 08:46:39 2019-11-13 08:46:45 t 1 1 167325 623 0.00 2019-11-13 08:46:56 2019-11-13 08:47:03 t 1 1 167326 623 0.00 2019-11-13 08:47:23 2019-11-13 08:47:30 t 1 1 167328 623 0.00 2019-11-13 08:47:50 2019-11-13 08:47:57 t 1 1 167333 615 0.00 2019-11-13 08:47:08 2019-11-13 08:48:59 t 1 1 167337 623 0.00 2019-11-13 08:48:35 2019-11-13 08:50:27 t 1 1 167343 445 0.00 2019-11-13 08:57:53 2019-11-13 09:02:57 t 1 1 167344 379 0.00 2019-11-13 09:03:59 2019-11-13 09:03:59 f 1 1 167348 220 0.00 2019-11-13 08:02:09 2019-11-13 09:06:40 t 1 1 167349 562 0.00 2019-11-13 09:06:54 2019-11-13 09:07:00 t 1 1 167350 512 0.00 2019-11-13 09:03:33 2019-11-13 09:09:33 t 1 1 167351 445 0.00 2019-11-13 09:05:52 2019-11-13 09:12:31 t 1 1 167352 562 0.00 2019-11-13 09:12:58 2019-11-13 09:13:48 t 1 1 167356 445 0.00 2019-11-13 09:13:05 2019-11-13 09:17:17 t 1 1 167361 591 0.00 2019-11-13 09:13:12 2019-11-13 09:22:20 t 1 1 167362 445 0.00 2019-11-13 09:17:22 2019-11-13 09:23:00 t 1 1 167369 585 0.00 2019-11-13 09:18:58 2019-11-13 09:27:17 t 1 1 167370 416 0.00 2019-11-13 09:27:27 2019-11-13 09:30:11 t 1 1 167373 445 0.00 2019-11-13 09:23:02 2019-11-13 09:33:10 t 1 1 167383 445 0.00 2019-11-13 09:32:59 2019-11-13 09:41:28 t 1 1 167391 514 0.00 2019-11-13 09:39:29 2019-11-13 09:52:26 t 1 1 167393 220 0.00 2019-11-13 09:53:04 2019-11-13 09:54:22 t 1 1 167394 516 0.00 2019-11-13 09:43:15 2019-11-13 09:55:42 t 1 1 167396 625 0.00 2019-11-13 09:40:40 2019-11-13 09:58:22 t 1 1 167398 591 0.00 2019-11-13 09:38:51 2019-11-13 10:01:52 t 1 1 167401 416 0.00 2019-11-13 09:44:06 2019-11-13 10:07:09 t 1 1 167406 416 0.00 2019-11-13 10:07:08 2019-11-13 10:13:00 t 1 1 167409 514 0.00 2019-11-13 10:03:08 2019-11-13 10:17:19 t 1 1 167411 220 0.00 2019-11-13 10:15:05 2019-11-13 10:19:35 t 1 1 167413 591 0.00 2019-11-13 10:04:34 2019-11-13 10:20:47 t 1 1 167416 645 0.00 2019-11-13 10:20:30 2019-11-13 10:22:27 t 1 1 167422 570 0.00 2019-11-13 08:38:05 2019-11-13 10:32:11 t 1 1 167424 562 0.00 2019-11-13 10:33:56 2019-11-13 10:38:42 t 1 1 167426 645 0.00 2019-11-13 10:28:46 2019-11-13 10:41:27 t 1 1 167428 514 0.00 2019-11-13 10:30:52 2019-11-13 10:42:10 t 1 1 167430 416 0.00 2019-11-13 10:21:18 2019-11-13 10:42:32 t 1 1 167436 645 0.00 2019-11-13 10:51:25 2019-11-13 10:52:54 t 1 1 167439 481 0.00 2019-11-13 08:46:27 2019-11-13 10:59:22 t 1 1 167441 570 0.00 2019-11-13 10:43:26 2019-11-13 11:01:07 t 1 1 167445 645 0.00 2019-11-13 11:03:18 2019-11-13 11:06:04 t 1 1 167453 623 0.00 2019-11-13 11:11:33 2019-11-13 11:12:00 t 1 1 167456 615 0.00 2019-11-13 11:08:49 2019-11-13 11:12:36 t 1 1 167460 416 0.00 2019-11-13 10:51:30 2019-11-13 11:14:13 t 1 1 167462 570 0.00 2019-11-13 11:01:06 2019-11-13 11:16:35 t 1 1 167464 520 0.00 2019-11-13 11:11:31 2019-11-13 11:17:01 t 1 1 167468 623 0.00 2019-11-13 11:14:52 2019-11-13 11:17:56 t 1 1 167474 514 0.00 2019-11-13 11:17:58 2019-11-13 11:21:27 t 1 1 167476 623 0.00 2019-11-13 11:24:12 2019-11-13 11:24:15 t 1 1 167478 622 0.00 2019-11-13 11:17:43 2019-11-13 11:26:19 t 1 1 167482 623 0.00 2019-11-13 11:29:55 2019-11-13 11:29:56 t 1 1 167483 512 0.00 2019-11-13 11:27:42 2019-11-13 11:30:24 t 1 1 167485 623 0.00 2019-11-13 11:33:42 2019-11-13 11:34:25 t 1 1 167490 562 0.00 2019-11-13 11:33:40 2019-11-13 11:36:19 t 1 1 167496 623 0.00 2019-11-13 11:40:07 2019-11-13 11:40:17 t 1 1 167498 622 0.00 2019-11-13 11:35:24 2019-11-13 11:40:40 t 1 1 167507 623 0.00 2019-11-13 11:52:08 2019-11-13 11:53:41 t 1 1 167509 220 0.00 2019-11-13 11:40:55 2019-11-13 11:53:54 t 1 1 167510 623 0.00 2019-11-13 11:53:45 2019-11-13 11:53:58 t 1 1 167515 416 0.00 2019-11-13 11:52:01 2019-11-13 11:58:58 t 1 1 167516 581 0.00 2019-11-13 11:50:56 2019-11-13 12:00:12 t 1 1 167517 544 0.00 2019-11-13 11:29:06 2019-11-13 12:00:21 t 1 1 167521 585 0.00 2019-11-13 12:04:16 2019-11-13 12:05:45 t 1 1 167528 623 0.00 2019-11-13 12:11:25 2019-11-13 12:11:48 t 1 1 167529 416 0.00 2019-11-13 12:00:18 2019-11-13 12:12:02 t 1 1 167531 416 0.00 2019-11-13 12:12:01 2019-11-13 12:14:04 t 1 1 167533 570 0.00 2019-11-13 12:10:23 2019-11-13 12:14:13 t 1 1 167535 623 0.00 2019-11-13 12:15:26 2019-11-13 12:15:56 t 1 1 167538 623 0.00 2019-11-13 12:18:27 2019-11-13 12:18:31 t 1 1 167541 623 0.00 2019-11-13 12:20:08 2019-11-13 12:20:34 t 1 1 167542 623 0.00 2019-11-13 12:20:45 2019-11-13 12:21:12 t 1 1 167543 581 0.00 2019-11-13 12:00:31 2019-11-13 12:22:50 t 1 1 167546 623 0.00 2019-11-13 12:24:56 2019-11-13 12:24:57 t 1 1 167548 623 0.00 2019-11-13 12:27:07 2019-11-13 12:27:13 t 1 1 167553 625 0.00 2019-11-13 12:14:13 2019-11-13 12:32:02 t 1 1 167554 615 0.00 2019-11-13 12:22:53 2019-11-13 12:32:57 t 1 1 167557 623 0.00 2019-11-13 12:34:57 2019-11-13 12:35:09 t 1 1 167560 623 0.00 2019-11-13 12:35:32 2019-11-13 12:36:18 t 1 1 167562 562 0.00 2019-11-13 12:36:27 2019-11-13 12:36:52 t 1 1 167563 625 0.00 2019-11-13 12:32:02 2019-11-13 12:37:04 t 1 1 167564 562 0.00 2019-11-13 12:38:21 2019-11-13 12:38:25 t 1 1 167565 220 0.00 2019-11-13 12:15:46 2019-11-13 12:41:03 t 1 1 167567 564 0.00 2019-11-13 09:12:54 2019-11-13 12:41:44 t 1 1 167568 570 0.00 2019-11-13 12:14:09 2019-11-13 12:42:00 t 1 1 167569 585 0.00 2019-11-13 12:38:37 2019-11-13 12:42:10 t 1 1 167572 645 0.00 2019-11-13 12:40:47 2019-11-13 12:43:49 t 1 1 167574 422 0.00 2019-11-13 12:31:42 2019-11-13 12:44:01 t 1 1 167576 591 0.00 2019-11-13 12:42:35 2019-11-13 12:44:50 t 1 1 167577 623 0.00 2019-11-13 12:45:32 2019-11-13 12:45:33 t 1 1 167578 422 0.00 2019-11-13 12:44:53 2019-11-13 12:46:07 t 1 1 167587 422 0.00 2019-11-13 12:49:50 2019-11-13 12:50:11 t 1 1 167588 623 0.00 2019-11-13 12:50:36 2019-11-13 12:50:39 t 1 1 167589 587 0.00 2019-11-13 12:38:44 2019-11-13 12:51:47 t 1 1 167591 570 0.00 2019-11-13 12:41:59 2019-11-13 12:53:57 t 1 1 167595 516 0.00 2019-11-13 12:51:00 2019-11-13 12:55:49 t 1 1 167599 422 0.00 2019-11-13 12:57:01 2019-11-13 12:59:25 t 1 1 167600 503 0.00 2019-11-13 12:55:15 2019-11-13 13:00:14 t 1 1 167601 422 0.00 2019-11-13 13:00:30 2019-11-13 13:00:43 t 1 1 167602 422 0.00 2019-11-13 13:01:01 2019-11-13 13:01:10 t 1 1 167611 422 0.00 2019-11-13 13:04:58 2019-11-13 13:06:41 t 1 1 167613 623 0.00 2019-11-13 13:04:29 2019-11-13 13:07:11 t 1 1 167614 587 0.00 2019-11-13 13:06:13 2019-11-13 13:07:29 t 1 1 167617 623 0.00 2019-11-13 13:07:24 2019-11-13 13:07:55 t 1 1 167619 483 0.00 2019-11-13 13:09:28 2019-11-13 13:10:20 t 1 1 167622 503 0.00 2019-11-13 13:00:18 2019-11-13 13:12:18 t 1 1 167623 623 0.00 2019-11-13 13:12:39 2019-11-13 13:13:24 t 1 1 167625 591 0.00 2019-11-13 13:11:46 2019-11-13 13:13:40 t 1 1 167631 422 0.00 2019-11-13 13:10:29 2019-11-13 13:18:27 t 1 1 167633 445 0.00 2019-11-13 13:07:35 2019-11-13 13:19:11 t 1 1 167636 562 0.00 2019-11-13 13:22:08 2019-11-13 13:22:28 t 1 1 167638 619 0.00 2019-11-13 12:55:30 2019-11-13 13:23:06 t 1 1 167643 623 0.00 2019-11-13 13:25:31 2019-11-13 13:25:40 t 1 1 167645 544 0.00 2019-11-13 12:00:21 2019-11-13 13:26:50 t 1 1 167646 587 0.00 2019-11-13 13:25:38 2019-11-13 13:27:17 t 1 1 167648 422 0.00 2019-11-13 13:28:24 2019-11-13 13:29:13 t 1 1 167654 422 0.00 2019-11-13 13:29:43 2019-11-13 13:30:12 t 1 1 167656 623 0.00 2019-11-13 13:30:44 2019-11-13 13:31:14 t 1 1 167658 422 0.00 2019-11-13 13:32:28 2019-11-13 13:33:43 t 1 1 167663 597 0.00 2019-11-13 13:26:55 2019-11-13 13:35:52 t 1 1 167665 422 0.00 2019-11-13 13:35:26 2019-11-13 13:36:04 t 1 1 167666 485 0.00 2019-11-13 13:33:07 2019-11-13 13:36:07 t 1 1 167669 422 0.00 2019-11-13 13:37:29 2019-11-13 13:37:40 t 1 1 167679 597 0.00 2019-11-13 13:35:52 2019-11-13 13:39:46 t 1 1 167681 422 0.00 2019-11-13 13:40:46 2019-11-13 13:40:53 t 1 1 167683 587 0.00 2019-11-13 13:41:09 2019-11-13 13:41:58 t 1 1 167685 422 0.00 2019-11-13 13:43:13 2019-11-13 13:43:49 t 1 1 167687 422 0.00 2019-11-13 13:44:04 2019-11-13 13:44:12 t 1 1 167689 587 0.00 2019-11-13 13:42:14 2019-11-13 13:44:39 t 1 1 167693 623 0.00 2019-11-13 13:45:37 2019-11-13 13:45:50 t 1 1 167698 623 0.00 2019-11-13 13:46:32 2019-11-13 13:48:28 t 1 1 167700 637 0.00 2019-11-13 13:12:17 2019-11-13 13:49:22 t 1 1 167702 422 0.00 2019-11-13 13:51:09 2019-11-13 13:51:15 t 1 1 167706 422 0.00 2019-11-13 13:52:53 2019-11-13 13:53:29 t 1 1 167715 578 0.00 2019-11-13 13:07:31 2019-11-13 14:10:08 t 1 1 167716 422 0.00 2019-11-13 13:54:02 2019-11-13 14:11:22 t 1 1 167722 422 0.00 2019-11-13 14:14:15 2019-11-13 14:15:16 t 1 1 167723 637 0.00 2019-11-13 13:58:03 2019-11-13 14:16:20 t 1 1 167724 422 0.00 2019-11-13 14:16:32 2019-11-13 14:16:45 t 1 1 167725 619 0.00 2019-11-13 14:13:56 2019-11-13 14:18:05 t 1 1 167727 637 0.00 2019-11-13 14:18:02 2019-11-13 14:20:26 t 1 1 167731 637 0.00 2019-11-13 14:21:38 2019-11-13 14:22:47 t 1 1 167733 562 0.00 2019-11-13 14:23:25 2019-11-13 14:23:38 t 1 1 167735 585 0.00 2019-11-13 14:05:06 2019-11-13 14:24:34 t 1 1 167737 637 0.00 2019-11-13 14:23:22 2019-11-13 14:24:56 t 1 1 167739 487 0.00 2019-11-13 13:38:48 2019-11-13 14:26:48 t 1 2 167743 637 0.00 2019-11-13 14:32:10 2019-11-13 14:33:25 t 1 1 167748 615 0.00 2019-11-13 14:16:43 2019-11-13 14:35:22 t 1 1 167753 566 0.00 2019-11-13 14:34:02 2019-11-13 14:40:10 t 1 1 167755 422 0.00 2019-11-13 14:39:53 2019-11-13 14:40:34 t 1 1 167757 422 0.00 2019-11-13 14:41:27 2019-11-13 14:41:37 t 1 1 167760 422 0.00 2019-11-13 14:41:46 2019-11-13 14:43:43 t 1 1 167761 615 0.00 2019-11-13 14:35:22 2019-11-13 14:44:14 t 1 1 167762 619 0.00 2019-11-13 14:42:18 2019-11-13 14:44:40 t 1 1 167763 564 0.00 2019-11-13 14:02:22 2019-11-13 14:45:09 t 1 1 167765 422 0.00 2019-11-13 14:45:41 2019-11-13 14:45:50 t 1 1 167767 220 0.00 2019-11-13 14:42:56 2019-11-13 14:45:55 t 1 1 167769 220 0.00 2019-11-13 14:45:55 2019-11-13 14:46:30 t 1 1 167772 220 0.00 2019-11-13 14:46:29 2019-11-13 14:47:01 t 1 1 167775 645 0.00 2019-11-13 14:43:45 2019-11-13 14:48:15 t 1 1 167779 538 0.00 2019-11-13 14:15:34 2019-11-13 14:50:26 t 1 1 167790 379 0.00 2019-11-13 14:58:06 2019-11-13 14:58:06 f 1 1 167792 591 0.00 2019-11-13 14:36:49 2019-11-13 14:58:23 t 1 1 167799 562 0.00 2019-11-13 15:01:44 2019-11-13 15:02:04 t 1 1 167804 220 0.00 2019-11-13 14:48:09 2019-11-13 15:06:25 t 1 1 167805 220 0.00 2019-11-13 15:06:25 2019-11-13 15:07:24 t 1 1 167806 220 0.00 2019-11-13 15:07:24 2019-11-13 15:07:59 t 1 1 167809 220 0.00 2019-11-13 15:07:58 2019-11-13 15:09:27 t 1 1 167813 481 0.00 2019-11-13 14:23:56 2019-11-13 15:12:48 t 1 1 167815 637 0.00 2019-11-13 15:09:29 2019-11-13 15:13:57 t 1 1 167817 422 0.00 2019-11-13 15:08:12 2019-11-13 15:14:31 t 1 1 167820 528 0.00 2019-11-13 15:03:14 2019-11-13 15:17:55 t 1 1 167822 422 0.00 2019-11-13 15:18:39 2019-11-13 15:18:53 t 1 1 167825 220 0.00 2019-11-13 15:19:31 2019-11-13 15:20:15 t 1 1 167830 562 0.00 2019-11-13 15:23:05 2019-11-13 15:23:17 t 1 1 167832 220 0.00 2019-11-13 15:23:36 2019-11-13 15:24:08 t 1 1 167835 220 0.00 2019-11-13 15:24:05 2019-11-13 15:24:44 t 1 1 167838 220 0.00 2019-11-13 15:24:43 2019-11-13 15:25:47 t 1 1 167841 220 0.00 2019-11-13 15:26:23 2019-11-13 15:28:47 t 1 1 167846 570 0.00 2019-11-13 15:16:30 2019-11-13 15:30:04 t 1 1 167852 562 0.00 2019-11-13 15:33:40 2019-11-13 15:34:44 t 1 1 167853 528 0.00 2019-11-13 15:36:06 2019-11-13 15:36:27 t 1 1 167860 570 0.00 2019-11-13 15:30:05 2019-11-13 15:38:40 t 1 1 167861 220 0.00 2019-11-13 15:37:57 2019-11-13 15:38:43 t 1 1 167862 220 0.00 2019-11-13 15:38:43 2019-11-13 15:39:18 t 1 1 167866 570 0.00 2019-11-13 15:38:40 2019-11-13 15:40:31 t 1 1 167870 591 0.00 2019-11-13 15:38:39 2019-11-13 15:42:25 t 1 1 167873 422 0.00 2019-11-13 15:41:47 2019-11-13 15:43:06 t 1 1 167874 564 0.00 2019-11-13 15:28:50 2019-11-13 15:43:42 t 1 1 167876 562 0.00 2019-11-13 15:44:17 2019-11-13 15:44:31 t 1 1 167879 635 0.00 2019-11-13 15:45:04 2019-11-13 15:45:14 t 1 1 167880 645 0.00 2019-11-13 15:45:59 2019-11-13 15:46:50 t 1 1 167886 220 0.00 2019-11-13 15:50:16 2019-11-13 15:50:52 t 1 1 167889 220 0.00 2019-11-13 15:52:01 2019-11-13 15:52:35 t 1 1 167892 220 0.00 2019-11-13 15:53:06 2019-11-13 15:53:42 t 1 1 167899 422 0.00 2019-11-13 15:50:54 2019-11-13 15:56:17 t 1 1 167900 422 0.00 2019-11-13 15:56:45 2019-11-13 15:56:51 t 1 1 167905 220 0.00 2019-11-13 15:54:52 2019-11-13 16:04:49 t 1 1 167907 591 0.00 2019-11-13 15:49:49 2019-11-13 16:06:25 t 1 1 167909 562 0.00 2019-11-13 16:00:10 2019-11-13 16:07:11 t 1 1 167594 623 0.00 2019-11-13 12:55:39 2019-11-13 12:55:40 t 1 1 167598 562 0.00 2019-11-13 12:55:01 2019-11-13 12:57:02 t 1 1 167604 623 0.00 2019-11-13 12:56:53 2019-11-13 13:03:10 t 1 1 167605 562 0.00 2019-11-13 13:03:46 2019-11-13 13:03:50 t 1 1 167607 591 0.00 2019-11-13 12:52:01 2019-11-13 13:04:15 t 1 1 167608 623 0.00 2019-11-13 13:03:30 2019-11-13 13:05:21 t 1 1 167610 587 0.00 2019-11-13 13:04:16 2019-11-13 13:06:05 t 1 1 167616 445 0.00 2019-11-13 11:35:53 2019-11-13 13:07:35 t 1 1 167618 562 0.00 2019-11-13 13:06:33 2019-11-13 13:08:30 t 1 1 167620 422 0.00 2019-11-13 13:07:32 2019-11-13 13:10:29 t 1 1 167621 483 0.00 2019-11-13 13:10:20 2019-11-13 13:11:12 t 1 1 167624 623 0.00 2019-11-13 13:09:56 2019-11-13 13:13:34 t 1 1 167628 562 0.00 2019-11-13 13:14:24 2019-11-13 13:14:45 t 1 1 167629 623 0.00 2019-11-13 13:14:29 2019-11-13 13:14:59 t 1 1 167632 623 0.00 2019-11-13 13:18:32 2019-11-13 13:18:37 t 1 1 167634 623 0.00 2019-11-13 13:19:18 2019-11-13 13:19:22 t 1 1 167635 622 0.00 2019-11-13 13:14:26 2019-11-13 13:20:15 t 1 1 167640 607 0.00 2019-11-13 12:57:12 2019-11-13 13:23:43 t 1 1 167641 562 0.00 2019-11-13 13:23:51 2019-11-13 13:24:35 t 1 1 167647 591 0.00 2019-11-13 13:16:42 2019-11-13 13:27:58 t 1 1 167650 564 0.00 2019-11-13 13:06:25 2019-11-13 13:29:17 t 1 1 167651 623 0.00 2019-11-13 13:26:45 2019-11-13 13:29:31 t 1 1 167659 562 0.00 2019-11-13 13:30:08 2019-11-13 13:34:00 t 1 1 167660 591 0.00 2019-11-13 13:28:22 2019-11-13 13:34:36 t 1 1 167664 591 0.00 2019-11-13 13:34:36 2019-11-13 13:36:01 t 1 1 167668 623 0.00 2019-11-13 13:36:06 2019-11-13 13:36:28 t 1 1 167671 619 0.00 2019-11-13 13:23:06 2019-11-13 13:37:57 t 1 1 167673 416 0.00 2019-11-13 13:37:32 2019-11-13 13:38:27 t 1 1 167676 562 0.00 2019-11-13 13:35:45 2019-11-13 13:39:13 t 1 1 167678 587 0.00 2019-11-13 13:39:17 2019-11-13 13:39:45 t 1 1 167686 485 0.00 2019-11-13 13:43:21 2019-11-13 13:44:08 t 1 1 167688 422 0.00 2019-11-13 13:44:20 2019-11-13 13:44:33 t 1 1 167691 623 0.00 2019-11-13 13:44:51 2019-11-13 13:45:01 t 1 1 167692 422 0.00 2019-11-13 13:45:22 2019-11-13 13:45:48 t 1 1 167695 623 0.00 2019-11-13 13:46:53 2019-11-13 13:47:02 t 1 1 167696 623 0.00 2019-11-13 13:47:16 2019-11-13 13:47:16 f 1 1 167697 564 0.00 2019-11-13 13:29:23 2019-11-13 13:48:02 t 1 1 167704 587 0.00 2019-11-13 13:49:29 2019-11-13 13:52:32 t 1 1 167705 485 0.00 2019-11-13 13:44:08 2019-11-13 13:53:22 t 1 1 167708 587 0.00 2019-11-13 13:52:31 2019-11-13 13:53:49 t 1 1 167712 562 0.00 2019-11-13 13:53:54 2019-11-13 13:58:27 t 1 1 167713 564 0.00 2019-11-13 13:48:01 2019-11-13 14:02:18 t 1 1 167719 587 0.00 2019-11-13 13:53:54 2019-11-13 14:14:28 t 1 1 167721 416 0.00 2019-11-13 13:38:27 2019-11-13 14:15:01 t 1 1 167726 485 0.00 2019-11-13 14:16:45 2019-11-13 14:19:19 t 1 1 167729 591 0.00 2019-11-13 14:17:12 2019-11-13 14:20:39 t 1 1 167730 566 0.00 2019-11-13 14:13:25 2019-11-13 14:21:06 t 1 1 167734 587 0.00 2019-11-13 14:14:28 2019-11-13 14:24:31 t 1 1 167736 607 0.00 2019-11-13 13:35:02 2019-11-13 14:24:43 t 1 1 167738 645 0.00 2019-11-13 14:24:09 2019-11-13 14:26:23 t 1 1 167740 595 0.00 2019-11-13 14:24:43 2019-11-13 14:27:34 t 1 1 167744 514 0.00 2019-11-13 14:23:36 2019-11-13 14:33:58 t 1 1 167746 562 0.00 2019-11-13 14:34:03 2019-11-13 14:34:27 t 1 1 167747 422 0.00 2019-11-13 14:20:57 2019-11-13 14:35:03 t 1 1 167749 512 0.00 2019-11-13 14:32:52 2019-11-13 14:35:23 t 1 1 167752 645 0.00 2019-11-13 14:38:17 2019-11-13 14:39:37 t 1 1 167754 562 0.00 2019-11-13 14:38:09 2019-11-13 14:40:33 t 1 1 167758 562 0.00 2019-11-13 14:41:11 2019-11-13 14:41:49 t 1 1 167759 514 0.00 2019-11-13 14:33:58 2019-11-13 14:42:53 t 1 1 167766 570 0.00 2019-11-13 14:45:28 2019-11-13 14:45:55 t 1 1 167771 566 0.00 2019-11-13 14:40:10 2019-11-13 14:46:53 t 1 1 167773 220 0.00 2019-11-13 14:47:01 2019-11-13 14:47:35 t 1 1 167774 220 0.00 2019-11-13 14:47:35 2019-11-13 14:48:09 t 1 1 167776 649 0.00 2019-11-13 14:34:12 2019-11-13 14:48:20 t 1 1 167777 562 0.00 2019-11-13 14:48:15 2019-11-13 14:49:25 t 1 1 167781 422 0.00 2019-11-13 14:50:19 2019-11-13 14:50:33 t 1 1 167784 570 0.00 2019-11-13 14:46:04 2019-11-13 14:52:48 t 1 1 167787 514 0.00 2019-11-13 14:42:53 2019-11-13 14:55:05 t 1 1 167793 422 0.00 2019-11-13 14:55:40 2019-11-13 14:59:31 t 1 1 167794 619 0.00 2019-11-13 14:51:00 2019-11-13 15:00:03 t 1 1 167796 645 0.00 2019-11-13 15:00:21 2019-11-13 15:00:53 t 1 1 167797 422 0.00 2019-11-13 15:00:54 2019-11-13 15:01:11 t 1 1 167798 564 0.00 2019-11-13 14:45:12 2019-11-13 15:02:03 t 1 1 167803 422 0.00 2019-11-13 15:05:37 2019-11-13 15:06:25 t 1 1 167807 615 0.00 2019-11-13 14:44:14 2019-11-13 15:08:36 t 1 1 167810 220 0.00 2019-11-13 15:09:26 2019-11-13 15:10:01 t 1 1 167811 591 0.00 2019-11-13 15:05:28 2019-11-13 15:12:15 t 1 1 167812 562 0.00 2019-11-13 15:12:26 2019-11-13 15:12:36 t 1 1 167816 220 0.00 2019-11-13 15:13:52 2019-11-13 15:14:25 t 1 1 167819 516 0.00 2019-11-13 15:12:19 2019-11-13 15:17:26 t 1 1 167823 220 0.00 2019-11-13 15:18:21 2019-11-13 15:18:55 t 1 1 167824 220 0.00 2019-11-13 15:18:54 2019-11-13 15:19:40 t 1 1 167826 516 0.00 2019-11-13 15:17:26 2019-11-13 15:21:34 t 1 1 167831 220 0.00 2019-11-13 15:23:04 2019-11-13 15:23:36 t 1 1 167834 528 0.00 2019-11-13 15:17:55 2019-11-13 15:24:16 t 1 1 167836 544 0.00 2019-11-13 14:38:03 2019-11-13 15:24:50 t 1 1 167839 585 0.00 2019-11-13 15:24:22 2019-11-13 15:26:08 t 1 1 167845 422 0.00 2019-11-13 15:29:13 2019-11-13 15:29:30 t 1 1 167847 528 0.00 2019-11-13 15:29:45 2019-11-13 15:30:05 t 1 1 167849 220 0.00 2019-11-13 15:29:24 2019-11-13 15:33:04 t 1 1 167854 637 0.00 2019-11-13 15:31:26 2019-11-13 15:36:51 t 1 1 167857 637 0.00 2019-11-13 15:36:50 2019-11-13 15:37:42 t 1 1 167865 528 0.00 2019-11-13 15:39:51 2019-11-13 15:40:14 t 1 1 167867 220 0.00 2019-11-13 15:39:56 2019-11-13 15:40:32 t 1 1 167868 379 0.00 2019-11-13 15:40:53 2019-11-13 15:40:53 f 1 1 167871 587 0.00 2019-11-13 15:40:32 2019-11-13 15:42:33 t 1 1 167875 220 0.00 2019-11-13 15:42:38 2019-11-13 15:43:53 t 1 1 167878 635 0.00 2019-11-13 15:35:46 2019-11-13 15:44:44 t 1 1 167881 585 0.00 2019-11-13 15:42:28 2019-11-13 15:47:51 t 1 1 167885 570 0.00 2019-11-13 15:42:23 2019-11-13 15:50:39 t 1 1 167894 220 0.00 2019-11-13 15:54:17 2019-11-13 15:54:41 t 1 1 167896 562 0.00 2019-11-13 15:54:56 2019-11-13 15:55:10 t 1 1 167898 587 0.00 2019-11-13 15:43:41 2019-11-13 15:56:11 t 1 1 167910 589 0.00 2019-11-13 16:03:08 2019-11-13 16:07:24 t 1 1 167912 587 0.00 2019-11-13 15:56:27 2019-11-13 16:08:14 t 1 1 167914 578 0.00 2019-11-13 16:02:03 2019-11-13 16:10:12 t 1 1 167917 422 0.00 2019-11-13 16:12:13 2019-11-13 16:12:30 t 1 1 167626 623 0.00 2019-11-13 13:13:27 2019-11-13 13:13:57 t 1 1 167627 623 0.00 2019-11-13 13:14:11 2019-11-13 13:14:24 t 1 1 167630 623 0.00 2019-11-13 13:15:26 2019-11-13 13:15:33 t 1 1 167637 422 0.00 2019-11-13 13:18:48 2019-11-13 13:22:46 t 1 1 167639 623 0.00 2019-11-13 13:23:38 2019-11-13 13:23:41 t 1 1 167642 422 0.00 2019-11-13 13:23:13 2019-11-13 13:24:49 t 1 1 167644 416 0.00 2019-11-13 13:07:26 2019-11-13 13:25:42 t 1 1 167649 562 0.00 2019-11-13 13:24:44 2019-11-13 13:29:15 t 1 1 167652 623 0.00 2019-11-13 13:29:30 2019-11-13 13:29:43 t 1 1 167653 587 0.00 2019-11-13 13:27:23 2019-11-13 13:30:04 t 1 1 167655 422 0.00 2019-11-13 13:30:36 2019-11-13 13:30:51 t 1 1 167657 585 0.00 2019-11-13 13:27:34 2019-11-13 13:31:49 t 1 1 167661 422 0.00 2019-11-13 13:34:31 2019-11-13 13:34:49 t 1 1 167662 562 0.00 2019-11-13 13:34:10 2019-11-13 13:34:57 t 1 1 167667 220 0.00 2019-11-13 13:25:58 2019-11-13 13:36:21 t 1 2 167670 416 0.00 2019-11-13 13:26:05 2019-11-13 13:37:45 t 1 1 167672 622 0.00 2019-11-13 13:27:32 2019-11-13 13:38:08 t 1 1 167674 587 0.00 2019-11-13 13:30:41 2019-11-13 13:38:39 t 1 1 167675 623 0.00 2019-11-13 13:38:15 2019-11-13 13:39:03 t 1 1 167677 422 0.00 2019-11-13 13:38:30 2019-11-13 13:39:33 t 1 1 167680 422 0.00 2019-11-13 13:39:51 2019-11-13 13:40:00 t 1 1 167682 623 0.00 2019-11-13 13:41:13 2019-11-13 13:41:14 t 1 1 167684 485 0.00 2019-11-13 13:36:06 2019-11-13 13:43:21 t 1 1 167690 623 0.00 2019-11-13 13:44:07 2019-11-13 13:44:42 t 1 1 167694 422 0.00 2019-11-13 13:46:36 2019-11-13 13:46:58 t 1 1 167699 562 0.00 2019-11-13 13:46:52 2019-11-13 13:48:40 t 1 1 167701 623 0.00 2019-11-13 13:47:09 2019-11-13 13:49:28 t 1 1 167703 483 0.00 2019-11-13 13:11:11 2019-11-13 13:51:41 t 1 1 167707 562 0.00 2019-11-13 13:50:11 2019-11-13 13:53:38 t 1 1 167709 637 0.00 2019-11-13 13:51:56 2019-11-13 13:54:10 t 1 1 167710 619 0.00 2019-11-13 13:50:12 2019-11-13 13:55:36 t 1 1 167711 591 0.00 2019-11-13 13:57:10 2019-11-13 13:58:16 t 1 1 167714 645 0.00 2019-11-13 14:03:49 2019-11-13 14:05:10 t 1 1 167717 562 0.00 2019-11-13 14:12:41 2019-11-13 14:12:55 t 1 1 167718 485 0.00 2019-11-13 14:05:12 2019-11-13 14:13:36 t 1 1 167720 645 0.00 2019-11-13 14:11:37 2019-11-13 14:14:54 t 1 1 167728 422 0.00 2019-11-13 14:20:01 2019-11-13 14:20:29 t 1 1 167732 481 0.00 2019-11-13 12:26:18 2019-11-13 14:23:26 t 1 1 167741 566 0.00 2019-11-13 14:21:06 2019-11-13 14:28:25 t 1 1 167742 483 0.00 2019-11-13 14:25:08 2019-11-13 14:29:25 t 1 1 167745 566 0.00 2019-11-13 14:28:25 2019-11-13 14:34:02 t 1 1 167750 544 0.00 2019-11-13 14:23:53 2019-11-13 14:38:03 t 1 1 167751 422 0.00 2019-11-13 14:38:21 2019-11-13 14:39:16 t 1 1 167756 422 0.00 2019-11-13 14:41:06 2019-11-13 14:41:19 t 1 1 167764 562 0.00 2019-11-13 14:45:24 2019-11-13 14:45:36 t 1 1 167768 562 0.00 2019-11-13 14:44:36 2019-11-13 14:46:29 t 1 1 167770 562 0.00 2019-11-13 14:46:07 2019-11-13 14:46:38 t 1 1 167778 562 0.00 2019-11-13 14:49:55 2019-11-13 14:50:02 t 1 1 167780 637 0.00 2019-11-13 14:49:08 2019-11-13 14:50:29 t 1 1 167782 562 0.00 2019-11-13 14:51:22 2019-11-13 14:51:28 t 1 1 167783 637 0.00 2019-11-13 14:50:33 2019-11-13 14:52:24 t 1 1 167785 566 0.00 2019-11-13 14:46:53 2019-11-13 14:52:53 t 1 1 167786 587 0.00 2019-11-13 14:49:37 2019-11-13 14:53:47 t 1 1 167788 422 0.00 2019-11-13 14:55:25 2019-11-13 14:55:34 t 1 1 167789 379 0.00 2019-11-13 14:57:58 2019-11-13 14:57:58 f 1 1 167791 566 0.00 2019-11-13 14:52:53 2019-11-13 14:58:10 t 1 1 167795 566 0.00 2019-11-13 14:58:10 2019-11-13 15:00:49 t 1 1 167800 570 0.00 2019-11-13 14:52:48 2019-11-13 15:03:31 t 1 1 167801 422 0.00 2019-11-13 15:04:55 2019-11-13 15:05:12 t 1 1 167802 422 0.00 2019-11-13 15:05:21 2019-11-13 15:05:29 t 1 1 167808 637 0.00 2019-11-13 14:52:22 2019-11-13 15:09:01 t 1 1 167814 220 0.00 2019-11-13 15:10:01 2019-11-13 15:13:52 t 1 1 167818 570 0.00 2019-11-13 15:03:31 2019-11-13 15:16:30 t 1 1 167821 220 0.00 2019-11-13 15:14:24 2019-11-13 15:18:21 t 1 1 167827 220 0.00 2019-11-13 15:20:14 2019-11-13 15:21:35 t 1 1 167828 220 0.00 2019-11-13 15:21:35 2019-11-13 15:22:10 t 1 1 167829 220 0.00 2019-11-13 15:22:09 2019-11-13 15:23:04 t 1 1 167833 585 0.00 2019-11-13 15:24:05 2019-11-13 15:24:10 t 1 1 167837 422 0.00 2019-11-13 15:24:59 2019-11-13 15:25:18 t 1 1 167840 220 0.00 2019-11-13 15:25:46 2019-11-13 15:26:24 t 1 1 167842 564 0.00 2019-11-13 15:03:07 2019-11-13 15:28:50 t 1 1 167843 528 0.00 2019-11-13 15:24:16 2019-11-13 15:29:04 t 1 1 167844 220 0.00 2019-11-13 15:28:47 2019-11-13 15:29:24 t 1 1 167848 528 0.00 2019-11-13 15:31:14 2019-11-13 15:31:41 t 1 1 167850 220 0.00 2019-11-13 15:33:04 2019-11-13 15:33:40 t 1 1 167851 528 0.00 2019-11-13 15:31:41 2019-11-13 15:34:07 t 1 1 167855 581 0.00 2019-11-13 15:25:07 2019-11-13 15:37:21 t 1 1 167856 220 0.00 2019-11-13 15:33:39 2019-11-13 15:37:24 t 1 1 167858 516 0.00 2019-11-13 15:34:25 2019-11-13 15:37:54 t 1 1 167859 220 0.00 2019-11-13 15:37:24 2019-11-13 15:37:58 t 1 1 167863 220 0.00 2019-11-13 15:39:17 2019-11-13 15:39:56 t 1 1 167864 422 0.00 2019-11-13 15:39:52 2019-11-13 15:40:05 t 1 1 167869 220 0.00 2019-11-13 15:40:31 2019-11-13 15:42:06 t 1 1 167872 220 0.00 2019-11-13 15:42:06 2019-11-13 15:42:38 t 1 1 167877 637 0.00 2019-11-13 15:37:52 2019-11-13 15:44:43 t 1 1 167882 422 0.00 2019-11-13 15:43:12 2019-11-13 15:48:03 t 1 1 167883 220 0.00 2019-11-13 15:43:53 2019-11-13 15:49:04 t 1 1 167884 220 0.00 2019-11-13 15:49:03 2019-11-13 15:50:17 t 1 1 167887 220 0.00 2019-11-13 15:50:51 2019-11-13 15:51:26 t 1 1 167888 220 0.00 2019-11-13 15:51:26 2019-11-13 15:52:01 t 1 1 167890 637 0.00 2019-11-13 15:49:27 2019-11-13 15:52:40 t 1 1 167891 220 0.00 2019-11-13 15:52:35 2019-11-13 15:53:06 t 1 1 167893 220 0.00 2019-11-13 15:53:42 2019-11-13 15:54:17 t 1 1 167895 581 0.00 2019-11-13 15:37:23 2019-11-13 15:55:09 t 1 1 167897 516 0.00 2019-11-13 15:50:39 2019-11-13 15:56:08 t 1 1 167901 570 0.00 2019-11-13 15:50:39 2019-11-13 15:56:53 t 1 1 167902 637 0.00 2019-11-13 15:57:28 2019-11-13 16:00:56 t 1 1 167903 578 0.00 2019-11-13 14:10:14 2019-11-13 16:02:03 t 1 1 167904 589 0.00 2019-11-13 15:28:30 2019-11-13 16:03:03 t 1 1 167906 220 0.00 2019-11-13 16:04:49 2019-11-13 16:05:52 t 1 1 167908 490 0.00 2019-11-13 15:57:03 2019-11-13 16:06:26 t 1 1 167915 637 0.00 2019-11-13 16:09:07 2019-11-13 16:10:49 t 1 1 167920 645 0.00 2019-11-13 16:11:55 2019-11-13 16:13:01 t 1 1 167921 631 0.00 2019-11-13 16:10:10 2019-11-13 16:13:25 t 1 1 167931 220 0.00 2019-11-13 16:16:39 2019-11-13 16:17:58 t 1 1 167933 528 0.00 2019-11-13 16:17:50 2019-11-13 16:18:18 t 1 1 167935 578 0.00 2019-11-13 16:17:25 2019-11-13 16:19:21 t 1 1 167911 422 0.00 2019-11-13 16:07:14 2019-11-13 16:07:27 t 1 1 167913 637 0.00 2019-11-13 16:04:04 2019-11-13 16:08:39 t 1 1 167916 562 0.00 2019-11-13 16:10:42 2019-11-13 16:11:01 t 1 1 167918 637 0.00 2019-11-13 16:11:05 2019-11-13 16:12:43 t 1 1 167919 587 0.00 2019-11-13 16:08:58 2019-11-13 16:12:59 t 1 1 167922 554 0.00 2019-11-13 16:14:14 2019-11-13 16:14:14 f 1 1 167924 562 0.00 2019-11-13 16:14:19 2019-11-13 16:15:38 t 1 1 167925 591 0.00 2019-11-13 16:13:38 2019-11-13 16:16:05 t 1 1 167928 637 0.00 2019-11-13 16:13:08 2019-11-13 16:16:55 t 1 1 167930 578 0.00 2019-11-13 16:10:12 2019-11-13 16:17:26 t 1 1 167938 562 0.00 2019-11-13 16:22:15 2019-11-13 16:23:00 t 1 1 167944 587 0.00 2019-11-13 16:13:01 2019-11-13 16:32:30 t 1 1 167955 528 0.00 2019-11-13 16:37:56 2019-11-13 16:38:50 t 1 1 167957 637 0.00 2019-11-13 16:37:21 2019-11-13 16:39:16 t 1 1 167960 562 0.00 2019-11-13 16:42:21 2019-11-13 16:42:42 t 1 1 167962 645 0.00 2019-11-13 16:41:30 2019-11-13 16:43:35 t 1 1 167964 578 0.00 2019-11-13 16:41:09 2019-11-13 16:44:15 t 1 1 167970 587 0.00 2019-11-13 16:47:05 2019-11-13 16:49:30 t 1 1 167974 637 0.00 2019-11-13 16:44:21 2019-11-13 16:54:00 t 1 1 167976 562 0.00 2019-11-13 16:54:46 2019-11-13 16:55:08 t 1 1 167977 645 0.00 2019-11-13 16:55:24 2019-11-13 16:56:28 t 1 1 167979 422 0.00 2019-11-13 16:56:51 2019-11-13 16:57:01 t 1 1 167980 445 0.00 2019-11-13 16:54:56 2019-11-13 16:59:30 t 1 1 167984 456 0.00 2019-11-13 16:59:55 2019-11-13 17:00:57 t 1 1 167989 520 0.00 2019-11-13 16:33:27 2019-11-13 17:03:29 t 1 1 167991 544 0.00 2019-11-13 16:57:00 2019-11-13 17:05:23 t 1 1 167993 562 0.00 2019-11-13 17:01:34 2019-11-13 17:06:20 t 1 1 168002 637 0.00 2019-11-13 16:53:59 2019-11-13 17:10:49 t 1 1 168004 587 0.00 2019-11-13 16:49:57 2019-11-13 17:11:05 t 1 1 168005 528 0.00 2019-11-13 17:11:12 2019-11-13 17:11:38 t 1 1 168007 422 0.00 2019-11-13 17:11:51 2019-11-13 17:12:48 t 1 1 168008 528 0.00 2019-11-13 17:13:10 2019-11-13 17:13:19 t 1 1 168014 585 0.00 2019-11-13 17:12:00 2019-11-13 17:16:19 t 1 1 168015 562 0.00 2019-11-13 17:14:20 2019-11-13 17:16:37 t 1 1 168018 220 0.00 2019-11-13 16:17:57 2019-11-13 17:17:20 t 1 1 168021 220 0.00 2019-11-13 17:18:00 2019-11-13 17:18:35 t 1 1 168023 619 0.00 2019-11-13 17:16:28 2019-11-13 17:19:14 t 1 1 168024 562 0.00 2019-11-13 17:19:32 2019-11-13 17:19:47 t 1 1 168025 528 0.00 2019-11-13 17:19:37 2019-11-13 17:20:01 t 1 1 168026 562 0.00 2019-11-13 17:20:29 2019-11-13 17:20:45 t 1 1 168027 587 0.00 2019-11-13 17:18:29 2019-11-13 17:21:11 t 1 1 168032 562 0.00 2019-11-13 17:21:58 2019-11-13 17:22:06 t 1 1 168035 220 0.00 2019-11-13 17:22:07 2019-11-13 17:22:40 t 1 1 168039 637 0.00 2019-11-13 17:23:10 2019-11-13 17:24:16 t 1 1 168042 520 0.00 2019-11-13 17:21:17 2019-11-13 17:24:35 t 1 1 168044 220 0.00 2019-11-13 17:24:25 2019-11-13 17:24:52 t 1 1 168048 528 0.00 2019-11-13 17:25:43 2019-11-13 17:26:08 t 1 1 168049 623 0.00 2019-11-13 17:23:07 2019-11-13 17:26:38 t 1 1 168051 623 0.00 2019-11-13 17:26:43 2019-11-13 17:26:46 t 1 1 168054 562 0.00 2019-11-13 17:25:23 2019-11-13 17:27:30 t 1 1 168058 587 0.00 2019-11-13 17:27:55 2019-11-13 17:29:30 t 1 1 168061 220 0.00 2019-11-13 17:30:14 2019-11-13 17:30:48 t 1 1 168069 422 0.00 2019-11-13 17:33:23 2019-11-13 17:34:53 t 1 1 168071 220 0.00 2019-11-13 17:34:30 2019-11-13 17:35:05 t 1 1 168072 220 0.00 2019-11-13 17:35:05 2019-11-13 17:35:40 t 1 1 168074 422 0.00 2019-11-13 17:35:23 2019-11-13 17:36:12 t 1 1 168079 528 0.00 2019-11-13 17:36:39 2019-11-13 17:37:38 t 1 1 168080 220 0.00 2019-11-13 17:35:40 2019-11-13 17:37:43 t 1 1 168084 422 0.00 2019-11-13 17:38:50 2019-11-13 17:38:59 t 1 1 168086 220 0.00 2019-11-13 17:38:21 2019-11-13 17:39:41 t 1 1 168090 422 0.00 2019-11-13 17:40:14 2019-11-13 17:42:11 t 1 1 168091 220 0.00 2019-11-13 17:42:38 2019-11-13 17:42:45 t 1 1 168092 562 0.00 2019-11-13 17:42:51 2019-11-13 17:43:13 t 1 1 168094 528 0.00 2019-11-13 17:38:52 2019-11-13 17:43:52 t 1 1 168096 637 0.00 2019-11-13 17:26:33 2019-11-13 17:44:58 t 1 1 168102 623 0.00 2019-11-13 17:46:03 2019-11-13 17:47:03 t 1 1 168105 422 0.00 2019-11-13 17:47:52 2019-11-13 17:48:30 t 1 1 168107 220 0.00 2019-11-13 17:48:36 2019-11-13 17:49:10 t 1 1 168109 416 0.00 2019-11-13 14:15:00 2019-11-13 17:49:13 t 1 1 168112 637 0.00 2019-11-13 17:46:54 2019-11-13 17:50:51 t 1 1 168113 220 0.00 2019-11-13 17:49:10 2019-11-13 17:51:15 t 1 1 168120 562 0.00 2019-11-13 17:53:39 2019-11-13 17:54:08 t 1 1 168122 615 0.00 2019-11-13 17:51:09 2019-11-13 17:56:02 t 1 1 168123 422 0.00 2019-11-13 17:52:45 2019-11-13 17:56:32 t 1 1 168125 220 0.00 2019-11-13 17:56:33 2019-11-13 17:57:08 t 1 1 168128 562 0.00 2019-11-13 17:57:42 2019-11-13 17:58:26 t 1 1 168132 615 0.00 2019-11-13 17:56:02 2019-11-13 18:00:01 t 1 1 168135 220 0.00 2019-11-13 17:58:51 2019-11-13 18:00:26 t 1 1 168136 220 0.00 2019-11-13 18:00:25 2019-11-13 18:01:11 t 1 1 168141 637 0.00 2019-11-13 17:57:41 2019-11-13 18:02:17 t 1 1 168143 623 0.00 2019-11-13 18:01:45 2019-11-13 18:03:30 t 1 1 168145 422 0.00 2019-11-13 18:03:40 2019-11-13 18:03:50 t 1 1 168148 220 0.00 2019-11-13 18:05:20 2019-11-13 18:05:56 t 1 1 168149 562 0.00 2019-11-13 18:06:04 2019-11-13 18:06:13 t 1 1 168159 220 0.00 2019-11-13 18:07:35 2019-11-13 18:08:49 t 1 1 168160 422 0.00 2019-11-13 18:07:44 2019-11-13 18:09:04 t 1 1 168162 445 0.00 2019-11-13 17:41:10 2019-11-13 18:09:33 t 1 1 168164 422 0.00 2019-11-13 18:09:32 2019-11-13 18:10:25 t 1 1 168169 422 0.00 2019-11-13 18:10:49 2019-11-13 18:12:28 t 1 1 168172 562 0.00 2019-11-13 18:12:15 2019-11-13 18:12:37 t 1 1 168173 623 0.00 2019-11-13 18:11:56 2019-11-13 18:12:57 t 1 1 168175 615 0.00 2019-11-13 18:00:23 2019-11-13 18:13:08 t 1 1 168176 587 0.00 2019-11-13 18:11:04 2019-11-13 18:13:36 t 1 1 168187 591 0.00 2019-11-13 17:51:08 2019-11-13 18:16:33 t 1 1 168190 422 0.00 2019-11-13 18:15:42 2019-11-13 18:17:00 t 1 1 168193 623 0.00 2019-11-13 18:17:18 2019-11-13 18:17:40 t 1 1 168195 416 0.00 2019-11-13 18:05:31 2019-11-13 18:17:54 t 1 1 168200 220 0.00 2019-11-13 18:19:14 2019-11-13 18:19:48 t 1 1 168203 220 0.00 2019-11-13 18:19:48 2019-11-13 18:20:21 t 1 1 168208 623 0.00 2019-11-13 18:20:55 2019-11-13 18:23:34 t 1 1 168211 562 0.00 2019-11-13 18:23:59 2019-11-13 18:24:42 t 1 1 168215 623 0.00 2019-11-13 18:26:16 2019-11-13 18:26:47 t 1 1 168216 220 0.00 2019-11-13 18:24:32 2019-11-13 18:27:05 t 1 1 168223 562 0.00 2019-11-13 18:30:00 2019-11-13 18:30:46 t 1 1 168225 445 0.00 2019-11-13 18:23:49 2019-11-13 18:31:45 t 1 1 168227 623 0.00 2019-11-13 18:32:02 2019-11-13 18:32:11 t 1 1 168231 623 0.00 2019-11-13 18:35:08 2019-11-13 18:35:18 t 1 1 167923 220 0.00 2019-11-13 16:05:52 2019-11-13 16:15:33 t 1 1 167926 220 0.00 2019-11-13 16:15:33 2019-11-13 16:16:07 t 1 1 167927 220 0.00 2019-11-13 16:16:07 2019-11-13 16:16:39 t 1 1 167929 485 0.00 2019-11-13 16:12:48 2019-11-13 16:17:06 t 1 1 167932 562 0.00 2019-11-13 16:17:17 2019-11-13 16:18:10 t 1 1 167934 562 0.00 2019-11-13 16:16:31 2019-11-13 16:18:30 t 1 1 167941 528 0.00 2019-11-13 16:25:36 2019-11-13 16:26:17 t 1 1 167942 562 0.00 2019-11-13 16:27:36 2019-11-13 16:28:47 t 1 1 167943 562 0.00 2019-11-13 16:31:40 2019-11-13 16:32:17 t 1 1 167948 562 0.00 2019-11-13 16:33:14 2019-11-13 16:33:56 t 1 1 167951 587 0.00 2019-11-13 16:32:58 2019-11-13 16:36:02 t 1 1 167952 562 0.00 2019-11-13 16:36:04 2019-11-13 16:36:26 t 1 1 167953 379 0.00 2019-11-13 16:37:11 2019-11-13 16:37:11 f 1 1 167958 562 0.00 2019-11-13 16:38:44 2019-11-13 16:39:35 t 1 1 167959 578 0.00 2019-11-13 16:19:52 2019-11-13 16:41:10 t 1 1 167961 619 0.00 2019-11-13 16:39:35 2019-11-13 16:43:00 t 1 1 167965 422 0.00 2019-11-13 16:14:04 2019-11-13 16:44:26 t 1 1 167967 587 0.00 2019-11-13 16:36:24 2019-11-13 16:46:43 t 1 1 167968 562 0.00 2019-11-13 16:47:48 2019-11-13 16:48:48 t 1 1 167969 528 0.00 2019-11-13 16:48:35 2019-11-13 16:49:24 t 1 1 167971 528 0.00 2019-11-13 16:52:24 2019-11-13 16:52:35 t 1 1 167973 422 0.00 2019-11-13 16:50:02 2019-11-13 16:53:23 t 1 1 167983 585 0.00 2019-11-13 16:57:00 2019-11-13 17:00:19 t 1 1 167985 516 0.00 2019-11-13 16:29:21 2019-11-13 17:01:01 t 1 1 167986 581 0.00 2019-11-13 16:49:39 2019-11-13 17:02:10 t 1 1 167990 422 0.00 2019-11-13 17:04:40 2019-11-13 17:05:02 t 1 1 167992 422 0.00 2019-11-13 17:05:24 2019-11-13 17:05:48 t 1 1 167996 562 0.00 2019-11-13 17:06:36 2019-11-13 17:08:30 t 1 1 167998 570 0.00 2019-11-13 16:27:43 2019-11-13 17:09:12 t 1 1 168001 562 0.00 2019-11-13 17:09:31 2019-11-13 17:10:41 t 1 1 168009 591 0.00 2019-11-13 16:24:16 2019-11-13 17:13:34 t 1 1 168010 528 0.00 2019-11-13 17:14:12 2019-11-13 17:14:31 t 1 1 168011 645 0.00 2019-11-13 17:14:11 2019-11-13 17:15:21 t 1 1 168016 528 0.00 2019-11-13 17:16:13 2019-11-13 17:16:45 t 1 1 168019 587 0.00 2019-11-13 17:12:08 2019-11-13 17:17:45 t 1 1 168020 220 0.00 2019-11-13 17:17:20 2019-11-13 17:18:00 t 1 1 168028 520 0.00 2019-11-13 17:03:28 2019-11-13 17:21:18 t 1 1 168030 637 0.00 2019-11-13 17:15:45 2019-11-13 17:21:53 t 1 1 168031 528 0.00 2019-11-13 17:21:28 2019-11-13 17:21:59 t 1 1 168033 220 0.00 2019-11-13 17:18:34 2019-11-13 17:22:07 t 1 1 168037 490 0.00 2019-11-13 17:17:41 2019-11-13 17:23:31 t 1 1 168040 220 0.00 2019-11-13 17:22:39 2019-11-13 17:24:17 t 1 1 168047 220 0.00 2019-11-13 17:25:27 2019-11-13 17:26:01 t 1 1 168053 528 0.00 2019-11-13 17:26:53 2019-11-13 17:27:08 t 1 1 168055 220 0.00 2019-11-13 17:26:01 2019-11-13 17:27:54 t 1 1 168056 591 0.00 2019-11-13 17:16:39 2019-11-13 17:28:07 t 1 1 168059 220 0.00 2019-11-13 17:28:28 2019-11-13 17:30:14 t 1 1 168060 422 0.00 2019-11-13 17:30:24 2019-11-13 17:30:33 t 1 1 168064 422 0.00 2019-11-13 17:31:58 2019-11-13 17:32:32 t 1 1 168066 591 0.00 2019-11-13 17:31:08 2019-11-13 17:32:42 t 1 1 168068 220 0.00 2019-11-13 17:30:48 2019-11-13 17:34:30 t 1 1 168076 422 0.00 2019-11-13 17:36:18 2019-11-13 17:37:18 t 1 1 168078 587 0.00 2019-11-13 17:37:34 2019-11-13 17:37:37 t 1 1 168081 562 0.00 2019-11-13 17:37:40 2019-11-13 17:38:07 t 1 1 168083 528 0.00 2019-11-13 17:38:03 2019-11-13 17:38:35 t 1 1 168088 623 0.00 2019-11-13 17:41:01 2019-11-13 17:41:03 t 1 1 168089 220 0.00 2019-11-13 17:40:43 2019-11-13 17:42:05 t 1 1 168095 220 0.00 2019-11-13 17:43:20 2019-11-13 17:44:30 t 1 1 168097 591 0.00 2019-11-13 17:37:43 2019-11-13 17:45:43 t 1 1 168098 220 0.00 2019-11-13 17:44:39 2019-11-13 17:45:57 t 1 1 168099 516 0.00 2019-11-13 17:35:28 2019-11-13 17:46:09 t 1 1 168101 528 0.00 2019-11-13 17:46:03 2019-11-13 17:46:30 t 1 1 168104 422 0.00 2019-11-13 17:46:42 2019-11-13 17:47:46 t 1 1 168106 220 0.00 2019-11-13 17:45:57 2019-11-13 17:48:36 t 1 1 168111 528 0.00 2019-11-13 17:47:55 2019-11-13 17:49:24 t 1 1 168114 637 0.00 2019-11-13 17:50:49 2019-11-13 17:51:28 t 1 1 168116 623 0.00 2019-11-13 17:51:18 2019-11-13 17:51:45 t 1 1 168118 220 0.00 2019-11-13 17:51:50 2019-11-13 17:52:23 t 1 1 168119 220 0.00 2019-11-13 17:52:23 2019-11-13 17:52:55 t 1 1 168124 220 0.00 2019-11-13 17:52:55 2019-11-13 17:56:34 t 1 1 168127 587 0.00 2019-11-13 17:51:58 2019-11-13 17:58:12 t 1 1 168129 585 0.00 2019-11-13 17:57:01 2019-11-13 17:58:29 t 1 1 168130 220 0.00 2019-11-13 17:57:08 2019-11-13 17:58:51 t 1 1 168131 623 0.00 2019-11-13 17:59:39 2019-11-13 17:59:49 t 1 1 168139 623 0.00 2019-11-13 18:01:58 2019-11-13 18:01:58 f 1 1 168140 422 0.00 2019-11-13 18:02:10 2019-11-13 18:02:16 t 1 1 168146 416 0.00 2019-11-13 17:50:56 2019-11-13 18:04:17 t 1 1 168151 587 0.00 2019-11-13 17:58:28 2019-11-13 18:06:23 t 1 1 168155 422 0.00 2019-11-13 18:07:06 2019-11-13 18:07:38 t 1 1 168157 623 0.00 2019-11-13 18:07:47 2019-11-13 18:08:39 t 1 1 168163 516 0.00 2019-11-13 17:58:33 2019-11-13 18:10:12 t 1 1 168165 220 0.00 2019-11-13 18:08:49 2019-11-13 18:10:59 t 1 1 168167 623 0.00 2019-11-13 18:08:54 2019-11-13 18:11:30 t 1 1 168171 623 0.00 2019-11-13 18:12:27 2019-11-13 18:12:36 t 1 1 168174 422 0.00 2019-11-13 18:12:41 2019-11-13 18:13:07 t 1 1 168180 623 0.00 2019-11-13 18:14:12 2019-11-13 18:14:36 t 1 1 168182 220 0.00 2019-11-13 18:11:31 2019-11-13 18:15:08 t 1 1 168183 623 0.00 2019-11-13 18:15:30 2019-11-13 18:15:42 t 1 1 168184 220 0.00 2019-11-13 18:15:07 2019-11-13 18:15:44 t 1 1 168185 445 0.00 2019-11-13 18:12:50 2019-11-13 18:16:02 t 1 1 168192 623 0.00 2019-11-13 18:15:47 2019-11-13 18:17:30 t 1 1 168197 544 0.00 2019-11-13 17:06:05 2019-11-13 18:18:38 t 1 1 168198 220 0.00 2019-11-13 18:17:28 2019-11-13 18:19:14 t 1 1 168209 445 0.00 2019-11-13 18:16:25 2019-11-13 18:23:49 t 1 1 168213 623 0.00 2019-11-13 18:23:38 2019-11-13 18:25:30 t 1 1 168217 422 0.00 2019-11-13 18:27:35 2019-11-13 18:27:41 t 1 1 168218 595 0.00 2019-11-13 18:27:53 2019-11-13 18:28:31 t 1 1 168219 220 0.00 2019-11-13 18:27:05 2019-11-13 18:29:21 t 1 1 168221 422 0.00 2019-11-13 18:30:05 2019-11-13 18:30:16 t 1 1 168222 623 0.00 2019-11-13 18:30:35 2019-11-13 18:30:44 t 1 1 168224 587 0.00 2019-11-13 18:18:45 2019-11-13 18:31:21 t 1 1 168226 220 0.00 2019-11-13 18:29:21 2019-11-13 18:32:06 t 1 1 168228 544 0.00 2019-11-13 18:18:38 2019-11-13 18:32:12 t 1 1 168229 220 0.00 2019-11-13 18:32:06 2019-11-13 18:33:48 t 1 1 168230 623 0.00 2019-11-13 18:34:06 2019-11-13 18:34:42 t 1 1 168232 220 0.00 2019-11-13 18:33:47 2019-11-13 18:37:14 t 1 1 168236 623 0.00 2019-11-13 18:38:38 2019-11-13 18:38:49 t 1 1 167936 645 0.00 2019-11-13 16:17:22 2019-11-13 16:21:47 t 1 1 167937 456 0.00 2019-11-13 16:15:54 2019-11-13 16:22:25 t 1 1 167939 562 0.00 2019-11-13 16:25:03 2019-11-13 16:25:42 t 1 1 167940 562 0.00 2019-11-13 16:25:56 2019-11-13 16:26:09 t 1 1 167945 412 0.00 2019-11-13 07:40:28 2019-11-13 16:32:56 t 1 1 167946 538 0.00 2019-11-13 16:20:23 2019-11-13 16:33:13 t 1 1 167947 520 0.00 2019-11-13 16:27:06 2019-11-13 16:33:27 t 1 1 167949 485 0.00 2019-11-13 16:18:16 2019-11-13 16:34:21 t 1 1 167950 562 0.00 2019-11-13 16:34:30 2019-11-13 16:34:50 t 1 1 167954 379 0.00 2019-11-13 16:38:13 2019-11-13 16:38:13 f 1 1 167956 485 0.00 2019-11-13 16:34:21 2019-11-13 16:38:54 t 1 1 167963 637 0.00 2019-11-13 16:40:35 2019-11-13 16:43:38 t 1 1 167966 445 0.00 2019-11-13 13:19:11 2019-11-13 16:46:14 t 1 1 167972 445 0.00 2019-11-13 16:49:20 2019-11-13 16:53:21 t 1 1 167975 422 0.00 2019-11-13 16:53:29 2019-11-13 16:54:31 t 1 1 167978 544 0.00 2019-11-13 15:24:50 2019-11-13 16:57:00 t 1 1 167981 456 0.00 2019-11-13 16:28:56 2019-11-13 16:59:56 t 1 1 167982 562 0.00 2019-11-13 16:59:48 2019-11-13 17:00:15 t 1 1 167987 528 0.00 2019-11-13 17:02:30 2019-11-13 17:02:43 t 1 1 167988 422 0.00 2019-11-13 17:02:54 2019-11-13 17:03:01 t 1 1 167994 422 0.00 2019-11-13 17:05:54 2019-11-13 17:06:21 t 1 1 167995 422 0.00 2019-11-13 17:07:51 2019-11-13 17:08:09 t 1 1 167997 528 0.00 2019-11-13 17:07:52 2019-11-13 17:09:00 t 1 1 167999 622 0.00 2019-11-13 13:38:08 2019-11-13 17:09:45 t 1 1 168000 656 0.00 2019-11-13 16:49:57 2019-11-13 17:10:17 t 1 1 168003 578 0.00 2019-11-13 16:44:49 2019-11-13 17:10:52 t 1 1 168006 587 0.00 2019-11-13 17:11:24 2019-11-13 17:11:44 t 1 1 168012 637 0.00 2019-11-13 17:13:31 2019-11-13 17:15:42 t 1 1 168013 422 0.00 2019-11-13 17:15:22 2019-11-13 17:16:12 t 1 1 168017 422 0.00 2019-11-13 17:16:35 2019-11-13 17:17:13 t 1 1 168022 422 0.00 2019-11-13 17:18:28 2019-11-13 17:18:43 t 1 1 168029 422 0.00 2019-11-13 17:20:33 2019-11-13 17:21:34 t 1 1 168034 587 0.00 2019-11-13 17:22:18 2019-11-13 17:22:29 t 1 1 168036 562 0.00 2019-11-13 17:20:56 2019-11-13 17:23:30 t 1 1 168038 578 0.00 2019-11-13 17:13:38 2019-11-13 17:23:34 t 1 1 168041 220 0.00 2019-11-13 17:24:17 2019-11-13 17:24:25 t 1 1 168043 528 0.00 2019-11-13 17:24:28 2019-11-13 17:24:47 t 1 1 168045 562 0.00 2019-11-13 17:25:06 2019-11-13 17:25:12 t 1 1 168046 220 0.00 2019-11-13 17:24:52 2019-11-13 17:25:27 t 1 1 168050 587 0.00 2019-11-13 17:26:25 2019-11-13 17:26:38 t 1 1 168052 422 0.00 2019-11-13 17:26:52 2019-11-13 17:27:04 t 1 1 168057 220 0.00 2019-11-13 17:27:54 2019-11-13 17:28:28 t 1 1 168062 587 0.00 2019-11-13 17:30:28 2019-11-13 17:30:52 t 1 1 168063 422 0.00 2019-11-13 17:30:39 2019-11-13 17:31:28 t 1 1 168065 528 0.00 2019-11-13 17:30:41 2019-11-13 17:32:39 t 1 1 168067 422 0.00 2019-11-13 17:32:38 2019-11-13 17:33:13 t 1 1 168070 554 0.00 2019-11-13 17:35:01 2019-11-13 17:35:01 f 1 1 168073 562 0.00 2019-11-13 17:35:31 2019-11-13 17:35:54 t 1 1 168075 587 0.00 2019-11-13 17:31:59 2019-11-13 17:37:05 t 1 1 168077 623 0.00 2019-11-13 17:29:54 2019-11-13 17:37:35 t 1 1 168082 220 0.00 2019-11-13 17:37:42 2019-11-13 17:38:21 t 1 1 168085 445 0.00 2019-11-13 16:59:31 2019-11-13 17:39:05 t 1 1 168087 220 0.00 2019-11-13 17:39:41 2019-11-13 17:40:41 t 1 1 168093 220 0.00 2019-11-13 17:42:45 2019-11-13 17:43:17 t 1 1 168100 637 0.00 2019-11-13 17:45:16 2019-11-13 17:46:13 t 1 1 168103 637 0.00 2019-11-13 17:46:13 2019-11-13 17:47:13 t 1 1 168108 481 0.00 2019-11-13 15:12:48 2019-11-13 17:49:11 t 1 1 168110 623 0.00 2019-11-13 17:49:04 2019-11-13 17:49:13 t 1 1 168115 587 0.00 2019-11-13 17:38:01 2019-11-13 17:51:41 t 1 1 168117 220 0.00 2019-11-13 17:51:15 2019-11-13 17:51:50 t 1 1 168121 623 0.00 2019-11-13 17:55:38 2019-11-13 17:55:49 t 1 1 168126 637 0.00 2019-11-13 17:51:38 2019-11-13 17:57:39 t 1 1 168133 623 0.00 2019-11-13 17:59:54 2019-11-13 18:00:08 t 1 1 168134 623 0.00 2019-11-13 18:00:24 2019-11-13 18:00:25 t 1 1 168137 422 0.00 2019-11-13 17:56:31 2019-11-13 18:01:11 t 1 1 168138 220 0.00 2019-11-13 18:01:10 2019-11-13 18:01:45 t 1 1 168142 562 0.00 2019-11-13 18:01:58 2019-11-13 18:02:28 t 1 1 168144 623 0.00 2019-11-13 18:01:32 2019-11-13 18:03:30 t 1 1 168147 220 0.00 2019-11-13 18:01:44 2019-11-13 18:05:20 t 1 1 168150 623 0.00 2019-11-13 18:05:16 2019-11-13 18:06:17 t 1 1 168152 220 0.00 2019-11-13 18:05:56 2019-11-13 18:06:30 t 1 1 168153 220 0.00 2019-11-13 18:06:30 2019-11-13 18:07:03 t 1 1 168154 220 0.00 2019-11-13 18:07:03 2019-11-13 18:07:36 t 1 1 168156 599 0.00 2019-11-13 18:05:27 2019-11-13 18:08:28 t 1 1 168158 623 0.00 2019-11-13 18:08:47 2019-11-13 18:08:48 t 1 1 168161 637 0.00 2019-11-13 18:07:52 2019-11-13 18:09:11 t 1 1 168166 445 0.00 2019-11-13 18:09:35 2019-11-13 18:11:18 t 1 1 168168 220 0.00 2019-11-13 18:10:59 2019-11-13 18:11:31 t 1 1 168170 637 0.00 2019-11-13 18:10:45 2019-11-13 18:12:32 t 1 1 168177 623 0.00 2019-11-13 18:13:22 2019-11-13 18:13:49 t 1 1 168178 587 0.00 2019-11-13 18:13:52 2019-11-13 18:14:01 t 1 1 168179 587 0.00 2019-11-13 18:14:21 2019-11-13 18:14:33 t 1 1 168181 422 0.00 2019-11-13 18:13:34 2019-11-13 18:14:47 t 1 1 168186 220 0.00 2019-11-13 18:15:44 2019-11-13 18:16:19 t 1 1 168188 637 0.00 2019-11-13 18:15:10 2019-11-13 18:16:40 t 1 1 168189 220 0.00 2019-11-13 18:16:16 2019-11-13 18:16:54 t 1 1 168191 220 0.00 2019-11-13 18:16:54 2019-11-13 18:17:28 t 1 1 168194 599 0.00 2019-11-13 18:09:36 2019-11-13 18:17:48 t 1 1 168196 587 0.00 2019-11-13 18:14:44 2019-11-13 18:18:32 t 1 1 168199 623 0.00 2019-11-13 18:17:52 2019-11-13 18:19:30 t 1 1 168201 637 0.00 2019-11-13 18:16:47 2019-11-13 18:19:55 t 1 1 168202 562 0.00 2019-11-13 18:19:13 2019-11-13 18:20:11 t 1 1 168204 623 0.00 2019-11-13 18:18:24 2019-11-13 18:20:30 t 1 1 168205 422 0.00 2019-11-13 18:19:16 2019-11-13 18:21:52 t 1 1 168206 422 0.00 2019-11-13 18:21:58 2019-11-13 18:22:36 t 1 1 168207 220 0.00 2019-11-13 18:20:21 2019-11-13 18:23:06 t 1 1 168210 220 0.00 2019-11-13 18:23:05 2019-11-13 18:24:33 t 1 1 168212 422 0.00 2019-11-13 18:25:04 2019-11-13 18:25:16 t 1 1 168214 619 0.00 2019-11-13 18:24:37 2019-11-13 18:26:12 t 1 1 168220 591 0.00 2019-11-13 18:17:12 2019-11-13 18:30:11 t 1 1 168233 220 0.00 2019-11-13 18:37:14 2019-11-13 18:37:37 t 1 1 168235 220 0.00 2019-11-13 18:37:37 2019-11-13 18:38:42 t 1 1 168238 220 0.00 2019-11-13 18:39:15 2019-11-13 18:39:30 t 1 1 168240 516 0.00 2019-11-13 18:30:25 2019-11-13 18:39:54 t 1 1 168243 445 0.00 2019-11-13 18:31:45 2019-11-13 18:40:50 t 1 1 168244 562 0.00 2019-11-13 18:40:50 2019-11-13 18:41:06 t 1 1 168246 220 0.00 2019-11-13 18:40:04 2019-11-13 18:41:28 t 1 1 168234 570 0.00 2019-11-13 17:35:09 2019-11-13 18:38:22 t 1 1 168239 623 0.00 2019-11-13 18:39:38 2019-11-13 18:39:48 t 1 1 168249 623 0.00 2019-11-13 18:43:13 2019-11-13 18:43:24 t 1 1 168255 220 0.00 2019-11-13 18:45:04 2019-11-13 18:45:40 t 1 1 168258 220 0.00 2019-11-13 18:46:16 2019-11-13 18:46:19 t 1 1 168264 220 0.00 2019-11-13 18:48:01 2019-11-13 18:48:33 t 1 1 168268 589 0.00 2019-11-13 18:47:03 2019-11-13 18:49:39 t 1 1 168272 422 0.00 2019-11-13 18:51:31 2019-11-13 18:52:00 t 1 1 168274 585 0.00 2019-11-13 18:35:29 2019-11-13 18:54:37 t 1 1 168276 645 0.00 2019-11-13 18:55:14 2019-11-13 18:56:00 t 1 1 168279 445 0.00 2019-11-13 18:52:33 2019-11-13 18:57:26 t 1 1 168282 645 0.00 2019-11-13 18:56:00 2019-11-13 18:57:57 t 1 1 168291 562 0.00 2019-11-13 19:02:21 2019-11-13 19:02:44 t 1 1 168292 599 0.00 2019-11-13 18:17:56 2019-11-13 19:03:03 t 1 1 168295 520 0.00 2019-11-13 18:55:26 2019-11-13 19:04:15 t 1 1 168301 562 0.00 2019-11-13 19:06:21 2019-11-13 19:06:27 t 1 1 168304 570 0.00 2019-11-13 19:06:26 2019-11-13 19:08:53 t 1 1 168305 220 0.00 2019-11-13 19:08:25 2019-11-13 19:08:59 t 1 1 168307 581 0.00 2019-11-13 18:05:34 2019-11-13 19:10:29 t 1 1 168320 220 0.00 2019-11-13 19:13:41 2019-11-13 19:14:15 t 1 1 168323 585 0.00 2019-11-13 19:14:08 2019-11-13 19:15:29 t 1 1 168324 544 0.00 2019-11-13 19:07:26 2019-11-13 19:16:11 t 1 1 168328 591 0.00 2019-11-13 19:16:32 2019-11-13 19:18:11 t 1 1 168330 562 0.00 2019-11-13 19:18:48 2019-11-13 19:19:16 t 1 1 168334 623 0.00 2019-11-13 19:22:13 2019-11-13 19:22:16 t 1 1 168337 566 0.00 2019-11-13 19:18:21 2019-11-13 19:22:45 t 1 1 168341 566 0.00 2019-11-13 19:22:45 2019-11-13 19:25:19 t 1 1 168345 623 0.00 2019-11-13 19:26:01 2019-11-13 19:27:31 t 1 1 168346 623 0.00 2019-11-13 19:27:34 2019-11-13 19:27:59 t 1 1 168348 623 0.00 2019-11-13 19:28:07 2019-11-13 19:28:32 t 1 1 168349 422 0.00 2019-11-13 19:28:36 2019-11-13 19:28:49 t 1 1 168355 623 0.00 2019-11-13 19:29:40 2019-11-13 19:31:31 t 1 1 168359 637 0.00 2019-11-13 19:31:06 2019-11-13 19:33:38 t 1 1 168360 422 0.00 2019-11-13 19:33:38 2019-11-13 19:34:01 t 1 1 168361 623 0.00 2019-11-13 19:34:07 2019-11-13 19:34:34 t 1 1 168367 637 0.00 2019-11-13 19:35:43 2019-11-13 19:37:15 t 1 1 168374 623 0.00 2019-11-13 19:39:16 2019-11-13 19:41:31 t 1 1 168379 607 0.00 2019-11-13 19:13:25 2019-11-13 19:43:00 t 1 1 168380 623 0.00 2019-11-13 19:44:11 2019-11-13 19:44:12 t 1 1 168390 623 0.00 2019-11-13 19:49:18 2019-11-13 19:49:21 t 1 1 168395 587 0.00 2019-11-13 19:46:54 2019-11-13 19:51:26 t 1 1 168396 485 0.00 2019-11-13 19:48:41 2019-11-13 19:51:49 t 1 1 168398 587 0.00 2019-11-13 19:52:09 2019-11-13 19:52:10 t 1 1 168401 562 0.00 2019-11-13 19:53:06 2019-11-13 19:54:06 t 1 1 168405 637 0.00 2019-11-13 19:55:11 2019-11-13 19:57:53 t 1 1 168408 619 0.00 2019-11-13 19:55:51 2019-11-13 19:58:43 t 1 1 168410 593 0.00 2019-11-13 19:38:36 2019-11-13 19:59:21 t 1 1 168415 658 0.00 2019-11-13 20:01:02 2019-11-13 20:01:18 t 1 1 168416 422 0.00 2019-11-13 20:00:46 2019-11-13 20:01:47 t 1 1 168417 585 0.00 2019-11-13 19:18:29 2019-11-13 20:02:13 t 1 1 168420 422 0.00 2019-11-13 20:02:06 2019-11-13 20:03:06 t 1 1 168427 220 0.00 2019-11-13 20:06:44 2019-11-13 20:07:18 t 1 1 168428 220 0.00 2019-11-13 20:07:18 2019-11-13 20:07:53 t 1 1 168432 422 0.00 2019-11-13 20:06:16 2019-11-13 20:08:40 t 1 1 168436 587 0.00 2019-11-13 20:01:16 2019-11-13 20:09:27 t 1 1 168441 220 0.00 2019-11-13 20:09:37 2019-11-13 20:10:11 t 1 1 168442 538 0.00 2019-11-13 19:59:23 2019-11-13 20:10:34 t 1 1 168443 220 0.00 2019-11-13 20:10:11 2019-11-13 20:10:45 t 1 1 168446 422 0.00 2019-11-13 20:09:45 2019-11-13 20:11:47 t 1 1 168450 422 0.00 2019-11-13 20:11:54 2019-11-13 20:12:42 t 1 1 168454 656 0.00 2019-11-13 19:50:33 2019-11-13 20:14:31 t 1 1 168456 562 0.00 2019-11-13 20:12:49 2019-11-13 20:14:47 t 1 1 168462 220 0.00 2019-11-13 20:15:38 2019-11-13 20:15:45 t 1 1 168465 516 0.00 2019-11-13 20:10:18 2019-11-13 20:16:16 t 1 1 168467 416 0.00 2019-11-13 20:15:19 2019-11-13 20:16:28 t 1 1 168469 220 0.00 2019-11-13 20:16:19 2019-11-13 20:16:47 t 1 1 168471 220 0.00 2019-11-13 20:16:55 2019-11-13 20:17:21 t 1 1 168474 422 0.00 2019-11-13 20:17:20 2019-11-13 20:17:49 t 1 1 168475 220 0.00 2019-11-13 20:17:34 2019-11-13 20:17:58 t 1 1 168478 220 0.00 2019-11-13 20:18:33 2019-11-13 20:18:38 t 1 1 168484 220 0.00 2019-11-13 20:19:15 2019-11-13 20:19:41 t 1 1 168486 220 0.00 2019-11-13 20:19:40 2019-11-13 20:19:50 t 1 1 168488 220 0.00 2019-11-13 20:20:15 2019-11-13 20:20:27 t 1 1 168489 220 0.00 2019-11-13 20:20:26 2019-11-13 20:20:50 t 1 1 168493 623 0.00 2019-11-13 20:21:11 2019-11-13 20:21:41 t 1 1 168498 623 0.00 2019-11-13 20:21:53 2019-11-13 20:22:20 t 1 1 168503 220 0.00 2019-11-13 20:22:36 2019-11-13 20:22:48 t 1 1 168507 220 0.00 2019-11-13 20:23:09 2019-11-13 20:23:23 t 1 1 168511 220 0.00 2019-11-13 20:23:40 2019-11-13 20:24:15 t 1 1 168514 220 0.00 2019-11-13 20:24:19 2019-11-13 20:24:50 t 1 1 168518 220 0.00 2019-11-13 20:24:55 2019-11-13 20:25:23 t 1 1 168520 220 0.00 2019-11-13 20:25:23 2019-11-13 20:25:30 t 1 1 168528 220 0.00 2019-11-13 20:26:41 2019-11-13 20:27:08 t 1 1 168529 220 0.00 2019-11-13 20:27:08 2019-11-13 20:27:15 t 1 1 168531 514 0.00 2019-11-13 20:15:58 2019-11-13 20:27:23 t 1 1 168534 220 0.00 2019-11-13 20:27:45 2019-11-13 20:27:49 t 1 1 168536 220 0.00 2019-11-13 20:27:49 2019-11-13 20:28:25 t 1 1 168539 422 0.00 2019-11-13 20:28:49 2019-11-13 20:28:56 t 1 1 168542 623 0.00 2019-11-13 20:27:22 2019-11-13 20:29:31 t 1 1 168551 220 0.00 2019-11-13 20:31:07 2019-11-13 20:31:23 t 1 1 168555 587 0.00 2019-11-13 20:28:16 2019-11-13 20:32:09 t 1 1 168557 220 0.00 2019-11-13 20:31:39 2019-11-13 20:32:13 t 1 1 168559 562 0.00 2019-11-13 20:31:42 2019-11-13 20:32:38 t 1 1 168561 422 0.00 2019-11-13 20:32:20 2019-11-13 20:32:40 t 1 1 168562 220 0.00 2019-11-13 20:32:12 2019-11-13 20:32:43 t 1 1 168566 220 0.00 2019-11-13 20:33:16 2019-11-13 20:33:52 t 1 1 168567 220 0.00 2019-11-13 20:33:52 2019-11-13 20:34:24 t 1 1 168570 220 0.00 2019-11-13 20:35:20 2019-11-13 20:35:29 t 1 1 168573 422 0.00 2019-11-13 20:35:33 2019-11-13 20:36:36 t 1 1 168575 585 0.00 2019-11-13 20:13:57 2019-11-13 20:36:49 t 1 1 168576 220 0.00 2019-11-13 20:36:43 2019-11-13 20:37:18 t 1 1 168577 220 0.00 2019-11-13 20:37:18 2019-11-13 20:37:23 t 1 1 168583 514 0.00 2019-11-13 20:27:23 2019-11-13 20:39:33 t 1 1 168584 220 0.00 2019-11-13 20:39:27 2019-11-13 20:40:03 t 1 1 168585 220 0.00 2019-11-13 20:40:03 2019-11-13 20:40:35 t 1 1 168590 566 0.00 2019-11-13 20:22:22 2019-11-13 20:41:15 t 1 1 168592 656 0.00 2019-11-13 20:26:22 2019-11-13 20:41:24 t 1 1 168237 220 0.00 2019-11-13 18:38:42 2019-11-13 18:39:15 t 1 1 168241 220 0.00 2019-11-13 18:39:30 2019-11-13 18:40:05 t 1 1 168242 623 0.00 2019-11-13 18:40:26 2019-11-13 18:40:49 t 1 1 168245 422 0.00 2019-11-13 18:40:30 2019-11-13 18:41:14 t 1 1 168251 591 0.00 2019-11-13 18:32:11 2019-11-13 18:43:49 t 1 1 168252 220 0.00 2019-11-13 18:43:44 2019-11-13 18:44:29 t 1 1 168254 220 0.00 2019-11-13 18:44:29 2019-11-13 18:45:04 t 1 1 168256 485 0.00 2019-11-13 18:43:34 2019-11-13 18:45:58 t 1 1 168259 220 0.00 2019-11-13 18:46:18 2019-11-13 18:46:49 t 1 1 168265 623 0.00 2019-11-13 18:43:32 2019-11-13 18:49:00 t 1 1 168266 220 0.00 2019-11-13 18:48:32 2019-11-13 18:49:04 t 1 1 168269 220 0.00 2019-11-13 18:49:23 2019-11-13 18:49:41 t 1 1 168277 637 0.00 2019-11-13 18:23:22 2019-11-13 18:57:14 t 1 1 168280 623 0.00 2019-11-13 18:57:26 2019-11-13 18:57:33 t 1 1 168281 220 0.00 2019-11-13 18:57:14 2019-11-13 18:57:49 t 1 1 168283 615 0.00 2019-11-13 18:54:47 2019-11-13 18:57:58 t 1 1 168285 623 0.00 2019-11-13 18:58:43 2019-11-13 18:59:11 t 1 1 168287 512 0.00 2019-11-13 18:59:23 2019-11-13 19:01:52 t 1 1 168290 422 0.00 2019-11-13 19:02:19 2019-11-13 19:02:41 t 1 1 168293 220 0.00 2019-11-13 18:57:49 2019-11-13 19:03:15 t 1 1 168294 220 0.00 2019-11-13 19:03:15 2019-11-13 19:03:50 t 1 1 168298 430 0.00 2019-11-13 18:45:17 2019-11-13 19:05:21 t 1 1 168300 570 0.00 2019-11-13 18:47:28 2019-11-13 19:06:27 t 1 1 168306 562 0.00 2019-11-13 19:09:02 2019-11-13 19:09:24 t 1 1 168308 623 0.00 2019-11-13 19:10:51 2019-11-13 19:11:02 t 1 1 168312 623 0.00 2019-11-13 19:12:39 2019-11-13 19:13:02 t 1 1 168314 566 0.00 2019-11-13 19:02:53 2019-11-13 19:13:25 t 1 1 168315 422 0.00 2019-11-13 19:13:01 2019-11-13 19:13:36 t 1 1 168318 485 0.00 2019-11-13 19:11:58 2019-11-13 19:14:07 t 1 1 168322 220 0.00 2019-11-13 19:14:15 2019-11-13 19:14:56 t 1 1 168326 562 0.00 2019-11-13 19:15:47 2019-11-13 19:17:18 t 1 1 168332 589 0.00 2019-11-13 19:17:41 2019-11-13 19:20:28 t 1 1 168333 562 0.00 2019-11-13 19:21:38 2019-11-13 19:21:44 t 1 1 168336 562 0.00 2019-11-13 19:22:33 2019-11-13 19:22:44 t 1 1 168339 619 0.00 2019-11-13 19:22:18 2019-11-13 19:23:53 t 1 1 168343 623 0.00 2019-11-13 19:24:19 2019-11-13 19:25:40 t 1 1 168347 623 0.00 2019-11-13 19:27:26 2019-11-13 19:28:31 t 1 1 168350 623 0.00 2019-11-13 19:28:44 2019-11-13 19:29:12 t 1 1 168354 645 0.00 2019-11-13 19:30:10 2019-11-13 19:31:13 t 1 1 168358 581 0.00 2019-11-13 19:10:29 2019-11-13 19:33:37 t 1 1 168363 637 0.00 2019-11-13 19:34:18 2019-11-13 19:35:40 t 1 1 168365 562 0.00 2019-11-13 19:36:24 2019-11-13 19:36:53 t 1 1 168368 581 0.00 2019-11-13 19:37:22 2019-11-13 19:37:22 t 1 1 168369 578 0.00 2019-11-13 17:23:34 2019-11-13 19:38:08 t 1 1 168373 562 0.00 2019-11-13 19:39:18 2019-11-13 19:39:41 t 1 1 168375 570 0.00 2019-11-13 19:33:30 2019-11-13 19:42:12 t 1 1 168376 220 0.00 2019-11-13 19:14:59 2019-11-13 19:42:24 t 1 1 168378 587 0.00 2019-11-13 19:37:14 2019-11-13 19:42:46 t 1 1 168381 430 0.00 2019-11-13 19:30:19 2019-11-13 19:44:39 t 1 1 168383 412 0.00 2019-11-13 18:38:32 2019-11-13 19:45:50 t 1 1 168385 581 0.00 2019-11-13 19:37:26 2019-11-13 19:45:53 t 1 1 168388 516 0.00 2019-11-13 19:09:35 2019-11-13 19:47:00 t 1 1 168389 566 0.00 2019-11-13 19:38:51 2019-11-13 19:48:49 t 1 1 168393 623 0.00 2019-11-13 19:50:19 2019-11-13 19:50:28 t 1 1 168394 619 0.00 2019-11-13 19:38:18 2019-11-13 19:51:11 t 1 1 168399 623 0.00 2019-11-13 19:52:07 2019-11-13 19:52:30 t 1 1 168400 587 0.00 2019-11-13 19:52:22 2019-11-13 19:53:15 t 1 1 168407 220 0.00 2019-11-13 19:57:52 2019-11-13 19:58:26 t 1 1 168409 623 0.00 2019-11-13 19:57:03 2019-11-13 19:58:54 t 1 1 168411 637 0.00 2019-11-13 19:58:19 2019-11-13 19:59:30 t 1 1 168413 566 0.00 2019-11-13 19:55:58 2019-11-13 20:00:28 t 1 1 168423 422 0.00 2019-11-13 20:03:31 2019-11-13 20:05:29 t 1 1 168426 220 0.00 2019-11-13 20:06:12 2019-11-13 20:06:44 t 1 1 168431 220 0.00 2019-11-13 20:07:52 2019-11-13 20:08:32 t 1 1 168434 591 0.00 2019-11-13 19:58:51 2019-11-13 20:08:56 t 1 1 168435 220 0.00 2019-11-13 20:08:31 2019-11-13 20:09:03 t 1 1 168437 623 0.00 2019-11-13 20:08:16 2019-11-13 20:09:28 t 1 1 168439 481 0.00 2019-11-13 18:44:46 2019-11-13 20:09:41 t 1 1 168447 538 0.00 2019-11-13 20:10:33 2019-11-13 20:11:48 t 1 1 168448 220 0.00 2019-11-13 20:11:20 2019-11-13 20:11:55 t 1 1 168449 220 0.00 2019-11-13 20:11:55 2019-11-13 20:12:25 t 1 1 168451 220 0.00 2019-11-13 20:12:25 2019-11-13 20:13:00 t 1 1 168453 220 0.00 2019-11-13 20:13:30 2019-11-13 20:14:06 t 1 1 168455 220 0.00 2019-11-13 20:14:05 2019-11-13 20:14:37 t 1 1 168459 416 0.00 2019-11-13 20:01:45 2019-11-13 20:15:19 t 1 1 168463 514 0.00 2019-11-13 20:06:28 2019-11-13 20:15:58 t 1 1 168464 220 0.00 2019-11-13 20:15:45 2019-11-13 20:16:13 t 1 1 168466 220 0.00 2019-11-13 20:16:12 2019-11-13 20:16:19 t 1 1 168470 220 0.00 2019-11-13 20:16:47 2019-11-13 20:16:55 t 1 1 168472 220 0.00 2019-11-13 20:17:21 2019-11-13 20:17:26 t 1 1 168473 220 0.00 2019-11-13 20:17:26 2019-11-13 20:17:34 t 1 1 168476 220 0.00 2019-11-13 20:17:58 2019-11-13 20:18:01 t 1 1 168480 220 0.00 2019-11-13 20:18:38 2019-11-13 20:19:08 t 1 1 168482 623 0.00 2019-11-13 20:18:52 2019-11-13 20:19:10 t 1 1 168490 623 0.00 2019-11-13 20:20:39 2019-11-13 20:21:03 t 1 1 168491 220 0.00 2019-11-13 20:20:49 2019-11-13 20:21:28 t 1 1 168495 422 0.00 2019-11-13 20:21:32 2019-11-13 20:22:02 t 1 1 168497 538 0.00 2019-11-13 20:11:48 2019-11-13 20:22:19 t 1 1 168501 485 0.00 2019-11-13 20:08:18 2019-11-13 20:22:38 t 1 1 168505 611 0.00 2019-11-13 20:21:40 2019-11-13 20:23:12 t 1 1 168510 623 0.00 2019-11-13 20:23:40 2019-11-13 20:23:45 t 1 1 168512 220 0.00 2019-11-13 20:24:15 2019-11-13 20:24:20 t 1 1 168515 220 0.00 2019-11-13 20:24:50 2019-11-13 20:24:56 t 1 1 168516 623 0.00 2019-11-13 20:24:32 2019-11-13 20:24:58 t 1 1 168523 220 0.00 2019-11-13 20:25:30 2019-11-13 20:26:01 t 1 1 168525 570 0.00 2019-11-13 19:42:12 2019-11-13 20:26:16 t 1 1 168526 220 0.00 2019-11-13 20:26:05 2019-11-13 20:26:34 t 1 1 168527 220 0.00 2019-11-13 20:26:33 2019-11-13 20:26:41 t 1 1 168532 587 0.00 2019-11-13 20:26:33 2019-11-13 20:27:39 t 1 1 168535 412 0.00 2019-11-13 19:45:50 2019-11-13 20:28:07 t 1 1 168537 220 0.00 2019-11-13 20:28:25 2019-11-13 20:28:30 t 1 1 168538 220 0.00 2019-11-13 20:28:30 2019-11-13 20:28:56 t 1 1 168540 562 0.00 2019-11-13 20:26:46 2019-11-13 20:29:04 t 1 1 168543 220 0.00 2019-11-13 20:29:05 2019-11-13 20:29:40 t 1 1 168545 562 0.00 2019-11-13 20:29:21 2019-11-13 20:29:50 t 1 1 168548 422 0.00 2019-11-13 20:30:15 2019-11-13 20:30:32 t 1 1 168558 570 0.00 2019-11-13 20:26:16 2019-11-13 20:32:24 t 1 1 168247 220 0.00 2019-11-13 18:41:28 2019-11-13 18:42:02 t 1 1 168248 220 0.00 2019-11-13 18:42:01 2019-11-13 18:43:11 t 1 1 168250 220 0.00 2019-11-13 18:43:10 2019-11-13 18:43:44 t 1 1 168253 481 0.00 2019-11-13 17:49:11 2019-11-13 18:44:46 t 1 1 168257 220 0.00 2019-11-13 18:45:40 2019-11-13 18:46:17 t 1 1 168260 220 0.00 2019-11-13 18:46:49 2019-11-13 18:46:54 t 1 1 168261 589 0.00 2019-11-13 18:45:20 2019-11-13 18:47:03 t 1 1 168262 220 0.00 2019-11-13 18:46:53 2019-11-13 18:47:28 t 1 1 168263 220 0.00 2019-11-13 18:47:28 2019-11-13 18:48:01 t 1 1 168267 220 0.00 2019-11-13 18:49:03 2019-11-13 18:49:23 t 1 1 168270 220 0.00 2019-11-13 18:49:41 2019-11-13 18:49:55 t 1 1 168271 562 0.00 2019-11-13 18:51:36 2019-11-13 18:51:51 t 1 1 168273 445 0.00 2019-11-13 18:40:50 2019-11-13 18:52:33 t 1 1 168275 623 0.00 2019-11-13 18:49:00 2019-11-13 18:54:58 t 1 1 168278 220 0.00 2019-11-13 18:49:55 2019-11-13 18:57:14 t 1 1 168284 623 0.00 2019-11-13 18:58:21 2019-11-13 18:58:31 t 1 1 168286 623 0.00 2019-11-13 18:57:38 2019-11-13 18:59:31 t 1 1 168288 445 0.00 2019-11-13 18:57:25 2019-11-13 19:01:53 t 1 1 168289 623 0.00 2019-11-13 19:02:31 2019-11-13 19:02:34 t 1 1 168296 599 0.00 2019-11-13 19:03:32 2019-11-13 19:04:51 t 1 1 168297 615 0.00 2019-11-13 18:58:52 2019-11-13 19:05:08 t 1 1 168299 562 0.00 2019-11-13 19:03:51 2019-11-13 19:05:31 t 1 1 168302 623 0.00 2019-11-13 19:07:35 2019-11-13 19:07:36 t 1 1 168303 220 0.00 2019-11-13 19:03:49 2019-11-13 19:08:26 t 1 1 168309 585 0.00 2019-11-13 18:54:37 2019-11-13 19:11:33 t 1 1 168310 220 0.00 2019-11-13 19:08:59 2019-11-13 19:11:58 t 1 1 168311 220 0.00 2019-11-13 19:11:57 2019-11-13 19:12:34 t 1 1 168313 220 0.00 2019-11-13 19:12:34 2019-11-13 19:13:08 t 1 1 168316 220 0.00 2019-11-13 19:13:07 2019-11-13 19:13:42 t 1 1 168317 422 0.00 2019-11-13 19:13:58 2019-11-13 19:14:05 t 1 1 168319 585 0.00 2019-11-13 19:11:33 2019-11-13 19:14:08 t 1 1 168321 591 0.00 2019-11-13 19:10:30 2019-11-13 19:14:39 t 1 1 168325 623 0.00 2019-11-13 19:17:02 2019-11-13 19:17:12 t 1 1 168327 589 0.00 2019-11-13 18:49:38 2019-11-13 19:17:42 t 1 1 168329 566 0.00 2019-11-13 19:13:25 2019-11-13 19:18:21 t 1 1 168331 593 0.00 2019-11-13 19:03:50 2019-11-13 19:20:13 t 1 1 168335 637 0.00 2019-11-13 19:02:32 2019-11-13 19:22:34 t 1 1 168338 422 0.00 2019-11-13 19:22:16 2019-11-13 19:23:20 t 1 1 168340 623 0.00 2019-11-13 19:22:46 2019-11-13 19:24:04 t 1 1 168342 623 0.00 2019-11-13 19:24:10 2019-11-13 19:25:31 t 1 1 168344 623 0.00 2019-11-13 19:25:48 2019-11-13 19:25:49 t 1 1 168351 430 0.00 2019-11-13 19:05:21 2019-11-13 19:30:19 t 1 1 168352 422 0.00 2019-11-13 19:30:22 2019-11-13 19:30:45 t 1 1 168353 637 0.00 2019-11-13 19:22:34 2019-11-13 19:31:06 t 1 1 168356 562 0.00 2019-11-13 19:32:00 2019-11-13 19:33:11 t 1 1 168357 570 0.00 2019-11-13 19:08:52 2019-11-13 19:33:35 t 1 1 168362 623 0.00 2019-11-13 19:35:00 2019-11-13 19:35:11 t 1 1 168364 587 0.00 2019-11-13 19:33:22 2019-11-13 19:36:53 t 1 1 168366 623 0.00 2019-11-13 19:36:48 2019-11-13 19:37:11 t 1 1 168370 593 0.00 2019-11-13 19:20:12 2019-11-13 19:38:21 t 1 1 168371 623 0.00 2019-11-13 19:39:03 2019-11-13 19:39:11 t 1 1 168372 422 0.00 2019-11-13 19:38:21 2019-11-13 19:39:28 t 1 1 168377 220 0.00 2019-11-13 19:42:23 2019-11-13 19:42:33 t 1 1 168382 623 0.00 2019-11-13 19:44:24 2019-11-13 19:44:52 t 1 1 168384 562 0.00 2019-11-13 19:45:30 2019-11-13 19:45:50 t 1 1 168386 587 0.00 2019-11-13 19:42:46 2019-11-13 19:46:54 t 1 1 168387 422 0.00 2019-11-13 19:42:30 2019-11-13 19:46:59 t 1 1 168391 562 0.00 2019-11-13 19:49:33 2019-11-13 19:50:16 t 1 1 168392 422 0.00 2019-11-13 19:50:20 2019-11-13 19:50:27 t 1 1 168397 422 0.00 2019-11-13 19:51:29 2019-11-13 19:51:51 t 1 1 168402 422 0.00 2019-11-13 19:53:21 2019-11-13 19:54:31 t 1 1 168403 623 0.00 2019-11-13 19:55:25 2019-11-13 19:55:28 t 1 1 168404 566 0.00 2019-11-13 19:48:49 2019-11-13 19:55:58 t 1 1 168406 220 0.00 2019-11-13 19:42:58 2019-11-13 19:57:54 t 1 1 168412 658 0.00 2019-11-13 20:00:02 2019-11-13 20:00:16 t 1 1 168414 587 0.00 2019-11-13 19:55:05 2019-11-13 20:01:16 t 1 1 168418 637 0.00 2019-11-13 20:01:35 2019-11-13 20:02:36 t 1 1 168419 430 0.00 2019-11-13 19:44:39 2019-11-13 20:03:05 t 1 1 168421 581 0.00 2019-11-13 19:52:04 2019-11-13 20:03:11 t 1 1 168422 220 0.00 2019-11-13 19:58:26 2019-11-13 20:05:07 t 1 1 168424 220 0.00 2019-11-13 20:05:07 2019-11-13 20:05:37 t 1 1 168425 220 0.00 2019-11-13 20:05:37 2019-11-13 20:06:12 t 1 1 168429 483 0.00 2019-11-13 15:53:56 2019-11-13 20:07:54 t 1 1 168430 623 0.00 2019-11-13 19:59:25 2019-11-13 20:08:16 t 1 1 168433 430 0.00 2019-11-13 20:03:05 2019-11-13 20:08:43 t 1 1 168438 220 0.00 2019-11-13 20:09:02 2019-11-13 20:09:38 t 1 1 168440 585 0.00 2019-11-13 20:03:01 2019-11-13 20:10:03 t 1 1 168444 623 0.00 2019-11-13 20:10:38 2019-11-13 20:10:47 t 1 1 168445 220 0.00 2019-11-13 20:10:45 2019-11-13 20:11:20 t 1 1 168452 220 0.00 2019-11-13 20:12:59 2019-11-13 20:13:31 t 1 1 168457 220 0.00 2019-11-13 20:14:37 2019-11-13 20:15:03 t 1 1 168458 220 0.00 2019-11-13 20:15:03 2019-11-13 20:15:12 t 1 1 168460 422 0.00 2019-11-13 20:15:10 2019-11-13 20:15:23 t 1 1 168461 220 0.00 2019-11-13 20:15:11 2019-11-13 20:15:38 t 1 1 168468 611 0.00 2019-11-13 20:15:25 2019-11-13 20:16:44 t 1 1 168477 220 0.00 2019-11-13 20:18:01 2019-11-13 20:18:33 t 1 1 168479 623 0.00 2019-11-13 20:12:57 2019-11-13 20:18:45 t 1 1 168481 587 0.00 2019-11-13 20:09:27 2019-11-13 20:19:09 t 1 1 168483 220 0.00 2019-11-13 20:19:07 2019-11-13 20:19:15 t 1 1 168485 645 0.00 2019-11-13 20:11:34 2019-11-13 20:19:46 t 1 1 168487 220 0.00 2019-11-13 20:19:49 2019-11-13 20:20:15 t 1 1 168492 611 0.00 2019-11-13 20:17:30 2019-11-13 20:21:34 t 1 1 168494 220 0.00 2019-11-13 20:21:26 2019-11-13 20:22:00 t 1 1 168496 220 0.00 2019-11-13 20:21:59 2019-11-13 20:22:16 t 1 1 168499 566 0.00 2019-11-13 20:00:28 2019-11-13 20:22:22 t 1 1 168500 220 0.00 2019-11-13 20:22:16 2019-11-13 20:22:36 t 1 1 168502 587 0.00 2019-11-13 20:19:09 2019-11-13 20:22:43 t 1 1 168504 220 0.00 2019-11-13 20:22:48 2019-11-13 20:23:09 t 1 1 168506 485 0.00 2019-11-13 20:22:38 2019-11-13 20:23:21 t 1 1 168508 587 0.00 2019-11-13 20:22:58 2019-11-13 20:23:37 t 1 1 168509 220 0.00 2019-11-13 20:23:22 2019-11-13 20:23:41 t 1 1 168513 485 0.00 2019-11-13 20:23:21 2019-11-13 20:24:36 t 1 1 168517 520 0.00 2019-11-13 19:53:36 2019-11-13 20:25:02 t 1 1 168519 619 0.00 2019-11-13 20:07:38 2019-11-13 20:25:28 t 1 1 168521 637 0.00 2019-11-13 20:07:55 2019-11-13 20:25:56 t 1 1 168522 587 0.00 2019-11-13 20:24:07 2019-11-13 20:26:00 t 1 1 168524 220 0.00 2019-11-13 20:26:00 2019-11-13 20:26:05 t 1 1 168530 623 0.00 2019-11-13 20:27:10 2019-11-13 20:27:17 t 1 1 168533 220 0.00 2019-11-13 20:27:15 2019-11-13 20:27:45 t 1 1 168541 220 0.00 2019-11-13 20:28:56 2019-11-13 20:29:06 t 1 1 168544 220 0.00 2019-11-13 20:29:40 2019-11-13 20:29:46 t 1 1 168546 220 0.00 2019-11-13 20:29:46 2019-11-13 20:30:12 t 1 1 168547 220 0.00 2019-11-13 20:30:11 2019-11-13 20:30:17 t 1 1 168549 220 0.00 2019-11-13 20:30:17 2019-11-13 20:30:53 t 1 1 168550 220 0.00 2019-11-13 20:30:53 2019-11-13 20:31:07 t 1 1 168552 481 0.00 2019-11-13 20:09:41 2019-11-13 20:31:38 t 1 1 168553 220 0.00 2019-11-13 20:31:23 2019-11-13 20:31:39 t 1 1 168554 637 0.00 2019-11-13 20:26:38 2019-11-13 20:31:48 t 1 1 168556 611 0.00 2019-11-13 20:23:49 2019-11-13 20:32:09 t 1 1 168563 220 0.00 2019-11-13 20:32:43 2019-11-13 20:33:16 t 1 1 168569 220 0.00 2019-11-13 20:34:56 2019-11-13 20:35:20 t 1 1 168578 520 0.00 2019-11-13 20:25:02 2019-11-13 20:37:44 t 1 1 168587 623 0.00 2019-11-13 20:40:27 2019-11-13 20:40:55 t 1 1 168588 220 0.00 2019-11-13 20:40:35 2019-11-13 20:41:11 t 1 1 168593 220 0.00 2019-11-13 20:41:11 2019-11-13 20:41:46 t 1 1 168599 220 0.00 2019-11-13 20:42:52 2019-11-13 20:43:28 t 1 1 168601 220 0.00 2019-11-13 20:44:00 2019-11-13 20:44:33 t 1 1 168602 562 0.00 2019-11-13 20:41:27 2019-11-13 20:44:59 t 1 1 168604 422 0.00 2019-11-13 20:40:43 2019-11-13 20:45:07 t 1 1 168612 422 0.00 2019-11-13 20:46:51 2019-11-13 20:47:28 t 1 1 168618 422 0.00 2019-11-13 20:48:38 2019-11-13 20:48:55 t 1 1 168621 220 0.00 2019-11-13 20:48:46 2019-11-13 20:50:47 t 1 1 168627 422 0.00 2019-11-13 20:51:28 2019-11-13 20:52:16 t 1 1 168628 220 0.00 2019-11-13 20:51:57 2019-11-13 20:52:32 t 1 1 168630 422 0.00 2019-11-13 20:52:22 2019-11-13 20:53:06 t 1 1 168632 623 0.00 2019-11-13 20:53:10 2019-11-13 20:53:18 t 1 1 168633 220 0.00 2019-11-13 20:52:31 2019-11-13 20:53:19 t 1 1 168634 220 0.00 2019-11-13 20:53:18 2019-11-13 20:53:54 t 1 1 168635 422 0.00 2019-11-13 20:54:00 2019-11-13 20:54:19 t 1 1 168639 656 0.00 2019-11-13 20:41:24 2019-11-13 20:55:07 t 1 1 168642 562 0.00 2019-11-13 20:53:37 2019-11-13 20:56:24 t 1 1 168645 220 0.00 2019-11-13 20:56:45 2019-11-13 20:57:19 t 1 1 168649 220 0.00 2019-11-13 20:57:19 2019-11-13 20:57:51 t 1 1 168650 623 0.00 2019-11-13 20:58:16 2019-11-13 20:58:17 t 1 1 168652 220 0.00 2019-11-13 20:57:51 2019-11-13 20:58:22 t 1 1 168654 514 0.00 2019-11-13 20:39:33 2019-11-13 20:58:44 t 1 1 168657 220 0.00 2019-11-13 20:58:21 2019-11-13 20:58:56 t 1 1 168658 656 0.00 2019-11-13 20:55:07 2019-11-13 20:59:01 t 1 1 168659 220 0.00 2019-11-13 20:58:56 2019-11-13 20:59:29 t 1 1 168662 623 0.00 2019-11-13 21:00:01 2019-11-13 21:00:06 t 1 1 168666 520 0.00 2019-11-13 21:03:37 2019-11-13 21:04:49 t 1 1 168676 637 0.00 2019-11-13 20:32:40 2019-11-13 21:10:12 t 1 1 168682 619 0.00 2019-11-13 21:06:34 2019-11-13 21:14:41 t 1 1 168685 593 0.00 2019-11-13 21:09:43 2019-11-13 21:15:25 t 1 1 168687 220 0.00 2019-11-13 20:38:34 2019-11-13 21:16:32 t 1 1 168689 422 0.00 2019-11-13 21:09:04 2019-11-13 21:16:45 t 1 1 168690 510 0.00 2019-11-13 20:43:37 2019-11-13 21:17:01 t 1 1 168693 220 0.00 2019-11-13 21:20:39 2019-11-13 21:20:51 t 1 1 168694 623 0.00 2019-11-13 21:21:05 2019-11-13 21:21:11 t 1 1 168695 623 0.00 2019-11-13 21:21:23 2019-11-13 21:21:46 t 1 1 168698 619 0.00 2019-11-13 21:19:45 2019-11-13 21:22:55 t 1 1 168704 623 0.00 2019-11-13 21:24:13 2019-11-13 21:24:16 t 1 1 168708 597 0.00 2019-11-13 21:19:13 2019-11-13 21:25:18 t 1 1 168712 220 0.00 2019-11-13 21:25:42 2019-11-13 21:25:53 t 1 1 168713 220 0.00 2019-11-13 21:25:53 2019-11-13 21:26:07 t 1 1 168714 220 0.00 2019-11-13 21:26:06 2019-11-13 21:26:16 t 1 1 168716 585 0.00 2019-11-13 21:21:20 2019-11-13 21:26:31 t 1 1 168719 220 0.00 2019-11-13 21:26:39 2019-11-13 21:26:53 t 1 1 168720 220 0.00 2019-11-13 21:26:52 2019-11-13 21:27:02 t 1 1 168723 623 0.00 2019-11-13 21:27:51 2019-11-13 21:28:01 t 1 1 168727 514 0.00 2019-11-13 20:58:44 2019-11-13 21:28:45 t 1 1 168730 220 0.00 2019-11-13 21:28:51 2019-11-13 21:30:21 t 1 1 168734 633 0.00 2019-11-13 21:28:24 2019-11-13 21:31:27 t 1 1 168736 220 0.00 2019-11-13 21:31:15 2019-11-13 21:31:48 t 1 1 168737 220 0.00 2019-11-13 21:15:12 2019-11-13 21:32:07 t 1 1 168738 220 0.00 2019-11-13 21:32:07 2019-11-13 21:32:23 t 1 1 168740 623 0.00 2019-11-13 21:33:01 2019-11-13 21:33:04 t 1 1 168741 220 0.00 2019-11-13 21:32:57 2019-11-13 21:34:01 t 1 1 168754 220 0.00 2019-11-13 21:39:13 2019-11-13 21:40:26 t 1 1 168761 430 0.00 2019-11-13 20:55:31 2019-11-13 21:43:54 t 1 1 168763 627 0.00 2019-11-13 21:44:23 2019-11-13 21:44:40 t 1 1 168769 627 0.00 2019-11-13 21:46:27 2019-11-13 21:46:46 t 1 1 168774 220 0.00 2019-11-13 21:47:08 2019-11-13 21:47:44 t 1 1 168777 627 0.00 2019-11-13 21:48:14 2019-11-13 21:48:29 t 1 1 168778 220 0.00 2019-11-13 21:47:43 2019-11-13 21:48:45 t 1 1 168780 623 0.00 2019-11-13 21:47:22 2019-11-13 21:49:15 t 1 1 168785 544 0.00 2019-11-13 21:18:37 2019-11-13 21:50:47 t 1 1 168787 566 0.00 2019-11-13 21:42:38 2019-11-13 21:50:55 t 1 1 168789 562 0.00 2019-11-13 21:22:27 2019-11-13 21:51:37 t 1 1 168791 430 0.00 2019-11-13 21:45:14 2019-11-13 21:51:48 t 1 1 168799 623 0.00 2019-11-13 21:55:01 2019-11-13 21:55:04 t 1 1 168805 623 0.00 2019-11-13 21:58:36 2019-11-13 21:58:45 t 1 1 168808 430 0.00 2019-11-13 21:59:17 2019-11-13 21:59:54 t 1 1 168817 623 0.00 2019-11-13 22:04:21 2019-11-13 22:04:22 t 1 1 168822 623 0.00 2019-11-13 22:05:20 2019-11-13 22:05:27 t 1 1 168826 220 0.00 2019-11-13 22:05:24 2019-11-13 22:05:57 t 1 1 168828 220 0.00 2019-11-13 22:05:57 2019-11-13 22:06:32 t 1 1 168832 456 0.00 2019-11-13 22:05:00 2019-11-13 22:07:12 t 1 1 168833 623 0.00 2019-11-13 22:08:53 2019-11-13 22:08:56 t 1 1 168834 566 0.00 2019-11-13 22:05:44 2019-11-13 22:09:53 t 1 1 168838 619 0.00 2019-11-13 22:05:42 2019-11-13 22:12:39 t 1 1 168839 220 0.00 2019-11-13 22:10:45 2019-11-13 22:13:27 t 1 1 168841 623 0.00 2019-11-13 22:14:36 2019-11-13 22:14:45 t 1 1 168854 645 0.00 2019-11-13 22:16:24 2019-11-13 22:21:15 t 1 1 168860 520 0.00 2019-11-13 22:10:48 2019-11-13 22:23:13 t 1 1 168862 623 0.00 2019-11-13 22:22:27 2019-11-13 22:23:39 t 1 1 168863 623 0.00 2019-11-13 22:23:48 2019-11-13 22:23:58 t 1 1 168867 220 0.00 2019-11-13 22:25:04 2019-11-13 22:25:41 t 1 1 168868 623 0.00 2019-11-13 22:24:46 2019-11-13 22:27:13 t 1 1 168872 566 0.00 2019-11-13 22:23:35 2019-11-13 22:29:29 t 1 1 168874 485 0.00 2019-11-13 22:18:12 2019-11-13 22:30:04 t 1 1 168875 562 0.00 2019-11-13 22:21:47 2019-11-13 22:30:09 t 1 1 168877 623 0.00 2019-11-13 22:30:28 2019-11-13 22:30:29 t 1 1 168881 422 0.00 2019-11-13 22:31:14 2019-11-13 22:31:41 t 1 1 168560 637 0.00 2019-11-13 20:31:47 2019-11-13 20:32:40 t 1 1 168564 633 0.00 2019-11-13 20:24:12 2019-11-13 20:33:31 t 1 1 168565 562 0.00 2019-11-13 20:32:52 2019-11-13 20:33:52 t 1 1 168568 220 0.00 2019-11-13 20:34:24 2019-11-13 20:34:56 t 1 1 168571 562 0.00 2019-11-13 20:35:09 2019-11-13 20:35:48 t 1 1 168572 220 0.00 2019-11-13 20:35:29 2019-11-13 20:36:10 t 1 1 168574 220 0.00 2019-11-13 20:36:09 2019-11-13 20:36:43 t 1 1 168579 562 0.00 2019-11-13 20:37:21 2019-11-13 20:37:45 t 1 1 168580 220 0.00 2019-11-13 20:37:22 2019-11-13 20:37:58 t 1 1 168581 623 0.00 2019-11-13 20:30:11 2019-11-13 20:39:14 t 1 1 168582 220 0.00 2019-11-13 20:37:57 2019-11-13 20:39:27 t 1 1 168586 633 0.00 2019-11-13 20:33:31 2019-11-13 20:40:48 t 1 1 168589 623 0.00 2019-11-13 20:39:27 2019-11-13 20:41:15 t 1 1 168591 562 0.00 2019-11-13 20:39:39 2019-11-13 20:41:22 t 1 1 168596 623 0.00 2019-11-13 20:42:25 2019-11-13 20:42:30 t 1 1 168598 587 0.00 2019-11-13 20:32:41 2019-11-13 20:43:05 t 1 1 168600 220 0.00 2019-11-13 20:43:27 2019-11-13 20:44:00 t 1 1 168603 633 0.00 2019-11-13 20:40:48 2019-11-13 20:45:02 t 1 1 168607 562 0.00 2019-11-13 20:45:05 2019-11-13 20:46:01 t 1 1 168609 220 0.00 2019-11-13 20:45:49 2019-11-13 20:46:24 t 1 1 168614 619 0.00 2019-11-13 20:42:43 2019-11-13 20:48:02 t 1 1 168619 512 0.00 2019-11-13 20:42:45 2019-11-13 20:49:44 t 1 1 168622 422 0.00 2019-11-13 20:50:27 2019-11-13 20:50:54 t 1 1 168623 220 0.00 2019-11-13 20:50:47 2019-11-13 20:51:22 t 1 1 168624 623 0.00 2019-11-13 20:51:29 2019-11-13 20:51:37 t 1 1 168625 220 0.00 2019-11-13 20:51:22 2019-11-13 20:51:57 t 1 1 168629 619 0.00 2019-11-13 20:49:00 2019-11-13 20:52:51 t 1 1 168637 220 0.00 2019-11-13 20:54:28 2019-11-13 20:55:02 t 1 1 168640 220 0.00 2019-11-13 20:55:02 2019-11-13 20:55:37 t 1 1 168643 591 0.00 2019-11-13 20:24:12 2019-11-13 20:56:34 t 1 1 168646 597 0.00 2019-11-13 20:49:14 2019-11-13 20:57:32 t 1 1 168648 587 0.00 2019-11-13 20:53:18 2019-11-13 20:57:49 t 1 1 168651 585 0.00 2019-11-13 20:45:30 2019-11-13 20:58:21 t 1 1 168660 623 0.00 2019-11-13 20:59:23 2019-11-13 20:59:35 t 1 1 168663 656 0.00 2019-11-13 20:59:01 2019-11-13 21:00:40 t 1 1 168665 591 0.00 2019-11-13 20:56:34 2019-11-13 21:03:03 t 1 1 168667 623 0.00 2019-11-13 21:05:11 2019-11-13 21:05:12 t 1 1 168668 623 0.00 2019-11-13 21:07:41 2019-11-13 21:07:50 t 1 1 168669 422 0.00 2019-11-13 21:03:52 2019-11-13 21:08:40 t 1 1 168674 593 0.00 2019-11-13 20:58:55 2019-11-13 21:09:43 t 1 1 168679 220 0.00 2019-11-13 21:11:45 2019-11-13 21:12:18 t 1 1 168680 623 0.00 2019-11-13 21:12:38 2019-11-13 21:12:47 t 1 1 168683 520 0.00 2019-11-13 21:04:49 2019-11-13 21:14:48 t 1 1 168684 220 0.00 2019-11-13 21:12:21 2019-11-13 21:15:09 t 1 1 168686 656 0.00 2019-11-13 21:11:49 2019-11-13 21:16:17 t 1 1 168688 633 0.00 2019-11-13 21:09:41 2019-11-13 21:16:35 t 1 1 168692 220 0.00 2019-11-13 21:16:29 2019-11-13 21:20:40 t 1 1 168696 562 0.00 2019-11-13 20:56:38 2019-11-13 21:22:28 t 1 1 168699 633 0.00 2019-11-13 21:16:35 2019-11-13 21:22:55 t 1 1 168700 623 0.00 2019-11-13 21:21:59 2019-11-13 21:23:00 t 1 1 168703 566 0.00 2019-11-13 21:08:44 2019-11-13 21:24:13 t 1 1 168705 566 0.00 2019-11-13 21:24:13 2019-11-13 21:24:21 t 1 1 168707 220 0.00 2019-11-13 21:20:51 2019-11-13 21:25:08 t 1 1 168710 220 0.00 2019-11-13 21:25:21 2019-11-13 21:25:31 t 1 1 168711 220 0.00 2019-11-13 21:25:31 2019-11-13 21:25:43 t 1 1 168717 422 0.00 2019-11-13 21:16:45 2019-11-13 21:26:39 t 1 1 168718 220 0.00 2019-11-13 21:26:29 2019-11-13 21:26:40 t 1 1 168722 220 0.00 2019-11-13 21:27:17 2019-11-13 21:27:49 t 1 1 168724 220 0.00 2019-11-13 21:27:48 2019-11-13 21:28:01 t 1 1 168735 422 0.00 2019-11-13 21:26:39 2019-11-13 21:31:43 t 1 1 168739 220 0.00 2019-11-13 21:32:23 2019-11-13 21:32:57 t 1 1 168744 220 0.00 2019-11-13 21:34:35 2019-11-13 21:35:30 t 1 1 168746 220 0.00 2019-11-13 21:35:29 2019-11-13 21:36:12 t 1 1 168750 220 0.00 2019-11-13 21:36:11 2019-11-13 21:38:37 t 1 1 168751 220 0.00 2019-11-13 21:38:37 2019-11-13 21:39:13 t 1 1 168753 623 0.00 2019-11-13 21:39:38 2019-11-13 21:39:47 t 1 1 168755 220 0.00 2019-11-13 21:40:26 2019-11-13 21:41:02 t 1 1 168757 220 0.00 2019-11-13 21:41:02 2019-11-13 21:41:43 t 1 1 168758 220 0.00 2019-11-13 21:41:42 2019-11-13 21:42:17 t 1 1 168764 430 0.00 2019-11-13 21:44:01 2019-11-13 21:45:07 t 1 1 168765 623 0.00 2019-11-13 21:44:27 2019-11-13 21:45:18 t 1 1 168767 220 0.00 2019-11-13 21:42:17 2019-11-13 21:45:56 t 1 1 168770 581 0.00 2019-11-13 21:29:09 2019-11-13 21:46:51 t 1 1 168771 220 0.00 2019-11-13 21:46:31 2019-11-13 21:47:08 t 1 1 168772 627 0.00 2019-11-13 21:47:12 2019-11-13 21:47:25 t 1 1 168773 422 0.00 2019-11-13 21:32:17 2019-11-13 21:47:38 t 1 1 168776 623 0.00 2019-11-13 21:47:30 2019-11-13 21:47:58 t 1 1 168779 627 0.00 2019-11-13 21:48:34 2019-11-13 21:48:53 t 1 1 168788 422 0.00 2019-11-13 21:47:48 2019-11-13 21:51:32 t 1 1 168790 623 0.00 2019-11-13 21:50:11 2019-11-13 21:51:37 t 1 1 168792 220 0.00 2019-11-13 21:50:52 2019-11-13 21:52:30 t 1 1 168794 510 0.00 2019-11-13 21:17:01 2019-11-13 21:52:57 t 1 1 168796 645 0.00 2019-11-13 21:50:43 2019-11-13 21:53:25 t 1 1 168797 623 0.00 2019-11-13 21:54:30 2019-11-13 21:54:35 t 1 1 168800 637 0.00 2019-11-13 21:45:17 2019-11-13 21:55:13 t 1 1 168801 220 0.00 2019-11-13 21:53:03 2019-11-13 21:55:50 t 1 1 168802 220 0.00 2019-11-13 21:55:49 2019-11-13 21:56:25 t 1 1 168803 645 0.00 2019-11-13 21:53:25 2019-11-13 21:57:30 t 1 1 168804 562 0.00 2019-11-13 21:51:48 2019-11-13 21:58:23 t 1 1 168807 566 0.00 2019-11-13 21:50:55 2019-11-13 21:59:36 t 1 1 168809 430 0.00 2019-11-13 21:59:59 2019-11-13 22:00:01 t 1 1 168811 220 0.00 2019-11-13 21:56:25 2019-11-13 22:00:11 t 1 1 168812 220 0.00 2019-11-13 22:00:11 2019-11-13 22:00:46 t 1 1 168813 430 0.00 2019-11-13 22:01:01 2019-11-13 22:01:07 t 1 1 168816 430 0.00 2019-11-13 22:04:20 2019-11-13 22:04:20 f 1 1 168819 430 0.00 2019-11-13 22:03:37 2019-11-13 22:05:16 t 1 1 168823 623 0.00 2019-11-13 22:05:35 2019-11-13 22:05:43 t 1 1 168825 412 0.00 2019-11-13 20:41:58 2019-11-13 22:05:54 t 1 1 168827 623 0.00 2019-11-13 22:05:56 2019-11-13 22:05:59 t 1 1 168829 597 0.00 2019-11-13 22:03:51 2019-11-13 22:06:35 t 1 1 168836 220 0.00 2019-11-13 22:10:14 2019-11-13 22:10:45 t 1 1 168840 220 0.00 2019-11-13 22:13:26 2019-11-13 22:14:02 t 1 1 168842 623 0.00 2019-11-13 22:14:01 2019-11-13 22:14:58 t 1 1 168844 627 0.00 2019-11-13 21:50:39 2019-11-13 22:15:25 t 1 1 168845 566 0.00 2019-11-13 22:09:53 2019-11-13 22:16:17 t 1 1 168847 587 0.00 2019-11-13 22:15:14 2019-11-13 22:17:52 t 1 1 168849 220 0.00 2019-11-13 22:18:21 2019-11-13 22:18:56 t 1 1 168594 412 0.00 2019-11-13 20:28:07 2019-11-13 20:41:58 t 1 1 168595 220 0.00 2019-11-13 20:41:45 2019-11-13 20:42:21 t 1 1 168597 220 0.00 2019-11-13 20:42:21 2019-11-13 20:42:52 t 1 1 168605 220 0.00 2019-11-13 20:44:33 2019-11-13 20:45:08 t 1 1 168606 220 0.00 2019-11-13 20:45:08 2019-11-13 20:45:50 t 1 1 168608 581 0.00 2019-11-13 20:26:30 2019-11-13 20:46:02 t 1 1 168610 593 0.00 2019-11-13 20:07:17 2019-11-13 20:46:46 t 1 1 168611 220 0.00 2019-11-13 20:46:24 2019-11-13 20:47:01 t 1 1 168613 220 0.00 2019-11-13 20:47:01 2019-11-13 20:47:36 t 1 1 168615 566 0.00 2019-11-13 20:41:15 2019-11-13 20:48:03 t 1 1 168616 220 0.00 2019-11-13 20:47:36 2019-11-13 20:48:12 t 1 1 168617 220 0.00 2019-11-13 20:48:12 2019-11-13 20:48:47 t 1 1 168620 623 0.00 2019-11-13 20:50:13 2019-11-13 20:50:24 t 1 1 168626 623 0.00 2019-11-13 20:50:36 2019-11-13 20:52:15 t 1 1 168631 562 0.00 2019-11-13 20:46:54 2019-11-13 20:53:11 t 1 1 168636 220 0.00 2019-11-13 20:53:53 2019-11-13 20:54:28 t 1 1 168638 422 0.00 2019-11-13 20:54:31 2019-11-13 20:55:04 t 1 1 168641 220 0.00 2019-11-13 20:55:37 2019-11-13 20:56:10 t 1 1 168644 220 0.00 2019-11-13 20:56:09 2019-11-13 20:56:45 t 1 1 168647 566 0.00 2019-11-13 20:48:03 2019-11-13 20:57:35 t 1 1 168653 422 0.00 2019-11-13 20:56:51 2019-11-13 20:58:33 t 1 1 168655 593 0.00 2019-11-13 20:46:46 2019-11-13 20:58:55 t 1 1 168656 623 0.00 2019-11-13 20:58:29 2019-11-13 20:58:56 t 1 1 168661 516 0.00 2019-11-13 20:56:01 2019-11-13 20:59:49 t 1 1 168664 422 0.00 2019-11-13 21:01:37 2019-11-13 21:02:22 t 1 1 168670 566 0.00 2019-11-13 20:57:35 2019-11-13 21:08:44 t 1 1 168671 623 0.00 2019-11-13 21:08:26 2019-11-13 21:08:57 t 1 1 168672 481 0.00 2019-11-13 20:31:38 2019-11-13 21:09:08 t 1 1 168673 597 0.00 2019-11-13 21:07:40 2019-11-13 21:09:36 t 1 1 168675 516 0.00 2019-11-13 21:08:54 2019-11-13 21:10:03 t 1 1 168677 220 0.00 2019-11-13 20:59:29 2019-11-13 21:11:42 t 1 1 168678 597 0.00 2019-11-13 21:09:35 2019-11-13 21:11:50 t 1 1 168681 623 0.00 2019-11-13 21:13:21 2019-11-13 21:14:32 t 1 1 168691 623 0.00 2019-11-13 21:19:12 2019-11-13 21:19:15 t 1 1 168697 645 0.00 2019-11-13 21:17:22 2019-11-13 21:22:45 t 1 1 168701 635 0.00 2019-11-13 21:16:14 2019-11-13 21:23:34 t 1 1 168702 623 0.00 2019-11-13 21:23:57 2019-11-13 21:24:00 t 1 1 168706 593 0.00 2019-11-13 21:15:25 2019-11-13 21:24:36 t 1 1 168709 220 0.00 2019-11-13 21:25:08 2019-11-13 21:25:21 t 1 1 168715 220 0.00 2019-11-13 21:26:16 2019-11-13 21:26:30 t 1 1 168721 220 0.00 2019-11-13 21:27:02 2019-11-13 21:27:18 t 1 1 168725 633 0.00 2019-11-13 21:22:55 2019-11-13 21:28:24 t 1 1 168726 220 0.00 2019-11-13 21:28:00 2019-11-13 21:28:38 t 1 1 168728 220 0.00 2019-11-13 21:28:38 2019-11-13 21:28:52 t 1 1 168729 597 0.00 2019-11-13 21:26:14 2019-11-13 21:29:36 t 1 1 168731 220 0.00 2019-11-13 21:30:21 2019-11-13 21:30:34 t 1 1 168732 220 0.00 2019-11-13 21:30:34 2019-11-13 21:31:00 t 1 1 168733 220 0.00 2019-11-13 21:31:00 2019-11-13 21:31:16 t 1 1 168742 220 0.00 2019-11-13 21:34:01 2019-11-13 21:34:35 t 1 1 168743 593 0.00 2019-11-13 21:24:36 2019-11-13 21:35:28 t 1 1 168745 566 0.00 2019-11-13 21:25:32 2019-11-13 21:35:50 t 1 1 168747 656 0.00 2019-11-13 21:27:56 2019-11-13 21:36:41 t 1 1 168748 623 0.00 2019-11-13 21:37:05 2019-11-13 21:37:15 t 1 1 168749 623 0.00 2019-11-13 21:38:08 2019-11-13 21:38:09 t 1 1 168752 627 0.00 2019-11-13 21:36:03 2019-11-13 21:39:31 t 1 1 168756 623 0.00 2019-11-13 21:40:49 2019-11-13 21:41:08 t 1 1 168759 566 0.00 2019-11-13 21:35:50 2019-11-13 21:42:38 t 1 1 168760 627 0.00 2019-11-13 21:40:19 2019-11-13 21:43:45 t 1 1 168762 637 0.00 2019-11-13 21:31:02 2019-11-13 21:44:00 t 1 1 168766 627 0.00 2019-11-13 21:45:06 2019-11-13 21:45:41 t 1 1 168768 220 0.00 2019-11-13 21:45:55 2019-11-13 21:46:32 t 1 1 168775 627 0.00 2019-11-13 21:47:32 2019-11-13 21:47:50 t 1 1 168781 220 0.00 2019-11-13 21:48:44 2019-11-13 21:49:20 t 1 1 168782 627 0.00 2019-11-13 21:49:35 2019-11-13 21:49:51 t 1 1 168783 623 0.00 2019-11-13 21:49:51 2019-11-13 21:49:58 t 1 1 168784 220 0.00 2019-11-13 21:49:19 2019-11-13 21:50:20 t 1 1 168786 220 0.00 2019-11-13 21:50:19 2019-11-13 21:50:52 t 1 1 168793 430 0.00 2019-11-13 21:51:55 2019-11-13 21:52:39 t 1 1 168795 220 0.00 2019-11-13 21:52:29 2019-11-13 21:53:04 t 1 1 168798 516 0.00 2019-11-13 21:51:26 2019-11-13 21:54:48 t 1 1 168806 430 0.00 2019-11-13 21:52:46 2019-11-13 21:59:13 t 1 1 168810 597 0.00 2019-11-13 21:50:25 2019-11-13 22:00:02 t 1 1 168814 430 0.00 2019-11-13 22:00:15 2019-11-13 22:01:16 t 1 1 168815 623 0.00 2019-11-13 22:03:47 2019-11-13 22:04:04 t 1 1 168818 456 0.00 2019-11-13 22:04:39 2019-11-13 22:04:39 f 1 1 168820 430 0.00 2019-11-13 22:03:17 2019-11-13 22:05:16 t 1 1 168821 220 0.00 2019-11-13 22:00:46 2019-11-13 22:05:24 t 1 1 168824 566 0.00 2019-11-13 21:59:36 2019-11-13 22:05:44 t 1 1 168830 645 0.00 2019-11-13 22:05:30 2019-11-13 22:06:46 t 1 1 168831 220 0.00 2019-11-13 22:06:32 2019-11-13 22:07:06 t 1 1 168835 220 0.00 2019-11-13 22:07:05 2019-11-13 22:10:14 t 1 1 168837 485 0.00 2019-11-13 22:02:44 2019-11-13 22:12:34 t 1 1 168843 623 0.00 2019-11-13 22:14:58 2019-11-13 22:15:01 t 1 1 168846 623 0.00 2019-11-13 22:16:21 2019-11-13 22:16:44 t 1 1 168848 220 0.00 2019-11-13 22:14:01 2019-11-13 22:18:21 t 1 1 168852 220 0.00 2019-11-13 22:19:34 2019-11-13 22:20:08 t 1 1 168855 220 0.00 2019-11-13 22:20:07 2019-11-13 22:21:29 t 1 1 168857 220 0.00 2019-11-13 22:21:29 2019-11-13 22:22:01 t 1 1 168865 591 0.00 2019-11-13 21:25:13 2019-11-13 22:24:31 t 1 1 168869 220 0.00 2019-11-13 22:25:41 2019-11-13 22:27:15 t 1 1 168873 514 0.00 2019-11-13 22:21:40 2019-11-13 22:29:50 t 1 1 168878 220 0.00 2019-11-13 22:27:51 2019-11-13 22:30:47 t 1 1 168884 220 0.00 2019-11-13 22:31:55 2019-11-13 22:32:31 t 1 1 168888 220 0.00 2019-11-13 22:32:31 2019-11-13 22:35:05 t 1 1 168891 220 0.00 2019-11-13 22:35:04 2019-11-13 22:35:41 t 1 1 168893 623 0.00 2019-11-13 22:35:28 2019-11-13 22:36:05 t 1 1 168895 485 0.00 2019-11-13 22:30:04 2019-11-13 22:36:20 t 1 1 168901 566 0.00 2019-11-13 22:29:29 2019-11-13 22:38:43 t 1 1 168907 623 0.00 2019-11-13 22:40:38 2019-11-13 22:40:51 t 1 1 168915 635 0.00 2019-11-13 22:37:06 2019-11-13 22:44:23 t 1 1 168921 562 0.00 2019-11-13 22:45:52 2019-11-13 22:46:17 t 1 1 168926 587 0.00 2019-11-13 22:47:14 2019-11-13 22:49:09 t 1 1 168928 566 0.00 2019-11-13 22:38:43 2019-11-13 22:49:46 t 1 1 168930 623 0.00 2019-11-13 22:50:44 2019-11-13 22:50:47 t 1 1 168932 485 0.00 2019-11-13 22:44:09 2019-11-13 22:51:17 t 1 1 168934 220 0.00 2019-11-13 22:50:08 2019-11-13 22:52:38 t 1 1 168937 637 0.00 2019-11-13 21:55:23 2019-11-13 22:53:18 t 1 1 168850 623 0.00 2019-11-13 22:19:06 2019-11-13 22:19:09 t 1 1 168851 220 0.00 2019-11-13 22:18:55 2019-11-13 22:19:34 t 1 1 168853 623 0.00 2019-11-13 22:20:14 2019-11-13 22:20:23 t 1 1 168856 562 0.00 2019-11-13 21:58:22 2019-11-13 22:21:47 t 1 1 168858 623 0.00 2019-11-13 22:22:16 2019-11-13 22:22:18 t 1 1 168859 510 0.00 2019-11-13 21:52:57 2019-11-13 22:23:09 t 1 1 168861 566 0.00 2019-11-13 22:16:17 2019-11-13 22:23:35 t 1 1 168864 585 0.00 2019-11-13 21:32:56 2019-11-13 22:24:24 t 1 1 168866 220 0.00 2019-11-13 22:22:00 2019-11-13 22:25:05 t 1 1 168870 220 0.00 2019-11-13 22:27:14 2019-11-13 22:27:51 t 1 1 168871 623 0.00 2019-11-13 22:28:28 2019-11-13 22:28:39 t 1 1 168876 623 0.00 2019-11-13 22:30:08 2019-11-13 22:30:19 t 1 1 168879 422 0.00 2019-11-13 21:51:32 2019-11-13 22:31:14 t 1 1 168880 220 0.00 2019-11-13 22:30:47 2019-11-13 22:31:22 t 1 1 168882 587 0.00 2019-11-13 22:19:18 2019-11-13 22:31:46 t 1 1 168887 581 0.00 2019-11-13 22:04:41 2019-11-13 22:34:19 t 1 1 168889 623 0.00 2019-11-13 22:35:21 2019-11-13 22:35:22 t 1 1 168894 220 0.00 2019-11-13 22:35:40 2019-11-13 22:36:13 t 1 1 168897 627 0.00 2019-11-13 22:15:25 2019-11-13 22:36:56 t 1 1 168900 510 0.00 2019-11-13 22:23:09 2019-11-13 22:38:15 t 1 1 168903 627 0.00 2019-11-13 22:36:56 2019-11-13 22:39:12 t 1 1 168905 481 0.00 2019-11-13 21:09:08 2019-11-13 22:40:15 t 1 1 168909 623 0.00 2019-11-13 22:40:59 2019-11-13 22:41:16 t 1 1 168911 485 0.00 2019-11-13 22:36:20 2019-11-13 22:41:37 t 1 1 168912 514 0.00 2019-11-13 22:29:50 2019-11-13 22:42:40 t 1 1 168913 562 0.00 2019-11-13 22:36:39 2019-11-13 22:43:22 t 1 1 168914 485 0.00 2019-11-13 22:41:37 2019-11-13 22:44:09 t 1 1 168916 512 0.00 2019-11-13 22:39:40 2019-11-13 22:44:46 t 1 1 168918 220 0.00 2019-11-13 22:41:05 2019-11-13 22:45:12 t 1 1 168919 220 0.00 2019-11-13 22:45:12 2019-11-13 22:45:49 t 1 1 168922 587 0.00 2019-11-13 22:32:16 2019-11-13 22:47:14 t 1 1 168923 220 0.00 2019-11-13 22:45:48 2019-11-13 22:47:16 t 1 1 168927 220 0.00 2019-11-13 22:47:54 2019-11-13 22:49:37 t 1 1 168929 220 0.00 2019-11-13 22:49:36 2019-11-13 22:50:08 t 1 1 168931 422 0.00 2019-11-13 22:32:56 2019-11-13 22:50:59 t 1 1 168936 220 0.00 2019-11-13 22:52:38 2019-11-13 22:53:09 t 1 1 168939 544 0.00 2019-11-13 22:52:16 2019-11-13 22:54:47 t 1 1 168942 422 0.00 2019-11-13 22:55:35 2019-11-13 22:56:04 t 1 1 168946 422 0.00 2019-11-13 22:56:50 2019-11-13 22:57:05 t 1 1 168947 220 0.00 2019-11-13 22:56:12 2019-11-13 22:57:42 t 1 1 168951 485 0.00 2019-11-13 22:51:17 2019-11-13 22:58:36 t 1 1 168954 485 0.00 2019-11-13 22:58:36 2019-11-13 23:01:52 t 1 1 168955 623 0.00 2019-11-13 23:02:25 2019-11-13 23:02:32 t 1 1 168956 623 0.00 2019-11-13 23:03:49 2019-11-13 23:03:56 t 1 1 168957 623 0.00 2019-11-13 23:04:09 2019-11-13 23:04:11 t 1 1 168965 623 0.00 2019-11-13 23:10:14 2019-11-13 23:10:17 t 1 1 168968 623 0.00 2019-11-13 23:11:41 2019-11-13 23:11:42 t 1 1 168971 570 0.00 2019-11-13 23:09:17 2019-11-13 23:12:26 t 1 1 168972 514 0.00 2019-11-13 23:04:31 2019-11-13 23:14:27 t 1 1 168980 456 0.00 2019-11-13 22:09:05 2019-11-13 23:20:41 t 1 1 168982 451 0.00 2019-11-13 23:12:00 2019-11-13 23:24:37 t 1 1 168984 623 0.00 2019-11-13 23:24:56 2019-11-13 23:24:59 t 1 1 168986 623 0.00 2019-11-13 23:26:13 2019-11-13 23:27:20 t 1 1 168990 220 0.00 2019-11-13 23:28:34 2019-11-13 23:29:40 t 1 1 168997 503 0.00 2019-11-13 23:30:32 2019-11-13 23:32:42 t 1 1 168998 220 0.00 2019-11-13 23:32:31 2019-11-13 23:33:05 t 1 1 169001 587 0.00 2019-11-13 23:27:43 2019-11-13 23:34:37 t 1 1 169005 623 0.00 2019-11-13 23:27:58 2019-11-13 23:35:40 t 1 1 169006 220 0.00 2019-11-13 23:35:22 2019-11-13 23:35:57 t 1 1 169008 220 0.00 2019-11-13 23:35:57 2019-11-13 23:36:29 t 1 1 169009 220 0.00 2019-11-13 23:36:29 2019-11-13 23:37:05 t 1 1 169010 220 0.00 2019-11-13 23:37:05 2019-11-13 23:37:40 t 1 1 169012 587 0.00 2019-11-13 23:35:45 2019-11-13 23:39:02 t 1 1 169013 591 0.00 2019-11-13 23:37:25 2019-11-13 23:39:26 t 1 1 169019 566 0.00 2019-11-13 23:35:13 2019-11-13 23:42:01 t 1 1 169022 566 0.00 2019-11-13 23:42:01 2019-11-13 23:47:36 t 1 1 169029 562 0.00 2019-11-13 23:48:57 2019-11-13 23:50:17 t 1 1 169030 585 0.00 2019-11-13 23:45:17 2019-11-13 23:51:06 t 1 1 169033 609 0.00 2019-11-13 23:51:26 2019-11-13 23:51:55 t 1 1 169035 422 0.00 2019-11-13 23:53:48 2019-11-13 23:54:02 t 1 1 169036 220 0.00 2019-11-13 23:38:14 2019-11-13 23:55:34 t 1 1 169044 562 0.00 2019-11-14 00:00:38 2019-11-14 00:00:48 t 1 1 169053 589 0.00 2019-11-14 00:07:06 2019-11-14 00:08:23 t 1 1 169056 562 0.00 2019-11-14 00:10:59 2019-11-14 00:11:28 t 1 1 169058 422 0.00 2019-11-14 00:13:53 2019-11-14 00:14:13 t 1 1 169059 566 0.00 2019-11-14 00:07:46 2019-11-14 00:16:58 t 1 1 169061 538 0.00 2019-11-14 00:16:48 2019-11-14 00:18:45 t 1 1 169064 422 0.00 2019-11-14 00:24:35 2019-11-14 00:25:02 t 1 1 169071 566 0.00 2019-11-14 00:30:17 2019-11-14 00:39:34 t 1 1 169072 587 0.00 2019-11-14 00:27:04 2019-11-14 00:41:00 t 1 1 169077 658 0.00 2019-11-14 00:44:35 2019-11-14 00:44:42 t 1 1 169078 658 0.00 2019-11-14 00:46:08 2019-11-14 00:46:21 t 1 1 169080 544 0.00 2019-11-14 00:47:12 2019-11-14 00:47:43 t 1 1 169083 658 0.00 2019-11-14 00:46:27 2019-11-14 00:48:47 t 1 1 169084 544 0.00 2019-11-14 00:48:21 2019-11-14 00:48:55 t 1 1 169091 422 0.00 2019-11-14 00:33:27 2019-11-14 00:52:20 t 1 1 169100 422 0.00 2019-11-14 00:52:40 2019-11-14 00:55:41 t 1 1 169101 544 0.00 2019-11-14 00:55:24 2019-11-14 00:56:05 t 1 1 169105 544 0.00 2019-11-14 00:56:39 2019-11-14 00:57:19 t 1 1 169108 658 0.00 2019-11-14 00:57:53 2019-11-14 00:57:55 t 1 1 169119 566 0.00 2019-11-14 00:56:32 2019-11-14 01:04:38 t 1 1 169121 544 0.00 2019-11-14 01:04:35 2019-11-14 01:05:07 t 1 1 169126 544 0.00 2019-11-14 01:07:03 2019-11-14 01:07:36 t 1 1 169127 544 0.00 2019-11-14 01:07:36 2019-11-14 01:08:17 t 1 1 169133 544 0.00 2019-11-14 01:10:19 2019-11-14 01:11:01 t 1 1 169135 503 0.00 2019-11-14 00:41:24 2019-11-14 01:11:44 t 1 1 169138 451 0.00 2019-11-14 01:09:13 2019-11-14 01:12:37 t 1 1 169139 544 0.00 2019-11-14 01:12:12 2019-11-14 01:12:47 t 1 1 169140 562 0.00 2019-11-14 01:12:40 2019-11-14 01:13:07 t 1 1 169142 658 0.00 2019-11-14 01:13:14 2019-11-14 01:13:24 t 1 1 169143 566 0.00 2019-11-14 01:04:38 2019-11-14 01:14:45 t 1 1 169155 658 0.00 2019-11-14 01:24:18 2019-11-14 01:24:45 t 1 1 169157 658 0.00 2019-11-14 01:25:29 2019-11-14 01:25:35 t 1 1 169161 544 0.00 2019-11-14 01:23:02 2019-11-14 01:29:53 t 1 1 169162 514 0.00 2019-11-14 01:20:55 2019-11-14 01:30:06 t 1 1 169163 587 0.00 2019-11-14 01:17:23 2019-11-14 01:31:22 t 1 1 169165 562 0.00 2019-11-14 01:36:37 2019-11-14 01:36:47 t 1 1 168883 220 0.00 2019-11-13 22:31:22 2019-11-13 22:31:55 t 1 1 168885 422 0.00 2019-11-13 22:32:26 2019-11-13 22:32:49 t 1 1 168886 623 0.00 2019-11-13 22:33:13 2019-11-13 22:34:10 t 1 1 168890 591 0.00 2019-11-13 22:31:24 2019-11-13 22:35:30 t 1 1 168892 562 0.00 2019-11-13 22:33:51 2019-11-13 22:35:43 t 1 1 168896 220 0.00 2019-11-13 22:36:13 2019-11-13 22:36:47 t 1 1 168898 220 0.00 2019-11-13 22:36:47 2019-11-13 22:37:22 t 1 1 168899 220 0.00 2019-11-13 22:37:22 2019-11-13 22:37:59 t 1 1 168902 220 0.00 2019-11-13 22:37:59 2019-11-13 22:38:58 t 1 1 168904 220 0.00 2019-11-13 22:38:58 2019-11-13 22:39:32 t 1 1 168906 220 0.00 2019-11-13 22:39:32 2019-11-13 22:40:30 t 1 1 168908 220 0.00 2019-11-13 22:40:30 2019-11-13 22:41:06 t 1 1 168910 623 0.00 2019-11-13 22:41:27 2019-11-13 22:41:30 t 1 1 168917 623 0.00 2019-11-13 22:44:47 2019-11-13 22:44:48 t 1 1 168920 623 0.00 2019-11-13 22:45:38 2019-11-13 22:45:54 t 1 1 168924 220 0.00 2019-11-13 22:47:16 2019-11-13 22:47:54 t 1 1 168925 623 0.00 2019-11-13 22:48:18 2019-11-13 22:48:20 t 1 1 168933 422 0.00 2019-11-13 22:52:08 2019-11-13 22:52:35 t 1 1 168935 512 0.00 2019-11-13 22:44:46 2019-11-13 22:52:54 t 1 1 168943 220 0.00 2019-11-13 22:55:35 2019-11-13 22:56:12 t 1 1 168945 562 0.00 2019-11-13 22:56:42 2019-11-13 22:57:00 t 1 1 168953 623 0.00 2019-11-13 23:00:25 2019-11-13 23:00:32 t 1 1 168959 514 0.00 2019-11-13 22:54:42 2019-11-13 23:04:31 t 1 1 168960 585 0.00 2019-11-13 22:58:30 2019-11-13 23:06:26 t 1 1 168969 564 0.00 2019-11-13 15:44:08 2019-11-13 23:11:46 t 1 1 168973 623 0.00 2019-11-13 23:16:44 2019-11-13 23:16:56 t 1 1 168975 220 0.00 2019-11-13 23:00:51 2019-11-13 23:17:24 t 1 1 168976 562 0.00 2019-11-13 23:17:51 2019-11-13 23:18:17 t 1 1 168979 595 0.00 2019-11-13 23:01:16 2019-11-13 23:20:39 t 1 1 168983 623 0.00 2019-11-13 23:24:35 2019-11-13 23:24:45 t 1 1 168987 587 0.00 2019-11-13 22:52:07 2019-11-13 23:27:43 t 1 1 168995 609 0.00 2019-11-13 22:51:26 2019-11-13 23:31:59 t 1 1 168996 220 0.00 2019-11-13 23:31:57 2019-11-13 23:32:31 t 1 1 168999 220 0.00 2019-11-13 23:33:05 2019-11-13 23:33:39 t 1 1 169000 220 0.00 2019-11-13 23:33:38 2019-11-13 23:34:13 t 1 1 169002 220 0.00 2019-11-13 23:34:12 2019-11-13 23:34:47 t 1 1 169003 566 0.00 2019-11-13 23:25:11 2019-11-13 23:35:13 t 1 1 169004 220 0.00 2019-11-13 23:34:47 2019-11-13 23:35:22 t 1 1 169015 591 0.00 2019-11-13 23:39:26 2019-11-13 23:39:37 t 1 1 169016 544 0.00 2019-11-13 23:11:43 2019-11-13 23:40:11 t 1 1 169018 623 0.00 2019-11-13 23:35:40 2019-11-13 23:40:50 t 1 1 169020 422 0.00 2019-11-13 22:57:49 2019-11-13 23:46:14 t 1 1 169021 422 0.00 2019-11-13 23:46:58 2019-11-13 23:47:23 t 1 1 169024 544 0.00 2019-11-13 23:40:11 2019-11-13 23:48:39 t 1 1 169027 609 0.00 2019-11-13 23:48:41 2019-11-13 23:49:48 t 1 1 169028 562 0.00 2019-11-13 23:49:06 2019-11-13 23:50:17 t 1 1 169037 587 0.00 2019-11-13 23:39:02 2019-11-13 23:56:03 t 1 1 169043 422 0.00 2019-11-14 00:00:03 2019-11-14 00:00:16 t 1 1 169046 422 0.00 2019-11-14 00:00:16 2019-11-14 00:01:16 t 1 1 169048 566 0.00 2019-11-13 23:56:45 2019-11-14 00:02:34 t 1 1 169051 551 0.00 2019-11-13 10:32:28 2019-11-14 00:03:40 t 1 1 169052 566 0.00 2019-11-14 00:02:34 2019-11-14 00:07:46 t 1 1 169054 587 0.00 2019-11-13 23:56:03 2019-11-14 00:09:11 t 1 1 169055 551 0.00 2019-11-14 00:03:40 2019-11-14 00:11:16 t 1 1 169057 514 0.00 2019-11-13 23:14:27 2019-11-14 00:12:43 t 1 1 169066 587 0.00 2019-11-14 00:09:12 2019-11-14 00:27:04 t 1 1 169067 658 0.00 2019-11-14 00:27:02 2019-11-14 00:28:32 t 1 1 169068 562 0.00 2019-11-14 00:32:24 2019-11-14 00:32:56 t 1 1 169073 503 0.00 2019-11-14 00:40:40 2019-11-14 00:41:25 t 1 1 169075 587 0.00 2019-11-14 00:42:11 2019-11-14 00:43:36 t 1 1 169081 566 0.00 2019-11-14 00:39:34 2019-11-14 00:48:05 t 1 1 169082 544 0.00 2019-11-14 00:47:43 2019-11-14 00:48:21 t 1 1 169086 544 0.00 2019-11-14 00:48:55 2019-11-14 00:49:29 t 1 1 169088 544 0.00 2019-11-14 00:49:38 2019-11-14 00:50:19 t 1 1 169089 544 0.00 2019-11-14 00:50:19 2019-11-14 00:51:08 t 1 1 169092 544 0.00 2019-11-14 00:51:40 2019-11-14 00:52:22 t 1 1 169093 544 0.00 2019-11-14 00:52:21 2019-11-14 00:52:56 t 1 1 169094 544 0.00 2019-11-14 00:52:56 2019-11-14 00:53:36 t 1 1 169097 562 0.00 2019-11-14 00:53:44 2019-11-14 00:54:15 t 1 1 169099 544 0.00 2019-11-14 00:54:51 2019-11-14 00:55:24 t 1 1 169103 544 0.00 2019-11-14 00:56:05 2019-11-14 00:56:39 t 1 1 169106 658 0.00 2019-11-14 00:49:25 2019-11-14 00:57:46 t 1 1 169107 544 0.00 2019-11-14 00:57:19 2019-11-14 00:57:53 t 1 1 169109 544 0.00 2019-11-14 00:57:53 2019-11-14 00:58:34 t 1 1 169110 544 0.00 2019-11-14 00:58:33 2019-11-14 00:59:08 t 1 1 169113 544 0.00 2019-11-14 00:59:50 2019-11-14 01:02:22 t 1 1 169115 422 0.00 2019-11-14 00:57:43 2019-11-14 01:03:01 t 1 1 169120 562 0.00 2019-11-14 01:04:36 2019-11-14 01:04:52 t 1 1 169122 544 0.00 2019-11-14 01:05:07 2019-11-14 01:05:49 t 1 1 169128 422 0.00 2019-11-14 01:08:31 2019-11-14 01:08:43 t 1 1 169129 544 0.00 2019-11-14 01:08:17 2019-11-14 01:09:03 t 1 1 169130 544 0.00 2019-11-14 01:09:03 2019-11-14 01:09:44 t 1 1 169132 587 0.00 2019-11-14 01:06:15 2019-11-14 01:10:27 t 1 1 169134 544 0.00 2019-11-14 01:11:00 2019-11-14 01:11:32 t 1 1 169137 658 0.00 2019-11-14 01:03:03 2019-11-14 01:12:18 t 1 1 169144 658 0.00 2019-11-14 01:13:31 2019-11-14 01:15:13 t 1 1 169146 544 0.00 2019-11-14 01:12:46 2019-11-14 01:15:24 t 1 1 169148 562 0.00 2019-11-14 01:16:16 2019-11-14 01:16:36 t 1 1 169151 503 0.00 2019-11-14 01:11:44 2019-11-14 01:21:05 t 1 1 169152 562 0.00 2019-11-14 01:21:48 2019-11-14 01:22:07 t 1 1 169154 658 0.00 2019-11-14 01:20:07 2019-11-14 01:24:19 t 1 1 169159 658 0.00 2019-11-14 01:25:42 2019-11-14 01:26:13 t 1 1 169160 566 0.00 2019-11-14 01:14:45 2019-11-14 01:27:49 t 1 1 169169 562 0.00 2019-11-14 01:48:52 2019-11-14 01:49:01 t 1 1 169170 562 0.00 2019-11-14 01:51:06 2019-11-14 01:51:15 t 1 1 169171 562 0.00 2019-11-14 01:52:12 2019-11-14 01:52:39 t 1 1 169173 562 0.00 2019-11-14 01:59:33 2019-11-14 01:59:43 t 1 1 169184 562 0.00 2019-11-14 02:37:51 2019-11-14 02:38:01 t 1 1 169190 562 0.00 2019-11-14 02:57:59 2019-11-14 02:58:12 t 1 1 169191 514 0.00 2019-11-14 02:55:37 2019-11-14 03:06:53 t 1 1 169193 607 0.00 2019-11-14 02:32:18 2019-11-14 03:10:12 t 1 1 169194 570 0.00 2019-11-14 03:04:12 2019-11-14 03:11:40 t 1 1 169197 570 0.00 2019-11-14 03:11:40 2019-11-14 03:17:14 t 1 1 169200 570 0.00 2019-11-14 03:17:14 2019-11-14 03:25:33 t 1 1 169202 562 0.00 2019-11-14 03:29:56 2019-11-14 03:30:11 t 1 1 169205 562 0.00 2019-11-14 04:01:57 2019-11-14 04:02:07 t 1 1 169206 562 0.00 2019-11-14 04:12:25 2019-11-14 04:12:48 t 1 1 168938 514 0.00 2019-11-13 22:42:41 2019-11-13 22:54:42 t 1 1 168940 637 0.00 2019-11-13 22:53:42 2019-11-13 22:55:16 t 1 1 168941 220 0.00 2019-11-13 22:53:09 2019-11-13 22:55:36 t 1 1 168944 623 0.00 2019-11-13 22:56:32 2019-11-13 22:56:35 t 1 1 168948 562 0.00 2019-11-13 22:57:17 2019-11-13 22:57:43 t 1 1 168949 412 0.00 2019-11-13 22:05:54 2019-11-13 22:58:02 t 1 1 168950 220 0.00 2019-11-13 22:57:42 2019-11-13 22:58:18 t 1 1 168952 220 0.00 2019-11-13 22:58:18 2019-11-13 22:59:52 t 1 1 168958 512 0.00 2019-11-13 22:52:54 2019-11-13 23:04:16 t 1 1 168961 623 0.00 2019-11-13 23:06:36 2019-11-13 23:06:48 t 1 1 168962 623 0.00 2019-11-13 23:06:59 2019-11-13 23:07:02 t 1 1 168963 562 0.00 2019-11-13 23:07:18 2019-11-13 23:07:38 t 1 1 168964 645 0.00 2019-11-13 23:04:33 2019-11-13 23:10:07 t 1 1 168966 566 0.00 2019-11-13 22:49:46 2019-11-13 23:10:21 t 1 1 168967 656 0.00 2019-11-13 23:07:36 2019-11-13 23:11:38 t 1 1 168970 451 0.00 2019-11-13 22:50:35 2019-11-13 23:12:00 t 1 1 168974 623 0.00 2019-11-13 23:16:56 2019-11-13 23:16:58 t 1 1 168977 656 0.00 2019-11-13 23:16:33 2019-11-13 23:19:05 t 1 1 168978 220 0.00 2019-11-13 21:31:47 2019-11-13 23:20:20 t 1 1 168981 623 0.00 2019-11-13 23:21:48 2019-11-13 23:21:53 t 1 1 168985 566 0.00 2019-11-13 23:10:21 2019-11-13 23:25:11 t 1 1 168988 623 0.00 2019-11-13 23:27:30 2019-11-13 23:27:48 t 1 1 168989 562 0.00 2019-11-13 23:28:41 2019-11-13 23:28:57 t 1 1 168991 220 0.00 2019-11-13 23:29:40 2019-11-13 23:30:13 t 1 1 168992 220 0.00 2019-11-13 23:30:13 2019-11-13 23:30:48 t 1 1 168993 220 0.00 2019-11-13 23:30:48 2019-11-13 23:31:23 t 1 1 168994 220 0.00 2019-11-13 23:31:22 2019-11-13 23:31:57 t 1 1 169007 445 0.00 2019-11-13 19:01:53 2019-11-13 23:36:16 t 1 1 169011 220 0.00 2019-11-13 23:37:40 2019-11-13 23:37:48 t 1 1 169014 562 0.00 2019-11-13 23:39:15 2019-11-13 23:39:36 t 1 1 169017 456 0.00 2019-11-13 23:20:41 2019-11-13 23:40:17 t 1 1 169023 637 0.00 2019-11-13 22:55:03 2019-11-13 23:48:00 t 1 1 169025 609 0.00 2019-11-13 23:32:30 2019-11-13 23:49:03 t 1 1 169026 637 0.00 2019-11-13 23:48:00 2019-11-13 23:49:16 t 1 1 169031 566 0.00 2019-11-13 23:47:36 2019-11-13 23:51:19 t 1 1 169032 609 0.00 2019-11-13 23:50:35 2019-11-13 23:51:26 t 1 1 169034 623 0.00 2019-11-13 23:40:50 2019-11-13 23:53:57 t 1 1 169038 566 0.00 2019-11-13 23:51:19 2019-11-13 23:56:45 t 1 1 169039 609 0.00 2019-11-13 23:51:54 2019-11-13 23:57:21 t 1 1 169040 422 0.00 2019-11-13 23:57:41 2019-11-13 23:58:06 t 1 1 169041 637 0.00 2019-11-13 23:49:16 2019-11-13 23:59:53 t 1 1 169042 544 0.00 2019-11-13 23:48:39 2019-11-14 00:00:01 t 1 1 169045 422 0.00 2019-11-14 00:00:25 2019-11-14 00:01:09 t 1 1 169047 609 0.00 2019-11-13 23:59:16 2019-11-14 00:02:17 t 1 1 169049 451 0.00 2019-11-13 23:24:37 2019-11-14 00:02:35 t 1 1 169050 422 0.00 2019-11-14 00:03:28 2019-11-14 00:03:35 t 1 1 169060 538 0.00 2019-11-13 22:58:48 2019-11-14 00:17:20 t 1 1 169062 562 0.00 2019-11-14 00:21:42 2019-11-14 00:22:11 t 1 1 169063 451 0.00 2019-11-14 00:05:16 2019-11-14 00:24:59 t 1 1 169065 528 0.00 2019-11-14 00:08:10 2019-11-14 00:25:50 t 1 1 169069 451 0.00 2019-11-14 00:25:00 2019-11-14 00:33:07 t 1 1 169070 544 0.00 2019-11-14 00:00:01 2019-11-14 00:39:03 t 1 1 169074 562 0.00 2019-11-14 00:42:45 2019-11-14 00:43:30 t 1 1 169076 658 0.00 2019-11-14 00:28:37 2019-11-14 00:44:30 t 1 1 169079 544 0.00 2019-11-14 00:39:03 2019-11-14 00:47:12 t 1 1 169085 658 0.00 2019-11-14 00:48:53 2019-11-14 00:48:56 t 1 1 169087 544 0.00 2019-11-14 00:49:29 2019-11-14 00:49:38 t 1 1 169090 544 0.00 2019-11-14 00:51:08 2019-11-14 00:51:40 t 1 1 169095 637 0.00 2019-11-14 00:00:31 2019-11-14 00:53:49 t 1 1 169096 544 0.00 2019-11-14 00:53:36 2019-11-14 00:54:09 t 1 1 169098 544 0.00 2019-11-14 00:54:09 2019-11-14 00:54:51 t 1 1 169102 566 0.00 2019-11-14 00:48:05 2019-11-14 00:56:32 t 1 1 169104 422 0.00 2019-11-14 00:56:34 2019-11-14 00:57:13 t 1 1 169111 544 0.00 2019-11-14 00:59:08 2019-11-14 00:59:50 t 1 1 169112 658 0.00 2019-11-14 00:58:10 2019-11-14 01:00:17 t 1 1 169114 658 0.00 2019-11-14 00:58:16 2019-11-14 01:02:58 t 1 1 169116 544 0.00 2019-11-14 01:02:21 2019-11-14 01:03:03 t 1 1 169117 544 0.00 2019-11-14 01:03:02 2019-11-14 01:03:52 t 1 1 169118 544 0.00 2019-11-14 01:03:52 2019-11-14 01:04:35 t 1 1 169123 587 0.00 2019-11-14 00:45:38 2019-11-14 01:06:15 t 1 1 169124 544 0.00 2019-11-14 01:05:48 2019-11-14 01:06:22 t 1 1 169125 544 0.00 2019-11-14 01:06:22 2019-11-14 01:07:03 t 1 1 169131 544 0.00 2019-11-14 01:09:44 2019-11-14 01:10:20 t 1 1 169136 544 0.00 2019-11-14 01:11:31 2019-11-14 01:12:12 t 1 1 169141 658 0.00 2019-11-14 01:12:55 2019-11-14 01:13:10 t 1 1 169145 658 0.00 2019-11-14 01:15:16 2019-11-14 01:15:23 t 1 1 169147 562 0.00 2019-11-14 01:15:03 2019-11-14 01:15:28 t 1 1 169149 587 0.00 2019-11-14 01:10:27 2019-11-14 01:17:23 t 1 1 169150 658 0.00 2019-11-14 01:15:29 2019-11-14 01:20:02 t 1 1 169153 544 0.00 2019-11-14 01:15:24 2019-11-14 01:23:02 t 1 1 169156 658 0.00 2019-11-14 01:24:51 2019-11-14 01:25:23 t 1 1 169158 562 0.00 2019-11-14 01:25:53 2019-11-14 01:26:07 t 1 1 169164 566 0.00 2019-11-14 01:27:49 2019-11-14 01:36:29 t 1 1 169166 562 0.00 2019-11-14 01:38:21 2019-11-14 01:40:18 t 1 1 169168 587 0.00 2019-11-14 01:44:52 2019-11-14 01:47:55 t 1 1 169172 514 0.00 2019-11-14 01:44:44 2019-11-14 01:55:55 t 1 1 169177 514 0.00 2019-11-14 02:08:08 2019-11-14 02:13:29 t 1 1 169179 562 0.00 2019-11-14 02:20:45 2019-11-14 02:20:59 t 1 1 169180 514 0.00 2019-11-14 02:13:29 2019-11-14 02:23:00 t 1 1 169181 422 0.00 2019-11-14 01:10:18 2019-11-14 02:26:28 t 1 1 169182 562 0.00 2019-11-14 02:31:19 2019-11-14 02:31:40 t 1 1 169188 514 0.00 2019-11-14 02:46:05 2019-11-14 02:55:37 t 1 1 169189 574 0.00 2019-11-14 02:49:19 2019-11-14 02:56:25 t 1 1 169192 562 0.00 2019-11-14 03:08:31 2019-11-14 03:08:51 t 1 1 169196 607 0.00 2019-11-14 03:10:12 2019-11-14 03:15:44 t 1 1 169198 562 0.00 2019-11-14 03:19:17 2019-11-14 03:19:35 t 1 1 169201 422 0.00 2019-11-14 02:27:46 2019-11-14 03:26:23 t 1 1 169203 562 0.00 2019-11-14 03:40:38 2019-11-14 03:40:45 t 1 1 169204 562 0.00 2019-11-14 03:51:12 2019-11-14 03:51:28 t 1 1 169207 562 0.00 2019-11-14 04:23:20 2019-11-14 04:23:29 t 1 1 169211 562 0.00 2019-11-14 04:44:30 2019-11-14 04:44:44 t 1 1 169213 623 0.00 2019-11-14 04:51:26 2019-11-14 04:55:10 t 1 1 169214 562 0.00 2019-11-14 04:55:09 2019-11-14 04:55:26 t 1 1 169216 623 0.00 2019-11-14 05:03:19 2019-11-14 05:03:35 t 1 1 169217 623 0.00 2019-11-14 05:03:40 2019-11-14 05:03:47 t 1 1 169218 623 0.00 2019-11-14 05:04:00 2019-11-14 05:04:01 t 1 1 169220 623 0.00 2019-11-14 05:04:21 2019-11-14 05:05:04 t 1 1 169167 514 0.00 2019-11-14 01:30:06 2019-11-14 01:44:44 t 1 1 169174 456 0.00 2019-11-14 01:50:45 2019-11-14 02:04:04 t 1 1 169175 514 0.00 2019-11-14 01:55:55 2019-11-14 02:08:08 t 1 1 169176 562 0.00 2019-11-14 02:10:00 2019-11-14 02:10:20 t 1 1 169178 658 0.00 2019-11-14 01:26:20 2019-11-14 02:18:52 t 1 1 169183 514 0.00 2019-11-14 02:23:00 2019-11-14 02:34:46 t 1 1 169185 562 0.00 2019-11-14 02:41:52 2019-11-14 02:42:20 t 1 1 169186 514 0.00 2019-11-14 02:34:46 2019-11-14 02:46:05 t 1 1 169187 658 0.00 2019-11-14 02:18:52 2019-11-14 02:51:26 t 1 1 169195 658 0.00 2019-11-14 02:51:32 2019-11-14 03:13:28 t 1 1 169199 619 0.00 2019-11-14 03:16:11 2019-11-14 03:22:53 t 1 1 169208 619 0.00 2019-11-14 04:12:40 2019-11-14 04:25:05 t 1 1 169209 562 0.00 2019-11-14 04:33:56 2019-11-14 04:34:10 t 1 1 169210 619 0.00 2019-11-14 04:38:09 2019-11-14 04:42:44 t 1 1 169212 445 0.00 2019-11-13 23:35:46 2019-11-14 04:54:16 t 1 1 169215 623 0.00 2019-11-14 04:55:15 2019-11-14 05:03:14 t 1 1 169219 623 0.00 2019-11-14 05:04:06 2019-11-14 05:04:08 t 1 1 169221 623 0.00 2019-11-14 05:05:15 2019-11-14 05:05:22 t 1 1 169222 623 0.00 2019-11-14 05:05:35 2019-11-14 05:05:36 t 1 1 169223 623 0.00 2019-11-14 05:05:41 2019-11-14 05:05:46 t 1 1 169224 562 0.00 2019-11-14 05:05:47 2019-11-14 05:05:58 t 1 1 169225 623 0.00 2019-11-14 05:05:59 2019-11-14 05:06:00 t 1 1 169226 623 0.00 2019-11-14 05:06:05 2019-11-14 05:06:11 t 1 1 169227 623 0.00 2019-11-14 05:06:16 2019-11-14 05:06:44 t 1 1 169228 623 0.00 2019-11-14 05:06:49 2019-11-14 05:06:56 t 1 1 169229 516 0.00 2019-11-14 05:01:15 2019-11-14 05:07:02 t 1 1 169230 623 0.00 2019-11-14 05:07:01 2019-11-14 05:07:07 t 1 1 169231 623 0.00 2019-11-14 05:07:12 2019-11-14 05:07:18 t 1 1 169232 623 0.00 2019-11-14 05:07:23 2019-11-14 05:07:31 t 1 1 169233 623 0.00 2019-11-14 05:07:44 2019-11-14 05:07:45 t 1 1 169234 623 0.00 2019-11-14 05:07:50 2019-11-14 05:08:28 t 1 1 169235 623 0.00 2019-11-14 05:08:41 2019-11-14 05:08:42 t 1 1 169236 623 0.00 2019-11-14 05:08:47 2019-11-14 05:08:54 t 1 1 169237 623 0.00 2019-11-14 05:09:06 2019-11-14 05:09:08 t 1 1 169238 623 0.00 2019-11-14 05:09:13 2019-11-14 05:09:15 t 1 1 169239 623 0.00 2019-11-14 05:09:27 2019-11-14 05:09:44 t 1 1 169240 445 0.00 2019-11-14 04:54:19 2019-11-14 05:09:53 t 1 1 169241 623 0.00 2019-11-14 05:09:55 2019-11-14 05:10:02 t 1 1 169242 623 0.00 2019-11-14 05:10:07 2019-11-14 05:10:24 t 1 1 169243 445 0.00 2019-11-14 05:09:59 2019-11-14 05:11:33 t 1 1 169244 623 0.00 2019-11-14 05:10:29 2019-11-14 05:13:00 t 1 1 169245 623 0.00 2019-11-14 05:13:12 2019-11-14 05:13:14 t 1 1 169246 623 0.00 2019-11-14 05:13:19 2019-11-14 05:13:26 t 1 1 169247 623 0.00 2019-11-14 05:13:38 2019-11-14 05:13:40 t 1 1 169248 623 0.00 2019-11-14 05:13:45 2019-11-14 05:13:52 t 1 1 169249 623 0.00 2019-11-14 05:13:57 2019-11-14 05:14:02 t 1 1 169250 623 0.00 2019-11-14 05:14:15 2019-11-14 05:14:16 t 1 1 169251 623 0.00 2019-11-14 05:14:22 2019-11-14 05:14:24 t 1 1 169252 623 0.00 2019-11-14 05:14:36 2019-11-14 05:14:49 t 1 1 169253 623 0.00 2019-11-14 05:15:00 2019-11-14 05:15:06 t 1 1 169254 623 0.00 2019-11-14 05:15:19 2019-11-14 05:15:20 t 1 1 169255 623 0.00 2019-11-14 05:15:26 2019-11-14 05:15:28 t 1 1 169256 623 0.00 2019-11-14 05:15:40 2019-11-14 05:15:57 t 1 1 169257 623 0.00 2019-11-14 05:16:08 2019-11-14 05:16:15 t 1 1 169258 623 0.00 2019-11-14 05:16:28 2019-11-14 05:16:29 t 1 1 169259 562 0.00 2019-11-14 05:16:31 2019-11-14 05:16:39 t 1 1 169260 623 0.00 2019-11-14 05:16:34 2019-11-14 05:16:40 t 1 1 169261 623 0.00 2019-11-14 05:16:53 2019-11-14 05:16:55 t 1 1 169262 623 0.00 2019-11-14 05:17:00 2019-11-14 05:17:02 t 1 1 169263 623 0.00 2019-11-14 05:17:26 2019-11-14 05:17:27 t 1 1 169264 623 0.00 2019-11-14 05:17:32 2019-11-14 05:17:34 t 1 1 169265 623 0.00 2019-11-14 05:17:59 2019-11-14 05:17:59 t 1 1 169266 623 0.00 2019-11-14 05:18:20 2019-11-14 05:18:32 t 1 1 169267 623 0.00 2019-11-14 05:18:43 2019-11-14 05:19:00 t 1 1 169268 623 0.00 2019-11-14 05:19:12 2019-11-14 05:19:14 t 1 1 169269 623 0.00 2019-11-14 05:19:19 2019-11-14 05:19:21 t 1 1 169270 623 0.00 2019-11-14 05:19:37 2019-11-14 05:19:55 t 1 1 169271 623 0.00 2019-11-14 05:20:07 2019-11-14 05:20:09 t 1 1 169272 623 0.00 2019-11-14 05:20:14 2019-11-14 05:20:16 t 1 1 169273 623 0.00 2019-11-14 05:20:28 2019-11-14 05:20:46 t 1 1 169274 623 0.00 2019-11-14 05:20:57 2019-11-14 05:21:03 t 1 1 169275 623 0.00 2019-11-14 05:21:16 2019-11-14 05:21:17 t 1 1 169276 623 0.00 2019-11-14 05:21:22 2019-11-14 05:21:28 t 1 1 169277 623 0.00 2019-11-14 05:21:41 2019-11-14 05:21:42 t 1 1 169278 623 0.00 2019-11-14 05:21:47 2019-11-14 05:21:53 t 1 1 169279 623 0.00 2019-11-14 05:22:06 2019-11-14 05:22:07 t 1 1 169280 623 0.00 2019-11-14 05:22:12 2019-11-14 05:22:18 t 1 1 169281 623 0.00 2019-11-14 05:22:31 2019-11-14 05:22:32 t 1 1 169282 623 0.00 2019-11-14 05:22:38 2019-11-14 05:22:39 t 1 1 169283 623 0.00 2019-11-14 05:22:52 2019-11-14 05:23:09 t 1 1 169284 623 0.00 2019-11-14 05:23:19 2019-11-14 05:23:25 t 1 1 169285 623 0.00 2019-11-14 05:23:38 2019-11-14 05:23:39 t 1 1 169286 623 0.00 2019-11-14 05:23:45 2019-11-14 05:23:46 t 1 1 169287 623 0.00 2019-11-14 05:23:52 2019-11-14 05:23:57 t 1 1 169288 623 0.00 2019-11-14 05:24:10 2019-11-14 05:24:12 t 1 1 169289 623 0.00 2019-11-14 05:24:17 2019-11-14 05:24:19 t 1 1 169290 623 0.00 2019-11-14 05:24:24 2019-11-14 05:24:31 t 1 1 169291 623 0.00 2019-11-14 05:24:43 2019-11-14 05:24:45 t 1 1 169292 623 0.00 2019-11-14 05:24:50 2019-11-14 05:24:52 t 1 1 169293 623 0.00 2019-11-14 05:25:16 2019-11-14 05:25:34 t 1 1 169294 623 0.00 2019-11-14 05:25:45 2019-11-14 05:25:48 t 1 1 169295 623 0.00 2019-11-14 05:25:53 2019-11-14 05:25:55 t 1 1 169296 623 0.00 2019-11-14 05:26:00 2019-11-14 05:26:02 t 1 1 169297 623 0.00 2019-11-14 05:26:07 2019-11-14 05:26:13 t 1 1 169298 623 0.00 2019-11-14 05:26:26 2019-11-14 05:26:27 t 1 1 169299 623 0.00 2019-11-14 05:26:32 2019-11-14 05:26:38 t 1 1 169300 623 0.00 2019-11-14 05:26:51 2019-11-14 05:26:53 t 1 1 169301 623 0.00 2019-11-14 05:26:58 2019-11-14 05:27:00 t 1 1 169302 562 0.00 2019-11-14 05:27:05 2019-11-14 05:27:19 t 1 1 169303 623 0.00 2019-11-14 05:27:16 2019-11-14 05:27:23 t 1 1 169304 623 0.00 2019-11-14 05:27:35 2019-11-14 05:27:37 t 1 1 169305 623 0.00 2019-11-14 05:27:42 2019-11-14 05:27:49 t 1 1 169306 623 0.00 2019-11-14 05:28:01 2019-11-14 05:28:08 t 1 1 169307 623 0.00 2019-11-14 05:28:19 2019-11-14 05:28:26 t 1 1 169308 623 0.00 2019-11-14 05:28:38 2019-11-14 05:28:40 t 1 1 169309 623 0.00 2019-11-14 05:28:45 2019-11-14 05:28:51 t 1 1 169310 623 0.00 2019-11-14 05:29:04 2019-11-14 05:29:05 t 1 1 169311 623 0.00 2019-11-14 05:29:10 2019-11-14 05:29:12 t 1 1 169313 623 0.00 2019-11-14 05:29:59 2019-11-14 05:30:06 t 1 1 169316 623 0.00 2019-11-14 05:30:45 2019-11-14 05:30:46 t 1 1 169320 623 0.00 2019-11-14 05:31:24 2019-11-14 05:31:31 t 1 1 169325 623 0.00 2019-11-14 05:33:20 2019-11-14 05:33:25 t 1 1 169329 623 0.00 2019-11-14 05:34:10 2019-11-14 05:34:13 t 1 1 169332 623 0.00 2019-11-14 05:34:44 2019-11-14 05:34:46 t 1 1 169334 623 0.00 2019-11-14 05:35:23 2019-11-14 05:35:29 t 1 1 169338 623 0.00 2019-11-14 05:36:15 2019-11-14 05:36:16 t 1 1 169344 623 0.00 2019-11-14 05:37:52 2019-11-14 05:38:07 t 1 1 169349 623 0.00 2019-11-14 05:42:11 2019-11-14 05:42:16 t 1 1 169353 623 0.00 2019-11-14 05:43:33 2019-11-14 05:43:50 t 1 1 169354 623 0.00 2019-11-14 05:44:02 2019-11-14 05:44:04 t 1 1 169357 623 0.00 2019-11-14 05:44:34 2019-11-14 05:44:36 t 1 1 169359 623 0.00 2019-11-14 05:44:55 2019-11-14 05:45:08 t 1 1 169363 623 0.00 2019-11-14 05:46:25 2019-11-14 05:46:27 t 1 1 169367 623 0.00 2019-11-14 05:47:27 2019-11-14 05:47:34 t 1 1 169369 520 0.00 2019-11-14 05:37:29 2019-11-14 05:47:50 t 1 1 169370 623 0.00 2019-11-14 05:47:53 2019-11-14 05:48:00 t 1 1 169373 623 0.00 2019-11-14 05:48:19 2019-11-14 05:48:45 t 1 1 169374 562 0.00 2019-11-14 05:48:48 2019-11-14 05:48:58 t 1 1 169377 623 0.00 2019-11-14 05:49:23 2019-11-14 05:49:24 t 1 1 169380 623 0.00 2019-11-14 05:49:44 2019-11-14 05:49:49 t 1 1 169385 623 0.00 2019-11-14 05:50:51 2019-11-14 05:50:57 t 1 1 169386 623 0.00 2019-11-14 05:51:10 2019-11-14 05:51:11 t 1 1 169390 623 0.00 2019-11-14 05:52:14 2019-11-14 05:52:16 t 1 1 169394 623 0.00 2019-11-14 05:53:23 2019-11-14 05:53:24 t 1 1 169398 623 0.00 2019-11-14 05:54:25 2019-11-14 05:54:32 t 1 1 169400 623 0.00 2019-11-14 05:54:45 2019-11-14 05:54:46 t 1 1 169402 623 0.00 2019-11-14 05:55:10 2019-11-14 05:55:12 t 1 1 169405 623 0.00 2019-11-14 05:55:42 2019-11-14 05:55:44 t 1 1 169406 623 0.00 2019-11-14 05:56:08 2019-11-14 05:56:09 t 1 1 169409 623 0.00 2019-11-14 05:56:47 2019-11-14 05:56:53 t 1 1 169410 623 0.00 2019-11-14 05:57:06 2019-11-14 05:57:07 t 1 1 169414 623 0.00 2019-11-14 05:58:12 2019-11-14 05:58:18 t 1 1 169417 623 0.00 2019-11-14 05:58:49 2019-11-14 05:58:55 t 1 1 169421 623 0.00 2019-11-14 05:59:21 2019-11-14 05:59:28 t 1 1 169426 623 0.00 2019-11-14 06:00:32 2019-11-14 06:00:33 t 1 1 169430 623 0.00 2019-11-14 06:01:40 2019-11-14 06:01:41 t 1 1 169434 623 0.00 2019-11-14 06:02:30 2019-11-14 06:02:32 t 1 1 169438 623 0.00 2019-11-14 06:03:38 2019-11-14 06:03:39 t 1 1 169442 623 0.00 2019-11-14 06:04:34 2019-11-14 06:04:35 t 1 1 169444 623 0.00 2019-11-14 06:05:06 2019-11-14 06:05:08 t 1 1 169448 623 0.00 2019-11-14 06:06:15 2019-11-14 06:06:17 t 1 1 169451 623 0.00 2019-11-14 06:06:47 2019-11-14 06:06:49 t 1 1 169452 623 0.00 2019-11-14 06:07:02 2019-11-14 06:07:20 t 1 1 169456 623 0.00 2019-11-14 06:08:18 2019-11-14 06:08:19 t 1 1 169460 623 0.00 2019-11-14 06:09:20 2019-11-14 06:09:22 t 1 1 169461 562 0.00 2019-11-14 06:09:37 2019-11-14 06:09:48 t 1 1 169465 623 0.00 2019-11-14 06:10:44 2019-11-14 06:10:46 t 1 1 169469 623 0.00 2019-11-14 06:11:47 2019-11-14 06:11:48 t 1 1 169473 623 0.00 2019-11-14 06:12:51 2019-11-14 06:12:53 t 1 1 169474 623 0.00 2019-11-14 06:12:58 2019-11-14 06:13:03 t 1 1 169478 623 0.00 2019-11-14 06:14:16 2019-11-14 06:14:38 t 1 1 169481 623 0.00 2019-11-14 06:15:55 2019-11-14 06:15:57 t 1 1 169482 623 0.00 2019-11-14 06:16:02 2019-11-14 06:16:04 t 1 1 169486 623 0.00 2019-11-14 06:17:06 2019-11-14 06:17:11 t 1 1 169489 623 0.00 2019-11-14 06:17:37 2019-11-14 06:17:44 t 1 1 169490 623 0.00 2019-11-14 06:17:57 2019-11-14 06:17:58 t 1 1 169493 623 0.00 2019-11-14 06:18:45 2019-11-14 06:18:51 t 1 1 169494 623 0.00 2019-11-14 06:18:57 2019-11-14 06:19:03 t 1 1 169497 562 0.00 2019-11-14 06:20:14 2019-11-14 06:20:24 t 1 1 169499 623 0.00 2019-11-14 06:20:46 2019-11-14 06:20:53 t 1 1 169500 623 0.00 2019-11-14 06:21:04 2019-11-14 06:21:06 t 1 1 169503 520 0.00 2019-11-14 06:15:21 2019-11-14 06:21:52 t 1 1 169506 623 0.00 2019-11-14 06:22:12 2019-11-14 06:22:14 t 1 1 169509 623 0.00 2019-11-14 06:22:45 2019-11-14 06:22:51 t 1 1 169510 623 0.00 2019-11-14 06:23:03 2019-11-14 06:23:05 t 1 1 169513 623 0.00 2019-11-14 06:23:34 2019-11-14 06:23:36 t 1 1 169517 623 0.00 2019-11-14 06:24:40 2019-11-14 06:24:47 t 1 1 169519 623 0.00 2019-11-14 06:25:00 2019-11-14 06:25:06 t 1 1 169523 623 0.00 2019-11-14 06:26:09 2019-11-14 06:26:15 t 1 1 169526 623 0.00 2019-11-14 06:26:54 2019-11-14 06:26:55 t 1 1 169527 623 0.00 2019-11-14 06:27:00 2019-11-14 06:27:02 t 1 1 169531 623 0.00 2019-11-14 06:28:10 2019-11-14 06:28:12 t 1 1 169535 623 0.00 2019-11-14 06:29:25 2019-11-14 06:29:41 t 1 1 169537 623 0.00 2019-11-14 06:30:25 2019-11-14 06:30:26 t 1 1 169541 562 0.00 2019-11-14 06:30:52 2019-11-14 06:31:03 t 1 1 169544 623 0.00 2019-11-14 06:31:48 2019-11-14 06:31:50 t 1 1 169545 623 0.00 2019-11-14 06:31:55 2019-11-14 06:32:02 t 1 1 169548 623 0.00 2019-11-14 06:32:36 2019-11-14 06:32:49 t 1 1 169549 623 0.00 2019-11-14 06:32:59 2019-11-14 06:33:05 t 1 1 169552 623 0.00 2019-11-14 06:33:44 2019-11-14 06:33:45 t 1 1 169556 623 0.00 2019-11-14 06:34:47 2019-11-14 06:34:48 t 1 1 169558 623 0.00 2019-11-14 06:35:00 2019-11-14 06:35:06 t 1 1 169561 623 0.00 2019-11-14 06:35:37 2019-11-14 06:35:42 t 1 1 169565 623 0.00 2019-11-14 06:36:27 2019-11-14 06:36:29 t 1 1 169569 623 0.00 2019-11-14 06:37:31 2019-11-14 06:37:33 t 1 1 169570 623 0.00 2019-11-14 06:37:46 2019-11-14 06:37:59 t 1 1 169575 623 0.00 2019-11-14 06:39:08 2019-11-14 06:39:10 t 1 1 169577 623 0.00 2019-11-14 06:39:51 2019-11-14 06:39:58 t 1 1 169578 623 0.00 2019-11-14 06:40:10 2019-11-14 06:40:12 t 1 1 169583 562 0.00 2019-11-14 06:41:29 2019-11-14 06:41:47 t 1 1 169585 520 0.00 2019-11-14 06:38:25 2019-11-14 06:41:59 t 1 1 169588 623 0.00 2019-11-14 06:42:54 2019-11-14 06:42:55 t 1 1 169589 623 0.00 2019-11-14 06:43:00 2019-11-14 06:43:02 t 1 1 169592 623 0.00 2019-11-14 06:43:39 2019-11-14 06:43:44 t 1 1 169595 623 0.00 2019-11-14 06:43:57 2019-11-14 06:44:10 t 1 1 169598 623 0.00 2019-11-14 06:44:47 2019-11-14 06:44:49 t 1 1 169602 623 0.00 2019-11-14 06:46:19 2019-11-14 06:46:25 t 1 1 169605 445 0.00 2019-11-14 06:46:46 2019-11-14 06:47:15 t 1 1 169613 623 0.00 2019-11-14 06:48:33 2019-11-14 06:48:34 t 1 1 169618 623 0.00 2019-11-14 06:50:00 2019-11-14 06:50:07 t 1 1 169622 623 0.00 2019-11-14 06:51:20 2019-11-14 06:51:33 t 1 1 169626 623 0.00 2019-11-14 06:52:29 2019-11-14 06:52:30 t 1 1 169627 623 0.00 2019-11-14 06:52:35 2019-11-14 06:52:37 t 1 1 169628 623 0.00 2019-11-14 06:52:50 2019-11-14 06:53:07 t 1 1 169312 623 0.00 2019-11-14 05:29:53 2019-11-14 05:29:54 t 1 1 169314 623 0.00 2019-11-14 05:30:19 2019-11-14 05:30:20 t 1 1 169317 623 0.00 2019-11-14 05:30:51 2019-11-14 05:30:53 t 1 1 169318 623 0.00 2019-11-14 05:30:58 2019-11-14 05:31:05 t 1 1 169321 623 0.00 2019-11-14 05:31:42 2019-11-14 05:31:44 t 1 1 169326 623 0.00 2019-11-14 05:33:38 2019-11-14 05:33:39 t 1 1 169330 623 0.00 2019-11-14 05:34:18 2019-11-14 05:34:25 t 1 1 169335 623 0.00 2019-11-14 05:35:42 2019-11-14 05:35:44 t 1 1 169339 623 0.00 2019-11-14 05:36:22 2019-11-14 05:36:24 t 1 1 169342 623 0.00 2019-11-14 05:37:41 2019-11-14 05:37:47 t 1 1 169345 623 0.00 2019-11-14 05:38:12 2019-11-14 05:38:13 t 1 1 169346 623 0.00 2019-11-14 05:41:16 2019-11-14 05:41:18 t 1 1 169350 623 0.00 2019-11-14 05:42:29 2019-11-14 05:42:31 t 1 1 169355 623 0.00 2019-11-14 05:44:09 2019-11-14 05:44:11 t 1 1 169358 623 0.00 2019-11-14 05:44:41 2019-11-14 05:44:43 t 1 1 169360 623 0.00 2019-11-14 05:45:15 2019-11-14 05:45:27 t 1 1 169364 623 0.00 2019-11-14 05:46:32 2019-11-14 05:46:34 t 1 1 169365 623 0.00 2019-11-14 05:46:47 2019-11-14 05:47:04 t 1 1 169368 623 0.00 2019-11-14 05:47:47 2019-11-14 05:47:48 t 1 1 169371 623 0.00 2019-11-14 05:48:13 2019-11-14 05:48:14 t 1 1 169372 562 0.00 2019-11-14 05:48:20 2019-11-14 05:48:35 t 1 1 169375 623 0.00 2019-11-14 05:48:58 2019-11-14 05:48:59 t 1 1 169378 623 0.00 2019-11-14 05:49:29 2019-11-14 05:49:31 t 1 1 169383 623 0.00 2019-11-14 05:50:25 2019-11-14 05:50:31 t 1 1 169387 623 0.00 2019-11-14 05:51:16 2019-11-14 05:51:18 t 1 1 169391 623 0.00 2019-11-14 05:52:21 2019-11-14 05:52:23 t 1 1 169395 623 0.00 2019-11-14 05:53:29 2019-11-14 05:53:31 t 1 1 169403 623 0.00 2019-11-14 05:55:17 2019-11-14 05:55:22 t 1 1 169407 623 0.00 2019-11-14 05:56:14 2019-11-14 05:56:16 t 1 1 169411 623 0.00 2019-11-14 05:57:12 2019-11-14 05:57:24 t 1 1 169415 623 0.00 2019-11-14 05:58:31 2019-11-14 05:58:33 t 1 1 169419 562 0.00 2019-11-14 05:58:56 2019-11-14 05:59:12 t 1 1 169422 623 0.00 2019-11-14 05:59:41 2019-11-14 05:59:42 t 1 1 169424 623 0.00 2019-11-14 06:00:06 2019-11-14 06:00:08 t 1 1 169427 623 0.00 2019-11-14 06:00:38 2019-11-14 06:00:40 t 1 1 169428 623 0.00 2019-11-14 06:00:53 2019-11-14 06:01:10 t 1 1 169432 623 0.00 2019-11-14 06:02:04 2019-11-14 06:02:11 t 1 1 169435 623 0.00 2019-11-14 06:02:37 2019-11-14 06:02:39 t 1 1 169436 623 0.00 2019-11-14 06:02:52 2019-11-14 06:03:08 t 1 1 169439 623 0.00 2019-11-14 06:03:44 2019-11-14 06:03:57 t 1 1 169440 623 0.00 2019-11-14 06:04:09 2019-11-14 06:04:11 t 1 1 169443 623 0.00 2019-11-14 06:04:41 2019-11-14 06:04:43 t 1 1 169445 623 0.00 2019-11-14 06:05:13 2019-11-14 06:05:15 t 1 1 169449 623 0.00 2019-11-14 06:06:22 2019-11-14 06:06:28 t 1 1 169453 623 0.00 2019-11-14 06:07:31 2019-11-14 06:07:38 t 1 1 169457 623 0.00 2019-11-14 06:08:24 2019-11-14 06:08:26 t 1 1 169458 623 0.00 2019-11-14 06:08:43 2019-11-14 06:09:00 t 1 1 169463 623 0.00 2019-11-14 06:10:02 2019-11-14 06:10:09 t 1 1 169466 623 0.00 2019-11-14 06:10:51 2019-11-14 06:10:53 t 1 1 169467 623 0.00 2019-11-14 06:11:06 2019-11-14 06:11:18 t 1 1 169470 623 0.00 2019-11-14 06:11:53 2019-11-14 06:11:55 t 1 1 169471 623 0.00 2019-11-14 06:12:08 2019-11-14 06:12:21 t 1 1 169475 623 0.00 2019-11-14 06:13:09 2019-11-14 06:13:25 t 1 1 169479 623 0.00 2019-11-14 06:14:58 2019-11-14 06:15:25 t 1 1 169483 623 0.00 2019-11-14 06:16:16 2019-11-14 06:16:29 t 1 1 169487 623 0.00 2019-11-14 06:17:24 2019-11-14 06:17:25 t 1 1 169491 623 0.00 2019-11-14 06:18:04 2019-11-14 06:18:09 t 1 1 169495 623 0.00 2019-11-14 06:19:16 2019-11-14 06:19:18 t 1 1 169501 623 0.00 2019-11-14 06:21:11 2019-11-14 06:21:17 t 1 1 169504 623 0.00 2019-11-14 06:21:36 2019-11-14 06:21:53 t 1 1 169507 623 0.00 2019-11-14 06:22:19 2019-11-14 06:22:26 t 1 1 169511 623 0.00 2019-11-14 06:23:10 2019-11-14 06:23:15 t 1 1 169514 623 0.00 2019-11-14 06:23:41 2019-11-14 06:23:43 t 1 1 169518 623 0.00 2019-11-14 06:24:54 2019-11-14 06:24:55 t 1 1 169520 623 0.00 2019-11-14 06:25:19 2019-11-14 06:25:21 t 1 1 169524 623 0.00 2019-11-14 06:26:28 2019-11-14 06:26:30 t 1 1 169528 623 0.00 2019-11-14 06:27:15 2019-11-14 06:27:33 t 1 1 169532 623 0.00 2019-11-14 06:28:36 2019-11-14 06:28:37 t 1 1 169538 623 0.00 2019-11-14 06:30:31 2019-11-14 06:30:37 t 1 1 169540 623 0.00 2019-11-14 06:30:57 2019-11-14 06:30:59 t 1 1 169542 623 0.00 2019-11-14 06:31:23 2019-11-14 06:31:24 t 1 1 169546 623 0.00 2019-11-14 06:32:14 2019-11-14 06:32:16 t 1 1 169550 623 0.00 2019-11-14 06:33:18 2019-11-14 06:33:19 t 1 1 169553 623 0.00 2019-11-14 06:33:50 2019-11-14 06:33:52 t 1 1 169554 623 0.00 2019-11-14 06:34:05 2019-11-14 06:34:18 t 1 1 169557 623 0.00 2019-11-14 06:34:53 2019-11-14 06:34:55 t 1 1 169559 623 0.00 2019-11-14 06:35:11 2019-11-14 06:35:18 t 1 1 169562 623 0.00 2019-11-14 06:35:55 2019-11-14 06:35:57 t 1 1 169563 623 0.00 2019-11-14 06:36:02 2019-11-14 06:36:08 t 1 1 169566 623 0.00 2019-11-14 06:36:42 2019-11-14 06:36:55 t 1 1 169567 623 0.00 2019-11-14 06:37:05 2019-11-14 06:37:12 t 1 1 169571 623 0.00 2019-11-14 06:38:10 2019-11-14 06:38:16 t 1 1 169572 623 0.00 2019-11-14 06:38:29 2019-11-14 06:38:30 t 1 1 169576 623 0.00 2019-11-14 06:39:23 2019-11-14 06:39:40 t 1 1 169579 623 0.00 2019-11-14 06:40:17 2019-11-14 06:40:23 t 1 1 169580 623 0.00 2019-11-14 06:40:36 2019-11-14 06:41:09 t 1 1 169586 623 0.00 2019-11-14 06:42:00 2019-11-14 06:42:13 t 1 1 169590 585 0.00 2019-11-14 06:40:08 2019-11-14 06:43:11 t 1 1 169594 445 0.00 2019-11-14 06:43:04 2019-11-14 06:44:07 t 1 1 169596 623 0.00 2019-11-14 06:44:21 2019-11-14 06:44:27 t 1 1 169603 623 0.00 2019-11-14 06:46:37 2019-11-14 06:46:39 t 1 1 169607 623 0.00 2019-11-14 06:45:35 2019-11-14 06:47:20 t 1 1 169610 623 0.00 2019-11-14 06:47:47 2019-11-14 06:47:54 t 1 1 169611 623 0.00 2019-11-14 06:48:06 2019-11-14 06:48:08 t 1 1 169614 623 0.00 2019-11-14 06:48:39 2019-11-14 06:48:41 t 1 1 169615 623 0.00 2019-11-14 06:48:54 2019-11-14 06:49:16 t 1 1 169617 623 0.00 2019-11-14 06:49:36 2019-11-14 06:49:49 t 1 1 169619 623 0.00 2019-11-14 06:50:12 2019-11-14 06:50:46 t 1 1 169620 623 0.00 2019-11-14 06:50:59 2019-11-14 06:51:01 t 1 1 169623 623 0.00 2019-11-14 06:51:44 2019-11-14 06:51:51 t 1 1 169624 623 0.00 2019-11-14 06:52:03 2019-11-14 06:52:05 t 1 1 169629 623 0.00 2019-11-14 06:53:18 2019-11-14 06:53:24 t 1 1 169630 623 0.00 2019-11-14 06:53:29 2019-11-14 06:54:04 t 1 1 169633 623 0.00 2019-11-14 06:54:49 2019-11-14 06:54:50 t 1 1 169635 623 0.00 2019-11-14 06:55:10 2019-11-14 06:55:46 t 1 1 169636 623 0.00 2019-11-14 06:55:57 2019-11-14 06:56:03 t 1 1 169639 623 0.00 2019-11-14 06:56:37 2019-11-14 06:56:50 t 1 1 169315 623 0.00 2019-11-14 05:30:25 2019-11-14 05:30:32 t 1 1 169319 623 0.00 2019-11-14 05:31:17 2019-11-14 05:31:19 t 1 1 169322 623 0.00 2019-11-14 05:31:49 2019-11-14 05:31:51 t 1 1 169323 623 0.00 2019-11-14 05:32:37 2019-11-14 05:32:39 t 1 1 169324 623 0.00 2019-11-14 05:32:51 2019-11-14 05:33:09 t 1 1 169327 623 0.00 2019-11-14 05:33:44 2019-11-14 05:33:51 t 1 1 169328 623 0.00 2019-11-14 05:34:03 2019-11-14 05:34:05 t 1 1 169331 623 0.00 2019-11-14 05:34:37 2019-11-14 05:34:39 t 1 1 169333 623 0.00 2019-11-14 05:34:59 2019-11-14 05:35:12 t 1 1 169336 623 0.00 2019-11-14 05:35:49 2019-11-14 05:35:51 t 1 1 169337 623 0.00 2019-11-14 05:35:56 2019-11-14 05:36:02 t 1 1 169340 623 0.00 2019-11-14 05:37:13 2019-11-14 05:37:30 t 1 1 169341 623 0.00 2019-11-14 05:36:53 2019-11-14 05:37:41 t 1 1 169343 562 0.00 2019-11-14 05:37:34 2019-11-14 05:37:55 t 1 1 169347 623 0.00 2019-11-14 05:41:35 2019-11-14 05:41:51 t 1 1 169348 623 0.00 2019-11-14 05:42:04 2019-11-14 05:42:05 t 1 1 169351 623 0.00 2019-11-14 05:42:36 2019-11-14 05:42:38 t 1 1 169352 623 0.00 2019-11-14 05:42:43 2019-11-14 05:43:28 t 1 1 169356 623 0.00 2019-11-14 05:44:16 2019-11-14 05:44:21 t 1 1 169361 623 0.00 2019-11-14 05:45:38 2019-11-14 05:45:45 t 1 1 169362 623 0.00 2019-11-14 05:46:06 2019-11-14 05:46:13 t 1 1 169366 623 0.00 2019-11-14 05:47:14 2019-11-14 05:47:22 t 1 1 169376 623 0.00 2019-11-14 05:49:05 2019-11-14 05:49:10 t 1 1 169379 623 0.00 2019-11-14 05:49:37 2019-11-14 05:49:39 t 1 1 169381 623 0.00 2019-11-14 05:50:02 2019-11-14 05:50:03 t 1 1 169382 623 0.00 2019-11-14 05:50:09 2019-11-14 05:50:25 t 1 1 169384 623 0.00 2019-11-14 05:50:44 2019-11-14 05:50:45 t 1 1 169388 623 0.00 2019-11-14 05:51:31 2019-11-14 05:51:44 t 1 1 169389 623 0.00 2019-11-14 05:51:55 2019-11-14 05:52:02 t 1 1 169392 623 0.00 2019-11-14 05:52:35 2019-11-14 05:52:53 t 1 1 169393 623 0.00 2019-11-14 05:53:04 2019-11-14 05:53:10 t 1 1 169396 623 0.00 2019-11-14 05:53:44 2019-11-14 05:53:50 t 1 1 169397 623 0.00 2019-11-14 05:54:01 2019-11-14 05:54:08 t 1 1 169399 516 0.00 2019-11-14 05:07:02 2019-11-14 05:54:34 t 1 1 169401 623 0.00 2019-11-14 05:54:51 2019-11-14 05:54:58 t 1 1 169404 623 0.00 2019-11-14 05:55:35 2019-11-14 05:55:37 t 1 1 169408 623 0.00 2019-11-14 05:56:40 2019-11-14 05:56:42 t 1 1 169412 623 0.00 2019-11-14 05:57:29 2019-11-14 05:57:31 t 1 1 169413 623 0.00 2019-11-14 05:57:43 2019-11-14 05:58:01 t 1 1 169416 623 0.00 2019-11-14 05:58:38 2019-11-14 05:58:44 t 1 1 169418 623 0.00 2019-11-14 05:59:08 2019-11-14 05:59:09 t 1 1 169420 623 0.00 2019-11-14 05:59:14 2019-11-14 05:59:16 t 1 1 169423 623 0.00 2019-11-14 05:59:47 2019-11-14 05:59:54 t 1 1 169425 623 0.00 2019-11-14 06:00:13 2019-11-14 06:00:19 t 1 1 169429 623 0.00 2019-11-14 06:01:21 2019-11-14 06:01:27 t 1 1 169431 623 0.00 2019-11-14 06:01:47 2019-11-14 06:02:04 t 1 1 169433 623 0.00 2019-11-14 06:02:23 2019-11-14 06:02:25 t 1 1 169437 623 0.00 2019-11-14 06:03:19 2019-11-14 06:03:25 t 1 1 169441 623 0.00 2019-11-14 06:04:16 2019-11-14 06:04:21 t 1 1 169446 623 0.00 2019-11-14 06:05:28 2019-11-14 06:05:45 t 1 1 169447 623 0.00 2019-11-14 06:05:56 2019-11-14 06:06:03 t 1 1 169450 623 0.00 2019-11-14 06:06:41 2019-11-14 06:06:42 t 1 1 169454 623 0.00 2019-11-14 06:07:51 2019-11-14 06:07:52 t 1 1 169455 623 0.00 2019-11-14 06:07:57 2019-11-14 06:08:05 t 1 1 169459 623 0.00 2019-11-14 06:09:13 2019-11-14 06:09:14 t 1 1 169462 623 0.00 2019-11-14 06:09:34 2019-11-14 06:09:51 t 1 1 169464 623 0.00 2019-11-14 06:10:14 2019-11-14 06:10:32 t 1 1 169468 623 0.00 2019-11-14 06:11:29 2019-11-14 06:11:34 t 1 1 169472 623 0.00 2019-11-14 06:12:32 2019-11-14 06:12:39 t 1 1 169476 623 0.00 2019-11-14 06:13:37 2019-11-14 06:13:44 t 1 1 169477 623 0.00 2019-11-14 06:13:55 2019-11-14 06:14:03 t 1 1 169480 623 0.00 2019-11-14 06:15:36 2019-11-14 06:15:43 t 1 1 169484 623 0.00 2019-11-14 06:16:40 2019-11-14 06:16:46 t 1 1 169485 623 0.00 2019-11-14 06:16:59 2019-11-14 06:17:00 t 1 1 169488 623 0.00 2019-11-14 06:17:30 2019-11-14 06:17:32 t 1 1 169492 623 0.00 2019-11-14 06:18:22 2019-11-14 06:18:34 t 1 1 169496 623 0.00 2019-11-14 06:19:23 2019-11-14 06:19:25 t 1 1 169498 623 0.00 2019-11-14 06:19:37 2019-11-14 06:20:36 t 1 1 169502 623 0.00 2019-11-14 06:21:30 2019-11-14 06:21:31 t 1 1 169505 623 0.00 2019-11-14 06:21:53 2019-11-14 06:22:00 t 1 1 169508 623 0.00 2019-11-14 06:22:38 2019-11-14 06:22:40 t 1 1 169512 623 0.00 2019-11-14 06:23:28 2019-11-14 06:23:29 t 1 1 169515 623 0.00 2019-11-14 06:23:49 2019-11-14 06:23:55 t 1 1 169516 623 0.00 2019-11-14 06:24:00 2019-11-14 06:24:27 t 1 1 169521 623 0.00 2019-11-14 06:25:26 2019-11-14 06:25:28 t 1 1 169522 623 0.00 2019-11-14 06:25:40 2019-11-14 06:25:58 t 1 1 169525 623 0.00 2019-11-14 06:26:35 2019-11-14 06:26:41 t 1 1 169529 623 0.00 2019-11-14 06:27:43 2019-11-14 06:27:50 t 1 1 169530 623 0.00 2019-11-14 06:28:03 2019-11-14 06:28:05 t 1 1 169533 623 0.00 2019-11-14 06:28:42 2019-11-14 06:28:44 t 1 1 169534 623 0.00 2019-11-14 06:28:57 2019-11-14 06:29:15 t 1 1 169536 623 0.00 2019-11-14 06:29:46 2019-11-14 06:30:12 t 1 1 169539 623 0.00 2019-11-14 06:30:50 2019-11-14 06:30:52 t 1 1 169543 623 0.00 2019-11-14 06:31:29 2019-11-14 06:31:35 t 1 1 169547 623 0.00 2019-11-14 06:32:21 2019-11-14 06:32:23 t 1 1 169551 623 0.00 2019-11-14 06:33:25 2019-11-14 06:33:31 t 1 1 169555 623 0.00 2019-11-14 06:34:29 2019-11-14 06:34:34 t 1 1 169560 623 0.00 2019-11-14 06:35:30 2019-11-14 06:35:32 t 1 1 169564 623 0.00 2019-11-14 06:36:21 2019-11-14 06:36:22 t 1 1 169568 623 0.00 2019-11-14 06:37:25 2019-11-14 06:37:26 t 1 1 169573 623 0.00 2019-11-14 06:38:35 2019-11-14 06:38:37 t 1 1 169574 623 0.00 2019-11-14 06:39:01 2019-11-14 06:39:03 t 1 1 169581 623 0.00 2019-11-14 06:41:20 2019-11-14 06:41:26 t 1 1 169582 623 0.00 2019-11-14 06:41:39 2019-11-14 06:41:40 t 1 1 169584 623 0.00 2019-11-14 06:41:46 2019-11-14 06:41:48 t 1 1 169587 623 0.00 2019-11-14 06:42:24 2019-11-14 06:42:41 t 1 1 169591 623 0.00 2019-11-14 06:43:15 2019-11-14 06:43:28 t 1 1 169593 562 0.00 2019-11-14 06:43:56 2019-11-14 06:44:02 t 1 1 169597 623 0.00 2019-11-14 06:44:40 2019-11-14 06:44:42 t 1 1 169599 623 0.00 2019-11-14 06:45:01 2019-11-14 06:45:23 t 1 1 169600 623 0.00 2019-11-14 06:45:43 2019-11-14 06:45:56 t 1 1 169601 623 0.00 2019-11-14 06:46:07 2019-11-14 06:46:14 t 1 1 169604 623 0.00 2019-11-14 06:46:44 2019-11-14 06:46:46 t 1 1 169606 623 0.00 2019-11-14 06:47:02 2019-11-14 06:47:18 t 1 1 169608 623 0.00 2019-11-14 06:47:31 2019-11-14 06:47:36 t 1 1 169609 562 0.00 2019-11-14 06:47:42 2019-11-14 06:47:50 t 1 1 169612 623 0.00 2019-11-14 06:48:13 2019-11-14 06:48:20 t 1 1 169616 445 0.00 2019-11-14 06:47:14 2019-11-14 06:49:37 t 1 1 169621 623 0.00 2019-11-14 06:51:06 2019-11-14 06:51:08 t 1 1 169625 623 0.00 2019-11-14 06:52:10 2019-11-14 06:52:16 t 1 1 169631 623 0.00 2019-11-14 06:54:09 2019-11-14 06:54:27 t 1 1 169637 623 0.00 2019-11-14 06:56:16 2019-11-14 06:56:17 t 1 1 169641 623 0.00 2019-11-14 06:57:20 2019-11-14 06:57:57 t 1 1 169643 562 0.00 2019-11-14 06:58:00 2019-11-14 06:58:27 t 1 1 169645 623 0.00 2019-11-14 06:58:33 2019-11-14 06:58:39 t 1 1 169646 623 0.00 2019-11-14 06:58:52 2019-11-14 06:59:24 t 1 1 169651 623 0.00 2019-11-14 07:00:40 2019-11-14 07:00:53 t 1 1 169652 623 0.00 2019-11-14 07:01:04 2019-11-14 07:01:10 t 1 1 169660 623 0.00 2019-11-14 07:03:26 2019-11-14 07:03:28 t 1 1 169662 445 0.00 2019-11-14 06:52:37 2019-11-14 07:03:35 t 1 1 169663 623 0.00 2019-11-14 07:04:14 2019-11-14 07:04:16 t 1 1 169666 623 0.00 2019-11-14 07:04:47 2019-11-14 07:04:49 t 1 1 169670 623 0.00 2019-11-14 07:06:27 2019-11-14 07:06:55 t 1 1 169671 623 0.00 2019-11-14 07:07:08 2019-11-14 07:07:09 t 1 1 169672 623 0.00 2019-11-14 07:07:14 2019-11-14 07:07:20 t 1 1 169678 623 0.00 2019-11-14 07:08:38 2019-11-14 07:08:40 t 1 1 169680 623 0.00 2019-11-14 07:08:45 2019-11-14 07:08:47 t 1 1 169681 623 0.00 2019-11-14 07:09:11 2019-11-14 07:09:13 t 1 1 169688 623 0.00 2019-11-14 07:11:21 2019-11-14 07:11:22 t 1 1 169692 623 0.00 2019-11-14 07:12:18 2019-11-14 07:12:20 t 1 1 169695 623 0.00 2019-11-14 07:12:51 2019-11-14 07:12:53 t 1 1 169696 623 0.00 2019-11-14 07:13:06 2019-11-14 07:13:23 t 1 1 169700 623 0.00 2019-11-14 07:14:14 2019-11-14 07:14:27 t 1 1 169702 562 0.00 2019-11-14 07:08:18 2019-11-14 07:14:57 t 1 1 169709 623 0.00 2019-11-14 07:15:37 2019-11-14 07:15:38 t 1 1 169711 623 0.00 2019-11-14 07:16:00 2019-11-14 07:16:06 t 1 1 169714 623 0.00 2019-11-14 07:16:33 2019-11-14 07:16:39 t 1 1 169719 623 0.00 2019-11-14 07:18:11 2019-11-14 07:18:12 t 1 1 169721 623 0.00 2019-11-14 07:18:17 2019-11-14 07:18:23 t 1 1 169726 623 0.00 2019-11-14 07:19:40 2019-11-14 07:19:41 t 1 1 169728 623 0.00 2019-11-14 07:20:01 2019-11-14 07:20:18 t 1 1 169732 623 0.00 2019-11-14 07:21:03 2019-11-14 07:21:05 t 1 1 169734 623 0.00 2019-11-14 07:21:17 2019-11-14 07:21:35 t 1 1 169740 623 0.00 2019-11-14 07:23:10 2019-11-14 07:23:12 t 1 1 169743 623 0.00 2019-11-14 07:23:37 2019-11-14 07:23:53 t 1 1 169744 623 0.00 2019-11-14 07:24:06 2019-11-14 07:24:07 t 1 1 169747 623 0.00 2019-11-14 07:24:39 2019-11-14 07:24:44 t 1 1 169750 623 0.00 2019-11-14 07:25:23 2019-11-14 07:25:24 t 1 1 169752 623 0.00 2019-11-14 07:25:29 2019-11-14 07:25:35 t 1 1 169756 623 0.00 2019-11-14 07:26:37 2019-11-14 07:26:43 t 1 1 169762 623 0.00 2019-11-14 07:28:19 2019-11-14 07:28:26 t 1 1 169765 623 0.00 2019-11-14 07:28:45 2019-11-14 07:28:51 t 1 1 169766 623 0.00 2019-11-14 07:29:04 2019-11-14 07:29:05 t 1 1 169769 623 0.00 2019-11-14 07:29:36 2019-11-14 07:29:38 t 1 1 169771 623 0.00 2019-11-14 07:30:09 2019-11-14 07:30:15 t 1 1 169774 623 0.00 2019-11-14 07:30:34 2019-11-14 07:30:41 t 1 1 169778 623 0.00 2019-11-14 07:31:24 2019-11-14 07:31:26 t 1 1 169782 623 0.00 2019-11-14 07:32:14 2019-11-14 07:32:21 t 1 1 169784 538 0.00 2019-11-14 07:10:38 2019-11-14 07:32:47 t 1 1 169785 623 0.00 2019-11-14 07:32:59 2019-11-14 07:33:00 t 1 1 169788 623 0.00 2019-11-14 07:33:30 2019-11-14 07:33:32 t 1 1 169790 623 0.00 2019-11-14 07:33:37 2019-11-14 07:33:43 t 1 1 169792 562 0.00 2019-11-14 07:34:02 2019-11-14 07:34:11 t 1 1 169797 623 0.00 2019-11-14 07:35:44 2019-11-14 07:35:46 t 1 1 169801 623 0.00 2019-11-14 07:36:34 2019-11-14 07:36:35 t 1 1 169803 623 0.00 2019-11-14 07:36:59 2019-11-14 07:37:00 t 1 1 169808 623 0.00 2019-11-14 07:37:41 2019-11-14 07:37:48 t 1 1 169809 623 0.00 2019-11-14 07:38:01 2019-11-14 07:38:02 t 1 1 169811 416 0.00 2019-11-13 21:57:23 2019-11-14 07:38:14 t 1 1 169812 623 0.00 2019-11-14 07:38:33 2019-11-14 07:38:35 t 1 1 169815 485 0.00 2019-11-14 07:36:55 2019-11-14 07:38:59 t 1 1 169818 623 0.00 2019-11-14 07:39:31 2019-11-14 07:39:32 t 1 1 169820 623 0.00 2019-11-14 07:39:52 2019-11-14 07:40:05 t 1 1 169821 623 0.00 2019-11-14 07:40:16 2019-11-14 07:40:22 t 1 1 169828 623 0.00 2019-11-14 07:41:50 2019-11-14 07:41:51 t 1 1 169829 623 0.00 2019-11-14 07:41:56 2019-11-14 07:41:58 t 1 1 169831 562 0.00 2019-11-14 07:41:30 2019-11-14 07:42:14 t 1 1 169837 623 0.00 2019-11-14 07:44:03 2019-11-14 07:44:05 t 1 1 169839 623 0.00 2019-11-14 07:44:18 2019-11-14 07:44:35 t 1 1 169840 623 0.00 2019-11-14 07:44:45 2019-11-14 07:44:52 t 1 1 169842 623 0.00 2019-11-14 07:45:11 2019-11-14 07:45:13 t 1 1 169845 623 0.00 2019-11-14 07:45:40 2019-11-14 07:45:53 t 1 1 169846 623 0.00 2019-11-14 07:46:04 2019-11-14 07:46:11 t 1 1 169849 623 0.00 2019-11-14 07:46:49 2019-11-14 07:46:51 t 1 1 169850 623 0.00 2019-11-14 07:46:56 2019-11-14 07:47:02 t 1 1 169853 623 0.00 2019-11-14 07:47:28 2019-11-14 07:47:35 t 1 1 169857 623 0.00 2019-11-14 07:48:32 2019-11-14 07:48:37 t 1 1 169864 623 0.00 2019-11-14 07:50:37 2019-11-14 07:50:39 t 1 1 169866 623 0.00 2019-11-14 07:50:44 2019-11-14 07:50:46 t 1 1 169868 623 0.00 2019-11-14 07:51:22 2019-11-14 07:51:29 t 1 1 169875 623 0.00 2019-11-14 07:53:17 2019-11-14 07:53:23 t 1 1 169876 623 0.00 2019-11-14 07:53:41 2019-11-14 07:53:44 t 1 1 169880 623 0.00 2019-11-14 07:54:15 2019-11-14 07:54:21 t 1 1 169885 623 0.00 2019-11-14 07:55:27 2019-11-14 07:55:34 t 1 1 169889 623 0.00 2019-11-14 07:56:08 2019-11-14 07:57:00 t 1 1 169892 623 0.00 2019-11-14 07:57:38 2019-11-14 07:57:45 t 1 1 169893 623 0.00 2019-11-14 07:57:57 2019-11-14 07:58:04 t 1 1 169896 623 0.00 2019-11-14 07:58:40 2019-11-14 07:58:42 t 1 1 169897 623 0.00 2019-11-14 07:58:55 2019-11-14 07:59:08 t 1 1 169900 623 0.00 2019-11-14 07:59:45 2019-11-14 07:59:51 t 1 1 169902 623 0.00 2019-11-14 08:00:10 2019-11-14 08:00:12 t 1 1 169903 623 0.00 2019-11-14 08:00:25 2019-11-14 08:00:41 t 1 1 169906 623 0.00 2019-11-14 08:01:11 2019-11-14 08:01:24 t 1 1 169909 623 0.00 2019-11-14 08:01:54 2019-11-14 08:01:56 t 1 1 169910 623 0.00 2019-11-14 08:02:01 2019-11-14 08:02:03 t 1 1 169914 623 0.00 2019-11-14 08:03:05 2019-11-14 08:03:07 t 1 1 169925 623 0.00 2019-11-14 08:05:44 2019-11-14 08:05:50 t 1 1 169926 623 0.00 2019-11-14 08:06:03 2019-11-14 08:06:04 t 1 1 169929 623 0.00 2019-11-14 08:06:35 2019-11-14 08:06:42 t 1 1 169931 623 0.00 2019-11-14 08:07:01 2019-11-14 08:07:17 t 1 1 169935 623 0.00 2019-11-14 08:07:43 2019-11-14 08:07:49 t 1 1 169936 623 0.00 2019-11-14 08:08:02 2019-11-14 08:08:03 t 1 1 169939 623 0.00 2019-11-14 08:08:47 2019-11-14 08:08:53 t 1 1 169940 623 0.00 2019-11-14 08:09:06 2019-11-14 08:09:07 t 1 1 169632 623 0.00 2019-11-14 06:54:40 2019-11-14 06:54:42 t 1 1 169634 623 0.00 2019-11-14 06:54:55 2019-11-14 06:54:57 t 1 1 169638 623 0.00 2019-11-14 06:56:22 2019-11-14 06:56:24 t 1 1 169647 623 0.00 2019-11-14 06:59:35 2019-11-14 06:59:42 t 1 1 169649 623 0.00 2019-11-14 07:00:02 2019-11-14 07:00:04 t 1 1 169653 623 0.00 2019-11-14 07:01:23 2019-11-14 07:01:57 t 1 1 169654 623 0.00 2019-11-14 07:02:08 2019-11-14 07:02:15 t 1 1 169657 623 0.00 2019-11-14 07:02:34 2019-11-14 07:02:41 t 1 1 169661 623 0.00 2019-11-14 07:03:33 2019-11-14 07:03:35 t 1 1 169664 623 0.00 2019-11-14 07:04:21 2019-11-14 07:04:28 t 1 1 169667 623 0.00 2019-11-14 07:05:30 2019-11-14 07:05:47 t 1 1 169668 623 0.00 2019-11-14 07:05:52 2019-11-14 07:06:08 t 1 1 169673 623 0.00 2019-11-14 07:07:33 2019-11-14 07:07:35 t 1 1 169675 623 0.00 2019-11-14 07:08:06 2019-11-14 07:08:07 t 1 1 169676 623 0.00 2019-11-14 07:08:12 2019-11-14 07:08:19 t 1 1 169682 623 0.00 2019-11-14 07:09:18 2019-11-14 07:09:20 t 1 1 169684 623 0.00 2019-11-14 07:10:08 2019-11-14 07:10:09 t 1 1 169689 623 0.00 2019-11-14 07:11:27 2019-11-14 07:11:34 t 1 1 169690 623 0.00 2019-11-14 07:11:39 2019-11-14 07:11:59 t 1 1 169693 623 0.00 2019-11-14 07:12:26 2019-11-14 07:12:32 t 1 1 169697 623 0.00 2019-11-14 07:13:34 2019-11-14 07:13:40 t 1 1 169701 623 0.00 2019-11-14 07:14:38 2019-11-14 07:14:45 t 1 1 169704 445 0.00 2019-11-14 07:07:10 2019-11-14 07:15:02 t 1 1 169705 623 0.00 2019-11-14 07:15:04 2019-11-14 07:15:06 t 1 1 169707 516 0.00 2019-11-14 07:07:54 2019-11-14 07:15:16 t 1 1 169710 623 0.00 2019-11-14 07:15:44 2019-11-14 07:16:00 t 1 1 169712 623 0.00 2019-11-14 07:16:19 2019-11-14 07:16:20 t 1 1 169715 623 0.00 2019-11-14 07:16:52 2019-11-14 07:16:54 t 1 1 169716 623 0.00 2019-11-14 07:16:59 2019-11-14 07:17:01 t 1 1 169720 445 0.00 2019-11-14 07:15:49 2019-11-14 07:18:20 t 1 1 169722 623 0.00 2019-11-14 07:18:36 2019-11-14 07:18:37 t 1 1 169724 623 0.00 2019-11-14 07:18:57 2019-11-14 07:19:10 t 1 1 169727 623 0.00 2019-11-14 07:19:46 2019-11-14 07:19:48 t 1 1 169729 623 0.00 2019-11-14 07:20:29 2019-11-14 07:20:36 t 1 1 169733 623 0.00 2019-11-14 07:18:49 2019-11-14 07:21:20 t 1 1 169735 623 0.00 2019-11-14 07:21:46 2019-11-14 07:21:53 t 1 1 169736 623 0.00 2019-11-14 07:21:58 2019-11-14 07:22:14 t 1 1 169738 623 0.00 2019-11-14 07:22:34 2019-11-14 07:22:51 t 1 1 169741 623 0.00 2019-11-14 07:23:17 2019-11-14 07:23:22 t 1 1 169745 623 0.00 2019-11-14 07:24:13 2019-11-14 07:24:20 t 1 1 169753 623 0.00 2019-11-14 07:25:48 2019-11-14 07:25:49 t 1 1 169757 623 0.00 2019-11-14 07:26:56 2019-11-14 07:26:57 t 1 1 169758 623 0.00 2019-11-14 07:27:03 2019-11-14 07:27:10 t 1 1 169759 623 0.00 2019-11-14 07:27:15 2019-11-14 07:27:42 t 1 1 169761 623 0.00 2019-11-14 07:28:01 2019-11-14 07:28:19 t 1 1 169767 623 0.00 2019-11-14 07:29:10 2019-11-14 07:29:17 t 1 1 169772 623 0.00 2019-11-14 07:30:28 2019-11-14 07:30:29 t 1 1 169773 445 0.00 2019-11-14 07:27:14 2019-11-14 07:30:40 t 1 1 169775 623 0.00 2019-11-14 07:30:54 2019-11-14 07:30:55 t 1 1 169776 623 0.00 2019-11-14 07:31:00 2019-11-14 07:31:05 t 1 1 169779 623 0.00 2019-11-14 07:31:31 2019-11-14 07:31:33 t 1 1 169780 623 0.00 2019-11-14 07:31:46 2019-11-14 07:32:03 t 1 1 169781 591 0.00 2019-11-14 07:25:03 2019-11-14 07:32:16 t 1 1 169783 623 0.00 2019-11-14 07:32:34 2019-11-14 07:32:36 t 1 1 169786 623 0.00 2019-11-14 07:33:05 2019-11-14 07:33:10 t 1 1 169789 562 0.00 2019-11-14 07:28:31 2019-11-14 07:33:38 t 1 1 169791 623 0.00 2019-11-14 07:34:03 2019-11-14 07:34:10 t 1 1 169793 623 0.00 2019-11-14 07:34:38 2019-11-14 07:34:40 t 1 1 169795 623 0.00 2019-11-14 07:35:00 2019-11-14 07:35:12 t 1 1 169798 623 0.00 2019-11-14 07:35:51 2019-11-14 07:35:56 t 1 1 169799 623 0.00 2019-11-14 07:36:09 2019-11-14 07:36:11 t 1 1 169802 623 0.00 2019-11-14 07:36:40 2019-11-14 07:36:46 t 1 1 169804 623 0.00 2019-11-14 07:37:05 2019-11-14 07:37:12 t 1 1 169806 538 0.00 2019-11-14 07:32:15 2019-11-14 07:37:31 t 1 1 169810 623 0.00 2019-11-14 07:38:07 2019-11-14 07:38:09 t 1 1 169813 623 0.00 2019-11-14 07:38:40 2019-11-14 07:38:42 t 1 1 169816 623 0.00 2019-11-14 07:39:05 2019-11-14 07:39:07 t 1 1 169819 623 0.00 2019-11-14 07:39:37 2019-11-14 07:39:39 t 1 1 169822 623 0.00 2019-11-14 07:40:35 2019-11-14 07:40:36 t 1 1 169824 623 0.00 2019-11-14 07:40:41 2019-11-14 07:40:48 t 1 1 169825 623 0.00 2019-11-14 07:41:01 2019-11-14 07:41:02 t 1 1 169832 623 0.00 2019-11-14 07:42:15 2019-11-14 07:42:32 t 1 1 169833 623 0.00 2019-11-14 07:42:44 2019-11-14 07:42:51 t 1 1 169834 623 0.00 2019-11-14 07:43:10 2019-11-14 07:43:27 t 1 1 169843 623 0.00 2019-11-14 07:45:18 2019-11-14 07:45:20 t 1 1 169847 623 0.00 2019-11-14 07:46:24 2019-11-14 07:46:25 t 1 1 169851 623 0.00 2019-11-14 07:47:14 2019-11-14 07:47:16 t 1 1 169854 623 0.00 2019-11-14 07:47:48 2019-11-14 07:47:55 t 1 1 169855 623 0.00 2019-11-14 07:48:06 2019-11-14 07:48:12 t 1 1 169858 623 0.00 2019-11-14 07:48:50 2019-11-14 07:48:51 t 1 1 169859 623 0.00 2019-11-14 07:48:56 2019-11-14 07:48:58 t 1 1 169860 623 0.00 2019-11-14 07:49:11 2019-11-14 07:49:29 t 1 1 169862 623 0.00 2019-11-14 07:49:59 2019-11-14 07:50:07 t 1 1 169865 591 0.00 2019-11-14 07:49:06 2019-11-14 07:50:45 t 1 1 169869 623 0.00 2019-11-14 07:51:42 2019-11-14 07:51:43 t 1 1 169873 562 0.00 2019-11-14 07:44:46 2019-11-14 07:53:10 t 1 1 169874 416 0.00 2019-11-14 07:38:25 2019-11-14 07:53:21 t 1 1 169877 623 0.00 2019-11-14 07:53:49 2019-11-14 07:53:56 t 1 1 169878 416 0.00 2019-11-14 07:53:39 2019-11-14 07:53:58 t 1 1 169881 623 0.00 2019-11-14 07:54:34 2019-11-14 07:54:35 t 1 1 169883 623 0.00 2019-11-14 07:55:02 2019-11-14 07:55:08 t 1 1 169886 623 0.00 2019-11-14 07:55:46 2019-11-14 07:55:48 t 1 1 169890 623 0.00 2019-11-14 07:57:11 2019-11-14 07:57:18 t 1 1 169894 623 0.00 2019-11-14 07:58:15 2019-11-14 07:58:21 t 1 1 169898 623 0.00 2019-11-14 07:59:19 2019-11-14 07:59:25 t 1 1 169904 485 0.00 2019-11-14 07:50:52 2019-11-14 08:00:53 t 1 1 169911 623 0.00 2019-11-14 08:02:15 2019-11-14 08:02:28 t 1 1 169915 623 0.00 2019-11-14 08:03:31 2019-11-14 08:03:32 t 1 1 169917 623 0.00 2019-11-14 08:04:03 2019-11-14 08:04:05 t 1 1 169919 562 0.00 2019-11-14 08:01:33 2019-11-14 08:04:17 t 1 1 169921 623 0.00 2019-11-14 08:04:53 2019-11-14 08:04:59 t 1 1 169922 623 0.00 2019-11-14 08:05:12 2019-11-14 08:05:13 t 1 1 169927 623 0.00 2019-11-14 08:06:09 2019-11-14 08:06:13 t 1 1 169928 623 0.00 2019-11-14 08:06:19 2019-11-14 08:06:35 t 1 1 169930 623 0.00 2019-11-14 08:06:54 2019-11-14 08:06:56 t 1 1 169933 623 0.00 2019-11-14 08:07:17 2019-11-14 08:07:24 t 1 1 169937 623 0.00 2019-11-14 08:08:08 2019-11-14 08:08:10 t 1 1 169640 623 0.00 2019-11-14 06:57:01 2019-11-14 06:57:07 t 1 1 169642 623 0.00 2019-11-14 06:58:08 2019-11-14 06:58:14 t 1 1 169644 623 0.00 2019-11-14 06:58:27 2019-11-14 06:58:28 t 1 1 169648 623 0.00 2019-11-14 06:59:55 2019-11-14 06:59:56 t 1 1 169650 623 0.00 2019-11-14 07:00:16 2019-11-14 07:00:34 t 1 1 169655 623 0.00 2019-11-14 07:02:28 2019-11-14 07:02:29 t 1 1 169656 562 0.00 2019-11-14 07:02:31 2019-11-14 07:02:41 t 1 1 169658 623 0.00 2019-11-14 07:02:53 2019-11-14 07:02:55 t 1 1 169659 623 0.00 2019-11-14 07:03:00 2019-11-14 07:03:02 t 1 1 169665 623 0.00 2019-11-14 07:04:41 2019-11-14 07:04:42 t 1 1 169669 623 0.00 2019-11-14 07:06:21 2019-11-14 07:06:22 t 1 1 169674 623 0.00 2019-11-14 07:07:40 2019-11-14 07:07:42 t 1 1 169677 623 0.00 2019-11-14 07:08:32 2019-11-14 07:08:33 t 1 1 169679 595 0.00 2019-11-14 07:05:43 2019-11-14 07:08:41 t 1 1 169683 623 0.00 2019-11-14 07:09:50 2019-11-14 07:09:55 t 1 1 169685 623 0.00 2019-11-14 07:10:14 2019-11-14 07:10:21 t 1 1 169686 623 0.00 2019-11-14 07:10:34 2019-11-14 07:10:51 t 1 1 169687 623 0.00 2019-11-14 07:11:01 2019-11-14 07:11:08 t 1 1 169691 623 0.00 2019-11-14 07:12:12 2019-11-14 07:12:13 t 1 1 169694 623 0.00 2019-11-14 07:12:45 2019-11-14 07:12:46 t 1 1 169698 623 0.00 2019-11-14 07:13:53 2019-11-14 07:13:54 t 1 1 169699 623 0.00 2019-11-14 07:14:00 2019-11-14 07:14:02 t 1 1 169703 623 0.00 2019-11-14 07:14:57 2019-11-14 07:14:59 t 1 1 169706 623 0.00 2019-11-14 07:15:11 2019-11-14 07:15:13 t 1 1 169708 623 0.00 2019-11-14 07:15:18 2019-11-14 07:15:24 t 1 1 169713 623 0.00 2019-11-14 07:16:25 2019-11-14 07:16:27 t 1 1 169717 623 0.00 2019-11-14 07:17:13 2019-11-14 07:17:41 t 1 1 169718 623 0.00 2019-11-14 07:17:52 2019-11-14 07:17:58 t 1 1 169723 623 0.00 2019-11-14 07:18:42 2019-11-14 07:18:44 t 1 1 169725 623 0.00 2019-11-14 07:19:21 2019-11-14 07:19:27 t 1 1 169730 623 0.00 2019-11-14 07:20:49 2019-11-14 07:20:51 t 1 1 169731 623 0.00 2019-11-14 07:20:56 2019-11-14 07:20:58 t 1 1 169737 623 0.00 2019-11-14 07:22:27 2019-11-14 07:22:29 t 1 1 169739 623 0.00 2019-11-14 07:22:51 2019-11-14 07:22:58 t 1 1 169742 623 0.00 2019-11-14 07:23:27 2019-11-14 07:23:32 t 1 1 169746 623 0.00 2019-11-14 07:24:33 2019-11-14 07:24:34 t 1 1 169748 623 0.00 2019-11-14 07:24:57 2019-11-14 07:24:58 t 1 1 169749 623 0.00 2019-11-14 07:25:04 2019-11-14 07:25:10 t 1 1 169751 585 0.00 2019-11-14 07:22:51 2019-11-14 07:25:29 t 1 1 169754 623 0.00 2019-11-14 07:25:54 2019-11-14 07:25:56 t 1 1 169755 623 0.00 2019-11-14 07:26:09 2019-11-14 07:26:26 t 1 1 169760 623 0.00 2019-11-14 07:27:55 2019-11-14 07:27:56 t 1 1 169763 562 0.00 2019-11-14 07:15:04 2019-11-14 07:28:31 t 1 1 169764 623 0.00 2019-11-14 07:28:39 2019-11-14 07:28:40 t 1 1 169768 623 0.00 2019-11-14 07:29:30 2019-11-14 07:29:31 t 1 1 169770 623 0.00 2019-11-14 07:30:02 2019-11-14 07:30:04 t 1 1 169777 623 0.00 2019-11-14 07:31:18 2019-11-14 07:31:19 t 1 1 169787 623 0.00 2019-11-14 07:33:23 2019-11-14 07:33:24 t 1 1 169794 623 0.00 2019-11-14 07:34:45 2019-11-14 07:34:47 t 1 1 169796 623 0.00 2019-11-14 07:35:23 2019-11-14 07:35:31 t 1 1 169800 623 0.00 2019-11-14 07:36:16 2019-11-14 07:36:21 t 1 1 169805 623 0.00 2019-11-14 07:37:24 2019-11-14 07:37:26 t 1 1 169807 623 0.00 2019-11-14 07:37:31 2019-11-14 07:37:36 t 1 1 169814 623 0.00 2019-11-14 07:38:47 2019-11-14 07:38:53 t 1 1 169817 623 0.00 2019-11-14 07:39:12 2019-11-14 07:39:18 t 1 1 169823 562 0.00 2019-11-14 07:40:21 2019-11-14 07:40:41 t 1 1 169826 623 0.00 2019-11-14 07:41:07 2019-11-14 07:41:14 t 1 1 169827 623 0.00 2019-11-14 07:41:19 2019-11-14 07:41:37 t 1 1 169830 597 0.00 2019-11-14 07:33:48 2019-11-14 07:42:11 t 1 1 169835 623 0.00 2019-11-14 07:43:38 2019-11-14 07:43:44 t 1 1 169836 623 0.00 2019-11-14 07:43:57 2019-11-14 07:43:58 t 1 1 169838 591 0.00 2019-11-14 07:42:34 2019-11-14 07:44:13 t 1 1 169841 623 0.00 2019-11-14 07:45:04 2019-11-14 07:45:06 t 1 1 169844 623 0.00 2019-11-14 07:45:25 2019-11-14 07:45:27 t 1 1 169848 623 0.00 2019-11-14 07:46:30 2019-11-14 07:46:36 t 1 1 169852 623 0.00 2019-11-14 07:47:21 2019-11-14 07:47:23 t 1 1 169856 623 0.00 2019-11-14 07:48:25 2019-11-14 07:48:26 t 1 1 169861 623 0.00 2019-11-14 07:49:40 2019-11-14 07:49:46 t 1 1 169863 623 0.00 2019-11-14 07:50:18 2019-11-14 07:50:25 t 1 1 169867 623 0.00 2019-11-14 07:50:59 2019-11-14 07:51:11 t 1 1 169870 623 0.00 2019-11-14 07:51:48 2019-11-14 07:51:50 t 1 1 169871 623 0.00 2019-11-14 07:52:14 2019-11-14 07:52:41 t 1 1 169872 623 0.00 2019-11-14 07:52:52 2019-11-14 07:52:58 t 1 1 169879 623 0.00 2019-11-14 07:54:09 2019-11-14 07:54:10 t 1 1 169882 623 0.00 2019-11-14 07:54:41 2019-11-14 07:54:57 t 1 1 169884 623 0.00 2019-11-14 07:55:21 2019-11-14 07:55:22 t 1 1 169887 623 0.00 2019-11-14 07:55:53 2019-11-14 07:55:55 t 1 1 169888 597 0.00 2019-11-14 07:42:11 2019-11-14 07:56:13 t 1 1 169891 623 0.00 2019-11-14 07:57:31 2019-11-14 07:57:32 t 1 1 169895 623 0.00 2019-11-14 07:58:34 2019-11-14 07:58:35 t 1 1 169899 623 0.00 2019-11-14 07:59:38 2019-11-14 07:59:39 t 1 1 169901 623 0.00 2019-11-14 08:00:03 2019-11-14 08:00:05 t 1 1 169905 623 0.00 2019-11-14 08:00:52 2019-11-14 08:00:59 t 1 1 169907 562 0.00 2019-11-14 07:53:10 2019-11-14 08:01:33 t 1 1 169908 623 0.00 2019-11-14 08:01:35 2019-11-14 08:01:42 t 1 1 169912 623 0.00 2019-11-14 08:02:39 2019-11-14 08:02:45 t 1 1 169913 623 0.00 2019-11-14 08:02:58 2019-11-14 08:02:59 t 1 1 169916 623 0.00 2019-11-14 08:03:37 2019-11-14 08:03:39 t 1 1 169918 623 0.00 2019-11-14 08:04:10 2019-11-14 08:04:12 t 1 1 169920 623 0.00 2019-11-14 08:04:25 2019-11-14 08:04:42 t 1 1 169923 623 0.00 2019-11-14 08:05:18 2019-11-14 08:05:25 t 1 1 169924 623 0.00 2019-11-14 08:05:38 2019-11-14 08:05:39 t 1 1 169932 562 0.00 2019-11-14 08:05:36 2019-11-14 08:07:20 t 1 1 169934 623 0.00 2019-11-14 08:07:36 2019-11-14 08:07:38 t 1 1 169938 623 0.00 2019-11-14 08:08:23 2019-11-14 08:08:36 t 1 1 169944 623 0.00 2019-11-14 08:09:46 2019-11-14 08:09:59 t 1 1 169945 623 0.00 2019-11-14 08:10:09 2019-11-14 08:10:16 t 1 1 169951 623 0.00 2019-11-14 08:11:24 2019-11-14 08:11:25 t 1 1 169952 623 0.00 2019-11-14 08:11:59 2019-11-14 08:12:00 t 1 1 169955 623 0.00 2019-11-14 08:12:38 2019-11-14 08:12:40 t 1 1 169959 623 0.00 2019-11-14 08:13:36 2019-11-14 08:13:37 t 1 1 169962 445 0.00 2019-11-14 07:30:40 2019-11-14 08:14:06 t 1 1 169965 485 0.00 2019-11-14 08:03:43 2019-11-14 08:14:35 t 1 1 169967 623 0.00 2019-11-14 08:14:51 2019-11-14 08:14:57 t 1 1 169969 623 0.00 2019-11-14 08:15:16 2019-11-14 08:15:21 t 1 1 169972 623 0.00 2019-11-14 08:15:55 2019-11-14 08:16:08 t 1 1 169977 623 0.00 2019-11-14 08:16:54 2019-11-14 08:16:56 t 1 1 169941 623 0.00 2019-11-14 08:09:13 2019-11-14 08:09:19 t 1 1 169943 623 0.00 2019-11-14 08:09:32 2019-11-14 08:09:39 t 1 1 169947 623 0.00 2019-11-14 08:10:35 2019-11-14 08:10:37 t 1 1 169950 623 0.00 2019-11-14 08:11:08 2019-11-14 08:11:10 t 1 1 169954 623 0.00 2019-11-14 08:12:31 2019-11-14 08:12:33 t 1 1 169958 623 0.00 2019-11-14 08:13:16 2019-11-14 08:13:23 t 1 1 169964 623 0.00 2019-11-14 08:14:08 2019-11-14 08:14:10 t 1 1 169966 623 0.00 2019-11-14 08:14:23 2019-11-14 08:14:40 t 1 1 169968 623 0.00 2019-11-14 08:15:09 2019-11-14 08:15:11 t 1 1 169974 562 0.00 2019-11-14 08:15:51 2019-11-14 08:16:32 t 1 1 169976 623 0.00 2019-11-14 08:16:47 2019-11-14 08:16:49 t 1 1 169978 623 0.00 2019-11-14 08:17:50 2019-11-14 08:17:52 t 1 1 169980 445 0.00 2019-11-14 08:15:42 2019-11-14 08:18:10 t 1 1 169981 623 0.00 2019-11-14 08:18:16 2019-11-14 08:18:17 t 1 1 169987 623 0.00 2019-11-14 08:19:05 2019-11-14 08:19:06 t 1 1 169992 623 0.00 2019-11-14 08:19:36 2019-11-14 08:19:38 t 1 1 169993 623 0.00 2019-11-14 08:20:02 2019-11-14 08:20:04 t 1 1 169996 623 0.00 2019-11-14 08:20:42 2019-11-14 08:20:44 t 1 1 169997 623 0.00 2019-11-14 08:21:08 2019-11-14 08:21:09 t 1 1 170000 623 0.00 2019-11-14 08:21:31 2019-11-14 08:21:32 t 1 1 170001 445 0.00 2019-11-14 08:19:44 2019-11-14 08:22:06 t 1 1 170008 623 0.00 2019-11-14 08:27:18 2019-11-14 08:27:24 t 1 1 170010 623 0.00 2019-11-14 08:27:43 2019-11-14 08:27:45 t 1 1 170013 615 0.00 2019-11-14 08:23:49 2019-11-14 08:28:30 t 1 1 170017 623 0.00 2019-11-14 08:28:52 2019-11-14 08:28:59 t 1 1 170022 623 0.00 2019-11-14 08:29:44 2019-11-14 08:29:46 t 1 1 170024 578 0.00 2019-11-13 22:50:10 2019-11-14 08:29:55 t 1 1 170027 623 0.00 2019-11-14 08:30:24 2019-11-14 08:30:26 t 1 1 170031 623 0.00 2019-11-14 08:31:12 2019-11-14 08:31:14 t 1 1 170035 623 0.00 2019-11-14 08:31:54 2019-11-14 08:32:12 t 1 1 170036 623 0.00 2019-11-14 08:32:30 2019-11-14 08:32:38 t 1 1 170037 562 0.00 2019-11-14 08:32:13 2019-11-14 08:32:46 t 1 1 170043 623 0.00 2019-11-14 08:34:12 2019-11-14 08:34:13 t 1 1 170046 585 0.00 2019-11-14 08:31:02 2019-11-14 08:34:36 t 1 1 170052 591 0.00 2019-11-14 08:33:44 2019-11-14 08:37:48 t 1 1 170054 623 0.00 2019-11-14 08:39:17 2019-11-14 08:39:23 t 1 1 170056 623 0.00 2019-11-14 08:39:29 2019-11-14 08:39:46 t 1 1 170058 514 0.00 2019-11-14 03:06:53 2019-11-14 08:40:27 t 1 1 170065 623 0.00 2019-11-14 08:41:26 2019-11-14 08:41:28 t 1 1 170067 623 0.00 2019-11-14 08:41:40 2019-11-14 08:41:53 t 1 1 170068 623 0.00 2019-11-14 08:42:04 2019-11-14 08:42:11 t 1 1 170069 623 0.00 2019-11-14 08:42:24 2019-11-14 08:42:25 t 1 1 170073 623 0.00 2019-11-14 08:42:45 2019-11-14 08:42:57 t 1 1 170075 623 0.00 2019-11-14 08:43:08 2019-11-14 08:43:15 t 1 1 170076 623 0.00 2019-11-14 08:43:28 2019-11-14 08:43:29 t 1 1 170077 623 0.00 2019-11-14 08:43:34 2019-11-14 08:43:51 t 1 1 170082 623 0.00 2019-11-14 08:44:47 2019-11-14 08:44:53 t 1 1 170084 623 0.00 2019-11-14 08:45:23 2019-11-14 08:45:24 t 1 1 170089 623 0.00 2019-11-14 08:46:15 2019-11-14 08:46:21 t 1 1 170091 623 0.00 2019-11-14 08:46:34 2019-11-14 08:46:35 t 1 1 170092 623 0.00 2019-11-14 08:46:40 2019-11-14 08:46:47 t 1 1 170095 623 0.00 2019-11-14 08:47:06 2019-11-14 08:47:08 t 1 1 170096 623 0.00 2019-11-14 08:47:21 2019-11-14 08:47:43 t 1 1 170097 623 0.00 2019-11-14 08:48:06 2019-11-14 08:48:08 t 1 1 170100 623 0.00 2019-11-14 08:49:10 2019-11-14 08:50:10 t 1 1 170103 562 0.00 2019-11-14 08:51:03 2019-11-14 08:51:30 t 1 1 170107 623 0.00 2019-11-14 08:55:51 2019-11-14 08:55:52 t 1 1 170110 623 0.00 2019-11-14 08:56:10 2019-11-14 08:56:26 t 1 1 170116 623 0.00 2019-11-14 09:04:13 2019-11-14 09:04:14 t 1 1 170124 623 0.00 2019-11-14 09:06:22 2019-11-14 09:06:28 t 1 1 170126 623 0.00 2019-11-14 09:06:45 2019-11-14 09:06:51 t 1 1 170127 623 0.00 2019-11-14 09:07:09 2019-11-14 09:07:14 t 1 1 170128 611 0.00 2019-11-14 09:10:00 2019-11-14 09:10:48 t 1 1 170131 562 0.00 2019-11-14 09:12:38 2019-11-14 09:13:04 t 1 1 170132 416 0.00 2019-11-14 09:16:28 2019-11-14 09:19:04 t 1 1 170135 623 0.00 2019-11-14 09:19:44 2019-11-14 09:19:50 t 1 1 170137 611 0.00 2019-11-14 09:10:47 2019-11-14 09:20:33 t 1 1 170144 637 0.00 2019-11-14 09:21:55 2019-11-14 09:25:21 t 1 1 170152 581 0.00 2019-11-14 09:24:35 2019-11-14 09:31:51 t 1 1 170153 562 0.00 2019-11-14 09:31:42 2019-11-14 09:32:05 t 1 1 170154 570 0.00 2019-11-14 09:22:01 2019-11-14 09:34:10 t 1 1 170156 481 0.00 2019-11-14 09:30:46 2019-11-14 09:35:34 t 1 1 170158 581 0.00 2019-11-14 09:31:51 2019-11-14 09:36:56 t 1 1 170159 623 0.00 2019-11-14 09:37:28 2019-11-14 09:40:42 t 1 1 170160 637 0.00 2019-11-14 09:29:01 2019-11-14 09:41:09 t 1 1 170163 485 0.00 2019-11-14 09:40:59 2019-11-14 09:43:08 t 1 1 170165 481 0.00 2019-11-14 09:35:34 2019-11-14 09:44:46 t 1 1 170168 623 0.00 2019-11-14 09:46:19 2019-11-14 09:46:47 t 1 1 170169 623 0.00 2019-11-14 09:47:06 2019-11-14 09:47:40 t 1 1 170171 623 0.00 2019-11-14 09:48:03 2019-11-14 09:48:03 f 1 1 170177 585 0.00 2019-11-14 09:37:46 2019-11-14 09:50:21 t 1 1 170179 416 0.00 2019-11-14 09:50:18 2019-11-14 09:51:07 t 1 1 170186 645 0.00 2019-11-14 09:53:28 2019-11-14 09:53:46 t 1 1 170188 516 0.00 2019-11-14 09:43:29 2019-11-14 09:56:23 t 1 1 170191 645 0.00 2019-11-14 09:57:58 2019-11-14 09:59:20 t 1 1 170193 412 0.00 2019-11-13 22:58:02 2019-11-14 10:01:32 t 1 1 170197 562 0.00 2019-11-14 10:04:03 2019-11-14 10:04:30 t 1 1 170198 562 0.00 2019-11-14 10:05:34 2019-11-14 10:05:42 t 1 1 170199 562 0.00 2019-11-14 10:06:12 2019-11-14 10:06:38 t 1 1 170200 637 0.00 2019-11-14 10:03:37 2019-11-14 10:08:55 t 1 1 170203 512 0.00 2019-11-14 09:43:57 2019-11-14 10:11:58 t 1 1 170204 619 0.00 2019-11-14 10:09:19 2019-11-14 10:13:48 t 1 1 170210 422 0.00 2019-11-14 10:04:38 2019-11-14 10:22:52 t 1 1 170212 562 0.00 2019-11-14 10:25:14 2019-11-14 10:25:39 t 1 1 170216 637 0.00 2019-11-14 10:25:57 2019-11-14 10:27:39 t 1 1 170217 544 0.00 2019-11-14 10:05:12 2019-11-14 10:28:43 t 1 1 170218 619 0.00 2019-11-14 10:27:54 2019-11-14 10:30:15 t 1 1 170220 485 0.00 2019-11-14 10:26:23 2019-11-14 10:30:42 t 1 1 170226 562 0.00 2019-11-14 10:33:15 2019-11-14 10:35:13 t 1 1 170231 658 0.00 2019-11-14 10:33:44 2019-11-14 10:37:46 t 1 1 170234 658 0.00 2019-11-14 10:38:40 2019-11-14 10:38:49 t 1 1 170235 637 0.00 2019-11-14 10:36:28 2019-11-14 10:39:20 t 1 1 170240 220 0.00 2019-11-14 10:41:20 2019-11-14 10:41:51 t 1 1 170243 658 0.00 2019-11-14 10:42:01 2019-11-14 10:42:36 t 1 1 170244 220 0.00 2019-11-14 10:42:25 2019-11-14 10:42:55 t 1 1 170246 544 0.00 2019-11-14 10:28:43 2019-11-14 10:43:23 t 1 1 170249 562 0.00 2019-11-14 10:40:42 2019-11-14 10:44:33 t 1 1 169942 645 0.00 2019-11-14 08:05:08 2019-11-14 08:09:26 t 1 1 169946 623 0.00 2019-11-14 08:10:29 2019-11-14 08:10:30 t 1 1 169948 562 0.00 2019-11-14 08:09:49 2019-11-14 08:10:48 t 1 1 169949 623 0.00 2019-11-14 08:11:01 2019-11-14 08:11:03 t 1 1 169953 623 0.00 2019-11-14 08:12:05 2019-11-14 08:12:07 t 1 1 169956 481 0.00 2019-11-14 08:00:31 2019-11-14 08:12:53 t 1 1 169957 623 0.00 2019-11-14 08:12:53 2019-11-14 08:13:06 t 1 1 169960 623 0.00 2019-11-14 08:13:42 2019-11-14 08:13:49 t 1 1 169961 623 0.00 2019-11-14 08:14:02 2019-11-14 08:14:03 t 1 1 169963 566 0.00 2019-11-14 08:10:10 2019-11-14 08:14:08 t 1 1 169970 623 0.00 2019-11-14 08:15:34 2019-11-14 08:15:35 t 1 1 169971 623 0.00 2019-11-14 08:15:40 2019-11-14 08:15:42 t 1 1 169973 623 0.00 2019-11-14 08:16:19 2019-11-14 08:16:23 t 1 1 169975 623 0.00 2019-11-14 08:16:28 2019-11-14 08:16:35 t 1 1 169984 623 0.00 2019-11-14 08:18:46 2019-11-14 08:18:52 t 1 1 169986 562 0.00 2019-11-14 08:18:33 2019-11-14 08:19:02 t 1 1 169989 623 0.00 2019-11-14 08:19:11 2019-11-14 08:19:17 t 1 1 169991 623 0.00 2019-11-14 08:19:30 2019-11-14 08:19:31 t 1 1 169995 623 0.00 2019-11-14 08:20:35 2019-11-14 08:20:37 t 1 1 169999 623 0.00 2019-11-14 08:21:22 2019-11-14 08:21:26 t 1 1 170003 416 0.00 2019-11-14 08:18:11 2019-11-14 08:24:58 t 1 1 170007 623 0.00 2019-11-14 08:27:12 2019-11-14 08:27:13 t 1 1 170011 562 0.00 2019-11-14 08:27:43 2019-11-14 08:27:46 t 1 1 170012 623 0.00 2019-11-14 08:27:58 2019-11-14 08:28:15 t 1 1 170015 623 0.00 2019-11-14 08:28:46 2019-11-14 08:28:47 t 1 1 170019 623 0.00 2019-11-14 08:29:18 2019-11-14 08:29:20 t 1 1 170021 562 0.00 2019-11-14 08:29:33 2019-11-14 08:29:39 t 1 1 170026 623 0.00 2019-11-14 08:30:18 2019-11-14 08:30:19 t 1 1 170028 562 0.00 2019-11-14 08:30:04 2019-11-14 08:30:34 t 1 1 170029 623 0.00 2019-11-14 08:30:43 2019-11-14 08:31:00 t 1 1 170033 623 0.00 2019-11-14 08:31:43 2019-11-14 08:31:49 t 1 1 170040 623 0.00 2019-11-14 08:33:19 2019-11-14 08:33:21 t 1 1 170041 623 0.00 2019-11-14 08:33:46 2019-11-14 08:33:47 t 1 1 170042 623 0.00 2019-11-14 08:33:53 2019-11-14 08:33:59 t 1 1 170045 445 0.00 2019-11-14 08:27:43 2019-11-14 08:34:28 t 1 1 170047 623 0.00 2019-11-14 08:34:33 2019-11-14 08:34:46 t 1 1 170050 623 0.00 2019-11-14 08:35:23 2019-11-14 08:35:25 t 1 1 170053 623 0.00 2019-11-14 08:35:38 2019-11-14 08:39:06 t 1 1 170055 516 0.00 2019-11-14 08:35:16 2019-11-14 08:39:25 t 1 1 170057 615 0.00 2019-11-14 08:28:30 2019-11-14 08:39:55 t 1 1 170059 562 0.00 2019-11-14 08:33:05 2019-11-14 08:40:27 t 1 1 170061 623 0.00 2019-11-14 08:39:58 2019-11-14 08:40:49 t 1 1 170064 623 0.00 2019-11-14 08:41:19 2019-11-14 08:41:20 t 1 1 170066 445 0.00 2019-11-14 08:34:27 2019-11-14 08:41:31 t 1 1 170071 615 0.00 2019-11-14 08:39:55 2019-11-14 08:42:37 t 1 1 170074 481 0.00 2019-11-14 08:12:53 2019-11-14 08:43:08 t 1 1 170079 623 0.00 2019-11-14 08:44:11 2019-11-14 08:44:17 t 1 1 170081 623 0.00 2019-11-14 08:44:28 2019-11-14 08:44:34 t 1 1 170083 623 0.00 2019-11-14 08:45:04 2019-11-14 08:45:10 t 1 1 170087 623 0.00 2019-11-14 08:45:50 2019-11-14 08:45:55 t 1 1 170088 623 0.00 2019-11-14 08:46:08 2019-11-14 08:46:10 t 1 1 170093 645 0.00 2019-11-14 08:45:37 2019-11-14 08:46:56 t 1 1 170094 623 0.00 2019-11-14 08:47:00 2019-11-14 08:47:01 t 1 1 170106 623 0.00 2019-11-14 08:55:31 2019-11-14 08:55:38 t 1 1 170108 445 0.00 2019-11-14 08:42:24 2019-11-14 08:55:56 t 1 1 170109 623 0.00 2019-11-14 08:55:57 2019-11-14 08:56:05 t 1 1 170113 623 0.00 2019-11-14 08:57:13 2019-11-14 08:57:20 t 1 1 170114 562 0.00 2019-11-14 09:01:50 2019-11-14 09:02:17 t 1 1 170115 623 0.00 2019-11-14 08:57:25 2019-11-14 09:04:00 t 1 1 170118 623 0.00 2019-11-14 09:04:26 2019-11-14 09:04:28 t 1 1 170120 623 0.00 2019-11-14 09:04:33 2019-11-14 09:04:35 t 1 1 170122 623 0.00 2019-11-14 09:05:27 2019-11-14 09:05:29 t 1 1 170125 611 0.00 2019-11-14 08:48:57 2019-11-14 09:06:45 t 1 1 170130 591 0.00 2019-11-14 08:37:49 2019-11-14 09:11:41 t 1 1 170133 623 0.00 2019-11-14 09:07:19 2019-11-14 09:19:14 t 1 1 170134 623 0.00 2019-11-14 09:19:27 2019-11-14 09:19:33 t 1 1 170136 623 0.00 2019-11-14 09:20:08 2019-11-14 09:20:11 t 1 1 170138 623 0.00 2019-11-14 09:20:14 2019-11-14 09:20:48 t 1 1 170139 562 0.00 2019-11-14 09:21:03 2019-11-14 09:21:17 t 1 1 170143 597 0.00 2019-11-14 08:42:52 2019-11-14 09:25:03 t 1 1 170145 619 0.00 2019-11-14 09:21:56 2019-11-14 09:25:47 t 1 1 170146 597 0.00 2019-11-14 09:25:01 2019-11-14 09:26:49 t 1 1 170147 637 0.00 2019-11-14 09:25:05 2019-11-14 09:27:58 t 1 1 170150 481 0.00 2019-11-14 09:11:31 2019-11-14 09:30:46 t 1 1 170151 597 0.00 2019-11-14 09:30:02 2019-11-14 09:31:39 t 1 1 170162 562 0.00 2019-11-14 09:42:35 2019-11-14 09:42:50 t 1 1 170173 416 0.00 2019-11-14 09:30:25 2019-11-14 09:49:01 t 1 1 170174 416 0.00 2019-11-14 09:48:08 2019-11-14 09:50:12 t 1 1 170178 597 0.00 2019-11-14 09:45:30 2019-11-14 09:50:35 t 1 1 170180 645 0.00 2019-11-14 09:51:17 2019-11-14 09:52:18 t 1 1 170182 637 0.00 2019-11-14 09:47:43 2019-11-14 09:52:38 t 1 1 170187 645 0.00 2019-11-14 09:55:14 2019-11-14 09:55:37 t 1 1 170189 591 0.00 2019-11-14 09:54:25 2019-11-14 09:56:44 t 1 1 170190 645 0.00 2019-11-14 09:58:44 2019-11-14 09:58:44 f 1 1 170192 645 0.00 2019-11-14 09:58:25 2019-11-14 10:00:20 t 1 1 170196 615 0.00 2019-11-14 10:02:01 2019-11-14 10:04:03 t 1 1 170201 637 0.00 2019-11-14 10:09:08 2019-11-14 10:09:35 t 1 1 170202 637 0.00 2019-11-14 10:09:47 2019-11-14 10:11:47 t 1 1 170207 570 0.00 2019-11-14 09:36:00 2019-11-14 10:16:35 t 1 1 170215 412 0.00 2019-11-14 10:01:32 2019-11-14 10:27:34 t 1 1 170219 562 0.00 2019-11-14 10:27:26 2019-11-14 10:30:16 t 1 1 170221 481 0.00 2019-11-14 10:26:29 2019-11-14 10:30:51 t 1 1 170222 637 0.00 2019-11-14 10:30:09 2019-11-14 10:31:43 t 1 1 170224 619 0.00 2019-11-14 10:30:30 2019-11-14 10:32:05 t 1 1 170225 570 0.00 2019-11-14 10:22:54 2019-11-14 10:34:03 t 1 1 170227 637 0.00 2019-11-14 10:34:34 2019-11-14 10:35:40 t 1 1 170228 485 0.00 2019-11-14 10:35:08 2019-11-14 10:36:19 t 1 1 170229 562 0.00 2019-11-14 10:36:31 2019-11-14 10:36:41 t 1 1 170230 485 0.00 2019-11-14 10:36:19 2019-11-14 10:37:20 t 1 1 170232 658 0.00 2019-11-14 10:37:48 2019-11-14 10:38:41 t 1 1 170236 220 0.00 2019-11-14 09:35:59 2019-11-14 10:40:14 t 1 1 170237 220 0.00 2019-11-14 10:40:14 2019-11-14 10:40:45 t 1 1 170238 570 0.00 2019-11-14 10:36:46 2019-11-14 10:41:11 t 1 1 170239 220 0.00 2019-11-14 10:40:45 2019-11-14 10:41:21 t 1 1 170241 658 0.00 2019-11-14 10:38:55 2019-11-14 10:41:57 t 1 1 170247 220 0.00 2019-11-14 10:42:55 2019-11-14 10:43:30 t 1 1 170252 220 0.00 2019-11-14 10:44:34 2019-11-14 10:45:04 t 1 1 169979 562 0.00 2019-11-14 08:17:13 2019-11-14 08:18:06 t 1 1 169982 623 0.00 2019-11-14 08:18:22 2019-11-14 08:18:27 t 1 1 169983 623 0.00 2019-11-14 08:18:40 2019-11-14 08:18:41 t 1 1 169985 566 0.00 2019-11-14 08:14:08 2019-11-14 08:18:55 t 1 1 169988 416 0.00 2019-11-14 07:53:58 2019-11-14 08:19:07 t 1 1 169990 562 0.00 2019-11-14 08:19:07 2019-11-14 08:19:19 t 1 1 169994 623 0.00 2019-11-14 08:20:09 2019-11-14 08:20:11 t 1 1 169998 623 0.00 2019-11-14 08:21:14 2019-11-14 08:21:16 t 1 1 170002 562 0.00 2019-11-14 08:19:58 2019-11-14 08:23:39 t 1 1 170004 623 0.00 2019-11-14 08:26:33 2019-11-14 08:26:35 t 1 1 170005 623 0.00 2019-11-14 08:26:47 2019-11-14 08:26:49 t 1 1 170006 623 0.00 2019-11-14 08:26:54 2019-11-14 08:26:59 t 1 1 170009 623 0.00 2019-11-14 08:27:37 2019-11-14 08:27:38 t 1 1 170014 623 0.00 2019-11-14 08:28:26 2019-11-14 08:28:33 t 1 1 170016 585 0.00 2019-11-14 08:26:36 2019-11-14 08:28:48 t 1 1 170018 623 0.00 2019-11-14 08:29:12 2019-11-14 08:29:13 t 1 1 170020 562 0.00 2019-11-14 08:28:57 2019-11-14 08:29:22 t 1 1 170023 623 0.00 2019-11-14 08:29:51 2019-11-14 08:29:53 t 1 1 170025 623 0.00 2019-11-14 08:29:58 2019-11-14 08:30:05 t 1 1 170030 562 0.00 2019-11-14 08:31:02 2019-11-14 08:31:13 t 1 1 170032 623 0.00 2019-11-14 08:31:37 2019-11-14 08:31:38 t 1 1 170034 562 0.00 2019-11-14 08:31:58 2019-11-14 08:32:06 t 1 1 170038 623 0.00 2019-11-14 08:32:43 2019-11-14 08:32:59 t 1 1 170039 623 0.00 2019-11-14 08:33:12 2019-11-14 08:33:14 t 1 1 170044 623 0.00 2019-11-14 08:34:18 2019-11-14 08:34:20 t 1 1 170048 623 0.00 2019-11-14 08:34:57 2019-11-14 08:35:04 t 1 1 170049 623 0.00 2019-11-14 08:35:17 2019-11-14 08:35:18 t 1 1 170051 520 0.00 2019-11-14 08:32:42 2019-11-14 08:37:10 t 1 1 170060 416 0.00 2019-11-14 08:26:34 2019-11-14 08:40:36 t 1 1 170062 562 0.00 2019-11-14 08:40:43 2019-11-14 08:40:49 t 1 1 170063 623 0.00 2019-11-14 08:40:59 2019-11-14 08:41:06 t 1 1 170070 623 0.00 2019-11-14 08:42:30 2019-11-14 08:42:32 t 1 1 170072 562 0.00 2019-11-14 08:42:33 2019-11-14 08:42:40 t 1 1 170078 623 0.00 2019-11-14 08:43:51 2019-11-14 08:43:58 t 1 1 170080 581 0.00 2019-11-14 08:22:01 2019-11-14 08:44:25 t 1 1 170085 623 0.00 2019-11-14 08:45:32 2019-11-14 08:45:33 t 1 1 170086 623 0.00 2019-11-14 08:45:38 2019-11-14 08:45:44 t 1 1 170090 481 0.00 2019-11-14 08:43:25 2019-11-14 08:46:35 t 1 1 170098 623 0.00 2019-11-14 08:48:13 2019-11-14 08:48:15 t 1 1 170099 623 0.00 2019-11-14 08:48:33 2019-11-14 08:48:50 t 1 1 170101 623 0.00 2019-11-14 08:50:26 2019-11-14 08:50:27 t 1 1 170102 619 0.00 2019-11-14 08:47:30 2019-11-14 08:51:13 t 1 1 170104 645 0.00 2019-11-14 08:49:56 2019-11-14 08:52:31 t 1 1 170105 570 0.00 2019-11-14 08:48:37 2019-11-14 08:53:53 t 1 1 170111 623 0.00 2019-11-14 08:56:39 2019-11-14 08:56:44 t 1 1 170112 623 0.00 2019-11-14 08:56:51 2019-11-14 08:57:02 t 1 1 170117 623 0.00 2019-11-14 09:04:19 2019-11-14 09:04:21 t 1 1 170119 570 0.00 2019-11-14 08:53:53 2019-11-14 09:04:33 t 1 1 170121 623 0.00 2019-11-14 09:05:20 2019-11-14 09:05:22 t 1 1 170123 623 0.00 2019-11-14 09:05:58 2019-11-14 09:06:22 t 1 1 170129 481 0.00 2019-11-14 08:46:47 2019-11-14 09:11:31 t 1 1 170140 591 0.00 2019-11-14 09:11:47 2019-11-14 09:21:54 t 1 1 170141 416 0.00 2019-11-14 09:19:25 2019-11-14 09:23:40 t 1 1 170142 581 0.00 2019-11-14 09:10:27 2019-11-14 09:24:35 t 1 1 170148 623 0.00 2019-11-14 09:25:59 2019-11-14 09:28:48 t 1 1 170149 416 0.00 2019-11-14 09:23:45 2019-11-14 09:30:16 t 1 1 170155 623 0.00 2019-11-14 09:34:40 2019-11-14 09:34:49 t 1 1 170157 623 0.00 2019-11-14 09:35:10 2019-11-14 09:36:14 t 1 1 170161 623 0.00 2019-11-14 09:41:20 2019-11-14 09:41:50 t 1 1 170164 623 0.00 2019-11-14 09:42:39 2019-11-14 09:43:17 t 1 1 170166 623 0.00 2019-11-14 09:43:17 2019-11-14 09:45:54 t 1 1 170167 623 0.00 2019-11-14 09:45:59 2019-11-14 09:46:06 t 1 1 170170 637 0.00 2019-11-14 09:46:33 2019-11-14 09:47:43 t 1 1 170172 623 0.00 2019-11-14 09:46:11 2019-11-14 09:48:20 t 1 1 170175 481 0.00 2019-11-14 09:44:46 2019-11-14 09:50:16 t 1 1 170176 623 0.00 2019-11-14 09:47:51 2019-11-14 09:50:20 t 1 1 170181 481 0.00 2019-11-14 09:50:16 2019-11-14 09:52:31 t 1 1 170183 619 0.00 2019-11-14 09:38:08 2019-11-14 09:52:47 t 1 1 170184 416 0.00 2019-11-14 09:51:14 2019-11-14 09:53:07 t 1 1 170185 562 0.00 2019-11-14 09:53:11 2019-11-14 09:53:38 t 1 1 170194 516 0.00 2019-11-14 10:00:06 2019-11-14 10:01:52 t 1 1 170195 637 0.00 2019-11-14 09:52:47 2019-11-14 10:02:53 t 1 1 170205 562 0.00 2019-11-14 10:09:51 2019-11-14 10:14:42 t 1 1 170206 562 0.00 2019-11-14 10:15:42 2019-11-14 10:16:16 t 1 1 170208 570 0.00 2019-11-14 10:16:35 2019-11-14 10:20:57 t 1 1 170209 581 0.00 2019-11-14 09:42:35 2019-11-14 10:22:12 t 1 1 170211 637 0.00 2019-11-14 10:16:35 2019-11-14 10:24:56 t 1 1 170213 481 0.00 2019-11-14 09:52:31 2019-11-14 10:26:29 t 1 1 170214 562 0.00 2019-11-14 10:25:51 2019-11-14 10:26:57 t 1 1 170223 581 0.00 2019-11-14 10:24:23 2019-11-14 10:31:56 t 1 1 170233 485 0.00 2019-11-14 10:37:20 2019-11-14 10:38:48 t 1 1 170242 220 0.00 2019-11-14 10:41:50 2019-11-14 10:42:25 t 1 1 170245 658 0.00 2019-11-14 10:42:42 2019-11-14 10:43:22 t 1 1 170248 220 0.00 2019-11-14 10:43:29 2019-11-14 10:44:00 t 1 1 170250 220 0.00 2019-11-14 10:43:59 2019-11-14 10:44:34 t 1 1 170253 416 0.00 2019-11-14 09:54:03 2019-11-14 10:48:23 t 1 1 170254 416 0.00 2019-11-14 10:48:22 2019-11-14 10:49:10 t 1 1 170256 416 0.00 2019-11-14 10:49:10 2019-11-14 10:52:24 t 1 1 170257 512 0.00 2019-11-14 10:49:58 2019-11-14 10:56:23 t 1 1 170259 416 0.00 2019-11-14 10:52:24 2019-11-14 11:00:33 t 1 1 170262 544 0.00 2019-11-14 10:43:23 2019-11-14 11:03:45 t 1 1 170263 554 0.00 2019-11-14 11:03:57 2019-11-14 11:03:57 f 1 1 170264 554 0.00 2019-11-14 11:04:05 2019-11-14 11:04:05 f 1 1 170266 416 0.00 2019-11-14 11:00:32 2019-11-14 11:04:26 t 1 1 170272 538 0.00 2019-11-14 11:05:18 2019-11-14 11:06:27 t 1 1 170275 554 0.00 2019-11-14 11:08:34 2019-11-14 11:08:34 f 1 1 170277 562 0.00 2019-11-14 11:08:17 2019-11-14 11:09:18 t 1 1 170282 520 0.00 2019-11-14 10:50:56 2019-11-14 11:14:50 t 1 1 170285 637 0.00 2019-11-14 11:12:13 2019-11-14 11:15:32 t 1 1 170293 562 0.00 2019-11-14 11:11:26 2019-11-14 11:20:43 t 1 1 170295 619 0.00 2019-11-14 11:17:24 2019-11-14 11:21:15 t 1 1 170296 623 0.00 2019-11-14 11:21:33 2019-11-14 11:22:06 t 1 1 170298 220 0.00 2019-11-14 10:45:04 2019-11-14 11:24:22 t 1 1 170302 562 0.00 2019-11-14 11:23:27 2019-11-14 11:25:12 t 1 1 170307 416 0.00 2019-11-14 11:18:03 2019-11-14 11:28:35 t 1 1 170309 520 0.00 2019-11-14 11:25:58 2019-11-14 11:29:09 t 1 1 170311 220 0.00 2019-11-14 11:24:22 2019-11-14 11:30:17 t 1 1 170251 658 0.00 2019-11-14 10:43:24 2019-11-14 10:44:45 t 1 1 170255 512 0.00 2019-11-14 10:12:39 2019-11-14 10:49:30 t 1 1 170258 481 0.00 2019-11-14 10:31:35 2019-11-14 11:00:20 t 1 1 170260 578 0.00 2019-11-14 10:41:14 2019-11-14 11:02:49 t 1 1 170268 554 0.00 2019-11-14 11:04:55 2019-11-14 11:04:55 f 1 1 170270 554 0.00 2019-11-14 11:05:19 2019-11-14 11:05:19 f 1 1 170273 514 0.00 2019-11-14 10:43:46 2019-11-14 11:06:48 t 1 1 170274 554 0.00 2019-11-14 11:08:27 2019-11-14 11:08:27 f 1 1 170276 481 0.00 2019-11-14 11:01:35 2019-11-14 11:08:54 t 1 1 170280 416 0.00 2019-11-14 11:10:30 2019-11-14 11:11:38 t 1 1 170281 578 0.00 2019-11-14 11:02:49 2019-11-14 11:12:45 t 1 1 170283 481 0.00 2019-11-14 11:09:56 2019-11-14 11:15:23 t 1 1 170287 514 0.00 2019-11-14 11:06:48 2019-11-14 11:16:08 t 1 1 170290 623 0.00 2019-11-14 11:18:29 2019-11-14 11:18:31 t 1 1 170291 623 0.00 2019-11-14 11:18:43 2019-11-14 11:19:40 t 1 1 170294 637 0.00 2019-11-14 11:15:52 2019-11-14 11:20:52 t 1 1 170299 591 0.00 2019-11-14 11:19:44 2019-11-14 11:24:41 t 1 1 170303 514 0.00 2019-11-14 11:16:08 2019-11-14 11:25:38 t 1 1 170305 570 0.00 2019-11-14 10:41:11 2019-11-14 11:27:32 t 1 1 170312 591 0.00 2019-11-14 11:28:16 2019-11-14 11:32:09 t 1 1 170315 416 0.00 2019-11-14 11:29:35 2019-11-14 11:36:57 t 1 1 170316 562 0.00 2019-11-14 11:37:08 2019-11-14 11:37:38 t 1 1 170320 623 0.00 2019-11-14 11:44:01 2019-11-14 11:44:15 t 1 1 170323 416 0.00 2019-11-14 11:37:52 2019-11-14 11:44:56 t 1 1 170324 622 0.00 2019-11-14 11:36:59 2019-11-14 11:44:57 t 1 1 170325 562 0.00 2019-11-14 11:47:50 2019-11-14 11:48:02 t 1 1 170329 623 0.00 2019-11-14 11:48:46 2019-11-14 11:49:02 t 1 1 170332 623 0.00 2019-11-14 11:49:41 2019-11-14 11:49:42 t 1 1 170334 623 0.00 2019-11-14 11:50:06 2019-11-14 11:50:07 t 1 1 170339 623 0.00 2019-11-14 11:51:04 2019-11-14 11:51:16 t 1 1 170341 619 0.00 2019-11-14 11:46:01 2019-11-14 11:51:35 t 1 1 170343 623 0.00 2019-11-14 11:51:46 2019-11-14 11:51:47 t 1 1 170351 623 0.00 2019-11-14 11:52:50 2019-11-14 11:52:51 t 1 1 170353 623 0.00 2019-11-14 11:53:40 2019-11-14 11:53:42 t 1 1 170355 623 0.00 2019-11-14 11:53:59 2019-11-14 11:58:21 t 1 1 170358 623 0.00 2019-11-14 11:58:45 2019-11-14 11:58:46 t 1 1 170368 623 0.00 2019-11-14 11:59:18 2019-11-14 12:03:10 t 1 1 170372 220 0.00 2019-11-14 12:03:41 2019-11-14 12:04:18 t 1 1 170373 416 0.00 2019-11-14 11:53:02 2019-11-14 12:04:59 t 1 1 170374 220 0.00 2019-11-14 12:04:18 2019-11-14 12:05:16 t 1 1 170376 220 0.00 2019-11-14 12:05:16 2019-11-14 12:05:53 t 1 1 170378 562 0.00 2019-11-14 11:57:28 2019-11-14 12:07:34 t 1 1 170381 623 0.00 2019-11-14 12:03:29 2019-11-14 12:08:35 t 1 1 170382 623 0.00 2019-11-14 12:08:40 2019-11-14 12:08:59 t 1 1 172038 619 0.00 2019-11-15 03:58:42 2019-11-15 04:02:00 t 1 1 172041 623 0.00 2019-11-15 04:03:08 2019-11-15 04:03:10 t 1 1 172042 593 0.00 2019-11-15 03:43:53 2019-11-15 04:04:29 t 1 1 172045 623 0.00 2019-11-15 04:09:19 2019-11-15 04:09:21 t 1 1 172047 562 0.00 2019-11-15 04:10:12 2019-11-15 04:10:35 t 1 1 172051 623 0.00 2019-11-15 04:14:31 2019-11-15 04:14:42 t 1 1 172055 220 0.00 2019-11-15 04:17:28 2019-11-15 04:17:36 t 1 1 172059 623 0.00 2019-11-15 04:18:29 2019-11-15 04:18:36 t 1 1 172061 562 0.00 2019-11-15 04:20:56 2019-11-15 04:21:17 t 1 1 172065 623 0.00 2019-11-15 04:27:18 2019-11-15 04:27:19 t 1 1 172067 220 0.00 2019-11-15 04:28:30 2019-11-15 04:28:44 t 1 1 172068 623 0.00 2019-11-15 04:29:57 2019-11-15 04:29:58 t 1 1 172069 623 0.00 2019-11-15 04:30:04 2019-11-15 04:30:05 t 1 1 172073 619 0.00 2019-11-15 04:30:03 2019-11-15 04:35:31 t 1 1 172080 623 0.00 2019-11-15 04:46:58 2019-11-15 04:47:04 t 1 1 172081 623 0.00 2019-11-15 04:47:54 2019-11-15 04:47:55 t 1 1 172082 623 0.00 2019-11-15 04:48:29 2019-11-15 04:48:35 t 1 1 172090 623 0.00 2019-11-15 04:52:58 2019-11-15 04:52:59 t 1 1 172091 562 0.00 2019-11-15 04:53:13 2019-11-15 04:53:36 t 1 1 172092 623 0.00 2019-11-15 04:56:52 2019-11-15 04:56:54 t 1 1 172093 623 0.00 2019-11-15 04:57:48 2019-11-15 04:57:52 t 1 1 172098 623 0.00 2019-11-15 05:03:59 2019-11-15 05:04:00 t 1 1 172104 623 0.00 2019-11-15 05:11:39 2019-11-15 05:11:42 t 1 1 172105 623 0.00 2019-11-15 05:12:48 2019-11-15 05:12:52 t 1 1 172112 623 0.00 2019-11-15 05:28:39 2019-11-15 05:28:42 t 1 1 172113 220 0.00 2019-11-15 05:29:08 2019-11-15 05:29:21 t 1 1 172115 623 0.00 2019-11-15 05:30:42 2019-11-15 05:30:43 t 1 1 172119 623 0.00 2019-11-15 05:36:38 2019-11-15 05:36:39 t 1 1 172120 623 0.00 2019-11-15 05:37:33 2019-11-15 05:37:35 t 1 1 172122 220 0.00 2019-11-15 05:39:38 2019-11-15 05:39:45 t 1 1 172123 220 0.00 2019-11-15 05:39:53 2019-11-15 05:40:08 t 1 1 172124 623 0.00 2019-11-15 05:40:07 2019-11-15 05:40:23 t 1 1 172125 562 0.00 2019-11-15 05:43:53 2019-11-15 05:44:15 t 1 1 172126 562 0.00 2019-11-15 05:44:43 2019-11-15 05:46:24 t 1 1 172127 623 0.00 2019-11-15 05:46:29 2019-11-15 05:47:29 t 1 1 172128 623 0.00 2019-11-15 05:47:40 2019-11-15 05:49:04 t 1 1 172129 623 0.00 2019-11-15 05:50:20 2019-11-15 05:50:23 t 1 1 172132 623 0.00 2019-11-15 05:56:31 2019-11-15 05:56:32 t 1 1 172134 623 0.00 2019-11-15 05:56:38 2019-11-15 05:56:39 t 1 1 172135 623 0.00 2019-11-15 05:56:46 2019-11-15 05:57:46 t 1 1 172140 220 0.00 2019-11-15 06:00:53 2019-11-15 06:01:07 t 1 1 172141 562 0.00 2019-11-15 06:05:21 2019-11-15 06:05:46 t 1 1 172142 623 0.00 2019-11-15 06:06:26 2019-11-15 06:06:27 t 1 1 172144 623 0.00 2019-11-15 06:08:40 2019-11-15 06:08:42 t 1 1 172145 623 0.00 2019-11-15 06:09:44 2019-11-15 06:09:45 t 1 1 172148 220 0.00 2019-11-15 06:11:23 2019-11-15 06:11:38 t 1 1 172151 562 0.00 2019-11-15 06:14:11 2019-11-15 06:14:25 t 1 1 172155 623 0.00 2019-11-15 06:22:12 2019-11-15 06:22:13 t 1 1 172156 623 0.00 2019-11-15 06:22:20 2019-11-15 06:22:21 t 1 1 172158 656 0.00 2019-11-14 22:56:09 2019-11-15 06:22:53 t 1 1 172166 516 0.00 2019-11-15 06:23:57 2019-11-15 06:27:21 t 1 1 172167 485 0.00 2019-11-15 06:20:23 2019-11-15 06:28:38 t 1 1 172169 623 0.00 2019-11-15 06:28:22 2019-11-15 06:29:23 t 1 1 172170 623 0.00 2019-11-15 06:29:51 2019-11-15 06:29:56 t 1 1 172173 514 0.00 2019-11-15 06:29:26 2019-11-15 06:30:28 t 1 1 172175 485 0.00 2019-11-15 06:28:38 2019-11-15 06:34:53 t 1 1 172179 562 0.00 2019-11-15 06:39:30 2019-11-15 06:39:51 t 1 1 172184 623 0.00 2019-11-15 06:49:15 2019-11-15 06:49:38 t 1 1 172187 623 0.00 2019-11-15 06:50:27 2019-11-15 06:50:30 t 1 1 172194 623 0.00 2019-11-15 06:58:21 2019-11-15 06:58:35 t 1 1 172198 562 0.00 2019-11-15 07:01:01 2019-11-15 07:01:21 t 1 1 172201 623 0.00 2019-11-15 07:09:40 2019-11-15 07:09:43 t 1 1 172203 220 0.00 2019-11-15 07:11:03 2019-11-15 07:11:10 t 1 1 170261 554 0.00 2019-11-14 11:03:38 2019-11-14 11:03:38 f 1 1 170265 554 0.00 2019-11-14 11:04:24 2019-11-14 11:04:24 f 1 1 170267 554 0.00 2019-11-14 11:04:49 2019-11-14 11:04:49 f 1 1 170269 538 0.00 2019-11-14 10:15:09 2019-11-14 11:05:18 t 1 1 170271 562 0.00 2019-11-14 10:47:10 2019-11-14 11:05:41 t 1 1 170278 416 0.00 2019-11-14 11:06:26 2019-11-14 11:10:30 t 1 1 170279 637 0.00 2019-11-14 10:45:35 2019-11-14 11:11:34 t 1 1 170284 416 0.00 2019-11-14 11:11:38 2019-11-14 11:15:25 t 1 1 170286 416 0.00 2019-11-14 11:15:23 2019-11-14 11:16:04 t 1 1 170288 416 0.00 2019-11-14 11:16:04 2019-11-14 11:17:42 t 1 1 170289 623 0.00 2019-11-14 11:15:39 2019-11-14 11:18:16 t 1 1 170292 591 0.00 2019-11-14 10:03:31 2019-11-14 11:19:44 t 1 1 170297 562 0.00 2019-11-14 11:22:16 2019-11-14 11:22:25 t 1 1 170300 538 0.00 2019-11-14 11:06:27 2019-11-14 11:24:46 t 1 1 170301 597 0.00 2019-11-14 11:22:57 2019-11-14 11:25:09 t 1 1 170304 520 0.00 2019-11-14 11:14:50 2019-11-14 11:25:59 t 1 1 170306 581 0.00 2019-11-14 10:32:21 2019-11-14 11:27:52 t 1 1 170308 637 0.00 2019-11-14 11:27:56 2019-11-14 11:29:04 t 1 1 170310 562 0.00 2019-11-14 11:29:31 2019-11-14 11:30:13 t 1 1 170314 562 0.00 2019-11-14 11:32:31 2019-11-14 11:33:51 t 1 1 170318 585 0.00 2019-11-14 11:38:34 2019-11-14 11:41:29 t 1 1 170326 416 0.00 2019-11-14 11:46:02 2019-11-14 11:48:26 t 1 1 170328 597 0.00 2019-11-14 11:44:04 2019-11-14 11:48:51 t 1 1 170331 623 0.00 2019-11-14 11:49:22 2019-11-14 11:49:28 t 1 1 170336 623 0.00 2019-11-14 11:50:27 2019-11-14 11:50:39 t 1 1 170337 623 0.00 2019-11-14 11:50:50 2019-11-14 11:50:52 t 1 1 170342 637 0.00 2019-11-14 11:43:02 2019-11-14 11:51:38 t 1 1 170345 416 0.00 2019-11-14 11:50:59 2019-11-14 11:52:01 t 1 1 170346 220 0.00 2019-11-14 11:35:27 2019-11-14 11:52:20 t 1 1 170348 623 0.00 2019-11-14 11:52:25 2019-11-14 11:52:30 t 1 1 170350 623 0.00 2019-11-14 11:52:43 2019-11-14 11:52:44 t 1 1 170352 623 0.00 2019-11-14 11:53:08 2019-11-14 11:53:19 t 1 1 170361 220 0.00 2019-11-14 11:58:45 2019-11-14 11:59:15 t 1 1 170362 220 0.00 2019-11-14 11:59:15 2019-11-14 11:59:53 t 1 1 170363 593 0.00 2019-11-14 10:58:28 2019-11-14 12:00:13 t 1 1 170364 220 0.00 2019-11-14 11:59:53 2019-11-14 12:00:27 t 1 1 170365 220 0.00 2019-11-14 12:00:27 2019-11-14 12:01:04 t 1 1 170366 220 0.00 2019-11-14 12:01:04 2019-11-14 12:02:33 t 1 1 170369 481 0.00 2019-11-14 11:16:24 2019-11-14 12:03:10 t 1 1 170375 591 0.00 2019-11-14 12:03:47 2019-11-14 12:05:45 t 1 1 170379 220 0.00 2019-11-14 12:07:23 2019-11-14 12:08:01 t 1 1 170384 623 0.00 2019-11-14 12:09:24 2019-11-14 12:09:39 t 1 1 172039 574 0.00 2019-11-15 03:56:41 2019-11-15 04:02:42 t 1 1 172043 220 0.00 2019-11-15 04:06:42 2019-11-15 04:06:56 t 1 1 172044 623 0.00 2019-11-15 04:08:00 2019-11-15 04:08:02 t 1 1 172046 623 0.00 2019-11-15 04:09:28 2019-11-15 04:09:42 t 1 1 172048 623 0.00 2019-11-15 04:10:56 2019-11-15 04:10:58 t 1 1 172049 623 0.00 2019-11-15 04:11:26 2019-11-15 04:12:00 t 1 1 172050 623 0.00 2019-11-15 04:12:51 2019-11-15 04:13:02 t 1 1 172052 623 0.00 2019-11-15 04:16:11 2019-11-15 04:16:22 t 1 1 172056 220 0.00 2019-11-15 04:17:44 2019-11-15 04:17:52 t 1 1 172060 570 0.00 2019-11-15 03:26:12 2019-11-15 04:21:14 t 1 1 172062 623 0.00 2019-11-15 04:24:02 2019-11-15 04:24:04 t 1 1 172063 623 0.00 2019-11-15 04:26:24 2019-11-15 04:26:27 t 1 1 172070 623 0.00 2019-11-15 04:30:12 2019-11-15 04:30:15 t 1 1 172076 562 0.00 2019-11-15 04:42:27 2019-11-15 04:42:50 t 1 1 172083 623 0.00 2019-11-15 04:49:05 2019-11-15 04:49:06 t 1 1 172084 220 0.00 2019-11-15 04:49:28 2019-11-15 04:49:36 t 1 1 172086 623 0.00 2019-11-15 04:50:37 2019-11-15 04:50:38 t 1 1 172087 623 0.00 2019-11-15 04:51:46 2019-11-15 04:51:48 t 1 1 172095 220 0.00 2019-11-15 05:00:14 2019-11-15 05:00:22 t 1 1 172097 623 0.00 2019-11-15 05:02:39 2019-11-15 05:02:41 t 1 1 172099 562 0.00 2019-11-15 05:03:59 2019-11-15 05:04:21 t 1 1 172108 220 0.00 2019-11-15 05:21:30 2019-11-15 05:21:44 t 1 1 172109 220 0.00 2019-11-15 05:21:52 2019-11-15 05:22:52 t 1 1 172116 623 0.00 2019-11-15 05:30:50 2019-11-15 05:30:52 t 1 1 172121 623 0.00 2019-11-15 05:38:08 2019-11-15 05:38:12 t 1 1 172136 623 0.00 2019-11-15 05:58:07 2019-11-15 05:58:09 t 1 1 172137 623 0.00 2019-11-15 05:58:46 2019-11-15 05:58:50 t 1 1 172149 623 0.00 2019-11-15 06:11:50 2019-11-15 06:11:55 t 1 1 172153 485 0.00 2019-11-15 06:11:34 2019-11-15 06:20:23 t 1 1 172157 637 0.00 2019-11-15 01:21:28 2019-11-15 06:22:52 t 1 1 172159 516 0.00 2019-11-15 06:06:49 2019-11-15 06:23:57 t 1 1 172160 520 0.00 2019-11-15 06:20:49 2019-11-15 06:24:45 t 1 1 172162 623 0.00 2019-11-15 06:25:43 2019-11-15 06:25:44 t 1 1 172163 623 0.00 2019-11-15 06:26:40 2019-11-15 06:26:41 t 1 1 172164 623 0.00 2019-11-15 06:26:47 2019-11-15 06:26:48 t 1 1 172171 623 0.00 2019-11-15 06:30:03 2019-11-15 06:30:17 t 1 1 172172 562 0.00 2019-11-15 06:29:04 2019-11-15 06:30:24 t 1 1 172176 623 0.00 2019-11-15 06:34:59 2019-11-15 06:35:20 t 1 1 172178 220 0.00 2019-11-15 06:39:28 2019-11-15 06:39:43 t 1 1 172182 485 0.00 2019-11-15 06:34:53 2019-11-15 06:44:45 t 1 1 172183 637 0.00 2019-11-15 06:22:51 2019-11-15 06:47:12 t 1 1 172185 220 0.00 2019-11-15 06:50:01 2019-11-15 06:50:13 t 1 1 172189 445 0.00 2019-11-15 06:50:17 2019-11-15 06:54:16 t 1 1 172190 485 0.00 2019-11-15 06:44:45 2019-11-15 06:54:49 t 1 1 172192 516 0.00 2019-11-15 06:48:40 2019-11-15 06:55:54 t 1 1 172193 623 0.00 2019-11-15 06:56:35 2019-11-15 06:56:39 t 1 1 172195 623 0.00 2019-11-15 06:58:45 2019-11-15 06:59:01 t 1 1 172197 485 0.00 2019-11-15 06:54:49 2019-11-15 07:00:59 t 1 1 172200 637 0.00 2019-11-15 06:48:15 2019-11-15 07:05:52 t 1 1 172205 562 0.00 2019-11-15 07:11:46 2019-11-15 07:12:07 t 1 1 172206 485 0.00 2019-11-15 07:00:59 2019-11-15 07:12:19 t 1 1 172207 623 0.00 2019-11-15 07:14:53 2019-11-15 07:15:04 t 1 1 172208 637 0.00 2019-11-15 07:05:52 2019-11-15 07:15:17 t 1 1 172209 623 0.00 2019-11-15 07:15:16 2019-11-15 07:15:39 t 1 1 172210 623 0.00 2019-11-15 07:15:44 2019-11-15 07:15:45 t 1 1 172211 623 0.00 2019-11-15 07:16:09 2019-11-15 07:16:11 t 1 1 172212 623 0.00 2019-11-15 07:16:58 2019-11-15 07:17:07 t 1 1 172213 623 0.00 2019-11-15 07:17:39 2019-11-15 07:17:41 t 1 1 172214 623 0.00 2019-11-15 07:19:09 2019-11-15 07:19:11 t 1 1 172215 485 0.00 2019-11-15 07:16:27 2019-11-15 07:20:38 t 1 1 172216 623 0.00 2019-11-15 07:20:48 2019-11-15 07:20:49 t 1 1 172217 220 0.00 2019-11-15 07:21:31 2019-11-15 07:21:46 t 1 1 172218 562 0.00 2019-11-15 07:22:40 2019-11-15 07:22:54 t 1 1 172219 566 0.00 2019-11-15 07:20:29 2019-11-15 07:25:11 t 1 1 172220 485 0.00 2019-11-15 07:20:38 2019-11-15 07:26:23 t 1 1 170313 514 0.00 2019-11-14 11:25:38 2019-11-14 11:32:57 t 1 1 170317 416 0.00 2019-11-14 11:36:56 2019-11-14 11:37:52 t 1 1 170319 623 0.00 2019-11-14 11:23:25 2019-11-14 11:43:48 t 1 1 170321 623 0.00 2019-11-14 11:44:26 2019-11-14 11:44:33 t 1 1 170322 623 0.00 2019-11-14 11:44:46 2019-11-14 11:44:48 t 1 1 170327 623 0.00 2019-11-14 11:45:11 2019-11-14 11:48:35 t 1 1 170330 623 0.00 2019-11-14 11:49:15 2019-11-14 11:49:17 t 1 1 170333 623 0.00 2019-11-14 11:49:47 2019-11-14 11:49:53 t 1 1 170335 623 0.00 2019-11-14 11:50:12 2019-11-14 11:50:14 t 1 1 170338 562 0.00 2019-11-14 11:50:50 2019-11-14 11:51:06 t 1 1 170340 623 0.00 2019-11-14 11:51:27 2019-11-14 11:51:33 t 1 1 170344 623 0.00 2019-11-14 11:51:52 2019-11-14 11:51:54 t 1 1 170347 623 0.00 2019-11-14 11:52:18 2019-11-14 11:52:20 t 1 1 170349 416 0.00 2019-11-14 11:52:16 2019-11-14 11:52:41 t 1 1 170354 623 0.00 2019-11-14 11:53:47 2019-11-14 11:53:54 t 1 1 170356 623 0.00 2019-11-14 11:58:26 2019-11-14 11:58:32 t 1 1 170357 220 0.00 2019-11-14 11:31:07 2019-11-14 11:58:45 t 1 1 170359 623 0.00 2019-11-14 11:58:52 2019-11-14 11:58:54 t 1 1 170360 623 0.00 2019-11-14 11:58:59 2019-11-14 11:59:13 t 1 1 170367 591 0.00 2019-11-14 11:38:54 2019-11-14 12:02:38 t 1 1 170370 220 0.00 2019-11-14 12:02:33 2019-11-14 12:03:10 t 1 1 170371 220 0.00 2019-11-14 12:03:10 2019-11-14 12:03:42 t 1 1 170377 220 0.00 2019-11-14 12:05:53 2019-11-14 12:07:23 t 1 1 170380 619 0.00 2019-11-14 12:06:10 2019-11-14 12:08:32 t 1 1 170383 623 0.00 2019-11-14 12:09:04 2019-11-14 12:09:19 t 1 1 170406 562 0.00 2019-11-14 12:10:21 2019-11-14 12:11:21 t 1 1 170407 562 0.00 2019-11-14 12:13:08 2019-11-14 12:14:10 t 1 1 170408 591 0.00 2019-11-14 12:14:11 2019-11-14 12:17:14 t 1 1 170409 623 0.00 2019-11-14 12:11:01 2019-11-14 12:19:09 t 1 1 170410 597 0.00 2019-11-14 12:13:20 2019-11-14 12:19:38 t 1 1 170411 578 0.00 2019-11-14 12:10:24 2019-11-14 12:21:02 t 1 1 170412 637 0.00 2019-11-14 12:15:58 2019-11-14 12:21:15 t 1 1 170413 562 0.00 2019-11-14 12:21:10 2019-11-14 12:21:20 t 1 1 170414 562 0.00 2019-11-14 12:23:17 2019-11-14 12:23:22 t 1 1 170415 578 0.00 2019-11-14 12:21:02 2019-11-14 12:27:55 t 1 1 170416 562 0.00 2019-11-14 12:28:03 2019-11-14 12:28:19 t 1 1 170417 637 0.00 2019-11-14 12:28:17 2019-11-14 12:30:16 t 1 1 170418 562 0.00 2019-11-14 12:30:34 2019-11-14 12:31:13 t 1 1 170419 585 0.00 2019-11-14 12:25:45 2019-11-14 12:34:06 t 1 1 170420 619 0.00 2019-11-14 12:26:24 2019-11-14 12:34:19 t 1 1 170421 591 0.00 2019-11-14 12:29:59 2019-11-14 12:34:40 t 1 1 170422 623 0.00 2019-11-14 12:19:14 2019-11-14 12:38:49 t 1 1 170423 538 0.00 2019-11-14 12:37:27 2019-11-14 12:38:56 t 1 1 170424 623 0.00 2019-11-14 12:39:37 2019-11-14 12:39:43 t 1 1 170425 597 0.00 2019-11-14 12:37:01 2019-11-14 12:39:52 t 1 1 170426 483 0.00 2019-11-14 12:38:56 2019-11-14 12:39:59 t 1 1 170427 220 0.00 2019-11-14 12:27:36 2019-11-14 12:40:02 t 1 1 170428 623 0.00 2019-11-14 12:40:13 2019-11-14 12:40:19 t 1 1 170429 220 0.00 2019-11-14 12:40:01 2019-11-14 12:40:35 t 1 1 170430 220 0.00 2019-11-14 12:40:34 2019-11-14 12:40:48 t 1 1 170431 220 0.00 2019-11-14 12:40:48 2019-11-14 12:41:08 t 1 1 170432 220 0.00 2019-11-14 12:41:08 2019-11-14 12:41:22 t 1 1 170433 564 0.00 2019-11-14 12:26:45 2019-11-14 12:41:45 t 1 1 170434 562 0.00 2019-11-14 12:41:27 2019-11-14 12:41:52 t 1 1 170435 220 0.00 2019-11-14 12:41:21 2019-11-14 12:41:55 t 1 1 170436 220 0.00 2019-11-14 12:41:55 2019-11-14 12:42:28 t 1 1 170437 220 0.00 2019-11-14 12:42:28 2019-11-14 12:42:53 t 1 1 170438 220 0.00 2019-11-14 12:42:53 2019-11-14 12:42:58 t 1 1 170439 220 0.00 2019-11-14 12:42:58 2019-11-14 12:43:28 t 1 1 170440 220 0.00 2019-11-14 12:43:27 2019-11-14 12:43:35 t 1 1 170441 220 0.00 2019-11-14 12:43:35 2019-11-14 12:43:57 t 1 1 170442 623 0.00 2019-11-14 12:40:37 2019-11-14 12:44:01 t 1 1 170443 220 0.00 2019-11-14 12:43:57 2019-11-14 12:44:11 t 1 1 170444 220 0.00 2019-11-14 12:44:10 2019-11-14 12:44:35 t 1 1 170445 220 0.00 2019-11-14 12:44:35 2019-11-14 12:44:43 t 1 1 170446 564 0.00 2019-11-14 12:41:46 2019-11-14 12:44:45 t 1 1 170447 220 0.00 2019-11-14 12:44:43 2019-11-14 12:45:07 t 1 1 170448 595 0.00 2019-11-14 12:30:19 2019-11-14 12:45:13 t 1 1 170449 220 0.00 2019-11-14 12:45:07 2019-11-14 12:45:22 t 1 1 170450 623 0.00 2019-11-14 12:45:44 2019-11-14 12:45:46 t 1 1 170451 220 0.00 2019-11-14 12:45:22 2019-11-14 12:45:58 t 1 1 170452 220 0.00 2019-11-14 12:45:58 2019-11-14 12:46:02 t 1 1 170453 623 0.00 2019-11-14 12:46:07 2019-11-14 12:46:11 t 1 1 170454 623 0.00 2019-11-14 12:46:16 2019-11-14 12:46:24 t 1 1 170455 220 0.00 2019-11-14 12:46:02 2019-11-14 12:46:36 t 1 1 170456 220 0.00 2019-11-14 12:46:36 2019-11-14 12:46:38 t 1 1 170457 623 0.00 2019-11-14 12:46:46 2019-11-14 12:46:49 t 1 1 170458 623 0.00 2019-11-14 12:46:54 2019-11-14 12:47:00 t 1 1 170459 645 0.00 2019-11-14 12:41:09 2019-11-14 12:47:03 t 1 1 170460 585 0.00 2019-11-14 12:34:06 2019-11-14 12:47:14 t 1 1 170461 220 0.00 2019-11-14 12:46:38 2019-11-14 12:47:15 t 1 1 170462 220 0.00 2019-11-14 12:47:15 2019-11-14 12:47:51 t 1 1 170463 623 0.00 2019-11-14 12:47:55 2019-11-14 12:47:59 t 1 1 170464 623 0.00 2019-11-14 12:48:04 2019-11-14 12:48:10 t 1 1 170465 481 0.00 2019-11-14 12:10:59 2019-11-14 12:48:27 t 1 1 170466 220 0.00 2019-11-14 12:47:50 2019-11-14 12:48:29 t 1 1 170467 623 0.00 2019-11-14 12:48:46 2019-11-14 12:48:49 t 1 1 170468 220 0.00 2019-11-14 12:48:28 2019-11-14 12:48:54 t 1 1 170469 220 0.00 2019-11-14 12:48:54 2019-11-14 12:49:02 t 1 1 170470 520 0.00 2019-11-14 12:42:46 2019-11-14 12:50:09 t 1 1 170471 220 0.00 2019-11-14 12:49:01 2019-11-14 12:50:22 t 1 1 170472 623 0.00 2019-11-14 12:50:18 2019-11-14 12:50:37 t 1 1 170473 220 0.00 2019-11-14 12:50:22 2019-11-14 12:50:58 t 1 1 170474 564 0.00 2019-11-14 12:44:45 2019-11-14 12:52:02 t 1 1 170475 623 0.00 2019-11-14 12:52:02 2019-11-14 12:52:32 t 1 1 170476 562 0.00 2019-11-14 12:52:24 2019-11-14 12:52:34 t 1 1 170477 554 0.00 2019-11-14 12:52:37 2019-11-14 12:52:37 f 1 1 170478 416 0.00 2019-11-14 12:11:28 2019-11-14 12:52:49 t 1 1 170479 623 0.00 2019-11-14 12:52:32 2019-11-14 12:52:56 t 1 1 170480 220 0.00 2019-11-14 12:50:57 2019-11-14 12:53:03 t 1 1 170481 623 0.00 2019-11-14 12:53:01 2019-11-14 12:53:07 t 1 1 170482 416 0.00 2019-11-14 12:52:48 2019-11-14 12:53:29 t 1 1 170483 485 0.00 2019-11-14 12:50:21 2019-11-14 12:53:39 t 1 1 170484 220 0.00 2019-11-14 12:53:03 2019-11-14 12:53:39 t 1 1 170485 619 0.00 2019-11-14 12:50:37 2019-11-14 12:53:55 t 1 1 170486 623 0.00 2019-11-14 12:54:53 2019-11-14 12:54:56 t 1 1 170487 623 0.00 2019-11-14 12:55:02 2019-11-14 12:55:08 t 1 1 170488 623 0.00 2019-11-14 12:56:03 2019-11-14 12:56:16 t 1 1 170498 623 0.00 2019-11-14 13:01:07 2019-11-14 13:01:50 t 1 1 170504 623 0.00 2019-11-14 13:03:34 2019-11-14 13:03:50 t 1 1 170505 623 0.00 2019-11-14 13:03:55 2019-11-14 13:04:11 t 1 1 170508 623 0.00 2019-11-14 13:04:36 2019-11-14 13:04:42 t 1 1 170509 220 0.00 2019-11-14 13:04:40 2019-11-14 13:05:15 t 1 1 170510 645 0.00 2019-11-14 13:04:09 2019-11-14 13:05:33 t 1 1 170527 645 0.00 2019-11-14 13:09:13 2019-11-14 13:11:57 t 1 1 170528 623 0.00 2019-11-14 13:12:17 2019-11-14 13:12:19 t 1 1 170538 220 0.00 2019-11-14 13:13:10 2019-11-14 13:13:46 t 1 1 170540 562 0.00 2019-11-14 13:13:42 2019-11-14 13:14:13 t 1 1 170541 623 0.00 2019-11-14 13:14:58 2019-11-14 13:14:59 t 1 1 170543 520 0.00 2019-11-14 13:14:02 2019-11-14 13:15:30 t 1 1 170545 220 0.00 2019-11-14 13:15:53 2019-11-14 13:16:24 t 1 1 170552 220 0.00 2019-11-14 13:17:56 2019-11-14 13:18:32 t 1 1 170557 623 0.00 2019-11-14 13:19:59 2019-11-14 13:21:04 t 1 1 170559 220 0.00 2019-11-14 13:22:06 2019-11-14 13:22:40 t 1 1 170567 631 0.00 2019-11-14 13:22:31 2019-11-14 13:24:24 t 1 1 170568 623 0.00 2019-11-14 13:24:37 2019-11-14 13:24:42 t 1 1 170570 623 0.00 2019-11-14 13:24:47 2019-11-14 13:25:15 t 1 1 170572 623 0.00 2019-11-14 13:25:40 2019-11-14 13:25:42 t 1 1 170574 623 0.00 2019-11-14 13:25:47 2019-11-14 13:25:53 t 1 1 170577 220 0.00 2019-11-14 13:22:40 2019-11-14 13:26:14 t 1 1 170578 623 0.00 2019-11-14 13:26:17 2019-11-14 13:26:19 t 1 1 170579 623 0.00 2019-11-14 13:26:24 2019-11-14 13:26:30 t 1 1 170583 623 0.00 2019-11-14 13:27:46 2019-11-14 13:27:49 t 1 1 170584 623 0.00 2019-11-14 13:27:55 2019-11-14 13:27:57 t 1 1 170585 623 0.00 2019-11-14 13:28:19 2019-11-14 13:28:32 t 1 1 170589 520 0.00 2019-11-14 13:23:29 2019-11-14 13:29:31 t 1 1 170591 566 0.00 2019-11-14 13:18:37 2019-11-14 13:30:07 t 1 1 170594 623 0.00 2019-11-14 13:30:53 2019-11-14 13:30:57 t 1 1 170603 623 0.00 2019-11-14 13:32:58 2019-11-14 13:33:00 t 1 1 170604 623 0.00 2019-11-14 13:33:05 2019-11-14 13:33:11 t 1 1 170607 544 0.00 2019-11-14 13:32:49 2019-11-14 13:33:53 t 1 1 170611 623 0.00 2019-11-14 13:34:38 2019-11-14 13:34:45 t 1 1 170613 591 0.00 2019-11-14 13:20:01 2019-11-14 13:35:10 t 1 1 170616 623 0.00 2019-11-14 13:35:25 2019-11-14 13:35:27 t 1 1 170618 623 0.00 2019-11-14 13:35:32 2019-11-14 13:35:34 t 1 1 170620 623 0.00 2019-11-14 13:35:39 2019-11-14 13:35:46 t 1 1 170623 623 0.00 2019-11-14 13:36:07 2019-11-14 13:36:15 t 1 1 170624 623 0.00 2019-11-14 13:36:47 2019-11-14 13:36:52 t 1 1 170626 566 0.00 2019-11-14 13:30:07 2019-11-14 13:37:16 t 1 1 170630 220 0.00 2019-11-14 13:37:56 2019-11-14 13:38:27 t 1 1 170631 544 0.00 2019-11-14 13:36:05 2019-11-14 13:39:33 t 1 1 170633 637 0.00 2019-11-14 13:00:57 2019-11-14 13:40:17 t 1 1 170636 220 0.00 2019-11-14 13:38:27 2019-11-14 13:42:04 t 1 1 170637 544 0.00 2019-11-14 13:41:54 2019-11-14 13:42:35 t 1 1 170641 544 0.00 2019-11-14 13:43:12 2019-11-14 13:43:50 t 1 1 170642 220 0.00 2019-11-14 13:43:23 2019-11-14 13:43:58 t 1 1 170644 544 0.00 2019-11-14 13:43:49 2019-11-14 13:44:36 t 1 1 170648 562 0.00 2019-11-14 13:46:00 2019-11-14 13:46:24 t 1 1 170650 658 0.00 2019-11-14 13:32:40 2019-11-14 13:47:51 t 1 1 170653 544 0.00 2019-11-14 13:48:31 2019-11-14 13:49:12 t 1 1 170654 544 0.00 2019-11-14 13:49:12 2019-11-14 13:49:45 t 1 1 170656 483 0.00 2019-11-14 13:43:55 2019-11-14 13:51:08 t 1 1 170659 520 0.00 2019-11-14 13:40:28 2019-11-14 13:52:12 t 1 1 170660 544 0.00 2019-11-14 13:50:26 2019-11-14 13:52:50 t 1 1 170665 544 0.00 2019-11-14 13:54:22 2019-11-14 13:55:03 t 1 1 170671 544 0.00 2019-11-14 13:55:03 2019-11-14 13:58:28 t 1 1 170672 544 0.00 2019-11-14 13:58:28 2019-11-14 13:59:10 t 1 1 170673 544 0.00 2019-11-14 13:59:09 2019-11-14 13:59:58 t 1 1 170675 483 0.00 2019-11-14 13:57:23 2019-11-14 14:00:46 t 1 1 170678 544 0.00 2019-11-14 14:00:35 2019-11-14 14:01:09 t 1 1 170681 544 0.00 2019-11-14 14:01:09 2019-11-14 14:01:48 t 1 1 170685 585 0.00 2019-11-14 13:53:08 2019-11-14 14:04:04 t 1 1 170686 544 0.00 2019-11-14 14:03:40 2019-11-14 14:04:22 t 1 1 170691 619 0.00 2019-11-14 14:00:21 2019-11-14 14:07:05 t 1 1 170696 578 0.00 2019-11-14 14:01:55 2019-11-14 14:08:37 t 1 1 170697 416 0.00 2019-11-14 14:07:25 2019-11-14 14:09:41 t 1 1 170698 220 0.00 2019-11-14 14:01:36 2019-11-14 14:09:56 t 1 1 170702 595 0.00 2019-11-14 14:12:24 2019-11-14 14:12:50 t 1 1 170703 595 0.00 2019-11-14 14:12:58 2019-11-14 14:13:22 t 1 1 170705 451 0.00 2019-11-14 14:14:07 2019-11-14 14:15:31 t 1 1 170707 412 0.00 2019-11-14 13:38:22 2019-11-14 14:16:54 t 1 1 170709 637 0.00 2019-11-14 14:12:48 2019-11-14 14:17:48 t 1 1 170710 220 0.00 2019-11-14 14:17:27 2019-11-14 14:17:59 t 1 1 170712 591 0.00 2019-11-14 14:08:19 2019-11-14 14:18:12 t 1 1 170720 220 0.00 2019-11-14 13:56:17 2019-11-14 14:23:29 t 1 2 170722 220 0.00 2019-11-14 14:24:31 2019-11-14 14:25:04 t 1 1 170724 220 0.00 2019-11-14 14:25:04 2019-11-14 14:25:57 t 1 1 170725 220 0.00 2019-11-14 14:25:57 2019-11-14 14:26:30 t 1 1 170729 562 0.00 2019-11-14 14:25:32 2019-11-14 14:27:21 t 1 1 170730 220 0.00 2019-11-14 14:26:30 2019-11-14 14:28:07 t 1 1 170732 516 0.00 2019-11-14 14:16:47 2019-11-14 14:28:42 t 1 1 170735 578 0.00 2019-11-14 14:20:41 2019-11-14 14:29:45 t 1 1 170737 562 0.00 2019-11-14 14:28:17 2019-11-14 14:30:25 t 1 1 170741 220 0.00 2019-11-14 14:33:22 2019-11-14 14:33:54 t 1 1 170742 220 0.00 2019-11-14 14:33:53 2019-11-14 14:34:27 t 1 1 170748 562 0.00 2019-11-14 14:30:33 2019-11-14 14:38:10 t 1 1 170749 220 0.00 2019-11-14 14:37:55 2019-11-14 14:38:30 t 1 1 170750 562 0.00 2019-11-14 14:39:39 2019-11-14 14:39:50 t 1 1 170754 220 0.00 2019-11-14 14:40:13 2019-11-14 14:40:49 t 1 1 170755 562 0.00 2019-11-14 14:40:54 2019-11-14 14:42:52 t 1 1 170756 220 0.00 2019-11-14 14:40:48 2019-11-14 14:43:45 t 1 1 170758 220 0.00 2019-11-14 14:43:45 2019-11-14 14:44:21 t 1 1 170765 578 0.00 2019-11-14 14:39:54 2019-11-14 14:49:59 t 1 1 170772 637 0.00 2019-11-14 14:17:48 2019-11-14 14:55:05 t 1 1 170775 562 0.00 2019-11-14 14:53:37 2019-11-14 14:55:38 t 1 1 170778 422 0.00 2019-11-14 14:44:19 2019-11-14 14:58:53 t 1 1 170782 562 0.00 2019-11-14 14:56:20 2019-11-14 15:00:56 t 1 1 170786 562 0.00 2019-11-14 15:01:12 2019-11-14 15:02:14 t 1 1 170789 645 0.00 2019-11-14 15:03:03 2019-11-14 15:04:20 t 1 1 170791 562 0.00 2019-11-14 15:03:04 2019-11-14 15:05:16 t 1 1 170797 412 0.00 2019-11-14 15:09:49 2019-11-14 15:11:49 t 1 1 170799 412 0.00 2019-11-14 15:11:49 2019-11-14 15:12:51 t 1 1 170800 611 0.00 2019-11-14 15:10:02 2019-11-14 15:14:02 t 1 1 170804 623 0.00 2019-11-14 15:15:20 2019-11-14 15:15:22 t 1 1 170489 623 0.00 2019-11-14 12:56:37 2019-11-14 12:56:40 t 1 1 170492 220 0.00 2019-11-14 12:57:40 2019-11-14 12:58:16 t 1 1 170495 623 0.00 2019-11-14 13:00:18 2019-11-14 13:00:33 t 1 1 170499 623 0.00 2019-11-14 13:01:50 2019-11-14 13:02:06 t 1 1 170500 623 0.00 2019-11-14 13:02:11 2019-11-14 13:02:38 t 1 1 170501 623 0.00 2019-11-14 13:02:58 2019-11-14 13:03:01 t 1 1 170503 562 0.00 2019-11-14 13:02:55 2019-11-14 13:03:22 t 1 1 170512 585 0.00 2019-11-14 13:04:28 2019-11-14 13:06:32 t 1 1 170515 623 0.00 2019-11-14 13:07:55 2019-11-14 13:08:02 t 1 1 170516 623 0.00 2019-11-14 13:08:20 2019-11-14 13:08:25 t 1 1 170517 220 0.00 2019-11-14 13:05:14 2019-11-14 13:08:47 t 1 1 170522 623 0.00 2019-11-14 13:09:56 2019-11-14 13:10:03 t 1 1 170524 623 0.00 2019-11-14 13:10:46 2019-11-14 13:11:09 t 1 1 170530 623 0.00 2019-11-14 13:12:31 2019-11-14 13:12:38 t 1 1 170532 623 0.00 2019-11-14 13:12:56 2019-11-14 13:12:58 t 1 1 170533 481 0.00 2019-11-14 12:48:27 2019-11-14 13:13:08 t 1 1 170535 220 0.00 2019-11-14 13:09:21 2019-11-14 13:13:10 t 1 1 170536 623 0.00 2019-11-14 13:13:14 2019-11-14 13:13:22 t 1 1 170537 623 0.00 2019-11-14 13:13:26 2019-11-14 13:13:45 t 1 1 170542 220 0.00 2019-11-14 13:13:46 2019-11-14 13:15:21 t 1 1 170549 220 0.00 2019-11-14 13:16:57 2019-11-14 13:17:56 t 1 1 170551 623 0.00 2019-11-14 13:16:11 2019-11-14 13:18:19 t 1 1 170553 566 0.00 2019-11-14 13:11:13 2019-11-14 13:18:37 t 1 1 170561 623 0.00 2019-11-14 13:22:02 2019-11-14 13:23:19 t 1 1 170562 520 0.00 2019-11-14 13:19:59 2019-11-14 13:23:30 t 1 1 170564 585 0.00 2019-11-14 13:19:32 2019-11-14 13:23:52 t 1 1 170571 623 0.00 2019-11-14 13:25:33 2019-11-14 13:25:35 t 1 1 170576 623 0.00 2019-11-14 13:26:10 2019-11-14 13:26:12 t 1 1 170581 623 0.00 2019-11-14 13:27:05 2019-11-14 13:27:12 t 1 1 170582 623 0.00 2019-11-14 13:27:17 2019-11-14 13:27:24 t 1 1 170587 623 0.00 2019-11-14 13:28:57 2019-11-14 13:29:04 t 1 1 170588 623 0.00 2019-11-14 13:29:22 2019-11-14 13:29:28 t 1 1 170592 451 0.00 2019-11-14 13:16:56 2019-11-14 13:30:30 t 1 1 170593 220 0.00 2019-11-14 13:26:48 2019-11-14 13:30:44 t 1 1 170597 585 0.00 2019-11-14 13:26:21 2019-11-14 13:31:37 t 1 1 170599 520 0.00 2019-11-14 13:29:30 2019-11-14 13:32:24 t 1 1 170601 623 0.00 2019-11-14 13:32:34 2019-11-14 13:32:40 t 1 1 170602 544 0.00 2019-11-14 12:13:45 2019-11-14 13:32:49 t 1 1 170605 220 0.00 2019-11-14 13:32:35 2019-11-14 13:33:12 t 1 1 170606 623 0.00 2019-11-14 13:33:46 2019-11-14 13:33:48 t 1 1 170609 520 0.00 2019-11-14 13:32:24 2019-11-14 13:33:57 t 1 1 170610 544 0.00 2019-11-14 13:33:53 2019-11-14 13:34:32 t 1 1 170617 635 0.00 2019-11-14 13:32:35 2019-11-14 13:35:30 t 1 1 170622 544 0.00 2019-11-14 13:35:26 2019-11-14 13:36:06 t 1 1 170627 623 0.00 2019-11-14 13:37:16 2019-11-14 13:37:23 t 1 1 170628 220 0.00 2019-11-14 13:35:54 2019-11-14 13:37:56 t 1 1 170634 520 0.00 2019-11-14 13:33:56 2019-11-14 13:40:29 t 1 1 170635 544 0.00 2019-11-14 13:40:15 2019-11-14 13:41:54 t 1 1 170639 544 0.00 2019-11-14 13:42:35 2019-11-14 13:43:12 t 1 1 170640 220 0.00 2019-11-14 13:42:38 2019-11-14 13:43:23 t 1 1 170643 220 0.00 2019-11-14 13:43:57 2019-11-14 13:44:35 t 1 1 170646 544 0.00 2019-11-14 13:44:36 2019-11-14 13:45:17 t 1 1 170647 451 0.00 2019-11-14 13:30:30 2019-11-14 13:45:32 t 1 1 170651 595 0.00 2019-11-14 13:27:55 2019-11-14 13:48:19 t 1 1 170652 544 0.00 2019-11-14 13:45:16 2019-11-14 13:48:31 t 1 1 170655 544 0.00 2019-11-14 13:49:45 2019-11-14 13:50:26 t 1 1 170657 595 0.00 2019-11-14 13:51:04 2019-11-14 13:51:12 t 1 1 170658 220 0.00 2019-11-14 13:45:08 2019-11-14 13:52:00 t 1 1 170662 585 0.00 2019-11-14 13:46:03 2019-11-14 13:53:09 t 1 1 170663 544 0.00 2019-11-14 13:52:50 2019-11-14 13:53:32 t 1 1 170664 544 0.00 2019-11-14 13:53:31 2019-11-14 13:54:22 t 1 1 170666 520 0.00 2019-11-14 13:52:11 2019-11-14 13:55:38 t 1 1 170667 595 0.00 2019-11-14 13:56:10 2019-11-14 13:56:17 t 1 1 170668 562 0.00 2019-11-14 13:56:48 2019-11-14 13:57:17 t 1 1 170669 520 0.00 2019-11-14 13:55:37 2019-11-14 13:57:47 t 1 1 170670 562 0.00 2019-11-14 13:58:14 2019-11-14 13:58:19 t 1 1 170676 566 0.00 2019-11-14 13:37:16 2019-11-14 14:00:55 t 1 1 170677 220 0.00 2019-11-14 13:52:55 2019-11-14 14:01:00 t 1 1 170680 220 0.00 2019-11-14 14:01:00 2019-11-14 14:01:36 t 1 1 170682 578 0.00 2019-11-14 12:27:55 2019-11-14 14:01:55 t 1 1 170687 451 0.00 2019-11-14 13:45:32 2019-11-14 14:04:53 t 1 1 170692 595 0.00 2019-11-14 14:06:46 2019-11-14 14:07:07 t 1 1 170693 416 0.00 2019-11-14 12:53:29 2019-11-14 14:07:25 t 1 1 170699 220 0.00 2019-11-14 14:09:56 2019-11-14 14:10:31 t 1 1 170701 595 0.00 2019-11-14 14:12:11 2019-11-14 14:12:13 t 1 1 170704 562 0.00 2019-11-14 14:12:49 2019-11-14 14:13:30 t 1 1 170706 595 0.00 2019-11-14 14:16:38 2019-11-14 14:16:46 t 1 1 170708 220 0.00 2019-11-14 14:10:30 2019-11-14 14:17:27 t 1 1 170711 449 0.00 2019-11-14 14:17:29 2019-11-14 14:18:07 t 1 1 170713 412 0.00 2019-11-14 14:17:24 2019-11-14 14:18:30 t 1 1 170715 220 0.00 2019-11-14 14:17:59 2019-11-14 14:19:31 t 1 1 170716 220 0.00 2019-11-14 14:19:31 2019-11-14 14:20:03 t 1 1 170719 562 0.00 2019-11-14 14:21:21 2019-11-14 14:23:10 t 1 1 170721 220 0.00 2019-11-14 14:20:03 2019-11-14 14:24:31 t 1 1 170723 597 0.00 2019-11-14 14:18:20 2019-11-14 14:25:08 t 1 1 170726 595 0.00 2019-11-14 14:19:14 2019-11-14 14:26:43 t 1 1 170728 508 0.00 2019-11-14 12:42:53 2019-11-14 14:27:17 t 1 2 170739 220 0.00 2019-11-14 14:28:39 2019-11-14 14:32:45 t 1 1 170740 220 0.00 2019-11-14 14:32:45 2019-11-14 14:33:22 t 1 1 170743 585 0.00 2019-11-14 14:28:27 2019-11-14 14:34:57 t 1 1 170744 597 0.00 2019-11-14 14:31:08 2019-11-14 14:35:44 t 1 1 170746 220 0.00 2019-11-14 14:34:26 2019-11-14 14:37:56 t 1 1 170751 578 0.00 2019-11-14 14:29:45 2019-11-14 14:39:54 t 1 1 170752 220 0.00 2019-11-14 14:38:29 2019-11-14 14:40:13 t 1 1 170753 619 0.00 2019-11-14 14:26:53 2019-11-14 14:40:22 t 1 1 170760 585 0.00 2019-11-14 14:41:42 2019-11-14 14:45:05 t 1 1 170761 562 0.00 2019-11-14 14:44:03 2019-11-14 14:45:32 t 1 1 170762 220 0.00 2019-11-14 14:44:21 2019-11-14 14:45:50 t 1 1 170763 220 0.00 2019-11-14 14:45:50 2019-11-14 14:46:23 t 1 1 170764 220 0.00 2019-11-14 14:46:23 2019-11-14 14:47:25 t 1 1 170769 520 0.00 2019-11-14 14:51:00 2019-11-14 14:52:02 t 1 1 170771 412 0.00 2019-11-14 14:18:28 2019-11-14 14:53:45 t 1 1 170773 412 0.00 2019-11-14 14:53:49 2019-11-14 14:55:06 t 1 1 170779 512 0.00 2019-11-14 14:48:14 2019-11-14 14:59:08 t 1 1 170783 619 0.00 2019-11-14 14:48:41 2019-11-14 15:01:10 t 1 1 170784 220 0.00 2019-11-14 14:41:45 2019-11-14 15:01:20 t 1 2 170788 645 0.00 2019-11-14 14:54:38 2019-11-14 15:03:03 t 1 1 170490 593 0.00 2019-11-14 12:10:20 2019-11-14 12:57:13 t 1 1 170491 220 0.00 2019-11-14 12:53:38 2019-11-14 12:57:40 t 1 1 170493 623 0.00 2019-11-14 12:59:33 2019-11-14 12:59:40 t 1 1 170494 220 0.00 2019-11-14 12:58:15 2019-11-14 13:00:29 t 1 1 170496 623 0.00 2019-11-14 13:00:33 2019-11-14 13:00:49 t 1 1 170497 220 0.00 2019-11-14 13:00:29 2019-11-14 13:01:03 t 1 1 170502 619 0.00 2019-11-14 12:59:43 2019-11-14 13:03:13 t 1 1 170506 623 0.00 2019-11-14 13:04:29 2019-11-14 13:04:31 t 1 1 170507 220 0.00 2019-11-14 13:01:03 2019-11-14 13:04:40 t 1 1 170511 591 0.00 2019-11-14 13:04:22 2019-11-14 13:06:25 t 1 1 170513 623 0.00 2019-11-14 13:05:03 2019-11-14 13:06:59 t 1 1 170514 623 0.00 2019-11-14 13:07:17 2019-11-14 13:07:24 t 1 1 170518 623 0.00 2019-11-14 13:08:43 2019-11-14 13:08:49 t 1 1 170519 623 0.00 2019-11-14 13:09:07 2019-11-14 13:09:13 t 1 1 170520 220 0.00 2019-11-14 13:08:47 2019-11-14 13:09:21 t 1 1 170521 623 0.00 2019-11-14 13:09:31 2019-11-14 13:09:38 t 1 1 170523 623 0.00 2019-11-14 13:10:24 2019-11-14 13:10:25 t 1 1 170525 566 0.00 2019-11-14 13:06:26 2019-11-14 13:11:13 t 1 1 170526 597 0.00 2019-11-14 12:52:28 2019-11-14 13:11:54 t 1 1 170529 623 0.00 2019-11-14 13:12:25 2019-11-14 13:12:26 t 1 1 170531 619 0.00 2019-11-14 13:09:32 2019-11-14 13:12:45 t 1 1 170534 623 0.00 2019-11-14 13:13:03 2019-11-14 13:13:09 t 1 1 170539 520 0.00 2019-11-14 12:50:09 2019-11-14 13:14:03 t 1 1 170544 220 0.00 2019-11-14 13:15:21 2019-11-14 13:15:53 t 1 1 170546 520 0.00 2019-11-14 13:15:30 2019-11-14 13:16:38 t 1 1 170547 220 0.00 2019-11-14 13:16:24 2019-11-14 13:16:57 t 1 1 170548 220 0.00 2019-11-14 12:56:33 2019-11-14 13:17:56 t 1 2 170550 623 0.00 2019-11-14 13:17:45 2019-11-14 13:17:59 t 1 1 170554 623 0.00 2019-11-14 13:18:56 2019-11-14 13:19:21 t 1 1 170555 623 0.00 2019-11-14 13:19:53 2019-11-14 13:19:54 t 1 1 170556 520 0.00 2019-11-14 13:16:38 2019-11-14 13:20:00 t 1 1 170558 220 0.00 2019-11-14 13:18:31 2019-11-14 13:22:06 t 1 1 170560 623 0.00 2019-11-14 13:22:45 2019-11-14 13:22:55 t 1 1 170563 623 0.00 2019-11-14 13:23:26 2019-11-14 13:23:43 t 1 1 170565 623 0.00 2019-11-14 13:23:48 2019-11-14 13:23:54 t 1 1 170566 623 0.00 2019-11-14 13:24:12 2019-11-14 13:24:19 t 1 1 170569 562 0.00 2019-11-14 13:24:30 2019-11-14 13:24:53 t 1 1 170573 619 0.00 2019-11-14 13:21:36 2019-11-14 13:25:53 t 1 1 170575 623 0.00 2019-11-14 13:25:58 2019-11-14 13:26:05 t 1 1 170580 220 0.00 2019-11-14 13:26:14 2019-11-14 13:26:49 t 1 1 170586 623 0.00 2019-11-14 13:28:50 2019-11-14 13:28:52 t 1 1 170590 623 0.00 2019-11-14 13:29:46 2019-11-14 13:29:52 t 1 1 170595 623 0.00 2019-11-14 13:31:02 2019-11-14 13:31:04 t 1 1 170596 220 0.00 2019-11-14 13:30:44 2019-11-14 13:31:19 t 1 1 170598 623 0.00 2019-11-14 13:31:26 2019-11-14 13:31:42 t 1 1 170600 220 0.00 2019-11-14 13:31:19 2019-11-14 13:32:35 t 1 1 170608 623 0.00 2019-11-14 13:33:53 2019-11-14 13:33:55 t 1 1 170612 623 0.00 2019-11-14 13:34:50 2019-11-14 13:35:07 t 1 1 170614 220 0.00 2019-11-14 13:33:11 2019-11-14 13:35:22 t 1 1 170615 544 0.00 2019-11-14 13:34:32 2019-11-14 13:35:26 t 1 1 170619 562 0.00 2019-11-14 13:35:18 2019-11-14 13:35:44 t 1 1 170621 220 0.00 2019-11-14 13:35:22 2019-11-14 13:35:54 t 1 1 170625 623 0.00 2019-11-14 13:36:57 2019-11-14 13:37:11 t 1 1 170629 623 0.00 2019-11-14 13:37:45 2019-11-14 13:38:17 t 1 1 170632 544 0.00 2019-11-14 13:39:33 2019-11-14 13:40:15 t 1 1 170638 220 0.00 2019-11-14 13:42:04 2019-11-14 13:42:38 t 1 1 170645 220 0.00 2019-11-14 13:44:35 2019-11-14 13:45:08 t 1 1 170649 619 0.00 2019-11-14 13:44:07 2019-11-14 13:47:24 t 1 1 170661 220 0.00 2019-11-14 13:52:00 2019-11-14 13:52:56 t 1 1 170674 544 0.00 2019-11-14 13:59:57 2019-11-14 14:00:35 t 1 1 170679 595 0.00 2019-11-14 13:58:48 2019-11-14 14:01:26 t 1 1 170683 544 0.00 2019-11-14 14:01:47 2019-11-14 14:02:58 t 1 1 170684 544 0.00 2019-11-14 14:02:58 2019-11-14 14:03:40 t 1 1 170688 566 0.00 2019-11-14 14:00:55 2019-11-14 14:05:36 t 1 1 170689 595 0.00 2019-11-14 14:06:24 2019-11-14 14:06:32 t 1 1 170690 562 0.00 2019-11-14 14:06:43 2019-11-14 14:06:53 t 1 1 170694 451 0.00 2019-11-14 14:04:53 2019-11-14 14:08:06 t 1 1 170695 220 0.00 2019-11-14 12:50:10 2019-11-14 14:08:31 t 1 2 170700 595 0.00 2019-11-14 14:11:32 2019-11-14 14:11:41 t 1 1 170714 562 0.00 2019-11-14 14:15:59 2019-11-14 14:19:06 t 1 1 170717 220 0.00 2019-11-14 14:10:43 2019-11-14 14:20:15 t 1 2 170718 578 0.00 2019-11-14 14:08:37 2019-11-14 14:20:41 t 1 1 170727 449 0.00 2019-11-14 14:18:07 2019-11-14 14:26:48 t 1 1 170731 220 0.00 2019-11-14 14:28:07 2019-11-14 14:28:40 t 1 1 170733 554 0.00 2019-11-14 14:29:19 2019-11-14 14:29:19 f 1 1 170734 554 0.00 2019-11-14 14:29:28 2019-11-14 14:29:28 f 1 1 170736 520 0.00 2019-11-14 14:27:49 2019-11-14 14:30:07 t 1 1 170738 520 0.00 2019-11-14 14:30:28 2019-11-14 14:31:15 t 1 1 170745 570 0.00 2019-11-14 14:30:08 2019-11-14 14:36:15 t 1 1 170747 607 0.00 2019-11-14 14:19:31 2019-11-14 14:38:08 t 1 1 170757 422 0.00 2019-11-14 14:32:09 2019-11-14 14:44:19 t 1 1 170759 570 0.00 2019-11-14 14:36:15 2019-11-14 14:44:47 t 1 1 170766 483 0.00 2019-11-14 14:23:52 2019-11-14 14:50:12 t 1 1 170767 520 0.00 2019-11-14 14:31:15 2019-11-14 14:50:59 t 1 1 170768 570 0.00 2019-11-14 14:44:47 2019-11-14 14:51:56 t 1 1 170770 520 0.00 2019-11-14 14:52:01 2019-11-14 14:53:30 t 1 1 170774 481 0.00 2019-11-14 13:13:06 2019-11-14 14:55:08 t 1 1 170776 562 0.00 2019-11-14 14:55:47 2019-11-14 14:55:55 t 1 1 170777 481 0.00 2019-11-14 14:55:08 2019-11-14 14:58:31 t 1 1 170780 520 0.00 2019-11-14 14:53:30 2019-11-14 15:00:19 t 1 1 170781 512 0.00 2019-11-14 14:59:08 2019-11-14 15:00:43 t 1 1 170785 627 0.00 2019-11-14 14:57:37 2019-11-14 15:01:25 t 1 1 170787 564 0.00 2019-11-14 12:52:02 2019-11-14 15:02:55 t 1 1 170790 597 0.00 2019-11-14 14:45:39 2019-11-14 15:04:57 t 1 1 170792 412 0.00 2019-11-14 14:59:28 2019-11-14 15:06:40 t 1 1 170793 562 0.00 2019-11-14 15:06:30 2019-11-14 15:08:09 t 1 1 170794 516 0.00 2019-11-14 15:03:36 2019-11-14 15:08:58 t 1 1 170796 451 0.00 2019-11-14 14:44:34 2019-11-14 15:10:57 t 1 1 170798 516 0.00 2019-11-14 15:08:58 2019-11-14 15:12:35 t 1 1 170801 623 0.00 2019-11-14 15:06:50 2019-11-14 15:14:07 t 1 1 170802 562 0.00 2019-11-14 15:13:20 2019-11-14 15:14:19 t 1 1 170803 623 0.00 2019-11-14 15:14:12 2019-11-14 15:15:15 t 1 1 170807 562 0.00 2019-11-14 15:14:55 2019-11-14 15:16:53 t 1 1 170808 562 0.00 2019-11-14 15:17:21 2019-11-14 15:17:31 t 1 1 170812 578 0.00 2019-11-14 14:49:59 2019-11-14 15:22:36 t 1 1 170814 562 0.00 2019-11-14 15:19:06 2019-11-14 15:23:36 t 1 1 170815 412 0.00 2019-11-14 15:25:04 2019-11-14 15:26:10 t 1 1 170795 562 0.00 2019-11-14 15:09:05 2019-11-14 15:09:51 t 1 1 170805 611 0.00 2019-11-14 15:14:02 2019-11-14 15:15:29 t 1 1 170809 538 0.00 2019-11-14 14:20:03 2019-11-14 15:18:17 t 1 1 170811 623 0.00 2019-11-14 15:18:43 2019-11-14 15:22:06 t 1 1 170816 514 0.00 2019-11-14 15:24:57 2019-11-14 15:26:22 t 1 1 170819 412 0.00 2019-11-14 15:28:35 2019-11-14 15:31:16 t 1 1 170821 220 0.00 2019-11-14 15:09:28 2019-11-14 15:34:43 t 1 2 170822 544 0.00 2019-11-14 14:04:22 2019-11-14 15:35:39 t 1 1 170824 412 0.00 2019-11-14 15:32:11 2019-11-14 15:37:45 t 1 1 170825 627 0.00 2019-11-14 15:38:29 2019-11-14 15:38:36 t 1 1 170826 627 0.00 2019-11-14 15:39:04 2019-11-14 15:39:58 t 1 1 170829 538 0.00 2019-11-14 15:18:16 2019-11-14 15:42:30 t 1 1 170831 544 0.00 2019-11-14 15:35:39 2019-11-14 15:44:17 t 1 1 170836 412 0.00 2019-11-14 15:47:31 2019-11-14 15:49:03 t 1 1 170837 416 0.00 2019-11-14 14:09:54 2019-11-14 15:50:08 t 1 1 170838 516 0.00 2019-11-14 15:48:48 2019-11-14 15:51:10 t 1 1 170842 416 0.00 2019-11-14 15:50:08 2019-11-14 15:53:12 t 1 1 170843 416 0.00 2019-11-14 15:53:11 2019-11-14 15:53:29 t 1 1 170850 544 0.00 2019-11-14 15:44:17 2019-11-14 15:59:43 t 1 1 170852 544 0.00 2019-11-14 15:59:43 2019-11-14 16:02:29 t 1 1 170854 416 0.00 2019-11-14 16:02:50 2019-11-14 16:03:29 t 1 1 170856 562 0.00 2019-11-14 16:03:23 2019-11-14 16:04:25 t 1 1 170858 512 0.00 2019-11-14 15:58:48 2019-11-14 16:08:55 t 1 1 170859 220 0.00 2019-11-14 14:47:25 2019-11-14 16:09:50 t 1 1 170861 220 0.00 2019-11-14 16:09:50 2019-11-14 16:10:27 t 1 1 170868 587 0.00 2019-11-14 15:57:37 2019-11-14 16:15:06 t 1 1 170871 627 0.00 2019-11-14 16:09:52 2019-11-14 16:16:17 t 1 1 170877 619 0.00 2019-11-14 16:17:42 2019-11-14 16:26:37 t 1 1 170879 512 0.00 2019-11-14 16:13:12 2019-11-14 16:27:51 t 1 1 170880 562 0.00 2019-11-14 16:17:08 2019-11-14 16:31:01 t 1 1 170885 451 0.00 2019-11-14 16:26:18 2019-11-14 16:36:57 t 1 1 170886 562 0.00 2019-11-14 16:37:12 2019-11-14 16:37:27 t 1 1 170891 627 0.00 2019-11-14 16:39:03 2019-11-14 16:39:29 t 1 1 170895 416 0.00 2019-11-14 16:32:35 2019-11-14 16:40:40 t 1 1 170903 627 0.00 2019-11-14 16:44:53 2019-11-14 16:44:56 t 1 1 170905 627 0.00 2019-11-14 16:45:53 2019-11-14 16:46:00 t 1 1 170908 220 0.00 2019-11-14 16:45:39 2019-11-14 16:47:25 t 1 1 170910 623 0.00 2019-11-14 16:46:34 2019-11-14 16:47:43 t 1 1 170913 627 0.00 2019-11-14 16:47:46 2019-11-14 16:48:03 t 1 1 170916 627 0.00 2019-11-14 16:48:45 2019-11-14 16:49:03 t 1 1 170917 627 0.00 2019-11-14 16:49:09 2019-11-14 16:49:26 t 1 1 170924 587 0.00 2019-11-14 16:52:50 2019-11-14 16:55:45 t 1 1 170927 595 0.00 2019-11-14 16:57:31 2019-11-14 16:57:38 t 1 1 170930 562 0.00 2019-11-14 16:58:40 2019-11-14 16:59:31 t 1 1 170932 587 0.00 2019-11-14 16:59:11 2019-11-14 17:00:56 t 1 1 170934 595 0.00 2019-11-14 17:00:28 2019-11-14 17:01:04 t 1 1 170936 595 0.00 2019-11-14 17:01:15 2019-11-14 17:04:48 t 1 1 170942 623 0.00 2019-11-14 17:10:35 2019-11-14 17:11:33 t 1 1 170943 623 0.00 2019-11-14 17:11:36 2019-11-14 17:12:13 t 1 1 170944 623 0.00 2019-11-14 17:12:29 2019-11-14 17:12:39 t 1 1 170946 585 0.00 2019-11-14 17:09:29 2019-11-14 17:13:19 t 1 1 170947 623 0.00 2019-11-14 17:13:44 2019-11-14 17:13:46 t 1 1 170952 220 0.00 2019-11-14 17:14:44 2019-11-14 17:15:17 t 1 1 170956 645 0.00 2019-11-14 17:03:21 2019-11-14 17:18:05 t 1 1 170961 595 0.00 2019-11-14 17:19:29 2019-11-14 17:19:51 t 1 1 170962 645 0.00 2019-11-14 17:19:35 2019-11-14 17:21:01 t 1 1 170964 595 0.00 2019-11-14 17:23:11 2019-11-14 17:23:16 t 1 1 170967 623 0.00 2019-11-14 17:25:10 2019-11-14 17:25:33 t 1 1 170969 623 0.00 2019-11-14 17:27:34 2019-11-14 17:27:55 t 1 1 170970 595 0.00 2019-11-14 17:28:29 2019-11-14 17:28:35 t 1 1 170974 595 0.00 2019-11-14 17:29:21 2019-11-14 17:29:39 t 1 1 170980 566 0.00 2019-11-14 17:21:44 2019-11-14 17:31:46 t 1 1 170981 623 0.00 2019-11-14 17:31:47 2019-11-14 17:32:10 t 1 1 170982 623 0.00 2019-11-14 17:32:44 2019-11-14 17:32:46 t 1 1 170983 562 0.00 2019-11-14 17:32:59 2019-11-14 17:33:19 t 1 1 170984 623 0.00 2019-11-14 17:32:52 2019-11-14 17:33:39 t 1 1 170986 220 0.00 2019-11-14 17:15:17 2019-11-14 17:35:29 t 1 1 170992 623 0.00 2019-11-14 17:37:55 2019-11-14 17:37:55 t 1 1 170995 623 0.00 2019-11-14 17:38:38 2019-11-14 17:38:46 t 1 1 171000 566 0.00 2019-11-14 17:31:46 2019-11-14 17:40:21 t 1 1 171001 220 0.00 2019-11-14 17:40:20 2019-11-14 17:40:53 t 1 1 171005 619 0.00 2019-11-14 17:29:14 2019-11-14 17:41:32 t 1 1 171006 483 0.00 2019-11-14 17:39:04 2019-11-14 17:41:58 t 1 1 171009 562 0.00 2019-11-14 17:41:58 2019-11-14 17:43:04 t 1 1 171013 220 0.00 2019-11-14 17:43:40 2019-11-14 17:44:13 t 1 1 171022 627 0.00 2019-11-14 17:46:22 2019-11-14 17:47:38 t 1 1 171025 587 0.00 2019-11-14 17:36:41 2019-11-14 17:48:47 t 1 1 171029 623 0.00 2019-11-14 17:49:05 2019-11-14 17:49:12 t 1 1 171032 623 0.00 2019-11-14 17:49:50 2019-11-14 17:49:50 f 1 1 171034 220 0.00 2019-11-14 17:49:58 2019-11-14 17:50:32 t 1 1 171039 220 0.00 2019-11-14 17:51:05 2019-11-14 17:51:40 t 1 1 171042 220 0.00 2019-11-14 17:52:11 2019-11-14 17:52:43 t 1 1 171044 220 0.00 2019-11-14 17:52:43 2019-11-14 17:53:15 t 1 1 171045 220 0.00 2019-11-14 17:53:15 2019-11-14 17:53:47 t 1 1 171047 220 0.00 2019-11-14 17:53:47 2019-11-14 17:54:21 t 1 1 171049 595 0.00 2019-11-14 17:53:59 2019-11-14 17:54:34 t 1 1 171054 566 0.00 2019-11-14 17:54:22 2019-11-14 17:59:55 t 1 1 171058 645 0.00 2019-11-14 17:58:58 2019-11-14 18:00:53 t 1 1 171061 516 0.00 2019-11-14 18:01:54 2019-11-14 18:05:09 t 1 1 171063 595 0.00 2019-11-14 18:05:07 2019-11-14 18:05:32 t 1 1 171067 587 0.00 2019-11-14 18:00:30 2019-11-14 18:09:15 t 1 1 171068 595 0.00 2019-11-14 18:10:32 2019-11-14 18:10:59 t 1 1 171069 566 0.00 2019-11-14 18:05:28 2019-11-14 18:12:44 t 1 1 171071 635 0.00 2019-11-14 17:53:51 2019-11-14 18:15:12 t 1 1 171072 633 0.00 2019-11-14 17:44:23 2019-11-14 18:15:44 t 1 1 171077 481 0.00 2019-11-14 17:06:25 2019-11-14 18:18:01 t 1 1 171079 562 0.00 2019-11-14 18:19:32 2019-11-14 18:19:56 t 1 1 171086 514 0.00 2019-11-14 18:23:34 2019-11-14 18:24:43 t 1 1 171093 595 0.00 2019-11-14 18:25:41 2019-11-14 18:27:59 t 1 1 171097 637 0.00 2019-11-14 18:26:42 2019-11-14 18:28:59 t 1 1 171098 633 0.00 2019-11-14 18:15:44 2019-11-14 18:29:09 t 1 1 171101 562 0.00 2019-11-14 18:29:04 2019-11-14 18:30:28 t 1 1 171103 481 0.00 2019-11-14 18:18:01 2019-11-14 18:32:19 t 1 1 171106 645 0.00 2019-11-14 18:30:42 2019-11-14 18:34:18 t 1 1 171109 499 0.00 2019-11-14 18:27:17 2019-11-14 18:37:11 t 1 1 171110 587 0.00 2019-11-14 18:16:11 2019-11-14 18:37:51 t 1 1 171113 416 0.00 2019-11-14 17:01:00 2019-11-14 18:41:03 t 1 1 170806 412 0.00 2019-11-14 15:14:34 2019-11-14 15:16:19 t 1 1 170810 412 0.00 2019-11-14 15:16:26 2019-11-14 15:18:33 t 1 1 170813 451 0.00 2019-11-14 15:10:57 2019-11-14 15:22:42 t 1 1 170820 562 0.00 2019-11-14 15:33:58 2019-11-14 15:34:23 t 1 1 170830 516 0.00 2019-11-14 15:31:56 2019-11-14 15:42:39 t 1 1 170832 623 0.00 2019-11-14 15:22:11 2019-11-14 15:45:01 t 1 1 170835 597 0.00 2019-11-14 15:43:23 2019-11-14 15:46:15 t 1 1 170839 538 0.00 2019-11-14 15:42:30 2019-11-14 15:51:46 t 1 1 170841 627 0.00 2019-11-14 15:40:43 2019-11-14 15:52:26 t 1 1 170846 451 0.00 2019-11-14 15:44:39 2019-11-14 15:55:56 t 1 1 170849 585 0.00 2019-11-14 15:58:02 2019-11-14 15:59:34 t 1 1 170853 416 0.00 2019-11-14 15:53:28 2019-11-14 16:02:50 t 1 1 170862 220 0.00 2019-11-14 16:10:27 2019-11-14 16:11:03 t 1 1 170865 623 0.00 2019-11-14 15:45:01 2019-11-14 16:11:55 t 1 1 170866 220 0.00 2019-11-14 16:11:35 2019-11-14 16:12:11 t 1 1 170867 220 0.00 2019-11-14 16:12:11 2019-11-14 16:12:45 t 1 1 170870 562 0.00 2019-11-14 16:15:48 2019-11-14 16:16:03 t 1 1 170873 416 0.00 2019-11-14 16:03:29 2019-11-14 16:19:36 t 1 1 170874 627 0.00 2019-11-14 16:16:17 2019-11-14 16:25:27 t 1 1 170875 451 0.00 2019-11-14 16:11:26 2019-11-14 16:26:18 t 1 1 170876 578 0.00 2019-11-14 15:22:36 2019-11-14 16:26:21 t 1 1 170878 412 0.00 2019-11-14 16:25:48 2019-11-14 16:27:32 t 1 1 170881 416 0.00 2019-11-14 16:19:36 2019-11-14 16:32:35 t 1 1 170884 627 0.00 2019-11-14 16:36:31 2019-11-14 16:36:54 t 1 1 170887 627 0.00 2019-11-14 16:38:02 2019-11-14 16:38:21 t 1 1 170889 627 0.00 2019-11-14 16:38:34 2019-11-14 16:38:57 t 1 1 170890 645 0.00 2019-11-14 16:38:20 2019-11-14 16:39:22 t 1 1 170892 627 0.00 2019-11-14 16:39:48 2019-11-14 16:39:56 t 1 1 170896 627 0.00 2019-11-14 16:40:38 2019-11-14 16:40:54 t 1 1 170899 627 0.00 2019-11-14 16:42:50 2019-11-14 16:42:57 t 1 1 170902 562 0.00 2019-11-14 16:43:44 2019-11-14 16:44:56 t 1 1 170906 623 0.00 2019-11-14 16:11:55 2019-11-14 16:46:34 t 1 1 170907 627 0.00 2019-11-14 16:46:49 2019-11-14 16:47:02 t 1 1 170912 220 0.00 2019-11-14 16:47:25 2019-11-14 16:47:58 t 1 1 170915 220 0.00 2019-11-14 16:47:58 2019-11-14 16:48:46 t 1 1 170919 595 0.00 2019-11-14 16:50:24 2019-11-14 16:52:10 t 1 1 170921 637 0.00 2019-11-14 16:05:49 2019-11-14 16:53:10 t 1 1 170923 220 0.00 2019-11-14 16:42:32 2019-11-14 16:54:39 t 1 2 170925 645 0.00 2019-11-14 16:53:32 2019-11-14 16:56:06 t 1 1 170926 416 0.00 2019-11-14 16:41:11 2019-11-14 16:57:13 t 1 1 170929 587 0.00 2019-11-14 16:55:46 2019-11-14 16:58:39 t 1 1 170931 416 0.00 2019-11-14 16:57:30 2019-11-14 17:00:34 t 1 1 170933 416 0.00 2019-11-14 17:00:33 2019-11-14 17:01:00 t 1 1 170935 619 0.00 2019-11-14 16:54:07 2019-11-14 17:04:23 t 1 1 170938 595 0.00 2019-11-14 17:07:48 2019-11-14 17:07:56 t 1 1 170945 595 0.00 2019-11-14 17:12:58 2019-11-14 17:13:06 t 1 1 170949 220 0.00 2019-11-14 16:01:28 2019-11-14 17:14:17 t 1 2 170960 595 0.00 2019-11-14 17:18:56 2019-11-14 17:19:18 t 1 1 170963 566 0.00 2019-11-14 17:15:45 2019-11-14 17:21:44 t 1 1 170965 623 0.00 2019-11-14 17:18:57 2019-11-14 17:23:57 t 1 1 170966 623 0.00 2019-11-14 17:24:58 2019-11-14 17:25:00 t 1 1 170973 585 0.00 2019-11-14 17:27:44 2019-11-14 17:29:28 t 1 1 170976 512 0.00 2019-11-14 17:16:28 2019-11-14 17:29:48 t 1 1 170988 587 0.00 2019-11-14 17:31:37 2019-11-14 17:36:41 t 1 1 170990 220 0.00 2019-11-14 17:35:58 2019-11-14 17:37:32 t 1 1 170993 220 0.00 2019-11-14 17:37:32 2019-11-14 17:38:08 t 1 1 170994 220 0.00 2019-11-14 17:38:08 2019-11-14 17:38:43 t 1 1 170999 220 0.00 2019-11-14 17:39:48 2019-11-14 17:40:20 t 1 1 171004 516 0.00 2019-11-14 17:37:04 2019-11-14 17:41:29 t 1 1 171007 220 0.00 2019-11-14 17:41:29 2019-11-14 17:42:04 t 1 1 171008 220 0.00 2019-11-14 17:42:04 2019-11-14 17:42:37 t 1 1 171010 220 0.00 2019-11-14 17:42:37 2019-11-14 17:43:09 t 1 1 171011 220 0.00 2019-11-14 17:43:09 2019-11-14 17:43:40 t 1 1 171014 623 0.00 2019-11-14 17:44:18 2019-11-14 17:44:39 t 1 1 171018 627 0.00 2019-11-14 17:41:39 2019-11-14 17:46:12 t 1 1 171020 220 0.00 2019-11-14 17:46:14 2019-11-14 17:46:46 t 1 1 171021 220 0.00 2019-11-14 17:46:45 2019-11-14 17:47:20 t 1 1 171023 220 0.00 2019-11-14 17:47:20 2019-11-14 17:47:52 t 1 1 171024 220 0.00 2019-11-14 17:47:52 2019-11-14 17:48:23 t 1 1 171027 623 0.00 2019-11-14 17:44:39 2019-11-14 17:49:00 t 1 1 171030 220 0.00 2019-11-14 17:48:56 2019-11-14 17:49:27 t 1 1 171033 220 0.00 2019-11-14 17:49:27 2019-11-14 17:49:59 t 1 1 171035 220 0.00 2019-11-14 17:50:32 2019-11-14 17:51:05 t 1 1 171037 623 0.00 2019-11-14 17:49:17 2019-11-14 17:51:21 t 1 1 171041 562 0.00 2019-11-14 17:51:56 2019-11-14 17:52:15 t 1 1 171051 220 0.00 2019-11-14 17:54:20 2019-11-14 17:56:11 t 1 1 171052 645 0.00 2019-11-14 17:56:58 2019-11-14 17:58:07 t 1 1 171055 637 0.00 2019-11-14 16:58:24 2019-11-14 17:59:56 t 1 1 171057 587 0.00 2019-11-14 17:59:39 2019-11-14 18:00:15 t 1 1 171059 595 0.00 2019-11-14 18:02:05 2019-11-14 18:02:22 t 1 1 171073 637 0.00 2019-11-14 17:59:56 2019-11-14 18:15:47 t 1 1 171074 587 0.00 2019-11-14 18:09:15 2019-11-14 18:16:11 t 1 1 171075 595 0.00 2019-11-14 18:16:00 2019-11-14 18:16:28 t 1 1 171078 566 0.00 2019-11-14 18:12:44 2019-11-14 18:18:45 t 1 1 171084 637 0.00 2019-11-14 18:20:31 2019-11-14 18:24:09 t 1 1 171088 512 0.00 2019-11-14 17:51:28 2019-11-14 18:25:09 t 1 1 171089 554 0.00 2019-11-14 18:26:19 2019-11-14 18:26:19 f 1 1 171092 566 0.00 2019-11-14 18:18:45 2019-11-14 18:26:59 t 1 1 171095 585 0.00 2019-11-14 18:15:50 2019-11-14 18:28:18 t 1 1 171096 562 0.00 2019-11-14 18:28:33 2019-11-14 18:28:42 t 1 1 171100 430 0.00 2019-11-14 18:18:25 2019-11-14 18:29:42 t 1 1 171102 637 0.00 2019-11-14 18:31:03 2019-11-14 18:32:09 t 1 1 171104 562 0.00 2019-11-14 18:30:52 2019-11-14 18:33:15 t 1 1 171105 595 0.00 2019-11-14 18:29:00 2019-11-14 18:34:03 t 1 1 171107 566 0.00 2019-11-14 18:26:59 2019-11-14 18:34:19 t 1 1 171111 633 0.00 2019-11-14 18:29:09 2019-11-14 18:38:16 t 1 1 171115 499 0.00 2019-11-14 18:37:10 2019-11-14 18:43:35 t 1 1 171116 637 0.00 2019-11-14 18:32:55 2019-11-14 18:45:02 t 1 1 171119 481 0.00 2019-11-14 18:32:19 2019-11-14 18:46:09 t 1 1 171120 599 0.00 2019-11-14 18:24:29 2019-11-14 18:47:09 t 1 1 171121 430 0.00 2019-11-14 18:29:42 2019-11-14 18:47:15 t 1 1 171122 430 0.00 2019-11-14 18:47:20 2019-11-14 18:47:25 t 1 1 171124 562 0.00 2019-11-14 18:49:28 2019-11-14 18:50:08 t 1 1 171126 430 0.00 2019-11-14 18:50:53 2019-11-14 18:51:00 t 1 1 171127 587 0.00 2019-11-14 18:37:51 2019-11-14 18:52:57 t 1 1 171128 566 0.00 2019-11-14 18:43:05 2019-11-14 18:53:24 t 1 1 171134 430 0.00 2019-11-14 18:57:47 2019-11-14 18:57:58 t 1 1 170817 619 0.00 2019-11-14 15:04:22 2019-11-14 15:27:02 t 1 1 170818 412 0.00 2019-11-14 15:27:06 2019-11-14 15:28:13 t 1 1 170823 627 0.00 2019-11-14 15:30:14 2019-11-14 15:37:32 t 1 1 170827 627 0.00 2019-11-14 15:40:18 2019-11-14 15:40:37 t 1 1 170828 587 0.00 2019-11-14 15:28:56 2019-11-14 15:42:03 t 1 1 170833 562 0.00 2019-11-14 15:44:45 2019-11-14 15:45:04 t 1 1 170834 412 0.00 2019-11-14 15:37:44 2019-11-14 15:46:07 t 1 1 170840 587 0.00 2019-11-14 15:43:56 2019-11-14 15:52:23 t 1 1 170844 637 0.00 2019-11-14 14:55:05 2019-11-14 15:53:56 t 1 1 170845 562 0.00 2019-11-14 15:55:24 2019-11-14 15:55:49 t 1 1 170847 587 0.00 2019-11-14 15:52:29 2019-11-14 15:57:37 t 1 1 170848 562 0.00 2019-11-14 15:56:44 2019-11-14 15:58:14 t 1 1 170851 627 0.00 2019-11-14 15:52:26 2019-11-14 16:00:43 t 1 1 170855 412 0.00 2019-11-14 15:49:02 2019-11-14 16:04:16 t 1 1 170857 637 0.00 2019-11-14 15:53:56 2019-11-14 16:04:59 t 1 1 170860 627 0.00 2019-11-14 16:00:43 2019-11-14 16:09:52 t 1 1 170863 451 0.00 2019-11-14 15:55:56 2019-11-14 16:11:26 t 1 1 170864 220 0.00 2019-11-14 16:11:03 2019-11-14 16:11:35 t 1 1 170869 562 0.00 2019-11-14 16:05:34 2019-11-14 16:15:48 t 1 1 170872 587 0.00 2019-11-14 16:16:23 2019-11-14 16:18:19 t 1 1 170882 562 0.00 2019-11-14 16:34:38 2019-11-14 16:34:57 t 1 1 170883 627 0.00 2019-11-14 16:25:27 2019-11-14 16:35:49 t 1 1 170888 512 0.00 2019-11-14 16:32:23 2019-11-14 16:38:53 t 1 1 170893 627 0.00 2019-11-14 16:40:01 2019-11-14 16:40:07 t 1 1 170894 562 0.00 2019-11-14 16:38:02 2019-11-14 16:40:22 t 1 1 170897 416 0.00 2019-11-14 16:40:48 2019-11-14 16:41:11 t 1 1 170898 627 0.00 2019-11-14 16:41:51 2019-11-14 16:41:52 t 1 1 170900 595 0.00 2019-11-14 16:36:52 2019-11-14 16:43:19 t 1 1 170901 627 0.00 2019-11-14 16:43:40 2019-11-14 16:43:57 t 1 1 170904 220 0.00 2019-11-14 16:12:45 2019-11-14 16:45:40 t 1 1 170909 627 0.00 2019-11-14 16:47:22 2019-11-14 16:47:25 t 1 1 170911 595 0.00 2019-11-14 16:47:36 2019-11-14 16:47:45 t 1 1 170914 562 0.00 2019-11-14 16:47:58 2019-11-14 16:48:17 t 1 1 170918 481 0.00 2019-11-14 16:44:30 2019-11-14 16:49:41 t 1 1 170920 595 0.00 2019-11-14 16:52:26 2019-11-14 16:52:58 t 1 1 170922 645 0.00 2019-11-14 16:51:42 2019-11-14 16:53:24 t 1 1 170928 595 0.00 2019-11-14 16:58:07 2019-11-14 16:58:30 t 1 1 170937 481 0.00 2019-11-14 16:49:41 2019-11-14 17:06:25 t 1 1 170939 623 0.00 2019-11-14 16:52:26 2019-11-14 17:08:04 t 1 1 170940 562 0.00 2019-11-14 17:07:57 2019-11-14 17:08:26 t 1 1 170941 623 0.00 2019-11-14 17:08:08 2019-11-14 17:09:32 t 1 1 170948 456 0.00 2019-11-14 16:55:35 2019-11-14 17:14:02 t 1 1 170950 587 0.00 2019-11-14 17:01:54 2019-11-14 17:14:24 t 1 1 170951 220 0.00 2019-11-14 16:48:46 2019-11-14 17:14:44 t 1 1 170953 623 0.00 2019-11-14 17:15:31 2019-11-14 17:15:32 t 1 1 170954 562 0.00 2019-11-14 17:11:51 2019-11-14 17:17:05 t 1 1 170955 623 0.00 2019-11-14 17:17:32 2019-11-14 17:17:36 t 1 1 170957 595 0.00 2019-11-14 17:18:03 2019-11-14 17:18:10 t 1 1 170958 595 0.00 2019-11-14 17:18:25 2019-11-14 17:18:45 t 1 1 170959 597 0.00 2019-11-14 17:16:27 2019-11-14 17:19:13 t 1 1 170968 581 0.00 2019-11-14 16:57:12 2019-11-14 17:26:19 t 1 1 170971 562 0.00 2019-11-14 17:17:05 2019-11-14 17:28:44 t 1 1 170972 595 0.00 2019-11-14 17:28:45 2019-11-14 17:29:06 t 1 1 170975 562 0.00 2019-11-14 17:29:05 2019-11-14 17:29:40 t 1 1 170977 623 0.00 2019-11-14 17:30:04 2019-11-14 17:30:10 t 1 1 170978 587 0.00 2019-11-14 17:14:27 2019-11-14 17:31:13 t 1 1 170979 587 0.00 2019-11-14 17:31:22 2019-11-14 17:31:24 t 1 1 170985 595 0.00 2019-11-14 17:33:33 2019-11-14 17:33:40 t 1 1 170987 645 0.00 2019-11-14 17:35:15 2019-11-14 17:36:24 t 1 1 170989 623 0.00 2019-11-14 17:35:52 2019-11-14 17:36:47 t 1 1 170991 623 0.00 2019-11-14 17:37:47 2019-11-14 17:37:48 t 1 1 170996 595 0.00 2019-11-14 17:38:38 2019-11-14 17:38:46 t 1 1 170997 220 0.00 2019-11-14 17:38:42 2019-11-14 17:39:15 t 1 1 170998 220 0.00 2019-11-14 17:39:14 2019-11-14 17:39:48 t 1 1 171002 615 0.00 2019-11-14 17:38:41 2019-11-14 17:41:15 t 1 1 171003 220 0.00 2019-11-14 17:40:53 2019-11-14 17:41:29 t 1 1 171012 595 0.00 2019-11-14 17:43:48 2019-11-14 17:43:55 t 1 1 171015 220 0.00 2019-11-14 17:44:13 2019-11-14 17:45:07 t 1 1 171016 566 0.00 2019-11-14 17:40:21 2019-11-14 17:45:30 t 1 1 171017 220 0.00 2019-11-14 17:45:07 2019-11-14 17:45:40 t 1 1 171019 220 0.00 2019-11-14 17:45:40 2019-11-14 17:46:14 t 1 1 171026 220 0.00 2019-11-14 17:48:23 2019-11-14 17:48:56 t 1 1 171028 595 0.00 2019-11-14 17:48:55 2019-11-14 17:49:02 t 1 1 171031 595 0.00 2019-11-14 17:49:14 2019-11-14 17:49:38 t 1 1 171036 623 0.00 2019-11-14 17:49:36 2019-11-14 17:51:21 t 1 1 171038 587 0.00 2019-11-14 17:48:47 2019-11-14 17:51:32 t 1 1 171040 220 0.00 2019-11-14 17:51:40 2019-11-14 17:52:12 t 1 1 171043 627 0.00 2019-11-14 17:52:16 2019-11-14 17:52:58 t 1 1 171046 587 0.00 2019-11-14 17:51:55 2019-11-14 17:53:49 t 1 1 171048 566 0.00 2019-11-14 17:45:30 2019-11-14 17:54:22 t 1 1 171050 585 0.00 2019-11-14 17:49:02 2019-11-14 17:55:16 t 1 1 171053 587 0.00 2019-11-14 17:56:31 2019-11-14 17:58:56 t 1 1 171056 595 0.00 2019-11-14 17:59:35 2019-11-14 18:00:03 t 1 1 171060 562 0.00 2019-11-14 18:02:32 2019-11-14 18:03:15 t 1 1 171062 566 0.00 2019-11-14 17:59:55 2019-11-14 18:05:28 t 1 1 171064 597 0.00 2019-11-14 17:58:01 2019-11-14 18:05:36 t 1 1 171065 619 0.00 2019-11-14 18:04:21 2019-11-14 18:06:53 t 1 1 171066 599 0.00 2019-11-14 18:06:24 2019-11-14 18:07:54 t 1 1 171070 562 0.00 2019-11-14 18:13:24 2019-11-14 18:13:49 t 1 1 171076 516 0.00 2019-11-14 18:05:09 2019-11-14 18:16:44 t 1 1 171080 516 0.00 2019-11-14 18:18:07 2019-11-14 18:20:57 t 1 1 171081 595 0.00 2019-11-14 18:21:30 2019-11-14 18:21:57 t 1 1 171082 595 0.00 2019-11-14 18:22:06 2019-11-14 18:22:28 t 1 1 171083 595 0.00 2019-11-14 18:22:42 2019-11-14 18:23:02 t 1 1 171085 599 0.00 2019-11-14 18:07:53 2019-11-14 18:24:29 t 1 1 171087 449 0.00 2019-11-14 18:23:11 2019-11-14 18:25:08 t 1 1 171090 554 0.00 2019-11-14 18:26:35 2019-11-14 18:26:35 f 1 1 171091 554 0.00 2019-11-14 18:26:56 2019-11-14 18:26:56 f 1 1 171094 562 0.00 2019-11-14 18:22:42 2019-11-14 18:28:02 t 1 1 171099 660 0.00 2019-11-14 18:16:31 2019-11-14 18:29:33 t 1 1 171108 562 0.00 2019-11-14 18:33:38 2019-11-14 18:36:25 t 1 1 171112 566 0.00 2019-11-14 18:34:19 2019-11-14 18:38:17 t 1 1 171117 562 0.00 2019-11-14 18:42:25 2019-11-14 18:45:06 t 1 1 171118 619 0.00 2019-11-14 18:44:05 2019-11-14 18:46:04 t 1 1 171123 599 0.00 2019-11-14 18:47:09 2019-11-14 18:49:42 t 1 1 171129 591 0.00 2019-11-14 16:32:42 2019-11-14 18:54:17 t 1 1 171130 562 0.00 2019-11-14 18:54:58 2019-11-14 18:55:57 t 1 1 171114 562 0.00 2019-11-14 18:37:12 2019-11-14 18:42:13 t 1 1 171125 430 0.00 2019-11-14 18:50:21 2019-11-14 18:50:40 t 1 1 171133 430 0.00 2019-11-14 18:56:48 2019-11-14 18:57:25 t 1 1 171141 562 0.00 2019-11-14 18:59:59 2019-11-14 19:01:00 t 1 1 171142 562 0.00 2019-11-14 19:01:08 2019-11-14 19:01:21 t 1 1 171149 566 0.00 2019-11-14 18:53:24 2019-11-14 19:04:18 t 1 1 171150 599 0.00 2019-11-14 18:59:48 2019-11-14 19:04:37 t 1 1 171157 562 0.00 2019-11-14 19:14:34 2019-11-14 19:14:55 t 1 1 171159 562 0.00 2019-11-14 19:15:42 2019-11-14 19:16:05 t 1 1 171161 566 0.00 2019-11-14 19:04:18 2019-11-14 19:19:47 t 1 1 171164 562 0.00 2019-11-14 19:22:06 2019-11-14 19:22:21 t 1 1 171167 562 0.00 2019-11-14 19:25:26 2019-11-14 19:25:33 t 1 1 171169 430 0.00 2019-11-14 19:27:24 2019-11-14 19:27:30 t 1 1 171173 562 0.00 2019-11-14 19:30:52 2019-11-14 19:31:12 t 1 1 171177 430 0.00 2019-11-14 19:28:44 2019-11-14 19:35:35 t 1 1 171182 623 0.00 2019-11-14 19:38:53 2019-11-14 19:38:56 t 1 1 171186 430 0.00 2019-11-14 19:37:57 2019-11-14 19:41:17 t 1 1 171198 220 0.00 2019-11-14 19:46:41 2019-11-14 19:46:58 t 1 1 171199 562 0.00 2019-11-14 19:47:11 2019-11-14 19:47:22 t 1 1 171202 627 0.00 2019-11-14 19:47:37 2019-11-14 19:47:51 t 1 1 171205 514 0.00 2019-11-14 19:32:25 2019-11-14 19:48:20 t 1 1 171212 633 0.00 2019-11-14 19:42:56 2019-11-14 19:49:47 t 1 1 171213 623 0.00 2019-11-14 19:49:48 2019-11-14 19:49:48 t 1 1 171217 512 0.00 2019-11-14 19:46:34 2019-11-14 19:50:53 t 1 1 171219 597 0.00 2019-11-14 19:49:40 2019-11-14 19:51:59 t 1 1 171221 551 0.00 2019-11-14 19:46:31 2019-11-14 19:52:31 t 1 1 171223 587 0.00 2019-11-14 19:49:15 2019-11-14 19:52:39 t 1 1 171225 562 0.00 2019-11-14 19:55:35 2019-11-14 19:56:07 t 1 1 171227 623 0.00 2019-11-14 19:54:43 2019-11-14 19:56:22 t 1 1 171229 551 0.00 2019-11-14 19:52:31 2019-11-14 19:56:46 t 1 1 171230 430 0.00 2019-11-14 19:49:16 2019-11-14 19:57:09 t 1 1 171232 593 0.00 2019-11-14 19:35:27 2019-11-14 19:58:51 t 1 1 171236 220 0.00 2019-11-14 19:59:36 2019-11-14 20:00:12 t 1 1 171237 220 0.00 2019-11-14 20:00:11 2019-11-14 20:00:46 t 1 1 171239 623 0.00 2019-11-14 19:58:54 2019-11-14 20:01:22 t 1 1 171241 637 0.00 2019-11-14 19:30:28 2019-11-14 20:02:10 t 1 1 171242 627 0.00 2019-11-14 19:59:38 2019-11-14 20:02:43 t 1 1 171245 627 0.00 2019-11-14 20:04:23 2019-11-14 20:04:40 t 1 1 171247 623 0.00 2019-11-14 20:05:39 2019-11-14 20:05:48 t 1 1 171250 627 0.00 2019-11-14 20:06:27 2019-11-14 20:06:45 t 1 1 171252 430 0.00 2019-11-14 19:57:09 2019-11-14 20:06:55 t 1 1 171257 514 0.00 2019-11-14 19:55:42 2019-11-14 20:08:12 t 1 1 171259 623 0.00 2019-11-14 20:09:07 2019-11-14 20:09:07 f 1 1 171261 623 0.00 2019-11-14 20:07:55 2019-11-14 20:09:22 t 1 1 171263 627 0.00 2019-11-14 20:09:29 2019-11-14 20:09:48 t 1 1 171266 430 0.00 2019-11-14 20:09:48 2019-11-14 20:10:50 t 1 1 171279 430 0.00 2019-11-14 20:17:14 2019-11-14 20:17:44 t 1 1 171283 637 0.00 2019-11-14 20:16:55 2019-11-14 20:19:25 t 1 1 171287 430 0.00 2019-11-14 20:19:56 2019-11-14 20:20:02 t 1 1 171290 587 0.00 2019-11-14 20:19:45 2019-11-14 20:21:01 t 1 1 171292 430 0.00 2019-11-14 20:21:20 2019-11-14 20:21:57 t 1 1 171297 633 0.00 2019-11-14 20:19:45 2019-11-14 20:27:01 t 1 1 171302 562 0.00 2019-11-14 20:28:38 2019-11-14 20:29:51 t 1 1 171304 485 0.00 2019-11-14 20:07:53 2019-11-14 20:30:39 t 1 1 171306 562 0.00 2019-11-14 20:30:46 2019-11-14 20:31:13 t 1 1 171309 581 0.00 2019-11-14 20:23:02 2019-11-14 20:32:13 t 1 1 171311 660 0.00 2019-11-14 20:08:23 2019-11-14 20:33:16 t 1 1 171314 587 0.00 2019-11-14 20:21:52 2019-11-14 20:34:40 t 1 1 171320 633 0.00 2019-11-14 20:33:20 2019-11-14 20:36:41 t 1 1 171323 660 0.00 2019-11-14 20:35:22 2019-11-14 20:38:10 t 1 1 171326 562 0.00 2019-11-14 20:38:54 2019-11-14 20:39:17 t 1 1 171327 430 0.00 2019-11-14 20:39:42 2019-11-14 20:39:49 t 1 1 171333 430 0.00 2019-11-14 20:43:13 2019-11-14 20:43:31 t 1 1 171335 593 0.00 2019-11-14 20:31:39 2019-11-14 20:44:02 t 1 1 171336 619 0.00 2019-11-14 20:38:27 2019-11-14 20:44:10 t 1 1 171340 562 0.00 2019-11-14 20:44:03 2019-11-14 20:45:53 t 1 1 171345 422 0.00 2019-11-14 20:47:09 2019-11-14 20:49:17 t 1 1 171346 422 0.00 2019-11-14 20:49:29 2019-11-14 20:49:35 t 1 1 171350 587 0.00 2019-11-14 20:40:29 2019-11-14 20:55:45 t 1 1 171353 422 0.00 2019-11-14 20:58:17 2019-11-14 20:58:21 t 1 1 171354 422 0.00 2019-11-14 20:58:32 2019-11-14 20:59:21 t 1 1 171359 611 0.00 2019-11-14 20:49:16 2019-11-14 21:05:13 t 1 1 171367 633 0.00 2019-11-14 21:03:52 2019-11-14 21:07:57 t 1 1 171372 422 0.00 2019-11-14 21:10:52 2019-11-14 21:12:02 t 1 1 171374 562 0.00 2019-11-14 21:12:03 2019-11-14 21:12:59 t 1 1 171381 220 0.00 2019-11-14 21:14:58 2019-11-14 21:15:31 t 1 1 171384 220 0.00 2019-11-14 21:16:39 2019-11-14 21:17:15 t 1 1 171387 220 0.00 2019-11-14 21:17:14 2019-11-14 21:17:51 t 1 1 171388 220 0.00 2019-11-14 21:17:50 2019-11-14 21:18:27 t 1 1 171392 645 0.00 2019-11-14 21:08:18 2019-11-14 21:19:06 t 1 1 171394 220 0.00 2019-11-14 21:18:59 2019-11-14 21:19:38 t 1 1 171397 562 0.00 2019-11-14 21:19:47 2019-11-14 21:20:15 t 1 1 171399 220 0.00 2019-11-14 21:20:11 2019-11-14 21:20:47 t 1 1 171404 587 0.00 2019-11-14 21:12:15 2019-11-14 21:22:58 t 1 1 171406 566 0.00 2019-11-14 21:13:44 2019-11-14 21:23:02 t 1 1 171414 544 0.00 2019-11-14 21:18:58 2019-11-14 21:26:41 t 1 1 171415 220 0.00 2019-11-14 21:26:16 2019-11-14 21:26:53 t 1 1 171419 416 0.00 2019-11-14 19:48:33 2019-11-14 21:28:18 t 1 1 171424 566 0.00 2019-11-14 21:23:02 2019-11-14 21:29:48 t 1 1 171428 645 0.00 2019-11-14 21:23:01 2019-11-14 21:30:56 t 1 1 171432 220 0.00 2019-11-14 21:31:20 2019-11-14 21:31:56 t 1 1 171434 220 0.00 2019-11-14 21:32:10 2019-11-14 21:32:32 t 1 1 171435 562 0.00 2019-11-14 21:32:33 2019-11-14 21:32:47 t 1 1 171440 581 0.00 2019-11-14 21:34:24 2019-11-14 21:34:28 t 1 1 171444 566 0.00 2019-11-14 21:29:47 2019-11-14 21:35:55 t 1 1 171445 220 0.00 2019-11-14 21:32:32 2019-11-14 21:35:56 t 1 1 171446 220 0.00 2019-11-14 21:35:55 2019-11-14 21:36:21 t 1 1 171455 220 0.00 2019-11-14 21:37:42 2019-11-14 21:37:44 t 1 1 171463 220 0.00 2019-11-14 21:40:04 2019-11-14 21:40:37 t 1 1 171466 637 0.00 2019-11-14 21:24:06 2019-11-14 21:40:56 t 1 1 171471 220 0.00 2019-11-14 21:41:48 2019-11-14 21:41:52 t 1 1 171472 220 0.00 2019-11-14 21:41:51 2019-11-14 21:42:27 t 1 1 171476 510 0.00 2019-11-14 21:40:59 2019-11-14 21:44:15 t 1 1 171480 220 0.00 2019-11-14 21:44:43 2019-11-14 21:45:16 t 1 1 171483 220 0.00 2019-11-14 21:46:19 2019-11-14 21:46:54 t 1 1 171485 566 0.00 2019-11-14 21:35:55 2019-11-14 21:48:01 t 1 1 171486 220 0.00 2019-11-14 21:47:29 2019-11-14 21:48:04 t 1 1 171131 430 0.00 2019-11-14 18:56:04 2019-11-14 18:56:35 t 1 1 171132 562 0.00 2019-11-14 18:56:47 2019-11-14 18:56:56 t 1 1 171136 430 0.00 2019-11-14 18:58:56 2019-11-14 18:59:00 t 1 1 171140 430 0.00 2019-11-14 19:00:27 2019-11-14 19:00:38 t 1 1 171143 481 0.00 2019-11-14 18:46:09 2019-11-14 19:01:22 t 1 1 171145 591 0.00 2019-11-14 18:54:17 2019-11-14 19:02:23 t 1 1 171146 485 0.00 2019-11-14 18:47:11 2019-11-14 19:03:26 t 1 1 171148 562 0.00 2019-11-14 19:03:39 2019-11-14 19:03:50 t 1 1 171151 562 0.00 2019-11-14 19:04:13 2019-11-14 19:04:49 t 1 1 171152 562 0.00 2019-11-14 19:06:53 2019-11-14 19:08:04 t 1 1 171154 587 0.00 2019-11-14 18:52:57 2019-11-14 19:08:48 t 1 1 171158 593 0.00 2019-11-14 19:09:03 2019-11-14 19:15:50 t 1 1 171165 633 0.00 2019-11-14 18:38:16 2019-11-14 19:24:08 t 1 1 171166 566 0.00 2019-11-14 19:19:47 2019-11-14 19:24:49 t 1 1 171168 430 0.00 2019-11-14 19:23:26 2019-11-14 19:27:19 t 1 1 171170 637 0.00 2019-11-14 18:45:02 2019-11-14 19:27:39 t 1 1 171171 637 0.00 2019-11-14 19:28:29 2019-11-14 19:30:00 t 1 1 171176 593 0.00 2019-11-14 19:30:23 2019-11-14 19:35:27 t 1 1 171180 660 0.00 2019-11-14 19:29:58 2019-11-14 19:37:35 t 1 1 171181 623 0.00 2019-11-14 19:30:16 2019-11-14 19:38:48 t 1 1 171183 623 0.00 2019-11-14 19:39:29 2019-11-14 19:39:38 t 1 1 171187 551 0.00 2019-11-14 19:23:09 2019-11-14 19:41:30 t 1 1 171190 591 0.00 2019-11-14 19:20:31 2019-11-14 19:43:36 t 1 1 171193 623 0.00 2019-11-14 19:44:09 2019-11-14 19:45:12 t 1 1 171194 645 0.00 2019-11-14 19:32:43 2019-11-14 19:45:40 t 1 1 171195 551 0.00 2019-11-14 19:41:30 2019-11-14 19:46:31 t 1 1 171196 562 0.00 2019-11-14 19:45:50 2019-11-14 19:46:40 t 1 1 171197 587 0.00 2019-11-14 19:41:24 2019-11-14 19:46:50 t 1 1 171203 562 0.00 2019-11-14 19:47:36 2019-11-14 19:47:55 t 1 1 171204 627 0.00 2019-11-14 19:47:56 2019-11-14 19:48:16 t 1 1 171206 627 0.00 2019-11-14 19:48:16 2019-11-14 19:48:29 t 1 1 171208 220 0.00 2019-11-14 19:46:58 2019-11-14 19:48:49 t 1 1 171210 430 0.00 2019-11-14 19:45:01 2019-11-14 19:49:16 t 1 1 171211 627 0.00 2019-11-14 19:48:43 2019-11-14 19:49:24 t 1 1 171215 627 0.00 2019-11-14 19:50:12 2019-11-14 19:50:33 t 1 1 171218 645 0.00 2019-11-14 19:46:41 2019-11-14 19:51:27 t 1 1 171226 520 0.00 2019-11-14 19:51:09 2019-11-14 19:56:12 t 1 1 171233 220 0.00 2019-11-14 19:51:27 2019-11-14 19:59:02 t 1 1 171238 623 0.00 2019-11-14 20:00:24 2019-11-14 20:00:52 t 1 1 171243 633 0.00 2019-11-14 19:49:47 2019-11-14 20:02:51 t 1 1 171248 619 0.00 2019-11-14 20:02:33 2019-11-14 20:06:03 t 1 1 171253 430 0.00 2019-11-14 20:07:00 2019-11-14 20:07:07 t 1 1 171255 485 0.00 2019-11-14 20:06:58 2019-11-14 20:07:53 t 1 1 171256 220 0.00 2019-11-14 20:00:46 2019-11-14 20:08:00 t 1 1 171260 627 0.00 2019-11-14 20:08:35 2019-11-14 20:09:15 t 1 1 171262 623 0.00 2019-11-14 20:07:13 2019-11-14 20:09:22 t 1 1 171264 593 0.00 2019-11-14 19:58:51 2019-11-14 20:10:37 t 1 1 171267 627 0.00 2019-11-14 20:10:41 2019-11-14 20:10:59 t 1 1 171268 627 0.00 2019-11-14 20:11:41 2019-11-14 20:11:48 t 1 1 171270 587 0.00 2019-11-14 20:00:21 2019-11-14 20:12:17 t 1 1 171274 430 0.00 2019-11-14 20:14:56 2019-11-14 20:15:02 t 1 1 171276 587 0.00 2019-11-14 20:12:59 2019-11-14 20:16:44 t 1 1 171278 562 0.00 2019-11-14 20:17:10 2019-11-14 20:17:30 t 1 1 171280 551 0.00 2019-11-14 19:56:46 2019-11-14 20:17:45 t 1 1 171282 645 0.00 2019-11-14 20:17:44 2019-11-14 20:19:15 t 1 1 171285 633 0.00 2019-11-14 20:12:37 2019-11-14 20:19:45 t 1 1 171288 422 0.00 2019-11-14 20:19:51 2019-11-14 20:20:13 t 1 1 171295 619 0.00 2019-11-14 20:21:43 2019-11-14 20:24:49 t 1 1 171298 430 0.00 2019-11-14 20:28:00 2019-11-14 20:28:01 t 1 1 171301 422 0.00 2019-11-14 20:26:16 2019-11-14 20:28:52 t 1 1 171303 516 0.00 2019-11-14 19:37:57 2019-11-14 20:30:28 t 1 1 171316 430 0.00 2019-11-14 20:34:26 2019-11-14 20:35:26 t 1 1 171321 554 0.00 2019-11-14 20:37:27 2019-11-14 20:37:27 f 1 1 171325 538 0.00 2019-11-14 20:06:46 2019-11-14 20:38:32 t 1 1 171328 587 0.00 2019-11-14 20:36:32 2019-11-14 20:39:58 t 1 1 171329 520 0.00 2019-11-14 20:37:35 2019-11-14 20:40:15 t 1 1 171337 430 0.00 2019-11-14 20:44:03 2019-11-14 20:44:16 t 1 1 171338 430 0.00 2019-11-14 20:45:00 2019-11-14 20:45:08 t 1 1 171343 660 0.00 2019-11-14 20:38:09 2019-11-14 20:47:39 t 1 1 171344 562 0.00 2019-11-14 20:48:03 2019-11-14 20:48:21 t 1 1 171347 520 0.00 2019-11-14 20:40:15 2019-11-14 20:52:14 t 1 1 171349 645 0.00 2019-11-14 20:52:30 2019-11-14 20:53:57 t 1 1 171351 562 0.00 2019-11-14 20:55:51 2019-11-14 20:56:01 t 1 1 171352 633 0.00 2019-11-14 20:47:21 2019-11-14 20:56:41 t 1 1 171355 587 0.00 2019-11-14 20:55:45 2019-11-14 21:01:49 t 1 1 171361 611 0.00 2019-11-14 21:05:13 2019-11-14 21:05:58 t 1 1 171362 562 0.00 2019-11-14 21:06:30 2019-11-14 21:06:51 t 1 1 171363 514 0.00 2019-11-14 20:56:01 2019-11-14 21:06:59 t 1 1 171365 451 0.00 2019-11-14 19:59:37 2019-11-14 21:07:30 t 1 1 171369 422 0.00 2019-11-14 21:06:52 2019-11-14 21:08:46 t 1 1 171371 619 0.00 2019-11-14 21:07:58 2019-11-14 21:11:02 t 1 1 171373 587 0.00 2019-11-14 21:05:48 2019-11-14 21:12:03 t 1 1 171376 220 0.00 2019-11-14 20:14:38 2019-11-14 21:13:43 t 1 1 171378 633 0.00 2019-11-14 21:07:57 2019-11-14 21:13:55 t 1 1 171379 220 0.00 2019-11-14 21:13:42 2019-11-14 21:14:15 t 1 1 171386 631 0.00 2019-11-14 21:14:33 2019-11-14 21:17:39 t 1 1 171389 544 0.00 2019-11-14 20:41:26 2019-11-14 21:18:58 t 1 1 171390 220 0.00 2019-11-14 21:18:27 2019-11-14 21:18:59 t 1 1 171393 451 0.00 2019-11-14 21:09:29 2019-11-14 21:19:16 t 1 1 171395 422 0.00 2019-11-14 21:19:32 2019-11-14 21:19:39 t 1 1 171398 422 0.00 2019-11-14 21:20:16 2019-11-14 21:20:27 t 1 1 171400 220 0.00 2019-11-14 21:20:47 2019-11-14 21:21:24 t 1 1 171407 220 0.00 2019-11-14 21:22:38 2019-11-14 21:23:18 t 1 1 171408 220 0.00 2019-11-14 21:23:17 2019-11-14 21:23:49 t 1 1 171410 637 0.00 2019-11-14 20:28:18 2019-11-14 21:24:06 t 1 1 171411 633 0.00 2019-11-14 21:23:58 2019-11-14 21:24:57 t 1 1 171412 581 0.00 2019-11-14 21:08:32 2019-11-14 21:25:21 t 1 1 171413 220 0.00 2019-11-14 21:23:49 2019-11-14 21:26:17 t 1 1 171418 220 0.00 2019-11-14 21:27:28 2019-11-14 21:27:43 t 1 1 171422 220 0.00 2019-11-14 21:28:21 2019-11-14 21:28:55 t 1 1 171423 220 0.00 2019-11-14 21:28:54 2019-11-14 21:29:32 t 1 1 171426 538 0.00 2019-11-14 21:30:18 2019-11-14 21:30:42 t 1 1 171427 220 0.00 2019-11-14 21:30:08 2019-11-14 21:30:47 t 1 1 171429 562 0.00 2019-11-14 21:30:38 2019-11-14 21:31:02 t 1 1 171430 220 0.00 2019-11-14 21:30:46 2019-11-14 21:31:18 t 1 1 171431 220 0.00 2019-11-14 21:31:18 2019-11-14 21:31:21 t 1 1 171436 451 0.00 2019-11-14 21:19:16 2019-11-14 21:33:08 t 1 1 171135 430 0.00 2019-11-14 18:58:19 2019-11-14 18:58:21 t 1 1 171137 599 0.00 2019-11-14 18:49:41 2019-11-14 18:59:48 t 1 1 171138 554 0.00 2019-11-14 19:00:18 2019-11-14 19:00:18 f 1 1 171139 430 0.00 2019-11-14 18:59:40 2019-11-14 19:00:20 t 1 1 171144 430 0.00 2019-11-14 19:00:43 2019-11-14 19:01:45 t 1 1 171147 562 0.00 2019-11-14 19:03:18 2019-11-14 19:03:33 t 1 1 171153 660 0.00 2019-11-14 18:29:33 2019-11-14 19:08:10 t 1 1 171155 593 0.00 2019-11-14 18:32:27 2019-11-14 19:09:03 t 1 1 171156 562 0.00 2019-11-14 19:13:03 2019-11-14 19:13:40 t 1 1 171160 597 0.00 2019-11-14 19:14:50 2019-11-14 19:17:01 t 1 1 171162 562 0.00 2019-11-14 19:20:13 2019-11-14 19:20:28 t 1 1 171163 593 0.00 2019-11-14 19:15:50 2019-11-14 19:21:34 t 1 1 171172 593 0.00 2019-11-14 19:21:34 2019-11-14 19:30:23 t 1 1 171174 566 0.00 2019-11-14 19:24:49 2019-11-14 19:33:01 t 1 1 171175 633 0.00 2019-11-14 19:24:08 2019-11-14 19:33:22 t 1 1 171178 430 0.00 2019-11-14 19:35:35 2019-11-14 19:36:10 t 1 1 171179 430 0.00 2019-11-14 19:36:13 2019-11-14 19:37:17 t 1 1 171184 562 0.00 2019-11-14 19:39:24 2019-11-14 19:39:48 t 1 1 171185 220 0.00 2019-11-14 17:56:10 2019-11-14 19:40:55 t 1 1 171188 633 0.00 2019-11-14 19:33:22 2019-11-14 19:42:56 t 1 1 171189 623 0.00 2019-11-14 19:42:07 2019-11-14 19:43:12 t 1 1 171191 623 0.00 2019-11-14 19:43:12 2019-11-14 19:43:48 t 1 1 171192 430 0.00 2019-11-14 19:41:17 2019-11-14 19:45:01 t 1 1 171200 627 0.00 2019-11-14 19:37:54 2019-11-14 19:47:32 t 1 1 171201 623 0.00 2019-11-14 19:47:31 2019-11-14 19:47:41 t 1 1 171207 416 0.00 2019-11-14 18:41:03 2019-11-14 19:48:33 t 1 1 171209 587 0.00 2019-11-14 19:48:34 2019-11-14 19:48:54 t 1 1 171214 627 0.00 2019-11-14 19:49:59 2019-11-14 19:50:06 t 1 1 171216 591 0.00 2019-11-14 19:48:46 2019-11-14 19:50:46 t 1 1 171220 623 0.00 2019-11-14 19:50:07 2019-11-14 19:52:22 t 1 1 171222 562 0.00 2019-11-14 19:51:08 2019-11-14 19:52:35 t 1 1 171224 623 0.00 2019-11-14 19:54:08 2019-11-14 19:54:38 t 1 1 171228 623 0.00 2019-11-14 19:56:01 2019-11-14 19:56:28 t 1 1 171231 623 0.00 2019-11-14 19:58:37 2019-11-14 19:58:49 t 1 1 171234 587 0.00 2019-11-14 19:53:22 2019-11-14 19:59:07 t 1 1 171235 220 0.00 2019-11-14 19:59:02 2019-11-14 19:59:36 t 1 1 171240 623 0.00 2019-11-14 20:01:26 2019-11-14 20:02:08 t 1 1 171244 627 0.00 2019-11-14 20:03:33 2019-11-14 20:03:40 t 1 1 171246 627 0.00 2019-11-14 20:05:22 2019-11-14 20:05:45 t 1 1 171249 562 0.00 2019-11-14 20:06:35 2019-11-14 20:06:43 t 1 1 171251 581 0.00 2019-11-14 19:26:27 2019-11-14 20:06:53 t 1 1 171254 623 0.00 2019-11-14 20:07:30 2019-11-14 20:07:47 t 1 1 171258 660 0.00 2019-11-14 19:37:35 2019-11-14 20:08:23 t 1 1 171265 220 0.00 2019-11-14 20:08:00 2019-11-14 20:10:48 t 1 1 171269 220 0.00 2019-11-14 20:10:48 2019-11-14 20:11:52 t 1 1 171271 627 0.00 2019-11-14 20:11:57 2019-11-14 20:12:17 t 1 1 171272 633 0.00 2019-11-14 20:02:51 2019-11-14 20:12:37 t 1 1 171273 627 0.00 2019-11-14 20:12:32 2019-11-14 20:13:03 t 1 1 171275 593 0.00 2019-11-14 20:10:37 2019-11-14 20:16:43 t 1 1 171277 637 0.00 2019-11-14 20:04:24 2019-11-14 20:16:55 t 1 1 171281 430 0.00 2019-11-14 20:18:03 2019-11-14 20:18:20 t 1 1 171284 587 0.00 2019-11-14 20:18:44 2019-11-14 20:19:32 t 1 1 171286 514 0.00 2019-11-14 20:08:12 2019-11-14 20:19:59 t 1 1 171289 581 0.00 2019-11-14 20:07:01 2019-11-14 20:20:23 t 1 1 171291 422 0.00 2019-11-14 20:20:21 2019-11-14 20:21:53 t 1 1 171293 593 0.00 2019-11-14 20:16:43 2019-11-14 20:22:41 t 1 1 171294 422 0.00 2019-11-14 20:23:47 2019-11-14 20:24:32 t 1 1 171296 422 0.00 2019-11-14 20:24:38 2019-11-14 20:24:57 t 1 1 171299 637 0.00 2019-11-14 20:19:25 2019-11-14 20:28:18 t 1 1 171300 562 0.00 2019-11-14 20:26:39 2019-11-14 20:28:25 t 1 1 171305 422 0.00 2019-11-14 20:29:55 2019-11-14 20:30:55 t 1 1 171307 593 0.00 2019-11-14 20:22:41 2019-11-14 20:31:39 t 1 1 171308 562 0.00 2019-11-14 20:31:46 2019-11-14 20:31:55 t 1 1 171310 485 0.00 2019-11-14 20:30:38 2019-11-14 20:33:13 t 1 1 171312 633 0.00 2019-11-14 20:27:01 2019-11-14 20:33:20 t 1 1 171313 430 0.00 2019-11-14 20:33:24 2019-11-14 20:33:57 t 1 1 171315 520 0.00 2019-11-14 19:56:27 2019-11-14 20:34:59 t 1 1 171317 562 0.00 2019-11-14 20:35:08 2019-11-14 20:35:55 t 1 1 171318 430 0.00 2019-11-14 20:36:05 2019-11-14 20:36:13 t 1 1 171319 562 0.00 2019-11-14 20:36:08 2019-11-14 20:36:34 t 1 1 171322 520 0.00 2019-11-14 20:34:58 2019-11-14 20:37:34 t 1 1 171324 635 0.00 2019-11-14 20:26:11 2019-11-14 20:38:24 t 1 1 171330 430 0.00 2019-11-14 20:40:09 2019-11-14 20:40:33 t 1 1 171331 562 0.00 2019-11-14 20:41:12 2019-11-14 20:41:21 t 1 1 171332 633 0.00 2019-11-14 20:36:41 2019-11-14 20:42:53 t 1 1 171334 430 0.00 2019-11-14 20:43:38 2019-11-14 20:43:48 t 1 1 171339 422 0.00 2019-11-14 20:37:59 2019-11-14 20:45:52 t 1 1 171341 430 0.00 2019-11-14 20:45:30 2019-11-14 20:46:45 t 1 1 171342 633 0.00 2019-11-14 20:42:53 2019-11-14 20:47:21 t 1 1 171348 430 0.00 2019-11-14 20:52:51 2019-11-14 20:53:11 t 1 1 171356 633 0.00 2019-11-14 20:56:41 2019-11-14 21:03:52 t 1 1 171357 422 0.00 2019-11-14 21:03:57 2019-11-14 21:04:03 t 1 1 171358 585 0.00 2019-11-14 20:55:49 2019-11-14 21:05:03 t 1 1 171360 587 0.00 2019-11-14 21:02:30 2019-11-14 21:05:18 t 1 1 171364 645 0.00 2019-11-14 20:54:08 2019-11-14 21:07:03 t 1 1 171366 611 0.00 2019-11-14 21:05:57 2019-11-14 21:07:51 t 1 1 171368 585 0.00 2019-11-14 21:05:02 2019-11-14 21:07:58 t 1 1 171370 422 0.00 2019-11-14 21:10:32 2019-11-14 21:10:48 t 1 1 171375 627 0.00 2019-11-14 21:09:07 2019-11-14 21:13:41 t 1 1 171377 566 0.00 2019-11-14 19:33:01 2019-11-14 21:13:44 t 1 1 171380 220 0.00 2019-11-14 21:14:14 2019-11-14 21:14:58 t 1 1 171382 220 0.00 2019-11-14 21:15:30 2019-11-14 21:16:05 t 1 1 171383 220 0.00 2019-11-14 21:16:05 2019-11-14 21:16:40 t 1 1 171385 633 0.00 2019-11-14 21:13:55 2019-11-14 21:17:32 t 1 1 171391 422 0.00 2019-11-14 21:12:08 2019-11-14 21:19:03 t 1 1 171396 220 0.00 2019-11-14 21:19:38 2019-11-14 21:20:11 t 1 1 171401 422 0.00 2019-11-14 21:21:20 2019-11-14 21:21:28 t 1 1 171402 220 0.00 2019-11-14 21:21:24 2019-11-14 21:22:01 t 1 1 171403 220 0.00 2019-11-14 21:22:01 2019-11-14 21:22:38 t 1 1 171405 645 0.00 2019-11-14 21:19:44 2019-11-14 21:23:01 t 1 1 171409 633 0.00 2019-11-14 21:17:33 2019-11-14 21:23:58 t 1 1 171416 220 0.00 2019-11-14 21:26:52 2019-11-14 21:27:09 t 1 1 171417 220 0.00 2019-11-14 21:27:09 2019-11-14 21:27:28 t 1 1 171420 220 0.00 2019-11-14 21:27:42 2019-11-14 21:28:18 t 1 1 171421 220 0.00 2019-11-14 21:28:18 2019-11-14 21:28:21 t 1 1 171425 220 0.00 2019-11-14 21:29:32 2019-11-14 21:30:09 t 1 1 171433 220 0.00 2019-11-14 21:31:55 2019-11-14 21:32:10 t 1 1 171437 422 0.00 2019-11-14 21:21:43 2019-11-14 21:33:49 t 1 1 171442 645 0.00 2019-11-14 21:31:16 2019-11-14 21:35:42 t 1 1 171447 422 0.00 2019-11-14 21:35:37 2019-11-14 21:36:21 t 1 1 171448 220 0.00 2019-11-14 21:36:21 2019-11-14 21:36:33 t 1 1 171450 220 0.00 2019-11-14 21:37:08 2019-11-14 21:37:09 t 1 1 171452 422 0.00 2019-11-14 21:37:05 2019-11-14 21:37:22 t 1 1 171454 220 0.00 2019-11-14 21:37:09 2019-11-14 21:37:42 t 1 1 171456 220 0.00 2019-11-14 21:37:44 2019-11-14 21:38:21 t 1 1 171458 220 0.00 2019-11-14 21:38:21 2019-11-14 21:38:54 t 1 1 171459 220 0.00 2019-11-14 21:38:54 2019-11-14 21:39:30 t 1 1 171461 220 0.00 2019-11-14 21:39:30 2019-11-14 21:40:04 t 1 1 171462 422 0.00 2019-11-14 21:38:16 2019-11-14 21:40:27 t 1 1 171465 514 0.00 2019-11-14 21:06:59 2019-11-14 21:40:49 t 1 1 171470 220 0.00 2019-11-14 21:41:19 2019-11-14 21:41:48 t 1 1 171478 593 0.00 2019-11-14 21:16:50 2019-11-14 21:44:27 t 1 1 171479 220 0.00 2019-11-14 21:44:11 2019-11-14 21:44:43 t 1 1 171481 220 0.00 2019-11-14 21:45:16 2019-11-14 21:45:49 t 1 1 171482 220 0.00 2019-11-14 21:45:48 2019-11-14 21:46:20 t 1 1 171484 220 0.00 2019-11-14 21:46:54 2019-11-14 21:47:29 t 1 1 171487 562 0.00 2019-11-14 21:47:54 2019-11-14 21:48:18 t 1 1 171489 220 0.00 2019-11-14 21:48:04 2019-11-14 21:49:00 t 1 1 171490 220 0.00 2019-11-14 21:48:59 2019-11-14 21:49:35 t 1 1 171492 451 0.00 2019-11-14 21:33:08 2019-11-14 21:50:14 t 1 1 171494 220 0.00 2019-11-14 21:50:45 2019-11-14 21:51:20 t 1 1 171495 645 0.00 2019-11-14 21:36:25 2019-11-14 21:52:14 t 1 1 171497 619 0.00 2019-11-14 21:50:33 2019-11-14 21:53:19 t 1 1 171499 422 0.00 2019-11-14 21:52:23 2019-11-14 21:53:25 t 1 1 171502 597 0.00 2019-11-14 21:53:05 2019-11-14 21:56:38 t 1 1 171504 627 0.00 2019-11-14 21:52:09 2019-11-14 21:58:25 t 1 1 171505 422 0.00 2019-11-14 21:58:39 2019-11-14 21:58:56 t 1 1 171509 595 0.00 2019-11-14 21:47:15 2019-11-14 22:01:57 t 1 1 171512 660 0.00 2019-11-14 22:02:25 2019-11-14 22:05:10 t 1 1 171514 645 0.00 2019-11-14 21:52:40 2019-11-14 22:06:01 t 1 1 171515 551 0.00 2019-11-14 20:17:45 2019-11-14 22:06:38 t 1 1 171517 645 0.00 2019-11-14 22:06:57 2019-11-14 22:07:58 t 1 1 171518 416 0.00 2019-11-14 21:28:18 2019-11-14 22:08:38 t 1 1 171521 645 0.00 2019-11-14 22:09:09 2019-11-14 22:09:51 t 1 1 171524 520 0.00 2019-11-14 22:03:06 2019-11-14 22:11:19 t 1 1 171525 645 0.00 2019-11-14 22:11:22 2019-11-14 22:11:27 t 1 1 171527 430 0.00 2019-11-14 22:08:55 2019-11-14 22:14:00 t 1 1 171533 595 0.00 2019-11-14 22:14:29 2019-11-14 22:16:58 t 1 1 171535 485 0.00 2019-11-14 22:08:31 2019-11-14 22:17:28 t 1 1 171545 430 0.00 2019-11-14 22:17:34 2019-11-14 22:22:49 t 1 1 171546 619 0.00 2019-11-14 22:15:30 2019-11-14 22:23:32 t 1 1 171547 422 0.00 2019-11-14 22:23:48 2019-11-14 22:24:27 t 1 1 171554 220 0.00 2019-11-14 22:28:14 2019-11-14 22:28:47 t 1 1 171556 595 0.00 2019-11-14 22:29:11 2019-11-14 22:29:20 t 1 1 171558 595 0.00 2019-11-14 22:30:07 2019-11-14 22:30:25 t 1 1 171560 591 0.00 2019-11-14 22:32:20 2019-11-14 22:32:38 t 1 1 171564 566 0.00 2019-11-14 22:26:48 2019-11-14 22:34:02 t 1 1 171566 510 0.00 2019-11-14 21:44:15 2019-11-14 22:34:22 t 1 1 171568 595 0.00 2019-11-14 22:34:19 2019-11-14 22:34:26 t 1 1 171571 595 0.00 2019-11-14 22:35:26 2019-11-14 22:35:43 t 1 1 171574 623 0.00 2019-11-14 22:37:49 2019-11-14 22:38:21 t 1 1 171575 623 0.00 2019-11-14 22:38:34 2019-11-14 22:38:47 t 1 1 171577 595 0.00 2019-11-14 22:39:25 2019-11-14 22:39:35 t 1 1 171578 591 0.00 2019-11-14 22:39:23 2019-11-14 22:40:45 t 1 1 171581 422 0.00 2019-11-14 22:41:47 2019-11-14 22:42:01 t 1 1 171590 623 0.00 2019-11-14 22:43:09 2019-11-14 22:45:58 t 1 1 171594 422 0.00 2019-11-14 22:46:40 2019-11-14 22:46:53 t 1 1 171595 422 0.00 2019-11-14 22:47:17 2019-11-14 22:47:23 t 1 1 171597 481 0.00 2019-11-14 22:35:10 2019-11-14 22:49:38 t 1 1 171599 623 0.00 2019-11-14 22:51:15 2019-11-14 22:51:36 t 1 1 171604 416 0.00 2019-11-14 22:22:22 2019-11-14 22:53:44 t 1 1 171615 481 0.00 2019-11-14 22:49:38 2019-11-14 22:57:10 t 1 1 171616 422 0.00 2019-11-14 22:57:42 2019-11-14 22:58:16 t 1 1 171617 623 0.00 2019-11-14 22:57:42 2019-11-14 22:58:32 t 1 1 171619 220 0.00 2019-11-14 22:59:42 2019-11-14 22:59:50 t 1 1 171621 422 0.00 2019-11-14 22:59:50 2019-11-14 23:00:05 t 1 1 171623 627 0.00 2019-11-14 23:00:46 2019-11-14 23:00:55 t 1 1 171625 623 0.00 2019-11-14 23:00:12 2019-11-14 23:01:53 t 1 1 171627 587 0.00 2019-11-14 22:54:17 2019-11-14 23:02:26 t 1 1 171628 627 0.00 2019-11-14 23:02:40 2019-11-14 23:02:58 t 1 1 171632 587 0.00 2019-11-14 23:03:23 2019-11-14 23:03:37 t 1 1 171636 587 0.00 2019-11-14 23:03:41 2019-11-14 23:05:04 t 1 1 171640 645 0.00 2019-11-14 23:05:23 2019-11-14 23:07:10 t 1 1 171641 587 0.00 2019-11-14 23:06:27 2019-11-14 23:07:50 t 1 1 171642 627 0.00 2019-11-14 23:06:26 2019-11-14 23:08:42 t 1 1 171645 585 0.00 2019-11-14 22:53:37 2019-11-14 23:10:46 t 1 1 171646 220 0.00 2019-11-14 23:10:48 2019-11-14 23:10:56 t 1 1 171648 220 0.00 2019-11-14 23:11:04 2019-11-14 23:11:12 t 1 1 171649 220 0.00 2019-11-14 23:11:20 2019-11-14 23:11:27 t 1 1 171650 220 0.00 2019-11-14 23:11:35 2019-11-14 23:11:43 t 1 1 171653 593 0.00 2019-11-14 22:59:31 2019-11-14 23:12:10 t 1 1 171654 627 0.00 2019-11-14 23:11:29 2019-11-14 23:12:21 t 1 1 171657 627 0.00 2019-11-14 23:12:49 2019-11-14 23:13:09 t 1 1 171659 587 0.00 2019-11-14 23:08:33 2019-11-14 23:13:57 t 1 1 171660 627 0.00 2019-11-14 23:14:05 2019-11-14 23:14:09 t 1 1 171665 623 0.00 2019-11-14 23:16:28 2019-11-14 23:16:37 t 1 1 171670 422 0.00 2019-11-14 23:12:07 2019-11-14 23:19:41 t 1 1 171673 220 0.00 2019-11-14 23:22:05 2019-11-14 23:22:28 t 1 1 171678 627 0.00 2019-11-14 23:24:33 2019-11-14 23:24:49 t 1 1 171684 623 0.00 2019-11-14 23:26:48 2019-11-14 23:26:51 t 1 1 171688 595 0.00 2019-11-14 23:10:36 2019-11-14 23:30:38 t 1 1 171689 581 0.00 2019-11-14 23:26:58 2019-11-14 23:30:53 t 1 1 171691 422 0.00 2019-11-14 23:22:54 2019-11-14 23:31:21 t 1 1 171694 627 0.00 2019-11-14 23:31:39 2019-11-14 23:31:57 t 1 1 171696 220 0.00 2019-11-14 23:32:46 2019-11-14 23:32:54 t 1 1 171706 623 0.00 2019-11-14 23:36:58 2019-11-14 23:36:59 t 1 1 171708 595 0.00 2019-11-14 23:32:25 2019-11-14 23:37:43 t 1 1 171712 645 0.00 2019-11-14 23:30:46 2019-11-14 23:38:48 t 1 1 171718 595 0.00 2019-11-14 23:40:32 2019-11-14 23:40:37 t 1 1 171719 627 0.00 2019-11-14 23:40:50 2019-11-14 23:41:08 t 1 1 171721 623 0.00 2019-11-14 23:42:00 2019-11-14 23:42:01 t 1 1 171726 585 0.00 2019-11-14 23:38:28 2019-11-14 23:44:17 t 1 1 171736 562 0.00 2019-11-14 23:48:10 2019-11-14 23:48:19 t 1 1 171747 220 0.00 2019-11-14 23:54:02 2019-11-14 23:54:17 t 1 1 171438 544 0.00 2019-11-14 21:26:42 2019-11-14 21:34:15 t 1 1 171439 581 0.00 2019-11-14 21:25:21 2019-11-14 21:34:24 t 1 1 171441 422 0.00 2019-11-14 21:35:19 2019-11-14 21:35:31 t 1 1 171443 587 0.00 2019-11-14 21:23:12 2019-11-14 21:35:48 t 1 1 171449 220 0.00 2019-11-14 21:36:32 2019-11-14 21:37:08 t 1 1 171451 585 0.00 2019-11-14 21:17:05 2019-11-14 21:37:16 t 1 1 171453 562 0.00 2019-11-14 21:37:02 2019-11-14 21:37:25 t 1 1 171457 591 0.00 2019-11-14 19:58:33 2019-11-14 21:38:38 t 1 1 171460 581 0.00 2019-11-14 21:34:35 2019-11-14 21:39:53 t 1 1 171464 220 0.00 2019-11-14 21:40:37 2019-11-14 21:40:44 t 1 1 171467 510 0.00 2019-11-14 21:30:52 2019-11-14 21:40:58 t 1 1 171468 220 0.00 2019-11-14 21:40:43 2019-11-14 21:41:13 t 1 1 171469 220 0.00 2019-11-14 21:41:12 2019-11-14 21:41:20 t 1 1 171473 220 0.00 2019-11-14 21:42:26 2019-11-14 21:43:02 t 1 1 171474 220 0.00 2019-11-14 21:43:02 2019-11-14 21:43:39 t 1 1 171475 220 0.00 2019-11-14 21:43:38 2019-11-14 21:44:11 t 1 1 171477 422 0.00 2019-11-14 21:44:02 2019-11-14 21:44:16 t 1 1 171488 422 0.00 2019-11-14 21:48:44 2019-11-14 21:48:58 t 1 1 171496 585 0.00 2019-11-14 21:48:30 2019-11-14 21:53:00 t 1 1 171500 485 0.00 2019-11-14 21:40:45 2019-11-14 21:54:06 t 1 1 171501 538 0.00 2019-11-14 21:30:45 2019-11-14 21:56:32 t 1 1 171503 566 0.00 2019-11-14 21:48:01 2019-11-14 21:56:55 t 1 1 171506 562 0.00 2019-11-14 21:58:45 2019-11-14 21:59:08 t 1 1 171507 422 0.00 2019-11-14 22:00:04 2019-11-14 22:00:11 t 1 1 171508 485 0.00 2019-11-14 21:54:06 2019-11-14 22:00:46 t 1 1 171510 578 0.00 2019-11-14 21:50:46 2019-11-14 22:03:50 t 1 1 171522 562 0.00 2019-11-14 22:09:28 2019-11-14 22:09:55 t 1 1 171523 593 0.00 2019-11-14 21:44:28 2019-11-14 22:10:28 t 1 1 171526 593 0.00 2019-11-14 22:10:28 2019-11-14 22:12:53 t 1 1 171530 581 0.00 2019-11-14 22:11:50 2019-11-14 22:15:36 t 1 1 171531 220 0.00 2019-11-14 21:51:20 2019-11-14 22:16:43 t 1 1 171536 430 0.00 2019-11-14 22:14:00 2019-11-14 22:17:34 t 1 1 171540 595 0.00 2019-11-14 22:17:53 2019-11-14 22:19:57 t 1 1 171542 578 0.00 2019-11-14 22:03:50 2019-11-14 22:21:06 t 1 1 171544 416 0.00 2019-11-14 22:08:38 2019-11-14 22:22:22 t 1 1 171550 430 0.00 2019-11-14 22:22:49 2019-11-14 22:26:51 t 1 1 171555 587 0.00 2019-11-14 22:25:31 2019-11-14 22:28:51 t 1 1 171557 591 0.00 2019-11-14 21:57:10 2019-11-14 22:29:33 t 1 1 171561 220 0.00 2019-11-14 22:30:22 2019-11-14 22:32:58 t 1 2 171562 538 0.00 2019-11-14 21:56:32 2019-11-14 22:33:23 t 1 1 171570 422 0.00 2019-11-14 22:34:41 2019-11-14 22:35:15 t 1 1 171572 623 0.00 2019-11-14 22:35:36 2019-11-14 22:35:46 t 1 1 171573 623 0.00 2019-11-14 22:36:37 2019-11-14 22:36:52 t 1 1 171579 514 0.00 2019-11-14 21:40:49 2019-11-14 22:40:56 t 1 1 171580 422 0.00 2019-11-14 22:37:31 2019-11-14 22:41:41 t 1 1 171585 660 0.00 2019-11-14 22:05:10 2019-11-14 22:44:06 t 1 1 171588 422 0.00 2019-11-14 22:44:58 2019-11-14 22:45:17 t 1 1 171593 516 0.00 2019-11-14 22:29:09 2019-11-14 22:46:40 t 1 1 171598 562 0.00 2019-11-14 22:49:10 2019-11-14 22:50:21 t 1 1 171600 422 0.00 2019-11-14 22:51:27 2019-11-14 22:51:41 t 1 1 171602 623 0.00 2019-11-14 22:52:53 2019-11-14 22:53:04 t 1 1 171603 587 0.00 2019-11-14 22:46:09 2019-11-14 22:53:34 t 1 1 171606 587 0.00 2019-11-14 22:54:04 2019-11-14 22:54:11 t 1 1 171608 645 0.00 2019-11-14 22:51:01 2019-11-14 22:55:13 t 1 1 171610 623 0.00 2019-11-14 22:56:04 2019-11-14 22:56:06 t 1 1 171613 538 0.00 2019-11-14 22:53:23 2019-11-14 22:56:42 t 1 1 171618 623 0.00 2019-11-14 22:58:32 2019-11-14 22:58:59 t 1 1 171622 220 0.00 2019-11-14 23:00:02 2019-11-14 23:00:33 t 1 1 171624 422 0.00 2019-11-14 23:01:36 2019-11-14 23:01:44 t 1 1 171626 627 0.00 2019-11-14 23:01:51 2019-11-14 23:01:58 t 1 1 171629 551 0.00 2019-11-14 22:06:38 2019-11-14 23:02:58 t 1 1 171630 645 0.00 2019-11-14 22:57:16 2019-11-14 23:03:00 t 1 1 171633 627 0.00 2019-11-14 23:03:54 2019-11-14 23:04:02 t 1 1 171637 645 0.00 2019-11-14 23:03:00 2019-11-14 23:05:24 t 1 1 171638 587 0.00 2019-11-14 23:05:24 2019-11-14 23:05:46 t 1 1 171643 595 0.00 2019-11-14 22:45:39 2019-11-14 23:10:01 t 1 1 171651 416 0.00 2019-11-14 22:53:44 2019-11-14 23:11:51 t 1 1 171652 585 0.00 2019-11-14 23:10:56 2019-11-14 23:12:06 t 1 1 171656 623 0.00 2019-11-14 23:02:53 2019-11-14 23:13:03 t 1 1 171662 627 0.00 2019-11-14 23:15:05 2019-11-14 23:15:08 t 1 1 171663 597 0.00 2019-11-14 23:01:26 2019-11-14 23:15:33 t 1 1 171664 627 0.00 2019-11-14 23:15:36 2019-11-14 23:16:27 t 1 1 171667 627 0.00 2019-11-14 23:16:59 2019-11-14 23:17:16 t 1 1 171668 627 0.00 2019-11-14 23:17:22 2019-11-14 23:18:16 t 1 1 171669 627 0.00 2019-11-14 23:18:36 2019-11-14 23:18:40 t 1 1 171671 627 0.00 2019-11-14 23:20:17 2019-11-14 23:20:20 t 1 1 171672 416 0.00 2019-11-14 23:11:51 2019-11-14 23:22:21 t 1 1 171674 623 0.00 2019-11-14 23:21:42 2019-11-14 23:22:49 t 1 1 171676 627 0.00 2019-11-14 23:23:32 2019-11-14 23:23:50 t 1 1 171677 627 0.00 2019-11-14 23:24:17 2019-11-14 23:24:20 t 1 1 171679 627 0.00 2019-11-14 23:25:16 2019-11-14 23:25:23 t 1 1 171681 627 0.00 2019-11-14 23:25:44 2019-11-14 23:25:50 t 1 1 171685 562 0.00 2019-11-14 23:09:12 2019-11-14 23:27:50 t 1 1 171690 627 0.00 2019-11-14 23:30:51 2019-11-14 23:30:57 t 1 1 171692 585 0.00 2019-11-14 23:22:56 2019-11-14 23:31:28 t 1 1 171698 422 0.00 2019-11-14 23:33:46 2019-11-14 23:33:54 t 1 1 171701 627 0.00 2019-11-14 23:34:54 2019-11-14 23:35:01 t 1 1 171704 512 0.00 2019-11-14 23:33:31 2019-11-14 23:36:33 t 1 1 171707 627 0.00 2019-11-14 23:36:45 2019-11-14 23:37:03 t 1 1 171710 627 0.00 2019-11-14 23:37:46 2019-11-14 23:38:03 t 1 1 171714 627 0.00 2019-11-14 23:39:00 2019-11-14 23:39:07 t 1 1 171715 627 0.00 2019-11-14 23:39:13 2019-11-14 23:39:25 t 1 1 171717 627 0.00 2019-11-14 23:40:00 2019-11-14 23:40:07 t 1 1 171720 595 0.00 2019-11-14 23:40:46 2019-11-14 23:41:08 t 1 1 171725 627 0.00 2019-11-14 23:43:56 2019-11-14 23:44:11 t 1 1 171728 645 0.00 2019-11-14 23:38:48 2019-11-14 23:45:55 t 1 1 171729 422 0.00 2019-11-14 23:40:29 2019-11-14 23:46:31 t 1 1 171730 593 0.00 2019-11-14 23:37:51 2019-11-14 23:46:59 t 1 1 171731 623 0.00 2019-11-14 23:47:03 2019-11-14 23:47:03 t 1 1 171733 422 0.00 2019-11-14 23:46:51 2019-11-14 23:47:29 t 1 1 171737 422 0.00 2019-11-14 23:47:45 2019-11-14 23:48:29 t 1 1 171738 422 0.00 2019-11-14 23:49:23 2019-11-14 23:51:07 t 1 1 171739 422 0.00 2019-11-14 23:51:45 2019-11-14 23:51:51 t 1 1 171741 593 0.00 2019-11-14 23:46:59 2019-11-14 23:52:09 t 1 1 171742 623 0.00 2019-11-14 23:52:08 2019-11-14 23:52:37 t 1 1 171752 510 0.00 2019-11-14 22:34:22 2019-11-14 23:57:04 t 1 1 171755 623 0.00 2019-11-14 23:57:39 2019-11-14 23:58:02 t 1 1 171491 220 0.00 2019-11-14 21:49:34 2019-11-14 21:50:08 t 1 1 171493 220 0.00 2019-11-14 21:50:07 2019-11-14 21:50:45 t 1 1 171498 503 0.00 2019-11-14 21:51:21 2019-11-14 21:53:22 t 1 1 171511 422 0.00 2019-11-14 22:04:20 2019-11-14 22:04:28 t 1 1 171513 566 0.00 2019-11-14 21:56:55 2019-11-14 22:05:13 t 1 1 171516 645 0.00 2019-11-14 22:06:19 2019-11-14 22:07:22 t 1 1 171519 430 0.00 2019-11-14 22:03:03 2019-11-14 22:08:55 t 1 1 171520 662 0.00 2019-11-14 21:32:10 2019-11-14 22:09:44 t 1 1 171528 595 0.00 2019-11-14 22:02:21 2019-11-14 22:14:18 t 1 1 171529 422 0.00 2019-11-14 22:07:05 2019-11-14 22:14:35 t 1 1 171532 422 0.00 2019-11-14 22:14:35 2019-11-14 22:16:44 t 1 1 171534 581 0.00 2019-11-14 22:15:36 2019-11-14 22:17:24 t 1 1 171537 220 0.00 2019-11-14 22:17:45 2019-11-14 22:17:53 t 1 1 171538 566 0.00 2019-11-14 22:05:13 2019-11-14 22:18:37 t 1 1 171539 645 0.00 2019-11-14 22:11:33 2019-11-14 22:19:21 t 1 1 171541 562 0.00 2019-11-14 22:20:20 2019-11-14 22:20:34 t 1 1 171543 422 0.00 2019-11-14 22:21:54 2019-11-14 22:22:12 t 1 1 171548 578 0.00 2019-11-14 22:21:06 2019-11-14 22:26:27 t 1 1 171549 566 0.00 2019-11-14 22:18:37 2019-11-14 22:26:48 t 1 1 171551 562 0.00 2019-11-14 22:26:35 2019-11-14 22:27:05 t 1 1 171552 645 0.00 2019-11-14 22:19:21 2019-11-14 22:28:06 t 1 1 171553 595 0.00 2019-11-14 22:20:50 2019-11-14 22:28:22 t 1 1 171559 422 0.00 2019-11-14 22:30:48 2019-11-14 22:31:07 t 1 1 171563 562 0.00 2019-11-14 22:33:17 2019-11-14 22:33:27 t 1 1 171565 623 0.00 2019-11-14 22:27:19 2019-11-14 22:34:15 t 1 1 171567 623 0.00 2019-11-14 22:34:20 2019-11-14 22:34:23 t 1 1 171569 481 0.00 2019-11-14 22:18:23 2019-11-14 22:35:10 t 1 1 171576 220 0.00 2019-11-14 22:38:43 2019-11-14 22:39:16 t 1 1 171582 623 0.00 2019-11-14 22:38:59 2019-11-14 22:42:55 t 1 1 171583 566 0.00 2019-11-14 22:34:02 2019-11-14 22:43:34 t 1 1 171584 578 0.00 2019-11-14 22:26:27 2019-11-14 22:43:57 t 1 1 171586 562 0.00 2019-11-14 22:43:45 2019-11-14 22:44:16 t 1 1 171587 595 0.00 2019-11-14 22:44:28 2019-11-14 22:44:45 t 1 1 171589 514 0.00 2019-11-14 22:40:56 2019-11-14 22:45:55 t 1 1 171591 587 0.00 2019-11-14 22:29:05 2019-11-14 22:46:09 t 1 1 171592 623 0.00 2019-11-14 22:46:07 2019-11-14 22:46:20 t 1 1 171596 220 0.00 2019-11-14 22:49:12 2019-11-14 22:49:31 t 1 1 171601 422 0.00 2019-11-14 22:52:11 2019-11-14 22:52:20 t 1 1 171605 516 0.00 2019-11-14 22:46:40 2019-11-14 22:53:55 t 1 1 171607 578 0.00 2019-11-14 22:43:57 2019-11-14 22:55:04 t 1 1 171609 623 0.00 2019-11-14 22:55:14 2019-11-14 22:55:46 t 1 1 171611 656 0.00 2019-11-14 22:51:55 2019-11-14 22:56:09 t 1 1 171612 623 0.00 2019-11-14 22:54:43 2019-11-14 22:56:22 t 1 1 171614 623 0.00 2019-11-14 22:56:28 2019-11-14 22:56:46 t 1 1 171620 627 0.00 2019-11-14 22:57:10 2019-11-14 23:00:04 t 1 1 171631 422 0.00 2019-11-14 23:03:22 2019-11-14 23:03:32 t 1 1 171634 562 0.00 2019-11-14 23:03:44 2019-11-14 23:04:11 t 1 1 171635 627 0.00 2019-11-14 23:04:44 2019-11-14 23:05:02 t 1 1 171639 627 0.00 2019-11-14 23:05:44 2019-11-14 23:06:06 t 1 1 171644 430 0.00 2019-11-14 23:07:37 2019-11-14 23:10:05 t 1 1 171647 627 0.00 2019-11-14 23:09:09 2019-11-14 23:11:07 t 1 1 171655 627 0.00 2019-11-14 23:12:41 2019-11-14 23:12:44 t 1 1 171658 623 0.00 2019-11-14 23:13:08 2019-11-14 23:13:43 t 1 1 171661 585 0.00 2019-11-14 23:12:06 2019-11-14 23:14:23 t 1 1 171666 627 0.00 2019-11-14 23:16:41 2019-11-14 23:16:54 t 1 1 171675 627 0.00 2019-11-14 23:21:02 2019-11-14 23:22:51 t 1 1 171680 587 0.00 2019-11-14 23:14:01 2019-11-14 23:25:36 t 1 1 171682 593 0.00 2019-11-14 23:12:10 2019-11-14 23:26:34 t 1 1 171683 627 0.00 2019-11-14 23:26:33 2019-11-14 23:26:50 t 1 1 171686 627 0.00 2019-11-14 23:27:18 2019-11-14 23:27:57 t 1 1 171687 627 0.00 2019-11-14 23:28:47 2019-11-14 23:28:54 t 1 1 171693 623 0.00 2019-11-14 23:31:51 2019-11-14 23:31:54 t 1 1 171695 627 0.00 2019-11-14 23:32:03 2019-11-14 23:32:18 t 1 1 171697 422 0.00 2019-11-14 23:33:11 2019-11-14 23:33:17 t 1 1 171699 627 0.00 2019-11-14 23:33:53 2019-11-14 23:34:02 t 1 1 171700 662 0.00 2019-11-14 22:09:44 2019-11-14 23:34:57 t 1 1 171702 416 0.00 2019-11-14 23:22:21 2019-11-14 23:35:06 t 1 1 171703 627 0.00 2019-11-14 23:35:43 2019-11-14 23:36:10 t 1 1 171705 422 0.00 2019-11-14 23:35:21 2019-11-14 23:36:39 t 1 1 171709 593 0.00 2019-11-14 23:26:34 2019-11-14 23:37:51 t 1 1 171711 587 0.00 2019-11-14 23:26:04 2019-11-14 23:38:13 t 1 1 171713 562 0.00 2019-11-14 23:31:48 2019-11-14 23:38:56 t 1 1 171716 422 0.00 2019-11-14 23:36:44 2019-11-14 23:39:53 t 1 1 171722 627 0.00 2019-11-14 23:42:05 2019-11-14 23:42:11 t 1 1 171723 627 0.00 2019-11-14 23:43:05 2019-11-14 23:43:12 t 1 1 171724 220 0.00 2019-11-14 23:43:16 2019-11-14 23:43:32 t 1 1 171727 562 0.00 2019-11-14 23:45:10 2019-11-14 23:45:34 t 1 1 171732 627 0.00 2019-11-14 23:44:17 2019-11-14 23:47:16 t 1 1 171734 595 0.00 2019-11-14 23:45:34 2019-11-14 23:47:30 t 1 1 171735 595 0.00 2019-11-14 23:47:44 2019-11-14 23:48:06 t 1 1 171740 595 0.00 2019-11-14 23:49:06 2019-11-14 23:51:58 t 1 1 171743 587 0.00 2019-11-14 23:38:31 2019-11-14 23:52:44 t 1 1 171744 422 0.00 2019-11-14 23:53:10 2019-11-14 23:53:19 t 1 1 171745 220 0.00 2019-11-14 23:53:46 2019-11-14 23:53:54 t 1 1 171746 585 0.00 2019-11-14 23:46:54 2019-11-14 23:54:13 t 1 1 171748 587 0.00 2019-11-14 23:52:56 2019-11-14 23:54:50 t 1 1 171750 566 0.00 2019-11-14 22:43:34 2019-11-14 23:56:16 t 1 1 171758 430 0.00 2019-11-14 23:54:58 2019-11-14 23:58:15 t 1 1 171759 430 0.00 2019-11-14 23:58:20 2019-11-14 23:58:27 t 1 1 171760 430 0.00 2019-11-14 23:58:40 2019-11-14 23:59:20 t 1 1 171763 593 0.00 2019-11-14 23:52:09 2019-11-15 00:00:50 t 1 1 171770 422 0.00 2019-11-15 00:04:38 2019-11-15 00:05:09 t 1 1 171775 562 0.00 2019-11-15 00:06:49 2019-11-15 00:07:11 t 1 1 171779 422 0.00 2019-11-15 00:07:50 2019-11-15 00:08:36 t 1 1 171781 623 0.00 2019-11-15 00:08:32 2019-11-15 00:08:55 t 1 1 171782 422 0.00 2019-11-15 00:09:01 2019-11-15 00:09:43 t 1 1 171784 422 0.00 2019-11-15 00:10:10 2019-11-15 00:10:42 t 1 1 171786 595 0.00 2019-11-15 00:11:06 2019-11-15 00:11:58 t 1 1 171789 623 0.00 2019-11-15 00:13:59 2019-11-15 00:14:22 t 1 1 171791 422 0.00 2019-11-15 00:13:45 2019-11-15 00:15:19 t 1 1 171794 633 0.00 2019-11-15 00:09:44 2019-11-15 00:16:27 t 1 1 171798 623 0.00 2019-11-15 00:19:24 2019-11-15 00:19:48 t 1 1 171799 422 0.00 2019-11-15 00:20:03 2019-11-15 00:20:17 t 1 1 171800 562 0.00 2019-11-15 00:19:58 2019-11-15 00:20:48 t 1 1 171801 633 0.00 2019-11-15 00:16:27 2019-11-15 00:22:04 t 1 1 171803 581 0.00 2019-11-15 00:11:32 2019-11-15 00:22:14 t 1 1 171804 412 0.00 2019-11-14 16:28:20 2019-11-15 00:23:54 t 1 1 171749 595 0.00 2019-11-14 23:55:48 2019-11-14 23:55:53 t 1 1 171751 562 0.00 2019-11-14 23:55:56 2019-11-14 23:56:42 t 1 1 171753 545 0.00 2019-11-14 23:34:57 2019-11-14 23:57:22 t 1 1 171754 514 0.00 2019-11-14 23:56:33 2019-11-14 23:58:02 t 1 1 171756 623 0.00 2019-11-14 23:58:08 2019-11-14 23:58:09 t 1 1 171761 585 0.00 2019-11-14 23:54:12 2019-11-15 00:00:11 t 1 1 171765 595 0.00 2019-11-15 00:00:52 2019-11-15 00:00:57 t 1 1 171767 623 0.00 2019-11-15 00:03:08 2019-11-15 00:03:30 t 1 1 171771 587 0.00 2019-11-15 00:04:01 2019-11-15 00:05:57 t 1 1 171773 581 0.00 2019-11-14 23:55:08 2019-11-15 00:06:21 t 1 1 171776 566 0.00 2019-11-15 00:06:44 2019-11-15 00:07:15 t 1 1 171783 633 0.00 2019-11-15 00:05:10 2019-11-15 00:09:44 t 1 1 171788 220 0.00 2019-11-15 00:13:05 2019-11-15 00:14:01 t 1 2 171792 422 0.00 2019-11-15 00:15:24 2019-11-15 00:15:37 t 1 1 171796 562 0.00 2019-11-15 00:17:33 2019-11-15 00:18:25 t 1 1 171805 623 0.00 2019-11-15 00:24:51 2019-11-15 00:25:12 t 1 1 171806 220 0.00 2019-11-14 23:46:07 2019-11-15 00:25:27 t 1 2 171807 220 0.00 2019-11-15 00:25:33 2019-11-15 00:25:48 t 1 1 171809 660 0.00 2019-11-15 00:19:09 2019-11-15 00:28:15 t 1 1 171810 633 0.00 2019-11-15 00:26:06 2019-11-15 00:29:12 t 1 1 171814 623 0.00 2019-11-15 00:35:40 2019-11-15 00:36:02 t 1 1 171820 451 0.00 2019-11-15 00:05:41 2019-11-15 00:39:36 t 1 1 171822 622 0.00 2019-11-15 00:28:01 2019-11-15 00:40:54 t 1 1 171823 593 0.00 2019-11-15 00:40:23 2019-11-15 00:41:24 t 1 1 171826 587 0.00 2019-11-15 00:41:16 2019-11-15 00:41:49 t 1 1 171829 633 0.00 2019-11-15 00:36:45 2019-11-15 00:43:25 t 1 1 171830 637 0.00 2019-11-15 00:42:22 2019-11-15 00:45:59 t 1 1 171834 633 0.00 2019-11-15 00:43:25 2019-11-15 00:48:28 t 1 1 171835 422 0.00 2019-11-15 00:38:27 2019-11-15 00:48:57 t 1 1 171839 627 0.00 2019-11-15 00:50:05 2019-11-15 00:50:19 t 1 1 171840 587 0.00 2019-11-15 00:42:32 2019-11-15 00:50:51 t 1 1 171850 627 0.00 2019-11-15 00:53:56 2019-11-15 00:54:45 t 1 1 171853 627 0.00 2019-11-15 00:55:36 2019-11-15 00:56:30 t 1 1 171857 412 0.00 2019-11-15 00:37:31 2019-11-15 01:01:10 t 1 1 171858 451 0.00 2019-11-15 00:39:36 2019-11-15 01:01:52 t 1 1 171860 622 0.00 2019-11-15 00:40:54 2019-11-15 01:02:46 t 1 1 171862 562 0.00 2019-11-15 01:02:43 2019-11-15 01:03:03 t 1 1 171864 587 0.00 2019-11-15 01:03:11 2019-11-15 01:05:11 t 1 1 171869 623 0.00 2019-11-15 01:08:12 2019-11-15 01:09:34 t 1 1 171871 587 0.00 2019-11-15 01:10:04 2019-11-15 01:10:33 t 1 1 171878 623 0.00 2019-11-15 01:14:06 2019-11-15 01:15:07 t 1 1 171883 562 0.00 2019-11-15 01:18:31 2019-11-15 01:18:39 t 1 1 171886 551 0.00 2019-11-14 23:02:58 2019-11-15 01:19:50 t 1 1 171894 551 0.00 2019-11-15 01:19:50 2019-11-15 01:28:53 t 1 1 171897 544 0.00 2019-11-15 01:26:16 2019-11-15 01:32:32 t 1 1 171900 412 0.00 2019-11-15 01:25:24 2019-11-15 01:34:19 t 1 1 171903 623 0.00 2019-11-15 01:39:21 2019-11-15 01:39:22 t 1 1 171907 220 0.00 2019-11-15 00:25:48 2019-11-15 01:41:11 t 1 2 171911 220 0.00 2019-11-15 01:45:52 2019-11-15 01:46:01 t 1 1 171915 587 0.00 2019-11-15 01:47:52 2019-11-15 01:48:53 t 1 1 171916 551 0.00 2019-11-15 01:42:56 2019-11-15 01:49:59 t 1 1 171917 623 0.00 2019-11-15 01:50:06 2019-11-15 01:50:09 t 1 1 171922 623 0.00 2019-11-15 01:55:10 2019-11-15 01:55:13 t 1 1 171927 551 0.00 2019-11-15 01:49:59 2019-11-15 02:03:49 t 1 1 171931 593 0.00 2019-11-15 02:06:46 2019-11-15 02:09:43 t 1 1 171934 593 0.00 2019-11-15 02:09:43 2019-11-15 02:12:04 t 1 1 171936 623 0.00 2019-11-15 02:12:47 2019-11-15 02:12:50 t 1 1 171937 593 0.00 2019-11-15 02:12:04 2019-11-15 02:14:47 t 1 1 171941 623 0.00 2019-11-15 02:16:40 2019-11-15 02:16:42 t 1 1 171947 220 0.00 2019-11-15 02:21:27 2019-11-15 02:21:42 t 1 1 171951 593 0.00 2019-11-15 02:20:28 2019-11-15 02:23:48 t 1 1 171956 623 0.00 2019-11-15 02:27:08 2019-11-15 02:27:11 t 1 1 171960 538 0.00 2019-11-14 23:41:40 2019-11-15 02:29:46 t 1 1 171963 220 0.00 2019-11-15 02:31:57 2019-11-15 02:32:12 t 1 1 171966 623 0.00 2019-11-15 02:39:41 2019-11-15 02:39:44 t 1 1 171968 623 0.00 2019-11-15 02:40:41 2019-11-15 02:40:42 t 1 1 171973 593 0.00 2019-11-15 02:40:46 2019-11-15 02:43:56 t 1 1 171975 412 0.00 2019-11-15 01:53:48 2019-11-15 02:44:27 t 1 1 171979 623 0.00 2019-11-15 02:47:21 2019-11-15 02:47:23 t 1 1 171980 623 0.00 2019-11-15 02:48:31 2019-11-15 02:48:33 t 1 1 171983 623 0.00 2019-11-15 02:50:54 2019-11-15 02:50:57 t 1 1 171984 623 0.00 2019-11-15 02:51:26 2019-11-15 02:51:35 t 1 1 171985 220 0.00 2019-11-15 02:52:57 2019-11-15 02:53:12 t 1 1 171986 412 0.00 2019-11-15 02:44:27 2019-11-15 02:54:40 t 1 1 171987 562 0.00 2019-11-15 02:55:03 2019-11-15 02:55:12 t 1 1 171988 593 0.00 2019-11-15 02:46:56 2019-11-15 02:55:55 t 1 1 171992 220 0.00 2019-11-15 03:03:27 2019-11-15 03:03:41 t 1 1 171998 623 0.00 2019-11-15 03:15:51 2019-11-15 03:15:53 t 1 1 172002 623 0.00 2019-11-15 03:20:07 2019-11-15 03:20:09 t 1 1 172008 220 0.00 2019-11-15 03:24:26 2019-11-15 03:24:40 t 1 1 172012 623 0.00 2019-11-15 03:30:12 2019-11-15 03:30:15 t 1 1 172014 623 0.00 2019-11-15 03:33:23 2019-11-15 03:33:25 t 1 1 172015 623 0.00 2019-11-15 03:34:02 2019-11-15 03:34:41 t 1 1 172017 593 0.00 2019-11-15 03:05:44 2019-11-15 03:35:07 t 1 1 172019 562 0.00 2019-11-15 03:37:50 2019-11-15 03:38:14 t 1 1 172021 623 0.00 2019-11-15 03:41:35 2019-11-15 03:41:36 t 1 1 172022 623 0.00 2019-11-15 03:42:44 2019-11-15 03:42:46 t 1 1 172029 623 0.00 2019-11-15 03:50:47 2019-11-15 03:50:49 t 1 1 172031 623 0.00 2019-11-15 03:52:49 2019-11-15 03:52:52 t 1 1 172035 623 0.00 2019-11-15 03:57:47 2019-11-15 03:57:49 t 1 1 172040 623 0.00 2019-11-15 04:03:00 2019-11-15 04:03:02 t 1 1 172053 623 0.00 2019-11-15 04:17:06 2019-11-15 04:17:07 t 1 1 172054 220 0.00 2019-11-15 04:17:12 2019-11-15 04:17:20 t 1 1 172057 623 0.00 2019-11-15 04:18:13 2019-11-15 04:18:15 t 1 1 172058 623 0.00 2019-11-15 04:18:21 2019-11-15 04:18:22 t 1 1 172064 623 0.00 2019-11-15 04:27:07 2019-11-15 04:27:09 t 1 1 172066 220 0.00 2019-11-15 04:28:14 2019-11-15 04:28:22 t 1 1 172071 562 0.00 2019-11-15 04:31:43 2019-11-15 04:32:02 t 1 1 172072 623 0.00 2019-11-15 04:32:35 2019-11-15 04:33:07 t 1 1 172074 623 0.00 2019-11-15 04:37:37 2019-11-15 04:37:51 t 1 1 172075 220 0.00 2019-11-15 04:38:59 2019-11-15 04:39:07 t 1 1 172077 623 0.00 2019-11-15 04:42:52 2019-11-15 04:42:53 t 1 1 172078 623 0.00 2019-11-15 04:43:30 2019-11-15 04:43:33 t 1 1 172079 623 0.00 2019-11-15 04:46:30 2019-11-15 04:46:31 t 1 1 172085 220 0.00 2019-11-15 04:49:44 2019-11-15 04:49:52 t 1 1 172088 623 0.00 2019-11-15 04:51:54 2019-11-15 04:51:56 t 1 1 172089 623 0.00 2019-11-15 04:52:30 2019-11-15 04:52:38 t 1 1 171757 422 0.00 2019-11-14 23:57:56 2019-11-14 23:58:11 t 1 1 171762 587 0.00 2019-11-14 23:55:05 2019-11-15 00:00:28 t 1 1 171764 430 0.00 2019-11-15 00:00:23 2019-11-15 00:00:52 t 1 1 171766 587 0.00 2019-11-15 00:01:01 2019-11-15 00:03:13 t 1 1 171768 593 0.00 2019-11-15 00:00:50 2019-11-15 00:04:33 t 1 1 171769 220 0.00 2019-11-15 00:04:32 2019-11-15 00:04:47 t 1 1 171772 595 0.00 2019-11-15 00:05:56 2019-11-15 00:06:03 t 1 1 171774 566 0.00 2019-11-14 23:56:16 2019-11-15 00:06:44 t 1 1 171777 422 0.00 2019-11-15 00:07:04 2019-11-15 00:07:18 t 1 1 171778 566 0.00 2019-11-15 00:07:19 2019-11-15 00:07:24 t 1 1 171780 422 0.00 2019-11-15 00:08:43 2019-11-15 00:08:55 t 1 1 171785 587 0.00 2019-11-15 00:05:56 2019-11-15 00:11:49 t 1 1 171787 422 0.00 2019-11-15 00:11:46 2019-11-15 00:12:34 t 1 1 171790 220 0.00 2019-11-15 00:15:03 2019-11-15 00:15:18 t 1 1 171793 627 0.00 2019-11-14 23:48:13 2019-11-15 00:15:54 t 1 1 171795 422 0.00 2019-11-15 00:16:22 2019-11-15 00:16:44 t 1 1 171797 422 0.00 2019-11-15 00:17:05 2019-11-15 00:19:25 t 1 1 171802 635 0.00 2019-11-15 00:16:21 2019-11-15 00:22:10 t 1 1 171808 633 0.00 2019-11-15 00:22:04 2019-11-15 00:26:06 t 1 1 171811 623 0.00 2019-11-15 00:30:16 2019-11-15 00:30:37 t 1 1 171813 660 0.00 2019-11-15 00:28:15 2019-11-15 00:35:15 t 1 1 171816 422 0.00 2019-11-15 00:21:39 2019-11-15 00:36:37 t 1 1 171821 593 0.00 2019-11-15 00:04:33 2019-11-15 00:40:23 t 1 1 171824 623 0.00 2019-11-15 00:41:07 2019-11-15 00:41:30 t 1 1 171831 220 0.00 2019-11-15 00:46:33 2019-11-15 00:46:47 t 1 1 171833 627 0.00 2019-11-15 00:41:59 2019-11-15 00:47:58 t 1 1 171838 627 0.00 2019-11-15 00:49:40 2019-11-15 00:49:59 t 1 1 171843 627 0.00 2019-11-15 00:51:54 2019-11-15 00:52:01 t 1 1 171845 562 0.00 2019-11-15 00:51:53 2019-11-15 00:52:19 t 1 1 171847 627 0.00 2019-11-15 00:52:50 2019-11-15 00:53:13 t 1 1 171848 627 0.00 2019-11-15 00:53:33 2019-11-15 00:53:33 t 1 1 171849 587 0.00 2019-11-15 00:51:06 2019-11-15 00:54:21 t 1 1 171854 633 0.00 2019-11-15 00:48:28 2019-11-15 00:56:58 t 1 1 171855 220 0.00 2019-11-15 00:57:03 2019-11-15 00:57:17 t 1 1 171856 623 0.00 2019-11-15 00:57:19 2019-11-15 00:57:40 t 1 1 171859 587 0.00 2019-11-15 00:56:01 2019-11-15 01:02:05 t 1 1 171861 633 0.00 2019-11-15 00:56:58 2019-11-15 01:02:47 t 1 1 171863 623 0.00 2019-11-15 01:02:45 2019-11-15 01:03:08 t 1 1 171867 220 0.00 2019-11-15 01:07:48 2019-11-15 01:08:03 t 1 1 171870 633 0.00 2019-11-15 01:02:47 2019-11-15 01:09:34 t 1 1 171872 512 0.00 2019-11-15 00:43:57 2019-11-15 01:10:33 t 1 1 171875 562 0.00 2019-11-15 01:13:28 2019-11-15 01:13:48 t 1 1 171880 220 0.00 2019-11-15 01:18:19 2019-11-15 01:18:20 t 1 1 171882 587 0.00 2019-11-15 01:15:35 2019-11-15 01:18:23 t 1 1 171885 623 0.00 2019-11-15 01:19:03 2019-11-15 01:19:06 t 1 1 171889 633 0.00 2019-11-15 01:17:05 2019-11-15 01:23:01 t 1 1 171893 544 0.00 2019-11-14 23:41:54 2019-11-15 01:26:15 t 1 1 171898 562 0.00 2019-11-15 01:32:27 2019-11-15 01:32:47 t 1 1 171899 623 0.00 2019-11-15 01:34:17 2019-11-15 01:34:18 t 1 1 171906 633 0.00 2019-11-15 01:29:07 2019-11-15 01:40:33 t 1 1 171908 551 0.00 2019-11-15 01:28:53 2019-11-15 01:42:55 t 1 1 171913 633 0.00 2019-11-15 01:40:33 2019-11-15 01:46:44 t 1 1 171920 587 0.00 2019-11-15 01:49:10 2019-11-15 01:53:55 t 1 1 171921 562 0.00 2019-11-15 01:53:57 2019-11-15 01:54:20 t 1 1 171924 623 0.00 2019-11-15 02:00:16 2019-11-15 02:00:17 t 1 1 171926 593 0.00 2019-11-15 01:52:21 2019-11-15 02:03:39 t 1 1 171928 562 0.00 2019-11-15 02:04:44 2019-11-15 02:05:07 t 1 1 171930 593 0.00 2019-11-15 02:03:39 2019-11-15 02:06:46 t 1 1 171933 220 0.00 2019-11-15 02:10:57 2019-11-15 02:11:12 t 1 1 171935 623 0.00 2019-11-15 02:12:38 2019-11-15 02:12:41 t 1 1 171938 587 0.00 2019-11-15 02:01:33 2019-11-15 02:15:19 t 1 1 171939 562 0.00 2019-11-15 02:15:32 2019-11-15 02:15:56 t 1 1 171940 623 0.00 2019-11-15 02:16:31 2019-11-15 02:16:34 t 1 1 171942 587 0.00 2019-11-15 02:15:38 2019-11-15 02:19:56 t 1 1 171943 593 0.00 2019-11-15 02:14:47 2019-11-15 02:20:28 t 1 1 171944 623 0.00 2019-11-15 02:20:34 2019-11-15 02:20:35 t 1 1 171945 623 0.00 2019-11-15 02:20:44 2019-11-15 02:20:46 t 1 1 171949 623 0.00 2019-11-15 02:22:12 2019-11-15 02:22:14 t 1 1 171950 623 0.00 2019-11-15 02:22:20 2019-11-15 02:22:21 t 1 1 171952 623 0.00 2019-11-15 02:25:57 2019-11-15 02:26:00 t 1 1 171953 562 0.00 2019-11-15 02:26:17 2019-11-15 02:26:37 t 1 1 171955 622 0.00 2019-11-15 02:25:38 2019-11-15 02:27:05 t 1 1 171962 623 0.00 2019-11-15 02:31:37 2019-11-15 02:31:40 t 1 1 171964 593 0.00 2019-11-15 02:27:03 2019-11-15 02:35:32 t 1 1 171969 593 0.00 2019-11-15 02:35:32 2019-11-15 02:40:46 t 1 1 171974 623 0.00 2019-11-15 02:44:14 2019-11-15 02:44:16 t 1 1 171977 623 0.00 2019-11-15 02:46:45 2019-11-15 02:46:48 t 1 1 171982 623 0.00 2019-11-15 02:50:39 2019-11-15 02:50:41 t 1 1 171989 623 0.00 2019-11-15 02:56:33 2019-11-15 02:56:56 t 1 1 171994 562 0.00 2019-11-15 03:05:37 2019-11-15 03:05:59 t 1 1 171996 623 0.00 2019-11-15 03:07:39 2019-11-15 03:07:40 t 1 1 171997 220 0.00 2019-11-15 03:13:57 2019-11-15 03:14:04 t 1 1 172001 623 0.00 2019-11-15 03:19:36 2019-11-15 03:19:37 t 1 1 172006 623 0.00 2019-11-15 03:24:06 2019-11-15 03:24:09 t 1 1 172007 623 0.00 2019-11-15 03:24:18 2019-11-15 03:24:21 t 1 1 172010 623 0.00 2019-11-15 03:25:15 2019-11-15 03:25:18 t 1 1 172013 623 0.00 2019-11-15 03:30:20 2019-11-15 03:30:27 t 1 1 172018 623 0.00 2019-11-15 03:37:28 2019-11-15 03:37:29 t 1 1 172020 623 0.00 2019-11-15 03:41:25 2019-11-15 03:41:27 t 1 1 172024 593 0.00 2019-11-15 03:35:07 2019-11-15 03:43:53 t 1 1 172025 220 0.00 2019-11-15 03:45:26 2019-11-15 03:45:34 t 1 1 172037 562 0.00 2019-11-15 03:59:26 2019-11-15 03:59:47 t 1 1 172094 623 0.00 2019-11-15 04:59:45 2019-11-15 04:59:48 t 1 1 172096 220 0.00 2019-11-15 05:00:29 2019-11-15 05:00:44 t 1 1 172100 623 0.00 2019-11-15 05:06:09 2019-11-15 05:06:36 t 1 1 172101 623 0.00 2019-11-15 05:07:42 2019-11-15 05:07:45 t 1 1 172102 220 0.00 2019-11-15 05:11:00 2019-11-15 05:11:14 t 1 1 172103 623 0.00 2019-11-15 05:11:22 2019-11-15 05:11:25 t 1 1 172106 562 0.00 2019-11-15 05:14:44 2019-11-15 05:15:04 t 1 1 172107 623 0.00 2019-11-15 05:17:47 2019-11-15 05:17:53 t 1 1 172110 623 0.00 2019-11-15 05:22:56 2019-11-15 05:23:04 t 1 1 172111 562 0.00 2019-11-15 05:25:29 2019-11-15 05:25:52 t 1 1 172114 623 0.00 2019-11-15 05:30:35 2019-11-15 05:30:36 t 1 1 172117 623 0.00 2019-11-15 05:33:59 2019-11-15 05:34:01 t 1 1 172118 562 0.00 2019-11-15 05:36:16 2019-11-15 05:36:36 t 1 1 172130 220 0.00 2019-11-15 05:50:23 2019-11-15 05:50:37 t 1 1 172131 562 0.00 2019-11-15 05:54:52 2019-11-15 05:55:02 t 1 1 171812 562 0.00 2019-11-15 00:30:26 2019-11-15 00:30:44 t 1 1 171815 220 0.00 2019-11-15 00:36:03 2019-11-15 00:36:18 t 1 1 171817 633 0.00 2019-11-15 00:29:12 2019-11-15 00:36:45 t 1 1 171818 422 0.00 2019-11-15 00:36:58 2019-11-15 00:37:12 t 1 1 171819 412 0.00 2019-11-15 00:23:54 2019-11-15 00:37:31 t 1 1 171825 562 0.00 2019-11-15 00:41:04 2019-11-15 00:41:35 t 1 1 171827 660 0.00 2019-11-15 00:35:15 2019-11-15 00:42:14 t 1 1 171828 637 0.00 2019-11-14 21:40:56 2019-11-15 00:42:22 t 1 1 171832 623 0.00 2019-11-15 00:46:33 2019-11-15 00:46:55 t 1 1 171836 627 0.00 2019-11-15 00:48:47 2019-11-15 00:49:00 t 1 1 171837 627 0.00 2019-11-15 00:49:06 2019-11-15 00:49:20 t 1 1 171841 627 0.00 2019-11-15 00:50:53 2019-11-15 00:51:02 t 1 1 171842 627 0.00 2019-11-15 00:51:07 2019-11-15 00:51:12 t 1 1 171844 623 0.00 2019-11-15 00:51:55 2019-11-15 00:52:17 t 1 1 171846 422 0.00 2019-11-15 00:48:57 2019-11-15 00:52:31 t 1 1 171851 627 0.00 2019-11-15 00:54:51 2019-11-15 00:55:02 t 1 1 171852 587 0.00 2019-11-15 00:54:45 2019-11-15 00:55:25 t 1 1 171865 660 0.00 2019-11-15 00:42:14 2019-11-15 01:07:03 t 1 1 171866 220 0.00 2019-11-15 01:07:33 2019-11-15 01:07:41 t 1 1 171868 587 0.00 2019-11-15 01:05:44 2019-11-15 01:09:23 t 1 1 171873 587 0.00 2019-11-15 01:11:13 2019-11-15 01:12:13 t 1 1 171874 587 0.00 2019-11-15 01:12:47 2019-11-15 01:12:54 t 1 1 171876 623 0.00 2019-11-15 01:13:37 2019-11-15 01:14:01 t 1 1 171877 587 0.00 2019-11-15 01:13:25 2019-11-15 01:15:06 t 1 1 171879 633 0.00 2019-11-15 01:09:34 2019-11-15 01:17:05 t 1 1 171881 412 0.00 2019-11-15 01:01:10 2019-11-15 01:18:20 t 1 1 171884 451 0.00 2019-11-15 01:04:01 2019-11-15 01:18:51 t 1 1 171887 637 0.00 2019-11-15 01:02:18 2019-11-15 01:21:28 t 1 1 171888 562 0.00 2019-11-15 01:21:43 2019-11-15 01:22:03 t 1 1 171890 623 0.00 2019-11-15 01:24:09 2019-11-15 01:24:12 t 1 1 171891 220 0.00 2019-11-15 01:24:57 2019-11-15 01:24:57 t 1 1 171892 412 0.00 2019-11-15 01:18:20 2019-11-15 01:25:24 t 1 1 171895 633 0.00 2019-11-15 01:23:01 2019-11-15 01:29:07 t 1 1 171896 623 0.00 2019-11-15 01:29:14 2019-11-15 01:29:14 t 1 1 171901 456 0.00 2019-11-15 01:10:47 2019-11-15 01:34:59 t 1 1 171902 220 0.00 2019-11-15 01:35:20 2019-11-15 01:37:23 t 1 1 171904 623 0.00 2019-11-15 01:39:51 2019-11-15 01:40:01 t 1 1 171905 587 0.00 2019-11-15 01:18:42 2019-11-15 01:40:23 t 1 1 171909 562 0.00 2019-11-15 01:43:23 2019-11-15 01:43:35 t 1 1 171910 623 0.00 2019-11-15 01:44:57 2019-11-15 01:45:00 t 1 1 171912 220 0.00 2019-11-15 01:46:17 2019-11-15 01:46:18 t 1 1 171914 587 0.00 2019-11-15 01:40:23 2019-11-15 01:47:11 t 1 1 171918 593 0.00 2019-11-15 01:41:21 2019-11-15 01:52:21 t 1 1 171919 412 0.00 2019-11-15 01:34:19 2019-11-15 01:53:48 t 1 1 171923 220 0.00 2019-11-15 01:56:40 2019-11-15 01:56:48 t 1 1 171925 220 0.00 2019-11-15 02:00:27 2019-11-15 02:00:42 t 1 1 171929 623 0.00 2019-11-15 02:05:22 2019-11-15 02:05:23 t 1 1 171932 623 0.00 2019-11-15 02:10:25 2019-11-15 02:10:26 t 1 1 171946 623 0.00 2019-11-15 02:21:35 2019-11-15 02:21:37 t 1 1 171948 623 0.00 2019-11-15 02:21:44 2019-11-15 02:21:50 t 1 1 171954 593 0.00 2019-11-15 02:23:48 2019-11-15 02:27:03 t 1 1 171957 587 0.00 2019-11-15 02:20:43 2019-11-15 02:27:47 t 1 1 171958 623 0.00 2019-11-15 02:29:13 2019-11-15 02:29:16 t 1 1 171959 623 0.00 2019-11-15 02:29:22 2019-11-15 02:29:30 t 1 1 171961 623 0.00 2019-11-15 02:31:28 2019-11-15 02:31:31 t 1 1 171965 562 0.00 2019-11-15 02:37:02 2019-11-15 02:37:20 t 1 1 171967 623 0.00 2019-11-15 02:40:15 2019-11-15 02:40:17 t 1 1 171970 623 0.00 2019-11-15 02:41:29 2019-11-15 02:41:35 t 1 1 171971 220 0.00 2019-11-15 02:42:27 2019-11-15 02:42:35 t 1 1 171972 623 0.00 2019-11-15 02:43:26 2019-11-15 02:43:30 t 1 1 171976 562 0.00 2019-11-15 02:44:07 2019-11-15 02:44:27 t 1 1 171978 593 0.00 2019-11-15 02:43:56 2019-11-15 02:46:56 t 1 1 171981 623 0.00 2019-11-15 02:50:30 2019-11-15 02:50:33 t 1 1 171990 593 0.00 2019-11-15 02:55:55 2019-11-15 02:59:23 t 1 1 171991 623 0.00 2019-11-15 03:01:58 2019-11-15 03:02:05 t 1 1 171993 593 0.00 2019-11-15 02:59:23 2019-11-15 03:05:44 t 1 1 171995 623 0.00 2019-11-15 03:07:30 2019-11-15 03:07:32 t 1 1 171999 623 0.00 2019-11-15 03:16:00 2019-11-15 03:16:02 t 1 1 172000 562 0.00 2019-11-15 03:16:21 2019-11-15 03:16:45 t 1 1 172003 623 0.00 2019-11-15 03:21:20 2019-11-15 03:21:21 t 1 1 172004 623 0.00 2019-11-15 03:22:18 2019-11-15 03:22:20 t 1 1 172005 623 0.00 2019-11-15 03:23:31 2019-11-15 03:23:37 t 1 1 172009 623 0.00 2019-11-15 03:25:06 2019-11-15 03:25:09 t 1 1 172011 562 0.00 2019-11-15 03:27:09 2019-11-15 03:27:29 t 1 1 172016 220 0.00 2019-11-15 03:34:56 2019-11-15 03:35:04 t 1 1 172023 623 0.00 2019-11-15 03:42:52 2019-11-15 03:42:55 t 1 1 172026 623 0.00 2019-11-15 03:47:58 2019-11-15 03:47:59 t 1 1 172027 562 0.00 2019-11-15 03:48:51 2019-11-15 03:49:05 t 1 1 172028 623 0.00 2019-11-15 03:49:48 2019-11-15 03:49:50 t 1 1 172030 623 0.00 2019-11-15 03:50:55 2019-11-15 03:50:57 t 1 1 172032 623 0.00 2019-11-15 03:52:57 2019-11-15 03:53:00 t 1 1 172033 220 0.00 2019-11-15 03:55:56 2019-11-15 03:56:04 t 1 1 172034 220 0.00 2019-11-15 03:56:11 2019-11-15 03:56:26 t 1 1 172036 623 0.00 2019-11-15 03:57:59 2019-11-15 03:58:01 t 1 1 172133 516 0.00 2019-11-15 05:42:37 2019-11-15 05:56:33 t 1 1 172138 623 0.00 2019-11-15 06:00:32 2019-11-15 06:00:35 t 1 1 172139 623 0.00 2019-11-15 06:00:44 2019-11-15 06:00:45 t 1 1 172143 520 0.00 2019-11-15 06:00:45 2019-11-15 06:06:36 t 1 1 172146 623 0.00 2019-11-15 06:10:38 2019-11-15 06:10:39 t 1 1 172147 485 0.00 2019-11-15 06:03:40 2019-11-15 06:11:34 t 1 1 172150 623 0.00 2019-11-15 06:12:00 2019-11-15 06:12:12 t 1 1 172152 623 0.00 2019-11-15 06:15:42 2019-11-15 06:15:42 t 1 1 172154 623 0.00 2019-11-15 06:22:04 2019-11-15 06:22:06 t 1 1 172161 562 0.00 2019-11-15 06:24:46 2019-11-15 06:25:15 t 1 1 172165 623 0.00 2019-11-15 06:26:55 2019-11-15 06:26:56 t 1 1 172168 220 0.00 2019-11-15 06:28:56 2019-11-15 06:29:09 t 1 1 172174 520 0.00 2019-11-15 06:26:42 2019-11-15 06:33:46 t 1 1 172177 623 0.00 2019-11-15 06:35:26 2019-11-15 06:35:28 t 1 1 172180 623 0.00 2019-11-15 06:40:21 2019-11-15 06:40:24 t 1 1 172181 412 0.00 2019-11-15 02:54:40 2019-11-15 06:42:42 t 1 1 172186 445 0.00 2019-11-15 06:46:44 2019-11-15 06:50:17 t 1 1 172188 562 0.00 2019-11-15 06:50:16 2019-11-15 06:50:37 t 1 1 172191 623 0.00 2019-11-15 06:55:28 2019-11-15 06:55:32 t 1 1 172196 220 0.00 2019-11-15 07:00:33 2019-11-15 07:00:41 t 1 1 172199 623 0.00 2019-11-15 07:03:26 2019-11-15 07:03:43 t 1 1 172202 623 0.00 2019-11-15 07:10:34 2019-11-15 07:10:38 t 1 1 172204 623 0.00 2019-11-15 07:11:44 2019-11-15 07:11:58 t 1 1 172221 623 0.00 2019-11-15 07:26:30 2019-11-15 07:26:31 t 1 1 172226 485 0.00 2019-11-15 07:26:23 2019-11-15 07:29:58 t 1 1 172229 623 0.00 2019-11-15 07:32:16 2019-11-15 07:32:17 t 1 1 172230 623 0.00 2019-11-15 07:32:41 2019-11-15 07:32:42 t 1 1 172232 623 0.00 2019-11-15 07:33:33 2019-11-15 07:33:34 t 1 1 172238 566 0.00 2019-11-15 07:32:46 2019-11-15 07:36:41 t 1 1 172243 562 0.00 2019-11-15 07:44:01 2019-11-15 07:44:23 t 1 1 172244 623 0.00 2019-11-15 07:44:08 2019-11-15 07:45:53 t 1 1 172245 516 0.00 2019-11-15 07:34:30 2019-11-15 07:49:22 t 1 1 172253 623 0.00 2019-11-15 08:00:07 2019-11-15 08:00:08 t 1 1 172255 220 0.00 2019-11-15 08:03:29 2019-11-15 08:03:38 t 1 1 172256 623 0.00 2019-11-15 08:05:12 2019-11-15 08:05:15 t 1 1 172258 562 0.00 2019-11-15 08:05:25 2019-11-15 08:05:54 t 1 1 172260 623 0.00 2019-11-15 08:10:20 2019-11-15 08:10:23 t 1 1 172265 562 0.00 2019-11-15 08:14:53 2019-11-15 08:17:37 t 1 1 172273 609 0.00 2019-11-15 08:19:34 2019-11-15 08:24:57 t 1 1 172277 623 0.00 2019-11-15 08:26:52 2019-11-15 08:29:28 t 1 1 172283 623 0.00 2019-11-15 08:31:41 2019-11-15 08:31:46 t 1 1 172285 623 0.00 2019-11-15 08:32:19 2019-11-15 08:32:38 t 1 1 172287 597 0.00 2019-11-15 08:29:39 2019-11-15 08:34:16 t 1 1 172288 220 0.00 2019-11-15 08:24:57 2019-11-15 08:34:57 t 1 1 172290 623 0.00 2019-11-15 08:35:57 2019-11-15 08:35:58 t 1 1 172291 623 0.00 2019-11-15 08:36:18 2019-11-15 08:36:21 t 1 1 172294 623 0.00 2019-11-15 08:36:53 2019-11-15 08:37:07 t 1 1 172297 645 0.00 2019-11-15 08:37:49 2019-11-15 08:38:56 t 1 1 172298 609 0.00 2019-11-15 08:24:57 2019-11-15 08:39:34 t 1 1 172302 585 0.00 2019-11-15 08:37:10 2019-11-15 08:40:56 t 1 1 172303 623 0.00 2019-11-15 08:41:38 2019-11-15 08:41:45 t 1 1 172304 623 0.00 2019-11-15 08:44:12 2019-11-15 08:44:19 t 1 1 172306 220 0.00 2019-11-15 08:35:28 2019-11-15 08:45:27 t 1 1 172309 520 0.00 2019-11-15 08:32:21 2019-11-15 08:46:25 t 1 1 172312 562 0.00 2019-11-15 08:46:43 2019-11-15 08:49:40 t 1 1 172316 609 0.00 2019-11-15 08:40:20 2019-11-15 08:52:38 t 1 1 172318 445 0.00 2019-11-15 06:54:16 2019-11-15 08:54:38 t 1 1 172326 562 0.00 2019-11-15 08:52:08 2019-11-15 08:56:17 t 1 1 172327 609 0.00 2019-11-15 08:52:38 2019-11-15 08:57:11 t 1 1 172332 623 0.00 2019-11-15 08:59:04 2019-11-15 09:00:04 t 1 1 172334 623 0.00 2019-11-15 09:00:27 2019-11-15 09:00:29 t 1 1 172335 562 0.00 2019-11-15 09:00:31 2019-11-15 09:01:04 t 1 1 172336 623 0.00 2019-11-15 09:01:14 2019-11-15 09:01:48 t 1 1 172337 623 0.00 2019-11-15 09:00:41 2019-11-15 09:02:24 t 1 1 172338 430 0.00 2019-11-15 08:55:58 2019-11-15 09:05:21 t 1 1 172340 220 0.00 2019-11-15 08:56:28 2019-11-15 09:06:27 t 1 1 172342 220 0.00 2019-11-15 09:06:26 2019-11-15 09:06:34 t 1 1 172344 430 0.00 2019-11-15 09:06:23 2019-11-15 09:06:44 t 1 1 172347 562 0.00 2019-11-15 09:01:58 2019-11-15 09:09:11 t 1 1 172348 623 0.00 2019-11-15 09:09:55 2019-11-15 09:10:08 t 1 1 172354 623 0.00 2019-11-15 09:14:16 2019-11-15 09:14:17 t 1 1 172356 416 0.00 2019-11-14 23:35:06 2019-11-15 09:16:31 t 1 1 172358 220 0.00 2019-11-15 09:16:55 2019-11-15 09:17:10 t 1 1 172359 619 0.00 2019-11-15 09:16:09 2019-11-15 09:17:41 t 1 1 172361 623 0.00 2019-11-15 09:19:23 2019-11-15 09:19:28 t 1 1 172362 581 0.00 2019-11-15 09:10:40 2019-11-15 09:20:36 t 1 1 172367 595 0.00 2019-11-15 09:21:35 2019-11-15 09:23:30 t 1 1 172370 416 0.00 2019-11-15 09:21:37 2019-11-15 09:24:48 t 1 1 172375 416 0.00 2019-11-15 09:24:48 2019-11-15 09:27:12 t 1 1 172376 220 0.00 2019-11-15 09:18:24 2019-11-15 09:27:25 t 1 1 172381 416 0.00 2019-11-15 09:29:02 2019-11-15 09:30:07 t 1 1 172385 220 0.00 2019-11-15 09:30:45 2019-11-15 09:32:24 t 1 1 172389 416 0.00 2019-11-15 09:30:09 2019-11-15 09:38:39 t 1 1 172391 220 0.00 2019-11-15 09:39:07 2019-11-15 09:39:15 t 1 1 172392 220 0.00 2019-11-15 09:39:32 2019-11-15 09:39:33 t 1 1 172393 562 0.00 2019-11-15 09:39:44 2019-11-15 09:40:28 t 1 1 172397 562 0.00 2019-11-15 09:42:33 2019-11-15 09:42:54 t 1 1 172398 619 0.00 2019-11-15 09:36:37 2019-11-15 09:44:01 t 1 1 172402 220 0.00 2019-11-15 09:39:38 2019-11-15 09:49:55 t 1 1 172405 591 0.00 2019-11-15 09:44:56 2019-11-15 09:50:52 t 1 1 172407 623 0.00 2019-11-15 09:50:08 2019-11-15 09:51:23 t 1 1 172409 430 0.00 2019-11-15 09:31:58 2019-11-15 09:51:54 t 1 1 172414 554 0.00 2019-11-15 09:52:48 2019-11-15 09:52:48 f 1 1 172419 430 0.00 2019-11-15 09:55:13 2019-11-15 09:55:30 t 1 1 172423 627 0.00 2019-11-15 09:55:40 2019-11-15 09:58:24 t 1 1 172427 637 0.00 2019-11-15 09:41:25 2019-11-15 10:00:00 t 1 1 172429 627 0.00 2019-11-15 10:00:16 2019-11-15 10:00:24 t 1 1 172432 562 0.00 2019-11-15 10:01:20 2019-11-15 10:02:02 t 1 1 172436 627 0.00 2019-11-15 10:01:05 2019-11-15 10:04:09 t 1 1 172439 445 0.00 2019-11-15 09:48:37 2019-11-15 10:07:14 t 1 1 172444 568 0.00 2019-11-15 10:08:51 2019-11-15 10:09:58 t 1 1 172447 220 0.00 2019-11-15 10:10:53 2019-11-15 10:11:08 t 1 1 172450 623 0.00 2019-11-15 10:10:52 2019-11-15 10:11:18 t 1 1 172451 490 0.00 2019-11-15 10:08:18 2019-11-15 10:11:46 t 1 1 172455 220 0.00 2019-11-15 10:13:26 2019-11-15 10:13:41 t 1 1 172456 416 0.00 2019-11-15 10:13:06 2019-11-15 10:14:25 t 1 1 172459 568 0.00 2019-11-15 10:16:19 2019-11-15 10:17:43 t 1 1 172463 593 0.00 2019-11-15 10:05:27 2019-11-15 10:20:24 t 1 1 172464 416 0.00 2019-11-15 10:18:07 2019-11-15 10:22:57 t 1 1 172467 220 0.00 2019-11-15 10:14:00 2019-11-15 10:23:56 t 1 1 172469 220 0.00 2019-11-15 10:23:55 2019-11-15 10:24:28 t 1 1 172471 645 0.00 2019-11-15 10:23:53 2019-11-15 10:25:18 t 1 1 172474 430 0.00 2019-11-15 09:57:56 2019-11-15 10:27:24 t 1 1 172476 637 0.00 2019-11-15 10:25:08 2019-11-15 10:27:45 t 1 1 172477 416 0.00 2019-11-15 10:25:52 2019-11-15 10:28:20 t 1 1 172480 416 0.00 2019-11-15 10:28:19 2019-11-15 10:34:14 t 1 1 172483 562 0.00 2019-11-15 10:33:18 2019-11-15 10:34:46 t 1 1 172485 485 0.00 2019-11-15 10:29:37 2019-11-15 10:36:27 t 1 1 172486 430 0.00 2019-11-15 10:36:29 2019-11-15 10:36:54 t 1 1 172490 220 0.00 2019-11-15 10:36:36 2019-11-15 10:39:15 t 1 1 172494 416 0.00 2019-11-15 10:34:21 2019-11-15 10:43:04 t 1 1 172499 430 0.00 2019-11-15 10:46:36 2019-11-15 10:46:43 t 1 1 172500 544 0.00 2019-11-15 10:18:33 2019-11-15 10:47:47 t 1 1 172505 220 0.00 2019-11-15 10:49:11 2019-11-15 10:49:15 t 1 1 172507 430 0.00 2019-11-15 10:48:42 2019-11-15 10:49:43 t 1 1 172508 615 0.00 2019-11-15 10:38:38 2019-11-15 10:50:33 t 1 1 172510 481 0.00 2019-11-15 09:57:48 2019-11-15 10:52:04 t 1 1 172515 430 0.00 2019-11-15 10:56:13 2019-11-15 10:56:20 t 1 1 172519 430 0.00 2019-11-15 10:58:31 2019-11-15 10:59:09 t 1 1 172525 416 0.00 2019-11-15 10:48:09 2019-11-15 11:04:03 t 1 1 172222 637 0.00 2019-11-15 07:15:17 2019-11-15 07:27:05 t 1 1 172223 623 0.00 2019-11-15 07:27:16 2019-11-15 07:27:17 t 1 1 172227 623 0.00 2019-11-15 07:30:53 2019-11-15 07:30:55 t 1 1 172228 220 0.00 2019-11-15 07:32:01 2019-11-15 07:32:16 t 1 1 172231 566 0.00 2019-11-15 07:25:11 2019-11-15 07:32:46 t 1 1 172233 562 0.00 2019-11-15 07:33:16 2019-11-15 07:33:40 t 1 1 172234 623 0.00 2019-11-15 07:33:41 2019-11-15 07:33:55 t 1 1 172239 637 0.00 2019-11-15 07:27:05 2019-11-15 07:38:20 t 1 1 172242 566 0.00 2019-11-15 07:36:41 2019-11-15 07:43:30 t 1 1 172246 562 0.00 2019-11-15 07:49:09 2019-11-15 07:49:22 t 1 1 172250 562 0.00 2019-11-15 07:54:47 2019-11-15 07:55:12 t 1 1 172251 623 0.00 2019-11-15 07:55:01 2019-11-15 07:56:03 t 1 1 172257 566 0.00 2019-11-15 07:49:51 2019-11-15 08:05:28 t 1 1 172261 645 0.00 2019-11-15 08:10:21 2019-11-15 08:12:33 t 1 1 172262 220 0.00 2019-11-15 08:13:58 2019-11-15 08:14:06 t 1 1 172263 623 0.00 2019-11-15 08:15:24 2019-11-15 08:15:36 t 1 1 172264 585 0.00 2019-11-15 08:07:40 2019-11-15 08:17:09 t 1 1 172267 562 0.00 2019-11-15 08:20:48 2019-11-15 08:20:58 t 1 1 172269 623 0.00 2019-11-15 08:22:12 2019-11-15 08:22:40 t 1 1 172270 623 0.00 2019-11-15 08:23:51 2019-11-15 08:24:03 t 1 1 172271 220 0.00 2019-11-15 08:19:48 2019-11-15 08:24:28 t 1 1 172275 623 0.00 2019-11-15 08:25:31 2019-11-15 08:25:36 t 1 1 172278 597 0.00 2019-11-15 08:10:31 2019-11-15 08:29:39 t 1 1 172279 623 0.00 2019-11-15 08:30:01 2019-11-15 08:30:09 t 1 1 172280 619 0.00 2019-11-15 08:28:42 2019-11-15 08:31:27 t 1 1 172282 623 0.00 2019-11-15 08:30:41 2019-11-15 08:31:33 t 1 1 172284 551 0.00 2019-11-15 02:03:49 2019-11-15 08:32:31 t 1 1 172289 220 0.00 2019-11-15 08:34:56 2019-11-15 08:35:05 t 1 1 172292 645 0.00 2019-11-15 08:22:36 2019-11-15 08:36:52 t 1 1 172293 566 0.00 2019-11-15 08:05:28 2019-11-15 08:37:05 t 1 1 172295 645 0.00 2019-11-15 08:36:53 2019-11-15 08:37:49 t 1 1 172300 609 0.00 2019-11-15 08:39:34 2019-11-15 08:40:20 t 1 1 172305 551 0.00 2019-11-15 08:39:48 2019-11-15 08:45:04 t 1 1 172307 562 0.00 2019-11-15 08:42:22 2019-11-15 08:45:32 t 1 1 172311 623 0.00 2019-11-15 08:46:01 2019-11-15 08:49:15 t 1 1 172319 623 0.00 2019-11-15 08:54:00 2019-11-15 08:55:17 t 1 1 172321 623 0.00 2019-11-15 08:55:50 2019-11-15 08:55:51 t 1 1 172324 623 0.00 2019-11-15 08:55:57 2019-11-15 08:55:58 t 1 1 172328 623 0.00 2019-11-15 08:56:37 2019-11-15 08:58:48 t 1 1 172329 445 0.00 2019-11-15 08:57:02 2019-11-15 08:59:12 t 1 1 172339 430 0.00 2019-11-15 09:05:25 2019-11-15 09:06:23 t 1 1 172345 412 0.00 2019-11-15 06:42:42 2019-11-15 09:08:07 t 1 1 172350 623 0.00 2019-11-15 09:11:13 2019-11-15 09:11:16 t 1 1 172351 623 0.00 2019-11-15 09:11:46 2019-11-15 09:11:49 t 1 1 172352 623 0.00 2019-11-15 09:12:28 2019-11-15 09:12:47 t 1 1 172353 623 0.00 2019-11-15 09:13:18 2019-11-15 09:14:11 t 1 1 172355 623 0.00 2019-11-15 09:14:43 2019-11-15 09:16:24 t 1 1 172360 562 0.00 2019-11-15 09:17:39 2019-11-15 09:18:17 t 1 1 172363 660 0.00 2019-11-15 08:31:31 2019-11-15 09:20:41 t 1 1 172366 623 0.00 2019-11-15 09:23:07 2019-11-15 09:23:17 t 1 1 172369 623 0.00 2019-11-15 09:24:02 2019-11-15 09:24:05 t 1 1 172371 562 0.00 2019-11-15 09:24:24 2019-11-15 09:24:48 t 1 1 172374 623 0.00 2019-11-15 09:26:07 2019-11-15 09:26:17 t 1 1 172377 220 0.00 2019-11-15 09:27:24 2019-11-15 09:27:25 t 1 1 172378 623 0.00 2019-11-15 09:27:55 2019-11-15 09:28:17 t 1 1 172383 623 0.00 2019-11-15 09:31:27 2019-11-15 09:31:40 t 1 1 172386 623 0.00 2019-11-15 09:31:13 2019-11-15 09:32:24 t 1 1 172394 623 0.00 2019-11-15 09:39:56 2019-11-15 09:40:59 t 1 1 172401 627 0.00 2019-11-15 09:33:10 2019-11-15 09:49:39 t 1 1 172403 220 0.00 2019-11-15 09:49:54 2019-11-15 09:50:02 t 1 1 172404 627 0.00 2019-11-15 09:50:28 2019-11-15 09:50:36 t 1 1 172406 562 0.00 2019-11-15 09:50:36 2019-11-15 09:51:04 t 1 1 172410 430 0.00 2019-11-15 09:52:13 2019-11-15 09:52:20 t 1 1 172411 554 0.00 2019-11-15 09:52:37 2019-11-15 09:52:37 f 1 1 172413 430 0.00 2019-11-15 09:52:25 2019-11-15 09:52:42 t 1 1 172415 627 0.00 2019-11-15 09:52:41 2019-11-15 09:52:53 t 1 1 172417 554 0.00 2019-11-15 09:53:12 2019-11-15 09:53:12 f 1 1 172418 627 0.00 2019-11-15 09:53:15 2019-11-15 09:53:41 t 1 1 172421 591 0.00 2019-11-15 09:55:34 2019-11-15 09:56:54 t 1 1 172426 627 0.00 2019-11-15 09:59:55 2019-11-15 09:59:56 t 1 1 172433 545 0.00 2019-11-15 09:58:21 2019-11-15 10:02:09 t 1 1 172434 619 0.00 2019-11-15 09:57:47 2019-11-15 10:03:53 t 1 1 172437 485 0.00 2019-11-15 10:00:25 2019-11-15 10:05:03 t 1 1 172438 623 0.00 2019-11-15 10:04:33 2019-11-15 10:06:18 t 1 1 172440 416 0.00 2019-11-15 10:01:28 2019-11-15 10:08:03 t 1 1 172442 637 0.00 2019-11-15 10:00:00 2019-11-15 10:09:10 t 1 1 172448 562 0.00 2019-11-15 10:10:20 2019-11-15 10:11:09 t 1 1 172452 220 0.00 2019-11-15 10:09:41 2019-11-15 10:11:59 t 1 2 172457 485 0.00 2019-11-15 10:05:53 2019-11-15 10:14:42 t 1 1 172458 627 0.00 2019-11-15 10:04:14 2019-11-15 10:16:18 t 1 1 172460 562 0.00 2019-11-15 10:16:52 2019-11-15 10:17:53 t 1 1 172461 551 0.00 2019-11-15 10:09:04 2019-11-15 10:18:26 t 1 1 172462 645 0.00 2019-11-15 10:16:33 2019-11-15 10:18:49 t 1 1 172466 645 0.00 2019-11-15 10:22:38 2019-11-15 10:23:53 t 1 1 172468 562 0.00 2019-11-15 10:22:57 2019-11-15 10:24:10 t 1 1 172470 416 0.00 2019-11-15 10:22:56 2019-11-15 10:25:09 t 1 1 172472 416 0.00 2019-11-15 10:25:07 2019-11-15 10:25:52 t 1 1 172473 615 0.00 2019-11-15 10:20:48 2019-11-15 10:27:08 t 1 1 172479 597 0.00 2019-11-15 10:25:17 2019-11-15 10:31:44 t 1 1 172481 220 0.00 2019-11-15 10:26:08 2019-11-15 10:34:25 t 1 1 172488 597 0.00 2019-11-15 10:31:43 2019-11-15 10:37:34 t 1 1 172492 430 0.00 2019-11-15 10:39:33 2019-11-15 10:39:56 t 1 1 172493 562 0.00 2019-11-15 10:41:47 2019-11-15 10:42:54 t 1 1 172495 430 0.00 2019-11-15 10:43:03 2019-11-15 10:43:06 t 1 1 172496 220 0.00 2019-11-15 10:44:53 2019-11-15 10:45:01 t 1 1 172497 585 0.00 2019-11-15 10:43:28 2019-11-15 10:45:22 t 1 1 172501 416 0.00 2019-11-15 10:46:21 2019-11-15 10:48:13 t 1 1 172502 430 0.00 2019-11-15 10:47:56 2019-11-15 10:48:37 t 1 1 172504 562 0.00 2019-11-15 10:48:17 2019-11-15 10:48:44 t 1 1 172506 597 0.00 2019-11-15 10:47:44 2019-11-15 10:49:19 t 1 1 172509 430 0.00 2019-11-15 10:51:17 2019-11-15 10:51:33 t 1 1 172513 615 0.00 2019-11-15 10:50:33 2019-11-15 10:54:59 t 1 1 172516 645 0.00 2019-11-15 10:52:51 2019-11-15 10:56:27 t 1 1 172521 430 0.00 2019-11-15 10:59:59 2019-11-15 11:00:16 t 1 1 172522 430 0.00 2019-11-15 11:02:03 2019-11-15 11:02:19 t 1 1 172523 430 0.00 2019-11-15 11:02:38 2019-11-15 11:03:10 t 1 1 172524 562 0.00 2019-11-15 11:02:53 2019-11-15 11:03:22 t 1 1 172224 623 0.00 2019-11-15 07:28:10 2019-11-15 07:29:12 t 1 1 172225 623 0.00 2019-11-15 07:29:30 2019-11-15 07:29:32 t 1 1 172235 623 0.00 2019-11-15 07:33:55 2019-11-15 07:33:56 t 1 1 172236 623 0.00 2019-11-15 07:35:24 2019-11-15 07:35:37 t 1 1 172237 623 0.00 2019-11-15 07:36:10 2019-11-15 07:36:40 t 1 1 172240 623 0.00 2019-11-15 07:41:37 2019-11-15 07:41:47 t 1 1 172241 220 0.00 2019-11-15 07:42:31 2019-11-15 07:42:38 t 1 1 172247 566 0.00 2019-11-15 07:43:30 2019-11-15 07:49:51 t 1 1 172248 623 0.00 2019-11-15 07:49:57 2019-11-15 07:50:00 t 1 1 172249 220 0.00 2019-11-15 07:52:59 2019-11-15 07:53:14 t 1 1 172252 562 0.00 2019-11-15 07:56:55 2019-11-15 07:58:08 t 1 1 172254 623 0.00 2019-11-15 08:01:40 2019-11-15 08:01:45 t 1 1 172259 623 0.00 2019-11-15 08:07:49 2019-11-15 08:07:54 t 1 1 172266 623 0.00 2019-11-15 08:20:26 2019-11-15 08:20:33 t 1 1 172268 645 0.00 2019-11-15 08:15:42 2019-11-15 08:22:36 t 1 1 172272 220 0.00 2019-11-15 08:24:27 2019-11-15 08:24:36 t 1 1 172274 623 0.00 2019-11-15 08:25:20 2019-11-15 08:25:25 t 1 1 172276 562 0.00 2019-11-15 08:24:40 2019-11-15 08:28:02 t 1 1 172281 660 0.00 2019-11-15 08:24:57 2019-11-15 08:31:31 t 1 1 172286 562 0.00 2019-11-15 08:30:57 2019-11-15 08:33:26 t 1 1 172296 623 0.00 2019-11-15 08:38:28 2019-11-15 08:38:43 t 1 1 172299 551 0.00 2019-11-15 08:32:31 2019-11-15 08:39:48 t 1 1 172301 562 0.00 2019-11-15 08:39:03 2019-11-15 08:40:43 t 1 1 172308 220 0.00 2019-11-15 08:45:26 2019-11-15 08:45:42 t 1 1 172310 581 0.00 2019-11-15 08:38:05 2019-11-15 08:47:44 t 1 1 172313 551 0.00 2019-11-15 08:45:04 2019-11-15 08:51:08 t 1 1 172314 562 0.00 2019-11-15 08:50:05 2019-11-15 08:51:49 t 1 1 172315 595 0.00 2019-11-15 08:46:40 2019-11-15 08:52:33 t 1 1 172317 619 0.00 2019-11-15 08:47:35 2019-11-15 08:53:14 t 1 1 172320 623 0.00 2019-11-15 08:55:25 2019-11-15 08:55:32 t 1 1 172322 430 0.00 2019-11-15 08:50:46 2019-11-15 08:55:51 t 1 1 172323 220 0.00 2019-11-15 08:46:01 2019-11-15 08:55:57 t 1 1 172325 220 0.00 2019-11-15 08:55:56 2019-11-15 08:56:11 t 1 1 172330 562 0.00 2019-11-15 08:56:22 2019-11-15 08:59:17 t 1 1 172331 562 0.00 2019-11-15 08:59:25 2019-11-15 08:59:33 t 1 1 172333 623 0.00 2019-11-15 09:00:09 2019-11-15 09:00:14 t 1 1 172341 623 0.00 2019-11-15 09:06:29 2019-11-15 09:06:33 t 1 1 172343 623 0.00 2019-11-15 09:06:40 2019-11-15 09:06:43 t 1 1 172346 623 0.00 2019-11-15 09:08:38 2019-11-15 09:08:39 t 1 1 172349 623 0.00 2019-11-15 09:11:05 2019-11-15 09:11:07 t 1 1 172357 220 0.00 2019-11-15 09:06:56 2019-11-15 09:16:56 t 1 1 172364 416 0.00 2019-11-15 09:16:30 2019-11-15 09:21:40 t 1 1 172365 623 0.00 2019-11-15 09:22:32 2019-11-15 09:22:34 t 1 1 172368 623 0.00 2019-11-15 09:23:41 2019-11-15 09:23:44 t 1 1 172372 609 0.00 2019-11-15 08:57:11 2019-11-15 09:24:50 t 1 1 172373 623 0.00 2019-11-15 09:24:37 2019-11-15 09:25:26 t 1 1 172379 623 0.00 2019-11-15 09:29:04 2019-11-15 09:29:16 t 1 1 172380 623 0.00 2019-11-15 09:29:22 2019-11-15 09:30:04 t 1 1 172382 623 0.00 2019-11-15 09:30:15 2019-11-15 09:30:31 t 1 1 172384 430 0.00 2019-11-15 09:06:51 2019-11-15 09:31:58 t 1 1 172387 562 0.00 2019-11-15 09:32:19 2019-11-15 09:32:44 t 1 1 172388 623 0.00 2019-11-15 09:36:27 2019-11-15 09:36:38 t 1 1 172390 220 0.00 2019-11-15 09:27:57 2019-11-15 09:39:07 t 1 1 172395 637 0.00 2019-11-15 07:38:20 2019-11-15 09:41:18 t 1 1 172396 623 0.00 2019-11-15 09:41:31 2019-11-15 09:42:47 t 1 1 172399 623 0.00 2019-11-15 09:43:42 2019-11-15 09:44:19 t 1 1 172400 445 0.00 2019-11-15 08:59:11 2019-11-15 09:48:38 t 1 1 172408 627 0.00 2019-11-15 09:51:34 2019-11-15 09:51:38 t 1 1 172412 597 0.00 2019-11-15 09:48:28 2019-11-15 09:52:39 t 1 1 172416 562 0.00 2019-11-15 09:52:08 2019-11-15 09:53:10 t 1 1 172420 430 0.00 2019-11-15 09:55:58 2019-11-15 09:56:24 t 1 1 172422 430 0.00 2019-11-15 09:56:51 2019-11-15 09:56:57 t 1 1 172424 562 0.00 2019-11-15 09:58:39 2019-11-15 09:58:56 t 1 1 172425 627 0.00 2019-11-15 09:59:13 2019-11-15 09:59:21 t 1 1 172428 220 0.00 2019-11-15 09:50:28 2019-11-15 10:00:24 t 1 1 172430 220 0.00 2019-11-15 10:00:23 2019-11-15 10:00:38 t 1 1 172431 416 0.00 2019-11-15 09:38:38 2019-11-15 10:01:29 t 1 1 172435 538 0.00 2019-11-15 09:04:34 2019-11-15 10:04:08 t 1 1 172441 551 0.00 2019-11-15 08:51:08 2019-11-15 10:09:04 t 1 1 172443 562 0.00 2019-11-15 10:09:23 2019-11-15 10:09:43 t 1 1 172445 645 0.00 2019-11-15 10:05:36 2019-11-15 10:10:40 t 1 1 172446 220 0.00 2019-11-15 10:00:56 2019-11-15 10:10:54 t 1 1 172449 637 0.00 2019-11-15 10:10:11 2019-11-15 10:11:15 t 1 1 172453 416 0.00 2019-11-15 10:08:01 2019-11-15 10:13:13 t 1 1 172454 220 0.00 2019-11-15 10:11:28 2019-11-15 10:13:27 t 1 1 172465 637 0.00 2019-11-15 10:13:03 2019-11-15 10:23:20 t 1 1 172475 430 0.00 2019-11-15 10:27:29 2019-11-15 10:27:37 t 1 1 172478 430 0.00 2019-11-15 10:30:32 2019-11-15 10:31:34 t 1 1 172482 220 0.00 2019-11-15 10:34:24 2019-11-15 10:34:32 t 1 1 172484 430 0.00 2019-11-15 10:35:26 2019-11-15 10:36:23 t 1 1 172487 430 0.00 2019-11-15 10:36:59 2019-11-15 10:37:16 t 1 1 172489 627 0.00 2019-11-15 10:16:18 2019-11-15 10:38:01 t 1 1 172491 619 0.00 2019-11-15 10:21:46 2019-11-15 10:39:31 t 1 1 172498 430 0.00 2019-11-15 10:45:00 2019-11-15 10:45:52 t 1 1 172503 220 0.00 2019-11-15 10:20:14 2019-11-15 10:48:38 t 1 2 172511 607 0.00 2019-11-15 10:20:59 2019-11-15 10:53:18 t 1 1 172512 627 0.00 2019-11-15 10:38:01 2019-11-15 10:54:58 t 1 1 172514 220 0.00 2019-11-15 10:55:22 2019-11-15 10:55:37 t 1 1 172517 597 0.00 2019-11-15 10:52:19 2019-11-15 10:56:42 t 1 1 172518 430 0.00 2019-11-15 10:57:25 2019-11-15 10:57:48 t 1 1 172520 562 0.00 2019-11-15 10:59:03 2019-11-15 10:59:30 t 1 1 172526 430 0.00 2019-11-15 11:03:28 2019-11-15 11:04:24 t 1 1 172538 430 0.00 2019-11-15 11:12:09 2019-11-15 11:13:11 t 1 1 172540 562 0.00 2019-11-15 11:13:41 2019-11-15 11:14:13 t 1 1 172542 591 0.00 2019-11-15 10:24:53 2019-11-15 11:14:41 t 1 1 172544 637 0.00 2019-11-15 11:11:54 2019-11-15 11:15:54 t 1 1 172550 627 0.00 2019-11-15 11:22:57 2019-11-15 11:23:09 t 1 1 172551 627 0.00 2019-11-15 11:23:15 2019-11-15 11:23:26 t 1 1 172554 627 0.00 2019-11-15 11:24:03 2019-11-15 11:24:10 t 1 1 172555 627 0.00 2019-11-15 11:24:15 2019-11-15 11:24:27 t 1 1 172560 619 0.00 2019-11-15 11:14:05 2019-11-15 11:26:46 t 1 1 172565 637 0.00 2019-11-15 11:22:41 2019-11-15 11:28:41 t 1 1 172567 481 0.00 2019-11-15 11:20:09 2019-11-15 11:29:52 t 1 1 172571 660 0.00 2019-11-15 11:22:47 2019-11-15 11:32:22 t 1 1 172575 562 0.00 2019-11-15 11:33:21 2019-11-15 11:35:05 t 1 1 172577 220 0.00 2019-11-15 11:37:21 2019-11-15 11:37:36 t 1 1 172578 481 0.00 2019-11-15 11:32:44 2019-11-15 11:38:31 t 1 1 172527 637 0.00 2019-11-15 10:28:40 2019-11-15 11:04:28 t 1 1 172530 627 0.00 2019-11-15 10:54:58 2019-11-15 11:06:33 t 1 1 172531 430 0.00 2019-11-15 11:06:38 2019-11-15 11:06:45 t 1 1 172534 430 0.00 2019-11-15 11:07:40 2019-11-15 11:07:54 t 1 1 172535 562 0.00 2019-11-15 11:08:20 2019-11-15 11:08:32 t 1 1 172539 430 0.00 2019-11-15 11:13:10 2019-11-15 11:13:20 t 1 1 172541 562 0.00 2019-11-15 11:14:13 2019-11-15 11:14:36 t 1 1 172543 445 0.00 2019-11-15 10:07:26 2019-11-15 11:15:52 t 1 1 172546 220 0.00 2019-11-15 11:16:22 2019-11-15 11:16:54 t 1 1 172547 544 0.00 2019-11-15 10:47:47 2019-11-15 11:18:25 t 1 1 172548 481 0.00 2019-11-15 11:16:48 2019-11-15 11:19:46 t 1 1 172561 627 0.00 2019-11-15 11:26:44 2019-11-15 11:26:47 t 1 1 172563 627 0.00 2019-11-15 11:27:07 2019-11-15 11:27:26 t 1 1 172566 627 0.00 2019-11-15 11:29:03 2019-11-15 11:29:17 t 1 1 172568 627 0.00 2019-11-15 11:30:05 2019-11-15 11:30:22 t 1 1 172569 627 0.00 2019-11-15 11:31:14 2019-11-15 11:31:14 f 1 1 172573 481 0.00 2019-11-15 11:30:02 2019-11-15 11:32:38 t 1 1 172574 607 0.00 2019-11-15 10:55:42 2019-11-15 11:34:57 t 1 1 172576 220 0.00 2019-11-15 11:32:53 2019-11-15 11:37:22 t 1 1 172579 597 0.00 2019-11-15 11:35:23 2019-11-15 11:40:36 t 1 1 172583 585 0.00 2019-11-15 11:35:46 2019-11-15 11:43:11 t 1 1 172585 481 0.00 2019-11-15 11:38:41 2019-11-15 11:43:19 t 1 1 172586 645 0.00 2019-11-15 11:37:51 2019-11-15 11:44:31 t 1 1 172593 562 0.00 2019-11-15 11:48:44 2019-11-15 11:49:32 t 1 1 172595 416 0.00 2019-11-15 11:05:20 2019-11-15 11:49:40 t 1 1 172596 619 0.00 2019-11-15 11:48:36 2019-11-15 11:53:33 t 1 1 172598 566 0.00 2019-11-15 11:47:54 2019-11-15 11:54:08 t 1 1 172599 591 0.00 2019-11-15 11:14:41 2019-11-15 11:55:31 t 1 1 172601 637 0.00 2019-11-15 11:29:42 2019-11-15 11:55:34 t 1 1 172603 220 0.00 2019-11-15 11:58:21 2019-11-15 11:58:36 t 1 1 172607 422 0.00 2019-11-15 11:50:47 2019-11-15 12:02:37 t 1 1 172614 562 0.00 2019-11-15 12:07:50 2019-11-15 12:08:34 t 1 1 172617 220 0.00 2019-11-15 12:08:50 2019-11-15 12:09:05 t 1 1 172620 422 0.00 2019-11-15 12:09:38 2019-11-15 12:09:47 t 1 1 172621 591 0.00 2019-11-15 12:06:33 2019-11-15 12:10:55 t 1 1 172625 422 0.00 2019-11-15 12:15:19 2019-11-15 12:15:25 t 1 1 172627 544 0.00 2019-11-15 12:18:41 2019-11-15 12:20:07 t 1 1 172636 562 0.00 2019-11-15 12:18:28 2019-11-15 12:26:12 t 1 1 172637 591 0.00 2019-11-15 12:13:29 2019-11-15 12:26:50 t 1 1 172638 544 0.00 2019-11-15 12:20:07 2019-11-15 12:28:20 t 1 1 172640 220 0.00 2019-11-15 12:29:49 2019-11-15 12:30:04 t 1 1 172642 637 0.00 2019-11-15 11:58:55 2019-11-15 12:32:05 t 1 1 172643 220 0.00 2019-11-15 12:30:14 2019-11-15 12:33:13 t 1 2 172646 585 0.00 2019-11-15 12:28:59 2019-11-15 12:34:40 t 1 1 172651 422 0.00 2019-11-15 12:37:57 2019-11-15 12:38:49 t 1 1 172652 422 0.00 2019-11-15 12:38:55 2019-11-15 12:39:02 t 1 1 172654 220 0.00 2019-11-15 12:40:18 2019-11-15 12:40:26 t 1 1 172656 564 0.00 2019-11-15 11:23:28 2019-11-15 12:42:07 t 1 1 172657 611 0.00 2019-11-15 12:25:29 2019-11-15 12:42:25 t 1 1 172660 619 0.00 2019-11-15 12:37:40 2019-11-15 12:43:51 t 1 1 172661 637 0.00 2019-11-15 12:43:18 2019-11-15 12:46:30 t 1 1 172664 422 0.00 2019-11-15 12:46:07 2019-11-15 12:48:10 t 1 1 172667 220 0.00 2019-11-15 12:50:47 2019-11-15 12:50:55 t 1 1 172669 622 0.00 2019-11-15 12:47:32 2019-11-15 12:54:14 t 1 1 172670 562 0.00 2019-11-15 12:49:12 2019-11-15 12:54:29 t 1 1 172672 578 0.00 2019-11-14 22:55:04 2019-11-15 12:55:10 t 1 1 172676 562 0.00 2019-11-15 12:54:29 2019-11-15 12:58:23 t 1 1 172682 490 0.00 2019-11-15 12:57:01 2019-11-15 13:06:59 t 1 1 172685 585 0.00 2019-11-15 13:08:32 2019-11-15 13:10:38 t 1 1 172689 445 0.00 2019-11-15 12:26:43 2019-11-15 13:13:52 t 1 1 172691 645 0.00 2019-11-15 13:03:36 2019-11-15 13:14:04 t 1 1 172692 422 0.00 2019-11-15 13:13:16 2019-11-15 13:14:34 t 1 1 172696 566 0.00 2019-11-15 13:12:56 2019-11-15 13:14:52 t 1 1 172699 503 0.00 2019-11-15 13:14:35 2019-11-15 13:16:04 t 1 1 172703 220 0.00 2019-11-15 10:34:09 2019-11-15 13:17:33 t 1 2 172706 490 0.00 2019-11-15 13:13:53 2019-11-15 13:18:30 t 1 1 172708 483 0.00 2019-11-15 13:08:18 2019-11-15 13:19:22 t 1 1 172709 481 0.00 2019-11-15 11:43:19 2019-11-15 13:19:49 t 1 1 172710 637 0.00 2019-11-15 12:52:26 2019-11-15 13:20:30 t 1 1 172712 545 0.00 2019-11-15 13:08:29 2019-11-15 13:21:12 t 1 1 172714 422 0.00 2019-11-15 13:19:34 2019-11-15 13:21:26 t 1 1 172717 220 0.00 2019-11-15 13:22:15 2019-11-15 13:22:30 t 1 1 172721 562 0.00 2019-11-15 13:21:54 2019-11-15 13:28:07 t 1 1 172723 619 0.00 2019-11-15 13:26:40 2019-11-15 13:32:16 t 1 1 172724 220 0.00 2019-11-15 13:22:47 2019-11-15 13:32:45 t 1 1 172726 510 0.00 2019-11-15 12:11:18 2019-11-15 13:33:43 t 1 1 172727 562 0.00 2019-11-15 13:34:46 2019-11-15 13:35:47 t 1 1 172729 591 0.00 2019-11-15 13:26:18 2019-11-15 13:37:13 t 1 1 172741 627 0.00 2019-11-15 13:07:56 2019-11-15 13:47:11 t 1 1 172743 627 0.00 2019-11-15 13:48:23 2019-11-15 13:48:26 t 1 1 172752 422 0.00 2019-11-15 13:54:57 2019-11-15 13:55:22 t 1 1 172754 422 0.00 2019-11-15 13:55:28 2019-11-15 13:55:51 t 1 1 172755 422 0.00 2019-11-15 13:55:57 2019-11-15 13:56:09 t 1 1 172759 585 0.00 2019-11-15 13:56:25 2019-11-15 13:58:02 t 1 1 172763 619 0.00 2019-11-15 13:54:41 2019-11-15 13:59:52 t 1 1 172765 627 0.00 2019-11-15 14:00:03 2019-11-15 14:00:21 t 1 1 172769 627 0.00 2019-11-15 14:01:17 2019-11-15 14:01:25 t 1 1 172774 422 0.00 2019-11-15 14:02:14 2019-11-15 14:03:27 t 1 1 172777 627 0.00 2019-11-15 14:05:10 2019-11-15 14:05:31 t 1 1 172778 627 0.00 2019-11-15 14:06:27 2019-11-15 14:06:56 t 1 1 172781 627 0.00 2019-11-15 14:08:17 2019-11-15 14:08:34 t 1 1 172783 422 0.00 2019-11-15 14:10:16 2019-11-15 14:10:29 t 1 1 172787 627 0.00 2019-11-15 14:09:23 2019-11-15 14:12:28 t 1 1 172789 627 0.00 2019-11-15 14:12:41 2019-11-15 14:12:58 t 1 1 172790 627 0.00 2019-11-15 14:13:18 2019-11-15 14:13:29 t 1 1 172797 544 0.00 2019-11-15 14:03:13 2019-11-15 14:18:29 t 1 1 172802 627 0.00 2019-11-15 14:20:27 2019-11-15 14:20:29 t 1 1 172804 490 0.00 2019-11-15 14:14:27 2019-11-15 14:21:40 t 1 1 172805 627 0.00 2019-11-15 14:21:44 2019-11-15 14:21:47 t 1 1 172811 220 0.00 2019-11-15 14:22:45 2019-11-15 14:23:51 t 1 2 172813 490 0.00 2019-11-15 14:21:40 2019-11-15 14:24:15 t 1 1 172816 585 0.00 2019-11-15 14:27:47 2019-11-15 14:29:19 t 1 1 172820 510 0.00 2019-11-15 13:33:48 2019-11-15 14:31:37 t 1 1 172828 538 0.00 2019-11-15 13:38:11 2019-11-15 14:37:20 t 1 1 172836 220 0.00 2019-11-15 14:42:51 2019-11-15 14:43:37 t 1 1 172840 445 0.00 2019-11-15 14:23:33 2019-11-15 14:44:38 t 1 1 172841 637 0.00 2019-11-15 14:24:38 2019-11-15 14:45:57 t 1 1 172528 430 0.00 2019-11-15 11:04:30 2019-11-15 11:05:31 t 1 1 172529 220 0.00 2019-11-15 11:05:52 2019-11-15 11:06:26 t 1 1 172532 430 0.00 2019-11-15 11:06:58 2019-11-15 11:07:12 t 1 1 172533 637 0.00 2019-11-15 11:04:28 2019-11-15 11:07:53 t 1 1 172536 430 0.00 2019-11-15 11:08:43 2019-11-15 11:09:03 t 1 1 172537 562 0.00 2019-11-15 11:12:40 2019-11-15 11:13:01 t 1 1 172545 481 0.00 2019-11-15 10:52:04 2019-11-15 11:16:49 t 1 1 172549 627 0.00 2019-11-15 11:06:33 2019-11-15 11:22:05 t 1 1 172552 564 0.00 2019-11-14 20:34:14 2019-11-15 11:23:28 t 1 1 172553 544 0.00 2019-11-15 11:18:25 2019-11-15 11:23:54 t 1 1 172556 545 0.00 2019-11-15 10:51:52 2019-11-15 11:24:42 t 1 1 172557 627 0.00 2019-11-15 11:24:48 2019-11-15 11:25:08 t 1 1 172558 562 0.00 2019-11-15 11:25:01 2019-11-15 11:25:21 t 1 1 172559 627 0.00 2019-11-15 11:25:58 2019-11-15 11:26:24 t 1 1 172562 220 0.00 2019-11-15 11:26:52 2019-11-15 11:27:00 t 1 1 172564 627 0.00 2019-11-15 11:28:10 2019-11-15 11:28:17 t 1 1 172570 627 0.00 2019-11-15 11:29:37 2019-11-15 11:31:26 t 1 1 172572 627 0.00 2019-11-15 11:30:50 2019-11-15 11:32:26 t 1 1 172580 451 0.00 2019-11-15 11:27:07 2019-11-15 11:41:30 t 1 1 172581 562 0.00 2019-11-15 11:41:50 2019-11-15 11:42:13 t 1 1 172587 562 0.00 2019-11-15 11:44:31 2019-11-15 11:45:02 t 1 1 172588 544 0.00 2019-11-15 11:23:54 2019-11-15 11:45:32 t 1 1 172590 566 0.00 2019-11-15 08:37:05 2019-11-15 11:47:54 t 1 1 172592 220 0.00 2019-11-15 11:47:51 2019-11-15 11:48:06 t 1 1 172602 597 0.00 2019-11-15 11:49:30 2019-11-15 11:56:27 t 1 1 172604 619 0.00 2019-11-15 11:54:32 2019-11-15 11:58:56 t 1 1 172605 562 0.00 2019-11-15 11:59:14 2019-11-15 11:59:44 t 1 1 172606 611 0.00 2019-11-15 11:49:42 2019-11-15 12:02:22 t 1 1 172608 627 0.00 2019-11-15 11:54:22 2019-11-15 12:02:38 t 1 1 172612 422 0.00 2019-11-15 12:06:24 2019-11-15 12:06:36 t 1 1 172613 416 0.00 2019-11-15 11:54:24 2019-11-15 12:07:27 t 1 1 172622 510 0.00 2019-11-15 11:54:26 2019-11-15 12:11:19 t 1 1 172623 422 0.00 2019-11-15 12:12:20 2019-11-15 12:13:58 t 1 1 172626 544 0.00 2019-11-15 12:09:02 2019-11-15 12:17:19 t 1 1 172630 220 0.00 2019-11-15 12:19:20 2019-11-15 12:20:24 t 1 1 172631 585 0.00 2019-11-15 12:19:19 2019-11-15 12:21:25 t 1 1 172635 445 0.00 2019-11-15 12:20:48 2019-11-15 12:25:38 t 1 1 172641 619 0.00 2019-11-15 12:27:05 2019-11-15 12:31:50 t 1 1 172644 562 0.00 2019-11-15 12:27:43 2019-11-15 12:33:32 t 1 1 172647 637 0.00 2019-11-15 12:32:56 2019-11-15 12:35:19 t 1 1 172648 422 0.00 2019-11-15 12:35:08 2019-11-15 12:35:37 t 1 1 172650 544 0.00 2019-11-15 12:28:20 2019-11-15 12:38:46 t 1 1 172653 544 0.00 2019-11-15 12:38:56 2019-11-15 12:40:16 t 1 1 172658 422 0.00 2019-11-15 12:42:50 2019-11-15 12:43:06 t 1 1 172659 637 0.00 2019-11-15 12:38:21 2019-11-15 12:43:21 t 1 1 172665 562 0.00 2019-11-15 12:35:52 2019-11-15 12:49:12 t 1 1 172668 637 0.00 2019-11-15 12:46:30 2019-11-15 12:52:03 t 1 1 172671 422 0.00 2019-11-15 12:53:01 2019-11-15 12:54:51 t 1 1 172674 566 0.00 2019-11-15 12:22:33 2019-11-15 12:57:11 t 1 1 172677 422 0.00 2019-11-15 12:59:19 2019-11-15 13:00:25 t 1 1 172678 220 0.00 2019-11-15 13:01:16 2019-11-15 13:01:31 t 1 1 172679 591 0.00 2019-11-15 12:47:08 2019-11-15 13:04:01 t 1 1 172680 422 0.00 2019-11-15 13:04:35 2019-11-15 13:04:58 t 1 1 172681 422 0.00 2019-11-15 13:06:27 2019-11-15 13:06:51 t 1 1 172683 422 0.00 2019-11-15 13:06:51 2019-11-15 13:07:39 t 1 1 172686 220 0.00 2019-11-15 13:10:20 2019-11-15 13:11:46 t 1 1 172688 422 0.00 2019-11-15 13:11:18 2019-11-15 13:12:18 t 1 1 172690 585 0.00 2019-11-15 13:11:59 2019-11-15 13:13:58 t 1 1 172695 422 0.00 2019-11-15 13:14:40 2019-11-15 13:14:49 t 1 1 172698 445 0.00 2019-11-15 13:13:52 2019-11-15 13:15:36 t 1 1 172701 445 0.00 2019-11-15 13:15:36 2019-11-15 13:16:38 t 1 1 172702 645 0.00 2019-11-15 13:14:04 2019-11-15 13:17:20 t 1 1 172704 445 0.00 2019-11-15 13:16:55 2019-11-15 13:17:42 t 1 1 172713 422 0.00 2019-11-15 13:20:59 2019-11-15 13:21:24 t 1 1 172715 581 0.00 2019-11-15 13:01:55 2019-11-15 13:22:08 t 1 1 172720 422 0.00 2019-11-15 13:26:26 2019-11-15 13:27:27 t 1 1 172728 422 0.00 2019-11-15 13:35:40 2019-11-15 13:36:47 t 1 1 172730 566 0.00 2019-11-15 13:31:36 2019-11-15 13:37:49 t 1 1 172733 416 0.00 2019-11-15 12:08:28 2019-11-15 13:39:42 t 1 1 172734 445 0.00 2019-11-15 13:19:54 2019-11-15 13:42:36 t 1 1 172735 220 0.00 2019-11-15 13:33:51 2019-11-15 13:43:14 t 1 1 172739 490 0.00 2019-11-15 13:28:24 2019-11-15 13:44:38 t 1 1 172740 637 0.00 2019-11-15 13:20:30 2019-11-15 13:46:05 t 1 1 172742 422 0.00 2019-11-15 13:47:04 2019-11-15 13:47:33 t 1 1 172744 562 0.00 2019-11-15 13:48:30 2019-11-15 13:48:40 t 1 1 172745 422 0.00 2019-11-15 13:48:51 2019-11-15 13:49:23 t 1 1 172747 220 0.00 2019-11-15 13:50:20 2019-11-15 13:50:34 t 1 1 172750 627 0.00 2019-11-15 13:52:57 2019-11-15 13:53:11 t 1 1 172751 585 0.00 2019-11-15 13:48:04 2019-11-15 13:54:48 t 1 1 172753 220 0.00 2019-11-15 13:52:52 2019-11-15 13:55:36 t 1 1 172757 627 0.00 2019-11-15 13:56:58 2019-11-15 13:57:16 t 1 1 172760 627 0.00 2019-11-15 13:57:37 2019-11-15 13:58:52 t 1 1 172761 562 0.00 2019-11-15 13:59:10 2019-11-15 13:59:18 t 1 1 172768 412 0.00 2019-11-15 09:08:07 2019-11-15 14:01:07 t 1 1 172770 490 0.00 2019-11-15 13:50:16 2019-11-15 14:01:46 t 1 1 172772 544 0.00 2019-11-15 13:44:14 2019-11-15 14:02:11 t 1 1 172773 627 0.00 2019-11-15 14:03:19 2019-11-15 14:03:27 t 1 1 172775 422 0.00 2019-11-15 14:03:33 2019-11-15 14:04:09 t 1 1 172776 627 0.00 2019-11-15 14:04:09 2019-11-15 14:04:27 t 1 1 172780 490 0.00 2019-11-15 14:01:46 2019-11-15 14:07:43 t 1 1 172784 660 0.00 2019-11-15 14:07:32 2019-11-15 14:11:10 t 1 1 172788 585 0.00 2019-11-15 14:11:10 2019-11-15 14:12:58 t 1 1 172791 412 0.00 2019-11-15 14:01:07 2019-11-15 14:14:18 t 1 1 172792 490 0.00 2019-11-15 14:07:43 2019-11-15 14:14:27 t 1 1 172793 627 0.00 2019-11-15 14:13:49 2019-11-15 14:16:27 t 1 1 172795 627 0.00 2019-11-15 14:17:10 2019-11-15 14:17:28 t 1 1 172796 627 0.00 2019-11-15 14:18:24 2019-11-15 14:18:27 t 1 1 172798 619 0.00 2019-11-15 14:11:06 2019-11-15 14:18:45 t 1 1 172801 566 0.00 2019-11-15 14:00:00 2019-11-15 14:19:31 t 1 1 172806 220 0.00 2019-11-15 14:21:50 2019-11-15 14:22:05 t 1 1 172807 566 0.00 2019-11-15 14:19:31 2019-11-15 14:22:22 t 1 1 172808 487 0.00 2019-11-15 14:16:51 2019-11-15 14:23:26 t 1 2 172810 422 0.00 2019-11-15 14:20:08 2019-11-15 14:23:40 t 1 1 172815 422 0.00 2019-11-15 14:24:50 2019-11-15 14:25:27 t 1 1 172818 645 0.00 2019-11-15 14:14:38 2019-11-15 14:30:12 t 1 1 172821 422 0.00 2019-11-15 14:30:19 2019-11-15 14:31:47 t 1 1 172822 490 0.00 2019-11-15 14:24:15 2019-11-15 14:32:18 t 1 1 172582 622 0.00 2019-11-15 11:03:17 2019-11-15 11:42:37 t 1 1 172584 451 0.00 2019-11-15 11:41:30 2019-11-15 11:43:13 t 1 1 172589 622 0.00 2019-11-15 11:42:37 2019-11-15 11:46:17 t 1 1 172591 619 0.00 2019-11-15 11:26:46 2019-11-15 11:47:56 t 1 1 172594 445 0.00 2019-11-15 11:15:51 2019-11-15 11:49:35 t 1 1 172597 416 0.00 2019-11-15 11:50:32 2019-11-15 11:53:36 t 1 1 172600 512 0.00 2019-11-15 11:48:55 2019-11-15 11:55:33 t 1 1 172609 512 0.00 2019-11-15 11:55:33 2019-11-15 12:03:18 t 1 1 172610 512 0.00 2019-11-15 12:03:18 2019-11-15 12:04:59 t 1 1 172611 422 0.00 2019-11-15 12:02:37 2019-11-15 12:05:53 t 1 1 172615 422 0.00 2019-11-15 12:07:21 2019-11-15 12:08:40 t 1 1 172616 544 0.00 2019-11-15 11:45:32 2019-11-15 12:09:02 t 1 1 172618 562 0.00 2019-11-15 12:08:57 2019-11-15 12:09:15 t 1 1 172619 566 0.00 2019-11-15 11:54:08 2019-11-15 12:09:38 t 1 1 172624 422 0.00 2019-11-15 12:14:04 2019-11-15 12:14:17 t 1 1 172628 422 0.00 2019-11-15 12:19:47 2019-11-15 12:20:10 t 1 1 172629 445 0.00 2019-11-15 11:49:35 2019-11-15 12:20:20 t 1 1 172632 566 0.00 2019-11-15 12:09:38 2019-11-15 12:22:33 t 1 1 172633 611 0.00 2019-11-15 12:02:22 2019-11-15 12:24:09 t 1 1 172634 422 0.00 2019-11-15 12:24:19 2019-11-15 12:24:50 t 1 1 172639 220 0.00 2019-11-15 12:27:58 2019-11-15 12:29:34 t 1 1 172645 422 0.00 2019-11-15 12:33:34 2019-11-15 12:33:39 t 1 1 172649 637 0.00 2019-11-15 12:37:06 2019-11-15 12:38:22 t 1 1 172655 591 0.00 2019-11-15 12:36:46 2019-11-15 12:40:48 t 1 1 172662 520 0.00 2019-11-15 12:35:45 2019-11-15 12:47:02 t 1 1 172663 544 0.00 2019-11-15 12:45:22 2019-11-15 12:47:20 t 1 1 172666 597 0.00 2019-11-15 12:44:29 2019-11-15 12:49:18 t 1 1 172673 422 0.00 2019-11-15 12:56:08 2019-11-15 12:57:04 t 1 1 172675 645 0.00 2019-11-15 12:53:26 2019-11-15 12:57:58 t 1 1 172684 422 0.00 2019-11-15 13:08:24 2019-11-15 13:09:32 t 1 1 172687 220 0.00 2019-11-15 13:11:46 2019-11-15 13:12:04 t 1 1 172693 619 0.00 2019-11-15 12:52:51 2019-11-15 13:14:34 t 1 1 172694 456 0.00 2019-11-15 13:11:46 2019-11-15 13:14:42 t 1 1 172697 562 0.00 2019-11-15 13:03:27 2019-11-15 13:15:18 t 1 1 172700 422 0.00 2019-11-15 13:16:27 2019-11-15 13:16:35 t 1 1 172705 619 0.00 2019-11-15 13:16:22 2019-11-15 13:18:18 t 1 1 172707 445 0.00 2019-11-15 13:17:42 2019-11-15 13:19:12 t 1 1 172711 562 0.00 2019-11-15 13:17:57 2019-11-15 13:20:37 t 1 1 172716 220 0.00 2019-11-15 13:12:21 2019-11-15 13:22:15 t 1 1 172718 591 0.00 2019-11-15 13:09:44 2019-11-15 13:24:36 t 1 1 172719 483 0.00 2019-11-15 13:19:22 2019-11-15 13:25:31 t 1 1 172722 566 0.00 2019-11-15 13:27:13 2019-11-15 13:31:36 t 1 1 172725 220 0.00 2019-11-15 13:32:45 2019-11-15 13:32:53 t 1 1 172731 538 0.00 2019-11-15 11:54:02 2019-11-15 13:38:11 t 1 1 172732 585 0.00 2019-11-15 13:33:56 2019-11-15 13:39:19 t 1 1 172736 220 0.00 2019-11-15 13:43:14 2019-11-15 13:43:50 t 1 1 172737 220 0.00 2019-11-15 13:43:57 2019-11-15 13:44:01 t 1 1 172738 619 0.00 2019-11-15 13:39:51 2019-11-15 13:44:20 t 1 1 172746 220 0.00 2019-11-15 13:44:01 2019-11-15 13:50:20 t 1 1 172748 627 0.00 2019-11-15 13:50:43 2019-11-15 13:51:08 t 1 1 172749 562 0.00 2019-11-15 13:51:53 2019-11-15 13:52:09 t 1 1 172756 627 0.00 2019-11-15 13:55:59 2019-11-15 13:56:14 t 1 1 172758 635 0.00 2019-11-15 13:53:51 2019-11-15 13:57:23 t 1 1 172762 627 0.00 2019-11-15 13:59:14 2019-11-15 13:59:21 t 1 1 172764 566 0.00 2019-11-15 13:54:14 2019-11-15 14:00:00 t 1 1 172766 422 0.00 2019-11-15 13:59:40 2019-11-15 14:00:36 t 1 1 172767 220 0.00 2019-11-15 14:00:50 2019-11-15 14:01:05 t 1 1 172771 422 0.00 2019-11-15 14:01:42 2019-11-15 14:01:59 t 1 1 172779 627 0.00 2019-11-15 14:07:17 2019-11-15 14:07:34 t 1 1 172782 562 0.00 2019-11-15 14:09:51 2019-11-15 14:10:02 t 1 1 172785 585 0.00 2019-11-15 14:10:04 2019-11-15 14:11:10 t 1 1 172786 220 0.00 2019-11-15 14:11:20 2019-11-15 14:11:29 t 1 1 172794 627 0.00 2019-11-15 14:16:33 2019-11-15 14:16:50 t 1 1 172799 627 0.00 2019-11-15 14:18:55 2019-11-15 14:19:08 t 1 1 172800 627 0.00 2019-11-15 14:19:13 2019-11-15 14:19:30 t 1 1 172803 562 0.00 2019-11-15 14:20:22 2019-11-15 14:20:38 t 1 1 172809 445 0.00 2019-11-15 13:43:11 2019-11-15 14:23:33 t 1 1 172812 637 0.00 2019-11-15 14:00:58 2019-11-15 14:24:01 t 1 1 172814 422 0.00 2019-11-15 14:24:25 2019-11-15 14:24:44 t 1 1 172817 422 0.00 2019-11-15 14:28:38 2019-11-15 14:29:59 t 1 1 172819 562 0.00 2019-11-15 14:31:06 2019-11-15 14:31:14 t 1 1 172823 220 0.00 2019-11-15 14:32:20 2019-11-15 14:32:29 t 1 1 172825 490 0.00 2019-11-15 14:32:18 2019-11-15 14:33:44 t 1 1 172830 581 0.00 2019-11-15 14:32:16 2019-11-15 14:38:33 t 1 1 172832 422 0.00 2019-11-15 14:39:31 2019-11-15 14:40:57 t 1 1 172835 619 0.00 2019-11-15 14:32:51 2019-11-15 14:43:00 t 1 1 172838 220 0.00 2019-11-15 14:44:06 2019-11-15 14:44:07 t 1 1 172839 645 0.00 2019-11-15 14:32:56 2019-11-15 14:44:30 t 1 1 172842 520 0.00 2019-11-15 14:32:07 2019-11-15 14:47:07 t 1 1 172843 538 0.00 2019-11-15 14:37:23 2019-11-15 14:47:59 t 1 1 172844 587 0.00 2019-11-15 14:41:37 2019-11-15 14:49:09 t 1 1 172845 510 0.00 2019-11-15 14:31:38 2019-11-15 14:50:07 t 1 1 172859 422 0.00 2019-11-15 14:58:26 2019-11-15 14:58:39 t 1 1 172861 220 0.00 2019-11-15 14:57:11 2019-11-15 14:59:26 t 1 1 172865 622 0.00 2019-11-15 14:58:16 2019-11-15 15:01:56 t 1 1 172868 220 0.00 2019-11-15 15:03:59 2019-11-15 15:04:08 t 1 1 172871 220 0.00 2019-11-15 15:04:23 2019-11-15 15:04:31 t 1 1 172872 538 0.00 2019-11-15 15:03:30 2019-11-15 15:04:49 t 1 1 172874 412 0.00 2019-11-15 14:14:18 2019-11-15 15:05:18 t 1 1 172876 481 0.00 2019-11-15 13:19:49 2019-11-15 15:05:59 t 1 1 172877 627 0.00 2019-11-15 14:51:59 2019-11-15 15:06:44 t 1 1 172878 566 0.00 2019-11-15 15:06:41 2019-11-15 15:09:25 t 1 1 172879 416 0.00 2019-11-15 13:46:56 2019-11-15 15:10:34 t 1 1 172882 587 0.00 2019-11-15 14:49:16 2019-11-15 15:13:50 t 1 1 172883 422 0.00 2019-11-15 15:09:08 2019-11-15 15:14:37 t 1 1 172887 637 0.00 2019-11-15 14:45:57 2019-11-15 15:17:55 t 1 1 172890 422 0.00 2019-11-15 15:22:06 2019-11-15 15:22:07 t 1 1 172893 485 0.00 2019-11-15 15:16:41 2019-11-15 15:23:09 t 1 1 172894 637 0.00 2019-11-15 15:17:55 2019-11-15 15:24:11 t 1 1 172896 562 0.00 2019-11-15 15:24:11 2019-11-15 15:24:28 t 1 1 172898 220 0.00 2019-11-15 15:15:27 2019-11-15 15:25:23 t 1 1 172903 520 0.00 2019-11-15 15:13:43 2019-11-15 15:26:59 t 1 1 172907 564 0.00 2019-11-15 12:42:07 2019-11-15 15:29:43 t 1 1 172912 562 0.00 2019-11-15 15:34:46 2019-11-15 15:35:03 t 1 1 172915 422 0.00 2019-11-15 15:30:28 2019-11-15 15:35:58 t 1 1 172919 637 0.00 2019-11-15 15:24:10 2019-11-15 15:40:29 t 1 1 172923 585 0.00 2019-11-15 15:41:55 2019-11-15 15:43:27 t 1 1 172824 422 0.00 2019-11-15 14:32:24 2019-11-15 14:32:38 t 1 1 172826 422 0.00 2019-11-15 14:33:37 2019-11-15 14:35:26 t 1 1 172827 422 0.00 2019-11-15 14:35:47 2019-11-15 14:36:10 t 1 1 172829 587 0.00 2019-11-15 14:36:42 2019-11-15 14:38:08 t 1 1 172831 585 0.00 2019-11-15 14:35:58 2019-11-15 14:38:38 t 1 1 172833 562 0.00 2019-11-15 14:41:26 2019-11-15 14:41:58 t 1 1 172834 422 0.00 2019-11-15 14:42:25 2019-11-15 14:42:50 t 1 1 172837 220 0.00 2019-11-15 14:43:45 2019-11-15 14:43:59 t 1 1 172846 422 0.00 2019-11-15 14:51:28 2019-11-15 14:51:41 t 1 1 172848 520 0.00 2019-11-15 14:47:05 2019-11-15 14:52:28 t 1 1 172850 544 0.00 2019-11-15 14:18:29 2019-11-15 14:53:26 t 1 1 172851 220 0.00 2019-11-15 14:51:07 2019-11-15 14:53:43 t 1 1 172855 520 0.00 2019-11-15 14:52:28 2019-11-15 14:56:42 t 1 1 172856 562 0.00 2019-11-15 14:56:54 2019-11-15 14:57:16 t 1 1 172857 622 0.00 2019-11-15 12:54:14 2019-11-15 14:58:16 t 1 1 172860 566 0.00 2019-11-15 14:44:25 2019-11-15 14:59:02 t 1 1 172862 538 0.00 2019-11-15 14:58:37 2019-11-15 14:59:58 t 1 1 172864 538 0.00 2019-11-15 15:00:10 2019-11-15 15:01:49 t 1 1 172866 562 0.00 2019-11-15 15:03:00 2019-11-15 15:03:10 t 1 1 172869 622 0.00 2019-11-15 15:01:56 2019-11-15 15:04:13 t 1 1 172870 422 0.00 2019-11-15 15:04:18 2019-11-15 15:04:20 t 1 1 172880 520 0.00 2019-11-15 15:02:26 2019-11-15 15:13:43 t 1 1 172885 220 0.00 2019-11-15 15:14:53 2019-11-15 15:15:07 t 1 1 172892 627 0.00 2019-11-15 15:06:44 2019-11-15 15:22:20 t 1 1 172899 220 0.00 2019-11-15 15:25:23 2019-11-15 15:25:31 t 1 1 172901 544 0.00 2019-11-15 14:53:26 2019-11-15 15:25:55 t 1 1 172902 422 0.00 2019-11-15 15:25:51 2019-11-15 15:26:24 t 1 1 172904 516 0.00 2019-11-15 15:22:28 2019-11-15 15:27:12 t 1 1 172909 597 0.00 2019-11-15 15:13:32 2019-11-15 15:30:45 t 1 1 172910 587 0.00 2019-11-15 15:20:51 2019-11-15 15:31:40 t 1 1 172911 595 0.00 2019-11-15 15:31:06 2019-11-15 15:32:23 t 1 1 172913 587 0.00 2019-11-15 15:31:54 2019-11-15 15:35:17 t 1 1 172916 220 0.00 2019-11-15 15:35:53 2019-11-15 15:36:07 t 1 1 172917 220 0.00 2019-11-15 15:37:55 2019-11-15 15:38:58 t 1 1 172918 587 0.00 2019-11-15 15:37:14 2019-11-15 15:39:56 t 1 1 172920 422 0.00 2019-11-15 15:37:00 2019-11-15 15:41:06 t 1 1 172922 508 0.00 2019-11-15 15:33:26 2019-11-15 15:43:07 t 1 2 172924 587 0.00 2019-11-15 15:41:46 2019-11-15 15:45:18 t 1 1 172925 627 0.00 2019-11-15 15:37:47 2019-11-15 15:45:38 t 1 1 172929 637 0.00 2019-11-15 15:40:29 2019-11-15 15:48:04 t 1 1 172934 578 0.00 2019-11-15 12:55:10 2019-11-15 15:50:02 t 1 1 172938 422 0.00 2019-11-15 15:52:13 2019-11-15 15:52:33 t 1 1 172939 619 0.00 2019-11-15 15:46:26 2019-11-15 15:55:53 t 1 1 172941 220 0.00 2019-11-15 15:47:19 2019-11-15 15:56:53 t 1 1 172944 445 0.00 2019-11-15 15:55:55 2019-11-15 15:57:15 t 1 1 172945 578 0.00 2019-11-15 15:50:02 2019-11-15 15:57:40 t 1 1 172946 595 0.00 2019-11-15 15:46:53 2019-11-15 15:59:51 t 1 1 172948 220 0.00 2019-11-15 15:57:30 2019-11-15 16:00:24 t 1 1 172953 587 0.00 2019-11-15 15:45:40 2019-11-15 16:03:20 t 1 1 172955 422 0.00 2019-11-15 16:04:42 2019-11-15 16:04:55 t 1 1 172957 422 0.00 2019-11-15 16:05:01 2019-11-15 16:05:15 t 1 1 172962 220 0.00 2019-11-15 16:07:23 2019-11-15 16:07:31 t 1 1 172967 637 0.00 2019-11-15 15:51:27 2019-11-15 16:11:43 t 1 1 172972 422 0.00 2019-11-15 16:12:45 2019-11-15 16:13:06 t 1 1 172974 566 0.00 2019-11-15 16:03:51 2019-11-15 16:16:26 t 1 1 172978 637 0.00 2019-11-15 16:11:43 2019-11-15 16:18:19 t 1 1 172980 220 0.00 2019-11-15 16:18:47 2019-11-15 16:19:49 t 1 1 172981 422 0.00 2019-11-15 16:14:00 2019-11-15 16:21:21 t 1 1 172990 645 0.00 2019-11-15 16:23:03 2019-11-15 16:27:38 t 1 1 172992 220 0.00 2019-11-15 16:28:23 2019-11-15 16:28:37 t 1 1 172994 422 0.00 2019-11-15 16:28:44 2019-11-15 16:29:09 t 1 1 172998 544 0.00 2019-11-15 16:26:41 2019-11-15 16:30:57 t 1 1 173005 637 0.00 2019-11-15 16:29:41 2019-11-15 16:36:56 t 1 1 173007 220 0.00 2019-11-15 16:38:53 2019-11-15 16:39:08 t 1 1 173012 591 0.00 2019-11-15 16:33:21 2019-11-15 16:43:11 t 1 1 173013 516 0.00 2019-11-15 16:32:31 2019-11-15 16:44:41 t 1 1 173020 591 0.00 2019-11-15 16:46:35 2019-11-15 16:50:12 t 1 1 173021 551 0.00 2019-11-15 10:18:26 2019-11-15 16:50:19 t 1 1 173032 220 0.00 2019-11-15 16:59:53 2019-11-15 17:00:08 t 1 1 173035 587 0.00 2019-11-15 17:03:10 2019-11-15 17:04:52 t 1 1 173044 422 0.00 2019-11-15 17:10:11 2019-11-15 17:11:13 t 1 1 173047 562 0.00 2019-11-15 17:11:13 2019-11-15 17:11:52 t 1 1 173050 645 0.00 2019-11-15 17:11:18 2019-11-15 17:13:18 t 1 1 173057 595 0.00 2019-11-15 17:16:18 2019-11-15 17:17:20 t 1 1 173059 422 0.00 2019-11-15 17:14:19 2019-11-15 17:18:17 t 1 1 173060 645 0.00 2019-11-15 17:14:31 2019-11-15 17:19:26 t 1 1 173061 660 0.00 2019-11-15 17:16:01 2019-11-15 17:20:57 t 1 1 173066 645 0.00 2019-11-15 17:20:08 2019-11-15 17:23:48 t 1 1 173068 422 0.00 2019-11-15 17:25:12 2019-11-15 17:25:24 t 1 1 173069 422 0.00 2019-11-15 17:25:30 2019-11-15 17:25:38 t 1 1 173070 422 0.00 2019-11-15 17:26:27 2019-11-15 17:26:40 t 1 1 173073 637 0.00 2019-11-15 17:01:40 2019-11-15 17:31:26 t 1 1 173074 220 0.00 2019-11-15 17:31:23 2019-11-15 17:31:31 t 1 1 173077 595 0.00 2019-11-15 17:30:23 2019-11-15 17:33:21 t 1 1 173078 566 0.00 2019-11-15 17:16:33 2019-11-15 17:35:26 t 1 1 173079 595 0.00 2019-11-15 17:33:30 2019-11-15 17:35:45 t 1 1 173084 520 0.00 2019-11-15 17:35:09 2019-11-15 17:37:57 t 1 1 173086 562 0.00 2019-11-15 17:39:02 2019-11-15 17:39:27 t 1 1 173088 578 0.00 2019-11-15 16:32:14 2019-11-15 17:40:50 t 1 1 173093 488 0.00 2019-11-15 17:40:31 2019-11-15 17:42:21 t 1 1 173096 595 0.00 2019-11-15 17:44:17 2019-11-15 17:46:11 t 1 1 173101 660 0.00 2019-11-15 17:21:12 2019-11-15 17:50:04 t 1 1 173105 578 0.00 2019-11-15 17:40:50 2019-11-15 17:51:11 t 1 1 173108 422 0.00 2019-11-15 17:47:49 2019-11-15 17:53:40 t 1 1 173118 566 0.00 2019-11-15 17:35:26 2019-11-15 18:01:40 t 1 1 173124 578 0.00 2019-11-15 17:51:11 2019-11-15 18:03:25 t 1 1 173127 545 0.00 2019-11-15 17:51:08 2019-11-15 18:04:44 t 1 1 173129 645 0.00 2019-11-15 18:04:54 2019-11-15 18:07:51 t 1 1 173131 545 0.00 2019-11-15 18:04:44 2019-11-15 18:11:28 t 1 1 173133 488 0.00 2019-11-15 17:57:03 2019-11-15 18:12:00 t 1 1 173135 562 0.00 2019-11-15 18:11:36 2019-11-15 18:12:02 t 1 1 173137 566 0.00 2019-11-15 18:01:40 2019-11-15 18:13:17 t 1 1 173138 578 0.00 2019-11-15 18:03:25 2019-11-15 18:13:20 t 1 1 173148 562 0.00 2019-11-15 18:19:18 2019-11-15 18:19:38 t 1 1 173150 595 0.00 2019-11-15 18:21:40 2019-11-15 18:21:48 t 1 1 173157 595 0.00 2019-11-15 18:22:26 2019-11-15 18:26:57 t 1 1 173158 422 0.00 2019-11-15 18:27:51 2019-11-15 18:28:18 t 1 1 172847 627 0.00 2019-11-15 14:22:21 2019-11-15 14:51:59 t 1 1 172849 562 0.00 2019-11-15 14:52:25 2019-11-15 14:52:36 t 1 1 172852 220 0.00 2019-11-15 14:53:43 2019-11-15 14:53:52 t 1 1 172853 220 0.00 2019-11-15 14:54:08 2019-11-15 14:54:09 t 1 1 172854 422 0.00 2019-11-15 14:54:01 2019-11-15 14:54:49 t 1 1 172858 538 0.00 2019-11-15 14:47:59 2019-11-15 14:58:37 t 1 1 172863 520 0.00 2019-11-15 14:56:42 2019-11-15 15:01:04 t 1 1 172867 220 0.00 2019-11-15 14:54:15 2019-11-15 15:04:00 t 1 1 172873 538 0.00 2019-11-15 15:04:48 2019-11-15 15:04:57 t 1 1 172875 220 0.00 2019-11-15 15:04:36 2019-11-15 15:05:46 t 1 1 172881 562 0.00 2019-11-15 15:13:31 2019-11-15 15:13:49 t 1 1 172884 220 0.00 2019-11-15 15:05:45 2019-11-15 15:14:53 t 1 1 172886 422 0.00 2019-11-15 15:15:00 2019-11-15 15:16:03 t 1 1 172888 422 0.00 2019-11-15 15:19:05 2019-11-15 15:19:37 t 1 1 172889 587 0.00 2019-11-15 15:14:05 2019-11-15 15:20:41 t 1 1 172891 445 0.00 2019-11-15 14:44:38 2019-11-15 15:22:15 t 1 1 172895 422 0.00 2019-11-15 15:23:58 2019-11-15 15:24:21 t 1 1 172897 422 0.00 2019-11-15 15:25:17 2019-11-15 15:25:18 t 1 1 172900 585 0.00 2019-11-15 15:23:14 2019-11-15 15:25:39 t 1 1 172905 544 0.00 2019-11-15 15:25:55 2019-11-15 15:29:18 t 1 1 172906 422 0.00 2019-11-15 15:28:53 2019-11-15 15:29:21 t 1 1 172908 412 0.00 2019-11-15 15:05:18 2019-11-15 15:30:37 t 1 1 172914 220 0.00 2019-11-15 15:26:30 2019-11-15 15:35:53 t 1 1 172921 587 0.00 2019-11-15 15:40:22 2019-11-15 15:41:15 t 1 1 172928 220 0.00 2019-11-15 15:46:23 2019-11-15 15:46:31 t 1 1 172930 422 0.00 2019-11-15 15:47:17 2019-11-15 15:48:07 t 1 1 172931 538 0.00 2019-11-15 15:04:57 2019-11-15 15:48:29 t 1 1 172935 510 0.00 2019-11-15 14:50:07 2019-11-15 15:51:56 t 1 1 172942 220 0.00 2019-11-15 15:56:53 2019-11-15 15:57:01 t 1 1 172950 422 0.00 2019-11-15 15:52:57 2019-11-15 16:01:35 t 1 1 172951 562 0.00 2019-11-15 16:02:08 2019-11-15 16:02:25 t 1 1 172952 422 0.00 2019-11-15 16:02:58 2019-11-15 16:03:01 t 1 1 172960 516 0.00 2019-11-15 15:59:54 2019-11-15 16:06:38 t 1 1 172963 562 0.00 2019-11-15 16:06:27 2019-11-15 16:07:52 t 1 1 172968 508 0.00 2019-11-15 15:57:48 2019-11-15 16:11:53 t 1 2 172969 514 0.00 2019-11-15 16:11:36 2019-11-15 16:12:38 t 1 1 172971 587 0.00 2019-11-15 16:09:35 2019-11-15 16:12:46 t 1 1 172973 587 0.00 2019-11-15 16:13:05 2019-11-15 16:16:24 t 1 1 172975 220 0.00 2019-11-15 16:08:22 2019-11-15 16:17:53 t 1 1 172976 587 0.00 2019-11-15 16:17:18 2019-11-15 16:17:58 t 1 1 172983 595 0.00 2019-11-15 16:20:25 2019-11-15 16:21:59 t 1 1 172984 220 0.00 2019-11-15 16:20:26 2019-11-15 16:24:28 t 1 1 172986 220 0.00 2019-11-15 16:25:08 2019-11-15 16:26:35 t 1 1 172991 562 0.00 2019-11-15 16:27:53 2019-11-15 16:28:22 t 1 1 172996 566 0.00 2019-11-15 16:16:26 2019-11-15 16:30:33 t 1 1 173000 483 0.00 2019-11-15 16:00:34 2019-11-15 16:33:35 t 1 1 173002 512 0.00 2019-11-15 16:22:47 2019-11-15 16:34:25 t 1 1 173011 587 0.00 2019-11-15 16:36:31 2019-11-15 16:42:53 t 1 1 173014 562 0.00 2019-11-15 16:45:10 2019-11-15 16:45:34 t 1 1 173015 422 0.00 2019-11-15 16:46:05 2019-11-15 16:46:18 t 1 1 173017 587 0.00 2019-11-15 16:42:53 2019-11-15 16:47:19 t 1 1 173018 220 0.00 2019-11-15 16:49:23 2019-11-15 16:49:38 t 1 1 173024 597 0.00 2019-11-15 15:48:26 2019-11-15 16:52:33 t 1 1 173025 544 0.00 2019-11-15 16:30:57 2019-11-15 16:53:49 t 1 1 173028 566 0.00 2019-11-15 16:47:59 2019-11-15 16:57:37 t 1 1 173029 587 0.00 2019-11-15 16:52:22 2019-11-15 16:58:41 t 1 1 173030 422 0.00 2019-11-15 16:58:49 2019-11-15 16:58:56 t 1 1 173033 587 0.00 2019-11-15 16:58:41 2019-11-15 17:00:50 t 1 1 173034 587 0.00 2019-11-15 17:01:59 2019-11-15 17:02:49 t 1 1 173037 422 0.00 2019-11-15 16:59:02 2019-11-15 17:07:02 t 1 1 173040 595 0.00 2019-11-15 17:08:52 2019-11-15 17:09:51 t 1 1 173043 220 0.00 2019-11-15 17:10:23 2019-11-15 17:10:38 t 1 1 173045 595 0.00 2019-11-15 17:10:14 2019-11-15 17:11:14 t 1 1 173049 587 0.00 2019-11-15 17:10:17 2019-11-15 17:12:45 t 1 1 173053 595 0.00 2019-11-15 17:15:08 2019-11-15 17:16:07 t 1 1 173056 516 0.00 2019-11-15 17:01:55 2019-11-15 17:16:33 t 1 1 173062 220 0.00 2019-11-15 17:20:53 2019-11-15 17:21:01 t 1 1 173063 595 0.00 2019-11-15 17:20:23 2019-11-15 17:21:33 t 1 1 173064 619 0.00 2019-11-15 17:07:31 2019-11-15 17:23:21 t 1 1 173072 562 0.00 2019-11-15 17:28:12 2019-11-15 17:28:39 t 1 1 173076 597 0.00 2019-11-15 17:27:44 2019-11-15 17:33:14 t 1 1 173081 422 0.00 2019-11-15 17:26:46 2019-11-15 17:36:30 t 1 1 173087 544 0.00 2019-11-15 16:53:49 2019-11-15 17:40:20 t 1 1 173089 595 0.00 2019-11-15 17:40:06 2019-11-15 17:40:52 t 1 1 173092 220 0.00 2019-11-15 17:41:53 2019-11-15 17:42:01 t 1 1 173099 595 0.00 2019-11-15 17:48:21 2019-11-15 17:48:39 t 1 1 173100 595 0.00 2019-11-15 17:49:22 2019-11-15 17:49:39 t 1 1 173104 545 0.00 2019-11-15 17:35:29 2019-11-15 17:51:08 t 1 1 173107 220 0.00 2019-11-15 17:52:22 2019-11-15 17:52:37 t 1 1 173109 595 0.00 2019-11-15 17:50:55 2019-11-15 17:53:50 t 1 1 173111 595 0.00 2019-11-15 17:56:03 2019-11-15 17:56:15 t 1 1 173112 660 0.00 2019-11-15 17:50:04 2019-11-15 17:56:42 t 1 1 173113 488 0.00 2019-11-15 17:45:06 2019-11-15 17:57:03 t 1 1 173115 595 0.00 2019-11-15 17:57:33 2019-11-15 17:58:00 t 1 1 173116 595 0.00 2019-11-15 17:58:08 2019-11-15 17:58:30 t 1 1 173121 220 0.00 2019-11-15 18:02:52 2019-11-15 18:02:53 t 1 1 173126 564 0.00 2019-11-15 15:29:43 2019-11-15 18:04:26 t 1 1 173128 595 0.00 2019-11-15 18:06:21 2019-11-15 18:06:28 t 1 1 173132 595 0.00 2019-11-15 18:11:26 2019-11-15 18:11:34 t 1 1 173139 220 0.00 2019-11-15 18:13:25 2019-11-15 18:13:33 t 1 1 173140 422 0.00 2019-11-15 18:13:40 2019-11-15 18:14:08 t 1 1 173141 220 0.00 2019-11-15 18:13:50 2019-11-15 18:14:51 t 1 1 173143 595 0.00 2019-11-15 18:16:33 2019-11-15 18:16:40 t 1 1 173145 585 0.00 2019-11-15 18:17:10 2019-11-15 18:18:50 t 1 1 173149 595 0.00 2019-11-15 18:17:59 2019-11-15 18:19:56 t 1 1 173153 587 0.00 2019-11-15 17:46:21 2019-11-15 18:23:40 t 1 1 173154 578 0.00 2019-11-15 18:13:20 2019-11-15 18:24:22 t 1 1 173161 562 0.00 2019-11-15 18:30:00 2019-11-15 18:30:22 t 1 1 173162 422 0.00 2019-11-15 18:30:23 2019-11-15 18:30:31 t 1 1 173168 578 0.00 2019-11-15 18:24:22 2019-11-15 18:32:30 t 1 1 173169 595 0.00 2019-11-15 18:30:47 2019-11-15 18:34:13 t 1 1 173172 562 0.00 2019-11-15 18:38:26 2019-11-15 18:38:37 t 1 1 173173 595 0.00 2019-11-15 18:39:27 2019-11-15 18:39:44 t 1 1 173175 510 0.00 2019-11-15 17:36:25 2019-11-15 18:41:45 t 1 1 173176 595 0.00 2019-11-15 18:42:02 2019-11-15 18:42:10 t 1 1 173179 578 0.00 2019-11-15 18:32:30 2019-11-15 18:43:02 t 1 1 173180 488 0.00 2019-11-15 18:32:01 2019-11-15 18:46:09 t 1 1 172926 562 0.00 2019-11-15 15:45:17 2019-11-15 15:45:47 t 1 1 172927 220 0.00 2019-11-15 15:39:15 2019-11-15 15:46:23 t 1 1 172932 645 0.00 2019-11-15 15:36:58 2019-11-15 15:49:17 t 1 1 172933 520 0.00 2019-11-15 15:44:23 2019-11-15 15:49:34 t 1 1 172936 422 0.00 2019-11-15 15:51:53 2019-11-15 15:52:09 t 1 1 172937 220 0.00 2019-11-15 10:17:42 2019-11-15 15:52:24 t 1 2 172940 445 0.00 2019-11-15 15:22:15 2019-11-15 15:55:55 t 1 1 172943 562 0.00 2019-11-15 15:56:06 2019-11-15 15:57:13 t 1 1 172947 487 0.00 2019-11-15 14:48:33 2019-11-15 15:59:56 t 1 2 172949 520 0.00 2019-11-15 15:49:33 2019-11-15 16:00:36 t 1 1 172954 591 0.00 2019-11-15 16:02:39 2019-11-15 16:04:53 t 1 1 172956 587 0.00 2019-11-15 16:03:57 2019-11-15 16:05:12 t 1 1 172958 578 0.00 2019-11-15 15:57:40 2019-11-15 16:06:23 t 1 1 172959 412 0.00 2019-11-15 15:30:37 2019-11-15 16:06:30 t 1 1 172961 220 0.00 2019-11-15 16:00:23 2019-11-15 16:07:23 t 1 1 172964 422 0.00 2019-11-15 16:07:19 2019-11-15 16:08:05 t 1 1 172965 587 0.00 2019-11-15 16:06:18 2019-11-15 16:08:38 t 1 1 172966 422 0.00 2019-11-15 16:10:45 2019-11-15 16:10:53 t 1 1 172970 422 0.00 2019-11-15 16:12:15 2019-11-15 16:12:39 t 1 1 172977 220 0.00 2019-11-15 16:17:53 2019-11-15 16:18:00 t 1 1 172979 562 0.00 2019-11-15 16:17:34 2019-11-15 16:19:26 t 1 1 172982 578 0.00 2019-11-15 16:06:23 2019-11-15 16:21:25 t 1 1 172985 422 0.00 2019-11-15 16:21:21 2019-11-15 16:25:42 t 1 1 172987 544 0.00 2019-11-15 15:29:18 2019-11-15 16:26:41 t 1 1 172988 422 0.00 2019-11-15 16:26:57 2019-11-15 16:27:10 t 1 1 172989 637 0.00 2019-11-15 16:18:23 2019-11-15 16:27:23 t 1 1 172993 637 0.00 2019-11-15 16:27:23 2019-11-15 16:28:45 t 1 1 172995 587 0.00 2019-11-15 16:17:58 2019-11-15 16:30:29 t 1 1 172997 587 0.00 2019-11-15 16:30:29 2019-11-15 16:30:35 t 1 1 172999 578 0.00 2019-11-15 16:21:25 2019-11-15 16:32:14 t 1 1 173001 220 0.00 2019-11-15 16:32:44 2019-11-15 16:34:05 t 1 1 173003 587 0.00 2019-11-15 16:31:20 2019-11-15 16:35:05 t 1 1 173004 645 0.00 2019-11-15 16:27:38 2019-11-15 16:35:38 t 1 1 173006 585 0.00 2019-11-15 16:36:15 2019-11-15 16:38:59 t 1 1 173008 619 0.00 2019-11-15 16:32:17 2019-11-15 16:39:44 t 1 1 173009 422 0.00 2019-11-15 16:32:12 2019-11-15 16:40:33 t 1 1 173010 422 0.00 2019-11-15 16:41:33 2019-11-15 16:42:01 t 1 1 173016 445 0.00 2019-11-15 15:59:09 2019-11-15 16:46:56 t 1 1 173019 585 0.00 2019-11-15 16:46:07 2019-11-15 16:50:10 t 1 1 173022 637 0.00 2019-11-15 16:37:26 2019-11-15 16:51:15 t 1 1 173023 587 0.00 2019-11-15 16:47:19 2019-11-15 16:52:22 t 1 1 173026 422 0.00 2019-11-15 16:55:10 2019-11-15 16:55:26 t 1 1 173027 562 0.00 2019-11-15 16:55:56 2019-11-15 16:56:20 t 1 1 173031 581 0.00 2019-11-15 16:54:33 2019-11-15 16:59:58 t 1 1 173036 595 0.00 2019-11-15 17:04:00 2019-11-15 17:06:45 t 1 1 173038 562 0.00 2019-11-15 17:06:39 2019-11-15 17:07:11 t 1 1 173039 485 0.00 2019-11-15 17:00:16 2019-11-15 17:09:37 t 1 1 173041 587 0.00 2019-11-15 17:06:50 2019-11-15 17:10:03 t 1 1 173042 645 0.00 2019-11-15 17:09:09 2019-11-15 17:10:19 t 1 1 173046 597 0.00 2019-11-15 16:52:33 2019-11-15 17:11:45 t 1 1 173048 595 0.00 2019-11-15 17:11:28 2019-11-15 17:12:32 t 1 1 173051 595 0.00 2019-11-15 17:12:40 2019-11-15 17:13:35 t 1 1 173052 595 0.00 2019-11-15 17:13:55 2019-11-15 17:15:00 t 1 1 173054 585 0.00 2019-11-15 16:57:43 2019-11-15 17:16:14 t 1 1 173055 566 0.00 2019-11-15 17:09:05 2019-11-15 17:16:33 t 1 1 173058 562 0.00 2019-11-15 17:17:29 2019-11-15 17:17:53 t 1 1 173065 485 0.00 2019-11-15 17:09:37 2019-11-15 17:23:32 t 1 1 173067 220 0.00 2019-11-15 17:14:07 2019-11-15 17:24:31 t 1 2 173071 595 0.00 2019-11-15 17:25:30 2019-11-15 17:27:00 t 1 1 173075 637 0.00 2019-11-15 17:31:26 2019-11-15 17:32:34 t 1 1 173080 510 0.00 2019-11-15 17:08:48 2019-11-15 17:36:25 t 1 1 173082 490 0.00 2019-11-15 17:31:29 2019-11-15 17:36:34 t 1 1 173083 595 0.00 2019-11-15 17:37:29 2019-11-15 17:37:47 t 1 1 173085 488 0.00 2019-11-15 17:35:05 2019-11-15 17:38:38 t 1 1 173090 422 0.00 2019-11-15 17:39:04 2019-11-15 17:40:57 t 1 1 173091 422 0.00 2019-11-15 17:41:04 2019-11-15 17:41:22 t 1 1 173094 516 0.00 2019-11-15 17:30:35 2019-11-15 17:44:15 t 1 1 173095 488 0.00 2019-11-15 17:44:26 2019-11-15 17:45:07 t 1 1 173097 587 0.00 2019-11-15 17:13:11 2019-11-15 17:46:21 t 1 1 173098 422 0.00 2019-11-15 17:46:22 2019-11-15 17:46:47 t 1 1 173102 562 0.00 2019-11-15 17:49:49 2019-11-15 17:50:11 t 1 1 173103 544 0.00 2019-11-15 17:40:20 2019-11-15 17:50:26 t 1 1 173106 619 0.00 2019-11-15 17:45:17 2019-11-15 17:52:20 t 1 1 173110 597 0.00 2019-11-15 17:44:19 2019-11-15 17:55:29 t 1 1 173114 595 0.00 2019-11-15 17:57:03 2019-11-15 17:57:25 t 1 1 173117 562 0.00 2019-11-15 18:00:45 2019-11-15 18:01:20 t 1 1 173119 595 0.00 2019-11-15 17:59:49 2019-11-15 18:01:59 t 1 1 173120 595 0.00 2019-11-15 18:02:08 2019-11-15 18:02:30 t 1 1 173122 635 0.00 2019-11-15 17:34:02 2019-11-15 18:02:54 t 1 1 173123 422 0.00 2019-11-15 18:03:07 2019-11-15 18:03:21 t 1 1 173125 660 0.00 2019-11-15 17:56:42 2019-11-15 18:03:42 t 1 1 173130 564 0.00 2019-11-15 18:04:26 2019-11-15 18:10:52 t 1 1 173134 544 0.00 2019-11-15 17:51:20 2019-11-15 18:12:02 t 1 1 173136 220 0.00 2019-11-15 17:40:44 2019-11-15 18:12:49 t 1 2 173142 595 0.00 2019-11-15 18:14:16 2019-11-15 18:14:52 t 1 1 173144 422 0.00 2019-11-15 18:17:12 2019-11-15 18:17:54 t 1 1 173146 645 0.00 2019-11-15 18:18:05 2019-11-15 18:19:18 t 1 1 173147 220 0.00 2019-11-15 18:18:49 2019-11-15 18:19:20 t 1 1 173151 566 0.00 2019-11-15 18:13:17 2019-11-15 18:21:51 t 1 1 173152 585 0.00 2019-11-15 18:21:51 2019-11-15 18:23:15 t 1 1 173155 585 0.00 2019-11-15 18:23:15 2019-11-15 18:25:35 t 1 1 173156 220 0.00 2019-11-15 18:26:27 2019-11-15 18:26:41 t 1 1 173159 566 0.00 2019-11-15 18:21:51 2019-11-15 18:28:54 t 1 1 173160 597 0.00 2019-11-15 17:56:50 2019-11-15 18:29:40 t 1 1 173164 516 0.00 2019-11-15 18:22:33 2019-11-15 18:31:33 t 1 1 173167 422 0.00 2019-11-15 18:31:55 2019-11-15 18:32:04 t 1 1 173170 595 0.00 2019-11-15 18:36:57 2019-11-15 18:37:05 t 1 1 173174 566 0.00 2019-11-15 18:28:54 2019-11-15 18:40:04 t 1 1 173177 422 0.00 2019-11-15 18:42:22 2019-11-15 18:42:44 t 1 1 173184 637 0.00 2019-11-15 17:32:35 2019-11-15 18:48:09 t 1 1 173186 566 0.00 2019-11-15 18:40:04 2019-11-15 18:48:38 t 1 1 173191 422 0.00 2019-11-15 18:48:15 2019-11-15 18:49:57 t 1 1 173206 645 0.00 2019-11-15 18:56:45 2019-11-15 18:58:19 t 1 1 173212 422 0.00 2019-11-15 19:00:57 2019-11-15 19:01:40 t 1 1 173213 488 0.00 2019-11-15 18:58:45 2019-11-15 19:03:03 t 1 1 173219 595 0.00 2019-11-15 19:07:33 2019-11-15 19:07:43 t 1 1 173221 595 0.00 2019-11-15 19:08:23 2019-11-15 19:08:46 t 1 1 173163 562 0.00 2019-11-15 18:30:29 2019-11-15 18:31:04 t 1 1 173165 412 0.00 2019-11-15 16:06:30 2019-11-15 18:31:51 t 1 1 173166 488 0.00 2019-11-15 18:12:00 2019-11-15 18:32:01 t 1 1 173171 220 0.00 2019-11-15 18:36:57 2019-11-15 18:37:11 t 1 1 173178 595 0.00 2019-11-15 18:42:35 2019-11-15 18:42:52 t 1 1 173183 220 0.00 2019-11-15 18:47:27 2019-11-15 18:47:42 t 1 1 173185 595 0.00 2019-11-15 18:47:55 2019-11-15 18:48:11 t 1 1 173189 562 0.00 2019-11-15 18:48:59 2019-11-15 18:49:22 t 1 1 173192 538 0.00 2019-11-15 17:56:39 2019-11-15 18:50:33 t 1 1 173194 520 0.00 2019-11-15 18:50:44 2019-11-15 18:51:48 t 1 1 173195 422 0.00 2019-11-15 18:51:52 2019-11-15 18:52:06 t 1 1 173197 637 0.00 2019-11-15 18:48:22 2019-11-15 18:52:23 t 1 1 173198 595 0.00 2019-11-15 18:53:11 2019-11-15 18:53:29 t 1 1 173199 422 0.00 2019-11-15 18:53:31 2019-11-15 18:54:28 t 1 1 173201 595 0.00 2019-11-15 18:55:37 2019-11-15 18:55:54 t 1 1 173202 566 0.00 2019-11-15 18:48:38 2019-11-15 18:56:20 t 1 1 173203 595 0.00 2019-11-15 18:57:14 2019-11-15 18:57:24 t 1 1 173208 566 0.00 2019-11-15 18:56:20 2019-11-15 18:59:58 t 1 1 173209 562 0.00 2019-11-15 18:59:48 2019-11-15 19:00:13 t 1 1 173210 422 0.00 2019-11-15 19:00:03 2019-11-15 19:00:39 t 1 1 173211 587 0.00 2019-11-15 18:23:40 2019-11-15 19:01:36 t 1 1 173214 595 0.00 2019-11-15 19:02:52 2019-11-15 19:03:15 t 1 1 173215 422 0.00 2019-11-15 19:03:24 2019-11-15 19:04:11 t 1 1 173216 422 0.00 2019-11-15 19:04:59 2019-11-15 19:05:06 t 1 1 173218 516 0.00 2019-11-15 18:51:42 2019-11-15 19:06:42 t 1 1 173220 220 0.00 2019-11-15 19:08:26 2019-11-15 19:08:34 t 1 1 173230 595 0.00 2019-11-15 19:16:59 2019-11-15 19:17:33 t 1 1 173233 587 0.00 2019-11-15 19:01:36 2019-11-15 19:18:10 t 1 1 173237 562 0.00 2019-11-15 19:21:13 2019-11-15 19:21:38 t 1 1 173238 595 0.00 2019-11-15 19:22:09 2019-11-15 19:22:16 t 1 1 173240 587 0.00 2019-11-15 19:18:10 2019-11-15 19:24:32 t 1 1 173242 585 0.00 2019-11-15 18:56:18 2019-11-15 19:27:11 t 1 1 173243 595 0.00 2019-11-15 19:27:10 2019-11-15 19:27:21 t 1 1 173245 637 0.00 2019-11-15 19:14:54 2019-11-15 19:27:40 t 1 1 173256 562 0.00 2019-11-15 19:35:10 2019-11-15 19:36:40 t 1 1 173257 595 0.00 2019-11-15 19:37:33 2019-11-15 19:37:41 t 1 1 173260 562 0.00 2019-11-15 19:38:17 2019-11-15 19:39:35 t 1 1 173261 220 0.00 2019-11-15 19:39:56 2019-11-15 19:40:11 t 1 1 173267 591 0.00 2019-11-15 19:08:44 2019-11-15 19:43:51 t 1 1 173268 595 0.00 2019-11-15 19:43:59 2019-11-15 19:44:01 t 1 1 173269 595 0.00 2019-11-15 19:44:12 2019-11-15 19:44:36 t 1 1 173273 587 0.00 2019-11-15 19:40:08 2019-11-15 19:46:51 t 1 1 173278 566 0.00 2019-11-15 19:27:49 2019-11-15 19:51:10 t 1 1 173281 660 0.00 2019-11-15 19:50:14 2019-11-15 19:54:04 t 1 1 173283 510 0.00 2019-11-15 19:42:39 2019-11-15 19:55:30 t 1 1 173286 422 0.00 2019-11-15 19:53:22 2019-11-15 19:57:52 t 1 1 173287 422 0.00 2019-11-15 19:58:24 2019-11-15 19:59:07 t 1 1 173289 607 0.00 2019-11-15 19:21:08 2019-11-15 20:01:00 t 1 1 173291 220 0.00 2019-11-15 20:00:59 2019-11-15 20:01:13 t 1 1 173296 422 0.00 2019-11-15 20:06:33 2019-11-15 20:06:47 t 1 1 173297 422 0.00 2019-11-15 20:06:54 2019-11-15 20:07:56 t 1 1 173298 566 0.00 2019-11-15 19:51:10 2019-11-15 20:08:22 t 1 1 173306 422 0.00 2019-11-15 20:11:16 2019-11-15 20:14:21 t 1 1 173310 422 0.00 2019-11-15 20:17:05 2019-11-15 20:18:09 t 1 1 173311 422 0.00 2019-11-15 20:18:16 2019-11-15 20:19:18 t 1 1 173312 597 0.00 2019-11-15 20:02:52 2019-11-15 20:20:00 t 1 1 173313 645 0.00 2019-11-15 19:30:05 2019-11-15 20:21:08 t 1 1 173315 510 0.00 2019-11-15 19:55:30 2019-11-15 20:21:54 t 1 1 173318 562 0.00 2019-11-15 20:25:06 2019-11-15 20:26:13 t 1 1 173320 422 0.00 2019-11-15 20:28:20 2019-11-15 20:28:51 t 1 1 173322 635 0.00 2019-11-15 20:19:42 2019-11-15 20:30:16 t 1 1 173325 220 0.00 2019-11-15 20:32:34 2019-11-15 20:32:36 t 1 1 173328 623 0.00 2019-11-15 20:33:19 2019-11-15 20:34:04 t 1 1 173334 422 0.00 2019-11-15 20:35:59 2019-11-15 20:37:12 t 1 1 173335 623 0.00 2019-11-15 20:36:34 2019-11-15 20:37:50 t 1 1 173338 220 0.00 2019-11-15 20:34:25 2019-11-15 20:39:10 t 1 1 173341 595 0.00 2019-11-15 20:36:34 2019-11-15 20:39:17 t 1 1 173343 622 0.00 2019-11-15 20:35:25 2019-11-15 20:39:19 t 1 1 173345 544 0.00 2019-11-15 20:17:44 2019-11-15 20:42:05 t 1 1 173346 622 0.00 2019-11-15 20:39:18 2019-11-15 20:42:20 t 1 1 173349 623 0.00 2019-11-15 20:39:27 2019-11-15 20:44:53 t 1 1 173350 566 0.00 2019-11-15 20:08:22 2019-11-15 20:45:23 t 1 1 173351 595 0.00 2019-11-15 20:41:08 2019-11-15 20:45:41 t 1 1 173353 542 0.00 2019-11-15 20:46:01 2019-11-15 20:46:01 f 1 1 173355 422 0.00 2019-11-15 20:45:58 2019-11-15 20:46:19 t 1 1 173357 585 0.00 2019-11-15 20:38:37 2019-11-15 20:47:22 t 1 1 173359 623 0.00 2019-11-15 20:47:45 2019-11-15 20:47:48 t 1 1 173361 623 0.00 2019-11-15 20:48:12 2019-11-15 20:48:26 t 1 1 173366 422 0.00 2019-11-15 20:48:59 2019-11-15 20:49:26 t 1 1 173370 595 0.00 2019-11-15 20:46:41 2019-11-15 20:50:07 t 1 1 173371 512 0.00 2019-11-15 20:49:20 2019-11-15 20:50:41 t 1 1 173375 422 0.00 2019-11-15 20:51:48 2019-11-15 20:52:01 t 1 1 173378 623 0.00 2019-11-15 20:52:23 2019-11-15 20:52:55 t 1 1 173379 422 0.00 2019-11-15 20:53:18 2019-11-15 20:53:37 t 1 1 173384 562 0.00 2019-11-15 20:54:42 2019-11-15 20:56:48 t 1 1 173387 645 0.00 2019-11-15 20:56:20 2019-11-15 20:58:17 t 1 1 173388 619 0.00 2019-11-15 20:35:04 2019-11-15 20:58:36 t 1 1 173390 623 0.00 2019-11-15 20:58:21 2019-11-15 20:58:40 t 1 1 173395 220 0.00 2019-11-15 20:58:01 2019-11-15 21:00:11 t 1 1 173398 623 0.00 2019-11-15 21:00:21 2019-11-15 21:00:29 t 1 1 173399 623 0.00 2019-11-15 21:01:06 2019-11-15 21:01:19 t 1 1 173400 623 0.00 2019-11-15 21:01:25 2019-11-15 21:01:26 t 1 1 173402 422 0.00 2019-11-15 21:00:07 2019-11-15 21:02:05 t 1 1 173404 623 0.00 2019-11-15 21:03:11 2019-11-15 21:03:11 t 1 1 173405 544 0.00 2019-11-15 20:42:05 2019-11-15 21:04:22 t 1 1 173407 623 0.00 2019-11-15 21:02:20 2019-11-15 21:04:29 t 1 1 173410 623 0.00 2019-11-15 21:05:49 2019-11-15 21:06:05 t 1 1 173411 430 0.00 2019-11-15 20:51:10 2019-11-15 21:06:48 t 1 1 173413 623 0.00 2019-11-15 21:06:09 2019-11-15 21:07:29 t 1 1 173418 623 0.00 2019-11-15 21:10:06 2019-11-15 21:10:07 t 1 1 173420 220 0.00 2019-11-15 21:10:08 2019-11-15 21:10:42 t 1 1 173428 623 0.00 2019-11-15 21:12:22 2019-11-15 21:12:28 t 1 1 173431 422 0.00 2019-11-15 21:13:11 2019-11-15 21:13:19 t 1 1 173433 220 0.00 2019-11-15 21:11:21 2019-11-15 21:13:29 t 1 1 173437 220 0.00 2019-11-15 21:14:46 2019-11-15 21:15:21 t 1 1 173442 430 0.00 2019-11-15 21:12:29 2019-11-15 21:17:00 t 1 1 173443 562 0.00 2019-11-15 21:17:06 2019-11-15 21:17:33 t 1 1 173181 595 0.00 2019-11-15 18:47:07 2019-11-15 18:47:14 t 1 1 173182 619 0.00 2019-11-15 18:30:07 2019-11-15 18:47:37 t 1 1 173187 595 0.00 2019-11-15 18:48:21 2019-11-15 18:48:44 t 1 1 173188 595 0.00 2019-11-15 18:48:56 2019-11-15 18:49:18 t 1 1 173190 619 0.00 2019-11-15 18:47:37 2019-11-15 18:49:46 t 1 1 173193 578 0.00 2019-11-15 18:43:02 2019-11-15 18:51:43 t 1 1 173196 595 0.00 2019-11-15 18:51:56 2019-11-15 18:52:16 t 1 1 173200 422 0.00 2019-11-15 18:54:36 2019-11-15 18:55:24 t 1 1 173204 481 0.00 2019-11-15 17:34:28 2019-11-15 18:57:25 t 1 1 173205 220 0.00 2019-11-15 18:57:57 2019-11-15 18:58:12 t 1 1 173207 595 0.00 2019-11-15 18:59:11 2019-11-15 18:59:29 t 1 1 173217 566 0.00 2019-11-15 18:59:58 2019-11-15 19:06:26 t 1 1 173223 619 0.00 2019-11-15 19:09:11 2019-11-15 19:11:35 t 1 1 173225 595 0.00 2019-11-15 19:12:39 2019-11-15 19:12:49 t 1 1 173227 597 0.00 2019-11-15 19:11:58 2019-11-15 19:15:19 t 1 1 173228 589 0.00 2019-11-15 19:07:22 2019-11-15 19:15:39 t 1 1 173229 422 0.00 2019-11-15 19:13:28 2019-11-15 19:17:08 t 1 1 173231 445 0.00 2019-11-15 19:12:36 2019-11-15 19:17:41 t 1 1 173235 422 0.00 2019-11-15 19:19:25 2019-11-15 19:20:51 t 1 1 173239 422 0.00 2019-11-15 19:22:41 2019-11-15 19:23:30 t 1 1 173241 538 0.00 2019-11-15 18:50:33 2019-11-15 19:25:50 t 1 1 173244 481 0.00 2019-11-15 18:57:25 2019-11-15 19:27:32 t 1 1 173247 220 0.00 2019-11-15 19:29:26 2019-11-15 19:29:41 t 1 1 173250 562 0.00 2019-11-15 19:32:04 2019-11-15 19:32:24 t 1 1 173251 595 0.00 2019-11-15 19:32:24 2019-11-15 19:32:32 t 1 1 173253 422 0.00 2019-11-15 19:33:55 2019-11-15 19:34:02 t 1 1 173255 445 0.00 2019-11-15 19:21:54 2019-11-15 19:35:19 t 1 1 173258 587 0.00 2019-11-15 19:24:32 2019-11-15 19:38:13 t 1 1 173259 597 0.00 2019-11-15 19:36:12 2019-11-15 19:39:15 t 1 1 173262 595 0.00 2019-11-15 19:40:49 2019-11-15 19:41:09 t 1 1 173263 510 0.00 2019-11-15 18:41:45 2019-11-15 19:42:39 t 1 1 173265 595 0.00 2019-11-15 19:43:18 2019-11-15 19:43:38 t 1 1 173270 660 0.00 2019-11-15 19:33:37 2019-11-15 19:44:47 t 1 1 173275 562 0.00 2019-11-15 19:48:57 2019-11-15 19:49:22 t 1 1 173277 220 0.00 2019-11-15 19:50:25 2019-11-15 19:50:40 t 1 1 173280 445 0.00 2019-11-15 19:35:19 2019-11-15 19:53:29 t 1 1 173288 649 0.00 2019-11-15 19:55:11 2019-11-15 20:00:50 t 1 1 173293 562 0.00 2019-11-15 20:03:26 2019-11-15 20:04:53 t 1 1 173295 422 0.00 2019-11-15 20:05:13 2019-11-15 20:06:26 t 1 1 173300 595 0.00 2019-11-15 20:08:48 2019-11-15 20:09:10 t 1 1 173301 611 0.00 2019-11-15 19:57:53 2019-11-15 20:09:50 t 1 1 173304 220 0.00 2019-11-15 20:11:31 2019-11-15 20:11:46 t 1 1 173307 595 0.00 2019-11-15 20:11:03 2019-11-15 20:15:34 t 1 1 173309 544 0.00 2019-11-15 19:58:15 2019-11-15 20:17:44 t 1 1 173316 220 0.00 2019-11-15 20:22:04 2019-11-15 20:22:19 t 1 1 173317 637 0.00 2019-11-15 19:27:40 2019-11-15 20:23:55 t 1 1 173323 562 0.00 2019-11-15 20:28:31 2019-11-15 20:31:24 t 1 1 173326 623 0.00 2019-11-15 20:32:19 2019-11-15 20:33:19 t 1 1 173331 645 0.00 2019-11-15 20:28:30 2019-11-15 20:35:38 t 1 1 173333 645 0.00 2019-11-15 20:35:44 2019-11-15 20:35:52 t 1 1 173337 422 0.00 2019-11-15 20:37:30 2019-11-15 20:38:46 t 1 1 173339 645 0.00 2019-11-15 20:38:33 2019-11-15 20:39:11 t 1 1 173344 595 0.00 2019-11-15 20:39:30 2019-11-15 20:39:42 t 1 1 173347 562 0.00 2019-11-15 20:41:28 2019-11-15 20:42:43 t 1 1 173358 623 0.00 2019-11-15 20:46:44 2019-11-15 20:47:23 t 1 1 173363 623 0.00 2019-11-15 20:48:40 2019-11-15 20:48:48 t 1 1 173364 551 0.00 2019-11-15 20:26:27 2019-11-15 20:49:15 t 1 1 173368 623 0.00 2019-11-15 20:49:42 2019-11-15 20:49:48 t 1 1 173380 595 0.00 2019-11-15 20:53:48 2019-11-15 20:53:55 t 1 1 173381 645 0.00 2019-11-15 20:45:46 2019-11-15 20:54:20 t 1 1 173383 485 0.00 2019-11-15 20:45:56 2019-11-15 20:55:15 t 1 1 173386 623 0.00 2019-11-15 20:53:46 2019-11-15 20:58:16 t 1 1 173392 623 0.00 2019-11-15 20:59:10 2019-11-15 20:59:11 t 1 1 173393 645 0.00 2019-11-15 20:58:39 2019-11-15 20:59:53 t 1 1 173396 623 0.00 2019-11-15 21:00:03 2019-11-15 21:00:21 t 1 1 173403 623 0.00 2019-11-15 21:02:34 2019-11-15 21:02:35 t 1 1 173409 623 0.00 2019-11-15 21:05:21 2019-11-15 21:05:22 t 1 1 173412 562 0.00 2019-11-15 21:06:37 2019-11-15 21:06:48 t 1 1 173414 578 0.00 2019-11-15 18:51:43 2019-11-15 21:07:54 t 1 1 173415 623 0.00 2019-11-15 21:06:38 2019-11-15 21:08:34 t 1 1 173421 544 0.00 2019-11-15 21:06:06 2019-11-15 21:10:44 t 1 1 173423 623 0.00 2019-11-15 21:09:47 2019-11-15 21:11:29 t 1 1 173424 623 0.00 2019-11-15 21:11:42 2019-11-15 21:11:43 t 1 1 173426 220 0.00 2019-11-15 21:10:42 2019-11-15 21:12:02 t 1 1 173427 623 0.00 2019-11-15 21:12:22 2019-11-15 21:12:22 t 1 1 173429 220 0.00 2019-11-15 21:12:02 2019-11-15 21:12:38 t 1 1 173430 220 0.00 2019-11-15 21:12:38 2019-11-15 21:13:13 t 1 1 173435 220 0.00 2019-11-15 21:13:47 2019-11-15 21:14:46 t 1 1 173438 595 0.00 2019-11-15 21:10:51 2019-11-15 21:15:26 t 1 1 173439 220 0.00 2019-11-15 21:15:21 2019-11-15 21:15:57 t 1 1 173444 619 0.00 2019-11-15 21:15:53 2019-11-15 21:17:49 t 1 1 173446 622 0.00 2019-11-15 21:16:48 2019-11-15 21:18:12 t 1 1 173450 578 0.00 2019-11-15 21:07:54 2019-11-15 21:21:42 t 1 1 173451 220 0.00 2019-11-15 21:16:30 2019-11-15 21:21:43 t 1 1 173455 595 0.00 2019-11-15 21:21:04 2019-11-15 21:23:49 t 1 1 173456 422 0.00 2019-11-15 21:23:50 2019-11-15 21:25:29 t 1 1 173457 595 0.00 2019-11-15 21:26:05 2019-11-15 21:26:18 t 1 1 173458 595 0.00 2019-11-15 21:26:33 2019-11-15 21:26:56 t 1 1 173463 220 0.00 2019-11-15 21:32:13 2019-11-15 21:32:22 t 1 1 173465 645 0.00 2019-11-15 21:31:43 2019-11-15 21:33:55 t 1 1 173466 595 0.00 2019-11-15 21:34:04 2019-11-15 21:34:22 t 1 1 173467 597 0.00 2019-11-15 21:23:30 2019-11-15 21:35:04 t 1 1 173468 622 0.00 2019-11-15 21:18:12 2019-11-15 21:38:39 t 1 1 173470 562 0.00 2019-11-15 21:38:45 2019-11-15 21:39:11 t 1 1 173471 585 0.00 2019-11-15 21:36:16 2019-11-15 21:39:38 t 1 1 173475 220 0.00 2019-11-15 21:34:26 2019-11-15 21:42:44 t 1 1 173479 645 0.00 2019-11-15 21:38:01 2019-11-15 21:44:09 t 1 1 173484 595 0.00 2019-11-15 21:34:53 2019-11-15 21:46:32 t 1 1 173486 654 0.00 2019-11-15 21:44:10 2019-11-15 21:46:55 t 1 1 173489 562 0.00 2019-11-15 21:49:35 2019-11-15 21:49:56 t 1 1 173490 585 0.00 2019-11-15 21:46:50 2019-11-15 21:50:19 t 1 1 173491 422 0.00 2019-11-15 21:52:12 2019-11-15 21:52:26 t 1 1 173492 220 0.00 2019-11-15 21:43:18 2019-11-15 21:53:15 t 1 1 173495 585 0.00 2019-11-15 21:50:41 2019-11-15 21:54:48 t 1 1 173496 488 0.00 2019-11-15 21:49:54 2019-11-15 21:55:44 t 1 1 173501 551 0.00 2019-11-15 21:46:23 2019-11-15 22:00:10 t 1 1 173507 220 0.00 2019-11-15 22:02:26 2019-11-15 22:03:03 t 1 1 173222 562 0.00 2019-11-15 19:10:28 2019-11-15 19:10:55 t 1 1 173224 445 0.00 2019-11-15 16:46:56 2019-11-15 19:12:36 t 1 1 173226 637 0.00 2019-11-15 18:56:49 2019-11-15 19:14:54 t 1 1 173232 516 0.00 2019-11-15 19:06:42 2019-11-15 19:18:05 t 1 1 173234 220 0.00 2019-11-15 19:18:55 2019-11-15 19:19:05 t 1 1 173236 445 0.00 2019-11-15 19:19:04 2019-11-15 19:21:25 t 1 1 173246 566 0.00 2019-11-15 19:06:26 2019-11-15 19:27:49 t 1 1 173248 490 0.00 2019-11-15 19:26:59 2019-11-15 19:30:40 t 1 1 173249 422 0.00 2019-11-15 19:25:51 2019-11-15 19:32:13 t 1 1 173252 585 0.00 2019-11-15 19:27:11 2019-11-15 19:33:51 t 1 1 173254 490 0.00 2019-11-15 19:32:42 2019-11-15 19:35:14 t 1 1 173264 422 0.00 2019-11-15 19:34:43 2019-11-15 19:43:37 t 1 1 173266 595 0.00 2019-11-15 19:43:38 2019-11-15 19:43:45 t 1 1 173271 619 0.00 2019-11-15 19:32:30 2019-11-15 19:45:57 t 1 1 173272 595 0.00 2019-11-15 19:46:06 2019-11-15 19:46:24 t 1 1 173274 544 0.00 2019-11-15 18:13:21 2019-11-15 19:47:35 t 1 1 173276 660 0.00 2019-11-15 19:44:47 2019-11-15 19:50:14 t 1 1 173279 564 0.00 2019-11-15 18:10:52 2019-11-15 19:52:36 t 1 1 173282 581 0.00 2019-11-15 19:51:03 2019-11-15 19:55:03 t 1 1 173284 562 0.00 2019-11-15 19:51:37 2019-11-15 19:55:47 t 1 1 173285 445 0.00 2019-11-15 19:53:29 2019-11-15 19:57:29 t 1 1 173290 623 0.00 2019-11-15 19:59:06 2019-11-15 20:01:08 t 1 1 173292 562 0.00 2019-11-15 20:01:06 2019-11-15 20:01:37 t 1 1 173294 422 0.00 2019-11-15 20:02:58 2019-11-15 20:04:54 t 1 1 173299 595 0.00 2019-11-15 19:48:03 2019-11-15 20:08:39 t 1 1 173302 562 0.00 2019-11-15 20:04:52 2019-11-15 20:10:03 t 1 1 173303 520 0.00 2019-11-15 19:53:33 2019-11-15 20:10:21 t 1 1 173305 627 0.00 2019-11-15 20:07:58 2019-11-15 20:12:07 t 1 1 173308 562 0.00 2019-11-15 20:15:10 2019-11-15 20:15:51 t 1 1 173314 562 0.00 2019-11-15 20:16:32 2019-11-15 20:21:27 t 1 1 173319 551 0.00 2019-11-15 16:50:19 2019-11-15 20:26:27 t 1 1 173321 585 0.00 2019-11-15 20:25:35 2019-11-15 20:30:04 t 1 1 173324 220 0.00 2019-11-15 20:24:37 2019-11-15 20:32:35 t 1 1 173327 220 0.00 2019-11-15 20:32:44 2019-11-15 20:33:45 t 1 1 173329 591 0.00 2019-11-15 19:43:51 2019-11-15 20:34:24 t 1 1 173330 595 0.00 2019-11-15 20:22:31 2019-11-15 20:34:51 t 1 1 173332 623 0.00 2019-11-15 20:34:33 2019-11-15 20:35:42 t 1 1 173336 481 0.00 2019-11-15 19:27:32 2019-11-15 20:38:41 t 1 1 173340 623 0.00 2019-11-15 20:38:13 2019-11-15 20:39:12 t 1 1 173342 220 0.00 2019-11-15 20:39:09 2019-11-15 20:39:18 t 1 1 173348 637 0.00 2019-11-15 20:24:51 2019-11-15 20:43:05 t 1 1 173352 645 0.00 2019-11-15 20:39:51 2019-11-15 20:45:47 t 1 1 173354 623 0.00 2019-11-15 20:45:37 2019-11-15 20:46:14 t 1 1 173356 623 0.00 2019-11-15 20:46:14 2019-11-15 20:46:39 t 1 1 173360 623 0.00 2019-11-15 20:47:53 2019-11-15 20:47:56 t 1 1 173362 623 0.00 2019-11-15 20:48:32 2019-11-15 20:48:34 t 1 1 173365 512 0.00 2019-11-15 20:48:10 2019-11-15 20:49:21 t 1 1 173367 220 0.00 2019-11-15 20:40:28 2019-11-15 20:49:39 t 1 1 173369 220 0.00 2019-11-15 20:49:39 2019-11-15 20:49:56 t 1 1 173372 623 0.00 2019-11-15 20:50:49 2019-11-15 20:50:51 t 1 1 173373 562 0.00 2019-11-15 20:49:14 2019-11-15 20:51:08 t 1 1 173374 623 0.00 2019-11-15 20:51:39 2019-11-15 20:51:53 t 1 1 173376 623 0.00 2019-11-15 20:52:11 2019-11-15 20:52:12 t 1 1 173377 623 0.00 2019-11-15 20:50:58 2019-11-15 20:52:28 t 1 1 173382 422 0.00 2019-11-15 20:53:42 2019-11-15 20:54:29 t 1 1 173385 220 0.00 2019-11-15 20:50:55 2019-11-15 20:57:45 t 1 1 173389 645 0.00 2019-11-15 20:58:17 2019-11-15 20:58:39 t 1 1 173391 623 0.00 2019-11-15 20:59:02 2019-11-15 20:59:03 t 1 1 173394 623 0.00 2019-11-15 20:59:51 2019-11-15 20:59:57 t 1 1 173397 220 0.00 2019-11-15 21:00:11 2019-11-15 21:00:26 t 1 1 173401 623 0.00 2019-11-15 21:01:56 2019-11-15 21:02:01 t 1 1 173406 623 0.00 2019-11-15 21:04:27 2019-11-15 21:04:28 t 1 1 173408 623 0.00 2019-11-15 21:04:39 2019-11-15 21:04:46 t 1 1 173416 595 0.00 2019-11-15 20:54:09 2019-11-15 21:09:06 t 1 1 173417 595 0.00 2019-11-15 21:09:18 2019-11-15 21:09:41 t 1 1 173419 220 0.00 2019-11-15 21:00:54 2019-11-15 21:10:08 t 1 1 173422 422 0.00 2019-11-15 21:10:56 2019-11-15 21:11:21 t 1 1 173425 422 0.00 2019-11-15 21:11:35 2019-11-15 21:11:53 t 1 1 173432 587 0.00 2019-11-15 21:09:59 2019-11-15 21:13:22 t 1 1 173434 220 0.00 2019-11-15 21:13:13 2019-11-15 21:13:47 t 1 1 173436 422 0.00 2019-11-15 21:14:19 2019-11-15 21:15:18 t 1 1 173440 220 0.00 2019-11-15 21:15:56 2019-11-15 21:16:30 t 1 1 173441 622 0.00 2019-11-15 21:13:17 2019-11-15 21:16:49 t 1 1 173445 591 0.00 2019-11-15 20:43:09 2019-11-15 21:18:05 t 1 1 173452 220 0.00 2019-11-15 21:21:43 2019-11-15 21:21:57 t 1 1 173459 562 0.00 2019-11-15 21:27:51 2019-11-15 21:28:27 t 1 1 173460 595 0.00 2019-11-15 21:30:44 2019-11-15 21:30:52 t 1 1 173461 587 0.00 2019-11-15 21:29:38 2019-11-15 21:31:45 t 1 1 173462 220 0.00 2019-11-15 21:22:18 2019-11-15 21:32:13 t 1 1 173464 595 0.00 2019-11-15 21:32:01 2019-11-15 21:32:23 t 1 1 173472 622 0.00 2019-11-15 21:39:15 2019-11-15 21:40:20 t 1 1 173474 654 0.00 2019-11-15 21:41:22 2019-11-15 21:42:30 t 1 1 173476 220 0.00 2019-11-15 21:42:44 2019-11-15 21:42:52 t 1 1 173477 487 0.00 2019-11-15 21:05:14 2019-11-15 21:44:02 t 1 2 173481 422 0.00 2019-11-15 21:43:35 2019-11-15 21:45:33 t 1 1 173483 551 0.00 2019-11-15 20:49:15 2019-11-15 21:46:23 t 1 1 173485 578 0.00 2019-11-15 21:21:42 2019-11-15 21:46:45 t 1 1 173488 591 0.00 2019-11-15 21:25:11 2019-11-15 21:49:52 t 1 1 173499 660 0.00 2019-11-15 21:14:38 2019-11-15 21:59:15 t 1 1 173500 637 0.00 2019-11-15 20:51:43 2019-11-15 21:59:54 t 1 1 173503 220 0.00 2019-11-15 21:58:44 2019-11-15 22:01:09 t 1 1 173504 220 0.00 2019-11-15 22:01:08 2019-11-15 22:01:52 t 1 1 173506 412 0.00 2019-11-15 18:31:51 2019-11-15 22:02:40 t 1 1 173508 562 0.00 2019-11-15 22:02:58 2019-11-15 22:03:08 t 1 1 173509 220 0.00 2019-11-15 22:03:03 2019-11-15 22:03:35 t 1 1 173511 220 0.00 2019-11-15 22:03:46 2019-11-15 22:03:54 t 1 1 173519 483 0.00 2019-11-15 21:16:38 2019-11-15 22:07:02 t 1 1 173520 220 0.00 2019-11-15 22:06:58 2019-11-15 22:07:30 t 1 1 173523 591 0.00 2019-11-15 22:02:27 2019-11-15 22:08:36 t 1 1 173525 562 0.00 2019-11-15 22:08:40 2019-11-15 22:09:12 t 1 1 173526 220 0.00 2019-11-15 22:08:29 2019-11-15 22:09:34 t 1 1 173528 637 0.00 2019-11-15 22:02:23 2019-11-15 22:10:05 t 1 1 173533 587 0.00 2019-11-15 22:04:21 2019-11-15 22:11:51 t 1 1 173536 422 0.00 2019-11-15 22:08:07 2019-11-15 22:12:50 t 1 1 173539 562 0.00 2019-11-15 22:13:25 2019-11-15 22:13:35 t 1 1 173542 220 0.00 2019-11-15 22:13:29 2019-11-15 22:14:03 t 1 1 173546 220 0.00 2019-11-15 22:14:16 2019-11-15 22:14:51 t 1 1 173447 645 0.00 2019-11-15 21:12:36 2019-11-15 21:18:44 t 1 1 173448 591 0.00 2019-11-15 21:19:22 2019-11-15 21:19:46 t 1 1 173449 595 0.00 2019-11-15 21:15:58 2019-11-15 21:20:33 t 1 1 173453 422 0.00 2019-11-15 21:21:36 2019-11-15 21:22:03 t 1 1 173454 422 0.00 2019-11-15 21:23:33 2019-11-15 21:23:44 t 1 1 173469 422 0.00 2019-11-15 21:25:37 2019-11-15 21:39:01 t 1 1 173473 654 0.00 2019-11-15 21:37:10 2019-11-15 21:41:22 t 1 1 173478 654 0.00 2019-11-15 21:43:55 2019-11-15 21:44:06 t 1 1 173480 566 0.00 2019-11-15 20:45:23 2019-11-15 21:44:10 t 1 1 173482 645 0.00 2019-11-15 21:44:42 2019-11-15 21:45:58 t 1 1 173487 587 0.00 2019-11-15 21:41:02 2019-11-15 21:48:08 t 1 1 173493 220 0.00 2019-11-15 21:53:14 2019-11-15 21:53:29 t 1 1 173494 422 0.00 2019-11-15 21:54:15 2019-11-15 21:54:44 t 1 1 173497 220 0.00 2019-11-15 21:57:59 2019-11-15 21:58:13 t 1 1 173498 220 0.00 2019-11-15 21:58:12 2019-11-15 21:58:44 t 1 1 173502 562 0.00 2019-11-15 22:00:23 2019-11-15 22:00:46 t 1 1 173505 220 0.00 2019-11-15 22:01:52 2019-11-15 22:02:27 t 1 1 173512 587 0.00 2019-11-15 21:51:56 2019-11-15 22:04:07 t 1 1 173513 587 0.00 2019-11-15 22:04:12 2019-11-15 22:04:15 t 1 1 173521 422 0.00 2019-11-15 22:04:30 2019-11-15 22:08:01 t 1 1 173530 562 0.00 2019-11-15 22:11:07 2019-11-15 22:11:13 t 1 1 173531 220 0.00 2019-11-15 22:10:38 2019-11-15 22:11:44 t 1 1 173534 645 0.00 2019-11-15 22:10:31 2019-11-15 22:11:57 t 1 1 173535 220 0.00 2019-11-15 22:11:43 2019-11-15 22:12:18 t 1 1 173537 587 0.00 2019-11-15 22:11:59 2019-11-15 22:12:57 t 1 1 173538 220 0.00 2019-11-15 22:12:18 2019-11-15 22:13:27 t 1 1 173541 595 0.00 2019-11-15 21:48:53 2019-11-15 22:13:50 t 1 1 173543 587 0.00 2019-11-15 22:13:01 2019-11-15 22:14:14 t 1 1 173544 220 0.00 2019-11-15 22:14:03 2019-11-15 22:14:16 t 1 1 173545 622 0.00 2019-11-15 22:09:59 2019-11-15 22:14:46 t 1 1 173547 422 0.00 2019-11-15 22:13:15 2019-11-15 22:14:52 t 1 1 173549 637 0.00 2019-11-15 22:13:36 2019-11-15 22:15:03 t 1 1 173556 422 0.00 2019-11-15 22:16:23 2019-11-15 22:18:11 t 1 1 173561 481 0.00 2019-11-15 20:38:42 2019-11-15 22:22:01 t 1 1 173567 562 0.00 2019-11-15 22:24:07 2019-11-15 22:24:15 t 1 1 173569 220 0.00 2019-11-15 22:23:03 2019-11-15 22:25:27 t 1 1 173572 422 0.00 2019-11-15 22:25:20 2019-11-15 22:26:38 t 1 1 173577 637 0.00 2019-11-15 22:15:19 2019-11-15 22:28:13 t 1 1 173579 637 0.00 2019-11-15 22:28:13 2019-11-15 22:29:21 t 1 1 173580 220 0.00 2019-11-15 22:27:25 2019-11-15 22:30:58 t 1 1 173581 220 0.00 2019-11-15 22:30:58 2019-11-15 22:31:30 t 1 1 173585 412 0.00 2019-11-15 22:02:40 2019-11-15 22:33:24 t 1 1 173591 220 0.00 2019-11-15 22:35:06 2019-11-15 22:35:40 t 1 1 173593 220 0.00 2019-11-15 22:35:56 2019-11-15 22:36:11 t 1 1 173594 623 0.00 2019-11-15 22:35:10 2019-11-15 22:36:36 t 1 1 173598 422 0.00 2019-11-15 22:36:41 2019-11-15 22:38:06 t 1 1 173600 481 0.00 2019-11-15 22:22:01 2019-11-15 22:40:12 t 1 1 173601 623 0.00 2019-11-15 22:42:21 2019-11-15 22:42:28 t 1 1 173604 623 0.00 2019-11-15 22:43:17 2019-11-15 22:43:19 t 1 1 173609 623 0.00 2019-11-15 22:43:27 2019-11-15 22:45:31 t 1 1 173611 627 0.00 2019-11-15 22:24:29 2019-11-15 22:46:15 t 1 1 173612 220 0.00 2019-11-15 22:36:29 2019-11-15 22:46:26 t 1 1 173616 637 0.00 2019-11-15 22:40:14 2019-11-15 22:48:07 t 1 1 173618 570 0.00 2019-11-15 22:49:14 2019-11-15 22:49:14 f 1 1 173619 570 0.00 2019-11-15 22:49:21 2019-11-15 22:49:21 f 1 1 173621 570 0.00 2019-11-15 22:50:23 2019-11-15 22:50:23 f 1 1 173624 449 0.00 2019-11-15 22:44:54 2019-11-15 22:51:26 t 1 1 173638 220 0.00 2019-11-15 23:02:59 2019-11-15 23:04:33 t 1 1 173641 551 0.00 2019-11-15 22:00:10 2019-11-15 23:04:41 t 1 1 173642 622 0.00 2019-11-15 22:44:21 2019-11-15 23:06:53 t 1 1 173645 412 0.00 2019-11-15 22:49:59 2019-11-15 23:07:04 t 1 1 173646 564 0.00 2019-11-15 23:02:20 2019-11-15 23:08:17 t 1 1 173648 621 0.00 2019-11-15 23:04:38 2019-11-15 23:12:23 t 1 1 173650 220 0.00 2019-11-15 23:04:41 2019-11-15 23:14:57 t 1 1 173654 562 0.00 2019-11-15 23:17:16 2019-11-15 23:17:45 t 1 1 173656 633 0.00 2019-11-15 23:18:33 2019-11-15 23:18:40 t 1 1 173658 581 0.00 2019-11-15 22:51:13 2019-11-15 23:20:10 t 1 1 173661 485 0.00 2019-11-15 23:20:35 2019-11-15 23:24:26 t 1 1 173666 645 0.00 2019-11-15 23:10:31 2019-11-15 23:27:26 t 1 1 173675 485 0.00 2019-11-15 23:24:48 2019-11-15 23:32:34 t 1 1 173677 422 0.00 2019-11-15 22:52:06 2019-11-15 23:32:47 t 1 1 173679 551 0.00 2019-11-15 23:04:41 2019-11-15 23:33:46 t 1 1 173685 562 0.00 2019-11-15 23:38:56 2019-11-15 23:39:15 t 1 1 173687 220 0.00 2019-11-15 23:38:40 2019-11-15 23:39:50 t 1 1 173688 587 0.00 2019-11-15 23:35:10 2019-11-15 23:40:24 t 1 1 173693 422 0.00 2019-11-15 23:38:58 2019-11-15 23:43:52 t 1 1 173698 512 0.00 2019-11-15 23:39:17 2019-11-15 23:46:07 t 1 1 173699 220 0.00 2019-11-15 23:45:26 2019-11-15 23:46:31 t 1 1 173704 422 0.00 2019-11-15 23:48:02 2019-11-15 23:48:12 t 1 1 173706 562 0.00 2019-11-15 23:49:38 2019-11-15 23:50:00 t 1 1 173707 622 0.00 2019-11-15 23:06:53 2019-11-15 23:50:21 t 1 1 173712 220 0.00 2019-11-15 23:57:03 2019-11-15 23:57:35 t 1 1 173713 422 0.00 2019-11-15 23:57:51 2019-11-15 23:58:47 t 1 1 173715 562 0.00 2019-11-16 00:00:20 2019-11-16 00:00:50 t 1 1 173720 220 0.00 2019-11-16 00:07:33 2019-11-16 00:07:48 t 1 1 173724 562 0.00 2019-11-16 00:11:07 2019-11-16 00:11:43 t 1 1 173726 566 0.00 2019-11-15 23:21:37 2019-11-16 00:16:25 t 1 1 173728 445 0.00 2019-11-15 20:09:18 2019-11-16 00:21:18 t 1 1 173733 637 0.00 2019-11-15 23:58:52 2019-11-16 00:27:31 t 1 1 173736 637 0.00 2019-11-16 00:28:05 2019-11-16 00:29:28 t 1 1 173740 551 0.00 2019-11-16 00:32:27 2019-11-16 00:35:35 t 1 1 173747 574 0.00 2019-11-16 00:38:56 2019-11-16 00:44:55 t 1 1 173755 422 0.00 2019-11-16 00:37:41 2019-11-16 01:00:31 t 1 1 173757 587 0.00 2019-11-16 00:10:34 2019-11-16 01:01:39 t 1 1 173761 609 0.00 2019-11-16 00:47:47 2019-11-16 01:05:12 t 1 1 173762 220 0.00 2019-11-16 01:09:53 2019-11-16 01:10:08 t 1 1 173767 412 0.00 2019-11-16 01:19:42 2019-11-16 01:20:30 t 1 1 173773 609 0.00 2019-11-16 01:05:12 2019-11-16 01:25:14 t 1 1 173775 412 0.00 2019-11-16 01:25:29 2019-11-16 01:27:38 t 1 1 173779 412 0.00 2019-11-16 01:29:52 2019-11-16 01:30:51 t 1 1 173780 609 0.00 2019-11-16 01:25:14 2019-11-16 01:32:50 t 1 1 173781 220 0.00 2019-11-16 01:38:22 2019-11-16 01:38:36 t 1 1 173783 545 0.00 2019-11-16 00:09:17 2019-11-16 01:46:02 t 1 1 173786 412 0.00 2019-11-16 02:45:56 2019-11-16 02:57:20 t 1 1 173787 412 0.00 2019-11-16 02:57:20 2019-11-16 03:11:14 t 1 1 173790 637 0.00 2019-11-16 03:28:43 2019-11-16 03:30:44 t 1 1 173791 637 0.00 2019-11-16 03:31:42 2019-11-16 03:50:51 t 1 1 173510 220 0.00 2019-11-15 22:03:34 2019-11-15 22:03:46 t 1 1 173514 220 0.00 2019-11-15 22:04:12 2019-11-15 22:04:21 t 1 1 173515 220 0.00 2019-11-15 22:04:21 2019-11-15 22:04:59 t 1 1 173516 581 0.00 2019-11-15 21:59:55 2019-11-15 22:05:57 t 1 1 173517 220 0.00 2019-11-15 22:04:59 2019-11-15 22:06:25 t 1 1 173518 220 0.00 2019-11-15 22:06:25 2019-11-15 22:06:59 t 1 1 173522 220 0.00 2019-11-15 22:07:30 2019-11-15 22:08:29 t 1 1 173524 660 0.00 2019-11-15 21:59:15 2019-11-15 22:09:01 t 1 1 173527 622 0.00 2019-11-15 21:43:21 2019-11-15 22:09:59 t 1 1 173529 220 0.00 2019-11-15 22:09:34 2019-11-15 22:10:38 t 1 1 173532 619 0.00 2019-11-15 21:58:55 2019-11-15 22:11:50 t 1 1 173540 220 0.00 2019-11-15 22:13:27 2019-11-15 22:13:41 t 1 1 173550 220 0.00 2019-11-15 22:14:57 2019-11-15 22:15:20 t 1 1 173551 220 0.00 2019-11-15 22:14:16 2019-11-15 22:16:30 t 1 1 173553 595 0.00 2019-11-15 22:16:40 2019-11-15 22:16:45 t 1 1 173555 220 0.00 2019-11-15 22:16:30 2019-11-15 22:17:04 t 1 1 173562 520 0.00 2019-11-15 22:19:45 2019-11-15 22:22:26 t 1 1 173564 220 0.00 2019-11-15 22:20:02 2019-11-15 22:22:27 t 1 1 173565 220 0.00 2019-11-15 22:22:26 2019-11-15 22:23:04 t 1 1 173566 595 0.00 2019-11-15 22:22:51 2019-11-15 22:23:47 t 1 1 173568 422 0.00 2019-11-15 22:24:54 2019-11-15 22:25:13 t 1 1 173570 220 0.00 2019-11-15 22:25:26 2019-11-15 22:25:35 t 1 1 173574 220 0.00 2019-11-15 22:25:59 2019-11-15 22:26:50 t 1 1 173576 422 0.00 2019-11-15 22:27:46 2019-11-15 22:28:06 t 1 1 173578 623 0.00 2019-11-15 22:29:09 2019-11-15 22:29:11 t 1 1 173583 637 0.00 2019-11-15 22:30:08 2019-11-15 22:32:31 t 1 1 173588 595 0.00 2019-11-15 22:30:28 2019-11-15 22:34:45 t 1 1 173590 220 0.00 2019-11-15 22:34:32 2019-11-15 22:35:07 t 1 1 173595 623 0.00 2019-11-15 22:36:50 2019-11-15 22:37:25 t 1 1 173599 587 0.00 2019-11-15 22:14:33 2019-11-15 22:40:08 t 1 1 173602 544 0.00 2019-11-15 21:39:43 2019-11-15 22:42:36 t 1 1 173605 412 0.00 2019-11-15 22:41:00 2019-11-15 22:43:27 t 1 1 173606 623 0.00 2019-11-15 22:44:07 2019-11-15 22:44:07 f 1 1 173607 623 0.00 2019-11-15 22:43:03 2019-11-15 22:44:30 t 1 1 173613 220 0.00 2019-11-15 22:46:25 2019-11-15 22:46:42 t 1 1 173615 488 0.00 2019-11-15 22:27:08 2019-11-15 22:47:22 t 1 1 173617 611 0.00 2019-11-15 22:32:31 2019-11-15 22:48:08 t 1 1 173622 587 0.00 2019-11-15 22:40:08 2019-11-15 22:50:33 t 1 1 173627 595 0.00 2019-11-15 22:52:21 2019-11-15 22:53:19 t 1 1 173628 570 0.00 2019-11-15 22:53:41 2019-11-15 22:53:41 f 1 1 173630 220 0.00 2019-11-15 22:48:31 2019-11-15 22:56:57 t 1 1 173631 220 0.00 2019-11-15 22:56:56 2019-11-15 22:57:31 t 1 1 173633 637 0.00 2019-11-15 22:52:19 2019-11-15 23:00:59 t 1 1 173636 564 0.00 2019-11-15 19:52:39 2019-11-15 23:02:20 t 1 1 173637 220 0.00 2019-11-15 22:57:31 2019-11-15 23:04:10 t 1 1 173639 220 0.00 2019-11-15 23:04:10 2019-11-15 23:04:36 t 1 1 173643 635 0.00 2019-11-15 22:52:50 2019-11-15 23:06:56 t 1 1 173647 645 0.00 2019-11-15 22:55:34 2019-11-15 23:10:31 t 1 1 173649 595 0.00 2019-11-15 23:10:42 2019-11-15 23:14:45 t 1 1 173651 220 0.00 2019-11-15 23:14:57 2019-11-15 23:15:12 t 1 1 173652 412 0.00 2019-11-15 23:09:05 2019-11-15 23:17:20 t 1 1 173660 412 0.00 2019-11-15 23:17:59 2019-11-15 23:21:49 t 1 1 173663 412 0.00 2019-11-15 23:23:56 2019-11-15 23:25:14 t 1 1 173665 621 0.00 2019-11-15 23:24:57 2019-11-15 23:26:11 t 1 1 173667 412 0.00 2019-11-15 23:25:56 2019-11-15 23:27:30 t 1 1 173670 562 0.00 2019-11-15 23:27:58 2019-11-15 23:28:28 t 1 1 173672 587 0.00 2019-11-15 23:27:34 2019-11-15 23:28:55 t 1 1 173673 587 0.00 2019-11-15 23:29:06 2019-11-15 23:29:34 t 1 1 173681 220 0.00 2019-11-15 23:26:35 2019-11-15 23:36:00 t 1 1 173684 412 0.00 2019-11-15 23:36:51 2019-11-15 23:38:57 t 1 1 173686 512 0.00 2019-11-15 23:07:12 2019-11-15 23:39:17 t 1 1 173692 637 0.00 2019-11-15 23:03:43 2019-11-15 23:43:15 t 1 1 173694 412 0.00 2019-11-15 23:41:49 2019-11-15 23:44:07 t 1 1 173695 220 0.00 2019-11-15 23:41:08 2019-11-15 23:44:49 t 1 1 173697 587 0.00 2019-11-15 23:40:48 2019-11-15 23:45:57 t 1 1 173700 422 0.00 2019-11-15 23:45:44 2019-11-15 23:46:43 t 1 1 173703 422 0.00 2019-11-15 23:47:10 2019-11-15 23:47:56 t 1 1 173709 412 0.00 2019-11-15 23:51:54 2019-11-15 23:54:36 t 1 1 173710 422 0.00 2019-11-15 23:50:29 2019-11-15 23:57:23 t 1 1 173714 645 0.00 2019-11-15 23:47:42 2019-11-16 00:00:24 t 1 1 173717 645 0.00 2019-11-16 00:00:24 2019-11-16 00:02:58 t 1 1 173721 585 0.00 2019-11-15 23:48:41 2019-11-16 00:07:56 t 1 1 173725 562 0.00 2019-11-16 00:15:15 2019-11-16 00:15:29 t 1 1 173727 220 0.00 2019-11-16 00:18:04 2019-11-16 00:18:18 t 1 1 173730 551 0.00 2019-11-15 23:33:46 2019-11-16 00:22:11 t 1 1 173731 562 0.00 2019-11-16 00:22:01 2019-11-16 00:22:27 t 1 1 173735 220 0.00 2019-11-16 00:28:54 2019-11-16 00:29:08 t 1 1 173741 412 0.00 2019-11-16 00:01:54 2019-11-16 00:36:02 t 1 1 173743 422 0.00 2019-11-15 23:59:27 2019-11-16 00:37:41 t 1 1 173744 220 0.00 2019-11-16 00:39:26 2019-11-16 00:39:41 t 1 1 173746 562 0.00 2019-11-16 00:43:42 2019-11-16 00:44:01 t 1 1 173749 220 0.00 2019-11-16 00:49:58 2019-11-16 00:50:07 t 1 1 173751 637 0.00 2019-11-16 00:51:05 2019-11-16 00:52:16 t 1 1 173752 562 0.00 2019-11-16 00:54:22 2019-11-16 00:54:48 t 1 1 173753 514 0.00 2019-11-16 00:42:02 2019-11-16 00:55:46 t 1 1 173756 220 0.00 2019-11-16 01:00:29 2019-11-16 01:00:39 t 1 1 173758 562 0.00 2019-11-16 01:02:06 2019-11-16 01:02:27 t 1 1 173759 587 0.00 2019-11-16 01:01:39 2019-11-16 01:04:39 t 1 1 173763 220 0.00 2019-11-16 01:10:16 2019-11-16 01:11:16 t 1 1 173765 220 0.00 2019-11-16 01:17:20 2019-11-16 01:17:34 t 1 1 173770 412 0.00 2019-11-16 01:21:31 2019-11-16 01:22:16 t 1 1 173771 412 0.00 2019-11-16 01:22:16 2019-11-16 01:23:48 t 1 1 173777 412 0.00 2019-11-16 01:27:30 2019-11-16 01:28:33 t 1 1 173788 637 0.00 2019-11-16 02:38:47 2019-11-16 03:13:09 t 1 1 173792 545 0.00 2019-11-16 02:22:44 2019-11-16 04:05:49 t 1 1 173793 637 0.00 2019-11-16 03:50:45 2019-11-16 04:07:41 t 1 1 173795 445 0.00 2019-11-16 06:18:26 2019-11-16 06:21:06 t 1 1 173796 445 0.00 2019-11-16 06:24:53 2019-11-16 06:27:06 t 1 1 173797 445 0.00 2019-11-16 06:40:51 2019-11-16 06:43:12 t 1 1 173798 445 0.00 2019-11-16 06:43:11 2019-11-16 06:45:11 t 1 1 173801 445 0.00 2019-11-16 07:29:22 2019-11-16 07:30:37 t 1 1 173802 545 0.00 2019-11-16 07:31:03 2019-11-16 07:33:12 t 1 1 173804 412 0.00 2019-11-16 03:11:15 2019-11-16 07:43:01 t 1 1 173806 445 0.00 2019-11-16 08:01:35 2019-11-16 08:15:56 t 1 1 173808 615 0.00 2019-11-16 08:55:02 2019-11-16 09:14:47 t 1 1 173809 591 0.00 2019-11-16 09:15:07 2019-11-16 09:19:09 t 1 1 173810 615 0.00 2019-11-16 09:14:47 2019-11-16 09:25:32 t 1 1 173548 220 0.00 2019-11-15 22:14:50 2019-11-15 22:14:57 t 1 1 173552 220 0.00 2019-11-15 22:15:31 2019-11-15 22:16:30 t 1 1 173554 562 0.00 2019-11-15 22:15:47 2019-11-15 22:16:48 t 1 1 173557 220 0.00 2019-11-15 22:17:04 2019-11-15 22:19:26 t 1 1 173558 220 0.00 2019-11-15 22:19:26 2019-11-15 22:20:02 t 1 1 173559 585 0.00 2019-11-15 22:06:28 2019-11-15 22:21:11 t 1 1 173560 595 0.00 2019-11-15 22:21:46 2019-11-15 22:21:53 t 1 1 173563 422 0.00 2019-11-15 22:22:13 2019-11-15 22:22:26 t 1 1 173571 623 0.00 2019-11-15 22:25:45 2019-11-15 22:26:37 t 1 1 173573 623 0.00 2019-11-15 22:26:42 2019-11-15 22:26:43 t 1 1 173575 220 0.00 2019-11-15 22:26:50 2019-11-15 22:27:25 t 1 1 173582 422 0.00 2019-11-15 22:32:00 2019-11-15 22:32:15 t 1 1 173584 220 0.00 2019-11-15 22:31:30 2019-11-15 22:33:24 t 1 1 173586 220 0.00 2019-11-15 22:33:24 2019-11-15 22:33:57 t 1 1 173587 220 0.00 2019-11-15 22:33:57 2019-11-15 22:34:32 t 1 1 173589 562 0.00 2019-11-15 22:34:37 2019-11-15 22:35:03 t 1 1 173592 220 0.00 2019-11-15 22:35:40 2019-11-15 22:35:56 t 1 1 173596 597 0.00 2019-11-15 22:18:34 2019-11-15 22:37:44 t 1 1 173597 623 0.00 2019-11-15 22:38:03 2019-11-15 22:38:04 t 1 1 173603 645 0.00 2019-11-15 22:37:48 2019-11-15 22:42:38 t 1 1 173608 422 0.00 2019-11-15 22:39:12 2019-11-15 22:44:34 t 1 1 173610 562 0.00 2019-11-15 22:45:34 2019-11-15 22:45:53 t 1 1 173614 635 0.00 2019-11-15 22:23:09 2019-11-15 22:47:04 t 1 1 173620 412 0.00 2019-11-15 22:48:54 2019-11-15 22:49:59 t 1 1 173623 570 0.00 2019-11-15 22:51:20 2019-11-15 22:51:20 f 1 1 173625 570 0.00 2019-11-15 22:52:04 2019-11-15 22:52:04 f 1 1 173626 570 0.00 2019-11-15 22:52:46 2019-11-15 22:52:46 f 1 1 173629 562 0.00 2019-11-15 22:56:16 2019-11-15 22:56:39 t 1 1 173632 585 0.00 2019-11-15 22:51:17 2019-11-15 22:58:00 t 1 1 173634 510 0.00 2019-11-15 20:21:54 2019-11-15 23:01:11 t 1 1 173635 481 0.00 2019-11-15 22:40:12 2019-11-15 23:02:16 t 1 1 173640 621 0.00 2019-11-15 22:50:53 2019-11-15 23:04:38 t 1 1 173644 562 0.00 2019-11-15 23:06:33 2019-11-15 23:06:58 t 1 1 173653 595 0.00 2019-11-15 23:15:41 2019-11-15 23:17:33 t 1 1 173655 621 0.00 2019-11-15 23:12:23 2019-11-15 23:18:01 t 1 1 173657 220 0.00 2019-11-15 23:15:32 2019-11-15 23:19:53 t 1 1 173659 566 0.00 2019-11-15 22:29:07 2019-11-15 23:21:37 t 1 1 173662 621 0.00 2019-11-15 23:18:01 2019-11-15 23:24:57 t 1 1 173664 220 0.00 2019-11-15 23:25:28 2019-11-15 23:25:43 t 1 1 173668 587 0.00 2019-11-15 23:16:05 2019-11-15 23:27:34 t 1 1 173669 631 0.00 2019-11-15 23:27:00 2019-11-15 23:28:08 t 1 1 173671 508 0.00 2019-11-15 22:50:38 2019-11-15 23:28:31 t 1 2 173674 412 0.00 2019-11-15 23:28:43 2019-11-15 23:31:15 t 1 1 173676 591 0.00 2019-11-15 23:32:36 2019-11-15 23:32:47 t 1 1 173678 412 0.00 2019-11-15 23:31:32 2019-11-15 23:33:46 t 1 1 173680 587 0.00 2019-11-15 23:29:54 2019-11-15 23:35:06 t 1 1 173682 220 0.00 2019-11-15 23:35:59 2019-11-15 23:36:13 t 1 1 173683 422 0.00 2019-11-15 23:34:28 2019-11-15 23:38:51 t 1 1 173689 220 0.00 2019-11-15 23:39:50 2019-11-15 23:40:31 t 1 1 173690 220 0.00 2019-11-15 23:40:31 2019-11-15 23:41:08 t 1 1 173691 412 0.00 2019-11-15 23:39:34 2019-11-15 23:41:49 t 1 1 173696 220 0.00 2019-11-15 23:44:49 2019-11-15 23:45:26 t 1 1 173701 220 0.00 2019-11-15 23:46:31 2019-11-15 23:46:46 t 1 1 173702 645 0.00 2019-11-15 23:34:29 2019-11-15 23:47:42 t 1 1 173705 488 0.00 2019-11-15 22:47:22 2019-11-15 23:48:24 t 1 1 173708 510 0.00 2019-11-15 23:01:11 2019-11-15 23:53:34 t 1 1 173711 481 0.00 2019-11-15 23:50:26 2019-11-15 23:57:28 t 1 1 173716 220 0.00 2019-11-15 22:02:44 2019-11-16 00:02:05 t 1 2 173718 485 0.00 2019-11-16 00:03:33 2019-11-16 00:04:55 t 1 1 173719 622 0.00 2019-11-15 23:50:21 2019-11-16 00:07:47 t 1 1 173722 545 0.00 2019-11-15 22:13:47 2019-11-16 00:08:10 t 1 1 173723 587 0.00 2019-11-15 23:46:01 2019-11-16 00:10:34 t 1 1 173729 566 0.00 2019-11-16 00:16:25 2019-11-16 00:21:20 t 1 1 173732 538 0.00 2019-11-15 21:53:02 2019-11-16 00:22:47 t 1 1 173734 220 0.00 2019-11-16 00:28:35 2019-11-16 00:28:45 t 1 1 173737 551 0.00 2019-11-16 00:22:11 2019-11-16 00:32:27 t 1 1 173738 562 0.00 2019-11-16 00:32:48 2019-11-16 00:33:11 t 1 1 173739 609 0.00 2019-11-16 00:28:25 2019-11-16 00:33:34 t 1 1 173742 609 0.00 2019-11-16 00:33:34 2019-11-16 00:37:31 t 1 1 173745 514 0.00 2019-11-15 23:10:19 2019-11-16 00:42:02 t 1 1 173748 609 0.00 2019-11-16 00:37:31 2019-11-16 00:47:47 t 1 1 173750 637 0.00 2019-11-16 00:37:09 2019-11-16 00:51:06 t 1 1 173754 637 0.00 2019-11-16 00:52:20 2019-11-16 01:00:11 t 1 1 173760 514 0.00 2019-11-16 00:55:46 2019-11-16 01:05:11 t 1 1 173764 412 0.00 2019-11-16 00:56:02 2019-11-16 01:12:27 t 1 1 173766 412 0.00 2019-11-16 01:12:27 2019-11-16 01:19:42 t 1 1 173768 412 0.00 2019-11-16 01:20:30 2019-11-16 01:21:07 t 1 1 173769 412 0.00 2019-11-16 01:21:03 2019-11-16 01:21:31 t 1 1 173772 412 0.00 2019-11-16 01:23:58 2019-11-16 01:25:06 t 1 1 173774 412 0.00 2019-11-16 01:25:05 2019-11-16 01:26:17 t 1 1 173776 220 0.00 2019-11-16 01:27:52 2019-11-16 01:28:06 t 1 1 173778 412 0.00 2019-11-16 01:28:42 2019-11-16 01:29:52 t 1 1 173782 637 0.00 2019-11-16 01:44:44 2019-11-16 01:46:02 t 1 1 173784 412 0.00 2019-11-16 01:30:50 2019-11-16 02:21:59 t 1 1 173785 412 0.00 2019-11-16 02:22:00 2019-11-16 02:45:56 t 1 1 173789 637 0.00 2019-11-16 03:19:04 2019-11-16 03:26:49 t 1 1 173794 445 0.00 2019-11-16 05:37:26 2019-11-16 05:41:50 t 1 1 173799 445 0.00 2019-11-16 06:46:32 2019-11-16 07:03:01 t 1 1 173800 499 0.00 2019-11-16 06:54:45 2019-11-16 07:04:53 t 1 1 173803 445 0.00 2019-11-16 07:37:26 2019-11-16 07:39:56 t 1 1 173805 445 0.00 2019-11-16 07:44:05 2019-11-16 08:00:34 t 1 1 173807 514 0.00 2019-11-16 09:00:37 2019-11-16 09:01:46 t 1 1 173811 412 0.00 2019-11-16 07:43:01 2019-11-16 09:26:45 t 1 1 173812 445 0.00 2019-11-16 09:26:11 2019-11-16 09:28:00 t 1 1 173813 615 0.00 2019-11-16 09:25:32 2019-11-16 09:30:03 t 1 1 173814 545 0.00 2019-11-16 09:27:40 2019-11-16 09:30:48 t 1 1 173815 545 0.00 2019-11-16 09:32:14 2019-11-16 09:33:33 t 1 1 173816 545 0.00 2019-11-16 09:34:01 2019-11-16 09:35:58 t 1 1 173817 635 0.00 2019-11-16 09:34:59 2019-11-16 09:39:51 t 1 1 173818 514 0.00 2019-11-16 09:38:37 2019-11-16 09:48:20 t 1 1 173819 591 0.00 2019-11-16 09:19:08 2019-11-16 09:53:44 t 1 1 173820 412 0.00 2019-11-16 09:26:45 2019-11-16 09:58:12 t 1 1 173821 498 0.00 2019-11-16 09:28:20 2019-11-16 10:04:00 t 1 2 173822 445 0.00 2019-11-16 10:22:41 2019-11-16 10:23:43 t 1 1 173823 591 0.00 2019-11-16 09:53:44 2019-11-16 10:25:42 t 1 1 173824 591 0.00 2019-11-16 10:26:29 2019-11-16 10:28:10 t 1 1 173825 591 0.00 2019-11-16 10:31:07 2019-11-16 10:32:55 t 1 1 173826 591 0.00 2019-11-16 10:36:28 2019-11-16 10:39:42 t 1 1 173830 512 0.00 2019-11-16 10:38:40 2019-11-16 10:46:31 t 1 1 173834 615 0.00 2019-11-16 10:49:48 2019-11-16 10:52:43 t 1 1 173836 490 0.00 2019-11-16 11:04:26 2019-11-16 11:13:23 t 1 1 173839 412 0.00 2019-11-16 10:52:00 2019-11-16 11:14:50 t 1 1 173848 490 0.00 2019-11-16 11:29:30 2019-11-16 11:40:49 t 1 1 173855 490 0.00 2019-11-16 11:40:49 2019-11-16 12:01:25 t 1 1 173857 412 0.00 2019-11-16 12:00:41 2019-11-16 12:04:00 t 1 1 173860 412 0.00 2019-11-16 12:12:00 2019-11-16 12:14:32 t 1 1 173862 412 0.00 2019-11-16 12:14:55 2019-11-16 12:16:01 t 1 1 173863 514 0.00 2019-11-16 12:27:45 2019-11-16 12:28:43 t 1 1 173868 412 0.00 2019-11-16 12:33:21 2019-11-16 12:36:08 t 1 1 173869 412 0.00 2019-11-16 12:36:08 2019-11-16 12:37:37 t 1 1 173871 412 0.00 2019-11-16 12:37:54 2019-11-16 12:48:28 t 1 1 173872 412 0.00 2019-11-16 12:48:27 2019-11-16 12:54:32 t 1 1 173877 591 0.00 2019-11-16 12:11:12 2019-11-16 13:07:55 t 1 1 173878 514 0.00 2019-11-16 13:08:11 2019-11-16 13:08:11 f 1 1 173879 514 0.00 2019-11-16 13:08:21 2019-11-16 13:08:21 f 1 1 173884 514 0.00 2019-11-16 13:08:04 2019-11-16 13:09:48 t 1 1 173885 637 0.00 2019-11-16 13:11:19 2019-11-16 13:14:47 t 1 1 173889 412 0.00 2019-11-16 13:32:14 2019-11-16 13:33:33 t 1 1 173893 412 0.00 2019-11-16 13:36:24 2019-11-16 13:38:26 t 1 1 173894 412 0.00 2019-11-16 13:38:25 2019-11-16 13:39:47 t 1 1 173897 514 0.00 2019-11-16 13:50:03 2019-11-16 13:51:08 t 1 1 173898 412 0.00 2019-11-16 13:51:00 2019-11-16 13:54:20 t 1 1 173899 564 0.00 2019-11-16 13:45:21 2019-11-16 14:00:55 t 1 1 173902 412 0.00 2019-11-16 14:03:13 2019-11-16 14:06:18 t 1 1 173905 412 0.00 2019-11-16 14:06:32 2019-11-16 14:08:55 t 1 1 173908 412 0.00 2019-11-16 14:12:49 2019-11-16 14:19:27 t 1 1 173915 412 0.00 2019-11-16 14:34:21 2019-11-16 14:35:37 t 1 1 173916 412 0.00 2019-11-16 14:35:37 2019-11-16 14:37:51 t 1 1 173918 512 0.00 2019-11-16 14:30:54 2019-11-16 14:41:57 t 1 1 173919 412 0.00 2019-11-16 14:38:58 2019-11-16 14:44:53 t 1 1 173920 564 0.00 2019-11-16 14:00:55 2019-11-16 14:45:42 t 1 1 173925 649 0.00 2019-11-16 14:50:18 2019-11-16 15:17:29 t 1 1 173930 412 0.00 2019-11-16 15:23:01 2019-11-16 15:49:38 t 1 1 173934 412 0.00 2019-11-16 15:51:16 2019-11-16 15:58:48 t 1 1 173936 635 0.00 2019-11-16 15:35:28 2019-11-16 16:08:48 t 1 1 173939 485 0.00 2019-11-16 15:58:41 2019-11-16 16:14:34 t 1 1 173942 412 0.00 2019-11-16 16:27:41 2019-11-16 16:30:15 t 1 1 173944 412 0.00 2019-11-16 16:30:15 2019-11-16 16:37:40 t 1 1 173945 508 0.00 2019-11-16 15:57:53 2019-11-16 17:34:55 t 1 2 173946 544 0.00 2019-11-21 17:18:47 2019-11-21 17:18:56 t 1 1 173947 544 0.00 2019-11-21 17:18:56 2019-11-21 17:19:59 t 1 1 173948 544 0.00 2019-11-21 17:49:43 2019-11-21 17:50:11 t 1 1 173952 544 0.00 2019-11-21 17:52:36 2019-11-21 17:53:16 t 1 1 173956 544 0.00 2019-11-22 15:12:23 2019-11-22 15:20:35 t 1 1 173957 544 0.00 2019-11-23 07:57:43 2019-11-23 07:59:14 t 1 1 173958 220 0.00 2019-11-23 09:49:36 2019-11-23 09:51:08 t 1 2 173960 635 0.00 2019-11-23 11:37:09 2019-11-23 11:45:19 t 1 1 173961 220 0.00 2019-11-23 12:17:35 2019-11-23 12:18:13 t 1 2 173962 635 0.00 2019-11-23 14:51:31 2019-11-23 14:53:23 t 1 1 173965 570 0.00 2019-11-23 15:04:08 2019-11-23 15:04:08 f 1 1 173966 514 0.00 2019-11-23 15:15:49 2019-11-23 15:38:43 t 1 1 173967 615 0.00 2019-11-23 15:44:52 2019-11-23 15:54:06 t 1 1 173971 514 0.00 2019-11-23 15:38:43 2019-11-23 16:23:02 t 1 1 173979 514 0.00 2019-11-23 17:22:32 2019-11-23 17:59:27 t 1 1 173984 514 0.00 2019-11-23 18:12:07 2019-11-23 18:18:37 t 1 1 173987 570 0.00 2019-11-23 19:27:35 2019-11-23 19:27:35 f 1 1 173989 220 0.00 2019-11-23 19:40:41 2019-11-23 19:40:56 t 1 1 173991 220 0.00 2019-11-23 19:51:27 2019-11-23 19:51:46 t 1 1 173992 220 0.00 2019-11-23 20:02:08 2019-11-23 20:02:09 t 1 1 173993 498 0.00 2019-11-23 19:15:19 2019-11-23 20:05:31 t 1 2 173999 508 0.00 2019-11-23 20:29:08 2019-11-23 20:30:32 t 1 2 174001 220 0.00 2019-11-23 20:30:43 2019-11-23 20:30:45 t 1 1 174006 220 0.00 2019-11-23 20:49:11 2019-11-23 20:51:28 t 1 1 174008 220 0.00 2019-11-23 20:58:30 2019-11-23 20:58:49 t 1 1 174010 508 0.00 2019-11-23 20:50:59 2019-11-23 21:00:43 t 1 2 174012 660 0.00 2019-11-23 20:59:19 2019-11-23 21:02:38 t 1 1 174019 483 0.00 2019-11-23 21:15:28 2019-11-23 21:19:27 t 1 1 174021 220 0.00 2019-11-23 21:22:13 2019-11-23 21:24:28 t 1 1 174022 220 0.00 2019-11-23 18:47:07 2019-11-23 21:25:24 t 1 2 174027 508 0.00 2019-11-23 21:42:40 2019-11-23 21:47:33 t 1 2 174029 508 0.00 2019-11-23 22:00:27 2019-11-23 22:01:34 t 1 2 174030 574 0.00 2019-11-23 22:14:02 2019-11-23 22:21:27 t 1 1 174031 591 0.00 2019-11-23 21:41:55 2019-11-23 22:23:51 t 1 1 174032 591 0.00 2019-11-23 22:26:44 2019-11-23 22:28:59 t 1 1 174035 591 0.00 2019-11-23 22:30:48 2019-11-23 22:32:50 t 1 1 174038 591 0.00 2019-11-23 22:41:15 2019-11-23 22:41:49 t 1 1 174042 514 0.00 2019-11-23 22:39:38 2019-11-23 22:54:43 t 1 1 174043 508 0.00 2019-11-23 22:54:22 2019-11-23 22:57:45 t 1 2 174044 615 0.00 2019-11-23 23:02:23 2019-11-23 23:02:29 t 1 1 174047 508 0.00 2019-11-23 23:24:46 2019-11-23 23:41:22 t 1 2 174048 375 0.00 2019-11-23 23:46:31 2019-11-23 23:46:31 f 1 1 174054 220 0.00 2019-11-24 00:28:37 2019-11-24 00:29:12 t 1 1 174055 220 0.00 2019-11-24 00:29:12 2019-11-24 00:29:47 t 1 1 174057 220 0.00 2019-11-24 00:30:23 2019-11-24 00:30:59 t 1 1 174058 220 0.00 2019-11-24 00:30:59 2019-11-24 00:31:34 t 1 1 174064 220 0.00 2019-11-24 00:34:30 2019-11-24 00:35:05 t 1 1 174066 220 0.00 2019-11-24 00:35:40 2019-11-24 00:36:15 t 1 1 174067 220 0.00 2019-11-24 00:36:14 2019-11-24 00:37:16 t 1 1 174068 220 0.00 2019-11-24 00:37:15 2019-11-24 00:37:49 t 1 1 174074 220 0.00 2019-11-24 00:40:00 2019-11-24 00:40:35 t 1 1 174080 220 0.00 2019-11-24 00:43:25 2019-11-24 00:52:39 t 1 1 174088 220 0.00 2019-11-24 00:56:39 2019-11-24 00:57:12 t 1 1 174089 220 0.00 2019-11-24 00:57:11 2019-11-24 00:57:46 t 1 1 174090 220 0.00 2019-11-24 00:57:45 2019-11-24 00:58:20 t 1 1 174097 220 0.00 2019-11-24 01:01:41 2019-11-24 01:02:16 t 1 1 174098 220 0.00 2019-11-24 01:02:15 2019-11-24 01:02:49 t 1 1 174099 220 0.00 2019-11-24 01:02:49 2019-11-24 01:03:22 t 1 1 174106 220 0.00 2019-11-24 01:06:25 2019-11-24 01:06:59 t 1 1 174107 220 0.00 2019-11-24 01:06:59 2019-11-24 01:23:38 t 1 1 174108 220 0.00 2019-11-24 01:23:38 2019-11-24 01:29:40 t 1 1 174109 568 0.00 2019-11-24 06:29:37 2019-11-24 06:29:58 t 1 1 174111 220 0.00 2019-11-24 07:15:20 2019-11-24 07:35:44 t 1 2 174112 591 0.00 2019-11-24 08:29:20 2019-11-24 08:36:44 t 1 1 174115 591 0.00 2019-11-24 09:08:22 2019-11-24 09:16:36 t 1 1 173827 615 0.00 2019-11-16 10:32:21 2019-11-16 10:41:30 t 1 1 173829 591 0.00 2019-11-16 10:41:39 2019-11-16 10:44:06 t 1 1 173833 412 0.00 2019-11-16 09:58:12 2019-11-16 10:52:01 t 1 1 173838 591 0.00 2019-11-16 11:03:28 2019-11-16 11:14:23 t 1 1 173840 490 0.00 2019-11-16 11:13:23 2019-11-16 11:16:54 t 1 1 173841 412 0.00 2019-11-16 11:14:50 2019-11-16 11:20:57 t 1 1 173843 591 0.00 2019-11-16 11:20:50 2019-11-16 11:28:10 t 1 1 173845 512 0.00 2019-11-16 11:20:39 2019-11-16 11:33:54 t 1 1 173846 412 0.00 2019-11-16 11:26:46 2019-11-16 11:39:29 t 1 1 173847 615 0.00 2019-11-16 11:31:05 2019-11-16 11:40:26 t 1 1 173851 412 0.00 2019-11-16 11:48:18 2019-11-16 11:51:42 t 1 1 173853 412 0.00 2019-11-16 11:54:04 2019-11-16 11:55:47 t 1 1 173854 412 0.00 2019-11-16 11:55:46 2019-11-16 12:00:41 t 1 1 173858 591 0.00 2019-11-16 11:30:40 2019-11-16 12:11:12 t 1 1 173865 412 0.00 2019-11-16 12:16:01 2019-11-16 12:29:59 t 1 1 173867 412 0.00 2019-11-16 12:30:51 2019-11-16 12:33:21 t 1 1 173870 514 0.00 2019-11-16 12:37:44 2019-11-16 12:38:51 t 1 1 173881 514 0.00 2019-11-16 13:08:33 2019-11-16 13:08:33 f 1 1 173895 412 0.00 2019-11-16 13:39:47 2019-11-16 13:43:48 t 1 1 173904 591 0.00 2019-11-16 14:06:28 2019-11-16 14:08:33 t 1 1 173909 412 0.00 2019-11-16 14:19:49 2019-11-16 14:20:57 t 1 1 173911 412 0.00 2019-11-16 14:24:46 2019-11-16 14:26:36 t 1 1 173912 412 0.00 2019-11-16 14:26:36 2019-11-16 14:27:58 t 1 1 173917 412 0.00 2019-11-16 14:38:03 2019-11-16 14:38:58 t 1 1 173921 512 0.00 2019-11-16 14:41:57 2019-11-16 14:45:43 t 1 1 173923 412 0.00 2019-11-16 14:44:53 2019-11-16 14:59:13 t 1 1 173924 412 0.00 2019-11-16 14:59:12 2019-11-16 15:14:46 t 1 1 173926 412 0.00 2019-11-16 15:14:46 2019-11-16 15:17:59 t 1 1 173927 412 0.00 2019-11-16 15:18:08 2019-11-16 15:23:01 t 1 1 173928 220 0.00 2019-11-16 13:17:35 2019-11-16 15:40:50 t 1 2 173929 564 0.00 2019-11-16 14:55:43 2019-11-16 15:42:39 t 1 1 173937 564 0.00 2019-11-16 16:02:32 2019-11-16 16:13:05 t 1 1 173940 412 0.00 2019-11-16 15:58:48 2019-11-16 16:23:35 t 1 1 173943 512 0.00 2019-11-16 16:14:24 2019-11-16 16:35:16 t 1 1 173949 544 0.00 2019-11-21 17:50:10 2019-11-21 17:50:47 t 1 1 173950 544 0.00 2019-11-21 17:50:47 2019-11-21 17:51:24 t 1 1 173951 544 0.00 2019-11-21 17:51:24 2019-11-21 17:52:38 t 1 1 173954 544 0.00 2019-11-21 18:19:30 2019-11-21 18:23:48 t 1 1 173955 544 0.00 2019-11-21 21:22:29 2019-11-21 21:26:53 t 1 1 173959 544 0.00 2019-11-23 09:39:33 2019-11-23 09:54:04 t 1 1 173963 570 0.00 2019-11-23 15:03:05 2019-11-23 15:03:05 f 1 1 173964 570 0.00 2019-11-23 15:03:35 2019-11-23 15:03:35 f 1 1 173968 615 0.00 2019-11-23 15:54:06 2019-11-23 15:57:39 t 1 1 173970 615 0.00 2019-11-23 16:20:41 2019-11-23 16:22:05 t 1 1 173973 498 0.00 2019-11-23 16:26:01 2019-11-23 16:59:48 t 1 2 173974 514 0.00 2019-11-23 16:23:02 2019-11-23 17:22:32 t 1 1 173975 635 0.00 2019-11-23 15:33:27 2019-11-23 17:27:34 t 1 1 173976 220 0.00 2019-11-23 17:26:00 2019-11-23 17:44:23 t 1 2 173977 220 0.00 2019-11-23 17:21:24 2019-11-23 17:46:07 t 1 1 173980 220 0.00 2019-11-23 17:49:56 2019-11-23 18:03:33 t 1 1 173981 570 0.00 2019-11-23 18:09:02 2019-11-23 18:09:02 f 1 1 173982 570 0.00 2019-11-23 18:09:54 2019-11-23 18:09:54 f 1 1 173985 220 0.00 2019-11-23 18:03:33 2019-11-23 18:31:00 t 1 1 173986 220 0.00 2019-11-23 19:21:19 2019-11-23 19:22:28 t 1 1 173988 220 0.00 2019-11-23 19:30:12 2019-11-23 19:30:25 t 1 1 173994 220 0.00 2019-11-23 20:08:44 2019-11-23 20:08:53 t 1 1 173995 220 0.00 2019-11-23 20:19:15 2019-11-23 20:19:29 t 1 1 173996 508 0.00 2019-11-23 20:17:36 2019-11-23 20:24:14 t 1 2 174002 220 0.00 2019-11-23 20:30:52 2019-11-23 20:31:05 t 1 1 174005 220 0.00 2019-11-23 20:48:31 2019-11-23 20:49:03 t 1 1 174007 660 0.00 2019-11-23 19:29:39 2019-11-23 20:52:35 t 1 1 174009 660 0.00 2019-11-23 20:52:35 2019-11-23 20:59:19 t 1 1 174011 591 0.00 2019-11-23 20:25:38 2019-11-23 21:01:01 t 1 1 174014 220 0.00 2019-11-23 21:09:06 2019-11-23 21:09:20 t 1 1 174017 220 0.00 2019-11-23 21:18:44 2019-11-23 21:18:59 t 1 1 174023 220 0.00 2019-11-23 21:29:08 2019-11-23 21:29:16 t 1 1 174025 665 0.00 2019-11-23 21:30:41 2019-11-23 21:33:05 t 1 1 174033 514 0.00 2019-11-23 22:16:54 2019-11-23 22:29:39 t 1 1 174036 508 0.00 2019-11-23 22:31:40 2019-11-23 22:34:04 t 1 2 174040 635 0.00 2019-11-23 22:30:17 2019-11-23 22:42:18 t 1 1 174045 591 0.00 2019-11-23 23:02:26 2019-11-23 23:03:19 t 1 1 174050 508 0.00 2019-11-24 00:06:46 2019-11-24 00:21:05 t 1 2 174051 220 0.00 2019-11-23 22:41:06 2019-11-24 00:26:32 t 1 2 174052 508 0.00 2019-11-24 00:22:45 2019-11-24 00:28:22 t 1 2 174059 220 0.00 2019-11-24 00:31:34 2019-11-24 00:32:10 t 1 1 174060 220 0.00 2019-11-24 00:32:10 2019-11-24 00:32:43 t 1 1 174070 508 0.00 2019-11-24 00:38:17 2019-11-24 00:38:49 t 1 2 174075 220 0.00 2019-11-24 00:40:35 2019-11-24 00:41:11 t 1 1 174076 220 0.00 2019-11-24 00:41:11 2019-11-24 00:41:46 t 1 1 174079 220 0.00 2019-11-24 00:42:53 2019-11-24 00:43:09 t 1 1 174081 220 0.00 2019-11-24 00:52:39 2019-11-24 00:53:14 t 1 1 174082 220 0.00 2019-11-24 00:53:14 2019-11-24 00:53:50 t 1 1 174083 220 0.00 2019-11-24 00:53:50 2019-11-24 00:54:24 t 1 1 174085 220 0.00 2019-11-24 00:54:57 2019-11-24 00:55:30 t 1 1 174091 220 0.00 2019-11-24 00:58:20 2019-11-24 00:58:53 t 1 1 174092 220 0.00 2019-11-24 00:58:53 2019-11-24 00:59:25 t 1 1 174094 220 0.00 2019-11-24 00:59:58 2019-11-24 01:00:33 t 1 1 174100 220 0.00 2019-11-24 01:03:21 2019-11-24 01:03:53 t 1 1 174101 220 0.00 2019-11-24 01:03:53 2019-11-24 01:04:26 t 1 1 174103 220 0.00 2019-11-24 01:04:57 2019-11-24 01:05:30 t 1 1 174110 220 0.00 2019-11-24 07:19:13 2019-11-24 07:34:17 t 1 1 174113 591 0.00 2019-11-24 08:44:35 2019-11-24 08:51:24 t 1 1 174116 220 0.00 2019-11-24 09:20:04 2019-11-24 09:20:38 t 1 1 174120 220 0.00 2019-11-24 09:33:52 2019-11-24 09:39:48 t 1 2 174123 615 0.00 2019-11-24 09:42:27 2019-11-24 09:46:20 t 1 1 174124 615 0.00 2019-11-24 09:46:20 2019-11-24 09:48:22 t 1 1 174125 220 0.00 2019-11-24 09:51:07 2019-11-24 09:51:08 t 1 1 174126 220 0.00 2019-11-24 09:51:16 2019-11-24 09:52:17 t 1 1 174127 615 0.00 2019-11-24 09:48:52 2019-11-24 09:56:26 t 1 1 174128 220 0.00 2019-11-24 09:55:01 2019-11-24 09:57:32 t 1 2 174129 591 0.00 2019-11-24 09:32:29 2019-11-24 09:57:42 t 1 1 174130 615 0.00 2019-11-24 09:56:02 2019-11-24 10:11:22 t 1 1 174132 220 0.00 2019-11-24 10:15:21 2019-11-24 10:16:22 t 1 2 174134 220 0.00 2019-11-24 10:51:33 2019-11-24 10:52:01 t 1 1 174135 220 0.00 2019-11-24 11:12:15 2019-11-24 11:12:16 t 1 1 174136 220 0.00 2019-11-24 11:32:32 2019-11-24 11:32:33 t 1 1 174138 220 0.00 2019-11-24 11:42:36 2019-11-24 11:42:44 t 1 1 173828 220 0.00 2019-11-16 09:57:42 2019-11-16 10:43:03 t 1 1 173831 615 0.00 2019-11-16 10:41:30 2019-11-16 10:49:48 t 1 1 173832 508 0.00 2019-11-16 10:49:19 2019-11-16 10:51:58 t 1 2 173835 564 0.00 2019-11-16 10:51:01 2019-11-16 11:06:24 t 1 1 173837 445 0.00 2019-11-16 11:12:42 2019-11-16 11:13:44 t 1 1 173842 412 0.00 2019-11-16 11:20:57 2019-11-16 11:26:47 t 1 1 173844 615 0.00 2019-11-16 11:22:17 2019-11-16 11:31:05 t 1 1 173849 412 0.00 2019-11-16 11:39:29 2019-11-16 11:48:19 t 1 1 173850 615 0.00 2019-11-16 11:40:26 2019-11-16 11:49:43 t 1 1 173852 412 0.00 2019-11-16 11:51:42 2019-11-16 11:54:04 t 1 1 173856 564 0.00 2019-11-16 11:58:06 2019-11-16 12:01:26 t 1 1 173859 412 0.00 2019-11-16 12:04:00 2019-11-16 12:12:01 t 1 1 173861 490 0.00 2019-11-16 12:01:25 2019-11-16 12:15:08 t 1 1 173864 514 0.00 2019-11-16 12:28:43 2019-11-16 12:29:46 t 1 1 173866 412 0.00 2019-11-16 12:29:59 2019-11-16 12:30:52 t 1 1 173873 663 0.00 2019-11-16 12:54:26 2019-11-16 12:55:11 t 1 1 173874 412 0.00 2019-11-16 12:54:40 2019-11-16 12:58:15 t 1 1 173875 412 0.00 2019-11-16 12:58:15 2019-11-16 13:00:38 t 1 1 173876 412 0.00 2019-11-16 13:00:38 2019-11-16 13:06:35 t 1 1 173880 412 0.00 2019-11-16 13:07:22 2019-11-16 13:08:24 t 1 1 173882 514 0.00 2019-11-16 13:07:38 2019-11-16 13:08:42 t 1 1 173883 514 0.00 2019-11-16 13:08:46 2019-11-16 13:09:47 t 1 1 173886 591 0.00 2019-11-16 13:11:54 2019-11-16 13:27:02 t 1 1 173887 514 0.00 2019-11-16 13:29:24 2019-11-16 13:30:38 t 1 1 173888 412 0.00 2019-11-16 13:08:23 2019-11-16 13:32:14 t 1 1 173890 564 0.00 2019-11-16 13:03:11 2019-11-16 13:34:59 t 1 1 173891 660 0.00 2019-11-16 13:28:50 2019-11-16 13:35:33 t 1 1 173892 412 0.00 2019-11-16 13:33:32 2019-11-16 13:36:25 t 1 1 173896 412 0.00 2019-11-16 13:43:48 2019-11-16 13:51:00 t 1 1 173900 412 0.00 2019-11-16 13:54:20 2019-11-16 14:03:13 t 1 1 173901 570 0.00 2019-11-16 14:04:11 2019-11-16 14:04:11 f 1 1 173903 591 0.00 2019-11-16 13:29:03 2019-11-16 14:06:28 t 1 1 173906 412 0.00 2019-11-16 14:08:55 2019-11-16 14:12:14 t 1 1 173907 514 0.00 2019-11-16 14:14:05 2019-11-16 14:14:24 t 1 1 173910 412 0.00 2019-11-16 14:21:14 2019-11-16 14:24:47 t 1 1 173913 412 0.00 2019-11-16 14:27:58 2019-11-16 14:31:35 t 1 1 173914 412 0.00 2019-11-16 14:31:54 2019-11-16 14:34:21 t 1 1 173922 564 0.00 2019-11-16 14:55:34 2019-11-16 14:55:44 t 1 1 173931 512 0.00 2019-11-16 15:43:02 2019-11-16 15:49:59 t 1 1 173932 564 0.00 2019-11-16 15:42:39 2019-11-16 15:50:45 t 1 1 173933 412 0.00 2019-11-16 15:49:51 2019-11-16 15:51:17 t 1 1 173935 564 0.00 2019-11-16 15:50:45 2019-11-16 16:01:53 t 1 1 173938 591 0.00 2019-11-16 16:08:51 2019-11-16 16:13:15 t 1 1 173941 412 0.00 2019-11-16 16:23:35 2019-11-16 16:27:41 t 1 1 173953 544 0.00 2019-11-21 17:53:16 2019-11-21 18:11:05 t 1 1 173969 649 0.00 2019-11-23 16:07:18 2019-11-23 16:09:49 t 1 1 173972 508 0.00 2019-11-23 16:28:51 2019-11-23 16:33:23 t 1 2 173978 220 0.00 2019-11-23 17:46:07 2019-11-23 17:48:08 t 1 1 173983 514 0.00 2019-11-23 17:59:27 2019-11-23 18:12:07 t 1 1 173990 220 0.00 2019-11-23 19:51:11 2019-11-23 19:51:19 t 1 1 173997 591 0.00 2019-11-23 20:15:05 2019-11-23 20:25:38 t 1 1 173998 508 0.00 2019-11-23 20:24:55 2019-11-23 20:27:06 t 1 2 174000 220 0.00 2019-11-23 20:29:45 2019-11-23 20:30:34 t 1 1 174003 220 0.00 2019-11-23 20:33:53 2019-11-23 20:34:08 t 1 1 174004 220 0.00 2019-11-23 20:44:24 2019-11-23 20:44:39 t 1 1 174013 508 0.00 2019-11-23 21:00:50 2019-11-23 21:07:22 t 1 2 174015 220 0.00 2019-11-23 21:09:28 2019-11-23 21:11:28 t 1 1 174016 483 0.00 2019-11-23 21:15:07 2019-11-23 21:16:28 t 1 1 174018 220 0.00 2019-11-23 21:19:10 2019-11-23 21:19:11 t 1 1 174020 635 0.00 2019-11-23 19:54:30 2019-11-23 21:22:05 t 1 1 174024 220 0.00 2019-11-23 21:29:34 2019-11-23 21:30:36 t 1 1 174026 591 0.00 2019-11-23 21:01:01 2019-11-23 21:38:36 t 1 1 174028 508 0.00 2019-11-23 21:48:04 2019-11-23 21:56:19 t 1 2 174034 508 0.00 2019-11-23 22:26:18 2019-11-23 22:30:01 t 1 2 174037 514 0.00 2019-11-23 22:29:39 2019-11-23 22:39:38 t 1 1 174039 508 0.00 2019-11-23 22:41:27 2019-11-23 22:41:57 t 1 2 174041 220 0.00 2019-11-23 22:43:08 2019-11-23 22:46:29 t 1 1 174046 514 0.00 2019-11-23 22:54:43 2019-11-23 23:41:10 t 1 1 174049 508 0.00 2019-11-23 23:45:08 2019-11-24 00:02:57 t 1 2 174053 220 0.00 2019-11-24 00:16:01 2019-11-24 00:28:37 t 1 1 174056 220 0.00 2019-11-24 00:29:47 2019-11-24 00:30:24 t 1 1 174061 220 0.00 2019-11-24 00:32:42 2019-11-24 00:33:19 t 1 1 174062 220 0.00 2019-11-24 00:33:18 2019-11-24 00:33:54 t 1 1 174063 220 0.00 2019-11-24 00:33:54 2019-11-24 00:34:30 t 1 1 174065 220 0.00 2019-11-24 00:35:04 2019-11-24 00:35:40 t 1 1 174069 220 0.00 2019-11-24 00:37:48 2019-11-24 00:38:20 t 1 1 174071 220 0.00 2019-11-24 00:38:20 2019-11-24 00:38:53 t 1 1 174072 220 0.00 2019-11-24 00:38:53 2019-11-24 00:39:27 t 1 1 174073 220 0.00 2019-11-24 00:39:27 2019-11-24 00:40:00 t 1 1 174077 220 0.00 2019-11-24 00:41:46 2019-11-24 00:42:19 t 1 1 174078 220 0.00 2019-11-24 00:42:19 2019-11-24 00:42:53 t 1 1 174084 220 0.00 2019-11-24 00:54:23 2019-11-24 00:54:57 t 1 1 174086 220 0.00 2019-11-24 00:55:30 2019-11-24 00:56:06 t 1 1 174087 220 0.00 2019-11-24 00:56:06 2019-11-24 00:56:39 t 1 1 174093 220 0.00 2019-11-24 00:59:25 2019-11-24 00:59:59 t 1 1 174095 220 0.00 2019-11-24 01:00:33 2019-11-24 01:01:06 t 1 1 174096 220 0.00 2019-11-24 01:01:06 2019-11-24 01:01:41 t 1 1 174102 220 0.00 2019-11-24 01:04:25 2019-11-24 01:04:57 t 1 1 174104 220 0.00 2019-11-24 01:05:30 2019-11-24 01:05:53 t 1 1 174105 220 0.00 2019-11-24 01:05:53 2019-11-24 01:06:25 t 1 1 174114 591 0.00 2019-11-24 08:59:17 2019-11-24 09:06:45 t 1 1 174117 615 0.00 2019-11-24 09:19:29 2019-11-24 09:26:35 t 1 1 174118 220 0.00 2019-11-24 09:30:35 2019-11-24 09:31:35 t 1 1 174119 615 0.00 2019-11-24 09:26:35 2019-11-24 09:33:07 t 1 1 174121 220 0.00 2019-11-24 09:40:38 2019-11-24 09:41:05 t 1 1 174122 615 0.00 2019-11-24 09:33:07 2019-11-24 09:42:27 t 1 1 174131 615 0.00 2019-11-24 10:11:22 2019-11-24 10:16:00 t 1 1 174133 220 0.00 2019-11-24 09:58:11 2019-11-24 10:26:34 t 1 2 174137 220 0.00 2019-11-24 11:32:41 2019-11-24 11:32:42 t 1 1 174139 220 0.00 2019-11-24 11:42:52 2019-11-24 11:43:01 t 1 1 174140 220 0.00 2019-11-24 11:53:22 2019-11-24 11:54:23 t 1 1 174141 591 0.00 2019-11-24 10:01:39 2019-11-24 12:05:07 t 1 1 174142 220 0.00 2019-11-24 12:10:38 2019-11-24 12:12:38 t 1 1 174143 220 0.00 2019-11-24 12:05:26 2019-11-24 12:12:58 t 1 1 174144 591 0.00 2019-11-24 12:05:07 2019-11-24 12:21:19 t 1 1 174145 220 0.00 2019-11-24 12:12:58 2019-11-24 12:32:00 t 1 1 174146 615 0.00 2019-11-24 12:41:04 2019-11-24 12:45:13 t 1 1 174147 220 0.00 2019-11-24 12:32:00 2019-11-24 12:50:47 t 1 1 174150 512 0.00 2019-11-24 12:47:44 2019-11-24 12:54:05 t 1 1 174151 591 0.00 2019-11-24 12:32:32 2019-11-24 13:02:09 t 1 1 174152 512 0.00 2019-11-24 12:54:05 2019-11-24 13:02:36 t 1 1 174154 514 0.00 2019-11-24 12:30:17 2019-11-24 13:05:02 t 1 1 174155 508 0.00 2019-11-24 12:53:18 2019-11-24 13:05:29 t 1 2 174159 562 0.00 2019-11-24 13:38:59 2019-11-24 13:40:02 t 1 1 174164 327 0.00 2019-11-24 13:58:20 2019-11-24 13:58:20 f 1 1 174168 514 0.00 2019-11-24 13:05:02 2019-11-24 14:08:37 t 1 1 174169 635 0.00 2019-11-24 13:52:28 2019-11-24 14:11:28 t 1 1 174170 512 0.00 2019-11-24 13:50:41 2019-11-24 14:13:48 t 1 1 174173 627 0.00 2019-11-24 14:02:49 2019-11-24 14:21:11 t 1 1 174177 514 0.00 2019-11-24 14:18:14 2019-11-24 14:32:02 t 1 1 174179 220 0.00 2019-11-24 14:27:41 2019-11-24 14:36:34 t 1 2 174180 220 0.00 2019-11-24 14:43:04 2019-11-24 14:46:33 t 1 1 174182 498 0.00 2019-11-24 14:30:58 2019-11-24 15:01:52 t 1 2 174185 627 0.00 2019-11-24 15:03:04 2019-11-24 15:04:12 t 1 1 174186 220 0.00 2019-11-24 14:48:14 2019-11-24 15:06:39 t 1 1 174189 220 0.00 2019-11-24 15:17:09 2019-11-24 15:17:09 t 1 1 174198 514 0.00 2019-11-24 15:28:14 2019-11-24 15:54:12 t 1 1 174207 585 0.00 2019-11-24 17:17:38 2019-11-24 17:17:38 f 1 1 174210 585 0.00 2019-11-24 17:18:18 2019-11-24 17:18:18 f 1 1 174212 585 0.00 2019-11-24 17:19:31 2019-11-24 17:19:31 f 1 1 174216 585 0.00 2019-11-24 17:44:20 2019-11-24 17:44:20 f 1 1 174220 615 0.00 2019-11-24 18:19:26 2019-11-24 18:24:34 t 1 1 174224 635 0.00 2019-11-24 18:57:50 2019-11-24 19:02:13 t 1 1 174228 591 0.00 2019-11-24 19:32:37 2019-11-24 19:36:11 t 1 1 174229 591 0.00 2019-11-24 19:38:25 2019-11-24 19:40:12 t 1 1 174231 649 0.00 2019-11-24 19:46:08 2019-11-24 19:47:21 t 1 1 174234 220 0.00 2019-11-24 19:57:33 2019-11-24 19:57:35 t 1 1 174236 220 0.00 2019-11-24 20:01:51 2019-11-24 20:01:52 t 1 2 174238 660 0.00 2019-11-24 20:08:08 2019-11-24 20:13:01 t 1 1 174239 220 0.00 2019-11-24 20:29:37 2019-11-24 20:30:42 t 1 1 174241 220 0.00 2019-11-24 20:10:28 2019-11-24 20:51:18 t 1 1 174246 220 0.00 2019-11-24 20:55:12 2019-11-24 21:06:33 t 1 1 174249 220 0.00 2019-11-24 21:07:08 2019-11-24 21:17:07 t 1 1 174252 220 0.00 2019-11-24 21:27:37 2019-11-24 21:28:10 t 1 1 174255 665 0.00 2019-11-24 21:40:57 2019-11-24 21:53:37 t 1 1 174259 220 0.00 2019-11-24 21:41:43 2019-11-24 22:26:04 t 1 2 174263 220 0.00 2019-11-24 22:30:14 2019-11-24 22:31:15 t 1 1 174264 591 0.00 2019-11-24 20:45:29 2019-11-24 22:35:20 t 1 1 174275 220 0.00 2019-11-24 22:52:43 2019-11-24 22:57:54 t 1 1 174277 645 0.00 2019-11-24 22:46:19 2019-11-24 22:58:43 t 1 1 174279 220 0.00 2019-11-24 23:01:18 2019-11-24 23:08:24 t 1 1 174283 591 0.00 2019-11-24 23:11:18 2019-11-24 23:11:50 t 1 1 174286 508 0.00 2019-11-24 21:14:02 2019-11-24 23:15:30 t 1 2 174289 660 0.00 2019-11-24 23:10:08 2019-11-24 23:19:37 t 1 1 174290 220 0.00 2019-11-24 23:19:17 2019-11-24 23:22:56 t 1 1 174291 220 0.00 2019-11-24 23:25:11 2019-11-24 23:25:20 t 1 1 174297 220 0.00 2019-11-24 23:54:59 2019-11-24 23:55:07 t 1 1 174303 220 0.00 2019-11-25 00:25:24 2019-11-25 00:30:53 t 1 1 174305 645 0.00 2019-11-25 00:30:18 2019-11-25 00:32:19 t 1 1 174308 220 0.00 2019-11-25 00:41:23 2019-11-25 00:41:38 t 1 1 174309 220 0.00 2019-11-25 00:45:56 2019-11-25 00:51:53 t 1 1 174311 220 0.00 2019-11-25 00:54:55 2019-11-25 01:02:23 t 1 1 174315 220 0.00 2019-11-25 01:13:28 2019-11-25 01:23:24 t 1 1 174319 220 0.00 2019-11-25 01:41:19 2019-11-25 01:44:25 t 1 1 174325 220 0.00 2019-11-25 02:05:42 2019-11-25 02:07:42 t 1 1 174327 220 0.00 2019-11-25 02:14:57 2019-11-25 02:15:06 t 1 1 174330 220 0.00 2019-11-25 02:17:18 2019-11-25 02:24:40 t 1 1 174333 220 0.00 2019-11-25 02:26:20 2019-11-25 02:34:22 t 1 1 174335 220 0.00 2019-11-25 02:34:48 2019-11-25 02:34:49 t 1 1 174347 220 0.00 2019-11-25 03:24:24 2019-11-25 03:33:40 t 1 1 174356 220 0.00 2019-11-25 04:03:49 2019-11-25 04:05:44 t 1 1 174358 220 0.00 2019-11-25 04:13:06 2019-11-25 04:13:15 t 1 1 174363 220 0.00 2019-11-25 04:25:44 2019-11-25 04:30:45 t 1 1 174366 220 0.00 2019-11-25 04:41:15 2019-11-25 04:41:30 t 1 1 174367 220 0.00 2019-11-25 04:43:46 2019-11-25 04:51:46 t 1 1 174369 220 0.00 2019-11-25 04:53:50 2019-11-25 05:00:51 t 1 1 174372 220 0.00 2019-11-25 05:11:22 2019-11-25 05:11:37 t 1 1 174373 220 0.00 2019-11-25 05:20:19 2019-11-25 05:21:52 t 1 1 174375 514 0.00 2019-11-25 04:26:34 2019-11-25 05:22:26 t 1 1 174379 220 0.00 2019-11-25 05:42:52 2019-11-25 05:43:00 t 1 1 174380 220 0.00 2019-11-25 05:43:08 2019-11-25 05:43:23 t 1 1 174381 645 0.00 2019-11-25 05:50:58 2019-11-25 05:51:11 t 1 1 174382 220 0.00 2019-11-25 05:47:19 2019-11-25 05:53:39 t 1 1 174390 220 0.00 2019-11-25 06:14:38 2019-11-25 06:14:52 t 1 1 174391 645 0.00 2019-11-25 06:25:09 2019-11-25 06:25:17 t 1 1 174392 220 0.00 2019-11-25 06:25:08 2019-11-25 06:25:23 t 1 1 174400 220 0.00 2019-11-25 06:44:31 2019-11-25 06:53:01 t 1 1 174405 220 0.00 2019-11-25 07:03:32 2019-11-25 07:03:47 t 1 1 174408 220 0.00 2019-11-25 07:05:32 2019-11-25 07:14:02 t 1 1 174411 220 0.00 2019-11-25 07:24:32 2019-11-25 07:24:47 t 1 1 174415 220 0.00 2019-11-25 07:34:36 2019-11-25 07:34:36 t 1 1 174422 220 0.00 2019-11-25 07:52:45 2019-11-25 07:53:17 t 1 1 174423 220 0.00 2019-11-25 07:54:36 2019-11-25 08:03:16 t 1 1 174430 220 0.00 2019-11-25 08:22:36 2019-11-25 08:23:10 t 1 1 174433 220 0.00 2019-11-25 08:33:11 2019-11-25 08:33:27 t 1 1 174438 615 0.00 2019-11-25 08:40:48 2019-11-25 08:47:30 t 1 1 174441 220 0.00 2019-11-25 07:36:42 2019-11-25 08:55:34 t 1 2 174442 220 0.00 2019-11-25 08:57:43 2019-11-25 09:01:32 t 1 1 174444 220 0.00 2019-11-25 09:04:04 2019-11-25 09:11:36 t 1 1 174447 220 0.00 2019-11-25 08:45:46 2019-11-25 09:18:17 t 1 2 174448 220 0.00 2019-11-25 09:18:35 2019-11-25 09:18:44 t 1 1 174453 220 0.00 2019-11-25 09:35:37 2019-11-25 09:35:44 t 1 1 174455 615 0.00 2019-11-25 09:32:29 2019-11-25 09:41:16 t 1 1 174457 220 0.00 2019-11-25 09:42:36 2019-11-25 09:42:44 t 1 1 174458 514 0.00 2019-11-25 05:22:26 2019-11-25 09:50:42 t 1 1 174459 220 0.00 2019-11-25 09:24:29 2019-11-25 09:52:17 t 1 2 174460 220 0.00 2019-11-25 09:53:06 2019-11-25 09:53:20 t 1 1 174461 220 0.00 2019-11-25 10:03:36 2019-11-25 10:03:43 t 1 1 174462 220 0.00 2019-11-25 10:03:51 2019-11-25 10:04:06 t 1 1 174463 220 0.00 2019-11-25 09:57:28 2019-11-25 10:07:28 t 1 2 174464 499 0.00 2019-11-25 10:08:32 2019-11-25 10:10:34 t 1 1 174465 220 0.00 2019-11-25 10:14:22 2019-11-25 10:14:30 t 1 1 174466 220 0.00 2019-11-25 10:24:52 2019-11-25 10:25:01 t 1 1 174467 498 0.00 2019-11-25 09:16:22 2019-11-25 10:33:50 t 1 2 174148 220 0.00 2019-11-24 12:50:46 2019-11-24 12:51:04 t 1 1 174149 220 0.00 2019-11-24 12:51:12 2019-11-24 12:52:13 t 1 1 174156 591 0.00 2019-11-24 13:03:05 2019-11-24 13:22:40 t 1 1 174157 562 0.00 2019-11-24 13:30:49 2019-11-24 13:35:22 t 1 1 174158 562 0.00 2019-11-24 13:36:55 2019-11-24 13:38:59 t 1 1 174160 512 0.00 2019-11-24 13:44:02 2019-11-24 13:50:41 t 1 1 174161 220 0.00 2019-11-24 12:53:13 2019-11-24 13:51:08 t 1 1 174171 514 0.00 2019-11-24 14:08:37 2019-11-24 14:18:14 t 1 1 174172 649 0.00 2019-11-24 13:56:48 2019-11-24 14:18:40 t 1 1 174176 220 0.00 2019-11-24 14:23:11 2019-11-24 14:27:38 t 1 1 174178 512 0.00 2019-11-24 14:17:07 2019-11-24 14:35:30 t 1 1 174181 220 0.00 2019-11-24 14:46:33 2019-11-24 14:46:59 t 1 1 174187 220 0.00 2019-11-24 15:06:39 2019-11-24 15:06:48 t 1 1 174190 220 0.00 2019-11-24 15:17:43 2019-11-24 15:20:21 t 1 1 174191 220 0.00 2019-11-24 13:22:11 2019-11-24 15:22:35 t 1 2 174192 220 0.00 2019-11-24 15:27:31 2019-11-24 15:27:40 t 1 1 174199 589 0.00 2019-11-24 16:10:09 2019-11-24 16:10:09 f 1 1 174201 589 0.00 2019-11-24 16:21:00 2019-11-24 16:21:00 f 1 1 174202 514 0.00 2019-11-24 16:17:14 2019-11-24 16:27:37 t 1 1 174204 514 0.00 2019-11-24 16:27:37 2019-11-24 16:55:44 t 1 1 174205 615 0.00 2019-11-24 16:51:35 2019-11-24 16:57:19 t 1 1 174206 585 0.00 2019-11-24 17:17:30 2019-11-24 17:17:30 f 1 1 174209 585 0.00 2019-11-24 17:17:56 2019-11-24 17:17:56 f 1 1 174211 585 0.00 2019-11-24 17:19:24 2019-11-24 17:19:24 f 1 1 174213 585 0.00 2019-11-24 17:20:51 2019-11-24 17:20:51 f 1 1 174214 615 0.00 2019-11-24 17:26:08 2019-11-24 17:34:23 t 1 1 174219 615 0.00 2019-11-24 17:43:40 2019-11-24 18:01:51 t 1 1 174223 615 0.00 2019-11-24 18:46:00 2019-11-24 18:47:54 t 1 1 174226 635 0.00 2019-11-24 19:16:23 2019-11-24 19:21:41 t 1 1 174227 483 0.00 2019-11-24 18:59:48 2019-11-24 19:23:22 t 1 1 174230 220 0.00 2019-11-24 19:47:03 2019-11-24 19:47:15 t 1 1 174232 591 0.00 2019-11-24 19:45:28 2019-11-24 19:48:08 t 1 1 174233 585 0.00 2019-11-24 19:54:19 2019-11-24 19:54:19 f 1 1 174245 508 0.00 2019-11-24 21:03:39 2019-11-24 21:05:14 t 1 2 174247 220 0.00 2019-11-24 21:06:33 2019-11-24 21:07:05 t 1 1 174248 220 0.00 2019-11-24 16:34:21 2019-11-24 21:15:15 t 1 2 174253 220 0.00 2019-11-24 21:28:21 2019-11-24 21:35:00 t 1 1 174256 635 0.00 2019-11-24 21:45:54 2019-11-24 21:58:20 t 1 1 174261 220 0.00 2019-11-24 22:21:34 2019-11-24 22:29:47 t 1 1 174265 220 0.00 2019-11-24 22:34:21 2019-11-24 22:36:54 t 1 1 174268 591 0.00 2019-11-24 22:35:20 2019-11-24 22:41:54 t 1 1 174269 645 0.00 2019-11-24 22:43:53 2019-11-24 22:45:08 t 1 1 174271 220 0.00 2019-11-24 22:42:54 2019-11-24 22:47:23 t 1 1 174276 220 0.00 2019-11-24 22:57:53 2019-11-24 22:58:08 t 1 1 174278 660 0.00 2019-11-24 22:51:51 2019-11-24 23:00:39 t 1 1 174280 220 0.00 2019-11-24 23:08:24 2019-11-24 23:08:32 t 1 1 174281 220 0.00 2019-11-24 23:08:40 2019-11-24 23:09:41 t 1 1 174287 220 0.00 2019-11-24 23:15:28 2019-11-24 23:15:37 t 1 1 174288 220 0.00 2019-11-24 23:15:54 2019-11-24 23:16:55 t 1 1 174293 660 0.00 2019-11-24 23:19:37 2019-11-24 23:29:20 t 1 1 174294 660 0.00 2019-11-24 23:29:20 2019-11-24 23:35:16 t 1 1 174295 220 0.00 2019-11-24 23:35:04 2019-11-24 23:35:44 t 1 1 174296 220 0.00 2019-11-24 23:45:40 2019-11-24 23:46:41 t 1 1 174299 220 0.00 2019-11-25 00:02:28 2019-11-25 00:02:37 t 1 1 174301 220 0.00 2019-11-25 00:09:54 2019-11-25 00:10:08 t 1 1 174304 220 0.00 2019-11-25 00:30:53 2019-11-25 00:31:07 t 1 1 174310 220 0.00 2019-11-25 00:51:53 2019-11-25 00:52:01 t 1 1 174312 220 0.00 2019-11-25 01:02:23 2019-11-25 01:02:37 t 1 1 174313 220 0.00 2019-11-25 01:03:55 2019-11-25 01:12:54 t 1 1 174316 220 0.00 2019-11-25 01:23:23 2019-11-25 01:23:37 t 1 1 174317 220 0.00 2019-11-25 01:32:17 2019-11-25 01:33:54 t 1 1 174320 220 0.00 2019-11-25 01:44:24 2019-11-25 01:44:39 t 1 1 174321 220 0.00 2019-11-25 01:50:52 2019-11-25 01:54:55 t 1 1 174323 220 0.00 2019-11-25 01:59:18 2019-11-25 02:05:25 t 1 1 174329 574 0.00 2019-11-25 01:02:18 2019-11-25 02:22:12 t 1 1 174331 220 0.00 2019-11-25 02:24:40 2019-11-25 02:24:49 t 1 1 174334 220 0.00 2019-11-25 02:34:22 2019-11-25 02:34:35 t 1 1 174337 220 0.00 2019-11-25 02:44:12 2019-11-25 02:44:21 t 1 1 174340 220 0.00 2019-11-25 03:01:50 2019-11-25 03:02:05 t 1 1 174341 220 0.00 2019-11-25 03:12:23 2019-11-25 03:12:38 t 1 1 174342 220 0.00 2019-11-25 03:13:08 2019-11-25 03:22:53 t 1 1 174346 514 0.00 2019-11-25 03:32:31 2019-11-25 03:33:34 t 1 1 174348 220 0.00 2019-11-25 03:33:39 2019-11-25 03:33:41 t 1 1 174349 220 0.00 2019-11-25 03:33:49 2019-11-25 03:34:50 t 1 1 174352 514 0.00 2019-11-25 03:53:59 2019-11-25 03:58:33 t 1 1 174353 220 0.00 2019-11-25 03:41:12 2019-11-25 04:00:20 t 1 1 174355 220 0.00 2019-11-25 04:00:45 2019-11-25 04:00:46 t 1 1 174357 220 0.00 2019-11-25 04:08:16 2019-11-25 04:13:06 t 1 1 174371 220 0.00 2019-11-25 05:02:20 2019-11-25 05:11:22 t 1 1 174377 220 0.00 2019-11-25 05:32:22 2019-11-25 05:32:37 t 1 1 174378 220 0.00 2019-11-25 05:38:20 2019-11-25 05:42:52 t 1 1 174384 645 0.00 2019-11-25 05:51:33 2019-11-25 05:58:14 t 1 1 174385 645 0.00 2019-11-25 05:58:14 2019-11-25 05:58:42 t 1 1 174387 220 0.00 2019-11-25 06:04:09 2019-11-25 06:04:17 t 1 1 174388 645 0.00 2019-11-25 06:04:55 2019-11-25 06:05:07 t 1 1 174395 220 0.00 2019-11-25 06:35:14 2019-11-25 06:36:15 t 1 1 174397 220 0.00 2019-11-25 06:42:31 2019-11-25 06:42:45 t 1 1 174398 645 0.00 2019-11-25 06:32:06 2019-11-25 06:51:15 t 1 1 174399 645 0.00 2019-11-25 06:51:15 2019-11-25 06:51:45 t 1 1 174403 430 0.00 2019-11-25 06:30:09 2019-11-25 06:58:39 t 1 1 174404 220 0.00 2019-11-25 06:54:59 2019-11-25 07:03:33 t 1 1 174407 645 0.00 2019-11-25 07:07:29 2019-11-25 07:09:54 t 1 1 174410 220 0.00 2019-11-25 07:16:17 2019-11-25 07:24:32 t 1 1 174412 220 0.00 2019-11-25 07:24:55 2019-11-25 07:25:55 t 1 1 174413 220 0.00 2019-11-25 07:26:48 2019-11-25 07:34:10 t 1 1 174417 430 0.00 2019-11-25 07:38:33 2019-11-25 07:40:40 t 1 1 174418 220 0.00 2019-11-25 07:35:29 2019-11-25 07:42:16 t 1 1 174421 220 0.00 2019-11-25 07:42:50 2019-11-25 07:52:45 t 1 1 174426 220 0.00 2019-11-25 08:09:49 2019-11-25 08:09:58 t 1 1 174434 591 0.00 2019-11-25 08:29:57 2019-11-25 08:33:55 t 1 1 174436 591 0.00 2019-11-25 08:38:18 2019-11-25 08:42:51 t 1 1 174437 220 0.00 2019-11-25 08:43:41 2019-11-25 08:43:43 t 1 1 174446 615 0.00 2019-11-25 09:00:47 2019-11-25 09:13:52 t 1 1 174449 220 0.00 2019-11-25 09:19:01 2019-11-25 09:19:02 t 1 1 174450 220 0.00 2019-11-25 09:25:07 2019-11-25 09:25:19 t 1 1 174452 591 0.00 2019-11-25 09:28:28 2019-11-25 09:33:01 t 1 1 174456 220 0.00 2019-11-25 09:37:04 2019-11-25 09:42:13 t 1 1 174153 591 0.00 2019-11-24 13:02:09 2019-11-24 13:03:05 t 1 1 174162 220 0.00 2019-11-24 13:51:08 2019-11-24 13:51:19 t 1 1 174163 220 0.00 2019-11-24 13:51:27 2019-11-24 13:51:37 t 1 1 174165 591 0.00 2019-11-24 13:59:33 2019-11-24 14:00:43 t 1 1 174166 220 0.00 2019-11-24 13:51:47 2019-11-24 14:01:59 t 1 1 174167 220 0.00 2019-11-24 14:01:58 2019-11-24 14:02:45 t 1 1 174174 649 0.00 2019-11-24 14:18:40 2019-11-24 14:21:39 t 1 1 174175 220 0.00 2019-11-24 14:02:45 2019-11-24 14:23:11 t 1 1 174183 627 0.00 2019-11-24 14:24:39 2019-11-24 15:03:04 t 1 1 174184 508 0.00 2019-11-24 14:04:24 2019-11-24 15:04:05 t 1 2 174188 220 0.00 2019-11-24 15:07:15 2019-11-24 15:17:09 t 1 1 174193 514 0.00 2019-11-24 14:32:02 2019-11-24 15:28:14 t 1 1 174194 508 0.00 2019-11-24 15:07:37 2019-11-24 15:31:18 t 1 2 174195 220 0.00 2019-11-24 15:38:00 2019-11-24 15:38:27 t 1 1 174196 220 0.00 2019-11-24 15:38:26 2019-11-24 15:47:57 t 1 1 174197 220 0.00 2019-11-24 15:48:05 2019-11-24 15:48:20 t 1 1 174200 514 0.00 2019-11-24 15:54:12 2019-11-24 16:17:14 t 1 1 174203 220 0.00 2019-11-24 15:24:48 2019-11-24 16:32:11 t 1 2 174208 585 0.00 2019-11-24 17:17:45 2019-11-24 17:17:45 f 1 1 174215 615 0.00 2019-11-24 17:34:23 2019-11-24 17:43:40 t 1 1 174217 585 0.00 2019-11-24 17:44:40 2019-11-24 17:44:40 f 1 1 174218 514 0.00 2019-11-24 16:55:44 2019-11-24 17:45:48 t 1 1 174221 615 0.00 2019-11-24 18:37:47 2019-11-24 18:40:29 t 1 1 174222 220 0.00 2019-11-24 18:27:17 2019-11-24 18:46:40 t 1 2 174225 635 0.00 2019-11-24 19:03:09 2019-11-24 19:04:53 t 1 1 174235 220 0.00 2019-11-24 19:57:42 2019-11-24 19:57:57 t 1 1 174237 220 0.00 2019-11-24 20:08:13 2019-11-24 20:09:14 t 1 1 174240 508 0.00 2019-11-24 20:38:45 2019-11-24 20:48:14 t 1 2 174242 220 0.00 2019-11-24 20:51:18 2019-11-24 20:51:30 t 1 1 174243 498 0.00 2019-11-24 19:55:07 2019-11-24 20:58:15 t 1 2 174244 508 0.00 2019-11-24 20:51:12 2019-11-24 20:59:22 t 1 2 174250 220 0.00 2019-11-24 21:17:03 2019-11-24 21:17:36 t 1 1 174251 220 0.00 2019-11-24 21:17:42 2019-11-24 21:27:38 t 1 1 174254 220 0.00 2019-11-24 21:38:07 2019-11-24 21:38:19 t 1 1 174257 220 0.00 2019-11-24 22:09:41 2019-11-24 22:10:18 t 1 1 174258 220 0.00 2019-11-24 22:20:12 2019-11-24 22:20:14 t 1 1 174260 649 0.00 2019-11-24 22:17:12 2019-11-24 22:29:42 t 1 1 174262 220 0.00 2019-11-24 22:29:47 2019-11-24 22:29:56 t 1 1 174266 220 0.00 2019-11-24 22:36:53 2019-11-24 22:37:08 t 1 1 174267 512 0.00 2019-11-24 22:31:44 2019-11-24 22:39:19 t 1 1 174270 591 0.00 2019-11-24 22:45:29 2019-11-24 22:46:13 t 1 1 174272 220 0.00 2019-11-24 22:47:23 2019-11-24 22:47:38 t 1 1 174273 660 0.00 2019-11-24 22:10:08 2019-11-24 22:51:51 t 1 1 174274 591 0.00 2019-11-24 22:53:47 2019-11-24 22:54:14 t 1 1 174282 660 0.00 2019-11-24 23:00:39 2019-11-24 23:10:08 t 1 1 174284 645 0.00 2019-11-24 23:02:49 2019-11-24 23:12:27 t 1 1 174285 220 0.00 2019-11-24 23:10:17 2019-11-24 23:15:28 t 1 1 174292 220 0.00 2019-11-24 23:25:36 2019-11-24 23:25:37 t 1 1 174298 220 0.00 2019-11-24 23:55:25 2019-11-24 23:56:26 t 1 1 174300 220 0.00 2019-11-25 00:02:54 2019-11-25 00:04:42 t 1 1 174302 220 0.00 2019-11-25 00:20:24 2019-11-25 00:20:32 t 1 1 174306 514 0.00 2019-11-25 00:40:35 2019-11-25 00:40:51 t 1 1 174307 220 0.00 2019-11-25 00:37:26 2019-11-25 00:41:23 t 1 1 174314 220 0.00 2019-11-25 01:12:53 2019-11-25 01:13:01 t 1 1 174318 220 0.00 2019-11-25 01:33:53 2019-11-25 01:34:08 t 1 1 174322 220 0.00 2019-11-25 01:54:54 2019-11-25 01:55:09 t 1 1 174324 220 0.00 2019-11-25 02:05:24 2019-11-25 02:05:33 t 1 1 174326 220 0.00 2019-11-25 02:08:18 2019-11-25 02:14:57 t 1 1 174328 220 0.00 2019-11-25 02:15:24 2019-11-25 02:16:24 t 1 1 174332 220 0.00 2019-11-25 02:25:06 2019-11-25 02:26:07 t 1 1 174336 220 0.00 2019-11-25 02:35:20 2019-11-25 02:44:12 t 1 1 174338 220 0.00 2019-11-25 02:44:38 2019-11-25 02:45:39 t 1 1 174339 220 0.00 2019-11-25 02:51:20 2019-11-25 02:51:34 t 1 1 174343 220 0.00 2019-11-25 03:22:53 2019-11-25 03:23:01 t 1 1 174344 220 0.00 2019-11-25 03:23:09 2019-11-25 03:23:24 t 1 1 174345 514 0.00 2019-11-25 03:27:17 2019-11-25 03:28:20 t 1 1 174350 220 0.00 2019-11-25 03:40:34 2019-11-25 03:40:49 t 1 1 174351 514 0.00 2019-11-25 03:49:46 2019-11-25 03:53:59 t 1 1 174354 220 0.00 2019-11-25 04:00:20 2019-11-25 04:00:30 t 1 1 174359 220 0.00 2019-11-25 04:13:34 2019-11-25 04:14:44 t 1 1 174360 220 0.00 2019-11-25 04:16:45 2019-11-25 04:20:14 t 1 1 174361 220 0.00 2019-11-25 04:20:14 2019-11-25 04:20:28 t 1 1 174362 514 0.00 2019-11-25 03:58:33 2019-11-25 04:26:34 t 1 1 174364 220 0.00 2019-11-25 04:30:44 2019-11-25 04:30:59 t 1 1 174365 220 0.00 2019-11-25 04:35:17 2019-11-25 04:41:15 t 1 1 174368 220 0.00 2019-11-25 04:51:46 2019-11-25 04:51:47 t 1 1 174370 220 0.00 2019-11-25 05:00:51 2019-11-25 05:01:04 t 1 1 174374 220 0.00 2019-11-25 05:21:52 2019-11-25 05:22:06 t 1 1 174376 220 0.00 2019-11-25 05:29:52 2019-11-25 05:32:22 t 1 1 174383 220 0.00 2019-11-25 05:53:39 2019-11-25 05:53:48 t 1 1 174386 220 0.00 2019-11-25 05:56:21 2019-11-25 06:04:09 t 1 1 174389 220 0.00 2019-11-25 06:05:20 2019-11-25 06:12:14 t 1 1 174393 220 0.00 2019-11-25 06:25:31 2019-11-25 06:27:46 t 1 1 174394 220 0.00 2019-11-25 06:34:48 2019-11-25 06:34:57 t 1 1 174396 220 0.00 2019-11-25 06:40:29 2019-11-25 06:42:31 t 1 1 174401 220 0.00 2019-11-25 06:53:01 2019-11-25 06:53:16 t 1 1 174402 645 0.00 2019-11-25 06:52:21 2019-11-25 06:54:39 t 1 1 174406 430 0.00 2019-11-25 06:58:39 2019-11-25 07:05:22 t 1 1 174409 220 0.00 2019-11-25 07:14:02 2019-11-25 07:14:16 t 1 1 174414 220 0.00 2019-11-25 07:34:10 2019-11-25 07:34:19 t 1 1 174416 220 0.00 2019-11-25 07:37:38 2019-11-25 07:38:47 t 1 1 174419 220 0.00 2019-11-25 07:42:15 2019-11-25 07:42:45 t 1 1 174420 591 0.00 2019-11-25 07:25:42 2019-11-25 07:46:08 t 1 1 174424 220 0.00 2019-11-25 08:03:15 2019-11-25 08:03:17 t 1 1 174425 220 0.00 2019-11-25 08:04:27 2019-11-25 08:09:50 t 1 1 174427 220 0.00 2019-11-25 08:10:15 2019-11-25 08:10:16 t 1 1 174428 220 0.00 2019-11-25 08:13:18 2019-11-25 08:14:47 t 1 1 174429 220 0.00 2019-11-25 08:10:44 2019-11-25 08:22:36 t 1 1 174431 591 0.00 2019-11-25 08:06:14 2019-11-25 08:27:48 t 1 1 174432 220 0.00 2019-11-25 08:23:09 2019-11-25 08:33:11 t 1 1 174435 220 0.00 2019-11-25 08:33:51 2019-11-25 08:37:13 t 1 1 174439 220 0.00 2019-11-25 08:51:02 2019-11-25 08:51:16 t 1 1 174440 615 0.00 2019-11-25 08:47:30 2019-11-25 08:52:28 t 1 1 174443 220 0.00 2019-11-25 09:01:32 2019-11-25 09:01:47 t 1 1 174445 220 0.00 2019-11-25 09:12:02 2019-11-25 09:13:48 t 1 1 174451 591 0.00 2019-11-25 08:56:49 2019-11-25 09:26:28 t 1 1 174454 591 0.00 2019-11-25 09:34:09 2019-11-25 09:36:13 t 1 1 174468 220 0.00 2019-11-25 10:35:22 2019-11-25 10:35:37 t 1 1 174470 544 0.00 2019-11-25 10:28:12 2019-11-25 10:37:29 t 1 1 174474 220 0.00 2019-11-25 10:55:11 2019-11-25 10:55:20 t 1 1 174476 220 0.00 2019-11-25 11:07:56 2019-11-25 11:08:10 t 1 1 174478 220 0.00 2019-11-25 11:14:39 2019-11-25 11:14:52 t 1 1 174481 220 0.00 2019-11-25 11:34:39 2019-11-25 11:34:48 t 1 1 174484 220 0.00 2019-11-25 11:56:02 2019-11-25 11:56:03 t 1 1 174485 220 0.00 2019-11-25 11:59:05 2019-11-25 12:00:49 t 1 1 174487 220 0.00 2019-11-25 12:08:21 2019-11-25 12:08:30 t 1 1 174488 220 0.00 2019-11-25 12:08:47 2019-11-25 12:09:48 t 1 1 174490 615 0.00 2019-11-25 12:10:39 2019-11-25 12:14:27 t 1 1 174492 220 0.00 2019-11-25 12:25:56 2019-11-25 12:26:10 t 1 1 174493 591 0.00 2019-11-25 10:35:59 2019-11-25 12:28:17 t 1 1 174494 220 0.00 2019-11-25 12:36:26 2019-11-25 12:36:41 t 1 1 174495 591 0.00 2019-11-25 12:31:12 2019-11-25 12:45:40 t 1 1 174496 220 0.00 2019-11-25 12:46:57 2019-11-25 12:47:12 t 1 1 174499 220 0.00 2019-11-25 12:57:27 2019-11-25 12:57:35 t 1 1 174501 220 0.00 2019-11-25 12:58:58 2019-11-25 13:07:57 t 1 1 174506 220 0.00 2019-11-25 13:18:28 2019-11-25 13:18:42 t 1 1 174508 220 0.00 2019-11-25 13:20:29 2019-11-25 13:28:58 t 1 1 174514 514 0.00 2019-11-25 13:45:14 2019-11-25 13:46:16 t 1 1 174515 514 0.00 2019-11-25 13:47:21 2019-11-25 13:48:46 t 1 1 174516 220 0.00 2019-11-25 13:41:36 2019-11-25 13:49:58 t 1 1 174520 220 0.00 2019-11-25 14:00:29 2019-11-25 14:00:43 t 1 1 174522 220 0.00 2019-11-25 14:01:08 2019-11-25 14:10:59 t 1 1 174525 220 0.00 2019-11-25 14:02:15 2019-11-25 14:11:38 t 1 2 174526 649 0.00 2019-11-25 13:58:16 2019-11-25 14:13:57 t 1 1 174528 220 0.00 2019-11-25 11:46:40 2019-11-25 14:19:03 t 1 2 174529 220 0.00 2019-11-25 14:11:33 2019-11-25 14:21:46 t 1 1 174534 544 0.00 2019-11-25 14:29:33 2019-11-25 14:33:11 t 1 1 174538 220 0.00 2019-11-25 14:44:56 2019-11-25 14:44:57 t 1 1 174540 498 0.00 2019-11-25 13:39:36 2019-11-25 14:47:19 t 1 2 174547 220 0.00 2019-11-25 15:11:31 2019-11-25 15:11:39 t 1 1 174548 220 0.00 2019-11-25 15:11:39 2019-11-25 15:17:50 t 1 1 174550 220 0.00 2019-11-25 15:18:14 2019-11-25 15:18:15 t 1 1 174551 220 0.00 2019-11-25 15:05:21 2019-11-25 15:21:00 t 1 2 174552 220 0.00 2019-11-25 15:24:43 2019-11-25 15:24:55 t 1 2 174553 220 0.00 2019-11-25 15:18:21 2019-11-25 15:27:37 t 1 1 174555 220 0.00 2019-11-25 15:28:02 2019-11-25 15:28:03 t 1 1 174560 220 0.00 2019-11-25 15:44:56 2019-11-25 15:45:11 t 1 1 174565 615 0.00 2019-11-25 15:52:04 2019-11-25 15:57:38 t 1 1 174566 220 0.00 2019-11-25 15:56:02 2019-11-25 16:01:04 t 1 1 174569 615 0.00 2019-11-25 16:37:11 2019-11-25 16:44:21 t 1 1 174570 220 0.00 2019-11-25 16:53:39 2019-11-25 16:54:34 t 1 2 174578 615 0.00 2019-11-25 17:16:49 2019-11-25 17:29:38 t 1 1 174581 623 0.00 2019-11-25 17:39:02 2019-11-25 17:39:12 t 1 1 174584 220 0.00 2019-11-25 17:39:30 2019-11-25 17:39:34 t 1 1 174585 623 0.00 2019-11-25 17:39:59 2019-11-25 17:40:08 t 1 1 174587 623 0.00 2019-11-25 17:43:19 2019-11-25 17:43:51 t 1 1 174589 220 0.00 2019-11-25 17:45:54 2019-11-25 17:46:09 t 1 1 174592 514 0.00 2019-11-25 17:30:41 2019-11-25 17:55:03 t 1 1 174594 220 0.00 2019-11-25 17:46:30 2019-11-25 18:01:31 t 1 1 174599 623 0.00 2019-11-25 18:10:08 2019-11-25 18:11:13 t 1 1 174600 512 0.00 2019-11-25 17:11:33 2019-11-25 18:12:42 t 1 1 174601 623 0.00 2019-11-25 18:12:50 2019-11-25 18:13:13 t 1 1 174605 645 0.00 2019-11-25 18:27:39 2019-11-25 18:31:19 t 1 1 174609 220 0.00 2019-11-25 18:17:26 2019-11-25 18:42:02 t 1 1 174610 220 0.00 2019-11-25 18:42:02 2019-11-25 18:42:40 t 1 1 174613 623 0.00 2019-11-25 18:44:19 2019-11-25 18:44:27 t 1 1 174616 615 0.00 2019-11-25 18:44:49 2019-11-25 18:51:12 t 1 1 174618 220 0.00 2019-11-25 18:43:59 2019-11-25 18:53:50 t 1 1 174620 623 0.00 2019-11-25 18:56:22 2019-11-25 18:56:55 t 1 1 174622 512 0.00 2019-11-25 18:13:10 2019-11-25 19:02:28 t 1 1 174624 220 0.00 2019-11-25 19:04:20 2019-11-25 19:04:35 t 1 1 174625 220 0.00 2019-11-25 19:04:43 2019-11-25 19:04:54 t 1 1 174627 623 0.00 2019-11-25 19:09:52 2019-11-25 19:10:53 t 1 1 174628 623 0.00 2019-11-25 19:14:51 2019-11-25 19:14:52 t 1 1 174633 623 0.00 2019-11-25 19:19:37 2019-11-25 19:19:48 t 1 1 174635 623 0.00 2019-11-25 19:21:27 2019-11-25 19:21:47 t 1 1 174645 220 0.00 2019-11-25 19:15:45 2019-11-25 19:41:22 t 1 1 174648 645 0.00 2019-11-25 19:45:18 2019-11-25 19:46:48 t 1 1 174650 220 0.00 2019-11-25 19:51:53 2019-11-25 19:52:07 t 1 1 174654 220 0.00 2019-11-25 19:52:29 2019-11-25 20:02:24 t 1 1 174658 623 0.00 2019-11-25 20:07:25 2019-11-25 20:09:00 t 1 1 174661 623 0.00 2019-11-25 20:11:05 2019-11-25 20:11:23 t 1 1 174662 623 0.00 2019-11-25 20:12:52 2019-11-25 20:13:15 t 1 1 174666 623 0.00 2019-11-25 20:17:33 2019-11-25 20:18:54 t 1 1 174669 623 0.00 2019-11-25 20:30:41 2019-11-25 20:31:16 t 1 1 174670 623 0.00 2019-11-25 20:31:49 2019-11-25 20:31:58 t 1 1 174671 623 0.00 2019-11-25 20:32:13 2019-11-25 20:32:23 t 1 1 174674 623 0.00 2019-11-25 20:38:16 2019-11-25 20:38:20 t 1 1 174679 220 0.00 2019-11-25 20:48:38 2019-11-25 20:48:39 t 1 1 174680 591 0.00 2019-11-25 20:09:08 2019-11-25 20:49:41 t 1 1 174685 220 0.00 2019-11-25 20:50:49 2019-11-25 21:31:47 t 1 1 174688 220 0.00 2019-11-25 21:36:35 2019-11-25 21:37:07 t 1 1 174695 591 0.00 2019-11-25 20:51:51 2019-11-25 22:10:09 t 1 1 174697 508 0.00 2019-11-25 22:17:49 2019-11-25 22:31:05 t 1 2 174709 220 0.00 2019-11-25 23:27:41 2019-11-25 23:28:17 t 1 1 174710 645 0.00 2019-11-25 23:19:50 2019-11-25 23:30:42 t 1 1 174713 512 0.00 2019-11-25 23:44:19 2019-11-25 23:44:19 t 1 1 174714 512 0.00 2019-11-25 23:44:19 2019-11-25 23:44:41 t 1 1 174718 220 0.00 2019-11-25 23:49:41 2019-11-25 23:55:05 t 1 1 174721 512 0.00 2019-11-25 23:57:08 2019-11-26 00:18:51 t 1 1 174722 645 0.00 2019-11-26 00:03:32 2019-11-26 00:21:44 t 1 1 174724 512 0.00 2019-11-26 00:18:51 2019-11-26 00:29:54 t 1 1 174727 499 0.00 2019-11-26 04:10:43 2019-11-26 04:12:35 t 1 1 174728 499 0.00 2019-11-26 04:13:20 2019-11-26 04:14:10 t 1 1 174732 645 0.00 2019-11-26 06:53:13 2019-11-26 06:57:36 t 1 1 174737 645 0.00 2019-11-26 07:43:57 2019-11-26 07:44:05 t 1 1 174738 645 0.00 2019-11-26 07:54:26 2019-11-26 07:54:48 t 1 1 174743 645 0.00 2019-11-26 08:13:24 2019-11-26 08:13:56 t 1 1 174745 645 0.00 2019-11-26 08:17:12 2019-11-26 08:17:23 t 1 1 174760 516 0.00 2019-11-26 09:06:43 2019-11-26 09:06:49 t 1 1 174764 516 0.00 2019-11-26 09:09:36 2019-11-26 09:09:41 t 1 1 174765 516 0.00 2019-11-26 09:09:46 2019-11-26 09:09:54 t 1 1 174766 627 0.00 2019-11-26 08:59:55 2019-11-26 09:11:22 t 1 1 174768 639 0.00 2019-11-26 09:19:05 2019-11-26 09:24:20 t 1 1 174469 591 0.00 2019-11-25 09:42:43 2019-11-25 10:35:59 t 1 1 174477 220 0.00 2019-11-25 11:08:22 2019-11-25 11:09:22 t 1 1 174480 220 0.00 2019-11-25 11:24:09 2019-11-25 11:24:22 t 1 1 174482 220 0.00 2019-11-25 11:45:09 2019-11-25 11:45:24 t 1 1 174483 220 0.00 2019-11-25 11:55:39 2019-11-25 11:55:54 t 1 1 174489 220 0.00 2019-11-25 10:40:03 2019-11-25 12:10:48 t 1 2 174491 220 0.00 2019-11-25 12:15:25 2019-11-25 12:15:39 t 1 1 174497 512 0.00 2019-11-25 12:30:42 2019-11-25 12:55:38 t 1 1 174502 591 0.00 2019-11-25 13:07:24 2019-11-25 13:07:58 t 1 1 174504 220 0.00 2019-11-25 13:09:26 2019-11-25 13:16:59 t 1 2 174507 591 0.00 2019-11-25 13:22:25 2019-11-25 13:28:46 t 1 1 174509 220 0.00 2019-11-25 13:28:58 2019-11-25 13:29:12 t 1 1 174510 591 0.00 2019-11-25 13:34:51 2019-11-25 13:36:15 t 1 1 174511 220 0.00 2019-11-25 13:30:47 2019-11-25 13:39:28 t 1 1 174513 220 0.00 2019-11-25 13:39:27 2019-11-25 13:39:41 t 1 1 174517 220 0.00 2019-11-25 13:49:58 2019-11-25 13:50:12 t 1 1 174521 591 0.00 2019-11-25 14:03:09 2019-11-25 14:03:49 t 1 1 174523 220 0.00 2019-11-25 14:10:59 2019-11-25 14:11:07 t 1 1 174524 220 0.00 2019-11-25 14:11:15 2019-11-25 14:11:30 t 1 1 174530 220 0.00 2019-11-25 14:21:45 2019-11-25 14:22:00 t 1 1 174531 591 0.00 2019-11-25 14:23:00 2019-11-25 14:25:03 t 1 1 174533 220 0.00 2019-11-25 14:32:15 2019-11-25 14:32:23 t 1 1 174542 220 0.00 2019-11-25 14:51:19 2019-11-25 14:51:32 t 1 1 174544 220 0.00 2019-11-25 15:01:52 2019-11-25 15:03:51 t 1 1 174545 220 0.00 2019-11-25 14:51:51 2019-11-25 15:11:06 t 1 1 174549 220 0.00 2019-11-25 15:17:49 2019-11-25 15:18:02 t 1 1 174554 220 0.00 2019-11-25 15:27:37 2019-11-25 15:27:46 t 1 1 174557 220 0.00 2019-11-25 15:28:14 2019-11-25 15:34:27 t 1 1 174561 220 0.00 2019-11-25 15:45:28 2019-11-25 15:55:26 t 1 1 174564 635 0.00 2019-11-25 15:49:51 2019-11-25 15:56:56 t 1 1 174568 544 0.00 2019-11-25 16:07:32 2019-11-25 16:11:20 t 1 1 174571 615 0.00 2019-11-25 16:55:14 2019-11-25 16:58:41 t 1 1 174574 220 0.00 2019-11-25 17:17:29 2019-11-25 17:18:52 t 1 2 174575 220 0.00 2019-11-25 17:11:27 2019-11-25 17:21:53 t 1 1 174576 220 0.00 2019-11-25 17:21:52 2019-11-25 17:22:30 t 1 1 174577 585 0.00 2019-11-25 17:28:57 2019-11-25 17:28:57 f 1 1 174583 220 0.00 2019-11-25 17:39:18 2019-11-25 17:39:22 t 1 1 174591 623 0.00 2019-11-25 17:53:46 2019-11-25 17:54:19 t 1 1 174593 220 0.00 2019-11-25 17:53:04 2019-11-25 17:59:28 t 1 2 174595 220 0.00 2019-11-25 18:01:30 2019-11-25 18:01:38 t 1 1 174596 623 0.00 2019-11-25 18:04:18 2019-11-25 18:05:18 t 1 1 174597 623 0.00 2019-11-25 18:09:31 2019-11-25 18:09:32 t 1 1 174602 220 0.00 2019-11-25 18:02:04 2019-11-25 18:16:57 t 1 1 174604 623 0.00 2019-11-25 18:23:20 2019-11-25 18:23:53 t 1 1 174607 623 0.00 2019-11-25 18:33:49 2019-11-25 18:33:57 t 1 1 174608 220 0.00 2019-11-25 17:49:55 2019-11-25 18:38:09 t 1 2 174611 220 0.00 2019-11-25 18:42:37 2019-11-25 18:43:19 t 1 1 174614 623 0.00 2019-11-25 18:47:55 2019-11-25 18:48:04 t 1 1 174617 623 0.00 2019-11-25 18:50:48 2019-11-25 18:51:37 t 1 1 174623 220 0.00 2019-11-25 18:54:24 2019-11-25 19:04:20 t 1 1 174629 220 0.00 2019-11-25 19:04:53 2019-11-25 19:15:13 t 1 1 174637 627 0.00 2019-11-25 19:20:30 2019-11-25 19:22:04 t 1 1 174638 660 0.00 2019-11-25 19:16:39 2019-11-25 19:23:47 t 1 1 174639 645 0.00 2019-11-25 19:17:22 2019-11-25 19:24:36 t 1 1 174641 623 0.00 2019-11-25 19:28:30 2019-11-25 19:28:52 t 1 1 174642 623 0.00 2019-11-25 19:35:24 2019-11-25 19:35:32 t 1 1 174644 591 0.00 2019-11-25 19:21:23 2019-11-25 19:40:26 t 1 1 174649 220 0.00 2019-11-25 19:41:56 2019-11-25 19:51:54 t 1 1 174664 645 0.00 2019-11-25 20:00:55 2019-11-25 20:16:55 t 1 1 174665 623 0.00 2019-11-25 20:17:58 2019-11-25 20:18:43 t 1 1 174667 220 0.00 2019-11-25 20:05:54 2019-11-25 20:28:35 t 1 1 174668 623 0.00 2019-11-25 20:19:05 2019-11-25 20:29:28 t 1 1 174672 645 0.00 2019-11-25 20:16:55 2019-11-25 20:33:47 t 1 1 174673 623 0.00 2019-11-25 20:36:45 2019-11-25 20:36:54 t 1 1 174675 623 0.00 2019-11-25 20:40:30 2019-11-25 20:41:03 t 1 1 174676 623 0.00 2019-11-25 20:41:48 2019-11-25 20:41:48 t 1 1 174677 623 0.00 2019-11-25 20:41:49 2019-11-25 20:42:54 t 1 1 174681 591 0.00 2019-11-25 20:49:41 2019-11-25 20:49:42 t 1 1 174687 645 0.00 2019-11-25 21:16:01 2019-11-25 21:34:19 t 1 1 174689 635 0.00 2019-11-25 21:36:19 2019-11-25 21:41:33 t 1 1 174692 645 0.00 2019-11-25 21:48:50 2019-11-25 21:49:57 t 1 1 174693 220 0.00 2019-11-25 21:46:54 2019-11-25 22:01:01 t 1 2 174694 220 0.00 2019-11-25 22:04:11 2019-11-25 22:04:23 t 1 1 174696 508 0.00 2019-11-25 21:37:32 2019-11-25 22:16:51 t 1 2 174698 591 0.00 2019-11-25 22:10:09 2019-11-25 22:44:19 t 1 1 174700 591 0.00 2019-11-25 22:44:19 2019-11-25 23:02:34 t 1 1 174702 514 0.00 2019-11-25 23:18:50 2019-11-25 23:19:19 t 1 1 174703 645 0.00 2019-11-25 22:48:29 2019-11-25 23:19:50 t 1 1 174704 514 0.00 2019-11-25 23:19:33 2019-11-25 23:20:18 t 1 1 174706 514 0.00 2019-11-25 23:21:20 2019-11-25 23:21:51 t 1 1 174711 514 0.00 2019-11-25 23:32:57 2019-11-25 23:38:42 t 1 1 174712 220 0.00 2019-11-25 23:28:37 2019-11-25 23:42:00 t 1 2 174715 514 0.00 2019-11-25 23:38:42 2019-11-25 23:45:13 t 1 1 174720 220 0.00 2019-11-25 23:55:05 2019-11-26 00:01:19 t 1 1 174726 574 0.00 2019-11-26 02:55:48 2019-11-26 02:59:30 t 1 1 174729 514 0.00 2019-11-25 23:52:44 2019-11-26 04:41:58 t 1 1 174733 645 0.00 2019-11-26 07:07:57 2019-11-26 07:08:07 t 1 1 174734 645 0.00 2019-11-26 07:18:26 2019-11-26 07:18:34 t 1 1 174741 591 0.00 2019-11-26 07:41:54 2019-11-26 07:59:40 t 1 1 174742 645 0.00 2019-11-26 08:02:18 2019-11-26 08:03:04 t 1 1 174746 516 0.00 2019-11-26 08:14:02 2019-11-26 08:23:01 t 1 1 174749 516 0.00 2019-11-26 08:23:01 2019-11-26 08:28:27 t 1 1 174750 516 0.00 2019-11-26 08:28:27 2019-11-26 08:31:13 t 1 1 174753 516 0.00 2019-11-26 08:49:46 2019-11-26 08:50:33 t 1 1 174754 516 0.00 2019-11-26 08:50:42 2019-11-26 08:51:59 t 1 1 174755 516 0.00 2019-11-26 08:52:18 2019-11-26 08:52:24 t 1 1 174756 516 0.00 2019-11-26 08:55:33 2019-11-26 08:55:39 t 1 1 174762 516 0.00 2019-11-26 09:08:36 2019-11-26 09:08:42 t 1 1 174769 639 0.00 2019-11-26 09:24:20 2019-11-26 09:26:08 t 1 1 174771 667 0.00 2019-11-26 09:25:34 2019-11-26 09:29:16 t 1 1 174772 667 0.00 2019-11-26 09:29:25 2019-11-26 09:30:11 t 1 1 174773 220 0.00 2019-11-26 01:15:58 2019-11-26 09:30:19 t 1 1 174774 591 0.00 2019-11-26 08:29:15 2019-11-26 09:31:43 t 1 1 174775 667 0.00 2019-11-26 09:30:57 2019-11-26 09:32:39 t 1 1 174776 649 0.00 2019-11-26 09:07:16 2019-11-26 09:34:09 t 1 1 174777 220 0.00 2019-11-26 09:30:46 2019-11-26 09:34:53 t 1 1 174778 667 0.00 2019-11-26 09:33:21 2019-11-26 09:35:57 t 1 1 174471 615 0.00 2019-11-25 10:36:03 2019-11-25 10:42:52 t 1 1 174472 220 0.00 2019-11-25 10:45:53 2019-11-25 10:45:55 t 1 1 174473 615 0.00 2019-11-25 10:46:50 2019-11-25 10:46:55 t 1 1 174475 220 0.00 2019-11-25 10:55:36 2019-11-25 10:55:37 t 1 1 174479 220 0.00 2019-11-25 11:15:02 2019-11-25 11:15:03 t 1 1 174486 615 0.00 2019-11-25 11:57:34 2019-11-25 12:01:30 t 1 1 174498 220 0.00 2019-11-25 12:53:04 2019-11-25 12:57:27 t 1 1 174500 483 0.00 2019-11-25 13:03:43 2019-11-25 13:04:43 t 1 1 174503 220 0.00 2019-11-25 13:07:57 2019-11-25 13:08:05 t 1 1 174505 220 0.00 2019-11-25 13:09:40 2019-11-25 13:18:28 t 1 1 174512 508 0.00 2019-11-25 13:22:37 2019-11-25 13:39:31 t 1 2 174518 591 0.00 2019-11-25 13:47:08 2019-11-25 13:53:28 t 1 1 174519 220 0.00 2019-11-25 13:50:34 2019-11-25 14:00:29 t 1 1 174527 591 0.00 2019-11-25 14:14:40 2019-11-25 14:18:42 t 1 1 174532 220 0.00 2019-11-25 14:22:21 2019-11-25 14:32:15 t 1 1 174535 220 0.00 2019-11-25 14:32:50 2019-11-25 14:42:45 t 1 1 174536 220 0.00 2019-11-25 14:42:45 2019-11-25 14:43:19 t 1 1 174537 220 0.00 2019-11-25 14:43:19 2019-11-25 14:44:56 t 1 1 174539 514 0.00 2019-11-25 14:29:45 2019-11-25 14:46:33 t 1 1 174541 220 0.00 2019-11-25 14:45:28 2019-11-25 14:51:19 t 1 1 174543 498 0.00 2019-11-25 14:47:24 2019-11-25 14:58:36 t 1 2 174546 220 0.00 2019-11-25 15:11:05 2019-11-25 15:11:14 t 1 1 174556 220 0.00 2019-11-25 15:28:11 2019-11-25 15:28:12 t 1 1 174558 220 0.00 2019-11-25 15:34:26 2019-11-25 15:34:40 t 1 1 174559 220 0.00 2019-11-25 15:35:00 2019-11-25 15:44:56 t 1 1 174562 220 0.00 2019-11-25 15:55:26 2019-11-25 15:55:27 t 1 1 174563 220 0.00 2019-11-25 15:55:35 2019-11-25 15:56:02 t 1 1 174567 220 0.00 2019-11-25 15:58:51 2019-11-25 16:01:51 t 1 2 174572 220 0.00 2019-11-25 16:53:28 2019-11-25 17:00:20 t 1 2 174573 615 0.00 2019-11-25 17:01:18 2019-11-25 17:11:10 t 1 1 174579 649 0.00 2019-11-25 17:30:55 2019-11-25 17:32:27 t 1 1 174580 623 0.00 2019-11-25 17:29:38 2019-11-25 17:34:26 t 1 1 174582 220 0.00 2019-11-25 17:22:29 2019-11-25 17:39:18 t 1 1 174586 623 0.00 2019-11-25 17:41:49 2019-11-25 17:42:08 t 1 1 174588 220 0.00 2019-11-25 17:39:54 2019-11-25 17:45:54 t 1 1 174590 220 0.00 2019-11-25 17:49:43 2019-11-25 17:52:06 t 1 2 174598 649 0.00 2019-11-25 18:07:21 2019-11-25 18:10:57 t 1 1 174603 220 0.00 2019-11-25 18:16:57 2019-11-25 18:17:04 t 1 1 174606 498 0.00 2019-11-25 17:03:40 2019-11-25 18:32:17 t 1 2 174612 220 0.00 2019-11-25 18:43:19 2019-11-25 18:43:33 t 1 1 174615 645 0.00 2019-11-25 18:44:24 2019-11-25 18:49:12 t 1 1 174619 220 0.00 2019-11-25 18:53:49 2019-11-25 18:54:05 t 1 1 174621 615 0.00 2019-11-25 18:55:15 2019-11-25 19:01:59 t 1 1 174626 512 0.00 2019-11-25 19:02:28 2019-11-25 19:06:24 t 1 1 174630 623 0.00 2019-11-25 19:15:13 2019-11-25 19:15:14 t 1 1 174631 220 0.00 2019-11-25 19:15:12 2019-11-25 19:15:31 t 1 1 174632 660 0.00 2019-11-25 19:06:37 2019-11-25 19:16:39 t 1 1 174634 627 0.00 2019-11-25 18:46:37 2019-11-25 19:20:09 t 1 1 174636 220 0.00 2019-11-25 19:17:30 2019-11-25 19:21:53 t 1 2 174640 623 0.00 2019-11-25 19:26:44 2019-11-25 19:26:52 t 1 1 174643 512 0.00 2019-11-25 19:29:23 2019-11-25 19:36:38 t 1 1 174646 220 0.00 2019-11-25 19:41:21 2019-11-25 19:41:34 t 1 1 174647 623 0.00 2019-11-25 19:43:46 2019-11-25 19:44:25 t 1 1 174651 660 0.00 2019-11-25 19:23:47 2019-11-25 19:54:04 t 1 1 174652 623 0.00 2019-11-25 19:54:21 2019-11-25 19:54:53 t 1 1 174653 220 0.00 2019-11-25 19:20:49 2019-11-25 19:56:12 t 1 2 174655 220 0.00 2019-11-25 20:02:24 2019-11-25 20:02:45 t 1 1 174656 220 0.00 2019-11-25 20:02:53 2019-11-25 20:02:55 t 1 1 174657 220 0.00 2019-11-25 20:02:55 2019-11-25 20:05:54 t 1 1 174659 591 0.00 2019-11-25 19:40:26 2019-11-25 20:09:08 t 1 1 174660 512 0.00 2019-11-25 19:36:38 2019-11-25 20:10:12 t 1 1 174663 623 0.00 2019-11-25 20:15:28 2019-11-25 20:16:29 t 1 1 174678 220 0.00 2019-11-25 20:28:35 2019-11-25 20:48:38 t 1 1 174682 220 0.00 2019-11-25 20:48:39 2019-11-25 20:49:54 t 1 1 174683 591 0.00 2019-11-25 20:49:42 2019-11-25 20:51:54 t 1 1 174684 220 0.00 2019-11-25 21:05:24 2019-11-25 21:20:18 t 1 2 174686 220 0.00 2019-11-25 21:31:46 2019-11-25 21:31:48 t 1 1 174690 645 0.00 2019-11-25 21:48:49 2019-11-25 21:48:50 t 1 1 174691 645 0.00 2019-11-25 21:34:19 2019-11-25 21:49:37 t 1 1 174699 645 0.00 2019-11-25 22:38:47 2019-11-25 22:48:29 t 1 1 174701 591 0.00 2019-11-25 23:13:29 2019-11-25 23:14:32 t 1 1 174705 514 0.00 2019-11-25 23:20:17 2019-11-25 23:21:20 t 1 1 174707 220 0.00 2019-11-25 23:13:19 2019-11-25 23:27:08 t 1 1 174708 220 0.00 2019-11-25 23:27:08 2019-11-25 23:27:41 t 1 1 174716 220 0.00 2019-11-25 23:28:17 2019-11-25 23:49:41 t 1 1 174717 514 0.00 2019-11-25 23:45:13 2019-11-25 23:52:44 t 1 1 174719 512 0.00 2019-11-25 23:44:41 2019-11-25 23:57:08 t 1 1 174723 645 0.00 2019-11-26 00:21:45 2019-11-26 00:25:54 t 1 1 174725 512 0.00 2019-11-26 00:29:54 2019-11-26 00:40:36 t 1 1 174730 660 0.00 2019-11-26 06:07:20 2019-11-26 06:17:19 t 1 1 174731 430 0.00 2019-11-26 06:26:34 2019-11-26 06:27:38 t 1 1 174735 645 0.00 2019-11-26 07:28:55 2019-11-26 07:29:03 t 1 1 174736 645 0.00 2019-11-26 07:39:24 2019-11-26 07:39:32 t 1 1 174739 645 0.00 2019-11-26 07:55:14 2019-11-26 07:55:23 t 1 1 174740 645 0.00 2019-11-26 07:56:24 2019-11-26 07:56:48 t 1 1 174744 591 0.00 2019-11-26 08:04:30 2019-11-26 08:17:13 t 1 1 174747 645 0.00 2019-11-26 08:23:26 2019-11-26 08:24:41 t 1 1 174748 615 0.00 2019-11-26 08:20:11 2019-11-26 08:26:15 t 1 1 174751 516 0.00 2019-11-26 08:40:06 2019-11-26 08:45:21 t 1 1 174752 516 0.00 2019-11-26 08:45:21 2019-11-26 08:49:35 t 1 1 174757 516 0.00 2019-11-26 08:55:54 2019-11-26 08:58:27 t 1 1 174758 516 0.00 2019-11-26 09:04:45 2019-11-26 09:06:16 t 1 1 174759 516 0.00 2019-11-26 09:06:30 2019-11-26 09:06:38 t 1 1 174761 516 0.00 2019-11-26 09:07:09 2019-11-26 09:08:18 t 1 1 174763 516 0.00 2019-11-26 09:09:13 2019-11-26 09:09:18 t 1 1 174767 220 0.00 2019-11-26 09:20:41 2019-11-26 09:24:10 t 1 2 174770 645 0.00 2019-11-26 09:09:52 2019-11-26 09:26:19 t 1 1 174779 667 0.00 2019-11-26 09:36:52 2019-11-26 09:37:00 t 1 1 174780 667 0.00 2019-11-26 09:41:22 2019-11-26 09:41:49 t 1 1 174781 667 0.00 2019-11-26 09:43:01 2019-11-26 09:47:40 t 1 1 174782 591 0.00 2019-11-26 09:31:43 2019-11-26 09:51:05 t 1 1 174783 220 0.00 2019-11-26 09:50:09 2019-11-26 09:51:32 t 1 2 174784 220 0.00 2019-11-26 09:52:48 2019-11-26 09:52:59 t 1 2 174785 667 0.00 2019-11-26 09:56:41 2019-11-26 09:56:42 t 1 1 174786 645 0.00 2019-11-26 09:53:22 2019-11-26 09:56:46 t 1 1 174787 667 0.00 2019-11-26 09:56:42 2019-11-26 09:58:10 t 1 1 174788 667 0.00 2019-11-26 10:07:23 2019-11-26 10:11:31 t 1 1 174789 512 0.00 2019-11-26 10:12:38 2019-11-26 10:14:18 t 1 1 174792 667 0.00 2019-11-26 10:31:53 2019-11-26 10:32:07 t 1 1 174795 645 0.00 2019-11-26 10:22:39 2019-11-26 10:39:37 t 1 1 174796 667 0.00 2019-11-26 10:41:20 2019-11-26 10:41:55 t 1 1 174802 220 0.00 2019-11-26 10:47:18 2019-11-26 10:52:41 t 1 2 174803 512 0.00 2019-11-26 10:48:28 2019-11-26 10:54:33 t 1 1 174805 667 0.00 2019-11-26 10:56:58 2019-11-26 10:58:57 t 1 1 174808 667 0.00 2019-11-26 11:03:12 2019-11-26 11:05:11 t 1 1 174809 667 0.00 2019-11-26 11:07:13 2019-11-26 11:07:59 t 1 1 174811 591 0.00 2019-11-26 11:10:31 2019-11-26 11:13:01 t 1 1 174815 615 0.00 2019-11-26 11:11:02 2019-11-26 11:21:48 t 1 1 174817 591 0.00 2019-11-26 11:22:19 2019-11-26 11:29:45 t 1 1 174818 667 0.00 2019-11-26 11:33:22 2019-11-26 11:35:02 t 1 1 174827 220 0.00 2019-11-26 11:39:44 2019-11-26 11:40:18 t 1 1 174830 220 0.00 2019-11-26 11:41:26 2019-11-26 11:42:02 t 1 1 174831 220 0.00 2019-11-26 11:42:01 2019-11-26 11:42:35 t 1 1 174832 220 0.00 2019-11-26 11:42:34 2019-11-26 11:44:13 t 1 1 174833 220 0.00 2019-11-26 11:44:13 2019-11-26 11:44:47 t 1 1 174835 220 0.00 2019-11-26 11:45:22 2019-11-26 11:45:57 t 1 1 174836 220 0.00 2019-11-26 11:45:56 2019-11-26 11:46:28 t 1 1 174841 220 0.00 2019-11-26 11:49:53 2019-11-26 11:50:28 t 1 1 174846 220 0.00 2019-11-26 11:52:23 2019-11-26 11:52:59 t 1 1 174847 220 0.00 2019-11-26 11:52:58 2019-11-26 11:53:30 t 1 1 174853 220 0.00 2019-11-26 11:59:19 2019-11-26 12:01:17 t 1 1 174854 220 0.00 2019-11-26 12:01:16 2019-11-26 12:01:49 t 1 1 174856 220 0.00 2019-11-26 12:05:43 2019-11-26 12:06:19 t 1 1 174859 220 0.00 2019-11-26 12:08:49 2019-11-26 12:10:35 t 1 1 174861 220 0.00 2019-11-26 12:11:09 2019-11-26 12:12:51 t 1 1 174862 220 0.00 2019-11-26 12:12:50 2019-11-26 12:13:24 t 1 1 174864 220 0.00 2019-11-26 12:25:41 2019-11-26 12:26:13 t 1 1 174866 220 0.00 2019-11-26 12:26:13 2019-11-26 12:32:34 t 1 1 174873 220 0.00 2019-11-26 12:35:49 2019-11-26 12:37:49 t 1 1 174874 220 0.00 2019-11-26 12:37:49 2019-11-26 12:38:24 t 1 1 174875 220 0.00 2019-11-26 12:38:24 2019-11-26 12:39:57 t 1 1 174877 220 0.00 2019-11-26 12:40:31 2019-11-26 12:41:19 t 1 1 174878 220 0.00 2019-11-26 12:41:18 2019-11-26 12:41:54 t 1 1 174881 667 0.00 2019-11-26 12:43:25 2019-11-26 12:45:11 t 1 1 174885 220 0.00 2019-11-26 12:47:37 2019-11-26 12:48:13 t 1 1 174886 220 0.00 2019-11-26 12:48:13 2019-11-26 12:48:48 t 1 1 174887 220 0.00 2019-11-26 12:48:47 2019-11-26 12:49:20 t 1 1 174890 220 0.00 2019-11-26 12:51:23 2019-11-26 12:53:38 t 1 1 174893 220 0.00 2019-11-26 12:55:10 2019-11-26 12:55:46 t 1 1 174894 220 0.00 2019-11-26 12:55:46 2019-11-26 12:57:10 t 1 1 174898 220 0.00 2019-11-26 12:59:54 2019-11-26 13:00:31 t 1 1 174899 220 0.00 2019-11-26 13:00:30 2019-11-26 13:01:19 t 1 1 174902 220 0.00 2019-11-26 13:01:55 2019-11-26 13:02:58 t 1 1 174903 627 0.00 2019-11-26 13:04:32 2019-11-26 13:05:27 t 1 1 174905 512 0.00 2019-11-26 13:11:58 2019-11-26 13:13:57 t 1 1 174907 667 0.00 2019-11-26 13:21:48 2019-11-26 13:21:49 t 1 1 174914 667 0.00 2019-11-26 13:56:27 2019-11-26 13:57:49 t 1 1 174915 591 0.00 2019-11-26 13:57:28 2019-11-26 13:58:33 t 1 1 174919 591 0.00 2019-11-26 14:11:32 2019-11-26 14:12:06 t 1 1 174920 667 0.00 2019-11-26 14:07:30 2019-11-26 14:17:26 t 1 1 174924 667 0.00 2019-11-26 14:28:04 2019-11-26 14:28:19 t 1 1 174925 667 0.00 2019-11-26 14:28:27 2019-11-26 14:29:27 t 1 1 174926 514 0.00 2019-11-26 14:24:28 2019-11-26 14:30:28 t 1 1 174930 667 0.00 2019-11-26 14:35:45 2019-11-26 14:39:29 t 1 1 174931 514 0.00 2019-11-26 14:35:17 2019-11-26 14:40:43 t 1 1 174936 514 0.00 2019-11-26 14:51:41 2019-11-26 14:56:25 t 1 1 174937 667 0.00 2019-11-26 14:43:36 2019-11-26 15:04:32 t 1 1 174938 220 0.00 2019-11-26 15:04:27 2019-11-26 15:06:04 t 1 1 174941 667 0.00 2019-11-26 15:14:46 2019-11-26 15:15:01 t 1 1 174942 667 0.00 2019-11-26 15:25:16 2019-11-26 15:25:24 t 1 1 174945 667 0.00 2019-11-26 15:45:58 2019-11-26 15:46:13 t 1 1 174946 667 0.00 2019-11-26 15:56:28 2019-11-26 15:56:42 t 1 1 174949 667 0.00 2019-11-26 16:06:58 2019-11-26 16:07:12 t 1 1 174950 667 0.00 2019-11-26 16:07:19 2019-11-26 16:07:20 t 1 1 174956 498 0.00 2019-11-26 16:02:47 2019-11-26 16:29:35 t 1 2 174961 220 0.00 2019-11-26 17:00:21 2019-11-26 17:08:08 t 1 2 174965 220 0.00 2019-11-26 17:18:31 2019-11-26 17:20:13 t 1 2 174967 615 0.00 2019-11-26 17:26:29 2019-11-26 17:31:07 t 1 1 174970 220 0.00 2019-11-26 17:35:36 2019-11-26 17:35:39 t 1 1 174971 615 0.00 2019-11-26 17:31:07 2019-11-26 17:40:00 t 1 1 174974 615 0.00 2019-11-26 17:40:00 2019-11-26 17:44:22 t 1 1 174975 512 0.00 2019-11-26 17:43:39 2019-11-26 17:45:32 t 1 1 174977 591 0.00 2019-11-26 16:53:32 2019-11-26 17:54:39 t 1 1 174978 623 0.00 2019-11-26 17:53:24 2019-11-26 17:56:11 t 1 1 174981 512 0.00 2019-11-26 17:46:30 2019-11-26 18:01:18 t 1 1 174986 416 0.00 2019-11-26 16:50:31 2019-11-26 18:13:31 t 1 1 174989 623 0.00 2019-11-26 18:25:06 2019-11-26 18:25:32 t 1 1 174994 498 0.00 2019-11-26 18:17:09 2019-11-26 18:37:44 t 1 2 174995 591 0.00 2019-11-26 18:30:18 2019-11-26 18:42:02 t 1 1 174996 623 0.00 2019-11-26 18:42:20 2019-11-26 18:42:45 t 1 1 174997 623 0.00 2019-11-26 18:44:00 2019-11-26 18:44:11 t 1 1 175000 514 0.00 2019-11-26 18:51:35 2019-11-26 18:54:30 t 1 1 175004 623 0.00 2019-11-26 19:00:43 2019-11-26 19:00:44 t 1 1 175006 220 0.00 2019-11-26 18:58:56 2019-11-26 19:00:53 t 1 2 175007 623 0.00 2019-11-26 19:00:58 2019-11-26 19:00:59 t 1 1 175008 623 0.00 2019-11-26 19:01:06 2019-11-26 19:01:27 t 1 1 175015 623 0.00 2019-11-26 19:15:49 2019-11-26 19:16:20 t 1 1 175016 623 0.00 2019-11-26 19:22:16 2019-11-26 19:22:52 t 1 1 175020 623 0.00 2019-11-26 19:38:10 2019-11-26 19:40:14 t 1 1 175026 623 0.00 2019-11-26 19:49:23 2019-11-26 19:49:30 t 1 1 175030 483 0.00 2019-11-26 19:39:29 2019-11-26 20:02:29 t 1 1 175032 498 0.00 2019-11-26 18:54:38 2019-11-26 20:04:01 t 1 2 175033 623 0.00 2019-11-26 20:06:15 2019-11-26 20:06:26 t 1 1 175035 668 0.00 2019-11-26 20:10:59 2019-11-26 20:15:36 t 1 1 175036 623 0.00 2019-11-26 20:16:43 2019-11-26 20:17:16 t 1 1 175039 591 0.00 2019-11-26 18:47:43 2019-11-26 20:22:49 t 1 1 175042 623 0.00 2019-11-26 20:36:04 2019-11-26 20:36:17 t 1 1 175047 623 0.00 2019-11-26 20:41:16 2019-11-26 20:43:15 t 1 1 175048 623 0.00 2019-11-26 20:43:18 2019-11-26 20:43:58 t 1 1 175049 623 0.00 2019-11-26 20:44:26 2019-11-26 20:44:31 t 1 1 175052 623 0.00 2019-11-26 20:49:29 2019-11-26 20:54:06 t 1 1 175053 623 0.00 2019-11-26 20:54:30 2019-11-26 20:54:50 t 1 1 175054 645 0.00 2019-11-26 20:42:42 2019-11-26 20:57:19 t 1 1 175057 623 0.00 2019-11-26 21:04:44 2019-11-26 21:05:14 t 1 1 174790 667 0.00 2019-11-26 10:20:37 2019-11-26 10:21:23 t 1 1 174791 667 0.00 2019-11-26 10:31:37 2019-11-26 10:31:46 t 1 1 174793 591 0.00 2019-11-26 09:51:05 2019-11-26 10:34:43 t 1 1 174797 667 0.00 2019-11-26 10:42:56 2019-11-26 10:43:57 t 1 1 174798 667 0.00 2019-11-26 10:45:42 2019-11-26 10:46:55 t 1 1 174799 512 0.00 2019-11-26 10:16:37 2019-11-26 10:47:32 t 1 1 174800 615 0.00 2019-11-26 10:39:28 2019-11-26 10:51:00 t 1 1 174801 667 0.00 2019-11-26 10:51:07 2019-11-26 10:52:06 t 1 1 174806 591 0.00 2019-11-26 10:34:43 2019-11-26 11:02:26 t 1 1 174816 645 0.00 2019-11-26 11:20:25 2019-11-26 11:26:09 t 1 1 174822 220 0.00 2019-11-26 11:37:25 2019-11-26 11:38:02 t 1 1 174823 220 0.00 2019-11-26 11:38:01 2019-11-26 11:38:36 t 1 1 174825 220 0.00 2019-11-26 11:38:35 2019-11-26 11:39:10 t 1 1 174826 220 0.00 2019-11-26 11:39:10 2019-11-26 11:39:44 t 1 1 174828 220 0.00 2019-11-26 11:40:18 2019-11-26 11:40:52 t 1 1 174829 220 0.00 2019-11-26 11:40:52 2019-11-26 11:41:27 t 1 1 174834 220 0.00 2019-11-26 11:44:47 2019-11-26 11:45:22 t 1 1 174843 220 0.00 2019-11-26 11:50:47 2019-11-26 11:51:08 t 1 1 174844 220 0.00 2019-11-26 11:51:08 2019-11-26 11:51:43 t 1 1 174845 220 0.00 2019-11-26 11:51:43 2019-11-26 11:52:23 t 1 1 174849 220 0.00 2019-11-26 11:54:06 2019-11-26 11:56:10 t 1 1 174850 220 0.00 2019-11-26 11:56:10 2019-11-26 11:56:45 t 1 1 174852 220 0.00 2019-11-26 11:58:45 2019-11-26 11:59:19 t 1 1 174855 220 0.00 2019-11-26 12:01:49 2019-11-26 12:05:43 t 1 1 174857 220 0.00 2019-11-26 12:06:19 2019-11-26 12:08:18 t 1 1 174858 220 0.00 2019-11-26 12:08:17 2019-11-26 12:08:50 t 1 1 174863 220 0.00 2019-11-26 12:13:24 2019-11-26 12:25:41 t 1 1 174867 625 0.00 2019-11-26 12:25:34 2019-11-26 12:33:04 t 1 1 174868 220 0.00 2019-11-26 12:32:34 2019-11-26 12:33:05 t 1 1 174871 220 0.00 2019-11-26 12:33:05 2019-11-26 12:35:13 t 1 1 174876 220 0.00 2019-11-26 12:39:56 2019-11-26 12:40:32 t 1 1 174882 220 0.00 2019-11-26 12:44:38 2019-11-26 12:46:14 t 1 1 174883 220 0.00 2019-11-26 12:46:14 2019-11-26 12:46:48 t 1 1 174884 220 0.00 2019-11-26 12:46:48 2019-11-26 12:47:37 t 1 1 174888 220 0.00 2019-11-26 12:49:19 2019-11-26 12:50:50 t 1 1 174889 220 0.00 2019-11-26 12:50:50 2019-11-26 12:51:23 t 1 1 174896 220 0.00 2019-11-26 12:57:10 2019-11-26 12:57:43 t 1 1 174900 220 0.00 2019-11-26 13:01:19 2019-11-26 13:01:55 t 1 1 174904 512 0.00 2019-11-26 13:02:23 2019-11-26 13:11:58 t 1 1 174908 512 0.00 2019-11-26 13:15:06 2019-11-26 13:23:03 t 1 1 174909 512 0.00 2019-11-26 13:23:11 2019-11-26 13:40:12 t 1 1 174910 591 0.00 2019-11-26 11:33:58 2019-11-26 13:45:57 t 1 1 174911 667 0.00 2019-11-26 13:51:07 2019-11-26 13:51:19 t 1 1 174913 514 0.00 2019-11-26 13:37:57 2019-11-26 13:55:00 t 1 1 174918 645 0.00 2019-11-26 13:39:34 2019-11-26 14:05:12 t 1 1 174921 667 0.00 2019-11-26 14:17:34 2019-11-26 14:17:43 t 1 1 174928 514 0.00 2019-11-26 14:30:28 2019-11-26 14:35:17 t 1 1 174929 645 0.00 2019-11-26 14:05:12 2019-11-26 14:36:49 t 1 1 174932 667 0.00 2019-11-26 14:42:52 2019-11-26 14:43:06 t 1 1 174933 667 0.00 2019-11-26 14:43:24 2019-11-26 14:43:30 t 1 1 174939 514 0.00 2019-11-26 14:56:25 2019-11-26 15:08:33 t 1 1 174947 498 0.00 2019-11-26 15:20:13 2019-11-26 16:02:19 t 1 2 174951 667 0.00 2019-11-26 16:10:25 2019-11-26 16:12:12 t 1 1 174953 483 0.00 2019-11-26 16:16:48 2019-11-26 16:22:09 t 1 1 174955 667 0.00 2019-11-26 16:21:51 2019-11-26 16:22:36 t 1 1 174957 483 0.00 2019-11-26 16:22:09 2019-11-26 16:32:57 t 1 1 174958 667 0.00 2019-11-26 16:22:59 2019-11-26 16:37:13 t 1 1 174962 508 0.00 2019-11-26 16:54:14 2019-11-26 17:10:21 t 1 2 174964 220 0.00 2019-11-26 17:18:58 2019-11-26 17:20:13 t 1 2 174966 220 0.00 2019-11-26 17:21:06 2019-11-26 17:28:25 t 1 2 174968 623 0.00 2019-11-26 17:31:17 2019-11-26 17:32:44 t 1 1 174973 512 0.00 2019-11-26 17:35:48 2019-11-26 17:43:07 t 1 1 174976 623 0.00 2019-11-26 17:52:49 2019-11-26 17:52:57 t 1 1 174979 623 0.00 2019-11-26 17:57:13 2019-11-26 17:57:49 t 1 1 174980 615 0.00 2019-11-26 17:59:10 2019-11-26 18:00:45 t 1 1 174983 623 0.00 2019-11-26 18:07:42 2019-11-26 18:07:58 t 1 1 174984 623 0.00 2019-11-26 18:09:04 2019-11-26 18:09:13 t 1 1 174987 591 0.00 2019-11-26 18:11:33 2019-11-26 18:14:40 t 1 1 174988 591 0.00 2019-11-26 18:20:38 2019-11-26 18:24:36 t 1 1 174991 623 0.00 2019-11-26 18:32:16 2019-11-26 18:32:47 t 1 1 174998 623 0.00 2019-11-26 18:45:39 2019-11-26 18:45:51 t 1 1 175001 623 0.00 2019-11-26 18:54:12 2019-11-26 18:54:32 t 1 1 175002 623 0.00 2019-11-26 18:59:17 2019-11-26 18:59:18 t 1 1 175003 623 0.00 2019-11-26 18:59:25 2019-11-26 18:59:34 t 1 1 175005 623 0.00 2019-11-26 19:00:51 2019-11-26 19:00:52 t 1 1 175009 220 0.00 2019-11-26 19:00:56 2019-11-26 19:02:40 t 1 2 175010 220 0.00 2019-11-26 19:02:42 2019-11-26 19:05:43 t 1 2 175011 220 0.00 2019-11-26 19:06:53 2019-11-26 19:06:57 t 1 2 175018 623 0.00 2019-11-26 19:37:46 2019-11-26 19:37:47 t 1 1 175019 623 0.00 2019-11-26 19:39:33 2019-11-26 19:40:02 t 1 1 175022 660 0.00 2019-11-26 19:34:48 2019-11-26 19:43:16 t 1 1 175023 623 0.00 2019-11-26 19:42:08 2019-11-26 19:44:16 t 1 1 175027 660 0.00 2019-11-26 19:43:16 2019-11-26 19:52:31 t 1 1 175028 660 0.00 2019-11-26 19:52:31 2019-11-26 19:56:48 t 1 1 175037 623 0.00 2019-11-26 20:20:57 2019-11-26 20:21:45 t 1 1 175038 623 0.00 2019-11-26 20:22:45 2019-11-26 20:22:46 t 1 1 175043 623 0.00 2019-11-26 20:38:47 2019-11-26 20:40:30 t 1 1 175044 591 0.00 2019-11-26 20:22:49 2019-11-26 20:41:25 t 1 1 175045 623 0.00 2019-11-26 20:41:42 2019-11-26 20:42:03 t 1 1 175050 623 0.00 2019-11-26 20:46:39 2019-11-26 20:46:49 t 1 1 175056 660 0.00 2019-11-26 20:57:26 2019-11-26 21:03:38 t 1 1 175058 623 0.00 2019-11-26 21:06:16 2019-11-26 21:06:38 t 1 1 175059 623 0.00 2019-11-26 21:07:31 2019-11-26 21:07:43 t 1 1 175060 623 0.00 2019-11-26 21:08:30 2019-11-26 21:08:49 t 1 1 175064 645 0.00 2019-11-26 21:00:00 2019-11-26 21:21:32 t 1 1 175068 665 0.00 2019-11-26 20:55:10 2019-11-26 21:24:45 t 1 1 175070 645 0.00 2019-11-26 21:21:32 2019-11-26 21:26:16 t 1 1 175072 562 0.00 2019-11-26 21:28:10 2019-11-26 21:28:27 t 1 1 175073 623 0.00 2019-11-26 21:31:08 2019-11-26 21:31:30 t 1 1 175076 623 0.00 2019-11-26 21:35:00 2019-11-26 21:37:26 t 1 1 175079 562 0.00 2019-11-26 21:34:05 2019-11-26 21:40:55 t 1 1 175080 562 0.00 2019-11-26 21:43:17 2019-11-26 21:43:50 t 1 1 175083 562 0.00 2019-11-26 21:44:09 2019-11-26 21:46:15 t 1 1 175089 623 0.00 2019-11-26 21:51:04 2019-11-26 21:51:12 t 1 1 175092 667 0.00 2019-11-26 22:02:52 2019-11-26 22:07:01 t 1 2 175093 667 0.00 2019-11-26 21:50:44 2019-11-26 22:07:28 t 1 1 175096 645 0.00 2019-11-26 21:52:37 2019-11-26 22:15:11 t 1 1 174794 667 0.00 2019-11-26 10:36:32 2019-11-26 10:37:23 t 1 1 174804 667 0.00 2019-11-26 10:56:36 2019-11-26 10:56:51 t 1 1 174807 667 0.00 2019-11-26 11:02:07 2019-11-26 11:03:05 t 1 1 174810 667 0.00 2019-11-26 11:08:07 2019-11-26 11:08:08 t 1 1 174812 667 0.00 2019-11-26 11:11:46 2019-11-26 11:13:25 t 1 1 174813 645 0.00 2019-11-26 10:39:37 2019-11-26 11:16:57 t 1 1 174814 667 0.00 2019-11-26 11:16:16 2019-11-26 11:18:05 t 1 1 174819 220 0.00 2019-11-26 10:03:35 2019-11-26 11:36:18 t 1 1 174820 220 0.00 2019-11-26 11:36:18 2019-11-26 11:36:53 t 1 1 174821 220 0.00 2019-11-26 11:36:53 2019-11-26 11:37:25 t 1 1 174824 538 0.00 2019-11-26 11:17:49 2019-11-26 11:38:56 t 1 1 174837 220 0.00 2019-11-26 11:46:28 2019-11-26 11:47:04 t 1 1 174838 220 0.00 2019-11-26 11:47:04 2019-11-26 11:47:47 t 1 1 174839 220 0.00 2019-11-26 11:47:46 2019-11-26 11:48:20 t 1 1 174840 220 0.00 2019-11-26 11:48:20 2019-11-26 11:49:53 t 1 1 174842 220 0.00 2019-11-26 11:50:27 2019-11-26 11:50:47 t 1 1 174848 220 0.00 2019-11-26 11:53:30 2019-11-26 11:54:07 t 1 1 174851 220 0.00 2019-11-26 11:56:44 2019-11-26 11:58:45 t 1 1 174860 220 0.00 2019-11-26 12:10:35 2019-11-26 12:11:09 t 1 1 174865 498 0.00 2019-11-26 11:35:34 2019-11-26 12:30:12 t 1 2 174869 667 0.00 2019-11-26 12:32:25 2019-11-26 12:33:13 t 1 1 174870 625 0.00 2019-11-26 12:33:04 2019-11-26 12:34:21 t 1 1 174872 220 0.00 2019-11-26 12:35:13 2019-11-26 12:35:49 t 1 1 174879 220 0.00 2019-11-26 12:41:53 2019-11-26 12:44:02 t 1 1 174880 220 0.00 2019-11-26 12:44:02 2019-11-26 12:44:39 t 1 1 174891 220 0.00 2019-11-26 12:53:37 2019-11-26 12:54:14 t 1 1 174892 220 0.00 2019-11-26 12:54:13 2019-11-26 12:55:13 t 1 1 174895 416 0.00 2019-11-26 12:21:40 2019-11-26 12:57:34 t 1 1 174897 220 0.00 2019-11-26 12:57:42 2019-11-26 12:59:55 t 1 1 174901 512 0.00 2019-11-26 12:51:26 2019-11-26 13:02:23 t 1 1 174906 667 0.00 2019-11-26 13:21:19 2019-11-26 13:21:41 t 1 1 174912 667 0.00 2019-11-26 13:51:27 2019-11-26 13:51:42 t 1 1 174916 667 0.00 2019-11-26 13:58:14 2019-11-26 13:59:09 t 1 1 174917 591 0.00 2019-11-26 14:03:38 2019-11-26 14:04:35 t 1 1 174922 514 0.00 2019-11-26 14:14:09 2019-11-26 14:18:28 t 1 1 174923 514 0.00 2019-11-26 14:18:28 2019-11-26 14:24:28 t 1 1 174927 667 0.00 2019-11-26 14:34:47 2019-11-26 14:35:02 t 1 1 174934 514 0.00 2019-11-26 14:40:43 2019-11-26 14:45:34 t 1 1 174935 514 0.00 2019-11-26 14:45:34 2019-11-26 14:51:41 t 1 1 174940 220 0.00 2019-11-26 15:07:09 2019-11-26 15:11:32 t 1 2 174943 635 0.00 2019-11-26 15:16:20 2019-11-26 15:27:31 t 1 1 174944 667 0.00 2019-11-26 15:35:46 2019-11-26 15:35:54 t 1 1 174948 591 0.00 2019-11-26 16:03:57 2019-11-26 16:04:53 t 1 1 174952 667 0.00 2019-11-26 16:14:12 2019-11-26 16:14:25 t 1 1 174954 508 0.00 2019-11-26 15:25:44 2019-11-26 16:22:22 t 1 2 174959 667 0.00 2019-11-26 16:37:13 2019-11-26 16:54:29 t 1 1 174960 220 0.00 2019-11-26 16:55:28 2019-11-26 16:57:53 t 1 2 174963 220 0.00 2019-11-26 17:10:40 2019-11-26 17:13:21 t 1 2 174969 220 0.00 2019-11-26 16:11:10 2019-11-26 17:33:47 t 1 1 174972 623 0.00 2019-11-26 17:42:39 2019-11-26 17:42:58 t 1 1 174982 591 0.00 2019-11-26 17:57:44 2019-11-26 18:01:18 t 1 1 174985 623 0.00 2019-11-26 18:12:16 2019-11-26 18:12:27 t 1 1 174990 623 0.00 2019-11-26 18:30:30 2019-11-26 18:30:39 t 1 1 174992 615 0.00 2019-11-26 18:27:07 2019-11-26 18:34:08 t 1 1 174993 220 0.00 2019-11-26 18:36:49 2019-11-26 18:36:51 t 1 2 174999 623 0.00 2019-11-26 18:47:20 2019-11-26 18:47:46 t 1 1 175012 514 0.00 2019-11-26 18:54:30 2019-11-26 19:07:40 t 1 1 175013 623 0.00 2019-11-26 19:08:14 2019-11-26 19:09:01 t 1 1 175014 623 0.00 2019-11-26 19:14:10 2019-11-26 19:14:26 t 1 1 175017 623 0.00 2019-11-26 19:24:44 2019-11-26 19:24:53 t 1 1 175021 623 0.00 2019-11-26 19:40:33 2019-11-26 19:40:55 t 1 1 175024 623 0.00 2019-11-26 19:45:13 2019-11-26 19:45:24 t 1 1 175025 623 0.00 2019-11-26 19:46:52 2019-11-26 19:47:01 t 1 1 175029 623 0.00 2019-11-26 19:55:41 2019-11-26 19:58:00 t 1 1 175031 623 0.00 2019-11-26 19:58:00 2019-11-26 20:02:36 t 1 1 175034 635 0.00 2019-11-26 19:55:38 2019-11-26 20:06:32 t 1 1 175040 645 0.00 2019-11-26 20:06:55 2019-11-26 20:24:38 t 1 1 175041 623 0.00 2019-11-26 20:35:25 2019-11-26 20:35:54 t 1 1 175046 645 0.00 2019-11-26 20:24:38 2019-11-26 20:42:42 t 1 1 175051 623 0.00 2019-11-26 20:47:19 2019-11-26 20:48:34 t 1 1 175055 660 0.00 2019-11-26 20:48:00 2019-11-26 20:57:26 t 1 1 175061 660 0.00 2019-11-26 21:03:38 2019-11-26 21:09:36 t 1 1 175063 623 0.00 2019-11-26 21:14:14 2019-11-26 21:17:44 t 1 1 175065 623 0.00 2019-11-26 21:18:46 2019-11-26 21:22:07 t 1 1 175066 562 0.00 2019-11-26 21:17:31 2019-11-26 21:22:45 t 1 1 175067 623 0.00 2019-11-26 21:22:07 2019-11-26 21:24:28 t 1 1 175071 562 0.00 2019-11-26 21:26:09 2019-11-26 21:26:24 t 1 1 175075 623 0.00 2019-11-26 21:34:15 2019-11-26 21:34:41 t 1 1 175082 591 0.00 2019-11-26 21:40:47 2019-11-26 21:44:46 t 1 1 175084 623 0.00 2019-11-26 21:45:59 2019-11-26 21:46:20 t 1 1 175086 562 0.00 2019-11-26 21:44:34 2019-11-26 21:47:05 t 1 1 175087 623 0.00 2019-11-26 21:47:58 2019-11-26 21:47:59 t 1 1 175090 645 0.00 2019-11-26 21:36:47 2019-11-26 21:52:37 t 1 1 175095 667 0.00 2019-11-26 22:07:39 2019-11-26 22:10:55 t 1 1 175097 667 0.00 2019-11-26 22:14:21 2019-11-26 22:16:24 t 1 1 175100 591 0.00 2019-11-26 22:27:02 2019-11-26 22:28:45 t 1 1 175103 667 0.00 2019-11-26 22:11:53 2019-11-26 22:37:00 t 1 2 175107 508 0.00 2019-11-26 21:52:12 2019-11-26 22:50:01 t 1 2 175109 512 0.00 2019-11-26 22:54:16 2019-11-26 22:55:22 t 1 1 175112 667 0.00 2019-11-26 22:56:25 2019-11-26 23:09:01 t 1 1 175114 512 0.00 2019-11-26 22:56:24 2019-11-26 23:11:14 t 1 1 175117 667 0.00 2019-11-26 23:21:23 2019-11-26 23:28:42 t 1 1 175121 667 0.00 2019-11-26 23:47:47 2019-11-26 23:52:05 t 1 1 175122 667 0.00 2019-11-26 23:52:05 2019-11-26 23:58:15 t 1 1 175123 512 0.00 2019-11-26 23:11:15 2019-11-27 00:02:17 t 1 1 175128 512 0.00 2019-11-27 00:19:27 2019-11-27 00:27:04 t 1 1 175132 220 0.00 2019-11-27 02:39:50 2019-11-27 02:41:03 t 1 1 175136 430 0.00 2019-11-27 05:51:45 2019-11-27 05:57:37 t 1 1 175137 430 0.00 2019-11-27 05:59:48 2019-11-27 06:04:03 t 1 1 175141 645 0.00 2019-11-27 06:36:42 2019-11-27 06:37:02 t 1 1 175145 416 0.00 2019-11-27 07:04:19 2019-11-27 07:13:30 t 1 1 175146 645 0.00 2019-11-27 07:32:33 2019-11-27 07:33:51 t 1 1 175147 591 0.00 2019-11-27 07:30:13 2019-11-27 08:07:59 t 1 1 175153 591 0.00 2019-11-27 08:46:13 2019-11-27 08:49:14 t 1 1 175157 623 0.00 2019-11-27 09:02:55 2019-11-27 09:03:08 t 1 1 175158 615 0.00 2019-11-27 08:58:40 2019-11-27 09:06:03 t 1 1 175161 623 0.00 2019-11-27 09:14:46 2019-11-27 09:21:01 t 1 1 175062 660 0.00 2019-11-26 21:09:36 2019-11-26 21:11:29 t 1 1 175069 623 0.00 2019-11-26 21:25:24 2019-11-26 21:25:42 t 1 1 175074 645 0.00 2019-11-26 21:33:14 2019-11-26 21:34:22 t 1 1 175077 623 0.00 2019-11-26 21:38:51 2019-11-26 21:40:03 t 1 1 175078 591 0.00 2019-11-26 20:41:25 2019-11-26 21:40:47 t 1 1 175081 623 0.00 2019-11-26 21:43:24 2019-11-26 21:43:51 t 1 1 175085 623 0.00 2019-11-26 21:46:44 2019-11-26 21:46:55 t 1 1 175088 623 0.00 2019-11-26 21:48:40 2019-11-26 21:50:03 t 1 1 175091 623 0.00 2019-11-26 21:52:34 2019-11-26 21:52:42 t 1 1 175094 667 0.00 2019-11-26 22:10:06 2019-11-26 22:10:46 t 1 2 175098 645 0.00 2019-11-26 22:15:11 2019-11-26 22:18:17 t 1 1 175099 220 0.00 2019-11-26 22:19:31 2019-11-26 22:23:15 t 1 2 175104 574 0.00 2019-11-26 22:33:16 2019-11-26 22:42:45 t 1 1 175108 591 0.00 2019-11-26 22:47:29 2019-11-26 22:53:07 t 1 1 175113 667 0.00 2019-11-26 23:09:01 2019-11-26 23:11:14 t 1 1 175116 591 0.00 2019-11-26 22:59:53 2019-11-26 23:25:25 t 1 1 175118 667 0.00 2019-11-26 23:29:40 2019-11-26 23:30:24 t 1 1 175119 667 0.00 2019-11-26 23:31:20 2019-11-26 23:41:24 t 1 1 175120 667 0.00 2019-11-26 23:41:24 2019-11-26 23:47:47 t 1 1 175125 667 0.00 2019-11-27 00:05:23 2019-11-27 00:08:18 t 1 1 175126 512 0.00 2019-11-27 00:02:17 2019-11-27 00:11:37 t 1 1 175129 512 0.00 2019-11-27 00:27:04 2019-11-27 00:27:11 t 1 1 175131 220 0.00 2019-11-26 21:55:00 2019-11-27 02:12:01 t 1 1 175133 220 0.00 2019-11-27 02:41:13 2019-11-27 02:41:16 t 1 2 175135 220 0.00 2019-11-27 03:22:18 2019-11-27 03:57:22 t 1 2 175138 645 0.00 2019-11-27 06:15:11 2019-11-27 06:15:35 t 1 1 175143 416 0.00 2019-11-26 20:31:43 2019-11-27 07:04:19 t 1 1 175149 591 0.00 2019-11-27 08:10:24 2019-11-27 08:23:43 t 1 1 175151 615 0.00 2019-11-27 08:30:05 2019-11-27 08:40:42 t 1 1 175152 591 0.00 2019-11-27 08:31:23 2019-11-27 08:41:57 t 1 1 175155 615 0.00 2019-11-27 08:40:42 2019-11-27 08:58:40 t 1 1 175159 591 0.00 2019-11-27 09:07:30 2019-11-27 09:11:15 t 1 1 175162 623 0.00 2019-11-27 09:21:01 2019-11-27 09:24:53 t 1 1 175163 623 0.00 2019-11-27 09:25:00 2019-11-27 09:30:35 t 1 1 175164 623 0.00 2019-11-27 09:30:35 2019-11-27 09:33:03 t 1 1 175165 623 0.00 2019-11-27 09:37:21 2019-11-27 09:38:49 t 1 1 175167 623 0.00 2019-11-27 09:46:26 2019-11-27 09:46:34 t 1 1 175168 623 0.00 2019-11-27 09:47:36 2019-11-27 09:47:36 t 1 1 175169 538 0.00 2019-11-27 09:25:26 2019-11-27 09:47:47 t 1 1 175171 623 0.00 2019-11-27 09:49:56 2019-11-27 09:50:23 t 1 1 175172 623 0.00 2019-11-27 09:51:40 2019-11-27 09:51:52 t 1 1 175175 568 0.00 2019-11-27 09:59:03 2019-11-27 09:59:55 t 1 1 175176 623 0.00 2019-11-27 10:02:14 2019-11-27 10:02:41 t 1 1 175177 623 0.00 2019-11-27 10:05:53 2019-11-27 10:10:39 t 1 1 175179 591 0.00 2019-11-27 09:18:25 2019-11-27 10:18:39 t 1 1 175181 623 0.00 2019-11-27 10:20:22 2019-11-27 10:20:57 t 1 1 175182 591 0.00 2019-11-27 10:21:53 2019-11-27 10:28:20 t 1 1 175183 623 0.00 2019-11-27 10:31:18 2019-11-27 10:32:18 t 1 1 175185 623 0.00 2019-11-27 10:35:48 2019-11-27 10:35:57 t 1 1 175186 623 0.00 2019-11-27 10:36:18 2019-11-27 10:36:49 t 1 1 175187 623 0.00 2019-11-27 10:38:14 2019-11-27 10:38:26 t 1 1 175188 623 0.00 2019-11-27 10:40:01 2019-11-27 10:40:09 t 1 1 175192 591 0.00 2019-11-27 10:44:42 2019-11-27 10:56:40 t 1 1 175193 623 0.00 2019-11-27 10:59:22 2019-11-27 10:59:30 t 1 1 175195 623 0.00 2019-11-27 11:04:57 2019-11-27 11:05:07 t 1 1 175196 623 0.00 2019-11-27 11:06:44 2019-11-27 11:07:07 t 1 1 175198 623 0.00 2019-11-27 11:18:04 2019-11-27 11:18:12 t 1 1 175200 615 0.00 2019-11-27 11:14:03 2019-11-27 11:22:15 t 1 1 175202 623 0.00 2019-11-27 11:30:28 2019-11-27 11:32:36 t 1 1 175203 615 0.00 2019-11-27 11:22:15 2019-11-27 11:32:39 t 1 1 175204 623 0.00 2019-11-27 11:33:42 2019-11-27 11:33:42 t 1 1 175205 416 0.00 2019-11-27 11:05:58 2019-11-27 11:37:30 t 1 1 175208 623 0.00 2019-11-27 11:41:32 2019-11-27 11:42:32 t 1 1 175209 623 0.00 2019-11-27 11:44:28 2019-11-27 11:44:55 t 1 1 175210 498 0.00 2019-11-27 10:55:20 2019-11-27 11:48:09 t 1 2 175211 623 0.00 2019-11-27 11:49:37 2019-11-27 11:50:03 t 1 1 175212 512 0.00 2019-11-27 11:41:09 2019-11-27 11:51:18 t 1 1 175213 623 0.00 2019-11-27 11:52:00 2019-11-27 11:52:14 t 1 1 175214 615 0.00 2019-11-27 11:36:08 2019-11-27 11:56:09 t 1 1 175215 623 0.00 2019-11-27 11:59:20 2019-11-27 11:59:28 t 1 1 175216 623 0.00 2019-11-27 12:00:46 2019-11-27 12:01:02 t 1 1 175218 625 0.00 2019-11-27 11:51:36 2019-11-27 12:06:59 t 1 1 175219 623 0.00 2019-11-27 12:07:27 2019-11-27 12:07:37 t 1 1 175220 623 0.00 2019-11-27 12:08:57 2019-11-27 12:09:08 t 1 1 175221 623 0.00 2019-11-27 12:10:15 2019-11-27 12:10:25 t 1 1 175223 623 0.00 2019-11-27 12:12:02 2019-11-27 12:12:29 t 1 1 175224 623 0.00 2019-11-27 12:14:06 2019-11-27 12:14:24 t 1 1 175227 623 0.00 2019-11-27 12:20:14 2019-11-27 12:20:23 t 1 1 175228 512 0.00 2019-11-27 11:51:52 2019-11-27 12:21:40 t 1 1 175229 623 0.00 2019-11-27 12:24:44 2019-11-27 12:24:53 t 1 1 175230 623 0.00 2019-11-27 12:25:38 2019-11-27 12:31:13 t 1 1 175231 623 0.00 2019-11-27 12:34:30 2019-11-27 12:34:51 t 1 1 175233 623 0.00 2019-11-27 12:35:30 2019-11-27 12:36:17 t 1 1 175234 512 0.00 2019-11-27 12:21:40 2019-11-27 12:36:42 t 1 1 175235 623 0.00 2019-11-27 12:40:11 2019-11-27 12:40:21 t 1 1 175237 623 0.00 2019-11-27 12:42:46 2019-11-27 12:42:55 t 1 1 175239 623 0.00 2019-11-27 12:47:03 2019-11-27 12:47:04 t 1 1 175240 623 0.00 2019-11-27 12:47:12 2019-11-27 12:47:12 t 1 1 175241 512 0.00 2019-11-27 12:36:41 2019-11-27 12:51:58 t 1 1 175243 623 0.00 2019-11-27 13:00:48 2019-11-27 13:01:00 t 1 1 175244 623 0.00 2019-11-27 13:02:31 2019-11-27 13:02:54 t 1 1 175246 538 0.00 2019-11-27 12:05:03 2019-11-27 13:07:52 t 1 1 175247 512 0.00 2019-11-27 12:52:15 2019-11-27 13:08:55 t 1 1 175249 615 0.00 2019-11-27 12:56:53 2019-11-27 13:09:37 t 1 1 175250 623 0.00 2019-11-27 13:10:33 2019-11-27 13:11:16 t 1 1 175251 623 0.00 2019-11-27 13:16:08 2019-11-27 13:16:28 t 1 1 175252 220 0.00 2019-11-27 13:25:38 2019-11-27 13:32:02 t 1 2 175254 635 0.00 2019-11-27 13:33:26 2019-11-27 13:34:27 t 1 1 175255 514 0.00 2019-11-27 13:41:19 2019-11-27 13:42:05 t 1 1 175256 514 0.00 2019-11-27 13:42:05 2019-11-27 13:43:07 t 1 1 175257 591 0.00 2019-11-27 13:02:03 2019-11-27 13:48:58 t 1 1 175258 483 0.00 2019-11-27 13:42:37 2019-11-27 13:55:19 t 1 1 175259 416 0.00 2019-11-27 12:16:22 2019-11-27 14:00:49 t 1 1 175260 591 0.00 2019-11-27 13:49:45 2019-11-27 14:12:42 t 1 1 175262 635 0.00 2019-11-27 13:35:33 2019-11-27 14:22:07 t 1 1 175264 220 0.00 2019-11-27 14:14:27 2019-11-27 14:42:38 t 1 1 175266 512 0.00 2019-11-27 14:44:58 2019-11-27 14:46:56 t 1 1 175101 645 0.00 2019-11-26 22:19:05 2019-11-26 22:30:23 t 1 1 175102 667 0.00 2019-11-26 22:23:39 2019-11-26 22:35:19 t 1 1 175105 667 0.00 2019-11-26 22:35:19 2019-11-26 22:45:28 t 1 1 175106 667 0.00 2019-11-26 22:07:13 2019-11-26 22:48:57 t 1 2 175110 512 0.00 2019-11-26 22:55:21 2019-11-26 22:55:43 t 1 1 175111 667 0.00 2019-11-26 22:45:28 2019-11-26 22:56:25 t 1 1 175115 667 0.00 2019-11-26 23:13:19 2019-11-26 23:21:23 t 1 1 175124 667 0.00 2019-11-26 23:58:15 2019-11-27 00:05:23 t 1 1 175127 512 0.00 2019-11-27 00:11:37 2019-11-27 00:19:27 t 1 1 175130 512 0.00 2019-11-27 00:49:45 2019-11-27 01:30:04 t 1 1 175134 220 0.00 2019-11-27 02:41:36 2019-11-27 03:03:52 t 1 2 175139 645 0.00 2019-11-27 06:25:40 2019-11-27 06:25:52 t 1 1 175140 645 0.00 2019-11-27 06:26:29 2019-11-27 06:26:41 t 1 1 175142 645 0.00 2019-11-27 06:47:23 2019-11-27 06:48:25 t 1 1 175144 645 0.00 2019-11-27 07:11:31 2019-11-27 07:13:15 t 1 1 175148 220 0.00 2019-11-27 08:17:24 2019-11-27 08:20:55 t 1 1 175150 220 0.00 2019-11-27 08:35:33 2019-11-27 08:38:49 t 1 1 175154 416 0.00 2019-11-27 08:29:53 2019-11-27 08:55:32 t 1 1 175156 623 0.00 2019-11-27 09:02:17 2019-11-27 09:02:46 t 1 1 175160 623 0.00 2019-11-27 09:05:14 2019-11-27 09:14:46 t 1 1 175166 623 0.00 2019-11-27 09:41:35 2019-11-27 09:42:23 t 1 1 175170 623 0.00 2019-11-27 09:49:30 2019-11-27 09:49:39 t 1 1 175173 623 0.00 2019-11-27 09:58:41 2019-11-27 09:59:15 t 1 1 175174 623 0.00 2019-11-27 09:59:24 2019-11-27 09:59:25 t 1 1 175178 220 0.00 2019-11-27 10:15:55 2019-11-27 10:17:56 t 1 1 175180 623 0.00 2019-11-27 10:12:23 2019-11-27 10:19:17 t 1 1 175184 623 0.00 2019-11-27 10:34:48 2019-11-27 10:35:15 t 1 1 175189 623 0.00 2019-11-27 10:41:08 2019-11-27 10:41:09 t 1 1 175190 498 0.00 2019-11-27 10:42:27 2019-11-27 10:50:32 t 1 2 175191 623 0.00 2019-11-27 10:51:11 2019-11-27 10:51:20 t 1 1 175194 591 0.00 2019-11-27 10:57:25 2019-11-27 11:02:16 t 1 1 175197 623 0.00 2019-11-27 11:17:24 2019-11-27 11:17:45 t 1 1 175199 623 0.00 2019-11-27 11:21:31 2019-11-27 11:21:45 t 1 1 175201 623 0.00 2019-11-27 11:23:18 2019-11-27 11:23:41 t 1 1 175206 623 0.00 2019-11-27 11:34:01 2019-11-27 11:38:45 t 1 1 175207 623 0.00 2019-11-27 11:41:03 2019-11-27 11:41:11 t 1 1 175217 623 0.00 2019-11-27 12:02:39 2019-11-27 12:03:04 t 1 1 175222 625 0.00 2019-11-27 12:06:59 2019-11-27 12:11:31 t 1 1 175225 625 0.00 2019-11-27 12:11:31 2019-11-27 12:15:56 t 1 1 175226 623 0.00 2019-11-27 12:15:34 2019-11-27 12:18:34 t 1 1 175232 625 0.00 2019-11-27 12:15:56 2019-11-27 12:35:04 t 1 1 175236 623 0.00 2019-11-27 12:41:58 2019-11-27 12:42:28 t 1 1 175238 623 0.00 2019-11-27 12:44:32 2019-11-27 12:44:55 t 1 1 175242 623 0.00 2019-11-27 12:54:43 2019-11-27 12:55:16 t 1 1 175245 635 0.00 2019-11-27 12:52:23 2019-11-27 13:07:38 t 1 1 175248 623 0.00 2019-11-27 13:08:43 2019-11-27 13:09:28 t 1 1 175253 635 0.00 2019-11-27 13:07:37 2019-11-27 13:33:13 t 1 1 175261 498 0.00 2019-11-27 13:56:02 2019-11-27 14:13:03 t 1 2 175263 591 0.00 2019-11-27 14:24:37 2019-11-27 14:30:39 t 1 1 175265 635 0.00 2019-11-27 14:22:07 2019-11-27 14:44:04 t 1 1 175267 591 0.00 2019-11-27 14:39:29 2019-11-27 14:55:22 t 1 1 175268 635 0.00 2019-11-27 14:45:43 2019-11-27 15:02:37 t 1 1 175269 591 0.00 2019-11-27 15:05:19 2019-11-27 15:14:11 t 1 1 175270 635 0.00 2019-11-27 15:12:03 2019-11-27 15:18:21 t 1 1 175271 220 0.00 2019-11-27 15:10:22 2019-11-27 15:20:19 t 1 2 175272 635 0.00 2019-11-27 15:19:18 2019-11-27 15:28:00 t 1 1 175273 514 0.00 2019-11-27 15:22:59 2019-11-27 15:28:29 t 1 1 175274 591 0.00 2019-11-27 15:31:01 2019-11-27 15:31:16 t 1 1 175275 514 0.00 2019-11-27 15:28:29 2019-11-27 15:33:31 t 1 1 175276 508 0.00 2019-11-27 15:56:03 2019-11-27 15:56:57 t 1 1 175277 508 0.00 2019-11-27 15:56:56 2019-11-27 15:57:59 t 1 1 175278 508 0.00 2019-11-27 15:57:58 2019-11-27 16:00:40 t 1 1 175279 615 0.00 2019-11-27 16:04:13 2019-11-27 16:14:17 t 1 1 175280 508 0.00 2019-11-27 16:01:16 2019-11-27 16:17:31 t 1 1 175281 508 0.00 2019-11-27 16:17:31 2019-11-27 16:27:02 t 1 1 175282 508 0.00 2019-11-27 16:27:02 2019-11-27 16:36:32 t 1 1 175283 623 0.00 2019-11-27 16:35:00 2019-11-27 16:36:51 t 1 1 175284 623 0.00 2019-11-27 16:38:51 2019-11-27 16:38:59 t 1 1 175285 645 0.00 2019-11-27 16:22:11 2019-11-27 16:41:05 t 1 1 175286 623 0.00 2019-11-27 16:45:31 2019-11-27 16:45:40 t 1 1 175287 623 0.00 2019-11-27 16:55:57 2019-11-27 16:56:12 t 1 1 175288 512 0.00 2019-11-27 16:39:24 2019-11-27 16:58:31 t 1 1 175289 645 0.00 2019-11-27 16:41:05 2019-11-27 16:59:14 t 1 1 175290 623 0.00 2019-11-27 16:58:00 2019-11-27 16:59:20 t 1 1 175291 645 0.00 2019-11-27 16:59:14 2019-11-27 17:00:50 t 1 1 175292 623 0.00 2019-11-27 16:58:55 2019-11-27 17:01:25 t 1 1 175293 623 0.00 2019-11-27 17:08:02 2019-11-27 17:08:10 t 1 1 175294 514 0.00 2019-11-27 15:33:31 2019-11-27 17:09:59 t 1 1 175295 623 0.00 2019-11-27 17:12:45 2019-11-27 17:13:20 t 1 1 175296 623 0.00 2019-11-27 17:13:27 2019-11-27 17:13:28 t 1 1 175297 645 0.00 2019-11-27 17:12:01 2019-11-27 17:13:57 t 1 1 175298 623 0.00 2019-11-27 17:14:29 2019-11-27 17:14:36 t 1 1 175299 623 0.00 2019-11-27 17:14:53 2019-11-27 17:14:54 t 1 1 175300 623 0.00 2019-11-27 17:15:02 2019-11-27 17:15:14 t 1 1 175301 623 0.00 2019-11-27 17:18:42 2019-11-27 17:19:05 t 1 1 175302 623 0.00 2019-11-27 17:22:00 2019-11-27 17:22:46 t 1 1 175303 623 0.00 2019-11-27 17:23:40 2019-11-27 17:26:46 t 1 1 175304 514 0.00 2019-11-27 17:09:59 2019-11-27 17:32:29 t 1 1 175305 544 0.00 2019-11-27 17:32:49 2019-11-27 17:35:21 t 1 1 175306 623 0.00 2019-11-27 17:32:27 2019-11-27 17:40:02 t 1 1 175307 623 0.00 2019-11-27 17:41:04 2019-11-27 17:41:34 t 1 1 175308 623 0.00 2019-11-27 17:42:27 2019-11-27 17:42:53 t 1 1 175309 623 0.00 2019-11-27 17:44:25 2019-11-27 17:44:38 t 1 1 175310 623 0.00 2019-11-27 17:51:32 2019-11-27 17:51:47 t 1 1 175311 591 0.00 2019-11-27 17:12:25 2019-11-27 17:52:39 t 1 1 175312 514 0.00 2019-11-27 17:32:29 2019-11-27 17:57:09 t 1 1 175313 623 0.00 2019-11-27 17:58:53 2019-11-27 17:59:18 t 1 1 175314 623 0.00 2019-11-27 18:00:48 2019-11-27 18:01:40 t 1 1 175315 623 0.00 2019-11-27 18:04:10 2019-11-27 18:04:20 t 1 1 175316 623 0.00 2019-11-27 18:09:07 2019-11-27 18:12:20 t 1 1 175317 623 0.00 2019-11-27 18:12:58 2019-11-27 18:13:06 t 1 1 175318 623 0.00 2019-11-27 18:18:09 2019-11-27 18:18:18 t 1 1 175319 514 0.00 2019-11-27 17:57:09 2019-11-27 18:23:58 t 1 1 175320 585 0.00 2019-11-27 18:25:41 2019-11-27 18:25:41 f 1 1 175321 623 0.00 2019-11-27 18:28:05 2019-11-27 18:28:12 t 1 1 175322 623 0.00 2019-11-27 18:38:34 2019-11-27 18:39:36 t 1 1 175323 615 0.00 2019-11-27 18:22:21 2019-11-27 18:42:53 t 1 1 175324 514 0.00 2019-11-27 18:23:58 2019-11-27 18:43:59 t 1 1 175330 544 0.00 2019-11-27 18:52:33 2019-11-27 18:59:57 t 1 1 175333 483 0.00 2019-11-27 19:22:42 2019-11-27 19:29:52 t 1 1 175335 514 0.00 2019-11-27 19:36:39 2019-11-27 19:39:55 t 1 1 175337 591 0.00 2019-11-27 18:56:14 2019-11-27 19:49:23 t 1 1 175338 591 0.00 2019-11-27 19:49:58 2019-11-27 19:52:12 t 1 1 175340 660 0.00 2019-11-27 19:52:44 2019-11-27 19:58:58 t 1 1 175341 623 0.00 2019-11-27 20:27:57 2019-11-27 20:28:45 t 1 1 175351 667 0.00 2019-11-27 20:49:29 2019-11-27 20:49:31 t 1 1 175353 667 0.00 2019-11-27 20:50:57 2019-11-27 20:50:58 t 1 1 175354 667 0.00 2019-11-27 20:51:05 2019-11-27 20:51:28 t 1 1 175357 667 0.00 2019-11-27 21:00:23 2019-11-27 21:01:23 t 1 1 175360 220 0.00 2019-11-27 21:03:21 2019-11-27 21:05:57 t 1 1 175364 667 0.00 2019-11-27 21:05:48 2019-11-27 21:14:29 t 1 1 175372 645 0.00 2019-11-27 21:13:00 2019-11-27 21:31:51 t 1 1 175374 667 0.00 2019-11-27 21:29:38 2019-11-27 21:32:45 t 1 1 175375 667 0.00 2019-11-27 21:32:45 2019-11-27 21:36:24 t 1 1 175376 660 0.00 2019-11-27 21:29:58 2019-11-27 21:37:05 t 1 1 175378 623 0.00 2019-11-27 21:37:23 2019-11-27 21:38:25 t 1 1 175383 623 0.00 2019-11-27 21:43:26 2019-11-27 21:43:27 t 1 1 175386 667 0.00 2019-11-27 21:44:49 2019-11-27 21:48:35 t 1 1 175391 623 0.00 2019-11-27 21:48:47 2019-11-27 21:50:25 t 1 1 175392 562 0.00 2019-11-27 21:51:14 2019-11-27 21:51:45 t 1 1 175396 645 0.00 2019-11-27 21:50:19 2019-11-27 22:05:29 t 1 1 175399 512 0.00 2019-11-27 22:18:29 2019-11-27 22:19:31 t 1 1 175400 645 0.00 2019-11-27 22:24:24 2019-11-27 22:24:33 t 1 1 175401 667 0.00 2019-11-27 21:58:51 2019-11-27 22:28:46 t 1 1 175405 512 0.00 2019-11-27 22:19:57 2019-11-27 22:45:31 t 1 1 175407 514 0.00 2019-11-27 22:45:07 2019-11-27 22:50:27 t 1 1 175408 667 0.00 2019-11-27 22:28:46 2019-11-27 22:52:02 t 1 1 175411 591 0.00 2019-11-27 22:57:22 2019-11-27 22:58:08 t 1 1 175413 667 0.00 2019-11-27 23:01:36 2019-11-27 23:05:26 t 1 1 175416 514 0.00 2019-11-27 22:50:27 2019-11-27 23:10:15 t 1 1 175419 645 0.00 2019-11-27 23:14:59 2019-11-27 23:15:00 t 1 1 175421 544 0.00 2019-11-27 23:05:25 2019-11-27 23:28:51 t 1 1 175424 660 0.00 2019-11-27 23:24:12 2019-11-27 23:39:49 t 1 1 175427 660 0.00 2019-11-27 23:39:49 2019-11-27 23:52:53 t 1 1 175428 645 0.00 2019-11-27 23:35:59 2019-11-27 23:55:50 t 1 1 175432 514 0.00 2019-11-27 23:50:52 2019-11-28 00:19:09 t 1 1 175441 514 0.00 2019-11-28 01:04:16 2019-11-28 01:07:22 t 1 1 175442 514 0.00 2019-11-28 01:07:22 2019-11-28 01:11:18 t 1 1 175443 514 0.00 2019-11-28 01:11:18 2019-11-28 01:14:39 t 1 1 175448 483 0.00 2019-11-28 00:54:24 2019-11-28 01:34:15 t 1 1 175450 514 0.00 2019-11-28 01:35:20 2019-11-28 01:40:24 t 1 1 175454 514 0.00 2019-11-28 01:49:52 2019-11-28 01:54:33 t 1 1 175455 514 0.00 2019-11-28 01:54:33 2019-11-28 02:07:18 t 1 1 175456 514 0.00 2019-11-28 02:07:18 2019-11-28 02:08:05 t 1 1 175457 514 0.00 2019-11-28 02:08:05 2019-11-28 02:08:32 t 1 1 175461 514 0.00 2019-11-28 02:12:08 2019-11-28 02:13:11 t 1 1 175463 660 0.00 2019-11-28 00:00:12 2019-11-28 06:39:19 t 1 1 175472 667 0.00 2019-11-28 07:59:11 2019-11-28 08:00:36 t 1 1 175473 645 0.00 2019-11-28 08:06:40 2019-11-28 08:07:12 t 1 1 175474 645 0.00 2019-11-28 08:17:09 2019-11-28 08:17:17 t 1 1 175478 615 0.00 2019-11-28 08:21:34 2019-11-28 08:28:50 t 1 1 175483 615 0.00 2019-11-28 08:45:04 2019-11-28 08:49:14 t 1 1 175484 645 0.00 2019-11-28 08:33:37 2019-11-28 08:52:47 t 1 1 175488 635 0.00 2019-11-28 08:37:54 2019-11-28 09:01:51 t 1 1 175494 645 0.00 2019-11-28 09:17:35 2019-11-28 09:17:44 t 1 1 175499 635 0.00 2019-11-28 09:01:51 2019-11-28 09:25:15 t 1 1 175501 635 0.00 2019-11-28 09:25:18 2019-11-28 09:31:26 t 1 1 175503 220 0.00 2019-11-28 09:34:43 2019-11-28 09:34:51 t 1 1 175510 220 0.00 2019-11-28 09:54:44 2019-11-28 09:55:59 t 1 1 175518 220 0.00 2019-11-28 10:07:22 2019-11-28 10:10:10 t 1 1 175520 615 0.00 2019-11-28 10:00:50 2019-11-28 10:15:03 t 1 1 175522 220 0.00 2019-11-28 10:16:40 2019-11-28 10:16:54 t 1 1 175524 574 0.00 2019-11-28 10:20:37 2019-11-28 10:25:36 t 1 1 175525 220 0.00 2019-11-28 10:17:16 2019-11-28 10:27:10 t 1 1 175529 220 0.00 2019-11-28 10:38:03 2019-11-28 10:40:27 t 1 1 175536 220 0.00 2019-11-28 10:47:21 2019-11-28 10:47:31 t 1 1 175538 220 0.00 2019-11-28 10:47:46 2019-11-28 10:47:47 t 1 1 175543 220 0.00 2019-11-28 10:54:20 2019-11-28 10:54:33 t 1 1 175544 670 0.00 2019-11-28 10:55:15 2019-11-28 10:56:08 t 1 1 175547 670 0.00 2019-11-28 10:56:19 2019-11-28 10:56:22 t 1 1 175552 220 0.00 2019-11-28 11:04:50 2019-11-28 11:05:29 t 1 1 175553 623 0.00 2019-11-28 11:06:26 2019-11-28 11:06:34 t 1 1 175557 574 0.00 2019-11-28 11:12:20 2019-11-28 11:13:38 t 1 1 175561 623 0.00 2019-11-28 11:15:08 2019-11-28 11:15:16 t 1 1 175562 623 0.00 2019-11-28 11:16:10 2019-11-28 11:16:20 t 1 1 175566 220 0.00 2019-11-28 11:20:26 2019-11-28 11:21:03 t 1 1 175567 220 0.00 2019-11-28 11:21:03 2019-11-28 11:21:37 t 1 1 175570 220 0.00 2019-11-28 11:21:37 2019-11-28 11:22:16 t 1 1 175576 220 0.00 2019-11-28 11:23:29 2019-11-28 11:24:01 t 1 1 175582 220 0.00 2019-11-28 11:25:19 2019-11-28 11:25:55 t 1 1 175583 220 0.00 2019-11-28 11:25:55 2019-11-28 11:26:34 t 1 1 175588 220 0.00 2019-11-28 11:28:20 2019-11-28 11:29:00 t 1 1 175590 220 0.00 2019-11-28 11:29:35 2019-11-28 11:30:12 t 1 1 175591 623 0.00 2019-11-28 11:29:04 2019-11-28 11:30:27 t 1 1 175596 412 0.00 2019-11-28 11:32:19 2019-11-28 11:32:19 f 1 1 175602 220 0.00 2019-11-28 11:33:52 2019-11-28 11:34:26 t 1 1 175608 623 0.00 2019-11-28 11:33:31 2019-11-28 11:36:38 t 1 1 175612 538 0.00 2019-11-28 11:22:35 2019-11-28 11:41:34 t 1 1 175615 585 0.00 2019-11-28 11:42:36 2019-11-28 11:42:36 f 1 1 175620 562 0.00 2019-11-28 11:45:03 2019-11-28 11:48:21 t 1 1 175623 671 0.00 2019-11-28 11:50:01 2019-11-28 11:51:58 t 1 1 175628 220 0.00 2019-11-28 11:57:03 2019-11-28 11:57:42 t 1 1 175631 645 0.00 2019-11-28 11:46:20 2019-11-28 11:59:22 t 1 1 175632 220 0.00 2019-11-28 11:58:56 2019-11-28 11:59:32 t 1 1 175633 220 0.00 2019-11-28 11:59:32 2019-11-28 12:00:08 t 1 1 175634 564 0.00 2019-11-28 11:07:28 2019-11-28 12:01:37 t 1 1 175635 562 0.00 2019-11-28 11:48:45 2019-11-28 12:02:33 t 1 1 175636 564 0.00 2019-11-28 12:01:37 2019-11-28 12:05:40 t 1 1 175638 220 0.00 2019-11-28 12:00:10 2019-11-28 12:10:04 t 1 1 175639 220 0.00 2019-11-28 12:10:04 2019-11-28 12:10:39 t 1 1 175640 220 0.00 2019-11-28 12:10:41 2019-11-28 12:13:19 t 1 1 175641 645 0.00 2019-11-28 12:11:55 2019-11-28 12:13:35 t 1 1 175643 488 0.00 2019-11-28 12:17:22 2019-11-28 12:17:22 f 1 1 175644 488 0.00 2019-11-28 12:17:30 2019-11-28 12:17:30 f 1 1 175325 591 0.00 2019-11-27 17:52:39 2019-11-27 18:45:39 t 1 1 175326 623 0.00 2019-11-27 18:46:19 2019-11-27 18:46:40 t 1 1 175328 514 0.00 2019-11-27 18:43:59 2019-11-27 18:52:32 t 1 1 175329 615 0.00 2019-11-27 18:42:53 2019-11-27 18:56:30 t 1 1 175339 483 0.00 2019-11-27 19:51:09 2019-11-27 19:54:54 t 1 1 175348 667 0.00 2019-11-27 20:48:11 2019-11-27 20:48:27 t 1 1 175352 667 0.00 2019-11-27 20:49:37 2019-11-27 20:49:50 t 1 1 175355 667 0.00 2019-11-27 20:54:12 2019-11-27 20:54:27 t 1 1 175362 623 0.00 2019-11-27 21:09:43 2019-11-27 21:11:56 t 1 1 175363 623 0.00 2019-11-27 21:12:09 2019-11-27 21:12:40 t 1 1 175365 623 0.00 2019-11-27 21:14:48 2019-11-27 21:14:56 t 1 1 175367 591 0.00 2019-11-27 21:04:29 2019-11-27 21:18:55 t 1 1 175370 667 0.00 2019-11-27 21:27:51 2019-11-27 21:28:07 t 1 1 175371 623 0.00 2019-11-27 21:30:42 2019-11-27 21:31:32 t 1 1 175373 510 0.00 2019-11-27 21:01:42 2019-11-27 21:32:11 t 1 1 175377 623 0.00 2019-11-27 21:36:47 2019-11-27 21:37:12 t 1 1 175381 667 0.00 2019-11-27 21:39:19 2019-11-27 21:39:53 t 1 1 175382 623 0.00 2019-11-27 21:42:34 2019-11-27 21:43:00 t 1 1 175384 623 0.00 2019-11-27 21:43:35 2019-11-27 21:44:00 t 1 1 175385 660 0.00 2019-11-27 21:37:05 2019-11-27 21:46:53 t 1 1 175388 667 0.00 2019-11-27 21:48:45 2019-11-27 21:49:50 t 1 1 175394 667 0.00 2019-11-27 21:54:23 2019-11-27 21:55:55 t 1 1 175395 510 0.00 2019-11-27 21:32:11 2019-11-27 22:01:38 t 1 1 175398 645 0.00 2019-11-27 22:13:55 2019-11-27 22:14:14 t 1 1 175404 514 0.00 2019-11-27 22:18:16 2019-11-27 22:45:07 t 1 1 175406 645 0.00 2019-11-27 22:33:36 2019-11-27 22:50:00 t 1 1 175410 660 0.00 2019-11-27 21:46:53 2019-11-27 22:56:13 t 1 1 175412 667 0.00 2019-11-27 22:53:05 2019-11-27 23:00:24 t 1 1 175415 645 0.00 2019-11-27 22:50:00 2019-11-27 23:05:55 t 1 1 175417 645 0.00 2019-11-27 23:05:55 2019-11-27 23:12:16 t 1 1 175418 645 0.00 2019-11-27 23:12:23 2019-11-27 23:12:31 t 1 1 175420 645 0.00 2019-11-27 23:19:48 2019-11-27 23:25:38 t 1 1 175423 510 0.00 2019-11-27 22:08:57 2019-11-27 23:33:34 t 1 1 175426 514 0.00 2019-11-27 23:10:15 2019-11-27 23:50:52 t 1 1 175436 220 0.00 2019-11-28 00:31:50 2019-11-28 00:43:38 t 1 1 175437 220 0.00 2019-11-28 00:43:38 2019-11-28 00:46:22 t 1 1 175438 645 0.00 2019-11-28 00:53:51 2019-11-28 00:55:23 t 1 1 175440 514 0.00 2019-11-28 00:58:59 2019-11-28 01:04:16 t 1 1 175446 514 0.00 2019-11-28 01:21:23 2019-11-28 01:25:19 t 1 1 175447 514 0.00 2019-11-28 01:25:19 2019-11-28 01:29:49 t 1 1 175451 514 0.00 2019-11-28 01:40:24 2019-11-28 01:43:42 t 1 1 175452 514 0.00 2019-11-28 01:43:42 2019-11-28 01:46:23 t 1 1 175458 514 0.00 2019-11-28 02:08:31 2019-11-28 02:09:33 t 1 1 175460 514 0.00 2019-11-28 02:10:26 2019-11-28 02:10:57 t 1 1 175464 645 0.00 2019-11-28 06:39:36 2019-11-28 06:39:45 t 1 1 175466 645 0.00 2019-11-28 07:41:09 2019-11-28 07:41:17 t 1 1 175468 645 0.00 2019-11-28 07:47:12 2019-11-28 07:47:20 t 1 1 175469 645 0.00 2019-11-28 07:50:15 2019-11-28 07:50:26 t 1 1 175471 645 0.00 2019-11-28 07:56:11 2019-11-28 07:56:43 t 1 1 175475 615 0.00 2019-11-28 08:15:51 2019-11-28 08:21:34 t 1 1 175476 562 0.00 2019-11-28 08:19:18 2019-11-28 08:22:34 t 1 1 175486 645 0.00 2019-11-28 08:56:01 2019-11-28 08:56:12 t 1 1 175489 645 0.00 2019-11-28 09:01:37 2019-11-28 09:02:06 t 1 1 175490 220 0.00 2019-11-28 09:02:51 2019-11-28 09:03:00 t 1 1 175492 220 0.00 2019-11-28 09:13:21 2019-11-28 09:13:36 t 1 1 175496 615 0.00 2019-11-28 09:14:47 2019-11-28 09:18:02 t 1 1 175498 645 0.00 2019-11-28 09:23:24 2019-11-28 09:25:03 t 1 1 175504 220 0.00 2019-11-28 09:34:59 2019-11-28 09:35:13 t 1 1 175506 645 0.00 2019-11-28 09:39:37 2019-11-28 09:41:57 t 1 1 175508 615 0.00 2019-11-28 09:39:28 2019-11-28 09:45:43 t 1 1 175513 591 0.00 2019-11-28 09:26:08 2019-11-28 09:58:23 t 1 1 175515 220 0.00 2019-11-28 10:06:44 2019-11-28 10:06:59 t 1 1 175517 635 0.00 2019-11-28 09:41:50 2019-11-28 10:08:26 t 1 1 175521 220 0.00 2019-11-28 10:10:45 2019-11-28 10:16:40 t 1 1 175523 591 0.00 2019-11-28 10:02:41 2019-11-28 10:23:20 t 1 1 175527 220 0.00 2019-11-28 10:27:47 2019-11-28 10:36:59 t 1 1 175528 220 0.00 2019-11-28 10:37:39 2019-11-28 10:37:55 t 1 1 175530 564 0.00 2019-11-28 10:41:48 2019-11-28 10:42:06 t 1 1 175531 514 0.00 2019-11-28 10:41:50 2019-11-28 10:42:34 t 1 1 175533 514 0.00 2019-11-28 10:42:33 2019-11-28 10:43:39 t 1 1 175541 623 0.00 2019-11-28 10:49:12 2019-11-28 10:49:49 t 1 1 175542 220 0.00 2019-11-28 10:47:59 2019-11-28 10:54:20 t 1 1 175545 670 0.00 2019-11-28 10:56:08 2019-11-28 10:56:15 t 1 1 175546 623 0.00 2019-11-28 10:53:22 2019-11-28 10:56:21 t 1 1 175548 670 0.00 2019-11-28 10:56:27 2019-11-28 10:56:31 t 1 1 175551 220 0.00 2019-11-28 10:54:57 2019-11-28 11:04:50 t 1 1 175554 564 0.00 2019-11-28 10:48:48 2019-11-28 11:07:28 t 1 1 175556 615 0.00 2019-11-28 11:02:50 2019-11-28 11:11:54 t 1 1 175558 220 0.00 2019-11-28 11:05:28 2019-11-28 11:14:18 t 1 1 175564 645 0.00 2019-11-28 11:15:42 2019-11-28 11:18:45 t 1 1 175568 595 0.00 2019-11-28 11:22:04 2019-11-28 11:22:04 f 1 1 175571 595 0.00 2019-11-28 11:22:18 2019-11-28 11:22:18 f 1 1 175572 595 0.00 2019-11-28 11:22:26 2019-11-28 11:22:26 f 1 1 175577 220 0.00 2019-11-28 11:24:01 2019-11-28 11:24:04 t 1 1 175578 220 0.00 2019-11-28 11:24:04 2019-11-28 11:24:39 t 1 1 175580 220 0.00 2019-11-28 11:24:40 2019-11-28 11:24:48 t 1 1 175584 220 0.00 2019-11-28 11:26:33 2019-11-28 11:27:09 t 1 1 175585 220 0.00 2019-11-28 11:27:09 2019-11-28 11:27:46 t 1 1 175586 220 0.00 2019-11-28 11:27:46 2019-11-28 11:28:21 t 1 1 175592 220 0.00 2019-11-28 11:30:12 2019-11-28 11:30:43 t 1 1 175593 220 0.00 2019-11-28 11:30:43 2019-11-28 11:31:21 t 1 1 175597 623 0.00 2019-11-28 11:31:39 2019-11-28 11:32:27 t 1 1 175601 220 0.00 2019-11-28 11:33:14 2019-11-28 11:33:52 t 1 1 175603 220 0.00 2019-11-28 11:34:26 2019-11-28 11:34:49 t 1 1 175605 485 0.00 2019-11-28 11:33:40 2019-11-28 11:35:06 t 1 1 175606 645 0.00 2019-11-28 11:33:16 2019-11-28 11:36:14 t 1 1 175607 615 0.00 2019-11-28 11:34:19 2019-11-28 11:36:30 t 1 1 175609 623 0.00 2019-11-28 11:40:42 2019-11-28 11:40:42 f 1 1 175611 623 0.00 2019-11-28 11:39:58 2019-11-28 11:41:27 t 1 1 175613 671 0.00 2019-11-28 11:40:30 2019-11-28 11:41:36 t 1 1 175616 585 0.00 2019-11-28 11:42:42 2019-11-28 11:42:42 f 1 1 175617 671 0.00 2019-11-28 11:41:35 2019-11-28 11:45:01 t 1 1 175619 220 0.00 2019-11-28 11:45:19 2019-11-28 11:45:52 t 1 1 175621 562 0.00 2019-11-28 11:48:21 2019-11-28 11:48:46 t 1 1 175622 635 0.00 2019-11-28 10:09:09 2019-11-28 11:51:39 t 1 1 175625 220 0.00 2019-11-28 11:55:50 2019-11-28 11:55:51 t 1 1 175627 220 0.00 2019-11-28 11:56:28 2019-11-28 11:57:04 t 1 1 175327 483 0.00 2019-11-27 18:41:52 2019-11-27 18:47:22 t 1 1 175331 514 0.00 2019-11-27 18:52:32 2019-11-27 19:09:34 t 1 1 175332 514 0.00 2019-11-27 19:18:47 2019-11-27 19:24:42 t 1 1 175334 514 0.00 2019-11-27 19:24:42 2019-11-27 19:36:39 t 1 1 175336 514 0.00 2019-11-27 19:39:55 2019-11-27 19:41:12 t 1 1 175342 623 0.00 2019-11-27 20:28:45 2019-11-27 20:29:17 t 1 1 175343 623 0.00 2019-11-27 20:37:14 2019-11-27 20:39:04 t 1 1 175344 623 0.00 2019-11-27 20:40:21 2019-11-27 20:40:43 t 1 1 175345 623 0.00 2019-11-27 20:40:03 2019-11-27 20:41:22 t 1 1 175346 623 0.00 2019-11-27 20:42:57 2019-11-27 20:43:17 t 1 1 175347 667 0.00 2019-11-27 20:40:45 2019-11-27 20:47:15 t 1 1 175349 667 0.00 2019-11-27 20:49:13 2019-11-27 20:49:14 t 1 1 175350 667 0.00 2019-11-27 20:49:21 2019-11-27 20:49:22 t 1 1 175356 667 0.00 2019-11-27 20:57:39 2019-11-27 21:00:00 t 1 1 175358 510 0.00 2019-11-27 20:30:51 2019-11-27 21:01:42 t 1 1 175359 591 0.00 2019-11-27 19:55:35 2019-11-27 21:04:29 t 1 1 175361 623 0.00 2019-11-27 21:07:37 2019-11-27 21:08:04 t 1 1 175366 623 0.00 2019-11-27 21:17:00 2019-11-27 21:17:01 t 1 1 175368 623 0.00 2019-11-27 21:20:03 2019-11-27 21:22:46 t 1 1 175369 667 0.00 2019-11-27 21:17:38 2019-11-27 21:24:52 t 1 1 175379 667 0.00 2019-11-27 21:36:34 2019-11-27 21:39:08 t 1 1 175380 220 0.00 2019-11-27 21:25:46 2019-11-27 21:39:29 t 1 1 175387 562 0.00 2019-11-27 21:43:23 2019-11-27 21:49:45 t 1 1 175389 562 0.00 2019-11-27 21:50:00 2019-11-27 21:50:12 t 1 1 175390 645 0.00 2019-11-27 21:31:51 2019-11-27 21:50:19 t 1 1 175393 591 0.00 2019-11-27 21:18:55 2019-11-27 21:55:31 t 1 1 175397 645 0.00 2019-11-27 22:10:15 2019-11-27 22:10:16 t 1 1 175402 645 0.00 2019-11-27 22:32:40 2019-11-27 22:33:22 t 1 1 175403 635 0.00 2019-11-27 22:29:36 2019-11-27 22:36:22 t 1 1 175409 591 0.00 2019-11-27 22:03:15 2019-11-27 22:53:33 t 1 1 175414 667 0.00 2019-11-27 23:05:26 2019-11-27 23:05:45 t 1 1 175422 667 0.00 2019-11-27 23:06:49 2019-11-27 23:31:04 t 1 1 175425 574 0.00 2019-11-27 23:38:18 2019-11-27 23:46:10 t 1 1 175429 660 0.00 2019-11-27 23:52:53 2019-11-28 00:00:13 t 1 1 175430 645 0.00 2019-11-27 23:55:50 2019-11-28 00:10:06 t 1 1 175431 645 0.00 2019-11-28 00:10:06 2019-11-28 00:17:37 t 1 1 175433 220 0.00 2019-11-28 00:20:05 2019-11-28 00:31:50 t 1 1 175434 645 0.00 2019-11-28 00:20:09 2019-11-28 00:33:04 t 1 1 175435 645 0.00 2019-11-28 00:43:22 2019-11-28 00:43:31 t 1 1 175439 663 0.00 2019-11-28 00:53:58 2019-11-28 00:58:59 t 1 1 175444 514 0.00 2019-11-28 01:14:39 2019-11-28 01:18:27 t 1 1 175445 514 0.00 2019-11-28 01:18:27 2019-11-28 01:21:22 t 1 1 175449 514 0.00 2019-11-28 01:29:49 2019-11-28 01:35:20 t 1 1 175453 514 0.00 2019-11-28 01:46:23 2019-11-28 01:49:52 t 1 1 175459 514 0.00 2019-11-28 02:09:40 2019-11-28 02:10:27 t 1 1 175462 483 0.00 2019-11-28 02:28:00 2019-11-28 02:36:43 t 1 1 175465 645 0.00 2019-11-28 06:40:00 2019-11-28 06:40:02 t 1 1 175467 645 0.00 2019-11-28 07:44:12 2019-11-28 07:44:19 t 1 1 175470 645 0.00 2019-11-28 07:53:17 2019-11-28 07:53:26 t 1 1 175477 645 0.00 2019-11-28 08:27:38 2019-11-28 08:27:46 t 1 1 175479 591 0.00 2019-11-28 07:54:26 2019-11-28 08:30:41 t 1 1 175480 645 0.00 2019-11-28 08:29:30 2019-11-28 08:32:22 t 1 1 175481 591 0.00 2019-11-28 08:30:41 2019-11-28 08:42:20 t 1 1 175482 615 0.00 2019-11-28 08:28:50 2019-11-28 08:45:04 t 1 1 175485 645 0.00 2019-11-28 08:54:12 2019-11-28 08:54:20 t 1 1 175487 591 0.00 2019-11-28 08:47:47 2019-11-28 08:56:21 t 1 1 175491 645 0.00 2019-11-28 09:12:12 2019-11-28 09:12:44 t 1 1 175493 220 0.00 2019-11-28 09:13:44 2019-11-28 09:13:58 t 1 1 175495 591 0.00 2019-11-28 09:13:20 2019-11-28 09:17:57 t 1 1 175497 220 0.00 2019-11-28 09:24:14 2019-11-28 09:24:22 t 1 1 175500 627 0.00 2019-11-28 09:28:23 2019-11-28 09:30:39 t 1 1 175502 645 0.00 2019-11-28 09:29:42 2019-11-28 09:31:32 t 1 1 175505 645 0.00 2019-11-28 09:35:23 2019-11-28 09:36:27 t 1 1 175507 220 0.00 2019-11-28 09:45:29 2019-11-28 09:45:37 t 1 1 175509 627 0.00 2019-11-28 09:43:58 2019-11-28 09:55:24 t 1 1 175511 220 0.00 2019-11-28 09:55:59 2019-11-28 09:56:07 t 1 1 175512 220 0.00 2019-11-28 09:56:15 2019-11-28 09:56:29 t 1 1 175514 220 0.00 2019-11-28 09:56:37 2019-11-28 10:06:45 t 1 1 175516 220 0.00 2019-11-28 10:07:07 2019-11-28 10:07:08 t 1 1 175519 220 0.00 2019-11-28 10:10:09 2019-11-28 10:10:45 t 1 1 175526 220 0.00 2019-11-28 10:27:10 2019-11-28 10:27:18 t 1 1 175532 623 0.00 2019-11-28 10:34:39 2019-11-28 10:43:22 t 1 1 175534 623 0.00 2019-11-28 10:46:36 2019-11-28 10:46:47 t 1 1 175535 220 0.00 2019-11-28 10:38:46 2019-11-28 10:47:22 t 1 1 175537 623 0.00 2019-11-28 10:47:25 2019-11-28 10:47:34 t 1 1 175539 564 0.00 2019-11-28 10:42:06 2019-11-28 10:48:48 t 1 1 175540 615 0.00 2019-11-28 10:46:16 2019-11-28 10:49:31 t 1 1 175549 631 0.00 2019-11-28 10:56:14 2019-11-28 10:59:58 t 1 1 175550 649 0.00 2019-11-28 10:44:16 2019-11-28 11:03:00 t 1 1 175555 670 0.00 2019-11-28 10:56:38 2019-11-28 11:11:19 t 1 1 175559 220 0.00 2019-11-28 11:14:18 2019-11-28 11:14:27 t 1 1 175560 220 0.00 2019-11-28 11:14:43 2019-11-28 11:14:57 t 1 1 175563 623 0.00 2019-11-28 11:17:57 2019-11-28 11:18:21 t 1 1 175565 220 0.00 2019-11-28 11:14:57 2019-11-28 11:20:26 t 1 1 175569 595 0.00 2019-11-28 11:22:11 2019-11-28 11:22:11 f 1 1 175573 595 0.00 2019-11-28 11:22:34 2019-11-28 11:22:34 f 1 1 175574 220 0.00 2019-11-28 11:22:16 2019-11-28 11:22:52 t 1 1 175575 220 0.00 2019-11-28 11:22:52 2019-11-28 11:23:29 t 1 1 175579 220 0.00 2019-11-28 11:24:39 2019-11-28 11:24:41 t 1 1 175581 220 0.00 2019-11-28 11:25:14 2019-11-28 11:25:20 t 1 1 175587 623 0.00 2019-11-28 11:28:27 2019-11-28 11:28:38 t 1 1 175589 220 0.00 2019-11-28 11:28:59 2019-11-28 11:29:35 t 1 1 175594 591 0.00 2019-11-28 10:35:09 2019-11-28 11:31:39 t 1 1 175595 220 0.00 2019-11-28 11:31:21 2019-11-28 11:32:00 t 1 1 175598 220 0.00 2019-11-28 11:31:59 2019-11-28 11:32:39 t 1 1 175599 220 0.00 2019-11-28 11:32:38 2019-11-28 11:33:14 t 1 1 175600 623 0.00 2019-11-28 11:33:06 2019-11-28 11:33:20 t 1 1 175604 220 0.00 2019-11-28 11:34:49 2019-11-28 11:35:04 t 1 1 175610 623 0.00 2019-11-28 11:40:22 2019-11-28 11:41:27 t 1 1 175614 562 0.00 2019-11-28 11:39:04 2019-11-28 11:42:21 t 1 1 175618 220 0.00 2019-11-28 11:35:04 2019-11-28 11:45:20 t 1 1 175624 220 0.00 2019-11-28 11:45:57 2019-11-28 11:55:50 t 1 1 175626 220 0.00 2019-11-28 11:56:00 2019-11-28 11:56:01 t 1 1 175629 220 0.00 2019-11-28 11:57:42 2019-11-28 11:58:18 t 1 1 175630 220 0.00 2019-11-28 11:58:18 2019-11-28 11:58:56 t 1 1 175637 562 0.00 2019-11-28 12:05:36 2019-11-28 12:07:28 t 1 1 175642 499 0.00 2019-11-28 12:10:50 2019-11-28 12:16:18 t 1 1 175645 220 0.00 2019-11-28 12:15:03 2019-11-28 12:20:29 t 1 1 175648 220 0.00 2019-11-28 12:20:34 2019-11-28 12:20:49 t 1 1 175650 611 0.00 2019-11-28 12:12:13 2019-11-28 12:24:55 t 1 1 175655 488 0.00 2019-11-28 12:28:42 2019-11-28 12:28:42 f 1 1 175662 585 0.00 2019-11-28 12:30:51 2019-11-28 12:30:51 f 1 1 175665 220 0.00 2019-11-28 12:31:05 2019-11-28 12:31:07 t 1 1 175667 422 0.00 2019-11-28 12:26:00 2019-11-28 12:32:15 t 1 1 175672 422 0.00 2019-11-28 12:34:17 2019-11-28 12:34:18 t 1 1 175678 516 0.00 2019-11-28 12:37:01 2019-11-28 12:37:41 t 1 1 175679 488 0.00 2019-11-28 12:37:55 2019-11-28 12:37:55 f 1 1 175681 544 0.00 2019-11-28 12:34:16 2019-11-28 12:38:45 t 1 1 175684 220 0.00 2019-11-28 12:39:43 2019-11-28 12:39:57 t 1 1 175687 516 0.00 2019-11-28 12:40:10 2019-11-28 12:40:14 t 1 1 175688 645 0.00 2019-11-28 12:37:21 2019-11-28 12:40:58 t 1 1 175693 671 0.00 2019-11-28 12:40:59 2019-11-28 12:43:35 t 1 1 175695 591 0.00 2019-11-28 11:31:39 2019-11-28 12:46:42 t 1 1 175697 412 0.00 2019-11-28 12:47:32 2019-11-28 12:47:32 f 1 1 175700 656 0.00 2019-11-28 12:31:55 2019-11-28 12:48:27 t 1 1 175703 220 0.00 2019-11-28 12:50:15 2019-11-28 12:50:16 t 1 1 175710 485 0.00 2019-11-28 12:55:16 2019-11-28 12:57:17 t 1 1 175712 671 0.00 2019-11-28 12:47:27 2019-11-28 12:58:09 t 1 1 175714 220 0.00 2019-11-28 12:50:51 2019-11-28 12:59:37 t 1 1 175716 528 0.00 2019-11-28 12:59:01 2019-11-28 12:59:56 t 1 1 175720 220 0.00 2019-11-28 13:00:46 2019-11-28 13:00:50 t 1 1 175723 220 0.00 2019-11-28 13:01:26 2019-11-28 13:04:52 t 1 1 175726 516 0.00 2019-11-28 13:05:13 2019-11-28 13:06:32 t 1 1 175728 611 0.00 2019-11-28 13:01:44 2019-11-28 13:09:25 t 1 1 175729 422 0.00 2019-11-28 12:52:56 2019-11-28 13:09:43 t 1 1 175737 671 0.00 2019-11-28 13:11:29 2019-11-28 13:12:54 t 1 1 175743 422 0.00 2019-11-28 13:14:55 2019-11-28 13:15:16 t 1 1 175749 499 0.00 2019-11-28 13:13:30 2019-11-28 13:21:01 t 1 1 175752 508 0.00 2019-11-28 13:21:12 2019-11-28 13:22:56 t 1 1 175754 422 0.00 2019-11-28 13:21:39 2019-11-28 13:23:37 t 1 1 175761 422 0.00 2019-11-28 13:30:01 2019-11-28 13:31:06 t 1 1 175764 220 0.00 2019-11-28 13:25:18 2019-11-28 13:33:28 t 1 1 175766 508 0.00 2019-11-28 13:27:29 2019-11-28 13:33:52 t 1 1 175771 220 0.00 2019-11-28 13:34:05 2019-11-28 13:37:23 t 1 1 175772 485 0.00 2019-11-28 13:35:42 2019-11-28 13:37:39 t 1 1 175777 422 0.00 2019-11-28 13:39:23 2019-11-28 13:39:51 t 1 1 175778 422 0.00 2019-11-28 13:41:19 2019-11-28 13:42:41 t 1 1 175783 673 0.00 2019-11-28 13:23:51 2019-11-28 13:46:02 t 1 1 175787 422 0.00 2019-11-28 13:50:14 2019-11-28 13:50:34 t 1 1 175792 562 0.00 2019-11-28 13:51:03 2019-11-28 13:52:30 t 1 1 175794 673 0.00 2019-11-28 13:46:02 2019-11-28 13:52:37 t 1 1 175796 562 0.00 2019-11-28 13:51:34 2019-11-28 13:54:56 t 1 1 175798 562 0.00 2019-11-28 13:55:10 2019-11-28 13:58:19 t 1 1 175800 591 0.00 2019-11-28 13:36:06 2019-11-28 13:59:03 t 1 1 175805 422 0.00 2019-11-28 14:01:54 2019-11-28 14:02:20 t 1 1 175806 422 0.00 2019-11-28 14:03:02 2019-11-28 14:03:15 t 1 1 175807 627 0.00 2019-11-28 14:00:19 2019-11-28 14:03:57 t 1 1 175808 545 0.00 2019-11-28 13:54:37 2019-11-28 14:04:32 t 1 1 175809 673 0.00 2019-11-28 14:00:37 2019-11-28 14:06:22 t 1 1 175812 422 0.00 2019-11-28 14:08:55 2019-11-28 14:09:10 t 1 1 175816 566 0.00 2019-11-28 13:59:07 2019-11-28 14:12:49 t 1 1 175818 422 0.00 2019-11-28 14:11:25 2019-11-28 14:12:56 t 1 1 175819 562 0.00 2019-11-28 14:12:57 2019-11-28 14:13:31 t 1 1 175821 430 0.00 2019-11-28 13:58:49 2019-11-28 14:13:57 t 1 1 175827 220 0.00 2019-11-28 14:18:07 2019-11-28 14:18:23 t 1 1 175830 485 0.00 2019-11-28 14:15:49 2019-11-28 14:21:29 t 1 1 175837 220 0.00 2019-11-28 14:28:57 2019-11-28 14:28:58 t 1 1 175841 562 0.00 2019-11-28 14:29:17 2019-11-28 14:30:12 t 1 1 175844 673 0.00 2019-11-28 14:23:14 2019-11-28 14:31:04 t 1 1 175852 430 0.00 2019-11-28 14:36:11 2019-11-28 14:36:40 t 1 1 175856 430 0.00 2019-11-28 14:38:53 2019-11-28 14:39:17 t 1 1 175857 430 0.00 2019-11-28 14:39:46 2019-11-28 14:39:53 t 1 1 175861 622 0.00 2019-11-28 14:31:41 2019-11-28 14:43:01 t 1 1 175862 412 0.00 2019-11-28 14:43:04 2019-11-28 14:43:04 f 1 1 175863 220 0.00 2019-11-28 14:33:34 2019-11-28 14:43:56 t 1 1 175869 430 0.00 2019-11-28 14:47:32 2019-11-28 14:47:55 t 1 1 175871 516 0.00 2019-11-28 14:48:48 2019-11-28 14:48:54 t 1 1 175876 675 0.00 2019-11-28 14:50:01 2019-11-28 14:51:16 t 1 1 175884 220 0.00 2019-11-28 14:55:35 2019-11-28 14:56:07 t 1 1 175885 562 0.00 2019-11-28 14:54:49 2019-11-28 15:00:33 t 1 1 175886 451 0.00 2019-11-28 14:39:13 2019-11-28 15:01:54 t 1 1 175888 516 0.00 2019-11-28 15:03:43 2019-11-28 15:03:59 t 1 1 175890 514 0.00 2019-11-28 14:49:49 2019-11-28 15:05:09 t 1 1 175892 430 0.00 2019-11-28 15:05:58 2019-11-28 15:06:04 t 1 1 175895 508 0.00 2019-11-28 15:03:32 2019-11-28 15:06:34 t 1 1 175900 220 0.00 2019-11-28 15:07:21 2019-11-28 15:07:54 t 1 1 175901 430 0.00 2019-11-28 15:09:42 2019-11-28 15:09:50 t 1 1 175902 671 0.00 2019-11-28 15:08:31 2019-11-28 15:10:38 t 1 1 175904 562 0.00 2019-11-28 15:11:48 2019-11-28 15:12:09 t 1 1 175908 220 0.00 2019-11-28 15:17:53 2019-11-28 15:18:26 t 1 1 175913 675 0.00 2019-11-28 15:11:10 2019-11-28 15:21:26 t 1 1 175918 516 0.00 2019-11-28 15:24:40 2019-11-28 15:26:30 t 1 1 175920 516 0.00 2019-11-28 15:27:17 2019-11-28 15:28:29 t 1 1 175922 451 0.00 2019-11-28 15:23:34 2019-11-28 15:28:53 t 1 1 175926 645 0.00 2019-11-28 15:25:32 2019-11-28 15:33:45 t 1 1 175927 516 0.00 2019-11-28 15:32:41 2019-11-28 15:35:12 t 1 1 175928 562 0.00 2019-11-28 15:33:39 2019-11-28 15:35:20 t 1 1 175931 562 0.00 2019-11-28 15:36:50 2019-11-28 15:38:02 t 1 1 175938 528 0.00 2019-11-28 15:40:38 2019-11-28 15:48:10 t 1 1 175947 220 0.00 2019-11-28 15:50:03 2019-11-28 15:50:14 t 1 1 175948 645 0.00 2019-11-28 15:48:17 2019-11-28 15:50:37 t 1 1 175953 220 0.00 2019-11-28 15:51:26 2019-11-28 15:52:04 t 1 1 175955 422 0.00 2019-11-28 15:52:35 2019-11-28 15:52:42 t 1 1 175956 611 0.00 2019-11-28 15:43:59 2019-11-28 15:53:03 t 1 1 175957 481 0.00 2019-11-28 15:52:21 2019-11-28 15:53:30 t 1 1 175958 578 0.00 2019-11-28 15:37:48 2019-11-28 15:54:36 t 1 1 175960 528 0.00 2019-11-28 15:48:10 2019-11-28 15:55:02 t 1 1 175962 544 0.00 2019-11-28 15:37:27 2019-11-28 15:59:53 t 1 1 175963 220 0.00 2019-11-28 15:52:36 2019-11-28 16:00:10 t 1 1 175979 220 0.00 2019-11-28 16:00:46 2019-11-28 16:08:08 t 1 1 175981 562 0.00 2019-11-28 16:10:17 2019-11-28 16:10:45 t 1 1 175992 673 0.00 2019-11-28 16:11:07 2019-11-28 16:27:14 t 1 1 175993 422 0.00 2019-11-28 16:27:14 2019-11-28 16:27:27 t 1 1 175999 585 0.00 2019-11-28 16:29:45 2019-11-28 16:29:45 f 1 1 175646 635 0.00 2019-11-28 12:17:43 2019-11-28 12:20:34 t 1 1 175647 619 0.00 2019-11-28 12:20:44 2019-11-28 12:20:44 f 1 1 175657 578 0.00 2019-11-28 11:10:04 2019-11-28 12:29:04 t 1 1 175658 528 0.00 2019-11-28 12:16:40 2019-11-28 12:30:04 t 1 1 175660 516 0.00 2019-11-28 12:30:32 2019-11-28 12:30:35 t 1 1 175663 220 0.00 2019-11-28 12:22:00 2019-11-28 12:30:56 t 1 1 175664 220 0.00 2019-11-28 12:30:56 2019-11-28 12:31:06 t 1 1 175666 516 0.00 2019-11-28 12:30:58 2019-11-28 12:32:14 t 1 1 175673 673 0.00 2019-11-28 12:33:12 2019-11-28 12:34:33 t 1 1 175677 675 0.00 2019-11-28 12:35:37 2019-11-28 12:37:41 t 1 1 175680 499 0.00 2019-11-28 12:34:54 2019-11-28 12:38:32 t 1 1 175682 611 0.00 2019-11-28 12:27:32 2019-11-28 12:39:10 t 1 1 175683 220 0.00 2019-11-28 12:37:52 2019-11-28 12:39:43 t 1 1 175685 516 0.00 2019-11-28 12:40:00 2019-11-28 12:40:02 t 1 1 175686 611 0.00 2019-11-28 12:39:07 2019-11-28 12:40:11 t 1 1 175689 671 0.00 2019-11-28 12:37:22 2019-11-28 12:41:00 t 1 1 175690 422 0.00 2019-11-28 12:41:11 2019-11-28 12:41:45 t 1 1 175691 562 0.00 2019-11-28 12:25:51 2019-11-28 12:42:33 t 1 1 175696 627 0.00 2019-11-28 12:40:52 2019-11-28 12:46:55 t 1 1 175698 412 0.00 2019-11-28 12:47:55 2019-11-28 12:47:55 f 1 1 175701 562 0.00 2019-11-28 12:42:42 2019-11-28 12:48:50 t 1 1 175702 220 0.00 2019-11-28 12:40:15 2019-11-28 12:50:15 t 1 1 175706 656 0.00 2019-11-28 12:48:27 2019-11-28 12:52:19 t 1 1 175707 562 0.00 2019-11-28 12:51:01 2019-11-28 12:52:52 t 1 1 175711 562 0.00 2019-11-28 12:55:39 2019-11-28 12:58:00 t 1 1 175713 656 0.00 2019-11-28 12:55:22 2019-11-28 12:58:32 t 1 1 175715 220 0.00 2019-11-28 12:59:37 2019-11-28 12:59:39 t 1 1 175717 220 0.00 2019-11-28 12:59:39 2019-11-28 13:00:15 t 1 1 175719 220 0.00 2019-11-28 13:00:18 2019-11-28 13:00:46 t 1 1 175721 220 0.00 2019-11-28 13:01:23 2019-11-28 13:01:26 t 1 1 175727 481 0.00 2019-11-28 12:18:00 2019-11-28 13:09:21 t 1 1 175731 671 0.00 2019-11-28 13:06:27 2019-11-28 13:10:35 t 1 1 175732 481 0.00 2019-11-28 13:09:28 2019-11-28 13:11:26 t 1 1 175733 220 0.00 2019-11-28 13:11:56 2019-11-28 13:12:05 t 1 1 175734 481 0.00 2019-11-28 13:11:26 2019-11-28 13:12:20 t 1 1 175736 665 0.00 2019-11-28 13:07:56 2019-11-28 13:12:44 t 1 1 175740 514 0.00 2019-11-28 12:43:41 2019-11-28 13:13:55 t 1 1 175742 422 0.00 2019-11-28 13:13:18 2019-11-28 13:14:56 t 1 1 175747 544 0.00 2019-11-28 13:14:03 2019-11-28 13:17:51 t 1 1 175748 544 0.00 2019-11-28 13:18:59 2019-11-28 13:20:24 t 1 1 175750 611 0.00 2019-11-28 13:15:27 2019-11-28 13:21:17 t 1 1 175758 422 0.00 2019-11-28 13:25:56 2019-11-28 13:27:39 t 1 1 175759 562 0.00 2019-11-28 13:13:13 2019-11-28 13:29:19 t 1 1 175760 422 0.00 2019-11-28 13:28:36 2019-11-28 13:29:27 t 1 1 175762 591 0.00 2019-11-28 12:46:42 2019-11-28 13:31:27 t 1 1 175763 516 0.00 2019-11-28 13:32:02 2019-11-28 13:32:08 t 1 1 175768 498 0.00 2019-11-28 13:35:32 2019-11-28 13:35:32 f 1 1 175769 508 0.00 2019-11-28 13:33:51 2019-11-28 13:36:07 t 1 1 175770 564 0.00 2019-11-28 12:05:40 2019-11-28 13:36:31 t 1 1 175774 498 0.00 2019-11-28 13:36:15 2019-11-28 13:38:05 t 1 1 175775 516 0.00 2019-11-28 13:38:19 2019-11-28 13:38:54 t 1 1 175776 538 0.00 2019-11-28 13:37:23 2019-11-28 13:39:49 t 1 1 175779 564 0.00 2019-11-28 13:36:31 2019-11-28 13:43:20 t 1 1 175780 220 0.00 2019-11-28 13:43:59 2019-11-28 13:44:02 t 1 1 175781 562 0.00 2019-11-28 13:29:19 2019-11-28 13:45:01 t 1 1 175782 516 0.00 2019-11-28 13:44:12 2019-11-28 13:45:56 t 1 1 175784 649 0.00 2019-11-28 13:31:44 2019-11-28 13:46:12 t 1 1 175785 422 0.00 2019-11-28 13:47:49 2019-11-28 13:48:08 t 1 1 175788 220 0.00 2019-11-28 13:50:30 2019-11-28 13:50:46 t 1 1 175790 422 0.00 2019-11-28 13:50:55 2019-11-28 13:51:34 t 1 1 175791 422 0.00 2019-11-28 13:51:54 2019-11-28 13:52:27 t 1 1 175793 656 0.00 2019-11-28 13:49:45 2019-11-28 13:52:35 t 1 1 175795 445 0.00 2019-11-28 13:50:34 2019-11-28 13:54:09 t 1 1 175801 566 0.00 2019-11-28 13:54:19 2019-11-28 13:59:07 t 1 1 175802 445 0.00 2019-11-28 13:54:08 2019-11-28 13:59:57 t 1 1 175803 627 0.00 2019-11-28 13:47:44 2019-11-28 14:00:19 t 1 1 175810 422 0.00 2019-11-28 14:05:56 2019-11-28 14:07:02 t 1 1 175811 220 0.00 2019-11-28 14:07:32 2019-11-28 14:07:46 t 1 1 175815 422 0.00 2019-11-28 14:10:41 2019-11-28 14:11:06 t 1 1 175817 485 0.00 2019-11-28 14:03:15 2019-11-28 14:12:53 t 1 1 175820 456 0.00 2019-11-28 14:04:09 2019-11-28 14:13:37 t 1 1 175822 675 0.00 2019-11-28 13:37:30 2019-11-28 14:14:16 t 1 1 175823 622 0.00 2019-11-28 14:06:36 2019-11-28 14:14:58 t 1 1 175824 456 0.00 2019-11-28 14:13:35 2019-11-28 14:15:59 t 1 1 175825 516 0.00 2019-11-28 14:16:16 2019-11-28 14:16:21 t 1 1 175831 671 0.00 2019-11-28 14:20:23 2019-11-28 14:22:33 t 1 1 175833 451 0.00 2019-11-28 13:53:17 2019-11-28 14:26:32 t 1 1 175834 566 0.00 2019-11-28 14:12:49 2019-11-28 14:27:39 t 1 1 175839 516 0.00 2019-11-28 14:29:55 2019-11-28 14:30:02 t 1 1 175840 665 0.00 2019-11-28 14:22:40 2019-11-28 14:30:12 t 1 1 175843 516 0.00 2019-11-28 14:30:11 2019-11-28 14:30:56 t 1 1 175845 622 0.00 2019-11-28 14:14:58 2019-11-28 14:31:41 t 1 1 175848 220 0.00 2019-11-28 14:32:57 2019-11-28 14:32:59 t 1 1 175849 220 0.00 2019-11-28 14:33:21 2019-11-28 14:33:31 t 1 1 175853 430 0.00 2019-11-28 14:36:46 2019-11-28 14:37:00 t 1 1 175854 673 0.00 2019-11-28 14:31:04 2019-11-28 14:38:30 t 1 1 175858 430 0.00 2019-11-28 14:41:12 2019-11-28 14:41:48 t 1 1 175860 430 0.00 2019-11-28 14:41:54 2019-11-28 14:42:54 t 1 1 175864 220 0.00 2019-11-28 14:43:55 2019-11-28 14:44:26 t 1 1 175865 430 0.00 2019-11-28 14:44:30 2019-11-28 14:44:38 t 1 1 175867 220 0.00 2019-11-28 14:45:02 2019-11-28 14:45:25 t 1 1 175872 562 0.00 2019-11-28 14:42:05 2019-11-28 14:49:16 t 1 1 175874 675 0.00 2019-11-28 14:34:19 2019-11-28 14:50:01 t 1 1 175875 562 0.00 2019-11-28 14:49:16 2019-11-28 14:50:07 t 1 1 175877 562 0.00 2019-11-28 14:50:07 2019-11-28 14:51:47 t 1 1 175878 645 0.00 2019-11-28 14:50:50 2019-11-28 14:53:02 t 1 1 175880 665 0.00 2019-11-28 14:30:25 2019-11-28 14:54:00 t 1 1 175881 544 0.00 2019-11-28 14:46:39 2019-11-28 14:54:37 t 1 1 175883 671 0.00 2019-11-28 14:54:06 2019-11-28 14:55:37 t 1 1 175889 562 0.00 2019-11-28 15:01:24 2019-11-28 15:04:29 t 1 1 175893 220 0.00 2019-11-28 14:56:12 2019-11-28 15:06:08 t 1 1 175894 430 0.00 2019-11-28 15:06:10 2019-11-28 15:06:19 t 1 1 175896 220 0.00 2019-11-28 15:06:08 2019-11-28 15:06:44 t 1 1 175899 422 0.00 2019-11-28 14:16:26 2019-11-28 15:07:35 t 1 1 175903 675 0.00 2019-11-28 14:56:34 2019-11-28 15:11:10 t 1 1 175905 645 0.00 2019-11-28 15:02:52 2019-11-28 15:12:21 t 1 1 175909 481 0.00 2019-11-28 14:49:42 2019-11-28 15:19:08 t 1 1 175649 615 0.00 2019-11-28 12:21:21 2019-11-28 12:23:40 t 1 1 175651 516 0.00 2019-11-28 12:21:39 2019-11-28 12:24:59 t 1 1 175652 562 0.00 2019-11-28 12:06:13 2019-11-28 12:25:51 t 1 1 175653 516 0.00 2019-11-28 12:26:17 2019-11-28 12:26:32 t 1 1 175654 488 0.00 2019-11-28 12:28:35 2019-11-28 12:28:35 f 1 1 175656 545 0.00 2019-11-28 12:26:39 2019-11-28 12:29:01 t 1 1 175659 585 0.00 2019-11-28 12:30:33 2019-11-28 12:30:33 f 1 1 175661 490 0.00 2019-11-28 12:30:42 2019-11-28 12:30:45 t 1 1 175668 220 0.00 2019-11-28 12:32:34 2019-11-28 12:32:42 t 1 1 175669 673 0.00 2019-11-28 12:32:07 2019-11-28 12:33:01 t 1 1 175670 220 0.00 2019-11-28 12:32:41 2019-11-28 12:33:43 t 1 1 175671 544 0.00 2019-11-28 12:32:04 2019-11-28 12:34:17 t 1 1 175674 514 0.00 2019-11-28 12:20:29 2019-11-28 12:35:48 t 1 1 175675 488 0.00 2019-11-28 12:37:20 2019-11-28 12:37:20 f 1 1 175676 671 0.00 2019-11-28 12:34:15 2019-11-28 12:37:22 t 1 1 175692 516 0.00 2019-11-28 12:40:18 2019-11-28 12:43:05 t 1 1 175694 514 0.00 2019-11-28 12:35:48 2019-11-28 12:43:41 t 1 1 175699 412 0.00 2019-11-28 12:48:05 2019-11-28 12:48:05 f 1 1 175704 528 0.00 2019-11-28 12:30:04 2019-11-28 12:51:00 t 1 1 175705 422 0.00 2019-11-28 12:42:12 2019-11-28 12:52:14 t 1 1 175708 656 0.00 2019-11-28 12:52:36 2019-11-28 12:54:32 t 1 1 175709 562 0.00 2019-11-28 12:53:50 2019-11-28 12:55:39 t 1 1 175718 220 0.00 2019-11-28 13:00:14 2019-11-28 13:00:18 t 1 1 175722 611 0.00 2019-11-28 12:40:09 2019-11-28 13:01:44 t 1 1 175724 660 0.00 2019-11-28 12:45:51 2019-11-28 13:05:50 t 1 1 175725 671 0.00 2019-11-28 13:01:49 2019-11-28 13:06:30 t 1 1 175730 528 0.00 2019-11-28 13:09:39 2019-11-28 13:10:33 t 1 1 175735 220 0.00 2019-11-28 13:12:22 2019-11-28 13:12:37 t 1 1 175738 562 0.00 2019-11-28 13:01:11 2019-11-28 13:13:13 t 1 1 175739 673 0.00 2019-11-28 13:06:31 2019-11-28 13:13:53 t 1 1 175741 544 0.00 2019-11-28 13:09:50 2019-11-28 13:14:03 t 1 1 175744 528 0.00 2019-11-28 13:14:31 2019-11-28 13:15:42 t 1 1 175745 422 0.00 2019-11-28 13:16:14 2019-11-28 13:16:34 t 1 1 175746 422 0.00 2019-11-28 13:17:21 2019-11-28 13:17:41 t 1 1 175751 675 0.00 2019-11-28 12:45:10 2019-11-28 13:21:32 t 1 1 175753 220 0.00 2019-11-28 13:22:55 2019-11-28 13:23:10 t 1 1 175755 673 0.00 2019-11-28 13:13:52 2019-11-28 13:23:51 t 1 1 175756 485 0.00 2019-11-28 13:22:52 2019-11-28 13:24:22 t 1 1 175757 508 0.00 2019-11-28 13:25:42 2019-11-28 13:27:29 t 1 1 175765 220 0.00 2019-11-28 13:33:28 2019-11-28 13:33:37 t 1 1 175767 512 0.00 2019-11-28 13:34:24 2019-11-28 13:35:11 t 1 1 175773 422 0.00 2019-11-28 13:37:32 2019-11-28 13:37:49 t 1 1 175786 545 0.00 2019-11-28 13:48:05 2019-11-28 13:49:57 t 1 1 175789 562 0.00 2019-11-28 13:49:25 2019-11-28 13:50:55 t 1 1 175797 422 0.00 2019-11-28 13:56:04 2019-11-28 13:57:22 t 1 1 175799 656 0.00 2019-11-28 13:52:35 2019-11-28 13:58:25 t 1 1 175804 673 0.00 2019-11-28 13:52:37 2019-11-28 14:00:37 t 1 1 175813 591 0.00 2019-11-28 14:08:55 2019-11-28 14:09:10 t 1 1 175814 562 0.00 2019-11-28 14:10:11 2019-11-28 14:10:16 t 1 1 175826 627 0.00 2019-11-28 14:03:56 2019-11-28 14:17:02 t 1 1 175828 591 0.00 2019-11-28 14:18:14 2019-11-28 14:18:32 t 1 1 175829 562 0.00 2019-11-28 14:20:42 2019-11-28 14:21:02 t 1 1 175832 673 0.00 2019-11-28 14:06:21 2019-11-28 14:23:14 t 1 1 175835 562 0.00 2019-11-28 14:27:45 2019-11-28 14:28:01 t 1 1 175836 220 0.00 2019-11-28 14:28:40 2019-11-28 14:28:48 t 1 1 175838 430 0.00 2019-11-28 14:13:57 2019-11-28 14:30:01 t 1 1 175842 430 0.00 2019-11-28 14:30:06 2019-11-28 14:30:15 t 1 1 175846 562 0.00 2019-11-28 14:31:30 2019-11-28 14:31:46 t 1 1 175847 220 0.00 2019-11-28 14:31:20 2019-11-28 14:32:58 t 1 1 175850 675 0.00 2019-11-28 14:14:16 2019-11-28 14:34:19 t 1 1 175851 660 0.00 2019-11-28 14:15:45 2019-11-28 14:35:01 t 1 1 175855 451 0.00 2019-11-28 14:26:32 2019-11-28 14:39:13 t 1 1 175859 412 0.00 2019-11-28 14:42:53 2019-11-28 14:42:53 f 1 1 175866 220 0.00 2019-11-28 14:44:33 2019-11-28 14:45:03 t 1 1 175868 430 0.00 2019-11-28 14:45:21 2019-11-28 14:47:30 t 1 1 175870 430 0.00 2019-11-28 14:48:14 2019-11-28 14:48:34 t 1 1 175873 481 0.00 2019-11-28 13:12:20 2019-11-28 14:49:42 t 1 1 175879 562 0.00 2019-11-28 14:53:00 2019-11-28 14:53:46 t 1 1 175882 220 0.00 2019-11-28 14:45:41 2019-11-28 14:55:36 t 1 1 175887 622 0.00 2019-11-28 14:43:01 2019-11-28 15:03:54 t 1 1 175891 430 0.00 2019-11-28 14:49:55 2019-11-28 15:05:51 t 1 1 175897 516 0.00 2019-11-28 15:06:50 2019-11-28 15:06:53 t 1 1 175898 220 0.00 2019-11-28 15:06:44 2019-11-28 15:07:21 t 1 1 175906 422 0.00 2019-11-28 15:15:41 2019-11-28 15:16:02 t 1 1 175907 220 0.00 2019-11-28 15:07:58 2019-11-28 15:17:54 t 1 1 175910 422 0.00 2019-11-28 15:16:57 2019-11-28 15:19:09 t 1 1 175912 422 0.00 2019-11-28 15:20:05 2019-11-28 15:20:55 t 1 1 175915 481 0.00 2019-11-28 15:19:08 2019-11-28 15:24:37 t 1 1 175917 430 0.00 2019-11-28 15:10:46 2019-11-28 15:25:57 t 1 1 175923 514 0.00 2019-11-28 15:05:09 2019-11-28 15:29:13 t 1 1 175924 220 0.00 2019-11-28 15:28:39 2019-11-28 15:29:16 t 1 1 175925 562 0.00 2019-11-28 15:28:23 2019-11-28 15:33:39 t 1 1 175930 578 0.00 2019-11-28 14:48:24 2019-11-28 15:37:48 t 1 1 175933 220 0.00 2019-11-28 15:29:16 2019-11-28 15:39:10 t 1 1 175935 422 0.00 2019-11-28 15:31:12 2019-11-28 15:39:36 t 1 1 175936 562 0.00 2019-11-28 15:40:53 2019-11-28 15:42:03 t 1 1 175943 675 0.00 2019-11-28 15:41:32 2019-11-28 15:49:39 t 1 1 175946 220 0.00 2019-11-28 15:49:39 2019-11-28 15:50:03 t 1 1 175949 516 0.00 2019-11-28 15:49:40 2019-11-28 15:50:42 t 1 1 175951 220 0.00 2019-11-28 15:50:13 2019-11-28 15:50:51 t 1 1 175952 220 0.00 2019-11-28 15:50:51 2019-11-28 15:51:27 t 1 1 175961 562 0.00 2019-11-28 15:58:34 2019-11-28 15:58:47 t 1 1 175964 220 0.00 2019-11-28 16:00:10 2019-11-28 16:00:18 t 1 1 175970 544 0.00 2019-11-28 15:59:53 2019-11-28 16:04:12 t 1 1 175972 528 0.00 2019-11-28 16:03:17 2019-11-28 16:05:03 t 1 1 175977 375 0.00 2019-11-28 16:07:42 2019-11-28 16:07:42 f 1 1 175980 578 0.00 2019-11-28 15:54:36 2019-11-28 16:09:42 t 1 1 175983 528 0.00 2019-11-28 16:13:21 2019-11-28 16:13:51 t 1 1 175985 544 0.00 2019-11-28 16:13:24 2019-11-28 16:14:48 t 1 1 175987 481 0.00 2019-11-28 16:03:36 2019-11-28 16:17:07 t 1 1 175990 528 0.00 2019-11-28 16:23:59 2019-11-28 16:24:14 t 1 1 175991 422 0.00 2019-11-28 16:24:18 2019-11-28 16:24:39 t 1 1 175994 635 0.00 2019-11-28 16:03:47 2019-11-28 16:27:34 t 1 1 175995 673 0.00 2019-11-28 16:27:14 2019-11-28 16:28:27 t 1 1 175997 422 0.00 2019-11-28 16:28:43 2019-11-28 16:28:55 t 1 1 175998 585 0.00 2019-11-28 16:29:39 2019-11-28 16:29:39 f 1 1 176002 445 0.00 2019-11-28 16:08:25 2019-11-28 16:33:43 t 1 1 175911 485 0.00 2019-11-28 15:15:46 2019-11-28 15:19:19 t 1 1 175914 451 0.00 2019-11-28 15:01:54 2019-11-28 15:23:15 t 1 1 175916 645 0.00 2019-11-28 15:12:21 2019-11-28 15:25:32 t 1 1 175919 562 0.00 2019-11-28 15:17:36 2019-11-28 15:28:23 t 1 1 175921 220 0.00 2019-11-28 15:18:28 2019-11-28 15:28:39 t 1 1 175929 562 0.00 2019-11-28 15:35:57 2019-11-28 15:36:11 t 1 1 175932 528 0.00 2019-11-28 15:24:12 2019-11-28 15:38:20 t 1 1 175934 220 0.00 2019-11-28 15:39:09 2019-11-28 15:39:18 t 1 1 175937 562 0.00 2019-11-28 15:47:28 2019-11-28 15:47:59 t 1 1 175939 645 0.00 2019-11-28 15:33:45 2019-11-28 15:48:17 t 1 1 175940 422 0.00 2019-11-28 15:39:36 2019-11-28 15:48:32 t 1 1 175941 220 0.00 2019-11-28 15:39:44 2019-11-28 15:48:50 t 1 1 175942 220 0.00 2019-11-28 15:48:50 2019-11-28 15:49:26 t 1 1 175944 220 0.00 2019-11-28 15:49:26 2019-11-28 15:49:39 t 1 1 175945 562 0.00 2019-11-28 15:48:45 2019-11-28 15:49:44 t 1 1 175950 562 0.00 2019-11-28 15:49:43 2019-11-28 15:50:44 t 1 1 175954 220 0.00 2019-11-28 15:52:04 2019-11-28 15:52:36 t 1 1 175959 671 0.00 2019-11-28 15:53:00 2019-11-28 15:54:45 t 1 1 175965 675 0.00 2019-11-28 15:53:56 2019-11-28 16:00:20 t 1 1 175966 562 0.00 2019-11-28 16:02:27 2019-11-28 16:02:57 t 1 1 175967 422 0.00 2019-11-28 16:03:00 2019-11-28 16:03:18 t 1 1 175968 481 0.00 2019-11-28 15:53:30 2019-11-28 16:03:29 t 1 1 175969 635 0.00 2019-11-28 16:00:57 2019-11-28 16:03:47 t 1 1 175971 611 0.00 2019-11-28 15:53:03 2019-11-28 16:04:16 t 1 1 175973 562 0.00 2019-11-28 16:04:02 2019-11-28 16:05:16 t 1 1 175974 675 0.00 2019-11-28 16:00:20 2019-11-28 16:05:43 t 1 1 175975 562 0.00 2019-11-28 16:06:39 2019-11-28 16:07:10 t 1 1 175976 589 0.00 2019-11-28 16:07:41 2019-11-28 16:07:41 f 1 1 175978 445 0.00 2019-11-28 13:59:56 2019-11-28 16:07:47 t 1 1 175982 562 0.00 2019-11-28 16:13:00 2019-11-28 16:13:15 t 1 1 175984 422 0.00 2019-11-28 16:13:47 2019-11-28 16:14:02 t 1 1 175986 578 0.00 2019-11-28 16:09:42 2019-11-28 16:16:23 t 1 1 175988 562 0.00 2019-11-28 16:17:47 2019-11-28 16:18:05 t 1 1 175989 528 0.00 2019-11-28 16:23:25 2019-11-28 16:23:41 t 1 1 175996 562 0.00 2019-11-28 16:28:26 2019-11-28 16:28:33 t 1 1 176001 564 0.00 2019-11-28 13:43:46 2019-11-28 16:31:16 t 1 1 176003 528 0.00 2019-11-28 16:34:04 2019-11-28 16:34:20 t 1 1 176008 591 0.00 2019-11-28 16:30:22 2019-11-28 16:41:24 t 1 1 176016 562 0.00 2019-11-28 16:49:49 2019-11-28 16:50:03 t 1 1 176018 578 0.00 2019-11-28 16:16:23 2019-11-28 16:53:36 t 1 1 176026 562 0.00 2019-11-28 17:00:34 2019-11-28 17:00:49 t 1 1 176030 481 0.00 2019-11-28 16:17:07 2019-11-28 17:06:16 t 1 1 176037 220 0.00 2019-11-28 17:02:40 2019-11-28 17:12:27 t 1 1 176039 516 0.00 2019-11-28 17:08:17 2019-11-28 17:13:37 t 1 1 176040 516 0.00 2019-11-28 17:13:37 2019-11-28 17:14:19 t 1 1 176042 645 0.00 2019-11-28 17:11:48 2019-11-28 17:17:27 t 1 1 176044 528 0.00 2019-11-28 17:18:00 2019-11-28 17:18:15 t 1 1 176045 578 0.00 2019-11-28 17:07:49 2019-11-28 17:18:42 t 1 1 176047 445 0.00 2019-11-28 17:12:57 2019-11-28 17:20:15 t 1 1 176050 430 0.00 2019-11-28 17:19:11 2019-11-28 17:24:25 t 1 1 176051 611 0.00 2019-11-28 17:13:29 2019-11-28 17:26:02 t 1 1 176053 516 0.00 2019-11-28 17:25:09 2019-11-28 17:27:06 t 1 1 176058 562 0.00 2019-11-28 17:31:51 2019-11-28 17:32:52 t 1 1 176062 611 0.00 2019-11-28 17:33:06 2019-11-28 17:34:06 t 1 1 176063 445 0.00 2019-11-28 17:33:05 2019-11-28 17:34:18 t 1 1 176066 512 0.00 2019-11-28 17:28:55 2019-11-28 17:34:57 t 1 1 176071 562 0.00 2019-11-28 17:38:17 2019-11-28 17:38:32 t 1 1 176075 220 0.00 2019-11-28 17:12:27 2019-11-28 17:40:21 t 1 1 176082 220 0.00 2019-11-28 17:42:52 2019-11-28 17:43:29 t 1 1 176085 430 0.00 2019-11-28 17:43:38 2019-11-28 17:44:10 t 1 1 176090 220 0.00 2019-11-28 17:45:13 2019-11-28 17:45:51 t 1 1 176093 430 0.00 2019-11-28 17:46:08 2019-11-28 17:46:40 t 1 1 176094 220 0.00 2019-11-28 17:46:22 2019-11-28 17:47:01 t 1 1 176095 422 0.00 2019-11-28 17:46:04 2019-11-28 17:47:11 t 1 1 176098 611 0.00 2019-11-28 17:40:20 2019-11-28 17:48:05 t 1 1 176100 220 0.00 2019-11-28 17:47:35 2019-11-28 17:48:13 t 1 1 176102 528 0.00 2019-11-28 17:44:00 2019-11-28 17:48:20 t 1 1 176106 220 0.00 2019-11-28 17:49:58 2019-11-28 17:50:38 t 1 1 176109 545 0.00 2019-11-28 17:32:14 2019-11-28 17:51:25 t 1 1 176111 611 0.00 2019-11-28 17:48:05 2019-11-28 17:51:37 t 1 1 176121 220 0.00 2019-11-28 17:54:46 2019-11-28 17:55:24 t 1 1 176136 627 0.00 2019-11-28 17:04:04 2019-11-28 18:01:21 t 1 1 176140 430 0.00 2019-11-28 18:00:11 2019-11-28 18:02:46 t 1 1 176142 220 0.00 2019-11-28 18:03:30 2019-11-28 18:04:08 t 1 1 176147 562 0.00 2019-11-28 18:05:53 2019-11-28 18:06:02 t 1 1 176148 445 0.00 2019-11-28 18:01:50 2019-11-28 18:07:16 t 1 1 176153 528 0.00 2019-11-28 18:09:24 2019-11-28 18:10:11 t 1 1 176155 422 0.00 2019-11-28 18:11:59 2019-11-28 18:12:13 t 1 1 176156 562 0.00 2019-11-28 18:11:50 2019-11-28 18:12:56 t 1 1 176159 445 0.00 2019-11-28 18:14:58 2019-11-28 18:16:09 t 1 1 176165 562 0.00 2019-11-28 18:22:39 2019-11-28 18:22:52 t 1 1 176172 422 0.00 2019-11-28 18:32:51 2019-11-28 18:33:19 t 1 1 176173 562 0.00 2019-11-28 18:33:15 2019-11-28 18:33:33 t 1 1 176175 545 0.00 2019-11-28 17:51:25 2019-11-28 18:34:20 t 1 1 176186 422 0.00 2019-11-28 18:37:20 2019-11-28 18:39:11 t 1 1 176192 660 0.00 2019-11-28 18:41:46 2019-11-28 18:46:29 t 1 1 176193 508 0.00 2019-11-28 18:41:17 2019-11-28 18:47:39 t 1 1 176201 220 0.00 2019-11-28 18:49:41 2019-11-28 18:49:46 t 1 1 176207 220 0.00 2019-11-28 18:50:51 2019-11-28 18:51:00 t 1 1 176208 220 0.00 2019-11-28 18:50:59 2019-11-28 18:51:34 t 1 1 176212 422 0.00 2019-11-28 18:52:13 2019-11-28 18:52:23 t 1 1 176218 220 0.00 2019-11-28 18:53:54 2019-11-28 18:54:07 t 1 1 176221 422 0.00 2019-11-28 18:53:30 2019-11-28 18:55:22 t 1 1 176223 481 0.00 2019-11-28 17:40:09 2019-11-28 18:55:35 t 1 1 176228 528 0.00 2019-11-28 18:49:10 2019-11-28 18:58:11 t 1 1 176229 220 0.00 2019-11-28 18:57:47 2019-11-28 18:58:21 t 1 1 176233 220 0.00 2019-11-28 18:59:30 2019-11-28 19:00:09 t 1 1 176236 220 0.00 2019-11-28 19:00:08 2019-11-28 19:00:42 t 1 1 176237 220 0.00 2019-11-28 19:00:42 2019-11-28 19:01:21 t 1 1 176240 412 0.00 2019-11-28 19:01:59 2019-11-28 19:01:59 f 1 1 176242 562 0.00 2019-11-28 19:02:30 2019-11-28 19:02:45 t 1 1 176243 679 0.00 2019-11-28 18:59:42 2019-11-28 19:03:37 t 1 1 176244 679 0.00 2019-11-28 19:03:37 2019-11-28 19:05:01 t 1 1 176245 562 0.00 2019-11-28 19:03:25 2019-11-28 19:05:30 t 1 1 176247 671 0.00 2019-11-28 19:12:37 2019-11-28 19:14:54 t 1 1 176251 551 0.00 2019-11-28 19:20:48 2019-11-28 19:21:06 t 1 1 176252 545 0.00 2019-11-28 18:59:01 2019-11-28 19:22:09 t 1 1 176000 591 0.00 2019-11-28 16:03:27 2019-11-28 16:30:22 t 1 1 176005 611 0.00 2019-11-28 16:38:57 2019-11-28 16:39:14 t 1 1 176006 562 0.00 2019-11-28 16:39:00 2019-11-28 16:39:26 t 1 1 176009 622 0.00 2019-11-28 15:03:54 2019-11-28 16:41:32 t 1 1 176010 422 0.00 2019-11-28 16:45:30 2019-11-28 16:45:43 t 1 1 176011 445 0.00 2019-11-28 16:33:56 2019-11-28 16:46:21 t 1 1 176014 645 0.00 2019-11-28 16:45:08 2019-11-28 16:50:01 t 1 1 176021 220 0.00 2019-11-28 16:54:55 2019-11-28 16:57:40 t 1 1 176022 445 0.00 2019-11-28 16:52:24 2019-11-28 16:58:53 t 1 1 176023 562 0.00 2019-11-28 16:55:00 2019-11-28 16:59:54 t 1 1 176024 220 0.00 2019-11-28 16:57:40 2019-11-28 17:00:25 t 1 1 176027 220 0.00 2019-11-28 17:00:25 2019-11-28 17:02:40 t 1 1 176028 422 0.00 2019-11-28 17:02:50 2019-11-28 17:03:13 t 1 1 176029 528 0.00 2019-11-28 17:02:21 2019-11-28 17:03:45 t 1 1 176031 578 0.00 2019-11-28 16:53:30 2019-11-28 17:07:49 t 1 1 176032 516 0.00 2019-11-28 17:03:31 2019-11-28 17:08:17 t 1 1 176033 528 0.00 2019-11-28 17:07:49 2019-11-28 17:08:20 t 1 1 176035 422 0.00 2019-11-28 17:10:01 2019-11-28 17:10:34 t 1 1 176036 675 0.00 2019-11-28 17:10:24 2019-11-28 17:12:08 t 1 1 176043 562 0.00 2019-11-28 17:16:57 2019-11-28 17:17:40 t 1 1 176052 430 0.00 2019-11-28 17:25:57 2019-11-28 17:26:05 t 1 1 176054 430 0.00 2019-11-28 17:28:17 2019-11-28 17:28:41 t 1 1 176059 445 0.00 2019-11-28 17:29:21 2019-11-28 17:33:03 t 1 1 176060 611 0.00 2019-11-28 17:26:02 2019-11-28 17:33:07 t 1 1 176061 430 0.00 2019-11-28 17:33:24 2019-11-28 17:33:41 t 1 1 176064 430 0.00 2019-11-28 17:34:18 2019-11-28 17:34:41 t 1 1 176067 430 0.00 2019-11-28 17:34:41 2019-11-28 17:35:12 t 1 1 176072 430 0.00 2019-11-28 17:39:50 2019-11-28 17:39:58 t 1 1 176074 611 0.00 2019-11-28 17:34:05 2019-11-28 17:40:20 t 1 1 176079 528 0.00 2019-11-28 17:23:19 2019-11-28 17:42:35 t 1 1 176080 220 0.00 2019-11-28 17:42:16 2019-11-28 17:42:52 t 1 1 176081 430 0.00 2019-11-28 17:43:08 2019-11-28 17:43:25 t 1 1 176087 220 0.00 2019-11-28 17:44:04 2019-11-28 17:44:41 t 1 1 176088 220 0.00 2019-11-28 17:44:41 2019-11-28 17:45:13 t 1 1 176089 422 0.00 2019-11-28 17:45:03 2019-11-28 17:45:26 t 1 1 176092 670 0.00 2019-11-28 17:20:43 2019-11-28 17:46:32 t 1 1 176096 430 0.00 2019-11-28 17:47:09 2019-11-28 17:47:14 t 1 1 176097 220 0.00 2019-11-28 17:47:00 2019-11-28 17:47:35 t 1 1 176099 562 0.00 2019-11-28 17:47:10 2019-11-28 17:48:05 t 1 1 176101 544 0.00 2019-11-28 17:46:51 2019-11-28 17:48:19 t 1 1 176107 544 0.00 2019-11-28 17:49:40 2019-11-28 17:50:42 t 1 1 176108 220 0.00 2019-11-28 17:50:37 2019-11-28 17:51:11 t 1 1 176113 220 0.00 2019-11-28 17:51:49 2019-11-28 17:52:08 t 1 1 176114 220 0.00 2019-11-28 17:52:08 2019-11-28 17:52:46 t 1 1 176116 430 0.00 2019-11-28 17:53:02 2019-11-28 17:53:09 t 1 1 176117 220 0.00 2019-11-28 17:52:46 2019-11-28 17:53:27 t 1 1 176120 220 0.00 2019-11-28 17:54:05 2019-11-28 17:54:46 t 1 1 176122 615 0.00 2019-11-28 17:53:32 2019-11-28 17:55:45 t 1 1 176124 220 0.00 2019-11-28 17:55:24 2019-11-28 17:56:05 t 1 1 176126 422 0.00 2019-11-28 17:57:26 2019-11-28 17:57:52 t 1 1 176127 220 0.00 2019-11-28 17:56:40 2019-11-28 17:58:36 t 1 1 176130 528 0.00 2019-11-28 17:57:10 2019-11-28 17:59:21 t 1 1 176132 445 0.00 2019-11-28 17:38:50 2019-11-28 17:59:43 t 1 1 176133 220 0.00 2019-11-28 17:59:12 2019-11-28 18:00:36 t 1 1 176135 220 0.00 2019-11-28 18:00:36 2019-11-28 18:01:14 t 1 1 176138 220 0.00 2019-11-28 18:01:14 2019-11-28 18:01:46 t 1 1 176141 220 0.00 2019-11-28 18:02:23 2019-11-28 18:03:30 t 1 1 176143 430 0.00 2019-11-28 18:02:48 2019-11-28 18:04:12 t 1 1 176144 220 0.00 2019-11-28 18:04:07 2019-11-28 18:04:44 t 1 1 176146 562 0.00 2019-11-28 18:05:38 2019-11-28 18:05:46 t 1 1 176150 528 0.00 2019-11-28 18:07:42 2019-11-28 18:07:58 t 1 1 176151 449 0.00 2019-11-28 18:05:19 2019-11-28 18:08:39 t 1 1 176157 445 0.00 2019-11-28 18:07:59 2019-11-28 18:14:58 t 1 1 176158 675 0.00 2019-11-28 17:53:28 2019-11-28 18:16:05 t 1 1 176162 220 0.00 2019-11-28 18:09:27 2019-11-28 18:18:36 t 1 1 176168 675 0.00 2019-11-28 18:16:05 2019-11-28 18:26:29 t 1 1 176171 677 0.00 2019-11-28 18:29:48 2019-11-28 18:32:53 t 1 1 176174 422 0.00 2019-11-28 18:33:25 2019-11-28 18:34:01 t 1 1 176176 675 0.00 2019-11-28 18:26:54 2019-11-28 18:34:22 t 1 1 176179 591 0.00 2019-11-28 16:53:12 2019-11-28 18:36:00 t 1 1 176182 422 0.00 2019-11-28 18:35:41 2019-11-28 18:37:20 t 1 1 176183 595 0.00 2019-11-28 18:37:52 2019-11-28 18:37:52 f 1 1 176187 660 0.00 2019-11-28 18:26:26 2019-11-28 18:41:46 t 1 1 176188 528 0.00 2019-11-28 18:41:39 2019-11-28 18:42:21 t 1 1 176189 562 0.00 2019-11-28 18:43:39 2019-11-28 18:44:00 t 1 1 176194 422 0.00 2019-11-28 18:45:39 2019-11-28 18:47:52 t 1 1 176196 220 0.00 2019-11-28 18:48:30 2019-11-28 18:48:34 t 1 1 176198 220 0.00 2019-11-28 18:48:34 2019-11-28 18:49:03 t 1 1 176199 220 0.00 2019-11-28 18:49:03 2019-11-28 18:49:10 t 1 1 176200 220 0.00 2019-11-28 18:49:10 2019-11-28 18:49:41 t 1 1 176202 645 0.00 2019-11-28 18:46:45 2019-11-28 18:49:58 t 1 1 176204 220 0.00 2019-11-28 18:49:46 2019-11-28 18:50:16 t 1 1 176206 220 0.00 2019-11-28 18:50:24 2019-11-28 18:50:52 t 1 1 176210 220 0.00 2019-11-28 18:51:35 2019-11-28 18:52:10 t 1 1 176211 220 0.00 2019-11-28 18:52:09 2019-11-28 18:52:14 t 1 1 176214 220 0.00 2019-11-28 18:52:45 2019-11-28 18:52:49 t 1 1 176216 220 0.00 2019-11-28 18:53:22 2019-11-28 18:53:25 t 1 1 176217 220 0.00 2019-11-28 18:53:25 2019-11-28 18:53:55 t 1 1 176219 220 0.00 2019-11-28 18:54:07 2019-11-28 18:54:44 t 1 1 176222 220 0.00 2019-11-28 18:54:44 2019-11-28 18:55:22 t 1 1 176226 220 0.00 2019-11-28 18:56:37 2019-11-28 18:57:11 t 1 1 176227 220 0.00 2019-11-28 18:57:11 2019-11-28 18:57:48 t 1 1 176231 545 0.00 2019-11-28 18:34:25 2019-11-28 18:59:01 t 1 1 176234 562 0.00 2019-11-28 18:59:17 2019-11-28 19:00:19 t 1 1 176235 611 0.00 2019-11-28 18:59:38 2019-11-28 19:00:40 t 1 1 176239 220 0.00 2019-11-28 19:01:21 2019-11-28 19:01:57 t 1 1 176246 562 0.00 2019-11-28 19:11:45 2019-11-28 19:12:05 t 1 1 176248 562 0.00 2019-11-28 19:15:16 2019-11-28 19:15:41 t 1 1 176249 562 0.00 2019-11-28 19:18:25 2019-11-28 19:18:47 t 1 1 176250 551 0.00 2019-11-28 19:20:36 2019-11-28 19:20:48 t 1 1 176254 578 0.00 2019-11-28 17:18:42 2019-11-28 19:23:57 t 1 1 176257 562 0.00 2019-11-28 19:25:26 2019-11-28 19:25:37 t 1 1 176262 551 0.00 2019-11-28 19:21:06 2019-11-28 19:28:53 t 1 1 176264 611 0.00 2019-11-28 19:28:23 2019-11-28 19:30:16 t 1 1 176266 551 0.00 2019-11-28 19:30:08 2019-11-28 19:30:29 t 1 1 176270 679 0.00 2019-11-28 19:30:45 2019-11-28 19:30:46 t 1 1 176271 679 0.00 2019-11-28 19:30:59 2019-11-28 19:31:02 t 1 1 176004 564 0.00 2019-11-28 16:31:16 2019-11-28 16:38:05 t 1 1 176007 422 0.00 2019-11-28 16:39:19 2019-11-28 16:39:26 t 1 1 176012 562 0.00 2019-11-28 16:42:10 2019-11-28 16:46:41 t 1 1 176013 528 0.00 2019-11-28 16:46:19 2019-11-28 16:48:30 t 1 1 176015 422 0.00 2019-11-28 16:49:55 2019-11-28 16:50:02 t 1 1 176017 528 0.00 2019-11-28 16:52:18 2019-11-28 16:52:40 t 1 1 176019 220 0.00 2019-11-28 16:49:56 2019-11-28 16:54:55 t 1 1 176020 562 0.00 2019-11-28 16:50:59 2019-11-28 16:55:00 t 1 1 176025 422 0.00 2019-11-28 17:00:31 2019-11-28 17:00:37 t 1 1 176034 562 0.00 2019-11-28 17:08:33 2019-11-28 17:09:28 t 1 1 176038 445 0.00 2019-11-28 16:58:59 2019-11-28 17:12:57 t 1 1 176041 516 0.00 2019-11-28 17:14:19 2019-11-28 17:14:29 t 1 1 176046 528 0.00 2019-11-28 17:18:35 2019-11-28 17:18:51 t 1 1 176048 422 0.00 2019-11-28 17:16:31 2019-11-28 17:21:24 t 1 1 176049 562 0.00 2019-11-28 17:22:58 2019-11-28 17:23:19 t 1 1 176055 445 0.00 2019-11-28 17:20:15 2019-11-28 17:29:21 t 1 1 176056 545 0.00 2019-11-28 17:08:50 2019-11-28 17:32:14 t 1 1 176057 422 0.00 2019-11-28 17:31:41 2019-11-28 17:32:31 t 1 1 176065 422 0.00 2019-11-28 17:34:36 2019-11-28 17:34:51 t 1 1 176068 514 0.00 2019-11-28 15:29:13 2019-11-28 17:36:00 t 1 1 176069 422 0.00 2019-11-28 17:35:57 2019-11-28 17:37:32 t 1 1 176070 445 0.00 2019-11-28 17:34:18 2019-11-28 17:38:28 t 1 1 176073 481 0.00 2019-11-28 17:06:16 2019-11-28 17:40:09 t 1 1 176076 220 0.00 2019-11-28 17:40:21 2019-11-28 17:41:03 t 1 1 176077 220 0.00 2019-11-28 17:41:01 2019-11-28 17:41:38 t 1 1 176078 220 0.00 2019-11-28 17:41:38 2019-11-28 17:42:16 t 1 1 176083 528 0.00 2019-11-28 17:42:35 2019-11-28 17:43:45 t 1 1 176084 220 0.00 2019-11-28 17:43:29 2019-11-28 17:44:04 t 1 1 176086 671 0.00 2019-11-28 17:41:44 2019-11-28 17:44:27 t 1 1 176091 220 0.00 2019-11-28 17:45:51 2019-11-28 17:46:23 t 1 1 176103 220 0.00 2019-11-28 17:48:12 2019-11-28 17:48:48 t 1 1 176104 220 0.00 2019-11-28 17:48:48 2019-11-28 17:49:26 t 1 1 176105 220 0.00 2019-11-28 17:49:26 2019-11-28 17:49:59 t 1 1 176110 645 0.00 2019-11-28 17:46:28 2019-11-28 17:51:27 t 1 1 176112 220 0.00 2019-11-28 17:51:04 2019-11-28 17:51:49 t 1 1 176115 430 0.00 2019-11-28 17:50:57 2019-11-28 17:52:57 t 1 1 176118 220 0.00 2019-11-28 17:53:23 2019-11-28 17:54:05 t 1 1 176119 430 0.00 2019-11-28 17:54:21 2019-11-28 17:54:45 t 1 1 176123 430 0.00 2019-11-28 17:54:50 2019-11-28 17:55:54 t 1 1 176125 220 0.00 2019-11-28 17:56:04 2019-11-28 17:56:41 t 1 1 176128 430 0.00 2019-11-28 17:57:38 2019-11-28 17:58:38 t 1 1 176129 220 0.00 2019-11-28 17:58:36 2019-11-28 17:59:12 t 1 1 176131 430 0.00 2019-11-28 17:58:43 2019-11-28 17:59:32 t 1 1 176134 645 0.00 2019-11-28 17:59:37 2019-11-28 18:01:10 t 1 1 176137 422 0.00 2019-11-28 18:01:22 2019-11-28 18:01:34 t 1 1 176139 220 0.00 2019-11-28 18:01:46 2019-11-28 18:02:23 t 1 1 176145 562 0.00 2019-11-28 18:00:22 2019-11-28 18:05:30 t 1 1 176149 528 0.00 2019-11-28 18:07:11 2019-11-28 18:07:30 t 1 1 176152 220 0.00 2019-11-28 18:04:43 2019-11-28 18:09:06 t 1 1 176154 528 0.00 2019-11-28 18:10:50 2019-11-28 18:11:19 t 1 1 176160 528 0.00 2019-11-28 18:17:17 2019-11-28 18:17:53 t 1 1 176161 430 0.00 2019-11-28 18:10:49 2019-11-28 18:18:23 t 1 1 176163 422 0.00 2019-11-28 18:12:50 2019-11-28 18:20:20 t 1 1 176164 422 0.00 2019-11-28 18:20:51 2019-11-28 18:21:25 t 1 1 176166 422 0.00 2019-11-28 18:22:04 2019-11-28 18:23:20 t 1 1 176167 677 0.00 2019-11-28 18:18:13 2019-11-28 18:24:28 t 1 1 176169 528 0.00 2019-11-28 18:27:40 2019-11-28 18:27:43 t 1 1 176170 564 0.00 2019-11-28 16:38:05 2019-11-28 18:31:13 t 1 1 176177 508 0.00 2019-11-28 18:32:50 2019-11-28 18:35:11 t 1 1 176178 422 0.00 2019-11-28 18:34:28 2019-11-28 18:35:41 t 1 1 176180 544 0.00 2019-11-28 18:24:09 2019-11-28 18:36:02 t 1 1 176181 508 0.00 2019-11-28 18:35:11 2019-11-28 18:36:39 t 1 1 176184 508 0.00 2019-11-28 18:36:38 2019-11-28 18:37:58 t 1 1 176185 562 0.00 2019-11-28 18:38:27 2019-11-28 18:38:33 t 1 1 176190 670 0.00 2019-11-28 17:46:32 2019-11-28 18:44:18 t 1 1 176191 585 0.00 2019-11-28 18:45:05 2019-11-28 18:45:05 f 1 1 176195 220 0.00 2019-11-28 18:18:36 2019-11-28 18:48:30 t 1 1 176197 528 0.00 2019-11-28 18:48:13 2019-11-28 18:48:45 t 1 1 176203 660 0.00 2019-11-28 18:46:29 2019-11-28 18:50:02 t 1 1 176205 220 0.00 2019-11-28 18:50:16 2019-11-28 18:50:24 t 1 1 176209 220 0.00 2019-11-28 18:51:33 2019-11-28 18:51:35 t 1 1 176213 220 0.00 2019-11-28 18:52:13 2019-11-28 18:52:45 t 1 1 176215 220 0.00 2019-11-28 18:52:49 2019-11-28 18:53:23 t 1 1 176220 562 0.00 2019-11-28 18:54:14 2019-11-28 18:54:51 t 1 1 176224 220 0.00 2019-11-28 18:55:22 2019-11-28 18:55:58 t 1 1 176225 220 0.00 2019-11-28 18:55:58 2019-11-28 18:56:37 t 1 1 176230 220 0.00 2019-11-28 18:58:20 2019-11-28 18:58:56 t 1 1 176232 220 0.00 2019-11-28 18:58:56 2019-11-28 18:59:31 t 1 1 176238 412 0.00 2019-11-28 19:01:38 2019-11-28 19:01:38 f 1 1 176241 481 0.00 2019-11-28 18:55:34 2019-11-28 19:02:13 t 1 1 176255 645 0.00 2019-11-28 19:21:26 2019-11-28 19:25:11 t 1 1 176260 679 0.00 2019-11-28 19:26:34 2019-11-28 19:27:19 t 1 1 176263 551 0.00 2019-11-28 19:29:55 2019-11-28 19:30:08 t 1 1 176267 679 0.00 2019-11-28 19:27:28 2019-11-28 19:30:33 t 1 1 176269 551 0.00 2019-11-28 19:30:29 2019-11-28 19:30:43 t 1 1 176273 679 0.00 2019-11-28 19:31:25 2019-11-28 19:31:27 t 1 1 176274 528 0.00 2019-11-28 19:32:04 2019-11-28 19:32:07 t 1 1 176277 562 0.00 2019-11-28 19:34:37 2019-11-28 19:36:31 t 1 1 176282 679 0.00 2019-11-28 19:31:54 2019-11-28 19:43:58 t 1 1 176289 430 0.00 2019-11-28 19:44:40 2019-11-28 19:46:42 t 1 1 176290 430 0.00 2019-11-28 19:47:02 2019-11-28 19:47:37 t 1 1 176292 578 0.00 2019-11-28 19:42:07 2019-11-28 19:48:11 t 1 1 176294 430 0.00 2019-11-28 19:50:18 2019-11-28 19:50:25 t 1 1 176297 430 0.00 2019-11-28 19:53:30 2019-11-28 19:53:42 t 1 1 176298 220 0.00 2019-11-28 19:53:34 2019-11-28 19:54:05 t 1 1 176301 430 0.00 2019-11-28 19:54:34 2019-11-28 19:54:46 t 1 1 176303 220 0.00 2019-11-28 19:55:14 2019-11-28 19:55:51 t 1 1 176306 430 0.00 2019-11-28 19:55:57 2019-11-28 19:56:29 t 1 1 176310 220 0.00 2019-11-28 19:57:40 2019-11-28 19:58:19 t 1 1 176311 220 0.00 2019-11-28 19:58:19 2019-11-28 19:58:53 t 1 1 176312 220 0.00 2019-11-28 19:58:52 2019-11-28 19:59:32 t 1 1 176314 430 0.00 2019-11-28 19:59:39 2019-11-28 19:59:50 t 1 1 176317 430 0.00 2019-11-28 20:03:25 2019-11-28 20:04:02 t 1 1 176323 220 0.00 2019-11-28 20:00:06 2019-11-28 20:07:37 t 1 1 176329 430 0.00 2019-11-28 20:10:27 2019-11-28 20:10:33 t 1 1 176331 430 0.00 2019-11-28 20:12:45 2019-11-28 20:13:09 t 1 1 176332 578 0.00 2019-11-28 20:06:39 2019-11-28 20:14:16 t 1 1 176253 679 0.00 2019-11-28 19:09:32 2019-11-28 19:23:50 t 1 1 176256 679 0.00 2019-11-28 19:25:04 2019-11-28 19:25:36 t 1 1 176258 679 0.00 2019-11-28 19:26:03 2019-11-28 19:26:06 t 1 1 176259 528 0.00 2019-11-28 18:58:11 2019-11-28 19:26:44 t 1 1 176261 611 0.00 2019-11-28 19:16:37 2019-11-28 19:28:23 t 1 1 176265 220 0.00 2019-11-28 19:01:57 2019-11-28 19:30:18 t 1 1 176268 220 0.00 2019-11-28 19:30:18 2019-11-28 19:30:41 t 1 1 176272 611 0.00 2019-11-28 19:30:16 2019-11-28 19:31:24 t 1 1 176275 562 0.00 2019-11-28 19:32:40 2019-11-28 19:33:16 t 1 1 176276 562 0.00 2019-11-28 19:35:39 2019-11-28 19:35:48 t 1 1 176279 578 0.00 2019-11-28 19:23:57 2019-11-28 19:42:07 t 1 1 176281 611 0.00 2019-11-28 19:37:08 2019-11-28 19:43:02 t 1 1 176283 430 0.00 2019-11-28 19:34:49 2019-11-28 19:44:00 t 1 1 176284 679 0.00 2019-11-28 19:44:05 2019-11-28 19:44:06 t 1 1 176286 514 0.00 2019-11-28 17:56:34 2019-11-28 19:44:29 t 1 1 176288 679 0.00 2019-11-28 19:44:56 2019-11-28 19:45:06 t 1 1 176304 578 0.00 2019-11-28 19:48:11 2019-11-28 19:55:56 t 1 1 176308 220 0.00 2019-11-28 19:56:32 2019-11-28 19:57:08 t 1 1 176309 220 0.00 2019-11-28 19:57:08 2019-11-28 19:57:41 t 1 1 176316 562 0.00 2019-11-28 20:00:47 2019-11-28 20:01:16 t 1 1 176319 562 0.00 2019-11-28 20:04:59 2019-11-28 20:05:04 t 1 1 176320 430 0.00 2019-11-28 20:04:24 2019-11-28 20:05:32 t 1 1 176321 430 0.00 2019-11-28 20:06:03 2019-11-28 20:06:25 t 1 1 176325 562 0.00 2019-11-28 20:07:42 2019-11-28 20:08:30 t 1 1 176328 488 0.00 2019-11-28 20:10:23 2019-11-28 20:10:23 f 1 1 176330 562 0.00 2019-11-28 20:10:00 2019-11-28 20:12:30 t 1 1 176333 430 0.00 2019-11-28 20:14:18 2019-11-28 20:14:27 t 1 1 176334 675 0.00 2019-11-28 18:46:13 2019-11-28 20:14:56 t 1 1 176336 562 0.00 2019-11-28 20:14:55 2019-11-28 20:16:32 t 1 1 176342 562 0.00 2019-11-28 20:19:51 2019-11-28 20:20:07 t 1 1 176343 591 0.00 2019-11-28 19:42:50 2019-11-28 20:20:21 t 1 1 176347 544 0.00 2019-11-28 20:14:50 2019-11-28 20:22:57 t 1 1 176349 514 0.00 2019-11-28 20:14:04 2019-11-28 20:23:38 t 1 1 176350 578 0.00 2019-11-28 20:14:17 2019-11-28 20:26:51 t 1 1 176354 528 0.00 2019-11-28 20:21:55 2019-11-28 20:29:21 t 1 1 176366 639 0.00 2019-11-28 20:34:04 2019-11-28 20:40:53 t 1 1 176369 430 0.00 2019-11-28 20:42:58 2019-11-28 20:43:06 t 1 1 176380 430 0.00 2019-11-28 20:49:12 2019-11-28 20:50:02 t 1 1 176384 430 0.00 2019-11-28 20:52:16 2019-11-28 20:52:33 t 1 1 176385 430 0.00 2019-11-28 20:53:16 2019-11-28 20:53:54 t 1 1 176387 667 0.00 2019-11-28 20:54:08 2019-11-28 20:54:44 t 1 1 176389 430 0.00 2019-11-28 20:54:11 2019-11-28 20:54:55 t 1 1 176390 667 0.00 2019-11-28 20:55:00 2019-11-28 20:55:09 t 1 1 176391 566 0.00 2019-11-28 20:43:13 2019-11-28 20:55:44 t 1 1 176393 562 0.00 2019-11-28 20:55:07 2019-11-28 20:56:33 t 1 1 176402 220 0.00 2019-11-28 20:57:38 2019-11-28 20:58:17 t 1 1 176405 578 0.00 2019-11-28 20:26:51 2019-11-28 20:58:45 t 1 1 176406 220 0.00 2019-11-28 20:58:17 2019-11-28 20:58:55 t 1 1 176412 445 0.00 2019-11-28 19:39:52 2019-11-28 21:00:54 t 1 1 176416 544 0.00 2019-11-28 20:57:57 2019-11-28 21:01:42 t 1 1 176417 449 0.00 2019-11-28 20:50:38 2019-11-28 21:03:04 t 1 1 176422 430 0.00 2019-11-28 21:05:33 2019-11-28 21:05:33 f 1 1 176425 562 0.00 2019-11-28 21:06:06 2019-11-28 21:06:26 t 1 1 176427 449 0.00 2019-11-28 21:03:12 2019-11-28 21:07:04 t 1 1 176428 639 0.00 2019-11-28 20:48:45 2019-11-28 21:08:39 t 1 1 176430 566 0.00 2019-11-28 21:10:12 2019-11-28 21:10:12 t 1 1 176434 667 0.00 2019-11-28 21:09:33 2019-11-28 21:14:08 t 1 1 176441 667 0.00 2019-11-28 21:19:02 2019-11-28 21:21:08 t 1 1 176443 673 0.00 2019-11-28 20:50:18 2019-11-28 21:21:12 t 1 1 176444 485 0.00 2019-11-28 21:20:27 2019-11-28 21:21:19 t 1 1 176445 562 0.00 2019-11-28 21:21:42 2019-11-28 21:22:00 t 1 1 176447 485 0.00 2019-11-28 21:21:19 2019-11-28 21:22:57 t 1 1 176449 220 0.00 2019-11-28 20:59:30 2019-11-28 21:25:06 t 1 1 176450 667 0.00 2019-11-28 21:24:22 2019-11-28 21:25:45 t 1 1 176451 667 0.00 2019-11-28 21:26:13 2019-11-28 21:26:37 t 1 1 176454 639 0.00 2019-11-28 21:08:39 2019-11-28 21:28:36 t 1 1 176459 456 0.00 2019-11-28 20:44:39 2019-11-28 21:34:58 t 1 1 176460 645 0.00 2019-11-28 21:29:04 2019-11-28 21:35:35 t 1 1 176462 654 0.00 2019-11-28 21:33:40 2019-11-28 21:36:37 t 1 1 176463 667 0.00 2019-11-28 21:37:22 2019-11-28 21:37:29 t 1 1 176465 451 0.00 2019-11-28 21:33:09 2019-11-28 21:41:19 t 1 1 176466 673 0.00 2019-11-28 21:21:12 2019-11-28 21:43:25 t 1 1 176471 544 0.00 2019-11-28 21:45:09 2019-11-28 21:46:01 t 1 1 176472 675 0.00 2019-11-28 21:42:49 2019-11-28 21:46:33 t 1 1 176480 679 0.00 2019-11-28 21:49:57 2019-11-28 21:50:01 t 1 1 176481 679 0.00 2019-11-28 21:50:11 2019-11-28 21:50:23 t 1 1 176483 667 0.00 2019-11-28 21:50:05 2019-11-28 21:51:14 t 1 1 176484 544 0.00 2019-11-28 21:49:29 2019-11-28 21:51:50 t 1 1 176485 566 0.00 2019-11-28 21:12:24 2019-11-28 21:52:01 t 1 1 176487 627 0.00 2019-11-28 21:51:52 2019-11-28 21:52:11 t 1 1 176489 645 0.00 2019-11-28 21:50:32 2019-11-28 21:53:10 t 1 1 176491 679 0.00 2019-11-28 21:51:42 2019-11-28 21:54:20 t 1 1 176493 679 0.00 2019-11-28 21:54:27 2019-11-28 21:54:39 t 1 1 176494 679 0.00 2019-11-28 21:54:49 2019-11-28 21:54:55 t 1 1 176497 679 0.00 2019-11-28 21:55:37 2019-11-28 21:55:38 t 1 1 176503 627 0.00 2019-11-28 21:57:59 2019-11-28 21:58:11 t 1 1 176506 544 0.00 2019-11-28 21:58:14 2019-11-28 22:00:16 t 1 1 176507 516 0.00 2019-11-28 21:50:15 2019-11-28 22:00:29 t 1 1 176516 675 0.00 2019-11-28 21:55:28 2019-11-28 22:05:11 t 1 1 176518 544 0.00 2019-11-28 22:04:18 2019-11-28 22:06:35 t 1 1 176520 673 0.00 2019-11-28 22:03:47 2019-11-28 22:06:49 t 1 1 176525 544 0.00 2019-11-28 22:10:32 2019-11-28 22:11:42 t 1 1 176528 654 0.00 2019-11-28 22:12:14 2019-11-28 22:14:10 t 1 1 176530 566 0.00 2019-11-28 22:07:42 2019-11-28 22:15:54 t 1 1 176532 645 0.00 2019-11-28 22:12:05 2019-11-28 22:16:19 t 1 1 176534 422 0.00 2019-11-28 22:04:43 2019-11-28 22:16:52 t 1 1 176535 667 0.00 2019-11-28 22:17:32 2019-11-28 22:17:41 t 1 1 176537 671 0.00 2019-11-28 22:14:45 2019-11-28 22:19:56 t 1 1 176538 622 0.00 2019-11-28 20:32:41 2019-11-28 22:20:20 t 1 1 176539 544 0.00 2019-11-28 22:15:49 2019-11-28 22:20:25 t 1 1 176541 544 0.00 2019-11-28 22:20:24 2019-11-28 22:20:56 t 1 1 176545 585 0.00 2019-11-28 22:23:14 2019-11-28 22:23:14 f 1 1 176549 654 0.00 2019-11-28 22:14:39 2019-11-28 22:25:58 t 1 1 176552 544 0.00 2019-11-28 22:28:05 2019-11-28 22:28:12 t 1 1 176553 544 0.00 2019-11-28 22:28:25 2019-11-28 22:28:26 t 1 1 176556 656 0.00 2019-11-28 22:12:07 2019-11-28 22:29:22 t 1 1 176558 544 0.00 2019-11-28 22:29:31 2019-11-28 22:29:32 t 1 1 176278 445 0.00 2019-11-28 19:34:06 2019-11-28 19:39:51 t 1 1 176280 591 0.00 2019-11-28 19:02:31 2019-11-28 19:42:50 t 1 1 176285 430 0.00 2019-11-28 19:44:06 2019-11-28 19:44:09 t 1 1 176287 679 0.00 2019-11-28 19:44:33 2019-11-28 19:44:46 t 1 1 176291 430 0.00 2019-11-28 19:47:43 2019-11-28 19:47:50 t 1 1 176293 430 0.00 2019-11-28 19:49:25 2019-11-28 19:49:57 t 1 1 176295 562 0.00 2019-11-28 19:50:30 2019-11-28 19:51:13 t 1 1 176296 220 0.00 2019-11-28 19:30:52 2019-11-28 19:53:34 t 1 1 176299 430 0.00 2019-11-28 19:53:48 2019-11-28 19:54:21 t 1 1 176300 220 0.00 2019-11-28 19:54:04 2019-11-28 19:54:43 t 1 1 176302 220 0.00 2019-11-28 19:54:42 2019-11-28 19:55:14 t 1 1 176305 514 0.00 2019-11-28 19:44:29 2019-11-28 19:56:29 t 1 1 176307 220 0.00 2019-11-28 19:55:51 2019-11-28 19:56:33 t 1 1 176313 679 0.00 2019-11-28 19:45:49 2019-11-28 19:59:44 t 1 1 176315 220 0.00 2019-11-28 19:59:32 2019-11-28 20:00:07 t 1 1 176318 566 0.00 2019-11-28 19:40:49 2019-11-28 20:04:14 t 1 1 176322 578 0.00 2019-11-28 19:55:56 2019-11-28 20:06:39 t 1 1 176324 645 0.00 2019-11-28 20:04:57 2019-11-28 20:08:11 t 1 1 176326 488 0.00 2019-11-28 20:10:11 2019-11-28 20:10:11 f 1 1 176327 430 0.00 2019-11-28 20:07:03 2019-11-28 20:10:21 t 1 1 176335 430 0.00 2019-11-28 20:15:11 2019-11-28 20:16:12 t 1 1 176337 430 0.00 2019-11-28 20:17:33 2019-11-28 20:18:04 t 1 1 176338 562 0.00 2019-11-28 20:18:26 2019-11-28 20:18:34 t 1 1 176339 430 0.00 2019-11-28 20:18:52 2019-11-28 20:19:22 t 1 1 176344 430 0.00 2019-11-28 20:19:35 2019-11-28 20:21:32 t 1 1 176353 675 0.00 2019-11-28 20:17:36 2019-11-28 20:27:49 t 1 1 176355 562 0.00 2019-11-28 20:28:55 2019-11-28 20:29:25 t 1 1 176357 430 0.00 2019-11-28 20:30:30 2019-11-28 20:30:36 t 1 1 176358 681 0.00 2019-11-28 19:42:34 2019-11-28 20:32:10 t 1 1 176359 622 0.00 2019-11-28 20:00:29 2019-11-28 20:32:41 t 1 1 176362 675 0.00 2019-11-28 20:28:50 2019-11-28 20:35:46 t 1 1 176363 430 0.00 2019-11-28 20:36:22 2019-11-28 20:36:58 t 1 1 176364 430 0.00 2019-11-28 20:37:33 2019-11-28 20:37:59 t 1 1 176367 430 0.00 2019-11-28 20:41:30 2019-11-28 20:41:38 t 1 1 176370 566 0.00 2019-11-28 20:33:06 2019-11-28 20:43:12 t 1 1 176372 544 0.00 2019-11-28 20:27:46 2019-11-28 20:44:34 t 1 1 176374 430 0.00 2019-11-28 20:46:49 2019-11-28 20:47:14 t 1 1 176375 430 0.00 2019-11-28 20:45:28 2019-11-28 20:47:32 t 1 1 176378 430 0.00 2019-11-28 20:48:29 2019-11-28 20:49:06 t 1 1 176392 220 0.00 2019-11-28 20:44:35 2019-11-28 20:56:17 t 1 1 176394 635 0.00 2019-11-28 20:46:22 2019-11-28 20:56:41 t 1 1 176396 220 0.00 2019-11-28 20:56:17 2019-11-28 20:57:00 t 1 1 176398 611 0.00 2019-11-28 20:50:06 2019-11-28 20:57:22 t 1 1 176401 544 0.00 2019-11-28 20:46:54 2019-11-28 20:57:57 t 1 1 176403 430 0.00 2019-11-28 20:57:48 2019-11-28 20:58:18 t 1 1 176404 481 0.00 2019-11-28 19:02:12 2019-11-28 20:58:25 t 1 1 176407 430 0.00 2019-11-28 20:58:44 2019-11-28 20:59:08 t 1 1 176408 220 0.00 2019-11-28 20:58:54 2019-11-28 20:59:30 t 1 1 176410 430 0.00 2019-11-28 20:58:24 2019-11-28 21:00:33 t 1 1 176415 430 0.00 2019-11-28 21:01:29 2019-11-28 21:01:36 t 1 1 176418 430 0.00 2019-11-28 21:02:42 2019-11-28 21:03:22 t 1 1 176419 430 0.00 2019-11-28 21:03:39 2019-11-28 21:03:54 t 1 1 176420 485 0.00 2019-11-28 21:03:09 2019-11-28 21:04:47 t 1 1 176421 667 0.00 2019-11-28 20:57:39 2019-11-28 21:05:21 t 1 1 176423 430 0.00 2019-11-28 21:03:28 2019-11-28 21:05:33 t 1 1 176429 566 0.00 2019-11-28 20:55:44 2019-11-28 21:10:12 t 1 1 176431 591 0.00 2019-11-28 20:20:21 2019-11-28 21:10:37 t 1 1 176432 566 0.00 2019-11-28 21:10:12 2019-11-28 21:11:34 t 1 1 176433 675 0.00 2019-11-28 20:52:20 2019-11-28 21:12:51 t 1 1 176435 562 0.00 2019-11-28 21:14:54 2019-11-28 21:15:14 t 1 1 176437 667 0.00 2019-11-28 21:14:36 2019-11-28 21:16:34 t 1 1 176439 485 0.00 2019-11-28 21:17:22 2019-11-28 21:20:28 t 1 1 176442 451 0.00 2019-11-28 20:55:15 2019-11-28 21:21:11 t 1 1 176448 551 0.00 2019-11-28 20:26:52 2019-11-28 21:24:37 t 1 1 176453 481 0.00 2019-11-28 21:01:42 2019-11-28 21:28:02 t 1 1 176457 451 0.00 2019-11-28 21:21:11 2019-11-28 21:33:09 t 1 1 176461 528 0.00 2019-11-28 21:34:12 2019-11-28 21:36:02 t 1 1 176464 679 0.00 2019-11-28 21:06:19 2019-11-28 21:38:28 t 1 1 176469 667 0.00 2019-11-28 21:44:53 2019-11-28 21:44:56 t 1 1 176473 660 0.00 2019-11-28 21:43:50 2019-11-28 21:46:54 t 1 1 176477 679 0.00 2019-11-28 21:38:28 2019-11-28 21:48:56 t 1 1 176478 679 0.00 2019-11-28 21:49:17 2019-11-28 21:49:21 t 1 1 176479 667 0.00 2019-11-28 21:49:33 2019-11-28 21:49:47 t 1 1 176492 544 0.00 2019-11-28 21:54:16 2019-11-28 21:54:26 t 1 1 176495 679 0.00 2019-11-28 21:55:16 2019-11-28 21:55:21 t 1 1 176498 627 0.00 2019-11-28 21:54:07 2019-11-28 21:55:54 t 1 1 176500 673 0.00 2019-11-28 21:43:25 2019-11-28 21:56:08 t 1 1 176501 679 0.00 2019-11-28 21:56:27 2019-11-28 21:56:33 t 1 1 176502 679 0.00 2019-11-28 21:57:03 2019-11-28 21:57:48 t 1 1 176508 679 0.00 2019-11-28 21:59:08 2019-11-28 22:00:39 t 1 1 176513 544 0.00 2019-11-28 22:04:05 2019-11-28 22:04:09 t 1 1 176514 422 0.00 2019-11-28 22:03:12 2019-11-28 22:04:24 t 1 1 176519 627 0.00 2019-11-28 22:03:28 2019-11-28 22:06:37 t 1 1 176522 456 0.00 2019-11-28 21:52:57 2019-11-28 22:07:52 t 1 1 176524 445 0.00 2019-11-28 22:06:32 2019-11-28 22:10:52 t 1 1 176529 544 0.00 2019-11-28 22:12:09 2019-11-28 22:15:37 t 1 1 176540 679 0.00 2019-11-28 22:16:07 2019-11-28 22:20:51 t 1 1 176544 544 0.00 2019-11-28 22:20:56 2019-11-28 22:22:47 t 1 1 176547 544 0.00 2019-11-28 22:23:15 2019-11-28 22:23:36 t 1 1 176551 544 0.00 2019-11-28 22:27:12 2019-11-28 22:27:29 t 1 1 176555 485 0.00 2019-11-28 22:23:47 2019-11-28 22:29:10 t 1 1 176559 667 0.00 2019-11-28 22:30:26 2019-11-28 22:30:34 t 1 1 176563 562 0.00 2019-11-28 22:32:37 2019-11-28 22:32:45 t 1 1 176568 667 0.00 2019-11-28 22:36:13 2019-11-28 22:36:14 t 1 1 176573 544 0.00 2019-11-28 22:37:38 2019-11-28 22:37:44 t 1 1 176576 654 0.00 2019-11-28 22:25:58 2019-11-28 22:38:57 t 1 1 176577 639 0.00 2019-11-28 21:28:36 2019-11-28 22:39:12 t 1 1 176578 591 0.00 2019-11-28 21:30:48 2019-11-28 22:39:19 t 1 1 176580 544 0.00 2019-11-28 22:39:07 2019-11-28 22:39:46 t 1 1 176588 220 0.00 2019-11-28 21:32:55 2019-11-28 22:42:34 t 1 1 176590 667 0.00 2019-11-28 22:42:30 2019-11-28 22:42:47 t 1 1 176597 485 0.00 2019-11-28 22:41:08 2019-11-28 22:44:31 t 1 1 176599 220 0.00 2019-11-28 22:43:29 2019-11-28 22:44:37 t 1 1 176602 220 0.00 2019-11-28 22:44:36 2019-11-28 22:45:12 t 1 1 176604 220 0.00 2019-11-28 22:45:12 2019-11-28 22:45:50 t 1 1 176605 220 0.00 2019-11-28 22:45:49 2019-11-28 22:46:25 t 1 1 176615 220 0.00 2019-11-28 22:48:28 2019-11-28 22:49:01 t 1 1 176340 516 0.00 2019-11-28 20:10:40 2019-11-28 20:19:35 t 1 1 176341 528 0.00 2019-11-28 19:32:15 2019-11-28 20:20:07 t 1 1 176345 430 0.00 2019-11-28 20:22:00 2019-11-28 20:22:13 t 1 1 176346 430 0.00 2019-11-28 20:22:42 2019-11-28 20:22:52 t 1 1 176348 645 0.00 2019-11-28 20:20:33 2019-11-28 20:23:35 t 1 1 176351 551 0.00 2019-11-28 19:30:43 2019-11-28 20:26:52 t 1 1 176352 430 0.00 2019-11-28 20:26:28 2019-11-28 20:27:39 t 1 1 176356 430 0.00 2019-11-28 20:30:06 2019-11-28 20:30:24 t 1 1 176360 566 0.00 2019-11-28 20:04:14 2019-11-28 20:33:06 t 1 1 176361 639 0.00 2019-11-28 20:21:48 2019-11-28 20:34:04 t 1 1 176365 562 0.00 2019-11-28 20:39:58 2019-11-28 20:40:10 t 1 1 176368 430 0.00 2019-11-28 20:42:31 2019-11-28 20:42:59 t 1 1 176371 430 0.00 2019-11-28 20:43:35 2019-11-28 20:43:40 t 1 1 176373 430 0.00 2019-11-28 20:44:37 2019-11-28 20:44:43 t 1 1 176376 430 0.00 2019-11-28 20:47:28 2019-11-28 20:47:57 t 1 1 176377 639 0.00 2019-11-28 20:40:53 2019-11-28 20:48:45 t 1 1 176379 562 0.00 2019-11-28 20:49:09 2019-11-28 20:49:38 t 1 1 176381 611 0.00 2019-11-28 20:40:46 2019-11-28 20:50:06 t 1 1 176382 430 0.00 2019-11-28 20:50:08 2019-11-28 20:51:07 t 1 1 176383 430 0.00 2019-11-28 20:51:14 2019-11-28 20:52:33 t 1 1 176386 430 0.00 2019-11-28 20:53:59 2019-11-28 20:54:06 t 1 1 176388 667 0.00 2019-11-28 20:54:51 2019-11-28 20:54:54 t 1 1 176395 667 0.00 2019-11-28 20:55:16 2019-11-28 20:56:48 t 1 1 176397 485 0.00 2019-11-28 20:55:29 2019-11-28 20:57:11 t 1 1 176399 430 0.00 2019-11-28 20:56:02 2019-11-28 20:57:33 t 1 1 176400 220 0.00 2019-11-28 20:57:00 2019-11-28 20:57:39 t 1 1 176409 562 0.00 2019-11-28 20:57:45 2019-11-28 20:59:33 t 1 1 176411 562 0.00 2019-11-28 21:00:29 2019-11-28 21:00:43 t 1 1 176413 430 0.00 2019-11-28 20:59:48 2019-11-28 21:01:09 t 1 1 176414 430 0.00 2019-11-28 21:01:15 2019-11-28 21:01:23 t 1 1 176424 611 0.00 2019-11-28 20:57:36 2019-11-28 21:06:02 t 1 1 176426 430 0.00 2019-11-28 21:04:31 2019-11-28 21:06:33 t 1 1 176436 667 0.00 2019-11-28 21:15:39 2019-11-28 21:16:09 t 1 1 176438 667 0.00 2019-11-28 21:16:49 2019-11-28 21:17:24 t 1 1 176440 667 0.00 2019-11-28 21:18:37 2019-11-28 21:20:34 t 1 1 176446 660 0.00 2019-11-28 21:06:29 2019-11-28 21:22:30 t 1 1 176452 667 0.00 2019-11-28 21:27:00 2019-11-28 21:27:52 t 1 1 176455 667 0.00 2019-11-28 21:29:26 2019-11-28 21:29:37 t 1 1 176456 591 0.00 2019-11-28 21:10:37 2019-11-28 21:30:48 t 1 1 176458 667 0.00 2019-11-28 21:33:51 2019-11-28 21:34:48 t 1 1 176467 627 0.00 2019-11-28 21:27:14 2019-11-28 21:43:34 t 1 1 176468 667 0.00 2019-11-28 21:37:52 2019-11-28 21:44:46 t 1 1 176470 528 0.00 2019-11-28 21:42:34 2019-11-28 21:45:31 t 1 1 176474 627 0.00 2019-11-28 21:46:15 2019-11-28 21:46:59 t 1 1 176475 544 0.00 2019-11-28 21:47:10 2019-11-28 21:47:32 t 1 1 176476 627 0.00 2019-11-28 21:48:00 2019-11-28 21:48:43 t 1 1 176482 627 0.00 2019-11-28 21:48:56 2019-11-28 21:50:47 t 1 1 176486 667 0.00 2019-11-28 21:51:53 2019-11-28 21:52:04 t 1 1 176488 627 0.00 2019-11-28 21:52:55 2019-11-28 21:53:02 t 1 1 176490 544 0.00 2019-11-28 21:52:56 2019-11-28 21:53:33 t 1 1 176496 544 0.00 2019-11-28 21:54:49 2019-11-28 21:55:21 t 1 1 176499 562 0.00 2019-11-28 21:55:22 2019-11-28 21:55:57 t 1 1 176504 679 0.00 2019-11-28 21:58:17 2019-11-28 21:58:26 t 1 1 176505 562 0.00 2019-11-28 21:58:18 2019-11-28 21:59:45 t 1 1 176509 562 0.00 2019-11-28 22:01:37 2019-11-28 22:01:52 t 1 1 176510 544 0.00 2019-11-28 22:02:42 2019-11-28 22:02:44 t 1 1 176511 627 0.00 2019-11-28 22:01:37 2019-11-28 22:03:22 t 1 1 176512 673 0.00 2019-11-28 21:56:07 2019-11-28 22:03:49 t 1 1 176515 544 0.00 2019-11-28 22:04:40 2019-11-28 22:04:46 t 1 1 176517 445 0.00 2019-11-28 21:00:54 2019-11-28 22:06:32 t 1 1 176521 566 0.00 2019-11-28 21:52:01 2019-11-28 22:07:42 t 1 1 176523 544 0.00 2019-11-28 22:07:53 2019-11-28 22:09:45 t 1 1 176526 562 0.00 2019-11-28 22:12:28 2019-11-28 22:12:36 t 1 1 176527 451 0.00 2019-11-28 21:41:19 2019-11-28 22:14:05 t 1 1 176531 679 0.00 2019-11-28 22:15:11 2019-11-28 22:16:08 t 1 1 176533 667 0.00 2019-11-28 22:14:02 2019-11-28 22:16:28 t 1 1 176536 673 0.00 2019-11-28 22:06:49 2019-11-28 22:18:13 t 1 1 176542 551 0.00 2019-11-28 21:24:37 2019-11-28 22:22:10 t 1 1 176543 673 0.00 2019-11-28 22:18:13 2019-11-28 22:22:22 t 1 1 176546 544 0.00 2019-11-28 22:22:47 2019-11-28 22:23:16 t 1 1 176548 544 0.00 2019-11-28 22:23:55 2019-11-28 22:25:35 t 1 1 176550 544 0.00 2019-11-28 22:25:10 2019-11-28 22:26:16 t 1 1 176554 544 0.00 2019-11-28 22:28:31 2019-11-28 22:28:41 t 1 1 176557 667 0.00 2019-11-28 22:26:33 2019-11-28 22:29:31 t 1 1 176562 485 0.00 2019-11-28 22:29:10 2019-11-28 22:32:32 t 1 1 176564 544 0.00 2019-11-28 22:33:17 2019-11-28 22:33:49 t 1 1 176565 544 0.00 2019-11-28 22:34:14 2019-11-28 22:35:16 t 1 1 176567 667 0.00 2019-11-28 22:35:32 2019-11-28 22:36:06 t 1 1 176569 667 0.00 2019-11-28 22:36:21 2019-11-28 22:36:22 t 1 1 176571 544 0.00 2019-11-28 22:36:58 2019-11-28 22:37:10 t 1 1 176574 544 0.00 2019-11-28 22:38:15 2019-11-28 22:38:20 t 1 1 176579 654 0.00 2019-11-28 22:38:57 2019-11-28 22:39:39 t 1 1 176581 544 0.00 2019-11-28 22:39:46 2019-11-28 22:40:25 t 1 1 176583 544 0.00 2019-11-28 22:40:25 2019-11-28 22:40:50 t 1 1 176585 544 0.00 2019-11-28 22:41:00 2019-11-28 22:41:28 t 1 1 176587 544 0.00 2019-11-28 22:41:28 2019-11-28 22:42:02 t 1 1 176591 544 0.00 2019-11-28 22:42:40 2019-11-28 22:43:16 t 1 1 176592 220 0.00 2019-11-28 22:42:33 2019-11-28 22:43:29 t 1 1 176594 544 0.00 2019-11-28 22:43:16 2019-11-28 22:43:54 t 1 1 176598 645 0.00 2019-11-28 22:42:14 2019-11-28 22:44:34 t 1 1 176603 544 0.00 2019-11-28 22:45:12 2019-11-28 22:45:46 t 1 1 176608 544 0.00 2019-11-28 22:46:35 2019-11-28 22:47:09 t 1 1 176609 445 0.00 2019-11-28 22:10:51 2019-11-28 22:47:23 t 1 1 176611 220 0.00 2019-11-28 22:47:02 2019-11-28 22:47:38 t 1 1 176612 544 0.00 2019-11-28 22:47:09 2019-11-28 22:47:51 t 1 1 176614 220 0.00 2019-11-28 22:47:37 2019-11-28 22:48:29 t 1 1 176617 514 0.00 2019-11-28 22:48:05 2019-11-28 22:49:08 t 1 1 176619 544 0.00 2019-11-28 22:49:04 2019-11-28 22:49:37 t 1 1 176625 220 0.00 2019-11-28 22:50:10 2019-11-28 22:50:55 t 1 1 176627 220 0.00 2019-11-28 22:50:55 2019-11-28 22:51:31 t 1 1 176629 544 0.00 2019-11-28 22:51:28 2019-11-28 22:52:04 t 1 1 176630 544 0.00 2019-11-28 22:52:03 2019-11-28 22:52:42 t 1 1 176635 545 0.00 2019-11-28 22:31:21 2019-11-28 22:54:35 t 1 1 176636 220 0.00 2019-11-28 22:53:37 2019-11-28 22:55:00 t 1 1 176639 544 0.00 2019-11-28 22:53:50 2019-11-28 22:57:29 t 1 1 176643 544 0.00 2019-11-28 22:58:07 2019-11-28 22:58:45 t 1 1 176649 481 0.00 2019-11-28 21:28:01 2019-11-28 22:59:46 t 1 1 176560 545 0.00 2019-11-28 22:12:06 2019-11-28 22:31:21 t 1 1 176561 667 0.00 2019-11-28 22:31:30 2019-11-28 22:31:44 t 1 1 176566 578 0.00 2019-11-28 20:58:45 2019-11-28 22:35:57 t 1 1 176570 544 0.00 2019-11-28 22:36:16 2019-11-28 22:36:27 t 1 1 176572 544 0.00 2019-11-28 22:37:16 2019-11-28 22:37:38 t 1 1 176575 544 0.00 2019-11-28 22:38:19 2019-11-28 22:38:53 t 1 1 176582 645 0.00 2019-11-28 22:39:38 2019-11-28 22:40:36 t 1 1 176584 544 0.00 2019-11-28 22:40:50 2019-11-28 22:40:55 t 1 1 176586 667 0.00 2019-11-28 22:39:38 2019-11-28 22:41:30 t 1 1 176589 544 0.00 2019-11-28 22:42:02 2019-11-28 22:42:40 t 1 1 176593 562 0.00 2019-11-28 22:43:15 2019-11-28 22:43:35 t 1 1 176595 667 0.00 2019-11-28 22:42:54 2019-11-28 22:43:55 t 1 1 176596 544 0.00 2019-11-28 22:43:53 2019-11-28 22:44:27 t 1 1 176600 611 0.00 2019-11-28 22:33:48 2019-11-28 22:45:04 t 1 1 176601 544 0.00 2019-11-28 22:44:27 2019-11-28 22:45:12 t 1 1 176606 544 0.00 2019-11-28 22:45:46 2019-11-28 22:46:35 t 1 1 176607 220 0.00 2019-11-28 22:46:25 2019-11-28 22:47:02 t 1 1 176610 562 0.00 2019-11-28 22:46:54 2019-11-28 22:47:26 t 1 1 176613 544 0.00 2019-11-28 22:47:51 2019-11-28 22:48:26 t 1 1 176618 220 0.00 2019-11-28 22:49:01 2019-11-28 22:49:37 t 1 1 176620 667 0.00 2019-11-28 22:49:33 2019-11-28 22:49:43 t 1 1 176621 220 0.00 2019-11-28 22:49:36 2019-11-28 22:50:10 t 1 1 176622 544 0.00 2019-11-28 22:49:37 2019-11-28 22:50:16 t 1 1 176624 544 0.00 2019-11-28 22:50:15 2019-11-28 22:50:50 t 1 1 176626 544 0.00 2019-11-28 22:50:50 2019-11-28 22:51:28 t 1 1 176628 667 0.00 2019-11-28 22:49:59 2019-11-28 22:52:00 t 1 1 176632 544 0.00 2019-11-28 22:52:41 2019-11-28 22:53:13 t 1 1 176633 220 0.00 2019-11-28 22:52:54 2019-11-28 22:53:38 t 1 1 176634 544 0.00 2019-11-28 22:53:13 2019-11-28 22:53:51 t 1 1 176637 645 0.00 2019-11-28 22:53:47 2019-11-28 22:55:04 t 1 1 176641 220 0.00 2019-11-28 22:55:42 2019-11-28 22:58:08 t 1 1 176642 220 0.00 2019-11-28 22:58:08 2019-11-28 22:58:44 t 1 1 176644 220 0.00 2019-11-28 22:58:43 2019-11-28 22:59:25 t 1 1 176646 544 0.00 2019-11-28 22:58:44 2019-11-28 22:59:35 t 1 1 176648 622 0.00 2019-11-28 22:20:20 2019-11-28 22:59:44 t 1 1 176655 591 0.00 2019-11-28 22:39:19 2019-11-28 23:01:15 t 1 1 176659 562 0.00 2019-11-28 22:59:18 2019-11-28 23:03:17 t 1 1 176660 485 0.00 2019-11-28 22:51:00 2019-11-28 23:05:10 t 1 1 176661 673 0.00 2019-11-28 22:47:42 2019-11-28 23:05:54 t 1 1 176662 416 0.00 2019-11-28 22:04:36 2019-11-28 23:07:56 t 1 1 176665 544 0.00 2019-11-28 23:08:40 2019-11-28 23:09:15 t 1 1 176667 591 0.00 2019-11-28 23:09:39 2019-11-28 23:10:02 t 1 1 176669 544 0.00 2019-11-28 23:10:30 2019-11-28 23:11:10 t 1 1 176672 544 0.00 2019-11-28 23:11:45 2019-11-28 23:12:04 t 1 1 176675 544 0.00 2019-11-28 23:12:22 2019-11-28 23:12:55 t 1 1 176676 544 0.00 2019-11-28 23:12:55 2019-11-28 23:13:33 t 1 1 176678 544 0.00 2019-11-28 23:14:04 2019-11-28 23:14:42 t 1 1 176682 544 0.00 2019-11-28 23:15:30 2019-11-28 23:16:08 t 1 1 176685 544 0.00 2019-11-28 23:16:08 2019-11-28 23:16:51 t 1 1 176692 545 0.00 2019-11-28 22:54:35 2019-11-28 23:19:14 t 1 1 176694 544 0.00 2019-11-28 23:19:16 2019-11-28 23:19:56 t 1 1 176697 544 0.00 2019-11-28 23:20:28 2019-11-28 23:20:52 t 1 1 176699 544 0.00 2019-11-28 23:21:08 2019-11-28 23:21:32 t 1 1 176704 544 0.00 2019-11-28 23:22:11 2019-11-28 23:24:58 t 1 1 176708 639 0.00 2019-11-28 23:25:49 2019-11-28 23:25:58 t 1 1 176710 544 0.00 2019-11-28 23:26:13 2019-11-28 23:26:51 t 1 1 176711 544 0.00 2019-11-28 23:26:51 2019-11-28 23:27:23 t 1 1 176715 544 0.00 2019-11-28 23:28:07 2019-11-28 23:28:42 t 1 1 176716 544 0.00 2019-11-28 23:28:42 2019-11-28 23:29:21 t 1 1 176719 544 0.00 2019-11-28 23:29:56 2019-11-28 23:30:36 t 1 1 176722 544 0.00 2019-11-28 23:31:11 2019-11-28 23:31:48 t 1 1 176723 639 0.00 2019-11-28 23:30:03 2019-11-28 23:33:05 t 1 1 176726 445 0.00 2019-11-28 22:47:23 2019-11-28 23:33:38 t 1 1 176728 512 0.00 2019-11-28 23:33:19 2019-11-28 23:36:38 t 1 1 176732 544 0.00 2019-11-28 23:31:47 2019-11-28 23:38:06 t 1 1 176736 562 0.00 2019-11-28 23:39:46 2019-11-28 23:40:01 t 1 1 176737 562 0.00 2019-11-28 23:41:36 2019-11-28 23:42:36 t 1 1 176744 562 0.00 2019-11-28 23:49:06 2019-11-28 23:49:41 t 1 1 176746 551 0.00 2019-11-28 23:22:54 2019-11-28 23:51:09 t 1 1 176747 220 0.00 2019-11-28 23:50:36 2019-11-28 23:51:13 t 1 1 176752 544 0.00 2019-11-28 23:52:23 2019-11-28 23:53:05 t 1 1 176754 544 0.00 2019-11-28 23:53:05 2019-11-28 23:53:52 t 1 1 176762 220 0.00 2019-11-28 23:56:29 2019-11-28 23:57:06 t 1 1 176763 220 0.00 2019-11-28 23:57:05 2019-11-28 23:57:41 t 1 1 176765 562 0.00 2019-11-28 23:52:33 2019-11-29 00:00:28 t 1 1 176775 544 0.00 2019-11-29 00:13:56 2019-11-29 00:14:32 t 1 1 176777 544 0.00 2019-11-29 00:14:32 2019-11-29 00:15:14 t 1 1 176779 562 0.00 2019-11-29 00:14:14 2019-11-29 00:16:15 t 1 1 176782 544 0.00 2019-11-29 00:16:29 2019-11-29 00:17:06 t 1 1 176783 679 0.00 2019-11-29 00:15:24 2019-11-29 00:17:39 t 1 1 176786 660 0.00 2019-11-29 00:18:11 2019-11-29 00:18:12 t 1 1 176790 562 0.00 2019-11-29 00:22:17 2019-11-29 00:22:51 t 1 1 176791 562 0.00 2019-11-29 00:24:35 2019-11-29 00:25:37 t 1 1 176796 449 0.00 2019-11-29 00:29:27 2019-11-29 00:34:49 t 1 1 176805 645 0.00 2019-11-29 00:41:05 2019-11-29 00:51:31 t 1 1 176807 627 0.00 2019-11-29 00:52:23 2019-11-29 00:53:40 t 1 1 176810 645 0.00 2019-11-29 00:55:13 2019-11-29 00:57:46 t 1 1 176815 551 0.00 2019-11-28 23:51:09 2019-11-29 01:03:28 t 1 1 176816 645 0.00 2019-11-29 00:57:42 2019-11-29 01:04:57 t 1 1 176820 627 0.00 2019-11-29 01:10:37 2019-11-29 01:10:59 t 1 1 176825 627 0.00 2019-11-29 01:12:32 2019-11-29 01:13:06 t 1 1 176826 645 0.00 2019-11-29 01:11:07 2019-11-29 01:15:27 t 1 1 176828 544 0.00 2019-11-29 01:13:36 2019-11-29 01:20:37 t 1 1 176829 627 0.00 2019-11-29 01:21:34 2019-11-29 01:21:47 t 1 1 176836 564 0.00 2019-11-28 22:50:13 2019-11-29 01:31:32 t 1 1 176837 574 0.00 2019-11-29 01:28:28 2019-11-29 01:32:54 t 1 1 176846 562 0.00 2019-11-29 02:13:55 2019-11-29 02:14:04 t 1 1 176851 562 0.00 2019-11-29 02:24:23 2019-11-29 02:24:55 t 1 1 176852 679 0.00 2019-11-29 02:27:18 2019-11-29 02:30:12 t 1 1 176858 544 0.00 2019-11-29 02:45:26 2019-11-29 03:00:21 t 1 1 176862 562 0.00 2019-11-29 03:07:31 2019-11-29 03:07:56 t 1 1 176863 544 0.00 2019-11-29 03:10:29 2019-11-29 03:10:32 t 1 1 176864 422 0.00 2019-11-29 03:16:19 2019-11-29 03:16:38 t 1 1 176870 422 0.00 2019-11-29 03:28:31 2019-11-29 03:28:38 t 1 1 176873 679 0.00 2019-11-29 03:24:16 2019-11-29 03:30:39 t 1 1 176876 679 0.00 2019-11-29 03:31:02 2019-11-29 03:31:55 t 1 1 176879 516 0.00 2019-11-29 03:35:40 2019-11-29 03:39:20 t 1 1 176616 544 0.00 2019-11-28 22:48:26 2019-11-28 22:49:04 t 1 1 176623 562 0.00 2019-11-28 22:49:02 2019-11-28 22:50:42 t 1 1 176631 220 0.00 2019-11-28 22:51:31 2019-11-28 22:52:55 t 1 1 176638 220 0.00 2019-11-28 22:55:00 2019-11-28 22:55:42 t 1 1 176640 544 0.00 2019-11-28 22:57:29 2019-11-28 22:58:07 t 1 1 176645 611 0.00 2019-11-28 22:50:33 2019-11-28 22:59:25 t 1 1 176647 578 0.00 2019-11-28 22:35:57 2019-11-28 22:59:41 t 1 1 176650 220 0.00 2019-11-28 22:59:22 2019-11-28 22:59:59 t 1 1 176652 544 0.00 2019-11-28 22:59:34 2019-11-28 23:00:07 t 1 1 176653 544 0.00 2019-11-28 23:00:07 2019-11-28 23:00:48 t 1 1 176656 544 0.00 2019-11-28 23:00:44 2019-11-28 23:01:26 t 1 1 176658 544 0.00 2019-11-28 23:01:26 2019-11-28 23:02:16 t 1 1 176664 544 0.00 2019-11-28 23:08:01 2019-11-28 23:08:40 t 1 1 176668 544 0.00 2019-11-28 23:09:53 2019-11-28 23:10:30 t 1 1 176671 544 0.00 2019-11-28 23:11:10 2019-11-28 23:11:45 t 1 1 176673 625 0.00 2019-11-28 22:18:02 2019-11-28 23:12:11 t 1 1 176679 220 0.00 2019-11-28 23:00:37 2019-11-28 23:15:21 t 1 1 176681 544 0.00 2019-11-28 23:14:42 2019-11-28 23:15:30 t 1 1 176684 562 0.00 2019-11-28 23:12:48 2019-11-28 23:16:36 t 1 1 176686 512 0.00 2019-11-28 22:44:54 2019-11-28 23:17:05 t 1 1 176687 544 0.00 2019-11-28 23:16:51 2019-11-28 23:17:28 t 1 1 176688 544 0.00 2019-11-28 23:17:28 2019-11-28 23:18:02 t 1 1 176690 544 0.00 2019-11-28 23:18:02 2019-11-28 23:18:21 t 1 1 176691 544 0.00 2019-11-28 23:18:30 2019-11-28 23:18:41 t 1 1 176695 562 0.00 2019-11-28 23:19:02 2019-11-28 23:19:56 t 1 1 176698 483 0.00 2019-11-28 23:14:07 2019-11-28 23:21:02 t 1 1 176700 544 0.00 2019-11-28 23:21:32 2019-11-28 23:21:58 t 1 1 176703 639 0.00 2019-11-28 22:39:12 2019-11-28 23:24:46 t 1 1 176707 544 0.00 2019-11-28 23:24:57 2019-11-28 23:25:38 t 1 1 176712 544 0.00 2019-11-28 23:27:23 2019-11-28 23:27:26 t 1 1 176713 544 0.00 2019-11-28 23:28:05 2019-11-28 23:28:07 t 1 1 176714 639 0.00 2019-11-28 23:26:20 2019-11-28 23:28:35 t 1 1 176718 639 0.00 2019-11-28 23:28:29 2019-11-28 23:30:35 t 1 1 176721 562 0.00 2019-11-28 23:30:02 2019-11-28 23:31:35 t 1 1 176724 639 0.00 2019-11-28 23:33:19 2019-11-28 23:33:21 t 1 1 176727 639 0.00 2019-11-28 23:34:26 2019-11-28 23:35:34 t 1 1 176735 639 0.00 2019-11-28 23:38:13 2019-11-28 23:39:46 t 1 1 176738 562 0.00 2019-11-28 23:43:02 2019-11-28 23:44:29 t 1 1 176740 520 0.00 2019-11-28 23:37:27 2019-11-28 23:46:40 t 1 1 176742 545 0.00 2019-11-28 23:19:26 2019-11-28 23:47:56 t 1 1 176748 562 0.00 2019-11-28 23:50:15 2019-11-28 23:51:17 t 1 1 176749 220 0.00 2019-11-28 23:51:12 2019-11-28 23:51:58 t 1 1 176750 544 0.00 2019-11-28 23:49:39 2019-11-28 23:52:23 t 1 1 176751 220 0.00 2019-11-28 23:51:55 2019-11-28 23:52:33 t 1 1 176755 670 0.00 2019-11-28 21:27:43 2019-11-28 23:53:54 t 1 1 176756 220 0.00 2019-11-28 23:53:11 2019-11-28 23:54:03 t 1 1 176757 445 0.00 2019-11-28 23:33:38 2019-11-28 23:55:02 t 1 1 176758 220 0.00 2019-11-28 23:54:03 2019-11-28 23:55:18 t 1 1 176760 220 0.00 2019-11-28 23:55:18 2019-11-28 23:55:54 t 1 1 176761 220 0.00 2019-11-28 23:55:54 2019-11-28 23:56:29 t 1 1 176768 679 0.00 2019-11-28 23:58:34 2019-11-29 00:04:35 t 1 1 176770 578 0.00 2019-11-28 22:59:41 2019-11-29 00:07:36 t 1 1 176771 665 0.00 2019-11-28 23:53:40 2019-11-29 00:09:20 t 1 1 176772 562 0.00 2019-11-29 00:09:48 2019-11-29 00:12:14 t 1 1 176773 665 0.00 2019-11-29 00:09:20 2019-11-29 00:13:20 t 1 1 176774 544 0.00 2019-11-28 23:53:51 2019-11-29 00:13:58 t 1 1 176776 622 0.00 2019-11-28 22:59:44 2019-11-29 00:15:02 t 1 1 176781 544 0.00 2019-11-29 00:15:51 2019-11-29 00:16:29 t 1 1 176784 660 0.00 2019-11-28 23:55:26 2019-11-29 00:18:11 t 1 1 176785 562 0.00 2019-11-29 00:17:33 2019-11-29 00:18:11 t 1 1 176792 562 0.00 2019-11-29 00:27:51 2019-11-29 00:28:35 t 1 1 176793 660 0.00 2019-11-29 00:20:21 2019-11-29 00:29:31 t 1 1 176794 220 0.00 2019-11-28 23:57:41 2019-11-29 00:31:06 t 1 1 176797 625 0.00 2019-11-28 23:12:11 2019-11-29 00:35:13 t 1 1 176799 622 0.00 2019-11-29 00:37:26 2019-11-29 00:39:17 t 1 1 176801 544 0.00 2019-11-29 00:17:06 2019-11-29 00:48:34 t 1 1 176803 627 0.00 2019-11-29 00:48:08 2019-11-29 00:51:11 t 1 1 176804 627 0.00 2019-11-29 00:51:17 2019-11-29 00:51:26 t 1 1 176806 562 0.00 2019-11-29 00:34:46 2019-11-29 00:53:32 t 1 1 176809 645 0.00 2019-11-29 00:51:31 2019-11-29 00:55:13 t 1 1 176812 599 0.00 2019-11-29 00:58:32 2019-11-29 00:58:32 f 1 1 176813 544 0.00 2019-11-29 00:58:10 2019-11-29 01:00:01 t 1 1 176814 544 0.00 2019-11-29 01:00:00 2019-11-29 01:00:24 t 1 1 176818 627 0.00 2019-11-29 00:54:05 2019-11-29 01:08:28 t 1 1 176819 627 0.00 2019-11-29 01:08:34 2019-11-29 01:10:09 t 1 1 176821 645 0.00 2019-11-29 01:04:57 2019-11-29 01:11:07 t 1 1 176822 627 0.00 2019-11-29 01:11:19 2019-11-29 01:11:35 t 1 1 176823 627 0.00 2019-11-29 01:11:55 2019-11-29 01:11:59 t 1 1 176824 562 0.00 2019-11-29 01:11:46 2019-11-29 01:12:42 t 1 1 176827 562 0.00 2019-11-29 01:20:04 2019-11-29 01:20:23 t 1 1 176830 627 0.00 2019-11-29 01:21:53 2019-11-29 01:22:06 t 1 1 176832 551 0.00 2019-11-29 01:03:28 2019-11-29 01:28:16 t 1 1 176834 627 0.00 2019-11-29 01:30:25 2019-11-29 01:30:30 t 1 1 176838 645 0.00 2019-11-29 01:23:04 2019-11-29 01:35:23 t 1 1 176839 562 0.00 2019-11-29 01:41:42 2019-11-29 01:41:47 t 1 1 176841 679 0.00 2019-11-29 01:43:07 2019-11-29 01:43:37 t 1 1 176843 562 0.00 2019-11-29 01:52:21 2019-11-29 01:52:34 t 1 1 176845 562 0.00 2019-11-29 02:03:06 2019-11-29 02:03:16 t 1 1 176854 544 0.00 2019-11-29 02:26:37 2019-11-29 02:45:26 t 1 1 176856 679 0.00 2019-11-29 02:46:09 2019-11-29 02:46:32 t 1 1 176865 422 0.00 2019-11-29 03:16:45 2019-11-29 03:16:51 t 1 1 176869 422 0.00 2019-11-29 03:24:13 2019-11-29 03:24:25 t 1 1 176874 679 0.00 2019-11-29 03:30:38 2019-11-29 03:31:03 t 1 1 176875 422 0.00 2019-11-29 03:31:23 2019-11-29 03:31:24 t 1 1 176880 516 0.00 2019-11-29 03:39:28 2019-11-29 03:39:48 t 1 1 176881 562 0.00 2019-11-29 03:40:06 2019-11-29 03:40:15 t 1 1 176882 422 0.00 2019-11-29 03:40:06 2019-11-29 03:40:34 t 1 1 176884 422 0.00 2019-11-29 03:43:05 2019-11-29 03:43:09 t 1 1 176886 422 0.00 2019-11-29 03:49:33 2019-11-29 03:50:06 t 1 1 176888 551 0.00 2019-11-29 01:47:01 2019-11-29 03:52:10 t 1 1 176891 422 0.00 2019-11-29 04:00:20 2019-11-29 04:00:27 t 1 1 176892 562 0.00 2019-11-29 04:01:30 2019-11-29 04:01:51 t 1 1 176898 562 0.00 2019-11-29 04:20:06 2019-11-29 04:20:16 t 1 1 176901 514 0.00 2019-11-29 04:10:39 2019-11-29 04:28:01 t 1 1 176904 611 0.00 2019-11-29 04:29:14 2019-11-29 04:32:04 t 1 1 176906 551 0.00 2019-11-29 04:29:17 2019-11-29 04:34:46 t 1 1 176908 445 0.00 2019-11-29 04:24:05 2019-11-29 04:41:10 t 1 1 176651 220 0.00 2019-11-28 22:59:59 2019-11-28 23:00:00 t 1 1 176654 514 0.00 2019-11-28 23:00:11 2019-11-28 23:01:13 t 1 1 176657 591 0.00 2019-11-28 23:01:26 2019-11-28 23:02:05 t 1 1 176663 544 0.00 2019-11-28 23:02:15 2019-11-28 23:08:01 t 1 1 176666 544 0.00 2019-11-28 23:09:15 2019-11-28 23:09:53 t 1 1 176670 562 0.00 2019-11-28 23:08:29 2019-11-28 23:11:29 t 1 1 176674 544 0.00 2019-11-28 23:12:04 2019-11-28 23:12:22 t 1 1 176677 544 0.00 2019-11-28 23:13:33 2019-11-28 23:14:04 t 1 1 176680 220 0.00 2019-11-28 23:15:21 2019-11-28 23:15:26 t 1 1 176683 611 0.00 2019-11-28 23:09:53 2019-11-28 23:16:17 t 1 1 176689 673 0.00 2019-11-28 23:18:00 2019-11-28 23:18:09 t 1 1 176693 544 0.00 2019-11-28 23:18:40 2019-11-28 23:19:17 t 1 1 176696 544 0.00 2019-11-28 23:19:55 2019-11-28 23:20:28 t 1 1 176701 551 0.00 2019-11-28 22:22:10 2019-11-28 23:22:54 t 1 1 176702 562 0.00 2019-11-28 23:22:30 2019-11-28 23:23:54 t 1 1 176705 645 0.00 2019-11-28 23:12:24 2019-11-28 23:25:14 t 1 1 176706 679 0.00 2019-11-28 23:21:24 2019-11-28 23:25:25 t 1 1 176709 544 0.00 2019-11-28 23:25:35 2019-11-28 23:26:13 t 1 1 176717 544 0.00 2019-11-28 23:29:21 2019-11-28 23:29:57 t 1 1 176720 544 0.00 2019-11-28 23:30:36 2019-11-28 23:31:11 t 1 1 176725 562 0.00 2019-11-28 23:32:58 2019-11-28 23:33:27 t 1 1 176729 645 0.00 2019-11-28 23:25:14 2019-11-28 23:37:04 t 1 1 176730 639 0.00 2019-11-28 23:37:16 2019-11-28 23:37:26 t 1 1 176731 639 0.00 2019-11-28 23:38:01 2019-11-28 23:38:03 t 1 1 176733 639 0.00 2019-11-28 23:38:13 2019-11-28 23:38:13 t 1 1 176734 639 0.00 2019-11-28 23:36:45 2019-11-28 23:38:35 t 1 1 176739 611 0.00 2019-11-28 23:34:47 2019-11-28 23:46:01 t 1 1 176741 562 0.00 2019-11-28 23:45:14 2019-11-28 23:47:05 t 1 1 176743 220 0.00 2019-11-28 23:16:09 2019-11-28 23:48:46 t 1 1 176745 220 0.00 2019-11-28 23:48:46 2019-11-28 23:50:37 t 1 1 176753 220 0.00 2019-11-28 23:52:33 2019-11-28 23:53:12 t 1 1 176759 545 0.00 2019-11-28 23:47:56 2019-11-28 23:55:47 t 1 1 176764 679 0.00 2019-11-28 23:58:16 2019-11-28 23:58:34 t 1 1 176766 562 0.00 2019-11-29 00:01:16 2019-11-29 00:01:29 t 1 1 176767 545 0.00 2019-11-28 23:58:30 2019-11-29 00:03:37 t 1 1 176769 670 0.00 2019-11-28 23:53:54 2019-11-29 00:04:52 t 1 1 176778 544 0.00 2019-11-29 00:15:13 2019-11-29 00:15:51 t 1 1 176780 545 0.00 2019-11-29 00:14:25 2019-11-29 00:16:23 t 1 1 176787 660 0.00 2019-11-29 00:18:12 2019-11-29 00:19:37 t 1 1 176788 562 0.00 2019-11-29 00:20:12 2019-11-29 00:22:10 t 1 1 176789 665 0.00 2019-11-29 00:13:20 2019-11-29 00:22:44 t 1 1 176795 645 0.00 2019-11-28 23:54:48 2019-11-29 00:32:03 t 1 1 176798 449 0.00 2019-11-29 00:34:49 2019-11-29 00:36:47 t 1 1 176800 665 0.00 2019-11-29 00:22:44 2019-11-29 00:39:43 t 1 1 176802 512 0.00 2019-11-29 00:40:50 2019-11-29 00:51:08 t 1 1 176808 625 0.00 2019-11-29 00:35:13 2019-11-29 00:53:43 t 1 1 176811 544 0.00 2019-11-29 00:48:47 2019-11-29 00:58:06 t 1 1 176817 562 0.00 2019-11-29 00:54:10 2019-11-29 01:05:46 t 1 1 176831 627 0.00 2019-11-29 01:22:26 2019-11-29 01:27:50 t 1 1 176833 627 0.00 2019-11-29 01:27:50 2019-11-29 01:30:26 t 1 1 176835 562 0.00 2019-11-29 01:30:47 2019-11-29 01:31:07 t 1 1 176840 551 0.00 2019-11-29 01:28:16 2019-11-29 01:42:31 t 1 1 176842 551 0.00 2019-11-29 01:42:31 2019-11-29 01:47:01 t 1 1 176844 665 0.00 2019-11-29 00:39:43 2019-11-29 02:00:34 t 1 1 176847 564 0.00 2019-11-29 01:31:32 2019-11-29 02:16:04 t 1 1 176848 544 0.00 2019-11-29 02:06:18 2019-11-29 02:16:46 t 1 1 176849 564 0.00 2019-11-29 02:16:04 2019-11-29 02:20:23 t 1 1 176850 544 0.00 2019-11-29 02:21:10 2019-11-29 02:24:20 t 1 1 176853 562 0.00 2019-11-29 02:35:19 2019-11-29 02:35:38 t 1 1 176855 562 0.00 2019-11-29 02:46:15 2019-11-29 02:46:26 t 1 1 176857 562 0.00 2019-11-29 02:56:48 2019-11-29 02:57:13 t 1 1 176859 422 0.00 2019-11-29 02:59:49 2019-11-29 03:00:21 t 1 1 176860 544 0.00 2019-11-29 03:00:38 2019-11-29 03:04:47 t 1 1 176861 422 0.00 2019-11-29 03:07:21 2019-11-29 03:07:30 t 1 1 176866 422 0.00 2019-11-29 03:16:57 2019-11-29 03:17:17 t 1 1 176867 422 0.00 2019-11-29 03:17:56 2019-11-29 03:18:04 t 1 1 176868 562 0.00 2019-11-29 03:18:32 2019-11-29 03:18:41 t 1 1 176871 562 0.00 2019-11-29 03:29:19 2019-11-29 03:29:28 t 1 1 176872 422 0.00 2019-11-29 03:28:45 2019-11-29 03:30:21 t 1 1 176877 516 0.00 2019-11-29 03:34:19 2019-11-29 03:35:22 t 1 1 176878 422 0.00 2019-11-29 03:39:08 2019-11-29 03:39:17 t 1 1 176885 516 0.00 2019-11-29 03:46:58 2019-11-29 03:48:03 t 1 1 176889 514 0.00 2019-11-29 02:57:53 2019-11-29 03:54:35 t 1 1 176893 422 0.00 2019-11-29 04:09:01 2019-11-29 04:09:08 t 1 1 176894 562 0.00 2019-11-29 04:09:19 2019-11-29 04:09:29 t 1 1 176895 514 0.00 2019-11-29 03:54:35 2019-11-29 04:10:39 t 1 1 176896 422 0.00 2019-11-29 04:10:55 2019-11-29 04:11:03 t 1 1 176897 445 0.00 2019-11-28 23:55:02 2019-11-29 04:12:58 t 1 1 176902 551 0.00 2019-11-29 03:52:10 2019-11-29 04:29:17 t 1 1 176903 562 0.00 2019-11-29 04:30:52 2019-11-29 04:31:01 t 1 1 176907 551 0.00 2019-11-29 04:34:47 2019-11-29 04:40:31 t 1 1 176909 562 0.00 2019-11-29 04:41:40 2019-11-29 04:41:49 t 1 1 176911 562 0.00 2019-11-29 04:52:12 2019-11-29 04:52:32 t 1 1 176912 422 0.00 2019-11-29 04:53:10 2019-11-29 04:53:31 t 1 1 176914 551 0.00 2019-11-29 04:49:02 2019-11-29 05:01:02 t 1 1 176915 562 0.00 2019-11-29 05:02:56 2019-11-29 05:03:40 t 1 1 176920 422 0.00 2019-11-29 05:17:07 2019-11-29 05:17:19 t 1 1 176921 551 0.00 2019-11-29 05:08:49 2019-11-29 05:18:04 t 1 1 176923 675 0.00 2019-11-29 05:06:08 2019-11-29 05:23:03 t 1 1 176925 422 0.00 2019-11-29 05:25:08 2019-11-29 05:25:15 t 1 1 176926 422 0.00 2019-11-29 05:35:44 2019-11-29 05:35:53 t 1 1 176927 551 0.00 2019-11-29 05:18:04 2019-11-29 05:35:55 t 1 1 176928 562 0.00 2019-11-29 05:35:41 2019-11-29 05:39:39 t 1 1 176930 422 0.00 2019-11-29 05:46:09 2019-11-29 05:46:28 t 1 1 176931 675 0.00 2019-11-29 05:42:32 2019-11-29 05:47:19 t 1 1 176934 562 0.00 2019-11-29 05:54:22 2019-11-29 05:54:54 t 1 1 176935 562 0.00 2019-11-29 05:56:16 2019-11-29 05:56:38 t 1 1 176937 562 0.00 2019-11-29 06:01:44 2019-11-29 06:01:52 t 1 1 176940 562 0.00 2019-11-29 06:05:25 2019-11-29 06:05:51 t 1 1 176942 562 0.00 2019-11-29 06:06:37 2019-11-29 06:10:08 t 1 1 176944 422 0.00 2019-11-29 06:17:58 2019-11-29 06:18:13 t 1 1 176945 675 0.00 2019-11-29 06:07:45 2019-11-29 06:19:57 t 1 1 176946 562 0.00 2019-11-29 06:10:44 2019-11-29 06:25:30 t 1 1 176948 422 0.00 2019-11-29 06:33:43 2019-11-29 06:33:53 t 1 1 176949 520 0.00 2019-11-29 06:28:37 2019-11-29 06:38:29 t 1 1 176950 422 0.00 2019-11-29 06:39:10 2019-11-29 06:39:33 t 1 1 176951 675 0.00 2019-11-29 06:38:21 2019-11-29 06:41:27 t 1 1 176883 562 0.00 2019-11-29 03:42:39 2019-11-29 03:42:49 t 1 1 176887 562 0.00 2019-11-29 03:50:52 2019-11-29 03:51:03 t 1 1 176890 422 0.00 2019-11-29 03:58:26 2019-11-29 03:58:40 t 1 1 176899 422 0.00 2019-11-29 04:21:31 2019-11-29 04:21:39 t 1 1 176900 445 0.00 2019-11-29 04:12:58 2019-11-29 04:24:05 t 1 1 176905 422 0.00 2019-11-29 04:32:08 2019-11-29 04:32:14 t 1 1 176910 551 0.00 2019-11-29 04:40:31 2019-11-29 04:49:02 t 1 1 176913 675 0.00 2019-11-29 04:42:47 2019-11-29 05:00:58 t 1 1 176916 422 0.00 2019-11-29 05:03:55 2019-11-29 05:04:04 t 1 1 176917 551 0.00 2019-11-29 05:01:02 2019-11-29 05:08:48 t 1 1 176918 562 0.00 2019-11-29 05:14:10 2019-11-29 05:14:19 t 1 1 176919 422 0.00 2019-11-29 05:14:21 2019-11-29 05:14:38 t 1 1 176922 562 0.00 2019-11-29 05:19:14 2019-11-29 05:20:15 t 1 1 176924 562 0.00 2019-11-29 05:24:56 2019-11-29 05:25:07 t 1 1 176929 562 0.00 2019-11-29 05:41:57 2019-11-29 05:42:34 t 1 1 176932 562 0.00 2019-11-29 05:48:44 2019-11-29 05:49:06 t 1 1 176933 562 0.00 2019-11-29 05:49:22 2019-11-29 05:50:00 t 1 1 176936 422 0.00 2019-11-29 05:56:56 2019-11-29 05:57:05 t 1 1 176938 514 0.00 2019-11-29 04:28:02 2019-11-29 06:03:19 t 1 1 176939 422 0.00 2019-11-29 06:04:49 2019-11-29 06:05:06 t 1 1 176941 422 0.00 2019-11-29 06:07:32 2019-11-29 06:07:40 t 1 1 176943 520 0.00 2019-11-29 05:04:13 2019-11-29 06:15:51 t 1 1 176947 422 0.00 2019-11-29 06:28:44 2019-11-29 06:28:51 t 1 1 176952 562 0.00 2019-11-29 06:26:15 2019-11-29 06:42:53 t 1 1 176953 562 0.00 2019-11-29 06:43:23 2019-11-29 06:43:45 t 1 1 176954 485 0.00 2019-11-29 06:25:30 2019-11-29 06:43:47 t 1 1 176955 562 0.00 2019-11-29 06:46:39 2019-11-29 06:47:29 t 1 1 176956 562 0.00 2019-11-29 06:48:33 2019-11-29 06:48:43 t 1 1 176957 422 0.00 2019-11-29 06:49:52 2019-11-29 06:50:18 t 1 1 176958 551 0.00 2019-11-29 05:35:55 2019-11-29 06:54:02 t 1 1 176959 562 0.00 2019-11-29 06:58:49 2019-11-29 06:59:21 t 1 1 176960 422 0.00 2019-11-29 07:00:44 2019-11-29 07:00:57 t 1 1 176961 422 0.00 2019-11-29 07:01:03 2019-11-29 07:01:20 t 1 1 176962 422 0.00 2019-11-29 07:11:28 2019-11-29 07:11:51 t 1 1 176963 485 0.00 2019-11-29 07:02:04 2019-11-29 07:12:22 t 1 1 176964 516 0.00 2019-11-29 07:06:04 2019-11-29 07:15:48 t 1 1 176965 485 0.00 2019-11-29 07:12:22 2019-11-29 07:17:06 t 1 1 176966 551 0.00 2019-11-29 06:54:02 2019-11-29 07:20:21 t 1 1 176967 562 0.00 2019-11-29 07:08:32 2019-11-29 07:20:35 t 1 1 176968 562 0.00 2019-11-29 07:20:34 2019-11-29 07:21:35 t 1 1 176969 422 0.00 2019-11-29 07:22:21 2019-11-29 07:22:33 t 1 1 176970 485 0.00 2019-11-29 07:17:06 2019-11-29 07:24:51 t 1 1 176971 637 0.00 2019-11-29 07:21:45 2019-11-29 07:26:14 t 1 1 176972 551 0.00 2019-11-29 07:20:21 2019-11-29 07:30:51 t 1 1 176973 485 0.00 2019-11-29 07:24:51 2019-11-29 07:35:46 t 1 1 176974 637 0.00 2019-11-29 07:26:14 2019-11-29 07:35:59 t 1 1 176975 485 0.00 2019-11-29 07:35:46 2019-11-29 07:45:51 t 1 1 176976 611 0.00 2019-11-29 07:45:56 2019-11-29 07:50:23 t 1 1 176977 485 0.00 2019-11-29 07:45:51 2019-11-29 07:55:58 t 1 1 176978 611 0.00 2019-11-29 07:50:23 2019-11-29 07:58:52 t 1 1 176979 485 0.00 2019-11-29 07:55:58 2019-11-29 08:05:22 t 1 1 176980 611 0.00 2019-11-29 08:08:57 2019-11-29 08:11:44 t 1 1 176981 485 0.00 2019-11-29 08:05:22 2019-11-29 08:13:27 t 1 1 176982 681 0.00 2019-11-28 20:32:09 2019-11-29 08:19:22 t 1 1 176983 422 0.00 2019-11-29 07:32:52 2019-11-29 08:19:45 t 1 1 176984 654 0.00 2019-11-29 08:12:53 2019-11-29 08:22:49 t 1 1 176985 485 0.00 2019-11-29 08:13:27 2019-11-29 08:22:55 t 1 1 176986 445 0.00 2019-11-29 04:41:10 2019-11-29 08:24:03 t 1 1 176987 422 0.00 2019-11-29 08:25:23 2019-11-29 08:25:42 t 1 1 176988 485 0.00 2019-11-29 08:22:55 2019-11-29 08:26:29 t 1 1 176989 675 0.00 2019-11-29 08:29:02 2019-11-29 08:32:57 t 1 1 176990 551 0.00 2019-11-29 07:30:51 2019-11-29 08:36:23 t 1 1 176991 654 0.00 2019-11-29 08:22:49 2019-11-29 08:42:52 t 1 1 176992 422 0.00 2019-11-29 08:34:08 2019-11-29 08:47:23 t 1 1 176993 551 0.00 2019-11-29 08:52:26 2019-11-29 08:52:26 f 1 1 176994 654 0.00 2019-11-29 08:42:52 2019-11-29 08:52:30 t 1 1 176995 551 0.00 2019-11-29 08:36:23 2019-11-29 08:52:42 t 1 1 176996 551 0.00 2019-11-29 08:52:56 2019-11-29 08:52:56 f 1 1 176997 566 0.00 2019-11-29 08:41:02 2019-11-29 08:53:35 t 1 1 176998 551 0.00 2019-11-29 08:52:20 2019-11-29 08:53:43 t 1 1 176999 551 0.00 2019-11-29 08:52:47 2019-11-29 08:53:52 t 1 1 177000 578 0.00 2019-11-29 06:11:28 2019-11-29 08:54:22 t 1 1 177001 551 0.00 2019-11-29 08:54:23 2019-11-29 08:54:23 f 1 1 177002 551 0.00 2019-11-29 08:53:53 2019-11-29 08:54:55 t 1 1 177003 611 0.00 2019-11-29 08:48:02 2019-11-29 08:55:25 t 1 1 177004 551 0.00 2019-11-29 08:54:01 2019-11-29 08:55:43 t 1 1 177005 520 0.00 2019-11-29 08:43:01 2019-11-29 08:56:42 t 1 1 177006 654 0.00 2019-11-29 08:52:30 2019-11-29 09:00:58 t 1 1 177007 416 0.00 2019-11-29 09:00:58 2019-11-29 09:00:58 f 1 1 177008 416 0.00 2019-11-28 23:08:06 2019-11-29 09:01:47 t 1 1 177009 675 0.00 2019-11-29 08:50:06 2019-11-29 09:07:54 t 1 1 177010 637 0.00 2019-11-29 07:35:59 2019-11-29 09:08:09 t 1 1 177011 675 0.00 2019-11-29 09:07:54 2019-11-29 09:09:29 t 1 1 177012 220 0.00 2019-11-29 08:36:50 2019-11-29 09:10:41 t 1 1 177013 654 0.00 2019-11-29 09:00:58 2019-11-29 09:12:38 t 1 1 177014 637 0.00 2019-11-29 09:08:09 2019-11-29 09:15:08 t 1 1 177015 545 0.00 2019-11-29 09:07:41 2019-11-29 09:16:22 t 1 1 177016 637 0.00 2019-11-29 09:15:08 2019-11-29 09:18:15 t 1 1 177017 520 0.00 2019-11-29 08:56:41 2019-11-29 09:18:34 t 1 1 177018 654 0.00 2019-11-29 09:12:38 2019-11-29 09:19:40 t 1 1 177019 445 0.00 2019-11-29 08:24:03 2019-11-29 09:22:01 t 1 1 177020 637 0.00 2019-11-29 09:18:15 2019-11-29 09:23:33 t 1 1 177021 611 0.00 2019-11-29 09:12:15 2019-11-29 09:23:51 t 1 1 177022 578 0.00 2019-11-29 08:54:21 2019-11-29 09:24:01 t 1 1 177023 611 0.00 2019-11-29 09:23:51 2019-11-29 09:24:13 t 1 1 177024 520 0.00 2019-11-29 09:18:33 2019-11-29 09:25:54 t 1 1 177025 422 0.00 2019-11-29 08:48:16 2019-11-29 09:27:23 t 1 1 177026 654 0.00 2019-11-29 09:19:40 2019-11-29 09:27:42 t 1 1 177027 611 0.00 2019-11-29 09:24:13 2019-11-29 09:27:53 t 1 1 177028 520 0.00 2019-11-29 09:25:54 2019-11-29 09:29:00 t 1 1 177029 654 0.00 2019-11-29 09:27:42 2019-11-29 09:29:58 t 1 1 177030 611 0.00 2019-11-29 09:27:53 2019-11-29 09:31:32 t 1 1 177031 637 0.00 2019-11-29 09:23:34 2019-11-29 09:31:50 t 1 1 177032 520 0.00 2019-11-29 09:28:59 2019-11-29 09:33:39 t 1 1 177033 520 0.00 2019-11-29 09:33:39 2019-11-29 09:37:34 t 1 1 177034 679 0.00 2019-11-29 09:38:04 2019-11-29 09:38:35 t 1 1 177035 681 0.00 2019-11-29 08:19:22 2019-11-29 09:38:42 t 1 1 177036 637 0.00 2019-11-29 09:31:50 2019-11-29 09:39:23 t 1 1 177039 481 0.00 2019-11-29 09:19:25 2019-11-29 09:41:23 t 1 1 177041 578 0.00 2019-11-29 09:24:01 2019-11-29 09:41:38 t 1 1 177046 220 0.00 2019-11-29 09:45:23 2019-11-29 09:46:01 t 1 1 177048 220 0.00 2019-11-29 09:46:36 2019-11-29 09:47:14 t 1 1 177051 520 0.00 2019-11-29 09:42:24 2019-11-29 09:49:26 t 1 1 177056 627 0.00 2019-11-29 09:40:19 2019-11-29 09:56:41 t 1 1 177062 656 0.00 2019-11-29 09:56:59 2019-11-29 10:00:40 t 1 1 177065 422 0.00 2019-11-29 09:55:44 2019-11-29 10:03:18 t 1 1 177068 520 0.00 2019-11-29 09:55:11 2019-11-29 10:06:07 t 1 1 177074 422 0.00 2019-11-29 10:10:22 2019-11-29 10:11:44 t 1 1 177077 591 0.00 2019-11-29 10:09:18 2019-11-29 10:15:27 t 1 1 177081 622 0.00 2019-11-29 09:49:23 2019-11-29 10:17:24 t 1 1 177083 528 0.00 2019-11-29 10:12:45 2019-11-29 10:19:26 t 1 1 177086 639 0.00 2019-11-29 10:23:46 2019-11-29 10:24:10 t 1 1 177087 622 0.00 2019-11-29 10:17:24 2019-11-29 10:27:25 t 1 1 177088 395 0.00 2019-11-29 10:27:51 2019-11-29 10:27:51 f 1 2 177089 485 0.00 2019-11-29 10:26:46 2019-11-29 10:29:03 t 1 1 177090 627 0.00 2019-11-29 10:29:07 2019-11-29 10:29:28 t 1 1 177093 611 0.00 2019-11-29 09:58:06 2019-11-29 10:30:45 t 1 1 177095 422 0.00 2019-11-29 10:30:54 2019-11-29 10:31:07 t 1 1 177106 675 0.00 2019-11-29 10:24:49 2019-11-29 10:37:27 t 1 1 177108 639 0.00 2019-11-29 10:37:22 2019-11-29 10:37:37 t 1 1 177109 637 0.00 2019-11-29 10:02:04 2019-11-29 10:38:50 t 1 1 177110 422 0.00 2019-11-29 10:39:15 2019-11-29 10:39:51 t 1 1 177112 514 0.00 2019-11-29 06:03:18 2019-11-29 10:41:12 t 1 1 177113 422 0.00 2019-11-29 10:41:06 2019-11-29 10:41:34 t 1 1 177114 627 0.00 2019-11-29 10:41:29 2019-11-29 10:41:53 t 1 1 177119 581 0.00 2019-11-29 10:45:05 2019-11-29 10:45:05 f 1 1 177123 627 0.00 2019-11-29 10:49:04 2019-11-29 10:49:15 t 1 1 177127 637 0.00 2019-11-29 10:41:36 2019-11-29 10:53:12 t 1 1 177134 627 0.00 2019-11-29 10:57:50 2019-11-29 10:58:15 t 1 1 177135 508 0.00 2019-11-29 10:57:36 2019-11-29 10:59:44 t 1 1 177136 645 0.00 2019-11-29 11:01:01 2019-11-29 11:03:25 t 1 1 177139 656 0.00 2019-11-29 11:11:48 2019-11-29 11:13:27 t 1 1 177143 528 0.00 2019-11-29 11:17:02 2019-11-29 11:18:36 t 1 1 177148 528 0.00 2019-11-29 11:22:51 2019-11-29 11:23:02 t 1 1 177153 528 0.00 2019-11-29 11:29:37 2019-11-29 11:29:53 t 1 1 177154 451 0.00 2019-11-29 11:21:28 2019-11-29 11:30:39 t 1 1 177159 528 0.00 2019-11-29 11:33:26 2019-11-29 11:33:43 t 1 1 177160 528 0.00 2019-11-29 11:34:21 2019-11-29 11:34:45 t 1 1 177162 591 0.00 2019-11-29 10:48:45 2019-11-29 11:35:03 t 1 1 177167 611 0.00 2019-11-29 11:36:45 2019-11-29 11:41:28 t 1 1 177171 528 0.00 2019-11-29 11:45:11 2019-11-29 11:45:37 t 1 1 177178 611 0.00 2019-11-29 11:49:55 2019-11-29 11:51:07 t 1 1 177182 445 0.00 2019-11-29 11:40:09 2019-11-29 11:55:08 t 1 1 177187 615 0.00 2019-11-29 11:55:19 2019-11-29 12:05:23 t 1 1 177193 675 0.00 2019-11-29 12:04:37 2019-11-29 12:15:09 t 1 1 177198 445 0.00 2019-11-29 11:55:08 2019-11-29 12:17:51 t 1 1 177200 220 0.00 2019-11-29 12:18:19 2019-11-29 12:18:56 t 1 1 177201 528 0.00 2019-11-29 12:20:51 2019-11-29 12:21:10 t 1 1 177202 622 0.00 2019-11-29 11:51:13 2019-11-29 12:22:41 t 1 1 177203 528 0.00 2019-11-29 12:24:29 2019-11-29 12:24:42 t 1 1 177207 528 0.00 2019-11-29 12:27:23 2019-11-29 12:27:34 t 1 1 177210 528 0.00 2019-11-29 12:30:42 2019-11-29 12:30:55 t 1 1 177215 528 0.00 2019-11-29 12:37:21 2019-11-29 12:37:59 t 1 1 177218 671 0.00 2019-11-29 12:38:44 2019-11-29 12:41:35 t 1 1 177220 611 0.00 2019-11-29 12:35:47 2019-11-29 12:43:52 t 1 1 177222 627 0.00 2019-11-29 12:30:45 2019-11-29 12:44:41 t 1 1 177226 675 0.00 2019-11-29 12:39:51 2019-11-29 12:47:00 t 1 1 177231 528 0.00 2019-11-29 12:50:23 2019-11-29 12:50:34 t 1 1 177233 528 0.00 2019-11-29 12:51:00 2019-11-29 12:51:17 t 1 1 177240 622 0.00 2019-11-29 12:31:12 2019-11-29 12:54:35 t 1 1 177241 544 0.00 2019-11-29 12:45:22 2019-11-29 12:56:32 t 1 1 177242 528 0.00 2019-11-29 12:55:35 2019-11-29 12:57:51 t 1 1 177246 627 0.00 2019-11-29 13:00:29 2019-11-29 13:08:00 t 1 1 177247 544 0.00 2019-11-29 13:05:03 2019-11-29 13:09:29 t 1 1 177252 681 0.00 2019-11-29 09:38:42 2019-11-29 13:13:13 t 1 1 177253 637 0.00 2019-11-29 12:53:54 2019-11-29 13:14:03 t 1 1 177256 591 0.00 2019-11-29 11:35:03 2019-11-29 13:16:53 t 1 1 177257 581 0.00 2019-11-29 13:19:33 2019-11-29 13:19:33 f 1 1 177260 627 0.00 2019-11-29 13:08:00 2019-11-29 13:21:20 t 1 1 177262 578 0.00 2019-11-29 13:11:55 2019-11-29 13:21:32 t 1 1 177263 544 0.00 2019-11-29 13:15:47 2019-11-29 13:22:28 t 1 1 177271 445 0.00 2019-11-29 13:24:40 2019-11-29 13:27:15 t 1 1 177273 485 0.00 2019-11-29 13:16:48 2019-11-29 13:28:49 t 1 1 177275 637 0.00 2019-11-29 13:14:58 2019-11-29 13:29:43 t 1 1 177277 485 0.00 2019-11-29 13:28:48 2019-11-29 13:31:35 t 1 1 177279 645 0.00 2019-11-29 13:32:10 2019-11-29 13:33:21 t 1 1 177280 516 0.00 2019-11-29 13:26:44 2019-11-29 13:34:06 t 1 1 177282 585 0.00 2019-11-29 13:37:43 2019-11-29 13:37:43 f 1 1 177284 451 0.00 2019-11-29 13:20:23 2019-11-29 13:38:55 t 1 1 177286 544 0.00 2019-11-29 13:28:05 2019-11-29 13:44:43 t 1 1 177289 656 0.00 2019-11-29 13:19:58 2019-11-29 13:47:31 t 1 1 177293 544 0.00 2019-11-29 13:44:43 2019-11-29 13:52:24 t 1 1 177295 551 0.00 2019-11-29 08:54:58 2019-11-29 13:55:47 t 1 1 177303 637 0.00 2019-11-29 13:44:07 2019-11-29 14:00:37 t 1 1 177306 490 0.00 2019-11-29 13:57:19 2019-11-29 14:06:36 t 1 1 177309 639 0.00 2019-11-29 14:01:22 2019-11-29 14:09:45 t 1 1 177311 490 0.00 2019-11-29 14:06:36 2019-11-29 14:12:21 t 1 1 177314 544 0.00 2019-11-29 14:19:39 2019-11-29 14:19:57 t 1 1 177317 637 0.00 2019-11-29 14:00:37 2019-11-29 14:24:05 t 1 1 177319 490 0.00 2019-11-29 14:23:56 2019-11-29 14:26:39 t 1 1 177321 639 0.00 2019-11-29 14:28:21 2019-11-29 14:32:03 t 1 1 177322 637 0.00 2019-11-29 14:24:42 2019-11-29 14:34:12 t 1 1 177323 639 0.00 2019-11-29 14:35:45 2019-11-29 14:38:34 t 1 1 177327 514 0.00 2019-11-29 14:46:34 2019-11-29 14:47:38 t 1 1 177329 611 0.00 2019-11-29 14:44:53 2019-11-29 14:49:09 t 1 1 177331 645 0.00 2019-11-29 14:40:00 2019-11-29 14:53:01 t 1 1 177335 562 0.00 2019-11-29 14:53:33 2019-11-29 14:54:15 t 1 1 177336 514 0.00 2019-11-29 14:53:36 2019-11-29 14:54:42 t 1 1 177343 637 0.00 2019-11-29 14:34:12 2019-11-29 15:03:33 t 1 1 177347 516 0.00 2019-11-29 14:43:47 2019-11-29 15:06:09 t 1 1 177348 667 0.00 2019-11-29 15:04:47 2019-11-29 15:06:46 t 1 1 177350 562 0.00 2019-11-29 15:07:25 2019-11-29 15:07:30 t 1 1 177363 481 0.00 2019-11-29 15:20:37 2019-11-29 15:27:29 t 1 1 177368 544 0.00 2019-11-29 15:34:12 2019-11-29 15:34:15 t 1 1 177037 670 0.00 2019-11-29 09:24:24 2019-11-29 09:39:42 t 1 1 177038 520 0.00 2019-11-29 09:37:34 2019-11-29 09:40:50 t 1 1 177042 520 0.00 2019-11-29 09:40:50 2019-11-29 09:42:24 t 1 1 177043 220 0.00 2019-11-29 09:13:17 2019-11-29 09:44:46 t 1 1 177045 637 0.00 2019-11-29 09:43:43 2019-11-29 09:45:28 t 1 1 177047 220 0.00 2019-11-29 09:46:01 2019-11-29 09:46:36 t 1 1 177049 485 0.00 2019-11-29 09:45:26 2019-11-29 09:47:14 t 1 1 177050 220 0.00 2019-11-29 09:47:13 2019-11-29 09:47:48 t 1 1 177053 520 0.00 2019-11-29 09:53:40 2019-11-29 09:55:08 t 1 1 177057 656 0.00 2019-11-29 09:50:15 2019-11-29 09:56:59 t 1 1 177060 611 0.00 2019-11-29 09:43:40 2019-11-29 09:58:06 t 1 1 177063 637 0.00 2019-11-29 09:59:48 2019-11-29 10:01:00 t 1 1 177066 627 0.00 2019-11-29 10:04:15 2019-11-29 10:04:26 t 1 1 177069 645 0.00 2019-11-29 10:07:08 2019-11-29 10:07:19 t 1 1 177071 627 0.00 2019-11-29 10:08:31 2019-11-29 10:08:52 t 1 1 177073 422 0.00 2019-11-29 10:10:36 2019-11-29 10:11:01 t 1 1 177079 422 0.00 2019-11-29 10:16:10 2019-11-29 10:16:18 t 1 1 177080 422 0.00 2019-11-29 10:16:51 2019-11-29 10:16:54 t 1 1 177082 627 0.00 2019-11-29 10:18:06 2019-11-29 10:18:45 t 1 1 177091 422 0.00 2019-11-29 10:28:32 2019-11-29 10:29:51 t 1 1 177098 639 0.00 2019-11-29 10:33:22 2019-11-29 10:34:05 t 1 1 177101 639 0.00 2019-11-29 10:34:24 2019-11-29 10:36:28 t 1 1 177102 639 0.00 2019-11-29 10:36:35 2019-11-29 10:37:00 t 1 1 177104 627 0.00 2019-11-29 10:37:05 2019-11-29 10:37:07 t 1 1 177105 627 0.00 2019-11-29 10:37:13 2019-11-29 10:37:21 t 1 1 177115 422 0.00 2019-11-29 10:41:40 2019-11-29 10:41:57 t 1 1 177116 627 0.00 2019-11-29 10:42:42 2019-11-29 10:42:57 t 1 1 177117 639 0.00 2019-11-29 10:39:59 2019-11-29 10:44:09 t 1 1 177118 581 0.00 2019-11-29 10:44:55 2019-11-29 10:44:55 f 1 1 177121 422 0.00 2019-11-29 10:43:08 2019-11-29 10:47:30 t 1 1 177122 591 0.00 2019-11-29 10:15:27 2019-11-29 10:48:45 t 1 1 177130 670 0.00 2019-11-29 09:39:45 2019-11-29 10:54:30 t 1 1 177132 422 0.00 2019-11-29 10:48:28 2019-11-29 10:56:48 t 1 1 177138 451 0.00 2019-11-29 10:49:02 2019-11-29 11:09:50 t 1 1 177141 528 0.00 2019-11-29 10:55:01 2019-11-29 11:17:02 t 1 1 177142 637 0.00 2019-11-29 11:01:20 2019-11-29 11:17:30 t 1 1 177144 639 0.00 2019-11-29 11:16:58 2019-11-29 11:19:03 t 1 1 177145 637 0.00 2019-11-29 11:19:06 2019-11-29 11:20:17 t 1 1 177149 578 0.00 2019-11-29 09:41:38 2019-11-29 11:23:03 t 1 1 177150 528 0.00 2019-11-29 11:23:24 2019-11-29 11:24:32 t 1 1 177157 528 0.00 2019-11-29 11:32:27 2019-11-29 11:32:51 t 1 1 177161 656 0.00 2019-11-29 11:28:35 2019-11-29 11:34:50 t 1 1 177163 528 0.00 2019-11-29 11:34:54 2019-11-29 11:35:22 t 1 1 177164 611 0.00 2019-11-29 11:08:24 2019-11-29 11:36:45 t 1 1 177168 528 0.00 2019-11-29 11:41:26 2019-11-29 11:41:38 t 1 1 177172 528 0.00 2019-11-29 11:47:15 2019-11-29 11:47:35 t 1 1 177173 528 0.00 2019-11-29 11:47:59 2019-11-29 11:48:30 t 1 1 177175 611 0.00 2019-11-29 11:41:27 2019-11-29 11:49:55 t 1 1 177179 645 0.00 2019-11-29 11:49:19 2019-11-29 11:51:31 t 1 1 177184 656 0.00 2019-11-29 11:56:20 2019-11-29 11:57:27 t 1 1 177185 637 0.00 2019-11-29 11:44:13 2019-11-29 11:59:21 t 1 1 177186 528 0.00 2019-11-29 12:04:00 2019-11-29 12:04:30 t 1 1 177188 679 0.00 2019-11-29 12:06:27 2019-11-29 12:07:04 t 1 1 177189 645 0.00 2019-11-29 11:55:46 2019-11-29 12:08:34 t 1 1 177194 528 0.00 2019-11-29 12:14:17 2019-11-29 12:15:26 t 1 1 177199 220 0.00 2019-11-29 09:47:47 2019-11-29 12:18:19 t 1 1 177204 627 0.00 2019-11-29 12:19:10 2019-11-29 12:24:52 t 1 1 177211 622 0.00 2019-11-29 12:22:41 2019-11-29 12:31:12 t 1 1 177212 656 0.00 2019-11-29 12:26:48 2019-11-29 12:31:46 t 1 1 177213 528 0.00 2019-11-29 12:32:04 2019-11-29 12:32:27 t 1 1 177217 645 0.00 2019-11-29 12:38:42 2019-11-29 12:41:17 t 1 1 177221 528 0.00 2019-11-29 12:43:42 2019-11-29 12:44:18 t 1 1 177227 528 0.00 2019-11-29 12:46:47 2019-11-29 12:47:07 t 1 1 177229 545 0.00 2019-11-29 12:45:19 2019-11-29 12:49:41 t 1 1 177235 637 0.00 2019-11-29 12:15:17 2019-11-29 12:52:31 t 1 1 177239 637 0.00 2019-11-29 12:53:12 2019-11-29 12:53:54 t 1 1 177244 445 0.00 2019-11-29 12:46:14 2019-11-29 13:01:14 t 1 1 177245 544 0.00 2019-11-29 12:57:08 2019-11-29 13:03:37 t 1 1 177248 544 0.00 2019-11-29 13:09:29 2019-11-29 13:10:31 t 1 1 177249 544 0.00 2019-11-29 13:10:31 2019-11-29 13:11:24 t 1 1 177254 667 0.00 2019-11-29 13:09:00 2019-11-29 13:14:09 t 1 2 177258 451 0.00 2019-11-29 13:07:59 2019-11-29 13:20:23 t 1 1 177259 595 0.00 2019-11-29 13:20:58 2019-11-29 13:20:58 f 1 1 177266 544 0.00 2019-11-29 13:24:11 2019-11-29 13:25:22 t 1 1 177267 645 0.00 2019-11-29 13:03:22 2019-11-29 13:25:43 t 1 1 177269 645 0.00 2019-11-29 13:25:43 2019-11-29 13:25:58 t 1 1 177281 485 0.00 2019-11-29 13:31:35 2019-11-29 13:37:41 t 1 1 177291 656 0.00 2019-11-29 13:47:31 2019-11-29 13:49:44 t 1 1 177292 451 0.00 2019-11-29 13:38:55 2019-11-29 13:50:07 t 1 1 177294 220 0.00 2019-11-29 13:46:29 2019-11-29 13:52:25 t 1 1 177297 544 0.00 2019-11-29 13:56:04 2019-11-29 13:56:08 t 1 1 177298 544 0.00 2019-11-29 13:56:32 2019-11-29 13:56:47 t 1 1 177299 667 0.00 2019-11-29 13:49:37 2019-11-29 13:58:01 t 1 1 177301 667 0.00 2019-11-29 13:58:01 2019-11-29 13:59:24 t 1 1 177305 220 0.00 2019-11-29 13:59:00 2019-11-29 14:03:46 t 1 1 177308 544 0.00 2019-11-29 14:08:23 2019-11-29 14:08:31 t 1 1 177310 430 0.00 2019-11-29 12:05:01 2019-11-29 14:09:59 t 1 1 177312 544 0.00 2019-11-29 14:13:26 2019-11-29 14:13:50 t 1 1 177313 544 0.00 2019-11-29 14:18:01 2019-11-29 14:19:34 t 1 1 177315 679 0.00 2019-11-29 14:21:53 2019-11-29 14:22:50 t 1 1 177316 490 0.00 2019-11-29 14:12:21 2019-11-29 14:23:56 t 1 1 177320 545 0.00 2019-11-29 14:20:53 2019-11-29 14:26:59 t 1 1 177326 673 0.00 2019-11-29 13:33:36 2019-11-29 14:44:35 t 1 1 177332 514 0.00 2019-11-29 14:52:26 2019-11-29 14:53:36 t 1 1 177334 481 0.00 2019-11-29 14:25:45 2019-11-29 14:54:09 t 1 1 177337 667 0.00 2019-11-29 14:51:07 2019-11-29 14:54:44 t 1 1 177339 667 0.00 2019-11-29 14:55:32 2019-11-29 14:56:31 t 1 1 177341 514 0.00 2019-11-29 14:57:31 2019-11-29 14:58:35 t 1 1 177342 622 0.00 2019-11-29 14:25:31 2019-11-29 15:02:12 t 1 1 177344 667 0.00 2019-11-29 15:02:10 2019-11-29 15:03:40 t 1 1 177351 562 0.00 2019-11-29 15:08:56 2019-11-29 15:09:59 t 1 1 177353 656 0.00 2019-11-29 13:49:46 2019-11-29 15:11:25 t 1 1 177354 667 0.00 2019-11-29 15:11:43 2019-11-29 15:11:55 t 1 1 177355 637 0.00 2019-11-29 15:07:03 2019-11-29 15:13:40 t 1 1 177357 667 0.00 2019-11-29 15:11:55 2019-11-29 15:16:22 t 1 1 177358 562 0.00 2019-11-29 15:16:52 2019-11-29 15:17:31 t 1 1 177359 675 0.00 2019-11-29 15:10:15 2019-11-29 15:19:45 t 1 1 177040 637 0.00 2019-11-29 09:39:22 2019-11-29 09:41:32 t 1 1 177044 220 0.00 2019-11-29 09:44:46 2019-11-29 09:45:24 t 1 1 177052 520 0.00 2019-11-29 09:49:26 2019-11-29 09:53:40 t 1 1 177054 422 0.00 2019-11-29 09:27:44 2019-11-29 09:55:22 t 1 1 177055 637 0.00 2019-11-29 09:46:15 2019-11-29 09:56:24 t 1 1 177058 627 0.00 2019-11-29 09:57:01 2019-11-29 09:57:09 t 1 1 177059 591 0.00 2019-11-29 09:57:05 2019-11-29 09:57:51 t 1 1 177061 627 0.00 2019-11-29 09:57:30 2019-11-29 09:58:10 t 1 1 177064 675 0.00 2019-11-29 09:31:07 2019-11-29 10:01:05 t 1 1 177067 422 0.00 2019-11-29 10:05:33 2019-11-29 10:05:41 t 1 1 177070 656 0.00 2019-11-29 10:05:44 2019-11-29 10:08:29 t 1 1 177072 591 0.00 2019-11-29 09:59:55 2019-11-29 10:09:18 t 1 1 177075 627 0.00 2019-11-29 10:09:52 2019-11-29 10:12:19 t 1 1 177076 520 0.00 2019-11-29 10:06:07 2019-11-29 10:13:32 t 1 1 177078 645 0.00 2019-11-29 10:07:19 2019-11-29 10:15:28 t 1 1 177084 625 0.00 2019-11-29 09:37:39 2019-11-29 10:21:37 t 1 1 177085 639 0.00 2019-11-29 10:07:21 2019-11-29 10:23:16 t 1 1 177092 639 0.00 2019-11-29 10:24:10 2019-11-29 10:30:13 t 1 1 177094 639 0.00 2019-11-29 10:30:30 2019-11-29 10:31:01 t 1 1 177096 627 0.00 2019-11-29 10:31:12 2019-11-29 10:32:44 t 1 1 177097 639 0.00 2019-11-29 10:31:08 2019-11-29 10:33:22 t 1 1 177099 627 0.00 2019-11-29 10:33:54 2019-11-29 10:34:36 t 1 1 177100 639 0.00 2019-11-29 10:34:12 2019-11-29 10:35:44 t 1 1 177103 639 0.00 2019-11-29 10:37:00 2019-11-29 10:37:02 t 1 1 177107 627 0.00 2019-11-29 10:37:28 2019-11-29 10:37:28 t 1 1 177111 639 0.00 2019-11-29 10:38:46 2019-11-29 10:39:59 t 1 1 177120 627 0.00 2019-11-29 10:45:36 2019-11-29 10:46:46 t 1 1 177124 627 0.00 2019-11-29 10:49:15 2019-11-29 10:49:23 t 1 1 177125 673 0.00 2019-11-29 10:05:52 2019-11-29 10:52:06 t 1 1 177126 627 0.00 2019-11-29 10:51:22 2019-11-29 10:52:57 t 1 1 177128 645 0.00 2019-11-29 10:51:17 2019-11-29 10:53:26 t 1 1 177129 627 0.00 2019-11-29 10:54:21 2019-11-29 10:54:26 t 1 1 177131 528 0.00 2019-11-29 10:19:49 2019-11-29 10:55:01 t 1 1 177133 220 0.00 2019-11-29 10:25:49 2019-11-29 10:58:00 t 1 2 177137 679 0.00 2019-11-29 11:03:07 2019-11-29 11:08:25 t 1 1 177140 673 0.00 2019-11-29 10:52:06 2019-11-29 11:16:51 t 1 1 177146 528 0.00 2019-11-29 11:20:45 2019-11-29 11:20:57 t 1 1 177147 451 0.00 2019-11-29 11:09:50 2019-11-29 11:21:28 t 1 1 177151 528 0.00 2019-11-29 11:24:31 2019-11-29 11:24:44 t 1 1 177152 528 0.00 2019-11-29 11:27:08 2019-11-29 11:28:02 t 1 1 177155 637 0.00 2019-11-29 11:29:53 2019-11-29 11:32:19 t 1 1 177156 445 0.00 2019-11-29 09:22:22 2019-11-29 11:32:28 t 1 1 177158 625 0.00 2019-11-29 10:23:06 2019-11-29 11:33:40 t 1 1 177165 445 0.00 2019-11-29 11:32:33 2019-11-29 11:39:28 t 1 1 177166 528 0.00 2019-11-29 11:39:39 2019-11-29 11:41:10 t 1 1 177169 637 0.00 2019-11-29 11:33:18 2019-11-29 11:42:01 t 1 1 177170 675 0.00 2019-11-29 11:22:28 2019-11-29 11:45:33 t 1 1 177174 528 0.00 2019-11-29 11:49:24 2019-11-29 11:49:45 t 1 1 177176 545 0.00 2019-11-29 11:40:01 2019-11-29 11:49:58 t 1 1 177177 622 0.00 2019-11-29 10:27:42 2019-11-29 11:50:49 t 1 1 177180 639 0.00 2019-11-29 11:51:32 2019-11-29 11:53:36 t 1 1 177181 528 0.00 2019-11-29 11:54:10 2019-11-29 11:54:31 t 1 1 177183 645 0.00 2019-11-29 11:51:31 2019-11-29 11:55:46 t 1 1 177190 615 0.00 2019-11-29 12:05:23 2019-11-29 12:08:52 t 1 1 177191 637 0.00 2019-11-29 11:59:49 2019-11-29 12:11:46 t 1 1 177192 637 0.00 2019-11-29 12:11:45 2019-11-29 12:14:42 t 1 1 177195 637 0.00 2019-11-29 12:14:17 2019-11-29 12:15:44 t 1 1 177196 528 0.00 2019-11-29 12:16:11 2019-11-29 12:16:31 t 1 1 177197 528 0.00 2019-11-29 12:17:29 2019-11-29 12:17:50 t 1 1 177205 445 0.00 2019-11-29 12:17:51 2019-11-29 12:27:13 t 1 1 177206 627 0.00 2019-11-29 12:25:06 2019-11-29 12:27:26 t 1 1 177208 627 0.00 2019-11-29 12:27:56 2019-11-29 12:29:48 t 1 1 177209 528 0.00 2019-11-29 12:30:03 2019-11-29 12:30:45 t 1 1 177214 544 0.00 2019-11-29 12:23:53 2019-11-29 12:36:56 t 1 1 177216 528 0.00 2019-11-29 12:38:26 2019-11-29 12:38:50 t 1 1 177219 528 0.00 2019-11-29 12:42:00 2019-11-29 12:43:44 t 1 1 177223 544 0.00 2019-11-29 12:37:36 2019-11-29 12:45:17 t 1 1 177224 545 0.00 2019-11-29 12:26:22 2019-11-29 12:45:19 t 1 1 177225 445 0.00 2019-11-29 12:29:15 2019-11-29 12:46:14 t 1 1 177228 528 0.00 2019-11-29 12:48:41 2019-11-29 12:49:04 t 1 1 177230 220 0.00 2019-11-29 11:28:33 2019-11-29 12:50:08 t 1 2 177232 220 0.00 2019-11-29 12:50:55 2019-11-29 12:51:02 t 1 2 177234 615 0.00 2019-11-29 12:50:56 2019-11-29 12:52:03 t 1 1 177236 645 0.00 2019-11-29 12:50:55 2019-11-29 12:52:55 t 1 1 177237 627 0.00 2019-11-29 12:44:42 2019-11-29 12:53:14 t 1 1 177238 528 0.00 2019-11-29 12:53:06 2019-11-29 12:53:24 t 1 1 177243 627 0.00 2019-11-29 12:53:14 2019-11-29 13:00:29 t 1 1 177250 578 0.00 2019-11-29 11:23:49 2019-11-29 13:11:55 t 1 1 177251 544 0.00 2019-11-29 13:11:24 2019-11-29 13:12:30 t 1 1 177255 544 0.00 2019-11-29 13:14:46 2019-11-29 13:15:41 t 1 1 177261 627 0.00 2019-11-29 13:21:20 2019-11-29 13:21:25 t 1 1 177264 220 0.00 2019-11-29 12:18:55 2019-11-29 13:24:11 t 1 1 177265 445 0.00 2019-11-29 13:01:14 2019-11-29 13:24:24 t 1 1 177268 544 0.00 2019-11-29 13:25:28 2019-11-29 13:25:48 t 1 1 177270 679 0.00 2019-11-29 13:24:27 2019-11-29 13:26:17 t 1 1 177272 544 0.00 2019-11-29 13:27:07 2019-11-29 13:27:51 t 1 1 177274 481 0.00 2019-11-29 09:41:23 2019-11-29 13:29:43 t 1 1 177276 645 0.00 2019-11-29 13:25:57 2019-11-29 13:30:08 t 1 1 177278 645 0.00 2019-11-29 13:30:07 2019-11-29 13:32:04 t 1 1 177283 514 0.00 2019-11-29 13:37:33 2019-11-29 13:38:37 t 1 1 177285 564 0.00 2019-11-29 11:45:22 2019-11-29 13:42:31 t 1 1 177287 591 0.00 2019-11-29 13:16:53 2019-11-29 13:44:44 t 1 1 177288 671 0.00 2019-11-29 13:41:24 2019-11-29 13:45:39 t 1 1 177290 656 0.00 2019-11-29 13:47:31 2019-11-29 13:47:31 t 1 1 177296 544 0.00 2019-11-29 13:54:45 2019-11-29 13:55:54 t 1 1 177300 675 0.00 2019-11-29 13:55:41 2019-11-29 13:59:16 t 1 1 177302 451 0.00 2019-11-29 13:50:06 2019-11-29 13:59:34 t 1 1 177304 667 0.00 2019-11-29 13:59:51 2019-11-29 14:00:52 t 1 1 177307 544 0.00 2019-11-29 14:08:01 2019-11-29 14:08:19 t 1 1 177318 622 0.00 2019-11-29 12:54:35 2019-11-29 14:25:31 t 1 1 177324 675 0.00 2019-11-29 14:23:52 2019-11-29 14:39:37 t 1 1 177325 516 0.00 2019-11-29 14:41:09 2019-11-29 14:43:47 t 1 1 177328 639 0.00 2019-11-29 14:46:33 2019-11-29 14:48:39 t 1 1 177330 681 0.00 2019-11-29 13:13:13 2019-11-29 14:49:26 t 1 1 177333 627 0.00 2019-11-29 13:55:28 2019-11-29 14:53:59 t 1 1 177338 639 0.00 2019-11-29 14:54:23 2019-11-29 14:54:52 t 1 1 177340 639 0.00 2019-11-29 14:56:51 2019-11-29 14:58:14 t 1 1 177345 544 0.00 2019-11-29 15:03:33 2019-11-29 15:04:05 t 1 1 177346 667 0.00 2019-11-29 15:04:40 2019-11-29 15:04:40 t 1 1 177349 667 0.00 2019-11-29 15:06:43 2019-11-29 15:07:29 t 1 1 177352 667 0.00 2019-11-29 15:08:03 2019-11-29 15:11:10 t 1 1 177356 562 0.00 2019-11-29 15:14:50 2019-11-29 15:15:02 t 1 1 177360 481 0.00 2019-11-29 14:54:09 2019-11-29 15:20:37 t 1 1 177362 562 0.00 2019-11-29 15:25:32 2019-11-29 15:25:41 t 1 1 177364 544 0.00 2019-11-29 15:07:25 2019-11-29 15:29:44 t 1 1 177366 637 0.00 2019-11-29 15:13:45 2019-11-29 15:30:56 t 1 1 177367 667 0.00 2019-11-29 15:26:33 2019-11-29 15:32:48 t 1 1 177372 639 0.00 2019-11-29 15:37:25 2019-11-29 15:39:18 t 1 1 177373 639 0.00 2019-11-29 15:41:39 2019-11-29 15:41:49 t 1 1 177376 562 0.00 2019-11-29 15:44:50 2019-11-29 15:46:15 t 1 1 177379 675 0.00 2019-11-29 15:28:27 2019-11-29 15:47:01 t 1 1 177388 639 0.00 2019-11-29 15:58:28 2019-11-29 15:58:56 t 1 1 177391 562 0.00 2019-11-29 16:00:16 2019-11-29 16:01:18 t 1 1 177394 562 0.00 2019-11-29 16:03:29 2019-11-29 16:04:26 t 1 1 177395 667 0.00 2019-11-29 16:06:00 2019-11-29 16:07:00 t 1 1 177398 637 0.00 2019-11-29 15:30:56 2019-11-29 16:10:48 t 1 1 177400 578 0.00 2019-11-29 16:01:08 2019-11-29 16:13:18 t 1 1 177402 637 0.00 2019-11-29 16:11:13 2019-11-29 16:16:27 t 1 1 177403 498 0.00 2019-11-29 15:15:35 2019-11-29 16:18:31 t 1 2 177407 673 0.00 2019-11-29 15:56:26 2019-11-29 16:27:20 t 1 1 177408 562 0.00 2019-11-29 16:18:00 2019-11-29 16:29:31 t 1 1 177412 445 0.00 2019-11-29 13:34:02 2019-11-29 16:35:36 t 1 1 177417 566 0.00 2019-11-29 16:20:50 2019-11-29 16:51:58 t 1 1 177419 637 0.00 2019-11-29 16:52:25 2019-11-29 16:53:25 t 1 1 177422 445 0.00 2019-11-29 16:46:05 2019-11-29 16:55:40 t 1 1 177423 637 0.00 2019-11-29 16:53:47 2019-11-29 16:59:31 t 1 1 177429 637 0.00 2019-11-29 17:00:26 2019-11-29 17:01:30 t 1 1 177431 637 0.00 2019-11-29 17:02:17 2019-11-29 17:04:05 t 1 1 177434 562 0.00 2019-11-29 17:09:18 2019-11-29 17:09:44 t 1 1 177437 675 0.00 2019-11-29 17:09:52 2019-11-29 17:11:29 t 1 1 177439 416 0.00 2019-11-29 17:11:51 2019-11-29 17:11:51 f 1 1 177441 516 0.00 2019-11-29 17:14:53 2019-11-29 17:15:22 t 1 1 177444 637 0.00 2019-11-29 17:10:15 2019-11-29 17:22:46 t 1 1 177446 637 0.00 2019-11-29 17:26:06 2019-11-29 17:27:12 t 1 1 177447 212 0.00 2019-11-29 17:27:43 2019-11-29 17:27:43 f 1 2 177451 562 0.00 2019-11-29 17:30:47 2019-11-29 17:34:44 t 1 1 177453 671 0.00 2019-11-29 17:32:54 2019-11-29 17:36:09 t 1 1 177454 562 0.00 2019-11-29 17:35:10 2019-11-29 17:36:31 t 1 1 177458 578 0.00 2019-11-29 16:13:18 2019-11-29 17:39:36 t 1 1 177461 562 0.00 2019-11-29 17:41:24 2019-11-29 17:42:50 t 1 1 177462 562 0.00 2019-11-29 17:43:07 2019-11-29 17:43:26 t 1 1 177466 544 0.00 2019-11-29 16:17:07 2019-11-29 17:48:05 t 1 1 177469 622 0.00 2019-11-29 17:47:31 2019-11-29 17:49:55 t 1 1 177473 514 0.00 2019-11-29 17:23:59 2019-11-29 17:54:18 t 1 1 177476 516 0.00 2019-11-29 17:55:16 2019-11-29 17:58:48 t 1 1 177481 516 0.00 2019-11-29 18:02:23 2019-11-29 18:03:30 t 1 1 177485 675 0.00 2019-11-29 17:56:38 2019-11-29 18:06:25 t 1 1 177487 578 0.00 2019-11-29 17:50:08 2019-11-29 18:09:46 t 1 1 177488 639 0.00 2019-11-29 18:09:55 2019-11-29 18:10:11 t 1 1 177492 639 0.00 2019-11-29 18:15:44 2019-11-29 18:16:13 t 1 1 177493 591 0.00 2019-11-29 17:56:42 2019-11-29 18:16:19 t 1 1 177496 639 0.00 2019-11-29 18:17:38 2019-11-29 18:19:06 t 1 1 177497 578 0.00 2019-11-29 18:09:46 2019-11-29 18:20:53 t 1 1 177505 639 0.00 2019-11-29 18:26:32 2019-11-29 18:26:48 t 1 1 177515 645 0.00 2019-11-29 18:28:53 2019-11-29 18:31:07 t 1 1 177519 639 0.00 2019-11-29 18:33:05 2019-11-29 18:33:43 t 1 1 177522 578 0.00 2019-11-29 18:20:53 2019-11-29 18:34:38 t 1 1 177525 639 0.00 2019-11-29 18:35:08 2019-11-29 18:39:32 t 1 1 177530 639 0.00 2019-11-29 18:39:32 2019-11-29 18:42:24 t 1 1 177532 622 0.00 2019-11-29 18:38:45 2019-11-29 18:44:01 t 1 1 177535 671 0.00 2019-11-29 18:45:57 2019-11-29 18:47:34 t 1 1 177540 639 0.00 2019-11-29 18:50:32 2019-11-29 18:51:12 t 1 1 177546 667 0.00 2019-11-29 18:53:35 2019-11-29 18:54:53 t 1 1 177548 220 0.00 2019-11-29 18:35:57 2019-11-29 18:59:45 t 1 1 177549 639 0.00 2019-11-29 18:55:33 2019-11-29 19:00:30 t 1 1 177550 451 0.00 2019-11-29 18:32:39 2019-11-29 19:01:16 t 1 1 177551 639 0.00 2019-11-29 19:01:11 2019-11-29 19:01:40 t 1 1 177556 639 0.00 2019-11-29 19:04:36 2019-11-29 19:04:43 t 1 1 177558 451 0.00 2019-11-29 19:01:16 2019-11-29 19:04:52 t 1 1 177560 639 0.00 2019-11-29 19:04:52 2019-11-29 19:05:55 t 1 1 177562 591 0.00 2019-11-29 18:32:13 2019-11-29 19:06:55 t 1 1 177564 220 0.00 2019-11-29 19:07:30 2019-11-29 19:10:35 t 1 1 177568 562 0.00 2019-11-29 19:12:11 2019-11-29 19:12:42 t 1 1 177570 451 0.00 2019-11-29 19:09:53 2019-11-29 19:15:30 t 1 1 177572 673 0.00 2019-11-29 19:13:22 2019-11-29 19:16:34 t 1 1 177577 562 0.00 2019-11-29 19:23:06 2019-11-29 19:23:37 t 1 1 177581 658 0.00 2019-11-29 19:24:57 2019-11-29 19:25:18 t 1 1 177585 395 0.00 2019-11-29 19:30:15 2019-11-29 19:30:15 f 1 2 177586 544 0.00 2019-11-29 19:26:23 2019-11-29 19:32:34 t 1 1 177588 562 0.00 2019-11-29 19:33:30 2019-11-29 19:33:50 t 1 1 177593 545 0.00 2019-11-29 19:30:34 2019-11-29 19:37:53 t 1 1 177594 622 0.00 2019-11-29 19:36:49 2019-11-29 19:39:21 t 1 1 177599 625 0.00 2019-11-29 19:24:59 2019-11-29 19:41:46 t 1 1 177603 591 0.00 2019-11-29 19:42:23 2019-11-29 19:44:37 t 1 1 177605 627 0.00 2019-11-29 19:40:06 2019-11-29 19:45:14 t 1 1 177611 520 0.00 2019-11-29 19:47:18 2019-11-29 19:50:10 t 1 1 177613 564 0.00 2019-11-29 19:47:29 2019-11-29 19:52:41 t 1 1 177617 520 0.00 2019-11-29 19:50:09 2019-11-29 19:57:30 t 1 1 177618 673 0.00 2019-11-29 19:59:41 2019-11-29 20:01:00 t 1 1 177626 562 0.00 2019-11-29 20:11:26 2019-11-29 20:11:48 t 1 1 177628 591 0.00 2019-11-29 20:01:23 2019-11-29 20:13:09 t 1 1 177635 562 0.00 2019-11-29 20:22:18 2019-11-29 20:22:46 t 1 1 177637 516 0.00 2019-11-29 20:16:10 2019-11-29 20:24:38 t 1 1 177638 637 0.00 2019-11-29 20:22:59 2019-11-29 20:26:22 t 1 1 177646 220 0.00 2019-11-29 20:23:31 2019-11-29 20:34:54 t 1 2 177649 611 0.00 2019-11-29 20:30:08 2019-11-29 20:39:47 t 1 1 177655 485 0.00 2019-11-29 20:19:54 2019-11-29 20:47:35 t 1 1 177658 485 0.00 2019-11-29 20:48:21 2019-11-29 20:49:01 t 1 1 177661 510 0.00 2019-11-29 20:26:18 2019-11-29 20:52:05 t 1 1 177665 637 0.00 2019-11-29 20:32:31 2019-11-29 20:54:14 t 1 1 177670 485 0.00 2019-11-29 20:49:35 2019-11-29 20:58:35 t 1 1 177675 514 0.00 2019-11-29 19:54:14 2019-11-29 21:00:39 t 1 1 177677 220 0.00 2019-11-29 21:00:36 2019-11-29 21:01:16 t 1 1 177679 645 0.00 2019-11-29 20:56:13 2019-11-29 21:03:16 t 1 1 177361 627 0.00 2019-11-29 14:53:59 2019-11-29 15:22:12 t 1 1 177365 544 0.00 2019-11-29 15:29:48 2019-11-29 15:29:54 t 1 1 177371 667 0.00 2019-11-29 15:32:48 2019-11-29 15:36:55 t 1 1 177375 639 0.00 2019-11-29 15:45:59 2019-11-29 15:46:13 t 1 1 177377 490 0.00 2019-11-29 15:35:03 2019-11-29 15:46:31 t 1 1 177383 591 0.00 2019-11-29 15:52:34 2019-11-29 15:52:53 t 1 1 177385 562 0.00 2019-11-29 15:54:11 2019-11-29 15:54:37 t 1 1 177386 490 0.00 2019-11-29 15:46:31 2019-11-29 15:56:33 t 1 1 177389 679 0.00 2019-11-29 15:58:22 2019-11-29 15:59:36 t 1 1 177392 639 0.00 2019-11-29 16:00:25 2019-11-29 16:01:47 t 1 1 177396 544 0.00 2019-11-29 15:51:23 2019-11-29 16:08:14 t 1 1 177397 490 0.00 2019-11-29 15:56:33 2019-11-29 16:10:40 t 1 1 177401 562 0.00 2019-11-29 16:04:32 2019-11-29 16:14:34 t 1 1 177404 637 0.00 2019-11-29 16:17:53 2019-11-29 16:18:39 t 1 1 177411 675 0.00 2019-11-29 16:20:23 2019-11-29 16:34:18 t 1 1 177413 562 0.00 2019-11-29 16:30:02 2019-11-29 16:43:52 t 1 1 177414 445 0.00 2019-11-29 16:35:36 2019-11-29 16:46:05 t 1 1 177420 670 0.00 2019-11-29 10:54:28 2019-11-29 16:53:53 t 1 1 177425 637 0.00 2019-11-29 16:59:31 2019-11-29 17:00:27 t 1 1 177427 679 0.00 2019-11-29 16:54:51 2019-11-29 17:01:04 t 1 1 177432 220 0.00 2019-11-29 16:33:15 2019-11-29 17:05:39 t 1 2 177435 637 0.00 2019-11-29 17:05:19 2019-11-29 17:10:15 t 1 1 177436 520 0.00 2019-11-29 16:47:36 2019-11-29 17:11:25 t 1 1 177442 562 0.00 2019-11-29 17:12:41 2019-11-29 17:19:09 t 1 1 177443 451 0.00 2019-11-29 17:15:38 2019-11-29 17:21:53 t 1 1 177448 591 0.00 2019-11-29 17:03:59 2019-11-29 17:29:11 t 1 1 177449 562 0.00 2019-11-29 17:21:54 2019-11-29 17:30:18 t 1 1 177455 611 0.00 2019-11-29 17:30:17 2019-11-29 17:37:11 t 1 1 177456 516 0.00 2019-11-29 17:35:47 2019-11-29 17:38:16 t 1 1 177459 562 0.00 2019-11-29 17:37:18 2019-11-29 17:41:13 t 1 1 177460 622 0.00 2019-11-29 17:36:10 2019-11-29 17:42:24 t 1 1 177463 451 0.00 2019-11-29 17:31:09 2019-11-29 17:45:45 t 1 1 177465 562 0.00 2019-11-29 17:47:20 2019-11-29 17:47:34 t 1 1 177467 675 0.00 2019-11-29 17:40:45 2019-11-29 17:48:20 t 1 1 177472 645 0.00 2019-11-29 17:41:42 2019-11-29 17:53:20 t 1 1 177475 451 0.00 2019-11-29 17:45:45 2019-11-29 17:58:11 t 1 1 177478 622 0.00 2019-11-29 17:58:34 2019-11-29 17:59:57 t 1 1 177479 562 0.00 2019-11-29 17:50:38 2019-11-29 18:02:22 t 1 1 177483 639 0.00 2019-11-29 18:00:14 2019-11-29 18:06:06 t 1 1 177490 562 0.00 2019-11-29 18:04:57 2019-11-29 18:11:06 t 1 1 177495 514 0.00 2019-11-29 17:54:18 2019-11-29 18:17:11 t 1 1 177501 675 0.00 2019-11-29 18:19:30 2019-11-29 18:23:39 t 1 1 177502 516 0.00 2019-11-29 18:24:48 2019-11-29 18:25:19 t 1 1 177503 639 0.00 2019-11-29 18:23:48 2019-11-29 18:25:48 t 1 1 177504 645 0.00 2019-11-29 18:22:51 2019-11-29 18:26:40 t 1 1 177507 622 0.00 2019-11-29 18:24:27 2019-11-29 18:27:02 t 1 1 177509 562 0.00 2019-11-29 18:27:11 2019-11-29 18:27:31 t 1 1 177511 591 0.00 2019-11-29 18:20:13 2019-11-29 18:27:53 t 1 1 177512 562 0.00 2019-11-29 18:28:07 2019-11-29 18:28:41 t 1 1 177513 220 0.00 2019-11-29 18:04:29 2019-11-29 18:29:48 t 1 2 177518 220 0.00 2019-11-29 18:18:17 2019-11-29 18:33:40 t 1 1 177523 220 0.00 2019-11-29 18:34:29 2019-11-29 18:34:39 t 1 2 177527 578 0.00 2019-11-29 18:34:38 2019-11-29 18:40:59 t 1 1 177528 520 0.00 2019-11-29 18:21:30 2019-11-29 18:41:22 t 1 1 177531 625 0.00 2019-11-29 17:54:26 2019-11-29 18:43:04 t 1 1 177533 516 0.00 2019-11-29 18:43:11 2019-11-29 18:44:21 t 1 1 177537 645 0.00 2019-11-29 18:45:03 2019-11-29 18:49:26 t 1 1 177538 639 0.00 2019-11-29 18:43:27 2019-11-29 18:50:22 t 1 1 177539 562 0.00 2019-11-29 18:51:01 2019-11-29 18:51:10 t 1 1 177542 578 0.00 2019-11-29 18:40:59 2019-11-29 18:51:19 t 1 1 177545 639 0.00 2019-11-29 18:54:20 2019-11-29 18:54:35 t 1 1 177552 562 0.00 2019-11-29 19:01:41 2019-11-29 19:01:57 t 1 1 177553 639 0.00 2019-11-29 19:02:41 2019-11-29 19:03:11 t 1 1 177559 639 0.00 2019-11-29 19:05:37 2019-11-29 19:05:37 f 1 1 177561 639 0.00 2019-11-29 19:05:07 2019-11-29 19:06:48 t 1 1 177563 520 0.00 2019-11-29 18:58:54 2019-11-29 19:10:23 t 1 1 177566 487 0.00 2019-11-29 18:19:04 2019-11-29 19:10:47 t 1 2 177567 520 0.00 2019-11-29 19:10:23 2019-11-29 19:12:40 t 1 1 177569 591 0.00 2019-11-29 19:10:15 2019-11-29 19:13:19 t 1 1 177576 658 0.00 2019-11-29 19:22:27 2019-11-29 19:23:37 t 1 1 177578 658 0.00 2019-11-29 19:24:05 2019-11-29 19:24:08 t 1 1 177579 658 0.00 2019-11-29 19:24:45 2019-11-29 19:24:51 t 1 1 177583 544 0.00 2019-11-29 19:12:37 2019-11-29 19:26:23 t 1 1 177584 562 0.00 2019-11-29 19:27:33 2019-11-29 19:27:42 t 1 1 177587 220 0.00 2019-11-29 18:57:16 2019-11-29 19:33:39 t 1 2 177589 520 0.00 2019-11-29 19:12:40 2019-11-29 19:34:13 t 1 1 177592 673 0.00 2019-11-29 19:36:19 2019-11-29 19:37:45 t 1 1 177596 658 0.00 2019-11-29 19:25:23 2019-11-29 19:39:55 t 1 1 177597 520 0.00 2019-11-29 19:34:13 2019-11-29 19:40:11 t 1 1 177601 645 0.00 2019-11-29 19:41:06 2019-11-29 19:43:55 t 1 1 177602 562 0.00 2019-11-29 19:44:17 2019-11-29 19:44:31 t 1 1 177604 520 0.00 2019-11-29 19:40:11 2019-11-29 19:45:06 t 1 1 177606 627 0.00 2019-11-29 19:45:59 2019-11-29 19:46:10 t 1 1 177614 566 0.00 2019-11-29 19:46:44 2019-11-29 19:53:57 t 1 1 177619 673 0.00 2019-11-29 20:01:17 2019-11-29 20:02:00 t 1 1 177622 675 0.00 2019-11-29 19:51:32 2019-11-29 20:03:35 t 1 1 177627 671 0.00 2019-11-29 20:11:06 2019-11-29 20:13:07 t 1 1 177629 544 0.00 2019-11-29 19:32:34 2019-11-29 20:14:03 t 1 1 177633 220 0.00 2019-11-29 20:09:26 2019-11-29 20:19:42 t 1 1 177636 637 0.00 2019-11-29 20:21:03 2019-11-29 20:23:00 t 1 1 177639 516 0.00 2019-11-29 20:24:38 2019-11-29 20:27:09 t 1 1 177640 625 0.00 2019-11-29 19:46:36 2019-11-29 20:28:33 t 1 1 177641 445 0.00 2019-11-29 16:55:40 2019-11-29 20:30:08 t 1 1 177647 639 0.00 2019-11-29 20:21:19 2019-11-29 20:38:14 t 1 1 177650 639 0.00 2019-11-29 20:38:14 2019-11-29 20:42:30 t 1 1 177653 639 0.00 2019-11-29 20:42:30 2019-11-29 20:45:34 t 1 1 177654 564 0.00 2019-11-29 19:52:41 2019-11-29 20:46:44 t 1 1 177657 220 0.00 2019-11-29 20:47:13 2019-11-29 20:47:55 t 1 1 177663 639 0.00 2019-11-29 20:52:31 2019-11-29 20:53:29 t 1 1 177666 637 0.00 2019-11-29 20:54:13 2019-11-29 20:55:14 t 1 1 177667 220 0.00 2019-11-29 20:49:27 2019-11-29 20:57:24 t 1 1 177668 220 0.00 2019-11-29 20:57:22 2019-11-29 20:57:59 t 1 1 177669 220 0.00 2019-11-29 20:57:59 2019-11-29 20:58:31 t 1 1 177671 220 0.00 2019-11-29 20:58:31 2019-11-29 20:59:07 t 1 1 177672 220 0.00 2019-11-29 20:59:06 2019-11-29 20:59:41 t 1 1 177673 591 0.00 2019-11-29 20:57:25 2019-11-29 21:00:27 t 1 1 177680 627 0.00 2019-11-29 21:00:38 2019-11-29 21:03:21 t 1 1 177369 639 0.00 2019-11-29 15:29:00 2019-11-29 15:35:25 t 1 1 177370 562 0.00 2019-11-29 15:36:05 2019-11-29 15:36:26 t 1 1 177374 639 0.00 2019-11-29 15:44:05 2019-11-29 15:45:07 t 1 1 177378 639 0.00 2019-11-29 15:45:03 2019-11-29 15:46:47 t 1 1 177380 639 0.00 2019-11-29 15:46:50 2019-11-29 15:50:00 t 1 1 177381 578 0.00 2019-11-29 13:21:32 2019-11-29 15:50:30 t 1 1 177382 544 0.00 2019-11-29 15:34:19 2019-11-29 15:51:23 t 1 1 177384 622 0.00 2019-11-29 15:02:14 2019-11-29 15:52:56 t 1 1 177387 639 0.00 2019-11-29 15:56:16 2019-11-29 15:58:22 t 1 1 177390 578 0.00 2019-11-29 15:50:30 2019-11-29 16:01:08 t 1 1 177393 639 0.00 2019-11-29 16:03:57 2019-11-29 16:04:11 t 1 1 177399 639 0.00 2019-11-29 16:10:03 2019-11-29 16:11:47 t 1 1 177405 637 0.00 2019-11-29 16:18:38 2019-11-29 16:22:56 t 1 1 177406 639 0.00 2019-11-29 16:11:24 2019-11-29 16:26:20 t 1 1 177409 220 0.00 2019-11-29 13:14:43 2019-11-29 16:31:07 t 1 2 177410 220 0.00 2019-11-29 16:13:27 2019-11-29 16:32:29 t 1 1 177415 645 0.00 2019-11-29 16:44:12 2019-11-29 16:48:07 t 1 1 177416 551 0.00 2019-11-29 13:55:47 2019-11-29 16:49:26 t 1 1 177418 637 0.00 2019-11-29 16:33:04 2019-11-29 16:52:25 t 1 1 177421 566 0.00 2019-11-29 16:51:58 2019-11-29 16:55:24 t 1 1 177424 516 0.00 2019-11-29 16:51:49 2019-11-29 17:00:13 t 1 1 177426 516 0.00 2019-11-29 17:00:37 2019-11-29 17:00:59 t 1 1 177428 562 0.00 2019-11-29 16:43:52 2019-11-29 17:01:20 t 1 1 177430 562 0.00 2019-11-29 17:01:20 2019-11-29 17:03:48 t 1 1 177433 562 0.00 2019-11-29 17:06:32 2019-11-29 17:07:47 t 1 1 177438 430 0.00 2019-11-29 17:10:29 2019-11-29 17:11:32 t 1 1 177440 481 0.00 2019-11-29 17:07:56 2019-11-29 17:12:14 t 1 1 177445 637 0.00 2019-11-29 17:22:46 2019-11-29 17:24:39 t 1 1 177450 451 0.00 2019-11-29 17:21:52 2019-11-29 17:31:09 t 1 1 177452 622 0.00 2019-11-29 15:52:55 2019-11-29 17:34:57 t 1 1 177457 562 0.00 2019-11-29 17:36:55 2019-11-29 17:38:47 t 1 1 177464 622 0.00 2019-11-29 17:42:24 2019-11-29 17:46:38 t 1 1 177468 562 0.00 2019-11-29 17:48:24 2019-11-29 17:48:57 t 1 1 177470 578 0.00 2019-11-29 17:39:36 2019-11-29 17:50:08 t 1 1 177471 591 0.00 2019-11-29 17:31:13 2019-11-29 17:52:16 t 1 1 177474 622 0.00 2019-11-29 17:54:45 2019-11-29 17:58:09 t 1 1 177477 639 0.00 2019-11-29 17:54:39 2019-11-29 17:59:13 t 1 1 177480 220 0.00 2019-11-29 17:07:07 2019-11-29 18:02:31 t 1 2 177482 516 0.00 2019-11-29 18:05:05 2019-11-29 18:05:20 t 1 1 177484 551 0.00 2019-11-29 17:52:39 2019-11-29 18:06:23 t 1 1 177486 645 0.00 2019-11-29 17:58:19 2019-11-29 18:08:24 t 1 1 177489 639 0.00 2019-11-29 18:10:34 2019-11-29 18:10:47 t 1 1 177491 639 0.00 2019-11-29 18:11:31 2019-11-29 18:14:00 t 1 1 177494 562 0.00 2019-11-29 18:16:16 2019-11-29 18:16:44 t 1 1 177498 520 0.00 2019-11-29 17:59:39 2019-11-29 18:21:30 t 1 1 177499 639 0.00 2019-11-29 18:22:05 2019-11-29 18:22:20 t 1 1 177500 622 0.00 2019-11-29 17:59:56 2019-11-29 18:23:27 t 1 1 177506 639 0.00 2019-11-29 18:24:54 2019-11-29 18:26:48 t 1 1 177508 645 0.00 2019-11-29 18:27:10 2019-11-29 18:27:21 t 1 1 177510 639 0.00 2019-11-29 18:27:03 2019-11-29 18:27:37 t 1 1 177514 622 0.00 2019-11-29 18:27:34 2019-11-29 18:30:45 t 1 1 177516 451 0.00 2019-11-29 18:07:59 2019-11-29 18:31:17 t 1 1 177517 639 0.00 2019-11-29 18:31:22 2019-11-29 18:32:23 t 1 1 177520 562 0.00 2019-11-29 18:31:38 2019-11-29 18:33:48 t 1 1 177521 622 0.00 2019-11-29 18:30:45 2019-11-29 18:34:23 t 1 1 177524 220 0.00 2019-11-29 18:33:56 2019-11-29 18:35:57 t 1 1 177526 635 0.00 2019-11-29 18:36:50 2019-11-29 18:40:33 t 1 1 177529 562 0.00 2019-11-29 18:40:07 2019-11-29 18:42:01 t 1 1 177534 671 0.00 2019-11-29 18:42:56 2019-11-29 18:44:56 t 1 1 177536 520 0.00 2019-11-29 18:41:51 2019-11-29 18:47:36 t 1 1 177541 667 0.00 2019-11-29 18:44:46 2019-11-29 18:51:15 t 1 1 177543 639 0.00 2019-11-29 18:51:31 2019-11-29 18:52:50 t 1 1 177544 639 0.00 2019-11-29 18:53:48 2019-11-29 18:54:21 t 1 1 177547 671 0.00 2019-11-29 18:47:34 2019-11-29 18:58:56 t 1 1 177554 220 0.00 2019-11-29 19:00:46 2019-11-29 19:03:58 t 1 1 177555 639 0.00 2019-11-29 19:04:09 2019-11-29 19:04:29 t 1 1 177557 671 0.00 2019-11-29 18:58:56 2019-11-29 19:04:45 t 1 1 177565 675 0.00 2019-11-29 19:08:47 2019-11-29 19:10:36 t 1 1 177571 679 0.00 2019-11-29 19:14:01 2019-11-29 19:15:59 t 1 1 177573 637 0.00 2019-11-29 17:30:51 2019-11-29 19:20:46 t 1 1 177574 658 0.00 2019-11-29 19:18:41 2019-11-29 19:21:41 t 1 1 177575 658 0.00 2019-11-29 19:22:17 2019-11-29 19:22:22 t 1 1 177580 625 0.00 2019-11-29 18:48:09 2019-11-29 19:24:59 t 1 1 177582 578 0.00 2019-11-29 18:51:19 2019-11-29 19:25:37 t 1 1 177590 611 0.00 2019-11-29 19:33:30 2019-11-29 19:36:07 t 1 1 177591 562 0.00 2019-11-29 19:37:20 2019-11-29 19:37:29 t 1 1 177595 627 0.00 2019-11-29 19:35:26 2019-11-29 19:39:55 t 1 1 177598 564 0.00 2019-11-29 18:30:14 2019-11-29 19:41:32 t 1 1 177600 637 0.00 2019-11-29 19:20:58 2019-11-29 19:43:40 t 1 1 177607 514 0.00 2019-11-29 18:17:11 2019-11-29 19:46:22 t 1 1 177608 520 0.00 2019-11-29 19:45:06 2019-11-29 19:47:18 t 1 1 177609 564 0.00 2019-11-29 19:41:32 2019-11-29 19:47:29 t 1 1 177610 627 0.00 2019-11-29 19:47:06 2019-11-29 19:50:06 t 1 1 177612 562 0.00 2019-11-29 19:51:04 2019-11-29 19:51:33 t 1 1 177615 514 0.00 2019-11-29 19:46:22 2019-11-29 19:54:14 t 1 1 177616 566 0.00 2019-11-29 19:53:57 2019-11-29 19:54:55 t 1 1 177620 562 0.00 2019-11-29 20:02:02 2019-11-29 20:02:16 t 1 1 177621 673 0.00 2019-11-29 20:02:00 2019-11-29 20:03:21 t 1 1 177623 627 0.00 2019-11-29 19:53:56 2019-11-29 20:05:09 t 1 1 177624 430 0.00 2019-11-29 19:53:08 2019-11-29 20:05:30 t 1 1 177625 430 0.00 2019-11-29 20:05:30 2019-11-29 20:06:33 t 1 1 177630 637 0.00 2019-11-29 19:46:02 2019-11-29 20:14:28 t 1 1 177631 591 0.00 2019-11-29 20:14:46 2019-11-29 20:16:31 t 1 1 177632 585 0.00 2019-11-29 20:17:44 2019-11-29 20:17:44 f 1 1 177634 520 0.00 2019-11-29 20:06:53 2019-11-29 20:20:04 t 1 1 177642 611 0.00 2019-11-29 20:28:56 2019-11-29 20:30:09 t 1 1 177643 637 0.00 2019-11-29 20:26:53 2019-11-29 20:32:23 t 1 1 177644 422 0.00 2019-11-29 20:33:06 2019-11-29 20:33:06 f 1 1 177645 562 0.00 2019-11-29 20:33:13 2019-11-29 20:33:29 t 1 1 177648 673 0.00 2019-11-29 20:37:00 2019-11-29 20:39:04 t 1 1 177651 562 0.00 2019-11-29 20:42:40 2019-11-29 20:43:09 t 1 1 177652 675 0.00 2019-11-29 20:39:49 2019-11-29 20:44:25 t 1 1 177656 679 0.00 2019-11-29 20:46:21 2019-11-29 20:47:48 t 1 1 177659 485 0.00 2019-11-29 20:49:00 2019-11-29 20:49:36 t 1 1 177660 591 0.00 2019-11-29 20:35:29 2019-11-29 20:50:24 t 1 1 177662 639 0.00 2019-11-29 20:45:34 2019-11-29 20:52:32 t 1 1 177664 562 0.00 2019-11-29 20:53:30 2019-11-29 20:53:54 t 1 1 177674 220 0.00 2019-11-29 20:59:41 2019-11-29 21:00:37 t 1 1 177676 566 0.00 2019-11-29 20:42:20 2019-11-29 21:01:12 t 1 1 177678 639 0.00 2019-11-29 20:53:28 2019-11-29 21:03:16 t 1 1 177682 673 0.00 2019-11-29 21:03:38 2019-11-29 21:04:55 t 1 1 177683 520 0.00 2019-11-29 20:55:28 2019-11-29 21:05:47 t 1 1 177687 422 0.00 2019-11-29 21:11:25 2019-11-29 21:11:25 f 1 1 177689 671 0.00 2019-11-29 21:07:20 2019-11-29 21:11:42 t 1 1 177691 627 0.00 2019-11-29 21:12:16 2019-11-29 21:12:44 t 1 1 177693 422 0.00 2019-11-29 21:13:19 2019-11-29 21:13:19 f 1 1 177696 220 0.00 2019-11-29 20:17:56 2019-11-29 21:15:19 t 1 2 177697 581 0.00 2019-11-29 21:16:11 2019-11-29 21:16:11 f 1 1 177704 639 0.00 2019-11-29 21:03:16 2019-11-29 21:22:15 t 1 1 177705 611 0.00 2019-11-29 21:23:19 2019-11-29 21:24:28 t 1 1 177710 485 0.00 2019-11-29 21:16:10 2019-11-29 21:27:00 t 1 1 177712 416 0.00 2019-11-29 21:28:30 2019-11-29 21:28:30 f 1 1 177713 288 0.00 2019-11-29 21:29:54 2019-11-29 21:29:54 f 1 1 177714 288 0.00 2019-11-29 21:30:07 2019-11-29 21:30:07 f 1 1 177715 675 0.00 2019-11-29 21:26:23 2019-11-29 21:30:38 t 1 1 177720 660 0.00 2019-11-29 21:20:43 2019-11-29 21:34:14 t 1 1 177722 562 0.00 2019-11-29 21:37:02 2019-11-29 21:37:11 t 1 1 177725 562 0.00 2019-11-29 21:44:50 2019-11-29 21:45:27 t 1 1 177728 562 0.00 2019-11-29 21:46:15 2019-11-29 21:46:23 t 1 1 177736 623 0.00 2019-11-29 21:51:46 2019-11-29 21:51:58 t 1 1 177738 562 0.00 2019-11-29 21:53:42 2019-11-29 21:54:02 t 1 1 177739 681 0.00 2019-11-29 21:28:25 2019-11-29 21:54:20 t 1 1 177740 675 0.00 2019-11-29 21:42:27 2019-11-29 21:55:27 t 1 1 177741 645 0.00 2019-11-29 21:51:45 2019-11-29 21:56:24 t 1 1 177750 562 0.00 2019-11-29 22:04:35 2019-11-29 22:04:45 t 1 1 177752 681 0.00 2019-11-29 22:06:11 2019-11-29 22:08:21 t 1 1 177753 451 0.00 2019-11-29 21:59:02 2019-11-29 22:09:38 t 1 1 177754 681 0.00 2019-11-29 22:08:56 2019-11-29 22:09:58 t 1 1 177756 623 0.00 2019-11-29 22:10:32 2019-11-29 22:10:35 t 1 1 177760 451 0.00 2019-11-29 22:09:51 2019-11-29 22:15:04 t 1 1 177762 645 0.00 2019-11-29 22:10:09 2019-11-29 22:19:51 t 1 1 177764 675 0.00 2019-11-29 22:16:01 2019-11-29 22:20:16 t 1 1 177765 481 0.00 2019-11-29 21:18:29 2019-11-29 22:21:51 t 1 1 177767 545 0.00 2019-11-29 22:16:26 2019-11-29 22:22:42 t 1 1 177769 673 0.00 2019-11-29 22:08:06 2019-11-29 22:24:01 t 1 1 177771 623 0.00 2019-11-29 22:14:31 2019-11-29 22:24:26 t 1 1 177776 639 0.00 2019-11-29 22:01:14 2019-11-29 22:28:13 t 1 1 177778 658 0.00 2019-11-29 22:25:32 2019-11-29 22:31:22 t 1 1 177779 566 0.00 2019-11-29 22:29:18 2019-11-29 22:33:12 t 1 1 177782 665 0.00 2019-11-29 22:20:57 2019-11-29 22:35:44 t 1 1 177783 667 0.00 2019-11-29 22:34:57 2019-11-29 22:36:07 t 1 1 177789 220 0.00 2019-11-29 22:36:46 2019-11-29 22:37:22 t 1 1 177791 220 0.00 2019-11-29 22:37:58 2019-11-29 22:38:00 t 1 1 177798 675 0.00 2019-11-29 22:39:59 2019-11-29 22:42:42 t 1 1 177800 623 0.00 2019-11-29 22:41:11 2019-11-29 22:43:11 t 1 1 177804 658 0.00 2019-11-29 22:44:47 2019-11-29 22:45:07 t 1 1 177806 562 0.00 2019-11-29 22:47:35 2019-11-29 22:47:41 t 1 1 177807 665 0.00 2019-11-29 22:35:44 2019-11-29 22:49:02 t 1 1 177812 658 0.00 2019-11-29 22:52:16 2019-11-29 22:54:16 t 1 1 177813 658 0.00 2019-11-29 22:54:54 2019-11-29 22:54:57 t 1 1 177817 639 0.00 2019-11-29 22:28:13 2019-11-29 22:57:31 t 1 1 177818 564 0.00 2019-11-29 20:46:44 2019-11-29 22:58:10 t 1 1 177821 681 0.00 2019-11-29 22:58:46 2019-11-29 22:59:24 t 1 1 177824 681 0.00 2019-11-29 22:59:23 2019-11-29 23:00:27 t 1 1 177825 611 0.00 2019-11-29 22:52:41 2019-11-29 23:02:31 t 1 1 177827 667 0.00 2019-11-29 22:50:29 2019-11-29 23:02:53 t 1 1 177830 681 0.00 2019-11-29 23:01:59 2019-11-29 23:03:29 t 1 1 177832 675 0.00 2019-11-29 23:02:21 2019-11-29 23:03:59 t 1 1 177837 658 0.00 2019-11-29 23:04:55 2019-11-29 23:05:02 t 1 1 177839 445 0.00 2019-11-29 20:30:33 2019-11-29 23:06:01 t 1 1 177841 658 0.00 2019-11-29 23:06:10 2019-11-29 23:07:57 t 1 1 177845 562 0.00 2019-11-29 23:09:00 2019-11-29 23:09:08 t 1 1 177848 578 0.00 2019-11-29 19:25:37 2019-11-29 23:10:00 t 1 1 177849 658 0.00 2019-11-29 23:10:27 2019-11-29 23:10:47 t 1 1 177853 658 0.00 2019-11-29 23:13:10 2019-11-29 23:14:28 t 1 1 177854 658 0.00 2019-11-29 23:14:50 2019-11-29 23:15:07 t 1 1 177861 611 0.00 2019-11-29 23:11:52 2019-11-29 23:18:52 t 1 1 177862 551 0.00 2019-11-29 23:05:01 2019-11-29 23:20:14 t 1 1 177864 220 0.00 2019-11-29 23:20:43 2019-11-29 23:21:16 t 1 1 177867 658 0.00 2019-11-29 23:18:56 2019-11-29 23:22:20 t 1 1 177879 220 0.00 2019-11-29 23:25:51 2019-11-29 23:26:26 t 1 1 177883 675 0.00 2019-11-29 23:10:17 2019-11-29 23:27:20 t 1 1 177886 611 0.00 2019-11-29 23:21:45 2019-11-29 23:27:46 t 1 1 177890 681 0.00 2019-11-29 23:28:05 2019-11-29 23:29:52 t 1 1 177896 675 0.00 2019-11-29 23:27:20 2019-11-29 23:33:11 t 1 1 177898 673 0.00 2019-11-29 23:09:15 2019-11-29 23:33:24 t 1 1 177905 645 0.00 2019-11-29 23:28:20 2019-11-29 23:40:01 t 1 1 177912 658 0.00 2019-11-29 23:42:57 2019-11-29 23:45:32 t 1 1 177913 658 0.00 2019-11-29 23:45:45 2019-11-29 23:46:07 t 1 1 177916 562 0.00 2019-11-29 23:48:56 2019-11-29 23:49:09 t 1 1 177918 658 0.00 2019-11-29 23:46:28 2019-11-29 23:50:15 t 1 1 177919 451 0.00 2019-11-29 23:45:42 2019-11-29 23:52:39 t 1 1 177920 564 0.00 2019-11-29 22:58:10 2019-11-29 23:53:02 t 1 1 177923 658 0.00 2019-11-29 23:53:15 2019-11-29 23:53:21 t 1 1 177924 658 0.00 2019-11-29 23:53:42 2019-11-29 23:53:55 t 1 1 177928 667 0.00 2019-11-29 23:45:09 2019-11-29 23:57:14 t 1 1 177930 562 0.00 2019-11-29 23:59:38 2019-11-29 23:59:48 t 1 1 177931 658 0.00 2019-11-29 23:59:10 2019-11-30 00:01:45 t 1 1 177938 671 0.00 2019-11-30 00:07:22 2019-11-30 00:08:37 t 1 1 177939 562 0.00 2019-11-30 00:10:18 2019-11-30 00:10:38 t 1 1 177945 487 0.00 2019-11-29 19:51:05 2019-11-30 00:16:33 t 1 2 177947 544 0.00 2019-11-29 23:40:01 2019-11-30 00:16:45 t 1 1 177952 658 0.00 2019-11-30 00:19:33 2019-11-30 00:19:41 t 1 1 177954 671 0.00 2019-11-30 00:16:08 2019-11-30 00:20:44 t 1 1 177961 562 0.00 2019-11-30 00:34:00 2019-11-30 00:34:26 t 1 1 177964 545 0.00 2019-11-30 00:44:01 2019-11-30 00:46:53 t 1 1 177966 562 0.00 2019-11-30 00:55:42 2019-11-30 00:55:53 t 1 1 177968 562 0.00 2019-11-30 01:03:09 2019-11-30 01:03:30 t 1 1 177969 466 0.00 2019-11-30 01:09:26 2019-11-30 01:09:26 f 1 1 177970 456 0.00 2019-11-30 00:58:04 2019-11-30 01:10:35 t 1 1 177979 512 0.00 2019-11-30 01:29:03 2019-11-30 01:33:30 t 1 1 177981 562 0.00 2019-11-30 01:41:16 2019-11-30 01:41:48 t 1 1 177987 516 0.00 2019-11-30 01:54:01 2019-11-30 01:54:36 t 1 1 177996 516 0.00 2019-11-30 02:14:46 2019-11-30 02:17:28 t 1 1 177681 562 0.00 2019-11-29 21:04:26 2019-11-29 21:04:40 t 1 1 177685 627 0.00 2019-11-29 21:10:00 2019-11-29 21:10:09 t 1 1 177686 675 0.00 2019-11-29 20:53:25 2019-11-29 21:10:59 t 1 1 177688 422 0.00 2019-11-29 21:11:34 2019-11-29 21:11:34 f 1 1 177690 627 0.00 2019-11-29 21:11:11 2019-11-29 21:11:56 t 1 1 177695 562 0.00 2019-11-29 21:15:08 2019-11-29 21:15:19 t 1 1 177698 481 0.00 2019-11-29 19:15:11 2019-11-29 21:18:29 t 1 1 177703 528 0.00 2019-11-29 21:19:15 2019-11-29 21:22:02 t 1 1 177707 220 0.00 2019-11-29 21:01:53 2019-11-29 21:25:37 t 1 1 177711 681 0.00 2019-11-29 21:08:25 2019-11-29 21:27:47 t 1 1 177717 220 0.00 2019-11-29 21:26:56 2019-11-29 21:31:39 t 1 2 177726 660 0.00 2019-11-29 21:34:14 2019-11-29 21:46:01 t 1 1 177730 220 0.00 2019-11-29 21:41:22 2019-11-29 21:47:27 t 1 1 177731 220 0.00 2019-11-29 21:47:27 2019-11-29 21:49:11 t 1 1 177733 673 0.00 2019-11-29 21:05:51 2019-11-29 21:49:51 t 1 1 177734 623 0.00 2019-11-29 21:46:42 2019-11-29 21:51:40 t 1 1 177735 622 0.00 2019-11-29 21:11:51 2019-11-29 21:51:55 t 1 1 177737 637 0.00 2019-11-29 21:40:09 2019-11-29 21:52:37 t 1 1 177743 623 0.00 2019-11-29 21:55:27 2019-11-29 21:59:03 t 1 1 177745 639 0.00 2019-11-29 21:22:15 2019-11-29 22:01:14 t 1 1 177746 520 0.00 2019-11-29 21:53:46 2019-11-29 22:01:40 t 1 1 177749 681 0.00 2019-11-29 21:59:38 2019-11-29 22:04:36 t 1 1 177751 623 0.00 2019-11-29 22:02:11 2019-11-29 22:06:52 t 1 1 177757 623 0.00 2019-11-29 22:13:43 2019-11-29 22:13:44 t 1 1 177759 658 0.00 2019-11-29 21:39:01 2019-11-29 22:14:53 t 1 1 177763 220 0.00 2019-11-29 21:51:38 2019-11-29 22:20:01 t 1 1 177772 623 0.00 2019-11-29 22:25:03 2019-11-29 22:25:13 t 1 1 177774 623 0.00 2019-11-29 22:26:21 2019-11-29 22:26:30 t 1 1 177780 679 0.00 2019-11-29 22:32:15 2019-11-29 22:33:29 t 1 1 177784 451 0.00 2019-11-29 22:31:31 2019-11-29 22:36:44 t 1 1 177786 562 0.00 2019-11-29 22:36:32 2019-11-29 22:37:00 t 1 1 177788 681 0.00 2019-11-29 22:14:46 2019-11-29 22:37:22 t 1 1 177790 220 0.00 2019-11-29 22:37:22 2019-11-29 22:37:58 t 1 1 177795 623 0.00 2019-11-29 22:29:05 2019-11-29 22:40:39 t 1 1 177797 673 0.00 2019-11-29 22:27:36 2019-11-29 22:41:58 t 1 1 177802 658 0.00 2019-11-29 22:35:59 2019-11-29 22:44:17 t 1 1 177803 622 0.00 2019-11-29 22:43:42 2019-11-29 22:45:01 t 1 1 177809 658 0.00 2019-11-29 22:46:47 2019-11-29 22:52:17 t 1 1 177810 611 0.00 2019-11-29 22:43:59 2019-11-29 22:52:41 t 1 1 177815 544 0.00 2019-11-29 22:30:55 2019-11-29 22:56:32 t 1 1 177816 658 0.00 2019-11-29 22:57:13 2019-11-29 22:57:20 t 1 1 177820 562 0.00 2019-11-29 22:58:14 2019-11-29 22:58:30 t 1 1 177822 658 0.00 2019-11-29 22:58:25 2019-11-29 22:59:54 t 1 1 177823 220 0.00 2019-11-29 22:41:09 2019-11-29 23:00:20 t 1 2 177828 673 0.00 2019-11-29 22:53:38 2019-11-29 23:03:17 t 1 1 177829 658 0.00 2019-11-29 23:02:46 2019-11-29 23:03:25 t 1 1 177831 658 0.00 2019-11-29 23:03:31 2019-11-29 23:03:38 t 1 1 177833 658 0.00 2019-11-29 23:04:06 2019-11-29 23:04:18 t 1 1 177835 512 0.00 2019-11-29 22:42:05 2019-11-29 23:04:40 t 1 1 177840 625 0.00 2019-11-29 22:59:35 2019-11-29 23:07:57 t 1 1 177842 658 0.00 2019-11-29 23:08:03 2019-11-29 23:08:05 t 1 1 177843 658 0.00 2019-11-29 23:08:20 2019-11-29 23:08:26 t 1 1 177844 658 0.00 2019-11-29 23:08:47 2019-11-29 23:09:05 t 1 1 177847 658 0.00 2019-11-29 23:09:41 2019-11-29 23:09:58 t 1 1 177852 658 0.00 2019-11-29 23:11:37 2019-11-29 23:12:52 t 1 1 177859 607 0.00 2019-11-29 23:14:54 2019-11-29 23:17:59 t 1 1 177860 658 0.00 2019-11-29 23:17:37 2019-11-29 23:18:28 t 1 1 177868 220 0.00 2019-11-29 23:21:52 2019-11-29 23:22:29 t 1 1 177871 220 0.00 2019-11-29 23:23:36 2019-11-29 23:24:11 t 1 1 177873 645 0.00 2019-11-29 22:55:42 2019-11-29 23:24:42 t 1 1 177878 658 0.00 2019-11-29 23:25:42 2019-11-29 23:26:00 t 1 1 177881 481 0.00 2019-11-29 23:07:11 2019-11-29 23:26:54 t 1 1 177885 485 0.00 2019-11-29 23:21:26 2019-11-29 23:27:46 t 1 1 177888 607 0.00 2019-11-29 23:18:19 2019-11-29 23:29:02 t 1 1 177891 451 0.00 2019-11-29 22:36:43 2019-11-29 23:30:13 t 1 1 177892 658 0.00 2019-11-29 23:30:07 2019-11-29 23:30:29 t 1 1 177897 658 0.00 2019-11-29 23:30:51 2019-11-29 23:33:23 t 1 1 177902 658 0.00 2019-11-29 23:37:59 2019-11-29 23:38:18 t 1 1 177903 562 0.00 2019-11-29 23:38:06 2019-11-29 23:38:25 t 1 1 177906 658 0.00 2019-11-29 23:38:24 2019-11-29 23:41:45 t 1 1 177908 645 0.00 2019-11-29 23:41:08 2019-11-29 23:42:12 t 1 1 177909 658 0.00 2019-11-29 23:42:25 2019-11-29 23:42:38 t 1 1 177911 667 0.00 2019-11-29 23:32:39 2019-11-29 23:45:09 t 1 1 177915 673 0.00 2019-11-29 23:33:24 2019-11-29 23:48:16 t 1 1 177917 510 0.00 2019-11-29 20:52:05 2019-11-29 23:49:23 t 1 1 177922 658 0.00 2019-11-29 23:50:38 2019-11-29 23:53:09 t 1 1 177926 679 0.00 2019-11-29 23:53:44 2019-11-29 23:54:17 t 1 1 177927 675 0.00 2019-11-29 23:53:01 2019-11-29 23:54:50 t 1 1 177929 658 0.00 2019-11-29 23:54:49 2019-11-29 23:58:48 t 1 1 177932 673 0.00 2019-11-29 23:48:16 2019-11-30 00:01:52 t 1 1 177933 658 0.00 2019-11-30 00:01:51 2019-11-30 00:02:49 t 1 1 177934 658 0.00 2019-11-30 00:03:24 2019-11-30 00:03:50 t 1 1 177936 671 0.00 2019-11-29 23:57:33 2019-11-30 00:07:23 t 1 1 177941 667 0.00 2019-11-29 23:57:14 2019-11-30 00:11:10 t 1 1 177942 562 0.00 2019-11-30 00:12:39 2019-11-30 00:12:59 t 1 1 177948 658 0.00 2019-11-30 00:16:43 2019-11-30 00:17:01 t 1 1 177950 663 0.00 2019-11-30 00:09:43 2019-11-30 00:19:14 t 1 1 177956 645 0.00 2019-11-30 00:06:36 2019-11-30 00:20:49 t 1 1 177957 667 0.00 2019-11-30 00:11:10 2019-11-30 00:23:28 t 1 1 177959 667 0.00 2019-11-30 00:23:28 2019-11-30 00:25:47 t 1 1 177962 591 0.00 2019-11-30 00:41:29 2019-11-30 00:41:55 t 1 1 177963 562 0.00 2019-11-30 00:44:57 2019-11-30 00:45:07 t 1 1 177972 607 0.00 2019-11-30 00:15:41 2019-11-30 01:13:13 t 1 1 177973 562 0.00 2019-11-30 01:13:59 2019-11-30 01:14:15 t 1 1 177975 544 0.00 2019-11-30 00:55:57 2019-11-30 01:24:10 t 1 1 177976 562 0.00 2019-11-30 01:24:30 2019-11-30 01:24:56 t 1 1 177977 512 0.00 2019-11-30 01:11:09 2019-11-30 01:29:03 t 1 1 177980 562 0.00 2019-11-30 01:35:22 2019-11-30 01:35:41 t 1 1 177984 658 0.00 2019-11-30 01:16:41 2019-11-30 01:52:30 t 1 1 177986 681 0.00 2019-11-29 23:34:58 2019-11-30 01:53:43 t 1 1 177988 562 0.00 2019-11-30 01:48:54 2019-11-30 01:55:16 t 1 1 177989 516 0.00 2019-11-30 01:54:49 2019-11-30 01:55:29 t 1 1 177990 665 0.00 2019-11-30 00:05:12 2019-11-30 01:56:55 t 1 1 177991 516 0.00 2019-11-30 01:55:36 2019-11-30 01:58:04 t 1 1 177992 516 0.00 2019-11-30 01:59:48 2019-11-30 02:00:51 t 1 1 177997 516 0.00 2019-11-30 02:17:33 2019-11-30 02:17:51 t 1 1 177998 665 0.00 2019-11-30 02:12:44 2019-11-30 02:19:47 t 1 1 177684 637 0.00 2019-11-29 20:55:36 2019-11-29 21:08:52 t 1 1 177692 627 0.00 2019-11-29 21:12:44 2019-11-29 21:12:49 t 1 1 177694 671 0.00 2019-11-29 21:13:34 2019-11-29 21:15:07 t 1 1 177699 679 0.00 2019-11-29 21:17:41 2019-11-29 21:18:58 t 1 1 177700 566 0.00 2019-11-29 21:01:12 2019-11-29 21:19:34 t 1 1 177701 637 0.00 2019-11-29 21:08:52 2019-11-29 21:19:37 t 1 1 177702 645 0.00 2019-11-29 21:20:27 2019-11-29 21:21:58 t 1 1 177706 220 0.00 2019-11-29 18:31:00 2019-11-29 21:25:25 t 1 2 177708 562 0.00 2019-11-29 21:25:47 2019-11-29 21:26:05 t 1 1 177709 675 0.00 2019-11-29 21:24:55 2019-11-29 21:26:23 t 1 1 177716 566 0.00 2019-11-29 21:19:34 2019-11-29 21:30:40 t 1 1 177718 416 0.00 2019-11-29 21:31:46 2019-11-29 21:31:46 f 1 1 177719 416 0.00 2019-11-29 21:32:37 2019-11-29 21:32:37 f 1 1 177721 562 0.00 2019-11-29 21:36:24 2019-11-29 21:36:54 t 1 1 177723 514 0.00 2019-11-29 21:37:35 2019-11-29 21:38:51 t 1 1 177724 637 0.00 2019-11-29 21:19:37 2019-11-29 21:39:53 t 1 1 177727 562 0.00 2019-11-29 21:45:40 2019-11-29 21:46:15 t 1 1 177729 611 0.00 2019-11-29 21:45:17 2019-11-29 21:46:31 t 1 1 177732 645 0.00 2019-11-29 21:47:57 2019-11-29 21:49:30 t 1 1 177742 545 0.00 2019-11-29 21:29:58 2019-11-29 21:57:07 t 1 1 177744 220 0.00 2019-11-29 21:30:52 2019-11-29 22:00:57 t 1 2 177747 623 0.00 2019-11-29 22:01:56 2019-11-29 22:02:02 t 1 1 177748 663 0.00 2019-11-29 21:31:05 2019-11-29 22:03:02 t 1 1 177755 623 0.00 2019-11-29 22:09:56 2019-11-29 22:09:59 t 1 1 177758 623 0.00 2019-11-29 22:13:56 2019-11-29 22:14:11 t 1 1 177761 562 0.00 2019-11-29 22:15:15 2019-11-29 22:15:26 t 1 1 177766 637 0.00 2019-11-29 21:54:05 2019-11-29 22:21:52 t 1 1 177768 481 0.00 2019-11-29 22:21:39 2019-11-29 22:22:51 t 1 1 177770 658 0.00 2019-11-29 22:17:01 2019-11-29 22:24:09 t 1 1 177773 562 0.00 2019-11-29 22:25:57 2019-11-29 22:26:16 t 1 1 177775 220 0.00 2019-11-29 22:26:27 2019-11-29 22:27:33 t 1 1 177777 645 0.00 2019-11-29 22:19:51 2019-11-29 22:29:52 t 1 1 177781 675 0.00 2019-11-29 22:31:35 2019-11-29 22:34:35 t 1 1 177785 220 0.00 2019-11-29 22:29:38 2019-11-29 22:36:46 t 1 1 177787 667 0.00 2019-11-29 22:36:34 2019-11-29 22:37:17 t 1 1 177792 675 0.00 2019-11-29 22:36:00 2019-11-29 22:38:03 t 1 1 177793 667 0.00 2019-11-29 22:37:17 2019-11-29 22:38:55 t 1 1 177794 681 0.00 2019-11-29 22:37:21 2019-11-29 22:39:33 t 1 1 177796 631 0.00 2019-11-29 22:40:57 2019-11-29 22:41:39 t 1 1 177799 551 0.00 2019-11-29 18:06:23 2019-11-29 22:42:59 t 1 1 177801 611 0.00 2019-11-29 22:32:14 2019-11-29 22:44:00 t 1 1 177805 658 0.00 2019-11-29 22:45:13 2019-11-29 22:46:18 t 1 1 177808 667 0.00 2019-11-29 22:39:01 2019-11-29 22:50:29 t 1 1 177811 673 0.00 2019-11-29 22:41:58 2019-11-29 22:53:38 t 1 1 177814 658 0.00 2019-11-29 22:55:10 2019-11-29 22:55:26 t 1 1 177819 681 0.00 2019-11-29 22:55:38 2019-11-29 22:58:12 t 1 1 177826 658 0.00 2019-11-29 23:02:21 2019-11-29 23:02:41 t 1 1 177834 679 0.00 2019-11-29 23:00:28 2019-11-29 23:04:33 t 1 1 177836 551 0.00 2019-11-29 22:42:59 2019-11-29 23:05:01 t 1 1 177838 658 0.00 2019-11-29 23:05:08 2019-11-29 23:05:35 t 1 1 177846 673 0.00 2019-11-29 23:03:17 2019-11-29 23:09:15 t 1 1 177850 611 0.00 2019-11-29 23:02:31 2019-11-29 23:11:52 t 1 1 177851 658 0.00 2019-11-29 23:12:14 2019-11-29 23:12:48 t 1 1 177855 658 0.00 2019-11-29 23:15:37 2019-11-29 23:15:44 t 1 1 177856 658 0.00 2019-11-29 23:16:24 2019-11-29 23:16:26 t 1 1 177857 658 0.00 2019-11-29 23:16:40 2019-11-29 23:16:59 t 1 1 177858 562 0.00 2019-11-29 23:16:48 2019-11-29 23:17:57 t 1 1 177863 220 0.00 2019-11-29 22:38:31 2019-11-29 23:20:43 t 1 1 177865 667 0.00 2019-11-29 23:02:53 2019-11-29 23:21:17 t 1 1 177866 220 0.00 2019-11-29 23:21:15 2019-11-29 23:21:52 t 1 1 177869 220 0.00 2019-11-29 23:22:28 2019-11-29 23:23:05 t 1 1 177870 220 0.00 2019-11-29 23:23:05 2019-11-29 23:23:36 t 1 1 177872 658 0.00 2019-11-29 23:24:03 2019-11-29 23:24:22 t 1 1 177874 220 0.00 2019-11-29 23:24:11 2019-11-29 23:24:44 t 1 1 177875 220 0.00 2019-11-29 23:24:44 2019-11-29 23:25:19 t 1 1 177876 658 0.00 2019-11-29 23:24:58 2019-11-29 23:25:29 t 1 1 177877 220 0.00 2019-11-29 23:25:18 2019-11-29 23:25:52 t 1 1 177880 658 0.00 2019-11-29 23:26:06 2019-11-29 23:26:32 t 1 1 177882 220 0.00 2019-11-29 23:26:26 2019-11-29 23:27:03 t 1 1 177884 562 0.00 2019-11-29 23:27:27 2019-11-29 23:27:44 t 1 1 177887 658 0.00 2019-11-29 23:27:23 2019-11-29 23:29:02 t 1 1 177889 578 0.00 2019-11-29 23:10:00 2019-11-29 23:29:28 t 1 1 177893 658 0.00 2019-11-29 23:30:43 2019-11-29 23:30:46 t 1 1 177894 679 0.00 2019-11-29 23:23:42 2019-11-29 23:31:20 t 1 1 177895 667 0.00 2019-11-29 23:21:17 2019-11-29 23:32:39 t 1 1 177899 658 0.00 2019-11-29 23:34:53 2019-11-29 23:34:57 t 1 1 177900 658 0.00 2019-11-29 23:35:02 2019-11-29 23:35:56 t 1 1 177901 658 0.00 2019-11-29 23:36:10 2019-11-29 23:36:45 t 1 1 177904 544 0.00 2019-11-29 23:01:44 2019-11-29 23:40:01 t 1 1 177907 658 0.00 2019-11-29 23:41:50 2019-11-29 23:41:57 t 1 1 177910 665 0.00 2019-11-29 22:49:02 2019-11-29 23:44:28 t 1 1 177914 456 0.00 2019-11-29 23:32:36 2019-11-29 23:47:52 t 1 1 177921 564 0.00 2019-11-29 23:53:02 2019-11-29 23:53:07 t 1 1 177925 591 0.00 2019-11-29 23:53:12 2019-11-29 23:54:06 t 1 1 177935 665 0.00 2019-11-29 23:44:28 2019-11-30 00:05:13 t 1 1 177937 675 0.00 2019-11-30 00:04:26 2019-11-30 00:08:29 t 1 1 177940 671 0.00 2019-11-30 00:08:36 2019-11-30 00:11:02 t 1 1 177943 607 0.00 2019-11-29 23:35:34 2019-11-30 00:15:41 t 1 1 177944 671 0.00 2019-11-30 00:11:47 2019-11-30 00:16:08 t 1 1 177946 658 0.00 2019-11-30 00:04:11 2019-11-30 00:16:38 t 1 1 177949 673 0.00 2019-11-30 00:01:52 2019-11-30 00:17:39 t 1 1 177951 658 0.00 2019-11-30 00:17:45 2019-11-30 00:19:27 t 1 1 177953 658 0.00 2019-11-30 00:19:54 2019-11-30 00:20:26 t 1 1 177955 658 0.00 2019-11-30 00:20:31 2019-11-30 00:20:48 t 1 1 177958 562 0.00 2019-11-30 00:23:28 2019-11-30 00:23:38 t 1 1 177960 673 0.00 2019-11-30 00:17:39 2019-11-30 00:26:34 t 1 1 177965 658 0.00 2019-11-30 00:21:17 2019-11-30 00:55:18 t 1 1 177967 544 0.00 2019-11-30 00:16:45 2019-11-30 00:55:57 t 1 1 177971 512 0.00 2019-11-30 00:56:09 2019-11-30 01:11:09 t 1 1 177974 658 0.00 2019-11-30 00:55:18 2019-11-30 01:16:41 t 1 1 177978 607 0.00 2019-11-30 01:30:07 2019-11-30 01:32:22 t 1 1 177982 663 0.00 2019-11-30 01:40:22 2019-11-30 01:43:47 t 1 1 177983 562 0.00 2019-11-30 01:45:23 2019-11-30 01:46:22 t 1 1 177985 516 0.00 2019-11-30 01:52:16 2019-11-30 01:53:34 t 1 1 177993 562 0.00 2019-11-30 02:05:48 2019-11-30 02:05:58 t 1 1 177994 665 0.00 2019-11-30 01:57:09 2019-11-30 02:12:44 t 1 1 177995 562 0.00 2019-11-30 02:16:31 2019-11-30 02:16:45 t 1 1 177999 681 0.00 2019-11-30 01:53:43 2019-11-30 02:23:05 t 1 1 178000 562 0.00 2019-11-30 02:27:13 2019-11-30 02:27:24 t 1 1 178002 681 0.00 2019-11-30 02:23:04 2019-11-30 02:42:19 t 1 1 178003 562 0.00 2019-11-30 02:48:43 2019-11-30 02:48:53 t 1 1 178004 516 0.00 2019-11-30 02:51:49 2019-11-30 02:51:51 t 1 1 178005 516 0.00 2019-11-30 02:53:04 2019-11-30 02:53:12 t 1 1 178006 516 0.00 2019-11-30 02:53:17 2019-11-30 02:53:42 t 1 1 178008 665 0.00 2019-11-30 02:19:47 2019-11-30 02:58:30 t 1 1 178010 562 0.00 2019-11-30 02:59:28 2019-11-30 02:59:37 t 1 1 178022 663 0.00 2019-11-30 03:50:24 2019-11-30 03:51:32 t 1 1 178024 562 0.00 2019-11-30 04:03:58 2019-11-30 04:04:06 t 1 1 178025 663 0.00 2019-11-30 03:55:05 2019-11-30 04:11:50 t 1 1 178028 562 0.00 2019-11-30 04:22:22 2019-11-30 04:22:36 t 1 1 178031 625 0.00 2019-11-30 04:18:40 2019-11-30 04:27:59 t 1 1 178039 639 0.00 2019-11-30 05:06:45 2019-11-30 05:07:46 t 1 1 178044 639 0.00 2019-11-30 05:16:05 2019-11-30 05:16:38 t 1 1 178047 639 0.00 2019-11-30 05:19:08 2019-11-30 05:21:34 t 1 1 178049 665 0.00 2019-11-30 02:58:30 2019-11-30 05:27:13 t 1 1 178050 562 0.00 2019-11-30 05:37:24 2019-11-30 05:37:49 t 1 1 178053 562 0.00 2019-11-30 05:58:24 2019-11-30 05:58:34 t 1 1 178055 430 0.00 2019-11-30 05:53:34 2019-11-30 06:03:03 t 1 1 178059 625 0.00 2019-11-30 04:27:59 2019-11-30 06:07:55 t 1 1 178060 430 0.00 2019-11-30 06:08:05 2019-11-30 06:08:12 t 1 1 178061 220 0.00 2019-11-30 06:04:33 2019-11-30 06:08:51 t 1 2 178062 562 0.00 2019-11-30 06:09:07 2019-11-30 06:09:20 t 1 1 178068 430 0.00 2019-11-30 06:13:21 2019-11-30 06:13:27 t 1 1 178069 485 0.00 2019-11-30 06:12:42 2019-11-30 06:14:40 t 1 1 178070 520 0.00 2019-11-30 06:13:33 2019-11-30 06:16:05 t 1 1 178071 430 0.00 2019-11-30 06:16:14 2019-11-30 06:16:21 t 1 1 178076 663 0.00 2019-11-30 06:13:13 2019-11-30 06:20:07 t 1 1 178081 220 0.00 2019-11-29 23:27:02 2019-11-30 06:26:29 t 1 1 178082 663 0.00 2019-11-30 06:20:07 2019-11-30 06:27:20 t 1 1 178083 663 0.00 2019-11-30 06:27:20 2019-11-30 06:28:55 t 1 1 178085 430 0.00 2019-11-30 06:28:32 2019-11-30 06:30:02 t 1 1 178089 430 0.00 2019-11-30 06:32:06 2019-11-30 06:32:20 t 1 1 178092 430 0.00 2019-11-30 06:31:06 2019-11-30 06:33:02 t 1 1 178094 516 0.00 2019-11-30 06:27:06 2019-11-30 06:34:03 t 1 1 178098 514 0.00 2019-11-30 02:47:18 2019-11-30 06:43:00 t 1 1 178102 430 0.00 2019-11-30 06:47:51 2019-11-30 06:49:02 t 1 1 178105 514 0.00 2019-11-30 06:48:50 2019-11-30 06:49:48 t 1 1 178111 514 0.00 2019-11-30 06:50:39 2019-11-30 06:51:58 t 1 1 178112 445 0.00 2019-11-30 06:31:27 2019-11-30 06:52:18 t 1 1 178116 514 0.00 2019-11-30 06:52:48 2019-11-30 06:53:34 t 1 1 178117 514 0.00 2019-11-30 06:53:34 2019-11-30 06:54:21 t 1 1 178120 514 0.00 2019-11-30 06:54:52 2019-11-30 06:55:43 t 1 1 178121 514 0.00 2019-11-30 06:56:01 2019-11-30 06:56:26 t 1 1 178126 514 0.00 2019-11-30 06:59:20 2019-11-30 06:59:59 t 1 1 178129 514 0.00 2019-11-30 07:01:06 2019-11-30 07:02:08 t 1 1 178133 645 0.00 2019-11-30 07:02:06 2019-11-30 07:04:15 t 1 1 178134 514 0.00 2019-11-30 07:03:34 2019-11-30 07:04:37 t 1 1 178135 545 0.00 2019-11-30 06:59:57 2019-11-30 07:05:29 t 1 1 178140 639 0.00 2019-11-30 07:04:28 2019-11-30 07:16:05 t 1 1 178141 416 0.00 2019-11-30 07:20:30 2019-11-30 07:20:30 f 1 1 178143 637 0.00 2019-11-30 06:32:30 2019-11-30 07:21:15 t 1 1 178148 665 0.00 2019-11-30 07:34:12 2019-11-30 07:42:12 t 1 1 178150 675 0.00 2019-11-30 07:35:17 2019-11-30 07:42:20 t 1 1 178151 445 0.00 2019-11-30 07:06:11 2019-11-30 07:43:34 t 1 1 178154 658 0.00 2019-11-30 07:52:40 2019-11-30 07:53:24 t 1 1 178156 658 0.00 2019-11-30 07:54:18 2019-11-30 07:55:18 t 1 1 178160 658 0.00 2019-11-30 07:55:36 2019-11-30 07:56:37 t 1 1 178168 658 0.00 2019-11-30 08:00:33 2019-11-30 08:03:14 t 1 1 178173 562 0.00 2019-11-30 08:07:32 2019-11-30 08:08:35 t 1 1 178175 675 0.00 2019-11-30 08:04:12 2019-11-30 08:09:45 t 1 1 178184 658 0.00 2019-11-30 08:15:03 2019-11-30 08:15:10 t 1 1 178193 562 0.00 2019-11-30 08:24:57 2019-11-30 08:27:08 t 1 1 178194 639 0.00 2019-11-30 08:26:24 2019-11-30 08:28:06 t 1 1 178196 562 0.00 2019-11-30 08:29:14 2019-11-30 08:29:41 t 1 1 178197 422 0.00 2019-11-30 08:30:11 2019-11-30 08:30:11 f 1 1 178199 422 0.00 2019-11-30 08:30:41 2019-11-30 08:30:41 f 1 1 178200 658 0.00 2019-11-30 08:27:48 2019-11-30 08:31:44 t 1 1 178202 645 0.00 2019-11-30 08:30:48 2019-11-30 08:32:19 t 1 1 178205 637 0.00 2019-11-30 07:58:50 2019-11-30 08:37:16 t 1 1 178207 591 0.00 2019-11-30 08:32:16 2019-11-30 08:37:43 t 1 1 178213 658 0.00 2019-11-30 08:40:53 2019-11-30 08:41:13 t 1 1 178215 562 0.00 2019-11-30 08:44:22 2019-11-30 08:44:34 t 1 1 178216 673 0.00 2019-11-30 08:44:37 2019-11-30 08:46:18 t 1 1 178218 562 0.00 2019-11-30 08:45:45 2019-11-30 08:46:59 t 1 1 178219 658 0.00 2019-11-30 08:47:08 2019-11-30 08:47:30 t 1 1 178223 675 0.00 2019-11-30 08:50:56 2019-11-30 08:51:02 t 1 1 178225 658 0.00 2019-11-30 08:53:36 2019-11-30 08:53:41 t 1 1 178230 658 0.00 2019-11-30 08:57:02 2019-11-30 08:58:17 t 1 1 178234 658 0.00 2019-11-30 09:01:59 2019-11-30 09:02:06 t 1 1 178237 658 0.00 2019-11-30 09:04:39 2019-11-30 09:04:47 t 1 1 178238 658 0.00 2019-11-30 09:05:23 2019-11-30 09:05:42 t 1 1 178240 611 0.00 2019-11-30 08:51:36 2019-11-30 09:07:02 t 1 1 178244 658 0.00 2019-11-30 09:08:01 2019-11-30 09:08:39 t 1 1 178247 622 0.00 2019-11-30 09:04:07 2019-11-30 09:10:03 t 1 1 178248 637 0.00 2019-11-30 09:04:49 2019-11-30 09:10:20 t 1 1 178250 658 0.00 2019-11-30 09:10:43 2019-11-30 09:11:33 t 1 1 178252 658 0.00 2019-11-30 09:12:15 2019-11-30 09:12:27 t 1 1 178253 658 0.00 2019-11-30 09:13:03 2019-11-30 09:13:41 t 1 1 178255 658 0.00 2019-11-30 09:15:56 2019-11-30 09:16:29 t 1 1 178257 456 0.00 2019-11-30 09:09:55 2019-11-30 09:17:22 t 1 1 178259 658 0.00 2019-11-30 09:17:29 2019-11-30 09:17:44 t 1 1 178261 615 0.00 2019-11-30 09:14:36 2019-11-30 09:21:16 t 1 1 178262 658 0.00 2019-11-30 09:21:08 2019-11-30 09:22:06 t 1 1 178264 658 0.00 2019-11-30 09:23:22 2019-11-30 09:23:52 t 1 1 178265 658 0.00 2019-11-30 09:24:42 2019-11-30 09:24:47 t 1 1 178269 658 0.00 2019-11-30 09:28:00 2019-11-30 09:28:07 t 1 1 178270 658 0.00 2019-11-30 09:28:13 2019-11-30 09:28:29 t 1 1 178272 658 0.00 2019-11-30 09:28:34 2019-11-30 09:28:52 t 1 1 178275 658 0.00 2019-11-30 09:29:50 2019-11-30 09:31:38 t 1 1 178276 658 0.00 2019-11-30 09:31:43 2019-11-30 09:31:47 t 1 1 178278 658 0.00 2019-11-30 09:35:02 2019-11-30 09:35:09 t 1 1 178282 445 0.00 2019-11-30 09:34:29 2019-11-30 09:36:04 t 1 1 178286 658 0.00 2019-11-30 09:38:16 2019-11-30 09:38:29 t 1 1 178294 516 0.00 2019-11-30 09:41:26 2019-11-30 09:41:39 t 1 1 178001 562 0.00 2019-11-30 02:37:46 2019-11-30 02:38:07 t 1 1 178007 544 0.00 2019-11-30 02:25:18 2019-11-30 02:56:36 t 1 1 178009 663 0.00 2019-11-30 01:43:46 2019-11-30 02:58:47 t 1 1 178017 562 0.00 2019-11-30 03:20:47 2019-11-30 03:21:08 t 1 1 178020 622 0.00 2019-11-30 03:26:48 2019-11-30 03:36:48 t 1 1 178021 562 0.00 2019-11-30 03:42:28 2019-11-30 03:42:56 t 1 1 178023 562 0.00 2019-11-30 03:53:02 2019-11-30 03:53:22 t 1 1 178026 562 0.00 2019-11-30 04:11:28 2019-11-30 04:11:51 t 1 1 178032 516 0.00 2019-11-30 04:31:07 2019-11-30 04:31:22 t 1 1 178034 562 0.00 2019-11-30 04:43:53 2019-11-30 04:44:02 t 1 1 178035 562 0.00 2019-11-30 04:54:35 2019-11-30 04:54:47 t 1 1 178037 639 0.00 2019-11-30 05:04:53 2019-11-30 05:04:59 t 1 1 178040 639 0.00 2019-11-30 05:10:44 2019-11-30 05:11:24 t 1 1 178041 639 0.00 2019-11-30 05:12:33 2019-11-30 05:12:47 t 1 1 178042 639 0.00 2019-11-30 05:13:45 2019-11-30 05:13:52 t 1 1 178043 562 0.00 2019-11-30 05:16:07 2019-11-30 05:16:18 t 1 1 178051 562 0.00 2019-11-30 05:48:13 2019-11-30 05:48:33 t 1 1 178052 663 0.00 2019-11-30 05:39:17 2019-11-30 05:56:29 t 1 1 178054 445 0.00 2019-11-29 23:06:01 2019-11-30 06:00:22 t 1 1 178057 430 0.00 2019-11-30 06:03:02 2019-11-30 06:04:09 t 1 1 178058 445 0.00 2019-11-30 06:01:17 2019-11-30 06:05:11 t 1 1 178064 220 0.00 2019-11-30 06:09:23 2019-11-30 06:09:52 t 1 2 178073 430 0.00 2019-11-30 06:18:46 2019-11-30 06:19:31 t 1 1 178074 625 0.00 2019-11-30 06:08:07 2019-11-30 06:19:57 t 1 1 178077 430 0.00 2019-11-30 06:20:39 2019-11-30 06:21:16 t 1 1 178084 430 0.00 2019-11-30 06:27:43 2019-11-30 06:29:02 t 1 1 178086 562 0.00 2019-11-30 06:30:39 2019-11-30 06:30:48 t 1 1 178088 663 0.00 2019-11-30 06:28:55 2019-11-30 06:32:16 t 1 1 178090 637 0.00 2019-11-30 06:17:46 2019-11-30 06:32:30 t 1 1 178096 516 0.00 2019-11-30 06:38:37 2019-11-30 06:40:06 t 1 1 178097 562 0.00 2019-11-30 06:41:26 2019-11-30 06:41:35 t 1 1 178100 520 0.00 2019-11-30 06:41:03 2019-11-30 06:46:51 t 1 1 178103 430 0.00 2019-11-30 06:47:41 2019-11-30 06:49:03 t 1 1 178104 430 0.00 2019-11-30 06:49:27 2019-11-30 06:49:44 t 1 1 178107 430 0.00 2019-11-30 06:50:22 2019-11-30 06:50:24 t 1 1 178108 514 0.00 2019-11-30 06:49:48 2019-11-30 06:50:40 t 1 1 178110 430 0.00 2019-11-30 06:50:37 2019-11-30 06:51:39 t 1 1 178114 514 0.00 2019-11-30 06:51:58 2019-11-30 06:52:48 t 1 1 178118 514 0.00 2019-11-30 06:54:20 2019-11-30 06:54:46 t 1 1 178122 445 0.00 2019-11-30 06:52:17 2019-11-30 06:57:15 t 1 1 178123 514 0.00 2019-11-30 06:56:33 2019-11-30 06:57:20 t 1 1 178125 514 0.00 2019-11-30 06:57:19 2019-11-30 06:58:56 t 1 1 178127 514 0.00 2019-11-30 06:59:59 2019-11-30 07:00:37 t 1 1 178130 673 0.00 2019-11-30 07:00:19 2019-11-30 07:02:09 t 1 1 178132 514 0.00 2019-11-30 07:02:53 2019-11-30 07:03:24 t 1 1 178136 445 0.00 2019-11-30 06:57:13 2019-11-30 07:05:34 t 1 1 178137 514 0.00 2019-11-30 07:07:25 2019-11-30 07:08:46 t 1 1 178138 514 0.00 2019-11-30 07:10:15 2019-11-30 07:11:21 t 1 1 178139 562 0.00 2019-11-30 07:12:56 2019-11-30 07:13:10 t 1 1 178146 637 0.00 2019-11-30 07:26:32 2019-11-30 07:29:27 t 1 1 178147 562 0.00 2019-11-30 07:31:25 2019-11-30 07:31:35 t 1 1 178149 562 0.00 2019-11-30 07:42:02 2019-11-30 07:42:16 t 1 1 178153 562 0.00 2019-11-30 07:52:34 2019-11-30 07:52:58 t 1 1 178157 658 0.00 2019-11-30 07:55:24 2019-11-30 07:55:31 t 1 1 178158 591 0.00 2019-11-30 07:42:54 2019-11-30 07:56:26 t 1 1 178163 658 0.00 2019-11-30 07:57:13 2019-11-30 07:57:26 t 1 1 178165 658 0.00 2019-11-30 07:58:23 2019-11-30 07:59:53 t 1 1 178170 658 0.00 2019-11-30 08:07:02 2019-11-30 08:07:05 t 1 1 178172 658 0.00 2019-11-30 08:08:04 2019-11-30 08:08:11 t 1 1 178174 639 0.00 2019-11-30 07:17:06 2019-11-30 08:08:58 t 1 1 178176 481 0.00 2019-11-30 08:02:26 2019-11-30 08:09:51 t 1 1 178177 562 0.00 2019-11-30 08:10:45 2019-11-30 08:11:46 t 1 1 178181 639 0.00 2019-11-30 08:10:05 2019-11-30 08:14:01 t 1 1 178182 658 0.00 2019-11-30 08:14:26 2019-11-30 08:14:29 t 1 1 178183 658 0.00 2019-11-30 08:14:43 2019-11-30 08:14:58 t 1 1 178185 639 0.00 2019-11-30 08:14:39 2019-11-30 08:16:06 t 1 1 178187 639 0.00 2019-11-30 08:17:46 2019-11-30 08:22:32 t 1 1 178189 675 0.00 2019-11-30 08:19:23 2019-11-30 08:23:17 t 1 1 178191 658 0.00 2019-11-30 08:25:33 2019-11-30 08:25:39 t 1 1 178198 422 0.00 2019-11-30 08:30:32 2019-11-30 08:30:32 f 1 1 178201 499 0.00 2019-11-30 08:30:01 2019-11-30 08:31:56 t 1 1 178204 445 0.00 2019-11-30 07:57:16 2019-11-30 08:35:42 t 1 1 178208 658 0.00 2019-11-30 08:35:08 2019-11-30 08:37:49 t 1 1 178209 562 0.00 2019-11-30 08:38:24 2019-11-30 08:38:33 t 1 1 178211 615 0.00 2019-11-30 08:33:03 2019-11-30 08:40:11 t 1 1 178212 658 0.00 2019-11-30 08:40:04 2019-11-30 08:40:34 t 1 1 178220 637 0.00 2019-11-30 08:38:41 2019-11-30 08:47:57 t 1 1 178221 639 0.00 2019-11-30 08:28:52 2019-11-30 08:48:33 t 1 1 178227 658 0.00 2019-11-30 08:56:26 2019-11-30 08:56:57 t 1 1 178228 673 0.00 2019-11-30 08:53:17 2019-11-30 08:57:33 t 1 1 178231 658 0.00 2019-11-30 08:59:30 2019-11-30 08:59:34 t 1 1 178232 637 0.00 2019-11-30 08:53:59 2019-11-30 09:00:56 t 1 1 178233 658 0.00 2019-11-30 09:01:00 2019-11-30 09:01:54 t 1 1 178235 658 0.00 2019-11-30 09:02:43 2019-11-30 09:03:31 t 1 1 178236 639 0.00 2019-11-30 08:49:21 2019-11-30 09:04:25 t 1 1 178241 611 0.00 2019-11-30 09:07:02 2019-11-30 09:07:02 t 1 1 178245 562 0.00 2019-11-30 09:07:56 2019-11-30 09:08:49 t 1 1 178249 562 0.00 2019-11-30 09:10:30 2019-11-30 09:10:46 t 1 1 178254 562 0.00 2019-11-30 09:12:25 2019-11-30 09:13:41 t 1 1 178256 639 0.00 2019-11-30 09:06:42 2019-11-30 09:16:55 t 1 1 178258 516 0.00 2019-11-30 09:16:17 2019-11-30 09:17:27 t 1 1 178260 658 0.00 2019-11-30 09:18:21 2019-11-30 09:20:12 t 1 1 178266 562 0.00 2019-11-30 09:20:39 2019-11-30 09:24:49 t 1 1 178267 658 0.00 2019-11-30 09:26:15 2019-11-30 09:26:43 t 1 1 178268 658 0.00 2019-11-30 09:27:19 2019-11-30 09:27:39 t 1 1 178273 658 0.00 2019-11-30 09:29:20 2019-11-30 09:29:37 t 1 1 178277 658 0.00 2019-11-30 09:32:26 2019-11-30 09:34:56 t 1 1 178279 671 0.00 2019-11-30 09:30:44 2019-11-30 09:35:29 t 1 1 178283 615 0.00 2019-11-30 09:21:16 2019-11-30 09:37:25 t 1 1 178284 658 0.00 2019-11-30 09:36:58 2019-11-30 09:37:55 t 1 1 178287 456 0.00 2019-11-30 09:29:30 2019-11-30 09:38:31 t 1 1 178289 445 0.00 2019-11-30 09:38:18 2019-11-30 09:39:32 t 1 1 178290 673 0.00 2019-11-30 09:39:43 2019-11-30 09:40:36 t 1 1 178293 658 0.00 2019-11-30 09:40:02 2019-11-30 09:41:27 t 1 1 178295 658 0.00 2019-11-30 09:41:33 2019-11-30 09:41:40 t 1 1 178296 673 0.00 2019-11-30 09:40:36 2019-11-30 09:41:53 t 1 1 178297 516 0.00 2019-11-30 09:41:48 2019-11-30 09:41:56 t 1 1 178011 663 0.00 2019-11-30 02:58:47 2019-11-30 03:01:36 t 1 1 178012 544 0.00 2019-11-30 02:56:36 2019-11-30 03:04:12 t 1 1 178013 544 0.00 2019-11-30 03:04:12 2019-11-30 03:06:50 t 1 1 178014 622 0.00 2019-11-30 02:46:21 2019-11-30 03:08:20 t 1 1 178015 562 0.00 2019-11-30 03:10:13 2019-11-30 03:10:21 t 1 1 178016 639 0.00 2019-11-29 22:57:31 2019-11-30 03:13:00 t 1 1 178018 622 0.00 2019-11-30 03:08:20 2019-11-30 03:26:48 t 1 1 178019 562 0.00 2019-11-30 03:31:31 2019-11-30 03:31:51 t 1 1 178027 625 0.00 2019-11-30 03:52:51 2019-11-30 04:18:40 t 1 1 178029 622 0.00 2019-11-30 04:23:58 2019-11-30 04:24:24 t 1 1 178030 622 0.00 2019-11-30 04:24:24 2019-11-30 04:25:37 t 1 1 178033 562 0.00 2019-11-30 04:32:58 2019-11-30 04:33:21 t 1 1 178036 639 0.00 2019-11-30 03:13:00 2019-11-30 05:04:47 t 1 1 178038 562 0.00 2019-11-30 05:05:08 2019-11-30 05:05:31 t 1 1 178045 639 0.00 2019-11-30 05:16:49 2019-11-30 05:16:54 t 1 1 178046 639 0.00 2019-11-30 05:18:07 2019-11-30 05:18:11 t 1 1 178048 562 0.00 2019-11-30 05:26:40 2019-11-30 05:27:01 t 1 1 178056 663 0.00 2019-11-30 05:56:29 2019-11-30 06:03:26 t 1 1 178063 430 0.00 2019-11-30 06:08:32 2019-11-30 06:09:21 t 1 1 178065 430 0.00 2019-11-30 06:09:21 2019-11-30 06:10:44 t 1 1 178066 430 0.00 2019-11-30 06:10:51 2019-11-30 06:11:45 t 1 1 178067 663 0.00 2019-11-30 06:03:26 2019-11-30 06:13:13 t 1 1 178072 220 0.00 2019-11-30 06:10:20 2019-11-30 06:19:05 t 1 2 178075 562 0.00 2019-11-30 06:19:52 2019-11-30 06:20:03 t 1 1 178078 430 0.00 2019-11-30 06:21:22 2019-11-30 06:21:33 t 1 1 178079 430 0.00 2019-11-30 06:22:10 2019-11-30 06:22:24 t 1 1 178080 675 0.00 2019-11-30 06:20:43 2019-11-30 06:24:40 t 1 1 178087 445 0.00 2019-11-30 06:20:08 2019-11-30 06:31:28 t 1 1 178091 645 0.00 2019-11-30 06:32:48 2019-11-30 06:32:59 t 1 1 178093 430 0.00 2019-11-30 06:32:52 2019-11-30 06:34:02 t 1 1 178095 566 0.00 2019-11-30 06:21:27 2019-11-30 06:39:07 t 1 1 178099 430 0.00 2019-11-30 06:45:30 2019-11-30 06:46:27 t 1 1 178101 514 0.00 2019-11-30 06:48:03 2019-11-30 06:48:51 t 1 1 178106 516 0.00 2019-11-30 06:43:00 2019-11-30 06:50:15 t 1 1 178109 430 0.00 2019-11-30 06:49:57 2019-11-30 06:51:03 t 1 1 178113 562 0.00 2019-11-30 06:52:00 2019-11-30 06:52:22 t 1 1 178115 625 0.00 2019-11-30 06:19:56 2019-11-30 06:52:53 t 1 1 178119 516 0.00 2019-11-30 06:50:15 2019-11-30 06:55:32 t 1 1 178124 566 0.00 2019-11-30 06:46:46 2019-11-30 06:57:34 t 1 1 178128 645 0.00 2019-11-30 06:57:05 2019-11-30 07:02:06 t 1 1 178131 562 0.00 2019-11-30 07:02:56 2019-11-30 07:03:07 t 1 1 178142 562 0.00 2019-11-30 07:20:37 2019-11-30 07:20:46 t 1 1 178144 637 0.00 2019-11-30 07:21:30 2019-11-30 07:22:31 t 1 1 178145 637 0.00 2019-11-30 07:22:31 2019-11-30 07:24:51 t 1 1 178152 520 0.00 2019-11-30 07:40:44 2019-11-30 07:49:09 t 1 1 178155 658 0.00 2019-11-30 07:53:29 2019-11-30 07:53:35 t 1 1 178159 637 0.00 2019-11-30 07:31:16 2019-11-30 07:56:27 t 1 1 178161 658 0.00 2019-11-30 07:56:50 2019-11-30 07:56:53 t 1 1 178162 445 0.00 2019-11-30 07:43:52 2019-11-30 07:57:16 t 1 1 178164 645 0.00 2019-11-30 07:55:00 2019-11-30 07:59:10 t 1 1 178166 625 0.00 2019-11-30 06:52:53 2019-11-30 08:00:01 t 1 1 178167 562 0.00 2019-11-30 08:00:12 2019-11-30 08:00:38 t 1 1 178169 658 0.00 2019-11-30 08:06:40 2019-11-30 08:06:57 t 1 1 178171 658 0.00 2019-11-30 08:07:11 2019-11-30 08:07:41 t 1 1 178178 658 0.00 2019-11-30 08:11:32 2019-11-30 08:11:49 t 1 1 178179 658 0.00 2019-11-30 08:12:25 2019-11-30 08:12:44 t 1 1 178180 645 0.00 2019-11-30 08:11:37 2019-11-30 08:13:34 t 1 1 178186 562 0.00 2019-11-30 08:13:50 2019-11-30 08:22:02 t 1 1 178188 481 0.00 2019-11-30 08:09:51 2019-11-30 08:22:54 t 1 1 178190 658 0.00 2019-11-30 08:15:48 2019-11-30 08:25:28 t 1 1 178192 639 0.00 2019-11-30 08:23:36 2019-11-30 08:25:47 t 1 1 178195 665 0.00 2019-11-30 08:12:47 2019-11-30 08:29:38 t 1 1 178203 615 0.00 2019-11-30 08:26:42 2019-11-30 08:33:03 t 1 1 178206 679 0.00 2019-11-30 08:35:39 2019-11-30 08:37:33 t 1 1 178210 562 0.00 2019-11-30 08:38:44 2019-11-30 08:39:45 t 1 1 178214 658 0.00 2019-11-30 08:42:42 2019-11-30 08:43:17 t 1 1 178217 658 0.00 2019-11-30 08:45:16 2019-11-30 08:46:40 t 1 1 178222 562 0.00 2019-11-30 08:49:15 2019-11-30 08:49:26 t 1 1 178224 658 0.00 2019-11-30 08:47:59 2019-11-30 08:52:45 t 1 1 178226 681 0.00 2019-11-30 02:42:19 2019-11-30 08:55:42 t 1 1 178229 516 0.00 2019-11-30 08:55:50 2019-11-30 08:57:33 t 1 1 178239 639 0.00 2019-11-30 09:05:16 2019-11-30 09:06:35 t 1 1 178242 658 0.00 2019-11-30 09:06:39 2019-11-30 09:07:14 t 1 1 178243 658 0.00 2019-11-30 09:07:20 2019-11-30 09:07:56 t 1 1 178246 658 0.00 2019-11-30 09:09:22 2019-11-30 09:10:01 t 1 1 178251 658 0.00 2019-11-30 09:12:09 2019-11-30 09:12:10 t 1 1 178263 637 0.00 2019-11-30 09:10:40 2019-11-30 09:22:20 t 1 1 178271 512 0.00 2019-11-30 09:22:24 2019-11-30 09:28:44 t 1 1 178274 637 0.00 2019-11-30 09:26:07 2019-11-30 09:31:36 t 1 1 178280 658 0.00 2019-11-30 09:35:15 2019-11-30 09:35:37 t 1 1 178281 658 0.00 2019-11-30 09:35:57 2019-11-30 09:36:00 t 1 1 178285 562 0.00 2019-11-30 09:37:46 2019-11-30 09:38:00 t 1 1 178288 658 0.00 2019-11-30 09:38:35 2019-11-30 09:38:57 t 1 1 178291 485 0.00 2019-11-30 09:38:41 2019-11-30 09:40:59 t 1 1 178292 683 0.00 2019-11-30 09:35:44 2019-11-30 09:41:20 t 1 1 178298 658 0.00 2019-11-30 09:41:59 2019-11-30 09:43:24 t 1 1 178299 658 0.00 2019-11-30 09:44:53 2019-11-30 09:46:35 t 1 1 178300 562 0.00 2019-11-30 09:46:21 2019-11-30 09:46:39 t 1 1 178301 591 0.00 2019-11-30 08:52:31 2019-11-30 09:46:53 t 1 1 178302 516 0.00 2019-11-30 09:47:22 2019-11-30 09:48:32 t 1 1 178303 637 0.00 2019-11-30 09:34:18 2019-11-30 09:49:21 t 1 1 178304 430 0.00 2019-11-30 09:50:58 2019-11-30 09:51:15 t 1 1 178305 615 0.00 2019-11-30 09:37:25 2019-11-30 09:51:36 t 1 1 178306 485 0.00 2019-11-30 09:48:51 2019-11-30 09:52:14 t 1 1 178307 658 0.00 2019-11-30 09:47:52 2019-11-30 09:53:59 t 1 1 178308 658 0.00 2019-11-30 09:54:05 2019-11-30 09:54:09 t 1 1 178309 430 0.00 2019-11-30 09:51:22 2019-11-30 09:54:57 t 1 1 178310 591 0.00 2019-11-30 09:46:53 2019-11-30 09:55:38 t 1 1 178311 658 0.00 2019-11-30 09:54:14 2019-11-30 09:55:53 t 1 1 178312 658 0.00 2019-11-30 09:55:59 2019-11-30 09:56:05 t 1 1 178313 481 0.00 2019-11-30 08:22:54 2019-11-30 09:57:00 t 1 1 178314 562 0.00 2019-11-30 09:57:07 2019-11-30 09:57:20 t 1 1 178315 658 0.00 2019-11-30 09:57:42 2019-11-30 09:57:58 t 1 1 178316 562 0.00 2019-11-30 09:58:32 2019-11-30 09:58:57 t 1 1 178317 671 0.00 2019-11-30 09:56:26 2019-11-30 09:59:15 t 1 1 178318 562 0.00 2019-11-30 10:00:15 2019-11-30 10:01:17 t 1 1 178319 611 0.00 2019-11-30 09:59:05 2019-11-30 10:01:27 t 1 1 178320 683 0.00 2019-11-30 09:41:20 2019-11-30 10:02:06 t 1 1 178322 658 0.00 2019-11-30 09:59:39 2019-11-30 10:03:02 t 1 1 178323 658 0.00 2019-11-30 10:03:08 2019-11-30 10:03:20 t 1 1 178326 645 0.00 2019-11-30 10:00:00 2019-11-30 10:04:07 t 1 1 178330 625 0.00 2019-11-30 08:00:01 2019-11-30 10:09:33 t 1 1 178337 658 0.00 2019-11-30 10:12:49 2019-11-30 10:13:06 t 1 1 178338 658 0.00 2019-11-30 10:13:11 2019-11-30 10:13:38 t 1 1 178340 512 0.00 2019-11-30 10:11:54 2019-11-30 10:15:49 t 1 1 178342 658 0.00 2019-11-30 10:16:11 2019-11-30 10:16:18 t 1 1 178343 658 0.00 2019-11-30 10:16:23 2019-11-30 10:16:40 t 1 1 178344 658 0.00 2019-11-30 10:16:45 2019-11-30 10:16:56 t 1 1 178348 658 0.00 2019-11-30 10:19:01 2019-11-30 10:19:05 t 1 1 178350 683 0.00 2019-11-30 10:02:06 2019-11-30 10:19:43 t 1 1 178355 658 0.00 2019-11-30 10:19:55 2019-11-30 10:24:05 t 1 1 178357 683 0.00 2019-11-30 10:21:15 2019-11-30 10:26:18 t 1 1 178361 658 0.00 2019-11-30 10:26:44 2019-11-30 10:27:01 t 1 1 178362 673 0.00 2019-11-30 10:25:55 2019-11-30 10:28:12 t 1 1 178364 562 0.00 2019-11-30 10:29:52 2019-11-30 10:30:02 t 1 1 178365 673 0.00 2019-11-30 10:30:22 2019-11-30 10:30:29 t 1 1 178369 658 0.00 2019-11-30 10:32:04 2019-11-30 10:32:21 t 1 1 178373 658 0.00 2019-11-30 10:34:50 2019-11-30 10:35:11 t 1 1 178374 445 0.00 2019-11-30 10:17:12 2019-11-30 10:35:40 t 1 1 178376 622 0.00 2019-11-30 10:04:42 2019-11-30 10:37:39 t 1 1 178379 445 0.00 2019-11-30 10:41:43 2019-11-30 10:42:40 t 1 1 178381 622 0.00 2019-11-30 10:37:39 2019-11-30 10:43:39 t 1 1 178382 445 0.00 2019-11-30 10:42:39 2019-11-30 10:43:55 t 1 1 178383 445 0.00 2019-11-30 10:43:55 2019-11-30 10:44:52 t 1 1 178387 445 0.00 2019-11-30 10:47:07 2019-11-30 10:48:17 t 1 1 178391 445 0.00 2019-11-30 10:49:27 2019-11-30 10:50:58 t 1 1 178393 615 0.00 2019-11-30 10:50:06 2019-11-30 10:53:24 t 1 1 178395 445 0.00 2019-11-30 10:50:58 2019-11-30 10:54:23 t 1 1 178397 671 0.00 2019-11-30 10:54:52 2019-11-30 10:57:19 t 1 1 178398 562 0.00 2019-11-30 10:59:28 2019-11-30 10:59:56 t 1 1 178400 658 0.00 2019-11-30 10:35:47 2019-11-30 11:01:22 t 1 1 178405 445 0.00 2019-11-30 11:00:39 2019-11-30 11:05:00 t 1 1 178409 578 0.00 2019-11-30 10:53:38 2019-11-30 11:06:33 t 1 1 178413 658 0.00 2019-11-30 11:10:29 2019-11-30 11:10:36 t 1 1 178417 220 0.00 2019-11-30 09:42:34 2019-11-30 11:12:16 t 1 2 178421 645 0.00 2019-11-30 11:10:34 2019-11-30 11:13:40 t 1 1 178424 658 0.00 2019-11-30 11:14:21 2019-11-30 11:14:30 t 1 1 178428 578 0.00 2019-11-30 11:06:33 2019-11-30 11:21:11 t 1 1 178440 658 0.00 2019-11-30 11:27:16 2019-11-30 11:27:46 t 1 1 178446 671 0.00 2019-11-30 11:27:03 2019-11-30 11:31:04 t 1 1 178448 637 0.00 2019-11-30 11:28:31 2019-11-30 11:32:11 t 1 1 178450 445 0.00 2019-11-30 11:32:52 2019-11-30 11:33:56 t 1 1 178453 562 0.00 2019-11-30 11:34:19 2019-11-30 11:34:36 t 1 1 178455 512 0.00 2019-11-30 11:36:12 2019-11-30 11:37:11 t 1 1 178462 562 0.00 2019-11-30 11:44:56 2019-11-30 11:45:21 t 1 1 178464 667 0.00 2019-11-30 11:46:19 2019-11-30 11:47:22 t 1 2 178467 445 0.00 2019-11-30 11:44:44 2019-11-30 11:49:42 t 1 1 178476 683 0.00 2019-11-30 11:36:24 2019-11-30 11:58:11 t 1 1 178477 671 0.00 2019-11-30 11:54:10 2019-11-30 11:58:35 t 1 1 178478 445 0.00 2019-11-30 11:57:50 2019-11-30 11:59:43 t 1 1 178480 660 0.00 2019-11-30 11:47:33 2019-11-30 12:02:01 t 1 1 178485 562 0.00 2019-11-30 12:09:06 2019-11-30 12:09:16 t 1 1 178486 445 0.00 2019-11-30 12:02:24 2019-11-30 12:09:40 t 1 1 178487 591 0.00 2019-11-30 12:08:50 2019-11-30 12:10:46 t 1 1 178488 445 0.00 2019-11-30 12:09:40 2019-11-30 12:11:22 t 1 1 178489 445 0.00 2019-11-30 12:11:22 2019-11-30 12:12:30 t 1 1 178490 512 0.00 2019-11-30 11:37:11 2019-11-30 12:13:04 t 1 1 178494 637 0.00 2019-11-30 12:07:46 2019-11-30 12:15:40 t 1 1 178500 675 0.00 2019-11-30 12:19:01 2019-11-30 12:21:21 t 1 1 178504 625 0.00 2019-11-30 11:47:41 2019-11-30 12:26:39 t 1 1 178505 683 0.00 2019-11-30 11:58:26 2019-11-30 12:27:07 t 1 1 178506 485 0.00 2019-11-30 12:25:36 2019-11-30 12:27:50 t 1 1 178508 637 0.00 2019-11-30 12:16:15 2019-11-30 12:29:02 t 1 1 178509 422 0.00 2019-11-30 12:29:26 2019-11-30 12:29:26 f 1 1 178512 520 0.00 2019-11-30 12:16:00 2019-11-30 12:30:53 t 1 1 178514 625 0.00 2019-11-30 12:26:39 2019-11-30 12:32:55 t 1 1 178516 671 0.00 2019-11-30 12:26:10 2019-11-30 12:33:31 t 1 1 178518 512 0.00 2019-11-30 12:13:03 2019-11-30 12:33:40 t 1 1 178521 615 0.00 2019-11-30 12:08:40 2019-11-30 12:37:14 t 1 1 178523 656 0.00 2019-11-30 12:32:25 2019-11-30 12:40:02 t 1 1 178524 498 0.00 2019-11-30 12:11:56 2019-11-30 12:41:32 t 1 2 178530 516 0.00 2019-11-30 12:46:03 2019-11-30 12:47:56 t 1 1 178531 516 0.00 2019-11-30 12:48:30 2019-11-30 12:50:40 t 1 1 178535 658 0.00 2019-11-30 12:58:12 2019-11-30 12:58:41 t 1 1 178536 658 0.00 2019-11-30 12:59:16 2019-11-30 12:59:20 t 1 1 178540 645 0.00 2019-11-30 12:58:14 2019-11-30 13:00:45 t 1 1 178541 658 0.00 2019-11-30 13:01:35 2019-11-30 13:01:41 t 1 1 178545 625 0.00 2019-11-30 13:00:37 2019-11-30 13:03:23 t 1 1 178546 637 0.00 2019-11-30 12:56:10 2019-11-30 13:05:08 t 1 1 178558 562 0.00 2019-11-30 13:08:06 2019-11-30 13:09:41 t 1 1 178560 422 0.00 2019-11-30 13:09:58 2019-11-30 13:09:58 f 1 1 178561 637 0.00 2019-11-30 13:05:54 2019-11-30 13:10:33 t 1 1 178565 512 0.00 2019-11-30 12:34:56 2019-11-30 13:13:14 t 1 1 178567 671 0.00 2019-11-30 13:10:03 2019-11-30 13:13:52 t 1 1 178570 481 0.00 2019-11-30 11:51:32 2019-11-30 13:16:44 t 1 1 178571 562 0.00 2019-11-30 13:20:07 2019-11-30 13:20:22 t 1 1 178573 566 0.00 2019-11-30 13:12:47 2019-11-30 13:24:49 t 1 1 178576 622 0.00 2019-11-30 13:18:58 2019-11-30 13:28:38 t 1 1 178578 639 0.00 2019-11-30 13:14:29 2019-11-30 13:35:25 t 1 1 178579 481 0.00 2019-11-30 13:16:44 2019-11-30 13:36:07 t 1 1 178581 292 0.00 2019-11-30 13:38:42 2019-11-30 13:38:42 f 1 2 178584 292 0.00 2019-11-30 13:39:11 2019-11-30 13:39:11 f 1 2 178591 562 0.00 2019-11-30 13:31:08 2019-11-30 13:45:26 t 1 1 178595 220 0.00 2019-11-30 13:41:27 2019-11-30 13:49:44 t 1 1 178597 637 0.00 2019-11-30 13:12:37 2019-11-30 13:52:08 t 1 1 178603 671 0.00 2019-11-30 13:53:15 2019-11-30 14:01:26 t 1 1 178604 637 0.00 2019-11-30 14:00:45 2019-11-30 14:03:15 t 1 1 178606 675 0.00 2019-11-30 14:05:10 2019-11-30 14:06:34 t 1 1 178613 683 0.00 2019-11-30 12:27:07 2019-11-30 14:10:10 t 1 1 178614 562 0.00 2019-11-30 14:09:53 2019-11-30 14:11:24 t 1 1 178616 591 0.00 2019-11-30 13:44:52 2019-11-30 14:13:45 t 1 1 178617 645 0.00 2019-11-30 14:10:02 2019-11-30 14:14:22 t 1 1 178619 611 0.00 2019-11-30 13:47:42 2019-11-30 14:17:35 t 1 1 178625 631 0.00 2019-11-30 14:21:58 2019-11-30 14:22:31 t 1 1 178321 673 0.00 2019-11-30 10:01:21 2019-11-30 10:02:25 t 1 1 178325 658 0.00 2019-11-30 10:03:55 2019-11-30 10:04:01 t 1 1 178327 615 0.00 2019-11-30 09:51:35 2019-11-30 10:04:16 t 1 1 178331 430 0.00 2019-11-30 10:10:09 2019-11-30 10:10:27 t 1 1 178333 512 0.00 2019-11-30 09:38:39 2019-11-30 10:11:51 t 1 1 178334 658 0.00 2019-11-30 10:11:52 2019-11-30 10:12:08 t 1 1 178335 658 0.00 2019-11-30 10:12:13 2019-11-30 10:12:29 t 1 1 178336 615 0.00 2019-11-30 10:04:16 2019-11-30 10:12:53 t 1 1 178345 445 0.00 2019-11-30 10:14:02 2019-11-30 10:17:13 t 1 1 178346 611 0.00 2019-11-30 10:14:10 2019-11-30 10:18:12 t 1 1 178351 683 0.00 2019-11-30 10:19:49 2019-11-30 10:20:51 t 1 1 178352 637 0.00 2019-11-30 10:09:36 2019-11-30 10:22:05 t 1 1 178354 562 0.00 2019-11-30 10:23:30 2019-11-30 10:23:54 t 1 1 178359 658 0.00 2019-11-30 10:26:25 2019-11-30 10:26:26 t 1 1 178367 658 0.00 2019-11-30 10:30:22 2019-11-30 10:30:37 t 1 1 178380 671 0.00 2019-11-30 10:40:03 2019-11-30 10:43:32 t 1 1 178389 445 0.00 2019-11-30 10:48:17 2019-11-30 10:49:27 t 1 1 178390 611 0.00 2019-11-30 10:42:33 2019-11-30 10:50:16 t 1 1 178392 622 0.00 2019-11-30 10:43:39 2019-11-30 10:51:52 t 1 1 178396 671 0.00 2019-11-30 10:49:17 2019-11-30 10:54:52 t 1 1 178401 622 0.00 2019-11-30 10:51:52 2019-11-30 11:02:09 t 1 1 178403 611 0.00 2019-11-30 10:50:16 2019-11-30 11:03:17 t 1 1 178407 538 0.00 2019-11-30 11:04:23 2019-11-30 11:06:06 t 1 1 178410 660 0.00 2019-11-30 10:53:54 2019-11-30 11:07:19 t 1 1 178411 562 0.00 2019-11-30 11:06:52 2019-11-30 11:08:30 t 1 1 178414 658 0.00 2019-11-30 11:10:42 2019-11-30 11:10:57 t 1 1 178416 622 0.00 2019-11-30 11:04:16 2019-11-30 11:12:02 t 1 1 178419 658 0.00 2019-11-30 11:12:41 2019-11-30 11:12:56 t 1 1 178422 658 0.00 2019-11-30 11:13:01 2019-11-30 11:14:15 t 1 1 178425 683 0.00 2019-11-30 10:48:00 2019-11-30 11:16:17 t 1 1 178426 520 0.00 2019-11-30 11:12:47 2019-11-30 11:19:38 t 1 1 178427 671 0.00 2019-11-30 11:11:55 2019-11-30 11:20:51 t 1 1 178430 658 0.00 2019-11-30 11:14:52 2019-11-30 11:21:29 t 1 1 178432 622 0.00 2019-11-30 11:13:43 2019-11-30 11:21:57 t 1 1 178435 658 0.00 2019-11-30 11:22:54 2019-11-30 11:23:53 t 1 1 178436 520 0.00 2019-11-30 11:20:49 2019-11-30 11:26:15 t 1 1 178438 645 0.00 2019-11-30 11:19:46 2019-11-30 11:26:26 t 1 1 178439 671 0.00 2019-11-30 11:20:50 2019-11-30 11:27:03 t 1 1 178444 660 0.00 2019-11-30 11:07:19 2019-11-30 11:28:58 t 1 1 178445 675 0.00 2019-11-30 11:25:42 2019-11-30 11:29:46 t 1 1 178447 445 0.00 2019-11-30 11:26:28 2019-11-30 11:31:42 t 1 1 178449 658 0.00 2019-11-30 11:30:31 2019-11-30 11:32:38 t 1 1 178452 683 0.00 2019-11-30 11:16:16 2019-11-30 11:34:36 t 1 1 178456 562 0.00 2019-11-30 11:39:10 2019-11-30 11:39:21 t 1 1 178460 483 0.00 2019-11-30 11:28:44 2019-11-30 11:44:18 t 1 1 178461 591 0.00 2019-11-30 10:22:51 2019-11-30 11:44:45 t 1 1 178468 622 0.00 2019-11-30 11:43:18 2019-11-30 11:50:38 t 1 1 178469 481 0.00 2019-11-30 09:57:04 2019-11-30 11:51:32 t 1 1 178471 671 0.00 2019-11-30 11:52:05 2019-11-30 11:54:11 t 1 1 178481 645 0.00 2019-11-30 12:00:57 2019-11-30 12:02:13 t 1 1 178482 445 0.00 2019-11-30 11:59:43 2019-11-30 12:02:24 t 1 1 178483 591 0.00 2019-11-30 12:05:15 2019-11-30 12:06:18 t 1 1 178492 445 0.00 2019-11-30 12:12:33 2019-11-30 12:13:52 t 1 1 178493 562 0.00 2019-11-30 12:14:39 2019-11-30 12:15:20 t 1 1 178495 520 0.00 2019-11-30 12:07:48 2019-11-30 12:16:00 t 1 1 178496 645 0.00 2019-11-30 12:15:10 2019-11-30 12:16:26 t 1 1 178498 660 0.00 2019-11-30 12:13:19 2019-11-30 12:20:47 t 1 1 178501 679 0.00 2019-11-30 12:21:41 2019-11-30 12:22:17 t 1 1 178507 562 0.00 2019-11-30 12:16:32 2019-11-30 12:28:41 t 1 1 178511 220 0.00 2019-11-30 12:29:41 2019-11-30 12:30:07 t 1 1 178522 562 0.00 2019-11-30 12:33:49 2019-11-30 12:38:12 t 1 1 178526 645 0.00 2019-11-30 12:41:02 2019-11-30 12:42:21 t 1 1 178528 516 0.00 2019-11-30 12:42:34 2019-11-30 12:43:19 t 1 1 178534 637 0.00 2019-11-30 12:35:20 2019-11-30 12:56:11 t 1 1 178537 562 0.00 2019-11-30 12:54:32 2019-11-30 13:00:12 t 1 1 178538 658 0.00 2019-11-30 13:00:12 2019-11-30 13:00:28 t 1 1 178549 658 0.00 2019-11-30 13:05:57 2019-11-30 13:06:01 t 1 1 178550 639 0.00 2019-11-30 13:05:51 2019-11-30 13:06:27 t 1 1 178553 658 0.00 2019-11-30 13:06:44 2019-11-30 13:07:16 t 1 1 178554 658 0.00 2019-11-30 13:07:21 2019-11-30 13:07:27 t 1 1 178555 675 0.00 2019-11-30 12:57:34 2019-11-30 13:08:07 t 1 1 178556 658 0.00 2019-11-30 13:08:25 2019-11-30 13:08:32 t 1 1 178557 658 0.00 2019-11-30 13:09:27 2019-11-30 13:09:33 t 1 1 178563 658 0.00 2019-11-30 13:12:37 2019-11-30 13:12:37 f 1 1 178564 658 0.00 2019-11-30 13:11:09 2019-11-30 13:13:06 t 1 1 178566 639 0.00 2019-11-30 13:07:11 2019-11-30 13:13:35 t 1 1 178569 566 0.00 2019-11-30 13:12:40 2019-11-30 13:14:06 t 1 1 178574 675 0.00 2019-11-30 13:23:16 2019-11-30 13:25:03 t 1 1 178577 445 0.00 2019-11-30 12:24:13 2019-11-30 13:32:41 t 1 1 178580 566 0.00 2019-11-30 13:24:49 2019-11-30 13:36:35 t 1 1 178582 292 0.00 2019-11-30 13:38:53 2019-11-30 13:38:53 f 1 2 178585 292 0.00 2019-11-30 13:39:18 2019-11-30 13:39:18 f 1 2 178586 292 0.00 2019-11-30 13:39:24 2019-11-30 13:39:24 f 1 2 178589 220 0.00 2019-11-30 13:22:46 2019-11-30 13:41:27 t 1 1 178598 451 0.00 2019-11-30 13:49:13 2019-11-30 13:56:09 t 1 1 178599 622 0.00 2019-11-30 13:28:38 2019-11-30 13:56:49 t 1 1 178600 445 0.00 2019-11-30 13:33:23 2019-11-30 13:58:33 t 1 1 178601 637 0.00 2019-11-30 13:53:46 2019-11-30 13:59:30 t 1 1 178608 481 0.00 2019-11-30 13:49:15 2019-11-30 14:08:00 t 1 1 178610 562 0.00 2019-11-30 14:08:14 2019-11-30 14:08:33 t 1 1 178612 645 0.00 2019-11-30 14:08:10 2019-11-30 14:10:03 t 1 1 178618 554 0.00 2019-11-30 14:15:01 2019-11-30 14:15:01 f 1 1 178623 562 0.00 2019-11-30 14:12:16 2019-11-30 14:21:36 t 1 1 178624 679 0.00 2019-11-30 14:21:07 2019-11-30 14:22:20 t 1 1 178628 671 0.00 2019-11-30 14:20:20 2019-11-30 14:26:59 t 1 1 178634 671 0.00 2019-11-30 14:26:58 2019-11-30 14:31:43 t 1 1 178636 665 0.00 2019-11-30 14:28:11 2019-11-30 14:32:27 t 1 1 178638 445 0.00 2019-11-30 13:58:49 2019-11-30 14:35:15 t 1 1 178640 564 0.00 2019-11-30 12:41:38 2019-11-30 14:36:49 t 1 1 178644 622 0.00 2019-11-30 14:25:16 2019-11-30 14:40:15 t 1 1 178645 639 0.00 2019-11-30 14:40:26 2019-11-30 14:41:27 t 1 1 178649 645 0.00 2019-11-30 14:42:59 2019-11-30 14:47:02 t 1 1 178651 649 0.00 2019-11-30 14:12:25 2019-11-30 14:47:25 t 1 1 178653 481 0.00 2019-11-30 14:08:42 2019-11-30 14:47:34 t 1 1 178660 562 0.00 2019-11-30 14:49:08 2019-11-30 14:49:56 t 1 1 178662 220 0.00 2019-11-30 14:49:47 2019-11-30 14:50:21 t 1 1 178666 220 0.00 2019-11-30 14:51:26 2019-11-30 14:52:01 t 1 1 178324 562 0.00 2019-11-30 10:03:34 2019-11-30 10:03:58 t 1 1 178328 562 0.00 2019-11-30 10:03:57 2019-11-30 10:04:39 t 1 1 178329 637 0.00 2019-11-30 09:53:14 2019-11-30 10:06:29 t 1 1 178332 658 0.00 2019-11-30 10:04:44 2019-11-30 10:11:21 t 1 1 178339 562 0.00 2019-11-30 10:12:41 2019-11-30 10:13:49 t 1 1 178341 658 0.00 2019-11-30 10:15:16 2019-11-30 10:16:05 t 1 1 178347 658 0.00 2019-11-30 10:17:21 2019-11-30 10:18:55 t 1 1 178349 562 0.00 2019-11-30 10:15:29 2019-11-30 10:19:13 t 1 1 178353 591 0.00 2019-11-30 10:09:29 2019-11-30 10:22:51 t 1 1 178356 673 0.00 2019-11-30 10:24:33 2019-11-30 10:25:52 t 1 1 178358 658 0.00 2019-11-30 10:25:42 2019-11-30 10:26:19 t 1 1 178360 658 0.00 2019-11-30 10:26:31 2019-11-30 10:26:39 t 1 1 178363 658 0.00 2019-11-30 10:29:23 2019-11-30 10:29:44 t 1 1 178366 562 0.00 2019-11-30 10:30:21 2019-11-30 10:30:37 t 1 1 178368 658 0.00 2019-11-30 10:30:42 2019-11-30 10:30:58 t 1 1 178370 562 0.00 2019-11-30 10:32:07 2019-11-30 10:32:31 t 1 1 178371 658 0.00 2019-11-30 10:32:41 2019-11-30 10:33:27 t 1 1 178372 658 0.00 2019-11-30 10:34:27 2019-11-30 10:34:44 t 1 1 178375 671 0.00 2019-11-30 10:27:42 2019-11-30 10:37:04 t 1 1 178377 562 0.00 2019-11-30 10:37:54 2019-11-30 10:38:21 t 1 1 178378 671 0.00 2019-11-30 10:37:02 2019-11-30 10:40:05 t 1 1 178384 445 0.00 2019-11-30 10:44:52 2019-11-30 10:45:47 t 1 1 178385 445 0.00 2019-11-30 10:45:46 2019-11-30 10:47:08 t 1 1 178386 683 0.00 2019-11-30 10:26:20 2019-11-30 10:48:01 t 1 1 178388 562 0.00 2019-11-30 10:48:48 2019-11-30 10:49:06 t 1 1 178394 578 0.00 2019-11-29 23:29:28 2019-11-30 10:53:38 t 1 1 178399 445 0.00 2019-11-30 10:54:23 2019-11-30 11:00:39 t 1 1 178402 658 0.00 2019-11-30 11:01:38 2019-11-30 11:02:37 t 1 1 178404 538 0.00 2019-11-30 10:49:00 2019-11-30 11:03:37 t 1 1 178406 658 0.00 2019-11-30 11:04:49 2019-11-30 11:05:09 t 1 1 178408 658 0.00 2019-11-30 11:05:29 2019-11-30 11:06:16 t 1 1 178412 658 0.00 2019-11-30 11:06:16 2019-11-30 11:10:30 t 1 1 178415 545 0.00 2019-11-30 10:59:41 2019-11-30 11:11:23 t 1 1 178418 658 0.00 2019-11-30 11:11:54 2019-11-30 11:12:18 t 1 1 178420 562 0.00 2019-11-30 11:11:50 2019-11-30 11:13:07 t 1 1 178423 637 0.00 2019-11-30 10:24:53 2019-11-30 11:14:21 t 1 1 178429 637 0.00 2019-11-30 11:16:32 2019-11-30 11:21:26 t 1 1 178431 658 0.00 2019-11-30 11:21:36 2019-11-30 11:21:42 t 1 1 178433 658 0.00 2019-11-30 11:22:37 2019-11-30 11:22:54 t 1 1 178434 562 0.00 2019-11-30 11:23:42 2019-11-30 11:23:50 t 1 1 178437 658 0.00 2019-11-30 11:25:25 2019-11-30 11:26:24 t 1 1 178441 658 0.00 2019-11-30 11:27:46 2019-11-30 11:28:02 t 1 1 178442 637 0.00 2019-11-30 11:21:26 2019-11-30 11:28:31 t 1 1 178443 658 0.00 2019-11-30 11:28:31 2019-11-30 11:28:47 t 1 1 178451 538 0.00 2019-11-30 11:07:19 2019-11-30 11:34:15 t 1 1 178454 512 0.00 2019-11-30 10:16:53 2019-11-30 11:36:13 t 1 1 178457 637 0.00 2019-11-30 11:33:31 2019-11-30 11:41:01 t 1 1 178458 622 0.00 2019-11-30 11:22:02 2019-11-30 11:43:18 t 1 1 178459 445 0.00 2019-11-30 11:37:03 2019-11-30 11:44:14 t 1 1 178463 625 0.00 2019-11-30 11:39:44 2019-11-30 11:45:53 t 1 1 178465 660 0.00 2019-11-30 11:28:58 2019-11-30 11:47:33 t 1 1 178466 562 0.00 2019-11-30 11:47:14 2019-11-30 11:48:19 t 1 1 178470 671 0.00 2019-11-30 11:49:52 2019-11-30 11:52:06 t 1 1 178472 679 0.00 2019-11-30 11:49:52 2019-11-30 11:55:05 t 1 1 178473 445 0.00 2019-11-30 11:49:42 2019-11-30 11:55:43 t 1 1 178474 562 0.00 2019-11-30 11:55:58 2019-11-30 11:56:08 t 1 1 178475 445 0.00 2019-11-30 11:56:04 2019-11-30 11:57:37 t 1 1 178479 591 0.00 2019-11-30 11:48:45 2019-11-30 12:01:13 t 1 1 178484 637 0.00 2019-11-30 11:41:00 2019-11-30 12:07:03 t 1 1 178491 660 0.00 2019-11-30 12:02:01 2019-11-30 12:13:19 t 1 1 178497 538 0.00 2019-11-30 11:34:27 2019-11-30 12:20:25 t 1 1 178499 422 0.00 2019-11-30 12:20:59 2019-11-30 12:20:59 f 1 1 178502 445 0.00 2019-11-30 12:13:52 2019-11-30 12:24:13 t 1 1 178503 671 0.00 2019-11-30 12:22:37 2019-11-30 12:26:10 t 1 1 178510 220 0.00 2019-11-30 12:27:48 2019-11-30 12:29:30 t 1 1 178513 520 0.00 2019-11-30 12:30:52 2019-11-30 12:32:39 t 1 1 178515 637 0.00 2019-11-30 12:29:36 2019-11-30 12:33:17 t 1 1 178517 564 0.00 2019-11-30 09:45:09 2019-11-30 12:33:34 t 1 1 178519 625 0.00 2019-11-30 12:32:55 2019-11-30 12:34:30 t 1 1 178520 485 0.00 2019-11-30 12:29:48 2019-11-30 12:35:16 t 1 1 178525 564 0.00 2019-11-30 12:33:34 2019-11-30 12:41:38 t 1 1 178527 485 0.00 2019-11-30 12:35:15 2019-11-30 12:42:50 t 1 1 178529 562 0.00 2019-11-30 12:41:48 2019-11-30 12:47:21 t 1 1 178532 562 0.00 2019-11-30 12:47:39 2019-11-30 12:54:11 t 1 1 178533 220 0.00 2019-11-30 12:38:32 2019-11-30 12:54:55 t 1 2 178539 625 0.00 2019-11-30 12:34:30 2019-11-30 13:00:37 t 1 1 178542 658 0.00 2019-11-30 13:00:33 2019-11-30 13:02:06 t 1 1 178543 658 0.00 2019-11-30 13:02:36 2019-11-30 13:02:41 t 1 1 178544 658 0.00 2019-11-30 13:03:01 2019-11-30 13:03:19 t 1 1 178547 578 0.00 2019-11-30 11:21:11 2019-11-30 13:05:11 t 1 1 178548 658 0.00 2019-11-30 13:03:25 2019-11-30 13:05:20 t 1 1 178551 658 0.00 2019-11-30 13:06:23 2019-11-30 13:06:39 t 1 1 178552 639 0.00 2019-11-30 13:06:30 2019-11-30 13:07:11 t 1 1 178559 675 0.00 2019-11-30 13:08:07 2019-11-30 13:09:53 t 1 1 178562 658 0.00 2019-11-30 13:10:20 2019-11-30 13:11:03 t 1 1 178568 658 0.00 2019-11-30 13:12:12 2019-11-30 13:14:06 t 1 1 178572 544 0.00 2019-11-30 13:17:11 2019-11-30 13:23:57 t 1 1 178575 562 0.00 2019-11-30 13:23:37 2019-11-30 13:27:42 t 1 1 178583 292 0.00 2019-11-30 13:39:03 2019-11-30 13:39:03 f 1 2 178587 292 0.00 2019-11-30 13:39:32 2019-11-30 13:39:32 f 1 2 178588 639 0.00 2019-11-30 13:35:39 2019-11-30 13:40:35 t 1 1 178590 675 0.00 2019-11-30 13:41:42 2019-11-30 13:43:24 t 1 1 178592 516 0.00 2019-11-30 13:41:12 2019-11-30 13:47:28 t 1 1 178593 451 0.00 2019-11-30 13:34:18 2019-11-30 13:49:13 t 1 1 178594 481 0.00 2019-11-30 13:36:05 2019-11-30 13:49:15 t 1 1 178596 639 0.00 2019-11-30 13:40:57 2019-11-30 13:49:51 t 1 1 178602 220 0.00 2019-11-30 13:59:56 2019-11-30 13:59:58 t 1 1 178605 562 0.00 2019-11-30 13:45:34 2019-11-30 14:05:46 t 1 1 178607 562 0.00 2019-11-30 14:06:40 2019-11-30 14:07:26 t 1 1 178609 220 0.00 2019-11-30 14:01:37 2019-11-30 14:08:09 t 1 1 178611 220 0.00 2019-11-30 14:06:54 2019-11-30 14:09:14 t 1 2 178615 625 0.00 2019-11-30 13:03:22 2019-11-30 14:11:25 t 1 1 178620 451 0.00 2019-11-30 13:56:09 2019-11-30 14:17:52 t 1 1 178621 611 0.00 2019-11-30 14:17:35 2019-11-30 14:20:15 t 1 1 178622 451 0.00 2019-11-30 14:17:52 2019-11-30 14:21:27 t 1 1 178626 551 0.00 2019-11-30 14:18:34 2019-11-30 14:25:04 t 1 1 178629 591 0.00 2019-11-30 14:26:28 2019-11-30 14:27:29 t 1 1 178627 622 0.00 2019-11-30 14:17:24 2019-11-30 14:25:16 t 1 1 178630 683 0.00 2019-11-30 14:11:03 2019-11-30 14:27:51 t 1 1 178632 544 0.00 2019-11-30 14:26:55 2019-11-30 14:28:13 t 1 1 178633 220 0.00 2019-11-30 14:10:28 2019-11-30 14:30:51 t 1 2 178635 220 0.00 2019-11-30 14:30:41 2019-11-30 14:32:05 t 1 2 178637 562 0.00 2019-11-30 14:33:23 2019-11-30 14:33:41 t 1 1 178641 562 0.00 2019-11-30 14:37:55 2019-11-30 14:38:11 t 1 1 178643 675 0.00 2019-11-30 14:36:52 2019-11-30 14:38:30 t 1 1 178650 611 0.00 2019-11-30 14:43:46 2019-11-30 14:47:12 t 1 1 178655 456 0.00 2019-11-30 14:37:34 2019-11-30 14:48:20 t 1 1 178656 220 0.00 2019-11-30 14:48:00 2019-11-30 14:48:36 t 1 1 178661 622 0.00 2019-11-30 14:40:15 2019-11-30 14:50:12 t 1 1 178664 220 0.00 2019-11-30 14:50:20 2019-11-30 14:50:52 t 1 1 178665 220 0.00 2019-11-30 14:50:52 2019-11-30 14:51:26 t 1 1 178667 220 0.00 2019-11-30 14:52:01 2019-11-30 14:52:34 t 1 1 178669 637 0.00 2019-11-30 14:04:41 2019-11-30 14:53:17 t 1 1 178672 220 0.00 2019-11-30 14:53:42 2019-11-30 14:54:18 t 1 1 178675 220 0.00 2019-11-30 14:57:27 2019-11-30 14:58:03 t 1 1 178676 220 0.00 2019-11-30 14:58:03 2019-11-30 14:58:39 t 1 1 178678 671 0.00 2019-11-30 14:52:29 2019-11-30 14:59:18 t 1 1 178679 220 0.00 2019-11-30 14:59:13 2019-11-30 14:59:49 t 1 1 178681 220 0.00 2019-11-30 15:00:22 2019-11-30 15:00:58 t 1 1 178690 220 0.00 2019-11-30 15:17:30 2019-11-30 15:25:16 t 1 1 178692 675 0.00 2019-11-30 15:27:29 2019-11-30 15:28:47 t 1 1 178695 220 0.00 2019-11-30 15:35:45 2019-11-30 15:35:59 t 1 1 178696 683 0.00 2019-11-30 14:27:51 2019-11-30 15:37:00 t 1 1 178701 683 0.00 2019-11-30 15:39:38 2019-11-30 15:41:22 t 1 1 178707 220 0.00 2019-11-30 15:47:05 2019-11-30 15:47:19 t 1 1 178709 673 0.00 2019-11-30 15:39:13 2019-11-30 15:50:05 t 1 1 178711 544 0.00 2019-11-30 15:50:17 2019-11-30 15:50:58 t 1 1 178712 544 0.00 2019-11-30 15:50:57 2019-11-30 15:51:24 t 1 1 178715 544 0.00 2019-11-30 15:52:36 2019-11-30 15:52:55 t 1 1 178717 220 0.00 2019-11-30 08:42:02 2019-11-30 15:55:10 t 1 2 178720 562 0.00 2019-11-30 15:57:16 2019-11-30 15:58:25 t 1 1 178724 667 0.00 2019-11-30 15:57:25 2019-11-30 16:01:24 t 1 1 178726 671 0.00 2019-11-30 15:56:50 2019-11-30 16:01:58 t 1 1 178730 591 0.00 2019-11-30 15:22:23 2019-11-30 16:06:37 t 1 1 178735 675 0.00 2019-11-30 16:10:38 2019-11-30 16:12:28 t 1 1 178741 645 0.00 2019-11-30 16:20:35 2019-11-30 16:23:26 t 1 1 178743 408 0.00 2019-11-30 16:24:14 2019-11-30 16:24:14 f 1 1 178747 520 0.00 2019-11-30 16:25:27 2019-11-30 16:27:08 t 1 1 178751 635 0.00 2019-11-30 16:11:17 2019-11-30 16:30:23 t 1 1 178753 671 0.00 2019-11-30 16:22:04 2019-11-30 16:34:04 t 1 1 178755 656 0.00 2019-11-30 14:54:33 2019-11-30 16:34:52 t 1 1 178759 645 0.00 2019-11-30 16:28:21 2019-11-30 16:38:46 t 1 1 178762 520 0.00 2019-11-30 16:27:08 2019-11-30 16:40:26 t 1 1 178764 671 0.00 2019-11-30 16:40:10 2019-11-30 16:45:29 t 1 1 178770 544 0.00 2019-11-30 16:47:02 2019-11-30 16:49:24 t 1 1 178775 635 0.00 2019-11-30 16:44:55 2019-11-30 16:57:08 t 1 1 178776 639 0.00 2019-11-30 16:57:09 2019-11-30 16:57:19 t 1 1 178781 660 0.00 2019-11-30 14:42:48 2019-11-30 17:00:00 t 1 1 178782 639 0.00 2019-11-30 16:58:59 2019-11-30 17:01:06 t 1 1 178783 520 0.00 2019-11-30 16:59:05 2019-11-30 17:01:25 t 1 1 178786 673 0.00 2019-11-30 16:59:41 2019-11-30 17:07:34 t 1 1 178793 562 0.00 2019-11-30 16:50:29 2019-11-30 17:18:02 t 1 1 178795 639 0.00 2019-11-30 17:16:22 2019-11-30 17:18:51 t 1 1 178797 639 0.00 2019-11-30 17:19:15 2019-11-30 17:19:19 t 1 1 178799 445 0.00 2019-11-30 17:17:47 2019-11-30 17:20:15 t 1 1 178800 673 0.00 2019-11-30 17:19:03 2019-11-30 17:23:29 t 1 1 178801 562 0.00 2019-11-30 17:24:19 2019-11-30 17:24:34 t 1 1 178803 551 0.00 2019-11-30 14:25:04 2019-11-30 17:25:11 t 1 1 178805 675 0.00 2019-11-30 17:24:13 2019-11-30 17:25:54 t 1 1 178808 545 0.00 2019-11-30 17:21:53 2019-11-30 17:28:52 t 1 1 178815 639 0.00 2019-11-30 17:26:50 2019-11-30 17:34:00 t 1 1 178819 615 0.00 2019-11-30 17:20:35 2019-11-30 17:38:31 t 1 1 178825 562 0.00 2019-11-30 17:42:41 2019-11-30 17:42:50 t 1 1 178832 520 0.00 2019-11-30 17:36:29 2019-11-30 17:50:15 t 1 1 178838 622 0.00 2019-11-30 17:41:39 2019-11-30 17:53:39 t 1 1 178839 611 0.00 2019-11-30 17:50:15 2019-11-30 17:54:31 t 1 1 178845 430 0.00 2019-11-30 17:53:23 2019-11-30 18:00:58 t 1 1 178847 445 0.00 2019-11-30 17:56:09 2019-11-30 18:01:44 t 1 1 178849 623 0.00 2019-11-30 18:03:54 2019-11-30 18:04:12 t 1 1 178852 623 0.00 2019-11-30 18:05:17 2019-11-30 18:05:18 t 1 1 178853 656 0.00 2019-11-30 17:55:15 2019-11-30 18:05:29 t 1 1 178854 685 0.00 2019-11-30 18:04:35 2019-11-30 18:06:43 t 1 1 178855 685 0.00 2019-11-30 18:07:12 2019-11-30 18:07:20 t 1 1 178857 685 0.00 2019-11-30 18:07:25 2019-11-30 18:07:31 t 1 1 178860 685 0.00 2019-11-30 18:09:13 2019-11-30 18:09:24 t 1 1 178862 685 0.00 2019-11-30 18:09:30 2019-11-30 18:09:42 t 1 1 178866 591 0.00 2019-11-30 17:45:28 2019-11-30 18:11:15 t 1 1 178869 685 0.00 2019-11-30 18:12:53 2019-11-30 18:13:01 t 1 1 178871 430 0.00 2019-11-30 18:00:58 2019-11-30 18:15:01 t 1 1 178879 623 0.00 2019-11-30 18:10:17 2019-11-30 18:21:02 t 1 1 178880 562 0.00 2019-11-30 18:21:10 2019-11-30 18:21:30 t 1 1 178883 639 0.00 2019-11-30 18:24:14 2019-11-30 18:24:31 t 1 1 178885 623 0.00 2019-11-30 18:26:19 2019-11-30 18:26:24 t 1 1 178888 445 0.00 2019-11-30 18:01:43 2019-11-30 18:26:46 t 1 1 178889 671 0.00 2019-11-30 18:25:37 2019-11-30 18:27:29 t 1 1 178895 562 0.00 2019-11-30 18:31:50 2019-11-30 18:32:09 t 1 1 178896 422 0.00 2019-11-30 18:32:27 2019-11-30 18:32:27 f 1 1 178899 445 0.00 2019-11-30 18:26:52 2019-11-30 18:34:59 t 1 1 178902 639 0.00 2019-11-30 18:35:31 2019-11-30 18:36:09 t 1 1 178904 683 0.00 2019-11-30 16:49:57 2019-11-30 18:37:51 t 1 1 178907 445 0.00 2019-11-30 18:34:59 2019-11-30 18:38:36 t 1 1 178911 683 0.00 2019-11-30 18:38:31 2019-11-30 18:39:45 t 1 1 178913 639 0.00 2019-11-30 18:39:47 2019-11-30 18:40:39 t 1 1 178918 639 0.00 2019-11-30 18:41:54 2019-11-30 18:42:32 t 1 1 178921 623 0.00 2019-11-30 18:43:06 2019-11-30 18:43:37 t 1 1 178923 625 0.00 2019-11-30 17:43:53 2019-11-30 18:44:44 t 1 1 178926 623 0.00 2019-11-30 18:45:25 2019-11-30 18:45:34 t 1 1 178930 639 0.00 2019-11-30 18:46:13 2019-11-30 18:47:11 t 1 1 178935 562 0.00 2019-11-30 18:48:47 2019-11-30 18:48:59 t 1 1 178947 656 0.00 2019-11-30 18:53:35 2019-11-30 18:57:37 t 1 1 178948 639 0.00 2019-11-30 18:56:18 2019-11-30 18:58:09 t 1 1 178950 623 0.00 2019-11-30 18:57:49 2019-11-30 18:59:09 t 1 1 178953 639 0.00 2019-11-30 18:58:40 2019-11-30 18:59:25 t 1 1 178957 623 0.00 2019-11-30 19:00:31 2019-11-30 19:00:41 t 1 1 178631 665 0.00 2019-11-30 14:14:21 2019-11-30 14:28:10 t 1 1 178639 639 0.00 2019-11-30 14:32:50 2019-11-30 14:36:31 t 1 1 178642 639 0.00 2019-11-30 14:36:55 2019-11-30 14:38:14 t 1 1 178646 660 0.00 2019-11-30 14:22:43 2019-11-30 14:42:48 t 1 1 178647 564 0.00 2019-11-30 14:36:49 2019-11-30 14:46:19 t 1 1 178648 639 0.00 2019-11-30 14:45:27 2019-11-30 14:46:30 t 1 1 178652 220 0.00 2019-11-30 14:08:09 2019-11-30 14:47:28 t 1 1 178654 220 0.00 2019-11-30 14:47:27 2019-11-30 14:48:01 t 1 1 178657 562 0.00 2019-11-30 14:48:23 2019-11-30 14:48:43 t 1 1 178658 220 0.00 2019-11-30 14:48:36 2019-11-30 14:49:12 t 1 1 178659 220 0.00 2019-11-30 14:49:12 2019-11-30 14:49:47 t 1 1 178663 587 0.00 2019-11-30 14:50:26 2019-11-30 14:50:26 f 1 1 178671 220 0.00 2019-11-30 14:53:07 2019-11-30 14:53:42 t 1 1 178674 220 0.00 2019-11-30 14:54:18 2019-11-30 14:57:27 t 1 1 178680 220 0.00 2019-11-30 14:59:49 2019-11-30 15:00:22 t 1 1 178682 220 0.00 2019-11-30 15:00:57 2019-11-30 15:01:06 t 1 1 178684 564 0.00 2019-11-30 14:46:19 2019-11-30 15:08:10 t 1 1 178685 562 0.00 2019-11-30 15:04:58 2019-11-30 15:14:31 t 1 1 178686 220 0.00 2019-11-30 15:01:33 2019-11-30 15:17:30 t 1 1 178687 611 0.00 2019-11-30 15:17:55 2019-11-30 15:20:08 t 1 1 178689 562 0.00 2019-11-30 15:15:33 2019-11-30 15:24:26 t 1 1 178691 671 0.00 2019-11-30 15:18:57 2019-11-30 15:28:14 t 1 1 178693 562 0.00 2019-11-30 15:24:54 2019-11-30 15:33:59 t 1 1 178694 220 0.00 2019-11-30 15:35:29 2019-11-30 15:35:37 t 1 1 178697 683 0.00 2019-11-30 15:37:00 2019-11-30 15:38:25 t 1 1 178699 683 0.00 2019-11-30 15:38:24 2019-11-30 15:39:38 t 1 1 178703 562 0.00 2019-11-30 15:40:44 2019-11-30 15:42:24 t 1 1 178706 220 0.00 2019-11-30 15:46:29 2019-11-30 15:47:06 t 1 1 178708 544 0.00 2019-11-30 15:05:50 2019-11-30 15:49:45 t 1 1 178716 637 0.00 2019-11-30 15:01:50 2019-11-30 15:53:14 t 1 1 178718 562 0.00 2019-11-30 15:55:18 2019-11-30 15:55:32 t 1 1 178719 671 0.00 2019-11-30 15:39:31 2019-11-30 15:56:50 t 1 1 178723 635 0.00 2019-11-30 15:40:28 2019-11-30 16:00:43 t 1 1 178728 667 0.00 2019-11-30 16:05:01 2019-11-30 16:05:44 t 1 1 178729 562 0.00 2019-11-30 16:06:00 2019-11-30 16:06:09 t 1 1 178731 667 0.00 2019-11-30 16:05:58 2019-11-30 16:06:57 t 1 1 178732 667 0.00 2019-11-30 16:07:07 2019-11-30 16:07:24 t 1 1 178733 635 0.00 2019-11-30 16:00:42 2019-11-30 16:11:18 t 1 1 178737 675 0.00 2019-11-30 16:14:18 2019-11-30 16:16:09 t 1 1 178738 562 0.00 2019-11-30 16:16:39 2019-11-30 16:16:48 t 1 1 178742 675 0.00 2019-11-30 16:22:15 2019-11-30 16:23:51 t 1 1 178744 520 0.00 2019-11-30 16:02:18 2019-11-30 16:24:16 t 1 1 178745 562 0.00 2019-11-30 16:25:24 2019-11-30 16:25:29 t 1 1 178749 498 0.00 2019-11-30 16:15:36 2019-11-30 16:29:37 t 1 2 178760 671 0.00 2019-11-30 16:34:03 2019-11-30 16:40:10 t 1 1 178767 562 0.00 2019-11-30 16:46:55 2019-11-30 16:47:44 t 1 1 178769 675 0.00 2019-11-30 16:47:08 2019-11-30 16:48:33 t 1 1 178771 683 0.00 2019-11-30 15:41:53 2019-11-30 16:49:45 t 1 1 178773 512 0.00 2019-11-30 16:26:16 2019-11-30 16:55:56 t 1 1 178774 639 0.00 2019-11-30 16:56:17 2019-11-30 16:56:46 t 1 1 178780 673 0.00 2019-11-30 16:52:28 2019-11-30 16:59:41 t 1 1 178788 681 0.00 2019-11-30 08:55:42 2019-11-30 17:08:32 t 1 1 178789 679 0.00 2019-11-30 17:10:31 2019-11-30 17:12:30 t 1 1 178790 635 0.00 2019-11-30 16:57:08 2019-11-30 17:15:18 t 1 1 178796 673 0.00 2019-11-30 17:07:34 2019-11-30 17:19:03 t 1 1 178798 675 0.00 2019-11-30 17:16:09 2019-11-30 17:19:23 t 1 1 178806 631 0.00 2019-11-30 17:26:10 2019-11-30 17:27:45 t 1 1 178810 220 0.00 2019-11-30 17:08:51 2019-11-30 17:29:40 t 1 2 178814 656 0.00 2019-11-30 17:29:38 2019-11-30 17:32:31 t 1 1 178816 520 0.00 2019-11-30 17:19:15 2019-11-30 17:35:09 t 1 1 178818 430 0.00 2019-11-30 17:27:41 2019-11-30 17:37:17 t 1 1 178820 512 0.00 2019-11-30 17:05:23 2019-11-30 17:38:57 t 1 1 178821 675 0.00 2019-11-30 17:31:46 2019-11-30 17:39:44 t 1 1 178823 675 0.00 2019-11-30 17:39:43 2019-11-30 17:41:58 t 1 1 178826 430 0.00 2019-11-30 17:37:17 2019-11-30 17:44:26 t 1 1 178827 545 0.00 2019-11-30 17:34:08 2019-11-30 17:44:56 t 1 1 178830 645 0.00 2019-11-30 17:45:10 2019-11-30 17:48:22 t 1 1 178831 445 0.00 2019-11-30 17:20:15 2019-11-30 17:49:52 t 1 1 178833 611 0.00 2019-11-30 17:37:40 2019-11-30 17:50:16 t 1 1 178834 639 0.00 2019-11-30 17:46:58 2019-11-30 17:50:20 t 1 1 178835 675 0.00 2019-11-30 17:45:42 2019-11-30 17:51:41 t 1 1 178836 430 0.00 2019-11-30 17:52:12 2019-11-30 17:52:28 t 1 1 178840 645 0.00 2019-11-30 17:51:15 2019-11-30 17:54:56 t 1 1 178842 445 0.00 2019-11-30 17:49:51 2019-11-30 17:55:22 t 1 1 178843 639 0.00 2019-11-30 17:50:13 2019-11-30 17:56:23 t 1 1 178846 675 0.00 2019-11-30 17:59:03 2019-11-30 18:01:42 t 1 1 178851 562 0.00 2019-11-30 18:03:59 2019-11-30 18:04:36 t 1 1 178856 623 0.00 2019-11-30 18:05:55 2019-11-30 18:07:25 t 1 1 178859 685 0.00 2019-11-30 18:09:04 2019-11-30 18:09:08 t 1 1 178861 623 0.00 2019-11-30 18:09:16 2019-11-30 18:09:25 t 1 1 178864 578 0.00 2019-11-30 13:10:15 2019-11-30 18:11:01 t 1 1 178867 685 0.00 2019-11-30 18:12:10 2019-11-30 18:12:16 t 1 1 178868 544 0.00 2019-11-30 17:42:07 2019-11-30 18:12:23 t 1 1 178870 615 0.00 2019-11-30 17:50:08 2019-11-30 18:13:18 t 1 1 178872 685 0.00 2019-11-30 18:14:00 2019-11-30 18:15:01 t 1 1 178874 685 0.00 2019-11-30 18:16:01 2019-11-30 18:16:08 t 1 1 178875 685 0.00 2019-11-30 18:16:36 2019-11-30 18:16:42 t 1 1 178876 622 0.00 2019-11-30 18:15:28 2019-11-30 18:17:47 t 1 1 178881 623 0.00 2019-11-30 18:24:11 2019-11-30 18:24:13 t 1 1 178882 544 0.00 2019-11-30 18:12:23 2019-11-30 18:24:30 t 1 1 178886 639 0.00 2019-11-30 18:26:18 2019-11-30 18:26:37 t 1 1 178890 551 0.00 2019-11-30 17:25:11 2019-11-30 18:27:42 t 1 1 178892 639 0.00 2019-11-30 18:28:09 2019-11-30 18:30:08 t 1 1 178893 685 0.00 2019-11-30 18:30:23 2019-11-30 18:31:00 t 1 1 178894 685 0.00 2019-11-30 18:31:10 2019-11-30 18:31:22 t 1 1 178900 639 0.00 2019-11-30 18:30:30 2019-11-30 18:35:32 t 1 1 178905 656 0.00 2019-11-30 18:28:40 2019-11-30 18:38:06 t 1 1 178908 622 0.00 2019-11-30 18:25:14 2019-11-30 18:38:49 t 1 1 178910 639 0.00 2019-11-30 18:39:19 2019-11-30 18:39:28 t 1 1 178914 639 0.00 2019-11-30 18:40:47 2019-11-30 18:41:33 t 1 1 178915 675 0.00 2019-11-30 18:40:28 2019-11-30 18:41:58 t 1 1 178920 544 0.00 2019-11-30 18:24:30 2019-11-30 18:43:12 t 1 1 178924 623 0.00 2019-11-30 18:44:38 2019-11-30 18:44:46 t 1 1 178927 639 0.00 2019-11-30 18:44:16 2019-11-30 18:45:45 t 1 1 178929 685 0.00 2019-11-30 18:46:31 2019-11-30 18:46:52 t 1 1 178940 639 0.00 2019-11-30 18:51:49 2019-11-30 18:53:40 t 1 1 178942 591 0.00 2019-11-30 18:50:42 2019-11-30 18:55:59 t 1 1 178668 220 0.00 2019-11-30 14:52:34 2019-11-30 14:53:08 t 1 1 178670 220 0.00 2019-11-30 13:50:12 2019-11-30 14:53:36 t 1 2 178673 656 0.00 2019-11-30 12:40:02 2019-11-30 14:54:33 t 1 1 178677 220 0.00 2019-11-30 14:58:39 2019-11-30 14:59:13 t 1 1 178683 622 0.00 2019-11-30 14:50:12 2019-11-30 15:05:22 t 1 1 178688 220 0.00 2019-11-30 14:55:04 2019-11-30 15:23:21 t 1 2 178698 671 0.00 2019-11-30 15:28:12 2019-11-30 15:39:31 t 1 1 178700 562 0.00 2019-11-30 15:33:59 2019-11-30 15:40:35 t 1 1 178702 675 0.00 2019-11-30 15:40:37 2019-11-30 15:41:54 t 1 1 178704 562 0.00 2019-11-30 15:44:37 2019-11-30 15:44:55 t 1 1 178705 220 0.00 2019-11-30 15:46:15 2019-11-30 15:46:30 t 1 1 178710 544 0.00 2019-11-30 15:49:44 2019-11-30 15:50:17 t 1 1 178713 544 0.00 2019-11-30 15:51:23 2019-11-30 15:52:07 t 1 1 178714 544 0.00 2019-11-30 15:52:07 2019-11-30 15:52:37 t 1 1 178721 673 0.00 2019-11-30 15:50:05 2019-11-30 15:59:38 t 1 1 178722 538 0.00 2019-11-30 14:19:09 2019-11-30 16:00:39 t 1 1 178725 667 0.00 2019-11-30 16:01:30 2019-11-30 16:01:47 t 1 1 178727 675 0.00 2019-11-30 16:02:13 2019-11-30 16:04:11 t 1 1 178734 667 0.00 2019-11-30 16:11:55 2019-11-30 16:12:25 t 1 1 178736 615 0.00 2019-11-30 15:54:53 2019-11-30 16:13:29 t 1 1 178739 591 0.00 2019-11-30 16:13:36 2019-11-30 16:16:53 t 1 1 178740 645 0.00 2019-11-30 16:09:25 2019-11-30 16:20:35 t 1 1 178746 422 0.00 2019-11-30 16:26:44 2019-11-30 16:26:44 f 1 1 178748 562 0.00 2019-11-30 16:27:06 2019-11-30 16:27:26 t 1 1 178750 675 0.00 2019-11-30 16:27:01 2019-11-30 16:29:41 t 1 1 178752 220 0.00 2019-11-30 16:11:13 2019-11-30 16:31:39 t 1 1 178754 615 0.00 2019-11-30 16:13:29 2019-11-30 16:34:30 t 1 1 178756 656 0.00 2019-11-30 16:35:20 2019-11-30 16:36:32 t 1 1 178757 562 0.00 2019-11-30 16:37:43 2019-11-30 16:38:10 t 1 1 178758 562 0.00 2019-11-30 16:38:30 2019-11-30 16:38:40 t 1 1 178761 645 0.00 2019-11-30 16:38:46 2019-11-30 16:40:17 t 1 1 178763 635 0.00 2019-11-30 16:30:22 2019-11-30 16:44:56 t 1 1 178765 562 0.00 2019-11-30 16:45:30 2019-11-30 16:45:41 t 1 1 178766 445 0.00 2019-11-30 14:35:17 2019-11-30 16:46:21 t 1 1 178768 671 0.00 2019-11-30 16:45:29 2019-11-30 16:47:54 t 1 1 178772 520 0.00 2019-11-30 16:40:26 2019-11-30 16:52:16 t 1 1 178777 639 0.00 2019-11-30 16:58:17 2019-11-30 16:58:19 t 1 1 178778 520 0.00 2019-11-30 16:52:15 2019-11-30 16:58:29 t 1 1 178779 520 0.00 2019-11-30 16:58:28 2019-11-30 16:59:06 t 1 1 178784 220 0.00 2019-11-30 16:41:17 2019-11-30 17:02:37 t 1 2 178785 544 0.00 2019-11-30 16:52:21 2019-11-30 17:05:14 t 1 1 178787 675 0.00 2019-11-30 17:05:48 2019-11-30 17:07:49 t 1 1 178791 445 0.00 2019-11-30 16:46:20 2019-11-30 17:16:40 t 1 1 178792 445 0.00 2019-11-30 17:16:39 2019-11-30 17:17:48 t 1 1 178794 520 0.00 2019-11-30 17:01:25 2019-11-30 17:18:48 t 1 1 178802 639 0.00 2019-11-30 17:23:23 2019-11-30 17:25:07 t 1 1 178804 639 0.00 2019-11-30 17:25:24 2019-11-30 17:25:30 t 1 1 178807 671 0.00 2019-11-30 17:24:59 2019-11-30 17:28:24 t 1 1 178809 656 0.00 2019-11-30 16:44:41 2019-11-30 17:29:38 t 1 1 178811 671 0.00 2019-11-30 17:28:24 2019-11-30 17:30:02 t 1 1 178812 562 0.00 2019-11-30 17:27:03 2019-11-30 17:30:20 t 1 1 178813 673 0.00 2019-11-30 17:23:29 2019-11-30 17:31:54 t 1 1 178817 562 0.00 2019-11-30 17:35:03 2019-11-30 17:35:17 t 1 1 178822 622 0.00 2019-11-30 15:05:22 2019-11-30 17:41:39 t 1 1 178824 544 0.00 2019-11-30 17:28:01 2019-11-30 17:42:07 t 1 1 178828 591 0.00 2019-11-30 16:29:17 2019-11-30 17:45:28 t 1 1 178829 430 0.00 2019-11-30 17:44:26 2019-11-30 17:47:57 t 1 1 178837 562 0.00 2019-11-30 17:53:13 2019-11-30 17:53:37 t 1 1 178841 637 0.00 2019-11-30 15:54:25 2019-11-30 17:54:58 t 1 1 178844 545 0.00 2019-11-30 17:44:55 2019-11-30 18:00:18 t 1 1 178848 623 0.00 2019-11-30 18:00:34 2019-11-30 18:02:37 t 1 1 178850 685 0.00 2019-11-30 18:01:38 2019-11-30 18:04:30 t 1 1 178858 520 0.00 2019-11-30 17:50:13 2019-11-30 18:08:44 t 1 1 178863 562 0.00 2019-11-30 18:09:11 2019-11-30 18:10:41 t 1 1 178865 685 0.00 2019-11-30 18:09:48 2019-11-30 18:11:11 t 1 1 178873 622 0.00 2019-11-30 17:53:39 2019-11-30 18:15:28 t 1 1 178877 685 0.00 2019-11-30 18:17:42 2019-11-30 18:19:08 t 1 1 178878 656 0.00 2019-11-30 18:18:30 2019-11-30 18:20:49 t 1 1 178884 685 0.00 2019-11-30 18:18:00 2019-11-30 18:25:56 t 1 1 178887 485 0.00 2019-11-30 18:20:43 2019-11-30 18:26:44 t 1 1 178891 639 0.00 2019-11-30 18:28:58 2019-11-30 18:29:03 t 1 1 178897 422 0.00 2019-11-30 18:32:35 2019-11-30 18:32:35 f 1 1 178898 485 0.00 2019-11-30 18:30:48 2019-11-30 18:33:28 t 1 1 178901 623 0.00 2019-11-30 18:28:34 2019-11-30 18:36:05 t 1 1 178903 639 0.00 2019-11-30 18:37:01 2019-11-30 18:37:28 t 1 1 178906 623 0.00 2019-11-30 18:38:25 2019-11-30 18:38:33 t 1 1 178909 551 0.00 2019-11-30 18:27:42 2019-11-30 18:39:27 t 1 1 178912 562 0.00 2019-11-30 18:34:54 2019-11-30 18:40:00 t 1 1 178916 685 0.00 2019-11-30 18:32:37 2019-11-30 18:42:18 t 1 1 178917 685 0.00 2019-11-30 18:42:22 2019-11-30 18:42:28 t 1 1 178919 639 0.00 2019-11-30 18:42:36 2019-11-30 18:42:50 t 1 1 178922 639 0.00 2019-11-30 18:43:53 2019-11-30 18:44:10 t 1 1 178925 545 0.00 2019-11-30 18:36:53 2019-11-30 18:44:52 t 1 1 178928 637 0.00 2019-11-30 17:54:58 2019-11-30 18:45:49 t 1 1 178931 685 0.00 2019-11-30 18:46:58 2019-11-30 18:47:12 t 1 1 178932 623 0.00 2019-11-30 18:47:12 2019-11-30 18:47:34 t 1 1 178933 551 0.00 2019-11-30 18:39:27 2019-11-30 18:48:41 t 1 1 178934 685 0.00 2019-11-30 18:47:32 2019-11-30 18:48:50 t 1 1 178936 683 0.00 2019-11-30 18:39:45 2019-11-30 18:49:30 t 1 1 178937 639 0.00 2019-11-30 18:48:10 2019-11-30 18:50:09 t 1 1 178938 591 0.00 2019-11-30 18:11:15 2019-11-30 18:50:42 t 1 1 178939 639 0.00 2019-11-30 18:50:46 2019-11-30 18:51:03 t 1 1 178941 516 0.00 2019-11-30 18:52:04 2019-11-30 18:53:44 t 1 1 178943 220 0.00 2019-11-30 18:13:43 2019-11-30 18:56:06 t 1 2 178946 623 0.00 2019-11-30 18:49:45 2019-11-30 18:57:31 t 1 1 178952 623 0.00 2019-11-30 18:59:02 2019-11-30 18:59:20 t 1 1 178955 562 0.00 2019-11-30 18:59:19 2019-11-30 18:59:42 t 1 1 178956 544 0.00 2019-11-30 18:56:25 2019-11-30 19:00:39 t 1 1 178958 623 0.00 2019-11-30 19:00:47 2019-11-30 19:00:53 t 1 1 178959 639 0.00 2019-11-30 19:00:24 2019-11-30 19:01:25 t 1 1 178961 675 0.00 2019-11-30 19:00:32 2019-11-30 19:01:51 t 1 1 178964 615 0.00 2019-11-30 18:55:42 2019-11-30 19:03:35 t 1 1 178966 623 0.00 2019-11-30 19:01:56 2019-11-30 19:04:09 t 1 1 178971 685 0.00 2019-11-30 19:05:16 2019-11-30 19:06:45 t 1 1 178974 615 0.00 2019-11-30 19:03:34 2019-11-30 19:07:12 t 1 1 178976 685 0.00 2019-11-30 19:06:59 2019-11-30 19:07:29 t 1 1 178979 562 0.00 2019-11-30 19:07:43 2019-11-30 19:07:56 t 1 1 178944 639 0.00 2019-11-30 18:56:49 2019-11-30 18:57:05 t 1 1 178945 639 0.00 2019-11-30 18:57:12 2019-11-30 18:57:27 t 1 1 178949 625 0.00 2019-11-30 18:51:53 2019-11-30 18:58:16 t 1 1 178951 551 0.00 2019-11-30 18:48:41 2019-11-30 18:59:11 t 1 1 178954 625 0.00 2019-11-30 18:58:34 2019-11-30 18:59:40 t 1 1 178962 639 0.00 2019-11-30 19:01:45 2019-11-30 19:02:17 t 1 1 178963 623 0.00 2019-11-30 19:02:37 2019-11-30 19:02:51 t 1 1 178965 623 0.00 2019-11-30 19:04:02 2019-11-30 19:04:02 f 1 1 178968 623 0.00 2019-11-30 19:02:56 2019-11-30 19:05:09 t 1 1 178970 623 0.00 2019-11-30 19:04:35 2019-11-30 19:05:32 t 1 1 178972 685 0.00 2019-11-30 19:06:49 2019-11-30 19:06:52 t 1 1 178973 623 0.00 2019-11-30 19:07:12 2019-11-30 19:07:12 f 1 1 178977 623 0.00 2019-11-30 19:06:33 2019-11-30 19:07:35 t 1 1 178978 220 0.00 2019-11-30 18:20:00 2019-11-30 19:07:54 t 1 2 178980 623 0.00 2019-11-30 19:08:03 2019-11-30 19:08:03 f 1 1 178985 673 0.00 2019-11-30 19:08:27 2019-11-30 19:09:40 t 1 1 178986 671 0.00 2019-11-30 19:06:13 2019-11-30 19:10:22 t 1 1 178989 639 0.00 2019-11-30 19:06:03 2019-11-30 19:13:41 t 1 1 178990 562 0.00 2019-11-30 19:13:20 2019-11-30 19:14:27 t 1 1 178998 685 0.00 2019-11-30 19:16:42 2019-11-30 19:19:51 t 1 1 179000 639 0.00 2019-11-30 19:17:36 2019-11-30 19:20:21 t 1 1 179004 622 0.00 2019-11-30 19:14:27 2019-11-30 19:23:05 t 1 1 179008 685 0.00 2019-11-30 19:24:31 2019-11-30 19:24:37 t 1 1 179010 685 0.00 2019-11-30 19:24:42 2019-11-30 19:24:49 t 1 1 179013 675 0.00 2019-11-30 19:25:10 2019-11-30 19:26:31 t 1 1 179014 685 0.00 2019-11-30 19:26:46 2019-11-30 19:26:51 t 1 1 179018 685 0.00 2019-11-30 19:27:57 2019-11-30 19:28:03 t 1 1 179020 639 0.00 2019-11-30 19:26:22 2019-11-30 19:28:09 t 1 1 179024 685 0.00 2019-11-30 19:28:58 2019-11-30 19:29:05 t 1 1 179025 685 0.00 2019-11-30 19:29:10 2019-11-30 19:29:47 t 1 1 179027 637 0.00 2019-11-30 19:18:48 2019-11-30 19:30:17 t 1 1 179030 520 0.00 2019-11-30 19:21:36 2019-11-30 19:31:08 t 1 1 179033 481 0.00 2019-11-30 17:24:14 2019-11-30 19:32:43 t 1 1 179037 685 0.00 2019-11-30 19:34:01 2019-11-30 19:34:08 t 1 1 179039 562 0.00 2019-11-30 19:35:04 2019-11-30 19:35:25 t 1 1 179041 551 0.00 2019-11-30 19:30:47 2019-11-30 19:36:03 t 1 1 179042 685 0.00 2019-11-30 19:36:06 2019-11-30 19:36:13 t 1 1 179045 637 0.00 2019-11-30 19:30:17 2019-11-30 19:37:17 t 1 1 179046 649 0.00 2019-11-30 19:19:12 2019-11-30 19:37:35 t 1 1 179054 685 0.00 2019-11-30 19:42:01 2019-11-30 19:42:07 t 1 1 179059 685 0.00 2019-11-30 19:43:43 2019-11-30 19:44:43 t 1 1 179060 562 0.00 2019-11-30 19:44:29 2019-11-30 19:44:51 t 1 1 179063 520 0.00 2019-11-30 19:36:45 2019-11-30 19:45:53 t 1 1 179067 685 0.00 2019-11-30 19:47:16 2019-11-30 19:47:24 t 1 1 179069 551 0.00 2019-11-30 19:36:03 2019-11-30 19:48:48 t 1 1 179071 671 0.00 2019-11-30 19:46:34 2019-11-30 19:49:14 t 1 1 179073 675 0.00 2019-11-30 19:44:49 2019-11-30 19:49:25 t 1 1 179074 681 0.00 2019-11-30 17:08:32 2019-11-30 19:50:04 t 1 1 179076 685 0.00 2019-11-30 19:49:27 2019-11-30 19:52:04 t 1 1 179078 685 0.00 2019-11-30 19:54:06 2019-11-30 19:54:16 t 1 1 179080 656 0.00 2019-11-30 19:50:50 2019-11-30 19:55:35 t 1 1 179082 562 0.00 2019-11-30 19:55:21 2019-11-30 19:56:02 t 1 1 179083 562 0.00 2019-11-30 19:56:09 2019-11-30 19:56:34 t 1 1 179089 685 0.00 2019-11-30 19:59:20 2019-11-30 19:59:55 t 1 1 179090 649 0.00 2019-11-30 19:36:38 2019-11-30 20:00:28 t 1 1 179100 683 0.00 2019-11-30 19:31:08 2019-11-30 20:10:36 t 1 1 179103 545 0.00 2019-11-30 20:03:34 2019-11-30 20:11:49 t 1 1 179106 481 0.00 2019-11-30 19:32:43 2019-11-30 20:12:24 t 1 1 179108 671 0.00 2019-11-30 20:10:12 2019-11-30 20:12:44 t 1 1 179109 671 0.00 2019-11-30 20:12:30 2019-11-30 20:14:09 t 1 1 179111 675 0.00 2019-11-30 19:59:21 2019-11-30 20:15:12 t 1 1 179112 445 0.00 2019-11-30 20:07:53 2019-11-30 20:16:38 t 1 1 179116 685 0.00 2019-11-30 20:12:08 2019-11-30 20:20:30 t 1 1 179119 685 0.00 2019-11-30 20:20:39 2019-11-30 20:21:42 t 1 1 179126 685 0.00 2019-11-30 20:21:50 2019-11-30 20:29:40 t 1 1 179127 637 0.00 2019-11-30 20:23:52 2019-11-30 20:29:48 t 1 1 179129 673 0.00 2019-11-30 20:06:40 2019-11-30 20:30:01 t 1 1 179131 685 0.00 2019-11-30 20:30:41 2019-11-30 20:30:48 t 1 1 179134 562 0.00 2019-11-30 20:31:20 2019-11-30 20:31:44 t 1 1 179136 622 0.00 2019-11-30 19:23:05 2019-11-30 20:32:10 t 1 1 179139 685 0.00 2019-11-30 20:33:17 2019-11-30 20:33:26 t 1 1 179146 637 0.00 2019-11-30 20:29:48 2019-11-30 20:39:12 t 1 1 179148 649 0.00 2019-11-30 20:18:45 2019-11-30 20:41:26 t 1 1 179153 562 0.00 2019-11-30 20:45:20 2019-11-30 20:45:52 t 1 1 179155 445 0.00 2019-11-30 20:42:58 2019-11-30 20:47:44 t 1 1 179158 645 0.00 2019-11-30 20:51:46 2019-11-30 20:52:49 t 1 1 179164 645 0.00 2019-11-30 20:55:41 2019-11-30 20:57:14 t 1 1 179167 649 0.00 2019-11-30 20:43:32 2019-11-30 21:01:08 t 1 1 179173 544 0.00 2019-11-30 19:34:12 2019-11-30 21:10:46 t 1 1 179175 545 0.00 2019-11-30 20:54:33 2019-11-30 21:12:18 t 1 1 179177 578 0.00 2019-11-30 20:23:27 2019-11-30 21:13:01 t 1 1 179179 520 0.00 2019-11-30 21:02:24 2019-11-30 21:15:18 t 1 1 179180 645 0.00 2019-11-30 21:14:29 2019-11-30 21:16:00 t 1 1 179184 220 0.00 2019-11-30 21:16:50 2019-11-30 21:17:04 t 1 1 179185 498 0.00 2019-11-30 21:17:26 2019-11-30 21:17:26 f 1 2 179189 451 0.00 2019-11-30 20:56:19 2019-11-30 21:19:18 t 1 1 179192 508 0.00 2019-11-30 21:18:12 2019-11-30 21:21:09 t 1 2 179193 679 0.00 2019-11-30 21:13:26 2019-11-30 21:22:29 t 1 1 179198 562 0.00 2019-11-30 21:23:23 2019-11-30 21:25:09 t 1 1 179199 675 0.00 2019-11-30 21:22:55 2019-11-30 21:25:24 t 1 1 179202 562 0.00 2019-11-30 21:26:38 2019-11-30 21:26:52 t 1 1 179211 673 0.00 2019-11-30 21:26:15 2019-11-30 21:30:24 t 1 1 179212 544 0.00 2019-11-30 21:27:31 2019-11-30 21:31:25 t 1 1 179217 671 0.00 2019-11-30 21:33:06 2019-11-30 21:35:49 t 1 1 179220 538 0.00 2019-11-30 20:04:41 2019-11-30 21:37:24 t 1 1 179221 639 0.00 2019-11-30 19:26:47 2019-11-30 21:37:56 t 1 1 179222 667 0.00 2019-11-30 21:37:54 2019-11-30 21:38:38 t 1 1 179225 520 0.00 2019-11-30 21:15:17 2019-11-30 21:41:31 t 1 1 179226 625 0.00 2019-11-30 21:36:44 2019-11-30 21:42:33 t 1 1 179228 591 0.00 2019-11-30 21:27:18 2019-11-30 21:44:50 t 1 1 179229 562 0.00 2019-11-30 21:44:52 2019-11-30 21:45:10 t 1 1 179231 671 0.00 2019-11-30 21:44:21 2019-11-30 21:46:18 t 1 1 179233 481 0.00 2019-11-30 20:22:03 2019-11-30 21:48:19 t 1 1 179236 562 0.00 2019-11-30 21:50:51 2019-11-30 21:51:30 t 1 1 179238 445 0.00 2019-11-30 20:49:01 2019-11-30 21:55:53 t 1 1 179239 220 0.00 2019-11-30 21:32:38 2019-11-30 21:57:02 t 1 2 179240 591 0.00 2019-11-30 21:44:50 2019-11-30 21:58:44 t 1 1 178960 639 0.00 2019-11-30 19:01:24 2019-11-30 19:01:37 t 1 1 178967 545 0.00 2019-11-30 19:00:55 2019-11-30 19:04:57 t 1 1 178969 639 0.00 2019-11-30 19:04:50 2019-11-30 19:05:18 t 1 1 178975 645 0.00 2019-11-30 19:00:56 2019-11-30 19:07:12 t 1 1 178983 623 0.00 2019-11-30 19:07:38 2019-11-30 19:09:09 t 1 1 178984 545 0.00 2019-11-30 19:06:24 2019-11-30 19:09:35 t 1 1 178988 498 0.00 2019-11-30 18:41:52 2019-11-30 19:13:18 t 1 2 178993 639 0.00 2019-11-30 19:15:51 2019-11-30 19:17:17 t 1 1 178995 649 0.00 2019-11-30 18:57:55 2019-11-30 19:17:29 t 1 1 178997 551 0.00 2019-11-30 18:59:11 2019-11-30 19:19:16 t 1 1 179002 685 0.00 2019-11-30 19:21:39 2019-11-30 19:21:46 t 1 1 179005 639 0.00 2019-11-30 19:20:21 2019-11-30 19:23:17 t 1 1 179006 551 0.00 2019-11-30 19:19:16 2019-11-30 19:24:15 t 1 1 179007 685 0.00 2019-11-30 19:24:11 2019-11-30 19:24:26 t 1 1 179009 562 0.00 2019-11-30 19:24:33 2019-11-30 19:24:42 t 1 1 179012 512 0.00 2019-11-30 19:13:24 2019-11-30 19:26:26 t 1 1 179015 685 0.00 2019-11-30 19:26:56 2019-11-30 19:27:13 t 1 1 179016 685 0.00 2019-11-30 19:27:33 2019-11-30 19:27:40 t 1 1 179019 685 0.00 2019-11-30 19:26:14 2019-11-30 19:28:09 t 1 1 179021 685 0.00 2019-11-30 19:28:08 2019-11-30 19:28:15 t 1 1 179029 551 0.00 2019-11-30 19:24:15 2019-11-30 19:30:47 t 1 1 179031 685 0.00 2019-11-30 19:30:06 2019-11-30 19:31:11 t 1 1 179035 685 0.00 2019-11-30 19:31:11 2019-11-30 19:33:32 t 1 1 179040 685 0.00 2019-11-30 19:35:28 2019-11-30 19:35:40 t 1 1 179044 520 0.00 2019-11-30 19:33:21 2019-11-30 19:36:45 t 1 1 179049 499 0.00 2019-11-30 19:38:24 2019-11-30 19:39:28 t 1 1 179051 685 0.00 2019-11-30 19:40:30 2019-11-30 19:40:39 t 1 1 179052 512 0.00 2019-11-30 19:28:15 2019-11-30 19:41:20 t 1 1 179055 685 0.00 2019-11-30 19:42:41 2019-11-30 19:42:48 t 1 1 179056 656 0.00 2019-11-30 19:37:45 2019-11-30 19:43:33 t 1 1 179058 673 0.00 2019-11-30 19:43:14 2019-11-30 19:44:17 t 1 1 179066 685 0.00 2019-11-30 19:46:45 2019-11-30 19:46:54 t 1 1 179070 685 0.00 2019-11-30 19:47:00 2019-11-30 19:49:09 t 1 1 179079 679 0.00 2019-11-30 19:46:44 2019-11-30 19:55:00 t 1 1 179087 685 0.00 2019-11-30 19:57:49 2019-11-30 19:58:39 t 1 1 179091 562 0.00 2019-11-30 20:01:21 2019-11-30 20:01:48 t 1 1 179096 445 0.00 2019-11-30 18:40:46 2019-11-30 20:07:54 t 1 1 179098 656 0.00 2019-11-30 20:00:53 2019-11-30 20:09:45 t 1 1 179099 451 0.00 2019-11-30 20:01:30 2019-11-30 20:10:16 t 1 1 179101 685 0.00 2019-11-30 20:00:52 2019-11-30 20:11:19 t 1 1 179102 637 0.00 2019-11-30 20:07:10 2019-11-30 20:11:47 t 1 1 179105 611 0.00 2019-11-30 20:01:25 2019-11-30 20:12:20 t 1 1 179107 562 0.00 2019-11-30 20:12:15 2019-11-30 20:12:36 t 1 1 179110 487 0.00 2019-11-30 19:42:30 2019-11-30 20:14:43 t 1 2 179114 679 0.00 2019-11-30 20:17:34 2019-11-30 20:18:18 t 1 1 179117 645 0.00 2019-11-30 20:10:46 2019-11-30 20:20:39 t 1 1 179123 445 0.00 2019-11-30 20:17:00 2019-11-30 20:25:53 t 1 1 179132 685 0.00 2019-11-30 20:30:53 2019-11-30 20:31:12 t 1 1 179133 611 0.00 2019-11-30 20:23:50 2019-11-30 20:31:43 t 1 1 179137 675 0.00 2019-11-30 20:28:52 2019-11-30 20:32:17 t 1 1 179138 685 0.00 2019-11-30 20:32:17 2019-11-30 20:32:23 t 1 1 179140 545 0.00 2019-11-30 20:29:37 2019-11-30 20:34:39 t 1 1 179143 566 0.00 2019-11-30 20:23:13 2019-11-30 20:37:38 t 1 1 179144 685 0.00 2019-11-30 20:37:38 2019-11-30 20:37:47 t 1 1 179145 562 0.00 2019-11-30 20:37:59 2019-11-30 20:39:02 t 1 1 179150 445 0.00 2019-11-30 20:28:34 2019-11-30 20:42:58 t 1 1 179151 591 0.00 2019-11-30 19:47:56 2019-11-30 20:44:12 t 1 1 179152 562 0.00 2019-11-30 20:42:52 2019-11-30 20:44:39 t 1 1 179159 671 0.00 2019-11-30 20:44:24 2019-11-30 20:53:02 t 1 1 179161 671 0.00 2019-11-30 20:53:01 2019-11-30 20:54:54 t 1 1 179162 562 0.00 2019-11-30 20:55:47 2019-11-30 20:55:59 t 1 1 179165 591 0.00 2019-11-30 20:55:03 2019-11-30 20:58:03 t 1 1 179169 562 0.00 2019-11-30 21:05:13 2019-11-30 21:05:33 t 1 1 179170 220 0.00 2019-11-30 21:05:49 2019-11-30 21:06:55 t 1 1 179171 622 0.00 2019-11-30 20:32:19 2019-11-30 21:08:00 t 1 1 179172 673 0.00 2019-11-30 21:02:28 2019-11-30 21:09:13 t 1 1 179176 675 0.00 2019-11-30 21:07:46 2019-11-30 21:12:58 t 1 1 179181 562 0.00 2019-11-30 21:16:02 2019-11-30 21:16:10 t 1 1 179186 498 0.00 2019-11-30 21:17:44 2019-11-30 21:17:44 f 1 2 179188 508 0.00 2019-11-30 21:17:53 2019-11-30 21:17:57 t 1 2 179191 671 0.00 2019-11-30 21:13:40 2019-11-30 21:21:05 t 1 1 179194 679 0.00 2019-11-30 21:23:23 2019-11-30 21:23:26 t 1 1 179195 679 0.00 2019-11-30 21:23:47 2019-11-30 21:23:52 t 1 1 179197 679 0.00 2019-11-30 21:24:11 2019-11-30 21:24:46 t 1 1 179201 667 0.00 2019-11-30 21:26:29 2019-11-30 21:26:43 t 1 1 179204 611 0.00 2019-11-30 21:24:23 2019-11-30 21:27:09 t 1 1 179206 679 0.00 2019-11-30 21:26:09 2019-11-30 21:27:13 t 1 1 179208 544 0.00 2019-11-30 21:10:46 2019-11-30 21:27:31 t 1 1 179209 667 0.00 2019-11-30 21:26:43 2019-11-30 21:28:02 t 1 1 179213 673 0.00 2019-11-30 21:30:24 2019-11-30 21:32:13 t 1 1 179223 551 0.00 2019-11-30 20:09:05 2019-11-30 21:39:22 t 1 1 179227 671 0.00 2019-11-30 21:35:49 2019-11-30 21:44:22 t 1 1 179232 675 0.00 2019-11-30 21:40:29 2019-11-30 21:46:31 t 1 1 179234 660 0.00 2019-11-30 20:52:04 2019-11-30 21:49:46 t 1 1 179235 520 0.00 2019-11-30 21:41:31 2019-11-30 21:51:25 t 1 1 179245 520 0.00 2019-11-30 21:51:25 2019-11-30 22:03:37 t 1 1 179246 667 0.00 2019-11-30 22:04:16 2019-11-30 22:04:28 t 1 1 179249 675 0.00 2019-11-30 22:08:28 2019-11-30 22:10:03 t 1 1 179251 499 0.00 2019-11-30 22:02:01 2019-11-30 22:10:39 t 1 1 179252 487 0.00 2019-11-30 21:45:31 2019-11-30 22:11:37 t 1 2 179255 637 0.00 2019-11-30 20:39:12 2019-11-30 22:13:02 t 1 1 179258 687 0.00 2019-11-30 22:13:11 2019-11-30 22:16:09 t 1 1 179259 512 0.00 2019-11-30 22:12:20 2019-11-30 22:16:31 t 1 1 179261 562 0.00 2019-11-30 22:20:14 2019-11-30 22:20:27 t 1 1 179264 622 0.00 2019-11-30 22:22:30 2019-11-30 22:24:41 t 1 1 179267 485 0.00 2019-11-30 22:10:10 2019-11-30 22:27:29 t 1 1 179269 545 0.00 2019-11-30 22:25:29 2019-11-30 22:31:24 t 1 1 179274 562 0.00 2019-11-30 22:32:38 2019-11-30 22:34:11 t 1 1 179279 639 0.00 2019-11-30 22:39:54 2019-11-30 22:41:11 t 1 1 179284 639 0.00 2019-11-30 22:49:46 2019-11-30 22:50:20 t 1 1 179285 687 0.00 2019-11-30 22:43:24 2019-11-30 22:51:28 t 1 1 179286 671 0.00 2019-11-30 22:51:05 2019-11-30 22:52:58 t 1 1 179287 562 0.00 2019-11-30 22:55:00 2019-11-30 22:55:23 t 1 1 179288 639 0.00 2019-11-30 22:55:53 2019-11-30 22:56:28 t 1 1 179289 687 0.00 2019-11-30 22:51:28 2019-11-30 22:57:37 t 1 1 179290 562 0.00 2019-11-30 22:58:22 2019-11-30 23:01:01 t 1 1 179293 639 0.00 2019-11-30 23:02:07 2019-11-30 23:02:43 t 1 1 178981 623 0.00 2019-11-30 19:06:22 2019-11-30 19:08:09 t 1 1 178982 685 0.00 2019-11-30 19:07:32 2019-11-30 19:09:07 t 1 1 178987 637 0.00 2019-11-30 18:45:49 2019-11-30 19:11:14 t 1 1 178991 622 0.00 2019-11-30 18:38:49 2019-11-30 19:14:27 t 1 1 178992 545 0.00 2019-11-30 19:09:35 2019-11-30 19:16:13 t 1 1 178994 545 0.00 2019-11-30 19:16:12 2019-11-30 19:17:20 t 1 1 178996 637 0.00 2019-11-30 19:12:16 2019-11-30 19:18:05 t 1 1 178999 656 0.00 2019-11-30 19:05:29 2019-11-30 19:20:09 t 1 1 179001 685 0.00 2019-11-30 19:19:50 2019-11-30 19:20:53 t 1 1 179003 685 0.00 2019-11-30 19:21:51 2019-11-30 19:21:57 t 1 1 179011 639 0.00 2019-11-30 19:24:34 2019-11-30 19:25:56 t 1 1 179017 685 0.00 2019-11-30 19:27:45 2019-11-30 19:27:52 t 1 1 179022 512 0.00 2019-11-30 19:28:11 2019-11-30 19:28:16 t 1 1 179023 591 0.00 2019-11-30 19:28:28 2019-11-30 19:28:51 t 1 1 179026 656 0.00 2019-11-30 19:20:10 2019-11-30 19:29:49 t 1 1 179028 683 0.00 2019-11-30 18:49:49 2019-11-30 19:30:47 t 1 1 179032 645 0.00 2019-11-30 19:14:26 2019-11-30 19:31:28 t 1 1 179034 520 0.00 2019-11-30 19:31:08 2019-11-30 19:33:21 t 1 1 179036 685 0.00 2019-11-30 19:33:37 2019-11-30 19:33:44 t 1 1 179038 544 0.00 2019-11-30 19:01:15 2019-11-30 19:34:12 t 1 1 179043 685 0.00 2019-11-30 19:36:27 2019-11-30 19:36:34 t 1 1 179047 685 0.00 2019-11-30 19:36:39 2019-11-30 19:39:02 t 1 1 179048 685 0.00 2019-11-30 19:39:07 2019-11-30 19:39:24 t 1 1 179050 685 0.00 2019-11-30 19:39:29 2019-11-30 19:39:41 t 1 1 179053 685 0.00 2019-11-30 19:41:32 2019-11-30 19:41:38 t 1 1 179057 685 0.00 2019-11-30 19:42:12 2019-11-30 19:44:09 t 1 1 179061 685 0.00 2019-11-30 19:44:51 2019-11-30 19:44:57 t 1 1 179062 566 0.00 2019-11-30 19:35:21 2019-11-30 19:45:50 t 1 1 179064 656 0.00 2019-11-30 19:44:30 2019-11-30 19:46:08 t 1 1 179065 625 0.00 2019-11-30 19:17:15 2019-11-30 19:46:30 t 1 1 179068 637 0.00 2019-11-30 19:37:17 2019-11-30 19:47:33 t 1 1 179072 685 0.00 2019-11-30 19:48:30 2019-11-30 19:49:15 t 1 1 179075 220 0.00 2019-11-30 19:36:31 2019-11-30 19:50:54 t 1 2 179077 645 0.00 2019-11-30 19:52:41 2019-11-30 19:54:00 t 1 1 179081 625 0.00 2019-11-30 19:46:30 2019-11-30 19:55:44 t 1 1 179084 551 0.00 2019-11-30 19:48:48 2019-11-30 19:56:50 t 1 1 179085 685 0.00 2019-11-30 19:57:00 2019-11-30 19:57:02 t 1 1 179086 637 0.00 2019-11-30 19:47:33 2019-11-30 19:58:14 t 1 1 179088 685 0.00 2019-11-30 19:58:44 2019-11-30 19:58:50 t 1 1 179092 520 0.00 2019-11-30 19:58:38 2019-11-30 20:04:22 t 1 1 179093 538 0.00 2019-11-30 20:01:23 2019-11-30 20:04:42 t 1 1 179094 562 0.00 2019-11-30 20:04:22 2019-11-30 20:06:09 t 1 1 179095 637 0.00 2019-11-30 19:58:14 2019-11-30 20:07:10 t 1 1 179097 551 0.00 2019-11-30 19:56:50 2019-11-30 20:09:05 t 1 1 179104 685 0.00 2019-11-30 20:11:22 2019-11-30 20:12:00 t 1 1 179113 671 0.00 2019-11-30 20:15:30 2019-11-30 20:18:09 t 1 1 179115 649 0.00 2019-11-30 19:59:31 2019-11-30 20:18:45 t 1 1 179118 562 0.00 2019-11-30 20:20:46 2019-11-30 20:21:11 t 1 1 179120 566 0.00 2019-11-30 19:45:50 2019-11-30 20:23:13 t 1 1 179121 578 0.00 2019-11-30 18:11:01 2019-11-30 20:23:27 t 1 1 179122 637 0.00 2019-11-30 20:13:49 2019-11-30 20:23:52 t 1 1 179124 645 0.00 2019-11-30 20:25:50 2019-11-30 20:27:14 t 1 1 179125 445 0.00 2019-11-30 20:25:53 2019-11-30 20:28:29 t 1 1 179128 685 0.00 2019-11-30 20:29:46 2019-11-30 20:29:59 t 1 1 179130 685 0.00 2019-11-30 20:30:14 2019-11-30 20:30:27 t 1 1 179135 673 0.00 2019-11-30 20:30:00 2019-11-30 20:32:00 t 1 1 179141 685 0.00 2019-11-30 20:35:30 2019-11-30 20:37:16 t 1 1 179142 685 0.00 2019-11-30 20:37:22 2019-11-30 20:37:33 t 1 1 179147 562 0.00 2019-11-30 20:39:51 2019-11-30 20:40:39 t 1 1 179149 566 0.00 2019-11-30 20:37:38 2019-11-30 20:42:13 t 1 1 179154 675 0.00 2019-11-30 20:39:41 2019-11-30 20:46:58 t 1 1 179156 562 0.00 2019-11-30 20:46:45 2019-11-30 20:48:10 t 1 1 179157 516 0.00 2019-11-30 20:46:40 2019-11-30 20:51:13 t 1 1 179160 673 0.00 2019-11-30 20:32:50 2019-11-30 20:54:09 t 1 1 179163 451 0.00 2019-11-30 20:10:16 2019-11-30 20:56:19 t 1 1 179166 656 0.00 2019-11-30 20:09:45 2019-11-30 20:58:54 t 1 1 179168 673 0.00 2019-11-30 20:54:09 2019-11-30 21:02:28 t 1 1 179174 611 0.00 2019-11-30 20:32:06 2019-11-30 21:11:24 t 1 1 179178 611 0.00 2019-11-30 21:11:21 2019-11-30 21:13:10 t 1 1 179182 611 0.00 2019-11-30 21:12:06 2019-11-30 21:16:13 t 1 1 179183 220 0.00 2019-11-30 21:16:20 2019-11-30 21:16:40 t 1 1 179187 498 0.00 2019-11-30 19:34:29 2019-11-30 21:17:55 t 1 2 179190 545 0.00 2019-11-30 21:13:46 2019-11-30 21:20:59 t 1 1 179196 611 0.00 2019-11-30 21:16:13 2019-11-30 21:24:23 t 1 1 179200 671 0.00 2019-11-30 21:23:50 2019-11-30 21:25:52 t 1 1 179203 625 0.00 2019-11-30 19:55:44 2019-11-30 21:26:53 t 1 1 179205 585 0.00 2019-11-30 21:27:10 2019-11-30 21:27:10 f 1 1 179207 591 0.00 2019-11-30 21:00:28 2019-11-30 21:27:18 t 1 1 179210 220 0.00 2019-11-30 21:27:22 2019-11-30 21:29:10 t 1 1 179214 679 0.00 2019-11-30 21:27:20 2019-11-30 21:33:26 t 1 1 179215 220 0.00 2019-11-30 21:28:01 2019-11-30 21:35:03 t 1 1 179216 562 0.00 2019-11-30 21:34:20 2019-11-30 21:35:24 t 1 1 179218 451 0.00 2019-11-30 21:24:14 2019-11-30 21:36:08 t 1 1 179219 667 0.00 2019-11-30 21:31:50 2019-11-30 21:37:11 t 1 1 179224 667 0.00 2019-11-30 21:40:45 2019-11-30 21:41:20 t 1 1 179230 667 0.00 2019-11-30 21:42:14 2019-11-30 21:45:38 t 1 1 179237 667 0.00 2019-11-30 21:47:25 2019-11-30 21:51:49 t 1 1 179241 451 0.00 2019-11-30 21:45:40 2019-11-30 21:59:18 t 1 1 179243 578 0.00 2019-11-30 21:18:48 2019-11-30 22:01:28 t 1 1 179247 220 0.00 2019-11-30 21:56:27 2019-11-30 22:06:31 t 1 1 179254 671 0.00 2019-11-30 22:09:54 2019-11-30 22:12:52 t 1 1 179256 451 0.00 2019-11-30 22:01:29 2019-11-30 22:13:44 t 1 1 179260 687 0.00 2019-11-30 22:16:19 2019-11-30 22:17:46 t 1 1 179266 687 0.00 2019-11-30 22:19:55 2019-11-30 22:27:28 t 1 1 179271 679 0.00 2019-11-30 22:29:56 2019-11-30 22:32:15 t 1 1 179273 637 0.00 2019-11-30 22:13:02 2019-11-30 22:33:53 t 1 1 179276 510 0.00 2019-11-30 21:30:37 2019-11-30 22:36:48 t 1 1 179278 637 0.00 2019-11-30 22:35:03 2019-11-30 22:38:19 t 1 1 179282 562 0.00 2019-11-30 22:44:22 2019-11-30 22:44:40 t 1 1 179291 687 0.00 2019-11-30 22:57:37 2019-11-30 23:01:55 t 1 1 179300 675 0.00 2019-11-30 22:59:45 2019-11-30 23:04:58 t 1 1 179308 611 0.00 2019-11-30 23:02:51 2019-11-30 23:17:17 t 1 1 179310 591 0.00 2019-11-30 23:16:20 2019-11-30 23:17:52 t 1 1 179311 687 0.00 2019-11-30 23:03:57 2019-11-30 23:19:35 t 1 1 179313 687 0.00 2019-11-30 23:19:35 2019-11-30 23:20:13 t 1 1 179314 683 0.00 2019-11-30 20:10:36 2019-11-30 23:22:01 t 1 1 179317 611 0.00 2019-11-30 23:17:17 2019-11-30 23:24:28 t 1 1 179242 667 0.00 2019-11-30 21:54:15 2019-11-30 21:59:30 t 1 1 179244 645 0.00 2019-11-30 21:44:03 2019-11-30 22:02:44 t 1 1 179248 220 0.00 2019-11-30 22:06:31 2019-11-30 22:07:06 t 1 1 179250 485 0.00 2019-11-30 21:39:29 2019-11-30 22:10:10 t 1 1 179253 562 0.00 2019-11-30 22:12:30 2019-11-30 22:12:47 t 1 1 179257 499 0.00 2019-11-30 22:10:32 2019-11-30 22:15:56 t 1 1 179262 622 0.00 2019-11-30 21:08:00 2019-11-30 22:22:30 t 1 1 179263 562 0.00 2019-11-30 22:23:15 2019-11-30 22:23:29 t 1 1 179265 645 0.00 2019-11-30 22:13:24 2019-11-30 22:24:54 t 1 1 179268 562 0.00 2019-11-30 22:28:56 2019-11-30 22:29:29 t 1 1 179270 639 0.00 2019-11-30 21:37:56 2019-11-30 22:31:35 t 1 1 179272 639 0.00 2019-11-30 22:33:09 2019-11-30 22:33:21 t 1 1 179275 639 0.00 2019-11-30 22:36:23 2019-11-30 22:36:25 t 1 1 179277 566 0.00 2019-11-30 22:11:13 2019-11-30 22:37:29 t 1 1 179280 639 0.00 2019-11-30 22:43:43 2019-11-30 22:44:17 t 1 1 179281 675 0.00 2019-11-30 22:39:12 2019-11-30 22:44:34 t 1 1 179283 639 0.00 2019-11-30 22:45:38 2019-11-30 22:47:11 t 1 1 179292 611 0.00 2019-11-30 22:48:32 2019-11-30 23:02:22 t 1 1 179295 687 0.00 2019-11-30 23:02:42 2019-11-30 23:03:42 t 1 1 179296 595 0.00 2019-11-30 23:04:01 2019-11-30 23:04:01 f 1 1 179298 544 0.00 2019-11-30 23:04:01 2019-11-30 23:04:14 t 1 1 179301 639 0.00 2019-11-30 23:09:32 2019-11-30 23:09:54 t 1 1 179302 562 0.00 2019-11-30 23:03:48 2019-11-30 23:12:52 t 1 1 179304 591 0.00 2019-11-30 22:25:50 2019-11-30 23:13:52 t 1 1 179306 656 0.00 2019-11-30 23:03:50 2019-11-30 23:16:18 t 1 1 179309 656 0.00 2019-11-30 23:16:18 2019-11-30 23:17:22 t 1 1 179312 562 0.00 2019-11-30 23:12:52 2019-11-30 23:20:02 t 1 1 179319 451 0.00 2019-11-30 22:59:56 2019-11-30 23:26:07 t 1 1 179324 639 0.00 2019-11-30 23:27:54 2019-11-30 23:29:01 t 1 1 179330 673 0.00 2019-11-30 23:36:20 2019-11-30 23:37:26 t 1 1 179335 671 0.00 2019-11-30 23:43:00 2019-11-30 23:44:18 t 1 1 179336 665 0.00 2019-11-30 23:38:47 2019-11-30 23:45:10 t 1 1 179338 611 0.00 2019-11-30 23:36:31 2019-11-30 23:45:31 t 1 1 179339 687 0.00 2019-11-30 23:41:21 2019-11-30 23:47:07 t 1 1 179342 639 0.00 2019-11-30 23:50:04 2019-11-30 23:50:07 t 1 1 179344 639 0.00 2019-11-30 23:52:01 2019-11-30 23:53:12 t 1 1 179347 635 0.00 2019-11-30 23:44:02 2019-11-30 23:56:07 t 1 1 179354 639 0.00 2019-12-01 00:05:57 2019-12-01 00:06:23 t 1 1 179364 639 0.00 2019-12-01 00:18:16 2019-12-01 00:18:36 t 1 1 179366 665 0.00 2019-12-01 00:15:59 2019-12-01 00:23:16 t 1 1 179372 673 0.00 2019-12-01 00:17:47 2019-12-01 00:27:06 t 1 1 179374 687 0.00 2019-12-01 00:26:26 2019-12-01 00:31:32 t 1 1 179375 639 0.00 2019-12-01 00:32:04 2019-12-01 00:32:13 t 1 1 179377 687 0.00 2019-12-01 00:31:32 2019-12-01 00:36:21 t 1 1 179378 639 0.00 2019-12-01 00:36:32 2019-12-01 00:36:52 t 1 1 179379 562 0.00 2019-12-01 00:36:53 2019-12-01 00:37:21 t 1 1 179380 499 0.00 2019-11-30 22:15:56 2019-12-01 00:40:54 t 1 1 179381 687 0.00 2019-12-01 00:36:21 2019-12-01 00:42:04 t 1 1 179383 499 0.00 2019-12-01 00:41:27 2019-12-01 00:43:12 t 1 1 179386 562 0.00 2019-12-01 00:47:53 2019-12-01 00:48:04 t 1 1 179389 687 0.00 2019-12-01 00:42:04 2019-12-01 00:49:30 t 1 1 179390 671 0.00 2019-12-01 00:47:23 2019-12-01 00:50:35 t 1 1 179392 503 0.00 2019-12-01 00:50:11 2019-12-01 00:53:31 t 1 1 179393 639 0.00 2019-12-01 00:54:39 2019-12-01 00:55:17 t 1 1 179394 544 0.00 2019-12-01 00:12:07 2019-12-01 00:55:41 t 1 1 179395 562 0.00 2019-12-01 00:58:33 2019-12-01 00:58:49 t 1 1 179396 639 0.00 2019-12-01 01:00:48 2019-12-01 01:01:23 t 1 1 179398 639 0.00 2019-12-01 01:06:54 2019-12-01 01:07:25 t 1 1 179407 639 0.00 2019-12-01 01:22:51 2019-12-01 01:24:13 t 1 1 179411 544 0.00 2019-12-01 01:18:59 2019-12-01 01:30:35 t 1 1 179412 562 0.00 2019-12-01 01:30:48 2019-12-01 01:31:01 t 1 1 179413 639 0.00 2019-12-01 01:34:39 2019-12-01 01:34:59 t 1 1 179414 687 0.00 2019-12-01 01:15:49 2019-12-01 01:35:34 t 1 1 179415 639 0.00 2019-12-01 01:36:09 2019-12-01 01:36:20 t 1 1 179423 538 0.00 2019-11-30 21:37:27 2019-12-01 01:51:58 t 1 1 179425 538 0.00 2019-12-01 01:52:01 2019-12-01 01:53:15 t 1 1 179427 687 0.00 2019-12-01 01:49:08 2019-12-01 01:59:07 t 1 1 179430 487 0.00 2019-11-30 22:16:01 2019-12-01 02:03:39 t 1 2 179435 562 0.00 2019-12-01 02:10:43 2019-12-01 02:10:51 t 1 1 179438 679 0.00 2019-12-01 02:20:01 2019-12-01 02:20:37 t 1 1 179439 562 0.00 2019-12-01 02:21:18 2019-12-01 02:21:39 t 1 1 179440 551 0.00 2019-11-30 21:39:22 2019-12-01 02:22:10 t 1 1 179442 687 0.00 2019-12-01 02:21:50 2019-12-01 02:27:27 t 1 1 179445 562 0.00 2019-12-01 02:32:16 2019-12-01 02:32:25 t 1 1 179450 639 0.00 2019-12-01 02:50:17 2019-12-01 02:50:51 t 1 1 179453 562 0.00 2019-12-01 02:58:28 2019-12-01 02:58:39 t 1 1 179455 639 0.00 2019-12-01 03:02:40 2019-12-01 03:02:59 t 1 1 179459 514 0.00 2019-12-01 03:03:08 2019-12-01 03:13:04 t 1 1 179460 639 0.00 2019-12-01 03:12:49 2019-12-01 03:13:55 t 1 1 179471 639 0.00 2019-12-01 03:38:31 2019-12-01 03:38:55 t 1 1 179473 562 0.00 2019-12-01 03:42:49 2019-12-01 03:42:59 t 1 1 179475 639 0.00 2019-12-01 03:52:59 2019-12-01 03:53:34 t 1 1 179478 562 0.00 2019-12-01 04:04:03 2019-12-01 04:04:29 t 1 1 179481 562 0.00 2019-12-01 04:14:53 2019-12-01 04:15:12 t 1 1 179482 639 0.00 2019-12-01 04:17:29 2019-12-01 04:18:03 t 1 1 179483 639 0.00 2019-12-01 04:23:35 2019-12-01 04:24:09 t 1 1 179485 639 0.00 2019-12-01 04:27:38 2019-12-01 04:28:00 t 1 1 179487 639 0.00 2019-12-01 04:32:09 2019-12-01 04:32:17 t 1 1 179488 639 0.00 2019-12-01 04:35:50 2019-12-01 04:36:26 t 1 1 179491 639 0.00 2019-12-01 04:44:25 2019-12-01 04:44:33 t 1 1 179492 562 0.00 2019-12-01 04:47:08 2019-12-01 04:47:31 t 1 1 179493 639 0.00 2019-12-01 04:48:06 2019-12-01 04:48:53 t 1 1 179494 639 0.00 2019-12-01 04:54:17 2019-12-01 04:54:52 t 1 1 179495 562 0.00 2019-12-01 04:58:05 2019-12-01 04:58:15 t 1 1 179496 639 0.00 2019-12-01 05:00:39 2019-12-01 05:00:57 t 1 1 179498 520 0.00 2019-12-01 04:35:48 2019-12-01 05:07:25 t 1 1 179500 623 0.00 2019-12-01 05:07:56 2019-12-01 05:07:58 t 1 1 179507 623 0.00 2019-12-01 05:13:12 2019-12-01 05:13:22 t 1 1 179511 623 0.00 2019-12-01 05:23:27 2019-12-01 05:23:39 t 1 1 179512 625 0.00 2019-12-01 05:23:26 2019-12-01 05:24:30 t 1 1 179514 625 0.00 2019-12-01 05:24:29 2019-12-01 05:26:40 t 1 1 179516 623 0.00 2019-12-01 05:28:35 2019-12-01 05:28:38 t 1 1 179518 445 0.00 2019-12-01 05:27:09 2019-12-01 05:30:52 t 1 1 179521 639 0.00 2019-12-01 05:37:30 2019-12-01 05:37:49 t 1 1 179525 623 0.00 2019-12-01 05:43:28 2019-12-01 05:43:34 t 1 1 179526 623 0.00 2019-12-01 05:43:46 2019-12-01 05:43:48 t 1 1 179528 623 0.00 2019-12-01 05:49:10 2019-12-01 05:49:13 t 1 1 179294 562 0.00 2019-11-30 23:02:07 2019-11-30 23:03:31 t 1 1 179297 595 0.00 2019-11-30 23:04:10 2019-11-30 23:04:10 f 1 1 179299 512 0.00 2019-11-30 22:56:51 2019-11-30 23:04:30 t 1 1 179303 459 0.00 2019-11-30 22:42:58 2019-11-30 23:13:33 t 1 2 179305 639 0.00 2019-11-30 23:15:31 2019-11-30 23:16:03 t 1 1 179307 639 0.00 2019-11-30 23:16:46 2019-11-30 23:16:53 t 1 1 179315 639 0.00 2019-11-30 23:21:34 2019-11-30 23:22:14 t 1 1 179316 562 0.00 2019-11-30 23:22:31 2019-11-30 23:22:45 t 1 1 179318 639 0.00 2019-11-30 23:23:26 2019-11-30 23:25:11 t 1 1 179320 683 0.00 2019-11-30 23:22:01 2019-11-30 23:26:15 t 1 1 179321 639 0.00 2019-11-30 23:26:26 2019-11-30 23:27:08 t 1 1 179323 591 0.00 2019-11-30 23:25:33 2019-11-30 23:27:42 t 1 1 179325 562 0.00 2019-11-30 23:27:49 2019-11-30 23:29:44 t 1 1 179326 639 0.00 2019-11-30 23:33:48 2019-11-30 23:34:34 t 1 1 179327 562 0.00 2019-11-30 23:30:08 2019-11-30 23:36:08 t 1 1 179328 220 0.00 2019-11-30 23:02:02 2019-11-30 23:36:26 t 1 2 179331 631 0.00 2019-11-30 23:38:11 2019-11-30 23:42:26 t 1 1 179334 639 0.00 2019-11-30 23:42:50 2019-11-30 23:43:04 t 1 1 179337 562 0.00 2019-11-30 23:45:07 2019-11-30 23:45:18 t 1 1 179345 639 0.00 2019-11-30 23:52:31 2019-11-30 23:53:29 t 1 1 179348 671 0.00 2019-11-30 23:54:49 2019-11-30 23:57:17 t 1 1 179350 673 0.00 2019-11-30 23:43:16 2019-11-30 23:59:23 t 1 1 179352 665 0.00 2019-11-30 23:51:36 2019-12-01 00:01:26 t 1 1 179356 562 0.00 2019-12-01 00:07:47 2019-12-01 00:08:18 t 1 1 179358 544 0.00 2019-11-30 23:04:57 2019-12-01 00:12:07 t 1 1 179362 665 0.00 2019-12-01 00:10:34 2019-12-01 00:14:48 t 1 1 179363 673 0.00 2019-12-01 00:07:11 2019-12-01 00:17:47 t 1 1 179365 562 0.00 2019-12-01 00:18:44 2019-12-01 00:18:55 t 1 1 179368 220 0.00 2019-12-01 00:19:46 2019-12-01 00:25:09 t 1 2 179369 687 0.00 2019-12-01 00:12:11 2019-12-01 00:26:26 t 1 1 179371 562 0.00 2019-12-01 00:26:16 2019-12-01 00:26:38 t 1 1 179376 679 0.00 2019-12-01 00:33:05 2019-12-01 00:34:24 t 1 1 179382 639 0.00 2019-12-01 00:42:24 2019-12-01 00:43:01 t 1 1 179387 499 0.00 2019-12-01 00:42:52 2019-12-01 00:48:27 t 1 1 179391 671 0.00 2019-12-01 00:50:33 2019-12-01 00:51:44 t 1 1 179397 544 0.00 2019-12-01 00:55:41 2019-12-01 01:04:58 t 1 1 179400 639 0.00 2019-12-01 01:13:01 2019-12-01 01:13:37 t 1 1 179403 503 0.00 2019-12-01 00:53:31 2019-12-01 01:16:31 t 1 1 179404 544 0.00 2019-12-01 01:04:58 2019-12-01 01:18:59 t 1 1 179406 562 0.00 2019-12-01 01:19:47 2019-12-01 01:20:15 t 1 1 179410 639 0.00 2019-12-01 01:28:32 2019-12-01 01:28:57 t 1 1 179417 562 0.00 2019-12-01 01:41:34 2019-12-01 01:41:41 t 1 1 179421 687 0.00 2019-12-01 01:38:51 2019-12-01 01:49:08 t 1 1 179422 544 0.00 2019-12-01 01:48:26 2019-12-01 01:49:53 t 1 1 179426 639 0.00 2019-12-01 01:53:07 2019-12-01 01:53:32 t 1 1 179428 562 0.00 2019-12-01 01:59:55 2019-12-01 02:00:11 t 1 1 179429 639 0.00 2019-12-01 01:59:26 2019-12-01 02:00:26 t 1 1 179431 639 0.00 2019-12-01 02:03:44 2019-12-01 02:04:13 t 1 1 179434 687 0.00 2019-12-01 01:59:16 2019-12-01 02:10:46 t 1 1 179441 639 0.00 2019-12-01 02:21:58 2019-12-01 02:22:33 t 1 1 179443 639 0.00 2019-12-01 02:27:31 2019-12-01 02:27:48 t 1 1 179444 639 0.00 2019-12-01 02:28:02 2019-12-01 02:28:35 t 1 1 179447 639 0.00 2019-12-01 02:38:16 2019-12-01 02:38:36 t 1 1 179449 639 0.00 2019-12-01 02:44:08 2019-12-01 02:44:40 t 1 1 179451 562 0.00 2019-12-01 02:53:47 2019-12-01 02:53:58 t 1 1 179452 639 0.00 2019-12-01 02:56:27 2019-12-01 02:56:57 t 1 1 179456 562 0.00 2019-12-01 03:04:20 2019-12-01 03:04:40 t 1 1 179457 625 0.00 2019-12-01 02:42:06 2019-12-01 03:10:21 t 1 1 179458 639 0.00 2019-12-01 03:10:36 2019-12-01 03:10:45 t 1 1 179461 562 0.00 2019-12-01 03:15:15 2019-12-01 03:15:26 t 1 1 179462 639 0.00 2019-12-01 03:16:21 2019-12-01 03:16:54 t 1 1 179465 639 0.00 2019-12-01 03:22:35 2019-12-01 03:23:01 t 1 1 179466 562 0.00 2019-12-01 03:25:59 2019-12-01 03:26:14 t 1 1 179469 562 0.00 2019-12-01 03:33:32 2019-12-01 03:33:57 t 1 1 179470 639 0.00 2019-12-01 03:34:36 2019-12-01 03:35:10 t 1 1 179472 639 0.00 2019-12-01 03:40:43 2019-12-01 03:41:18 t 1 1 179474 639 0.00 2019-12-01 03:46:54 2019-12-01 03:47:27 t 1 1 179479 639 0.00 2019-12-01 04:05:27 2019-12-01 04:05:51 t 1 1 179480 639 0.00 2019-12-01 04:11:32 2019-12-01 04:11:56 t 1 1 179486 639 0.00 2019-12-01 04:29:54 2019-12-01 04:30:14 t 1 1 179497 639 0.00 2019-12-01 05:06:39 2019-12-01 05:07:02 t 1 1 179499 623 0.00 2019-12-01 05:04:45 2019-12-01 05:07:40 t 1 1 179501 623 0.00 2019-12-01 05:08:05 2019-12-01 05:08:52 t 1 1 179504 623 0.00 2019-12-01 05:11:10 2019-12-01 05:11:22 t 1 1 179506 639 0.00 2019-12-01 05:12:52 2019-12-01 05:13:13 t 1 1 179510 562 0.00 2019-12-01 05:19:37 2019-12-01 05:19:43 t 1 1 179513 639 0.00 2019-12-01 05:24:56 2019-12-01 05:25:40 t 1 1 179519 639 0.00 2019-12-01 05:31:24 2019-12-01 05:31:43 t 1 1 179522 623 0.00 2019-12-01 05:40:28 2019-12-01 05:40:32 t 1 1 179524 562 0.00 2019-12-01 05:41:04 2019-12-01 05:41:15 t 1 1 179527 639 0.00 2019-12-01 05:43:38 2019-12-01 05:43:56 t 1 1 179529 639 0.00 2019-12-01 05:49:27 2019-12-01 05:50:00 t 1 1 179533 623 0.00 2019-12-01 05:58:54 2019-12-01 05:58:57 t 1 1 179535 516 0.00 2019-12-01 05:56:35 2019-12-01 05:59:40 t 1 1 179537 623 0.00 2019-12-01 06:00:44 2019-12-01 06:00:48 t 1 1 179538 639 0.00 2019-12-01 06:00:19 2019-12-01 06:00:56 t 1 1 179542 639 0.00 2019-12-01 06:04:59 2019-12-01 06:06:18 t 1 1 179543 639 0.00 2019-12-01 06:06:29 2019-12-01 06:06:58 t 1 1 179544 516 0.00 2019-12-01 06:07:04 2019-12-01 06:09:30 t 1 1 179546 623 0.00 2019-12-01 06:10:43 2019-12-01 06:10:45 t 1 1 179547 623 0.00 2019-12-01 06:10:52 2019-12-01 06:11:19 t 1 1 179549 562 0.00 2019-12-01 06:13:21 2019-12-01 06:13:30 t 1 1 179553 623 0.00 2019-12-01 06:13:42 2019-12-01 06:15:18 t 1 1 179554 623 0.00 2019-12-01 06:15:12 2019-12-01 06:15:42 t 1 1 179555 445 0.00 2019-12-01 06:15:10 2019-12-01 06:17:03 t 1 1 179556 639 0.00 2019-12-01 06:15:03 2019-12-01 06:17:18 t 1 1 179557 623 0.00 2019-12-01 06:19:16 2019-12-01 06:19:19 t 1 1 179559 445 0.00 2019-12-01 06:17:02 2019-12-01 06:21:01 t 1 1 179560 623 0.00 2019-12-01 06:21:04 2019-12-01 06:21:08 t 1 1 179562 562 0.00 2019-12-01 06:24:04 2019-12-01 06:24:14 t 1 1 179563 645 0.00 2019-12-01 06:25:01 2019-12-01 06:25:13 t 1 1 179565 639 0.00 2019-12-01 06:26:42 2019-12-01 06:27:36 t 1 1 179566 623 0.00 2019-12-01 06:26:59 2019-12-01 06:28:18 t 1 1 179567 562 0.00 2019-12-01 06:28:29 2019-12-01 06:28:37 t 1 1 179568 623 0.00 2019-12-01 06:28:10 2019-12-01 06:28:41 t 1 1 179569 623 0.00 2019-12-01 06:29:21 2019-12-01 06:29:23 t 1 1 179570 520 0.00 2019-12-01 06:19:49 2019-12-01 06:29:38 t 1 1 179322 683 0.00 2019-11-30 23:26:14 2019-11-30 23:27:28 t 1 1 179329 611 0.00 2019-11-30 23:24:27 2019-11-30 23:36:31 t 1 1 179332 681 0.00 2019-11-30 19:50:03 2019-11-30 23:42:55 t 1 1 179333 671 0.00 2019-11-30 23:40:06 2019-11-30 23:43:00 t 1 1 179340 639 0.00 2019-11-30 23:46:38 2019-11-30 23:47:13 t 1 1 179341 687 0.00 2019-11-30 23:47:26 2019-11-30 23:49:44 t 1 1 179343 665 0.00 2019-11-30 23:45:10 2019-11-30 23:51:36 t 1 1 179346 611 0.00 2019-11-30 23:45:31 2019-11-30 23:54:31 t 1 1 179349 562 0.00 2019-11-30 23:48:27 2019-11-30 23:57:32 t 1 1 179351 639 0.00 2019-11-30 23:59:05 2019-11-30 23:59:35 t 1 1 179353 639 0.00 2019-12-01 00:00:19 2019-12-01 00:02:12 t 1 1 179355 673 0.00 2019-11-30 23:59:23 2019-12-01 00:07:11 t 1 1 179357 665 0.00 2019-12-01 00:01:26 2019-12-01 00:10:34 t 1 1 179359 687 0.00 2019-11-30 23:54:36 2019-12-01 00:12:11 t 1 1 179360 639 0.00 2019-12-01 00:11:49 2019-12-01 00:12:32 t 1 1 179361 220 0.00 2019-11-30 22:07:06 2019-12-01 00:14:32 t 1 1 179367 639 0.00 2019-12-01 00:24:19 2019-12-01 00:24:44 t 1 1 179370 639 0.00 2019-12-01 00:26:15 2019-12-01 00:26:34 t 1 1 179373 639 0.00 2019-12-01 00:30:27 2019-12-01 00:30:51 t 1 1 179384 639 0.00 2019-12-01 00:44:25 2019-12-01 00:44:31 t 1 1 179385 671 0.00 2019-12-01 00:40:12 2019-12-01 00:47:24 t 1 1 179388 639 0.00 2019-12-01 00:48:45 2019-12-01 00:49:08 t 1 1 179399 562 0.00 2019-12-01 01:09:17 2019-12-01 01:09:27 t 1 1 179401 645 0.00 2019-12-01 01:04:40 2019-12-01 01:15:11 t 1 1 179402 687 0.00 2019-12-01 00:49:30 2019-12-01 01:15:49 t 1 1 179405 639 0.00 2019-12-01 01:19:24 2019-12-01 01:19:48 t 1 1 179408 622 0.00 2019-12-01 01:16:21 2019-12-01 01:25:33 t 1 1 179409 639 0.00 2019-12-01 01:26:47 2019-12-01 01:27:13 t 1 1 179416 639 0.00 2019-12-01 01:38:20 2019-12-01 01:38:36 t 1 1 179418 639 0.00 2019-12-01 01:44:17 2019-12-01 01:44:38 t 1 1 179419 639 0.00 2019-12-01 01:47:21 2019-12-01 01:47:29 t 1 1 179420 544 0.00 2019-12-01 01:30:35 2019-12-01 01:48:26 t 1 1 179424 562 0.00 2019-12-01 01:52:17 2019-12-01 01:52:25 t 1 1 179432 679 0.00 2019-12-01 02:04:47 2019-12-01 02:08:22 t 1 1 179433 639 0.00 2019-12-01 02:09:44 2019-12-01 02:10:18 t 1 1 179436 639 0.00 2019-12-01 02:15:52 2019-12-01 02:16:24 t 1 1 179437 687 0.00 2019-12-01 02:10:55 2019-12-01 02:19:00 t 1 1 179446 681 0.00 2019-11-30 23:42:55 2019-12-01 02:35:14 t 1 1 179448 562 0.00 2019-12-01 02:43:02 2019-12-01 02:43:12 t 1 1 179454 679 0.00 2019-12-01 03:01:35 2019-12-01 03:02:25 t 1 1 179463 625 0.00 2019-12-01 03:10:21 2019-12-01 03:18:03 t 1 1 179464 639 0.00 2019-12-01 03:19:02 2019-12-01 03:19:09 t 1 1 179467 639 0.00 2019-12-01 03:28:30 2019-12-01 03:29:03 t 1 1 179468 639 0.00 2019-12-01 03:31:31 2019-12-01 03:31:44 t 1 1 179476 562 0.00 2019-12-01 03:53:30 2019-12-01 03:53:48 t 1 1 179477 639 0.00 2019-12-01 03:59:21 2019-12-01 03:59:42 t 1 1 179484 562 0.00 2019-12-01 04:25:46 2019-12-01 04:26:01 t 1 1 179489 562 0.00 2019-12-01 04:36:32 2019-12-01 04:36:46 t 1 1 179490 639 0.00 2019-12-01 04:42:15 2019-12-01 04:42:35 t 1 1 179502 562 0.00 2019-12-01 05:08:49 2019-12-01 05:09:04 t 1 1 179503 623 0.00 2019-12-01 05:09:14 2019-12-01 05:09:45 t 1 1 179505 623 0.00 2019-12-01 05:12:50 2019-12-01 05:13:02 t 1 1 179508 623 0.00 2019-12-01 05:18:21 2019-12-01 05:18:23 t 1 1 179509 639 0.00 2019-12-01 05:18:52 2019-12-01 05:19:24 t 1 1 179515 445 0.00 2019-11-30 21:55:44 2019-12-01 05:27:09 t 1 1 179517 562 0.00 2019-12-01 05:30:19 2019-12-01 05:30:27 t 1 1 179520 623 0.00 2019-12-01 05:33:41 2019-12-01 05:33:43 t 1 1 179523 516 0.00 2019-12-01 05:39:25 2019-12-01 05:40:46 t 1 1 179530 562 0.00 2019-12-01 05:51:50 2019-12-01 05:51:58 t 1 1 179531 623 0.00 2019-12-01 05:52:32 2019-12-01 05:52:34 t 1 1 179532 623 0.00 2019-12-01 05:53:10 2019-12-01 05:54:11 t 1 1 179534 639 0.00 2019-12-01 05:58:53 2019-12-01 05:59:01 t 1 1 179536 622 0.00 2019-12-01 05:55:49 2019-12-01 05:59:51 t 1 1 179539 516 0.00 2019-12-01 06:00:55 2019-12-01 06:01:21 t 1 1 179540 562 0.00 2019-12-01 06:02:25 2019-12-01 06:02:47 t 1 1 179541 623 0.00 2019-12-01 06:03:59 2019-12-01 06:04:01 t 1 1 179545 623 0.00 2019-12-01 06:09:07 2019-12-01 06:10:18 t 1 1 179548 623 0.00 2019-12-01 06:11:18 2019-12-01 06:11:20 t 1 1 179550 445 0.00 2019-12-01 05:31:06 2019-12-01 06:13:32 t 1 1 179551 645 0.00 2019-12-01 06:13:42 2019-12-01 06:13:54 t 1 1 179552 645 0.00 2019-12-01 06:14:31 2019-12-01 06:14:40 t 1 1 179558 520 0.00 2019-12-01 06:13:12 2019-12-01 06:19:49 t 1 1 179561 639 0.00 2019-12-01 06:20:49 2019-12-01 06:21:56 t 1 1 179564 639 0.00 2019-12-01 06:25:49 2019-12-01 06:26:04 t 1 1 179571 516 0.00 2019-12-01 06:30:38 2019-12-01 06:31:20 t 1 1 179572 639 0.00 2019-12-01 06:33:03 2019-12-01 06:33:22 t 1 1 179573 516 0.00 2019-12-01 06:31:19 2019-12-01 06:33:42 t 1 1 179574 562 0.00 2019-12-01 06:34:38 2019-12-01 06:35:00 t 1 1 179575 645 0.00 2019-12-01 06:35:31 2019-12-01 06:35:39 t 1 1 179576 639 0.00 2019-12-01 06:35:00 2019-12-01 06:37:08 t 1 1 179577 639 0.00 2019-12-01 06:37:19 2019-12-01 06:38:03 t 1 1 179578 623 0.00 2019-12-01 06:38:31 2019-12-01 06:38:37 t 1 1 179579 623 0.00 2019-12-01 06:39:19 2019-12-01 06:39:20 t 1 1 179580 645 0.00 2019-12-01 06:39:07 2019-12-01 06:42:11 t 1 1 179581 623 0.00 2019-12-01 06:43:54 2019-12-01 06:43:54 t 1 1 179582 562 0.00 2019-12-01 06:45:37 2019-12-01 06:45:47 t 1 1 179583 566 0.00 2019-12-01 06:20:28 2019-12-01 06:45:50 t 1 1 179584 623 0.00 2019-12-01 06:46:09 2019-12-01 06:46:10 t 1 1 179585 623 0.00 2019-12-01 06:46:21 2019-12-01 06:46:41 t 1 1 179586 520 0.00 2019-12-01 06:29:37 2019-12-01 06:47:23 t 1 1 179587 625 0.00 2019-12-01 06:37:19 2019-12-01 06:49:16 t 1 1 179588 623 0.00 2019-12-01 06:49:22 2019-12-01 06:49:23 t 1 1 179589 623 0.00 2019-12-01 06:49:35 2019-12-01 06:49:44 t 1 1 179590 623 0.00 2019-12-01 06:51:26 2019-12-01 06:51:49 t 1 1 179591 623 0.00 2019-12-01 06:50:42 2019-12-01 06:52:18 t 1 1 179592 623 0.00 2019-12-01 06:53:19 2019-12-01 06:53:24 t 1 1 179593 639 0.00 2019-12-01 06:44:17 2019-12-01 06:53:33 t 1 1 179594 623 0.00 2019-12-01 06:53:45 2019-12-01 06:53:50 t 1 1 179595 562 0.00 2019-12-01 06:56:20 2019-12-01 06:56:32 t 1 1 179596 623 0.00 2019-12-01 06:55:46 2019-12-01 06:56:41 t 1 1 179597 623 0.00 2019-12-01 06:56:41 2019-12-01 06:56:52 t 1 1 179598 566 0.00 2019-12-01 06:45:50 2019-12-01 06:57:43 t 1 1 179599 675 0.00 2019-12-01 06:55:48 2019-12-01 06:57:43 t 1 1 179600 639 0.00 2019-12-01 06:54:09 2019-12-01 06:58:51 t 1 1 179601 623 0.00 2019-12-01 06:58:18 2019-12-01 06:58:54 t 1 1 179602 639 0.00 2019-12-01 07:00:40 2019-12-01 07:00:47 t 1 1 179603 623 0.00 2019-12-01 07:00:50 2019-12-01 07:00:56 t 1 1 179604 639 0.00 2019-12-01 07:00:01 2019-12-01 07:01:18 t 1 1 179606 220 0.00 2019-12-01 06:23:41 2019-12-01 07:02:04 t 1 2 179607 623 0.00 2019-12-01 07:02:39 2019-12-01 07:02:53 t 1 1 179608 639 0.00 2019-12-01 07:02:54 2019-12-01 07:04:18 t 1 1 179610 639 0.00 2019-12-01 07:05:43 2019-12-01 07:06:22 t 1 1 179611 623 0.00 2019-12-01 07:05:56 2019-12-01 07:06:47 t 1 1 179616 562 0.00 2019-12-01 07:08:51 2019-12-01 07:08:59 t 1 1 179618 623 0.00 2019-12-01 07:09:15 2019-12-01 07:09:18 t 1 1 179619 639 0.00 2019-12-01 07:08:41 2019-12-01 07:10:18 t 1 1 179624 564 0.00 2019-11-30 19:41:05 2019-12-01 07:13:11 t 1 1 179629 639 0.00 2019-12-01 07:15:19 2019-12-01 07:17:00 t 1 1 179630 623 0.00 2019-12-01 07:18:06 2019-12-01 07:18:08 t 1 1 179631 623 0.00 2019-12-01 07:18:31 2019-12-01 07:18:32 t 1 1 179634 639 0.00 2019-12-01 07:18:57 2019-12-01 07:19:19 t 1 1 179640 545 0.00 2019-12-01 07:15:53 2019-12-01 07:21:27 t 1 1 179645 639 0.00 2019-12-01 07:25:16 2019-12-01 07:28:04 t 1 1 179646 623 0.00 2019-12-01 07:28:04 2019-12-01 07:28:32 t 1 1 179647 623 0.00 2019-12-01 07:29:17 2019-12-01 07:29:20 t 1 1 179649 623 0.00 2019-12-01 07:30:08 2019-12-01 07:30:26 t 1 1 179652 623 0.00 2019-12-01 07:31:35 2019-12-01 07:31:38 t 1 1 179659 528 0.00 2019-12-01 07:35:57 2019-12-01 07:38:12 t 1 1 179660 623 0.00 2019-12-01 07:38:19 2019-12-01 07:38:32 t 1 1 179662 562 0.00 2019-12-01 07:41:13 2019-12-01 07:41:20 t 1 1 179666 528 0.00 2019-12-01 07:38:11 2019-12-01 07:45:01 t 1 1 179668 623 0.00 2019-12-01 07:46:09 2019-12-01 07:46:58 t 1 1 179671 566 0.00 2019-12-01 07:32:38 2019-12-01 07:51:28 t 1 1 179673 562 0.00 2019-12-01 07:51:49 2019-12-01 07:52:05 t 1 1 179675 520 0.00 2019-12-01 07:14:00 2019-12-01 07:55:18 t 1 1 179682 544 0.00 2019-12-01 07:35:54 2019-12-01 08:03:39 t 1 1 179689 562 0.00 2019-12-01 08:10:55 2019-12-01 08:11:28 t 1 1 179692 591 0.00 2019-12-01 07:56:36 2019-12-01 08:15:13 t 1 1 179694 623 0.00 2019-12-01 08:15:50 2019-12-01 08:16:05 t 1 1 179697 623 0.00 2019-12-01 08:17:05 2019-12-01 08:17:10 t 1 1 179700 623 0.00 2019-12-01 08:18:55 2019-12-01 08:19:10 t 1 1 179703 623 0.00 2019-12-01 08:21:18 2019-12-01 08:21:21 t 1 1 179706 623 0.00 2019-12-01 08:21:59 2019-12-01 08:22:20 t 1 1 179709 645 0.00 2019-12-01 08:23:56 2019-12-01 08:25:30 t 1 1 179710 623 0.00 2019-12-01 08:26:05 2019-12-01 08:26:05 f 1 1 179712 623 0.00 2019-12-01 08:25:41 2019-12-01 08:27:18 t 1 1 179716 615 0.00 2019-12-01 08:22:37 2019-12-01 08:33:52 t 1 1 179718 562 0.00 2019-12-01 08:36:40 2019-12-01 08:37:46 t 1 1 179720 615 0.00 2019-12-01 08:33:52 2019-12-01 08:38:50 t 1 1 179729 430 0.00 2019-12-01 08:46:44 2019-12-01 08:46:44 f 1 1 179734 562 0.00 2019-12-01 08:45:58 2019-12-01 08:51:42 t 1 1 179735 562 0.00 2019-12-01 08:53:56 2019-12-01 08:55:47 t 1 1 179738 645 0.00 2019-12-01 08:58:07 2019-12-01 08:59:18 t 1 1 179743 562 0.00 2019-12-01 09:05:34 2019-12-01 09:08:47 t 1 1 179746 681 0.00 2019-12-01 02:35:14 2019-12-01 09:11:19 t 1 1 179748 514 0.00 2019-12-01 09:14:48 2019-12-01 09:15:17 t 1 1 179750 675 0.00 2019-12-01 09:14:35 2019-12-01 09:16:34 t 1 1 179751 538 0.00 2019-12-01 08:42:33 2019-12-01 09:17:53 t 1 1 179756 645 0.00 2019-12-01 09:19:51 2019-12-01 09:21:26 t 1 1 179759 639 0.00 2019-12-01 08:06:22 2019-12-01 09:25:30 t 1 1 179766 562 0.00 2019-12-01 09:31:15 2019-12-01 09:31:33 t 1 1 179767 562 0.00 2019-12-01 09:31:39 2019-12-01 09:31:47 t 1 1 179769 516 0.00 2019-12-01 09:31:46 2019-12-01 09:34:43 t 1 1 179773 562 0.00 2019-12-01 09:35:51 2019-12-01 09:37:18 t 1 1 179776 554 0.00 2019-12-01 09:38:57 2019-12-01 09:38:57 f 1 1 179778 639 0.00 2019-12-01 09:38:04 2019-12-01 09:39:18 t 1 1 179780 639 0.00 2019-12-01 09:38:29 2019-12-01 09:43:39 t 1 1 179783 611 0.00 2019-12-01 09:36:41 2019-12-01 09:49:54 t 1 1 179784 639 0.00 2019-12-01 09:44:22 2019-12-01 09:51:49 t 1 1 179787 562 0.00 2019-12-01 09:57:28 2019-12-01 09:57:51 t 1 1 179792 611 0.00 2019-12-01 09:54:07 2019-12-01 10:10:32 t 1 1 179797 220 0.00 2019-12-01 09:51:22 2019-12-01 10:15:03 t 1 2 179798 667 0.00 2019-12-01 10:19:12 2019-12-01 10:19:17 t 1 2 179799 667 0.00 2019-12-01 10:19:36 2019-12-01 10:19:39 t 1 2 179801 671 0.00 2019-12-01 10:18:10 2019-12-01 10:20:37 t 1 1 179803 671 0.00 2019-12-01 10:20:37 2019-12-01 10:22:19 t 1 1 179805 667 0.00 2019-12-01 10:26:36 2019-12-01 10:27:42 t 1 2 179809 639 0.00 2019-12-01 09:51:58 2019-12-01 10:31:27 t 1 1 179814 562 0.00 2019-12-01 10:40:39 2019-12-01 10:43:56 t 1 1 179815 538 0.00 2019-12-01 09:17:52 2019-12-01 10:45:19 t 1 1 179820 639 0.00 2019-12-01 10:31:48 2019-12-01 10:51:03 t 1 1 179821 639 0.00 2019-12-01 10:51:30 2019-12-01 10:57:07 t 1 1 179822 516 0.00 2019-12-01 10:49:42 2019-12-01 10:58:00 t 1 1 179823 562 0.00 2019-12-01 10:58:03 2019-12-01 10:58:22 t 1 1 179825 545 0.00 2019-12-01 10:40:59 2019-12-01 10:59:29 t 1 1 179827 538 0.00 2019-12-01 10:50:21 2019-12-01 11:00:57 t 1 1 179833 481 0.00 2019-12-01 08:29:13 2019-12-01 11:05:55 t 1 1 179837 639 0.00 2019-12-01 11:08:12 2019-12-01 11:09:19 t 1 1 179840 639 0.00 2019-12-01 11:12:53 2019-12-01 11:13:29 t 1 1 179846 220 0.00 2019-12-01 11:23:47 2019-12-01 11:23:59 t 1 2 179849 687 0.00 2019-12-01 11:29:25 2019-12-01 11:29:40 t 1 1 179853 220 0.00 2019-12-01 11:32:40 2019-12-01 11:33:41 t 1 2 179858 562 0.00 2019-12-01 11:37:31 2019-12-01 11:37:50 t 1 1 179863 671 0.00 2019-12-01 11:32:33 2019-12-01 11:41:56 t 1 1 179867 562 0.00 2019-12-01 11:45:50 2019-12-01 11:46:27 t 1 1 179869 490 0.00 2019-12-01 11:38:22 2019-12-01 11:48:28 t 1 1 179871 554 0.00 2019-12-01 11:50:11 2019-12-01 11:50:11 f 1 1 179874 639 0.00 2019-12-01 11:15:15 2019-12-01 11:50:34 t 1 1 179875 607 0.00 2019-12-01 09:07:19 2019-12-01 11:51:38 t 1 1 179876 639 0.00 2019-12-01 11:51:13 2019-12-01 11:52:19 t 1 1 179877 481 0.00 2019-12-01 11:05:55 2019-12-01 11:54:41 t 1 1 179882 578 0.00 2019-12-01 08:16:35 2019-12-01 11:59:24 t 1 1 179883 625 0.00 2019-12-01 11:41:23 2019-12-01 11:59:59 t 1 1 179884 545 0.00 2019-12-01 11:52:23 2019-12-01 12:00:23 t 1 1 179890 687 0.00 2019-12-01 12:06:18 2019-12-01 12:07:48 t 1 1 179894 671 0.00 2019-12-01 12:09:07 2019-12-01 12:11:18 t 1 1 179895 562 0.00 2019-12-01 12:10:16 2019-12-01 12:12:58 t 1 1 179896 631 0.00 2019-12-01 12:13:30 2019-12-01 12:13:39 t 1 1 179897 490 0.00 2019-12-01 11:48:28 2019-12-01 12:15:07 t 1 1 179899 631 0.00 2019-12-01 12:15:17 2019-12-01 12:16:19 t 1 1 179901 481 0.00 2019-12-01 11:54:41 2019-12-01 12:19:03 t 1 1 179905 660 0.00 2019-12-01 11:45:11 2019-12-01 12:22:12 t 1 1 179908 671 0.00 2019-12-01 12:21:00 2019-12-01 12:26:24 t 1 1 179910 622 0.00 2019-12-01 12:15:07 2019-12-01 12:27:06 t 1 1 179605 562 0.00 2019-12-01 07:00:26 2019-12-01 07:01:20 t 1 1 179609 639 0.00 2019-12-01 07:05:21 2019-12-01 07:05:28 t 1 1 179613 639 0.00 2019-12-01 07:06:28 2019-12-01 07:07:04 t 1 1 179614 639 0.00 2019-12-01 07:07:36 2019-12-01 07:07:42 t 1 1 179615 639 0.00 2019-12-01 07:08:07 2019-12-01 07:08:35 t 1 1 179621 623 0.00 2019-12-01 07:10:42 2019-12-01 07:11:09 t 1 1 179622 639 0.00 2019-12-01 07:11:25 2019-12-01 07:11:39 t 1 1 179623 623 0.00 2019-12-01 07:12:40 2019-12-01 07:13:05 t 1 1 179626 623 0.00 2019-12-01 07:15:37 2019-12-01 07:15:38 t 1 1 179632 623 0.00 2019-12-01 07:18:38 2019-12-01 07:18:39 t 1 1 179633 623 0.00 2019-12-01 07:19:02 2019-12-01 07:19:12 t 1 1 179636 639 0.00 2019-12-01 07:19:26 2019-12-01 07:20:01 t 1 1 179638 639 0.00 2019-12-01 07:20:44 2019-12-01 07:20:48 t 1 1 179642 639 0.00 2019-12-01 07:24:45 2019-12-01 07:24:50 t 1 1 179643 623 0.00 2019-12-01 07:25:01 2019-12-01 07:25:16 t 1 1 179653 623 0.00 2019-12-01 07:33:23 2019-12-01 07:33:24 t 1 1 179654 623 0.00 2019-12-01 07:34:15 2019-12-01 07:34:32 t 1 1 179655 623 0.00 2019-12-01 07:35:58 2019-12-01 07:36:04 t 1 1 179656 623 0.00 2019-12-01 07:36:38 2019-12-01 07:36:39 t 1 1 179661 623 0.00 2019-12-01 07:40:20 2019-12-01 07:40:34 t 1 1 179664 623 0.00 2019-12-01 07:44:14 2019-12-01 07:44:15 t 1 1 179665 623 0.00 2019-12-01 07:44:27 2019-12-01 07:44:37 t 1 1 179669 623 0.00 2019-12-01 07:49:26 2019-12-01 07:49:48 t 1 1 179674 623 0.00 2019-12-01 07:54:32 2019-12-01 07:54:46 t 1 1 179676 623 0.00 2019-12-01 07:56:23 2019-12-01 07:56:48 t 1 1 179679 623 0.00 2019-12-01 08:02:01 2019-12-01 08:02:14 t 1 1 179680 623 0.00 2019-12-01 08:02:19 2019-12-01 08:02:20 t 1 1 179684 623 0.00 2019-12-01 08:05:06 2019-12-01 08:05:20 t 1 1 179685 623 0.00 2019-12-01 08:07:22 2019-12-01 08:07:35 t 1 1 179688 645 0.00 2019-12-01 08:09:44 2019-12-01 08:10:46 t 1 1 179690 623 0.00 2019-12-01 08:11:55 2019-12-01 08:12:05 t 1 1 179691 623 0.00 2019-12-01 08:12:46 2019-12-01 08:13:09 t 1 1 179693 528 0.00 2019-12-01 08:06:57 2019-12-01 08:16:02 t 1 1 179695 544 0.00 2019-12-01 08:03:39 2019-12-01 08:16:23 t 1 1 179698 625 0.00 2019-12-01 06:49:16 2019-12-01 08:17:12 t 1 1 179702 656 0.00 2019-12-01 08:01:58 2019-12-01 08:20:22 t 1 1 179704 562 0.00 2019-12-01 08:21:23 2019-12-01 08:21:50 t 1 1 179714 514 0.00 2019-12-01 03:13:04 2019-12-01 08:33:12 t 1 1 179715 562 0.00 2019-12-01 08:31:59 2019-12-01 08:33:52 t 1 1 179717 591 0.00 2019-12-01 08:15:13 2019-12-01 08:36:14 t 1 1 179719 220 0.00 2019-12-01 08:38:29 2019-12-01 08:38:43 t 1 1 179726 562 0.00 2019-12-01 08:43:43 2019-12-01 08:44:37 t 1 1 179728 430 0.00 2019-12-01 08:46:14 2019-12-01 08:46:14 f 1 1 179731 673 0.00 2019-12-01 08:45:31 2019-12-01 08:47:11 t 1 1 179737 220 0.00 2019-12-01 08:54:52 2019-12-01 08:58:36 t 1 2 179739 615 0.00 2019-12-01 08:55:38 2019-12-01 08:59:44 t 1 1 179742 562 0.00 2019-12-01 08:56:59 2019-12-01 09:04:38 t 1 1 179747 514 0.00 2019-12-01 08:57:34 2019-12-01 09:14:48 t 1 1 179752 562 0.00 2019-12-01 09:15:37 2019-12-01 09:19:48 t 1 1 179754 591 0.00 2019-12-01 09:13:07 2019-12-01 09:20:14 t 1 1 179757 591 0.00 2019-12-01 09:20:14 2019-12-01 09:23:16 t 1 1 179758 562 0.00 2019-12-01 09:23:31 2019-12-01 09:24:03 t 1 1 179760 562 0.00 2019-12-01 09:26:47 2019-12-01 09:26:57 t 1 1 179764 615 0.00 2019-12-01 09:18:52 2019-12-01 09:29:55 t 1 1 179770 639 0.00 2019-12-01 09:33:04 2019-12-01 09:34:54 t 1 1 179771 622 0.00 2019-12-01 09:05:34 2019-12-01 09:35:36 t 1 1 179772 639 0.00 2019-12-01 09:34:53 2019-12-01 09:37:07 t 1 1 179774 562 0.00 2019-12-01 09:36:44 2019-12-01 09:37:20 t 1 1 179777 554 0.00 2019-12-01 09:39:16 2019-12-01 09:39:16 f 1 1 179779 562 0.00 2019-12-01 09:39:57 2019-12-01 09:40:19 t 1 1 179781 562 0.00 2019-12-01 09:46:55 2019-12-01 09:47:07 t 1 1 179785 611 0.00 2019-12-01 09:49:54 2019-12-01 09:54:08 t 1 1 179786 645 0.00 2019-12-01 09:49:57 2019-12-01 09:56:31 t 1 1 179788 520 0.00 2019-12-01 09:57:48 2019-12-01 09:59:07 t 1 1 179791 562 0.00 2019-12-01 10:08:11 2019-12-01 10:08:33 t 1 1 179793 671 0.00 2019-12-01 09:59:51 2019-12-01 10:11:50 t 1 1 179794 562 0.00 2019-12-01 10:12:32 2019-12-01 10:12:45 t 1 1 179795 498 0.00 2019-12-01 09:49:38 2019-12-01 10:13:24 t 1 2 179800 667 0.00 2019-12-01 10:16:20 2019-12-01 10:20:18 t 1 2 179804 667 0.00 2019-12-01 10:23:20 2019-12-01 10:24:21 t 1 2 179807 667 0.00 2019-12-01 10:28:30 2019-12-01 10:29:34 t 1 2 179810 671 0.00 2019-12-01 10:25:51 2019-12-01 10:31:59 t 1 1 179811 667 0.00 2019-12-01 10:33:39 2019-12-01 10:34:42 t 1 2 179812 615 0.00 2019-12-01 10:34:24 2019-12-01 10:38:42 t 1 1 179817 562 0.00 2019-12-01 10:44:15 2019-12-01 10:47:31 t 1 1 179818 562 0.00 2019-12-01 10:47:56 2019-12-01 10:48:45 t 1 1 179826 639 0.00 2019-12-01 10:59:47 2019-12-01 10:59:55 t 1 1 179829 639 0.00 2019-12-01 11:02:13 2019-12-01 11:02:48 t 1 1 179831 562 0.00 2019-12-01 11:01:33 2019-12-01 11:03:54 t 1 1 179835 639 0.00 2019-12-01 11:06:41 2019-12-01 11:08:19 t 1 1 179839 639 0.00 2019-12-01 11:09:46 2019-12-01 11:12:34 t 1 1 179841 639 0.00 2019-12-01 11:13:33 2019-12-01 11:13:47 t 1 1 179844 538 0.00 2019-12-01 11:20:35 2019-12-01 11:22:59 t 1 1 179847 430 0.00 2019-12-01 11:27:22 2019-12-01 11:27:22 f 1 1 179848 220 0.00 2019-12-01 11:27:52 2019-12-01 11:28:56 t 1 2 179851 562 0.00 2019-12-01 11:29:44 2019-12-01 11:30:08 t 1 1 179857 220 0.00 2019-12-01 11:36:43 2019-12-01 11:37:46 t 1 2 179859 220 0.00 2019-12-01 11:38:32 2019-12-01 11:38:46 t 1 2 179860 562 0.00 2019-12-01 11:38:25 2019-12-01 11:39:48 t 1 1 179862 528 0.00 2019-12-01 11:37:31 2019-12-01 11:41:28 t 1 1 179864 528 0.00 2019-12-01 11:42:15 2019-12-01 11:42:19 t 1 1 179866 562 0.00 2019-12-01 11:43:27 2019-12-01 11:44:00 t 1 1 179873 220 0.00 2019-12-01 11:39:01 2019-12-01 11:50:24 t 1 2 179879 562 0.00 2019-12-01 11:55:22 2019-12-01 11:55:56 t 1 1 179881 687 0.00 2019-12-01 11:42:21 2019-12-01 11:58:40 t 1 1 179888 687 0.00 2019-12-01 12:02:26 2019-12-01 12:05:01 t 1 1 179889 562 0.00 2019-12-01 12:05:24 2019-12-01 12:06:30 t 1 1 179891 562 0.00 2019-12-01 12:06:47 2019-12-01 12:07:59 t 1 1 179893 645 0.00 2019-12-01 12:07:34 2019-12-01 12:10:51 t 1 1 179902 649 0.00 2019-12-01 11:59:49 2019-12-01 12:19:20 t 1 1 179903 562 0.00 2019-12-01 12:16:49 2019-12-01 12:20:44 t 1 1 179904 687 0.00 2019-12-01 12:07:58 2019-12-01 12:21:45 t 1 1 179906 564 0.00 2019-12-01 09:02:19 2019-12-01 12:24:27 t 1 1 179907 520 0.00 2019-12-01 12:16:38 2019-12-01 12:25:13 t 1 1 179912 562 0.00 2019-12-01 12:24:41 2019-12-01 12:33:44 t 1 1 179913 562 0.00 2019-12-01 12:34:02 2019-12-01 12:34:20 t 1 1 179914 562 0.00 2019-12-01 12:34:27 2019-12-01 12:35:18 t 1 1 179612 623 0.00 2019-12-01 07:06:47 2019-12-01 07:06:59 t 1 1 179617 623 0.00 2019-12-01 07:08:46 2019-12-01 07:09:08 t 1 1 179620 639 0.00 2019-12-01 07:09:51 2019-12-01 07:11:09 t 1 1 179625 639 0.00 2019-12-01 07:13:37 2019-12-01 07:13:52 t 1 1 179627 623 0.00 2019-12-01 07:15:47 2019-12-01 07:15:50 t 1 1 179628 623 0.00 2019-12-01 07:16:06 2019-12-01 07:16:11 t 1 1 179635 562 0.00 2019-12-01 07:19:37 2019-12-01 07:19:49 t 1 1 179637 623 0.00 2019-12-01 07:20:13 2019-12-01 07:20:15 t 1 1 179639 623 0.00 2019-12-01 07:20:54 2019-12-01 07:21:15 t 1 1 179641 623 0.00 2019-12-01 07:23:20 2019-12-01 07:23:29 t 1 1 179644 623 0.00 2019-12-01 07:26:05 2019-12-01 07:26:22 t 1 1 179648 564 0.00 2019-12-01 07:13:11 2019-12-01 07:29:47 t 1 1 179650 562 0.00 2019-12-01 07:30:14 2019-12-01 07:30:35 t 1 1 179651 623 0.00 2019-12-01 07:31:11 2019-12-01 07:31:28 t 1 1 179657 623 0.00 2019-12-01 07:36:46 2019-12-01 07:36:47 t 1 1 179658 623 0.00 2019-12-01 07:37:15 2019-12-01 07:37:30 t 1 1 179663 623 0.00 2019-12-01 07:41:18 2019-12-01 07:41:40 t 1 1 179667 611 0.00 2019-12-01 07:23:52 2019-12-01 07:45:16 t 1 1 179670 623 0.00 2019-12-01 07:49:53 2019-12-01 07:49:54 t 1 1 179672 623 0.00 2019-12-01 07:51:15 2019-12-01 07:51:46 t 1 1 179677 623 0.00 2019-12-01 07:59:35 2019-12-01 07:59:56 t 1 1 179678 675 0.00 2019-12-01 07:55:57 2019-12-01 08:00:48 t 1 1 179681 562 0.00 2019-12-01 08:02:28 2019-12-01 08:02:54 t 1 1 179683 623 0.00 2019-12-01 08:04:38 2019-12-01 08:04:53 t 1 1 179686 623 0.00 2019-12-01 08:07:47 2019-12-01 08:08:17 t 1 1 179687 220 0.00 2019-12-01 07:56:06 2019-12-01 08:09:19 t 1 2 179696 578 0.00 2019-11-30 22:01:28 2019-12-01 08:16:35 t 1 1 179699 562 0.00 2019-12-01 08:18:19 2019-12-01 08:18:41 t 1 1 179701 623 0.00 2019-12-01 08:18:17 2019-12-01 08:19:18 t 1 1 179705 656 0.00 2019-12-01 08:21:04 2019-12-01 08:22:18 t 1 1 179707 615 0.00 2019-12-01 08:14:32 2019-12-01 08:22:37 t 1 1 179708 623 0.00 2019-12-01 08:24:06 2019-12-01 08:24:16 t 1 1 179711 675 0.00 2019-12-01 08:23:52 2019-12-01 08:26:06 t 1 1 179713 623 0.00 2019-12-01 08:25:27 2019-12-01 08:27:18 t 1 1 179721 220 0.00 2019-12-01 08:10:48 2019-12-01 08:42:10 t 1 2 179722 562 0.00 2019-12-01 08:41:49 2019-12-01 08:43:14 t 1 1 179723 514 0.00 2019-12-01 08:33:12 2019-12-01 08:43:52 t 1 1 179724 430 0.00 2019-12-01 08:44:00 2019-12-01 08:44:00 f 1 1 179725 675 0.00 2019-12-01 08:44:33 2019-12-01 08:44:36 t 1 1 179727 562 0.00 2019-12-01 08:44:55 2019-12-01 08:45:01 t 1 1 179730 591 0.00 2019-12-01 08:45:09 2019-12-01 08:47:04 t 1 1 179732 645 0.00 2019-12-01 08:46:17 2019-12-01 08:47:40 t 1 1 179733 430 0.00 2019-12-01 08:50:51 2019-12-01 08:50:51 f 1 1 179736 514 0.00 2019-12-01 08:43:52 2019-12-01 08:57:34 t 1 1 179740 516 0.00 2019-12-01 09:03:44 2019-12-01 09:04:19 t 1 1 179741 422 0.00 2019-12-01 09:04:35 2019-12-01 09:04:35 f 1 1 179744 675 0.00 2019-12-01 09:08:52 2019-12-01 09:10:06 t 1 1 179745 562 0.00 2019-12-01 09:09:55 2019-12-01 09:11:09 t 1 1 179749 512 0.00 2019-12-01 09:07:50 2019-12-01 09:16:04 t 1 1 179753 645 0.00 2019-12-01 09:19:18 2019-12-01 09:19:51 t 1 1 179755 516 0.00 2019-12-01 09:20:41 2019-12-01 09:20:43 t 1 1 179761 639 0.00 2019-12-01 09:25:53 2019-12-01 09:27:42 t 1 1 179762 562 0.00 2019-12-01 09:28:06 2019-12-01 09:28:22 t 1 1 179763 591 0.00 2019-12-01 09:26:22 2019-12-01 09:29:29 t 1 1 179765 675 0.00 2019-12-01 09:29:14 2019-12-01 09:31:22 t 1 1 179768 639 0.00 2019-12-01 09:31:33 2019-12-01 09:32:12 t 1 1 179775 554 0.00 2019-12-01 09:38:47 2019-12-01 09:38:47 f 1 1 179782 514 0.00 2019-12-01 09:46:02 2019-12-01 09:48:16 t 1 1 179789 645 0.00 2019-12-01 10:00:31 2019-12-01 10:03:18 t 1 1 179790 615 0.00 2019-12-01 09:54:27 2019-12-01 10:05:11 t 1 1 179796 625 0.00 2019-12-01 08:17:12 2019-12-01 10:14:30 t 1 1 179802 667 0.00 2019-12-01 10:19:49 2019-12-01 10:20:52 t 1 2 179806 562 0.00 2019-12-01 10:12:57 2019-12-01 10:27:45 t 1 1 179808 667 0.00 2019-12-01 10:29:57 2019-12-01 10:30:59 t 1 2 179813 562 0.00 2019-12-01 10:30:18 2019-12-01 10:40:46 t 1 1 179816 538 0.00 2019-12-01 10:45:19 2019-12-01 10:45:37 t 1 1 179819 538 0.00 2019-12-01 10:47:30 2019-12-01 10:49:32 t 1 1 179824 639 0.00 2019-12-01 10:57:10 2019-12-01 10:59:08 t 1 1 179828 545 0.00 2019-12-01 11:01:07 2019-12-01 11:02:24 t 1 1 179830 673 0.00 2019-12-01 11:02:21 2019-12-01 11:03:30 t 1 1 179832 615 0.00 2019-12-01 11:00:36 2019-12-01 11:05:24 t 1 1 179834 562 0.00 2019-12-01 11:05:11 2019-12-01 11:06:04 t 1 1 179836 591 0.00 2019-12-01 09:36:47 2019-12-01 11:09:12 t 1 1 179838 639 0.00 2019-12-01 11:09:04 2019-12-01 11:10:19 t 1 1 179842 639 0.00 2019-12-01 11:14:00 2019-12-01 11:14:09 t 1 1 179843 639 0.00 2019-12-01 11:14:46 2019-12-01 11:14:51 t 1 1 179845 562 0.00 2019-12-01 11:07:25 2019-12-01 11:23:20 t 1 1 179850 645 0.00 2019-12-01 11:25:08 2019-12-01 11:29:44 t 1 1 179852 220 0.00 2019-12-01 11:30:47 2019-12-01 11:31:48 t 1 2 179854 520 0.00 2019-12-01 11:29:28 2019-12-01 11:36:30 t 1 1 179855 675 0.00 2019-12-01 11:35:42 2019-12-01 11:37:21 t 1 1 179856 520 0.00 2019-12-01 11:36:30 2019-12-01 11:37:45 t 1 1 179861 625 0.00 2019-12-01 10:14:30 2019-12-01 11:41:23 t 1 1 179865 687 0.00 2019-12-01 11:29:51 2019-12-01 11:42:21 t 1 1 179868 562 0.00 2019-12-01 11:47:37 2019-12-01 11:48:13 t 1 1 179870 528 0.00 2019-12-01 11:47:31 2019-12-01 11:50:06 t 1 1 179872 554 0.00 2019-12-01 11:50:19 2019-12-01 11:50:19 f 1 1 179878 562 0.00 2019-12-01 11:54:37 2019-12-01 11:54:47 t 1 1 179880 667 0.00 2019-12-01 11:57:32 2019-12-01 11:58:35 t 1 2 179885 645 0.00 2019-12-01 11:58:52 2019-12-01 12:00:26 t 1 1 179886 562 0.00 2019-12-01 12:01:13 2019-12-01 12:01:44 t 1 1 179887 687 0.00 2019-12-01 11:58:40 2019-12-01 12:02:27 t 1 1 179892 631 0.00 2019-12-01 12:09:45 2019-12-01 12:10:42 t 1 1 179898 622 0.00 2019-12-01 11:13:25 2019-12-01 12:15:07 t 1 1 179900 562 0.00 2019-12-01 12:14:55 2019-12-01 12:16:50 t 1 1 179909 512 0.00 2019-12-01 11:29:49 2019-12-01 12:26:28 t 1 1 179915 481 0.00 2019-12-01 12:19:02 2019-12-01 12:38:10 t 1 1 179918 512 0.00 2019-12-01 12:26:28 2019-12-01 12:38:33 t 1 1 179924 220 0.00 2019-12-01 12:38:00 2019-12-01 12:46:23 t 1 2 179928 574 0.00 2019-12-01 12:38:21 2019-12-01 12:49:29 t 1 1 179932 611 0.00 2019-12-01 12:40:22 2019-12-01 12:57:04 t 1 1 179934 679 0.00 2019-12-01 12:55:48 2019-12-01 12:57:25 t 1 1 179941 645 0.00 2019-12-01 12:57:30 2019-12-01 13:00:52 t 1 1 179943 562 0.00 2019-12-01 12:53:06 2019-12-01 13:03:13 t 1 1 179945 591 0.00 2019-12-01 11:10:46 2019-12-01 13:05:01 t 1 1 179950 611 0.00 2019-12-01 12:56:46 2019-12-01 13:07:11 t 1 1 179955 623 0.00 2019-12-01 13:09:13 2019-12-01 13:09:49 t 1 1 179911 622 0.00 2019-12-01 12:27:06 2019-12-01 12:30:06 t 1 1 179916 649 0.00 2019-12-01 12:18:24 2019-12-01 12:38:17 t 1 1 179917 562 0.00 2019-12-01 12:37:34 2019-12-01 12:38:27 t 1 1 179919 660 0.00 2019-12-01 12:22:12 2019-12-01 12:43:03 t 1 1 179920 512 0.00 2019-12-01 12:42:37 2019-12-01 12:44:10 t 1 1 179922 660 0.00 2019-12-01 12:43:03 2019-12-01 12:45:55 t 1 1 179926 544 0.00 2019-12-01 12:34:21 2019-12-01 12:48:45 t 1 1 179930 220 0.00 2019-12-01 12:38:14 2019-12-01 12:52:11 t 1 1 179933 220 0.00 2019-12-01 12:31:58 2019-12-01 12:57:22 t 1 2 179935 623 0.00 2019-12-01 12:55:06 2019-12-01 12:57:40 t 1 1 179938 623 0.00 2019-12-01 12:58:02 2019-12-01 12:58:53 t 1 1 179940 623 0.00 2019-12-01 13:00:29 2019-12-01 13:00:52 t 1 1 179944 623 0.00 2019-12-01 13:04:07 2019-12-01 13:04:39 t 1 1 179948 562 0.00 2019-12-01 13:05:30 2019-12-01 13:05:52 t 1 1 179949 623 0.00 2019-12-01 13:06:12 2019-12-01 13:06:22 t 1 1 179951 623 0.00 2019-12-01 13:07:10 2019-12-01 13:07:42 t 1 1 179952 591 0.00 2019-12-01 13:05:01 2019-12-01 13:08:12 t 1 1 179954 623 0.00 2019-12-01 13:08:11 2019-12-01 13:08:47 t 1 1 179959 562 0.00 2019-12-01 13:07:07 2019-12-01 13:12:22 t 1 1 179961 623 0.00 2019-12-01 13:12:52 2019-12-01 13:12:55 t 1 1 179962 623 0.00 2019-12-01 13:13:21 2019-12-01 13:13:22 t 1 1 179972 623 0.00 2019-12-01 13:19:43 2019-12-01 13:19:43 f 1 1 179973 623 0.00 2019-12-01 13:17:56 2019-12-01 13:20:21 t 1 1 179981 562 0.00 2019-12-01 13:15:58 2019-12-01 13:29:01 t 1 1 179984 562 0.00 2019-12-01 13:29:48 2019-12-01 13:32:33 t 1 1 179986 481 0.00 2019-12-01 12:38:09 2019-12-01 13:35:36 t 1 1 179990 220 0.00 2019-12-01 11:50:05 2019-12-01 13:40:13 t 1 2 179992 566 0.00 2019-12-01 13:27:48 2019-12-01 13:41:25 t 1 1 179999 516 0.00 2019-12-01 13:49:22 2019-12-01 13:50:52 t 1 1 180000 516 0.00 2019-12-01 13:51:27 2019-12-01 13:51:33 t 1 1 180003 516 0.00 2019-12-01 13:51:41 2019-12-01 13:52:43 t 1 1 180010 631 0.00 2019-12-01 13:56:38 2019-12-01 13:56:41 t 1 1 180011 637 0.00 2019-12-01 13:30:25 2019-12-01 13:58:17 t 1 1 180012 687 0.00 2019-12-01 13:46:40 2019-12-01 13:59:03 t 1 1 180013 544 0.00 2019-12-01 13:45:36 2019-12-01 13:59:29 t 1 1 180017 591 0.00 2019-12-01 14:01:48 2019-12-01 14:04:07 t 1 1 180018 591 0.00 2019-12-01 14:04:07 2019-12-01 14:04:25 t 1 1 180020 591 0.00 2019-12-01 14:04:25 2019-12-01 14:05:37 t 1 1 180022 679 0.00 2019-12-01 14:06:46 2019-12-01 14:07:13 t 1 1 180023 687 0.00 2019-12-01 14:05:11 2019-12-01 14:08:21 t 1 1 180027 639 0.00 2019-12-01 14:10:11 2019-12-01 14:10:24 t 1 1 180028 631 0.00 2019-12-01 14:11:55 2019-12-01 14:11:57 t 1 1 180033 631 0.00 2019-12-01 14:15:00 2019-12-01 14:15:05 t 1 1 180034 578 0.00 2019-12-01 11:59:55 2019-12-01 14:15:59 t 1 1 180041 687 0.00 2019-12-01 14:08:29 2019-12-01 14:22:38 t 1 1 180044 631 0.00 2019-12-01 14:23:20 2019-12-01 14:23:41 t 1 1 180046 528 0.00 2019-12-01 14:24:14 2019-12-01 14:24:43 t 1 1 180052 562 0.00 2019-12-01 14:28:22 2019-12-01 14:28:32 t 1 1 180053 639 0.00 2019-12-01 14:28:12 2019-12-01 14:29:13 t 1 1 180054 611 0.00 2019-12-01 14:24:57 2019-12-01 14:30:42 t 1 1 180057 566 0.00 2019-12-01 14:25:44 2019-12-01 14:31:25 t 1 1 180060 512 0.00 2019-12-01 13:50:49 2019-12-01 14:34:16 t 1 1 180061 578 0.00 2019-12-01 14:15:59 2019-12-01 14:35:00 t 1 1 180062 481 0.00 2019-12-01 13:35:36 2019-12-01 14:35:14 t 1 1 180063 611 0.00 2019-12-01 14:30:45 2019-12-01 14:35:49 t 1 1 180066 639 0.00 2019-12-01 14:37:13 2019-12-01 14:38:15 t 1 1 180069 639 0.00 2019-12-01 14:39:15 2019-12-01 14:39:47 t 1 1 180070 562 0.00 2019-12-01 14:40:58 2019-12-01 14:41:36 t 1 1 180076 508 0.00 2019-12-01 12:03:33 2019-12-01 14:46:00 t 1 2 180085 520 0.00 2019-12-01 14:12:38 2019-12-01 14:53:42 t 1 1 180086 667 0.00 2019-12-01 14:54:02 2019-12-01 14:54:07 t 1 1 180088 639 0.00 2019-12-01 14:54:47 2019-12-01 14:55:01 t 1 1 180091 562 0.00 2019-12-01 14:55:51 2019-12-01 14:56:57 t 1 1 180093 627 0.00 2019-12-01 14:28:52 2019-12-01 14:57:39 t 1 1 180095 481 0.00 2019-12-01 14:35:14 2019-12-01 14:58:32 t 1 1 180097 667 0.00 2019-12-01 14:59:21 2019-12-01 14:59:23 t 1 1 180099 520 0.00 2019-12-01 14:54:00 2019-12-01 14:59:55 t 1 1 180100 639 0.00 2019-12-01 15:00:01 2019-12-01 15:00:14 t 1 1 180111 611 0.00 2019-12-01 14:58:41 2019-12-01 15:02:39 t 1 1 180112 544 0.00 2019-12-01 15:02:22 2019-12-01 15:03:01 t 1 1 180117 516 0.00 2019-12-01 15:03:36 2019-12-01 15:03:42 t 1 1 180119 639 0.00 2019-12-01 15:02:39 2019-12-01 15:04:12 t 1 1 180123 562 0.00 2019-12-01 15:06:13 2019-12-01 15:06:35 t 1 1 180125 544 0.00 2019-12-01 15:03:36 2019-12-01 15:06:50 t 1 1 180129 639 0.00 2019-12-01 15:05:46 2019-12-01 15:08:22 t 1 1 180132 220 0.00 2019-12-01 15:07:37 2019-12-01 15:09:22 t 1 1 180134 667 0.00 2019-12-01 15:10:23 2019-12-01 15:10:26 t 1 1 180136 639 0.00 2019-12-01 15:10:27 2019-12-01 15:11:15 t 1 1 180139 645 0.00 2019-12-01 15:02:20 2019-12-01 15:13:00 t 1 1 180140 538 0.00 2019-12-01 15:02:10 2019-12-01 15:14:04 t 1 1 180153 639 0.00 2019-12-01 15:20:04 2019-12-01 15:23:23 t 1 1 180163 639 0.00 2019-12-01 15:27:45 2019-12-01 15:29:03 t 1 1 180165 220 0.00 2019-12-01 15:16:38 2019-12-01 15:30:01 t 1 2 180168 627 0.00 2019-12-01 15:22:31 2019-12-01 15:30:35 t 1 1 180170 667 0.00 2019-12-01 15:32:03 2019-12-01 15:32:08 t 1 1 180172 520 0.00 2019-12-01 15:28:41 2019-12-01 15:33:14 t 1 1 180174 639 0.00 2019-12-01 15:32:32 2019-12-01 15:34:22 t 1 1 180182 220 0.00 2019-12-01 15:40:36 2019-12-01 15:40:50 t 1 1 180183 516 0.00 2019-12-01 15:32:10 2019-12-01 15:42:31 t 1 1 180188 544 0.00 2019-12-01 15:44:37 2019-12-01 15:45:07 t 1 1 180195 687 0.00 2019-12-01 15:36:16 2019-12-01 15:46:42 t 1 1 180204 220 0.00 2019-12-01 15:50:12 2019-12-01 15:50:26 t 1 1 180208 220 0.00 2019-12-01 15:51:47 2019-12-01 15:51:48 t 1 1 180210 544 0.00 2019-12-01 15:52:06 2019-12-01 15:52:39 t 1 1 180212 485 0.00 2019-12-01 15:50:12 2019-12-01 15:53:09 t 1 1 180213 544 0.00 2019-12-01 15:52:39 2019-12-01 15:53:24 t 1 1 180216 679 0.00 2019-12-01 15:54:05 2019-12-01 15:54:48 t 1 1 180218 544 0.00 2019-12-01 15:54:31 2019-12-01 15:55:09 t 1 1 180221 490 0.00 2019-12-01 15:45:57 2019-12-01 15:56:35 t 1 1 180224 220 0.00 2019-12-01 15:57:14 2019-12-01 15:57:15 t 1 1 180225 544 0.00 2019-12-01 15:57:06 2019-12-01 15:57:52 t 1 1 180226 544 0.00 2019-12-01 15:57:52 2019-12-01 15:58:31 t 1 1 180229 544 0.00 2019-12-01 15:59:04 2019-12-01 15:59:43 t 1 1 180234 544 0.00 2019-12-01 16:01:04 2019-12-01 16:01:39 t 1 1 180236 544 0.00 2019-12-01 16:01:39 2019-12-01 16:02:17 t 1 1 180237 544 0.00 2019-12-01 16:02:17 2019-12-01 16:02:52 t 1 1 180240 656 0.00 2019-12-01 13:37:28 2019-12-01 16:03:38 t 1 1 179921 622 0.00 2019-12-01 12:39:42 2019-12-01 12:45:50 t 1 1 179923 645 0.00 2019-12-01 12:43:01 2019-12-01 12:46:14 t 1 1 179925 627 0.00 2019-12-01 12:46:05 2019-12-01 12:47:10 t 1 1 179927 520 0.00 2019-12-01 12:32:40 2019-12-01 12:48:56 t 1 1 179929 675 0.00 2019-12-01 12:47:21 2019-12-01 12:49:42 t 1 1 179931 562 0.00 2019-12-01 12:41:58 2019-12-01 12:53:06 t 1 1 179936 631 0.00 2019-12-01 12:54:55 2019-12-01 12:57:49 t 1 1 179937 544 0.00 2019-12-01 12:48:45 2019-12-01 12:58:29 t 1 1 179939 623 0.00 2019-12-01 12:57:45 2019-12-01 12:59:21 t 1 1 179942 623 0.00 2019-12-01 13:01:40 2019-12-01 13:01:43 t 1 1 179946 623 0.00 2019-12-01 13:03:52 2019-12-01 13:05:21 t 1 1 179947 623 0.00 2019-12-01 13:05:26 2019-12-01 13:05:40 t 1 1 179953 623 0.00 2019-12-01 13:06:44 2019-12-01 13:08:21 t 1 1 179957 623 0.00 2019-12-01 13:11:07 2019-12-01 13:11:22 t 1 1 179963 623 0.00 2019-12-01 13:13:52 2019-12-01 13:13:53 t 1 1 179965 581 0.00 2019-12-01 13:14:41 2019-12-01 13:14:41 f 1 1 179970 611 0.00 2019-12-01 13:08:48 2019-12-01 13:18:39 t 1 1 179971 623 0.00 2019-12-01 13:19:08 2019-12-01 13:19:09 t 1 1 179974 623 0.00 2019-12-01 13:19:15 2019-12-01 13:21:21 t 1 1 179979 566 0.00 2019-12-01 13:18:42 2019-12-01 13:27:48 t 1 1 179982 611 0.00 2019-12-01 13:18:39 2019-12-01 13:29:10 t 1 1 179983 520 0.00 2019-12-01 13:26:15 2019-12-01 13:29:42 t 1 1 179987 562 0.00 2019-12-01 13:33:01 2019-12-01 13:36:27 t 1 1 179988 656 0.00 2019-12-01 08:40:51 2019-12-01 13:37:28 t 1 1 179991 520 0.00 2019-12-01 13:29:41 2019-12-01 13:40:18 t 1 1 179993 451 0.00 2019-12-01 13:16:13 2019-12-01 13:43:26 t 1 1 179995 544 0.00 2019-12-01 13:37:27 2019-12-01 13:45:36 t 1 1 179996 562 0.00 2019-12-01 13:47:04 2019-12-01 13:48:22 t 1 1 179998 562 0.00 2019-12-01 13:49:15 2019-12-01 13:49:45 t 1 1 180004 675 0.00 2019-12-01 13:37:33 2019-12-01 13:52:44 t 1 1 180008 625 0.00 2019-12-01 13:22:29 2019-12-01 13:56:19 t 1 1 180014 631 0.00 2019-12-01 14:01:44 2019-12-01 14:01:46 t 1 1 180015 487 0.00 2019-12-01 13:58:32 2019-12-01 14:03:08 t 1 2 180021 562 0.00 2019-12-01 14:06:42 2019-12-01 14:07:08 t 1 1 180025 631 0.00 2019-12-01 14:06:53 2019-12-01 14:08:22 t 1 1 180029 637 0.00 2019-12-01 14:04:47 2019-12-01 14:11:58 t 1 1 180030 520 0.00 2019-12-01 13:40:18 2019-12-01 14:12:32 t 1 1 180031 639 0.00 2019-12-01 14:13:12 2019-12-01 14:14:00 t 1 1 180035 639 0.00 2019-12-01 14:16:58 2019-12-01 14:17:05 t 1 1 180037 631 0.00 2019-12-01 14:17:36 2019-12-01 14:19:06 t 1 1 180040 639 0.00 2019-12-01 14:22:28 2019-12-01 14:22:30 t 1 1 180042 667 0.00 2019-12-01 14:13:46 2019-12-01 14:23:09 t 1 1 180043 528 0.00 2019-12-01 14:16:57 2019-12-01 14:23:32 t 1 1 180045 639 0.00 2019-12-01 14:23:49 2019-12-01 14:24:43 t 1 1 180048 611 0.00 2019-12-01 14:17:24 2019-12-01 14:24:55 t 1 1 180055 667 0.00 2019-12-01 14:30:39 2019-12-01 14:30:56 t 1 1 180058 528 0.00 2019-12-01 14:27:01 2019-12-01 14:32:27 t 1 1 180059 637 0.00 2019-12-01 14:11:58 2019-12-01 14:33:48 t 1 1 180065 645 0.00 2019-12-01 14:30:13 2019-12-01 14:37:23 t 1 1 180067 485 0.00 2019-12-01 14:36:27 2019-12-01 14:38:25 t 1 1 180078 639 0.00 2019-12-01 14:47:10 2019-12-01 14:47:35 t 1 1 180079 671 0.00 2019-12-01 14:44:40 2019-12-01 14:48:35 t 1 1 180082 667 0.00 2019-12-01 14:50:54 2019-12-01 14:51:37 t 1 1 180083 611 0.00 2019-12-01 14:38:30 2019-12-01 14:52:22 t 1 1 180094 639 0.00 2019-12-01 14:58:09 2019-12-01 14:58:28 t 1 1 180096 611 0.00 2019-12-01 14:52:21 2019-12-01 14:58:42 t 1 1 180102 645 0.00 2019-12-01 14:50:29 2019-12-01 15:00:35 t 1 1 180106 667 0.00 2019-12-01 15:00:58 2019-12-01 15:01:27 t 1 1 180110 545 0.00 2019-12-01 14:59:54 2019-12-01 15:02:31 t 1 1 180113 673 0.00 2019-12-01 15:01:55 2019-12-01 15:03:18 t 1 1 180115 516 0.00 2019-12-01 14:54:19 2019-12-01 15:03:25 t 1 1 180120 220 0.00 2019-12-01 15:03:14 2019-12-01 15:05:19 t 1 1 180122 516 0.00 2019-12-01 15:04:31 2019-12-01 15:05:43 t 1 1 180126 639 0.00 2019-12-01 15:07:06 2019-12-01 15:07:12 t 1 1 180127 544 0.00 2019-12-01 15:06:49 2019-12-01 15:07:21 t 1 1 180130 544 0.00 2019-12-01 15:08:09 2019-12-01 15:08:46 t 1 1 180131 220 0.00 2019-12-01 15:07:50 2019-12-01 15:09:22 t 1 1 180135 627 0.00 2019-12-01 15:04:06 2019-12-01 15:10:45 t 1 1 180137 667 0.00 2019-12-01 15:10:53 2019-12-01 15:11:21 t 1 1 180144 564 0.00 2019-12-01 15:09:13 2019-12-01 15:16:48 t 1 1 180145 520 0.00 2019-12-01 15:13:36 2019-12-01 15:17:58 t 1 1 180148 639 0.00 2019-12-01 15:18:02 2019-12-01 15:18:56 t 1 1 180149 528 0.00 2019-12-01 14:57:51 2019-12-01 15:20:23 t 1 1 180154 639 0.00 2019-12-01 15:23:43 2019-12-01 15:24:01 t 1 1 180155 639 0.00 2019-12-01 15:24:40 2019-12-01 15:24:46 t 1 1 180157 639 0.00 2019-12-01 15:25:36 2019-12-01 15:25:55 t 1 1 180158 591 0.00 2019-12-01 15:12:37 2019-12-01 15:26:27 t 1 1 180161 520 0.00 2019-12-01 15:19:27 2019-12-01 15:27:54 t 1 1 180167 545 0.00 2019-12-01 15:16:06 2019-12-01 15:30:34 t 1 1 180169 667 0.00 2019-12-01 15:30:28 2019-12-01 15:31:16 t 1 1 180171 220 0.00 2019-12-01 15:32:37 2019-12-01 15:32:52 t 1 1 180178 687 0.00 2019-12-01 15:29:33 2019-12-01 15:36:16 t 1 1 180179 639 0.00 2019-12-01 15:34:42 2019-12-01 15:36:22 t 1 1 180180 220 0.00 2019-12-01 15:37:45 2019-12-01 15:37:53 t 1 1 180184 566 0.00 2019-12-01 14:39:11 2019-12-01 15:42:43 t 1 1 180185 544 0.00 2019-12-01 15:08:46 2019-12-01 15:43:25 t 1 1 180189 625 0.00 2019-12-01 13:56:19 2019-12-01 15:45:15 t 1 1 180190 220 0.00 2019-12-01 15:45:11 2019-12-01 15:45:26 t 1 1 180192 490 0.00 2019-12-01 15:25:56 2019-12-01 15:45:57 t 1 1 180194 544 0.00 2019-12-01 15:45:46 2019-12-01 15:46:20 t 1 1 180196 544 0.00 2019-12-01 15:46:20 2019-12-01 15:47:01 t 1 1 180197 687 0.00 2019-12-01 15:47:14 2019-12-01 15:47:28 t 1 1 180200 687 0.00 2019-12-01 15:48:06 2019-12-01 15:48:12 t 1 1 180201 544 0.00 2019-12-01 15:48:12 2019-12-01 15:48:47 t 1 1 180202 544 0.00 2019-12-01 15:48:46 2019-12-01 15:49:24 t 1 1 180205 544 0.00 2019-12-01 15:49:59 2019-12-01 15:50:40 t 1 1 180206 544 0.00 2019-12-01 15:50:40 2019-12-01 15:51:27 t 1 1 180209 544 0.00 2019-12-01 15:51:26 2019-12-01 15:52:07 t 1 1 180211 520 0.00 2019-12-01 15:33:19 2019-12-01 15:52:54 t 1 1 180214 544 0.00 2019-12-01 15:53:23 2019-12-01 15:53:55 t 1 1 180219 544 0.00 2019-12-01 15:55:09 2019-12-01 15:55:51 t 1 1 180220 544 0.00 2019-12-01 15:55:50 2019-12-01 15:56:25 t 1 1 180222 220 0.00 2019-12-01 15:56:48 2019-12-01 15:56:57 t 1 1 180227 544 0.00 2019-12-01 15:58:30 2019-12-01 15:59:04 t 1 1 180230 637 0.00 2019-12-01 14:56:09 2019-12-01 16:00:14 t 1 1 180232 220 0.00 2019-12-01 16:00:22 2019-12-01 16:00:31 t 1 1 180239 544 0.00 2019-12-01 16:02:52 2019-12-01 16:03:34 t 1 1 179956 516 0.00 2019-12-01 13:07:48 2019-12-01 13:10:47 t 1 1 179958 623 0.00 2019-12-01 13:11:30 2019-12-01 13:11:47 t 1 1 179960 516 0.00 2019-12-01 13:10:54 2019-12-01 13:12:32 t 1 1 179964 581 0.00 2019-12-01 13:14:02 2019-12-01 13:14:02 f 1 1 179966 623 0.00 2019-12-01 13:14:34 2019-12-01 13:15:09 t 1 1 179967 562 0.00 2019-12-01 13:15:03 2019-12-01 13:15:30 t 1 1 179968 623 0.00 2019-12-01 13:16:25 2019-12-01 13:16:56 t 1 1 179969 623 0.00 2019-12-01 13:17:21 2019-12-01 13:17:30 t 1 1 179975 625 0.00 2019-12-01 12:27:49 2019-12-01 13:22:29 t 1 1 179976 687 0.00 2019-12-01 12:45:27 2019-12-01 13:25:30 t 1 1 179977 520 0.00 2019-12-01 13:01:19 2019-12-01 13:26:16 t 1 1 179978 645 0.00 2019-12-01 13:25:49 2019-12-01 13:27:21 t 1 1 179980 591 0.00 2019-12-01 13:16:25 2019-12-01 13:28:00 t 1 1 179985 611 0.00 2019-12-01 13:29:10 2019-12-01 13:34:04 t 1 1 179989 687 0.00 2019-12-01 13:32:34 2019-12-01 13:39:39 t 1 1 179994 562 0.00 2019-12-01 13:43:14 2019-12-01 13:44:21 t 1 1 179997 516 0.00 2019-12-01 13:48:32 2019-12-01 13:48:38 t 1 1 180001 631 0.00 2019-12-01 13:39:55 2019-12-01 13:51:34 t 1 1 180002 631 0.00 2019-12-01 13:51:37 2019-12-01 13:51:45 t 1 1 180005 566 0.00 2019-12-01 13:41:25 2019-12-01 13:53:59 t 1 1 180006 675 0.00 2019-12-01 13:52:43 2019-12-01 13:55:06 t 1 1 180007 631 0.00 2019-12-01 13:54:24 2019-12-01 13:55:22 t 1 1 180009 562 0.00 2019-12-01 13:55:59 2019-12-01 13:56:20 t 1 1 180016 687 0.00 2019-12-01 13:59:03 2019-12-01 14:03:30 t 1 1 180019 637 0.00 2019-12-01 13:58:16 2019-12-01 14:04:44 t 1 1 180024 451 0.00 2019-12-01 13:55:58 2019-12-01 14:08:22 t 1 1 180026 639 0.00 2019-12-01 11:51:52 2019-12-01 14:09:12 t 1 1 180032 639 0.00 2019-12-01 14:12:29 2019-12-01 14:14:22 t 1 1 180036 562 0.00 2019-12-01 14:17:40 2019-12-01 14:17:50 t 1 1 180038 639 0.00 2019-12-01 14:18:48 2019-12-01 14:20:18 t 1 1 180039 564 0.00 2019-12-01 12:24:27 2019-12-01 14:21:10 t 1 1 180047 631 0.00 2019-12-01 14:24:36 2019-12-01 14:24:47 t 1 1 180049 566 0.00 2019-12-01 14:18:11 2019-12-01 14:25:07 t 1 1 180050 687 0.00 2019-12-01 14:22:38 2019-12-01 14:26:36 t 1 1 180051 639 0.00 2019-12-01 14:26:34 2019-12-01 14:28:22 t 1 1 180056 667 0.00 2019-12-01 14:31:02 2019-12-01 14:31:15 t 1 1 180064 639 0.00 2019-12-01 14:36:15 2019-12-01 14:36:52 t 1 1 180068 562 0.00 2019-12-01 14:39:09 2019-12-01 14:39:17 t 1 1 180071 667 0.00 2019-12-01 14:40:33 2019-12-01 14:41:42 t 1 1 180072 645 0.00 2019-12-01 14:37:23 2019-12-01 14:42:33 t 1 1 180073 671 0.00 2019-12-01 14:34:50 2019-12-01 14:44:11 t 1 1 180074 645 0.00 2019-12-01 14:42:32 2019-12-01 14:44:59 t 1 1 180075 562 0.00 2019-12-01 14:43:49 2019-12-01 14:45:25 t 1 1 180077 639 0.00 2019-12-01 14:45:36 2019-12-01 14:47:22 t 1 1 180080 639 0.00 2019-12-01 14:48:44 2019-12-01 14:50:18 t 1 1 180081 562 0.00 2019-12-01 14:48:50 2019-12-01 14:51:35 t 1 1 180084 667 0.00 2019-12-01 14:52:43 2019-12-01 14:52:50 t 1 1 180087 516 0.00 2019-12-01 14:48:13 2019-12-01 14:54:12 t 1 1 180089 667 0.00 2019-12-01 14:54:35 2019-12-01 14:55:05 t 1 1 180090 671 0.00 2019-12-01 14:49:23 2019-12-01 14:56:27 t 1 1 180092 639 0.00 2019-12-01 14:56:50 2019-12-01 14:57:09 t 1 1 180098 639 0.00 2019-12-01 14:59:09 2019-12-01 14:59:24 t 1 1 180101 544 0.00 2019-12-01 14:32:45 2019-12-01 15:00:30 t 1 1 180103 639 0.00 2019-12-01 15:00:42 2019-12-01 15:00:51 t 1 1 180104 544 0.00 2019-12-01 15:00:30 2019-12-01 15:01:07 t 1 1 180105 687 0.00 2019-12-01 14:26:46 2019-12-01 15:01:27 t 1 1 180107 544 0.00 2019-12-01 15:01:06 2019-12-01 15:01:48 t 1 1 180108 687 0.00 2019-12-01 15:01:52 2019-12-01 15:02:00 t 1 1 180109 544 0.00 2019-12-01 15:01:48 2019-12-01 15:02:22 t 1 1 180114 639 0.00 2019-12-01 15:01:15 2019-12-01 15:03:22 t 1 1 180116 544 0.00 2019-12-01 15:03:01 2019-12-01 15:03:36 t 1 1 180118 627 0.00 2019-12-01 14:57:39 2019-12-01 15:04:06 t 1 1 180121 220 0.00 2019-12-01 15:05:31 2019-12-01 15:05:31 t 1 1 180124 487 0.00 2019-12-01 14:12:48 2019-12-01 15:06:49 t 1 2 180128 544 0.00 2019-12-01 15:07:21 2019-12-01 15:08:10 t 1 1 180133 562 0.00 2019-12-01 15:07:39 2019-12-01 15:09:48 t 1 1 180138 520 0.00 2019-12-01 15:00:03 2019-12-01 15:12:37 t 1 1 180141 622 0.00 2019-12-01 15:10:04 2019-12-01 15:14:08 t 1 1 180142 635 0.00 2019-12-01 15:10:48 2019-12-01 15:15:13 t 1 1 180143 220 0.00 2019-12-01 14:28:32 2019-12-01 15:15:55 t 1 2 180146 220 0.00 2019-12-01 15:17:51 2019-12-01 15:18:04 t 1 1 180147 562 0.00 2019-12-01 15:18:12 2019-12-01 15:18:44 t 1 1 180150 667 0.00 2019-12-01 15:20:47 2019-12-01 15:21:11 t 1 1 180151 627 0.00 2019-12-01 15:10:45 2019-12-01 15:22:31 t 1 1 180152 220 0.00 2019-12-01 15:22:35 2019-12-01 15:22:56 t 1 1 180156 220 0.00 2019-12-01 15:25:04 2019-12-01 15:25:52 t 1 1 180159 562 0.00 2019-12-01 15:26:34 2019-12-01 15:26:54 t 1 1 180160 220 0.00 2019-12-01 15:26:36 2019-12-01 15:27:49 t 1 1 180162 639 0.00 2019-12-01 15:26:31 2019-12-01 15:28:22 t 1 1 180164 687 0.00 2019-12-01 15:02:11 2019-12-01 15:29:19 t 1 1 180166 639 0.00 2019-12-01 15:29:45 2019-12-01 15:30:05 t 1 1 180173 627 0.00 2019-12-01 15:30:35 2019-12-01 15:33:35 t 1 1 180175 562 0.00 2019-12-01 15:29:33 2019-12-01 15:34:39 t 1 1 180176 639 0.00 2019-12-01 15:34:56 2019-12-01 15:34:56 f 1 1 180177 639 0.00 2019-12-01 15:33:24 2019-12-01 15:35:22 t 1 1 180181 591 0.00 2019-12-01 15:26:43 2019-12-01 15:40:28 t 1 1 180186 544 0.00 2019-12-01 15:43:24 2019-12-01 15:43:58 t 1 1 180187 544 0.00 2019-12-01 15:43:58 2019-12-01 15:44:38 t 1 1 180191 544 0.00 2019-12-01 15:45:07 2019-12-01 15:45:47 t 1 1 180193 622 0.00 2019-12-01 15:14:08 2019-12-01 15:46:16 t 1 1 180198 544 0.00 2019-12-01 15:47:01 2019-12-01 15:47:32 t 1 1 180199 544 0.00 2019-12-01 15:47:32 2019-12-01 15:48:12 t 1 1 180203 544 0.00 2019-12-01 15:49:24 2019-12-01 15:49:59 t 1 1 180207 687 0.00 2019-12-01 15:51:41 2019-12-01 15:51:44 t 1 1 180215 544 0.00 2019-12-01 15:53:55 2019-12-01 15:54:32 t 1 1 180217 562 0.00 2019-12-01 15:54:42 2019-12-01 15:54:57 t 1 1 180223 544 0.00 2019-12-01 15:56:24 2019-12-01 15:57:07 t 1 1 180228 516 0.00 2019-12-01 15:55:30 2019-12-01 15:59:34 t 1 1 180231 544 0.00 2019-12-01 15:59:43 2019-12-01 16:00:18 t 1 1 180233 544 0.00 2019-12-01 16:00:18 2019-12-01 16:01:05 t 1 1 180235 516 0.00 2019-12-01 16:01:05 2019-12-01 16:02:13 t 1 1 180238 622 0.00 2019-12-01 15:46:16 2019-12-01 16:02:53 t 1 1 180247 544 0.00 2019-12-01 16:05:04 2019-12-01 16:05:35 t 1 1 180250 516 0.00 2019-12-01 16:06:06 2019-12-01 16:06:21 t 1 1 180257 516 0.00 2019-12-01 16:09:37 2019-12-01 16:09:46 t 1 1 180262 220 0.00 2019-12-01 15:54:19 2019-12-01 16:11:43 t 1 2 180264 544 0.00 2019-12-01 16:11:51 2019-12-01 16:12:26 t 1 1 180241 544 0.00 2019-12-01 16:03:33 2019-12-01 16:04:08 t 1 1 180242 544 0.00 2019-12-01 16:04:08 2019-12-01 16:04:52 t 1 1 180245 562 0.00 2019-12-01 16:04:59 2019-12-01 16:05:26 t 1 1 180258 544 0.00 2019-12-01 16:09:20 2019-12-01 16:09:55 t 1 1 180260 544 0.00 2019-12-01 16:10:09 2019-12-01 16:10:36 t 1 1 180263 544 0.00 2019-12-01 16:11:08 2019-12-01 16:11:51 t 1 1 180266 622 0.00 2019-12-01 16:06:41 2019-12-01 16:12:57 t 1 1 180268 220 0.00 2019-12-01 16:12:14 2019-12-01 16:13:16 t 1 1 180270 544 0.00 2019-12-01 16:12:53 2019-12-01 16:15:13 t 1 1 180274 622 0.00 2019-12-01 16:12:57 2019-12-01 16:16:18 t 1 1 180275 544 0.00 2019-12-01 16:15:48 2019-12-01 16:16:30 t 1 1 180286 544 0.00 2019-12-01 16:20:32 2019-12-01 16:20:32 f 1 2 180287 562 0.00 2019-12-01 16:23:16 2019-12-01 16:23:37 t 1 1 180289 544 0.00 2019-12-01 16:23:50 2019-12-01 16:25:10 t 1 1 180291 516 0.00 2019-12-01 16:22:02 2019-12-01 16:25:54 t 1 1 180293 544 0.00 2019-12-01 16:26:04 2019-12-01 16:26:42 t 1 1 180295 220 0.00 2019-12-01 16:27:19 2019-12-01 16:27:19 t 1 1 180299 671 0.00 2019-12-01 16:24:50 2019-12-01 16:28:56 t 1 1 180304 544 0.00 2019-12-01 16:30:33 2019-12-01 16:31:18 t 1 1 180309 516 0.00 2019-12-01 16:31:36 2019-12-01 16:32:05 t 1 1 180310 591 0.00 2019-12-01 15:42:40 2019-12-01 16:32:14 t 1 1 180313 544 0.00 2019-12-01 16:32:36 2019-12-01 16:33:07 t 1 1 180316 544 0.00 2019-12-01 16:33:07 2019-12-01 16:33:50 t 1 1 180324 516 0.00 2019-12-01 16:35:38 2019-12-01 16:35:43 t 1 1 180328 544 0.00 2019-12-01 16:36:21 2019-12-01 16:36:59 t 1 1 180330 544 0.00 2019-12-01 16:36:59 2019-12-01 16:37:40 t 1 1 180334 544 0.00 2019-12-01 16:37:39 2019-12-01 16:38:27 t 1 1 180337 544 0.00 2019-12-01 16:38:26 2019-12-01 16:39:05 t 1 1 180338 581 0.00 2019-12-01 16:37:39 2019-12-01 16:39:22 t 1 1 180340 687 0.00 2019-12-01 16:17:17 2019-12-01 16:39:41 t 1 1 180345 581 0.00 2019-12-01 16:39:35 2019-12-01 16:40:36 t 1 1 180347 544 0.00 2019-12-01 16:40:29 2019-12-01 16:41:50 t 1 1 180351 430 0.00 2019-12-01 16:43:02 2019-12-01 16:43:02 f 1 1 180353 591 0.00 2019-12-01 16:32:14 2019-12-01 16:43:16 t 1 1 180354 220 0.00 2019-12-01 16:41:10 2019-12-01 16:43:22 t 1 1 180358 544 0.00 2019-12-01 16:44:48 2019-12-01 16:45:02 t 1 1 180362 615 0.00 2019-12-01 16:25:35 2019-12-01 16:46:43 t 1 1 180363 544 0.00 2019-12-01 16:46:15 2019-12-01 16:46:55 t 1 1 180365 498 0.00 2019-12-01 15:31:24 2019-12-01 16:47:16 t 1 2 180367 544 0.00 2019-12-01 16:47:28 2019-12-01 16:48:12 t 1 1 180368 591 0.00 2019-12-01 16:47:11 2019-12-01 16:48:27 t 1 1 180369 544 0.00 2019-12-01 16:48:11 2019-12-01 16:48:44 t 1 1 180374 611 0.00 2019-12-01 16:41:51 2019-12-01 16:50:34 t 1 1 180383 562 0.00 2019-12-01 16:55:35 2019-12-01 16:56:17 t 1 1 180389 512 0.00 2019-12-01 16:56:35 2019-12-01 16:58:43 t 1 1 180393 631 0.00 2019-12-01 17:00:48 2019-12-01 17:00:54 t 1 1 180396 562 0.00 2019-12-01 16:59:11 2019-12-01 17:03:11 t 1 1 180398 622 0.00 2019-12-01 16:59:55 2019-12-01 17:04:07 t 1 1 180404 520 0.00 2019-12-01 17:05:13 2019-12-01 17:07:24 t 1 1 180407 514 0.00 2019-12-01 16:07:54 2019-12-01 17:09:37 t 1 1 180409 220 0.00 2019-12-01 17:10:44 2019-12-01 17:11:08 t 1 1 180413 562 0.00 2019-12-01 17:16:34 2019-12-01 17:16:44 t 1 1 180419 562 0.00 2019-12-01 17:16:52 2019-12-01 17:21:11 t 1 1 180421 578 0.00 2019-12-01 17:06:23 2019-12-01 17:24:04 t 1 1 180422 665 0.00 2019-12-01 16:58:09 2019-12-01 17:24:17 t 1 1 180423 591 0.00 2019-12-01 16:56:19 2019-12-01 17:25:48 t 1 1 180425 665 0.00 2019-12-01 17:24:16 2019-12-01 17:26:00 t 1 1 180427 665 0.00 2019-12-01 17:26:00 2019-12-01 17:27:27 t 1 1 180430 611 0.00 2019-12-01 17:20:17 2019-12-01 17:29:17 t 1 1 180434 562 0.00 2019-12-01 17:30:36 2019-12-01 17:30:47 t 1 1 180436 562 0.00 2019-12-01 17:31:13 2019-12-01 17:31:22 t 1 1 180438 220 0.00 2019-12-01 17:23:33 2019-12-01 17:31:39 t 1 1 180443 220 0.00 2019-12-01 17:08:49 2019-12-01 17:33:46 t 1 2 180444 687 0.00 2019-12-01 17:27:52 2019-12-01 17:35:06 t 1 1 180445 631 0.00 2019-12-01 17:35:14 2019-12-01 17:35:14 t 1 1 180446 516 0.00 2019-12-01 17:32:53 2019-12-01 17:35:44 t 1 1 180450 622 0.00 2019-12-01 17:18:34 2019-12-01 17:40:21 t 1 1 180452 220 0.00 2019-12-01 17:41:11 2019-12-01 17:41:11 t 1 1 180454 490 0.00 2019-12-01 17:40:47 2019-12-01 17:41:13 t 1 1 180456 631 0.00 2019-12-01 17:45:19 2019-12-01 17:45:20 t 1 1 180459 689 0.00 2019-12-01 17:42:36 2019-12-01 17:46:08 t 1 1 180461 611 0.00 2019-12-01 17:38:40 2019-12-01 17:47:23 t 1 1 180463 637 0.00 2019-12-01 17:11:55 2019-12-01 17:47:38 t 1 1 180468 220 0.00 2019-12-01 17:51:26 2019-12-01 17:51:43 t 1 1 180471 637 0.00 2019-12-01 17:47:47 2019-12-01 17:53:03 t 1 1 180472 220 0.00 2019-12-01 17:52:19 2019-12-01 17:54:25 t 1 1 180474 220 0.00 2019-12-01 16:50:53 2019-12-01 17:55:17 t 1 2 180475 687 0.00 2019-12-01 17:45:44 2019-12-01 17:55:26 t 1 1 180476 538 0.00 2019-12-01 17:33:16 2019-12-01 17:55:32 t 1 1 180480 671 0.00 2019-12-01 17:45:24 2019-12-01 17:57:42 t 1 1 180482 687 0.00 2019-12-01 17:55:46 2019-12-01 17:58:42 t 1 1 180484 631 0.00 2019-12-01 17:59:10 2019-12-01 17:59:16 t 1 1 180486 514 0.00 2019-12-01 17:09:37 2019-12-01 17:59:55 t 1 1 180488 220 0.00 2019-12-01 18:00:07 2019-12-01 18:00:27 t 1 1 180492 485 0.00 2019-12-01 18:01:11 2019-12-01 18:02:36 t 1 1 180494 566 0.00 2019-12-01 17:56:50 2019-12-01 18:02:52 t 1 1 180502 544 0.00 2019-12-01 17:55:28 2019-12-01 18:08:55 t 1 1 180508 554 0.00 2019-12-01 18:10:04 2019-12-01 18:10:04 f 1 1 180510 514 0.00 2019-12-01 17:59:55 2019-12-01 18:11:54 t 1 1 180512 220 0.00 2019-12-01 18:12:59 2019-12-01 18:13:07 t 1 1 180516 220 0.00 2019-12-01 18:18:00 2019-12-01 18:18:19 t 1 1 180518 687 0.00 2019-12-01 18:15:56 2019-12-01 18:18:55 t 1 1 180520 562 0.00 2019-12-01 18:17:49 2019-12-01 18:21:08 t 1 1 180521 220 0.00 2019-12-01 18:21:12 2019-12-01 18:21:36 t 1 1 180522 562 0.00 2019-12-01 18:21:39 2019-12-01 18:22:20 t 1 1 180523 220 0.00 2019-12-01 18:26:00 2019-12-01 18:26:33 t 1 1 180528 220 0.00 2019-12-01 18:27:45 2019-12-01 18:27:49 t 1 1 180530 615 0.00 2019-12-01 18:25:14 2019-12-01 18:34:18 t 1 1 180532 516 0.00 2019-12-01 18:34:21 2019-12-01 18:35:07 t 1 1 180535 516 0.00 2019-12-01 18:35:18 2019-12-01 18:35:56 t 1 1 180536 516 0.00 2019-12-01 18:36:23 2019-12-01 18:37:16 t 1 1 180539 615 0.00 2019-12-01 18:34:18 2019-12-01 18:38:10 t 1 1 180541 562 0.00 2019-12-01 18:22:41 2019-12-01 18:39:15 t 1 1 180543 514 0.00 2019-12-01 18:11:54 2019-12-01 18:43:17 t 1 1 180547 220 0.00 2019-12-01 18:48:37 2019-12-01 18:48:42 t 1 1 180551 637 0.00 2019-12-01 18:19:30 2019-12-01 18:51:08 t 1 1 180553 681 0.00 2019-12-01 09:11:19 2019-12-01 18:53:44 t 1 1 180243 544 0.00 2019-12-01 16:04:51 2019-12-01 16:04:54 t 1 1 180244 544 0.00 2019-12-01 16:04:54 2019-12-01 16:05:05 t 1 1 180246 516 0.00 2019-12-01 16:05:29 2019-12-01 16:05:32 t 1 1 180248 220 0.00 2019-12-01 16:05:22 2019-12-01 16:05:36 t 1 1 180249 544 0.00 2019-12-01 16:05:35 2019-12-01 16:06:08 t 1 1 180251 622 0.00 2019-12-01 16:02:53 2019-12-01 16:06:41 t 1 1 180252 544 0.00 2019-12-01 16:06:08 2019-12-01 16:06:49 t 1 1 180253 544 0.00 2019-12-01 16:06:49 2019-12-01 16:07:24 t 1 1 180254 544 0.00 2019-12-01 16:07:23 2019-12-01 16:08:06 t 1 1 180255 544 0.00 2019-12-01 16:08:06 2019-12-01 16:08:41 t 1 1 180256 544 0.00 2019-12-01 16:08:41 2019-12-01 16:09:20 t 1 1 180259 544 0.00 2019-12-01 16:09:55 2019-12-01 16:10:09 t 1 1 180261 544 0.00 2019-12-01 16:10:36 2019-12-01 16:11:08 t 1 1 180265 544 0.00 2019-12-01 16:12:26 2019-12-01 16:12:53 t 1 1 180267 516 0.00 2019-12-01 16:12:34 2019-12-01 16:13:16 t 1 1 180273 562 0.00 2019-12-01 16:15:48 2019-12-01 16:16:08 t 1 1 180276 544 0.00 2019-12-01 16:16:30 2019-12-01 16:16:47 t 1 1 180278 615 0.00 2019-12-01 16:01:23 2019-12-01 16:17:14 t 1 1 180279 520 0.00 2019-12-01 15:52:54 2019-12-01 16:17:22 t 1 1 180285 562 0.00 2019-12-01 16:18:39 2019-12-01 16:19:59 t 1 1 180288 544 0.00 2019-12-01 16:19:22 2019-12-01 16:23:50 t 1 1 180290 220 0.00 2019-12-01 16:25:33 2019-12-01 16:25:49 t 1 1 180292 544 0.00 2019-12-01 16:25:09 2019-12-01 16:26:07 t 1 1 180296 544 0.00 2019-12-01 16:26:42 2019-12-01 16:27:45 t 1 1 180297 544 0.00 2019-12-01 16:27:44 2019-12-01 16:28:19 t 1 1 180300 544 0.00 2019-12-01 16:28:41 2019-12-01 16:29:17 t 1 1 180301 544 0.00 2019-12-01 16:29:16 2019-12-01 16:30:00 t 1 1 180305 220 0.00 2019-12-01 16:30:25 2019-12-01 16:31:25 t 1 1 180308 611 0.00 2019-12-01 16:17:37 2019-12-01 16:31:55 t 1 1 180311 544 0.00 2019-12-01 16:31:53 2019-12-01 16:32:36 t 1 1 180314 581 0.00 2019-12-01 16:33:08 2019-12-01 16:33:08 f 1 1 180317 581 0.00 2019-12-01 16:34:00 2019-12-01 16:34:00 f 1 1 180318 544 0.00 2019-12-01 16:33:49 2019-12-01 16:34:24 t 1 1 180321 516 0.00 2019-12-01 16:34:48 2019-12-01 16:35:16 t 1 1 180326 675 0.00 2019-12-01 16:35:00 2019-12-01 16:36:39 t 1 1 180331 581 0.00 2019-12-01 16:37:52 2019-12-01 16:37:52 f 1 1 180336 637 0.00 2019-12-01 16:17:03 2019-12-01 16:38:35 t 1 1 180339 581 0.00 2019-12-01 16:39:17 2019-12-01 16:39:35 t 1 1 180341 562 0.00 2019-12-01 16:38:45 2019-12-01 16:39:47 t 1 1 180343 665 0.00 2019-12-01 16:27:32 2019-12-01 16:40:27 t 1 1 180344 544 0.00 2019-12-01 16:39:51 2019-12-01 16:40:30 t 1 1 180346 220 0.00 2019-12-01 16:40:44 2019-12-01 16:40:53 t 1 1 180348 611 0.00 2019-12-01 16:40:28 2019-12-01 16:41:51 t 1 1 180349 544 0.00 2019-12-01 16:41:50 2019-12-01 16:42:27 t 1 1 180352 665 0.00 2019-12-01 16:40:27 2019-12-01 16:43:13 t 1 1 180355 544 0.00 2019-12-01 16:43:01 2019-12-01 16:43:39 t 1 1 180360 220 0.00 2019-12-01 16:12:47 2019-12-01 16:46:08 t 1 2 180364 591 0.00 2019-12-01 16:43:16 2019-12-01 16:47:12 t 1 1 180370 562 0.00 2019-12-01 16:48:51 2019-12-01 16:48:59 t 1 1 180371 544 0.00 2019-12-01 16:48:43 2019-12-01 16:49:21 t 1 1 180372 544 0.00 2019-12-01 16:49:21 2019-12-01 16:49:54 t 1 1 180376 667 0.00 2019-12-01 16:49:42 2019-12-01 16:50:47 t 1 2 180378 220 0.00 2019-12-01 16:51:33 2019-12-01 16:51:52 t 1 1 180381 220 0.00 2019-12-01 16:52:07 2019-12-01 16:55:01 t 1 1 180384 656 0.00 2019-12-01 16:03:38 2019-12-01 16:57:52 t 1 1 180386 615 0.00 2019-12-01 16:46:43 2019-12-01 16:58:13 t 1 1 180388 220 0.00 2019-12-01 16:55:47 2019-12-01 16:58:35 t 1 1 180395 611 0.00 2019-12-01 16:50:34 2019-12-01 17:02:44 t 1 1 180397 637 0.00 2019-12-01 16:51:12 2019-12-01 17:03:33 t 1 1 180400 687 0.00 2019-12-01 16:39:41 2019-12-01 17:06:10 t 1 1 180401 578 0.00 2019-12-01 14:35:00 2019-12-01 17:06:23 t 1 1 180402 544 0.00 2019-12-01 16:50:31 2019-12-01 17:07:15 t 1 1 180412 622 0.00 2019-12-01 17:04:38 2019-12-01 17:15:27 t 1 1 180414 220 0.00 2019-12-01 17:16:12 2019-12-01 17:17:13 t 1 1 180415 625 0.00 2019-12-01 16:59:37 2019-12-01 17:18:32 t 1 1 180418 220 0.00 2019-12-01 17:20:28 2019-12-01 17:20:30 t 1 1 180420 675 0.00 2019-12-01 17:17:33 2019-12-01 17:21:55 t 1 1 180431 591 0.00 2019-12-01 17:27:10 2019-12-01 17:29:26 t 1 1 180435 611 0.00 2019-12-01 17:29:16 2019-12-01 17:31:06 t 1 1 180437 631 0.00 2019-12-01 17:31:14 2019-12-01 17:31:36 t 1 1 180440 562 0.00 2019-12-01 17:32:27 2019-12-01 17:32:48 t 1 1 180441 538 0.00 2019-12-01 17:17:36 2019-12-01 17:33:16 t 1 1 180442 220 0.00 2019-12-01 17:33:23 2019-12-01 17:33:25 t 1 1 180451 220 0.00 2019-12-01 17:40:07 2019-12-01 17:40:21 t 1 1 180453 562 0.00 2019-12-01 17:40:35 2019-12-01 17:41:13 t 1 1 180455 675 0.00 2019-12-01 17:41:14 2019-12-01 17:43:22 t 1 1 180457 687 0.00 2019-12-01 17:35:06 2019-12-01 17:45:44 t 1 1 180458 220 0.00 2019-12-01 17:45:54 2019-12-01 17:46:07 t 1 1 180464 490 0.00 2019-12-01 17:41:13 2019-12-01 17:50:14 t 1 1 180465 622 0.00 2019-12-01 17:40:21 2019-12-01 17:51:02 t 1 1 180470 615 0.00 2019-12-01 17:47:27 2019-12-01 17:52:50 t 1 1 180473 528 0.00 2019-12-01 17:44:27 2019-12-01 17:55:08 t 1 1 180477 687 0.00 2019-12-01 17:55:42 2019-12-01 17:55:43 t 1 1 180478 490 0.00 2019-12-01 17:54:24 2019-12-01 17:56:33 t 1 1 180485 562 0.00 2019-12-01 17:54:10 2019-12-01 17:59:26 t 1 1 180487 485 0.00 2019-12-01 17:53:06 2019-12-01 18:00:01 t 1 1 180489 675 0.00 2019-12-01 17:55:30 2019-12-01 18:00:37 t 1 1 180491 645 0.00 2019-12-01 17:54:41 2019-12-01 18:02:29 t 1 1 180495 503 0.00 2019-12-01 18:01:45 2019-12-01 18:03:58 t 1 1 180496 611 0.00 2019-12-01 17:51:52 2019-12-01 18:04:24 t 1 1 180498 631 0.00 2019-12-01 18:04:09 2019-12-01 18:05:31 t 1 1 180503 631 0.00 2019-12-01 18:08:00 2019-12-01 18:09:00 t 1 1 180506 562 0.00 2019-12-01 18:08:30 2019-12-01 18:09:31 t 1 1 180513 631 0.00 2019-12-01 18:12:25 2019-12-01 18:14:02 t 1 1 180517 627 0.00 2019-12-01 18:17:40 2019-12-01 18:18:52 t 1 1 180525 544 0.00 2019-12-01 18:08:55 2019-12-01 18:26:57 t 1 1 180526 220 0.00 2019-12-01 18:27:06 2019-12-01 18:27:10 t 1 1 180527 220 0.00 2019-12-01 18:27:10 2019-12-01 18:27:45 t 1 1 180531 545 0.00 2019-12-01 18:24:57 2019-12-01 18:34:42 t 1 1 180534 689 0.00 2019-12-01 18:31:44 2019-12-01 18:35:47 t 1 1 180540 220 0.00 2019-12-01 18:38:09 2019-12-01 18:39:09 t 1 1 180544 562 0.00 2019-12-01 18:44:50 2019-12-01 18:45:14 t 1 1 180545 578 0.00 2019-12-01 17:24:04 2019-12-01 18:46:34 t 1 1 180549 220 0.00 2019-12-01 18:49:08 2019-12-01 18:49:38 t 1 1 180552 516 0.00 2019-12-01 18:50:24 2019-12-01 18:53:24 t 1 1 180554 689 0.00 2019-12-01 18:50:05 2019-12-01 18:55:51 t 1 1 180558 660 0.00 2019-12-01 18:09:08 2019-12-01 18:56:51 t 1 1 180269 687 0.00 2019-12-01 15:52:17 2019-12-01 16:15:11 t 1 1 180271 637 0.00 2019-12-01 16:00:14 2019-12-01 16:15:32 t 1 1 180272 544 0.00 2019-12-01 16:15:12 2019-12-01 16:15:49 t 1 1 180277 687 0.00 2019-12-01 16:15:21 2019-12-01 16:17:09 t 1 1 180280 544 0.00 2019-12-01 16:16:47 2019-12-01 16:17:27 t 1 1 180281 544 0.00 2019-12-01 16:17:27 2019-12-01 16:18:09 t 1 1 180282 220 0.00 2019-12-01 16:18:13 2019-12-01 16:18:23 t 1 1 180283 544 0.00 2019-12-01 16:18:08 2019-12-01 16:18:48 t 1 1 180284 544 0.00 2019-12-01 16:18:47 2019-12-01 16:19:22 t 1 1 180294 220 0.00 2019-12-01 16:26:38 2019-12-01 16:26:52 t 1 1 180298 544 0.00 2019-12-01 16:28:19 2019-12-01 16:28:42 t 1 1 180302 544 0.00 2019-12-01 16:29:55 2019-12-01 16:30:33 t 1 1 180303 516 0.00 2019-12-01 16:27:40 2019-12-01 16:30:41 t 1 1 180306 671 0.00 2019-12-01 16:28:56 2019-12-01 16:31:33 t 1 1 180307 544 0.00 2019-12-01 16:31:18 2019-12-01 16:31:53 t 1 1 180312 581 0.00 2019-12-01 16:32:38 2019-12-01 16:32:38 f 1 1 180315 516 0.00 2019-12-01 16:32:27 2019-12-01 16:33:41 t 1 1 180319 581 0.00 2019-12-01 16:34:35 2019-12-01 16:34:35 f 1 1 180320 544 0.00 2019-12-01 16:34:24 2019-12-01 16:35:08 t 1 1 180322 544 0.00 2019-12-01 16:35:08 2019-12-01 16:35:34 t 1 1 180323 544 0.00 2019-12-01 16:35:34 2019-12-01 16:35:42 t 1 1 180325 544 0.00 2019-12-01 16:35:42 2019-12-01 16:36:24 t 1 1 180327 562 0.00 2019-12-01 16:35:44 2019-12-01 16:36:55 t 1 1 180329 516 0.00 2019-12-01 16:36:52 2019-12-01 16:37:00 t 1 1 180332 581 0.00 2019-12-01 16:38:00 2019-12-01 16:38:00 f 1 1 180333 562 0.00 2019-12-01 16:38:07 2019-12-01 16:38:19 t 1 1 180335 581 0.00 2019-12-01 16:37:18 2019-12-01 16:38:29 t 1 1 180342 544 0.00 2019-12-01 16:39:05 2019-12-01 16:39:51 t 1 1 180350 544 0.00 2019-12-01 16:42:26 2019-12-01 16:43:01 t 1 1 180356 544 0.00 2019-12-01 16:43:39 2019-12-01 16:44:09 t 1 1 180357 544 0.00 2019-12-01 16:44:09 2019-12-01 16:44:52 t 1 1 180359 544 0.00 2019-12-01 16:45:02 2019-12-01 16:45:40 t 1 1 180361 544 0.00 2019-12-01 16:45:40 2019-12-01 16:46:16 t 1 1 180366 544 0.00 2019-12-01 16:46:55 2019-12-01 16:47:29 t 1 1 180373 544 0.00 2019-12-01 16:49:54 2019-12-01 16:50:32 t 1 1 180375 631 0.00 2019-12-01 16:50:10 2019-12-01 16:50:41 t 1 1 180377 220 0.00 2019-12-01 16:48:37 2019-12-01 16:51:33 t 1 1 180379 631 0.00 2019-12-01 16:51:53 2019-12-01 16:52:02 t 1 1 180380 631 0.00 2019-12-01 16:54:35 2019-12-01 16:54:38 t 1 1 180382 220 0.00 2019-12-01 16:55:04 2019-12-01 16:55:44 t 1 1 180385 665 0.00 2019-12-01 16:43:13 2019-12-01 16:58:09 t 1 1 180387 220 0.00 2019-12-01 16:56:54 2019-12-01 16:58:22 t 1 1 180390 516 0.00 2019-12-01 16:38:49 2019-12-01 16:58:54 t 1 1 180391 625 0.00 2019-12-01 16:57:48 2019-12-01 16:59:36 t 1 1 180392 631 0.00 2019-12-01 16:59:39 2019-12-01 16:59:42 t 1 1 180394 485 0.00 2019-12-01 16:48:20 2019-12-01 17:01:02 t 1 1 180399 631 0.00 2019-12-01 17:04:46 2019-12-01 17:04:47 t 1 1 180403 220 0.00 2019-12-01 17:07:01 2019-12-01 17:07:16 t 1 1 180405 656 0.00 2019-12-01 16:57:52 2019-12-01 17:07:53 t 1 1 180406 562 0.00 2019-12-01 17:08:17 2019-12-01 17:08:58 t 1 1 180408 631 0.00 2019-12-01 17:08:06 2019-12-01 17:10:37 t 1 1 180410 220 0.00 2019-12-01 16:35:42 2019-12-01 17:13:11 t 1 2 180411 611 0.00 2019-12-01 17:02:44 2019-12-01 17:14:18 t 1 1 180416 622 0.00 2019-12-01 17:17:26 2019-12-01 17:18:34 t 1 1 180417 611 0.00 2019-12-01 17:14:18 2019-12-01 17:20:17 t 1 1 180424 631 0.00 2019-12-01 17:24:58 2019-12-01 17:25:59 t 1 1 180426 544 0.00 2019-12-01 17:07:15 2019-12-01 17:26:16 t 1 1 180428 687 0.00 2019-12-01 17:06:10 2019-12-01 17:27:52 t 1 1 180429 615 0.00 2019-12-01 17:26:26 2019-12-01 17:28:54 t 1 1 180432 631 0.00 2019-12-01 17:29:51 2019-12-01 17:30:14 t 1 1 180433 485 0.00 2019-12-01 17:25:29 2019-12-01 17:30:31 t 1 1 180439 562 0.00 2019-12-01 17:31:30 2019-12-01 17:31:51 t 1 1 180447 562 0.00 2019-12-01 17:34:53 2019-12-01 17:36:01 t 1 1 180448 591 0.00 2019-12-01 17:32:15 2019-12-01 17:37:20 t 1 1 180449 611 0.00 2019-12-01 17:31:06 2019-12-01 17:38:40 t 1 1 180460 562 0.00 2019-12-01 17:45:16 2019-12-01 17:46:10 t 1 1 180462 220 0.00 2019-12-01 17:46:25 2019-12-01 17:47:26 t 1 1 180466 562 0.00 2019-12-01 17:48:13 2019-12-01 17:51:14 t 1 1 180467 611 0.00 2019-12-01 17:47:23 2019-12-01 17:51:33 t 1 1 180469 220 0.00 2019-12-01 17:51:43 2019-12-01 17:52:19 t 1 1 180479 220 0.00 2019-12-01 17:56:48 2019-12-01 17:57:27 t 1 1 180481 631 0.00 2019-12-01 17:57:23 2019-12-01 17:57:46 t 1 1 180483 671 0.00 2019-12-01 17:57:42 2019-12-01 17:59:10 t 1 1 180490 631 0.00 2019-12-01 18:00:27 2019-12-01 18:02:22 t 1 1 180493 622 0.00 2019-12-01 17:51:02 2019-12-01 18:02:45 t 1 1 180497 562 0.00 2019-12-01 18:04:51 2019-12-01 18:05:29 t 1 1 180499 220 0.00 2019-12-01 18:06:07 2019-12-01 18:06:14 t 1 1 180500 631 0.00 2019-12-01 18:07:24 2019-12-01 18:07:36 t 1 1 180501 220 0.00 2019-12-01 18:06:34 2019-12-01 18:08:22 t 1 1 180504 660 0.00 2019-12-01 18:06:15 2019-12-01 18:09:09 t 1 1 180505 554 0.00 2019-12-01 18:09:29 2019-12-01 18:09:29 f 1 1 180507 554 0.00 2019-12-01 18:09:45 2019-12-01 18:09:45 f 1 1 180509 631 0.00 2019-12-01 18:10:37 2019-12-01 18:10:59 t 1 1 180511 622 0.00 2019-12-01 18:02:46 2019-12-01 18:12:33 t 1 1 180514 637 0.00 2019-12-01 18:04:29 2019-12-01 18:15:23 t 1 1 180515 562 0.00 2019-12-01 18:16:01 2019-12-01 18:16:11 t 1 1 180519 220 0.00 2019-12-01 16:47:23 2019-12-01 18:18:55 t 1 2 180524 220 0.00 2019-12-01 18:26:33 2019-12-01 18:26:47 t 1 1 180529 679 0.00 2019-12-01 18:31:48 2019-12-01 18:33:19 t 1 1 180533 667 0.00 2019-12-01 18:33:43 2019-12-01 18:35:21 t 1 1 180537 220 0.00 2019-12-01 18:34:20 2019-12-01 18:37:16 t 1 1 180538 220 0.00 2019-12-01 18:37:42 2019-12-01 18:37:51 t 1 1 180542 516 0.00 2019-12-01 18:41:11 2019-12-01 18:41:52 t 1 1 180546 481 0.00 2019-12-01 16:14:09 2019-12-01 18:47:28 t 1 1 180548 220 0.00 2019-12-01 18:48:42 2019-12-01 18:48:51 t 1 1 180550 538 0.00 2019-12-01 18:41:49 2019-12-01 18:50:19 t 1 1 180557 516 0.00 2019-12-01 18:55:48 2019-12-01 18:56:33 t 1 1 180560 607 0.00 2019-12-01 18:50:22 2019-12-01 18:57:05 t 1 1 180562 622 0.00 2019-12-01 18:14:28 2019-12-01 18:57:37 t 1 1 180564 562 0.00 2019-12-01 18:58:25 2019-12-01 18:58:45 t 1 1 180567 675 0.00 2019-12-01 18:45:16 2019-12-01 19:00:07 t 1 1 180569 591 0.00 2019-12-01 18:58:54 2019-12-01 19:00:45 t 1 1 180573 622 0.00 2019-12-01 18:57:37 2019-12-01 19:07:07 t 1 1 180576 516 0.00 2019-12-01 19:04:15 2019-12-01 19:08:06 t 1 1 180577 691 0.00 2019-12-01 19:07:48 2019-12-01 19:08:30 t 1 1 180582 581 0.00 2019-12-01 19:12:22 2019-12-01 19:15:48 t 1 1 180587 514 0.00 2019-12-01 19:17:12 2019-12-01 19:18:20 t 1 1 180555 562 0.00 2019-12-01 18:55:36 2019-12-01 18:56:00 t 1 1 180556 645 0.00 2019-12-01 18:52:20 2019-12-01 18:56:32 t 1 1 180559 689 0.00 2019-12-01 18:56:03 2019-12-01 18:56:54 t 1 1 180565 220 0.00 2019-12-01 18:49:38 2019-12-01 18:59:41 t 1 1 180568 220 0.00 2019-12-01 19:00:07 2019-12-01 19:00:33 t 1 1 180570 528 0.00 2019-12-01 18:24:54 2019-12-01 19:01:00 t 1 1 180571 514 0.00 2019-12-01 18:43:17 2019-12-01 19:01:33 t 1 1 180572 514 0.00 2019-12-01 19:01:33 2019-12-01 19:02:54 t 1 1 180581 591 0.00 2019-12-01 19:07:42 2019-12-01 19:11:33 t 1 1 180589 691 0.00 2019-12-01 19:08:30 2019-12-01 19:19:58 t 1 1 180592 514 0.00 2019-12-01 19:21:03 2019-12-01 19:21:37 t 1 1 180600 566 0.00 2019-12-01 18:16:39 2019-12-01 19:27:04 t 1 1 180601 687 0.00 2019-12-01 19:18:30 2019-12-01 19:27:11 t 1 1 180605 667 0.00 2019-12-01 19:26:44 2019-12-01 19:29:05 t 1 1 180610 691 0.00 2019-12-01 19:27:46 2019-12-01 19:29:42 t 1 1 180611 687 0.00 2019-12-01 19:29:56 2019-12-01 19:31:23 t 1 1 180617 220 0.00 2019-12-01 19:23:08 2019-12-01 19:33:39 t 1 1 180621 451 0.00 2019-12-01 19:21:32 2019-12-01 19:34:38 t 1 1 180623 673 0.00 2019-12-01 19:27:30 2019-12-01 19:34:59 t 1 1 180625 545 0.00 2019-12-01 19:33:47 2019-12-01 19:37:16 t 1 1 180627 635 0.00 2019-12-01 19:37:12 2019-12-01 19:37:58 t 1 1 180628 622 0.00 2019-12-01 19:07:07 2019-12-01 19:38:47 t 1 1 180634 566 0.00 2019-12-01 19:27:04 2019-12-01 19:39:28 t 1 1 180637 220 0.00 2019-12-01 19:41:11 2019-12-01 19:41:12 t 1 1 180639 637 0.00 2019-12-01 19:41:21 2019-12-01 19:42:31 t 1 1 180640 691 0.00 2019-12-01 19:37:23 2019-12-01 19:43:37 t 1 1 180644 528 0.00 2019-12-01 19:01:00 2019-12-01 19:45:04 t 1 1 180645 451 0.00 2019-12-01 19:34:38 2019-12-01 19:45:25 t 1 1 180650 656 0.00 2019-12-01 17:07:56 2019-12-01 19:47:16 t 1 1 180651 687 0.00 2019-12-01 19:44:16 2019-12-01 19:47:18 t 1 1 180653 566 0.00 2019-12-01 19:39:28 2019-12-01 19:48:17 t 1 1 180654 649 0.00 2019-12-01 19:39:02 2019-12-01 19:48:39 t 1 1 180657 627 0.00 2019-12-01 19:47:31 2019-12-01 19:49:27 t 1 1 180661 220 0.00 2019-12-01 19:50:17 2019-12-01 19:50:52 t 1 1 180664 220 0.00 2019-12-01 19:51:34 2019-12-01 19:51:44 t 1 1 180669 691 0.00 2019-12-01 19:47:56 2019-12-01 19:52:16 t 1 1 180672 220 0.00 2019-12-01 19:52:46 2019-12-01 19:52:57 t 1 1 180675 683 0.00 2019-12-01 19:39:53 2019-12-01 19:56:04 t 1 1 180677 220 0.00 2019-12-01 19:56:12 2019-12-01 19:56:13 t 1 1 180682 631 0.00 2019-12-01 19:55:22 2019-12-01 20:01:18 t 1 1 180684 451 0.00 2019-12-01 19:45:25 2019-12-01 20:02:37 t 1 1 180687 220 0.00 2019-12-01 20:02:50 2019-12-01 20:02:55 t 1 1 180691 451 0.00 2019-12-01 20:02:37 2019-12-01 20:05:40 t 1 1 180693 520 0.00 2019-12-01 19:47:17 2019-12-01 20:06:02 t 1 1 180695 656 0.00 2019-12-01 20:05:42 2019-12-01 20:08:07 t 1 1 180699 220 0.00 2019-12-01 20:09:09 2019-12-01 20:09:37 t 1 1 180705 220 0.00 2019-12-01 20:10:29 2019-12-01 20:12:09 t 1 1 180706 488 0.00 2019-12-01 20:12:52 2019-12-01 20:12:52 f 1 1 180707 488 0.00 2019-12-01 20:12:59 2019-12-01 20:12:59 f 1 1 180711 637 0.00 2019-12-01 20:15:36 2019-12-01 20:16:44 t 1 1 180722 615 0.00 2019-12-01 20:28:06 2019-12-01 20:29:53 t 1 1 180724 220 0.00 2019-12-01 20:30:18 2019-12-01 20:30:38 t 1 1 180730 516 0.00 2019-12-01 20:40:20 2019-12-01 20:40:25 t 1 1 180732 578 0.00 2019-12-01 20:19:41 2019-12-01 20:42:22 t 1 1 180734 675 0.00 2019-12-01 20:41:00 2019-12-01 20:45:18 t 1 1 180736 220 0.00 2019-12-01 20:39:31 2019-12-01 20:47:21 t 1 1 180740 514 0.00 2019-12-01 19:37:55 2019-12-01 20:48:30 t 1 1 180741 687 0.00 2019-12-01 20:28:48 2019-12-01 20:49:14 t 1 1 180742 512 0.00 2019-12-01 20:40:41 2019-12-01 20:49:42 t 1 1 180744 645 0.00 2019-12-01 20:31:48 2019-12-01 20:52:16 t 1 1 180751 451 0.00 2019-12-01 20:05:40 2019-12-01 20:58:37 t 1 1 180753 566 0.00 2019-12-01 20:57:01 2019-12-01 21:00:09 t 1 1 180754 220 0.00 2019-12-01 20:58:31 2019-12-01 21:00:23 t 1 1 180759 220 0.00 2019-12-01 21:02:26 2019-12-01 21:02:41 t 1 1 180760 220 0.00 2019-12-01 21:02:52 2019-12-01 21:03:53 t 1 1 180762 516 0.00 2019-12-01 21:05:42 2019-12-01 21:07:31 t 1 1 180767 510 0.00 2019-12-01 20:58:06 2019-12-01 21:11:04 t 1 1 180769 625 0.00 2019-12-01 21:10:10 2019-12-01 21:12:00 t 1 1 180776 520 0.00 2019-12-01 21:08:33 2019-12-01 21:14:12 t 1 1 180778 685 0.00 2019-12-01 21:06:08 2019-12-01 21:15:35 t 1 1 180781 687 0.00 2019-12-01 21:14:14 2019-12-01 21:18:23 t 1 1 180782 673 0.00 2019-12-01 21:18:27 2019-12-01 21:20:16 t 1 1 180783 538 0.00 2019-12-01 21:18:47 2019-12-01 21:20:23 t 1 1 180784 687 0.00 2019-12-01 21:18:37 2019-12-01 21:21:20 t 1 1 180786 514 0.00 2019-12-01 21:13:54 2019-12-01 21:21:56 t 1 1 180787 514 0.00 2019-12-01 21:21:55 2019-12-01 21:22:40 t 1 1 180792 692 0.00 2019-12-01 21:26:41 2019-12-01 21:27:17 t 1 1 180795 692 0.00 2019-12-01 21:27:21 2019-12-01 21:28:57 t 1 1 180797 685 0.00 2019-12-01 21:15:35 2019-12-01 21:29:16 t 1 1 180800 611 0.00 2019-12-01 21:27:12 2019-12-01 21:31:18 t 1 1 180803 673 0.00 2019-12-01 21:28:40 2019-12-01 21:33:52 t 1 1 180804 692 0.00 2019-12-01 21:34:14 2019-12-01 21:34:43 t 1 1 180805 611 0.00 2019-12-01 21:31:18 2019-12-01 21:34:50 t 1 1 180809 692 0.00 2019-12-01 21:37:03 2019-12-01 21:37:43 t 1 1 180811 220 0.00 2019-12-01 21:37:34 2019-12-01 21:38:35 t 1 1 180816 625 0.00 2019-12-01 21:41:21 2019-12-01 21:42:58 t 1 1 180817 220 0.00 2019-12-01 21:43:58 2019-12-01 21:44:15 t 1 1 180818 611 0.00 2019-12-01 21:34:49 2019-12-01 21:44:41 t 1 1 180820 220 0.00 2019-12-01 21:44:46 2019-12-01 21:45:02 t 1 1 180822 625 0.00 2019-12-01 21:42:58 2019-12-01 21:46:51 t 1 1 180829 691 0.00 2019-12-01 21:51:08 2019-12-01 21:52:19 t 1 1 180831 656 0.00 2019-12-01 21:15:07 2019-12-01 21:53:37 t 1 1 180837 545 0.00 2019-12-01 20:55:52 2019-12-01 21:56:51 t 1 1 180839 692 0.00 2019-12-01 21:56:53 2019-12-01 21:58:18 t 1 1 180840 631 0.00 2019-12-01 21:57:39 2019-12-01 21:58:26 t 1 1 180843 611 0.00 2019-12-01 21:50:05 2019-12-01 22:00:52 t 1 1 180853 520 0.00 2019-12-01 21:55:34 2019-12-01 22:12:03 t 1 1 180854 625 0.00 2019-12-01 21:58:58 2019-12-01 22:12:44 t 1 1 180855 311 0.00 2019-12-01 21:02:28 2019-12-01 22:14:52 t 1 2 180857 591 0.00 2019-12-01 21:28:17 2019-12-01 22:16:27 t 1 1 180861 691 0.00 2019-12-01 22:10:26 2019-12-01 22:20:08 t 1 1 180864 645 0.00 2019-12-01 22:05:53 2019-12-01 22:24:26 t 1 1 180870 581 0.00 2019-12-01 22:03:44 2019-12-01 22:30:40 t 1 1 180872 566 0.00 2019-12-01 22:07:24 2019-12-01 22:35:49 t 1 1 180873 611 0.00 2019-12-01 22:30:50 2019-12-01 22:36:52 t 1 1 180874 581 0.00 2019-12-01 22:31:01 2019-12-01 22:37:14 t 1 1 180879 514 0.00 2019-12-01 21:22:39 2019-12-01 22:40:20 t 1 1 180561 687 0.00 2019-12-01 18:55:40 2019-12-01 18:57:07 t 1 1 180563 562 0.00 2019-12-01 18:58:25 2019-12-01 18:58:25 t 1 1 180566 220 0.00 2019-12-01 18:59:41 2019-12-01 18:59:51 t 1 1 180574 691 0.00 2019-12-01 19:07:21 2019-12-01 19:07:22 t 1 1 180575 691 0.00 2019-12-01 19:07:25 2019-12-01 19:07:43 t 1 1 180578 637 0.00 2019-12-01 18:59:51 2019-12-01 19:09:00 t 1 1 180579 220 0.00 2019-12-01 19:00:33 2019-12-01 19:10:40 t 1 1 180580 220 0.00 2019-12-01 19:10:39 2019-12-01 19:11:30 t 1 1 180583 689 0.00 2019-12-01 18:58:45 2019-12-01 19:16:16 t 1 1 180584 220 0.00 2019-12-01 19:12:51 2019-12-01 19:16:48 t 1 1 180585 514 0.00 2019-12-01 19:02:54 2019-12-01 19:17:12 t 1 1 180586 220 0.00 2019-12-01 19:17:01 2019-12-01 19:17:54 t 1 1 180588 687 0.00 2019-12-01 19:00:28 2019-12-01 19:18:30 t 1 1 180591 514 0.00 2019-12-01 19:19:30 2019-12-01 19:21:03 t 1 1 180594 220 0.00 2019-12-01 19:22:37 2019-12-01 19:22:46 t 1 1 180595 220 0.00 2019-12-01 19:23:03 2019-12-01 19:23:08 t 1 1 180597 631 0.00 2019-12-01 19:24:43 2019-12-01 19:25:11 t 1 1 180598 675 0.00 2019-12-01 19:14:13 2019-12-01 19:25:54 t 1 1 180602 691 0.00 2019-12-01 19:27:08 2019-12-01 19:27:47 t 1 1 180604 545 0.00 2019-12-01 19:15:34 2019-12-01 19:28:50 t 1 1 180608 667 0.00 2019-12-01 19:29:12 2019-12-01 19:29:34 t 1 1 180613 691 0.00 2019-12-01 19:29:42 2019-12-01 19:31:59 t 1 1 180615 667 0.00 2019-12-01 19:31:33 2019-12-01 19:33:04 t 1 1 180622 675 0.00 2019-12-01 19:31:42 2019-12-01 19:34:50 t 1 1 180629 673 0.00 2019-12-01 19:34:59 2019-12-01 19:39:00 t 1 1 180632 481 0.00 2019-12-01 18:47:28 2019-12-01 19:39:11 t 1 1 180635 627 0.00 2019-12-01 19:37:12 2019-12-01 19:39:30 t 1 1 180643 520 0.00 2019-12-01 19:41:03 2019-12-01 19:44:33 t 1 1 180646 673 0.00 2019-12-01 19:39:00 2019-12-01 19:45:32 t 1 1 180648 622 0.00 2019-12-01 19:38:47 2019-12-01 19:46:09 t 1 1 180649 220 0.00 2019-12-01 19:32:14 2019-12-01 19:47:16 t 1 2 180652 635 0.00 2019-12-01 19:37:58 2019-12-01 19:48:02 t 1 1 180662 673 0.00 2019-12-01 19:45:32 2019-12-01 19:51:28 t 1 1 180663 220 0.00 2019-12-01 19:50:52 2019-12-01 19:51:34 t 1 1 180666 622 0.00 2019-12-01 19:46:09 2019-12-01 19:51:59 t 1 1 180667 430 0.00 2019-12-01 19:52:04 2019-12-01 19:52:04 f 1 1 180668 220 0.00 2019-12-01 19:52:07 2019-12-01 19:52:10 t 1 1 180670 430 0.00 2019-12-01 19:52:16 2019-12-01 19:52:16 f 1 1 180671 220 0.00 2019-12-01 19:52:10 2019-12-01 19:52:46 t 1 1 180673 220 0.00 2019-12-01 19:53:18 2019-12-01 19:53:19 t 1 1 180676 220 0.00 2019-12-01 19:53:19 2019-12-01 19:56:12 t 1 1 180678 687 0.00 2019-12-01 19:54:26 2019-12-01 19:56:25 t 1 1 180679 220 0.00 2019-12-01 19:56:46 2019-12-01 19:58:29 t 1 1 180681 220 0.00 2019-12-01 19:58:29 2019-12-01 20:00:28 t 1 1 180683 687 0.00 2019-12-01 19:56:47 2019-12-01 20:01:23 t 1 1 180685 631 0.00 2019-12-01 20:02:27 2019-12-01 20:02:48 t 1 1 180688 220 0.00 2019-12-01 20:02:54 2019-12-01 20:03:15 t 1 1 180689 220 0.00 2019-12-01 20:03:14 2019-12-01 20:03:40 t 1 1 180690 220 0.00 2019-12-01 20:03:38 2019-12-01 20:04:55 t 1 1 180698 220 0.00 2019-12-01 20:04:55 2019-12-01 20:08:46 t 1 1 180701 220 0.00 2019-12-01 20:09:36 2019-12-01 20:09:49 t 1 1 180703 631 0.00 2019-12-01 20:10:16 2019-12-01 20:10:29 t 1 1 180704 687 0.00 2019-12-01 20:01:31 2019-12-01 20:11:50 t 1 1 180708 566 0.00 2019-12-01 19:48:17 2019-12-01 20:13:21 t 1 1 180710 637 0.00 2019-12-01 19:44:26 2019-12-01 20:15:36 t 1 1 180712 481 0.00 2019-12-01 19:39:11 2019-12-01 20:19:12 t 1 1 180714 578 0.00 2019-12-01 19:35:35 2019-12-01 20:19:41 t 1 1 180717 645 0.00 2019-12-01 20:19:49 2019-12-01 20:25:38 t 1 1 180718 622 0.00 2019-12-01 20:20:50 2019-12-01 20:27:51 t 1 1 180719 687 0.00 2019-12-01 20:14:00 2019-12-01 20:28:48 t 1 1 180721 220 0.00 2019-12-01 20:18:07 2019-12-01 20:29:52 t 1 1 180727 220 0.00 2019-12-01 20:36:48 2019-12-01 20:37:02 t 1 1 180731 591 0.00 2019-12-01 19:54:33 2019-12-01 20:40:43 t 1 1 180733 516 0.00 2019-12-01 20:43:48 2019-12-01 20:44:49 t 1 1 180738 673 0.00 2019-12-01 19:51:28 2019-12-01 20:48:05 t 1 1 180743 514 0.00 2019-12-01 20:48:30 2019-12-01 20:50:03 t 1 1 180745 656 0.00 2019-12-01 20:29:17 2019-12-01 20:52:51 t 1 1 180747 220 0.00 2019-12-01 20:54:40 2019-12-01 20:54:49 t 1 1 180749 566 0.00 2019-12-01 20:37:53 2019-12-01 20:57:02 t 1 1 180752 673 0.00 2019-12-01 20:48:54 2019-12-01 20:59:53 t 1 1 180755 625 0.00 2019-12-01 20:14:09 2019-12-01 21:01:08 t 1 1 180761 637 0.00 2019-12-01 20:32:43 2019-12-01 21:07:27 t 1 1 180763 687 0.00 2019-12-01 20:49:14 2019-12-01 21:08:14 t 1 1 180765 220 0.00 2019-12-01 21:10:03 2019-12-01 21:10:18 t 1 1 180766 687 0.00 2019-12-01 21:08:19 2019-12-01 21:11:03 t 1 1 180770 498 0.00 2019-12-01 19:16:20 2019-12-01 21:12:53 t 1 2 180771 514 0.00 2019-12-01 21:01:52 2019-12-01 21:13:10 t 1 1 180773 687 0.00 2019-12-01 21:11:24 2019-12-01 21:13:46 t 1 1 180775 625 0.00 2019-12-01 21:12:56 2019-12-01 21:14:08 t 1 1 180779 220 0.00 2019-12-01 21:15:02 2019-12-01 21:16:05 t 1 1 180788 510 0.00 2019-12-01 21:11:04 2019-12-01 21:23:16 t 1 1 180791 220 0.00 2019-12-01 21:27:01 2019-12-01 21:27:15 t 1 1 180794 591 0.00 2019-12-01 20:45:57 2019-12-01 21:28:08 t 1 1 180796 692 0.00 2019-12-01 21:29:02 2019-12-01 21:29:03 t 1 1 180808 692 0.00 2019-12-01 21:36:21 2019-12-01 21:36:51 t 1 1 180812 687 0.00 2019-12-01 21:28:01 2019-12-01 21:40:34 t 1 1 180814 687 0.00 2019-12-01 21:40:34 2019-12-01 21:41:31 t 1 1 180819 689 0.00 2019-12-01 21:34:51 2019-12-01 21:44:46 t 1 1 180821 581 0.00 2019-12-01 21:46:12 2019-12-01 21:46:16 t 1 1 180823 692 0.00 2019-12-01 21:42:17 2019-12-01 21:47:48 t 1 1 180824 671 0.00 2019-12-01 21:46:31 2019-12-01 21:48:58 t 1 1 180825 581 0.00 2019-12-01 21:49:06 2019-12-01 21:49:39 t 1 1 180827 675 0.00 2019-12-01 21:46:07 2019-12-01 21:50:08 t 1 1 180828 687 0.00 2019-12-01 21:41:44 2019-12-01 21:51:24 t 1 1 180832 692 0.00 2019-12-01 21:48:17 2019-12-01 21:54:08 t 1 1 180833 220 0.00 2019-12-01 21:55:16 2019-12-01 21:55:31 t 1 1 180835 692 0.00 2019-12-01 21:55:23 2019-12-01 21:56:07 t 1 1 180838 625 0.00 2019-12-01 21:46:46 2019-12-01 21:58:06 t 1 1 180842 451 0.00 2019-12-01 21:56:22 2019-12-01 22:00:52 t 1 1 180845 656 0.00 2019-12-01 21:53:37 2019-12-01 22:01:09 t 1 1 180847 687 0.00 2019-12-01 21:57:09 2019-12-01 22:03:15 t 1 1 180849 220 0.00 2019-12-01 22:05:46 2019-12-01 22:06:00 t 1 1 180852 681 0.00 2019-12-01 19:42:25 2019-12-01 22:10:04 t 1 1 180858 544 0.00 2019-12-01 21:42:28 2019-12-01 22:16:29 t 1 1 180860 692 0.00 2019-12-01 21:58:24 2019-12-01 22:17:37 t 1 1 180863 679 0.00 2019-12-01 22:17:10 2019-12-01 22:22:16 t 1 1 180865 544 0.00 2019-12-01 22:16:29 2019-12-01 22:26:34 t 1 1 180590 220 0.00 2019-12-01 19:05:52 2019-12-01 19:20:16 t 1 2 180593 220 0.00 2019-12-01 19:17:53 2019-12-01 19:22:37 t 1 1 180596 611 0.00 2019-12-01 19:23:59 2019-12-01 19:24:28 t 1 1 180599 667 0.00 2019-12-01 19:22:26 2019-12-01 19:26:44 t 1 1 180603 611 0.00 2019-12-01 19:24:27 2019-12-01 19:28:40 t 1 1 180606 637 0.00 2019-12-01 19:09:00 2019-12-01 19:29:07 t 1 1 180607 687 0.00 2019-12-01 19:27:16 2019-12-01 19:29:31 t 1 1 180609 520 0.00 2019-12-01 19:24:53 2019-12-01 19:29:35 t 1 1 180612 667 0.00 2019-12-01 19:29:53 2019-12-01 19:31:33 t 1 1 180614 645 0.00 2019-12-01 19:24:56 2019-12-01 19:32:37 t 1 1 180616 220 0.00 2019-12-01 19:32:05 2019-12-01 19:33:27 t 1 2 180618 520 0.00 2019-12-01 19:29:34 2019-12-01 19:33:40 t 1 1 180619 220 0.00 2019-12-01 19:33:38 2019-12-01 19:33:53 t 1 1 180620 220 0.00 2019-12-01 19:34:02 2019-12-01 19:34:11 t 1 1 180624 578 0.00 2019-12-01 18:46:33 2019-12-01 19:35:35 t 1 1 180626 514 0.00 2019-12-01 19:21:36 2019-12-01 19:37:56 t 1 1 180630 649 0.00 2019-12-01 19:11:05 2019-12-01 19:39:02 t 1 1 180631 220 0.00 2019-12-01 19:34:11 2019-12-01 19:39:03 t 1 1 180633 220 0.00 2019-12-01 19:39:02 2019-12-01 19:39:17 t 1 1 180636 683 0.00 2019-12-01 19:32:31 2019-12-01 19:39:53 t 1 1 180638 675 0.00 2019-12-01 19:38:37 2019-12-01 19:42:21 t 1 1 180641 687 0.00 2019-12-01 19:31:35 2019-12-01 19:44:16 t 1 1 180642 591 0.00 2019-12-01 19:33:51 2019-12-01 19:44:21 t 1 1 180647 520 0.00 2019-12-01 19:44:33 2019-12-01 19:46:08 t 1 1 180655 591 0.00 2019-12-01 19:44:21 2019-12-01 19:48:44 t 1 1 180656 220 0.00 2019-12-01 19:43:03 2019-12-01 19:48:45 t 1 1 180658 687 0.00 2019-12-01 19:47:18 2019-12-01 19:49:58 t 1 1 180659 220 0.00 2019-12-01 19:48:45 2019-12-01 19:50:17 t 1 1 180660 591 0.00 2019-12-01 19:48:44 2019-12-01 19:50:46 t 1 1 180665 687 0.00 2019-12-01 19:49:58 2019-12-01 19:51:49 t 1 1 180674 631 0.00 2019-12-01 19:53:13 2019-12-01 19:53:38 t 1 1 180680 675 0.00 2019-12-01 19:53:12 2019-12-01 19:59:54 t 1 1 180686 220 0.00 2019-12-01 20:00:27 2019-12-01 20:02:50 t 1 1 180692 656 0.00 2019-12-01 19:47:16 2019-12-01 20:05:42 t 1 1 180694 625 0.00 2019-12-01 18:55:45 2019-12-01 20:06:14 t 1 1 180696 631 0.00 2019-12-01 20:07:50 2019-12-01 20:08:13 t 1 1 180697 631 0.00 2019-12-01 20:08:24 2019-12-01 20:08:29 t 1 1 180700 679 0.00 2019-12-01 20:08:07 2019-12-01 20:09:46 t 1 1 180702 631 0.00 2019-12-01 20:10:16 2019-12-01 20:10:16 t 1 1 180709 687 0.00 2019-12-01 20:12:54 2019-12-01 20:13:50 t 1 1 180713 516 0.00 2019-12-01 20:16:30 2019-12-01 20:19:32 t 1 1 180715 622 0.00 2019-12-01 19:51:59 2019-12-01 20:20:50 t 1 1 180716 637 0.00 2019-12-01 20:16:44 2019-12-01 20:23:42 t 1 1 180720 538 0.00 2019-12-01 19:55:36 2019-12-01 20:29:12 t 1 1 180723 220 0.00 2019-12-01 20:29:51 2019-12-01 20:30:01 t 1 1 180725 611 0.00 2019-12-01 20:21:53 2019-12-01 20:31:55 t 1 1 180726 220 0.00 2019-12-01 20:30:38 2019-12-01 20:36:48 t 1 1 180728 566 0.00 2019-12-01 20:13:21 2019-12-01 20:37:53 t 1 1 180729 516 0.00 2019-12-01 20:39:27 2019-12-01 20:39:56 t 1 1 180735 611 0.00 2019-12-01 20:31:53 2019-12-01 20:45:52 t 1 1 180737 611 0.00 2019-12-01 20:45:52 2019-12-01 20:47:46 t 1 1 180739 220 0.00 2019-12-01 20:47:21 2019-12-01 20:48:24 t 1 1 180746 220 0.00 2019-12-01 20:48:43 2019-12-01 20:54:40 t 1 1 180748 220 0.00 2019-12-01 20:55:04 2019-12-01 20:56:05 t 1 1 180750 510 0.00 2019-12-01 20:39:59 2019-12-01 20:58:06 t 1 1 180756 514 0.00 2019-12-01 20:50:03 2019-12-01 21:01:16 t 1 1 180757 514 0.00 2019-12-01 21:01:15 2019-12-01 21:01:53 t 1 1 180758 220 0.00 2019-12-01 20:58:21 2019-12-01 21:02:26 t 1 1 180764 622 0.00 2019-12-01 21:08:52 2019-12-01 21:10:17 t 1 1 180768 687 0.00 2019-12-01 21:11:13 2019-12-01 21:11:20 t 1 1 180772 675 0.00 2019-12-01 21:00:58 2019-12-01 21:13:19 t 1 1 180774 514 0.00 2019-12-01 21:13:10 2019-12-01 21:13:54 t 1 1 180777 656 0.00 2019-12-01 20:52:51 2019-12-01 21:15:07 t 1 1 180780 625 0.00 2019-12-01 21:15:19 2019-12-01 21:17:14 t 1 1 180785 220 0.00 2019-12-01 21:20:34 2019-12-01 21:21:38 t 1 1 180789 481 0.00 2019-12-01 20:19:09 2019-12-01 21:26:42 t 1 1 180790 611 0.00 2019-12-01 21:23:30 2019-12-01 21:27:13 t 1 1 180793 687 0.00 2019-12-01 21:22:59 2019-12-01 21:27:19 t 1 1 180798 645 0.00 2019-12-01 21:18:21 2019-12-01 21:30:17 t 1 1 180799 483 0.00 2019-12-01 21:23:24 2019-12-01 21:30:36 t 1 1 180801 692 0.00 2019-12-01 21:33:07 2019-12-01 21:33:15 t 1 1 180802 692 0.00 2019-12-01 21:33:35 2019-12-01 21:33:42 t 1 1 180806 692 0.00 2019-12-01 21:34:48 2019-12-01 21:36:15 t 1 1 180807 692 0.00 2019-12-01 21:33:48 2019-12-01 21:36:23 t 1 1 180810 685 0.00 2019-12-01 21:29:16 2019-12-01 21:37:43 t 1 1 180813 692 0.00 2019-12-01 21:40:08 2019-12-01 21:41:23 t 1 1 180815 581 0.00 2019-12-01 21:24:09 2019-12-01 21:41:54 t 1 1 180826 611 0.00 2019-12-01 21:44:40 2019-12-01 21:50:05 t 1 1 180830 660 0.00 2019-12-01 20:56:57 2019-12-01 21:53:22 t 1 1 180834 645 0.00 2019-12-01 21:53:13 2019-12-01 21:55:50 t 1 1 180836 451 0.00 2019-12-01 21:30:05 2019-12-01 21:56:22 t 1 1 180841 581 0.00 2019-12-01 21:58:56 2019-12-01 21:59:36 t 1 1 180844 611 0.00 2019-12-01 22:00:35 2019-12-01 22:01:04 t 1 1 180846 581 0.00 2019-12-01 22:02:55 2019-12-01 22:03:01 t 1 1 180848 607 0.00 2019-12-01 21:50:12 2019-12-01 22:03:49 t 1 1 180850 675 0.00 2019-12-01 22:03:29 2019-12-01 22:08:15 t 1 1 180851 631 0.00 2019-12-01 22:05:03 2019-12-01 22:09:40 t 1 1 180856 660 0.00 2019-12-01 21:53:22 2019-12-01 22:15:04 t 1 1 180859 220 0.00 2019-12-01 22:16:16 2019-12-01 22:16:30 t 1 1 180862 625 0.00 2019-12-01 22:12:44 2019-12-01 22:22:10 t 1 1 180866 220 0.00 2019-12-01 22:17:00 2019-12-01 22:26:47 t 1 1 180876 673 0.00 2019-12-01 22:28:54 2019-12-01 22:37:29 t 1 1 180878 220 0.00 2019-12-01 22:37:52 2019-12-01 22:38:01 t 1 1 180883 692 0.00 2019-12-01 22:32:02 2019-12-01 22:45:31 t 1 1 180885 687 0.00 2019-12-01 22:45:07 2019-12-01 22:46:17 t 1 1 180887 220 0.00 2019-12-01 22:37:13 2019-12-01 22:46:33 t 1 2 180894 692 0.00 2019-12-01 22:48:29 2019-12-01 22:48:38 t 1 1 180896 623 0.00 2019-12-01 22:49:18 2019-12-01 22:49:20 t 1 1 180900 623 0.00 2019-12-01 22:50:17 2019-12-01 22:50:19 t 1 1 180910 645 0.00 2019-12-01 22:54:14 2019-12-01 22:54:29 t 1 1 180911 645 0.00 2019-12-01 22:54:35 2019-12-01 22:54:58 t 1 1 180913 623 0.00 2019-12-01 22:55:20 2019-12-01 22:55:23 t 1 1 180915 578 0.00 2019-12-01 22:50:17 2019-12-01 22:55:38 t 1 1 180919 623 0.00 2019-12-01 22:56:19 2019-12-01 22:56:42 t 1 1 180922 591 0.00 2019-12-01 22:56:12 2019-12-01 22:57:26 t 1 1 180926 544 0.00 2019-12-01 22:54:35 2019-12-01 22:59:29 t 1 1 180927 625 0.00 2019-12-01 22:30:00 2019-12-01 22:59:36 t 1 1 180867 220 0.00 2019-12-01 22:26:46 2019-12-01 22:26:55 t 1 1 180868 483 0.00 2019-12-01 22:12:03 2019-12-01 22:27:38 t 1 1 180869 673 0.00 2019-12-01 22:03:42 2019-12-01 22:28:55 t 1 1 180871 692 0.00 2019-12-01 22:17:37 2019-12-01 22:32:02 t 1 1 180875 220 0.00 2019-12-01 22:27:21 2019-12-01 22:37:17 t 1 1 180877 220 0.00 2019-12-01 22:37:17 2019-12-01 22:37:30 t 1 1 180880 578 0.00 2019-12-01 20:42:22 2019-12-01 22:43:11 t 1 1 180881 687 0.00 2019-12-01 22:40:58 2019-12-01 22:44:04 t 1 1 180882 544 0.00 2019-12-01 22:26:34 2019-12-01 22:44:46 t 1 1 180888 623 0.00 2019-12-01 22:45:38 2019-12-01 22:47:19 t 1 1 180889 623 0.00 2019-12-01 22:47:24 2019-12-01 22:47:25 t 1 1 180892 591 0.00 2019-12-01 22:16:27 2019-12-01 22:48:31 t 1 1 180897 611 0.00 2019-12-01 22:49:10 2019-12-01 22:49:41 t 1 1 180901 623 0.00 2019-12-01 22:51:18 2019-12-01 22:51:19 t 1 1 180903 692 0.00 2019-12-01 22:50:47 2019-12-01 22:51:48 t 1 1 180904 623 0.00 2019-12-01 22:52:17 2019-12-01 22:52:19 t 1 1 180907 645 0.00 2019-12-01 22:53:56 2019-12-01 22:54:09 t 1 1 180908 623 0.00 2019-12-01 22:53:42 2019-12-01 22:54:20 t 1 1 180912 689 0.00 2019-12-01 22:44:06 2019-12-01 22:55:03 t 1 1 180914 645 0.00 2019-12-01 22:55:03 2019-12-01 22:55:27 t 1 1 180917 645 0.00 2019-12-01 22:55:32 2019-12-01 22:56:15 t 1 1 180923 611 0.00 2019-12-01 22:51:41 2019-12-01 22:58:01 t 1 1 180924 220 0.00 2019-12-01 22:58:19 2019-12-01 22:58:34 t 1 1 180925 689 0.00 2019-12-01 22:58:58 2019-12-01 22:59:26 t 1 1 180928 623 0.00 2019-12-01 22:59:31 2019-12-01 22:59:43 t 1 1 180930 544 0.00 2019-12-01 22:59:28 2019-12-01 23:00:32 t 1 1 180935 623 0.00 2019-12-01 23:02:26 2019-12-01 23:02:46 t 1 1 180936 692 0.00 2019-12-01 22:53:08 2019-12-01 23:03:38 t 1 1 180938 656 0.00 2019-12-01 22:01:23 2019-12-01 23:04:23 t 1 1 180940 679 0.00 2019-12-01 23:04:27 2019-12-01 23:04:50 t 1 1 180944 625 0.00 2019-12-01 23:04:44 2019-12-01 23:05:46 t 1 1 180945 566 0.00 2019-12-01 23:02:22 2019-12-01 23:06:18 t 1 1 180950 689 0.00 2019-12-01 23:08:12 2019-12-01 23:08:28 t 1 1 180951 689 0.00 2019-12-01 23:08:43 2019-12-01 23:09:04 t 1 1 180956 623 0.00 2019-12-01 23:07:10 2019-12-01 23:13:19 t 1 1 180964 692 0.00 2019-12-01 23:08:24 2019-12-01 23:20:51 t 1 1 180970 645 0.00 2019-12-01 23:27:30 2019-12-01 23:27:42 t 1 1 180976 645 0.00 2019-12-01 23:30:03 2019-12-01 23:30:38 t 1 1 180979 623 0.00 2019-12-01 23:31:48 2019-12-01 23:31:54 t 1 1 180980 645 0.00 2019-12-01 23:33:15 2019-12-01 23:33:25 t 1 1 180983 645 0.00 2019-12-01 23:35:59 2019-12-01 23:36:06 t 1 1 180987 623 0.00 2019-12-01 23:38:41 2019-12-01 23:38:55 t 1 1 180991 692 0.00 2019-12-01 23:39:19 2019-12-01 23:40:19 t 1 1 180994 623 0.00 2019-12-01 23:40:39 2019-12-01 23:41:07 t 1 1 180996 645 0.00 2019-12-01 23:41:07 2019-12-01 23:41:15 t 1 1 180997 667 0.00 2019-12-01 23:36:17 2019-12-01 23:42:12 t 1 1 181002 692 0.00 2019-12-01 23:41:17 2019-12-01 23:46:46 t 1 1 181003 635 0.00 2019-12-01 23:42:32 2019-12-01 23:47:30 t 1 1 181007 311 0.00 2019-12-01 23:46:55 2019-12-01 23:49:09 t 1 2 181009 566 0.00 2019-12-01 23:39:30 2019-12-01 23:49:23 t 1 1 181011 220 0.00 2019-12-01 23:50:58 2019-12-01 23:51:12 t 1 1 181016 625 0.00 2019-12-01 23:50:44 2019-12-01 23:55:06 t 1 1 181028 625 0.00 2019-12-02 00:00:51 2019-12-02 00:08:24 t 1 1 181030 625 0.00 2019-12-02 00:09:45 2019-12-02 00:10:45 t 1 1 181034 671 0.00 2019-12-02 00:04:36 2019-12-02 00:12:14 t 1 1 181035 692 0.00 2019-12-01 23:58:10 2019-12-02 00:13:00 t 1 1 181037 528 0.00 2019-12-01 22:29:51 2019-12-02 00:16:38 t 1 1 181041 692 0.00 2019-12-02 00:15:04 2019-12-02 00:18:20 t 1 1 181044 692 0.00 2019-12-02 00:19:31 2019-12-02 00:20:24 t 1 1 181048 692 0.00 2019-12-02 00:21:30 2019-12-02 00:22:51 t 1 1 181054 692 0.00 2019-12-02 00:24:42 2019-12-02 00:25:39 t 1 1 181057 692 0.00 2019-12-02 00:27:02 2019-12-02 00:28:08 t 1 1 181059 692 0.00 2019-12-02 00:28:13 2019-12-02 00:30:51 t 1 1 181065 514 0.00 2019-12-01 22:40:20 2019-12-02 00:35:01 t 1 1 181067 220 0.00 2019-12-02 00:36:18 2019-12-02 00:37:23 t 1 1 181069 671 0.00 2019-12-02 00:37:53 2019-12-02 00:43:02 t 1 1 181071 220 0.00 2019-12-02 00:43:36 2019-12-02 00:43:56 t 1 1 181073 564 0.00 2019-12-01 18:17:25 2019-12-02 00:44:46 t 1 1 181075 679 0.00 2019-12-02 00:43:42 2019-12-02 00:50:48 t 1 1 181076 692 0.00 2019-12-02 00:43:28 2019-12-02 00:53:58 t 1 1 181077 220 0.00 2019-12-02 00:54:12 2019-12-02 00:54:20 t 1 1 181079 687 0.00 2019-12-02 00:49:27 2019-12-02 00:56:53 t 1 1 181082 692 0.00 2019-12-02 01:00:31 2019-12-02 01:01:02 t 1 1 181088 514 0.00 2019-12-02 00:38:19 2019-12-02 01:10:14 t 1 1 181094 622 0.00 2019-12-02 01:09:22 2019-12-02 01:23:00 t 1 1 181095 687 0.00 2019-12-02 01:20:19 2019-12-02 01:23:30 t 1 1 181096 574 0.00 2019-12-02 00:42:58 2019-12-02 01:24:29 t 1 1 181098 220 0.00 2019-12-02 01:25:39 2019-12-02 01:25:54 t 1 1 181100 687 0.00 2019-12-02 01:23:51 2019-12-02 01:31:52 t 1 1 181104 679 0.00 2019-12-02 01:37:00 2019-12-02 01:39:36 t 1 1 181105 656 0.00 2019-12-01 23:44:15 2019-12-02 01:46:53 t 1 1 181115 220 0.00 2019-12-02 02:12:47 2019-12-02 02:13:02 t 1 1 181116 687 0.00 2019-12-02 02:09:11 2019-12-02 02:19:21 t 1 1 181119 687 0.00 2019-12-02 02:21:36 2019-12-02 02:21:45 t 1 1 181121 687 0.00 2019-12-02 02:22:06 2019-12-02 02:28:34 t 1 1 181122 687 0.00 2019-12-02 02:28:40 2019-12-02 02:30:15 t 1 1 181123 687 0.00 2019-12-02 02:30:43 2019-12-02 02:33:09 t 1 1 181124 220 0.00 2019-12-02 02:33:53 2019-12-02 02:34:01 t 1 1 181129 611 0.00 2019-12-02 02:48:08 2019-12-02 02:52:03 t 1 1 181130 220 0.00 2019-12-02 02:54:54 2019-12-02 02:55:08 t 1 1 181132 611 0.00 2019-12-02 02:52:03 2019-12-02 02:59:50 t 1 1 181133 220 0.00 2019-12-02 03:05:25 2019-12-02 03:07:25 t 1 1 181135 687 0.00 2019-12-02 02:56:06 2019-12-02 03:14:44 t 1 1 181139 220 0.00 2019-12-02 03:22:38 2019-12-02 03:22:52 t 1 1 181141 687 0.00 2019-12-02 03:16:32 2019-12-02 03:32:44 t 1 1 181145 687 0.00 2019-12-02 03:34:57 2019-12-02 03:36:17 t 1 1 181147 687 0.00 2019-12-02 03:42:37 2019-12-02 03:42:50 t 1 1 181150 687 0.00 2019-12-02 03:49:35 2019-12-02 03:57:27 t 1 1 181151 220 0.00 2019-12-02 04:03:13 2019-12-02 04:03:27 t 1 1 181153 687 0.00 2019-12-02 04:03:55 2019-12-02 04:04:00 t 1 1 181154 220 0.00 2019-12-02 04:13:43 2019-12-02 04:13:51 t 1 1 181155 220 0.00 2019-12-02 04:24:12 2019-12-02 04:24:27 t 1 1 181158 220 0.00 2019-12-02 04:34:41 2019-12-02 04:34:56 t 1 1 181161 687 0.00 2019-12-02 04:41:30 2019-12-02 04:52:18 t 1 1 181162 220 0.00 2019-12-02 04:55:40 2019-12-02 04:55:48 t 1 1 181164 622 0.00 2019-12-02 04:52:19 2019-12-02 05:00:35 t 1 1 181165 520 0.00 2019-12-02 04:57:38 2019-12-02 05:02:30 t 1 1 180884 483 0.00 2019-12-01 22:29:19 2019-12-01 22:45:43 t 1 1 180886 220 0.00 2019-12-01 22:08:10 2019-12-01 22:46:29 t 1 2 180890 220 0.00 2019-12-01 22:47:48 2019-12-01 22:48:02 t 1 1 180891 692 0.00 2019-12-01 22:48:08 2019-12-01 22:48:24 t 1 1 180893 623 0.00 2019-12-01 22:47:59 2019-12-01 22:48:32 t 1 1 180895 692 0.00 2019-12-01 22:48:44 2019-12-01 22:48:45 t 1 1 180898 687 0.00 2019-12-01 22:47:41 2019-12-01 22:49:45 t 1 1 180899 578 0.00 2019-12-01 22:43:11 2019-12-01 22:50:17 t 1 1 180902 645 0.00 2019-12-01 22:36:53 2019-12-01 22:51:31 t 1 1 180905 623 0.00 2019-12-01 22:53:17 2019-12-01 22:53:19 t 1 1 180906 645 0.00 2019-12-01 22:53:47 2019-12-01 22:53:50 t 1 1 180909 544 0.00 2019-12-01 22:44:46 2019-12-01 22:54:21 t 1 1 180916 687 0.00 2019-12-01 22:49:50 2019-12-01 22:55:46 t 1 1 180918 687 0.00 2019-12-01 22:56:16 2019-12-01 22:56:21 t 1 1 180920 645 0.00 2019-12-01 22:56:59 2019-12-01 22:57:05 t 1 1 180921 623 0.00 2019-12-01 22:57:19 2019-12-01 22:57:22 t 1 1 180929 623 0.00 2019-12-01 22:59:55 2019-12-01 23:00:30 t 1 1 180931 625 0.00 2019-12-01 22:59:36 2019-12-01 23:00:32 t 1 1 180937 623 0.00 2019-12-01 23:03:25 2019-12-01 23:04:00 t 1 1 180939 625 0.00 2019-12-01 23:00:32 2019-12-01 23:04:33 t 1 1 180941 689 0.00 2019-12-01 23:04:31 2019-12-01 23:04:56 t 1 1 180947 623 0.00 2019-12-01 23:05:28 2019-12-01 23:06:28 t 1 1 180949 591 0.00 2019-12-01 23:08:01 2019-12-01 23:08:22 t 1 1 180952 220 0.00 2019-12-01 23:08:51 2019-12-01 23:09:05 t 1 1 180953 578 0.00 2019-12-01 22:55:38 2019-12-01 23:09:36 t 1 1 180955 645 0.00 2019-12-01 23:12:49 2019-12-01 23:12:56 t 1 1 180961 623 0.00 2019-12-01 23:17:52 2019-12-01 23:18:19 t 1 1 180965 611 0.00 2019-12-01 23:14:49 2019-12-01 23:21:25 t 1 1 180967 692 0.00 2019-12-01 23:21:31 2019-12-01 23:21:32 t 1 1 180968 645 0.00 2019-12-01 23:23:19 2019-12-01 23:23:27 t 1 1 180972 660 0.00 2019-12-01 23:12:34 2019-12-01 23:28:59 t 1 1 180973 566 0.00 2019-12-01 23:06:17 2019-12-01 23:29:56 t 1 1 180978 623 0.00 2019-12-01 23:19:01 2019-12-01 23:31:22 t 1 1 180982 623 0.00 2019-12-01 23:34:36 2019-12-01 23:34:59 t 1 1 180984 623 0.00 2019-12-01 23:36:50 2019-12-01 23:36:54 t 1 1 180985 623 0.00 2019-12-01 23:38:05 2019-12-01 23:38:07 t 1 1 180986 692 0.00 2019-12-01 23:32:57 2019-12-01 23:38:20 t 1 1 180988 692 0.00 2019-12-01 23:38:19 2019-12-01 23:39:15 t 1 1 180989 566 0.00 2019-12-01 23:29:56 2019-12-01 23:39:30 t 1 1 180990 623 0.00 2019-12-01 23:40:10 2019-12-01 23:40:12 t 1 1 180993 220 0.00 2019-12-01 23:40:26 2019-12-01 23:40:41 t 1 1 180998 660 0.00 2019-12-01 23:28:59 2019-12-01 23:42:18 t 1 1 180999 510 0.00 2019-12-01 21:23:16 2019-12-01 23:42:32 t 1 1 181000 656 0.00 2019-12-01 23:05:22 2019-12-01 23:44:15 t 1 1 181001 625 0.00 2019-12-01 23:21:06 2019-12-01 23:46:43 t 1 1 181004 692 0.00 2019-12-01 23:46:46 2019-12-01 23:47:49 t 1 1 181005 687 0.00 2019-12-01 23:21:56 2019-12-01 23:48:11 t 1 1 181006 692 0.00 2019-12-01 23:47:53 2019-12-01 23:48:15 t 1 1 181010 625 0.00 2019-12-01 23:47:56 2019-12-01 23:50:44 t 1 1 181013 512 0.00 2019-12-01 23:35:15 2019-12-01 23:54:28 t 1 1 181017 687 0.00 2019-12-01 23:48:11 2019-12-01 23:55:12 t 1 1 181018 566 0.00 2019-12-01 23:49:23 2019-12-01 23:55:20 t 1 1 181019 692 0.00 2019-12-01 23:49:26 2019-12-01 23:57:15 t 1 1 181020 692 0.00 2019-12-01 23:57:15 2019-12-01 23:58:07 t 1 1 181021 483 0.00 2019-12-01 23:41:00 2019-12-01 23:58:32 t 1 1 181023 611 0.00 2019-12-01 23:54:34 2019-12-01 23:59:15 t 1 1 181024 625 0.00 2019-12-01 23:59:03 2019-12-02 00:00:52 t 1 1 181025 220 0.00 2019-12-02 00:01:27 2019-12-02 00:01:42 t 1 1 181031 679 0.00 2019-12-02 00:01:01 2019-12-02 00:10:58 t 1 1 181033 220 0.00 2019-12-02 00:11:57 2019-12-02 00:12:06 t 1 1 181036 692 0.00 2019-12-02 00:13:00 2019-12-02 00:15:00 t 1 1 181038 220 0.00 2019-12-02 00:11:16 2019-12-02 00:17:09 t 1 2 181039 671 0.00 2019-12-02 00:12:13 2019-12-02 00:17:30 t 1 1 181046 687 0.00 2019-12-02 00:14:32 2019-12-02 00:21:46 t 1 1 181047 220 0.00 2019-12-02 00:22:27 2019-12-02 00:22:41 t 1 1 181049 625 0.00 2019-12-02 00:19:46 2019-12-02 00:22:55 t 1 1 181050 692 0.00 2019-12-02 00:22:51 2019-12-02 00:23:48 t 1 1 181052 692 0.00 2019-12-02 00:23:52 2019-12-02 00:24:43 t 1 1 181058 220 0.00 2019-12-02 00:00:14 2019-12-02 00:30:37 t 1 2 181061 220 0.00 2019-12-02 00:32:57 2019-12-02 00:33:06 t 1 1 181063 220 0.00 2019-12-02 00:33:14 2019-12-02 00:33:15 t 1 1 181064 625 0.00 2019-12-02 00:32:49 2019-12-02 00:34:27 t 1 1 181066 687 0.00 2019-12-02 00:34:54 2019-12-02 00:35:34 t 1 1 181068 514 0.00 2019-12-02 00:35:01 2019-12-02 00:38:20 t 1 1 181072 671 0.00 2019-12-02 00:43:00 2019-12-02 00:44:07 t 1 1 181078 692 0.00 2019-12-02 00:53:58 2019-12-02 00:55:01 t 1 1 181080 692 0.00 2019-12-02 00:55:05 2019-12-02 00:59:35 t 1 1 181081 692 0.00 2019-12-02 00:59:34 2019-12-02 01:00:26 t 1 1 181083 671 0.00 2019-12-02 00:58:53 2019-12-02 01:01:02 t 1 1 181085 220 0.00 2019-12-02 01:04:57 2019-12-02 01:04:58 t 1 1 181086 538 0.00 2019-12-02 00:53:15 2019-12-02 01:08:22 t 1 1 181087 490 0.00 2019-12-02 01:02:41 2019-12-02 01:09:37 t 1 1 181089 687 0.00 2019-12-02 00:56:53 2019-12-02 01:14:12 t 1 1 181090 220 0.00 2019-12-02 01:15:09 2019-12-02 01:15:21 t 1 1 181092 687 0.00 2019-12-02 01:14:12 2019-12-02 01:19:38 t 1 1 181093 687 0.00 2019-12-02 01:20:05 2019-12-02 01:21:24 t 1 1 181097 514 0.00 2019-12-02 01:10:14 2019-12-02 01:25:50 t 1 1 181101 681 0.00 2019-12-01 22:10:04 2019-12-02 01:33:43 t 1 1 181102 687 0.00 2019-12-02 01:32:08 2019-12-02 01:35:08 t 1 1 181103 220 0.00 2019-12-02 01:36:10 2019-12-02 01:36:25 t 1 1 181106 220 0.00 2019-12-02 01:46:40 2019-12-02 01:46:54 t 1 1 181108 544 0.00 2019-12-02 00:18:13 2019-12-02 01:51:38 t 1 1 181109 220 0.00 2019-12-02 01:57:10 2019-12-02 01:57:25 t 1 1 181112 220 0.00 2019-12-02 02:05:30 2019-12-02 02:05:39 t 1 1 181113 220 0.00 2019-12-02 02:05:47 2019-12-02 02:06:57 t 1 1 181114 687 0.00 2019-12-02 01:58:19 2019-12-02 02:09:11 t 1 1 181118 687 0.00 2019-12-02 02:19:29 2019-12-02 02:21:25 t 1 1 181125 687 0.00 2019-12-02 02:37:51 2019-12-02 02:39:20 t 1 1 181131 687 0.00 2019-12-02 02:54:08 2019-12-02 02:55:11 t 1 1 181136 687 0.00 2019-12-02 03:15:04 2019-12-02 03:15:58 t 1 1 181138 220 0.00 2019-12-02 03:22:21 2019-12-02 03:22:30 t 1 1 181140 220 0.00 2019-12-02 03:31:44 2019-12-02 03:31:58 t 1 1 181146 220 0.00 2019-12-02 03:42:14 2019-12-02 03:42:29 t 1 1 181148 687 0.00 2019-12-02 03:43:26 2019-12-02 03:49:34 t 1 1 181152 687 0.00 2019-12-02 03:57:27 2019-12-02 04:03:29 t 1 1 181159 687 0.00 2019-12-02 04:34:13 2019-12-02 04:41:29 t 1 1 181160 220 0.00 2019-12-02 04:45:11 2019-12-02 04:45:27 t 1 1 180932 623 0.00 2019-12-01 23:01:25 2019-12-01 23:01:39 t 1 1 180933 566 0.00 2019-12-01 22:35:49 2019-12-01 23:02:22 t 1 1 180934 645 0.00 2019-12-01 23:02:10 2019-12-01 23:02:39 t 1 1 180942 623 0.00 2019-12-01 23:04:26 2019-12-01 23:05:02 t 1 1 180943 689 0.00 2019-12-01 23:05:11 2019-12-01 23:05:34 t 1 1 180946 637 0.00 2019-12-01 21:08:12 2019-12-01 23:06:24 t 1 1 180948 645 0.00 2019-12-01 23:07:35 2019-12-01 23:08:12 t 1 1 180954 622 0.00 2019-12-01 23:05:59 2019-12-01 23:10:48 t 1 1 180957 689 0.00 2019-12-01 23:09:19 2019-12-01 23:14:36 t 1 1 180958 623 0.00 2019-12-01 23:16:16 2019-12-01 23:16:39 t 1 1 180959 591 0.00 2019-12-01 23:17:18 2019-12-01 23:17:34 t 1 1 180960 645 0.00 2019-12-01 23:17:54 2019-12-01 23:18:17 t 1 1 180962 220 0.00 2019-12-01 23:19:23 2019-12-01 23:19:37 t 1 1 180963 625 0.00 2019-12-01 23:07:21 2019-12-01 23:20:32 t 1 1 180966 692 0.00 2019-12-01 23:21:18 2019-12-01 23:21:25 t 1 1 180969 311 0.00 2019-12-01 22:31:02 2019-12-01 23:25:25 t 1 2 180971 692 0.00 2019-12-01 23:22:48 2019-12-01 23:28:44 t 1 1 180974 220 0.00 2019-12-01 23:29:56 2019-12-01 23:30:08 t 1 1 180975 692 0.00 2019-12-01 23:28:49 2019-12-01 23:30:20 t 1 1 180977 692 0.00 2019-12-01 23:30:49 2019-12-01 23:31:00 t 1 1 180981 692 0.00 2019-12-01 23:32:40 2019-12-01 23:34:23 t 1 1 180992 623 0.00 2019-12-01 23:40:39 2019-12-01 23:40:39 t 1 1 180995 692 0.00 2019-12-01 23:40:18 2019-12-01 23:41:12 t 1 1 181008 692 0.00 2019-12-01 23:48:15 2019-12-01 23:49:22 t 1 1 181012 645 0.00 2019-12-01 23:50:10 2019-12-01 23:51:43 t 1 1 181014 660 0.00 2019-12-01 23:42:18 2019-12-01 23:54:33 t 1 1 181015 611 0.00 2019-12-01 23:53:45 2019-12-01 23:54:34 t 1 1 181022 660 0.00 2019-12-01 23:54:33 2019-12-01 23:58:42 t 1 1 181026 687 0.00 2019-12-01 23:58:05 2019-12-02 00:06:02 t 1 1 181027 687 0.00 2019-12-02 00:06:06 2019-12-02 00:06:33 t 1 1 181029 625 0.00 2019-12-02 00:08:24 2019-12-02 00:09:29 t 1 1 181032 538 0.00 2019-12-01 21:18:53 2019-12-02 00:11:42 t 1 1 181040 544 0.00 2019-12-01 23:00:53 2019-12-02 00:18:13 t 1 1 181042 692 0.00 2019-12-02 00:18:20 2019-12-02 00:19:27 t 1 1 181043 625 0.00 2019-12-02 00:11:01 2019-12-02 00:19:47 t 1 1 181045 692 0.00 2019-12-02 00:20:24 2019-12-02 00:21:26 t 1 1 181051 671 0.00 2019-12-02 00:17:29 2019-12-02 00:24:42 t 1 1 181053 687 0.00 2019-12-02 00:22:55 2019-12-02 00:24:52 t 1 1 181055 671 0.00 2019-12-02 00:24:41 2019-12-02 00:25:55 t 1 1 181056 692 0.00 2019-12-02 00:25:43 2019-12-02 00:27:02 t 1 1 181060 692 0.00 2019-12-02 00:30:51 2019-12-02 00:31:54 t 1 1 181062 687 0.00 2019-12-02 00:25:14 2019-12-02 00:33:09 t 1 1 181070 692 0.00 2019-12-02 00:31:57 2019-12-02 00:43:28 t 1 1 181074 687 0.00 2019-12-02 00:35:59 2019-12-02 00:49:27 t 1 1 181084 220 0.00 2019-12-02 01:04:41 2019-12-02 01:04:49 t 1 1 181091 456 0.00 2019-12-02 01:10:02 2019-12-02 01:19:11 t 1 1 181099 622 0.00 2019-12-02 01:23:00 2019-12-02 01:26:54 t 1 1 181107 681 0.00 2019-12-02 01:33:43 2019-12-02 01:47:18 t 1 1 181110 687 0.00 2019-12-02 01:35:19 2019-12-02 01:57:59 t 1 1 181111 503 0.00 2019-12-02 01:42:25 2019-12-02 02:00:38 t 1 1 181117 681 0.00 2019-12-02 01:47:18 2019-12-02 02:19:35 t 1 1 181120 220 0.00 2019-12-02 02:23:23 2019-12-02 02:23:33 t 1 1 181126 611 0.00 2019-12-02 02:36:33 2019-12-02 02:40:39 t 1 1 181127 220 0.00 2019-12-02 02:44:23 2019-12-02 02:44:38 t 1 1 181128 611 0.00 2019-12-02 02:40:39 2019-12-02 02:48:09 t 1 1 181134 220 0.00 2019-12-02 03:11:52 2019-12-02 03:12:05 t 1 1 181137 667 0.00 2019-12-02 03:07:41 2019-12-02 03:17:49 t 1 1 181142 687 0.00 2019-12-02 03:32:59 2019-12-02 03:33:11 t 1 1 181143 687 0.00 2019-12-02 03:33:33 2019-12-02 03:33:36 t 1 1 181144 687 0.00 2019-12-02 03:33:39 2019-12-02 03:34:37 t 1 1 181149 220 0.00 2019-12-02 03:52:44 2019-12-02 03:52:59 t 1 1 181156 687 0.00 2019-12-02 04:04:17 2019-12-02 04:26:52 t 1 1 181157 687 0.00 2019-12-02 04:26:52 2019-12-02 04:34:13 t 1 1 181163 544 0.00 2019-12-02 04:43:57 2019-12-02 04:58:59 t 1 1 181166 687 0.00 2019-12-02 04:52:18 2019-12-02 05:04:49 t 1 1 181167 220 0.00 2019-12-02 05:06:09 2019-12-02 05:06:17 t 1 1 181168 220 0.00 2019-12-02 05:16:38 2019-12-02 05:16:52 t 1 1 181169 220 0.00 2019-12-02 05:27:08 2019-12-02 05:27:09 t 1 1 181170 220 0.00 2019-12-02 05:33:42 2019-12-02 05:33:56 t 1 1 181171 520 0.00 2019-12-02 05:02:30 2019-12-02 05:42:47 t 1 1 181172 220 0.00 2019-12-02 05:44:11 2019-12-02 05:44:26 t 1 1 181173 520 0.00 2019-12-02 05:43:44 2019-12-02 05:48:34 t 1 1 181174 520 0.00 2019-12-02 05:48:33 2019-12-02 05:50:30 t 1 1 181175 520 0.00 2019-12-02 05:50:30 2019-12-02 05:52:26 t 1 1 181176 220 0.00 2019-12-02 05:57:56 2019-12-02 05:57:57 t 1 1 181177 220 0.00 2019-12-02 05:58:05 2019-12-02 05:59:05 t 1 1 181178 625 0.00 2019-12-02 05:54:21 2019-12-02 05:59:52 t 1 1 181179 520 0.00 2019-12-02 05:52:26 2019-12-02 06:01:14 t 1 1 181180 220 0.00 2019-12-02 06:05:04 2019-12-02 06:05:19 t 1 1 181181 551 0.00 2019-12-02 05:51:17 2019-12-02 06:05:48 t 1 1 181182 220 0.00 2019-12-02 06:05:30 2019-12-02 06:06:31 t 1 1 181183 485 0.00 2019-12-02 05:57:00 2019-12-02 06:08:32 t 1 1 181184 220 0.00 2019-12-02 06:11:54 2019-12-02 06:12:07 t 1 1 181185 681 0.00 2019-12-02 02:19:35 2019-12-02 06:12:26 t 1 1 181186 564 0.00 2019-12-02 00:44:46 2019-12-02 06:12:26 t 1 1 181187 520 0.00 2019-12-02 06:01:28 2019-12-02 06:14:43 t 1 1 181188 551 0.00 2019-12-02 06:05:48 2019-12-02 06:20:49 t 1 1 181189 625 0.00 2019-12-02 06:06:52 2019-12-02 06:22:10 t 1 1 181190 220 0.00 2019-12-02 06:22:24 2019-12-02 06:22:39 t 1 1 181191 689 0.00 2019-12-02 06:24:01 2019-12-02 06:25:23 t 1 1 181192 625 0.00 2019-12-02 06:22:10 2019-12-02 06:26:10 t 1 1 181193 625 0.00 2019-12-02 06:26:09 2019-12-02 06:29:40 t 1 1 181194 220 0.00 2019-12-02 06:32:55 2019-12-02 06:33:10 t 1 1 181195 551 0.00 2019-12-02 06:20:49 2019-12-02 06:38:21 t 1 1 181196 220 0.00 2019-12-02 06:43:24 2019-12-02 06:43:33 t 1 1 181197 220 0.00 2019-12-02 06:43:41 2019-12-02 06:43:58 t 1 1 181198 611 0.00 2019-12-02 06:23:25 2019-12-02 06:45:21 t 1 1 181199 611 0.00 2019-12-02 06:45:21 2019-12-02 06:46:34 t 1 1 181200 611 0.00 2019-12-02 06:46:33 2019-12-02 06:50:44 t 1 1 181201 485 0.00 2019-12-02 06:42:55 2019-12-02 06:51:17 t 1 1 181202 551 0.00 2019-12-02 06:38:21 2019-12-02 06:52:08 t 1 1 181203 611 0.00 2019-12-02 06:50:43 2019-12-02 06:52:22 t 1 1 181204 220 0.00 2019-12-02 06:54:14 2019-12-02 06:54:29 t 1 1 181205 645 0.00 2019-12-02 06:54:40 2019-12-02 06:55:19 t 1 1 181206 675 0.00 2019-12-02 06:52:31 2019-12-02 06:57:07 t 1 1 181207 220 0.00 2019-12-02 07:04:45 2019-12-02 07:04:53 t 1 1 181208 538 0.00 2019-12-02 06:50:55 2019-12-02 07:05:53 t 1 1 181209 520 0.00 2019-12-02 07:00:39 2019-12-02 07:06:28 t 1 1 181210 645 0.00 2019-12-02 06:57:18 2019-12-02 07:10:19 t 1 1 181211 611 0.00 2019-12-02 07:11:02 2019-12-02 07:12:03 t 1 1 181212 645 0.00 2019-12-02 07:14:06 2019-12-02 07:14:30 t 1 1 181217 566 0.00 2019-12-02 07:16:04 2019-12-02 07:25:19 t 1 1 181219 220 0.00 2019-12-02 07:25:47 2019-12-02 07:26:01 t 1 1 181226 625 0.00 2019-12-02 06:35:23 2019-12-02 07:36:38 t 1 1 181227 445 0.00 2019-12-02 07:36:49 2019-12-02 07:38:14 t 1 1 181228 611 0.00 2019-12-02 07:36:34 2019-12-02 07:38:30 t 1 1 181233 566 0.00 2019-12-02 07:48:50 2019-12-02 07:54:03 t 1 1 181235 220 0.00 2019-12-02 07:57:44 2019-12-02 07:57:46 t 1 1 181239 637 0.00 2019-12-01 23:06:24 2019-12-02 08:06:58 t 1 1 181244 445 0.00 2019-12-02 07:39:04 2019-12-02 08:19:39 t 1 1 181245 220 0.00 2019-12-02 08:22:23 2019-12-02 08:22:30 t 1 1 181246 637 0.00 2019-12-02 08:06:58 2019-12-02 08:26:35 t 1 1 181250 220 0.00 2019-12-02 07:53:05 2019-12-02 08:35:36 t 1 2 181261 220 0.00 2019-12-02 08:53:56 2019-12-02 08:54:56 t 1 1 181263 637 0.00 2019-12-02 08:50:21 2019-12-02 08:57:23 t 1 1 181265 591 0.00 2019-12-02 08:47:29 2019-12-02 08:59:59 t 1 1 181267 611 0.00 2019-12-02 08:57:43 2019-12-02 09:01:58 t 1 1 181268 675 0.00 2019-12-02 09:01:28 2019-12-02 09:03:27 t 1 1 181271 637 0.00 2019-12-02 09:03:45 2019-12-02 09:09:29 t 1 1 181272 220 0.00 2019-12-02 09:10:50 2019-12-02 09:11:07 t 1 1 181273 611 0.00 2019-12-02 09:01:58 2019-12-02 09:11:24 t 1 1 181274 611 0.00 2019-12-02 09:11:24 2019-12-02 09:12:56 t 1 1 181275 591 0.00 2019-12-02 08:59:59 2019-12-02 09:14:46 t 1 1 181277 637 0.00 2019-12-02 09:09:29 2019-12-02 09:16:18 t 1 1 181279 637 0.00 2019-12-02 09:16:18 2019-12-02 09:20:46 t 1 1 181281 220 0.00 2019-12-02 09:21:24 2019-12-02 09:21:25 t 1 1 181282 679 0.00 2019-12-02 09:23:44 2019-12-02 09:24:26 t 1 1 181284 637 0.00 2019-12-02 09:26:35 2019-12-02 09:31:46 t 1 1 181285 637 0.00 2019-12-02 09:31:46 2019-12-02 09:37:17 t 1 1 181287 220 0.00 2019-12-02 09:41:26 2019-12-02 09:41:42 t 1 1 181288 611 0.00 2019-12-02 09:37:54 2019-12-02 09:41:59 t 1 1 181299 615 0.00 2019-12-02 09:35:52 2019-12-02 09:49:15 t 1 1 181300 667 0.00 2019-12-02 09:48:41 2019-12-02 09:49:47 t 1 2 181302 581 0.00 2019-12-02 09:31:20 2019-12-02 09:51:19 t 1 1 181305 220 0.00 2019-12-02 09:52:26 2019-12-02 09:52:42 t 1 1 181306 611 0.00 2019-12-02 09:45:46 2019-12-02 09:53:33 t 1 1 181309 220 0.00 2019-12-02 09:52:51 2019-12-02 09:54:29 t 1 1 181312 696 0.00 2019-12-02 09:52:55 2019-12-02 09:55:42 t 1 1 181315 220 0.00 2019-12-02 09:56:35 2019-12-02 09:56:46 t 1 1 181317 671 0.00 2019-12-02 09:44:44 2019-12-02 10:00:23 t 1 1 181322 615 0.00 2019-12-02 09:49:15 2019-12-02 10:04:07 t 1 1 181323 528 0.00 2019-12-02 10:05:09 2019-12-02 10:05:52 t 1 1 181326 481 0.00 2019-12-02 08:11:18 2019-12-02 10:08:47 t 1 1 181330 528 0.00 2019-12-02 10:12:41 2019-12-02 10:13:00 t 1 1 181331 220 0.00 2019-12-02 10:13:37 2019-12-02 10:13:49 t 1 1 181336 675 0.00 2019-12-02 10:09:07 2019-12-02 10:15:14 t 1 1 181339 625 0.00 2019-12-02 10:14:56 2019-12-02 10:23:08 t 1 1 181341 611 0.00 2019-12-02 09:54:26 2019-12-02 10:23:51 t 1 1 181342 615 0.00 2019-12-02 10:19:52 2019-12-02 10:24:10 t 1 1 181343 622 0.00 2019-12-02 10:24:01 2019-12-02 10:26:15 t 1 1 181346 528 0.00 2019-12-02 10:27:15 2019-12-02 10:27:16 t 1 1 181347 220 0.00 2019-12-02 10:31:51 2019-12-02 10:32:01 t 1 1 181349 675 0.00 2019-12-02 10:22:15 2019-12-02 10:33:17 t 1 1 181352 637 0.00 2019-12-02 10:33:15 2019-12-02 10:39:47 t 1 1 181354 514 0.00 2019-12-02 10:21:34 2019-12-02 10:39:54 t 1 1 181357 445 0.00 2019-12-02 09:52:59 2019-12-02 10:43:30 t 1 1 181358 611 0.00 2019-12-02 10:38:34 2019-12-02 10:43:37 t 1 1 181362 637 0.00 2019-12-02 10:39:47 2019-12-02 10:48:48 t 1 1 181370 514 0.00 2019-12-02 10:39:54 2019-12-02 10:56:46 t 1 1 181373 696 0.00 2019-12-02 10:32:54 2019-12-02 11:00:00 t 1 1 181374 637 0.00 2019-12-02 10:54:03 2019-12-02 11:00:33 t 1 1 181376 528 0.00 2019-12-02 11:03:05 2019-12-02 11:03:35 t 1 1 181381 637 0.00 2019-12-02 11:00:33 2019-12-02 11:06:20 t 1 1 181382 514 0.00 2019-12-02 10:56:46 2019-12-02 11:09:16 t 1 1 181385 637 0.00 2019-12-02 11:06:20 2019-12-02 11:12:32 t 1 1 181386 675 0.00 2019-12-02 11:12:19 2019-12-02 11:14:44 t 1 1 181388 445 0.00 2019-12-02 11:10:13 2019-12-02 11:15:38 t 1 1 181394 445 0.00 2019-12-02 11:16:01 2019-12-02 11:19:07 t 1 1 181395 679 0.00 2019-12-02 11:19:15 2019-12-02 11:20:04 t 1 1 181398 637 0.00 2019-12-02 11:14:47 2019-12-02 11:22:21 t 1 1 181401 611 0.00 2019-12-02 11:04:31 2019-12-02 11:24:10 t 1 1 181402 445 0.00 2019-12-02 11:20:41 2019-12-02 11:26:43 t 1 1 181407 528 0.00 2019-12-02 11:32:11 2019-12-02 11:32:24 t 1 1 181408 430 0.00 2019-12-02 11:33:44 2019-12-02 11:33:44 f 1 1 181412 528 0.00 2019-12-02 11:35:13 2019-12-02 11:36:20 t 1 1 181413 675 0.00 2019-12-02 11:35:45 2019-12-02 11:37:29 t 1 1 181416 627 0.00 2019-12-02 11:35:58 2019-12-02 11:39:33 t 1 1 181419 637 0.00 2019-12-02 11:34:42 2019-12-02 11:41:22 t 1 1 181423 445 0.00 2019-12-02 11:28:36 2019-12-02 11:49:00 t 1 1 181424 220 0.00 2019-12-02 11:48:03 2019-12-02 11:49:30 t 1 1 181425 622 0.00 2019-12-02 11:43:06 2019-12-02 11:52:49 t 1 1 181426 691 0.00 2019-12-02 11:51:56 2019-12-02 11:53:19 t 1 1 181430 691 0.00 2019-12-02 11:53:39 2019-12-02 11:54:49 t 1 1 181433 485 0.00 2019-12-02 11:53:23 2019-12-02 11:56:12 t 1 1 181434 220 0.00 2019-12-02 09:17:35 2019-12-02 11:57:27 t 1 2 181436 675 0.00 2019-12-02 11:53:27 2019-12-02 11:58:01 t 1 1 181439 514 0.00 2019-12-02 11:09:16 2019-12-02 11:58:24 t 1 1 181441 637 0.00 2019-12-02 11:53:51 2019-12-02 12:00:36 t 1 1 181444 689 0.00 2019-12-02 11:58:37 2019-12-02 12:03:21 t 1 1 181445 689 0.00 2019-12-02 12:05:58 2019-12-02 12:06:04 t 1 1 181447 637 0.00 2019-12-02 12:00:36 2019-12-02 12:06:11 t 1 1 181449 520 0.00 2019-12-02 11:59:45 2019-12-02 12:09:20 t 1 1 181459 544 0.00 2019-12-02 12:06:37 2019-12-02 12:16:39 t 1 1 181461 637 0.00 2019-12-02 12:11:37 2019-12-02 12:17:52 t 1 1 181464 220 0.00 2019-12-02 12:23:02 2019-12-02 12:24:08 t 1 1 181467 687 0.00 2019-12-02 12:15:38 2019-12-02 12:24:58 t 1 1 181469 512 0.00 2019-12-02 11:39:13 2019-12-02 12:25:29 t 1 1 181470 514 0.00 2019-12-02 11:58:24 2019-12-02 12:25:36 t 1 1 181472 520 0.00 2019-12-02 12:16:15 2019-12-02 12:27:40 t 1 1 181473 637 0.00 2019-12-02 12:24:53 2019-12-02 12:28:25 t 1 1 181480 220 0.00 2019-12-02 12:33:32 2019-12-02 12:33:47 t 1 1 181482 615 0.00 2019-12-02 12:25:52 2019-12-02 12:39:45 t 1 1 181484 611 0.00 2019-12-02 12:21:47 2019-12-02 12:41:16 t 1 1 181488 645 0.00 2019-12-02 12:38:47 2019-12-02 12:44:53 t 1 1 181213 220 0.00 2019-12-02 07:15:16 2019-12-02 07:15:30 t 1 1 181214 675 0.00 2019-12-02 07:13:58 2019-12-02 07:23:06 t 1 1 181218 645 0.00 2019-12-02 07:15:55 2019-12-02 07:25:29 t 1 1 181221 445 0.00 2019-12-02 05:45:07 2019-12-02 07:33:58 t 1 1 181225 220 0.00 2019-12-02 07:36:19 2019-12-02 07:36:34 t 1 1 181229 611 0.00 2019-12-02 07:38:30 2019-12-02 07:41:43 t 1 1 181231 220 0.00 2019-12-02 07:46:50 2019-12-02 07:47:05 t 1 1 181234 220 0.00 2019-12-02 07:57:21 2019-12-02 07:57:36 t 1 1 181236 591 0.00 2019-12-02 07:48:38 2019-12-02 08:02:31 t 1 1 181240 675 0.00 2019-12-02 08:05:07 2019-12-02 08:11:08 t 1 1 181242 220 0.00 2019-12-02 08:11:51 2019-12-02 08:12:06 t 1 1 181251 220 0.00 2019-12-02 08:21:40 2019-12-02 08:38:26 t 1 2 181255 591 0.00 2019-12-02 08:27:47 2019-12-02 08:44:32 t 1 1 181258 538 0.00 2019-12-02 08:21:09 2019-12-02 08:47:25 t 1 1 181259 637 0.00 2019-12-02 08:40:21 2019-12-02 08:50:21 t 1 1 181262 220 0.00 2019-12-02 08:40:51 2019-12-02 08:57:14 t 1 2 181269 637 0.00 2019-12-02 08:57:59 2019-12-02 09:03:45 t 1 1 181278 416 0.00 2019-12-02 09:16:52 2019-12-02 09:16:52 f 1 1 181286 611 0.00 2019-12-02 09:25:19 2019-12-02 09:37:54 t 1 1 181289 220 0.00 2019-12-02 09:41:51 2019-12-02 09:42:07 t 1 1 181291 667 0.00 2019-12-02 09:41:39 2019-12-02 09:42:43 t 1 2 181293 591 0.00 2019-12-02 09:14:46 2019-12-02 09:43:56 t 1 1 181295 611 0.00 2019-12-02 09:41:58 2019-12-02 09:45:47 t 1 1 181296 528 0.00 2019-12-02 09:41:34 2019-12-02 09:46:37 t 1 1 181298 637 0.00 2019-12-02 09:37:17 2019-12-02 09:49:04 t 1 1 181307 528 0.00 2019-12-02 09:48:39 2019-12-02 09:54:13 t 1 1 181310 645 0.00 2019-12-02 09:50:03 2019-12-02 09:54:58 t 1 1 181311 675 0.00 2019-12-02 09:30:56 2019-12-02 09:55:24 t 1 1 181313 637 0.00 2019-12-02 09:49:04 2019-12-02 09:55:50 t 1 1 181314 498 0.00 2019-12-02 09:38:24 2019-12-02 09:56:29 t 1 2 181319 694 0.00 2019-12-02 09:54:21 2019-12-02 10:02:37 t 1 1 181324 637 0.00 2019-12-02 10:02:55 2019-12-02 10:08:10 t 1 1 181325 220 0.00 2019-12-02 10:07:06 2019-12-02 10:08:30 t 1 1 181327 528 0.00 2019-12-02 10:09:31 2019-12-02 10:09:43 t 1 1 181332 578 0.00 2019-12-01 23:09:36 2019-12-02 10:14:12 t 1 1 181335 625 0.00 2019-12-02 10:12:25 2019-12-02 10:14:56 t 1 1 181337 637 0.00 2019-12-02 10:14:12 2019-12-02 10:20:25 t 1 1 181338 514 0.00 2019-12-02 01:25:50 2019-12-02 10:21:34 t 1 1 181340 528 0.00 2019-12-02 10:22:28 2019-12-02 10:23:14 t 1 1 181345 220 0.00 2019-12-02 10:24:10 2019-12-02 10:26:30 t 1 1 181351 645 0.00 2019-12-02 10:29:51 2019-12-02 10:34:47 t 1 1 181355 591 0.00 2019-12-02 09:44:53 2019-12-02 10:42:38 t 1 1 181360 220 0.00 2019-12-02 10:48:31 2019-12-02 10:48:40 t 1 1 181364 512 0.00 2019-12-02 10:43:34 2019-12-02 10:50:07 t 1 1 181368 637 0.00 2019-12-02 10:48:48 2019-12-02 10:54:03 t 1 1 181377 671 0.00 2019-12-02 11:02:01 2019-12-02 11:03:56 t 1 1 181378 611 0.00 2019-12-02 10:53:10 2019-12-02 11:04:31 t 1 1 181380 687 0.00 2019-12-02 11:04:57 2019-12-02 11:06:07 t 1 1 181383 220 0.00 2019-12-02 11:09:34 2019-12-02 11:09:42 t 1 1 181387 637 0.00 2019-12-02 11:12:32 2019-12-02 11:14:47 t 1 1 181392 679 0.00 2019-12-02 11:17:45 2019-12-02 11:17:58 t 1 1 181393 679 0.00 2019-12-02 11:18:33 2019-12-02 11:18:52 t 1 1 181396 220 0.00 2019-12-02 11:20:06 2019-12-02 11:20:23 t 1 1 181397 622 0.00 2019-12-02 11:16:38 2019-12-02 11:21:27 t 1 1 181405 691 0.00 2019-12-02 11:24:58 2019-12-02 11:29:43 t 1 1 181410 611 0.00 2019-12-02 11:26:49 2019-12-02 11:35:06 t 1 1 181414 220 0.00 2019-12-02 11:37:20 2019-12-02 11:37:39 t 1 1 181415 512 0.00 2019-12-02 11:06:01 2019-12-02 11:39:14 t 1 1 181417 625 0.00 2019-12-02 10:23:57 2019-12-02 11:40:15 t 1 1 181418 687 0.00 2019-12-02 11:18:55 2019-12-02 11:41:12 t 1 1 181420 622 0.00 2019-12-02 11:27:13 2019-12-02 11:43:06 t 1 1 181422 637 0.00 2019-12-02 11:41:22 2019-12-02 11:47:20 t 1 1 181427 691 0.00 2019-12-02 11:53:19 2019-12-02 11:53:39 t 1 1 181437 687 0.00 2019-12-02 11:41:28 2019-12-02 11:58:12 t 1 1 181438 656 0.00 2019-12-02 11:15:18 2019-12-02 11:58:22 t 1 1 181443 691 0.00 2019-12-02 12:01:56 2019-12-02 12:03:16 t 1 1 181448 220 0.00 2019-12-02 12:05:46 2019-12-02 12:06:47 t 1 1 181450 689 0.00 2019-12-02 12:11:05 2019-12-02 12:11:12 t 1 1 181451 520 0.00 2019-12-02 12:09:19 2019-12-02 12:11:21 t 1 1 181454 220 0.00 2019-12-02 12:12:20 2019-12-02 12:13:38 t 1 1 181455 687 0.00 2019-12-02 11:58:12 2019-12-02 12:14:25 t 1 1 181456 631 0.00 2019-12-02 12:12:17 2019-12-02 12:15:20 t 1 1 181458 689 0.00 2019-12-02 12:16:13 2019-12-02 12:16:20 t 1 1 181463 481 0.00 2019-12-02 10:08:47 2019-12-02 12:23:40 t 1 1 181466 622 0.00 2019-12-02 12:00:34 2019-12-02 12:24:56 t 1 1 181468 591 0.00 2019-12-02 11:06:33 2019-12-02 12:25:07 t 1 1 181474 607 0.00 2019-12-02 10:05:19 2019-12-02 12:29:33 t 1 1 181477 622 0.00 2019-12-02 12:28:53 2019-12-02 12:31:24 t 1 1 181478 622 0.00 2019-12-02 12:32:22 2019-12-02 12:33:45 t 1 1 181481 637 0.00 2019-12-02 12:31:35 2019-12-02 12:36:23 t 1 1 181483 694 0.00 2019-12-02 12:38:20 2019-12-02 12:40:49 t 1 1 181485 637 0.00 2019-12-02 12:36:23 2019-12-02 12:42:38 t 1 1 181487 220 0.00 2019-12-02 12:44:02 2019-12-02 12:44:17 t 1 1 181497 679 0.00 2019-12-02 12:48:32 2019-12-02 12:49:32 t 1 1 181502 637 0.00 2019-12-02 12:47:19 2019-12-02 12:53:12 t 1 1 181503 220 0.00 2019-12-02 12:54:32 2019-12-02 12:55:37 t 1 1 181505 675 0.00 2019-12-02 12:47:31 2019-12-02 12:56:20 t 1 1 181507 528 0.00 2019-12-02 12:57:17 2019-12-02 12:57:19 t 1 1 181509 631 0.00 2019-12-02 12:57:51 2019-12-02 12:57:54 t 1 1 181510 631 0.00 2019-12-02 12:58:48 2019-12-02 12:58:57 t 1 1 181514 611 0.00 2019-12-02 12:57:18 2019-12-02 13:00:10 t 1 1 181517 591 0.00 2019-12-02 12:25:07 2019-12-02 13:02:04 t 1 1 181518 528 0.00 2019-12-02 13:02:24 2019-12-02 13:02:41 t 1 1 181528 566 0.00 2019-12-02 12:52:11 2019-12-02 13:09:14 t 1 1 181529 220 0.00 2019-12-02 13:09:42 2019-12-02 13:09:43 t 1 1 181537 528 0.00 2019-12-02 13:13:31 2019-12-02 13:15:23 t 1 1 181540 635 0.00 2019-12-02 13:12:37 2019-12-02 13:16:40 t 1 1 181543 456 0.00 2019-12-02 12:34:17 2019-12-02 13:18:01 t 1 1 181546 637 0.00 2019-12-02 13:13:25 2019-12-02 13:19:41 t 1 1 181549 611 0.00 2019-12-02 13:11:06 2019-12-02 13:21:04 t 1 1 181552 656 0.00 2019-12-02 11:58:22 2019-12-02 13:22:10 t 1 1 181554 220 0.00 2019-12-02 13:23:18 2019-12-02 13:23:26 t 1 1 181556 520 0.00 2019-12-02 13:21:47 2019-12-02 13:25:36 t 1 1 181562 220 0.00 2019-12-02 13:31:05 2019-12-02 13:31:20 t 1 1 181563 637 0.00 2019-12-02 13:25:38 2019-12-02 13:32:16 t 1 1 181565 220 0.00 2019-12-02 13:31:31 2019-12-02 13:33:31 t 1 1 181567 220 0.00 2019-12-02 13:37:51 2019-12-02 13:38:08 t 1 1 181215 487 0.00 2019-12-01 21:41:15 2019-12-02 07:23:08 t 1 2 181216 611 0.00 2019-12-02 07:19:43 2019-12-02 07:25:09 t 1 1 181220 611 0.00 2019-12-02 07:31:27 2019-12-02 07:33:58 t 1 1 181222 566 0.00 2019-12-02 07:25:19 2019-12-02 07:34:11 t 1 1 181223 445 0.00 2019-12-02 07:33:58 2019-12-02 07:36:01 t 1 1 181224 445 0.00 2019-12-02 07:35:17 2019-12-02 07:36:28 t 1 1 181230 611 0.00 2019-12-02 07:41:43 2019-12-02 07:42:01 t 1 1 181232 566 0.00 2019-12-02 07:34:11 2019-12-02 07:48:50 t 1 1 181237 220 0.00 2019-12-02 08:04:12 2019-12-02 08:04:22 t 1 1 181238 220 0.00 2019-12-02 08:04:38 2019-12-02 08:06:28 t 1 1 181241 625 0.00 2019-12-02 07:36:37 2019-12-02 08:11:51 t 1 1 181243 220 0.00 2019-12-02 07:51:03 2019-12-02 08:19:27 t 1 2 181247 625 0.00 2019-12-02 08:11:51 2019-12-02 08:27:49 t 1 1 181248 220 0.00 2019-12-02 08:32:53 2019-12-02 08:33:08 t 1 1 181249 637 0.00 2019-12-02 08:26:35 2019-12-02 08:34:51 t 1 1 181252 637 0.00 2019-12-02 08:34:51 2019-12-02 08:40:21 t 1 1 181253 445 0.00 2019-12-02 08:20:18 2019-12-02 08:41:01 t 1 1 181254 220 0.00 2019-12-02 08:43:24 2019-12-02 08:43:32 t 1 1 181256 611 0.00 2019-12-02 08:28:34 2019-12-02 08:45:49 t 1 1 181257 445 0.00 2019-12-02 08:41:37 2019-12-02 08:46:46 t 1 1 181260 625 0.00 2019-12-02 08:27:49 2019-12-02 08:54:40 t 1 1 181264 611 0.00 2019-12-02 08:45:49 2019-12-02 08:57:43 t 1 1 181266 220 0.00 2019-12-02 09:00:18 2019-12-02 09:00:31 t 1 1 181270 691 0.00 2019-12-02 09:08:10 2019-12-02 09:09:24 t 1 1 181276 625 0.00 2019-12-02 09:10:25 2019-12-02 09:15:27 t 1 1 181280 611 0.00 2019-12-02 09:12:55 2019-12-02 09:21:06 t 1 1 181283 637 0.00 2019-12-02 09:20:46 2019-12-02 09:26:35 t 1 1 181290 694 0.00 2019-12-02 09:22:22 2019-12-02 09:42:15 t 1 1 181292 671 0.00 2019-12-02 09:39:59 2019-12-02 09:43:19 t 1 1 181294 445 0.00 2019-12-02 08:46:45 2019-12-02 09:44:08 t 1 1 181297 667 0.00 2019-12-02 09:45:38 2019-12-02 09:46:40 t 1 2 181301 667 0.00 2019-12-02 09:50:10 2019-12-02 09:51:13 t 1 2 181303 445 0.00 2019-12-02 09:44:08 2019-12-02 09:52:12 t 1 1 181304 694 0.00 2019-12-02 09:46:24 2019-12-02 09:52:27 t 1 1 181308 611 0.00 2019-12-02 09:53:33 2019-12-02 09:54:26 t 1 1 181316 528 0.00 2019-12-02 09:59:12 2019-12-02 09:59:30 t 1 1 181318 696 0.00 2019-12-02 09:55:41 2019-12-02 10:02:09 t 1 1 181320 637 0.00 2019-12-02 09:55:50 2019-12-02 10:02:54 t 1 1 181321 671 0.00 2019-12-02 10:00:22 2019-12-02 10:03:48 t 1 1 181328 625 0.00 2019-12-02 09:15:26 2019-12-02 10:10:15 t 1 1 181329 528 0.00 2019-12-02 10:11:04 2019-12-02 10:12:43 t 1 1 181333 637 0.00 2019-12-02 10:08:11 2019-12-02 10:14:12 t 1 1 181334 622 0.00 2019-12-02 10:12:07 2019-12-02 10:14:26 t 1 1 181344 637 0.00 2019-12-02 10:20:25 2019-12-02 10:26:25 t 1 1 181348 637 0.00 2019-12-02 10:26:25 2019-12-02 10:33:15 t 1 1 181350 528 0.00 2019-12-02 10:32:38 2019-12-02 10:33:34 t 1 1 181353 220 0.00 2019-12-02 10:39:43 2019-12-02 10:39:53 t 1 1 181356 220 0.00 2019-12-02 10:41:53 2019-12-02 10:42:54 t 1 1 181359 675 0.00 2019-12-02 10:34:57 2019-12-02 10:46:23 t 1 1 181361 591 0.00 2019-12-02 10:46:54 2019-12-02 10:48:48 t 1 1 181363 498 0.00 2019-12-02 10:25:58 2019-12-02 10:49:09 t 1 2 181365 528 0.00 2019-12-02 10:38:36 2019-12-02 10:51:42 t 1 1 181366 581 0.00 2019-12-02 10:43:06 2019-12-02 10:52:55 t 1 1 181367 611 0.00 2019-12-02 10:43:37 2019-12-02 10:53:11 t 1 1 181369 528 0.00 2019-12-02 10:53:07 2019-12-02 10:56:32 t 1 1 181371 220 0.00 2019-12-02 10:59:01 2019-12-02 10:59:15 t 1 1 181372 675 0.00 2019-12-02 10:55:56 2019-12-02 10:59:55 t 1 1 181375 671 0.00 2019-12-02 10:51:51 2019-12-02 11:02:02 t 1 1 181379 512 0.00 2019-12-02 11:00:48 2019-12-02 11:05:31 t 1 1 181384 445 0.00 2019-12-02 10:43:29 2019-12-02 11:10:12 t 1 1 181389 544 0.00 2019-12-02 11:08:18 2019-12-02 11:16:02 t 1 1 181390 622 0.00 2019-12-02 10:59:54 2019-12-02 11:16:38 t 1 1 181391 679 0.00 2019-12-02 11:14:02 2019-12-02 11:17:40 t 1 1 181399 528 0.00 2019-12-02 11:13:14 2019-12-02 11:22:57 t 1 1 181400 528 0.00 2019-12-02 11:23:17 2019-12-02 11:23:38 t 1 1 181403 637 0.00 2019-12-02 11:22:21 2019-12-02 11:28:49 t 1 1 181404 528 0.00 2019-12-02 11:28:41 2019-12-02 11:29:08 t 1 1 181406 220 0.00 2019-12-02 11:30:44 2019-12-02 11:30:46 t 1 1 181409 637 0.00 2019-12-02 11:28:49 2019-12-02 11:34:42 t 1 1 181411 675 0.00 2019-12-02 11:28:50 2019-12-02 11:35:07 t 1 1 181421 544 0.00 2019-12-02 11:16:02 2019-12-02 11:44:22 t 1 1 181428 637 0.00 2019-12-02 11:47:20 2019-12-02 11:53:51 t 1 1 181429 671 0.00 2019-12-02 11:49:58 2019-12-02 11:54:23 t 1 1 181431 645 0.00 2019-12-02 11:48:48 2019-12-02 11:55:15 t 1 1 181432 220 0.00 2019-12-02 11:55:15 2019-12-02 11:55:24 t 1 1 181435 689 0.00 2019-12-02 11:49:48 2019-12-02 11:57:45 t 1 1 181440 622 0.00 2019-12-02 11:57:37 2019-12-02 12:00:15 t 1 1 181442 611 0.00 2019-12-02 11:52:20 2019-12-02 12:02:02 t 1 1 181446 611 0.00 2019-12-02 12:02:02 2019-12-02 12:06:06 t 1 1 181452 637 0.00 2019-12-02 12:06:11 2019-12-02 12:11:37 t 1 1 181453 445 0.00 2019-12-02 11:49:03 2019-12-02 12:12:15 t 1 1 181457 520 0.00 2019-12-02 12:11:21 2019-12-02 12:15:21 t 1 1 181460 611 0.00 2019-12-02 12:06:06 2019-12-02 12:17:26 t 1 1 181462 689 0.00 2019-12-02 12:21:20 2019-12-02 12:21:26 t 1 1 181465 637 0.00 2019-12-02 12:17:52 2019-12-02 12:24:53 t 1 1 181471 689 0.00 2019-12-02 12:24:57 2019-12-02 12:26:10 t 1 1 181475 512 0.00 2019-12-02 12:25:29 2019-12-02 12:30:18 t 1 1 181476 637 0.00 2019-12-02 12:28:25 2019-12-02 12:30:51 t 1 1 181479 671 0.00 2019-12-02 12:29:01 2019-12-02 12:33:46 t 1 1 181486 675 0.00 2019-12-02 12:42:31 2019-12-02 12:43:55 t 1 1 181489 637 0.00 2019-12-02 12:42:38 2019-12-02 12:45:06 t 1 1 181491 696 0.00 2019-12-02 12:13:40 2019-12-02 12:46:26 t 1 1 181492 637 0.00 2019-12-02 12:45:06 2019-12-02 12:47:20 t 1 1 181494 611 0.00 2019-12-02 12:41:16 2019-12-02 12:47:37 t 1 1 181496 481 0.00 2019-12-02 12:23:47 2019-12-02 12:49:29 t 1 1 181498 627 0.00 2019-12-02 12:46:23 2019-12-02 12:49:52 t 1 1 181499 220 0.00 2019-12-02 12:45:58 2019-12-02 12:50:30 t 1 2 181500 631 0.00 2019-12-02 12:51:37 2019-12-02 12:51:48 t 1 1 181504 528 0.00 2019-12-02 12:48:10 2019-12-02 12:56:02 t 1 1 181508 445 0.00 2019-12-02 12:12:14 2019-12-02 12:57:23 t 1 1 181511 520 0.00 2019-12-02 12:45:34 2019-12-02 12:59:36 t 1 1 181513 637 0.00 2019-12-02 12:53:12 2019-12-02 12:59:53 t 1 1 181520 220 0.00 2019-12-02 13:00:11 2019-12-02 13:03:27 t 1 1 181522 637 0.00 2019-12-02 12:59:53 2019-12-02 13:06:51 t 1 1 181523 514 0.00 2019-12-02 13:06:30 2019-12-02 13:07:47 t 1 1 181524 631 0.00 2019-12-02 13:08:00 2019-12-02 13:08:02 t 1 1 181525 528 0.00 2019-12-02 13:08:04 2019-12-02 13:08:27 t 1 1 181490 520 0.00 2019-12-02 12:27:39 2019-12-02 12:45:34 t 1 1 181493 631 0.00 2019-12-02 12:45:57 2019-12-02 12:47:21 t 1 1 181495 514 0.00 2019-12-02 12:25:32 2019-12-02 12:48:42 t 1 1 181501 631 0.00 2019-12-02 12:52:23 2019-12-02 12:52:46 t 1 1 181506 514 0.00 2019-12-02 12:53:12 2019-12-02 12:56:27 t 1 1 181512 481 0.00 2019-12-02 12:49:29 2019-12-02 12:59:43 t 1 1 181515 445 0.00 2019-12-02 12:59:04 2019-12-02 13:00:12 t 1 1 181516 528 0.00 2019-12-02 13:01:10 2019-12-02 13:01:31 t 1 1 181519 631 0.00 2019-12-02 13:02:59 2019-12-02 13:03:00 t 1 1 181521 514 0.00 2019-12-02 12:56:27 2019-12-02 13:03:31 t 1 1 181526 687 0.00 2019-12-02 12:25:34 2019-12-02 13:08:33 t 1 1 181527 631 0.00 2019-12-02 13:08:42 2019-12-02 13:08:57 t 1 1 181530 220 0.00 2019-12-02 13:09:53 2019-12-02 13:09:54 t 1 1 181532 528 0.00 2019-12-02 13:11:58 2019-12-02 13:12:36 t 1 1 181533 645 0.00 2019-12-02 13:05:49 2019-12-02 13:13:15 t 1 1 181536 694 0.00 2019-12-02 12:40:49 2019-12-02 13:14:17 t 1 1 181538 694 0.00 2019-12-02 13:14:47 2019-12-02 13:15:53 t 1 1 181539 220 0.00 2019-12-02 13:16:24 2019-12-02 13:16:33 t 1 1 181541 645 0.00 2019-12-02 13:14:19 2019-12-02 13:16:52 t 1 1 181542 694 0.00 2019-12-02 13:15:53 2019-12-02 13:17:22 t 1 1 181544 220 0.00 2019-12-02 13:16:51 2019-12-02 13:18:31 t 1 1 181553 631 0.00 2019-12-02 13:20:49 2019-12-02 13:23:24 t 1 1 181555 660 0.00 2019-12-02 12:53:31 2019-12-02 13:24:57 t 1 1 181560 514 0.00 2019-12-02 13:25:41 2019-12-02 13:27:38 t 1 1 181561 660 0.00 2019-12-02 13:24:58 2019-12-02 13:28:24 t 1 1 181566 611 0.00 2019-12-02 13:21:04 2019-12-02 13:37:21 t 1 1 181569 611 0.00 2019-12-02 13:37:20 2019-12-02 13:40:05 t 1 1 181571 637 0.00 2019-12-02 13:32:16 2019-12-02 13:42:13 t 1 1 181573 645 0.00 2019-12-02 13:37:54 2019-12-02 13:44:22 t 1 1 181575 687 0.00 2019-12-02 13:08:33 2019-12-02 13:46:45 t 1 1 181576 456 0.00 2019-12-02 13:20:58 2019-12-02 13:46:59 t 1 1 181583 451 0.00 2019-12-02 13:50:43 2019-12-02 13:54:13 t 1 1 181587 562 0.00 2019-12-02 13:22:17 2019-12-02 13:56:19 t 1 1 181591 485 0.00 2019-12-02 13:56:29 2019-12-02 13:58:56 t 1 1 181592 445 0.00 2019-12-02 13:00:43 2019-12-02 13:59:16 t 1 1 181596 637 0.00 2019-12-02 13:51:47 2019-12-02 14:05:18 t 1 1 181606 487 0.00 2019-12-02 12:37:03 2019-12-02 14:12:17 t 1 2 181615 631 0.00 2019-12-02 14:20:11 2019-12-02 14:20:35 t 1 1 181618 562 0.00 2019-12-02 14:10:14 2019-12-02 14:22:33 t 1 1 181619 456 0.00 2019-12-02 14:24:14 2019-12-02 14:25:09 t 1 1 181622 631 0.00 2019-12-02 14:25:24 2019-12-02 14:25:37 t 1 1 181625 581 0.00 2019-12-02 14:15:05 2019-12-02 14:27:07 t 1 1 181626 622 0.00 2019-12-02 12:34:02 2019-12-02 14:28:21 t 1 1 181628 696 0.00 2019-12-02 14:08:13 2019-12-02 14:28:48 t 1 1 181633 220 0.00 2019-12-02 14:35:31 2019-12-02 14:35:45 t 1 1 181634 451 0.00 2019-12-02 14:11:43 2019-12-02 14:37:25 t 1 1 181636 687 0.00 2019-12-02 14:32:08 2019-12-02 14:39:29 t 1 1 181639 456 0.00 2019-12-02 14:29:36 2019-12-02 14:44:28 t 1 1 181641 687 0.00 2019-12-02 14:44:58 2019-12-02 14:45:05 t 1 1 181642 220 0.00 2019-12-02 14:46:02 2019-12-02 14:46:23 t 1 1 181657 611 0.00 2019-12-02 14:55:10 2019-12-02 14:57:35 t 1 1 181659 562 0.00 2019-12-02 14:56:34 2019-12-02 15:03:05 t 1 1 181661 220 0.00 2019-12-02 15:06:44 2019-12-02 15:07:03 t 1 1 181667 637 0.00 2019-12-02 15:09:18 2019-12-02 15:15:24 t 1 1 181668 520 0.00 2019-12-02 14:55:58 2019-12-02 15:17:18 t 1 1 181669 220 0.00 2019-12-02 15:17:19 2019-12-02 15:17:32 t 1 1 181671 568 0.00 2019-12-02 15:19:00 2019-12-02 15:19:36 t 1 1 181673 631 0.00 2019-12-02 15:20:34 2019-12-02 15:21:08 t 1 1 181679 562 0.00 2019-12-02 15:25:40 2019-12-02 15:25:42 t 1 1 181681 645 0.00 2019-12-02 15:25:22 2019-12-02 15:27:00 t 1 1 181685 687 0.00 2019-12-02 15:28:17 2019-12-02 15:29:13 t 1 1 181687 687 0.00 2019-12-02 15:29:37 2019-12-02 15:33:23 t 1 1 181688 611 0.00 2019-12-02 15:19:12 2019-12-02 15:35:01 t 1 1 181692 611 0.00 2019-12-02 15:36:09 2019-12-02 15:38:23 t 1 1 181700 687 0.00 2019-12-02 15:45:23 2019-12-02 15:46:11 t 1 1 181701 611 0.00 2019-12-02 15:43:33 2019-12-02 15:46:43 t 1 1 181704 551 0.00 2019-12-02 06:52:08 2019-12-02 15:49:15 t 1 1 181706 692 0.00 2019-12-02 15:51:23 2019-12-02 15:52:38 t 1 1 181707 692 0.00 2019-12-02 15:52:44 2019-12-02 15:53:46 t 1 1 181712 485 0.00 2019-12-02 15:40:10 2019-12-02 15:55:44 t 1 1 181714 637 0.00 2019-12-02 15:31:51 2019-12-02 15:56:22 t 1 1 181716 611 0.00 2019-12-02 15:54:53 2019-12-02 15:57:04 t 1 1 181719 562 0.00 2019-12-02 15:58:18 2019-12-02 15:58:49 t 1 1 181723 692 0.00 2019-12-02 15:59:19 2019-12-02 16:00:00 t 1 1 181726 692 0.00 2019-12-02 16:00:41 2019-12-02 16:01:25 t 1 1 181728 687 0.00 2019-12-02 15:46:10 2019-12-02 16:02:59 t 1 1 181734 675 0.00 2019-12-02 16:03:29 2019-12-02 16:05:12 t 1 1 181735 562 0.00 2019-12-02 16:04:30 2019-12-02 16:05:33 t 1 1 181736 220 0.00 2019-12-02 16:06:45 2019-12-02 16:07:08 t 1 1 181740 562 0.00 2019-12-02 16:10:41 2019-12-02 16:11:06 t 1 1 181744 611 0.00 2019-12-02 16:01:19 2019-12-02 16:14:09 t 1 1 181745 544 0.00 2019-12-02 16:13:09 2019-12-02 16:14:46 t 1 1 181752 544 0.00 2019-12-02 16:16:28 2019-12-02 16:19:06 t 1 1 181756 485 0.00 2019-12-02 16:19:43 2019-12-02 16:22:05 t 1 1 181769 562 0.00 2019-12-02 16:28:59 2019-12-02 16:29:12 t 1 1 181770 485 0.00 2019-12-02 16:22:10 2019-12-02 16:29:27 t 1 1 181776 637 0.00 2019-12-02 16:25:38 2019-12-02 16:34:09 t 1 1 181779 578 0.00 2019-12-02 16:19:12 2019-12-02 16:35:45 t 1 1 181783 485 0.00 2019-12-02 16:29:27 2019-12-02 16:39:57 t 1 1 181784 637 0.00 2019-12-02 16:38:18 2019-12-02 16:42:21 t 1 1 181785 220 0.00 2019-12-02 16:42:22 2019-12-02 16:42:33 t 1 1 181789 687 0.00 2019-12-02 16:44:07 2019-12-02 16:44:10 t 1 1 181790 675 0.00 2019-12-02 16:42:12 2019-12-02 16:44:28 t 1 1 181792 675 0.00 2019-12-02 16:44:27 2019-12-02 16:46:28 t 1 1 181797 691 0.00 2019-12-02 13:32:34 2019-12-02 16:50:59 t 1 1 181798 637 0.00 2019-12-02 16:47:47 2019-12-02 16:52:46 t 1 1 181799 671 0.00 2019-12-02 16:43:48 2019-12-02 16:54:09 t 1 1 181806 445 0.00 2019-12-02 16:59:03 2019-12-02 17:01:05 t 1 1 181807 562 0.00 2019-12-02 16:59:28 2019-12-02 17:01:58 t 1 1 181811 687 0.00 2019-12-02 16:48:45 2019-12-02 17:05:15 t 1 1 181816 637 0.00 2019-12-02 16:58:45 2019-12-02 17:07:12 t 1 1 181823 562 0.00 2019-12-02 17:11:02 2019-12-02 17:11:13 t 1 1 181829 544 0.00 2019-12-02 16:56:31 2019-12-02 17:16:12 t 1 1 181830 562 0.00 2019-12-02 17:16:57 2019-12-02 17:17:23 t 1 1 181834 611 0.00 2019-12-02 17:14:37 2019-12-02 17:20:05 t 1 1 181837 675 0.00 2019-12-02 17:19:11 2019-12-02 17:20:27 t 1 1 181839 581 0.00 2019-12-02 17:20:39 2019-12-02 17:20:47 t 1 1 181531 538 0.00 2019-12-02 12:43:46 2019-12-02 13:10:17 t 1 1 181534 637 0.00 2019-12-02 13:06:51 2019-12-02 13:13:25 t 1 1 181535 696 0.00 2019-12-02 13:07:56 2019-12-02 13:13:36 t 1 1 181545 564 0.00 2019-12-02 11:27:43 2019-12-02 13:19:28 t 1 1 181547 694 0.00 2019-12-02 13:17:22 2019-12-02 13:20:30 t 1 1 181548 671 0.00 2019-12-02 13:10:06 2019-12-02 13:21:03 t 1 1 181550 220 0.00 2019-12-02 13:06:41 2019-12-02 13:21:05 t 1 2 181551 520 0.00 2019-12-02 12:59:36 2019-12-02 13:21:47 t 1 1 181557 637 0.00 2019-12-02 13:19:41 2019-12-02 13:25:38 t 1 1 181558 514 0.00 2019-12-02 13:15:13 2019-12-02 13:25:41 t 1 1 181559 564 0.00 2019-12-02 13:19:28 2019-12-02 13:27:33 t 1 1 181564 691 0.00 2019-12-02 13:31:59 2019-12-02 13:32:34 t 1 1 181568 631 0.00 2019-12-02 13:36:53 2019-12-02 13:38:12 t 1 1 181570 611 0.00 2019-12-02 13:40:05 2019-12-02 13:41:50 t 1 1 181572 637 0.00 2019-12-02 13:42:13 2019-12-02 13:43:12 t 1 1 181577 611 0.00 2019-12-02 13:45:22 2019-12-02 13:48:52 t 1 1 181582 591 0.00 2019-12-02 13:12:53 2019-12-02 13:52:52 t 1 1 181585 456 0.00 2019-12-02 13:46:58 2019-12-02 13:56:08 t 1 1 181589 220 0.00 2019-12-02 13:37:39 2019-12-02 13:57:03 t 1 2 181593 631 0.00 2019-12-02 13:59:15 2019-12-02 14:02:04 t 1 1 181595 311 0.00 2019-12-02 13:30:11 2019-12-02 14:02:43 t 1 2 181597 220 0.00 2019-12-02 14:05:28 2019-12-02 14:05:29 t 1 1 181599 671 0.00 2019-12-02 13:54:07 2019-12-02 14:07:59 t 1 1 181603 611 0.00 2019-12-02 13:56:09 2019-12-02 14:10:40 t 1 1 181607 581 0.00 2019-12-02 14:09:10 2019-12-02 14:12:39 t 1 1 181608 220 0.00 2019-12-02 14:11:05 2019-12-02 14:13:31 t 1 1 181609 687 0.00 2019-12-02 14:08:36 2019-12-02 14:14:44 t 1 1 181614 220 0.00 2019-12-02 14:18:28 2019-12-02 14:20:31 t 1 1 181621 687 0.00 2019-12-02 14:21:43 2019-12-02 14:25:31 t 1 1 181624 456 0.00 2019-12-02 14:25:08 2019-12-02 14:27:00 t 1 1 181627 637 0.00 2019-12-02 14:17:40 2019-12-02 14:28:24 t 1 1 181629 671 0.00 2019-12-02 14:29:22 2019-12-02 14:31:03 t 1 1 181631 645 0.00 2019-12-02 14:26:25 2019-12-02 14:33:30 t 1 1 181632 481 0.00 2019-12-02 12:59:52 2019-12-02 14:34:36 t 1 1 181635 562 0.00 2019-12-02 14:24:06 2019-12-02 14:37:39 t 1 1 181640 687 0.00 2019-12-02 14:40:36 2019-12-02 14:44:58 t 1 1 181643 611 0.00 2019-12-02 14:29:33 2019-12-02 14:46:31 t 1 1 181645 451 0.00 2019-12-02 14:37:25 2019-12-02 14:46:46 t 1 1 181649 512 0.00 2019-12-02 14:46:07 2019-12-02 14:51:10 t 1 1 181652 611 0.00 2019-12-02 14:46:31 2019-12-02 14:55:11 t 1 1 181653 637 0.00 2019-12-02 14:50:07 2019-12-02 14:55:36 t 1 1 181656 675 0.00 2019-12-02 14:51:00 2019-12-02 14:57:34 t 1 1 181658 631 0.00 2019-12-02 14:56:41 2019-12-02 14:59:10 t 1 1 181662 581 0.00 2019-12-02 15:00:18 2019-12-02 15:08:03 t 1 1 181666 562 0.00 2019-12-02 15:14:05 2019-12-02 15:14:45 t 1 1 181670 611 0.00 2019-12-02 15:11:06 2019-12-02 15:18:49 t 1 1 181672 520 0.00 2019-12-02 15:17:18 2019-12-02 15:20:58 t 1 1 181675 656 0.00 2019-12-02 13:22:09 2019-12-02 15:22:36 t 1 1 181676 445 0.00 2019-12-02 13:59:14 2019-12-02 15:23:10 t 1 1 181682 687 0.00 2019-12-02 15:02:48 2019-12-02 15:27:28 t 1 1 181683 220 0.00 2019-12-02 15:27:49 2019-12-02 15:28:05 t 1 1 181691 649 0.00 2019-12-02 14:23:04 2019-12-02 15:38:12 t 1 1 181694 220 0.00 2019-12-02 15:38:22 2019-12-02 15:38:36 t 1 1 181696 485 0.00 2019-12-02 15:31:41 2019-12-02 15:40:10 t 1 1 181697 445 0.00 2019-12-02 15:23:10 2019-12-02 15:40:50 t 1 1 181698 611 0.00 2019-12-02 15:38:23 2019-12-02 15:43:33 t 1 1 181702 622 0.00 2019-12-02 14:40:55 2019-12-02 15:48:05 t 1 1 181703 220 0.00 2019-12-02 15:48:53 2019-12-02 15:49:08 t 1 1 181705 445 0.00 2019-12-02 15:41:26 2019-12-02 15:52:22 t 1 1 181708 615 0.00 2019-12-02 15:52:42 2019-12-02 15:54:14 t 1 1 181713 692 0.00 2019-12-02 15:54:39 2019-12-02 15:56:01 t 1 1 181718 692 0.00 2019-12-02 15:56:56 2019-12-02 15:57:37 t 1 1 181721 692 0.00 2019-12-02 15:58:21 2019-12-02 15:59:13 t 1 1 181724 692 0.00 2019-12-02 16:00:10 2019-12-02 16:00:35 t 1 1 181730 562 0.00 2019-12-02 16:03:31 2019-12-02 16:03:49 t 1 1 181738 512 0.00 2019-12-02 16:02:34 2019-12-02 16:07:23 t 1 1 181739 485 0.00 2019-12-02 16:04:23 2019-12-02 16:10:13 t 1 1 181746 544 0.00 2019-12-02 16:14:46 2019-12-02 16:16:29 t 1 1 181748 562 0.00 2019-12-02 16:15:54 2019-12-02 16:17:05 t 1 1 181751 611 0.00 2019-12-02 16:15:33 2019-12-02 16:18:07 t 1 1 181753 578 0.00 2019-12-02 15:57:14 2019-12-02 16:19:12 t 1 1 181754 485 0.00 2019-12-02 16:10:14 2019-12-02 16:19:43 t 1 1 181757 544 0.00 2019-12-02 16:20:51 2019-12-02 16:22:07 t 1 1 181760 544 0.00 2019-12-02 16:21:54 2019-12-02 16:23:55 t 1 1 181763 687 0.00 2019-12-02 16:02:59 2019-12-02 16:25:40 t 1 1 181765 611 0.00 2019-12-02 16:18:07 2019-12-02 16:26:29 t 1 1 181767 562 0.00 2019-12-02 16:21:08 2019-12-02 16:27:33 t 1 1 181768 562 0.00 2019-12-02 16:27:53 2019-12-02 16:28:38 t 1 1 181771 671 0.00 2019-12-02 16:13:33 2019-12-02 16:29:57 t 1 1 181773 675 0.00 2019-12-02 16:29:56 2019-12-02 16:31:57 t 1 1 181774 639 0.00 2019-12-02 16:29:24 2019-12-02 16:32:22 t 1 1 181775 551 0.00 2019-12-02 16:07:19 2019-12-02 16:33:37 t 1 1 181777 220 0.00 2019-12-02 16:34:33 2019-12-02 16:34:44 t 1 1 181781 637 0.00 2019-12-02 16:34:09 2019-12-02 16:37:01 t 1 1 181788 671 0.00 2019-12-02 16:35:01 2019-12-02 16:43:48 t 1 1 181794 637 0.00 2019-12-02 16:42:21 2019-12-02 16:47:47 t 1 1 181800 615 0.00 2019-12-02 16:23:21 2019-12-02 16:54:18 t 1 1 181808 675 0.00 2019-12-02 17:00:21 2019-12-02 17:02:04 t 1 1 181812 581 0.00 2019-12-02 16:43:13 2019-12-02 17:06:22 t 1 1 181813 691 0.00 2019-12-02 17:06:08 2019-12-02 17:06:36 t 1 1 181815 691 0.00 2019-12-02 17:06:36 2019-12-02 17:07:03 t 1 1 181817 691 0.00 2019-12-02 17:07:02 2019-12-02 17:07:56 t 1 1 181819 562 0.00 2019-12-02 17:03:14 2019-12-02 17:08:21 t 1 1 181821 691 0.00 2019-12-02 17:07:56 2019-12-02 17:09:08 t 1 1 181822 562 0.00 2019-12-02 17:09:35 2019-12-02 17:10:13 t 1 1 181826 581 0.00 2019-12-02 17:07:05 2019-12-02 17:14:11 t 1 1 181827 581 0.00 2019-12-02 17:14:18 2019-12-02 17:14:26 t 1 1 181828 562 0.00 2019-12-02 17:14:59 2019-12-02 17:15:07 t 1 1 181831 615 0.00 2019-12-02 17:15:11 2019-12-02 17:17:33 t 1 1 181833 687 0.00 2019-12-02 17:05:15 2019-12-02 17:18:50 t 1 1 181835 611 0.00 2019-12-02 17:20:05 2019-12-02 17:20:09 t 1 1 181838 581 0.00 2019-12-02 17:16:20 2019-12-02 17:20:33 t 1 1 181840 581 0.00 2019-12-02 17:21:38 2019-12-02 17:22:23 t 1 1 181841 675 0.00 2019-12-02 17:24:27 2019-12-02 17:26:13 t 1 1 181842 671 0.00 2019-12-02 17:26:18 2019-12-02 17:27:55 t 1 1 181844 562 0.00 2019-12-02 17:27:48 2019-12-02 17:28:24 t 1 1 181845 645 0.00 2019-12-02 17:03:49 2019-12-02 17:29:23 t 1 1 181574 611 0.00 2019-12-02 13:41:50 2019-12-02 13:45:23 t 1 1 181578 220 0.00 2019-12-02 13:48:23 2019-12-02 13:49:31 t 1 1 181579 451 0.00 2019-12-02 13:43:55 2019-12-02 13:50:43 t 1 1 181580 637 0.00 2019-12-02 13:43:12 2019-12-02 13:51:47 t 1 1 181581 538 0.00 2019-12-02 13:43:04 2019-12-02 13:52:38 t 1 1 181584 220 0.00 2019-12-02 13:54:49 2019-12-02 13:55:10 t 1 1 181586 611 0.00 2019-12-02 13:48:52 2019-12-02 13:56:10 t 1 1 181588 687 0.00 2019-12-02 13:46:45 2019-12-02 13:56:47 t 1 1 181590 687 0.00 2019-12-02 13:56:47 2019-12-02 13:58:15 t 1 1 181594 675 0.00 2019-12-02 13:54:26 2019-12-02 14:02:30 t 1 1 181598 637 0.00 2019-12-02 14:05:18 2019-12-02 14:07:12 t 1 1 181600 696 0.00 2019-12-02 13:28:05 2019-12-02 14:08:13 t 1 1 181601 562 0.00 2019-12-02 13:56:19 2019-12-02 14:10:14 t 1 1 181602 311 0.00 2019-12-02 14:03:10 2019-12-02 14:10:30 t 1 2 181604 220 0.00 2019-12-02 14:10:55 2019-12-02 14:10:57 t 1 1 181605 451 0.00 2019-12-02 13:54:13 2019-12-02 14:11:43 t 1 1 181610 611 0.00 2019-12-02 14:13:30 2019-12-02 14:15:06 t 1 1 181611 611 0.00 2019-12-02 14:14:13 2019-12-02 14:15:31 t 1 1 181612 637 0.00 2019-12-02 14:07:51 2019-12-02 14:17:40 t 1 1 181613 220 0.00 2019-12-02 14:18:07 2019-12-02 14:18:16 t 1 1 181616 591 0.00 2019-12-02 14:07:27 2019-12-02 14:21:16 t 1 1 181617 456 0.00 2019-12-02 13:56:07 2019-12-02 14:22:04 t 1 1 181620 220 0.00 2019-12-02 14:24:58 2019-12-02 14:25:10 t 1 1 181623 631 0.00 2019-12-02 14:26:17 2019-12-02 14:26:44 t 1 1 181630 696 0.00 2019-12-02 14:28:49 2019-12-02 14:31:42 t 1 1 181637 622 0.00 2019-12-02 14:28:22 2019-12-02 14:40:55 t 1 1 181638 675 0.00 2019-12-02 14:24:49 2019-12-02 14:43:55 t 1 1 181644 220 0.00 2019-12-02 14:46:32 2019-12-02 14:46:33 t 1 1 181646 562 0.00 2019-12-02 14:37:39 2019-12-02 14:49:35 t 1 1 181647 637 0.00 2019-12-02 14:42:48 2019-12-02 14:50:06 t 1 1 181648 562 0.00 2019-12-02 14:50:27 2019-12-02 14:51:05 t 1 1 181650 220 0.00 2019-12-02 14:49:47 2019-12-02 14:51:31 t 1 1 181651 562 0.00 2019-12-02 14:51:33 2019-12-02 14:52:33 t 1 1 181654 538 0.00 2019-12-02 14:49:38 2019-12-02 14:56:13 t 1 1 181655 220 0.00 2019-12-02 14:56:15 2019-12-02 14:56:28 t 1 1 181660 562 0.00 2019-12-02 15:03:20 2019-12-02 15:04:49 t 1 1 181663 637 0.00 2019-12-02 15:01:01 2019-12-02 15:09:18 t 1 1 181664 645 0.00 2019-12-02 15:01:51 2019-12-02 15:13:31 t 1 1 181665 481 0.00 2019-12-02 15:01:20 2019-12-02 15:14:33 t 1 1 181674 520 0.00 2019-12-02 15:20:57 2019-12-02 15:22:27 t 1 1 181677 220 0.00 2019-12-02 15:00:06 2019-12-02 15:23:29 t 1 2 181678 520 0.00 2019-12-02 15:22:27 2019-12-02 15:24:36 t 1 1 181680 637 0.00 2019-12-02 15:24:26 2019-12-02 15:25:49 t 1 1 181684 687 0.00 2019-12-02 15:27:28 2019-12-02 15:28:18 t 1 1 181686 485 0.00 2019-12-02 15:15:01 2019-12-02 15:31:41 t 1 1 181689 611 0.00 2019-12-02 15:35:00 2019-12-02 15:36:09 t 1 1 181690 503 0.00 2019-12-02 15:31:21 2019-12-02 15:37:48 t 1 1 181693 220 0.00 2019-12-02 14:33:30 2019-12-02 15:38:36 t 1 2 181695 578 0.00 2019-12-02 10:15:08 2019-12-02 15:39:54 t 1 1 181699 503 0.00 2019-12-02 15:40:01 2019-12-02 15:44:53 t 1 1 181709 692 0.00 2019-12-02 15:53:53 2019-12-02 15:54:33 t 1 1 181710 611 0.00 2019-12-02 15:46:42 2019-12-02 15:54:54 t 1 1 181711 451 0.00 2019-12-02 14:46:46 2019-12-02 15:55:33 t 1 1 181715 692 0.00 2019-12-02 15:56:07 2019-12-02 15:56:50 t 1 1 181717 578 0.00 2019-12-02 15:39:54 2019-12-02 15:57:14 t 1 1 181720 627 0.00 2019-12-02 15:53:41 2019-12-02 15:59:01 t 1 1 181722 220 0.00 2019-12-02 15:59:24 2019-12-02 15:59:25 t 1 1 181725 611 0.00 2019-12-02 15:57:26 2019-12-02 16:01:20 t 1 1 181727 692 0.00 2019-12-02 16:01:31 2019-12-02 16:02:16 t 1 1 181729 692 0.00 2019-12-02 16:02:23 2019-12-02 16:03:06 t 1 1 181731 692 0.00 2019-12-02 16:03:12 2019-12-02 16:03:57 t 1 1 181732 485 0.00 2019-12-02 15:55:44 2019-12-02 16:04:23 t 1 1 181733 692 0.00 2019-12-02 16:04:03 2019-12-02 16:04:50 t 1 1 181737 551 0.00 2019-12-02 15:49:15 2019-12-02 16:07:19 t 1 1 181741 637 0.00 2019-12-02 15:56:22 2019-12-02 16:11:19 t 1 1 181742 544 0.00 2019-12-02 12:16:39 2019-12-02 16:13:09 t 1 1 181743 562 0.00 2019-12-02 16:12:30 2019-12-02 16:13:45 t 1 1 181747 637 0.00 2019-12-02 16:11:19 2019-12-02 16:16:52 t 1 1 181749 538 0.00 2019-12-02 15:02:54 2019-12-02 16:17:12 t 1 1 181750 562 0.00 2019-12-02 16:17:19 2019-12-02 16:17:40 t 1 1 181755 581 0.00 2019-12-02 16:11:53 2019-12-02 16:21:05 t 1 1 181758 581 0.00 2019-12-02 16:21:05 2019-12-02 16:22:07 t 1 1 181759 451 0.00 2019-12-02 15:55:33 2019-12-02 16:22:20 t 1 1 181761 220 0.00 2019-12-02 16:23:49 2019-12-02 16:24:12 t 1 1 181762 637 0.00 2019-12-02 16:16:52 2019-12-02 16:25:38 t 1 1 181764 679 0.00 2019-12-02 16:25:12 2019-12-02 16:26:16 t 1 1 181766 675 0.00 2019-12-02 16:24:51 2019-12-02 16:26:54 t 1 1 181772 681 0.00 2019-12-02 07:28:08 2019-12-02 16:31:19 t 1 1 181778 671 0.00 2019-12-02 16:29:57 2019-12-02 16:34:57 t 1 1 181780 538 0.00 2019-12-02 16:20:03 2019-12-02 16:35:51 t 1 1 181782 562 0.00 2019-12-02 16:39:23 2019-12-02 16:39:41 t 1 1 181786 551 0.00 2019-12-02 16:33:37 2019-12-02 16:42:59 t 1 1 181787 687 0.00 2019-12-02 16:39:17 2019-12-02 16:43:32 t 1 1 181791 544 0.00 2019-12-02 16:23:54 2019-12-02 16:45:15 t 1 1 181793 544 0.00 2019-12-02 16:45:15 2019-12-02 16:47:39 t 1 1 181795 578 0.00 2019-12-02 16:35:45 2019-12-02 16:47:56 t 1 1 181796 562 0.00 2019-12-02 16:50:02 2019-12-02 16:50:24 t 1 1 181801 544 0.00 2019-12-02 16:48:13 2019-12-02 16:55:43 t 1 1 181802 562 0.00 2019-12-02 16:55:47 2019-12-02 16:56:13 t 1 1 181803 637 0.00 2019-12-02 16:52:46 2019-12-02 16:58:45 t 1 1 181804 445 0.00 2019-12-02 15:52:40 2019-12-02 16:59:06 t 1 1 181805 639 0.00 2019-12-02 16:32:22 2019-12-02 17:00:53 t 1 1 181809 538 0.00 2019-12-02 16:58:12 2019-12-02 17:03:36 t 1 1 181810 671 0.00 2019-12-02 17:00:59 2019-12-02 17:04:59 t 1 1 181814 581 0.00 2019-12-02 17:06:27 2019-12-02 17:06:37 t 1 1 181818 679 0.00 2019-12-02 17:06:05 2019-12-02 17:08:02 t 1 1 181820 637 0.00 2019-12-02 17:07:25 2019-12-02 17:08:30 t 1 1 181824 637 0.00 2019-12-02 17:08:41 2019-12-02 17:11:53 t 1 1 181825 691 0.00 2019-12-02 17:12:07 2019-12-02 17:13:17 t 1 1 181832 637 0.00 2019-12-02 17:16:16 2019-12-02 17:18:09 t 1 1 181836 544 0.00 2019-12-02 17:16:11 2019-12-02 17:20:14 t 1 1 181843 675 0.00 2019-12-02 17:27:27 2019-12-02 17:28:02 t 1 1 181846 639 0.00 2019-12-02 17:01:05 2019-12-02 17:29:41 t 1 1 181848 544 0.00 2019-12-02 17:20:19 2019-12-02 17:30:36 t 1 1 181851 673 0.00 2019-12-02 17:31:07 2019-12-02 17:31:08 t 1 1 181856 673 0.00 2019-12-02 17:01:27 2019-12-02 17:31:48 t 1 1 181859 562 0.00 2019-12-02 17:32:14 2019-12-02 17:32:26 t 1 1 181847 562 0.00 2019-12-02 17:28:38 2019-12-02 17:30:07 t 1 1 181849 562 0.00 2019-12-02 17:31:01 2019-12-02 17:31:06 t 1 1 181852 562 0.00 2019-12-02 17:31:08 2019-12-02 17:31:12 t 1 1 181855 562 0.00 2019-12-02 17:31:44 2019-12-02 17:31:44 t 1 1 181857 581 0.00 2019-12-02 17:31:44 2019-12-02 17:32:14 t 1 1 181858 562 0.00 2019-12-02 17:31:44 2019-12-02 17:32:21 t 1 1 181861 639 0.00 2019-12-02 17:32:29 2019-12-02 17:32:41 t 1 1 181863 562 0.00 2019-12-02 17:32:41 2019-12-02 17:34:32 t 1 1 181865 673 0.00 2019-12-02 17:34:42 2019-12-02 17:35:43 t 1 1 181868 687 0.00 2019-12-02 17:18:50 2019-12-02 17:37:47 t 1 1 181869 687 0.00 2019-12-02 17:38:02 2019-12-02 17:38:35 t 1 1 181871 220 0.00 2019-12-02 17:40:34 2019-12-02 17:40:48 t 1 1 181876 656 0.00 2019-12-02 15:22:36 2019-12-02 17:46:06 t 1 1 181881 679 0.00 2019-12-02 17:50:54 2019-12-02 17:51:32 t 1 1 181887 581 0.00 2019-12-02 17:44:50 2019-12-02 17:58:51 t 1 1 181889 687 0.00 2019-12-02 17:58:17 2019-12-02 18:00:02 t 1 1 181897 520 0.00 2019-12-02 18:04:25 2019-12-02 18:07:16 t 1 1 181898 220 0.00 2019-12-02 18:08:02 2019-12-02 18:08:15 t 1 1 181900 538 0.00 2019-12-02 17:46:39 2019-12-02 18:09:54 t 1 1 181901 566 0.00 2019-12-02 18:05:01 2019-12-02 18:10:34 t 1 1 181904 220 0.00 2019-12-02 18:11:48 2019-12-02 18:12:14 t 1 1 181905 687 0.00 2019-12-02 18:09:07 2019-12-02 18:12:40 t 1 1 181908 637 0.00 2019-12-02 18:10:43 2019-12-02 18:17:02 t 1 1 181913 220 0.00 2019-12-02 18:22:35 2019-12-02 18:23:13 t 1 1 181914 696 0.00 2019-12-02 17:41:27 2019-12-02 18:25:00 t 1 1 181918 637 0.00 2019-12-02 18:22:42 2019-12-02 18:29:43 t 1 1 181919 566 0.00 2019-12-02 18:22:30 2019-12-02 18:31:25 t 1 1 181921 611 0.00 2019-12-02 18:02:52 2019-12-02 18:32:12 t 1 1 181923 520 0.00 2019-12-02 18:29:41 2019-12-02 18:33:11 t 1 1 181924 220 0.00 2019-12-02 18:33:35 2019-12-02 18:33:49 t 1 1 181927 696 0.00 2019-12-02 18:25:00 2019-12-02 18:35:28 t 1 1 181929 516 0.00 2019-12-02 18:35:50 2019-12-02 18:35:58 t 1 1 181931 696 0.00 2019-12-02 18:35:27 2019-12-02 18:38:31 t 1 1 181935 220 0.00 2019-12-02 18:44:04 2019-12-02 18:44:18 t 1 1 181939 611 0.00 2019-12-02 18:39:19 2019-12-02 18:48:17 t 1 1 181944 516 0.00 2019-12-02 18:52:45 2019-12-02 18:53:46 t 1 1 181946 220 0.00 2019-12-02 18:54:33 2019-12-02 18:54:49 t 1 1 181949 514 0.00 2019-12-02 18:20:01 2019-12-02 18:56:10 t 1 1 181950 481 0.00 2019-12-02 16:42:42 2019-12-02 18:56:13 t 1 1 181951 445 0.00 2019-12-02 18:55:23 2019-12-02 18:56:31 t 1 1 181952 445 0.00 2019-12-02 18:56:31 2019-12-02 18:57:49 t 1 1 181953 637 0.00 2019-12-02 18:36:28 2019-12-02 18:58:48 t 1 1 181955 581 0.00 2019-12-02 18:35:04 2019-12-02 19:00:59 t 1 1 181956 445 0.00 2019-12-02 18:57:49 2019-12-02 19:03:19 t 1 1 181957 611 0.00 2019-12-02 18:58:44 2019-12-02 19:03:42 t 1 1 181963 698 0.00 2019-12-02 19:09:23 2019-12-02 19:09:32 t 1 1 181972 698 0.00 2019-12-02 19:12:27 2019-12-02 19:13:33 t 1 1 181976 220 0.00 2019-12-02 19:16:48 2019-12-02 19:16:49 t 1 1 181978 698 0.00 2019-12-02 19:16:54 2019-12-02 19:17:55 t 1 1 181980 700 0.00 2019-12-02 19:13:32 2019-12-02 19:18:18 t 1 1 181985 698 0.00 2019-12-02 19:18:53 2019-12-02 19:19:28 t 1 1 181994 485 0.00 2019-12-02 19:23:06 2019-12-02 19:24:39 t 1 1 182001 456 0.00 2019-12-02 19:09:58 2019-12-02 19:33:00 t 1 1 182003 671 0.00 2019-12-02 19:27:56 2019-12-02 19:35:08 t 1 1 182007 611 0.00 2019-12-02 19:29:35 2019-12-02 19:36:57 t 1 1 182009 591 0.00 2019-12-02 18:54:11 2019-12-02 19:37:38 t 1 1 182010 220 0.00 2019-12-02 19:37:48 2019-12-02 19:37:48 t 1 1 182011 645 0.00 2019-12-02 19:38:45 2019-12-02 19:38:52 t 1 1 182012 645 0.00 2019-12-02 19:39:17 2019-12-02 19:39:34 t 1 1 182017 671 0.00 2019-12-02 19:42:35 2019-12-02 19:44:14 t 1 1 182019 566 0.00 2019-12-02 19:30:13 2019-12-02 19:44:49 t 1 1 182025 679 0.00 2019-12-02 19:57:20 2019-12-02 19:58:04 t 1 1 182029 503 0.00 2019-12-02 19:51:15 2019-12-02 20:01:26 t 1 1 182032 311 0.00 2019-12-02 18:13:45 2019-12-02 20:04:08 t 1 2 182037 566 0.00 2019-12-02 19:44:50 2019-12-02 20:06:50 t 1 1 182039 220 0.00 2019-12-02 20:09:19 2019-12-02 20:09:55 t 1 1 182040 430 0.00 2019-12-02 20:10:14 2019-12-02 20:10:14 f 1 1 182041 645 0.00 2019-12-02 20:06:43 2019-12-02 20:10:23 t 1 1 182045 611 0.00 2019-12-02 20:10:34 2019-12-02 20:12:25 t 1 1 182047 520 0.00 2019-12-02 19:58:30 2019-12-02 20:13:17 t 1 1 182048 645 0.00 2019-12-02 20:12:23 2019-12-02 20:16:02 t 1 1 182054 566 0.00 2019-12-02 20:06:50 2019-12-02 20:22:40 t 1 1 182058 516 0.00 2019-12-02 20:19:49 2019-12-02 20:28:58 t 1 1 182059 611 0.00 2019-12-02 20:28:47 2019-12-02 20:29:29 t 1 1 182060 481 0.00 2019-12-02 18:56:12 2019-12-02 20:30:30 t 1 1 182061 611 0.00 2019-12-02 20:29:29 2019-12-02 20:30:48 t 1 1 182065 516 0.00 2019-12-02 20:36:43 2019-12-02 20:37:46 t 1 1 182067 622 0.00 2019-12-02 19:18:21 2019-12-02 20:38:09 t 1 1 182069 564 0.00 2019-12-02 19:46:43 2019-12-02 20:40:04 t 1 1 182072 591 0.00 2019-12-02 20:35:34 2019-12-02 20:41:26 t 1 1 182075 445 0.00 2019-12-02 20:13:32 2019-12-02 20:44:56 t 1 1 182077 591 0.00 2019-12-02 20:42:15 2019-12-02 20:45:31 t 1 1 182079 649 0.00 2019-12-02 20:30:43 2019-12-02 20:46:33 t 1 1 182080 445 0.00 2019-12-02 20:45:22 2019-12-02 20:46:35 t 1 1 182084 687 0.00 2019-12-02 20:25:17 2019-12-02 20:51:34 t 1 1 182091 566 0.00 2019-12-02 20:36:10 2019-12-02 20:57:28 t 1 1 182093 611 0.00 2019-12-02 20:54:07 2019-12-02 20:59:05 t 1 1 182098 611 0.00 2019-12-02 20:59:05 2019-12-02 21:02:03 t 1 1 182101 645 0.00 2019-12-02 21:02:42 2019-12-02 21:04:53 t 1 1 182103 581 0.00 2019-12-02 20:55:27 2019-12-02 21:08:37 t 1 1 182105 544 0.00 2019-12-02 21:03:50 2019-12-02 21:11:22 t 1 1 182108 220 0.00 2019-12-02 21:12:37 2019-12-02 21:22:05 t 1 1 182109 220 0.00 2019-12-02 21:22:05 2019-12-02 21:22:41 t 1 1 182110 622 0.00 2019-12-02 21:05:28 2019-12-02 21:25:03 t 1 1 182121 679 0.00 2019-12-02 21:40:16 2019-12-02 21:43:46 t 1 1 182123 649 0.00 2019-12-02 21:11:50 2019-12-02 21:45:25 t 1 1 182127 611 0.00 2019-12-02 21:50:25 2019-12-02 21:51:29 t 1 1 182130 649 0.00 2019-12-02 21:45:25 2019-12-02 21:52:43 t 1 1 182134 220 0.00 2019-12-02 21:53:27 2019-12-02 21:54:06 t 1 1 182135 220 0.00 2019-12-02 21:54:04 2019-12-02 21:54:40 t 1 1 182137 220 0.00 2019-12-02 21:54:40 2019-12-02 21:55:15 t 1 1 182138 220 0.00 2019-12-02 21:55:15 2019-12-02 21:55:25 t 1 1 182142 445 0.00 2019-12-02 21:56:44 2019-12-02 21:57:15 t 1 1 182146 645 0.00 2019-12-02 21:56:38 2019-12-02 22:01:01 t 1 1 182148 220 0.00 2019-12-02 22:01:06 2019-12-02 22:01:08 t 1 1 182151 581 0.00 2019-12-02 22:01:52 2019-12-02 22:02:52 t 1 1 182156 220 0.00 2019-12-02 22:04:06 2019-12-02 22:04:21 t 1 1 181850 673 0.00 2019-12-02 17:31:06 2019-12-02 17:31:07 t 1 1 181853 639 0.00 2019-12-02 17:30:01 2019-12-02 17:31:17 t 1 1 181854 581 0.00 2019-12-02 17:31:30 2019-12-02 17:31:44 t 1 1 181860 639 0.00 2019-12-02 17:32:26 2019-12-02 17:32:29 t 1 1 181864 622 0.00 2019-12-02 16:55:46 2019-12-02 17:34:42 t 1 1 181867 544 0.00 2019-12-02 17:30:36 2019-12-02 17:37:18 t 1 1 181872 673 0.00 2019-12-02 17:39:08 2019-12-02 17:40:54 t 1 1 181873 696 0.00 2019-12-02 17:31:12 2019-12-02 17:41:27 t 1 1 181877 671 0.00 2019-12-02 17:44:13 2019-12-02 17:46:46 t 1 1 181878 627 0.00 2019-12-02 17:44:11 2019-12-02 17:48:25 t 1 1 181880 220 0.00 2019-12-02 17:50:49 2019-12-02 17:51:06 t 1 1 181885 687 0.00 2019-12-02 17:57:56 2019-12-02 17:58:08 t 1 1 181886 645 0.00 2019-12-02 17:50:37 2019-12-02 17:58:49 t 1 1 181888 581 0.00 2019-12-02 17:58:51 2019-12-02 17:58:53 t 1 1 181893 611 0.00 2019-12-02 17:45:44 2019-12-02 18:02:53 t 1 1 181895 220 0.00 2019-12-02 18:01:37 2019-12-02 18:03:32 t 1 1 181902 637 0.00 2019-12-02 18:05:41 2019-12-02 18:10:43 t 1 1 181906 625 0.00 2019-12-02 18:03:37 2019-12-02 18:13:11 t 1 1 181909 516 0.00 2019-12-02 18:18:19 2019-12-02 18:19:21 t 1 1 181912 637 0.00 2019-12-02 18:17:02 2019-12-02 18:22:42 t 1 1 181915 498 0.00 2019-12-02 17:10:37 2019-12-02 18:25:53 t 1 2 181920 516 0.00 2019-12-02 18:21:59 2019-12-02 18:31:51 t 1 1 181925 687 0.00 2019-12-02 18:31:19 2019-12-02 18:34:11 t 1 1 181926 581 0.00 2019-12-02 18:01:39 2019-12-02 18:35:04 t 1 1 181928 516 0.00 2019-12-02 18:35:00 2019-12-02 18:35:39 t 1 1 181932 611 0.00 2019-12-02 18:32:12 2019-12-02 18:39:20 t 1 1 181934 645 0.00 2019-12-02 18:42:19 2019-12-02 18:43:39 t 1 1 181937 622 0.00 2019-12-02 18:22:36 2019-12-02 18:45:04 t 1 1 181940 615 0.00 2019-12-02 18:29:18 2019-12-02 18:48:39 t 1 1 181942 611 0.00 2019-12-02 18:48:31 2019-12-02 18:49:32 t 1 1 181945 591 0.00 2019-12-02 18:29:38 2019-12-02 18:54:11 t 1 1 181947 445 0.00 2019-12-02 17:36:00 2019-12-02 18:55:02 t 1 1 181959 656 0.00 2019-12-02 17:46:06 2019-12-02 19:06:58 t 1 1 181962 700 0.00 2019-12-02 19:09:19 2019-12-02 19:09:27 t 1 1 181964 698 0.00 2019-12-02 19:09:32 2019-12-02 19:10:17 t 1 1 181968 698 0.00 2019-12-02 19:11:21 2019-12-02 19:11:37 t 1 1 181969 698 0.00 2019-12-02 19:11:37 2019-12-02 19:12:27 t 1 1 181971 574 0.00 2019-12-02 19:04:21 2019-12-02 19:13:23 t 1 1 181975 220 0.00 2019-12-02 19:16:39 2019-12-02 19:16:40 t 1 1 181977 220 0.00 2019-12-02 19:16:57 2019-12-02 19:16:57 t 1 1 181984 645 0.00 2019-12-02 18:46:30 2019-12-02 19:19:20 t 1 1 181987 645 0.00 2019-12-02 19:20:06 2019-12-02 19:20:12 t 1 1 181988 698 0.00 2019-12-02 19:19:27 2019-12-02 19:20:32 t 1 1 181991 581 0.00 2019-12-02 19:00:59 2019-12-02 19:23:32 t 1 1 181993 645 0.00 2019-12-02 19:23:05 2019-12-02 19:24:32 t 1 1 181995 687 0.00 2019-12-02 19:11:03 2019-12-02 19:25:17 t 1 1 181996 220 0.00 2019-12-02 19:27:19 2019-12-02 19:27:27 t 1 1 181997 687 0.00 2019-12-02 19:25:17 2019-12-02 19:29:16 t 1 1 181999 445 0.00 2019-12-02 19:04:22 2019-12-02 19:31:06 t 1 1 182000 485 0.00 2019-12-02 19:24:38 2019-12-02 19:31:32 t 1 1 182002 687 0.00 2019-12-02 19:29:16 2019-12-02 19:33:09 t 1 1 182004 645 0.00 2019-12-02 19:31:10 2019-12-02 19:35:15 t 1 1 182005 514 0.00 2019-12-02 18:56:10 2019-12-02 19:35:20 t 1 1 182006 538 0.00 2019-12-02 18:54:44 2019-12-02 19:36:21 t 1 1 182013 645 0.00 2019-12-02 19:40:26 2019-12-02 19:40:38 t 1 1 182016 485 0.00 2019-12-02 19:41:10 2019-12-02 19:43:59 t 1 1 182020 220 0.00 2019-12-02 19:48:09 2019-12-02 19:48:18 t 1 1 182021 503 0.00 2019-12-02 19:46:44 2019-12-02 19:50:18 t 1 1 182023 645 0.00 2019-12-02 19:46:32 2019-12-02 19:52:37 t 1 1 182026 220 0.00 2019-12-02 19:55:39 2019-12-02 19:58:39 t 1 1 182028 220 0.00 2019-12-02 19:59:14 2019-12-02 20:00:44 t 1 1 182033 591 0.00 2019-12-02 19:37:38 2019-12-02 20:04:15 t 1 1 182034 703 0.00 2019-12-02 20:02:29 2019-12-02 20:04:56 t 1 1 182036 703 0.00 2019-12-02 20:05:02 2019-12-02 20:06:38 t 1 1 182043 512 0.00 2019-12-02 19:51:08 2019-12-02 20:12:04 t 1 1 182046 490 0.00 2019-12-02 19:25:32 2019-12-02 20:12:28 t 1 1 182049 220 0.00 2019-12-02 20:19:50 2019-12-02 20:20:23 t 1 1 182063 631 0.00 2019-12-02 20:28:27 2019-12-02 20:33:10 t 1 1 182066 551 0.00 2019-12-02 20:21:32 2019-12-02 20:38:02 t 1 1 182071 220 0.00 2019-12-02 20:41:03 2019-12-02 20:41:13 t 1 1 182074 220 0.00 2019-12-02 20:10:07 2019-12-02 20:44:00 t 1 2 182076 633 0.00 2019-12-02 20:29:55 2019-12-02 20:45:24 t 1 1 182078 516 0.00 2019-12-02 20:42:20 2019-12-02 20:46:12 t 1 1 182082 611 0.00 2019-12-02 20:40:47 2019-12-02 20:48:59 t 1 1 182083 220 0.00 2019-12-02 20:50:12 2019-12-02 20:50:45 t 1 1 182085 645 0.00 2019-12-02 20:47:05 2019-12-02 20:51:44 t 1 1 182087 611 0.00 2019-12-02 20:48:59 2019-12-02 20:54:08 t 1 1 182089 622 0.00 2019-12-02 20:38:09 2019-12-02 20:54:24 t 1 1 182095 591 0.00 2019-12-02 20:58:24 2019-12-02 21:00:18 t 1 1 182097 220 0.00 2019-12-02 20:38:22 2019-12-02 21:01:45 t 1 2 182102 611 0.00 2019-12-02 21:02:02 2019-12-02 21:07:27 t 1 1 182104 649 0.00 2019-12-02 20:46:33 2019-12-02 21:10:34 t 1 1 182106 220 0.00 2019-12-02 21:11:34 2019-12-02 21:12:09 t 1 1 182107 611 0.00 2019-12-02 21:11:47 2019-12-02 21:19:21 t 1 1 182111 566 0.00 2019-12-02 20:57:28 2019-12-02 21:27:04 t 1 1 182113 445 0.00 2019-12-02 20:46:35 2019-12-02 21:27:33 t 1 1 182114 220 0.00 2019-12-02 21:22:41 2019-12-02 21:33:08 t 1 1 182115 220 0.00 2019-12-02 21:33:08 2019-12-02 21:33:36 t 1 1 182116 611 0.00 2019-12-02 21:27:26 2019-12-02 21:34:11 t 1 1 182117 220 0.00 2019-12-02 21:36:12 2019-12-02 21:39:07 t 1 2 182118 611 0.00 2019-12-02 21:34:11 2019-12-02 21:39:32 t 1 1 182122 220 0.00 2019-12-02 21:43:39 2019-12-02 21:43:51 t 1 1 182125 220 0.00 2019-12-02 21:44:09 2019-12-02 21:50:35 t 1 1 182132 220 0.00 2019-12-02 21:52:22 2019-12-02 21:52:58 t 1 1 182133 220 0.00 2019-12-02 21:52:57 2019-12-02 21:53:27 t 1 1 182136 520 0.00 2019-12-02 21:05:30 2019-12-02 21:54:41 t 1 1 182139 581 0.00 2019-12-02 21:35:04 2019-12-02 21:55:44 t 1 1 182140 675 0.00 2019-12-02 21:48:08 2019-12-02 21:56:32 t 1 1 182141 445 0.00 2019-12-02 21:56:43 2019-12-02 21:56:44 t 1 1 182144 445 0.00 2019-12-02 21:27:32 2019-12-02 21:57:34 t 1 1 182150 220 0.00 2019-12-02 22:01:40 2019-12-02 22:02:44 t 1 1 182154 220 0.00 2019-12-02 22:03:18 2019-12-02 22:03:50 t 1 1 182157 611 0.00 2019-12-02 21:57:15 2019-12-02 22:07:03 t 1 1 182159 581 0.00 2019-12-02 22:06:59 2019-12-02 22:07:37 t 1 1 182163 581 0.00 2019-12-02 22:10:04 2019-12-02 22:10:10 t 1 1 182164 581 0.00 2019-12-02 22:12:09 2019-12-02 22:12:25 t 1 1 182168 611 0.00 2019-12-02 22:07:03 2019-12-02 22:16:57 t 1 1 181862 562 0.00 2019-12-02 17:32:21 2019-12-02 17:32:47 t 1 1 181866 445 0.00 2019-12-02 17:01:03 2019-12-02 17:36:00 t 1 1 181870 687 0.00 2019-12-02 17:38:39 2019-12-02 17:38:59 t 1 1 181874 622 0.00 2019-12-02 17:34:42 2019-12-02 17:44:26 t 1 1 181875 611 0.00 2019-12-02 17:41:29 2019-12-02 17:45:45 t 1 1 181879 687 0.00 2019-12-02 17:39:10 2019-12-02 17:48:35 t 1 1 181882 687 0.00 2019-12-02 17:49:27 2019-12-02 17:55:22 t 1 1 181883 637 0.00 2019-12-02 17:52:02 2019-12-02 17:56:33 t 1 1 181884 687 0.00 2019-12-02 17:56:15 2019-12-02 17:57:27 t 1 1 181890 645 0.00 2019-12-02 18:00:43 2019-12-02 18:01:06 t 1 1 181891 220 0.00 2019-12-02 18:01:26 2019-12-02 18:01:28 t 1 1 181892 637 0.00 2019-12-02 17:56:33 2019-12-02 18:01:47 t 1 1 181894 637 0.00 2019-12-02 18:01:47 2019-12-02 18:03:14 t 1 1 181896 520 0.00 2019-12-02 17:54:22 2019-12-02 18:04:25 t 1 1 181899 645 0.00 2019-12-02 18:02:25 2019-12-02 18:08:59 t 1 1 181903 528 0.00 2019-12-02 18:00:23 2019-12-02 18:12:02 t 1 1 181907 645 0.00 2019-12-02 18:12:35 2019-12-02 18:16:47 t 1 1 181910 667 0.00 2019-12-02 18:18:20 2019-12-02 18:19:23 t 1 2 181911 622 0.00 2019-12-02 17:44:26 2019-12-02 18:22:36 t 1 1 181916 591 0.00 2019-12-02 16:33:07 2019-12-02 18:29:38 t 1 1 181917 520 0.00 2019-12-02 18:07:15 2019-12-02 18:29:41 t 1 1 181922 689 0.00 2019-12-02 18:27:24 2019-12-02 18:32:28 t 1 1 181930 637 0.00 2019-12-02 18:29:43 2019-12-02 18:36:28 t 1 1 181933 538 0.00 2019-12-02 18:09:54 2019-12-02 18:42:39 t 1 1 181936 696 0.00 2019-12-02 18:38:54 2019-12-02 18:44:49 t 1 1 181938 696 0.00 2019-12-02 18:44:55 2019-12-02 18:45:05 t 1 1 181941 671 0.00 2019-12-02 18:39:22 2019-12-02 18:49:05 t 1 1 181943 538 0.00 2019-12-02 18:42:39 2019-12-02 18:53:36 t 1 1 181948 622 0.00 2019-12-02 18:46:18 2019-12-02 18:55:06 t 1 1 181954 615 0.00 2019-12-02 18:48:38 2019-12-02 18:59:18 t 1 1 181958 220 0.00 2019-12-02 19:05:02 2019-12-02 19:05:03 t 1 1 181960 220 0.00 2019-12-02 19:05:58 2019-12-02 19:07:01 t 1 1 181961 622 0.00 2019-12-02 18:59:01 2019-12-02 19:07:49 t 1 1 181965 698 0.00 2019-12-02 19:10:17 2019-12-02 19:10:56 t 1 1 181966 698 0.00 2019-12-02 19:10:56 2019-12-02 19:11:04 t 1 1 181967 698 0.00 2019-12-02 19:11:03 2019-12-02 19:11:21 t 1 1 181970 700 0.00 2019-12-02 19:09:38 2019-12-02 19:12:45 t 1 1 181973 698 0.00 2019-12-02 19:14:47 2019-12-02 19:15:48 t 1 1 181974 220 0.00 2019-12-02 19:16:30 2019-12-02 19:16:31 t 1 1 181979 220 0.00 2019-12-02 19:16:53 2019-12-02 19:18:16 t 1 2 181981 622 0.00 2019-12-02 19:07:49 2019-12-02 19:18:21 t 1 1 181982 698 0.00 2019-12-02 19:18:12 2019-12-02 19:18:22 t 1 1 181983 698 0.00 2019-12-02 19:18:22 2019-12-02 19:18:54 t 1 1 181986 645 0.00 2019-12-02 19:19:43 2019-12-02 19:20:01 t 1 1 181989 645 0.00 2019-12-02 19:21:07 2019-12-02 19:21:46 t 1 1 181990 611 0.00 2019-12-02 19:03:42 2019-12-02 19:22:37 t 1 1 181992 645 0.00 2019-12-02 19:23:26 2019-12-02 19:24:18 t 1 1 181998 611 0.00 2019-12-02 19:22:36 2019-12-02 19:29:40 t 1 1 182008 687 0.00 2019-12-02 19:33:09 2019-12-02 19:37:27 t 1 1 182014 611 0.00 2019-12-02 19:36:57 2019-12-02 19:41:31 t 1 1 182015 671 0.00 2019-12-02 19:35:03 2019-12-02 19:42:36 t 1 1 182018 645 0.00 2019-12-02 19:44:09 2019-12-02 19:44:30 t 1 1 182022 673 0.00 2019-12-02 19:01:56 2019-12-02 19:51:28 t 1 1 182024 520 0.00 2019-12-02 19:21:31 2019-12-02 19:55:59 t 1 1 182027 220 0.00 2019-12-02 19:58:39 2019-12-02 19:59:11 t 1 1 182030 703 0.00 2019-12-02 20:01:14 2019-12-02 20:02:21 t 1 1 182031 645 0.00 2019-12-02 19:53:06 2019-12-02 20:03:35 t 1 1 182035 645 0.00 2019-12-02 20:04:47 2019-12-02 20:05:48 t 1 1 182038 611 0.00 2019-12-02 19:41:30 2019-12-02 20:08:01 t 1 1 182042 611 0.00 2019-12-02 20:08:01 2019-12-02 20:10:34 t 1 1 182044 445 0.00 2019-12-02 19:31:06 2019-12-02 20:12:15 t 1 1 182050 520 0.00 2019-12-02 20:13:17 2019-12-02 20:20:32 t 1 1 182051 611 0.00 2019-12-02 20:12:24 2019-12-02 20:21:03 t 1 1 182052 520 0.00 2019-12-02 20:20:44 2019-12-02 20:22:08 t 1 1 182053 611 0.00 2019-12-02 20:21:02 2019-12-02 20:22:30 t 1 1 182055 645 0.00 2019-12-02 20:22:43 2019-12-02 20:24:08 t 1 1 182056 675 0.00 2019-12-02 20:23:10 2019-12-02 20:26:58 t 1 1 182057 611 0.00 2019-12-02 20:22:30 2019-12-02 20:28:47 t 1 1 182062 220 0.00 2019-12-02 20:30:30 2019-12-02 20:31:34 t 1 1 182064 566 0.00 2019-12-02 20:22:40 2019-12-02 20:36:11 t 1 1 182068 673 0.00 2019-12-02 19:51:27 2019-12-02 20:39:43 t 1 1 182070 611 0.00 2019-12-02 20:30:48 2019-12-02 20:40:47 t 1 1 182073 675 0.00 2019-12-02 20:28:20 2019-12-02 20:42:23 t 1 1 182081 675 0.00 2019-12-02 20:42:23 2019-12-02 20:48:52 t 1 1 182086 581 0.00 2019-12-02 20:49:02 2019-12-02 20:53:58 t 1 1 182088 512 0.00 2019-12-02 20:47:25 2019-12-02 20:54:12 t 1 1 182090 591 0.00 2019-12-02 20:51:53 2019-12-02 20:56:01 t 1 1 182092 622 0.00 2019-12-02 20:56:24 2019-12-02 20:57:43 t 1 1 182094 510 0.00 2019-12-02 20:19:32 2019-12-02 20:59:49 t 1 1 182096 220 0.00 2019-12-02 21:00:44 2019-12-02 21:01:17 t 1 1 182099 633 0.00 2019-12-02 20:45:24 2019-12-02 21:03:31 t 1 1 182100 622 0.00 2019-12-02 21:02:48 2019-12-02 21:04:46 t 1 1 182112 611 0.00 2019-12-02 21:19:21 2019-12-02 21:27:26 t 1 1 182119 611 0.00 2019-12-02 21:39:32 2019-12-02 21:43:05 t 1 1 182120 220 0.00 2019-12-02 21:33:45 2019-12-02 21:43:40 t 1 1 182124 611 0.00 2019-12-02 21:43:05 2019-12-02 21:50:25 t 1 1 182126 220 0.00 2019-12-02 21:50:35 2019-12-02 21:50:44 t 1 1 182128 220 0.00 2019-12-02 21:51:06 2019-12-02 21:51:47 t 1 1 182129 220 0.00 2019-12-02 21:51:47 2019-12-02 21:52:22 t 1 1 182131 611 0.00 2019-12-02 21:51:29 2019-12-02 21:52:47 t 1 1 182143 611 0.00 2019-12-02 21:52:47 2019-12-02 21:57:16 t 1 1 182145 566 0.00 2019-12-02 21:27:04 2019-12-02 22:00:07 t 1 1 182147 220 0.00 2019-12-02 21:55:50 2019-12-02 22:01:06 t 1 1 182149 675 0.00 2019-12-02 21:59:58 2019-12-02 22:02:31 t 1 1 182152 220 0.00 2019-12-02 22:02:44 2019-12-02 22:03:18 t 1 1 182153 581 0.00 2019-12-02 22:03:35 2019-12-02 22:03:44 t 1 1 182155 220 0.00 2019-12-02 22:03:50 2019-12-02 22:03:58 t 1 1 182161 510 0.00 2019-12-02 20:59:49 2019-12-02 22:08:48 t 1 1 182162 566 0.00 2019-12-02 22:00:07 2019-12-02 22:09:47 t 1 1 182165 691 0.00 2019-12-02 22:08:03 2019-12-02 22:12:49 t 1 1 182166 581 0.00 2019-12-02 22:13:01 2019-12-02 22:13:28 t 1 1 182170 679 0.00 2019-12-02 22:15:41 2019-12-02 22:17:53 t 1 1 182171 581 0.00 2019-12-02 22:18:18 2019-12-02 22:18:21 t 1 1 182172 687 0.00 2019-12-02 22:18:47 2019-12-02 22:20:39 t 1 1 182174 581 0.00 2019-12-02 22:21:20 2019-12-02 22:21:23 t 1 1 182179 581 0.00 2019-12-02 22:23:28 2019-12-02 22:24:01 t 1 1 182186 607 0.00 2019-12-02 22:20:55 2019-12-02 22:30:53 t 1 1 182158 220 0.00 2019-12-02 22:04:20 2019-12-02 22:07:36 t 1 1 182160 528 0.00 2019-12-02 21:33:18 2019-12-02 22:08:09 t 1 1 182167 483 0.00 2019-12-02 22:02:48 2019-12-02 22:14:06 t 1 1 182173 591 0.00 2019-12-02 21:28:05 2019-12-02 22:20:48 t 1 1 182181 679 0.00 2019-12-02 22:25:00 2019-12-02 22:25:25 t 1 1 182183 675 0.00 2019-12-02 22:19:52 2019-12-02 22:28:56 t 1 1 182184 514 0.00 2019-12-02 19:35:39 2019-12-02 22:29:25 t 1 1 182188 510 0.00 2019-12-02 22:08:48 2019-12-02 22:31:31 t 1 1 182192 544 0.00 2019-12-02 22:31:34 2019-12-02 22:34:12 t 1 1 182195 581 0.00 2019-12-02 22:34:04 2019-12-02 22:34:40 t 1 1 182199 538 0.00 2019-12-02 20:07:40 2019-12-02 22:36:57 t 1 1 182203 451 0.00 2019-12-02 22:23:09 2019-12-02 22:39:53 t 1 1 182204 220 0.00 2019-12-02 22:39:45 2019-12-02 22:40:38 t 1 1 182205 656 0.00 2019-12-02 19:25:50 2019-12-02 22:42:30 t 1 1 182207 645 0.00 2019-12-02 22:38:29 2019-12-02 22:44:06 t 1 1 182208 591 0.00 2019-12-02 22:44:00 2019-12-02 22:44:54 t 1 1 182210 694 0.00 2019-12-02 19:18:48 2019-12-02 22:46:39 t 1 1 182213 220 0.00 2019-12-02 22:50:35 2019-12-02 22:50:48 t 1 1 182214 510 0.00 2019-12-02 22:31:31 2019-12-02 22:51:08 t 1 1 182216 671 0.00 2019-12-02 22:42:58 2019-12-02 22:51:36 t 1 1 182219 611 0.00 2019-12-02 22:47:30 2019-12-02 22:55:42 t 1 1 182221 591 0.00 2019-12-02 22:52:19 2019-12-02 22:57:58 t 1 1 182223 581 0.00 2019-12-02 22:58:43 2019-12-02 22:59:00 t 1 1 182225 687 0.00 2019-12-02 22:24:42 2019-12-02 23:00:53 t 1 1 182231 581 0.00 2019-12-02 23:06:21 2019-12-02 23:06:43 t 1 1 182238 611 0.00 2019-12-02 23:11:32 2019-12-02 23:16:24 t 1 1 182242 637 0.00 2019-12-02 23:10:49 2019-12-02 23:17:26 t 1 1 182248 625 0.00 2019-12-02 23:13:36 2019-12-02 23:23:12 t 1 1 182250 679 0.00 2019-12-02 23:22:47 2019-12-02 23:23:48 t 1 1 182251 220 0.00 2019-12-02 23:24:25 2019-12-02 23:24:36 t 1 1 182252 637 0.00 2019-12-02 23:17:26 2019-12-02 23:25:14 t 1 1 182255 503 0.00 2019-12-02 23:27:10 2019-12-02 23:28:13 t 1 1 182257 637 0.00 2019-12-02 23:25:14 2019-12-02 23:33:13 t 1 1 182262 503 0.00 2019-12-02 23:30:13 2019-12-02 23:40:37 t 1 1 182264 220 0.00 2019-12-02 23:35:22 2019-12-02 23:42:32 t 1 2 182266 220 0.00 2019-12-02 23:41:44 2019-12-02 23:44:00 t 1 1 182270 687 0.00 2019-12-02 23:46:26 2019-12-02 23:46:31 t 1 1 182273 220 0.00 2019-12-02 23:45:51 2019-12-02 23:48:13 t 1 1 182274 512 0.00 2019-12-02 23:10:59 2019-12-02 23:49:22 t 1 1 182277 611 0.00 2019-12-02 23:41:45 2019-12-02 23:54:59 t 1 1 182278 578 0.00 2019-12-02 16:47:56 2019-12-02 23:57:09 t 1 1 182279 637 0.00 2019-12-02 23:33:13 2019-12-02 23:57:41 t 1 1 182280 451 0.00 2019-12-02 23:39:11 2019-12-02 23:58:14 t 1 1 182282 459 0.00 2019-12-02 23:49:31 2019-12-02 23:59:06 t 1 2 182283 645 0.00 2019-12-02 23:47:10 2019-12-03 00:00:25 t 1 1 182286 687 0.00 2019-12-02 23:59:50 2019-12-03 00:02:52 t 1 1 182287 637 0.00 2019-12-02 23:57:41 2019-12-03 00:05:22 t 1 1 182288 581 0.00 2019-12-02 23:57:02 2019-12-03 00:07:16 t 1 1 182289 581 0.00 2019-12-03 00:08:54 2019-12-03 00:09:20 t 1 1 182297 581 0.00 2019-12-03 00:18:29 2019-12-03 00:18:45 t 1 1 182300 687 0.00 2019-12-03 00:19:37 2019-12-03 00:19:40 t 1 1 182306 512 0.00 2019-12-03 00:13:29 2019-12-03 00:25:32 t 1 1 182316 637 0.00 2019-12-03 00:28:14 2019-12-03 00:39:03 t 1 1 182319 544 0.00 2019-12-03 00:20:52 2019-12-03 00:45:27 t 1 1 182322 611 0.00 2019-12-03 00:44:16 2019-12-03 00:51:16 t 1 1 182327 611 0.00 2019-12-03 00:54:36 2019-12-03 01:03:24 t 1 1 182329 220 0.00 2019-12-03 01:05:52 2019-12-03 01:06:00 t 1 1 182330 637 0.00 2019-12-03 00:45:47 2019-12-03 01:11:09 t 1 1 182333 538 0.00 2019-12-03 00:22:12 2019-12-03 01:17:58 t 1 1 182335 694 0.00 2019-12-02 22:46:39 2019-12-03 01:27:04 t 1 1 182341 220 0.00 2019-12-03 02:47:56 2019-12-03 02:48:05 t 1 1 182343 220 0.00 2019-12-03 03:08:54 2019-12-03 03:08:55 t 1 1 182347 220 0.00 2019-12-03 03:33:03 2019-12-03 03:33:12 t 1 1 182349 220 0.00 2019-12-03 03:43:33 2019-12-03 03:44:35 t 1 1 182351 220 0.00 2019-12-03 03:53:55 2019-12-03 03:53:56 t 1 1 182352 681 0.00 2019-12-02 16:31:19 2019-12-03 04:01:47 t 1 1 182353 681 0.00 2019-12-03 04:01:47 2019-12-03 04:02:45 t 1 1 182360 681 0.00 2019-12-03 05:07:49 2019-12-03 05:09:48 t 1 1 182363 516 0.00 2019-12-03 05:21:45 2019-12-03 05:22:34 t 1 1 182367 681 0.00 2019-12-03 05:27:20 2019-12-03 05:30:29 t 1 1 182372 516 0.00 2019-12-03 05:35:27 2019-12-03 05:39:38 t 1 1 182376 220 0.00 2019-12-03 05:46:13 2019-12-03 05:46:14 t 1 1 182378 681 0.00 2019-12-03 05:39:06 2019-12-03 05:56:58 t 1 1 182379 516 0.00 2019-12-03 05:57:27 2019-12-03 05:58:13 t 1 1 182384 220 0.00 2019-12-03 06:16:39 2019-12-03 06:16:50 t 1 1 182395 220 0.00 2019-12-03 06:47:14 2019-12-03 06:47:26 t 1 1 182399 220 0.00 2019-12-03 06:58:00 2019-12-03 06:58:08 t 1 1 182400 694 0.00 2019-12-03 01:26:59 2019-12-03 07:03:32 t 1 1 182401 520 0.00 2019-12-03 06:42:10 2019-12-03 07:04:47 t 1 1 182414 681 0.00 2019-12-03 06:11:49 2019-12-03 07:32:34 t 1 1 182421 611 0.00 2019-12-03 07:39:47 2019-12-03 07:49:09 t 1 1 182423 694 0.00 2019-12-03 07:25:45 2019-12-03 07:50:30 t 1 1 182430 611 0.00 2019-12-03 07:51:00 2019-12-03 07:57:16 t 1 1 182431 220 0.00 2019-12-03 07:59:37 2019-12-03 07:59:37 t 1 1 182436 220 0.00 2019-12-03 08:09:40 2019-12-03 08:09:49 t 1 1 182438 562 0.00 2019-12-03 08:15:33 2019-12-03 08:16:06 t 1 1 182440 220 0.00 2019-12-03 08:20:10 2019-12-03 08:20:18 t 1 1 182441 656 0.00 2019-12-02 22:51:05 2019-12-03 08:20:38 t 1 1 182451 562 0.00 2019-12-03 08:34:59 2019-12-03 08:35:28 t 1 1 182453 591 0.00 2019-12-03 08:33:34 2019-12-03 08:39:43 t 1 1 182454 220 0.00 2019-12-03 08:40:43 2019-12-03 08:41:44 t 1 1 182456 551 0.00 2019-12-03 00:19:18 2019-12-03 08:47:22 t 1 1 182461 562 0.00 2019-12-03 08:57:34 2019-12-03 08:58:13 t 1 1 182462 673 0.00 2019-12-03 08:59:18 2019-12-03 09:00:44 t 1 1 182464 562 0.00 2019-12-03 08:58:38 2019-12-03 09:03:38 t 1 1 182465 611 0.00 2019-12-03 08:57:53 2019-12-03 09:04:30 t 1 1 182468 694 0.00 2019-12-03 08:52:29 2019-12-03 09:09:29 t 1 1 182470 591 0.00 2019-12-03 09:05:54 2019-12-03 09:10:15 t 1 1 182474 675 0.00 2019-12-03 09:12:14 2019-12-03 09:13:46 t 1 1 182475 562 0.00 2019-12-03 09:14:43 2019-12-03 09:15:09 t 1 1 182476 615 0.00 2019-12-03 09:04:54 2019-12-03 09:15:46 t 1 1 182479 445 0.00 2019-12-03 09:17:05 2019-12-03 09:18:17 t 1 1 182484 694 0.00 2019-12-03 09:09:29 2019-12-03 09:23:17 t 1 1 182485 562 0.00 2019-12-03 09:24:10 2019-12-03 09:24:32 t 1 1 182486 673 0.00 2019-12-03 09:26:21 2019-12-03 09:27:58 t 1 1 182488 520 0.00 2019-12-03 09:19:30 2019-12-03 09:29:40 t 1 1 182489 538 0.00 2019-12-03 08:39:23 2019-12-03 09:31:05 t 1 1 182169 581 0.00 2019-12-02 22:17:21 2019-12-02 22:17:27 t 1 1 182175 581 0.00 2019-12-02 22:21:36 2019-12-02 22:21:40 t 1 1 182176 451 0.00 2019-12-02 22:04:22 2019-12-02 22:23:09 t 1 1 182177 481 0.00 2019-12-02 20:30:30 2019-12-02 22:23:19 t 1 1 182178 220 0.00 2019-12-02 22:23:45 2019-12-02 22:23:59 t 1 1 182180 687 0.00 2019-12-02 22:22:28 2019-12-02 22:24:26 t 1 1 182182 581 0.00 2019-12-02 22:27:22 2019-12-02 22:27:27 t 1 1 182185 675 0.00 2019-12-02 22:28:57 2019-12-02 22:30:03 t 1 1 182189 564 0.00 2019-12-02 20:40:04 2019-12-02 22:32:50 t 1 1 182191 581 0.00 2019-12-02 22:33:28 2019-12-02 22:33:42 t 1 1 182193 611 0.00 2019-12-02 22:16:55 2019-12-02 22:34:32 t 1 1 182196 220 0.00 2019-12-02 22:34:19 2019-12-02 22:35:36 t 1 1 182198 591 0.00 2019-12-02 22:20:48 2019-12-02 22:36:43 t 1 1 182201 645 0.00 2019-12-02 22:35:31 2019-12-02 22:38:29 t 1 1 182206 538 0.00 2019-12-02 22:37:09 2019-12-02 22:43:39 t 1 1 182209 581 0.00 2019-12-02 22:44:42 2019-12-02 22:45:47 t 1 1 182211 611 0.00 2019-12-02 22:34:32 2019-12-02 22:47:30 t 1 1 182215 551 0.00 2019-12-02 20:38:02 2019-12-02 22:51:20 t 1 1 182217 220 0.00 2019-12-02 22:50:56 2019-12-02 22:52:00 t 1 1 182218 581 0.00 2019-12-02 22:54:54 2019-12-02 22:55:10 t 1 1 182227 611 0.00 2019-12-02 22:57:58 2019-12-02 23:03:03 t 1 1 182228 689 0.00 2019-12-02 22:58:04 2019-12-02 23:06:12 t 1 1 182233 220 0.00 2019-12-02 22:39:14 2019-12-02 23:07:46 t 1 2 182235 611 0.00 2019-12-02 23:06:46 2019-12-02 23:11:32 t 1 1 182239 687 0.00 2019-12-02 23:02:26 2019-12-02 23:16:34 t 1 1 182240 581 0.00 2019-12-02 23:16:57 2019-12-02 23:17:20 t 1 1 182245 675 0.00 2019-12-02 23:07:49 2019-12-02 23:19:19 t 1 1 182247 481 0.00 2019-12-02 23:12:38 2019-12-02 23:22:47 t 1 1 182254 220 0.00 2019-12-02 23:24:52 2019-12-02 23:26:36 t 1 1 182256 503 0.00 2019-12-02 23:28:13 2019-12-02 23:30:13 t 1 1 182258 538 0.00 2019-12-02 23:25:03 2019-12-02 23:34:25 t 1 1 182260 451 0.00 2019-12-02 22:51:19 2019-12-02 23:39:11 t 1 1 182263 611 0.00 2019-12-02 23:25:51 2019-12-02 23:41:45 t 1 1 182268 687 0.00 2019-12-02 23:45:09 2019-12-02 23:45:12 t 1 1 182272 627 0.00 2019-12-02 23:36:35 2019-12-02 23:47:26 t 1 1 182285 679 0.00 2019-12-03 00:00:15 2019-12-03 00:01:35 t 1 1 182290 627 0.00 2019-12-03 00:01:00 2019-12-03 00:10:15 t 1 1 182291 220 0.00 2019-12-03 00:08:43 2019-12-03 00:10:36 t 1 1 182293 512 0.00 2019-12-02 23:49:22 2019-12-03 00:13:29 t 1 1 182294 220 0.00 2019-12-02 23:46:55 2019-12-03 00:15:19 t 1 2 182295 687 0.00 2019-12-03 00:02:59 2019-12-03 00:15:55 t 1 1 182298 687 0.00 2019-12-03 00:16:05 2019-12-03 00:19:12 t 1 1 182301 637 0.00 2019-12-03 00:05:22 2019-12-03 00:20:14 t 1 1 182302 687 0.00 2019-12-03 00:20:45 2019-12-03 00:22:14 t 1 1 182308 637 0.00 2019-12-03 00:20:14 2019-12-03 00:28:14 t 1 1 182309 578 0.00 2019-12-02 23:57:09 2019-12-03 00:29:07 t 1 1 182311 581 0.00 2019-12-03 00:31:21 2019-12-03 00:32:05 t 1 1 182312 645 0.00 2019-12-03 00:29:35 2019-12-03 00:33:05 t 1 1 182314 611 0.00 2019-12-03 00:22:24 2019-12-03 00:36:35 t 1 1 182318 611 0.00 2019-12-03 00:36:35 2019-12-03 00:44:16 t 1 1 182320 637 0.00 2019-12-03 00:39:03 2019-12-03 00:45:47 t 1 1 182321 220 0.00 2019-12-03 00:45:09 2019-12-03 00:46:37 t 1 1 182323 679 0.00 2019-12-03 00:47:05 2019-12-03 00:53:34 t 1 1 182324 611 0.00 2019-12-03 00:51:15 2019-12-03 00:54:36 t 1 1 182326 220 0.00 2019-12-03 00:55:48 2019-12-03 00:55:49 t 1 1 182331 622 0.00 2019-12-03 01:09:26 2019-12-03 01:13:20 t 1 1 182334 679 0.00 2019-12-03 01:18:10 2019-12-03 01:19:34 t 1 1 182337 220 0.00 2019-12-03 01:46:40 2019-12-03 01:46:49 t 1 1 182338 503 0.00 2019-12-03 01:36:02 2019-12-03 01:48:02 t 1 1 182340 220 0.00 2019-12-03 02:47:31 2019-12-03 02:47:41 t 1 1 182342 220 0.00 2019-12-03 02:58:25 2019-12-03 02:58:33 t 1 1 182345 220 0.00 2019-12-03 03:12:04 2019-12-03 03:12:19 t 1 1 182346 220 0.00 2019-12-03 03:22:33 2019-12-03 03:22:41 t 1 1 182348 663 0.00 2019-12-03 03:41:36 2019-12-03 03:43:42 t 1 1 182350 220 0.00 2019-12-03 03:53:47 2019-12-03 03:53:48 t 1 1 182354 681 0.00 2019-12-03 04:02:45 2019-12-03 04:50:45 t 1 1 182355 220 0.00 2019-12-03 04:54:36 2019-12-03 04:54:44 t 1 1 182358 681 0.00 2019-12-03 05:05:04 2019-12-03 05:06:14 t 1 1 182362 681 0.00 2019-12-03 05:18:21 2019-12-03 05:21:34 t 1 1 182364 516 0.00 2019-12-03 05:22:45 2019-12-03 05:23:12 t 1 1 182374 625 0.00 2019-12-03 05:38:04 2019-12-03 05:43:37 t 1 1 182380 681 0.00 2019-12-03 05:56:57 2019-12-03 05:58:48 t 1 1 182385 520 0.00 2019-12-03 06:00:09 2019-12-03 06:19:50 t 1 1 182389 622 0.00 2019-12-03 06:32:32 2019-12-03 06:34:22 t 1 1 182392 220 0.00 2019-12-03 06:36:43 2019-12-03 06:36:54 t 1 1 182393 675 0.00 2019-12-03 06:28:22 2019-12-03 06:38:17 t 1 1 182394 520 0.00 2019-12-03 06:37:26 2019-12-03 06:42:07 t 1 1 182397 689 0.00 2019-12-03 06:50:27 2019-12-03 06:57:41 t 1 1 182402 611 0.00 2019-12-03 06:49:17 2019-12-03 07:06:28 t 1 1 182404 220 0.00 2019-12-03 07:08:29 2019-12-03 07:09:42 t 1 1 182406 611 0.00 2019-12-03 07:11:42 2019-12-03 07:19:13 t 1 1 182408 611 0.00 2019-12-03 07:21:07 2019-12-03 07:23:04 t 1 1 182409 611 0.00 2019-12-03 07:23:04 2019-12-03 07:25:20 t 1 1 182410 611 0.00 2019-12-03 07:25:19 2019-12-03 07:27:50 t 1 1 182411 520 0.00 2019-12-03 07:04:46 2019-12-03 07:29:13 t 1 1 182417 562 0.00 2019-12-03 07:29:12 2019-12-03 07:42:06 t 1 1 182422 220 0.00 2019-12-03 07:49:14 2019-12-03 07:49:15 t 1 1 182424 611 0.00 2019-12-03 07:49:09 2019-12-03 07:51:00 t 1 1 182425 481 0.00 2019-12-03 07:26:44 2019-12-03 07:52:44 t 1 1 182427 566 0.00 2019-12-03 06:50:00 2019-12-03 07:53:18 t 1 1 182428 566 0.00 2019-12-03 07:53:18 2019-12-03 07:54:07 t 1 1 182433 562 0.00 2019-12-03 08:02:55 2019-12-03 08:04:14 t 1 1 182434 564 0.00 2019-12-02 22:32:51 2019-12-03 08:05:16 t 1 1 182435 562 0.00 2019-12-03 08:04:53 2019-12-03 08:05:28 t 1 1 182445 445 0.00 2019-12-03 06:33:49 2019-12-03 08:28:53 t 1 1 182446 220 0.00 2019-12-03 08:30:39 2019-12-03 08:30:40 t 1 1 182452 220 0.00 2019-12-03 08:35:53 2019-12-03 08:35:53 f 1 1 182457 694 0.00 2019-12-03 08:37:23 2019-12-03 08:52:29 t 1 1 182458 591 0.00 2019-12-03 08:48:36 2019-12-03 08:56:07 t 1 1 182460 611 0.00 2019-12-03 08:51:08 2019-12-03 08:57:53 t 1 1 182467 562 0.00 2019-12-03 09:06:40 2019-12-03 09:07:42 t 1 1 182473 481 0.00 2019-12-03 08:27:34 2019-12-03 09:11:15 t 1 1 182477 445 0.00 2019-12-03 08:30:52 2019-12-03 09:16:17 t 1 1 182478 562 0.00 2019-12-03 09:17:19 2019-12-03 09:17:54 t 1 1 182480 673 0.00 2019-12-03 09:12:19 2019-12-03 09:18:29 t 1 1 182483 445 0.00 2019-12-03 09:19:20 2019-12-03 09:22:44 t 1 1 182487 645 0.00 2019-12-03 09:27:13 2019-12-03 09:28:33 t 1 1 182187 581 0.00 2019-12-02 22:31:11 2019-12-02 22:31:29 t 1 1 182190 581 0.00 2019-12-02 22:33:08 2019-12-02 22:33:23 t 1 1 182194 675 0.00 2019-12-02 22:30:04 2019-12-02 22:34:34 t 1 1 182197 220 0.00 2019-12-02 21:46:45 2019-12-02 22:35:43 t 1 2 182200 538 0.00 2019-12-02 22:36:55 2019-12-02 22:37:09 t 1 1 182202 581 0.00 2019-12-02 22:38:10 2019-12-02 22:38:37 t 1 1 182212 656 0.00 2019-12-02 22:42:30 2019-12-02 22:49:19 t 1 1 182220 581 0.00 2019-12-02 22:55:24 2019-12-02 22:56:21 t 1 1 182222 611 0.00 2019-12-02 22:55:42 2019-12-02 22:57:59 t 1 1 182224 581 0.00 2019-12-02 22:59:29 2019-12-02 23:00:30 t 1 1 182226 623 0.00 2019-12-02 23:01:15 2019-12-02 23:01:15 f 1 1 182229 673 0.00 2019-12-02 22:47:48 2019-12-02 23:06:16 t 1 1 182230 581 0.00 2019-12-02 23:05:10 2019-12-02 23:06:36 t 1 1 182232 611 0.00 2019-12-02 23:03:03 2019-12-02 23:06:46 t 1 1 182234 689 0.00 2019-12-02 23:11:11 2019-12-02 23:11:20 t 1 1 182236 485 0.00 2019-12-02 22:57:40 2019-12-02 23:11:45 t 1 1 182237 508 0.00 2019-12-02 23:16:24 2019-12-02 23:16:24 f 1 2 182241 508 0.00 2019-12-02 23:17:20 2019-12-02 23:17:20 f 1 2 182243 689 0.00 2019-12-02 23:12:27 2019-12-02 23:17:40 t 1 1 182244 220 0.00 2019-12-02 23:16:55 2019-12-02 23:18:46 t 1 1 182246 498 0.00 2019-12-02 23:17:49 2019-12-02 23:20:02 t 1 2 182249 510 0.00 2019-12-02 22:51:08 2019-12-02 23:23:42 t 1 1 182253 611 0.00 2019-12-02 23:16:24 2019-12-02 23:25:52 t 1 1 182259 485 0.00 2019-12-02 23:26:48 2019-12-02 23:38:16 t 1 1 182261 220 0.00 2019-12-02 23:39:40 2019-12-02 23:39:48 t 1 1 182265 503 0.00 2019-12-02 23:40:37 2019-12-02 23:43:24 t 1 1 182267 687 0.00 2019-12-02 23:16:34 2019-12-02 23:45:04 t 1 1 182269 687 0.00 2019-12-02 23:45:20 2019-12-02 23:45:31 t 1 1 182271 687 0.00 2019-12-02 23:46:35 2019-12-02 23:46:50 t 1 1 182275 622 0.00 2019-12-02 22:45:27 2019-12-02 23:51:08 t 1 1 182276 687 0.00 2019-12-02 23:46:55 2019-12-02 23:51:46 t 1 1 182281 220 0.00 2019-12-02 23:58:10 2019-12-02 23:58:41 t 1 1 182284 627 0.00 2019-12-02 23:47:26 2019-12-03 00:01:00 t 1 1 182292 581 0.00 2019-12-03 00:12:12 2019-12-03 00:12:27 t 1 1 182296 645 0.00 2019-12-03 00:00:25 2019-12-03 00:18:04 t 1 1 182299 551 0.00 2019-12-02 22:51:20 2019-12-03 00:19:18 t 1 1 182303 581 0.00 2019-12-03 00:21:48 2019-12-03 00:22:16 t 1 1 182304 611 0.00 2019-12-02 23:55:08 2019-12-03 00:22:25 t 1 1 182305 220 0.00 2019-12-03 00:24:04 2019-12-03 00:24:13 t 1 1 182307 645 0.00 2019-12-03 00:18:04 2019-12-03 00:26:27 t 1 1 182310 622 0.00 2019-12-02 23:51:34 2019-12-03 00:30:02 t 1 1 182313 220 0.00 2019-12-03 00:34:35 2019-12-03 00:34:56 t 1 1 182315 578 0.00 2019-12-03 00:29:07 2019-12-03 00:37:02 t 1 1 182317 581 0.00 2019-12-03 00:32:48 2019-12-03 00:43:47 t 1 1 182325 220 0.00 2019-12-03 00:55:23 2019-12-03 00:55:32 t 1 1 182328 611 0.00 2019-12-03 01:03:24 2019-12-03 01:04:27 t 1 1 182332 220 0.00 2019-12-03 01:16:22 2019-12-03 01:17:22 t 1 1 182336 503 0.00 2019-12-03 01:09:52 2019-12-03 01:32:35 t 1 1 182339 220 0.00 2019-12-03 01:47:06 2019-12-03 01:48:06 t 1 1 182344 692 0.00 2019-12-03 02:55:29 2019-12-03 03:11:32 t 1 1 182356 220 0.00 2019-12-03 04:55:02 2019-12-03 04:55:03 t 1 1 182357 681 0.00 2019-12-03 05:03:12 2019-12-03 05:05:05 t 1 1 182359 220 0.00 2019-12-03 05:05:06 2019-12-03 05:06:39 t 1 1 182361 516 0.00 2019-12-03 05:09:57 2019-12-03 05:15:56 t 1 1 182365 681 0.00 2019-12-03 05:22:12 2019-12-03 05:24:17 t 1 1 182366 520 0.00 2019-12-03 05:20:59 2019-12-03 05:30:25 t 1 1 182368 681 0.00 2019-12-03 05:30:28 2019-12-03 05:33:31 t 1 1 182369 520 0.00 2019-12-03 05:30:24 2019-12-03 05:35:40 t 1 1 182370 520 0.00 2019-12-03 05:35:40 2019-12-03 05:38:06 t 1 1 182371 681 0.00 2019-12-03 05:36:19 2019-12-03 05:39:06 t 1 1 182373 516 0.00 2019-12-03 05:39:38 2019-12-03 05:40:42 t 1 1 182375 220 0.00 2019-12-03 05:45:49 2019-12-03 05:45:57 t 1 1 182377 520 0.00 2019-12-03 05:38:06 2019-12-03 05:52:15 t 1 1 182381 520 0.00 2019-12-03 05:52:15 2019-12-03 05:59:54 t 1 1 182382 516 0.00 2019-12-03 06:00:07 2019-12-03 06:03:43 t 1 1 182383 681 0.00 2019-12-03 06:00:50 2019-12-03 06:11:49 t 1 1 182386 220 0.00 2019-12-03 06:27:11 2019-12-03 06:27:12 t 1 1 182387 520 0.00 2019-12-03 06:19:50 2019-12-03 06:27:40 t 1 1 182388 445 0.00 2019-12-03 05:46:53 2019-12-03 06:33:16 t 1 1 182390 520 0.00 2019-12-03 06:27:40 2019-12-03 06:35:28 t 1 1 182391 520 0.00 2019-12-03 06:35:28 2019-12-03 06:36:48 t 1 1 182396 566 0.00 2019-12-03 06:34:44 2019-12-03 06:50:00 t 1 1 182398 220 0.00 2019-12-03 06:57:43 2019-12-03 06:57:51 t 1 1 182403 675 0.00 2019-12-03 07:01:31 2019-12-03 07:07:54 t 1 1 182405 611 0.00 2019-12-03 07:06:28 2019-12-03 07:11:43 t 1 1 182407 611 0.00 2019-12-03 07:19:13 2019-12-03 07:21:07 t 1 1 182412 611 0.00 2019-12-03 07:27:50 2019-12-03 07:30:24 t 1 1 182413 611 0.00 2019-12-03 07:30:24 2019-12-03 07:31:37 t 1 1 182415 611 0.00 2019-12-03 07:31:37 2019-12-03 07:35:40 t 1 1 182416 611 0.00 2019-12-03 07:35:40 2019-12-03 07:39:48 t 1 1 182418 689 0.00 2019-12-03 07:44:13 2019-12-03 07:45:47 t 1 1 182419 562 0.00 2019-12-03 07:42:06 2019-12-03 07:48:03 t 1 1 182420 220 0.00 2019-12-03 07:48:48 2019-12-03 07:48:58 t 1 1 182426 562 0.00 2019-12-03 07:52:47 2019-12-03 07:52:55 t 1 1 182429 681 0.00 2019-12-03 07:32:34 2019-12-03 07:54:28 t 1 1 182432 562 0.00 2019-12-03 07:58:39 2019-12-03 07:59:52 t 1 1 182437 562 0.00 2019-12-03 08:11:19 2019-12-03 08:13:56 t 1 1 182439 562 0.00 2019-12-03 08:17:35 2019-12-03 08:18:06 t 1 1 182442 591 0.00 2019-12-03 08:08:22 2019-12-03 08:22:41 t 1 1 182443 562 0.00 2019-12-03 08:18:54 2019-12-03 08:26:41 t 1 1 182444 562 0.00 2019-12-03 08:27:09 2019-12-03 08:28:50 t 1 1 182447 445 0.00 2019-12-03 08:29:01 2019-12-03 08:30:53 t 1 1 182448 562 0.00 2019-12-03 08:31:06 2019-12-03 08:31:49 t 1 1 182449 591 0.00 2019-12-03 08:27:25 2019-12-03 08:33:06 t 1 1 182450 562 0.00 2019-12-03 08:32:27 2019-12-03 08:33:53 t 1 1 182455 487 0.00 2019-12-02 22:57:14 2019-12-03 08:41:50 t 1 2 182459 562 0.00 2019-12-03 08:41:20 2019-12-03 08:57:00 t 1 1 182463 615 0.00 2019-12-03 08:55:27 2019-12-03 09:01:10 t 1 1 182466 615 0.00 2019-12-03 09:01:10 2019-12-03 09:04:43 t 1 1 182469 581 0.00 2019-12-03 09:06:13 2019-12-03 09:09:48 t 1 1 182471 562 0.00 2019-12-03 09:09:54 2019-12-03 09:10:18 t 1 1 182472 520 0.00 2019-12-03 09:02:38 2019-12-03 09:11:14 t 1 1 182481 611 0.00 2019-12-03 09:04:30 2019-12-03 09:19:37 t 1 1 182482 673 0.00 2019-12-03 09:21:27 2019-12-03 09:22:35 t 1 1 182490 516 0.00 2019-12-03 09:26:39 2019-12-03 09:31:06 t 1 1 182491 220 0.00 2019-12-03 09:00:35 2019-12-03 09:31:14 t 1 1 182492 673 0.00 2019-12-03 09:30:53 2019-12-03 09:31:58 t 1 1 182493 667 0.00 2019-12-03 09:16:31 2019-12-03 09:32:26 t 1 1 182495 679 0.00 2019-12-03 09:34:02 2019-12-03 09:34:39 t 1 1 182496 591 0.00 2019-12-03 09:23:43 2019-12-03 09:35:16 t 1 1 182497 562 0.00 2019-12-03 09:34:54 2019-12-03 09:35:19 t 1 1 182505 675 0.00 2019-12-03 09:39:07 2019-12-03 09:41:52 t 1 1 182507 611 0.00 2019-12-03 09:19:37 2019-12-03 09:43:40 t 1 1 182509 562 0.00 2019-12-03 09:44:02 2019-12-03 09:44:15 t 1 1 182512 671 0.00 2019-12-03 09:38:47 2019-12-03 09:46:12 t 1 1 182515 485 0.00 2019-12-03 09:47:22 2019-12-03 09:48:47 t 1 1 182519 220 0.00 2019-12-03 09:51:12 2019-12-03 09:51:25 t 1 1 182527 220 0.00 2019-12-03 09:45:41 2019-12-03 10:02:01 t 1 2 182529 520 0.00 2019-12-03 09:58:18 2019-12-03 10:03:48 t 1 1 182531 591 0.00 2019-12-03 09:35:16 2019-12-03 10:07:42 t 1 1 182533 673 0.00 2019-12-03 09:39:32 2019-12-03 10:09:21 t 1 1 182540 667 0.00 2019-12-03 10:14:34 2019-12-03 10:15:34 t 1 2 182542 707 0.00 2019-12-03 10:13:17 2019-12-03 10:17:09 t 1 1 182544 671 0.00 2019-12-03 10:10:13 2019-12-03 10:17:36 t 1 1 182545 611 0.00 2019-12-03 10:12:36 2019-12-03 10:18:06 t 1 1 182546 445 0.00 2019-12-03 09:48:23 2019-12-03 10:18:30 t 1 1 182547 591 0.00 2019-12-03 10:07:42 2019-12-03 10:19:39 t 1 1 182553 445 0.00 2019-12-03 10:18:30 2019-12-03 10:24:02 t 1 1 182554 611 0.00 2019-12-03 10:23:43 2019-12-03 10:26:47 t 1 1 182559 562 0.00 2019-12-03 10:31:14 2019-12-03 10:32:46 t 1 1 182562 622 0.00 2019-12-03 10:27:26 2019-12-03 10:33:37 t 1 1 182570 220 0.00 2019-12-03 10:39:06 2019-12-03 10:39:37 t 1 1 182573 220 0.00 2019-12-03 10:39:42 2019-12-03 10:40:09 t 1 1 182576 220 0.00 2019-12-03 10:40:48 2019-12-03 10:40:50 t 1 1 182577 220 0.00 2019-12-03 10:40:50 2019-12-03 10:41:28 t 1 1 182585 220 0.00 2019-12-03 10:44:22 2019-12-03 10:45:00 t 1 1 182591 445 0.00 2019-12-03 10:29:54 2019-12-03 10:51:46 t 1 1 182595 622 0.00 2019-12-03 10:52:10 2019-12-03 10:59:30 t 1 1 182599 220 0.00 2019-12-03 11:01:16 2019-12-03 11:01:54 t 1 1 182601 445 0.00 2019-12-03 11:03:57 2019-12-03 11:05:05 t 1 1 182603 564 0.00 2019-12-03 10:52:33 2019-12-03 11:06:29 t 1 1 182604 622 0.00 2019-12-03 10:59:30 2019-12-03 11:08:20 t 1 1 182605 611 0.00 2019-12-03 10:54:55 2019-12-03 11:08:32 t 1 1 182607 220 0.00 2019-12-03 11:01:54 2019-12-03 11:11:47 t 1 1 182608 220 0.00 2019-12-03 11:11:47 2019-12-03 11:12:21 t 1 1 182613 615 0.00 2019-12-03 10:55:46 2019-12-03 11:16:27 t 1 1 182617 615 0.00 2019-12-03 11:16:27 2019-12-03 11:20:00 t 1 1 182621 538 0.00 2019-12-03 11:20:52 2019-12-03 11:22:13 t 1 1 182625 512 0.00 2019-12-03 11:22:23 2019-12-03 11:24:58 t 1 1 182629 311 0.00 2019-12-03 11:20:09 2019-12-03 11:26:31 t 1 2 182637 445 0.00 2019-12-03 11:16:04 2019-12-03 11:34:12 t 1 1 182642 611 0.00 2019-12-03 11:38:35 2019-12-03 11:40:44 t 1 1 182644 675 0.00 2019-12-03 11:42:56 2019-12-03 11:44:58 t 1 1 182645 528 0.00 2019-12-03 11:18:31 2019-12-03 11:46:25 t 1 1 182647 220 0.00 2019-12-03 11:47:37 2019-12-03 11:48:28 t 1 1 182651 671 0.00 2019-12-03 11:43:50 2019-12-03 11:51:02 t 1 1 182653 696 0.00 2019-12-03 11:08:28 2019-12-03 11:53:03 t 1 1 182658 694 0.00 2019-12-03 11:56:39 2019-12-03 11:58:42 t 1 1 182659 514 0.00 2019-12-03 11:57:22 2019-12-03 11:58:50 t 1 1 182660 691 0.00 2019-12-03 11:57:49 2019-12-03 12:00:27 t 1 1 182663 512 0.00 2019-12-03 11:46:13 2019-12-03 12:02:38 t 1 1 182665 514 0.00 2019-12-03 11:58:50 2019-12-03 12:05:24 t 1 1 182666 611 0.00 2019-12-03 12:03:07 2019-12-03 12:05:40 t 1 1 182667 544 0.00 2019-12-03 12:01:01 2019-12-03 12:06:25 t 1 1 182669 544 0.00 2019-12-03 12:06:24 2019-12-03 12:07:18 t 1 1 182671 611 0.00 2019-12-03 12:05:39 2019-12-03 12:09:12 t 1 1 182673 516 0.00 2019-12-03 12:11:01 2019-12-03 12:12:13 t 1 1 182675 667 0.00 2019-12-03 11:58:31 2019-12-03 12:13:52 t 1 1 182676 220 0.00 2019-12-03 12:10:30 2019-12-03 12:14:27 t 1 1 182679 667 0.00 2019-12-03 12:17:06 2019-12-03 12:17:15 t 1 1 182681 675 0.00 2019-12-03 11:51:37 2019-12-03 12:17:36 t 1 1 182683 562 0.00 2019-12-03 12:19:25 2019-12-03 12:20:42 t 1 1 182685 562 0.00 2019-12-03 12:20:49 2019-12-03 12:21:50 t 1 1 182688 514 0.00 2019-12-03 12:05:33 2019-12-03 12:23:20 t 1 1 182692 611 0.00 2019-12-03 12:21:11 2019-12-03 12:25:20 t 1 1 182694 445 0.00 2019-12-03 12:19:11 2019-12-03 12:27:38 t 1 1 182697 562 0.00 2019-12-03 12:27:26 2019-12-03 12:28:08 t 1 1 182702 562 0.00 2019-12-03 12:30:43 2019-12-03 12:31:27 t 1 1 182715 691 0.00 2019-12-03 12:36:52 2019-12-03 12:37:59 t 1 1 182718 220 0.00 2019-12-03 12:30:01 2019-12-03 12:39:26 t 1 2 182726 220 0.00 2019-12-03 12:45:23 2019-12-03 12:45:39 t 1 1 182729 637 0.00 2019-12-03 12:28:15 2019-12-03 12:47:50 t 1 1 182730 673 0.00 2019-12-03 12:30:18 2019-12-03 12:48:42 t 1 1 182733 520 0.00 2019-12-03 12:38:24 2019-12-03 12:49:30 t 1 1 182735 622 0.00 2019-12-03 12:49:03 2019-12-03 12:53:27 t 1 1 182738 220 0.00 2019-12-03 12:55:53 2019-12-03 12:56:07 t 1 1 182740 667 0.00 2019-12-03 12:56:07 2019-12-03 12:57:58 t 1 1 182742 667 0.00 2019-12-03 12:58:35 2019-12-03 12:59:09 t 1 1 182743 667 0.00 2019-12-03 12:59:09 2019-12-03 12:59:42 t 1 1 182744 667 0.00 2019-12-03 12:59:41 2019-12-03 13:00:18 t 1 1 182747 667 0.00 2019-12-03 13:01:34 2019-12-03 13:02:05 t 1 1 182756 667 0.00 2019-12-03 13:04:56 2019-12-03 13:05:29 t 1 1 182759 562 0.00 2019-12-03 13:05:13 2019-12-03 13:06:12 t 1 1 182760 611 0.00 2019-12-03 13:03:34 2019-12-03 13:06:20 t 1 1 182764 220 0.00 2019-12-03 13:06:58 2019-12-03 13:06:59 t 1 1 182767 667 0.00 2019-12-03 13:07:17 2019-12-03 13:07:44 t 1 1 182772 667 0.00 2019-12-03 13:09:37 2019-12-03 13:10:19 t 1 1 182776 667 0.00 2019-12-03 13:11:26 2019-12-03 13:12:02 t 1 1 182777 667 0.00 2019-12-03 13:12:02 2019-12-03 13:12:37 t 1 1 182779 667 0.00 2019-12-03 13:13:09 2019-12-03 13:13:16 t 1 1 182781 667 0.00 2019-12-03 13:13:44 2019-12-03 13:13:48 t 1 1 182782 220 0.00 2019-12-03 13:11:35 2019-12-03 13:14:14 t 1 1 182784 562 0.00 2019-12-03 13:13:40 2019-12-03 13:14:44 t 1 1 182785 451 0.00 2019-12-03 13:13:25 2019-12-03 13:15:10 t 1 1 182790 611 0.00 2019-12-03 13:06:20 2019-12-03 13:20:59 t 1 1 182792 611 0.00 2019-12-03 13:20:58 2019-12-03 13:22:44 t 1 1 182794 581 0.00 2019-12-03 13:21:07 2019-12-03 13:23:12 t 1 1 182796 607 0.00 2019-12-03 12:03:24 2019-12-03 13:24:59 t 1 1 182798 645 0.00 2019-12-03 13:21:09 2019-12-03 13:25:18 t 1 1 182799 578 0.00 2019-12-03 11:40:30 2019-12-03 13:25:39 t 1 1 182808 562 0.00 2019-12-03 13:30:55 2019-12-03 13:32:08 t 1 1 182810 707 0.00 2019-12-03 12:49:49 2019-12-03 13:33:21 t 1 1 182814 667 0.00 2019-12-03 13:36:13 2019-12-03 13:36:25 t 1 1 182816 622 0.00 2019-12-03 13:29:42 2019-12-03 13:36:47 t 1 1 182494 615 0.00 2019-12-03 09:15:46 2019-12-03 09:34:30 t 1 1 182499 615 0.00 2019-12-03 09:34:30 2019-12-03 09:37:32 t 1 1 182500 671 0.00 2019-12-03 09:35:06 2019-12-03 09:38:48 t 1 1 182503 445 0.00 2019-12-03 09:23:43 2019-12-03 09:40:26 t 1 1 182506 520 0.00 2019-12-03 09:29:39 2019-12-03 09:42:12 t 1 1 182508 615 0.00 2019-12-03 09:39:47 2019-12-03 09:44:05 t 1 1 182510 481 0.00 2019-12-03 09:41:30 2019-12-03 09:44:19 t 1 1 182513 220 0.00 2019-12-03 09:39:20 2019-12-03 09:46:20 t 1 1 182514 445 0.00 2019-12-03 09:40:26 2019-12-03 09:48:25 t 1 1 182517 611 0.00 2019-12-03 09:43:39 2019-12-03 09:51:10 t 1 1 182520 220 0.00 2019-12-03 09:51:38 2019-12-03 09:51:38 t 1 1 182522 516 0.00 2019-12-03 09:49:42 2019-12-03 09:53:17 t 1 1 182523 611 0.00 2019-12-03 09:51:10 2019-12-03 09:55:43 t 1 1 182524 562 0.00 2019-12-03 09:56:06 2019-12-03 09:56:36 t 1 1 182525 520 0.00 2019-12-03 09:45:43 2019-12-03 09:58:19 t 1 1 182526 611 0.00 2019-12-03 09:55:38 2019-12-03 09:59:49 t 1 1 182532 707 0.00 2019-12-03 10:00:38 2019-12-03 10:08:06 t 1 1 182534 220 0.00 2019-12-03 10:05:05 2019-12-03 10:09:28 t 1 1 182536 611 0.00 2019-12-03 10:03:09 2019-12-03 10:12:37 t 1 1 182537 667 0.00 2019-12-03 10:14:24 2019-12-03 10:14:26 t 1 2 182548 520 0.00 2019-12-03 10:17:49 2019-12-03 10:21:24 t 1 1 182551 562 0.00 2019-12-03 10:15:28 2019-12-03 10:23:01 t 1 1 182552 611 0.00 2019-12-03 10:23:01 2019-12-03 10:23:44 t 1 1 182555 622 0.00 2019-12-03 10:12:11 2019-12-03 10:27:26 t 1 1 182557 673 0.00 2019-12-03 10:09:21 2019-12-03 10:28:06 t 1 1 182563 562 0.00 2019-12-03 10:33:26 2019-12-03 10:34:46 t 1 1 182564 591 0.00 2019-12-03 10:19:39 2019-12-03 10:37:30 t 1 1 182565 673 0.00 2019-12-03 10:28:06 2019-12-03 10:37:54 t 1 1 182568 481 0.00 2019-12-03 09:44:18 2019-12-03 10:38:41 t 1 1 182569 220 0.00 2019-12-03 10:38:32 2019-12-03 10:39:06 t 1 1 182571 220 0.00 2019-12-03 10:39:37 2019-12-03 10:39:43 t 1 1 182574 220 0.00 2019-12-03 10:40:08 2019-12-03 10:40:16 t 1 1 182575 220 0.00 2019-12-03 10:40:16 2019-12-03 10:40:38 t 1 1 182578 220 0.00 2019-12-03 10:41:28 2019-12-03 10:42:00 t 1 1 182579 220 0.00 2019-12-03 10:41:59 2019-12-03 10:42:37 t 1 1 182583 615 0.00 2019-12-03 10:37:51 2019-12-03 10:44:24 t 1 1 182587 220 0.00 2019-12-03 10:45:32 2019-12-03 10:46:10 t 1 1 182590 516 0.00 2019-12-03 10:46:38 2019-12-03 10:51:30 t 1 1 182594 615 0.00 2019-12-03 10:44:24 2019-12-03 10:55:46 t 1 1 182606 445 0.00 2019-12-03 11:07:41 2019-12-03 11:09:53 t 1 1 182609 564 0.00 2019-12-03 11:06:29 2019-12-03 11:13:00 t 1 1 182610 675 0.00 2019-12-03 11:12:25 2019-12-03 11:13:47 t 1 1 182612 445 0.00 2019-12-03 11:14:01 2019-12-03 11:16:04 t 1 1 182615 622 0.00 2019-12-03 11:08:20 2019-12-03 11:17:39 t 1 1 182616 707 0.00 2019-12-03 10:39:15 2019-12-03 11:18:05 t 1 1 182618 694 0.00 2019-12-03 11:06:18 2019-12-03 11:20:00 t 1 1 182622 512 0.00 2019-12-03 11:06:55 2019-12-03 11:22:23 t 1 1 182623 611 0.00 2019-12-03 11:17:28 2019-12-03 11:23:32 t 1 1 182627 622 0.00 2019-12-03 11:17:39 2019-12-03 11:25:17 t 1 1 182630 591 0.00 2019-12-03 10:37:30 2019-12-03 11:27:20 t 1 1 182631 694 0.00 2019-12-03 11:20:00 2019-12-03 11:28:55 t 1 1 182632 645 0.00 2019-12-03 11:29:02 2019-12-03 11:30:49 t 1 1 182634 564 0.00 2019-12-03 11:26:24 2019-12-03 11:31:29 t 1 1 182638 516 0.00 2019-12-03 11:35:21 2019-12-03 11:35:24 t 1 1 182641 578 0.00 2019-12-03 00:37:02 2019-12-03 11:40:30 t 1 1 182643 622 0.00 2019-12-03 11:25:17 2019-12-03 11:41:48 t 1 1 182646 528 0.00 2019-12-03 11:46:25 2019-12-03 11:48:28 t 1 1 182648 622 0.00 2019-12-03 11:41:48 2019-12-03 11:49:15 t 1 1 182650 707 0.00 2019-12-03 11:39:34 2019-12-03 11:50:04 t 1 1 182654 696 0.00 2019-12-03 11:53:02 2019-12-03 11:54:03 t 1 1 182655 694 0.00 2019-12-03 11:36:52 2019-12-03 11:56:39 t 1 1 182662 694 0.00 2019-12-03 11:59:19 2019-12-03 12:00:57 t 1 1 182670 562 0.00 2019-12-03 12:03:22 2019-12-03 12:07:32 t 1 1 182672 681 0.00 2019-12-03 07:54:28 2019-12-03 12:11:49 t 1 1 182674 445 0.00 2019-12-03 12:10:14 2019-12-03 12:12:24 t 1 1 182678 562 0.00 2019-12-03 12:15:35 2019-12-03 12:15:41 t 1 1 182680 562 0.00 2019-12-03 12:16:14 2019-12-03 12:17:28 t 1 1 182691 220 0.00 2019-12-03 12:24:24 2019-12-03 12:24:57 t 1 1 182693 544 0.00 2019-12-03 12:07:18 2019-12-03 12:26:08 t 1 1 182696 667 0.00 2019-12-03 12:27:37 2019-12-03 12:27:45 t 1 1 182703 622 0.00 2019-12-03 11:50:10 2019-12-03 12:32:27 t 1 1 182705 445 0.00 2019-12-03 12:27:35 2019-12-03 12:34:02 t 1 1 182707 707 0.00 2019-12-03 12:30:22 2019-12-03 12:34:42 t 1 1 182708 220 0.00 2019-12-03 12:34:54 2019-12-03 12:35:02 t 1 1 182709 645 0.00 2019-12-03 12:32:52 2019-12-03 12:35:25 t 1 1 182711 649 0.00 2019-12-03 11:58:50 2019-12-03 12:36:34 t 1 1 182714 675 0.00 2019-12-03 12:30:33 2019-12-03 12:37:49 t 1 1 182717 667 0.00 2019-12-03 12:38:08 2019-12-03 12:38:29 t 1 1 182721 581 0.00 2019-12-03 12:29:13 2019-12-03 12:40:59 t 1 1 182725 516 0.00 2019-12-03 12:36:33 2019-12-03 12:45:07 t 1 1 182728 538 0.00 2019-12-03 11:23:39 2019-12-03 12:46:17 t 1 1 182731 622 0.00 2019-12-03 12:47:14 2019-12-03 12:49:03 t 1 1 182732 591 0.00 2019-12-03 12:34:44 2019-12-03 12:49:23 t 1 1 182749 445 0.00 2019-12-03 12:39:16 2019-12-03 13:02:49 t 1 1 182754 673 0.00 2019-12-03 12:48:42 2019-12-03 13:04:40 t 1 1 182757 675 0.00 2019-12-03 12:58:13 2019-12-03 13:06:01 t 1 1 182761 220 0.00 2019-12-03 13:06:23 2019-12-03 13:06:32 t 1 1 182762 667 0.00 2019-12-03 13:06:06 2019-12-03 13:06:42 t 1 1 182765 691 0.00 2019-12-03 13:05:56 2019-12-03 13:07:12 t 1 1 182768 562 0.00 2019-12-03 13:07:07 2019-12-03 13:07:55 t 1 1 182769 645 0.00 2019-12-03 13:06:07 2019-12-03 13:08:41 t 1 1 182778 667 0.00 2019-12-03 13:12:37 2019-12-03 13:13:09 t 1 1 182780 451 0.00 2019-12-03 13:06:44 2019-12-03 13:13:25 t 1 1 182783 220 0.00 2019-12-03 13:14:13 2019-12-03 13:14:24 t 1 1 182787 514 0.00 2019-12-03 13:00:03 2019-12-03 13:18:14 t 1 1 182791 562 0.00 2019-12-03 13:16:44 2019-12-03 13:22:07 t 1 1 182795 220 0.00 2019-12-03 13:14:48 2019-12-03 13:24:44 t 1 1 182797 220 0.00 2019-12-03 13:24:44 2019-12-03 13:25:04 t 1 1 182801 622 0.00 2019-12-03 13:22:22 2019-12-03 13:28:02 t 1 1 182803 667 0.00 2019-12-03 13:13:58 2019-12-03 13:29:06 t 1 1 182805 514 0.00 2019-12-03 13:18:14 2019-12-03 13:29:27 t 1 1 182806 220 0.00 2019-12-03 12:30:01 2019-12-03 13:30:08 t 1 2 182807 544 0.00 2019-12-03 12:26:08 2019-12-03 13:30:20 t 1 1 182813 220 0.00 2019-12-03 13:35:25 2019-12-03 13:35:35 t 1 1 182815 611 0.00 2019-12-03 13:22:44 2019-12-03 13:36:46 t 1 1 182819 451 0.00 2019-12-03 13:22:57 2019-12-03 13:40:17 t 1 1 182823 562 0.00 2019-12-03 13:41:08 2019-12-03 13:41:42 t 1 1 182498 673 0.00 2019-12-03 09:36:18 2019-12-03 09:37:29 t 1 1 182501 220 0.00 2019-12-03 09:31:18 2019-12-03 09:39:21 t 1 1 182502 562 0.00 2019-12-03 09:39:08 2019-12-03 09:39:48 t 1 1 182504 481 0.00 2019-12-03 09:11:15 2019-12-03 09:41:30 t 1 1 182511 520 0.00 2019-12-03 09:42:12 2019-12-03 09:45:09 t 1 1 182516 562 0.00 2019-12-03 09:49:48 2019-12-03 09:50:03 t 1 1 182518 220 0.00 2019-12-03 09:46:24 2019-12-03 09:51:13 t 1 1 182521 707 0.00 2019-12-03 09:06:14 2019-12-03 09:52:28 t 1 1 182528 611 0.00 2019-12-03 10:01:27 2019-12-03 10:03:10 t 1 1 182530 645 0.00 2019-12-03 10:02:18 2019-12-03 10:07:00 t 1 1 182535 622 0.00 2019-12-03 10:08:14 2019-12-03 10:12:11 t 1 1 182538 562 0.00 2019-12-03 10:00:06 2019-12-03 10:14:53 t 1 1 182539 679 0.00 2019-12-03 10:12:48 2019-12-03 10:15:25 t 1 1 182541 520 0.00 2019-12-03 10:05:27 2019-12-03 10:15:53 t 1 1 182543 694 0.00 2019-12-03 09:24:50 2019-12-03 10:17:12 t 1 1 182549 220 0.00 2019-12-03 10:21:45 2019-12-03 10:22:02 t 1 1 182550 611 0.00 2019-12-03 10:18:06 2019-12-03 10:23:01 t 1 1 182556 445 0.00 2019-12-03 10:26:39 2019-12-03 10:27:55 t 1 1 182558 562 0.00 2019-12-03 10:29:30 2019-12-03 10:30:47 t 1 1 182560 220 0.00 2019-12-03 10:32:17 2019-12-03 10:33:17 t 1 1 182561 562 0.00 2019-12-03 10:33:26 2019-12-03 10:33:26 t 1 1 182566 220 0.00 2019-12-03 10:35:50 2019-12-03 10:37:55 t 1 1 182567 220 0.00 2019-12-03 10:37:55 2019-12-03 10:38:32 t 1 1 182572 481 0.00 2019-12-03 10:38:41 2019-12-03 10:39:46 t 1 1 182580 220 0.00 2019-12-03 10:42:36 2019-12-03 10:43:12 t 1 1 182581 220 0.00 2019-12-03 10:43:12 2019-12-03 10:43:49 t 1 1 182582 220 0.00 2019-12-03 10:43:49 2019-12-03 10:44:23 t 1 1 182584 645 0.00 2019-12-03 10:40:45 2019-12-03 10:44:56 t 1 1 182586 220 0.00 2019-12-03 10:45:00 2019-12-03 10:45:33 t 1 1 182588 220 0.00 2019-12-03 10:46:10 2019-12-03 10:50:45 t 1 1 182589 220 0.00 2019-12-03 10:50:45 2019-12-03 10:51:25 t 1 1 182592 622 0.00 2019-12-03 10:47:18 2019-12-03 10:52:10 t 1 1 182593 679 0.00 2019-12-03 10:54:13 2019-12-03 10:55:24 t 1 1 182596 445 0.00 2019-12-03 10:57:32 2019-12-03 11:00:30 t 1 1 182597 220 0.00 2019-12-03 10:51:24 2019-12-03 11:01:16 t 1 1 182598 696 0.00 2019-12-03 10:53:07 2019-12-03 11:01:46 t 1 1 182600 445 0.00 2019-12-03 11:00:54 2019-12-03 11:03:58 t 1 1 182602 694 0.00 2019-12-03 10:18:38 2019-12-03 11:06:19 t 1 1 182611 445 0.00 2019-12-03 11:11:37 2019-12-03 11:14:01 t 1 1 182614 611 0.00 2019-12-03 11:16:19 2019-12-03 11:17:29 t 1 1 182619 220 0.00 2019-12-03 11:12:20 2019-12-03 11:20:30 t 1 1 182620 538 0.00 2019-12-03 10:55:04 2019-12-03 11:20:52 t 1 1 182624 220 0.00 2019-12-03 11:20:46 2019-12-03 11:23:47 t 1 2 182626 673 0.00 2019-12-03 11:01:24 2019-12-03 11:25:07 t 1 1 182628 564 0.00 2019-12-03 11:13:01 2019-12-03 11:26:24 t 1 1 182633 707 0.00 2019-12-03 11:18:05 2019-12-03 11:31:26 t 1 1 182635 694 0.00 2019-12-03 11:30:31 2019-12-03 11:31:32 t 1 1 182636 220 0.00 2019-12-03 11:20:30 2019-12-03 11:32:55 t 1 1 182639 564 0.00 2019-12-03 11:31:29 2019-12-03 11:37:45 t 1 1 182640 611 0.00 2019-12-03 11:32:22 2019-12-03 11:38:22 t 1 1 182649 675 0.00 2019-12-03 11:48:34 2019-12-03 11:50:00 t 1 1 182652 591 0.00 2019-12-03 11:27:20 2019-12-03 11:51:16 t 1 1 182656 691 0.00 2019-12-03 11:57:02 2019-12-03 11:57:49 t 1 1 182657 673 0.00 2019-12-03 11:37:11 2019-12-03 11:58:36 t 1 1 182661 611 0.00 2019-12-03 11:46:02 2019-12-03 12:00:35 t 1 1 182664 607 0.00 2019-12-03 11:10:48 2019-12-03 12:03:24 t 1 1 182668 615 0.00 2019-12-03 11:59:02 2019-12-03 12:06:33 t 1 1 182677 562 0.00 2019-12-03 12:08:07 2019-12-03 12:14:41 t 1 1 182682 673 0.00 2019-12-03 11:58:36 2019-12-03 12:18:04 t 1 1 182684 611 0.00 2019-12-03 12:09:11 2019-12-03 12:21:12 t 1 1 182686 528 0.00 2019-12-03 12:12:28 2019-12-03 12:22:06 t 1 1 182687 615 0.00 2019-12-03 12:13:29 2019-12-03 12:23:15 t 1 1 182689 645 0.00 2019-12-03 12:20:42 2019-12-03 12:24:02 t 1 1 182690 562 0.00 2019-12-03 12:23:01 2019-12-03 12:24:32 t 1 1 182695 581 0.00 2019-12-03 12:14:25 2019-12-03 12:27:45 t 1 1 182698 637 0.00 2019-12-03 12:02:40 2019-12-03 12:28:15 t 1 1 182699 591 0.00 2019-12-03 12:25:37 2019-12-03 12:28:28 t 1 1 182700 673 0.00 2019-12-03 12:18:04 2019-12-03 12:30:18 t 1 1 182701 611 0.00 2019-12-03 12:25:19 2019-12-03 12:31:11 t 1 1 182704 645 0.00 2019-12-03 12:30:21 2019-12-03 12:32:46 t 1 1 182706 622 0.00 2019-12-03 12:33:01 2019-12-03 12:34:29 t 1 1 182710 611 0.00 2019-12-03 12:31:11 2019-12-03 12:35:38 t 1 1 182712 691 0.00 2019-12-03 12:36:33 2019-12-03 12:36:53 t 1 1 182713 562 0.00 2019-12-03 12:36:58 2019-12-03 12:37:36 t 1 1 182716 520 0.00 2019-12-03 12:29:14 2019-12-03 12:38:25 t 1 1 182719 671 0.00 2019-12-03 12:32:40 2019-12-03 12:39:34 t 1 1 182720 645 0.00 2019-12-03 12:39:01 2019-12-03 12:40:31 t 1 1 182722 581 0.00 2019-12-03 12:41:04 2019-12-03 12:41:12 t 1 1 182723 581 0.00 2019-12-03 12:42:08 2019-12-03 12:44:47 t 1 1 182724 562 0.00 2019-12-03 12:44:49 2019-12-03 12:44:59 t 1 1 182727 667 0.00 2019-12-03 12:44:48 2019-12-03 12:45:49 t 1 1 182734 512 0.00 2019-12-03 12:02:45 2019-12-03 12:50:55 t 1 1 182736 512 0.00 2019-12-03 12:50:55 2019-12-03 12:54:12 t 1 1 182737 562 0.00 2019-12-03 12:55:33 2019-12-03 12:55:57 t 1 1 182739 562 0.00 2019-12-03 12:56:50 2019-12-03 12:57:27 t 1 1 182741 667 0.00 2019-12-03 12:57:58 2019-12-03 12:58:35 t 1 1 182745 667 0.00 2019-12-03 13:00:17 2019-12-03 13:01:02 t 1 1 182746 667 0.00 2019-12-03 13:01:01 2019-12-03 13:01:34 t 1 1 182748 667 0.00 2019-12-03 13:02:05 2019-12-03 13:02:41 t 1 1 182750 667 0.00 2019-12-03 13:02:40 2019-12-03 13:03:14 t 1 1 182751 611 0.00 2019-12-03 12:35:37 2019-12-03 13:03:35 t 1 1 182752 667 0.00 2019-12-03 13:03:14 2019-12-03 13:03:50 t 1 1 182753 667 0.00 2019-12-03 13:03:50 2019-12-03 13:04:25 t 1 1 182755 667 0.00 2019-12-03 13:04:25 2019-12-03 13:04:57 t 1 1 182758 667 0.00 2019-12-03 13:05:29 2019-12-03 13:06:06 t 1 1 182763 220 0.00 2019-12-03 13:06:40 2019-12-03 13:06:51 t 1 1 182766 667 0.00 2019-12-03 13:06:41 2019-12-03 13:07:18 t 1 1 182770 667 0.00 2019-12-03 13:07:52 2019-12-03 13:08:59 t 1 1 182771 667 0.00 2019-12-03 13:08:59 2019-12-03 13:09:43 t 1 1 182773 667 0.00 2019-12-03 13:10:19 2019-12-03 13:10:52 t 1 1 182774 667 0.00 2019-12-03 13:10:51 2019-12-03 13:11:27 t 1 1 182775 445 0.00 2019-12-03 13:03:46 2019-12-03 13:11:51 t 1 1 182786 673 0.00 2019-12-03 13:16:18 2019-12-03 13:17:29 t 1 1 182788 581 0.00 2019-12-03 13:08:09 2019-12-03 13:19:38 t 1 1 182789 622 0.00 2019-12-03 13:02:24 2019-12-03 13:20:25 t 1 1 182793 451 0.00 2019-12-03 13:15:10 2019-12-03 13:22:57 t 1 1 182800 581 0.00 2019-12-03 13:26:28 2019-12-03 13:27:41 t 1 1 182802 679 0.00 2019-12-03 13:23:53 2019-12-03 13:28:25 t 1 1 182804 673 0.00 2019-12-03 13:26:42 2019-12-03 13:29:20 t 1 1 182809 696 0.00 2019-12-03 13:32:35 2019-12-03 13:32:57 t 1 1 182811 551 0.00 2019-12-03 08:47:22 2019-12-03 13:34:40 t 1 1 182812 220 0.00 2019-12-03 13:26:28 2019-12-03 13:35:25 t 1 1 182817 675 0.00 2019-12-03 13:32:51 2019-12-03 13:37:41 t 1 1 182818 562 0.00 2019-12-03 13:33:50 2019-12-03 13:39:48 t 1 1 182822 220 0.00 2019-12-03 13:40:45 2019-12-03 13:40:55 t 1 1 182826 656 0.00 2019-12-03 08:20:38 2019-12-03 13:42:40 t 1 1 182830 566 0.00 2019-12-03 13:18:35 2019-12-03 13:46:48 t 1 1 182832 445 0.00 2019-12-03 13:11:51 2019-12-03 13:48:23 t 1 1 182834 660 0.00 2019-12-03 13:48:41 2019-12-03 13:49:54 t 1 1 182836 220 0.00 2019-12-03 13:51:17 2019-12-03 13:51:29 t 1 1 182837 562 0.00 2019-12-03 13:51:49 2019-12-03 13:51:56 t 1 1 182840 622 0.00 2019-12-03 13:44:12 2019-12-03 13:54:27 t 1 1 182842 485 0.00 2019-12-03 13:53:57 2019-12-03 13:56:25 t 1 1 182844 512 0.00 2019-12-03 13:21:59 2019-12-03 13:58:10 t 1 1 182852 220 0.00 2019-12-03 14:02:20 2019-12-03 14:03:03 t 1 1 182853 220 0.00 2019-12-03 14:03:06 2019-12-03 14:03:13 t 1 1 182861 673 0.00 2019-12-03 13:37:04 2019-12-03 14:12:22 t 1 1 182866 673 0.00 2019-12-03 14:12:21 2019-12-03 14:13:41 t 1 1 182869 514 0.00 2019-12-03 13:59:05 2019-12-03 14:15:24 t 1 1 182871 512 0.00 2019-12-03 14:12:12 2019-12-03 14:17:48 t 1 1 182873 445 0.00 2019-12-03 13:48:37 2019-12-03 14:18:45 t 1 1 182875 562 0.00 2019-12-03 14:18:17 2019-12-03 14:19:04 t 1 1 182876 611 0.00 2019-12-03 14:18:11 2019-12-03 14:20:50 t 1 1 182880 694 0.00 2019-12-03 12:02:59 2019-12-03 14:24:11 t 1 1 182885 562 0.00 2019-12-03 14:25:13 2019-12-03 14:26:50 t 1 1 182891 220 0.00 2019-12-03 14:34:38 2019-12-03 14:34:39 t 1 1 182893 514 0.00 2019-12-03 14:15:24 2019-12-03 14:36:45 t 1 1 182894 564 0.00 2019-12-03 14:12:36 2019-12-03 14:38:05 t 1 1 182895 667 0.00 2019-12-03 14:41:46 2019-12-03 14:44:55 t 1 1 182897 220 0.00 2019-12-03 14:37:25 2019-12-03 14:45:19 t 1 1 182900 562 0.00 2019-12-03 14:45:08 2019-12-03 14:46:34 t 1 1 182903 645 0.00 2019-12-03 14:32:02 2019-12-03 14:48:58 t 1 1 182904 220 0.00 2019-12-03 14:45:57 2019-12-03 14:49:55 t 1 1 182906 220 0.00 2019-12-03 14:49:55 2019-12-03 14:50:46 t 1 1 182907 445 0.00 2019-12-03 14:18:45 2019-12-03 14:52:20 t 1 1 182909 694 0.00 2019-12-03 14:28:56 2019-12-03 14:53:08 t 1 1 182911 490 0.00 2019-12-03 14:55:19 2019-12-03 14:55:31 t 1 1 182913 445 0.00 2019-12-03 14:52:20 2019-12-03 14:56:00 t 1 1 182919 673 0.00 2019-12-03 14:50:16 2019-12-03 14:59:18 t 1 1 182921 707 0.00 2019-12-03 14:47:54 2019-12-03 15:00:52 t 1 1 182924 637 0.00 2019-12-03 12:47:50 2019-12-03 15:04:29 t 1 1 182926 578 0.00 2019-12-03 13:26:13 2019-12-03 15:05:13 t 1 1 182929 707 0.00 2019-12-03 15:03:55 2019-12-03 15:08:54 t 1 1 182933 487 0.00 2019-12-03 15:10:19 2019-12-03 15:11:24 t 1 2 182935 498 0.00 2019-12-03 15:02:39 2019-12-03 15:14:19 t 1 2 182943 581 0.00 2019-12-03 15:18:46 2019-12-03 15:20:39 t 1 1 182945 220 0.00 2019-12-03 15:04:02 2019-12-03 15:21:26 t 1 2 182947 490 0.00 2019-12-03 15:02:10 2019-12-03 15:22:23 t 1 1 182948 611 0.00 2019-12-03 15:19:09 2019-12-03 15:23:22 t 1 1 182950 574 0.00 2019-12-03 15:24:45 2019-12-03 15:25:53 t 1 1 182952 499 0.00 2019-12-03 15:12:43 2019-12-03 15:26:46 t 1 1 182962 528 0.00 2019-12-03 15:10:01 2019-12-03 15:33:36 t 1 1 182967 656 0.00 2019-12-03 14:52:35 2019-12-03 15:39:58 t 1 1 182969 544 0.00 2019-12-03 13:30:36 2019-12-03 15:42:49 t 1 1 182971 520 0.00 2019-12-03 15:27:32 2019-12-03 15:44:26 t 1 1 182974 633 0.00 2019-12-03 15:39:55 2019-12-03 15:49:35 t 1 1 182977 220 0.00 2019-12-03 15:51:19 2019-12-03 15:51:38 t 1 1 182978 520 0.00 2019-12-03 15:47:07 2019-12-03 15:52:07 t 1 1 182980 499 0.00 2019-12-03 15:47:50 2019-12-03 15:54:25 t 1 1 182983 633 0.00 2019-12-03 15:49:35 2019-12-03 15:55:29 t 1 1 182984 671 0.00 2019-12-03 15:51:04 2019-12-03 15:56:23 t 1 1 182989 220 0.00 2019-12-03 16:01:57 2019-12-03 16:01:59 t 1 1 182995 544 0.00 2019-12-03 15:42:49 2019-12-03 16:08:10 t 1 1 182999 611 0.00 2019-12-03 16:05:47 2019-12-03 16:09:37 t 1 1 183001 637 0.00 2019-12-03 16:09:15 2019-12-03 16:10:19 t 1 1 183004 581 0.00 2019-12-03 16:11:04 2019-12-03 16:11:22 t 1 1 183005 220 0.00 2019-12-03 16:04:17 2019-12-03 16:12:37 t 1 1 183007 611 0.00 2019-12-03 16:11:07 2019-12-03 16:13:19 t 1 1 183010 611 0.00 2019-12-03 16:13:48 2019-12-03 16:14:31 t 1 1 183014 220 0.00 2019-12-03 16:13:47 2019-12-03 16:16:47 t 1 2 183017 581 0.00 2019-12-03 16:18:09 2019-12-03 16:18:39 t 1 1 183020 520 0.00 2019-12-03 16:18:29 2019-12-03 16:20:28 t 1 1 183022 562 0.00 2019-12-03 16:22:50 2019-12-03 16:23:23 t 1 1 183025 578 0.00 2019-12-03 15:16:28 2019-12-03 16:24:58 t 1 1 183031 520 0.00 2019-12-03 16:23:04 2019-12-03 16:30:12 t 1 1 183032 707 0.00 2019-12-03 16:20:32 2019-12-03 16:30:24 t 1 1 183037 520 0.00 2019-12-03 16:30:09 2019-12-03 16:33:03 t 1 1 183038 562 0.00 2019-12-03 16:33:41 2019-12-03 16:34:05 t 1 1 183041 520 0.00 2019-12-03 16:33:03 2019-12-03 16:37:26 t 1 1 183043 615 0.00 2019-12-03 16:25:21 2019-12-03 16:40:18 t 1 1 183045 562 0.00 2019-12-03 16:40:24 2019-12-03 16:41:21 t 1 1 183049 637 0.00 2019-12-03 16:40:47 2019-12-03 16:43:15 t 1 1 183058 220 0.00 2019-12-03 16:28:04 2019-12-03 16:53:13 t 1 1 183060 675 0.00 2019-12-03 16:52:33 2019-12-03 16:53:56 t 1 1 183061 637 0.00 2019-12-03 16:44:39 2019-12-03 16:54:39 t 1 1 183063 689 0.00 2019-12-03 16:52:21 2019-12-03 16:56:38 t 1 1 183065 694 0.00 2019-12-03 16:42:36 2019-12-03 16:57:58 t 1 1 183068 578 0.00 2019-12-03 16:48:55 2019-12-03 16:59:58 t 1 1 183070 675 0.00 2019-12-03 16:58:28 2019-12-03 17:00:57 t 1 1 183072 687 0.00 2019-12-03 16:58:52 2019-12-03 17:01:08 t 1 1 183078 673 0.00 2019-12-03 16:38:30 2019-12-03 17:07:16 t 1 1 183080 622 0.00 2019-12-03 17:01:02 2019-12-03 17:11:28 t 1 1 183082 520 0.00 2019-12-03 16:51:51 2019-12-03 17:12:07 t 1 1 183084 562 0.00 2019-12-03 17:10:54 2019-12-03 17:13:04 t 1 1 183085 578 0.00 2019-12-03 16:59:58 2019-12-03 17:14:25 t 1 1 183087 562 0.00 2019-12-03 17:15:18 2019-12-03 17:16:04 t 1 1 183089 562 0.00 2019-12-03 17:21:51 2019-12-03 17:22:19 t 1 1 183095 687 0.00 2019-12-03 17:09:52 2019-12-03 17:29:53 t 1 1 183100 562 0.00 2019-12-03 17:39:04 2019-12-03 17:39:17 t 1 1 183101 687 0.00 2019-12-03 17:29:53 2019-12-03 17:41:08 t 1 1 183104 445 0.00 2019-12-03 17:35:18 2019-12-03 17:41:35 t 1 1 183106 520 0.00 2019-12-03 17:34:58 2019-12-03 17:42:01 t 1 1 183111 220 0.00 2019-12-03 16:57:05 2019-12-03 17:46:16 t 1 1 183113 607 0.00 2019-12-03 16:24:07 2019-12-03 17:48:46 t 1 1 182820 671 0.00 2019-12-03 13:34:47 2019-12-03 13:40:20 t 1 1 182821 220 0.00 2019-12-03 13:35:57 2019-12-03 13:40:46 t 1 1 182824 611 0.00 2019-12-03 13:36:45 2019-12-03 13:41:49 t 1 1 182828 622 0.00 2019-12-03 13:36:47 2019-12-03 13:44:12 t 1 1 182829 656 0.00 2019-12-03 13:43:48 2019-12-03 13:45:06 t 1 1 182833 611 0.00 2019-12-03 13:47:41 2019-12-03 13:49:21 t 1 1 182839 451 0.00 2019-12-03 13:40:17 2019-12-03 13:53:31 t 1 1 182845 566 0.00 2019-12-03 13:46:48 2019-12-03 13:58:55 t 1 1 182849 220 0.00 2019-12-03 14:01:49 2019-12-03 14:01:49 t 1 1 182851 562 0.00 2019-12-03 14:02:16 2019-12-03 14:02:49 t 1 1 182854 622 0.00 2019-12-03 13:54:28 2019-12-03 14:03:30 t 1 1 182856 566 0.00 2019-12-03 13:58:55 2019-12-03 14:06:45 t 1 1 182857 607 0.00 2019-12-03 13:24:59 2019-12-03 14:07:45 t 1 1 182858 566 0.00 2019-12-03 14:06:45 2019-12-03 14:09:35 t 1 1 182860 645 0.00 2019-12-03 14:06:08 2019-12-03 14:11:55 t 1 1 182863 564 0.00 2019-12-03 11:37:45 2019-12-03 14:12:36 t 1 1 182865 562 0.00 2019-12-03 14:13:09 2019-12-03 14:13:22 t 1 1 182867 611 0.00 2019-12-03 14:09:54 2019-12-03 14:13:55 t 1 1 182868 665 0.00 2019-12-03 14:01:31 2019-12-03 14:14:17 t 1 1 182872 611 0.00 2019-12-03 14:13:54 2019-12-03 14:18:12 t 1 1 182879 562 0.00 2019-12-03 14:23:38 2019-12-03 14:24:00 t 1 1 182881 220 0.00 2019-12-03 14:23:42 2019-12-03 14:24:34 t 1 1 182887 503 0.00 2019-12-03 14:26:46 2019-12-03 14:30:34 t 1 1 182888 673 0.00 2019-12-03 14:25:56 2019-12-03 14:31:54 t 1 1 182890 220 0.00 2019-12-03 14:25:31 2019-12-03 14:34:38 t 1 1 182892 220 0.00 2019-12-03 14:34:47 2019-12-03 14:34:56 t 1 1 182902 667 0.00 2019-12-03 14:46:50 2019-12-03 14:48:47 t 1 1 182910 503 0.00 2019-12-03 14:30:34 2019-12-03 14:53:11 t 1 1 182916 562 0.00 2019-12-03 14:47:07 2019-12-03 14:56:31 t 1 1 182918 481 0.00 2019-12-03 10:39:45 2019-12-03 14:57:18 t 1 1 182920 622 0.00 2019-12-03 14:03:30 2019-12-03 15:00:42 t 1 1 182930 673 0.00 2019-12-03 15:03:27 2019-12-03 15:09:21 t 1 1 182931 611 0.00 2019-12-03 14:56:29 2019-12-03 15:10:09 t 1 1 182936 562 0.00 2019-12-03 15:15:36 2019-12-03 15:16:12 t 1 1 182938 562 0.00 2019-12-03 15:17:05 2019-12-03 15:17:33 t 1 1 182939 581 0.00 2019-12-03 14:51:01 2019-12-03 15:18:46 t 1 1 182940 611 0.00 2019-12-03 15:10:09 2019-12-03 15:19:09 t 1 1 182942 456 0.00 2019-12-03 15:10:38 2019-12-03 15:20:35 t 1 1 182944 481 0.00 2019-12-03 14:57:18 2019-12-03 15:21:24 t 1 1 182949 445 0.00 2019-12-03 14:56:00 2019-12-03 15:24:49 t 1 1 182953 694 0.00 2019-12-03 15:07:07 2019-12-03 15:27:29 t 1 1 182957 637 0.00 2019-12-03 15:24:55 2019-12-03 15:28:54 t 1 1 182961 645 0.00 2019-12-03 15:19:24 2019-12-03 15:31:51 t 1 1 182964 562 0.00 2019-12-03 15:34:30 2019-12-03 15:34:58 t 1 1 182965 481 0.00 2019-12-03 15:21:17 2019-12-03 15:36:11 t 1 1 182968 490 0.00 2019-12-03 15:22:23 2019-12-03 15:40:39 t 1 1 182972 499 0.00 2019-12-03 15:28:30 2019-12-03 15:47:50 t 1 1 182973 675 0.00 2019-12-03 15:45:44 2019-12-03 15:49:25 t 1 1 182975 637 0.00 2019-12-03 15:42:51 2019-12-03 15:49:41 t 1 1 182979 591 0.00 2019-12-03 15:08:32 2019-12-03 15:52:47 t 1 1 182982 528 0.00 2019-12-03 15:54:09 2019-12-03 15:55:22 t 1 1 182985 490 0.00 2019-12-03 15:40:39 2019-12-03 15:59:30 t 1 1 182988 520 0.00 2019-12-03 15:52:06 2019-12-03 16:01:58 t 1 1 182990 220 0.00 2019-12-03 16:02:06 2019-12-03 16:02:14 t 1 1 182996 675 0.00 2019-12-03 16:06:00 2019-12-03 16:08:12 t 1 1 182997 581 0.00 2019-12-03 16:08:13 2019-12-03 16:08:47 t 1 1 183000 581 0.00 2019-12-03 16:09:38 2019-12-03 16:09:51 t 1 1 183008 607 0.00 2019-12-03 14:15:39 2019-12-03 16:13:40 t 1 1 183009 490 0.00 2019-12-03 15:59:30 2019-12-03 16:14:12 t 1 1 183012 562 0.00 2019-12-03 16:15:27 2019-12-03 16:15:47 t 1 1 183013 520 0.00 2019-12-03 16:10:53 2019-12-03 16:16:20 t 1 1 183016 520 0.00 2019-12-03 16:16:20 2019-12-03 16:18:30 t 1 1 183018 645 0.00 2019-12-03 16:08:54 2019-12-03 16:19:42 t 1 1 183019 499 0.00 2019-12-03 15:54:25 2019-12-03 16:19:56 t 1 1 183026 544 0.00 2019-12-03 16:08:10 2019-12-03 16:25:33 t 1 1 183029 611 0.00 2019-12-03 16:25:04 2019-12-03 16:27:01 t 1 1 183034 673 0.00 2019-12-03 16:02:28 2019-12-03 16:30:40 t 1 1 183039 581 0.00 2019-12-03 16:19:53 2019-12-03 16:36:15 t 1 1 183044 520 0.00 2019-12-03 16:38:01 2019-12-03 16:41:20 t 1 1 183046 694 0.00 2019-12-03 15:27:29 2019-12-03 16:42:36 t 1 1 183048 512 0.00 2019-12-03 16:41:35 2019-12-03 16:42:43 t 1 1 183050 520 0.00 2019-12-03 16:41:20 2019-12-03 16:43:18 t 1 1 183054 578 0.00 2019-12-03 16:27:38 2019-12-03 16:48:55 t 1 1 183062 637 0.00 2019-12-03 16:54:39 2019-12-03 16:56:21 t 1 1 183064 503 0.00 2019-12-03 16:49:28 2019-12-03 16:56:46 t 1 1 183066 615 0.00 2019-12-03 16:40:18 2019-12-03 16:58:05 t 1 1 183067 220 0.00 2019-12-03 16:56:41 2019-12-03 16:59:48 t 1 2 183069 671 0.00 2019-12-03 16:53:58 2019-12-03 17:00:38 t 1 1 183071 622 0.00 2019-12-03 16:57:35 2019-12-03 17:01:03 t 1 1 183076 675 0.00 2019-12-03 17:01:44 2019-12-03 17:04:01 t 1 1 183077 562 0.00 2019-12-03 17:04:56 2019-12-03 17:06:54 t 1 1 183079 687 0.00 2019-12-03 17:03:10 2019-12-03 17:09:12 t 1 1 183081 675 0.00 2019-12-03 17:11:34 2019-12-03 17:11:52 t 1 1 183083 694 0.00 2019-12-03 16:57:58 2019-12-03 17:12:12 t 1 1 183086 673 0.00 2019-12-03 17:07:16 2019-12-03 17:14:34 t 1 1 183091 656 0.00 2019-12-03 15:39:58 2019-12-03 17:24:31 t 1 1 183093 622 0.00 2019-12-03 17:22:55 2019-12-03 17:27:05 t 1 1 183098 445 0.00 2019-12-03 16:50:00 2019-12-03 17:34:20 t 1 1 183102 481 0.00 2019-12-03 16:26:25 2019-12-03 17:41:17 t 1 1 183103 538 0.00 2019-12-03 16:24:42 2019-12-03 17:41:20 t 1 1 183107 689 0.00 2019-12-03 17:39:48 2019-12-03 17:42:21 t 1 1 183108 551 0.00 2019-12-03 13:34:40 2019-12-03 17:43:36 t 1 1 183109 562 0.00 2019-12-03 17:40:28 2019-12-03 17:45:03 t 1 1 183110 485 0.00 2019-12-03 17:42:43 2019-12-03 17:46:00 t 1 1 183112 687 0.00 2019-12-03 17:41:08 2019-12-03 17:46:30 t 1 1 183116 481 0.00 2019-12-03 17:41:17 2019-12-03 17:49:37 t 1 1 183131 528 0.00 2019-12-03 17:08:17 2019-12-03 17:58:00 t 1 1 183132 645 0.00 2019-12-03 17:54:18 2019-12-03 17:59:42 t 1 1 183135 220 0.00 2019-12-03 18:00:36 2019-12-03 18:01:14 t 1 1 183138 220 0.00 2019-12-03 18:01:14 2019-12-03 18:01:47 t 1 1 183142 220 0.00 2019-12-03 18:02:23 2019-12-03 18:02:58 t 1 1 183143 220 0.00 2019-12-03 18:02:57 2019-12-03 18:03:32 t 1 1 183145 220 0.00 2019-12-03 18:03:32 2019-12-03 18:04:08 t 1 1 183146 220 0.00 2019-12-03 18:04:07 2019-12-03 18:04:43 t 1 1 183153 220 0.00 2019-12-03 18:07:48 2019-12-03 18:08:25 t 1 1 183155 220 0.00 2019-12-03 18:08:24 2019-12-03 18:09:02 t 1 1 183156 667 0.00 2019-12-03 17:48:34 2019-12-03 18:09:28 t 1 1 182825 667 0.00 2019-12-03 13:41:20 2019-12-03 13:41:56 t 1 1 182827 516 0.00 2019-12-03 13:33:30 2019-12-03 13:42:48 t 1 1 182831 611 0.00 2019-12-03 13:41:56 2019-12-03 13:47:41 t 1 1 182835 220 0.00 2019-12-03 13:43:50 2019-12-03 13:51:17 t 1 1 182838 667 0.00 2019-12-03 13:51:51 2019-12-03 13:52:00 t 1 1 182841 645 0.00 2019-12-03 13:46:07 2019-12-03 13:55:25 t 1 1 182843 675 0.00 2019-12-03 13:45:22 2019-12-03 13:56:41 t 1 1 182846 514 0.00 2019-12-03 13:29:27 2019-12-03 13:59:05 t 1 1 182847 665 0.00 2019-12-03 13:40:26 2019-12-03 14:01:31 t 1 1 182848 220 0.00 2019-12-03 13:52:13 2019-12-03 14:01:49 t 1 1 182850 667 0.00 2019-12-03 14:02:20 2019-12-03 14:02:42 t 1 1 182855 220 0.00 2019-12-03 14:03:13 2019-12-03 14:04:16 t 1 1 182859 611 0.00 2019-12-03 13:49:20 2019-12-03 14:09:54 t 1 1 182862 451 0.00 2019-12-03 13:53:31 2019-12-03 14:12:34 t 1 1 182864 656 0.00 2019-12-03 13:45:36 2019-12-03 14:12:57 t 1 1 182870 220 0.00 2019-12-03 14:14:04 2019-12-03 14:16:47 t 1 1 182874 656 0.00 2019-12-03 14:12:57 2019-12-03 14:18:48 t 1 1 182877 562 0.00 2019-12-03 14:20:29 2019-12-03 14:21:11 t 1 1 182878 220 0.00 2019-12-03 14:04:42 2019-12-03 14:23:43 t 1 1 182882 673 0.00 2019-12-03 14:14:07 2019-12-03 14:25:56 t 1 1 182883 656 0.00 2019-12-03 14:18:48 2019-12-03 14:26:19 t 1 1 182884 562 0.00 2019-12-03 14:26:39 2019-12-03 14:26:39 f 1 1 182886 611 0.00 2019-12-03 14:20:49 2019-12-03 14:30:03 t 1 1 182889 707 0.00 2019-12-03 14:31:27 2019-12-03 14:33:26 t 1 1 182896 562 0.00 2019-12-03 14:26:51 2019-12-03 14:45:08 t 1 1 182898 220 0.00 2019-12-03 14:45:18 2019-12-03 14:45:29 t 1 1 182899 220 0.00 2019-12-03 14:45:38 2019-12-03 14:45:57 t 1 1 182901 611 0.00 2019-12-03 14:30:03 2019-12-03 14:48:26 t 1 1 182905 673 0.00 2019-12-03 14:31:54 2019-12-03 14:50:16 t 1 1 182908 656 0.00 2019-12-03 14:26:19 2019-12-03 14:52:35 t 1 1 182912 564 0.00 2019-12-03 14:38:05 2019-12-03 14:55:54 t 1 1 182914 516 0.00 2019-12-03 14:42:22 2019-12-03 14:56:16 t 1 1 182915 611 0.00 2019-12-03 14:48:26 2019-12-03 14:56:29 t 1 1 182917 503 0.00 2019-12-03 14:53:10 2019-12-03 14:56:36 t 1 1 182922 667 0.00 2019-12-03 15:02:19 2019-12-03 15:03:00 t 1 1 182923 673 0.00 2019-12-03 14:59:18 2019-12-03 15:03:28 t 1 1 182925 562 0.00 2019-12-03 14:56:31 2019-12-03 15:04:36 t 1 1 182927 562 0.00 2019-12-03 15:04:48 2019-12-03 15:06:17 t 1 1 182928 694 0.00 2019-12-03 14:54:22 2019-12-03 15:07:07 t 1 1 182932 675 0.00 2019-12-03 15:08:02 2019-12-03 15:10:54 t 1 1 182934 514 0.00 2019-12-03 15:01:03 2019-12-03 15:11:43 t 1 1 182937 578 0.00 2019-12-03 15:05:13 2019-12-03 15:16:28 t 1 1 182941 637 0.00 2019-12-03 15:04:29 2019-12-03 15:19:23 t 1 1 182946 679 0.00 2019-12-03 15:21:08 2019-12-03 15:22:15 t 1 1 182951 220 0.00 2019-12-03 15:20:58 2019-12-03 15:26:18 t 1 2 182954 562 0.00 2019-12-03 15:26:43 2019-12-03 15:27:30 t 1 1 182955 562 0.00 2019-12-03 15:28:07 2019-12-03 15:28:14 t 1 1 182956 499 0.00 2019-12-03 15:26:46 2019-12-03 15:28:32 t 1 1 182958 707 0.00 2019-12-03 15:24:08 2019-12-03 15:30:02 t 1 1 182959 220 0.00 2019-12-03 14:33:36 2019-12-03 15:31:14 t 1 2 182960 445 0.00 2019-12-03 15:24:47 2019-12-03 15:31:31 t 1 1 182963 673 0.00 2019-12-03 15:17:47 2019-12-03 15:34:57 t 1 1 182966 633 0.00 2019-12-03 15:26:32 2019-12-03 15:39:55 t 1 1 182970 707 0.00 2019-12-03 15:32:34 2019-12-03 15:43:42 t 1 1 182976 220 0.00 2019-12-03 14:50:46 2019-12-03 15:51:19 t 1 1 182981 562 0.00 2019-12-03 15:52:48 2019-12-03 15:54:50 t 1 1 182986 675 0.00 2019-12-03 15:58:14 2019-12-03 16:00:14 t 1 1 182987 220 0.00 2019-12-03 15:55:53 2019-12-03 16:01:58 t 1 1 182991 673 0.00 2019-12-03 15:34:56 2019-12-03 16:02:28 t 1 1 182992 591 0.00 2019-12-03 15:52:47 2019-12-03 16:04:11 t 1 1 182993 611 0.00 2019-12-03 15:52:02 2019-12-03 16:05:48 t 1 1 182994 581 0.00 2019-12-03 15:40:07 2019-12-03 16:07:06 t 1 1 182998 520 0.00 2019-12-03 16:01:57 2019-12-03 16:09:29 t 1 1 183002 520 0.00 2019-12-03 16:09:29 2019-12-03 16:10:53 t 1 1 183003 611 0.00 2019-12-03 16:09:37 2019-12-03 16:11:08 t 1 1 183006 220 0.00 2019-12-03 16:12:37 2019-12-03 16:12:39 t 1 1 183011 220 0.00 2019-12-03 16:12:47 2019-12-03 16:14:47 t 1 1 183015 611 0.00 2019-12-03 16:14:30 2019-12-03 16:17:19 t 1 1 183021 520 0.00 2019-12-03 16:20:27 2019-12-03 16:23:05 t 1 1 183023 645 0.00 2019-12-03 16:22:53 2019-12-03 16:23:58 t 1 1 183024 611 0.00 2019-12-03 16:17:43 2019-12-03 16:24:41 t 1 1 183027 499 0.00 2019-12-03 16:19:55 2019-12-03 16:26:07 t 1 1 183028 220 0.00 2019-12-03 16:14:25 2019-12-03 16:26:25 t 1 1 183030 637 0.00 2019-12-03 16:17:25 2019-12-03 16:27:06 t 1 1 183033 637 0.00 2019-12-03 16:27:05 2019-12-03 16:30:40 t 1 1 183035 645 0.00 2019-12-03 16:28:13 2019-12-03 16:31:09 t 1 1 183036 528 0.00 2019-12-03 15:55:21 2019-12-03 16:32:28 t 1 1 183040 691 0.00 2019-12-03 16:34:44 2019-12-03 16:36:42 t 1 1 183042 673 0.00 2019-12-03 16:30:40 2019-12-03 16:38:30 t 1 1 183047 679 0.00 2019-12-03 16:42:06 2019-12-03 16:42:42 t 1 1 183051 544 0.00 2019-12-03 16:25:37 2019-12-03 16:44:11 t 1 1 183052 544 0.00 2019-12-03 16:44:11 2019-12-03 16:45:41 t 1 1 183053 562 0.00 2019-12-03 16:48:23 2019-12-03 16:48:31 t 1 1 183055 445 0.00 2019-12-03 15:31:29 2019-12-03 16:50:00 t 1 1 183056 645 0.00 2019-12-03 16:42:27 2019-12-03 16:50:25 t 1 1 183057 520 0.00 2019-12-03 16:43:18 2019-12-03 16:51:51 t 1 1 183059 220 0.00 2019-12-03 16:53:13 2019-12-03 16:53:14 t 1 1 183073 637 0.00 2019-12-03 16:58:13 2019-12-03 17:02:43 t 1 1 183074 687 0.00 2019-12-03 17:02:59 2019-12-03 17:03:02 t 1 1 183075 671 0.00 2019-12-03 17:00:38 2019-12-03 17:03:23 t 1 1 183088 622 0.00 2019-12-03 17:12:25 2019-12-03 17:22:17 t 1 1 183090 673 0.00 2019-12-03 17:16:24 2019-12-03 17:22:49 t 1 1 183092 675 0.00 2019-12-03 17:25:49 2019-12-03 17:27:02 t 1 1 183094 694 0.00 2019-12-03 17:12:12 2019-12-03 17:27:48 t 1 1 183096 562 0.00 2019-12-03 17:27:56 2019-12-03 17:30:24 t 1 1 183097 520 0.00 2019-12-03 17:12:08 2019-12-03 17:33:04 t 1 1 183099 673 0.00 2019-12-03 17:37:45 2019-12-03 17:38:56 t 1 1 183105 591 0.00 2019-12-03 16:46:30 2019-12-03 17:41:38 t 1 1 183114 562 0.00 2019-12-03 17:48:22 2019-12-03 17:48:58 t 1 1 183115 520 0.00 2019-12-03 17:42:01 2019-12-03 17:49:34 t 1 1 183117 671 0.00 2019-12-03 17:38:03 2019-12-03 17:50:14 t 1 1 183119 220 0.00 2019-12-03 17:50:43 2019-12-03 17:50:45 t 1 1 183120 687 0.00 2019-12-03 17:46:30 2019-12-03 17:52:48 t 1 1 183123 520 0.00 2019-12-03 17:49:33 2019-12-03 17:55:01 t 1 1 183124 562 0.00 2019-12-03 17:53:32 2019-12-03 17:55:24 t 1 1 183125 520 0.00 2019-12-03 17:55:26 2019-12-03 17:56:07 t 1 1 183126 562 0.00 2019-12-03 17:56:41 2019-12-03 17:56:55 t 1 1 183118 220 0.00 2019-12-03 17:47:14 2019-12-03 17:50:44 t 1 1 183121 707 0.00 2019-12-03 17:51:31 2019-12-03 17:53:03 t 1 1 183122 615 0.00 2019-12-03 17:34:25 2019-12-03 17:54:49 t 1 1 183128 220 0.00 2019-12-03 17:52:27 2019-12-03 17:57:12 t 1 1 183130 562 0.00 2019-12-03 17:57:00 2019-12-03 17:57:42 t 1 1 183133 637 0.00 2019-12-03 17:02:43 2019-12-03 18:00:11 t 1 1 183137 562 0.00 2019-12-03 18:01:33 2019-12-03 18:01:39 t 1 1 183139 220 0.00 2019-12-03 18:01:47 2019-12-03 18:02:23 t 1 1 183141 516 0.00 2019-12-03 18:00:42 2019-12-03 18:02:45 t 1 1 183144 671 0.00 2019-12-03 17:57:04 2019-12-03 18:03:51 t 1 1 183147 220 0.00 2019-12-03 18:04:42 2019-12-03 18:05:19 t 1 1 183148 220 0.00 2019-12-03 18:05:19 2019-12-03 18:05:54 t 1 1 183149 220 0.00 2019-12-03 18:05:54 2019-12-03 18:06:31 t 1 1 183154 687 0.00 2019-12-03 17:52:48 2019-12-03 18:08:53 t 1 1 183163 562 0.00 2019-12-03 18:11:42 2019-12-03 18:12:05 t 1 1 183164 220 0.00 2019-12-03 18:11:50 2019-12-03 18:12:26 t 1 1 183167 675 0.00 2019-12-03 18:07:02 2019-12-03 18:13:48 t 1 1 183168 220 0.00 2019-12-03 18:13:38 2019-12-03 18:14:21 t 1 1 183169 220 0.00 2019-12-03 18:14:20 2019-12-03 18:14:57 t 1 1 183171 220 0.00 2019-12-03 18:15:31 2019-12-03 18:16:08 t 1 1 183176 645 0.00 2019-12-03 18:07:40 2019-12-03 18:17:24 t 1 1 183177 667 0.00 2019-12-03 18:11:08 2019-12-03 18:17:35 t 1 1 183178 220 0.00 2019-12-03 18:17:15 2019-12-03 18:17:50 t 1 1 183179 220 0.00 2019-12-03 18:17:49 2019-12-03 18:18:24 t 1 1 183181 220 0.00 2019-12-03 18:18:24 2019-12-03 18:18:59 t 1 1 183182 220 0.00 2019-12-03 18:18:59 2019-12-03 18:19:33 t 1 1 183183 220 0.00 2019-12-03 18:19:33 2019-12-03 18:20:17 t 1 1 183186 220 0.00 2019-12-03 18:20:52 2019-12-03 18:21:29 t 1 1 183191 220 0.00 2019-12-03 18:22:02 2019-12-03 18:22:44 t 1 1 183193 220 0.00 2019-12-03 18:22:44 2019-12-03 18:23:18 t 1 1 183198 562 0.00 2019-12-03 18:25:36 2019-12-03 18:25:45 t 1 1 183199 220 0.00 2019-12-03 18:23:17 2019-12-03 18:25:54 t 1 1 183200 220 0.00 2019-12-03 18:25:54 2019-12-03 18:26:29 t 1 1 183203 220 0.00 2019-12-03 18:27:50 2019-12-03 18:28:26 t 1 1 183205 520 0.00 2019-12-03 18:24:34 2019-12-03 18:29:10 t 1 1 183206 220 0.00 2019-12-03 18:28:25 2019-12-03 18:29:31 t 1 1 183208 562 0.00 2019-12-03 18:29:47 2019-12-03 18:30:15 t 1 1 183210 220 0.00 2019-12-03 18:30:43 2019-12-03 18:30:58 t 1 1 183212 220 0.00 2019-12-03 18:31:19 2019-12-03 18:32:05 t 1 1 183213 520 0.00 2019-12-03 18:29:10 2019-12-03 18:33:07 t 1 1 183214 220 0.00 2019-12-03 18:32:04 2019-12-03 18:33:20 t 1 1 183220 220 0.00 2019-12-03 18:34:34 2019-12-03 18:35:37 t 1 1 183222 562 0.00 2019-12-03 18:35:24 2019-12-03 18:36:19 t 1 1 183226 520 0.00 2019-12-03 18:37:01 2019-12-03 18:38:19 t 1 1 183229 520 0.00 2019-12-03 18:38:12 2019-12-03 18:38:59 t 1 1 183230 622 0.00 2019-12-03 17:33:12 2019-12-03 18:39:39 t 1 1 183234 667 0.00 2019-12-03 18:40:09 2019-12-03 18:40:18 t 1 1 183235 520 0.00 2019-12-03 18:38:59 2019-12-03 18:40:23 t 1 1 183238 611 0.00 2019-12-03 18:33:52 2019-12-03 18:41:07 t 1 1 183240 220 0.00 2019-12-03 18:41:13 2019-12-03 18:41:14 t 1 1 183244 667 0.00 2019-12-03 18:42:21 2019-12-03 18:42:35 t 1 1 183249 667 0.00 2019-12-03 18:43:26 2019-12-03 18:44:41 t 1 1 183250 445 0.00 2019-12-03 18:30:34 2019-12-03 18:46:14 t 1 1 183251 667 0.00 2019-12-03 18:46:34 2019-12-03 18:46:43 t 1 1 183252 687 0.00 2019-12-03 18:23:44 2019-12-03 18:47:04 t 1 1 183255 611 0.00 2019-12-03 18:41:06 2019-12-03 18:47:34 t 1 1 183259 220 0.00 2019-12-03 18:47:53 2019-12-03 18:49:01 t 1 1 183261 520 0.00 2019-12-03 18:41:05 2019-12-03 18:50:09 t 1 1 183263 220 0.00 2019-12-03 18:49:01 2019-12-03 18:51:18 t 1 1 183268 220 0.00 2019-12-03 18:52:02 2019-12-03 18:54:22 t 1 1 183269 611 0.00 2019-12-03 18:47:34 2019-12-03 18:54:42 t 1 1 183272 562 0.00 2019-12-03 18:55:48 2019-12-03 18:56:11 t 1 1 183280 451 0.00 2019-12-03 18:20:15 2019-12-03 18:58:02 t 1 1 183285 220 0.00 2019-12-03 18:58:14 2019-12-03 18:59:29 t 1 1 183287 667 0.00 2019-12-03 19:00:32 2019-12-03 19:00:51 t 1 1 183290 220 0.00 2019-12-03 19:00:21 2019-12-03 19:01:48 t 1 1 183292 516 0.00 2019-12-03 19:01:03 2019-12-03 19:02:30 t 1 1 183296 611 0.00 2019-12-03 19:00:19 2019-12-03 19:05:48 t 1 1 183303 562 0.00 2019-12-03 19:08:03 2019-12-03 19:09:08 t 1 1 183309 514 0.00 2019-12-03 18:34:41 2019-12-03 19:13:37 t 1 1 183310 667 0.00 2019-12-03 19:13:49 2019-12-03 19:14:18 t 1 1 183313 687 0.00 2019-12-03 18:59:43 2019-12-03 19:15:24 t 1 1 183316 520 0.00 2019-12-03 18:52:04 2019-12-03 19:17:42 t 1 1 183318 516 0.00 2019-12-03 19:16:16 2019-12-03 19:18:21 t 1 1 183320 220 0.00 2019-12-03 19:06:42 2019-12-03 19:20:26 t 1 2 183322 514 0.00 2019-12-03 19:13:37 2019-12-03 19:20:35 t 1 1 183330 675 0.00 2019-12-03 19:09:49 2019-12-03 19:25:06 t 1 1 183332 562 0.00 2019-12-03 19:25:07 2019-12-03 19:26:01 t 1 1 183333 544 0.00 2019-12-03 19:15:07 2019-12-03 19:26:34 t 1 1 183335 566 0.00 2019-12-03 19:22:44 2019-12-03 19:27:18 t 1 1 183336 622 0.00 2019-12-03 18:48:30 2019-12-03 19:27:50 t 1 1 183337 220 0.00 2019-12-03 19:26:58 2019-12-03 19:28:50 t 1 1 183338 445 0.00 2019-12-03 19:27:17 2019-12-03 19:29:20 t 1 1 183341 516 0.00 2019-12-03 19:32:00 2019-12-03 19:32:56 t 1 1 183342 512 0.00 2019-12-03 19:26:43 2019-12-03 19:33:48 t 1 1 183344 445 0.00 2019-12-03 19:29:20 2019-12-03 19:34:12 t 1 1 183348 220 0.00 2019-12-03 19:33:06 2019-12-03 19:34:50 t 1 1 183354 562 0.00 2019-12-03 19:37:40 2019-12-03 19:41:47 t 1 1 183356 220 0.00 2019-12-03 19:41:59 2019-12-03 19:42:09 t 1 1 183359 445 0.00 2019-12-03 19:35:16 2019-12-03 19:43:37 t 1 1 183361 667 0.00 2019-12-03 19:44:35 2019-12-03 19:44:43 t 1 1 183362 544 0.00 2019-12-03 19:26:34 2019-12-03 19:45:29 t 1 1 183364 687 0.00 2019-12-03 19:38:53 2019-12-03 19:47:07 t 1 1 183374 445 0.00 2019-12-03 19:44:18 2019-12-03 19:55:13 t 1 1 183376 516 0.00 2019-12-03 19:57:33 2019-12-03 19:57:39 t 1 1 183377 679 0.00 2019-12-03 19:58:01 2019-12-03 19:58:58 t 1 1 183378 544 0.00 2019-12-03 19:57:44 2019-12-03 20:00:30 t 1 1 183381 562 0.00 2019-12-03 20:02:38 2019-12-03 20:02:51 t 1 1 183382 220 0.00 2019-12-03 19:56:03 2019-12-03 20:03:31 t 1 1 183384 667 0.00 2019-12-03 19:56:34 2019-12-03 20:04:20 t 1 1 183388 607 0.00 2019-12-03 18:08:05 2019-12-03 20:10:02 t 1 1 183390 520 0.00 2019-12-03 19:57:43 2019-12-03 20:11:12 t 1 1 183392 220 0.00 2019-12-03 20:06:23 2019-12-03 20:13:07 t 1 1 183393 220 0.00 2019-12-03 20:13:06 2019-12-03 20:13:51 t 1 1 183395 220 0.00 2019-12-03 20:13:51 2019-12-03 20:14:00 t 1 1 183398 220 0.00 2019-12-03 20:14:36 2019-12-03 20:14:49 t 1 1 183399 220 0.00 2019-12-03 20:15:11 2019-12-03 20:15:20 t 1 1 183127 671 0.00 2019-12-03 17:50:13 2019-12-03 17:57:05 t 1 1 183129 520 0.00 2019-12-03 17:56:07 2019-12-03 17:57:16 t 1 1 183134 220 0.00 2019-12-03 17:57:12 2019-12-03 18:00:37 t 1 1 183136 562 0.00 2019-12-03 18:01:09 2019-12-03 18:01:24 t 1 1 183140 562 0.00 2019-12-03 18:02:19 2019-12-03 18:02:24 t 1 1 183150 675 0.00 2019-12-03 17:52:06 2019-12-03 18:07:02 t 1 1 183151 645 0.00 2019-12-03 18:02:36 2019-12-03 18:07:25 t 1 1 183152 220 0.00 2019-12-03 18:06:30 2019-12-03 18:07:48 t 1 1 183157 220 0.00 2019-12-03 18:09:02 2019-12-03 18:09:37 t 1 1 183160 220 0.00 2019-12-03 18:09:36 2019-12-03 18:10:40 t 1 1 183161 220 0.00 2019-12-03 18:10:40 2019-12-03 18:11:15 t 1 1 183170 220 0.00 2019-12-03 18:14:56 2019-12-03 18:15:31 t 1 1 183173 220 0.00 2019-12-03 18:16:08 2019-12-03 18:16:40 t 1 1 183175 220 0.00 2019-12-03 18:16:40 2019-12-03 18:17:15 t 1 1 183180 562 0.00 2019-12-03 18:17:38 2019-12-03 18:18:41 t 1 1 183185 562 0.00 2019-12-03 18:20:19 2019-12-03 18:21:23 t 1 1 183187 687 0.00 2019-12-03 18:09:03 2019-12-03 18:22:02 t 1 1 183189 687 0.00 2019-12-03 18:22:18 2019-12-03 18:22:18 t 1 1 183190 687 0.00 2019-12-03 18:22:18 2019-12-03 18:22:44 t 1 1 183192 562 0.00 2019-12-03 18:21:32 2019-12-03 18:22:59 t 1 1 183196 445 0.00 2019-12-03 18:24:05 2019-12-03 18:24:41 t 1 1 183204 562 0.00 2019-12-03 18:28:18 2019-12-03 18:28:27 t 1 1 183211 220 0.00 2019-12-03 18:31:18 2019-12-03 18:31:19 t 1 1 183216 611 0.00 2019-12-03 18:33:21 2019-12-03 18:33:52 t 1 1 183217 220 0.00 2019-12-03 18:33:19 2019-12-03 18:34:35 t 1 1 183221 667 0.00 2019-12-03 18:35:25 2019-12-03 18:36:00 t 1 1 183223 578 0.00 2019-12-03 17:14:25 2019-12-03 18:36:45 t 1 1 183224 520 0.00 2019-12-03 18:33:07 2019-12-03 18:37:01 t 1 1 183228 566 0.00 2019-12-03 18:24:42 2019-12-03 18:38:35 t 1 1 183232 622 0.00 2019-12-03 18:39:38 2019-12-03 18:40:15 t 1 1 183236 645 0.00 2019-12-03 18:17:31 2019-12-03 18:40:24 t 1 1 183237 520 0.00 2019-12-03 18:40:12 2019-12-03 18:41:06 t 1 1 183242 311 0.00 2019-12-03 18:17:25 2019-12-03 18:41:48 t 1 2 183246 622 0.00 2019-12-03 18:41:03 2019-12-03 18:43:16 t 1 1 183253 667 0.00 2019-12-03 18:46:51 2019-12-03 18:47:08 t 1 1 183254 622 0.00 2019-12-03 18:43:16 2019-12-03 18:47:27 t 1 1 183258 622 0.00 2019-12-03 18:47:27 2019-12-03 18:48:31 t 1 1 183262 445 0.00 2019-12-03 18:49:33 2019-12-03 18:50:27 t 1 1 183265 562 0.00 2019-12-03 18:51:42 2019-12-03 18:51:46 t 1 1 183266 520 0.00 2019-12-03 18:50:08 2019-12-03 18:52:04 t 1 1 183270 562 0.00 2019-12-03 18:54:30 2019-12-03 18:54:58 t 1 1 183271 689 0.00 2019-12-03 18:53:02 2019-12-03 18:55:24 t 1 1 183274 611 0.00 2019-12-03 18:54:42 2019-12-03 18:56:23 t 1 1 183276 667 0.00 2019-12-03 18:57:25 2019-12-03 18:57:34 t 1 1 183277 611 0.00 2019-12-03 18:56:28 2019-12-03 18:57:43 t 1 1 183279 667 0.00 2019-12-03 18:57:51 2019-12-03 18:57:59 t 1 1 183281 220 0.00 2019-12-03 18:57:22 2019-12-03 18:58:11 t 1 1 183282 544 0.00 2019-12-03 18:38:19 2019-12-03 18:58:23 t 1 1 183283 687 0.00 2019-12-03 18:48:09 2019-12-03 18:59:23 t 1 1 183286 611 0.00 2019-12-03 18:57:43 2019-12-03 19:00:28 t 1 1 183288 562 0.00 2019-12-03 19:00:14 2019-12-03 19:01:00 t 1 1 183289 445 0.00 2019-12-03 18:52:48 2019-12-03 19:01:23 t 1 1 183291 220 0.00 2019-12-03 19:01:48 2019-12-03 19:02:02 t 1 1 183298 578 0.00 2019-12-03 18:49:26 2019-12-03 19:06:35 t 1 1 183299 445 0.00 2019-12-03 19:01:34 2019-12-03 19:07:08 t 1 1 183302 645 0.00 2019-12-03 19:03:13 2019-12-03 19:08:05 t 1 1 183304 667 0.00 2019-12-03 19:10:05 2019-12-03 19:11:07 t 1 1 183305 451 0.00 2019-12-03 18:58:01 2019-12-03 19:11:54 t 1 1 183306 220 0.00 2019-12-03 19:04:34 2019-12-03 19:12:23 t 1 1 183308 220 0.00 2019-12-03 19:12:42 2019-12-03 19:12:43 t 1 1 183315 687 0.00 2019-12-03 19:15:24 2019-12-03 19:17:31 t 1 1 183317 562 0.00 2019-12-03 19:17:36 2019-12-03 19:17:48 t 1 1 183325 566 0.00 2019-12-03 19:07:22 2019-12-03 19:22:44 t 1 1 183326 220 0.00 2019-12-03 19:14:39 2019-12-03 19:23:03 t 1 1 183340 578 0.00 2019-12-03 19:20:56 2019-12-03 19:31:52 t 1 1 183346 566 0.00 2019-12-03 19:29:52 2019-12-03 19:34:36 t 1 1 183349 687 0.00 2019-12-03 19:32:39 2019-12-03 19:38:53 t 1 1 183352 591 0.00 2019-12-03 19:25:08 2019-12-03 19:41:04 t 1 1 183357 451 0.00 2019-12-03 19:11:54 2019-12-03 19:42:16 t 1 1 183358 562 0.00 2019-12-03 19:42:32 2019-12-03 19:42:47 t 1 1 183360 675 0.00 2019-12-03 19:36:36 2019-12-03 19:43:47 t 1 1 183365 675 0.00 2019-12-03 19:43:47 2019-12-03 19:48:23 t 1 1 183366 562 0.00 2019-12-03 19:49:12 2019-12-03 19:49:39 t 1 1 183369 667 0.00 2019-12-03 19:51:37 2019-12-03 19:52:12 t 1 1 183370 220 0.00 2019-12-03 19:45:27 2019-12-03 19:52:29 t 1 1 183372 220 0.00 2019-12-03 19:52:29 2019-12-03 19:53:35 t 1 1 183373 667 0.00 2019-12-03 19:54:31 2019-12-03 19:54:48 t 1 1 183375 516 0.00 2019-12-03 19:39:37 2019-12-03 19:57:22 t 1 1 183379 562 0.00 2019-12-03 20:00:01 2019-12-03 20:01:06 t 1 1 183380 675 0.00 2019-12-03 19:58:41 2019-12-03 20:02:37 t 1 1 183383 220 0.00 2019-12-03 20:03:30 2019-12-03 20:03:39 t 1 1 183387 451 0.00 2019-12-03 19:49:54 2019-12-03 20:09:17 t 1 1 183389 562 0.00 2019-12-03 20:10:39 2019-12-03 20:11:02 t 1 1 183391 516 0.00 2019-12-03 20:10:54 2019-12-03 20:12:41 t 1 1 183394 679 0.00 2019-12-03 20:09:06 2019-12-03 20:13:53 t 1 1 183400 562 0.00 2019-12-03 20:15:03 2019-12-03 20:15:36 t 1 1 183401 445 0.00 2019-12-03 19:55:12 2019-12-03 20:17:13 t 1 1 183404 220 0.00 2019-12-03 20:20:35 2019-12-03 20:22:58 t 1 2 183405 520 0.00 2019-12-03 20:11:12 2019-12-03 20:23:22 t 1 1 183406 220 0.00 2019-12-03 20:17:49 2019-12-03 20:24:31 t 1 1 183408 562 0.00 2019-12-03 20:24:34 2019-12-03 20:24:42 t 1 1 183410 637 0.00 2019-12-03 20:15:00 2019-12-03 20:25:15 t 1 1 183416 667 0.00 2019-12-03 20:06:35 2019-12-03 20:33:26 t 1 1 183418 667 0.00 2019-12-03 20:33:20 2019-12-03 20:33:56 t 1 1 183421 220 0.00 2019-12-03 20:35:02 2019-12-03 20:35:13 t 1 1 183422 520 0.00 2019-12-03 20:23:21 2019-12-03 20:35:20 t 1 1 183425 679 0.00 2019-12-03 20:35:44 2019-12-03 20:36:58 t 1 1 183427 667 0.00 2019-12-03 20:33:56 2019-12-03 20:37:20 t 1 1 183431 578 0.00 2019-12-03 19:40:30 2019-12-03 20:40:04 t 1 1 183434 220 0.00 2019-12-03 20:35:41 2019-12-03 20:45:33 t 1 1 183436 562 0.00 2019-12-03 20:46:11 2019-12-03 20:46:31 t 1 1 183437 562 0.00 2019-12-03 20:48:06 2019-12-03 20:48:10 t 1 1 183438 691 0.00 2019-12-03 20:45:26 2019-12-03 20:48:33 t 1 1 183445 220 0.00 2019-12-03 20:46:10 2019-12-03 20:56:06 t 1 1 183448 667 0.00 2019-12-03 20:56:15 2019-12-03 20:56:53 t 1 1 183453 671 0.00 2019-12-03 20:59:49 2019-12-03 21:01:44 t 1 1 183455 220 0.00 2019-12-03 21:06:36 2019-12-03 21:07:10 t 1 1 183158 220 0.00 2019-12-03 17:53:12 2019-12-03 18:09:37 t 1 2 183159 481 0.00 2019-12-03 17:50:27 2019-12-03 18:10:38 t 1 1 183162 220 0.00 2019-12-03 18:11:15 2019-12-03 18:11:50 t 1 1 183165 220 0.00 2019-12-03 18:12:26 2019-12-03 18:13:02 t 1 1 183166 220 0.00 2019-12-03 18:13:01 2019-12-03 18:13:38 t 1 1 183172 673 0.00 2019-12-03 17:57:46 2019-12-03 18:16:23 t 1 1 183174 562 0.00 2019-12-03 18:14:42 2019-12-03 18:16:43 t 1 1 183184 220 0.00 2019-12-03 18:20:17 2019-12-03 18:20:52 t 1 1 183188 220 0.00 2019-12-03 18:21:28 2019-12-03 18:22:02 t 1 1 183194 445 0.00 2019-12-03 17:41:39 2019-12-03 18:24:05 t 1 1 183195 520 0.00 2019-12-03 18:05:48 2019-12-03 18:24:34 t 1 1 183197 562 0.00 2019-12-03 18:24:44 2019-12-03 18:25:13 t 1 1 183201 445 0.00 2019-12-03 18:24:41 2019-12-03 18:26:50 t 1 1 183202 220 0.00 2019-12-03 18:26:29 2019-12-03 18:27:50 t 1 1 183207 445 0.00 2019-12-03 18:26:50 2019-12-03 18:30:12 t 1 1 183209 220 0.00 2019-12-03 18:29:30 2019-12-03 18:30:43 t 1 1 183215 667 0.00 2019-12-03 18:25:10 2019-12-03 18:33:44 t 1 1 183218 514 0.00 2019-12-03 15:11:43 2019-12-03 18:34:41 t 1 1 183219 667 0.00 2019-12-03 18:34:59 2019-12-03 18:35:15 t 1 1 183225 220 0.00 2019-12-03 18:35:37 2019-12-03 18:38:17 t 1 1 183227 544 0.00 2019-12-03 18:21:29 2019-12-03 18:38:19 t 1 1 183231 675 0.00 2019-12-03 18:25:51 2019-12-03 18:40:12 t 1 1 183233 220 0.00 2019-12-03 14:51:54 2019-12-03 18:40:17 t 1 2 183239 220 0.00 2019-12-03 18:38:17 2019-12-03 18:41:13 t 1 1 183241 591 0.00 2019-12-03 17:41:38 2019-12-03 18:41:31 t 1 1 183243 679 0.00 2019-12-03 18:35:16 2019-12-03 18:41:53 t 1 1 183245 667 0.00 2019-12-03 18:42:46 2019-12-03 18:43:12 t 1 1 183247 562 0.00 2019-12-03 18:43:52 2019-12-03 18:44:19 t 1 1 183248 220 0.00 2019-12-03 18:42:20 2019-12-03 18:44:35 t 1 1 183256 220 0.00 2019-12-03 18:44:34 2019-12-03 18:47:53 t 1 1 183257 562 0.00 2019-12-03 18:47:02 2019-12-03 18:48:27 t 1 1 183260 578 0.00 2019-12-03 18:36:45 2019-12-03 18:49:26 t 1 1 183264 220 0.00 2019-12-03 18:51:17 2019-12-03 18:51:32 t 1 1 183267 445 0.00 2019-12-03 18:50:27 2019-12-03 18:52:05 t 1 1 183273 220 0.00 2019-12-03 18:54:22 2019-12-03 18:56:17 t 1 1 183275 220 0.00 2019-12-03 18:56:16 2019-12-03 18:57:22 t 1 1 183278 667 0.00 2019-12-03 18:57:41 2019-12-03 18:57:43 t 1 1 183284 538 0.00 2019-12-03 17:41:39 2019-12-03 18:59:28 t 1 1 183293 516 0.00 2019-12-03 19:02:53 2019-12-03 19:04:32 t 1 1 183294 566 0.00 2019-12-03 19:01:41 2019-12-03 19:05:07 t 1 1 183295 615 0.00 2019-12-03 19:01:30 2019-12-03 19:05:31 t 1 1 183297 516 0.00 2019-12-03 19:04:44 2019-12-03 19:06:04 t 1 1 183300 516 0.00 2019-12-03 19:06:38 2019-12-03 19:07:09 t 1 1 183301 562 0.00 2019-12-03 19:06:46 2019-12-03 19:07:32 t 1 1 183307 220 0.00 2019-12-03 19:12:23 2019-12-03 19:12:33 t 1 1 183311 516 0.00 2019-12-03 19:09:59 2019-12-03 19:14:38 t 1 1 183312 544 0.00 2019-12-03 18:58:23 2019-12-03 19:15:07 t 1 1 183314 516 0.00 2019-12-03 19:14:50 2019-12-03 19:16:09 t 1 1 183319 687 0.00 2019-12-03 19:17:31 2019-12-03 19:18:33 t 1 1 183321 445 0.00 2019-12-03 19:07:07 2019-12-03 19:20:29 t 1 1 183323 578 0.00 2019-12-03 19:06:35 2019-12-03 19:20:56 t 1 1 183324 445 0.00 2019-12-03 19:20:29 2019-12-03 19:22:02 t 1 1 183327 220 0.00 2019-12-03 19:23:03 2019-12-03 19:23:04 t 1 1 183328 520 0.00 2019-12-03 19:18:30 2019-12-03 19:23:23 t 1 1 183329 667 0.00 2019-12-03 19:23:35 2019-12-03 19:24:30 t 1 1 183331 591 0.00 2019-12-03 18:41:31 2019-12-03 19:25:08 t 1 1 183334 445 0.00 2019-12-03 19:23:09 2019-12-03 19:27:18 t 1 1 183339 566 0.00 2019-12-03 19:27:18 2019-12-03 19:29:52 t 1 1 183343 520 0.00 2019-12-03 19:27:11 2019-12-03 19:34:07 t 1 1 183345 667 0.00 2019-12-03 19:34:04 2019-12-03 19:34:19 t 1 1 183347 562 0.00 2019-12-03 19:34:28 2019-12-03 19:34:41 t 1 1 183350 220 0.00 2019-12-03 19:28:29 2019-12-03 19:39:40 t 1 1 183351 578 0.00 2019-12-03 19:31:52 2019-12-03 19:40:30 t 1 1 183353 220 0.00 2019-12-03 19:39:40 2019-12-03 19:41:24 t 1 1 183355 220 0.00 2019-12-03 19:41:24 2019-12-03 19:42:00 t 1 1 183363 667 0.00 2019-12-03 19:45:21 2019-12-03 19:46:58 t 1 1 183367 687 0.00 2019-12-03 19:47:12 2019-12-03 19:50:25 t 1 1 183368 544 0.00 2019-12-03 19:45:28 2019-12-03 19:51:20 t 1 1 183371 544 0.00 2019-12-03 19:51:19 2019-12-03 19:52:39 t 1 1 183385 667 0.00 2019-12-03 20:04:54 2019-12-03 20:05:08 t 1 1 183386 707 0.00 2019-12-03 19:29:51 2019-12-03 20:05:39 t 1 1 183396 220 0.00 2019-12-03 20:14:00 2019-12-03 20:14:32 t 1 1 183397 220 0.00 2019-12-03 20:14:33 2019-12-03 20:14:36 t 1 1 183409 220 0.00 2019-12-03 20:24:31 2019-12-03 20:25:03 t 1 1 183411 445 0.00 2019-12-03 20:18:15 2019-12-03 20:26:01 t 1 1 183413 637 0.00 2019-12-03 20:25:15 2019-12-03 20:27:32 t 1 1 183415 498 0.00 2019-12-03 18:23:20 2019-12-03 20:32:05 t 1 2 183417 562 0.00 2019-12-03 20:32:20 2019-12-03 20:33:50 t 1 1 183423 514 0.00 2019-12-03 19:20:35 2019-12-03 20:36:15 t 1 1 183424 451 0.00 2019-12-03 20:10:49 2019-12-03 20:36:22 t 1 1 183426 562 0.00 2019-12-03 20:36:00 2019-12-03 20:37:03 t 1 1 183428 645 0.00 2019-12-03 20:26:51 2019-12-03 20:37:53 t 1 1 183430 591 0.00 2019-12-03 19:41:04 2019-12-03 20:39:40 t 1 1 183432 667 0.00 2019-12-03 20:39:25 2019-12-03 20:40:59 t 1 1 183433 562 0.00 2019-12-03 20:44:32 2019-12-03 20:44:36 t 1 1 183435 220 0.00 2019-12-03 20:45:33 2019-12-03 20:45:49 t 1 1 183440 581 0.00 2019-12-03 20:36:57 2019-12-03 20:49:50 t 1 1 183442 445 0.00 2019-12-03 20:31:07 2019-12-03 20:51:28 t 1 1 183444 581 0.00 2019-12-03 20:54:34 2019-12-03 20:55:05 t 1 1 183446 220 0.00 2019-12-03 20:56:05 2019-12-03 20:56:41 t 1 1 183449 551 0.00 2019-12-03 17:43:36 2019-12-03 20:56:58 t 1 1 183450 675 0.00 2019-12-03 20:54:02 2019-12-03 20:57:37 t 1 1 183452 514 0.00 2019-12-03 20:36:15 2019-12-03 20:59:51 t 1 1 183456 637 0.00 2019-12-03 20:49:51 2019-12-03 21:07:48 t 1 1 183458 551 0.00 2019-12-03 20:56:58 2019-12-03 21:08:13 t 1 1 183459 562 0.00 2019-12-03 20:48:43 2019-12-03 21:08:41 t 1 1 183460 645 0.00 2019-12-03 21:02:31 2019-12-03 21:09:50 t 1 1 183463 667 0.00 2019-12-03 21:11:13 2019-12-03 21:12:29 t 1 1 183467 675 0.00 2019-12-03 21:13:45 2019-12-03 21:16:50 t 1 1 183469 220 0.00 2019-12-03 21:17:06 2019-12-03 21:17:40 t 1 1 183477 667 0.00 2019-12-03 21:17:15 2019-12-03 21:25:38 t 1 1 183478 220 0.00 2019-12-03 21:25:29 2019-12-03 21:26:01 t 1 1 183481 220 0.00 2019-12-03 21:26:36 2019-12-03 21:27:38 t 1 1 183485 220 0.00 2019-12-03 21:28:12 2019-12-03 21:28:44 t 1 1 183488 445 0.00 2019-12-03 20:54:14 2019-12-03 21:29:29 t 1 1 183492 220 0.00 2019-12-03 21:30:07 2019-12-03 21:31:23 t 1 1 183500 545 0.00 2019-12-03 21:09:48 2019-12-03 21:35:59 t 1 1 183402 562 0.00 2019-12-03 20:16:09 2019-12-03 20:17:40 t 1 1 183403 562 0.00 2019-12-03 20:18:56 2019-12-03 20:19:48 t 1 1 183407 675 0.00 2019-12-03 20:22:32 2019-12-03 20:24:42 t 1 1 183412 562 0.00 2019-12-03 20:26:32 2019-12-03 20:27:12 t 1 1 183414 627 0.00 2019-12-03 20:07:19 2019-12-03 20:27:49 t 1 1 183419 637 0.00 2019-12-03 20:29:36 2019-12-03 20:34:22 t 1 1 183420 220 0.00 2019-12-03 20:25:06 2019-12-03 20:35:03 t 1 1 183429 637 0.00 2019-12-03 20:34:22 2019-12-03 20:39:36 t 1 1 183439 451 0.00 2019-12-03 20:46:19 2019-12-03 20:49:08 t 1 1 183441 637 0.00 2019-12-03 20:39:36 2019-12-03 20:49:51 t 1 1 183443 591 0.00 2019-12-03 20:39:40 2019-12-03 20:54:45 t 1 1 183447 611 0.00 2019-12-03 20:48:24 2019-12-03 20:56:50 t 1 1 183451 520 0.00 2019-12-03 20:54:56 2019-12-03 20:58:14 t 1 1 183454 220 0.00 2019-12-03 20:56:40 2019-12-03 21:06:37 t 1 1 183461 566 0.00 2019-12-03 21:05:47 2019-12-03 21:09:50 t 1 1 183462 611 0.00 2019-12-03 21:00:55 2019-12-03 21:12:18 t 1 1 183465 667 0.00 2019-12-03 21:13:05 2019-12-03 21:14:33 t 1 1 183466 667 0.00 2019-12-03 21:15:29 2019-12-03 21:16:08 t 1 1 183473 689 0.00 2019-12-03 21:15:44 2019-12-03 21:23:18 t 1 1 183474 709 0.00 2019-12-03 21:13:18 2019-12-03 21:23:24 t 1 1 183475 689 0.00 2019-12-03 21:23:33 2019-12-03 21:24:54 t 1 1 183479 607 0.00 2019-12-03 20:10:02 2019-12-03 21:26:11 t 1 1 183483 220 0.00 2019-12-03 21:27:38 2019-12-03 21:28:12 t 1 1 183484 689 0.00 2019-12-03 21:28:19 2019-12-03 21:28:26 t 1 1 183486 220 0.00 2019-12-03 21:27:38 2019-12-03 21:28:51 t 1 1 183490 220 0.00 2019-12-03 21:29:32 2019-12-03 21:30:07 t 1 1 183491 485 0.00 2019-12-03 21:29:27 2019-12-03 21:31:12 t 1 1 183496 220 0.00 2019-12-03 21:32:06 2019-12-03 21:33:53 t 1 1 183501 220 0.00 2019-12-03 21:33:52 2019-12-03 21:36:31 t 1 1 183506 667 0.00 2019-12-03 21:32:13 2019-12-03 21:39:05 t 1 1 183509 667 0.00 2019-12-03 21:39:04 2019-12-03 21:40:06 t 1 1 183510 660 0.00 2019-12-03 21:34:02 2019-12-03 21:40:22 t 1 1 183512 445 0.00 2019-12-03 21:31:22 2019-12-03 21:41:53 t 1 1 183513 689 0.00 2019-12-03 21:35:19 2019-12-03 21:43:47 t 1 1 183521 220 0.00 2019-12-03 21:39:22 2019-12-03 21:49:46 t 1 1 183522 220 0.00 2019-12-03 21:49:46 2019-12-03 21:50:19 t 1 1 183523 673 0.00 2019-12-03 21:34:43 2019-12-03 21:51:53 t 1 1 183525 622 0.00 2019-12-03 20:55:38 2019-12-03 21:54:51 t 1 1 183527 667 0.00 2019-12-03 21:54:56 2019-12-03 21:56:52 t 1 1 183528 645 0.00 2019-12-03 21:48:18 2019-12-03 21:57:24 t 1 1 183532 220 0.00 2019-12-03 21:54:45 2019-12-03 22:00:18 t 1 1 183533 220 0.00 2019-12-03 22:00:18 2019-12-03 22:00:34 t 1 1 183538 667 0.00 2019-12-03 21:59:52 2019-12-03 22:06:00 t 1 1 183543 591 0.00 2019-12-03 21:22:22 2019-12-03 22:11:50 t 1 1 183544 645 0.00 2019-12-03 22:11:17 2019-12-03 22:12:36 t 1 1 183547 675 0.00 2019-12-03 21:54:10 2019-12-03 22:13:33 t 1 1 183552 671 0.00 2019-12-03 22:09:19 2019-12-03 22:16:17 t 1 1 183553 689 0.00 2019-12-03 22:18:13 2019-12-03 22:18:20 t 1 1 183555 687 0.00 2019-12-03 22:01:44 2019-12-03 22:18:38 t 1 1 183557 687 0.00 2019-12-03 22:19:28 2019-12-03 22:20:37 t 1 1 183560 220 0.00 2019-12-03 22:00:53 2019-12-03 22:24:00 t 1 1 183565 220 0.00 2019-12-03 22:26:04 2019-12-03 22:26:42 t 1 1 183566 220 0.00 2019-12-03 22:27:45 2019-12-03 22:27:45 f 1 1 183571 673 0.00 2019-12-03 22:23:12 2019-12-03 22:29:52 t 1 1 183572 645 0.00 2019-12-03 22:25:02 2019-12-03 22:31:50 t 1 1 183575 645 0.00 2019-12-03 22:31:29 2019-12-03 22:32:52 t 1 1 183576 709 0.00 2019-12-03 21:38:47 2019-12-03 22:33:50 t 1 1 183578 689 0.00 2019-12-03 22:34:05 2019-12-03 22:38:22 t 1 1 183580 545 0.00 2019-12-03 22:12:55 2019-12-03 22:38:56 t 1 1 183581 687 0.00 2019-12-03 22:26:03 2019-12-03 22:39:11 t 1 1 183584 622 0.00 2019-12-03 21:59:14 2019-12-03 22:39:36 t 1 1 183588 607 0.00 2019-12-03 22:41:39 2019-12-03 22:41:39 f 1 1 183590 689 0.00 2019-12-03 22:41:20 2019-12-03 22:41:45 t 1 1 183593 607 0.00 2019-12-03 22:26:31 2019-12-03 22:42:05 t 1 1 183598 689 0.00 2019-12-03 22:46:44 2019-12-03 22:46:52 t 1 1 183603 220 0.00 2019-12-03 22:54:27 2019-12-03 22:54:51 t 1 1 183606 485 0.00 2019-12-03 22:49:06 2019-12-03 22:55:49 t 1 1 183609 591 0.00 2019-12-03 22:15:55 2019-12-03 22:57:08 t 1 1 183612 687 0.00 2019-12-03 22:56:55 2019-12-03 22:58:04 t 1 1 183615 591 0.00 2019-12-03 22:59:00 2019-12-03 22:59:30 t 1 1 183617 545 0.00 2019-12-03 22:59:09 2019-12-03 23:00:43 t 1 1 183619 544 0.00 2019-12-03 22:43:38 2019-12-03 23:01:30 t 1 1 183626 591 0.00 2019-12-03 23:05:46 2019-12-03 23:06:18 t 1 1 183627 689 0.00 2019-12-03 23:07:43 2019-12-03 23:08:02 t 1 1 183631 687 0.00 2019-12-03 22:58:52 2019-12-03 23:09:41 t 1 1 183633 687 0.00 2019-12-03 23:09:51 2019-12-03 23:09:56 t 1 1 183635 220 0.00 2019-12-03 23:02:49 2019-12-03 23:10:03 t 1 1 183637 667 0.00 2019-12-03 23:06:25 2019-12-03 23:11:47 t 1 1 183640 667 0.00 2019-12-03 23:12:46 2019-12-03 23:12:51 t 1 1 183641 689 0.00 2019-12-03 23:13:47 2019-12-03 23:13:56 t 1 1 183644 581 0.00 2019-12-03 23:14:38 2019-12-03 23:15:16 t 1 1 183645 687 0.00 2019-12-03 23:10:45 2019-12-03 23:15:29 t 1 1 183647 581 0.00 2019-12-03 23:16:14 2019-12-03 23:17:11 t 1 1 183649 581 0.00 2019-12-03 23:18:53 2019-12-03 23:18:58 t 1 1 183650 220 0.00 2019-12-03 23:19:29 2019-12-03 23:19:46 t 1 1 183652 581 0.00 2019-12-03 23:21:54 2019-12-03 23:22:01 t 1 1 183656 581 0.00 2019-12-03 23:24:00 2019-12-03 23:24:27 t 1 1 183658 709 0.00 2019-12-03 23:24:56 2019-12-03 23:25:37 t 1 1 183661 581 0.00 2019-12-03 23:30:02 2019-12-03 23:30:09 t 1 1 183669 667 0.00 2019-12-03 23:15:02 2019-12-03 23:36:41 t 1 1 183671 645 0.00 2019-12-03 23:09:36 2019-12-03 23:39:03 t 1 1 183674 581 0.00 2019-12-03 23:40:45 2019-12-03 23:40:51 t 1 1 183676 709 0.00 2019-12-03 23:25:37 2019-12-03 23:42:25 t 1 1 183681 581 0.00 2019-12-03 23:45:41 2019-12-03 23:46:53 t 1 1 183685 578 0.00 2019-12-03 21:59:47 2019-12-03 23:50:56 t 1 1 183687 694 0.00 2019-12-03 23:50:55 2019-12-03 23:51:03 t 1 1 183692 220 0.00 2019-12-03 23:51:35 2019-12-03 23:52:35 t 1 1 183694 581 0.00 2019-12-03 23:53:03 2019-12-03 23:54:53 t 1 1 183696 622 0.00 2019-12-03 23:01:34 2019-12-03 23:59:01 t 1 1 183701 687 0.00 2019-12-03 23:46:19 2019-12-04 00:02:21 t 1 1 183702 483 0.00 2019-12-03 23:26:39 2019-12-04 00:05:29 t 1 1 183707 514 0.00 2019-12-04 00:05:29 2019-12-04 00:11:06 t 1 1 183708 581 0.00 2019-12-04 00:11:42 2019-12-04 00:11:49 t 1 1 183710 220 0.00 2019-12-04 00:09:09 2019-12-04 00:14:37 t 1 1 183711 510 0.00 2019-12-04 00:00:23 2019-12-04 00:16:27 t 1 1 183713 578 0.00 2019-12-03 23:50:56 2019-12-04 00:16:52 t 1 1 183718 667 0.00 2019-12-03 23:36:54 2019-12-04 00:23:28 t 1 1 183457 562 0.00 2019-12-03 21:08:03 2019-12-03 21:08:03 f 1 1 183464 581 0.00 2019-12-03 21:05:22 2019-12-03 21:13:54 t 1 1 183468 220 0.00 2019-12-03 21:07:15 2019-12-03 21:17:06 t 1 1 183470 581 0.00 2019-12-03 21:17:37 2019-12-03 21:18:06 t 1 1 183471 578 0.00 2019-12-03 20:40:09 2019-12-03 21:19:44 t 1 1 183472 591 0.00 2019-12-03 21:10:14 2019-12-03 21:22:22 t 1 1 183476 220 0.00 2019-12-03 21:17:43 2019-12-03 21:25:29 t 1 1 183480 220 0.00 2019-12-03 21:26:00 2019-12-03 21:26:36 t 1 1 183482 667 0.00 2019-12-03 21:26:01 2019-12-03 21:28:08 t 1 1 183487 220 0.00 2019-12-03 21:28:43 2019-12-03 21:29:06 t 1 1 183489 220 0.00 2019-12-03 21:29:16 2019-12-03 21:29:32 t 1 1 183493 220 0.00 2019-12-03 21:31:23 2019-12-03 21:32:06 t 1 1 183494 635 0.00 2019-12-03 21:27:57 2019-12-03 21:33:14 t 1 1 183495 689 0.00 2019-12-03 21:33:27 2019-12-03 21:33:31 t 1 1 183497 660 0.00 2019-12-03 21:12:49 2019-12-03 21:34:02 t 1 1 183498 514 0.00 2019-12-03 20:59:50 2019-12-03 21:34:03 t 1 1 183499 673 0.00 2019-12-03 19:05:56 2019-12-03 21:34:43 t 1 1 183505 709 0.00 2019-12-03 21:23:24 2019-12-03 21:38:47 t 1 1 183507 220 0.00 2019-12-03 21:38:37 2019-12-03 21:39:13 t 1 1 183516 485 0.00 2019-12-03 21:40:56 2019-12-03 21:46:03 t 1 1 183517 514 0.00 2019-12-03 21:44:41 2019-12-03 21:46:47 t 1 1 183519 514 0.00 2019-12-03 21:46:46 2019-12-03 21:48:34 t 1 1 183520 649 0.00 2019-12-03 21:40:39 2019-12-03 21:49:44 t 1 1 183524 520 0.00 2019-12-03 21:51:31 2019-12-03 21:54:24 t 1 1 183529 689 0.00 2019-12-03 21:57:37 2019-12-03 21:59:02 t 1 1 183530 667 0.00 2019-12-03 21:55:46 2019-12-03 21:59:46 t 1 1 183534 631 0.00 2019-12-03 21:58:49 2019-12-03 22:00:41 t 1 1 183536 687 0.00 2019-12-03 21:57:21 2019-12-03 22:01:45 t 1 1 183539 627 0.00 2019-12-03 21:55:52 2019-12-03 22:07:39 t 1 1 183540 694 0.00 2019-12-03 17:27:48 2019-12-03 22:09:38 t 1 1 183545 545 0.00 2019-12-03 21:35:59 2019-12-03 22:12:55 t 1 1 183546 562 0.00 2019-12-03 22:13:19 2019-12-03 22:13:19 f 1 1 183549 689 0.00 2019-12-03 22:12:24 2019-12-03 22:14:16 t 1 1 183554 627 0.00 2019-12-03 22:07:39 2019-12-03 22:18:28 t 1 1 183556 679 0.00 2019-12-03 22:17:11 2019-12-03 22:19:19 t 1 1 183558 673 0.00 2019-12-03 22:13:48 2019-12-03 22:23:12 t 1 1 183561 687 0.00 2019-12-03 22:21:33 2019-12-03 22:24:10 t 1 1 183567 627 0.00 2019-12-03 22:18:28 2019-12-03 22:27:54 t 1 1 183569 220 0.00 2019-12-03 22:28:44 2019-12-03 22:28:44 f 1 1 183570 220 0.00 2019-12-03 22:29:20 2019-12-03 22:29:20 f 1 1 183574 220 0.00 2019-12-03 22:32:17 2019-12-03 22:32:17 f 1 1 183577 689 0.00 2019-12-03 22:33:41 2019-12-03 22:33:55 t 1 1 183583 689 0.00 2019-12-03 22:39:05 2019-12-03 22:39:28 t 1 1 183586 607 0.00 2019-12-03 22:41:10 2019-12-03 22:41:10 f 1 1 183587 485 0.00 2019-12-03 22:39:20 2019-12-03 22:41:21 t 1 1 183594 689 0.00 2019-12-03 22:42:01 2019-12-03 22:42:19 t 1 1 183596 481 0.00 2019-12-03 22:26:14 2019-12-03 22:43:36 t 1 1 183600 637 0.00 2019-12-03 21:15:31 2019-12-03 22:51:40 t 1 1 183601 673 0.00 2019-12-03 22:40:17 2019-12-03 22:53:02 t 1 1 183602 545 0.00 2019-12-03 22:39:04 2019-12-03 22:53:32 t 1 1 183604 551 0.00 2019-12-03 21:08:13 2019-12-03 22:55:09 t 1 1 183608 627 0.00 2019-12-03 22:27:54 2019-12-03 22:56:49 t 1 1 183610 311 0.00 2019-12-03 22:13:40 2019-12-03 22:57:12 t 1 2 183613 445 0.00 2019-12-03 22:47:09 2019-12-03 22:58:57 t 1 1 183614 545 0.00 2019-12-03 22:54:40 2019-12-03 22:59:09 t 1 1 183616 694 0.00 2019-12-03 22:09:38 2019-12-03 23:00:36 t 1 1 183620 622 0.00 2019-12-03 22:39:35 2019-12-03 23:01:34 t 1 1 183623 667 0.00 2019-12-03 23:02:55 2019-12-03 23:05:10 t 1 1 183628 645 0.00 2019-12-03 22:57:50 2019-12-03 23:08:05 t 1 1 183629 689 0.00 2019-12-03 23:08:33 2019-12-03 23:08:50 t 1 1 183632 689 0.00 2019-12-03 23:09:28 2019-12-03 23:09:46 t 1 1 183634 490 0.00 2019-12-03 22:50:05 2019-12-03 23:09:57 t 1 1 183636 498 0.00 2019-12-03 23:07:03 2019-12-03 23:11:15 t 1 2 183638 581 0.00 2019-12-03 22:53:36 2019-12-03 23:11:53 t 1 1 183639 581 0.00 2019-12-03 23:12:32 2019-12-03 23:12:35 t 1 1 183642 607 0.00 2019-12-03 22:42:26 2019-12-03 23:14:41 t 1 1 183646 667 0.00 2019-12-03 23:13:56 2019-12-03 23:15:52 t 1 1 183648 581 0.00 2019-12-03 23:17:11 2019-12-03 23:17:13 t 1 1 183651 687 0.00 2019-12-03 23:16:04 2019-12-03 23:21:53 t 1 1 183653 490 0.00 2019-12-03 23:09:57 2019-12-03 23:22:03 t 1 1 183660 581 0.00 2019-12-03 23:26:54 2019-12-03 23:28:52 t 1 1 183662 220 0.00 2019-12-03 23:30:07 2019-12-03 23:30:16 t 1 1 183664 581 0.00 2019-12-03 23:30:31 2019-12-03 23:31:31 t 1 1 183665 689 0.00 2019-12-03 23:18:50 2019-12-03 23:33:24 t 1 1 183667 490 0.00 2019-12-03 23:22:03 2019-12-03 23:34:36 t 1 1 183668 581 0.00 2019-12-03 23:34:50 2019-12-03 23:34:58 t 1 1 183670 581 0.00 2019-12-03 23:36:11 2019-12-03 23:36:49 t 1 1 183675 490 0.00 2019-12-03 23:39:43 2019-12-03 23:42:11 t 1 1 183678 687 0.00 2019-12-03 23:25:55 2019-12-03 23:46:19 t 1 1 183679 679 0.00 2019-12-03 23:44:35 2019-12-03 23:46:34 t 1 1 183684 694 0.00 2019-12-03 23:50:54 2019-12-03 23:50:55 t 1 1 183689 220 0.00 2019-12-03 23:51:08 2019-12-03 23:51:17 t 1 1 183690 220 0.00 2019-12-03 23:51:25 2019-12-03 23:51:26 t 1 1 183697 220 0.00 2019-12-03 23:54:29 2019-12-03 23:59:06 t 1 1 183698 581 0.00 2019-12-03 23:53:20 2019-12-03 23:59:37 t 1 1 183699 510 0.00 2019-12-03 22:08:48 2019-12-04 00:00:23 t 1 1 183700 581 0.00 2019-12-04 00:01:06 2019-12-04 00:01:19 t 1 1 183706 483 0.00 2019-12-04 00:05:29 2019-12-04 00:10:59 t 1 1 183715 581 0.00 2019-12-04 00:17:05 2019-12-04 00:18:53 t 1 1 183716 514 0.00 2019-12-04 00:11:06 2019-12-04 00:20:09 t 1 1 183719 581 0.00 2019-12-04 00:24:01 2019-12-04 00:24:22 t 1 1 183720 679 0.00 2019-12-04 00:24:18 2019-12-04 00:25:31 t 1 1 183722 544 0.00 2019-12-03 23:38:05 2019-12-04 00:27:36 t 1 1 183726 514 0.00 2019-12-04 00:20:09 2019-12-04 00:28:49 t 1 1 183731 581 0.00 2019-12-04 00:34:06 2019-12-04 00:34:52 t 1 1 183733 581 0.00 2019-12-04 00:38:48 2019-12-04 00:39:53 t 1 1 183736 544 0.00 2019-12-04 00:27:36 2019-12-04 00:40:03 t 1 1 183737 581 0.00 2019-12-04 00:40:14 2019-12-04 00:40:18 t 1 1 183741 551 0.00 2019-12-03 22:55:09 2019-12-04 00:46:31 t 1 1 183742 551 0.00 2019-12-04 00:46:31 2019-12-04 00:47:47 t 1 1 183743 581 0.00 2019-12-04 00:48:19 2019-12-04 00:48:44 t 1 1 183748 445 0.00 2019-12-03 22:58:57 2019-12-04 00:53:04 t 1 1 183749 581 0.00 2019-12-04 00:52:59 2019-12-04 00:53:35 t 1 1 183750 667 0.00 2019-12-04 00:26:04 2019-12-04 00:54:25 t 1 1 183752 687 0.00 2019-12-04 00:42:34 2019-12-04 01:00:12 t 1 1 183754 445 0.00 2019-12-04 00:53:04 2019-12-04 01:04:30 t 1 1 183756 667 0.00 2019-12-04 01:04:43 2019-12-04 01:16:28 t 1 1 183502 220 0.00 2019-12-03 21:36:31 2019-12-03 21:37:09 t 1 1 183503 220 0.00 2019-12-03 21:37:09 2019-12-03 21:38:03 t 1 1 183504 220 0.00 2019-12-03 21:38:03 2019-12-03 21:38:37 t 1 1 183508 220 0.00 2019-12-03 21:39:13 2019-12-03 21:39:23 t 1 1 183511 485 0.00 2019-12-03 21:31:19 2019-12-03 21:40:56 t 1 1 183514 514 0.00 2019-12-03 21:34:03 2019-12-03 21:44:42 t 1 1 183515 689 0.00 2019-12-03 21:44:32 2019-12-03 21:45:46 t 1 1 183518 675 0.00 2019-12-03 21:44:17 2019-12-03 21:48:22 t 1 1 183526 520 0.00 2019-12-03 21:54:24 2019-12-03 21:55:37 t 1 1 183531 578 0.00 2019-12-03 21:19:44 2019-12-03 21:59:47 t 1 1 183535 520 0.00 2019-12-03 21:55:36 2019-12-03 22:01:19 t 1 1 183537 220 0.00 2019-12-03 22:00:42 2019-12-03 22:01:52 t 1 1 183541 689 0.00 2019-12-03 22:05:08 2019-12-03 22:10:35 t 1 1 183542 667 0.00 2019-12-03 22:06:57 2019-12-03 22:11:32 t 1 1 183548 673 0.00 2019-12-03 21:51:53 2019-12-03 22:13:48 t 1 1 183550 562 0.00 2019-12-03 21:49:17 2019-12-03 22:14:16 t 1 1 183551 689 0.00 2019-12-03 22:14:27 2019-12-03 22:14:49 t 1 1 183559 689 0.00 2019-12-03 22:23:18 2019-12-03 22:23:25 t 1 1 183562 607 0.00 2019-12-03 21:26:11 2019-12-03 22:25:17 t 1 1 183563 687 0.00 2019-12-03 22:24:51 2019-12-03 22:25:43 t 1 1 183564 481 0.00 2019-12-03 20:11:50 2019-12-03 22:26:14 t 1 1 183568 689 0.00 2019-12-03 22:28:29 2019-12-03 22:28:37 t 1 1 183573 220 0.00 2019-12-03 22:32:04 2019-12-03 22:32:04 f 1 1 183579 689 0.00 2019-12-03 22:38:33 2019-12-03 22:38:53 t 1 1 183582 485 0.00 2019-12-03 22:29:28 2019-12-03 22:39:20 t 1 1 183585 673 0.00 2019-12-03 22:29:52 2019-12-03 22:40:17 t 1 1 183589 607 0.00 2019-12-03 22:41:44 2019-12-03 22:41:44 f 1 1 183591 607 0.00 2019-12-03 22:41:58 2019-12-03 22:41:58 f 1 1 183592 607 0.00 2019-12-03 22:42:03 2019-12-03 22:42:03 f 1 1 183595 445 0.00 2019-12-03 21:41:52 2019-12-03 22:43:16 t 1 1 183597 514 0.00 2019-12-03 21:48:33 2019-12-03 22:46:49 t 1 1 183599 445 0.00 2019-12-03 22:43:16 2019-12-03 22:47:09 t 1 1 183605 687 0.00 2019-12-03 22:39:37 2019-12-03 22:55:43 t 1 1 183607 564 0.00 2019-12-03 19:59:14 2019-12-03 22:56:41 t 1 1 183611 689 0.00 2019-12-03 22:47:28 2019-12-03 22:57:57 t 1 1 183618 673 0.00 2019-12-03 22:53:02 2019-12-03 23:01:25 t 1 1 183621 311 0.00 2019-12-03 22:57:33 2019-12-03 23:02:55 t 1 2 183622 689 0.00 2019-12-03 23:00:04 2019-12-03 23:03:48 t 1 1 183624 667 0.00 2019-12-03 23:05:16 2019-12-03 23:05:30 t 1 1 183625 667 0.00 2019-12-03 23:06:09 2019-12-03 23:06:12 t 1 1 183630 483 0.00 2019-12-03 22:50:22 2019-12-03 23:09:16 t 1 1 183643 667 0.00 2019-12-03 23:14:44 2019-12-03 23:15:03 t 1 1 183654 581 0.00 2019-12-03 23:22:23 2019-12-03 23:22:30 t 1 1 183655 581 0.00 2019-12-03 23:22:53 2019-12-03 23:23:06 t 1 1 183657 687 0.00 2019-12-03 23:22:56 2019-12-03 23:25:12 t 1 1 183659 581 0.00 2019-12-03 23:27:30 2019-12-03 23:27:37 t 1 1 183663 581 0.00 2019-12-03 23:29:01 2019-12-03 23:30:52 t 1 1 183666 512 0.00 2019-12-03 23:26:51 2019-12-03 23:33:51 t 1 1 183672 490 0.00 2019-12-03 23:34:36 2019-12-03 23:39:43 t 1 1 183673 220 0.00 2019-12-03 23:40:38 2019-12-03 23:40:47 t 1 1 183677 581 0.00 2019-12-03 23:43:07 2019-12-03 23:43:11 t 1 1 183680 581 0.00 2019-12-03 23:46:01 2019-12-03 23:46:50 t 1 1 183682 490 0.00 2019-12-03 23:42:11 2019-12-03 23:48:14 t 1 1 183683 694 0.00 2019-12-03 23:00:36 2019-12-03 23:50:54 t 1 1 183686 490 0.00 2019-12-03 23:48:14 2019-12-03 23:51:03 t 1 1 183688 671 0.00 2019-12-03 23:41:33 2019-12-03 23:51:03 t 1 1 183691 581 0.00 2019-12-03 23:51:58 2019-12-03 23:52:26 t 1 1 183693 671 0.00 2019-12-03 23:51:03 2019-12-03 23:54:33 t 1 1 183695 645 0.00 2019-12-03 23:57:50 2019-12-03 23:58:45 t 1 1 183703 514 0.00 2019-12-03 23:52:41 2019-12-04 00:05:29 t 1 1 183704 581 0.00 2019-12-04 00:05:55 2019-12-04 00:07:03 t 1 1 183705 220 0.00 2019-12-04 00:02:30 2019-12-04 00:09:09 t 1 1 183709 645 0.00 2019-12-03 23:58:45 2019-12-04 00:12:54 t 1 1 183712 581 0.00 2019-12-04 00:16:02 2019-12-04 00:16:29 t 1 1 183714 581 0.00 2019-12-04 00:14:54 2019-12-04 00:16:53 t 1 1 183717 581 0.00 2019-12-04 00:22:18 2019-12-04 00:23:20 t 1 1 183721 581 0.00 2019-12-04 00:27:09 2019-12-04 00:27:13 t 1 1 183727 220 0.00 2019-12-04 00:14:36 2019-12-04 00:28:59 t 1 2 183728 622 0.00 2019-12-03 23:59:37 2019-12-04 00:29:30 t 1 1 183729 510 0.00 2019-12-04 00:16:27 2019-12-04 00:32:43 t 1 1 183732 581 0.00 2019-12-04 00:35:05 2019-12-04 00:35:24 t 1 1 183734 581 0.00 2019-12-04 00:38:20 2019-12-04 00:39:53 t 1 1 183739 544 0.00 2019-12-04 00:40:03 2019-12-04 00:44:22 t 1 1 183746 220 0.00 2019-12-04 00:52:00 2019-12-04 00:52:09 t 1 1 183747 220 0.00 2019-12-04 00:52:26 2019-12-04 00:52:27 t 1 1 183753 667 0.00 2019-12-04 00:57:50 2019-12-04 01:01:54 t 1 1 183762 665 0.00 2019-12-04 01:22:50 2019-12-04 01:30:55 t 1 1 183765 503 0.00 2019-12-04 01:25:10 2019-12-04 01:45:58 t 1 1 183766 503 0.00 2019-12-04 01:45:58 2019-12-04 01:50:23 t 1 1 183769 687 0.00 2019-12-04 01:21:15 2019-12-04 01:53:57 t 1 1 183771 671 0.00 2019-12-04 01:51:02 2019-12-04 01:55:56 t 1 1 183773 637 0.00 2019-12-03 22:51:40 2019-12-04 02:01:40 t 1 1 183775 637 0.00 2019-12-04 02:02:20 2019-12-04 02:03:59 t 1 1 183777 687 0.00 2019-12-04 01:53:57 2019-12-04 02:10:50 t 1 1 183778 220 0.00 2019-12-04 02:13:33 2019-12-04 02:13:41 t 1 1 183781 687 0.00 2019-12-04 02:18:24 2019-12-04 02:22:57 t 1 1 183789 687 0.00 2019-12-04 02:54:25 2019-12-04 02:57:22 t 1 1 183791 514 0.00 2019-12-04 02:46:31 2019-12-04 02:58:31 t 1 1 183802 637 0.00 2019-12-04 03:14:13 2019-12-04 03:29:23 t 1 1 183803 514 0.00 2019-12-04 03:24:25 2019-12-04 03:32:43 t 1 1 183804 220 0.00 2019-12-04 03:37:36 2019-12-04 03:37:44 t 1 1 183809 220 0.00 2019-12-04 04:03:04 2019-12-04 04:03:13 t 1 1 183823 220 0.00 2019-12-04 05:17:09 2019-12-04 05:17:18 t 1 1 183824 220 0.00 2019-12-04 05:27:39 2019-12-04 05:27:47 t 1 1 183825 220 0.00 2019-12-04 05:38:08 2019-12-04 05:38:17 t 1 1 183826 516 0.00 2019-12-04 05:36:38 2019-12-04 05:39:40 t 1 1 183839 675 0.00 2019-12-04 06:16:19 2019-12-04 06:31:24 t 1 1 183842 520 0.00 2019-12-04 06:19:30 2019-12-04 06:42:53 t 1 1 183847 675 0.00 2019-12-04 06:48:37 2019-12-04 06:52:00 t 1 1 183859 637 0.00 2019-12-04 07:09:58 2019-12-04 07:18:45 t 1 1 183861 689 0.00 2019-12-04 07:18:19 2019-12-04 07:19:58 t 1 1 183864 689 0.00 2019-12-04 07:26:06 2019-12-04 07:26:13 t 1 1 183865 220 0.00 2019-12-04 07:26:17 2019-12-04 07:26:25 t 1 1 183873 220 0.00 2019-12-04 07:36:47 2019-12-04 07:36:56 t 1 1 183878 562 0.00 2019-12-04 07:42:36 2019-12-04 07:44:17 t 1 1 183880 520 0.00 2019-12-04 07:37:27 2019-12-04 07:47:46 t 1 1 183888 607 0.00 2019-12-04 08:04:50 2019-12-04 08:04:50 f 1 1 183723 566 0.00 2019-12-04 00:03:56 2019-12-04 00:27:45 t 1 1 183724 581 0.00 2019-12-04 00:28:13 2019-12-04 00:28:15 t 1 1 183725 581 0.00 2019-12-04 00:28:21 2019-12-04 00:28:22 t 1 1 183730 581 0.00 2019-12-04 00:32:30 2019-12-04 00:33:13 t 1 1 183735 566 0.00 2019-12-04 00:27:45 2019-12-04 00:39:56 t 1 1 183738 687 0.00 2019-12-04 00:02:42 2019-12-04 00:42:34 t 1 1 183740 581 0.00 2019-12-04 00:44:06 2019-12-04 00:44:42 t 1 1 183744 581 0.00 2019-12-04 00:48:50 2019-12-04 00:50:43 t 1 1 183745 581 0.00 2019-12-04 00:51:19 2019-12-04 00:51:24 t 1 1 183751 622 0.00 2019-12-04 00:39:00 2019-12-04 00:57:29 t 1 1 183755 581 0.00 2019-12-04 00:53:48 2019-12-04 01:10:29 t 1 1 183757 667 0.00 2019-12-04 01:16:54 2019-12-04 01:17:14 t 1 1 183758 687 0.00 2019-12-04 01:04:10 2019-12-04 01:21:15 t 1 1 183764 311 0.00 2019-12-04 00:18:13 2019-12-04 01:42:36 t 1 2 183767 483 0.00 2019-12-04 01:48:41 2019-12-04 01:52:16 t 1 1 183772 503 0.00 2019-12-04 01:51:09 2019-12-04 02:00:37 t 1 1 183776 607 0.00 2019-12-04 01:28:03 2019-12-04 02:04:18 t 1 1 183779 687 0.00 2019-12-04 02:10:56 2019-12-04 02:18:24 t 1 1 183780 485 0.00 2019-12-04 02:04:20 2019-12-04 02:19:55 t 1 1 183782 220 0.00 2019-12-04 02:24:03 2019-12-04 02:24:12 t 1 1 183785 574 0.00 2019-12-04 02:43:19 2019-12-04 02:51:49 t 1 1 183787 637 0.00 2019-12-04 02:27:55 2019-12-04 02:54:26 t 1 1 183793 687 0.00 2019-12-04 03:01:45 2019-12-04 03:02:06 t 1 1 183794 637 0.00 2019-12-04 03:01:15 2019-12-04 03:02:47 t 1 1 183795 220 0.00 2019-12-04 03:06:05 2019-12-04 03:06:13 t 1 1 183805 514 0.00 2019-12-04 03:32:43 2019-12-04 03:43:13 t 1 1 183807 514 0.00 2019-12-04 03:43:13 2019-12-04 03:52:10 t 1 1 183810 220 0.00 2019-12-04 04:03:21 2019-12-04 04:04:22 t 1 1 183812 220 0.00 2019-12-04 04:14:00 2019-12-04 04:14:09 t 1 1 183813 514 0.00 2019-12-04 04:06:27 2019-12-04 04:14:55 t 1 1 183816 220 0.00 2019-12-04 04:24:30 2019-12-04 04:24:39 t 1 1 183819 220 0.00 2019-12-04 04:35:17 2019-12-04 04:35:18 t 1 1 183821 220 0.00 2019-12-04 04:56:10 2019-12-04 04:56:17 t 1 1 183822 220 0.00 2019-12-04 05:06:40 2019-12-04 05:06:47 t 1 1 183829 220 0.00 2019-12-04 05:48:37 2019-12-04 05:48:50 t 1 1 183830 516 0.00 2019-12-04 05:50:40 2019-12-04 05:51:48 t 1 1 183832 220 0.00 2019-12-04 06:09:37 2019-12-04 06:09:45 t 1 1 183834 520 0.00 2019-12-04 06:06:55 2019-12-04 06:16:03 t 1 1 183835 675 0.00 2019-12-04 06:00:20 2019-12-04 06:16:19 t 1 1 183836 520 0.00 2019-12-04 06:16:03 2019-12-04 06:17:36 t 1 1 183838 220 0.00 2019-12-04 06:20:07 2019-12-04 06:20:15 t 1 1 183843 675 0.00 2019-12-04 06:39:31 2019-12-04 06:48:37 t 1 1 183844 516 0.00 2019-12-04 06:45:16 2019-12-04 06:49:40 t 1 1 183851 694 0.00 2019-12-04 05:42:37 2019-12-04 07:02:47 t 1 1 183852 516 0.00 2019-12-04 07:03:30 2019-12-04 07:04:24 t 1 1 183853 689 0.00 2019-12-04 07:03:06 2019-12-04 07:08:47 t 1 1 183854 637 0.00 2019-12-04 03:31:45 2019-12-04 07:09:58 t 1 1 183856 689 0.00 2019-12-04 07:08:56 2019-12-04 07:12:42 t 1 1 183858 689 0.00 2019-12-04 07:16:00 2019-12-04 07:16:12 t 1 1 183863 675 0.00 2019-12-04 07:14:45 2019-12-04 07:22:03 t 1 1 183867 689 0.00 2019-12-04 07:31:13 2019-12-04 07:31:19 t 1 1 183868 611 0.00 2019-12-04 07:19:39 2019-12-04 07:32:57 t 1 1 183871 562 0.00 2019-12-04 07:20:48 2019-12-04 07:35:56 t 1 1 183872 689 0.00 2019-12-04 07:36:18 2019-12-04 07:36:25 t 1 1 183874 220 0.00 2019-12-04 07:37:03 2019-12-04 07:38:04 t 1 1 183876 538 0.00 2019-12-04 03:18:26 2019-12-04 07:41:56 t 1 1 183879 689 0.00 2019-12-04 07:46:35 2019-12-04 07:47:02 t 1 1 183886 689 0.00 2019-12-04 07:57:36 2019-12-04 07:58:36 t 1 1 183887 707 0.00 2019-12-04 07:03:54 2019-12-04 08:02:16 t 1 1 183889 607 0.00 2019-12-04 07:23:21 2019-12-04 08:05:11 t 1 1 183891 516 0.00 2019-12-04 08:00:40 2019-12-04 08:09:47 t 1 1 183892 645 0.00 2019-12-04 08:09:04 2019-12-04 08:09:49 t 1 1 183894 311 0.00 2019-12-04 08:10:13 2019-12-04 08:14:36 t 1 2 183896 591 0.00 2019-12-04 07:58:35 2019-12-04 08:15:53 t 1 1 183897 562 0.00 2019-12-04 08:08:48 2019-12-04 08:16:28 t 1 1 183898 615 0.00 2019-12-04 08:10:14 2019-12-04 08:17:37 t 1 1 183899 611 0.00 2019-12-04 08:15:45 2019-12-04 08:19:07 t 1 1 183900 707 0.00 2019-12-04 08:12:10 2019-12-04 08:19:25 t 1 1 183901 520 0.00 2019-12-04 07:48:53 2019-12-04 08:21:52 t 1 1 183903 645 0.00 2019-12-04 08:25:37 2019-12-04 08:25:46 t 1 1 183904 611 0.00 2019-12-04 08:19:07 2019-12-04 08:26:02 t 1 1 183905 520 0.00 2019-12-04 08:21:52 2019-12-04 08:27:07 t 1 1 183906 687 0.00 2019-12-04 08:23:18 2019-12-04 08:28:32 t 1 1 183907 562 0.00 2019-12-04 08:29:45 2019-12-04 08:29:55 t 1 1 183909 562 0.00 2019-12-04 08:30:51 2019-12-04 08:31:54 t 1 1 183910 591 0.00 2019-12-04 08:15:53 2019-12-04 08:33:49 t 1 1 183911 485 0.00 2019-12-04 08:29:53 2019-12-04 08:34:35 t 1 1 183913 562 0.00 2019-12-04 08:35:47 2019-12-04 08:36:07 t 1 1 183914 645 0.00 2019-12-04 08:30:29 2019-12-04 08:36:46 t 1 1 183915 645 0.00 2019-12-04 08:37:02 2019-12-04 08:37:12 t 1 1 183916 220 0.00 2019-12-04 08:36:16 2019-12-04 08:37:18 t 1 1 183917 637 0.00 2019-12-04 07:35:48 2019-12-04 08:38:41 t 1 1 183919 611 0.00 2019-12-04 08:35:44 2019-12-04 08:40:07 t 1 1 183920 562 0.00 2019-12-04 08:40:03 2019-12-04 08:40:31 t 1 1 183921 675 0.00 2019-12-04 08:41:09 2019-12-04 08:43:21 t 1 1 183924 645 0.00 2019-12-04 08:37:42 2019-12-04 08:45:42 t 1 1 183925 562 0.00 2019-12-04 08:45:12 2019-12-04 08:46:19 t 1 1 183926 503 0.00 2019-12-04 08:45:29 2019-12-04 08:46:42 t 1 1 183927 611 0.00 2019-12-04 08:40:18 2019-12-04 08:47:37 t 1 1 183928 220 0.00 2019-12-04 08:47:18 2019-12-04 08:47:48 t 1 1 183930 591 0.00 2019-12-04 08:33:49 2019-12-04 08:48:55 t 1 1 183932 562 0.00 2019-12-04 08:51:54 2019-12-04 08:52:22 t 1 1 183933 520 0.00 2019-12-04 08:45:23 2019-12-04 08:54:23 t 1 1 183937 615 0.00 2019-12-04 08:48:27 2019-12-04 08:56:40 t 1 1 183938 220 0.00 2019-12-04 08:47:48 2019-12-04 08:57:48 t 1 1 183939 220 0.00 2019-12-04 08:57:48 2019-12-04 08:57:57 t 1 1 183940 679 0.00 2019-12-04 08:57:24 2019-12-04 08:58:23 t 1 1 183941 675 0.00 2019-12-04 08:56:45 2019-12-04 08:59:31 t 1 1 183944 220 0.00 2019-12-04 08:58:34 2019-12-04 09:03:51 t 1 1 183946 673 0.00 2019-12-04 08:56:38 2019-12-04 09:04:34 t 1 1 183947 220 0.00 2019-12-04 09:03:53 2019-12-04 09:08:19 t 1 1 183948 220 0.00 2019-12-04 09:08:19 2019-12-04 09:08:27 t 1 1 183949 611 0.00 2019-12-04 09:00:32 2019-12-04 09:09:58 t 1 1 183950 562 0.00 2019-12-04 09:02:50 2019-12-04 09:13:06 t 1 1 183951 611 0.00 2019-12-04 09:09:58 2019-12-04 09:14:02 t 1 1 183952 562 0.00 2019-12-04 09:14:12 2019-12-04 09:14:29 t 1 1 183954 220 0.00 2019-12-04 09:12:18 2019-12-04 09:15:54 t 1 1 183759 665 0.00 2019-12-04 01:10:59 2019-12-04 01:22:50 t 1 1 183760 220 0.00 2019-12-04 01:14:47 2019-12-04 01:24:00 t 1 2 183761 607 0.00 2019-12-03 23:14:41 2019-12-04 01:27:10 t 1 1 183763 445 0.00 2019-12-04 01:04:30 2019-12-04 01:40:13 t 1 1 183768 220 0.00 2019-12-04 01:52:32 2019-12-04 01:53:34 t 1 1 183770 514 0.00 2019-12-04 00:29:19 2019-12-04 01:54:10 t 1 1 183774 220 0.00 2019-12-04 02:03:03 2019-12-04 02:03:37 t 1 1 183783 220 0.00 2019-12-04 02:34:33 2019-12-04 02:34:42 t 1 1 183784 220 0.00 2019-12-04 02:45:04 2019-12-04 02:45:12 t 1 1 183786 687 0.00 2019-12-04 02:22:57 2019-12-04 02:54:25 t 1 1 183788 220 0.00 2019-12-04 02:55:34 2019-12-04 02:55:46 t 1 1 183790 687 0.00 2019-12-04 02:57:22 2019-12-04 02:58:25 t 1 1 183792 687 0.00 2019-12-04 02:58:41 2019-12-04 03:01:23 t 1 1 183796 687 0.00 2019-12-04 03:02:17 2019-12-04 03:13:20 t 1 1 183797 514 0.00 2019-12-04 02:58:31 2019-12-04 03:14:20 t 1 1 183798 220 0.00 2019-12-04 03:16:34 2019-12-04 03:16:43 t 1 1 183799 538 0.00 2019-12-03 21:45:48 2019-12-04 03:18:23 t 1 1 183800 514 0.00 2019-12-04 03:14:20 2019-12-04 03:24:25 t 1 1 183801 220 0.00 2019-12-04 03:27:05 2019-12-04 03:27:13 t 1 1 183806 220 0.00 2019-12-04 03:48:07 2019-12-04 03:48:23 t 1 1 183808 220 0.00 2019-12-04 03:52:34 2019-12-04 03:52:45 t 1 1 183811 514 0.00 2019-12-04 03:52:10 2019-12-04 04:06:27 t 1 1 183814 514 0.00 2019-12-04 04:14:54 2019-12-04 04:15:33 t 1 1 183815 514 0.00 2019-12-04 04:15:33 2019-12-04 04:24:33 t 1 1 183817 514 0.00 2019-12-04 04:24:33 2019-12-04 04:34:55 t 1 1 183818 220 0.00 2019-12-04 04:35:01 2019-12-04 04:35:09 t 1 1 183820 220 0.00 2019-12-04 04:45:40 2019-12-04 04:45:50 t 1 1 183827 694 0.00 2019-12-03 23:53:12 2019-12-04 05:42:37 t 1 1 183828 564 0.00 2019-12-03 22:56:41 2019-12-04 05:43:36 t 1 1 183831 220 0.00 2019-12-04 05:59:06 2019-12-04 05:59:15 t 1 1 183833 514 0.00 2019-12-04 04:34:55 2019-12-04 06:11:15 t 1 1 183837 520 0.00 2019-12-04 06:17:35 2019-12-04 06:19:30 t 1 1 183840 220 0.00 2019-12-04 06:30:37 2019-12-04 06:31:37 t 1 1 183841 675 0.00 2019-12-04 06:31:24 2019-12-04 06:34:17 t 1 1 183845 220 0.00 2019-12-04 06:50:54 2019-12-04 06:51:02 t 1 1 183846 220 0.00 2019-12-04 06:51:19 2019-12-04 06:51:20 t 1 1 183848 516 0.00 2019-12-04 06:53:59 2019-12-04 06:55:07 t 1 1 183849 520 0.00 2019-12-04 06:43:30 2019-12-04 07:01:01 t 1 1 183850 220 0.00 2019-12-04 07:01:41 2019-12-04 07:01:49 t 1 1 183855 220 0.00 2019-12-04 07:12:11 2019-12-04 07:12:19 t 1 1 183857 220 0.00 2019-12-04 07:15:46 2019-12-04 07:15:57 t 1 1 183860 611 0.00 2019-12-04 07:19:29 2019-12-04 07:19:39 t 1 1 183862 689 0.00 2019-12-04 07:20:10 2019-12-04 07:21:09 t 1 1 183866 637 0.00 2019-12-04 07:18:45 2019-12-04 07:27:32 t 1 1 183869 689 0.00 2019-12-04 07:34:16 2019-12-04 07:34:32 t 1 1 183870 637 0.00 2019-12-04 07:27:32 2019-12-04 07:35:48 t 1 1 183875 689 0.00 2019-12-04 07:41:23 2019-12-04 07:41:31 t 1 1 183877 689 0.00 2019-12-04 07:41:45 2019-12-04 07:42:08 t 1 1 183881 562 0.00 2019-12-04 07:44:26 2019-12-04 07:48:27 t 1 1 183882 694 0.00 2019-12-04 07:28:09 2019-12-04 07:52:05 t 1 1 183883 689 0.00 2019-12-04 07:52:06 2019-12-04 07:52:34 t 1 1 183884 689 0.00 2019-12-04 07:53:21 2019-12-04 07:53:36 t 1 1 183885 562 0.00 2019-12-04 07:55:07 2019-12-04 07:55:18 t 1 1 183890 562 0.00 2019-12-04 08:05:53 2019-12-04 08:06:03 t 1 1 183893 645 0.00 2019-12-04 08:13:17 2019-12-04 08:13:27 t 1 1 183895 645 0.00 2019-12-04 08:15:08 2019-12-04 08:15:27 t 1 1 183902 562 0.00 2019-12-04 08:18:46 2019-12-04 08:23:32 t 1 1 183908 520 0.00 2019-12-04 08:27:06 2019-12-04 08:31:23 t 1 1 183912 611 0.00 2019-12-04 08:26:01 2019-12-04 08:35:44 t 1 1 183918 687 0.00 2019-12-04 08:38:14 2019-12-04 08:40:05 t 1 1 183922 671 0.00 2019-12-04 08:41:50 2019-12-04 08:43:42 t 1 1 183923 520 0.00 2019-12-04 08:31:23 2019-12-04 08:45:23 t 1 1 183929 615 0.00 2019-12-04 08:40:02 2019-12-04 08:48:27 t 1 1 183931 562 0.00 2019-12-04 08:51:18 2019-12-04 08:51:30 t 1 1 183934 645 0.00 2019-12-04 08:53:37 2019-12-04 08:55:11 t 1 1 183935 691 0.00 2019-12-04 08:51:56 2019-12-04 08:55:36 t 1 1 183936 673 0.00 2019-12-04 08:20:26 2019-12-04 08:56:38 t 1 1 183942 520 0.00 2019-12-04 08:56:27 2019-12-04 09:00:19 t 1 1 183943 562 0.00 2019-12-04 09:02:01 2019-12-04 09:02:08 t 1 1 183945 691 0.00 2019-12-04 08:58:06 2019-12-04 09:04:11 t 1 1 183953 615 0.00 2019-12-04 09:10:06 2019-12-04 09:15:42 t 1 1 183955 562 0.00 2019-12-04 09:14:55 2019-12-04 09:16:06 t 1 1 183956 562 0.00 2019-12-04 09:16:33 2019-12-04 09:16:43 t 1 1 183957 562 0.00 2019-12-04 09:17:15 2019-12-04 09:18:11 t 1 1 183958 220 0.00 2019-12-04 09:15:57 2019-12-04 09:18:48 t 1 1 183959 220 0.00 2019-12-04 09:18:48 2019-12-04 09:18:56 t 1 1 183960 611 0.00 2019-12-04 09:14:02 2019-12-04 09:19:37 t 1 1 183961 611 0.00 2019-12-04 09:19:37 2019-12-04 09:22:25 t 1 1 183962 562 0.00 2019-12-04 09:22:25 2019-12-04 09:22:43 t 1 1 183963 611 0.00 2019-12-04 09:22:25 2019-12-04 09:25:56 t 1 1 183964 503 0.00 2019-12-04 09:26:17 2019-12-04 09:26:47 t 1 1 183965 562 0.00 2019-12-04 09:27:18 2019-12-04 09:29:06 t 1 1 183966 220 0.00 2019-12-04 09:20:22 2019-12-04 09:29:17 t 1 1 183967 220 0.00 2019-12-04 09:29:17 2019-12-04 09:29:26 t 1 1 183968 503 0.00 2019-12-04 09:26:47 2019-12-04 09:29:32 t 1 1 183969 562 0.00 2019-12-04 09:30:34 2019-12-04 09:31:08 t 1 1 183970 562 0.00 2019-12-04 09:31:13 2019-12-04 09:32:09 t 1 1 183971 709 0.00 2019-12-04 09:33:25 2019-12-04 09:33:32 t 1 1 183972 656 0.00 2019-12-04 08:31:30 2019-12-04 09:33:39 t 1 1 183973 615 0.00 2019-12-04 09:26:39 2019-12-04 09:37:33 t 1 1 183974 220 0.00 2019-12-04 09:37:53 2019-12-04 09:38:03 t 1 1 183975 611 0.00 2019-12-04 09:25:56 2019-12-04 09:38:05 t 1 1 183976 220 0.00 2019-12-04 09:38:12 2019-12-04 09:39:12 t 1 1 183977 611 0.00 2019-12-04 09:38:44 2019-12-04 09:39:52 t 1 1 183978 551 0.00 2019-12-04 09:35:28 2019-12-04 09:40:59 t 1 1 183979 562 0.00 2019-12-04 09:42:02 2019-12-04 09:42:22 t 1 1 183980 591 0.00 2019-12-04 08:48:55 2019-12-04 09:42:32 t 1 1 183981 637 0.00 2019-12-04 08:39:44 2019-12-04 09:44:52 t 1 1 183982 673 0.00 2019-12-04 09:23:13 2019-12-04 09:44:57 t 1 1 183983 562 0.00 2019-12-04 09:46:17 2019-12-04 09:46:40 t 1 1 183984 512 0.00 2019-12-04 09:38:39 2019-12-04 09:47:07 t 1 1 183985 220 0.00 2019-12-04 09:40:19 2019-12-04 09:48:19 t 1 1 183986 611 0.00 2019-12-04 09:39:52 2019-12-04 09:48:21 t 1 1 183987 709 0.00 2019-12-04 09:33:32 2019-12-04 09:48:23 t 1 1 183988 220 0.00 2019-12-04 09:48:26 2019-12-04 09:48:35 t 1 1 183989 220 0.00 2019-12-04 09:48:50 2019-12-04 09:48:51 t 1 1 183990 671 0.00 2019-12-04 09:46:50 2019-12-04 09:49:14 t 1 1 183991 551 0.00 2019-12-04 09:40:59 2019-12-04 09:49:29 t 1 1 183996 220 0.00 2019-12-04 09:53:08 2019-12-04 09:56:54 t 1 1 184000 551 0.00 2019-12-04 09:49:29 2019-12-04 10:00:17 t 1 1 184002 645 0.00 2019-12-04 09:51:40 2019-12-04 10:01:51 t 1 1 184009 562 0.00 2019-12-04 10:10:34 2019-12-04 10:10:34 f 1 1 184010 562 0.00 2019-12-04 10:07:40 2019-12-04 10:11:27 t 1 1 184011 671 0.00 2019-12-04 10:04:18 2019-12-04 10:13:11 t 1 1 184015 551 0.00 2019-12-04 10:09:02 2019-12-04 10:18:49 t 1 1 184019 611 0.00 2019-12-04 10:24:08 2019-12-04 10:25:20 t 1 1 184023 709 0.00 2019-12-04 09:48:23 2019-12-04 10:32:03 t 1 1 184024 516 0.00 2019-12-04 10:29:08 2019-12-04 10:35:01 t 1 1 184027 514 0.00 2019-12-04 06:11:14 2019-12-04 10:39:22 t 1 1 184034 645 0.00 2019-12-04 10:44:02 2019-12-04 10:45:02 t 1 1 184036 665 0.00 2019-12-04 10:46:27 2019-12-04 10:48:00 t 1 1 184038 220 0.00 2019-12-04 10:49:36 2019-12-04 10:49:47 t 1 1 184043 675 0.00 2019-12-04 10:43:11 2019-12-04 10:52:17 t 1 1 184048 665 0.00 2019-12-04 10:48:10 2019-12-04 10:57:35 t 1 1 184052 562 0.00 2019-12-04 11:05:49 2019-12-04 11:06:06 t 1 1 184058 637 0.00 2019-12-04 11:06:48 2019-12-04 11:12:16 t 1 1 184061 512 0.00 2019-12-04 10:12:06 2019-12-04 11:14:00 t 1 1 184064 562 0.00 2019-12-04 11:15:18 2019-12-04 11:17:29 t 1 1 184066 645 0.00 2019-12-04 11:14:21 2019-12-04 11:18:10 t 1 1 184072 551 0.00 2019-12-04 11:17:30 2019-12-04 11:24:46 t 1 1 184076 645 0.00 2019-12-04 11:26:15 2019-12-04 11:27:35 t 1 1 184078 673 0.00 2019-12-04 11:26:05 2019-12-04 11:28:29 t 1 1 184080 220 0.00 2019-12-04 11:32:15 2019-12-04 11:32:36 t 1 1 184081 562 0.00 2019-12-04 11:33:18 2019-12-04 11:33:42 t 1 1 184084 562 0.00 2019-12-04 11:38:20 2019-12-04 11:38:24 t 1 1 184091 562 0.00 2019-12-04 11:44:14 2019-12-04 11:44:23 t 1 1 184094 622 0.00 2019-12-04 11:19:06 2019-12-04 11:48:11 t 1 1 184097 591 0.00 2019-12-04 10:25:46 2019-12-04 11:52:33 t 1 1 184098 611 0.00 2019-12-04 11:46:40 2019-12-04 11:53:06 t 1 1 184099 709 0.00 2019-12-04 11:17:04 2019-12-04 11:53:46 t 1 1 184101 667 0.00 2019-12-04 11:54:19 2019-12-04 11:55:26 t 1 2 184105 671 0.00 2019-12-04 11:56:11 2019-12-04 11:58:35 t 1 1 184109 645 0.00 2019-12-04 11:57:18 2019-12-04 12:03:31 t 1 1 184114 562 0.00 2019-12-04 12:07:57 2019-12-04 12:08:27 t 1 1 184117 611 0.00 2019-12-04 12:07:00 2019-12-04 12:13:14 t 1 1 184120 611 0.00 2019-12-04 12:13:14 2019-12-04 12:16:57 t 1 1 184123 696 0.00 2019-12-04 11:27:12 2019-12-04 12:21:15 t 1 1 184124 220 0.00 2019-12-04 12:08:57 2019-12-04 12:21:34 t 1 1 184125 645 0.00 2019-12-04 12:14:56 2019-12-04 12:22:56 t 1 1 184127 220 0.00 2019-12-04 12:22:56 2019-12-04 12:23:07 t 1 1 184130 665 0.00 2019-12-04 12:17:33 2019-12-04 12:25:19 t 1 1 184133 562 0.00 2019-12-04 12:27:19 2019-12-04 12:27:48 t 1 1 184135 581 0.00 2019-12-04 12:20:31 2019-12-04 12:29:10 t 1 1 184136 707 0.00 2019-12-04 12:09:43 2019-12-04 12:29:52 t 1 1 184143 625 0.00 2019-12-04 12:23:04 2019-12-04 12:35:09 t 1 1 184145 591 0.00 2019-12-04 12:38:46 2019-12-04 12:40:37 t 1 1 184147 622 0.00 2019-12-04 11:49:03 2019-12-04 12:41:59 t 1 1 184150 562 0.00 2019-12-04 12:45:18 2019-12-04 12:45:23 t 1 1 184151 562 0.00 2019-12-04 12:46:18 2019-12-04 12:47:02 t 1 1 184153 514 0.00 2019-12-04 12:18:44 2019-12-04 12:47:37 t 1 1 184154 611 0.00 2019-12-04 12:16:56 2019-12-04 12:48:20 t 1 1 184159 514 0.00 2019-12-04 12:48:18 2019-12-04 12:53:05 t 1 1 184160 673 0.00 2019-12-04 12:15:57 2019-12-04 12:53:48 t 1 1 184164 707 0.00 2019-12-04 12:53:26 2019-12-04 12:56:15 t 1 1 184169 516 0.00 2019-12-04 12:50:23 2019-12-04 12:59:50 t 1 1 184170 671 0.00 2019-12-04 12:52:29 2019-12-04 13:01:01 t 1 1 184172 562 0.00 2019-12-04 12:56:39 2019-12-04 13:02:17 t 1 1 184173 611 0.00 2019-12-04 12:58:56 2019-12-04 13:02:40 t 1 1 184175 456 0.00 2019-12-04 12:47:51 2019-12-04 13:03:00 t 1 1 184176 675 0.00 2019-12-04 12:56:42 2019-12-04 13:03:48 t 1 1 184184 671 0.00 2019-12-04 13:04:18 2019-12-04 13:08:10 t 1 1 184189 562 0.00 2019-12-04 13:06:47 2019-12-04 13:14:42 t 1 1 184190 514 0.00 2019-12-04 13:13:36 2019-12-04 13:14:50 t 1 1 184193 637 0.00 2019-12-04 13:06:11 2019-12-04 13:16:55 t 1 1 184194 709 0.00 2019-12-04 12:58:15 2019-12-04 13:17:38 t 1 1 184197 679 0.00 2019-12-04 13:18:41 2019-12-04 13:19:43 t 1 1 184198 220 0.00 2019-12-04 13:20:17 2019-12-04 13:20:40 t 1 1 184200 562 0.00 2019-12-04 13:14:42 2019-12-04 13:20:58 t 1 1 184206 562 0.00 2019-12-04 13:23:45 2019-12-04 13:26:10 t 1 1 184212 591 0.00 2019-12-04 13:17:39 2019-12-04 13:35:20 t 1 1 184215 671 0.00 2019-12-04 13:08:10 2019-12-04 13:36:53 t 1 1 184216 483 0.00 2019-12-04 13:36:47 2019-12-04 13:38:23 t 1 1 184226 514 0.00 2019-12-04 13:28:11 2019-12-04 13:48:22 t 1 1 184230 622 0.00 2019-12-04 13:20:50 2019-12-04 13:56:01 t 1 1 184233 481 0.00 2019-12-04 13:22:33 2019-12-04 13:58:08 t 1 1 184238 671 0.00 2019-12-04 13:56:38 2019-12-04 14:02:25 t 1 1 184242 220 0.00 2019-12-04 14:05:24 2019-12-04 14:05:32 t 1 1 184253 627 0.00 2019-12-04 14:08:36 2019-12-04 14:14:41 t 1 1 184255 220 0.00 2019-12-04 14:15:53 2019-12-04 14:15:54 t 1 1 184256 551 0.00 2019-12-04 13:50:57 2019-12-04 14:18:34 t 1 1 184257 516 0.00 2019-12-04 14:16:23 2019-12-04 14:19:35 t 1 1 184261 220 0.00 2019-12-04 14:16:40 2019-12-04 14:23:46 t 1 2 184263 516 0.00 2019-12-04 14:21:32 2019-12-04 14:25:35 t 1 1 184264 665 0.00 2019-12-04 14:11:27 2019-12-04 14:28:19 t 1 1 184265 220 0.00 2019-12-04 14:27:19 2019-12-04 14:30:58 t 1 1 184266 220 0.00 2019-12-04 14:30:58 2019-12-04 14:31:34 t 1 1 184267 665 0.00 2019-12-04 14:28:19 2019-12-04 14:32:50 t 1 1 184269 562 0.00 2019-12-04 14:34:03 2019-12-04 14:34:31 t 1 1 184272 687 0.00 2019-12-04 14:35:52 2019-12-04 14:37:48 t 1 1 184274 654 0.00 2019-12-04 14:38:12 2019-12-04 14:39:23 t 1 1 184276 656 0.00 2019-12-04 12:59:41 2019-12-04 14:40:46 t 1 1 184278 654 0.00 2019-12-04 14:40:25 2019-12-04 14:41:41 t 1 1 184280 564 0.00 2019-12-04 14:40:40 2019-12-04 14:45:48 t 1 1 184287 220 0.00 2019-12-04 14:42:14 2019-12-04 14:50:13 t 1 1 184289 220 0.00 2019-12-04 14:51:14 2019-12-04 14:51:27 t 1 1 184291 673 0.00 2019-12-04 14:36:18 2019-12-04 14:51:49 t 1 1 184296 562 0.00 2019-12-04 14:48:38 2019-12-04 14:54:03 t 1 1 184297 562 0.00 2019-12-04 14:55:14 2019-12-04 14:55:25 t 1 1 184302 562 0.00 2019-12-04 14:56:27 2019-12-04 14:56:36 t 1 1 184306 654 0.00 2019-12-04 14:57:54 2019-12-04 14:58:48 t 1 1 184308 498 0.00 2019-12-04 14:32:09 2019-12-04 15:02:24 t 1 2 184310 220 0.00 2019-12-04 15:02:04 2019-12-04 15:03:57 t 1 1 184311 591 0.00 2019-12-04 14:48:15 2019-12-04 15:04:25 t 1 1 184313 451 0.00 2019-12-04 14:55:45 2019-12-04 15:05:17 t 1 1 183992 637 0.00 2019-12-04 09:46:10 2019-12-04 09:50:26 t 1 1 183993 611 0.00 2019-12-04 09:48:20 2019-12-04 09:52:10 t 1 1 183994 562 0.00 2019-12-04 09:52:40 2019-12-04 09:52:59 t 1 1 183995 591 0.00 2019-12-04 09:42:32 2019-12-04 09:53:43 t 1 1 183997 220 0.00 2019-12-04 09:48:08 2019-12-04 09:59:39 t 1 2 183999 637 0.00 2019-12-04 09:50:25 2019-12-04 10:00:08 t 1 1 184001 615 0.00 2019-12-04 09:37:33 2019-12-04 10:01:41 t 1 1 184003 512 0.00 2019-12-04 09:47:07 2019-12-04 10:02:01 t 1 1 184004 591 0.00 2019-12-04 09:53:43 2019-12-04 10:03:23 t 1 1 184006 622 0.00 2019-12-04 10:01:52 2019-12-04 10:05:31 t 1 1 184016 485 0.00 2019-12-04 10:21:04 2019-12-04 10:22:43 t 1 1 184017 611 0.00 2019-12-04 10:18:10 2019-12-04 10:24:08 t 1 1 184021 591 0.00 2019-12-04 10:15:59 2019-12-04 10:25:46 t 1 1 184022 645 0.00 2019-12-04 10:13:27 2019-12-04 10:26:41 t 1 1 184026 707 0.00 2019-12-04 09:19:58 2019-12-04 10:39:19 t 1 1 184028 622 0.00 2019-12-04 10:16:34 2019-12-04 10:40:50 t 1 1 184031 562 0.00 2019-12-04 10:39:51 2019-12-04 10:43:08 t 1 1 184032 581 0.00 2019-12-04 10:42:52 2019-12-04 10:43:56 t 1 1 184033 635 0.00 2019-12-04 10:10:10 2019-12-04 10:44:55 t 1 1 184039 622 0.00 2019-12-04 10:45:27 2019-12-04 10:49:57 t 1 1 184041 220 0.00 2019-12-04 10:50:02 2019-12-04 10:51:03 t 1 1 184042 562 0.00 2019-12-04 10:50:20 2019-12-04 10:52:14 t 1 1 184045 581 0.00 2019-12-04 10:46:19 2019-12-04 10:55:30 t 1 1 184047 562 0.00 2019-12-04 10:56:56 2019-12-04 10:57:26 t 1 1 184050 673 0.00 2019-12-04 10:58:43 2019-12-04 11:00:44 t 1 1 184054 551 0.00 2019-12-04 10:56:37 2019-12-04 11:07:25 t 1 1 184059 615 0.00 2019-12-04 11:09:15 2019-12-04 11:13:14 t 1 1 184067 562 0.00 2019-12-04 11:19:38 2019-12-04 11:21:09 t 1 1 184068 707 0.00 2019-12-04 10:52:03 2019-12-04 11:21:24 t 1 1 184069 675 0.00 2019-12-04 11:08:34 2019-12-04 11:23:33 t 1 1 184071 637 0.00 2019-12-04 11:19:08 2019-12-04 11:24:42 t 1 1 184074 694 0.00 2019-12-04 11:11:14 2019-12-04 11:25:18 t 1 1 184075 689 0.00 2019-12-04 11:11:58 2019-12-04 11:26:58 t 1 1 184079 562 0.00 2019-12-04 11:29:42 2019-12-04 11:30:25 t 1 1 184086 691 0.00 2019-12-04 11:34:38 2019-12-04 11:38:53 t 1 1 184090 220 0.00 2019-12-04 11:42:44 2019-12-04 11:43:18 t 1 1 184093 671 0.00 2019-12-04 11:43:13 2019-12-04 11:47:39 t 1 1 184110 220 0.00 2019-12-04 11:56:36 2019-12-04 12:04:41 t 1 1 184111 665 0.00 2019-12-04 12:01:42 2019-12-04 12:05:42 t 1 1 184112 707 0.00 2019-12-04 12:02:33 2019-12-04 12:06:44 t 1 1 184115 512 0.00 2019-12-04 11:56:58 2019-12-04 12:11:29 t 1 1 184116 665 0.00 2019-12-04 12:05:42 2019-12-04 12:13:01 t 1 1 184118 675 0.00 2019-12-04 12:07:23 2019-12-04 12:13:22 t 1 1 184121 665 0.00 2019-12-04 12:13:01 2019-12-04 12:17:33 t 1 1 184128 591 0.00 2019-12-04 11:52:33 2019-12-04 12:23:23 t 1 1 184131 645 0.00 2019-12-04 12:24:54 2019-12-04 12:27:09 t 1 1 184132 220 0.00 2019-12-04 12:01:37 2019-12-04 12:27:44 t 1 2 184134 483 0.00 2019-12-04 12:26:17 2019-12-04 12:28:36 t 1 1 184139 649 0.00 2019-12-04 12:13:42 2019-12-04 12:33:01 t 1 1 184140 220 0.00 2019-12-04 12:33:26 2019-12-04 12:33:37 t 1 1 184141 665 0.00 2019-12-04 12:25:19 2019-12-04 12:34:49 t 1 1 184142 562 0.00 2019-12-04 12:33:56 2019-12-04 12:35:05 t 1 1 184144 637 0.00 2019-12-04 12:21:19 2019-12-04 12:39:49 t 1 1 184152 220 0.00 2019-12-04 12:42:42 2019-12-04 12:47:20 t 1 2 184156 665 0.00 2019-12-04 12:34:49 2019-12-04 12:48:59 t 1 1 184157 611 0.00 2019-12-04 12:48:20 2019-12-04 12:49:58 t 1 1 184158 611 0.00 2019-12-04 12:49:58 2019-12-04 12:52:11 t 1 1 184161 514 0.00 2019-12-04 12:53:05 2019-12-04 12:54:07 t 1 1 184162 220 0.00 2019-12-04 12:54:27 2019-12-04 12:54:41 t 1 1 184163 622 0.00 2019-12-04 12:42:35 2019-12-04 12:55:54 t 1 1 184165 562 0.00 2019-12-04 12:47:58 2019-12-04 12:56:39 t 1 1 184171 516 0.00 2019-12-04 13:00:21 2019-12-04 13:01:42 t 1 1 184180 637 0.00 2019-12-04 13:03:17 2019-12-04 13:06:12 t 1 1 184181 562 0.00 2019-12-04 13:06:23 2019-12-04 13:06:23 f 1 1 184183 562 0.00 2019-12-04 13:02:17 2019-12-04 13:06:43 t 1 1 184186 631 0.00 2019-12-04 13:08:22 2019-12-04 13:08:45 t 1 1 184187 514 0.00 2019-12-04 12:59:26 2019-12-04 13:09:35 t 1 1 184188 514 0.00 2019-12-04 13:09:35 2019-12-04 13:11:04 t 1 1 184192 220 0.00 2019-12-04 13:15:45 2019-12-04 13:16:46 t 1 1 184199 220 0.00 2019-12-04 13:17:13 2019-12-04 13:20:56 t 1 2 184201 220 0.00 2019-12-04 13:20:40 2019-12-04 13:21:16 t 1 1 184202 220 0.00 2019-12-04 13:21:16 2019-12-04 13:21:51 t 1 1 184203 220 0.00 2019-12-04 13:21:50 2019-12-04 13:22:28 t 1 1 184205 220 0.00 2019-12-04 13:22:28 2019-12-04 13:23:17 t 1 1 184210 645 0.00 2019-12-04 13:15:53 2019-12-04 13:31:45 t 1 1 184211 562 0.00 2019-12-04 13:33:46 2019-12-04 13:34:24 t 1 1 184213 691 0.00 2019-12-04 13:32:29 2019-12-04 13:35:54 t 1 1 184214 483 0.00 2019-12-04 13:35:02 2019-12-04 13:36:50 t 1 1 184218 627 0.00 2019-12-04 13:20:13 2019-12-04 13:38:49 t 1 1 184220 607 0.00 2019-12-04 13:23:19 2019-12-04 13:41:39 t 1 1 184222 591 0.00 2019-12-04 13:40:55 2019-12-04 13:43:18 t 1 1 184224 627 0.00 2019-12-04 13:38:49 2019-12-04 13:47:29 t 1 1 184225 562 0.00 2019-12-04 13:47:48 2019-12-04 13:48:04 t 1 1 184229 673 0.00 2019-12-04 13:04:02 2019-12-04 13:54:33 t 1 1 184234 562 0.00 2019-12-04 13:56:32 2019-12-04 13:58:32 t 1 1 184236 709 0.00 2019-12-04 13:17:39 2019-12-04 14:01:17 t 1 1 184239 675 0.00 2019-12-04 13:52:33 2019-12-04 14:04:12 t 1 1 184241 581 0.00 2019-12-04 14:01:51 2019-12-04 14:04:21 t 1 1 184244 516 0.00 2019-12-04 14:07:32 2019-12-04 14:07:48 t 1 1 184247 665 0.00 2019-12-04 13:57:52 2019-12-04 14:11:06 t 1 1 184248 681 0.00 2019-12-04 07:10:41 2019-12-04 14:11:08 t 1 1 184249 665 0.00 2019-12-04 14:11:06 2019-12-04 14:11:27 t 1 1 184254 516 0.00 2019-12-04 14:14:43 2019-12-04 14:14:45 t 1 1 184259 220 0.00 2019-12-04 14:20:28 2019-12-04 14:20:49 t 1 1 184260 562 0.00 2019-12-04 14:23:16 2019-12-04 14:23:45 t 1 1 184268 220 0.00 2019-12-04 14:31:34 2019-12-04 14:33:24 t 1 1 184273 654 0.00 2019-12-04 14:35:21 2019-12-04 14:38:12 t 1 1 184283 622 0.00 2019-12-04 14:01:40 2019-12-04 14:48:46 t 1 1 184284 564 0.00 2019-12-04 14:45:48 2019-12-04 14:49:20 t 1 1 184286 679 0.00 2019-12-04 14:47:54 2019-12-04 14:50:11 t 1 1 184290 220 0.00 2019-12-04 14:51:35 2019-12-04 14:51:43 t 1 1 184292 526 0.00 2019-12-04 14:50:29 2019-12-04 14:52:05 t 1 1 184294 687 0.00 2019-12-04 14:53:35 2019-12-04 14:53:36 t 1 1 184300 673 0.00 2019-12-04 14:51:49 2019-12-04 14:56:04 t 1 1 184301 611 0.00 2019-12-04 14:53:12 2019-12-04 14:56:33 t 1 1 184304 512 0.00 2019-12-04 14:33:44 2019-12-04 14:58:04 t 1 1 184309 562 0.00 2019-12-04 15:01:18 2019-12-04 15:03:20 t 1 1 183998 675 0.00 2019-12-04 09:33:45 2019-12-04 10:00:07 t 1 1 184005 562 0.00 2019-12-04 09:54:54 2019-12-04 10:04:18 t 1 1 184007 637 0.00 2019-12-04 10:00:07 2019-12-04 10:06:24 t 1 1 184008 551 0.00 2019-12-04 10:00:17 2019-12-04 10:09:02 t 1 1 184012 673 0.00 2019-12-04 09:57:51 2019-12-04 10:14:34 t 1 1 184013 622 0.00 2019-12-04 10:09:42 2019-12-04 10:15:48 t 1 1 184014 611 0.00 2019-12-04 10:11:16 2019-12-04 10:18:10 t 1 1 184018 581 0.00 2019-12-04 10:07:12 2019-12-04 10:24:59 t 1 1 184020 679 0.00 2019-12-04 10:25:09 2019-12-04 10:25:43 t 1 1 184025 615 0.00 2019-12-04 10:27:05 2019-12-04 10:37:02 t 1 1 184029 581 0.00 2019-12-04 10:25:18 2019-12-04 10:42:17 t 1 1 184030 675 0.00 2019-12-04 10:34:26 2019-12-04 10:43:07 t 1 1 184035 551 0.00 2019-12-04 10:18:49 2019-12-04 10:45:38 t 1 1 184037 665 0.00 2019-12-04 10:48:00 2019-12-04 10:48:05 t 1 1 184040 516 0.00 2019-12-04 10:46:33 2019-12-04 10:50:23 t 1 1 184044 675 0.00 2019-12-04 10:52:17 2019-12-04 10:53:45 t 1 1 184046 551 0.00 2019-12-04 10:45:38 2019-12-04 10:56:37 t 1 1 184049 637 0.00 2019-12-04 10:06:35 2019-12-04 10:59:24 t 1 1 184051 562 0.00 2019-12-04 11:03:53 2019-12-04 11:04:18 t 1 1 184053 637 0.00 2019-12-04 10:59:50 2019-12-04 11:06:16 t 1 1 184055 694 0.00 2019-12-04 10:29:18 2019-12-04 11:09:07 t 1 1 184056 622 0.00 2019-12-04 10:49:56 2019-12-04 11:09:41 t 1 1 184057 709 0.00 2019-12-04 10:32:59 2019-12-04 11:11:03 t 1 1 184060 671 0.00 2019-12-04 11:08:49 2019-12-04 11:13:32 t 1 1 184062 562 0.00 2019-12-04 11:13:36 2019-12-04 11:14:04 t 1 1 184063 637 0.00 2019-12-04 11:12:15 2019-12-04 11:14:26 t 1 1 184065 551 0.00 2019-12-04 11:07:25 2019-12-04 11:17:30 t 1 1 184070 562 0.00 2019-12-04 11:23:33 2019-12-04 11:24:41 t 1 1 184073 615 0.00 2019-12-04 11:22:12 2019-12-04 11:24:53 t 1 1 184077 562 0.00 2019-12-04 11:27:10 2019-12-04 11:27:37 t 1 1 184082 707 0.00 2019-12-04 11:21:24 2019-12-04 11:34:04 t 1 1 184083 562 0.00 2019-12-04 11:34:47 2019-12-04 11:35:38 t 1 1 184085 675 0.00 2019-12-04 11:23:33 2019-12-04 11:38:35 t 1 1 184087 656 0.00 2019-12-04 09:33:39 2019-12-04 11:39:16 t 1 1 184088 514 0.00 2019-12-04 10:39:22 2019-12-04 11:41:52 t 1 1 184089 707 0.00 2019-12-04 11:38:55 2019-12-04 11:42:43 t 1 1 184092 645 0.00 2019-12-04 11:43:07 2019-12-04 11:45:07 t 1 1 184095 675 0.00 2019-12-04 11:46:00 2019-12-04 11:49:44 t 1 1 184096 562 0.00 2019-12-04 11:51:12 2019-12-04 11:51:45 t 1 1 184100 220 0.00 2019-12-04 11:53:14 2019-12-04 11:53:48 t 1 1 184102 516 0.00 2019-12-04 11:50:12 2019-12-04 11:55:35 t 1 1 184103 512 0.00 2019-12-04 11:15:07 2019-12-04 11:56:27 t 1 1 184104 607 0.00 2019-12-04 08:22:53 2019-12-04 11:57:02 t 1 1 184106 514 0.00 2019-12-04 11:41:52 2019-12-04 11:59:14 t 1 1 184107 562 0.00 2019-12-04 12:01:59 2019-12-04 12:02:20 t 1 1 184108 611 0.00 2019-12-04 11:53:06 2019-12-04 12:02:46 t 1 1 184113 611 0.00 2019-12-04 12:02:46 2019-12-04 12:07:00 t 1 1 184119 562 0.00 2019-12-04 12:13:09 2019-12-04 12:14:11 t 1 1 184122 637 0.00 2019-12-04 12:11:42 2019-12-04 12:20:18 t 1 1 184126 625 0.00 2019-12-04 12:10:25 2019-12-04 12:23:04 t 1 1 184129 562 0.00 2019-12-04 12:23:56 2019-12-04 12:24:06 t 1 1 184137 645 0.00 2019-12-04 12:27:09 2019-12-04 12:31:50 t 1 1 184138 562 0.00 2019-12-04 12:32:28 2019-12-04 12:32:39 t 1 1 184146 581 0.00 2019-12-04 12:29:30 2019-12-04 12:40:51 t 1 1 184148 615 0.00 2019-12-04 12:20:24 2019-12-04 12:42:58 t 1 1 184149 220 0.00 2019-12-04 12:43:57 2019-12-04 12:44:07 t 1 1 184155 675 0.00 2019-12-04 12:35:04 2019-12-04 12:48:29 t 1 1 184166 709 0.00 2019-12-04 11:57:37 2019-12-04 12:58:16 t 1 1 184167 611 0.00 2019-12-04 12:52:11 2019-12-04 12:58:56 t 1 1 184168 656 0.00 2019-12-04 11:39:16 2019-12-04 12:59:41 t 1 1 184174 637 0.00 2019-12-04 12:39:49 2019-12-04 13:02:44 t 1 1 184177 673 0.00 2019-12-04 12:53:48 2019-12-04 13:04:02 t 1 1 184178 671 0.00 2019-12-04 13:01:01 2019-12-04 13:04:19 t 1 1 184179 220 0.00 2019-12-04 13:04:57 2019-12-04 13:05:05 t 1 1 184182 562 0.00 2019-12-04 13:06:30 2019-12-04 13:06:30 f 1 1 184185 456 0.00 2019-12-04 13:03:00 2019-12-04 13:08:39 t 1 1 184191 220 0.00 2019-12-04 13:15:26 2019-12-04 13:15:37 t 1 1 184195 578 0.00 2019-12-04 00:16:52 2019-12-04 13:17:38 t 1 1 184196 675 0.00 2019-12-04 13:14:49 2019-12-04 13:18:54 t 1 1 184204 456 0.00 2019-12-04 13:08:39 2019-12-04 13:22:42 t 1 1 184207 562 0.00 2019-12-04 13:26:53 2019-12-04 13:27:34 t 1 1 184208 520 0.00 2019-12-04 13:22:56 2019-12-04 13:30:27 t 1 1 184209 562 0.00 2019-12-04 13:31:03 2019-12-04 13:31:20 t 1 1 184217 220 0.00 2019-12-04 13:00:10 2019-12-04 13:38:33 t 1 2 184219 456 0.00 2019-12-04 13:22:52 2019-12-04 13:39:13 t 1 1 184221 512 0.00 2019-12-04 13:39:49 2019-12-04 13:43:13 t 1 1 184223 562 0.00 2019-12-04 13:35:52 2019-12-04 13:45:57 t 1 1 184227 562 0.00 2019-12-04 13:48:15 2019-12-04 13:48:24 t 1 1 184228 562 0.00 2019-12-04 13:52:15 2019-12-04 13:52:21 t 1 1 184231 514 0.00 2019-12-04 13:48:21 2019-12-04 13:56:51 t 1 1 184232 707 0.00 2019-12-04 13:12:53 2019-12-04 13:58:02 t 1 1 184235 673 0.00 2019-12-04 13:54:33 2019-12-04 14:01:03 t 1 1 184237 627 0.00 2019-12-04 13:47:29 2019-12-04 14:01:32 t 1 1 184240 220 0.00 2019-12-04 13:23:16 2019-12-04 14:04:20 t 1 1 184243 562 0.00 2019-12-04 13:59:55 2019-12-04 14:06:08 t 1 1 184245 627 0.00 2019-12-04 14:01:32 2019-12-04 14:08:36 t 1 1 184246 516 0.00 2019-12-04 14:09:11 2019-12-04 14:09:15 t 1 1 184250 516 0.00 2019-12-04 14:11:32 2019-12-04 14:11:34 t 1 1 184251 451 0.00 2019-12-04 13:49:04 2019-12-04 14:12:54 t 1 1 184252 562 0.00 2019-12-04 14:12:41 2019-12-04 14:13:22 t 1 1 184258 485 0.00 2019-12-04 14:16:59 2019-12-04 14:20:41 t 1 1 184262 551 0.00 2019-12-04 14:18:34 2019-12-04 14:25:33 t 1 1 184270 451 0.00 2019-12-04 14:12:54 2019-12-04 14:35:29 t 1 1 184271 562 0.00 2019-12-04 14:36:38 2019-12-04 14:36:49 t 1 1 184275 564 0.00 2019-12-04 13:47:04 2019-12-04 14:40:40 t 1 1 184277 627 0.00 2019-12-04 14:17:30 2019-12-04 14:40:57 t 1 1 184279 654 0.00 2019-12-04 14:41:55 2019-12-04 14:43:01 t 1 1 184281 562 0.00 2019-12-04 14:46:33 2019-12-04 14:46:55 t 1 1 184282 591 0.00 2019-12-04 14:17:28 2019-12-04 14:48:01 t 1 1 184285 654 0.00 2019-12-04 14:43:40 2019-12-04 14:50:07 t 1 1 184288 481 0.00 2019-12-04 13:58:06 2019-12-04 14:50:43 t 1 1 184293 687 0.00 2019-12-04 14:38:32 2019-12-04 14:53:02 t 1 1 184295 687 0.00 2019-12-04 14:53:36 2019-12-04 14:53:48 t 1 1 184298 451 0.00 2019-12-04 14:35:29 2019-12-04 14:55:45 t 1 1 184299 562 0.00 2019-12-04 14:55:52 2019-12-04 14:55:59 t 1 1 184303 654 0.00 2019-12-04 14:50:06 2019-12-04 14:56:49 t 1 1 184305 562 0.00 2019-12-04 14:58:01 2019-12-04 14:58:45 t 1 1 184307 675 0.00 2019-12-04 14:54:21 2019-12-04 14:59:10 t 1 1 184312 637 0.00 2019-12-04 14:25:50 2019-12-04 15:05:04 t 1 1 184316 562 0.00 2019-12-04 15:08:21 2019-12-04 15:08:46 t 1 1 184323 656 0.00 2019-12-04 14:43:36 2019-12-04 15:13:41 t 1 1 184324 667 0.00 2019-12-04 15:13:45 2019-12-04 15:13:59 t 1 1 184325 667 0.00 2019-12-04 15:14:34 2019-12-04 15:15:36 t 1 1 184330 687 0.00 2019-12-04 14:53:48 2019-12-04 15:19:57 t 1 1 184333 667 0.00 2019-12-04 15:22:01 2019-12-04 15:22:54 t 1 1 184335 591 0.00 2019-12-04 15:22:23 2019-12-04 15:23:26 t 1 1 184337 520 0.00 2019-12-04 15:16:59 2019-12-04 15:28:12 t 1 1 184338 220 0.00 2019-12-04 15:28:45 2019-12-04 15:28:57 t 1 1 184339 220 0.00 2019-12-04 15:28:09 2019-12-04 15:29:22 t 1 2 184340 671 0.00 2019-12-04 15:29:10 2019-12-04 15:30:54 t 1 1 184341 687 0.00 2019-12-04 15:19:57 2019-12-04 15:32:05 t 1 1 184343 687 0.00 2019-12-04 15:32:05 2019-12-04 15:37:20 t 1 1 184354 681 0.00 2019-12-04 14:11:07 2019-12-04 15:53:46 t 1 1 184358 220 0.00 2019-12-04 16:00:17 2019-12-04 16:00:17 t 1 1 184359 562 0.00 2019-12-04 16:01:47 2019-12-04 16:02:29 t 1 1 184363 645 0.00 2019-12-04 15:49:10 2019-12-04 16:08:03 t 1 1 184366 707 0.00 2019-12-04 14:49:02 2019-12-04 16:09:37 t 1 1 184367 562 0.00 2019-12-04 16:11:29 2019-12-04 16:11:48 t 1 1 184368 516 0.00 2019-12-04 16:07:55 2019-12-04 16:13:57 t 1 1 184369 581 0.00 2019-12-04 15:43:56 2019-12-04 16:14:43 t 1 1 184373 551 0.00 2019-12-04 16:17:03 2019-12-04 16:18:42 t 1 1 184375 562 0.00 2019-12-04 16:22:13 2019-12-04 16:22:36 t 1 1 184378 667 0.00 2019-12-04 16:21:09 2019-12-04 16:25:24 t 1 1 184383 514 0.00 2019-12-04 15:48:15 2019-12-04 16:29:42 t 1 1 184384 637 0.00 2019-12-04 16:27:41 2019-12-04 16:29:50 t 1 1 184389 615 0.00 2019-12-04 16:21:47 2019-12-04 16:30:49 t 1 1 184392 516 0.00 2019-12-04 16:30:43 2019-12-04 16:32:41 t 1 1 184396 516 0.00 2019-12-04 16:34:51 2019-12-04 16:34:56 t 1 1 184400 514 0.00 2019-12-04 16:30:59 2019-12-04 16:37:14 t 1 1 184402 220 0.00 2019-12-04 16:37:20 2019-12-04 16:37:28 t 1 1 184403 667 0.00 2019-12-04 16:37:20 2019-12-04 16:37:55 t 1 1 184404 220 0.00 2019-12-04 16:37:28 2019-12-04 16:38:40 t 1 1 184414 667 0.00 2019-12-04 16:41:45 2019-12-04 16:41:46 t 1 1 184420 696 0.00 2019-12-04 16:43:24 2019-12-04 16:44:31 t 1 1 184421 639 0.00 2019-12-04 16:42:03 2019-12-04 16:45:52 t 1 1 184431 220 0.00 2019-12-04 16:48:52 2019-12-04 16:49:26 t 1 1 184439 639 0.00 2019-12-04 16:52:12 2019-12-04 16:52:32 t 1 1 184449 562 0.00 2019-12-04 16:49:36 2019-12-04 16:55:08 t 1 1 184453 220 0.00 2019-12-04 16:55:42 2019-12-04 16:57:01 t 1 1 184454 611 0.00 2019-12-04 16:52:43 2019-12-04 16:57:28 t 1 1 184455 611 0.00 2019-12-04 16:57:28 2019-12-04 16:58:42 t 1 1 184456 520 0.00 2019-12-04 16:55:28 2019-12-04 16:59:38 t 1 1 184458 667 0.00 2019-12-04 17:00:58 2019-12-04 17:01:38 t 1 1 184463 485 0.00 2019-12-04 16:54:17 2019-12-04 17:05:13 t 1 1 184465 645 0.00 2019-12-04 16:59:57 2019-12-04 17:05:31 t 1 1 184466 689 0.00 2019-12-04 17:05:44 2019-12-04 17:06:22 t 1 1 184469 591 0.00 2019-12-04 15:41:42 2019-12-04 17:08:08 t 1 1 184474 622 0.00 2019-12-04 17:02:53 2019-12-04 17:12:19 t 1 1 184475 220 0.00 2019-12-04 16:21:32 2019-12-04 17:13:38 t 1 2 184480 220 0.00 2019-12-04 17:18:05 2019-12-04 17:19:05 t 1 1 184481 562 0.00 2019-12-04 16:58:33 2019-12-04 17:20:26 t 1 1 184482 622 0.00 2019-12-04 17:12:19 2019-12-04 17:21:19 t 1 1 184483 667 0.00 2019-12-04 17:20:04 2019-12-04 17:22:53 t 1 1 184485 637 0.00 2019-12-04 17:22:23 2019-12-04 17:23:23 t 1 1 184487 562 0.00 2019-12-04 17:21:14 2019-12-04 17:23:42 t 1 1 184489 667 0.00 2019-12-04 17:23:47 2019-12-04 17:26:10 t 1 1 184493 667 0.00 2019-12-04 17:29:00 2019-12-04 17:29:03 t 1 1 184495 562 0.00 2019-12-04 17:29:03 2019-12-04 17:29:47 t 1 1 184499 696 0.00 2019-12-04 17:27:30 2019-12-04 17:34:08 t 1 1 184502 220 0.00 2019-12-04 17:38:10 2019-12-04 17:38:41 t 1 1 184504 611 0.00 2019-12-04 17:32:46 2019-12-04 17:38:46 t 1 1 184505 622 0.00 2019-12-04 17:21:19 2019-12-04 17:39:46 t 1 1 184507 516 0.00 2019-12-04 17:40:33 2019-12-04 17:41:06 t 1 1 184508 516 0.00 2019-12-04 17:42:45 2019-12-04 17:42:49 t 1 1 184515 562 0.00 2019-12-04 17:47:44 2019-12-04 17:48:11 t 1 1 184518 675 0.00 2019-12-04 17:42:42 2019-12-04 17:50:48 t 1 1 184522 645 0.00 2019-12-04 17:22:21 2019-12-04 17:52:17 t 1 1 184523 562 0.00 2019-12-04 17:52:23 2019-12-04 17:52:34 t 1 1 184525 562 0.00 2019-12-04 17:53:34 2019-12-04 17:53:39 t 1 1 184527 220 0.00 2019-12-04 17:56:20 2019-12-04 17:56:21 t 1 1 184531 675 0.00 2019-12-04 17:54:32 2019-12-04 17:58:38 t 1 1 184537 562 0.00 2019-12-04 18:05:23 2019-12-04 18:05:58 t 1 1 184540 514 0.00 2019-12-04 17:04:09 2019-12-04 18:09:54 t 1 1 184543 562 0.00 2019-12-04 18:08:58 2019-12-04 18:10:58 t 1 1 184547 562 0.00 2019-12-04 18:12:05 2019-12-04 18:12:52 t 1 1 184562 562 0.00 2019-12-04 18:22:35 2019-12-04 18:24:13 t 1 1 184566 562 0.00 2019-12-04 18:28:42 2019-12-04 18:28:49 t 1 1 184568 562 0.00 2019-12-04 18:28:59 2019-12-04 18:29:36 t 1 1 184573 665 0.00 2019-12-04 18:31:43 2019-12-04 18:33:14 t 1 1 184577 611 0.00 2019-12-04 18:31:27 2019-12-04 18:38:08 t 1 1 184578 687 0.00 2019-12-04 18:11:25 2019-12-04 18:39:17 t 1 1 184586 220 0.00 2019-12-04 18:29:46 2019-12-04 18:47:22 t 1 2 184589 611 0.00 2019-12-04 18:47:52 2019-12-04 18:48:39 t 1 1 184590 611 0.00 2019-12-04 18:48:39 2019-12-04 18:51:17 t 1 1 184591 562 0.00 2019-12-04 18:45:07 2019-12-04 18:52:46 t 1 1 184592 220 0.00 2019-12-04 18:53:55 2019-12-04 18:54:04 t 1 1 184594 615 0.00 2019-12-04 18:48:22 2019-12-04 18:55:02 t 1 1 184596 679 0.00 2019-12-04 18:56:14 2019-12-04 18:57:31 t 1 1 184601 645 0.00 2019-12-04 18:58:15 2019-12-04 19:01:17 t 1 1 184603 591 0.00 2019-12-04 18:48:56 2019-12-04 19:01:43 t 1 1 184605 562 0.00 2019-12-04 19:02:33 2019-12-04 19:02:49 t 1 1 184608 220 0.00 2019-12-04 19:04:27 2019-12-04 19:04:28 t 1 1 184610 562 0.00 2019-12-04 19:04:03 2019-12-04 19:05:42 t 1 1 184613 220 0.00 2019-12-04 19:04:36 2019-12-04 19:06:59 t 1 1 184616 611 0.00 2019-12-04 19:01:45 2019-12-04 19:11:45 t 1 1 184618 562 0.00 2019-12-04 19:13:22 2019-12-04 19:13:35 t 1 1 184622 700 0.00 2019-12-04 19:12:02 2019-12-04 19:16:53 t 1 1 184624 516 0.00 2019-12-04 19:16:32 2019-12-04 19:17:34 t 1 1 184628 220 0.00 2019-12-04 19:21:54 2019-12-04 19:22:01 t 1 1 184633 700 0.00 2019-12-04 19:17:49 2019-12-04 19:27:54 t 1 1 184635 562 0.00 2019-12-04 19:27:57 2019-12-04 19:29:00 t 1 1 184636 578 0.00 2019-12-04 19:18:33 2019-12-04 19:30:12 t 1 1 184639 562 0.00 2019-12-04 19:34:18 2019-12-04 19:34:50 t 1 1 184641 691 0.00 2019-12-04 19:33:10 2019-12-04 19:37:13 t 1 1 184314 562 0.00 2019-12-04 15:05:10 2019-12-04 15:05:30 t 1 1 184320 562 0.00 2019-12-04 15:11:59 2019-12-04 15:12:23 t 1 1 184322 667 0.00 2019-12-04 15:07:06 2019-12-04 15:13:37 t 1 1 184326 637 0.00 2019-12-04 15:14:21 2019-12-04 15:16:27 t 1 1 184327 667 0.00 2019-12-04 15:17:27 2019-12-04 15:18:05 t 1 1 184329 667 0.00 2019-12-04 15:19:33 2019-12-04 15:19:51 t 1 1 184331 220 0.00 2019-12-04 15:20:26 2019-12-04 15:20:38 t 1 1 184345 635 0.00 2019-12-04 15:31:21 2019-12-04 15:38:43 t 1 1 184346 220 0.00 2019-12-04 15:39:16 2019-12-04 15:39:25 t 1 1 184347 687 0.00 2019-12-04 15:37:20 2019-12-04 15:42:58 t 1 1 184348 544 0.00 2019-12-04 14:44:37 2019-12-04 15:43:52 t 1 1 184349 512 0.00 2019-12-04 15:37:42 2019-12-04 15:45:01 t 1 1 184350 645 0.00 2019-12-04 15:46:49 2019-12-04 15:47:44 t 1 1 184351 687 0.00 2019-12-04 15:42:58 2019-12-04 15:48:40 t 1 1 184353 679 0.00 2019-12-04 15:50:16 2019-12-04 15:50:53 t 1 1 184355 687 0.00 2019-12-04 15:48:40 2019-12-04 15:54:15 t 1 1 184356 687 0.00 2019-12-04 15:54:15 2019-12-04 15:56:31 t 1 1 184362 687 0.00 2019-12-04 15:56:43 2019-12-04 16:05:58 t 1 1 184364 578 0.00 2019-12-04 15:21:48 2019-12-04 16:09:08 t 1 1 184365 611 0.00 2019-12-04 16:03:16 2019-12-04 16:09:27 t 1 1 184371 656 0.00 2019-12-04 15:24:14 2019-12-04 16:16:32 t 1 1 184374 681 0.00 2019-12-04 15:53:46 2019-12-04 16:21:46 t 1 1 184377 220 0.00 2019-12-04 16:18:26 2019-12-04 16:25:22 t 1 1 184379 637 0.00 2019-12-04 16:23:42 2019-12-04 16:26:07 t 1 1 184381 562 0.00 2019-12-04 16:27:15 2019-12-04 16:27:38 t 1 1 184382 645 0.00 2019-12-04 16:12:28 2019-12-04 16:27:58 t 1 1 184386 667 0.00 2019-12-04 16:30:23 2019-12-04 16:30:32 t 1 1 184388 679 0.00 2019-12-04 16:27:13 2019-12-04 16:30:46 t 1 1 184391 696 0.00 2019-12-04 15:36:24 2019-12-04 16:31:41 t 1 1 184393 667 0.00 2019-12-04 16:32:33 2019-12-04 16:33:38 t 1 1 184397 667 0.00 2019-12-04 16:36:13 2019-12-04 16:36:31 t 1 1 184399 516 0.00 2019-12-04 16:35:12 2019-12-04 16:37:14 t 1 1 184405 562 0.00 2019-12-04 16:37:49 2019-12-04 16:38:56 t 1 1 184406 220 0.00 2019-12-04 16:38:39 2019-12-04 16:39:13 t 1 1 184408 673 0.00 2019-12-04 16:36:12 2019-12-04 16:39:52 t 1 1 184411 615 0.00 2019-12-04 16:30:49 2019-12-04 16:40:47 t 1 1 184418 220 0.00 2019-12-04 16:42:14 2019-12-04 16:43:52 t 1 1 184419 220 0.00 2019-12-04 16:43:52 2019-12-04 16:44:27 t 1 1 184422 220 0.00 2019-12-04 16:44:27 2019-12-04 16:47:07 t 1 1 184425 667 0.00 2019-12-04 16:45:34 2019-12-04 16:47:48 t 1 1 184426 220 0.00 2019-12-04 16:47:42 2019-12-04 16:48:17 t 1 1 184427 562 0.00 2019-12-04 16:48:28 2019-12-04 16:48:38 t 1 1 184429 667 0.00 2019-12-04 16:48:16 2019-12-04 16:49:09 t 1 1 184433 220 0.00 2019-12-04 16:50:01 2019-12-04 16:50:37 t 1 1 184435 220 0.00 2019-12-04 16:50:36 2019-12-04 16:51:09 t 1 1 184436 220 0.00 2019-12-04 16:51:09 2019-12-04 16:51:44 t 1 1 184440 611 0.00 2019-12-04 16:46:26 2019-12-04 16:52:43 t 1 1 184442 622 0.00 2019-12-04 16:09:42 2019-12-04 16:53:09 t 1 1 184443 667 0.00 2019-12-04 16:50:01 2019-12-04 16:53:21 t 1 1 184445 485 0.00 2019-12-04 16:52:00 2019-12-04 16:53:36 t 1 1 184447 220 0.00 2019-12-04 16:53:58 2019-12-04 16:54:32 t 1 1 184448 220 0.00 2019-12-04 16:54:32 2019-12-04 16:55:07 t 1 1 184451 538 0.00 2019-12-04 16:38:50 2019-12-04 16:55:29 t 1 1 184459 520 0.00 2019-12-04 16:59:38 2019-12-04 17:01:49 t 1 1 184464 520 0.00 2019-12-04 17:01:48 2019-12-04 17:05:27 t 1 1 184468 673 0.00 2019-12-04 17:01:22 2019-12-04 17:07:55 t 1 1 184470 220 0.00 2019-12-04 17:07:18 2019-12-04 17:08:18 t 1 1 184471 564 0.00 2019-12-04 16:04:42 2019-12-04 17:09:56 t 1 1 184479 220 0.00 2019-12-04 17:17:56 2019-12-04 17:17:57 t 1 1 184488 591 0.00 2019-12-04 17:08:08 2019-12-04 17:23:56 t 1 1 184490 520 0.00 2019-12-04 17:05:26 2019-12-04 17:26:55 t 1 1 184492 615 0.00 2019-12-04 17:18:53 2019-12-04 17:27:56 t 1 1 184494 544 0.00 2019-12-04 17:27:43 2019-12-04 17:29:39 t 1 1 184498 485 0.00 2019-12-04 17:23:36 2019-12-04 17:33:39 t 1 1 184501 516 0.00 2019-12-04 17:34:33 2019-12-04 17:37:56 t 1 1 184506 562 0.00 2019-12-04 17:40:04 2019-12-04 17:40:35 t 1 1 184509 516 0.00 2019-12-04 17:43:01 2019-12-04 17:43:09 t 1 1 184513 220 0.00 2019-12-04 17:42:47 2019-12-04 17:46:09 t 1 1 184516 562 0.00 2019-12-04 17:49:12 2019-12-04 17:49:40 t 1 1 184517 637 0.00 2019-12-04 17:49:38 2019-12-04 17:50:38 t 1 1 184521 665 0.00 2019-12-04 17:47:15 2019-12-04 17:51:33 t 1 1 184526 562 0.00 2019-12-04 17:54:07 2019-12-04 17:54:17 t 1 1 184528 220 0.00 2019-12-04 17:56:28 2019-12-04 17:56:29 t 1 1 184529 220 0.00 2019-12-04 17:56:37 2019-12-04 17:56:38 t 1 1 184534 687 0.00 2019-12-04 17:55:41 2019-12-04 18:00:18 t 1 1 184535 707 0.00 2019-12-04 17:20:35 2019-12-04 18:01:04 t 1 1 184536 687 0.00 2019-12-04 18:01:35 2019-12-04 18:01:36 t 1 1 184539 645 0.00 2019-12-04 17:52:57 2019-12-04 18:09:49 t 1 1 184542 683 0.00 2019-12-04 17:56:19 2019-12-04 18:10:51 t 1 1 184546 520 0.00 2019-12-04 18:08:01 2019-12-04 18:11:51 t 1 1 184549 481 0.00 2019-12-04 17:47:41 2019-12-04 18:13:52 t 1 1 184552 514 0.00 2019-12-04 18:14:51 2019-12-04 18:15:34 t 1 1 184553 637 0.00 2019-12-04 18:13:38 2019-12-04 18:18:42 t 1 1 184554 544 0.00 2019-12-04 17:47:36 2019-12-04 18:19:34 t 1 1 184555 562 0.00 2019-12-04 18:19:44 2019-12-04 18:20:06 t 1 1 184556 591 0.00 2019-12-04 17:27:06 2019-12-04 18:20:24 t 1 1 184557 562 0.00 2019-12-04 18:21:24 2019-12-04 18:21:34 t 1 1 184559 485 0.00 2019-12-04 18:18:55 2019-12-04 18:22:56 t 1 1 184561 220 0.00 2019-12-04 18:22:49 2019-12-04 18:23:58 t 1 1 184563 645 0.00 2019-12-04 18:17:22 2019-12-04 18:25:29 t 1 1 184565 562 0.00 2019-12-04 18:27:16 2019-12-04 18:28:18 t 1 1 184569 514 0.00 2019-12-04 18:15:34 2019-12-04 18:30:46 t 1 1 184570 562 0.00 2019-12-04 18:30:00 2019-12-04 18:31:21 t 1 1 184571 665 0.00 2019-12-04 18:29:32 2019-12-04 18:31:43 t 1 1 184574 615 0.00 2019-12-04 18:33:01 2019-12-04 18:34:23 t 1 1 184576 562 0.00 2019-12-04 18:35:33 2019-12-04 18:35:54 t 1 1 184581 562 0.00 2019-12-04 18:38:01 2019-12-04 18:44:06 t 1 1 184582 516 0.00 2019-12-04 18:40:57 2019-12-04 18:45:16 t 1 1 184583 545 0.00 2019-12-04 18:25:16 2019-12-04 18:45:19 t 1 1 184587 566 0.00 2019-12-04 18:33:45 2019-12-04 18:48:28 t 1 1 184593 673 0.00 2019-12-04 18:42:45 2019-12-04 18:54:25 t 1 1 184598 562 0.00 2019-12-04 18:56:37 2019-12-04 18:57:48 t 1 1 184604 611 0.00 2019-12-04 18:51:17 2019-12-04 19:01:45 t 1 1 184606 562 0.00 2019-12-04 19:02:56 2019-12-04 19:03:12 t 1 1 184609 637 0.00 2019-12-04 18:18:41 2019-12-04 19:04:52 t 1 1 184614 562 0.00 2019-12-04 19:06:34 2019-12-04 19:07:28 t 1 1 184617 516 0.00 2019-12-04 19:13:24 2019-12-04 19:13:31 t 1 1 184315 654 0.00 2019-12-04 14:58:47 2019-12-04 15:06:49 t 1 1 184317 551 0.00 2019-12-04 14:25:33 2019-12-04 15:08:49 t 1 1 184318 220 0.00 2019-12-04 14:50:54 2019-12-04 15:09:27 t 1 2 184319 481 0.00 2019-12-04 14:50:49 2019-12-04 15:10:55 t 1 1 184321 675 0.00 2019-12-04 15:04:25 2019-12-04 15:13:20 t 1 1 184328 551 0.00 2019-12-04 15:08:49 2019-12-04 15:18:48 t 1 1 184332 578 0.00 2019-12-04 13:17:38 2019-12-04 15:21:48 t 1 1 184334 551 0.00 2019-12-04 15:18:48 2019-12-04 15:23:05 t 1 1 184336 656 0.00 2019-12-04 15:13:41 2019-12-04 15:24:14 t 1 1 184342 696 0.00 2019-12-04 15:32:49 2019-12-04 15:36:24 t 1 1 184344 220 0.00 2019-12-04 15:18:03 2019-12-04 15:38:26 t 1 2 184352 220 0.00 2019-12-04 15:49:46 2019-12-04 15:49:57 t 1 1 184357 637 0.00 2019-12-04 15:17:02 2019-12-04 15:59:53 t 1 1 184360 562 0.00 2019-12-04 16:04:40 2019-12-04 16:05:06 t 1 1 184361 673 0.00 2019-12-04 16:02:33 2019-12-04 16:05:54 t 1 1 184370 675 0.00 2019-12-04 16:13:34 2019-12-04 16:16:24 t 1 1 184372 516 0.00 2019-12-04 16:14:07 2019-12-04 16:16:45 t 1 1 184376 637 0.00 2019-12-04 16:21:46 2019-12-04 16:23:06 t 1 1 184380 512 0.00 2019-12-04 16:12:08 2019-12-04 16:27:35 t 1 1 184385 667 0.00 2019-12-04 16:27:54 2019-12-04 16:30:17 t 1 1 184387 451 0.00 2019-12-04 16:23:18 2019-12-04 16:30:44 t 1 1 184390 645 0.00 2019-12-04 16:28:01 2019-12-04 16:31:33 t 1 1 184394 667 0.00 2019-12-04 16:33:44 2019-12-04 16:33:53 t 1 1 184395 516 0.00 2019-12-04 16:34:40 2019-12-04 16:34:42 t 1 1 184398 220 0.00 2019-12-04 16:25:48 2019-12-04 16:37:06 t 1 1 184401 637 0.00 2019-12-04 16:29:49 2019-12-04 16:37:23 t 1 1 184407 544 0.00 2019-12-04 16:37:05 2019-12-04 16:39:36 t 1 1 184409 220 0.00 2019-12-04 16:39:13 2019-12-04 16:40:17 t 1 1 184410 675 0.00 2019-12-04 16:39:07 2019-12-04 16:40:44 t 1 1 184412 220 0.00 2019-12-04 16:40:17 2019-12-04 16:41:00 t 1 1 184413 220 0.00 2019-12-04 16:40:59 2019-12-04 16:41:38 t 1 1 184415 696 0.00 2019-12-04 16:31:41 2019-12-04 16:41:59 t 1 1 184416 220 0.00 2019-12-04 16:41:38 2019-12-04 16:42:14 t 1 1 184417 667 0.00 2019-12-04 16:42:47 2019-12-04 16:43:00 t 1 1 184423 671 0.00 2019-12-04 16:45:18 2019-12-04 16:47:12 t 1 1 184424 220 0.00 2019-12-04 16:47:06 2019-12-04 16:47:43 t 1 1 184428 220 0.00 2019-12-04 16:48:17 2019-12-04 16:48:53 t 1 1 184430 707 0.00 2019-12-04 16:35:51 2019-12-04 16:49:24 t 1 1 184432 220 0.00 2019-12-04 16:49:26 2019-12-04 16:50:01 t 1 1 184434 696 0.00 2019-12-04 16:47:09 2019-12-04 16:51:09 t 1 1 184437 639 0.00 2019-12-04 16:45:52 2019-12-04 16:52:04 t 1 1 184438 220 0.00 2019-12-04 16:51:43 2019-12-04 16:52:17 t 1 1 184441 220 0.00 2019-12-04 16:52:17 2019-12-04 16:52:49 t 1 1 184444 220 0.00 2019-12-04 16:52:49 2019-12-04 16:53:24 t 1 1 184446 220 0.00 2019-12-04 16:53:23 2019-12-04 16:53:59 t 1 1 184450 520 0.00 2019-12-04 16:29:48 2019-12-04 16:55:28 t 1 1 184452 220 0.00 2019-12-04 16:55:07 2019-12-04 16:55:42 t 1 1 184457 645 0.00 2019-12-04 16:54:44 2019-12-04 16:59:51 t 1 1 184460 622 0.00 2019-12-04 16:53:09 2019-12-04 17:02:53 t 1 1 184461 615 0.00 2019-12-04 16:45:07 2019-12-04 17:03:26 t 1 1 184462 514 0.00 2019-12-04 16:37:29 2019-12-04 17:04:10 t 1 1 184467 667 0.00 2019-12-04 17:04:04 2019-12-04 17:06:54 t 1 1 184472 675 0.00 2019-12-04 17:01:16 2019-12-04 17:10:04 t 1 1 184473 645 0.00 2019-12-04 17:07:44 2019-12-04 17:10:54 t 1 1 184476 707 0.00 2019-12-04 17:11:13 2019-12-04 17:13:40 t 1 1 184477 667 0.00 2019-12-04 17:14:06 2019-12-04 17:14:38 t 1 1 184478 675 0.00 2019-12-04 17:10:04 2019-12-04 17:15:37 t 1 1 184484 675 0.00 2019-12-04 17:20:16 2019-12-04 17:23:17 t 1 1 184486 485 0.00 2019-12-04 17:05:13 2019-12-04 17:23:36 t 1 1 184491 544 0.00 2019-12-04 17:11:03 2019-12-04 17:27:43 t 1 1 184496 667 0.00 2019-12-04 17:31:40 2019-12-04 17:32:24 t 1 1 184497 562 0.00 2019-12-04 17:30:21 2019-12-04 17:33:36 t 1 1 184500 220 0.00 2019-12-04 17:37:22 2019-12-04 17:37:31 t 1 1 184503 516 0.00 2019-12-04 17:38:02 2019-12-04 17:38:44 t 1 1 184510 622 0.00 2019-12-04 17:39:46 2019-12-04 17:44:16 t 1 1 184511 516 0.00 2019-12-04 17:44:30 2019-12-04 17:45:01 t 1 1 184512 611 0.00 2019-12-04 17:38:46 2019-12-04 17:45:25 t 1 1 184514 673 0.00 2019-12-04 17:35:24 2019-12-04 17:47:35 t 1 1 184519 687 0.00 2019-12-04 17:47:36 2019-12-04 17:50:56 t 1 1 184520 562 0.00 2019-12-04 17:51:10 2019-12-04 17:51:26 t 1 1 184524 562 0.00 2019-12-04 17:52:43 2019-12-04 17:53:27 t 1 1 184530 615 0.00 2019-12-04 17:47:21 2019-12-04 17:57:42 t 1 1 184532 516 0.00 2019-12-04 17:56:12 2019-12-04 17:59:13 t 1 1 184533 562 0.00 2019-12-04 17:59:42 2019-12-04 17:59:50 t 1 1 184538 520 0.00 2019-12-04 18:07:01 2019-12-04 18:08:58 t 1 1 184541 687 0.00 2019-12-04 18:09:26 2019-12-04 18:10:40 t 1 1 184544 637 0.00 2019-12-04 17:56:34 2019-12-04 18:11:15 t 1 1 184545 615 0.00 2019-12-04 18:08:47 2019-12-04 18:11:28 t 1 1 184548 562 0.00 2019-12-04 18:13:46 2019-12-04 18:13:51 t 1 1 184550 645 0.00 2019-12-04 18:12:22 2019-12-04 18:14:17 t 1 1 184551 514 0.00 2019-12-04 18:10:17 2019-12-04 18:14:51 t 1 1 184558 578 0.00 2019-12-04 16:09:08 2019-12-04 18:22:26 t 1 1 184560 544 0.00 2019-12-04 18:19:34 2019-12-04 18:23:36 t 1 1 184564 679 0.00 2019-12-04 18:25:33 2019-12-04 18:26:09 t 1 1 184567 481 0.00 2019-12-04 18:13:52 2019-12-04 18:28:54 t 1 1 184572 514 0.00 2019-12-04 18:31:16 2019-12-04 18:32:45 t 1 1 184575 562 0.00 2019-12-04 18:34:10 2019-12-04 18:34:55 t 1 1 184579 520 0.00 2019-12-04 18:28:45 2019-12-04 18:40:26 t 1 1 184580 220 0.00 2019-12-04 18:43:21 2019-12-04 18:43:34 t 1 1 184584 520 0.00 2019-12-04 18:42:54 2019-12-04 18:45:36 t 1 1 184585 696 0.00 2019-12-04 18:42:37 2019-12-04 18:46:57 t 1 1 184588 671 0.00 2019-12-04 18:34:26 2019-12-04 18:48:30 t 1 1 184595 622 0.00 2019-12-04 18:38:23 2019-12-04 18:55:12 t 1 1 184597 520 0.00 2019-12-04 18:46:24 2019-12-04 18:57:39 t 1 1 184599 645 0.00 2019-12-04 18:57:17 2019-12-04 18:58:16 t 1 1 184600 562 0.00 2019-12-04 18:58:42 2019-12-04 18:58:51 t 1 1 184602 675 0.00 2019-12-04 18:59:36 2019-12-04 19:01:18 t 1 1 184607 566 0.00 2019-12-04 18:48:28 2019-12-04 19:03:22 t 1 1 184611 687 0.00 2019-12-04 18:48:01 2019-12-04 19:05:59 t 1 1 184612 538 0.00 2019-12-04 19:02:36 2019-12-04 19:06:20 t 1 1 184615 220 0.00 2019-12-04 19:11:15 2019-12-04 19:11:40 t 1 1 184619 679 0.00 2019-12-04 19:12:45 2019-12-04 19:14:12 t 1 1 184623 675 0.00 2019-12-04 19:14:43 2019-12-04 19:17:16 t 1 1 184625 566 0.00 2019-12-04 19:03:22 2019-12-04 19:18:02 t 1 1 184626 578 0.00 2019-12-04 18:22:26 2019-12-04 19:18:33 t 1 1 184627 665 0.00 2019-12-04 19:10:39 2019-12-04 19:19:49 t 1 1 184629 562 0.00 2019-12-04 19:23:45 2019-12-04 19:24:14 t 1 1 184620 516 0.00 2019-12-04 19:14:47 2019-12-04 19:14:52 t 1 1 184621 687 0.00 2019-12-04 19:05:59 2019-12-04 19:15:38 t 1 1 184630 591 0.00 2019-12-04 19:12:51 2019-12-04 19:24:19 t 1 1 184631 671 0.00 2019-12-04 19:17:35 2019-12-04 19:24:26 t 1 1 184632 671 0.00 2019-12-04 19:24:25 2019-12-04 19:25:47 t 1 1 184643 562 0.00 2019-12-04 19:35:40 2019-12-04 19:40:44 t 1 1 184646 566 0.00 2019-12-04 19:30:45 2019-12-04 19:47:06 t 1 1 184647 687 0.00 2019-12-04 19:37:21 2019-12-04 19:48:01 t 1 1 184651 711 0.00 2019-12-04 19:30:07 2019-12-04 19:52:12 t 1 1 184654 562 0.00 2019-12-04 19:44:18 2019-12-04 19:54:17 t 1 1 184658 673 0.00 2019-12-04 19:54:10 2019-12-04 19:55:25 t 1 1 184659 562 0.00 2019-12-04 19:55:33 2019-12-04 19:55:43 t 1 1 184661 622 0.00 2019-12-04 19:17:36 2019-12-04 20:00:35 t 1 1 184662 700 0.00 2019-12-04 19:27:54 2019-12-04 20:01:09 t 1 1 184666 700 0.00 2019-12-04 20:01:09 2019-12-04 20:03:11 t 1 1 184669 566 0.00 2019-12-04 19:55:14 2019-12-04 20:04:09 t 1 1 184672 611 0.00 2019-12-04 20:01:15 2019-12-04 20:08:03 t 1 1 184673 711 0.00 2019-12-04 19:52:12 2019-12-04 20:08:29 t 1 1 184674 611 0.00 2019-12-04 20:08:03 2019-12-04 20:08:59 t 1 1 184676 625 0.00 2019-12-04 19:59:31 2019-12-04 20:09:57 t 1 1 184683 545 0.00 2019-12-04 18:45:19 2019-12-04 20:15:40 t 1 1 184685 700 0.00 2019-12-04 20:14:34 2019-12-04 20:15:50 t 1 1 184689 562 0.00 2019-12-04 20:16:49 2019-12-04 20:17:17 t 1 1 184691 581 0.00 2019-12-04 20:19:31 2019-12-04 20:20:58 t 1 1 184695 700 0.00 2019-12-04 20:17:35 2019-12-04 20:22:15 t 1 1 184697 581 0.00 2019-12-04 20:22:29 2019-12-04 20:23:48 t 1 1 184707 562 0.00 2019-12-04 20:33:29 2019-12-04 20:33:48 t 1 1 184709 451 0.00 2019-12-04 20:34:14 2019-12-04 20:34:14 f 1 1 184713 645 0.00 2019-12-04 20:30:39 2019-12-04 20:34:40 t 1 1 184716 451 0.00 2019-12-04 20:35:35 2019-12-04 20:35:35 f 1 1 184720 637 0.00 2019-12-04 20:34:53 2019-12-04 20:36:42 t 1 1 184725 713 0.00 2019-12-04 20:29:54 2019-12-04 20:41:28 t 1 1 184727 625 0.00 2019-12-04 20:33:23 2019-12-04 20:45:33 t 1 1 184728 645 0.00 2019-12-04 20:36:48 2019-12-04 20:48:44 t 1 1 184733 622 0.00 2019-12-04 20:32:13 2019-12-04 20:54:23 t 1 1 184735 220 0.00 2019-12-04 20:55:06 2019-12-04 20:55:21 t 1 1 184737 538 0.00 2019-12-04 20:01:28 2019-12-04 20:58:50 t 1 1 184738 520 0.00 2019-12-04 20:53:09 2019-12-04 21:00:54 t 1 1 184740 673 0.00 2019-12-04 20:48:12 2019-12-04 21:01:46 t 1 1 184742 578 0.00 2019-12-04 19:30:12 2019-12-04 21:02:20 t 1 1 184746 713 0.00 2019-12-04 20:54:29 2019-12-04 21:05:36 t 1 1 184751 516 0.00 2019-12-04 21:05:00 2019-12-04 21:06:31 t 1 1 184752 551 0.00 2019-12-04 20:41:22 2019-12-04 21:08:08 t 1 1 184758 667 0.00 2019-12-04 21:13:14 2019-12-04 21:17:01 t 1 1 184760 220 0.00 2019-12-04 21:16:19 2019-12-04 21:17:59 t 1 1 184761 545 0.00 2019-12-04 20:54:02 2019-12-04 21:18:29 t 1 1 184763 716 0.00 2019-12-04 21:13:18 2019-12-04 21:20:45 t 1 1 184766 449 0.00 2019-12-04 21:25:15 2019-12-04 21:25:15 f 1 1 184771 220 0.00 2019-12-04 21:26:00 2019-12-04 21:26:08 t 1 1 184774 449 0.00 2019-12-04 21:26:42 2019-12-04 21:26:42 f 1 1 184775 562 0.00 2019-12-04 21:27:36 2019-12-04 21:29:09 t 1 1 184779 691 0.00 2019-12-04 21:28:27 2019-12-04 21:32:53 t 1 1 184780 220 0.00 2019-12-04 21:32:59 2019-12-04 21:33:12 t 1 1 184781 700 0.00 2019-12-04 20:29:22 2019-12-04 21:33:27 t 1 1 184783 645 0.00 2019-12-04 21:31:46 2019-12-04 21:35:45 t 1 1 184793 675 0.00 2019-12-04 20:51:35 2019-12-04 21:42:18 t 1 1 184794 220 0.00 2019-12-04 21:40:22 2019-12-04 21:43:35 t 1 1 184797 562 0.00 2019-12-04 21:46:27 2019-12-04 21:46:52 t 1 1 184801 718 0.00 2019-12-04 21:44:43 2019-12-04 21:50:40 t 1 1 184804 562 0.00 2019-12-04 21:48:16 2019-12-04 21:52:44 t 1 1 184806 713 0.00 2019-12-04 21:33:18 2019-12-04 21:54:10 t 1 1 184807 716 0.00 2019-12-04 21:40:12 2019-12-04 21:55:25 t 1 1 184814 220 0.00 2019-12-04 21:57:59 2019-12-04 22:01:22 t 1 2 184817 607 0.00 2019-12-04 22:00:04 2019-12-04 22:03:43 t 1 1 184818 689 0.00 2019-12-04 22:00:09 2019-12-04 22:05:36 t 1 1 184827 591 0.00 2019-12-04 20:22:31 2019-12-04 22:13:04 t 1 1 184830 689 0.00 2019-12-04 22:12:29 2019-12-04 22:15:06 t 1 1 184837 635 0.00 2019-12-04 22:05:44 2019-12-04 22:21:19 t 1 1 184839 220 0.00 2019-12-04 22:22:36 2019-12-04 22:22:51 t 1 1 184840 689 0.00 2019-12-04 22:20:46 2019-12-04 22:24:31 t 1 1 184842 689 0.00 2019-12-04 22:25:56 2019-12-04 22:26:11 t 1 1 184843 545 0.00 2019-12-04 21:18:29 2019-12-04 22:27:25 t 1 1 184847 562 0.00 2019-12-04 22:30:15 2019-12-04 22:30:24 t 1 1 184848 689 0.00 2019-12-04 22:30:23 2019-12-04 22:30:44 t 1 1 184849 481 0.00 2019-12-04 18:28:54 2019-12-04 22:32:03 t 1 1 184857 562 0.00 2019-12-04 22:41:41 2019-12-04 22:42:03 t 1 1 184860 658 0.00 2019-12-04 22:34:05 2019-12-04 22:43:40 t 1 1 184861 687 0.00 2019-12-04 22:21:50 2019-12-04 22:44:01 t 1 1 184867 687 0.00 2019-12-04 22:44:02 2019-12-04 22:45:59 t 1 1 184871 551 0.00 2019-12-04 22:47:01 2019-12-04 22:48:26 t 1 1 184874 658 0.00 2019-12-04 22:49:52 2019-12-04 22:49:59 t 1 1 184876 658 0.00 2019-12-04 22:50:22 2019-12-04 22:50:36 t 1 1 184877 687 0.00 2019-12-04 22:46:11 2019-12-04 22:51:14 t 1 1 184878 658 0.00 2019-12-04 22:51:05 2019-12-04 22:51:44 t 1 1 184881 514 0.00 2019-12-04 22:43:15 2019-12-04 22:54:20 t 1 1 184883 562 0.00 2019-12-04 22:55:11 2019-12-04 22:55:31 t 1 1 184886 679 0.00 2019-12-04 22:53:44 2019-12-04 22:58:18 t 1 1 184888 591 0.00 2019-12-04 22:13:04 2019-12-04 22:59:57 t 1 1 184890 687 0.00 2019-12-04 22:51:14 2019-12-04 23:00:49 t 1 1 184892 591 0.00 2019-12-04 22:59:57 2019-12-04 23:02:00 t 1 1 184894 639 0.00 2019-12-04 22:40:13 2019-12-04 23:02:56 t 1 1 184897 658 0.00 2019-12-04 23:03:02 2019-12-04 23:03:20 t 1 1 184898 658 0.00 2019-12-04 23:04:18 2019-12-04 23:04:30 t 1 1 184899 639 0.00 2019-12-04 23:02:56 2019-12-04 23:07:30 t 1 1 184905 658 0.00 2019-12-04 23:12:47 2019-12-04 23:13:06 t 1 1 184909 658 0.00 2019-12-04 23:13:54 2019-12-04 23:14:06 t 1 1 184913 611 0.00 2019-12-04 23:11:02 2019-12-04 23:17:03 t 1 1 184920 689 0.00 2019-12-04 22:51:02 2019-12-04 23:19:12 t 1 1 184921 689 0.00 2019-12-04 23:19:21 2019-12-04 23:21:17 t 1 1 184924 578 0.00 2019-12-04 23:09:32 2019-12-04 23:24:03 t 1 1 184933 689 0.00 2019-12-04 23:31:07 2019-12-04 23:32:06 t 1 1 184936 658 0.00 2019-12-04 23:31:22 2019-12-04 23:33:26 t 1 1 184941 544 0.00 2019-12-04 23:28:39 2019-12-04 23:36:09 t 1 1 184945 679 0.00 2019-12-04 23:09:25 2019-12-04 23:37:45 t 1 1 184948 658 0.00 2019-12-04 23:37:48 2019-12-04 23:39:25 t 1 1 184950 658 0.00 2019-12-04 23:39:30 2019-12-04 23:39:52 t 1 1 184955 566 0.00 2019-12-04 23:19:34 2019-12-04 23:41:33 t 1 1 184634 637 0.00 2019-12-04 19:04:52 2019-12-04 19:28:45 t 1 1 184637 566 0.00 2019-12-04 19:18:02 2019-12-04 19:30:45 t 1 1 184638 220 0.00 2019-12-04 19:32:22 2019-12-04 19:32:38 t 1 1 184640 611 0.00 2019-12-04 19:11:45 2019-12-04 19:35:02 t 1 1 184644 673 0.00 2019-12-04 19:31:32 2019-12-04 19:41:22 t 1 1 184645 220 0.00 2019-12-04 19:42:53 2019-12-04 19:43:01 t 1 1 184650 645 0.00 2019-12-04 19:39:24 2019-12-04 19:51:55 t 1 1 184655 551 0.00 2019-12-04 17:35:27 2019-12-04 19:54:36 t 1 1 184657 625 0.00 2019-12-04 19:37:17 2019-12-04 19:55:25 t 1 1 184660 562 0.00 2019-12-04 19:57:16 2019-12-04 19:57:34 t 1 1 184663 611 0.00 2019-12-04 19:52:42 2019-12-04 20:01:16 t 1 1 184665 591 0.00 2019-12-04 19:51:14 2019-12-04 20:02:58 t 1 1 184668 220 0.00 2019-12-04 20:03:52 2019-12-04 20:04:03 t 1 1 184678 611 0.00 2019-12-04 20:08:59 2019-12-04 20:10:00 t 1 1 184679 700 0.00 2019-12-04 20:03:11 2019-12-04 20:11:05 t 1 1 184680 562 0.00 2019-12-04 20:11:43 2019-12-04 20:11:54 t 1 1 184687 591 0.00 2019-12-04 20:05:40 2019-12-04 20:16:11 t 1 1 184688 581 0.00 2019-12-04 19:55:52 2019-12-04 20:17:15 t 1 1 184690 675 0.00 2019-12-04 20:18:04 2019-12-04 20:20:39 t 1 1 184692 551 0.00 2019-12-04 19:54:36 2019-12-04 20:21:21 t 1 1 184694 520 0.00 2019-12-04 20:03:38 2019-12-04 20:21:58 t 1 1 184698 220 0.00 2019-12-04 20:24:56 2019-12-04 20:25:13 t 1 1 184699 562 0.00 2019-12-04 20:23:49 2019-12-04 20:25:46 t 1 1 184701 615 0.00 2019-12-04 20:19:49 2019-12-04 20:26:01 t 1 1 184703 516 0.00 2019-12-04 20:11:58 2019-12-04 20:29:39 t 1 1 184704 711 0.00 2019-12-04 20:26:33 2019-12-04 20:29:42 t 1 1 184706 622 0.00 2019-12-04 20:25:59 2019-12-04 20:32:14 t 1 1 184710 687 0.00 2019-12-04 20:03:04 2019-12-04 20:34:33 t 1 1 184712 581 0.00 2019-12-04 20:24:30 2019-12-04 20:34:39 t 1 1 184714 637 0.00 2019-12-04 19:28:45 2019-12-04 20:34:53 t 1 1 184718 673 0.00 2019-12-04 20:31:35 2019-12-04 20:36:04 t 1 1 184719 451 0.00 2019-12-04 20:36:19 2019-12-04 20:36:19 f 1 1 184722 562 0.00 2019-12-04 20:38:53 2019-12-04 20:40:00 t 1 1 184723 220 0.00 2019-12-04 20:29:40 2019-12-04 20:40:52 t 1 2 184726 562 0.00 2019-12-04 20:43:27 2019-12-04 20:44:22 t 1 1 184730 649 0.00 2019-12-04 20:32:57 2019-12-04 20:53:12 t 1 1 184731 656 0.00 2019-12-04 16:16:32 2019-12-04 20:53:54 t 1 1 184734 656 0.00 2019-12-04 20:53:27 2019-12-04 20:54:59 t 1 1 184744 220 0.00 2019-12-04 21:03:55 2019-12-04 21:04:19 t 1 2 184747 220 0.00 2019-12-04 21:05:36 2019-12-04 21:05:52 t 1 1 184749 625 0.00 2019-12-04 21:04:37 2019-12-04 21:06:01 t 1 1 184750 709 0.00 2019-12-04 19:55:35 2019-12-04 21:06:25 t 1 1 184755 220 0.00 2019-12-04 21:12:50 2019-12-04 21:13:05 t 1 1 184756 220 0.00 2019-12-04 21:13:17 2019-12-04 21:13:17 t 1 1 184757 578 0.00 2019-12-04 21:05:16 2019-12-04 21:13:25 t 1 1 184759 713 0.00 2019-12-04 21:08:58 2019-12-04 21:17:33 t 1 1 184764 581 0.00 2019-12-04 21:10:02 2019-12-04 21:22:52 t 1 1 184768 220 0.00 2019-12-04 21:25:34 2019-12-04 21:25:43 t 1 1 184772 718 0.00 2019-12-04 21:21:24 2019-12-04 21:26:24 t 1 1 184776 673 0.00 2019-12-04 21:28:41 2019-12-04 21:30:57 t 1 1 184778 220 0.00 2019-12-04 21:32:37 2019-12-04 21:32:50 t 1 1 184782 667 0.00 2019-12-04 21:23:29 2019-12-04 21:33:47 t 1 1 184784 562 0.00 2019-12-04 21:36:08 2019-12-04 21:36:08 f 1 1 184786 562 0.00 2019-12-04 21:36:41 2019-12-04 21:36:41 f 1 1 184788 562 0.00 2019-12-04 21:30:10 2019-12-04 21:37:02 t 1 1 184789 667 0.00 2019-12-04 21:36:26 2019-12-04 21:38:08 t 1 1 184790 700 0.00 2019-12-04 21:33:27 2019-12-04 21:39:29 t 1 1 184792 220 0.00 2019-12-04 21:39:47 2019-12-04 21:39:56 t 1 1 184795 562 0.00 2019-12-04 21:46:10 2019-12-04 21:46:10 f 1 1 184798 709 0.00 2019-12-04 21:06:25 2019-12-04 21:49:21 t 1 1 184799 220 0.00 2019-12-04 21:44:02 2019-12-04 21:50:17 t 1 1 184800 220 0.00 2019-12-04 21:50:17 2019-12-04 21:50:34 t 1 1 184808 716 0.00 2019-12-04 21:56:41 2019-12-04 21:56:44 t 1 1 184809 220 0.00 2019-12-04 21:50:52 2019-12-04 21:58:08 t 1 1 184811 689 0.00 2019-12-04 21:56:29 2019-12-04 21:59:59 t 1 1 184816 691 0.00 2019-12-04 22:00:58 2019-12-04 22:02:09 t 1 1 184819 689 0.00 2019-12-04 22:05:47 2019-12-04 22:06:47 t 1 1 184821 689 0.00 2019-12-04 22:06:56 2019-12-04 22:09:43 t 1 1 184825 220 0.00 2019-12-04 22:11:26 2019-12-04 22:11:59 t 1 1 184828 718 0.00 2019-12-04 22:04:18 2019-12-04 22:13:44 t 1 1 184831 671 0.00 2019-12-04 22:06:31 2019-12-04 22:16:31 t 1 1 184835 562 0.00 2019-12-04 22:19:30 2019-12-04 22:19:51 t 1 1 184844 611 0.00 2019-12-04 22:13:56 2019-12-04 22:28:24 t 1 1 184845 689 0.00 2019-12-04 22:29:34 2019-12-04 22:29:36 t 1 1 184851 551 0.00 2019-12-04 21:08:08 2019-12-04 22:37:03 t 1 1 184854 562 0.00 2019-12-04 22:37:36 2019-12-04 22:38:05 t 1 1 184856 562 0.00 2019-12-04 22:39:42 2019-12-04 22:40:19 t 1 1 184858 671 0.00 2019-12-04 22:41:09 2019-12-04 22:43:12 t 1 1 184859 709 0.00 2019-12-04 21:49:21 2019-12-04 22:43:26 t 1 1 184862 687 0.00 2019-12-04 22:44:01 2019-12-04 22:44:02 t 1 1 184865 562 0.00 2019-12-04 22:43:49 2019-12-04 22:44:43 t 1 1 184866 658 0.00 2019-12-04 22:44:15 2019-12-04 22:45:36 t 1 1 184868 551 0.00 2019-12-04 22:37:03 2019-12-04 22:47:03 t 1 1 184869 499 0.00 2019-12-04 22:20:55 2019-12-04 22:47:42 t 1 1 184870 689 0.00 2019-12-04 22:48:13 2019-12-04 22:48:22 t 1 1 184872 658 0.00 2019-12-04 22:46:21 2019-12-04 22:48:55 t 1 1 184875 499 0.00 2019-12-04 22:47:41 2019-12-04 22:50:30 t 1 1 184882 611 0.00 2019-12-04 22:39:10 2019-12-04 22:54:53 t 1 1 184884 658 0.00 2019-12-04 22:52:28 2019-12-04 22:56:45 t 1 1 184885 658 0.00 2019-12-04 22:57:08 2019-12-04 22:57:35 t 1 1 184887 611 0.00 2019-12-04 22:54:53 2019-12-04 22:59:38 t 1 1 184889 658 0.00 2019-12-04 22:59:05 2019-12-04 23:00:05 t 1 1 184891 658 0.00 2019-12-04 23:00:48 2019-12-04 23:01:08 t 1 1 184895 658 0.00 2019-12-04 23:02:23 2019-12-04 23:02:57 t 1 1 184900 578 0.00 2019-12-04 21:52:05 2019-12-04 23:09:32 t 1 1 184902 631 0.00 2019-12-04 23:02:42 2019-12-04 23:11:13 t 1 1 184907 481 0.00 2019-12-04 22:32:03 2019-12-04 23:13:36 t 1 1 184910 687 0.00 2019-12-04 23:00:49 2019-12-04 23:14:23 t 1 1 184911 658 0.00 2019-12-04 23:14:25 2019-12-04 23:14:44 t 1 1 184916 481 0.00 2019-12-04 23:13:36 2019-12-04 23:17:59 t 1 1 184918 645 0.00 2019-12-04 23:15:25 2019-12-04 23:18:30 t 1 1 184922 658 0.00 2019-12-04 23:18:50 2019-12-04 23:21:58 t 1 1 184923 658 0.00 2019-12-04 23:22:26 2019-12-04 23:22:31 t 1 1 184927 689 0.00 2019-12-04 23:23:18 2019-12-04 23:26:01 t 1 1 184928 544 0.00 2019-12-04 23:19:10 2019-12-04 23:27:45 t 1 1 184929 220 0.00 2019-12-04 23:08:10 2019-12-04 23:28:34 t 1 1 184930 689 0.00 2019-12-04 23:28:08 2019-12-04 23:29:09 t 1 1 184642 687 0.00 2019-12-04 19:15:38 2019-12-04 19:37:21 t 1 1 184648 675 0.00 2019-12-04 19:26:03 2019-12-04 19:50:59 t 1 1 184649 581 0.00 2019-12-04 19:50:53 2019-12-04 19:51:20 t 1 1 184652 611 0.00 2019-12-04 19:40:43 2019-12-04 19:52:42 t 1 1 184653 220 0.00 2019-12-04 19:53:22 2019-12-04 19:53:30 t 1 1 184656 566 0.00 2019-12-04 19:47:06 2019-12-04 19:55:14 t 1 1 184664 687 0.00 2019-12-04 19:48:01 2019-12-04 20:02:55 t 1 1 184667 562 0.00 2019-12-04 20:03:04 2019-12-04 20:03:18 t 1 1 184670 645 0.00 2019-12-04 20:01:42 2019-12-04 20:04:13 t 1 1 184671 562 0.00 2019-12-04 20:07:35 2019-12-04 20:07:55 t 1 1 184675 562 0.00 2019-12-04 20:08:13 2019-12-04 20:09:00 t 1 1 184677 671 0.00 2019-12-04 20:05:05 2019-12-04 20:09:59 t 1 1 184681 675 0.00 2019-12-04 19:58:48 2019-12-04 20:12:11 t 1 1 184682 220 0.00 2019-12-04 20:14:25 2019-12-04 20:14:40 t 1 1 184684 711 0.00 2019-12-04 20:08:29 2019-12-04 20:15:41 t 1 1 184686 562 0.00 2019-12-04 20:15:17 2019-12-04 20:15:55 t 1 1 184693 645 0.00 2019-12-04 20:15:23 2019-12-04 20:21:38 t 1 1 184696 562 0.00 2019-12-04 20:19:39 2019-12-04 20:23:04 t 1 1 184700 622 0.00 2019-12-04 20:01:02 2019-12-04 20:25:59 t 1 1 184702 711 0.00 2019-12-04 20:15:42 2019-12-04 20:26:33 t 1 1 184705 713 0.00 2019-12-04 20:29:27 2019-12-04 20:29:55 t 1 1 184708 516 0.00 2019-12-04 20:29:39 2019-12-04 20:34:09 t 1 1 184711 451 0.00 2019-12-04 20:34:36 2019-12-04 20:34:36 f 1 1 184715 451 0.00 2019-12-04 20:35:11 2019-12-04 20:35:11 f 1 1 184717 220 0.00 2019-12-04 20:35:28 2019-12-04 20:35:40 t 1 1 184721 675 0.00 2019-12-04 20:33:44 2019-12-04 20:37:22 t 1 1 184724 551 0.00 2019-12-04 20:21:21 2019-12-04 20:41:22 t 1 1 184729 520 0.00 2019-12-04 20:51:07 2019-12-04 20:53:11 t 1 1 184732 679 0.00 2019-12-04 20:51:34 2019-12-04 20:54:18 t 1 1 184736 562 0.00 2019-12-04 20:44:34 2019-12-04 20:57:22 t 1 1 184739 645 0.00 2019-12-04 20:59:39 2019-12-04 21:01:09 t 1 1 184741 538 0.00 2019-12-04 21:00:30 2019-12-04 21:01:59 t 1 1 184743 311 0.00 2019-12-04 20:56:07 2019-12-04 21:02:30 t 1 2 184745 625 0.00 2019-12-04 20:46:41 2019-12-04 21:04:37 t 1 1 184748 220 0.00 2019-12-04 21:06:00 2019-12-04 21:06:00 t 1 1 184753 625 0.00 2019-12-04 21:10:17 2019-12-04 21:11:39 t 1 1 184754 716 0.00 2019-12-04 21:12:55 2019-12-04 21:13:02 t 1 1 184762 622 0.00 2019-12-04 21:09:07 2019-12-04 21:18:45 t 1 1 184765 581 0.00 2019-12-04 21:23:43 2019-12-04 21:25:04 t 1 1 184767 645 0.00 2019-12-04 21:20:56 2019-12-04 21:25:16 t 1 1 184769 449 0.00 2019-12-04 21:25:50 2019-12-04 21:25:50 f 1 1 184770 449 0.00 2019-12-04 21:26:01 2019-12-04 21:26:01 f 1 1 184773 449 0.00 2019-12-04 21:26:30 2019-12-04 21:26:30 f 1 1 184777 220 0.00 2019-12-04 21:26:07 2019-12-04 21:32:37 t 1 1 184785 622 0.00 2019-12-04 21:18:57 2019-12-04 21:36:12 t 1 1 184787 562 0.00 2019-12-04 21:37:00 2019-12-04 21:37:00 f 1 1 184791 220 0.00 2019-12-04 21:33:12 2019-12-04 21:39:47 t 1 1 184796 562 0.00 2019-12-04 21:37:40 2019-12-04 21:46:22 t 1 1 184802 562 0.00 2019-12-04 21:51:47 2019-12-04 21:51:47 f 1 1 184803 562 0.00 2019-12-04 21:52:12 2019-12-04 21:52:12 f 1 1 184805 675 0.00 2019-12-04 21:45:48 2019-12-04 21:53:11 t 1 1 184810 220 0.00 2019-12-04 21:56:14 2019-12-04 21:58:38 t 1 2 184812 687 0.00 2019-12-04 21:40:21 2019-12-04 22:00:44 t 1 1 184813 220 0.00 2019-12-04 22:00:48 2019-12-04 22:01:04 t 1 1 184815 675 0.00 2019-12-04 21:59:06 2019-12-04 22:01:55 t 1 1 184820 562 0.00 2019-12-04 21:54:50 2019-12-04 22:09:21 t 1 1 184822 485 0.00 2019-12-04 21:59:05 2019-12-04 22:10:10 t 1 1 184823 689 0.00 2019-12-04 22:09:52 2019-12-04 22:10:53 t 1 1 184824 622 0.00 2019-12-04 21:36:11 2019-12-04 22:11:29 t 1 1 184826 220 0.00 2019-12-04 22:12:06 2019-12-04 22:12:15 t 1 1 184829 562 0.00 2019-12-04 22:13:48 2019-12-04 22:14:33 t 1 1 184832 520 0.00 2019-12-04 22:03:30 2019-12-04 22:18:02 t 1 1 184833 645 0.00 2019-12-04 22:15:54 2019-12-04 22:19:07 t 1 1 184834 689 0.00 2019-12-04 22:15:06 2019-12-04 22:19:35 t 1 1 184836 499 0.00 2019-12-04 22:18:58 2019-12-04 22:20:55 t 1 1 184838 718 0.00 2019-12-04 22:13:44 2019-12-04 22:22:31 t 1 1 184841 689 0.00 2019-12-04 22:24:46 2019-12-04 22:25:38 t 1 1 184846 689 0.00 2019-12-04 22:29:54 2019-12-04 22:30:09 t 1 1 184850 671 0.00 2019-12-04 22:21:29 2019-12-04 22:34:51 t 1 1 184852 671 0.00 2019-12-04 22:34:51 2019-12-04 22:37:03 t 1 1 184853 660 0.00 2019-12-04 22:30:26 2019-12-04 22:37:50 t 1 1 184855 639 0.00 2019-12-04 22:04:28 2019-12-04 22:40:13 t 1 1 184863 658 0.00 2019-12-04 22:43:46 2019-12-04 22:44:09 t 1 1 184864 689 0.00 2019-12-04 22:30:57 2019-12-04 22:44:36 t 1 1 184873 689 0.00 2019-12-04 22:48:32 2019-12-04 22:49:34 t 1 1 184879 658 0.00 2019-12-04 22:50:04 2019-12-04 22:51:59 t 1 1 184880 645 0.00 2019-12-04 22:30:38 2019-12-04 22:52:51 t 1 1 184893 658 0.00 2019-12-04 23:01:28 2019-12-04 23:02:18 t 1 1 184896 562 0.00 2019-12-04 23:02:46 2019-12-04 23:03:14 t 1 1 184901 611 0.00 2019-12-04 22:59:37 2019-12-04 23:11:02 t 1 1 184903 658 0.00 2019-12-04 23:05:06 2019-12-04 23:11:37 t 1 1 184904 658 0.00 2019-12-04 23:12:05 2019-12-04 23:12:20 t 1 1 184906 658 0.00 2019-12-04 23:13:12 2019-12-04 23:13:34 t 1 1 184908 562 0.00 2019-12-04 23:13:32 2019-12-04 23:13:52 t 1 1 184912 658 0.00 2019-12-04 23:15:27 2019-12-04 23:16:17 t 1 1 184914 658 0.00 2019-12-04 23:16:47 2019-12-04 23:17:11 t 1 1 184915 673 0.00 2019-12-04 21:54:57 2019-12-04 23:17:54 t 1 1 184917 485 0.00 2019-12-04 23:16:36 2019-12-04 23:18:26 t 1 1 184919 551 0.00 2019-12-04 23:17:52 2019-12-04 23:19:03 t 1 1 184925 562 0.00 2019-12-04 23:24:25 2019-12-04 23:24:44 t 1 1 184926 687 0.00 2019-12-04 23:14:23 2019-12-04 23:25:28 t 1 1 184931 658 0.00 2019-12-04 23:23:07 2019-12-04 23:29:29 t 1 1 184937 689 0.00 2019-12-04 23:33:11 2019-12-04 23:34:11 t 1 1 184938 658 0.00 2019-12-04 23:34:42 2019-12-04 23:34:59 t 1 1 184940 658 0.00 2019-12-04 23:35:34 2019-12-04 23:35:41 t 1 1 184942 658 0.00 2019-12-04 23:35:55 2019-12-04 23:36:11 t 1 1 184951 578 0.00 2019-12-04 23:24:03 2019-12-04 23:40:05 t 1 1 184954 658 0.00 2019-12-04 23:40:12 2019-12-04 23:41:06 t 1 1 184959 689 0.00 2019-12-04 23:44:32 2019-12-04 23:44:57 t 1 1 184966 578 0.00 2019-12-04 23:40:05 2019-12-04 23:48:14 t 1 1 184974 562 0.00 2019-12-04 23:54:38 2019-12-04 23:55:03 t 1 1 184978 658 0.00 2019-12-04 23:54:40 2019-12-04 23:58:40 t 1 1 184983 667 0.00 2019-12-05 00:03:18 2019-12-05 00:04:06 t 1 1 184986 564 0.00 2019-12-04 23:57:16 2019-12-05 00:04:47 t 1 1 184988 665 0.00 2019-12-04 23:55:55 2019-12-05 00:05:32 t 1 1 184993 658 0.00 2019-12-05 00:06:22 2019-12-05 00:06:49 t 1 1 184997 667 0.00 2019-12-05 00:08:45 2019-12-05 00:08:53 t 1 1 184932 658 0.00 2019-12-04 23:29:35 2019-12-04 23:30:54 t 1 1 184934 611 0.00 2019-12-04 23:17:03 2019-12-04 23:32:13 t 1 1 184935 713 0.00 2019-12-04 23:01:22 2019-12-04 23:33:09 t 1 1 184939 562 0.00 2019-12-04 23:35:15 2019-12-04 23:35:27 t 1 1 184943 658 0.00 2019-12-04 23:36:38 2019-12-04 23:37:09 t 1 1 184944 611 0.00 2019-12-04 23:32:12 2019-12-04 23:37:24 t 1 1 184946 544 0.00 2019-12-04 23:36:15 2019-12-04 23:38:29 t 1 1 184947 689 0.00 2019-12-04 23:38:17 2019-12-04 23:39:19 t 1 1 184949 713 0.00 2019-12-04 23:33:09 2019-12-04 23:39:50 t 1 1 184952 622 0.00 2019-12-04 22:12:44 2019-12-04 23:40:18 t 1 1 184953 611 0.00 2019-12-04 23:37:24 2019-12-04 23:40:44 t 1 1 184956 220 0.00 2019-12-04 23:28:34 2019-12-04 23:41:52 t 1 1 184957 658 0.00 2019-12-04 23:42:12 2019-12-04 23:42:23 t 1 1 184958 689 0.00 2019-12-04 23:40:44 2019-12-04 23:44:23 t 1 1 184960 544 0.00 2019-12-04 23:39:04 2019-12-04 23:45:18 t 1 1 184965 658 0.00 2019-12-04 23:47:18 2019-12-04 23:47:51 t 1 1 184967 658 0.00 2019-12-04 23:49:52 2019-12-04 23:49:58 t 1 1 184969 581 0.00 2019-12-04 23:46:07 2019-12-04 23:51:49 t 1 1 184970 658 0.00 2019-12-04 23:51:52 2019-12-04 23:52:09 t 1 1 184971 581 0.00 2019-12-04 23:51:55 2019-12-04 23:52:28 t 1 1 184975 689 0.00 2019-12-04 23:48:06 2019-12-04 23:55:09 t 1 1 184976 564 0.00 2019-12-04 21:06:53 2019-12-04 23:57:16 t 1 1 184977 687 0.00 2019-12-04 23:47:39 2019-12-04 23:57:59 t 1 1 184979 581 0.00 2019-12-04 23:58:48 2019-12-04 23:59:06 t 1 1 184981 622 0.00 2019-12-04 23:50:59 2019-12-05 00:03:02 t 1 1 184984 658 0.00 2019-12-05 00:03:56 2019-12-05 00:04:12 t 1 1 184989 667 0.00 2019-12-05 00:05:24 2019-12-05 00:05:33 t 1 1 184990 562 0.00 2019-12-05 00:05:36 2019-12-05 00:05:49 t 1 1 184992 658 0.00 2019-12-05 00:05:39 2019-12-05 00:06:22 t 1 1 184996 667 0.00 2019-12-05 00:07:25 2019-12-05 00:08:40 t 1 1 184999 645 0.00 2019-12-05 00:06:33 2019-12-05 00:11:07 t 1 1 185001 633 0.00 2019-12-04 23:57:12 2019-12-05 00:11:34 t 1 1 185003 658 0.00 2019-12-05 00:12:35 2019-12-05 00:12:42 t 1 1 185006 562 0.00 2019-12-05 00:13:40 2019-12-05 00:14:01 t 1 1 185010 658 0.00 2019-12-05 00:17:40 2019-12-05 00:19:00 t 1 1 185018 658 0.00 2019-12-05 00:24:24 2019-12-05 00:25:02 t 1 1 185021 687 0.00 2019-12-05 00:18:17 2019-12-05 00:25:45 t 1 1 185022 658 0.00 2019-12-05 00:26:02 2019-12-05 00:26:08 t 1 1 185025 658 0.00 2019-12-05 00:27:24 2019-12-05 00:27:41 t 1 1 185029 658 0.00 2019-12-05 00:28:09 2019-12-05 00:28:28 t 1 1 185033 658 0.00 2019-12-05 00:30:06 2019-12-05 00:30:36 t 1 1 185037 562 0.00 2019-12-05 00:35:06 2019-12-05 00:35:33 t 1 1 185038 658 0.00 2019-12-05 00:36:45 2019-12-05 00:37:09 t 1 1 185039 637 0.00 2019-12-04 20:37:05 2019-12-05 00:38:06 t 1 1 185041 679 0.00 2019-12-04 23:59:10 2019-12-05 00:38:35 t 1 1 185042 658 0.00 2019-12-05 00:38:47 2019-12-05 00:38:51 t 1 1 185046 627 0.00 2019-12-05 00:38:21 2019-12-05 00:39:04 t 1 1 185047 658 0.00 2019-12-05 00:39:38 2019-12-05 00:39:39 t 1 1 185059 658 0.00 2019-12-05 00:48:08 2019-12-05 00:48:15 t 1 1 185060 658 0.00 2019-12-05 00:49:01 2019-12-05 00:49:06 t 1 1 185062 658 0.00 2019-12-05 00:50:02 2019-12-05 00:50:19 t 1 1 185066 718 0.00 2019-12-05 00:45:14 2019-12-05 00:52:24 t 1 1 185074 562 0.00 2019-12-05 00:56:42 2019-12-05 00:57:01 t 1 1 185077 658 0.00 2019-12-05 00:58:48 2019-12-05 00:58:51 t 1 1 185080 665 0.00 2019-12-05 00:45:21 2019-12-05 00:59:36 t 1 1 185081 658 0.00 2019-12-05 00:59:47 2019-12-05 00:59:55 t 1 1 185085 667 0.00 2019-12-05 00:34:10 2019-12-05 01:05:04 t 1 1 185090 687 0.00 2019-12-05 01:02:04 2019-12-05 01:07:39 t 1 1 185096 658 0.00 2019-12-05 01:11:24 2019-12-05 01:11:46 t 1 1 185101 679 0.00 2019-12-05 00:55:03 2019-12-05 01:16:25 t 1 1 185103 562 0.00 2019-12-05 01:18:22 2019-12-05 01:18:32 t 1 1 185107 665 0.00 2019-12-05 01:15:23 2019-12-05 01:23:07 t 1 1 185111 633 0.00 2019-12-05 01:23:02 2019-12-05 01:29:13 t 1 1 185112 687 0.00 2019-12-05 01:25:31 2019-12-05 01:29:54 t 1 1 185117 679 0.00 2019-12-05 01:16:25 2019-12-05 01:33:33 t 1 1 185119 658 0.00 2019-12-05 01:34:56 2019-12-05 01:35:19 t 1 1 185122 633 0.00 2019-12-05 01:29:13 2019-12-05 01:38:02 t 1 1 185125 687 0.00 2019-12-05 01:30:07 2019-12-05 01:40:44 t 1 1 185132 633 0.00 2019-12-05 01:38:02 2019-12-05 01:48:35 t 1 1 185133 679 0.00 2019-12-05 01:33:33 2019-12-05 01:49:22 t 1 1 185134 658 0.00 2019-12-05 01:51:01 2019-12-05 01:51:22 t 1 1 185138 658 0.00 2019-12-05 01:56:34 2019-12-05 01:56:49 t 1 1 185141 633 0.00 2019-12-05 01:59:30 2019-12-05 01:59:30 f 1 1 185143 633 0.00 2019-12-05 01:48:35 2019-12-05 02:00:06 t 1 1 185145 633 0.00 2019-12-05 01:59:14 2019-12-05 02:01:02 t 1 1 185147 658 0.00 2019-12-05 02:03:32 2019-12-05 02:03:48 t 1 1 185152 658 0.00 2019-12-05 02:06:00 2019-12-05 02:06:33 t 1 1 185153 658 0.00 2019-12-05 02:06:53 2019-12-05 02:06:56 t 1 1 185154 658 0.00 2019-12-05 02:07:54 2019-12-05 02:07:57 t 1 1 185155 658 0.00 2019-12-05 02:08:18 2019-12-05 02:08:24 t 1 1 185156 220 0.00 2019-12-05 02:06:48 2019-12-05 02:09:12 t 1 2 185158 627 0.00 2019-12-05 02:08:45 2019-12-05 02:10:28 t 1 1 185159 658 0.00 2019-12-05 02:10:21 2019-12-05 02:11:18 t 1 1 185164 627 0.00 2019-12-05 02:12:13 2019-12-05 02:12:38 t 1 1 185166 658 0.00 2019-12-05 02:12:44 2019-12-05 02:13:45 t 1 1 185167 658 0.00 2019-12-05 02:14:52 2019-12-05 02:14:59 t 1 1 185169 658 0.00 2019-12-05 02:15:55 2019-12-05 02:16:02 t 1 1 185175 679 0.00 2019-12-05 02:13:44 2019-12-05 02:20:12 t 1 1 185177 679 0.00 2019-12-05 02:20:40 2019-12-05 02:20:50 t 1 1 185179 625 0.00 2019-12-05 02:15:08 2019-12-05 02:21:39 t 1 1 185184 679 0.00 2019-12-05 02:22:06 2019-12-05 02:22:21 t 1 1 185187 679 0.00 2019-12-05 02:23:03 2019-12-05 02:23:17 t 1 1 185195 658 0.00 2019-12-05 02:26:25 2019-12-05 02:26:48 t 1 1 185197 514 0.00 2019-12-05 02:26:25 2019-12-05 02:27:38 t 1 1 185199 658 0.00 2019-12-05 02:28:01 2019-12-05 02:28:11 t 1 1 185200 658 0.00 2019-12-05 02:28:16 2019-12-05 02:28:20 t 1 1 185203 658 0.00 2019-12-05 02:29:19 2019-12-05 02:31:02 t 1 1 185205 514 0.00 2019-12-05 02:27:38 2019-12-05 02:33:00 t 1 1 185206 658 0.00 2019-12-05 02:33:16 2019-12-05 02:33:35 t 1 1 185209 658 0.00 2019-12-05 02:35:46 2019-12-05 02:35:52 t 1 1 185213 562 0.00 2019-12-05 02:38:05 2019-12-05 02:38:26 t 1 1 185215 514 0.00 2019-12-05 02:32:59 2019-12-05 02:38:38 t 1 1 185219 658 0.00 2019-12-05 02:39:53 2019-12-05 02:40:09 t 1 1 185222 658 0.00 2019-12-05 02:41:57 2019-12-05 02:42:03 t 1 1 185223 514 0.00 2019-12-05 02:39:22 2019-12-05 02:42:36 t 1 1 185226 514 0.00 2019-12-05 02:42:49 2019-12-05 02:44:00 t 1 1 185227 658 0.00 2019-12-05 02:46:03 2019-12-05 02:46:05 t 1 1 184961 622 0.00 2019-12-04 23:40:18 2019-12-04 23:45:40 t 1 1 184962 562 0.00 2019-12-04 23:46:04 2019-12-04 23:46:12 t 1 1 184963 658 0.00 2019-12-04 23:46:24 2019-12-04 23:46:42 t 1 1 184964 687 0.00 2019-12-04 23:32:21 2019-12-04 23:47:22 t 1 1 184968 622 0.00 2019-12-04 23:45:40 2019-12-04 23:50:59 t 1 1 184972 658 0.00 2019-12-04 23:52:22 2019-12-04 23:52:53 t 1 1 184973 581 0.00 2019-12-04 23:53:30 2019-12-04 23:54:01 t 1 1 184980 679 0.00 2019-12-04 23:37:45 2019-12-04 23:59:10 t 1 1 184982 667 0.00 2019-12-04 23:58:44 2019-12-05 00:03:12 t 1 1 184985 658 0.00 2019-12-05 00:04:17 2019-12-05 00:04:34 t 1 1 184987 667 0.00 2019-12-05 00:04:13 2019-12-05 00:05:18 t 1 1 184991 566 0.00 2019-12-04 23:41:33 2019-12-05 00:06:06 t 1 1 184994 667 0.00 2019-12-05 00:06:09 2019-12-05 00:07:19 t 1 1 184995 658 0.00 2019-12-05 00:08:02 2019-12-05 00:08:14 t 1 1 184998 658 0.00 2019-12-05 00:10:36 2019-12-05 00:10:54 t 1 1 185000 622 0.00 2019-12-05 00:03:02 2019-12-05 00:11:10 t 1 1 185004 622 0.00 2019-12-05 00:11:03 2019-12-05 00:13:02 t 1 1 185008 667 0.00 2019-12-05 00:17:41 2019-12-05 00:18:09 t 1 1 185011 633 0.00 2019-12-05 00:11:34 2019-12-05 00:19:10 t 1 1 185012 658 0.00 2019-12-05 00:18:48 2019-12-05 00:19:26 t 1 1 185014 658 0.00 2019-12-05 00:21:49 2019-12-05 00:23:00 t 1 1 185015 667 0.00 2019-12-05 00:23:28 2019-12-05 00:23:42 t 1 1 185016 658 0.00 2019-12-05 00:23:50 2019-12-05 00:24:01 t 1 1 185026 581 0.00 2019-12-04 23:59:27 2019-12-05 00:27:53 t 1 1 185031 658 0.00 2019-12-05 00:28:34 2019-12-05 00:28:40 t 1 1 185035 658 0.00 2019-12-05 00:33:30 2019-12-05 00:33:32 t 1 1 185043 633 0.00 2019-12-05 00:28:38 2019-12-05 00:38:56 t 1 1 185044 658 0.00 2019-12-05 00:38:56 2019-12-05 00:38:58 t 1 1 185050 658 0.00 2019-12-05 00:41:14 2019-12-05 00:43:00 t 1 1 185052 658 0.00 2019-12-05 00:43:54 2019-12-05 00:45:00 t 1 1 185058 658 0.00 2019-12-05 00:46:11 2019-12-05 00:48:00 t 1 1 185064 658 0.00 2019-12-05 00:50:52 2019-12-05 00:51:04 t 1 1 185065 658 0.00 2019-12-05 00:51:46 2019-12-05 00:51:47 t 1 1 185070 658 0.00 2019-12-05 00:54:48 2019-12-05 00:54:51 t 1 1 185072 658 0.00 2019-12-05 00:55:38 2019-12-05 00:55:54 t 1 1 185073 687 0.00 2019-12-05 00:54:25 2019-12-05 00:56:24 t 1 1 185075 658 0.00 2019-12-05 00:55:59 2019-12-05 00:57:06 t 1 1 185076 687 0.00 2019-12-05 00:56:49 2019-12-05 00:58:19 t 1 1 185089 658 0.00 2019-12-05 01:06:44 2019-12-05 01:06:47 t 1 1 185091 562 0.00 2019-12-05 01:07:37 2019-12-05 01:07:47 t 1 1 185092 658 0.00 2019-12-05 01:07:31 2019-12-05 01:08:31 t 1 1 185094 658 0.00 2019-12-05 01:08:53 2019-12-05 01:09:09 t 1 1 185098 665 0.00 2019-12-05 00:59:36 2019-12-05 01:15:23 t 1 1 185099 658 0.00 2019-12-05 01:15:34 2019-12-05 01:15:42 t 1 1 185105 658 0.00 2019-12-05 01:21:00 2019-12-05 01:21:14 t 1 1 185106 633 0.00 2019-12-05 01:15:54 2019-12-05 01:23:02 t 1 1 185108 514 0.00 2019-12-05 01:11:14 2019-12-05 01:25:18 t 1 1 185109 658 0.00 2019-12-05 01:25:36 2019-12-05 01:26:09 t 1 1 185114 658 0.00 2019-12-05 01:30:46 2019-12-05 01:31:08 t 1 1 185115 658 0.00 2019-12-05 01:31:51 2019-12-05 01:31:58 t 1 1 185116 658 0.00 2019-12-05 01:32:18 2019-12-05 01:32:35 t 1 1 185118 658 0.00 2019-12-05 01:34:04 2019-12-05 01:34:21 t 1 1 185120 658 0.00 2019-12-05 01:35:54 2019-12-05 01:36:13 t 1 1 185121 562 0.00 2019-12-05 01:36:43 2019-12-05 01:36:53 t 1 1 185123 658 0.00 2019-12-05 01:39:00 2019-12-05 01:39:15 t 1 1 185126 658 0.00 2019-12-05 01:40:58 2019-12-05 01:41:20 t 1 1 185127 503 0.00 2019-12-05 01:41:09 2019-12-05 01:43:00 t 1 1 185129 503 0.00 2019-12-05 01:43:00 2019-12-05 01:44:43 t 1 1 185135 707 0.00 2019-12-05 01:52:07 2019-12-05 01:55:14 t 1 1 185136 562 0.00 2019-12-05 01:54:54 2019-12-05 01:55:23 t 1 1 185137 658 0.00 2019-12-05 01:55:56 2019-12-05 01:56:29 t 1 1 185139 503 0.00 2019-12-05 01:44:43 2019-12-05 01:57:15 t 1 1 185140 658 0.00 2019-12-05 01:57:41 2019-12-05 01:57:58 t 1 1 185144 658 0.00 2019-12-05 02:00:50 2019-12-05 02:00:55 t 1 1 185149 658 0.00 2019-12-05 02:05:02 2019-12-05 02:05:09 t 1 1 185150 687 0.00 2019-12-05 01:46:46 2019-12-05 02:05:46 t 1 1 185151 562 0.00 2019-12-05 02:05:59 2019-12-05 02:06:09 t 1 1 185161 658 0.00 2019-12-05 02:11:41 2019-12-05 02:11:48 t 1 1 185165 679 0.00 2019-12-05 01:49:22 2019-12-05 02:13:44 t 1 1 185168 625 0.00 2019-12-05 00:35:31 2019-12-05 02:15:08 t 1 1 185170 658 0.00 2019-12-05 02:16:22 2019-12-05 02:16:49 t 1 1 185173 687 0.00 2019-12-05 02:09:02 2019-12-05 02:18:38 t 1 1 185174 514 0.00 2019-12-05 02:12:48 2019-12-05 02:18:48 t 1 1 185176 679 0.00 2019-12-05 02:20:17 2019-12-05 02:20:34 t 1 1 185180 679 0.00 2019-12-05 02:21:21 2019-12-05 02:21:41 t 1 1 185182 679 0.00 2019-12-05 02:21:46 2019-12-05 02:22:00 t 1 1 185183 658 0.00 2019-12-05 02:22:10 2019-12-05 02:22:16 t 1 1 185186 679 0.00 2019-12-05 02:22:47 2019-12-05 02:22:57 t 1 1 185189 658 0.00 2019-12-05 02:23:57 2019-12-05 02:25:02 t 1 1 185190 514 0.00 2019-12-05 02:18:48 2019-12-05 02:25:04 t 1 1 185193 658 0.00 2019-12-05 02:25:24 2019-12-05 02:25:31 t 1 1 185198 562 0.00 2019-12-05 02:27:26 2019-12-05 02:27:43 t 1 1 185204 658 0.00 2019-12-05 02:32:25 2019-12-05 02:32:30 t 1 1 185218 658 0.00 2019-12-05 02:39:29 2019-12-05 02:39:32 t 1 1 185220 658 0.00 2019-12-05 02:40:56 2019-12-05 02:41:01 t 1 1 185221 658 0.00 2019-12-05 02:41:46 2019-12-05 02:41:52 t 1 1 185230 658 0.00 2019-12-05 02:47:05 2019-12-05 02:47:11 t 1 1 185231 514 0.00 2019-12-05 02:46:46 2019-12-05 02:48:11 t 1 1 185232 658 0.00 2019-12-05 02:48:18 2019-12-05 02:48:45 t 1 1 185233 514 0.00 2019-12-05 02:48:10 2019-12-05 02:49:04 t 1 1 185236 658 0.00 2019-12-05 02:51:14 2019-12-05 02:51:20 t 1 1 185237 658 0.00 2019-12-05 02:52:15 2019-12-05 02:52:21 t 1 1 185238 658 0.00 2019-12-05 02:52:43 2019-12-05 02:53:45 t 1 1 185241 658 0.00 2019-12-05 02:58:24 2019-12-05 02:58:50 t 1 1 185244 658 0.00 2019-12-05 03:03:28 2019-12-05 03:04:05 t 1 1 185247 658 0.00 2019-12-05 03:05:20 2019-12-05 03:05:26 t 1 1 185249 658 0.00 2019-12-05 03:07:31 2019-12-05 03:07:37 t 1 1 185251 658 0.00 2019-12-05 03:08:59 2019-12-05 03:09:04 t 1 1 185258 544 0.00 2019-12-05 03:08:10 2019-12-05 03:12:39 t 1 1 185261 658 0.00 2019-12-05 03:14:22 2019-12-05 03:15:12 t 1 1 185263 658 0.00 2019-12-05 03:15:12 2019-12-05 03:15:17 t 1 1 185275 658 0.00 2019-12-05 03:24:29 2019-12-05 03:24:35 t 1 1 185281 658 0.00 2019-12-05 03:29:55 2019-12-05 03:30:01 t 1 1 185286 658 0.00 2019-12-05 03:34:12 2019-12-05 03:34:18 t 1 1 185290 687 0.00 2019-12-05 03:26:24 2019-12-05 03:36:59 t 1 1 185291 658 0.00 2019-12-05 03:37:20 2019-12-05 03:37:25 t 1 1 185293 658 0.00 2019-12-05 03:38:23 2019-12-05 03:40:02 t 1 1 185002 514 0.00 2019-12-04 22:54:19 2019-12-05 00:12:15 t 1 1 185005 658 0.00 2019-12-05 00:13:11 2019-12-05 00:13:44 t 1 1 185007 658 0.00 2019-12-05 00:15:33 2019-12-05 00:15:43 t 1 1 185009 687 0.00 2019-12-04 23:58:56 2019-12-05 00:18:17 t 1 1 185013 658 0.00 2019-12-05 00:20:44 2019-12-05 00:20:46 t 1 1 185017 562 0.00 2019-12-05 00:24:21 2019-12-05 00:24:46 t 1 1 185019 658 0.00 2019-12-05 00:25:07 2019-12-05 00:25:19 t 1 1 185020 512 0.00 2019-12-05 00:23:49 2019-12-05 00:25:40 t 1 1 185023 658 0.00 2019-12-05 00:26:13 2019-12-05 00:26:15 t 1 1 185024 658 0.00 2019-12-05 00:26:36 2019-12-05 00:26:41 t 1 1 185027 667 0.00 2019-12-05 00:27:25 2019-12-05 00:28:07 t 1 1 185028 564 0.00 2019-12-05 00:04:47 2019-12-05 00:28:24 t 1 1 185030 633 0.00 2019-12-05 00:19:10 2019-12-05 00:28:38 t 1 1 185032 658 0.00 2019-12-05 00:29:42 2019-12-05 00:30:07 t 1 1 185034 658 0.00 2019-12-05 00:30:36 2019-12-05 00:32:14 t 1 1 185036 658 0.00 2019-12-05 00:32:29 2019-12-05 00:34:00 t 1 1 185040 658 0.00 2019-12-05 00:38:08 2019-12-05 00:38:18 t 1 1 185045 658 0.00 2019-12-05 00:37:23 2019-12-05 00:39:00 t 1 1 185048 658 0.00 2019-12-05 00:39:44 2019-12-05 00:40:17 t 1 1 185049 658 0.00 2019-12-05 00:41:37 2019-12-05 00:42:11 t 1 1 185051 687 0.00 2019-12-05 00:25:51 2019-12-05 00:43:16 t 1 1 185053 718 0.00 2019-12-05 00:22:39 2019-12-05 00:45:14 t 1 1 185054 658 0.00 2019-12-05 00:45:36 2019-12-05 00:45:42 t 1 1 185055 562 0.00 2019-12-05 00:46:04 2019-12-05 00:46:17 t 1 1 185056 658 0.00 2019-12-05 00:46:49 2019-12-05 00:47:11 t 1 1 185057 658 0.00 2019-12-05 00:47:39 2019-12-05 00:47:44 t 1 1 185061 658 0.00 2019-12-05 00:47:58 2019-12-05 00:50:00 t 1 1 185063 633 0.00 2019-12-05 00:38:56 2019-12-05 00:50:54 t 1 1 185067 658 0.00 2019-12-05 00:52:46 2019-12-05 00:52:49 t 1 1 185068 687 0.00 2019-12-05 00:43:16 2019-12-05 00:54:10 t 1 1 185069 658 0.00 2019-12-05 00:53:48 2019-12-05 00:54:48 t 1 1 185071 679 0.00 2019-12-05 00:38:35 2019-12-05 00:55:03 t 1 1 185078 658 0.00 2019-12-05 00:59:04 2019-12-05 00:59:06 t 1 1 185079 658 0.00 2019-12-05 00:59:20 2019-12-05 00:59:27 t 1 1 185082 658 0.00 2019-12-05 01:01:05 2019-12-05 01:01:38 t 1 1 185083 658 0.00 2019-12-05 01:03:07 2019-12-05 01:04:08 t 1 1 185084 671 0.00 2019-12-05 00:56:54 2019-12-05 01:04:23 t 1 1 185086 658 0.00 2019-12-05 01:05:10 2019-12-05 01:05:12 t 1 1 185087 658 0.00 2019-12-05 01:04:07 2019-12-05 01:06:01 t 1 1 185088 658 0.00 2019-12-05 01:06:07 2019-12-05 01:06:39 t 1 1 185093 658 0.00 2019-12-05 01:08:31 2019-12-05 01:08:48 t 1 1 185095 514 0.00 2019-12-05 00:12:15 2019-12-05 01:11:14 t 1 1 185097 671 0.00 2019-12-05 01:04:23 2019-12-05 01:12:39 t 1 1 185100 633 0.00 2019-12-05 00:50:54 2019-12-05 01:15:54 t 1 1 185102 658 0.00 2019-12-05 01:16:10 2019-12-05 01:16:47 t 1 1 185104 658 0.00 2019-12-05 01:20:27 2019-12-05 01:20:55 t 1 1 185110 562 0.00 2019-12-05 01:25:47 2019-12-05 01:26:10 t 1 1 185113 658 0.00 2019-12-05 01:30:13 2019-12-05 01:30:19 t 1 1 185124 707 0.00 2019-12-05 01:07:27 2019-12-05 01:40:37 t 1 1 185128 562 0.00 2019-12-05 01:44:26 2019-12-05 01:44:40 t 1 1 185130 658 0.00 2019-12-05 01:45:32 2019-12-05 01:45:35 t 1 1 185131 658 0.00 2019-12-05 01:46:02 2019-12-05 01:46:21 t 1 1 185142 514 0.00 2019-12-05 01:25:17 2019-12-05 01:59:56 t 1 1 185146 658 0.00 2019-12-05 02:01:00 2019-12-05 02:01:32 t 1 1 185148 671 0.00 2019-12-05 01:55:09 2019-12-05 02:05:02 t 1 1 185157 622 0.00 2019-12-05 00:56:29 2019-12-05 02:09:39 t 1 1 185160 658 0.00 2019-12-05 02:11:17 2019-12-05 02:11:36 t 1 1 185162 627 0.00 2019-12-05 02:11:04 2019-12-05 02:12:04 t 1 1 185163 514 0.00 2019-12-05 01:59:56 2019-12-05 02:12:28 t 1 1 185171 562 0.00 2019-12-05 02:16:42 2019-12-05 02:16:56 t 1 1 185172 658 0.00 2019-12-05 02:18:01 2019-12-05 02:18:07 t 1 1 185178 679 0.00 2019-12-05 02:20:56 2019-12-05 02:21:16 t 1 1 185181 658 0.00 2019-12-05 02:21:19 2019-12-05 02:21:41 t 1 1 185185 679 0.00 2019-12-05 02:22:26 2019-12-05 02:22:41 t 1 1 185188 658 0.00 2019-12-05 02:24:15 2019-12-05 02:24:16 t 1 1 185191 658 0.00 2019-12-05 02:25:03 2019-12-05 02:25:19 t 1 1 185192 679 0.00 2019-12-05 02:23:23 2019-12-05 02:25:20 t 1 1 185194 514 0.00 2019-12-05 02:25:03 2019-12-05 02:26:25 t 1 1 185196 658 0.00 2019-12-05 02:26:53 2019-12-05 02:26:59 t 1 1 185201 658 0.00 2019-12-05 02:28:41 2019-12-05 02:28:57 t 1 1 185202 658 0.00 2019-12-05 02:30:21 2019-12-05 02:30:27 t 1 1 185207 658 0.00 2019-12-05 02:33:40 2019-12-05 02:33:46 t 1 1 185208 658 0.00 2019-12-05 02:34:44 2019-12-05 02:34:51 t 1 1 185210 687 0.00 2019-12-05 02:18:48 2019-12-05 02:36:25 t 1 1 185211 658 0.00 2019-12-05 02:36:49 2019-12-05 02:36:56 t 1 1 185212 658 0.00 2019-12-05 02:37:50 2019-12-05 02:37:57 t 1 1 185214 658 0.00 2019-12-05 02:38:17 2019-12-05 02:38:38 t 1 1 185216 658 0.00 2019-12-05 02:38:52 2019-12-05 02:38:59 t 1 1 185217 514 0.00 2019-12-05 02:38:38 2019-12-05 02:39:22 t 1 1 185224 658 0.00 2019-12-05 02:42:17 2019-12-05 02:42:49 t 1 1 185225 658 0.00 2019-12-05 02:43:10 2019-12-05 02:43:42 t 1 1 185229 514 0.00 2019-12-05 02:44:10 2019-12-05 02:46:46 t 1 1 185234 562 0.00 2019-12-05 02:48:48 2019-12-05 02:49:12 t 1 1 185240 658 0.00 2019-12-05 02:55:55 2019-12-05 02:56:01 t 1 1 185242 562 0.00 2019-12-05 02:59:37 2019-12-05 02:59:55 t 1 1 185248 658 0.00 2019-12-05 03:07:22 2019-12-05 03:07:26 t 1 1 185250 658 0.00 2019-12-05 03:08:22 2019-12-05 03:08:53 t 1 1 185253 658 0.00 2019-12-05 03:10:02 2019-12-05 03:10:08 t 1 1 185256 658 0.00 2019-12-05 03:11:04 2019-12-05 03:11:10 t 1 1 185257 658 0.00 2019-12-05 03:12:06 2019-12-05 03:12:12 t 1 1 185264 658 0.00 2019-12-05 03:15:23 2019-12-05 03:15:29 t 1 1 185265 658 0.00 2019-12-05 03:16:24 2019-12-05 03:16:30 t 1 1 185266 658 0.00 2019-12-05 03:17:28 2019-12-05 03:17:35 t 1 1 185267 658 0.00 2019-12-05 03:18:38 2019-12-05 03:18:58 t 1 1 185270 658 0.00 2019-12-05 03:21:07 2019-12-05 03:21:13 t 1 1 185271 562 0.00 2019-12-05 03:21:15 2019-12-05 03:21:25 t 1 1 185272 514 0.00 2019-12-05 03:15:16 2019-12-05 03:23:09 t 1 1 185273 658 0.00 2019-12-05 03:23:40 2019-12-05 03:24:01 t 1 1 185274 658 0.00 2019-12-05 03:24:07 2019-12-05 03:24:24 t 1 1 185276 687 0.00 2019-12-05 03:10:42 2019-12-05 03:25:14 t 1 1 185278 514 0.00 2019-12-05 03:23:08 2019-12-05 03:25:55 t 1 1 185279 658 0.00 2019-12-05 03:28:43 2019-12-05 03:29:03 t 1 1 185283 562 0.00 2019-12-05 03:32:01 2019-12-05 03:32:10 t 1 1 185284 658 0.00 2019-12-05 03:33:05 2019-12-05 03:33:07 t 1 1 185285 658 0.00 2019-12-05 03:33:29 2019-12-05 03:34:06 t 1 1 185289 658 0.00 2019-12-05 03:36:43 2019-12-05 03:36:49 t 1 1 185292 658 0.00 2019-12-05 03:38:47 2019-12-05 03:39:08 t 1 1 185228 658 0.00 2019-12-05 02:46:29 2019-12-05 02:46:44 t 1 1 185235 687 0.00 2019-12-05 02:36:38 2019-12-05 02:51:02 t 1 1 185239 658 0.00 2019-12-05 02:53:51 2019-12-05 02:53:57 t 1 1 185243 658 0.00 2019-12-05 02:58:55 2019-12-05 02:59:56 t 1 1 185245 658 0.00 2019-12-05 03:04:10 2019-12-05 03:04:16 t 1 1 185246 658 0.00 2019-12-05 03:05:02 2019-12-05 03:05:14 t 1 1 185252 687 0.00 2019-12-05 02:51:08 2019-12-05 03:09:53 t 1 1 185254 562 0.00 2019-12-05 03:10:31 2019-12-05 03:10:41 t 1 1 185255 658 0.00 2019-12-05 03:10:55 2019-12-05 03:10:59 t 1 1 185259 658 0.00 2019-12-05 03:13:08 2019-12-05 03:13:14 t 1 1 185260 658 0.00 2019-12-05 03:13:34 2019-12-05 03:14:16 t 1 1 185262 514 0.00 2019-12-05 02:49:03 2019-12-05 03:15:17 t 1 1 185268 658 0.00 2019-12-05 03:20:05 2019-12-05 03:20:12 t 1 1 185269 658 0.00 2019-12-05 03:19:04 2019-12-05 03:21:02 t 1 1 185277 658 0.00 2019-12-05 03:25:31 2019-12-05 03:25:33 t 1 1 185280 514 0.00 2019-12-05 03:25:55 2019-12-05 03:29:55 t 1 1 185282 658 0.00 2019-12-05 03:31:29 2019-12-05 03:31:35 t 1 1 185287 658 0.00 2019-12-05 03:35:13 2019-12-05 03:35:20 t 1 1 185288 658 0.00 2019-12-05 03:36:16 2019-12-05 03:36:22 t 1 1 185298 562 0.00 2019-12-05 03:42:32 2019-12-05 03:42:58 t 1 1 185299 658 0.00 2019-12-05 03:43:49 2019-12-05 03:44:10 t 1 1 185300 658 0.00 2019-12-05 03:44:16 2019-12-05 03:44:21 t 1 1 185301 658 0.00 2019-12-05 03:46:19 2019-12-05 03:46:25 t 1 1 185303 658 0.00 2019-12-05 03:45:18 2019-12-05 03:47:02 t 1 1 185304 658 0.00 2019-12-05 03:47:05 2019-12-05 03:47:21 t 1 1 185305 658 0.00 2019-12-05 03:47:27 2019-12-05 03:47:44 t 1 1 185307 658 0.00 2019-12-05 03:48:03 2019-12-05 03:48:09 t 1 1 185308 658 0.00 2019-12-05 03:48:14 2019-12-05 03:48:30 t 1 1 185313 514 0.00 2019-12-05 03:49:18 2019-12-05 03:53:14 t 1 1 185316 514 0.00 2019-12-05 03:53:14 2019-12-05 03:54:38 t 1 1 185322 658 0.00 2019-12-05 04:01:32 2019-12-05 04:01:48 t 1 1 185327 658 0.00 2019-12-05 04:08:48 2019-12-05 04:09:20 t 1 1 185329 658 0.00 2019-12-05 04:12:49 2019-12-05 04:13:24 t 1 1 185330 658 0.00 2019-12-05 04:13:53 2019-12-05 04:14:24 t 1 1 185334 637 0.00 2019-12-05 00:38:29 2019-12-05 04:20:47 t 1 1 185338 514 0.00 2019-12-05 04:21:30 2019-12-05 04:23:52 t 1 1 185339 658 0.00 2019-12-05 04:23:54 2019-12-05 04:24:26 t 1 1 185345 658 0.00 2019-12-05 04:33:13 2019-12-05 04:33:30 t 1 1 185347 658 0.00 2019-12-05 04:33:35 2019-12-05 04:33:52 t 1 1 185348 658 0.00 2019-12-05 04:34:12 2019-12-05 04:34:34 t 1 1 185349 514 0.00 2019-12-05 04:31:33 2019-12-05 04:38:16 t 1 1 185351 514 0.00 2019-12-05 04:38:16 2019-12-05 04:39:40 t 1 1 185357 445 0.00 2019-12-05 04:46:47 2019-12-05 04:46:47 f 1 1 185360 658 0.00 2019-12-05 04:49:45 2019-12-05 04:49:52 t 1 1 185364 658 0.00 2019-12-05 04:54:12 2019-12-05 04:54:44 t 1 1 185366 658 0.00 2019-12-05 04:54:50 2019-12-05 04:55:34 t 1 1 185368 658 0.00 2019-12-05 04:55:54 2019-12-05 04:56:10 t 1 1 185369 658 0.00 2019-12-05 04:56:54 2019-12-05 04:57:11 t 1 1 185374 658 0.00 2019-12-05 05:00:04 2019-12-05 05:00:23 t 1 1 185375 658 0.00 2019-12-05 05:01:41 2019-12-05 05:01:43 t 1 1 185377 562 0.00 2019-12-05 05:05:40 2019-12-05 05:05:51 t 1 1 185378 658 0.00 2019-12-05 05:06:22 2019-12-05 05:06:48 t 1 1 185381 514 0.00 2019-12-05 04:39:40 2019-12-05 05:14:45 t 1 1 185388 562 0.00 2019-12-05 05:27:11 2019-12-05 05:27:21 t 1 1 185395 658 0.00 2019-12-05 05:37:39 2019-12-05 05:38:11 t 1 1 185396 220 0.00 2019-12-05 05:35:02 2019-12-05 05:40:02 t 1 2 185400 658 0.00 2019-12-05 05:47:53 2019-12-05 05:48:16 t 1 1 185403 658 0.00 2019-12-05 05:52:56 2019-12-05 05:53:18 t 1 1 185404 658 0.00 2019-12-05 05:53:46 2019-12-05 05:54:02 t 1 1 185413 611 0.00 2019-12-05 06:03:17 2019-12-05 06:05:53 t 1 1 185414 538 0.00 2019-12-05 05:59:26 2019-12-05 06:06:28 t 1 1 185416 516 0.00 2019-12-05 06:00:10 2019-12-05 06:06:54 t 1 1 185418 658 0.00 2019-12-05 06:07:07 2019-12-05 06:07:13 t 1 1 185421 658 0.00 2019-12-05 06:09:34 2019-12-05 06:09:40 t 1 1 185423 562 0.00 2019-12-05 06:10:09 2019-12-05 06:10:23 t 1 1 185424 658 0.00 2019-12-05 06:11:52 2019-12-05 06:11:58 t 1 1 185426 658 0.00 2019-12-05 06:13:05 2019-12-05 06:13:26 t 1 1 185434 658 0.00 2019-12-05 06:21:49 2019-12-05 06:22:16 t 1 1 185443 485 0.00 2019-12-05 06:37:10 2019-12-05 06:48:04 t 1 1 185444 566 0.00 2019-12-05 06:33:59 2019-12-05 06:48:19 t 1 1 185447 566 0.00 2019-12-05 06:48:19 2019-12-05 06:56:11 t 1 1 185449 689 0.00 2019-12-05 06:57:43 2019-12-05 07:00:01 t 1 1 185452 689 0.00 2019-12-05 07:03:39 2019-12-05 07:03:46 t 1 1 185454 562 0.00 2019-12-05 07:03:56 2019-12-05 07:04:06 t 1 1 185456 689 0.00 2019-12-05 07:04:53 2019-12-05 07:07:24 t 1 1 185457 689 0.00 2019-12-05 07:07:33 2019-12-05 07:08:34 t 1 1 185458 566 0.00 2019-12-05 07:05:50 2019-12-05 07:09:23 t 1 1 185461 562 0.00 2019-12-05 07:11:42 2019-12-05 07:11:53 t 1 1 185462 689 0.00 2019-12-05 07:11:23 2019-12-05 07:12:22 t 1 1 185466 516 0.00 2019-12-05 07:16:14 2019-12-05 07:18:55 t 1 1 185469 562 0.00 2019-12-05 07:20:25 2019-12-05 07:21:17 t 1 1 185472 689 0.00 2019-12-05 07:26:25 2019-12-05 07:26:32 t 1 1 185473 611 0.00 2019-12-05 07:21:03 2019-12-05 07:29:38 t 1 1 185477 591 0.00 2019-12-05 07:00:11 2019-12-05 07:37:46 t 1 1 185479 514 0.00 2019-12-05 07:40:51 2019-12-05 07:41:53 t 1 1 185488 591 0.00 2019-12-05 07:50:59 2019-12-05 07:54:02 t 1 1 185489 689 0.00 2019-12-05 07:54:09 2019-12-05 07:54:49 t 1 1 185494 689 0.00 2019-12-05 07:56:07 2019-12-05 07:56:36 t 1 1 185495 689 0.00 2019-12-05 07:56:47 2019-12-05 07:57:09 t 1 1 185496 220 0.00 2019-12-05 07:56:37 2019-12-05 07:57:20 t 1 1 185500 689 0.00 2019-12-05 07:59:38 2019-12-05 07:59:46 t 1 1 185501 520 0.00 2019-12-05 07:37:53 2019-12-05 08:00:25 t 1 1 185506 689 0.00 2019-12-05 08:04:46 2019-12-05 08:04:54 t 1 1 185508 220 0.00 2019-12-05 08:07:10 2019-12-05 08:07:24 t 1 1 185510 689 0.00 2019-12-05 08:09:51 2019-12-05 08:09:59 t 1 1 185512 689 0.00 2019-12-05 08:10:59 2019-12-05 08:11:21 t 1 1 185514 689 0.00 2019-12-05 08:11:31 2019-12-05 08:11:54 t 1 1 185516 516 0.00 2019-12-05 08:11:00 2019-12-05 08:14:04 t 1 1 185520 615 0.00 2019-12-05 08:13:00 2019-12-05 08:15:31 t 1 1 185522 562 0.00 2019-12-05 08:15:23 2019-12-05 08:16:26 t 1 1 185532 687 0.00 2019-12-05 07:50:52 2019-12-05 08:22:56 t 1 1 185533 611 0.00 2019-12-05 08:17:29 2019-12-05 08:22:57 t 1 1 185535 689 0.00 2019-12-05 08:25:17 2019-12-05 08:25:19 t 1 1 185536 673 0.00 2019-12-05 08:24:27 2019-12-05 08:26:01 t 1 1 185538 562 0.00 2019-12-05 08:21:30 2019-12-05 08:26:22 t 1 1 185542 220 0.00 2019-12-05 08:28:12 2019-12-05 08:28:44 t 1 1 185551 220 0.00 2019-12-05 08:38:44 2019-12-05 08:38:59 t 1 1 185294 658 0.00 2019-12-05 03:40:30 2019-12-05 03:40:37 t 1 1 185297 658 0.00 2019-12-05 03:42:40 2019-12-05 03:42:45 t 1 1 185302 658 0.00 2019-12-05 03:46:31 2019-12-05 03:46:42 t 1 1 185309 658 0.00 2019-12-05 03:48:44 2019-12-05 03:49:14 t 1 1 185312 658 0.00 2019-12-05 03:50:46 2019-12-05 03:51:08 t 1 1 185318 687 0.00 2019-12-05 03:36:59 2019-12-05 03:55:46 t 1 1 185319 514 0.00 2019-12-05 03:54:38 2019-12-05 03:56:49 t 1 1 185320 514 0.00 2019-12-05 03:56:49 2019-12-05 03:57:54 t 1 1 185321 658 0.00 2019-12-05 03:58:56 2019-12-05 03:59:16 t 1 1 185323 658 0.00 2019-12-05 04:03:49 2019-12-05 04:04:19 t 1 1 185325 625 0.00 2019-12-05 03:54:18 2019-12-05 04:06:55 t 1 1 185326 658 0.00 2019-12-05 04:07:51 2019-12-05 04:07:57 t 1 1 185331 562 0.00 2019-12-05 04:14:50 2019-12-05 04:15:12 t 1 1 185333 658 0.00 2019-12-05 04:20:04 2019-12-05 04:20:20 t 1 1 185340 658 0.00 2019-12-05 04:24:32 2019-12-05 04:24:47 t 1 1 185343 658 0.00 2019-12-05 04:29:10 2019-12-05 04:29:32 t 1 1 185346 562 0.00 2019-12-05 04:33:24 2019-12-05 04:33:40 t 1 1 185353 658 0.00 2019-12-05 04:43:12 2019-12-05 04:43:19 t 1 1 185355 658 0.00 2019-12-05 04:44:17 2019-12-05 04:44:39 t 1 1 185358 445 0.00 2019-12-05 04:46:58 2019-12-05 04:46:58 f 1 1 185361 658 0.00 2019-12-05 04:51:48 2019-12-05 04:51:50 t 1 1 185362 658 0.00 2019-12-05 04:52:48 2019-12-05 04:52:54 t 1 1 185363 658 0.00 2019-12-05 04:54:04 2019-12-05 04:54:07 t 1 1 185365 562 0.00 2019-12-05 04:54:44 2019-12-05 04:55:05 t 1 1 185371 658 0.00 2019-12-05 04:57:34 2019-12-05 04:57:49 t 1 1 185372 658 0.00 2019-12-05 04:58:18 2019-12-05 04:58:24 t 1 1 185373 658 0.00 2019-12-05 04:59:09 2019-12-05 04:59:44 t 1 1 185376 658 0.00 2019-12-05 05:04:23 2019-12-05 05:04:50 t 1 1 185385 658 0.00 2019-12-05 05:21:34 2019-12-05 05:21:49 t 1 1 185386 658 0.00 2019-12-05 05:22:40 2019-12-05 05:23:02 t 1 1 185387 514 0.00 2019-12-05 05:21:34 2019-12-05 05:23:57 t 1 1 185389 658 0.00 2019-12-05 05:27:45 2019-12-05 05:28:04 t 1 1 185390 658 0.00 2019-12-05 05:28:39 2019-12-05 05:28:42 t 1 1 185391 514 0.00 2019-12-05 05:23:57 2019-12-05 05:29:20 t 1 1 185394 562 0.00 2019-12-05 05:37:46 2019-12-05 05:38:05 t 1 1 185397 658 0.00 2019-12-05 05:41:20 2019-12-05 05:41:23 t 1 1 185402 658 0.00 2019-12-05 05:48:51 2019-12-05 05:48:54 t 1 1 185406 658 0.00 2019-12-05 05:57:50 2019-12-05 05:58:22 t 1 1 185408 562 0.00 2019-12-05 05:59:26 2019-12-05 05:59:35 t 1 1 185409 658 0.00 2019-12-05 06:03:07 2019-12-05 06:03:39 t 1 1 185412 658 0.00 2019-12-05 06:05:03 2019-12-05 06:05:19 t 1 1 185415 658 0.00 2019-12-05 06:05:58 2019-12-05 06:06:46 t 1 1 185422 514 0.00 2019-12-05 05:29:19 2019-12-05 06:10:20 t 1 1 185427 658 0.00 2019-12-05 06:13:32 2019-12-05 06:13:38 t 1 1 185430 658 0.00 2019-12-05 06:18:17 2019-12-05 06:18:23 t 1 1 185431 658 0.00 2019-12-05 06:20:23 2019-12-05 06:20:28 t 1 1 185433 514 0.00 2019-12-05 06:10:19 2019-12-05 06:21:58 t 1 1 185437 516 0.00 2019-12-05 06:29:41 2019-12-05 06:30:58 t 1 1 185438 562 0.00 2019-12-05 06:31:39 2019-12-05 06:31:56 t 1 1 185439 566 0.00 2019-12-05 00:06:06 2019-12-05 06:33:59 t 1 1 185442 562 0.00 2019-12-05 06:42:13 2019-12-05 06:42:33 t 1 1 185446 562 0.00 2019-12-05 06:53:00 2019-12-05 06:53:22 t 1 1 185448 520 0.00 2019-12-05 06:26:40 2019-12-05 06:59:55 t 1 1 185450 689 0.00 2019-12-05 07:00:12 2019-12-05 07:00:34 t 1 1 185453 516 0.00 2019-12-05 07:01:33 2019-12-05 07:04:00 t 1 1 185455 566 0.00 2019-12-05 06:56:11 2019-12-05 07:05:50 t 1 1 185460 689 0.00 2019-12-05 07:09:55 2019-12-05 07:11:13 t 1 1 185464 516 0.00 2019-12-05 07:12:20 2019-12-05 07:15:12 t 1 1 185467 689 0.00 2019-12-05 07:13:35 2019-12-05 07:19:53 t 1 1 185468 611 0.00 2019-12-05 07:15:57 2019-12-05 07:21:03 t 1 1 185470 689 0.00 2019-12-05 07:20:01 2019-12-05 07:21:26 t 1 1 185476 707 0.00 2019-12-05 07:37:14 2019-12-05 07:37:22 t 1 1 185480 538 0.00 2019-12-05 07:37:55 2019-12-05 07:43:31 t 1 1 185481 591 0.00 2019-12-05 07:39:58 2019-12-05 07:44:20 t 1 1 185482 611 0.00 2019-12-05 07:43:46 2019-12-05 07:45:47 t 1 1 185484 562 0.00 2019-12-05 07:41:25 2019-12-05 07:49:01 t 1 1 185490 689 0.00 2019-12-05 07:54:59 2019-12-05 07:55:02 t 1 1 185493 689 0.00 2019-12-05 07:55:13 2019-12-05 07:55:58 t 1 1 185498 645 0.00 2019-12-05 07:51:36 2019-12-05 07:58:01 t 1 1 185499 562 0.00 2019-12-05 07:49:01 2019-12-05 07:59:04 t 1 1 185503 689 0.00 2019-12-05 08:02:10 2019-12-05 08:02:23 t 1 1 185505 689 0.00 2019-12-05 08:02:59 2019-12-05 08:03:22 t 1 1 185507 562 0.00 2019-12-05 07:59:04 2019-12-05 08:05:18 t 1 1 185515 562 0.00 2019-12-05 08:13:11 2019-12-05 08:13:23 t 1 1 185517 514 0.00 2019-12-05 07:56:02 2019-12-05 08:14:45 t 1 1 185519 689 0.00 2019-12-05 08:14:58 2019-12-05 08:15:06 t 1 1 185523 220 0.00 2019-12-05 08:17:40 2019-12-05 08:17:58 t 1 1 185525 689 0.00 2019-12-05 08:17:59 2019-12-05 08:18:39 t 1 1 185527 707 0.00 2019-12-05 07:37:22 2019-12-05 08:19:24 t 1 1 185528 689 0.00 2019-12-05 08:19:32 2019-12-05 08:20:15 t 1 1 185529 645 0.00 2019-12-05 08:03:56 2019-12-05 08:20:25 t 1 1 185539 673 0.00 2019-12-05 08:26:24 2019-12-05 08:26:39 t 1 1 185543 562 0.00 2019-12-05 08:28:41 2019-12-05 08:29:13 t 1 1 185545 514 0.00 2019-12-05 08:16:44 2019-12-05 08:30:16 t 1 1 185546 689 0.00 2019-12-05 08:29:07 2019-12-05 08:31:13 t 1 1 185547 490 0.00 2019-12-05 08:27:00 2019-12-05 08:35:49 t 1 1 185550 562 0.00 2019-12-05 08:32:16 2019-12-05 08:36:48 t 1 1 185552 562 0.00 2019-12-05 08:42:58 2019-12-05 08:43:25 t 1 1 185553 591 0.00 2019-12-05 08:34:21 2019-12-05 08:45:46 t 1 1 185554 611 0.00 2019-12-05 08:36:23 2019-12-05 08:45:54 t 1 1 185555 687 0.00 2019-12-05 08:31:33 2019-12-05 08:46:06 t 1 1 185556 562 0.00 2019-12-05 08:44:58 2019-12-05 08:47:08 t 1 1 185557 615 0.00 2019-12-05 08:35:07 2019-12-05 08:47:17 t 1 1 185558 707 0.00 2019-12-05 08:22:13 2019-12-05 08:48:53 t 1 1 185560 665 0.00 2019-12-05 08:43:16 2019-12-05 08:49:11 t 1 1 185562 516 0.00 2019-12-05 08:47:24 2019-12-05 08:49:28 t 1 1 185563 516 0.00 2019-12-05 08:50:39 2019-12-05 08:51:28 t 1 1 185564 591 0.00 2019-12-05 08:48:56 2019-12-05 08:52:25 t 1 1 185565 562 0.00 2019-12-05 08:53:38 2019-12-05 08:54:18 t 1 1 185566 516 0.00 2019-12-05 08:51:51 2019-12-05 08:54:38 t 1 1 185567 220 0.00 2019-12-05 08:55:43 2019-12-05 08:55:52 t 1 1 185568 220 0.00 2019-12-05 08:56:09 2019-12-05 08:56:24 t 1 1 185570 625 0.00 2019-12-05 08:57:23 2019-12-05 08:58:32 t 1 1 185572 562 0.00 2019-12-05 08:57:19 2019-12-05 08:59:11 t 1 1 185574 611 0.00 2019-12-05 08:45:54 2019-12-05 09:01:00 t 1 1 185575 611 0.00 2019-12-05 09:01:21 2019-12-05 09:02:32 t 1 1 185576 562 0.00 2019-12-05 09:02:12 2019-12-05 09:02:49 t 1 1 185295 514 0.00 2019-12-05 03:29:55 2019-12-05 03:40:41 t 1 1 185296 658 0.00 2019-12-05 03:41:36 2019-12-05 03:41:41 t 1 1 185306 658 0.00 2019-12-05 03:47:43 2019-12-05 03:47:49 t 1 1 185310 514 0.00 2019-12-05 03:40:41 2019-12-05 03:49:18 t 1 1 185311 658 0.00 2019-12-05 03:50:07 2019-12-05 03:50:10 t 1 1 185314 562 0.00 2019-12-05 03:53:31 2019-12-05 03:53:46 t 1 1 185315 658 0.00 2019-12-05 03:53:43 2019-12-05 03:54:20 t 1 1 185317 658 0.00 2019-12-05 03:55:14 2019-12-05 03:55:20 t 1 1 185324 562 0.00 2019-12-05 04:04:07 2019-12-05 04:04:25 t 1 1 185328 658 0.00 2019-12-05 04:11:06 2019-12-05 04:11:13 t 1 1 185332 658 0.00 2019-12-05 04:19:06 2019-12-05 04:19:29 t 1 1 185335 514 0.00 2019-12-05 03:57:54 2019-12-05 04:21:30 t 1 1 185336 562 0.00 2019-12-05 04:22:24 2019-12-05 04:22:48 t 1 1 185337 658 0.00 2019-12-05 04:23:35 2019-12-05 04:23:41 t 1 1 185341 514 0.00 2019-12-05 04:23:52 2019-12-05 04:27:16 t 1 1 185342 658 0.00 2019-12-05 04:28:05 2019-12-05 04:28:12 t 1 1 185344 514 0.00 2019-12-05 04:27:16 2019-12-05 04:31:33 t 1 1 185350 658 0.00 2019-12-05 04:39:05 2019-12-05 04:39:37 t 1 1 185352 658 0.00 2019-12-05 04:41:12 2019-12-05 04:41:15 t 1 1 185354 562 0.00 2019-12-05 04:43:59 2019-12-05 04:44:20 t 1 1 185356 658 0.00 2019-12-05 04:46:16 2019-12-05 04:46:32 t 1 1 185359 658 0.00 2019-12-05 04:49:07 2019-12-05 04:49:40 t 1 1 185367 658 0.00 2019-12-05 04:55:33 2019-12-05 04:55:49 t 1 1 185370 658 0.00 2019-12-05 04:57:16 2019-12-05 04:57:34 t 1 1 185379 658 0.00 2019-12-05 05:10:29 2019-12-05 05:10:46 t 1 1 185380 658 0.00 2019-12-05 05:11:36 2019-12-05 05:11:58 t 1 1 185382 658 0.00 2019-12-05 05:15:38 2019-12-05 05:16:04 t 1 1 185383 562 0.00 2019-12-05 05:16:25 2019-12-05 05:16:36 t 1 1 185384 514 0.00 2019-12-05 05:14:45 2019-12-05 05:21:34 t 1 1 185392 658 0.00 2019-12-05 05:31:39 2019-12-05 05:31:56 t 1 1 185393 658 0.00 2019-12-05 05:32:45 2019-12-05 05:33:10 t 1 1 185398 658 0.00 2019-12-05 05:41:43 2019-12-05 05:41:47 t 1 1 185399 658 0.00 2019-12-05 05:42:53 2019-12-05 05:43:16 t 1 1 185401 562 0.00 2019-12-05 05:48:30 2019-12-05 05:48:51 t 1 1 185405 520 0.00 2019-12-05 05:54:10 2019-12-05 05:56:29 t 1 1 185407 658 0.00 2019-12-05 05:59:05 2019-12-05 05:59:12 t 1 1 185410 658 0.00 2019-12-05 06:03:53 2019-12-05 06:04:00 t 1 1 185411 658 0.00 2019-12-05 06:04:21 2019-12-05 06:04:38 t 1 1 185417 658 0.00 2019-12-05 06:06:46 2019-12-05 06:07:02 t 1 1 185419 658 0.00 2019-12-05 06:07:27 2019-12-05 06:08:27 t 1 1 185420 658 0.00 2019-12-05 06:08:33 2019-12-05 06:09:33 t 1 1 185425 516 0.00 2019-12-05 06:13:01 2019-12-05 06:13:13 t 1 1 185428 516 0.00 2019-12-05 06:15:25 2019-12-05 06:16:14 t 1 1 185429 658 0.00 2019-12-05 06:16:17 2019-12-05 06:16:56 t 1 1 185432 562 0.00 2019-12-05 06:20:43 2019-12-05 06:21:04 t 1 1 185435 514 0.00 2019-12-05 06:21:57 2019-12-05 06:23:40 t 1 1 185436 520 0.00 2019-12-05 05:56:29 2019-12-05 06:26:40 t 1 1 185440 220 0.00 2019-12-05 06:18:52 2019-12-05 06:37:25 t 1 1 185441 516 0.00 2019-12-05 06:38:08 2019-12-05 06:38:55 t 1 1 185445 485 0.00 2019-12-05 06:48:04 2019-12-05 06:49:45 t 1 1 185451 520 0.00 2019-12-05 06:59:55 2019-12-05 07:03:24 t 1 1 185459 689 0.00 2019-12-05 07:08:44 2019-12-05 07:09:46 t 1 1 185463 545 0.00 2019-12-05 06:49:10 2019-12-05 07:15:05 t 1 1 185465 562 0.00 2019-12-05 07:16:49 2019-12-05 07:18:05 t 1 1 185471 689 0.00 2019-12-05 07:23:21 2019-12-05 07:25:07 t 1 1 185474 514 0.00 2019-12-05 06:23:39 2019-12-05 07:32:00 t 1 1 185475 514 0.00 2019-12-05 07:33:50 2019-12-05 07:35:11 t 1 1 185478 562 0.00 2019-12-05 07:27:03 2019-12-05 07:41:25 t 1 1 185483 538 0.00 2019-12-05 07:43:30 2019-12-05 07:48:42 t 1 1 185485 689 0.00 2019-12-05 07:27:19 2019-12-05 07:49:06 t 1 1 185486 689 0.00 2019-12-05 07:51:49 2019-12-05 07:52:08 t 1 1 185487 689 0.00 2019-12-05 07:52:17 2019-12-05 07:52:39 t 1 1 185491 514 0.00 2019-12-05 07:42:55 2019-12-05 07:55:18 t 1 1 185492 691 0.00 2019-12-05 07:33:27 2019-12-05 07:55:23 t 1 1 185497 689 0.00 2019-12-05 07:57:19 2019-12-05 07:57:41 t 1 1 185502 637 0.00 2019-12-05 04:20:47 2019-12-05 08:01:07 t 1 1 185504 689 0.00 2019-12-05 08:02:37 2019-12-05 08:02:52 t 1 1 185509 562 0.00 2019-12-05 08:05:18 2019-12-05 08:08:12 t 1 1 185511 689 0.00 2019-12-05 08:10:26 2019-12-05 08:10:50 t 1 1 185513 562 0.00 2019-12-05 08:08:54 2019-12-05 08:11:25 t 1 1 185518 673 0.00 2019-12-05 07:47:09 2019-12-05 08:15:06 t 1 1 185521 611 0.00 2019-12-05 08:02:53 2019-12-05 08:15:53 t 1 1 185524 481 0.00 2019-12-05 07:58:20 2019-12-05 08:18:15 t 1 1 185526 689 0.00 2019-12-05 08:18:39 2019-12-05 08:19:22 t 1 1 185530 562 0.00 2019-12-05 08:19:46 2019-12-05 08:21:17 t 1 1 185531 637 0.00 2019-12-05 08:10:58 2019-12-05 08:22:30 t 1 1 185534 645 0.00 2019-12-05 08:20:25 2019-12-05 08:24:58 t 1 1 185537 481 0.00 2019-12-05 08:18:15 2019-12-05 08:26:14 t 1 1 185540 687 0.00 2019-12-05 08:22:56 2019-12-05 08:28:02 t 1 1 185541 562 0.00 2019-12-05 08:27:46 2019-12-05 08:28:30 t 1 1 185544 615 0.00 2019-12-05 08:22:10 2019-12-05 08:29:21 t 1 1 185548 516 0.00 2019-12-05 08:31:26 2019-12-05 08:35:53 t 1 1 185549 611 0.00 2019-12-05 08:22:57 2019-12-05 08:36:24 t 1 1 185559 591 0.00 2019-12-05 08:45:50 2019-12-05 08:48:56 t 1 1 185561 220 0.00 2019-12-05 08:49:14 2019-12-05 08:49:16 t 1 1 185569 625 0.00 2019-12-05 08:05:15 2019-12-05 08:57:23 t 1 1 185571 591 0.00 2019-12-05 08:54:07 2019-12-05 08:58:56 t 1 1 185573 562 0.00 2019-12-05 08:59:40 2019-12-05 09:00:55 t 1 1 185577 611 0.00 2019-12-05 09:03:06 2019-12-05 09:04:53 t 1 1 185578 562 0.00 2019-12-05 09:06:10 2019-12-05 09:06:41 t 1 1 185579 220 0.00 2019-12-05 09:06:41 2019-12-05 09:06:56 t 1 1 185580 637 0.00 2019-12-05 08:22:30 2019-12-05 09:07:23 t 1 1 185581 538 0.00 2019-12-05 08:35:52 2019-12-05 09:10:02 t 1 1 185582 611 0.00 2019-12-05 09:04:57 2019-12-05 09:11:07 t 1 1 185583 611 0.00 2019-12-05 09:11:07 2019-12-05 09:12:45 t 1 1 185584 645 0.00 2019-12-05 09:09:35 2019-12-05 09:14:29 t 1 1 185585 611 0.00 2019-12-05 09:13:13 2019-12-05 09:15:49 t 1 1 185586 562 0.00 2019-12-05 09:09:39 2019-12-05 09:17:00 t 1 1 185587 220 0.00 2019-12-05 09:17:12 2019-12-05 09:17:27 t 1 1 185588 611 0.00 2019-12-05 09:15:49 2019-12-05 09:18:40 t 1 1 185589 562 0.00 2019-12-05 09:18:49 2019-12-05 09:18:57 t 1 1 185590 591 0.00 2019-12-05 09:01:08 2019-12-05 09:21:53 t 1 1 185591 611 0.00 2019-12-05 09:18:56 2019-12-05 09:23:01 t 1 1 185592 615 0.00 2019-12-05 09:15:27 2019-12-05 09:23:33 t 1 1 185593 220 0.00 2019-12-05 09:23:55 2019-12-05 09:24:09 t 1 1 185594 637 0.00 2019-12-05 09:07:23 2019-12-05 09:26:04 t 1 1 185595 611 0.00 2019-12-05 09:24:00 2019-12-05 09:26:44 t 1 1 185596 591 0.00 2019-12-05 09:21:52 2019-12-05 09:27:21 t 1 1 185599 591 0.00 2019-12-05 09:27:50 2019-12-05 09:29:54 t 1 1 185600 679 0.00 2019-12-05 09:27:56 2019-12-05 09:30:28 t 1 1 185602 611 0.00 2019-12-05 09:27:19 2019-12-05 09:31:53 t 1 1 185606 220 0.00 2019-12-05 09:34:49 2019-12-05 09:35:49 t 1 1 185609 707 0.00 2019-12-05 08:48:53 2019-12-05 09:39:45 t 1 1 185610 591 0.00 2019-12-05 09:37:06 2019-12-05 09:41:11 t 1 1 185611 514 0.00 2019-12-05 09:33:31 2019-12-05 09:42:34 t 1 1 185615 665 0.00 2019-12-05 09:25:08 2019-12-05 09:44:59 t 1 1 185618 637 0.00 2019-12-05 09:30:32 2019-12-05 09:45:52 t 1 1 185623 220 0.00 2019-12-05 09:53:49 2019-12-05 09:53:58 t 1 1 185624 581 0.00 2019-12-05 09:47:00 2019-12-05 09:55:38 t 1 1 185631 220 0.00 2019-12-05 10:00:49 2019-12-05 10:01:07 t 1 1 185633 707 0.00 2019-12-05 09:51:08 2019-12-05 10:02:56 t 1 1 185636 671 0.00 2019-12-05 10:00:33 2019-12-05 10:03:02 t 1 1 185638 615 0.00 2019-12-05 09:45:56 2019-12-05 10:03:20 t 1 1 185640 611 0.00 2019-12-05 09:55:31 2019-12-05 10:06:27 t 1 1 185642 615 0.00 2019-12-05 10:03:20 2019-12-05 10:08:07 t 1 1 185643 665 0.00 2019-12-05 09:56:55 2019-12-05 10:10:30 t 1 1 185644 220 0.00 2019-12-05 10:11:28 2019-12-05 10:11:43 t 1 1 185646 665 0.00 2019-12-05 10:10:30 2019-12-05 10:12:38 t 1 1 185649 514 0.00 2019-12-05 10:02:57 2019-12-05 10:14:16 t 1 1 185652 520 0.00 2019-12-05 09:57:21 2019-12-05 10:16:47 t 1 1 185655 562 0.00 2019-12-05 10:20:52 2019-12-05 10:21:03 t 1 1 185658 220 0.00 2019-12-05 10:22:00 2019-12-05 10:22:15 t 1 1 185661 707 0.00 2019-12-05 10:02:55 2019-12-05 10:26:31 t 1 1 185662 611 0.00 2019-12-05 10:24:45 2019-12-05 10:26:52 t 1 1 185664 581 0.00 2019-12-05 10:26:43 2019-12-05 10:28:47 t 1 1 185669 649 0.00 2019-12-05 10:26:10 2019-12-05 10:34:43 t 1 1 185671 696 0.00 2019-12-05 10:25:55 2019-12-05 10:37:10 t 1 1 185677 562 0.00 2019-12-05 10:43:09 2019-12-05 10:43:18 t 1 1 185681 514 0.00 2019-12-05 10:21:15 2019-12-05 10:46:02 t 1 1 185683 578 0.00 2019-12-05 10:38:33 2019-12-05 10:47:18 t 1 1 185687 538 0.00 2019-12-05 10:32:24 2019-12-05 10:49:12 t 1 1 185689 562 0.00 2019-12-05 10:49:25 2019-12-05 10:50:11 t 1 1 185691 422 0.00 2019-12-05 10:50:29 2019-12-05 10:50:29 f 1 1 185699 679 0.00 2019-12-05 10:51:48 2019-12-05 10:53:29 t 1 1 185703 679 0.00 2019-12-05 10:54:30 2019-12-05 10:54:44 t 1 1 185704 611 0.00 2019-12-05 10:43:18 2019-12-05 10:54:54 t 1 1 185706 679 0.00 2019-12-05 10:55:11 2019-12-05 10:55:27 t 1 1 185708 562 0.00 2019-12-05 10:55:16 2019-12-05 10:55:49 t 1 1 185712 711 0.00 2019-12-05 10:50:39 2019-12-05 10:56:52 t 1 1 185714 679 0.00 2019-12-05 10:56:59 2019-12-05 10:57:14 t 1 1 185715 679 0.00 2019-12-05 10:57:19 2019-12-05 10:57:35 t 1 1 185722 679 0.00 2019-12-05 10:59:25 2019-12-05 10:59:45 t 1 1 185724 562 0.00 2019-12-05 10:59:28 2019-12-05 10:59:50 t 1 1 185727 679 0.00 2019-12-05 11:00:37 2019-12-05 11:00:53 t 1 1 185729 679 0.00 2019-12-05 11:00:59 2019-12-05 11:01:14 t 1 1 185732 679 0.00 2019-12-05 11:01:42 2019-12-05 11:01:58 t 1 1 185734 679 0.00 2019-12-05 11:02:03 2019-12-05 11:02:18 t 1 1 185735 679 0.00 2019-12-05 11:02:24 2019-12-05 11:02:35 t 1 1 185737 611 0.00 2019-12-05 11:01:42 2019-12-05 11:03:22 t 1 1 185739 679 0.00 2019-12-05 11:03:38 2019-12-05 11:03:49 t 1 1 185742 679 0.00 2019-12-05 11:04:35 2019-12-05 11:05:28 t 1 1 185747 679 0.00 2019-12-05 11:06:15 2019-12-05 11:06:31 t 1 1 185749 679 0.00 2019-12-05 11:06:37 2019-12-05 11:06:54 t 1 1 185750 667 0.00 2019-12-05 10:58:14 2019-12-05 11:07:05 t 1 1 185752 562 0.00 2019-12-05 11:06:59 2019-12-05 11:07:22 t 1 1 185760 615 0.00 2019-12-05 11:07:48 2019-12-05 11:10:10 t 1 1 185764 679 0.00 2019-12-05 11:11:00 2019-12-05 11:11:15 t 1 1 185765 679 0.00 2019-12-05 11:11:21 2019-12-05 11:11:36 t 1 1 185772 679 0.00 2019-12-05 11:13:26 2019-12-05 11:14:20 t 1 1 185773 622 0.00 2019-12-05 10:26:54 2019-12-05 11:14:28 t 1 1 185775 679 0.00 2019-12-05 11:14:26 2019-12-05 11:14:41 t 1 1 185776 679 0.00 2019-12-05 11:14:46 2019-12-05 11:15:02 t 1 1 185780 679 0.00 2019-12-05 11:15:55 2019-12-05 11:16:10 t 1 1 185781 679 0.00 2019-12-05 11:16:15 2019-12-05 11:16:30 t 1 1 185784 665 0.00 2019-12-05 10:52:40 2019-12-05 11:17:10 t 1 1 185786 637 0.00 2019-12-05 11:16:41 2019-12-05 11:18:11 t 1 1 185787 673 0.00 2019-12-05 11:17:43 2019-12-05 11:18:55 t 1 1 185788 544 0.00 2019-12-05 11:01:44 2019-12-05 11:19:53 t 1 1 185794 220 0.00 2019-12-05 11:09:18 2019-12-05 11:27:42 t 1 2 185800 679 0.00 2019-12-05 11:29:13 2019-12-05 11:30:16 t 1 1 185803 637 0.00 2019-12-05 11:18:11 2019-12-05 11:30:32 t 1 1 185806 591 0.00 2019-12-05 11:32:37 2019-12-05 11:34:38 t 1 1 185808 622 0.00 2019-12-05 11:14:53 2019-12-05 11:34:56 t 1 1 185815 722 0.00 2019-12-05 11:37:19 2019-12-05 11:39:48 t 1 1 185822 591 0.00 2019-12-05 11:43:06 2019-12-05 11:44:26 t 1 1 185824 720 0.00 2019-12-05 11:40:41 2019-12-05 11:44:51 t 1 1 185829 722 0.00 2019-12-05 11:48:44 2019-12-05 11:48:54 t 1 1 185832 544 0.00 2019-12-05 11:31:43 2019-12-05 11:49:43 t 1 1 185834 722 0.00 2019-12-05 11:49:02 2019-12-05 11:50:09 t 1 1 185837 722 0.00 2019-12-05 11:51:34 2019-12-05 11:52:01 t 1 1 185839 722 0.00 2019-12-05 11:53:29 2019-12-05 11:53:53 t 1 1 185841 562 0.00 2019-12-05 11:47:37 2019-12-05 11:54:35 t 1 1 185845 722 0.00 2019-12-05 11:56:48 2019-12-05 11:56:50 t 1 1 185847 562 0.00 2019-12-05 11:56:56 2019-12-05 11:57:23 t 1 1 185849 637 0.00 2019-12-05 11:56:44 2019-12-05 11:57:54 t 1 1 185856 220 0.00 2019-12-05 12:00:17 2019-12-05 12:02:44 t 1 1 185857 639 0.00 2019-12-05 12:03:24 2019-12-05 12:03:53 t 1 1 185862 514 0.00 2019-12-05 11:59:11 2019-12-05 12:06:27 t 1 1 185863 544 0.00 2019-12-05 11:49:43 2019-12-05 12:07:21 t 1 1 185864 611 0.00 2019-12-05 11:58:32 2019-12-05 12:08:58 t 1 1 185867 637 0.00 2019-12-05 12:09:03 2019-12-05 12:10:21 t 1 1 185869 514 0.00 2019-12-05 12:06:27 2019-12-05 12:10:33 t 1 1 185872 611 0.00 2019-12-05 12:08:58 2019-12-05 12:13:24 t 1 1 185875 611 0.00 2019-12-05 12:13:23 2019-12-05 12:14:35 t 1 1 185877 514 0.00 2019-12-05 12:10:32 2019-12-05 12:14:56 t 1 1 185878 562 0.00 2019-12-05 12:14:48 2019-12-05 12:15:17 t 1 1 185879 722 0.00 2019-12-05 12:13:33 2019-12-05 12:15:24 t 1 1 185881 615 0.00 2019-12-05 12:07:36 2019-12-05 12:15:47 t 1 1 185884 611 0.00 2019-12-05 12:14:35 2019-12-05 12:17:53 t 1 1 185890 637 0.00 2019-12-05 12:19:58 2019-12-05 12:21:11 t 1 1 185893 673 0.00 2019-12-05 12:21:59 2019-12-05 12:23:53 t 1 1 185894 514 0.00 2019-12-05 12:20:22 2019-12-05 12:27:25 t 1 1 185896 637 0.00 2019-12-05 12:21:11 2019-12-05 12:28:01 t 1 1 185903 562 0.00 2019-12-05 12:23:53 2019-12-05 12:30:53 t 1 1 185597 667 0.00 2019-12-05 09:28:06 2019-12-05 09:29:10 t 1 2 185598 562 0.00 2019-12-05 09:29:35 2019-12-05 09:29:42 t 1 1 185603 667 0.00 2019-12-05 09:30:56 2019-12-05 09:32:03 t 1 2 185604 667 0.00 2019-12-05 09:32:38 2019-12-05 09:33:41 t 1 2 185605 220 0.00 2019-12-05 09:34:26 2019-12-05 09:34:41 t 1 1 185607 562 0.00 2019-12-05 09:37:15 2019-12-05 09:37:24 t 1 1 185612 520 0.00 2019-12-05 09:31:26 2019-12-05 09:43:26 t 1 1 185617 220 0.00 2019-12-05 09:44:31 2019-12-05 09:45:31 t 1 1 185619 615 0.00 2019-12-05 09:23:33 2019-12-05 09:45:56 t 1 1 185626 220 0.00 2019-12-05 09:54:15 2019-12-05 09:56:04 t 1 1 185627 665 0.00 2019-12-05 09:44:58 2019-12-05 09:56:55 t 1 1 185628 520 0.00 2019-12-05 09:43:26 2019-12-05 09:57:21 t 1 1 185629 562 0.00 2019-12-05 09:58:32 2019-12-05 09:58:45 t 1 1 185634 481 0.00 2019-12-05 08:27:06 2019-12-05 10:02:56 t 1 1 185639 671 0.00 2019-12-05 10:03:01 2019-12-05 10:04:15 t 1 1 185645 611 0.00 2019-12-05 10:06:27 2019-12-05 10:11:50 t 1 1 185648 673 0.00 2019-12-05 10:12:05 2019-12-05 10:13:46 t 1 1 185653 622 0.00 2019-12-05 10:17:17 2019-12-05 10:19:30 t 1 1 185654 611 0.00 2019-12-05 10:14:39 2019-12-05 10:20:07 t 1 1 185660 611 0.00 2019-12-05 10:20:06 2019-12-05 10:24:46 t 1 1 185663 611 0.00 2019-12-05 10:26:52 2019-12-05 10:28:22 t 1 1 185665 562 0.00 2019-12-05 10:29:02 2019-12-05 10:29:16 t 1 1 185672 665 0.00 2019-12-05 10:23:54 2019-12-05 10:38:04 t 1 1 185674 220 0.00 2019-12-05 10:39:31 2019-12-05 10:39:41 t 1 1 185676 520 0.00 2019-12-05 10:32:36 2019-12-05 10:40:38 t 1 1 185678 611 0.00 2019-12-05 10:32:20 2019-12-05 10:43:18 t 1 1 185679 667 0.00 2019-12-05 10:43:34 2019-12-05 10:44:12 t 1 1 185680 637 0.00 2019-12-05 10:44:32 2019-12-05 10:45:34 t 1 1 185682 514 0.00 2019-12-05 10:46:22 2019-12-05 10:47:09 t 1 1 185685 667 0.00 2019-12-05 10:46:34 2019-12-05 10:47:35 t 1 1 185686 673 0.00 2019-12-05 10:37:13 2019-12-05 10:48:46 t 1 1 185692 665 0.00 2019-12-05 10:47:32 2019-12-05 10:50:38 t 1 1 185695 637 0.00 2019-12-05 10:47:37 2019-12-05 10:51:44 t 1 1 185697 562 0.00 2019-12-05 10:51:54 2019-12-05 10:53:04 t 1 1 185698 481 0.00 2019-12-05 10:02:56 2019-12-05 10:53:27 t 1 1 185700 679 0.00 2019-12-05 10:53:34 2019-12-05 10:53:46 t 1 1 185707 679 0.00 2019-12-05 10:55:33 2019-12-05 10:55:48 t 1 1 185709 679 0.00 2019-12-05 10:55:54 2019-12-05 10:56:09 t 1 1 185710 679 0.00 2019-12-05 10:56:15 2019-12-05 10:56:32 t 1 1 185711 220 0.00 2019-12-05 10:56:37 2019-12-05 10:56:51 t 1 1 185716 679 0.00 2019-12-05 10:57:41 2019-12-05 10:57:56 t 1 1 185721 679 0.00 2019-12-05 10:59:05 2019-12-05 10:59:19 t 1 1 185723 611 0.00 2019-12-05 10:54:53 2019-12-05 10:59:48 t 1 1 185725 679 0.00 2019-12-05 10:59:51 2019-12-05 11:00:06 t 1 1 185728 562 0.00 2019-12-05 11:00:21 2019-12-05 11:01:05 t 1 1 185733 615 0.00 2019-12-05 10:45:17 2019-12-05 11:02:14 t 1 1 185736 679 0.00 2019-12-05 11:02:41 2019-12-05 11:02:55 t 1 1 185740 679 0.00 2019-12-05 11:03:55 2019-12-05 11:04:11 t 1 1 185741 679 0.00 2019-12-05 11:04:17 2019-12-05 11:04:29 t 1 1 185743 679 0.00 2019-12-05 11:05:34 2019-12-05 11:05:48 t 1 1 185745 679 0.00 2019-12-05 11:05:54 2019-12-05 11:06:09 t 1 1 185748 615 0.00 2019-12-05 11:06:05 2019-12-05 11:06:48 t 1 1 185751 679 0.00 2019-12-05 11:07:00 2019-12-05 11:07:16 t 1 1 185754 679 0.00 2019-12-05 11:07:22 2019-12-05 11:07:36 t 1 1 185755 679 0.00 2019-12-05 11:07:42 2019-12-05 11:08:02 t 1 1 185756 679 0.00 2019-12-05 11:08:08 2019-12-05 11:08:34 t 1 1 185758 679 0.00 2019-12-05 11:09:09 2019-12-05 11:09:29 t 1 1 185762 679 0.00 2019-12-05 11:10:17 2019-12-05 11:10:34 t 1 1 185766 679 0.00 2019-12-05 11:11:42 2019-12-05 11:11:53 t 1 1 185768 679 0.00 2019-12-05 11:11:59 2019-12-05 11:12:14 t 1 1 185769 679 0.00 2019-12-05 11:12:20 2019-12-05 11:12:34 t 1 1 185774 520 0.00 2019-12-05 10:40:38 2019-12-05 11:14:35 t 1 1 185778 615 0.00 2019-12-05 11:14:16 2019-12-05 11:15:27 t 1 1 185783 562 0.00 2019-12-05 11:16:39 2019-12-05 11:17:04 t 1 1 185790 562 0.00 2019-12-05 11:18:45 2019-12-05 11:20:04 t 1 1 185791 544 0.00 2019-12-05 11:19:53 2019-12-05 11:23:00 t 1 1 185793 591 0.00 2019-12-05 10:02:54 2019-12-05 11:24:10 t 1 1 185797 707 0.00 2019-12-05 10:58:43 2019-12-05 11:28:44 t 1 1 185798 679 0.00 2019-12-05 11:16:36 2019-12-05 11:29:14 t 1 1 185802 673 0.00 2019-12-05 11:29:11 2019-12-05 11:30:21 t 1 1 185811 637 0.00 2019-12-05 11:32:05 2019-12-05 11:35:50 t 1 1 185814 720 0.00 2019-12-05 11:38:38 2019-12-05 11:38:57 t 1 1 185816 722 0.00 2019-12-05 11:39:54 2019-12-05 11:40:10 t 1 1 185817 720 0.00 2019-12-05 11:39:01 2019-12-05 11:40:28 t 1 1 185820 722 0.00 2019-12-05 11:41:25 2019-12-05 11:42:18 t 1 1 185821 615 0.00 2019-12-05 11:38:38 2019-12-05 11:43:08 t 1 1 185831 220 0.00 2019-12-05 11:49:12 2019-12-05 11:49:20 t 1 1 185833 611 0.00 2019-12-05 11:47:05 2019-12-05 11:49:45 t 1 1 185836 722 0.00 2019-12-05 11:50:09 2019-12-05 11:51:12 t 1 1 185846 707 0.00 2019-12-05 11:49:52 2019-12-05 11:56:57 t 1 1 185851 611 0.00 2019-12-05 11:49:49 2019-12-05 11:58:32 t 1 1 185854 220 0.00 2019-12-05 11:59:42 2019-12-05 11:59:57 t 1 1 185855 538 0.00 2019-12-05 11:48:33 2019-12-05 12:02:24 t 1 1 185859 615 0.00 2019-12-05 11:59:20 2019-12-05 12:04:54 t 1 1 185860 722 0.00 2019-12-05 11:58:17 2019-12-05 12:05:44 t 1 1 185865 637 0.00 2019-12-05 11:57:53 2019-12-05 12:09:04 t 1 1 185876 538 0.00 2019-12-05 12:12:38 2019-12-05 12:14:54 t 1 1 185880 639 0.00 2019-12-05 12:15:07 2019-12-05 12:15:40 t 1 1 185883 722 0.00 2019-12-05 12:15:27 2019-12-05 12:16:17 t 1 1 185886 679 0.00 2019-12-05 12:17:19 2019-12-05 12:18:14 t 1 1 185887 538 0.00 2019-12-05 12:16:29 2019-12-05 12:18:41 t 1 1 185888 514 0.00 2019-12-05 12:14:56 2019-12-05 12:20:22 t 1 1 185889 220 0.00 2019-12-05 12:20:43 2019-12-05 12:20:57 t 1 1 185892 562 0.00 2019-12-05 12:22:48 2019-12-05 12:23:07 t 1 1 185895 679 0.00 2019-12-05 12:18:19 2019-12-05 12:27:42 t 1 1 185897 538 0.00 2019-12-05 12:18:49 2019-12-05 12:29:02 t 1 1 185900 720 0.00 2019-12-05 12:17:46 2019-12-05 12:29:49 t 1 1 185902 679 0.00 2019-12-05 12:27:42 2019-12-05 12:30:14 t 1 1 185905 220 0.00 2019-12-05 12:31:18 2019-12-05 12:31:34 t 1 1 185906 615 0.00 2019-12-05 12:27:25 2019-12-05 12:32:11 t 1 1 185907 639 0.00 2019-12-05 12:31:49 2019-12-05 12:33:04 t 1 1 185913 679 0.00 2019-12-05 12:33:26 2019-12-05 12:35:27 t 1 1 185914 722 0.00 2019-12-05 12:34:03 2019-12-05 12:37:49 t 1 1 185916 707 0.00 2019-12-05 12:34:53 2019-12-05 12:41:33 t 1 1 185917 691 0.00 2019-12-05 12:41:35 2019-12-05 12:42:17 t 1 1 185918 691 0.00 2019-12-05 12:42:16 2019-12-05 12:42:52 t 1 1 185920 673 0.00 2019-12-05 12:23:53 2019-12-05 12:44:05 t 1 1 185601 637 0.00 2019-12-05 09:26:04 2019-12-05 09:30:32 t 1 1 185608 220 0.00 2019-12-05 09:08:18 2019-12-05 09:38:52 t 1 2 185613 220 0.00 2019-12-05 09:44:04 2019-12-05 09:44:14 t 1 1 185614 581 0.00 2019-12-05 09:32:43 2019-12-05 09:44:39 t 1 1 185616 611 0.00 2019-12-05 09:31:53 2019-12-05 09:45:20 t 1 1 185620 562 0.00 2019-12-05 09:47:42 2019-12-05 09:48:02 t 1 1 185621 514 0.00 2019-12-05 09:42:34 2019-12-05 09:49:19 t 1 1 185622 591 0.00 2019-12-05 09:42:54 2019-12-05 09:50:01 t 1 1 185625 611 0.00 2019-12-05 09:45:20 2019-12-05 09:55:41 t 1 1 185630 671 0.00 2019-12-05 09:52:50 2019-12-05 10:00:34 t 1 1 185632 591 0.00 2019-12-05 09:50:48 2019-12-05 10:02:55 t 1 1 185635 514 0.00 2019-12-05 09:49:19 2019-12-05 10:02:58 t 1 1 185637 718 0.00 2019-12-05 09:52:43 2019-12-05 10:03:07 t 1 1 185641 562 0.00 2019-12-05 10:04:50 2019-12-05 10:06:29 t 1 1 185647 562 0.00 2019-12-05 10:13:13 2019-12-05 10:13:21 t 1 1 185650 611 0.00 2019-12-05 10:11:50 2019-12-05 10:14:40 t 1 1 185651 639 0.00 2019-12-05 10:12:39 2019-12-05 10:15:23 t 1 1 185656 514 0.00 2019-12-05 10:14:16 2019-12-05 10:21:15 t 1 1 185657 673 0.00 2019-12-05 10:19:34 2019-12-05 10:21:49 t 1 1 185659 665 0.00 2019-12-05 10:12:37 2019-12-05 10:23:55 t 1 1 185666 667 0.00 2019-12-05 10:23:58 2019-12-05 10:30:13 t 1 1 185667 611 0.00 2019-12-05 10:28:22 2019-12-05 10:32:20 t 1 1 185668 220 0.00 2019-12-05 10:32:31 2019-12-05 10:32:33 t 1 1 185670 562 0.00 2019-12-05 10:35:37 2019-12-05 10:36:12 t 1 1 185673 637 0.00 2019-12-05 09:49:42 2019-12-05 10:38:33 t 1 1 185675 220 0.00 2019-12-05 10:39:56 2019-12-05 10:39:57 t 1 1 185684 665 0.00 2019-12-05 10:38:03 2019-12-05 10:47:32 t 1 1 185688 220 0.00 2019-12-05 10:49:32 2019-12-05 10:49:41 t 1 1 185690 649 0.00 2019-12-05 10:34:42 2019-12-05 10:50:27 t 1 1 185693 220 0.00 2019-12-05 10:49:58 2019-12-05 10:50:59 t 1 1 185694 671 0.00 2019-12-05 10:25:51 2019-12-05 10:51:39 t 1 1 185696 665 0.00 2019-12-05 10:50:38 2019-12-05 10:52:41 t 1 1 185701 679 0.00 2019-12-05 10:53:52 2019-12-05 10:54:07 t 1 1 185702 679 0.00 2019-12-05 10:54:13 2019-12-05 10:54:24 t 1 1 185705 679 0.00 2019-12-05 10:54:50 2019-12-05 10:55:05 t 1 1 185713 679 0.00 2019-12-05 10:56:38 2019-12-05 10:56:53 t 1 1 185717 671 0.00 2019-12-05 10:51:38 2019-12-05 10:58:09 t 1 1 185718 679 0.00 2019-12-05 10:58:02 2019-12-05 10:58:38 t 1 1 185719 679 0.00 2019-12-05 10:58:44 2019-12-05 10:58:59 t 1 1 185720 696 0.00 2019-12-05 10:37:10 2019-12-05 10:59:12 t 1 1 185726 679 0.00 2019-12-05 11:00:11 2019-12-05 11:00:32 t 1 1 185730 679 0.00 2019-12-05 11:01:20 2019-12-05 11:01:36 t 1 1 185731 611 0.00 2019-12-05 10:59:47 2019-12-05 11:01:43 t 1 1 185738 679 0.00 2019-12-05 11:03:01 2019-12-05 11:03:32 t 1 1 185744 611 0.00 2019-12-05 11:03:22 2019-12-05 11:05:52 t 1 1 185746 562 0.00 2019-12-05 11:06:03 2019-12-05 11:06:19 t 1 1 185753 220 0.00 2019-12-05 11:07:11 2019-12-05 11:07:27 t 1 1 185757 679 0.00 2019-12-05 11:08:40 2019-12-05 11:09:03 t 1 1 185759 679 0.00 2019-12-05 11:09:35 2019-12-05 11:09:49 t 1 1 185761 679 0.00 2019-12-05 11:09:55 2019-12-05 11:10:11 t 1 1 185763 679 0.00 2019-12-05 11:10:40 2019-12-05 11:10:54 t 1 1 185767 673 0.00 2019-12-05 11:01:22 2019-12-05 11:12:12 t 1 1 185770 679 0.00 2019-12-05 11:12:40 2019-12-05 11:12:55 t 1 1 185771 679 0.00 2019-12-05 11:13:01 2019-12-05 11:13:20 t 1 1 185777 679 0.00 2019-12-05 11:15:08 2019-12-05 11:15:23 t 1 1 185779 679 0.00 2019-12-05 11:15:29 2019-12-05 11:15:49 t 1 1 185782 637 0.00 2019-12-05 11:14:23 2019-12-05 11:16:42 t 1 1 185785 220 0.00 2019-12-05 11:17:42 2019-12-05 11:17:50 t 1 1 185789 696 0.00 2019-12-05 10:59:12 2019-12-05 11:19:55 t 1 1 185792 673 0.00 2019-12-05 11:22:03 2019-12-05 11:23:32 t 1 1 185795 562 0.00 2019-12-05 11:27:38 2019-12-05 11:27:46 t 1 1 185796 220 0.00 2019-12-05 11:28:12 2019-12-05 11:28:27 t 1 1 185799 611 0.00 2019-12-05 11:05:51 2019-12-05 11:29:15 t 1 1 185801 520 0.00 2019-12-05 11:14:35 2019-12-05 11:30:20 t 1 1 185804 718 0.00 2019-12-05 11:07:19 2019-12-05 11:33:16 t 1 1 185805 520 0.00 2019-12-05 11:30:20 2019-12-05 11:33:28 t 1 1 185807 581 0.00 2019-12-05 11:14:09 2019-12-05 11:34:51 t 1 1 185809 581 0.00 2019-12-05 11:35:19 2019-12-05 11:35:24 t 1 1 185810 667 0.00 2019-12-05 11:30:39 2019-12-05 11:35:37 t 1 1 185812 562 0.00 2019-12-05 11:38:29 2019-12-05 11:38:40 t 1 1 185813 220 0.00 2019-12-05 11:38:42 2019-12-05 11:38:57 t 1 1 185818 611 0.00 2019-12-05 11:29:15 2019-12-05 11:41:13 t 1 1 185819 591 0.00 2019-12-05 11:39:09 2019-12-05 11:41:57 t 1 1 185823 722 0.00 2019-12-05 11:43:41 2019-12-05 11:44:29 t 1 1 185825 722 0.00 2019-12-05 11:44:36 2019-12-05 11:45:06 t 1 1 185826 637 0.00 2019-12-05 11:37:43 2019-12-05 11:45:27 t 1 1 185827 722 0.00 2019-12-05 11:47:33 2019-12-05 11:48:18 t 1 1 185828 538 0.00 2019-12-05 11:35:32 2019-12-05 11:48:33 t 1 1 185830 639 0.00 2019-12-05 11:38:51 2019-12-05 11:49:01 t 1 1 185835 639 0.00 2019-12-05 11:50:51 2019-12-05 11:51:04 t 1 1 185838 722 0.00 2019-12-05 11:52:45 2019-12-05 11:53:24 t 1 1 185840 673 0.00 2019-12-05 11:35:36 2019-12-05 11:54:09 t 1 1 185842 722 0.00 2019-12-05 11:55:32 2019-12-05 11:55:46 t 1 1 185843 722 0.00 2019-12-05 11:56:08 2019-12-05 11:56:11 t 1 1 185844 637 0.00 2019-12-05 11:56:03 2019-12-05 11:56:44 t 1 1 185848 639 0.00 2019-12-05 11:57:15 2019-12-05 11:57:49 t 1 1 185850 722 0.00 2019-12-05 11:57:23 2019-12-05 11:57:58 t 1 1 185852 514 0.00 2019-12-05 10:47:08 2019-12-05 11:59:07 t 1 1 185853 220 0.00 2019-12-05 11:52:01 2019-12-05 11:59:42 t 1 1 185858 562 0.00 2019-12-05 12:04:08 2019-12-05 12:04:28 t 1 1 185861 581 0.00 2019-12-05 11:36:45 2019-12-05 12:06:17 t 1 1 185866 639 0.00 2019-12-05 12:08:58 2019-12-05 12:09:31 t 1 1 185868 220 0.00 2019-12-05 12:10:14 2019-12-05 12:10:22 t 1 1 185870 722 0.00 2019-12-05 12:05:49 2019-12-05 12:11:11 t 1 1 185871 538 0.00 2019-12-05 12:04:20 2019-12-05 12:11:23 t 1 1 185873 722 0.00 2019-12-05 12:11:14 2019-12-05 12:13:30 t 1 1 185874 220 0.00 2019-12-05 12:09:57 2019-12-05 12:14:25 t 1 2 185882 673 0.00 2019-12-05 11:59:16 2019-12-05 12:16:01 t 1 1 185885 671 0.00 2019-12-05 11:58:44 2019-12-05 12:18:06 t 1 1 185891 639 0.00 2019-12-05 12:21:12 2019-12-05 12:21:43 t 1 1 185898 520 0.00 2019-12-05 11:33:26 2019-12-05 12:29:11 t 1 1 185899 639 0.00 2019-12-05 12:27:26 2019-12-05 12:29:36 t 1 1 185901 562 0.00 2019-12-05 12:29:57 2019-12-05 12:29:57 f 1 1 185904 622 0.00 2019-12-05 11:34:56 2019-12-05 12:31:09 t 1 1 185909 722 0.00 2019-12-05 12:16:20 2019-12-05 12:34:03 t 1 1 185912 514 0.00 2019-12-05 12:27:25 2019-12-05 12:35:15 t 1 1 185915 671 0.00 2019-12-05 12:37:51 2019-12-05 12:39:23 t 1 1 185908 481 0.00 2019-12-05 10:53:27 2019-12-05 12:33:49 t 1 1 185910 220 0.00 2019-12-05 12:31:42 2019-12-05 12:34:04 t 1 1 185911 667 0.00 2019-12-05 12:30:30 2019-12-05 12:35:01 t 1 1 185919 639 0.00 2019-12-05 12:32:25 2019-12-05 12:43:00 t 1 1 185922 639 0.00 2019-12-05 12:44:59 2019-12-05 12:46:35 t 1 1 185928 639 0.00 2019-12-05 12:47:10 2019-12-05 12:50:08 t 1 1 185934 639 0.00 2019-12-05 12:51:30 2019-12-05 12:54:49 t 1 1 185935 637 0.00 2019-12-05 12:53:49 2019-12-05 12:55:28 t 1 1 185936 611 0.00 2019-12-05 12:54:48 2019-12-05 12:56:22 t 1 1 185941 220 0.00 2019-12-05 12:58:57 2019-12-05 12:58:59 t 1 1 185943 611 0.00 2019-12-05 12:56:21 2019-12-05 12:59:13 t 1 1 185947 639 0.00 2019-12-05 13:01:08 2019-12-05 13:01:28 t 1 1 185950 514 0.00 2019-12-05 12:35:15 2019-12-05 13:02:45 t 1 1 185955 220 0.00 2019-12-05 13:05:46 2019-12-05 13:06:00 t 1 1 185956 639 0.00 2019-12-05 13:06:18 2019-12-05 13:06:27 t 1 1 185958 689 0.00 2019-12-05 13:07:48 2019-12-05 13:07:50 t 1 1 185964 689 0.00 2019-12-05 13:08:01 2019-12-05 13:10:30 t 1 1 185965 639 0.00 2019-12-05 13:10:58 2019-12-05 13:11:01 t 1 1 185968 639 0.00 2019-12-05 13:13:28 2019-12-05 13:14:00 t 1 1 185969 689 0.00 2019-12-05 13:10:58 2019-12-05 13:14:35 t 1 1 185972 639 0.00 2019-12-05 13:15:27 2019-12-05 13:15:34 t 1 1 185980 520 0.00 2019-12-05 13:14:39 2019-12-05 13:18:31 t 1 1 185982 689 0.00 2019-12-05 13:18:41 2019-12-05 13:18:43 t 1 1 185984 514 0.00 2019-12-05 13:19:07 2019-12-05 13:19:51 t 1 1 185986 689 0.00 2019-12-05 13:19:56 2019-12-05 13:20:11 t 1 1 185987 635 0.00 2019-12-05 13:20:24 2019-12-05 13:23:44 t 1 1 185990 516 0.00 2019-12-05 13:09:14 2019-12-05 13:23:53 t 1 1 185993 581 0.00 2019-12-05 13:12:08 2019-12-05 13:26:58 t 1 1 185995 645 0.00 2019-12-05 13:28:04 2019-12-05 13:28:21 t 1 1 185996 689 0.00 2019-12-05 13:28:31 2019-12-05 13:28:38 t 1 1 185998 578 0.00 2019-12-05 12:57:28 2019-12-05 13:29:34 t 1 1 185999 645 0.00 2019-12-05 13:29:36 2019-12-05 13:29:45 t 1 1 186004 520 0.00 2019-12-05 13:18:31 2019-12-05 13:33:23 t 1 1 186005 220 0.00 2019-12-05 13:34:12 2019-12-05 13:34:26 t 1 1 186007 581 0.00 2019-12-05 13:37:31 2019-12-05 13:39:18 t 1 1 186011 516 0.00 2019-12-05 13:36:33 2019-12-05 13:40:59 t 1 1 186013 639 0.00 2019-12-05 13:40:41 2019-12-05 13:41:08 t 1 1 186015 514 0.00 2019-12-05 13:30:22 2019-12-05 13:42:09 t 1 1 186019 639 0.00 2019-12-05 13:42:42 2019-12-05 13:43:26 t 1 1 186024 520 0.00 2019-12-05 13:43:12 2019-12-05 13:48:23 t 1 1 186026 516 0.00 2019-12-05 13:48:27 2019-12-05 13:48:32 t 1 1 186030 220 0.00 2019-12-05 13:55:15 2019-12-05 13:55:17 t 1 1 186035 667 0.00 2019-12-05 13:55:22 2019-12-05 13:56:53 t 1 1 186037 639 0.00 2019-12-05 13:58:01 2019-12-05 13:58:18 t 1 1 186038 637 0.00 2019-12-05 13:54:43 2019-12-05 13:58:32 t 1 1 186042 516 0.00 2019-12-05 14:00:40 2019-12-05 14:00:46 t 1 1 186044 639 0.00 2019-12-05 14:00:44 2019-12-05 14:01:25 t 1 1 186046 516 0.00 2019-12-05 14:02:54 2019-12-05 14:03:52 t 1 1 186048 718 0.00 2019-12-05 13:55:33 2019-12-05 14:05:22 t 1 1 186053 639 0.00 2019-12-05 14:07:33 2019-12-05 14:08:02 t 1 1 186056 520 0.00 2019-12-05 14:08:31 2019-12-05 14:09:42 t 1 1 186058 485 0.00 2019-12-05 13:59:41 2019-12-05 14:11:03 t 1 1 186059 591 0.00 2019-12-05 14:07:15 2019-12-05 14:13:01 t 1 1 186063 639 0.00 2019-12-05 14:13:52 2019-12-05 14:14:24 t 1 1 186065 220 0.00 2019-12-05 14:15:40 2019-12-05 14:15:49 t 1 1 186066 671 0.00 2019-12-05 14:14:17 2019-12-05 14:17:20 t 1 1 186070 554 0.00 2019-12-05 14:20:11 2019-12-05 14:20:11 f 1 1 186072 718 0.00 2019-12-05 14:20:12 2019-12-05 14:20:15 t 1 1 186076 639 0.00 2019-12-05 14:20:44 2019-12-05 14:21:43 t 1 1 186079 514 0.00 2019-12-05 13:58:04 2019-12-05 14:24:11 t 1 1 186081 639 0.00 2019-12-05 14:24:49 2019-12-05 14:26:27 t 1 1 186082 639 0.00 2019-12-05 14:27:29 2019-12-05 14:29:26 t 1 1 186083 639 0.00 2019-12-05 14:29:55 2019-12-05 14:30:45 t 1 1 186087 578 0.00 2019-12-05 14:13:42 2019-12-05 14:33:36 t 1 1 186088 639 0.00 2019-12-05 14:33:26 2019-12-05 14:34:30 t 1 1 186095 611 0.00 2019-12-05 14:31:44 2019-12-05 14:39:57 t 1 1 186097 611 0.00 2019-12-05 14:39:55 2019-12-05 14:40:42 t 1 1 186100 220 0.00 2019-12-05 14:43:17 2019-12-05 14:45:05 t 1 1 186101 220 0.00 2019-12-05 14:37:22 2019-12-05 14:45:24 t 1 1 186105 566 0.00 2019-12-05 14:47:01 2019-12-05 14:48:19 t 1 1 186109 220 0.00 2019-12-05 14:50:33 2019-12-05 14:50:43 t 1 1 186115 220 0.00 2019-12-05 14:49:26 2019-12-05 14:58:57 t 1 2 186117 718 0.00 2019-12-05 14:55:12 2019-12-05 15:03:35 t 1 1 186118 220 0.00 2019-12-05 15:04:54 2019-12-05 15:05:02 t 1 1 186124 528 0.00 2019-12-05 15:08:56 2019-12-05 15:14:23 t 1 1 186127 220 0.00 2019-12-05 15:15:23 2019-12-05 15:16:28 t 1 1 186138 487 0.00 2019-12-05 15:26:20 2019-12-05 15:29:25 t 1 2 186140 514 0.00 2019-12-05 15:10:28 2019-12-05 15:30:05 t 1 1 186144 720 0.00 2019-12-05 13:14:24 2019-12-05 15:33:01 t 1 1 186146 611 0.00 2019-12-05 15:22:24 2019-12-05 15:34:26 t 1 1 186148 538 0.00 2019-12-05 15:34:49 2019-12-05 15:34:49 f 1 1 186154 639 0.00 2019-12-05 15:36:54 2019-12-05 15:37:20 t 1 1 186155 639 0.00 2019-12-05 15:38:36 2019-12-05 15:38:52 t 1 1 186161 639 0.00 2019-12-05 15:43:10 2019-12-05 15:44:12 t 1 1 186162 639 0.00 2019-12-05 15:44:27 2019-12-05 15:44:36 t 1 1 186164 622 0.00 2019-12-05 14:49:39 2019-12-05 15:46:03 t 1 1 186169 637 0.00 2019-12-05 14:10:14 2019-12-05 15:48:41 t 1 1 186173 516 0.00 2019-12-05 15:51:28 2019-12-05 15:52:40 t 1 1 186177 722 0.00 2019-12-05 15:48:13 2019-12-05 15:54:11 t 1 1 186182 544 0.00 2019-12-05 15:52:40 2019-12-05 15:58:09 t 1 1 186183 722 0.00 2019-12-05 15:58:10 2019-12-05 15:58:19 t 1 1 186188 516 0.00 2019-12-05 16:01:03 2019-12-05 16:05:15 t 1 1 186193 220 0.00 2019-12-05 16:07:43 2019-12-05 16:07:58 t 1 1 186197 707 0.00 2019-12-05 15:25:30 2019-12-05 16:11:42 t 1 1 186198 611 0.00 2019-12-05 16:05:58 2019-12-05 16:12:36 t 1 1 186199 645 0.00 2019-12-05 16:08:11 2019-12-05 16:13:16 t 1 1 186200 578 0.00 2019-12-05 16:09:06 2019-12-05 16:15:00 t 1 1 186203 528 0.00 2019-12-05 16:12:49 2019-12-05 16:17:44 t 1 1 186204 611 0.00 2019-12-05 16:12:36 2019-12-05 16:18:16 t 1 1 186206 544 0.00 2019-12-05 16:07:44 2019-12-05 16:18:31 t 1 1 186210 456 0.00 2019-12-05 16:20:16 2019-12-05 16:22:12 t 1 1 186214 639 0.00 2019-12-05 16:25:25 2019-12-05 16:25:39 t 1 1 186217 220 0.00 2019-12-05 16:28:46 2019-12-05 16:28:55 t 1 1 186219 220 0.00 2019-12-05 16:29:03 2019-12-05 16:29:18 t 1 1 186221 639 0.00 2019-12-05 16:33:05 2019-12-05 16:33:10 t 1 1 186224 485 0.00 2019-12-05 16:15:44 2019-12-05 16:34:59 t 1 1 186225 665 0.00 2019-12-05 16:32:09 2019-12-05 16:36:31 t 1 1 185921 691 0.00 2019-12-05 12:42:52 2019-12-05 12:44:38 t 1 1 185923 538 0.00 2019-12-05 12:31:12 2019-12-05 12:46:41 t 1 1 185924 722 0.00 2019-12-05 12:38:02 2019-12-05 12:47:08 t 1 1 185925 637 0.00 2019-12-05 12:29:14 2019-12-05 12:48:30 t 1 1 185929 639 0.00 2019-12-05 12:50:33 2019-12-05 12:50:53 t 1 1 185933 538 0.00 2019-12-05 12:47:10 2019-12-05 12:54:24 t 1 1 185937 581 0.00 2019-12-05 12:54:00 2019-12-05 12:57:01 t 1 1 185940 538 0.00 2019-12-05 12:54:23 2019-12-05 12:58:41 t 1 1 185942 639 0.00 2019-12-05 12:57:41 2019-12-05 12:59:04 t 1 1 185945 639 0.00 2019-12-05 13:00:03 2019-12-05 13:00:14 t 1 1 185946 611 0.00 2019-12-05 12:59:06 2019-12-05 13:01:04 t 1 1 185949 639 0.00 2019-12-05 13:01:37 2019-12-05 13:02:26 t 1 1 185952 611 0.00 2019-12-05 13:01:07 2019-12-05 13:04:04 t 1 1 185953 615 0.00 2019-12-05 12:52:27 2019-12-05 13:04:50 t 1 1 185957 689 0.00 2019-12-05 13:01:16 2019-12-05 13:07:36 t 1 1 185959 639 0.00 2019-12-05 13:07:17 2019-12-05 13:07:59 t 1 1 185960 615 0.00 2019-12-05 13:04:49 2019-12-05 13:08:46 t 1 1 185961 520 0.00 2019-12-05 13:02:30 2019-12-05 13:09:16 t 1 1 185971 514 0.00 2019-12-05 13:10:07 2019-12-05 13:14:52 t 1 1 185973 611 0.00 2019-12-05 13:04:04 2019-12-05 13:15:40 t 1 1 185974 220 0.00 2019-12-05 13:16:16 2019-12-05 13:16:29 t 1 1 185975 514 0.00 2019-12-05 13:14:52 2019-12-05 13:16:58 t 1 1 185979 689 0.00 2019-12-05 13:17:24 2019-12-05 13:18:28 t 1 1 185981 611 0.00 2019-12-05 13:16:49 2019-12-05 13:18:40 t 1 1 185988 689 0.00 2019-12-05 13:23:26 2019-12-05 13:23:47 t 1 1 185997 645 0.00 2019-12-05 13:28:29 2019-12-05 13:28:39 t 1 1 186000 514 0.00 2019-12-05 13:19:50 2019-12-05 13:30:22 t 1 1 186002 639 0.00 2019-12-05 13:32:59 2019-12-05 13:33:08 t 1 1 186006 516 0.00 2019-12-05 13:23:53 2019-12-05 13:36:33 t 1 1 186008 520 0.00 2019-12-05 13:33:23 2019-12-05 13:39:30 t 1 1 186012 581 0.00 2019-12-05 13:39:26 2019-12-05 13:41:07 t 1 1 186014 639 0.00 2019-12-05 13:41:08 2019-12-05 13:41:11 t 1 1 186017 611 0.00 2019-12-05 13:30:22 2019-12-05 13:42:34 t 1 1 186018 520 0.00 2019-12-05 13:39:30 2019-12-05 13:43:12 t 1 1 186020 220 0.00 2019-12-05 13:44:44 2019-12-05 13:44:58 t 1 1 186021 578 0.00 2019-12-05 13:29:34 2019-12-05 13:45:45 t 1 1 186025 639 0.00 2019-12-05 13:48:13 2019-12-05 13:48:26 t 1 1 186027 639 0.00 2019-12-05 13:48:56 2019-12-05 13:49:19 t 1 1 186029 520 0.00 2019-12-05 13:48:42 2019-12-05 13:50:00 t 1 1 186032 718 0.00 2019-12-05 13:52:07 2019-12-05 13:55:33 t 1 1 186036 514 0.00 2019-12-05 13:42:09 2019-12-05 13:58:04 t 1 1 186039 639 0.00 2019-12-05 13:59:17 2019-12-05 13:59:25 t 1 1 186041 220 0.00 2019-12-05 13:58:28 2019-12-05 13:59:29 t 1 1 186045 639 0.00 2019-12-05 14:01:24 2019-12-05 14:02:08 t 1 1 186047 639 0.00 2019-12-05 14:03:42 2019-12-05 14:03:55 t 1 1 186049 220 0.00 2019-12-05 14:05:08 2019-12-05 14:05:23 t 1 1 186051 679 0.00 2019-12-05 14:01:04 2019-12-05 14:06:59 t 1 1 186055 520 0.00 2019-12-05 13:56:51 2019-12-05 14:08:31 t 1 1 186062 516 0.00 2019-12-05 14:14:01 2019-12-05 14:14:02 t 1 1 186064 566 0.00 2019-12-05 13:59:29 2019-12-05 14:15:47 t 1 1 186067 516 0.00 2019-12-05 14:14:22 2019-12-05 14:17:30 t 1 1 186069 220 0.00 2019-12-05 13:40:40 2019-12-05 14:20:03 t 1 2 186073 554 0.00 2019-12-05 14:20:23 2019-12-05 14:20:23 f 1 1 186078 665 0.00 2019-12-05 14:19:20 2019-12-05 14:22:52 t 1 1 186085 639 0.00 2019-12-05 14:30:50 2019-12-05 14:32:35 t 1 1 186086 566 0.00 2019-12-05 14:15:47 2019-12-05 14:33:34 t 1 1 186089 639 0.00 2019-12-05 14:35:05 2019-12-05 14:35:32 t 1 1 186090 220 0.00 2019-12-05 14:26:58 2019-12-05 14:36:48 t 1 1 186092 220 0.00 2019-12-05 14:36:56 2019-12-05 14:36:57 t 1 1 186093 538 0.00 2019-12-05 14:30:33 2019-12-05 14:38:49 t 1 1 186096 633 0.00 2019-12-05 14:22:43 2019-12-05 14:40:22 t 1 1 186098 673 0.00 2019-12-05 14:14:22 2019-12-05 14:40:51 t 1 1 186099 639 0.00 2019-12-05 14:37:45 2019-12-05 14:42:48 t 1 1 186103 566 0.00 2019-12-05 14:33:34 2019-12-05 14:47:01 t 1 1 186104 639 0.00 2019-12-05 14:45:55 2019-12-05 14:47:26 t 1 1 186107 481 0.00 2019-12-05 13:17:48 2019-12-05 14:50:18 t 1 1 186108 639 0.00 2019-12-05 14:49:01 2019-12-05 14:50:27 t 1 1 186110 611 0.00 2019-12-05 14:40:41 2019-12-05 14:51:58 t 1 1 186112 220 0.00 2019-12-05 14:54:23 2019-12-05 14:54:38 t 1 1 186114 718 0.00 2019-12-05 14:38:09 2019-12-05 14:55:12 t 1 1 186116 490 0.00 2019-12-05 14:44:14 2019-12-05 15:00:54 t 1 1 186119 490 0.00 2019-12-05 15:00:54 2019-12-05 15:05:27 t 1 1 186121 660 0.00 2019-12-05 14:54:41 2019-12-05 15:06:32 t 1 1 186122 514 0.00 2019-12-05 14:38:57 2019-12-05 15:10:28 t 1 1 186126 528 0.00 2019-12-05 15:15:45 2019-12-05 15:16:04 t 1 1 186128 528 0.00 2019-12-05 15:17:32 2019-12-05 15:19:03 t 1 1 186130 528 0.00 2019-12-05 15:19:33 2019-12-05 15:21:44 t 1 1 186131 611 0.00 2019-12-05 15:20:04 2019-12-05 15:22:24 t 1 1 186134 528 0.00 2019-12-05 15:21:44 2019-12-05 15:25:08 t 1 1 186139 639 0.00 2019-12-05 15:29:21 2019-12-05 15:29:27 t 1 1 186143 544 0.00 2019-12-05 15:08:45 2019-12-05 15:32:45 t 1 1 186145 673 0.00 2019-12-05 15:30:32 2019-12-05 15:33:15 t 1 1 186147 639 0.00 2019-12-05 15:33:50 2019-12-05 15:34:36 t 1 1 186149 538 0.00 2019-12-05 15:29:12 2019-12-05 15:34:58 t 1 1 186151 514 0.00 2019-12-05 15:30:05 2019-12-05 15:36:17 t 1 1 186153 220 0.00 2019-12-05 15:36:23 2019-12-05 15:36:56 t 1 1 186156 611 0.00 2019-12-05 15:39:11 2019-12-05 15:40:11 t 1 1 186163 639 0.00 2019-12-05 15:45:29 2019-12-05 15:45:36 t 1 1 186165 220 0.00 2019-12-05 15:46:56 2019-12-05 15:46:57 t 1 1 186166 639 0.00 2019-12-05 15:46:14 2019-12-05 15:48:08 t 1 1 186171 639 0.00 2019-12-05 15:50:34 2019-12-05 15:50:53 t 1 1 186172 544 0.00 2019-12-05 15:32:46 2019-12-05 15:52:39 t 1 1 186174 639 0.00 2019-12-05 15:53:30 2019-12-05 15:53:37 t 1 1 186175 611 0.00 2019-12-05 15:40:11 2019-12-05 15:53:52 t 1 1 186178 514 0.00 2019-12-05 15:36:17 2019-12-05 15:55:52 t 1 1 186180 671 0.00 2019-12-05 15:53:12 2019-12-05 15:57:56 t 1 1 186185 581 0.00 2019-12-05 15:50:55 2019-12-05 16:01:35 t 1 1 186186 611 0.00 2019-12-05 15:53:47 2019-12-05 16:01:47 t 1 1 186187 722 0.00 2019-12-05 16:01:57 2019-12-05 16:02:59 t 1 1 186189 611 0.00 2019-12-05 16:01:47 2019-12-05 16:05:58 t 1 1 186192 544 0.00 2019-12-05 15:58:24 2019-12-05 16:07:44 t 1 1 186194 512 0.00 2019-12-05 15:55:08 2019-12-05 16:08:01 t 1 1 186195 627 0.00 2019-12-05 16:01:45 2019-12-05 16:08:54 t 1 1 186211 639 0.00 2019-12-05 16:22:56 2019-12-05 16:23:28 t 1 1 186213 578 0.00 2019-12-05 16:15:00 2019-12-05 16:25:07 t 1 1 186218 639 0.00 2019-12-05 16:28:42 2019-12-05 16:28:58 t 1 1 186220 639 0.00 2019-12-05 16:30:16 2019-12-05 16:32:06 t 1 1 185926 220 0.00 2019-12-05 12:48:27 2019-12-05 12:48:40 t 1 1 185927 481 0.00 2019-12-05 12:33:49 2019-12-05 12:50:01 t 1 1 185930 520 0.00 2019-12-05 12:29:11 2019-12-05 12:50:53 t 1 1 185931 544 0.00 2019-12-05 12:07:21 2019-12-05 12:53:06 t 1 1 185932 720 0.00 2019-12-05 12:46:43 2019-12-05 12:53:31 t 1 1 185938 607 0.00 2019-12-05 10:50:23 2019-12-05 12:57:06 t 1 1 185939 578 0.00 2019-12-05 10:47:18 2019-12-05 12:57:28 t 1 1 185944 538 0.00 2019-12-05 12:58:41 2019-12-05 12:59:49 t 1 1 185948 520 0.00 2019-12-05 12:51:36 2019-12-05 13:01:55 t 1 1 185951 645 0.00 2019-12-05 13:03:42 2019-12-05 13:03:51 t 1 1 185954 639 0.00 2019-12-05 13:03:22 2019-12-05 13:05:04 t 1 1 185962 514 0.00 2019-12-05 13:02:45 2019-12-05 13:10:07 t 1 1 185963 220 0.00 2019-12-05 13:06:57 2019-12-05 13:10:27 t 1 2 185966 520 0.00 2019-12-05 13:09:15 2019-12-05 13:11:24 t 1 1 185967 671 0.00 2019-12-05 13:09:41 2019-12-05 13:13:42 t 1 1 185970 520 0.00 2019-12-05 13:12:27 2019-12-05 13:14:40 t 1 1 185976 689 0.00 2019-12-05 13:15:01 2019-12-05 13:17:11 t 1 1 185977 481 0.00 2019-12-05 12:50:01 2019-12-05 13:17:34 t 1 1 185978 514 0.00 2019-12-05 13:16:57 2019-12-05 13:17:48 t 1 1 185983 514 0.00 2019-12-05 13:17:47 2019-12-05 13:19:08 t 1 1 185985 639 0.00 2019-12-05 13:19:40 2019-12-05 13:20:05 t 1 1 185989 673 0.00 2019-12-05 12:46:53 2019-12-05 13:23:49 t 1 1 185991 220 0.00 2019-12-05 13:23:40 2019-12-05 13:23:57 t 1 1 185992 635 0.00 2019-12-05 13:24:31 2019-12-05 13:26:55 t 1 1 185994 639 0.00 2019-12-05 13:27:01 2019-12-05 13:27:10 t 1 1 186001 639 0.00 2019-12-05 13:30:17 2019-12-05 13:30:53 t 1 1 186003 689 0.00 2019-12-05 13:30:43 2019-12-05 13:33:09 t 1 1 186009 673 0.00 2019-12-05 13:33:13 2019-12-05 13:39:34 t 1 1 186010 639 0.00 2019-12-05 13:40:01 2019-12-05 13:40:42 t 1 1 186016 671 0.00 2019-12-05 13:32:07 2019-12-05 13:42:10 t 1 1 186022 639 0.00 2019-12-05 13:46:02 2019-12-05 13:46:17 t 1 1 186023 516 0.00 2019-12-05 13:46:37 2019-12-05 13:46:40 t 1 1 186028 689 0.00 2019-12-05 13:45:59 2019-12-05 13:49:19 t 1 1 186031 220 0.00 2019-12-05 13:55:25 2019-12-05 13:55:25 t 1 1 186033 639 0.00 2019-12-05 13:53:20 2019-12-05 13:55:48 t 1 1 186034 520 0.00 2019-12-05 13:49:59 2019-12-05 13:56:52 t 1 1 186040 578 0.00 2019-12-05 13:45:45 2019-12-05 13:59:27 t 1 1 186043 679 0.00 2019-12-05 14:01:00 2019-12-05 14:01:01 t 1 1 186050 633 0.00 2019-12-05 13:43:36 2019-12-05 14:05:29 t 1 1 186052 545 0.00 2019-12-05 13:57:57 2019-12-05 14:07:10 t 1 1 186054 516 0.00 2019-12-05 14:06:47 2019-12-05 14:08:24 t 1 1 186057 637 0.00 2019-12-05 14:06:37 2019-12-05 14:10:16 t 1 1 186060 578 0.00 2019-12-05 13:59:27 2019-12-05 14:13:42 t 1 1 186061 544 0.00 2019-12-05 12:53:06 2019-12-05 14:13:54 t 1 1 186068 665 0.00 2019-12-05 13:59:16 2019-12-05 14:19:20 t 1 1 186071 718 0.00 2019-12-05 14:10:33 2019-12-05 14:20:12 t 1 1 186074 639 0.00 2019-12-05 14:18:43 2019-12-05 14:20:28 t 1 1 186075 607 0.00 2019-12-05 12:57:06 2019-12-05 14:21:23 t 1 1 186077 633 0.00 2019-12-05 14:05:29 2019-12-05 14:22:43 t 1 1 186080 220 0.00 2019-12-05 14:26:11 2019-12-05 14:26:26 t 1 1 186084 611 0.00 2019-12-05 14:29:44 2019-12-05 14:31:47 t 1 1 186091 220 0.00 2019-12-05 14:36:47 2019-12-05 14:36:49 t 1 1 186094 514 0.00 2019-12-05 14:24:11 2019-12-05 14:38:57 t 1 1 186102 512 0.00 2019-12-05 14:40:07 2019-12-05 14:45:57 t 1 1 186106 639 0.00 2019-12-05 14:47:41 2019-12-05 14:48:46 t 1 1 186111 220 0.00 2019-12-05 14:50:58 2019-12-05 14:51:59 t 1 1 186113 660 0.00 2019-12-05 14:31:32 2019-12-05 14:54:41 t 1 1 186120 544 0.00 2019-12-05 14:55:54 2019-12-05 15:05:44 t 1 1 186123 538 0.00 2019-12-05 14:51:37 2019-12-05 15:12:39 t 1 1 186125 220 0.00 2019-12-05 15:13:58 2019-12-05 15:15:24 t 1 1 186129 611 0.00 2019-12-05 15:14:24 2019-12-05 15:20:05 t 1 1 186132 564 0.00 2019-12-05 14:00:13 2019-12-05 15:22:42 t 1 1 186133 639 0.00 2019-12-05 15:09:11 2019-12-05 15:24:01 t 1 1 186135 220 0.00 2019-12-05 15:25:53 2019-12-05 15:26:27 t 1 1 186136 639 0.00 2019-12-05 15:26:29 2019-12-05 15:28:18 t 1 1 186137 639 0.00 2019-12-05 15:28:45 2019-12-05 15:28:52 t 1 1 186141 639 0.00 2019-12-05 15:29:34 2019-12-05 15:30:34 t 1 1 186142 639 0.00 2019-12-05 15:31:53 2019-12-05 15:32:06 t 1 1 186150 538 0.00 2019-12-05 15:34:17 2019-12-05 15:36:05 t 1 1 186152 639 0.00 2019-12-05 15:36:12 2019-12-05 15:36:42 t 1 1 186157 564 0.00 2019-12-05 15:22:42 2019-12-05 15:40:54 t 1 1 186158 639 0.00 2019-12-05 15:41:32 2019-12-05 15:41:51 t 1 1 186159 485 0.00 2019-12-05 15:35:37 2019-12-05 15:42:59 t 1 1 186160 528 0.00 2019-12-05 15:42:02 2019-12-05 15:44:05 t 1 1 186167 722 0.00 2019-12-05 15:40:17 2019-12-05 15:48:13 t 1 1 186168 673 0.00 2019-12-05 15:45:51 2019-12-05 15:48:30 t 1 1 186170 639 0.00 2019-12-05 15:48:52 2019-12-05 15:50:28 t 1 1 186176 220 0.00 2019-12-05 15:53:39 2019-12-05 15:53:55 t 1 1 186179 514 0.00 2019-12-05 15:55:51 2019-12-05 15:57:18 t 1 1 186181 722 0.00 2019-12-05 15:56:30 2019-12-05 15:58:05 t 1 1 186184 673 0.00 2019-12-05 15:59:18 2019-12-05 16:01:10 t 1 1 186190 220 0.00 2019-12-05 16:04:10 2019-12-05 16:06:06 t 1 1 186191 615 0.00 2019-12-05 15:58:13 2019-12-05 16:07:32 t 1 1 186196 578 0.00 2019-12-05 14:33:36 2019-12-05 16:09:06 t 1 1 186201 639 0.00 2019-12-05 15:54:11 2019-12-05 16:16:10 t 1 1 186202 220 0.00 2019-12-05 16:11:23 2019-12-05 16:17:26 t 1 2 186205 220 0.00 2019-12-05 16:18:14 2019-12-05 16:18:28 t 1 1 186207 459 0.00 2019-12-05 15:52:39 2019-12-05 16:19:14 t 1 2 186208 639 0.00 2019-12-05 16:20:30 2019-12-05 16:20:40 t 1 1 186209 544 0.00 2019-12-05 16:19:02 2019-12-05 16:22:05 t 1 1 186212 591 0.00 2019-12-05 16:04:38 2019-12-05 16:23:43 t 1 1 186215 639 0.00 2019-12-05 16:26:18 2019-12-05 16:26:26 t 1 1 186216 538 0.00 2019-12-05 16:25:59 2019-12-05 16:27:33 t 1 1 186222 639 0.00 2019-12-05 16:32:24 2019-12-05 16:34:06 t 1 1 186230 220 0.00 2019-12-05 16:39:32 2019-12-05 16:39:40 t 1 1 186235 639 0.00 2019-12-05 16:42:01 2019-12-05 16:44:06 t 1 1 186236 639 0.00 2019-12-05 16:44:21 2019-12-05 16:44:26 t 1 1 186239 671 0.00 2019-12-05 16:42:06 2019-12-05 16:46:11 t 1 1 186240 639 0.00 2019-12-05 16:46:13 2019-12-05 16:46:42 t 1 1 186245 639 0.00 2019-12-05 16:49:22 2019-12-05 16:51:06 t 1 1 186246 639 0.00 2019-12-05 16:50:10 2019-12-05 16:52:06 t 1 1 186250 591 0.00 2019-12-05 16:49:52 2019-12-05 16:55:41 t 1 1 186253 611 0.00 2019-12-05 16:51:19 2019-12-05 16:58:06 t 1 1 186256 220 0.00 2019-12-05 17:00:31 2019-12-05 17:00:46 t 1 1 186260 538 0.00 2019-12-05 16:34:54 2019-12-05 17:05:40 t 1 1 186262 639 0.00 2019-12-05 17:04:27 2019-12-05 17:06:06 t 1 1 186263 718 0.00 2019-12-05 16:44:31 2019-12-05 17:07:27 t 1 1 186223 538 0.00 2019-12-05 16:27:32 2019-12-05 16:34:47 t 1 1 186226 639 0.00 2019-12-05 16:35:32 2019-12-05 16:36:43 t 1 1 186228 498 0.00 2019-12-05 15:47:16 2019-12-05 16:37:55 t 1 2 186229 639 0.00 2019-12-05 16:39:12 2019-12-05 16:39:33 t 1 1 186233 671 0.00 2019-12-05 16:21:54 2019-12-05 16:41:38 t 1 1 186234 514 0.00 2019-12-05 15:57:18 2019-12-05 16:42:16 t 1 1 186237 718 0.00 2019-12-05 16:26:03 2019-12-05 16:44:32 t 1 1 186241 516 0.00 2019-12-05 16:45:46 2019-12-05 16:47:35 t 1 1 186244 615 0.00 2019-12-05 16:12:48 2019-12-05 16:50:52 t 1 1 186247 514 0.00 2019-12-05 16:42:16 2019-12-05 16:55:15 t 1 1 186249 639 0.00 2019-12-05 16:55:32 2019-12-05 16:55:37 t 1 1 186255 639 0.00 2019-12-05 16:59:32 2019-12-05 17:00:32 t 1 1 186258 639 0.00 2019-12-05 17:03:28 2019-12-05 17:05:06 t 1 1 186259 311 0.00 2019-12-05 16:40:02 2019-12-05 17:05:25 t 1 2 186264 516 0.00 2019-12-05 17:07:53 2019-12-05 17:09:46 t 1 1 186265 220 0.00 2019-12-05 17:11:02 2019-12-05 17:11:16 t 1 1 186267 311 0.00 2019-12-05 17:14:31 2019-12-05 17:15:54 t 1 2 186278 679 0.00 2019-12-05 17:22:43 2019-12-05 17:22:55 t 1 1 186279 679 0.00 2019-12-05 17:23:06 2019-12-05 17:23:21 t 1 1 186283 679 0.00 2019-12-05 17:28:13 2019-12-05 17:28:23 t 1 1 186289 679 0.00 2019-12-05 17:33:22 2019-12-05 17:33:37 t 1 1 186290 673 0.00 2019-12-05 17:33:18 2019-12-05 17:34:52 t 1 1 186295 545 0.00 2019-12-05 17:29:33 2019-12-05 17:37:25 t 1 1 186299 545 0.00 2019-12-05 17:37:25 2019-12-05 17:38:35 t 1 1 186302 627 0.00 2019-12-05 17:37:08 2019-12-05 17:39:15 t 1 1 186303 627 0.00 2019-12-05 17:39:22 2019-12-05 17:39:40 t 1 1 186305 687 0.00 2019-12-05 17:31:37 2019-12-05 17:41:43 t 1 1 186307 622 0.00 2019-12-05 17:35:25 2019-12-05 17:43:02 t 1 1 186311 622 0.00 2019-12-05 17:43:36 2019-12-05 17:44:40 t 1 1 186313 726 0.00 2019-12-05 17:40:45 2019-12-05 17:44:51 t 1 1 186314 566 0.00 2019-12-05 17:29:00 2019-12-05 17:45:26 t 1 1 186317 671 0.00 2019-12-05 17:42:13 2019-12-05 17:47:03 t 1 1 186319 611 0.00 2019-12-05 17:46:07 2019-12-05 17:51:25 t 1 1 186322 611 0.00 2019-12-05 17:51:24 2019-12-05 17:53:20 t 1 1 186326 671 0.00 2019-12-05 17:52:25 2019-12-05 17:54:54 t 1 1 186327 611 0.00 2019-12-05 17:53:23 2019-12-05 17:55:19 t 1 1 186328 679 0.00 2019-12-05 17:55:57 2019-12-05 17:56:52 t 1 1 186329 679 0.00 2019-12-05 17:57:28 2019-12-05 17:57:41 t 1 1 186332 622 0.00 2019-12-05 17:53:40 2019-12-05 17:58:47 t 1 1 186333 679 0.00 2019-12-05 17:59:14 2019-12-05 17:59:27 t 1 1 186334 679 0.00 2019-12-05 18:00:07 2019-12-05 18:00:19 t 1 1 186339 667 0.00 2019-12-05 18:01:20 2019-12-05 18:02:24 t 1 1 186343 679 0.00 2019-12-05 18:05:21 2019-12-05 18:05:33 t 1 1 186347 637 0.00 2019-12-05 17:51:03 2019-12-05 18:07:18 t 1 1 186348 581 0.00 2019-12-05 17:47:40 2019-12-05 18:07:23 t 1 1 186351 679 0.00 2019-12-05 18:09:29 2019-12-05 18:09:40 t 1 1 186354 578 0.00 2019-12-05 16:25:07 2019-12-05 18:11:21 t 1 1 186355 679 0.00 2019-12-05 18:12:00 2019-12-05 18:12:16 t 1 1 186356 679 0.00 2019-12-05 18:12:25 2019-12-05 18:12:37 t 1 1 186360 622 0.00 2019-12-05 18:00:17 2019-12-05 18:14:48 t 1 1 186363 687 0.00 2019-12-05 18:03:39 2019-12-05 18:16:16 t 1 1 186364 645 0.00 2019-12-05 18:17:10 2019-12-05 18:17:22 t 1 1 186366 645 0.00 2019-12-05 18:17:35 2019-12-05 18:17:36 t 1 1 186368 581 0.00 2019-12-05 18:19:22 2019-12-05 18:21:32 t 1 1 186378 627 0.00 2019-12-05 18:31:17 2019-12-05 18:31:24 t 1 1 186379 673 0.00 2019-12-05 17:44:43 2019-12-05 18:31:33 t 1 1 186381 660 0.00 2019-12-05 18:14:08 2019-12-05 18:32:04 t 1 1 186382 627 0.00 2019-12-05 18:32:00 2019-12-05 18:32:36 t 1 1 186383 627 0.00 2019-12-05 18:33:04 2019-12-05 18:33:29 t 1 1 186385 724 0.00 2019-12-05 17:37:39 2019-12-05 18:33:54 t 1 1 186390 512 0.00 2019-12-05 18:14:56 2019-12-05 18:35:46 t 1 1 186398 591 0.00 2019-12-05 17:52:53 2019-12-05 18:40:38 t 1 1 186400 645 0.00 2019-12-05 18:41:12 2019-12-05 18:41:23 t 1 1 186401 627 0.00 2019-12-05 18:41:21 2019-12-05 18:43:16 t 1 1 186405 627 0.00 2019-12-05 18:45:03 2019-12-05 18:45:12 t 1 1 186406 512 0.00 2019-12-05 18:35:46 2019-12-05 18:45:31 t 1 1 186409 665 0.00 2019-12-05 18:45:53 2019-12-05 18:47:27 t 1 1 186410 627 0.00 2019-12-05 18:47:01 2019-12-05 18:49:29 t 1 1 186412 615 0.00 2019-12-05 18:27:23 2019-12-05 18:50:02 t 1 1 186415 514 0.00 2019-12-05 18:36:16 2019-12-05 18:51:51 t 1 1 186417 673 0.00 2019-12-05 18:31:33 2019-12-05 18:52:14 t 1 1 186420 627 0.00 2019-12-05 18:52:49 2019-12-05 18:53:21 t 1 1 186423 660 0.00 2019-12-05 18:54:34 2019-12-05 18:56:14 t 1 1 186424 637 0.00 2019-12-05 18:53:56 2019-12-05 18:56:38 t 1 1 186427 627 0.00 2019-12-05 18:56:38 2019-12-05 18:57:38 t 1 1 186429 645 0.00 2019-12-05 18:50:33 2019-12-05 18:58:15 t 1 1 186430 627 0.00 2019-12-05 18:58:16 2019-12-05 18:58:50 t 1 1 186431 528 0.00 2019-12-05 18:59:01 2019-12-05 18:59:42 t 1 1 186435 694 0.00 2019-12-05 18:58:06 2019-12-05 19:01:18 t 1 1 186437 660 0.00 2019-12-05 18:57:30 2019-12-05 19:02:20 t 1 1 186445 645 0.00 2019-12-05 19:06:20 2019-12-05 19:06:29 t 1 1 186450 675 0.00 2019-12-05 18:53:13 2019-12-05 19:11:43 t 1 1 186452 716 0.00 2019-12-05 19:04:15 2019-12-05 19:12:51 t 1 1 186455 691 0.00 2019-12-05 19:09:14 2019-12-05 19:15:03 t 1 1 186457 687 0.00 2019-12-05 19:13:53 2019-12-05 19:15:47 t 1 1 186460 528 0.00 2019-12-05 19:16:19 2019-12-05 19:17:16 t 1 1 186461 220 0.00 2019-12-05 19:17:54 2019-12-05 19:18:02 t 1 1 186463 528 0.00 2019-12-05 19:17:27 2019-12-05 19:19:09 t 1 1 186468 673 0.00 2019-12-05 19:15:19 2019-12-05 19:22:56 t 1 1 186469 220 0.00 2019-12-05 19:11:24 2019-12-05 19:23:43 t 1 2 186471 691 0.00 2019-12-05 19:15:03 2019-12-05 19:25:52 t 1 1 186473 673 0.00 2019-12-05 19:22:56 2019-12-05 19:27:33 t 1 1 186480 528 0.00 2019-12-05 19:28:15 2019-12-05 19:30:11 t 1 1 186484 673 0.00 2019-12-05 19:27:33 2019-12-05 19:33:15 t 1 1 186488 220 0.00 2019-12-05 19:29:28 2019-12-05 19:38:53 t 1 1 186492 574 0.00 2019-12-05 19:37:08 2019-12-05 19:41:11 t 1 1 186499 639 0.00 2019-12-05 19:46:49 2019-12-05 19:47:08 t 1 1 186501 516 0.00 2019-12-05 19:46:57 2019-12-05 19:47:59 t 1 1 186503 220 0.00 2019-12-05 19:49:22 2019-12-05 19:49:36 t 1 1 186511 673 0.00 2019-12-05 19:48:20 2019-12-05 19:55:45 t 1 1 186513 481 0.00 2019-12-05 18:53:18 2019-12-05 19:58:31 t 1 1 186514 562 0.00 2019-12-05 19:58:40 2019-12-05 19:58:44 t 1 1 186515 645 0.00 2019-12-05 19:57:18 2019-12-05 19:59:26 t 1 1 186516 220 0.00 2019-12-05 19:59:51 2019-12-05 20:00:02 t 1 1 186521 631 0.00 2019-12-05 20:01:08 2019-12-05 20:02:47 t 1 1 186524 562 0.00 2019-12-05 20:02:23 2019-12-05 20:05:17 t 1 1 186525 639 0.00 2019-12-05 19:56:15 2019-12-05 20:05:36 t 1 1 186227 485 0.00 2019-12-05 16:34:59 2019-12-05 16:37:40 t 1 1 186231 673 0.00 2019-12-05 16:38:19 2019-12-05 16:40:26 t 1 1 186232 639 0.00 2019-12-05 16:41:16 2019-12-05 16:41:21 t 1 1 186238 639 0.00 2019-12-05 16:45:32 2019-12-05 16:45:41 t 1 1 186242 220 0.00 2019-12-05 16:50:01 2019-12-05 16:50:17 t 1 1 186243 707 0.00 2019-12-05 16:30:30 2019-12-05 16:50:38 t 1 1 186248 639 0.00 2019-12-05 16:54:48 2019-12-05 16:55:15 t 1 1 186251 564 0.00 2019-12-05 16:45:35 2019-12-05 16:55:50 t 1 1 186252 639 0.00 2019-12-05 16:56:57 2019-12-05 16:57:27 t 1 1 186254 639 0.00 2019-12-05 16:56:24 2019-12-05 16:58:06 t 1 1 186257 639 0.00 2019-12-05 17:05:03 2019-12-05 17:05:03 f 1 1 186261 514 0.00 2019-12-05 16:55:15 2019-12-05 17:05:43 t 1 1 186266 673 0.00 2019-12-05 17:10:47 2019-12-05 17:11:57 t 1 1 186268 679 0.00 2019-12-05 17:01:33 2019-12-05 17:17:03 t 1 1 186269 722 0.00 2019-12-05 17:14:15 2019-12-05 17:18:09 t 1 1 186271 514 0.00 2019-12-05 17:05:43 2019-12-05 17:20:37 t 1 1 186273 615 0.00 2019-12-05 17:19:26 2019-12-05 17:21:14 t 1 1 186274 220 0.00 2019-12-05 17:21:32 2019-12-05 17:21:40 t 1 1 186276 220 0.00 2019-12-05 17:21:49 2019-12-05 17:22:03 t 1 1 186280 679 0.00 2019-12-05 17:23:27 2019-12-05 17:23:41 t 1 1 186285 581 0.00 2019-12-05 17:31:39 2019-12-05 17:31:57 t 1 1 186286 220 0.00 2019-12-05 17:32:19 2019-12-05 17:32:36 t 1 1 186288 564 0.00 2019-12-05 16:55:50 2019-12-05 17:33:11 t 1 1 186291 679 0.00 2019-12-05 17:35:11 2019-12-05 17:35:22 t 1 1 186293 645 0.00 2019-12-05 17:28:40 2019-12-05 17:35:33 t 1 1 186296 615 0.00 2019-12-05 17:35:08 2019-12-05 17:37:53 t 1 1 186298 611 0.00 2019-12-05 17:37:15 2019-12-05 17:38:15 t 1 1 186301 581 0.00 2019-12-05 17:31:57 2019-12-05 17:38:54 t 1 1 186306 615 0.00 2019-12-05 17:38:12 2019-12-05 17:41:49 t 1 1 186309 611 0.00 2019-12-05 17:38:28 2019-12-05 17:44:04 t 1 1 186315 726 0.00 2019-12-05 17:45:42 2019-12-05 17:46:00 t 1 1 186318 581 0.00 2019-12-05 17:47:25 2019-12-05 17:49:07 t 1 1 186324 687 0.00 2019-12-05 17:41:43 2019-12-05 17:54:06 t 1 1 186325 679 0.00 2019-12-05 17:52:28 2019-12-05 17:54:34 t 1 1 186330 679 0.00 2019-12-05 17:57:47 2019-12-05 17:57:57 t 1 1 186331 679 0.00 2019-12-05 17:58:30 2019-12-05 17:58:41 t 1 1 186337 679 0.00 2019-12-05 18:01:25 2019-12-05 18:02:01 t 1 1 186338 679 0.00 2019-12-05 18:02:08 2019-12-05 18:02:20 t 1 1 186340 687 0.00 2019-12-05 17:54:06 2019-12-05 18:03:39 t 1 1 186342 679 0.00 2019-12-05 18:03:45 2019-12-05 18:05:11 t 1 1 186345 679 0.00 2019-12-05 18:06:07 2019-12-05 18:06:24 t 1 1 186350 481 0.00 2019-12-05 16:17:54 2019-12-05 18:08:18 t 1 1 186352 645 0.00 2019-12-05 18:10:29 2019-12-05 18:10:39 t 1 1 186357 637 0.00 2019-12-05 18:07:19 2019-12-05 18:13:03 t 1 1 186369 675 0.00 2019-12-05 17:53:13 2019-12-05 18:22:20 t 1 1 186374 645 0.00 2019-12-05 18:29:05 2019-12-05 18:29:18 t 1 1 186384 622 0.00 2019-12-05 18:15:23 2019-12-05 18:33:35 t 1 1 186386 637 0.00 2019-12-05 18:13:43 2019-12-05 18:34:14 t 1 1 186389 627 0.00 2019-12-05 18:34:12 2019-12-05 18:35:09 t 1 1 186392 220 0.00 2019-12-05 18:35:39 2019-12-05 18:35:55 t 1 1 186395 707 0.00 2019-12-05 18:32:21 2019-12-05 18:36:59 t 1 1 186402 679 0.00 2019-12-05 18:37:45 2019-12-05 18:43:30 t 1 1 186403 724 0.00 2019-12-05 18:42:43 2019-12-05 18:44:14 t 1 1 186413 520 0.00 2019-12-05 18:49:47 2019-12-05 18:51:13 t 1 1 186416 627 0.00 2019-12-05 18:51:27 2019-12-05 18:52:13 t 1 1 186422 637 0.00 2019-12-05 18:34:47 2019-12-05 18:53:56 t 1 1 186425 220 0.00 2019-12-05 18:56:42 2019-12-05 18:57:08 t 1 1 186426 660 0.00 2019-12-05 18:56:14 2019-12-05 18:57:31 t 1 1 186433 639 0.00 2019-12-05 18:47:07 2019-12-05 19:00:43 t 1 1 186434 512 0.00 2019-12-05 18:45:31 2019-12-05 19:01:11 t 1 1 186438 694 0.00 2019-12-05 19:01:24 2019-12-05 19:02:26 t 1 1 186441 528 0.00 2019-12-05 19:03:41 2019-12-05 19:03:50 t 1 1 186443 694 0.00 2019-12-05 19:02:26 2019-12-05 19:04:43 t 1 1 186446 645 0.00 2019-12-05 19:06:46 2019-12-05 19:06:58 t 1 1 186447 220 0.00 2019-12-05 19:07:23 2019-12-05 19:07:38 t 1 1 186449 528 0.00 2019-12-05 19:10:21 2019-12-05 19:10:45 t 1 1 186453 528 0.00 2019-12-05 19:11:41 2019-12-05 19:13:09 t 1 1 186459 645 0.00 2019-12-05 19:16:26 2019-12-05 19:17:07 t 1 1 186462 528 0.00 2019-12-05 19:17:57 2019-12-05 19:18:31 t 1 1 186467 671 0.00 2019-12-05 19:17:58 2019-12-05 19:22:45 t 1 1 186470 220 0.00 2019-12-05 19:21:45 2019-12-05 19:23:55 t 1 1 186472 645 0.00 2019-12-05 19:22:03 2019-12-05 19:27:26 t 1 1 186474 516 0.00 2019-12-05 19:15:02 2019-12-05 19:27:53 t 1 1 186476 220 0.00 2019-12-05 19:28:24 2019-12-05 19:28:39 t 1 1 186478 711 0.00 2019-12-05 19:26:35 2019-12-05 19:29:24 t 1 1 186479 516 0.00 2019-12-05 19:27:53 2019-12-05 19:29:58 t 1 1 186482 711 0.00 2019-12-05 19:29:24 2019-12-05 19:32:22 t 1 1 186483 611 0.00 2019-12-05 19:31:27 2019-12-05 19:33:01 t 1 1 186491 639 0.00 2019-12-05 19:40:18 2019-12-05 19:41:04 t 1 1 186493 562 0.00 2019-12-05 19:38:22 2019-12-05 19:41:44 t 1 1 186494 578 0.00 2019-12-05 18:25:24 2019-12-05 19:42:34 t 1 1 186498 675 0.00 2019-12-05 19:44:02 2019-12-05 19:46:08 t 1 1 186500 665 0.00 2019-12-05 19:44:51 2019-12-05 19:47:58 t 1 1 186502 673 0.00 2019-12-05 19:43:32 2019-12-05 19:48:20 t 1 1 186505 562 0.00 2019-12-05 19:43:09 2019-12-05 19:50:42 t 1 1 186506 639 0.00 2019-12-05 19:51:21 2019-12-05 19:51:29 t 1 1 186509 639 0.00 2019-12-05 19:55:05 2019-12-05 19:55:17 t 1 1 186510 562 0.00 2019-12-05 19:55:10 2019-12-05 19:55:19 t 1 1 186512 645 0.00 2019-12-05 19:42:23 2019-12-05 19:57:18 t 1 1 186519 692 0.00 2019-12-05 19:59:55 2019-12-05 20:01:37 t 1 1 186522 692 0.00 2019-12-05 20:02:22 2019-12-05 20:03:47 t 1 1 186523 692 0.00 2019-12-05 20:04:59 2019-12-05 20:05:07 t 1 1 186527 611 0.00 2019-12-05 20:02:28 2019-12-05 20:07:12 t 1 1 186528 724 0.00 2019-12-05 18:46:22 2019-12-05 20:07:49 t 1 1 186530 692 0.00 2019-12-05 20:07:21 2019-12-05 20:07:53 t 1 1 186533 639 0.00 2019-12-05 20:08:22 2019-12-05 20:08:51 t 1 1 186537 639 0.00 2019-12-05 20:12:49 2019-12-05 20:13:08 t 1 1 186538 622 0.00 2019-12-05 20:12:59 2019-12-05 20:14:08 t 1 1 186544 562 0.00 2019-12-05 20:18:56 2019-12-05 20:19:08 t 1 1 186546 633 0.00 2019-12-05 20:04:16 2019-12-05 20:19:44 t 1 1 186550 581 0.00 2019-12-05 19:56:32 2019-12-05 20:20:51 t 1 1 186555 562 0.00 2019-12-05 20:22:40 2019-12-05 20:22:57 t 1 1 186558 581 0.00 2019-12-05 20:23:04 2019-12-05 20:23:29 t 1 1 186561 503 0.00 2019-12-05 20:18:46 2019-12-05 20:24:13 t 1 1 186562 622 0.00 2019-12-05 20:15:40 2019-12-05 20:24:42 t 1 1 186564 639 0.00 2019-12-05 20:25:06 2019-12-05 20:25:26 t 1 1 186567 639 0.00 2019-12-05 20:26:35 2019-12-05 20:26:44 t 1 1 186270 581 0.00 2019-12-05 17:03:18 2019-12-05 17:18:32 t 1 1 186272 220 0.00 2019-12-05 17:13:28 2019-12-05 17:20:50 t 1 2 186275 679 0.00 2019-12-05 17:17:08 2019-12-05 17:22:03 t 1 1 186277 581 0.00 2019-12-05 17:18:52 2019-12-05 17:22:42 t 1 1 186281 673 0.00 2019-12-05 17:20:26 2019-12-05 17:26:36 t 1 1 186282 220 0.00 2019-12-05 17:10:51 2019-12-05 17:28:14 t 1 2 186284 687 0.00 2019-12-05 17:08:56 2019-12-05 17:31:37 t 1 1 186287 622 0.00 2019-12-05 17:31:22 2019-12-05 17:32:48 t 1 1 186292 622 0.00 2019-12-05 17:32:47 2019-12-05 17:35:26 t 1 1 186294 627 0.00 2019-12-05 16:57:36 2019-12-05 17:36:55 t 1 1 186297 538 0.00 2019-12-05 17:15:10 2019-12-05 17:38:12 t 1 1 186300 679 0.00 2019-12-05 17:38:29 2019-12-05 17:38:42 t 1 1 186304 671 0.00 2019-12-05 17:34:28 2019-12-05 17:41:10 t 1 1 186308 220 0.00 2019-12-05 17:42:56 2019-12-05 17:43:14 t 1 1 186310 514 0.00 2019-12-05 17:20:37 2019-12-05 17:44:38 t 1 1 186312 673 0.00 2019-12-05 17:40:22 2019-12-05 17:44:43 t 1 1 186316 611 0.00 2019-12-05 17:44:03 2019-12-05 17:46:07 t 1 1 186320 679 0.00 2019-12-05 17:40:49 2019-12-05 17:52:11 t 1 1 186321 722 0.00 2019-12-05 17:40:37 2019-12-05 17:53:17 t 1 1 186323 220 0.00 2019-12-05 17:53:33 2019-12-05 17:53:47 t 1 1 186335 514 0.00 2019-12-05 17:44:38 2019-12-05 18:01:01 t 1 1 186336 514 0.00 2019-12-05 18:01:07 2019-12-05 18:01:47 t 1 1 186341 220 0.00 2019-12-05 18:04:04 2019-12-05 18:04:20 t 1 1 186344 615 0.00 2019-12-05 18:00:18 2019-12-05 18:05:43 t 1 1 186346 679 0.00 2019-12-05 18:06:34 2019-12-05 18:06:46 t 1 1 186349 679 0.00 2019-12-05 18:06:57 2019-12-05 18:08:08 t 1 1 186353 679 0.00 2019-12-05 18:10:55 2019-12-05 18:11:18 t 1 1 186358 679 0.00 2019-12-05 18:12:46 2019-12-05 18:13:24 t 1 1 186359 679 0.00 2019-12-05 18:13:32 2019-12-05 18:13:45 t 1 1 186361 220 0.00 2019-12-05 18:14:35 2019-12-05 18:14:49 t 1 1 186362 679 0.00 2019-12-05 18:14:51 2019-12-05 18:15:06 t 1 1 186365 718 0.00 2019-12-05 18:10:17 2019-12-05 18:17:28 t 1 1 186367 679 0.00 2019-12-05 18:15:23 2019-12-05 18:18:06 t 1 1 186370 726 0.00 2019-12-05 18:06:14 2019-12-05 18:22:43 t 1 1 186371 514 0.00 2019-12-05 18:01:46 2019-12-05 18:24:46 t 1 1 186372 220 0.00 2019-12-05 18:25:08 2019-12-05 18:25:18 t 1 1 186373 578 0.00 2019-12-05 18:11:21 2019-12-05 18:25:24 t 1 1 186375 627 0.00 2019-12-05 18:18:48 2019-12-05 18:30:17 t 1 1 186376 675 0.00 2019-12-05 18:22:20 2019-12-05 18:30:29 t 1 1 186377 627 0.00 2019-12-05 18:30:44 2019-12-05 18:31:18 t 1 1 186380 627 0.00 2019-12-05 18:31:30 2019-12-05 18:31:46 t 1 1 186387 687 0.00 2019-12-05 18:16:16 2019-12-05 18:34:36 t 1 1 186388 528 0.00 2019-12-05 18:14:02 2019-12-05 18:34:59 t 1 1 186391 627 0.00 2019-12-05 18:35:36 2019-12-05 18:35:53 t 1 1 186393 514 0.00 2019-12-05 18:24:46 2019-12-05 18:36:16 t 1 1 186394 627 0.00 2019-12-05 18:36:06 2019-12-05 18:36:21 t 1 1 186396 645 0.00 2019-12-05 18:35:10 2019-12-05 18:37:08 t 1 1 186397 627 0.00 2019-12-05 18:38:25 2019-12-05 18:38:37 t 1 1 186399 627 0.00 2019-12-05 18:39:51 2019-12-05 18:40:46 t 1 1 186404 627 0.00 2019-12-05 18:43:52 2019-12-05 18:44:57 t 1 1 186407 627 0.00 2019-12-05 18:46:17 2019-12-05 18:46:33 t 1 1 186408 220 0.00 2019-12-05 18:46:11 2019-12-05 18:47:17 t 1 1 186411 528 0.00 2019-12-05 18:38:24 2019-12-05 18:49:31 t 1 1 186414 627 0.00 2019-12-05 18:50:19 2019-12-05 18:51:22 t 1 1 186418 720 0.00 2019-12-05 16:48:59 2019-12-05 18:52:55 t 1 1 186419 481 0.00 2019-12-05 18:16:49 2019-12-05 18:53:18 t 1 1 186421 660 0.00 2019-12-05 18:37:08 2019-12-05 18:53:24 t 1 1 186428 622 0.00 2019-12-05 18:33:34 2019-12-05 18:57:47 t 1 1 186432 627 0.00 2019-12-05 19:00:39 2019-12-05 19:00:43 t 1 1 186436 639 0.00 2019-12-05 19:00:58 2019-12-05 19:02:09 t 1 1 186439 627 0.00 2019-12-05 19:00:49 2019-12-05 19:02:32 t 1 1 186440 679 0.00 2019-12-05 19:02:28 2019-12-05 19:03:47 t 1 1 186442 673 0.00 2019-12-05 18:52:14 2019-12-05 19:03:58 t 1 1 186444 528 0.00 2019-12-05 19:05:55 2019-12-05 19:06:19 t 1 1 186448 645 0.00 2019-12-05 19:09:26 2019-12-05 19:09:54 t 1 1 186451 220 0.00 2019-12-05 19:03:54 2019-12-05 19:12:17 t 1 2 186454 687 0.00 2019-12-05 18:34:36 2019-12-05 19:13:53 t 1 1 186456 673 0.00 2019-12-05 19:03:58 2019-12-05 19:15:19 t 1 1 186458 671 0.00 2019-12-05 19:15:09 2019-12-05 19:16:33 t 1 1 186464 514 0.00 2019-12-05 18:51:51 2019-12-05 19:20:25 t 1 1 186465 220 0.00 2019-12-05 18:43:32 2019-12-05 19:21:56 t 1 2 186466 716 0.00 2019-12-05 19:12:51 2019-12-05 19:22:42 t 1 1 186475 220 0.00 2019-12-05 19:23:54 2019-12-05 19:28:24 t 1 1 186477 679 0.00 2019-12-05 19:26:31 2019-12-05 19:29:22 t 1 1 186481 645 0.00 2019-12-05 19:30:26 2019-12-05 19:30:37 t 1 1 186485 639 0.00 2019-12-05 19:01:29 2019-12-05 19:35:48 t 1 1 186486 562 0.00 2019-12-05 19:35:19 2019-12-05 19:36:57 t 1 1 186487 711 0.00 2019-12-05 19:32:22 2019-12-05 19:37:50 t 1 1 186489 220 0.00 2019-12-05 19:38:53 2019-12-05 19:39:08 t 1 1 186490 220 0.00 2019-12-05 19:39:44 2019-12-05 19:39:52 t 1 1 186495 516 0.00 2019-12-05 19:36:44 2019-12-05 19:42:49 t 1 1 186496 673 0.00 2019-12-05 19:33:15 2019-12-05 19:43:32 t 1 1 186497 639 0.00 2019-12-05 19:43:36 2019-12-05 19:43:41 t 1 1 186504 578 0.00 2019-12-05 19:42:34 2019-12-05 19:50:11 t 1 1 186507 639 0.00 2019-12-05 19:52:53 2019-12-05 19:53:39 t 1 1 186508 220 0.00 2019-12-05 19:53:35 2019-12-05 19:54:36 t 1 2 186517 671 0.00 2019-12-05 19:54:50 2019-12-05 20:00:06 t 1 1 186518 562 0.00 2019-12-05 19:58:53 2019-12-05 20:01:20 t 1 1 186520 673 0.00 2019-12-05 19:55:45 2019-12-05 20:02:45 t 1 1 186529 673 0.00 2019-12-05 20:02:45 2019-12-05 20:07:50 t 1 1 186532 562 0.00 2019-12-05 20:08:20 2019-12-05 20:08:27 t 1 1 186534 711 0.00 2019-12-05 19:37:50 2019-12-05 20:09:40 t 1 1 186535 220 0.00 2019-12-05 20:10:22 2019-12-05 20:10:38 t 1 1 186536 639 0.00 2019-12-05 20:11:07 2019-12-05 20:11:21 t 1 1 186540 692 0.00 2019-12-05 20:15:16 2019-12-05 20:15:59 t 1 1 186547 692 0.00 2019-12-05 20:19:55 2019-12-05 20:19:59 t 1 1 186549 692 0.00 2019-12-05 20:20:23 2019-12-05 20:20:41 t 1 1 186552 220 0.00 2019-12-05 20:20:53 2019-12-05 20:21:11 t 1 1 186554 692 0.00 2019-12-05 20:22:52 2019-12-05 20:22:56 t 1 1 186556 692 0.00 2019-12-05 20:23:02 2019-12-05 20:23:04 t 1 1 186560 645 0.00 2019-12-05 20:23:28 2019-12-05 20:23:45 t 1 1 186571 512 0.00 2019-12-05 20:10:30 2019-12-05 20:27:12 t 1 1 186574 562 0.00 2019-12-05 20:28:05 2019-12-05 20:28:13 t 1 1 186576 639 0.00 2019-12-05 20:28:31 2019-12-05 20:30:09 t 1 1 186578 562 0.00 2019-12-05 20:29:28 2019-12-05 20:30:53 t 1 1 186584 562 0.00 2019-12-05 20:33:00 2019-12-05 20:33:37 t 1 1 186585 581 0.00 2019-12-05 20:33:58 2019-12-05 20:34:05 t 1 1 186526 562 0.00 2019-12-05 20:06:15 2019-12-05 20:07:00 t 1 1 186531 639 0.00 2019-12-05 20:07:09 2019-12-05 20:08:07 t 1 1 186539 639 0.00 2019-12-05 20:15:33 2019-12-05 20:15:53 t 1 1 186541 639 0.00 2019-12-05 20:16:54 2019-12-05 20:17:17 t 1 1 186542 667 0.00 2019-12-05 20:16:37 2019-12-05 20:18:30 t 1 1 186543 574 0.00 2019-12-05 19:45:15 2019-12-05 20:18:55 t 1 1 186545 675 0.00 2019-12-05 20:16:48 2019-12-05 20:19:11 t 1 1 186548 633 0.00 2019-12-05 20:20:01 2019-12-05 20:20:02 t 1 1 186551 639 0.00 2019-12-05 20:20:52 2019-12-05 20:21:08 t 1 1 186553 581 0.00 2019-12-05 20:20:57 2019-12-05 20:21:32 t 1 1 186557 591 0.00 2019-12-05 18:41:23 2019-12-05 20:23:22 t 1 1 186559 220 0.00 2019-12-05 19:54:10 2019-12-05 20:23:33 t 1 2 186563 562 0.00 2019-12-05 20:24:18 2019-12-05 20:24:44 t 1 1 186565 726 0.00 2019-12-05 20:03:49 2019-12-05 20:25:53 t 1 1 186566 639 0.00 2019-12-05 20:26:11 2019-12-05 20:26:19 t 1 1 186568 581 0.00 2019-12-05 20:26:40 2019-12-05 20:26:46 t 1 1 186570 692 0.00 2019-12-05 20:24:49 2019-12-05 20:27:09 t 1 1 186572 562 0.00 2019-12-05 20:26:44 2019-12-05 20:27:12 t 1 1 186573 692 0.00 2019-12-05 20:26:03 2019-12-05 20:28:09 t 1 1 186575 520 0.00 2019-12-05 20:18:51 2019-12-05 20:29:59 t 1 1 186577 220 0.00 2019-12-05 20:00:36 2019-12-05 20:30:45 t 1 2 186583 581 0.00 2019-12-05 20:32:45 2019-12-05 20:33:31 t 1 1 186590 611 0.00 2019-12-05 20:33:27 2019-12-05 20:36:54 t 1 1 186591 611 0.00 2019-12-05 20:36:54 2019-12-05 20:37:58 t 1 1 186592 581 0.00 2019-12-05 20:37:57 2019-12-05 20:38:09 t 1 1 186596 639 0.00 2019-12-05 20:38:56 2019-12-05 20:40:01 t 1 1 186598 562 0.00 2019-12-05 20:39:43 2019-12-05 20:40:46 t 1 1 186600 639 0.00 2019-12-05 20:41:02 2019-12-05 20:41:07 t 1 1 186602 528 0.00 2019-12-05 20:13:59 2019-12-05 20:41:39 t 1 1 186609 722 0.00 2019-12-05 20:43:12 2019-12-05 20:44:38 t 1 1 186616 581 0.00 2019-12-05 20:47:19 2019-12-05 20:47:51 t 1 1 186618 679 0.00 2019-12-05 20:44:53 2019-12-05 20:51:13 t 1 1 186620 220 0.00 2019-12-05 20:51:38 2019-12-05 20:51:51 t 1 1 186621 645 0.00 2019-12-05 20:50:59 2019-12-05 20:52:20 t 1 1 186622 679 0.00 2019-12-05 20:51:13 2019-12-05 20:53:29 t 1 1 186624 639 0.00 2019-12-05 20:52:08 2019-12-05 20:54:10 t 1 1 186626 679 0.00 2019-12-05 20:55:40 2019-12-05 20:55:52 t 1 1 186629 581 0.00 2019-12-05 20:57:09 2019-12-05 20:57:50 t 1 1 186632 639 0.00 2019-12-05 20:58:28 2019-12-05 20:58:42 t 1 1 186634 220 0.00 2019-12-05 20:32:01 2019-12-05 20:59:04 t 1 2 186635 562 0.00 2019-12-05 20:59:00 2019-12-05 20:59:44 t 1 1 186641 220 0.00 2019-12-05 21:02:10 2019-12-05 21:02:11 t 1 1 186643 722 0.00 2019-12-05 21:02:05 2019-12-05 21:02:59 t 1 1 186644 562 0.00 2019-12-05 21:03:11 2019-12-05 21:03:15 t 1 1 186655 718 0.00 2019-12-05 21:06:40 2019-12-05 21:09:07 t 1 1 186657 722 0.00 2019-12-05 21:09:16 2019-12-05 21:09:31 t 1 1 186660 724 0.00 2019-12-05 20:32:21 2019-12-05 21:10:19 t 1 1 186661 722 0.00 2019-12-05 21:10:07 2019-12-05 21:10:31 t 1 1 186663 645 0.00 2019-12-05 21:10:28 2019-12-05 21:11:00 t 1 1 186664 485 0.00 2019-12-05 21:09:28 2019-12-05 21:11:47 t 1 1 186667 722 0.00 2019-12-05 21:12:34 2019-12-05 21:12:55 t 1 1 186670 639 0.00 2019-12-05 21:13:05 2019-12-05 21:13:14 t 1 1 186672 707 0.00 2019-12-05 21:10:38 2019-12-05 21:13:24 t 1 1 186676 485 0.00 2019-12-05 21:11:56 2019-12-05 21:16:10 t 1 1 186679 607 0.00 2019-12-05 21:05:23 2019-12-05 21:17:01 t 1 1 186681 711 0.00 2019-12-05 21:03:17 2019-12-05 21:17:49 t 1 1 186683 722 0.00 2019-12-05 21:17:24 2019-12-05 21:18:00 t 1 1 186684 581 0.00 2019-12-05 21:18:34 2019-12-05 21:18:59 t 1 1 186691 718 0.00 2019-12-05 21:15:31 2019-12-05 21:23:03 t 1 1 186696 718 0.00 2019-12-05 21:23:03 2019-12-05 21:25:05 t 1 1 186697 562 0.00 2019-12-05 21:26:10 2019-12-05 21:26:54 t 1 1 186699 514 0.00 2019-12-05 21:08:51 2019-12-05 21:27:17 t 1 1 186705 722 0.00 2019-12-05 21:29:35 2019-12-05 21:30:13 t 1 1 186709 722 0.00 2019-12-05 21:32:44 2019-12-05 21:33:07 t 1 1 186714 607 0.00 2019-12-05 21:29:14 2019-12-05 21:34:44 t 1 1 186715 220 0.00 2019-12-05 21:34:59 2019-12-05 21:35:14 t 1 1 186717 639 0.00 2019-12-05 21:35:17 2019-12-05 21:36:10 t 1 1 186720 591 0.00 2019-12-05 20:23:22 2019-12-05 21:37:53 t 1 1 186723 639 0.00 2019-12-05 21:38:57 2019-12-05 21:39:11 t 1 1 186725 711 0.00 2019-12-05 21:17:49 2019-12-05 21:39:19 t 1 1 186727 512 0.00 2019-12-05 21:35:13 2019-12-05 21:40:51 t 1 1 186733 707 0.00 2019-12-05 21:39:53 2019-12-05 21:43:12 t 1 1 186735 562 0.00 2019-12-05 21:44:14 2019-12-05 21:44:39 t 1 1 186737 220 0.00 2019-12-05 21:45:29 2019-12-05 21:46:02 t 1 1 186738 722 0.00 2019-12-05 21:46:15 2019-12-05 21:46:51 t 1 1 186740 722 0.00 2019-12-05 21:47:43 2019-12-05 21:47:55 t 1 1 186745 639 0.00 2019-12-05 21:49:17 2019-12-05 21:49:32 t 1 1 186746 722 0.00 2019-12-05 21:49:56 2019-12-05 21:50:03 t 1 1 186749 722 0.00 2019-12-05 21:52:39 2019-12-05 21:52:56 t 1 1 186751 639 0.00 2019-12-05 21:54:03 2019-12-05 21:54:42 t 1 1 186758 722 0.00 2019-12-05 21:59:03 2019-12-05 21:59:39 t 1 1 186760 562 0.00 2019-12-05 22:02:03 2019-12-05 22:02:30 t 1 1 186764 611 0.00 2019-12-05 21:59:21 2019-12-05 22:06:07 t 1 1 186766 562 0.00 2019-12-05 22:06:25 2019-12-05 22:07:01 t 1 1 186767 645 0.00 2019-12-05 22:06:33 2019-12-05 22:09:00 t 1 1 186768 611 0.00 2019-12-05 22:06:07 2019-12-05 22:09:54 t 1 1 186772 611 0.00 2019-12-05 22:11:34 2019-12-05 22:12:35 t 1 1 186774 691 0.00 2019-12-05 22:15:06 2019-12-05 22:16:15 t 1 1 186776 220 0.00 2019-12-05 22:17:02 2019-12-05 22:17:11 t 1 1 186778 671 0.00 2019-12-05 22:14:37 2019-12-05 22:19:42 t 1 1 186779 514 0.00 2019-12-05 21:41:25 2019-12-05 22:20:26 t 1 1 186784 639 0.00 2019-12-05 22:25:55 2019-12-05 22:26:11 t 1 1 186788 510 0.00 2019-12-05 21:19:54 2019-12-05 22:29:00 t 1 1 186794 687 0.00 2019-12-05 22:31:11 2019-12-05 22:34:17 t 1 1 186795 639 0.00 2019-12-05 22:35:22 2019-12-05 22:35:49 t 1 1 186797 544 0.00 2019-12-05 22:35:31 2019-12-05 22:36:27 t 1 1 186799 645 0.00 2019-12-05 22:11:45 2019-12-05 22:37:09 t 1 1 186802 679 0.00 2019-12-05 22:14:50 2019-12-05 22:38:17 t 1 1 186803 696 0.00 2019-12-05 22:30:08 2019-12-05 22:38:47 t 1 1 186809 220 0.00 2019-12-05 22:37:50 2019-12-05 22:41:50 t 1 1 186815 675 0.00 2019-12-05 22:29:22 2019-12-05 22:44:37 t 1 1 186818 591 0.00 2019-12-05 21:54:58 2019-12-05 22:47:43 t 1 1 186824 528 0.00 2019-12-05 22:31:34 2019-12-05 22:49:57 t 1 1 186826 591 0.00 2019-12-05 22:52:45 2019-12-05 22:53:11 t 1 1 186830 713 0.00 2019-12-05 22:17:03 2019-12-05 22:54:18 t 1 1 186834 645 0.00 2019-12-05 22:55:54 2019-12-05 22:56:26 t 1 1 186835 639 0.00 2019-12-05 22:57:55 2019-12-05 22:58:07 t 1 1 186569 692 0.00 2019-12-05 20:26:49 2019-12-05 20:26:49 f 1 1 186579 724 0.00 2019-12-05 20:07:49 2019-12-05 20:32:21 t 1 1 186580 220 0.00 2019-12-05 20:31:27 2019-12-05 20:32:31 t 1 1 186581 639 0.00 2019-12-05 20:30:55 2019-12-05 20:33:09 t 1 1 186582 639 0.00 2019-12-05 20:32:23 2019-12-05 20:33:30 t 1 1 186586 639 0.00 2019-12-05 20:34:05 2019-12-05 20:34:17 t 1 1 186588 713 0.00 2019-12-05 20:23:07 2019-12-05 20:36:22 t 1 1 186593 711 0.00 2019-12-05 20:09:40 2019-12-05 20:38:27 t 1 1 186595 722 0.00 2019-12-05 20:36:05 2019-12-05 20:39:59 t 1 1 186603 639 0.00 2019-12-05 20:41:47 2019-12-05 20:41:54 t 1 1 186605 639 0.00 2019-12-05 20:42:28 2019-12-05 20:42:40 t 1 1 186607 220 0.00 2019-12-05 20:42:22 2019-12-05 20:44:10 t 1 1 186608 639 0.00 2019-12-05 20:44:18 2019-12-05 20:44:26 t 1 1 186612 544 0.00 2019-12-05 20:32:10 2019-12-05 20:46:17 t 1 1 186614 562 0.00 2019-12-05 20:45:01 2019-12-05 20:47:10 t 1 1 186615 713 0.00 2019-12-05 20:36:22 2019-12-05 20:47:32 t 1 1 186619 581 0.00 2019-12-05 20:51:13 2019-12-05 20:51:48 t 1 1 186625 220 0.00 2019-12-05 20:37:59 2019-12-05 20:54:22 t 1 2 186627 722 0.00 2019-12-05 20:48:13 2019-12-05 20:56:37 t 1 1 186628 639 0.00 2019-12-05 20:55:41 2019-12-05 20:57:10 t 1 1 186630 696 0.00 2019-12-05 20:53:49 2019-12-05 20:58:18 t 1 1 186637 639 0.00 2019-12-05 20:59:18 2019-12-05 21:00:18 t 1 1 186639 578 0.00 2019-12-05 19:50:11 2019-12-05 21:01:58 t 1 1 186647 679 0.00 2019-12-05 21:03:12 2019-12-05 21:03:24 t 1 1 186650 490 0.00 2019-12-05 21:02:11 2019-12-05 21:04:53 t 1 1 186651 679 0.00 2019-12-05 21:05:08 2019-12-05 21:05:18 t 1 1 186653 562 0.00 2019-12-05 21:04:54 2019-12-05 21:07:10 t 1 1 186654 722 0.00 2019-12-05 21:07:23 2019-12-05 21:07:31 t 1 1 186659 679 0.00 2019-12-05 21:07:03 2019-12-05 21:10:06 t 1 1 186662 639 0.00 2019-12-05 21:10:28 2019-12-05 21:10:56 t 1 1 186669 562 0.00 2019-12-05 21:12:47 2019-12-05 21:12:57 t 1 1 186673 722 0.00 2019-12-05 21:13:29 2019-12-05 21:14:06 t 1 1 186674 578 0.00 2019-12-05 21:01:58 2019-12-05 21:15:42 t 1 1 186677 722 0.00 2019-12-05 21:16:09 2019-12-05 21:16:22 t 1 1 186678 679 0.00 2019-12-05 21:16:28 2019-12-05 21:16:59 t 1 1 186680 639 0.00 2019-12-05 21:16:47 2019-12-05 21:17:10 t 1 1 186682 639 0.00 2019-12-05 21:17:29 2019-12-05 21:17:58 t 1 1 186685 722 0.00 2019-12-05 21:18:47 2019-12-05 21:19:22 t 1 1 186687 562 0.00 2019-12-05 21:20:30 2019-12-05 21:20:44 t 1 1 186688 220 0.00 2019-12-05 21:21:18 2019-12-05 21:21:19 t 1 1 186692 639 0.00 2019-12-05 21:22:41 2019-12-05 21:23:17 t 1 1 186694 679 0.00 2019-12-05 21:18:07 2019-12-05 21:23:37 t 1 1 186695 220 0.00 2019-12-05 21:24:29 2019-12-05 21:24:44 t 1 1 186698 722 0.00 2019-12-05 21:27:05 2019-12-05 21:27:12 t 1 1 186701 578 0.00 2019-12-05 21:15:42 2019-12-05 21:28:11 t 1 1 186702 607 0.00 2019-12-05 21:17:01 2019-12-05 21:29:07 t 1 1 186704 639 0.00 2019-12-05 21:29:26 2019-12-05 21:30:09 t 1 1 186706 722 0.00 2019-12-05 21:30:42 2019-12-05 21:31:27 t 1 1 186708 639 0.00 2019-12-05 21:32:32 2019-12-05 21:32:45 t 1 1 186710 639 0.00 2019-12-05 21:33:30 2019-12-05 21:33:33 t 1 1 186713 722 0.00 2019-12-05 21:33:27 2019-12-05 21:34:23 t 1 1 186716 722 0.00 2019-12-05 21:35:38 2019-12-05 21:35:56 t 1 1 186718 671 0.00 2019-12-05 21:34:20 2019-12-05 21:36:18 t 1 1 186719 722 0.00 2019-12-05 21:36:27 2019-12-05 21:36:30 t 1 1 186722 562 0.00 2019-12-05 21:37:29 2019-12-05 21:38:17 t 1 1 186726 639 0.00 2019-12-05 21:39:53 2019-12-05 21:40:12 t 1 1 186728 722 0.00 2019-12-05 21:39:41 2019-12-05 21:41:12 t 1 1 186730 514 0.00 2019-12-05 21:27:17 2019-12-05 21:41:25 t 1 1 186731 639 0.00 2019-12-05 21:41:03 2019-12-05 21:41:49 t 1 1 186732 639 0.00 2019-12-05 21:41:48 2019-12-05 21:42:24 t 1 1 186734 722 0.00 2019-12-05 21:44:26 2019-12-05 21:44:33 t 1 1 186736 722 0.00 2019-12-05 21:44:54 2019-12-05 21:44:59 t 1 1 186742 722 0.00 2019-12-05 21:48:00 2019-12-05 21:48:41 t 1 1 186743 722 0.00 2019-12-05 21:48:48 2019-12-05 21:49:17 t 1 1 186744 722 0.00 2019-12-05 21:49:23 2019-12-05 21:49:32 t 1 1 186747 722 0.00 2019-12-05 21:49:38 2019-12-05 21:52:12 t 1 1 186748 645 0.00 2019-12-05 21:52:04 2019-12-05 21:52:51 t 1 1 186750 720 0.00 2019-12-05 20:03:49 2019-12-05 21:54:01 t 1 1 186753 722 0.00 2019-12-05 21:54:21 2019-12-05 21:54:55 t 1 1 186756 220 0.00 2019-12-05 21:55:59 2019-12-05 21:56:14 t 1 1 186757 722 0.00 2019-12-05 21:58:18 2019-12-05 21:58:26 t 1 1 186759 639 0.00 2019-12-05 21:59:58 2019-12-05 22:00:37 t 1 1 186761 581 0.00 2019-12-05 21:27:40 2019-12-05 22:03:32 t 1 1 186765 220 0.00 2019-12-05 22:06:30 2019-12-05 22:06:45 t 1 1 186770 611 0.00 2019-12-05 22:09:52 2019-12-05 22:11:34 t 1 1 186773 722 0.00 2019-12-05 21:59:56 2019-12-05 22:13:08 t 1 1 186775 220 0.00 2019-12-05 22:10:49 2019-12-05 22:16:21 t 1 2 186780 687 0.00 2019-12-05 22:15:00 2019-12-05 22:21:13 t 1 1 186782 607 0.00 2019-12-05 21:36:53 2019-12-05 22:23:38 t 1 1 186786 718 0.00 2019-12-05 21:41:50 2019-12-05 22:28:12 t 1 1 186787 220 0.00 2019-12-05 22:27:34 2019-12-05 22:28:35 t 1 1 186790 538 0.00 2019-12-05 22:11:00 2019-12-05 22:29:43 t 1 1 186791 544 0.00 2019-12-05 22:25:06 2019-12-05 22:31:13 t 1 1 186800 220 0.00 2019-12-05 22:33:25 2019-12-05 22:37:15 t 1 1 186807 220 0.00 2019-12-05 22:37:38 2019-12-05 22:40:12 t 1 1 186808 687 0.00 2019-12-05 22:39:54 2019-12-05 22:40:20 t 1 1 186811 687 0.00 2019-12-05 22:41:19 2019-12-05 22:42:08 t 1 1 186813 639 0.00 2019-12-05 22:43:29 2019-12-05 22:43:45 t 1 1 186817 220 0.00 2019-12-05 22:47:00 2019-12-05 22:47:09 t 1 1 186819 510 0.00 2019-12-05 22:29:00 2019-12-05 22:48:00 t 1 1 186823 639 0.00 2019-12-05 22:49:17 2019-12-05 22:49:34 t 1 1 186827 679 0.00 2019-12-05 22:38:17 2019-12-05 22:53:20 t 1 1 186829 220 0.00 2019-12-05 22:53:39 2019-12-05 22:53:59 t 1 1 186831 562 0.00 2019-12-05 22:12:38 2019-12-05 22:54:24 t 1 1 186832 639 0.00 2019-12-05 22:54:34 2019-12-05 22:55:12 t 1 1 186833 696 0.00 2019-12-05 22:45:40 2019-12-05 22:55:51 t 1 1 186841 718 0.00 2019-12-05 22:28:27 2019-12-05 23:02:50 t 1 1 186842 709 0.00 2019-12-05 22:37:41 2019-12-05 23:03:14 t 1 1 186844 639 0.00 2019-12-05 23:04:37 2019-12-05 23:05:13 t 1 1 186846 639 0.00 2019-12-05 23:05:32 2019-12-05 23:05:41 t 1 1 186857 691 0.00 2019-12-05 23:10:00 2019-12-05 23:15:45 t 1 1 186864 485 0.00 2019-12-05 23:22:22 2019-12-05 23:25:45 t 1 1 186868 562 0.00 2019-12-05 23:25:58 2019-12-05 23:27:20 t 1 1 186875 689 0.00 2019-12-05 23:34:54 2019-12-05 23:36:14 t 1 1 186881 689 0.00 2019-12-05 23:38:28 2019-12-05 23:39:28 t 1 1 186884 675 0.00 2019-12-05 23:22:51 2019-12-05 23:43:48 t 1 1 186887 220 0.00 2019-12-05 23:45:30 2019-12-05 23:45:38 t 1 1 186587 512 0.00 2019-12-05 20:27:12 2019-12-05 20:35:07 t 1 1 186589 581 0.00 2019-12-05 20:36:20 2019-12-05 20:36:43 t 1 1 186594 649 0.00 2019-12-05 20:30:10 2019-12-05 20:38:55 t 1 1 186597 639 0.00 2019-12-05 20:40:22 2019-12-05 20:40:30 t 1 1 186599 516 0.00 2019-12-05 20:30:26 2019-12-05 20:41:02 t 1 1 186601 722 0.00 2019-12-05 20:40:31 2019-12-05 20:41:11 t 1 1 186604 220 0.00 2019-12-05 20:41:56 2019-12-05 20:42:05 t 1 1 186606 722 0.00 2019-12-05 20:42:50 2019-12-05 20:43:07 t 1 1 186610 679 0.00 2019-12-05 20:35:33 2019-12-05 20:44:53 t 1 1 186611 622 0.00 2019-12-05 20:38:07 2019-12-05 20:46:01 t 1 1 186613 639 0.00 2019-12-05 20:46:01 2019-12-05 20:46:20 t 1 1 186617 562 0.00 2019-12-05 20:50:30 2019-12-05 20:50:53 t 1 1 186623 562 0.00 2019-12-05 20:53:24 2019-12-05 20:53:34 t 1 1 186631 679 0.00 2019-12-05 20:58:05 2019-12-05 20:58:22 t 1 1 186633 562 0.00 2019-12-05 20:57:12 2019-12-05 20:58:48 t 1 1 186636 645 0.00 2019-12-05 20:57:40 2019-12-05 21:00:15 t 1 1 186638 722 0.00 2019-12-05 20:56:37 2019-12-05 21:01:22 t 1 1 186640 490 0.00 2019-12-05 21:00:23 2019-12-05 21:02:10 t 1 1 186642 639 0.00 2019-12-05 21:02:02 2019-12-05 21:02:17 t 1 1 186645 711 0.00 2019-12-05 20:38:27 2019-12-05 21:03:17 t 1 1 186646 551 0.00 2019-12-05 20:43:32 2019-12-05 21:03:21 t 1 1 186648 639 0.00 2019-12-05 21:03:41 2019-12-05 21:03:48 t 1 1 186649 639 0.00 2019-12-05 21:04:04 2019-12-05 21:04:48 t 1 1 186652 718 0.00 2019-12-05 20:54:24 2019-12-05 21:06:40 t 1 1 186656 722 0.00 2019-12-05 21:09:05 2019-12-05 21:09:10 t 1 1 186658 562 0.00 2019-12-05 21:09:21 2019-12-05 21:09:37 t 1 1 186665 220 0.00 2019-12-05 21:11:20 2019-12-05 21:11:50 t 1 1 186666 581 0.00 2019-12-05 21:07:10 2019-12-05 21:12:26 t 1 1 186668 581 0.00 2019-12-05 21:12:47 2019-12-05 21:12:55 t 1 1 186671 562 0.00 2019-12-05 21:13:13 2019-12-05 21:13:19 t 1 1 186675 679 0.00 2019-12-05 21:12:43 2019-12-05 21:15:52 t 1 1 186686 722 0.00 2019-12-05 21:18:37 2019-12-05 21:20:12 t 1 1 186689 220 0.00 2019-12-05 21:21:28 2019-12-05 21:21:43 t 1 1 186690 722 0.00 2019-12-05 21:21:52 2019-12-05 21:22:32 t 1 1 186693 498 0.00 2019-12-05 19:32:27 2019-12-05 21:23:27 t 1 2 186700 485 0.00 2019-12-05 21:25:24 2019-12-05 21:27:48 t 1 1 186703 687 0.00 2019-12-05 21:14:38 2019-12-05 21:30:05 t 1 1 186707 722 0.00 2019-12-05 21:31:33 2019-12-05 21:32:08 t 1 1 186711 639 0.00 2019-12-05 21:33:59 2019-12-05 21:34:16 t 1 1 186712 671 0.00 2019-12-05 21:33:24 2019-12-05 21:34:20 t 1 1 186721 722 0.00 2019-12-05 21:36:17 2019-12-05 21:38:12 t 1 1 186724 562 0.00 2019-12-05 21:38:24 2019-12-05 21:39:16 t 1 1 186729 722 0.00 2019-12-05 21:40:44 2019-12-05 21:41:22 t 1 1 186739 722 0.00 2019-12-05 21:47:20 2019-12-05 21:47:22 t 1 1 186741 639 0.00 2019-12-05 21:47:55 2019-12-05 21:48:31 t 1 1 186752 711 0.00 2019-12-05 21:39:19 2019-12-05 21:54:48 t 1 1 186754 562 0.00 2019-12-05 21:54:58 2019-12-05 21:55:22 t 1 1 186755 639 0.00 2019-12-05 21:55:32 2019-12-05 21:55:59 t 1 1 186762 660 0.00 2019-12-05 20:54:23 2019-12-05 22:04:26 t 1 1 186763 562 0.00 2019-12-05 22:04:53 2019-12-05 22:04:57 t 1 1 186769 487 0.00 2019-12-05 22:05:49 2019-12-05 22:09:54 t 1 2 186771 713 0.00 2019-12-05 21:57:17 2019-12-05 22:11:48 t 1 1 186777 639 0.00 2019-12-05 22:18:08 2019-12-05 22:18:26 t 1 1 186781 639 0.00 2019-12-05 22:23:22 2019-12-05 22:23:36 t 1 1 186783 722 0.00 2019-12-05 22:13:08 2019-12-05 22:24:54 t 1 1 186785 696 0.00 2019-12-05 21:47:13 2019-12-05 22:26:15 t 1 1 186789 635 0.00 2019-12-05 22:17:08 2019-12-05 22:29:34 t 1 1 186792 631 0.00 2019-12-05 22:31:06 2019-12-05 22:32:31 t 1 1 186793 220 0.00 2019-12-05 22:32:21 2019-12-05 22:33:25 t 1 1 186796 220 0.00 2019-12-05 22:34:03 2019-12-05 22:36:12 t 1 1 186798 514 0.00 2019-12-05 22:20:26 2019-12-05 22:36:37 t 1 1 186801 220 0.00 2019-12-05 22:37:14 2019-12-05 22:37:29 t 1 1 186804 709 0.00 2019-12-05 22:37:35 2019-12-05 22:39:12 t 1 1 186805 687 0.00 2019-12-05 22:39:39 2019-12-05 22:39:48 t 1 1 186806 639 0.00 2019-12-05 22:39:51 2019-12-05 22:40:07 t 1 1 186810 639 0.00 2019-12-05 22:41:19 2019-12-05 22:41:57 t 1 1 186812 660 0.00 2019-12-05 22:04:26 2019-12-05 22:42:40 t 1 1 186814 451 0.00 2019-12-05 22:43:51 2019-12-05 22:43:51 f 1 1 186816 687 0.00 2019-12-05 22:46:53 2019-12-05 22:47:08 t 1 1 186820 645 0.00 2019-12-05 22:47:53 2019-12-05 22:48:03 t 1 1 186821 220 0.00 2019-12-05 22:47:22 2019-12-05 22:49:12 t 1 1 186822 514 0.00 2019-12-05 22:36:37 2019-12-05 22:49:23 t 1 1 186825 639 0.00 2019-12-05 22:50:21 2019-12-05 22:50:31 t 1 1 186828 544 0.00 2019-12-05 22:47:39 2019-12-05 22:53:44 t 1 1 186836 639 0.00 2019-12-05 22:55:57 2019-12-05 22:58:14 t 1 1 186837 639 0.00 2019-12-05 22:58:41 2019-12-05 22:59:00 t 1 1 186838 660 0.00 2019-12-05 22:42:40 2019-12-05 23:00:24 t 1 1 186840 481 0.00 2019-12-05 19:58:38 2019-12-05 23:02:24 t 1 1 186848 538 0.00 2019-12-05 23:05:01 2019-12-05 23:06:40 t 1 1 186849 544 0.00 2019-12-05 23:05:23 2019-12-05 23:08:00 t 1 1 186851 639 0.00 2019-12-05 23:05:56 2019-12-05 23:08:14 t 1 1 186852 578 0.00 2019-12-05 21:28:11 2019-12-05 23:13:48 t 1 1 186853 562 0.00 2019-12-05 23:13:39 2019-12-05 23:14:44 t 1 1 186854 220 0.00 2019-12-05 23:04:45 2019-12-05 23:14:56 t 1 1 186856 544 0.00 2019-12-05 23:09:18 2019-12-05 23:15:42 t 1 1 186862 578 0.00 2019-12-05 23:13:48 2019-12-05 23:20:51 t 1 1 186863 220 0.00 2019-12-05 23:15:30 2019-12-05 23:25:43 t 1 1 186866 660 0.00 2019-12-05 23:00:24 2019-12-05 23:25:53 t 1 1 186867 220 0.00 2019-12-05 23:25:43 2019-12-05 23:26:16 t 1 1 186870 639 0.00 2019-12-05 23:16:55 2019-12-05 23:29:28 t 1 1 186871 687 0.00 2019-12-05 22:48:14 2019-12-05 23:30:59 t 1 1 186874 645 0.00 2019-12-05 23:19:27 2019-12-05 23:34:51 t 1 1 186876 562 0.00 2019-12-05 23:35:23 2019-12-05 23:36:43 t 1 1 186878 660 0.00 2019-12-05 23:25:53 2019-12-05 23:38:09 t 1 1 186883 220 0.00 2019-12-05 23:26:19 2019-12-05 23:39:50 t 1 1 186885 689 0.00 2019-12-05 23:43:33 2019-12-05 23:44:37 t 1 1 186889 220 0.00 2019-12-05 23:45:56 2019-12-05 23:46:56 t 1 1 186895 562 0.00 2019-12-05 23:57:05 2019-12-05 23:57:14 t 1 1 186902 627 0.00 2019-12-05 23:55:08 2019-12-06 00:05:38 t 1 1 186905 689 0.00 2019-12-06 00:06:00 2019-12-06 00:06:25 t 1 1 186907 220 0.00 2019-12-05 23:54:07 2019-12-06 00:08:30 t 1 2 186910 687 0.00 2019-12-05 23:44:49 2019-12-06 00:11:15 t 1 1 186913 696 0.00 2019-12-06 00:09:21 2019-12-06 00:14:58 t 1 1 186914 689 0.00 2019-12-06 00:08:36 2019-12-06 00:15:28 t 1 1 186915 562 0.00 2019-12-06 00:15:32 2019-12-06 00:15:42 t 1 1 186923 671 0.00 2019-12-06 00:16:01 2019-12-06 00:21:58 t 1 1 186924 220 0.00 2019-12-06 00:21:19 2019-12-06 00:22:20 t 1 1 186839 510 0.00 2019-12-05 22:48:00 2019-12-05 23:00:42 t 1 1 186843 220 0.00 2019-12-05 23:04:15 2019-12-05 23:04:45 t 1 1 186845 639 0.00 2019-12-05 23:03:56 2019-12-05 23:05:14 t 1 1 186847 639 0.00 2019-12-05 23:06:20 2019-12-05 23:06:29 t 1 1 186850 528 0.00 2019-12-05 22:52:05 2019-12-05 23:08:14 t 1 1 186855 220 0.00 2019-12-05 23:14:55 2019-12-05 23:15:31 t 1 1 186858 562 0.00 2019-12-05 23:14:53 2019-12-05 23:16:00 t 1 1 186859 639 0.00 2019-12-05 23:07:41 2019-12-05 23:16:56 t 1 1 186860 645 0.00 2019-12-05 23:18:51 2019-12-05 23:20:14 t 1 1 186861 718 0.00 2019-12-05 23:02:50 2019-12-05 23:20:32 t 1 1 186865 562 0.00 2019-12-05 23:25:21 2019-12-05 23:25:49 t 1 1 186869 689 0.00 2019-12-05 23:15:08 2019-12-05 23:27:59 t 1 1 186872 689 0.00 2019-12-05 23:28:10 2019-12-05 23:33:34 t 1 1 186873 689 0.00 2019-12-05 23:33:43 2019-12-05 23:34:44 t 1 1 186877 720 0.00 2019-12-05 23:02:52 2019-12-05 23:37:42 t 1 1 186879 220 0.00 2019-12-05 23:36:14 2019-12-05 23:38:14 t 1 1 186880 645 0.00 2019-12-05 23:34:51 2019-12-05 23:38:32 t 1 1 186882 512 0.00 2019-12-05 23:09:15 2019-12-05 23:39:37 t 1 1 186886 687 0.00 2019-12-05 23:30:59 2019-12-05 23:44:49 t 1 1 186888 562 0.00 2019-12-05 23:46:10 2019-12-05 23:46:32 t 1 1 186892 660 0.00 2019-12-05 23:53:32 2019-12-05 23:54:56 t 1 1 186896 220 0.00 2019-12-05 23:59:27 2019-12-06 00:00:28 t 1 1 186897 220 0.00 2019-12-06 00:03:02 2019-12-06 00:03:10 t 1 1 186898 220 0.00 2019-12-06 00:03:28 2019-12-06 00:03:29 t 1 1 186901 696 0.00 2019-12-05 22:59:46 2019-12-06 00:05:38 t 1 1 186903 689 0.00 2019-12-05 23:54:40 2019-12-06 00:05:48 t 1 1 186908 645 0.00 2019-12-05 23:49:33 2019-12-06 00:09:12 t 1 1 186916 671 0.00 2019-12-06 00:11:38 2019-12-06 00:16:01 t 1 1 186917 220 0.00 2019-12-06 00:16:48 2019-12-06 00:16:58 t 1 1 186919 687 0.00 2019-12-06 00:11:15 2019-12-06 00:18:34 t 1 1 186920 510 0.00 2019-12-05 23:00:42 2019-12-06 00:19:37 t 1 1 186922 220 0.00 2019-12-06 00:20:10 2019-12-06 00:21:15 t 1 1 186925 574 0.00 2019-12-06 00:15:40 2019-12-06 00:22:28 t 1 1 186930 611 0.00 2019-12-06 00:22:02 2019-12-06 00:26:55 t 1 1 186932 627 0.00 2019-12-06 00:23:36 2019-12-06 00:27:24 t 1 1 186937 220 0.00 2019-12-06 00:31:05 2019-12-06 00:32:06 t 1 1 186942 671 0.00 2019-12-06 00:29:42 2019-12-06 00:35:13 t 1 1 186943 220 0.00 2019-12-05 23:57:22 2019-12-06 00:35:45 t 1 2 186952 611 0.00 2019-12-06 00:37:56 2019-12-06 00:49:00 t 1 1 186953 671 0.00 2019-12-06 00:35:12 2019-12-06 00:52:12 t 1 1 186955 220 0.00 2019-12-06 00:55:30 2019-12-06 00:55:40 t 1 1 186967 220 0.00 2019-12-06 00:22:39 2019-12-06 01:09:03 t 1 2 186968 220 0.00 2019-12-06 01:11:44 2019-12-06 01:11:58 t 1 1 186975 622 0.00 2019-12-06 00:55:55 2019-12-06 01:26:30 t 1 1 186976 679 0.00 2019-12-06 01:17:48 2019-12-06 01:28:50 t 1 1 186981 220 0.00 2019-12-06 01:42:03 2019-12-06 01:42:19 t 1 1 186982 611 0.00 2019-12-06 01:21:36 2019-12-06 01:42:30 t 1 1 186985 679 0.00 2019-12-06 01:28:50 2019-12-06 01:45:17 t 1 1 186989 611 0.00 2019-12-06 01:42:30 2019-12-06 01:51:24 t 1 1 186995 220 0.00 2019-12-06 02:03:06 2019-12-06 02:03:31 t 1 1 186997 516 0.00 2019-12-06 01:56:20 2019-12-06 02:04:49 t 1 1 186999 456 0.00 2019-12-06 01:39:38 2019-12-06 02:05:40 t 1 1 187002 220 0.00 2019-12-06 02:09:56 2019-12-06 02:10:09 t 1 1 187003 679 0.00 2019-12-06 02:04:58 2019-12-06 02:11:00 t 1 1 187005 687 0.00 2019-12-06 01:48:34 2019-12-06 02:12:06 t 1 1 187008 687 0.00 2019-12-06 02:12:41 2019-12-06 02:15:18 t 1 1 187012 220 0.00 2019-12-06 02:20:26 2019-12-06 02:20:41 t 1 1 187014 551 0.00 2019-12-06 02:15:58 2019-12-06 02:27:43 t 1 1 187020 551 0.00 2019-12-06 02:27:43 2019-12-06 02:42:06 t 1 1 187025 611 0.00 2019-12-06 02:05:49 2019-12-06 02:55:24 t 1 1 187028 220 0.00 2019-12-06 03:02:47 2019-12-06 03:03:02 t 1 1 187035 220 0.00 2019-12-06 03:34:17 2019-12-06 03:34:31 t 1 1 187039 544 0.00 2019-12-06 02:57:20 2019-12-06 03:46:38 t 1 1 187041 687 0.00 2019-12-06 02:59:10 2019-12-06 03:56:16 t 1 1 187042 516 0.00 2019-12-06 03:56:40 2019-12-06 03:56:56 t 1 1 187043 220 0.00 2019-12-06 04:03:12 2019-12-06 04:03:27 t 1 1 187047 220 0.00 2019-12-06 04:45:12 2019-12-06 04:45:20 t 1 1 187048 220 0.00 2019-12-06 04:45:28 2019-12-06 04:45:42 t 1 1 187049 520 0.00 2019-12-06 04:29:19 2019-12-06 04:52:03 t 1 1 187054 220 0.00 2019-12-06 05:11:50 2019-12-06 05:17:13 t 1 2 187060 220 0.00 2019-12-06 05:49:58 2019-12-06 05:50:08 t 1 1 187063 220 0.00 2019-12-06 05:54:29 2019-12-06 05:54:43 t 1 1 187069 516 0.00 2019-12-06 06:34:29 2019-12-06 06:36:34 t 1 1 187080 220 0.00 2019-12-06 07:01:51 2019-12-06 07:01:52 t 1 1 187084 516 0.00 2019-12-06 07:02:59 2019-12-06 07:08:09 t 1 1 187085 220 0.00 2019-12-06 07:08:23 2019-12-06 07:08:37 t 1 1 187088 220 0.00 2019-12-06 07:29:21 2019-12-06 07:29:36 t 1 1 187093 611 0.00 2019-12-06 07:47:18 2019-12-06 07:47:34 t 1 1 187095 675 0.00 2019-12-06 07:33:54 2019-12-06 07:50:42 t 1 1 187098 639 0.00 2019-12-06 07:53:48 2019-12-06 07:56:39 t 1 1 187099 639 0.00 2019-12-06 07:56:45 2019-12-06 07:57:03 t 1 1 187103 639 0.00 2019-12-06 08:02:15 2019-12-06 08:02:55 t 1 1 187105 639 0.00 2019-12-06 08:08:30 2019-12-06 08:08:58 t 1 1 187109 689 0.00 2019-12-06 08:15:42 2019-12-06 08:16:07 t 1 1 187115 665 0.00 2019-12-06 08:11:59 2019-12-06 08:23:53 t 1 1 187117 689 0.00 2019-12-06 08:24:44 2019-12-06 08:25:00 t 1 1 187120 689 0.00 2019-12-06 08:26:36 2019-12-06 08:27:04 t 1 1 187122 665 0.00 2019-12-06 08:23:53 2019-12-06 08:28:13 t 1 1 187125 639 0.00 2019-12-06 08:29:36 2019-12-06 08:30:12 t 1 1 187127 220 0.00 2019-12-06 08:29:42 2019-12-06 08:32:03 t 1 1 187129 689 0.00 2019-12-06 08:32:04 2019-12-06 08:32:39 t 1 1 187130 220 0.00 2019-12-06 08:32:30 2019-12-06 08:32:46 t 1 1 187132 220 0.00 2019-12-06 08:32:46 2019-12-06 08:33:53 t 1 1 187135 709 0.00 2019-12-06 08:32:43 2019-12-06 08:34:17 t 1 1 187139 220 0.00 2019-12-06 08:34:19 2019-12-06 08:36:17 t 1 1 187141 709 0.00 2019-12-06 08:32:49 2019-12-06 08:36:40 t 1 1 187146 675 0.00 2019-12-06 08:28:53 2019-12-06 08:39:27 t 1 1 187149 675 0.00 2019-12-06 08:39:27 2019-12-06 08:42:00 t 1 1 187150 689 0.00 2019-12-06 08:43:00 2019-12-06 08:43:27 t 1 1 187151 689 0.00 2019-12-06 08:43:38 2019-12-06 08:45:25 t 1 1 187154 639 0.00 2019-12-06 08:43:26 2019-12-06 08:46:26 t 1 1 187156 639 0.00 2019-12-06 08:46:36 2019-12-06 08:48:17 t 1 1 187157 512 0.00 2019-12-06 08:44:15 2019-12-06 08:48:38 t 1 1 187160 665 0.00 2019-12-06 08:42:20 2019-12-06 08:49:41 t 1 1 187161 665 0.00 2019-12-06 08:49:41 2019-12-06 08:51:21 t 1 1 187163 639 0.00 2019-12-06 08:47:05 2019-12-06 08:51:34 t 1 1 187165 689 0.00 2019-12-06 08:51:53 2019-12-06 08:52:15 t 1 1 186890 689 0.00 2019-12-05 23:44:47 2019-12-05 23:52:32 t 1 1 186891 660 0.00 2019-12-05 23:38:09 2019-12-05 23:53:32 t 1 1 186893 220 0.00 2019-12-05 23:55:12 2019-12-05 23:55:23 t 1 1 186894 220 0.00 2019-12-05 23:55:37 2019-12-05 23:56:37 t 1 1 186899 528 0.00 2019-12-05 23:08:14 2019-12-06 00:03:46 t 1 1 186900 512 0.00 2019-12-05 23:48:40 2019-12-06 00:05:00 t 1 1 186904 220 0.00 2019-12-06 00:03:37 2019-12-06 00:06:15 t 1 1 186906 562 0.00 2019-12-06 00:07:47 2019-12-06 00:08:04 t 1 1 186909 627 0.00 2019-12-06 00:05:38 2019-12-06 00:10:45 t 1 1 186911 220 0.00 2019-12-06 00:12:53 2019-12-06 00:13:03 t 1 1 186912 220 0.00 2019-12-06 00:13:18 2019-12-06 00:14:18 t 1 1 186918 220 0.00 2019-12-06 00:17:07 2019-12-06 00:17:07 t 1 1 186921 220 0.00 2019-12-06 00:20:53 2019-12-06 00:21:03 t 1 1 186928 687 0.00 2019-12-06 00:19:13 2019-12-06 00:26:23 t 1 1 186934 679 0.00 2019-12-06 00:07:27 2019-12-06 00:30:28 t 1 1 186938 528 0.00 2019-12-06 00:03:46 2019-12-06 00:32:23 t 1 1 186948 696 0.00 2019-12-06 00:37:28 2019-12-06 00:44:51 t 1 1 186950 220 0.00 2019-12-06 00:48:14 2019-12-06 00:48:24 t 1 1 186954 528 0.00 2019-12-06 00:32:23 2019-12-06 00:53:10 t 1 1 186957 671 0.00 2019-12-06 00:52:11 2019-12-06 00:56:09 t 1 1 186959 220 0.00 2019-12-06 00:55:56 2019-12-06 00:57:15 t 1 1 186961 528 0.00 2019-12-06 00:53:10 2019-12-06 01:01:00 t 1 1 186963 220 0.00 2019-12-06 01:02:14 2019-12-06 01:02:27 t 1 1 186964 220 0.00 2019-12-06 01:02:37 2019-12-06 01:04:15 t 1 1 186966 687 0.00 2019-12-06 01:01:48 2019-12-06 01:08:52 t 1 1 186971 512 0.00 2019-12-06 00:05:00 2019-12-06 01:20:28 t 1 1 186974 545 0.00 2019-12-05 22:55:01 2019-12-06 01:21:53 t 1 1 186977 687 0.00 2019-12-06 01:18:55 2019-12-06 01:30:34 t 1 1 186979 220 0.00 2019-12-06 01:31:32 2019-12-06 01:31:41 t 1 1 186984 687 0.00 2019-12-06 01:35:03 2019-12-06 01:45:02 t 1 1 186990 516 0.00 2019-12-06 01:51:36 2019-12-06 01:52:05 t 1 1 186991 220 0.00 2019-12-06 01:52:36 2019-12-06 01:52:44 t 1 1 186994 611 0.00 2019-12-06 01:51:23 2019-12-06 02:02:32 t 1 1 186996 220 0.00 2019-12-06 02:03:30 2019-12-06 02:04:31 t 1 1 186998 679 0.00 2019-12-06 01:45:17 2019-12-06 02:04:58 t 1 1 187000 611 0.00 2019-12-06 02:02:31 2019-12-06 02:05:50 t 1 1 187004 516 0.00 2019-12-06 02:04:49 2019-12-06 02:12:03 t 1 1 187010 687 0.00 2019-12-06 02:15:46 2019-12-06 02:17:48 t 1 1 187013 544 0.00 2019-12-06 02:17:50 2019-12-06 02:21:34 t 1 1 187015 679 0.00 2019-12-06 02:26:16 2019-12-06 02:27:44 t 1 1 187016 220 0.00 2019-12-06 02:30:56 2019-12-06 02:31:04 t 1 1 187017 220 0.00 2019-12-06 02:31:12 2019-12-06 02:31:27 t 1 1 187019 220 0.00 2019-12-06 02:41:44 2019-12-06 02:41:59 t 1 1 187021 633 0.00 2019-12-06 02:14:52 2019-12-06 02:42:08 t 1 1 187022 687 0.00 2019-12-06 02:18:06 2019-12-06 02:42:20 t 1 1 187023 633 0.00 2019-12-06 02:42:08 2019-12-06 02:50:57 t 1 1 187026 633 0.00 2019-12-06 02:50:57 2019-12-06 02:59:04 t 1 1 187030 220 0.00 2019-12-06 03:13:17 2019-12-06 03:13:25 t 1 1 187031 633 0.00 2019-12-06 03:07:37 2019-12-06 03:17:22 t 1 1 187034 633 0.00 2019-12-06 03:17:22 2019-12-06 03:25:38 t 1 1 187036 633 0.00 2019-12-06 03:25:38 2019-12-06 03:37:42 t 1 1 187037 220 0.00 2019-12-06 03:42:08 2019-12-06 03:42:24 t 1 1 187038 633 0.00 2019-12-06 03:37:42 2019-12-06 03:44:28 t 1 1 187044 220 0.00 2019-12-06 04:13:42 2019-12-06 04:13:57 t 1 1 187045 220 0.00 2019-12-06 04:24:11 2019-12-06 04:24:27 t 1 1 187046 220 0.00 2019-12-06 04:34:42 2019-12-06 04:34:57 t 1 1 187050 220 0.00 2019-12-06 04:55:58 2019-12-06 04:56:13 t 1 1 187057 220 0.00 2019-12-06 05:37:57 2019-12-06 05:38:12 t 1 1 187058 220 0.00 2019-12-06 05:38:20 2019-12-06 05:38:21 t 1 1 187061 220 0.00 2019-12-06 05:50:24 2019-12-06 05:50:25 t 1 1 187062 220 0.00 2019-12-06 05:50:33 2019-12-06 05:51:33 t 1 1 187067 220 0.00 2019-12-06 06:25:56 2019-12-06 06:26:04 t 1 1 187068 220 0.00 2019-12-06 06:26:12 2019-12-06 06:26:20 t 1 1 187071 220 0.00 2019-12-06 06:36:58 2019-12-06 06:37:12 t 1 1 187078 220 0.00 2019-12-06 06:52:04 2019-12-06 06:54:17 t 1 1 187079 220 0.00 2019-12-06 07:01:26 2019-12-06 07:01:35 t 1 1 187081 220 0.00 2019-12-06 07:02:00 2019-12-06 07:03:00 t 1 1 187082 220 0.00 2019-12-06 07:03:29 2019-12-06 07:03:32 t 1 1 187089 220 0.00 2019-12-06 07:39:51 2019-12-06 07:40:06 t 1 1 187090 311 0.00 2019-12-06 07:15:26 2019-12-06 07:40:46 t 1 2 187094 220 0.00 2019-12-06 07:50:21 2019-12-06 07:50:22 t 1 1 187096 675 0.00 2019-12-06 07:50:42 2019-12-06 07:52:22 t 1 1 187100 220 0.00 2019-12-06 07:56:50 2019-12-06 07:57:04 t 1 1 187107 689 0.00 2019-12-06 08:11:01 2019-12-06 08:15:15 t 1 1 187108 691 0.00 2019-12-06 08:11:50 2019-12-06 08:15:24 t 1 1 187110 220 0.00 2019-12-06 08:17:52 2019-12-06 08:18:00 t 1 1 187111 220 0.00 2019-12-06 08:18:17 2019-12-06 08:19:17 t 1 1 187113 689 0.00 2019-12-06 08:21:48 2019-12-06 08:22:10 t 1 1 187114 689 0.00 2019-12-06 08:22:21 2019-12-06 08:22:43 t 1 1 187116 639 0.00 2019-12-06 08:09:59 2019-12-06 08:24:53 t 1 1 187118 220 0.00 2019-12-06 08:24:55 2019-12-06 08:25:04 t 1 1 187119 639 0.00 2019-12-06 08:26:26 2019-12-06 08:26:33 t 1 1 187121 220 0.00 2019-12-06 08:25:21 2019-12-06 08:27:17 t 1 1 187124 675 0.00 2019-12-06 08:19:21 2019-12-06 08:28:53 t 1 1 187126 665 0.00 2019-12-06 08:28:13 2019-12-06 08:31:47 t 1 1 187131 639 0.00 2019-12-06 08:32:27 2019-12-06 08:32:48 t 1 1 187133 220 0.00 2019-12-06 08:33:52 2019-12-06 08:34:01 t 1 1 187136 639 0.00 2019-12-06 08:34:46 2019-12-06 08:34:48 t 1 1 187145 689 0.00 2019-12-06 08:38:45 2019-12-06 08:39:07 t 1 1 187153 689 0.00 2019-12-06 08:46:11 2019-12-06 08:46:13 t 1 1 187158 689 0.00 2019-12-06 08:48:36 2019-12-06 08:48:56 t 1 1 187159 689 0.00 2019-12-06 08:49:09 2019-12-06 08:49:20 t 1 1 187162 220 0.00 2019-12-06 08:51:18 2019-12-06 08:51:26 t 1 1 187164 689 0.00 2019-12-06 08:51:27 2019-12-06 08:51:42 t 1 1 187166 637 0.00 2019-12-06 08:07:12 2019-12-06 08:53:31 t 1 1 187168 689 0.00 2019-12-06 08:53:55 2019-12-06 08:54:22 t 1 1 187170 639 0.00 2019-12-06 08:55:34 2019-12-06 08:55:36 t 1 1 187171 639 0.00 2019-12-06 08:56:09 2019-12-06 08:56:18 t 1 1 187173 551 0.00 2019-12-06 02:42:06 2019-12-06 08:58:54 t 1 1 187174 689 0.00 2019-12-06 08:56:02 2019-12-06 09:01:26 t 1 1 187175 689 0.00 2019-12-06 09:01:41 2019-12-06 09:01:59 t 1 1 187180 611 0.00 2019-12-06 09:01:35 2019-12-06 09:05:31 t 1 1 187181 622 0.00 2019-12-06 08:58:50 2019-12-06 09:05:40 t 1 1 187182 689 0.00 2019-12-06 09:05:26 2019-12-06 09:07:12 t 1 1 187183 675 0.00 2019-12-06 08:58:23 2019-12-06 09:08:21 t 1 1 187185 639 0.00 2019-12-06 09:09:10 2019-12-06 09:09:36 t 1 1 187187 639 0.00 2019-12-06 09:09:35 2019-12-06 09:10:06 t 1 1 186926 544 0.00 2019-12-06 00:22:28 2019-12-06 00:22:32 t 1 1 186927 627 0.00 2019-12-06 00:10:45 2019-12-06 00:23:36 t 1 1 186929 562 0.00 2019-12-06 00:26:05 2019-12-06 00:26:27 t 1 1 186931 633 0.00 2019-12-06 00:18:11 2019-12-06 00:27:06 t 1 1 186933 671 0.00 2019-12-06 00:21:58 2019-12-06 00:29:42 t 1 1 186935 220 0.00 2019-12-06 00:30:39 2019-12-06 00:30:48 t 1 1 186936 687 0.00 2019-12-06 00:26:23 2019-12-06 00:31:25 t 1 1 186939 220 0.00 2019-12-05 23:00:07 2019-12-06 00:32:33 t 1 2 186940 562 0.00 2019-12-06 00:33:52 2019-12-06 00:33:52 t 1 1 186941 562 0.00 2019-12-06 00:33:52 2019-12-06 00:35:12 t 1 1 186944 687 0.00 2019-12-06 00:31:25 2019-12-06 00:37:39 t 1 1 186945 611 0.00 2019-12-06 00:26:55 2019-12-06 00:37:56 t 1 1 186946 220 0.00 2019-12-06 00:40:22 2019-12-06 00:40:36 t 1 1 186947 220 0.00 2019-12-06 00:40:47 2019-12-06 00:41:48 t 1 1 186949 687 0.00 2019-12-06 00:37:39 2019-12-06 00:47:20 t 1 1 186951 220 0.00 2019-12-06 00:48:40 2019-12-06 00:48:41 t 1 1 186956 679 0.00 2019-12-06 00:30:28 2019-12-06 00:55:44 t 1 1 186958 611 0.00 2019-12-06 00:49:00 2019-12-06 00:56:37 t 1 1 186960 667 0.00 2019-12-06 01:00:02 2019-12-06 01:00:33 t 1 1 186962 687 0.00 2019-12-06 00:47:20 2019-12-06 01:01:40 t 1 1 186965 679 0.00 2019-12-06 00:55:44 2019-12-06 01:06:45 t 1 1 186969 611 0.00 2019-12-06 00:58:17 2019-12-06 01:15:59 t 1 1 186970 679 0.00 2019-12-06 01:06:45 2019-12-06 01:17:48 t 1 1 186972 220 0.00 2019-12-06 01:21:02 2019-12-06 01:21:17 t 1 1 186973 611 0.00 2019-12-06 01:15:59 2019-12-06 01:21:36 t 1 1 186978 687 0.00 2019-12-06 01:30:34 2019-12-06 01:31:40 t 1 1 186980 687 0.00 2019-12-06 01:31:46 2019-12-06 01:34:36 t 1 1 186983 516 0.00 2019-12-06 01:43:53 2019-12-06 01:44:55 t 1 1 186986 554 0.00 2019-12-06 01:48:10 2019-12-06 01:48:10 f 1 1 186987 503 0.00 2019-12-06 01:31:03 2019-12-06 01:48:48 t 1 1 186988 516 0.00 2019-12-06 01:51:14 2019-12-06 01:51:21 t 1 1 186992 514 0.00 2019-12-06 00:12:22 2019-12-06 01:54:19 t 1 1 186993 671 0.00 2019-12-06 01:59:16 2019-12-06 02:00:38 t 1 1 187001 622 0.00 2019-12-06 01:34:54 2019-12-06 02:09:36 t 1 1 187006 516 0.00 2019-12-06 02:12:19 2019-12-06 02:12:42 t 1 1 187007 633 0.00 2019-12-06 01:57:44 2019-12-06 02:14:52 t 1 1 187009 551 0.00 2019-12-06 02:00:11 2019-12-06 02:15:58 t 1 1 187011 514 0.00 2019-12-06 01:54:19 2019-12-06 02:20:06 t 1 1 187018 544 0.00 2019-12-06 02:23:21 2019-12-06 02:41:53 t 1 1 187024 220 0.00 2019-12-06 02:52:16 2019-12-06 02:52:31 t 1 1 187027 687 0.00 2019-12-06 02:46:27 2019-12-06 02:59:10 t 1 1 187029 633 0.00 2019-12-06 02:59:04 2019-12-06 03:07:37 t 1 1 187032 564 0.00 2019-12-05 21:12:58 2019-12-06 03:22:26 t 1 1 187033 220 0.00 2019-12-06 03:23:46 2019-12-06 03:24:02 t 1 1 187040 220 0.00 2019-12-06 03:52:41 2019-12-06 03:52:55 t 1 1 187051 520 0.00 2019-12-06 04:52:02 2019-12-06 05:00:48 t 1 1 187052 220 0.00 2019-12-06 05:06:28 2019-12-06 05:06:42 t 1 1 187053 220 0.00 2019-12-06 05:16:58 2019-12-06 05:17:12 t 1 1 187055 639 0.00 2019-12-06 05:21:49 2019-12-06 05:25:02 t 1 1 187056 220 0.00 2019-12-06 05:27:27 2019-12-06 05:27:35 t 1 1 187059 220 0.00 2019-12-06 05:41:33 2019-12-06 05:43:17 t 1 1 187064 220 0.00 2019-12-06 06:04:59 2019-12-06 06:05:06 t 1 1 187065 514 0.00 2019-12-06 02:20:06 2019-12-06 06:05:24 t 1 1 187066 220 0.00 2019-12-06 06:15:27 2019-12-06 06:15:42 t 1 1 187070 220 0.00 2019-12-06 06:36:41 2019-12-06 06:36:49 t 1 1 187072 220 0.00 2019-12-06 06:37:20 2019-12-06 06:38:21 t 1 1 187073 220 0.00 2019-12-06 06:41:11 2019-12-06 06:41:25 t 1 1 187074 516 0.00 2019-12-06 06:44:52 2019-12-06 06:48:13 t 1 1 187075 544 0.00 2019-12-06 03:46:38 2019-12-06 06:51:07 t 1 1 187076 220 0.00 2019-12-06 06:51:40 2019-12-06 06:51:56 t 1 1 187077 645 0.00 2019-12-06 06:50:25 2019-12-06 06:52:58 t 1 1 187083 220 0.00 2019-12-06 07:03:36 2019-12-06 07:07:24 t 1 1 187086 220 0.00 2019-12-06 07:18:52 2019-12-06 07:19:00 t 1 1 187087 675 0.00 2019-12-06 07:12:18 2019-12-06 07:27:53 t 1 1 187091 611 0.00 2019-12-06 07:44:51 2019-12-06 07:45:03 t 1 1 187092 611 0.00 2019-12-06 07:45:03 2019-12-06 07:47:21 t 1 1 187097 220 0.00 2019-12-06 07:50:30 2019-12-06 07:53:17 t 1 1 187101 639 0.00 2019-12-06 07:59:44 2019-12-06 08:01:02 t 1 1 187102 578 0.00 2019-12-05 23:20:51 2019-12-06 08:01:30 t 1 1 187104 665 0.00 2019-12-06 08:01:25 2019-12-06 08:06:17 t 1 1 187106 665 0.00 2019-12-06 08:06:17 2019-12-06 08:11:59 t 1 1 187112 689 0.00 2019-12-06 08:21:06 2019-12-06 08:21:34 t 1 1 187123 707 0.00 2019-12-06 07:47:35 2019-12-06 08:28:15 t 1 1 187128 220 0.00 2019-12-06 08:32:03 2019-12-06 08:32:19 t 1 1 187134 639 0.00 2019-12-06 08:33:40 2019-12-06 08:34:04 t 1 1 187137 689 0.00 2019-12-06 08:35:14 2019-12-06 08:35:29 t 1 1 187138 220 0.00 2019-12-06 08:35:30 2019-12-06 08:36:10 t 1 1 187140 639 0.00 2019-12-06 08:35:40 2019-12-06 08:36:31 t 1 1 187142 639 0.00 2019-12-06 08:37:12 2019-12-06 08:37:19 t 1 1 187143 689 0.00 2019-12-06 08:37:33 2019-12-06 08:38:01 t 1 1 187144 689 0.00 2019-12-06 08:38:10 2019-12-06 08:38:35 t 1 1 187147 220 0.00 2019-12-06 08:40:48 2019-12-06 08:40:57 t 1 1 187148 639 0.00 2019-12-06 08:41:14 2019-12-06 08:41:26 t 1 1 187152 689 0.00 2019-12-06 08:45:35 2019-12-06 08:46:02 t 1 1 187155 689 0.00 2019-12-06 08:46:28 2019-12-06 08:47:40 t 1 1 187167 512 0.00 2019-12-06 08:49:33 2019-12-06 08:53:45 t 1 1 187169 689 0.00 2019-12-06 08:54:32 2019-12-06 08:54:55 t 1 1 187172 639 0.00 2019-12-06 08:57:02 2019-12-06 08:57:36 t 1 1 187176 220 0.00 2019-12-06 09:01:48 2019-12-06 09:02:02 t 1 1 187177 689 0.00 2019-12-06 09:02:10 2019-12-06 09:02:32 t 1 1 187178 639 0.00 2019-12-06 09:03:37 2019-12-06 09:04:04 t 1 1 187179 689 0.00 2019-12-06 09:04:37 2019-12-06 09:05:13 t 1 1 187184 635 0.00 2019-12-06 09:07:31 2019-12-06 09:09:01 t 1 1 187186 689 0.00 2019-12-06 09:09:44 2019-12-06 09:09:52 t 1 1 187188 551 0.00 2019-12-06 08:58:54 2019-12-06 09:11:38 t 1 1 187189 220 0.00 2019-12-06 09:11:47 2019-12-06 09:12:19 t 1 1 187190 689 0.00 2019-12-06 09:11:10 2019-12-06 09:12:32 t 1 1 187191 220 0.00 2019-12-06 09:12:19 2019-12-06 09:12:33 t 1 1 187192 689 0.00 2019-12-06 09:12:43 2019-12-06 09:12:55 t 1 1 187193 689 0.00 2019-12-06 09:13:05 2019-12-06 09:13:27 t 1 1 187194 689 0.00 2019-12-06 09:13:38 2019-12-06 09:14:01 t 1 1 187195 639 0.00 2019-12-06 09:14:23 2019-12-06 09:14:29 t 1 1 187196 689 0.00 2019-12-06 09:14:51 2019-12-06 09:14:59 t 1 1 187197 516 0.00 2019-12-06 09:12:06 2019-12-06 09:16:08 t 1 1 187198 639 0.00 2019-12-06 09:15:51 2019-12-06 09:16:14 t 1 1 187199 639 0.00 2019-12-06 09:16:45 2019-12-06 09:16:49 t 1 1 187200 520 0.00 2019-12-06 09:11:34 2019-12-06 09:17:02 t 1 1 187201 635 0.00 2019-12-06 09:15:33 2019-12-06 09:17:07 t 1 1 187202 220 0.00 2019-12-06 09:13:39 2019-12-06 09:17:52 t 1 1 187204 635 0.00 2019-12-06 09:18:09 2019-12-06 09:20:05 t 1 1 187207 639 0.00 2019-12-06 09:19:33 2019-12-06 09:21:17 t 1 1 187210 689 0.00 2019-12-06 09:25:08 2019-12-06 09:25:11 t 1 1 187213 637 0.00 2019-12-06 08:53:31 2019-12-06 09:25:26 t 1 1 187214 689 0.00 2019-12-06 09:25:21 2019-12-06 09:25:45 t 1 1 187216 538 0.00 2019-12-06 08:54:06 2019-12-06 09:26:25 t 1 1 187219 220 0.00 2019-12-06 09:18:32 2019-12-06 09:29:05 t 1 1 187223 220 0.00 2019-12-06 09:29:05 2019-12-06 09:31:23 t 1 1 187229 220 0.00 2019-12-06 09:34:44 2019-12-06 09:35:20 t 1 1 187232 220 0.00 2019-12-06 09:35:19 2019-12-06 09:35:50 t 1 1 187238 220 0.00 2019-12-06 09:36:59 2019-12-06 09:37:35 t 1 1 187245 639 0.00 2019-12-06 09:40:10 2019-12-06 09:40:34 t 1 1 187246 220 0.00 2019-12-06 09:40:02 2019-12-06 09:40:38 t 1 1 187248 220 0.00 2019-12-06 09:40:38 2019-12-06 09:41:04 t 1 1 187249 689 0.00 2019-12-06 09:40:56 2019-12-06 09:41:19 t 1 1 187250 689 0.00 2019-12-06 09:41:28 2019-12-06 09:42:01 t 1 1 187251 689 0.00 2019-12-06 09:42:10 2019-12-06 09:42:24 t 1 1 187255 220 0.00 2019-12-06 09:43:10 2019-12-06 09:43:19 t 1 1 187263 639 0.00 2019-12-06 09:48:38 2019-12-06 09:48:48 t 1 1 187267 220 0.00 2019-12-06 09:39:39 2019-12-06 09:50:57 t 1 2 187268 689 0.00 2019-12-06 09:51:46 2019-12-06 09:52:05 t 1 1 187274 639 0.00 2019-12-06 09:53:28 2019-12-06 09:55:17 t 1 1 187275 679 0.00 2019-12-06 09:53:25 2019-12-06 09:55:20 t 1 1 187279 694 0.00 2019-12-06 07:10:34 2019-12-06 10:02:37 t 1 1 187280 689 0.00 2019-12-06 10:02:46 2019-12-06 10:03:00 t 1 1 187284 220 0.00 2019-12-06 09:54:15 2019-12-06 10:04:11 t 1 1 187286 220 0.00 2019-12-06 10:04:11 2019-12-06 10:04:21 t 1 1 187288 637 0.00 2019-12-06 09:42:25 2019-12-06 10:06:06 t 1 1 187292 689 0.00 2019-12-06 10:08:37 2019-12-06 10:08:57 t 1 1 187293 689 0.00 2019-12-06 10:09:09 2019-12-06 10:09:29 t 1 1 187294 627 0.00 2019-12-06 10:03:00 2019-12-06 10:10:44 t 1 1 187299 689 0.00 2019-12-06 10:13:40 2019-12-06 10:14:23 t 1 1 187300 667 0.00 2019-12-06 10:12:20 2019-12-06 10:14:48 t 1 1 187303 689 0.00 2019-12-06 10:14:36 2019-12-06 10:15:55 t 1 1 187304 694 0.00 2019-12-06 10:02:37 2019-12-06 10:16:25 t 1 1 187307 689 0.00 2019-12-06 10:19:49 2019-12-06 10:20:59 t 1 1 187312 689 0.00 2019-12-06 10:22:49 2019-12-06 10:23:08 t 1 1 187313 694 0.00 2019-12-06 10:16:25 2019-12-06 10:23:53 t 1 1 187320 639 0.00 2019-12-06 10:30:29 2019-12-06 10:30:54 t 1 1 187321 689 0.00 2019-12-06 10:32:17 2019-12-06 10:32:26 t 1 1 187322 689 0.00 2019-12-06 10:32:41 2019-12-06 10:33:00 t 1 1 187325 689 0.00 2019-12-06 10:33:47 2019-12-06 10:34:04 t 1 1 187331 220 0.00 2019-12-06 10:36:06 2019-12-06 10:36:22 t 1 1 187333 675 0.00 2019-12-06 10:39:40 2019-12-06 10:41:12 t 1 1 187334 490 0.00 2019-12-06 10:32:58 2019-12-06 10:42:15 t 1 1 187335 689 0.00 2019-12-06 10:41:50 2019-12-06 10:42:20 t 1 1 187337 707 0.00 2019-12-06 10:26:07 2019-12-06 10:42:42 t 1 1 187339 689 0.00 2019-12-06 10:42:38 2019-12-06 10:42:49 t 1 1 187342 689 0.00 2019-12-06 10:43:42 2019-12-06 10:43:56 t 1 1 187343 689 0.00 2019-12-06 10:44:12 2019-12-06 10:44:27 t 1 1 187344 689 0.00 2019-12-06 10:44:41 2019-12-06 10:44:55 t 1 1 187347 639 0.00 2019-12-06 10:46:05 2019-12-06 10:46:24 t 1 1 187353 675 0.00 2019-12-06 10:47:23 2019-12-06 10:50:17 t 1 1 187355 722 0.00 2019-12-06 10:48:18 2019-12-06 10:51:40 t 1 1 187359 639 0.00 2019-12-06 10:53:33 2019-12-06 10:54:41 t 1 1 187360 707 0.00 2019-12-06 10:52:10 2019-12-06 10:55:28 t 1 1 187363 689 0.00 2019-12-06 10:57:16 2019-12-06 10:57:38 t 1 1 187366 694 0.00 2019-12-06 10:23:53 2019-12-06 10:59:02 t 1 1 187367 689 0.00 2019-12-06 10:58:48 2019-12-06 10:59:34 t 1 1 187368 639 0.00 2019-12-06 10:59:34 2019-12-06 11:00:02 t 1 1 187372 667 0.00 2019-12-06 11:03:57 2019-12-06 11:05:35 t 1 1 187373 220 0.00 2019-12-06 10:56:16 2019-12-06 11:06:39 t 1 2 187376 639 0.00 2019-12-06 11:07:36 2019-12-06 11:07:43 t 1 1 187378 660 0.00 2019-12-06 10:21:40 2019-12-06 11:09:07 t 1 1 187379 607 0.00 2019-12-06 08:56:53 2019-12-06 11:09:28 t 1 1 187382 639 0.00 2019-12-06 11:13:02 2019-12-06 11:13:09 t 1 1 187383 722 0.00 2019-12-06 11:00:11 2019-12-06 11:14:40 t 1 1 187384 611 0.00 2019-12-06 11:11:00 2019-12-06 11:14:55 t 1 1 187388 611 0.00 2019-12-06 11:14:55 2019-12-06 11:18:29 t 1 1 187392 675 0.00 2019-12-06 11:16:09 2019-12-06 11:22:50 t 1 1 187394 591 0.00 2019-12-06 11:02:02 2019-12-06 11:24:50 t 1 1 187398 673 0.00 2019-12-06 09:23:28 2019-12-06 11:30:26 t 1 1 187401 683 0.00 2019-12-06 11:30:24 2019-12-06 11:32:17 t 1 1 187405 639 0.00 2019-12-06 11:35:38 2019-12-06 11:35:40 t 1 1 187412 707 0.00 2019-12-06 11:10:33 2019-12-06 11:40:12 t 1 1 187413 639 0.00 2019-12-06 11:42:05 2019-12-06 11:42:40 t 1 1 187419 637 0.00 2019-12-06 11:29:22 2019-12-06 11:49:24 t 1 1 187427 220 0.00 2019-12-06 07:31:32 2019-12-06 11:54:55 t 1 2 187428 639 0.00 2019-12-06 11:55:11 2019-12-06 11:55:15 t 1 1 187430 718 0.00 2019-12-06 11:56:33 2019-12-06 11:56:36 t 1 1 187433 637 0.00 2019-12-06 11:49:24 2019-12-06 11:58:10 t 1 1 187434 692 0.00 2019-12-06 11:57:41 2019-12-06 11:58:44 t 1 1 187439 692 0.00 2019-12-06 12:00:37 2019-12-06 12:01:55 t 1 1 187442 675 0.00 2019-12-06 12:05:31 2019-12-06 12:07:24 t 1 1 187445 671 0.00 2019-12-06 12:04:29 2019-12-06 12:08:17 t 1 1 187446 671 0.00 2019-12-06 12:08:17 2019-12-06 12:09:09 t 1 1 187447 514 0.00 2019-12-06 12:08:03 2019-12-06 12:10:30 t 1 1 187450 639 0.00 2019-12-06 12:06:55 2019-12-06 12:11:30 t 1 1 187451 692 0.00 2019-12-06 12:10:44 2019-12-06 12:13:00 t 1 1 187461 692 0.00 2019-12-06 12:17:11 2019-12-06 12:20:00 t 1 1 187462 692 0.00 2019-12-06 12:19:59 2019-12-06 12:20:41 t 1 1 187463 692 0.00 2019-12-06 12:20:40 2019-12-06 12:21:27 t 1 1 187465 675 0.00 2019-12-06 12:20:00 2019-12-06 12:21:50 t 1 1 187468 516 0.00 2019-12-06 12:21:40 2019-12-06 12:22:46 t 1 1 187470 637 0.00 2019-12-06 12:16:42 2019-12-06 12:23:56 t 1 1 187477 615 0.00 2019-12-06 12:20:33 2019-12-06 12:37:06 t 1 1 187479 637 0.00 2019-12-06 12:23:56 2019-12-06 12:39:17 t 1 1 187480 639 0.00 2019-12-06 12:25:04 2019-12-06 12:39:21 t 1 1 187484 622 0.00 2019-12-06 11:44:25 2019-12-06 12:42:01 t 1 1 187486 220 0.00 2019-12-06 12:43:26 2019-12-06 12:43:41 t 1 1 187489 645 0.00 2019-12-06 12:32:57 2019-12-06 12:47:57 t 1 1 187492 692 0.00 2019-12-06 12:48:45 2019-12-06 12:50:59 t 1 1 187493 611 0.00 2019-12-06 12:48:21 2019-12-06 12:51:44 t 1 1 187495 615 0.00 2019-12-06 12:49:46 2019-12-06 12:52:41 t 1 1 187496 220 0.00 2019-12-06 12:47:57 2019-12-06 12:53:24 t 1 1 187203 220 0.00 2019-12-06 09:17:52 2019-12-06 09:18:06 t 1 1 187205 689 0.00 2019-12-06 09:20:00 2019-12-06 09:20:07 t 1 1 187208 639 0.00 2019-12-06 09:21:52 2019-12-06 09:22:24 t 1 1 187209 639 0.00 2019-12-06 09:23:06 2019-12-06 09:23:20 t 1 1 187211 627 0.00 2019-12-06 09:24:08 2019-12-06 09:25:17 t 1 1 187212 639 0.00 2019-12-06 09:23:45 2019-12-06 09:25:19 t 1 1 187215 639 0.00 2019-12-06 09:25:35 2019-12-06 09:25:54 t 1 1 187220 689 0.00 2019-12-06 09:30:17 2019-12-06 09:30:29 t 1 1 187222 689 0.00 2019-12-06 09:30:38 2019-12-06 09:30:59 t 1 1 187225 675 0.00 2019-12-06 09:29:28 2019-12-06 09:32:13 t 1 1 187228 220 0.00 2019-12-06 09:31:36 2019-12-06 09:34:44 t 1 1 187230 689 0.00 2019-12-06 09:34:29 2019-12-06 09:35:29 t 1 1 187233 611 0.00 2019-12-06 09:34:50 2019-12-06 09:35:51 t 1 1 187236 220 0.00 2019-12-06 09:36:25 2019-12-06 09:36:59 t 1 1 187241 220 0.00 2019-12-06 09:38:11 2019-12-06 09:38:51 t 1 1 187247 689 0.00 2019-12-06 09:40:36 2019-12-06 09:40:44 t 1 1 187252 637 0.00 2019-12-06 09:25:26 2019-12-06 09:42:24 t 1 1 187253 689 0.00 2019-12-06 09:42:38 2019-12-06 09:42:59 t 1 1 187257 689 0.00 2019-12-06 09:43:09 2019-12-06 09:44:32 t 1 1 187259 689 0.00 2019-12-06 09:45:44 2019-12-06 09:46:01 t 1 1 187262 639 0.00 2019-12-06 09:46:25 2019-12-06 09:47:08 t 1 1 187264 639 0.00 2019-12-06 09:47:34 2019-12-06 09:49:17 t 1 1 187265 639 0.00 2019-12-06 09:49:28 2019-12-06 09:49:44 t 1 1 187269 220 0.00 2019-12-06 09:43:41 2019-12-06 09:53:41 t 1 1 187271 689 0.00 2019-12-06 09:54:29 2019-12-06 09:54:44 t 1 1 187276 675 0.00 2019-12-06 09:52:20 2019-12-06 09:55:56 t 1 1 187277 689 0.00 2019-12-06 09:59:06 2019-12-06 10:00:17 t 1 1 187281 627 0.00 2019-12-06 09:46:41 2019-12-06 10:03:00 t 1 1 187283 689 0.00 2019-12-06 10:03:49 2019-12-06 10:04:05 t 1 1 187285 689 0.00 2019-12-06 10:02:22 2019-12-06 10:04:17 t 1 1 187290 637 0.00 2019-12-06 10:06:17 2019-12-06 10:07:23 t 1 1 187291 689 0.00 2019-12-06 10:07:32 2019-12-06 10:08:24 t 1 1 187295 220 0.00 2019-12-06 10:04:45 2019-12-06 10:10:45 t 1 1 187296 667 0.00 2019-12-06 09:55:12 2019-12-06 10:12:20 t 1 1 187297 551 0.00 2019-12-06 09:31:46 2019-12-06 10:12:56 t 1 1 187298 639 0.00 2019-12-06 10:12:47 2019-12-06 10:14:01 t 1 1 187301 220 0.00 2019-12-06 10:14:41 2019-12-06 10:14:56 t 1 1 187302 675 0.00 2019-12-06 10:06:53 2019-12-06 10:15:42 t 1 1 187306 639 0.00 2019-12-06 10:19:11 2019-12-06 10:19:34 t 1 1 187310 689 0.00 2019-12-06 10:21:59 2019-12-06 10:22:08 t 1 1 187311 689 0.00 2019-12-06 10:22:22 2019-12-06 10:22:34 t 1 1 187314 220 0.00 2019-12-06 10:25:12 2019-12-06 10:25:28 t 1 1 187319 639 0.00 2019-12-06 10:30:12 2019-12-06 10:30:19 t 1 1 187324 689 0.00 2019-12-06 10:33:12 2019-12-06 10:33:32 t 1 1 187326 516 0.00 2019-12-06 10:23:08 2019-12-06 10:34:09 t 1 1 187328 689 0.00 2019-12-06 10:34:20 2019-12-06 10:34:39 t 1 1 187330 639 0.00 2019-12-06 10:34:33 2019-12-06 10:36:10 t 1 1 187336 667 0.00 2019-12-06 10:37:11 2019-12-06 10:42:23 t 1 1 187340 667 0.00 2019-12-06 10:42:43 2019-12-06 10:42:52 t 1 1 187341 689 0.00 2019-12-06 10:43:10 2019-12-06 10:43:21 t 1 1 187345 689 0.00 2019-12-06 10:45:17 2019-12-06 10:45:28 t 1 1 187349 639 0.00 2019-12-06 10:47:12 2019-12-06 10:47:47 t 1 1 187354 639 0.00 2019-12-06 10:50:41 2019-12-06 10:50:49 t 1 1 187356 689 0.00 2019-12-06 10:53:15 2019-12-06 10:53:45 t 1 1 187358 689 0.00 2019-12-06 10:54:03 2019-12-06 10:54:18 t 1 1 187361 551 0.00 2019-12-06 10:49:15 2019-12-06 10:56:13 t 1 1 187364 220 0.00 2019-12-06 10:57:09 2019-12-06 10:57:42 t 1 1 187365 689 0.00 2019-12-06 10:58:47 2019-12-06 10:58:48 t 1 1 187374 675 0.00 2019-12-06 11:04:12 2019-12-06 11:06:41 t 1 1 187377 220 0.00 2019-12-06 11:07:39 2019-12-06 11:07:53 t 1 1 187381 516 0.00 2019-12-06 10:53:08 2019-12-06 11:13:04 t 1 1 187385 639 0.00 2019-12-06 11:15:02 2019-12-06 11:15:33 t 1 1 187386 516 0.00 2019-12-06 11:13:04 2019-12-06 11:16:48 t 1 1 187389 718 0.00 2019-12-06 11:04:43 2019-12-06 11:19:06 t 1 1 187390 538 0.00 2019-12-06 10:38:18 2019-12-06 11:20:20 t 1 1 187393 639 0.00 2019-12-06 11:23:44 2019-12-06 11:24:09 t 1 1 187396 220 0.00 2019-12-06 11:28:41 2019-12-06 11:28:59 t 1 1 187397 637 0.00 2019-12-06 11:28:20 2019-12-06 11:29:22 t 1 1 187399 639 0.00 2019-12-06 11:29:58 2019-12-06 11:30:28 t 1 1 187400 538 0.00 2019-12-06 11:20:48 2019-12-06 11:31:32 t 1 1 187402 722 0.00 2019-12-06 11:32:48 2019-12-06 11:33:07 t 1 1 187406 639 0.00 2019-12-06 11:36:11 2019-12-06 11:36:28 t 1 1 187408 713 0.00 2019-12-06 11:19:56 2019-12-06 11:38:09 t 1 1 187409 722 0.00 2019-12-06 11:33:06 2019-12-06 11:39:01 t 1 1 187410 220 0.00 2019-12-06 11:39:13 2019-12-06 11:39:28 t 1 1 187417 498 0.00 2019-12-06 11:23:53 2019-12-06 11:47:56 t 1 2 187418 639 0.00 2019-12-06 11:48:48 2019-12-06 11:49:16 t 1 1 187421 220 0.00 2019-12-06 10:40:58 2019-12-06 11:49:58 t 1 2 187429 615 0.00 2019-12-06 11:54:42 2019-12-06 11:56:29 t 1 1 187431 675 0.00 2019-12-06 11:54:58 2019-12-06 11:57:13 t 1 1 187432 692 0.00 2019-12-06 11:54:52 2019-12-06 11:57:42 t 1 1 187435 637 0.00 2019-12-06 11:58:10 2019-12-06 11:59:58 t 1 1 187437 692 0.00 2019-12-06 11:58:55 2019-12-06 12:00:38 t 1 1 187440 692 0.00 2019-12-06 12:01:55 2019-12-06 12:06:09 t 1 1 187444 514 0.00 2019-12-06 11:47:52 2019-12-06 12:08:04 t 1 1 187449 220 0.00 2019-12-06 12:10:48 2019-12-06 12:10:50 t 1 1 187452 692 0.00 2019-12-06 12:13:00 2019-12-06 12:13:12 t 1 1 187454 637 0.00 2019-12-06 12:10:11 2019-12-06 12:14:26 t 1 1 187455 639 0.00 2019-12-06 12:14:27 2019-12-06 12:14:38 t 1 1 187456 692 0.00 2019-12-06 12:13:44 2019-12-06 12:15:12 t 1 1 187457 637 0.00 2019-12-06 12:14:26 2019-12-06 12:15:27 t 1 1 187459 694 0.00 2019-12-06 10:59:02 2019-12-06 12:19:31 t 1 1 187460 671 0.00 2019-12-06 12:09:08 2019-12-06 12:19:47 t 1 1 187466 692 0.00 2019-12-06 12:21:27 2019-12-06 12:22:24 t 1 1 187469 689 0.00 2019-12-06 12:19:24 2019-12-06 12:23:11 t 1 1 187472 692 0.00 2019-12-06 12:22:24 2019-12-06 12:24:29 t 1 1 187474 220 0.00 2019-12-06 12:32:53 2019-12-06 12:33:10 t 1 1 187475 516 0.00 2019-12-06 12:25:26 2019-12-06 12:35:23 t 1 1 187478 514 0.00 2019-12-06 12:10:30 2019-12-06 12:37:13 t 1 1 187483 607 0.00 2019-12-06 11:09:28 2019-12-06 12:41:41 t 1 1 187490 611 0.00 2019-12-06 12:33:25 2019-12-06 12:48:22 t 1 1 187494 671 0.00 2019-12-06 12:48:56 2019-12-06 12:51:45 t 1 1 187498 220 0.00 2019-12-06 12:53:24 2019-12-06 12:56:23 t 1 1 187500 639 0.00 2019-12-06 12:40:39 2019-12-06 12:56:48 t 1 1 187502 692 0.00 2019-12-06 12:54:29 2019-12-06 12:56:58 t 1 1 187503 645 0.00 2019-12-06 13:00:48 2019-12-06 13:01:21 t 1 1 187505 611 0.00 2019-12-06 12:56:43 2019-12-06 13:03:24 t 1 1 187206 639 0.00 2019-12-06 09:20:56 2019-12-06 09:21:02 t 1 1 187217 689 0.00 2019-12-06 09:26:45 2019-12-06 09:27:01 t 1 1 187218 611 0.00 2019-12-06 09:24:24 2019-12-06 09:27:33 t 1 1 187221 707 0.00 2019-12-06 09:28:18 2019-12-06 09:30:36 t 1 1 187224 551 0.00 2019-12-06 09:11:38 2019-12-06 09:31:46 t 1 1 187226 689 0.00 2019-12-06 09:33:59 2019-12-06 09:34:15 t 1 1 187227 611 0.00 2019-12-06 09:27:33 2019-12-06 09:34:32 t 1 1 187231 639 0.00 2019-12-06 09:29:33 2019-12-06 09:35:29 t 1 1 187234 639 0.00 2019-12-06 09:35:37 2019-12-06 09:36:19 t 1 1 187235 220 0.00 2019-12-06 09:35:49 2019-12-06 09:36:25 t 1 1 187237 689 0.00 2019-12-06 09:35:39 2019-12-06 09:37:01 t 1 1 187239 220 0.00 2019-12-06 09:37:35 2019-12-06 09:38:11 t 1 1 187240 639 0.00 2019-12-06 09:37:04 2019-12-06 09:38:37 t 1 1 187242 220 0.00 2019-12-06 09:18:55 2019-12-06 09:39:18 t 1 2 187243 220 0.00 2019-12-06 09:38:51 2019-12-06 09:39:27 t 1 1 187244 220 0.00 2019-12-06 09:39:27 2019-12-06 09:40:02 t 1 1 187254 220 0.00 2019-12-06 09:41:11 2019-12-06 09:43:10 t 1 1 187256 639 0.00 2019-12-06 09:43:08 2019-12-06 09:43:26 t 1 1 187258 639 0.00 2019-12-06 09:45:13 2019-12-06 09:45:32 t 1 1 187260 675 0.00 2019-12-06 09:44:21 2019-12-06 09:46:16 t 1 1 187261 627 0.00 2019-12-06 09:24:25 2019-12-06 09:46:41 t 1 1 187266 639 0.00 2019-12-06 09:49:55 2019-12-06 09:50:47 t 1 1 187270 220 0.00 2019-12-06 09:53:41 2019-12-06 09:53:56 t 1 1 187272 639 0.00 2019-12-06 09:54:22 2019-12-06 09:54:59 t 1 1 187273 689 0.00 2019-12-06 09:55:05 2019-12-06 09:55:17 t 1 1 187278 639 0.00 2019-12-06 10:00:32 2019-12-06 10:01:07 t 1 1 187282 689 0.00 2019-12-06 10:03:12 2019-12-06 10:03:32 t 1 1 187287 689 0.00 2019-12-06 10:04:28 2019-12-06 10:04:38 t 1 1 187289 639 0.00 2019-12-06 10:06:40 2019-12-06 10:07:12 t 1 1 187305 564 0.00 2019-12-06 09:41:05 2019-12-06 10:16:46 t 1 1 187308 516 0.00 2019-12-06 10:20:53 2019-12-06 10:21:25 t 1 1 187309 707 0.00 2019-12-06 09:43:27 2019-12-06 10:21:46 t 1 1 187315 639 0.00 2019-12-06 10:25:21 2019-12-06 10:26:00 t 1 1 187316 689 0.00 2019-12-06 10:26:00 2019-12-06 10:26:12 t 1 1 187317 689 0.00 2019-12-06 10:26:26 2019-12-06 10:26:45 t 1 1 187318 645 0.00 2019-12-06 10:21:28 2019-12-06 10:29:18 t 1 1 187323 689 0.00 2019-12-06 10:31:54 2019-12-06 10:33:17 t 1 1 187327 639 0.00 2019-12-06 10:32:12 2019-12-06 10:34:28 t 1 1 187329 220 0.00 2019-12-06 10:35:43 2019-12-06 10:35:58 t 1 1 187332 639 0.00 2019-12-06 10:36:26 2019-12-06 10:36:34 t 1 1 187338 516 0.00 2019-12-06 10:34:09 2019-12-06 10:42:46 t 1 1 187346 514 0.00 2019-12-06 06:05:24 2019-12-06 10:45:48 t 1 1 187348 220 0.00 2019-12-06 10:46:38 2019-12-06 10:47:10 t 1 1 187350 689 0.00 2019-12-06 10:47:32 2019-12-06 10:48:06 t 1 1 187351 459 0.00 2019-12-06 10:15:43 2019-12-06 10:48:50 t 1 2 187352 514 0.00 2019-12-06 10:45:48 2019-12-06 10:50:15 t 1 1 187357 490 0.00 2019-12-06 10:42:15 2019-12-06 10:53:58 t 1 1 187362 689 0.00 2019-12-06 10:56:48 2019-12-06 10:57:01 t 1 1 187369 591 0.00 2019-12-06 09:38:12 2019-12-06 11:02:02 t 1 1 187370 671 0.00 2019-12-06 10:59:39 2019-12-06 11:03:17 t 1 1 187371 639 0.00 2019-12-06 11:03:22 2019-12-06 11:03:38 t 1 1 187375 639 0.00 2019-12-06 11:05:37 2019-12-06 11:06:42 t 1 1 187380 639 0.00 2019-12-06 11:09:25 2019-12-06 11:09:38 t 1 1 187387 220 0.00 2019-12-06 11:18:09 2019-12-06 11:18:25 t 1 1 187391 722 0.00 2019-12-06 11:14:40 2019-12-06 11:22:36 t 1 1 187395 637 0.00 2019-12-06 10:16:13 2019-12-06 11:28:20 t 1 1 187403 718 0.00 2019-12-06 11:19:06 2019-12-06 11:34:59 t 1 1 187404 639 0.00 2019-12-06 11:33:59 2019-12-06 11:35:18 t 1 1 187407 675 0.00 2019-12-06 11:35:02 2019-12-06 11:37:17 t 1 1 187411 718 0.00 2019-12-06 11:34:59 2019-12-06 11:39:37 t 1 1 187414 581 0.00 2019-12-06 11:32:05 2019-12-06 11:44:32 t 1 1 187415 713 0.00 2019-12-06 11:38:09 2019-12-06 11:45:53 t 1 1 187416 514 0.00 2019-12-06 11:25:22 2019-12-06 11:47:52 t 1 1 187420 516 0.00 2019-12-06 11:43:11 2019-12-06 11:49:29 t 1 1 187422 220 0.00 2019-12-06 11:49:47 2019-12-06 11:50:01 t 1 1 187423 673 0.00 2019-12-06 11:30:59 2019-12-06 11:51:20 t 1 1 187424 691 0.00 2019-12-06 11:51:39 2019-12-06 11:52:53 t 1 1 187425 615 0.00 2019-12-06 11:35:48 2019-12-06 11:54:42 t 1 1 187426 692 0.00 2019-12-06 11:50:11 2019-12-06 11:54:52 t 1 1 187436 220 0.00 2019-12-06 12:00:18 2019-12-06 12:00:32 t 1 1 187438 639 0.00 2019-12-06 11:59:43 2019-12-06 12:00:45 t 1 1 187441 516 0.00 2019-12-06 12:06:08 2019-12-06 12:06:10 t 1 1 187443 692 0.00 2019-12-06 12:06:08 2019-12-06 12:07:26 t 1 1 187448 692 0.00 2019-12-06 12:07:26 2019-12-06 12:10:44 t 1 1 187453 639 0.00 2019-12-06 12:13:15 2019-12-06 12:14:00 t 1 1 187458 692 0.00 2019-12-06 12:15:12 2019-12-06 12:17:11 t 1 1 187464 671 0.00 2019-12-06 12:19:47 2019-12-06 12:21:46 t 1 1 187467 220 0.00 2019-12-06 12:22:23 2019-12-06 12:22:36 t 1 1 187471 639 0.00 2019-12-06 12:14:41 2019-12-06 12:23:58 t 1 1 187473 611 0.00 2019-12-06 12:29:43 2019-12-06 12:31:25 t 1 1 187476 516 0.00 2019-12-06 12:35:55 2019-12-06 12:36:55 t 1 1 187481 694 0.00 2019-12-06 12:19:31 2019-12-06 12:40:43 t 1 1 187482 673 0.00 2019-12-06 11:57:47 2019-12-06 12:41:09 t 1 1 187485 692 0.00 2019-12-06 12:40:10 2019-12-06 12:43:36 t 1 1 187487 692 0.00 2019-12-06 12:45:31 2019-12-06 12:46:09 t 1 1 187488 675 0.00 2019-12-06 12:43:35 2019-12-06 12:47:35 t 1 1 187491 220 0.00 2019-12-06 12:36:23 2019-12-06 12:49:36 t 1 2 187497 520 0.00 2019-12-06 12:32:22 2019-12-06 12:54:28 t 1 1 187501 673 0.00 2019-12-06 12:41:09 2019-12-06 12:56:48 t 1 1 187506 689 0.00 2019-12-06 13:02:50 2019-12-06 13:03:35 t 1 1 187508 220 0.00 2019-12-06 13:01:30 2019-12-06 13:06:32 t 1 1 187514 673 0.00 2019-12-06 12:56:48 2019-12-06 13:09:46 t 1 1 187516 220 0.00 2019-12-06 10:44:38 2019-12-06 13:11:07 t 1 2 187521 692 0.00 2019-12-06 13:20:15 2019-12-06 13:21:34 t 1 1 187524 692 0.00 2019-12-06 13:21:39 2019-12-06 13:22:01 t 1 1 187528 692 0.00 2019-12-06 13:25:53 2019-12-06 13:26:08 t 1 1 187530 692 0.00 2019-12-06 13:23:44 2019-12-06 13:26:18 t 1 1 187536 692 0.00 2019-12-06 13:30:17 2019-12-06 13:30:20 t 1 1 187537 611 0.00 2019-12-06 13:23:45 2019-12-06 13:30:39 t 1 1 187539 692 0.00 2019-12-06 13:30:57 2019-12-06 13:31:08 t 1 1 187543 611 0.00 2019-12-06 13:30:33 2019-12-06 13:39:56 t 1 1 187545 490 0.00 2019-12-06 13:40:43 2019-12-06 13:41:51 t 1 1 187547 220 0.00 2019-12-06 13:32:30 2019-12-06 13:44:24 t 1 2 187549 692 0.00 2019-12-06 13:45:11 2019-12-06 13:45:32 t 1 1 187551 637 0.00 2019-12-06 12:39:17 2019-12-06 13:46:08 t 1 1 187555 692 0.00 2019-12-06 13:49:44 2019-12-06 13:53:47 t 1 1 187556 514 0.00 2019-12-06 12:37:13 2019-12-06 13:54:21 t 1 1 187499 611 0.00 2019-12-06 12:51:37 2019-12-06 12:56:43 t 1 1 187504 692 0.00 2019-12-06 12:59:53 2019-12-06 13:02:14 t 1 1 187509 692 0.00 2019-12-06 13:07:47 2019-12-06 13:07:50 t 1 1 187510 645 0.00 2019-12-06 13:07:57 2019-12-06 13:08:43 t 1 1 187512 639 0.00 2019-12-06 12:57:21 2019-12-06 13:09:32 t 1 1 187518 591 0.00 2019-12-06 12:58:11 2019-12-06 13:14:23 t 1 1 187519 675 0.00 2019-12-06 13:14:41 2019-12-06 13:16:39 t 1 1 187520 692 0.00 2019-12-06 13:16:52 2019-12-06 13:17:24 t 1 1 187522 516 0.00 2019-12-06 13:14:46 2019-12-06 13:21:35 t 1 1 187523 673 0.00 2019-12-06 13:09:46 2019-12-06 13:21:54 t 1 1 187532 591 0.00 2019-12-06 13:18:16 2019-12-06 13:27:39 t 1 1 187534 622 0.00 2019-12-06 13:04:14 2019-12-06 13:28:58 t 1 1 187538 692 0.00 2019-12-06 13:30:26 2019-12-06 13:30:45 t 1 1 187541 516 0.00 2019-12-06 13:21:38 2019-12-06 13:33:42 t 1 1 187542 591 0.00 2019-12-06 13:34:34 2019-12-06 13:35:45 t 1 1 187544 692 0.00 2019-12-06 13:40:55 2019-12-06 13:41:00 t 1 1 187548 645 0.00 2019-12-06 13:31:28 2019-12-06 13:45:09 t 1 1 187554 611 0.00 2019-12-06 13:48:11 2019-12-06 13:52:28 t 1 1 187557 635 0.00 2019-12-06 13:53:53 2019-12-06 13:55:34 t 1 1 187562 673 0.00 2019-12-06 13:21:54 2019-12-06 14:01:22 t 1 1 187563 645 0.00 2019-12-06 13:45:09 2019-12-06 14:02:20 t 1 1 187568 675 0.00 2019-12-06 13:59:08 2019-12-06 14:09:03 t 1 1 187573 673 0.00 2019-12-06 14:07:54 2019-12-06 14:13:15 t 1 1 187575 220 0.00 2019-12-06 14:13:38 2019-12-06 14:14:11 t 1 1 187577 220 0.00 2019-12-06 14:10:19 2019-12-06 14:16:19 t 1 2 187582 645 0.00 2019-12-06 14:02:20 2019-12-06 14:19:33 t 1 1 187586 687 0.00 2019-12-06 14:17:47 2019-12-06 14:20:46 t 1 1 187587 220 0.00 2019-12-06 14:20:32 2019-12-06 14:21:07 t 1 1 187591 485 0.00 2019-12-06 14:21:16 2019-12-06 14:25:02 t 1 1 187592 645 0.00 2019-12-06 14:25:40 2019-12-06 14:26:08 t 1 1 187594 487 0.00 2019-12-06 13:57:44 2019-12-06 14:27:20 t 1 2 187595 637 0.00 2019-12-06 14:09:28 2019-12-06 14:28:01 t 1 1 187600 503 0.00 2019-12-06 14:32:00 2019-12-06 14:33:48 t 1 1 187602 673 0.00 2019-12-06 14:32:49 2019-12-06 14:33:55 t 1 1 187603 637 0.00 2019-12-06 14:28:00 2019-12-06 14:34:04 t 1 1 187604 660 0.00 2019-12-06 11:51:00 2019-12-06 14:34:32 t 1 1 187610 687 0.00 2019-12-06 14:20:52 2019-12-06 14:40:49 t 1 1 187611 611 0.00 2019-12-06 14:33:13 2019-12-06 14:42:26 t 1 1 187612 485 0.00 2019-12-06 14:34:15 2019-12-06 14:44:09 t 1 1 187613 622 0.00 2019-12-06 13:42:45 2019-12-06 14:45:19 t 1 1 187614 375 0.00 2019-12-06 14:45:26 2019-12-06 14:45:26 f 1 1 187619 673 0.00 2019-12-06 14:36:49 2019-12-06 14:50:53 t 1 1 187622 581 0.00 2019-12-06 14:27:59 2019-12-06 14:53:13 t 1 1 187623 673 0.00 2019-12-06 14:50:53 2019-12-06 14:53:21 t 1 1 187626 673 0.00 2019-12-06 14:53:20 2019-12-06 14:55:53 t 1 1 187633 481 0.00 2019-12-06 13:10:20 2019-12-06 15:02:12 t 1 1 187634 485 0.00 2019-12-06 14:56:25 2019-12-06 15:04:43 t 1 1 187638 551 0.00 2019-12-06 13:50:20 2019-12-06 15:11:32 t 1 1 187639 578 0.00 2019-12-06 08:01:30 2019-12-06 15:12:11 t 1 1 187645 485 0.00 2019-12-06 15:14:32 2019-12-06 15:17:32 t 1 1 187652 551 0.00 2019-12-06 15:11:32 2019-12-06 15:21:56 t 1 1 187653 687 0.00 2019-12-06 15:22:03 2019-12-06 15:23:35 t 1 1 187655 637 0.00 2019-12-06 15:22:10 2019-12-06 15:28:47 t 1 1 187658 578 0.00 2019-12-06 15:12:11 2019-12-06 15:31:06 t 1 1 187662 544 0.00 2019-12-06 15:20:20 2019-12-06 15:39:12 t 1 1 187664 551 0.00 2019-12-06 15:30:05 2019-12-06 15:40:50 t 1 1 187665 611 0.00 2019-12-06 15:23:09 2019-12-06 15:42:30 t 1 1 187670 551 0.00 2019-12-06 15:40:50 2019-12-06 15:51:21 t 1 1 187671 611 0.00 2019-12-06 15:42:29 2019-12-06 15:53:43 t 1 1 187675 578 0.00 2019-12-06 15:45:39 2019-12-06 15:54:33 t 1 1 187678 551 0.00 2019-12-06 15:51:21 2019-12-06 16:00:51 t 1 1 187679 625 0.00 2019-12-06 15:47:13 2019-12-06 16:01:42 t 1 1 187685 607 0.00 2019-12-06 16:05:46 2019-12-06 16:05:46 f 1 1 187690 660 0.00 2019-12-06 16:09:25 2019-12-06 16:12:36 t 1 1 187691 687 0.00 2019-12-06 16:02:58 2019-12-06 16:13:24 t 1 1 187693 665 0.00 2019-12-06 15:54:16 2019-12-06 16:18:40 t 1 1 187694 722 0.00 2019-12-06 16:17:26 2019-12-06 16:19:29 t 1 1 187697 637 0.00 2019-12-06 16:10:47 2019-12-06 16:23:37 t 1 1 187700 687 0.00 2019-12-06 16:13:24 2019-12-06 16:27:17 t 1 1 187703 578 0.00 2019-12-06 16:11:02 2019-12-06 16:29:15 t 1 1 187704 622 0.00 2019-12-06 14:45:19 2019-12-06 16:31:08 t 1 1 187707 639 0.00 2019-12-06 16:08:07 2019-12-06 16:35:37 t 1 1 187711 622 0.00 2019-12-06 16:31:08 2019-12-06 16:40:42 t 1 1 187718 639 0.00 2019-12-06 16:37:24 2019-12-06 16:46:46 t 1 1 187721 544 0.00 2019-12-06 16:46:49 2019-12-06 16:47:03 t 1 1 187730 673 0.00 2019-12-06 16:52:13 2019-12-06 16:53:24 t 1 1 187732 514 0.00 2019-12-06 15:17:22 2019-12-06 16:54:00 t 1 1 187737 581 0.00 2019-12-06 16:57:12 2019-12-06 16:57:17 t 1 1 187740 639 0.00 2019-12-06 16:49:23 2019-12-06 17:00:05 t 1 1 187743 660 0.00 2019-12-06 16:38:23 2019-12-06 17:01:09 t 1 1 187745 639 0.00 2019-12-06 17:00:31 2019-12-06 17:01:51 t 1 1 187751 667 0.00 2019-12-06 17:04:57 2019-12-06 17:06:15 t 1 1 187762 639 0.00 2019-12-06 17:10:22 2019-12-06 17:10:35 t 1 1 187763 639 0.00 2019-12-06 17:09:39 2019-12-06 17:11:20 t 1 1 187765 667 0.00 2019-12-06 17:08:29 2019-12-06 17:12:09 t 1 1 187770 667 0.00 2019-12-06 17:13:30 2019-12-06 17:15:00 t 1 1 187775 667 0.00 2019-12-06 17:15:50 2019-12-06 17:19:10 t 1 1 187776 639 0.00 2019-12-06 17:19:12 2019-12-06 17:19:19 t 1 1 187779 673 0.00 2019-12-06 16:55:29 2019-12-06 17:22:02 t 1 1 187782 637 0.00 2019-12-06 17:06:10 2019-12-06 17:23:06 t 1 1 187787 639 0.00 2019-12-06 17:23:39 2019-12-06 17:23:44 t 1 1 187788 611 0.00 2019-12-06 17:20:50 2019-12-06 17:25:06 t 1 1 187791 639 0.00 2019-12-06 17:26:23 2019-12-06 17:26:59 t 1 1 187795 639 0.00 2019-12-06 17:29:34 2019-12-06 17:30:54 t 1 1 187798 687 0.00 2019-12-06 17:23:18 2019-12-06 17:32:22 t 1 1 187802 516 0.00 2019-12-06 17:33:35 2019-12-06 17:33:51 t 1 1 187805 639 0.00 2019-12-06 17:33:53 2019-12-06 17:36:00 t 1 1 187807 694 0.00 2019-12-06 14:53:29 2019-12-06 17:36:32 t 1 1 187810 581 0.00 2019-12-06 17:23:25 2019-12-06 17:40:49 t 1 1 187813 687 0.00 2019-12-06 17:39:00 2019-12-06 17:44:25 t 1 1 187819 673 0.00 2019-12-06 17:50:56 2019-12-06 17:52:45 t 1 1 187821 220 0.00 2019-12-06 16:31:27 2019-12-06 17:53:51 t 1 2 187822 639 0.00 2019-12-06 17:53:54 2019-12-06 17:54:35 t 1 1 187825 639 0.00 2019-12-06 17:56:46 2019-12-06 17:57:04 t 1 1 187828 220 0.00 2019-12-06 17:03:20 2019-12-06 17:58:44 t 1 2 187830 639 0.00 2019-12-06 18:00:06 2019-12-06 18:00:36 t 1 1 187831 687 0.00 2019-12-06 17:44:25 2019-12-06 18:01:09 t 1 1 187507 622 0.00 2019-12-06 13:01:13 2019-12-06 13:04:14 t 1 1 187511 516 0.00 2019-12-06 13:06:24 2019-12-06 13:08:55 t 1 1 187513 707 0.00 2019-12-06 13:04:16 2019-12-06 13:09:35 t 1 1 187515 481 0.00 2019-12-06 12:39:15 2019-12-06 13:10:01 t 1 1 187517 692 0.00 2019-12-06 13:12:31 2019-12-06 13:14:18 t 1 1 187525 692 0.00 2019-12-06 13:23:30 2019-12-06 13:23:38 t 1 1 187526 611 0.00 2019-12-06 13:20:02 2019-12-06 13:23:45 t 1 1 187527 692 0.00 2019-12-06 13:24:45 2019-12-06 13:24:53 t 1 1 187529 692 0.00 2019-12-06 13:26:13 2019-12-06 13:26:14 t 1 1 187531 671 0.00 2019-12-06 13:19:27 2019-12-06 13:26:40 t 1 1 187533 490 0.00 2019-12-06 13:07:24 2019-12-06 13:28:08 t 1 1 187535 692 0.00 2019-12-06 13:30:07 2019-12-06 13:30:11 t 1 1 187540 645 0.00 2019-12-06 13:18:07 2019-12-06 13:31:28 t 1 1 187546 622 0.00 2019-12-06 13:28:58 2019-12-06 13:42:45 t 1 1 187550 692 0.00 2019-12-06 13:45:37 2019-12-06 13:45:43 t 1 1 187552 611 0.00 2019-12-06 13:40:02 2019-12-06 13:48:11 t 1 1 187553 551 0.00 2019-12-06 12:01:46 2019-12-06 13:50:20 t 1 1 187558 607 0.00 2019-12-06 12:41:47 2019-12-06 13:56:00 t 1 1 187559 611 0.00 2019-12-06 13:52:28 2019-12-06 14:00:03 t 1 1 187561 687 0.00 2019-12-06 13:58:47 2019-12-06 14:01:14 t 1 1 187565 673 0.00 2019-12-06 14:01:22 2019-12-06 14:07:54 t 1 1 187566 687 0.00 2019-12-06 14:03:57 2019-12-06 14:08:48 t 1 1 187569 687 0.00 2019-12-06 14:10:07 2019-12-06 14:11:23 t 1 1 187570 220 0.00 2019-12-06 13:34:20 2019-12-06 14:12:29 t 1 1 187572 220 0.00 2019-12-06 14:12:29 2019-12-06 14:13:03 t 1 1 187574 220 0.00 2019-12-06 14:13:03 2019-12-06 14:13:38 t 1 1 187578 687 0.00 2019-12-06 14:13:27 2019-12-06 14:17:13 t 1 1 187579 220 0.00 2019-12-06 14:14:10 2019-12-06 14:18:54 t 1 1 187584 220 0.00 2019-12-06 14:19:28 2019-12-06 14:20:00 t 1 1 187588 220 0.00 2019-12-06 14:21:07 2019-12-06 14:21:41 t 1 1 187589 220 0.00 2019-12-06 14:21:40 2019-12-06 14:22:13 t 1 1 187590 220 0.00 2019-12-06 14:22:12 2019-12-06 14:22:43 t 1 1 187593 607 0.00 2019-12-06 13:56:00 2019-12-06 14:26:11 t 1 1 187596 673 0.00 2019-12-06 14:13:14 2019-12-06 14:29:13 t 1 1 187597 707 0.00 2019-12-06 13:23:00 2019-12-06 14:31:38 t 1 1 187598 718 0.00 2019-12-06 14:26:18 2019-12-06 14:32:14 t 1 1 187601 670 0.00 2019-12-06 14:28:17 2019-12-06 14:33:51 t 1 1 187605 675 0.00 2019-12-06 14:32:05 2019-12-06 14:35:33 t 1 1 187609 730 0.00 2019-12-06 14:34:01 2019-12-06 14:38:20 t 1 1 187616 516 0.00 2019-12-06 14:43:28 2019-12-06 14:46:44 t 1 1 187617 544 0.00 2019-12-06 14:21:41 2019-12-06 14:48:46 t 1 1 187618 514 0.00 2019-12-06 13:54:21 2019-12-06 14:50:46 t 1 1 187621 671 0.00 2019-12-06 14:49:42 2019-12-06 14:51:51 t 1 1 187624 694 0.00 2019-12-06 12:40:43 2019-12-06 14:53:29 t 1 1 187625 611 0.00 2019-12-06 14:42:26 2019-12-06 14:55:34 t 1 1 187628 581 0.00 2019-12-06 14:54:18 2019-12-06 14:56:30 t 1 1 187635 675 0.00 2019-12-06 15:04:30 2019-12-06 15:05:57 t 1 1 187636 564 0.00 2019-12-06 14:00:07 2019-12-06 15:07:48 t 1 1 187637 660 0.00 2019-12-06 15:08:13 2019-12-06 15:10:35 t 1 1 187640 544 0.00 2019-12-06 14:48:46 2019-12-06 15:13:28 t 1 1 187641 485 0.00 2019-12-06 15:04:43 2019-12-06 15:14:32 t 1 1 187642 645 0.00 2019-12-06 14:40:52 2019-12-06 15:15:14 t 1 1 187644 514 0.00 2019-12-06 14:50:46 2019-12-06 15:17:22 t 1 1 187646 687 0.00 2019-12-06 14:58:25 2019-12-06 15:17:52 t 1 1 187648 544 0.00 2019-12-06 15:13:51 2019-12-06 15:20:20 t 1 1 187650 611 0.00 2019-12-06 14:57:08 2019-12-06 15:21:25 t 1 1 187657 551 0.00 2019-12-06 15:21:56 2019-12-06 15:30:05 t 1 1 187660 665 0.00 2019-12-06 15:25:09 2019-12-06 15:35:14 t 1 1 187669 722 0.00 2019-12-06 15:49:57 2019-12-06 15:50:58 t 1 1 187672 665 0.00 2019-12-06 15:35:14 2019-12-06 15:54:16 t 1 1 187673 675 0.00 2019-12-06 15:44:19 2019-12-06 15:54:24 t 1 1 187681 639 0.00 2019-12-06 15:54:40 2019-12-06 16:02:57 t 1 1 187683 611 0.00 2019-12-06 16:00:18 2019-12-06 16:03:10 t 1 1 187686 607 0.00 2019-12-06 14:26:11 2019-12-06 16:06:18 t 1 1 187688 551 0.00 2019-12-06 16:00:51 2019-12-06 16:08:51 t 1 1 187692 545 0.00 2019-12-06 14:44:48 2019-12-06 16:15:43 t 1 1 187695 645 0.00 2019-12-06 16:02:57 2019-12-06 16:19:53 t 1 1 187696 220 0.00 2019-12-06 15:30:05 2019-12-06 16:22:29 t 1 2 187699 675 0.00 2019-12-06 16:24:54 2019-12-06 16:26:23 t 1 1 187701 722 0.00 2019-12-06 16:26:57 2019-12-06 16:28:20 t 1 1 187710 311 0.00 2019-12-06 16:29:23 2019-12-06 16:38:46 t 1 2 187714 520 0.00 2019-12-06 16:38:03 2019-12-06 16:42:29 t 1 1 187715 544 0.00 2019-12-06 16:32:04 2019-12-06 16:45:15 t 1 1 187720 581 0.00 2019-12-06 16:39:42 2019-12-06 16:46:53 t 1 1 187722 512 0.00 2019-12-06 16:43:25 2019-12-06 16:47:08 t 1 1 187727 637 0.00 2019-12-06 16:23:37 2019-12-06 16:51:05 t 1 1 187731 622 0.00 2019-12-06 16:40:42 2019-12-06 16:53:45 t 1 1 187734 689 0.00 2019-12-06 16:54:40 2019-12-06 16:56:24 t 1 1 187736 581 0.00 2019-12-06 16:50:00 2019-12-06 16:57:06 t 1 1 187738 611 0.00 2019-12-06 16:47:52 2019-12-06 16:59:29 t 1 1 187741 220 0.00 2019-12-06 16:24:27 2019-12-06 17:00:51 t 1 2 187746 639 0.00 2019-12-06 17:01:59 2019-12-06 17:02:31 t 1 1 187748 591 0.00 2019-12-06 16:51:17 2019-12-06 17:05:40 t 1 1 187750 637 0.00 2019-12-06 16:59:25 2019-12-06 17:06:11 t 1 1 187753 667 0.00 2019-12-06 17:06:15 2019-12-06 17:06:26 t 1 1 187755 639 0.00 2019-12-06 17:06:24 2019-12-06 17:07:29 t 1 1 187757 675 0.00 2019-12-06 17:06:46 2019-12-06 17:08:22 t 1 1 187758 667 0.00 2019-12-06 17:07:02 2019-12-06 17:08:29 t 1 1 187767 707 0.00 2019-12-06 16:56:32 2019-12-06 17:12:48 t 1 1 187771 639 0.00 2019-12-06 17:15:43 2019-12-06 17:16:43 t 1 1 187783 687 0.00 2019-12-06 17:10:36 2019-12-06 17:23:18 t 1 1 187784 581 0.00 2019-12-06 17:12:39 2019-12-06 17:23:25 t 1 1 187785 639 0.00 2019-12-06 17:22:34 2019-12-06 17:23:41 t 1 1 187792 639 0.00 2019-12-06 17:27:26 2019-12-06 17:28:11 t 1 1 187797 639 0.00 2019-12-06 17:31:40 2019-12-06 17:32:01 t 1 1 187804 645 0.00 2019-12-06 17:14:36 2019-12-06 17:35:27 t 1 1 187806 639 0.00 2019-12-06 17:35:59 2019-12-06 17:36:10 t 1 1 187808 639 0.00 2019-12-06 17:37:48 2019-12-06 17:38:14 t 1 1 187809 687 0.00 2019-12-06 17:32:22 2019-12-06 17:39:00 t 1 1 187811 675 0.00 2019-12-06 17:38:47 2019-12-06 17:42:12 t 1 1 187814 639 0.00 2019-12-06 17:45:23 2019-12-06 17:45:35 t 1 1 187824 607 0.00 2019-12-06 16:13:46 2019-12-06 17:56:46 t 1 1 187829 718 0.00 2019-12-06 17:45:25 2019-12-06 18:00:24 t 1 1 187833 220 0.00 2019-12-06 17:45:24 2019-12-06 18:01:46 t 1 2 187835 687 0.00 2019-12-06 18:01:09 2019-12-06 18:02:51 t 1 1 187838 645 0.00 2019-12-06 18:01:05 2019-12-06 18:06:00 t 1 1 187842 658 0.00 2019-12-06 18:08:06 2019-12-06 18:09:56 t 1 1 187560 726 0.00 2019-12-06 13:40:15 2019-12-06 14:00:25 t 1 1 187564 726 0.00 2019-12-06 14:00:25 2019-12-06 14:06:29 t 1 1 187567 637 0.00 2019-12-06 13:46:08 2019-12-06 14:08:54 t 1 1 187571 545 0.00 2019-12-06 14:11:11 2019-12-06 14:12:40 t 1 1 187576 485 0.00 2019-12-06 14:09:50 2019-12-06 14:14:23 t 1 1 187580 611 0.00 2019-12-06 14:17:45 2019-12-06 14:19:18 t 1 1 187581 220 0.00 2019-12-06 14:18:53 2019-12-06 14:19:29 t 1 1 187583 645 0.00 2019-12-06 14:19:40 2019-12-06 14:19:50 t 1 1 187585 220 0.00 2019-12-06 14:19:59 2019-12-06 14:20:32 t 1 1 187599 220 0.00 2019-12-06 14:22:43 2019-12-06 14:32:52 t 1 1 187606 637 0.00 2019-12-06 14:34:03 2019-12-06 14:35:58 t 1 1 187607 673 0.00 2019-12-06 14:33:55 2019-12-06 14:36:49 t 1 1 187608 503 0.00 2019-12-06 14:33:48 2019-12-06 14:37:27 t 1 1 187615 375 0.00 2019-12-06 14:45:51 2019-12-06 14:45:51 f 1 1 187620 660 0.00 2019-12-06 14:34:32 2019-12-06 14:51:12 t 1 1 187627 485 0.00 2019-12-06 14:44:31 2019-12-06 14:56:25 t 1 1 187629 220 0.00 2019-12-06 14:37:16 2019-12-06 14:56:39 t 1 2 187630 687 0.00 2019-12-06 14:40:49 2019-12-06 14:57:57 t 1 1 187631 687 0.00 2019-12-06 14:58:16 2019-12-06 14:58:21 t 1 1 187632 673 0.00 2019-12-06 14:55:51 2019-12-06 14:59:29 t 1 1 187643 660 0.00 2019-12-06 15:14:42 2019-12-06 15:17:01 t 1 1 187647 220 0.00 2019-12-06 15:11:51 2019-12-06 15:17:54 t 1 2 187649 707 0.00 2019-12-06 14:39:30 2019-12-06 15:20:31 t 1 1 187651 687 0.00 2019-12-06 15:18:03 2019-12-06 15:21:36 t 1 1 187654 687 0.00 2019-12-06 15:23:41 2019-12-06 15:26:57 t 1 1 187656 675 0.00 2019-12-06 15:24:57 2019-12-06 15:29:54 t 1 1 187659 516 0.00 2019-12-06 15:31:22 2019-12-06 15:34:22 t 1 1 187661 556 0.00 2019-12-06 15:38:19 2019-12-06 15:38:19 f 1 1 187663 660 0.00 2019-12-06 15:19:34 2019-12-06 15:39:52 t 1 1 187666 671 0.00 2019-12-06 15:40:53 2019-12-06 15:44:04 t 1 1 187667 578 0.00 2019-12-06 15:31:06 2019-12-06 15:45:39 t 1 1 187668 520 0.00 2019-12-06 15:31:58 2019-12-06 15:46:24 t 1 1 187674 637 0.00 2019-12-06 15:28:47 2019-12-06 15:54:27 t 1 1 187676 611 0.00 2019-12-06 15:53:43 2019-12-06 16:00:18 t 1 1 187677 645 0.00 2019-12-06 15:30:34 2019-12-06 16:00:40 t 1 1 187680 707 0.00 2019-12-06 15:44:17 2019-12-06 16:02:32 t 1 1 187682 687 0.00 2019-12-06 15:53:16 2019-12-06 16:02:58 t 1 1 187684 639 0.00 2019-12-06 16:04:53 2019-12-06 16:05:03 t 1 1 187687 660 0.00 2019-12-06 15:40:26 2019-12-06 16:08:09 t 1 1 187689 578 0.00 2019-12-06 15:54:33 2019-12-06 16:11:02 t 1 1 187698 665 0.00 2019-12-06 16:18:40 2019-12-06 16:25:14 t 1 1 187702 591 0.00 2019-12-06 16:25:45 2019-12-06 16:28:23 t 1 1 187705 687 0.00 2019-12-06 16:27:17 2019-12-06 16:35:03 t 1 1 187706 660 0.00 2019-12-06 16:13:09 2019-12-06 16:35:19 t 1 1 187708 639 0.00 2019-12-06 16:35:55 2019-12-06 16:36:12 t 1 1 187709 481 0.00 2019-12-06 15:02:12 2019-12-06 16:36:53 t 1 1 187712 578 0.00 2019-12-06 16:29:15 2019-12-06 16:40:59 t 1 1 187713 512 0.00 2019-12-06 16:37:33 2019-12-06 16:41:32 t 1 1 187716 544 0.00 2019-12-06 16:45:14 2019-12-06 16:45:50 t 1 1 187717 544 0.00 2019-12-06 16:45:49 2019-12-06 16:46:29 t 1 1 187719 544 0.00 2019-12-06 16:46:29 2019-12-06 16:46:50 t 1 1 187723 675 0.00 2019-12-06 16:43:08 2019-12-06 16:47:18 t 1 1 187724 544 0.00 2019-12-06 16:47:02 2019-12-06 16:47:43 t 1 1 187725 639 0.00 2019-12-06 16:46:52 2019-12-06 16:48:38 t 1 1 187726 578 0.00 2019-12-06 16:40:59 2019-12-06 16:50:45 t 1 1 187728 673 0.00 2019-12-06 15:54:50 2019-12-06 16:51:37 t 1 1 187729 687 0.00 2019-12-06 16:36:21 2019-12-06 16:52:49 t 1 1 187733 637 0.00 2019-12-06 16:53:20 2019-12-06 16:55:38 t 1 1 187735 691 0.00 2019-12-06 16:54:04 2019-12-06 16:56:31 t 1 1 187739 544 0.00 2019-12-06 16:47:43 2019-12-06 16:59:49 t 1 1 187742 490 0.00 2019-12-06 16:54:28 2019-12-06 17:00:55 t 1 1 187744 538 0.00 2019-12-06 16:51:27 2019-12-06 17:01:38 t 1 1 187747 639 0.00 2019-12-06 17:03:02 2019-12-06 17:03:37 t 1 1 187749 639 0.00 2019-12-06 17:05:34 2019-12-06 17:05:47 t 1 1 187752 639 0.00 2019-12-06 17:04:54 2019-12-06 17:06:20 t 1 1 187754 687 0.00 2019-12-06 16:52:49 2019-12-06 17:06:32 t 1 1 187756 687 0.00 2019-12-06 17:06:39 2019-12-06 17:07:46 t 1 1 187759 639 0.00 2019-12-06 17:08:24 2019-12-06 17:08:34 t 1 1 187760 611 0.00 2019-12-06 16:59:27 2019-12-06 17:09:22 t 1 1 187761 639 0.00 2019-12-06 17:09:50 2019-12-06 17:09:58 t 1 1 187764 639 0.00 2019-12-06 17:11:29 2019-12-06 17:11:49 t 1 1 187766 581 0.00 2019-12-06 16:57:59 2019-12-06 17:12:39 t 1 1 187768 645 0.00 2019-12-06 16:21:01 2019-12-06 17:14:36 t 1 1 187769 639 0.00 2019-12-06 17:14:49 2019-12-06 17:14:55 t 1 1 187772 639 0.00 2019-12-06 17:16:42 2019-12-06 17:16:50 t 1 1 187773 639 0.00 2019-12-06 17:18:14 2019-12-06 17:18:19 t 1 1 187774 639 0.00 2019-12-06 17:18:35 2019-12-06 17:18:49 t 1 1 187777 611 0.00 2019-12-06 17:09:21 2019-12-06 17:20:51 t 1 1 187778 639 0.00 2019-12-06 17:19:30 2019-12-06 17:21:40 t 1 1 187780 639 0.00 2019-12-06 17:22:06 2019-12-06 17:22:24 t 1 1 187781 667 0.00 2019-12-06 17:22:17 2019-12-06 17:22:42 t 1 1 187786 675 0.00 2019-12-06 17:21:39 2019-12-06 17:23:42 t 1 1 187789 639 0.00 2019-12-06 17:24:47 2019-12-06 17:26:20 t 1 1 187790 637 0.00 2019-12-06 17:25:23 2019-12-06 17:26:57 t 1 1 187793 637 0.00 2019-12-06 17:28:05 2019-12-06 17:29:50 t 1 1 187794 691 0.00 2019-12-06 17:29:23 2019-12-06 17:30:30 t 1 1 187796 516 0.00 2019-12-06 17:29:01 2019-12-06 17:31:24 t 1 1 187799 611 0.00 2019-12-06 17:26:45 2019-12-06 17:32:28 t 1 1 187800 639 0.00 2019-12-06 17:33:20 2019-12-06 17:33:33 t 1 1 187801 637 0.00 2019-12-06 17:29:49 2019-12-06 17:33:47 t 1 1 187803 622 0.00 2019-12-06 16:53:45 2019-12-06 17:33:59 t 1 1 187812 639 0.00 2019-12-06 17:41:37 2019-12-06 17:42:13 t 1 1 187815 578 0.00 2019-12-06 16:50:45 2019-12-06 17:48:07 t 1 1 187816 639 0.00 2019-12-06 17:47:42 2019-12-06 17:48:20 t 1 1 187817 639 0.00 2019-12-06 17:49:55 2019-12-06 17:50:05 t 1 1 187818 660 0.00 2019-12-06 17:02:10 2019-12-06 17:50:51 t 1 1 187820 637 0.00 2019-12-06 17:33:47 2019-12-06 17:53:42 t 1 1 187823 639 0.00 2019-12-06 17:56:25 2019-12-06 17:56:39 t 1 1 187826 645 0.00 2019-12-06 17:36:42 2019-12-06 17:57:58 t 1 1 187827 639 0.00 2019-12-06 17:58:11 2019-12-06 17:58:33 t 1 1 187834 639 0.00 2019-12-06 18:00:59 2019-12-06 18:02:09 t 1 1 187836 639 0.00 2019-12-06 18:03:36 2019-12-06 18:03:49 t 1 1 187837 639 0.00 2019-12-06 18:04:14 2019-12-06 18:05:20 t 1 1 187840 516 0.00 2019-12-06 18:04:12 2019-12-06 18:07:22 t 1 1 187843 679 0.00 2019-12-06 17:55:39 2019-12-06 18:10:06 t 1 1 187844 679 0.00 2019-12-06 18:10:11 2019-12-06 18:10:13 t 1 1 187846 516 0.00 2019-12-06 18:10:43 2019-12-06 18:11:20 t 1 1 187832 673 0.00 2019-12-06 17:59:37 2019-12-06 18:01:40 t 1 1 187839 673 0.00 2019-12-06 18:05:23 2019-12-06 18:06:41 t 1 1 187841 578 0.00 2019-12-06 17:48:07 2019-12-06 18:08:39 t 1 1 187845 671 0.00 2019-12-06 18:07:47 2019-12-06 18:10:51 t 1 1 187848 622 0.00 2019-12-06 17:33:59 2019-12-06 18:12:42 t 1 1 187849 722 0.00 2019-12-06 18:02:53 2019-12-06 18:14:09 t 1 1 187851 679 0.00 2019-12-06 18:12:19 2019-12-06 18:14:43 t 1 1 187853 679 0.00 2019-12-06 18:14:49 2019-12-06 18:14:51 t 1 1 187856 718 0.00 2019-12-06 18:00:24 2019-12-06 18:15:04 t 1 1 187858 679 0.00 2019-12-06 18:16:27 2019-12-06 18:16:53 t 1 1 187863 516 0.00 2019-12-06 18:18:59 2019-12-06 18:20:02 t 1 1 187866 679 0.00 2019-12-06 18:20:37 2019-12-06 18:20:39 t 1 1 187867 722 0.00 2019-12-06 18:16:16 2019-12-06 18:21:44 t 1 1 187870 687 0.00 2019-12-06 18:18:37 2019-12-06 18:23:01 t 1 1 187873 639 0.00 2019-12-06 18:17:53 2019-12-06 18:23:57 t 1 1 187876 722 0.00 2019-12-06 18:23:31 2019-12-06 18:25:20 t 1 1 187878 551 0.00 2019-12-06 16:08:51 2019-12-06 18:26:12 t 1 1 187879 639 0.00 2019-12-06 18:25:27 2019-12-06 18:26:23 t 1 1 187880 639 0.00 2019-12-06 18:27:09 2019-12-06 18:27:16 t 1 1 187885 639 0.00 2019-12-06 18:29:35 2019-12-06 18:30:05 t 1 1 187895 639 0.00 2019-12-06 18:33:12 2019-12-06 18:35:20 t 1 1 187904 578 0.00 2019-12-06 18:08:39 2019-12-06 18:37:54 t 1 1 187907 639 0.00 2019-12-06 18:38:17 2019-12-06 18:39:20 t 1 1 187911 722 0.00 2019-12-06 18:40:20 2019-12-06 18:40:27 t 1 1 187918 520 0.00 2019-12-06 18:37:54 2019-12-06 18:44:14 t 1 1 187934 578 0.00 2019-12-06 18:37:54 2019-12-06 18:51:47 t 1 1 187937 679 0.00 2019-12-06 18:45:53 2019-12-06 18:53:47 t 1 1 187939 722 0.00 2019-12-06 18:54:04 2019-12-06 18:55:06 t 1 1 187940 673 0.00 2019-12-06 18:46:12 2019-12-06 18:57:07 t 1 1 187948 212 0.00 2019-12-06 19:03:48 2019-12-06 19:03:48 f 1 2 187950 645 0.00 2019-12-06 18:21:09 2019-12-06 19:05:12 t 1 1 187956 675 0.00 2019-12-06 19:06:36 2019-12-06 19:08:18 t 1 1 187958 639 0.00 2019-12-06 19:11:02 2019-12-06 19:11:08 t 1 1 187962 707 0.00 2019-12-06 19:08:54 2019-12-06 19:13:13 t 1 1 187963 639 0.00 2019-12-06 19:13:28 2019-12-06 19:13:35 t 1 1 187966 673 0.00 2019-12-06 19:05:15 2019-12-06 19:15:23 t 1 1 187967 485 0.00 2019-12-06 19:02:50 2019-12-06 19:17:01 t 1 1 187970 639 0.00 2019-12-06 19:19:27 2019-12-06 19:19:55 t 1 1 187980 639 0.00 2019-12-06 19:20:53 2019-12-06 19:25:55 t 1 1 187982 679 0.00 2019-12-06 19:27:47 2019-12-06 19:28:04 t 1 1 187989 591 0.00 2019-12-06 18:53:35 2019-12-06 19:34:51 t 1 1 187993 720 0.00 2019-12-06 19:20:39 2019-12-06 19:36:45 t 1 1 187999 645 0.00 2019-12-06 19:31:14 2019-12-06 19:40:03 t 1 1 188001 687 0.00 2019-12-06 19:24:37 2019-12-06 19:41:19 t 1 1 188002 679 0.00 2019-12-06 19:41:11 2019-12-06 19:41:25 t 1 1 188013 667 0.00 2019-12-06 19:46:54 2019-12-06 19:47:47 t 1 1 188014 220 0.00 2019-12-06 19:43:38 2019-12-06 19:48:36 t 1 2 188019 639 0.00 2019-12-06 19:52:04 2019-12-06 19:53:11 t 1 1 188021 675 0.00 2019-12-06 19:48:34 2019-12-06 19:54:29 t 1 1 188024 481 0.00 2019-12-06 19:35:16 2019-12-06 19:54:41 t 1 1 188025 639 0.00 2019-12-06 19:54:53 2019-12-06 19:55:06 t 1 1 188026 637 0.00 2019-12-06 18:28:06 2019-12-06 19:56:08 t 1 1 188030 639 0.00 2019-12-06 19:59:08 2019-12-06 19:59:12 t 1 1 188032 639 0.00 2019-12-06 20:00:46 2019-12-06 20:01:07 t 1 1 188033 639 0.00 2019-12-06 20:02:01 2019-12-06 20:02:08 t 1 1 188038 720 0.00 2019-12-06 19:36:45 2019-12-06 20:07:46 t 1 1 188039 679 0.00 2019-12-06 19:44:57 2019-12-06 20:08:22 t 1 1 188044 679 0.00 2019-12-06 20:12:36 2019-12-06 20:14:05 t 1 1 188049 639 0.00 2019-12-06 20:16:41 2019-12-06 20:17:43 t 1 1 188054 566 0.00 2019-12-06 20:12:47 2019-12-06 20:22:23 t 1 1 188056 679 0.00 2019-12-06 20:24:19 2019-12-06 20:24:22 t 1 1 188059 637 0.00 2019-12-06 20:22:07 2019-12-06 20:26:40 t 1 1 188060 679 0.00 2019-12-06 20:26:46 2019-12-06 20:26:51 t 1 1 188062 639 0.00 2019-12-06 20:25:48 2019-12-06 20:27:20 t 1 1 188063 679 0.00 2019-12-06 20:29:06 2019-12-06 20:29:19 t 1 1 188066 551 0.00 2019-12-06 19:53:21 2019-12-06 20:32:46 t 1 1 188068 679 0.00 2019-12-06 20:35:13 2019-12-06 20:35:16 t 1 1 188070 679 0.00 2019-12-06 20:36:00 2019-12-06 20:36:01 t 1 1 188076 581 0.00 2019-12-06 20:11:06 2019-12-06 20:42:27 t 1 1 188077 639 0.00 2019-12-06 20:42:57 2019-12-06 20:43:48 t 1 1 188080 551 0.00 2019-12-06 20:32:46 2019-12-06 20:46:02 t 1 1 188083 607 0.00 2019-12-06 20:39:09 2019-12-06 20:47:08 t 1 1 188084 645 0.00 2019-12-06 20:01:05 2019-12-06 20:47:42 t 1 1 188085 639 0.00 2019-12-06 20:49:28 2019-12-06 20:51:20 t 1 1 188086 649 0.00 2019-12-06 20:50:14 2019-12-06 20:52:23 t 1 1 188090 679 0.00 2019-12-06 20:37:01 2019-12-06 20:53:50 t 1 1 188093 607 0.00 2019-12-06 20:47:08 2019-12-06 20:54:41 t 1 1 188094 692 0.00 2019-12-06 20:54:46 2019-12-06 20:55:06 t 1 1 188097 692 0.00 2019-12-06 20:55:52 2019-12-06 20:56:52 t 1 1 188099 520 0.00 2019-12-06 20:55:47 2019-12-06 20:57:11 t 1 1 188106 607 0.00 2019-12-06 20:54:41 2019-12-06 21:04:49 t 1 1 188109 459 0.00 2019-12-06 20:51:14 2019-12-06 21:07:50 t 1 2 188110 520 0.00 2019-12-06 20:58:54 2019-12-06 21:08:29 t 1 1 188112 520 0.00 2019-12-06 21:08:28 2019-12-06 21:10:21 t 1 1 188113 645 0.00 2019-12-06 20:47:42 2019-12-06 21:12:16 t 1 1 188118 545 0.00 2019-12-06 21:05:24 2019-12-06 21:17:12 t 1 1 188119 578 0.00 2019-12-06 19:11:33 2019-12-06 21:17:41 t 1 1 188120 220 0.00 2019-12-06 21:04:36 2019-12-06 21:18:24 t 1 2 188122 564 0.00 2019-12-06 18:26:36 2019-12-06 21:21:29 t 1 1 188123 639 0.00 2019-12-06 21:13:38 2019-12-06 21:27:21 t 1 1 188127 689 0.00 2019-12-06 21:25:23 2019-12-06 21:30:14 t 1 1 188128 692 0.00 2019-12-06 21:31:58 2019-12-06 21:33:00 t 1 1 188129 637 0.00 2019-12-06 20:45:04 2019-12-06 21:33:30 t 1 1 188134 689 0.00 2019-12-06 21:36:45 2019-12-06 21:37:48 t 1 1 188135 689 0.00 2019-12-06 21:37:58 2019-12-06 21:39:05 t 1 1 188136 692 0.00 2019-12-06 21:39:19 2019-12-06 21:40:07 t 1 1 188138 689 0.00 2019-12-06 21:41:18 2019-12-06 21:42:22 t 1 1 188140 649 0.00 2019-12-06 21:40:18 2019-12-06 21:43:49 t 1 1 188143 637 0.00 2019-12-06 21:33:30 2019-12-06 21:48:40 t 1 1 188144 649 0.00 2019-12-06 21:44:59 2019-12-06 21:49:34 t 1 1 188148 689 0.00 2019-12-06 21:49:50 2019-12-06 21:50:51 t 1 1 188150 578 0.00 2019-12-06 21:29:51 2019-12-06 21:53:12 t 1 1 188152 689 0.00 2019-12-06 21:51:08 2019-12-06 21:53:18 t 1 1 188153 578 0.00 2019-12-06 21:53:12 2019-12-06 21:56:09 t 1 1 188155 692 0.00 2019-12-06 21:54:45 2019-12-06 22:01:14 t 1 1 188157 689 0.00 2019-12-06 21:53:32 2019-12-06 22:03:42 t 1 1 188158 611 0.00 2019-12-06 22:01:13 2019-12-06 22:04:25 t 1 1 187847 679 0.00 2019-12-06 18:11:33 2019-12-06 18:11:40 t 1 1 187850 622 0.00 2019-12-06 18:12:42 2019-12-06 18:14:35 t 1 1 187852 611 0.00 2019-12-06 18:12:09 2019-12-06 18:14:48 t 1 1 187854 722 0.00 2019-12-06 18:14:15 2019-12-06 18:14:52 t 1 1 187860 622 0.00 2019-12-06 18:14:38 2019-12-06 18:18:45 t 1 1 187861 667 0.00 2019-12-06 18:09:31 2019-12-06 18:19:09 t 1 1 187862 679 0.00 2019-12-06 18:19:13 2019-12-06 18:19:23 t 1 1 187865 679 0.00 2019-12-06 18:20:24 2019-12-06 18:20:27 t 1 1 187869 679 0.00 2019-12-06 18:21:53 2019-12-06 18:22:48 t 1 1 187871 722 0.00 2019-12-06 18:22:56 2019-12-06 18:23:08 t 1 1 187872 490 0.00 2019-12-06 18:17:39 2019-12-06 18:23:37 t 1 1 187874 637 0.00 2019-12-06 18:20:01 2019-12-06 18:24:23 t 1 1 187883 639 0.00 2019-12-06 18:28:34 2019-12-06 18:29:04 t 1 1 187884 639 0.00 2019-12-06 18:29:20 2019-12-06 18:29:25 t 1 1 187886 639 0.00 2019-12-06 18:30:15 2019-12-06 18:30:47 t 1 1 187887 639 0.00 2019-12-06 18:32:16 2019-12-06 18:32:22 t 1 1 187889 722 0.00 2019-12-06 18:33:59 2019-12-06 18:34:12 t 1 1 187890 639 0.00 2019-12-06 18:33:49 2019-12-06 18:34:29 t 1 1 187893 707 0.00 2019-12-06 17:40:49 2019-12-06 18:35:00 t 1 1 187896 722 0.00 2019-12-06 18:34:39 2019-12-06 18:35:24 t 1 1 187898 722 0.00 2019-12-06 18:35:54 2019-12-06 18:36:03 t 1 1 187899 722 0.00 2019-12-06 18:36:23 2019-12-06 18:36:41 t 1 1 187902 722 0.00 2019-12-06 18:37:40 2019-12-06 18:37:48 t 1 1 187905 722 0.00 2019-12-06 18:38:52 2019-12-06 18:38:54 t 1 1 187908 639 0.00 2019-12-06 18:39:13 2019-12-06 18:39:28 t 1 1 187912 639 0.00 2019-12-06 18:39:54 2019-12-06 18:40:53 t 1 1 187913 722 0.00 2019-12-06 18:40:58 2019-12-06 18:41:01 t 1 1 187914 639 0.00 2019-12-06 18:41:19 2019-12-06 18:41:33 t 1 1 187916 722 0.00 2019-12-06 18:41:45 2019-12-06 18:43:31 t 1 1 187920 622 0.00 2019-12-06 18:19:05 2019-12-06 18:44:59 t 1 1 187923 673 0.00 2019-12-06 18:35:18 2019-12-06 18:46:12 t 1 1 187924 591 0.00 2019-12-06 18:34:52 2019-12-06 18:46:37 t 1 1 187926 639 0.00 2019-12-06 18:47:24 2019-12-06 18:47:39 t 1 1 187928 722 0.00 2019-12-06 18:47:46 2019-12-06 18:47:48 t 1 1 187929 694 0.00 2019-12-06 18:10:12 2019-12-06 18:48:50 t 1 1 187935 639 0.00 2019-12-06 18:52:44 2019-12-06 18:52:52 t 1 1 187943 639 0.00 2019-12-06 18:56:52 2019-12-06 18:59:23 t 1 1 187946 220 0.00 2019-12-06 18:59:24 2019-12-06 19:02:47 t 1 2 187949 722 0.00 2019-12-06 18:59:52 2019-12-06 19:04:17 t 1 1 187951 673 0.00 2019-12-06 18:57:07 2019-12-06 19:05:15 t 1 1 187955 639 0.00 2019-12-06 19:05:59 2019-12-06 19:07:33 t 1 1 187957 679 0.00 2019-12-06 19:07:50 2019-12-06 19:08:19 t 1 1 187960 622 0.00 2019-12-06 18:44:59 2019-12-06 19:11:40 t 1 1 187964 639 0.00 2019-12-06 19:13:57 2019-12-06 19:14:16 t 1 1 187968 639 0.00 2019-12-06 19:16:33 2019-12-06 19:17:22 t 1 1 187972 679 0.00 2019-12-06 19:20:13 2019-12-06 19:20:24 t 1 1 187974 720 0.00 2019-12-06 19:14:50 2019-12-06 19:20:39 t 1 1 187975 671 0.00 2019-12-06 19:14:53 2019-12-06 19:21:16 t 1 1 187976 679 0.00 2019-12-06 19:22:17 2019-12-06 19:22:18 t 1 1 187977 679 0.00 2019-12-06 19:22:36 2019-12-06 19:22:48 t 1 1 187979 538 0.00 2019-12-06 18:53:35 2019-12-06 19:24:53 t 1 1 187983 551 0.00 2019-12-06 18:26:12 2019-12-06 19:28:42 t 1 1 187984 645 0.00 2019-12-06 19:23:26 2019-12-06 19:31:14 t 1 1 187985 679 0.00 2019-12-06 19:28:42 2019-12-06 19:32:08 t 1 1 187986 679 0.00 2019-12-06 19:32:57 2019-12-06 19:33:03 t 1 1 187987 639 0.00 2019-12-06 19:33:28 2019-12-06 19:33:38 t 1 1 187990 679 0.00 2019-12-06 19:35:13 2019-12-06 19:35:15 t 1 1 187992 679 0.00 2019-12-06 19:35:21 2019-12-06 19:35:26 t 1 1 187994 639 0.00 2019-12-06 19:37:26 2019-12-06 19:37:56 t 1 1 187995 675 0.00 2019-12-06 19:25:00 2019-12-06 19:39:09 t 1 1 187997 679 0.00 2019-12-06 19:36:02 2019-12-06 19:39:34 t 1 1 187998 679 0.00 2019-12-06 19:39:43 2019-12-06 19:39:46 t 1 1 188000 639 0.00 2019-12-06 19:39:40 2019-12-06 19:40:16 t 1 1 188003 679 0.00 2019-12-06 19:41:52 2019-12-06 19:41:58 t 1 1 188006 718 0.00 2019-12-06 19:36:53 2019-12-06 19:42:46 t 1 1 188007 639 0.00 2019-12-06 19:43:59 2019-12-06 19:44:12 t 1 1 188008 679 0.00 2019-12-06 19:42:57 2019-12-06 19:44:57 t 1 1 188016 718 0.00 2019-12-06 19:42:46 2019-12-06 19:50:43 t 1 1 188018 667 0.00 2019-12-06 19:48:37 2019-12-06 19:52:53 t 1 1 188020 551 0.00 2019-12-06 19:28:42 2019-12-06 19:53:21 t 1 1 188023 667 0.00 2019-12-06 19:54:25 2019-12-06 19:54:40 t 1 1 188028 639 0.00 2019-12-06 19:58:10 2019-12-06 19:58:44 t 1 1 188036 667 0.00 2019-12-06 19:59:14 2019-12-06 20:05:05 t 1 1 188041 679 0.00 2019-12-06 20:08:49 2019-12-06 20:11:51 t 1 1 188042 520 0.00 2019-12-06 19:56:16 2019-12-06 20:12:37 t 1 1 188043 220 0.00 2019-12-06 18:24:15 2019-12-06 20:13:36 t 1 1 188046 679 0.00 2019-12-06 20:15:00 2019-12-06 20:15:12 t 1 1 188047 687 0.00 2019-12-06 19:47:40 2019-12-06 20:16:15 t 1 1 188048 679 0.00 2019-12-06 20:16:28 2019-12-06 20:16:35 t 1 1 188051 516 0.00 2019-12-06 20:02:33 2019-12-06 20:18:55 t 1 1 188055 679 0.00 2019-12-06 20:17:23 2019-12-06 20:22:32 t 1 1 188071 516 0.00 2019-12-06 20:36:11 2019-12-06 20:38:38 t 1 1 188074 639 0.00 2019-12-06 20:32:39 2019-12-06 20:40:27 t 1 1 188082 544 0.00 2019-12-06 20:38:39 2019-12-06 20:47:04 t 1 1 188088 220 0.00 2019-12-06 20:50:11 2019-12-06 20:52:31 t 1 2 188091 679 0.00 2019-12-06 20:54:07 2019-12-06 20:54:09 t 1 1 188092 679 0.00 2019-12-06 20:54:18 2019-12-06 20:54:19 t 1 1 188095 566 0.00 2019-12-06 20:39:21 2019-12-06 20:56:10 t 1 1 188096 679 0.00 2019-12-06 20:56:45 2019-12-06 20:56:49 t 1 1 188098 679 0.00 2019-12-06 20:56:57 2019-12-06 20:56:59 t 1 1 188102 679 0.00 2019-12-06 20:58:11 2019-12-06 20:58:52 t 1 1 188104 679 0.00 2019-12-06 21:00:53 2019-12-06 21:01:17 t 1 1 188105 692 0.00 2019-12-06 20:58:59 2019-12-06 21:03:24 t 1 1 188107 679 0.00 2019-12-06 21:02:13 2019-12-06 21:05:31 t 1 1 188111 220 0.00 2019-12-06 20:45:50 2019-12-06 21:10:17 t 1 1 188116 625 0.00 2019-12-06 20:32:31 2019-12-06 21:14:33 t 1 1 188117 516 0.00 2019-12-06 21:11:57 2019-12-06 21:16:47 t 1 1 188125 692 0.00 2019-12-06 21:03:24 2019-12-06 21:29:06 t 1 1 188137 649 0.00 2019-12-06 20:58:37 2019-12-06 21:40:19 t 1 1 188139 692 0.00 2019-12-06 21:41:49 2019-12-06 21:43:33 t 1 1 188141 689 0.00 2019-12-06 21:45:59 2019-12-06 21:47:50 t 1 1 188145 689 0.00 2019-12-06 21:48:05 2019-12-06 21:49:51 t 1 1 188146 656 0.00 2019-12-06 21:33:54 2019-12-06 21:50:21 t 1 1 188151 639 0.00 2019-12-06 21:27:28 2019-12-06 21:53:13 t 1 1 188161 611 0.00 2019-12-06 22:04:16 2019-12-06 22:06:20 t 1 1 188165 656 0.00 2019-12-06 21:50:21 2019-12-06 22:08:57 t 1 1 188170 689 0.00 2019-12-06 22:13:42 2019-12-06 22:14:22 t 1 1 187855 639 0.00 2019-12-06 18:11:59 2019-12-06 18:14:57 t 1 1 187857 645 0.00 2019-12-06 18:16:41 2019-12-06 18:16:53 t 1 1 187859 637 0.00 2019-12-06 17:55:49 2019-12-06 18:17:25 t 1 1 187864 679 0.00 2019-12-06 18:20:15 2019-12-06 18:20:16 t 1 1 187868 718 0.00 2019-12-06 18:15:04 2019-12-06 18:22:15 t 1 1 187875 679 0.00 2019-12-06 18:24:23 2019-12-06 18:24:33 t 1 1 187877 490 0.00 2019-12-06 18:23:37 2019-12-06 18:25:31 t 1 1 187881 722 0.00 2019-12-06 18:27:36 2019-12-06 18:28:02 t 1 1 187882 639 0.00 2019-12-06 18:27:55 2019-12-06 18:28:21 t 1 1 187888 722 0.00 2019-12-06 18:31:34 2019-12-06 18:32:36 t 1 1 187891 722 0.00 2019-12-06 18:34:26 2019-12-06 18:34:33 t 1 1 187892 591 0.00 2019-12-06 17:05:40 2019-12-06 18:34:52 t 1 1 187894 673 0.00 2019-12-06 18:14:26 2019-12-06 18:35:00 t 1 1 187897 639 0.00 2019-12-06 18:34:40 2019-12-06 18:35:49 t 1 1 187900 538 0.00 2019-12-06 18:20:21 2019-12-06 18:37:01 t 1 1 187901 520 0.00 2019-12-06 18:31:13 2019-12-06 18:37:27 t 1 1 187903 639 0.00 2019-12-06 18:37:20 2019-12-06 18:37:50 t 1 1 187906 485 0.00 2019-12-06 18:27:41 2019-12-06 18:38:58 t 1 1 187909 660 0.00 2019-12-06 17:55:15 2019-12-06 18:39:45 t 1 1 187910 722 0.00 2019-12-06 18:37:55 2019-12-06 18:40:20 t 1 1 187915 485 0.00 2019-12-06 18:39:06 2019-12-06 18:43:12 t 1 1 187917 718 0.00 2019-12-06 18:42:43 2019-12-06 18:43:44 t 1 1 187919 675 0.00 2019-12-06 18:40:58 2019-12-06 18:44:37 t 1 1 187921 679 0.00 2019-12-06 18:24:52 2019-12-06 18:45:53 t 1 1 187922 722 0.00 2019-12-06 18:45:53 2019-12-06 18:46:01 t 1 1 187925 639 0.00 2019-12-06 18:46:05 2019-12-06 18:46:48 t 1 1 187927 722 0.00 2019-12-06 18:47:34 2019-12-06 18:47:40 t 1 1 187930 660 0.00 2019-12-06 18:39:45 2019-12-06 18:49:11 t 1 1 187931 220 0.00 2019-12-06 18:00:22 2019-12-06 18:50:02 t 1 2 187932 639 0.00 2019-12-06 18:49:27 2019-12-06 18:50:27 t 1 1 187933 722 0.00 2019-12-06 18:51:15 2019-12-06 18:51:27 t 1 1 187936 545 0.00 2019-12-06 16:15:43 2019-12-06 18:53:06 t 1 1 187938 639 0.00 2019-12-06 18:54:47 2019-12-06 18:54:51 t 1 1 187941 722 0.00 2019-12-06 18:55:48 2019-12-06 18:57:10 t 1 1 187942 635 0.00 2019-12-06 18:48:31 2019-12-06 18:59:10 t 1 1 187944 607 0.00 2019-12-06 17:56:46 2019-12-06 19:01:51 t 1 1 187945 631 0.00 2019-12-06 18:59:28 2019-12-06 19:02:32 t 1 1 187947 485 0.00 2019-12-06 18:45:21 2019-12-06 19:02:50 t 1 1 187952 639 0.00 2019-12-06 19:02:38 2019-12-06 19:05:20 t 1 1 187953 679 0.00 2019-12-06 18:54:15 2019-12-06 19:06:34 t 1 1 187954 679 0.00 2019-12-06 19:06:45 2019-12-06 19:06:47 t 1 1 187959 578 0.00 2019-12-06 18:51:47 2019-12-06 19:11:18 t 1 1 187961 639 0.00 2019-12-06 19:11:24 2019-12-06 19:12:24 t 1 1 187965 720 0.00 2019-12-06 18:46:57 2019-12-06 19:14:50 t 1 1 187969 679 0.00 2019-12-06 19:08:49 2019-12-06 19:19:39 t 1 1 187971 639 0.00 2019-12-06 19:19:55 2019-12-06 19:20:03 t 1 1 187973 679 0.00 2019-12-06 19:20:30 2019-12-06 19:20:34 t 1 1 187978 645 0.00 2019-12-06 19:13:04 2019-12-06 19:23:26 t 1 1 187981 639 0.00 2019-12-06 19:26:59 2019-12-06 19:27:44 t 1 1 187988 639 0.00 2019-12-06 19:34:00 2019-12-06 19:34:12 t 1 1 187991 481 0.00 2019-12-06 16:36:53 2019-12-06 19:35:18 t 1 1 187996 639 0.00 2019-12-06 19:38:59 2019-12-06 19:39:29 t 1 1 188004 679 0.00 2019-12-06 19:42:07 2019-12-06 19:42:09 t 1 1 188005 679 0.00 2019-12-06 19:42:26 2019-12-06 19:42:28 t 1 1 188009 639 0.00 2019-12-06 19:45:06 2019-12-06 19:45:15 t 1 1 188010 220 0.00 2019-12-06 19:19:00 2019-12-06 19:45:30 t 1 2 188011 639 0.00 2019-12-06 19:45:59 2019-12-06 19:46:29 t 1 1 188012 687 0.00 2019-12-06 19:41:19 2019-12-06 19:47:40 t 1 1 188015 639 0.00 2019-12-06 19:49:32 2019-12-06 19:49:45 t 1 1 188017 639 0.00 2019-12-06 19:49:58 2019-12-06 19:51:03 t 1 1 188022 718 0.00 2019-12-06 19:50:43 2019-12-06 19:54:36 t 1 1 188027 639 0.00 2019-12-06 19:56:16 2019-12-06 19:56:40 t 1 1 188029 667 0.00 2019-12-06 19:58:59 2019-12-06 19:59:07 t 1 1 188031 645 0.00 2019-12-06 19:40:03 2019-12-06 20:01:05 t 1 1 188034 637 0.00 2019-12-06 19:59:57 2019-12-06 20:03:18 t 1 1 188035 639 0.00 2019-12-06 20:02:45 2019-12-06 20:04:20 t 1 1 188037 639 0.00 2019-12-06 20:06:46 2019-12-06 20:07:12 t 1 1 188040 707 0.00 2019-12-06 19:36:10 2019-12-06 20:11:45 t 1 1 188045 639 0.00 2019-12-06 20:14:41 2019-12-06 20:15:06 t 1 1 188050 720 0.00 2019-12-06 20:07:46 2019-12-06 20:17:51 t 1 1 188052 639 0.00 2019-12-06 20:20:36 2019-12-06 20:21:16 t 1 1 188053 637 0.00 2019-12-06 20:18:18 2019-12-06 20:22:07 t 1 1 188057 639 0.00 2019-12-06 20:24:37 2019-12-06 20:25:20 t 1 1 188058 671 0.00 2019-12-06 20:20:53 2019-12-06 20:26:23 t 1 1 188061 639 0.00 2019-12-06 20:26:46 2019-12-06 20:27:14 t 1 1 188064 675 0.00 2019-12-06 20:21:11 2019-12-06 20:31:17 t 1 1 188065 679 0.00 2019-12-06 20:31:53 2019-12-06 20:32:04 t 1 1 188067 639 0.00 2019-12-06 20:32:20 2019-12-06 20:34:20 t 1 1 188069 679 0.00 2019-12-06 20:35:23 2019-12-06 20:35:29 t 1 1 188072 607 0.00 2019-12-06 19:01:51 2019-12-06 20:39:09 t 1 1 188073 566 0.00 2019-12-06 20:22:23 2019-12-06 20:39:20 t 1 1 188075 220 0.00 2019-12-06 20:38:17 2019-12-06 20:41:40 t 1 2 188078 637 0.00 2019-12-06 20:26:40 2019-12-06 20:45:04 t 1 1 188079 220 0.00 2019-12-06 20:36:25 2019-12-06 20:45:47 t 1 1 188081 639 0.00 2019-12-06 20:44:47 2019-12-06 20:47:00 t 1 1 188087 692 0.00 2019-12-06 20:46:07 2019-12-06 20:52:23 t 1 1 188089 692 0.00 2019-12-06 20:52:56 2019-12-06 20:53:03 t 1 1 188100 692 0.00 2019-12-06 20:57:39 2019-12-06 20:58:13 t 1 1 188101 649 0.00 2019-12-06 20:52:22 2019-12-06 20:58:38 t 1 1 188103 679 0.00 2019-12-06 20:59:48 2019-12-06 20:59:51 t 1 1 188108 675 0.00 2019-12-06 21:04:00 2019-12-06 21:06:58 t 1 1 188114 639 0.00 2019-12-06 20:50:15 2019-12-06 21:12:17 t 1 1 188115 639 0.00 2019-12-06 21:12:34 2019-12-06 21:13:17 t 1 1 188121 671 0.00 2019-12-06 21:17:16 2019-12-06 21:19:12 t 1 1 188124 675 0.00 2019-12-06 21:27:07 2019-12-06 21:28:39 t 1 1 188126 578 0.00 2019-12-06 21:17:41 2019-12-06 21:29:51 t 1 1 188130 220 0.00 2019-12-06 21:28:17 2019-12-06 21:33:40 t 1 2 188131 689 0.00 2019-12-06 21:34:04 2019-12-06 21:35:33 t 1 1 188132 689 0.00 2019-12-06 21:35:42 2019-12-06 21:36:36 t 1 1 188133 692 0.00 2019-12-06 21:36:49 2019-12-06 21:36:58 t 1 1 188142 689 0.00 2019-12-06 21:47:49 2019-12-06 21:48:05 t 1 1 188147 220 0.00 2019-12-06 21:10:18 2019-12-06 21:50:24 t 1 1 188149 625 0.00 2019-12-06 21:14:33 2019-12-06 21:52:28 t 1 1 188154 607 0.00 2019-12-06 21:04:49 2019-12-06 21:58:19 t 1 1 188156 679 0.00 2019-12-06 21:47:01 2019-12-06 22:03:10 t 1 1 188159 459 0.00 2019-12-06 21:58:30 2019-12-06 22:04:36 t 1 2 188164 689 0.00 2019-12-06 22:08:31 2019-12-06 22:08:38 t 1 1 188160 220 0.00 2019-12-06 21:50:24 2019-12-06 22:06:07 t 1 1 188162 220 0.00 2019-12-06 22:06:07 2019-12-06 22:06:42 t 1 1 188163 566 0.00 2019-12-06 21:23:09 2019-12-06 22:06:57 t 1 1 188167 671 0.00 2019-12-06 21:59:53 2019-12-06 22:11:14 t 1 1 188168 667 0.00 2019-12-06 22:11:45 2019-12-06 22:12:43 t 1 1 188171 520 0.00 2019-12-06 21:47:24 2019-12-06 22:14:34 t 1 1 188174 611 0.00 2019-12-06 22:11:15 2019-12-06 22:15:48 t 1 1 188179 689 0.00 2019-12-06 22:17:16 2019-12-06 22:17:33 t 1 1 188181 611 0.00 2019-12-06 22:15:47 2019-12-06 22:17:48 t 1 1 188185 692 0.00 2019-12-06 22:19:27 2019-12-06 22:20:09 t 1 1 188187 689 0.00 2019-12-06 22:20:27 2019-12-06 22:20:46 t 1 1 188188 692 0.00 2019-12-06 22:20:09 2019-12-06 22:21:19 t 1 1 188190 689 0.00 2019-12-06 22:21:01 2019-12-06 22:21:20 t 1 1 188203 692 0.00 2019-12-06 22:26:52 2019-12-06 22:28:32 t 1 1 188204 220 0.00 2019-12-06 22:06:43 2019-12-06 22:29:44 t 1 1 188209 687 0.00 2019-12-06 21:16:16 2019-12-06 22:31:09 t 1 1 188211 625 0.00 2019-12-06 21:52:28 2019-12-06 22:32:03 t 1 1 188215 545 0.00 2019-12-06 22:32:51 2019-12-06 22:33:55 t 1 1 188218 673 0.00 2019-12-06 20:20:05 2019-12-06 22:35:18 t 1 1 188219 689 0.00 2019-12-06 22:35:02 2019-12-06 22:35:24 t 1 1 188221 673 0.00 2019-12-06 22:35:18 2019-12-06 22:36:33 t 1 1 188223 564 0.00 2019-12-06 22:24:42 2019-12-06 22:37:01 t 1 1 188224 692 0.00 2019-12-06 22:36:55 2019-12-06 22:37:55 t 1 1 188227 692 0.00 2019-12-06 22:38:38 2019-12-06 22:39:19 t 1 1 188230 689 0.00 2019-12-06 22:40:33 2019-12-06 22:40:56 t 1 1 188234 551 0.00 2019-12-06 20:46:02 2019-12-06 22:42:21 t 1 1 188239 625 0.00 2019-12-06 22:32:03 2019-12-06 22:43:35 t 1 1 188243 679 0.00 2019-12-06 22:44:57 2019-12-06 22:44:58 t 1 1 188245 679 0.00 2019-12-06 22:45:18 2019-12-06 22:45:23 t 1 1 188251 625 0.00 2019-12-06 22:43:51 2019-12-06 22:46:52 t 1 1 188252 625 0.00 2019-12-06 22:46:39 2019-12-06 22:48:02 t 1 1 188256 679 0.00 2019-12-06 22:49:20 2019-12-06 22:49:35 t 1 1 188262 679 0.00 2019-12-06 22:51:19 2019-12-06 22:51:20 t 1 1 188268 639 0.00 2019-12-06 22:18:14 2019-12-06 22:53:46 t 1 1 188271 689 0.00 2019-12-06 22:56:01 2019-12-06 22:56:08 t 1 1 188275 718 0.00 2019-12-06 22:42:42 2019-12-06 22:57:52 t 1 1 188279 514 0.00 2019-12-06 22:08:58 2019-12-06 23:01:15 t 1 1 188282 611 0.00 2019-12-06 22:54:35 2019-12-06 23:04:18 t 1 1 188286 689 0.00 2019-12-06 23:06:35 2019-12-06 23:06:56 t 1 1 188288 611 0.00 2019-12-06 23:04:18 2019-12-06 23:07:54 t 1 1 188289 656 0.00 2019-12-06 22:08:57 2019-12-06 23:09:27 t 1 1 188292 591 0.00 2019-12-06 23:07:15 2019-12-06 23:11:41 t 1 1 188296 503 0.00 2019-12-06 23:18:10 2019-12-06 23:19:29 t 1 1 188297 538 0.00 2019-12-06 23:05:13 2019-12-06 23:20:25 t 1 1 188299 503 0.00 2019-12-06 23:19:29 2019-12-06 23:21:08 t 1 1 188303 689 0.00 2019-12-06 23:21:58 2019-12-06 23:22:20 t 1 1 188305 514 0.00 2019-12-06 23:01:15 2019-12-06 23:25:25 t 1 1 188306 622 0.00 2019-12-06 23:24:44 2019-12-06 23:26:52 t 1 1 188309 639 0.00 2019-12-06 22:53:46 2019-12-06 23:28:58 t 1 1 188312 645 0.00 2019-12-06 23:03:46 2019-12-06 23:31:14 t 1 1 188315 689 0.00 2019-12-06 23:32:48 2019-12-06 23:33:10 t 1 1 188317 692 0.00 2019-12-06 23:20:27 2019-12-06 23:35:24 t 1 1 188323 689 0.00 2019-12-06 23:42:31 2019-12-06 23:42:39 t 1 1 188328 718 0.00 2019-12-06 23:37:50 2019-12-06 23:46:07 t 1 1 188330 526 0.00 2019-12-06 23:30:58 2019-12-06 23:47:20 t 1 2 188331 671 0.00 2019-12-06 23:37:08 2019-12-06 23:47:39 t 1 1 188333 689 0.00 2019-12-06 23:47:36 2019-12-06 23:47:44 t 1 1 188334 689 0.00 2019-12-06 23:47:58 2019-12-06 23:48:19 t 1 1 188335 692 0.00 2019-12-06 23:35:24 2019-12-06 23:49:05 t 1 1 188337 220 0.00 2019-12-06 23:24:50 2019-12-06 23:49:13 t 1 2 188339 679 0.00 2019-12-06 23:50:13 2019-12-06 23:50:31 t 1 1 188340 679 0.00 2019-12-06 23:51:27 2019-12-06 23:51:31 t 1 1 188342 689 0.00 2019-12-06 23:52:46 2019-12-06 23:52:52 t 1 1 188345 687 0.00 2019-12-06 23:53:00 2019-12-06 23:54:19 t 1 1 188347 220 0.00 2019-12-06 23:29:16 2019-12-06 23:56:01 t 1 1 188350 607 0.00 2019-12-06 21:58:19 2019-12-06 23:59:41 t 1 1 188351 639 0.00 2019-12-06 23:49:04 2019-12-07 00:01:13 t 1 1 188356 689 0.00 2019-12-07 00:02:59 2019-12-07 00:03:45 t 1 1 188361 687 0.00 2019-12-06 23:56:26 2019-12-07 00:05:47 t 1 1 188362 639 0.00 2019-12-07 00:06:35 2019-12-07 00:06:55 t 1 1 188365 639 0.00 2019-12-07 00:07:27 2019-12-07 00:07:40 t 1 1 188368 639 0.00 2019-12-07 00:09:06 2019-12-07 00:09:27 t 1 1 188372 689 0.00 2019-12-07 00:13:18 2019-12-07 00:13:26 t 1 1 188373 639 0.00 2019-12-07 00:14:44 2019-12-07 00:15:14 t 1 1 188374 645 0.00 2019-12-06 23:54:52 2019-12-07 00:15:36 t 1 1 188375 692 0.00 2019-12-07 00:03:19 2019-12-07 00:17:26 t 1 1 188377 689 0.00 2019-12-07 00:18:24 2019-12-07 00:18:31 t 1 1 188379 639 0.00 2019-12-07 00:19:46 2019-12-07 00:20:11 t 1 1 188381 545 0.00 2019-12-07 00:06:54 2019-12-07 00:23:21 t 1 1 188383 689 0.00 2019-12-07 00:23:30 2019-12-07 00:23:37 t 1 1 188384 689 0.00 2019-12-07 00:23:48 2019-12-07 00:24:10 t 1 1 188387 639 0.00 2019-12-07 00:26:52 2019-12-07 00:27:00 t 1 1 188390 639 0.00 2019-12-07 00:30:20 2019-12-07 00:30:46 t 1 1 188394 639 0.00 2019-12-07 00:34:00 2019-12-07 00:34:08 t 1 1 188398 692 0.00 2019-12-07 00:35:53 2019-12-07 00:36:46 t 1 1 188406 551 0.00 2019-12-06 22:42:21 2019-12-07 00:40:44 t 1 1 188410 220 0.00 2019-12-07 00:39:16 2019-12-07 00:44:55 t 1 1 188414 639 0.00 2019-12-07 00:50:36 2019-12-07 00:50:42 t 1 1 188421 639 0.00 2019-12-07 00:56:20 2019-12-07 00:57:07 t 1 1 188424 689 0.00 2019-12-07 00:59:48 2019-12-07 00:59:54 t 1 1 188428 220 0.00 2019-12-07 00:53:11 2019-12-07 01:04:55 t 1 1 188430 639 0.00 2019-12-07 01:04:50 2019-12-07 01:05:03 t 1 1 188431 639 0.00 2019-12-07 01:06:35 2019-12-07 01:06:59 t 1 1 188433 679 0.00 2019-12-07 00:53:30 2019-12-07 01:07:25 t 1 1 188435 639 0.00 2019-12-07 01:08:55 2019-12-07 01:09:04 t 1 1 188436 639 0.00 2019-12-07 01:08:12 2019-12-07 01:09:20 t 1 1 188438 689 0.00 2019-12-07 01:09:59 2019-12-07 01:10:07 t 1 1 188442 639 0.00 2019-12-07 01:11:03 2019-12-07 01:12:20 t 1 1 188443 639 0.00 2019-12-07 01:12:43 2019-12-07 01:13:21 t 1 1 188444 639 0.00 2019-12-07 01:14:51 2019-12-07 01:14:56 t 1 1 188446 551 0.00 2019-12-07 00:40:44 2019-12-07 01:15:14 t 1 1 188449 639 0.00 2019-12-07 01:15:25 2019-12-07 01:17:20 t 1 1 188454 220 0.00 2019-12-07 01:10:44 2019-12-07 01:21:16 t 1 1 188456 639 0.00 2019-12-07 01:22:44 2019-12-07 01:22:54 t 1 1 188457 639 0.00 2019-12-07 01:23:08 2019-12-07 01:23:20 t 1 1 188458 639 0.00 2019-12-07 01:23:51 2019-12-07 01:24:07 t 1 1 188463 645 0.00 2019-12-07 01:26:12 2019-12-07 01:26:25 t 1 1 188166 514 0.00 2019-12-06 21:11:47 2019-12-06 22:08:58 t 1 1 188169 667 0.00 2019-12-06 22:12:43 2019-12-06 22:12:59 t 1 1 188173 689 0.00 2019-12-06 22:15:20 2019-12-06 22:15:37 t 1 1 188177 689 0.00 2019-12-06 22:16:57 2019-12-06 22:16:59 t 1 1 188180 639 0.00 2019-12-06 22:17:31 2019-12-06 22:17:41 t 1 1 188182 689 0.00 2019-12-06 22:17:45 2019-12-06 22:19:00 t 1 1 188183 692 0.00 2019-12-06 22:01:55 2019-12-06 22:19:27 t 1 1 188184 689 0.00 2019-12-06 22:19:50 2019-12-06 22:20:03 t 1 1 188194 692 0.00 2019-12-06 22:21:19 2019-12-06 22:22:58 t 1 1 188196 689 0.00 2019-12-06 22:23:15 2019-12-06 22:23:16 t 1 1 188197 728 0.00 2019-12-06 22:06:54 2019-12-06 22:23:41 t 1 1 188198 689 0.00 2019-12-06 22:23:28 2019-12-06 22:24:33 t 1 1 188200 692 0.00 2019-12-06 22:22:58 2019-12-06 22:24:46 t 1 1 188201 675 0.00 2019-12-06 22:15:37 2019-12-06 22:27:40 t 1 1 188206 692 0.00 2019-12-06 22:28:32 2019-12-06 22:30:13 t 1 1 188207 611 0.00 2019-12-06 22:22:51 2019-12-06 22:30:50 t 1 1 188212 694 0.00 2019-12-06 21:11:22 2019-12-06 22:32:50 t 1 1 188213 545 0.00 2019-12-06 22:29:31 2019-12-06 22:32:51 t 1 1 188216 689 0.00 2019-12-06 22:34:45 2019-12-06 22:34:51 t 1 1 188217 692 0.00 2019-12-06 22:33:34 2019-12-06 22:35:16 t 1 1 188225 545 0.00 2019-12-06 22:33:57 2019-12-06 22:38:11 t 1 1 188228 692 0.00 2019-12-06 22:39:46 2019-12-06 22:39:54 t 1 1 188229 689 0.00 2019-12-06 22:39:52 2019-12-06 22:40:22 t 1 1 188231 692 0.00 2019-12-06 22:41:37 2019-12-06 22:41:45 t 1 1 188233 679 0.00 2019-12-06 22:42:03 2019-12-06 22:42:06 t 1 1 188235 679 0.00 2019-12-06 22:42:28 2019-12-06 22:42:30 t 1 1 188238 689 0.00 2019-12-06 22:42:38 2019-12-06 22:43:01 t 1 1 188242 679 0.00 2019-12-06 22:44:46 2019-12-06 22:44:49 t 1 1 188247 679 0.00 2019-12-06 22:45:44 2019-12-06 22:45:48 t 1 1 188249 679 0.00 2019-12-06 22:45:59 2019-12-06 22:46:00 t 1 1 188250 625 0.00 2019-12-06 22:46:38 2019-12-06 22:46:39 t 1 1 188258 679 0.00 2019-12-06 22:50:15 2019-12-06 22:50:16 t 1 1 188260 689 0.00 2019-12-06 22:50:55 2019-12-06 22:51:02 t 1 1 188263 675 0.00 2019-12-06 22:49:13 2019-12-06 22:51:21 t 1 1 188265 679 0.00 2019-12-06 22:51:58 2019-12-06 22:52:09 t 1 1 188272 544 0.00 2019-12-06 22:33:31 2019-12-06 22:56:11 t 1 1 188273 689 0.00 2019-12-06 22:56:21 2019-12-06 22:56:42 t 1 1 188274 689 0.00 2019-12-06 22:56:56 2019-12-06 22:57:18 t 1 1 188278 720 0.00 2019-12-06 20:17:51 2019-12-06 23:00:12 t 1 1 188280 689 0.00 2019-12-06 23:01:11 2019-12-06 23:01:16 t 1 1 188281 689 0.00 2019-12-06 23:01:29 2019-12-06 23:01:52 t 1 1 188284 716 0.00 2019-12-06 23:04:54 2019-12-06 23:06:16 t 1 1 188285 689 0.00 2019-12-06 23:06:17 2019-12-06 23:06:23 t 1 1 188287 591 0.00 2019-12-06 22:49:24 2019-12-06 23:07:15 t 1 1 188293 718 0.00 2019-12-06 22:57:53 2019-12-06 23:12:08 t 1 1 188294 689 0.00 2019-12-06 23:16:32 2019-12-06 23:16:39 t 1 1 188295 611 0.00 2019-12-06 23:07:54 2019-12-06 23:17:25 t 1 1 188302 581 0.00 2019-12-06 22:05:04 2019-12-06 23:22:16 t 1 1 188307 689 0.00 2019-12-06 23:26:49 2019-12-06 23:26:55 t 1 1 188311 631 0.00 2019-12-06 23:28:39 2019-12-06 23:30:27 t 1 1 188313 689 0.00 2019-12-06 23:32:00 2019-12-06 23:32:02 t 1 1 188314 689 0.00 2019-12-06 23:32:17 2019-12-06 23:32:37 t 1 1 188319 689 0.00 2019-12-06 23:37:04 2019-12-06 23:37:34 t 1 1 188324 679 0.00 2019-12-06 23:42:27 2019-12-06 23:42:45 t 1 1 188325 679 0.00 2019-12-06 23:42:54 2019-12-06 23:42:56 t 1 1 188329 639 0.00 2019-12-06 23:28:58 2019-12-06 23:46:45 t 1 1 188341 694 0.00 2019-12-06 22:32:50 2019-12-06 23:51:39 t 1 1 188349 718 0.00 2019-12-06 23:52:59 2019-12-06 23:58:46 t 1 1 188352 639 0.00 2019-12-07 00:02:12 2019-12-07 00:02:43 t 1 1 188353 510 0.00 2019-12-06 22:28:38 2019-12-07 00:03:17 t 1 1 188359 689 0.00 2019-12-07 00:04:34 2019-12-07 00:04:54 t 1 1 188363 607 0.00 2019-12-06 23:59:41 2019-12-07 00:07:16 t 1 1 188364 639 0.00 2019-12-07 00:06:01 2019-12-07 00:07:20 t 1 1 188369 689 0.00 2019-12-07 00:09:11 2019-12-07 00:10:46 t 1 1 188380 639 0.00 2019-12-07 00:20:28 2019-12-07 00:20:37 t 1 1 188392 639 0.00 2019-12-07 00:33:26 2019-12-07 00:33:34 t 1 1 188395 689 0.00 2019-12-07 00:34:08 2019-12-07 00:34:15 t 1 1 188396 689 0.00 2019-12-07 00:34:26 2019-12-07 00:34:48 t 1 1 188401 220 0.00 2019-12-07 00:29:42 2019-12-07 00:39:16 t 1 1 188403 639 0.00 2019-12-07 00:40:03 2019-12-07 00:40:08 t 1 1 188407 574 0.00 2019-12-07 00:35:02 2019-12-07 00:43:52 t 1 1 188411 687 0.00 2019-12-07 00:05:48 2019-12-07 00:45:26 t 1 1 188413 689 0.00 2019-12-07 00:49:36 2019-12-07 00:49:43 t 1 1 188416 639 0.00 2019-12-07 00:51:54 2019-12-07 00:52:05 t 1 1 188418 689 0.00 2019-12-07 00:54:43 2019-12-07 00:54:51 t 1 1 188420 639 0.00 2019-12-07 00:55:00 2019-12-07 00:55:10 t 1 1 188422 639 0.00 2019-12-07 00:57:41 2019-12-07 00:57:51 t 1 1 188423 639 0.00 2019-12-07 00:57:22 2019-12-07 00:59:20 t 1 1 188434 639 0.00 2019-12-07 01:08:40 2019-12-07 01:08:49 t 1 1 188437 639 0.00 2019-12-07 01:09:12 2019-12-07 01:09:32 t 1 1 188439 639 0.00 2019-12-07 01:10:17 2019-12-07 01:10:22 t 1 1 188441 639 0.00 2019-12-07 01:11:23 2019-12-07 01:11:33 t 1 1 188448 689 0.00 2019-12-07 01:15:24 2019-12-07 01:15:46 t 1 1 188451 639 0.00 2019-12-07 01:16:52 2019-12-07 01:18:20 t 1 1 188453 689 0.00 2019-12-07 01:20:15 2019-12-07 01:20:44 t 1 1 188461 689 0.00 2019-12-07 01:25:43 2019-12-07 01:25:54 t 1 1 188471 639 0.00 2019-12-07 01:32:52 2019-12-07 01:33:01 t 1 1 188473 687 0.00 2019-12-07 00:45:33 2019-12-07 01:33:13 t 1 1 188475 689 0.00 2019-12-07 01:35:56 2019-12-07 01:36:03 t 1 1 188477 220 0.00 2019-12-07 01:33:07 2019-12-07 01:40:54 t 1 1 188478 689 0.00 2019-12-07 01:41:01 2019-12-07 01:41:07 t 1 1 188479 689 0.00 2019-12-07 01:41:18 2019-12-07 01:41:40 t 1 1 188481 689 0.00 2019-12-07 01:46:06 2019-12-07 01:46:13 t 1 1 188482 689 0.00 2019-12-07 01:46:22 2019-12-07 01:46:46 t 1 1 188483 220 0.00 2019-12-07 01:40:54 2019-12-07 01:47:41 t 1 1 188485 689 0.00 2019-12-07 01:51:13 2019-12-07 01:51:20 t 1 1 188486 639 0.00 2019-12-07 01:52:46 2019-12-07 01:53:11 t 1 1 188487 639 0.00 2019-12-07 01:53:34 2019-12-07 01:53:59 t 1 1 188488 639 0.00 2019-12-07 01:54:15 2019-12-07 01:54:27 t 1 1 188489 220 0.00 2019-12-07 01:47:41 2019-12-07 01:55:25 t 1 1 188490 689 0.00 2019-12-07 01:56:19 2019-12-07 01:56:26 t 1 1 188492 639 0.00 2019-12-07 01:58:26 2019-12-07 01:58:31 t 1 1 188496 639 0.00 2019-12-07 02:01:56 2019-12-07 02:02:09 t 1 1 188497 551 0.00 2019-12-07 01:15:14 2019-12-07 02:03:15 t 1 1 188501 551 0.00 2019-12-07 02:03:15 2019-12-07 02:04:57 t 1 1 188503 689 0.00 2019-12-07 02:06:36 2019-12-07 02:06:43 t 1 1 188504 689 0.00 2019-12-07 02:06:56 2019-12-07 02:07:20 t 1 1 188172 689 0.00 2019-12-06 22:14:43 2019-12-06 22:15:05 t 1 1 188175 689 0.00 2019-12-06 22:15:51 2019-12-06 22:16:11 t 1 1 188176 689 0.00 2019-12-06 22:16:24 2019-12-06 22:16:45 t 1 1 188178 639 0.00 2019-12-06 21:54:07 2019-12-06 22:17:00 t 1 1 188186 545 0.00 2019-12-06 22:17:55 2019-12-06 22:20:34 t 1 1 188189 689 0.00 2019-12-06 22:19:29 2019-12-06 22:21:20 t 1 1 188191 689 0.00 2019-12-06 22:21:33 2019-12-06 22:21:56 t 1 1 188192 689 0.00 2019-12-06 22:22:07 2019-12-06 22:22:28 t 1 1 188193 611 0.00 2019-12-06 22:20:34 2019-12-06 22:22:51 t 1 1 188195 689 0.00 2019-12-06 22:22:42 2019-12-06 22:23:04 t 1 1 188199 564 0.00 2019-12-06 21:21:29 2019-12-06 22:24:42 t 1 1 188202 481 0.00 2019-12-06 19:54:41 2019-12-06 22:27:46 t 1 1 188205 689 0.00 2019-12-06 22:29:40 2019-12-06 22:29:45 t 1 1 188208 622 0.00 2019-12-06 21:11:25 2019-12-06 22:31:08 t 1 1 188210 692 0.00 2019-12-06 22:30:13 2019-12-06 22:31:53 t 1 1 188214 692 0.00 2019-12-06 22:31:53 2019-12-06 22:33:34 t 1 1 188220 481 0.00 2019-12-06 22:27:46 2019-12-06 22:36:23 t 1 1 188222 692 0.00 2019-12-06 22:35:15 2019-12-06 22:36:55 t 1 1 188226 692 0.00 2019-12-06 22:37:54 2019-12-06 22:38:12 t 1 1 188232 679 0.00 2019-12-06 22:32:37 2019-12-06 22:41:50 t 1 1 188236 689 0.00 2019-12-06 22:41:21 2019-12-06 22:42:30 t 1 1 188237 718 0.00 2019-12-06 22:29:08 2019-12-06 22:42:42 t 1 1 188240 679 0.00 2019-12-06 22:42:41 2019-12-06 22:44:14 t 1 1 188241 679 0.00 2019-12-06 22:44:30 2019-12-06 22:44:37 t 1 1 188244 679 0.00 2019-12-06 22:45:05 2019-12-06 22:45:10 t 1 1 188246 627 0.00 2019-12-06 22:38:59 2019-12-06 22:45:25 t 1 1 188248 689 0.00 2019-12-06 22:45:25 2019-12-06 22:45:56 t 1 1 188253 679 0.00 2019-12-06 22:48:02 2019-12-06 22:48:11 t 1 1 188254 679 0.00 2019-12-06 22:48:27 2019-12-06 22:49:04 t 1 1 188255 679 0.00 2019-12-06 22:49:11 2019-12-06 22:49:13 t 1 1 188257 679 0.00 2019-12-06 22:50:05 2019-12-06 22:50:06 t 1 1 188259 679 0.00 2019-12-06 22:50:25 2019-12-06 22:50:40 t 1 1 188261 637 0.00 2019-12-06 21:55:51 2019-12-06 22:51:05 t 1 1 188264 538 0.00 2019-12-06 21:49:33 2019-12-06 22:51:36 t 1 1 188266 728 0.00 2019-12-06 22:23:41 2019-12-06 22:53:17 t 1 1 188267 679 0.00 2019-12-06 22:53:00 2019-12-06 22:53:29 t 1 1 188269 545 0.00 2019-12-06 22:52:25 2019-12-06 22:54:12 t 1 1 188270 611 0.00 2019-12-06 22:47:05 2019-12-06 22:54:35 t 1 1 188276 220 0.00 2019-12-06 22:29:44 2019-12-06 22:58:03 t 1 1 188277 687 0.00 2019-12-06 22:31:24 2019-12-06 22:58:29 t 1 1 188283 728 0.00 2019-12-06 22:53:17 2019-12-06 23:04:40 t 1 1 188290 627 0.00 2019-12-06 23:11:03 2019-12-06 23:11:07 t 1 1 188291 689 0.00 2019-12-06 23:11:26 2019-12-06 23:11:32 t 1 1 188298 692 0.00 2019-12-06 22:42:21 2019-12-06 23:20:28 t 1 1 188300 718 0.00 2019-12-06 23:12:08 2019-12-06 23:21:26 t 1 1 188301 689 0.00 2019-12-06 23:21:40 2019-12-06 23:21:48 t 1 1 188304 611 0.00 2019-12-06 23:17:24 2019-12-06 23:24:07 t 1 1 188308 220 0.00 2019-12-06 22:31:11 2019-12-06 23:28:41 t 1 2 188310 220 0.00 2019-12-06 22:58:25 2019-12-06 23:29:16 t 1 1 188316 514 0.00 2019-12-06 23:25:24 2019-12-06 23:34:14 t 1 1 188318 671 0.00 2019-12-06 23:07:21 2019-12-06 23:37:08 t 1 1 188320 718 0.00 2019-12-06 23:21:26 2019-12-06 23:37:50 t 1 1 188321 679 0.00 2019-12-06 22:57:05 2019-12-06 23:40:54 t 1 1 188322 679 0.00 2019-12-06 23:41:44 2019-12-06 23:41:50 t 1 1 188326 689 0.00 2019-12-06 23:42:50 2019-12-06 23:43:11 t 1 1 188327 679 0.00 2019-12-06 23:43:50 2019-12-06 23:43:56 t 1 1 188332 554 0.00 2019-12-06 23:47:40 2019-12-06 23:47:40 f 1 1 188336 679 0.00 2019-12-06 23:49:01 2019-12-06 23:49:10 t 1 1 188338 671 0.00 2019-12-06 23:47:38 2019-12-06 23:49:22 t 1 1 188343 718 0.00 2019-12-06 23:46:07 2019-12-06 23:53:00 t 1 1 188344 581 0.00 2019-12-06 23:46:31 2019-12-06 23:53:59 t 1 1 188346 645 0.00 2019-12-06 23:31:14 2019-12-06 23:54:52 t 1 1 188348 689 0.00 2019-12-06 23:57:50 2019-12-06 23:57:57 t 1 1 188354 692 0.00 2019-12-06 23:49:05 2019-12-07 00:03:19 t 1 1 188355 639 0.00 2019-12-07 00:03:12 2019-12-07 00:03:21 t 1 1 188357 639 0.00 2019-12-07 00:03:55 2019-12-07 00:03:56 t 1 1 188358 689 0.00 2019-12-07 00:03:57 2019-12-07 00:04:19 t 1 1 188360 639 0.00 2019-12-07 00:05:09 2019-12-07 00:05:35 t 1 1 188366 689 0.00 2019-12-07 00:08:11 2019-12-07 00:08:19 t 1 1 188367 689 0.00 2019-12-07 00:08:31 2019-12-07 00:08:53 t 1 1 188370 639 0.00 2019-12-07 00:10:26 2019-12-07 00:10:46 t 1 1 188371 639 0.00 2019-12-07 00:11:09 2019-12-07 00:11:28 t 1 1 188376 679 0.00 2019-12-06 23:51:41 2019-12-07 00:18:07 t 1 1 188378 639 0.00 2019-12-07 00:19:07 2019-12-07 00:19:15 t 1 1 188382 645 0.00 2019-12-07 00:20:01 2019-12-07 00:23:32 t 1 1 188385 639 0.00 2019-12-07 00:21:57 2019-12-07 00:25:12 t 1 1 188386 607 0.00 2019-12-07 00:07:16 2019-12-07 00:25:31 t 1 1 188388 689 0.00 2019-12-07 00:28:41 2019-12-07 00:29:08 t 1 1 188389 639 0.00 2019-12-07 00:29:06 2019-12-07 00:30:10 t 1 1 188391 679 0.00 2019-12-07 00:18:07 2019-12-07 00:31:33 t 1 1 188393 607 0.00 2019-12-07 00:25:31 2019-12-07 00:33:35 t 1 1 188397 692 0.00 2019-12-07 00:17:26 2019-12-07 00:35:53 t 1 1 188399 639 0.00 2019-12-07 00:37:09 2019-12-07 00:37:17 t 1 1 188400 639 0.00 2019-12-07 00:36:28 2019-12-07 00:38:20 t 1 1 188402 689 0.00 2019-12-07 00:39:18 2019-12-07 00:39:21 t 1 1 188404 544 0.00 2019-12-07 00:23:58 2019-12-07 00:40:19 t 1 1 188405 639 0.00 2019-12-07 00:38:47 2019-12-07 00:40:20 t 1 1 188408 639 0.00 2019-12-07 00:43:51 2019-12-07 00:44:06 t 1 1 188409 689 0.00 2019-12-07 00:44:31 2019-12-07 00:44:38 t 1 1 188412 639 0.00 2019-12-07 00:49:13 2019-12-07 00:49:20 t 1 1 188415 544 0.00 2019-12-07 00:42:12 2019-12-07 00:51:45 t 1 1 188417 679 0.00 2019-12-07 00:31:33 2019-12-07 00:53:30 t 1 1 188419 639 0.00 2019-12-07 00:54:49 2019-12-07 00:54:54 t 1 1 188425 639 0.00 2019-12-07 01:00:41 2019-12-07 01:01:43 t 1 1 188426 639 0.00 2019-12-07 01:02:29 2019-12-07 01:02:59 t 1 1 188427 639 0.00 2019-12-07 01:04:08 2019-12-07 01:04:18 t 1 1 188429 689 0.00 2019-12-07 01:04:52 2019-12-07 01:04:59 t 1 1 188432 639 0.00 2019-12-07 01:05:52 2019-12-07 01:07:20 t 1 1 188440 220 0.00 2019-12-07 01:04:55 2019-12-07 01:10:44 t 1 1 188445 689 0.00 2019-12-07 01:15:06 2019-12-07 01:15:13 t 1 1 188447 718 0.00 2019-12-07 00:45:15 2019-12-07 01:15:18 t 1 1 188450 679 0.00 2019-12-07 01:16:59 2019-12-07 01:18:16 t 1 1 188452 639 0.00 2019-12-07 01:17:50 2019-12-07 01:18:25 t 1 1 188455 689 0.00 2019-12-07 01:20:52 2019-12-07 01:21:16 t 1 1 188459 538 0.00 2019-12-07 00:50:05 2019-12-07 01:24:43 t 1 1 188460 538 0.00 2019-12-07 01:23:47 2019-12-07 01:25:20 t 1 1 188462 689 0.00 2019-12-07 01:26:01 2019-12-07 01:26:23 t 1 1 188464 689 0.00 2019-12-07 01:30:51 2019-12-07 01:30:56 t 1 1 188465 639 0.00 2019-12-07 01:29:30 2019-12-07 01:31:20 t 1 1 188467 607 0.00 2019-12-07 00:33:35 2019-12-07 01:31:57 t 1 1 188470 689 0.00 2019-12-07 01:32:13 2019-12-07 01:32:35 t 1 1 188472 220 0.00 2019-12-07 01:21:16 2019-12-07 01:33:07 t 1 1 188480 639 0.00 2019-12-07 01:45:11 2019-12-07 01:45:45 t 1 1 188484 639 0.00 2019-12-07 01:47:26 2019-12-07 01:49:20 t 1 1 188493 639 0.00 2019-12-07 02:00:15 2019-12-07 02:01:20 t 1 1 188495 689 0.00 2019-12-07 02:01:29 2019-12-07 02:01:36 t 1 1 188498 639 0.00 2019-12-07 02:03:39 2019-12-07 02:03:47 t 1 1 188499 639 0.00 2019-12-07 02:03:04 2019-12-07 02:04:20 t 1 1 188507 689 0.00 2019-12-07 02:11:54 2019-12-07 02:13:03 t 1 1 188509 220 0.00 2019-12-07 02:06:09 2019-12-07 02:13:31 t 1 1 188510 687 0.00 2019-12-07 02:11:20 2019-12-07 02:14:41 t 1 1 188518 639 0.00 2019-12-07 02:22:09 2019-12-07 02:22:25 t 1 1 188520 220 0.00 2019-12-07 02:18:34 2019-12-07 02:24:59 t 1 1 188521 639 0.00 2019-12-07 02:25:00 2019-12-07 02:25:09 t 1 1 188529 639 0.00 2019-12-07 02:29:23 2019-12-07 02:29:29 t 1 1 188530 639 0.00 2019-12-07 02:32:44 2019-12-07 02:32:51 t 1 1 188531 689 0.00 2019-12-07 02:33:37 2019-12-07 02:33:45 t 1 1 188532 689 0.00 2019-12-07 02:33:53 2019-12-07 02:34:19 t 1 1 188533 639 0.00 2019-12-07 02:34:43 2019-12-07 02:34:50 t 1 1 188537 639 0.00 2019-12-07 02:38:39 2019-12-07 02:38:43 t 1 1 188539 687 0.00 2019-12-07 02:25:34 2019-12-07 02:39:08 t 1 1 188540 689 0.00 2019-12-07 02:43:52 2019-12-07 02:44:08 t 1 1 188552 639 0.00 2019-12-07 02:49:52 2019-12-07 02:49:53 t 1 1 188557 687 0.00 2019-12-07 02:53:14 2019-12-07 02:54:23 t 1 1 188561 639 0.00 2019-12-07 02:57:03 2019-12-07 02:58:21 t 1 1 188571 681 0.00 2019-12-07 02:58:02 2019-12-07 03:02:39 t 1 1 188572 639 0.00 2019-12-07 03:02:37 2019-12-07 03:03:37 t 1 1 188573 639 0.00 2019-12-07 03:04:08 2019-12-07 03:04:14 t 1 1 188581 639 0.00 2019-12-07 03:09:45 2019-12-07 03:11:21 t 1 1 188582 639 0.00 2019-12-07 03:10:33 2019-12-07 03:12:21 t 1 1 188586 689 0.00 2019-12-07 03:14:41 2019-12-07 03:14:44 t 1 1 188588 639 0.00 2019-12-07 03:15:21 2019-12-07 03:15:21 t 1 1 188592 639 0.00 2019-12-07 03:16:59 2019-12-07 03:17:08 t 1 1 188598 689 0.00 2019-12-07 03:19:33 2019-12-07 03:19:41 t 1 1 188601 639 0.00 2019-12-07 03:22:48 2019-12-07 03:22:54 t 1 1 188610 639 0.00 2019-12-07 03:29:26 2019-12-07 03:29:55 t 1 1 188613 681 0.00 2019-12-07 03:28:18 2019-12-07 03:33:13 t 1 1 188615 639 0.00 2019-12-07 03:34:04 2019-12-07 03:34:10 t 1 1 188616 639 0.00 2019-12-07 03:35:24 2019-12-07 03:35:29 t 1 1 188620 687 0.00 2019-12-07 03:05:19 2019-12-07 03:40:16 t 1 1 188621 639 0.00 2019-12-07 03:40:14 2019-12-07 03:40:32 t 1 1 188624 689 0.00 2019-12-07 03:45:11 2019-12-07 03:45:12 t 1 1 188627 639 0.00 2019-12-07 03:47:08 2019-12-07 03:47:14 t 1 1 188628 639 0.00 2019-12-07 03:47:58 2019-12-07 03:48:06 t 1 1 188704 639 0.00 2019-12-07 05:05:51 2019-12-07 05:05:59 t 1 1 188705 689 0.00 2019-12-07 05:06:35 2019-12-07 05:07:03 t 1 1 188706 689 0.00 2019-12-07 05:07:12 2019-12-07 05:07:35 t 1 1 188707 639 0.00 2019-12-07 05:08:33 2019-12-07 05:08:43 t 1 1 188708 639 0.00 2019-12-07 05:09:16 2019-12-07 05:09:37 t 1 1 188711 689 0.00 2019-12-07 05:12:01 2019-12-07 05:12:28 t 1 1 188717 639 0.00 2019-12-07 05:22:16 2019-12-07 05:22:23 t 1 1 188718 689 0.00 2019-12-07 05:23:02 2019-12-07 05:23:29 t 1 1 188719 639 0.00 2019-12-07 05:24:34 2019-12-07 05:24:42 t 1 1 188723 639 0.00 2019-12-07 05:29:10 2019-12-07 05:29:23 t 1 1 188725 639 0.00 2019-12-07 05:29:39 2019-12-07 05:29:45 t 1 1 188729 639 0.00 2019-12-07 05:32:53 2019-12-07 05:34:22 t 1 1 188731 689 0.00 2019-12-07 05:34:42 2019-12-07 05:35:05 t 1 1 188733 689 0.00 2019-12-07 05:35:15 2019-12-07 05:35:37 t 1 1 188734 639 0.00 2019-12-07 05:36:44 2019-12-07 05:36:52 t 1 1 188736 645 0.00 2019-12-07 05:38:18 2019-12-07 05:38:30 t 1 1 188737 689 0.00 2019-12-07 05:39:30 2019-12-07 05:39:59 t 1 1 188744 689 0.00 2019-12-07 05:44:58 2019-12-07 05:45:27 t 1 1 188747 689 0.00 2019-12-07 05:50:31 2019-12-07 05:50:38 t 1 1 188749 639 0.00 2019-12-07 05:51:11 2019-12-07 05:51:43 t 1 1 188751 516 0.00 2019-12-07 05:54:06 2019-12-07 05:54:25 t 1 1 188753 689 0.00 2019-12-07 05:55:36 2019-12-07 05:55:43 t 1 1 188757 689 0.00 2019-12-07 06:05:48 2019-12-07 06:05:56 t 1 1 188760 689 0.00 2019-12-07 06:10:56 2019-12-07 06:11:04 t 1 1 188762 639 0.00 2019-12-07 06:13:22 2019-12-07 06:13:43 t 1 1 188766 639 0.00 2019-12-07 06:19:08 2019-12-07 06:19:13 t 1 1 188770 689 0.00 2019-12-07 06:21:28 2019-12-07 06:21:49 t 1 1 188771 639 0.00 2019-12-07 06:23:14 2019-12-07 06:23:20 t 1 1 188774 639 0.00 2019-12-07 06:30:23 2019-12-07 06:30:48 t 1 1 188775 689 0.00 2019-12-07 06:31:18 2019-12-07 06:31:25 t 1 1 188776 611 0.00 2019-12-07 06:28:31 2019-12-07 06:33:22 t 1 1 188778 639 0.00 2019-12-07 06:36:23 2019-12-07 06:36:53 t 1 1 188780 639 0.00 2019-12-07 06:41:17 2019-12-07 06:41:19 t 1 1 188782 689 0.00 2019-12-07 06:41:54 2019-12-07 06:42:23 t 1 1 188783 689 0.00 2019-12-07 06:42:36 2019-12-07 06:42:55 t 1 1 188785 639 0.00 2019-12-07 06:43:16 2019-12-07 06:43:23 t 1 1 188790 689 0.00 2019-12-07 06:47:23 2019-12-07 06:47:52 t 1 1 188791 689 0.00 2019-12-07 06:48:04 2019-12-07 06:48:25 t 1 1 188793 645 0.00 2019-12-07 06:41:30 2019-12-07 06:49:13 t 1 1 188794 639 0.00 2019-12-07 06:52:47 2019-12-07 06:52:56 t 1 1 188795 689 0.00 2019-12-07 06:52:53 2019-12-07 06:53:20 t 1 1 188796 639 0.00 2019-12-07 06:55:45 2019-12-07 06:56:19 t 1 1 188798 689 0.00 2019-12-07 06:58:19 2019-12-07 06:58:34 t 1 1 188802 639 0.00 2019-12-07 07:04:37 2019-12-07 07:04:57 t 1 1 188803 639 0.00 2019-12-07 07:08:02 2019-12-07 07:08:33 t 1 1 188805 545 0.00 2019-12-07 07:07:05 2019-12-07 07:08:56 t 1 1 188806 689 0.00 2019-12-07 07:08:57 2019-12-07 07:09:20 t 1 1 188807 639 0.00 2019-12-07 07:11:09 2019-12-07 07:11:13 t 1 1 188811 639 0.00 2019-12-07 07:15:51 2019-12-07 07:16:06 t 1 1 188813 639 0.00 2019-12-07 07:17:34 2019-12-07 07:17:39 t 1 1 188814 689 0.00 2019-12-07 07:18:56 2019-12-07 07:19:03 t 1 1 188815 689 0.00 2019-12-07 07:19:12 2019-12-07 07:19:35 t 1 1 188817 707 0.00 2019-12-07 07:20:29 2019-12-07 07:20:52 t 1 1 188818 516 0.00 2019-12-07 07:19:11 2019-12-07 07:23:31 t 1 1 188819 645 0.00 2019-12-07 07:13:24 2019-12-07 07:24:04 t 1 1 188820 639 0.00 2019-12-07 07:24:59 2019-12-07 07:25:23 t 1 1 188822 611 0.00 2019-12-07 07:18:33 2019-12-07 07:27:13 t 1 1 188823 564 0.00 2019-12-07 06:56:07 2019-12-07 07:28:11 t 1 1 188824 637 0.00 2019-12-06 22:51:18 2019-12-07 07:29:42 t 1 1 188825 639 0.00 2019-12-07 07:31:04 2019-12-07 07:31:25 t 1 1 188466 689 0.00 2019-12-07 01:31:06 2019-12-07 01:31:31 t 1 1 188468 689 0.00 2019-12-07 01:31:40 2019-12-07 01:32:02 t 1 1 188469 639 0.00 2019-12-07 01:32:03 2019-12-07 01:32:17 t 1 1 188474 639 0.00 2019-12-07 01:34:17 2019-12-07 01:34:52 t 1 1 188476 639 0.00 2019-12-07 01:36:34 2019-12-07 01:38:20 t 1 1 188491 639 0.00 2019-12-07 01:56:31 2019-12-07 01:56:50 t 1 1 188494 639 0.00 2019-12-07 01:59:47 2019-12-07 02:01:20 t 1 1 188500 639 0.00 2019-12-07 02:04:13 2019-12-07 02:04:37 t 1 1 188502 639 0.00 2019-12-07 02:05:42 2019-12-07 02:05:50 t 1 1 188505 639 0.00 2019-12-07 02:07:51 2019-12-07 02:08:17 t 1 1 188506 687 0.00 2019-12-07 01:33:13 2019-12-07 02:11:20 t 1 1 188508 671 0.00 2019-12-07 02:05:09 2019-12-07 02:13:03 t 1 1 188511 639 0.00 2019-12-07 02:14:57 2019-12-07 02:15:20 t 1 1 188512 671 0.00 2019-12-07 02:12:58 2019-12-07 02:17:04 t 1 1 188513 639 0.00 2019-12-07 02:15:50 2019-12-07 02:17:20 t 1 1 188515 220 0.00 2019-12-07 02:13:31 2019-12-07 02:18:34 t 1 1 188522 687 0.00 2019-12-07 02:20:42 2019-12-07 02:25:18 t 1 1 188523 639 0.00 2019-12-07 02:24:01 2019-12-07 02:25:20 t 1 1 188524 639 0.00 2019-12-07 02:25:38 2019-12-07 02:26:03 t 1 1 188526 639 0.00 2019-12-07 02:28:30 2019-12-07 02:28:37 t 1 1 188528 639 0.00 2019-12-07 02:27:43 2019-12-07 02:29:20 t 1 1 188534 689 0.00 2019-12-07 02:34:29 2019-12-07 02:34:51 t 1 1 188543 689 0.00 2019-12-07 02:44:41 2019-12-07 02:44:53 t 1 1 188545 689 0.00 2019-12-07 02:45:53 2019-12-07 02:45:57 t 1 1 188547 639 0.00 2019-12-07 02:48:15 2019-12-07 02:48:17 t 1 1 188548 639 0.00 2019-12-07 02:48:24 2019-12-07 02:48:43 t 1 1 188550 689 0.00 2019-12-07 02:49:03 2019-12-07 02:49:08 t 1 1 188551 639 0.00 2019-12-07 02:49:13 2019-12-07 02:49:20 t 1 1 188554 687 0.00 2019-12-07 02:39:08 2019-12-07 02:53:01 t 1 1 188555 681 0.00 2019-12-07 02:21:32 2019-12-07 02:53:40 t 1 1 188556 689 0.00 2019-12-07 02:54:05 2019-12-07 02:54:11 t 1 1 188559 639 0.00 2019-12-07 02:57:44 2019-12-07 02:57:57 t 1 1 188564 689 0.00 2019-12-07 02:59:30 2019-12-07 02:59:34 t 1 1 188565 689 0.00 2019-12-07 02:59:44 2019-12-07 02:59:47 t 1 1 188567 689 0.00 2019-12-07 02:59:58 2019-12-07 03:00:00 t 1 1 188568 687 0.00 2019-12-07 02:56:59 2019-12-07 03:00:22 t 1 1 188575 639 0.00 2019-12-07 03:05:00 2019-12-07 03:05:06 t 1 1 188576 681 0.00 2019-12-07 03:02:39 2019-12-07 03:07:36 t 1 1 188577 639 0.00 2019-12-07 03:07:42 2019-12-07 03:07:58 t 1 1 188578 639 0.00 2019-12-07 03:08:13 2019-12-07 03:08:31 t 1 1 188579 689 0.00 2019-12-07 03:09:19 2019-12-07 03:09:26 t 1 1 188580 639 0.00 2019-12-07 03:11:03 2019-12-07 03:11:03 f 1 1 188583 639 0.00 2019-12-07 03:12:04 2019-12-07 03:12:31 t 1 1 188584 639 0.00 2019-12-07 03:13:50 2019-12-07 03:13:59 t 1 1 188585 689 0.00 2019-12-07 03:14:25 2019-12-07 03:14:30 t 1 1 188587 681 0.00 2019-12-07 03:07:36 2019-12-07 03:15:07 t 1 1 188591 639 0.00 2019-12-07 03:16:26 2019-12-07 03:16:33 t 1 1 188593 665 0.00 2019-12-07 03:15:52 2019-12-07 03:17:10 t 1 1 188594 639 0.00 2019-12-07 03:17:56 2019-12-07 03:18:04 t 1 1 188596 639 0.00 2019-12-07 03:18:42 2019-12-07 03:19:15 t 1 1 188599 675 0.00 2019-12-07 03:18:52 2019-12-07 03:21:29 t 1 1 188600 639 0.00 2019-12-07 03:22:25 2019-12-07 03:22:32 t 1 1 188603 681 0.00 2019-12-07 03:19:01 2019-12-07 03:23:21 t 1 1 188604 639 0.00 2019-12-07 03:23:51 2019-12-07 03:23:58 t 1 1 188605 689 0.00 2019-12-07 03:24:37 2019-12-07 03:24:50 t 1 1 188606 639 0.00 2019-12-07 03:26:43 2019-12-07 03:26:50 t 1 1 188607 681 0.00 2019-12-07 03:23:21 2019-12-07 03:28:18 t 1 1 188608 639 0.00 2019-12-07 03:28:07 2019-12-07 03:28:20 t 1 1 188611 639 0.00 2019-12-07 03:31:05 2019-12-07 03:31:10 t 1 1 188612 639 0.00 2019-12-07 03:32:07 2019-12-07 03:32:15 t 1 1 188614 639 0.00 2019-12-07 03:33:33 2019-12-07 03:33:47 t 1 1 188617 689 0.00 2019-12-07 03:34:51 2019-12-07 03:36:02 t 1 1 188618 639 0.00 2019-12-07 03:36:59 2019-12-07 03:37:07 t 1 1 188619 689 0.00 2019-12-07 03:39:56 2019-12-07 03:40:04 t 1 1 188623 639 0.00 2019-12-07 03:41:29 2019-12-07 03:41:35 t 1 1 188625 689 0.00 2019-12-07 03:45:22 2019-12-07 03:45:45 t 1 1 188626 639 0.00 2019-12-07 03:45:59 2019-12-07 03:46:23 t 1 1 188630 639 0.00 2019-12-07 03:48:46 2019-12-07 03:49:17 t 1 1 188631 689 0.00 2019-12-07 03:50:09 2019-12-07 03:50:16 t 1 1 188632 694 0.00 2019-12-06 23:51:39 2019-12-07 03:50:22 t 1 1 188633 639 0.00 2019-12-07 03:50:56 2019-12-07 03:51:26 t 1 1 188635 639 0.00 2019-12-07 03:51:50 2019-12-07 03:51:58 t 1 1 188636 639 0.00 2019-12-07 03:53:11 2019-12-07 03:53:16 t 1 1 188637 689 0.00 2019-12-07 03:55:17 2019-12-07 03:55:21 t 1 1 188638 639 0.00 2019-12-07 03:58:36 2019-12-07 04:00:22 t 1 1 188640 639 0.00 2019-12-07 04:00:41 2019-12-07 04:00:46 t 1 1 188709 639 0.00 2019-12-07 05:10:07 2019-12-07 05:10:13 t 1 1 188713 689 0.00 2019-12-07 05:17:34 2019-12-07 05:17:59 t 1 1 188716 639 0.00 2019-12-07 05:19:48 2019-12-07 05:20:27 t 1 1 188720 639 0.00 2019-12-07 05:27:00 2019-12-07 05:27:09 t 1 1 188721 639 0.00 2019-12-07 05:27:23 2019-12-07 05:27:28 t 1 1 188722 689 0.00 2019-12-07 05:28:29 2019-12-07 05:29:05 t 1 1 188726 639 0.00 2019-12-07 05:30:38 2019-12-07 05:31:09 t 1 1 188728 516 0.00 2019-12-07 05:32:33 2019-12-07 05:32:59 t 1 1 188732 639 0.00 2019-12-07 05:35:21 2019-12-07 05:35:26 t 1 1 188735 639 0.00 2019-12-07 05:38:02 2019-12-07 05:38:26 t 1 1 188739 675 0.00 2019-12-07 05:17:31 2019-12-07 05:40:55 t 1 1 188740 639 0.00 2019-12-07 05:41:01 2019-12-07 05:41:29 t 1 1 188741 639 0.00 2019-12-07 05:42:16 2019-12-07 05:42:26 t 1 1 188743 639 0.00 2019-12-07 05:43:55 2019-12-07 05:44:57 t 1 1 188745 639 0.00 2019-12-07 05:46:02 2019-12-07 05:46:10 t 1 1 188746 639 0.00 2019-12-07 05:46:53 2019-12-07 05:47:10 t 1 1 188748 639 0.00 2019-12-07 05:50:43 2019-12-07 05:50:56 t 1 1 188752 516 0.00 2019-12-07 05:54:34 2019-12-07 05:55:12 t 1 1 188754 639 0.00 2019-12-07 05:55:43 2019-12-07 05:55:53 t 1 1 188755 639 0.00 2019-12-07 05:56:57 2019-12-07 05:57:04 t 1 1 188759 516 0.00 2019-12-07 06:06:28 2019-12-07 06:09:23 t 1 1 188761 639 0.00 2019-12-07 06:08:27 2019-12-07 06:11:50 t 1 1 188763 639 0.00 2019-12-07 06:13:56 2019-12-07 06:14:09 t 1 1 188764 639 0.00 2019-12-07 06:15:26 2019-12-07 06:15:54 t 1 1 188767 639 0.00 2019-12-07 06:20:19 2019-12-07 06:20:41 t 1 1 188769 639 0.00 2019-12-07 06:21:26 2019-12-07 06:21:36 t 1 1 188781 645 0.00 2019-12-07 06:33:56 2019-12-07 06:41:30 t 1 1 188784 639 0.00 2019-12-07 06:42:56 2019-12-07 06:43:01 t 1 1 188788 520 0.00 2019-12-07 06:38:20 2019-12-07 06:44:52 t 1 1 188789 675 0.00 2019-12-07 06:43:46 2019-12-07 06:45:56 t 1 1 188792 689 0.00 2019-12-07 06:48:34 2019-12-07 06:48:57 t 1 1 188514 689 0.00 2019-12-07 02:17:14 2019-12-07 02:17:41 t 1 1 188516 639 0.00 2019-12-07 02:19:10 2019-12-07 02:19:40 t 1 1 188517 639 0.00 2019-12-07 02:20:59 2019-12-07 02:22:20 t 1 1 188519 689 0.00 2019-12-07 02:22:43 2019-12-07 02:23:12 t 1 1 188525 639 0.00 2019-12-07 02:27:05 2019-12-07 02:28:20 t 1 1 188527 689 0.00 2019-12-07 02:28:12 2019-12-07 02:28:39 t 1 1 188535 689 0.00 2019-12-07 02:35:00 2019-12-07 02:35:23 t 1 1 188536 639 0.00 2019-12-07 02:35:56 2019-12-07 02:36:35 t 1 1 188538 689 0.00 2019-12-07 02:38:46 2019-12-07 02:38:53 t 1 1 188541 689 0.00 2019-12-07 02:44:14 2019-12-07 02:44:19 t 1 1 188542 689 0.00 2019-12-07 02:44:28 2019-12-07 02:44:30 t 1 1 188544 689 0.00 2019-12-07 02:45:25 2019-12-07 02:45:38 t 1 1 188546 639 0.00 2019-12-07 02:46:40 2019-12-07 02:47:20 t 1 1 188549 220 0.00 2019-12-07 02:24:59 2019-12-07 02:48:46 t 1 1 188553 639 0.00 2019-12-07 02:49:53 2019-12-07 02:51:21 t 1 1 188558 639 0.00 2019-12-07 02:54:35 2019-12-07 02:54:59 t 1 1 188560 681 0.00 2019-12-07 02:53:40 2019-12-07 02:58:02 t 1 1 188562 639 0.00 2019-12-07 02:58:52 2019-12-07 02:58:57 t 1 1 188563 689 0.00 2019-12-07 02:59:09 2019-12-07 02:59:21 t 1 1 188566 639 0.00 2019-12-07 02:59:38 2019-12-07 02:59:58 t 1 1 188569 687 0.00 2019-12-07 03:00:39 2019-12-07 03:02:08 t 1 1 188570 639 0.00 2019-12-07 03:01:31 2019-12-07 03:02:37 t 1 1 188574 689 0.00 2019-12-07 03:04:12 2019-12-07 03:04:24 t 1 1 188589 665 0.00 2019-12-07 02:58:10 2019-12-07 03:15:52 t 1 1 188590 639 0.00 2019-12-07 03:15:21 2019-12-07 03:16:26 t 1 1 188595 681 0.00 2019-12-07 03:15:07 2019-12-07 03:19:01 t 1 1 188597 639 0.00 2019-12-07 03:19:32 2019-12-07 03:19:35 t 1 1 188602 639 0.00 2019-12-07 03:23:09 2019-12-07 03:23:15 t 1 1 188609 689 0.00 2019-12-07 03:29:45 2019-12-07 03:29:52 t 1 1 188622 639 0.00 2019-12-07 03:39:42 2019-12-07 03:41:22 t 1 1 188629 675 0.00 2019-12-07 03:25:10 2019-12-07 03:48:29 t 1 1 188634 656 0.00 2019-12-06 23:09:27 2019-12-07 03:51:37 t 1 1 188639 689 0.00 2019-12-07 04:00:19 2019-12-07 04:00:27 t 1 1 188710 538 0.00 2019-12-07 05:03:01 2019-12-07 05:12:03 t 1 1 188712 675 0.00 2019-12-07 04:57:29 2019-12-07 05:13:03 t 1 1 188714 639 0.00 2019-12-07 05:16:25 2019-12-07 05:18:22 t 1 1 188715 639 0.00 2019-12-07 05:18:46 2019-12-07 05:20:22 t 1 1 188724 689 0.00 2019-12-07 05:29:12 2019-12-07 05:29:36 t 1 1 188727 516 0.00 2019-12-07 05:30:03 2019-12-07 05:32:11 t 1 1 188730 689 0.00 2019-12-07 05:34:02 2019-12-07 05:34:34 t 1 1 188738 689 0.00 2019-12-07 05:40:10 2019-12-07 05:40:32 t 1 1 188742 639 0.00 2019-12-07 05:43:13 2019-12-07 05:43:18 t 1 1 188750 639 0.00 2019-12-07 05:51:42 2019-12-07 05:52:12 t 1 1 188756 689 0.00 2019-12-07 06:00:42 2019-12-07 06:00:50 t 1 1 188758 639 0.00 2019-12-07 05:59:54 2019-12-07 06:07:57 t 1 1 188765 689 0.00 2019-12-07 06:16:01 2019-12-07 06:16:09 t 1 1 188768 689 0.00 2019-12-07 06:21:07 2019-12-07 06:21:18 t 1 1 188772 667 0.00 2019-12-07 06:22:07 2019-12-07 06:23:35 t 1 1 188773 689 0.00 2019-12-07 06:26:13 2019-12-07 06:26:20 t 1 1 188777 645 0.00 2019-12-07 06:21:58 2019-12-07 06:33:56 t 1 1 188779 689 0.00 2019-12-07 06:36:26 2019-12-07 06:36:54 t 1 1 188786 689 0.00 2019-12-07 06:43:06 2019-12-07 06:43:28 t 1 1 188787 639 0.00 2019-12-07 06:42:42 2019-12-07 06:44:22 t 1 1 188797 645 0.00 2019-12-07 06:49:13 2019-12-07 06:58:32 t 1 1 188799 639 0.00 2019-12-07 07:01:57 2019-12-07 07:02:27 t 1 1 188800 689 0.00 2019-12-07 07:03:32 2019-12-07 07:03:39 t 1 1 188801 639 0.00 2019-12-07 07:04:07 2019-12-07 07:04:22 t 1 1 188804 689 0.00 2019-12-07 07:08:41 2019-12-07 07:08:47 t 1 1 188808 645 0.00 2019-12-07 06:58:32 2019-12-07 07:13:24 t 1 1 188809 689 0.00 2019-12-07 07:13:49 2019-12-07 07:13:56 t 1 1 188810 639 0.00 2019-12-07 07:14:06 2019-12-07 07:14:39 t 1 1 188812 607 0.00 2019-12-07 06:14:42 2019-12-07 07:16:48 t 1 1 188816 689 0.00 2019-12-07 07:19:48 2019-12-07 07:20:09 t 1 1 188821 689 0.00 2019-12-07 07:22:50 2019-12-07 07:25:33 t 1 1 188826 639 0.00 2019-12-07 07:31:32 2019-12-07 07:31:34 t 1 1 188827 645 0.00 2019-12-07 07:24:04 2019-12-07 07:32:57 t 1 1 188828 639 0.00 2019-12-07 07:33:02 2019-12-07 07:33:16 t 1 1 188829 639 0.00 2019-12-07 07:34:49 2019-12-07 07:35:08 t 1 1 188830 639 0.00 2019-12-07 07:37:02 2019-12-07 07:37:37 t 1 1 188831 637 0.00 2019-12-07 07:29:42 2019-12-07 07:37:42 t 1 1 188832 707 0.00 2019-12-07 07:20:51 2019-12-07 07:41:19 t 1 1 188833 639 0.00 2019-12-07 07:40:40 2019-12-07 07:41:43 t 1 1 188834 639 0.00 2019-12-07 07:43:17 2019-12-07 07:43:47 t 1 1 188835 681 0.00 2019-12-07 03:33:13 2019-12-07 07:44:21 t 1 1 188836 645 0.00 2019-12-07 07:32:57 2019-12-07 07:46:13 t 1 1 188837 498 0.00 2019-12-07 07:19:35 2019-12-07 07:46:49 t 1 2 188838 639 0.00 2019-12-07 07:49:15 2019-12-07 07:49:57 t 1 1 188839 611 0.00 2019-12-07 07:42:07 2019-12-07 07:50:13 t 1 1 188840 637 0.00 2019-12-07 07:37:42 2019-12-07 07:51:34 t 1 1 188841 591 0.00 2019-12-07 07:35:36 2019-12-07 07:52:46 t 1 1 188842 639 0.00 2019-12-07 07:54:35 2019-12-07 07:55:01 t 1 1 188843 639 0.00 2019-12-07 07:55:25 2019-12-07 07:56:11 t 1 1 188844 637 0.00 2019-12-07 07:51:51 2019-12-07 07:56:13 t 1 1 188845 675 0.00 2019-12-07 07:56:59 2019-12-07 07:59:10 t 1 1 188846 637 0.00 2019-12-07 07:56:40 2019-12-07 07:59:14 t 1 1 188847 607 0.00 2019-12-07 07:16:48 2019-12-07 08:00:41 t 1 1 188848 220 0.00 2019-12-07 08:00:27 2019-12-07 08:01:25 t 1 2 188849 639 0.00 2019-12-07 08:01:57 2019-12-07 08:02:11 t 1 1 188850 692 0.00 2019-12-07 08:01:49 2019-12-07 08:02:25 t 1 1 188851 692 0.00 2019-12-07 08:02:37 2019-12-07 08:02:43 t 1 1 188852 692 0.00 2019-12-07 08:03:19 2019-12-07 08:04:20 t 1 1 188853 637 0.00 2019-12-07 07:59:14 2019-12-07 08:05:01 t 1 1 188854 692 0.00 2019-12-07 08:05:17 2019-12-07 08:05:17 f 1 1 188855 692 0.00 2019-12-07 08:02:48 2019-12-07 08:05:23 t 1 1 188856 692 0.00 2019-12-07 08:04:41 2019-12-07 08:06:15 t 1 1 188857 645 0.00 2019-12-07 07:46:13 2019-12-07 08:07:27 t 1 1 188858 639 0.00 2019-12-07 08:08:00 2019-12-07 08:09:07 t 1 1 188859 220 0.00 2019-12-07 07:59:03 2019-12-07 08:12:44 t 1 1 188860 220 0.00 2019-12-07 08:12:43 2019-12-07 08:13:18 t 1 1 188861 220 0.00 2019-12-07 08:13:18 2019-12-07 08:13:53 t 1 1 188862 220 0.00 2019-12-07 08:13:53 2019-12-07 08:14:25 t 1 1 188863 639 0.00 2019-12-07 08:14:06 2019-12-07 08:14:39 t 1 1 188864 220 0.00 2019-12-07 08:14:25 2019-12-07 08:15:00 t 1 1 188865 673 0.00 2019-12-07 08:04:28 2019-12-07 08:15:31 t 1 1 188866 220 0.00 2019-12-07 08:14:59 2019-12-07 08:16:11 t 1 1 188867 220 0.00 2019-12-07 08:16:10 2019-12-07 08:16:44 t 1 1 188868 220 0.00 2019-12-07 08:16:43 2019-12-07 08:17:14 t 1 1 188869 220 0.00 2019-12-07 08:17:14 2019-12-07 08:17:49 t 1 1 188871 645 0.00 2019-12-07 08:17:55 2019-12-07 08:18:07 t 1 1 188872 220 0.00 2019-12-07 08:17:48 2019-12-07 08:18:47 t 1 1 188876 220 0.00 2019-12-07 08:19:54 2019-12-07 08:20:27 t 1 1 188878 220 0.00 2019-12-07 08:20:26 2019-12-07 08:21:11 t 1 1 188883 627 0.00 2019-12-07 08:23:54 2019-12-07 08:23:54 t 1 1 188884 627 0.00 2019-12-07 08:23:54 2019-12-07 08:24:23 t 1 1 188886 627 0.00 2019-12-07 08:22:49 2019-12-07 08:24:44 t 1 1 188888 220 0.00 2019-12-07 08:24:24 2019-12-07 08:24:55 t 1 1 188896 220 0.00 2019-12-07 08:26:37 2019-12-07 08:27:08 t 1 1 188897 220 0.00 2019-12-07 08:27:08 2019-12-07 08:28:43 t 1 1 188898 220 0.00 2019-12-07 08:28:43 2019-12-07 08:29:17 t 1 1 188899 220 0.00 2019-12-07 08:29:16 2019-12-07 08:29:52 t 1 1 188901 220 0.00 2019-12-07 08:29:51 2019-12-07 08:30:28 t 1 1 188905 627 0.00 2019-12-07 08:31:36 2019-12-07 08:33:24 t 1 1 188908 220 0.00 2019-12-07 08:27:58 2019-12-07 08:37:17 t 1 2 188909 627 0.00 2019-12-07 08:37:47 2019-12-07 08:37:55 t 1 1 188914 692 0.00 2019-12-07 08:42:11 2019-12-07 08:45:01 t 1 1 188916 692 0.00 2019-12-07 08:45:00 2019-12-07 08:45:42 t 1 1 188918 627 0.00 2019-12-07 08:46:30 2019-12-07 08:47:11 t 1 1 188924 611 0.00 2019-12-07 08:26:59 2019-12-07 08:50:04 t 1 1 188927 611 0.00 2019-12-07 08:50:01 2019-12-07 08:52:14 t 1 1 188929 692 0.00 2019-12-07 08:53:25 2019-12-07 08:53:29 t 1 1 188932 611 0.00 2019-12-07 08:52:14 2019-12-07 08:55:13 t 1 1 188935 692 0.00 2019-12-07 08:55:43 2019-12-07 08:57:10 t 1 1 188936 692 0.00 2019-12-07 08:57:19 2019-12-07 08:59:27 t 1 1 188938 538 0.00 2019-12-07 08:54:37 2019-12-07 09:00:19 t 1 1 188940 562 0.00 2019-12-07 08:51:09 2019-12-07 09:00:30 t 1 1 188941 611 0.00 2019-12-07 08:55:27 2019-12-07 09:00:51 t 1 1 188943 220 0.00 2019-12-07 08:30:27 2019-12-07 09:01:04 t 1 1 188949 544 0.00 2019-12-07 08:42:55 2019-12-07 09:03:29 t 1 1 188952 562 0.00 2019-12-07 09:03:44 2019-12-07 09:04:26 t 1 1 188956 220 0.00 2019-12-07 09:05:31 2019-12-07 09:05:43 t 1 1 188963 544 0.00 2019-12-07 09:04:28 2019-12-07 09:11:13 t 1 1 188966 562 0.00 2019-12-07 09:11:23 2019-12-07 09:12:31 t 1 1 188968 692 0.00 2019-12-07 09:13:05 2019-12-07 09:14:25 t 1 1 188976 544 0.00 2019-12-07 09:12:44 2019-12-07 09:19:42 t 1 1 188978 220 0.00 2019-12-07 09:08:37 2019-12-07 09:20:32 t 1 1 188983 220 0.00 2019-12-07 09:21:57 2019-12-07 09:22:42 t 1 1 188985 220 0.00 2019-12-07 09:22:41 2019-12-07 09:23:16 t 1 1 188986 220 0.00 2019-12-07 09:23:16 2019-12-07 09:23:50 t 1 1 188991 685 0.00 2019-12-07 09:25:17 2019-12-07 09:25:24 t 1 1 188993 562 0.00 2019-12-07 09:25:41 2019-12-07 09:25:58 t 1 1 188994 692 0.00 2019-12-07 09:25:33 2019-12-07 09:26:31 t 1 1 188995 639 0.00 2019-12-07 09:25:50 2019-12-07 09:27:28 t 1 1 188999 685 0.00 2019-12-07 09:28:29 2019-12-07 09:29:32 t 1 1 189002 692 0.00 2019-12-07 09:28:52 2019-12-07 09:31:39 t 1 1 189003 639 0.00 2019-12-07 09:31:48 2019-12-07 09:31:55 t 1 1 189007 673 0.00 2019-12-07 09:10:13 2019-12-07 09:34:11 t 1 1 189011 639 0.00 2019-12-07 09:37:34 2019-12-07 09:38:05 t 1 1 189013 615 0.00 2019-12-07 09:43:45 2019-12-07 09:44:51 t 1 1 189015 692 0.00 2019-12-07 09:44:14 2019-12-07 09:45:15 t 1 1 189018 692 0.00 2019-12-07 09:45:15 2019-12-07 09:46:52 t 1 1 189020 692 0.00 2019-12-07 09:47:12 2019-12-07 09:48:16 t 1 1 189024 671 0.00 2019-12-07 09:49:32 2019-12-07 09:51:05 t 1 1 189026 591 0.00 2019-12-07 08:45:08 2019-12-07 09:51:45 t 1 1 189028 692 0.00 2019-12-07 09:48:16 2019-12-07 09:52:02 t 1 1 189029 637 0.00 2019-12-07 09:46:34 2019-12-07 09:52:32 t 1 1 189030 639 0.00 2019-12-07 09:52:51 2019-12-07 09:53:28 t 1 1 189035 692 0.00 2019-12-07 09:56:05 2019-12-07 09:57:29 t 1 1 189040 562 0.00 2019-12-07 10:03:18 2019-12-07 10:03:23 t 1 1 189041 692 0.00 2019-12-07 10:02:42 2019-12-07 10:04:11 t 1 1 189043 724 0.00 2019-12-07 09:31:44 2019-12-07 10:04:31 t 1 1 189049 538 0.00 2019-12-07 09:56:02 2019-12-07 10:11:05 t 1 1 189057 538 0.00 2019-12-07 10:13:48 2019-12-07 10:19:26 t 1 1 189059 591 0.00 2019-12-07 09:58:07 2019-12-07 10:20:22 t 1 1 189061 639 0.00 2019-12-07 10:16:44 2019-12-07 10:22:58 t 1 1 189064 615 0.00 2019-12-07 10:21:04 2019-12-07 10:24:36 t 1 1 189070 611 0.00 2019-12-07 10:30:40 2019-12-07 10:35:56 t 1 1 189075 562 0.00 2019-12-07 10:36:40 2019-12-07 10:37:13 t 1 1 189077 615 0.00 2019-12-07 10:36:57 2019-12-07 10:39:32 t 1 1 189082 611 0.00 2019-12-07 10:44:50 2019-12-07 10:45:02 t 1 1 189083 562 0.00 2019-12-07 10:44:26 2019-12-07 10:45:29 t 1 1 189084 581 0.00 2019-12-07 10:44:34 2019-12-07 10:47:51 t 1 1 189085 637 0.00 2019-12-07 09:52:32 2019-12-07 10:48:52 t 1 1 189086 498 0.00 2019-12-07 09:35:34 2019-12-07 10:49:38 t 1 2 189088 538 0.00 2019-12-07 10:48:47 2019-12-07 10:52:42 t 1 1 189092 637 0.00 2019-12-07 10:56:17 2019-12-07 10:57:27 t 1 1 189095 611 0.00 2019-12-07 10:50:29 2019-12-07 10:58:37 t 1 1 189098 562 0.00 2019-12-07 11:00:33 2019-12-07 11:00:53 t 1 1 189099 679 0.00 2019-12-07 11:00:36 2019-12-07 11:02:11 t 1 1 189103 516 0.00 2019-12-07 11:10:16 2019-12-07 11:13:10 t 1 1 189110 625 0.00 2019-12-07 11:14:36 2019-12-07 11:18:14 t 1 1 189111 692 0.00 2019-12-07 11:17:37 2019-12-07 11:18:25 t 1 1 189115 692 0.00 2019-12-07 11:20:22 2019-12-07 11:21:39 t 1 1 189119 611 0.00 2019-12-07 11:14:43 2019-12-07 11:23:57 t 1 1 189122 622 0.00 2019-12-07 10:54:52 2019-12-07 11:27:44 t 1 1 189128 681 0.00 2019-12-07 11:31:40 2019-12-07 11:33:01 t 1 1 189133 675 0.00 2019-12-07 11:40:39 2019-12-07 11:42:13 t 1 1 189135 625 0.00 2019-12-07 11:35:33 2019-12-07 11:43:57 t 1 1 189136 679 0.00 2019-12-07 11:46:02 2019-12-07 11:47:12 t 1 1 189141 220 0.00 2019-12-07 11:48:50 2019-12-07 11:49:50 t 1 1 189143 220 0.00 2019-12-07 11:49:51 2019-12-07 11:51:08 t 1 1 189144 220 0.00 2019-12-07 11:51:08 2019-12-07 11:51:40 t 1 1 189146 673 0.00 2019-12-07 11:42:56 2019-12-07 11:52:37 t 1 1 189149 637 0.00 2019-12-07 11:53:13 2019-12-07 11:54:18 t 1 1 189150 615 0.00 2019-12-07 11:45:07 2019-12-07 11:54:45 t 1 1 189152 671 0.00 2019-12-07 11:54:25 2019-12-07 11:57:54 t 1 1 189160 622 0.00 2019-12-07 11:48:48 2019-12-07 12:01:28 t 1 1 189162 637 0.00 2019-12-07 12:00:18 2019-12-07 12:02:16 t 1 1 189164 544 0.00 2019-12-07 12:01:51 2019-12-07 12:02:54 t 1 1 189166 637 0.00 2019-12-07 12:02:16 2019-12-07 12:03:26 t 1 1 189168 562 0.00 2019-12-07 12:04:32 2019-12-07 12:04:46 t 1 1 189170 679 0.00 2019-12-07 12:04:53 2019-12-07 12:05:58 t 1 1 189171 691 0.00 2019-12-07 12:06:34 2019-12-07 12:07:55 t 1 1 189173 692 0.00 2019-12-07 12:07:54 2019-12-07 12:09:48 t 1 1 189178 679 0.00 2019-12-07 12:07:45 2019-12-07 12:12:57 t 1 1 188870 544 0.00 2019-12-07 08:13:29 2019-12-07 08:17:55 t 1 1 188874 220 0.00 2019-12-07 08:18:44 2019-12-07 08:19:20 t 1 1 188885 220 0.00 2019-12-07 08:23:49 2019-12-07 08:24:24 t 1 1 188889 645 0.00 2019-12-07 08:21:22 2019-12-07 08:25:03 t 1 1 188890 673 0.00 2019-12-07 08:15:31 2019-12-07 08:25:29 t 1 1 188891 220 0.00 2019-12-07 08:24:55 2019-12-07 08:25:30 t 1 1 188894 639 0.00 2019-12-07 08:26:20 2019-12-07 08:26:45 t 1 1 188903 675 0.00 2019-12-07 08:28:52 2019-12-07 08:31:17 t 1 1 188906 627 0.00 2019-12-07 08:33:30 2019-12-07 08:33:43 t 1 1 188911 639 0.00 2019-12-07 08:38:39 2019-12-07 08:38:59 t 1 1 188915 591 0.00 2019-12-07 08:19:16 2019-12-07 08:45:08 t 1 1 188920 627 0.00 2019-12-07 08:47:11 2019-12-07 08:47:17 t 1 1 188922 639 0.00 2019-12-07 08:48:32 2019-12-07 08:49:04 t 1 1 188928 692 0.00 2019-12-07 08:51:44 2019-12-07 08:53:26 t 1 1 188931 692 0.00 2019-12-07 08:54:21 2019-12-07 08:54:36 t 1 1 188934 639 0.00 2019-12-07 08:55:39 2019-12-07 08:56:48 t 1 1 188937 615 0.00 2019-12-07 08:48:04 2019-12-07 09:00:11 t 1 1 188944 685 0.00 2019-12-07 08:52:32 2019-12-07 09:01:12 t 1 1 188947 679 0.00 2019-12-07 09:01:23 2019-12-07 09:03:04 t 1 1 188948 220 0.00 2019-12-07 09:02:51 2019-12-07 09:03:25 t 1 1 188951 707 0.00 2019-12-07 08:24:59 2019-12-07 09:03:33 t 1 1 188953 220 0.00 2019-12-07 09:03:24 2019-12-07 09:04:28 t 1 1 188955 220 0.00 2019-12-07 09:04:27 2019-12-07 09:05:32 t 1 1 188958 692 0.00 2019-12-07 09:06:45 2019-12-07 09:07:16 t 1 1 188960 718 0.00 2019-12-07 09:04:14 2019-12-07 09:09:41 t 1 1 188962 622 0.00 2019-12-07 09:09:10 2019-12-07 09:10:47 t 1 1 188967 667 0.00 2019-12-07 08:54:57 2019-12-07 09:12:47 t 1 1 188969 692 0.00 2019-12-07 09:14:30 2019-12-07 09:14:41 t 1 1 188973 692 0.00 2019-12-07 09:16:18 2019-12-07 09:17:08 t 1 1 188974 671 0.00 2019-12-07 09:14:49 2019-12-07 09:17:59 t 1 1 188975 692 0.00 2019-12-07 09:17:57 2019-12-07 09:19:25 t 1 1 188977 538 0.00 2019-12-07 09:00:24 2019-12-07 09:20:02 t 1 1 188980 220 0.00 2019-12-07 09:20:32 2019-12-07 09:21:25 t 1 1 188987 692 0.00 2019-12-07 09:23:54 2019-12-07 09:24:00 t 1 1 188988 611 0.00 2019-12-07 09:16:28 2019-12-07 09:24:08 t 1 1 188990 685 0.00 2019-12-07 09:21:03 2019-12-07 09:25:11 t 1 1 189004 692 0.00 2019-12-07 09:32:10 2019-12-07 09:33:16 t 1 1 189006 562 0.00 2019-12-07 09:32:58 2019-12-07 09:33:23 t 1 1 189008 611 0.00 2019-12-07 09:24:07 2019-12-07 09:35:41 t 1 1 189012 562 0.00 2019-12-07 09:43:40 2019-12-07 09:43:51 t 1 1 189017 637 0.00 2019-12-07 08:05:01 2019-12-07 09:46:34 t 1 1 189021 639 0.00 2019-12-07 09:46:58 2019-12-07 09:48:17 t 1 1 189022 639 0.00 2019-12-07 09:48:17 2019-12-07 09:49:19 t 1 1 189027 675 0.00 2019-12-07 09:50:09 2019-12-07 09:51:58 t 1 1 189044 639 0.00 2019-12-07 10:04:36 2019-12-07 10:04:51 t 1 1 189046 692 0.00 2019-12-07 10:04:10 2019-12-07 10:06:15 t 1 1 189047 692 0.00 2019-12-07 10:06:15 2019-12-07 10:07:37 t 1 1 189048 639 0.00 2019-12-07 10:09:37 2019-12-07 10:10:47 t 1 1 189050 639 0.00 2019-12-07 10:12:28 2019-12-07 10:12:49 t 1 1 189052 679 0.00 2019-12-07 10:12:28 2019-12-07 10:15:46 t 1 1 189053 611 0.00 2019-12-07 10:14:30 2019-12-07 10:16:49 t 1 1 189054 679 0.00 2019-12-07 10:17:07 2019-12-07 10:17:24 t 1 1 189058 615 0.00 2019-12-07 10:14:54 2019-12-07 10:19:51 t 1 1 189060 679 0.00 2019-12-07 10:18:41 2019-12-07 10:22:41 t 1 1 189063 673 0.00 2019-12-07 09:34:11 2019-12-07 10:24:28 t 1 1 189065 639 0.00 2019-12-07 10:25:03 2019-12-07 10:25:09 t 1 1 189069 639 0.00 2019-12-07 10:30:43 2019-12-07 10:32:22 t 1 1 189072 639 0.00 2019-12-07 10:35:24 2019-12-07 10:36:07 t 1 1 189076 673 0.00 2019-12-07 10:38:22 2019-12-07 10:38:58 t 1 1 189079 622 0.00 2019-12-07 10:30:19 2019-12-07 10:39:40 t 1 1 189080 639 0.00 2019-12-07 10:41:11 2019-12-07 10:42:12 t 1 1 189087 562 0.00 2019-12-07 10:50:00 2019-12-07 10:50:19 t 1 1 189089 635 0.00 2019-12-07 10:41:32 2019-12-07 10:53:55 t 1 1 189091 637 0.00 2019-12-07 10:48:54 2019-12-07 10:56:01 t 1 1 189094 707 0.00 2019-12-07 10:50:43 2019-12-07 10:58:31 t 1 1 189100 637 0.00 2019-12-07 10:57:42 2019-12-07 11:04:54 t 1 1 189101 637 0.00 2019-12-07 11:04:54 2019-12-07 11:09:11 t 1 1 189106 514 0.00 2019-12-07 09:55:16 2019-12-07 11:16:55 t 1 1 189109 607 0.00 2019-12-07 08:34:49 2019-12-07 11:18:09 t 1 1 189113 692 0.00 2019-12-07 11:20:17 2019-12-07 11:20:18 t 1 1 189116 562 0.00 2019-12-07 11:21:55 2019-12-07 11:22:11 t 1 1 189117 625 0.00 2019-12-07 11:18:29 2019-12-07 11:22:58 t 1 1 189120 637 0.00 2019-12-07 11:09:27 2019-12-07 11:26:29 t 1 1 189124 220 0.00 2019-12-07 11:01:18 2019-12-07 11:29:38 t 1 2 189127 562 0.00 2019-12-07 11:32:30 2019-12-07 11:32:46 t 1 1 189130 622 0.00 2019-12-07 11:27:44 2019-12-07 11:38:19 t 1 1 189134 562 0.00 2019-12-07 11:43:11 2019-12-07 11:43:27 t 1 1 189137 611 0.00 2019-12-07 11:46:22 2019-12-07 11:47:23 t 1 1 189145 637 0.00 2019-12-07 11:26:29 2019-12-07 11:52:24 t 1 1 189147 220 0.00 2019-12-07 11:51:39 2019-12-07 11:53:23 t 1 1 189155 679 0.00 2019-12-07 11:47:26 2019-12-07 11:59:02 t 1 1 189156 679 0.00 2019-12-07 11:59:08 2019-12-07 11:59:18 t 1 1 189158 631 0.00 2019-12-07 11:59:17 2019-12-07 12:00:03 t 1 1 189161 544 0.00 2019-12-07 11:30:46 2019-12-07 12:01:50 t 1 1 189163 679 0.00 2019-12-07 12:02:10 2019-12-07 12:02:20 t 1 1 189165 675 0.00 2019-12-07 11:52:39 2019-12-07 12:03:20 t 1 1 189174 611 0.00 2019-12-07 12:08:54 2019-12-07 12:09:52 t 1 1 189176 692 0.00 2019-12-07 12:10:32 2019-12-07 12:10:33 t 1 1 189179 679 0.00 2019-12-07 12:13:03 2019-12-07 12:13:14 t 1 1 189183 692 0.00 2019-12-07 12:15:44 2019-12-07 12:16:12 t 1 1 189186 679 0.00 2019-12-07 12:15:51 2019-12-07 12:17:02 t 1 1 189187 679 0.00 2019-12-07 12:17:09 2019-12-07 12:17:20 t 1 1 189190 734 0.00 2019-12-07 12:11:32 2019-12-07 12:17:52 t 1 1 189193 691 0.00 2019-12-07 12:20:23 2019-12-07 12:20:59 t 1 1 189196 692 0.00 2019-12-07 12:21:53 2019-12-07 12:22:00 t 1 1 189199 581 0.00 2019-12-07 11:58:18 2019-12-07 12:23:41 t 1 1 189202 562 0.00 2019-12-07 12:25:03 2019-12-07 12:25:08 t 1 1 189207 622 0.00 2019-12-07 12:13:24 2019-12-07 12:27:46 t 1 1 189209 679 0.00 2019-12-07 12:26:30 2019-12-07 12:29:12 t 1 1 189212 503 0.00 2019-12-07 12:29:30 2019-12-07 12:29:40 t 1 1 189214 503 0.00 2019-12-07 12:29:40 2019-12-07 12:31:02 t 1 1 189216 637 0.00 2019-12-07 12:26:02 2019-12-07 12:32:00 t 1 1 189219 551 0.00 2019-12-07 11:55:30 2019-12-07 12:35:25 t 1 1 189223 562 0.00 2019-12-07 12:35:22 2019-12-07 12:36:23 t 1 1 189225 692 0.00 2019-12-07 12:36:16 2019-12-07 12:36:51 t 1 1 189228 692 0.00 2019-12-07 12:37:41 2019-12-07 12:37:48 t 1 1 189229 692 0.00 2019-12-07 12:40:12 2019-12-07 12:40:12 f 1 1 188873 591 0.00 2019-12-07 07:52:46 2019-12-07 08:19:16 t 1 1 188875 220 0.00 2019-12-07 08:19:20 2019-12-07 08:19:54 t 1 1 188877 639 0.00 2019-12-07 08:20:11 2019-12-07 08:20:38 t 1 1 188879 220 0.00 2019-12-07 08:21:11 2019-12-07 08:21:47 t 1 1 188880 627 0.00 2019-12-07 08:22:21 2019-12-07 08:22:26 t 1 1 188881 220 0.00 2019-12-07 08:21:46 2019-12-07 08:23:15 t 1 1 188882 220 0.00 2019-12-07 08:23:14 2019-12-07 08:23:49 t 1 1 188887 220 0.00 2019-12-07 08:17:33 2019-12-07 08:24:53 t 1 2 188892 220 0.00 2019-12-07 08:25:29 2019-12-07 08:26:02 t 1 1 188893 220 0.00 2019-12-07 08:26:02 2019-12-07 08:26:37 t 1 1 188895 611 0.00 2019-12-07 08:16:54 2019-12-07 08:27:00 t 1 1 188900 639 0.00 2019-12-07 08:30:19 2019-12-07 08:30:21 t 1 1 188902 627 0.00 2019-12-07 08:26:20 2019-12-07 08:30:38 t 1 1 188904 639 0.00 2019-12-07 08:32:20 2019-12-07 08:32:51 t 1 1 188907 627 0.00 2019-12-07 08:33:49 2019-12-07 08:33:56 t 1 1 188910 562 0.00 2019-12-07 08:34:11 2019-12-07 08:37:57 t 1 1 188912 673 0.00 2019-12-07 08:25:29 2019-12-07 08:39:44 t 1 1 188913 627 0.00 2019-12-07 08:44:41 2019-12-07 08:44:55 t 1 1 188917 562 0.00 2019-12-07 08:38:31 2019-12-07 08:46:05 t 1 1 188919 692 0.00 2019-12-07 08:45:41 2019-12-07 08:47:11 t 1 1 188921 615 0.00 2019-12-07 08:34:48 2019-12-07 08:48:04 t 1 1 188923 220 0.00 2019-12-07 08:26:35 2019-12-07 08:49:58 t 1 2 188925 673 0.00 2019-12-07 08:43:19 2019-12-07 08:50:11 t 1 1 188926 692 0.00 2019-12-07 08:47:11 2019-12-07 08:51:44 t 1 1 188930 692 0.00 2019-12-07 08:53:55 2019-12-07 08:54:22 t 1 1 188933 639 0.00 2019-12-07 08:54:50 2019-12-07 08:55:15 t 1 1 188939 692 0.00 2019-12-07 08:58:33 2019-12-07 09:00:24 t 1 1 188942 639 0.00 2019-12-07 08:59:58 2019-12-07 09:00:59 t 1 1 188945 724 0.00 2019-12-07 08:41:37 2019-12-07 09:01:19 t 1 1 188946 220 0.00 2019-12-07 09:01:03 2019-12-07 09:02:51 t 1 1 188950 562 0.00 2019-12-07 09:00:30 2019-12-07 09:03:30 t 1 1 188954 673 0.00 2019-12-07 09:01:42 2019-12-07 09:04:41 t 1 1 188957 611 0.00 2019-12-07 09:00:51 2019-12-07 09:07:12 t 1 1 188959 679 0.00 2019-12-07 09:07:39 2019-12-07 09:09:23 t 1 1 188961 685 0.00 2019-12-07 09:01:12 2019-12-07 09:10:14 t 1 1 188964 611 0.00 2019-12-07 09:07:11 2019-12-07 09:11:18 t 1 1 188965 692 0.00 2019-12-07 09:07:21 2019-12-07 09:11:38 t 1 1 188970 685 0.00 2019-12-07 09:10:14 2019-12-07 09:15:40 t 1 1 188971 692 0.00 2019-12-07 09:15:21 2019-12-07 09:16:18 t 1 1 188972 615 0.00 2019-12-07 09:00:11 2019-12-07 09:16:58 t 1 1 188979 685 0.00 2019-12-07 09:15:40 2019-12-07 09:21:03 t 1 1 188981 220 0.00 2019-12-07 09:21:25 2019-12-07 09:21:58 t 1 1 188982 562 0.00 2019-12-07 09:22:23 2019-12-07 09:22:32 t 1 1 188984 538 0.00 2019-12-07 09:20:02 2019-12-07 09:22:43 t 1 1 188989 692 0.00 2019-12-07 09:24:06 2019-12-07 09:25:07 t 1 1 188992 639 0.00 2019-12-07 09:02:12 2019-12-07 09:25:28 t 1 1 188996 685 0.00 2019-12-07 09:26:37 2019-12-07 09:28:05 t 1 1 188997 685 0.00 2019-12-07 09:28:12 2019-12-07 09:28:22 t 1 1 188998 692 0.00 2019-12-07 09:26:31 2019-12-07 09:28:53 t 1 1 189000 685 0.00 2019-12-07 09:29:39 2019-12-07 09:29:55 t 1 1 189001 639 0.00 2019-12-07 09:29:49 2019-12-07 09:30:31 t 1 1 189005 490 0.00 2019-12-07 09:25:35 2019-12-07 09:33:19 t 1 1 189009 639 0.00 2019-12-07 09:35:13 2019-12-07 09:36:17 t 1 1 189010 692 0.00 2019-12-07 09:35:53 2019-12-07 09:37:25 t 1 1 189014 639 0.00 2019-12-07 09:44:10 2019-12-07 09:44:52 t 1 1 189016 611 0.00 2019-12-07 09:35:41 2019-12-07 09:45:33 t 1 1 189019 220 0.00 2019-12-07 09:33:04 2019-12-07 09:47:48 t 1 2 189023 671 0.00 2019-12-07 09:43:15 2019-12-07 09:49:32 t 1 1 189025 611 0.00 2019-12-07 09:45:33 2019-12-07 09:51:06 t 1 1 189031 544 0.00 2019-12-07 09:46:08 2019-12-07 09:54:02 t 1 1 189032 562 0.00 2019-12-07 09:54:08 2019-12-07 09:54:28 t 1 1 189033 538 0.00 2019-12-07 09:55:27 2019-12-07 09:56:02 t 1 1 189034 671 0.00 2019-12-07 09:51:05 2019-12-07 09:56:37 t 1 1 189036 591 0.00 2019-12-07 09:51:45 2019-12-07 09:58:07 t 1 1 189037 545 0.00 2019-12-07 09:58:56 2019-12-07 09:59:53 t 1 1 189038 545 0.00 2019-12-07 09:59:52 2019-12-07 10:01:37 t 1 1 189039 639 0.00 2019-12-07 10:01:19 2019-12-07 10:02:29 t 1 1 189042 639 0.00 2019-12-07 10:03:54 2019-12-07 10:04:19 t 1 1 189045 562 0.00 2019-12-07 10:04:59 2019-12-07 10:05:09 t 1 1 189051 615 0.00 2019-12-07 10:00:05 2019-12-07 10:14:54 t 1 1 189055 679 0.00 2019-12-07 10:17:37 2019-12-07 10:18:16 t 1 1 189056 545 0.00 2019-12-07 10:02:16 2019-12-07 10:19:11 t 1 1 189062 538 0.00 2019-12-07 10:19:30 2019-12-07 10:23:11 t 1 1 189066 707 0.00 2019-12-07 10:03:10 2019-12-07 10:27:52 t 1 1 189067 611 0.00 2019-12-07 10:20:18 2019-12-07 10:28:47 t 1 1 189068 611 0.00 2019-12-07 10:28:46 2019-12-07 10:30:40 t 1 1 189071 562 0.00 2019-12-07 10:35:08 2019-12-07 10:35:58 t 1 1 189073 562 0.00 2019-12-07 10:36:11 2019-12-07 10:36:18 t 1 1 189074 538 0.00 2019-12-07 10:23:27 2019-12-07 10:36:42 t 1 1 189078 562 0.00 2019-12-07 10:39:27 2019-12-07 10:39:37 t 1 1 189081 611 0.00 2019-12-07 10:38:13 2019-12-07 10:44:51 t 1 1 189090 622 0.00 2019-12-07 10:44:22 2019-12-07 10:54:52 t 1 1 189093 481 0.00 2019-12-07 07:58:30 2019-12-07 10:57:40 t 1 1 189096 671 0.00 2019-12-07 10:44:53 2019-12-07 10:58:39 t 1 1 189097 679 0.00 2019-12-07 10:39:02 2019-12-07 10:59:58 t 1 1 189102 562 0.00 2019-12-07 11:11:22 2019-12-07 11:11:29 t 1 1 189104 692 0.00 2019-12-07 11:14:43 2019-12-07 11:15:45 t 1 1 189105 692 0.00 2019-12-07 11:15:45 2019-12-07 11:16:48 t 1 1 189107 607 0.00 2019-12-07 11:17:19 2019-12-07 11:17:19 f 1 1 189108 692 0.00 2019-12-07 11:16:48 2019-12-07 11:17:38 t 1 1 189112 692 0.00 2019-12-07 11:18:25 2019-12-07 11:20:18 t 1 1 189114 538 0.00 2019-12-07 11:14:14 2019-12-07 11:21:11 t 1 1 189118 538 0.00 2019-12-07 11:21:11 2019-12-07 11:23:26 t 1 1 189121 707 0.00 2019-12-07 10:59:50 2019-12-07 11:27:14 t 1 1 189123 611 0.00 2019-12-07 11:23:57 2019-12-07 11:29:20 t 1 1 189125 681 0.00 2019-12-07 07:44:21 2019-12-07 11:30:15 t 1 1 189126 681 0.00 2019-12-07 11:30:15 2019-12-07 11:31:40 t 1 1 189129 625 0.00 2019-12-07 11:22:57 2019-12-07 11:35:34 t 1 1 189131 611 0.00 2019-12-07 11:34:35 2019-12-07 11:38:26 t 1 1 189132 671 0.00 2019-12-07 11:39:15 2019-12-07 11:41:00 t 1 1 189138 679 0.00 2019-12-07 11:47:12 2019-12-07 11:47:27 t 1 1 189139 622 0.00 2019-12-07 11:38:19 2019-12-07 11:48:48 t 1 1 189140 220 0.00 2019-12-07 09:23:50 2019-12-07 11:48:50 t 1 1 189142 611 0.00 2019-12-07 11:47:30 2019-12-07 11:50:23 t 1 1 189148 562 0.00 2019-12-07 11:53:51 2019-12-07 11:54:08 t 1 1 189151 581 0.00 2019-12-07 11:52:49 2019-12-07 11:56:27 t 1 1 189153 611 0.00 2019-12-07 11:55:28 2019-12-07 11:57:55 t 1 1 189154 637 0.00 2019-12-07 11:54:17 2019-12-07 11:58:15 t 1 1 189157 637 0.00 2019-12-07 11:58:44 2019-12-07 12:00:00 t 1 1 189159 679 0.00 2019-12-07 12:00:26 2019-12-07 12:00:57 t 1 1 189167 679 0.00 2019-12-07 12:04:19 2019-12-07 12:04:29 t 1 1 189169 591 0.00 2019-12-07 10:20:22 2019-12-07 12:05:42 t 1 1 189172 611 0.00 2019-12-07 11:58:15 2019-12-07 12:08:08 t 1 1 189175 692 0.00 2019-12-07 12:09:48 2019-12-07 12:10:33 t 1 1 189177 692 0.00 2019-12-07 12:10:37 2019-12-07 12:10:41 t 1 1 189180 622 0.00 2019-12-07 12:01:28 2019-12-07 12:13:24 t 1 1 189182 562 0.00 2019-12-07 12:15:13 2019-12-07 12:15:31 t 1 1 189185 692 0.00 2019-12-07 12:16:27 2019-12-07 12:16:49 t 1 1 189189 611 0.00 2019-12-07 12:09:52 2019-12-07 12:17:52 t 1 1 189192 679 0.00 2019-12-07 12:19:16 2019-12-07 12:20:24 t 1 1 189198 456 0.00 2019-12-07 12:23:38 2019-12-07 12:23:38 f 1 1 189200 456 0.00 2019-12-07 12:24:03 2019-12-07 12:24:03 f 1 1 189203 692 0.00 2019-12-07 12:23:52 2019-12-07 12:25:28 t 1 1 189204 562 0.00 2019-12-07 12:25:52 2019-12-07 12:26:02 t 1 1 189208 724 0.00 2019-12-07 12:23:51 2019-12-07 12:29:11 t 1 1 189210 692 0.00 2019-12-07 12:25:28 2019-12-07 12:29:22 t 1 1 189217 611 0.00 2019-12-07 12:30:37 2019-12-07 12:32:20 t 1 1 189220 564 0.00 2019-12-07 11:58:03 2019-12-07 12:35:28 t 1 1 189221 692 0.00 2019-12-07 12:35:15 2019-12-07 12:36:17 t 1 1 189222 503 0.00 2019-12-07 12:31:02 2019-12-07 12:36:20 t 1 1 189224 562 0.00 2019-12-07 12:36:26 2019-12-07 12:36:49 t 1 1 189226 692 0.00 2019-12-07 12:36:56 2019-12-07 12:36:56 t 1 1 189232 633 0.00 2019-12-07 12:25:58 2019-12-07 12:41:13 t 1 1 189234 538 0.00 2019-12-07 12:41:34 2019-12-07 12:46:57 t 1 1 189240 220 0.00 2019-12-07 12:52:11 2019-12-07 12:53:32 t 1 2 189250 633 0.00 2019-12-07 12:41:13 2019-12-07 13:00:50 t 1 1 189251 722 0.00 2019-12-07 12:51:26 2019-12-07 13:02:31 t 1 1 189255 545 0.00 2019-12-07 13:02:08 2019-12-07 13:05:44 t 1 1 189262 611 0.00 2019-12-07 13:09:24 2019-12-07 13:10:38 t 1 1 189266 722 0.00 2019-12-07 13:02:31 2019-12-07 13:12:46 t 1 1 189267 611 0.00 2019-12-07 13:10:38 2019-12-07 13:14:36 t 1 1 189269 220 0.00 2019-12-07 11:54:50 2019-12-07 13:14:54 t 1 1 189273 220 0.00 2019-12-07 13:15:53 2019-12-07 13:15:55 t 1 1 189276 220 0.00 2019-12-07 13:16:30 2019-12-07 13:16:31 t 1 1 189277 722 0.00 2019-12-07 13:12:46 2019-12-07 13:16:58 t 1 1 189280 691 0.00 2019-12-07 13:15:45 2019-12-07 13:17:19 t 1 1 189282 691 0.00 2019-12-07 13:17:19 2019-12-07 13:17:40 t 1 1 189284 633 0.00 2019-12-07 13:00:50 2019-12-07 13:17:49 t 1 1 189285 220 0.00 2019-12-07 13:17:44 2019-12-07 13:17:50 t 1 1 189288 637 0.00 2019-12-07 13:16:45 2019-12-07 13:18:21 t 1 1 189291 691 0.00 2019-12-07 13:18:22 2019-12-07 13:18:42 t 1 1 189292 220 0.00 2019-12-07 13:18:28 2019-12-07 13:19:12 t 1 1 189296 551 0.00 2019-12-07 13:09:14 2019-12-07 13:21:00 t 1 1 189298 220 0.00 2019-12-07 13:21:22 2019-12-07 13:21:57 t 1 1 189299 220 0.00 2019-12-07 13:21:57 2019-12-07 13:22:34 t 1 1 189303 722 0.00 2019-12-07 13:23:41 2019-12-07 13:23:47 t 1 1 189305 639 0.00 2019-12-07 13:23:42 2019-12-07 13:23:51 t 1 1 189308 722 0.00 2019-12-07 13:24:07 2019-12-07 13:24:36 t 1 1 189312 611 0.00 2019-12-07 13:23:34 2019-12-07 13:25:30 t 1 1 189314 722 0.00 2019-12-07 13:25:22 2019-12-07 13:25:56 t 1 1 189316 722 0.00 2019-12-07 13:27:13 2019-12-07 13:27:15 t 1 1 189317 220 0.00 2019-12-07 13:25:38 2019-12-07 13:27:27 t 1 1 189318 220 0.00 2019-12-07 13:27:27 2019-12-07 13:28:03 t 1 1 189319 220 0.00 2019-12-07 13:28:03 2019-12-07 13:28:41 t 1 1 189321 220 0.00 2019-12-07 13:28:41 2019-12-07 13:29:15 t 1 1 189325 220 0.00 2019-12-07 13:30:25 2019-12-07 13:31:03 t 1 1 189338 679 0.00 2019-12-07 13:35:37 2019-12-07 13:35:52 t 1 1 189344 639 0.00 2019-12-07 13:38:17 2019-12-07 13:38:23 t 1 1 189346 220 0.00 2019-12-07 09:29:45 2019-12-07 13:39:08 t 1 2 189349 639 0.00 2019-12-07 13:40:51 2019-12-07 13:41:34 t 1 1 189351 562 0.00 2019-12-07 13:41:29 2019-12-07 13:41:50 t 1 1 189352 639 0.00 2019-12-07 13:41:33 2019-12-07 13:44:18 t 1 1 189353 637 0.00 2019-12-07 13:32:38 2019-12-07 13:45:16 t 1 1 189356 734 0.00 2019-12-07 13:46:00 2019-12-07 13:50:53 t 1 1 189357 679 0.00 2019-12-07 13:36:33 2019-12-07 13:51:50 t 1 1 189360 679 0.00 2019-12-07 13:51:50 2019-12-07 13:54:08 t 1 1 189363 687 0.00 2019-12-07 13:51:46 2019-12-07 13:57:24 t 1 1 189366 551 0.00 2019-12-07 13:40:29 2019-12-07 13:58:00 t 1 1 189368 611 0.00 2019-12-07 13:41:47 2019-12-07 13:59:23 t 1 1 189371 578 0.00 2019-12-07 11:32:37 2019-12-07 13:59:58 t 1 1 189373 637 0.00 2019-12-07 14:00:42 2019-12-07 14:01:43 t 1 1 189376 673 0.00 2019-12-07 13:54:55 2019-12-07 14:03:16 t 1 1 189378 639 0.00 2019-12-07 14:02:47 2019-12-07 14:03:26 t 1 1 189380 220 0.00 2019-12-07 08:28:04 2019-12-07 14:05:29 t 1 2 189382 692 0.00 2019-12-07 14:05:40 2019-12-07 14:05:41 t 1 1 189385 639 0.00 2019-12-07 14:07:43 2019-12-07 14:07:48 t 1 1 189387 639 0.00 2019-12-07 14:10:47 2019-12-07 14:10:53 t 1 1 189388 639 0.00 2019-12-07 14:11:27 2019-12-07 14:11:36 t 1 1 189389 692 0.00 2019-12-07 14:11:43 2019-12-07 14:12:28 t 1 1 189391 578 0.00 2019-12-07 13:59:58 2019-12-07 14:13:57 t 1 1 189393 637 0.00 2019-12-07 14:07:15 2019-12-07 14:14:14 t 1 1 189396 551 0.00 2019-12-07 14:07:29 2019-12-07 14:17:14 t 1 1 189400 692 0.00 2019-12-07 14:15:38 2019-12-07 14:19:07 t 1 1 189401 692 0.00 2019-12-07 14:19:24 2019-12-07 14:19:31 t 1 1 189403 639 0.00 2019-12-07 14:21:09 2019-12-07 14:21:31 t 1 1 189406 639 0.00 2019-12-07 14:21:51 2019-12-07 14:22:56 t 1 1 189410 671 0.00 2019-12-07 14:09:00 2019-12-07 14:24:40 t 1 1 189415 639 0.00 2019-12-07 14:26:16 2019-12-07 14:26:44 t 1 1 189416 611 0.00 2019-12-07 14:25:27 2019-12-07 14:26:54 t 1 1 189418 639 0.00 2019-12-07 14:28:25 2019-12-07 14:28:25 f 1 1 189421 611 0.00 2019-12-07 14:26:54 2019-12-07 14:29:12 t 1 1 189423 639 0.00 2019-12-07 14:27:39 2019-12-07 14:29:31 t 1 1 189424 637 0.00 2019-12-07 14:28:56 2019-12-07 14:30:38 t 1 1 189426 728 0.00 2019-12-07 14:23:04 2019-12-07 14:31:16 t 1 1 189427 562 0.00 2019-12-07 14:30:39 2019-12-07 14:31:37 t 1 1 189429 220 0.00 2019-12-07 13:38:25 2019-12-07 14:33:27 t 1 1 189432 220 0.00 2019-12-07 14:36:05 2019-12-07 14:36:20 t 1 2 189436 562 0.00 2019-12-07 14:40:03 2019-12-07 14:40:07 t 1 1 189438 637 0.00 2019-12-07 14:32:04 2019-12-07 14:40:28 t 1 1 189439 545 0.00 2019-12-07 14:31:26 2019-12-07 14:41:52 t 1 1 189443 544 0.00 2019-12-07 14:39:06 2019-12-07 14:45:48 t 1 1 189444 562 0.00 2019-12-07 14:45:54 2019-12-07 14:46:37 t 1 1 189447 499 0.00 2019-12-07 14:42:42 2019-12-07 14:51:18 t 1 1 189454 692 0.00 2019-12-07 14:47:24 2019-12-07 14:56:12 t 1 1 189181 675 0.00 2019-12-07 12:12:31 2019-12-07 12:14:07 t 1 1 189184 692 0.00 2019-12-07 12:16:12 2019-12-07 12:16:12 t 1 1 189188 692 0.00 2019-12-07 12:16:49 2019-12-07 12:17:21 t 1 1 189191 691 0.00 2019-12-07 12:20:09 2019-12-07 12:20:24 t 1 1 189194 692 0.00 2019-12-07 12:20:54 2019-12-07 12:21:02 t 1 1 189195 692 0.00 2019-12-07 12:21:07 2019-12-07 12:21:25 t 1 1 189197 691 0.00 2019-12-07 12:20:59 2019-12-07 12:22:13 t 1 1 189201 637 0.00 2019-12-07 12:04:03 2019-12-07 12:24:59 t 1 1 189205 637 0.00 2019-12-07 12:25:24 2019-12-07 12:26:03 t 1 1 189206 718 0.00 2019-12-07 12:20:32 2019-12-07 12:26:58 t 1 1 189211 503 0.00 2019-12-07 12:15:11 2019-12-07 12:29:30 t 1 1 189213 498 0.00 2019-12-07 12:23:47 2019-12-07 12:30:03 t 1 2 189215 707 0.00 2019-12-07 12:15:15 2019-12-07 12:31:11 t 1 1 189218 692 0.00 2019-12-07 12:32:39 2019-12-07 12:32:47 t 1 1 189227 220 0.00 2019-12-07 12:18:45 2019-12-07 12:37:31 t 1 2 189231 692 0.00 2019-12-07 12:38:51 2019-12-07 12:40:43 t 1 1 189238 503 0.00 2019-12-07 12:36:20 2019-12-07 12:50:18 t 1 1 189241 551 0.00 2019-12-07 12:35:25 2019-12-07 12:53:57 t 1 1 189243 538 0.00 2019-12-07 12:47:01 2019-12-07 12:54:55 t 1 1 189244 671 0.00 2019-12-07 12:52:26 2019-12-07 12:55:21 t 1 1 189245 734 0.00 2019-12-07 12:54:08 2019-12-07 12:58:09 t 1 1 189247 639 0.00 2019-12-07 12:54:37 2019-12-07 12:58:34 t 1 1 189248 562 0.00 2019-12-07 12:59:02 2019-12-07 12:59:10 t 1 1 189252 639 0.00 2019-12-07 12:59:06 2019-12-07 13:02:37 t 1 1 189254 639 0.00 2019-12-07 13:03:22 2019-12-07 13:05:38 t 1 1 189256 639 0.00 2019-12-07 13:05:46 2019-12-07 13:06:00 t 1 1 189257 514 0.00 2019-12-07 13:00:45 2019-12-07 13:07:01 t 1 1 189260 611 0.00 2019-12-07 13:01:05 2019-12-07 13:09:25 t 1 1 189264 591 0.00 2019-12-07 13:08:30 2019-12-07 13:11:15 t 1 1 189270 220 0.00 2019-12-07 13:14:54 2019-12-07 13:15:19 t 1 1 189271 639 0.00 2019-12-07 13:15:40 2019-12-07 13:15:48 t 1 1 189278 220 0.00 2019-12-07 13:16:31 2019-12-07 13:17:07 t 1 1 189283 220 0.00 2019-12-07 13:17:07 2019-12-07 13:17:44 t 1 1 189286 691 0.00 2019-12-07 13:17:40 2019-12-07 13:18:00 t 1 1 189289 691 0.00 2019-12-07 13:18:00 2019-12-07 13:18:23 t 1 1 189293 691 0.00 2019-12-07 13:18:41 2019-12-07 13:19:51 t 1 1 189295 562 0.00 2019-12-07 13:20:22 2019-12-07 13:20:31 t 1 1 189300 220 0.00 2019-12-07 13:22:34 2019-12-07 13:23:10 t 1 1 189301 722 0.00 2019-12-07 13:16:58 2019-12-07 13:23:35 t 1 1 189304 220 0.00 2019-12-07 13:23:10 2019-12-07 13:23:48 t 1 1 189306 611 0.00 2019-12-07 13:14:35 2019-12-07 13:24:12 t 1 1 189307 220 0.00 2019-12-07 13:23:48 2019-12-07 13:24:22 t 1 1 189311 722 0.00 2019-12-07 13:24:42 2019-12-07 13:25:16 t 1 1 189313 220 0.00 2019-12-07 13:24:59 2019-12-07 13:25:38 t 1 1 189322 639 0.00 2019-12-07 13:26:13 2019-12-07 13:29:37 t 1 1 189324 220 0.00 2019-12-07 13:29:53 2019-12-07 13:30:25 t 1 1 189328 551 0.00 2019-12-07 13:21:00 2019-12-07 13:32:00 t 1 1 189330 637 0.00 2019-12-07 13:18:45 2019-12-07 13:32:17 t 1 1 189332 220 0.00 2019-12-07 13:32:18 2019-12-07 13:32:55 t 1 1 189333 220 0.00 2019-12-07 13:32:54 2019-12-07 13:33:33 t 1 1 189334 220 0.00 2019-12-07 13:33:33 2019-12-07 13:34:05 t 1 1 189335 220 0.00 2019-12-07 13:34:04 2019-12-07 13:34:44 t 1 1 189339 679 0.00 2019-12-07 13:35:58 2019-12-07 13:36:08 t 1 1 189342 220 0.00 2019-12-07 13:36:09 2019-12-07 13:37:15 t 1 1 189343 220 0.00 2019-12-07 13:37:15 2019-12-07 13:37:55 t 1 1 189345 220 0.00 2019-12-07 13:37:54 2019-12-07 13:38:25 t 1 1 189347 639 0.00 2019-12-07 13:38:01 2019-12-07 13:39:31 t 1 1 189348 551 0.00 2019-12-07 13:32:00 2019-12-07 13:40:29 t 1 1 189350 611 0.00 2019-12-07 13:36:54 2019-12-07 13:41:48 t 1 1 189354 691 0.00 2019-12-07 13:45:40 2019-12-07 13:46:48 t 1 1 189358 562 0.00 2019-12-07 13:52:21 2019-12-07 13:52:27 t 1 1 189362 562 0.00 2019-12-07 13:53:59 2019-12-07 13:55:31 t 1 1 189365 692 0.00 2019-12-07 13:55:28 2019-12-07 13:57:43 t 1 1 189367 637 0.00 2019-12-07 13:45:56 2019-12-07 13:58:10 t 1 1 189370 639 0.00 2019-12-07 13:58:12 2019-12-07 13:59:31 t 1 1 189375 591 0.00 2019-12-07 13:17:21 2019-12-07 14:02:13 t 1 1 189377 562 0.00 2019-12-07 14:02:47 2019-12-07 14:03:20 t 1 1 189379 692 0.00 2019-12-07 14:04:57 2019-12-07 14:05:03 t 1 1 189383 551 0.00 2019-12-07 13:58:00 2019-12-07 14:07:29 t 1 1 189386 639 0.00 2019-12-07 14:08:56 2019-12-07 14:09:31 t 1 1 189392 562 0.00 2019-12-07 14:13:44 2019-12-07 14:13:59 t 1 1 189394 611 0.00 2019-12-07 14:14:54 2019-12-07 14:16:08 t 1 1 189398 611 0.00 2019-12-07 14:16:08 2019-12-07 14:17:31 t 1 1 189399 639 0.00 2019-12-07 14:12:45 2019-12-07 14:18:49 t 1 1 189402 637 0.00 2019-12-07 14:18:34 2019-12-07 14:19:51 t 1 1 189405 718 0.00 2019-12-07 14:15:53 2019-12-07 14:22:28 t 1 1 189407 611 0.00 2019-12-07 14:20:07 2019-12-07 14:23:56 t 1 1 189412 692 0.00 2019-12-07 14:25:15 2019-12-07 14:25:19 t 1 1 189414 675 0.00 2019-12-07 14:04:21 2019-12-07 14:26:38 t 1 1 189417 639 0.00 2019-12-07 14:25:33 2019-12-07 14:27:31 t 1 1 189420 551 0.00 2019-12-07 14:17:14 2019-12-07 14:28:44 t 1 1 189422 498 0.00 2019-12-07 14:23:47 2019-12-07 14:29:22 t 1 2 189425 671 0.00 2019-12-07 14:24:39 2019-12-07 14:31:01 t 1 1 189430 220 0.00 2019-12-07 13:40:36 2019-12-07 14:34:39 t 1 2 189433 633 0.00 2019-12-07 13:17:49 2019-12-07 14:38:10 t 1 1 189434 692 0.00 2019-12-07 14:38:11 2019-12-07 14:39:13 t 1 1 189435 625 0.00 2019-12-07 12:19:35 2019-12-07 14:40:07 t 1 1 189440 622 0.00 2019-12-07 14:17:13 2019-12-07 14:42:56 t 1 1 189442 622 0.00 2019-12-07 14:42:56 2019-12-07 14:44:03 t 1 1 189445 562 0.00 2019-12-07 14:46:45 2019-12-07 14:46:52 t 1 1 189451 545 0.00 2019-12-07 14:52:49 2019-12-07 14:53:55 t 1 1 189452 591 0.00 2019-12-07 14:47:12 2019-12-07 14:54:29 t 1 1 189453 562 0.00 2019-12-07 14:54:15 2019-12-07 14:55:21 t 1 1 189457 564 0.00 2019-12-07 13:17:33 2019-12-07 14:58:08 t 1 1 189460 673 0.00 2019-12-07 14:28:45 2019-12-07 15:00:42 t 1 1 189463 692 0.00 2019-12-07 14:58:16 2019-12-07 15:05:50 t 1 1 189466 687 0.00 2019-12-07 14:38:29 2019-12-07 15:06:08 t 1 1 189472 679 0.00 2019-12-07 15:01:18 2019-12-07 15:08:28 t 1 1 189475 516 0.00 2019-12-07 15:11:34 2019-12-07 15:11:42 t 1 1 189478 562 0.00 2019-12-07 15:13:26 2019-12-07 15:15:05 t 1 1 189479 481 0.00 2019-12-07 14:19:35 2019-12-07 15:17:43 t 1 1 189483 581 0.00 2019-12-07 15:08:23 2019-12-07 15:24:47 t 1 1 189484 551 0.00 2019-12-07 15:12:31 2019-12-07 15:25:32 t 1 1 189488 220 0.00 2019-12-07 14:58:58 2019-12-07 15:28:05 t 1 1 189492 481 0.00 2019-12-07 15:17:43 2019-12-07 15:33:02 t 1 1 189495 707 0.00 2019-12-07 15:31:06 2019-12-07 15:37:50 t 1 1 189497 692 0.00 2019-12-07 15:38:28 2019-12-07 15:38:28 f 1 1 189230 692 0.00 2019-12-07 12:37:54 2019-12-07 12:40:30 t 1 1 189233 637 0.00 2019-12-07 12:33:23 2019-12-07 12:44:46 t 1 1 189235 562 0.00 2019-12-07 12:46:59 2019-12-07 12:47:23 t 1 1 189236 562 0.00 2019-12-07 12:48:23 2019-12-07 12:48:29 t 1 1 189237 637 0.00 2019-12-07 12:45:24 2019-12-07 12:49:48 t 1 1 189239 637 0.00 2019-12-07 12:49:47 2019-12-07 12:53:11 t 1 1 189242 734 0.00 2019-12-07 12:46:15 2019-12-07 12:54:08 t 1 1 189246 591 0.00 2019-12-07 12:05:42 2019-12-07 12:58:24 t 1 1 189249 637 0.00 2019-12-07 12:53:48 2019-12-07 12:59:30 t 1 1 189253 639 0.00 2019-12-07 13:03:03 2019-12-07 13:04:30 t 1 1 189258 503 0.00 2019-12-07 13:05:12 2019-12-07 13:07:31 t 1 1 189259 551 0.00 2019-12-07 12:53:57 2019-12-07 13:09:14 t 1 1 189261 562 0.00 2019-12-07 13:09:29 2019-12-07 13:09:54 t 1 1 189263 724 0.00 2019-12-07 12:45:51 2019-12-07 13:11:12 t 1 1 189265 679 0.00 2019-12-07 13:09:56 2019-12-07 13:12:15 t 1 1 189268 639 0.00 2019-12-07 13:14:18 2019-12-07 13:14:42 t 1 1 189272 220 0.00 2019-12-07 13:15:19 2019-12-07 13:15:53 t 1 1 189274 637 0.00 2019-12-07 12:59:47 2019-12-07 13:16:00 t 1 1 189275 220 0.00 2019-12-07 13:15:55 2019-12-07 13:16:30 t 1 1 189279 220 0.00 2019-12-07 13:17:06 2019-12-07 13:17:07 t 1 1 189281 564 0.00 2019-12-07 12:35:28 2019-12-07 13:17:33 t 1 1 189287 220 0.00 2019-12-07 13:17:50 2019-12-07 13:18:19 t 1 1 189290 220 0.00 2019-12-07 13:18:19 2019-12-07 13:18:28 t 1 1 189294 639 0.00 2019-12-07 13:20:00 2019-12-07 13:20:26 t 1 1 189297 220 0.00 2019-12-07 13:19:11 2019-12-07 13:21:22 t 1 1 189302 514 0.00 2019-12-07 13:07:01 2019-12-07 13:23:42 t 1 1 189309 622 0.00 2019-12-07 12:44:59 2019-12-07 13:24:37 t 1 1 189310 220 0.00 2019-12-07 13:24:21 2019-12-07 13:25:00 t 1 1 189315 722 0.00 2019-12-07 13:26:32 2019-12-07 13:27:08 t 1 1 189320 722 0.00 2019-12-07 13:27:36 2019-12-07 13:28:55 t 1 1 189323 220 0.00 2019-12-07 13:29:14 2019-12-07 13:29:53 t 1 1 189326 562 0.00 2019-12-07 13:31:01 2019-12-07 13:31:18 t 1 1 189327 220 0.00 2019-12-07 13:31:02 2019-12-07 13:31:39 t 1 1 189329 639 0.00 2019-12-07 13:30:37 2019-12-07 13:32:12 t 1 1 189331 220 0.00 2019-12-07 13:31:39 2019-12-07 13:32:18 t 1 1 189336 220 0.00 2019-12-07 13:34:43 2019-12-07 13:35:18 t 1 1 189337 679 0.00 2019-12-07 13:15:00 2019-12-07 13:35:32 t 1 1 189340 220 0.00 2019-12-07 13:35:17 2019-12-07 13:36:09 t 1 1 189341 679 0.00 2019-12-07 13:36:13 2019-12-07 13:36:27 t 1 1 189355 639 0.00 2019-12-07 13:46:18 2019-12-07 13:48:00 t 1 1 189359 692 0.00 2019-12-07 13:33:46 2019-12-07 13:53:37 t 1 1 189361 639 0.00 2019-12-07 13:55:01 2019-12-07 13:55:09 t 1 1 189364 639 0.00 2019-12-07 13:56:39 2019-12-07 13:57:26 t 1 1 189369 481 0.00 2019-12-07 10:57:40 2019-12-07 13:59:31 t 1 1 189372 692 0.00 2019-12-07 14:00:15 2019-12-07 14:00:58 t 1 1 189374 692 0.00 2019-12-07 14:00:58 2019-12-07 14:02:02 t 1 1 189381 639 0.00 2019-12-07 14:04:38 2019-12-07 14:05:38 t 1 1 189384 692 0.00 2019-12-07 14:05:09 2019-12-07 14:07:31 t 1 1 189390 692 0.00 2019-12-07 14:13:18 2019-12-07 14:13:31 t 1 1 189395 673 0.00 2019-12-07 14:05:48 2019-12-07 14:17:07 t 1 1 189397 585 0.00 2019-12-07 14:17:20 2019-12-07 14:17:20 f 1 1 189404 578 0.00 2019-12-07 14:13:57 2019-12-07 14:21:49 t 1 1 189408 639 0.00 2019-12-07 14:24:03 2019-12-07 14:24:08 t 1 1 189409 562 0.00 2019-12-07 14:24:17 2019-12-07 14:24:37 t 1 1 189411 692 0.00 2019-12-07 14:20:16 2019-12-07 14:25:06 t 1 1 189413 611 0.00 2019-12-07 14:23:55 2019-12-07 14:25:27 t 1 1 189419 639 0.00 2019-12-07 14:26:52 2019-12-07 14:28:31 t 1 1 189428 692 0.00 2019-12-07 14:32:36 2019-12-07 14:32:40 t 1 1 189431 562 0.00 2019-12-07 14:35:03 2019-12-07 14:35:18 t 1 1 189437 551 0.00 2019-12-07 14:28:44 2019-12-07 14:40:16 t 1 1 189441 671 0.00 2019-12-07 14:39:13 2019-12-07 14:43:46 t 1 1 189446 692 0.00 2019-12-07 14:40:58 2019-12-07 14:47:15 t 1 1 189448 679 0.00 2019-12-07 14:50:31 2019-12-07 14:52:09 t 1 1 189449 545 0.00 2019-12-07 14:41:55 2019-12-07 14:52:50 t 1 1 189450 562 0.00 2019-12-07 14:51:59 2019-12-07 14:53:34 t 1 1 189456 692 0.00 2019-12-07 14:57:42 2019-12-07 14:57:55 t 1 1 189458 551 0.00 2019-12-07 14:40:16 2019-12-07 14:59:47 t 1 1 189465 637 0.00 2019-12-07 14:40:27 2019-12-07 15:06:06 t 1 1 189467 516 0.00 2019-12-07 15:05:05 2019-12-07 15:06:17 t 1 1 189469 564 0.00 2019-12-07 15:05:48 2019-12-07 15:08:16 t 1 1 189470 637 0.00 2019-12-07 15:08:19 2019-12-07 15:08:21 t 1 1 189476 551 0.00 2019-12-07 14:59:47 2019-12-07 15:12:31 t 1 1 189480 707 0.00 2019-12-07 13:52:17 2019-12-07 15:18:57 t 1 1 189485 574 0.00 2019-12-07 13:44:26 2019-12-07 15:26:02 t 1 1 189486 562 0.00 2019-12-07 15:26:27 2019-12-07 15:26:46 t 1 1 189487 516 0.00 2019-12-07 15:27:50 2019-12-07 15:28:01 t 1 1 189494 562 0.00 2019-12-07 15:37:08 2019-12-07 15:37:36 t 1 1 189496 633 0.00 2019-12-07 15:20:48 2019-12-07 15:38:11 t 1 1 189498 692 0.00 2019-12-07 15:37:05 2019-12-07 15:38:32 t 1 1 189499 562 0.00 2019-12-07 15:38:39 2019-12-07 15:38:52 t 1 1 189502 625 0.00 2019-12-07 15:38:29 2019-12-07 15:39:52 t 1 1 189506 633 0.00 2019-12-07 15:38:11 2019-12-07 15:49:36 t 1 1 189513 456 0.00 2019-12-07 15:51:15 2019-12-07 15:51:15 f 1 1 189515 679 0.00 2019-12-07 15:51:01 2019-12-07 15:51:21 t 1 1 189516 679 0.00 2019-12-07 15:51:27 2019-12-07 15:51:42 t 1 1 189519 675 0.00 2019-12-07 15:51:24 2019-12-07 15:52:25 t 1 1 189523 499 0.00 2019-12-07 15:52:50 2019-12-07 15:56:40 t 1 1 189528 516 0.00 2019-12-07 15:57:06 2019-12-07 16:00:29 t 1 1 189530 498 0.00 2019-12-07 16:01:15 2019-12-07 16:04:14 t 1 2 189536 673 0.00 2019-12-07 16:08:40 2019-12-07 16:10:20 t 1 1 189538 220 0.00 2019-12-07 15:44:19 2019-12-07 16:11:28 t 1 2 189539 627 0.00 2019-12-07 16:03:40 2019-12-07 16:12:21 t 1 1 189542 625 0.00 2019-12-07 15:51:05 2019-12-07 16:14:14 t 1 1 189551 516 0.00 2019-12-07 16:23:01 2019-12-07 16:23:05 t 1 1 189553 516 0.00 2019-12-07 16:23:36 2019-12-07 16:23:48 t 1 1 189554 220 0.00 2019-12-07 16:23:36 2019-12-07 16:24:27 t 1 2 189557 516 0.00 2019-12-07 16:26:24 2019-12-07 16:26:38 t 1 1 189560 722 0.00 2019-12-07 16:12:41 2019-12-07 16:28:15 t 1 1 189561 625 0.00 2019-12-07 16:14:14 2019-12-07 16:29:43 t 1 1 189566 220 0.00 2019-12-07 16:36:58 2019-12-07 16:38:08 t 1 1 189571 591 0.00 2019-12-07 16:00:49 2019-12-07 16:40:10 t 1 1 189572 562 0.00 2019-12-07 16:39:49 2019-12-07 16:40:25 t 1 1 189574 622 0.00 2019-12-07 16:33:07 2019-12-07 16:46:22 t 1 1 189577 562 0.00 2019-12-07 16:48:10 2019-12-07 16:48:20 t 1 1 189580 667 0.00 2019-12-07 16:47:20 2019-12-07 16:53:49 t 1 1 189585 562 0.00 2019-12-07 16:58:41 2019-12-07 16:59:53 t 1 1 189586 625 0.00 2019-12-07 16:40:36 2019-12-07 17:01:02 t 1 1 189455 562 0.00 2019-12-07 14:56:33 2019-12-07 14:56:45 t 1 1 189459 656 0.00 2019-12-07 14:53:03 2019-12-07 14:59:52 t 1 1 189461 591 0.00 2019-12-07 14:57:07 2019-12-07 15:03:10 t 1 1 189462 562 0.00 2019-12-07 15:03:13 2019-12-07 15:03:37 t 1 1 189464 562 0.00 2019-12-07 15:05:03 2019-12-07 15:05:59 t 1 1 189468 692 0.00 2019-12-07 15:06:16 2019-12-07 15:06:24 t 1 1 189471 637 0.00 2019-12-07 15:08:21 2019-12-07 15:08:23 t 1 1 189473 692 0.00 2019-12-07 15:07:55 2019-12-07 15:08:56 t 1 1 189474 692 0.00 2019-12-07 15:09:34 2019-12-07 15:09:43 t 1 1 189477 562 0.00 2019-12-07 15:06:48 2019-12-07 15:12:36 t 1 1 189481 692 0.00 2019-12-07 15:13:02 2019-12-07 15:20:20 t 1 1 189482 562 0.00 2019-12-07 15:20:13 2019-12-07 15:21:57 t 1 1 189489 687 0.00 2019-12-07 15:28:06 2019-12-07 15:30:42 t 1 1 189490 692 0.00 2019-12-07 15:22:18 2019-12-07 15:31:19 t 1 1 189491 692 0.00 2019-12-07 15:31:30 2019-12-07 15:31:39 t 1 1 189493 692 0.00 2019-12-07 15:37:20 2019-12-07 15:37:21 t 1 1 189504 562 0.00 2019-12-07 15:46:42 2019-12-07 15:47:48 t 1 1 189510 679 0.00 2019-12-07 15:28:33 2019-12-07 15:50:55 t 1 1 189511 625 0.00 2019-12-07 15:39:52 2019-12-07 15:51:06 t 1 1 189517 551 0.00 2019-12-07 15:39:06 2019-12-07 15:52:06 t 1 1 189518 679 0.00 2019-12-07 15:51:48 2019-12-07 15:52:22 t 1 1 189520 679 0.00 2019-12-07 15:52:27 2019-12-07 15:52:47 t 1 1 189529 562 0.00 2019-12-07 16:01:31 2019-12-07 16:01:59 t 1 1 189531 671 0.00 2019-12-07 15:53:51 2019-12-07 16:04:34 t 1 1 189532 562 0.00 2019-12-07 16:04:49 2019-12-07 16:06:51 t 1 1 189535 679 0.00 2019-12-07 15:53:35 2019-12-07 16:09:46 t 1 1 189541 722 0.00 2019-12-07 15:58:18 2019-12-07 16:12:41 t 1 1 189545 611 0.00 2019-12-07 16:06:32 2019-12-07 16:16:54 t 1 1 189547 687 0.00 2019-12-07 15:59:08 2019-12-07 16:20:04 t 1 1 189548 538 0.00 2019-12-07 16:09:55 2019-12-07 16:21:11 t 1 1 189549 581 0.00 2019-12-07 16:14:03 2019-12-07 16:22:11 t 1 1 189552 538 0.00 2019-12-07 16:22:09 2019-12-07 16:23:46 t 1 1 189555 516 0.00 2019-12-07 16:25:01 2019-12-07 16:25:08 t 1 1 189556 220 0.00 2019-12-07 16:25:45 2019-12-07 16:26:26 t 1 2 189558 562 0.00 2019-12-07 16:26:47 2019-12-07 16:26:57 t 1 1 189559 581 0.00 2019-12-07 16:23:10 2019-12-07 16:28:07 t 1 1 189563 707 0.00 2019-12-07 16:27:49 2019-12-07 16:31:35 t 1 1 189564 656 0.00 2019-12-07 14:59:52 2019-12-07 16:32:53 t 1 1 189565 562 0.00 2019-12-07 16:37:30 2019-12-07 16:37:40 t 1 1 189567 562 0.00 2019-12-07 16:38:18 2019-12-07 16:39:35 t 1 1 189569 516 0.00 2019-12-07 16:39:39 2019-12-07 16:39:44 t 1 1 189570 611 0.00 2019-12-07 16:34:08 2019-12-07 16:39:52 t 1 1 189573 611 0.00 2019-12-07 16:39:52 2019-12-07 16:43:21 t 1 1 189575 675 0.00 2019-12-07 16:45:52 2019-12-07 16:47:06 t 1 1 189578 516 0.00 2019-12-07 16:49:31 2019-12-07 16:49:37 t 1 1 189581 611 0.00 2019-12-07 16:47:07 2019-12-07 16:54:21 t 1 1 189583 516 0.00 2019-12-07 16:56:50 2019-12-07 16:57:03 t 1 1 189587 516 0.00 2019-12-07 16:57:12 2019-12-07 17:01:48 t 1 1 189591 578 0.00 2019-12-07 14:21:49 2019-12-07 17:05:04 t 1 1 189593 707 0.00 2019-12-07 16:56:13 2019-12-07 17:07:09 t 1 1 189594 516 0.00 2019-12-07 17:03:07 2019-12-07 17:08:21 t 1 1 189598 578 0.00 2019-12-07 17:05:04 2019-12-07 17:14:35 t 1 1 189599 689 0.00 2019-12-07 17:14:51 2019-12-07 17:16:09 t 1 1 189603 679 0.00 2019-12-07 17:16:57 2019-12-07 17:17:14 t 1 1 189605 581 0.00 2019-12-07 17:10:43 2019-12-07 17:17:26 t 1 1 189607 562 0.00 2019-12-07 17:01:51 2019-12-07 17:17:56 t 1 1 189609 675 0.00 2019-12-07 17:16:45 2019-12-07 17:18:07 t 1 1 189610 667 0.00 2019-12-07 17:09:10 2019-12-07 17:19:32 t 1 1 189612 689 0.00 2019-12-07 17:20:07 2019-12-07 17:20:23 t 1 1 189614 485 0.00 2019-12-07 17:17:24 2019-12-07 17:21:02 t 1 1 189618 689 0.00 2019-12-07 17:24:46 2019-12-07 17:25:03 t 1 1 189620 591 0.00 2019-12-07 16:49:12 2019-12-07 17:25:59 t 1 1 189625 679 0.00 2019-12-07 17:28:41 2019-12-07 17:28:53 t 1 1 189632 679 0.00 2019-12-07 17:29:55 2019-12-07 17:30:12 t 1 1 189634 611 0.00 2019-12-07 17:29:52 2019-12-07 17:31:24 t 1 1 189638 538 0.00 2019-12-07 17:23:07 2019-12-07 17:34:04 t 1 1 189639 689 0.00 2019-12-07 17:34:57 2019-12-07 17:35:04 t 1 1 189640 220 0.00 2019-12-07 15:59:11 2019-12-07 17:36:08 t 1 2 189642 562 0.00 2019-12-07 17:36:56 2019-12-07 17:37:02 t 1 1 189643 689 0.00 2019-12-07 17:37:15 2019-12-07 17:37:31 t 1 1 189646 562 0.00 2019-12-07 17:38:50 2019-12-07 17:39:01 t 1 1 189648 707 0.00 2019-12-07 17:22:40 2019-12-07 17:39:56 t 1 1 189649 694 0.00 2019-12-07 17:36:41 2019-12-07 17:40:39 t 1 1 189652 656 0.00 2019-12-07 16:32:53 2019-12-07 17:41:14 t 1 1 189654 734 0.00 2019-12-07 17:31:59 2019-12-07 17:42:13 t 1 1 189655 656 0.00 2019-12-07 17:41:14 2019-12-07 17:42:59 t 1 1 189656 675 0.00 2019-12-07 17:42:15 2019-12-07 17:44:36 t 1 1 189660 220 0.00 2019-12-07 17:22:11 2019-12-07 17:48:11 t 1 2 189661 562 0.00 2019-12-07 17:45:02 2019-12-07 17:48:54 t 1 1 189663 625 0.00 2019-12-07 17:29:46 2019-12-07 17:51:04 t 1 1 189664 722 0.00 2019-12-07 17:48:32 2019-12-07 17:54:03 t 1 1 189666 689 0.00 2019-12-07 17:56:02 2019-12-07 17:56:28 t 1 1 189667 687 0.00 2019-12-07 17:32:37 2019-12-07 17:57:14 t 1 1 189670 625 0.00 2019-12-07 17:54:23 2019-12-07 17:57:55 t 1 1 189675 562 0.00 2019-12-07 17:56:46 2019-12-07 18:00:09 t 1 1 189680 689 0.00 2019-12-07 18:01:32 2019-12-07 18:02:00 t 1 1 189681 220 0.00 2019-12-07 16:43:57 2019-12-07 18:02:31 t 1 1 189684 627 0.00 2019-12-07 17:49:05 2019-12-07 18:03:49 t 1 1 189686 481 0.00 2019-12-07 16:31:40 2019-12-07 18:04:39 t 1 1 189687 722 0.00 2019-12-07 18:04:51 2019-12-07 18:04:57 t 1 1 189692 722 0.00 2019-12-07 18:07:46 2019-12-07 18:08:24 t 1 1 189695 734 0.00 2019-12-07 18:05:27 2019-12-07 18:10:29 t 1 1 189697 689 0.00 2019-12-07 18:10:23 2019-12-07 18:11:20 t 1 1 189699 718 0.00 2019-12-07 17:29:00 2019-12-07 18:12:05 t 1 1 189700 689 0.00 2019-12-07 18:12:06 2019-12-07 18:12:11 t 1 1 189704 562 0.00 2019-12-07 18:13:57 2019-12-07 18:14:12 t 1 1 189705 689 0.00 2019-12-07 18:14:23 2019-12-07 18:14:39 t 1 1 189707 220 0.00 2019-12-07 18:04:20 2019-12-07 18:15:56 t 1 2 189710 722 0.00 2019-12-07 18:15:52 2019-12-07 18:16:13 t 1 1 189712 707 0.00 2019-12-07 18:11:52 2019-12-07 18:17:54 t 1 1 189714 611 0.00 2019-12-07 18:03:45 2019-12-07 18:19:23 t 1 1 189715 718 0.00 2019-12-07 18:17:56 2019-12-07 18:20:03 t 1 1 189718 625 0.00 2019-12-07 18:16:40 2019-12-07 18:21:28 t 1 1 189722 611 0.00 2019-12-07 18:23:09 2019-12-07 18:26:11 t 1 1 189725 625 0.00 2019-12-07 18:23:40 2019-12-07 18:29:40 t 1 1 189727 627 0.00 2019-12-07 18:04:33 2019-12-07 18:30:51 t 1 1 189729 615 0.00 2019-12-07 18:28:22 2019-12-07 18:31:45 t 1 1 189500 551 0.00 2019-12-07 15:25:32 2019-12-07 15:39:06 t 1 1 189501 692 0.00 2019-12-07 15:37:56 2019-12-07 15:39:32 t 1 1 189503 562 0.00 2019-12-07 15:43:15 2019-12-07 15:46:17 t 1 1 189505 591 0.00 2019-12-07 15:04:00 2019-12-07 15:48:33 t 1 1 189507 673 0.00 2019-12-07 15:00:42 2019-12-07 15:49:56 t 1 1 189508 503 0.00 2019-12-07 15:38:34 2019-12-07 15:50:30 t 1 1 189509 456 0.00 2019-12-07 15:50:53 2019-12-07 15:50:53 f 1 1 189512 499 0.00 2019-12-07 14:52:06 2019-12-07 15:51:10 t 1 1 189514 562 0.00 2019-12-07 15:50:40 2019-12-07 15:51:18 t 1 1 189521 499 0.00 2019-12-07 15:51:09 2019-12-07 15:52:51 t 1 1 189522 679 0.00 2019-12-07 15:52:52 2019-12-07 15:53:29 t 1 1 189524 516 0.00 2019-12-07 15:45:09 2019-12-07 15:56:55 t 1 1 189525 687 0.00 2019-12-07 15:30:48 2019-12-07 15:57:27 t 1 1 189526 551 0.00 2019-12-07 15:52:06 2019-12-07 15:58:30 t 1 1 189527 499 0.00 2019-12-07 15:56:38 2019-12-07 15:59:10 t 1 1 189533 615 0.00 2019-12-07 15:40:18 2019-12-07 16:08:45 t 1 1 189534 499 0.00 2019-12-07 15:59:10 2019-12-07 16:09:28 t 1 1 189537 564 0.00 2019-12-07 16:08:14 2019-12-07 16:10:31 t 1 1 189540 220 0.00 2019-12-07 16:11:37 2019-12-07 16:12:23 t 1 2 189543 220 0.00 2019-12-07 16:12:48 2019-12-07 16:15:59 t 1 2 189544 562 0.00 2019-12-07 16:16:06 2019-12-07 16:16:24 t 1 1 189546 675 0.00 2019-12-07 16:13:08 2019-12-07 16:17:38 t 1 1 189550 516 0.00 2019-12-07 16:19:03 2019-12-07 16:22:52 t 1 1 189562 675 0.00 2019-12-07 16:23:49 2019-12-07 16:30:10 t 1 1 189568 615 0.00 2019-12-07 16:08:45 2019-12-07 16:39:43 t 1 1 189576 611 0.00 2019-12-07 16:43:18 2019-12-07 16:47:08 t 1 1 189579 538 0.00 2019-12-07 16:38:53 2019-12-07 16:53:08 t 1 1 189582 516 0.00 2019-12-07 16:54:42 2019-12-07 16:55:17 t 1 1 189584 220 0.00 2019-12-07 16:48:54 2019-12-07 16:59:17 t 1 2 189588 615 0.00 2019-12-07 16:43:56 2019-12-07 17:03:38 t 1 1 189590 581 0.00 2019-12-07 17:02:07 2019-12-07 17:04:51 t 1 1 189596 671 0.00 2019-12-07 17:06:16 2019-12-07 17:10:12 t 1 1 189600 679 0.00 2019-12-07 17:05:34 2019-12-07 17:16:28 t 1 1 189601 679 0.00 2019-12-07 17:16:34 2019-12-07 17:16:52 t 1 1 189602 506 0.00 2019-12-07 17:16:59 2019-12-07 17:16:59 f 1 1 189604 506 0.00 2019-12-07 17:17:24 2019-12-07 17:17:24 f 1 1 189606 506 0.00 2019-12-07 17:17:37 2019-12-07 17:17:37 f 1 1 189608 625 0.00 2019-12-07 17:02:41 2019-12-07 17:17:57 t 1 1 189611 689 0.00 2019-12-07 17:19:46 2019-12-07 17:19:55 t 1 1 189613 689 0.00 2019-12-07 17:20:36 2019-12-07 17:20:58 t 1 1 189616 611 0.00 2019-12-07 17:15:57 2019-12-07 17:24:43 t 1 1 189621 622 0.00 2019-12-07 16:46:22 2019-12-07 17:26:57 t 1 1 189622 679 0.00 2019-12-07 17:17:21 2019-12-07 17:27:52 t 1 1 189628 625 0.00 2019-12-07 17:17:57 2019-12-07 17:29:18 t 1 1 189631 689 0.00 2019-12-07 17:29:54 2019-12-07 17:30:00 t 1 1 189635 562 0.00 2019-12-07 17:21:32 2019-12-07 17:32:17 t 1 1 189637 687 0.00 2019-12-07 17:25:02 2019-12-07 17:32:37 t 1 1 189644 671 0.00 2019-12-07 17:36:14 2019-12-07 17:38:18 t 1 1 189645 689 0.00 2019-12-07 17:38:03 2019-12-07 17:38:53 t 1 1 189650 675 0.00 2019-12-07 17:39:33 2019-12-07 17:40:49 t 1 1 189653 538 0.00 2019-12-07 17:33:49 2019-12-07 17:41:29 t 1 1 189657 694 0.00 2019-12-07 17:40:39 2019-12-07 17:45:01 t 1 1 189658 689 0.00 2019-12-07 17:45:07 2019-12-07 17:45:33 t 1 1 189662 689 0.00 2019-12-07 17:50:33 2019-12-07 17:51:01 t 1 1 189669 675 0.00 2019-12-07 17:55:08 2019-12-07 17:57:42 t 1 1 189671 722 0.00 2019-12-07 17:58:09 2019-12-07 17:58:18 t 1 1 189674 734 0.00 2019-12-07 17:50:44 2019-12-07 17:59:52 t 1 1 189679 622 0.00 2019-12-07 17:39:52 2019-12-07 18:01:59 t 1 1 189685 722 0.00 2019-12-07 18:04:20 2019-12-07 18:04:35 t 1 1 189688 615 0.00 2019-12-07 17:52:10 2019-12-07 18:06:01 t 1 1 189691 722 0.00 2019-12-07 18:06:56 2019-12-07 18:07:12 t 1 1 189694 562 0.00 2019-12-07 18:08:57 2019-12-07 18:09:24 t 1 1 189701 694 0.00 2019-12-07 17:45:01 2019-12-07 18:12:41 t 1 1 189706 722 0.00 2019-12-07 18:10:22 2019-12-07 18:15:53 t 1 1 189709 687 0.00 2019-12-07 18:09:57 2019-12-07 18:16:09 t 1 1 189713 718 0.00 2019-12-07 18:12:05 2019-12-07 18:17:57 t 1 1 189717 562 0.00 2019-12-07 18:19:46 2019-12-07 18:20:19 t 1 1 189719 611 0.00 2019-12-07 18:19:22 2019-12-07 18:23:09 t 1 1 189720 734 0.00 2019-12-07 18:10:29 2019-12-07 18:25:35 t 1 1 189728 718 0.00 2019-12-07 18:20:03 2019-12-07 18:31:09 t 1 1 189733 718 0.00 2019-12-07 18:31:09 2019-12-07 18:36:29 t 1 1 189736 622 0.00 2019-12-07 18:02:05 2019-12-07 18:39:05 t 1 1 189739 562 0.00 2019-12-07 18:40:19 2019-12-07 18:40:40 t 1 1 189742 687 0.00 2019-12-07 18:22:03 2019-12-07 18:45:32 t 1 1 189743 562 0.00 2019-12-07 18:51:00 2019-12-07 18:51:35 t 1 1 189755 516 0.00 2019-12-07 18:57:46 2019-12-07 19:00:04 t 1 1 189757 485 0.00 2019-12-07 18:57:37 2019-12-07 19:00:45 t 1 1 189761 615 0.00 2019-12-07 18:58:23 2019-12-07 19:02:39 t 1 1 189766 716 0.00 2019-12-07 19:02:26 2019-12-07 19:05:41 t 1 1 189769 649 0.00 2019-12-07 18:45:26 2019-12-07 19:07:30 t 1 1 189773 562 0.00 2019-12-07 19:09:33 2019-12-07 19:14:04 t 1 1 189778 675 0.00 2019-12-07 19:17:28 2019-12-07 19:19:21 t 1 1 189782 566 0.00 2019-12-07 19:10:19 2019-12-07 19:21:43 t 1 1 189784 562 0.00 2019-12-07 19:22:59 2019-12-07 19:23:23 t 1 1 189787 694 0.00 2019-12-07 19:16:38 2019-12-07 19:24:57 t 1 1 189788 459 0.00 2019-12-07 19:08:16 2019-12-07 19:25:51 t 1 2 189789 581 0.00 2019-12-07 19:27:01 2019-12-07 19:27:13 t 1 1 189790 581 0.00 2019-12-07 19:27:19 2019-12-07 19:27:26 t 1 1 189798 562 0.00 2019-12-07 19:33:50 2019-12-07 19:34:03 t 1 1 189801 562 0.00 2019-12-07 19:35:14 2019-12-07 19:35:22 t 1 1 189805 581 0.00 2019-12-07 19:35:07 2019-12-07 19:36:15 t 1 1 189808 562 0.00 2019-12-07 19:38:36 2019-12-07 19:38:51 t 1 1 189809 220 0.00 2019-12-07 19:12:29 2019-12-07 19:39:50 t 1 2 189810 566 0.00 2019-12-07 19:31:04 2019-12-07 19:41:18 t 1 1 189811 673 0.00 2019-12-07 16:40:26 2019-12-07 19:41:31 t 1 1 189812 691 0.00 2019-12-07 19:40:15 2019-12-07 19:43:04 t 1 1 189813 671 0.00 2019-12-07 19:34:35 2019-12-07 19:43:39 t 1 1 189815 562 0.00 2019-12-07 19:43:44 2019-12-07 19:43:55 t 1 1 189818 734 0.00 2019-12-07 19:34:45 2019-12-07 19:44:57 t 1 1 189821 581 0.00 2019-12-07 19:45:34 2019-12-07 19:46:02 t 1 1 189824 581 0.00 2019-12-07 19:46:30 2019-12-07 19:46:47 t 1 1 189826 581 0.00 2019-12-07 19:48:15 2019-12-07 19:48:46 t 1 1 189831 562 0.00 2019-12-07 19:56:55 2019-12-07 19:57:22 t 1 1 189834 687 0.00 2019-12-07 20:01:53 2019-12-07 20:03:54 t 1 1 189836 671 0.00 2019-12-07 19:58:00 2019-12-07 20:06:31 t 1 1 189844 700 0.00 2019-12-07 19:57:36 2019-12-07 20:19:09 t 1 1 189846 718 0.00 2019-12-07 20:03:52 2019-12-07 20:20:54 t 1 1 189589 675 0.00 2019-12-07 17:03:01 2019-12-07 17:04:25 t 1 1 189592 687 0.00 2019-12-07 16:55:27 2019-12-07 17:06:57 t 1 1 189595 718 0.00 2019-12-07 16:43:16 2019-12-07 17:09:04 t 1 1 189597 220 0.00 2019-12-07 16:45:15 2019-12-07 17:13:30 t 1 2 189615 538 0.00 2019-12-07 17:11:09 2019-12-07 17:23:07 t 1 1 189617 687 0.00 2019-12-07 17:06:57 2019-12-07 17:25:02 t 1 1 189619 718 0.00 2019-12-07 17:09:04 2019-12-07 17:25:09 t 1 1 189623 679 0.00 2019-12-07 17:27:58 2019-12-07 17:28:11 t 1 1 189624 679 0.00 2019-12-07 17:28:17 2019-12-07 17:28:35 t 1 1 189626 675 0.00 2019-12-07 17:27:03 2019-12-07 17:28:53 t 1 1 189627 718 0.00 2019-12-07 17:25:09 2019-12-07 17:29:01 t 1 1 189629 679 0.00 2019-12-07 17:28:58 2019-12-07 17:29:22 t 1 1 189630 679 0.00 2019-12-07 17:29:28 2019-12-07 17:29:48 t 1 1 189633 671 0.00 2019-12-07 17:27:00 2019-12-07 17:31:16 t 1 1 189636 679 0.00 2019-12-07 17:30:18 2019-12-07 17:32:33 t 1 1 189641 694 0.00 2019-12-07 17:23:18 2019-12-07 17:36:41 t 1 1 189647 622 0.00 2019-12-07 17:26:57 2019-12-07 17:39:52 t 1 1 189651 689 0.00 2019-12-07 17:39:04 2019-12-07 17:41:09 t 1 1 189659 611 0.00 2019-12-07 17:45:28 2019-12-07 17:46:49 t 1 1 189665 562 0.00 2019-12-07 17:52:13 2019-12-07 17:56:02 t 1 1 189668 722 0.00 2019-12-07 17:56:56 2019-12-07 17:57:29 t 1 1 189672 689 0.00 2019-12-07 17:57:27 2019-12-07 17:58:36 t 1 1 189673 707 0.00 2019-12-07 17:41:02 2019-12-07 17:59:48 t 1 1 189676 722 0.00 2019-12-07 18:00:21 2019-12-07 18:00:46 t 1 1 189677 722 0.00 2019-12-07 18:00:54 2019-12-07 18:01:30 t 1 1 189678 722 0.00 2019-12-07 18:01:36 2019-12-07 18:01:42 t 1 1 189682 220 0.00 2019-12-07 17:49:14 2019-12-07 18:03:01 t 1 2 189683 722 0.00 2019-12-07 18:03:29 2019-12-07 18:03:31 t 1 1 189689 722 0.00 2019-12-07 18:05:53 2019-12-07 18:06:28 t 1 1 189690 689 0.00 2019-12-07 18:06:52 2019-12-07 18:07:09 t 1 1 189693 687 0.00 2019-12-07 17:57:14 2019-12-07 18:09:23 t 1 1 189696 722 0.00 2019-12-07 18:08:29 2019-12-07 18:10:33 t 1 1 189698 545 0.00 2019-12-07 17:25:45 2019-12-07 18:11:44 t 1 1 189702 481 0.00 2019-12-07 18:04:39 2019-12-07 18:12:52 t 1 1 189703 562 0.00 2019-12-07 18:13:17 2019-12-07 18:13:32 t 1 1 189708 689 0.00 2019-12-07 18:15:29 2019-12-07 18:16:07 t 1 1 189711 625 0.00 2019-12-07 17:59:05 2019-12-07 18:16:41 t 1 1 189716 689 0.00 2019-12-07 18:16:28 2019-12-07 18:20:13 t 1 1 189721 506 0.00 2019-12-07 18:25:46 2019-12-07 18:25:46 f 1 1 189723 611 0.00 2019-12-07 18:26:11 2019-12-07 18:26:19 t 1 1 189724 581 0.00 2019-12-07 18:22:38 2019-12-07 18:27:28 t 1 1 189726 562 0.00 2019-12-07 18:29:33 2019-12-07 18:30:02 t 1 1 189730 562 0.00 2019-12-07 18:31:28 2019-12-07 18:32:00 t 1 1 189731 707 0.00 2019-12-07 18:30:50 2019-12-07 18:33:20 t 1 1 189735 683 0.00 2019-12-07 18:37:59 2019-12-07 18:38:59 t 1 1 189737 220 0.00 2019-12-07 18:30:17 2019-12-07 18:39:40 t 1 2 189738 683 0.00 2019-12-07 18:38:59 2019-12-07 18:40:36 t 1 1 189745 220 0.00 2019-12-07 18:33:53 2019-12-07 18:51:58 t 1 1 189747 734 0.00 2019-12-07 18:37:23 2019-12-07 18:52:58 t 1 1 189750 459 0.00 2019-12-07 18:53:48 2019-12-07 18:55:24 t 1 2 189752 485 0.00 2019-12-07 18:51:24 2019-12-07 18:57:24 t 1 1 189756 718 0.00 2019-12-07 18:36:34 2019-12-07 19:00:38 t 1 1 189758 578 0.00 2019-12-07 17:14:35 2019-12-07 19:01:05 t 1 1 189759 578 0.00 2019-12-07 19:01:05 2019-12-07 19:02:20 t 1 1 189760 718 0.00 2019-12-07 19:00:37 2019-12-07 19:02:39 t 1 1 189763 591 0.00 2019-12-07 18:56:41 2019-12-07 19:04:05 t 1 1 189764 562 0.00 2019-12-07 19:03:23 2019-12-07 19:04:55 t 1 1 189765 485 0.00 2019-12-07 19:03:39 2019-12-07 19:05:20 t 1 1 189768 622 0.00 2019-12-07 18:39:40 2019-12-07 19:06:12 t 1 1 189770 591 0.00 2019-12-07 19:06:24 2019-12-07 19:08:05 t 1 1 189772 679 0.00 2019-12-07 19:02:13 2019-12-07 19:10:42 t 1 1 189776 562 0.00 2019-12-07 19:15:35 2019-12-07 19:15:59 t 1 1 189777 694 0.00 2019-12-07 18:59:29 2019-12-07 19:16:38 t 1 1 189785 625 0.00 2019-12-07 18:31:09 2019-12-07 19:24:26 t 1 1 189791 679 0.00 2019-12-07 19:23:08 2019-12-07 19:28:12 t 1 1 189793 581 0.00 2019-12-07 19:27:39 2019-12-07 19:29:12 t 1 1 189794 581 0.00 2019-12-07 19:29:33 2019-12-07 19:29:47 t 1 1 189795 566 0.00 2019-12-07 19:21:43 2019-12-07 19:31:04 t 1 1 189796 625 0.00 2019-12-07 19:24:26 2019-12-07 19:31:11 t 1 1 189803 611 0.00 2019-12-07 19:34:42 2019-12-07 19:35:44 t 1 1 189804 562 0.00 2019-12-07 19:35:50 2019-12-07 19:36:15 t 1 1 189806 679 0.00 2019-12-07 19:34:21 2019-12-07 19:36:34 t 1 1 189814 220 0.00 2019-12-07 19:39:22 2019-12-07 19:43:46 t 1 2 189817 562 0.00 2019-12-07 19:44:21 2019-12-07 19:44:53 t 1 1 189822 544 0.00 2019-12-07 19:22:33 2019-12-07 19:46:29 t 1 1 189823 679 0.00 2019-12-07 19:36:34 2019-12-07 19:46:35 t 1 1 189827 566 0.00 2019-12-07 19:41:18 2019-12-07 19:49:31 t 1 1 189828 545 0.00 2019-12-07 19:50:38 2019-12-07 19:52:19 t 1 1 189832 687 0.00 2019-12-07 19:58:40 2019-12-07 20:00:43 t 1 1 189837 724 0.00 2019-12-07 19:37:06 2019-12-07 20:09:10 t 1 1 189838 691 0.00 2019-12-07 20:07:56 2019-12-07 20:09:27 t 1 1 189840 562 0.00 2019-12-07 20:15:25 2019-12-07 20:15:31 t 1 1 189841 633 0.00 2019-12-07 20:07:14 2019-12-07 20:17:05 t 1 1 189842 485 0.00 2019-12-07 20:01:32 2019-12-07 20:18:17 t 1 1 189850 679 0.00 2019-12-07 19:48:42 2019-12-07 20:25:15 t 1 1 189853 633 0.00 2019-12-07 20:22:20 2019-12-07 20:27:38 t 1 1 189855 694 0.00 2019-12-07 19:35:57 2019-12-07 20:31:28 t 1 1 189858 679 0.00 2019-12-07 20:25:15 2019-12-07 20:33:05 t 1 1 189861 679 0.00 2019-12-07 20:33:57 2019-12-07 20:37:15 t 1 1 189862 679 0.00 2019-12-07 20:37:22 2019-12-07 20:37:31 t 1 1 189866 562 0.00 2019-12-07 20:38:57 2019-12-07 20:39:09 t 1 1 189869 679 0.00 2019-12-07 20:42:25 2019-12-07 20:42:36 t 1 1 189871 679 0.00 2019-12-07 20:43:06 2019-12-07 20:43:17 t 1 1 189874 220 0.00 2019-12-07 20:23:45 2019-12-07 20:45:08 t 1 2 189875 679 0.00 2019-12-07 20:45:16 2019-12-07 20:45:26 t 1 1 189878 625 0.00 2019-12-07 19:31:11 2019-12-07 20:46:46 t 1 1 189881 516 0.00 2019-12-07 20:38:47 2019-12-07 20:48:04 t 1 1 189882 578 0.00 2019-12-07 20:22:04 2019-12-07 20:48:47 t 1 1 189884 679 0.00 2019-12-07 20:50:49 2019-12-07 20:51:07 t 1 1 189887 687 0.00 2019-12-07 20:45:23 2019-12-07 20:52:04 t 1 1 189890 718 0.00 2019-12-07 20:39:14 2019-12-07 20:54:03 t 1 1 189894 562 0.00 2019-12-07 20:54:44 2019-12-07 20:55:11 t 1 1 189895 718 0.00 2019-12-07 20:53:51 2019-12-07 20:55:23 t 1 1 189896 538 0.00 2019-12-07 20:56:23 2019-12-07 20:58:03 t 1 1 189899 538 0.00 2019-12-07 20:58:02 2019-12-07 20:58:49 t 1 1 189900 673 0.00 2019-12-07 20:55:09 2019-12-07 20:59:23 t 1 1 189903 538 0.00 2019-12-07 20:59:49 2019-12-07 21:00:50 t 1 1 189732 611 0.00 2019-12-07 18:34:41 2019-12-07 18:36:10 t 1 1 189734 694 0.00 2019-12-07 18:35:29 2019-12-07 18:36:33 t 1 1 189740 724 0.00 2019-12-07 16:44:15 2019-12-07 18:41:37 t 1 1 189741 481 0.00 2019-12-07 18:12:52 2019-12-07 18:43:48 t 1 1 189744 545 0.00 2019-12-07 18:40:29 2019-12-07 18:51:53 t 1 1 189746 675 0.00 2019-12-07 18:51:28 2019-12-07 18:52:46 t 1 1 189748 687 0.00 2019-12-07 18:46:22 2019-12-07 18:53:27 t 1 1 189749 724 0.00 2019-12-07 18:41:36 2019-12-07 18:54:08 t 1 1 189751 591 0.00 2019-12-07 17:26:59 2019-12-07 18:56:41 t 1 1 189753 516 0.00 2019-12-07 18:57:04 2019-12-07 18:57:37 t 1 1 189754 694 0.00 2019-12-07 18:40:41 2019-12-07 18:59:29 t 1 1 189762 516 0.00 2019-12-07 19:00:12 2019-12-07 19:03:52 t 1 1 189767 498 0.00 2019-12-07 18:58:43 2019-12-07 19:05:54 t 1 2 189771 485 0.00 2019-12-07 19:08:05 2019-12-07 19:09:43 t 1 1 189774 615 0.00 2019-12-07 19:04:35 2019-12-07 19:14:10 t 1 1 189775 671 0.00 2019-12-07 19:11:11 2019-12-07 19:15:12 t 1 1 189779 544 0.00 2019-12-07 18:34:08 2019-12-07 19:19:30 t 1 1 189780 562 0.00 2019-12-07 19:19:58 2019-12-07 19:20:05 t 1 1 189781 631 0.00 2019-12-07 19:18:30 2019-12-07 19:20:42 t 1 1 189783 544 0.00 2019-12-07 19:19:30 2019-12-07 19:22:34 t 1 1 189786 581 0.00 2019-12-07 19:22:46 2019-12-07 19:24:38 t 1 1 189792 707 0.00 2019-12-07 19:17:09 2019-12-07 19:28:21 t 1 1 189797 581 0.00 2019-12-07 19:33:04 2019-12-07 19:33:48 t 1 1 189799 498 0.00 2019-12-07 19:11:54 2019-12-07 19:34:18 t 1 2 189800 734 0.00 2019-12-07 18:53:33 2019-12-07 19:34:46 t 1 1 189802 694 0.00 2019-12-07 19:24:56 2019-12-07 19:35:39 t 1 1 189807 724 0.00 2019-12-07 19:01:48 2019-12-07 19:37:06 t 1 1 189816 726 0.00 2019-12-07 19:39:59 2019-12-07 19:44:40 t 1 1 189819 671 0.00 2019-12-07 19:43:38 2019-12-07 19:45:00 t 1 1 189820 581 0.00 2019-12-07 19:44:29 2019-12-07 19:45:29 t 1 1 189825 562 0.00 2019-12-07 19:46:32 2019-12-07 19:46:51 t 1 1 189829 581 0.00 2019-12-07 19:53:05 2019-12-07 19:53:09 t 1 1 189830 581 0.00 2019-12-07 19:55:16 2019-12-07 19:55:57 t 1 1 189833 562 0.00 2019-12-07 20:02:59 2019-12-07 20:03:22 t 1 1 189835 545 0.00 2019-12-07 20:03:17 2019-12-07 20:05:38 t 1 1 189839 675 0.00 2019-12-07 19:41:04 2019-12-07 20:12:50 t 1 1 189843 562 0.00 2019-12-07 20:16:58 2019-12-07 20:18:31 t 1 1 189845 611 0.00 2019-12-07 20:13:17 2019-12-07 20:20:25 t 1 1 189847 631 0.00 2019-12-07 20:19:00 2019-12-07 20:20:59 t 1 1 189848 578 0.00 2019-12-07 19:02:36 2019-12-07 20:22:04 t 1 1 189852 671 0.00 2019-12-07 20:23:27 2019-12-07 20:27:33 t 1 1 189854 631 0.00 2019-12-07 20:26:34 2019-12-07 20:31:24 t 1 1 189857 675 0.00 2019-12-07 20:18:00 2019-12-07 20:32:28 t 1 1 189859 673 0.00 2019-12-07 20:29:02 2019-12-07 20:34:34 t 1 1 189860 562 0.00 2019-12-07 20:35:58 2019-12-07 20:36:34 t 1 1 189867 679 0.00 2019-12-07 20:40:10 2019-12-07 20:40:51 t 1 1 189868 622 0.00 2019-12-07 20:20:36 2019-12-07 20:42:01 t 1 1 189870 671 0.00 2019-12-07 20:41:33 2019-12-07 20:43:07 t 1 1 189872 675 0.00 2019-12-07 20:39:14 2019-12-07 20:44:09 t 1 1 189873 687 0.00 2019-12-07 20:39:27 2019-12-07 20:44:56 t 1 1 189876 679 0.00 2019-12-07 20:45:49 2019-12-07 20:46:07 t 1 1 189879 679 0.00 2019-12-07 20:46:53 2019-12-07 20:47:02 t 1 1 189880 562 0.00 2019-12-07 20:47:24 2019-12-07 20:47:36 t 1 1 189885 516 0.00 2019-12-07 20:50:18 2019-12-07 20:51:20 t 1 1 189888 687 0.00 2019-12-07 20:52:04 2019-12-07 20:53:14 t 1 1 189891 551 0.00 2019-12-07 19:15:12 2019-12-07 20:54:18 t 1 1 189892 679 0.00 2019-12-07 20:54:12 2019-12-07 20:54:23 t 1 1 189893 673 0.00 2019-12-07 20:44:54 2019-12-07 20:55:10 t 1 1 189897 656 0.00 2019-12-07 20:52:21 2019-12-07 20:58:16 t 1 1 189901 538 0.00 2019-12-07 20:58:49 2019-12-07 20:59:49 t 1 1 189902 679 0.00 2019-12-07 20:59:22 2019-12-07 21:00:28 t 1 1 189904 679 0.00 2019-12-07 21:00:55 2019-12-07 21:01:07 t 1 1 189905 687 0.00 2019-12-07 21:00:32 2019-12-07 21:02:10 t 1 1 189908 679 0.00 2019-12-07 21:04:39 2019-12-07 21:05:27 t 1 1 189910 724 0.00 2019-12-07 20:09:10 2019-12-07 21:06:01 t 1 1 189911 545 0.00 2019-12-07 20:25:07 2019-12-07 21:06:32 t 1 1 189913 675 0.00 2019-12-07 20:53:11 2019-12-07 21:07:06 t 1 1 189915 611 0.00 2019-12-07 20:48:37 2019-12-07 21:08:03 t 1 1 189920 679 0.00 2019-12-07 21:10:21 2019-12-07 21:10:31 t 1 1 189924 692 0.00 2019-12-07 21:07:34 2019-12-07 21:11:37 t 1 1 189931 692 0.00 2019-12-07 21:16:01 2019-12-07 21:16:03 t 1 1 189945 692 0.00 2019-12-07 21:19:52 2019-12-07 21:19:53 t 1 1 189947 538 0.00 2019-12-07 21:05:26 2019-12-07 21:20:32 t 1 1 189948 692 0.00 2019-12-07 21:19:15 2019-12-07 21:21:36 t 1 1 189950 611 0.00 2019-12-07 21:18:40 2019-12-07 21:22:16 t 1 1 189952 516 0.00 2019-12-07 21:20:02 2019-12-07 21:22:57 t 1 1 189955 734 0.00 2019-12-07 21:09:32 2019-12-07 21:24:09 t 1 1 189956 692 0.00 2019-12-07 21:24:07 2019-12-07 21:24:21 t 1 1 189959 656 0.00 2019-12-07 20:58:15 2019-12-07 21:26:27 t 1 1 189962 679 0.00 2019-12-07 21:25:27 2019-12-07 21:27:55 t 1 1 189963 625 0.00 2019-12-07 20:46:46 2019-12-07 21:28:37 t 1 1 189965 694 0.00 2019-12-07 20:31:28 2019-12-07 21:31:06 t 1 1 189966 622 0.00 2019-12-07 21:18:15 2019-12-07 21:31:30 t 1 1 189970 627 0.00 2019-12-07 21:32:06 2019-12-07 21:33:06 t 1 1 189976 562 0.00 2019-12-07 21:35:00 2019-12-07 21:35:45 t 1 1 189978 675 0.00 2019-12-07 21:32:29 2019-12-07 21:36:06 t 1 1 189980 692 0.00 2019-12-07 21:36:55 2019-12-07 21:37:31 t 1 1 189984 564 0.00 2019-12-07 19:00:47 2019-12-07 21:42:11 t 1 1 189987 562 0.00 2019-12-07 21:42:27 2019-12-07 21:42:36 t 1 1 189988 627 0.00 2019-12-07 21:45:50 2019-12-07 21:46:14 t 1 1 189991 692 0.00 2019-12-07 21:39:00 2019-12-07 21:48:08 t 1 1 189992 692 0.00 2019-12-07 21:48:31 2019-12-07 21:48:36 t 1 1 189993 692 0.00 2019-12-07 21:49:51 2019-12-07 21:50:03 t 1 1 189997 581 0.00 2019-12-07 21:39:58 2019-12-07 21:53:10 t 1 1 189998 687 0.00 2019-12-07 21:43:04 2019-12-07 21:54:37 t 1 1 190002 627 0.00 2019-12-07 21:56:35 2019-12-07 21:56:44 t 1 1 190007 581 0.00 2019-12-07 22:00:39 2019-12-07 22:01:02 t 1 1 190012 627 0.00 2019-12-07 22:04:30 2019-12-07 22:04:43 t 1 1 190017 692 0.00 2019-12-07 22:05:47 2019-12-07 22:06:36 t 1 1 190020 734 0.00 2019-12-07 22:06:30 2019-12-07 22:08:22 t 1 1 190025 481 0.00 2019-12-07 19:42:30 2019-12-07 22:09:50 t 1 1 190026 692 0.00 2019-12-07 22:10:10 2019-12-07 22:10:17 t 1 1 190027 722 0.00 2019-12-07 22:04:58 2019-12-07 22:11:02 t 1 1 190028 562 0.00 2019-12-07 22:11:34 2019-12-07 22:11:57 t 1 1 190030 689 0.00 2019-12-07 22:12:00 2019-12-07 22:13:36 t 1 1 190031 692 0.00 2019-12-07 22:12:20 2019-12-07 22:14:19 t 1 1 190033 692 0.00 2019-12-07 22:14:53 2019-12-07 22:15:00 t 1 1 189849 591 0.00 2019-12-07 19:56:54 2019-12-07 20:22:19 t 1 1 189851 562 0.00 2019-12-07 20:21:39 2019-12-07 20:25:50 t 1 1 189856 562 0.00 2019-12-07 20:32:02 2019-12-07 20:32:25 t 1 1 189863 687 0.00 2019-12-07 20:36:34 2019-12-07 20:38:02 t 1 1 189864 679 0.00 2019-12-07 20:38:05 2019-12-07 20:38:16 t 1 1 189865 687 0.00 2019-12-07 20:38:09 2019-12-07 20:38:47 t 1 1 189877 591 0.00 2019-12-07 20:31:15 2019-12-07 20:46:19 t 1 1 189883 679 0.00 2019-12-07 20:50:15 2019-12-07 20:50:42 t 1 1 189886 679 0.00 2019-12-07 20:51:30 2019-12-07 20:51:39 t 1 1 189889 679 0.00 2019-12-07 20:52:58 2019-12-07 20:53:29 t 1 1 189898 679 0.00 2019-12-07 20:57:52 2019-12-07 20:58:43 t 1 1 189907 538 0.00 2019-12-07 21:00:50 2019-12-07 21:05:26 t 1 1 189909 562 0.00 2019-12-07 21:05:28 2019-12-07 21:05:58 t 1 1 189912 581 0.00 2019-12-07 20:45:23 2019-12-07 21:06:40 t 1 1 189917 679 0.00 2019-12-07 21:08:19 2019-12-07 21:08:34 t 1 1 189919 679 0.00 2019-12-07 21:10:03 2019-12-07 21:10:14 t 1 1 189923 679 0.00 2019-12-07 21:11:20 2019-12-07 21:11:34 t 1 1 189927 679 0.00 2019-12-07 21:13:15 2019-12-07 21:13:27 t 1 1 189934 562 0.00 2019-12-07 21:16:22 2019-12-07 21:16:48 t 1 1 189935 671 0.00 2019-12-07 21:08:02 2019-12-07 21:18:03 t 1 1 189938 679 0.00 2019-12-07 21:16:15 2019-12-07 21:18:33 t 1 1 189942 692 0.00 2019-12-07 21:19:06 2019-12-07 21:19:07 t 1 1 189946 679 0.00 2019-12-07 21:20:20 2019-12-07 21:20:29 t 1 1 189949 679 0.00 2019-12-07 21:22:03 2019-12-07 21:22:14 t 1 1 189951 692 0.00 2019-12-07 21:21:29 2019-12-07 21:22:52 t 1 1 189953 485 0.00 2019-12-07 21:02:05 2019-12-07 21:23:25 t 1 1 189958 679 0.00 2019-12-07 21:24:12 2019-12-07 21:24:59 t 1 1 189960 692 0.00 2019-12-07 21:26:26 2019-12-07 21:26:40 t 1 1 189961 562 0.00 2019-12-07 21:26:59 2019-12-07 21:27:22 t 1 1 189967 578 0.00 2019-12-07 21:10:38 2019-12-07 21:31:53 t 1 1 189971 625 0.00 2019-12-07 21:28:37 2019-12-07 21:34:16 t 1 1 189972 692 0.00 2019-12-07 21:32:39 2019-12-07 21:34:36 t 1 1 189975 631 0.00 2019-12-07 21:34:12 2019-12-07 21:35:44 t 1 1 189977 673 0.00 2019-12-07 21:26:07 2019-12-07 21:35:46 t 1 1 189981 656 0.00 2019-12-07 21:32:00 2019-12-07 21:38:29 t 1 1 189982 692 0.00 2019-12-07 21:38:47 2019-12-07 21:39:00 t 1 1 189985 562 0.00 2019-12-07 21:41:38 2019-12-07 21:42:12 t 1 1 189986 656 0.00 2019-12-07 21:41:23 2019-12-07 21:42:34 t 1 1 189989 545 0.00 2019-12-07 21:06:32 2019-12-07 21:46:19 t 1 1 189990 545 0.00 2019-12-07 21:46:19 2019-12-07 21:47:49 t 1 1 189994 562 0.00 2019-12-07 21:50:13 2019-12-07 21:50:27 t 1 1 189996 692 0.00 2019-12-07 21:50:11 2019-12-07 21:50:43 t 1 1 190001 722 0.00 2019-12-07 21:33:07 2019-12-07 21:56:13 t 1 1 190006 689 0.00 2019-12-07 21:54:40 2019-12-07 22:00:55 t 1 1 190009 692 0.00 2019-12-07 22:01:36 2019-12-07 22:01:45 t 1 1 190015 692 0.00 2019-12-07 22:04:54 2019-12-07 22:05:07 t 1 1 190019 692 0.00 2019-12-07 22:06:36 2019-12-07 22:07:11 t 1 1 190021 692 0.00 2019-12-07 22:08:24 2019-12-07 22:08:26 t 1 1 190023 679 0.00 2019-12-07 21:43:46 2019-12-07 22:09:03 t 1 1 190035 691 0.00 2019-12-07 22:15:33 2019-12-07 22:15:51 t 1 1 190038 692 0.00 2019-12-07 22:18:45 2019-12-07 22:18:58 t 1 1 190039 625 0.00 2019-12-07 21:50:35 2019-12-07 22:19:36 t 1 1 190045 692 0.00 2019-12-07 22:23:42 2019-12-07 22:24:29 t 1 1 190049 679 0.00 2019-12-07 22:09:03 2019-12-07 22:26:09 t 1 1 190054 689 0.00 2019-12-07 22:27:29 2019-12-07 22:27:51 t 1 1 190057 689 0.00 2019-12-07 22:28:01 2019-12-07 22:28:24 t 1 1 190058 627 0.00 2019-12-07 22:28:35 2019-12-07 22:28:41 t 1 1 190062 562 0.00 2019-12-07 22:30:00 2019-12-07 22:30:20 t 1 1 190064 637 0.00 2019-12-07 22:29:45 2019-12-07 22:30:22 t 1 1 190066 681 0.00 2019-12-07 22:28:51 2019-12-07 22:31:23 t 1 1 190069 625 0.00 2019-12-07 22:33:32 2019-12-07 22:35:00 t 1 1 190070 551 0.00 2019-12-07 21:57:18 2019-12-07 22:35:26 t 1 1 190074 581 0.00 2019-12-07 22:01:37 2019-12-07 22:37:48 t 1 1 190076 689 0.00 2019-12-07 22:38:27 2019-12-07 22:38:49 t 1 1 190078 627 0.00 2019-12-07 22:40:22 2019-12-07 22:40:44 t 1 1 190079 627 0.00 2019-12-07 22:40:50 2019-12-07 22:41:03 t 1 1 190080 562 0.00 2019-12-07 22:40:53 2019-12-07 22:42:01 t 1 1 190084 689 0.00 2019-12-07 22:43:16 2019-12-07 22:43:43 t 1 1 190087 485 0.00 2019-12-07 22:37:17 2019-12-07 22:46:09 t 1 1 190090 220 0.00 2019-12-07 21:00:48 2019-12-07 22:47:40 t 1 2 190096 689 0.00 2019-12-07 22:48:43 2019-12-07 22:49:29 t 1 1 190100 627 0.00 2019-12-07 22:51:43 2019-12-07 22:53:51 t 1 1 190103 687 0.00 2019-12-07 22:49:05 2019-12-07 22:55:40 t 1 1 190106 544 0.00 2019-12-07 22:56:09 2019-12-07 22:57:35 t 1 1 190108 627 0.00 2019-12-07 22:58:27 2019-12-07 22:58:58 t 1 1 190110 689 0.00 2019-12-07 22:59:38 2019-12-07 23:00:06 t 1 1 190112 689 0.00 2019-12-07 23:00:47 2019-12-07 23:01:10 t 1 1 190113 689 0.00 2019-12-07 23:01:22 2019-12-07 23:01:44 t 1 1 190116 675 0.00 2019-12-07 22:55:45 2019-12-07 23:03:02 t 1 1 190124 667 0.00 2019-12-07 23:12:04 2019-12-07 23:13:05 t 1 1 190128 673 0.00 2019-12-07 22:04:14 2019-12-07 23:14:02 t 1 1 190130 637 0.00 2019-12-07 23:06:55 2019-12-07 23:14:33 t 1 1 190132 667 0.00 2019-12-07 23:14:21 2019-12-07 23:14:51 t 1 1 190133 627 0.00 2019-12-07 23:15:06 2019-12-07 23:15:12 t 1 1 190135 591 0.00 2019-12-07 23:16:43 2019-12-07 23:17:11 t 1 1 190139 591 0.00 2019-12-07 23:18:47 2019-12-07 23:19:19 t 1 1 190143 673 0.00 2019-12-07 23:14:02 2019-12-07 23:20:31 t 1 1 190145 687 0.00 2019-12-07 22:55:52 2019-12-07 23:21:11 t 1 1 190146 689 0.00 2019-12-07 23:21:14 2019-12-07 23:21:37 t 1 1 190148 591 0.00 2019-12-07 23:22:25 2019-12-07 23:22:54 t 1 1 190150 538 0.00 2019-12-07 22:16:29 2019-12-07 23:24:13 t 1 1 190157 564 0.00 2019-12-07 22:42:27 2019-12-07 23:33:29 t 1 1 190158 538 0.00 2019-12-07 23:25:37 2019-12-07 23:33:55 t 1 1 190159 673 0.00 2019-12-07 23:20:30 2019-12-07 23:34:25 t 1 1 190162 562 0.00 2019-12-07 23:35:09 2019-12-07 23:36:18 t 1 1 190166 692 0.00 2019-12-07 23:36:36 2019-12-07 23:37:51 t 1 1 190167 562 0.00 2019-12-07 23:38:07 2019-12-07 23:38:51 t 1 1 190171 692 0.00 2019-12-07 23:40:08 2019-12-07 23:41:08 t 1 1 190172 713 0.00 2019-12-07 23:34:17 2019-12-07 23:42:01 t 1 1 190176 611 0.00 2019-12-07 23:37:24 2019-12-07 23:43:53 t 1 1 190178 734 0.00 2019-12-07 23:42:07 2019-12-07 23:45:45 t 1 1 190181 611 0.00 2019-12-07 23:43:58 2019-12-07 23:47:50 t 1 1 190183 538 0.00 2019-12-07 23:44:24 2019-12-07 23:49:41 t 1 1 190184 562 0.00 2019-12-07 23:50:02 2019-12-07 23:50:12 t 1 1 190194 562 0.00 2019-12-07 23:55:40 2019-12-07 23:56:18 t 1 1 190202 611 0.00 2019-12-07 23:54:43 2019-12-08 00:05:49 t 1 1 190204 562 0.00 2019-12-08 00:08:34 2019-12-08 00:08:34 f 1 1 189906 679 0.00 2019-12-07 21:03:15 2019-12-07 21:03:25 t 1 1 189914 679 0.00 2019-12-07 21:07:34 2019-12-07 21:07:43 t 1 1 189916 562 0.00 2019-12-07 21:08:08 2019-12-07 21:08:26 t 1 1 189918 724 0.00 2019-12-07 21:06:01 2019-12-07 21:10:10 t 1 1 189921 578 0.00 2019-12-07 20:48:47 2019-12-07 21:10:38 t 1 1 189922 679 0.00 2019-12-07 21:10:49 2019-12-07 21:10:59 t 1 1 189925 581 0.00 2019-12-07 21:11:31 2019-12-07 21:12:16 t 1 1 189926 679 0.00 2019-12-07 21:12:45 2019-12-07 21:12:54 t 1 1 189928 591 0.00 2019-12-07 21:04:26 2019-12-07 21:14:25 t 1 1 189929 692 0.00 2019-12-07 21:15:04 2019-12-07 21:15:17 t 1 1 189930 679 0.00 2019-12-07 21:15:10 2019-12-07 21:15:23 t 1 1 189932 551 0.00 2019-12-07 20:54:18 2019-12-07 21:16:10 t 1 1 189933 692 0.00 2019-12-07 21:16:12 2019-12-07 21:16:26 t 1 1 189936 622 0.00 2019-12-07 20:42:01 2019-12-07 21:18:15 t 1 1 189937 692 0.00 2019-12-07 21:18:08 2019-12-07 21:18:27 t 1 1 189939 611 0.00 2019-12-07 21:09:34 2019-12-07 21:18:40 t 1 1 189940 679 0.00 2019-12-07 21:18:42 2019-12-07 21:18:55 t 1 1 189941 692 0.00 2019-12-07 21:18:45 2019-12-07 21:19:06 t 1 1 189943 679 0.00 2019-12-07 21:19:03 2019-12-07 21:19:16 t 1 1 189944 679 0.00 2019-12-07 21:19:25 2019-12-07 21:19:37 t 1 1 189954 679 0.00 2019-12-07 21:23:55 2019-12-07 21:24:06 t 1 1 189957 675 0.00 2019-12-07 21:17:00 2019-12-07 21:24:39 t 1 1 189964 581 0.00 2019-12-07 21:13:01 2019-12-07 21:30:31 t 1 1 189968 656 0.00 2019-12-07 21:26:27 2019-12-07 21:31:54 t 1 1 189969 687 0.00 2019-12-07 21:30:31 2019-12-07 21:32:18 t 1 1 189973 627 0.00 2019-12-07 21:34:35 2019-12-07 21:35:13 t 1 1 189974 622 0.00 2019-12-07 21:31:30 2019-12-07 21:35:35 t 1 1 189979 671 0.00 2019-12-07 21:32:42 2019-12-07 21:37:17 t 1 1 189983 679 0.00 2019-12-07 21:34:16 2019-12-07 21:41:17 t 1 1 189995 692 0.00 2019-12-07 21:48:42 2019-12-07 21:50:36 t 1 1 189999 692 0.00 2019-12-07 21:50:52 2019-12-07 21:55:19 t 1 1 190000 671 0.00 2019-12-07 21:45:09 2019-12-07 21:55:26 t 1 1 190003 551 0.00 2019-12-07 21:16:10 2019-12-07 21:57:18 t 1 1 190004 692 0.00 2019-12-07 21:55:18 2019-12-07 21:57:34 t 1 1 190005 627 0.00 2019-12-07 21:59:01 2019-12-07 21:59:13 t 1 1 190008 562 0.00 2019-12-07 22:00:46 2019-12-07 22:01:16 t 1 1 190010 734 0.00 2019-12-07 22:00:54 2019-12-07 22:02:39 t 1 1 190011 673 0.00 2019-12-07 21:35:46 2019-12-07 22:04:14 t 1 1 190013 692 0.00 2019-12-07 22:04:37 2019-12-07 22:04:47 t 1 1 190014 722 0.00 2019-12-07 21:56:13 2019-12-07 22:04:58 t 1 1 190016 671 0.00 2019-12-07 22:02:53 2019-12-07 22:06:10 t 1 1 190018 689 0.00 2019-12-07 22:06:26 2019-12-07 22:06:47 t 1 1 190022 675 0.00 2019-12-07 22:05:15 2019-12-07 22:08:59 t 1 1 190024 692 0.00 2019-12-07 22:08:33 2019-12-07 22:09:12 t 1 1 190029 578 0.00 2019-12-07 21:31:53 2019-12-07 22:12:21 t 1 1 190032 627 0.00 2019-12-07 22:14:13 2019-12-07 22:14:20 t 1 1 190034 692 0.00 2019-12-07 22:15:05 2019-12-07 22:15:31 t 1 1 190036 691 0.00 2019-12-07 22:15:51 2019-12-07 22:17:52 t 1 1 190041 692 0.00 2019-12-07 22:22:06 2019-12-07 22:22:24 t 1 1 190046 627 0.00 2019-12-07 22:24:46 2019-12-07 22:24:59 t 1 1 190047 564 0.00 2019-12-07 21:42:11 2019-12-07 22:25:23 t 1 1 190050 692 0.00 2019-12-07 22:26:15 2019-12-07 22:26:16 t 1 1 190052 689 0.00 2019-12-07 22:27:01 2019-12-07 22:27:19 t 1 1 190053 692 0.00 2019-12-07 22:27:06 2019-12-07 22:27:35 t 1 1 190056 637 0.00 2019-12-07 20:33:37 2019-12-07 22:28:22 t 1 1 190060 689 0.00 2019-12-07 22:28:36 2019-12-07 22:29:40 t 1 1 190061 637 0.00 2019-12-07 22:28:58 2019-12-07 22:29:45 t 1 1 190065 692 0.00 2019-12-07 22:30:35 2019-12-07 22:30:58 t 1 1 190068 689 0.00 2019-12-07 22:32:21 2019-12-07 22:32:49 t 1 1 190071 692 0.00 2019-12-07 22:32:20 2019-12-07 22:35:46 t 1 1 190072 692 0.00 2019-12-07 22:35:51 2019-12-07 22:37:04 t 1 1 190073 635 0.00 2019-12-07 21:49:34 2019-12-07 22:37:42 t 1 1 190075 689 0.00 2019-12-07 22:37:49 2019-12-07 22:38:16 t 1 1 190077 667 0.00 2019-12-07 22:31:15 2019-12-07 22:40:34 t 1 1 190081 564 0.00 2019-12-07 22:25:23 2019-12-07 22:42:27 t 1 1 190085 692 0.00 2019-12-07 22:43:43 2019-12-07 22:44:26 t 1 1 190088 689 0.00 2019-12-07 22:45:56 2019-12-07 22:46:20 t 1 1 190091 687 0.00 2019-12-07 22:26:04 2019-12-07 22:48:00 t 1 1 190094 551 0.00 2019-12-07 22:35:26 2019-12-07 22:48:40 t 1 1 190095 562 0.00 2019-12-07 22:48:36 2019-12-07 22:48:45 t 1 1 190097 692 0.00 2019-12-07 22:48:52 2019-12-07 22:49:36 t 1 1 190098 675 0.00 2019-12-07 22:45:01 2019-12-07 22:51:00 t 1 1 190101 622 0.00 2019-12-07 21:42:07 2019-12-07 22:54:12 t 1 1 190104 627 0.00 2019-12-07 22:54:56 2019-12-07 22:56:20 t 1 1 190105 627 0.00 2019-12-07 22:56:34 2019-12-07 22:57:21 t 1 1 190107 562 0.00 2019-12-07 22:58:13 2019-12-07 22:58:38 t 1 1 190109 692 0.00 2019-12-07 22:52:35 2019-12-07 22:59:08 t 1 1 190114 689 0.00 2019-12-07 23:01:55 2019-12-07 23:02:17 t 1 1 190117 637 0.00 2019-12-07 22:30:22 2019-12-07 23:03:40 t 1 1 190119 689 0.00 2019-12-07 23:05:09 2019-12-07 23:05:38 t 1 1 190120 631 0.00 2019-12-07 23:07:15 2019-12-07 23:08:03 t 1 1 190126 627 0.00 2019-12-07 23:12:38 2019-12-07 23:13:17 t 1 1 190127 689 0.00 2019-12-07 23:13:22 2019-12-07 23:13:44 t 1 1 190129 566 0.00 2019-12-07 22:38:20 2019-12-07 23:14:04 t 1 1 190131 611 0.00 2019-12-07 22:57:44 2019-12-07 23:14:49 t 1 1 190137 544 0.00 2019-12-07 23:07:21 2019-12-07 23:19:06 t 1 1 190140 611 0.00 2019-12-07 23:14:48 2019-12-07 23:19:29 t 1 1 190142 562 0.00 2019-12-07 23:19:42 2019-12-07 23:20:08 t 1 1 190144 689 0.00 2019-12-07 23:20:37 2019-12-07 23:21:05 t 1 1 190147 689 0.00 2019-12-07 23:21:50 2019-12-07 23:22:10 t 1 1 190149 718 0.00 2019-12-07 21:49:34 2019-12-07 23:23:56 t 1 1 190152 689 0.00 2019-12-07 23:26:06 2019-12-07 23:26:33 t 1 1 190155 692 0.00 2019-12-07 22:59:20 2019-12-07 23:33:07 t 1 1 190160 673 0.00 2019-12-07 23:34:25 2019-12-07 23:34:47 t 1 1 190165 562 0.00 2019-12-07 23:36:32 2019-12-07 23:37:26 t 1 1 190168 692 0.00 2019-12-07 23:38:53 2019-12-07 23:39:02 t 1 1 190170 562 0.00 2019-12-07 23:40:49 2019-12-07 23:41:03 t 1 1 190173 591 0.00 2019-12-07 23:42:30 2019-12-07 23:43:13 t 1 1 190175 692 0.00 2019-12-07 23:41:15 2019-12-07 23:43:38 t 1 1 190179 562 0.00 2019-12-07 23:45:02 2019-12-07 23:46:56 t 1 1 190185 544 0.00 2019-12-07 23:40:54 2019-12-07 23:51:58 t 1 1 190187 562 0.00 2019-12-07 23:50:46 2019-12-07 23:52:16 t 1 1 190190 562 0.00 2019-12-07 23:52:58 2019-12-07 23:54:29 t 1 1 190196 551 0.00 2019-12-07 22:48:40 2019-12-08 00:02:15 t 1 1 190197 562 0.00 2019-12-08 00:00:09 2019-12-08 00:03:01 t 1 1 190205 562 0.00 2019-12-08 00:03:46 2019-12-08 00:09:28 t 1 1 190209 700 0.00 2019-12-07 22:26:59 2019-12-08 00:16:43 t 1 1 190037 692 0.00 2019-12-07 22:17:26 2019-12-07 22:18:36 t 1 1 190040 562 0.00 2019-12-07 22:19:16 2019-12-07 22:19:36 t 1 1 190042 692 0.00 2019-12-07 22:22:29 2019-12-07 22:22:45 t 1 1 190043 692 0.00 2019-12-07 22:23:09 2019-12-07 22:23:40 t 1 1 190044 562 0.00 2019-12-07 22:23:49 2019-12-07 22:24:03 t 1 1 190048 687 0.00 2019-12-07 21:54:37 2019-12-07 22:26:04 t 1 1 190051 700 0.00 2019-12-07 22:08:14 2019-12-07 22:26:41 t 1 1 190055 656 0.00 2019-12-07 22:15:41 2019-12-07 22:27:56 t 1 1 190059 692 0.00 2019-12-07 22:28:00 2019-12-07 22:29:28 t 1 1 190063 627 0.00 2019-12-07 22:29:43 2019-12-07 22:30:21 t 1 1 190067 692 0.00 2019-12-07 22:31:03 2019-12-07 22:31:49 t 1 1 190082 481 0.00 2019-12-07 22:09:50 2019-12-07 22:43:05 t 1 1 190083 692 0.00 2019-12-07 22:41:04 2019-12-07 22:43:37 t 1 1 190086 689 0.00 2019-12-07 22:45:30 2019-12-07 22:45:46 t 1 1 190089 692 0.00 2019-12-07 22:46:27 2019-12-07 22:46:40 t 1 1 190092 692 0.00 2019-12-07 22:48:00 2019-12-07 22:48:19 t 1 1 190093 687 0.00 2019-12-07 22:48:35 2019-12-07 22:48:40 t 1 1 190099 692 0.00 2019-12-07 22:49:36 2019-12-07 22:52:35 t 1 1 190102 689 0.00 2019-12-07 22:54:11 2019-12-07 22:54:40 t 1 1 190111 689 0.00 2019-12-07 23:00:17 2019-12-07 23:00:38 t 1 1 190115 627 0.00 2019-12-07 22:59:04 2019-12-07 23:02:48 t 1 1 190118 675 0.00 2019-12-07 23:03:02 2019-12-07 23:05:38 t 1 1 190121 545 0.00 2019-12-07 22:55:19 2019-12-07 23:08:52 t 1 1 190122 562 0.00 2019-12-07 23:09:13 2019-12-07 23:09:27 t 1 1 190123 591 0.00 2019-12-07 21:36:13 2019-12-07 23:12:27 t 1 1 190125 689 0.00 2019-12-07 23:06:23 2019-12-07 23:13:09 t 1 1 190134 689 0.00 2019-12-07 23:15:04 2019-12-07 23:15:33 t 1 1 190136 675 0.00 2019-12-07 23:06:04 2019-12-07 23:19:05 t 1 1 190138 627 0.00 2019-12-07 23:15:21 2019-12-07 23:19:17 t 1 1 190141 627 0.00 2019-12-07 23:19:16 2019-12-07 23:19:52 t 1 1 190151 622 0.00 2019-12-07 23:16:20 2019-12-07 23:26:28 t 1 1 190153 545 0.00 2019-12-07 23:16:06 2019-12-07 23:28:09 t 1 1 190154 562 0.00 2019-12-07 23:30:40 2019-12-07 23:30:59 t 1 1 190156 692 0.00 2019-12-07 23:33:12 2019-12-07 23:33:19 t 1 1 190161 566 0.00 2019-12-07 23:14:04 2019-12-07 23:36:03 t 1 1 190163 675 0.00 2019-12-07 23:31:44 2019-12-07 23:37:12 t 1 1 190164 611 0.00 2019-12-07 23:19:28 2019-12-07 23:37:24 t 1 1 190169 544 0.00 2019-12-07 23:39:40 2019-12-07 23:40:54 t 1 1 190174 562 0.00 2019-12-07 23:42:21 2019-12-07 23:43:32 t 1 1 190177 538 0.00 2019-12-07 23:33:54 2019-12-07 23:44:24 t 1 1 190180 514 0.00 2019-12-07 23:35:04 2019-12-07 23:47:44 t 1 1 190182 562 0.00 2019-12-07 23:47:56 2019-12-07 23:48:44 t 1 1 190186 687 0.00 2019-12-07 23:22:17 2019-12-07 23:52:02 t 1 1 190188 564 0.00 2019-12-07 23:33:29 2019-12-07 23:53:25 t 1 1 190189 538 0.00 2019-12-07 23:49:52 2019-12-07 23:54:20 t 1 1 190191 611 0.00 2019-12-07 23:47:50 2019-12-07 23:54:43 t 1 1 190192 538 0.00 2019-12-07 23:54:19 2019-12-07 23:55:15 t 1 1 190193 562 0.00 2019-12-07 23:55:14 2019-12-07 23:55:24 t 1 1 190195 566 0.00 2019-12-07 23:36:03 2019-12-08 00:00:18 t 1 1 190198 544 0.00 2019-12-07 23:51:58 2019-12-08 00:03:41 t 1 1 190199 665 0.00 2019-12-07 23:45:24 2019-12-08 00:04:06 t 1 1 190200 538 0.00 2019-12-07 23:55:15 2019-12-08 00:04:44 t 1 1 190201 220 0.00 2019-12-07 23:06:12 2019-12-08 00:05:33 t 1 2 190203 566 0.00 2019-12-08 00:00:18 2019-12-08 00:08:25 t 1 1 190206 611 0.00 2019-12-08 00:05:48 2019-12-08 00:10:17 t 1 1 190207 611 0.00 2019-12-08 00:10:17 2019-12-08 00:14:24 t 1 1 190208 665 0.00 2019-12-08 00:04:06 2019-12-08 00:15:43 t 1 1 190212 665 0.00 2019-12-08 00:15:43 2019-12-08 00:21:26 t 1 1 190220 675 0.00 2019-12-08 00:23:37 2019-12-08 00:38:58 t 1 1 190221 581 0.00 2019-12-08 00:12:22 2019-12-08 00:41:53 t 1 1 190225 544 0.00 2019-12-08 00:03:41 2019-12-08 00:51:07 t 1 1 190226 581 0.00 2019-12-08 00:42:34 2019-12-08 00:55:53 t 1 1 190228 544 0.00 2019-12-08 00:51:07 2019-12-08 01:00:18 t 1 1 190234 687 0.00 2019-12-07 23:53:03 2019-12-08 01:18:09 t 1 1 190236 707 0.00 2019-12-08 01:19:26 2019-12-08 01:29:33 t 1 1 190239 622 0.00 2019-12-08 00:44:44 2019-12-08 01:49:56 t 1 1 190243 503 0.00 2019-12-08 01:52:56 2019-12-08 01:55:28 t 1 1 190245 687 0.00 2019-12-08 01:47:09 2019-12-08 02:03:54 t 1 1 190247 514 0.00 2019-12-08 02:00:58 2019-12-08 02:07:00 t 1 1 190249 514 0.00 2019-12-08 02:07:00 2019-12-08 02:09:02 t 1 1 190252 692 0.00 2019-12-08 02:07:19 2019-12-08 02:25:22 t 1 1 190254 692 0.00 2019-12-08 02:25:22 2019-12-08 02:26:24 t 1 1 190257 692 0.00 2019-12-08 02:26:28 2019-12-08 02:33:55 t 1 1 190261 544 0.00 2019-12-08 02:24:08 2019-12-08 02:42:53 t 1 1 190263 692 0.00 2019-12-08 02:35:08 2019-12-08 02:50:08 t 1 1 190267 514 0.00 2019-12-08 02:57:13 2019-12-08 02:59:21 t 1 1 190270 514 0.00 2019-12-08 03:00:23 2019-12-08 03:02:52 t 1 1 190271 514 0.00 2019-12-08 03:02:52 2019-12-08 03:03:40 t 1 1 190281 514 0.00 2019-12-08 03:17:34 2019-12-08 03:21:00 t 1 1 190285 692 0.00 2019-12-08 03:31:18 2019-12-08 03:31:18 f 1 1 190287 692 0.00 2019-12-08 03:30:44 2019-12-08 03:31:45 t 1 1 190288 663 0.00 2019-12-08 03:03:55 2019-12-08 03:58:35 t 1 1 190289 514 0.00 2019-12-08 03:21:00 2019-12-08 04:11:10 t 1 1 190290 663 0.00 2019-12-08 03:58:35 2019-12-08 04:12:31 t 1 1 190293 663 0.00 2019-12-08 04:12:31 2019-12-08 04:32:52 t 1 1 190295 663 0.00 2019-12-08 04:32:52 2019-12-08 04:46:41 t 1 1 190296 514 0.00 2019-12-08 04:23:12 2019-12-08 04:52:10 t 1 1 190297 700 0.00 2019-12-08 00:16:43 2019-12-08 04:53:46 t 1 1 190298 514 0.00 2019-12-08 04:52:10 2019-12-08 04:55:00 t 1 1 190301 663 0.00 2019-12-08 05:10:00 2019-12-08 05:10:11 t 1 1 190304 514 0.00 2019-12-08 04:55:00 2019-12-08 05:30:19 t 1 1 190307 637 0.00 2019-12-08 05:29:26 2019-12-08 05:36:26 t 1 1 190308 514 0.00 2019-12-08 05:33:30 2019-12-08 05:40:18 t 1 1 190309 637 0.00 2019-12-08 05:36:26 2019-12-08 05:40:40 t 1 1 190310 514 0.00 2019-12-08 05:40:18 2019-12-08 05:46:17 t 1 1 190313 514 0.00 2019-12-08 05:46:17 2019-12-08 05:58:28 t 1 1 190316 722 0.00 2019-12-08 06:03:06 2019-12-08 06:05:08 t 1 1 190318 722 0.00 2019-12-08 06:07:27 2019-12-08 06:08:40 t 1 1 190320 514 0.00 2019-12-08 05:58:27 2019-12-08 06:13:53 t 1 1 190321 637 0.00 2019-12-08 06:09:11 2019-12-08 06:14:56 t 1 1 190322 622 0.00 2019-12-08 05:55:14 2019-12-08 06:21:21 t 1 1 190324 625 0.00 2019-12-08 05:32:22 2019-12-08 06:22:52 t 1 1 190325 485 0.00 2019-12-08 06:20:25 2019-12-08 06:24:47 t 1 1 190327 622 0.00 2019-12-08 06:22:25 2019-12-08 06:32:11 t 1 1 190328 622 0.00 2019-12-08 06:32:11 2019-12-08 06:40:06 t 1 1 190331 656 0.00 2019-12-08 06:50:02 2019-12-08 06:51:15 t 1 1 190332 611 0.00 2019-12-08 06:45:14 2019-12-08 06:51:30 t 1 1 190210 675 0.00 2019-12-08 00:18:09 2019-12-08 00:19:29 t 1 1 190215 611 0.00 2019-12-08 00:18:10 2019-12-08 00:22:46 t 1 1 190216 611 0.00 2019-12-08 00:22:46 2019-12-08 00:31:34 t 1 1 190217 611 0.00 2019-12-08 00:31:34 2019-12-08 00:33:22 t 1 1 190219 635 0.00 2019-12-08 00:29:42 2019-12-08 00:36:10 t 1 1 190227 607 0.00 2019-12-08 00:37:06 2019-12-08 00:55:59 t 1 1 190229 671 0.00 2019-12-08 00:55:45 2019-12-08 01:01:12 t 1 1 190230 220 0.00 2019-12-08 00:13:02 2019-12-08 01:06:25 t 1 2 190231 544 0.00 2019-12-08 01:00:18 2019-12-08 01:13:18 t 1 1 190233 514 0.00 2019-12-08 01:04:39 2019-12-08 01:18:00 t 1 1 190235 538 0.00 2019-12-08 00:21:39 2019-12-08 01:23:58 t 1 1 190237 544 0.00 2019-12-08 01:13:18 2019-12-08 01:30:52 t 1 1 190238 687 0.00 2019-12-08 01:18:09 2019-12-08 01:47:09 t 1 1 190240 514 0.00 2019-12-08 01:18:00 2019-12-08 01:50:44 t 1 1 190248 707 0.00 2019-12-08 02:05:05 2019-12-08 02:08:24 t 1 1 190250 687 0.00 2019-12-08 02:03:54 2019-12-08 02:10:20 t 1 1 190253 220 0.00 2019-12-07 22:21:59 2019-12-08 02:26:11 t 1 1 190262 694 0.00 2019-12-07 21:31:06 2019-12-08 02:50:07 t 1 1 190266 514 0.00 2019-12-08 02:50:57 2019-12-08 02:57:13 t 1 1 190268 514 0.00 2019-12-08 02:59:21 2019-12-08 03:00:23 t 1 1 190269 544 0.00 2019-12-08 02:53:02 2019-12-08 03:02:36 t 1 1 190273 692 0.00 2019-12-08 03:05:21 2019-12-08 03:09:10 t 1 1 190274 692 0.00 2019-12-08 03:09:50 2019-12-08 03:11:39 t 1 1 190277 514 0.00 2019-12-08 03:03:40 2019-12-08 03:17:34 t 1 1 190282 692 0.00 2019-12-08 03:23:36 2019-12-08 03:24:39 t 1 1 190283 692 0.00 2019-12-08 03:24:31 2019-12-08 03:25:33 t 1 1 190291 514 0.00 2019-12-08 04:11:09 2019-12-08 04:21:29 t 1 1 190292 514 0.00 2019-12-08 04:21:29 2019-12-08 04:23:12 t 1 1 190299 663 0.00 2019-12-08 04:46:41 2019-12-08 04:57:56 t 1 1 190302 675 0.00 2019-12-08 04:58:36 2019-12-08 05:13:04 t 1 1 190303 675 0.00 2019-12-08 05:13:04 2019-12-08 05:21:04 t 1 1 190311 637 0.00 2019-12-08 05:40:40 2019-12-08 05:46:55 t 1 1 190314 637 0.00 2019-12-08 05:53:25 2019-12-08 06:02:11 t 1 1 190315 722 0.00 2019-12-08 05:54:36 2019-12-08 06:02:58 t 1 1 190317 722 0.00 2019-12-08 06:05:16 2019-12-08 06:05:18 t 1 1 190323 514 0.00 2019-12-08 06:14:01 2019-12-08 06:22:40 t 1 1 190326 722 0.00 2019-12-08 06:28:51 2019-12-08 06:30:08 t 1 1 190330 622 0.00 2019-12-08 06:40:06 2019-12-08 06:43:38 t 1 1 190335 611 0.00 2019-12-08 06:51:30 2019-12-08 06:54:07 t 1 1 190336 694 0.00 2019-12-08 02:50:07 2019-12-08 06:55:29 t 1 1 190337 637 0.00 2019-12-08 06:52:11 2019-12-08 06:57:25 t 1 1 190338 679 0.00 2019-12-08 06:57:31 2019-12-08 06:59:12 t 1 1 190339 722 0.00 2019-12-08 06:58:56 2019-12-08 07:00:59 t 1 1 190340 722 0.00 2019-12-08 07:01:05 2019-12-08 07:01:12 t 1 1 190343 637 0.00 2019-12-08 06:57:25 2019-12-08 07:03:40 t 1 1 190344 700 0.00 2019-12-08 06:55:35 2019-12-08 07:04:34 t 1 1 190345 637 0.00 2019-12-08 07:03:40 2019-12-08 07:07:12 t 1 1 190346 722 0.00 2019-12-08 07:03:57 2019-12-08 07:08:35 t 1 1 190347 722 0.00 2019-12-08 07:08:41 2019-12-08 07:08:48 t 1 1 190350 722 0.00 2019-12-08 07:10:53 2019-12-08 07:11:05 t 1 1 190351 459 0.00 2019-12-08 07:09:44 2019-12-08 07:12:49 t 1 2 190352 637 0.00 2019-12-08 07:07:52 2019-12-08 07:13:21 t 1 1 190353 722 0.00 2019-12-08 07:14:06 2019-12-08 07:14:13 t 1 1 190355 722 0.00 2019-12-08 07:18:13 2019-12-08 07:18:36 t 1 1 190358 689 0.00 2019-12-08 07:25:01 2019-12-08 07:25:36 t 1 1 190359 722 0.00 2019-12-08 07:24:00 2019-12-08 07:25:37 t 1 1 190361 689 0.00 2019-12-08 07:25:45 2019-12-08 07:32:08 t 1 1 190362 689 0.00 2019-12-08 07:32:20 2019-12-08 07:32:42 t 1 1 190364 689 0.00 2019-12-08 07:34:17 2019-12-08 07:34:25 t 1 1 190365 514 0.00 2019-12-08 06:22:40 2019-12-08 07:34:45 t 1 1 190367 689 0.00 2019-12-08 07:39:23 2019-12-08 07:39:30 t 1 1 190372 611 0.00 2019-12-08 07:20:16 2019-12-08 07:46:10 t 1 1 190374 707 0.00 2019-12-08 07:44:46 2019-12-08 07:51:40 t 1 1 190375 700 0.00 2019-12-08 07:04:43 2019-12-08 07:52:42 t 1 1 190376 722 0.00 2019-12-08 07:53:28 2019-12-08 07:53:29 t 1 1 190378 675 0.00 2019-12-08 07:46:57 2019-12-08 07:54:29 t 1 1 190379 514 0.00 2019-12-08 07:35:42 2019-12-08 07:54:54 t 1 1 190382 675 0.00 2019-12-08 07:54:29 2019-12-08 08:01:03 t 1 1 190385 689 0.00 2019-12-08 08:01:48 2019-12-08 08:02:10 t 1 1 190386 689 0.00 2019-12-08 08:02:20 2019-12-08 08:02:44 t 1 1 190387 611 0.00 2019-12-08 07:46:10 2019-12-08 08:03:09 t 1 1 190388 689 0.00 2019-12-08 08:02:53 2019-12-08 08:03:15 t 1 1 190389 689 0.00 2019-12-08 08:06:07 2019-12-08 08:06:34 t 1 1 190390 734 0.00 2019-12-08 08:00:55 2019-12-08 08:07:01 t 1 1 190393 675 0.00 2019-12-08 08:01:03 2019-12-08 08:08:28 t 1 1 190395 700 0.00 2019-12-08 07:52:42 2019-12-08 08:10:06 t 1 1 190396 689 0.00 2019-12-08 08:09:02 2019-12-08 08:10:18 t 1 1 190397 689 0.00 2019-12-08 08:11:36 2019-12-08 08:12:33 t 1 1 190398 689 0.00 2019-12-08 08:12:42 2019-12-08 08:12:47 t 1 1 190399 611 0.00 2019-12-08 08:10:09 2019-12-08 08:13:24 t 1 1 190400 734 0.00 2019-12-08 08:15:07 2019-12-08 08:16:52 t 1 1 190401 689 0.00 2019-12-08 08:17:05 2019-12-08 08:17:33 t 1 1 190402 689 0.00 2019-12-08 08:19:38 2019-12-08 08:20:13 t 1 1 190404 689 0.00 2019-12-08 08:20:22 2019-12-08 08:22:39 t 1 1 190406 689 0.00 2019-12-08 08:23:18 2019-12-08 08:24:18 t 1 1 190407 694 0.00 2019-12-08 08:07:11 2019-12-08 08:24:41 t 1 1 190408 498 0.00 2019-12-08 07:55:58 2019-12-08 08:25:32 t 1 2 190411 637 0.00 2019-12-08 07:31:24 2019-12-08 08:31:17 t 1 1 190412 514 0.00 2019-12-08 08:09:34 2019-12-08 08:36:00 t 1 1 190413 611 0.00 2019-12-08 08:13:24 2019-12-08 08:36:30 t 1 1 190415 707 0.00 2019-12-08 07:58:34 2019-12-08 08:37:15 t 1 1 190417 578 0.00 2019-12-08 06:47:11 2019-12-08 08:37:53 t 1 1 190418 591 0.00 2019-12-08 08:35:56 2019-12-08 08:39:59 t 1 1 190419 514 0.00 2019-12-08 08:38:36 2019-12-08 08:40:24 t 1 1 190421 700 0.00 2019-12-08 08:10:26 2019-12-08 08:46:38 t 1 1 190422 700 0.00 2019-12-08 08:46:38 2019-12-08 08:50:18 t 1 1 190423 707 0.00 2019-12-08 08:48:06 2019-12-08 08:50:57 t 1 1 190425 611 0.00 2019-12-08 08:36:29 2019-12-08 08:54:26 t 1 1 190426 538 0.00 2019-12-08 08:51:06 2019-12-08 08:54:58 t 1 1 190427 675 0.00 2019-12-08 08:51:54 2019-12-08 08:55:46 t 1 1 190428 611 0.00 2019-12-08 08:54:26 2019-12-08 08:56:41 t 1 1 190430 591 0.00 2019-12-08 08:41:51 2019-12-08 08:59:44 t 1 1 190431 707 0.00 2019-12-08 08:59:31 2019-12-08 09:01:11 t 1 1 190432 675 0.00 2019-12-08 08:57:31 2019-12-08 09:04:20 t 1 1 190433 459 0.00 2019-12-08 08:48:27 2019-12-08 09:05:34 t 1 2 190434 568 0.00 2019-12-08 09:04:19 2019-12-08 09:05:57 t 1 1 190435 718 0.00 2019-12-08 09:07:24 2019-12-08 09:09:54 t 1 1 190211 545 0.00 2019-12-07 23:59:35 2019-12-08 00:19:43 t 1 1 190213 551 0.00 2019-12-08 00:02:15 2019-12-08 00:21:58 t 1 1 190214 679 0.00 2019-12-07 23:48:35 2019-12-08 00:22:24 t 1 1 190218 551 0.00 2019-12-08 00:21:58 2019-12-08 00:33:44 t 1 1 190222 581 0.00 2019-12-08 00:41:59 2019-12-08 00:42:05 t 1 1 190223 220 0.00 2019-12-08 00:39:38 2019-12-08 00:42:38 t 1 2 190224 551 0.00 2019-12-08 00:33:44 2019-12-08 00:49:06 t 1 1 190232 671 0.00 2019-12-08 01:12:44 2019-12-08 01:14:24 t 1 1 190241 503 0.00 2019-12-08 01:44:43 2019-12-08 01:52:56 t 1 1 190242 707 0.00 2019-12-08 01:30:09 2019-12-08 01:55:14 t 1 1 190244 514 0.00 2019-12-08 01:50:43 2019-12-08 02:00:59 t 1 1 190246 503 0.00 2019-12-08 01:55:28 2019-12-08 02:03:54 t 1 1 190251 514 0.00 2019-12-08 02:09:02 2019-12-08 02:12:38 t 1 1 190255 514 0.00 2019-12-08 02:12:38 2019-12-08 02:30:31 t 1 1 190256 514 0.00 2019-12-08 02:30:30 2019-12-08 02:31:34 t 1 1 190258 692 0.00 2019-12-08 02:33:55 2019-12-08 02:35:04 t 1 1 190259 514 0.00 2019-12-08 02:31:34 2019-12-08 02:36:35 t 1 1 190260 514 0.00 2019-12-08 02:36:35 2019-12-08 02:37:52 t 1 1 190264 514 0.00 2019-12-08 02:37:51 2019-12-08 02:50:58 t 1 1 190265 544 0.00 2019-12-08 02:42:53 2019-12-08 02:53:02 t 1 1 190272 692 0.00 2019-12-08 02:50:08 2019-12-08 03:05:21 t 1 1 190275 692 0.00 2019-12-08 03:16:59 2019-12-08 03:17:07 t 1 1 190276 692 0.00 2019-12-08 03:17:23 2019-12-08 03:17:24 t 1 1 190278 692 0.00 2019-12-08 03:16:38 2019-12-08 03:17:39 t 1 1 190279 692 0.00 2019-12-08 03:18:27 2019-12-08 03:18:40 t 1 1 190280 692 0.00 2019-12-08 03:19:42 2019-12-08 03:20:12 t 1 1 190284 574 0.00 2019-12-08 03:14:26 2019-12-08 03:25:50 t 1 1 190286 692 0.00 2019-12-08 03:29:45 2019-12-08 03:31:39 t 1 1 190294 675 0.00 2019-12-08 04:41:50 2019-12-08 04:44:15 t 1 1 190300 663 0.00 2019-12-08 04:57:56 2019-12-08 05:10:00 t 1 1 190305 675 0.00 2019-12-08 05:21:04 2019-12-08 05:32:40 t 1 1 190306 514 0.00 2019-12-08 05:30:19 2019-12-08 05:33:30 t 1 1 190312 637 0.00 2019-12-08 05:46:55 2019-12-08 05:53:25 t 1 1 190319 637 0.00 2019-12-08 06:02:11 2019-12-08 06:09:11 t 1 1 190329 516 0.00 2019-12-08 06:36:31 2019-12-08 06:41:19 t 1 1 190333 637 0.00 2019-12-08 06:14:56 2019-12-08 06:52:10 t 1 1 190334 700 0.00 2019-12-08 05:52:32 2019-12-08 06:52:31 t 1 1 190341 722 0.00 2019-12-08 07:01:17 2019-12-08 07:03:06 t 1 1 190342 722 0.00 2019-12-08 07:03:12 2019-12-08 07:03:19 t 1 1 190348 722 0.00 2019-12-08 07:09:04 2019-12-08 07:09:11 t 1 1 190349 722 0.00 2019-12-08 07:10:19 2019-12-08 07:10:31 t 1 1 190354 611 0.00 2019-12-08 07:02:52 2019-12-08 07:15:14 t 1 1 190356 637 0.00 2019-12-08 07:13:21 2019-12-08 07:21:37 t 1 1 190357 689 0.00 2019-12-08 07:19:03 2019-12-08 07:24:22 t 1 1 190360 637 0.00 2019-12-08 07:21:37 2019-12-08 07:31:24 t 1 1 190363 707 0.00 2019-12-08 07:15:49 2019-12-08 07:34:21 t 1 1 190366 635 0.00 2019-12-08 07:35:47 2019-12-08 07:37:31 t 1 1 190368 456 0.00 2019-12-08 07:41:43 2019-12-08 07:41:43 f 1 1 190369 689 0.00 2019-12-08 07:42:44 2019-12-08 07:42:59 t 1 1 190370 689 0.00 2019-12-08 07:43:10 2019-12-08 07:43:33 t 1 1 190371 689 0.00 2019-12-08 07:43:43 2019-12-08 07:44:37 t 1 1 190373 689 0.00 2019-12-08 07:49:40 2019-12-08 07:50:07 t 1 1 190377 722 0.00 2019-12-08 07:53:33 2019-12-08 07:53:52 t 1 1 190380 689 0.00 2019-12-08 07:55:07 2019-12-08 07:55:37 t 1 1 190381 689 0.00 2019-12-08 07:55:48 2019-12-08 07:56:10 t 1 1 190383 689 0.00 2019-12-08 08:00:36 2019-12-08 08:01:04 t 1 1 190384 689 0.00 2019-12-08 08:01:14 2019-12-08 08:01:37 t 1 1 190391 694 0.00 2019-12-08 06:55:29 2019-12-08 08:07:11 t 1 1 190392 611 0.00 2019-12-08 08:06:25 2019-12-08 08:08:01 t 1 1 190394 514 0.00 2019-12-08 07:54:54 2019-12-08 08:09:34 t 1 1 190403 675 0.00 2019-12-08 08:09:56 2019-12-08 08:22:15 t 1 1 190405 581 0.00 2019-12-08 08:21:08 2019-12-08 08:22:51 t 1 1 190409 625 0.00 2019-12-08 06:22:33 2019-12-08 08:28:33 t 1 1 190410 734 0.00 2019-12-08 08:23:29 2019-12-08 08:31:01 t 1 1 190414 514 0.00 2019-12-08 08:36:00 2019-12-08 08:37:14 t 1 1 190416 675 0.00 2019-12-08 08:24:06 2019-12-08 08:37:39 t 1 1 190420 675 0.00 2019-12-08 08:37:39 2019-12-08 08:40:48 t 1 1 190424 538 0.00 2019-12-08 08:30:46 2019-12-08 08:51:06 t 1 1 190429 611 0.00 2019-12-08 08:56:34 2019-12-08 08:58:10 t 1 1 190436 724 0.00 2019-12-08 09:11:31 2019-12-08 09:12:55 t 1 1 190437 625 0.00 2019-12-08 08:28:33 2019-12-08 09:13:18 t 1 1 190438 718 0.00 2019-12-08 09:12:49 2019-12-08 09:14:48 t 1 1 190439 220 0.00 2019-12-08 09:15:01 2019-12-08 09:15:38 t 1 1 190440 671 0.00 2019-12-08 08:57:12 2019-12-08 09:15:55 t 1 1 190441 694 0.00 2019-12-08 08:24:41 2019-12-08 09:17:09 t 1 1 190442 514 0.00 2019-12-08 08:40:24 2019-12-08 09:18:07 t 1 1 190443 724 0.00 2019-12-08 09:12:54 2019-12-08 09:19:02 t 1 1 190444 671 0.00 2019-12-08 09:15:55 2019-12-08 09:19:47 t 1 1 190445 591 0.00 2019-12-08 09:14:35 2019-12-08 09:20:24 t 1 1 190446 724 0.00 2019-12-08 09:19:01 2019-12-08 09:20:34 t 1 1 190447 675 0.00 2019-12-08 09:19:19 2019-12-08 09:20:41 t 1 1 190448 724 0.00 2019-12-08 09:21:00 2019-12-08 09:24:23 t 1 1 190449 709 0.00 2019-12-08 09:13:18 2019-12-08 09:24:51 t 1 1 190450 707 0.00 2019-12-08 09:07:49 2019-12-08 09:29:39 t 1 1 190451 615 0.00 2019-12-08 09:22:33 2019-12-08 09:30:09 t 1 1 190452 724 0.00 2019-12-08 09:24:38 2019-12-08 09:31:29 t 1 1 190453 578 0.00 2019-12-08 08:37:53 2019-12-08 09:32:01 t 1 1 190454 673 0.00 2019-12-08 08:20:58 2019-12-08 09:32:44 t 1 1 190455 667 0.00 2019-12-08 09:31:47 2019-12-08 09:32:50 t 1 2 190456 694 0.00 2019-12-08 09:17:09 2019-12-08 09:37:41 t 1 1 190457 538 0.00 2019-12-08 09:09:22 2019-12-08 09:39:09 t 1 1 190458 538 0.00 2019-12-08 09:39:08 2019-12-08 09:40:53 t 1 1 190459 667 0.00 2019-12-08 09:40:03 2019-12-08 09:41:07 t 1 2 190460 625 0.00 2019-12-08 09:15:33 2019-12-08 09:42:30 t 1 1 190461 675 0.00 2019-12-08 09:28:03 2019-12-08 09:43:24 t 1 1 190462 528 0.00 2019-12-08 09:32:17 2019-12-08 09:43:33 t 1 1 190463 734 0.00 2019-12-08 09:43:06 2019-12-08 09:45:17 t 1 1 190464 615 0.00 2019-12-08 09:30:09 2019-12-08 09:47:40 t 1 1 190465 528 0.00 2019-12-08 09:45:38 2019-12-08 09:47:46 t 1 1 190466 578 0.00 2019-12-08 09:32:01 2019-12-08 09:49:59 t 1 1 190467 667 0.00 2019-12-08 09:49:25 2019-12-08 09:50:33 t 1 2 190468 528 0.00 2019-12-08 09:46:01 2019-12-08 09:51:10 t 1 1 190469 625 0.00 2019-12-08 09:42:30 2019-12-08 09:51:33 t 1 1 190470 707 0.00 2019-12-08 09:54:15 2019-12-08 09:56:53 t 1 1 190471 709 0.00 2019-12-08 09:25:44 2019-12-08 09:56:59 t 1 1 190472 578 0.00 2019-12-08 09:49:59 2019-12-08 09:59:45 t 1 1 190473 694 0.00 2019-12-08 09:37:41 2019-12-08 10:00:34 t 1 1 190474 724 0.00 2019-12-08 09:34:48 2019-12-08 10:01:24 t 1 1 190479 637 0.00 2019-12-08 08:31:24 2019-12-08 10:09:46 t 1 1 190480 514 0.00 2019-12-08 09:21:01 2019-12-08 10:11:00 t 1 1 190481 724 0.00 2019-12-08 10:09:52 2019-12-08 10:11:29 t 1 1 190483 679 0.00 2019-12-08 09:53:20 2019-12-08 10:14:49 t 1 1 190484 637 0.00 2019-12-08 10:11:59 2019-12-08 10:19:50 t 1 1 190485 591 0.00 2019-12-08 09:22:25 2019-12-08 10:22:28 t 1 1 190488 724 0.00 2019-12-08 10:11:28 2019-12-08 10:28:51 t 1 1 190491 673 0.00 2019-12-08 10:16:47 2019-12-08 10:31:09 t 1 1 190492 611 0.00 2019-12-08 09:47:13 2019-12-08 10:32:14 t 1 1 190494 671 0.00 2019-12-08 10:31:25 2019-12-08 10:33:38 t 1 1 190496 637 0.00 2019-12-08 10:32:22 2019-12-08 10:35:50 t 1 1 190498 622 0.00 2019-12-08 10:04:13 2019-12-08 10:39:53 t 1 1 190500 700 0.00 2019-12-08 10:35:24 2019-12-08 10:42:48 t 1 1 190502 707 0.00 2019-12-08 10:36:55 2019-12-08 10:46:59 t 1 1 190504 675 0.00 2019-12-08 10:47:04 2019-12-08 10:52:38 t 1 1 190506 591 0.00 2019-12-08 10:22:28 2019-12-08 10:53:46 t 1 1 190507 673 0.00 2019-12-08 10:54:12 2019-12-08 10:55:31 t 1 1 190515 667 0.00 2019-12-08 11:00:37 2019-12-08 11:00:50 t 1 1 190520 591 0.00 2019-12-08 11:02:45 2019-12-08 11:06:32 t 1 1 190522 498 0.00 2019-12-08 09:39:34 2019-12-08 11:10:10 t 1 2 190524 700 0.00 2019-12-08 11:10:14 2019-12-08 11:12:41 t 1 1 190526 611 0.00 2019-12-08 11:13:09 2019-12-08 11:14:15 t 1 1 190531 637 0.00 2019-12-08 11:05:09 2019-12-08 11:20:32 t 1 1 190532 679 0.00 2019-12-08 11:15:45 2019-12-08 11:22:09 t 1 1 190533 675 0.00 2019-12-08 10:59:29 2019-12-08 11:22:33 t 1 1 190535 611 0.00 2019-12-08 11:16:37 2019-12-08 11:23:16 t 1 1 190537 675 0.00 2019-12-08 11:22:33 2019-12-08 11:26:02 t 1 1 190540 622 0.00 2019-12-08 11:01:29 2019-12-08 11:28:46 t 1 1 190542 220 0.00 2019-12-08 11:08:58 2019-12-08 11:29:53 t 1 1 190544 667 0.00 2019-12-08 11:31:07 2019-12-08 11:31:08 t 1 1 190547 667 0.00 2019-12-08 11:32:54 2019-12-08 11:33:04 t 1 1 190548 220 0.00 2019-12-08 11:29:53 2019-12-08 11:37:12 t 1 1 190550 673 0.00 2019-12-08 11:31:11 2019-12-08 11:37:47 t 1 1 190554 679 0.00 2019-12-08 11:31:45 2019-12-08 11:39:56 t 1 1 190556 622 0.00 2019-12-08 11:28:46 2019-12-08 11:41:24 t 1 1 190558 591 0.00 2019-12-08 11:14:02 2019-12-08 11:41:46 t 1 1 190561 667 0.00 2019-12-08 11:48:35 2019-12-08 11:48:39 t 1 1 190567 687 0.00 2019-12-08 11:52:52 2019-12-08 11:54:23 t 1 1 190576 679 0.00 2019-12-08 11:49:17 2019-12-08 12:05:57 t 1 1 190579 622 0.00 2019-12-08 12:03:22 2019-12-08 12:12:17 t 1 1 190581 481 0.00 2019-12-08 07:29:03 2019-12-08 12:13:42 t 1 1 190583 562 0.00 2019-12-08 12:08:13 2019-12-08 12:14:33 t 1 1 190592 611 0.00 2019-12-08 12:17:14 2019-12-08 12:20:29 t 1 1 190595 724 0.00 2019-12-08 12:23:48 2019-12-08 12:24:49 t 1 1 190598 220 0.00 2019-12-08 12:23:12 2019-12-08 12:25:43 t 1 2 190604 675 0.00 2019-12-08 12:33:44 2019-12-08 12:35:08 t 1 1 190605 578 0.00 2019-12-08 12:17:10 2019-12-08 12:38:37 t 1 1 190606 591 0.00 2019-12-08 11:53:12 2019-12-08 12:39:48 t 1 1 190608 734 0.00 2019-12-08 12:35:03 2019-12-08 12:41:17 t 1 1 190609 718 0.00 2019-12-08 12:28:47 2019-12-08 12:42:47 t 1 1 190612 503 0.00 2019-12-08 12:40:23 2019-12-08 12:44:53 t 1 1 190613 707 0.00 2019-12-08 12:14:22 2019-12-08 12:45:35 t 1 1 190617 528 0.00 2019-12-08 12:48:26 2019-12-08 12:50:26 t 1 1 190619 679 0.00 2019-12-08 12:50:50 2019-12-08 12:53:32 t 1 1 190621 544 0.00 2019-12-08 12:44:38 2019-12-08 12:54:05 t 1 1 190623 679 0.00 2019-12-08 12:55:35 2019-12-08 12:55:45 t 1 1 190625 691 0.00 2019-12-08 12:56:10 2019-12-08 12:56:28 t 1 1 190628 707 0.00 2019-12-08 12:49:05 2019-12-08 12:57:34 t 1 1 190635 637 0.00 2019-12-08 12:59:09 2019-12-08 13:00:09 t 1 1 190640 679 0.00 2019-12-08 13:03:08 2019-12-08 13:03:18 t 1 1 190641 679 0.00 2019-12-08 13:03:39 2019-12-08 13:03:51 t 1 1 190644 679 0.00 2019-12-08 13:05:22 2019-12-08 13:05:42 t 1 1 190645 707 0.00 2019-12-08 13:04:41 2019-12-08 13:06:44 t 1 1 190655 627 0.00 2019-12-08 13:13:23 2019-12-08 13:13:35 t 1 1 190658 679 0.00 2019-12-08 13:11:44 2019-12-08 13:14:44 t 1 1 190662 691 0.00 2019-12-08 13:14:54 2019-12-08 13:16:01 t 1 1 190665 514 0.00 2019-12-08 12:09:31 2019-12-08 13:17:14 t 1 1 190668 679 0.00 2019-12-08 13:18:03 2019-12-08 13:18:15 t 1 1 190669 625 0.00 2019-12-08 12:05:30 2019-12-08 13:18:19 t 1 1 190673 679 0.00 2019-12-08 13:20:07 2019-12-08 13:20:18 t 1 1 190676 679 0.00 2019-12-08 13:22:05 2019-12-08 13:22:17 t 1 1 190684 578 0.00 2019-12-08 12:38:37 2019-12-08 13:25:48 t 1 1 190685 679 0.00 2019-12-08 13:25:56 2019-12-08 13:26:05 t 1 1 190686 679 0.00 2019-12-08 13:26:50 2019-12-08 13:27:03 t 1 1 190687 679 0.00 2019-12-08 13:27:57 2019-12-08 13:28:08 t 1 1 190688 637 0.00 2019-12-08 13:23:55 2019-12-08 13:28:58 t 1 1 190690 622 0.00 2019-12-08 12:20:15 2019-12-08 13:29:54 t 1 1 190692 679 0.00 2019-12-08 13:29:33 2019-12-08 13:33:53 t 1 1 190694 485 0.00 2019-12-08 13:22:30 2019-12-08 13:35:50 t 1 1 190696 514 0.00 2019-12-08 13:19:17 2019-12-08 13:37:52 t 1 1 190702 673 0.00 2019-12-08 12:58:03 2019-12-08 13:54:14 t 1 1 190706 700 0.00 2019-12-08 13:55:57 2019-12-08 13:57:00 t 1 1 190707 671 0.00 2019-12-08 13:53:15 2019-12-08 13:58:58 t 1 1 190710 700 0.00 2019-12-08 13:57:00 2019-12-08 14:02:30 t 1 1 190712 633 0.00 2019-12-08 14:05:15 2019-12-08 14:05:20 t 1 1 190715 622 0.00 2019-12-08 13:56:14 2019-12-08 14:10:06 t 1 1 190717 654 0.00 2019-12-08 14:11:53 2019-12-08 14:12:04 t 1 1 190718 654 0.00 2019-12-08 14:12:04 2019-12-08 14:13:07 t 1 1 190721 514 0.00 2019-12-08 13:37:52 2019-12-08 14:14:13 t 1 1 190722 503 0.00 2019-12-08 14:07:53 2019-12-08 14:15:16 t 1 1 190725 673 0.00 2019-12-08 14:05:10 2019-12-08 14:16:26 t 1 1 190726 503 0.00 2019-12-08 14:15:16 2019-12-08 14:17:58 t 1 1 190730 673 0.00 2019-12-08 14:16:26 2019-12-08 14:25:07 t 1 1 190732 649 0.00 2019-12-08 14:06:49 2019-12-08 14:25:44 t 1 1 190737 635 0.00 2019-12-08 14:23:13 2019-12-08 14:31:06 t 1 1 190740 679 0.00 2019-12-08 14:14:04 2019-12-08 14:32:47 t 1 1 190743 671 0.00 2019-12-08 14:31:45 2019-12-08 14:34:44 t 1 1 190744 514 0.00 2019-12-08 14:19:40 2019-12-08 14:35:19 t 1 1 190747 516 0.00 2019-12-08 14:40:37 2019-12-08 14:43:52 t 1 1 190751 220 0.00 2019-12-08 14:24:22 2019-12-08 14:49:45 t 1 2 190757 654 0.00 2019-12-08 14:52:25 2019-12-08 14:56:56 t 1 1 190759 611 0.00 2019-12-08 14:50:27 2019-12-08 14:59:56 t 1 1 190760 514 0.00 2019-12-08 14:35:57 2019-12-08 15:00:27 t 1 1 190762 673 0.00 2019-12-08 14:52:52 2019-12-08 15:02:19 t 1 1 190765 645 0.00 2019-12-08 15:05:05 2019-12-08 15:05:38 t 1 1 190774 683 0.00 2019-12-08 15:09:09 2019-12-08 15:16:45 t 1 1 190475 675 0.00 2019-12-08 10:00:40 2019-12-08 10:01:54 t 1 1 190489 707 0.00 2019-12-08 10:05:23 2019-12-08 10:29:00 t 1 1 190493 615 0.00 2019-12-08 10:27:29 2019-12-08 10:33:15 t 1 1 190495 673 0.00 2019-12-08 10:32:29 2019-12-08 10:34:08 t 1 1 190509 667 0.00 2019-12-08 10:44:53 2019-12-08 10:56:59 t 1 1 190511 611 0.00 2019-12-08 10:54:03 2019-12-08 10:58:54 t 1 1 190513 694 0.00 2019-12-08 10:00:33 2019-12-08 10:59:23 t 1 1 190519 667 0.00 2019-12-08 11:06:01 2019-12-08 11:06:09 t 1 1 190521 679 0.00 2019-12-08 10:59:26 2019-12-08 11:09:28 t 1 1 190523 656 0.00 2019-12-08 09:30:33 2019-12-08 11:10:22 t 1 1 190538 667 0.00 2019-12-08 11:27:03 2019-12-08 11:27:31 t 1 1 190541 667 0.00 2019-12-08 11:28:09 2019-12-08 11:29:29 t 1 1 190543 625 0.00 2019-12-08 09:53:42 2019-12-08 11:30:28 t 1 1 190545 615 0.00 2019-12-08 11:08:55 2019-12-08 11:31:11 t 1 1 190546 679 0.00 2019-12-08 11:22:09 2019-12-08 11:31:45 t 1 1 190555 667 0.00 2019-12-08 11:38:29 2019-12-08 11:40:25 t 1 1 190560 622 0.00 2019-12-08 11:41:24 2019-12-08 11:48:36 t 1 1 190566 656 0.00 2019-12-08 11:10:22 2019-12-08 11:53:05 t 1 1 190572 637 0.00 2019-12-08 11:28:53 2019-12-08 12:03:07 t 1 1 190574 544 0.00 2019-12-08 11:54:29 2019-12-08 12:04:29 t 1 1 190578 707 0.00 2019-12-08 12:06:17 2019-12-08 12:10:56 t 1 1 190580 667 0.00 2019-12-08 12:12:47 2019-12-08 12:13:10 t 1 1 190584 667 0.00 2019-12-08 12:15:24 2019-12-08 12:15:35 t 1 1 190588 637 0.00 2019-12-08 12:04:13 2019-12-08 12:18:36 t 1 1 190590 673 0.00 2019-12-08 12:17:36 2019-12-08 12:19:21 t 1 1 190599 498 0.00 2019-12-08 11:31:51 2019-12-08 12:26:10 t 1 2 190602 667 0.00 2019-12-08 12:30:03 2019-12-08 12:30:45 t 1 1 190603 516 0.00 2019-12-08 12:26:25 2019-12-08 12:33:05 t 1 1 190607 503 0.00 2019-12-08 12:28:26 2019-12-08 12:40:23 t 1 1 190610 538 0.00 2019-12-08 12:10:27 2019-12-08 12:42:52 t 1 1 190611 544 0.00 2019-12-08 12:30:44 2019-12-08 12:44:38 t 1 1 190615 528 0.00 2019-12-08 12:46:14 2019-12-08 12:47:40 t 1 1 190618 516 0.00 2019-12-08 12:47:31 2019-12-08 12:52:39 t 1 1 190622 679 0.00 2019-12-08 12:54:34 2019-12-08 12:54:44 t 1 1 190627 691 0.00 2019-12-08 12:56:28 2019-12-08 12:56:52 t 1 1 190630 691 0.00 2019-12-08 12:56:52 2019-12-08 12:58:01 t 1 1 190632 691 0.00 2019-12-08 12:58:01 2019-12-08 12:59:11 t 1 1 190633 679 0.00 2019-12-08 12:59:38 2019-12-08 12:59:47 t 1 1 190638 679 0.00 2019-12-08 13:01:38 2019-12-08 13:01:48 t 1 1 190639 679 0.00 2019-12-08 13:02:40 2019-12-08 13:02:50 t 1 1 190646 671 0.00 2019-12-08 13:01:27 2019-12-08 13:06:48 t 1 1 190649 481 0.00 2019-12-08 12:13:42 2019-12-08 13:08:33 t 1 1 190650 679 0.00 2019-12-08 13:08:42 2019-12-08 13:08:51 t 1 1 190651 679 0.00 2019-12-08 13:09:43 2019-12-08 13:09:53 t 1 1 190656 687 0.00 2019-12-08 13:12:35 2019-12-08 13:14:09 t 1 1 190659 564 0.00 2019-12-08 11:33:07 2019-12-08 13:14:46 t 1 1 190660 691 0.00 2019-12-08 13:14:36 2019-12-08 13:14:54 t 1 1 190663 696 0.00 2019-12-08 13:13:07 2019-12-08 13:16:14 t 1 1 190664 679 0.00 2019-12-08 13:16:47 2019-12-08 13:16:56 t 1 1 190666 490 0.00 2019-12-08 13:10:52 2019-12-08 13:17:19 t 1 1 190667 679 0.00 2019-12-08 13:17:48 2019-12-08 13:17:57 t 1 1 190671 514 0.00 2019-12-08 13:17:14 2019-12-08 13:19:17 t 1 1 190672 679 0.00 2019-12-08 13:19:50 2019-12-08 13:19:59 t 1 1 190674 679 0.00 2019-12-08 13:20:28 2019-12-08 13:20:49 t 1 1 190675 679 0.00 2019-12-08 13:21:44 2019-12-08 13:21:57 t 1 1 190679 679 0.00 2019-12-08 13:23:56 2019-12-08 13:24:07 t 1 1 190681 687 0.00 2019-12-08 13:22:35 2019-12-08 13:25:00 t 1 1 190689 679 0.00 2019-12-08 13:28:57 2019-12-08 13:29:09 t 1 1 190691 637 0.00 2019-12-08 13:29:36 2019-12-08 13:33:01 t 1 1 190699 622 0.00 2019-12-08 13:36:19 2019-12-08 13:44:18 t 1 1 190703 625 0.00 2019-12-08 13:18:19 2019-12-08 13:55:27 t 1 1 190704 700 0.00 2019-12-08 13:38:36 2019-12-08 13:55:57 t 1 1 190709 220 0.00 2019-12-08 13:31:52 2019-12-08 14:01:23 t 1 2 190711 673 0.00 2019-12-08 13:54:14 2019-12-08 14:05:10 t 1 1 190716 654 0.00 2019-12-08 14:06:46 2019-12-08 14:11:54 t 1 1 190720 679 0.00 2019-12-08 13:49:09 2019-12-08 14:14:04 t 1 1 190723 591 0.00 2019-12-08 14:11:05 2019-12-08 14:15:19 t 1 1 190724 654 0.00 2019-12-08 14:14:02 2019-12-08 14:15:49 t 1 1 190727 220 0.00 2019-12-08 14:12:42 2019-12-08 14:21:05 t 1 2 190728 516 0.00 2019-12-08 14:24:06 2019-12-08 14:24:13 t 1 1 190729 578 0.00 2019-12-08 14:08:43 2019-12-08 14:24:28 t 1 1 190731 607 0.00 2019-12-08 14:23:15 2019-12-08 14:25:30 t 1 1 190734 538 0.00 2019-12-08 14:24:07 2019-12-08 14:27:15 t 1 1 190736 654 0.00 2019-12-08 14:28:37 2019-12-08 14:30:25 t 1 1 190739 671 0.00 2019-12-08 14:25:34 2019-12-08 14:31:45 t 1 1 190741 654 0.00 2019-12-08 14:30:25 2019-12-08 14:32:55 t 1 1 190746 673 0.00 2019-12-08 14:33:17 2019-12-08 14:40:05 t 1 1 190749 625 0.00 2019-12-08 13:55:48 2019-12-08 14:46:24 t 1 1 190752 656 0.00 2019-12-08 11:53:05 2019-12-08 14:49:57 t 1 1 190753 654 0.00 2019-12-08 14:50:53 2019-12-08 14:51:46 t 1 1 190754 654 0.00 2019-12-08 14:51:46 2019-12-08 14:52:25 t 1 1 190756 516 0.00 2019-12-08 14:55:37 2019-12-08 14:56:39 t 1 1 190761 675 0.00 2019-12-08 14:46:02 2019-12-08 15:01:02 t 1 1 190763 645 0.00 2019-12-08 15:02:41 2019-12-08 15:05:06 t 1 1 190764 637 0.00 2019-12-08 13:50:58 2019-12-08 15:05:20 t 1 1 190766 220 0.00 2019-12-08 14:49:58 2019-12-08 15:06:21 t 1 2 190768 645 0.00 2019-12-08 15:05:37 2019-12-08 15:06:38 t 1 1 190771 673 0.00 2019-12-08 15:10:27 2019-12-08 15:15:28 t 1 1 190773 645 0.00 2019-12-08 15:10:50 2019-12-08 15:16:26 t 1 1 190775 654 0.00 2019-12-08 15:06:24 2019-12-08 15:16:49 t 1 1 190777 625 0.00 2019-12-08 14:46:45 2019-12-08 15:20:45 t 1 1 190781 654 0.00 2019-12-08 15:24:04 2019-12-08 15:24:16 t 1 1 190782 645 0.00 2019-12-08 15:23:31 2019-12-08 15:26:23 t 1 1 190788 654 0.00 2019-12-08 15:24:20 2019-12-08 15:37:14 t 1 1 190789 645 0.00 2019-12-08 15:38:25 2019-12-08 15:39:28 t 1 1 190796 637 0.00 2019-12-08 15:43:53 2019-12-08 15:45:07 t 1 1 190798 645 0.00 2019-12-08 15:46:47 2019-12-08 15:48:42 t 1 1 190799 622 0.00 2019-12-08 15:42:33 2019-12-08 15:51:29 t 1 1 190800 637 0.00 2019-12-08 15:47:19 2019-12-08 15:51:45 t 1 1 190803 645 0.00 2019-12-08 15:54:26 2019-12-08 15:56:22 t 1 1 190804 673 0.00 2019-12-08 15:44:23 2019-12-08 15:57:41 t 1 1 190805 637 0.00 2019-12-08 15:51:45 2019-12-08 15:57:50 t 1 1 190807 707 0.00 2019-12-08 15:43:17 2019-12-08 15:58:32 t 1 1 190810 654 0.00 2019-12-08 15:54:22 2019-12-08 16:03:58 t 1 1 190811 581 0.00 2019-12-08 15:26:41 2019-12-08 16:05:13 t 1 1 190812 581 0.00 2019-12-08 16:05:13 2019-12-08 16:06:55 t 1 1 190816 707 0.00 2019-12-08 16:02:55 2019-12-08 16:10:16 t 1 1 190476 673 0.00 2019-12-08 09:32:44 2019-12-08 10:02:02 t 1 1 190477 544 0.00 2019-12-08 10:02:44 2019-12-08 10:04:26 t 1 1 190478 724 0.00 2019-12-08 10:01:20 2019-12-08 10:08:09 t 1 1 190482 637 0.00 2019-12-08 10:09:46 2019-12-08 10:11:59 t 1 1 190486 615 0.00 2019-12-08 10:08:57 2019-12-08 10:27:29 t 1 1 190487 637 0.00 2019-12-08 10:20:33 2019-12-08 10:28:29 t 1 1 190490 679 0.00 2019-12-08 10:14:49 2019-12-08 10:30:29 t 1 1 190497 675 0.00 2019-12-08 10:37:48 2019-12-08 10:39:28 t 1 1 190499 679 0.00 2019-12-08 10:41:49 2019-12-08 10:41:50 t 1 1 190501 667 0.00 2019-12-08 10:42:31 2019-12-08 10:44:54 t 1 1 190503 700 0.00 2019-12-08 10:43:02 2019-12-08 10:52:36 t 1 1 190505 709 0.00 2019-12-08 09:58:23 2019-12-08 10:53:22 t 1 1 190508 637 0.00 2019-12-08 10:36:20 2019-12-08 10:56:33 t 1 1 190510 667 0.00 2019-12-08 10:58:38 2019-12-08 10:58:44 t 1 1 190512 637 0.00 2019-12-08 10:56:44 2019-12-08 10:59:16 t 1 1 190514 679 0.00 2019-12-08 10:41:54 2019-12-08 10:59:26 t 1 1 190516 622 0.00 2019-12-08 10:48:31 2019-12-08 11:01:29 t 1 1 190517 637 0.00 2019-12-08 11:01:41 2019-12-08 11:03:46 t 1 1 190518 637 0.00 2019-12-08 11:04:00 2019-12-08 11:05:00 t 1 1 190525 611 0.00 2019-12-08 10:58:54 2019-12-08 11:13:10 t 1 1 190527 673 0.00 2019-12-08 11:08:01 2019-12-08 11:14:53 t 1 1 190528 679 0.00 2019-12-08 11:09:28 2019-12-08 11:15:45 t 1 1 190529 611 0.00 2019-12-08 11:14:14 2019-12-08 11:16:26 t 1 1 190530 667 0.00 2019-12-08 11:16:27 2019-12-08 11:17:00 t 1 1 190534 673 0.00 2019-12-08 11:21:08 2019-12-08 11:23:00 t 1 1 190536 220 0.00 2019-12-08 11:12:24 2019-12-08 11:23:47 t 1 2 190539 637 0.00 2019-12-08 11:20:31 2019-12-08 11:28:07 t 1 1 190549 667 0.00 2019-12-08 11:36:19 2019-12-08 11:37:46 t 1 1 190551 581 0.00 2019-12-08 11:00:49 2019-12-08 11:38:27 t 1 1 190552 611 0.00 2019-12-08 11:37:07 2019-12-08 11:39:09 t 1 1 190553 671 0.00 2019-12-08 11:29:17 2019-12-08 11:39:50 t 1 1 190557 611 0.00 2019-12-08 11:39:09 2019-12-08 11:41:29 t 1 1 190559 625 0.00 2019-12-08 11:30:27 2019-12-08 11:46:33 t 1 1 190562 679 0.00 2019-12-08 11:39:56 2019-12-08 11:49:17 t 1 1 190563 673 0.00 2019-12-08 11:39:22 2019-12-08 11:49:48 t 1 1 190564 675 0.00 2019-12-08 11:49:14 2019-12-08 11:50:37 t 1 1 190565 622 0.00 2019-12-08 11:48:36 2019-12-08 11:52:46 t 1 1 190568 707 0.00 2019-12-08 10:50:09 2019-12-08 11:55:10 t 1 1 190569 687 0.00 2019-12-08 11:55:40 2019-12-08 11:57:21 t 1 1 190570 724 0.00 2019-12-08 11:46:52 2019-12-08 12:01:04 t 1 1 190571 667 0.00 2019-12-08 12:00:50 2019-12-08 12:02:25 t 1 1 190573 637 0.00 2019-12-08 12:03:06 2019-12-08 12:04:13 t 1 1 190575 625 0.00 2019-12-08 11:46:33 2019-12-08 12:05:30 t 1 1 190577 514 0.00 2019-12-08 10:11:00 2019-12-08 12:09:31 t 1 1 190582 562 0.00 2019-12-08 12:14:25 2019-12-08 12:14:25 f 1 1 190585 724 0.00 2019-12-08 12:08:17 2019-12-08 12:15:48 t 1 1 190586 578 0.00 2019-12-08 09:59:45 2019-12-08 12:17:10 t 1 1 190587 675 0.00 2019-12-08 12:15:55 2019-12-08 12:17:48 t 1 1 190589 724 0.00 2019-12-08 12:17:42 2019-12-08 12:19:14 t 1 1 190591 622 0.00 2019-12-08 12:12:18 2019-12-08 12:20:15 t 1 1 190593 724 0.00 2019-12-08 12:19:14 2019-12-08 12:20:35 t 1 1 190594 718 0.00 2019-12-08 12:20:31 2019-12-08 12:23:20 t 1 1 190596 637 0.00 2019-12-08 12:19:10 2019-12-08 12:25:14 t 1 1 190597 503 0.00 2019-12-08 12:22:36 2019-12-08 12:25:36 t 1 1 190600 667 0.00 2019-12-08 12:21:49 2019-12-08 12:30:03 t 1 1 190601 544 0.00 2019-12-08 12:18:40 2019-12-08 12:30:44 t 1 1 190614 516 0.00 2019-12-08 12:47:13 2019-12-08 12:47:21 t 1 1 190616 637 0.00 2019-12-08 12:25:14 2019-12-08 12:50:24 t 1 1 190620 679 0.00 2019-12-08 12:53:39 2019-12-08 12:53:48 t 1 1 190624 691 0.00 2019-12-08 12:55:38 2019-12-08 12:56:10 t 1 1 190626 679 0.00 2019-12-08 12:56:36 2019-12-08 12:56:46 t 1 1 190629 679 0.00 2019-12-08 12:57:36 2019-12-08 12:57:49 t 1 1 190631 679 0.00 2019-12-08 12:58:07 2019-12-08 12:58:39 t 1 1 190634 516 0.00 2019-12-08 12:56:27 2019-12-08 13:00:09 t 1 1 190636 679 0.00 2019-12-08 13:00:38 2019-12-08 13:00:53 t 1 1 190637 691 0.00 2019-12-08 13:00:31 2019-12-08 13:01:36 t 1 1 190642 718 0.00 2019-12-08 12:54:35 2019-12-08 13:04:33 t 1 1 190643 679 0.00 2019-12-08 13:04:40 2019-12-08 13:04:50 t 1 1 190647 679 0.00 2019-12-08 13:06:42 2019-12-08 13:06:56 t 1 1 190648 679 0.00 2019-12-08 13:07:42 2019-12-08 13:07:55 t 1 1 190652 679 0.00 2019-12-08 13:10:09 2019-12-08 13:10:20 t 1 1 190653 679 0.00 2019-12-08 13:10:44 2019-12-08 13:10:54 t 1 1 190654 724 0.00 2019-12-08 12:29:51 2019-12-08 13:12:42 t 1 1 190657 691 0.00 2019-12-08 13:14:15 2019-12-08 13:14:36 t 1 1 190661 679 0.00 2019-12-08 13:15:47 2019-12-08 13:16:01 t 1 1 190670 679 0.00 2019-12-08 13:18:28 2019-12-08 13:18:44 t 1 1 190677 679 0.00 2019-12-08 13:22:27 2019-12-08 13:22:51 t 1 1 190678 637 0.00 2019-12-08 13:11:38 2019-12-08 13:23:55 t 1 1 190680 481 0.00 2019-12-08 13:08:33 2019-12-08 13:24:16 t 1 1 190682 679 0.00 2019-12-08 13:24:55 2019-12-08 13:25:05 t 1 1 190683 631 0.00 2019-12-08 13:24:24 2019-12-08 13:25:33 t 1 1 190693 581 0.00 2019-12-08 13:24:33 2019-12-08 13:34:49 t 1 1 190695 622 0.00 2019-12-08 13:29:54 2019-12-08 13:36:19 t 1 1 190697 637 0.00 2019-12-08 13:34:53 2019-12-08 13:42:00 t 1 1 190698 544 0.00 2019-12-08 13:29:25 2019-12-08 13:43:32 t 1 1 190700 591 0.00 2019-12-08 12:39:48 2019-12-08 13:50:58 t 1 1 190701 516 0.00 2019-12-08 13:38:27 2019-12-08 13:53:08 t 1 1 190705 622 0.00 2019-12-08 13:44:18 2019-12-08 13:56:14 t 1 1 190708 516 0.00 2019-12-08 13:59:40 2019-12-08 14:01:05 t 1 1 190713 564 0.00 2019-12-08 13:14:46 2019-12-08 14:07:28 t 1 1 190714 578 0.00 2019-12-08 13:25:48 2019-12-08 14:08:43 t 1 1 190719 622 0.00 2019-12-08 14:10:06 2019-12-08 14:13:55 t 1 1 190733 611 0.00 2019-12-08 14:22:32 2019-12-08 14:26:34 t 1 1 190735 654 0.00 2019-12-08 14:20:47 2019-12-08 14:28:38 t 1 1 190738 459 0.00 2019-12-08 14:11:47 2019-12-08 14:31:22 t 1 2 190742 673 0.00 2019-12-08 14:25:07 2019-12-08 14:33:17 t 1 1 190745 675 0.00 2019-12-08 14:31:01 2019-12-08 14:38:53 t 1 1 190748 611 0.00 2019-12-08 14:26:44 2019-12-08 14:44:43 t 1 1 190750 700 0.00 2019-12-08 14:03:52 2019-12-08 14:49:22 t 1 1 190755 673 0.00 2019-12-08 14:40:05 2019-12-08 14:52:52 t 1 1 190758 485 0.00 2019-12-08 14:48:17 2019-12-08 14:57:07 t 1 1 190767 654 0.00 2019-12-08 14:56:55 2019-12-08 15:06:24 t 1 1 190769 673 0.00 2019-12-08 15:02:19 2019-12-08 15:10:27 t 1 1 190770 544 0.00 2019-12-08 13:43:52 2019-12-08 15:11:15 t 1 1 190772 220 0.00 2019-12-08 14:56:23 2019-12-08 15:15:46 t 1 2 190779 654 0.00 2019-12-08 15:16:49 2019-12-08 15:21:55 t 1 1 190785 645 0.00 2019-12-08 15:28:49 2019-12-08 15:30:08 t 1 1 190776 645 0.00 2019-12-08 15:16:45 2019-12-08 15:18:54 t 1 1 190778 637 0.00 2019-12-08 15:05:42 2019-12-08 15:21:21 t 1 1 190780 654 0.00 2019-12-08 15:21:55 2019-12-08 15:23:18 t 1 1 190783 673 0.00 2019-12-08 15:17:29 2019-12-08 15:28:46 t 1 1 190784 514 0.00 2019-12-08 15:05:56 2019-12-08 15:29:17 t 1 1 190790 696 0.00 2019-12-08 15:41:45 2019-12-08 15:41:53 t 1 1 190793 637 0.00 2019-12-08 15:22:26 2019-12-08 15:43:53 t 1 1 190795 654 0.00 2019-12-08 15:43:06 2019-12-08 15:44:50 t 1 1 190801 654 0.00 2019-12-08 15:44:50 2019-12-08 15:54:22 t 1 1 190802 544 0.00 2019-12-08 15:11:15 2019-12-08 15:55:04 t 1 1 190808 637 0.00 2019-12-08 15:57:49 2019-12-08 15:59:45 t 1 1 190809 625 0.00 2019-12-08 15:53:12 2019-12-08 16:03:50 t 1 1 190817 654 0.00 2019-12-08 16:04:10 2019-12-08 16:12:10 t 1 1 190818 675 0.00 2019-12-08 16:10:47 2019-12-08 16:13:08 t 1 1 190820 591 0.00 2019-12-08 14:54:20 2019-12-08 16:14:12 t 1 1 190821 654 0.00 2019-12-08 16:12:09 2019-12-08 16:15:45 t 1 1 190825 625 0.00 2019-12-08 16:03:50 2019-12-08 16:18:43 t 1 1 190827 673 0.00 2019-12-08 15:57:41 2019-12-08 16:18:59 t 1 1 190834 675 0.00 2019-12-08 16:17:41 2019-12-08 16:25:08 t 1 1 190837 622 0.00 2019-12-08 16:19:26 2019-12-08 16:28:49 t 1 1 190840 459 0.00 2019-12-08 16:25:32 2019-12-08 16:31:37 t 1 2 190842 645 0.00 2019-12-08 16:33:26 2019-12-08 16:34:33 t 1 1 190844 654 0.00 2019-12-08 16:26:14 2019-12-08 16:35:07 t 1 1 190846 622 0.00 2019-12-08 16:28:49 2019-12-08 16:36:39 t 1 1 190847 654 0.00 2019-12-08 16:35:07 2019-12-08 16:38:05 t 1 1 190848 220 0.00 2019-12-08 16:41:31 2019-12-08 16:42:42 t 1 1 190851 700 0.00 2019-12-08 16:43:12 2019-12-08 16:43:43 t 1 1 190852 654 0.00 2019-12-08 16:39:33 2019-12-08 16:45:06 t 1 1 190853 700 0.00 2019-12-08 16:43:43 2019-12-08 16:46:24 t 1 1 190859 675 0.00 2019-12-08 16:48:10 2019-12-08 16:51:02 t 1 1 190860 591 0.00 2019-12-08 16:51:25 2019-12-08 16:52:29 t 1 1 190862 578 0.00 2019-12-08 14:24:28 2019-12-08 16:53:04 t 1 1 190866 675 0.00 2019-12-08 16:55:42 2019-12-08 16:57:17 t 1 1 190867 637 0.00 2019-12-08 16:56:23 2019-12-08 16:59:04 t 1 1 190868 645 0.00 2019-12-08 16:57:12 2019-12-08 16:59:38 t 1 1 190875 220 0.00 2019-12-08 16:53:26 2019-12-08 17:04:03 t 1 1 190876 645 0.00 2019-12-08 17:03:50 2019-12-08 17:05:09 t 1 1 190881 700 0.00 2019-12-08 17:09:06 2019-12-08 17:10:07 t 1 1 190884 656 0.00 2019-12-08 14:49:57 2019-12-08 17:10:50 t 1 1 190885 675 0.00 2019-12-08 17:09:42 2019-12-08 17:11:31 t 1 1 190888 673 0.00 2019-12-08 16:48:24 2019-12-08 17:12:56 t 1 1 190902 578 0.00 2019-12-08 17:13:48 2019-12-08 17:27:34 t 1 1 190908 591 0.00 2019-12-08 16:53:16 2019-12-08 17:32:25 t 1 1 190910 528 0.00 2019-12-08 17:24:56 2019-12-08 17:34:44 t 1 1 190914 645 0.00 2019-12-08 17:36:41 2019-12-08 17:37:57 t 1 1 190915 675 0.00 2019-12-08 17:30:29 2019-12-08 17:38:00 t 1 1 190920 544 0.00 2019-12-08 17:38:46 2019-12-08 17:43:33 t 1 1 190925 696 0.00 2019-12-08 17:48:31 2019-12-08 17:50:16 t 1 1 190926 538 0.00 2019-12-08 17:26:51 2019-12-08 17:51:12 t 1 1 190927 611 0.00 2019-12-08 17:41:54 2019-12-08 17:52:25 t 1 1 190930 687 0.00 2019-12-08 17:48:23 2019-12-08 17:55:54 t 1 1 190941 687 0.00 2019-12-08 17:55:54 2019-12-08 18:05:26 t 1 1 190942 545 0.00 2019-12-08 18:04:38 2019-12-08 18:05:57 t 1 1 190945 611 0.00 2019-12-08 18:04:55 2019-12-08 18:08:22 t 1 1 190949 481 0.00 2019-12-08 17:25:55 2019-12-08 18:12:04 t 1 1 190951 611 0.00 2019-12-08 18:08:21 2019-12-08 18:13:18 t 1 1 190955 498 0.00 2019-12-08 18:11:51 2019-12-08 18:15:51 t 1 2 190956 528 0.00 2019-12-08 17:37:59 2019-12-08 18:16:40 t 1 1 190961 679 0.00 2019-12-08 18:19:35 2019-12-08 18:21:14 t 1 1 190967 528 0.00 2019-12-08 18:26:27 2019-12-08 18:26:34 t 1 1 190969 538 0.00 2019-12-08 18:08:59 2019-12-08 18:28:49 t 1 1 190970 514 0.00 2019-12-08 17:13:16 2019-12-08 18:29:42 t 1 1 190972 722 0.00 2019-12-08 18:25:51 2019-12-08 18:31:29 t 1 1 190974 724 0.00 2019-12-08 18:39:01 2019-12-08 18:41:08 t 1 1 190976 538 0.00 2019-12-08 18:30:05 2019-12-08 18:41:53 t 1 1 190977 645 0.00 2019-12-08 18:43:28 2019-12-08 18:44:46 t 1 1 190978 622 0.00 2019-12-08 18:06:49 2019-12-08 18:45:58 t 1 1 190980 545 0.00 2019-12-08 18:05:57 2019-12-08 18:47:40 t 1 1 190982 707 0.00 2019-12-08 18:42:28 2019-12-08 18:47:52 t 1 1 190983 722 0.00 2019-12-08 18:47:50 2019-12-08 18:51:12 t 1 1 190988 591 0.00 2019-12-08 18:43:39 2019-12-08 18:54:06 t 1 1 190992 722 0.00 2019-12-08 18:56:36 2019-12-08 18:57:00 t 1 1 190994 625 0.00 2019-12-08 18:56:14 2019-12-08 18:59:00 t 1 1 190996 722 0.00 2019-12-08 18:57:05 2019-12-08 19:00:23 t 1 1 190997 718 0.00 2019-12-08 18:44:15 2019-12-08 19:01:38 t 1 1 191001 499 0.00 2019-12-08 19:00:12 2019-12-08 19:06:27 t 1 1 191003 625 0.00 2019-12-08 19:00:28 2019-12-08 19:07:57 t 1 1 191005 645 0.00 2019-12-08 19:07:57 2019-12-08 19:09:38 t 1 1 191009 691 0.00 2019-12-08 19:14:23 2019-12-08 19:14:46 t 1 1 191013 691 0.00 2019-12-08 19:14:46 2019-12-08 19:19:09 t 1 1 191015 722 0.00 2019-12-08 19:10:54 2019-12-08 19:21:16 t 1 1 191020 700 0.00 2019-12-08 19:25:48 2019-12-08 19:27:36 t 1 1 191022 654 0.00 2019-12-08 19:17:38 2019-12-08 19:27:55 t 1 1 191024 654 0.00 2019-12-08 19:28:11 2019-12-08 19:29:49 t 1 1 191026 736 0.00 2019-12-08 19:25:41 2019-12-08 19:31:13 t 1 1 191031 514 0.00 2019-12-08 18:29:41 2019-12-08 19:37:20 t 1 1 191033 581 0.00 2019-12-08 19:37:18 2019-12-08 19:38:01 t 1 1 191035 625 0.00 2019-12-08 19:31:54 2019-12-08 19:39:21 t 1 1 191037 654 0.00 2019-12-08 19:30:27 2019-12-08 19:39:45 t 1 1 191038 545 0.00 2019-12-08 19:25:30 2019-12-08 19:40:22 t 1 1 191041 700 0.00 2019-12-08 19:27:42 2019-12-08 19:44:44 t 1 1 191043 736 0.00 2019-12-08 19:46:11 2019-12-08 19:46:25 t 1 1 191044 736 0.00 2019-12-08 19:47:23 2019-12-08 19:47:50 t 1 1 191046 726 0.00 2019-12-08 19:55:08 2019-12-08 19:56:41 t 1 1 191048 736 0.00 2019-12-08 19:55:48 2019-12-08 19:57:52 t 1 1 191049 736 0.00 2019-12-08 19:58:05 2019-12-08 19:58:11 t 1 1 191056 645 0.00 2019-12-08 20:11:04 2019-12-08 20:12:52 t 1 1 191060 736 0.00 2019-12-08 19:58:41 2019-12-08 20:18:12 t 1 1 191061 516 0.00 2019-12-08 20:00:21 2019-12-08 20:18:20 t 1 1 191062 687 0.00 2019-12-08 20:18:22 2019-12-08 20:19:52 t 1 1 191067 671 0.00 2019-12-08 20:26:11 2019-12-08 20:27:51 t 1 1 191072 516 0.00 2019-12-08 20:35:10 2019-12-08 20:36:31 t 1 1 191076 516 0.00 2019-12-08 20:36:47 2019-12-08 20:38:42 t 1 1 191081 734 0.00 2019-12-08 20:27:32 2019-12-08 20:41:11 t 1 1 191082 734 0.00 2019-12-08 20:41:11 2019-12-08 20:43:25 t 1 1 191084 625 0.00 2019-12-08 19:42:26 2019-12-08 20:47:30 t 1 1 191091 639 0.00 2019-12-08 20:44:53 2019-12-08 20:54:23 t 1 1 190786 696 0.00 2019-12-08 14:52:59 2019-12-08 15:35:10 t 1 1 190787 645 0.00 2019-12-08 15:34:23 2019-12-08 15:35:30 t 1 1 190791 622 0.00 2019-12-08 15:27:47 2019-12-08 15:42:32 t 1 1 190792 654 0.00 2019-12-08 15:37:14 2019-12-08 15:43:06 t 1 1 190794 673 0.00 2019-12-08 15:28:46 2019-12-08 15:44:23 t 1 1 190797 645 0.00 2019-12-08 15:44:34 2019-12-08 15:46:44 t 1 1 190806 645 0.00 2019-12-08 15:57:12 2019-12-08 15:58:14 t 1 1 190813 622 0.00 2019-12-08 15:51:29 2019-12-08 16:07:07 t 1 1 190814 645 0.00 2019-12-08 16:06:11 2019-12-08 16:07:25 t 1 1 190815 220 0.00 2019-12-08 15:49:07 2019-12-08 16:08:38 t 1 1 190819 637 0.00 2019-12-08 16:01:40 2019-12-08 16:13:20 t 1 1 190823 514 0.00 2019-12-08 15:30:53 2019-12-08 16:17:45 t 1 1 190824 483 0.00 2019-12-08 16:08:08 2019-12-08 16:18:29 t 1 1 190826 718 0.00 2019-12-08 16:16:13 2019-12-08 16:18:46 t 1 1 190828 622 0.00 2019-12-08 16:07:07 2019-12-08 16:19:26 t 1 1 190829 654 0.00 2019-12-08 16:15:45 2019-12-08 16:20:17 t 1 1 190830 485 0.00 2019-12-08 16:11:31 2019-12-08 16:20:28 t 1 1 190831 625 0.00 2019-12-08 16:18:43 2019-12-08 16:21:18 t 1 1 190843 625 0.00 2019-12-08 16:21:17 2019-12-08 16:34:38 t 1 1 190845 675 0.00 2019-12-08 16:27:47 2019-12-08 16:36:34 t 1 1 190856 490 0.00 2019-12-08 16:38:13 2019-12-08 16:48:26 t 1 1 190858 645 0.00 2019-12-08 16:48:48 2019-12-08 16:50:26 t 1 1 190861 622 0.00 2019-12-08 16:36:39 2019-12-08 16:52:52 t 1 1 190863 675 0.00 2019-12-08 16:51:34 2019-12-08 16:53:12 t 1 1 190871 718 0.00 2019-12-08 16:59:04 2019-12-08 17:01:14 t 1 1 190877 514 0.00 2019-12-08 16:19:37 2019-12-08 17:06:30 t 1 1 190878 700 0.00 2019-12-08 16:46:51 2019-12-08 17:07:48 t 1 1 190880 637 0.00 2019-12-08 17:05:11 2019-12-08 17:10:04 t 1 1 190883 611 0.00 2019-12-08 17:03:53 2019-12-08 17:10:20 t 1 1 190887 481 0.00 2019-12-08 16:45:32 2019-12-08 17:12:43 t 1 1 190890 578 0.00 2019-12-08 16:53:04 2019-12-08 17:13:48 t 1 1 190893 220 0.00 2019-12-08 14:57:03 2019-12-08 17:17:19 t 1 2 190895 645 0.00 2019-12-08 17:15:34 2019-12-08 17:17:30 t 1 1 190898 625 0.00 2019-12-08 16:34:38 2019-12-08 17:24:56 t 1 1 190900 622 0.00 2019-12-08 17:14:36 2019-12-08 17:26:47 t 1 1 190901 707 0.00 2019-12-08 17:01:54 2019-12-08 17:27:27 t 1 1 190903 545 0.00 2019-12-08 17:25:44 2019-12-08 17:28:12 t 1 1 190905 611 0.00 2019-12-08 17:10:20 2019-12-08 17:28:39 t 1 1 190907 679 0.00 2019-12-08 17:23:51 2019-12-08 17:30:29 t 1 1 190909 679 0.00 2019-12-08 17:33:09 2019-12-08 17:34:20 t 1 1 190912 707 0.00 2019-12-08 17:30:41 2019-12-08 17:35:48 t 1 1 190916 675 0.00 2019-12-08 17:37:59 2019-12-08 17:38:36 t 1 1 190918 591 0.00 2019-12-08 17:36:06 2019-12-08 17:40:38 t 1 1 190919 611 0.00 2019-12-08 17:34:16 2019-12-08 17:41:54 t 1 1 190921 591 0.00 2019-12-08 17:41:58 2019-12-08 17:44:22 t 1 1 190929 625 0.00 2019-12-08 17:47:25 2019-12-08 17:55:33 t 1 1 190934 673 0.00 2019-12-08 17:57:43 2019-12-08 17:59:03 t 1 1 190935 545 0.00 2019-12-08 17:46:25 2019-12-08 18:02:54 t 1 1 190936 675 0.00 2019-12-08 17:58:08 2019-12-08 18:03:29 t 1 1 190938 625 0.00 2019-12-08 17:59:01 2019-12-08 18:03:47 t 1 1 190940 611 0.00 2019-12-08 17:52:50 2019-12-08 18:04:55 t 1 1 190946 675 0.00 2019-12-08 18:07:18 2019-12-08 18:09:03 t 1 1 190948 615 0.00 2019-12-08 18:09:12 2019-12-08 18:10:36 t 1 1 190950 722 0.00 2019-12-08 18:05:24 2019-12-08 18:12:59 t 1 1 190953 615 0.00 2019-12-08 18:11:09 2019-12-08 18:15:11 t 1 1 190954 637 0.00 2019-12-08 17:45:20 2019-12-08 18:15:49 t 1 1 190958 625 0.00 2019-12-08 18:13:12 2019-12-08 18:16:46 t 1 1 190959 687 0.00 2019-12-08 18:05:26 2019-12-08 18:20:05 t 1 1 190960 578 0.00 2019-12-08 17:56:32 2019-12-08 18:20:57 t 1 1 190962 675 0.00 2019-12-08 18:13:22 2019-12-08 18:21:29 t 1 1 190964 722 0.00 2019-12-08 18:13:12 2019-12-08 18:23:08 t 1 1 190965 722 0.00 2019-12-08 18:23:08 2019-12-08 18:25:24 t 1 1 190973 654 0.00 2019-12-08 18:35:38 2019-12-08 18:40:26 t 1 1 190975 591 0.00 2019-12-08 18:37:40 2019-12-08 18:41:29 t 1 1 190979 615 0.00 2019-12-08 18:36:30 2019-12-08 18:47:26 t 1 1 190984 722 0.00 2019-12-08 18:51:18 2019-12-08 18:52:30 t 1 1 190985 637 0.00 2019-12-08 18:27:09 2019-12-08 18:53:08 t 1 1 190987 675 0.00 2019-12-08 18:42:10 2019-12-08 18:54:04 t 1 1 190991 625 0.00 2019-12-08 18:18:43 2019-12-08 18:56:15 t 1 1 190999 671 0.00 2019-12-08 19:01:03 2019-12-08 19:04:32 t 1 1 191007 722 0.00 2019-12-08 19:09:53 2019-12-08 19:10:47 t 1 1 191008 625 0.00 2019-12-08 19:08:57 2019-12-08 19:11:22 t 1 1 191011 675 0.00 2019-12-08 18:58:08 2019-12-08 19:15:37 t 1 1 191012 645 0.00 2019-12-08 19:17:40 2019-12-08 19:18:41 t 1 1 191014 675 0.00 2019-12-08 19:15:37 2019-12-08 19:19:27 t 1 1 191017 700 0.00 2019-12-08 18:46:11 2019-12-08 19:25:48 t 1 1 191019 611 0.00 2019-12-08 19:26:29 2019-12-08 19:27:32 t 1 1 191023 675 0.00 2019-12-08 19:20:56 2019-12-08 19:29:47 t 1 1 191025 625 0.00 2019-12-08 19:13:09 2019-12-08 19:31:00 t 1 1 191028 736 0.00 2019-12-08 19:31:53 2019-12-08 19:32:08 t 1 1 191029 718 0.00 2019-12-08 19:29:28 2019-12-08 19:33:17 t 1 1 191032 736 0.00 2019-12-08 19:37:44 2019-12-08 19:37:54 t 1 1 191036 675 0.00 2019-12-08 19:33:16 2019-12-08 19:39:32 t 1 1 191039 591 0.00 2019-12-08 19:21:55 2019-12-08 19:40:42 t 1 1 191045 687 0.00 2019-12-08 19:50:39 2019-12-08 19:54:19 t 1 1 191052 591 0.00 2019-12-08 19:40:42 2019-12-08 20:02:38 t 1 1 191053 637 0.00 2019-12-08 19:07:09 2019-12-08 20:04:57 t 1 1 191054 538 0.00 2019-12-08 19:58:01 2019-12-08 20:07:48 t 1 1 191057 673 0.00 2019-12-08 19:38:15 2019-12-08 20:15:08 t 1 1 191058 687 0.00 2019-12-08 19:54:46 2019-12-08 20:15:32 t 1 1 191059 687 0.00 2019-12-08 20:16:50 2019-12-08 20:17:43 t 1 1 191064 645 0.00 2019-12-08 20:11:15 2019-12-08 20:23:23 t 1 1 191065 687 0.00 2019-12-08 20:20:25 2019-12-08 20:25:03 t 1 1 191068 679 0.00 2019-12-08 20:16:00 2019-12-08 20:28:12 t 1 1 191070 687 0.00 2019-12-08 20:28:52 2019-12-08 20:30:46 t 1 1 191074 679 0.00 2019-12-08 20:35:41 2019-12-08 20:38:15 t 1 1 191075 679 0.00 2019-12-08 20:38:21 2019-12-08 20:38:34 t 1 1 191080 679 0.00 2019-12-08 20:39:54 2019-12-08 20:40:17 t 1 1 191083 736 0.00 2019-12-08 20:18:12 2019-12-08 20:46:13 t 1 1 191085 528 0.00 2019-12-08 20:40:05 2019-12-08 20:48:29 t 1 1 191086 611 0.00 2019-12-08 20:30:35 2019-12-08 20:51:15 t 1 1 191087 528 0.00 2019-12-08 20:50:03 2019-12-08 20:51:20 t 1 1 191088 516 0.00 2019-12-08 20:51:19 2019-12-08 20:52:30 t 1 1 191090 736 0.00 2019-12-08 20:52:38 2019-12-08 20:52:52 t 1 1 191094 645 0.00 2019-12-08 20:34:39 2019-12-08 20:55:44 t 1 1 191100 679 0.00 2019-12-08 20:40:36 2019-12-08 21:00:36 t 1 1 191104 528 0.00 2019-12-08 21:01:52 2019-12-08 21:02:17 t 1 1 190822 675 0.00 2019-12-08 16:13:08 2019-12-08 16:17:41 t 1 1 190832 538 0.00 2019-12-08 16:18:15 2019-12-08 16:21:31 t 1 1 190833 635 0.00 2019-12-08 16:14:17 2019-12-08 16:24:15 t 1 1 190835 654 0.00 2019-12-08 16:20:42 2019-12-08 16:26:06 t 1 1 190836 671 0.00 2019-12-08 16:12:08 2019-12-08 16:26:30 t 1 1 190838 581 0.00 2019-12-08 16:29:21 2019-12-08 16:29:33 t 1 1 190839 707 0.00 2019-12-08 16:27:32 2019-12-08 16:30:50 t 1 1 190841 591 0.00 2019-12-08 16:16:06 2019-12-08 16:31:44 t 1 1 190849 700 0.00 2019-12-08 14:49:22 2019-12-08 16:43:03 t 1 1 190850 675 0.00 2019-12-08 16:42:26 2019-12-08 16:43:42 t 1 1 190854 220 0.00 2019-12-08 16:45:58 2019-12-08 16:46:36 t 1 1 190855 637 0.00 2019-12-08 16:15:50 2019-12-08 16:48:02 t 1 1 190857 654 0.00 2019-12-08 16:45:05 2019-12-08 16:49:13 t 1 1 190864 645 0.00 2019-12-08 16:54:17 2019-12-08 16:55:12 t 1 1 190865 637 0.00 2019-12-08 16:51:25 2019-12-08 16:55:29 t 1 1 190869 622 0.00 2019-12-08 16:52:51 2019-12-08 16:59:53 t 1 1 190870 611 0.00 2019-12-08 16:54:42 2019-12-08 17:01:01 t 1 1 190872 679 0.00 2019-12-08 16:41:27 2019-12-08 17:01:39 t 1 1 190873 564 0.00 2019-12-08 16:54:02 2019-12-08 17:01:55 t 1 1 190874 459 0.00 2019-12-08 17:02:56 2019-12-08 17:03:11 t 1 2 190879 675 0.00 2019-12-08 17:07:14 2019-12-08 17:08:28 t 1 1 190882 581 0.00 2019-12-08 17:04:04 2019-12-08 17:10:16 t 1 1 190886 656 0.00 2019-12-08 17:10:55 2019-12-08 17:12:39 t 1 1 190889 622 0.00 2019-12-08 17:12:13 2019-12-08 17:13:39 t 1 1 190891 679 0.00 2019-12-08 17:01:39 2019-12-08 17:15:42 t 1 1 190892 459 0.00 2019-12-08 17:03:35 2019-12-08 17:17:18 t 1 2 190894 675 0.00 2019-12-08 17:15:59 2019-12-08 17:17:22 t 1 1 190896 679 0.00 2019-12-08 17:19:00 2019-12-08 17:23:14 t 1 1 190897 671 0.00 2019-12-08 17:22:42 2019-12-08 17:24:06 t 1 1 190899 645 0.00 2019-12-08 17:25:04 2019-12-08 17:26:39 t 1 1 190904 311 0.00 2019-12-08 17:25:11 2019-12-08 17:28:34 t 1 2 190906 687 0.00 2019-12-08 17:19:58 2019-12-08 17:29:50 t 1 1 190911 615 0.00 2019-12-08 17:11:57 2019-12-08 17:34:47 t 1 1 190913 687 0.00 2019-12-08 17:36:21 2019-12-08 17:36:49 t 1 1 190917 637 0.00 2019-12-08 17:14:18 2019-12-08 17:39:18 t 1 1 190922 625 0.00 2019-12-08 17:24:55 2019-12-08 17:45:17 t 1 1 190923 615 0.00 2019-12-08 17:34:47 2019-12-08 17:46:23 t 1 1 190924 625 0.00 2019-12-08 17:45:17 2019-12-08 17:47:26 t 1 1 190928 615 0.00 2019-12-08 17:46:23 2019-12-08 17:55:15 t 1 1 190931 578 0.00 2019-12-08 17:27:34 2019-12-08 17:56:32 t 1 1 190932 675 0.00 2019-12-08 17:56:05 2019-12-08 17:58:08 t 1 1 190933 625 0.00 2019-12-08 17:55:32 2019-12-08 17:59:01 t 1 1 190937 622 0.00 2019-12-08 17:47:24 2019-12-08 18:03:31 t 1 1 190939 734 0.00 2019-12-08 17:13:13 2019-12-08 18:04:31 t 1 1 190943 673 0.00 2019-12-08 18:04:48 2019-12-08 18:06:00 t 1 1 190944 622 0.00 2019-12-08 18:03:30 2019-12-08 18:06:50 t 1 1 190947 724 0.00 2019-12-08 18:03:01 2019-12-08 18:09:14 t 1 1 190952 544 0.00 2019-12-08 17:46:07 2019-12-08 18:15:01 t 1 1 190957 544 0.00 2019-12-08 18:16:37 2019-12-08 18:16:45 t 1 1 190963 611 0.00 2019-12-08 18:13:18 2019-12-08 18:22:39 t 1 1 190966 722 0.00 2019-12-08 18:25:45 2019-12-08 18:25:47 t 1 1 190968 528 0.00 2019-12-08 18:26:54 2019-12-08 18:27:34 t 1 1 190971 615 0.00 2019-12-08 18:25:55 2019-12-08 18:31:17 t 1 1 190981 722 0.00 2019-12-08 18:32:39 2019-12-08 18:47:50 t 1 1 190986 528 0.00 2019-12-08 18:52:32 2019-12-08 18:53:50 t 1 1 190989 722 0.00 2019-12-08 18:52:30 2019-12-08 18:54:09 t 1 1 190990 722 0.00 2019-12-08 18:54:14 2019-12-08 18:54:20 t 1 1 190993 637 0.00 2019-12-08 18:56:18 2019-12-08 18:58:15 t 1 1 190995 499 0.00 2019-12-08 15:22:28 2019-12-08 18:59:16 t 1 1 190998 627 0.00 2019-12-08 19:02:31 2019-12-08 19:02:42 t 1 1 191000 654 0.00 2019-12-08 19:04:53 2019-12-08 19:06:11 t 1 1 191002 637 0.00 2019-12-08 19:02:58 2019-12-08 19:07:09 t 1 1 191004 622 0.00 2019-12-08 19:07:49 2019-12-08 19:09:07 t 1 1 191006 722 0.00 2019-12-08 19:01:24 2019-12-08 19:09:51 t 1 1 191010 654 0.00 2019-12-08 19:06:11 2019-12-08 19:15:04 t 1 1 191016 627 0.00 2019-12-08 19:02:41 2019-12-08 19:24:14 t 1 1 191018 220 0.00 2019-12-08 17:19:02 2019-12-08 19:26:19 t 1 1 191021 220 0.00 2019-12-08 19:01:13 2019-12-08 19:27:37 t 1 2 191027 528 0.00 2019-12-08 19:23:46 2019-12-08 19:31:17 t 1 1 191030 611 0.00 2019-12-08 19:27:31 2019-12-08 19:33:40 t 1 1 191034 736 0.00 2019-12-08 19:39:00 2019-12-08 19:39:14 t 1 1 191040 724 0.00 2019-12-08 18:52:42 2019-12-08 19:42:55 t 1 1 191042 654 0.00 2019-12-08 19:44:10 2019-12-08 19:44:56 t 1 1 191047 538 0.00 2019-12-08 19:39:23 2019-12-08 19:56:58 t 1 1 191050 679 0.00 2019-12-08 18:49:10 2019-12-08 20:01:05 t 1 1 191051 724 0.00 2019-12-08 19:42:55 2019-12-08 20:02:23 t 1 1 191055 645 0.00 2019-12-08 20:05:48 2019-12-08 20:10:56 t 1 1 191063 675 0.00 2019-12-08 20:14:58 2019-12-08 20:21:18 t 1 1 191066 637 0.00 2019-12-08 20:25:23 2019-12-08 20:27:24 t 1 1 191069 611 0.00 2019-12-08 20:24:49 2019-12-08 20:30:36 t 1 1 191071 627 0.00 2019-12-08 20:30:25 2019-12-08 20:35:58 t 1 1 191073 627 0.00 2019-12-08 20:37:12 2019-12-08 20:37:50 t 1 1 191077 498 0.00 2019-12-08 19:30:43 2019-12-08 20:39:02 t 1 2 191078 679 0.00 2019-12-08 20:39:17 2019-12-08 20:39:27 t 1 1 191079 528 0.00 2019-12-08 19:36:52 2019-12-08 20:40:06 t 1 1 191089 528 0.00 2019-12-08 20:51:23 2019-12-08 20:52:48 t 1 1 191093 673 0.00 2019-12-08 20:42:04 2019-12-08 20:55:39 t 1 1 191096 724 0.00 2019-12-08 20:54:46 2019-12-08 20:55:52 t 1 1 191098 545 0.00 2019-12-08 19:40:22 2019-12-08 20:59:04 t 1 1 191099 625 0.00 2019-12-08 20:47:30 2019-12-08 20:59:47 t 1 1 191102 736 0.00 2019-12-08 21:01:10 2019-12-08 21:01:24 t 1 1 191103 675 0.00 2019-12-08 20:25:11 2019-12-08 21:02:14 t 1 1 191105 671 0.00 2019-12-08 21:00:26 2019-12-08 21:03:06 t 1 1 191106 591 0.00 2019-12-08 20:14:39 2019-12-08 21:07:32 t 1 1 191108 581 0.00 2019-12-08 21:06:23 2019-12-08 21:07:52 t 1 1 191110 528 0.00 2019-12-08 21:04:57 2019-12-08 21:10:46 t 1 1 191113 675 0.00 2019-12-08 21:05:40 2019-12-08 21:13:33 t 1 1 191118 220 0.00 2019-12-08 19:50:47 2019-12-08 21:17:00 t 1 2 191120 528 0.00 2019-12-08 21:17:02 2019-12-08 21:17:59 t 1 1 191122 220 0.00 2019-12-08 21:17:08 2019-12-08 21:20:10 t 1 2 191128 736 0.00 2019-12-08 21:27:57 2019-12-08 21:28:02 t 1 1 191129 528 0.00 2019-12-08 21:18:31 2019-12-08 21:28:57 t 1 1 191130 736 0.00 2019-12-08 21:28:45 2019-12-08 21:31:25 t 1 1 191132 734 0.00 2019-12-08 21:10:43 2019-12-08 21:33:35 t 1 1 191138 485 0.00 2019-12-08 21:27:10 2019-12-08 21:42:56 t 1 1 191140 528 0.00 2019-12-08 21:43:07 2019-12-08 21:43:55 t 1 1 191142 639 0.00 2019-12-08 21:26:41 2019-12-08 21:46:33 t 1 1 191092 736 0.00 2019-12-08 20:54:36 2019-12-08 20:55:17 t 1 1 191095 528 0.00 2019-12-08 20:53:35 2019-12-08 20:55:52 t 1 1 191097 581 0.00 2019-12-08 20:16:01 2019-12-08 20:58:49 t 1 1 191101 627 0.00 2019-12-08 20:55:25 2019-12-08 21:01:22 t 1 1 191107 625 0.00 2019-12-08 21:06:12 2019-12-08 21:07:39 t 1 1 191115 622 0.00 2019-12-08 20:28:00 2019-12-08 21:15:08 t 1 1 191116 679 0.00 2019-12-08 21:13:35 2019-12-08 21:15:41 t 1 1 191121 538 0.00 2019-12-08 21:18:49 2019-12-08 21:19:58 t 1 1 191123 637 0.00 2019-12-08 20:32:49 2019-12-08 21:23:13 t 1 1 191125 736 0.00 2019-12-08 21:24:22 2019-12-08 21:24:35 t 1 1 191126 687 0.00 2019-12-08 21:18:02 2019-12-08 21:26:15 t 1 1 191131 622 0.00 2019-12-08 21:17:10 2019-12-08 21:32:56 t 1 1 191137 528 0.00 2019-12-08 21:42:50 2019-12-08 21:42:54 t 1 1 191139 736 0.00 2019-12-08 21:33:06 2019-12-08 21:43:54 t 1 1 191141 675 0.00 2019-12-08 21:42:18 2019-12-08 21:46:28 t 1 1 191148 679 0.00 2019-12-08 21:56:25 2019-12-08 21:59:52 t 1 1 191151 679 0.00 2019-12-08 22:00:22 2019-12-08 22:01:13 t 1 1 191152 736 0.00 2019-12-08 22:00:10 2019-12-08 22:01:27 t 1 1 191154 679 0.00 2019-12-08 22:01:45 2019-12-08 22:01:57 t 1 1 191156 675 0.00 2019-12-08 21:58:25 2019-12-08 22:02:39 t 1 1 191158 724 0.00 2019-12-08 22:02:03 2019-12-08 22:02:56 t 1 1 191163 689 0.00 2019-12-08 21:56:29 2019-12-08 22:04:31 t 1 1 191167 459 0.00 2019-12-08 21:47:35 2019-12-08 22:05:52 t 1 2 191171 645 0.00 2019-12-08 21:34:02 2019-12-08 22:07:08 t 1 1 191172 220 0.00 2019-12-08 17:57:19 2019-12-08 22:08:03 t 1 2 191174 671 0.00 2019-12-08 21:59:47 2019-12-08 22:08:21 t 1 1 191177 645 0.00 2019-12-08 22:10:51 2019-12-08 22:11:09 t 1 1 191178 645 0.00 2019-12-08 22:11:26 2019-12-08 22:11:27 t 1 1 191179 220 0.00 2019-12-08 22:10:46 2019-12-08 22:12:10 t 1 2 191183 645 0.00 2019-12-08 22:12:49 2019-12-08 22:14:04 t 1 1 191184 687 0.00 2019-12-08 22:14:29 2019-12-08 22:15:05 t 1 1 191185 528 0.00 2019-12-08 22:14:29 2019-12-08 22:15:42 t 1 1 191188 220 0.00 2019-12-08 22:11:35 2019-12-08 22:17:58 t 1 2 191190 625 0.00 2019-12-08 22:00:19 2019-12-08 22:18:58 t 1 1 191191 645 0.00 2019-12-08 22:21:47 2019-12-08 22:22:00 t 1 1 191194 645 0.00 2019-12-08 22:24:24 2019-12-08 22:24:32 t 1 1 191197 551 0.00 2019-12-08 20:58:44 2019-12-08 22:28:44 t 1 1 191198 220 0.00 2019-12-08 22:24:12 2019-12-08 22:29:40 t 1 1 191199 736 0.00 2019-12-08 22:29:41 2019-12-08 22:29:55 t 1 1 191204 734 0.00 2019-12-08 21:59:11 2019-12-08 22:35:34 t 1 1 191209 736 0.00 2019-12-08 22:41:38 2019-12-08 22:41:53 t 1 1 191212 736 0.00 2019-12-08 22:44:44 2019-12-08 22:44:57 t 1 1 191213 736 0.00 2019-12-08 22:45:56 2019-12-08 22:47:43 t 1 1 191215 736 0.00 2019-12-08 22:49:07 2019-12-08 22:50:15 t 1 1 191216 551 0.00 2019-12-08 22:28:44 2019-12-08 22:50:37 t 1 1 191217 625 0.00 2019-12-08 22:19:05 2019-12-08 22:51:15 t 1 1 191221 578 0.00 2019-12-08 19:07:10 2019-12-08 22:53:44 t 1 1 191222 736 0.00 2019-12-08 22:53:41 2019-12-08 22:53:51 t 1 1 191225 645 0.00 2019-12-08 22:44:04 2019-12-08 22:54:47 t 1 1 191237 483 0.00 2019-12-08 21:57:11 2019-12-08 23:03:29 t 1 1 191239 639 0.00 2019-12-08 22:08:57 2019-12-08 23:05:45 t 1 1 191248 564 0.00 2019-12-08 23:06:13 2019-12-08 23:16:06 t 1 1 191249 679 0.00 2019-12-08 22:59:19 2019-12-08 23:18:15 t 1 1 191253 625 0.00 2019-12-08 22:57:00 2019-12-08 23:26:32 t 1 1 191259 220 0.00 2019-12-08 23:34:34 2019-12-08 23:35:28 t 1 1 191260 220 0.00 2019-12-08 23:35:27 2019-12-08 23:36:10 t 1 1 191262 679 0.00 2019-12-08 23:41:42 2019-12-08 23:43:06 t 1 1 191264 687 0.00 2019-12-08 22:16:23 2019-12-08 23:47:24 t 1 1 191265 687 0.00 2019-12-08 23:49:32 2019-12-08 23:50:22 t 1 1 191266 625 0.00 2019-12-08 23:46:47 2019-12-08 23:52:25 t 1 1 191267 622 0.00 2019-12-08 23:23:37 2019-12-08 23:55:44 t 1 1 191268 645 0.00 2019-12-08 23:22:44 2019-12-08 23:56:44 t 1 1 191269 528 0.00 2019-12-08 23:56:47 2019-12-08 23:58:16 t 1 1 191270 625 0.00 2019-12-08 23:52:46 2019-12-09 00:03:23 t 1 1 191273 220 0.00 2019-12-09 00:04:24 2019-12-09 00:04:57 t 1 1 191276 625 0.00 2019-12-09 00:06:21 2019-12-09 00:08:10 t 1 1 191277 578 0.00 2019-12-08 23:38:34 2019-12-09 00:11:27 t 1 1 191279 671 0.00 2019-12-09 00:15:30 2019-12-09 00:17:57 t 1 1 191286 514 0.00 2019-12-08 23:13:44 2019-12-09 00:29:04 t 1 1 191294 622 0.00 2019-12-09 00:24:46 2019-12-09 00:40:08 t 1 1 191298 637 0.00 2019-12-09 00:44:18 2019-12-09 00:49:16 t 1 1 191301 687 0.00 2019-12-09 00:58:00 2019-12-09 00:58:07 t 1 1 191304 220 0.00 2019-12-09 00:38:57 2019-12-09 01:03:03 t 1 1 191308 392 0.00 2019-12-09 01:06:49 2019-12-09 01:06:53 t 1 2 191312 665 0.00 2019-12-09 00:57:10 2019-12-09 01:11:46 t 1 1 191313 625 0.00 2019-12-09 01:13:47 2019-12-09 01:15:00 t 1 1 191318 687 0.00 2019-12-09 01:07:27 2019-12-09 01:27:07 t 1 1 191319 503 0.00 2019-12-09 01:20:01 2019-12-09 01:29:03 t 1 1 191320 687 0.00 2019-12-09 01:29:05 2019-12-09 01:32:14 t 1 1 191323 545 0.00 2019-12-09 01:33:04 2019-12-09 01:35:11 t 1 1 191324 687 0.00 2019-12-09 01:34:21 2019-12-09 01:38:51 t 1 1 191329 687 0.00 2019-12-09 02:01:43 2019-12-09 02:15:33 t 1 1 191331 687 0.00 2019-12-09 02:29:07 2019-12-09 02:46:31 t 1 1 191333 538 0.00 2019-12-09 03:16:39 2019-12-09 03:20:26 t 1 1 191335 566 0.00 2019-12-09 00:43:11 2019-12-09 04:32:49 t 1 1 191340 564 0.00 2019-12-09 04:58:23 2019-12-09 05:04:27 t 1 1 191342 564 0.00 2019-12-09 05:04:27 2019-12-09 05:08:47 t 1 1 191343 663 0.00 2019-12-09 05:06:01 2019-12-09 05:22:19 t 1 1 191344 564 0.00 2019-12-09 05:08:47 2019-12-09 05:23:02 t 1 1 191347 625 0.00 2019-12-09 05:47:14 2019-12-09 05:57:11 t 1 1 191349 611 0.00 2019-12-09 06:04:06 2019-12-09 06:10:43 t 1 1 191352 625 0.00 2019-12-09 06:17:10 2019-12-09 06:21:18 t 1 1 191359 611 0.00 2019-12-09 06:38:06 2019-12-09 06:41:46 t 1 1 191362 645 0.00 2019-12-09 06:43:11 2019-12-09 06:50:02 t 1 1 191365 611 0.00 2019-12-09 06:41:45 2019-12-09 06:56:49 t 1 1 191381 645 0.00 2019-12-09 07:27:03 2019-12-09 07:28:03 t 1 1 191382 689 0.00 2019-12-09 07:27:07 2019-12-09 07:30:58 t 1 1 191387 611 0.00 2019-12-09 07:41:22 2019-12-09 07:47:48 t 1 1 191392 591 0.00 2019-12-09 07:54:18 2019-12-09 07:56:10 t 1 1 191393 645 0.00 2019-12-09 07:48:24 2019-12-09 08:02:37 t 1 1 191394 516 0.00 2019-12-09 07:59:14 2019-12-09 08:03:33 t 1 1 191401 645 0.00 2019-12-09 08:11:45 2019-12-09 08:11:46 t 1 1 191403 611 0.00 2019-12-09 07:47:47 2019-12-09 08:12:15 t 1 1 191406 591 0.00 2019-12-09 08:13:28 2019-12-09 08:14:56 t 1 1 191410 611 0.00 2019-12-09 08:14:27 2019-12-09 08:22:27 t 1 1 191411 707 0.00 2019-12-09 08:22:00 2019-12-09 08:27:27 t 1 1 191414 611 0.00 2019-12-09 08:30:31 2019-12-09 08:32:30 t 1 1 191109 734 0.00 2019-12-08 21:02:00 2019-12-08 21:10:44 t 1 1 191111 625 0.00 2019-12-08 21:09:00 2019-12-08 21:11:08 t 1 1 191112 611 0.00 2019-12-08 21:04:18 2019-12-08 21:12:32 t 1 1 191114 679 0.00 2019-12-08 21:00:36 2019-12-08 21:13:35 t 1 1 191117 528 0.00 2019-12-08 21:10:46 2019-12-08 21:16:21 t 1 1 191119 622 0.00 2019-12-08 21:15:08 2019-12-08 21:17:10 t 1 1 191124 675 0.00 2019-12-08 21:18:44 2019-12-08 21:23:50 t 1 1 191127 639 0.00 2019-12-08 21:16:43 2019-12-08 21:26:41 t 1 1 191133 675 0.00 2019-12-08 21:30:03 2019-12-08 21:33:46 t 1 1 191134 734 0.00 2019-12-08 21:33:35 2019-12-08 21:35:12 t 1 1 191135 679 0.00 2019-12-08 21:36:06 2019-12-08 21:37:32 t 1 1 191136 581 0.00 2019-12-08 21:19:25 2019-12-08 21:39:41 t 1 1 191143 736 0.00 2019-12-08 21:46:54 2019-12-08 21:51:28 t 1 1 191150 545 0.00 2019-12-08 20:59:04 2019-12-08 22:00:56 t 1 1 191160 679 0.00 2019-12-08 22:03:11 2019-12-08 22:03:45 t 1 1 191164 679 0.00 2019-12-08 22:04:27 2019-12-08 22:04:49 t 1 1 191166 736 0.00 2019-12-08 22:03:45 2019-12-08 22:05:17 t 1 1 191170 689 0.00 2019-12-08 22:06:39 2019-12-08 22:07:07 t 1 1 191182 736 0.00 2019-12-08 22:13:32 2019-12-08 22:13:44 t 1 1 191187 528 0.00 2019-12-08 22:17:06 2019-12-08 22:17:51 t 1 1 191189 675 0.00 2019-12-08 22:12:27 2019-12-08 22:18:35 t 1 1 191193 220 0.00 2019-12-08 22:04:42 2019-12-08 22:24:05 t 1 1 191201 481 0.00 2019-12-08 18:46:00 2019-12-08 22:32:04 t 1 1 191202 689 0.00 2019-12-08 22:14:59 2019-12-08 22:32:27 t 1 1 191203 481 0.00 2019-12-08 22:32:04 2019-12-08 22:34:06 t 1 1 191205 679 0.00 2019-12-08 22:19:52 2019-12-08 22:37:19 t 1 1 191206 736 0.00 2019-12-08 22:38:43 2019-12-08 22:39:07 t 1 1 191207 675 0.00 2019-12-08 22:38:15 2019-12-08 22:40:11 t 1 1 191214 627 0.00 2019-12-08 21:43:42 2019-12-08 22:49:33 t 1 1 191219 528 0.00 2019-12-08 22:19:44 2019-12-08 22:53:06 t 1 1 191224 627 0.00 2019-12-08 22:51:23 2019-12-08 22:54:03 t 1 1 191227 679 0.00 2019-12-08 22:55:41 2019-12-08 22:55:56 t 1 1 191228 679 0.00 2019-12-08 22:56:02 2019-12-08 22:56:13 t 1 1 191229 679 0.00 2019-12-08 22:56:41 2019-12-08 22:56:56 t 1 1 191230 625 0.00 2019-12-08 22:51:15 2019-12-08 22:57:01 t 1 1 191231 679 0.00 2019-12-08 22:57:42 2019-12-08 22:57:57 t 1 1 191232 679 0.00 2019-12-08 22:58:07 2019-12-08 22:58:50 t 1 1 191235 220 0.00 2019-12-08 22:56:59 2019-12-08 23:01:30 t 1 1 191238 645 0.00 2019-12-08 22:56:03 2019-12-08 23:04:14 t 1 1 191241 578 0.00 2019-12-08 22:53:44 2019-12-08 23:07:13 t 1 1 191242 627 0.00 2019-12-08 22:54:09 2019-12-08 23:08:19 t 1 1 191243 631 0.00 2019-12-08 23:07:10 2019-12-08 23:09:08 t 1 1 191246 627 0.00 2019-12-08 23:08:19 2019-12-08 23:11:47 t 1 1 191247 637 0.00 2019-12-08 23:09:12 2019-12-08 23:14:56 t 1 1 191258 220 0.00 2019-12-08 23:28:45 2019-12-08 23:34:34 t 1 1 191263 625 0.00 2019-12-08 23:26:32 2019-12-08 23:45:57 t 1 1 191278 578 0.00 2019-12-09 00:11:27 2019-12-09 00:16:07 t 1 1 191280 687 0.00 2019-12-08 23:58:18 2019-12-09 00:18:39 t 1 1 191281 627 0.00 2019-12-08 23:19:20 2019-12-09 00:20:12 t 1 1 191282 679 0.00 2019-12-09 00:03:08 2019-12-09 00:20:26 t 1 1 191283 637 0.00 2019-12-08 23:14:56 2019-12-09 00:23:11 t 1 1 191284 622 0.00 2019-12-08 23:55:44 2019-12-09 00:24:46 t 1 1 191287 687 0.00 2019-12-09 00:18:39 2019-12-09 00:30:55 t 1 1 191289 220 0.00 2019-12-09 00:05:32 2019-12-09 00:33:46 t 1 1 191290 578 0.00 2019-12-09 00:27:08 2019-12-09 00:34:55 t 1 1 191291 683 0.00 2019-12-09 00:33:13 2019-12-09 00:35:55 t 1 1 191297 607 0.00 2019-12-08 23:35:33 2019-12-09 00:49:06 t 1 1 191300 687 0.00 2019-12-09 00:35:04 2019-12-09 00:57:17 t 1 1 191302 551 0.00 2019-12-08 22:50:37 2019-12-09 00:58:21 t 1 1 191303 607 0.00 2019-12-09 00:57:36 2019-12-09 00:59:52 t 1 1 191309 625 0.00 2019-12-09 01:05:58 2019-12-09 01:07:21 t 1 1 191310 551 0.00 2019-12-09 00:58:21 2019-12-09 01:08:08 t 1 1 191314 503 0.00 2019-12-09 00:53:18 2019-12-09 01:20:01 t 1 1 191315 622 0.00 2019-12-09 00:40:41 2019-12-09 01:20:21 t 1 1 191316 574 0.00 2019-12-09 01:21:33 2019-12-09 01:21:34 t 1 1 191321 514 0.00 2019-12-09 00:29:04 2019-12-09 01:32:21 t 1 1 191325 687 0.00 2019-12-09 01:42:07 2019-12-09 01:45:25 t 1 1 191328 687 0.00 2019-12-09 01:50:06 2019-12-09 02:01:43 t 1 1 191330 687 0.00 2019-12-09 02:16:14 2019-12-09 02:24:14 t 1 1 191334 736 0.00 2019-12-09 02:52:12 2019-12-09 03:36:26 t 1 1 191336 625 0.00 2019-12-09 04:32:06 2019-12-09 04:33:46 t 1 1 191337 516 0.00 2019-12-09 04:45:45 2019-12-09 04:50:37 t 1 1 191345 663 0.00 2019-12-09 05:22:19 2019-12-09 05:30:32 t 1 1 191346 625 0.00 2019-12-09 05:31:55 2019-12-09 05:46:32 t 1 1 191350 516 0.00 2019-12-09 06:04:31 2019-12-09 06:14:30 t 1 1 191358 514 0.00 2019-12-09 01:32:21 2019-12-09 06:38:13 t 1 1 191360 675 0.00 2019-12-09 06:31:24 2019-12-09 06:42:27 t 1 1 191361 516 0.00 2019-12-09 06:47:00 2019-12-09 06:49:52 t 1 1 191363 645 0.00 2019-12-09 06:50:08 2019-12-09 06:50:17 t 1 1 191367 611 0.00 2019-12-09 06:56:49 2019-12-09 07:00:41 t 1 1 191369 645 0.00 2019-12-09 07:07:04 2019-12-09 07:07:12 t 1 1 191371 514 0.00 2019-12-09 07:05:22 2019-12-09 07:11:44 t 1 1 191372 637 0.00 2019-12-09 01:03:30 2019-12-09 07:14:05 t 1 1 191377 689 0.00 2019-12-09 07:16:06 2019-12-09 07:20:59 t 1 1 191378 645 0.00 2019-12-09 07:23:42 2019-12-09 07:23:50 t 1 1 191379 689 0.00 2019-12-09 07:25:42 2019-12-09 07:25:54 t 1 1 191380 645 0.00 2019-12-09 07:26:48 2019-12-09 07:26:56 t 1 1 191383 734 0.00 2019-12-09 07:28:58 2019-12-09 07:36:54 t 1 1 191384 645 0.00 2019-12-09 07:37:17 2019-12-09 07:37:51 t 1 1 191385 707 0.00 2019-12-09 07:08:28 2019-12-09 07:40:35 t 1 1 191386 611 0.00 2019-12-09 07:25:25 2019-12-09 07:41:23 t 1 1 191389 675 0.00 2019-12-09 07:22:15 2019-12-09 07:48:00 t 1 1 191398 625 0.00 2019-12-09 07:09:44 2019-12-09 08:08:30 t 1 1 191400 645 0.00 2019-12-09 08:07:00 2019-12-09 08:11:38 t 1 1 191404 675 0.00 2019-12-09 08:06:20 2019-12-09 08:12:30 t 1 1 191405 611 0.00 2019-12-09 08:12:15 2019-12-09 08:14:27 t 1 1 191408 538 0.00 2019-12-09 08:11:42 2019-12-09 08:21:47 t 1 1 191413 615 0.00 2019-12-09 08:20:41 2019-12-09 08:30:38 t 1 1 191415 645 0.00 2019-12-09 08:30:16 2019-12-09 08:33:42 t 1 1 191416 734 0.00 2019-12-09 08:15:03 2019-12-09 08:34:06 t 1 1 191417 591 0.00 2019-12-09 08:23:04 2019-12-09 08:42:40 t 1 1 191418 615 0.00 2019-12-09 08:30:38 2019-12-09 08:43:20 t 1 1 191420 637 0.00 2019-12-09 07:14:05 2019-12-09 08:44:12 t 1 1 191421 625 0.00 2019-12-09 08:08:38 2019-12-09 08:50:50 t 1 1 191422 679 0.00 2019-12-09 08:52:42 2019-12-09 08:55:49 t 1 1 191424 645 0.00 2019-12-09 09:00:23 2019-12-09 09:02:13 t 1 1 191425 639 0.00 2019-12-09 08:44:17 2019-12-09 09:05:57 t 1 1 191144 679 0.00 2019-12-08 21:43:17 2019-12-08 21:56:25 t 1 1 191145 687 0.00 2019-12-08 21:50:46 2019-12-08 21:56:36 t 1 1 191146 639 0.00 2019-12-08 21:48:18 2019-12-08 21:57:36 t 1 1 191147 734 0.00 2019-12-08 21:50:53 2019-12-08 21:59:11 t 1 1 191149 679 0.00 2019-12-08 21:59:57 2019-12-08 22:00:22 t 1 1 191153 679 0.00 2019-12-08 22:01:18 2019-12-08 22:01:39 t 1 1 191155 679 0.00 2019-12-08 22:02:04 2019-12-08 22:02:22 t 1 1 191157 679 0.00 2019-12-08 22:02:28 2019-12-08 22:02:46 t 1 1 191159 679 0.00 2019-12-08 22:02:51 2019-12-08 22:03:06 t 1 1 191161 679 0.00 2019-12-08 22:03:50 2019-12-08 22:04:04 t 1 1 191162 679 0.00 2019-12-08 22:04:09 2019-12-08 22:04:22 t 1 1 191165 679 0.00 2019-12-08 22:04:55 2019-12-08 22:05:17 t 1 1 191168 622 0.00 2019-12-08 21:52:57 2019-12-08 22:06:09 t 1 1 191169 679 0.00 2019-12-08 22:05:23 2019-12-08 22:07:05 t 1 1 191173 528 0.00 2019-12-08 21:47:10 2019-12-08 22:08:14 t 1 1 191175 639 0.00 2019-12-08 21:59:51 2019-12-08 22:08:37 t 1 1 191176 645 0.00 2019-12-08 22:07:08 2019-12-08 22:09:59 t 1 1 191180 591 0.00 2019-12-08 21:07:32 2019-12-08 22:12:19 t 1 1 191181 689 0.00 2019-12-08 22:12:08 2019-12-08 22:12:37 t 1 1 191186 736 0.00 2019-12-08 22:16:07 2019-12-08 22:16:26 t 1 1 191192 736 0.00 2019-12-08 22:22:01 2019-12-08 22:23:42 t 1 1 191195 645 0.00 2019-12-08 22:26:48 2019-12-08 22:26:55 t 1 1 191196 736 0.00 2019-12-08 22:26:59 2019-12-08 22:27:45 t 1 1 191200 635 0.00 2019-12-08 22:16:54 2019-12-08 22:31:49 t 1 1 191208 736 0.00 2019-12-08 22:41:17 2019-12-08 22:41:31 t 1 1 191210 645 0.00 2019-12-08 22:29:45 2019-12-08 22:42:03 t 1 1 191211 645 0.00 2019-12-08 22:42:19 2019-12-08 22:42:29 t 1 1 191218 689 0.00 2019-12-08 22:32:49 2019-12-08 22:52:57 t 1 1 191220 679 0.00 2019-12-08 22:37:19 2019-12-08 22:53:40 t 1 1 191223 679 0.00 2019-12-08 22:53:46 2019-12-08 22:53:58 t 1 1 191226 679 0.00 2019-12-08 22:54:40 2019-12-08 22:54:57 t 1 1 191233 679 0.00 2019-12-08 22:58:59 2019-12-08 22:59:09 t 1 1 191234 718 0.00 2019-12-08 22:14:11 2019-12-08 22:59:35 t 1 1 191236 591 0.00 2019-12-08 22:25:03 2019-12-08 23:02:41 t 1 1 191240 564 0.00 2019-12-08 20:51:09 2019-12-08 23:06:13 t 1 1 191244 637 0.00 2019-12-08 21:24:20 2019-12-08 23:09:12 t 1 1 191245 483 0.00 2019-12-08 23:09:11 2019-12-08 23:09:36 t 1 1 191250 578 0.00 2019-12-08 23:07:13 2019-12-08 23:19:32 t 1 1 191251 645 0.00 2019-12-08 23:04:13 2019-12-08 23:22:36 t 1 1 191252 622 0.00 2019-12-08 22:39:39 2019-12-08 23:23:37 t 1 1 191254 578 0.00 2019-12-08 23:19:32 2019-12-08 23:26:50 t 1 1 191255 538 0.00 2019-12-08 22:48:02 2019-12-08 23:28:15 t 1 1 191256 220 0.00 2019-12-08 23:24:53 2019-12-08 23:28:45 t 1 1 191257 724 0.00 2019-12-08 23:14:25 2019-12-08 23:32:27 t 1 1 191261 578 0.00 2019-12-08 23:26:50 2019-12-08 23:38:34 t 1 1 191271 625 0.00 2019-12-09 00:03:49 2019-12-09 00:04:18 t 1 1 191272 220 0.00 2019-12-08 23:36:09 2019-12-09 00:04:25 t 1 1 191274 220 0.00 2019-12-09 00:04:57 2019-12-09 00:05:32 t 1 1 191275 625 0.00 2019-12-09 00:04:18 2019-12-09 00:06:22 t 1 1 191285 578 0.00 2019-12-09 00:16:07 2019-12-09 00:27:08 t 1 1 191288 637 0.00 2019-12-09 00:28:19 2019-12-09 00:33:33 t 1 1 191292 220 0.00 2019-12-09 00:33:46 2019-12-09 00:38:57 t 1 1 191293 503 0.00 2019-12-09 00:35:53 2019-12-09 00:39:06 t 1 1 191295 637 0.00 2019-12-09 00:37:48 2019-12-09 00:41:19 t 1 1 191296 566 0.00 2019-12-09 00:03:35 2019-12-09 00:43:11 t 1 1 191299 503 0.00 2019-12-09 00:39:06 2019-12-09 00:53:19 t 1 1 191305 687 0.00 2019-12-09 01:02:50 2019-12-09 01:03:06 t 1 1 191306 625 0.00 2019-12-09 01:02:36 2019-12-09 01:04:13 t 1 1 191307 392 0.00 2019-12-08 22:24:58 2019-12-09 01:06:39 t 1 2 191311 545 0.00 2019-12-09 01:07:31 2019-12-09 01:08:36 t 1 1 191317 665 0.00 2019-12-09 01:11:46 2019-12-09 01:25:58 t 1 1 191322 574 0.00 2019-12-09 01:22:01 2019-12-09 01:32:43 t 1 1 191326 544 0.00 2019-12-09 01:24:58 2019-12-09 01:46:36 t 1 1 191327 544 0.00 2019-12-09 01:46:36 2019-12-09 01:56:36 t 1 1 191332 736 0.00 2019-12-09 02:39:30 2019-12-09 02:52:12 t 1 1 191338 516 0.00 2019-12-09 04:50:37 2019-12-09 04:52:42 t 1 1 191339 516 0.00 2019-12-09 04:52:42 2019-12-09 04:54:21 t 1 1 191341 663 0.00 2019-12-09 04:49:26 2019-12-09 05:06:01 t 1 1 191348 611 0.00 2019-12-09 05:53:34 2019-12-09 06:04:06 t 1 1 191351 625 0.00 2019-12-09 05:57:11 2019-12-09 06:17:10 t 1 1 191353 516 0.00 2019-12-09 06:18:41 2019-12-09 06:25:10 t 1 1 191354 625 0.00 2019-12-09 06:21:29 2019-12-09 06:25:22 t 1 1 191355 675 0.00 2019-12-09 06:22:44 2019-12-09 06:29:53 t 1 1 191356 622 0.00 2019-12-09 06:27:12 2019-12-09 06:35:04 t 1 1 191357 611 0.00 2019-12-09 06:20:18 2019-12-09 06:38:06 t 1 1 191364 645 0.00 2019-12-09 06:56:35 2019-12-09 06:56:44 t 1 1 191366 675 0.00 2019-12-09 06:42:27 2019-12-09 06:59:38 t 1 1 191368 675 0.00 2019-12-09 06:59:38 2019-12-09 07:04:31 t 1 1 191370 611 0.00 2019-12-09 07:05:41 2019-12-09 07:09:30 t 1 1 191373 611 0.00 2019-12-09 07:09:37 2019-12-09 07:14:17 t 1 1 191374 675 0.00 2019-12-09 07:11:32 2019-12-09 07:16:19 t 1 1 191375 645 0.00 2019-12-09 07:17:34 2019-12-09 07:17:42 t 1 1 191376 645 0.00 2019-12-09 07:20:41 2019-12-09 07:20:48 t 1 1 191388 645 0.00 2019-12-09 07:47:48 2019-12-09 07:47:48 t 1 1 191390 635 0.00 2019-12-09 07:38:49 2019-12-09 07:49:40 t 1 1 191391 675 0.00 2019-12-09 07:48:04 2019-12-09 07:54:08 t 1 1 191395 645 0.00 2019-12-09 08:02:37 2019-12-09 08:03:41 t 1 1 191396 675 0.00 2019-12-09 07:59:43 2019-12-09 08:06:14 t 1 1 191397 485 0.00 2019-12-09 08:05:23 2019-12-09 08:06:49 t 1 1 191399 481 0.00 2019-12-09 08:02:02 2019-12-09 08:09:01 t 1 1 191402 516 0.00 2019-12-09 08:06:07 2019-12-09 08:11:53 t 1 1 191407 645 0.00 2019-12-09 08:13:05 2019-12-09 08:19:08 t 1 1 191409 675 0.00 2019-12-09 08:19:27 2019-12-09 08:22:07 t 1 1 191412 645 0.00 2019-12-09 08:25:39 2019-12-09 08:27:29 t 1 1 191419 639 0.00 2019-12-09 08:39:29 2019-12-09 08:43:22 t 1 1 191423 615 0.00 2019-12-09 08:43:20 2019-12-09 08:56:16 t 1 1 191426 607 0.00 2019-12-09 08:11:05 2019-12-09 09:07:27 t 1 1 191427 639 0.00 2019-12-09 09:06:15 2019-12-09 09:07:38 t 1 1 191428 718 0.00 2019-12-09 08:57:12 2019-12-09 09:07:42 t 1 1 191429 734 0.00 2019-12-09 08:38:30 2019-12-09 09:09:14 t 1 1 191430 611 0.00 2019-12-09 09:08:47 2019-12-09 09:10:18 t 1 1 191431 645 0.00 2019-12-09 09:08:25 2019-12-09 09:11:49 t 1 1 191432 615 0.00 2019-12-09 08:56:16 2019-12-09 09:13:07 t 1 1 191433 738 0.00 2019-12-09 09:13:52 2019-12-09 09:14:21 t 1 1 191434 738 0.00 2019-12-09 09:14:27 2019-12-09 09:14:43 t 1 1 191435 538 0.00 2019-12-09 09:13:49 2019-12-09 09:14:55 t 1 1 191436 738 0.00 2019-12-09 09:14:50 2019-12-09 09:16:59 t 1 1 191437 645 0.00 2019-12-09 09:16:14 2019-12-09 09:17:01 t 1 1 191444 679 0.00 2019-12-09 09:23:03 2019-12-09 09:23:17 t 1 1 191445 679 0.00 2019-12-09 09:23:46 2019-12-09 09:24:02 t 1 1 191451 679 0.00 2019-12-09 09:26:23 2019-12-09 09:27:56 t 1 1 191453 679 0.00 2019-12-09 09:28:03 2019-12-09 09:28:15 t 1 1 191454 673 0.00 2019-12-09 09:27:28 2019-12-09 09:28:44 t 1 1 191458 568 0.00 2019-12-09 09:29:58 2019-12-09 09:31:37 t 1 1 191462 675 0.00 2019-12-09 09:27:14 2019-12-09 09:33:47 t 1 1 191463 679 0.00 2019-12-09 09:34:05 2019-12-09 09:34:21 t 1 1 191465 679 0.00 2019-12-09 09:35:21 2019-12-09 09:35:33 t 1 1 191467 679 0.00 2019-12-09 09:35:47 2019-12-09 09:36:12 t 1 1 191470 220 0.00 2019-12-09 09:38:53 2019-12-09 09:44:25 t 1 1 191471 637 0.00 2019-12-09 09:43:52 2019-12-09 09:46:08 t 1 1 191472 675 0.00 2019-12-09 09:38:39 2019-12-09 09:46:23 t 1 1 191475 637 0.00 2019-12-09 09:46:50 2019-12-09 09:50:53 t 1 1 191484 679 0.00 2019-12-09 09:38:11 2019-12-09 09:56:28 t 1 1 191487 645 0.00 2019-12-09 09:56:01 2019-12-09 09:57:55 t 1 1 191492 671 0.00 2019-12-09 09:59:38 2019-12-09 10:04:20 t 1 1 191496 516 0.00 2019-12-09 10:05:10 2019-12-09 10:05:23 t 1 1 191497 738 0.00 2019-12-09 10:06:00 2019-12-09 10:06:20 t 1 1 191500 622 0.00 2019-12-09 10:08:05 2019-12-09 10:09:18 t 1 1 191502 679 0.00 2019-12-09 09:56:28 2019-12-09 10:09:34 t 1 1 191506 734 0.00 2019-12-09 10:11:05 2019-12-09 10:12:07 t 1 1 191516 738 0.00 2019-12-09 10:19:02 2019-12-09 10:21:07 t 1 1 191527 738 0.00 2019-12-09 10:33:24 2019-12-09 10:33:40 t 1 1 191529 679 0.00 2019-12-09 10:34:02 2019-12-09 10:34:16 t 1 1 191531 679 0.00 2019-12-09 10:34:43 2019-12-09 10:35:01 t 1 1 191536 679 0.00 2019-12-09 10:36:04 2019-12-09 10:36:24 t 1 1 191540 675 0.00 2019-12-09 10:23:30 2019-12-09 10:38:19 t 1 1 191542 679 0.00 2019-12-09 10:38:16 2019-12-09 10:38:41 t 1 1 191546 679 0.00 2019-12-09 10:39:53 2019-12-09 10:40:09 t 1 1 191548 679 0.00 2019-12-09 10:40:16 2019-12-09 10:40:33 t 1 1 191549 734 0.00 2019-12-09 10:12:31 2019-12-09 10:40:43 t 1 1 191551 679 0.00 2019-12-09 10:40:39 2019-12-09 10:41:12 t 1 1 191554 691 0.00 2019-12-09 10:40:51 2019-12-09 10:42:00 t 1 1 191557 679 0.00 2019-12-09 10:42:21 2019-12-09 10:42:47 t 1 1 191561 392 0.00 2019-12-09 09:52:54 2019-12-09 10:44:00 t 1 2 191566 679 0.00 2019-12-09 10:45:29 2019-12-09 10:45:45 t 1 1 191568 220 0.00 2019-12-09 10:45:06 2019-12-09 10:47:05 t 1 1 191570 679 0.00 2019-12-09 10:48:05 2019-12-09 10:48:29 t 1 1 191573 220 0.00 2019-12-09 10:46:01 2019-12-09 10:49:31 t 1 2 191575 679 0.00 2019-12-09 10:49:34 2019-12-09 10:49:52 t 1 1 191578 679 0.00 2019-12-09 10:50:33 2019-12-09 10:50:50 t 1 1 191580 562 0.00 2019-12-09 10:42:43 2019-12-09 10:51:17 t 1 1 191585 645 0.00 2019-12-09 10:48:03 2019-12-09 10:52:43 t 1 1 191586 611 0.00 2019-12-09 10:51:09 2019-12-09 10:53:07 t 1 1 191587 625 0.00 2019-12-09 10:50:37 2019-12-09 10:53:32 t 1 1 191592 679 0.00 2019-12-09 10:54:22 2019-12-09 10:54:54 t 1 1 191600 639 0.00 2019-12-09 10:56:50 2019-12-09 10:57:16 t 1 1 191607 679 0.00 2019-12-09 11:00:22 2019-12-09 11:00:37 t 1 1 191609 591 0.00 2019-12-09 10:25:00 2019-12-09 11:00:53 t 1 1 191621 679 0.00 2019-12-09 11:04:52 2019-12-09 11:05:21 t 1 1 191624 679 0.00 2019-12-09 11:05:48 2019-12-09 11:06:14 t 1 1 191625 679 0.00 2019-12-09 11:06:19 2019-12-09 11:06:35 t 1 1 191626 220 0.00 2019-12-09 10:50:52 2019-12-09 11:07:13 t 1 1 191628 679 0.00 2019-12-09 11:06:41 2019-12-09 11:07:17 t 1 1 191630 679 0.00 2019-12-09 11:07:23 2019-12-09 11:07:38 t 1 1 191635 679 0.00 2019-12-09 11:08:59 2019-12-09 11:09:16 t 1 1 191636 615 0.00 2019-12-09 11:07:13 2019-12-09 11:09:31 t 1 1 191639 679 0.00 2019-12-09 11:10:02 2019-12-09 11:10:34 t 1 1 191641 679 0.00 2019-12-09 11:10:40 2019-12-09 11:10:55 t 1 1 191643 679 0.00 2019-12-09 11:11:01 2019-12-09 11:11:25 t 1 1 191644 679 0.00 2019-12-09 11:11:31 2019-12-09 11:11:48 t 1 1 191645 554 0.00 2019-12-09 11:12:08 2019-12-09 11:12:08 f 1 1 191648 679 0.00 2019-12-09 11:12:53 2019-12-09 11:13:18 t 1 1 191649 679 0.00 2019-12-09 11:13:23 2019-12-09 11:13:38 t 1 1 191650 679 0.00 2019-12-09 11:13:43 2019-12-09 11:14:18 t 1 1 191651 679 0.00 2019-12-09 11:14:23 2019-12-09 11:14:39 t 1 1 191655 637 0.00 2019-12-09 11:05:19 2019-12-09 11:17:28 t 1 1 191657 625 0.00 2019-12-09 11:11:44 2019-12-09 11:18:53 t 1 1 191659 665 0.00 2019-12-09 11:13:54 2019-12-09 11:19:46 t 1 1 191667 679 0.00 2019-12-09 11:25:21 2019-12-09 11:25:40 t 1 1 191670 707 0.00 2019-12-09 11:15:09 2019-12-09 11:26:28 t 1 1 191674 538 0.00 2019-12-09 11:20:06 2019-12-09 11:31:42 t 1 1 191675 679 0.00 2019-12-09 11:26:17 2019-12-09 11:33:18 t 1 1 191680 679 0.00 2019-12-09 11:33:23 2019-12-09 11:34:51 t 1 1 191684 516 0.00 2019-12-09 11:35:57 2019-12-09 11:37:29 t 1 1 191687 645 0.00 2019-12-09 11:34:17 2019-12-09 11:38:50 t 1 1 191696 740 0.00 2019-12-09 11:46:43 2019-12-09 11:46:43 f 1 1 191698 562 0.00 2019-12-09 11:47:47 2019-12-09 11:48:13 t 1 1 191699 611 0.00 2019-12-09 11:43:29 2019-12-09 11:49:34 t 1 1 191700 607 0.00 2019-12-09 11:33:52 2019-12-09 11:51:02 t 1 1 191703 679 0.00 2019-12-09 11:53:58 2019-12-09 11:58:17 t 1 1 191711 639 0.00 2019-12-09 12:04:05 2019-12-09 12:05:07 t 1 1 191712 611 0.00 2019-12-09 12:03:51 2019-12-09 12:05:33 t 1 1 191714 645 0.00 2019-12-09 11:53:33 2019-12-09 12:06:36 t 1 1 191719 645 0.00 2019-12-09 12:07:37 2019-12-09 12:09:06 t 1 1 191723 679 0.00 2019-12-09 12:09:49 2019-12-09 12:10:55 t 1 1 191727 637 0.00 2019-12-09 12:09:57 2019-12-09 12:13:15 t 1 1 191731 679 0.00 2019-12-09 12:13:35 2019-12-09 12:18:45 t 1 1 191732 639 0.00 2019-12-09 12:19:09 2019-12-09 12:19:24 t 1 1 191735 639 0.00 2019-12-09 12:20:30 2019-12-09 12:21:31 t 1 1 191736 736 0.00 2019-12-09 12:21:54 2019-12-09 12:22:41 t 1 1 191740 736 0.00 2019-12-09 12:26:19 2019-12-09 12:26:39 t 1 1 191741 615 0.00 2019-12-09 12:20:32 2019-12-09 12:28:35 t 1 1 191744 645 0.00 2019-12-09 12:09:13 2019-12-09 12:30:47 t 1 1 191748 689 0.00 2019-12-09 12:37:16 2019-12-09 12:38:56 t 1 1 191752 736 0.00 2019-12-09 12:37:48 2019-12-09 12:41:51 t 1 1 191754 740 0.00 2019-12-09 12:43:20 2019-12-09 12:46:15 t 1 1 191756 724 0.00 2019-12-09 09:58:32 2019-12-09 12:47:02 t 1 1 191758 611 0.00 2019-12-09 12:44:00 2019-12-09 12:48:14 t 1 1 191759 645 0.00 2019-12-09 12:42:21 2019-12-09 12:48:30 t 1 1 191761 645 0.00 2019-12-09 12:50:30 2019-12-09 12:51:35 t 1 1 191762 625 0.00 2019-12-09 12:31:20 2019-12-09 12:53:05 t 1 1 191763 562 0.00 2019-12-09 12:53:34 2019-12-09 12:53:43 t 1 1 191765 645 0.00 2019-12-09 12:54:22 2019-12-09 12:54:34 t 1 1 191767 645 0.00 2019-12-09 12:55:00 2019-12-09 12:55:30 t 1 1 191438 645 0.00 2019-12-09 09:17:28 2019-12-09 09:17:49 t 1 1 191440 645 0.00 2019-12-09 09:19:34 2019-12-09 09:21:27 t 1 1 191441 611 0.00 2019-12-09 09:16:10 2019-12-09 09:21:52 t 1 1 191443 645 0.00 2019-12-09 09:21:41 2019-12-09 09:22:42 t 1 1 191446 639 0.00 2019-12-09 09:17:03 2019-12-09 09:24:08 t 1 1 191455 679 0.00 2019-12-09 09:28:41 2019-12-09 09:29:06 t 1 1 191459 679 0.00 2019-12-09 09:32:10 2019-12-09 09:32:26 t 1 1 191460 679 0.00 2019-12-09 09:33:09 2019-12-09 09:33:22 t 1 1 191468 679 0.00 2019-12-09 09:37:14 2019-12-09 09:37:50 t 1 1 191469 615 0.00 2019-12-09 09:25:31 2019-12-09 09:42:13 t 1 1 191473 311 0.00 2019-12-09 09:46:49 2019-12-09 09:50:12 t 1 2 191474 738 0.00 2019-12-09 09:46:11 2019-12-09 09:50:45 t 1 1 191479 516 0.00 2019-12-09 09:52:36 2019-12-09 09:53:02 t 1 1 191486 738 0.00 2019-12-09 09:57:05 2019-12-09 09:57:19 t 1 1 191489 645 0.00 2019-12-09 09:58:21 2019-12-09 10:02:14 t 1 1 191490 738 0.00 2019-12-09 09:59:44 2019-12-09 10:03:18 t 1 1 191491 516 0.00 2019-12-09 10:04:09 2019-12-09 10:04:14 t 1 1 191493 625 0.00 2019-12-09 09:54:35 2019-12-09 10:04:29 t 1 1 191494 738 0.00 2019-12-09 10:04:47 2019-12-09 10:05:03 t 1 1 191504 734 0.00 2019-12-09 10:01:42 2019-12-09 10:11:05 t 1 1 191505 675 0.00 2019-12-09 09:50:50 2019-12-09 10:11:45 t 1 1 191508 679 0.00 2019-12-09 10:10:02 2019-12-09 10:15:16 t 1 1 191511 738 0.00 2019-12-09 10:17:28 2019-12-09 10:17:38 t 1 1 191513 611 0.00 2019-12-09 10:17:04 2019-12-09 10:19:32 t 1 1 191517 220 0.00 2019-12-09 10:21:16 2019-12-09 10:22:14 t 1 2 191518 220 0.00 2019-12-09 10:22:27 2019-12-09 10:22:42 t 1 2 191519 220 0.00 2019-12-09 10:23:19 2019-12-09 10:24:20 t 1 2 191521 738 0.00 2019-12-09 10:21:17 2019-12-09 10:26:22 t 1 1 191522 490 0.00 2019-12-09 10:07:30 2019-12-09 10:28:09 t 1 1 191525 611 0.00 2019-12-09 10:31:39 2019-12-09 10:33:01 t 1 1 191526 679 0.00 2019-12-09 10:16:05 2019-12-09 10:33:29 t 1 1 191528 679 0.00 2019-12-09 10:33:35 2019-12-09 10:33:56 t 1 1 191530 679 0.00 2019-12-09 10:34:21 2019-12-09 10:34:37 t 1 1 191533 625 0.00 2019-12-09 10:16:50 2019-12-09 10:35:51 t 1 1 191539 679 0.00 2019-12-09 10:37:35 2019-12-09 10:38:11 t 1 1 191543 691 0.00 2019-12-09 10:39:07 2019-12-09 10:39:40 t 1 1 191552 562 0.00 2019-12-09 10:23:49 2019-12-09 10:41:14 t 1 1 191553 679 0.00 2019-12-09 10:41:17 2019-12-09 10:41:32 t 1 1 191555 622 0.00 2019-12-09 10:18:59 2019-12-09 10:42:06 t 1 1 191563 679 0.00 2019-12-09 10:44:26 2019-12-09 10:44:44 t 1 1 191565 679 0.00 2019-12-09 10:44:49 2019-12-09 10:45:24 t 1 1 191567 679 0.00 2019-12-09 10:45:51 2019-12-09 10:46:27 t 1 1 191582 639 0.00 2019-12-09 10:50:51 2019-12-09 10:51:47 t 1 1 191589 615 0.00 2019-12-09 10:34:16 2019-12-09 10:54:03 t 1 1 191590 679 0.00 2019-12-09 10:53:55 2019-12-09 10:54:16 t 1 1 191595 516 0.00 2019-12-09 10:53:32 2019-12-09 10:55:36 t 1 1 191598 625 0.00 2019-12-09 10:54:31 2019-12-09 10:56:45 t 1 1 191599 679 0.00 2019-12-09 10:56:26 2019-12-09 10:56:57 t 1 1 191602 679 0.00 2019-12-09 10:57:39 2019-12-09 10:58:00 t 1 1 191603 675 0.00 2019-12-09 10:52:47 2019-12-09 10:58:32 t 1 1 191608 671 0.00 2019-12-09 10:52:45 2019-12-09 11:00:38 t 1 1 191612 679 0.00 2019-12-09 11:01:35 2019-12-09 11:02:12 t 1 1 191613 639 0.00 2019-12-09 11:00:07 2019-12-09 11:02:19 t 1 1 191616 679 0.00 2019-12-09 11:02:41 2019-12-09 11:03:12 t 1 1 191617 679 0.00 2019-12-09 11:03:17 2019-12-09 11:03:36 t 1 1 191618 679 0.00 2019-12-09 11:03:42 2019-12-09 11:04:08 t 1 1 191627 615 0.00 2019-12-09 10:54:04 2019-12-09 11:07:13 t 1 1 191633 611 0.00 2019-12-09 11:07:27 2019-12-09 11:08:38 t 1 1 191634 679 0.00 2019-12-09 11:08:40 2019-12-09 11:08:54 t 1 1 191637 679 0.00 2019-12-09 11:09:21 2019-12-09 11:09:56 t 1 1 191640 639 0.00 2019-12-09 11:08:48 2019-12-09 11:10:36 t 1 1 191647 679 0.00 2019-12-09 11:12:27 2019-12-09 11:12:47 t 1 1 191653 578 0.00 2019-12-09 00:34:55 2019-12-09 11:15:39 t 1 1 191656 639 0.00 2019-12-09 11:18:09 2019-12-09 11:18:32 t 1 1 191663 665 0.00 2019-12-09 11:19:46 2019-12-09 11:24:27 t 1 1 191665 679 0.00 2019-12-09 11:24:49 2019-12-09 11:25:15 t 1 1 191668 516 0.00 2019-12-09 11:25:47 2019-12-09 11:26:01 t 1 1 191673 516 0.00 2019-12-09 11:28:33 2019-12-09 11:28:56 t 1 1 191676 675 0.00 2019-12-09 11:26:13 2019-12-09 11:33:35 t 1 1 191678 459 0.00 2019-12-09 11:30:54 2019-12-09 11:34:00 t 1 2 191681 516 0.00 2019-12-09 11:34:24 2019-12-09 11:35:05 t 1 1 191682 562 0.00 2019-12-09 11:37:14 2019-12-09 11:37:23 t 1 1 191690 591 0.00 2019-12-09 11:15:28 2019-12-09 11:40:09 t 1 1 191692 481 0.00 2019-12-09 10:39:04 2019-12-09 11:40:41 t 1 1 191697 635 0.00 2019-12-09 11:03:51 2019-12-09 11:47:43 t 1 1 191705 562 0.00 2019-12-09 11:58:55 2019-12-09 11:59:02 t 1 1 191706 639 0.00 2019-12-09 12:01:12 2019-12-09 12:01:28 t 1 1 191708 707 0.00 2019-12-09 11:50:57 2019-12-09 12:02:36 t 1 1 191716 220 0.00 2019-12-09 11:07:12 2019-12-09 12:07:08 t 1 1 191717 645 0.00 2019-12-09 12:07:21 2019-12-09 12:07:30 t 1 1 191718 591 0.00 2019-12-09 11:40:09 2019-12-09 12:08:16 t 1 1 191720 639 0.00 2019-12-09 12:07:39 2019-12-09 12:09:07 t 1 1 191724 220 0.00 2019-12-09 12:07:30 2019-12-09 12:11:00 t 1 1 191725 734 0.00 2019-12-09 12:07:01 2019-12-09 12:12:46 t 1 1 191728 675 0.00 2019-12-09 12:10:41 2019-12-09 12:14:42 t 1 1 191730 740 0.00 2019-12-09 11:47:38 2019-12-09 12:16:49 t 1 1 191733 639 0.00 2019-12-09 12:17:24 2019-12-09 12:19:28 t 1 1 191734 736 0.00 2019-12-09 12:20:19 2019-12-09 12:20:35 t 1 1 191737 611 0.00 2019-12-09 12:15:50 2019-12-09 12:23:12 t 1 1 191745 645 0.00 2019-12-09 12:34:12 2019-12-09 12:34:24 t 1 1 191747 645 0.00 2019-12-09 12:35:28 2019-12-09 12:36:21 t 1 1 191750 671 0.00 2019-12-09 12:40:18 2019-12-09 12:41:20 t 1 1 191753 611 0.00 2019-12-09 12:38:31 2019-12-09 12:44:00 t 1 1 191757 220 0.00 2019-12-09 12:46:07 2019-12-09 12:47:10 t 1 2 191764 645 0.00 2019-12-09 12:53:04 2019-12-09 12:53:49 t 1 1 191766 639 0.00 2019-12-09 12:54:19 2019-12-09 12:54:41 t 1 1 191769 645 0.00 2019-12-09 12:55:55 2019-12-09 12:56:00 t 1 1 191773 736 0.00 2019-12-09 12:56:55 2019-12-09 12:57:14 t 1 1 191775 611 0.00 2019-12-09 12:55:58 2019-12-09 12:58:16 t 1 1 191779 514 0.00 2019-12-09 13:03:22 2019-12-09 13:06:32 t 1 1 191782 220 0.00 2019-12-09 13:10:16 2019-12-09 13:10:41 t 1 2 191785 220 0.00 2019-12-09 13:11:28 2019-12-09 13:13:44 t 1 2 191789 679 0.00 2019-12-09 13:16:22 2019-12-09 13:18:56 t 1 1 191790 679 0.00 2019-12-09 13:19:14 2019-12-09 13:20:20 t 1 1 191792 736 0.00 2019-12-09 13:04:49 2019-12-09 13:21:40 t 1 1 191793 611 0.00 2019-12-09 13:13:27 2019-12-09 13:23:08 t 1 1 191794 220 0.00 2019-12-09 12:17:40 2019-12-09 13:24:39 t 1 1 191439 738 0.00 2019-12-09 09:18:05 2019-12-09 09:19:25 t 1 1 191442 679 0.00 2019-12-09 09:15:19 2019-12-09 09:22:01 t 1 1 191447 611 0.00 2019-12-09 09:21:51 2019-12-09 09:24:11 t 1 1 191448 679 0.00 2019-12-09 09:25:05 2019-12-09 09:25:17 t 1 1 191449 615 0.00 2019-12-09 09:13:07 2019-12-09 09:25:31 t 1 1 191450 679 0.00 2019-12-09 09:26:05 2019-12-09 09:26:17 t 1 1 191452 637 0.00 2019-12-09 09:26:45 2019-12-09 09:28:14 t 1 1 191456 679 0.00 2019-12-09 09:30:09 2019-12-09 09:30:24 t 1 1 191457 679 0.00 2019-12-09 09:31:09 2019-12-09 09:31:21 t 1 1 191461 562 0.00 2019-12-09 09:31:41 2019-12-09 09:33:28 t 1 1 191464 679 0.00 2019-12-09 09:34:46 2019-12-09 09:35:12 t 1 1 191466 220 0.00 2019-12-09 08:51:29 2019-12-09 09:36:08 t 1 1 191476 516 0.00 2019-12-09 09:47:33 2019-12-09 09:52:03 t 1 1 191477 516 0.00 2019-12-09 09:52:13 2019-12-09 09:52:25 t 1 1 191478 738 0.00 2019-12-09 09:52:41 2019-12-09 09:52:53 t 1 1 191480 481 0.00 2019-12-09 08:09:01 2019-12-09 09:54:17 t 1 1 191481 625 0.00 2019-12-09 08:50:50 2019-12-09 09:54:35 t 1 1 191482 591 0.00 2019-12-09 08:42:40 2019-12-09 09:55:12 t 1 1 191483 734 0.00 2019-12-09 09:53:30 2019-12-09 09:56:23 t 1 1 191485 738 0.00 2019-12-09 09:55:06 2019-12-09 09:56:56 t 1 1 191488 738 0.00 2019-12-09 09:58:37 2019-12-09 09:58:56 t 1 1 191495 738 0.00 2019-12-09 10:05:02 2019-12-09 10:05:20 t 1 1 191498 622 0.00 2019-12-09 06:35:04 2019-12-09 10:08:05 t 1 1 191499 673 0.00 2019-12-09 09:29:31 2019-12-09 10:08:45 t 1 1 191501 738 0.00 2019-12-09 10:08:42 2019-12-09 10:09:27 t 1 1 191503 679 0.00 2019-12-09 10:09:40 2019-12-09 10:09:54 t 1 1 191507 738 0.00 2019-12-09 10:13:22 2019-12-09 10:14:16 t 1 1 191509 679 0.00 2019-12-09 10:15:24 2019-12-09 10:15:50 t 1 1 191510 625 0.00 2019-12-09 10:07:09 2019-12-09 10:16:26 t 1 1 191512 562 0.00 2019-12-09 10:11:13 2019-12-09 10:19:12 t 1 1 191514 639 0.00 2019-12-09 10:12:00 2019-12-09 10:19:57 t 1 1 191515 498 0.00 2019-12-09 08:11:40 2019-12-09 10:20:49 t 1 2 191520 591 0.00 2019-12-09 09:55:12 2019-12-09 10:25:00 t 1 1 191523 707 0.00 2019-12-09 10:02:59 2019-12-09 10:29:45 t 1 1 191524 738 0.00 2019-12-09 10:26:42 2019-12-09 10:30:47 t 1 1 191532 679 0.00 2019-12-09 10:35:07 2019-12-09 10:35:27 t 1 1 191534 679 0.00 2019-12-09 10:35:33 2019-12-09 10:35:59 t 1 1 191535 673 0.00 2019-12-09 10:35:07 2019-12-09 10:36:24 t 1 1 191537 679 0.00 2019-12-09 10:36:30 2019-12-09 10:37:08 t 1 1 191538 679 0.00 2019-12-09 10:37:14 2019-12-09 10:37:30 t 1 1 191541 481 0.00 2019-12-09 09:55:11 2019-12-09 10:38:27 t 1 1 191544 679 0.00 2019-12-09 10:38:47 2019-12-09 10:39:47 t 1 1 191545 691 0.00 2019-12-09 10:39:40 2019-12-09 10:40:03 t 1 1 191547 691 0.00 2019-12-09 10:40:03 2019-12-09 10:40:21 t 1 1 191550 691 0.00 2019-12-09 10:40:21 2019-12-09 10:40:51 t 1 1 191556 679 0.00 2019-12-09 10:41:38 2019-12-09 10:42:15 t 1 1 191558 679 0.00 2019-12-09 10:42:52 2019-12-09 10:43:15 t 1 1 191559 679 0.00 2019-12-09 10:43:21 2019-12-09 10:43:38 t 1 1 191560 220 0.00 2019-12-09 10:39:11 2019-12-09 10:43:48 t 1 1 191562 679 0.00 2019-12-09 10:43:44 2019-12-09 10:44:20 t 1 1 191564 691 0.00 2019-12-09 10:43:40 2019-12-09 10:44:47 t 1 1 191569 679 0.00 2019-12-09 10:46:33 2019-12-09 10:47:59 t 1 1 191571 679 0.00 2019-12-09 10:48:35 2019-12-09 10:48:50 t 1 1 191572 679 0.00 2019-12-09 10:48:56 2019-12-09 10:49:29 t 1 1 191574 637 0.00 2019-12-09 09:53:42 2019-12-09 10:49:48 t 1 1 191576 679 0.00 2019-12-09 10:49:57 2019-12-09 10:50:28 t 1 1 191577 734 0.00 2019-12-09 10:40:43 2019-12-09 10:50:50 t 1 1 191579 611 0.00 2019-12-09 10:33:00 2019-12-09 10:51:09 t 1 1 191581 679 0.00 2019-12-09 10:50:56 2019-12-09 10:51:32 t 1 1 191583 679 0.00 2019-12-09 10:51:37 2019-12-09 10:51:57 t 1 1 191584 675 0.00 2019-12-09 10:50:12 2019-12-09 10:52:23 t 1 1 191588 679 0.00 2019-12-09 10:52:03 2019-12-09 10:53:50 t 1 1 191591 562 0.00 2019-12-09 10:54:09 2019-12-09 10:54:32 t 1 1 191593 639 0.00 2019-12-09 10:53:47 2019-12-09 10:55:01 t 1 1 191594 679 0.00 2019-12-09 10:55:00 2019-12-09 10:55:21 t 1 1 191596 679 0.00 2019-12-09 10:55:26 2019-12-09 10:55:54 t 1 1 191597 679 0.00 2019-12-09 10:56:00 2019-12-09 10:56:20 t 1 1 191601 679 0.00 2019-12-09 10:57:03 2019-12-09 10:57:33 t 1 1 191604 679 0.00 2019-12-09 10:58:05 2019-12-09 10:58:59 t 1 1 191605 679 0.00 2019-12-09 10:59:05 2019-12-09 10:59:20 t 1 1 191606 679 0.00 2019-12-09 10:59:25 2019-12-09 11:00:16 t 1 1 191610 679 0.00 2019-12-09 11:00:42 2019-12-09 11:01:08 t 1 1 191611 679 0.00 2019-12-09 11:01:14 2019-12-09 11:01:30 t 1 1 191614 679 0.00 2019-12-09 11:02:17 2019-12-09 11:02:36 t 1 1 191615 625 0.00 2019-12-09 10:56:55 2019-12-09 11:02:59 t 1 1 191619 679 0.00 2019-12-09 11:04:14 2019-12-09 11:04:47 t 1 1 191620 611 0.00 2019-12-09 11:04:21 2019-12-09 11:04:58 t 1 1 191622 679 0.00 2019-12-09 11:05:27 2019-12-09 11:05:42 t 1 1 191623 611 0.00 2019-12-09 11:04:58 2019-12-09 11:06:08 t 1 1 191629 611 0.00 2019-12-09 11:05:55 2019-12-09 11:07:27 t 1 1 191631 679 0.00 2019-12-09 11:07:44 2019-12-09 11:08:16 t 1 1 191632 679 0.00 2019-12-09 11:08:22 2019-12-09 11:08:34 t 1 1 191638 691 0.00 2019-12-09 11:07:20 2019-12-09 11:10:25 t 1 1 191642 625 0.00 2019-12-09 11:02:59 2019-12-09 11:11:25 t 1 1 191646 679 0.00 2019-12-09 11:11:54 2019-12-09 11:12:22 t 1 1 191652 591 0.00 2019-12-09 11:00:53 2019-12-09 11:15:28 t 1 1 191654 734 0.00 2019-12-09 11:03:01 2019-12-09 11:17:21 t 1 1 191658 611 0.00 2019-12-09 11:08:38 2019-12-09 11:19:24 t 1 1 191660 675 0.00 2019-12-09 11:11:14 2019-12-09 11:23:03 t 1 1 191661 551 0.00 2019-12-09 08:45:39 2019-12-09 11:24:09 t 1 1 191662 691 0.00 2019-12-09 11:23:47 2019-12-09 11:24:15 t 1 1 191664 679 0.00 2019-12-09 11:14:45 2019-12-09 11:24:43 t 1 1 191666 691 0.00 2019-12-09 11:24:15 2019-12-09 11:25:23 t 1 1 191669 679 0.00 2019-12-09 11:25:46 2019-12-09 11:26:11 t 1 1 191671 562 0.00 2019-12-09 11:26:31 2019-12-09 11:26:41 t 1 1 191672 625 0.00 2019-12-09 11:18:53 2019-12-09 11:28:27 t 1 1 191677 607 0.00 2019-12-09 09:07:27 2019-12-09 11:33:52 t 1 1 191679 625 0.00 2019-12-09 11:30:40 2019-12-09 11:34:37 t 1 1 191683 671 0.00 2019-12-09 11:25:55 2019-12-09 11:37:29 t 1 1 191685 736 0.00 2019-12-09 11:37:43 2019-12-09 11:37:57 t 1 1 191686 611 0.00 2019-12-09 11:37:00 2019-12-09 11:38:44 t 1 1 191688 645 0.00 2019-12-09 11:38:57 2019-12-09 11:39:05 t 1 1 191689 514 0.00 2019-12-09 11:21:23 2019-12-09 11:39:53 t 1 1 191691 736 0.00 2019-12-09 11:40:09 2019-12-09 11:40:35 t 1 1 191693 514 0.00 2019-12-09 11:39:53 2019-12-09 11:41:17 t 1 1 191694 611 0.00 2019-12-09 11:38:43 2019-12-09 11:43:30 t 1 1 191695 740 0.00 2019-12-09 11:46:18 2019-12-09 11:46:18 f 1 1 191701 645 0.00 2019-12-09 11:41:57 2019-12-09 11:52:06 t 1 1 191702 639 0.00 2019-12-09 11:33:32 2019-12-09 11:57:38 t 1 1 191704 538 0.00 2019-12-09 11:31:42 2019-12-09 11:58:24 t 1 1 191707 637 0.00 2019-12-09 11:32:37 2019-12-09 12:02:00 t 1 1 191709 611 0.00 2019-12-09 11:55:23 2019-12-09 12:03:51 t 1 1 191710 734 0.00 2019-12-09 12:03:12 2019-12-09 12:04:54 t 1 1 191713 675 0.00 2019-12-09 11:51:00 2019-12-09 12:06:27 t 1 1 191715 645 0.00 2019-12-09 12:06:43 2019-12-09 12:06:44 t 1 1 191721 611 0.00 2019-12-09 12:08:04 2019-12-09 12:09:33 t 1 1 191722 639 0.00 2019-12-09 12:09:15 2019-12-09 12:10:17 t 1 1 191726 679 0.00 2019-12-09 12:11:35 2019-12-09 12:13:10 t 1 1 191729 639 0.00 2019-12-09 12:11:10 2019-12-09 12:14:46 t 1 1 191738 639 0.00 2019-12-09 12:25:04 2019-12-09 12:25:14 t 1 1 191739 625 0.00 2019-12-09 11:35:43 2019-12-09 12:25:23 t 1 1 191742 707 0.00 2019-12-09 12:12:18 2019-12-09 12:30:17 t 1 1 191743 639 0.00 2019-12-09 12:26:00 2019-12-09 12:30:43 t 1 1 191746 736 0.00 2019-12-09 12:34:51 2019-12-09 12:35:52 t 1 1 191749 487 0.00 2019-12-09 12:35:36 2019-12-09 12:41:11 t 1 2 191751 392 0.00 2019-12-09 11:18:31 2019-12-09 12:41:37 t 1 2 191755 498 0.00 2019-12-09 10:28:21 2019-12-09 12:46:44 t 1 2 191760 622 0.00 2019-12-09 11:55:04 2019-12-09 12:49:56 t 1 1 191770 607 0.00 2019-12-09 12:07:50 2019-12-09 12:56:14 t 1 1 191771 671 0.00 2019-12-09 12:43:29 2019-12-09 12:56:19 t 1 1 191774 639 0.00 2019-12-09 12:56:41 2019-12-09 12:57:15 t 1 1 191776 679 0.00 2019-12-09 12:37:11 2019-12-09 13:00:43 t 1 1 191777 220 0.00 2019-12-09 11:11:22 2019-12-09 13:03:45 t 1 2 191787 679 0.00 2019-12-09 13:00:43 2019-12-09 13:16:22 t 1 1 191788 544 0.00 2019-12-09 12:58:56 2019-12-09 13:18:08 t 1 1 191791 639 0.00 2019-12-09 13:18:06 2019-12-09 13:21:15 t 1 1 191795 516 0.00 2019-12-09 13:17:40 2019-12-09 13:26:23 t 1 1 191799 591 0.00 2019-12-09 13:29:47 2019-12-09 13:31:18 t 1 1 191805 736 0.00 2019-12-09 13:34:04 2019-12-09 13:34:34 t 1 1 191806 645 0.00 2019-12-09 13:34:23 2019-12-09 13:34:41 t 1 1 191809 645 0.00 2019-12-09 13:34:41 2019-12-09 13:35:33 t 1 1 191813 220 0.00 2019-12-09 13:24:39 2019-12-09 13:38:53 t 1 1 191815 694 0.00 2019-12-09 12:37:18 2019-12-09 13:40:11 t 1 1 191820 645 0.00 2019-12-09 13:42:01 2019-12-09 13:42:04 t 1 1 191822 562 0.00 2019-12-09 13:42:04 2019-12-09 13:43:31 t 1 1 191823 611 0.00 2019-12-09 13:38:35 2019-12-09 13:46:30 t 1 1 191825 311 0.00 2019-12-09 12:35:09 2019-12-09 13:48:33 t 1 2 191827 220 0.00 2019-12-09 13:38:53 2019-12-09 13:49:56 t 1 1 191830 562 0.00 2019-12-09 13:54:19 2019-12-09 13:54:52 t 1 1 191837 736 0.00 2019-12-09 13:58:54 2019-12-09 13:59:02 t 1 1 191839 622 0.00 2019-12-09 13:36:43 2019-12-09 13:59:59 t 1 1 191841 220 0.00 2019-12-09 13:49:56 2019-12-09 14:00:41 t 1 1 191845 220 0.00 2019-12-09 14:00:41 2019-12-09 14:08:13 t 1 1 191846 656 0.00 2019-12-09 13:33:06 2019-12-09 14:09:57 t 1 1 191847 639 0.00 2019-12-09 14:09:04 2019-12-09 14:11:16 t 1 1 191848 564 0.00 2019-12-09 11:50:35 2019-12-09 14:12:25 t 1 1 191851 656 0.00 2019-12-09 14:09:57 2019-12-09 14:13:20 t 1 1 191853 639 0.00 2019-12-09 14:13:09 2019-12-09 14:15:26 t 1 1 191856 656 0.00 2019-12-09 14:13:20 2019-12-09 14:18:38 t 1 1 191857 736 0.00 2019-12-09 14:18:55 2019-12-09 14:19:26 t 1 1 191858 611 0.00 2019-12-09 14:11:06 2019-12-09 14:20:47 t 1 1 191860 625 0.00 2019-12-09 12:54:26 2019-12-09 14:24:46 t 1 1 191867 639 0.00 2019-12-09 14:30:29 2019-12-09 14:30:42 t 1 1 191872 673 0.00 2019-12-09 14:27:31 2019-12-09 14:42:00 t 1 1 191878 639 0.00 2019-12-09 14:43:49 2019-12-09 14:45:54 t 1 1 191879 707 0.00 2019-12-09 14:47:44 2019-12-09 14:48:48 t 1 1 191884 736 0.00 2019-12-09 14:52:02 2019-12-09 14:52:14 t 1 1 191891 679 0.00 2019-12-09 14:49:38 2019-12-09 14:56:44 t 1 1 191894 481 0.00 2019-12-09 11:40:41 2019-12-09 14:59:00 t 1 1 191895 220 0.00 2019-12-09 14:53:56 2019-12-09 15:02:30 t 1 1 191896 220 0.00 2019-12-09 15:02:30 2019-12-09 15:07:36 t 1 1 191899 736 0.00 2019-12-09 15:13:06 2019-12-09 15:13:16 t 1 1 191902 679 0.00 2019-12-09 15:10:54 2019-12-09 15:13:43 t 1 1 191903 578 0.00 2019-12-09 15:13:23 2019-12-09 15:14:33 t 1 1 191905 734 0.00 2019-12-09 14:56:30 2019-12-09 15:16:46 t 1 1 191910 639 0.00 2019-12-09 15:15:18 2019-12-09 15:21:28 t 1 1 191912 740 0.00 2019-12-09 15:17:04 2019-12-09 15:22:05 t 1 1 191913 498 0.00 2019-12-09 15:22:30 2019-12-09 15:22:30 f 1 2 191914 498 0.00 2019-12-09 15:22:59 2019-12-09 15:22:59 f 1 2 191915 625 0.00 2019-12-09 14:27:53 2019-12-09 15:23:48 t 1 1 191917 673 0.00 2019-12-09 14:42:00 2019-12-09 15:25:01 t 1 1 191919 639 0.00 2019-12-09 15:22:50 2019-12-09 15:28:36 t 1 1 191921 498 0.00 2019-12-09 15:30:15 2019-12-09 15:30:15 f 1 2 191923 707 0.00 2019-12-09 14:51:41 2019-12-09 15:34:34 t 1 1 191924 696 0.00 2019-12-09 15:20:16 2019-12-09 15:35:31 t 1 1 191927 639 0.00 2019-12-09 15:38:14 2019-12-09 15:38:38 t 1 1 191930 639 0.00 2019-12-09 15:40:52 2019-12-09 15:41:39 t 1 1 191933 736 0.00 2019-12-09 15:43:04 2019-12-09 15:43:20 t 1 1 191935 639 0.00 2019-12-09 15:43:00 2019-12-09 15:43:53 t 1 1 191939 736 0.00 2019-12-09 15:47:41 2019-12-09 15:48:10 t 1 1 191941 675 0.00 2019-12-09 15:47:27 2019-12-09 15:50:14 t 1 1 191947 514 0.00 2019-12-09 15:34:03 2019-12-09 16:02:30 t 1 1 191950 694 0.00 2019-12-09 13:57:52 2019-12-09 16:05:00 t 1 1 191952 679 0.00 2019-12-09 16:04:56 2019-12-09 16:05:16 t 1 1 191956 696 0.00 2019-12-09 16:03:27 2019-12-09 16:07:56 t 1 1 191958 736 0.00 2019-12-09 16:09:54 2019-12-09 16:10:09 t 1 1 191961 679 0.00 2019-12-09 16:10:19 2019-12-09 16:10:39 t 1 1 191964 679 0.00 2019-12-09 16:11:23 2019-12-09 16:11:44 t 1 1 191965 679 0.00 2019-12-09 16:11:50 2019-12-09 16:12:16 t 1 1 191966 679 0.00 2019-12-09 16:12:22 2019-12-09 16:12:40 t 1 1 191967 679 0.00 2019-12-09 16:12:46 2019-12-09 16:13:18 t 1 1 191969 639 0.00 2019-12-09 16:13:09 2019-12-09 16:13:58 t 1 1 191973 611 0.00 2019-12-09 16:10:41 2019-12-09 16:15:01 t 1 1 191974 679 0.00 2019-12-09 16:14:05 2019-12-09 16:16:16 t 1 1 191975 679 0.00 2019-12-09 16:16:22 2019-12-09 16:16:38 t 1 1 191981 736 0.00 2019-12-09 16:18:16 2019-12-09 16:18:50 t 1 1 191984 679 0.00 2019-12-09 16:19:36 2019-12-09 16:20:01 t 1 1 191986 679 0.00 2019-12-09 16:20:34 2019-12-09 16:20:50 t 1 1 191987 679 0.00 2019-12-09 16:20:56 2019-12-09 16:21:28 t 1 1 191992 679 0.00 2019-12-09 16:22:33 2019-12-09 16:22:51 t 1 1 191997 679 0.00 2019-12-09 16:24:34 2019-12-09 16:24:56 t 1 1 192000 679 0.00 2019-12-09 16:25:40 2019-12-09 16:25:56 t 1 1 192001 679 0.00 2019-12-09 16:26:01 2019-12-09 16:26:33 t 1 1 192005 687 0.00 2019-12-09 16:11:40 2019-12-09 16:28:03 t 1 1 191768 611 0.00 2019-12-09 12:48:29 2019-12-09 12:55:59 t 1 1 191772 639 0.00 2019-12-09 12:54:50 2019-12-09 12:56:28 t 1 1 191778 639 0.00 2019-12-09 13:05:53 2019-12-09 13:06:25 t 1 1 191780 675 0.00 2019-12-09 13:05:38 2019-12-09 13:08:13 t 1 1 191781 740 0.00 2019-12-09 13:05:03 2019-12-09 13:09:46 t 1 1 191783 220 0.00 2019-12-09 13:10:54 2019-12-09 13:11:09 t 1 2 191784 611 0.00 2019-12-09 12:59:38 2019-12-09 13:13:27 t 1 1 191786 639 0.00 2019-12-09 13:13:57 2019-12-09 13:15:28 t 1 1 191796 736 0.00 2019-12-09 13:25:35 2019-12-09 13:26:40 t 1 1 191797 645 0.00 2019-12-09 12:56:45 2019-12-09 13:27:21 t 1 1 191801 514 0.00 2019-12-09 13:29:37 2019-12-09 13:31:26 t 1 1 191803 611 0.00 2019-12-09 13:23:08 2019-12-09 13:31:34 t 1 1 191810 562 0.00 2019-12-09 13:34:56 2019-12-09 13:35:43 t 1 1 191811 562 0.00 2019-12-09 13:35:54 2019-12-09 13:37:43 t 1 1 191812 611 0.00 2019-12-09 13:31:34 2019-12-09 13:38:36 t 1 1 191817 707 0.00 2019-12-09 13:19:47 2019-12-09 13:41:20 t 1 1 191819 645 0.00 2019-12-09 13:42:01 2019-12-09 13:42:01 t 1 1 191821 639 0.00 2019-12-09 13:40:47 2019-12-09 13:42:28 t 1 1 191831 562 0.00 2019-12-09 13:55:21 2019-12-09 13:55:59 t 1 1 191833 490 0.00 2019-12-09 13:28:06 2019-12-09 13:56:23 t 1 1 191836 220 0.00 2019-12-09 13:47:34 2019-12-09 13:58:43 t 1 2 191838 639 0.00 2019-12-09 13:42:20 2019-12-09 13:59:13 t 1 1 191844 503 0.00 2019-12-09 14:03:06 2019-12-09 14:07:33 t 1 1 191849 581 0.00 2019-12-09 14:11:18 2019-12-09 14:12:30 t 1 1 191854 707 0.00 2019-12-09 14:11:19 2019-12-09 14:17:43 t 1 1 191861 220 0.00 2019-12-09 14:18:02 2019-12-09 14:25:40 t 1 1 191864 673 0.00 2019-12-09 14:07:46 2019-12-09 14:27:31 t 1 1 191865 639 0.00 2019-12-09 14:27:18 2019-12-09 14:28:28 t 1 1 191868 220 0.00 2019-12-09 14:25:40 2019-12-09 14:31:07 t 1 1 191869 639 0.00 2019-12-09 14:33:26 2019-12-09 14:35:41 t 1 1 191873 665 0.00 2019-12-09 14:42:08 2019-12-09 14:43:28 t 1 1 191876 675 0.00 2019-12-09 14:25:35 2019-12-09 14:44:13 t 1 1 191882 736 0.00 2019-12-09 14:49:30 2019-12-09 14:50:25 t 1 1 191883 740 0.00 2019-12-09 14:50:57 2019-12-09 14:51:50 t 1 1 191886 220 0.00 2019-12-09 14:52:40 2019-12-09 14:52:50 t 1 1 191893 665 0.00 2019-12-09 14:42:50 2019-12-09 14:58:02 t 1 1 191897 639 0.00 2019-12-09 14:56:27 2019-12-09 15:09:25 t 1 1 191898 687 0.00 2019-12-09 14:44:06 2019-12-09 15:10:21 t 1 1 191901 220 0.00 2019-12-09 15:07:36 2019-12-09 15:13:30 t 1 1 191904 607 0.00 2019-12-09 12:56:14 2019-12-09 15:15:22 t 1 1 191906 740 0.00 2019-12-09 14:51:50 2019-12-09 15:17:04 t 1 1 191907 581 0.00 2019-12-09 14:56:46 2019-12-09 15:17:22 t 1 1 191909 562 0.00 2019-12-09 15:20:25 2019-12-09 15:20:35 t 1 1 191920 625 0.00 2019-12-09 15:23:48 2019-12-09 15:28:55 t 1 1 191922 625 0.00 2019-12-09 15:29:16 2019-12-09 15:32:24 t 1 1 191932 687 0.00 2019-12-09 15:29:54 2019-12-09 15:42:43 t 1 1 191934 673 0.00 2019-12-09 15:25:01 2019-12-09 15:43:43 t 1 1 191936 667 0.00 2019-12-09 15:41:40 2019-12-09 15:43:59 t 1 1 191937 736 0.00 2019-12-09 15:44:03 2019-12-09 15:44:23 t 1 1 191940 687 0.00 2019-12-09 15:42:43 2019-12-09 15:49:46 t 1 1 191942 696 0.00 2019-12-09 15:35:31 2019-12-09 15:55:12 t 1 1 191943 673 0.00 2019-12-09 15:43:43 2019-12-09 16:00:09 t 1 1 191945 615 0.00 2019-12-09 15:32:18 2019-12-09 16:01:24 t 1 1 191946 639 0.00 2019-12-09 16:01:45 2019-12-09 16:02:15 t 1 1 191953 679 0.00 2019-12-09 16:05:22 2019-12-09 16:05:53 t 1 1 191954 679 0.00 2019-12-09 16:05:59 2019-12-09 16:07:12 t 1 1 191955 679 0.00 2019-12-09 16:07:19 2019-12-09 16:07:33 t 1 1 191957 679 0.00 2019-12-09 16:07:39 2019-12-09 16:08:06 t 1 1 191959 679 0.00 2019-12-09 16:08:12 2019-12-09 16:10:13 t 1 1 191962 679 0.00 2019-12-09 16:10:46 2019-12-09 16:11:17 t 1 1 191963 687 0.00 2019-12-09 15:49:46 2019-12-09 16:11:40 t 1 1 191968 679 0.00 2019-12-09 16:13:24 2019-12-09 16:13:42 t 1 1 191970 679 0.00 2019-12-09 16:13:48 2019-12-09 16:13:59 t 1 1 191972 639 0.00 2019-12-09 16:14:12 2019-12-09 16:14:44 t 1 1 191977 679 0.00 2019-12-09 16:16:44 2019-12-09 16:17:21 t 1 1 191978 679 0.00 2019-12-09 16:17:27 2019-12-09 16:17:44 t 1 1 191979 673 0.00 2019-12-09 16:00:09 2019-12-09 16:18:17 t 1 1 191980 679 0.00 2019-12-09 16:17:51 2019-12-09 16:18:24 t 1 1 191982 679 0.00 2019-12-09 16:18:30 2019-12-09 16:18:52 t 1 1 191983 679 0.00 2019-12-09 16:18:58 2019-12-09 16:19:30 t 1 1 191985 679 0.00 2019-12-09 16:20:07 2019-12-09 16:20:29 t 1 1 191988 679 0.00 2019-12-09 16:21:34 2019-12-09 16:21:55 t 1 1 191990 498 0.00 2019-12-09 13:30:52 2019-12-09 16:22:10 t 1 2 191991 679 0.00 2019-12-09 16:22:01 2019-12-09 16:22:27 t 1 1 191993 679 0.00 2019-12-09 16:22:57 2019-12-09 16:23:28 t 1 1 191995 679 0.00 2019-12-09 16:23:33 2019-12-09 16:23:50 t 1 1 191996 679 0.00 2019-12-09 16:23:56 2019-12-09 16:24:29 t 1 1 191998 538 0.00 2019-12-09 15:45:08 2019-12-09 16:25:31 t 1 1 192004 679 0.00 2019-12-09 16:27:44 2019-12-09 16:27:45 t 1 1 192007 736 0.00 2019-12-09 16:28:26 2019-12-09 16:29:06 t 1 1 192008 736 0.00 2019-12-09 16:29:12 2019-12-09 16:29:26 t 1 1 192009 611 0.00 2019-12-09 16:21:45 2019-12-09 16:30:44 t 1 1 192013 562 0.00 2019-12-09 16:32:39 2019-12-09 16:34:28 t 1 1 192018 700 0.00 2019-12-09 16:38:45 2019-12-09 16:40:23 t 1 1 192020 562 0.00 2019-12-09 16:42:21 2019-12-09 16:42:44 t 1 1 192021 673 0.00 2019-12-09 16:33:17 2019-12-09 16:44:12 t 1 1 192025 516 0.00 2019-12-09 16:44:42 2019-12-09 16:47:31 t 1 1 192027 724 0.00 2019-12-09 16:32:14 2019-12-09 16:48:28 t 1 1 192032 687 0.00 2019-12-09 16:35:40 2019-12-09 16:50:41 t 1 1 192033 691 0.00 2019-12-09 16:47:03 2019-12-09 16:51:11 t 1 1 192034 736 0.00 2019-12-09 16:46:06 2019-12-09 16:52:10 t 1 1 192035 734 0.00 2019-12-09 16:41:33 2019-12-09 16:52:28 t 1 1 192037 656 0.00 2019-12-09 14:18:38 2019-12-09 16:53:01 t 1 1 192038 740 0.00 2019-12-09 16:45:48 2019-12-09 16:54:12 t 1 1 192042 694 0.00 2019-12-09 16:46:38 2019-12-09 16:58:05 t 1 1 192043 516 0.00 2019-12-09 16:51:30 2019-12-09 16:59:13 t 1 1 192044 736 0.00 2019-12-09 16:59:46 2019-12-09 17:00:15 t 1 1 192045 694 0.00 2019-12-09 16:58:05 2019-12-09 17:00:31 t 1 1 192049 528 0.00 2019-12-09 17:03:02 2019-12-09 17:04:28 t 1 1 192052 656 0.00 2019-12-09 16:53:01 2019-12-09 17:09:01 t 1 1 192055 673 0.00 2019-12-09 16:44:12 2019-12-09 17:12:17 t 1 1 192066 538 0.00 2019-12-09 16:35:44 2019-12-09 17:23:37 t 1 1 192068 639 0.00 2019-12-09 17:21:33 2019-12-09 17:23:54 t 1 1 192073 516 0.00 2019-12-09 17:29:20 2019-12-09 17:32:03 t 1 1 192076 639 0.00 2019-12-09 17:33:34 2019-12-09 17:35:28 t 1 1 192077 585 0.00 2019-12-09 17:36:28 2019-12-09 17:36:28 f 1 1 192079 700 0.00 2019-12-09 17:33:10 2019-12-09 17:38:02 t 1 1 191798 645 0.00 2019-12-09 13:29:33 2019-12-09 13:30:15 t 1 1 191800 578 0.00 2019-12-09 11:15:39 2019-12-09 13:31:19 t 1 1 191802 736 0.00 2019-12-09 13:26:53 2019-12-09 13:31:31 t 1 1 191804 637 0.00 2019-12-09 12:51:11 2019-12-09 13:34:28 t 1 1 191807 622 0.00 2019-12-09 12:49:56 2019-12-09 13:35:11 t 1 1 191808 459 0.00 2019-12-09 13:04:14 2019-12-09 13:35:27 t 1 2 191814 736 0.00 2019-12-09 13:39:15 2019-12-09 13:39:47 t 1 1 191816 514 0.00 2019-12-09 13:38:38 2019-12-09 13:40:11 t 1 1 191818 645 0.00 2019-12-09 13:36:15 2019-12-09 13:41:38 t 1 1 191824 578 0.00 2019-12-09 13:31:19 2019-12-09 13:47:28 t 1 1 191826 687 0.00 2019-12-09 13:46:20 2019-12-09 13:49:20 t 1 1 191828 711 0.00 2019-12-09 13:25:47 2019-12-09 13:53:31 t 1 1 191829 660 0.00 2019-12-09 13:16:37 2019-12-09 13:53:45 t 1 1 191832 711 0.00 2019-12-09 13:53:31 2019-12-09 13:56:14 t 1 1 191834 611 0.00 2019-12-09 13:50:10 2019-12-09 13:56:33 t 1 1 191835 694 0.00 2019-12-09 13:40:11 2019-12-09 13:57:52 t 1 1 191840 591 0.00 2019-12-09 13:34:36 2019-12-09 14:00:02 t 1 1 191842 671 0.00 2019-12-09 13:53:38 2019-12-09 14:00:50 t 1 1 191843 503 0.00 2019-12-09 14:01:54 2019-12-09 14:03:06 t 1 1 191850 622 0.00 2019-12-09 13:59:59 2019-12-09 14:13:04 t 1 1 191852 311 0.00 2019-12-09 14:09:27 2019-12-09 14:13:28 t 1 2 191855 220 0.00 2019-12-09 14:08:13 2019-12-09 14:18:02 t 1 1 191859 516 0.00 2019-12-09 14:10:44 2019-12-09 14:24:36 t 1 1 191862 639 0.00 2019-12-09 14:17:05 2019-12-09 14:26:27 t 1 1 191863 591 0.00 2019-12-09 14:26:16 2019-12-09 14:27:20 t 1 1 191866 736 0.00 2019-12-09 14:29:03 2019-12-09 14:29:27 t 1 1 191870 220 0.00 2019-12-09 14:31:07 2019-12-09 14:38:39 t 1 1 191871 392 0.00 2019-12-09 14:01:03 2019-12-09 14:40:10 t 1 2 191874 220 0.00 2019-12-09 14:38:39 2019-12-09 14:43:47 t 1 1 191875 671 0.00 2019-12-09 14:28:48 2019-12-09 14:43:59 t 1 1 191877 538 0.00 2019-12-09 14:43:12 2019-12-09 14:45:24 t 1 1 191880 709 0.00 2019-12-09 14:03:48 2019-12-09 14:48:56 t 1 1 191881 639 0.00 2019-12-09 14:48:53 2019-12-09 14:49:33 t 1 1 191885 220 0.00 2019-12-09 14:43:47 2019-12-09 14:52:40 t 1 1 191887 639 0.00 2019-12-09 14:51:21 2019-12-09 14:53:11 t 1 1 191888 639 0.00 2019-12-09 14:53:25 2019-12-09 14:53:41 t 1 1 191889 675 0.00 2019-12-09 14:48:09 2019-12-09 14:54:40 t 1 1 191890 220 0.00 2019-12-09 14:00:37 2019-12-09 14:55:58 t 1 2 191892 671 0.00 2019-12-09 14:49:34 2019-12-09 14:57:19 t 1 1 191900 578 0.00 2019-12-09 13:47:28 2019-12-09 15:13:23 t 1 1 191908 660 0.00 2019-12-09 13:53:45 2019-12-09 15:17:47 t 1 1 191911 498 0.00 2019-12-09 15:22:00 2019-12-09 15:22:00 f 1 2 191916 485 0.00 2019-12-09 15:18:55 2019-12-09 15:24:20 t 1 1 191918 736 0.00 2019-12-09 15:25:11 2019-12-09 15:25:26 t 1 1 191925 639 0.00 2019-12-09 15:33:13 2019-12-09 15:36:17 t 1 1 191926 562 0.00 2019-12-09 15:36:20 2019-12-09 15:37:00 t 1 1 191928 625 0.00 2019-12-09 15:32:23 2019-12-09 15:39:39 t 1 1 191929 622 0.00 2019-12-09 14:13:04 2019-12-09 15:41:26 t 1 1 191931 637 0.00 2019-12-09 13:39:00 2019-12-09 15:42:16 t 1 1 191938 622 0.00 2019-12-09 15:41:26 2019-12-09 15:44:53 t 1 1 191944 679 0.00 2019-12-09 15:58:39 2019-12-09 16:00:32 t 1 1 191948 696 0.00 2019-12-09 15:55:12 2019-12-09 16:03:27 t 1 1 191949 679 0.00 2019-12-09 16:01:25 2019-12-09 16:04:50 t 1 1 191951 736 0.00 2019-12-09 16:04:52 2019-12-09 16:05:06 t 1 1 191960 528 0.00 2019-12-09 15:48:52 2019-12-09 16:10:31 t 1 1 191971 734 0.00 2019-12-09 16:13:19 2019-12-09 16:14:18 t 1 1 191976 611 0.00 2019-12-09 16:15:00 2019-12-09 16:16:46 t 1 1 191989 544 0.00 2019-12-09 16:17:35 2019-12-09 16:21:55 t 1 1 191994 639 0.00 2019-12-09 16:22:23 2019-12-09 16:23:28 t 1 1 191999 679 0.00 2019-12-09 16:25:02 2019-12-09 16:25:34 t 1 1 192002 679 0.00 2019-12-09 16:26:38 2019-12-09 16:26:53 t 1 1 192003 679 0.00 2019-12-09 16:26:59 2019-12-09 16:27:37 t 1 1 192006 679 0.00 2019-12-09 16:27:45 2019-12-09 16:28:26 t 1 1 192014 736 0.00 2019-12-09 16:34:16 2019-12-09 16:34:33 t 1 1 192019 734 0.00 2019-12-09 16:14:18 2019-12-09 16:41:16 t 1 1 192022 516 0.00 2019-12-09 16:42:58 2019-12-09 16:44:42 t 1 1 192023 740 0.00 2019-12-09 16:23:27 2019-12-09 16:45:48 t 1 1 192024 694 0.00 2019-12-09 16:05:00 2019-12-09 16:46:39 t 1 1 192026 516 0.00 2019-12-09 16:47:31 2019-12-09 16:48:17 t 1 1 192029 639 0.00 2019-12-09 16:48:53 2019-12-09 16:49:13 t 1 1 192030 562 0.00 2019-12-09 16:49:14 2019-12-09 16:49:26 t 1 1 192046 709 0.00 2019-12-09 15:06:16 2019-12-09 17:02:47 t 1 1 192048 700 0.00 2019-12-09 16:57:13 2019-12-09 17:03:45 t 1 1 192050 485 0.00 2019-12-09 16:49:13 2019-12-09 17:04:39 t 1 1 192056 392 0.00 2019-12-09 15:45:26 2019-12-09 17:14:11 t 1 2 192059 562 0.00 2019-12-09 17:03:05 2019-12-09 17:19:26 t 1 1 192061 639 0.00 2019-12-09 17:20:00 2019-12-09 17:20:09 t 1 1 192063 516 0.00 2019-12-09 17:18:17 2019-12-09 17:21:17 t 1 1 192064 736 0.00 2019-12-09 17:21:09 2019-12-09 17:21:33 t 1 1 192065 689 0.00 2019-12-09 17:21:55 2019-12-09 17:23:02 t 1 1 192067 564 0.00 2019-12-09 14:12:24 2019-12-09 17:23:43 t 1 1 192069 392 0.00 2019-12-09 17:16:57 2019-12-09 17:28:02 t 1 2 192074 718 0.00 2019-12-09 17:29:36 2019-12-09 17:32:05 t 1 1 192078 562 0.00 2019-12-09 17:37:41 2019-12-09 17:37:52 t 1 1 192083 700 0.00 2019-12-09 17:39:25 2019-12-09 17:41:13 t 1 1 192090 615 0.00 2019-12-09 17:30:41 2019-12-09 17:51:51 t 1 1 192092 615 0.00 2019-12-09 17:51:51 2019-12-09 17:53:56 t 1 1 192096 627 0.00 2019-12-09 17:56:27 2019-12-09 17:57:08 t 1 1 192106 726 0.00 2019-12-09 18:06:41 2019-12-09 18:06:41 t 1 1 192107 726 0.00 2019-12-09 18:06:41 2019-12-09 18:07:42 t 1 1 192108 736 0.00 2019-12-09 18:07:42 2019-12-09 18:07:51 t 1 1 192113 627 0.00 2019-12-09 18:11:00 2019-12-09 18:11:03 t 1 1 192118 516 0.00 2019-12-09 18:15:33 2019-12-09 18:17:50 t 1 1 192122 736 0.00 2019-12-09 18:19:52 2019-12-09 18:21:28 t 1 1 192123 736 0.00 2019-12-09 18:20:44 2019-12-09 18:23:38 t 1 1 192125 736 0.00 2019-12-09 18:24:30 2019-12-09 18:26:10 t 1 1 192126 718 0.00 2019-12-09 18:08:32 2019-12-09 18:26:44 t 1 1 192128 711 0.00 2019-12-09 17:05:11 2019-12-09 18:27:37 t 1 1 192130 718 0.00 2019-12-09 18:26:44 2019-12-09 18:31:55 t 1 1 192131 562 0.00 2019-12-09 18:33:01 2019-12-09 18:33:08 t 1 1 192134 734 0.00 2019-12-09 18:12:41 2019-12-09 18:35:09 t 1 1 192139 562 0.00 2019-12-09 18:40:20 2019-12-09 18:40:51 t 1 1 192142 622 0.00 2019-12-09 18:26:39 2019-12-09 18:42:53 t 1 1 192143 481 0.00 2019-12-09 17:53:44 2019-12-09 18:43:36 t 1 1 192144 639 0.00 2019-12-09 18:45:01 2019-12-09 18:45:09 t 1 1 192145 562 0.00 2019-12-09 18:46:49 2019-12-09 18:47:15 t 1 1 192150 736 0.00 2019-12-09 18:54:36 2019-12-09 18:55:02 t 1 1 192010 562 0.00 2019-12-09 16:30:45 2019-12-09 16:30:49 t 1 1 192011 673 0.00 2019-12-09 16:18:17 2019-12-09 16:33:17 t 1 1 192012 578 0.00 2019-12-09 15:14:32 2019-12-09 16:34:12 t 1 1 192015 538 0.00 2019-12-09 16:25:46 2019-12-09 16:35:40 t 1 1 192016 700 0.00 2019-12-09 16:21:37 2019-12-09 16:38:37 t 1 1 192017 220 0.00 2019-12-09 15:13:30 2019-12-09 16:39:52 t 1 1 192028 637 0.00 2019-12-09 16:10:47 2019-12-09 16:49:09 t 1 1 192031 516 0.00 2019-12-09 16:50:08 2019-12-09 16:50:36 t 1 1 192036 734 0.00 2019-12-09 16:52:27 2019-12-09 16:52:35 t 1 1 192039 311 0.00 2019-12-09 16:47:06 2019-12-09 16:54:29 t 1 2 192040 639 0.00 2019-12-09 16:51:02 2019-12-09 16:55:21 t 1 1 192041 700 0.00 2019-12-09 16:40:22 2019-12-09 16:57:13 t 1 1 192047 528 0.00 2019-12-09 17:01:46 2019-12-09 17:03:28 t 1 1 192051 711 0.00 2019-12-09 16:25:49 2019-12-09 17:05:11 t 1 1 192053 625 0.00 2019-12-09 15:46:08 2019-12-09 17:10:06 t 1 1 192054 675 0.00 2019-12-09 16:46:32 2019-12-09 17:10:33 t 1 1 192057 220 0.00 2019-12-09 16:12:04 2019-12-09 17:17:21 t 1 2 192058 687 0.00 2019-12-09 16:59:04 2019-12-09 17:19:05 t 1 1 192060 734 0.00 2019-12-09 16:52:35 2019-12-09 17:19:26 t 1 1 192062 736 0.00 2019-12-09 17:20:11 2019-12-09 17:20:33 t 1 1 192070 528 0.00 2019-12-09 17:03:34 2019-12-09 17:29:19 t 1 1 192071 615 0.00 2019-12-09 17:13:25 2019-12-09 17:30:41 t 1 1 192072 607 0.00 2019-12-09 17:10:59 2019-12-09 17:31:56 t 1 1 192075 639 0.00 2019-12-09 17:34:08 2019-12-09 17:35:24 t 1 1 192080 528 0.00 2019-12-09 17:29:19 2019-12-09 17:38:38 t 1 1 192081 700 0.00 2019-12-09 17:38:02 2019-12-09 17:39:26 t 1 1 192088 562 0.00 2019-12-09 17:45:26 2019-12-09 17:46:34 t 1 1 192089 736 0.00 2019-12-09 17:47:25 2019-12-09 17:49:01 t 1 1 192093 724 0.00 2019-12-09 17:48:30 2019-12-09 17:54:58 t 1 1 192097 736 0.00 2019-12-09 17:56:15 2019-12-09 17:57:41 t 1 1 192101 687 0.00 2019-12-09 17:28:40 2019-12-09 18:01:42 t 1 1 192103 675 0.00 2019-12-09 17:57:09 2019-12-09 18:02:35 t 1 1 192105 740 0.00 2019-12-09 17:54:24 2019-12-09 18:04:51 t 1 1 192109 392 0.00 2019-12-09 17:32:21 2019-12-09 18:08:06 t 1 2 192111 718 0.00 2019-12-09 17:42:22 2019-12-09 18:08:32 t 1 1 192115 724 0.00 2019-12-09 17:57:27 2019-12-09 18:11:34 t 1 1 192119 627 0.00 2019-12-09 18:11:51 2019-12-09 18:19:32 t 1 1 192121 671 0.00 2019-12-09 18:04:47 2019-12-09 18:20:58 t 1 1 192124 581 0.00 2019-12-09 18:16:18 2019-12-09 18:23:46 t 1 1 192133 516 0.00 2019-12-09 18:34:50 2019-12-09 18:35:07 t 1 1 192135 639 0.00 2019-12-09 18:35:52 2019-12-09 18:36:03 t 1 1 192136 736 0.00 2019-12-09 18:36:18 2019-12-09 18:37:10 t 1 1 192137 637 0.00 2019-12-09 16:57:26 2019-12-09 18:38:20 t 1 1 192141 649 0.00 2019-12-09 18:33:22 2019-12-09 18:41:27 t 1 1 192147 514 0.00 2019-12-09 16:04:57 2019-12-09 18:49:31 t 1 1 192155 528 0.00 2019-12-09 18:42:53 2019-12-09 19:01:54 t 1 1 192157 485 0.00 2019-12-09 18:56:27 2019-12-09 19:03:50 t 1 1 192161 736 0.00 2019-12-09 18:58:20 2019-12-09 19:05:00 t 1 1 192163 722 0.00 2019-12-09 19:05:14 2019-12-09 19:05:51 t 1 1 192166 639 0.00 2019-12-09 19:07:27 2019-12-09 19:07:35 t 1 1 192171 722 0.00 2019-12-09 19:08:22 2019-12-09 19:08:29 t 1 1 192172 649 0.00 2019-12-09 18:58:45 2019-12-09 19:10:34 t 1 1 192173 724 0.00 2019-12-09 19:01:03 2019-12-09 19:12:01 t 1 1 192174 736 0.00 2019-12-09 19:12:42 2019-12-09 19:12:57 t 1 1 192176 607 0.00 2019-12-09 18:53:43 2019-12-09 19:13:09 t 1 1 192179 591 0.00 2019-12-09 16:31:57 2019-12-09 19:15:39 t 1 1 192180 689 0.00 2019-12-09 19:15:51 2019-12-09 19:16:17 t 1 1 192182 627 0.00 2019-12-09 19:16:59 2019-12-09 19:17:08 t 1 1 192183 722 0.00 2019-12-09 19:09:52 2019-12-09 19:17:20 t 1 1 192185 528 0.00 2019-12-09 19:02:55 2019-12-09 19:17:45 t 1 1 192187 627 0.00 2019-12-09 19:18:44 2019-12-09 19:18:48 t 1 1 192191 722 0.00 2019-12-09 19:22:30 2019-12-09 19:22:32 t 1 1 192192 736 0.00 2019-12-09 19:22:56 2019-12-09 19:23:03 t 1 1 192193 722 0.00 2019-12-09 19:23:09 2019-12-09 19:23:43 t 1 1 192195 711 0.00 2019-12-09 19:13:07 2019-12-09 19:24:13 t 1 1 192197 562 0.00 2019-12-09 19:26:52 2019-12-09 19:27:02 t 1 1 192205 722 0.00 2019-12-09 19:33:15 2019-12-09 19:33:40 t 1 1 192211 722 0.00 2019-12-09 19:36:23 2019-12-09 19:36:50 t 1 1 192215 660 0.00 2019-12-09 19:29:22 2019-12-09 19:37:48 t 1 1 192220 722 0.00 2019-12-09 19:40:37 2019-12-09 19:41:12 t 1 1 192226 722 0.00 2019-12-09 19:44:27 2019-12-09 19:44:29 t 1 1 192228 660 0.00 2019-12-09 19:37:48 2019-12-09 19:45:12 t 1 1 192229 581 0.00 2019-12-09 19:17:18 2019-12-09 19:46:23 t 1 1 192234 627 0.00 2019-12-09 19:33:13 2019-12-09 19:48:51 t 1 1 192236 627 0.00 2019-12-09 19:48:57 2019-12-09 19:49:03 t 1 1 192237 722 0.00 2019-12-09 19:49:23 2019-12-09 19:49:25 t 1 1 192241 722 0.00 2019-12-09 19:51:42 2019-12-09 19:52:18 t 1 1 192244 722 0.00 2019-12-09 19:53:27 2019-12-09 19:53:52 t 1 1 192246 562 0.00 2019-12-09 19:53:22 2019-12-09 19:54:02 t 1 1 192249 722 0.00 2019-12-09 19:55:42 2019-12-09 19:56:15 t 1 1 192252 660 0.00 2019-12-09 19:51:17 2019-12-09 19:57:47 t 1 1 192253 722 0.00 2019-12-09 19:58:18 2019-12-09 19:58:53 t 1 1 192257 627 0.00 2019-12-09 19:56:22 2019-12-09 20:00:30 t 1 1 192259 722 0.00 2019-12-09 20:00:28 2019-12-09 20:01:03 t 1 1 192260 683 0.00 2019-12-09 19:53:30 2019-12-09 20:01:19 t 1 1 192269 514 0.00 2019-12-09 19:58:35 2019-12-09 20:03:22 t 1 1 192271 722 0.00 2019-12-09 20:02:28 2019-12-09 20:04:28 t 1 1 192273 562 0.00 2019-12-09 20:04:40 2019-12-09 20:04:55 t 1 1 192275 722 0.00 2019-12-09 20:05:17 2019-12-09 20:05:24 t 1 1 192276 724 0.00 2019-12-09 20:02:26 2019-12-09 20:06:17 t 1 1 192278 734 0.00 2019-12-09 19:54:09 2019-12-09 20:06:41 t 1 1 192282 722 0.00 2019-12-09 20:08:55 2019-12-09 20:09:18 t 1 1 192284 722 0.00 2019-12-09 20:09:24 2019-12-09 20:09:58 t 1 1 192286 736 0.00 2019-12-09 20:10:21 2019-12-09 20:10:30 t 1 1 192290 514 0.00 2019-12-09 20:05:09 2019-12-09 20:13:01 t 1 1 192291 683 0.00 2019-12-09 20:01:19 2019-12-09 20:14:13 t 1 1 192297 516 0.00 2019-12-09 20:16:04 2019-12-09 20:17:06 t 1 1 192298 722 0.00 2019-12-09 20:15:46 2019-12-09 20:17:28 t 1 1 192300 591 0.00 2019-12-09 19:15:39 2019-12-09 20:18:15 t 1 1 192303 722 0.00 2019-12-09 20:17:53 2019-12-09 20:19:28 t 1 1 192309 637 0.00 2019-12-09 20:09:47 2019-12-09 20:24:33 t 1 1 192310 562 0.00 2019-12-09 20:25:32 2019-12-09 20:25:54 t 1 1 192311 459 0.00 2019-12-09 20:24:53 2019-12-09 20:26:28 t 1 2 192315 722 0.00 2019-12-09 20:27:54 2019-12-09 20:28:00 t 1 1 192321 722 0.00 2019-12-09 20:29:59 2019-12-09 20:31:28 t 1 1 192326 660 0.00 2019-12-09 20:29:18 2019-12-09 20:35:40 t 1 1 192328 683 0.00 2019-12-09 20:19:35 2019-12-09 20:36:23 t 1 1 192082 675 0.00 2019-12-09 17:36:57 2019-12-09 17:39:42 t 1 1 192084 700 0.00 2019-12-09 17:41:12 2019-12-09 17:42:35 t 1 1 192085 736 0.00 2019-12-09 17:43:28 2019-12-09 17:43:46 t 1 1 192086 736 0.00 2019-12-09 17:44:55 2019-12-09 17:45:14 t 1 1 192087 607 0.00 2019-12-09 17:41:15 2019-12-09 17:46:28 t 1 1 192091 481 0.00 2019-12-09 16:50:42 2019-12-09 17:52:11 t 1 1 192094 627 0.00 2019-12-09 17:48:44 2019-12-09 17:55:08 t 1 1 192095 675 0.00 2019-12-09 17:54:14 2019-12-09 17:55:27 t 1 1 192098 562 0.00 2019-12-09 17:59:32 2019-12-09 18:00:00 t 1 1 192099 220 0.00 2019-12-09 17:46:15 2019-12-09 18:00:22 t 1 1 192100 562 0.00 2019-12-09 18:00:26 2019-12-09 18:00:54 t 1 1 192102 627 0.00 2019-12-09 18:00:31 2019-12-09 18:02:08 t 1 1 192104 578 0.00 2019-12-09 16:34:12 2019-12-09 18:02:52 t 1 1 192110 687 0.00 2019-12-09 18:07:47 2019-12-09 18:08:16 t 1 1 192112 734 0.00 2019-12-09 17:25:13 2019-12-09 18:10:06 t 1 1 192114 498 0.00 2019-12-09 16:38:30 2019-12-09 18:11:26 t 1 2 192116 562 0.00 2019-12-09 18:11:27 2019-12-09 18:11:38 t 1 1 192117 734 0.00 2019-12-09 18:10:05 2019-12-09 18:12:38 t 1 1 192120 562 0.00 2019-12-09 18:19:29 2019-12-09 18:19:51 t 1 1 192127 627 0.00 2019-12-09 18:27:04 2019-12-09 18:27:22 t 1 1 192129 639 0.00 2019-12-09 18:29:38 2019-12-09 18:30:15 t 1 1 192132 736 0.00 2019-12-09 18:26:47 2019-12-09 18:34:41 t 1 1 192138 736 0.00 2019-12-09 18:40:43 2019-12-09 18:40:47 t 1 1 192140 694 0.00 2019-12-09 18:33:33 2019-12-09 18:41:24 t 1 1 192146 639 0.00 2019-12-09 18:48:02 2019-12-09 18:49:14 t 1 1 192148 564 0.00 2019-12-09 17:23:43 2019-12-09 18:50:29 t 1 1 192149 607 0.00 2019-12-09 17:46:28 2019-12-09 18:53:42 t 1 1 192153 734 0.00 2019-12-09 18:35:08 2019-12-09 18:57:39 t 1 1 192154 675 0.00 2019-12-09 18:59:20 2019-12-09 19:00:51 t 1 1 192156 528 0.00 2019-12-09 19:01:54 2019-12-09 19:01:58 t 1 1 192158 675 0.00 2019-12-09 19:02:07 2019-12-09 19:03:52 t 1 1 192160 679 0.00 2019-12-09 19:03:59 2019-12-09 19:04:17 t 1 1 192162 722 0.00 2019-12-09 18:59:37 2019-12-09 19:05:01 t 1 1 192167 627 0.00 2019-12-09 19:06:08 2019-12-09 19:08:01 t 1 1 192168 627 0.00 2019-12-09 19:08:07 2019-12-09 19:08:15 t 1 1 192175 711 0.00 2019-12-09 18:27:37 2019-12-09 19:13:07 t 1 1 192177 689 0.00 2019-12-09 19:10:48 2019-12-09 19:14:52 t 1 1 192181 627 0.00 2019-12-09 19:09:30 2019-12-09 19:16:54 t 1 1 192188 736 0.00 2019-12-09 19:18:11 2019-12-09 19:19:00 t 1 1 192190 722 0.00 2019-12-09 19:21:17 2019-12-09 19:22:25 t 1 1 192200 627 0.00 2019-12-09 19:22:33 2019-12-09 19:29:57 t 1 1 192201 528 0.00 2019-12-09 19:17:45 2019-12-09 19:30:25 t 1 1 192206 675 0.00 2019-12-09 19:31:42 2019-12-09 19:34:04 t 1 1 192207 722 0.00 2019-12-09 19:34:31 2019-12-09 19:35:06 t 1 1 192213 562 0.00 2019-12-09 19:37:32 2019-12-09 19:37:47 t 1 1 192216 722 0.00 2019-12-09 19:38:07 2019-12-09 19:38:33 t 1 1 192218 722 0.00 2019-12-09 19:39:55 2019-12-09 19:40:01 t 1 1 192221 722 0.00 2019-12-09 19:41:17 2019-12-09 19:41:46 t 1 1 192223 722 0.00 2019-12-09 19:42:42 2019-12-09 19:42:49 t 1 1 192225 722 0.00 2019-12-09 19:43:33 2019-12-09 19:44:22 t 1 1 192227 514 0.00 2019-12-09 19:29:04 2019-12-09 19:45:07 t 1 1 192230 722 0.00 2019-12-09 19:45:41 2019-12-09 19:47:14 t 1 1 192231 718 0.00 2019-12-09 19:36:00 2019-12-09 19:47:29 t 1 1 192240 660 0.00 2019-12-09 19:45:12 2019-12-09 19:51:17 t 1 1 192243 220 0.00 2019-12-09 19:32:25 2019-12-09 19:53:48 t 1 2 192247 627 0.00 2019-12-09 19:51:18 2019-12-09 19:54:08 t 1 1 192250 722 0.00 2019-12-09 19:56:20 2019-12-09 19:56:23 t 1 1 192256 736 0.00 2019-12-09 20:00:12 2019-12-09 20:00:26 t 1 1 192262 724 0.00 2019-12-09 20:00:46 2019-12-09 20:01:25 t 1 1 192263 722 0.00 2019-12-09 20:01:28 2019-12-09 20:02:22 t 1 1 192265 724 0.00 2019-12-09 20:01:24 2019-12-09 20:02:26 t 1 1 192267 679 0.00 2019-12-09 19:45:11 2019-12-09 20:02:40 t 1 1 192268 671 0.00 2019-12-09 19:39:17 2019-12-09 20:03:13 t 1 1 192270 722 0.00 2019-12-09 20:03:10 2019-12-09 20:03:58 t 1 1 192272 736 0.00 2019-12-09 20:04:16 2019-12-09 20:04:29 t 1 1 192279 722 0.00 2019-12-09 20:06:16 2019-12-09 20:06:52 t 1 1 192280 736 0.00 2019-12-09 20:07:17 2019-12-09 20:07:31 t 1 1 192292 566 0.00 2019-12-09 19:56:29 2019-12-09 20:14:50 t 1 1 192293 722 0.00 2019-12-09 20:14:24 2019-12-09 20:15:28 t 1 1 192295 724 0.00 2019-12-09 20:07:34 2019-12-09 20:15:46 t 1 1 192305 675 0.00 2019-12-09 20:15:04 2019-12-09 20:21:25 t 1 1 192306 625 0.00 2019-12-09 20:18:19 2019-12-09 20:22:24 t 1 1 192308 516 0.00 2019-12-09 20:17:16 2019-12-09 20:24:02 t 1 1 192312 516 0.00 2019-12-09 20:26:03 2019-12-09 20:26:35 t 1 1 192314 722 0.00 2019-12-09 20:26:52 2019-12-09 20:26:59 t 1 1 192316 562 0.00 2019-12-09 20:27:51 2019-12-09 20:28:09 t 1 1 192318 660 0.00 2019-12-09 19:57:47 2019-12-09 20:29:18 t 1 1 192320 667 0.00 2019-12-09 20:25:08 2019-12-09 20:30:57 t 1 1 192322 566 0.00 2019-12-09 20:14:50 2019-12-09 20:32:00 t 1 1 192325 639 0.00 2019-12-09 20:34:02 2019-12-09 20:34:09 t 1 1 192327 516 0.00 2019-12-09 20:35:39 2019-12-09 20:36:16 t 1 1 192335 736 0.00 2019-12-09 20:38:40 2019-12-09 20:39:36 t 1 1 192337 718 0.00 2019-12-09 20:27:16 2019-12-09 20:41:25 t 1 1 192338 722 0.00 2019-12-09 20:41:30 2019-12-09 20:43:02 t 1 1 192339 722 0.00 2019-12-09 20:43:15 2019-12-09 20:43:21 t 1 1 192343 528 0.00 2019-12-09 20:48:50 2019-12-09 20:49:52 t 1 1 192345 718 0.00 2019-12-09 20:41:25 2019-12-09 20:50:35 t 1 1 192347 679 0.00 2019-12-09 20:50:27 2019-12-09 20:52:22 t 1 1 192349 718 0.00 2019-12-09 20:52:07 2019-12-09 20:52:40 t 1 1 192356 722 0.00 2019-12-09 21:00:59 2019-12-09 21:01:24 t 1 1 192362 722 0.00 2019-12-09 21:03:29 2019-12-09 21:04:30 t 1 1 192364 722 0.00 2019-12-09 21:06:12 2019-12-09 21:07:07 t 1 1 192365 566 0.00 2019-12-09 20:48:43 2019-12-09 21:07:36 t 1 1 192371 722 0.00 2019-12-09 21:10:09 2019-12-09 21:10:31 t 1 1 192372 611 0.00 2019-12-09 20:57:57 2019-12-09 21:11:22 t 1 1 192379 667 0.00 2019-12-09 21:16:47 2019-12-09 21:17:01 t 1 1 192383 722 0.00 2019-12-09 21:18:53 2019-12-09 21:18:58 t 1 1 192386 667 0.00 2019-12-09 21:19:14 2019-12-09 21:21:15 t 1 1 192394 718 0.00 2019-12-09 21:22:28 2019-12-09 21:24:48 t 1 1 192395 722 0.00 2019-12-09 21:26:02 2019-12-09 21:26:19 t 1 1 192397 675 0.00 2019-12-09 21:24:02 2019-12-09 21:27:44 t 1 1 192402 566 0.00 2019-12-09 21:07:36 2019-12-09 21:29:01 t 1 1 192410 722 0.00 2019-12-09 21:32:56 2019-12-09 21:33:04 t 1 1 192411 718 0.00 2019-12-09 21:29:20 2019-12-09 21:34:12 t 1 1 192412 722 0.00 2019-12-09 21:34:22 2019-12-09 21:34:28 t 1 1 192416 722 0.00 2019-12-09 21:35:02 2019-12-09 21:36:30 t 1 1 192419 667 0.00 2019-12-09 21:37:54 2019-12-09 21:40:03 t 1 1 192151 679 0.00 2019-12-09 18:52:55 2019-12-09 18:55:22 t 1 1 192152 485 0.00 2019-12-09 18:53:20 2019-12-09 18:56:27 t 1 1 192159 679 0.00 2019-12-09 19:01:10 2019-12-09 19:03:53 t 1 1 192164 562 0.00 2019-12-09 19:05:38 2019-12-09 19:06:06 t 1 1 192165 722 0.00 2019-12-09 19:05:57 2019-12-09 19:06:28 t 1 1 192169 722 0.00 2019-12-09 19:08:04 2019-12-09 19:08:16 t 1 1 192170 722 0.00 2019-12-09 19:06:57 2019-12-09 19:08:28 t 1 1 192178 689 0.00 2019-12-09 19:15:04 2019-12-09 19:15:38 t 1 1 192184 722 0.00 2019-12-09 19:17:26 2019-12-09 19:17:33 t 1 1 192186 675 0.00 2019-12-09 19:16:28 2019-12-09 19:17:57 t 1 1 192189 689 0.00 2019-12-09 19:16:27 2019-12-09 19:19:12 t 1 1 192194 722 0.00 2019-12-09 19:23:48 2019-12-09 19:23:54 t 1 1 192196 516 0.00 2019-12-09 18:51:49 2019-12-09 19:24:46 t 1 1 192198 514 0.00 2019-12-09 18:52:09 2019-12-09 19:29:05 t 1 1 192199 660 0.00 2019-12-09 19:22:03 2019-12-09 19:29:22 t 1 1 192202 707 0.00 2019-12-09 19:25:52 2019-12-09 19:31:18 t 1 1 192203 649 0.00 2019-12-09 19:28:06 2019-12-09 19:32:05 t 1 1 192204 722 0.00 2019-12-09 19:24:48 2019-12-09 19:32:38 t 1 1 192208 718 0.00 2019-12-09 18:48:27 2019-12-09 19:35:59 t 1 1 192209 722 0.00 2019-12-09 19:35:12 2019-12-09 19:36:18 t 1 1 192210 736 0.00 2019-12-09 19:36:10 2019-12-09 19:36:45 t 1 1 192212 722 0.00 2019-12-09 19:37:15 2019-12-09 19:37:34 t 1 1 192214 722 0.00 2019-12-09 19:37:42 2019-12-09 19:37:48 t 1 1 192217 722 0.00 2019-12-09 19:39:15 2019-12-09 19:39:50 t 1 1 192219 707 0.00 2019-12-09 19:37:00 2019-12-09 19:40:15 t 1 1 192222 722 0.00 2019-12-09 19:41:51 2019-12-09 19:42:37 t 1 1 192224 736 0.00 2019-12-09 19:43:49 2019-12-09 19:44:16 t 1 1 192232 722 0.00 2019-12-09 19:47:20 2019-12-09 19:48:01 t 1 1 192233 538 0.00 2019-12-09 19:42:14 2019-12-09 19:48:41 t 1 1 192235 722 0.00 2019-12-09 19:48:22 2019-12-09 19:49:02 t 1 1 192238 722 0.00 2019-12-09 19:49:53 2019-12-09 19:50:16 t 1 1 192239 675 0.00 2019-12-09 19:41:35 2019-12-09 19:50:54 t 1 1 192242 683 0.00 2019-12-09 18:51:48 2019-12-09 19:52:45 t 1 1 192245 722 0.00 2019-12-09 19:53:57 2019-12-09 19:53:59 t 1 1 192248 722 0.00 2019-12-09 19:54:59 2019-12-09 19:55:06 t 1 1 192251 722 0.00 2019-12-09 19:57:24 2019-12-09 19:57:26 t 1 1 192254 220 0.00 2019-12-09 19:58:05 2019-12-09 19:59:07 t 1 2 192255 724 0.00 2019-12-09 19:14:36 2019-12-09 19:59:49 t 1 1 192258 724 0.00 2019-12-09 19:59:48 2019-12-09 20:00:47 t 1 1 192261 722 0.00 2019-12-09 20:01:20 2019-12-09 20:01:22 t 1 1 192264 544 0.00 2019-12-09 19:59:01 2019-12-09 20:02:25 t 1 1 192266 722 0.00 2019-12-09 19:59:57 2019-12-09 20:02:28 t 1 1 192274 722 0.00 2019-12-09 20:04:20 2019-12-09 20:05:11 t 1 1 192277 675 0.00 2019-12-09 19:50:54 2019-12-09 20:06:23 t 1 1 192281 724 0.00 2019-12-09 20:06:16 2019-12-09 20:07:32 t 1 1 192283 637 0.00 2019-12-09 18:38:20 2019-12-09 20:09:48 t 1 1 192285 722 0.00 2019-12-09 20:10:04 2019-12-09 20:10:10 t 1 1 192287 722 0.00 2019-12-09 20:10:47 2019-12-09 20:11:10 t 1 1 192288 722 0.00 2019-12-09 20:11:16 2019-12-09 20:11:22 t 1 1 192289 736 0.00 2019-12-09 20:12:12 2019-12-09 20:12:30 t 1 1 192294 722 0.00 2019-12-09 20:15:13 2019-12-09 20:15:40 t 1 1 192296 736 0.00 2019-12-09 20:16:19 2019-12-09 20:16:36 t 1 1 192299 625 0.00 2019-12-09 17:10:34 2019-12-09 20:18:13 t 1 1 192301 736 0.00 2019-12-09 20:18:17 2019-12-09 20:18:41 t 1 1 192302 683 0.00 2019-12-09 20:14:13 2019-12-09 20:19:21 t 1 1 192304 639 0.00 2019-12-09 20:19:20 2019-12-09 20:21:13 t 1 1 192307 581 0.00 2019-12-09 20:14:23 2019-12-09 20:23:12 t 1 1 192313 722 0.00 2019-12-09 20:20:19 2019-12-09 20:26:46 t 1 1 192317 639 0.00 2019-12-09 20:28:24 2019-12-09 20:28:56 t 1 1 192319 516 0.00 2019-12-09 20:29:07 2019-12-09 20:29:54 t 1 1 192323 516 0.00 2019-12-09 20:30:02 2019-12-09 20:33:16 t 1 1 192324 722 0.00 2019-12-09 20:32:51 2019-12-09 20:33:52 t 1 1 192330 722 0.00 2019-12-09 20:35:10 2019-12-09 20:36:29 t 1 1 192331 562 0.00 2019-12-09 20:35:32 2019-12-09 20:37:29 t 1 1 192333 722 0.00 2019-12-09 20:36:23 2019-12-09 20:38:32 t 1 1 192334 722 0.00 2019-12-09 20:38:38 2019-12-09 20:38:46 t 1 1 192336 675 0.00 2019-12-09 20:33:52 2019-12-09 20:39:52 t 1 1 192340 581 0.00 2019-12-09 20:29:51 2019-12-09 20:43:37 t 1 1 192341 516 0.00 2019-12-09 20:44:15 2019-12-09 20:44:21 t 1 1 192342 566 0.00 2019-12-09 20:32:00 2019-12-09 20:48:42 t 1 1 192350 736 0.00 2019-12-09 20:52:39 2019-12-09 20:52:47 t 1 1 192351 675 0.00 2019-12-09 20:49:44 2019-12-09 20:55:16 t 1 1 192354 551 0.00 2019-12-09 11:24:10 2019-12-09 20:59:40 t 1 1 192357 740 0.00 2019-12-09 20:58:58 2019-12-09 21:01:33 t 1 1 192359 671 0.00 2019-12-09 20:03:13 2019-12-09 21:02:35 t 1 1 192363 736 0.00 2019-12-09 21:05:40 2019-12-09 21:05:52 t 1 1 192368 694 0.00 2019-12-09 18:41:24 2019-12-09 21:09:39 t 1 1 192369 671 0.00 2019-12-09 21:06:23 2019-12-09 21:09:44 t 1 1 192373 722 0.00 2019-12-09 21:11:15 2019-12-09 21:11:43 t 1 1 192375 722 0.00 2019-12-09 21:13:44 2019-12-09 21:14:16 t 1 1 192377 528 0.00 2019-12-09 21:15:13 2019-12-09 21:15:16 t 1 1 192378 724 0.00 2019-12-09 20:35:39 2019-12-09 21:15:40 t 1 1 192381 551 0.00 2019-12-09 20:59:40 2019-12-09 21:17:52 t 1 1 192382 675 0.00 2019-12-09 21:15:46 2019-12-09 21:18:53 t 1 1 192384 220 0.00 2019-12-09 21:14:20 2019-12-09 21:19:55 t 1 1 192385 528 0.00 2019-12-09 21:19:20 2019-12-09 21:20:35 t 1 1 192388 736 0.00 2019-12-09 21:21:03 2019-12-09 21:21:53 t 1 1 192390 498 0.00 2019-12-09 20:28:10 2019-12-09 21:23:10 t 1 2 192392 392 0.00 2019-12-09 21:16:28 2019-12-09 21:23:33 t 1 2 192398 637 0.00 2019-12-09 21:14:47 2019-12-09 21:27:51 t 1 1 192404 722 0.00 2019-12-09 21:29:09 2019-12-09 21:29:15 t 1 1 192406 578 0.00 2019-12-09 21:12:00 2019-12-09 21:31:09 t 1 1 192408 220 0.00 2019-12-09 21:30:27 2019-12-09 21:32:16 t 1 2 192409 722 0.00 2019-12-09 21:32:22 2019-12-09 21:32:35 t 1 1 192413 722 0.00 2019-12-09 21:32:01 2019-12-09 21:34:30 t 1 1 192415 736 0.00 2019-12-09 21:35:42 2019-12-09 21:35:58 t 1 1 192417 528 0.00 2019-12-09 21:28:27 2019-12-09 21:37:15 t 1 1 192418 551 0.00 2019-12-09 21:17:52 2019-12-09 21:39:46 t 1 1 192423 660 0.00 2019-12-09 21:30:34 2019-12-09 21:45:31 t 1 1 192426 510 0.00 2019-12-09 21:34:41 2019-12-09 21:48:47 t 1 1 192428 564 0.00 2019-12-09 18:50:28 2019-12-09 21:49:15 t 1 1 192434 722 0.00 2019-12-09 21:51:52 2019-12-09 21:52:11 t 1 1 192436 667 0.00 2019-12-09 21:51:28 2019-12-09 21:53:00 t 1 1 192440 528 0.00 2019-12-09 21:42:13 2019-12-09 21:56:13 t 1 1 192452 611 0.00 2019-12-09 22:03:52 2019-12-09 22:05:02 t 1 1 192455 736 0.00 2019-12-09 22:05:36 2019-12-09 22:07:49 t 1 1 192459 736 0.00 2019-12-09 22:11:09 2019-12-09 22:12:30 t 1 1 192329 562 0.00 2019-12-09 20:36:24 2019-12-09 20:36:24 f 1 1 192332 736 0.00 2019-12-09 20:36:27 2019-12-09 20:37:34 t 1 1 192344 722 0.00 2019-12-09 20:50:12 2019-12-09 20:50:30 t 1 1 192346 622 0.00 2019-12-09 19:29:14 2019-12-09 20:52:05 t 1 1 192348 736 0.00 2019-12-09 20:52:16 2019-12-09 20:52:40 t 1 1 192352 722 0.00 2019-12-09 20:55:27 2019-12-09 20:56:03 t 1 1 192353 722 0.00 2019-12-09 20:56:17 2019-12-09 20:56:54 t 1 1 192355 722 0.00 2019-12-09 20:58:48 2019-12-09 21:00:31 t 1 1 192358 528 0.00 2019-12-09 21:01:13 2019-12-09 21:02:13 t 1 1 192360 514 0.00 2019-12-09 20:59:29 2019-12-09 21:03:29 t 1 1 192361 736 0.00 2019-12-09 21:02:45 2019-12-09 21:04:30 t 1 1 192366 220 0.00 2019-12-09 20:37:08 2019-12-09 21:07:37 t 1 2 192367 538 0.00 2019-12-09 20:04:23 2019-12-09 21:09:08 t 1 1 192370 736 0.00 2019-12-09 21:09:40 2019-12-09 21:09:55 t 1 1 192374 578 0.00 2019-12-09 18:02:52 2019-12-09 21:12:00 t 1 1 192376 734 0.00 2019-12-09 21:03:31 2019-12-09 21:14:57 t 1 1 192380 722 0.00 2019-12-09 21:17:16 2019-12-09 21:17:18 t 1 1 192387 591 0.00 2019-12-09 20:18:15 2019-12-09 21:21:34 t 1 1 192389 722 0.00 2019-12-09 21:21:36 2019-12-09 21:21:53 t 1 1 192391 722 0.00 2019-12-09 21:22:40 2019-12-09 21:23:13 t 1 1 192393 722 0.00 2019-12-09 21:23:44 2019-12-09 21:24:34 t 1 1 192396 528 0.00 2019-12-09 21:22:59 2019-12-09 21:27:38 t 1 1 192399 722 0.00 2019-12-09 21:27:30 2019-12-09 21:27:55 t 1 1 192400 736 0.00 2019-12-09 21:26:19 2019-12-09 21:28:31 t 1 1 192401 736 0.00 2019-12-09 21:28:37 2019-12-09 21:28:52 t 1 1 192403 722 0.00 2019-12-09 21:28:33 2019-12-09 21:29:01 t 1 1 192405 734 0.00 2019-12-09 21:26:30 2019-12-09 21:30:00 t 1 1 192407 722 0.00 2019-12-09 21:29:35 2019-12-09 21:31:56 t 1 1 192414 510 0.00 2019-12-09 21:06:25 2019-12-09 21:34:41 t 1 1 192422 722 0.00 2019-12-09 21:35:52 2019-12-09 21:43:55 t 1 1 192424 722 0.00 2019-12-09 21:45:10 2019-12-09 21:46:06 t 1 1 192430 551 0.00 2019-12-09 21:39:46 2019-12-09 21:49:51 t 1 1 192433 675 0.00 2019-12-09 21:41:50 2019-12-09 21:51:39 t 1 1 192437 722 0.00 2019-12-09 21:53:14 2019-12-09 21:53:21 t 1 1 192438 722 0.00 2019-12-09 21:53:47 2019-12-09 21:54:31 t 1 1 192442 667 0.00 2019-12-09 21:53:00 2019-12-09 21:56:36 t 1 1 192443 483 0.00 2019-12-09 21:35:38 2019-12-09 21:58:30 t 1 1 192445 667 0.00 2019-12-09 21:57:53 2019-12-09 21:59:32 t 1 1 192447 528 0.00 2019-12-09 21:58:53 2019-12-09 22:00:09 t 1 1 192448 516 0.00 2019-12-09 22:01:14 2019-12-09 22:01:30 t 1 1 192450 679 0.00 2019-12-09 21:55:38 2019-12-09 22:02:24 t 1 1 192451 611 0.00 2019-12-09 21:56:13 2019-12-09 22:03:52 t 1 1 192453 607 0.00 2019-12-09 21:07:33 2019-12-09 22:05:18 t 1 1 192454 675 0.00 2019-12-09 22:00:15 2019-12-09 22:06:48 t 1 1 192458 581 0.00 2019-12-09 22:08:54 2019-12-09 22:10:23 t 1 1 192463 736 0.00 2019-12-09 22:13:48 2019-12-09 22:14:47 t 1 1 192465 564 0.00 2019-12-09 21:49:15 2019-12-09 22:16:46 t 1 1 192467 718 0.00 2019-12-09 21:34:11 2019-12-09 22:19:46 t 1 1 192469 637 0.00 2019-12-09 21:31:37 2019-12-09 22:22:07 t 1 1 192470 581 0.00 2019-12-09 22:20:32 2019-12-09 22:22:30 t 1 1 192472 736 0.00 2019-12-09 22:24:46 2019-12-09 22:25:28 t 1 1 192474 564 0.00 2019-12-09 22:16:46 2019-12-09 22:26:16 t 1 1 192481 687 0.00 2019-12-09 22:05:57 2019-12-09 22:32:58 t 1 1 192485 692 0.00 2019-12-09 22:35:40 2019-12-09 22:35:55 t 1 1 192486 671 0.00 2019-12-09 22:34:19 2019-12-09 22:36:25 t 1 1 192488 687 0.00 2019-12-09 22:33:34 2019-12-09 22:37:37 t 1 1 192489 722 0.00 2019-12-09 22:32:59 2019-12-09 22:38:24 t 1 1 192491 692 0.00 2019-12-09 22:36:01 2019-12-09 22:38:55 t 1 1 192499 692 0.00 2019-12-09 22:39:43 2019-12-09 22:45:08 t 1 1 192503 692 0.00 2019-12-09 22:48:16 2019-12-09 22:49:30 t 1 1 192510 631 0.00 2019-12-09 22:50:53 2019-12-09 22:54:14 t 1 1 192511 679 0.00 2019-12-09 22:53:47 2019-12-09 22:54:50 t 1 1 192514 514 0.00 2019-12-09 22:40:53 2019-12-09 22:55:53 t 1 1 192515 679 0.00 2019-12-09 22:56:17 2019-12-09 22:56:53 t 1 1 192518 611 0.00 2019-12-09 22:53:41 2019-12-09 22:58:32 t 1 1 192521 679 0.00 2019-12-09 22:59:33 2019-12-09 22:59:52 t 1 1 192523 679 0.00 2019-12-09 23:00:56 2019-12-09 23:01:11 t 1 1 192524 667 0.00 2019-12-09 22:55:54 2019-12-09 23:01:41 t 1 1 192527 578 0.00 2019-12-09 22:41:46 2019-12-09 23:03:14 t 1 1 192530 679 0.00 2019-12-09 23:03:38 2019-12-09 23:04:01 t 1 1 192531 679 0.00 2019-12-09 23:04:17 2019-12-09 23:04:30 t 1 1 192534 510 0.00 2019-12-09 22:14:32 2019-12-09 23:06:46 t 1 1 192535 679 0.00 2019-12-09 23:07:07 2019-12-09 23:07:23 t 1 1 192536 679 0.00 2019-12-09 23:08:09 2019-12-09 23:08:25 t 1 1 192540 687 0.00 2019-12-09 23:03:44 2019-12-09 23:12:34 t 1 1 192541 679 0.00 2019-12-09 23:12:55 2019-12-09 23:13:24 t 1 1 192547 679 0.00 2019-12-09 23:16:30 2019-12-09 23:17:04 t 1 1 192548 679 0.00 2019-12-09 23:17:27 2019-12-09 23:18:00 t 1 1 192549 679 0.00 2019-12-09 23:18:14 2019-12-09 23:18:27 t 1 1 192551 687 0.00 2019-12-09 23:14:39 2019-12-09 23:18:59 t 1 1 192553 687 0.00 2019-12-09 23:19:03 2019-12-09 23:19:06 t 1 1 192556 220 0.00 2019-12-09 23:14:45 2019-12-09 23:22:02 t 1 2 192557 689 0.00 2019-12-09 23:14:11 2019-12-09 23:25:30 t 1 1 192565 736 0.00 2019-12-09 23:34:49 2019-12-09 23:35:01 t 1 1 192570 503 0.00 2019-12-09 23:35:19 2019-12-09 23:38:07 t 1 1 192571 736 0.00 2019-12-09 23:38:34 2019-12-09 23:38:45 t 1 1 192573 611 0.00 2019-12-09 23:29:57 2019-12-09 23:39:39 t 1 1 192581 687 0.00 2019-12-09 23:52:39 2019-12-09 23:55:25 t 1 1 192584 514 0.00 2019-12-09 22:55:53 2019-12-10 00:00:31 t 1 1 192586 627 0.00 2019-12-09 23:28:26 2019-12-10 00:03:20 t 1 1 192589 639 0.00 2019-12-10 00:04:13 2019-12-10 00:06:59 t 1 1 192592 578 0.00 2019-12-09 23:05:19 2019-12-10 00:08:07 t 1 1 192593 687 0.00 2019-12-10 00:07:02 2019-12-10 00:14:10 t 1 1 192594 607 0.00 2019-12-09 23:47:04 2019-12-10 00:14:24 t 1 1 192595 718 0.00 2019-12-09 23:46:30 2019-12-10 00:15:29 t 1 1 192597 718 0.00 2019-12-10 00:15:29 2019-12-10 00:16:42 t 1 1 192600 736 0.00 2019-12-10 00:25:14 2019-12-10 00:25:38 t 1 1 192602 679 0.00 2019-12-10 00:18:24 2019-12-10 00:33:48 t 1 1 192603 503 0.00 2019-12-10 00:34:23 2019-12-10 00:35:09 t 1 1 192605 503 0.00 2019-12-10 00:35:09 2019-12-10 00:36:26 t 1 1 192608 671 0.00 2019-12-10 00:40:20 2019-12-10 00:45:00 t 1 1 192611 687 0.00 2019-12-10 00:37:56 2019-12-10 00:51:02 t 1 1 192613 607 0.00 2019-12-10 00:38:34 2019-12-10 00:54:22 t 1 1 192614 639 0.00 2019-12-10 00:54:11 2019-12-10 00:55:32 t 1 1 192616 639 0.00 2019-12-10 00:58:23 2019-12-10 00:58:31 t 1 1 192617 639 0.00 2019-12-10 01:01:04 2019-12-10 01:01:24 t 1 1 192620 639 0.00 2019-12-10 01:13:37 2019-12-10 01:14:20 t 1 1 192420 566 0.00 2019-12-09 21:29:01 2019-12-09 21:40:44 t 1 1 192421 611 0.00 2019-12-09 21:38:07 2019-12-09 21:42:32 t 1 1 192425 581 0.00 2019-12-09 21:47:51 2019-12-09 21:48:30 t 1 1 192427 736 0.00 2019-12-09 21:48:07 2019-12-09 21:48:56 t 1 1 192429 220 0.00 2019-12-09 20:09:38 2019-12-09 21:49:16 t 1 2 192431 722 0.00 2019-12-09 21:50:30 2019-12-09 21:50:49 t 1 1 192432 611 0.00 2019-12-09 21:42:32 2019-12-09 21:51:26 t 1 1 192435 591 0.00 2019-12-09 21:26:35 2019-12-09 21:52:20 t 1 1 192439 736 0.00 2019-12-09 21:52:47 2019-12-09 21:55:58 t 1 1 192441 611 0.00 2019-12-09 21:51:25 2019-12-09 21:56:14 t 1 1 192444 740 0.00 2019-12-09 21:57:17 2019-12-09 21:59:25 t 1 1 192446 510 0.00 2019-12-09 21:48:47 2019-12-09 21:59:36 t 1 1 192449 667 0.00 2019-12-09 21:59:31 2019-12-09 22:01:59 t 1 1 192456 581 0.00 2019-12-09 21:48:30 2019-12-09 22:08:20 t 1 1 192457 736 0.00 2019-12-09 22:08:56 2019-12-09 22:09:08 t 1 1 192460 581 0.00 2019-12-09 22:12:32 2019-12-09 22:12:39 t 1 1 192462 510 0.00 2019-12-09 21:59:36 2019-12-09 22:14:32 t 1 1 192468 581 0.00 2019-12-09 22:19:44 2019-12-09 22:20:11 t 1 1 192471 578 0.00 2019-12-09 21:31:09 2019-12-09 22:24:33 t 1 1 192475 734 0.00 2019-12-09 22:23:36 2019-12-09 22:28:58 t 1 1 192477 718 0.00 2019-12-09 22:19:45 2019-12-09 22:30:03 t 1 1 192479 481 0.00 2019-12-09 18:46:00 2019-12-09 22:32:02 t 1 1 192482 722 0.00 2019-12-09 22:15:04 2019-12-09 22:32:59 t 1 1 192483 581 0.00 2019-12-09 22:27:39 2019-12-09 22:33:08 t 1 1 192484 671 0.00 2019-12-09 22:33:01 2019-12-09 22:35:30 t 1 1 192487 220 0.00 2019-12-09 22:11:33 2019-12-09 22:36:27 t 1 2 192494 637 0.00 2019-12-09 22:22:07 2019-12-09 22:40:17 t 1 1 192498 687 0.00 2019-12-09 22:39:06 2019-12-09 22:43:42 t 1 1 192501 722 0.00 2019-12-09 22:40:44 2019-12-09 22:47:17 t 1 1 192504 692 0.00 2019-12-09 22:47:38 2019-12-09 22:49:30 t 1 1 192505 740 0.00 2019-12-09 22:48:55 2019-12-09 22:50:28 t 1 1 192507 591 0.00 2019-12-09 21:52:20 2019-12-09 22:53:33 t 1 1 192509 611 0.00 2019-12-09 22:33:27 2019-12-09 22:53:41 t 1 1 192519 679 0.00 2019-12-09 22:57:25 2019-12-09 22:58:44 t 1 1 192520 679 0.00 2019-12-09 22:58:49 2019-12-09 22:59:28 t 1 1 192525 679 0.00 2019-12-09 23:01:23 2019-12-09 23:01:56 t 1 1 192526 591 0.00 2019-12-09 23:01:59 2019-12-09 23:02:56 t 1 1 192529 687 0.00 2019-12-09 22:48:45 2019-12-09 23:03:44 t 1 1 192539 679 0.00 2019-12-09 23:12:05 2019-12-09 23:12:18 t 1 1 192544 679 0.00 2019-12-09 23:14:58 2019-12-09 23:15:13 t 1 1 192554 679 0.00 2019-12-09 23:19:13 2019-12-09 23:20:10 t 1 1 192555 622 0.00 2019-12-09 22:56:26 2019-12-09 23:20:49 t 1 1 192558 625 0.00 2019-12-09 20:22:24 2019-12-09 23:26:10 t 1 1 192559 683 0.00 2019-12-09 23:23:08 2019-12-09 23:29:04 t 1 1 192561 611 0.00 2019-12-09 22:58:32 2019-12-09 23:29:57 t 1 1 192562 503 0.00 2019-12-09 23:29:23 2019-12-09 23:30:35 t 1 1 192564 736 0.00 2019-12-09 23:32:25 2019-12-09 23:32:44 t 1 1 192566 503 0.00 2019-12-09 23:32:23 2019-12-09 23:35:19 t 1 1 192569 220 0.00 2019-12-09 23:34:47 2019-12-09 23:37:07 t 1 2 192572 671 0.00 2019-12-09 23:36:51 2019-12-09 23:39:15 t 1 1 192575 694 0.00 2019-12-09 21:09:39 2019-12-09 23:44:35 t 1 1 192576 736 0.00 2019-12-09 23:44:38 2019-12-09 23:44:56 t 1 1 192578 220 0.00 2019-12-09 22:57:20 2019-12-09 23:46:33 t 1 1 192580 736 0.00 2019-12-09 23:48:32 2019-12-09 23:48:49 t 1 1 192583 544 0.00 2019-12-09 23:44:25 2019-12-09 23:59:02 t 1 1 192585 639 0.00 2019-12-10 00:02:44 2019-12-10 00:02:58 t 1 1 192590 687 0.00 2019-12-09 23:55:39 2019-12-10 00:07:02 t 1 1 192598 679 0.00 2019-12-09 23:56:03 2019-12-10 00:18:24 t 1 1 192599 687 0.00 2019-12-10 00:14:10 2019-12-10 00:19:44 t 1 1 192601 736 0.00 2019-12-10 00:27:42 2019-12-10 00:28:17 t 1 1 192604 687 0.00 2019-12-10 00:20:40 2019-12-10 00:35:31 t 1 1 192609 485 0.00 2019-12-10 00:34:17 2019-12-10 00:47:10 t 1 1 192610 514 0.00 2019-12-10 00:00:31 2019-12-10 00:48:27 t 1 1 192612 639 0.00 2019-12-10 00:15:57 2019-12-10 00:53:00 t 1 1 192615 675 0.00 2019-12-10 00:52:56 2019-12-10 00:55:34 t 1 1 192618 639 0.00 2019-12-10 01:07:32 2019-12-10 01:07:41 t 1 1 192623 625 0.00 2019-12-10 00:16:58 2019-12-10 01:19:02 t 1 1 192626 639 0.00 2019-12-10 01:25:20 2019-12-10 01:25:28 t 1 1 192628 694 0.00 2019-12-09 23:44:35 2019-12-10 01:26:25 t 1 1 192629 639 0.00 2019-12-10 01:29:51 2019-12-10 01:30:06 t 1 1 192631 687 0.00 2019-12-10 01:18:47 2019-12-10 01:33:44 t 1 1 192634 639 0.00 2019-12-10 01:42:08 2019-12-10 01:42:15 t 1 1 192635 625 0.00 2019-12-10 01:19:02 2019-12-10 01:44:03 t 1 1 192636 639 0.00 2019-12-10 01:59:40 2019-12-10 01:59:48 t 1 1 192637 639 0.00 2019-12-10 02:17:36 2019-12-10 02:19:32 t 1 1 192639 639 0.00 2019-12-10 02:25:05 2019-12-10 02:26:01 t 1 1 192641 681 0.00 2019-12-10 02:29:11 2019-12-10 02:35:56 t 1 1 192642 639 0.00 2019-12-10 02:39:07 2019-12-10 02:40:32 t 1 1 192643 681 0.00 2019-12-10 02:35:56 2019-12-10 02:47:04 t 1 1 192648 639 0.00 2019-12-10 03:13:37 2019-12-10 03:13:53 t 1 1 192649 639 0.00 2019-12-10 03:17:05 2019-12-10 03:17:14 t 1 1 192652 639 0.00 2019-12-10 03:46:35 2019-12-10 03:46:44 t 1 1 192654 639 0.00 2019-12-10 03:50:56 2019-12-10 03:51:19 t 1 1 192655 639 0.00 2019-12-10 04:01:22 2019-12-10 04:01:30 t 1 1 192656 639 0.00 2019-12-10 04:02:41 2019-12-10 04:02:49 t 1 1 192657 639 0.00 2019-12-10 04:32:18 2019-12-10 04:33:37 t 1 1 192665 639 0.00 2019-12-10 05:48:33 2019-12-10 05:48:42 t 1 1 192669 639 0.00 2019-12-10 06:02:10 2019-12-10 06:04:19 t 1 1 192671 675 0.00 2019-12-10 05:56:34 2019-12-10 06:06:38 t 1 1 192672 656 0.00 2019-12-09 19:53:51 2019-12-10 06:10:39 t 1 1 192674 566 0.00 2019-12-10 06:17:17 2019-12-10 06:31:00 t 1 1 192676 675 0.00 2019-12-10 06:29:28 2019-12-10 06:36:30 t 1 1 192677 622 0.00 2019-12-10 06:33:31 2019-12-10 06:44:30 t 1 1 192681 566 0.00 2019-12-10 06:31:00 2019-12-10 06:49:18 t 1 1 192684 607 0.00 2019-12-10 06:26:43 2019-12-10 06:55:11 t 1 1 192685 566 0.00 2019-12-10 06:49:18 2019-12-10 06:56:10 t 1 1 192686 675 0.00 2019-12-10 06:53:07 2019-12-10 06:59:27 t 1 1 192687 551 0.00 2019-12-10 06:44:49 2019-12-10 07:00:22 t 1 1 192688 639 0.00 2019-12-10 07:02:14 2019-12-10 07:02:20 t 1 1 192690 694 0.00 2019-12-10 01:26:25 2019-12-10 07:02:35 t 1 1 192696 681 0.00 2019-12-10 02:47:04 2019-12-10 07:16:04 t 1 1 192701 611 0.00 2019-12-10 07:16:20 2019-12-10 07:26:13 t 1 1 192706 639 0.00 2019-12-10 07:40:54 2019-12-10 07:41:11 t 1 1 192707 707 0.00 2019-12-10 07:40:45 2019-12-10 07:44:30 t 1 1 192712 562 0.00 2019-12-10 08:00:38 2019-12-10 08:01:37 t 1 1 192720 538 0.00 2019-12-10 06:32:56 2019-12-10 08:21:31 t 1 1 192721 591 0.00 2019-12-10 08:07:05 2019-12-10 08:22:56 t 1 1 192461 622 0.00 2019-12-09 22:09:59 2019-12-09 22:14:10 t 1 1 192464 622 0.00 2019-12-09 22:14:09 2019-12-09 22:16:20 t 1 1 192466 736 0.00 2019-12-09 22:17:18 2019-12-09 22:18:30 t 1 1 192473 581 0.00 2019-12-09 22:25:34 2019-12-09 22:25:48 t 1 1 192476 675 0.00 2019-12-09 22:26:31 2019-12-09 22:29:02 t 1 1 192478 514 0.00 2019-12-09 21:57:25 2019-12-09 22:30:11 t 1 1 192480 692 0.00 2019-12-09 22:28:43 2019-12-09 22:32:56 t 1 1 192490 687 0.00 2019-12-09 22:38:12 2019-12-09 22:38:53 t 1 1 192492 722 0.00 2019-12-09 22:38:39 2019-12-09 22:39:06 t 1 1 192493 722 0.00 2019-12-09 22:39:11 2019-12-09 22:39:23 t 1 1 192495 514 0.00 2019-12-09 22:30:11 2019-12-09 22:40:53 t 1 1 192496 578 0.00 2019-12-09 22:24:33 2019-12-09 22:41:46 t 1 1 192497 481 0.00 2019-12-09 22:32:02 2019-12-09 22:42:47 t 1 1 192500 692 0.00 2019-12-09 22:45:14 2019-12-09 22:45:44 t 1 1 192502 692 0.00 2019-12-09 22:48:31 2019-12-09 22:48:31 f 1 1 192506 392 0.00 2019-12-09 21:53:10 2019-12-09 22:52:46 t 1 2 192508 679 0.00 2019-12-09 22:32:27 2019-12-09 22:53:40 t 1 1 192512 722 0.00 2019-12-09 22:47:17 2019-12-09 22:55:06 t 1 1 192513 679 0.00 2019-12-09 22:55:03 2019-12-09 22:55:47 t 1 1 192516 679 0.00 2019-12-09 22:57:00 2019-12-09 22:57:16 t 1 1 192517 220 0.00 2019-12-09 22:34:01 2019-12-09 22:57:21 t 1 1 192522 679 0.00 2019-12-09 22:59:59 2019-12-09 23:00:12 t 1 1 192528 679 0.00 2019-12-09 23:02:56 2019-12-09 23:03:32 t 1 1 192532 679 0.00 2019-12-09 23:04:49 2019-12-09 23:05:26 t 1 1 192533 679 0.00 2019-12-09 23:06:06 2019-12-09 23:06:21 t 1 1 192537 679 0.00 2019-12-09 23:08:34 2019-12-09 23:11:03 t 1 1 192538 679 0.00 2019-12-09 23:11:10 2019-12-09 23:11:55 t 1 1 192542 679 0.00 2019-12-09 23:13:33 2019-12-09 23:13:55 t 1 1 192543 679 0.00 2019-12-09 23:14:02 2019-12-09 23:14:14 t 1 1 192545 679 0.00 2019-12-09 23:15:49 2019-12-09 23:16:02 t 1 1 192546 736 0.00 2019-12-09 22:45:10 2019-12-09 23:16:36 t 1 1 192550 220 0.00 2019-12-09 21:59:19 2019-12-09 23:18:38 t 1 2 192552 679 0.00 2019-12-09 23:18:36 2019-12-09 23:19:03 t 1 1 192560 503 0.00 2019-12-09 23:25:10 2019-12-09 23:29:23 t 1 1 192563 689 0.00 2019-12-09 23:29:22 2019-12-09 23:31:05 t 1 1 192567 713 0.00 2019-12-09 23:24:27 2019-12-09 23:36:02 t 1 1 192568 679 0.00 2019-12-09 23:20:16 2019-12-09 23:36:20 t 1 1 192574 687 0.00 2019-12-09 23:19:15 2019-12-09 23:43:15 t 1 1 192577 718 0.00 2019-12-09 22:54:18 2019-12-09 23:46:30 t 1 1 192579 687 0.00 2019-12-09 23:43:15 2019-12-09 23:46:33 t 1 1 192582 679 0.00 2019-12-09 23:36:20 2019-12-09 23:56:03 t 1 1 192587 736 0.00 2019-12-10 00:03:40 2019-12-10 00:03:53 t 1 1 192588 625 0.00 2019-12-09 23:26:10 2019-12-10 00:06:53 t 1 1 192591 736 0.00 2019-12-10 00:07:44 2019-12-10 00:07:56 t 1 1 192596 622 0.00 2019-12-09 23:20:49 2019-12-10 00:15:33 t 1 1 192606 581 0.00 2019-12-10 00:35:28 2019-12-10 00:38:36 t 1 1 192607 679 0.00 2019-12-10 00:33:48 2019-12-10 00:44:31 t 1 1 192619 574 0.00 2019-12-10 01:05:21 2019-12-10 01:12:43 t 1 1 192621 544 0.00 2019-12-09 23:59:02 2019-12-10 01:15:08 t 1 1 192622 687 0.00 2019-12-10 00:53:38 2019-12-10 01:18:47 t 1 1 192625 544 0.00 2019-12-10 01:15:07 2019-12-10 01:21:58 t 1 1 192627 639 0.00 2019-12-10 01:24:18 2019-12-10 01:25:32 t 1 1 192630 639 0.00 2019-12-10 01:30:37 2019-12-10 01:30:52 t 1 1 192632 639 0.00 2019-12-10 01:33:44 2019-12-10 01:33:52 t 1 1 192633 639 0.00 2019-12-10 01:34:48 2019-12-10 01:35:01 t 1 1 192640 681 0.00 2019-12-10 02:23:05 2019-12-10 02:29:11 t 1 1 192646 639 0.00 2019-12-10 02:57:44 2019-12-10 02:57:53 t 1 1 192647 639 0.00 2019-12-10 03:08:11 2019-12-10 03:08:34 t 1 1 192651 639 0.00 2019-12-10 03:25:04 2019-12-10 03:26:34 t 1 1 192653 639 0.00 2019-12-10 03:50:17 2019-12-10 03:50:27 t 1 1 192658 639 0.00 2019-12-10 04:48:32 2019-12-10 04:48:54 t 1 1 192659 639 0.00 2019-12-10 05:00:35 2019-12-10 05:01:04 t 1 1 192660 564 0.00 2019-12-10 04:55:23 2019-12-10 05:07:20 t 1 1 192662 516 0.00 2019-12-10 05:21:03 2019-12-10 05:22:13 t 1 1 192666 675 0.00 2019-12-10 05:39:44 2019-12-10 05:52:19 t 1 1 192667 639 0.00 2019-12-10 05:56:51 2019-12-10 05:57:10 t 1 1 192668 639 0.00 2019-12-10 05:57:25 2019-12-10 05:57:34 t 1 1 192673 675 0.00 2019-12-10 06:11:35 2019-12-10 06:18:16 t 1 1 192680 562 0.00 2019-12-10 06:47:32 2019-12-10 06:48:37 t 1 1 192682 611 0.00 2019-12-10 06:40:54 2019-12-10 06:53:15 t 1 1 192683 724 0.00 2019-12-10 06:50:49 2019-12-10 06:54:23 t 1 1 192689 488 0.00 2019-12-10 07:02:24 2019-12-10 07:02:24 f 1 1 192691 562 0.00 2019-12-10 06:51:05 2019-12-10 07:03:41 t 1 1 192695 734 0.00 2019-12-10 06:36:59 2019-12-10 07:12:31 t 1 1 192697 459 0.00 2019-12-10 07:13:38 2019-12-10 07:16:13 t 1 2 192698 611 0.00 2019-12-10 07:12:08 2019-12-10 07:16:20 t 1 1 192699 679 0.00 2019-12-10 07:12:38 2019-12-10 07:18:22 t 1 1 192704 562 0.00 2019-12-10 07:32:58 2019-12-10 07:33:08 t 1 1 192705 562 0.00 2019-12-10 07:35:54 2019-12-10 07:36:18 t 1 1 192708 516 0.00 2019-12-10 07:47:39 2019-12-10 07:50:49 t 1 1 192709 611 0.00 2019-12-10 07:44:12 2019-12-10 07:52:33 t 1 1 192716 459 0.00 2019-12-10 08:07:36 2019-12-10 08:14:11 t 1 2 192717 637 0.00 2019-12-10 07:58:31 2019-12-10 08:17:44 t 1 1 192718 625 0.00 2019-12-10 05:24:48 2019-12-10 08:18:39 t 1 1 192722 679 0.00 2019-12-10 08:21:41 2019-12-10 08:23:25 t 1 1 192723 734 0.00 2019-12-10 07:24:26 2019-12-10 08:24:35 t 1 1 192729 673 0.00 2019-12-10 08:34:15 2019-12-10 08:35:37 t 1 1 192730 591 0.00 2019-12-10 08:22:56 2019-12-10 08:36:32 t 1 1 192731 562 0.00 2019-12-10 08:36:37 2019-12-10 08:36:37 f 1 1 192733 562 0.00 2019-12-10 08:36:23 2019-12-10 08:37:38 t 1 1 192734 637 0.00 2019-12-10 08:35:07 2019-12-10 08:39:30 t 1 1 192738 611 0.00 2019-12-10 08:34:25 2019-12-10 08:50:05 t 1 1 192739 625 0.00 2019-12-10 08:18:38 2019-12-10 08:50:38 t 1 1 192740 694 0.00 2019-12-10 07:45:05 2019-12-10 08:51:08 t 1 1 192741 679 0.00 2019-12-10 08:41:43 2019-12-10 08:58:30 t 1 1 192742 694 0.00 2019-12-10 08:50:54 2019-12-10 09:01:00 t 1 1 192743 591 0.00 2019-12-10 09:00:33 2019-12-10 09:03:00 t 1 1 192745 637 0.00 2019-12-10 08:44:29 2019-12-10 09:04:08 t 1 1 192746 694 0.00 2019-12-10 09:04:17 2019-12-10 09:06:03 t 1 1 192747 615 0.00 2019-12-10 09:02:08 2019-12-10 09:07:21 t 1 1 192748 611 0.00 2019-12-10 09:04:04 2019-12-10 09:09:57 t 1 1 192749 718 0.00 2019-12-10 09:03:49 2019-12-10 09:13:27 t 1 1 192750 707 0.00 2019-12-10 08:39:23 2019-12-10 09:14:47 t 1 1 192751 718 0.00 2019-12-10 09:13:27 2019-12-10 09:15:16 t 1 1 192752 551 0.00 2019-12-10 07:00:22 2019-12-10 09:20:11 t 1 1 192754 694 0.00 2019-12-10 09:06:03 2019-12-10 09:23:07 t 1 1 192756 611 0.00 2019-12-10 09:09:57 2019-12-10 09:23:22 t 1 1 192624 392 0.00 2019-12-10 00:16:39 2019-12-10 01:19:09 t 1 2 192638 681 0.00 2019-12-10 02:15:14 2019-12-10 02:23:05 t 1 1 192644 639 0.00 2019-12-10 02:46:50 2019-12-10 02:47:12 t 1 1 192645 639 0.00 2019-12-10 02:52:27 2019-12-10 02:52:33 t 1 1 192650 639 0.00 2019-12-10 03:18:51 2019-12-10 03:19:20 t 1 1 192661 639 0.00 2019-12-10 05:07:38 2019-12-10 05:07:50 t 1 1 192663 639 0.00 2019-12-10 05:22:13 2019-12-10 05:24:37 t 1 1 192664 639 0.00 2019-12-10 05:30:59 2019-12-10 05:31:35 t 1 1 192670 514 0.00 2019-12-10 00:48:27 2019-12-10 06:06:28 t 1 1 192675 538 0.00 2019-12-09 21:09:07 2019-12-10 06:32:53 t 1 1 192678 551 0.00 2019-12-09 23:20:35 2019-12-10 06:44:49 t 1 1 192679 562 0.00 2019-12-10 06:48:35 2019-12-10 06:48:35 f 1 1 192692 562 0.00 2019-12-10 07:04:07 2019-12-10 07:05:41 t 1 1 192693 639 0.00 2019-12-10 07:06:39 2019-12-10 07:10:04 t 1 1 192694 459 0.00 2019-12-10 07:02:01 2019-12-10 07:12:24 t 1 2 192700 562 0.00 2019-12-10 07:22:39 2019-12-10 07:23:32 t 1 1 192702 675 0.00 2019-12-10 07:31:54 2019-12-10 07:31:54 t 1 1 192703 707 0.00 2019-12-10 06:51:22 2019-12-10 07:33:06 t 1 1 192710 637 0.00 2019-12-10 06:56:33 2019-12-10 07:58:31 t 1 1 192711 562 0.00 2019-12-10 07:39:40 2019-12-10 07:59:43 t 1 1 192713 679 0.00 2019-12-10 08:07:33 2019-12-10 08:08:37 t 1 1 192714 562 0.00 2019-12-10 08:09:30 2019-12-10 08:09:43 t 1 1 192715 528 0.00 2019-12-10 08:05:02 2019-12-10 08:11:05 t 1 1 192719 639 0.00 2019-12-10 08:19:05 2019-12-10 08:19:14 t 1 1 192724 581 0.00 2019-12-10 08:26:15 2019-12-10 08:28:09 t 1 1 192725 562 0.00 2019-12-10 08:25:41 2019-12-10 08:28:21 t 1 1 192726 639 0.00 2019-12-10 08:29:30 2019-12-10 08:29:38 t 1 1 192727 637 0.00 2019-12-10 08:28:11 2019-12-10 08:31:01 t 1 1 192728 611 0.00 2019-12-10 08:33:57 2019-12-10 08:34:25 t 1 1 192732 538 0.00 2019-12-10 08:34:19 2019-12-10 08:37:27 t 1 1 192735 639 0.00 2019-12-10 08:40:15 2019-12-10 08:40:29 t 1 1 192736 667 0.00 2019-12-10 08:35:55 2019-12-10 08:41:54 t 1 1 192737 591 0.00 2019-12-10 08:41:58 2019-12-10 08:49:59 t 1 1 192744 611 0.00 2019-12-10 08:50:04 2019-12-10 09:04:04 t 1 1 192753 615 0.00 2019-12-10 09:07:21 2019-12-10 09:20:40 t 1 1 192755 679 0.00 2019-12-10 09:19:42 2019-12-10 09:23:22 t 1 1 192757 611 0.00 2019-12-10 09:23:23 2019-12-10 09:26:24 t 1 1 192758 611 0.00 2019-12-10 09:26:24 2019-12-10 09:26:43 t 1 1 192759 611 0.00 2019-12-10 09:26:43 2019-12-10 09:27:46 t 1 1 192760 611 0.00 2019-12-10 09:30:54 2019-12-10 09:32:06 t 1 1 192761 627 0.00 2019-12-10 09:32:14 2019-12-10 09:34:32 t 1 1 192762 611 0.00 2019-12-10 09:32:15 2019-12-10 09:35:26 t 1 1 192763 611 0.00 2019-12-10 09:35:25 2019-12-10 09:36:30 t 1 1 192764 615 0.00 2019-12-10 09:20:40 2019-12-10 09:37:11 t 1 1 192765 514 0.00 2019-12-10 06:06:28 2019-12-10 09:37:20 t 1 1 192766 734 0.00 2019-12-10 08:24:35 2019-12-10 09:38:04 t 1 1 192767 611 0.00 2019-12-10 09:37:17 2019-12-10 09:39:16 t 1 1 192768 627 0.00 2019-12-10 09:35:23 2019-12-10 09:40:10 t 1 1 192769 611 0.00 2019-12-10 09:39:15 2019-12-10 09:40:10 t 1 1 192770 679 0.00 2019-12-10 09:39:42 2019-12-10 09:44:24 t 1 1 192771 675 0.00 2019-12-10 09:44:02 2019-12-10 09:46:10 t 1 1 192772 615 0.00 2019-12-10 09:37:11 2019-12-10 09:46:18 t 1 1 192773 611 0.00 2019-12-10 09:40:10 2019-12-10 09:47:03 t 1 1 192774 637 0.00 2019-12-10 09:29:07 2019-12-10 09:50:49 t 1 1 192775 220 0.00 2019-12-10 09:40:23 2019-12-10 09:53:28 t 1 2 192776 734 0.00 2019-12-10 09:52:54 2019-12-10 09:54:26 t 1 1 192777 671 0.00 2019-12-10 09:43:10 2019-12-10 09:55:14 t 1 1 192778 639 0.00 2019-12-10 09:04:34 2019-12-10 09:56:28 t 1 1 192779 722 0.00 2019-12-10 09:54:27 2019-12-10 09:57:14 t 1 1 192780 627 0.00 2019-12-10 09:44:45 2019-12-10 10:01:27 t 1 1 192781 709 0.00 2019-12-10 09:57:47 2019-12-10 10:01:36 t 1 1 192782 675 0.00 2019-12-10 10:00:29 2019-12-10 10:02:19 t 1 1 192783 615 0.00 2019-12-10 09:46:18 2019-12-10 10:02:39 t 1 1 192784 671 0.00 2019-12-10 09:58:18 2019-12-10 10:03:38 t 1 1 192785 622 0.00 2019-12-10 09:52:20 2019-12-10 10:03:46 t 1 1 192786 734 0.00 2019-12-10 09:54:46 2019-12-10 10:04:28 t 1 1 192787 637 0.00 2019-12-10 10:04:43 2019-12-10 10:07:12 t 1 1 192788 639 0.00 2019-12-10 10:04:55 2019-12-10 10:07:20 t 1 1 192789 707 0.00 2019-12-10 10:02:25 2019-12-10 10:08:46 t 1 1 192790 724 0.00 2019-12-10 09:57:54 2019-12-10 10:09:26 t 1 1 192791 734 0.00 2019-12-10 10:04:28 2019-12-10 10:09:45 t 1 1 192792 578 0.00 2019-12-10 00:08:09 2019-12-10 10:09:46 t 1 1 192793 516 0.00 2019-12-10 10:11:46 2019-12-10 10:12:42 t 1 1 192794 591 0.00 2019-12-10 09:19:32 2019-12-10 10:12:42 t 1 1 192795 551 0.00 2019-12-10 09:20:11 2019-12-10 10:13:50 t 1 1 192796 639 0.00 2019-12-10 10:14:30 2019-12-10 10:15:00 t 1 1 192797 637 0.00 2019-12-10 10:07:47 2019-12-10 10:15:49 t 1 1 192798 734 0.00 2019-12-10 10:11:54 2019-12-10 10:15:51 t 1 1 192799 639 0.00 2019-12-10 10:15:31 2019-12-10 10:18:30 t 1 1 192800 611 0.00 2019-12-10 10:17:57 2019-12-10 10:19:01 t 1 1 192801 516 0.00 2019-12-10 10:13:04 2019-12-10 10:21:51 t 1 1 192802 734 0.00 2019-12-10 10:18:55 2019-12-10 10:23:02 t 1 1 192803 622 0.00 2019-12-10 10:03:46 2019-12-10 10:24:49 t 1 1 192804 591 0.00 2019-12-10 10:12:42 2019-12-10 10:25:29 t 1 1 192805 615 0.00 2019-12-10 10:02:39 2019-12-10 10:27:02 t 1 1 192806 311 0.00 2019-12-10 10:11:12 2019-12-10 10:27:35 t 1 2 192807 718 0.00 2019-12-10 10:18:43 2019-12-10 10:28:21 t 1 1 192808 675 0.00 2019-12-10 10:26:42 2019-12-10 10:28:57 t 1 1 192809 516 0.00 2019-12-10 10:29:36 2019-12-10 10:29:37 t 1 1 192810 679 0.00 2019-12-10 10:29:00 2019-12-10 10:31:15 t 1 1 192811 622 0.00 2019-12-10 10:24:49 2019-12-10 10:34:34 t 1 1 192812 679 0.00 2019-12-10 10:35:28 2019-12-10 10:36:28 t 1 1 192813 639 0.00 2019-12-10 10:35:59 2019-12-10 10:36:39 t 1 1 192814 639 0.00 2019-12-10 10:36:47 2019-12-10 10:39:39 t 1 1 192815 718 0.00 2019-12-10 10:28:21 2019-12-10 10:42:34 t 1 1 192816 694 0.00 2019-12-10 09:23:42 2019-12-10 10:44:20 t 1 1 192817 622 0.00 2019-12-10 10:34:34 2019-12-10 10:44:22 t 1 1 192818 718 0.00 2019-12-10 10:42:34 2019-12-10 10:44:52 t 1 1 192819 564 0.00 2019-12-10 10:44:46 2019-12-10 10:44:52 t 1 1 192820 734 0.00 2019-12-10 10:23:05 2019-12-10 10:46:20 t 1 1 192821 673 0.00 2019-12-10 09:53:02 2019-12-10 10:52:51 t 1 1 192822 639 0.00 2019-12-10 10:52:38 2019-12-10 10:54:56 t 1 1 192823 679 0.00 2019-12-10 10:57:15 2019-12-10 10:58:50 t 1 1 192824 516 0.00 2019-12-10 10:59:18 2019-12-10 10:59:21 t 1 1 192825 694 0.00 2019-12-10 10:44:20 2019-12-10 10:59:25 t 1 1 192826 718 0.00 2019-12-10 10:44:51 2019-12-10 11:00:29 t 1 1 192827 718 0.00 2019-12-10 11:00:29 2019-12-10 11:01:26 t 1 1 192828 639 0.00 2019-12-10 10:57:54 2019-12-10 11:01:52 t 1 1 192831 516 0.00 2019-12-10 11:01:52 2019-12-10 11:03:29 t 1 1 192839 538 0.00 2019-12-10 10:48:05 2019-12-10 11:11:05 t 1 1 192840 622 0.00 2019-12-10 10:53:16 2019-12-10 11:11:39 t 1 1 192843 671 0.00 2019-12-10 11:05:20 2019-12-10 11:12:15 t 1 1 192845 639 0.00 2019-12-10 11:08:04 2019-12-10 11:13:39 t 1 1 192849 694 0.00 2019-12-10 11:03:34 2019-12-10 11:19:36 t 1 1 192851 694 0.00 2019-12-10 11:19:31 2019-12-10 11:20:46 t 1 1 192854 625 0.00 2019-12-10 11:20:58 2019-12-10 11:22:03 t 1 1 192855 625 0.00 2019-12-10 11:22:33 2019-12-10 11:23:46 t 1 1 192862 667 0.00 2019-12-10 11:27:26 2019-12-10 11:28:39 t 1 2 192864 734 0.00 2019-12-10 11:25:48 2019-12-10 11:30:07 t 1 1 192871 671 0.00 2019-12-10 11:27:58 2019-12-10 11:35:19 t 1 1 192872 675 0.00 2019-12-10 11:34:00 2019-12-10 11:35:35 t 1 1 192874 591 0.00 2019-12-10 11:32:48 2019-12-10 11:36:51 t 1 1 192879 687 0.00 2019-12-10 11:18:20 2019-12-10 11:43:18 t 1 1 192884 694 0.00 2019-12-10 11:21:11 2019-12-10 11:54:32 t 1 1 192887 694 0.00 2019-12-10 11:55:04 2019-12-10 11:57:04 t 1 1 192892 734 0.00 2019-12-10 11:56:14 2019-12-10 12:04:25 t 1 1 192895 675 0.00 2019-12-10 11:48:59 2019-12-10 12:07:07 t 1 1 192897 627 0.00 2019-12-10 11:47:45 2019-12-10 12:10:36 t 1 1 192902 673 0.00 2019-12-10 12:02:51 2019-12-10 12:17:11 t 1 1 192904 627 0.00 2019-12-10 12:16:28 2019-12-10 12:18:21 t 1 1 192907 734 0.00 2019-12-10 12:18:24 2019-12-10 12:20:04 t 1 1 192908 724 0.00 2019-12-10 11:53:00 2019-12-10 12:21:19 t 1 1 192912 627 0.00 2019-12-10 12:19:40 2019-12-10 12:28:18 t 1 1 192913 673 0.00 2019-12-10 12:28:04 2019-12-10 12:29:50 t 1 1 192917 649 0.00 2019-12-10 12:23:59 2019-12-10 12:37:15 t 1 1 192921 625 0.00 2019-12-10 12:24:41 2019-12-10 12:41:30 t 1 1 192922 627 0.00 2019-12-10 12:41:51 2019-12-10 12:42:10 t 1 1 192924 625 0.00 2019-12-10 12:41:30 2019-12-10 12:44:01 t 1 1 192926 622 0.00 2019-12-10 12:39:13 2019-12-10 12:44:38 t 1 1 192928 649 0.00 2019-12-10 12:37:15 2019-12-10 12:47:50 t 1 1 192933 627 0.00 2019-12-10 12:47:39 2019-12-10 12:53:35 t 1 1 192936 220 0.00 2019-12-10 10:27:05 2019-12-10 12:57:25 t 1 2 192937 675 0.00 2019-12-10 12:50:04 2019-12-10 12:58:24 t 1 1 192939 679 0.00 2019-12-10 12:43:53 2019-12-10 13:00:04 t 1 1 192943 679 0.00 2019-12-10 13:01:01 2019-12-10 13:06:16 t 1 1 192946 481 0.00 2019-12-10 11:57:42 2019-12-10 13:08:11 t 1 1 192948 707 0.00 2019-12-10 13:08:34 2019-12-10 13:12:49 t 1 1 192950 627 0.00 2019-12-10 13:10:54 2019-12-10 13:13:22 t 1 1 192955 673 0.00 2019-12-10 12:29:53 2019-12-10 13:16:36 t 1 1 192956 459 0.00 2019-12-10 13:16:59 2019-12-10 13:17:09 t 1 2 192957 564 0.00 2019-12-10 12:52:58 2019-12-10 13:17:38 t 1 1 192958 564 0.00 2019-12-10 13:17:38 2019-12-10 13:19:55 t 1 1 192959 627 0.00 2019-12-10 13:25:05 2019-12-10 13:25:22 t 1 1 192963 691 0.00 2019-12-10 13:27:10 2019-12-10 13:27:29 t 1 1 192964 691 0.00 2019-12-10 13:27:29 2019-12-10 13:28:41 t 1 1 192965 691 0.00 2019-12-10 13:29:00 2019-12-10 13:30:08 t 1 1 192970 639 0.00 2019-12-10 13:34:37 2019-12-10 13:35:56 t 1 1 192973 220 0.00 2019-12-10 10:30:43 2019-12-10 13:42:04 t 1 2 192983 591 0.00 2019-12-10 13:45:54 2019-12-10 13:55:40 t 1 1 192984 687 0.00 2019-12-10 13:41:45 2019-12-10 13:56:40 t 1 1 192988 611 0.00 2019-12-10 13:44:38 2019-12-10 14:01:58 t 1 1 192990 528 0.00 2019-12-10 13:56:57 2019-12-10 14:03:31 t 1 1 192992 564 0.00 2019-12-10 13:56:35 2019-12-10 14:05:44 t 1 1 192993 694 0.00 2019-12-10 13:52:46 2019-12-10 14:05:47 t 1 1 192997 673 0.00 2019-12-10 13:57:41 2019-12-10 14:09:51 t 1 1 193001 639 0.00 2019-12-10 14:11:10 2019-12-10 14:12:42 t 1 1 193006 627 0.00 2019-12-10 14:08:55 2019-12-10 14:15:15 t 1 1 193010 611 0.00 2019-12-10 14:15:43 2019-12-10 14:16:24 t 1 1 193012 722 0.00 2019-12-10 14:16:18 2019-12-10 14:16:48 t 1 1 193015 627 0.00 2019-12-10 14:15:15 2019-12-10 14:18:14 t 1 1 193016 722 0.00 2019-12-10 14:18:12 2019-12-10 14:18:35 t 1 1 193017 722 0.00 2019-12-10 14:19:03 2019-12-10 14:19:30 t 1 1 193020 679 0.00 2019-12-10 14:20:09 2019-12-10 14:20:19 t 1 1 193021 679 0.00 2019-12-10 14:20:25 2019-12-10 14:20:45 t 1 1 193023 679 0.00 2019-12-10 14:21:11 2019-12-10 14:21:21 t 1 1 193024 722 0.00 2019-12-10 14:19:36 2019-12-10 14:21:39 t 1 1 193028 562 0.00 2019-12-10 14:20:26 2019-12-10 14:22:13 t 1 1 193029 639 0.00 2019-12-10 14:21:27 2019-12-10 14:22:29 t 1 1 193033 722 0.00 2019-12-10 14:23:15 2019-12-10 14:23:56 t 1 1 193037 679 0.00 2019-12-10 14:24:32 2019-12-10 14:24:44 t 1 1 193046 722 0.00 2019-12-10 14:26:27 2019-12-10 14:27:41 t 1 1 193051 564 0.00 2019-12-10 14:26:10 2019-12-10 14:28:33 t 1 1 193053 679 0.00 2019-12-10 14:28:40 2019-12-10 14:28:54 t 1 1 193055 722 0.00 2019-12-10 14:28:27 2019-12-10 14:29:18 t 1 1 193058 660 0.00 2019-12-10 14:09:00 2019-12-10 14:30:00 t 1 1 193060 392 0.00 2019-12-10 13:28:13 2019-12-10 14:30:30 t 1 2 193066 722 0.00 2019-12-10 14:30:33 2019-12-10 14:31:51 t 1 1 193067 611 0.00 2019-12-10 14:28:23 2019-12-10 14:31:54 t 1 1 193071 591 0.00 2019-12-10 14:07:30 2019-12-10 14:32:44 t 1 1 193074 679 0.00 2019-12-10 14:32:47 2019-12-10 14:33:51 t 1 1 193075 611 0.00 2019-12-10 14:31:54 2019-12-10 14:34:32 t 1 1 193082 673 0.00 2019-12-10 14:19:56 2019-12-10 14:43:19 t 1 1 193085 622 0.00 2019-12-10 14:35:23 2019-12-10 14:47:20 t 1 1 193089 679 0.00 2019-12-10 14:50:20 2019-12-10 14:50:38 t 1 1 193090 665 0.00 2019-12-10 14:35:08 2019-12-10 14:51:46 t 1 1 193091 562 0.00 2019-12-10 14:25:56 2019-12-10 14:53:05 t 1 1 193094 490 0.00 2019-12-10 14:49:39 2019-12-10 14:58:54 t 1 1 193097 622 0.00 2019-12-10 14:58:54 2019-12-10 15:01:25 t 1 1 193101 459 0.00 2019-12-10 15:04:15 2019-12-10 15:04:23 t 1 2 193104 673 0.00 2019-12-10 14:55:13 2019-12-10 15:05:48 t 1 1 193106 718 0.00 2019-12-10 14:19:59 2019-12-10 15:09:28 t 1 1 193108 220 0.00 2019-12-10 15:05:25 2019-12-10 15:10:04 t 1 2 193112 611 0.00 2019-12-10 15:12:41 2019-12-10 15:13:56 t 1 1 193116 562 0.00 2019-12-10 15:04:29 2019-12-10 15:18:25 t 1 1 193117 622 0.00 2019-12-10 15:05:34 2019-12-10 15:19:04 t 1 1 193118 692 0.00 2019-12-10 15:18:57 2019-12-10 15:19:40 t 1 1 193121 679 0.00 2019-12-10 14:50:43 2019-12-10 15:22:45 t 1 1 193126 692 0.00 2019-12-10 15:22:54 2019-12-10 15:24:32 t 1 1 193128 679 0.00 2019-12-10 15:24:56 2019-12-10 15:25:13 t 1 1 193131 679 0.00 2019-12-10 15:25:19 2019-12-10 15:25:48 t 1 1 193137 692 0.00 2019-12-10 15:27:01 2019-12-10 15:27:35 t 1 1 193140 679 0.00 2019-12-10 15:27:56 2019-12-10 15:28:21 t 1 1 193141 671 0.00 2019-12-10 15:27:30 2019-12-10 15:28:40 t 1 1 193144 679 0.00 2019-12-10 15:28:27 2019-12-10 15:29:12 t 1 1 192829 679 0.00 2019-12-10 10:58:50 2019-12-10 11:02:34 t 1 1 192832 694 0.00 2019-12-10 11:02:38 2019-12-10 11:03:34 t 1 1 192834 220 0.00 2019-12-10 11:05:49 2019-12-10 11:07:14 t 1 1 192836 392 0.00 2019-12-10 10:37:28 2019-12-10 11:07:33 t 1 2 192842 707 0.00 2019-12-10 10:57:56 2019-12-10 11:11:56 t 1 1 192847 639 0.00 2019-12-10 11:13:39 2019-12-10 11:17:28 t 1 1 192848 564 0.00 2019-12-10 10:44:56 2019-12-10 11:18:42 t 1 1 192853 671 0.00 2019-12-10 11:16:13 2019-12-10 11:20:54 t 1 1 192859 625 0.00 2019-12-10 11:23:58 2019-12-10 11:27:27 t 1 1 192861 667 0.00 2019-12-10 11:27:30 2019-12-10 11:28:36 t 1 2 192863 671 0.00 2019-12-10 11:27:40 2019-12-10 11:29:39 t 1 1 192869 639 0.00 2019-12-10 11:33:26 2019-12-10 11:33:42 t 1 1 192873 615 0.00 2019-12-10 11:34:03 2019-12-10 11:36:23 t 1 1 192875 635 0.00 2019-12-10 11:27:13 2019-12-10 11:37:24 t 1 1 192876 625 0.00 2019-12-10 11:33:50 2019-12-10 11:40:17 t 1 1 192877 639 0.00 2019-12-10 11:39:02 2019-12-10 11:40:31 t 1 1 192881 639 0.00 2019-12-10 11:47:03 2019-12-10 11:47:51 t 1 1 192890 687 0.00 2019-12-10 11:51:23 2019-12-10 11:58:46 t 1 1 192891 694 0.00 2019-12-10 11:57:04 2019-12-10 12:01:39 t 1 1 192894 581 0.00 2019-12-10 11:58:31 2019-12-10 12:06:33 t 1 1 192896 687 0.00 2019-12-10 11:58:46 2019-12-10 12:07:37 t 1 1 192898 675 0.00 2019-12-10 12:07:07 2019-12-10 12:11:24 t 1 1 192900 734 0.00 2019-12-10 12:07:22 2019-12-10 12:14:23 t 1 1 192905 671 0.00 2019-12-10 12:17:35 2019-12-10 12:19:11 t 1 1 192909 615 0.00 2019-12-10 12:08:30 2019-12-10 12:22:06 t 1 1 192910 625 0.00 2019-12-10 11:40:17 2019-12-10 12:24:41 t 1 1 192911 673 0.00 2019-12-10 12:26:14 2019-12-10 12:28:05 t 1 1 192914 498 0.00 2019-12-10 10:20:03 2019-12-10 12:33:34 t 1 2 192915 639 0.00 2019-12-10 12:26:24 2019-12-10 12:34:58 t 1 1 192916 627 0.00 2019-12-10 12:36:30 2019-12-10 12:36:53 t 1 1 192923 687 0.00 2019-12-10 12:39:45 2019-12-10 12:42:51 t 1 1 192927 675 0.00 2019-12-10 12:35:17 2019-12-10 12:45:32 t 1 1 192930 562 0.00 2019-12-10 12:31:25 2019-12-10 12:51:33 t 1 1 192932 691 0.00 2019-12-10 12:52:48 2019-12-10 12:53:27 t 1 1 192934 687 0.00 2019-12-10 12:43:19 2019-12-10 12:54:32 t 1 1 192938 485 0.00 2019-12-10 12:57:36 2019-12-10 13:00:01 t 1 1 192945 562 0.00 2019-12-10 13:05:50 2019-12-10 13:08:00 t 1 1 192951 551 0.00 2019-12-10 10:13:50 2019-12-10 13:14:31 t 1 1 192953 459 0.00 2019-12-10 13:15:18 2019-12-10 13:15:33 t 1 2 192961 734 0.00 2019-12-10 12:34:16 2019-12-10 13:26:01 t 1 1 192966 611 0.00 2019-12-10 13:21:19 2019-12-10 13:30:25 t 1 1 192969 675 0.00 2019-12-10 13:27:29 2019-12-10 13:34:35 t 1 1 192975 722 0.00 2019-12-10 13:33:01 2019-12-10 13:44:02 t 1 1 192978 694 0.00 2019-12-10 12:02:34 2019-12-10 13:52:46 t 1 1 192982 627 0.00 2019-12-10 13:42:43 2019-12-10 13:55:38 t 1 1 192985 671 0.00 2019-12-10 13:51:49 2019-12-10 13:58:43 t 1 1 192987 591 0.00 2019-12-10 13:57:25 2019-12-10 14:00:02 t 1 1 192991 687 0.00 2019-12-10 14:03:13 2019-12-10 14:05:09 t 1 1 192996 627 0.00 2019-12-10 13:56:41 2019-12-10 14:08:55 t 1 1 192998 722 0.00 2019-12-10 13:44:02 2019-12-10 14:11:24 t 1 1 193002 722 0.00 2019-12-10 14:13:24 2019-12-10 14:13:59 t 1 1 193003 722 0.00 2019-12-10 14:14:20 2019-12-10 14:14:22 t 1 1 193005 722 0.00 2019-12-10 14:14:28 2019-12-10 14:15:01 t 1 1 193007 722 0.00 2019-12-10 14:15:22 2019-12-10 14:15:24 t 1 1 193009 483 0.00 2019-12-10 14:05:12 2019-12-10 14:15:44 t 1 1 193018 673 0.00 2019-12-10 14:09:50 2019-12-10 14:19:56 t 1 1 193019 679 0.00 2019-12-10 14:16:34 2019-12-10 14:20:04 t 1 1 193022 679 0.00 2019-12-10 14:20:50 2019-12-10 14:21:05 t 1 1 193026 722 0.00 2019-12-10 14:21:12 2019-12-10 14:21:45 t 1 1 193027 679 0.00 2019-12-10 14:21:49 2019-12-10 14:22:12 t 1 1 193031 679 0.00 2019-12-10 14:23:11 2019-12-10 14:23:21 t 1 1 193035 679 0.00 2019-12-10 14:24:16 2019-12-10 14:24:27 t 1 1 193036 722 0.00 2019-12-10 14:24:24 2019-12-10 14:24:36 t 1 1 193038 679 0.00 2019-12-10 14:24:50 2019-12-10 14:25:33 t 1 1 193040 679 0.00 2019-12-10 14:25:39 2019-12-10 14:25:55 t 1 1 193041 564 0.00 2019-12-10 14:05:44 2019-12-10 14:26:10 t 1 1 193043 679 0.00 2019-12-10 14:26:24 2019-12-10 14:26:38 t 1 1 193044 679 0.00 2019-12-10 14:26:43 2019-12-10 14:27:14 t 1 1 193045 679 0.00 2019-12-10 14:27:19 2019-12-10 14:27:37 t 1 1 193047 611 0.00 2019-12-10 14:16:24 2019-12-10 14:27:47 t 1 1 193049 722 0.00 2019-12-10 14:27:47 2019-12-10 14:27:55 t 1 1 193054 671 0.00 2019-12-10 14:21:54 2019-12-10 14:29:11 t 1 1 193056 687 0.00 2019-12-10 14:09:50 2019-12-10 14:29:38 t 1 1 193061 679 0.00 2019-12-10 14:30:30 2019-12-10 14:30:49 t 1 1 193062 671 0.00 2019-12-10 14:30:07 2019-12-10 14:31:08 t 1 1 193063 679 0.00 2019-12-10 14:30:55 2019-12-10 14:31:20 t 1 1 193065 679 0.00 2019-12-10 14:31:25 2019-12-10 14:31:47 t 1 1 193068 679 0.00 2019-12-10 14:31:53 2019-12-10 14:32:21 t 1 1 193070 679 0.00 2019-12-10 14:32:26 2019-12-10 14:32:41 t 1 1 193073 639 0.00 2019-12-10 14:33:06 2019-12-10 14:33:35 t 1 1 193076 679 0.00 2019-12-10 14:33:56 2019-12-10 14:34:49 t 1 1 193079 671 0.00 2019-12-10 14:31:15 2019-12-10 14:40:13 t 1 1 193080 707 0.00 2019-12-10 13:21:51 2019-12-10 14:41:15 t 1 1 193088 551 0.00 2019-12-10 14:48:00 2019-12-10 14:50:27 t 1 1 193095 622 0.00 2019-12-10 14:47:20 2019-12-10 14:58:54 t 1 1 193099 611 0.00 2019-12-10 14:56:18 2019-12-10 15:01:43 t 1 1 193102 692 0.00 2019-12-10 15:02:38 2019-12-10 15:04:56 t 1 1 193107 459 0.00 2019-12-10 15:05:49 2019-12-10 15:09:55 t 1 2 193109 392 0.00 2019-12-10 14:47:01 2019-12-10 15:12:30 t 1 2 193113 611 0.00 2019-12-10 15:13:56 2019-12-10 15:14:11 t 1 1 193114 692 0.00 2019-12-10 15:16:48 2019-12-10 15:16:58 t 1 1 193120 611 0.00 2019-12-10 15:14:11 2019-12-10 15:20:51 t 1 1 193130 622 0.00 2019-12-10 15:19:04 2019-12-10 15:25:47 t 1 1 193133 679 0.00 2019-12-10 15:25:54 2019-12-10 15:26:15 t 1 1 193134 679 0.00 2019-12-10 15:26:20 2019-12-10 15:26:49 t 1 1 193135 679 0.00 2019-12-10 15:26:54 2019-12-10 15:27:12 t 1 1 193138 679 0.00 2019-12-10 15:27:18 2019-12-10 15:27:51 t 1 1 193139 692 0.00 2019-12-10 15:27:41 2019-12-10 15:28:20 t 1 1 193143 692 0.00 2019-12-10 15:28:26 2019-12-10 15:29:01 t 1 1 193147 679 0.00 2019-12-10 15:30:27 2019-12-10 15:30:55 t 1 1 193148 679 0.00 2019-12-10 15:31:00 2019-12-10 15:31:20 t 1 1 193152 692 0.00 2019-12-10 15:31:55 2019-12-10 15:32:37 t 1 1 193155 562 0.00 2019-12-10 15:33:28 2019-12-10 15:33:28 f 1 1 193157 562 0.00 2019-12-10 15:34:00 2019-12-10 15:34:00 f 1 1 193159 692 0.00 2019-12-10 15:32:43 2019-12-10 15:34:16 t 1 1 193160 679 0.00 2019-12-10 15:32:32 2019-12-10 15:34:33 t 1 1 193172 692 0.00 2019-12-10 15:40:54 2019-12-10 15:41:34 t 1 1 192830 694 0.00 2019-12-10 10:59:25 2019-12-10 11:02:39 t 1 1 192833 671 0.00 2019-12-10 10:43:39 2019-12-10 11:05:21 t 1 1 192835 581 0.00 2019-12-10 10:33:55 2019-12-10 11:07:28 t 1 1 192837 639 0.00 2019-12-10 11:01:52 2019-12-10 11:08:04 t 1 1 192838 675 0.00 2019-12-10 11:08:10 2019-12-10 11:08:21 t 1 1 192841 615 0.00 2019-12-10 11:05:30 2019-12-10 11:11:39 t 1 1 192844 667 0.00 2019-12-10 11:12:20 2019-12-10 11:13:21 t 1 2 192846 667 0.00 2019-12-10 11:15:12 2019-12-10 11:16:17 t 1 2 192850 681 0.00 2019-12-10 07:16:04 2019-12-10 11:20:36 t 1 1 192852 625 0.00 2019-12-10 11:11:15 2019-12-10 11:20:52 t 1 1 192856 591 0.00 2019-12-10 10:33:07 2019-12-10 11:23:46 t 1 1 192857 667 0.00 2019-12-10 11:23:45 2019-12-10 11:24:51 t 1 2 192858 574 0.00 2019-12-10 11:20:08 2019-12-10 11:25:31 t 1 1 192860 392 0.00 2019-12-10 11:09:01 2019-12-10 11:27:37 t 1 2 192865 625 0.00 2019-12-10 11:27:27 2019-12-10 11:30:18 t 1 1 192866 615 0.00 2019-12-10 11:15:07 2019-12-10 11:30:59 t 1 1 192867 622 0.00 2019-12-10 11:17:24 2019-12-10 11:32:14 t 1 1 192868 625 0.00 2019-12-10 11:31:06 2019-12-10 11:32:30 t 1 1 192870 625 0.00 2019-12-10 11:32:30 2019-12-10 11:33:50 t 1 1 192878 734 0.00 2019-12-10 11:34:29 2019-12-10 11:41:50 t 1 1 192880 627 0.00 2019-12-10 11:22:44 2019-12-10 11:46:26 t 1 1 192882 687 0.00 2019-12-10 11:43:18 2019-12-10 11:51:23 t 1 1 192883 516 0.00 2019-12-10 11:49:31 2019-12-10 11:52:49 t 1 1 192885 639 0.00 2019-12-10 11:54:11 2019-12-10 11:54:48 t 1 1 192886 707 0.00 2019-12-10 11:37:32 2019-12-10 11:56:46 t 1 1 192888 481 0.00 2019-12-10 07:30:42 2019-12-10 11:57:09 t 1 1 192889 639 0.00 2019-12-10 11:58:33 2019-12-10 11:58:39 t 1 1 192893 639 0.00 2019-12-10 12:02:10 2019-12-10 12:06:30 t 1 1 192899 627 0.00 2019-12-10 12:11:38 2019-12-10 12:11:46 t 1 1 192901 687 0.00 2019-12-10 12:07:37 2019-12-10 12:16:44 t 1 1 192903 671 0.00 2019-12-10 12:07:16 2019-12-10 12:17:36 t 1 1 192906 639 0.00 2019-12-10 12:17:26 2019-12-10 12:19:32 t 1 1 192918 687 0.00 2019-12-10 12:16:44 2019-12-10 12:37:53 t 1 1 192919 679 0.00 2019-12-10 12:37:51 2019-12-10 12:40:08 t 1 1 192920 679 0.00 2019-12-10 12:40:08 2019-12-10 12:41:08 t 1 1 192925 615 0.00 2019-12-10 12:24:58 2019-12-10 12:44:05 t 1 1 192929 622 0.00 2019-12-10 12:45:00 2019-12-10 12:48:14 t 1 1 192931 564 0.00 2019-12-10 11:18:42 2019-12-10 12:52:58 t 1 1 192935 691 0.00 2019-12-10 12:53:27 2019-12-10 12:54:35 t 1 1 192940 687 0.00 2019-12-10 12:54:32 2019-12-10 13:03:11 t 1 1 192941 671 0.00 2019-12-10 13:01:50 2019-12-10 13:04:55 t 1 1 192942 562 0.00 2019-12-10 12:51:33 2019-12-10 13:05:50 t 1 1 192944 707 0.00 2019-12-10 13:06:55 2019-12-10 13:07:56 t 1 1 192947 516 0.00 2019-12-10 12:52:24 2019-12-10 13:11:27 t 1 1 192949 675 0.00 2019-12-10 13:11:11 2019-12-10 13:13:10 t 1 1 192952 459 0.00 2019-12-10 13:14:42 2019-12-10 13:14:54 t 1 2 192954 459 0.00 2019-12-10 13:16:06 2019-12-10 13:16:19 t 1 2 192960 622 0.00 2019-12-10 13:18:28 2019-12-10 13:25:52 t 1 1 192962 691 0.00 2019-12-10 13:26:51 2019-12-10 13:27:10 t 1 1 192967 459 0.00 2019-12-10 13:17:41 2019-12-10 13:33:48 t 1 2 192968 611 0.00 2019-12-10 13:30:25 2019-12-10 13:34:26 t 1 1 192971 671 0.00 2019-12-10 13:30:11 2019-12-10 13:37:51 t 1 1 192972 687 0.00 2019-12-10 13:26:03 2019-12-10 13:41:35 t 1 1 192974 611 0.00 2019-12-10 13:34:25 2019-12-10 13:43:45 t 1 1 192976 591 0.00 2019-12-10 12:45:31 2019-12-10 13:45:57 t 1 1 192977 485 0.00 2019-12-10 13:45:41 2019-12-10 13:47:07 t 1 1 192979 667 0.00 2019-12-10 13:52:50 2019-12-10 13:53:09 t 1 1 192980 544 0.00 2019-12-10 13:36:34 2019-12-10 13:54:23 t 1 1 192981 485 0.00 2019-12-10 13:47:06 2019-12-10 13:55:24 t 1 1 192986 687 0.00 2019-12-10 13:57:54 2019-12-10 13:59:29 t 1 1 192989 487 0.00 2019-12-10 13:27:13 2019-12-10 14:02:18 t 1 2 192994 551 0.00 2019-12-10 13:17:27 2019-12-10 14:05:48 t 1 1 192995 611 0.00 2019-12-10 14:02:39 2019-12-10 14:07:14 t 1 1 192999 722 0.00 2019-12-10 14:11:44 2019-12-10 14:12:11 t 1 1 193000 481 0.00 2019-12-10 13:08:27 2019-12-10 14:12:40 t 1 1 193004 722 0.00 2019-12-10 14:12:17 2019-12-10 14:14:39 t 1 1 193008 611 0.00 2019-12-10 14:07:14 2019-12-10 14:15:43 t 1 1 193011 679 0.00 2019-12-10 14:09:35 2019-12-10 14:16:34 t 1 1 193013 639 0.00 2019-12-10 14:13:22 2019-12-10 14:17:09 t 1 1 193014 722 0.00 2019-12-10 14:17:12 2019-12-10 14:17:43 t 1 1 193025 679 0.00 2019-12-10 14:21:26 2019-12-10 14:21:43 t 1 1 193030 679 0.00 2019-12-10 14:22:18 2019-12-10 14:23:06 t 1 1 193032 679 0.00 2019-12-10 14:23:27 2019-12-10 14:23:40 t 1 1 193034 679 0.00 2019-12-10 14:23:45 2019-12-10 14:24:11 t 1 1 193039 722 0.00 2019-12-10 14:24:56 2019-12-10 14:25:39 t 1 1 193042 679 0.00 2019-12-10 14:26:00 2019-12-10 14:26:18 t 1 1 193048 679 0.00 2019-12-10 14:27:42 2019-12-10 14:27:53 t 1 1 193050 679 0.00 2019-12-10 14:27:59 2019-12-10 14:28:12 t 1 1 193052 679 0.00 2019-12-10 14:28:18 2019-12-10 14:28:34 t 1 1 193057 679 0.00 2019-12-10 14:29:00 2019-12-10 14:29:44 t 1 1 193059 679 0.00 2019-12-10 14:29:50 2019-12-10 14:30:24 t 1 1 193064 627 0.00 2019-12-10 14:18:14 2019-12-10 14:31:34 t 1 1 193069 671 0.00 2019-12-10 14:31:06 2019-12-10 14:32:40 t 1 1 193072 220 0.00 2019-12-10 14:13:22 2019-12-10 14:33:27 t 1 2 193077 622 0.00 2019-12-10 14:24:28 2019-12-10 14:35:23 t 1 1 193078 687 0.00 2019-12-10 14:29:38 2019-12-10 14:36:31 t 1 1 193081 687 0.00 2019-12-10 14:39:14 2019-12-10 14:42:00 t 1 1 193083 551 0.00 2019-12-10 14:26:54 2019-12-10 14:43:36 t 1 1 193084 687 0.00 2019-12-10 14:43:24 2019-12-10 14:47:06 t 1 1 193086 635 0.00 2019-12-10 14:37:04 2019-12-10 14:49:08 t 1 1 193087 679 0.00 2019-12-10 14:34:55 2019-12-10 14:50:15 t 1 1 193092 673 0.00 2019-12-10 14:43:19 2019-12-10 14:55:13 t 1 1 193093 611 0.00 2019-12-10 14:55:54 2019-12-10 14:56:18 t 1 1 193096 665 0.00 2019-12-10 14:51:46 2019-12-10 15:01:13 t 1 1 193098 562 0.00 2019-12-10 14:54:41 2019-12-10 15:01:42 t 1 1 193100 692 0.00 2019-12-10 14:59:46 2019-12-10 15:02:32 t 1 1 193103 459 0.00 2019-12-10 15:05:01 2019-12-10 15:05:10 t 1 2 193105 481 0.00 2019-12-10 14:12:40 2019-12-10 15:06:40 t 1 1 193110 611 0.00 2019-12-10 15:07:55 2019-12-10 15:12:42 t 1 1 193111 692 0.00 2019-12-10 15:06:16 2019-12-10 15:13:49 t 1 1 193115 692 0.00 2019-12-10 15:17:04 2019-12-10 15:18:21 t 1 1 193119 692 0.00 2019-12-10 15:19:45 2019-12-10 15:20:20 t 1 1 193122 692 0.00 2019-12-10 15:21:58 2019-12-10 15:22:47 t 1 1 193123 679 0.00 2019-12-10 15:22:50 2019-12-10 15:23:07 t 1 1 193124 679 0.00 2019-12-10 15:23:13 2019-12-10 15:24:01 t 1 1 193125 679 0.00 2019-12-10 15:24:06 2019-12-10 15:24:24 t 1 1 193127 679 0.00 2019-12-10 15:24:30 2019-12-10 15:24:50 t 1 1 193129 673 0.00 2019-12-10 15:13:36 2019-12-10 15:25:35 t 1 1 193132 639 0.00 2019-12-10 15:25:52 2019-12-10 15:26:03 t 1 1 193136 562 0.00 2019-12-10 15:18:25 2019-12-10 15:27:31 t 1 1 193142 675 0.00 2019-12-10 15:25:57 2019-12-10 15:29:01 t 1 1 193149 562 0.00 2019-12-10 15:27:31 2019-12-10 15:31:31 t 1 1 193153 687 0.00 2019-12-10 15:30:00 2019-12-10 15:32:53 t 1 1 193154 562 0.00 2019-12-10 15:33:05 2019-12-10 15:33:05 f 1 1 193158 562 0.00 2019-12-10 15:34:12 2019-12-10 15:34:12 f 1 1 193162 663 0.00 2019-12-10 15:18:21 2019-12-10 15:34:49 t 1 1 193164 707 0.00 2019-12-10 15:35:10 2019-12-10 15:37:14 t 1 1 193166 692 0.00 2019-12-10 15:37:03 2019-12-10 15:37:41 t 1 1 193167 692 0.00 2019-12-10 15:37:47 2019-12-10 15:38:26 t 1 1 193168 692 0.00 2019-12-10 15:38:31 2019-12-10 15:39:20 t 1 1 193169 544 0.00 2019-12-10 15:36:55 2019-12-10 15:39:55 t 1 1 193170 692 0.00 2019-12-10 15:39:25 2019-12-10 15:40:48 t 1 1 193173 692 0.00 2019-12-10 15:41:40 2019-12-10 15:42:19 t 1 1 193174 692 0.00 2019-12-10 15:42:24 2019-12-10 15:42:46 t 1 1 193176 687 0.00 2019-12-10 15:34:18 2019-12-10 15:44:29 t 1 1 193177 562 0.00 2019-12-10 15:34:51 2019-12-10 15:45:40 t 1 1 193183 671 0.00 2019-12-10 15:30:05 2019-12-10 15:49:44 t 1 1 193184 718 0.00 2019-12-10 15:42:46 2019-12-10 15:51:09 t 1 1 193185 673 0.00 2019-12-10 15:45:35 2019-12-10 15:51:33 t 1 1 193186 692 0.00 2019-12-10 15:51:47 2019-12-10 15:52:28 t 1 1 193187 692 0.00 2019-12-10 15:52:34 2019-12-10 15:53:01 t 1 1 193191 692 0.00 2019-12-10 15:53:07 2019-12-10 15:53:44 t 1 1 193193 516 0.00 2019-12-10 15:56:02 2019-12-10 15:57:14 t 1 1 193195 694 0.00 2019-12-10 14:05:47 2019-12-10 15:58:21 t 1 1 193203 692 0.00 2019-12-10 16:08:03 2019-12-10 16:08:42 t 1 1 193204 692 0.00 2019-12-10 16:08:48 2019-12-10 16:09:43 t 1 1 193206 692 0.00 2019-12-10 16:09:49 2019-12-10 16:11:13 t 1 1 193207 544 0.00 2019-12-10 15:39:55 2019-12-10 16:11:38 t 1 1 193209 722 0.00 2019-12-10 16:08:28 2019-12-10 16:12:18 t 1 1 193210 722 0.00 2019-12-10 16:12:25 2019-12-10 16:12:33 t 1 1 193216 722 0.00 2019-12-10 16:14:08 2019-12-10 16:15:21 t 1 1 193222 692 0.00 2019-12-10 16:19:36 2019-12-10 16:19:41 t 1 1 193230 516 0.00 2019-12-10 16:22:05 2019-12-10 16:22:23 t 1 1 193232 679 0.00 2019-12-10 16:18:09 2019-12-10 16:22:37 t 1 1 193241 692 0.00 2019-12-10 16:24:31 2019-12-10 16:25:10 t 1 1 193244 692 0.00 2019-12-10 16:26:01 2019-12-10 16:26:13 t 1 1 193248 722 0.00 2019-12-10 16:27:34 2019-12-10 16:27:39 t 1 1 193249 671 0.00 2019-12-10 16:27:12 2019-12-10 16:29:08 t 1 1 193253 528 0.00 2019-12-10 16:05:26 2019-12-10 16:31:20 t 1 1 193256 722 0.00 2019-12-10 16:32:57 2019-12-10 16:33:03 t 1 1 193271 485 0.00 2019-12-10 16:34:55 2019-12-10 16:38:25 t 1 1 193274 498 0.00 2019-12-10 16:39:49 2019-12-10 16:39:49 f 1 2 193275 516 0.00 2019-12-10 16:39:36 2019-12-10 16:40:24 t 1 1 193276 692 0.00 2019-12-10 16:40:43 2019-12-10 16:41:19 t 1 1 193279 679 0.00 2019-12-10 16:44:21 2019-12-10 16:44:22 t 1 1 193281 692 0.00 2019-12-10 16:45:46 2019-12-10 16:46:47 t 1 1 193282 679 0.00 2019-12-10 16:44:26 2019-12-10 16:48:06 t 1 1 193287 528 0.00 2019-12-10 16:31:20 2019-12-10 16:51:19 t 1 1 193289 220 0.00 2019-12-10 16:58:38 2019-12-10 16:59:40 t 1 2 193290 574 0.00 2019-12-10 17:00:45 2019-12-10 17:03:04 t 1 1 193291 544 0.00 2019-12-10 16:49:18 2019-12-10 17:03:31 t 1 1 193293 544 0.00 2019-12-10 17:04:09 2019-12-10 17:04:50 t 1 1 193296 691 0.00 2019-12-10 17:04:22 2019-12-10 17:06:29 t 1 1 193314 516 0.00 2019-12-10 17:17:36 2019-12-10 17:18:08 t 1 1 193318 220 0.00 2019-12-10 17:15:45 2019-12-10 17:22:50 t 1 1 193319 639 0.00 2019-12-10 17:23:28 2019-12-10 17:23:38 t 1 1 193321 516 0.00 2019-12-10 17:27:14 2019-12-10 17:27:43 t 1 1 193324 483 0.00 2019-12-10 17:17:09 2019-12-10 17:29:29 t 1 1 193332 639 0.00 2019-12-10 17:41:52 2019-12-10 17:41:55 t 1 1 193333 516 0.00 2019-12-10 17:38:11 2019-12-10 17:44:16 t 1 1 193334 671 0.00 2019-12-10 17:42:57 2019-12-10 17:44:41 t 1 1 193336 675 0.00 2019-12-10 17:45:35 2019-12-10 17:46:04 t 1 1 193339 562 0.00 2019-12-10 17:48:18 2019-12-10 17:48:45 t 1 1 193341 564 0.00 2019-12-10 16:59:06 2019-12-10 17:51:00 t 1 1 193342 681 0.00 2019-12-10 11:20:36 2019-12-10 17:51:05 t 1 1 193345 681 0.00 2019-12-10 17:51:04 2019-12-10 17:52:06 t 1 1 193348 516 0.00 2019-12-10 17:44:17 2019-12-10 17:54:53 t 1 1 193350 562 0.00 2019-12-10 17:50:17 2019-12-10 17:58:11 t 1 1 193355 691 0.00 2019-12-10 18:00:59 2019-12-10 18:01:42 t 1 1 193358 691 0.00 2019-12-10 18:01:42 2019-12-10 18:02:44 t 1 1 193360 639 0.00 2019-12-10 18:03:14 2019-12-10 18:04:19 t 1 1 193362 679 0.00 2019-12-10 18:01:51 2019-12-10 18:04:38 t 1 1 193366 639 0.00 2019-12-10 18:05:34 2019-12-10 18:05:48 t 1 1 193368 691 0.00 2019-12-10 18:06:03 2019-12-10 18:06:22 t 1 1 193370 691 0.00 2019-12-10 18:06:22 2019-12-10 18:07:32 t 1 1 193372 679 0.00 2019-12-10 18:06:14 2019-12-10 18:08:44 t 1 1 193374 538 0.00 2019-12-10 16:36:14 2019-12-10 18:09:31 t 1 1 193380 562 0.00 2019-12-10 18:07:09 2019-12-10 18:10:59 t 1 1 193387 679 0.00 2019-12-10 18:13:26 2019-12-10 18:14:01 t 1 1 193388 679 0.00 2019-12-10 18:14:06 2019-12-10 18:14:58 t 1 1 193389 679 0.00 2019-12-10 18:15:03 2019-12-10 18:15:21 t 1 1 193391 562 0.00 2019-12-10 18:15:06 2019-12-10 18:16:01 t 1 1 193395 679 0.00 2019-12-10 18:17:16 2019-12-10 18:17:35 t 1 1 193397 679 0.00 2019-12-10 18:18:09 2019-12-10 18:18:28 t 1 1 193400 679 0.00 2019-12-10 18:19:44 2019-12-10 18:20:12 t 1 1 193406 679 0.00 2019-12-10 18:20:54 2019-12-10 18:21:14 t 1 1 193409 488 0.00 2019-12-10 18:21:47 2019-12-10 18:21:47 f 1 1 193411 679 0.00 2019-12-10 18:22:28 2019-12-10 18:22:47 t 1 1 193414 679 0.00 2019-12-10 18:22:52 2019-12-10 18:23:16 t 1 1 193417 679 0.00 2019-12-10 18:24:25 2019-12-10 18:24:47 t 1 1 193421 679 0.00 2019-12-10 18:25:54 2019-12-10 18:26:19 t 1 1 193423 562 0.00 2019-12-10 18:26:37 2019-12-10 18:26:58 t 1 1 193426 675 0.00 2019-12-10 18:25:12 2019-12-10 18:28:01 t 1 1 193429 679 0.00 2019-12-10 18:28:28 2019-12-10 18:28:47 t 1 1 193430 744 0.00 2019-12-10 18:25:49 2019-12-10 18:29:18 t 1 1 193433 679 0.00 2019-12-10 18:29:30 2019-12-10 18:29:49 t 1 1 193435 679 0.00 2019-12-10 18:30:29 2019-12-10 18:30:46 t 1 1 193443 679 0.00 2019-12-10 18:34:09 2019-12-10 18:34:32 t 1 1 193452 679 0.00 2019-12-10 18:38:49 2019-12-10 18:39:11 t 1 1 193453 679 0.00 2019-12-10 18:39:16 2019-12-10 18:39:45 t 1 1 193454 681 0.00 2019-12-10 18:31:40 2019-12-10 18:40:06 t 1 1 193459 679 0.00 2019-12-10 18:41:52 2019-12-10 18:42:15 t 1 1 193460 679 0.00 2019-12-10 18:42:22 2019-12-10 18:42:25 t 1 1 193465 679 0.00 2019-12-10 18:44:57 2019-12-10 18:45:15 t 1 1 193145 679 0.00 2019-12-10 15:29:17 2019-12-10 15:29:57 t 1 1 193146 679 0.00 2019-12-10 15:30:04 2019-12-10 15:30:21 t 1 1 193150 679 0.00 2019-12-10 15:31:25 2019-12-10 15:31:59 t 1 1 193151 679 0.00 2019-12-10 15:32:04 2019-12-10 15:32:27 t 1 1 193156 687 0.00 2019-12-10 15:33:23 2019-12-10 15:33:35 t 1 1 193161 562 0.00 2019-12-10 15:32:58 2019-12-10 15:34:40 t 1 1 193163 639 0.00 2019-12-10 15:36:42 2019-12-10 15:36:51 t 1 1 193165 675 0.00 2019-12-10 15:36:58 2019-12-10 15:37:37 t 1 1 193171 591 0.00 2019-12-10 15:17:18 2019-12-10 15:41:11 t 1 1 193175 718 0.00 2019-12-10 15:09:28 2019-12-10 15:42:47 t 1 1 193178 392 0.00 2019-12-10 15:27:17 2019-12-10 15:46:20 t 1 2 193179 663 0.00 2019-12-10 15:34:49 2019-12-10 15:47:42 t 1 1 193181 220 0.00 2019-12-10 15:44:40 2019-12-10 15:48:54 t 1 1 193182 551 0.00 2019-12-10 14:57:08 2019-12-10 15:49:28 t 1 1 193188 673 0.00 2019-12-10 15:51:33 2019-12-10 15:53:12 t 1 1 193190 516 0.00 2019-12-10 15:52:46 2019-12-10 15:53:34 t 1 1 193192 516 0.00 2019-12-10 15:53:44 2019-12-10 15:54:07 t 1 1 193194 692 0.00 2019-12-10 15:57:05 2019-12-10 15:57:55 t 1 1 193198 692 0.00 2019-12-10 15:58:59 2019-12-10 15:59:36 t 1 1 193200 692 0.00 2019-12-10 16:04:09 2019-12-10 16:05:43 t 1 1 193201 692 0.00 2019-12-10 16:06:32 2019-12-10 16:07:11 t 1 1 193202 692 0.00 2019-12-10 16:07:16 2019-12-10 16:07:57 t 1 1 193205 639 0.00 2019-12-10 16:02:00 2019-12-10 16:10:55 t 1 1 193211 722 0.00 2019-12-10 16:12:47 2019-12-10 16:12:54 t 1 1 193214 516 0.00 2019-12-10 16:10:51 2019-12-10 16:13:53 t 1 1 193218 692 0.00 2019-12-10 16:14:18 2019-12-10 16:15:40 t 1 1 193223 562 0.00 2019-12-10 16:19:24 2019-12-10 16:19:59 t 1 1 193225 692 0.00 2019-12-10 16:20:13 2019-12-10 16:20:14 t 1 1 193227 722 0.00 2019-12-10 16:21:28 2019-12-10 16:21:28 t 1 1 193229 516 0.00 2019-12-10 16:21:47 2019-12-10 16:22:00 t 1 1 193234 692 0.00 2019-12-10 16:22:36 2019-12-10 16:23:15 t 1 1 193235 622 0.00 2019-12-10 16:21:33 2019-12-10 16:23:22 t 1 1 193237 516 0.00 2019-12-10 16:23:37 2019-12-10 16:24:01 t 1 1 193238 694 0.00 2019-12-10 15:59:48 2019-12-10 16:24:20 t 1 1 193240 516 0.00 2019-12-10 16:24:44 2019-12-10 16:24:55 t 1 1 193247 722 0.00 2019-12-10 16:25:30 2019-12-10 16:26:40 t 1 1 193251 722 0.00 2019-12-10 16:29:38 2019-12-10 16:30:39 t 1 1 193254 687 0.00 2019-12-10 16:22:08 2019-12-10 16:31:22 t 1 1 193255 692 0.00 2019-12-10 16:30:33 2019-12-10 16:32:11 t 1 1 193259 562 0.00 2019-12-10 16:33:20 2019-12-10 16:34:08 t 1 1 193260 516 0.00 2019-12-10 16:32:12 2019-12-10 16:34:30 t 1 1 193263 722 0.00 2019-12-10 16:35:05 2019-12-10 16:35:24 t 1 1 193264 538 0.00 2019-12-10 16:29:07 2019-12-10 16:36:14 t 1 1 193266 692 0.00 2019-12-10 16:35:40 2019-12-10 16:36:19 t 1 1 193267 692 0.00 2019-12-10 16:36:25 2019-12-10 16:36:33 t 1 1 193273 722 0.00 2019-12-10 16:37:52 2019-12-10 16:39:19 t 1 1 193277 562 0.00 2019-12-10 16:41:12 2019-12-10 16:41:26 t 1 1 193278 671 0.00 2019-12-10 16:31:49 2019-12-10 16:42:58 t 1 1 193280 694 0.00 2019-12-10 16:33:21 2019-12-10 16:46:33 t 1 1 193285 498 0.00 2019-12-10 16:49:30 2019-12-10 16:49:30 f 1 2 193286 675 0.00 2019-12-10 16:41:56 2019-12-10 16:50:56 t 1 1 193288 639 0.00 2019-12-10 16:47:27 2019-12-10 16:56:49 t 1 1 193292 544 0.00 2019-12-10 17:03:30 2019-12-10 17:04:10 t 1 1 193297 544 0.00 2019-12-10 17:06:15 2019-12-10 17:06:50 t 1 1 193298 544 0.00 2019-12-10 17:06:50 2019-12-10 17:07:31 t 1 1 193301 544 0.00 2019-12-10 17:08:46 2019-12-10 17:09:21 t 1 1 193303 639 0.00 2019-12-10 17:09:05 2019-12-10 17:10:06 t 1 1 193305 562 0.00 2019-12-10 17:05:36 2019-12-10 17:11:12 t 1 1 193309 544 0.00 2019-12-10 17:12:31 2019-12-10 17:13:05 t 1 1 193312 639 0.00 2019-12-10 17:14:48 2019-12-10 17:15:52 t 1 1 193313 639 0.00 2019-12-10 17:17:19 2019-12-10 17:17:38 t 1 1 193316 675 0.00 2019-12-10 17:19:11 2019-12-10 17:21:08 t 1 1 193317 392 0.00 2019-12-10 16:57:19 2019-12-10 17:22:20 t 1 2 193320 562 0.00 2019-12-10 17:12:38 2019-12-10 17:26:58 t 1 1 193323 687 0.00 2019-12-10 17:25:42 2019-12-10 17:29:29 t 1 1 193326 639 0.00 2019-12-10 17:35:47 2019-12-10 17:35:55 t 1 1 193327 742 0.00 2019-12-10 17:27:08 2019-12-10 17:36:42 t 1 1 193328 639 0.00 2019-12-10 17:37:15 2019-12-10 17:37:34 t 1 1 193330 724 0.00 2019-12-10 17:36:19 2019-12-10 17:40:09 t 1 1 193335 639 0.00 2019-12-10 17:45:06 2019-12-10 17:45:12 t 1 1 193337 220 0.00 2019-12-10 17:28:47 2019-12-10 17:46:26 t 1 2 193340 671 0.00 2019-12-10 17:43:17 2019-12-10 17:50:29 t 1 1 193343 544 0.00 2019-12-10 17:13:05 2019-12-10 17:51:46 t 1 1 193346 483 0.00 2019-12-10 17:44:16 2019-12-10 17:52:31 t 1 1 193349 564 0.00 2019-12-10 17:51:00 2019-12-10 17:56:49 t 1 1 193351 544 0.00 2019-12-10 17:51:46 2019-12-10 18:00:03 t 1 1 193352 564 0.00 2019-12-10 17:56:49 2019-12-10 18:00:56 t 1 1 193353 691 0.00 2019-12-10 18:00:41 2019-12-10 18:01:00 t 1 1 193361 516 0.00 2019-12-10 17:54:53 2019-12-10 18:04:34 t 1 1 193363 691 0.00 2019-12-10 18:04:14 2019-12-10 18:05:05 t 1 1 193364 562 0.00 2019-12-10 18:00:55 2019-12-10 18:05:25 t 1 1 193365 691 0.00 2019-12-10 18:05:05 2019-12-10 18:05:35 t 1 1 193367 691 0.00 2019-12-10 18:05:35 2019-12-10 18:06:03 t 1 1 193369 724 0.00 2019-12-10 17:58:33 2019-12-10 18:07:26 t 1 1 193373 679 0.00 2019-12-10 18:08:50 2019-12-10 18:09:09 t 1 1 193376 679 0.00 2019-12-10 18:09:14 2019-12-10 18:09:47 t 1 1 193378 679 0.00 2019-12-10 18:09:52 2019-12-10 18:10:11 t 1 1 193381 679 0.00 2019-12-10 18:10:55 2019-12-10 18:11:15 t 1 1 193382 591 0.00 2019-12-10 16:31:26 2019-12-10 18:11:52 t 1 1 193385 679 0.00 2019-12-10 18:12:38 2019-12-10 18:13:19 t 1 1 193386 562 0.00 2019-12-10 18:13:29 2019-12-10 18:13:46 t 1 1 193390 220 0.00 2019-12-10 16:21:46 2019-12-10 18:15:36 t 1 2 193393 679 0.00 2019-12-10 18:16:23 2019-12-10 18:17:10 t 1 1 193396 679 0.00 2019-12-10 18:17:40 2019-12-10 18:18:04 t 1 1 193398 679 0.00 2019-12-10 18:18:33 2019-12-10 18:19:09 t 1 1 193399 679 0.00 2019-12-10 18:19:15 2019-12-10 18:19:38 t 1 1 193402 562 0.00 2019-12-10 18:19:53 2019-12-10 18:20:24 t 1 1 193404 679 0.00 2019-12-10 18:20:18 2019-12-10 18:20:48 t 1 1 193407 488 0.00 2019-12-10 18:21:21 2019-12-10 18:21:21 f 1 1 193412 718 0.00 2019-12-10 18:10:38 2019-12-10 18:22:55 t 1 1 193413 667 0.00 2019-12-10 18:22:13 2019-12-10 18:23:14 t 1 2 193418 679 0.00 2019-12-10 18:24:52 2019-12-10 18:25:25 t 1 1 193420 679 0.00 2019-12-10 18:25:31 2019-12-10 18:25:48 t 1 1 193424 679 0.00 2019-12-10 18:26:55 2019-12-10 18:27:27 t 1 1 193431 679 0.00 2019-12-10 18:28:53 2019-12-10 18:29:24 t 1 1 193436 681 0.00 2019-12-10 18:26:20 2019-12-10 18:31:12 t 1 1 193440 679 0.00 2019-12-10 18:32:44 2019-12-10 18:33:36 t 1 1 193180 692 0.00 2019-12-10 15:47:07 2019-12-10 15:48:39 t 1 1 193189 660 0.00 2019-12-10 14:34:47 2019-12-10 15:53:19 t 1 1 193196 692 0.00 2019-12-10 15:58:00 2019-12-10 15:58:53 t 1 1 193197 611 0.00 2019-12-10 15:44:07 2019-12-10 15:59:21 t 1 1 193199 694 0.00 2019-12-10 15:58:21 2019-12-10 15:59:48 t 1 1 193208 692 0.00 2019-12-10 16:11:19 2019-12-10 16:12:12 t 1 1 193212 722 0.00 2019-12-10 16:13:07 2019-12-10 16:13:14 t 1 1 193213 692 0.00 2019-12-10 16:12:17 2019-12-10 16:13:37 t 1 1 193215 722 0.00 2019-12-10 16:13:30 2019-12-10 16:14:09 t 1 1 193217 663 0.00 2019-12-10 16:05:02 2019-12-10 16:15:29 t 1 1 193219 687 0.00 2019-12-10 15:44:29 2019-12-10 16:17:47 t 1 1 193220 675 0.00 2019-12-10 16:15:50 2019-12-10 16:18:37 t 1 1 193221 516 0.00 2019-12-10 16:17:25 2019-12-10 16:19:26 t 1 1 193224 692 0.00 2019-12-10 16:19:46 2019-12-10 16:20:13 t 1 1 193226 692 0.00 2019-12-10 16:20:22 2019-12-10 16:21:01 t 1 1 193228 692 0.00 2019-12-10 16:21:07 2019-12-10 16:21:46 t 1 1 193231 692 0.00 2019-12-10 16:21:52 2019-12-10 16:22:30 t 1 1 193233 722 0.00 2019-12-10 16:20:20 2019-12-10 16:22:40 t 1 1 193236 692 0.00 2019-12-10 16:23:21 2019-12-10 16:23:46 t 1 1 193239 722 0.00 2019-12-10 16:24:27 2019-12-10 16:24:46 t 1 1 193242 722 0.00 2019-12-10 16:24:46 2019-12-10 16:25:25 t 1 1 193243 692 0.00 2019-12-10 16:25:15 2019-12-10 16:25:55 t 1 1 193245 516 0.00 2019-12-10 16:25:49 2019-12-10 16:26:15 t 1 1 193246 692 0.00 2019-12-10 16:26:19 2019-12-10 16:26:20 t 1 1 193250 692 0.00 2019-12-10 16:29:34 2019-12-10 16:30:11 t 1 1 193252 516 0.00 2019-12-10 16:30:52 2019-12-10 16:31:18 t 1 1 193257 694 0.00 2019-12-10 16:24:20 2019-12-10 16:33:22 t 1 1 193258 692 0.00 2019-12-10 16:33:59 2019-12-10 16:34:05 t 1 1 193261 692 0.00 2019-12-10 16:34:11 2019-12-10 16:34:57 t 1 1 193262 692 0.00 2019-12-10 16:35:02 2019-12-10 16:35:14 t 1 1 193265 722 0.00 2019-12-10 16:35:24 2019-12-10 16:36:19 t 1 1 193268 692 0.00 2019-12-10 16:36:39 2019-12-10 16:37:18 t 1 1 193269 722 0.00 2019-12-10 16:36:24 2019-12-10 16:37:25 t 1 1 193270 692 0.00 2019-12-10 16:37:23 2019-12-10 16:38:06 t 1 1 193272 692 0.00 2019-12-10 16:38:05 2019-12-10 16:38:42 t 1 1 193283 671 0.00 2019-12-10 16:45:57 2019-12-10 16:48:07 t 1 1 193284 692 0.00 2019-12-10 16:48:11 2019-12-10 16:49:13 t 1 1 193294 544 0.00 2019-12-10 17:04:50 2019-12-10 17:05:35 t 1 1 193295 544 0.00 2019-12-10 17:05:35 2019-12-10 17:06:15 t 1 1 193299 544 0.00 2019-12-10 17:07:31 2019-12-10 17:08:06 t 1 1 193300 544 0.00 2019-12-10 17:08:05 2019-12-10 17:08:46 t 1 1 193302 544 0.00 2019-12-10 17:09:21 2019-12-10 17:10:01 t 1 1 193304 544 0.00 2019-12-10 17:10:01 2019-12-10 17:10:36 t 1 1 193306 544 0.00 2019-12-10 17:10:36 2019-12-10 17:11:17 t 1 1 193307 544 0.00 2019-12-10 17:11:16 2019-12-10 17:11:48 t 1 1 193308 544 0.00 2019-12-10 17:11:48 2019-12-10 17:12:31 t 1 1 193310 516 0.00 2019-12-10 17:12:58 2019-12-10 17:13:41 t 1 1 193311 220 0.00 2019-12-10 17:10:33 2019-12-10 17:15:45 t 1 1 193315 516 0.00 2019-12-10 17:20:10 2019-12-10 17:20:51 t 1 1 193322 220 0.00 2019-12-10 17:25:52 2019-12-10 17:27:48 t 1 1 193325 498 0.00 2019-12-10 14:36:53 2019-12-10 17:31:28 t 1 2 193329 562 0.00 2019-12-10 17:37:41 2019-12-10 17:39:32 t 1 1 193331 694 0.00 2019-12-10 16:46:32 2019-12-10 17:41:28 t 1 1 193338 694 0.00 2019-12-10 17:41:28 2019-12-10 17:46:51 t 1 1 193344 639 0.00 2019-12-10 17:48:13 2019-12-10 17:51:48 t 1 1 193347 671 0.00 2019-12-10 17:51:52 2019-12-10 17:53:32 t 1 1 193354 639 0.00 2019-12-10 18:00:29 2019-12-10 18:01:41 t 1 1 193356 679 0.00 2019-12-10 17:57:13 2019-12-10 18:01:46 t 1 1 193357 544 0.00 2019-12-10 17:59:51 2019-12-10 18:02:29 t 1 1 193359 691 0.00 2019-12-10 18:02:44 2019-12-10 18:04:14 t 1 1 193371 709 0.00 2019-12-10 18:03:05 2019-12-10 18:07:42 t 1 1 193375 639 0.00 2019-12-10 18:06:51 2019-12-10 18:09:47 t 1 1 193377 681 0.00 2019-12-10 18:07:03 2019-12-10 18:10:08 t 1 1 193379 679 0.00 2019-12-10 18:10:16 2019-12-10 18:10:49 t 1 1 193383 679 0.00 2019-12-10 18:11:20 2019-12-10 18:12:11 t 1 1 193384 679 0.00 2019-12-10 18:12:17 2019-12-10 18:12:32 t 1 1 193392 679 0.00 2019-12-10 18:15:27 2019-12-10 18:16:17 t 1 1 193394 562 0.00 2019-12-10 18:16:58 2019-12-10 18:17:18 t 1 1 193401 681 0.00 2019-12-10 18:11:01 2019-12-10 18:20:21 t 1 1 193403 671 0.00 2019-12-10 18:19:40 2019-12-10 18:20:27 t 1 1 193405 488 0.00 2019-12-10 18:20:50 2019-12-10 18:20:50 f 1 1 193408 679 0.00 2019-12-10 18:21:19 2019-12-10 18:21:47 t 1 1 193410 679 0.00 2019-12-10 18:21:53 2019-12-10 18:22:22 t 1 1 193415 679 0.00 2019-12-10 18:23:21 2019-12-10 18:23:40 t 1 1 193416 679 0.00 2019-12-10 18:23:46 2019-12-10 18:24:19 t 1 1 193419 744 0.00 2019-12-10 18:23:25 2019-12-10 18:25:47 t 1 1 193422 679 0.00 2019-12-10 18:26:25 2019-12-10 18:26:50 t 1 1 193425 679 0.00 2019-12-10 18:27:32 2019-12-10 18:27:51 t 1 1 193427 707 0.00 2019-12-10 18:12:48 2019-12-10 18:28:17 t 1 1 193428 679 0.00 2019-12-10 18:27:57 2019-12-10 18:28:22 t 1 1 193432 639 0.00 2019-12-10 18:15:04 2019-12-10 18:29:33 t 1 1 193434 679 0.00 2019-12-10 18:29:54 2019-12-10 18:30:24 t 1 1 193437 679 0.00 2019-12-10 18:30:52 2019-12-10 18:31:32 t 1 1 193438 679 0.00 2019-12-10 18:31:38 2019-12-10 18:31:57 t 1 1 193439 679 0.00 2019-12-10 18:32:03 2019-12-10 18:32:38 t 1 1 193441 679 0.00 2019-12-10 18:33:42 2019-12-10 18:34:03 t 1 1 193445 679 0.00 2019-12-10 18:34:38 2019-12-10 18:35:01 t 1 1 193450 679 0.00 2019-12-10 18:37:42 2019-12-10 18:38:00 t 1 1 193451 679 0.00 2019-12-10 18:38:05 2019-12-10 18:38:43 t 1 1 193455 679 0.00 2019-12-10 18:39:50 2019-12-10 18:40:08 t 1 1 193457 679 0.00 2019-12-10 18:40:56 2019-12-10 18:41:14 t 1 1 193458 679 0.00 2019-12-10 18:41:20 2019-12-10 18:41:46 t 1 1 193463 679 0.00 2019-12-10 18:43:56 2019-12-10 18:44:15 t 1 1 193464 679 0.00 2019-12-10 18:44:22 2019-12-10 18:44:51 t 1 1 193468 679 0.00 2019-12-10 18:46:26 2019-12-10 18:46:56 t 1 1 193469 679 0.00 2019-12-10 18:47:02 2019-12-10 18:47:25 t 1 1 193472 679 0.00 2019-12-10 18:48:05 2019-12-10 18:49:02 t 1 1 193473 679 0.00 2019-12-10 18:49:07 2019-12-10 18:49:25 t 1 1 193475 591 0.00 2019-12-10 18:34:45 2019-12-10 18:50:25 t 1 1 193476 679 0.00 2019-12-10 18:49:31 2019-12-10 18:50:53 t 1 1 193479 679 0.00 2019-12-10 18:51:21 2019-12-10 18:52:03 t 1 1 193484 679 0.00 2019-12-10 18:54:46 2019-12-10 18:55:11 t 1 1 193494 679 0.00 2019-12-10 18:58:38 2019-12-10 18:58:58 t 1 1 193495 679 0.00 2019-12-10 18:59:03 2019-12-10 18:59:30 t 1 1 193497 679 0.00 2019-12-10 18:59:59 2019-12-10 19:00:25 t 1 1 193500 679 0.00 2019-12-10 19:00:55 2019-12-10 19:01:29 t 1 1 193502 639 0.00 2019-12-10 18:29:36 2019-12-10 19:02:01 t 1 1 193442 671 0.00 2019-12-10 18:20:27 2019-12-10 18:34:25 t 1 1 193444 591 0.00 2019-12-10 18:11:52 2019-12-10 18:34:45 t 1 1 193446 679 0.00 2019-12-10 18:35:07 2019-12-10 18:35:50 t 1 1 193447 679 0.00 2019-12-10 18:35:56 2019-12-10 18:36:37 t 1 1 193448 679 0.00 2019-12-10 18:36:42 2019-12-10 18:37:01 t 1 1 193449 679 0.00 2019-12-10 18:37:07 2019-12-10 18:37:36 t 1 1 193456 679 0.00 2019-12-10 18:40:14 2019-12-10 18:40:50 t 1 1 193461 679 0.00 2019-12-10 18:42:31 2019-12-10 18:42:50 t 1 1 193462 679 0.00 2019-12-10 18:42:56 2019-12-10 18:43:51 t 1 1 193466 679 0.00 2019-12-10 18:45:21 2019-12-10 18:45:55 t 1 1 193467 679 0.00 2019-12-10 18:46:01 2019-12-10 18:46:21 t 1 1 193474 615 0.00 2019-12-10 18:34:06 2019-12-10 18:49:30 t 1 1 193477 679 0.00 2019-12-10 18:50:52 2019-12-10 18:51:16 t 1 1 193478 736 0.00 2019-12-10 18:18:15 2019-12-10 18:51:22 t 1 1 193482 679 0.00 2019-12-10 18:53:42 2019-12-10 18:54:17 t 1 1 193483 679 0.00 2019-12-10 18:54:22 2019-12-10 18:54:40 t 1 1 193485 679 0.00 2019-12-10 18:55:17 2019-12-10 18:55:40 t 1 1 193487 481 0.00 2019-12-10 18:45:40 2019-12-10 18:56:43 t 1 1 193489 718 0.00 2019-12-10 18:22:55 2019-12-10 18:57:01 t 1 1 193490 718 0.00 2019-12-10 18:57:18 2019-12-10 18:57:21 t 1 1 193492 679 0.00 2019-12-10 18:57:27 2019-12-10 18:57:43 t 1 1 193493 679 0.00 2019-12-10 18:57:49 2019-12-10 18:58:32 t 1 1 193499 562 0.00 2019-12-10 18:55:43 2019-12-10 19:01:14 t 1 1 193503 679 0.00 2019-12-10 19:02:05 2019-12-10 19:02:49 t 1 1 193505 679 0.00 2019-12-10 19:03:19 2019-12-10 19:03:38 t 1 1 193511 679 0.00 2019-12-10 19:05:05 2019-12-10 19:05:40 t 1 1 193521 679 0.00 2019-12-10 19:10:28 2019-12-10 19:10:48 t 1 1 193527 679 0.00 2019-12-10 19:13:25 2019-12-10 19:13:49 t 1 1 193528 679 0.00 2019-12-10 19:13:56 2019-12-10 19:15:08 t 1 1 193530 679 0.00 2019-12-10 19:15:37 2019-12-10 19:15:57 t 1 1 193531 611 0.00 2019-12-10 19:08:40 2019-12-10 19:16:13 t 1 1 193535 679 0.00 2019-12-10 19:17:31 2019-12-10 19:17:59 t 1 1 193536 679 0.00 2019-12-10 19:18:05 2019-12-10 19:18:22 t 1 1 193538 562 0.00 2019-12-10 19:19:16 2019-12-10 19:19:35 t 1 1 193543 679 0.00 2019-12-10 19:20:12 2019-12-10 19:24:41 t 1 1 193544 566 0.00 2019-12-10 19:19:55 2019-12-10 19:26:42 t 1 1 193550 639 0.00 2019-12-10 19:04:04 2019-12-10 19:37:50 t 1 1 193551 544 0.00 2019-12-10 19:25:34 2019-12-10 19:38:39 t 1 1 193554 591 0.00 2019-12-10 18:50:25 2019-12-10 19:41:35 t 1 1 193557 611 0.00 2019-12-10 19:43:18 2019-12-10 19:44:36 t 1 1 193561 736 0.00 2019-12-10 19:46:10 2019-12-10 19:46:30 t 1 1 193563 544 0.00 2019-12-10 19:39:15 2019-12-10 19:47:22 t 1 1 193567 566 0.00 2019-12-10 19:26:42 2019-12-10 19:56:23 t 1 1 193569 528 0.00 2019-12-10 19:56:23 2019-12-10 19:56:52 t 1 1 193571 707 0.00 2019-12-10 19:30:54 2019-12-10 19:57:35 t 1 1 193574 528 0.00 2019-12-10 19:58:37 2019-12-10 19:59:07 t 1 1 193577 679 0.00 2019-12-10 19:57:39 2019-12-10 20:03:47 t 1 1 193579 485 0.00 2019-12-10 20:02:41 2019-12-10 20:05:01 t 1 1 193582 528 0.00 2019-12-10 20:08:38 2019-12-10 20:09:20 t 1 1 193584 734 0.00 2019-12-10 19:45:32 2019-12-10 20:09:50 t 1 1 193588 538 0.00 2019-12-10 19:57:43 2019-12-10 20:11:00 t 1 1 193589 734 0.00 2019-12-10 20:10:55 2019-12-10 20:11:26 t 1 1 193596 736 0.00 2019-12-10 20:17:13 2019-12-10 20:18:44 t 1 1 193604 564 0.00 2019-12-10 18:00:56 2019-12-10 20:25:10 t 1 1 193606 503 0.00 2019-12-10 20:26:24 2019-12-10 20:26:42 t 1 1 193609 503 0.00 2019-12-10 20:31:37 2019-12-10 20:31:59 t 1 1 193617 722 0.00 2019-12-10 20:38:50 2019-12-10 20:41:08 t 1 1 193618 220 0.00 2019-12-10 18:33:00 2019-12-10 20:41:20 t 1 2 193622 722 0.00 2019-12-10 20:42:11 2019-12-10 20:43:12 t 1 1 193624 722 0.00 2019-12-10 20:43:23 2019-12-10 20:43:51 t 1 1 193628 736 0.00 2019-12-10 20:44:56 2019-12-10 20:46:28 t 1 1 193629 503 0.00 2019-12-10 20:32:38 2019-12-10 20:48:18 t 1 1 193630 498 0.00 2019-12-10 19:53:57 2019-12-10 20:48:22 t 1 2 193634 722 0.00 2019-12-10 20:50:35 2019-12-10 20:51:08 t 1 1 193635 722 0.00 2019-12-10 20:51:14 2019-12-10 20:52:18 t 1 1 193636 722 0.00 2019-12-10 20:52:28 2019-12-10 20:52:46 t 1 1 193637 742 0.00 2019-12-10 20:43:47 2019-12-10 20:53:26 t 1 1 193640 722 0.00 2019-12-10 20:53:53 2019-12-10 20:54:24 t 1 1 193646 591 0.00 2019-12-10 19:59:03 2019-12-10 20:58:47 t 1 1 193648 709 0.00 2019-12-10 21:01:42 2019-12-10 21:02:45 t 1 1 193651 591 0.00 2019-12-10 20:58:48 2019-12-10 21:07:12 t 1 1 193654 671 0.00 2019-12-10 21:07:00 2019-12-10 21:12:44 t 1 1 193659 736 0.00 2019-12-10 21:20:08 2019-12-10 21:20:27 t 1 1 193660 671 0.00 2019-12-10 21:12:43 2019-12-10 21:21:45 t 1 1 193665 736 0.00 2019-12-10 21:33:05 2019-12-10 21:33:13 t 1 1 193666 687 0.00 2019-12-10 21:28:03 2019-12-10 21:35:06 t 1 1 193667 611 0.00 2019-12-10 21:34:27 2019-12-10 21:37:03 t 1 1 193669 744 0.00 2019-12-10 21:15:12 2019-12-10 21:39:35 t 1 1 193671 528 0.00 2019-12-10 21:36:38 2019-12-10 21:41:17 t 1 1 193674 538 0.00 2019-12-10 21:30:25 2019-12-10 21:44:21 t 1 1 193677 627 0.00 2019-12-10 21:26:02 2019-12-10 21:53:38 t 1 1 193678 685 0.00 2019-12-10 21:52:10 2019-12-10 21:54:28 t 1 1 193682 611 0.00 2019-12-10 21:48:36 2019-12-10 21:56:06 t 1 1 193685 578 0.00 2019-12-10 21:40:06 2019-12-10 21:57:15 t 1 1 193686 736 0.00 2019-12-10 21:53:32 2019-12-10 21:57:21 t 1 1 193695 627 0.00 2019-12-10 21:53:38 2019-12-10 22:01:52 t 1 1 193696 631 0.00 2019-12-10 21:59:00 2019-12-10 22:03:33 t 1 1 193697 581 0.00 2019-12-10 21:17:53 2019-12-10 22:06:05 t 1 1 193698 654 0.00 2019-12-10 21:55:28 2019-12-10 22:06:34 t 1 1 193699 718 0.00 2019-12-10 21:37:57 2019-12-10 22:09:27 t 1 1 193701 736 0.00 2019-12-10 22:06:11 2019-12-10 22:09:53 t 1 1 193704 689 0.00 2019-12-10 22:14:39 2019-12-10 22:15:39 t 1 1 193708 689 0.00 2019-12-10 22:15:54 2019-12-10 22:16:51 t 1 1 193711 687 0.00 2019-12-10 22:08:55 2019-12-10 22:18:12 t 1 1 193719 622 0.00 2019-12-10 22:18:16 2019-12-10 22:25:54 t 1 1 193720 578 0.00 2019-12-10 21:57:16 2019-12-10 22:26:40 t 1 1 193721 718 0.00 2019-12-10 22:09:27 2019-12-10 22:28:35 t 1 1 193731 689 0.00 2019-12-10 22:33:06 2019-12-10 22:34:05 t 1 1 193737 689 0.00 2019-12-10 22:36:53 2019-12-10 22:37:47 t 1 1 193738 689 0.00 2019-12-10 22:38:00 2019-12-10 22:39:01 t 1 1 193739 689 0.00 2019-12-10 22:40:26 2019-12-10 22:40:37 t 1 1 193740 689 0.00 2019-12-10 22:40:51 2019-12-10 22:42:09 t 1 1 193741 675 0.00 2019-12-10 22:36:30 2019-12-10 22:42:27 t 1 1 193744 679 0.00 2019-12-10 22:30:39 2019-12-10 22:44:05 t 1 1 193745 689 0.00 2019-12-10 22:43:25 2019-12-10 22:44:25 t 1 1 193747 591 0.00 2019-12-10 22:45:55 2019-12-10 22:45:58 t 1 1 193748 689 0.00 2019-12-10 22:44:34 2019-12-10 22:49:28 t 1 1 193470 679 0.00 2019-12-10 18:47:31 2019-12-10 18:48:00 t 1 1 193471 675 0.00 2019-12-10 18:37:01 2019-12-10 18:48:23 t 1 1 193480 679 0.00 2019-12-10 18:52:03 2019-12-10 18:52:37 t 1 1 193481 679 0.00 2019-12-10 18:52:42 2019-12-10 18:53:36 t 1 1 193486 679 0.00 2019-12-10 18:55:46 2019-12-10 18:56:20 t 1 1 193488 679 0.00 2019-12-10 18:56:25 2019-12-10 18:56:43 t 1 1 193491 679 0.00 2019-12-10 18:56:48 2019-12-10 18:57:21 t 1 1 193496 679 0.00 2019-12-10 18:59:35 2019-12-10 18:59:54 t 1 1 193498 679 0.00 2019-12-10 19:00:30 2019-12-10 19:00:49 t 1 1 193501 679 0.00 2019-12-10 19:01:35 2019-12-10 19:01:59 t 1 1 193508 681 0.00 2019-12-10 18:40:02 2019-12-10 19:04:28 t 1 1 193515 679 0.00 2019-12-10 19:07:48 2019-12-10 19:08:07 t 1 1 193517 615 0.00 2019-12-10 18:49:30 2019-12-10 19:08:52 t 1 1 193520 679 0.00 2019-12-10 19:09:46 2019-12-10 19:10:22 t 1 1 193525 679 0.00 2019-12-10 19:11:53 2019-12-10 19:12:55 t 1 1 193526 679 0.00 2019-12-10 19:13:01 2019-12-10 19:13:20 t 1 1 193529 679 0.00 2019-12-10 19:15:14 2019-12-10 19:15:31 t 1 1 193533 679 0.00 2019-12-10 19:16:26 2019-12-10 19:17:00 t 1 1 193534 679 0.00 2019-12-10 19:17:05 2019-12-10 19:17:25 t 1 1 193539 679 0.00 2019-12-10 19:19:04 2019-12-10 19:19:41 t 1 1 193540 679 0.00 2019-12-10 19:19:47 2019-12-10 19:20:06 t 1 1 193541 681 0.00 2019-12-10 19:15:58 2019-12-10 19:21:18 t 1 1 193542 611 0.00 2019-12-10 19:21:05 2019-12-10 19:23:51 t 1 1 193547 622 0.00 2019-12-10 19:31:40 2019-12-10 19:31:59 t 1 1 193552 724 0.00 2019-12-10 18:28:21 2019-12-10 19:38:41 t 1 1 193558 734 0.00 2019-12-10 19:42:31 2019-12-10 19:45:32 t 1 1 193562 718 0.00 2019-12-10 19:42:26 2019-12-10 19:46:34 t 1 1 193566 671 0.00 2019-12-10 19:35:52 2019-12-10 19:52:26 t 1 1 193573 591 0.00 2019-12-10 19:41:35 2019-12-10 19:59:03 t 1 1 193575 639 0.00 2019-12-10 19:59:57 2019-12-10 20:00:12 t 1 1 193580 481 0.00 2019-12-10 19:51:02 2019-12-10 20:05:04 t 1 1 193583 566 0.00 2019-12-10 19:56:23 2019-12-10 20:09:39 t 1 1 193585 718 0.00 2019-12-10 20:03:53 2019-12-10 20:09:55 t 1 1 193590 562 0.00 2019-12-10 20:06:54 2019-12-10 20:11:29 t 1 1 193591 528 0.00 2019-12-10 20:12:23 2019-12-10 20:13:04 t 1 1 193592 734 0.00 2019-12-10 20:11:25 2019-12-10 20:14:31 t 1 1 193594 639 0.00 2019-12-10 20:18:14 2019-12-10 20:18:19 t 1 1 193601 528 0.00 2019-12-10 20:21:21 2019-12-10 20:22:05 t 1 1 193607 639 0.00 2019-12-10 20:30:49 2019-12-10 20:31:03 t 1 1 193608 503 0.00 2019-12-10 20:26:41 2019-12-10 20:31:37 t 1 1 193610 503 0.00 2019-12-10 20:31:58 2019-12-10 20:32:39 t 1 1 193614 528 0.00 2019-12-10 20:34:55 2019-12-10 20:39:38 t 1 1 193619 691 0.00 2019-12-10 20:40:38 2019-12-10 20:41:49 t 1 1 193623 742 0.00 2019-12-10 20:43:19 2019-12-10 20:43:24 t 1 1 193625 516 0.00 2019-12-10 20:38:22 2019-12-10 20:45:27 t 1 1 193627 722 0.00 2019-12-10 20:45:58 2019-12-10 20:45:59 t 1 1 193632 722 0.00 2019-12-10 20:50:06 2019-12-10 20:50:14 t 1 1 193638 722 0.00 2019-12-10 20:52:59 2019-12-10 20:53:47 t 1 1 193639 503 0.00 2019-12-10 20:48:18 2019-12-10 20:53:55 t 1 1 193644 722 0.00 2019-12-10 20:56:27 2019-12-10 20:57:12 t 1 1 193645 220 0.00 2019-12-10 19:04:37 2019-12-10 20:57:59 t 1 2 193650 671 0.00 2019-12-10 21:04:41 2019-12-10 21:06:52 t 1 1 193652 611 0.00 2019-12-10 21:05:11 2019-12-10 21:10:02 t 1 1 193653 736 0.00 2019-12-10 21:06:41 2019-12-10 21:12:24 t 1 1 193655 611 0.00 2019-12-10 21:11:00 2019-12-10 21:12:46 t 1 1 193656 581 0.00 2019-12-10 21:15:50 2019-12-10 21:16:52 t 1 1 193657 724 0.00 2019-12-10 19:39:08 2019-12-10 21:17:45 t 1 1 193661 671 0.00 2019-12-10 21:21:58 2019-12-10 21:23:23 t 1 1 193662 679 0.00 2019-12-10 21:21:36 2019-12-10 21:26:48 t 1 1 193664 544 0.00 2019-12-10 20:37:42 2019-12-10 21:32:23 t 1 1 193670 578 0.00 2019-12-10 20:34:39 2019-12-10 21:40:06 t 1 1 193672 528 0.00 2019-12-10 21:41:17 2019-12-10 21:43:23 t 1 1 193675 736 0.00 2019-12-10 21:43:40 2019-12-10 21:45:10 t 1 1 193676 687 0.00 2019-12-10 21:35:06 2019-12-10 21:49:52 t 1 1 193680 685 0.00 2019-12-10 21:55:22 2019-12-10 21:55:40 t 1 1 193681 685 0.00 2019-12-10 21:55:45 2019-12-10 21:55:54 t 1 1 193683 742 0.00 2019-12-10 21:41:28 2019-12-10 21:56:12 t 1 1 193684 685 0.00 2019-12-10 21:56:19 2019-12-10 21:56:30 t 1 1 193687 679 0.00 2019-12-10 21:34:13 2019-12-10 21:57:32 t 1 1 193688 685 0.00 2019-12-10 21:57:34 2019-12-10 21:57:34 f 1 1 193690 685 0.00 2019-12-10 21:56:37 2019-12-10 21:58:29 t 1 1 193693 538 0.00 2019-12-10 21:44:20 2019-12-10 22:00:07 t 1 1 193694 220 0.00 2019-12-10 21:55:52 2019-12-10 22:00:31 t 1 2 193705 736 0.00 2019-12-10 22:14:25 2019-12-10 22:15:41 t 1 1 193717 689 0.00 2019-12-10 22:21:14 2019-12-10 22:22:15 t 1 1 193722 689 0.00 2019-12-10 22:22:23 2019-12-10 22:28:55 t 1 1 193723 736 0.00 2019-12-10 22:17:50 2019-12-10 22:30:03 t 1 1 193724 689 0.00 2019-12-10 22:29:05 2019-12-10 22:30:22 t 1 1 193728 689 0.00 2019-12-10 22:30:40 2019-12-10 22:31:46 t 1 1 193729 689 0.00 2019-12-10 22:31:55 2019-12-10 22:32:55 t 1 1 193732 485 0.00 2019-12-10 22:22:13 2019-12-10 22:34:05 t 1 1 193742 689 0.00 2019-12-10 22:42:23 2019-12-10 22:43:14 t 1 1 193746 671 0.00 2019-12-10 22:35:53 2019-12-10 22:45:25 t 1 1 193754 687 0.00 2019-12-10 22:31:11 2019-12-10 22:58:30 t 1 1 193759 564 0.00 2019-12-10 21:05:51 2019-12-10 23:06:50 t 1 1 193762 736 0.00 2019-12-10 23:05:46 2019-12-10 23:07:45 t 1 1 193764 687 0.00 2019-12-10 22:58:30 2019-12-10 23:09:06 t 1 1 193766 736 0.00 2019-12-10 23:08:55 2019-12-10 23:09:31 t 1 1 193769 562 0.00 2019-12-10 23:11:28 2019-12-10 23:12:01 t 1 1 193770 625 0.00 2019-12-10 23:10:28 2019-12-10 23:12:20 t 1 1 193775 679 0.00 2019-12-10 22:44:05 2019-12-10 23:15:04 t 1 1 193778 736 0.00 2019-12-10 23:20:16 2019-12-10 23:21:30 t 1 1 193781 692 0.00 2019-12-10 23:29:07 2019-12-10 23:30:07 t 1 1 193783 692 0.00 2019-12-10 23:30:19 2019-12-10 23:30:20 t 1 1 193786 564 0.00 2019-12-10 23:06:50 2019-12-10 23:31:37 t 1 1 193790 692 0.00 2019-12-10 23:35:35 2019-12-10 23:36:49 t 1 1 193795 392 0.00 2019-12-10 22:57:08 2019-12-10 23:40:33 t 1 2 193797 679 0.00 2019-12-10 23:24:32 2019-12-10 23:41:16 t 1 1 193798 625 0.00 2019-12-10 23:35:51 2019-12-10 23:43:45 t 1 1 193799 392 0.00 2019-12-10 23:40:41 2019-12-10 23:44:47 t 1 2 193801 692 0.00 2019-12-10 23:45:36 2019-12-10 23:45:54 t 1 1 193809 692 0.00 2019-12-10 23:56:36 2019-12-10 23:56:43 t 1 1 193812 736 0.00 2019-12-11 00:01:18 2019-12-11 00:03:07 t 1 1 193815 639 0.00 2019-12-11 00:05:39 2019-12-11 00:05:47 t 1 1 193816 639 0.00 2019-12-11 00:06:44 2019-12-11 00:07:17 t 1 1 193827 692 0.00 2019-12-11 00:28:06 2019-12-11 00:28:14 t 1 1 193829 687 0.00 2019-12-11 00:15:31 2019-12-11 00:29:07 t 1 1 193504 679 0.00 2019-12-10 19:02:55 2019-12-10 19:03:14 t 1 1 193506 679 0.00 2019-12-10 19:03:43 2019-12-10 19:04:02 t 1 1 193507 665 0.00 2019-12-10 19:02:19 2019-12-10 19:04:13 t 1 1 193509 679 0.00 2019-12-10 19:04:08 2019-12-10 19:04:36 t 1 1 193510 679 0.00 2019-12-10 19:04:42 2019-12-10 19:05:00 t 1 1 193512 679 0.00 2019-12-10 19:05:46 2019-12-10 19:06:11 t 1 1 193513 679 0.00 2019-12-10 19:06:17 2019-12-10 19:07:07 t 1 1 193514 679 0.00 2019-12-10 19:07:13 2019-12-10 19:07:42 t 1 1 193516 679 0.00 2019-12-10 19:08:13 2019-12-10 19:08:40 t 1 1 193518 679 0.00 2019-12-10 19:08:46 2019-12-10 19:09:06 t 1 1 193519 679 0.00 2019-12-10 19:09:12 2019-12-10 19:09:41 t 1 1 193522 679 0.00 2019-12-10 19:10:54 2019-12-10 19:11:13 t 1 1 193523 679 0.00 2019-12-10 19:11:19 2019-12-10 19:11:47 t 1 1 193524 562 0.00 2019-12-10 19:11:55 2019-12-10 19:12:17 t 1 1 193532 679 0.00 2019-12-10 19:16:02 2019-12-10 19:16:21 t 1 1 193537 679 0.00 2019-12-10 19:18:28 2019-12-10 19:18:58 t 1 1 193545 691 0.00 2019-12-10 19:22:54 2019-12-10 19:27:59 t 1 1 193546 622 0.00 2019-12-10 16:33:50 2019-12-10 19:31:40 t 1 1 193548 675 0.00 2019-12-10 19:20:32 2019-12-10 19:35:10 t 1 1 193549 615 0.00 2019-12-10 19:31:04 2019-12-10 19:37:43 t 1 1 193553 639 0.00 2019-12-10 19:38:33 2019-12-10 19:38:43 t 1 1 193555 639 0.00 2019-12-10 19:40:03 2019-12-10 19:41:44 t 1 1 193556 734 0.00 2019-12-10 19:10:02 2019-12-10 19:42:31 t 1 1 193559 607 0.00 2019-12-10 19:39:38 2019-12-10 19:45:38 t 1 1 193560 562 0.00 2019-12-10 19:39:53 2019-12-10 19:46:20 t 1 1 193564 498 0.00 2019-12-10 19:42:13 2019-12-10 19:50:18 t 1 2 193565 639 0.00 2019-12-10 19:42:24 2019-12-10 19:50:36 t 1 1 193568 562 0.00 2019-12-10 19:48:19 2019-12-10 19:56:29 t 1 1 193570 485 0.00 2019-12-10 19:51:36 2019-12-10 19:57:35 t 1 1 193572 538 0.00 2019-12-10 18:09:31 2019-12-10 19:57:41 t 1 1 193576 673 0.00 2019-12-10 19:03:18 2019-12-10 20:03:46 t 1 1 193578 718 0.00 2019-12-10 19:59:30 2019-12-10 20:03:53 t 1 1 193581 562 0.00 2019-12-10 19:57:44 2019-12-10 20:06:41 t 1 1 193586 578 0.00 2019-12-10 20:04:19 2019-12-10 20:10:45 t 1 1 193587 734 0.00 2019-12-10 20:10:30 2019-12-10 20:10:56 t 1 1 193593 675 0.00 2019-12-10 20:08:41 2019-12-10 20:16:47 t 1 1 193595 673 0.00 2019-12-10 20:03:49 2019-12-10 20:18:28 t 1 1 193597 528 0.00 2019-12-10 20:19:02 2019-12-10 20:19:18 t 1 1 193598 566 0.00 2019-12-10 20:09:39 2019-12-10 20:19:55 t 1 1 193599 528 0.00 2019-12-10 20:19:27 2019-12-10 20:20:54 t 1 1 193600 578 0.00 2019-12-10 20:10:45 2019-12-10 20:21:42 t 1 1 193602 528 0.00 2019-12-10 20:22:27 2019-12-10 20:23:49 t 1 1 193603 562 0.00 2019-12-10 20:24:26 2019-12-10 20:25:04 t 1 1 193605 736 0.00 2019-12-10 20:25:25 2019-12-10 20:25:54 t 1 1 193611 578 0.00 2019-12-10 20:21:42 2019-12-10 20:34:39 t 1 1 193612 736 0.00 2019-12-10 20:36:03 2019-12-10 20:36:32 t 1 1 193613 544 0.00 2019-12-10 19:47:36 2019-12-10 20:37:42 t 1 1 193615 694 0.00 2019-12-10 17:46:51 2019-12-10 20:40:11 t 1 1 193616 691 0.00 2019-12-10 20:40:19 2019-12-10 20:40:38 t 1 1 193620 722 0.00 2019-12-10 20:41:14 2019-12-10 20:41:50 t 1 1 193621 675 0.00 2019-12-10 20:32:17 2019-12-10 20:42:29 t 1 1 193626 722 0.00 2019-12-10 20:44:36 2019-12-10 20:45:36 t 1 1 193631 722 0.00 2019-12-10 20:48:01 2019-12-10 20:49:44 t 1 1 193633 744 0.00 2019-12-10 18:29:18 2019-12-10 20:51:06 t 1 1 193641 528 0.00 2019-12-10 20:53:50 2019-12-10 20:55:05 t 1 1 193642 722 0.00 2019-12-10 20:54:29 2019-12-10 20:55:30 t 1 1 193643 722 0.00 2019-12-10 20:55:38 2019-12-10 20:56:22 t 1 1 193647 709 0.00 2019-12-10 20:57:35 2019-12-10 21:02:34 t 1 1 193649 564 0.00 2019-12-10 20:25:10 2019-12-10 21:05:51 t 1 1 193658 487 0.00 2019-12-10 21:05:54 2019-12-10 21:19:47 t 1 2 193663 722 0.00 2019-12-10 21:03:58 2019-12-10 21:28:49 t 1 1 193668 718 0.00 2019-12-10 21:17:25 2019-12-10 21:37:57 t 1 1 193673 528 0.00 2019-12-10 21:43:23 2019-12-10 21:43:24 t 1 1 193679 311 0.00 2019-12-10 21:49:35 2019-12-10 21:54:58 t 1 2 193689 667 0.00 2019-12-10 21:54:41 2019-12-10 21:57:56 t 1 1 193691 685 0.00 2019-12-10 21:56:00 2019-12-10 21:58:46 t 1 1 193692 622 0.00 2019-12-10 19:31:57 2019-12-10 21:59:28 t 1 1 193700 611 0.00 2019-12-10 22:05:21 2019-12-10 22:09:41 t 1 1 193702 611 0.00 2019-12-10 22:09:59 2019-12-10 22:11:51 t 1 1 193703 689 0.00 2019-12-10 22:05:01 2019-12-10 22:14:29 t 1 1 193706 722 0.00 2019-12-10 21:28:49 2019-12-10 22:15:52 t 1 1 193707 679 0.00 2019-12-10 21:57:33 2019-12-10 22:16:19 t 1 1 193709 562 0.00 2019-12-10 22:16:50 2019-12-10 22:17:16 t 1 1 193710 689 0.00 2019-12-10 22:17:00 2019-12-10 22:18:03 t 1 1 193712 622 0.00 2019-12-10 21:59:28 2019-12-10 22:18:16 t 1 1 193713 607 0.00 2019-12-10 22:16:44 2019-12-10 22:18:43 t 1 1 193714 459 0.00 2019-12-10 22:19:18 2019-12-10 22:19:25 t 1 2 193715 689 0.00 2019-12-10 22:20:06 2019-12-10 22:21:04 t 1 1 193716 459 0.00 2019-12-10 22:19:50 2019-12-10 22:21:25 t 1 2 193718 611 0.00 2019-12-10 22:12:00 2019-12-10 22:23:49 t 1 1 193725 679 0.00 2019-12-10 22:16:19 2019-12-10 22:30:39 t 1 1 193726 687 0.00 2019-12-10 22:18:12 2019-12-10 22:31:11 t 1 1 193727 591 0.00 2019-12-10 21:13:04 2019-12-10 22:31:34 t 1 1 193730 736 0.00 2019-12-10 22:33:46 2019-12-10 22:33:48 t 1 1 193733 591 0.00 2019-12-10 22:31:34 2019-12-10 22:35:03 t 1 1 193734 689 0.00 2019-12-10 22:34:19 2019-12-10 22:35:28 t 1 1 193735 689 0.00 2019-12-10 22:35:44 2019-12-10 22:36:40 t 1 1 193736 459 0.00 2019-12-10 22:20:54 2019-12-10 22:37:28 t 1 2 193743 673 0.00 2019-12-10 20:44:34 2019-12-10 22:43:56 t 1 1 193750 449 0.00 2019-12-10 22:50:29 2019-12-10 22:50:29 f 1 1 193751 538 0.00 2019-12-10 22:39:13 2019-12-10 22:55:34 t 1 1 193755 692 0.00 2019-12-10 22:58:23 2019-12-10 22:59:26 t 1 1 193757 311 0.00 2019-12-10 22:34:13 2019-12-10 23:03:36 t 1 2 193758 692 0.00 2019-12-10 22:59:51 2019-12-10 23:06:13 t 1 1 193761 692 0.00 2019-12-10 23:06:13 2019-12-10 23:07:10 t 1 1 193763 692 0.00 2019-12-10 23:07:57 2019-12-10 23:08:36 t 1 1 193767 692 0.00 2019-12-10 23:08:35 2019-12-10 23:09:38 t 1 1 193772 625 0.00 2019-12-10 23:12:20 2019-12-10 23:13:36 t 1 1 193777 736 0.00 2019-12-10 23:14:49 2019-12-10 23:20:16 t 1 1 193779 679 0.00 2019-12-10 23:15:04 2019-12-10 23:24:32 t 1 1 193782 544 0.00 2019-12-10 22:07:45 2019-12-10 23:30:15 t 1 1 193785 736 0.00 2019-12-10 23:30:19 2019-12-10 23:30:36 t 1 1 193788 551 0.00 2019-12-10 15:49:28 2019-12-10 23:35:50 t 1 1 193789 625 0.00 2019-12-10 23:17:22 2019-12-10 23:35:51 t 1 1 193793 564 0.00 2019-12-10 23:31:37 2019-12-10 23:38:54 t 1 1 193794 692 0.00 2019-12-10 23:39:12 2019-12-10 23:39:28 t 1 1 193800 694 0.00 2019-12-10 20:40:11 2019-12-10 23:45:42 t 1 1 193749 654 0.00 2019-12-10 22:47:12 2019-12-10 22:50:20 t 1 1 193752 736 0.00 2019-12-10 22:43:17 2019-12-10 22:58:11 t 1 1 193753 692 0.00 2019-12-10 22:35:50 2019-12-10 22:58:24 t 1 1 193756 736 0.00 2019-12-10 22:58:33 2019-12-10 23:02:48 t 1 1 193760 625 0.00 2019-12-10 22:53:32 2019-12-10 23:07:10 t 1 1 193765 635 0.00 2019-12-10 23:02:13 2019-12-10 23:09:24 t 1 1 193768 625 0.00 2019-12-10 23:07:10 2019-12-10 23:10:28 t 1 1 193771 687 0.00 2019-12-10 23:12:45 2019-12-10 23:13:12 t 1 1 193773 692 0.00 2019-12-10 23:10:45 2019-12-10 23:14:02 t 1 1 193774 487 0.00 2019-12-10 21:34:44 2019-12-10 23:15:03 t 1 2 193776 692 0.00 2019-12-10 23:19:22 2019-12-10 23:19:31 t 1 1 193780 611 0.00 2019-12-10 23:20:56 2019-12-10 23:28:12 t 1 1 193784 692 0.00 2019-12-10 23:30:28 2019-12-10 23:30:29 t 1 1 193787 562 0.00 2019-12-10 23:33:10 2019-12-10 23:33:31 t 1 1 193791 687 0.00 2019-12-10 23:16:34 2019-12-10 23:37:43 t 1 1 193792 611 0.00 2019-12-10 23:28:08 2019-12-10 23:37:54 t 1 1 193796 736 0.00 2019-12-10 23:40:01 2019-12-10 23:40:46 t 1 1 193804 718 0.00 2019-12-10 23:39:40 2019-12-10 23:49:06 t 1 1 193806 625 0.00 2019-12-10 23:43:45 2019-12-10 23:50:37 t 1 1 193807 611 0.00 2019-12-10 23:37:53 2019-12-10 23:55:29 t 1 1 193810 639 0.00 2019-12-10 23:59:49 2019-12-11 00:00:07 t 1 1 193811 744 0.00 2019-12-10 21:42:27 2019-12-11 00:00:41 t 1 1 193814 611 0.00 2019-12-10 23:55:28 2019-12-11 00:05:41 t 1 1 193817 687 0.00 2019-12-10 23:37:45 2019-12-11 00:08:12 t 1 1 193823 687 0.00 2019-12-11 00:08:12 2019-12-11 00:14:42 t 1 1 193825 639 0.00 2019-12-11 00:17:49 2019-12-11 00:18:02 t 1 1 193826 220 0.00 2019-12-10 22:55:09 2019-12-11 00:20:29 t 1 2 193828 639 0.00 2019-12-11 00:28:10 2019-12-11 00:28:50 t 1 1 193831 738 0.00 2019-12-11 00:25:02 2019-12-11 00:35:18 t 1 1 193834 392 0.00 2019-12-11 00:18:28 2019-12-11 00:39:17 t 1 2 193839 694 0.00 2019-12-10 23:45:42 2019-12-11 00:48:51 t 1 1 193841 639 0.00 2019-12-11 00:51:43 2019-12-11 00:52:07 t 1 1 193853 734 0.00 2019-12-11 01:15:34 2019-12-11 01:21:05 t 1 1 193855 692 0.00 2019-12-11 01:23:12 2019-12-11 01:23:13 t 1 1 193856 736 0.00 2019-12-11 01:25:21 2019-12-11 01:25:37 t 1 1 193859 687 0.00 2019-12-11 01:05:39 2019-12-11 01:33:22 t 1 1 193861 692 0.00 2019-12-11 01:33:34 2019-12-11 01:34:52 t 1 1 193862 736 0.00 2019-12-11 01:28:46 2019-12-11 01:35:39 t 1 1 193863 692 0.00 2019-12-11 01:36:58 2019-12-11 01:37:08 t 1 1 193865 551 0.00 2019-12-11 01:20:12 2019-12-11 01:38:49 t 1 1 193868 562 0.00 2019-12-11 01:41:07 2019-12-11 01:41:27 t 1 1 193871 692 0.00 2019-12-11 01:44:09 2019-12-11 01:44:25 t 1 1 193874 639 0.00 2019-12-11 01:45:46 2019-12-11 01:45:56 t 1 1 193876 503 0.00 2019-12-11 01:31:47 2019-12-11 01:47:43 t 1 1 193877 639 0.00 2019-12-11 01:47:37 2019-12-11 01:48:41 t 1 1 193879 692 0.00 2019-12-11 01:49:11 2019-12-11 01:49:16 t 1 1 193887 566 0.00 2019-12-11 01:54:53 2019-12-11 02:01:12 t 1 1 193889 625 0.00 2019-12-11 01:46:55 2019-12-11 02:07:44 t 1 1 193897 566 0.00 2019-12-11 02:01:12 2019-12-11 02:31:42 t 1 1 193905 639 0.00 2019-12-11 02:47:53 2019-12-11 02:49:53 t 1 1 193906 736 0.00 2019-12-11 02:50:03 2019-12-11 02:50:16 t 1 1 193911 639 0.00 2019-12-11 02:54:07 2019-12-11 02:54:12 t 1 1 193917 692 0.00 2019-12-11 03:16:48 2019-12-11 03:17:14 t 1 1 193918 538 0.00 2019-12-11 00:46:52 2019-12-11 03:20:37 t 1 1 193919 692 0.00 2019-12-11 03:21:58 2019-12-11 03:21:59 t 1 1 193921 562 0.00 2019-12-11 03:27:37 2019-12-11 03:27:51 t 1 1 193924 639 0.00 2019-12-11 03:30:28 2019-12-11 03:31:53 t 1 1 193925 692 0.00 2019-12-11 03:32:41 2019-12-11 03:32:42 t 1 1 193927 736 0.00 2019-12-11 03:38:01 2019-12-11 03:38:20 t 1 1 193929 736 0.00 2019-12-11 03:40:21 2019-12-11 03:40:28 t 1 1 193933 639 0.00 2019-12-11 03:59:56 2019-12-11 04:00:04 t 1 1 193934 736 0.00 2019-12-11 04:10:29 2019-12-11 04:10:36 t 1 1 193936 692 0.00 2019-12-11 04:13:09 2019-12-11 04:13:10 t 1 1 193941 692 0.00 2019-12-11 04:26:42 2019-12-11 04:27:09 t 1 1 193943 639 0.00 2019-12-11 04:38:22 2019-12-11 04:38:29 t 1 1 193944 692 0.00 2019-12-11 04:39:15 2019-12-11 04:39:24 t 1 1 193945 736 0.00 2019-12-11 04:42:14 2019-12-11 04:42:21 t 1 1 193946 562 0.00 2019-12-11 04:43:15 2019-12-11 04:43:29 t 1 1 193951 639 0.00 2019-12-11 05:01:31 2019-12-11 05:01:39 t 1 1 193952 220 0.00 2019-12-11 04:54:38 2019-12-11 05:11:01 t 1 2 193953 736 0.00 2019-12-11 05:13:35 2019-12-11 05:14:12 t 1 1 193957 722 0.00 2019-12-11 05:29:25 2019-12-11 05:31:19 t 1 1 193962 639 0.00 2019-12-11 05:51:42 2019-12-11 05:52:43 t 1 1 193969 722 0.00 2019-12-11 06:13:03 2019-12-11 06:25:14 t 1 1 193971 722 0.00 2019-12-11 06:32:35 2019-12-11 06:32:41 t 1 1 193974 722 0.00 2019-12-11 06:34:02 2019-12-11 06:35:02 t 1 1 193976 692 0.00 2019-12-11 06:40:16 2019-12-11 06:40:18 t 1 1 193977 564 0.00 2019-12-11 06:34:29 2019-12-11 06:40:59 t 1 1 193979 516 0.00 2019-12-11 06:38:41 2019-12-11 06:42:49 t 1 1 193980 692 0.00 2019-12-11 06:43:40 2019-12-11 06:44:06 t 1 1 193982 692 0.00 2019-12-11 06:45:21 2019-12-11 06:45:23 t 1 1 193986 734 0.00 2019-12-11 06:49:30 2019-12-11 06:55:25 t 1 1 193999 516 0.00 2019-12-11 07:05:17 2019-12-11 07:12:15 t 1 1 194004 734 0.00 2019-12-11 06:55:25 2019-12-11 07:23:09 t 1 1 194010 675 0.00 2019-12-11 07:27:57 2019-12-11 07:34:20 t 1 1 194012 611 0.00 2019-12-11 07:31:06 2019-12-11 07:37:11 t 1 1 194027 656 0.00 2019-12-11 07:55:31 2019-12-11 08:00:28 t 1 1 194029 679 0.00 2019-12-11 07:48:08 2019-12-11 08:01:42 t 1 1 194033 485 0.00 2019-12-11 08:09:07 2019-12-11 08:11:23 t 1 1 194036 722 0.00 2019-12-11 08:13:06 2019-12-11 08:13:17 t 1 1 194039 738 0.00 2019-12-11 08:15:30 2019-12-11 08:15:49 t 1 1 194040 516 0.00 2019-12-11 08:14:25 2019-12-11 08:18:38 t 1 1 194042 738 0.00 2019-12-11 08:16:30 2019-12-11 08:24:37 t 1 1 194045 738 0.00 2019-12-11 08:28:58 2019-12-11 08:30:34 t 1 1 194046 671 0.00 2019-12-11 08:26:59 2019-12-11 08:31:52 t 1 1 194047 738 0.00 2019-12-11 08:32:03 2019-12-11 08:35:50 t 1 1 194049 675 0.00 2019-12-11 08:35:02 2019-12-11 08:36:19 t 1 1 194053 738 0.00 2019-12-11 08:38:31 2019-12-11 08:38:53 t 1 1 194054 738 0.00 2019-12-11 08:39:53 2019-12-11 08:39:55 t 1 1 194058 615 0.00 2019-12-11 08:40:52 2019-12-11 08:43:31 t 1 1 194064 485 0.00 2019-12-11 08:49:15 2019-12-11 08:52:14 t 1 1 194070 611 0.00 2019-12-11 08:51:09 2019-12-11 08:55:33 t 1 1 194072 679 0.00 2019-12-11 08:55:51 2019-12-11 08:55:57 t 1 1 194073 625 0.00 2019-12-11 08:55:08 2019-12-11 08:56:49 t 1 1 194077 611 0.00 2019-12-11 08:55:32 2019-12-11 08:58:22 t 1 1 194080 679 0.00 2019-12-11 08:59:57 2019-12-11 09:00:07 t 1 1 194082 679 0.00 2019-12-11 09:00:49 2019-12-11 09:01:09 t 1 1 193802 392 0.00 2019-12-10 23:46:52 2019-12-10 23:47:44 t 1 2 193803 734 0.00 2019-12-10 23:41:55 2019-12-10 23:48:59 t 1 1 193805 734 0.00 2019-12-10 23:48:59 2019-12-10 23:50:27 t 1 1 193808 392 0.00 2019-12-10 23:49:29 2019-12-10 23:56:35 t 1 2 193813 625 0.00 2019-12-10 23:54:36 2019-12-11 00:05:00 t 1 1 193818 681 0.00 2019-12-10 19:21:30 2019-12-11 00:08:15 t 1 1 193819 544 0.00 2019-12-10 23:30:29 2019-12-11 00:08:22 t 1 1 193820 736 0.00 2019-12-11 00:11:45 2019-12-11 00:12:06 t 1 1 193821 671 0.00 2019-12-10 23:44:28 2019-12-11 00:13:10 t 1 1 193822 671 0.00 2019-12-11 00:13:09 2019-12-11 00:14:41 t 1 1 193824 639 0.00 2019-12-11 00:15:47 2019-12-11 00:15:49 t 1 1 193832 687 0.00 2019-12-11 00:29:07 2019-12-11 00:37:57 t 1 1 193833 736 0.00 2019-12-11 00:39:13 2019-12-11 00:39:15 t 1 1 193835 713 0.00 2019-12-11 00:25:35 2019-12-11 00:40:21 t 1 1 193837 687 0.00 2019-12-11 00:39:47 2019-12-11 00:47:46 t 1 1 193838 687 0.00 2019-12-11 00:47:50 2019-12-11 00:48:51 t 1 1 193844 551 0.00 2019-12-10 23:35:50 2019-12-11 00:59:40 t 1 1 193846 687 0.00 2019-12-11 00:49:07 2019-12-11 01:03:38 t 1 1 193852 551 0.00 2019-12-11 00:59:40 2019-12-11 01:20:12 t 1 1 193857 503 0.00 2019-12-11 01:15:51 2019-12-11 01:26:52 t 1 1 193858 736 0.00 2019-12-11 01:27:22 2019-12-11 01:27:29 t 1 1 193869 665 0.00 2019-12-11 01:39:38 2019-12-11 01:42:47 t 1 1 193873 639 0.00 2019-12-11 01:43:35 2019-12-11 01:45:52 t 1 1 193875 625 0.00 2019-12-11 00:05:00 2019-12-11 01:46:55 t 1 1 193880 687 0.00 2019-12-11 01:33:22 2019-12-11 01:49:38 t 1 1 193881 639 0.00 2019-12-11 01:49:55 2019-12-11 01:50:12 t 1 1 193883 639 0.00 2019-12-11 01:53:52 2019-12-11 01:54:01 t 1 1 193885 687 0.00 2019-12-11 01:49:38 2019-12-11 01:55:47 t 1 1 193890 639 0.00 2019-12-11 02:11:14 2019-12-11 02:11:39 t 1 1 193891 562 0.00 2019-12-11 02:13:09 2019-12-11 02:13:17 t 1 1 193894 562 0.00 2019-12-11 02:23:43 2019-12-11 02:23:54 t 1 1 193898 639 0.00 2019-12-11 02:35:26 2019-12-11 02:36:53 t 1 1 193899 736 0.00 2019-12-11 02:39:35 2019-12-11 02:40:02 t 1 1 193900 639 0.00 2019-12-11 02:39:09 2019-12-11 02:40:53 t 1 1 193902 639 0.00 2019-12-11 02:43:24 2019-12-11 02:43:34 t 1 1 193903 562 0.00 2019-12-11 02:44:55 2019-12-11 02:45:13 t 1 1 193908 639 0.00 2019-12-11 02:51:59 2019-12-11 02:52:35 t 1 1 193910 639 0.00 2019-12-11 02:52:48 2019-12-11 02:52:56 t 1 1 193912 736 0.00 2019-12-11 02:53:31 2019-12-11 02:54:53 t 1 1 193913 692 0.00 2019-12-11 02:59:52 2019-12-11 03:00:00 t 1 1 193914 639 0.00 2019-12-11 02:58:54 2019-12-11 03:00:53 t 1 1 193915 637 0.00 2019-12-11 02:29:58 2019-12-11 03:07:32 t 1 1 193920 637 0.00 2019-12-11 03:07:32 2019-12-11 03:24:33 t 1 1 193922 692 0.00 2019-12-11 03:27:15 2019-12-11 03:28:53 t 1 1 193928 692 0.00 2019-12-11 03:38:03 2019-12-11 03:39:54 t 1 1 193931 692 0.00 2019-12-11 03:46:26 2019-12-11 03:46:35 t 1 1 193932 639 0.00 2019-12-11 03:47:06 2019-12-11 03:47:36 t 1 1 193935 639 0.00 2019-12-11 04:12:37 2019-12-11 04:12:46 t 1 1 193937 639 0.00 2019-12-11 04:14:56 2019-12-11 04:15:04 t 1 1 193938 639 0.00 2019-12-11 04:17:57 2019-12-11 04:18:05 t 1 1 193939 639 0.00 2019-12-11 04:20:22 2019-12-11 04:20:28 t 1 1 193949 692 0.00 2019-12-11 04:56:09 2019-12-11 04:56:17 t 1 1 193950 639 0.00 2019-12-11 04:59:42 2019-12-11 04:59:49 t 1 1 193954 736 0.00 2019-12-11 05:24:37 2019-12-11 05:24:44 t 1 1 193955 722 0.00 2019-12-11 05:14:07 2019-12-11 05:26:16 t 1 1 193958 692 0.00 2019-12-11 05:33:25 2019-12-11 05:33:40 t 1 1 193959 562 0.00 2019-12-11 05:36:30 2019-12-11 05:37:08 t 1 1 193960 692 0.00 2019-12-11 05:47:13 2019-12-11 05:47:29 t 1 1 193965 692 0.00 2019-12-11 06:03:39 2019-12-11 06:03:45 t 1 1 193970 722 0.00 2019-12-11 06:25:14 2019-12-11 06:32:30 t 1 1 193975 722 0.00 2019-12-11 06:35:50 2019-12-11 06:35:55 t 1 1 193978 562 0.00 2019-12-11 06:41:47 2019-12-11 06:41:55 t 1 1 193981 622 0.00 2019-12-11 06:26:57 2019-12-11 06:44:18 t 1 1 193983 692 0.00 2019-12-11 06:50:23 2019-12-11 06:50:33 t 1 1 193987 736 0.00 2019-12-11 06:59:29 2019-12-11 06:59:36 t 1 1 193990 516 0.00 2019-12-11 07:03:42 2019-12-11 07:03:55 t 1 1 193991 516 0.00 2019-12-11 07:05:05 2019-12-11 07:05:09 t 1 1 193992 692 0.00 2019-12-11 07:05:44 2019-12-11 07:05:53 t 1 1 193997 736 0.00 2019-12-11 07:09:56 2019-12-11 07:10:13 t 1 1 193998 675 0.00 2019-12-11 07:03:07 2019-12-11 07:10:49 t 1 1 194000 562 0.00 2019-12-11 07:14:03 2019-12-11 07:14:17 t 1 1 194001 736 0.00 2019-12-11 07:20:26 2019-12-11 07:20:48 t 1 1 194003 562 0.00 2019-12-11 07:20:22 2019-12-11 07:21:23 t 1 1 194009 637 0.00 2019-12-11 07:20:46 2019-12-11 07:32:18 t 1 1 194013 689 0.00 2019-12-11 07:34:39 2019-12-11 07:37:14 t 1 1 194014 637 0.00 2019-12-11 07:32:18 2019-12-11 07:38:35 t 1 1 194015 707 0.00 2019-12-11 07:36:07 2019-12-11 07:39:37 t 1 1 194017 562 0.00 2019-12-11 07:26:57 2019-12-11 07:41:27 t 1 1 194019 485 0.00 2019-12-11 07:43:40 2019-12-11 07:46:47 t 1 1 194024 673 0.00 2019-12-11 07:45:50 2019-12-11 07:58:44 t 1 1 194025 675 0.00 2019-12-11 07:57:09 2019-12-11 07:59:44 t 1 1 194028 611 0.00 2019-12-11 07:37:11 2019-12-11 08:00:49 t 1 1 194030 637 0.00 2019-12-11 07:59:54 2019-12-11 08:02:04 t 1 1 194031 637 0.00 2019-12-11 08:04:27 2019-12-11 08:08:58 t 1 1 194032 673 0.00 2019-12-11 07:58:44 2019-12-11 08:10:45 t 1 1 194034 738 0.00 2019-12-11 08:03:12 2019-12-11 08:11:44 t 1 1 194035 738 0.00 2019-12-11 08:12:30 2019-12-11 08:12:45 t 1 1 194037 637 0.00 2019-12-11 08:08:58 2019-12-11 08:15:17 t 1 1 194038 625 0.00 2019-12-11 07:09:59 2019-12-11 08:15:22 t 1 1 194044 738 0.00 2019-12-11 08:24:43 2019-12-11 08:28:45 t 1 1 194048 671 0.00 2019-12-11 08:32:41 2019-12-11 08:36:00 t 1 1 194050 562 0.00 2019-12-11 08:33:02 2019-12-11 08:36:38 t 1 1 194051 738 0.00 2019-12-11 08:37:28 2019-12-11 08:37:46 t 1 1 194052 665 0.00 2019-12-11 08:34:03 2019-12-11 08:38:29 t 1 1 194056 615 0.00 2019-12-11 08:23:50 2019-12-11 08:40:52 t 1 1 194057 694 0.00 2019-12-11 07:02:09 2019-12-11 08:41:34 t 1 1 194060 679 0.00 2019-12-11 08:35:35 2019-12-11 08:47:52 t 1 1 194061 738 0.00 2019-12-11 08:40:48 2019-12-11 08:49:05 t 1 1 194063 611 0.00 2019-12-11 08:43:29 2019-12-11 08:51:10 t 1 1 194068 625 0.00 2019-12-11 08:15:57 2019-12-11 08:55:08 t 1 1 194069 679 0.00 2019-12-11 08:47:52 2019-12-11 08:55:23 t 1 1 194071 220 0.00 2019-12-11 08:06:27 2019-12-11 08:55:50 t 1 2 194078 679 0.00 2019-12-11 08:58:15 2019-12-11 08:59:01 t 1 1 194079 738 0.00 2019-12-11 08:59:20 2019-12-11 08:59:39 t 1 1 194081 738 0.00 2019-12-11 09:00:24 2019-12-11 09:00:37 t 1 1 194083 562 0.00 2019-12-11 09:01:34 2019-12-11 09:01:46 t 1 1 194084 679 0.00 2019-12-11 09:01:51 2019-12-11 09:02:10 t 1 1 193830 639 0.00 2019-12-11 00:33:31 2019-12-11 00:33:40 t 1 1 193836 713 0.00 2019-12-11 00:40:21 2019-12-11 00:46:11 t 1 1 193840 639 0.00 2019-12-11 00:49:49 2019-12-11 00:50:04 t 1 1 193842 736 0.00 2019-12-11 00:57:07 2019-12-11 00:58:42 t 1 1 193843 639 0.00 2019-12-11 00:59:24 2019-12-11 00:59:33 t 1 1 193845 639 0.00 2019-12-11 01:03:24 2019-12-11 01:03:33 t 1 1 193847 692 0.00 2019-12-11 01:07:55 2019-12-11 01:08:04 t 1 1 193848 736 0.00 2019-12-11 01:09:23 2019-12-11 01:10:52 t 1 1 193849 516 0.00 2019-12-11 01:13:15 2019-12-11 01:15:19 t 1 1 193850 744 0.00 2019-12-11 00:00:41 2019-12-11 01:19:16 t 1 1 193851 639 0.00 2019-12-11 01:19:55 2019-12-11 01:20:04 t 1 1 193854 692 0.00 2019-12-11 01:22:47 2019-12-11 01:22:56 t 1 1 193860 665 0.00 2019-12-11 01:17:43 2019-12-11 01:34:32 t 1 1 193864 639 0.00 2019-12-11 01:38:05 2019-12-11 01:38:13 t 1 1 193866 665 0.00 2019-12-11 01:34:32 2019-12-11 01:39:38 t 1 1 193867 639 0.00 2019-12-11 01:39:43 2019-12-11 01:39:50 t 1 1 193870 692 0.00 2019-12-11 01:42:54 2019-12-11 01:42:55 t 1 1 193872 611 0.00 2019-12-11 01:37:19 2019-12-11 01:44:49 t 1 1 193878 692 0.00 2019-12-11 01:48:28 2019-12-11 01:48:55 t 1 1 193882 639 0.00 2019-12-11 01:52:01 2019-12-11 01:52:03 t 1 1 193884 544 0.00 2019-12-11 01:39:05 2019-12-11 01:54:30 t 1 1 193886 639 0.00 2019-12-11 01:58:29 2019-12-11 01:58:42 t 1 1 193888 692 0.00 2019-12-11 02:05:07 2019-12-11 02:06:53 t 1 1 193892 687 0.00 2019-12-11 02:00:17 2019-12-11 02:13:47 t 1 1 193893 692 0.00 2019-12-11 02:16:39 2019-12-11 02:16:47 t 1 1 193895 736 0.00 2019-12-11 02:24:00 2019-12-11 02:24:08 t 1 1 193896 736 0.00 2019-12-11 02:24:57 2019-12-11 02:25:06 t 1 1 193901 625 0.00 2019-12-11 02:07:44 2019-12-11 02:43:25 t 1 1 193904 692 0.00 2019-12-11 02:45:15 2019-12-11 02:45:16 t 1 1 193907 639 0.00 2019-12-11 02:50:10 2019-12-11 02:50:35 t 1 1 193909 692 0.00 2019-12-11 02:50:33 2019-12-11 02:52:53 t 1 1 193916 639 0.00 2019-12-11 03:10:09 2019-12-11 03:11:53 t 1 1 193923 574 0.00 2019-12-11 03:24:02 2019-12-11 03:29:48 t 1 1 193926 639 0.00 2019-12-11 03:36:47 2019-12-11 03:37:16 t 1 1 193930 692 0.00 2019-12-11 03:40:56 2019-12-11 03:42:54 t 1 1 193940 639 0.00 2019-12-11 04:22:20 2019-12-11 04:22:28 t 1 1 193942 736 0.00 2019-12-11 04:31:38 2019-12-11 04:31:48 t 1 1 193947 639 0.00 2019-12-11 04:49:06 2019-12-11 04:49:11 t 1 1 193948 692 0.00 2019-12-11 04:50:57 2019-12-11 04:51:24 t 1 1 193956 722 0.00 2019-12-11 05:26:29 2019-12-11 05:28:05 t 1 1 193961 639 0.00 2019-12-11 05:49:19 2019-12-11 05:50:16 t 1 1 193963 639 0.00 2019-12-11 05:54:02 2019-12-11 05:57:30 t 1 1 193964 562 0.00 2019-12-11 05:58:27 2019-12-11 05:58:52 t 1 1 193966 722 0.00 2019-12-11 05:52:38 2019-12-11 06:13:03 t 1 1 193967 562 0.00 2019-12-11 06:20:18 2019-12-11 06:20:24 t 1 1 193968 692 0.00 2019-12-11 06:25:03 2019-12-11 06:25:12 t 1 1 193972 722 0.00 2019-12-11 06:33:10 2019-12-11 06:33:17 t 1 1 193973 722 0.00 2019-12-11 06:33:39 2019-12-11 06:33:41 t 1 1 193984 562 0.00 2019-12-11 06:52:37 2019-12-11 06:52:42 t 1 1 193985 722 0.00 2019-12-11 06:37:23 2019-12-11 06:55:14 t 1 1 193988 564 0.00 2019-12-11 06:40:59 2019-12-11 06:59:39 t 1 1 193989 562 0.00 2019-12-11 07:03:17 2019-12-11 07:03:26 t 1 1 193993 459 0.00 2019-12-11 06:55:50 2019-12-11 07:05:56 t 1 2 193994 692 0.00 2019-12-11 07:06:35 2019-12-11 07:06:46 t 1 1 193995 679 0.00 2019-12-11 07:05:52 2019-12-11 07:08:44 t 1 1 193996 625 0.00 2019-12-11 05:24:33 2019-12-11 07:09:59 t 1 1 194002 744 0.00 2019-12-11 07:17:23 2019-12-11 07:21:05 t 1 1 194005 581 0.00 2019-12-11 06:50:04 2019-12-11 07:24:01 t 1 1 194006 581 0.00 2019-12-11 07:24:01 2019-12-11 07:26:33 t 1 1 194007 707 0.00 2019-12-11 07:16:13 2019-12-11 07:28:47 t 1 1 194008 611 0.00 2019-12-11 07:28:52 2019-12-11 07:31:06 t 1 1 194011 675 0.00 2019-12-11 07:34:20 2019-12-11 07:35:31 t 1 1 194016 220 0.00 2019-12-11 07:28:33 2019-12-11 07:40:56 t 1 1 194018 637 0.00 2019-12-11 07:38:35 2019-12-11 07:43:50 t 1 1 194020 220 0.00 2019-12-11 07:40:56 2019-12-11 07:48:51 t 1 1 194021 562 0.00 2019-12-11 07:49:10 2019-12-11 07:50:16 t 1 1 194022 675 0.00 2019-12-11 07:45:58 2019-12-11 07:50:46 t 1 1 194023 562 0.00 2019-12-11 07:54:27 2019-12-11 07:55:41 t 1 1 194026 637 0.00 2019-12-11 07:43:50 2019-12-11 07:59:54 t 1 1 194041 736 0.00 2019-12-11 08:19:44 2019-12-11 08:22:35 t 1 1 194043 736 0.00 2019-12-11 08:25:40 2019-12-11 08:25:55 t 1 1 194055 562 0.00 2019-12-11 08:40:38 2019-12-11 08:40:47 t 1 1 194059 694 0.00 2019-12-11 08:41:53 2019-12-11 08:47:03 t 1 1 194062 673 0.00 2019-12-11 08:30:48 2019-12-11 08:49:12 t 1 1 194065 738 0.00 2019-12-11 08:49:46 2019-12-11 08:52:32 t 1 1 194066 738 0.00 2019-12-11 08:52:42 2019-12-11 08:53:31 t 1 1 194067 738 0.00 2019-12-11 08:54:05 2019-12-11 08:54:39 t 1 1 194074 679 0.00 2019-12-11 08:56:53 2019-12-11 08:56:58 t 1 1 194075 738 0.00 2019-12-11 08:57:17 2019-12-11 08:57:37 t 1 1 194076 679 0.00 2019-12-11 08:57:54 2019-12-11 08:58:01 t 1 1 194085 611 0.00 2019-12-11 08:58:22 2019-12-11 09:02:20 t 1 1 194086 665 0.00 2019-12-11 08:38:28 2019-12-11 09:02:24 t 1 1 194087 736 0.00 2019-12-11 09:02:12 2019-12-11 09:02:29 t 1 1 194088 738 0.00 2019-12-11 09:02:23 2019-12-11 09:02:36 t 1 1 194089 679 0.00 2019-12-11 09:03:01 2019-12-11 09:03:11 t 1 1 194090 611 0.00 2019-12-11 09:02:20 2019-12-11 09:03:31 t 1 1 194091 738 0.00 2019-12-11 09:04:01 2019-12-11 09:04:02 t 1 1 194092 738 0.00 2019-12-11 09:04:14 2019-12-11 09:04:19 t 1 1 194093 611 0.00 2019-12-11 09:03:31 2019-12-11 09:04:26 t 1 1 194094 738 0.00 2019-12-11 09:04:30 2019-12-11 09:04:40 t 1 1 194095 738 0.00 2019-12-11 09:03:49 2019-12-11 09:04:58 t 1 1 194096 679 0.00 2019-12-11 09:03:53 2019-12-11 09:05:02 t 1 1 194097 625 0.00 2019-12-11 08:56:48 2019-12-11 09:05:08 t 1 1 194098 738 0.00 2019-12-11 09:05:37 2019-12-11 09:05:53 t 1 1 194099 738 0.00 2019-12-11 09:05:59 2019-12-11 09:05:59 t 1 1 194100 738 0.00 2019-12-11 09:07:50 2019-12-11 09:07:51 t 1 1 194101 639 0.00 2019-12-11 09:06:35 2019-12-11 09:08:39 t 1 1 194102 625 0.00 2019-12-11 09:05:51 2019-12-11 09:09:51 t 1 1 194103 694 0.00 2019-12-11 08:50:18 2019-12-11 09:10:17 t 1 1 194104 736 0.00 2019-12-11 09:09:54 2019-12-11 09:11:02 t 1 1 194105 694 0.00 2019-12-11 09:10:16 2019-12-11 09:11:39 t 1 1 194106 639 0.00 2019-12-11 09:11:36 2019-12-11 09:11:44 t 1 1 194107 611 0.00 2019-12-11 09:04:25 2019-12-11 09:12:39 t 1 1 194108 694 0.00 2019-12-11 09:11:38 2019-12-11 09:13:16 t 1 1 194109 722 0.00 2019-12-11 09:09:29 2019-12-11 09:13:48 t 1 1 194110 591 0.00 2019-12-11 09:01:17 2019-12-11 09:13:49 t 1 1 194111 611 0.00 2019-12-11 09:12:48 2019-12-11 09:15:20 t 1 1 194112 694 0.00 2019-12-11 09:13:28 2019-12-11 09:15:52 t 1 1 194117 738 0.00 2019-12-11 09:18:32 2019-12-11 09:18:39 t 1 1 194120 694 0.00 2019-12-11 09:15:51 2019-12-11 09:19:53 t 1 1 194122 738 0.00 2019-12-11 09:20:22 2019-12-11 09:20:42 t 1 1 194126 738 0.00 2019-12-11 09:22:37 2019-12-11 09:22:53 t 1 1 194128 738 0.00 2019-12-11 09:23:02 2019-12-11 09:23:08 t 1 1 194129 738 0.00 2019-12-11 09:23:48 2019-12-11 09:23:51 t 1 1 194132 615 0.00 2019-12-11 09:24:21 2019-12-11 09:25:41 t 1 1 194135 722 0.00 2019-12-11 09:28:27 2019-12-11 09:28:29 t 1 1 194139 528 0.00 2019-12-11 09:30:00 2019-12-11 09:31:58 t 1 1 194140 722 0.00 2019-12-11 09:32:16 2019-12-11 09:33:00 t 1 1 194142 722 0.00 2019-12-11 09:33:05 2019-12-11 09:33:16 t 1 1 194146 722 0.00 2019-12-11 09:34:07 2019-12-11 09:34:49 t 1 1 194151 562 0.00 2019-12-11 09:39:15 2019-12-11 09:39:20 t 1 1 194152 528 0.00 2019-12-11 09:37:19 2019-12-11 09:42:05 t 1 1 194154 639 0.00 2019-12-11 09:42:29 2019-12-11 09:45:34 t 1 1 194157 538 0.00 2019-12-11 09:40:57 2019-12-11 09:50:38 t 1 1 194159 639 0.00 2019-12-11 09:49:40 2019-12-11 09:53:28 t 1 1 194166 738 0.00 2019-12-11 09:57:50 2019-12-11 09:59:10 t 1 1 194167 639 0.00 2019-12-11 09:55:57 2019-12-11 09:59:45 t 1 1 194171 738 0.00 2019-12-11 10:00:46 2019-12-11 10:01:19 t 1 1 194179 637 0.00 2019-12-11 09:44:51 2019-12-11 10:06:40 t 1 1 194182 637 0.00 2019-12-11 10:07:04 2019-12-11 10:10:18 t 1 1 194183 679 0.00 2019-12-11 10:07:53 2019-12-11 10:10:22 t 1 1 194185 694 0.00 2019-12-11 09:54:54 2019-12-11 10:12:21 t 1 1 194187 671 0.00 2019-12-11 10:06:29 2019-12-11 10:13:14 t 1 1 194188 625 0.00 2019-12-11 09:54:22 2019-12-11 10:14:07 t 1 1 194189 639 0.00 2019-12-11 10:14:42 2019-12-11 10:14:49 t 1 1 194191 738 0.00 2019-12-11 10:06:10 2019-12-11 10:16:43 t 1 1 194193 694 0.00 2019-12-11 10:12:20 2019-12-11 10:18:05 t 1 1 194194 738 0.00 2019-12-11 10:18:40 2019-12-11 10:18:48 t 1 1 194197 528 0.00 2019-12-11 10:20:43 2019-12-11 10:20:56 t 1 1 194200 562 0.00 2019-12-11 10:22:38 2019-12-11 10:23:10 t 1 1 194202 694 0.00 2019-12-11 10:18:04 2019-12-11 10:24:10 t 1 1 194205 738 0.00 2019-12-11 10:23:52 2019-12-11 10:27:42 t 1 1 194206 528 0.00 2019-12-11 10:27:49 2019-12-11 10:28:19 t 1 1 194210 528 0.00 2019-12-11 10:32:30 2019-12-11 10:32:36 t 1 1 194212 738 0.00 2019-12-11 10:35:51 2019-12-11 10:36:00 t 1 1 194213 544 0.00 2019-12-11 10:27:33 2019-12-11 10:36:58 t 1 1 194215 639 0.00 2019-12-11 10:36:09 2019-12-11 10:38:00 t 1 1 194217 622 0.00 2019-12-11 10:28:46 2019-12-11 10:41:23 t 1 1 194218 611 0.00 2019-12-11 10:31:50 2019-12-11 10:41:26 t 1 1 194220 625 0.00 2019-12-11 10:27:19 2019-12-11 10:41:58 t 1 1 194221 694 0.00 2019-12-11 10:37:59 2019-12-11 10:43:19 t 1 1 194230 637 0.00 2019-12-11 10:16:58 2019-12-11 10:50:01 t 1 1 194234 738 0.00 2019-12-11 10:51:10 2019-12-11 10:51:22 t 1 1 194239 611 0.00 2019-12-11 10:48:13 2019-12-11 10:56:21 t 1 1 194246 639 0.00 2019-12-11 10:45:58 2019-12-11 10:58:49 t 1 1 194247 738 0.00 2019-12-11 10:59:20 2019-12-11 10:59:29 t 1 1 194251 738 0.00 2019-12-11 11:01:01 2019-12-11 11:01:33 t 1 1 194254 738 0.00 2019-12-11 11:02:20 2019-12-11 11:04:00 t 1 1 194258 718 0.00 2019-12-11 10:57:57 2019-12-11 11:05:50 t 1 1 194261 667 0.00 2019-12-11 11:04:40 2019-12-11 11:07:00 t 1 1 194265 392 0.00 2019-12-11 10:54:22 2019-12-11 11:08:28 t 1 2 194269 611 0.00 2019-12-11 11:06:19 2019-12-11 11:10:57 t 1 1 194273 625 0.00 2019-12-11 11:09:10 2019-12-11 11:14:37 t 1 1 194279 738 0.00 2019-12-11 11:16:38 2019-12-11 11:16:49 t 1 1 194280 738 0.00 2019-12-11 11:17:03 2019-12-11 11:18:04 t 1 1 194283 738 0.00 2019-12-11 11:18:19 2019-12-11 11:18:50 t 1 1 194285 392 0.00 2019-12-11 11:19:18 2019-12-11 11:19:18 f 1 2 194288 392 0.00 2019-12-11 11:20:04 2019-12-11 11:20:24 t 1 2 194290 392 0.00 2019-12-11 11:20:31 2019-12-11 11:20:48 t 1 2 194293 718 0.00 2019-12-11 11:10:21 2019-12-11 11:21:25 t 1 1 194296 718 0.00 2019-12-11 11:21:24 2019-12-11 11:22:03 t 1 1 194298 564 0.00 2019-12-11 11:16:27 2019-12-11 11:23:18 t 1 1 194299 718 0.00 2019-12-11 11:22:03 2019-12-11 11:23:45 t 1 1 194309 738 0.00 2019-12-11 11:32:50 2019-12-11 11:33:10 t 1 1 194310 615 0.00 2019-12-11 11:27:33 2019-12-11 11:33:40 t 1 1 194311 611 0.00 2019-12-11 11:31:41 2019-12-11 11:34:11 t 1 1 194312 611 0.00 2019-12-11 11:34:11 2019-12-11 11:34:51 t 1 1 194316 649 0.00 2019-12-11 11:09:44 2019-12-11 11:38:30 t 1 1 194318 694 0.00 2019-12-11 11:24:30 2019-12-11 11:39:30 t 1 1 194320 736 0.00 2019-12-11 11:40:58 2019-12-11 11:41:12 t 1 1 194322 220 0.00 2019-12-11 11:41:19 2019-12-11 11:41:23 t 1 2 194325 738 0.00 2019-12-11 11:42:22 2019-12-11 11:42:28 t 1 1 194328 738 0.00 2019-12-11 11:43:08 2019-12-11 11:43:40 t 1 1 194330 611 0.00 2019-12-11 11:41:21 2019-12-11 11:44:26 t 1 1 194331 656 0.00 2019-12-11 09:45:51 2019-12-11 11:46:04 t 1 1 194337 562 0.00 2019-12-11 11:43:56 2019-12-11 11:50:11 t 1 1 194338 611 0.00 2019-12-11 11:48:07 2019-12-11 11:51:55 t 1 1 194339 591 0.00 2019-12-11 11:49:08 2019-12-11 11:53:28 t 1 1 194341 639 0.00 2019-12-11 11:31:47 2019-12-11 11:54:47 t 1 1 194342 591 0.00 2019-12-11 11:54:12 2019-12-11 11:56:07 t 1 1 194345 562 0.00 2019-12-11 11:50:11 2019-12-11 11:56:52 t 1 1 194347 544 0.00 2019-12-11 11:44:20 2019-12-11 11:58:19 t 1 1 194352 738 0.00 2019-12-11 12:00:21 2019-12-11 12:01:04 t 1 1 194353 738 0.00 2019-12-11 12:02:00 2019-12-11 12:02:07 t 1 1 194354 639 0.00 2019-12-11 11:59:37 2019-12-11 12:02:23 t 1 1 194356 692 0.00 2019-12-11 12:02:33 2019-12-11 12:02:40 t 1 1 194358 220 0.00 2019-12-11 11:36:14 2019-12-11 12:03:39 t 1 1 194361 562 0.00 2019-12-11 12:04:39 2019-12-11 12:06:13 t 1 1 194363 692 0.00 2019-12-11 12:06:58 2019-12-11 12:07:31 t 1 1 194369 692 0.00 2019-12-11 12:09:46 2019-12-11 12:10:20 t 1 1 194371 692 0.00 2019-12-11 12:09:16 2019-12-11 12:11:04 t 1 1 194376 738 0.00 2019-12-11 12:12:28 2019-12-11 12:12:36 t 1 1 194378 687 0.00 2019-12-11 12:07:40 2019-12-11 12:13:30 t 1 1 194381 562 0.00 2019-12-11 12:08:26 2019-12-11 12:14:04 t 1 1 194382 656 0.00 2019-12-11 12:06:28 2019-12-11 12:16:01 t 1 1 194384 692 0.00 2019-12-11 12:16:35 2019-12-11 12:16:58 t 1 1 194387 528 0.00 2019-12-11 12:11:36 2019-12-11 12:17:18 t 1 1 194389 675 0.00 2019-12-11 12:14:30 2019-12-11 12:18:11 t 1 1 194391 736 0.00 2019-12-11 12:17:20 2019-12-11 12:18:49 t 1 1 194396 692 0.00 2019-12-11 12:21:34 2019-12-11 12:22:22 t 1 1 194398 656 0.00 2019-12-11 12:16:01 2019-12-11 12:23:35 t 1 1 194400 692 0.00 2019-12-11 12:23:14 2019-12-11 12:23:46 t 1 1 194401 692 0.00 2019-12-11 12:23:51 2019-12-11 12:23:58 t 1 1 194404 639 0.00 2019-12-11 12:23:55 2019-12-11 12:24:32 t 1 1 194113 738 0.00 2019-12-11 09:08:27 2019-12-11 09:16:09 t 1 1 194114 738 0.00 2019-12-11 09:16:39 2019-12-11 09:16:42 t 1 1 194115 738 0.00 2019-12-11 09:17:54 2019-12-11 09:17:59 t 1 1 194116 637 0.00 2019-12-11 08:22:06 2019-12-11 09:18:24 t 1 1 194119 738 0.00 2019-12-11 09:19:46 2019-12-11 09:19:49 t 1 1 194121 738 0.00 2019-12-11 09:18:05 2019-12-11 09:19:58 t 1 1 194123 722 0.00 2019-12-11 09:20:15 2019-12-11 09:20:52 t 1 1 194127 722 0.00 2019-12-11 09:20:58 2019-12-11 09:22:58 t 1 1 194130 738 0.00 2019-12-11 09:24:48 2019-12-11 09:24:51 t 1 1 194131 722 0.00 2019-12-11 09:24:57 2019-12-11 09:25:23 t 1 1 194133 722 0.00 2019-12-11 09:26:27 2019-12-11 09:26:33 t 1 1 194136 738 0.00 2019-12-11 09:26:23 2019-12-11 09:28:48 t 1 1 194137 694 0.00 2019-12-11 09:19:52 2019-12-11 09:29:34 t 1 1 194138 639 0.00 2019-12-11 09:29:53 2019-12-11 09:30:12 t 1 1 194141 671 0.00 2019-12-11 09:25:11 2019-12-11 09:33:03 t 1 1 194149 722 0.00 2019-12-11 09:34:52 2019-12-11 09:36:43 t 1 1 194153 528 0.00 2019-12-11 09:44:32 2019-12-11 09:44:37 t 1 1 194155 656 0.00 2019-12-11 09:40:59 2019-12-11 09:45:51 t 1 1 194158 738 0.00 2019-12-11 09:34:56 2019-12-11 09:53:18 t 1 1 194160 694 0.00 2019-12-11 09:36:01 2019-12-11 09:53:31 t 1 1 194161 625 0.00 2019-12-11 09:09:50 2019-12-11 09:54:22 t 1 1 194163 528 0.00 2019-12-11 09:54:44 2019-12-11 09:55:38 t 1 1 194165 738 0.00 2019-12-11 09:53:18 2019-12-11 09:57:51 t 1 1 194168 738 0.00 2019-12-11 09:59:28 2019-12-11 10:00:00 t 1 1 194170 738 0.00 2019-12-11 10:00:34 2019-12-11 10:00:42 t 1 1 194173 738 0.00 2019-12-11 10:01:53 2019-12-11 10:01:56 t 1 1 194175 738 0.00 2019-12-11 10:02:37 2019-12-11 10:03:22 t 1 1 194177 736 0.00 2019-12-11 10:05:17 2019-12-11 10:05:41 t 1 1 194180 562 0.00 2019-12-11 10:05:30 2019-12-11 10:08:05 t 1 1 194181 639 0.00 2019-12-11 10:08:07 2019-12-11 10:08:41 t 1 1 194186 615 0.00 2019-12-11 09:55:29 2019-12-11 10:12:40 t 1 1 194192 639 0.00 2019-12-11 10:17:12 2019-12-11 10:17:54 t 1 1 194198 392 0.00 2019-12-11 10:13:04 2019-12-11 10:21:09 t 1 2 194204 625 0.00 2019-12-11 10:24:06 2019-12-11 10:27:20 t 1 1 194207 562 0.00 2019-12-11 10:25:40 2019-12-11 10:28:21 t 1 1 194214 738 0.00 2019-12-11 10:37:14 2019-12-11 10:37:44 t 1 1 194216 694 0.00 2019-12-11 10:26:27 2019-12-11 10:38:00 t 1 1 194223 544 0.00 2019-12-11 10:38:09 2019-12-11 10:43:50 t 1 1 194226 611 0.00 2019-12-11 10:41:26 2019-12-11 10:48:13 t 1 1 194228 622 0.00 2019-12-11 10:41:23 2019-12-11 10:48:31 t 1 1 194231 738 0.00 2019-12-11 10:46:04 2019-12-11 10:50:10 t 1 1 194232 544 0.00 2019-12-11 10:43:49 2019-12-11 10:50:49 t 1 1 194233 591 0.00 2019-12-11 10:02:04 2019-12-11 10:51:22 t 1 1 194237 691 0.00 2019-12-11 10:53:51 2019-12-11 10:54:57 t 1 1 194242 694 0.00 2019-12-11 10:43:19 2019-12-11 10:57:37 t 1 1 194248 667 0.00 2019-12-11 10:46:12 2019-12-11 10:59:34 t 1 1 194250 736 0.00 2019-12-11 10:59:38 2019-12-11 11:01:04 t 1 1 194253 667 0.00 2019-12-11 10:59:34 2019-12-11 11:03:18 t 1 1 194255 738 0.00 2019-12-11 11:04:20 2019-12-11 11:04:21 t 1 1 194257 639 0.00 2019-12-11 11:03:11 2019-12-11 11:04:47 t 1 1 194262 738 0.00 2019-12-11 11:05:19 2019-12-11 11:07:00 t 1 1 194266 738 0.00 2019-12-11 11:08:02 2019-12-11 11:08:29 t 1 1 194267 724 0.00 2019-12-11 10:15:12 2019-12-11 11:09:27 t 1 1 194268 639 0.00 2019-12-11 11:10:10 2019-12-11 11:10:34 t 1 1 194272 639 0.00 2019-12-11 11:10:34 2019-12-11 11:14:31 t 1 1 194274 611 0.00 2019-12-11 11:10:57 2019-12-11 11:14:50 t 1 1 194276 564 0.00 2019-12-11 10:58:27 2019-12-11 11:16:27 t 1 1 194277 625 0.00 2019-12-11 11:14:37 2019-12-11 11:16:41 t 1 1 194281 736 0.00 2019-12-11 11:17:06 2019-12-11 11:18:15 t 1 1 194284 562 0.00 2019-12-11 11:18:23 2019-12-11 11:18:52 t 1 1 194287 687 0.00 2019-12-11 11:07:03 2019-12-11 11:19:41 t 1 1 194291 639 0.00 2019-12-11 11:15:24 2019-12-11 11:20:57 t 1 1 194294 738 0.00 2019-12-11 11:21:22 2019-12-11 11:21:34 t 1 1 194295 738 0.00 2019-12-11 11:21:49 2019-12-11 11:21:50 t 1 1 194297 675 0.00 2019-12-11 11:19:51 2019-12-11 11:22:08 t 1 1 194300 637 0.00 2019-12-11 10:59:57 2019-12-11 11:24:04 t 1 1 194303 738 0.00 2019-12-11 11:24:38 2019-12-11 11:25:01 t 1 1 194306 622 0.00 2019-12-11 11:12:07 2019-12-11 11:28:20 t 1 1 194307 639 0.00 2019-12-11 11:21:43 2019-12-11 11:29:34 t 1 1 194313 738 0.00 2019-12-11 11:33:46 2019-12-11 11:35:08 t 1 1 194315 220 0.00 2019-12-11 11:31:40 2019-12-11 11:38:16 t 1 2 194319 637 0.00 2019-12-11 11:30:29 2019-12-11 11:40:06 t 1 1 194323 622 0.00 2019-12-11 11:35:10 2019-12-11 11:41:48 t 1 1 194333 679 0.00 2019-12-11 11:36:22 2019-12-11 11:46:29 t 1 1 194334 611 0.00 2019-12-11 11:44:26 2019-12-11 11:48:07 t 1 1 194335 738 0.00 2019-12-11 11:48:38 2019-12-11 11:48:56 t 1 1 194343 694 0.00 2019-12-11 11:39:30 2019-12-11 11:56:32 t 1 1 194349 681 0.00 2019-12-11 00:08:15 2019-12-11 11:59:15 t 1 1 194350 738 0.00 2019-12-11 11:59:37 2019-12-11 11:59:40 t 1 1 194355 692 0.00 2019-12-11 11:39:14 2019-12-11 12:02:26 t 1 1 194359 692 0.00 2019-12-11 12:03:18 2019-12-11 12:03:57 t 1 1 194360 692 0.00 2019-12-11 12:05:05 2019-12-11 12:05:37 t 1 1 194364 736 0.00 2019-12-11 12:07:53 2019-12-11 12:08:01 t 1 1 194366 692 0.00 2019-12-11 12:08:21 2019-12-11 12:08:28 t 1 1 194367 692 0.00 2019-12-11 12:08:48 2019-12-11 12:08:49 t 1 1 194370 667 0.00 2019-12-11 12:09:25 2019-12-11 12:10:27 t 1 2 194372 692 0.00 2019-12-11 12:10:41 2019-12-11 12:11:15 t 1 1 194373 738 0.00 2019-12-11 12:11:17 2019-12-11 12:11:27 t 1 1 194374 639 0.00 2019-12-11 12:02:22 2019-12-11 12:11:37 t 1 1 194377 738 0.00 2019-12-11 12:12:52 2019-12-11 12:12:53 t 1 1 194379 667 0.00 2019-12-11 12:12:37 2019-12-11 12:13:38 t 1 2 194383 746 0.00 2019-12-11 12:10:20 2019-12-11 12:16:20 t 1 1 194385 692 0.00 2019-12-11 12:16:02 2019-12-11 12:17:04 t 1 1 194390 692 0.00 2019-12-11 12:18:05 2019-12-11 12:18:11 t 1 1 194392 738 0.00 2019-12-11 12:20:01 2019-12-11 12:20:22 t 1 1 194393 692 0.00 2019-12-11 12:19:48 2019-12-11 12:20:35 t 1 1 194397 639 0.00 2019-12-11 12:22:18 2019-12-11 12:22:28 t 1 1 194406 694 0.00 2019-12-11 11:56:32 2019-12-11 12:26:45 t 1 1 194408 724 0.00 2019-12-11 12:24:41 2019-12-11 12:27:16 t 1 1 194412 671 0.00 2019-12-11 12:23:16 2019-12-11 12:30:02 t 1 1 194416 724 0.00 2019-12-11 12:30:14 2019-12-11 12:30:33 t 1 1 194421 667 0.00 2019-12-11 12:27:36 2019-12-11 12:32:07 t 1 1 194426 736 0.00 2019-12-11 12:34:41 2019-12-11 12:34:55 t 1 1 194428 667 0.00 2019-12-11 12:36:56 2019-12-11 12:37:14 t 1 1 194430 562 0.00 2019-12-11 12:30:28 2019-12-11 12:37:35 t 1 1 194433 692 0.00 2019-12-11 12:37:47 2019-12-11 12:40:01 t 1 1 194439 639 0.00 2019-12-11 12:31:45 2019-12-11 12:44:42 t 1 1 194118 722 0.00 2019-12-11 09:13:48 2019-12-11 09:19:20 t 1 1 194124 615 0.00 2019-12-11 09:02:54 2019-12-11 09:22:14 t 1 1 194125 738 0.00 2019-12-11 09:21:42 2019-12-11 09:22:37 t 1 1 194134 722 0.00 2019-12-11 09:25:29 2019-12-11 09:26:58 t 1 1 194143 738 0.00 2019-12-11 09:28:54 2019-12-11 09:33:34 t 1 1 194144 722 0.00 2019-12-11 09:34:01 2019-12-11 09:34:02 t 1 1 194145 738 0.00 2019-12-11 09:33:53 2019-12-11 09:34:28 t 1 1 194147 694 0.00 2019-12-11 09:30:28 2019-12-11 09:35:21 t 1 1 194148 591 0.00 2019-12-11 09:24:52 2019-12-11 09:36:28 t 1 1 194150 637 0.00 2019-12-11 09:36:48 2019-12-11 09:37:58 t 1 1 194156 722 0.00 2019-12-11 09:46:45 2019-12-11 09:46:58 t 1 1 194162 615 0.00 2019-12-11 09:43:27 2019-12-11 09:55:29 t 1 1 194164 562 0.00 2019-12-11 09:55:18 2019-12-11 09:55:44 t 1 1 194169 738 0.00 2019-12-11 10:00:21 2019-12-11 10:00:28 t 1 1 194172 734 0.00 2019-12-11 09:53:35 2019-12-11 10:01:31 t 1 1 194174 591 0.00 2019-12-11 09:36:28 2019-12-11 10:02:04 t 1 1 194176 738 0.00 2019-12-11 10:05:11 2019-12-11 10:05:31 t 1 1 194178 724 0.00 2019-12-11 08:40:11 2019-12-11 10:06:29 t 1 1 194184 528 0.00 2019-12-11 10:10:31 2019-12-11 10:10:38 t 1 1 194190 578 0.00 2019-12-10 22:26:40 2019-12-11 10:16:31 t 1 1 194195 738 0.00 2019-12-11 10:19:06 2019-12-11 10:19:06 t 1 1 194196 738 0.00 2019-12-11 10:19:13 2019-12-11 10:19:29 t 1 1 194199 639 0.00 2019-12-11 10:21:36 2019-12-11 10:21:45 t 1 1 194201 625 0.00 2019-12-11 10:14:07 2019-12-11 10:23:30 t 1 1 194203 694 0.00 2019-12-11 10:24:10 2019-12-11 10:26:13 t 1 1 194208 622 0.00 2019-12-11 10:05:34 2019-12-11 10:28:46 t 1 1 194209 639 0.00 2019-12-11 10:22:46 2019-12-11 10:29:52 t 1 1 194211 639 0.00 2019-12-11 10:32:48 2019-12-11 10:33:03 t 1 1 194219 675 0.00 2019-12-11 10:41:32 2019-12-11 10:41:36 t 1 1 194222 639 0.00 2019-12-11 10:39:54 2019-12-11 10:43:33 t 1 1 194224 679 0.00 2019-12-11 10:43:58 2019-12-11 10:45:16 t 1 1 194225 625 0.00 2019-12-11 10:44:42 2019-12-11 10:46:12 t 1 1 194227 392 0.00 2019-12-11 10:21:39 2019-12-11 10:48:14 t 1 2 194229 528 0.00 2019-12-11 10:35:02 2019-12-11 10:49:47 t 1 1 194235 691 0.00 2019-12-11 10:53:33 2019-12-11 10:53:51 t 1 1 194236 738 0.00 2019-12-11 10:54:12 2019-12-11 10:54:21 t 1 1 194238 625 0.00 2019-12-11 10:46:12 2019-12-11 10:55:59 t 1 1 194240 687 0.00 2019-12-11 10:56:12 2019-12-11 10:57:12 t 1 1 194241 738 0.00 2019-12-11 10:57:22 2019-12-11 10:57:35 t 1 1 194243 622 0.00 2019-12-11 10:48:31 2019-12-11 10:57:51 t 1 1 194244 718 0.00 2019-12-11 10:57:06 2019-12-11 10:57:57 t 1 1 194245 671 0.00 2019-12-11 10:37:22 2019-12-11 10:58:37 t 1 1 194249 625 0.00 2019-12-11 10:55:59 2019-12-11 11:00:09 t 1 1 194252 611 0.00 2019-12-11 10:56:20 2019-12-11 11:02:28 t 1 1 194256 667 0.00 2019-12-11 11:04:08 2019-12-11 11:04:28 t 1 1 194259 625 0.00 2019-12-11 11:00:58 2019-12-11 11:06:17 t 1 1 194260 611 0.00 2019-12-11 11:02:28 2019-12-11 11:06:20 t 1 1 194263 639 0.00 2019-12-11 11:05:50 2019-12-11 11:07:00 t 1 1 194264 516 0.00 2019-12-11 11:05:26 2019-12-11 11:07:48 t 1 1 194270 622 0.00 2019-12-11 10:57:51 2019-12-11 11:12:07 t 1 1 194271 738 0.00 2019-12-11 11:13:12 2019-12-11 11:13:44 t 1 1 194275 736 0.00 2019-12-11 11:10:28 2019-12-11 11:15:47 t 1 1 194278 544 0.00 2019-12-11 11:13:23 2019-12-11 11:16:47 t 1 1 194282 625 0.00 2019-12-11 11:17:02 2019-12-11 11:18:46 t 1 1 194286 392 0.00 2019-12-11 11:10:20 2019-12-11 11:19:25 t 1 2 194289 738 0.00 2019-12-11 11:19:38 2019-12-11 11:20:39 t 1 1 194292 671 0.00 2019-12-11 11:18:00 2019-12-11 11:21:08 t 1 1 194301 591 0.00 2019-12-11 10:51:22 2019-12-11 11:24:12 t 1 1 194302 694 0.00 2019-12-11 10:57:37 2019-12-11 11:24:30 t 1 1 194304 615 0.00 2019-12-11 11:01:45 2019-12-11 11:27:33 t 1 1 194305 738 0.00 2019-12-11 11:27:45 2019-12-11 11:28:08 t 1 1 194308 220 0.00 2019-12-11 08:57:48 2019-12-11 11:30:11 t 1 2 194314 622 0.00 2019-12-11 11:28:20 2019-12-11 11:35:10 t 1 1 194317 544 0.00 2019-12-11 11:25:58 2019-12-11 11:39:00 t 1 1 194321 611 0.00 2019-12-11 11:34:51 2019-12-11 11:41:21 t 1 1 194324 738 0.00 2019-12-11 11:41:18 2019-12-11 11:42:22 t 1 1 194326 738 0.00 2019-12-11 11:42:34 2019-12-11 11:42:47 t 1 1 194327 649 0.00 2019-12-11 11:38:30 2019-12-11 11:43:34 t 1 1 194329 734 0.00 2019-12-11 11:33:28 2019-12-11 11:44:00 t 1 1 194332 707 0.00 2019-12-11 11:27:00 2019-12-11 11:46:19 t 1 1 194336 738 0.00 2019-12-11 11:49:26 2019-12-11 11:49:34 t 1 1 194340 611 0.00 2019-12-11 11:51:54 2019-12-11 11:54:02 t 1 1 194344 639 0.00 2019-12-11 11:56:12 2019-12-11 11:56:43 t 1 1 194346 671 0.00 2019-12-11 11:54:11 2019-12-11 11:57:20 t 1 1 194348 656 0.00 2019-12-11 11:46:04 2019-12-11 11:58:46 t 1 1 194351 611 0.00 2019-12-11 11:54:02 2019-12-11 11:59:44 t 1 1 194357 692 0.00 2019-12-11 12:02:46 2019-12-11 12:03:12 t 1 1 194362 656 0.00 2019-12-11 11:58:46 2019-12-11 12:06:28 t 1 1 194365 738 0.00 2019-12-11 12:08:14 2019-12-11 12:08:23 t 1 1 194368 611 0.00 2019-12-11 12:06:00 2019-12-11 12:09:56 t 1 1 194375 692 0.00 2019-12-11 12:11:36 2019-12-11 12:12:09 t 1 1 194380 692 0.00 2019-12-11 12:12:32 2019-12-11 12:14:04 t 1 1 194386 738 0.00 2019-12-11 12:15:30 2019-12-11 12:17:15 t 1 1 194388 562 0.00 2019-12-11 12:17:49 2019-12-11 12:18:10 t 1 1 194394 692 0.00 2019-12-11 12:20:35 2019-12-11 12:21:09 t 1 1 194395 738 0.00 2019-12-11 12:20:27 2019-12-11 12:21:57 t 1 1 194399 637 0.00 2019-12-11 11:41:03 2019-12-11 12:23:43 t 1 1 194402 625 0.00 2019-12-11 12:07:58 2019-12-11 12:24:18 t 1 1 194403 692 0.00 2019-12-11 12:24:19 2019-12-11 12:24:30 t 1 1 194405 503 0.00 2019-12-11 12:22:57 2019-12-11 12:25:40 t 1 1 194407 681 0.00 2019-12-11 11:59:15 2019-12-11 12:26:50 t 1 1 194410 694 0.00 2019-12-11 12:28:37 2019-12-11 12:29:37 t 1 1 194415 503 0.00 2019-12-11 12:25:40 2019-12-11 12:30:30 t 1 1 194418 724 0.00 2019-12-11 12:30:33 2019-12-11 12:31:11 t 1 1 194422 738 0.00 2019-12-11 12:22:22 2019-12-11 12:32:38 t 1 1 194424 675 0.00 2019-12-11 12:31:54 2019-12-11 12:34:07 t 1 1 194425 692 0.00 2019-12-11 12:34:31 2019-12-11 12:34:35 t 1 1 194427 220 0.00 2019-12-11 12:08:31 2019-12-11 12:35:15 t 1 1 194431 671 0.00 2019-12-11 12:32:33 2019-12-11 12:38:49 t 1 1 194434 627 0.00 2019-12-11 12:36:04 2019-12-11 12:40:04 t 1 1 194440 625 0.00 2019-12-11 12:24:18 2019-12-11 12:44:49 t 1 1 194448 692 0.00 2019-12-11 12:53:32 2019-12-11 12:54:03 t 1 1 194451 691 0.00 2019-12-11 12:53:50 2019-12-11 12:56:36 t 1 1 194453 498 0.00 2019-12-11 11:07:57 2019-12-11 12:58:22 t 1 2 194456 692 0.00 2019-12-11 12:54:40 2019-12-11 12:59:36 t 1 1 194457 692 0.00 2019-12-11 12:59:42 2019-12-11 12:59:43 t 1 1 194460 637 0.00 2019-12-11 12:55:28 2019-12-11 13:00:45 t 1 1 194409 667 0.00 2019-12-11 12:12:53 2019-12-11 12:27:36 t 1 1 194411 692 0.00 2019-12-11 12:29:28 2019-12-11 12:29:56 t 1 1 194413 724 0.00 2019-12-11 12:27:16 2019-12-11 12:30:15 t 1 1 194414 562 0.00 2019-12-11 12:19:45 2019-12-11 12:30:28 t 1 1 194417 694 0.00 2019-12-11 12:29:37 2019-12-11 12:31:08 t 1 1 194419 724 0.00 2019-12-11 12:31:11 2019-12-11 12:31:14 t 1 1 194420 692 0.00 2019-12-11 12:31:20 2019-12-11 12:31:24 t 1 1 194423 503 0.00 2019-12-11 12:31:38 2019-12-11 12:33:07 t 1 1 194429 667 0.00 2019-12-11 12:37:13 2019-12-11 12:37:29 t 1 1 194432 738 0.00 2019-12-11 12:39:20 2019-12-11 12:39:30 t 1 1 194435 562 0.00 2019-12-11 12:37:35 2019-12-11 12:40:29 t 1 1 194436 692 0.00 2019-12-11 12:40:08 2019-12-11 12:42:45 t 1 1 194437 503 0.00 2019-12-11 12:35:59 2019-12-11 12:43:10 t 1 1 194438 637 0.00 2019-12-11 12:42:52 2019-12-11 12:44:41 t 1 1 194442 562 0.00 2019-12-11 12:47:30 2019-12-11 12:47:44 t 1 1 194443 675 0.00 2019-12-11 12:48:52 2019-12-11 12:48:56 t 1 1 194444 718 0.00 2019-12-11 12:39:21 2019-12-11 12:52:05 t 1 1 194449 692 0.00 2019-12-11 12:52:26 2019-12-11 12:54:04 t 1 1 194452 562 0.00 2019-12-11 12:57:58 2019-12-11 12:58:15 t 1 1 194454 691 0.00 2019-12-11 12:57:40 2019-12-11 12:58:51 t 1 1 194455 738 0.00 2019-12-11 12:58:58 2019-12-11 12:59:13 t 1 1 194458 736 0.00 2019-12-11 12:58:57 2019-12-11 13:00:11 t 1 1 194461 707 0.00 2019-12-11 11:59:16 2019-12-11 13:01:35 t 1 1 194464 637 0.00 2019-12-11 13:00:45 2019-12-11 13:03:13 t 1 1 194469 578 0.00 2019-12-11 10:49:27 2019-12-11 13:09:14 t 1 1 194470 692 0.00 2019-12-11 13:00:38 2019-12-11 13:10:56 t 1 1 194474 738 0.00 2019-12-11 13:01:37 2019-12-11 13:13:48 t 1 1 194476 738 0.00 2019-12-11 13:14:19 2019-12-11 13:14:38 t 1 1 194477 738 0.00 2019-12-11 13:15:11 2019-12-11 13:15:12 t 1 1 194478 639 0.00 2019-12-11 13:11:30 2019-12-11 13:15:41 t 1 1 194482 660 0.00 2019-12-11 12:47:22 2019-12-11 13:17:03 t 1 1 194485 611 0.00 2019-12-11 13:17:02 2019-12-11 13:18:04 t 1 1 194488 692 0.00 2019-12-11 13:11:13 2019-12-11 13:20:24 t 1 1 194491 692 0.00 2019-12-11 13:21:59 2019-12-11 13:22:05 t 1 1 194494 746 0.00 2019-12-11 13:11:28 2019-12-11 13:25:07 t 1 1 194497 692 0.00 2019-12-11 13:25:50 2019-12-11 13:27:04 t 1 1 194498 718 0.00 2019-12-11 13:14:36 2019-12-11 13:27:27 t 1 1 194506 516 0.00 2019-12-11 13:31:52 2019-12-11 13:36:43 t 1 1 194509 694 0.00 2019-12-11 13:11:37 2019-12-11 13:37:45 t 1 1 194510 562 0.00 2019-12-11 13:38:42 2019-12-11 13:39:06 t 1 1 194514 578 0.00 2019-12-11 13:22:42 2019-12-11 13:43:55 t 1 1 194517 694 0.00 2019-12-11 13:37:36 2019-12-11 13:46:21 t 1 1 194524 692 0.00 2019-12-11 13:36:47 2019-12-11 13:51:38 t 1 1 194526 631 0.00 2019-12-11 13:48:23 2019-12-11 13:52:17 t 1 1 194529 692 0.00 2019-12-11 13:53:50 2019-12-11 13:54:02 t 1 1 194530 692 0.00 2019-12-11 13:54:58 2019-12-11 13:55:16 t 1 1 194533 692 0.00 2019-12-11 13:57:06 2019-12-11 13:57:10 t 1 1 194535 679 0.00 2019-12-11 13:53:37 2019-12-11 13:59:35 t 1 1 194539 673 0.00 2019-12-11 13:52:34 2019-12-11 14:00:44 t 1 1 194543 692 0.00 2019-12-11 14:01:05 2019-12-11 14:02:49 t 1 1 194547 692 0.00 2019-12-11 14:03:10 2019-12-11 14:04:17 t 1 1 194549 673 0.00 2019-12-11 14:00:44 2019-12-11 14:05:38 t 1 1 194551 692 0.00 2019-12-11 14:05:23 2019-12-11 14:06:06 t 1 1 194552 679 0.00 2019-12-11 13:59:40 2019-12-11 14:07:14 t 1 1 194555 639 0.00 2019-12-11 14:04:52 2019-12-11 14:07:51 t 1 1 194556 692 0.00 2019-12-11 14:07:55 2019-12-11 14:08:17 t 1 1 194559 692 0.00 2019-12-11 14:07:38 2019-12-11 14:09:04 t 1 1 194562 673 0.00 2019-12-11 14:05:38 2019-12-11 14:10:50 t 1 1 194563 692 0.00 2019-12-11 14:09:31 2019-12-11 14:11:36 t 1 1 194565 660 0.00 2019-12-11 13:17:01 2019-12-11 14:12:32 t 1 1 194569 692 0.00 2019-12-11 14:14:46 2019-12-11 14:15:18 t 1 1 194571 736 0.00 2019-12-11 14:15:07 2019-12-11 14:16:14 t 1 1 194572 687 0.00 2019-12-11 13:30:59 2019-12-11 14:17:26 t 1 1 194574 578 0.00 2019-12-11 14:12:42 2019-12-11 14:20:19 t 1 1 194576 692 0.00 2019-12-11 14:15:56 2019-12-11 14:21:45 t 1 1 194579 692 0.00 2019-12-11 14:23:22 2019-12-11 14:23:55 t 1 1 194583 660 0.00 2019-12-11 14:12:32 2019-12-11 14:25:39 t 1 1 194586 671 0.00 2019-12-11 14:24:53 2019-12-11 14:28:46 t 1 1 194588 578 0.00 2019-12-11 14:20:19 2019-12-11 14:29:29 t 1 1 194589 692 0.00 2019-12-11 14:29:30 2019-12-11 14:30:05 t 1 1 194591 679 0.00 2019-12-11 14:09:10 2019-12-11 14:31:06 t 1 1 194597 562 0.00 2019-12-11 14:32:42 2019-12-11 14:32:48 t 1 1 194600 692 0.00 2019-12-11 14:33:24 2019-12-11 14:34:05 t 1 1 194601 578 0.00 2019-12-11 14:29:29 2019-12-11 14:34:23 t 1 1 194603 591 0.00 2019-12-11 14:33:51 2019-12-11 14:35:31 t 1 1 194605 692 0.00 2019-12-11 14:35:40 2019-12-11 14:36:14 t 1 1 194606 692 0.00 2019-12-11 14:36:20 2019-12-11 14:36:58 t 1 1 194607 692 0.00 2019-12-11 14:37:04 2019-12-11 14:37:31 t 1 1 194608 716 0.00 2019-12-11 14:30:09 2019-12-11 14:38:01 t 1 1 194610 692 0.00 2019-12-11 14:38:17 2019-12-11 14:38:35 t 1 1 194616 639 0.00 2019-12-11 14:39:13 2019-12-11 14:39:55 t 1 1 194618 637 0.00 2019-12-11 14:27:34 2019-12-11 14:40:13 t 1 1 194627 578 0.00 2019-12-11 14:39:20 2019-12-11 14:43:49 t 1 1 194628 498 0.00 2019-12-11 14:22:39 2019-12-11 14:44:42 t 1 2 194639 692 0.00 2019-12-11 14:49:42 2019-12-11 14:50:22 t 1 1 194642 687 0.00 2019-12-11 14:49:25 2019-12-11 14:51:20 t 1 1 194645 692 0.00 2019-12-11 14:51:10 2019-12-11 14:51:48 t 1 1 194648 692 0.00 2019-12-11 14:52:42 2019-12-11 14:53:59 t 1 1 194649 692 0.00 2019-12-11 14:54:05 2019-12-11 14:54:44 t 1 1 194651 639 0.00 2019-12-11 14:52:20 2019-12-11 14:57:53 t 1 1 194653 692 0.00 2019-12-11 14:55:50 2019-12-11 14:59:36 t 1 1 194657 736 0.00 2019-12-11 15:01:55 2019-12-11 15:02:17 t 1 1 194661 692 0.00 2019-12-11 15:02:57 2019-12-11 15:03:42 t 1 1 194664 392 0.00 2019-12-11 15:06:04 2019-12-11 15:06:32 t 1 2 194666 392 0.00 2019-12-11 15:06:38 2019-12-11 15:07:01 t 1 2 194667 611 0.00 2019-12-11 14:47:35 2019-12-11 15:07:20 t 1 1 194668 692 0.00 2019-12-11 15:08:03 2019-12-11 15:08:19 t 1 1 194671 578 0.00 2019-12-11 14:49:24 2019-12-11 15:08:50 t 1 1 194674 639 0.00 2019-12-11 15:09:32 2019-12-11 15:11:05 t 1 1 194680 611 0.00 2019-12-11 15:07:20 2019-12-11 15:12:46 t 1 1 194681 637 0.00 2019-12-11 14:41:14 2019-12-11 15:13:24 t 1 1 194690 692 0.00 2019-12-11 15:16:06 2019-12-11 15:16:41 t 1 1 194691 692 0.00 2019-12-11 15:17:03 2019-12-11 15:17:37 t 1 1 194693 707 0.00 2019-12-11 13:35:09 2019-12-11 15:18:02 t 1 1 194696 692 0.00 2019-12-11 15:20:04 2019-12-11 15:20:33 t 1 1 194704 692 0.00 2019-12-11 15:24:22 2019-12-11 15:24:53 t 1 1 194706 692 0.00 2019-12-11 15:25:47 2019-12-11 15:26:16 t 1 1 194441 736 0.00 2019-12-11 12:45:19 2019-12-11 12:45:33 t 1 1 194445 692 0.00 2019-12-11 12:43:06 2019-12-11 12:52:06 t 1 1 194446 691 0.00 2019-12-11 12:52:37 2019-12-11 12:53:26 t 1 1 194447 691 0.00 2019-12-11 12:53:26 2019-12-11 12:53:50 t 1 1 194450 637 0.00 2019-12-11 12:46:33 2019-12-11 12:54:06 t 1 1 194459 738 0.00 2019-12-11 12:59:39 2019-12-11 13:00:13 t 1 1 194462 687 0.00 2019-12-11 12:48:59 2019-12-11 13:01:36 t 1 1 194463 738 0.00 2019-12-11 13:01:23 2019-12-11 13:01:37 t 1 1 194466 736 0.00 2019-12-11 13:06:52 2019-12-11 13:08:04 t 1 1 194472 694 0.00 2019-12-11 13:10:24 2019-12-11 13:11:37 t 1 1 194473 611 0.00 2019-12-11 12:46:41 2019-12-11 13:13:06 t 1 1 194480 738 0.00 2019-12-11 13:16:09 2019-12-11 13:16:09 f 1 1 194483 738 0.00 2019-12-11 13:14:43 2019-12-11 13:17:04 t 1 1 194484 562 0.00 2019-12-11 13:17:18 2019-12-11 13:17:43 t 1 1 194486 738 0.00 2019-12-11 13:15:43 2019-12-11 13:18:04 t 1 1 194490 692 0.00 2019-12-11 13:21:39 2019-12-11 13:21:53 t 1 1 194493 578 0.00 2019-12-11 13:09:14 2019-12-11 13:22:42 t 1 1 194499 639 0.00 2019-12-11 13:27:10 2019-12-11 13:29:04 t 1 1 194500 692 0.00 2019-12-11 13:27:38 2019-12-11 13:29:32 t 1 1 194501 637 0.00 2019-12-11 13:23:21 2019-12-11 13:30:26 t 1 1 194502 611 0.00 2019-12-11 13:19:46 2019-12-11 13:32:26 t 1 1 194504 622 0.00 2019-12-11 11:41:48 2019-12-11 13:35:04 t 1 1 194512 673 0.00 2019-12-11 13:39:37 2019-12-11 13:41:02 t 1 1 194513 724 0.00 2019-12-11 12:32:34 2019-12-11 13:43:06 t 1 1 194515 639 0.00 2019-12-11 13:45:28 2019-12-11 13:45:36 t 1 1 194519 622 0.00 2019-12-11 13:35:07 2019-12-11 13:46:48 t 1 1 194521 671 0.00 2019-12-11 13:45:10 2019-12-11 13:49:01 t 1 1 194522 562 0.00 2019-12-11 13:49:25 2019-12-11 13:49:52 t 1 1 194528 564 0.00 2019-12-11 13:45:38 2019-12-11 13:52:46 t 1 1 194531 485 0.00 2019-12-11 13:53:27 2019-12-11 13:55:49 t 1 1 194537 562 0.00 2019-12-11 14:00:12 2019-12-11 14:00:35 t 1 1 194541 716 0.00 2019-12-11 13:59:17 2019-12-11 14:02:31 t 1 1 194545 692 0.00 2019-12-11 14:02:56 2019-12-11 14:03:04 t 1 1 194546 656 0.00 2019-12-11 12:23:35 2019-12-11 14:04:01 t 1 1 194553 692 0.00 2019-12-11 14:06:46 2019-12-11 14:07:14 t 1 1 194554 578 0.00 2019-12-11 13:43:55 2019-12-11 14:07:44 t 1 1 194564 736 0.00 2019-12-11 14:04:51 2019-12-11 14:11:51 t 1 1 194567 578 0.00 2019-12-11 14:07:44 2019-12-11 14:12:42 t 1 1 194568 692 0.00 2019-12-11 14:12:40 2019-12-11 14:14:11 t 1 1 194570 692 0.00 2019-12-11 14:15:39 2019-12-11 14:15:50 t 1 1 194573 639 0.00 2019-12-11 14:19:06 2019-12-11 14:19:13 t 1 1 194575 461 0.00 2019-12-11 14:21:33 2019-12-11 14:21:33 f 1 2 194580 736 0.00 2019-12-11 14:21:38 2019-12-11 14:24:04 t 1 1 194585 611 0.00 2019-12-11 14:26:03 2019-12-11 14:27:45 t 1 1 194593 461 0.00 2019-12-11 14:31:32 2019-12-11 14:31:32 f 1 2 194598 692 0.00 2019-12-11 14:32:42 2019-12-11 14:33:18 t 1 1 194599 679 0.00 2019-12-11 14:31:06 2019-12-11 14:33:43 t 1 1 194604 692 0.00 2019-12-11 14:34:55 2019-12-11 14:35:34 t 1 1 194611 692 0.00 2019-12-11 14:38:35 2019-12-11 14:38:41 t 1 1 194613 692 0.00 2019-12-11 14:38:47 2019-12-11 14:39:02 t 1 1 194615 692 0.00 2019-12-11 14:39:09 2019-12-11 14:39:48 t 1 1 194617 692 0.00 2019-12-11 14:39:54 2019-12-11 14:39:59 t 1 1 194620 681 0.00 2019-12-11 12:29:24 2019-12-11 14:41:08 t 1 1 194622 692 0.00 2019-12-11 14:40:05 2019-12-11 14:42:05 t 1 1 194624 694 0.00 2019-12-11 13:46:21 2019-12-11 14:42:19 t 1 1 194625 692 0.00 2019-12-11 14:42:19 2019-12-11 14:42:54 t 1 1 194626 692 0.00 2019-12-11 14:43:00 2019-12-11 14:43:37 t 1 1 194629 692 0.00 2019-12-11 14:43:44 2019-12-11 14:45:09 t 1 1 194635 687 0.00 2019-12-11 14:17:26 2019-12-11 14:48:29 t 1 1 194643 562 0.00 2019-12-11 14:51:00 2019-12-11 14:51:34 t 1 1 194647 687 0.00 2019-12-11 14:52:00 2019-12-11 14:53:17 t 1 1 194659 220 0.00 2019-12-11 15:02:35 2019-12-11 15:02:38 t 1 2 194660 692 0.00 2019-12-11 15:02:41 2019-12-11 15:02:57 t 1 1 194663 673 0.00 2019-12-11 14:48:28 2019-12-11 15:05:56 t 1 1 194670 625 0.00 2019-12-11 15:08:22 2019-12-11 15:08:22 t 1 1 194673 625 0.00 2019-12-11 15:08:22 2019-12-11 15:09:23 t 1 1 194675 639 0.00 2019-12-11 15:10:59 2019-12-11 15:11:07 t 1 1 194677 692 0.00 2019-12-11 15:09:23 2019-12-11 15:11:24 t 1 1 194678 639 0.00 2019-12-11 15:11:49 2019-12-11 15:11:59 t 1 1 194683 639 0.00 2019-12-11 15:13:36 2019-12-11 15:14:02 t 1 1 194686 692 0.00 2019-12-11 15:14:25 2019-12-11 15:14:33 t 1 1 194689 673 0.00 2019-12-11 15:05:56 2019-12-11 15:16:30 t 1 1 194695 692 0.00 2019-12-11 15:19:36 2019-12-11 15:19:43 t 1 1 194697 528 0.00 2019-12-11 14:40:28 2019-12-11 15:20:34 t 1 1 194698 692 0.00 2019-12-11 15:19:51 2019-12-11 15:22:05 t 1 1 194699 692 0.00 2019-12-11 15:22:43 2019-12-11 15:23:01 t 1 1 194700 692 0.00 2019-12-11 15:23:38 2019-12-11 15:24:01 t 1 1 194702 562 0.00 2019-12-11 15:24:17 2019-12-11 15:24:27 t 1 1 194707 692 0.00 2019-12-11 15:26:22 2019-12-11 15:26:49 t 1 1 194715 692 0.00 2019-12-11 15:30:53 2019-12-11 15:31:06 t 1 1 194719 692 0.00 2019-12-11 15:32:20 2019-12-11 15:32:50 t 1 1 194725 692 0.00 2019-12-11 15:34:17 2019-12-11 15:34:50 t 1 1 194727 692 0.00 2019-12-11 15:36:07 2019-12-11 15:36:10 t 1 1 194731 692 0.00 2019-12-11 15:37:43 2019-12-11 15:38:12 t 1 1 194732 692 0.00 2019-12-11 15:38:51 2019-12-11 15:39:15 t 1 1 194738 692 0.00 2019-12-11 15:42:20 2019-12-11 15:42:49 t 1 1 194746 637 0.00 2019-12-11 15:43:35 2019-12-11 15:48:36 t 1 1 194748 692 0.00 2019-12-11 15:48:48 2019-12-11 15:48:52 t 1 1 194750 679 0.00 2019-12-11 15:33:42 2019-12-11 15:49:31 t 1 1 194752 692 0.00 2019-12-11 15:49:39 2019-12-11 15:50:20 t 1 1 194754 611 0.00 2019-12-11 15:48:10 2019-12-11 15:50:53 t 1 1 194756 692 0.00 2019-12-11 15:50:58 2019-12-11 15:51:02 t 1 1 194757 656 0.00 2019-12-11 14:04:01 2019-12-11 15:51:26 t 1 1 194759 692 0.00 2019-12-11 15:51:32 2019-12-11 15:52:11 t 1 1 194765 692 0.00 2019-12-11 15:54:12 2019-12-11 15:54:51 t 1 1 194767 637 0.00 2019-12-11 15:49:11 2019-12-11 15:55:26 t 1 1 194769 692 0.00 2019-12-11 15:55:13 2019-12-11 15:55:51 t 1 1 194779 692 0.00 2019-12-11 15:59:38 2019-12-11 16:00:11 t 1 1 194781 562 0.00 2019-12-11 16:00:29 2019-12-11 16:01:04 t 1 1 194790 692 0.00 2019-12-11 16:05:38 2019-12-11 16:06:16 t 1 1 194792 692 0.00 2019-12-11 16:06:21 2019-12-11 16:06:51 t 1 1 194801 564 0.00 2019-12-11 16:07:14 2019-12-11 16:11:27 t 1 1 194803 692 0.00 2019-12-11 16:11:33 2019-12-11 16:11:47 t 1 1 194805 692 0.00 2019-12-11 16:12:44 2019-12-11 16:15:02 t 1 1 194806 692 0.00 2019-12-11 16:15:08 2019-12-11 16:15:13 t 1 1 194808 637 0.00 2019-12-11 16:13:31 2019-12-11 16:16:40 t 1 1 194812 694 0.00 2019-12-11 15:45:19 2019-12-11 16:19:45 t 1 1 194465 687 0.00 2019-12-11 13:01:36 2019-12-11 13:03:53 t 1 1 194467 736 0.00 2019-12-11 13:07:53 2019-12-11 13:08:05 t 1 1 194468 694 0.00 2019-12-11 12:31:08 2019-12-11 13:09:02 t 1 1 194471 639 0.00 2019-12-11 12:47:28 2019-12-11 13:11:30 t 1 1 194475 738 0.00 2019-12-11 13:13:54 2019-12-11 13:13:57 t 1 1 194479 637 0.00 2019-12-11 13:08:37 2019-12-11 13:15:49 t 1 1 194481 611 0.00 2019-12-11 13:13:05 2019-12-11 13:17:02 t 1 1 194487 611 0.00 2019-12-11 13:18:04 2019-12-11 13:19:46 t 1 1 194489 692 0.00 2019-12-11 13:20:24 2019-12-11 13:21:33 t 1 1 194492 692 0.00 2019-12-11 13:22:11 2019-12-11 13:22:12 t 1 1 194495 692 0.00 2019-12-11 13:26:07 2019-12-11 13:26:10 t 1 1 194496 692 0.00 2019-12-11 13:26:31 2019-12-11 13:26:59 t 1 1 194503 692 0.00 2019-12-11 13:29:32 2019-12-11 13:33:37 t 1 1 194505 692 0.00 2019-12-11 13:33:37 2019-12-11 13:36:41 t 1 1 194507 691 0.00 2019-12-11 13:35:57 2019-12-11 13:37:05 t 1 1 194508 639 0.00 2019-12-11 13:31:33 2019-12-11 13:37:40 t 1 1 194511 718 0.00 2019-12-11 13:27:27 2019-12-11 13:40:37 t 1 1 194516 564 0.00 2019-12-11 11:23:18 2019-12-11 13:45:38 t 1 1 194518 611 0.00 2019-12-11 13:32:44 2019-12-11 13:46:27 t 1 1 194520 673 0.00 2019-12-11 13:41:02 2019-12-11 13:46:51 t 1 1 194523 481 0.00 2019-12-11 09:44:57 2019-12-11 13:51:34 t 1 1 194525 692 0.00 2019-12-11 13:51:44 2019-12-11 13:52:07 t 1 1 194527 673 0.00 2019-12-11 13:46:51 2019-12-11 13:52:34 t 1 1 194532 692 0.00 2019-12-11 13:55:22 2019-12-11 13:56:01 t 1 1 194534 692 0.00 2019-12-11 13:58:04 2019-12-11 13:58:38 t 1 1 194536 692 0.00 2019-12-11 13:59:16 2019-12-11 13:59:46 t 1 1 194538 692 0.00 2019-12-11 13:59:52 2019-12-11 14:00:41 t 1 1 194540 639 0.00 2019-12-11 14:01:41 2019-12-11 14:02:08 t 1 1 194542 649 0.00 2019-12-11 13:57:27 2019-12-11 14:02:44 t 1 1 194544 611 0.00 2019-12-11 13:46:26 2019-12-11 14:02:55 t 1 1 194548 692 0.00 2019-12-11 14:04:40 2019-12-11 14:05:17 t 1 1 194550 611 0.00 2019-12-11 14:02:55 2019-12-11 14:06:00 t 1 1 194557 679 0.00 2019-12-11 14:08:10 2019-12-11 14:08:20 t 1 1 194558 679 0.00 2019-12-11 14:08:26 2019-12-11 14:08:40 t 1 1 194560 692 0.00 2019-12-11 14:08:38 2019-12-11 14:09:13 t 1 1 194561 692 0.00 2019-12-11 14:09:19 2019-12-11 14:09:20 t 1 1 194566 591 0.00 2019-12-11 12:03:36 2019-12-11 14:12:34 t 1 1 194577 692 0.00 2019-12-11 14:21:52 2019-12-11 14:23:04 t 1 1 194578 637 0.00 2019-12-11 13:56:12 2019-12-11 14:23:23 t 1 1 194581 516 0.00 2019-12-11 14:21:48 2019-12-11 14:24:16 t 1 1 194582 673 0.00 2019-12-11 14:10:50 2019-12-11 14:25:00 t 1 1 194584 665 0.00 2019-12-11 14:14:19 2019-12-11 14:26:03 t 1 1 194587 692 0.00 2019-12-11 14:25:50 2019-12-11 14:29:24 t 1 1 194590 639 0.00 2019-12-11 14:20:09 2019-12-11 14:30:29 t 1 1 194592 692 0.00 2019-12-11 14:30:11 2019-12-11 14:31:07 t 1 1 194594 692 0.00 2019-12-11 14:31:13 2019-12-11 14:31:52 t 1 1 194595 692 0.00 2019-12-11 14:31:57 2019-12-11 14:32:36 t 1 1 194596 736 0.00 2019-12-11 14:31:25 2019-12-11 14:32:45 t 1 1 194602 692 0.00 2019-12-11 14:34:10 2019-12-11 14:34:49 t 1 1 194609 692 0.00 2019-12-11 14:37:37 2019-12-11 14:38:11 t 1 1 194612 639 0.00 2019-12-11 14:37:59 2019-12-11 14:38:45 t 1 1 194614 578 0.00 2019-12-11 14:34:23 2019-12-11 14:39:20 t 1 1 194619 692 0.00 2019-12-11 14:40:24 2019-12-11 14:40:50 t 1 1 194621 692 0.00 2019-12-11 14:40:56 2019-12-11 14:41:30 t 1 1 194623 692 0.00 2019-12-11 14:41:36 2019-12-11 14:42:12 t 1 1 194630 692 0.00 2019-12-11 14:45:15 2019-12-11 14:45:55 t 1 1 194631 692 0.00 2019-12-11 14:46:01 2019-12-11 14:46:36 t 1 1 194632 692 0.00 2019-12-11 14:46:43 2019-12-11 14:47:20 t 1 1 194633 692 0.00 2019-12-11 14:47:26 2019-12-11 14:48:08 t 1 1 194634 673 0.00 2019-12-11 14:25:00 2019-12-11 14:48:28 t 1 1 194636 692 0.00 2019-12-11 14:48:14 2019-12-11 14:48:51 t 1 1 194637 578 0.00 2019-12-11 14:43:49 2019-12-11 14:49:24 t 1 1 194638 692 0.00 2019-12-11 14:48:57 2019-12-11 14:49:36 t 1 1 194640 716 0.00 2019-12-11 14:38:01 2019-12-11 14:50:40 t 1 1 194641 692 0.00 2019-12-11 14:50:28 2019-12-11 14:51:04 t 1 1 194644 639 0.00 2019-12-11 14:51:10 2019-12-11 14:51:39 t 1 1 194646 692 0.00 2019-12-11 14:51:55 2019-12-11 14:52:36 t 1 1 194650 692 0.00 2019-12-11 14:54:51 2019-12-11 14:55:44 t 1 1 194652 716 0.00 2019-12-11 14:50:40 2019-12-11 14:58:29 t 1 1 194654 562 0.00 2019-12-11 14:59:15 2019-12-11 14:59:53 t 1 1 194655 692 0.00 2019-12-11 14:59:42 2019-12-11 15:00:32 t 1 1 194656 692 0.00 2019-12-11 15:00:38 2019-12-11 15:01:27 t 1 1 194658 692 0.00 2019-12-11 15:01:34 2019-12-11 15:02:35 t 1 1 194662 692 0.00 2019-12-11 15:03:48 2019-12-11 15:03:48 t 1 1 194665 692 0.00 2019-12-11 15:06:19 2019-12-11 15:06:50 t 1 1 194669 625 0.00 2019-12-11 12:44:49 2019-12-11 15:08:22 t 1 1 194672 692 0.00 2019-12-11 15:08:19 2019-12-11 15:09:02 t 1 1 194676 562 0.00 2019-12-11 15:05:15 2019-12-11 15:11:07 t 1 1 194679 591 0.00 2019-12-11 15:10:23 2019-12-11 15:12:08 t 1 1 194682 746 0.00 2019-12-11 14:41:28 2019-12-11 15:13:53 t 1 1 194684 607 0.00 2019-12-11 15:01:30 2019-12-11 15:14:17 t 1 1 194685 692 0.00 2019-12-11 15:11:46 2019-12-11 15:14:19 t 1 1 194687 692 0.00 2019-12-11 15:15:12 2019-12-11 15:15:42 t 1 1 194688 716 0.00 2019-12-11 14:58:29 2019-12-11 15:16:23 t 1 1 194692 692 0.00 2019-12-11 15:17:58 2019-12-11 15:17:59 t 1 1 194694 692 0.00 2019-12-11 15:18:59 2019-12-11 15:19:30 t 1 1 194701 591 0.00 2019-12-11 15:22:03 2019-12-11 15:24:14 t 1 1 194703 716 0.00 2019-12-11 15:16:23 2019-12-11 15:24:40 t 1 1 194705 611 0.00 2019-12-11 15:12:46 2019-12-11 15:25:53 t 1 1 194709 692 0.00 2019-12-11 15:26:55 2019-12-11 15:26:59 t 1 1 194710 692 0.00 2019-12-11 15:27:22 2019-12-11 15:27:43 t 1 1 194717 692 0.00 2019-12-11 15:31:55 2019-12-11 15:31:59 t 1 1 194721 679 0.00 2019-12-11 15:14:19 2019-12-11 15:33:42 t 1 1 194722 692 0.00 2019-12-11 15:33:46 2019-12-11 15:33:53 t 1 1 194723 611 0.00 2019-12-11 15:26:51 2019-12-11 15:34:24 t 1 1 194728 671 0.00 2019-12-11 15:26:19 2019-12-11 15:36:18 t 1 1 194729 687 0.00 2019-12-11 14:54:51 2019-12-11 15:36:51 t 1 1 194730 692 0.00 2019-12-11 15:36:50 2019-12-11 15:37:21 t 1 1 194734 692 0.00 2019-12-11 15:40:35 2019-12-11 15:41:04 t 1 1 194736 692 0.00 2019-12-11 15:41:41 2019-12-11 15:41:45 t 1 1 194741 692 0.00 2019-12-11 15:44:09 2019-12-11 15:44:16 t 1 1 194742 692 0.00 2019-12-11 15:44:22 2019-12-11 15:44:23 t 1 1 194745 692 0.00 2019-12-11 15:45:44 2019-12-11 15:48:23 t 1 1 194758 692 0.00 2019-12-11 15:51:08 2019-12-11 15:51:26 t 1 1 194760 562 0.00 2019-12-11 15:52:14 2019-12-11 15:52:23 t 1 1 194762 692 0.00 2019-12-11 15:53:03 2019-12-11 15:53:07 t 1 1 194763 692 0.00 2019-12-11 15:53:13 2019-12-11 15:53:47 t 1 1 194708 611 0.00 2019-12-11 15:25:53 2019-12-11 15:26:52 t 1 1 194711 736 0.00 2019-12-11 15:12:34 2019-12-11 15:28:00 t 1 1 194712 692 0.00 2019-12-11 15:28:23 2019-12-11 15:28:52 t 1 1 194713 694 0.00 2019-12-11 14:42:20 2019-12-11 15:29:33 t 1 1 194714 562 0.00 2019-12-11 15:30:50 2019-12-11 15:30:56 t 1 1 194716 639 0.00 2019-12-11 15:19:16 2019-12-11 15:31:47 t 1 1 194718 673 0.00 2019-12-11 15:16:30 2019-12-11 15:32:34 t 1 1 194720 692 0.00 2019-12-11 15:32:56 2019-12-11 15:32:57 t 1 1 194724 637 0.00 2019-12-11 15:13:23 2019-12-11 15:34:34 t 1 1 194726 692 0.00 2019-12-11 15:34:55 2019-12-11 15:34:59 t 1 1 194733 687 0.00 2019-12-11 15:36:51 2019-12-11 15:39:49 t 1 1 194735 736 0.00 2019-12-11 15:30:34 2019-12-11 15:41:17 t 1 1 194737 562 0.00 2019-12-11 15:41:23 2019-12-11 15:42:12 t 1 1 194739 736 0.00 2019-12-11 15:41:17 2019-12-11 15:43:30 t 1 1 194740 692 0.00 2019-12-11 15:43:58 2019-12-11 15:43:58 t 1 1 194743 694 0.00 2019-12-11 15:29:33 2019-12-11 15:44:54 t 1 1 194744 611 0.00 2019-12-11 15:42:28 2019-12-11 15:48:10 t 1 1 194747 692 0.00 2019-12-11 15:48:30 2019-12-11 15:48:48 t 1 1 194749 692 0.00 2019-12-11 15:48:58 2019-12-11 15:49:06 t 1 1 194751 692 0.00 2019-12-11 15:49:29 2019-12-11 15:49:33 t 1 1 194753 692 0.00 2019-12-11 15:50:26 2019-12-11 15:50:33 t 1 1 194755 692 0.00 2019-12-11 15:50:39 2019-12-11 15:50:58 t 1 1 194761 692 0.00 2019-12-11 15:52:17 2019-12-11 15:52:57 t 1 1 194764 716 0.00 2019-12-11 15:40:18 2019-12-11 15:54:51 t 1 1 194768 660 0.00 2019-12-11 15:24:16 2019-12-11 15:55:36 t 1 1 194771 692 0.00 2019-12-11 15:55:57 2019-12-11 15:56:24 t 1 1 194773 692 0.00 2019-12-11 15:54:58 2019-12-11 15:57:06 t 1 1 194774 692 0.00 2019-12-11 15:57:10 2019-12-11 15:57:21 t 1 1 194777 692 0.00 2019-12-11 15:58:54 2019-12-11 15:59:32 t 1 1 194778 736 0.00 2019-12-11 15:59:52 2019-12-11 16:00:04 t 1 1 194780 679 0.00 2019-12-11 15:49:31 2019-12-11 16:00:46 t 1 1 194782 692 0.00 2019-12-11 16:00:17 2019-12-11 16:01:34 t 1 1 194783 692 0.00 2019-12-11 16:01:40 2019-12-11 16:02:18 t 1 1 194784 692 0.00 2019-12-11 16:02:23 2019-12-11 16:02:31 t 1 1 194785 692 0.00 2019-12-11 16:02:55 2019-12-11 16:03:20 t 1 1 194787 692 0.00 2019-12-11 16:03:26 2019-12-11 16:03:55 t 1 1 194789 692 0.00 2019-12-11 16:04:24 2019-12-11 16:05:09 t 1 1 194794 716 0.00 2019-12-11 16:05:06 2019-12-11 16:07:18 t 1 1 194795 692 0.00 2019-12-11 16:07:21 2019-12-11 16:07:56 t 1 1 194798 692 0.00 2019-12-11 16:08:11 2019-12-11 16:08:44 t 1 1 194804 692 0.00 2019-12-11 16:11:53 2019-12-11 16:12:08 t 1 1 194813 615 0.00 2019-12-11 16:16:53 2019-12-11 16:20:28 t 1 1 194815 687 0.00 2019-12-11 15:46:07 2019-12-11 16:21:56 t 1 1 194822 485 0.00 2019-12-11 16:27:34 2019-12-11 16:29:40 t 1 1 194824 625 0.00 2019-12-11 16:22:39 2019-12-11 16:32:11 t 1 1 194825 625 0.00 2019-12-11 16:33:41 2019-12-11 16:35:27 t 1 1 194826 687 0.00 2019-12-11 16:21:56 2019-12-11 16:36:30 t 1 1 194832 639 0.00 2019-12-11 16:42:26 2019-12-11 16:42:35 t 1 1 194835 671 0.00 2019-12-11 16:41:15 2019-12-11 16:44:47 t 1 1 194837 622 0.00 2019-12-11 16:30:36 2019-12-11 16:46:22 t 1 1 194840 671 0.00 2019-12-11 16:45:27 2019-12-11 16:51:18 t 1 1 194841 687 0.00 2019-12-11 16:47:57 2019-12-11 16:53:57 t 1 1 194844 615 0.00 2019-12-11 16:41:59 2019-12-11 16:58:45 t 1 1 194848 639 0.00 2019-12-11 17:03:40 2019-12-11 17:05:37 t 1 1 194850 562 0.00 2019-12-11 17:00:39 2019-12-11 17:06:49 t 1 1 194853 585 0.00 2019-12-11 17:09:04 2019-12-11 17:09:04 f 1 1 194854 585 0.00 2019-12-11 17:09:22 2019-12-11 17:09:22 f 1 1 194858 639 0.00 2019-12-11 17:13:51 2019-12-11 17:14:04 t 1 1 194860 736 0.00 2019-12-11 17:15:58 2019-12-11 17:16:12 t 1 1 194861 591 0.00 2019-12-11 17:10:28 2019-12-11 17:18:24 t 1 1 194864 562 0.00 2019-12-11 17:16:50 2019-12-11 17:22:51 t 1 1 194868 639 0.00 2019-12-11 17:31:31 2019-12-11 17:33:02 t 1 1 194871 625 0.00 2019-12-11 16:43:49 2019-12-11 17:37:28 t 1 1 194872 694 0.00 2019-12-11 16:19:45 2019-12-11 17:39:59 t 1 1 194876 544 0.00 2019-12-11 17:29:42 2019-12-11 17:43:14 t 1 1 194879 625 0.00 2019-12-11 17:39:19 2019-12-11 17:45:18 t 1 1 194880 689 0.00 2019-12-11 17:36:55 2019-12-11 17:46:54 t 1 1 194883 528 0.00 2019-12-11 17:48:23 2019-12-11 17:49:20 t 1 1 194885 707 0.00 2019-12-11 17:08:43 2019-12-11 17:54:16 t 1 1 194886 611 0.00 2019-12-11 17:53:05 2019-12-11 17:55:06 t 1 1 194889 736 0.00 2019-12-11 18:01:53 2019-12-11 18:01:56 t 1 1 194892 611 0.00 2019-12-11 17:55:05 2019-12-11 18:05:11 t 1 1 194893 675 0.00 2019-12-11 18:03:24 2019-12-11 18:05:52 t 1 1 194897 656 0.00 2019-12-11 15:58:49 2019-12-11 18:08:42 t 1 1 194901 639 0.00 2019-12-11 18:01:22 2019-12-11 18:16:03 t 1 1 194903 637 0.00 2019-12-11 18:00:09 2019-12-11 18:16:17 t 1 1 194904 639 0.00 2019-12-11 18:16:41 2019-12-11 18:16:55 t 1 1 194908 639 0.00 2019-12-11 18:17:54 2019-12-11 18:18:06 t 1 1 194910 615 0.00 2019-12-11 18:08:31 2019-12-11 18:18:26 t 1 1 194912 711 0.00 2019-12-11 18:06:09 2019-12-11 18:20:10 t 1 1 194917 591 0.00 2019-12-11 18:11:35 2019-12-11 18:25:17 t 1 1 194920 667 0.00 2019-12-11 18:28:52 2019-12-11 18:30:16 t 1 1 194922 615 0.00 2019-12-11 18:23:37 2019-12-11 18:36:45 t 1 1 194927 736 0.00 2019-12-11 18:44:11 2019-12-11 18:44:40 t 1 1 194930 611 0.00 2019-12-11 18:44:30 2019-12-11 18:46:53 t 1 1 194934 656 0.00 2019-12-11 18:18:00 2019-12-11 18:52:11 t 1 1 194938 528 0.00 2019-12-11 18:52:48 2019-12-11 18:56:52 t 1 1 194945 615 0.00 2019-12-11 19:06:44 2019-12-11 19:08:03 t 1 1 194949 675 0.00 2019-12-11 19:09:43 2019-12-11 19:16:08 t 1 1 194951 656 0.00 2019-12-11 18:52:11 2019-12-11 19:22:04 t 1 1 194954 675 0.00 2019-12-11 19:21:00 2019-12-11 19:24:33 t 1 1 194956 724 0.00 2019-12-11 17:43:30 2019-12-11 19:24:46 t 1 1 194958 671 0.00 2019-12-11 19:13:08 2019-12-11 19:25:02 t 1 1 194961 673 0.00 2019-12-11 18:42:54 2019-12-11 19:29:10 t 1 1 194963 675 0.00 2019-12-11 19:26:11 2019-12-11 19:29:50 t 1 1 194964 498 0.00 2019-12-11 17:38:32 2019-12-11 19:31:05 t 1 2 194966 679 0.00 2019-12-11 19:16:48 2019-12-11 19:33:10 t 1 1 194967 656 0.00 2019-12-11 19:22:04 2019-12-11 19:33:38 t 1 1 194968 639 0.00 2019-12-11 19:35:11 2019-12-11 19:35:21 t 1 1 194974 675 0.00 2019-12-11 19:38:06 2019-12-11 19:40:01 t 1 1 194979 711 0.00 2019-12-11 19:26:19 2019-12-11 19:43:04 t 1 1 194981 675 0.00 2019-12-11 19:46:29 2019-12-11 19:46:56 t 1 1 194983 679 0.00 2019-12-11 19:48:16 2019-12-11 19:48:36 t 1 1 194986 528 0.00 2019-12-11 19:51:36 2019-12-11 19:52:19 t 1 1 194992 660 0.00 2019-12-11 19:41:05 2019-12-11 19:56:52 t 1 1 194994 639 0.00 2019-12-11 19:56:47 2019-12-11 19:56:56 t 1 1 194995 675 0.00 2019-12-11 19:56:54 2019-12-11 19:57:24 t 1 1 194766 716 0.00 2019-12-11 15:54:50 2019-12-11 15:54:53 t 1 1 194770 562 0.00 2019-12-11 15:56:11 2019-12-11 15:56:20 t 1 1 194772 692 0.00 2019-12-11 15:56:30 2019-12-11 15:57:04 t 1 1 194775 692 0.00 2019-12-11 15:57:27 2019-12-11 15:58:07 t 1 1 194776 692 0.00 2019-12-11 15:58:14 2019-12-11 15:58:48 t 1 1 194786 562 0.00 2019-12-11 16:02:17 2019-12-11 16:03:29 t 1 1 194788 692 0.00 2019-12-11 16:04:00 2019-12-11 16:04:04 t 1 1 194791 625 0.00 2019-12-11 15:10:31 2019-12-11 16:06:17 t 1 1 194793 692 0.00 2019-12-11 16:06:56 2019-12-11 16:07:15 t 1 1 194796 692 0.00 2019-12-11 16:08:02 2019-12-11 16:08:06 t 1 1 194797 625 0.00 2019-12-11 16:07:15 2019-12-11 16:08:30 t 1 1 194799 692 0.00 2019-12-11 16:08:50 2019-12-11 16:08:57 t 1 1 194800 692 0.00 2019-12-11 16:09:18 2019-12-11 16:09:52 t 1 1 194802 692 0.00 2019-12-11 16:10:48 2019-12-11 16:11:27 t 1 1 194807 692 0.00 2019-12-11 16:15:18 2019-12-11 16:15:22 t 1 1 194809 615 0.00 2019-12-11 16:06:44 2019-12-11 16:16:53 t 1 1 194810 578 0.00 2019-12-11 15:08:50 2019-12-11 16:17:25 t 1 1 194811 639 0.00 2019-12-11 15:50:40 2019-12-11 16:18:38 t 1 1 194814 562 0.00 2019-12-11 16:13:18 2019-12-11 16:21:54 t 1 1 194817 736 0.00 2019-12-11 16:24:46 2019-12-11 16:27:05 t 1 1 194819 736 0.00 2019-12-11 16:27:44 2019-12-11 16:28:26 t 1 1 194821 622 0.00 2019-12-11 13:46:48 2019-12-11 16:28:52 t 1 1 194828 671 0.00 2019-12-11 16:34:16 2019-12-11 16:37:59 t 1 1 194834 625 0.00 2019-12-11 16:35:31 2019-12-11 16:43:49 t 1 1 194838 687 0.00 2019-12-11 16:36:30 2019-12-11 16:47:57 t 1 1 194839 611 0.00 2019-12-11 16:44:00 2019-12-11 16:51:08 t 1 1 194843 660 0.00 2019-12-11 15:55:36 2019-12-11 16:58:30 t 1 1 194846 687 0.00 2019-12-11 16:53:57 2019-12-11 17:01:16 t 1 1 194847 736 0.00 2019-12-11 16:54:32 2019-12-11 17:02:07 t 1 1 194856 687 0.00 2019-12-11 17:07:51 2019-12-11 17:09:59 t 1 1 194865 660 0.00 2019-12-11 16:59:42 2019-12-11 17:24:01 t 1 1 194866 689 0.00 2019-12-11 17:17:19 2019-12-11 17:24:36 t 1 1 194867 528 0.00 2019-12-11 17:26:21 2019-12-11 17:27:37 t 1 1 194869 736 0.00 2019-12-11 17:32:19 2019-12-11 17:33:49 t 1 1 194874 673 0.00 2019-12-11 15:32:33 2019-12-11 17:42:12 t 1 1 194877 724 0.00 2019-12-11 17:07:17 2019-12-11 17:43:30 t 1 1 194878 736 0.00 2019-12-11 17:36:26 2019-12-11 17:44:20 t 1 1 194884 625 0.00 2019-12-11 17:46:40 2019-12-11 17:49:35 t 1 1 194887 615 0.00 2019-12-11 17:55:13 2019-12-11 17:59:08 t 1 1 194888 736 0.00 2019-12-11 17:59:11 2019-12-11 17:59:19 t 1 1 194891 660 0.00 2019-12-11 17:24:24 2019-12-11 18:02:41 t 1 1 194895 591 0.00 2019-12-11 18:01:46 2019-12-11 18:08:03 t 1 1 194902 625 0.00 2019-12-11 17:49:34 2019-12-11 18:16:13 t 1 1 194905 625 0.00 2019-12-11 18:16:13 2019-12-11 18:17:14 t 1 1 194906 544 0.00 2019-12-11 18:01:37 2019-12-11 18:17:43 t 1 1 194909 667 0.00 2019-12-11 18:12:19 2019-12-11 18:18:24 t 1 1 194911 675 0.00 2019-12-11 18:14:14 2019-12-11 18:19:32 t 1 1 194914 578 0.00 2019-12-11 16:17:25 2019-12-11 18:24:19 t 1 1 194916 667 0.00 2019-12-11 18:18:48 2019-12-11 18:24:57 t 1 1 194918 667 0.00 2019-12-11 18:26:45 2019-12-11 18:26:52 t 1 1 194919 667 0.00 2019-12-11 18:27:29 2019-12-11 18:27:54 t 1 1 194926 611 0.00 2019-12-11 18:18:45 2019-12-11 18:44:03 t 1 1 194931 711 0.00 2019-12-11 18:20:10 2019-12-11 18:47:57 t 1 1 194933 639 0.00 2019-12-11 18:42:37 2019-12-11 18:52:06 t 1 1 194936 679 0.00 2019-12-11 18:02:16 2019-12-11 18:55:30 t 1 1 194937 679 0.00 2019-12-11 18:56:12 2019-12-11 18:56:39 t 1 1 194942 528 0.00 2019-12-11 19:05:06 2019-12-11 19:06:08 t 1 1 194943 615 0.00 2019-12-11 19:04:25 2019-12-11 19:06:45 t 1 1 194944 736 0.00 2019-12-11 19:07:26 2019-12-11 19:07:52 t 1 1 194947 516 0.00 2019-12-11 18:57:09 2019-12-11 19:10:54 t 1 1 194948 516 0.00 2019-12-11 19:10:54 2019-12-11 19:13:24 t 1 1 194952 625 0.00 2019-12-11 18:17:14 2019-12-11 19:22:13 t 1 1 194953 516 0.00 2019-12-11 19:22:56 2019-12-11 19:23:16 t 1 1 194957 736 0.00 2019-12-11 19:24:42 2019-12-11 19:24:59 t 1 1 194960 639 0.00 2019-12-11 19:27:07 2019-12-11 19:27:14 t 1 1 194962 707 0.00 2019-12-11 18:02:18 2019-12-11 19:29:41 t 1 1 194969 675 0.00 2019-12-11 19:34:48 2019-12-11 19:35:39 t 1 1 194970 716 0.00 2019-12-11 19:09:49 2019-12-11 19:36:21 t 1 1 194972 716 0.00 2019-12-11 19:36:21 2019-12-11 19:39:00 t 1 1 194982 679 0.00 2019-12-11 19:40:27 2019-12-11 19:47:33 t 1 1 194985 736 0.00 2019-12-11 19:48:41 2019-12-11 19:51:12 t 1 1 194989 718 0.00 2019-12-11 19:48:30 2019-12-11 19:55:43 t 1 1 194993 679 0.00 2019-12-11 19:56:47 2019-12-11 19:56:54 t 1 1 194997 711 0.00 2019-12-11 19:43:04 2019-12-11 19:57:50 t 1 1 195007 724 0.00 2019-12-11 19:24:46 2019-12-11 20:01:11 t 1 1 195011 718 0.00 2019-12-11 19:55:43 2019-12-11 20:03:20 t 1 1 195014 724 0.00 2019-12-11 20:04:40 2019-12-11 20:06:35 t 1 1 195016 736 0.00 2019-12-11 20:09:19 2019-12-11 20:10:08 t 1 1 195018 726 0.00 2019-12-11 20:07:32 2019-12-11 20:11:20 t 1 1 195024 667 0.00 2019-12-11 20:13:58 2019-12-11 20:14:18 t 1 1 195026 485 0.00 2019-12-11 20:10:55 2019-12-11 20:15:45 t 1 1 195027 667 0.00 2019-12-11 20:16:28 2019-12-11 20:16:35 t 1 1 195031 667 0.00 2019-12-11 20:22:05 2019-12-11 20:22:12 t 1 1 195032 667 0.00 2019-12-11 20:22:18 2019-12-11 20:22:26 t 1 1 195033 667 0.00 2019-12-11 20:22:50 2019-12-11 20:23:10 t 1 1 195039 667 0.00 2019-12-11 20:31:40 2019-12-11 20:33:25 t 1 1 195041 685 0.00 2019-12-11 20:34:05 2019-12-11 20:34:11 t 1 1 195042 685 0.00 2019-12-11 20:34:17 2019-12-11 20:34:24 t 1 1 195046 736 0.00 2019-12-11 20:36:52 2019-12-11 20:37:20 t 1 1 195047 685 0.00 2019-12-11 20:38:23 2019-12-11 20:39:25 t 1 1 195052 637 0.00 2019-12-11 18:31:20 2019-12-11 20:41:50 t 1 1 195055 639 0.00 2019-12-11 20:40:54 2019-12-11 20:45:32 t 1 1 195056 625 0.00 2019-12-11 19:28:14 2019-12-11 20:45:51 t 1 1 195062 744 0.00 2019-12-11 20:09:23 2019-12-11 20:49:28 t 1 1 195063 625 0.00 2019-12-11 20:49:37 2019-12-11 20:50:55 t 1 1 195068 667 0.00 2019-12-11 20:55:13 2019-12-11 20:55:28 t 1 1 195071 685 0.00 2019-12-11 20:48:29 2019-12-11 20:56:49 t 1 1 195072 685 0.00 2019-12-11 20:57:11 2019-12-11 20:57:18 t 1 1 195074 685 0.00 2019-12-11 20:58:30 2019-12-11 20:58:30 f 1 1 195076 685 0.00 2019-12-11 20:59:02 2019-12-11 20:59:02 f 1 1 195078 742 0.00 2019-12-11 20:48:21 2019-12-11 20:59:24 t 1 1 195085 667 0.00 2019-12-11 21:05:07 2019-12-11 21:08:17 t 1 1 195090 667 0.00 2019-12-11 21:10:26 2019-12-11 21:11:01 t 1 1 195091 639 0.00 2019-12-11 21:12:37 2019-12-11 21:12:52 t 1 1 195093 736 0.00 2019-12-11 21:12:40 2019-12-11 21:13:12 t 1 1 195095 528 0.00 2019-12-11 21:08:03 2019-12-11 21:16:31 t 1 1 195096 667 0.00 2019-12-11 21:17:00 2019-12-11 21:17:09 t 1 1 194816 625 0.00 2019-12-11 16:15:10 2019-12-11 16:22:39 t 1 1 194818 485 0.00 2019-12-11 16:06:21 2019-12-11 16:27:29 t 1 1 194820 736 0.00 2019-12-11 16:28:32 2019-12-11 16:28:45 t 1 1 194823 622 0.00 2019-12-11 16:28:55 2019-12-11 16:30:14 t 1 1 194827 736 0.00 2019-12-11 16:36:50 2019-12-11 16:37:34 t 1 1 194829 736 0.00 2019-12-11 16:39:19 2019-12-11 16:39:52 t 1 1 194830 671 0.00 2019-12-11 16:38:30 2019-12-11 16:41:09 t 1 1 194831 562 0.00 2019-12-11 16:42:17 2019-12-11 16:42:25 t 1 1 194833 611 0.00 2019-12-11 16:20:22 2019-12-11 16:43:18 t 1 1 194836 736 0.00 2019-12-11 16:44:27 2019-12-11 16:46:14 t 1 1 194842 639 0.00 2019-12-11 16:53:11 2019-12-11 16:55:17 t 1 1 194845 660 0.00 2019-12-11 16:58:30 2019-12-11 16:59:43 t 1 1 194849 718 0.00 2019-12-11 16:43:32 2019-12-11 17:06:01 t 1 1 194851 724 0.00 2019-12-11 16:32:58 2019-12-11 17:07:17 t 1 1 194852 687 0.00 2019-12-11 17:01:16 2019-12-11 17:07:51 t 1 1 194855 591 0.00 2019-12-11 15:50:53 2019-12-11 17:09:38 t 1 1 194857 392 0.00 2019-12-11 16:29:04 2019-12-11 17:12:05 t 1 2 194859 736 0.00 2019-12-11 17:13:25 2019-12-11 17:15:38 t 1 1 194862 615 0.00 2019-12-11 16:58:45 2019-12-11 17:18:48 t 1 1 194863 562 0.00 2019-12-11 17:21:53 2019-12-11 17:21:53 f 1 1 194870 736 0.00 2019-12-11 17:35:21 2019-12-11 17:35:23 t 1 1 194873 516 0.00 2019-12-11 17:37:56 2019-12-11 17:41:36 t 1 1 194875 637 0.00 2019-12-11 16:53:50 2019-12-11 17:42:45 t 1 1 194881 637 0.00 2019-12-11 17:42:45 2019-12-11 17:46:56 t 1 1 194882 671 0.00 2019-12-11 17:46:39 2019-12-11 17:48:41 t 1 1 194890 679 0.00 2019-12-11 17:48:32 2019-12-11 18:02:16 t 1 1 194894 711 0.00 2019-12-11 17:48:24 2019-12-11 18:06:09 t 1 1 194896 538 0.00 2019-12-11 18:00:16 2019-12-11 18:08:20 t 1 1 194898 736 0.00 2019-12-11 18:12:26 2019-12-11 18:12:38 t 1 1 194899 736 0.00 2019-12-11 18:13:26 2019-12-11 18:13:46 t 1 1 194900 528 0.00 2019-12-11 18:15:39 2019-12-11 18:15:47 t 1 1 194907 656 0.00 2019-12-11 18:08:42 2019-12-11 18:18:00 t 1 1 194913 392 0.00 2019-12-11 18:15:50 2019-12-11 18:21:00 t 1 2 194915 544 0.00 2019-12-11 18:17:43 2019-12-11 18:24:37 t 1 1 194921 667 0.00 2019-12-11 18:31:49 2019-12-11 18:31:58 t 1 1 194923 667 0.00 2019-12-11 18:38:19 2019-12-11 18:39:54 t 1 1 194924 673 0.00 2019-12-11 18:19:21 2019-12-11 18:42:53 t 1 1 194925 220 0.00 2019-12-11 18:23:14 2019-12-11 18:43:25 t 1 2 194928 591 0.00 2019-12-11 18:39:19 2019-12-11 18:44:51 t 1 1 194929 392 0.00 2019-12-11 18:34:43 2019-12-11 18:45:47 t 1 2 194932 528 0.00 2019-12-11 18:49:37 2019-12-11 18:50:09 t 1 1 194935 746 0.00 2019-12-11 15:13:53 2019-12-11 18:52:43 t 1 1 194939 716 0.00 2019-12-11 18:53:23 2019-12-11 18:59:04 t 1 1 194940 716 0.00 2019-12-11 18:59:04 2019-12-11 19:00:16 t 1 1 194941 675 0.00 2019-12-11 18:52:34 2019-12-11 19:00:57 t 1 1 194946 459 0.00 2019-12-11 19:02:51 2019-12-11 19:10:27 t 1 2 194950 564 0.00 2019-12-11 18:37:40 2019-12-11 19:21:54 t 1 1 194955 736 0.00 2019-12-11 19:24:04 2019-12-11 19:24:37 t 1 1 194959 711 0.00 2019-12-11 18:47:57 2019-12-11 19:26:19 t 1 1 194965 528 0.00 2019-12-11 19:31:29 2019-12-11 19:31:48 t 1 1 194971 528 0.00 2019-12-11 19:35:54 2019-12-11 19:36:22 t 1 1 194973 744 0.00 2019-12-11 17:55:49 2019-12-11 19:39:42 t 1 1 194975 660 0.00 2019-12-11 18:31:12 2019-12-11 19:40:14 t 1 1 194976 679 0.00 2019-12-11 19:33:10 2019-12-11 19:40:27 t 1 1 194977 726 0.00 2019-12-11 19:35:37 2019-12-11 19:41:13 t 1 1 194978 392 0.00 2019-12-11 19:31:10 2019-12-11 19:42:44 t 1 2 194980 516 0.00 2019-12-11 19:43:01 2019-12-11 19:44:20 t 1 1 194984 679 0.00 2019-12-11 19:49:18 2019-12-11 19:49:43 t 1 1 194987 679 0.00 2019-12-11 19:50:31 2019-12-11 19:53:34 t 1 1 194988 679 0.00 2019-12-11 19:54:09 2019-12-11 19:54:59 t 1 1 194990 736 0.00 2019-12-11 19:53:06 2019-12-11 19:56:11 t 1 1 194991 679 0.00 2019-12-11 19:56:21 2019-12-11 19:56:35 t 1 1 194996 679 0.00 2019-12-11 19:57:21 2019-12-11 19:57:41 t 1 1 194998 667 0.00 2019-12-11 19:56:50 2019-12-11 19:58:16 t 1 1 194999 679 0.00 2019-12-11 19:58:27 2019-12-11 19:58:45 t 1 1 195002 679 0.00 2019-12-11 19:58:49 2019-12-11 19:59:40 t 1 1 195003 667 0.00 2019-12-11 19:59:28 2019-12-11 20:00:00 t 1 1 195004 667 0.00 2019-12-11 20:00:00 2019-12-11 20:00:28 t 1 1 195006 544 0.00 2019-12-11 19:59:44 2019-12-11 20:00:56 t 1 1 195009 734 0.00 2019-12-11 19:52:37 2019-12-11 20:02:05 t 1 1 195010 679 0.00 2019-12-11 20:02:44 2019-12-11 20:02:49 t 1 1 195015 744 0.00 2019-12-11 19:39:42 2019-12-11 20:09:23 t 1 1 195020 591 0.00 2019-12-11 20:09:38 2019-12-11 20:11:38 t 1 1 195022 667 0.00 2019-12-11 20:09:45 2019-12-11 20:13:07 t 1 1 195023 679 0.00 2019-12-11 20:10:43 2019-12-11 20:14:11 t 1 1 195028 667 0.00 2019-12-11 20:16:52 2019-12-11 20:17:05 t 1 1 195029 667 0.00 2019-12-11 20:19:35 2019-12-11 20:19:55 t 1 1 195034 718 0.00 2019-12-11 20:03:20 2019-12-11 20:23:19 t 1 1 195036 667 0.00 2019-12-11 20:27:08 2019-12-11 20:27:30 t 1 1 195045 685 0.00 2019-12-11 20:36:52 2019-12-11 20:37:12 t 1 1 195049 639 0.00 2019-12-11 20:38:27 2019-12-11 20:40:37 t 1 1 195051 667 0.00 2019-12-11 20:41:19 2019-12-11 20:41:39 t 1 1 195053 392 0.00 2019-12-11 20:29:36 2019-12-11 20:42:39 t 1 2 195054 611 0.00 2019-12-11 20:10:41 2019-12-11 20:45:24 t 1 1 195058 625 0.00 2019-12-11 20:45:50 2019-12-11 20:48:06 t 1 1 195059 685 0.00 2019-12-11 20:39:37 2019-12-11 20:48:29 t 1 1 195060 528 0.00 2019-12-11 20:19:01 2019-12-11 20:48:31 t 1 1 195064 551 0.00 2019-12-11 01:38:49 2019-12-11 20:51:23 t 1 1 195067 656 0.00 2019-12-11 20:45:50 2019-12-11 20:54:45 t 1 1 195070 667 0.00 2019-12-11 20:56:44 2019-12-11 20:56:47 t 1 1 195080 611 0.00 2019-12-11 20:48:43 2019-12-11 21:00:27 t 1 1 195083 667 0.00 2019-12-11 21:03:10 2019-12-11 21:04:10 t 1 1 195084 528 0.00 2019-12-11 21:03:58 2019-12-11 21:08:03 t 1 1 195086 611 0.00 2019-12-11 21:00:25 2019-12-11 21:08:20 t 1 1 195087 667 0.00 2019-12-11 21:09:24 2019-12-11 21:09:40 t 1 1 195088 639 0.00 2019-12-11 21:06:44 2019-12-11 21:10:25 t 1 1 195089 487 0.00 2019-12-11 21:10:56 2019-12-11 21:11:00 t 1 2 195098 591 0.00 2019-12-11 20:37:19 2019-12-11 21:19:49 t 1 1 195099 679 0.00 2019-12-11 20:57:40 2019-12-11 21:20:15 t 1 1 195101 679 0.00 2019-12-11 21:20:36 2019-12-11 21:20:44 t 1 1 195102 671 0.00 2019-12-11 21:16:34 2019-12-11 21:21:13 t 1 1 195104 675 0.00 2019-12-11 21:19:51 2019-12-11 21:22:56 t 1 1 195106 679 0.00 2019-12-11 21:22:54 2019-12-11 21:23:14 t 1 1 195107 679 0.00 2019-12-11 21:23:34 2019-12-11 21:23:45 t 1 1 195111 667 0.00 2019-12-11 21:19:08 2019-12-11 21:24:51 t 1 1 195112 679 0.00 2019-12-11 21:25:01 2019-12-11 21:25:16 t 1 1 195120 679 0.00 2019-12-11 21:29:15 2019-12-11 21:29:55 t 1 1 195000 660 0.00 2019-12-11 19:56:52 2019-12-11 19:59:06 t 1 1 195001 667 0.00 2019-12-11 19:58:13 2019-12-11 19:59:28 t 1 1 195005 679 0.00 2019-12-11 20:00:39 2019-12-11 20:00:40 t 1 1 195008 679 0.00 2019-12-11 20:01:32 2019-12-11 20:01:58 t 1 1 195012 220 0.00 2019-12-11 20:01:34 2019-12-11 20:05:13 t 1 2 195013 679 0.00 2019-12-11 20:03:40 2019-12-11 20:06:11 t 1 1 195017 611 0.00 2019-12-11 19:55:16 2019-12-11 20:10:41 t 1 1 195019 736 0.00 2019-12-11 20:10:58 2019-12-11 20:11:36 t 1 1 195021 671 0.00 2019-12-11 20:03:04 2019-12-11 20:12:47 t 1 1 195025 578 0.00 2019-12-11 18:24:19 2019-12-11 20:15:21 t 1 1 195030 667 0.00 2019-12-11 20:20:50 2019-12-11 20:21:26 t 1 1 195035 679 0.00 2019-12-11 20:22:39 2019-12-11 20:25:28 t 1 1 195037 685 0.00 2019-12-11 20:30:51 2019-12-11 20:32:17 t 1 1 195038 685 0.00 2019-12-11 20:32:16 2019-12-11 20:32:54 t 1 1 195040 685 0.00 2019-12-11 20:32:54 2019-12-11 20:33:58 t 1 1 195043 639 0.00 2019-12-11 20:28:02 2019-12-11 20:35:15 t 1 1 195044 724 0.00 2019-12-11 20:08:42 2019-12-11 20:35:26 t 1 1 195048 667 0.00 2019-12-11 20:37:16 2019-12-11 20:40:34 t 1 1 195050 671 0.00 2019-12-11 20:39:10 2019-12-11 20:41:22 t 1 1 195057 736 0.00 2019-12-11 20:47:40 2019-12-11 20:47:58 t 1 1 195061 611 0.00 2019-12-11 20:45:24 2019-12-11 20:48:43 t 1 1 195065 220 0.00 2019-12-11 20:06:44 2019-12-11 20:51:52 t 1 2 195066 625 0.00 2019-12-11 20:50:55 2019-12-11 20:54:23 t 1 1 195069 718 0.00 2019-12-11 20:23:19 2019-12-11 20:55:39 t 1 1 195073 685 0.00 2019-12-11 20:57:43 2019-12-11 20:57:57 t 1 1 195075 736 0.00 2019-12-11 20:58:13 2019-12-11 20:58:38 t 1 1 195077 685 0.00 2019-12-11 20:56:55 2019-12-11 20:59:08 t 1 1 195079 685 0.00 2019-12-11 20:58:03 2019-12-11 21:00:08 t 1 1 195081 667 0.00 2019-12-11 21:01:02 2019-12-11 21:01:09 t 1 1 195082 528 0.00 2019-12-11 20:48:31 2019-12-11 21:03:58 t 1 1 195092 578 0.00 2019-12-11 20:15:21 2019-12-11 21:12:59 t 1 1 195094 667 0.00 2019-12-11 21:14:22 2019-12-11 21:15:26 t 1 1 195097 551 0.00 2019-12-11 20:51:23 2019-12-11 21:17:13 t 1 1 195108 679 0.00 2019-12-11 21:23:51 2019-12-11 21:24:16 t 1 1 195110 671 0.00 2019-12-11 21:21:11 2019-12-11 21:24:50 t 1 1 195114 679 0.00 2019-12-11 21:25:59 2019-12-11 21:26:14 t 1 1 195115 679 0.00 2019-12-11 21:27:03 2019-12-11 21:27:17 t 1 1 195116 679 0.00 2019-12-11 21:27:23 2019-12-11 21:27:33 t 1 1 195119 689 0.00 2019-12-11 21:22:03 2019-12-11 21:28:28 t 1 1 195133 718 0.00 2019-12-11 21:31:40 2019-12-11 21:35:34 t 1 1 195135 689 0.00 2019-12-11 21:36:09 2019-12-11 21:36:24 t 1 1 195137 667 0.00 2019-12-11 21:36:57 2019-12-11 21:37:04 t 1 1 195143 667 0.00 2019-12-11 21:41:11 2019-12-11 21:41:13 t 1 1 195147 675 0.00 2019-12-11 21:42:46 2019-12-11 21:44:25 t 1 1 195154 689 0.00 2019-12-11 21:53:53 2019-12-11 21:54:15 t 1 1 195155 625 0.00 2019-12-11 20:54:23 2019-12-11 21:54:46 t 1 1 195160 675 0.00 2019-12-11 21:55:43 2019-12-11 22:03:53 t 1 1 195161 689 0.00 2019-12-11 21:59:33 2019-12-11 22:05:14 t 1 1 195165 718 0.00 2019-12-11 21:35:41 2019-12-11 22:07:08 t 1 1 195166 660 0.00 2019-12-11 21:49:03 2019-12-11 22:07:40 t 1 1 195172 625 0.00 2019-12-11 22:15:12 2019-12-11 22:16:45 t 1 1 195173 649 0.00 2019-12-11 21:55:00 2019-12-11 22:17:55 t 1 1 195174 485 0.00 2019-12-11 22:17:24 2019-12-11 22:18:42 t 1 1 195176 578 0.00 2019-12-11 21:59:47 2019-12-11 22:19:21 t 1 1 195177 675 0.00 2019-12-11 22:19:28 2019-12-11 22:19:28 t 1 1 195183 551 0.00 2019-12-11 21:17:13 2019-12-11 22:26:46 t 1 1 195186 578 0.00 2019-12-11 22:19:21 2019-12-11 22:30:29 t 1 1 195187 220 0.00 2019-12-11 21:56:33 2019-12-11 22:31:16 t 1 1 195192 408 0.00 2019-12-11 22:35:08 2019-12-11 22:35:08 f 1 1 195197 564 0.00 2019-12-11 19:21:54 2019-12-11 22:38:35 t 1 1 195199 675 0.00 2019-12-11 22:19:43 2019-12-11 22:40:28 t 1 1 195200 687 0.00 2019-12-11 22:37:45 2019-12-11 22:41:08 t 1 1 195202 667 0.00 2019-12-11 22:45:30 2019-12-11 22:45:31 t 1 1 195203 675 0.00 2019-12-11 22:40:28 2019-12-11 22:49:21 t 1 1 195204 716 0.00 2019-12-11 22:48:22 2019-12-11 22:49:56 t 1 1 195206 639 0.00 2019-12-11 22:43:13 2019-12-11 22:51:19 t 1 1 195208 487 0.00 2019-12-11 22:50:49 2019-12-11 22:54:25 t 1 2 195210 654 0.00 2019-12-11 22:55:51 2019-12-11 22:56:46 t 1 1 195213 574 0.00 2019-12-11 22:49:27 2019-12-11 22:59:51 t 1 1 195218 591 0.00 2019-12-11 21:19:49 2019-12-11 23:08:37 t 1 1 195220 744 0.00 2019-12-11 20:49:28 2019-12-11 23:10:20 t 1 1 195222 591 0.00 2019-12-11 23:13:30 2019-12-11 23:14:51 t 1 1 195224 544 0.00 2019-12-11 22:43:05 2019-12-11 23:15:03 t 1 1 195227 639 0.00 2019-12-11 23:17:09 2019-12-11 23:17:24 t 1 1 195231 722 0.00 2019-12-11 23:26:20 2019-12-11 23:27:49 t 1 1 195232 551 0.00 2019-12-11 22:26:46 2019-12-11 23:28:15 t 1 1 195233 667 0.00 2019-12-11 23:27:54 2019-12-11 23:30:57 t 1 1 195234 578 0.00 2019-12-11 23:15:42 2019-12-11 23:32:58 t 1 1 195236 639 0.00 2019-12-11 23:35:12 2019-12-11 23:35:18 t 1 1 195240 551 0.00 2019-12-11 23:28:15 2019-12-11 23:40:27 t 1 1 195244 639 0.00 2019-12-11 23:43:09 2019-12-11 23:43:32 t 1 1 195251 392 0.00 2019-12-11 23:49:42 2019-12-11 23:50:02 t 1 2 195253 734 0.00 2019-12-11 23:15:49 2019-12-11 23:50:49 t 1 1 195258 544 0.00 2019-12-11 23:51:59 2019-12-11 23:55:22 t 1 1 195260 673 0.00 2019-12-11 23:55:04 2019-12-11 23:56:22 t 1 1 195263 625 0.00 2019-12-11 23:44:13 2019-12-11 23:58:06 t 1 1 195265 566 0.00 2019-12-11 23:54:49 2019-12-11 23:58:57 t 1 1 195266 667 0.00 2019-12-11 23:59:18 2019-12-11 23:59:20 t 1 1 195268 687 0.00 2019-12-11 23:57:33 2019-12-12 00:00:45 t 1 1 195274 631 0.00 2019-12-12 00:08:24 2019-12-12 00:10:40 t 1 1 195279 667 0.00 2019-12-12 00:12:48 2019-12-12 00:12:49 t 1 1 195283 392 0.00 2019-12-12 00:19:41 2019-12-12 00:20:17 t 1 2 195284 687 0.00 2019-12-12 00:03:18 2019-12-12 00:24:04 t 1 1 195285 687 0.00 2019-12-12 00:25:11 2019-12-12 00:26:15 t 1 1 195288 654 0.00 2019-12-12 00:26:56 2019-12-12 00:26:58 t 1 1 195293 566 0.00 2019-12-12 00:08:07 2019-12-12 00:34:45 t 1 1 195294 736 0.00 2019-12-12 00:35:25 2019-12-12 00:36:48 t 1 1 195296 736 0.00 2019-12-12 00:39:28 2019-12-12 00:39:30 t 1 1 195302 639 0.00 2019-12-12 00:47:30 2019-12-12 00:47:37 t 1 1 195303 718 0.00 2019-12-12 00:47:37 2019-12-12 00:52:14 t 1 1 195308 639 0.00 2019-12-12 00:57:58 2019-12-12 00:58:26 t 1 1 195309 736 0.00 2019-12-12 00:45:17 2019-12-12 01:02:50 t 1 1 195316 633 0.00 2019-12-12 01:15:06 2019-12-12 01:26:14 t 1 1 195321 738 0.00 2019-12-12 01:28:10 2019-12-12 01:34:32 t 1 1 195323 633 0.00 2019-12-12 01:26:14 2019-12-12 01:35:21 t 1 1 195325 538 0.00 2019-12-11 21:13:41 2019-12-12 01:37:25 t 1 1 195329 736 0.00 2019-12-12 01:45:21 2019-12-12 01:45:27 t 1 1 195100 679 0.00 2019-12-11 21:20:21 2019-12-11 21:20:31 t 1 1 195103 679 0.00 2019-12-11 21:20:50 2019-12-11 21:22:31 t 1 1 195105 718 0.00 2019-12-11 20:55:39 2019-12-11 21:23:08 t 1 1 195109 528 0.00 2019-12-11 21:18:56 2019-12-11 21:24:26 t 1 1 195113 528 0.00 2019-12-11 21:25:10 2019-12-11 21:26:14 t 1 1 195117 667 0.00 2019-12-11 21:27:46 2019-12-11 21:28:00 t 1 1 195118 679 0.00 2019-12-11 21:28:14 2019-12-11 21:28:23 t 1 1 195121 679 0.00 2019-12-11 21:28:51 2019-12-11 21:30:08 t 1 1 195122 679 0.00 2019-12-11 21:30:15 2019-12-11 21:30:24 t 1 1 195126 667 0.00 2019-12-11 21:31:34 2019-12-11 21:31:51 t 1 1 195128 667 0.00 2019-12-11 21:30:18 2019-12-11 21:32:08 t 1 1 195130 689 0.00 2019-12-11 21:30:10 2019-12-11 21:33:49 t 1 1 195131 679 0.00 2019-12-11 21:34:23 2019-12-11 21:34:30 t 1 1 195138 679 0.00 2019-12-11 21:37:26 2019-12-11 21:37:36 t 1 1 195144 689 0.00 2019-12-11 21:37:19 2019-12-11 21:41:50 t 1 1 195149 736 0.00 2019-12-11 21:45:00 2019-12-11 21:46:08 t 1 1 195150 667 0.00 2019-12-11 21:42:52 2019-12-11 21:47:39 t 1 1 195156 689 0.00 2019-12-11 21:56:33 2019-12-11 21:57:00 t 1 1 195167 718 0.00 2019-12-11 22:07:08 2019-12-11 22:11:57 t 1 1 195169 625 0.00 2019-12-11 21:54:45 2019-12-11 22:15:13 t 1 1 195170 516 0.00 2019-12-11 22:13:10 2019-12-11 22:15:20 t 1 1 195178 675 0.00 2019-12-11 22:19:28 2019-12-11 22:19:43 t 1 1 195180 639 0.00 2019-12-11 22:22:11 2019-12-11 22:23:17 t 1 1 195181 649 0.00 2019-12-11 22:17:55 2019-12-11 22:25:09 t 1 1 195182 671 0.00 2019-12-11 22:21:01 2019-12-11 22:25:47 t 1 1 195184 639 0.00 2019-12-11 22:26:15 2019-12-11 22:27:17 t 1 1 195188 220 0.00 2019-12-11 22:25:51 2019-12-11 22:31:29 t 1 2 195189 639 0.00 2019-12-11 22:32:18 2019-12-11 22:32:28 t 1 1 195190 660 0.00 2019-12-11 22:07:40 2019-12-11 22:33:32 t 1 1 195194 481 0.00 2019-12-11 21:41:51 2019-12-11 22:37:11 t 1 1 195196 667 0.00 2019-12-11 22:38:18 2019-12-11 22:38:34 t 1 1 195198 481 0.00 2019-12-11 22:38:10 2019-12-11 22:39:13 t 1 1 195207 679 0.00 2019-12-11 22:30:37 2019-12-11 22:53:06 t 1 1 195214 667 0.00 2019-12-11 23:00:15 2019-12-11 23:01:39 t 1 1 195215 722 0.00 2019-12-11 23:05:53 2019-12-11 23:07:48 t 1 1 195217 625 0.00 2019-12-11 22:55:17 2019-12-11 23:08:26 t 1 1 195221 639 0.00 2019-12-11 23:13:15 2019-12-11 23:14:24 t 1 1 195223 667 0.00 2019-12-11 23:14:53 2019-12-11 23:15:02 t 1 1 195228 675 0.00 2019-12-11 23:17:01 2019-12-11 23:21:52 t 1 1 195229 736 0.00 2019-12-11 23:20:53 2019-12-11 23:23:30 t 1 1 195237 625 0.00 2019-12-11 23:33:25 2019-12-11 23:36:25 t 1 1 195242 639 0.00 2019-12-11 23:41:13 2019-12-11 23:42:13 t 1 1 195243 679 0.00 2019-12-11 23:18:58 2019-12-11 23:43:07 t 1 1 195246 687 0.00 2019-12-11 22:58:29 2019-12-11 23:43:52 t 1 1 195247 736 0.00 2019-12-11 23:41:59 2019-12-11 23:44:28 t 1 1 195248 673 0.00 2019-12-11 22:58:41 2019-12-11 23:45:41 t 1 1 195249 656 0.00 2019-12-11 23:46:01 2019-12-11 23:49:09 t 1 1 195255 734 0.00 2019-12-11 23:50:48 2019-12-11 23:52:17 t 1 1 195256 667 0.00 2019-12-11 23:54:18 2019-12-11 23:54:33 t 1 1 195257 667 0.00 2019-12-11 23:54:42 2019-12-11 23:54:59 t 1 1 195262 736 0.00 2019-12-11 23:47:29 2019-12-11 23:57:59 t 1 1 195264 220 0.00 2019-12-11 23:54:31 2019-12-11 23:58:47 t 1 2 195272 639 0.00 2019-12-12 00:04:34 2019-12-12 00:05:00 t 1 1 195277 667 0.00 2019-12-12 00:12:23 2019-12-12 00:12:32 t 1 1 195281 734 0.00 2019-12-11 23:52:17 2019-12-12 00:15:54 t 1 1 195286 639 0.00 2019-12-12 00:25:51 2019-12-12 00:26:23 t 1 1 195289 574 0.00 2019-12-12 00:26:58 2019-12-12 00:27:04 t 1 1 195291 718 0.00 2019-12-12 00:14:40 2019-12-12 00:32:21 t 1 1 195292 639 0.00 2019-12-12 00:32:23 2019-12-12 00:32:28 t 1 1 195299 687 0.00 2019-12-12 00:32:12 2019-12-12 00:43:59 t 1 1 195300 633 0.00 2019-12-12 00:32:01 2019-12-12 00:47:35 t 1 1 195305 639 0.00 2019-12-12 00:54:15 2019-12-12 00:54:39 t 1 1 195306 744 0.00 2019-12-11 23:10:19 2019-12-12 00:55:28 t 1 1 195310 667 0.00 2019-12-12 00:52:54 2019-12-12 01:03:13 t 1 1 195314 633 0.00 2019-12-12 01:03:21 2019-12-12 01:15:06 t 1 1 195318 639 0.00 2019-12-12 01:32:10 2019-12-12 01:32:14 t 1 1 195319 392 0.00 2019-12-12 01:32:37 2019-12-12 01:32:56 t 1 2 195322 738 0.00 2019-12-12 01:34:53 2019-12-12 01:35:11 t 1 1 195324 738 0.00 2019-12-12 01:35:19 2019-12-12 01:35:33 t 1 1 195328 639 0.00 2019-12-12 01:43:33 2019-12-12 01:45:11 t 1 1 195331 736 0.00 2019-12-12 01:49:25 2019-12-12 01:49:25 f 1 1 195333 736 0.00 2019-12-12 01:49:04 2019-12-12 01:50:04 t 1 1 195337 692 0.00 2019-12-12 01:52:02 2019-12-12 01:53:03 t 1 1 195338 485 0.00 2019-12-12 01:48:29 2019-12-12 01:55:36 t 1 1 195340 687 0.00 2019-12-12 01:11:24 2019-12-12 02:03:19 t 1 1 195341 692 0.00 2019-12-12 01:53:28 2019-12-12 02:07:37 t 1 1 195342 639 0.00 2019-12-12 02:07:55 2019-12-12 02:09:02 t 1 1 195343 738 0.00 2019-12-12 02:01:47 2019-12-12 02:12:44 t 1 1 195347 738 0.00 2019-12-12 02:15:44 2019-12-12 02:15:53 t 1 1 195350 738 0.00 2019-12-12 02:31:01 2019-12-12 02:31:02 t 1 1 195352 738 0.00 2019-12-12 02:33:09 2019-12-12 02:33:18 t 1 1 195353 738 0.00 2019-12-12 02:33:54 2019-12-12 02:33:56 t 1 1 195354 738 0.00 2019-12-12 02:35:01 2019-12-12 02:35:14 t 1 1 195358 738 0.00 2019-12-12 02:48:04 2019-12-12 02:48:06 t 1 1 195359 738 0.00 2019-12-12 02:48:27 2019-12-12 02:48:38 t 1 1 195362 738 0.00 2019-12-12 02:50:41 2019-12-12 02:50:43 t 1 1 195363 738 0.00 2019-12-12 02:51:21 2019-12-12 02:51:23 t 1 1 195367 738 0.00 2019-12-12 02:57:01 2019-12-12 02:58:13 t 1 1 195368 656 0.00 2019-12-12 00:01:08 2019-12-12 02:59:46 t 1 1 195370 514 0.00 2019-12-12 01:18:48 2019-12-12 03:03:26 t 1 1 195373 744 0.00 2019-12-12 00:55:28 2019-12-12 03:09:24 t 1 1 195382 738 0.00 2019-12-12 03:20:44 2019-12-12 03:20:57 t 1 1 195383 639 0.00 2019-12-12 03:21:26 2019-12-12 03:21:34 t 1 1 195384 738 0.00 2019-12-12 03:22:20 2019-12-12 03:22:24 t 1 1 195385 738 0.00 2019-12-12 03:23:18 2019-12-12 03:23:20 t 1 1 195388 738 0.00 2019-12-12 03:25:19 2019-12-12 03:25:23 t 1 1 195393 738 0.00 2019-12-12 03:27:37 2019-12-12 03:27:49 t 1 1 195394 738 0.00 2019-12-12 03:32:32 2019-12-12 03:32:35 t 1 1 195397 738 0.00 2019-12-12 03:42:40 2019-12-12 03:42:43 t 1 1 195399 738 0.00 2019-12-12 03:47:02 2019-12-12 03:47:13 t 1 1 195400 738 0.00 2019-12-12 03:47:46 2019-12-12 03:47:59 t 1 1 195405 639 0.00 2019-12-12 04:06:05 2019-12-12 04:06:21 t 1 1 195407 738 0.00 2019-12-12 04:08:39 2019-12-12 04:08:42 t 1 1 195409 544 0.00 2019-12-12 03:53:27 2019-12-12 04:15:23 t 1 1 195410 738 0.00 2019-12-12 04:18:34 2019-12-12 04:18:37 t 1 1 195415 564 0.00 2019-12-12 04:30:56 2019-12-12 04:40:19 t 1 1 195418 738 0.00 2019-12-12 04:45:26 2019-12-12 04:45:38 t 1 1 195123 679 0.00 2019-12-11 21:30:52 2019-12-11 21:30:59 t 1 1 195124 679 0.00 2019-12-11 21:31:19 2019-12-11 21:31:20 t 1 1 195125 718 0.00 2019-12-11 21:23:08 2019-12-11 21:31:40 t 1 1 195127 679 0.00 2019-12-11 21:32:02 2019-12-11 21:32:06 t 1 1 195129 679 0.00 2019-12-11 21:33:11 2019-12-11 21:33:26 t 1 1 195132 679 0.00 2019-12-11 21:35:22 2019-12-11 21:35:29 t 1 1 195134 679 0.00 2019-12-11 21:35:34 2019-12-11 21:35:36 t 1 1 195136 679 0.00 2019-12-11 21:36:12 2019-12-11 21:36:29 t 1 1 195139 667 0.00 2019-12-11 21:37:17 2019-12-11 21:38:17 t 1 1 195140 667 0.00 2019-12-11 21:38:47 2019-12-11 21:39:11 t 1 1 195141 667 0.00 2019-12-11 21:39:42 2019-12-11 21:39:54 t 1 1 195142 487 0.00 2019-12-11 21:11:16 2019-12-11 21:40:59 t 1 2 195145 679 0.00 2019-12-11 21:37:42 2019-12-11 21:42:13 t 1 1 195146 689 0.00 2019-12-11 21:43:37 2019-12-11 21:43:54 t 1 1 195148 736 0.00 2019-12-11 21:44:58 2019-12-11 21:44:59 t 1 1 195151 660 0.00 2019-12-11 21:35:27 2019-12-11 21:49:03 t 1 1 195152 639 0.00 2019-12-11 21:44:28 2019-12-11 21:52:02 t 1 1 195153 689 0.00 2019-12-11 21:44:45 2019-12-11 21:53:44 t 1 1 195157 578 0.00 2019-12-11 21:12:59 2019-12-11 21:59:47 t 1 1 195158 514 0.00 2019-12-11 20:40:38 2019-12-11 22:01:30 t 1 1 195159 635 0.00 2019-12-11 21:32:22 2019-12-11 22:02:46 t 1 1 195162 514 0.00 2019-12-11 22:01:26 2019-12-11 22:05:18 t 1 1 195163 639 0.00 2019-12-11 22:04:46 2019-12-11 22:05:42 t 1 1 195164 667 0.00 2019-12-11 22:01:57 2019-12-11 22:06:57 t 1 1 195168 639 0.00 2019-12-11 22:12:02 2019-12-11 22:14:08 t 1 1 195171 718 0.00 2019-12-11 22:11:56 2019-12-11 22:15:43 t 1 1 195175 689 0.00 2019-12-11 22:06:04 2019-12-11 22:19:17 t 1 1 195179 639 0.00 2019-12-11 22:15:36 2019-12-11 22:21:18 t 1 1 195185 687 0.00 2019-12-11 22:14:48 2019-12-11 22:27:30 t 1 1 195191 667 0.00 2019-12-11 22:07:20 2019-12-11 22:34:25 t 1 1 195193 689 0.00 2019-12-11 22:32:56 2019-12-11 22:35:12 t 1 1 195195 578 0.00 2019-12-11 22:30:29 2019-12-11 22:37:31 t 1 1 195201 639 0.00 2019-12-11 22:40:29 2019-12-11 22:42:22 t 1 1 195205 667 0.00 2019-12-11 22:49:33 2019-12-11 22:49:57 t 1 1 195209 578 0.00 2019-12-11 22:37:31 2019-12-11 22:56:42 t 1 1 195211 687 0.00 2019-12-11 22:55:58 2019-12-11 22:58:23 t 1 1 195212 736 0.00 2019-12-11 22:42:00 2019-12-11 22:59:15 t 1 1 195216 679 0.00 2019-12-11 22:53:06 2019-12-11 23:08:25 t 1 1 195219 639 0.00 2019-12-11 22:57:49 2019-12-11 23:08:40 t 1 1 195225 578 0.00 2019-12-11 22:56:42 2019-12-11 23:15:39 t 1 1 195226 564 0.00 2019-12-11 22:38:35 2019-12-11 23:15:49 t 1 1 195230 667 0.00 2019-12-11 23:23:59 2019-12-11 23:26:27 t 1 1 195235 675 0.00 2019-12-11 23:28:09 2019-12-11 23:34:48 t 1 1 195238 736 0.00 2019-12-11 23:25:30 2019-12-11 23:38:13 t 1 1 195239 671 0.00 2019-12-11 23:35:51 2019-12-11 23:38:42 t 1 1 195241 736 0.00 2019-12-11 23:38:32 2019-12-11 23:40:43 t 1 1 195245 625 0.00 2019-12-11 23:39:21 2019-12-11 23:43:50 t 1 1 195250 392 0.00 2019-12-11 23:48:46 2019-12-11 23:49:36 t 1 2 195252 392 0.00 2019-12-11 23:50:10 2019-12-11 23:50:22 t 1 2 195254 544 0.00 2019-12-11 23:15:03 2019-12-11 23:51:04 t 1 1 195259 687 0.00 2019-12-11 23:48:26 2019-12-11 23:55:49 t 1 1 195261 679 0.00 2019-12-11 23:43:07 2019-12-11 23:57:08 t 1 1 195267 667 0.00 2019-12-11 23:59:46 2019-12-12 00:00:29 t 1 1 195269 639 0.00 2019-12-12 00:00:45 2019-12-12 00:00:59 t 1 1 195270 656 0.00 2019-12-11 23:49:09 2019-12-12 00:01:08 t 1 1 195271 667 0.00 2019-12-12 00:04:45 2019-12-12 00:04:46 t 1 1 195273 635 0.00 2019-12-11 22:37:54 2019-12-12 00:07:48 t 1 1 195275 667 0.00 2019-12-12 00:10:13 2019-12-12 00:10:50 t 1 1 195276 639 0.00 2019-12-12 00:11:15 2019-12-12 00:11:27 t 1 1 195278 665 0.00 2019-12-12 00:11:42 2019-12-12 00:12:47 t 1 1 195280 665 0.00 2019-12-12 00:12:44 2019-12-12 00:15:10 t 1 1 195282 679 0.00 2019-12-11 23:57:08 2019-12-12 00:16:33 t 1 1 195287 654 0.00 2019-12-12 00:26:55 2019-12-12 00:26:56 t 1 1 195290 687 0.00 2019-12-12 00:29:00 2019-12-12 00:31:52 t 1 1 195295 639 0.00 2019-12-12 00:36:47 2019-12-12 00:37:01 t 1 1 195297 713 0.00 2019-12-12 00:34:27 2019-12-12 00:40:01 t 1 1 195298 707 0.00 2019-12-11 20:53:29 2019-12-12 00:41:02 t 1 1 195301 718 0.00 2019-12-12 00:32:21 2019-12-12 00:47:36 t 1 1 195304 687 0.00 2019-12-12 00:43:59 2019-12-12 00:52:14 t 1 1 195307 665 0.00 2019-12-12 00:15:51 2019-12-12 00:55:30 t 1 1 195311 633 0.00 2019-12-12 00:47:35 2019-12-12 01:03:21 t 1 1 195312 687 0.00 2019-12-12 00:52:14 2019-12-12 01:05:07 t 1 1 195313 687 0.00 2019-12-12 01:05:07 2019-12-12 01:08:19 t 1 1 195315 736 0.00 2019-12-12 01:02:50 2019-12-12 01:15:15 t 1 1 195317 736 0.00 2019-12-12 01:15:15 2019-12-12 01:28:07 t 1 1 195320 736 0.00 2019-12-12 01:28:07 2019-12-12 01:33:47 t 1 1 195326 736 0.00 2019-12-12 01:39:08 2019-12-12 01:39:32 t 1 1 195327 639 0.00 2019-12-12 01:42:50 2019-12-12 01:42:59 t 1 1 195330 738 0.00 2019-12-12 01:35:51 2019-12-12 01:45:33 t 1 1 195332 639 0.00 2019-12-12 01:49:42 2019-12-12 01:49:56 t 1 1 195339 738 0.00 2019-12-12 01:45:34 2019-12-12 02:01:47 t 1 1 195344 738 0.00 2019-12-12 02:12:50 2019-12-12 02:12:52 t 1 1 195345 738 0.00 2019-12-12 02:13:31 2019-12-12 02:13:31 t 1 1 195346 738 0.00 2019-12-12 02:14:05 2019-12-12 02:14:22 t 1 1 195348 738 0.00 2019-12-12 02:20:53 2019-12-12 02:20:55 t 1 1 195360 738 0.00 2019-12-12 02:48:44 2019-12-12 02:48:45 t 1 1 195361 738 0.00 2019-12-12 02:50:10 2019-12-12 02:50:13 t 1 1 195364 738 0.00 2019-12-12 02:51:52 2019-12-12 02:51:59 t 1 1 195377 639 0.00 2019-12-12 03:13:45 2019-12-12 03:14:12 t 1 1 195378 738 0.00 2019-12-12 03:14:23 2019-12-12 03:14:25 t 1 1 195379 738 0.00 2019-12-12 03:17:15 2019-12-12 03:17:18 t 1 1 195380 679 0.00 2019-12-12 03:16:33 2019-12-12 03:18:20 t 1 1 195381 738 0.00 2019-12-12 03:19:37 2019-12-12 03:19:41 t 1 1 195386 738 0.00 2019-12-12 03:24:10 2019-12-12 03:24:13 t 1 1 195387 738 0.00 2019-12-12 03:24:18 2019-12-12 03:24:25 t 1 1 195389 738 0.00 2019-12-12 03:25:45 2019-12-12 03:25:57 t 1 1 195390 738 0.00 2019-12-12 03:26:16 2019-12-12 03:26:29 t 1 1 195401 738 0.00 2019-12-12 03:52:52 2019-12-12 03:52:55 t 1 1 195404 738 0.00 2019-12-12 03:57:58 2019-12-12 03:58:00 t 1 1 195406 738 0.00 2019-12-12 04:08:16 2019-12-12 04:08:28 t 1 1 195412 738 0.00 2019-12-12 04:28:49 2019-12-12 04:28:49 t 1 1 195413 738 0.00 2019-12-12 04:33:50 2019-12-12 04:33:51 t 1 1 195417 738 0.00 2019-12-12 04:44:57 2019-12-12 04:45:20 t 1 1 195419 564 0.00 2019-12-12 04:44:21 2019-12-12 04:48:43 t 1 1 195420 738 0.00 2019-12-12 04:49:03 2019-12-12 04:49:04 t 1 1 195423 738 0.00 2019-12-12 04:54:51 2019-12-12 04:54:53 t 1 1 195424 738 0.00 2019-12-12 04:55:00 2019-12-12 04:55:12 t 1 1 195334 736 0.00 2019-12-12 01:48:48 2019-12-12 01:50:11 t 1 1 195335 633 0.00 2019-12-12 01:35:21 2019-12-12 01:51:05 t 1 1 195336 692 0.00 2019-12-12 01:28:52 2019-12-12 01:52:02 t 1 1 195349 738 0.00 2019-12-12 02:25:57 2019-12-12 02:25:59 t 1 1 195351 738 0.00 2019-12-12 02:32:52 2019-12-12 02:33:02 t 1 1 195355 738 0.00 2019-12-12 02:39:13 2019-12-12 02:39:14 t 1 1 195356 738 0.00 2019-12-12 02:42:09 2019-12-12 02:42:12 t 1 1 195357 738 0.00 2019-12-12 02:43:16 2019-12-12 02:43:19 t 1 1 195365 639 0.00 2019-12-12 02:52:01 2019-12-12 02:52:11 t 1 1 195366 738 0.00 2019-12-12 02:52:22 2019-12-12 02:52:36 t 1 1 195369 738 0.00 2019-12-12 03:03:07 2019-12-12 03:03:09 t 1 1 195371 738 0.00 2019-12-12 03:07:14 2019-12-12 03:07:42 t 1 1 195372 738 0.00 2019-12-12 03:09:17 2019-12-12 03:09:19 t 1 1 195374 738 0.00 2019-12-12 03:10:27 2019-12-12 03:10:35 t 1 1 195375 738 0.00 2019-12-12 03:13:23 2019-12-12 03:13:25 t 1 1 195376 738 0.00 2019-12-12 03:13:59 2019-12-12 03:14:10 t 1 1 195391 738 0.00 2019-12-12 03:26:45 2019-12-12 03:26:57 t 1 1 195392 738 0.00 2019-12-12 03:27:26 2019-12-12 03:27:31 t 1 1 195395 738 0.00 2019-12-12 03:34:30 2019-12-12 03:34:42 t 1 1 195396 738 0.00 2019-12-12 03:37:35 2019-12-12 03:37:38 t 1 1 195398 544 0.00 2019-12-12 03:31:06 2019-12-12 03:43:03 t 1 1 195402 544 0.00 2019-12-12 03:43:03 2019-12-12 03:53:27 t 1 1 195403 639 0.00 2019-12-12 03:55:23 2019-12-12 03:55:30 t 1 1 195408 738 0.00 2019-12-12 04:13:08 2019-12-12 04:13:31 t 1 1 195411 738 0.00 2019-12-12 04:23:41 2019-12-12 04:23:44 t 1 1 195414 738 0.00 2019-12-12 04:38:55 2019-12-12 04:39:55 t 1 1 195416 564 0.00 2019-12-12 04:40:19 2019-12-12 04:44:21 t 1 1 195421 544 0.00 2019-12-12 04:15:23 2019-12-12 04:50:38 t 1 1 195422 564 0.00 2019-12-12 04:48:43 2019-12-12 04:53:09 t 1 1 195425 738 0.00 2019-12-12 04:55:39 2019-12-12 04:55:42 t 1 1 195426 564 0.00 2019-12-12 04:53:09 2019-12-12 04:58:04 t 1 1 195427 564 0.00 2019-12-12 04:58:04 2019-12-12 04:58:15 t 1 1 195428 738 0.00 2019-12-12 05:01:15 2019-12-12 05:02:23 t 1 1 195429 738 0.00 2019-12-12 05:03:10 2019-12-12 05:03:46 t 1 1 195430 738 0.00 2019-12-12 05:04:37 2019-12-12 05:04:54 t 1 1 195431 738 0.00 2019-12-12 05:06:27 2019-12-12 05:06:29 t 1 1 195432 738 0.00 2019-12-12 05:07:57 2019-12-12 05:08:09 t 1 1 195433 738 0.00 2019-12-12 05:12:14 2019-12-12 05:12:15 t 1 1 195434 738 0.00 2019-12-12 05:13:16 2019-12-12 05:13:19 t 1 1 195435 738 0.00 2019-12-12 05:13:28 2019-12-12 05:13:31 t 1 1 195436 738 0.00 2019-12-12 05:13:45 2019-12-12 05:13:51 t 1 1 195437 675 0.00 2019-12-12 05:06:09 2019-12-12 05:15:01 t 1 1 195438 637 0.00 2019-12-11 23:10:21 2019-12-12 05:17:13 t 1 1 195439 738 0.00 2019-12-12 05:18:45 2019-12-12 05:18:48 t 1 1 195440 675 0.00 2019-12-12 05:17:50 2019-12-12 05:20:59 t 1 1 195441 738 0.00 2019-12-12 05:22:57 2019-12-12 05:22:59 t 1 1 195442 738 0.00 2019-12-12 05:24:40 2019-12-12 05:24:41 t 1 1 195443 738 0.00 2019-12-12 05:23:56 2019-12-12 05:25:15 t 1 1 195444 738 0.00 2019-12-12 05:25:50 2019-12-12 05:25:53 t 1 1 195445 675 0.00 2019-12-12 05:21:18 2019-12-12 05:25:58 t 1 1 195446 738 0.00 2019-12-12 05:26:03 2019-12-12 05:26:14 t 1 1 195447 738 0.00 2019-12-12 05:29:06 2019-12-12 05:29:19 t 1 1 195448 738 0.00 2019-12-12 05:31:34 2019-12-12 05:31:35 t 1 1 195449 738 0.00 2019-12-12 05:33:43 2019-12-12 05:33:46 t 1 1 195450 675 0.00 2019-12-12 05:32:02 2019-12-12 05:34:32 t 1 1 195451 738 0.00 2019-12-12 05:34:34 2019-12-12 05:34:48 t 1 1 195452 738 0.00 2019-12-12 05:42:44 2019-12-12 05:42:46 t 1 1 195453 516 0.00 2019-12-12 05:41:44 2019-12-12 05:43:14 t 1 1 195454 738 0.00 2019-12-12 05:44:28 2019-12-12 05:44:31 t 1 1 195455 516 0.00 2019-12-12 05:43:27 2019-12-12 05:44:57 t 1 1 195456 738 0.00 2019-12-12 05:45:36 2019-12-12 05:45:50 t 1 1 195457 639 0.00 2019-12-12 05:45:01 2019-12-12 05:46:06 t 1 1 195458 516 0.00 2019-12-12 05:45:05 2019-12-12 05:46:39 t 1 1 195459 516 0.00 2019-12-12 05:47:19 2019-12-12 05:47:44 t 1 1 195460 738 0.00 2019-12-12 05:46:59 2019-12-12 05:48:13 t 1 1 195461 738 0.00 2019-12-12 05:49:57 2019-12-12 05:49:59 t 1 1 195462 516 0.00 2019-12-12 05:50:33 2019-12-12 05:50:43 t 1 1 195463 639 0.00 2019-12-12 05:49:37 2019-12-12 05:50:50 t 1 1 195464 656 0.00 2019-12-12 02:59:46 2019-12-12 05:53:04 t 1 1 195465 738 0.00 2019-12-12 05:55:01 2019-12-12 05:55:10 t 1 1 195466 516 0.00 2019-12-12 05:59:06 2019-12-12 05:59:15 t 1 1 195467 675 0.00 2019-12-12 05:55:01 2019-12-12 06:01:51 t 1 1 195468 738 0.00 2019-12-12 06:05:01 2019-12-12 06:05:06 t 1 1 195469 722 0.00 2019-12-12 05:59:55 2019-12-12 06:05:50 t 1 1 195470 722 0.00 2019-12-12 06:05:56 2019-12-12 06:06:03 t 1 1 195471 516 0.00 2019-12-12 06:06:13 2019-12-12 06:07:20 t 1 1 195472 722 0.00 2019-12-12 06:07:40 2019-12-12 06:07:44 t 1 1 195473 722 0.00 2019-12-12 06:07:57 2019-12-12 06:08:00 t 1 1 195474 738 0.00 2019-12-12 06:10:05 2019-12-12 06:10:09 t 1 1 195475 722 0.00 2019-12-12 06:10:19 2019-12-12 06:10:34 t 1 1 195476 738 0.00 2019-12-12 06:10:39 2019-12-12 06:10:41 t 1 1 195477 738 0.00 2019-12-12 06:11:44 2019-12-12 06:11:45 t 1 1 195478 722 0.00 2019-12-12 06:10:42 2019-12-12 06:13:15 t 1 1 195479 722 0.00 2019-12-12 06:13:42 2019-12-12 06:13:44 t 1 1 195480 722 0.00 2019-12-12 06:13:49 2019-12-12 06:13:55 t 1 1 195481 722 0.00 2019-12-12 06:14:50 2019-12-12 06:14:56 t 1 1 195482 738 0.00 2019-12-12 06:15:09 2019-12-12 06:15:11 t 1 1 195483 738 0.00 2019-12-12 06:16:02 2019-12-12 06:16:12 t 1 1 195484 722 0.00 2019-12-12 06:17:39 2019-12-12 06:17:44 t 1 1 195485 738 0.00 2019-12-12 06:17:59 2019-12-12 06:18:16 t 1 1 195486 514 0.00 2019-12-12 04:38:51 2019-12-12 06:18:42 t 1 1 195487 722 0.00 2019-12-12 06:18:46 2019-12-12 06:18:47 t 1 1 195488 722 0.00 2019-12-12 06:18:56 2019-12-12 06:21:04 t 1 1 195489 498 0.00 2019-12-12 05:34:51 2019-12-12 06:21:18 t 1 2 195490 738 0.00 2019-12-12 06:22:18 2019-12-12 06:22:20 t 1 1 195491 738 0.00 2019-12-12 06:22:53 2019-12-12 06:23:17 t 1 1 195492 738 0.00 2019-12-12 06:24:22 2019-12-12 06:24:27 t 1 1 195493 637 0.00 2019-12-12 05:17:13 2019-12-12 06:31:18 t 1 1 195494 738 0.00 2019-12-12 06:31:25 2019-12-12 06:31:28 t 1 1 195495 738 0.00 2019-12-12 06:36:06 2019-12-12 06:36:20 t 1 1 195496 722 0.00 2019-12-12 06:35:38 2019-12-12 06:36:44 t 1 1 195497 738 0.00 2019-12-12 06:40:08 2019-12-12 06:40:11 t 1 1 195498 459 0.00 2019-12-12 06:36:36 2019-12-12 06:42:41 t 1 2 195499 738 0.00 2019-12-12 06:49:49 2019-12-12 06:50:12 t 1 1 195500 738 0.00 2019-12-12 06:55:15 2019-12-12 06:55:17 t 1 1 195501 738 0.00 2019-12-12 07:00:23 2019-12-12 07:00:34 t 1 1 195502 738 0.00 2019-12-12 07:05:29 2019-12-12 07:05:31 t 1 1 195503 514 0.00 2019-12-12 06:18:41 2019-12-12 07:06:27 t 1 1 195504 660 0.00 2019-12-12 06:45:55 2019-12-12 07:10:15 t 1 1 195505 742 0.00 2019-12-12 07:06:56 2019-12-12 07:11:10 t 1 1 195517 738 0.00 2019-12-12 07:40:58 2019-12-12 07:40:59 t 1 1 195524 738 0.00 2019-12-12 07:50:49 2019-12-12 07:53:23 t 1 1 195529 566 0.00 2019-12-12 08:00:42 2019-12-12 08:04:03 t 1 1 195530 738 0.00 2019-12-12 08:04:29 2019-12-12 08:04:32 t 1 1 195534 625 0.00 2019-12-12 07:57:50 2019-12-12 08:10:42 t 1 1 195535 637 0.00 2019-12-12 07:32:20 2019-12-12 08:12:24 t 1 1 195536 738 0.00 2019-12-12 08:08:39 2019-12-12 08:13:24 t 1 1 195538 736 0.00 2019-12-12 08:17:10 2019-12-12 08:18:28 t 1 1 195539 738 0.00 2019-12-12 08:18:57 2019-12-12 08:19:00 t 1 1 195540 639 0.00 2019-12-12 08:17:44 2019-12-12 08:19:42 t 1 1 195543 615 0.00 2019-12-12 08:09:04 2019-12-12 08:22:33 t 1 1 195546 639 0.00 2019-12-12 08:24:26 2019-12-12 08:24:45 t 1 1 195547 562 0.00 2019-12-12 08:25:15 2019-12-12 08:25:15 f 1 1 195551 562 0.00 2019-12-12 08:25:01 2019-12-12 08:26:16 t 1 1 195553 738 0.00 2019-12-12 08:28:11 2019-12-12 08:28:14 t 1 1 195554 738 0.00 2019-12-12 08:28:19 2019-12-12 08:28:20 t 1 1 195558 707 0.00 2019-12-12 07:06:27 2019-12-12 08:32:55 t 1 1 195560 637 0.00 2019-12-12 08:17:00 2019-12-12 08:33:58 t 1 1 195572 738 0.00 2019-12-12 08:37:04 2019-12-12 08:41:07 t 1 1 195573 514 0.00 2019-12-12 08:40:49 2019-12-12 08:41:38 t 1 1 195575 574 0.00 2019-12-12 08:40:20 2019-12-12 08:41:45 t 1 1 195579 738 0.00 2019-12-12 08:44:58 2019-12-12 08:45:00 t 1 1 195583 738 0.00 2019-12-12 08:46:39 2019-12-12 08:47:01 t 1 1 195584 738 0.00 2019-12-12 08:47:07 2019-12-12 08:47:19 t 1 1 195588 566 0.00 2019-12-12 08:09:21 2019-12-12 08:49:21 t 1 1 195589 615 0.00 2019-12-12 08:39:37 2019-12-12 08:51:06 t 1 1 195593 591 0.00 2019-12-12 08:56:57 2019-12-12 08:58:38 t 1 1 195596 675 0.00 2019-12-12 08:58:34 2019-12-12 09:00:49 t 1 1 195599 679 0.00 2019-12-12 08:57:11 2019-12-12 09:02:05 t 1 1 195601 738 0.00 2019-12-12 09:02:27 2019-12-12 09:02:28 t 1 1 195602 738 0.00 2019-12-12 09:02:55 2019-12-12 09:03:30 t 1 1 195604 673 0.00 2019-12-12 08:35:54 2019-12-12 09:05:44 t 1 1 195611 738 0.00 2019-12-12 09:04:59 2019-12-12 09:17:56 t 1 1 195614 738 0.00 2019-12-12 09:18:48 2019-12-12 09:19:04 t 1 1 195615 738 0.00 2019-12-12 09:19:23 2019-12-12 09:19:23 t 1 1 195618 738 0.00 2019-12-12 09:20:17 2019-12-12 09:21:00 t 1 1 195621 738 0.00 2019-12-12 09:22:30 2019-12-12 09:22:30 f 1 1 195622 738 0.00 2019-12-12 09:22:44 2019-12-12 09:22:44 f 1 1 195624 738 0.00 2019-12-12 09:22:57 2019-12-12 09:22:57 f 1 1 195628 667 0.00 2019-12-12 09:24:26 2019-12-12 09:26:16 t 1 1 195642 748 0.00 2019-12-12 09:40:23 2019-12-12 09:40:54 t 1 1 195643 748 0.00 2019-12-12 09:41:37 2019-12-12 09:41:53 t 1 1 195650 675 0.00 2019-12-12 09:36:27 2019-12-12 09:53:23 t 1 1 195656 748 0.00 2019-12-12 10:01:24 2019-12-12 10:02:27 t 1 1 195657 679 0.00 2019-12-12 10:02:03 2019-12-12 10:03:29 t 1 1 195660 748 0.00 2019-12-12 10:02:53 2019-12-12 10:05:37 t 1 1 195661 671 0.00 2019-12-12 10:01:34 2019-12-12 10:05:48 t 1 1 195663 709 0.00 2019-12-12 10:05:18 2019-12-12 10:06:22 t 1 1 195666 675 0.00 2019-12-12 09:54:51 2019-12-12 10:07:20 t 1 1 195667 748 0.00 2019-12-12 10:07:07 2019-12-12 10:08:05 t 1 1 195670 498 0.00 2019-12-12 08:55:42 2019-12-12 10:10:09 t 1 2 195672 748 0.00 2019-12-12 10:10:54 2019-12-12 10:11:08 t 1 1 195674 220 0.00 2019-12-12 10:07:43 2019-12-12 10:11:41 t 1 1 195676 675 0.00 2019-12-12 10:07:20 2019-12-12 10:13:21 t 1 1 195678 707 0.00 2019-12-12 09:48:34 2019-12-12 10:18:38 t 1 1 195679 736 0.00 2019-12-12 10:19:16 2019-12-12 10:19:25 t 1 1 195680 516 0.00 2019-12-12 10:16:04 2019-12-12 10:20:41 t 1 1 195682 736 0.00 2019-12-12 10:20:34 2019-12-12 10:20:59 t 1 1 195686 748 0.00 2019-12-12 10:20:15 2019-12-12 10:22:17 t 1 1 195692 667 0.00 2019-12-12 10:23:44 2019-12-12 10:24:47 t 1 2 195695 514 0.00 2019-12-12 10:12:31 2019-12-12 10:27:22 t 1 1 195697 660 0.00 2019-12-12 10:20:51 2019-12-12 10:28:27 t 1 1 195699 748 0.00 2019-12-12 10:28:50 2019-12-12 10:28:51 t 1 1 195702 748 0.00 2019-12-12 10:30:40 2019-12-12 10:31:10 t 1 1 195707 748 0.00 2019-12-12 10:35:55 2019-12-12 10:35:55 f 1 1 195712 220 0.00 2019-12-12 10:41:15 2019-12-12 10:42:07 t 1 1 195713 516 0.00 2019-12-12 10:43:39 2019-12-12 10:43:41 t 1 1 195715 736 0.00 2019-12-12 10:43:30 2019-12-12 10:44:28 t 1 1 195716 591 0.00 2019-12-12 09:20:55 2019-12-12 10:48:04 t 1 1 195717 516 0.00 2019-12-12 10:48:11 2019-12-12 10:48:43 t 1 1 195719 679 0.00 2019-12-12 10:49:29 2019-12-12 10:50:41 t 1 1 195720 707 0.00 2019-12-12 10:50:16 2019-12-12 10:51:24 t 1 1 195728 611 0.00 2019-12-12 11:00:38 2019-12-12 11:01:50 t 1 1 195730 516 0.00 2019-12-12 11:01:23 2019-12-12 11:02:27 t 1 1 195735 639 0.00 2019-12-12 10:58:29 2019-12-12 11:07:05 t 1 1 195736 667 0.00 2019-12-12 11:06:21 2019-12-12 11:08:17 t 1 1 195745 611 0.00 2019-12-12 11:11:13 2019-12-12 11:15:21 t 1 1 195749 562 0.00 2019-12-12 11:19:04 2019-12-12 11:19:11 t 1 1 195750 615 0.00 2019-12-12 11:14:37 2019-12-12 11:21:17 t 1 1 195754 639 0.00 2019-12-12 11:09:48 2019-12-12 11:23:43 t 1 1 195755 639 0.00 2019-12-12 11:24:13 2019-12-12 11:24:22 t 1 1 195756 220 0.00 2019-12-12 11:22:47 2019-12-12 11:24:36 t 1 1 195758 220 0.00 2019-12-12 11:24:35 2019-12-12 11:25:30 t 1 1 195759 538 0.00 2019-12-12 11:25:00 2019-12-12 11:26:45 t 1 1 195761 220 0.00 2019-12-12 11:25:29 2019-12-12 11:27:18 t 1 1 195763 538 0.00 2019-12-12 11:26:44 2019-12-12 11:27:47 t 1 1 195769 639 0.00 2019-12-12 11:36:05 2019-12-12 11:37:17 t 1 1 195773 220 0.00 2019-12-12 11:26:32 2019-12-12 11:42:22 t 1 2 195780 667 0.00 2019-12-12 11:41:40 2019-12-12 11:46:34 t 1 1 195781 516 0.00 2019-12-12 11:47:41 2019-12-12 11:47:45 t 1 1 195782 679 0.00 2019-12-12 11:43:46 2019-12-12 11:50:13 t 1 1 195783 562 0.00 2019-12-12 11:51:18 2019-12-12 11:51:31 t 1 1 195784 615 0.00 2019-12-12 11:44:46 2019-12-12 11:53:55 t 1 1 195793 562 0.00 2019-12-12 12:01:51 2019-12-12 12:02:05 t 1 1 195798 514 0.00 2019-12-12 11:19:18 2019-12-12 12:07:16 t 1 1 195800 615 0.00 2019-12-12 12:03:11 2019-12-12 12:07:34 t 1 1 195802 615 0.00 2019-12-12 12:12:46 2019-12-12 12:15:13 t 1 1 195804 611 0.00 2019-12-12 12:05:23 2019-12-12 12:18:17 t 1 1 195806 660 0.00 2019-12-12 10:57:38 2019-12-12 12:18:50 t 1 1 195810 562 0.00 2019-12-12 12:22:20 2019-12-12 12:23:23 t 1 1 195815 490 0.00 2019-12-12 12:19:55 2019-12-12 12:29:41 t 1 1 195824 562 0.00 2019-12-12 12:34:59 2019-12-12 12:42:48 t 1 1 195829 671 0.00 2019-12-12 12:45:58 2019-12-12 12:48:52 t 1 1 195830 562 0.00 2019-12-12 12:49:21 2019-12-12 12:50:19 t 1 1 195506 738 0.00 2019-12-12 07:12:52 2019-12-12 07:12:53 t 1 1 195510 734 0.00 2019-12-12 07:17:07 2019-12-12 07:18:50 t 1 1 195511 738 0.00 2019-12-12 07:21:57 2019-12-12 07:22:15 t 1 1 195514 637 0.00 2019-12-12 07:17:17 2019-12-12 07:32:20 t 1 1 195521 738 0.00 2019-12-12 07:45:54 2019-12-12 07:45:55 t 1 1 195525 738 0.00 2019-12-12 07:55:57 2019-12-12 07:56:58 t 1 1 195527 516 0.00 2019-12-12 07:58:33 2019-12-12 08:03:21 t 1 1 195542 639 0.00 2019-12-12 08:21:03 2019-12-12 08:21:45 t 1 1 195549 562 0.00 2019-12-12 08:26:02 2019-12-12 08:26:02 f 1 1 195559 611 0.00 2019-12-12 08:19:48 2019-12-12 08:32:59 t 1 1 195561 562 0.00 2019-12-12 08:26:36 2019-12-12 08:34:01 t 1 1 195563 738 0.00 2019-12-12 08:35:02 2019-12-12 08:35:03 t 1 1 195565 738 0.00 2019-12-12 08:35:51 2019-12-12 08:35:52 t 1 1 195568 738 0.00 2019-12-12 08:36:11 2019-12-12 08:36:17 t 1 1 195571 667 0.00 2019-12-12 08:29:56 2019-12-12 08:39:46 t 1 1 195574 220 0.00 2019-12-12 08:26:29 2019-12-12 08:41:43 t 1 2 195578 738 0.00 2019-12-12 08:41:45 2019-12-12 08:44:23 t 1 1 195582 738 0.00 2019-12-12 08:46:31 2019-12-12 08:46:31 t 1 1 195586 736 0.00 2019-12-12 08:45:36 2019-12-12 08:48:01 t 1 1 195587 562 0.00 2019-12-12 08:43:18 2019-12-12 08:48:58 t 1 1 195592 738 0.00 2019-12-12 08:51:50 2019-12-12 08:57:12 t 1 1 195598 562 0.00 2019-12-12 08:59:28 2019-12-12 09:01:48 t 1 1 195603 562 0.00 2019-12-12 09:02:11 2019-12-12 09:03:32 t 1 1 195605 667 0.00 2019-12-12 09:00:46 2019-12-12 09:06:43 t 1 1 195606 591 0.00 2019-12-12 09:06:33 2019-12-12 09:09:42 t 1 1 195609 514 0.00 2019-12-12 08:58:57 2019-12-12 09:11:57 t 1 1 195610 748 0.00 2019-12-12 09:14:32 2019-12-12 09:17:41 t 1 1 195612 667 0.00 2019-12-12 09:06:43 2019-12-12 09:17:59 t 1 1 195617 738 0.00 2019-12-12 09:19:58 2019-12-12 09:20:10 t 1 1 195620 738 0.00 2019-12-12 09:21:35 2019-12-12 09:21:36 t 1 1 195623 748 0.00 2019-12-12 09:22:36 2019-12-12 09:22:46 t 1 1 195625 738 0.00 2019-12-12 09:22:13 2019-12-12 09:23:16 t 1 1 195626 738 0.00 2019-12-12 09:22:00 2019-12-12 09:24:16 t 1 1 195632 637 0.00 2019-12-12 09:02:11 2019-12-12 09:31:54 t 1 1 195635 748 0.00 2019-12-12 09:32:21 2019-12-12 09:33:42 t 1 1 195636 736 0.00 2019-12-12 09:31:12 2019-12-12 09:34:19 t 1 1 195637 748 0.00 2019-12-12 09:34:16 2019-12-12 09:36:53 t 1 1 195641 673 0.00 2019-12-12 09:05:44 2019-12-12 09:39:17 t 1 1 195644 736 0.00 2019-12-12 09:35:50 2019-12-12 09:42:15 t 1 1 195645 637 0.00 2019-12-12 09:39:17 2019-12-12 09:45:45 t 1 1 195646 724 0.00 2019-12-12 08:27:40 2019-12-12 09:46:51 t 1 1 195647 748 0.00 2019-12-12 09:44:53 2019-12-12 09:47:23 t 1 1 195648 748 0.00 2019-12-12 09:48:30 2019-12-12 09:48:33 t 1 1 195649 748 0.00 2019-12-12 09:51:45 2019-12-12 09:52:20 t 1 1 195651 724 0.00 2019-12-12 09:46:51 2019-12-12 09:53:40 t 1 1 195652 748 0.00 2019-12-12 09:54:25 2019-12-12 09:54:41 t 1 1 195654 736 0.00 2019-12-12 09:43:58 2019-12-12 09:58:22 t 1 1 195655 562 0.00 2019-12-12 09:59:01 2019-12-12 09:59:52 t 1 1 195658 673 0.00 2019-12-12 09:49:53 2019-12-12 10:03:50 t 1 1 195662 748 0.00 2019-12-12 10:05:43 2019-12-12 10:05:58 t 1 1 195664 562 0.00 2019-12-12 10:05:23 2019-12-12 10:06:57 t 1 1 195671 748 0.00 2019-12-12 10:10:16 2019-12-12 10:10:27 t 1 1 195675 748 0.00 2019-12-12 10:12:08 2019-12-12 10:13:16 t 1 1 195677 748 0.00 2019-12-12 10:17:18 2019-12-12 10:17:31 t 1 1 195681 748 0.00 2019-12-12 10:20:34 2019-12-12 10:20:46 t 1 1 195688 611 0.00 2019-12-12 10:13:47 2019-12-12 10:23:38 t 1 1 195693 611 0.00 2019-12-12 10:23:38 2019-12-12 10:24:48 t 1 1 195694 671 0.00 2019-12-12 10:22:47 2019-12-12 10:26:23 t 1 1 195698 748 0.00 2019-12-12 10:28:22 2019-12-12 10:28:44 t 1 1 195701 660 0.00 2019-12-12 10:28:27 2019-12-12 10:30:31 t 1 1 195704 748 0.00 2019-12-12 10:32:43 2019-12-12 10:32:44 t 1 1 195705 748 0.00 2019-12-12 10:33:34 2019-12-12 10:33:35 t 1 1 195708 748 0.00 2019-12-12 10:35:05 2019-12-12 10:36:06 t 1 1 195710 687 0.00 2019-12-12 10:29:24 2019-12-12 10:36:32 t 1 1 195711 709 0.00 2019-12-12 10:14:05 2019-12-12 10:41:00 t 1 1 195714 709 0.00 2019-12-12 10:42:03 2019-12-12 10:44:13 t 1 1 195721 667 0.00 2019-12-12 10:50:48 2019-12-12 10:51:52 t 1 2 195723 637 0.00 2019-12-12 09:46:12 2019-12-12 10:54:42 t 1 1 195725 615 0.00 2019-12-12 10:49:23 2019-12-12 10:57:35 t 1 1 195726 514 0.00 2019-12-12 10:27:35 2019-12-12 10:58:07 t 1 1 195727 639 0.00 2019-12-12 10:42:46 2019-12-12 10:58:29 t 1 1 195729 562 0.00 2019-12-12 11:01:38 2019-12-12 11:01:52 t 1 1 195733 667 0.00 2019-12-12 11:05:52 2019-12-12 11:06:02 t 1 1 195734 538 0.00 2019-12-12 11:05:24 2019-12-12 11:06:22 t 1 1 195738 679 0.00 2019-12-12 10:57:46 2019-12-12 11:09:06 t 1 1 195739 611 0.00 2019-12-12 11:01:49 2019-12-12 11:11:13 t 1 1 195742 736 0.00 2019-12-12 11:11:45 2019-12-12 11:12:04 t 1 1 195744 622 0.00 2019-12-12 10:50:05 2019-12-12 11:14:49 t 1 1 195746 736 0.00 2019-12-12 11:15:00 2019-12-12 11:15:40 t 1 1 195747 611 0.00 2019-12-12 11:15:21 2019-12-12 11:17:28 t 1 1 195748 514 0.00 2019-12-12 11:12:02 2019-12-12 11:18:50 t 1 1 195751 220 0.00 2019-12-12 11:12:33 2019-12-12 11:21:18 t 1 1 195753 220 0.00 2019-12-12 11:21:18 2019-12-12 11:22:47 t 1 1 195760 639 0.00 2019-12-12 11:25:41 2019-12-12 11:27:00 t 1 1 195764 718 0.00 2019-12-12 11:24:34 2019-12-12 11:29:36 t 1 1 195768 742 0.00 2019-12-12 11:18:26 2019-12-12 11:35:15 t 1 1 195772 562 0.00 2019-12-12 11:40:34 2019-12-12 11:40:44 t 1 1 195775 679 0.00 2019-12-12 11:40:13 2019-12-12 11:43:46 t 1 1 195777 718 0.00 2019-12-12 11:29:36 2019-12-12 11:44:47 t 1 1 195779 516 0.00 2019-12-12 11:45:55 2019-12-12 11:46:15 t 1 1 195786 679 0.00 2019-12-12 11:51:13 2019-12-12 11:56:27 t 1 1 195787 639 0.00 2019-12-12 11:56:23 2019-12-12 11:57:29 t 1 1 195789 538 0.00 2019-12-12 11:56:44 2019-12-12 11:58:44 t 1 1 195791 667 0.00 2019-12-12 11:55:19 2019-12-12 12:00:08 t 1 1 195794 611 0.00 2019-12-12 11:44:03 2019-12-12 12:02:06 t 1 1 195795 615 0.00 2019-12-12 12:01:31 2019-12-12 12:03:11 t 1 1 195796 639 0.00 2019-12-12 12:03:25 2019-12-12 12:03:34 t 1 1 195799 639 0.00 2019-12-12 12:06:01 2019-12-12 12:07:17 t 1 1 195801 689 0.00 2019-12-12 12:10:00 2019-12-12 12:11:16 t 1 1 195807 667 0.00 2019-12-12 12:19:05 2019-12-12 12:19:14 t 1 1 195808 639 0.00 2019-12-12 12:20:19 2019-12-12 12:20:29 t 1 1 195809 562 0.00 2019-12-12 12:10:28 2019-12-12 12:21:41 t 1 1 195811 637 0.00 2019-12-12 12:12:36 2019-12-12 12:23:38 t 1 1 195814 637 0.00 2019-12-12 12:25:44 2019-12-12 12:27:10 t 1 1 195817 372 0.00 2019-12-12 12:31:46 2019-12-12 12:31:46 f 1 2 195818 562 0.00 2019-12-12 12:27:28 2019-12-12 12:34:59 t 1 1 195820 220 0.00 2019-12-12 11:44:20 2019-12-12 12:41:26 t 1 1 195507 738 0.00 2019-12-12 07:15:05 2019-12-12 07:15:06 t 1 1 195508 637 0.00 2019-12-12 06:31:18 2019-12-12 07:15:52 t 1 1 195509 738 0.00 2019-12-12 07:16:37 2019-12-12 07:16:59 t 1 1 195512 738 0.00 2019-12-12 07:30:40 2019-12-12 07:30:45 t 1 1 195513 738 0.00 2019-12-12 07:31:28 2019-12-12 07:31:29 t 1 1 195515 738 0.00 2019-12-12 07:35:46 2019-12-12 07:35:48 t 1 1 195516 311 0.00 2019-12-12 07:36:55 2019-12-12 07:40:19 t 1 2 195518 738 0.00 2019-12-12 07:43:31 2019-12-12 07:43:32 t 1 1 195519 738 0.00 2019-12-12 07:44:34 2019-12-12 07:44:41 t 1 1 195520 744 0.00 2019-12-12 03:12:56 2019-12-12 07:45:52 t 1 1 195522 722 0.00 2019-12-12 07:46:25 2019-12-12 07:46:35 t 1 1 195523 738 0.00 2019-12-12 07:49:18 2019-12-12 07:49:23 t 1 1 195526 738 0.00 2019-12-12 08:00:57 2019-12-12 08:01:01 t 1 1 195528 689 0.00 2019-12-12 07:55:46 2019-12-12 08:03:50 t 1 1 195531 738 0.00 2019-12-12 08:06:13 2019-12-12 08:06:25 t 1 1 195532 615 0.00 2019-12-12 08:03:01 2019-12-12 08:09:04 t 1 1 195533 679 0.00 2019-12-12 08:07:40 2019-12-12 08:09:21 t 1 1 195537 738 0.00 2019-12-12 08:13:32 2019-12-12 08:13:55 t 1 1 195541 611 0.00 2019-12-12 08:07:16 2019-12-12 08:19:49 t 1 1 195544 738 0.00 2019-12-12 08:24:01 2019-12-12 08:24:03 t 1 1 195545 631 0.00 2019-12-12 08:22:42 2019-12-12 08:24:30 t 1 1 195548 562 0.00 2019-12-12 08:25:51 2019-12-12 08:25:51 f 1 1 195550 639 0.00 2019-12-12 08:25:41 2019-12-12 08:26:15 t 1 1 195552 738 0.00 2019-12-12 08:27:06 2019-12-12 08:27:08 t 1 1 195555 738 0.00 2019-12-12 08:28:26 2019-12-12 08:28:27 t 1 1 195556 738 0.00 2019-12-12 08:30:53 2019-12-12 08:30:54 t 1 1 195557 459 0.00 2019-12-12 08:19:30 2019-12-12 08:32:33 t 1 2 195562 738 0.00 2019-12-12 08:34:34 2019-12-12 08:34:36 t 1 1 195564 736 0.00 2019-12-12 08:18:52 2019-12-12 08:35:47 t 1 1 195566 673 0.00 2019-12-12 08:12:43 2019-12-12 08:35:54 t 1 1 195567 738 0.00 2019-12-12 08:35:59 2019-12-12 08:36:04 t 1 1 195569 516 0.00 2019-12-12 08:35:25 2019-12-12 08:37:50 t 1 1 195570 615 0.00 2019-12-12 08:22:33 2019-12-12 08:39:37 t 1 1 195576 562 0.00 2019-12-12 08:34:01 2019-12-12 08:43:18 t 1 1 195577 591 0.00 2019-12-12 07:48:34 2019-12-12 08:44:18 t 1 1 195580 738 0.00 2019-12-12 08:45:06 2019-12-12 08:46:06 t 1 1 195581 738 0.00 2019-12-12 08:46:23 2019-12-12 08:46:25 t 1 1 195585 738 0.00 2019-12-12 08:47:25 2019-12-12 08:47:26 t 1 1 195590 738 0.00 2019-12-12 08:48:23 2019-12-12 08:51:28 t 1 1 195591 639 0.00 2019-12-12 08:54:15 2019-12-12 08:54:32 t 1 1 195594 514 0.00 2019-12-12 08:41:38 2019-12-12 08:58:57 t 1 1 195595 667 0.00 2019-12-12 08:47:51 2019-12-12 08:59:44 t 1 1 195597 738 0.00 2019-12-12 08:57:29 2019-12-12 09:01:22 t 1 1 195600 738 0.00 2019-12-12 09:01:39 2019-12-12 09:02:27 t 1 1 195607 562 0.00 2019-12-12 09:09:40 2019-12-12 09:09:53 t 1 1 195608 679 0.00 2019-12-12 09:02:05 2019-12-12 09:11:11 t 1 1 195613 748 0.00 2019-12-12 09:17:46 2019-12-12 09:18:09 t 1 1 195616 738 0.00 2019-12-12 09:19:48 2019-12-12 09:19:48 t 1 1 195619 748 0.00 2019-12-12 09:18:36 2019-12-12 09:21:35 t 1 1 195627 736 0.00 2019-12-12 09:25:07 2019-12-12 09:25:19 t 1 1 195629 748 0.00 2019-12-12 09:23:23 2019-12-12 09:26:58 t 1 1 195630 748 0.00 2019-12-12 09:27:44 2019-12-12 09:28:06 t 1 1 195631 748 0.00 2019-12-12 09:28:14 2019-12-12 09:28:56 t 1 1 195633 748 0.00 2019-12-12 09:30:24 2019-12-12 09:32:17 t 1 1 195634 675 0.00 2019-12-12 09:31:19 2019-12-12 09:32:58 t 1 1 195638 639 0.00 2019-12-12 08:55:59 2019-12-12 09:37:05 t 1 1 195639 748 0.00 2019-12-12 09:37:38 2019-12-12 09:38:12 t 1 1 195640 748 0.00 2019-12-12 09:38:22 2019-12-12 09:38:30 t 1 1 195653 748 0.00 2019-12-12 09:57:04 2019-12-12 09:57:32 t 1 1 195659 709 0.00 2019-12-12 09:44:29 2019-12-12 10:04:19 t 1 1 195665 671 0.00 2019-12-12 10:05:47 2019-12-12 10:06:59 t 1 1 195668 736 0.00 2019-12-12 10:07:12 2019-12-12 10:08:30 t 1 1 195669 748 0.00 2019-12-12 10:09:38 2019-12-12 10:09:47 t 1 1 195673 551 0.00 2019-12-12 09:26:01 2019-12-12 10:11:41 t 1 1 195683 516 0.00 2019-12-12 10:21:03 2019-12-12 10:21:08 t 1 1 195684 748 0.00 2019-12-12 10:21:15 2019-12-12 10:21:20 t 1 1 195685 736 0.00 2019-12-12 10:21:40 2019-12-12 10:21:48 t 1 1 195687 748 0.00 2019-12-12 10:21:34 2019-12-12 10:22:35 t 1 1 195689 736 0.00 2019-12-12 10:23:12 2019-12-12 10:23:40 t 1 1 195690 748 0.00 2019-12-12 10:23:54 2019-12-12 10:24:03 t 1 1 195691 748 0.00 2019-12-12 10:24:18 2019-12-12 10:24:35 t 1 1 195696 736 0.00 2019-12-12 10:26:07 2019-12-12 10:27:53 t 1 1 195700 707 0.00 2019-12-12 10:24:57 2019-12-12 10:30:22 t 1 1 195703 748 0.00 2019-12-12 10:32:24 2019-12-12 10:32:25 t 1 1 195706 615 0.00 2019-12-12 10:32:02 2019-12-12 10:35:16 t 1 1 195709 748 0.00 2019-12-12 10:34:39 2019-12-12 10:36:17 t 1 1 195718 615 0.00 2019-12-12 10:41:37 2019-12-12 10:49:23 t 1 1 195722 220 0.00 2019-12-12 10:45:16 2019-12-12 10:52:10 t 1 1 195724 660 0.00 2019-12-12 10:30:30 2019-12-12 10:56:48 t 1 1 195731 538 0.00 2019-12-12 10:58:59 2019-12-12 11:04:00 t 1 1 195732 538 0.00 2019-12-12 11:04:31 2019-12-12 11:05:24 t 1 1 195737 514 0.00 2019-12-12 10:58:07 2019-12-12 11:09:04 t 1 1 195740 679 0.00 2019-12-12 11:09:06 2019-12-12 11:11:16 t 1 1 195741 220 0.00 2019-12-12 11:07:44 2019-12-12 11:11:53 t 1 1 195743 671 0.00 2019-12-12 11:12:19 2019-12-12 11:14:41 t 1 1 195752 744 0.00 2019-12-12 07:46:07 2019-12-12 11:22:37 t 1 1 195757 538 0.00 2019-12-12 11:06:27 2019-12-12 11:25:00 t 1 1 195762 675 0.00 2019-12-12 11:26:03 2019-12-12 11:27:45 t 1 1 195765 716 0.00 2019-12-12 11:29:48 2019-12-12 11:30:54 t 1 1 195766 622 0.00 2019-12-12 11:14:48 2019-12-12 11:32:42 t 1 1 195767 639 0.00 2019-12-12 11:33:11 2019-12-12 11:33:25 t 1 1 195770 611 0.00 2019-12-12 11:19:20 2019-12-12 11:37:59 t 1 1 195771 220 0.00 2019-12-12 11:27:18 2019-12-12 11:40:28 t 1 1 195774 639 0.00 2019-12-12 11:42:33 2019-12-12 11:42:47 t 1 1 195776 516 0.00 2019-12-12 11:44:12 2019-12-12 11:44:30 t 1 1 195778 639 0.00 2019-12-12 11:44:49 2019-12-12 11:45:21 t 1 1 195785 481 0.00 2019-12-12 11:41:27 2019-12-12 11:55:05 t 1 1 195788 615 0.00 2019-12-12 11:56:20 2019-12-12 11:58:08 t 1 1 195790 481 0.00 2019-12-12 11:56:27 2019-12-12 11:59:11 t 1 1 195792 392 0.00 2019-12-12 10:04:57 2019-12-12 12:00:31 t 1 2 195797 667 0.00 2019-12-12 12:00:08 2019-12-12 12:06:50 t 1 1 195803 591 0.00 2019-12-12 11:43:53 2019-12-12 12:16:51 t 1 1 195805 675 0.00 2019-12-12 12:15:35 2019-12-12 12:18:20 t 1 1 195812 481 0.00 2019-12-12 12:14:14 2019-12-12 12:25:32 t 1 1 195813 611 0.00 2019-12-12 12:18:17 2019-12-12 12:26:17 t 1 1 195816 671 0.00 2019-12-12 12:22:50 2019-12-12 12:29:50 t 1 1 195819 671 0.00 2019-12-12 12:29:50 2019-12-12 12:37:06 t 1 1 195821 591 0.00 2019-12-12 12:17:54 2019-12-12 12:41:42 t 1 1 195823 671 0.00 2019-12-12 12:37:06 2019-12-12 12:42:41 t 1 1 195828 667 0.00 2019-12-12 12:21:30 2019-12-12 12:47:44 t 1 1 195832 667 0.00 2019-12-12 12:47:44 2019-12-12 12:52:56 t 1 1 195834 667 0.00 2019-12-12 12:54:25 2019-12-12 12:54:26 t 1 1 196842 738 0.00 2019-12-13 04:00:56 2019-12-13 04:01:29 t 1 1 196843 738 0.00 2019-12-13 04:01:40 2019-12-13 04:02:12 t 1 1 196845 692 0.00 2019-12-13 04:00:13 2019-12-13 04:02:28 t 1 1 196846 692 0.00 2019-12-13 04:02:41 2019-12-13 04:02:43 t 1 1 196847 562 0.00 2019-12-13 04:04:13 2019-12-13 04:04:23 t 1 1 196856 692 0.00 2019-12-13 04:09:52 2019-12-13 04:09:53 t 1 1 196863 738 0.00 2019-12-13 04:10:27 2019-12-13 04:11:03 t 1 1 196866 738 0.00 2019-12-13 04:11:16 2019-12-13 04:11:49 t 1 1 196869 738 0.00 2019-12-13 04:12:56 2019-12-13 04:12:56 t 1 1 196870 692 0.00 2019-12-13 04:14:55 2019-12-13 04:14:59 t 1 1 196874 692 0.00 2019-12-13 04:16:18 2019-12-13 04:17:18 t 1 1 196878 738 0.00 2019-12-13 04:21:26 2019-12-13 04:21:26 t 1 1 196880 738 0.00 2019-12-13 04:22:38 2019-12-13 04:22:45 t 1 1 196885 692 0.00 2019-12-13 04:25:15 2019-12-13 04:25:37 t 1 1 196887 562 0.00 2019-12-13 04:25:35 2019-12-13 04:25:55 t 1 1 196891 738 0.00 2019-12-13 04:26:53 2019-12-13 04:27:27 t 1 1 196894 738 0.00 2019-12-13 04:28:44 2019-12-13 04:29:16 t 1 1 196900 692 0.00 2019-12-13 04:31:54 2019-12-13 04:31:56 t 1 1 196905 738 0.00 2019-12-13 04:33:59 2019-12-13 04:34:32 t 1 1 196907 692 0.00 2019-12-13 04:35:36 2019-12-13 04:35:58 t 1 1 196911 562 0.00 2019-12-13 04:36:26 2019-12-13 04:36:39 t 1 1 196915 738 0.00 2019-12-13 04:38:00 2019-12-13 04:38:31 t 1 1 196916 738 0.00 2019-12-13 04:38:57 2019-12-13 04:39:33 t 1 1 196918 738 0.00 2019-12-13 04:39:59 2019-12-13 04:40:32 t 1 1 196927 738 0.00 2019-12-13 04:44:30 2019-12-13 04:45:01 t 1 1 196928 738 0.00 2019-12-13 04:45:21 2019-12-13 04:45:53 t 1 1 196929 692 0.00 2019-12-13 04:46:08 2019-12-13 04:46:10 t 1 1 196933 738 0.00 2019-12-13 04:46:54 2019-12-13 04:46:55 t 1 1 196938 692 0.00 2019-12-13 04:48:11 2019-12-13 04:48:12 t 1 1 196940 692 0.00 2019-12-13 04:46:18 2019-12-13 04:48:46 t 1 1 196942 738 0.00 2019-12-13 04:50:02 2019-12-13 04:50:29 t 1 1 196944 738 0.00 2019-12-13 04:51:19 2019-12-13 04:51:20 t 1 1 196946 611 0.00 2019-12-13 04:48:08 2019-12-13 04:54:43 t 1 1 196951 738 0.00 2019-12-13 04:56:04 2019-12-13 04:56:10 t 1 1 196957 562 0.00 2019-12-13 04:57:57 2019-12-13 04:58:17 t 1 1 196960 738 0.00 2019-12-13 04:58:19 2019-12-13 04:58:52 t 1 1 196967 692 0.00 2019-12-13 04:59:55 2019-12-13 04:59:56 t 1 1 196968 738 0.00 2019-12-13 04:59:58 2019-12-13 05:00:34 t 1 1 196969 692 0.00 2019-12-13 05:00:04 2019-12-13 05:01:04 t 1 1 196972 692 0.00 2019-12-13 05:02:25 2019-12-13 05:02:30 t 1 1 196979 692 0.00 2019-12-13 05:07:05 2019-12-13 05:07:23 t 1 1 196986 738 0.00 2019-12-13 05:11:08 2019-12-13 05:11:10 t 1 1 196988 692 0.00 2019-12-13 05:12:21 2019-12-13 05:12:23 t 1 1 196989 692 0.00 2019-12-13 05:12:48 2019-12-13 05:12:49 t 1 1 196992 692 0.00 2019-12-13 05:17:42 2019-12-13 05:17:43 t 1 1 196994 738 0.00 2019-12-13 05:11:31 2019-12-13 05:19:53 t 1 1 196995 692 0.00 2019-12-13 05:22:19 2019-12-13 05:22:43 t 1 1 197002 738 0.00 2019-12-13 05:27:40 2019-12-13 05:27:42 t 1 1 197005 738 0.00 2019-12-13 05:28:18 2019-12-13 05:28:25 t 1 1 197006 738 0.00 2019-12-13 05:28:37 2019-12-13 05:28:39 t 1 1 197008 738 0.00 2019-12-13 05:28:44 2019-12-13 05:28:50 t 1 1 197012 562 0.00 2019-12-13 05:30:15 2019-12-13 05:30:33 t 1 1 197016 544 0.00 2019-12-13 05:27:42 2019-12-13 05:37:46 t 1 2 197019 692 0.00 2019-12-13 05:38:31 2019-12-13 05:38:37 t 1 1 197020 692 0.00 2019-12-13 05:38:59 2019-12-13 05:39:00 t 1 1 197024 581 0.00 2019-12-13 05:43:00 2019-12-13 05:48:00 t 1 1 197025 692 0.00 2019-12-13 05:48:04 2019-12-13 05:48:29 t 1 1 197026 692 0.00 2019-12-13 05:48:54 2019-12-13 05:48:55 t 1 1 197027 562 0.00 2019-12-13 05:51:48 2019-12-13 05:52:19 t 1 1 197028 692 0.00 2019-12-13 05:53:29 2019-12-13 05:53:31 t 1 1 197029 692 0.00 2019-12-13 05:53:38 2019-12-13 05:53:39 t 1 1 197035 692 0.00 2019-12-13 06:08:59 2019-12-13 06:09:01 t 1 1 197043 562 0.00 2019-12-13 06:24:28 2019-12-13 06:24:42 t 1 1 197046 485 0.00 2019-12-13 06:01:35 2019-12-13 06:29:27 t 1 1 197049 562 0.00 2019-12-13 06:35:21 2019-12-13 06:35:29 t 1 1 197051 220 0.00 2019-12-13 06:37:51 2019-12-13 06:38:18 t 1 1 197052 562 0.00 2019-12-13 06:40:55 2019-12-13 06:41:36 t 1 1 197053 639 0.00 2019-12-13 06:41:55 2019-12-13 06:44:10 t 1 1 197055 692 0.00 2019-12-13 06:45:12 2019-12-13 06:46:12 t 1 1 197056 692 0.00 2019-12-13 06:50:24 2019-12-13 06:51:26 t 1 1 197059 692 0.00 2019-12-13 06:55:19 2019-12-13 06:55:24 t 1 1 197063 639 0.00 2019-12-13 06:57:26 2019-12-13 07:01:01 t 1 1 197066 562 0.00 2019-12-13 07:02:41 2019-12-13 07:03:08 t 1 1 197068 692 0.00 2019-12-13 07:05:48 2019-12-13 07:06:48 t 1 1 197069 485 0.00 2019-12-13 07:03:23 2019-12-13 07:08:24 t 1 1 197070 692 0.00 2019-12-13 07:10:52 2019-12-13 07:11:15 t 1 1 197074 692 0.00 2019-12-13 07:16:18 2019-12-13 07:16:43 t 1 1 197077 639 0.00 2019-12-13 07:14:50 2019-12-13 07:18:00 t 1 1 197086 692 0.00 2019-12-13 07:31:46 2019-12-13 07:33:48 t 1 1 197094 692 0.00 2019-12-13 07:52:47 2019-12-13 07:53:33 t 1 1 197099 692 0.00 2019-12-13 07:55:50 2019-12-13 07:55:51 t 1 1 197101 742 0.00 2019-12-13 07:45:04 2019-12-13 07:57:55 t 1 1 197102 692 0.00 2019-12-13 07:58:12 2019-12-13 07:58:14 t 1 1 197107 562 0.00 2019-12-13 08:07:19 2019-12-13 08:07:43 t 1 1 197110 562 0.00 2019-12-13 08:11:33 2019-12-13 08:12:54 t 1 1 197112 637 0.00 2019-12-13 08:05:33 2019-12-13 08:13:59 t 1 1 197114 673 0.00 2019-12-13 08:01:47 2019-12-13 08:17:18 t 1 1 197115 637 0.00 2019-12-13 08:14:24 2019-12-13 08:19:04 t 1 1 197116 692 0.00 2019-12-13 08:19:20 2019-12-13 08:19:21 t 1 1 197118 692 0.00 2019-12-13 08:24:15 2019-12-13 08:24:16 t 1 1 197120 637 0.00 2019-12-13 08:24:15 2019-12-13 08:26:27 t 1 1 197122 562 0.00 2019-12-13 08:19:35 2019-12-13 08:29:19 t 1 1 197124 707 0.00 2019-12-13 07:34:23 2019-12-13 08:29:49 t 1 1 197125 562 0.00 2019-12-13 08:30:26 2019-12-13 08:30:37 t 1 1 197126 692 0.00 2019-12-13 08:29:49 2019-12-13 08:31:48 t 1 1 197129 692 0.00 2019-12-13 08:34:47 2019-12-13 08:35:11 t 1 1 197130 692 0.00 2019-12-13 08:35:24 2019-12-13 08:36:25 t 1 1 197132 689 0.00 2019-12-13 08:33:57 2019-12-13 08:37:35 t 1 1 197133 689 0.00 2019-12-13 08:38:41 2019-12-13 08:38:48 t 1 1 197134 498 0.00 2019-12-13 08:13:26 2019-12-13 08:39:14 t 1 2 197135 637 0.00 2019-12-13 08:27:49 2019-12-13 08:39:55 t 1 1 197136 692 0.00 2019-12-13 08:40:08 2019-12-13 08:40:32 t 1 1 195822 724 0.00 2019-12-12 12:19:00 2019-12-12 12:42:23 t 1 1 195825 611 0.00 2019-12-12 12:35:07 2019-12-12 12:43:43 t 1 1 195826 481 0.00 2019-12-12 12:25:32 2019-12-12 12:46:53 t 1 1 195827 675 0.00 2019-12-12 12:32:44 2019-12-12 12:47:39 t 1 1 196844 738 0.00 2019-12-13 04:02:17 2019-12-13 04:02:18 t 1 1 196848 692 0.00 2019-12-13 04:05:37 2019-12-13 04:06:01 t 1 1 196851 738 0.00 2019-12-13 04:06:16 2019-12-13 04:06:33 t 1 1 196852 738 0.00 2019-12-13 04:06:54 2019-12-13 04:07:31 t 1 1 196853 738 0.00 2019-12-13 04:07:44 2019-12-13 04:08:17 t 1 1 196854 738 0.00 2019-12-13 04:08:45 2019-12-13 04:09:17 t 1 1 196857 692 0.00 2019-12-13 04:10:00 2019-12-13 04:10:01 t 1 1 196859 738 0.00 2019-12-13 04:09:42 2019-12-13 04:10:16 t 1 1 196862 692 0.00 2019-12-13 04:10:39 2019-12-13 04:10:57 t 1 1 196864 687 0.00 2019-12-13 03:43:35 2019-12-13 04:11:17 t 1 1 196865 687 0.00 2019-12-13 04:11:39 2019-12-13 04:11:45 t 1 1 196872 738 0.00 2019-12-13 04:16:24 2019-12-13 04:16:25 t 1 1 196873 687 0.00 2019-12-13 04:16:59 2019-12-13 04:17:04 t 1 1 196879 692 0.00 2019-12-13 04:21:32 2019-12-13 04:21:34 t 1 1 196881 738 0.00 2019-12-13 04:22:58 2019-12-13 04:23:32 t 1 1 196882 738 0.00 2019-12-13 04:23:43 2019-12-13 04:24:16 t 1 1 196884 692 0.00 2019-12-13 04:24:57 2019-12-13 04:25:07 t 1 1 196886 738 0.00 2019-12-13 04:25:15 2019-12-13 04:25:47 t 1 1 196888 692 0.00 2019-12-13 04:26:00 2019-12-13 04:26:00 t 1 1 196889 738 0.00 2019-12-13 04:26:07 2019-12-13 04:26:40 t 1 1 196890 692 0.00 2019-12-13 04:26:55 2019-12-13 04:26:56 t 1 1 196892 738 0.00 2019-12-13 04:27:34 2019-12-13 04:27:35 t 1 1 196893 738 0.00 2019-12-13 04:27:55 2019-12-13 04:28:25 t 1 1 196897 611 0.00 2019-12-13 04:28:50 2019-12-13 04:30:31 t 1 1 196901 692 0.00 2019-12-13 04:32:04 2019-12-13 04:32:04 t 1 1 196906 738 0.00 2019-12-13 04:34:53 2019-12-13 04:35:24 t 1 1 196908 692 0.00 2019-12-13 04:36:04 2019-12-13 04:36:08 t 1 1 196910 738 0.00 2019-12-13 04:35:44 2019-12-13 04:36:17 t 1 1 196913 738 0.00 2019-12-13 04:36:29 2019-12-13 04:36:54 t 1 1 196914 738 0.00 2019-12-13 04:37:15 2019-12-13 04:37:47 t 1 1 196920 738 0.00 2019-12-13 04:40:52 2019-12-13 04:41:24 t 1 1 196921 738 0.00 2019-12-13 04:41:50 2019-12-13 04:42:26 t 1 1 196922 738 0.00 2019-12-13 04:42:39 2019-12-13 04:43:13 t 1 1 196924 738 0.00 2019-12-13 04:43:40 2019-12-13 04:44:12 t 1 1 196926 692 0.00 2019-12-13 04:44:27 2019-12-13 04:44:28 t 1 1 196930 738 0.00 2019-12-13 04:45:59 2019-12-13 04:46:16 t 1 1 196931 692 0.00 2019-12-13 04:46:35 2019-12-13 04:46:36 t 1 1 196934 738 0.00 2019-12-13 04:47:16 2019-12-13 04:47:18 t 1 1 196937 611 0.00 2019-12-13 04:38:11 2019-12-13 04:48:06 t 1 1 196939 738 0.00 2019-12-13 04:48:09 2019-12-13 04:48:41 t 1 1 196945 692 0.00 2019-12-13 04:51:11 2019-12-13 04:52:28 t 1 1 196948 738 0.00 2019-12-13 04:54:41 2019-12-13 04:55:09 t 1 1 196953 738 0.00 2019-12-13 04:56:31 2019-12-13 04:57:03 t 1 1 196958 692 0.00 2019-12-13 04:58:15 2019-12-13 04:58:23 t 1 1 196959 692 0.00 2019-12-13 04:58:48 2019-12-13 04:58:49 t 1 1 196961 692 0.00 2019-12-13 04:58:57 2019-12-13 04:58:58 t 1 1 196962 692 0.00 2019-12-13 04:59:06 2019-12-13 04:59:12 t 1 1 196964 538 0.00 2019-12-13 04:38:22 2019-12-13 04:59:26 t 1 1 196971 738 0.00 2019-12-13 05:01:53 2019-12-13 05:02:28 t 1 1 196973 738 0.00 2019-12-13 05:02:33 2019-12-13 05:02:34 t 1 1 196980 692 0.00 2019-12-13 05:07:22 2019-12-13 05:08:23 t 1 1 196981 562 0.00 2019-12-13 05:08:43 2019-12-13 05:09:01 t 1 1 196983 738 0.00 2019-12-13 05:09:32 2019-12-13 05:10:05 t 1 1 196991 692 0.00 2019-12-13 05:17:24 2019-12-13 05:17:42 t 1 1 196993 562 0.00 2019-12-13 05:19:29 2019-12-13 05:19:46 t 1 1 196996 692 0.00 2019-12-13 05:22:48 2019-12-13 05:22:49 t 1 1 196997 738 0.00 2019-12-13 05:19:53 2019-12-13 05:26:31 t 1 1 196998 738 0.00 2019-12-13 05:26:51 2019-12-13 05:26:58 t 1 1 196999 738 0.00 2019-12-13 05:27:17 2019-12-13 05:27:23 t 1 1 197001 544 0.00 2019-12-13 05:26:28 2019-12-13 05:27:35 t 1 2 197003 692 0.00 2019-12-13 05:27:46 2019-12-13 05:27:47 t 1 1 197007 738 0.00 2019-12-13 05:27:11 2019-12-13 05:28:47 t 1 1 197009 738 0.00 2019-12-13 05:29:11 2019-12-13 05:29:18 t 1 1 197011 738 0.00 2019-12-13 05:30:16 2019-12-13 05:30:16 f 1 1 197013 738 0.00 2019-12-13 05:29:31 2019-12-13 05:30:47 t 1 1 197017 692 0.00 2019-12-13 05:38:01 2019-12-13 05:38:03 t 1 1 197021 562 0.00 2019-12-13 05:41:00 2019-12-13 05:41:17 t 1 1 197022 581 0.00 2019-12-13 05:37:22 2019-12-13 05:43:00 t 1 1 197023 692 0.00 2019-12-13 05:43:02 2019-12-13 05:43:03 t 1 1 197030 581 0.00 2019-12-13 05:48:00 2019-12-13 05:56:54 t 1 1 197031 692 0.00 2019-12-13 05:58:32 2019-12-13 05:58:34 t 1 1 197032 562 0.00 2019-12-13 06:02:59 2019-12-13 06:03:10 t 1 1 197033 692 0.00 2019-12-13 06:03:35 2019-12-13 06:03:59 t 1 1 197037 692 0.00 2019-12-13 06:14:02 2019-12-13 06:14:25 t 1 1 197039 220 0.00 2019-12-13 06:13:05 2019-12-13 06:14:42 t 1 1 197041 692 0.00 2019-12-13 06:19:30 2019-12-13 06:19:49 t 1 1 197044 692 0.00 2019-12-13 06:24:52 2019-12-13 06:24:56 t 1 1 197048 485 0.00 2019-12-13 06:30:52 2019-12-13 06:32:12 t 1 1 197050 692 0.00 2019-12-13 06:35:04 2019-12-13 06:36:04 t 1 1 197054 485 0.00 2019-12-13 06:42:44 2019-12-13 06:46:09 t 1 1 197057 692 0.00 2019-12-13 06:50:17 2019-12-13 06:51:47 t 1 1 197060 692 0.00 2019-12-13 06:55:30 2019-12-13 06:55:37 t 1 1 197061 485 0.00 2019-12-13 06:53:35 2019-12-13 06:59:58 t 1 1 197062 692 0.00 2019-12-13 07:00:27 2019-12-13 07:00:45 t 1 1 197064 692 0.00 2019-12-13 07:01:02 2019-12-13 07:01:03 t 1 1 197065 692 0.00 2019-12-13 07:01:11 2019-12-13 07:01:12 t 1 1 197067 726 0.00 2019-12-13 07:01:07 2019-12-13 07:05:35 t 1 1 197073 562 0.00 2019-12-13 07:13:37 2019-12-13 07:13:56 t 1 1 197075 692 0.00 2019-12-13 07:16:56 2019-12-13 07:16:57 t 1 1 197078 707 0.00 2019-12-13 07:08:23 2019-12-13 07:19:24 t 1 1 197079 611 0.00 2019-12-13 06:52:35 2019-12-13 07:20:05 t 1 1 197083 562 0.00 2019-12-13 07:24:23 2019-12-13 07:24:38 t 1 1 197084 692 0.00 2019-12-13 07:26:41 2019-12-13 07:26:43 t 1 1 197087 562 0.00 2019-12-13 07:34:59 2019-12-13 07:35:26 t 1 1 197090 692 0.00 2019-12-13 07:42:00 2019-12-13 07:43:16 t 1 1 197092 311 0.00 2019-12-13 07:45:02 2019-12-13 07:46:22 t 1 2 197093 692 0.00 2019-12-13 07:47:23 2019-12-13 07:48:40 t 1 1 197095 692 0.00 2019-12-13 07:53:56 2019-12-13 07:53:56 t 1 1 197096 692 0.00 2019-12-13 07:53:48 2019-12-13 07:54:48 t 1 1 197098 692 0.00 2019-12-13 07:55:32 2019-12-13 07:55:50 t 1 1 197104 692 0.00 2019-12-13 08:03:17 2019-12-13 08:04:35 t 1 1 197105 637 0.00 2019-12-13 07:53:39 2019-12-13 08:05:27 t 1 1 197108 694 0.00 2019-12-12 20:32:38 2019-12-13 08:07:54 t 1 1 195831 734 0.00 2019-12-12 12:47:52 2019-12-12 12:50:32 t 1 1 195833 562 0.00 2019-12-12 12:52:48 2019-12-12 12:52:57 t 1 1 195835 667 0.00 2019-12-12 12:55:47 2019-12-12 12:55:48 t 1 1 195868 660 0.00 2019-12-12 13:08:55 2019-12-12 13:09:02 t 1 1 195869 611 0.00 2019-12-12 13:09:12 2019-12-12 13:09:51 t 1 1 195870 724 0.00 2019-12-12 13:09:02 2019-12-12 13:10:20 t 1 1 195871 639 0.00 2019-12-12 13:09:51 2019-12-12 13:10:28 t 1 1 195872 562 0.00 2019-12-12 13:10:51 2019-12-12 13:11:05 t 1 1 195873 679 0.00 2019-12-12 13:10:06 2019-12-12 13:11:16 t 1 1 195874 679 0.00 2019-12-12 13:11:51 2019-12-12 13:12:59 t 1 1 195875 481 0.00 2019-12-12 13:14:40 2019-12-12 13:14:49 t 1 1 195876 220 0.00 2019-12-12 13:14:50 2019-12-12 13:15:02 t 1 1 195877 667 0.00 2019-12-12 13:15:17 2019-12-12 13:15:43 t 1 1 195878 564 0.00 2019-12-12 13:15:44 2019-12-12 13:15:44 t 1 1 195879 611 0.00 2019-12-12 13:15:45 2019-12-12 13:15:57 t 1 1 195880 220 0.00 2019-12-12 13:15:33 2019-12-12 13:15:58 t 1 1 195881 639 0.00 2019-12-12 13:15:56 2019-12-12 13:16:14 t 1 1 195882 220 0.00 2019-12-12 13:15:02 2019-12-12 13:18:06 t 1 1 195883 564 0.00 2019-12-12 13:17:07 2019-12-12 13:21:04 t 1 1 195884 732 0.00 2019-12-12 13:17:28 2019-12-12 13:21:42 t 1 1 195885 611 0.00 2019-12-12 13:15:45 2019-12-12 13:22:26 t 1 1 195886 639 0.00 2019-12-12 13:21:43 2019-12-12 13:23:03 t 1 1 195887 639 0.00 2019-12-12 13:23:56 2019-12-12 13:24:12 t 1 1 195888 671 0.00 2019-12-12 13:22:50 2019-12-12 13:24:46 t 1 1 195889 639 0.00 2019-12-12 13:25:16 2019-12-12 13:25:56 t 1 1 195890 639 0.00 2019-12-12 13:34:22 2019-12-12 13:34:35 t 1 1 195891 611 0.00 2019-12-12 13:34:42 2019-12-12 13:34:42 f 1 1 195892 611 0.00 2019-12-12 13:23:38 2019-12-12 13:35:28 t 1 1 195893 691 0.00 2019-12-12 13:34:59 2019-12-12 13:35:38 t 1 1 195894 691 0.00 2019-12-12 13:35:38 2019-12-12 13:36:07 t 1 1 195895 691 0.00 2019-12-12 13:36:07 2019-12-12 13:37:17 t 1 1 195896 667 0.00 2019-12-12 13:37:43 2019-12-12 13:37:54 t 1 1 195897 718 0.00 2019-12-12 13:15:58 2019-12-12 13:41:27 t 1 1 195898 498 0.00 2019-12-12 13:31:32 2019-12-12 13:45:29 t 1 2 195899 675 0.00 2019-12-12 13:43:40 2019-12-12 13:45:40 t 1 1 195900 667 0.00 2019-12-12 13:45:40 2019-12-12 13:45:51 t 1 1 195901 220 0.00 2019-12-12 13:41:02 2019-12-12 13:46:03 t 1 2 195902 667 0.00 2019-12-12 13:48:47 2019-12-12 13:49:47 t 1 1 195903 718 0.00 2019-12-12 13:41:27 2019-12-12 13:50:08 t 1 1 195904 718 0.00 2019-12-12 13:50:07 2019-12-12 13:51:20 t 1 1 195905 611 0.00 2019-12-12 13:41:16 2019-12-12 13:55:38 t 1 1 195906 639 0.00 2019-12-12 13:55:46 2019-12-12 13:56:06 t 1 1 195907 481 0.00 2019-12-12 13:56:29 2019-12-12 14:02:08 t 1 1 195908 538 0.00 2019-12-12 13:17:35 2019-12-12 14:04:18 t 1 1 195909 611 0.00 2019-12-12 13:15:58 2019-12-12 14:06:33 t 1 1 195910 639 0.00 2019-12-12 14:06:45 2019-12-12 14:06:59 t 1 1 195911 591 0.00 2019-12-12 13:21:04 2019-12-12 14:07:41 t 1 1 195912 220 0.00 2019-12-12 14:00:02 2019-12-12 14:08:06 t 1 1 195913 220 0.00 2019-12-12 14:08:06 2019-12-12 14:08:59 t 1 1 195914 665 0.00 2019-12-12 14:04:18 2019-12-12 14:09:27 t 1 1 195915 665 0.00 2019-12-12 14:10:23 2019-12-12 14:11:24 t 1 1 195916 665 0.00 2019-12-12 14:12:38 2019-12-12 14:13:09 t 1 1 195917 671 0.00 2019-12-12 14:13:09 2019-12-12 14:14:43 t 1 1 195918 611 0.00 2019-12-12 14:15:58 2019-12-12 14:15:58 f 1 1 195919 611 0.00 2019-12-12 14:16:46 2019-12-12 14:16:46 f 1 1 195920 611 0.00 2019-12-12 14:08:59 2019-12-12 14:16:48 t 1 1 195921 639 0.00 2019-12-12 14:14:34 2019-12-12 14:18:16 t 1 1 195922 220 0.00 2019-12-12 14:18:53 2019-12-12 14:19:46 t 1 2 195923 485 0.00 2019-12-12 14:18:19 2019-12-12 14:19:58 t 1 1 195924 611 0.00 2019-12-12 14:02:08 2019-12-12 14:22:13 t 1 1 195925 639 0.00 2019-12-12 14:22:29 2019-12-12 14:23:00 t 1 1 195926 718 0.00 2019-12-12 14:13:21 2019-12-12 14:23:38 t 1 1 195927 220 0.00 2019-12-12 14:19:58 2019-12-12 14:24:25 t 1 1 195928 744 0.00 2019-12-12 14:08:53 2019-12-12 14:27:11 t 1 1 195929 675 0.00 2019-12-12 14:23:38 2019-12-12 14:27:12 t 1 1 195930 639 0.00 2019-12-12 13:45:19 2019-12-12 14:27:16 t 1 1 195931 687 0.00 2019-12-12 14:27:47 2019-12-12 14:28:22 t 1 1 195932 667 0.00 2019-12-12 14:10:48 2019-12-12 14:28:54 t 1 1 195933 538 0.00 2019-12-12 14:23:04 2019-12-12 14:29:39 t 1 1 195934 687 0.00 2019-12-12 14:28:34 2019-12-12 14:29:53 t 1 1 195935 665 0.00 2019-12-12 14:22:13 2019-12-12 14:31:06 t 1 1 195936 611 0.00 2019-12-12 14:31:06 2019-12-12 14:34:29 t 1 1 195937 639 0.00 2019-12-12 14:35:44 2019-12-12 14:35:55 t 1 1 195938 481 0.00 2019-12-12 14:27:11 2019-12-12 14:37:00 t 1 1 195939 220 0.00 2019-12-12 14:27:38 2019-12-12 14:37:50 t 1 1 195940 665 0.00 2019-12-12 14:32:22 2019-12-12 14:38:19 t 1 1 195941 639 0.00 2019-12-12 14:40:57 2019-12-12 14:41:35 t 1 1 195942 707 0.00 2019-12-12 14:34:29 2019-12-12 14:41:49 t 1 1 195943 675 0.00 2019-12-12 14:39:18 2019-12-12 14:42:04 t 1 1 195944 707 0.00 2019-12-12 14:41:49 2019-12-12 14:42:33 t 1 1 195945 744 0.00 2019-12-12 14:40:31 2019-12-12 14:43:18 t 1 1 195946 667 0.00 2019-12-12 14:45:17 2019-12-12 14:45:43 t 1 1 195947 639 0.00 2019-12-12 14:46:15 2019-12-12 14:46:23 t 1 1 195948 667 0.00 2019-12-12 14:46:23 2019-12-12 14:46:40 t 1 1 195949 675 0.00 2019-12-12 14:48:27 2019-12-12 14:51:10 t 1 1 195950 611 0.00 2019-12-12 14:17:02 2019-12-12 14:51:53 t 1 1 195951 220 0.00 2019-12-12 14:45:15 2019-12-12 14:52:38 t 1 2 195952 707 0.00 2019-12-12 14:50:01 2019-12-12 14:54:10 t 1 1 195953 220 0.00 2019-12-12 14:43:18 2019-12-12 14:55:19 t 1 1 195954 718 0.00 2019-12-12 14:54:10 2019-12-12 14:55:36 t 1 1 195955 639 0.00 2019-12-12 14:56:30 2019-12-12 14:57:17 t 1 1 195956 667 0.00 2019-12-12 14:57:20 2019-12-12 14:57:29 t 1 1 195957 707 0.00 2019-12-12 14:55:36 2019-12-12 15:00:15 t 1 1 195958 707 0.00 2019-12-12 15:00:15 2019-12-12 15:02:32 t 1 1 195959 675 0.00 2019-12-12 14:55:44 2019-12-12 15:02:51 t 1 1 195960 639 0.00 2019-12-12 14:59:31 2019-12-12 15:05:46 t 1 1 195961 639 0.00 2019-12-12 15:06:29 2019-12-12 15:06:49 t 1 1 195962 220 0.00 2019-12-12 14:55:19 2019-12-12 15:07:06 t 1 1 195963 459 0.00 2019-12-12 15:11:21 2019-12-12 15:11:31 t 1 2 195964 639 0.00 2019-12-12 15:07:22 2019-12-12 15:11:37 t 1 1 195965 649 0.00 2019-12-12 14:37:16 2019-12-12 15:12:25 t 1 1 195966 220 0.00 2019-12-12 15:11:17 2019-12-12 15:13:06 t 1 1 195967 639 0.00 2019-12-12 15:14:32 2019-12-12 15:14:41 t 1 1 195968 544 0.00 2019-12-12 15:13:06 2019-12-12 15:16:19 t 1 1 195969 718 0.00 2019-12-12 15:09:11 2019-12-12 15:16:29 t 1 1 195970 574 0.00 2019-12-12 15:16:07 2019-12-12 15:17:09 t 1 1 195971 718 0.00 2019-12-12 15:16:29 2019-12-12 15:18:19 t 1 1 195972 627 0.00 2019-12-12 15:18:19 2019-12-12 15:21:44 t 1 1 195975 544 0.00 2019-12-12 15:17:07 2019-12-12 15:23:12 t 1 1 195976 639 0.00 2019-12-12 15:22:15 2019-12-12 15:23:39 t 1 1 195978 675 0.00 2019-12-12 15:24:14 2019-12-12 15:24:53 t 1 1 195979 679 0.00 2019-12-12 15:22:50 2019-12-12 15:26:19 t 1 1 195986 639 0.00 2019-12-12 15:30:42 2019-12-12 15:30:52 t 1 1 195988 687 0.00 2019-12-12 15:29:25 2019-12-12 15:35:29 t 1 1 195990 637 0.00 2019-12-12 14:51:38 2019-12-12 15:37:56 t 1 1 195993 696 0.00 2019-12-12 15:30:41 2019-12-12 15:38:57 t 1 1 195996 639 0.00 2019-12-12 15:42:13 2019-12-12 15:42:37 t 1 1 195998 639 0.00 2019-12-12 15:44:12 2019-12-12 15:45:08 t 1 1 196006 738 0.00 2019-12-12 15:54:57 2019-12-12 15:55:42 t 1 1 196009 611 0.00 2019-12-12 15:53:19 2019-12-12 15:56:47 t 1 1 196010 639 0.00 2019-12-12 15:56:10 2019-12-12 15:57:35 t 1 1 196017 637 0.00 2019-12-12 16:03:22 2019-12-12 16:04:16 t 1 1 196018 671 0.00 2019-12-12 16:03:55 2019-12-12 16:05:30 t 1 1 196020 551 0.00 2019-12-12 16:02:03 2019-12-12 16:07:03 t 1 1 196024 687 0.00 2019-12-12 16:09:19 2019-12-12 16:10:48 t 1 1 196025 615 0.00 2019-12-12 16:07:29 2019-12-12 16:11:01 t 1 1 196030 687 0.00 2019-12-12 16:16:30 2019-12-12 16:22:39 t 1 1 196035 627 0.00 2019-12-12 16:15:50 2019-12-12 16:27:04 t 1 1 196037 639 0.00 2019-12-12 16:23:57 2019-12-12 16:27:54 t 1 1 196038 611 0.00 2019-12-12 16:29:32 2019-12-12 16:29:32 f 1 1 196041 220 0.00 2019-12-12 16:12:02 2019-12-12 16:30:35 t 1 1 196045 627 0.00 2019-12-12 16:29:51 2019-12-12 16:35:40 t 1 1 196050 639 0.00 2019-12-12 16:37:24 2019-12-12 16:40:56 t 1 1 196052 220 0.00 2019-12-12 16:41:25 2019-12-12 16:41:26 t 1 1 196053 724 0.00 2019-12-12 16:39:47 2019-12-12 16:43:58 t 1 1 196056 514 0.00 2019-12-12 16:43:42 2019-12-12 16:48:50 t 1 1 196060 639 0.00 2019-12-12 16:49:15 2019-12-12 16:49:41 t 1 1 196061 687 0.00 2019-12-12 16:46:05 2019-12-12 16:51:03 t 1 1 196065 615 0.00 2019-12-12 16:41:54 2019-12-12 16:54:49 t 1 1 196068 639 0.00 2019-12-12 16:54:31 2019-12-12 16:56:33 t 1 1 196069 639 0.00 2019-12-12 16:57:29 2019-12-12 16:57:34 t 1 1 196074 551 0.00 2019-12-12 16:55:58 2019-12-12 17:03:15 t 1 1 196079 551 0.00 2019-12-12 17:05:15 2019-12-12 17:07:23 t 1 1 196080 736 0.00 2019-12-12 17:08:17 2019-12-12 17:08:26 t 1 1 196083 615 0.00 2019-12-12 17:04:29 2019-12-12 17:10:36 t 1 1 196086 538 0.00 2019-12-12 17:14:01 2019-12-12 17:14:29 t 1 1 196092 671 0.00 2019-12-12 17:12:38 2019-12-12 17:16:38 t 1 1 196096 611 0.00 2019-12-12 17:03:35 2019-12-12 17:18:25 t 1 1 196097 514 0.00 2019-12-12 17:17:24 2019-12-12 17:19:01 t 1 1 196099 736 0.00 2019-12-12 17:18:55 2019-12-12 17:19:43 t 1 1 196101 551 0.00 2019-12-12 17:19:31 2019-12-12 17:20:04 t 1 1 196103 736 0.00 2019-12-12 17:21:24 2019-12-12 17:22:28 t 1 1 196104 675 0.00 2019-12-12 17:20:45 2019-12-12 17:23:05 t 1 1 196105 611 0.00 2019-12-12 17:23:56 2019-12-12 17:23:56 f 1 1 196108 615 0.00 2019-12-12 17:24:55 2019-12-12 17:26:42 t 1 1 196111 514 0.00 2019-12-12 17:28:45 2019-12-12 17:32:50 t 1 1 196114 736 0.00 2019-12-12 17:34:03 2019-12-12 17:34:21 t 1 1 196117 551 0.00 2019-12-12 17:35:04 2019-12-12 17:37:23 t 1 1 196118 615 0.00 2019-12-12 17:37:23 2019-12-12 17:40:43 t 1 1 196124 736 0.00 2019-12-12 17:52:42 2019-12-12 17:54:09 t 1 1 196127 615 0.00 2019-12-12 17:50:18 2019-12-12 17:57:26 t 1 1 196128 566 0.00 2019-12-12 17:54:19 2019-12-12 18:00:20 t 1 1 196130 615 0.00 2019-12-12 17:57:26 2019-12-12 18:02:23 t 1 1 196135 679 0.00 2019-12-12 18:04:12 2019-12-12 18:06:41 t 1 1 196142 709 0.00 2019-12-12 17:38:08 2019-12-12 18:13:17 t 1 1 196147 637 0.00 2019-12-12 18:15:04 2019-12-12 18:17:10 t 1 1 196151 615 0.00 2019-12-12 18:07:55 2019-12-12 18:20:04 t 1 1 196153 514 0.00 2019-12-12 18:09:52 2019-12-12 18:23:01 t 1 1 196156 564 0.00 2019-12-12 18:19:48 2019-12-12 18:24:57 t 1 1 196165 615 0.00 2019-12-12 18:28:06 2019-12-12 18:29:44 t 1 1 196170 742 0.00 2019-12-12 18:23:51 2019-12-12 18:38:11 t 1 1 196171 687 0.00 2019-12-12 18:38:42 2019-12-12 18:38:46 t 1 1 196177 566 0.00 2019-12-12 18:42:14 2019-12-12 18:42:15 t 1 1 196178 736 0.00 2019-12-12 18:42:36 2019-12-12 18:42:44 t 1 1 196184 639 0.00 2019-12-12 18:56:36 2019-12-12 18:59:38 t 1 1 196189 551 0.00 2019-12-12 19:07:11 2019-12-12 19:08:14 t 1 1 196192 639 0.00 2019-12-12 19:08:57 2019-12-12 19:09:11 t 1 1 196194 687 0.00 2019-12-12 18:47:21 2019-12-12 19:16:14 t 1 1 196198 742 0.00 2019-12-12 19:16:17 2019-12-12 19:20:40 t 1 1 196200 718 0.00 2019-12-12 19:20:54 2019-12-12 19:21:09 t 1 1 196201 718 0.00 2019-12-12 19:10:21 2019-12-12 19:21:49 t 1 1 196204 675 0.00 2019-12-12 19:26:53 2019-12-12 19:26:55 t 1 1 196205 718 0.00 2019-12-12 19:26:55 2019-12-12 19:27:59 t 1 1 196207 639 0.00 2019-12-12 19:16:28 2019-12-12 19:28:30 t 1 1 196208 392 0.00 2019-12-12 19:05:44 2019-12-12 19:29:49 t 1 2 196210 551 0.00 2019-12-12 19:28:26 2019-12-12 19:35:56 t 1 1 196211 544 0.00 2019-12-12 19:28:30 2019-12-12 19:36:40 t 1 1 196214 637 0.00 2019-12-12 19:16:43 2019-12-12 19:39:29 t 1 1 196224 551 0.00 2019-12-12 19:41:57 2019-12-12 19:48:57 t 1 1 196228 551 0.00 2019-12-12 19:53:42 2019-12-12 19:53:44 t 1 1 196231 738 0.00 2019-12-12 19:56:34 2019-12-12 19:56:35 t 1 1 196232 544 0.00 2019-12-12 19:45:14 2019-12-12 19:57:32 t 1 1 196234 637 0.00 2019-12-12 19:56:39 2019-12-12 20:00:05 t 1 1 196240 544 0.00 2019-12-12 19:57:32 2019-12-12 20:06:22 t 1 1 196245 738 0.00 2019-12-12 20:09:54 2019-12-12 20:11:17 t 1 1 196246 687 0.00 2019-12-12 20:10:46 2019-12-12 20:13:15 t 1 1 196247 744 0.00 2019-12-12 19:54:09 2019-12-12 20:14:10 t 1 1 196249 707 0.00 2019-12-12 19:37:43 2019-12-12 20:16:37 t 1 1 196251 639 0.00 2019-12-12 20:15:34 2019-12-12 20:22:17 t 1 1 196252 649 0.00 2019-12-12 20:25:01 2019-12-12 20:25:02 t 1 1 196256 649 0.00 2019-12-12 20:25:20 2019-12-12 20:29:41 t 1 1 196260 581 0.00 2019-12-12 20:25:03 2019-12-12 20:31:15 t 1 1 196268 581 0.00 2019-12-12 20:37:08 2019-12-12 20:38:27 t 1 1 196271 722 0.00 2019-12-12 20:39:19 2019-12-12 20:39:22 t 1 1 196274 679 0.00 2019-12-12 20:40:48 2019-12-12 20:42:42 t 1 1 196275 722 0.00 2019-12-12 20:42:00 2019-12-12 20:43:52 t 1 1 196276 611 0.00 2019-12-12 20:43:42 2019-12-12 20:44:50 t 1 1 196277 581 0.00 2019-12-12 20:44:50 2019-12-12 20:45:03 t 1 1 196281 581 0.00 2019-12-12 20:47:49 2019-12-12 20:48:13 t 1 1 196284 750 0.00 2019-12-12 20:49:20 2019-12-12 20:50:28 t 1 1 196285 724 0.00 2019-12-12 20:45:28 2019-12-12 20:52:54 t 1 1 196287 581 0.00 2019-12-12 20:53:39 2019-12-12 20:53:46 t 1 1 196290 611 0.00 2019-12-12 20:54:42 2019-12-12 20:55:55 t 1 1 196294 639 0.00 2019-12-12 20:58:46 2019-12-12 20:59:15 t 1 1 195973 564 0.00 2019-12-12 15:20:36 2019-12-12 15:22:15 t 1 1 195974 687 0.00 2019-12-12 15:18:11 2019-12-12 15:22:50 t 1 1 195981 639 0.00 2019-12-12 15:25:47 2019-12-12 15:27:44 t 1 1 195984 687 0.00 2019-12-12 15:28:38 2019-12-12 15:29:25 t 1 1 195987 707 0.00 2019-12-12 15:25:07 2019-12-12 15:33:36 t 1 1 195989 639 0.00 2019-12-12 15:31:04 2019-12-12 15:37:36 t 1 1 195992 716 0.00 2019-12-12 15:37:32 2019-12-12 15:38:55 t 1 1 195995 220 0.00 2019-12-12 15:38:55 2019-12-12 15:41:42 t 1 1 195997 639 0.00 2019-12-12 15:42:48 2019-12-12 15:42:59 t 1 1 195999 687 0.00 2019-12-12 15:42:55 2019-12-12 15:49:08 t 1 1 196000 566 0.00 2019-12-12 15:49:55 2019-12-12 15:51:41 t 1 1 196002 637 0.00 2019-12-12 15:47:41 2019-12-12 15:52:35 t 1 1 196004 639 0.00 2019-12-12 15:53:13 2019-12-12 15:53:24 t 1 1 196008 696 0.00 2019-12-12 15:52:18 2019-12-12 15:56:38 t 1 1 196013 220 0.00 2019-12-12 16:01:56 2019-12-12 16:02:03 t 1 1 196014 483 0.00 2019-12-12 15:53:06 2019-12-12 16:02:41 t 1 1 196021 637 0.00 2019-12-12 16:05:33 2019-12-12 16:08:07 t 1 1 196023 483 0.00 2019-12-12 16:03:35 2019-12-12 16:09:19 t 1 1 196031 687 0.00 2019-12-12 16:22:39 2019-12-12 16:24:03 t 1 1 196032 675 0.00 2019-12-12 16:16:17 2019-12-12 16:25:10 t 1 1 196034 637 0.00 2019-12-12 16:14:45 2019-12-12 16:26:48 t 1 1 196039 611 0.00 2019-12-12 15:59:39 2019-12-12 16:30:04 t 1 1 196042 220 0.00 2019-12-12 16:30:35 2019-12-12 16:31:56 t 1 1 196049 392 0.00 2019-12-12 15:46:44 2019-12-12 16:40:09 t 1 2 196051 551 0.00 2019-12-12 16:31:56 2019-12-12 16:41:25 t 1 1 196054 639 0.00 2019-12-12 16:42:59 2019-12-12 16:44:07 t 1 1 196058 675 0.00 2019-12-12 16:46:03 2019-12-12 16:49:32 t 1 1 196059 551 0.00 2019-12-12 16:49:28 2019-12-12 16:49:41 t 1 1 196062 639 0.00 2019-12-12 16:50:33 2019-12-12 16:51:09 t 1 1 196066 220 0.00 2019-12-12 16:49:41 2019-12-12 16:55:12 t 1 1 196067 736 0.00 2019-12-12 16:55:48 2019-12-12 16:55:58 t 1 1 196070 637 0.00 2019-12-12 16:26:49 2019-12-12 16:59:21 t 1 1 196071 687 0.00 2019-12-12 16:59:25 2019-12-12 16:59:33 t 1 1 196073 689 0.00 2019-12-12 17:00:03 2019-12-12 17:00:19 t 1 1 196076 736 0.00 2019-12-12 17:03:15 2019-12-12 17:04:38 t 1 1 196077 498 0.00 2019-12-12 15:14:25 2019-12-12 17:05:01 t 1 2 196078 687 0.00 2019-12-12 17:00:19 2019-12-12 17:05:49 t 1 1 196084 637 0.00 2019-12-12 17:12:08 2019-12-12 17:13:20 t 1 1 196088 689 0.00 2019-12-12 17:14:51 2019-12-12 17:15:10 t 1 1 196091 736 0.00 2019-12-12 17:15:13 2019-12-12 17:16:06 t 1 1 196095 611 0.00 2019-12-12 17:17:35 2019-12-12 17:17:35 f 1 1 196102 679 0.00 2019-12-12 17:20:41 2019-12-12 17:21:07 t 1 1 196106 611 0.00 2019-12-12 17:19:01 2019-12-12 17:24:35 t 1 1 196107 615 0.00 2019-12-12 17:22:35 2019-12-12 17:24:44 t 1 1 196109 611 0.00 2019-12-12 17:25:11 2019-12-12 17:28:46 t 1 1 196115 736 0.00 2019-12-12 17:34:31 2019-12-12 17:34:38 t 1 1 196116 514 0.00 2019-12-12 17:32:50 2019-12-12 17:36:34 t 1 1 196120 566 0.00 2019-12-12 17:43:39 2019-12-12 17:45:38 t 1 1 196126 736 0.00 2019-12-12 17:55:51 2019-12-12 17:56:18 t 1 1 196129 744 0.00 2019-12-12 18:00:20 2019-12-12 18:01:23 t 1 1 196132 545 0.00 2019-12-12 17:07:45 2019-12-12 18:05:46 t 1 1 196136 551 0.00 2019-12-12 18:02:23 2019-12-12 18:07:55 t 1 1 196137 671 0.00 2019-12-12 18:06:44 2019-12-12 18:08:40 t 1 1 196140 687 0.00 2019-12-12 18:00:17 2019-12-12 18:10:16 t 1 1 196143 736 0.00 2019-12-12 18:13:30 2019-12-12 18:14:10 t 1 1 196145 611 0.00 2019-12-12 18:04:38 2019-12-12 18:15:45 t 1 1 196157 707 0.00 2019-12-12 18:13:29 2019-12-12 18:25:19 t 1 1 196160 514 0.00 2019-12-12 18:23:01 2019-12-12 18:27:42 t 1 1 196161 481 0.00 2019-12-12 18:24:29 2019-12-12 18:28:18 t 1 1 196163 736 0.00 2019-12-12 18:28:58 2019-12-12 18:29:13 t 1 1 196166 392 0.00 2019-12-12 17:14:04 2019-12-12 18:29:50 t 1 2 196168 544 0.00 2019-12-12 18:25:26 2019-12-12 18:30:45 t 1 1 196169 687 0.00 2019-12-12 18:29:32 2019-12-12 18:32:34 t 1 1 196172 736 0.00 2019-12-12 18:39:46 2019-12-12 18:40:06 t 1 1 196173 718 0.00 2019-12-12 17:19:52 2019-12-12 18:41:28 t 1 1 196176 736 0.00 2019-12-12 18:41:55 2019-12-12 18:42:14 t 1 1 196179 591 0.00 2019-12-12 18:42:02 2019-12-12 18:43:23 t 1 1 196180 736 0.00 2019-12-12 18:44:35 2019-12-12 18:44:47 t 1 1 196181 736 0.00 2019-12-12 18:47:33 2019-12-12 18:47:56 t 1 1 196191 481 0.00 2019-12-12 18:28:47 2019-12-12 19:08:47 t 1 1 196193 639 0.00 2019-12-12 19:09:44 2019-12-12 19:10:19 t 1 1 196195 551 0.00 2019-12-12 19:16:11 2019-12-12 19:16:17 t 1 1 196203 551 0.00 2019-12-12 19:22:42 2019-12-12 19:25:27 t 1 1 196206 591 0.00 2019-12-12 19:25:27 2019-12-12 19:28:26 t 1 1 196213 750 0.00 2019-12-12 19:37:30 2019-12-12 19:38:43 t 1 1 196215 750 0.00 2019-12-12 19:38:45 2019-12-12 19:39:29 t 1 1 196216 544 0.00 2019-12-12 19:36:40 2019-12-12 19:40:43 t 1 1 196217 551 0.00 2019-12-12 19:35:56 2019-12-12 19:41:57 t 1 1 196218 637 0.00 2019-12-12 19:39:29 2019-12-12 19:43:50 t 1 1 196220 637 0.00 2019-12-12 19:43:41 2019-12-12 19:44:12 t 1 1 196225 694 0.00 2019-12-12 19:46:39 2019-12-12 19:49:54 t 1 1 196227 551 0.00 2019-12-12 19:48:57 2019-12-12 19:53:42 t 1 1 196229 738 0.00 2019-12-12 19:53:41 2019-12-12 19:54:02 t 1 1 196233 581 0.00 2019-12-12 19:55:42 2019-12-12 19:58:43 t 1 1 196235 551 0.00 2019-12-12 19:58:43 2019-12-12 20:04:02 t 1 1 196237 639 0.00 2019-12-12 20:05:26 2019-12-12 20:05:39 t 1 1 196241 738 0.00 2019-12-12 20:05:40 2019-12-12 20:08:22 t 1 1 196248 639 0.00 2019-12-12 20:08:30 2019-12-12 20:14:26 t 1 1 196250 734 0.00 2019-12-12 20:10:41 2019-12-12 20:19:00 t 1 1 196257 487 0.00 2019-12-12 19:59:04 2019-12-12 20:29:43 t 1 2 196258 696 0.00 2019-12-12 20:28:42 2019-12-12 20:30:58 t 1 1 196262 694 0.00 2019-12-12 19:49:54 2019-12-12 20:32:38 t 1 1 196263 639 0.00 2019-12-12 20:28:32 2019-12-12 20:35:29 t 1 1 196265 722 0.00 2019-12-12 20:31:48 2019-12-12 20:36:40 t 1 1 196266 679 0.00 2019-12-12 20:35:48 2019-12-12 20:37:21 t 1 1 196267 679 0.00 2019-12-12 20:37:29 2019-12-12 20:37:38 t 1 1 196270 722 0.00 2019-12-12 20:36:40 2019-12-12 20:39:08 t 1 1 196272 679 0.00 2019-12-12 20:39:45 2019-12-12 20:39:57 t 1 1 196278 742 0.00 2019-12-12 20:44:57 2019-12-12 20:45:04 t 1 1 196280 639 0.00 2019-12-12 20:38:55 2019-12-12 20:47:44 t 1 1 196282 581 0.00 2019-12-12 20:48:18 2019-12-12 20:48:49 t 1 1 196286 718 0.00 2019-12-12 20:48:29 2019-12-12 20:53:39 t 1 1 196288 639 0.00 2019-12-12 20:53:27 2019-12-12 20:54:17 t 1 1 196291 220 0.00 2019-12-12 20:35:44 2019-12-12 20:55:59 t 1 2 196293 639 0.00 2019-12-12 20:56:11 2019-12-12 20:56:19 t 1 1 196298 611 0.00 2019-12-12 21:02:30 2019-12-12 21:03:46 t 1 1 196299 591 0.00 2019-12-12 20:52:38 2019-12-12 21:05:23 t 1 1 195977 639 0.00 2019-12-12 15:24:07 2019-12-12 15:24:13 t 1 1 195980 220 0.00 2019-12-12 15:23:12 2019-12-12 15:27:00 t 1 1 195982 687 0.00 2019-12-12 15:26:18 2019-12-12 15:28:34 t 1 1 195983 564 0.00 2019-12-12 15:24:53 2019-12-12 15:29:23 t 1 1 195985 544 0.00 2019-12-12 15:30:20 2019-12-12 15:30:50 t 1 1 195991 639 0.00 2019-12-12 15:37:56 2019-12-12 15:38:04 t 1 1 195994 639 0.00 2019-12-12 15:40:55 2019-12-12 15:41:06 t 1 1 196001 675 0.00 2019-12-12 15:34:16 2019-12-12 15:52:08 t 1 1 196003 611 0.00 2019-12-12 15:50:59 2019-12-12 15:53:15 t 1 1 196005 220 0.00 2019-12-12 15:49:16 2019-12-12 15:54:57 t 1 1 196007 220 0.00 2019-12-12 15:55:42 2019-12-12 15:55:47 t 1 1 196011 637 0.00 2019-12-12 15:59:29 2019-12-12 16:00:37 t 1 1 196012 551 0.00 2019-12-12 15:57:33 2019-12-12 16:01:56 t 1 1 196015 687 0.00 2019-12-12 15:55:32 2019-12-12 16:02:42 t 1 1 196016 687 0.00 2019-12-12 16:02:42 2019-12-12 16:03:35 t 1 1 196019 627 0.00 2019-12-12 15:57:19 2019-12-12 16:06:50 t 1 1 196022 696 0.00 2019-12-12 16:06:32 2019-12-12 16:08:20 t 1 1 196026 551 0.00 2019-12-12 16:07:03 2019-12-12 16:12:02 t 1 1 196027 696 0.00 2019-12-12 16:10:56 2019-12-12 16:13:25 t 1 1 196028 514 0.00 2019-12-12 16:10:59 2019-12-12 16:15:50 t 1 1 196029 566 0.00 2019-12-12 15:50:05 2019-12-12 16:20:28 t 1 1 196033 667 0.00 2019-12-12 16:24:20 2019-12-12 16:25:17 t 1 1 196036 667 0.00 2019-12-12 16:26:24 2019-12-12 16:27:42 t 1 1 196040 718 0.00 2019-12-12 15:59:05 2019-12-12 16:30:14 t 1 1 196043 591 0.00 2019-12-12 16:25:08 2019-12-12 16:33:12 t 1 1 196044 514 0.00 2019-12-12 16:26:22 2019-12-12 16:34:13 t 1 1 196046 679 0.00 2019-12-12 16:35:40 2019-12-12 16:36:19 t 1 1 196047 514 0.00 2019-12-12 16:36:39 2019-12-12 16:36:57 t 1 1 196048 675 0.00 2019-12-12 16:32:50 2019-12-12 16:38:09 t 1 1 196055 687 0.00 2019-12-12 16:24:15 2019-12-12 16:45:49 t 1 1 196057 551 0.00 2019-12-12 16:41:26 2019-12-12 16:49:28 t 1 1 196063 538 0.00 2019-12-12 16:51:26 2019-12-12 16:53:23 t 1 1 196064 639 0.00 2019-12-12 16:53:23 2019-12-12 16:54:09 t 1 1 196072 687 0.00 2019-12-12 16:59:40 2019-12-12 16:59:52 t 1 1 196075 514 0.00 2019-12-12 16:48:49 2019-12-12 17:03:27 t 1 1 196081 637 0.00 2019-12-12 16:59:30 2019-12-12 17:09:21 t 1 1 196082 639 0.00 2019-12-12 16:58:22 2019-12-12 17:10:22 t 1 1 196085 742 0.00 2019-12-12 17:11:53 2019-12-12 17:13:32 t 1 1 196087 639 0.00 2019-12-12 17:14:37 2019-12-12 17:14:51 t 1 1 196089 481 0.00 2019-12-12 16:41:47 2019-12-12 17:15:13 t 1 1 196090 639 0.00 2019-12-12 17:15:37 2019-12-12 17:15:38 t 1 1 196093 639 0.00 2019-12-12 17:16:46 2019-12-12 17:16:58 t 1 1 196094 514 0.00 2019-12-12 17:03:42 2019-12-12 17:17:24 t 1 1 196098 675 0.00 2019-12-12 17:07:23 2019-12-12 17:19:31 t 1 1 196100 671 0.00 2019-12-12 17:17:20 2019-12-12 17:19:53 t 1 1 196110 637 0.00 2019-12-12 17:14:29 2019-12-12 17:32:50 t 1 1 196112 687 0.00 2019-12-12 17:21:07 2019-12-12 17:33:14 t 1 1 196113 742 0.00 2019-12-12 17:32:57 2019-12-12 17:34:11 t 1 1 196119 736 0.00 2019-12-12 17:44:59 2019-12-12 17:45:22 t 1 1 196121 675 0.00 2019-12-12 17:37:32 2019-12-12 17:45:59 t 1 1 196122 687 0.00 2019-12-12 17:46:11 2019-12-12 17:47:07 t 1 1 196123 551 0.00 2019-12-12 17:48:52 2019-12-12 17:50:18 t 1 1 196125 681 0.00 2019-12-12 16:33:41 2019-12-12 17:55:42 t 1 1 196131 675 0.00 2019-12-12 17:58:17 2019-12-12 18:04:38 t 1 1 196133 220 0.00 2019-12-12 17:21:59 2019-12-12 18:06:29 t 1 1 196134 736 0.00 2019-12-12 18:06:29 2019-12-12 18:06:39 t 1 1 196138 679 0.00 2019-12-12 18:07:17 2019-12-12 18:09:35 t 1 1 196139 538 0.00 2019-12-12 17:59:34 2019-12-12 18:09:52 t 1 1 196141 696 0.00 2019-12-12 18:10:27 2019-12-12 18:11:55 t 1 1 196144 591 0.00 2019-12-12 17:08:05 2019-12-12 18:14:22 t 1 1 196146 687 0.00 2019-12-12 18:13:10 2019-12-12 18:15:46 t 1 1 196148 637 0.00 2019-12-12 18:17:14 2019-12-12 18:17:24 t 1 1 196149 736 0.00 2019-12-12 18:15:46 2019-12-12 18:17:48 t 1 1 196150 679 0.00 2019-12-12 18:17:24 2019-12-12 18:20:00 t 1 1 196152 736 0.00 2019-12-12 18:19:51 2019-12-12 18:21:06 t 1 1 196154 742 0.00 2019-12-12 18:22:46 2019-12-12 18:23:35 t 1 1 196155 744 0.00 2019-12-12 18:01:22 2019-12-12 18:24:29 t 1 1 196158 544 0.00 2019-12-12 18:12:42 2019-12-12 18:25:26 t 1 1 196159 736 0.00 2019-12-12 18:26:09 2019-12-12 18:27:24 t 1 1 196162 736 0.00 2019-12-12 18:28:44 2019-12-12 18:28:50 t 1 1 196164 687 0.00 2019-12-12 18:26:31 2019-12-12 18:29:14 t 1 1 196167 724 0.00 2019-12-12 18:15:58 2019-12-12 18:30:09 t 1 1 196174 736 0.00 2019-12-12 18:41:26 2019-12-12 18:41:35 t 1 1 196175 566 0.00 2019-12-12 18:30:56 2019-12-12 18:42:01 t 1 1 196182 551 0.00 2019-12-12 18:43:23 2019-12-12 18:50:24 t 1 1 196183 551 0.00 2019-12-12 18:50:24 2019-12-12 18:57:24 t 1 1 196185 551 0.00 2019-12-12 18:57:24 2019-12-12 19:02:02 t 1 1 196186 639 0.00 2019-12-12 19:02:51 2019-12-12 19:02:58 t 1 1 196187 639 0.00 2019-12-12 19:03:57 2019-12-12 19:04:18 t 1 1 196188 694 0.00 2019-12-12 18:56:27 2019-12-12 19:08:14 t 1 1 196190 639 0.00 2019-12-12 19:08:14 2019-12-12 19:08:19 t 1 1 196196 611 0.00 2019-12-12 19:18:08 2019-12-12 19:18:08 f 1 1 196197 611 0.00 2019-12-12 19:13:32 2019-12-12 19:18:56 t 1 1 196199 639 0.00 2019-12-12 19:18:14 2019-12-12 19:20:57 t 1 1 196202 687 0.00 2019-12-12 19:21:25 2019-12-12 19:22:41 t 1 1 196209 538 0.00 2019-12-12 18:28:06 2019-12-12 19:31:31 t 1 1 196212 750 0.00 2019-12-12 19:34:45 2019-12-12 19:37:28 t 1 1 196219 544 0.00 2019-12-12 19:40:43 2019-12-12 19:43:51 t 1 1 196221 544 0.00 2019-12-12 19:43:56 2019-12-12 19:45:10 t 1 1 196222 746 0.00 2019-12-12 19:43:36 2019-12-12 19:46:27 t 1 1 196223 694 0.00 2019-12-12 19:08:13 2019-12-12 19:46:39 t 1 1 196226 718 0.00 2019-12-12 19:29:35 2019-12-12 19:53:41 t 1 1 196230 637 0.00 2019-12-12 19:44:55 2019-12-12 19:54:07 t 1 1 196236 639 0.00 2019-12-12 20:03:58 2019-12-12 20:05:26 t 1 1 196238 637 0.00 2019-12-12 20:00:37 2019-12-12 20:05:40 t 1 1 196239 639 0.00 2019-12-12 20:06:06 2019-12-12 20:06:15 t 1 1 196242 551 0.00 2019-12-12 20:07:29 2019-12-12 20:08:30 t 1 1 196243 746 0.00 2019-12-12 19:46:27 2019-12-12 20:08:53 t 1 1 196244 738 0.00 2019-12-12 20:09:31 2019-12-12 20:09:37 t 1 1 196253 649 0.00 2019-12-12 20:25:02 2019-12-12 20:25:03 t 1 1 196254 744 0.00 2019-12-12 20:14:10 2019-12-12 20:27:35 t 1 1 196255 746 0.00 2019-12-12 20:08:53 2019-12-12 20:29:16 t 1 1 196259 734 0.00 2019-12-12 20:27:54 2019-12-12 20:31:07 t 1 1 196261 722 0.00 2019-12-12 20:26:20 2019-12-12 20:31:48 t 1 1 196264 679 0.00 2019-12-12 20:29:55 2019-12-12 20:35:37 t 1 1 196269 679 0.00 2019-12-12 20:38:25 2019-12-12 20:38:45 t 1 1 196273 742 0.00 2019-12-12 20:41:30 2019-12-12 20:41:48 t 1 1 196279 724 0.00 2019-12-12 20:40:47 2019-12-12 20:45:15 t 1 1 196283 637 0.00 2019-12-12 20:40:15 2019-12-12 20:49:20 t 1 1 196289 611 0.00 2019-12-12 20:53:29 2019-12-12 20:54:31 t 1 1 196292 639 0.00 2019-12-12 20:55:54 2019-12-12 20:56:00 t 1 1 196295 581 0.00 2019-12-12 21:00:34 2019-12-12 21:00:48 t 1 1 196297 718 0.00 2019-12-12 21:02:12 2019-12-12 21:02:30 t 1 1 196301 724 0.00 2019-12-12 20:54:47 2019-12-12 21:07:22 t 1 1 196304 724 0.00 2019-12-12 21:09:21 2019-12-12 21:14:08 t 1 1 196307 718 0.00 2019-12-12 21:07:49 2019-12-12 21:22:06 t 1 1 196309 750 0.00 2019-12-12 21:22:17 2019-12-12 21:24:14 t 1 1 196310 707 0.00 2019-12-12 21:21:22 2019-12-12 21:26:40 t 1 1 196315 544 0.00 2019-12-12 21:26:40 2019-12-12 21:28:10 t 1 1 196319 637 0.00 2019-12-12 20:50:37 2019-12-12 21:29:23 t 1 1 196327 681 0.00 2019-12-12 19:50:20 2019-12-12 21:42:37 t 1 1 196330 744 0.00 2019-12-12 20:29:16 2019-12-12 21:52:18 t 1 1 196332 679 0.00 2019-12-12 21:51:46 2019-12-12 21:53:22 t 1 1 196334 681 0.00 2019-12-12 21:42:37 2019-12-12 21:54:35 t 1 1 196335 635 0.00 2019-12-12 21:47:05 2019-12-12 21:55:28 t 1 1 196336 639 0.00 2019-12-12 21:55:46 2019-12-12 21:55:47 t 1 1 196337 718 0.00 2019-12-12 21:51:15 2019-12-12 21:58:17 t 1 1 196338 639 0.00 2019-12-12 21:56:21 2019-12-12 21:58:45 t 1 1 196344 722 0.00 2019-12-12 22:08:01 2019-12-12 22:10:34 t 1 1 196347 637 0.00 2019-12-12 21:47:59 2019-12-12 22:13:39 t 1 1 196348 746 0.00 2019-12-12 22:03:33 2019-12-12 22:15:46 t 1 1 196349 551 0.00 2019-12-12 22:13:39 2019-12-12 22:17:31 t 1 1 196351 689 0.00 2019-12-12 21:51:36 2019-12-12 22:20:35 t 1 1 196353 485 0.00 2019-12-12 22:05:31 2019-12-12 22:20:52 t 1 1 196356 681 0.00 2019-12-12 22:12:30 2019-12-12 22:25:27 t 1 1 196358 689 0.00 2019-12-12 22:28:18 2019-12-12 22:28:26 t 1 1 196363 514 0.00 2019-12-12 22:11:57 2019-12-12 22:32:53 t 1 1 196365 691 0.00 2019-12-12 22:32:38 2019-12-12 22:33:17 t 1 1 196367 459 0.00 2019-12-12 22:30:01 2019-12-12 22:33:36 t 1 2 196371 734 0.00 2019-12-12 22:35:17 2019-12-12 22:35:45 t 1 1 196372 681 0.00 2019-12-12 22:34:22 2019-12-12 22:36:38 t 1 1 196374 724 0.00 2019-12-12 22:36:24 2019-12-12 22:36:42 t 1 1 196383 622 0.00 2019-12-12 22:08:55 2019-12-12 22:43:25 t 1 1 196386 665 0.00 2019-12-12 22:43:18 2019-12-12 22:46:27 t 1 1 196388 631 0.00 2019-12-12 22:42:05 2019-12-12 22:46:57 t 1 1 196389 716 0.00 2019-12-12 22:43:28 2019-12-12 22:48:47 t 1 1 196391 689 0.00 2019-12-12 22:49:08 2019-12-12 22:49:33 t 1 1 196395 689 0.00 2019-12-12 22:52:58 2019-12-12 22:53:14 t 1 1 196397 738 0.00 2019-12-12 22:54:11 2019-12-12 22:54:43 t 1 1 196403 738 0.00 2019-12-12 22:55:42 2019-12-12 22:55:45 t 1 1 196413 738 0.00 2019-12-12 22:59:49 2019-12-12 22:59:51 t 1 1 196414 738 0.00 2019-12-12 23:00:34 2019-12-12 23:00:41 t 1 1 196416 689 0.00 2019-12-12 22:55:12 2019-12-12 23:01:13 t 1 1 196418 738 0.00 2019-12-12 23:00:49 2019-12-12 23:01:25 t 1 1 196419 738 0.00 2019-12-12 23:01:33 2019-12-12 23:01:34 t 1 1 196424 738 0.00 2019-12-12 23:03:22 2019-12-12 23:03:24 t 1 1 196427 673 0.00 2019-12-12 23:04:27 2019-12-12 23:04:53 t 1 1 196429 738 0.00 2019-12-12 23:05:36 2019-12-12 23:05:44 t 1 1 196430 716 0.00 2019-12-12 23:06:08 2019-12-12 23:06:10 t 1 1 196431 738 0.00 2019-12-12 23:06:28 2019-12-12 23:06:31 t 1 1 196432 639 0.00 2019-12-12 23:06:10 2019-12-12 23:06:49 t 1 1 196434 544 0.00 2019-12-12 23:01:46 2019-12-12 23:07:17 t 1 1 196437 738 0.00 2019-12-12 23:08:13 2019-12-12 23:08:27 t 1 1 196440 220 0.00 2019-12-12 22:37:27 2019-12-12 23:11:32 t 1 1 196444 665 0.00 2019-12-12 23:10:46 2019-12-12 23:14:21 t 1 1 196446 562 0.00 2019-12-12 23:15:53 2019-12-12 23:16:30 t 1 1 196447 687 0.00 2019-12-12 23:16:08 2019-12-12 23:17:59 t 1 1 196453 611 0.00 2019-12-12 23:05:00 2019-12-12 23:21:15 t 1 1 196461 639 0.00 2019-12-12 23:26:59 2019-12-12 23:27:20 t 1 1 196463 738 0.00 2019-12-12 23:26:36 2019-12-12 23:27:58 t 1 1 196467 639 0.00 2019-12-12 23:33:04 2019-12-12 23:33:26 t 1 1 196475 679 0.00 2019-12-12 23:33:32 2019-12-12 23:38:52 t 1 1 196481 734 0.00 2019-12-12 23:35:18 2019-12-12 23:43:48 t 1 1 196484 691 0.00 2019-12-12 23:43:52 2019-12-12 23:44:09 t 1 1 196490 637 0.00 2019-12-12 22:32:45 2019-12-12 23:51:05 t 1 1 196491 611 0.00 2019-12-12 23:33:09 2019-12-12 23:51:47 t 1 1 196497 738 0.00 2019-12-12 23:56:54 2019-12-12 23:56:56 t 1 1 196502 637 0.00 2019-12-12 23:56:48 2019-12-12 23:58:45 t 1 1 196505 679 0.00 2019-12-12 23:46:54 2019-12-13 00:02:57 t 1 1 196510 544 0.00 2019-12-12 23:57:39 2019-12-13 00:07:44 t 1 1 196512 738 0.00 2019-12-13 00:09:10 2019-12-13 00:09:12 t 1 1 196514 625 0.00 2019-12-12 23:28:44 2019-12-13 00:10:39 t 1 1 196515 562 0.00 2019-12-13 00:11:25 2019-12-13 00:11:32 t 1 1 196517 691 0.00 2019-12-13 00:11:58 2019-12-13 00:13:07 t 1 1 196518 738 0.00 2019-12-13 00:13:57 2019-12-13 00:14:00 t 1 1 196519 562 0.00 2019-12-13 00:17:48 2019-12-13 00:18:02 t 1 1 196524 673 0.00 2019-12-13 00:16:53 2019-12-13 00:22:51 t 1 1 196526 738 0.00 2019-12-13 00:23:00 2019-12-13 00:23:02 t 1 1 196529 738 0.00 2019-12-13 00:25:21 2019-12-13 00:25:22 t 1 1 196530 738 0.00 2019-12-13 00:26:02 2019-12-13 00:26:12 t 1 1 196532 562 0.00 2019-12-13 00:28:19 2019-12-13 00:28:46 t 1 1 196545 639 0.00 2019-12-13 00:38:59 2019-12-13 00:39:23 t 1 1 196549 625 0.00 2019-12-13 00:10:39 2019-12-13 00:43:30 t 1 1 196550 734 0.00 2019-12-13 00:38:39 2019-12-13 00:44:06 t 1 1 196556 673 0.00 2019-12-13 00:41:58 2019-12-13 00:49:51 t 1 1 196559 738 0.00 2019-12-13 00:54:40 2019-12-13 00:54:43 t 1 1 196564 562 0.00 2019-12-13 00:55:57 2019-12-13 00:56:20 t 1 1 196568 687 0.00 2019-12-13 00:57:03 2019-12-13 01:00:00 t 1 1 196569 738 0.00 2019-12-13 01:00:55 2019-12-13 01:01:11 t 1 1 196572 738 0.00 2019-12-13 00:59:46 2019-12-13 01:01:46 t 1 1 196577 734 0.00 2019-12-13 01:05:33 2019-12-13 01:05:50 t 1 1 196579 738 0.00 2019-12-13 01:07:19 2019-12-13 01:07:21 t 1 1 196584 551 0.00 2019-12-13 01:09:30 2019-12-13 01:10:40 t 1 1 196586 738 0.00 2019-12-13 01:12:56 2019-12-13 01:12:57 t 1 1 196591 738 0.00 2019-12-13 01:21:08 2019-12-13 01:21:11 t 1 1 196593 625 0.00 2019-12-13 01:05:09 2019-12-13 01:24:01 t 1 1 196594 736 0.00 2019-12-13 01:23:59 2019-12-13 01:25:17 t 1 1 196595 738 0.00 2019-12-13 01:25:50 2019-12-13 01:26:13 t 1 1 196602 738 0.00 2019-12-13 01:42:11 2019-12-13 01:42:34 t 1 1 196605 562 0.00 2019-12-13 01:50:05 2019-12-13 01:50:15 t 1 1 196609 562 0.00 2019-12-13 02:00:49 2019-12-13 02:01:07 t 1 1 196610 738 0.00 2019-12-13 02:01:40 2019-12-13 02:01:54 t 1 1 196619 738 0.00 2019-12-13 02:11:47 2019-12-13 02:12:19 t 1 1 196620 738 0.00 2019-12-13 02:12:32 2019-12-13 02:13:04 t 1 1 196296 639 0.00 2019-12-12 21:01:38 2019-12-12 21:02:13 t 1 1 196300 639 0.00 2019-12-12 21:02:24 2019-12-12 21:06:11 t 1 1 196302 711 0.00 2019-12-12 20:41:49 2019-12-12 21:07:32 t 1 1 196305 734 0.00 2019-12-12 21:14:08 2019-12-12 21:17:33 t 1 1 196312 711 0.00 2019-12-12 21:07:32 2019-12-12 21:27:35 t 1 1 196316 696 0.00 2019-12-12 21:28:07 2019-12-12 21:28:24 t 1 1 196317 689 0.00 2019-12-12 21:28:03 2019-12-12 21:28:45 t 1 1 196320 639 0.00 2019-12-12 21:28:42 2019-12-12 21:29:23 t 1 1 196321 711 0.00 2019-12-12 21:27:35 2019-12-12 21:29:58 t 1 1 196322 581 0.00 2019-12-12 21:03:06 2019-12-12 21:30:55 t 1 1 196324 667 0.00 2019-12-12 21:34:31 2019-12-12 21:34:54 t 1 1 196326 639 0.00 2019-12-12 21:41:29 2019-12-12 21:41:44 t 1 1 196328 637 0.00 2019-12-12 21:30:08 2019-12-12 21:47:57 t 1 1 196331 639 0.00 2019-12-12 21:52:06 2019-12-12 21:52:31 t 1 1 196339 544 0.00 2019-12-12 21:56:16 2019-12-12 21:59:06 t 1 1 196340 681 0.00 2019-12-12 21:58:17 2019-12-12 22:03:46 t 1 1 196342 564 0.00 2019-12-12 21:46:18 2019-12-12 22:09:08 t 1 1 196350 718 0.00 2019-12-12 22:10:34 2019-12-12 22:19:19 t 1 1 196357 722 0.00 2019-12-12 22:19:19 2019-12-12 22:26:48 t 1 1 196359 687 0.00 2019-12-12 22:27:23 2019-12-12 22:30:33 t 1 1 196360 639 0.00 2019-12-12 22:31:08 2019-12-12 22:31:30 t 1 1 196362 637 0.00 2019-12-12 22:25:30 2019-12-12 22:32:43 t 1 1 196364 667 0.00 2019-12-12 22:28:31 2019-12-12 22:33:17 t 1 1 196369 566 0.00 2019-12-12 22:14:36 2019-12-12 22:35:17 t 1 1 196370 665 0.00 2019-12-12 22:32:27 2019-12-12 22:35:35 t 1 1 196375 514 0.00 2019-12-12 22:37:00 2019-12-12 22:38:14 t 1 1 196378 566 0.00 2019-12-12 22:35:45 2019-12-12 22:39:10 t 1 1 196379 611 0.00 2019-12-12 22:34:10 2019-12-12 22:40:23 t 1 1 196380 675 0.00 2019-12-12 22:32:28 2019-12-12 22:42:20 t 1 1 196382 665 0.00 2019-12-12 22:38:53 2019-12-12 22:42:43 t 1 1 196394 639 0.00 2019-12-12 22:52:41 2019-12-12 22:53:03 t 1 1 196396 689 0.00 2019-12-12 22:53:25 2019-12-12 22:54:38 t 1 1 196399 738 0.00 2019-12-12 22:55:01 2019-12-12 22:55:12 t 1 1 196402 744 0.00 2019-12-12 22:43:38 2019-12-12 22:55:42 t 1 1 196404 639 0.00 2019-12-12 22:54:28 2019-12-12 22:56:01 t 1 1 196405 738 0.00 2019-12-12 22:56:46 2019-12-12 22:57:28 t 1 1 196407 562 0.00 2019-12-12 22:45:43 2019-12-12 22:58:05 t 1 1 196409 738 0.00 2019-12-12 22:57:33 2019-12-12 22:58:27 t 1 1 196411 611 0.00 2019-12-12 22:51:41 2019-12-12 22:58:44 t 1 1 196412 562 0.00 2019-12-12 22:59:02 2019-12-12 22:59:45 t 1 1 196423 738 0.00 2019-12-12 23:03:06 2019-12-12 23:03:10 t 1 1 196428 562 0.00 2019-12-12 23:03:51 2019-12-12 23:04:53 t 1 1 196433 722 0.00 2019-12-12 23:01:30 2019-12-12 23:07:15 t 1 1 196435 566 0.00 2019-12-12 23:06:42 2019-12-12 23:07:20 t 1 1 196438 665 0.00 2019-12-12 23:05:04 2019-12-12 23:09:53 t 1 1 196448 738 0.00 2019-12-12 23:16:59 2019-12-12 23:17:59 t 1 1 196450 639 0.00 2019-12-12 23:18:35 2019-12-12 23:18:36 t 1 1 196451 738 0.00 2019-12-12 23:20:14 2019-12-12 23:20:24 t 1 1 196452 566 0.00 2019-12-12 23:18:45 2019-12-12 23:20:46 t 1 1 196454 639 0.00 2019-12-12 23:21:12 2019-12-12 23:21:19 t 1 1 196458 738 0.00 2019-12-12 23:24:50 2019-12-12 23:24:59 t 1 1 196460 639 0.00 2019-12-12 23:26:25 2019-12-12 23:26:34 t 1 1 196464 625 0.00 2019-12-12 23:21:23 2019-12-12 23:28:44 t 1 1 196466 716 0.00 2019-12-12 23:16:39 2019-12-12 23:31:47 t 1 1 196468 679 0.00 2019-12-12 23:25:50 2019-12-12 23:33:32 t 1 1 196472 738 0.00 2019-12-12 23:37:00 2019-12-12 23:37:11 t 1 1 196473 738 0.00 2019-12-12 23:37:20 2019-12-12 23:37:31 t 1 1 196474 738 0.00 2019-12-12 23:37:43 2019-12-12 23:37:45 t 1 1 196476 562 0.00 2019-12-12 23:39:14 2019-12-12 23:39:24 t 1 1 196477 639 0.00 2019-12-12 23:39:08 2019-12-12 23:40:20 t 1 1 196478 639 0.00 2019-12-12 23:40:27 2019-12-12 23:41:00 t 1 1 196480 738 0.00 2019-12-12 23:41:50 2019-12-12 23:41:51 t 1 1 196483 691 0.00 2019-12-12 23:42:58 2019-12-12 23:43:52 t 1 1 196485 639 0.00 2019-12-12 23:43:39 2019-12-12 23:44:24 t 1 1 196486 691 0.00 2019-12-12 23:44:09 2019-12-12 23:45:17 t 1 1 196488 738 0.00 2019-12-12 23:46:55 2019-12-12 23:47:19 t 1 1 196489 562 0.00 2019-12-12 23:50:03 2019-12-12 23:50:14 t 1 1 196492 722 0.00 2019-12-12 23:52:33 2019-12-12 23:52:46 t 1 1 196494 639 0.00 2019-12-12 23:54:43 2019-12-12 23:55:27 t 1 1 196496 551 0.00 2019-12-12 23:51:05 2019-12-12 23:56:49 t 1 1 196498 673 0.00 2019-12-12 23:37:25 2019-12-12 23:57:34 t 1 1 196501 738 0.00 2019-12-12 23:57:49 2019-12-12 23:58:12 t 1 1 196504 562 0.00 2019-12-13 00:00:43 2019-12-13 00:00:53 t 1 1 196507 738 0.00 2019-12-13 00:03:15 2019-12-13 00:03:36 t 1 1 196508 738 0.00 2019-12-13 00:03:48 2019-12-13 00:03:50 t 1 1 196509 639 0.00 2019-12-13 00:05:49 2019-12-13 00:05:57 t 1 1 196511 738 0.00 2019-12-13 00:08:36 2019-12-13 00:08:58 t 1 1 196513 481 0.00 2019-12-13 00:03:56 2019-12-13 00:09:24 t 1 1 196522 738 0.00 2019-12-13 00:19:35 2019-12-13 00:19:37 t 1 1 196525 639 0.00 2019-12-13 00:06:52 2019-12-13 00:22:59 t 1 1 196527 750 0.00 2019-12-13 00:12:45 2019-12-13 00:23:10 t 1 1 196528 481 0.00 2019-12-13 00:09:54 2019-12-13 00:25:19 t 1 1 196534 738 0.00 2019-12-13 00:29:05 2019-12-13 00:29:07 t 1 1 196537 750 0.00 2019-12-13 00:23:13 2019-12-13 00:30:52 t 1 1 196538 734 0.00 2019-12-12 23:43:51 2019-12-13 00:31:52 t 1 1 196541 738 0.00 2019-12-13 00:33:56 2019-12-13 00:34:19 t 1 1 196542 562 0.00 2019-12-13 00:34:10 2019-12-13 00:34:56 t 1 1 196543 687 0.00 2019-12-13 00:33:27 2019-12-13 00:36:55 t 1 1 196544 639 0.00 2019-12-13 00:24:33 2019-12-13 00:38:10 t 1 1 196552 562 0.00 2019-12-13 00:45:26 2019-12-13 00:45:36 t 1 1 196553 566 0.00 2019-12-13 00:44:58 2019-12-13 00:46:21 t 1 1 196555 639 0.00 2019-12-13 00:46:10 2019-12-13 00:49:38 t 1 1 196560 564 0.00 2019-12-13 00:42:02 2019-12-13 00:54:47 t 1 1 196573 639 0.00 2019-12-13 00:55:04 2019-12-13 01:03:55 t 1 1 196575 738 0.00 2019-12-13 01:05:01 2019-12-13 01:05:03 t 1 1 196578 562 0.00 2019-12-13 01:06:51 2019-12-13 01:07:06 t 1 1 196582 639 0.00 2019-12-13 01:09:09 2019-12-13 01:09:16 t 1 1 196583 738 0.00 2019-12-13 01:09:52 2019-12-13 01:09:54 t 1 1 196585 738 0.00 2019-12-13 01:12:49 2019-12-13 01:12:56 t 1 1 196588 562 0.00 2019-12-13 01:17:38 2019-12-13 01:17:55 t 1 1 196590 738 0.00 2019-12-13 01:20:23 2019-12-13 01:20:48 t 1 1 196598 738 0.00 2019-12-13 01:36:43 2019-12-13 01:37:07 t 1 1 196599 738 0.00 2019-12-13 01:37:35 2019-12-13 01:37:58 t 1 1 196600 562 0.00 2019-12-13 01:39:24 2019-12-13 01:39:31 t 1 1 196608 738 0.00 2019-12-13 01:58:31 2019-12-13 01:58:52 t 1 1 196611 738 0.00 2019-12-13 02:03:53 2019-12-13 02:04:15 t 1 1 196612 687 0.00 2019-12-13 01:18:24 2019-12-13 02:04:47 t 1 1 196303 591 0.00 2019-12-12 21:12:12 2019-12-12 21:13:58 t 1 1 196306 724 0.00 2019-12-12 21:17:51 2019-12-12 21:19:06 t 1 1 196308 611 0.00 2019-12-12 21:15:15 2019-12-12 21:22:14 t 1 1 196311 639 0.00 2019-12-12 21:26:05 2019-12-12 21:26:43 t 1 1 196313 591 0.00 2019-12-12 21:27:55 2019-12-12 21:28:03 t 1 1 196314 696 0.00 2019-12-12 21:27:07 2019-12-12 21:28:08 t 1 1 196318 716 0.00 2019-12-12 21:22:06 2019-12-12 21:28:55 t 1 1 196323 639 0.00 2019-12-12 21:31:00 2019-12-12 21:32:52 t 1 1 196325 660 0.00 2019-12-12 21:20:44 2019-12-12 21:35:05 t 1 1 196329 667 0.00 2019-12-12 21:50:54 2019-12-12 21:51:09 t 1 1 196333 538 0.00 2019-12-12 21:52:04 2019-12-12 21:53:44 t 1 1 196341 681 0.00 2019-12-12 22:03:48 2019-12-12 22:07:38 t 1 1 196343 639 0.00 2019-12-12 22:09:08 2019-12-12 22:09:45 t 1 1 196345 667 0.00 2019-12-12 22:10:36 2019-12-12 22:11:36 t 1 1 196346 734 0.00 2019-12-12 21:59:32 2019-12-12 22:12:05 t 1 1 196352 639 0.00 2019-12-12 22:20:14 2019-12-12 22:20:41 t 1 1 196354 220 0.00 2019-12-12 21:36:51 2019-12-12 22:22:14 t 1 2 196355 689 0.00 2019-12-12 22:23:12 2019-12-12 22:23:18 t 1 1 196361 687 0.00 2019-12-12 22:31:51 2019-12-12 22:32:40 t 1 1 196366 581 0.00 2019-12-12 22:17:10 2019-12-12 22:33:34 t 1 1 196368 681 0.00 2019-12-12 22:32:40 2019-12-12 22:34:04 t 1 1 196373 544 0.00 2019-12-12 21:58:11 2019-12-12 22:36:39 t 1 1 196376 691 0.00 2019-12-12 22:33:17 2019-12-12 22:38:23 t 1 1 196377 718 0.00 2019-12-12 22:26:48 2019-12-12 22:39:03 t 1 1 196381 679 0.00 2019-12-12 22:41:06 2019-12-12 22:42:32 t 1 1 196384 722 0.00 2019-12-12 22:39:03 2019-12-12 22:43:36 t 1 1 196385 689 0.00 2019-12-12 22:29:16 2019-12-12 22:44:11 t 1 1 196387 562 0.00 2019-12-12 22:45:23 2019-12-12 22:46:46 t 1 1 196390 591 0.00 2019-12-12 22:10:55 2019-12-12 22:49:13 t 1 1 196392 665 0.00 2019-12-12 22:50:58 2019-12-12 22:51:32 t 1 1 196393 738 0.00 2019-12-12 22:52:32 2019-12-12 22:52:54 t 1 1 196398 738 0.00 2019-12-12 22:54:51 2019-12-12 22:54:54 t 1 1 196400 722 0.00 2019-12-12 22:54:38 2019-12-12 22:55:12 t 1 1 196401 738 0.00 2019-12-12 22:55:20 2019-12-12 22:55:30 t 1 1 196406 738 0.00 2019-12-12 22:57:45 2019-12-12 22:57:56 t 1 1 196408 738 0.00 2019-12-12 22:58:04 2019-12-12 22:58:15 t 1 1 196410 738 0.00 2019-12-12 22:58:27 2019-12-12 22:58:30 t 1 1 196415 611 0.00 2019-12-12 22:59:12 2019-12-12 23:01:04 t 1 1 196417 722 0.00 2019-12-12 23:01:13 2019-12-12 23:01:22 t 1 1 196420 544 0.00 2019-12-12 22:41:59 2019-12-12 23:01:40 t 1 1 196421 738 0.00 2019-12-12 23:02:18 2019-12-12 23:02:28 t 1 1 196422 738 0.00 2019-12-12 23:02:39 2019-12-12 23:02:42 t 1 1 196425 665 0.00 2019-12-12 22:53:09 2019-12-12 23:03:43 t 1 1 196426 738 0.00 2019-12-12 23:03:56 2019-12-12 23:04:08 t 1 1 196436 562 0.00 2019-12-12 23:05:45 2019-12-12 23:08:15 t 1 1 196439 639 0.00 2019-12-12 23:10:48 2019-12-12 23:11:05 t 1 1 196441 738 0.00 2019-12-12 23:11:33 2019-12-12 23:11:35 t 1 1 196442 625 0.00 2019-12-12 22:46:25 2019-12-12 23:11:57 t 1 1 196443 722 0.00 2019-12-12 23:07:15 2019-12-12 23:14:21 t 1 1 196445 639 0.00 2019-12-12 23:15:48 2019-12-12 23:16:15 t 1 1 196449 566 0.00 2019-12-12 23:07:34 2019-12-12 23:18:05 t 1 1 196455 625 0.00 2019-12-12 23:11:57 2019-12-12 23:21:23 t 1 1 196456 562 0.00 2019-12-12 23:20:27 2019-12-12 23:22:31 t 1 1 196457 738 0.00 2019-12-12 23:23:20 2019-12-12 23:23:22 t 1 1 196459 639 0.00 2019-12-12 23:25:30 2019-12-12 23:25:58 t 1 1 196462 562 0.00 2019-12-12 23:27:17 2019-12-12 23:27:40 t 1 1 196465 562 0.00 2019-12-12 23:28:20 2019-12-12 23:29:02 t 1 1 196469 687 0.00 2019-12-12 23:34:57 2019-12-12 23:35:18 t 1 1 196470 581 0.00 2019-12-12 22:58:56 2019-12-12 23:36:11 t 1 1 196471 738 0.00 2019-12-12 23:36:50 2019-12-12 23:36:52 t 1 1 196479 679 0.00 2019-12-12 23:38:52 2019-12-12 23:41:50 t 1 1 196482 707 0.00 2019-12-12 22:35:26 2019-12-12 23:43:52 t 1 1 196487 622 0.00 2019-12-12 23:41:44 2019-12-12 23:45:33 t 1 1 196493 738 0.00 2019-12-12 23:52:24 2019-12-12 23:52:47 t 1 1 196495 738 0.00 2019-12-12 23:55:52 2019-12-12 23:56:43 t 1 1 196499 716 0.00 2019-12-12 23:31:47 2019-12-12 23:57:38 t 1 1 196500 581 0.00 2019-12-12 23:41:29 2019-12-12 23:57:44 t 1 1 196503 637 0.00 2019-12-12 23:58:54 2019-12-12 23:59:14 t 1 1 196506 639 0.00 2019-12-12 23:15:06 2019-12-13 00:03:01 t 1 1 196516 665 0.00 2019-12-12 23:34:24 2019-12-13 00:12:46 t 1 1 196520 738 0.00 2019-12-13 00:18:14 2019-12-13 00:18:23 t 1 1 196521 738 0.00 2019-12-13 00:19:19 2019-12-13 00:19:23 t 1 1 196523 738 0.00 2019-12-13 00:20:13 2019-12-13 00:20:22 t 1 1 196531 679 0.00 2019-12-13 00:02:57 2019-12-13 00:26:50 t 1 1 196533 738 0.00 2019-12-13 00:28:47 2019-12-13 00:28:54 t 1 1 196535 392 0.00 2019-12-12 22:18:26 2019-12-13 00:29:21 t 1 2 196536 716 0.00 2019-12-13 00:06:25 2019-12-13 00:29:47 t 1 1 196539 544 0.00 2019-12-13 00:07:44 2019-12-13 00:32:10 t 1 1 196540 562 0.00 2019-12-13 00:33:55 2019-12-13 00:34:00 t 1 1 196546 738 0.00 2019-12-13 00:39:23 2019-12-13 00:39:25 t 1 1 196547 738 0.00 2019-12-12 23:16:52 2019-12-13 00:42:02 t 1 1 196548 716 0.00 2019-12-13 00:37:48 2019-12-13 00:42:41 t 1 1 196551 738 0.00 2019-12-13 00:44:30 2019-12-13 00:44:34 t 1 1 196554 566 0.00 2019-12-13 00:46:37 2019-12-13 00:47:43 t 1 1 196557 738 0.00 2019-12-13 00:49:51 2019-12-13 00:49:53 t 1 1 196558 738 0.00 2019-12-13 00:49:38 2019-12-13 00:54:37 t 1 1 196561 551 0.00 2019-12-13 00:53:32 2019-12-13 00:55:04 t 1 1 196562 696 0.00 2019-12-13 00:48:31 2019-12-13 00:55:24 t 1 1 196563 544 0.00 2019-12-13 00:55:22 2019-12-13 00:55:59 t 1 1 196565 687 0.00 2019-12-13 00:38:30 2019-12-13 00:56:47 t 1 1 196566 679 0.00 2019-12-13 00:57:27 2019-12-13 00:57:38 t 1 1 196567 750 0.00 2019-12-13 00:30:55 2019-12-13 00:59:11 t 1 1 196570 738 0.00 2019-12-13 01:01:19 2019-12-13 01:01:31 t 1 1 196571 738 0.00 2019-12-13 01:01:43 2019-12-13 01:01:45 t 1 1 196574 738 0.00 2019-12-13 01:04:48 2019-12-13 01:04:55 t 1 1 196576 625 0.00 2019-12-13 00:43:30 2019-12-13 01:05:09 t 1 1 196580 639 0.00 2019-12-13 01:05:50 2019-12-13 01:07:48 t 1 1 196581 551 0.00 2019-12-13 01:08:48 2019-12-13 01:09:04 t 1 1 196587 738 0.00 2019-12-13 01:14:58 2019-12-13 01:15:20 t 1 1 196589 736 0.00 2019-12-13 01:03:48 2019-12-13 01:19:29 t 1 1 196592 639 0.00 2019-12-13 01:09:31 2019-12-13 01:24:01 t 1 1 196596 562 0.00 2019-12-13 01:28:12 2019-12-13 01:28:45 t 1 1 196597 738 0.00 2019-12-13 01:31:18 2019-12-13 01:31:41 t 1 1 196601 679 0.00 2019-12-13 01:18:11 2019-12-13 01:41:15 t 1 1 196603 744 0.00 2019-12-13 00:15:53 2019-12-13 01:42:52 t 1 1 196604 738 0.00 2019-12-13 01:47:38 2019-12-13 01:49:01 t 1 1 196606 738 0.00 2019-12-13 01:53:05 2019-12-13 01:53:28 t 1 1 196607 679 0.00 2019-12-13 01:41:15 2019-12-13 01:56:40 t 1 1 196615 738 0.00 2019-12-13 02:08:14 2019-12-13 02:08:16 t 1 1 196618 562 0.00 2019-12-13 02:11:35 2019-12-13 02:11:53 t 1 1 196621 687 0.00 2019-12-13 02:04:48 2019-12-13 02:13:22 t 1 1 196630 738 0.00 2019-12-13 02:19:10 2019-12-13 02:19:46 t 1 1 196632 687 0.00 2019-12-13 02:17:57 2019-12-13 02:20:35 t 1 1 196635 738 0.00 2019-12-13 02:21:35 2019-12-13 02:22:11 t 1 1 196638 738 0.00 2019-12-13 02:23:07 2019-12-13 02:23:13 t 1 1 196639 738 0.00 2019-12-13 02:22:17 2019-12-13 02:23:46 t 1 1 196643 738 0.00 2019-12-13 02:25:15 2019-12-13 02:25:16 t 1 1 196648 750 0.00 2019-12-13 02:22:33 2019-12-13 02:28:12 t 1 1 196651 738 0.00 2019-12-13 02:29:29 2019-12-13 02:29:31 t 1 1 196653 738 0.00 2019-12-13 02:30:22 2019-12-13 02:30:28 t 1 1 196654 738 0.00 2019-12-13 02:30:42 2019-12-13 02:31:13 t 1 1 196655 738 0.00 2019-12-13 02:31:24 2019-12-13 02:31:56 t 1 1 196657 738 0.00 2019-12-13 02:32:25 2019-12-13 02:32:58 t 1 1 196658 738 0.00 2019-12-13 02:33:04 2019-12-13 02:33:04 t 1 1 196661 738 0.00 2019-12-13 02:35:41 2019-12-13 02:36:12 t 1 1 196662 692 0.00 2019-12-13 02:32:52 2019-12-13 02:36:42 t 1 1 196664 738 0.00 2019-12-13 02:37:15 2019-12-13 02:37:20 t 1 1 196665 738 0.00 2019-12-13 02:37:41 2019-12-13 02:38:13 t 1 1 196666 738 0.00 2019-12-13 02:38:31 2019-12-13 02:39:04 t 1 1 196668 738 0.00 2019-12-13 02:40:01 2019-12-13 02:40:03 t 1 1 196669 738 0.00 2019-12-13 02:40:16 2019-12-13 02:40:48 t 1 1 196671 692 0.00 2019-12-13 02:41:45 2019-12-13 02:42:10 t 1 1 196674 738 0.00 2019-12-13 02:42:59 2019-12-13 02:43:32 t 1 1 196677 738 0.00 2019-12-13 02:44:46 2019-12-13 02:45:19 t 1 1 196679 692 0.00 2019-12-13 02:47:11 2019-12-13 02:47:12 t 1 1 196681 738 0.00 2019-12-13 02:50:59 2019-12-13 02:51:31 t 1 1 196683 738 0.00 2019-12-13 02:52:24 2019-12-13 02:52:25 t 1 1 196686 692 0.00 2019-12-13 02:52:45 2019-12-13 02:52:46 t 1 1 196689 738 0.00 2019-12-13 02:53:44 2019-12-13 02:54:17 t 1 1 196690 687 0.00 2019-12-13 02:54:36 2019-12-13 02:54:43 t 1 1 196692 738 0.00 2019-12-13 02:54:37 2019-12-13 02:55:08 t 1 1 196693 738 0.00 2019-12-13 02:55:26 2019-12-13 02:55:58 t 1 1 196694 738 0.00 2019-12-13 02:56:18 2019-12-13 02:56:51 t 1 1 196696 738 0.00 2019-12-13 02:57:51 2019-12-13 02:57:52 t 1 1 196698 738 0.00 2019-12-13 02:57:58 2019-12-13 02:58:03 t 1 1 196699 692 0.00 2019-12-13 02:58:06 2019-12-13 02:58:19 t 1 1 196700 692 0.00 2019-12-13 02:58:42 2019-12-13 02:58:42 t 1 1 196706 738 0.00 2019-12-13 03:02:10 2019-12-13 03:02:11 t 1 1 196707 692 0.00 2019-12-13 03:03:06 2019-12-13 03:03:07 t 1 1 196708 562 0.00 2019-12-13 03:05:30 2019-12-13 03:05:39 t 1 1 196709 738 0.00 2019-12-13 03:05:43 2019-12-13 03:05:56 t 1 1 196712 738 0.00 2019-12-13 03:06:52 2019-12-13 03:06:53 t 1 1 196715 692 0.00 2019-12-13 03:07:46 2019-12-13 03:08:47 t 1 1 196717 738 0.00 2019-12-13 03:08:49 2019-12-13 03:09:21 t 1 1 196719 738 0.00 2019-12-13 03:10:32 2019-12-13 03:11:05 t 1 1 196720 738 0.00 2019-12-13 03:11:16 2019-12-13 03:11:48 t 1 1 196724 692 0.00 2019-12-13 03:13:10 2019-12-13 03:13:18 t 1 1 196726 738 0.00 2019-12-13 03:13:03 2019-12-13 03:13:36 t 1 1 196727 738 0.00 2019-12-13 03:13:42 2019-12-13 03:13:43 t 1 1 196732 687 0.00 2019-12-13 03:15:09 2019-12-13 03:16:35 t 1 1 196733 679 0.00 2019-12-13 03:16:36 2019-12-13 03:16:40 t 1 1 196736 692 0.00 2019-12-13 03:18:05 2019-12-13 03:18:06 t 1 1 196740 738 0.00 2019-12-13 03:19:32 2019-12-13 03:20:05 t 1 1 196753 738 0.00 2019-12-13 03:26:05 2019-12-13 03:26:37 t 1 1 196754 738 0.00 2019-12-13 03:26:50 2019-12-13 03:27:21 t 1 1 196756 738 0.00 2019-12-13 03:28:25 2019-12-13 03:28:31 t 1 1 196759 692 0.00 2019-12-13 03:28:52 2019-12-13 03:29:53 t 1 1 196761 738 0.00 2019-12-13 03:30:23 2019-12-13 03:30:25 t 1 1 196762 538 0.00 2019-12-13 03:16:10 2019-12-13 03:30:55 t 1 1 196765 738 0.00 2019-12-13 03:31:55 2019-12-13 03:31:56 t 1 1 196766 562 0.00 2019-12-13 03:33:09 2019-12-13 03:33:16 t 1 1 196769 738 0.00 2019-12-13 03:34:49 2019-12-13 03:35:21 t 1 1 196770 687 0.00 2019-12-13 03:20:48 2019-12-13 03:35:43 t 1 1 196775 738 0.00 2019-12-13 03:38:52 2019-12-13 03:39:00 t 1 1 196776 692 0.00 2019-12-13 03:39:05 2019-12-13 03:39:28 t 1 1 196781 692 0.00 2019-12-13 03:40:32 2019-12-13 03:40:43 t 1 1 196782 738 0.00 2019-12-13 03:40:55 2019-12-13 03:41:01 t 1 1 196783 738 0.00 2019-12-13 03:41:14 2019-12-13 03:41:47 t 1 1 196787 738 0.00 2019-12-13 03:42:25 2019-12-13 03:43:02 t 1 1 196789 692 0.00 2019-12-13 03:43:12 2019-12-13 03:43:39 t 1 1 196794 692 0.00 2019-12-13 03:44:56 2019-12-13 03:45:29 t 1 1 196797 692 0.00 2019-12-13 03:45:42 2019-12-13 03:45:43 t 1 1 196799 692 0.00 2019-12-13 03:46:51 2019-12-13 03:47:04 t 1 1 196801 738 0.00 2019-12-13 03:46:47 2019-12-13 03:47:19 t 1 1 196803 692 0.00 2019-12-13 03:47:49 2019-12-13 03:47:50 t 1 1 196806 738 0.00 2019-12-13 03:48:16 2019-12-13 03:48:49 t 1 1 196807 738 0.00 2019-12-13 03:49:06 2019-12-13 03:49:39 t 1 1 196812 738 0.00 2019-12-13 03:50:44 2019-12-13 03:51:16 t 1 1 196813 738 0.00 2019-12-13 03:51:27 2019-12-13 03:51:59 t 1 1 196814 738 0.00 2019-12-13 03:52:19 2019-12-13 03:52:51 t 1 1 196816 562 0.00 2019-12-13 03:53:21 2019-12-13 03:53:34 t 1 1 196819 738 0.00 2019-12-13 03:53:25 2019-12-13 03:53:58 t 1 1 196825 738 0.00 2019-12-13 03:54:23 2019-12-13 03:54:50 t 1 1 196828 611 0.00 2019-12-13 03:55:04 2019-12-13 03:55:04 f 1 1 196831 611 0.00 2019-12-13 03:55:24 2019-12-13 03:55:24 f 1 1 196833 738 0.00 2019-12-13 03:55:07 2019-12-13 03:55:44 t 1 1 196835 738 0.00 2019-12-13 03:56:54 2019-12-13 03:57:27 t 1 1 196837 738 0.00 2019-12-13 03:58:04 2019-12-13 03:58:48 t 1 1 196840 738 0.00 2019-12-13 03:59:54 2019-12-13 04:00:27 t 1 1 196849 692 0.00 2019-12-13 04:06:07 2019-12-13 04:06:08 t 1 1 196850 692 0.00 2019-12-13 04:06:16 2019-12-13 04:06:16 t 1 1 196855 738 0.00 2019-12-13 04:09:22 2019-12-13 04:09:29 t 1 1 196858 692 0.00 2019-12-13 04:10:08 2019-12-13 04:10:12 t 1 1 196860 692 0.00 2019-12-13 04:10:17 2019-12-13 04:10:24 t 1 1 196861 692 0.00 2019-12-13 04:10:30 2019-12-13 04:10:33 t 1 1 196867 692 0.00 2019-12-13 04:10:57 2019-12-13 04:12:06 t 1 1 196868 738 0.00 2019-12-13 04:12:18 2019-12-13 04:12:50 t 1 1 196871 562 0.00 2019-12-13 04:14:53 2019-12-13 04:15:09 t 1 1 196875 611 0.00 2019-12-13 03:55:49 2019-12-13 04:19:30 t 1 1 196876 692 0.00 2019-12-13 04:18:46 2019-12-13 04:19:47 t 1 1 196877 692 0.00 2019-12-13 04:21:23 2019-12-13 04:21:24 t 1 1 196883 738 0.00 2019-12-13 04:24:29 2019-12-13 04:25:04 t 1 1 196895 738 0.00 2019-12-13 04:29:36 2019-12-13 04:30:09 t 1 1 196896 692 0.00 2019-12-13 04:30:09 2019-12-13 04:30:30 t 1 1 196613 679 0.00 2019-12-13 01:56:40 2019-12-13 02:06:10 t 1 1 196614 679 0.00 2019-12-13 02:06:42 2019-12-13 02:06:56 t 1 1 196616 738 0.00 2019-12-13 02:09:22 2019-12-13 02:10:33 t 1 1 196617 738 0.00 2019-12-13 02:10:46 2019-12-13 02:11:19 t 1 1 196622 738 0.00 2019-12-13 02:13:16 2019-12-13 02:13:47 t 1 1 196624 738 0.00 2019-12-13 02:14:43 2019-12-13 02:15:09 t 1 1 196625 738 0.00 2019-12-13 02:15:31 2019-12-13 02:16:05 t 1 1 196628 738 0.00 2019-12-13 02:17:23 2019-12-13 02:17:59 t 1 1 196629 738 0.00 2019-12-13 02:18:12 2019-12-13 02:18:44 t 1 1 196631 738 0.00 2019-12-13 02:19:59 2019-12-13 02:20:33 t 1 1 196636 562 0.00 2019-12-13 02:22:23 2019-12-13 02:22:35 t 1 1 196652 738 0.00 2019-12-13 02:29:37 2019-12-13 02:29:37 t 1 1 196656 738 0.00 2019-12-13 02:32:01 2019-12-13 02:32:03 t 1 1 196660 738 0.00 2019-12-13 02:35:28 2019-12-13 02:35:41 t 1 1 196672 692 0.00 2019-12-13 02:42:16 2019-12-13 02:42:16 t 1 1 196676 738 0.00 2019-12-13 02:43:52 2019-12-13 02:44:26 t 1 1 196678 738 0.00 2019-12-13 02:45:32 2019-12-13 02:45:33 t 1 1 196684 738 0.00 2019-12-13 02:52:31 2019-12-13 02:52:37 t 1 1 196687 738 0.00 2019-12-13 02:52:59 2019-12-13 02:53:31 t 1 1 196688 687 0.00 2019-12-13 02:20:40 2019-12-13 02:53:48 t 1 1 196691 562 0.00 2019-12-13 02:54:43 2019-12-13 02:54:54 t 1 1 196697 692 0.00 2019-12-13 02:57:38 2019-12-13 02:58:01 t 1 1 196702 738 0.00 2019-12-13 02:59:10 2019-12-13 02:59:42 t 1 1 196703 738 0.00 2019-12-13 03:00:08 2019-12-13 03:00:48 t 1 1 196704 738 0.00 2019-12-13 03:01:20 2019-12-13 03:01:54 t 1 1 196713 692 0.00 2019-12-13 03:07:04 2019-12-13 03:07:05 t 1 1 196716 738 0.00 2019-12-13 03:08:37 2019-12-13 03:08:50 t 1 1 196722 738 0.00 2019-12-13 03:12:09 2019-12-13 03:12:41 t 1 1 196725 692 0.00 2019-12-13 03:13:24 2019-12-13 03:13:25 t 1 1 196730 514 0.00 2019-12-12 22:33:20 2019-12-13 03:16:07 t 1 1 196731 679 0.00 2019-12-13 03:10:41 2019-12-13 03:16:31 t 1 1 196734 738 0.00 2019-12-13 03:16:14 2019-12-13 03:16:46 t 1 1 196739 687 0.00 2019-12-13 03:17:51 2019-12-13 03:19:54 t 1 1 196742 738 0.00 2019-12-13 03:21:35 2019-12-13 03:22:10 t 1 1 196745 738 0.00 2019-12-13 03:22:31 2019-12-13 03:23:03 t 1 1 196747 679 0.00 2019-12-13 03:22:43 2019-12-13 03:23:52 t 1 1 196749 738 0.00 2019-12-13 03:23:57 2019-12-13 03:24:37 t 1 1 196750 692 0.00 2019-12-13 03:23:08 2019-12-13 03:24:46 t 1 1 196758 738 0.00 2019-12-13 03:28:44 2019-12-13 03:29:16 t 1 1 196768 692 0.00 2019-12-13 03:33:41 2019-12-13 03:34:58 t 1 1 196777 692 0.00 2019-12-13 03:39:33 2019-12-13 03:39:34 t 1 1 196778 738 0.00 2019-12-13 03:39:11 2019-12-13 03:39:45 t 1 1 196780 738 0.00 2019-12-13 03:40:08 2019-12-13 03:40:41 t 1 1 196784 738 0.00 2019-12-13 03:41:54 2019-12-13 03:41:55 t 1 1 196786 562 0.00 2019-12-13 03:42:42 2019-12-13 03:42:52 t 1 1 196790 738 0.00 2019-12-13 03:43:22 2019-12-13 03:43:55 t 1 1 196793 738 0.00 2019-12-13 03:44:51 2019-12-13 03:45:26 t 1 1 196795 738 0.00 2019-12-13 03:45:32 2019-12-13 03:45:34 t 1 1 196796 692 0.00 2019-12-13 03:44:44 2019-12-13 03:45:42 t 1 1 196798 738 0.00 2019-12-13 03:45:47 2019-12-13 03:46:19 t 1 1 196800 692 0.00 2019-12-13 03:47:10 2019-12-13 03:47:15 t 1 1 196805 692 0.00 2019-12-13 03:48:31 2019-12-13 03:48:44 t 1 1 196810 738 0.00 2019-12-13 03:50:00 2019-12-13 03:50:31 t 1 1 196811 692 0.00 2019-12-13 03:48:50 2019-12-13 03:50:46 t 1 1 196815 738 0.00 2019-12-13 03:52:57 2019-12-13 03:53:03 t 1 1 196817 611 0.00 2019-12-13 03:53:34 2019-12-13 03:53:34 f 1 1 196818 611 0.00 2019-12-13 03:53:48 2019-12-13 03:53:48 f 1 1 196820 611 0.00 2019-12-13 03:54:04 2019-12-13 03:54:04 f 1 1 196823 611 0.00 2019-12-13 03:53:25 2019-12-13 03:54:26 t 1 1 196826 611 0.00 2019-12-13 03:54:50 2019-12-13 03:54:50 f 1 1 196829 692 0.00 2019-12-13 03:54:47 2019-12-13 03:55:11 t 1 1 196836 738 0.00 2019-12-13 03:57:34 2019-12-13 03:57:35 t 1 1 196841 738 0.00 2019-12-13 04:00:34 2019-12-13 04:00:36 t 1 1 196898 738 0.00 2019-12-13 04:30:29 2019-12-13 04:31:02 t 1 1 196899 738 0.00 2019-12-13 04:31:22 2019-12-13 04:31:54 t 1 1 196902 692 0.00 2019-12-13 04:32:12 2019-12-13 04:32:13 t 1 1 196903 738 0.00 2019-12-13 04:32:23 2019-12-13 04:32:55 t 1 1 196904 738 0.00 2019-12-13 04:33:08 2019-12-13 04:33:39 t 1 1 196909 692 0.00 2019-12-13 04:36:13 2019-12-13 04:36:14 t 1 1 196912 738 0.00 2019-12-13 04:34:39 2019-12-13 04:36:46 t 1 1 196917 738 0.00 2019-12-13 04:39:39 2019-12-13 04:39:46 t 1 1 196919 692 0.00 2019-12-13 04:41:02 2019-12-13 04:41:04 t 1 1 196923 692 0.00 2019-12-13 04:43:51 2019-12-13 04:44:09 t 1 1 196925 692 0.00 2019-12-13 04:44:08 2019-12-13 04:44:27 t 1 1 196932 738 0.00 2019-12-13 04:46:16 2019-12-13 04:46:48 t 1 1 196935 562 0.00 2019-12-13 04:47:18 2019-12-13 04:47:29 t 1 1 196936 581 0.00 2019-12-13 04:47:43 2019-12-13 04:47:48 t 1 1 196941 738 0.00 2019-12-13 04:49:03 2019-12-13 04:49:45 t 1 1 196943 738 0.00 2019-12-13 04:50:39 2019-12-13 04:51:13 t 1 1 196947 692 0.00 2019-12-13 04:53:49 2019-12-13 04:54:50 t 1 1 196949 692 0.00 2019-12-13 04:55:15 2019-12-13 04:55:23 t 1 1 196950 738 0.00 2019-12-13 04:55:26 2019-12-13 04:55:59 t 1 1 196952 692 0.00 2019-12-13 04:56:38 2019-12-13 04:57:01 t 1 1 196954 692 0.00 2019-12-13 04:57:15 2019-12-13 04:57:17 t 1 1 196955 738 0.00 2019-12-13 04:57:20 2019-12-13 04:57:52 t 1 1 196956 738 0.00 2019-12-13 04:57:57 2019-12-13 04:57:59 t 1 1 196963 692 0.00 2019-12-13 04:59:18 2019-12-13 04:59:19 t 1 1 196965 692 0.00 2019-12-13 04:59:27 2019-12-13 04:59:28 t 1 1 196966 738 0.00 2019-12-13 04:59:10 2019-12-13 04:59:42 t 1 1 196970 738 0.00 2019-12-13 05:00:56 2019-12-13 05:01:32 t 1 1 196974 692 0.00 2019-12-13 05:02:35 2019-12-13 05:02:37 t 1 1 196975 738 0.00 2019-12-13 05:05:15 2019-12-13 05:05:17 t 1 1 196976 738 0.00 2019-12-13 05:05:29 2019-12-13 05:06:02 t 1 1 196977 738 0.00 2019-12-13 05:06:31 2019-12-13 05:07:03 t 1 1 196978 738 0.00 2019-12-13 05:07:09 2019-12-13 05:07:10 t 1 1 196982 738 0.00 2019-12-13 05:09:13 2019-12-13 05:09:19 t 1 1 196984 738 0.00 2019-12-13 05:10:13 2019-12-13 05:10:20 t 1 1 196985 738 0.00 2019-12-13 05:10:31 2019-12-13 05:11:03 t 1 1 196987 692 0.00 2019-12-13 05:12:12 2019-12-13 05:12:13 t 1 1 196990 692 0.00 2019-12-13 05:17:14 2019-12-13 05:17:16 t 1 1 197000 738 0.00 2019-12-13 05:27:28 2019-12-13 05:27:34 t 1 1 197004 738 0.00 2019-12-13 05:27:54 2019-12-13 05:28:07 t 1 1 197010 738 0.00 2019-12-13 05:29:38 2019-12-13 05:29:43 t 1 1 197014 738 0.00 2019-12-13 05:29:56 2019-12-13 05:31:47 t 1 1 197015 692 0.00 2019-12-13 05:32:54 2019-12-13 05:34:47 t 1 1 197018 692 0.00 2019-12-13 05:38:20 2019-12-13 05:38:25 t 1 1 197034 692 0.00 2019-12-13 06:04:21 2019-12-13 06:04:21 t 1 1 196623 738 0.00 2019-12-13 02:14:05 2019-12-13 02:14:37 t 1 1 196626 738 0.00 2019-12-13 02:16:10 2019-12-13 02:16:12 t 1 1 196627 738 0.00 2019-12-13 02:16:25 2019-12-13 02:16:56 t 1 1 196633 738 0.00 2019-12-13 02:20:44 2019-12-13 02:21:17 t 1 1 196634 738 0.00 2019-12-13 02:21:23 2019-12-13 02:21:35 t 1 1 196637 738 0.00 2019-12-13 02:22:29 2019-12-13 02:23:01 t 1 1 196640 738 0.00 2019-12-13 02:23:34 2019-12-13 02:24:08 t 1 1 196641 738 0.00 2019-12-13 02:24:14 2019-12-13 02:24:26 t 1 1 196642 738 0.00 2019-12-13 02:24:26 2019-12-13 02:24:59 t 1 1 196644 679 0.00 2019-12-13 02:07:41 2019-12-13 02:25:28 t 1 1 196645 738 0.00 2019-12-13 02:25:36 2019-12-13 02:26:12 t 1 1 196646 738 0.00 2019-12-13 02:26:25 2019-12-13 02:26:57 t 1 1 196647 738 0.00 2019-12-13 02:27:17 2019-12-13 02:27:49 t 1 1 196649 738 0.00 2019-12-13 02:28:01 2019-12-13 02:28:32 t 1 1 196650 738 0.00 2019-12-13 02:28:51 2019-12-13 02:29:23 t 1 1 196659 562 0.00 2019-12-13 02:32:59 2019-12-13 02:33:22 t 1 1 196663 738 0.00 2019-12-13 02:36:33 2019-12-13 02:37:10 t 1 1 196667 738 0.00 2019-12-13 02:39:21 2019-12-13 02:39:56 t 1 1 196670 738 0.00 2019-12-13 02:41:16 2019-12-13 02:41:48 t 1 1 196673 738 0.00 2019-12-13 02:42:10 2019-12-13 02:42:47 t 1 1 196675 562 0.00 2019-12-13 02:43:54 2019-12-13 02:44:01 t 1 1 196680 738 0.00 2019-12-13 02:50:35 2019-12-13 02:50:41 t 1 1 196682 738 0.00 2019-12-13 02:51:45 2019-12-13 02:52:17 t 1 1 196685 692 0.00 2019-12-13 02:52:16 2019-12-13 02:52:39 t 1 1 196695 738 0.00 2019-12-13 02:57:11 2019-12-13 02:57:44 t 1 1 196701 738 0.00 2019-12-13 02:58:16 2019-12-13 02:58:50 t 1 1 196705 738 0.00 2019-12-13 03:01:59 2019-12-13 03:02:05 t 1 1 196710 738 0.00 2019-12-13 03:05:55 2019-12-13 03:06:31 t 1 1 196711 692 0.00 2019-12-13 03:06:34 2019-12-13 03:06:42 t 1 1 196714 692 0.00 2019-12-13 03:07:36 2019-12-13 03:07:38 t 1 1 196718 738 0.00 2019-12-13 03:09:42 2019-12-13 03:10:19 t 1 1 196721 562 0.00 2019-12-13 03:10:56 2019-12-13 03:11:49 t 1 1 196723 692 0.00 2019-12-13 03:12:41 2019-12-13 03:13:04 t 1 1 196728 687 0.00 2019-12-13 02:54:49 2019-12-13 03:14:16 t 1 1 196729 738 0.00 2019-12-13 03:15:47 2019-12-13 03:15:54 t 1 1 196735 738 0.00 2019-12-13 03:16:59 2019-12-13 03:17:32 t 1 1 196737 738 0.00 2019-12-13 03:17:52 2019-12-13 03:18:24 t 1 1 196738 738 0.00 2019-12-13 03:18:35 2019-12-13 03:19:13 t 1 1 196741 738 0.00 2019-12-13 03:20:34 2019-12-13 03:21:07 t 1 1 196743 562 0.00 2019-12-13 03:22:06 2019-12-13 03:22:31 t 1 1 196744 679 0.00 2019-12-13 03:16:46 2019-12-13 03:22:43 t 1 1 196746 738 0.00 2019-12-13 03:23:29 2019-12-13 03:23:46 t 1 1 196748 738 0.00 2019-12-13 03:23:09 2019-12-13 03:23:58 t 1 1 196751 738 0.00 2019-12-13 03:24:51 2019-12-13 03:25:22 t 1 1 196752 738 0.00 2019-12-13 03:25:46 2019-12-13 03:25:54 t 1 1 196755 738 0.00 2019-12-13 03:27:47 2019-12-13 03:28:20 t 1 1 196757 692 0.00 2019-12-13 03:28:16 2019-12-13 03:28:38 t 1 1 196760 738 0.00 2019-12-13 03:29:45 2019-12-13 03:30:18 t 1 1 196763 738 0.00 2019-12-13 03:30:38 2019-12-13 03:31:06 t 1 1 196764 738 0.00 2019-12-13 03:31:17 2019-12-13 03:31:49 t 1 1 196767 738 0.00 2019-12-13 03:34:20 2019-12-13 03:34:36 t 1 1 196771 738 0.00 2019-12-13 03:35:41 2019-12-13 03:36:12 t 1 1 196772 738 0.00 2019-12-13 03:36:30 2019-12-13 03:37:01 t 1 1 196773 738 0.00 2019-12-13 03:37:24 2019-12-13 03:38:00 t 1 1 196774 738 0.00 2019-12-13 03:38:13 2019-12-13 03:38:45 t 1 1 196779 738 0.00 2019-12-13 03:39:50 2019-12-13 03:39:55 t 1 1 196785 738 0.00 2019-12-13 03:40:48 2019-12-13 03:42:46 t 1 1 196788 692 0.00 2019-12-13 03:42:34 2019-12-13 03:43:06 t 1 1 196791 692 0.00 2019-12-13 03:43:44 2019-12-13 03:44:22 t 1 1 196792 738 0.00 2019-12-13 03:44:08 2019-12-13 03:44:40 t 1 1 196802 692 0.00 2019-12-13 03:47:38 2019-12-13 03:47:43 t 1 1 196804 738 0.00 2019-12-13 03:47:32 2019-12-13 03:48:05 t 1 1 196808 692 0.00 2019-12-13 03:49:27 2019-12-13 03:49:50 t 1 1 196809 692 0.00 2019-12-13 03:50:03 2019-12-13 03:50:04 t 1 1 196821 611 0.00 2019-12-13 03:54:17 2019-12-13 03:54:17 f 1 1 196822 611 0.00 2019-12-13 03:54:24 2019-12-13 03:54:24 f 1 1 196824 611 0.00 2019-12-13 03:54:42 2019-12-13 03:54:42 f 1 1 196827 611 0.00 2019-12-13 03:54:58 2019-12-13 03:54:58 f 1 1 196830 611 0.00 2019-12-13 03:55:12 2019-12-13 03:55:12 f 1 1 196832 611 0.00 2019-12-13 03:54:32 2019-12-13 03:55:33 t 1 1 196834 738 0.00 2019-12-13 03:56:04 2019-12-13 03:56:41 t 1 1 196838 738 0.00 2019-12-13 03:59:09 2019-12-13 03:59:41 t 1 1 196839 692 0.00 2019-12-13 03:59:53 2019-12-13 04:00:05 t 1 1 197036 562 0.00 2019-12-13 06:13:31 2019-12-13 06:14:03 t 1 1 197038 692 0.00 2019-12-13 06:14:31 2019-12-13 06:14:32 t 1 1 197040 692 0.00 2019-12-13 06:14:40 2019-12-13 06:15:40 t 1 1 197042 692 0.00 2019-12-13 06:20:05 2019-12-13 06:20:07 t 1 1 197045 692 0.00 2019-12-13 06:25:18 2019-12-13 06:25:18 t 1 1 197047 692 0.00 2019-12-13 06:30:01 2019-12-13 06:30:02 t 1 1 197058 562 0.00 2019-12-13 06:52:07 2019-12-13 06:52:21 t 1 1 197071 220 0.00 2019-12-13 06:56:06 2019-12-13 07:11:29 t 1 2 197072 692 0.00 2019-12-13 07:11:30 2019-12-13 07:12:31 t 1 1 197076 692 0.00 2019-12-13 07:17:05 2019-12-13 07:17:06 t 1 1 197080 692 0.00 2019-12-13 07:21:39 2019-12-13 07:22:13 t 1 1 197081 692 0.00 2019-12-13 07:22:38 2019-12-13 07:22:39 t 1 1 197082 611 0.00 2019-12-13 07:20:09 2019-12-13 07:24:37 t 1 1 197085 485 0.00 2019-12-13 07:26:52 2019-12-13 07:31:34 t 1 1 197088 692 0.00 2019-12-13 07:37:20 2019-12-13 07:37:21 t 1 1 197089 692 0.00 2019-12-13 07:37:03 2019-12-13 07:38:48 t 1 1 197091 562 0.00 2019-12-13 07:45:56 2019-12-13 07:46:10 t 1 1 197097 692 0.00 2019-12-13 07:54:55 2019-12-13 07:55:09 t 1 1 197100 562 0.00 2019-12-13 07:56:38 2019-12-13 07:56:52 t 1 1 197103 675 0.00 2019-12-13 07:47:40 2019-12-13 07:59:43 t 1 1 197106 742 0.00 2019-12-13 07:57:55 2019-12-13 08:05:35 t 1 1 197109 692 0.00 2019-12-13 08:08:41 2019-12-13 08:09:59 t 1 1 197111 562 0.00 2019-12-13 08:13:12 2019-12-13 08:13:46 t 1 1 197113 692 0.00 2019-12-13 08:14:06 2019-12-13 08:14:12 t 1 1 197117 637 0.00 2019-12-13 08:19:13 2019-12-13 08:21:37 t 1 1 197119 692 0.00 2019-12-13 08:24:24 2019-12-13 08:24:25 t 1 1 197121 637 0.00 2019-12-13 08:26:32 2019-12-13 08:27:49 t 1 1 197123 692 0.00 2019-12-13 08:29:19 2019-12-13 08:29:43 t 1 1 197127 625 0.00 2019-12-13 07:31:14 2019-12-13 08:32:06 t 1 1 197128 675 0.00 2019-12-13 08:16:04 2019-12-13 08:33:09 t 1 1 197131 675 0.00 2019-12-13 08:33:09 2019-12-13 08:36:49 t 1 1 197137 692 0.00 2019-12-13 08:40:39 2019-12-13 08:40:39 t 1 1 197138 625 0.00 2019-12-13 08:32:06 2019-12-13 08:40:48 t 1 1 197139 707 0.00 2019-12-13 08:37:09 2019-12-13 08:41:46 t 1 1 197140 562 0.00 2019-12-13 08:30:52 2019-12-13 08:43:53 t 1 1 197142 591 0.00 2019-12-13 08:46:28 2019-12-13 08:49:15 t 1 1 197144 635 0.00 2019-12-13 08:23:45 2019-12-13 08:50:08 t 1 1 197154 562 0.00 2019-12-13 08:54:43 2019-12-13 08:55:34 t 1 1 197159 689 0.00 2019-12-13 08:59:05 2019-12-13 08:59:13 t 1 1 197161 689 0.00 2019-12-13 09:01:07 2019-12-13 09:02:14 t 1 1 197169 220 0.00 2019-12-13 07:56:38 2019-12-13 09:11:01 t 1 2 197170 692 0.00 2019-12-13 09:11:38 2019-12-13 09:12:00 t 1 1 197175 689 0.00 2019-12-13 09:14:08 2019-12-13 09:14:15 t 1 1 197178 673 0.00 2019-12-13 09:15:09 2019-12-13 09:17:05 t 1 1 197180 692 0.00 2019-12-13 09:17:05 2019-12-13 09:17:28 t 1 1 197181 692 0.00 2019-12-13 09:17:34 2019-12-13 09:17:40 t 1 1 197182 562 0.00 2019-12-13 09:18:36 2019-12-13 09:18:56 t 1 1 197185 611 0.00 2019-12-13 09:20:58 2019-12-13 09:20:58 f 1 1 197187 689 0.00 2019-12-13 09:20:55 2019-12-13 09:22:27 t 1 1 197190 692 0.00 2019-12-13 09:23:05 2019-12-13 09:23:10 t 1 1 197192 562 0.00 2019-12-13 09:23:42 2019-12-13 09:23:51 t 1 1 197194 694 0.00 2019-12-13 09:20:48 2019-12-13 09:24:21 t 1 1 197195 694 0.00 2019-12-13 09:24:20 2019-12-13 09:25:21 t 1 1 197205 694 0.00 2019-12-13 09:32:31 2019-12-13 09:33:52 t 1 1 197209 692 0.00 2019-12-13 09:35:03 2019-12-13 09:35:20 t 1 1 197215 675 0.00 2019-12-13 09:34:18 2019-12-13 09:39:13 t 1 1 197218 692 0.00 2019-12-13 09:39:33 2019-12-13 09:39:34 t 1 1 197219 544 0.00 2019-12-13 08:37:46 2019-12-13 09:42:14 t 1 1 197220 562 0.00 2019-12-13 09:41:14 2019-12-13 09:43:33 t 1 1 197221 692 0.00 2019-12-13 09:44:10 2019-12-13 09:44:11 t 1 1 197223 625 0.00 2019-12-13 09:26:23 2019-12-13 09:45:06 t 1 1 197224 673 0.00 2019-12-13 09:39:13 2019-12-13 09:46:04 t 1 1 197225 625 0.00 2019-12-13 09:45:06 2019-12-13 09:47:26 t 1 1 197226 481 0.00 2019-12-13 09:32:36 2019-12-13 09:49:55 t 1 1 197228 562 0.00 2019-12-13 09:45:12 2019-12-13 09:50:55 t 1 1 197230 625 0.00 2019-12-13 09:47:26 2019-12-13 09:51:51 t 1 1 197233 692 0.00 2019-12-13 09:54:44 2019-12-13 09:54:51 t 1 1 197236 692 0.00 2019-12-13 09:55:16 2019-12-13 09:55:34 t 1 1 197237 625 0.00 2019-12-13 09:51:50 2019-12-13 09:56:25 t 1 1 197241 490 0.00 2019-12-13 09:55:26 2019-12-13 10:00:55 t 1 1 197248 675 0.00 2019-12-13 10:02:02 2019-12-13 10:06:17 t 1 1 197250 562 0.00 2019-12-13 10:08:02 2019-12-13 10:08:12 t 1 1 197251 615 0.00 2019-12-13 09:55:59 2019-12-13 10:09:29 t 1 1 197257 611 0.00 2019-12-13 10:04:06 2019-12-13 10:12:42 t 1 1 197259 562 0.00 2019-12-13 10:14:23 2019-12-13 10:14:34 t 1 1 197260 622 0.00 2019-12-13 09:51:33 2019-12-13 10:14:55 t 1 1 197264 615 0.00 2019-12-13 10:09:29 2019-12-13 10:17:25 t 1 1 197269 692 0.00 2019-12-13 10:20:00 2019-12-13 10:20:23 t 1 1 197271 692 0.00 2019-12-13 10:20:36 2019-12-13 10:20:37 t 1 1 197273 692 0.00 2019-12-13 10:21:13 2019-12-13 10:21:13 f 1 1 197278 487 0.00 2019-12-13 10:13:05 2019-12-13 10:23:36 t 1 2 197279 562 0.00 2019-12-13 10:21:25 2019-12-13 10:23:48 t 1 1 197283 514 0.00 2019-12-13 09:43:29 2019-12-13 10:26:16 t 1 1 197287 671 0.00 2019-12-13 10:21:44 2019-12-13 10:33:43 t 1 1 197289 581 0.00 2019-12-13 10:34:04 2019-12-13 10:36:16 t 1 1 197292 581 0.00 2019-12-13 10:36:36 2019-12-13 10:37:02 t 1 1 197294 615 0.00 2019-12-13 10:36:13 2019-12-13 10:40:06 t 1 1 197297 722 0.00 2019-12-13 10:40:41 2019-12-13 10:41:24 t 1 1 197298 622 0.00 2019-12-13 10:25:18 2019-12-13 10:41:44 t 1 1 197300 615 0.00 2019-12-13 10:41:24 2019-12-13 10:42:20 t 1 1 197302 637 0.00 2019-12-13 10:42:49 2019-12-13 10:45:06 t 1 1 197303 675 0.00 2019-12-13 10:42:07 2019-12-13 10:45:48 t 1 1 197306 637 0.00 2019-12-13 10:47:27 2019-12-13 10:49:21 t 1 1 197307 562 0.00 2019-12-13 10:40:54 2019-12-13 10:49:52 t 1 1 197309 622 0.00 2019-12-13 10:46:08 2019-12-13 10:53:00 t 1 1 197317 750 0.00 2019-12-13 10:58:08 2019-12-13 11:01:10 t 1 1 197324 637 0.00 2019-12-13 11:06:13 2019-12-13 11:12:29 t 1 1 197325 611 0.00 2019-12-13 11:12:52 2019-12-13 11:12:52 f 1 1 197332 637 0.00 2019-12-13 11:17:18 2019-12-13 11:20:54 t 1 1 197342 656 0.00 2019-12-13 11:32:26 2019-12-13 11:39:23 t 1 1 197345 611 0.00 2019-12-13 11:37:46 2019-12-13 11:41:33 t 1 1 197350 615 0.00 2019-12-13 11:46:48 2019-12-13 11:48:10 t 1 1 197353 675 0.00 2019-12-13 11:48:35 2019-12-13 11:51:24 t 1 1 197354 615 0.00 2019-12-13 11:50:50 2019-12-13 11:52:11 t 1 1 197362 611 0.00 2019-12-13 11:59:23 2019-12-13 12:06:23 t 1 1 197364 611 0.00 2019-12-13 12:06:29 2019-12-13 12:08:35 t 1 1 197366 673 0.00 2019-12-13 12:11:44 2019-12-13 12:14:29 t 1 1 197367 673 0.00 2019-12-13 12:14:34 2019-12-13 12:17:39 t 1 1 197369 562 0.00 2019-12-13 12:13:15 2019-12-13 12:20:52 t 1 1 197373 750 0.00 2019-12-13 11:59:24 2019-12-13 12:26:35 t 1 1 197375 611 0.00 2019-12-13 12:26:37 2019-12-13 12:26:37 f 1 1 197376 611 0.00 2019-12-13 12:10:26 2019-12-13 12:27:22 t 1 1 197378 683 0.00 2019-12-13 12:15:14 2019-12-13 12:28:01 t 1 1 197380 562 0.00 2019-12-13 12:30:25 2019-12-13 12:32:07 t 1 1 197381 679 0.00 2019-12-13 12:32:13 2019-12-13 12:33:34 t 1 1 197382 637 0.00 2019-12-13 12:31:56 2019-12-13 12:38:05 t 1 1 197383 718 0.00 2019-12-13 12:36:02 2019-12-13 12:40:06 t 1 1 197386 562 0.00 2019-12-13 12:42:15 2019-12-13 12:43:00 t 1 1 197388 611 0.00 2019-12-13 12:46:00 2019-12-13 12:46:00 f 1 1 197391 656 0.00 2019-12-13 12:37:59 2019-12-13 12:46:34 t 1 1 197395 637 0.00 2019-12-13 12:50:27 2019-12-13 12:51:28 t 1 1 197397 562 0.00 2019-12-13 12:56:41 2019-12-13 12:56:52 t 1 1 197402 611 0.00 2019-12-13 12:58:15 2019-12-13 13:01:59 t 1 1 197403 562 0.00 2019-12-13 13:03:00 2019-12-13 13:04:00 t 1 1 197404 750 0.00 2019-12-13 12:26:41 2019-12-13 13:04:54 t 1 1 197405 637 0.00 2019-12-13 13:03:05 2019-12-13 13:05:44 t 1 1 197408 551 0.00 2019-12-13 11:00:33 2019-12-13 13:12:29 t 1 1 197409 675 0.00 2019-12-13 13:11:34 2019-12-13 13:13:13 t 1 1 197411 750 0.00 2019-12-13 13:05:01 2019-12-13 13:17:56 t 1 1 197414 562 0.00 2019-12-13 13:19:27 2019-12-13 13:21:38 t 1 1 197417 671 0.00 2019-12-13 13:25:27 2019-12-13 13:28:45 t 1 1 197419 649 0.00 2019-12-13 12:59:34 2019-12-13 13:30:15 t 1 1 197421 750 0.00 2019-12-13 13:19:17 2019-12-13 13:31:52 t 1 1 197429 544 0.00 2019-12-13 13:40:37 2019-12-13 13:42:23 t 1 1 197432 562 0.00 2019-12-13 13:45:50 2019-12-13 13:46:02 t 1 1 197433 625 0.00 2019-12-13 11:51:58 2019-12-13 13:47:28 t 1 1 197436 687 0.00 2019-12-13 13:47:39 2019-12-13 13:48:40 t 1 1 197437 718 0.00 2019-12-13 13:41:47 2019-12-13 13:49:29 t 1 1 197440 675 0.00 2019-12-13 13:51:42 2019-12-13 13:52:59 t 1 1 197444 687 0.00 2019-12-13 13:51:49 2019-12-13 13:56:03 t 1 1 197445 220 0.00 2019-12-13 13:01:18 2019-12-13 13:57:58 t 1 2 197141 692 0.00 2019-12-13 08:45:35 2019-12-13 08:46:48 t 1 1 197145 692 0.00 2019-12-13 08:50:40 2019-12-13 08:51:02 t 1 1 197147 692 0.00 2019-12-13 08:51:17 2019-12-13 08:51:22 t 1 1 197150 562 0.00 2019-12-13 08:51:45 2019-12-13 08:51:53 t 1 1 197151 673 0.00 2019-12-13 08:47:58 2019-12-13 08:53:00 t 1 1 197155 692 0.00 2019-12-13 08:56:06 2019-12-13 08:56:26 t 1 1 197160 689 0.00 2019-12-13 08:59:25 2019-12-13 08:59:47 t 1 1 197165 692 0.00 2019-12-13 09:06:15 2019-12-13 09:07:32 t 1 1 197166 562 0.00 2019-12-13 09:08:24 2019-12-13 09:08:32 t 1 1 197167 625 0.00 2019-12-13 08:54:29 2019-12-13 09:08:57 t 1 1 197168 689 0.00 2019-12-13 09:08:47 2019-12-13 09:10:06 t 1 1 197172 692 0.00 2019-12-13 09:12:15 2019-12-13 09:12:16 t 1 1 197173 611 0.00 2019-12-13 08:58:28 2019-12-13 09:13:02 t 1 1 197177 694 0.00 2019-12-13 08:07:54 2019-12-13 09:15:27 t 1 1 197184 689 0.00 2019-12-13 09:16:36 2019-12-13 09:20:56 t 1 1 197186 611 0.00 2019-12-13 09:13:13 2019-12-13 09:21:20 t 1 1 197189 692 0.00 2019-12-13 09:22:28 2019-12-13 09:22:50 t 1 1 197193 689 0.00 2019-12-13 09:23:42 2019-12-13 09:24:08 t 1 1 197198 689 0.00 2019-12-13 09:26:53 2019-12-13 09:27:15 t 1 1 197199 692 0.00 2019-12-13 09:27:36 2019-12-13 09:27:51 t 1 1 197202 490 0.00 2019-12-13 09:25:24 2019-12-13 09:32:05 t 1 1 197203 694 0.00 2019-12-13 09:28:07 2019-12-13 09:32:31 t 1 1 197204 679 0.00 2019-12-13 09:33:39 2019-12-13 09:33:40 t 1 1 197207 562 0.00 2019-12-13 09:29:37 2019-12-13 09:34:36 t 1 1 197208 692 0.00 2019-12-13 09:33:22 2019-12-13 09:34:39 t 1 1 197210 679 0.00 2019-12-13 09:33:43 2019-12-13 09:35:23 t 1 1 197211 692 0.00 2019-12-13 09:35:42 2019-12-13 09:36:43 t 1 1 197213 734 0.00 2019-12-13 09:32:05 2019-12-13 09:38:13 t 1 1 197217 692 0.00 2019-12-13 09:39:24 2019-12-13 09:39:25 t 1 1 197227 692 0.00 2019-12-13 09:49:13 2019-12-13 09:50:14 t 1 1 197229 591 0.00 2019-12-13 09:49:50 2019-12-13 09:51:50 t 1 1 197231 562 0.00 2019-12-13 09:51:39 2019-12-13 09:51:53 t 1 1 197232 692 0.00 2019-12-13 09:54:15 2019-12-13 09:54:38 t 1 1 197235 673 0.00 2019-12-13 09:49:01 2019-12-13 09:55:33 t 1 1 197238 692 0.00 2019-12-13 09:55:33 2019-12-13 09:56:34 t 1 1 197239 562 0.00 2019-12-13 09:58:23 2019-12-13 09:58:43 t 1 1 197242 562 0.00 2019-12-13 10:00:12 2019-12-13 10:01:03 t 1 1 197243 562 0.00 2019-12-13 10:01:16 2019-12-13 10:01:22 t 1 1 197244 692 0.00 2019-12-13 10:04:43 2019-12-13 10:05:12 t 1 1 197246 692 0.00 2019-12-13 10:05:25 2019-12-13 10:05:29 t 1 1 197247 692 0.00 2019-12-13 10:05:34 2019-12-13 10:05:40 t 1 1 197253 692 0.00 2019-12-13 10:09:45 2019-12-13 10:10:49 t 1 1 197255 675 0.00 2019-12-13 10:09:16 2019-12-13 10:11:43 t 1 1 197256 611 0.00 2019-12-13 10:12:21 2019-12-13 10:12:21 f 1 1 197261 692 0.00 2019-12-13 10:15:00 2019-12-13 10:16:01 t 1 1 197263 689 0.00 2019-12-13 10:16:14 2019-12-13 10:17:18 t 1 1 197270 562 0.00 2019-12-13 10:19:54 2019-12-13 10:20:26 t 1 1 197274 692 0.00 2019-12-13 10:21:03 2019-12-13 10:22:05 t 1 1 197276 692 0.00 2019-12-13 10:20:46 2019-12-13 10:22:49 t 1 1 197280 625 0.00 2019-12-13 10:17:05 2019-12-13 10:25:13 t 1 1 197284 562 0.00 2019-12-13 10:28:26 2019-12-13 10:30:09 t 1 1 197285 694 0.00 2019-12-13 10:23:43 2019-12-13 10:31:29 t 1 1 197286 562 0.00 2019-12-13 10:33:00 2019-12-13 10:33:42 t 1 1 197295 637 0.00 2019-12-13 10:37:31 2019-12-13 10:40:27 t 1 1 197301 750 0.00 2019-12-13 10:20:45 2019-12-13 10:43:32 t 1 1 197304 581 0.00 2019-12-13 10:45:34 2019-12-13 10:45:58 t 1 1 197308 637 0.00 2019-12-13 10:49:55 2019-12-13 10:51:41 t 1 1 197311 562 0.00 2019-12-13 10:57:20 2019-12-13 10:57:30 t 1 1 197312 750 0.00 2019-12-13 10:43:32 2019-12-13 10:58:08 t 1 1 197314 675 0.00 2019-12-13 10:53:42 2019-12-13 10:59:25 t 1 1 197319 679 0.00 2019-12-13 11:05:28 2019-12-13 11:06:39 t 1 1 197320 679 0.00 2019-12-13 11:06:48 2019-12-13 11:07:53 t 1 1 197322 673 0.00 2019-12-13 11:03:44 2019-12-13 11:09:48 t 1 1 197323 716 0.00 2019-12-13 11:10:47 2019-12-13 11:11:22 t 1 1 197327 742 0.00 2019-12-13 11:13:08 2019-12-13 11:14:38 t 1 1 197329 637 0.00 2019-12-13 11:12:55 2019-12-13 11:17:00 t 1 1 197330 562 0.00 2019-12-13 11:18:28 2019-12-13 11:19:38 t 1 1 197331 673 0.00 2019-12-13 11:19:18 2019-12-13 11:20:25 t 1 1 197333 392 0.00 2019-12-13 09:56:53 2019-12-13 11:21:07 t 1 2 197336 694 0.00 2019-12-13 11:16:28 2019-12-13 11:23:35 t 1 1 197338 675 0.00 2019-12-13 11:30:32 2019-12-13 11:34:18 t 1 1 197340 591 0.00 2019-12-13 11:35:45 2019-12-13 11:36:22 t 1 1 197341 562 0.00 2019-12-13 11:37:07 2019-12-13 11:37:23 t 1 1 197343 562 0.00 2019-12-13 11:39:54 2019-12-13 11:40:40 t 1 1 197347 750 0.00 2019-12-13 11:33:18 2019-12-13 11:44:42 t 1 1 197351 581 0.00 2019-12-13 11:42:22 2019-12-13 11:48:34 t 1 1 197356 611 0.00 2019-12-13 11:55:11 2019-12-13 11:58:50 t 1 1 197359 562 0.00 2019-12-13 12:03:46 2019-12-13 12:04:35 t 1 1 197368 481 0.00 2019-12-13 09:49:54 2019-12-13 12:20:37 t 1 1 197370 675 0.00 2019-12-13 12:22:38 2019-12-13 12:24:09 t 1 1 197371 481 0.00 2019-12-13 12:21:01 2019-12-13 12:24:57 t 1 1 197374 481 0.00 2019-12-13 12:25:08 2019-12-13 12:26:37 t 1 1 197377 485 0.00 2019-12-13 12:15:20 2019-12-13 12:27:29 t 1 1 197384 637 0.00 2019-12-13 12:38:59 2019-12-13 12:40:24 t 1 1 197389 562 0.00 2019-12-13 12:45:59 2019-12-13 12:46:08 t 1 1 197392 637 0.00 2019-12-13 12:46:47 2019-12-13 12:50:19 t 1 1 197393 656 0.00 2019-12-13 12:46:34 2019-12-13 12:51:12 t 1 1 197398 637 0.00 2019-12-13 12:54:32 2019-12-13 12:58:43 t 1 1 197399 675 0.00 2019-12-13 12:48:53 2019-12-13 12:59:37 t 1 1 197400 637 0.00 2019-12-13 12:58:55 2019-12-13 13:00:08 t 1 1 197410 562 0.00 2019-12-13 13:16:43 2019-12-13 13:16:51 t 1 1 197412 750 0.00 2019-12-13 13:18:10 2019-12-13 13:19:18 t 1 1 197418 562 0.00 2019-12-13 13:29:59 2019-12-13 13:30:04 t 1 1 197420 718 0.00 2019-12-13 13:30:04 2019-12-13 13:31:07 t 1 1 197423 311 0.00 2019-12-13 13:30:43 2019-12-13 13:35:58 t 1 2 197425 730 0.00 2019-12-13 13:26:37 2019-12-13 13:36:34 t 1 1 197426 687 0.00 2019-12-13 13:11:50 2019-12-13 13:38:08 t 1 1 197428 750 0.00 2019-12-13 13:32:13 2019-12-13 13:41:47 t 1 1 197431 611 0.00 2019-12-13 13:42:30 2019-12-13 13:45:46 t 1 1 197434 687 0.00 2019-12-13 13:47:23 2019-12-13 13:47:32 t 1 1 197435 459 0.00 2019-12-13 13:43:45 2019-12-13 13:47:51 t 1 2 197438 649 0.00 2019-12-13 13:30:15 2019-12-13 13:51:42 t 1 1 197442 562 0.00 2019-12-13 13:54:57 2019-12-13 13:55:19 t 1 1 197443 485 0.00 2019-12-13 13:51:54 2019-12-13 13:55:54 t 1 1 197453 673 0.00 2019-12-13 13:55:09 2019-12-13 14:07:14 t 1 1 197455 718 0.00 2019-12-13 13:59:06 2019-12-13 14:10:01 t 1 1 197462 562 0.00 2019-12-13 14:16:37 2019-12-13 14:16:46 t 1 1 197143 625 0.00 2019-12-13 08:40:48 2019-12-13 08:49:15 t 1 1 197146 637 0.00 2019-12-13 08:40:13 2019-12-13 08:51:17 t 1 1 197148 734 0.00 2019-12-13 08:50:08 2019-12-13 08:51:26 t 1 1 197149 692 0.00 2019-12-13 08:51:45 2019-12-13 08:51:45 t 1 1 197152 562 0.00 2019-12-13 08:52:27 2019-12-13 08:53:00 t 1 1 197153 625 0.00 2019-12-13 08:49:15 2019-12-13 08:54:30 t 1 1 197156 692 0.00 2019-12-13 08:56:26 2019-12-13 08:56:32 t 1 1 197157 692 0.00 2019-12-13 08:56:54 2019-12-13 08:56:55 t 1 1 197158 689 0.00 2019-12-13 08:42:53 2019-12-13 08:58:13 t 1 1 197162 692 0.00 2019-12-13 09:01:11 2019-12-13 09:02:41 t 1 1 197163 689 0.00 2019-12-13 09:04:13 2019-12-13 09:04:20 t 1 1 197164 562 0.00 2019-12-13 08:58:04 2019-12-13 09:06:16 t 1 1 197171 692 0.00 2019-12-13 09:12:06 2019-12-13 09:12:07 t 1 1 197174 562 0.00 2019-12-13 09:13:01 2019-12-13 09:13:12 t 1 1 197176 673 0.00 2019-12-13 09:04:30 2019-12-13 09:15:10 t 1 1 197179 562 0.00 2019-12-13 09:16:42 2019-12-13 09:17:09 t 1 1 197183 694 0.00 2019-12-13 09:15:27 2019-12-13 09:20:51 t 1 1 197188 744 0.00 2019-12-13 08:49:43 2019-12-13 09:22:33 t 1 1 197191 692 0.00 2019-12-13 09:23:33 2019-12-13 09:23:33 t 1 1 197196 625 0.00 2019-12-13 09:14:51 2019-12-13 09:26:24 t 1 1 197197 689 0.00 2019-12-13 09:25:26 2019-12-13 09:26:43 t 1 1 197200 692 0.00 2019-12-13 09:27:56 2019-12-13 09:29:14 t 1 1 197201 689 0.00 2019-12-13 09:31:13 2019-12-13 09:31:33 t 1 1 197206 673 0.00 2019-12-13 09:26:35 2019-12-13 09:34:17 t 1 1 197212 692 0.00 2019-12-13 09:35:35 2019-12-13 09:36:48 t 1 1 197214 692 0.00 2019-12-13 09:38:53 2019-12-13 09:39:07 t 1 1 197216 562 0.00 2019-12-13 09:35:29 2019-12-13 09:39:19 t 1 1 197222 692 0.00 2019-12-13 09:44:19 2019-12-13 09:44:20 t 1 1 197234 490 0.00 2019-12-13 09:38:13 2019-12-13 09:55:26 t 1 1 197240 692 0.00 2019-12-13 09:59:48 2019-12-13 10:00:48 t 1 1 197245 673 0.00 2019-12-13 10:00:28 2019-12-13 10:05:25 t 1 1 197249 692 0.00 2019-12-13 10:05:46 2019-12-13 10:06:46 t 1 1 197252 490 0.00 2019-12-13 10:01:17 2019-12-13 10:10:13 t 1 1 197254 689 0.00 2019-12-13 10:07:38 2019-12-13 10:11:28 t 1 1 197258 487 0.00 2019-12-13 10:12:53 2019-12-13 10:12:57 t 1 2 197262 562 0.00 2019-12-13 10:16:59 2019-12-13 10:17:04 t 1 1 197265 562 0.00 2019-12-13 10:17:20 2019-12-13 10:17:34 t 1 1 197266 673 0.00 2019-12-13 10:11:51 2019-12-13 10:19:08 t 1 1 197267 675 0.00 2019-12-13 10:17:26 2019-12-13 10:19:54 t 1 1 197268 694 0.00 2019-12-13 09:34:13 2019-12-13 10:20:17 t 1 1 197272 707 0.00 2019-12-13 08:47:09 2019-12-13 10:20:52 t 1 1 197275 689 0.00 2019-12-13 10:20:52 2019-12-13 10:22:36 t 1 1 197277 611 0.00 2019-12-13 10:20:41 2019-12-13 10:23:28 t 1 1 197281 622 0.00 2019-12-13 10:14:55 2019-12-13 10:25:18 t 1 1 197282 562 0.00 2019-12-13 10:24:06 2019-12-13 10:25:54 t 1 1 197288 671 0.00 2019-12-13 10:33:42 2019-12-13 10:35:32 t 1 1 197290 581 0.00 2019-12-13 10:36:23 2019-12-13 10:36:29 t 1 1 197291 637 0.00 2019-12-13 10:35:35 2019-12-13 10:36:50 t 1 1 197293 581 0.00 2019-12-13 10:37:10 2019-12-13 10:37:11 t 1 1 197296 675 0.00 2019-12-13 10:37:40 2019-12-13 10:40:34 t 1 1 197299 673 0.00 2019-12-13 10:34:12 2019-12-13 10:42:15 t 1 1 197305 581 0.00 2019-12-13 10:46:19 2019-12-13 10:48:52 t 1 1 197310 637 0.00 2019-12-13 10:53:34 2019-12-13 10:54:18 t 1 1 197313 667 0.00 2019-12-13 10:56:06 2019-12-13 10:58:28 t 1 1 197315 551 0.00 2019-12-13 10:42:26 2019-12-13 11:00:33 t 1 1 197316 487 0.00 2019-12-13 10:54:37 2019-12-13 11:00:42 t 1 2 197318 637 0.00 2019-12-13 11:03:10 2019-12-13 11:05:13 t 1 1 197321 615 0.00 2019-12-13 11:00:20 2019-12-13 11:08:14 t 1 1 197326 611 0.00 2019-12-13 11:08:16 2019-12-13 11:12:56 t 1 1 197328 694 0.00 2019-12-13 10:32:59 2019-12-13 11:16:29 t 1 1 197334 220 0.00 2019-12-13 11:14:41 2019-12-13 11:21:23 t 1 2 197335 562 0.00 2019-12-13 11:21:30 2019-12-13 11:21:41 t 1 1 197337 562 0.00 2019-12-13 11:30:04 2019-12-13 11:30:32 t 1 1 197339 625 0.00 2019-12-13 10:31:12 2019-12-13 11:35:45 t 1 1 197344 615 0.00 2019-12-13 11:25:51 2019-12-13 11:41:23 t 1 1 197346 615 0.00 2019-12-13 11:41:47 2019-12-13 11:43:05 t 1 1 197348 656 0.00 2019-12-13 11:39:23 2019-12-13 11:47:26 t 1 1 197349 673 0.00 2019-12-13 11:23:50 2019-12-13 11:47:58 t 1 1 197352 625 0.00 2019-12-13 11:37:44 2019-12-13 11:51:02 t 1 1 197355 562 0.00 2019-12-13 11:54:45 2019-12-13 11:56:15 t 1 1 197357 750 0.00 2019-12-13 11:44:29 2019-12-13 11:59:18 t 1 1 197358 635 0.00 2019-12-13 11:40:06 2019-12-13 12:01:18 t 1 1 197360 656 0.00 2019-12-13 11:47:26 2019-12-13 12:05:04 t 1 1 197361 656 0.00 2019-12-13 12:05:04 2019-12-13 12:06:08 t 1 1 197363 611 0.00 2019-12-13 12:08:35 2019-12-13 12:08:35 f 1 1 197365 562 0.00 2019-12-13 12:04:40 2019-12-13 12:09:10 t 1 1 197372 562 0.00 2019-12-13 12:20:52 2019-12-13 12:24:58 t 1 1 197379 671 0.00 2019-12-13 12:26:11 2019-12-13 12:32:01 t 1 1 197385 637 0.00 2019-12-13 12:41:25 2019-12-13 12:42:51 t 1 1 197387 631 0.00 2019-12-13 12:44:18 2019-12-13 12:44:44 t 1 1 197390 611 0.00 2019-12-13 12:42:04 2019-12-13 12:46:32 t 1 1 197394 718 0.00 2019-12-13 12:49:33 2019-12-13 12:51:21 t 1 1 197396 637 0.00 2019-12-13 12:52:05 2019-12-13 12:53:53 t 1 1 197401 707 0.00 2019-12-13 12:38:54 2019-12-13 13:00:12 t 1 1 197406 562 0.00 2019-12-13 13:06:25 2019-12-13 13:06:25 t 1 1 197407 562 0.00 2019-12-13 13:06:30 2019-12-13 13:08:42 t 1 1 197413 637 0.00 2019-12-13 13:07:02 2019-12-13 13:19:19 t 1 1 197415 551 0.00 2019-12-13 13:12:29 2019-12-13 13:24:43 t 1 1 197416 538 0.00 2019-12-13 11:56:19 2019-12-13 13:27:29 t 1 1 197422 675 0.00 2019-12-13 13:32:40 2019-12-13 13:33:29 t 1 1 197424 485 0.00 2019-12-13 13:32:46 2019-12-13 13:36:01 t 1 1 197427 544 0.00 2019-12-13 13:40:22 2019-12-13 13:41:25 t 1 1 197430 673 0.00 2019-12-13 13:36:12 2019-12-13 13:45:07 t 1 1 197439 687 0.00 2019-12-13 13:48:54 2019-12-13 13:51:44 t 1 1 197441 673 0.00 2019-12-13 13:45:07 2019-12-13 13:55:09 t 1 1 197446 538 0.00 2019-12-13 13:27:32 2019-12-13 13:58:59 t 1 1 197448 622 0.00 2019-12-13 10:53:35 2019-12-13 13:59:23 t 1 1 197451 637 0.00 2019-12-13 14:02:51 2019-12-13 14:04:01 t 1 1 197452 562 0.00 2019-12-13 14:05:40 2019-12-13 14:06:01 t 1 1 197454 481 0.00 2019-12-13 13:55:54 2019-12-13 14:09:57 t 1 1 197458 687 0.00 2019-12-13 14:12:58 2019-12-13 14:13:14 t 1 1 197460 538 0.00 2019-12-13 14:14:26 2019-12-13 14:16:08 t 1 1 197463 718 0.00 2019-12-13 14:16:36 2019-12-13 14:19:55 t 1 1 197468 485 0.00 2019-12-13 14:09:57 2019-12-13 14:22:28 t 1 1 197469 730 0.00 2019-12-13 14:20:12 2019-12-13 14:23:09 t 1 1 197473 551 0.00 2019-12-13 13:24:43 2019-12-13 14:26:54 t 1 1 197474 562 0.00 2019-12-13 14:27:03 2019-12-13 14:27:27 t 1 1 197447 718 0.00 2019-12-13 13:49:29 2019-12-13 13:59:06 t 1 1 197449 637 0.00 2019-12-13 13:19:19 2019-12-13 14:02:34 t 1 1 197450 622 0.00 2019-12-13 13:59:23 2019-12-13 14:03:10 t 1 1 197456 220 0.00 2019-12-13 14:09:46 2019-12-13 14:12:09 t 1 2 197457 649 0.00 2019-12-13 14:10:29 2019-12-13 14:12:58 t 1 1 197459 687 0.00 2019-12-13 14:15:36 2019-12-13 14:15:44 t 1 1 197461 750 0.00 2019-12-13 14:10:01 2019-12-13 14:16:36 t 1 1 197465 687 0.00 2019-12-13 14:15:51 2019-12-13 14:21:20 t 1 1 197466 611 0.00 2019-12-13 14:21:56 2019-12-13 14:21:56 f 1 1 197471 687 0.00 2019-12-13 14:24:19 2019-12-13 14:24:37 t 1 1 197475 656 0.00 2019-12-13 13:55:27 2019-12-13 14:27:38 t 1 1 197476 485 0.00 2019-12-13 14:22:28 2019-12-13 14:29:48 t 1 1 197477 673 0.00 2019-12-13 14:25:07 2019-12-13 14:31:55 t 1 1 197479 637 0.00 2019-12-13 14:04:17 2019-12-13 14:36:45 t 1 1 197485 633 0.00 2019-12-13 14:40:03 2019-12-13 14:43:01 t 1 1 197487 631 0.00 2019-12-13 14:45:07 2019-12-13 14:45:54 t 1 1 197488 551 0.00 2019-12-13 14:26:54 2019-12-13 14:46:35 t 1 1 197490 545 0.00 2019-12-13 14:17:06 2019-12-13 14:48:01 t 1 1 197492 611 0.00 2019-12-13 14:46:24 2019-12-13 14:50:30 t 1 1 197493 637 0.00 2019-12-13 14:38:21 2019-12-13 14:51:30 t 1 1 197494 611 0.00 2019-12-13 14:51:41 2019-12-13 14:51:41 f 1 1 197495 611 0.00 2019-12-13 14:52:36 2019-12-13 14:52:36 f 1 1 197497 722 0.00 2019-12-13 14:47:12 2019-12-13 14:54:45 t 1 1 197501 673 0.00 2019-12-13 14:31:55 2019-12-13 14:59:59 t 1 1 197504 637 0.00 2019-12-13 14:52:12 2019-12-13 15:03:57 t 1 1 197507 459 0.00 2019-12-13 14:55:05 2019-12-13 15:06:17 t 1 2 197508 637 0.00 2019-12-13 15:04:50 2019-12-13 15:07:14 t 1 1 197510 562 0.00 2019-12-13 15:07:04 2019-12-13 15:08:49 t 1 1 197512 722 0.00 2019-12-13 15:01:50 2019-12-13 15:09:57 t 1 1 197515 485 0.00 2019-12-13 15:01:00 2019-12-13 15:14:47 t 1 1 197516 545 0.00 2019-12-13 15:11:59 2019-12-13 15:15:27 t 1 1 197518 611 0.00 2019-12-13 15:09:35 2019-12-13 15:17:25 t 1 1 197521 637 0.00 2019-12-13 15:16:48 2019-12-13 15:20:30 t 1 1 197523 551 0.00 2019-12-13 14:58:30 2019-12-13 15:21:23 t 1 1 197528 730 0.00 2019-12-13 15:24:01 2019-12-13 15:26:57 t 1 1 197538 687 0.00 2019-12-13 15:09:54 2019-12-13 15:33:56 t 1 1 197540 722 0.00 2019-12-13 15:28:44 2019-12-13 15:34:18 t 1 1 197543 637 0.00 2019-12-13 15:35:57 2019-12-13 15:37:24 t 1 1 197544 562 0.00 2019-12-13 15:38:12 2019-12-13 15:38:28 t 1 1 197547 611 0.00 2019-12-13 15:45:05 2019-12-13 15:45:51 t 1 1 197549 637 0.00 2019-12-13 15:39:22 2019-12-13 15:47:56 t 1 1 197550 671 0.00 2019-12-13 15:45:31 2019-12-13 15:48:38 t 1 1 197552 746 0.00 2019-12-13 15:21:08 2019-12-13 15:53:27 t 1 1 197554 718 0.00 2019-12-13 15:42:47 2019-12-13 15:54:30 t 1 1 197556 562 0.00 2019-12-13 15:58:18 2019-12-13 15:58:51 t 1 1 197560 716 0.00 2019-12-13 15:55:41 2019-12-13 16:01:04 t 1 1 197563 718 0.00 2019-12-13 15:54:30 2019-12-13 16:03:00 t 1 1 197568 746 0.00 2019-12-13 15:53:27 2019-12-13 16:07:16 t 1 1 197569 675 0.00 2019-12-13 16:05:44 2019-12-13 16:11:22 t 1 1 197572 656 0.00 2019-12-13 16:05:42 2019-12-13 16:12:53 t 1 1 197576 562 0.00 2019-12-13 16:19:21 2019-12-13 16:20:07 t 1 1 197582 637 0.00 2019-12-13 16:21:18 2019-12-13 16:23:38 t 1 1 197583 611 0.00 2019-12-13 16:24:17 2019-12-13 16:24:17 f 1 1 197589 485 0.00 2019-12-13 16:24:00 2019-12-13 16:31:26 t 1 1 197591 611 0.00 2019-12-13 16:24:48 2019-12-13 16:31:28 t 1 1 197593 750 0.00 2019-12-13 16:22:58 2019-12-13 16:33:13 t 1 1 197597 611 0.00 2019-12-13 16:32:16 2019-12-13 16:44:26 t 1 1 197602 220 0.00 2019-12-13 16:03:17 2019-12-13 16:47:00 t 1 2 197604 637 0.00 2019-12-13 16:46:17 2019-12-13 16:47:21 t 1 1 197606 622 0.00 2019-12-13 16:35:04 2019-12-13 16:48:16 t 1 1 197612 212 0.00 2019-12-13 16:51:51 2019-12-13 16:51:51 f 1 2 197613 581 0.00 2019-12-13 16:48:39 2019-12-13 16:54:40 t 1 1 197618 459 0.00 2019-12-13 16:56:14 2019-12-13 16:59:20 t 1 2 197619 562 0.00 2019-12-13 16:57:53 2019-12-13 17:00:02 t 1 1 197622 675 0.00 2019-12-13 17:02:26 2019-12-13 17:05:25 t 1 1 197624 485 0.00 2019-12-13 16:57:53 2019-12-13 17:06:41 t 1 1 197627 637 0.00 2019-12-13 16:48:22 2019-12-13 17:07:56 t 1 1 197632 689 0.00 2019-12-13 17:10:40 2019-12-13 17:11:51 t 1 1 197638 611 0.00 2019-12-13 17:15:22 2019-12-13 17:17:36 t 1 1 197652 687 0.00 2019-12-13 17:24:35 2019-12-13 17:31:02 t 1 1 197657 581 0.00 2019-12-13 17:34:12 2019-12-13 17:34:25 t 1 1 197659 722 0.00 2019-12-13 17:20:01 2019-12-13 17:35:39 t 1 1 197661 562 0.00 2019-12-13 17:36:50 2019-12-13 17:37:00 t 1 1 197669 631 0.00 2019-12-13 17:41:49 2019-12-13 17:42:08 t 1 1 197672 581 0.00 2019-12-13 17:44:19 2019-12-13 17:44:44 t 1 1 197675 692 0.00 2019-12-13 17:32:40 2019-12-13 17:46:44 t 1 1 197681 581 0.00 2019-12-13 17:48:17 2019-12-13 17:49:19 t 1 1 197686 716 0.00 2019-12-13 17:48:02 2019-12-13 17:51:03 t 1 1 197689 611 0.00 2019-12-13 17:49:48 2019-12-13 17:53:00 t 1 1 197692 562 0.00 2019-12-13 17:54:05 2019-12-13 17:54:54 t 1 1 197701 581 0.00 2019-12-13 17:57:19 2019-12-13 17:58:46 t 1 1 197708 679 0.00 2019-12-13 18:02:57 2019-12-13 18:03:23 t 1 1 197709 562 0.00 2019-12-13 18:03:23 2019-12-13 18:03:38 t 1 1 197712 545 0.00 2019-12-13 18:03:26 2019-12-13 18:04:26 t 1 1 197715 485 0.00 2019-12-13 18:05:42 2019-12-13 18:06:36 t 1 1 197718 562 0.00 2019-12-13 18:06:52 2019-12-13 18:07:06 t 1 1 197724 528 0.00 2019-12-13 18:09:17 2019-12-13 18:09:38 t 1 1 197725 544 0.00 2019-12-13 18:03:41 2019-12-13 18:10:12 t 1 1 197728 663 0.00 2019-12-13 17:59:06 2019-12-13 18:12:14 t 1 1 197731 675 0.00 2019-12-13 18:12:13 2019-12-13 18:13:56 t 1 1 197738 673 0.00 2019-12-13 18:14:52 2019-12-13 18:16:24 t 1 1 197739 679 0.00 2019-12-13 18:16:32 2019-12-13 18:16:47 t 1 1 197746 679 0.00 2019-12-13 18:19:37 2019-12-13 18:19:53 t 1 1 197464 615 0.00 2019-12-13 14:18:55 2019-12-13 14:20:18 t 1 1 197467 611 0.00 2019-12-13 14:12:34 2019-12-13 14:22:17 t 1 1 197470 625 0.00 2019-12-13 13:48:50 2019-12-13 14:23:52 t 1 1 197472 673 0.00 2019-12-13 14:07:14 2019-12-13 14:25:07 t 1 1 197480 631 0.00 2019-12-13 14:36:31 2019-12-13 14:37:35 t 1 1 197481 637 0.00 2019-12-13 14:36:39 2019-12-13 14:38:05 t 1 1 197483 734 0.00 2019-12-13 14:01:23 2019-12-13 14:39:31 t 1 1 197484 633 0.00 2019-12-13 13:03:30 2019-12-13 14:40:01 t 1 1 197500 551 0.00 2019-12-13 14:46:35 2019-12-13 14:58:30 t 1 1 197505 687 0.00 2019-12-13 14:24:46 2019-12-13 15:04:00 t 1 1 197511 687 0.00 2019-12-13 15:04:00 2019-12-13 15:09:46 t 1 1 197513 633 0.00 2019-12-13 14:43:11 2019-12-13 15:11:59 t 1 1 197519 722 0.00 2019-12-13 15:09:57 2019-12-13 15:18:50 t 1 1 197524 551 0.00 2019-12-13 15:21:23 2019-12-13 15:22:13 t 1 1 197525 622 0.00 2019-12-13 15:21:36 2019-12-13 15:22:40 t 1 1 197527 637 0.00 2019-12-13 15:20:57 2019-12-13 15:24:32 t 1 1 197529 562 0.00 2019-12-13 15:27:11 2019-12-13 15:27:38 t 1 1 197531 673 0.00 2019-12-13 15:27:55 2019-12-13 15:30:36 t 1 1 197532 611 0.00 2019-12-13 15:30:39 2019-12-13 15:30:39 f 1 1 197534 611 0.00 2019-12-13 15:27:15 2019-12-13 15:30:59 t 1 1 197536 578 0.00 2019-12-13 15:20:53 2019-12-13 15:31:42 t 1 1 197537 611 0.00 2019-12-13 15:33:36 2019-12-13 15:33:44 t 1 1 197541 637 0.00 2019-12-13 15:24:31 2019-12-13 15:35:47 t 1 1 197548 687 0.00 2019-12-13 15:33:56 2019-12-13 15:46:03 t 1 1 197551 562 0.00 2019-12-13 15:46:36 2019-12-13 15:53:11 t 1 1 197555 485 0.00 2019-12-13 15:48:22 2019-12-13 15:54:47 t 1 1 197557 498 0.00 2019-12-13 15:27:58 2019-12-13 15:59:04 t 1 2 197558 637 0.00 2019-12-13 15:48:25 2019-12-13 15:59:56 t 1 1 197562 220 0.00 2019-12-13 15:07:35 2019-12-13 16:01:57 t 1 2 197564 694 0.00 2019-12-13 16:00:26 2019-12-13 16:03:07 t 1 1 197566 718 0.00 2019-12-13 16:03:32 2019-12-13 16:03:33 t 1 1 197571 746 0.00 2019-12-13 16:07:16 2019-12-13 16:12:14 t 1 1 197577 691 0.00 2019-12-13 16:18:05 2019-12-13 16:20:10 t 1 1 197578 611 0.00 2019-12-13 16:21:06 2019-12-13 16:21:06 f 1 1 197584 611 0.00 2019-12-13 16:22:08 2019-12-13 16:24:24 t 1 1 197586 562 0.00 2019-12-13 16:28:17 2019-12-13 16:28:50 t 1 1 197588 562 0.00 2019-12-13 16:30:20 2019-12-13 16:30:30 t 1 1 197595 538 0.00 2019-12-13 16:28:15 2019-12-13 16:40:15 t 1 1 197596 485 0.00 2019-12-13 16:32:25 2019-12-13 16:42:47 t 1 1 197598 675 0.00 2019-12-13 16:42:00 2019-12-13 16:44:31 t 1 1 197599 667 0.00 2019-12-13 16:06:49 2019-12-13 16:44:51 t 1 1 197601 637 0.00 2019-12-13 16:33:42 2019-12-13 16:46:18 t 1 1 197603 485 0.00 2019-12-13 16:42:47 2019-12-13 16:47:05 t 1 1 197608 485 0.00 2019-12-13 16:49:23 2019-12-13 16:49:44 t 1 1 197610 562 0.00 2019-12-13 16:38:09 2019-12-13 16:50:59 t 1 1 197621 734 0.00 2019-12-13 15:04:51 2019-12-13 17:01:30 t 1 1 197629 581 0.00 2019-12-13 17:01:13 2019-12-13 17:09:12 t 1 1 197631 673 0.00 2019-12-13 16:43:36 2019-12-13 17:11:21 t 1 1 197634 694 0.00 2019-12-13 17:11:14 2019-12-13 17:13:29 t 1 1 197635 562 0.00 2019-12-13 17:15:05 2019-12-13 17:15:24 t 1 1 197640 578 0.00 2019-12-13 15:31:42 2019-12-13 17:19:32 t 1 1 197644 687 0.00 2019-12-13 17:10:35 2019-12-13 17:24:35 t 1 1 197647 485 0.00 2019-12-13 17:23:38 2019-12-13 17:27:08 t 1 1 197649 581 0.00 2019-12-13 17:29:06 2019-12-13 17:29:12 t 1 1 197654 692 0.00 2019-12-13 17:32:00 2019-12-13 17:32:23 t 1 1 197655 649 0.00 2019-12-13 16:49:39 2019-12-13 17:33:02 t 1 1 197664 687 0.00 2019-12-13 17:31:02 2019-12-13 17:40:14 t 1 1 197665 687 0.00 2019-12-13 17:40:14 2019-12-13 17:40:46 t 1 1 197674 732 0.00 2019-12-13 17:34:54 2019-12-13 17:46:06 t 1 1 197676 692 0.00 2019-12-13 17:47:43 2019-12-13 17:47:52 t 1 1 197679 679 0.00 2019-12-13 17:45:48 2019-12-13 17:48:37 t 1 1 197680 611 0.00 2019-12-13 17:49:09 2019-12-13 17:49:09 f 1 1 197687 625 0.00 2019-12-13 17:41:59 2019-12-13 17:51:05 t 1 1 197688 625 0.00 2019-12-13 17:51:41 2019-12-13 17:52:25 t 1 1 197690 687 0.00 2019-12-13 17:43:05 2019-12-13 17:53:02 t 1 1 197691 562 0.00 2019-12-13 17:50:03 2019-12-13 17:53:54 t 1 1 197694 722 0.00 2019-12-13 17:50:15 2019-12-13 17:55:38 t 1 1 197698 732 0.00 2019-12-13 17:56:37 2019-12-13 17:57:55 t 1 1 197700 562 0.00 2019-12-13 17:56:46 2019-12-13 17:58:32 t 1 1 197702 687 0.00 2019-12-13 17:53:02 2019-12-13 17:58:58 t 1 1 197703 564 0.00 2019-12-13 17:54:27 2019-12-13 18:01:15 t 1 1 197704 637 0.00 2019-12-13 17:56:42 2019-12-13 18:01:54 t 1 1 197706 545 0.00 2019-12-13 17:58:00 2019-12-13 18:02:25 t 1 1 197713 220 0.00 2019-12-13 17:47:24 2019-12-13 18:04:58 t 1 2 197719 679 0.00 2019-12-13 18:07:28 2019-12-13 18:07:39 t 1 1 197721 679 0.00 2019-12-13 18:08:02 2019-12-13 18:08:07 t 1 1 197726 679 0.00 2019-12-13 18:10:38 2019-12-13 18:10:39 t 1 1 197732 562 0.00 2019-12-13 18:11:33 2019-12-13 18:13:57 t 1 1 197735 679 0.00 2019-12-13 18:15:17 2019-12-13 18:15:44 t 1 1 197741 637 0.00 2019-12-13 18:02:31 2019-12-13 18:17:32 t 1 1 197742 679 0.00 2019-12-13 18:17:32 2019-12-13 18:17:51 t 1 1 197743 679 0.00 2019-12-13 18:18:14 2019-12-13 18:18:24 t 1 1 197744 679 0.00 2019-12-13 18:18:40 2019-12-13 18:18:51 t 1 1 197748 679 0.00 2019-12-13 18:20:10 2019-12-13 18:20:25 t 1 1 197749 679 0.00 2019-12-13 18:20:41 2019-12-13 18:20:53 t 1 1 197478 730 0.00 2019-12-13 14:33:04 2019-12-13 14:36:07 t 1 1 197482 562 0.00 2019-12-13 14:38:00 2019-12-13 14:38:09 t 1 1 197486 562 0.00 2019-12-13 14:45:24 2019-12-13 14:45:44 t 1 1 197489 691 0.00 2019-12-13 14:46:29 2019-12-13 14:47:42 t 1 1 197491 656 0.00 2019-12-13 14:27:38 2019-12-13 14:48:53 t 1 1 197496 611 0.00 2019-12-13 14:51:08 2019-12-13 14:52:49 t 1 1 197498 562 0.00 2019-12-13 14:56:09 2019-12-13 14:56:28 t 1 1 197499 750 0.00 2019-12-13 14:38:46 2019-12-13 14:57:42 t 1 1 197502 485 0.00 2019-12-13 14:49:55 2019-12-13 15:01:00 t 1 1 197503 722 0.00 2019-12-13 14:54:45 2019-12-13 15:01:50 t 1 1 197506 734 0.00 2019-12-13 14:39:31 2019-12-13 15:04:49 t 1 1 197509 637 0.00 2019-12-13 15:07:29 2019-12-13 15:08:44 t 1 1 197514 562 0.00 2019-12-13 15:12:13 2019-12-13 15:13:22 t 1 1 197517 611 0.00 2019-12-13 15:17:07 2019-12-13 15:17:07 f 1 1 197520 562 0.00 2019-12-13 15:18:15 2019-12-13 15:19:58 t 1 1 197522 633 0.00 2019-12-13 15:15:26 2019-12-13 15:21:18 t 1 1 197526 485 0.00 2019-12-13 15:14:47 2019-12-13 15:24:31 t 1 1 197530 722 0.00 2019-12-13 15:18:50 2019-12-13 15:28:44 t 1 1 197533 744 0.00 2019-12-13 15:22:13 2019-12-13 15:30:54 t 1 1 197535 562 0.00 2019-12-13 15:30:11 2019-12-13 15:31:11 t 1 1 197539 545 0.00 2019-12-13 15:32:53 2019-12-13 15:34:03 t 1 1 197542 545 0.00 2019-12-13 15:33:44 2019-12-13 15:37:05 t 1 1 197545 611 0.00 2019-12-13 15:37:05 2019-12-13 15:39:07 t 1 1 197546 551 0.00 2019-12-13 15:30:54 2019-12-13 15:44:28 t 1 1 197553 551 0.00 2019-12-13 15:44:28 2019-12-13 15:54:28 t 1 1 197559 694 0.00 2019-12-13 15:22:40 2019-12-13 16:00:03 t 1 1 197561 562 0.00 2019-12-13 16:00:15 2019-12-13 16:01:08 t 1 1 197565 562 0.00 2019-12-13 16:03:10 2019-12-13 16:03:21 t 1 1 197567 716 0.00 2019-12-13 16:01:04 2019-12-13 16:06:03 t 1 1 197570 485 0.00 2019-12-13 15:54:47 2019-12-13 16:11:59 t 1 1 197573 485 0.00 2019-12-13 16:12:00 2019-12-13 16:13:13 t 1 1 197574 562 0.00 2019-12-13 16:13:36 2019-12-13 16:13:58 t 1 1 197575 485 0.00 2019-12-13 16:16:13 2019-12-13 16:19:21 t 1 1 197579 637 0.00 2019-12-13 16:03:07 2019-12-13 16:21:13 t 1 1 197580 611 0.00 2019-12-13 15:46:11 2019-12-13 16:21:50 t 1 1 197581 750 0.00 2019-12-13 14:57:46 2019-12-13 16:22:58 t 1 1 197585 637 0.00 2019-12-13 16:23:37 2019-12-13 16:25:24 t 1 1 197587 637 0.00 2019-12-13 16:26:34 2019-12-13 16:28:58 t 1 1 197590 611 0.00 2019-12-13 16:31:26 2019-12-13 16:31:26 f 1 1 197592 637 0.00 2019-12-13 16:29:34 2019-12-13 16:32:59 t 1 1 197594 656 0.00 2019-12-13 16:12:53 2019-12-13 16:36:00 t 1 1 197600 750 0.00 2019-12-13 16:33:13 2019-12-13 16:45:31 t 1 1 197605 528 0.00 2019-12-13 16:43:26 2019-12-13 16:47:42 t 1 1 197607 675 0.00 2019-12-13 16:47:05 2019-12-13 16:49:23 t 1 1 197609 538 0.00 2019-12-13 16:45:35 2019-12-13 16:50:27 t 1 1 197611 687 0.00 2019-12-13 16:41:16 2019-12-13 16:50:59 t 1 1 197614 750 0.00 2019-12-13 16:45:31 2019-12-13 16:54:53 t 1 1 197615 656 0.00 2019-12-13 16:36:00 2019-12-13 16:56:13 t 1 1 197616 562 0.00 2019-12-13 16:54:14 2019-12-13 16:57:25 t 1 1 197617 687 0.00 2019-12-13 16:51:13 2019-12-13 16:59:05 t 1 1 197620 581 0.00 2019-12-13 16:54:40 2019-12-13 17:01:13 t 1 1 197623 687 0.00 2019-12-13 17:04:07 2019-12-13 17:06:22 t 1 1 197625 687 0.00 2019-12-13 17:06:36 2019-12-13 17:06:43 t 1 1 197626 562 0.00 2019-12-13 17:06:35 2019-12-13 17:07:46 t 1 1 197628 687 0.00 2019-12-13 17:07:03 2019-12-13 17:08:18 t 1 1 197630 694 0.00 2019-12-13 17:08:13 2019-12-13 17:10:51 t 1 1 197633 485 0.00 2019-12-13 17:06:41 2019-12-13 17:13:20 t 1 1 197636 581 0.00 2019-12-13 17:09:12 2019-12-13 17:15:24 t 1 1 197637 562 0.00 2019-12-13 17:16:09 2019-12-13 17:16:48 t 1 1 197639 675 0.00 2019-12-13 17:15:54 2019-12-13 17:18:06 t 1 1 197641 581 0.00 2019-12-13 17:15:25 2019-12-13 17:22:43 t 1 1 197642 485 0.00 2019-12-13 17:13:20 2019-12-13 17:23:38 t 1 1 197643 538 0.00 2019-12-13 17:20:35 2019-12-13 17:23:53 t 1 1 197645 581 0.00 2019-12-13 17:22:51 2019-12-13 17:24:50 t 1 1 197646 562 0.00 2019-12-13 17:25:45 2019-12-13 17:26:21 t 1 1 197648 581 0.00 2019-12-13 17:23:11 2019-12-13 17:28:58 t 1 1 197650 750 0.00 2019-12-13 16:54:53 2019-12-13 17:29:44 t 1 1 197651 730 0.00 2019-12-13 17:28:49 2019-12-13 17:30:40 t 1 1 197653 675 0.00 2019-12-13 17:29:59 2019-12-13 17:31:30 t 1 1 197656 581 0.00 2019-12-13 17:32:03 2019-12-13 17:33:24 t 1 1 197658 538 0.00 2019-12-13 17:34:03 2019-12-13 17:34:57 t 1 1 197660 625 0.00 2019-12-13 17:29:33 2019-12-13 17:36:55 t 1 1 197662 581 0.00 2019-12-13 17:37:37 2019-12-13 17:39:11 t 1 1 197663 611 0.00 2019-12-13 17:36:55 2019-12-13 17:39:44 t 1 1 197666 656 0.00 2019-12-13 17:32:07 2019-12-13 17:41:26 t 1 1 197667 673 0.00 2019-12-13 17:34:32 2019-12-13 17:41:54 t 1 1 197668 625 0.00 2019-12-13 17:36:55 2019-12-13 17:42:00 t 1 1 197670 631 0.00 2019-12-13 17:42:13 2019-12-13 17:42:30 t 1 1 197671 611 0.00 2019-12-13 17:39:53 2019-12-13 17:43:27 t 1 1 197673 679 0.00 2019-12-13 17:41:54 2019-12-13 17:45:48 t 1 1 197677 716 0.00 2019-12-13 17:22:23 2019-12-13 17:48:02 t 1 1 197678 663 0.00 2019-12-13 17:38:29 2019-12-13 17:48:23 t 1 1 197682 581 0.00 2019-12-13 17:49:27 2019-12-13 17:49:33 t 1 1 197683 611 0.00 2019-12-13 17:43:36 2019-12-13 17:49:41 t 1 1 197684 671 0.00 2019-12-13 17:43:58 2019-12-13 17:50:11 t 1 1 197685 637 0.00 2019-12-13 17:49:14 2019-12-13 17:50:40 t 1 1 197693 625 0.00 2019-12-13 17:52:24 2019-12-13 17:55:19 t 1 1 197695 663 0.00 2019-12-13 17:48:23 2019-12-13 17:56:24 t 1 1 197696 611 0.00 2019-12-13 17:54:59 2019-12-13 17:56:42 t 1 1 197697 545 0.00 2019-12-13 17:51:30 2019-12-13 17:57:00 t 1 1 197699 545 0.00 2019-12-13 17:57:05 2019-12-13 17:57:56 t 1 1 197705 679 0.00 2019-12-13 17:57:34 2019-12-13 18:02:01 t 1 1 197707 611 0.00 2019-12-13 18:01:07 2019-12-13 18:03:09 t 1 1 197710 673 0.00 2019-12-13 18:02:14 2019-12-13 18:03:39 t 1 1 197711 687 0.00 2019-12-13 18:03:51 2019-12-13 18:03:54 t 1 1 197714 675 0.00 2019-12-13 18:04:26 2019-12-13 18:05:58 t 1 1 197716 734 0.00 2019-12-13 18:05:38 2019-12-13 18:06:47 t 1 1 197717 679 0.00 2019-12-13 18:06:47 2019-12-13 18:06:53 t 1 1 197720 498 0.00 2019-12-13 17:35:20 2019-12-13 18:07:52 t 1 2 197722 562 0.00 2019-12-13 18:07:16 2019-12-13 18:08:09 t 1 1 197723 545 0.00 2019-12-13 18:08:39 2019-12-13 18:08:58 t 1 1 197727 750 0.00 2019-12-13 18:09:41 2019-12-13 18:11:33 t 1 1 197729 544 0.00 2019-12-13 18:10:12 2019-12-13 18:13:15 t 1 1 197730 679 0.00 2019-12-13 18:13:09 2019-12-13 18:13:41 t 1 1 197733 625 0.00 2019-12-13 18:09:38 2019-12-13 18:14:20 t 1 1 197734 716 0.00 2019-12-13 18:12:30 2019-12-13 18:15:36 t 1 1 197736 544 0.00 2019-12-13 18:13:15 2019-12-13 18:15:57 t 1 1 197737 679 0.00 2019-12-13 18:16:09 2019-12-13 18:16:11 t 1 1 197740 687 0.00 2019-12-13 18:15:10 2019-12-13 18:17:09 t 1 1 197745 692 0.00 2019-12-13 17:52:10 2019-12-13 18:19:18 t 1 1 197747 544 0.00 2019-12-13 18:15:57 2019-12-13 18:20:20 t 1 1 197750 562 0.00 2019-12-14 14:38:09 2019-12-14 14:48:03 t 1 1 197751 675 0.00 2019-12-14 14:47:54 2019-12-14 14:49:14 t 1 1 197752 716 0.00 2019-12-14 14:49:54 2019-12-14 14:51:00 t 1 1 197753 675 0.00 2019-12-14 14:53:11 2019-12-14 14:54:06 t 1 1 197754 562 0.00 2019-12-14 14:48:03 2019-12-14 14:54:14 t 1 1 197755 656 0.00 2019-12-14 14:54:06 2019-12-14 14:54:42 t 1 1 197756 692 0.00 2019-12-14 14:54:14 2019-12-14 14:56:09 t 1 1 197757 220 0.00 2019-12-14 14:55:13 2019-12-14 14:56:28 t 1 2 197758 692 0.00 2019-12-14 14:58:16 2019-12-14 14:59:09 t 1 1 197759 675 0.00 2019-12-14 14:56:30 2019-12-14 14:59:58 t 1 1 197760 562 0.00 2019-12-14 15:03:34 2019-12-14 15:04:18 t 1 1 197761 656 0.00 2019-12-14 14:59:58 2019-12-14 15:04:37 t 1 1 197762 732 0.00 2019-12-14 14:39:48 2019-12-14 15:05:23 t 1 1 197763 562 0.00 2019-12-14 15:05:26 2019-12-14 15:05:29 t 1 1 197764 562 0.00 2019-12-14 15:07:50 2019-12-14 15:08:49 t 1 1 197765 562 0.00 2019-12-14 15:08:59 2019-12-14 15:09:08 t 1 1 197766 675 0.00 2019-12-14 15:08:12 2019-12-14 15:09:33 t 1 1 197767 562 0.00 2019-12-14 15:09:32 2019-12-14 15:12:32 t 1 1 197768 538 0.00 2019-12-14 15:09:31 2019-12-14 15:13:02 t 1 1 197769 562 0.00 2019-12-14 15:13:02 2019-12-14 15:13:08 t 1 1 197770 692 0.00 2019-12-14 15:13:55 2019-12-14 15:14:02 t 1 1 197771 692 0.00 2019-12-14 15:14:13 2019-12-14 15:14:38 t 1 1 197772 692 0.00 2019-12-14 15:14:48 2019-12-14 15:15:14 t 1 1 197773 660 0.00 2019-12-14 15:05:41 2019-12-14 15:18:09 t 1 1 197774 562 0.00 2019-12-14 15:17:36 2019-12-14 15:18:55 t 1 1 197775 656 0.00 2019-12-14 15:10:19 2019-12-14 15:19:14 t 1 1 197776 692 0.00 2019-12-14 15:19:14 2019-12-14 15:20:14 t 1 1 197777 692 0.00 2019-12-14 15:21:35 2019-12-14 15:21:45 t 1 1 197778 692 0.00 2019-12-14 15:23:22 2019-12-14 15:23:44 t 1 1 197779 675 0.00 2019-12-14 15:26:36 2019-12-14 15:30:19 t 1 1 197780 562 0.00 2019-12-14 15:30:19 2019-12-14 15:30:34 t 1 1 197781 562 0.00 2019-12-14 15:30:54 2019-12-14 15:31:05 t 1 1 197782 562 0.00 2019-12-14 15:32:30 2019-12-14 15:34:28 t 1 1 197785 692 0.00 2019-12-14 15:37:28 2019-12-14 15:38:09 t 1 1 197786 692 0.00 2019-12-14 15:38:20 2019-12-14 15:39:13 t 1 1 197789 667 0.00 2019-12-14 15:41:13 2019-12-14 15:46:13 t 1 1 197791 615 0.00 2019-12-14 15:44:57 2019-12-14 15:51:16 t 1 1 197792 635 0.00 2019-12-14 15:43:15 2019-12-14 15:52:43 t 1 1 197794 562 0.00 2019-12-14 15:53:11 2019-12-14 15:53:52 t 1 1 197796 707 0.00 2019-12-14 15:36:11 2019-12-14 15:57:28 t 1 1 197798 615 0.00 2019-12-14 15:57:50 2019-12-14 15:59:18 t 1 1 197800 707 0.00 2019-12-14 15:57:44 2019-12-14 16:04:14 t 1 1 197807 692 0.00 2019-12-14 16:18:39 2019-12-14 16:19:32 t 1 1 197809 734 0.00 2019-12-14 16:08:20 2019-12-14 16:20:39 t 1 1 197810 631 0.00 2019-12-14 16:24:01 2019-12-14 16:24:12 t 1 1 197814 687 0.00 2019-12-14 16:28:16 2019-12-14 16:28:36 t 1 1 197816 528 0.00 2019-12-14 16:22:18 2019-12-14 16:29:56 t 1 1 197819 687 0.00 2019-12-14 16:29:05 2019-12-14 16:30:56 t 1 1 197821 687 0.00 2019-12-14 16:32:17 2019-12-14 16:32:24 t 1 1 197823 692 0.00 2019-12-14 16:34:55 2019-12-14 16:35:38 t 1 1 197825 562 0.00 2019-12-14 16:38:53 2019-12-14 16:39:03 t 1 1 197826 692 0.00 2019-12-14 16:44:33 2019-12-14 16:44:57 t 1 1 197827 692 0.00 2019-12-14 16:45:07 2019-12-14 16:45:31 t 1 1 197831 675 0.00 2019-12-14 16:47:40 2019-12-14 16:49:15 t 1 1 197833 483 0.00 2019-12-14 16:36:41 2019-12-14 16:56:33 t 1 1 197834 562 0.00 2019-12-14 16:56:55 2019-12-14 16:57:11 t 1 1 197836 692 0.00 2019-12-14 16:57:24 2019-12-14 16:57:53 t 1 1 197839 692 0.00 2019-12-14 16:59:22 2019-12-14 17:00:11 t 1 1 197842 483 0.00 2019-12-14 16:56:33 2019-12-14 17:02:31 t 1 1 197844 516 0.00 2019-12-14 17:03:32 2019-12-14 17:03:42 t 1 1 197846 675 0.00 2019-12-14 17:02:31 2019-12-14 17:04:21 t 1 1 197847 692 0.00 2019-12-14 17:02:07 2019-12-14 17:05:24 t 1 1 197849 562 0.00 2019-12-14 17:07:38 2019-12-14 17:07:53 t 1 1 197852 692 0.00 2019-12-14 17:10:25 2019-12-14 17:11:47 t 1 1 197857 692 0.00 2019-12-14 17:13:05 2019-12-14 17:14:07 t 1 1 197861 562 0.00 2019-12-14 17:22:57 2019-12-14 17:23:26 t 1 1 197866 637 0.00 2019-12-14 17:27:01 2019-12-14 17:31:49 t 1 1 197867 562 0.00 2019-12-14 17:24:19 2019-12-14 17:33:43 t 1 1 197868 637 0.00 2019-12-14 17:33:31 2019-12-14 17:34:18 t 1 1 197870 724 0.00 2019-12-14 16:24:00 2019-12-14 17:35:21 t 1 1 197872 528 0.00 2019-12-14 16:30:21 2019-12-14 17:35:39 t 1 1 197874 687 0.00 2019-12-14 17:12:34 2019-12-14 17:37:40 t 1 1 197876 667 0.00 2019-12-14 17:30:59 2019-12-14 17:38:24 t 1 1 197881 562 0.00 2019-12-14 17:36:41 2019-12-14 17:44:26 t 1 1 197884 696 0.00 2019-12-14 17:42:36 2019-12-14 17:45:56 t 1 1 197885 615 0.00 2019-12-14 17:38:50 2019-12-14 17:46:48 t 1 1 197888 692 0.00 2019-12-14 17:45:48 2019-12-14 17:48:14 t 1 1 197892 692 0.00 2019-12-14 17:48:58 2019-12-14 17:49:06 t 1 1 197893 692 0.00 2019-12-14 17:49:14 2019-12-14 17:49:27 t 1 1 197899 516 0.00 2019-12-14 17:08:50 2019-12-14 17:53:14 t 1 1 197902 615 0.00 2019-12-14 17:46:48 2019-12-14 17:55:59 t 1 1 197903 562 0.00 2019-12-14 17:49:00 2019-12-14 17:56:13 t 1 1 197904 516 0.00 2019-12-14 17:52:42 2019-12-14 17:58:56 t 1 1 197910 692 0.00 2019-12-14 18:07:43 2019-12-14 18:07:50 t 1 1 197911 692 0.00 2019-12-14 18:08:40 2019-12-14 18:10:32 t 1 1 197915 637 0.00 2019-12-14 18:06:24 2019-12-14 18:13:58 t 1 1 197920 562 0.00 2019-12-14 18:05:28 2019-12-14 18:15:57 t 1 1 197921 538 0.00 2019-12-14 16:19:06 2019-12-14 18:16:46 t 1 1 197924 692 0.00 2019-12-14 18:17:19 2019-12-14 18:17:32 t 1 1 197926 637 0.00 2019-12-14 18:14:14 2019-12-14 18:18:10 t 1 1 197928 459 0.00 2019-12-14 18:12:33 2019-12-14 18:18:38 t 1 2 197932 692 0.00 2019-12-14 18:22:12 2019-12-14 18:22:24 t 1 1 197934 692 0.00 2019-12-14 18:24:34 2019-12-14 18:24:37 t 1 1 197938 692 0.00 2019-12-14 18:25:43 2019-12-14 18:25:45 t 1 1 197948 692 0.00 2019-12-14 18:35:34 2019-12-14 18:35:41 t 1 1 197949 692 0.00 2019-12-14 18:35:47 2019-12-14 18:36:42 t 1 1 197950 615 0.00 2019-12-14 18:24:43 2019-12-14 18:38:05 t 1 1 197953 481 0.00 2019-12-14 18:26:13 2019-12-14 18:41:47 t 1 1 197954 730 0.00 2019-12-14 18:33:43 2019-12-14 18:42:11 t 1 1 197964 692 0.00 2019-12-14 18:47:15 2019-12-14 18:47:22 t 1 1 197969 562 0.00 2019-12-14 18:51:02 2019-12-14 18:51:31 t 1 1 197970 734 0.00 2019-12-14 18:41:47 2019-12-14 18:52:08 t 1 1 197972 692 0.00 2019-12-14 18:51:52 2019-12-14 18:54:56 t 1 1 197973 562 0.00 2019-12-14 18:54:56 2019-12-14 18:57:14 t 1 1 197975 692 0.00 2019-12-14 18:58:12 2019-12-14 18:58:43 t 1 1 197976 692 0.00 2019-12-14 18:58:54 2019-12-14 18:59:10 t 1 1 197977 692 0.00 2019-12-14 18:59:27 2019-12-14 18:59:35 t 1 1 197987 637 0.00 2019-12-14 18:57:43 2019-12-14 19:04:11 t 1 1 197990 692 0.00 2019-12-14 19:05:40 2019-12-14 19:05:59 t 1 1 197992 637 0.00 2019-12-14 19:04:18 2019-12-14 19:06:58 t 1 1 197994 692 0.00 2019-12-14 19:07:50 2019-12-14 19:07:50 t 1 1 198003 637 0.00 2019-12-14 19:18:07 2019-12-14 19:19:21 t 1 1 198008 692 0.00 2019-12-14 19:23:45 2019-12-14 19:24:56 t 1 1 198009 709 0.00 2019-12-14 19:26:52 2019-12-14 19:28:07 t 1 1 198010 687 0.00 2019-12-14 18:47:31 2019-12-14 19:29:33 t 1 1 198014 637 0.00 2019-12-14 19:20:28 2019-12-14 19:29:59 t 1 1 198016 730 0.00 2019-12-14 19:20:52 2019-12-14 19:30:35 t 1 1 198023 692 0.00 2019-12-14 19:32:52 2019-12-14 19:32:58 t 1 1 198024 692 0.00 2019-12-14 19:33:04 2019-12-14 19:33:05 t 1 1 198025 562 0.00 2019-12-14 19:33:02 2019-12-14 19:33:16 t 1 1 198027 692 0.00 2019-12-14 19:33:49 2019-12-14 19:34:00 t 1 1 198035 692 0.00 2019-12-14 19:38:10 2019-12-14 19:40:14 t 1 1 198038 637 0.00 2019-12-14 19:30:07 2019-12-14 19:42:02 t 1 1 198039 562 0.00 2019-12-14 19:42:45 2019-12-14 19:43:08 t 1 1 198049 675 0.00 2019-12-14 19:52:38 2019-12-14 19:54:32 t 1 1 198054 562 0.00 2019-12-14 19:56:05 2019-12-14 19:58:55 t 1 1 198055 528 0.00 2019-12-14 19:59:46 2019-12-14 20:00:51 t 1 1 198056 637 0.00 2019-12-14 19:42:08 2019-12-14 20:02:36 t 1 1 198058 528 0.00 2019-12-14 20:03:26 2019-12-14 20:03:50 t 1 1 198059 562 0.00 2019-12-14 20:04:24 2019-12-14 20:04:28 t 1 1 198062 591 0.00 2019-12-14 19:40:04 2019-12-14 20:08:02 t 1 1 198065 660 0.00 2019-12-14 19:58:58 2019-12-14 20:13:39 t 1 1 198067 635 0.00 2019-12-14 20:07:15 2019-12-14 20:13:56 t 1 1 198075 562 0.00 2019-12-14 20:05:27 2019-12-14 20:34:39 t 1 1 198077 687 0.00 2019-12-14 20:31:54 2019-12-14 20:35:07 t 1 1 198080 724 0.00 2019-12-14 20:35:08 2019-12-14 20:36:59 t 1 1 198082 528 0.00 2019-12-14 20:36:23 2019-12-14 20:38:14 t 1 1 198085 637 0.00 2019-12-14 20:37:36 2019-12-14 20:41:46 t 1 1 198089 637 0.00 2019-12-14 20:41:45 2019-12-14 20:43:48 t 1 1 197783 675 0.00 2019-12-14 15:34:28 2019-12-14 15:34:47 t 1 1 197784 692 0.00 2019-12-14 15:37:09 2019-12-14 15:37:17 t 1 1 197790 562 0.00 2019-12-14 15:48:28 2019-12-14 15:48:43 t 1 1 197793 692 0.00 2019-12-14 15:52:43 2019-12-14 15:52:51 t 1 1 197795 562 0.00 2019-12-14 15:19:45 2019-12-14 15:54:25 t 1 1 197797 615 0.00 2019-12-14 15:51:16 2019-12-14 15:57:50 t 1 1 197803 692 0.00 2019-12-14 16:13:25 2019-12-14 16:13:46 t 1 1 197804 692 0.00 2019-12-14 16:14:14 2019-12-14 16:14:28 t 1 1 197806 687 0.00 2019-12-14 16:02:45 2019-12-14 16:17:50 t 1 1 197815 675 0.00 2019-12-14 16:28:36 2019-12-14 16:28:59 t 1 1 197818 692 0.00 2019-12-14 16:30:14 2019-12-14 16:30:29 t 1 1 197822 687 0.00 2019-12-14 16:34:24 2019-12-14 16:34:35 t 1 1 197824 692 0.00 2019-12-14 16:35:49 2019-12-14 16:36:04 t 1 1 197828 692 0.00 2019-12-14 16:45:42 2019-12-14 16:46:05 t 1 1 197829 375 0.00 2019-12-14 16:46:47 2019-12-14 16:46:47 f 1 1 197838 485 0.00 2019-12-14 16:56:48 2019-12-14 16:58:56 t 1 1 197845 637 0.00 2019-12-14 17:01:15 2019-12-14 17:04:20 t 1 1 197848 637 0.00 2019-12-14 17:04:54 2019-12-14 17:05:59 t 1 1 197851 692 0.00 2019-12-14 17:08:54 2019-12-14 17:09:45 t 1 1 197853 220 0.00 2019-12-14 16:55:33 2019-12-14 17:12:09 t 1 2 197855 687 0.00 2019-12-14 16:54:09 2019-12-14 17:12:34 t 1 1 197856 692 0.00 2019-12-14 17:12:48 2019-12-14 17:13:00 t 1 1 197858 562 0.00 2019-12-14 17:14:56 2019-12-14 17:15:27 t 1 1 197860 562 0.00 2019-12-14 17:18:53 2019-12-14 17:19:08 t 1 1 197863 696 0.00 2019-12-14 17:26:45 2019-12-14 17:29:43 t 1 1 197864 615 0.00 2019-12-14 17:27:53 2019-12-14 17:30:21 t 1 1 197865 675 0.00 2019-12-14 17:29:43 2019-12-14 17:31:17 t 1 1 197869 692 0.00 2019-12-14 17:18:42 2019-12-14 17:34:41 t 1 1 197877 692 0.00 2019-12-14 17:38:19 2019-12-14 17:38:27 t 1 1 197878 679 0.00 2019-12-14 17:40:23 2019-12-14 17:40:28 t 1 1 197879 667 0.00 2019-12-14 17:38:24 2019-12-14 17:42:11 t 1 1 197882 692 0.00 2019-12-14 17:39:45 2019-12-14 17:45:23 t 1 1 197886 692 0.00 2019-12-14 17:45:56 2019-12-14 17:46:58 t 1 1 197890 692 0.00 2019-12-14 17:48:13 2019-12-14 17:48:21 t 1 1 197894 692 0.00 2019-12-14 17:49:34 2019-12-14 17:49:52 t 1 1 197897 675 0.00 2019-12-14 17:48:55 2019-12-14 17:50:53 t 1 1 197898 637 0.00 2019-12-14 17:34:30 2019-12-14 17:52:01 t 1 1 197901 675 0.00 2019-12-14 17:52:06 2019-12-14 17:55:24 t 1 1 197906 637 0.00 2019-12-14 17:52:04 2019-12-14 18:00:43 t 1 1 197908 637 0.00 2019-12-14 18:00:51 2019-12-14 18:05:25 t 1 1 197909 692 0.00 2019-12-14 18:00:27 2019-12-14 18:06:13 t 1 1 197912 692 0.00 2019-12-14 18:11:07 2019-12-14 18:12:48 t 1 1 197914 692 0.00 2019-12-14 18:12:54 2019-12-14 18:13:03 t 1 1 197916 692 0.00 2019-12-14 18:14:18 2019-12-14 18:14:26 t 1 1 197918 615 0.00 2019-12-14 17:55:59 2019-12-14 18:14:52 t 1 1 197919 722 0.00 2019-12-14 18:14:22 2019-12-14 18:15:19 t 1 1 197922 692 0.00 2019-12-14 18:16:13 2019-12-14 18:16:52 t 1 1 197925 692 0.00 2019-12-14 18:17:45 2019-12-14 18:17:49 t 1 1 197927 692 0.00 2019-12-14 18:17:55 2019-12-14 18:18:34 t 1 1 197929 692 0.00 2019-12-14 18:18:49 2019-12-14 18:18:56 t 1 1 197930 637 0.00 2019-12-14 18:18:20 2019-12-14 18:19:36 t 1 1 197931 692 0.00 2019-12-14 18:19:04 2019-12-14 18:21:57 t 1 1 197936 483 0.00 2019-12-14 17:54:01 2019-12-14 18:25:15 t 1 1 197940 562 0.00 2019-12-14 18:26:55 2019-12-14 18:27:05 t 1 1 197943 692 0.00 2019-12-14 18:28:28 2019-12-14 18:33:31 t 1 1 197944 483 0.00 2019-12-14 18:25:15 2019-12-14 18:33:50 t 1 1 197945 692 0.00 2019-12-14 18:34:44 2019-12-14 18:34:57 t 1 1 197946 692 0.00 2019-12-14 18:35:04 2019-12-14 18:35:18 t 1 1 197951 591 0.00 2019-12-14 17:49:05 2019-12-14 18:38:52 t 1 1 197952 562 0.00 2019-12-14 18:38:54 2019-12-14 18:39:57 t 1 1 197956 692 0.00 2019-12-14 18:36:48 2019-12-14 18:43:21 t 1 1 197959 692 0.00 2019-12-14 18:45:31 2019-12-14 18:45:38 t 1 1 197961 637 0.00 2019-12-14 18:41:10 2019-12-14 18:45:48 t 1 1 197965 687 0.00 2019-12-14 17:37:48 2019-12-14 18:47:31 t 1 1 197968 692 0.00 2019-12-14 18:48:50 2019-12-14 18:50:46 t 1 1 197979 692 0.00 2019-12-14 18:59:41 2019-12-14 19:01:25 t 1 1 197980 562 0.00 2019-12-14 19:02:01 2019-12-14 19:02:21 t 1 1 197982 692 0.00 2019-12-14 19:03:12 2019-12-14 19:03:23 t 1 1 197983 692 0.00 2019-12-14 19:03:40 2019-12-14 19:03:48 t 1 1 197985 734 0.00 2019-12-14 18:52:08 2019-12-14 19:04:03 t 1 1 197986 692 0.00 2019-12-14 19:04:03 2019-12-14 19:04:11 t 1 1 197991 692 0.00 2019-12-14 19:04:25 2019-12-14 19:06:14 t 1 1 197995 692 0.00 2019-12-14 19:08:15 2019-12-14 19:08:16 t 1 1 197996 675 0.00 2019-12-14 19:07:53 2019-12-14 19:10:50 t 1 1 197998 591 0.00 2019-12-14 18:38:52 2019-12-14 19:11:57 t 1 1 197999 562 0.00 2019-12-14 19:13:37 2019-12-14 19:13:59 t 1 1 198001 696 0.00 2019-12-14 19:14:47 2019-12-14 19:15:56 t 1 1 198004 709 0.00 2019-12-14 19:15:00 2019-12-14 19:21:00 t 1 1 198006 709 0.00 2019-12-14 19:21:00 2019-12-14 19:23:34 t 1 1 198007 692 0.00 2019-12-14 19:15:56 2019-12-14 19:24:41 t 1 1 198011 692 0.00 2019-12-14 19:29:40 2019-12-14 19:29:44 t 1 1 198013 692 0.00 2019-12-14 19:29:49 2019-12-14 19:29:57 t 1 1 198017 692 0.00 2019-12-14 19:30:20 2019-12-14 19:30:43 t 1 1 198019 562 0.00 2019-12-14 19:30:36 2019-12-14 19:31:02 t 1 1 198020 692 0.00 2019-12-14 19:31:06 2019-12-14 19:32:05 t 1 1 198021 692 0.00 2019-12-14 19:32:10 2019-12-14 19:32:38 t 1 1 198028 722 0.00 2019-12-14 19:34:24 2019-12-14 19:34:35 t 1 1 198032 692 0.00 2019-12-14 19:37:59 2019-12-14 19:38:00 t 1 1 198034 692 0.00 2019-12-14 19:37:49 2019-12-14 19:38:49 t 1 1 198037 696 0.00 2019-12-14 19:41:03 2019-12-14 19:41:40 t 1 1 198041 562 0.00 2019-12-14 19:45:03 2019-12-14 19:46:25 t 1 1 198044 562 0.00 2019-12-14 19:48:17 2019-12-14 19:48:25 t 1 1 198048 562 0.00 2019-12-14 19:54:07 2019-12-14 19:54:15 t 1 1 198051 528 0.00 2019-12-14 19:54:53 2019-12-14 19:55:17 t 1 1 198053 675 0.00 2019-12-14 19:57:05 2019-12-14 19:58:22 t 1 1 198057 562 0.00 2019-12-14 19:59:58 2019-12-14 20:03:26 t 1 1 198060 528 0.00 2019-12-14 20:06:45 2019-12-14 20:07:04 t 1 1 198064 675 0.00 2019-12-14 20:02:36 2019-12-14 20:13:23 t 1 1 198068 528 0.00 2019-12-14 20:12:47 2019-12-14 20:14:09 t 1 1 198069 528 0.00 2019-12-14 20:14:46 2019-12-14 20:15:55 t 1 1 198071 528 0.00 2019-12-14 20:16:38 2019-12-14 20:29:32 t 1 1 198072 528 0.00 2019-12-14 20:29:39 2019-12-14 20:30:44 t 1 1 198073 724 0.00 2019-12-14 20:31:47 2019-12-14 20:33:14 t 1 1 198074 528 0.00 2019-12-14 20:32:33 2019-12-14 20:34:14 t 1 1 198076 627 0.00 2019-12-14 20:30:58 2019-12-14 20:34:54 t 1 1 198079 562 0.00 2019-12-14 20:35:09 2019-12-14 20:35:46 t 1 1 198081 528 0.00 2019-12-14 20:36:57 2019-12-14 20:37:36 t 1 1 197787 667 0.00 2019-12-14 15:28:04 2019-12-14 15:41:13 t 1 1 197788 562 0.00 2019-12-14 15:40:58 2019-12-14 15:42:29 t 1 1 197799 562 0.00 2019-12-14 15:59:06 2019-12-14 15:59:28 t 1 1 197801 562 0.00 2019-12-14 16:05:57 2019-12-14 16:06:25 t 1 1 197802 392 0.00 2019-12-14 15:32:10 2019-12-14 16:12:32 t 1 2 197805 562 0.00 2019-12-14 16:17:18 2019-12-14 16:17:25 t 1 1 197808 687 0.00 2019-12-14 16:17:58 2019-12-14 16:19:49 t 1 1 197811 692 0.00 2019-12-14 16:24:08 2019-12-14 16:24:50 t 1 1 197812 692 0.00 2019-12-14 16:25:18 2019-12-14 16:25:32 t 1 1 197813 562 0.00 2019-12-14 16:27:48 2019-12-14 16:28:13 t 1 1 197817 692 0.00 2019-12-14 16:29:26 2019-12-14 16:30:03 t 1 1 197820 692 0.00 2019-12-14 16:32:12 2019-12-14 16:32:17 t 1 1 197830 734 0.00 2019-12-14 16:20:39 2019-12-14 16:47:32 t 1 1 197832 687 0.00 2019-12-14 16:34:59 2019-12-14 16:54:09 t 1 1 197835 692 0.00 2019-12-14 16:57:00 2019-12-14 16:57:14 t 1 1 197837 692 0.00 2019-12-14 16:58:03 2019-12-14 16:58:48 t 1 1 197840 692 0.00 2019-12-14 17:00:22 2019-12-14 17:01:57 t 1 1 197841 696 0.00 2019-12-14 16:22:25 2019-12-14 17:02:15 t 1 1 197843 696 0.00 2019-12-14 17:02:15 2019-12-14 17:03:32 t 1 1 197850 692 0.00 2019-12-14 17:08:23 2019-12-14 17:08:38 t 1 1 197854 562 0.00 2019-12-14 17:12:13 2019-12-14 17:12:31 t 1 1 197859 692 0.00 2019-12-14 17:14:19 2019-12-14 17:18:16 t 1 1 197862 637 0.00 2019-12-14 17:05:58 2019-12-14 17:26:52 t 1 1 197871 528 0.00 2019-12-14 17:35:21 2019-12-14 17:35:25 t 1 1 197873 730 0.00 2019-12-14 17:24:33 2019-12-14 17:35:40 t 1 1 197875 692 0.00 2019-12-14 17:37:20 2019-12-14 17:38:14 t 1 1 197880 696 0.00 2019-12-14 17:34:00 2019-12-14 17:42:36 t 1 1 197883 692 0.00 2019-12-14 17:45:30 2019-12-14 17:45:37 t 1 1 197887 689 0.00 2019-12-14 17:42:17 2019-12-14 17:47:25 t 1 1 197889 562 0.00 2019-12-14 17:47:48 2019-12-14 17:48:18 t 1 1 197891 562 0.00 2019-12-14 17:48:29 2019-12-14 17:48:42 t 1 1 197895 696 0.00 2019-12-14 17:50:04 2019-12-14 17:50:05 t 1 1 197896 692 0.00 2019-12-14 17:50:05 2019-12-14 17:50:18 t 1 1 197900 528 0.00 2019-12-14 17:35:37 2019-12-14 17:54:01 t 1 1 197905 692 0.00 2019-12-14 17:51:28 2019-12-14 18:00:27 t 1 1 197907 562 0.00 2019-12-14 17:58:26 2019-12-14 18:05:19 t 1 1 197913 724 0.00 2019-12-14 17:35:20 2019-12-14 18:13:01 t 1 1 197917 692 0.00 2019-12-14 18:14:32 2019-12-14 18:14:34 t 1 1 197923 538 0.00 2019-12-14 18:16:50 2019-12-14 18:17:13 t 1 1 197933 562 0.00 2019-12-14 18:22:20 2019-12-14 18:22:31 t 1 1 197935 615 0.00 2019-12-14 18:14:52 2019-12-14 18:24:43 t 1 1 197937 692 0.00 2019-12-14 18:24:48 2019-12-14 18:25:38 t 1 1 197939 481 0.00 2019-12-14 17:33:19 2019-12-14 18:25:47 t 1 1 197941 562 0.00 2019-12-14 18:29:53 2019-12-14 18:30:17 t 1 1 197942 528 0.00 2019-12-14 18:33:16 2019-12-14 18:33:19 t 1 1 197947 692 0.00 2019-12-14 18:35:26 2019-12-14 18:35:26 t 1 1 197955 615 0.00 2019-12-14 18:38:05 2019-12-14 18:43:15 t 1 1 197957 562 0.00 2019-12-14 18:42:52 2019-12-14 18:43:39 t 1 1 197958 562 0.00 2019-12-14 18:43:50 2019-12-14 18:44:44 t 1 1 197960 692 0.00 2019-12-14 18:45:44 2019-12-14 18:45:46 t 1 1 197962 730 0.00 2019-12-14 18:43:38 2019-12-14 18:46:00 t 1 1 197963 637 0.00 2019-12-14 18:45:53 2019-12-14 18:47:14 t 1 1 197966 692 0.00 2019-12-14 18:47:29 2019-12-14 18:47:41 t 1 1 197967 483 0.00 2019-12-14 18:45:06 2019-12-14 18:48:41 t 1 1 197971 675 0.00 2019-12-14 18:50:53 2019-12-14 18:53:15 t 1 1 197974 637 0.00 2019-12-14 18:56:22 2019-12-14 18:57:34 t 1 1 197978 692 0.00 2019-12-14 18:59:19 2019-12-14 19:01:14 t 1 1 197981 692 0.00 2019-12-14 19:02:31 2019-12-14 19:02:36 t 1 1 197984 692 0.00 2019-12-14 19:03:29 2019-12-14 19:04:03 t 1 1 197988 692 0.00 2019-12-14 19:04:33 2019-12-14 19:04:34 t 1 1 197989 692 0.00 2019-12-14 19:05:21 2019-12-14 19:05:34 t 1 1 197993 692 0.00 2019-12-14 19:07:11 2019-12-14 19:07:31 t 1 1 197997 637 0.00 2019-12-14 19:07:13 2019-12-14 19:11:22 t 1 1 198000 692 0.00 2019-12-14 19:13:19 2019-12-14 19:14:35 t 1 1 198002 724 0.00 2019-12-14 18:13:15 2019-12-14 19:17:56 t 1 1 198005 562 0.00 2019-12-14 19:16:36 2019-12-14 19:21:12 t 1 1 198012 709 0.00 2019-12-14 19:28:36 2019-12-14 19:29:50 t 1 1 198015 692 0.00 2019-12-14 19:30:12 2019-12-14 19:30:13 t 1 1 198018 692 0.00 2019-12-14 19:30:57 2019-12-14 19:30:58 t 1 1 198022 692 0.00 2019-12-14 19:32:43 2019-12-14 19:32:45 t 1 1 198026 528 0.00 2019-12-14 18:33:47 2019-12-14 19:33:40 t 1 1 198029 528 0.00 2019-12-14 19:34:02 2019-12-14 19:34:42 t 1 1 198030 562 0.00 2019-12-14 19:34:37 2019-12-14 19:35:19 t 1 1 198031 528 0.00 2019-12-14 19:36:05 2019-12-14 19:36:21 t 1 1 198033 692 0.00 2019-12-14 19:38:18 2019-12-14 19:38:18 f 1 1 198036 528 0.00 2019-12-14 19:41:00 2019-12-14 19:41:17 t 1 1 198040 562 0.00 2019-12-14 19:43:56 2019-12-14 19:44:52 t 1 1 198042 562 0.00 2019-12-14 19:46:43 2019-12-14 19:46:59 t 1 1 198043 562 0.00 2019-12-14 19:47:21 2019-12-14 19:47:58 t 1 1 198045 675 0.00 2019-12-14 19:43:31 2019-12-14 19:49:34 t 1 1 198046 528 0.00 2019-12-14 19:50:32 2019-12-14 19:51:03 t 1 1 198047 562 0.00 2019-12-14 19:51:11 2019-12-14 19:51:40 t 1 1 198050 562 0.00 2019-12-14 19:55:00 2019-12-14 19:55:07 t 1 1 198052 528 0.00 2019-12-14 19:57:43 2019-12-14 19:58:21 t 1 1 198061 724 0.00 2019-12-14 19:34:17 2019-12-14 20:07:15 t 1 1 198063 528 0.00 2019-12-14 20:09:06 2019-12-14 20:09:11 t 1 1 198066 694 0.00 2019-12-14 17:58:49 2019-12-14 20:13:44 t 1 1 198070 675 0.00 2019-12-14 20:22:25 2019-12-14 20:25:06 t 1 1 198078 528 0.00 2019-12-14 20:34:50 2019-12-14 20:35:11 t 1 1 198087 562 0.00 2019-12-14 20:43:00 2019-12-14 20:43:04 t 1 1 198091 528 0.00 2019-12-14 20:45:37 2019-12-14 20:45:46 t 1 1 198098 562 0.00 2019-12-14 20:53:09 2019-12-14 20:53:36 t 1 1 198109 734 0.00 2019-12-14 20:57:38 2019-12-14 20:58:47 t 1 1 198112 691 0.00 2019-12-14 20:58:32 2019-12-14 20:59:42 t 1 1 198115 730 0.00 2019-12-14 21:00:15 2019-12-14 21:01:26 t 1 1 198118 722 0.00 2019-12-14 21:03:25 2019-12-14 21:05:25 t 1 1 198121 591 0.00 2019-12-14 20:08:27 2019-12-14 21:07:07 t 1 1 198123 528 0.00 2019-12-14 21:08:45 2019-12-14 21:08:58 t 1 1 198128 691 0.00 2019-12-14 21:13:35 2019-12-14 21:14:16 t 1 1 198129 637 0.00 2019-12-14 20:51:39 2019-12-14 21:15:18 t 1 1 198134 718 0.00 2019-12-14 21:18:06 2019-12-14 21:18:12 t 1 1 198137 538 0.00 2019-12-14 21:18:26 2019-12-14 21:20:14 t 1 1 198142 528 0.00 2019-12-14 21:25:54 2019-12-14 21:27:11 t 1 1 198144 689 0.00 2019-12-14 21:05:25 2019-12-14 21:27:25 t 1 1 198146 528 0.00 2019-12-14 21:28:41 2019-12-14 21:28:49 t 1 1 198151 689 0.00 2019-12-14 21:33:37 2019-12-14 21:33:38 t 1 1 198155 722 0.00 2019-12-14 21:29:12 2019-12-14 21:36:33 t 1 1 198083 675 0.00 2019-12-14 20:34:00 2019-12-14 20:39:19 t 1 1 198084 528 0.00 2019-12-14 20:39:54 2019-12-14 20:40:08 t 1 1 198086 528 0.00 2019-12-14 20:41:43 2019-12-14 20:42:11 t 1 1 198088 528 0.00 2019-12-14 20:43:19 2019-12-14 20:43:40 t 1 1 198090 562 0.00 2019-12-14 20:44:47 2019-12-14 20:45:13 t 1 1 198092 562 0.00 2019-12-14 20:46:35 2019-12-14 20:47:18 t 1 1 198093 637 0.00 2019-12-14 20:43:52 2019-12-14 20:49:01 t 1 1 198095 562 0.00 2019-12-14 20:50:22 2019-12-14 20:50:34 t 1 1 198096 637 0.00 2019-12-14 20:50:17 2019-12-14 20:51:43 t 1 1 198097 528 0.00 2019-12-14 20:52:14 2019-12-14 20:52:17 t 1 1 198100 691 0.00 2019-12-14 20:53:00 2019-12-14 20:54:17 t 1 1 198101 528 0.00 2019-12-14 20:54:46 2019-12-14 20:55:08 t 1 1 198104 538 0.00 2019-12-14 20:08:18 2019-12-14 20:56:56 t 1 1 198106 538 0.00 2019-12-14 20:56:39 2019-12-14 20:57:01 t 1 1 198107 538 0.00 2019-12-14 20:57:00 2019-12-14 20:57:26 t 1 1 198110 538 0.00 2019-12-14 20:57:26 2019-12-14 20:58:50 t 1 1 198111 734 0.00 2019-12-14 20:58:01 2019-12-14 20:59:15 t 1 1 198113 528 0.00 2019-12-14 20:59:23 2019-12-14 20:59:49 t 1 1 198117 707 0.00 2019-12-14 19:35:02 2019-12-14 21:04:27 t 1 1 198119 562 0.00 2019-12-14 21:05:49 2019-12-14 21:05:53 t 1 1 198124 707 0.00 2019-12-14 21:06:00 2019-12-14 21:09:07 t 1 1 198130 691 0.00 2019-12-14 21:14:16 2019-12-14 21:15:33 t 1 1 198132 562 0.00 2019-12-14 21:14:02 2019-12-14 21:16:15 t 1 1 198135 538 0.00 2019-12-14 21:17:08 2019-12-14 21:18:21 t 1 1 198143 709 0.00 2019-12-14 21:19:50 2019-12-14 21:27:13 t 1 1 198147 722 0.00 2019-12-14 21:23:14 2019-12-14 21:29:01 t 1 1 198148 689 0.00 2019-12-14 21:29:57 2019-12-14 21:31:16 t 1 1 198150 689 0.00 2019-12-14 21:30:28 2019-12-14 21:33:27 t 1 1 198152 562 0.00 2019-12-14 21:34:55 2019-12-14 21:35:10 t 1 1 198156 637 0.00 2019-12-14 21:17:05 2019-12-14 21:37:09 t 1 1 198158 562 0.00 2019-12-14 21:37:45 2019-12-14 21:37:56 t 1 1 198159 722 0.00 2019-12-14 21:36:33 2019-12-14 21:38:07 t 1 1 198160 722 0.00 2019-12-14 21:38:14 2019-12-14 21:38:16 t 1 1 198163 689 0.00 2019-12-14 21:37:03 2019-12-14 21:40:21 t 1 1 198166 562 0.00 2019-12-14 21:40:49 2019-12-14 21:42:09 t 1 1 198167 538 0.00 2019-12-14 21:20:14 2019-12-14 21:43:33 t 1 1 198169 483 0.00 2019-12-14 21:44:05 2019-12-14 21:47:54 t 1 1 198172 722 0.00 2019-12-14 21:39:05 2019-12-14 21:48:56 t 1 1 198175 722 0.00 2019-12-14 21:52:27 2019-12-14 21:54:08 t 1 1 198180 722 0.00 2019-12-14 21:55:21 2019-12-14 21:55:28 t 1 1 198184 625 0.00 2019-12-14 21:38:14 2019-12-14 21:57:15 t 1 1 198186 528 0.00 2019-12-14 21:58:31 2019-12-14 21:58:45 t 1 1 198188 722 0.00 2019-12-14 21:56:00 2019-12-14 22:01:35 t 1 1 198189 528 0.00 2019-12-14 22:01:04 2019-12-14 22:02:17 t 1 1 198191 627 0.00 2019-12-14 21:54:39 2019-12-14 22:03:02 t 1 1 198192 528 0.00 2019-12-14 22:03:05 2019-12-14 22:03:28 t 1 1 198193 742 0.00 2019-12-14 22:01:21 2019-12-14 22:04:54 t 1 1 198198 622 0.00 2019-12-14 21:56:42 2019-12-14 22:08:15 t 1 1 198200 528 0.00 2019-12-14 22:09:28 2019-12-14 22:10:10 t 1 1 198202 562 0.00 2019-12-14 22:06:10 2019-12-14 22:14:21 t 1 1 198216 675 0.00 2019-12-14 22:22:32 2019-12-14 22:27:43 t 1 1 198217 722 0.00 2019-12-14 22:25:40 2019-12-14 22:28:34 t 1 1 198219 514 0.00 2019-12-14 22:26:27 2019-12-14 22:29:04 t 1 1 198220 722 0.00 2019-12-14 22:28:48 2019-12-14 22:29:49 t 1 1 198221 689 0.00 2019-12-14 22:14:34 2019-12-14 22:30:41 t 1 1 198224 689 0.00 2019-12-14 22:31:05 2019-12-14 22:31:20 t 1 1 198228 730 0.00 2019-12-14 21:35:41 2019-12-14 22:34:55 t 1 1 198230 722 0.00 2019-12-14 22:34:02 2019-12-14 22:35:02 t 1 1 198236 660 0.00 2019-12-14 22:34:49 2019-12-14 22:37:43 t 1 1 198245 722 0.00 2019-12-14 22:41:02 2019-12-14 22:41:08 t 1 1 198250 689 0.00 2019-12-14 22:46:13 2019-12-14 22:46:55 t 1 1 198253 691 0.00 2019-12-14 22:47:38 2019-12-14 22:47:58 t 1 1 198255 691 0.00 2019-12-14 22:47:58 2019-12-14 22:48:25 t 1 1 198257 562 0.00 2019-12-14 22:48:08 2019-12-14 22:48:58 t 1 1 198258 691 0.00 2019-12-14 22:48:49 2019-12-14 22:49:14 t 1 1 198261 722 0.00 2019-12-14 22:49:15 2019-12-14 22:49:48 t 1 1 198263 691 0.00 2019-12-14 22:49:45 2019-12-14 22:50:03 t 1 1 198264 722 0.00 2019-12-14 22:50:11 2019-12-14 22:50:23 t 1 1 198268 709 0.00 2019-12-14 22:51:53 2019-12-14 22:52:29 t 1 1 198271 691 0.00 2019-12-14 22:52:09 2019-12-14 22:53:17 t 1 1 198273 544 0.00 2019-12-14 22:53:15 2019-12-14 22:54:47 t 1 1 198275 716 0.00 2019-12-14 22:54:13 2019-12-14 22:55:13 t 1 1 198276 528 0.00 2019-12-14 22:55:57 2019-12-14 22:56:28 t 1 1 198282 694 0.00 2019-12-14 20:13:44 2019-12-14 22:59:11 t 1 1 198283 528 0.00 2019-12-14 22:59:24 2019-12-14 22:59:56 t 1 1 198289 689 0.00 2019-12-14 22:49:23 2019-12-14 23:05:51 t 1 1 198291 631 0.00 2019-12-14 23:06:37 2019-12-14 23:07:30 t 1 1 198294 562 0.00 2019-12-14 23:09:33 2019-12-14 23:09:47 t 1 1 198296 544 0.00 2019-12-14 23:08:28 2019-12-14 23:12:20 t 1 1 198304 220 0.00 2019-12-14 23:24:15 2019-12-14 23:24:17 t 1 1 198305 544 0.00 2019-12-14 23:24:17 2019-12-14 23:25:47 t 1 1 198308 562 0.00 2019-12-14 23:30:53 2019-12-14 23:31:02 t 1 1 198314 679 0.00 2019-12-14 23:23:56 2019-12-14 23:37:03 t 1 1 198319 562 0.00 2019-12-14 23:41:31 2019-12-14 23:41:44 t 1 1 198327 637 0.00 2019-12-14 23:47:59 2019-12-14 23:54:37 t 1 1 198330 566 0.00 2019-12-15 00:02:10 2019-12-15 00:05:15 t 1 1 198331 687 0.00 2019-12-15 00:06:21 2019-12-15 00:06:26 t 1 1 198334 562 0.00 2019-12-15 00:13:30 2019-12-15 00:13:37 t 1 1 198337 622 0.00 2019-12-15 00:08:16 2019-12-15 00:16:02 t 1 1 198351 734 0.00 2019-12-15 00:39:00 2019-12-15 00:40:33 t 1 1 198354 622 0.00 2019-12-15 00:38:18 2019-12-15 00:48:15 t 1 1 198358 562 0.00 2019-12-15 00:24:22 2019-12-15 00:55:40 t 1 1 198359 562 0.00 2019-12-15 00:56:14 2019-12-15 00:56:38 t 1 1 198362 687 0.00 2019-12-15 00:48:52 2019-12-15 01:00:52 t 1 1 198364 562 0.00 2019-12-15 01:07:05 2019-12-15 01:07:12 t 1 1 198366 736 0.00 2019-12-15 01:09:26 2019-12-15 01:12:34 t 1 1 198367 538 0.00 2019-12-15 01:05:37 2019-12-15 01:13:19 t 1 1 198369 736 0.00 2019-12-15 01:15:37 2019-12-15 01:16:06 t 1 1 198379 692 0.00 2019-12-15 01:44:10 2019-12-15 01:44:22 t 1 1 198381 687 0.00 2019-12-15 01:37:05 2019-12-15 01:56:50 t 1 1 198383 687 0.00 2019-12-15 01:57:12 2019-12-15 02:00:59 t 1 1 198384 562 0.00 2019-12-15 02:01:08 2019-12-15 02:01:19 t 1 1 198386 692 0.00 2019-12-15 01:45:55 2019-12-15 02:13:34 t 1 1 198390 562 0.00 2019-12-15 02:43:50 2019-12-15 02:43:59 t 1 1 198393 692 0.00 2019-12-15 02:51:56 2019-12-15 02:52:56 t 1 1 198395 675 0.00 2019-12-15 02:47:33 2019-12-15 02:57:00 t 1 1 198398 692 0.00 2019-12-15 03:00:37 2019-12-15 03:00:46 t 1 1 198094 528 0.00 2019-12-14 20:49:34 2019-12-14 20:50:03 t 1 1 198099 528 0.00 2019-12-14 20:53:51 2019-12-14 20:53:55 t 1 1 198102 516 0.00 2019-12-14 20:49:20 2019-12-14 20:55:42 t 1 1 198103 734 0.00 2019-12-14 19:04:03 2019-12-14 20:56:44 t 1 1 198105 528 0.00 2019-12-14 20:56:55 2019-12-14 20:56:59 t 1 1 198108 691 0.00 2019-12-14 20:57:53 2019-12-14 20:58:32 t 1 1 198114 730 0.00 2019-12-14 20:50:05 2019-12-14 21:00:04 t 1 1 198116 528 0.00 2019-12-14 21:01:37 2019-12-14 21:02:36 t 1 1 198120 528 0.00 2019-12-14 21:05:25 2019-12-14 21:06:00 t 1 1 198122 528 0.00 2019-12-14 21:07:07 2019-12-14 21:07:35 t 1 1 198125 675 0.00 2019-12-14 21:02:27 2019-12-14 21:10:12 t 1 1 198126 722 0.00 2019-12-14 21:09:07 2019-12-14 21:11:59 t 1 1 198127 691 0.00 2019-12-14 21:13:16 2019-12-14 21:13:35 t 1 1 198131 724 0.00 2019-12-14 21:10:19 2019-12-14 21:15:39 t 1 1 198133 538 0.00 2019-12-14 20:58:53 2019-12-14 21:17:58 t 1 1 198136 528 0.00 2019-12-14 21:18:27 2019-12-14 21:19:21 t 1 1 198138 675 0.00 2019-12-14 21:14:51 2019-12-14 21:21:48 t 1 1 198139 562 0.00 2019-12-14 21:23:34 2019-12-14 21:23:55 t 1 1 198140 528 0.00 2019-12-14 21:24:14 2019-12-14 21:24:24 t 1 1 198141 528 0.00 2019-12-14 21:25:20 2019-12-14 21:25:42 t 1 1 198145 689 0.00 2019-12-14 21:27:47 2019-12-14 21:28:03 t 1 1 198149 528 0.00 2019-12-14 21:31:03 2019-12-14 21:31:21 t 1 1 198153 689 0.00 2019-12-14 21:35:06 2019-12-14 21:35:11 t 1 1 198154 562 0.00 2019-12-14 21:34:30 2019-12-14 21:36:16 t 1 1 198157 485 0.00 2019-12-14 21:35:01 2019-12-14 21:37:25 t 1 1 198162 722 0.00 2019-12-14 21:38:41 2019-12-14 21:38:43 t 1 1 198165 709 0.00 2019-12-14 21:27:13 2019-12-14 21:41:55 t 1 1 198170 528 0.00 2019-12-14 21:31:59 2019-12-14 21:48:21 t 1 1 198179 722 0.00 2019-12-14 21:54:50 2019-12-14 21:55:15 t 1 1 198185 562 0.00 2019-12-14 21:49:13 2019-12-14 21:57:37 t 1 1 198190 562 0.00 2019-12-14 21:59:47 2019-12-14 22:02:39 t 1 1 198196 544 0.00 2019-12-14 22:02:49 2019-12-14 22:06:10 t 1 1 198197 722 0.00 2019-12-14 22:01:35 2019-12-14 22:08:10 t 1 1 198203 528 0.00 2019-12-14 22:14:08 2019-12-14 22:14:30 t 1 1 198205 562 0.00 2019-12-14 22:15:23 2019-12-14 22:15:41 t 1 1 198207 627 0.00 2019-12-14 22:03:02 2019-12-14 22:18:02 t 1 1 198208 311 0.00 2019-12-14 22:05:47 2019-12-14 22:21:10 t 1 2 198210 656 0.00 2019-12-14 21:47:54 2019-12-14 22:23:03 t 1 1 198212 591 0.00 2019-12-14 21:49:12 2019-12-14 22:24:42 t 1 1 198213 722 0.00 2019-12-14 22:17:54 2019-12-14 22:25:40 t 1 1 198222 722 0.00 2019-12-14 22:30:15 2019-12-14 22:30:47 t 1 1 198225 722 0.00 2019-12-14 22:30:52 2019-12-14 22:31:54 t 1 1 198226 689 0.00 2019-12-14 22:32:38 2019-12-14 22:32:48 t 1 1 198229 544 0.00 2019-12-14 22:24:42 2019-12-14 22:34:57 t 1 1 198231 722 0.00 2019-12-14 22:35:17 2019-12-14 22:35:56 t 1 1 198232 722 0.00 2019-12-14 22:36:05 2019-12-14 22:36:13 t 1 1 198235 514 0.00 2019-12-14 22:28:49 2019-12-14 22:37:31 t 1 1 198237 562 0.00 2019-12-14 22:37:32 2019-12-14 22:37:48 t 1 1 198239 562 0.00 2019-12-14 22:38:15 2019-12-14 22:38:19 t 1 1 198241 722 0.00 2019-12-14 22:38:44 2019-12-14 22:38:51 t 1 1 198242 722 0.00 2019-12-14 22:39:09 2019-12-14 22:39:22 t 1 1 198243 722 0.00 2019-12-14 22:40:24 2019-12-14 22:40:56 t 1 1 198246 528 0.00 2019-12-14 22:41:01 2019-12-14 22:42:17 t 1 1 198251 722 0.00 2019-12-14 22:47:12 2019-12-14 22:47:19 t 1 1 198252 722 0.00 2019-12-14 22:47:32 2019-12-14 22:47:40 t 1 1 198254 722 0.00 2019-12-14 22:46:58 2019-12-14 22:48:17 t 1 1 198262 528 0.00 2019-12-14 22:41:21 2019-12-14 22:49:57 t 1 1 198265 691 0.00 2019-12-14 22:50:03 2019-12-14 22:51:22 t 1 1 198269 392 0.00 2019-12-14 21:02:22 2019-12-14 22:52:33 t 1 2 198270 544 0.00 2019-12-14 22:34:57 2019-12-14 22:53:15 t 1 1 198272 724 0.00 2019-12-14 21:56:40 2019-12-14 22:54:17 t 1 1 198274 528 0.00 2019-12-14 22:53:49 2019-12-14 22:54:47 t 1 1 198277 656 0.00 2019-12-14 22:43:28 2019-12-14 22:56:51 t 1 1 198278 675 0.00 2019-12-14 22:50:41 2019-12-14 22:57:49 t 1 1 198280 566 0.00 2019-12-14 22:58:39 2019-12-14 22:58:43 t 1 1 198284 528 0.00 2019-12-14 23:00:43 2019-12-14 23:01:04 t 1 1 198285 679 0.00 2019-12-14 23:00:22 2019-12-14 23:02:24 t 1 1 198287 722 0.00 2019-12-14 22:51:35 2019-12-14 23:04:05 t 1 1 198288 625 0.00 2019-12-14 21:57:15 2019-12-14 23:04:51 t 1 1 198290 656 0.00 2019-12-14 22:56:51 2019-12-14 23:06:43 t 1 1 198306 724 0.00 2019-12-14 22:54:17 2019-12-14 23:29:46 t 1 1 198307 544 0.00 2019-12-14 23:29:01 2019-12-14 23:30:53 t 1 1 198313 635 0.00 2019-12-14 23:35:09 2019-12-14 23:36:16 t 1 1 198316 744 0.00 2019-12-14 22:35:15 2019-12-14 23:37:30 t 1 1 198318 622 0.00 2019-12-14 23:32:14 2019-12-14 23:39:17 t 1 1 198320 724 0.00 2019-12-14 23:29:46 2019-12-14 23:43:10 t 1 1 198322 566 0.00 2019-12-14 23:36:16 2019-12-14 23:47:39 t 1 1 198323 510 0.00 2019-12-14 23:37:16 2019-12-14 23:51:49 t 1 1 198326 566 0.00 2019-12-14 23:47:39 2019-12-14 23:54:23 t 1 1 198328 687 0.00 2019-12-14 23:54:28 2019-12-15 00:02:10 t 1 1 198329 562 0.00 2019-12-15 00:02:29 2019-12-15 00:02:58 t 1 1 198335 545 0.00 2019-12-15 00:08:50 2019-12-15 00:13:40 t 1 1 198336 679 0.00 2019-12-15 00:12:38 2019-12-15 00:14:46 t 1 1 198338 566 0.00 2019-12-15 00:13:40 2019-12-15 00:22:24 t 1 1 198339 687 0.00 2019-12-15 00:06:52 2019-12-15 00:23:14 t 1 1 198341 622 0.00 2019-12-15 00:16:03 2019-12-15 00:24:28 t 1 1 198342 679 0.00 2019-12-15 00:24:26 2019-12-15 00:25:31 t 1 1 198344 724 0.00 2019-12-15 00:25:57 2019-12-15 00:27:24 t 1 1 198345 622 0.00 2019-12-15 00:24:28 2019-12-15 00:31:19 t 1 1 198346 736 0.00 2019-12-15 00:32:01 2019-12-15 00:33:50 t 1 1 198347 707 0.00 2019-12-14 23:04:50 2019-12-15 00:34:45 t 1 1 198349 687 0.00 2019-12-15 00:26:30 2019-12-15 00:35:28 t 1 1 198350 622 0.00 2019-12-15 00:31:19 2019-12-15 00:38:18 t 1 1 198353 538 0.00 2019-12-14 23:54:37 2019-12-15 00:47:05 t 1 1 198357 566 0.00 2019-12-15 00:49:41 2019-12-15 00:52:18 t 1 1 198360 637 0.00 2019-12-15 00:47:12 2019-12-15 00:56:38 t 1 1 198363 736 0.00 2019-12-15 01:01:54 2019-12-15 01:02:27 t 1 1 198365 637 0.00 2019-12-15 01:02:27 2019-12-15 01:09:26 t 1 1 198368 637 0.00 2019-12-15 01:14:16 2019-12-15 01:15:37 t 1 1 198372 736 0.00 2019-12-15 01:22:44 2019-12-15 01:24:18 t 1 1 198377 692 0.00 2019-12-15 01:35:00 2019-12-15 01:38:48 t 1 1 198378 562 0.00 2019-12-15 01:39:37 2019-12-15 01:39:39 t 1 1 198380 562 0.00 2019-12-15 01:50:25 2019-12-15 01:50:36 t 1 1 198387 562 0.00 2019-12-15 02:22:31 2019-12-15 02:22:35 t 1 1 198389 562 0.00 2019-12-15 02:33:12 2019-12-15 02:33:16 t 1 1 198392 692 0.00 2019-12-15 02:50:24 2019-12-15 02:50:26 t 1 1 198397 692 0.00 2019-12-15 02:52:07 2019-12-15 03:00:27 t 1 1 198161 635 0.00 2019-12-14 21:38:34 2019-12-14 21:38:41 t 1 1 198164 675 0.00 2019-12-14 21:40:12 2019-12-14 21:40:49 t 1 1 198168 562 0.00 2019-12-14 21:45:25 2019-12-14 21:47:17 t 1 1 198171 637 0.00 2019-12-14 21:41:17 2019-12-14 21:48:48 t 1 1 198173 722 0.00 2019-12-14 21:50:40 2019-12-14 21:51:14 t 1 1 198174 637 0.00 2019-12-14 21:49:43 2019-12-14 21:52:42 t 1 1 198176 722 0.00 2019-12-14 21:54:13 2019-12-14 21:54:20 t 1 1 198177 627 0.00 2019-12-14 21:31:14 2019-12-14 21:54:39 t 1 1 198178 528 0.00 2019-12-14 21:54:22 2019-12-14 21:54:59 t 1 1 198181 722 0.00 2019-12-14 21:55:48 2019-12-14 21:55:54 t 1 1 198182 637 0.00 2019-12-14 21:54:22 2019-12-14 21:56:27 t 1 1 198183 622 0.00 2019-12-14 21:41:31 2019-12-14 21:56:42 t 1 1 198187 562 0.00 2019-12-14 21:57:42 2019-12-14 21:59:17 t 1 1 198194 528 0.00 2019-12-14 22:04:51 2019-12-14 22:05:09 t 1 1 198195 528 0.00 2019-12-14 22:05:51 2019-12-14 22:06:05 t 1 1 198199 528 0.00 2019-12-14 22:07:27 2019-12-14 22:08:15 t 1 1 198201 689 0.00 2019-12-14 21:40:38 2019-12-14 22:14:13 t 1 1 198204 687 0.00 2019-12-14 21:47:10 2019-12-14 22:15:23 t 1 1 198206 722 0.00 2019-12-14 22:08:10 2019-12-14 22:17:54 t 1 1 198209 622 0.00 2019-12-14 22:08:15 2019-12-14 22:22:03 t 1 1 198211 696 0.00 2019-12-14 22:11:27 2019-12-14 22:23:33 t 1 1 198214 679 0.00 2019-12-14 22:22:38 2019-12-14 22:26:54 t 1 1 198215 562 0.00 2019-12-14 22:26:54 2019-12-14 22:27:10 t 1 1 198218 622 0.00 2019-12-14 22:22:03 2019-12-14 22:28:39 t 1 1 198223 722 0.00 2019-12-14 22:29:48 2019-12-14 22:31:17 t 1 1 198227 660 0.00 2019-12-14 22:28:36 2019-12-14 22:34:49 t 1 1 198233 656 0.00 2019-12-14 22:23:03 2019-12-14 22:36:31 t 1 1 198234 622 0.00 2019-12-14 22:28:39 2019-12-14 22:37:28 t 1 1 198238 528 0.00 2019-12-14 22:15:09 2019-12-14 22:37:54 t 1 1 198240 722 0.00 2019-12-14 22:37:54 2019-12-14 22:38:21 t 1 1 198244 656 0.00 2019-12-14 22:36:31 2019-12-14 22:40:57 t 1 1 198247 722 0.00 2019-12-14 22:41:45 2019-12-14 22:42:18 t 1 1 198248 689 0.00 2019-12-14 22:34:11 2019-12-14 22:46:04 t 1 1 198249 649 0.00 2019-12-14 22:00:36 2019-12-14 22:46:51 t 1 1 198256 691 0.00 2019-12-14 22:48:25 2019-12-14 22:48:50 t 1 1 198259 622 0.00 2019-12-14 22:37:28 2019-12-14 22:49:22 t 1 1 198260 691 0.00 2019-12-14 22:49:14 2019-12-14 22:49:45 t 1 1 198266 528 0.00 2019-12-14 22:50:54 2019-12-14 22:51:24 t 1 1 198267 691 0.00 2019-12-14 22:51:48 2019-12-14 22:52:10 t 1 1 198279 528 0.00 2019-12-14 22:57:50 2019-12-14 22:58:12 t 1 1 198281 562 0.00 2019-12-14 22:59:03 2019-12-14 22:59:08 t 1 1 198286 544 0.00 2019-12-14 22:58:43 2019-12-14 23:03:46 t 1 1 198292 656 0.00 2019-12-14 23:06:42 2019-12-14 23:08:05 t 1 1 198293 544 0.00 2019-12-14 23:03:46 2019-12-14 23:08:10 t 1 1 198295 622 0.00 2019-12-14 23:07:43 2019-12-14 23:10:55 t 1 1 198297 566 0.00 2019-12-14 23:11:05 2019-12-14 23:12:20 t 1 1 198298 566 0.00 2019-12-14 23:12:20 2019-12-14 23:13:30 t 1 1 198299 544 0.00 2019-12-14 23:13:30 2019-12-14 23:18:32 t 1 1 198300 544 0.00 2019-12-14 23:18:32 2019-12-14 23:19:51 t 1 1 198301 562 0.00 2019-12-14 23:20:05 2019-12-14 23:20:20 t 1 1 198302 718 0.00 2019-12-14 23:20:34 2019-12-14 23:22:25 t 1 1 198303 679 0.00 2019-12-14 23:02:55 2019-12-14 23:23:56 t 1 1 198309 510 0.00 2019-12-14 22:03:09 2019-12-14 23:31:44 t 1 1 198310 622 0.00 2019-12-14 23:18:22 2019-12-14 23:32:14 t 1 1 198311 566 0.00 2019-12-14 23:21:56 2019-12-14 23:35:09 t 1 1 198312 585 0.00 2019-12-14 23:35:56 2019-12-14 23:35:56 f 1 1 198315 510 0.00 2019-12-14 23:31:44 2019-12-14 23:37:16 t 1 1 198317 687 0.00 2019-12-14 22:15:45 2019-12-14 23:37:46 t 1 1 198321 637 0.00 2019-12-14 21:56:38 2019-12-14 23:44:07 t 1 1 198324 562 0.00 2019-12-14 23:51:55 2019-12-14 23:52:23 t 1 1 198325 687 0.00 2019-12-14 23:38:23 2019-12-14 23:53:51 t 1 1 198332 622 0.00 2019-12-14 23:39:17 2019-12-15 00:08:16 t 1 1 198333 510 0.00 2019-12-14 23:51:49 2019-12-15 00:11:01 t 1 1 198340 566 0.00 2019-12-15 00:24:03 2019-12-15 00:24:26 t 1 1 198343 724 0.00 2019-12-15 00:10:31 2019-12-15 00:25:57 t 1 1 198348 564 0.00 2019-12-14 23:50:17 2019-12-15 00:34:53 t 1 1 198352 562 0.00 2019-12-15 00:45:42 2019-12-15 00:45:53 t 1 1 198355 687 0.00 2019-12-15 00:35:28 2019-12-15 00:48:52 t 1 1 198356 566 0.00 2019-12-15 00:33:50 2019-12-15 00:49:41 t 1 1 198361 622 0.00 2019-12-15 00:48:15 2019-12-15 00:59:03 t 1 1 198370 622 0.00 2019-12-15 00:59:18 2019-12-15 01:20:16 t 1 1 198371 637 0.00 2019-12-15 01:18:26 2019-12-15 01:22:23 t 1 1 198373 562 0.00 2019-12-15 01:28:27 2019-12-15 01:28:52 t 1 1 198374 736 0.00 2019-12-15 01:29:18 2019-12-15 01:29:29 t 1 1 198375 687 0.00 2019-12-15 01:02:55 2019-12-15 01:31:54 t 1 1 198376 687 0.00 2019-12-15 01:32:36 2019-12-15 01:36:35 t 1 1 198382 562 0.00 2019-12-15 01:59:28 2019-12-15 02:00:09 t 1 1 198385 562 0.00 2019-12-15 02:11:50 2019-12-15 02:11:55 t 1 1 198388 692 0.00 2019-12-15 02:13:44 2019-12-15 02:29:17 t 1 1 198391 692 0.00 2019-12-15 02:29:17 2019-12-15 02:50:10 t 1 1 198394 562 0.00 2019-12-15 02:54:28 2019-12-15 02:54:39 t 1 1 198396 637 0.00 2019-12-15 02:56:08 2019-12-15 02:57:44 t 1 1 198400 692 0.00 2019-12-15 03:03:18 2019-12-15 03:04:06 t 1 1 198403 562 0.00 2019-12-15 03:15:53 2019-12-15 03:16:03 t 1 1 198404 311 0.00 2019-12-15 02:48:52 2019-12-15 03:17:16 t 1 2 198405 692 0.00 2019-12-15 03:04:29 2019-12-15 03:20:54 t 1 1 198407 562 0.00 2019-12-15 03:26:27 2019-12-15 03:26:35 t 1 1 198409 692 0.00 2019-12-15 03:28:29 2019-12-15 03:28:31 t 1 1 198414 692 0.00 2019-12-15 03:47:33 2019-12-15 03:48:33 t 1 1 198417 692 0.00 2019-12-15 03:49:26 2019-12-15 03:49:27 t 1 1 198418 692 0.00 2019-12-15 03:50:35 2019-12-15 03:50:45 t 1 1 198419 692 0.00 2019-12-15 03:50:53 2019-12-15 03:50:54 t 1 1 198420 692 0.00 2019-12-15 03:51:02 2019-12-15 03:51:09 t 1 1 198421 692 0.00 2019-12-15 03:51:50 2019-12-15 03:51:50 f 1 1 198422 692 0.00 2019-12-15 03:52:10 2019-12-15 03:52:10 f 1 1 198424 692 0.00 2019-12-15 03:52:28 2019-12-15 03:52:28 t 1 1 198425 692 0.00 2019-12-15 03:51:32 2019-12-15 03:53:21 t 1 1 198426 692 0.00 2019-12-15 03:54:11 2019-12-15 03:54:34 t 1 1 198427 692 0.00 2019-12-15 03:54:44 2019-12-15 03:55:07 t 1 1 198428 692 0.00 2019-12-15 03:55:13 2019-12-15 03:56:15 t 1 1 198432 562 0.00 2019-12-15 03:58:32 2019-12-15 03:58:48 t 1 1 198434 692 0.00 2019-12-15 03:59:28 2019-12-15 03:59:56 t 1 1 198435 692 0.00 2019-12-15 04:00:45 2019-12-15 04:00:47 t 1 1 198436 692 0.00 2019-12-15 04:02:49 2019-12-15 04:02:50 t 1 1 198438 692 0.00 2019-12-15 04:04:53 2019-12-15 04:05:01 t 1 1 198440 692 0.00 2019-12-15 04:04:17 2019-12-15 04:06:21 t 1 1 198451 562 0.00 2019-12-15 05:02:42 2019-12-15 05:02:50 t 1 1 198399 692 0.00 2019-12-15 03:01:23 2019-12-15 03:03:12 t 1 1 198402 675 0.00 2019-12-15 03:10:16 2019-12-15 03:15:15 t 1 1 198406 692 0.00 2019-12-15 03:23:48 2019-12-15 03:23:48 t 1 1 198408 637 0.00 2019-12-15 03:18:39 2019-12-15 03:28:19 t 1 1 198410 675 0.00 2019-12-15 03:23:25 2019-12-15 03:33:15 t 1 1 198412 562 0.00 2019-12-15 03:37:10 2019-12-15 03:37:20 t 1 1 198416 692 0.00 2019-12-15 03:48:45 2019-12-15 03:49:13 t 1 1 198423 692 0.00 2019-12-15 03:50:45 2019-12-15 03:52:20 t 1 1 198430 637 0.00 2019-12-15 03:44:48 2019-12-15 03:57:33 t 1 1 198431 692 0.00 2019-12-15 03:56:27 2019-12-15 03:58:21 t 1 1 198437 692 0.00 2019-12-15 04:02:58 2019-12-15 04:03:58 t 1 1 198439 692 0.00 2019-12-15 04:05:26 2019-12-15 04:05:26 f 1 1 198445 637 0.00 2019-12-15 04:13:56 2019-12-15 04:16:43 t 1 1 198446 562 0.00 2019-12-15 04:19:53 2019-12-15 04:19:57 t 1 1 198447 562 0.00 2019-12-15 04:30:25 2019-12-15 04:30:44 t 1 1 198449 562 0.00 2019-12-15 04:51:58 2019-12-15 04:52:05 t 1 1 198452 562 0.00 2019-12-15 05:06:11 2019-12-15 05:06:23 t 1 1 198453 562 0.00 2019-12-15 05:13:01 2019-12-15 05:13:25 t 1 1 198454 562 0.00 2019-12-15 05:24:00 2019-12-15 05:24:11 t 1 1 198456 625 0.00 2019-12-14 23:21:41 2019-12-15 05:29:12 t 1 1 198459 637 0.00 2019-12-15 05:30:45 2019-12-15 05:34:14 t 1 1 198461 637 0.00 2019-12-15 05:36:09 2019-12-15 05:38:04 t 1 1 198462 516 0.00 2019-12-15 05:39:40 2019-12-15 05:44:07 t 1 1 198463 562 0.00 2019-12-15 05:45:19 2019-12-15 05:45:29 t 1 1 198464 637 0.00 2019-12-15 05:38:25 2019-12-15 05:48:37 t 1 1 198467 562 0.00 2019-12-15 06:08:42 2019-12-15 06:08:51 t 1 1 198468 637 0.00 2019-12-15 05:51:54 2019-12-15 06:12:13 t 1 1 198469 722 0.00 2019-12-15 06:05:09 2019-12-15 06:16:51 t 1 1 198470 722 0.00 2019-12-15 06:16:56 2019-12-15 06:17:03 t 1 1 198475 722 0.00 2019-12-15 06:22:43 2019-12-15 06:22:43 f 1 1 198476 722 0.00 2019-12-15 06:22:31 2019-12-15 06:23:31 t 1 1 198477 722 0.00 2019-12-15 06:22:12 2019-12-15 06:24:22 t 1 1 198478 637 0.00 2019-12-15 06:12:13 2019-12-15 06:24:38 t 1 1 198479 562 0.00 2019-12-15 06:29:49 2019-12-15 06:30:08 t 1 1 198481 679 0.00 2019-12-15 06:30:55 2019-12-15 06:31:05 t 1 1 198482 679 0.00 2019-12-15 06:31:48 2019-12-15 06:33:44 t 1 1 198485 516 0.00 2019-12-15 06:34:41 2019-12-15 06:36:08 t 1 1 198488 516 0.00 2019-12-15 06:38:10 2019-12-15 06:39:56 t 1 1 198489 562 0.00 2019-12-15 06:40:43 2019-12-15 06:40:47 t 1 1 198490 516 0.00 2019-12-15 06:45:07 2019-12-15 06:50:29 t 1 1 198491 694 0.00 2019-12-14 22:59:30 2019-12-15 06:51:50 t 1 1 198492 656 0.00 2019-12-15 06:49:45 2019-12-15 06:57:55 t 1 1 198494 562 0.00 2019-12-15 07:01:56 2019-12-15 07:02:07 t 1 1 198495 694 0.00 2019-12-15 06:52:00 2019-12-15 07:04:20 t 1 1 198496 694 0.00 2019-12-15 07:04:20 2019-12-15 07:10:29 t 1 1 198498 675 0.00 2019-12-15 07:12:04 2019-12-15 07:13:36 t 1 1 198501 562 0.00 2019-12-15 07:20:45 2019-12-15 07:21:16 t 1 1 198502 694 0.00 2019-12-15 07:25:49 2019-12-15 07:26:02 t 1 1 198504 562 0.00 2019-12-15 07:31:49 2019-12-15 07:31:58 t 1 1 198505 625 0.00 2019-12-15 05:29:12 2019-12-15 07:35:08 t 1 1 198506 562 0.00 2019-12-15 07:42:28 2019-12-15 07:42:46 t 1 1 198508 562 0.00 2019-12-15 07:44:17 2019-12-15 07:45:00 t 1 1 198511 637 0.00 2019-12-15 06:49:06 2019-12-15 07:52:28 t 1 1 198513 707 0.00 2019-12-15 07:31:42 2019-12-15 07:54:00 t 1 1 198514 637 0.00 2019-12-15 07:52:54 2019-12-15 07:54:40 t 1 1 198519 220 0.00 2019-12-15 07:31:09 2019-12-15 08:03:32 t 1 2 198520 562 0.00 2019-12-15 08:03:50 2019-12-15 08:04:13 t 1 1 198521 562 0.00 2019-12-15 08:08:10 2019-12-15 08:08:29 t 1 1 198522 637 0.00 2019-12-15 07:54:40 2019-12-15 08:12:27 t 1 1 198523 481 0.00 2019-12-15 07:47:16 2019-12-15 08:14:01 t 1 1 198524 562 0.00 2019-12-15 08:14:33 2019-12-15 08:14:55 t 1 1 198529 562 0.00 2019-12-15 08:25:31 2019-12-15 08:25:40 t 1 1 198530 637 0.00 2019-12-15 08:17:06 2019-12-15 08:30:44 t 1 1 198532 724 0.00 2019-12-15 08:22:37 2019-12-15 08:31:44 t 1 1 198533 562 0.00 2019-12-15 08:36:01 2019-12-15 08:36:27 t 1 1 198534 637 0.00 2019-12-15 08:35:43 2019-12-15 08:41:27 t 1 1 198535 615 0.00 2019-12-15 08:36:46 2019-12-15 08:42:58 t 1 1 198539 637 0.00 2019-12-15 08:43:01 2019-12-15 08:54:45 t 1 1 198544 487 0.00 2019-12-15 09:01:26 2019-12-15 09:04:21 t 1 2 198545 562 0.00 2019-12-15 09:05:29 2019-12-15 09:05:38 t 1 1 198546 514 0.00 2019-12-15 09:08:57 2019-12-15 09:09:04 t 1 1 198547 637 0.00 2019-12-15 09:00:08 2019-12-15 09:13:26 t 1 1 198549 562 0.00 2019-12-15 09:16:18 2019-12-15 09:17:23 t 1 1 198550 591 0.00 2019-12-15 08:55:08 2019-12-15 09:19:54 t 1 1 198551 707 0.00 2019-12-15 09:17:27 2019-12-15 09:20:22 t 1 1 198552 538 0.00 2019-12-15 08:36:14 2019-12-15 09:22:49 t 1 1 198553 724 0.00 2019-12-15 08:43:05 2019-12-15 09:23:10 t 1 1 198554 724 0.00 2019-12-15 09:23:09 2019-12-15 09:23:28 t 1 1 198556 724 0.00 2019-12-15 09:23:39 2019-12-15 09:24:02 t 1 1 198557 724 0.00 2019-12-15 09:24:00 2019-12-15 09:24:14 t 1 1 198558 724 0.00 2019-12-15 09:24:14 2019-12-15 09:24:46 t 1 1 198562 724 0.00 2019-12-15 09:26:20 2019-12-15 09:26:46 t 1 1 198563 724 0.00 2019-12-15 09:26:44 2019-12-15 09:26:58 t 1 1 198564 562 0.00 2019-12-15 09:26:52 2019-12-15 09:27:24 t 1 1 198566 724 0.00 2019-12-15 09:27:22 2019-12-15 09:28:03 t 1 1 198568 724 0.00 2019-12-15 09:28:21 2019-12-15 09:28:35 t 1 1 198569 724 0.00 2019-12-15 09:28:34 2019-12-15 09:28:51 t 1 1 198570 724 0.00 2019-12-15 09:28:49 2019-12-15 09:29:31 t 1 1 198572 724 0.00 2019-12-15 09:30:04 2019-12-15 09:31:16 t 1 1 198574 724 0.00 2019-12-15 09:31:33 2019-12-15 09:32:17 t 1 1 198575 724 0.00 2019-12-15 09:32:17 2019-12-15 09:32:31 t 1 1 198576 625 0.00 2019-12-15 09:22:44 2019-12-15 09:32:57 t 1 1 198577 637 0.00 2019-12-15 09:17:27 2019-12-15 09:37:46 t 1 1 198578 679 0.00 2019-12-15 09:37:41 2019-12-15 09:37:55 t 1 1 198579 689 0.00 2019-12-15 09:37:04 2019-12-15 09:38:03 t 1 1 198580 562 0.00 2019-12-15 09:37:55 2019-12-15 09:38:10 t 1 1 198581 591 0.00 2019-12-15 09:19:54 2019-12-15 09:40:34 t 1 1 198582 724 0.00 2019-12-15 09:32:34 2019-12-15 09:42:44 t 1 1 198586 562 0.00 2019-12-15 09:51:34 2019-12-15 09:52:52 t 1 1 198588 742 0.00 2019-12-15 10:02:05 2019-12-15 10:03:35 t 1 1 198590 637 0.00 2019-12-15 09:53:32 2019-12-15 10:04:42 t 1 1 198591 637 0.00 2019-12-15 10:04:44 2019-12-15 10:07:26 t 1 1 198592 637 0.00 2019-12-15 10:05:25 2019-12-15 10:10:14 t 1 1 198595 562 0.00 2019-12-15 10:12:15 2019-12-15 10:15:02 t 1 1 198596 637 0.00 2019-12-15 10:10:25 2019-12-15 10:18:29 t 1 1 198597 615 0.00 2019-12-15 10:18:49 2019-12-15 10:19:41 t 1 1 198598 675 0.00 2019-12-15 10:17:22 2019-12-15 10:19:42 t 1 1 198401 562 0.00 2019-12-15 03:04:53 2019-12-15 03:05:21 t 1 1 198411 692 0.00 2019-12-15 03:33:34 2019-12-15 03:37:10 t 1 1 198413 675 0.00 2019-12-15 03:33:15 2019-12-15 03:42:14 t 1 1 198415 562 0.00 2019-12-15 03:47:34 2019-12-15 03:48:50 t 1 1 198429 675 0.00 2019-12-15 03:47:56 2019-12-15 03:56:49 t 1 1 198433 692 0.00 2019-12-15 03:59:01 2019-12-15 03:59:03 t 1 1 198441 692 0.00 2019-12-15 04:05:09 2019-12-15 04:07:21 t 1 1 198442 622 0.00 2019-12-15 04:04:37 2019-12-15 04:08:10 t 1 1 198443 562 0.00 2019-12-15 04:09:13 2019-12-15 04:09:17 t 1 1 198444 637 0.00 2019-12-15 03:59:50 2019-12-15 04:13:45 t 1 1 198448 562 0.00 2019-12-15 04:41:17 2019-12-15 04:41:25 t 1 1 198450 637 0.00 2019-12-15 04:35:22 2019-12-15 04:56:25 t 1 1 198455 637 0.00 2019-12-15 04:57:05 2019-12-15 05:27:52 t 1 1 198457 516 0.00 2019-12-15 05:21:27 2019-12-15 05:29:56 t 1 1 198458 516 0.00 2019-12-15 05:29:56 2019-12-15 05:32:25 t 1 1 198460 562 0.00 2019-12-15 05:34:34 2019-12-15 05:34:46 t 1 1 198465 562 0.00 2019-12-15 05:55:43 2019-12-15 05:56:07 t 1 1 198466 562 0.00 2019-12-15 06:06:40 2019-12-15 06:06:50 t 1 1 198471 722 0.00 2019-12-15 06:18:21 2019-12-15 06:18:23 t 1 1 198472 562 0.00 2019-12-15 06:19:19 2019-12-15 06:19:30 t 1 1 198473 722 0.00 2019-12-15 06:20:31 2019-12-15 06:20:38 t 1 1 198474 722 0.00 2019-12-15 06:21:27 2019-12-15 06:21:33 t 1 1 198480 679 0.00 2019-12-15 06:30:23 2019-12-15 06:30:48 t 1 1 198483 637 0.00 2019-12-15 06:24:38 2019-12-15 06:33:47 t 1 1 198484 516 0.00 2019-12-15 06:27:24 2019-12-15 06:34:41 t 1 1 198486 637 0.00 2019-12-15 06:33:47 2019-12-15 06:36:10 t 1 1 198487 485 0.00 2019-12-15 06:35:35 2019-12-15 06:39:11 t 1 1 198493 675 0.00 2019-12-15 06:58:06 2019-12-15 06:58:32 t 1 1 198497 562 0.00 2019-12-15 07:10:44 2019-12-15 07:11:51 t 1 1 198499 485 0.00 2019-12-15 07:10:29 2019-12-15 07:13:45 t 1 1 198500 689 0.00 2019-12-15 07:17:43 2019-12-15 07:19:45 t 1 1 198503 734 0.00 2019-12-15 06:55:58 2019-12-15 07:31:49 t 1 1 198507 744 0.00 2019-12-15 07:05:48 2019-12-15 07:42:58 t 1 1 198509 744 0.00 2019-12-15 07:42:58 2019-12-15 07:45:03 t 1 1 198510 625 0.00 2019-12-15 07:38:10 2019-12-15 07:46:35 t 1 1 198512 562 0.00 2019-12-15 07:53:18 2019-12-15 07:53:27 t 1 1 198515 562 0.00 2019-12-15 07:55:47 2019-12-15 07:55:49 t 1 1 198516 562 0.00 2019-12-15 07:55:17 2019-12-15 07:56:23 t 1 1 198517 562 0.00 2019-12-15 07:57:22 2019-12-15 07:57:24 t 1 1 198518 562 0.00 2019-12-15 07:56:20 2019-12-15 07:58:23 t 1 1 198525 637 0.00 2019-12-15 08:13:04 2019-12-15 08:16:41 t 1 1 198526 694 0.00 2019-12-15 07:54:14 2019-12-15 08:17:29 t 1 1 198527 625 0.00 2019-12-15 07:47:04 2019-12-15 08:18:06 t 1 1 198528 724 0.00 2019-12-15 08:16:31 2019-12-15 08:18:53 t 1 1 198531 734 0.00 2019-12-15 08:18:05 2019-12-15 08:31:23 t 1 1 198536 562 0.00 2019-12-15 08:46:45 2019-12-15 08:47:11 t 1 1 198537 615 0.00 2019-12-15 08:42:58 2019-12-15 08:48:34 t 1 1 198538 591 0.00 2019-12-15 08:42:33 2019-12-15 08:50:57 t 1 1 198540 637 0.00 2019-12-15 08:54:48 2019-12-15 08:56:17 t 1 1 198541 562 0.00 2019-12-15 08:57:45 2019-12-15 08:58:00 t 1 1 198542 694 0.00 2019-12-15 08:17:34 2019-12-15 09:02:18 t 1 1 198543 392 0.00 2019-12-15 08:26:43 2019-12-15 09:03:29 t 1 2 198548 514 0.00 2019-12-15 09:09:56 2019-12-15 09:16:29 t 1 1 198555 724 0.00 2019-12-15 09:23:26 2019-12-15 09:23:39 t 1 1 198559 724 0.00 2019-12-15 09:24:44 2019-12-15 09:25:02 t 1 1 198560 724 0.00 2019-12-15 09:25:01 2019-12-15 09:25:36 t 1 1 198561 724 0.00 2019-12-15 09:25:31 2019-12-15 09:26:21 t 1 1 198565 724 0.00 2019-12-15 09:26:58 2019-12-15 09:27:25 t 1 1 198567 724 0.00 2019-12-15 09:28:03 2019-12-15 09:28:23 t 1 1 198571 724 0.00 2019-12-15 09:29:31 2019-12-15 09:30:05 t 1 1 198573 724 0.00 2019-12-15 09:31:16 2019-12-15 09:31:35 t 1 1 198583 724 0.00 2019-12-15 09:43:52 2019-12-15 09:46:19 t 1 1 198584 562 0.00 2019-12-15 09:48:43 2019-12-15 09:48:53 t 1 1 198585 724 0.00 2019-12-15 09:46:56 2019-12-15 09:49:48 t 1 1 198587 562 0.00 2019-12-15 09:59:21 2019-12-15 10:00:04 t 1 1 198589 562 0.00 2019-12-15 10:01:28 2019-12-15 10:04:04 t 1 1 198593 562 0.00 2019-12-15 10:09:54 2019-12-15 10:10:17 t 1 1 198594 679 0.00 2019-12-15 10:12:54 2019-12-15 10:14:23 t 1 1 198599 562 0.00 2019-12-15 10:19:24 2019-12-15 10:19:46 t 1 1 198600 538 0.00 2019-12-15 09:22:48 2019-12-15 10:20:36 t 1 1 198601 562 0.00 2019-12-15 10:21:13 2019-12-15 10:22:07 t 1 1 198602 538 0.00 2019-12-15 10:20:35 2019-12-15 10:23:08 t 1 1 198603 637 0.00 2019-12-15 10:19:00 2019-12-15 10:24:26 t 1 1 198604 625 0.00 2019-12-15 09:46:08 2019-12-15 10:24:26 t 1 1 198605 615 0.00 2019-12-15 10:22:58 2019-12-15 10:25:48 t 1 1 198606 637 0.00 2019-12-15 10:24:20 2019-12-15 10:27:31 t 1 1 198607 562 0.00 2019-12-15 10:27:41 2019-12-15 10:27:51 t 1 1 198608 637 0.00 2019-12-15 10:27:32 2019-12-15 10:29:37 t 1 1 198609 667 0.00 2019-12-15 10:32:49 2019-12-15 10:33:53 t 1 2 198610 637 0.00 2019-12-15 10:33:49 2019-12-15 10:36:19 t 1 1 198611 562 0.00 2019-12-15 10:31:33 2019-12-15 10:37:47 t 1 1 198612 562 0.00 2019-12-15 10:38:07 2019-12-15 10:38:31 t 1 1 198613 637 0.00 2019-12-15 10:36:18 2019-12-15 10:39:18 t 1 1 198614 562 0.00 2019-12-15 10:39:04 2019-12-15 10:39:31 t 1 1 198615 736 0.00 2019-12-15 10:27:50 2019-12-15 10:39:49 t 1 1 198616 667 0.00 2019-12-15 10:39:44 2019-12-15 10:40:43 t 1 2 198617 667 0.00 2019-12-15 10:41:29 2019-12-15 10:42:31 t 1 2 198618 667 0.00 2019-12-15 10:45:53 2019-12-15 10:46:57 t 1 2 198619 562 0.00 2019-12-15 10:39:54 2019-12-15 10:47:06 t 1 1 198620 679 0.00 2019-12-15 10:35:44 2019-12-15 10:47:25 t 1 1 198621 220 0.00 2019-12-15 10:29:56 2019-12-15 10:48:28 t 1 1 198622 637 0.00 2019-12-15 10:39:14 2019-12-15 10:49:02 t 1 1 198623 675 0.00 2019-12-15 10:41:32 2019-12-15 10:49:12 t 1 1 198624 736 0.00 2019-12-15 10:39:49 2019-12-15 10:50:03 t 1 1 198625 667 0.00 2019-12-15 10:49:15 2019-12-15 10:50:21 t 1 2 198626 637 0.00 2019-12-15 10:48:59 2019-12-15 10:50:29 t 1 1 198627 562 0.00 2019-12-15 10:48:55 2019-12-15 10:52:06 t 1 1 198628 637 0.00 2019-12-15 10:50:25 2019-12-15 10:54:14 t 1 1 198629 562 0.00 2019-12-15 10:52:38 2019-12-15 10:55:24 t 1 1 198630 694 0.00 2019-12-15 10:25:03 2019-12-15 10:57:01 t 1 1 198631 667 0.00 2019-12-15 10:57:07 2019-12-15 10:58:12 t 1 2 198632 490 0.00 2019-12-15 10:52:49 2019-12-15 10:58:17 t 1 1 198633 490 0.00 2019-12-15 10:58:23 2019-12-15 10:58:27 t 1 1 198634 724 0.00 2019-12-15 09:49:48 2019-12-15 10:58:48 t 1 1 198635 562 0.00 2019-12-15 10:58:03 2019-12-15 10:58:58 t 1 1 198636 689 0.00 2019-12-15 10:59:10 2019-12-15 10:59:53 t 1 1 198637 675 0.00 2019-12-15 10:57:14 2019-12-15 10:59:55 t 1 1 198638 562 0.00 2019-12-15 11:01:24 2019-12-15 11:02:28 t 1 1 198639 637 0.00 2019-12-15 10:54:03 2019-12-15 11:03:35 t 1 1 198640 562 0.00 2019-12-15 11:04:43 2019-12-15 11:05:05 t 1 1 198641 591 0.00 2019-12-15 09:57:23 2019-12-15 11:05:56 t 1 1 198655 591 0.00 2019-12-15 11:05:57 2019-12-15 11:17:54 t 1 1 198663 562 0.00 2019-12-15 11:24:57 2019-12-15 11:25:19 t 1 1 198668 622 0.00 2019-12-15 10:56:07 2019-12-15 11:27:47 t 1 1 198680 689 0.00 2019-12-15 11:38:27 2019-12-15 11:41:38 t 1 1 198687 689 0.00 2019-12-15 11:47:22 2019-12-15 11:48:25 t 1 1 198692 625 0.00 2019-12-15 10:30:59 2019-12-15 11:56:03 t 1 1 198696 625 0.00 2019-12-15 11:56:31 2019-12-15 11:58:28 t 1 1 198701 675 0.00 2019-12-15 11:56:26 2019-12-15 12:04:50 t 1 1 198705 562 0.00 2019-12-15 12:11:18 2019-12-15 12:11:58 t 1 1 198708 738 0.00 2019-12-15 12:10:36 2019-12-15 12:14:25 t 1 1 198710 738 0.00 2019-12-15 12:15:24 2019-12-15 12:15:26 t 1 1 198720 635 0.00 2019-12-15 08:53:44 2019-12-15 12:23:07 t 1 1 198726 562 0.00 2019-12-15 12:36:25 2019-12-15 12:36:33 t 1 1 198729 562 0.00 2019-12-15 12:42:43 2019-12-15 12:42:48 t 1 1 198730 687 0.00 2019-12-15 12:39:23 2019-12-15 12:45:10 t 1 1 198732 711 0.00 2019-12-15 12:02:54 2019-12-15 12:45:31 t 1 1 198739 591 0.00 2019-12-15 12:37:54 2019-12-15 12:56:41 t 1 1 198744 663 0.00 2019-12-15 12:49:39 2019-12-15 12:59:07 t 1 1 198745 679 0.00 2019-12-15 12:45:32 2019-12-15 13:00:09 t 1 1 198747 734 0.00 2019-12-15 12:43:14 2019-12-15 13:03:52 t 1 1 198752 694 0.00 2019-12-15 12:46:04 2019-12-15 13:13:51 t 1 1 198754 730 0.00 2019-12-15 13:08:12 2019-12-15 13:15:29 t 1 1 198764 679 0.00 2019-12-15 13:24:44 2019-12-15 13:24:45 t 1 1 198766 679 0.00 2019-12-15 13:24:45 2019-12-15 13:25:36 t 1 1 198769 724 0.00 2019-12-15 13:25:23 2019-12-15 13:26:02 t 1 1 198772 691 0.00 2019-12-15 13:30:10 2019-12-15 13:30:20 t 1 1 198774 679 0.00 2019-12-15 13:25:46 2019-12-15 13:30:23 t 1 1 198777 564 0.00 2019-12-15 13:06:17 2019-12-15 13:32:58 t 1 1 198781 514 0.00 2019-12-15 13:34:37 2019-12-15 13:34:38 t 1 1 198782 514 0.00 2019-12-15 13:34:38 2019-12-15 13:35:24 t 1 1 198787 483 0.00 2019-12-15 13:37:23 2019-12-15 13:37:24 t 1 1 198790 514 0.00 2019-12-15 13:37:25 2019-12-15 13:37:39 t 1 1 198792 483 0.00 2019-12-15 13:37:24 2019-12-15 13:38:30 t 1 1 198793 687 0.00 2019-12-15 13:37:41 2019-12-15 13:39:30 t 1 1 198797 498 0.00 2019-12-15 13:42:38 2019-12-15 13:42:38 f 1 2 198801 483 0.00 2019-12-15 13:41:01 2019-12-15 13:49:18 t 1 1 198803 528 0.00 2019-12-15 13:49:40 2019-12-15 13:49:41 t 1 1 198805 528 0.00 2019-12-15 13:51:44 2019-12-15 13:51:45 t 1 1 198806 562 0.00 2019-12-15 13:51:53 2019-12-15 13:51:53 t 1 1 198807 562 0.00 2019-12-15 13:51:53 2019-12-15 13:52:29 t 1 1 198809 528 0.00 2019-12-15 13:52:30 2019-12-15 13:53:31 t 1 1 198814 716 0.00 2019-12-15 13:54:51 2019-12-15 13:54:53 t 1 1 198816 675 0.00 2019-12-15 13:56:54 2019-12-15 13:56:55 t 1 1 198817 711 0.00 2019-12-15 12:58:06 2019-12-15 13:58:05 t 1 1 198818 675 0.00 2019-12-15 13:56:55 2019-12-15 13:58:31 t 1 1 198820 498 0.00 2019-12-15 13:11:57 2019-12-15 13:59:18 t 1 2 198822 673 0.00 2019-12-15 14:02:02 2019-12-15 14:03:31 t 1 1 198825 220 0.00 2019-12-15 13:39:53 2019-12-15 14:04:44 t 1 1 198826 689 0.00 2019-12-15 14:05:15 2019-12-15 14:05:15 t 1 1 198828 689 0.00 2019-12-15 14:05:15 2019-12-15 14:05:37 t 1 1 198831 660 0.00 2019-12-15 14:05:41 2019-12-15 14:05:43 t 1 1 198833 711 0.00 2019-12-15 14:07:21 2019-12-15 14:07:21 t 1 1 198836 679 0.00 2019-12-15 14:10:50 2019-12-15 14:10:52 t 1 1 198837 220 0.00 2019-12-15 13:28:03 2019-12-15 14:11:09 t 1 2 198839 675 0.00 2019-12-15 14:12:01 2019-12-15 14:12:02 t 1 1 198840 591 0.00 2019-12-15 14:12:05 2019-12-15 14:12:06 t 1 1 198841 591 0.00 2019-12-15 14:12:06 2019-12-15 14:12:43 t 1 1 198843 591 0.00 2019-12-15 14:12:45 2019-12-15 14:13:07 t 1 1 198846 675 0.00 2019-12-15 14:13:14 2019-12-15 14:13:15 t 1 1 198847 591 0.00 2019-12-15 14:13:09 2019-12-15 14:14:31 t 1 1 198850 591 0.00 2019-12-15 14:14:32 2019-12-15 14:15:35 t 1 1 198852 679 0.00 2019-12-15 14:17:11 2019-12-15 14:17:22 t 1 1 198855 716 0.00 2019-12-15 14:17:24 2019-12-15 14:18:36 t 1 1 198860 562 0.00 2019-12-15 14:19:53 2019-12-15 14:21:36 t 1 1 198861 625 0.00 2019-12-15 14:22:08 2019-12-15 14:22:08 t 1 1 198864 625 0.00 2019-12-15 14:22:16 2019-12-15 14:22:30 t 1 1 198866 625 0.00 2019-12-15 14:22:31 2019-12-15 14:23:36 t 1 1 198870 687 0.00 2019-12-15 14:25:38 2019-12-15 14:25:39 t 1 1 198874 220 0.00 2019-12-15 14:26:35 2019-12-15 14:26:36 t 1 1 198875 687 0.00 2019-12-15 14:25:39 2019-12-15 14:27:37 t 1 1 198876 220 0.00 2019-12-15 14:26:36 2019-12-15 14:28:37 t 1 1 198880 635 0.00 2019-12-15 14:34:25 2019-12-15 14:34:26 t 1 1 198881 635 0.00 2019-12-15 14:34:26 2019-12-15 14:35:37 t 1 1 198882 724 0.00 2019-12-15 14:39:06 2019-12-15 14:39:07 t 1 1 198884 724 0.00 2019-12-15 14:39:28 2019-12-15 14:40:05 t 1 1 198888 724 0.00 2019-12-15 14:39:07 2019-12-15 14:40:18 t 1 1 198891 724 0.00 2019-12-15 14:40:19 2019-12-15 14:41:37 t 1 1 198894 724 0.00 2019-12-15 14:43:48 2019-12-15 14:43:49 t 1 1 198896 707 0.00 2019-12-15 14:45:04 2019-12-15 14:45:05 t 1 1 198898 707 0.00 2019-12-15 14:45:05 2019-12-15 14:46:38 t 1 1 198901 707 0.00 2019-12-15 14:47:01 2019-12-15 14:47:02 t 1 1 198905 707 0.00 2019-12-15 14:50:05 2019-12-15 14:50:06 t 1 1 198906 675 0.00 2019-12-15 14:50:52 2019-12-15 14:50:53 t 1 1 198907 707 0.00 2019-12-15 14:50:07 2019-12-15 14:51:35 t 1 1 198908 675 0.00 2019-12-15 14:50:53 2019-12-15 14:52:39 t 1 1 198911 637 0.00 2019-12-15 15:00:02 2019-12-15 15:00:03 t 1 1 198912 392 0.00 2019-12-15 14:23:52 2019-12-15 15:00:11 t 1 2 198915 637 0.00 2019-12-15 15:00:03 2019-12-15 15:01:39 t 1 1 198919 220 0.00 2019-12-15 15:05:36 2019-12-15 15:11:27 t 1 2 198922 692 0.00 2019-12-15 15:05:29 2019-12-15 15:12:53 t 1 1 198924 692 0.00 2019-12-15 15:13:35 2019-12-15 15:13:35 t 1 1 198925 692 0.00 2019-12-15 15:13:45 2019-12-15 15:13:45 f 1 1 198931 667 0.00 2019-12-15 15:15:14 2019-12-15 15:15:16 t 1 1 198934 707 0.00 2019-12-15 15:19:39 2019-12-15 15:24:07 t 1 1 198935 734 0.00 2019-12-15 15:17:45 2019-12-15 15:24:43 t 1 1 198937 538 0.00 2019-12-15 15:28:00 2019-12-15 15:28:01 t 1 1 198939 538 0.00 2019-12-15 15:28:20 2019-12-15 15:28:21 t 1 1 198945 220 0.00 2019-12-15 15:21:35 2019-12-15 15:34:37 t 1 2 198947 675 0.00 2019-12-15 15:41:35 2019-12-15 15:41:36 t 1 1 198948 675 0.00 2019-12-15 15:41:36 2019-12-15 15:42:40 t 1 1 198951 514 0.00 2019-12-15 15:47:22 2019-12-15 15:49:42 t 1 1 198955 615 0.00 2019-12-15 15:51:23 2019-12-15 15:51:24 t 1 1 198956 615 0.00 2019-12-15 15:51:37 2019-12-15 15:51:38 t 1 1 198642 689 0.00 2019-12-15 11:05:08 2019-12-15 11:08:40 t 1 1 198643 724 0.00 2019-12-15 11:09:46 2019-12-15 11:09:49 t 1 1 198644 562 0.00 2019-12-15 11:09:52 2019-12-15 11:10:12 t 1 1 198645 615 0.00 2019-12-15 11:07:17 2019-12-15 11:11:48 t 1 1 198647 734 0.00 2019-12-15 11:10:21 2019-12-15 11:12:50 t 1 1 198648 689 0.00 2019-12-15 11:13:39 2019-12-15 11:13:43 t 1 1 198650 689 0.00 2019-12-15 11:14:14 2019-12-15 11:14:29 t 1 1 198652 490 0.00 2019-12-15 10:58:45 2019-12-15 11:16:06 t 1 1 198653 562 0.00 2019-12-15 11:16:11 2019-12-15 11:16:15 t 1 1 198654 724 0.00 2019-12-15 11:14:09 2019-12-15 11:17:51 t 1 1 198658 694 0.00 2019-12-15 11:08:40 2019-12-15 11:19:22 t 1 1 198662 724 0.00 2019-12-15 11:18:00 2019-12-15 11:24:18 t 1 1 198664 689 0.00 2019-12-15 11:25:34 2019-12-15 11:26:33 t 1 1 198667 615 0.00 2019-12-15 11:26:30 2019-12-15 11:27:38 t 1 1 198670 562 0.00 2019-12-15 11:27:50 2019-12-15 11:29:47 t 1 1 198672 689 0.00 2019-12-15 11:34:13 2019-12-15 11:34:19 t 1 1 198675 562 0.00 2019-12-15 11:37:08 2019-12-15 11:37:35 t 1 1 198676 220 0.00 2019-12-15 10:48:37 2019-12-15 11:38:17 t 1 1 198677 622 0.00 2019-12-15 11:34:34 2019-12-15 11:39:34 t 1 1 198679 724 0.00 2019-12-15 11:40:02 2019-12-15 11:41:07 t 1 1 198682 679 0.00 2019-12-15 11:23:45 2019-12-15 11:42:06 t 1 1 198683 694 0.00 2019-12-15 11:34:44 2019-12-15 11:44:10 t 1 1 198684 689 0.00 2019-12-15 11:44:31 2019-12-15 11:44:39 t 1 1 198685 694 0.00 2019-12-15 11:44:16 2019-12-15 11:46:24 t 1 1 198686 562 0.00 2019-12-15 11:48:08 2019-12-15 11:48:18 t 1 1 198689 689 0.00 2019-12-15 11:49:38 2019-12-15 11:50:06 t 1 1 198691 689 0.00 2019-12-15 11:55:04 2019-12-15 11:55:33 t 1 1 198693 675 0.00 2019-12-15 11:26:18 2019-12-15 11:56:22 t 1 1 198694 625 0.00 2019-12-15 11:56:30 2019-12-15 11:56:31 t 1 1 198697 615 0.00 2019-12-15 11:56:50 2019-12-15 11:59:01 t 1 1 198699 689 0.00 2019-12-15 12:00:31 2019-12-15 12:01:47 t 1 1 198703 637 0.00 2019-12-15 11:49:12 2019-12-15 12:06:53 t 1 1 198706 689 0.00 2019-12-15 12:12:11 2019-12-15 12:13:13 t 1 1 198707 724 0.00 2019-12-15 11:41:05 2019-12-15 12:14:12 t 1 1 198709 738 0.00 2019-12-15 12:14:31 2019-12-15 12:14:33 t 1 1 198711 691 0.00 2019-12-15 12:15:21 2019-12-15 12:15:39 t 1 1 198716 738 0.00 2019-12-15 12:18:17 2019-12-15 12:18:17 f 1 1 198718 637 0.00 2019-12-15 12:17:26 2019-12-15 12:19:38 t 1 1 198721 481 0.00 2019-12-15 11:43:13 2019-12-15 12:25:20 t 1 1 198723 687 0.00 2019-12-15 12:25:30 2019-12-15 12:29:47 t 1 1 198725 591 0.00 2019-12-15 11:18:29 2019-12-15 12:32:24 t 1 1 198728 562 0.00 2019-12-15 12:40:28 2019-12-15 12:40:52 t 1 1 198731 694 0.00 2019-12-15 11:46:31 2019-12-15 12:45:17 t 1 1 198733 679 0.00 2019-12-15 12:39:45 2019-12-15 12:45:32 t 1 1 198736 675 0.00 2019-12-15 12:32:43 2019-12-15 12:48:26 t 1 1 198741 481 0.00 2019-12-15 12:25:47 2019-12-15 12:57:44 t 1 1 198743 675 0.00 2019-12-15 12:56:31 2019-12-15 12:58:59 t 1 1 198746 649 0.00 2019-12-15 12:55:22 2019-12-15 13:01:45 t 1 1 198748 564 0.00 2019-12-15 09:31:46 2019-12-15 13:06:08 t 1 1 198749 675 0.00 2019-12-15 13:05:45 2019-12-15 13:07:13 t 1 1 198751 656 0.00 2019-12-15 13:12:23 2019-12-15 13:13:30 t 1 1 198753 694 0.00 2019-12-15 13:14:01 2019-12-15 13:14:02 t 1 1 198757 459 0.00 2019-12-15 13:18:14 2019-12-15 13:18:25 t 1 2 198762 683 0.00 2019-12-15 13:20:48 2019-12-15 13:23:18 t 1 1 198767 724 0.00 2019-12-15 13:25:36 2019-12-15 13:25:37 t 1 1 198773 691 0.00 2019-12-15 13:28:36 2019-12-15 13:30:21 t 1 1 198779 514 0.00 2019-12-15 13:34:07 2019-12-15 13:34:08 t 1 1 198783 514 0.00 2019-12-15 13:35:24 2019-12-15 13:35:25 t 1 1 198785 514 0.00 2019-12-15 13:35:25 2019-12-15 13:36:05 t 1 1 198788 514 0.00 2019-12-15 13:36:06 2019-12-15 13:37:24 t 1 1 198791 687 0.00 2019-12-15 13:37:39 2019-12-15 13:37:40 t 1 1 198795 656 0.00 2019-12-15 13:12:45 2019-12-15 13:42:34 t 1 1 198808 528 0.00 2019-12-15 13:52:29 2019-12-15 13:52:30 t 1 1 198811 481 0.00 2019-12-15 12:58:24 2019-12-15 13:53:35 t 1 1 198812 481 0.00 2019-12-15 13:54:16 2019-12-15 13:54:18 t 1 1 198819 591 0.00 2019-12-15 13:39:48 2019-12-15 13:59:18 t 1 1 198823 656 0.00 2019-12-15 13:42:34 2019-12-15 14:04:17 t 1 1 198827 660 0.00 2019-12-15 12:57:12 2019-12-15 14:05:28 t 1 1 198829 722 0.00 2019-12-15 14:05:37 2019-12-15 14:05:38 t 1 1 198834 722 0.00 2019-12-15 14:05:38 2019-12-15 14:07:33 t 1 1 198835 711 0.00 2019-12-15 14:07:21 2019-12-15 14:08:33 t 1 1 198842 591 0.00 2019-12-15 14:12:43 2019-12-15 14:12:45 t 1 1 198844 591 0.00 2019-12-15 14:13:07 2019-12-15 14:13:09 t 1 1 198848 591 0.00 2019-12-15 14:14:31 2019-12-15 14:14:32 t 1 1 198853 679 0.00 2019-12-15 14:17:22 2019-12-15 14:17:23 t 1 1 198854 716 0.00 2019-12-15 14:17:23 2019-12-15 14:17:24 t 1 1 198862 625 0.00 2019-12-15 14:22:08 2019-12-15 14:22:15 t 1 1 198865 625 0.00 2019-12-15 14:22:30 2019-12-15 14:22:31 t 1 1 198867 687 0.00 2019-12-15 14:25:11 2019-12-15 14:25:12 t 1 1 198868 631 0.00 2019-12-15 14:25:29 2019-12-15 14:25:29 t 1 1 198871 631 0.00 2019-12-15 14:25:29 2019-12-15 14:25:49 t 1 1 198885 724 0.00 2019-12-15 14:40:05 2019-12-15 14:40:06 t 1 1 198886 724 0.00 2019-12-15 14:40:06 2019-12-15 14:40:14 t 1 1 198889 724 0.00 2019-12-15 14:40:18 2019-12-15 14:40:19 t 1 1 198890 707 0.00 2019-12-15 14:40:15 2019-12-15 14:41:37 t 1 1 198892 724 0.00 2019-12-15 14:43:37 2019-12-15 14:43:39 t 1 1 198895 724 0.00 2019-12-15 14:43:49 2019-12-15 14:44:04 t 1 1 198897 707 0.00 2019-12-15 14:44:04 2019-12-15 14:45:05 t 1 1 198899 707 0.00 2019-12-15 14:46:45 2019-12-15 14:46:46 t 1 1 198902 707 0.00 2019-12-15 14:47:02 2019-12-15 14:48:31 t 1 1 198917 692 0.00 2019-12-15 15:05:20 2019-12-15 15:05:29 t 1 1 198923 485 0.00 2019-12-15 15:02:18 2019-12-15 15:12:53 t 1 1 198927 692 0.00 2019-12-15 15:13:35 2019-12-15 15:14:39 t 1 1 198930 667 0.00 2019-12-15 15:15:07 2019-12-15 15:15:14 t 1 1 198936 538 0.00 2019-12-15 13:31:08 2019-12-15 15:27:54 t 1 1 198938 538 0.00 2019-12-15 15:28:01 2019-12-15 15:28:20 t 1 1 198941 538 0.00 2019-12-15 15:28:35 2019-12-15 15:28:36 t 1 1 198943 538 0.00 2019-12-15 15:29:27 2019-12-15 15:30:40 t 1 1 198944 514 0.00 2019-12-15 15:19:09 2019-12-15 15:31:49 t 1 1 198949 514 0.00 2019-12-15 15:43:46 2019-12-15 15:47:06 t 1 1 198950 514 0.00 2019-12-15 15:47:21 2019-12-15 15:47:22 t 1 1 198953 615 0.00 2019-12-15 15:51:01 2019-12-15 15:51:02 t 1 1 198954 615 0.00 2019-12-15 15:51:02 2019-12-15 15:51:23 t 1 1 198958 615 0.00 2019-12-15 15:51:54 2019-12-15 15:51:55 t 1 1 198959 615 0.00 2019-12-15 15:51:55 2019-12-15 15:52:12 t 1 1 198962 615 0.00 2019-12-15 15:52:32 2019-12-15 15:52:33 t 1 1 198971 615 0.00 2019-12-15 16:04:42 2019-12-15 16:04:43 t 1 1 198646 707 0.00 2019-12-15 10:22:34 2019-12-15 11:12:32 t 1 1 198649 689 0.00 2019-12-15 11:13:52 2019-12-15 11:13:57 t 1 1 198651 709 0.00 2019-12-15 11:13:07 2019-12-15 11:15:14 t 1 1 198656 562 0.00 2019-12-15 11:18:09 2019-12-15 11:18:37 t 1 1 198657 562 0.00 2019-12-15 11:19:02 2019-12-15 11:19:12 t 1 1 198659 689 0.00 2019-12-15 11:17:04 2019-12-15 11:19:27 t 1 1 198660 689 0.00 2019-12-15 11:19:38 2019-12-15 11:20:04 t 1 1 198661 689 0.00 2019-12-15 11:24:00 2019-12-15 11:24:07 t 1 1 198665 689 0.00 2019-12-15 11:26:45 2019-12-15 11:27:06 t 1 1 198666 689 0.00 2019-12-15 11:27:16 2019-12-15 11:27:20 t 1 1 198669 689 0.00 2019-12-15 11:29:06 2019-12-15 11:29:13 t 1 1 198671 622 0.00 2019-12-15 11:27:47 2019-12-15 11:34:19 t 1 1 198673 694 0.00 2019-12-15 11:19:28 2019-12-15 11:34:44 t 1 1 198674 637 0.00 2019-12-15 11:18:33 2019-12-15 11:37:27 t 1 1 198678 724 0.00 2019-12-15 11:25:12 2019-12-15 11:40:03 t 1 1 198681 481 0.00 2019-12-15 11:13:17 2019-12-15 11:41:40 t 1 1 198688 637 0.00 2019-12-15 11:47:05 2019-12-15 11:48:26 t 1 1 198690 562 0.00 2019-12-15 11:51:27 2019-12-15 11:52:27 t 1 1 198695 615 0.00 2019-12-15 11:47:34 2019-12-15 11:56:50 t 1 1 198698 689 0.00 2019-12-15 11:59:00 2019-12-15 11:59:27 t 1 1 198700 562 0.00 2019-12-15 11:54:36 2019-12-15 12:02:28 t 1 1 198702 689 0.00 2019-12-15 12:06:00 2019-12-15 12:06:27 t 1 1 198704 689 0.00 2019-12-15 12:10:51 2019-12-15 12:11:18 t 1 1 198712 691 0.00 2019-12-15 12:15:39 2019-12-15 12:16:02 t 1 1 198713 724 0.00 2019-12-15 12:14:11 2019-12-15 12:16:45 t 1 1 198714 738 0.00 2019-12-15 12:17:03 2019-12-15 12:17:20 t 1 1 198715 691 0.00 2019-12-15 12:16:02 2019-12-15 12:17:50 t 1 1 198717 738 0.00 2019-12-15 12:17:33 2019-12-15 12:19:29 t 1 1 198719 738 0.00 2019-12-15 12:16:24 2019-12-15 12:23:06 t 1 1 198722 562 0.00 2019-12-15 12:23:06 2019-12-15 12:29:38 t 1 1 198724 562 0.00 2019-12-15 12:31:29 2019-12-15 12:32:13 t 1 1 198727 679 0.00 2019-12-15 12:22:57 2019-12-15 12:39:45 t 1 1 198734 673 0.00 2019-12-15 12:07:07 2019-12-15 12:45:39 t 1 1 198735 687 0.00 2019-12-15 12:45:11 2019-12-15 12:46:17 t 1 1 198737 663 0.00 2019-12-15 12:34:14 2019-12-15 12:49:39 t 1 1 198738 562 0.00 2019-12-15 12:53:22 2019-12-15 12:54:29 t 1 1 198740 711 0.00 2019-12-15 12:45:31 2019-12-15 12:57:36 t 1 1 198742 689 0.00 2019-12-15 12:56:41 2019-12-15 12:58:43 t 1 1 198750 498 0.00 2019-12-15 12:35:13 2019-12-15 13:09:18 t 1 2 198755 694 0.00 2019-12-15 13:14:02 2019-12-15 13:15:30 t 1 1 198756 707 0.00 2019-12-15 11:19:27 2019-12-15 13:17:23 t 1 1 198758 683 0.00 2019-12-15 13:20:14 2019-12-15 13:20:16 t 1 1 198759 683 0.00 2019-12-15 13:20:16 2019-12-15 13:20:48 t 1 1 198760 689 0.00 2019-12-15 13:20:25 2019-12-15 13:21:39 t 1 1 198761 694 0.00 2019-12-15 13:22:33 2019-12-15 13:22:34 t 1 1 198763 694 0.00 2019-12-15 13:22:34 2019-12-15 13:24:30 t 1 1 198765 724 0.00 2019-12-15 13:25:22 2019-12-15 13:25:23 t 1 1 198768 724 0.00 2019-12-15 13:25:37 2019-12-15 13:25:46 t 1 1 198770 459 0.00 2019-12-15 13:19:01 2019-12-15 13:29:40 t 1 2 198771 691 0.00 2019-12-15 13:30:10 2019-12-15 13:30:10 t 1 1 198775 485 0.00 2019-12-15 13:28:43 2019-12-15 13:31:04 t 1 1 198776 691 0.00 2019-12-15 13:30:20 2019-12-15 13:31:30 t 1 1 198778 514 0.00 2019-12-15 13:33:57 2019-12-15 13:33:58 t 1 1 198780 514 0.00 2019-12-15 13:33:58 2019-12-15 13:34:37 t 1 1 198784 514 0.00 2019-12-15 13:34:08 2019-12-15 13:35:30 t 1 1 198786 514 0.00 2019-12-15 13:36:05 2019-12-15 13:36:06 t 1 1 198789 514 0.00 2019-12-15 13:37:24 2019-12-15 13:37:25 t 1 1 198794 392 0.00 2019-12-15 12:10:01 2019-12-15 13:40:44 t 1 2 198796 687 0.00 2019-12-15 13:39:28 2019-12-15 13:42:37 t 1 1 198798 673 0.00 2019-12-15 13:09:25 2019-12-15 13:43:04 t 1 1 198799 724 0.00 2019-12-15 13:26:02 2019-12-15 13:43:30 t 1 1 198800 562 0.00 2019-12-15 13:47:44 2019-12-15 13:47:45 t 1 1 198802 562 0.00 2019-12-15 13:47:46 2019-12-15 13:49:31 t 1 1 198804 528 0.00 2019-12-15 13:49:41 2019-12-15 13:51:31 t 1 1 198810 528 0.00 2019-12-15 13:51:45 2019-12-15 13:53:31 t 1 1 198813 481 0.00 2019-12-15 13:54:18 2019-12-15 13:54:51 t 1 1 198815 716 0.00 2019-12-15 13:54:53 2019-12-15 13:56:31 t 1 1 198821 673 0.00 2019-12-15 14:02:01 2019-12-15 14:02:02 t 1 1 198824 656 0.00 2019-12-15 14:04:40 2019-12-15 14:04:41 t 1 1 198830 656 0.00 2019-12-15 14:04:41 2019-12-15 14:05:41 t 1 1 198832 660 0.00 2019-12-15 14:05:43 2019-12-15 14:07:21 t 1 1 198838 679 0.00 2019-12-15 14:10:52 2019-12-15 14:12:01 t 1 1 198845 675 0.00 2019-12-15 14:12:02 2019-12-15 14:13:14 t 1 1 198849 675 0.00 2019-12-15 14:13:15 2019-12-15 14:14:34 t 1 1 198851 679 0.00 2019-12-15 14:17:09 2019-12-15 14:17:11 t 1 1 198856 679 0.00 2019-12-15 14:17:23 2019-12-15 14:18:36 t 1 1 198857 679 0.00 2019-12-15 14:19:19 2019-12-15 14:19:20 t 1 1 198858 562 0.00 2019-12-15 14:19:52 2019-12-15 14:19:53 t 1 1 198859 679 0.00 2019-12-15 14:19:20 2019-12-15 14:20:36 t 1 1 198863 625 0.00 2019-12-15 14:22:15 2019-12-15 14:22:16 t 1 1 198869 687 0.00 2019-12-15 14:25:12 2019-12-15 14:25:38 t 1 1 198872 631 0.00 2019-12-15 14:25:49 2019-12-15 14:25:50 t 1 1 198873 631 0.00 2019-12-15 14:25:50 2019-12-15 14:26:35 t 1 1 198877 395 0.00 2019-12-15 14:30:17 2019-12-15 14:30:17 f 1 2 198878 724 0.00 2019-12-15 14:31:24 2019-12-15 14:31:24 t 1 1 198879 724 0.00 2019-12-15 14:31:24 2019-12-15 14:32:37 t 1 1 198883 724 0.00 2019-12-15 14:39:27 2019-12-15 14:39:28 t 1 1 198887 707 0.00 2019-12-15 14:40:14 2019-12-15 14:40:15 t 1 1 198893 724 0.00 2019-12-15 14:43:39 2019-12-15 14:43:47 t 1 1 198900 707 0.00 2019-12-15 14:46:46 2019-12-15 14:47:01 t 1 1 198903 707 0.00 2019-12-15 14:48:31 2019-12-15 14:48:32 t 1 1 198904 707 0.00 2019-12-15 14:48:32 2019-12-15 14:49:38 t 1 1 198909 625 0.00 2019-12-15 14:54:15 2019-12-15 14:54:16 t 1 1 198910 625 0.00 2019-12-15 14:54:16 2019-12-15 14:55:39 t 1 1 198913 637 0.00 2019-12-15 15:00:16 2019-12-15 15:00:17 t 1 1 198914 637 0.00 2019-12-15 15:00:17 2019-12-15 15:01:39 t 1 1 198916 692 0.00 2019-12-15 15:05:18 2019-12-15 15:05:20 t 1 1 198918 724 0.00 2019-12-15 14:46:21 2019-12-15 15:08:51 t 1 1 198920 667 0.00 2019-12-15 15:11:35 2019-12-15 15:11:36 t 1 1 198921 667 0.00 2019-12-15 15:11:36 2019-12-15 15:12:39 t 1 1 198926 692 0.00 2019-12-15 15:13:46 2019-12-15 15:13:46 f 1 1 198928 692 0.00 2019-12-15 15:13:15 2019-12-15 15:14:39 t 1 1 198929 667 0.00 2019-12-15 15:15:06 2019-12-15 15:15:07 t 1 1 198932 707 0.00 2019-12-15 14:51:35 2019-12-15 15:16:55 t 1 1 198933 514 0.00 2019-12-15 15:18:19 2019-12-15 15:18:35 t 1 1 198940 538 0.00 2019-12-15 15:28:21 2019-12-15 15:28:35 t 1 1 198942 538 0.00 2019-12-15 15:28:36 2019-12-15 15:29:40 t 1 1 198946 516 0.00 2019-12-15 15:24:07 2019-12-15 15:35:40 t 1 1 198952 615 0.00 2019-12-15 15:39:44 2019-12-15 15:50:54 t 1 1 198957 615 0.00 2019-12-15 15:51:38 2019-12-15 15:51:54 t 1 1 198961 615 0.00 2019-12-15 15:51:24 2019-12-15 15:52:32 t 1 1 198964 615 0.00 2019-12-15 15:53:04 2019-12-15 15:53:06 t 1 1 198967 615 0.00 2019-12-15 15:53:06 2019-12-15 15:54:44 t 1 1 198969 734 0.00 2019-12-15 15:54:47 2019-12-15 15:54:47 t 1 1 198977 724 0.00 2019-12-15 16:12:21 2019-12-15 16:12:47 t 1 1 198980 724 0.00 2019-12-15 16:13:00 2019-12-15 16:13:01 t 1 1 198982 724 0.00 2019-12-15 16:14:01 2019-12-15 16:14:02 t 1 1 198983 724 0.00 2019-12-15 16:14:02 2019-12-15 16:14:25 t 1 1 198986 724 0.00 2019-12-15 16:14:26 2019-12-15 16:15:05 t 1 1 198990 691 0.00 2019-12-15 16:15:18 2019-12-15 16:15:18 t 1 1 198995 490 0.00 2019-12-15 16:15:32 2019-12-15 16:15:34 t 1 1 198996 490 0.00 2019-12-15 16:15:34 2019-12-15 16:15:55 t 1 1 198999 691 0.00 2019-12-15 16:16:00 2019-12-15 16:16:01 t 1 1 199003 691 0.00 2019-12-15 16:16:10 2019-12-15 16:16:12 t 1 1 199006 691 0.00 2019-12-15 16:16:12 2019-12-15 16:16:37 t 1 1 199009 615 0.00 2019-12-15 16:16:51 2019-12-15 16:16:52 t 1 1 199010 615 0.00 2019-12-15 16:16:52 2019-12-15 16:17:48 t 1 1 199012 615 0.00 2019-12-15 16:17:48 2019-12-15 16:17:49 t 1 1 199015 615 0.00 2019-12-15 16:18:19 2019-12-15 16:18:20 t 1 1 199018 615 0.00 2019-12-15 16:18:44 2019-12-15 16:19:02 t 1 1 199021 615 0.00 2019-12-15 16:19:05 2019-12-15 16:19:06 t 1 1 199022 615 0.00 2019-12-15 16:19:06 2019-12-15 16:19:09 t 1 1 199025 615 0.00 2019-12-15 16:19:28 2019-12-15 16:19:29 t 1 1 199028 615 0.00 2019-12-15 16:18:21 2019-12-15 16:19:50 t 1 1 199031 615 0.00 2019-12-15 16:20:08 2019-12-15 16:20:34 t 1 1 199036 692 0.00 2019-12-15 16:21:41 2019-12-15 16:21:48 t 1 1 199039 692 0.00 2019-12-15 16:21:50 2019-12-15 16:22:27 t 1 1 199042 692 0.00 2019-12-15 16:22:52 2019-12-15 16:22:54 t 1 1 199045 692 0.00 2019-12-15 16:23:07 2019-12-15 16:24:51 t 1 1 199047 724 0.00 2019-12-15 16:27:27 2019-12-15 16:28:51 t 1 1 199048 689 0.00 2019-12-15 16:29:59 2019-12-15 16:30:00 t 1 1 199049 689 0.00 2019-12-15 16:30:00 2019-12-15 16:31:02 t 1 1 199053 689 0.00 2019-12-15 16:31:35 2019-12-15 16:31:51 t 1 1 199055 615 0.00 2019-12-15 16:32:30 2019-12-15 16:32:31 t 1 1 199060 615 0.00 2019-12-15 16:32:31 2019-12-15 16:33:51 t 1 1 199066 722 0.00 2019-12-15 16:38:03 2019-12-15 16:38:04 t 1 1 199068 722 0.00 2019-12-15 16:38:16 2019-12-15 16:38:16 t 1 1 199076 615 0.00 2019-12-15 16:47:21 2019-12-15 16:47:23 t 1 1 199079 483 0.00 2019-12-15 16:46:23 2019-12-15 16:47:54 t 1 1 199080 615 0.00 2019-12-15 16:47:43 2019-12-15 16:48:17 t 1 1 199085 615 0.00 2019-12-15 16:48:18 2019-12-15 16:49:50 t 1 1 199089 615 0.00 2019-12-15 16:50:11 2019-12-15 16:50:31 t 1 1 199092 615 0.00 2019-12-15 16:50:52 2019-12-15 16:50:53 t 1 1 199095 615 0.00 2019-12-15 16:51:14 2019-12-15 16:51:16 t 1 1 199098 615 0.00 2019-12-15 16:51:39 2019-12-15 16:51:58 t 1 1 199102 615 0.00 2019-12-15 16:52:25 2019-12-15 16:52:45 t 1 1 199105 615 0.00 2019-12-15 16:53:03 2019-12-15 16:53:11 t 1 1 199108 615 0.00 2019-12-15 16:53:31 2019-12-15 16:53:32 t 1 1 199112 615 0.00 2019-12-15 16:53:46 2019-12-15 16:54:55 t 1 1 199115 615 0.00 2019-12-15 16:57:18 2019-12-15 16:57:19 t 1 1 199119 615 0.00 2019-12-15 17:00:37 2019-12-15 17:00:38 t 1 1 199127 635 0.00 2019-12-15 17:14:31 2019-12-15 17:14:40 t 1 1 199130 687 0.00 2019-12-15 17:14:41 2019-12-15 17:15:52 t 1 1 199132 687 0.00 2019-12-15 17:15:54 2019-12-15 17:16:58 t 1 1 199134 683 0.00 2019-12-15 17:16:58 2019-12-15 17:17:07 t 1 1 199135 724 0.00 2019-12-15 17:17:07 2019-12-15 17:17:08 t 1 1 199139 724 0.00 2019-12-15 17:17:17 2019-12-15 17:17:28 t 1 1 199142 683 0.00 2019-12-15 17:17:21 2019-12-15 17:17:51 t 1 1 199147 683 0.00 2019-12-15 17:17:51 2019-12-15 17:18:58 t 1 1 199153 722 0.00 2019-12-15 17:24:08 2019-12-15 17:24:10 t 1 1 199154 483 0.00 2019-12-15 17:24:12 2019-12-15 17:24:13 t 1 1 199157 722 0.00 2019-12-15 17:24:29 2019-12-15 17:24:38 t 1 1 199160 687 0.00 2019-12-15 17:25:00 2019-12-15 17:25:01 t 1 1 199161 483 0.00 2019-12-15 17:24:13 2019-12-15 17:25:20 t 1 1 199164 687 0.00 2019-12-15 17:25:50 2019-12-15 17:25:51 t 1 1 199167 687 0.00 2019-12-15 17:25:01 2019-12-15 17:26:03 t 1 1 199171 615 0.00 2019-12-15 17:25:52 2019-12-15 17:26:32 t 1 1 199175 481 0.00 2019-12-15 17:13:00 2019-12-15 17:30:00 t 1 1 199176 683 0.00 2019-12-15 17:33:50 2019-12-15 17:33:51 t 1 1 199182 625 0.00 2019-12-15 17:38:06 2019-12-15 17:38:18 t 1 1 199184 633 0.00 2019-12-15 17:42:20 2019-12-15 17:42:21 t 1 1 199185 538 0.00 2019-12-15 15:31:17 2019-12-15 17:45:03 t 1 1 199187 722 0.00 2019-12-15 17:35:51 2019-12-15 17:51:45 t 1 1 199189 625 0.00 2019-12-15 17:38:18 2019-12-15 17:56:26 t 1 1 199193 707 0.00 2019-12-15 17:49:09 2019-12-15 17:57:34 t 1 1 199198 691 0.00 2019-12-15 18:02:28 2019-12-15 18:03:01 t 1 1 199200 687 0.00 2019-12-15 17:58:28 2019-12-15 18:05:23 t 1 1 199204 459 0.00 2019-12-15 18:08:05 2019-12-15 18:08:21 t 1 2 199206 730 0.00 2019-12-15 18:08:54 2019-12-15 18:08:55 t 1 1 199207 730 0.00 2019-12-15 18:08:55 2019-12-15 18:09:42 t 1 1 199212 516 0.00 2019-12-15 18:10:29 2019-12-15 18:11:59 t 1 1 199213 667 0.00 2019-12-15 18:15:59 2019-12-15 18:16:00 t 1 1 199220 633 0.00 2019-12-15 18:19:17 2019-12-15 18:19:44 t 1 1 199225 633 0.00 2019-12-15 18:19:57 2019-12-15 18:21:00 t 1 1 199226 687 0.00 2019-12-15 18:21:56 2019-12-15 18:21:57 t 1 1 199243 696 0.00 2019-12-15 18:37:44 2019-12-15 18:38:12 t 1 1 199248 611 0.00 2019-12-15 18:39:10 2019-12-15 18:39:21 t 1 1 199252 625 0.00 2019-12-15 18:31:05 2019-12-15 18:44:21 t 1 1 199254 707 0.00 2019-12-15 18:45:19 2019-12-15 18:45:19 t 1 1 199257 649 0.00 2019-12-15 18:46:43 2019-12-15 18:46:44 t 1 1 199258 649 0.00 2019-12-15 18:46:44 2019-12-15 18:48:02 t 1 1 199260 615 0.00 2019-12-15 18:49:17 2019-12-15 18:49:17 t 1 1 199265 481 0.00 2019-12-15 18:06:55 2019-12-15 18:54:27 t 1 1 199266 481 0.00 2019-12-15 18:55:09 2019-12-15 18:55:11 t 1 1 199268 481 0.00 2019-12-15 18:55:11 2019-12-15 18:55:22 t 1 1 199271 696 0.00 2019-12-15 18:55:36 2019-12-15 18:55:37 t 1 1 199273 696 0.00 2019-12-15 18:55:37 2019-12-15 18:55:51 t 1 1 199277 696 0.00 2019-12-15 18:56:20 2019-12-15 18:56:21 t 1 1 199278 696 0.00 2019-12-15 18:56:55 2019-12-15 18:56:56 t 1 1 199280 675 0.00 2019-12-15 18:41:15 2019-12-15 18:58:48 t 1 1 199282 696 0.00 2019-12-15 18:56:21 2019-12-15 18:59:46 t 1 1 199283 696 0.00 2019-12-15 18:59:46 2019-12-15 19:07:09 t 1 1 199289 691 0.00 2019-12-15 19:09:42 2019-12-15 19:09:50 t 1 1 199292 691 0.00 2019-12-15 19:09:18 2019-12-15 19:10:41 t 1 1 198960 615 0.00 2019-12-15 15:52:12 2019-12-15 15:52:13 t 1 1 198963 615 0.00 2019-12-15 15:52:33 2019-12-15 15:53:04 t 1 1 198965 615 0.00 2019-12-15 15:52:13 2019-12-15 15:53:43 t 1 1 198966 734 0.00 2019-12-15 15:54:23 2019-12-15 15:54:24 t 1 1 198968 734 0.00 2019-12-15 15:54:24 2019-12-15 15:54:47 t 1 1 198970 734 0.00 2019-12-15 15:54:47 2019-12-15 15:56:45 t 1 1 198973 637 0.00 2019-12-15 16:10:50 2019-12-15 16:10:51 t 1 1 198974 637 0.00 2019-12-15 16:11:02 2019-12-15 16:11:03 t 1 1 198976 724 0.00 2019-12-15 16:12:20 2019-12-15 16:12:21 t 1 1 198979 637 0.00 2019-12-15 16:11:03 2019-12-15 16:12:49 t 1 1 198981 724 0.00 2019-12-15 16:12:48 2019-12-15 16:13:49 t 1 1 198985 724 0.00 2019-12-15 16:13:01 2019-12-15 16:14:49 t 1 1 198988 724 0.00 2019-12-15 16:15:05 2019-12-15 16:15:06 t 1 1 198989 691 0.00 2019-12-15 16:15:05 2019-12-15 16:15:18 t 1 1 198992 392 0.00 2019-12-15 15:59:53 2019-12-15 16:15:30 t 1 2 198994 724 0.00 2019-12-15 16:15:06 2019-12-15 16:15:32 t 1 1 198998 691 0.00 2019-12-15 16:15:31 2019-12-15 16:16:00 t 1 1 199001 490 0.00 2019-12-15 16:16:03 2019-12-15 16:16:04 t 1 1 199002 490 0.00 2019-12-15 16:16:04 2019-12-15 16:16:10 t 1 1 199005 724 0.00 2019-12-15 16:16:21 2019-12-15 16:16:21 t 1 1 199008 724 0.00 2019-12-15 16:16:21 2019-12-15 16:16:51 t 1 1 199014 490 0.00 2019-12-15 16:18:06 2019-12-15 16:18:06 t 1 1 199017 615 0.00 2019-12-15 16:18:43 2019-12-15 16:18:44 t 1 1 199020 490 0.00 2019-12-15 16:19:03 2019-12-15 16:19:05 t 1 1 199024 724 0.00 2019-12-15 16:19:10 2019-12-15 16:19:28 t 1 1 199027 724 0.00 2019-12-15 16:19:34 2019-12-15 16:19:35 t 1 1 199029 724 0.00 2019-12-15 16:19:35 2019-12-15 16:20:08 t 1 1 199032 615 0.00 2019-12-15 16:20:34 2019-12-15 16:20:35 t 1 1 199033 483 0.00 2019-12-15 16:21:05 2019-12-15 16:21:06 t 1 1 199034 483 0.00 2019-12-15 16:21:07 2019-12-15 16:21:40 t 1 1 199037 692 0.00 2019-12-15 16:21:49 2019-12-15 16:21:50 t 1 1 199040 692 0.00 2019-12-15 16:22:27 2019-12-15 16:22:28 t 1 1 199043 692 0.00 2019-12-15 16:22:54 2019-12-15 16:23:06 t 1 1 199052 689 0.00 2019-12-15 16:31:34 2019-12-15 16:31:35 t 1 1 199057 615 0.00 2019-12-15 16:32:45 2019-12-15 16:32:47 t 1 1 199059 615 0.00 2019-12-15 16:33:41 2019-12-15 16:33:43 t 1 1 199063 615 0.00 2019-12-15 16:34:19 2019-12-15 16:34:19 t 1 1 199064 615 0.00 2019-12-15 16:34:19 2019-12-15 16:35:51 t 1 1 199067 722 0.00 2019-12-15 16:38:04 2019-12-15 16:38:16 t 1 1 199070 722 0.00 2019-12-15 16:38:33 2019-12-15 16:38:34 t 1 1 199071 722 0.00 2019-12-15 16:38:34 2019-12-15 16:39:53 t 1 1 199072 481 0.00 2019-12-15 16:44:34 2019-12-15 16:44:35 t 1 1 199073 392 0.00 2019-12-15 16:15:52 2019-12-15 16:45:54 t 1 2 199078 615 0.00 2019-12-15 16:47:41 2019-12-15 16:47:43 t 1 1 199084 615 0.00 2019-12-15 16:49:45 2019-12-15 16:49:46 t 1 1 199088 615 0.00 2019-12-15 16:50:10 2019-12-15 16:50:11 t 1 1 199091 615 0.00 2019-12-15 16:50:32 2019-12-15 16:50:52 t 1 1 199094 615 0.00 2019-12-15 16:50:53 2019-12-15 16:51:14 t 1 1 199097 615 0.00 2019-12-15 16:51:37 2019-12-15 16:51:38 t 1 1 199101 615 0.00 2019-12-15 16:52:25 2019-12-15 16:52:25 t 1 1 199107 615 0.00 2019-12-15 16:52:45 2019-12-15 16:53:31 t 1 1 199110 615 0.00 2019-12-15 16:53:45 2019-12-15 16:53:46 t 1 1 199113 615 0.00 2019-12-15 16:53:32 2019-12-15 16:54:55 t 1 1 199121 615 0.00 2019-12-15 17:00:38 2019-12-15 17:01:57 t 1 1 199125 635 0.00 2019-12-15 17:12:39 2019-12-15 17:13:58 t 1 1 199126 635 0.00 2019-12-15 17:14:30 2019-12-15 17:14:31 t 1 1 199129 687 0.00 2019-12-15 17:13:32 2019-12-15 17:14:58 t 1 1 199133 683 0.00 2019-12-15 17:16:57 2019-12-15 17:16:58 t 1 1 199137 724 0.00 2019-12-15 17:17:16 2019-12-15 17:17:17 t 1 1 199138 683 0.00 2019-12-15 17:17:20 2019-12-15 17:17:21 t 1 1 199141 724 0.00 2019-12-15 17:17:29 2019-12-15 17:17:51 t 1 1 199144 724 0.00 2019-12-15 17:17:51 2019-12-15 17:17:52 t 1 1 199146 724 0.00 2019-12-15 17:18:16 2019-12-15 17:18:17 t 1 1 199149 687 0.00 2019-12-15 17:19:26 2019-12-15 17:19:27 t 1 1 199150 687 0.00 2019-12-15 17:19:28 2019-12-15 17:20:58 t 1 1 199151 722 0.00 2019-12-15 17:23:40 2019-12-15 17:23:41 t 1 1 199152 722 0.00 2019-12-15 17:23:41 2019-12-15 17:24:08 t 1 1 199156 722 0.00 2019-12-15 17:24:29 2019-12-15 17:24:29 t 1 1 199159 722 0.00 2019-12-15 17:24:39 2019-12-15 17:25:00 t 1 1 199163 615 0.00 2019-12-15 17:25:21 2019-12-15 17:25:50 t 1 1 199166 687 0.00 2019-12-15 17:25:51 2019-12-15 17:25:52 t 1 1 199170 615 0.00 2019-12-15 17:26:11 2019-12-15 17:26:12 t 1 1 199174 615 0.00 2019-12-15 17:26:12 2019-12-15 17:27:58 t 1 1 199177 683 0.00 2019-12-15 17:33:51 2019-12-15 17:34:58 t 1 1 199179 683 0.00 2019-12-15 17:34:21 2019-12-15 17:36:51 t 1 1 199186 633 0.00 2019-12-15 17:42:21 2019-12-15 17:49:09 t 1 1 199192 730 0.00 2019-12-15 17:57:32 2019-12-15 17:57:33 t 1 1 199194 730 0.00 2019-12-15 17:57:33 2019-12-15 17:57:55 t 1 1 199196 730 0.00 2019-12-15 17:57:55 2019-12-15 18:01:02 t 1 1 199197 691 0.00 2019-12-15 18:01:52 2019-12-15 18:02:28 t 1 1 199199 691 0.00 2019-12-15 18:03:01 2019-12-15 18:04:14 t 1 1 199203 625 0.00 2019-12-15 18:07:19 2019-12-15 18:07:20 t 1 1 199205 625 0.00 2019-12-15 18:07:20 2019-12-15 18:08:54 t 1 1 199209 615 0.00 2019-12-15 17:50:58 2019-12-15 18:09:53 t 1 1 199211 687 0.00 2019-12-15 18:09:43 2019-12-15 18:10:59 t 1 1 199216 633 0.00 2019-12-15 18:16:59 2019-12-15 18:17:00 t 1 1 199217 625 0.00 2019-12-15 18:15:42 2019-12-15 18:17:17 t 1 1 199218 633 0.00 2019-12-15 18:17:00 2019-12-15 18:19:00 t 1 1 199219 633 0.00 2019-12-15 18:19:16 2019-12-15 18:19:17 t 1 1 199224 687 0.00 2019-12-15 18:20:29 2019-12-15 18:20:30 t 1 1 199229 687 0.00 2019-12-15 18:21:57 2019-12-15 18:23:00 t 1 1 199230 707 0.00 2019-12-15 18:16:06 2019-12-15 18:23:20 t 1 1 199232 707 0.00 2019-12-15 18:23:26 2019-12-15 18:23:27 t 1 1 199233 707 0.00 2019-12-15 18:23:27 2019-12-15 18:25:01 t 1 1 199235 564 0.00 2019-12-15 17:41:57 2019-12-15 18:28:58 t 1 1 199238 516 0.00 2019-12-15 18:15:21 2019-12-15 18:31:32 t 1 1 199240 633 0.00 2019-12-15 18:32:03 2019-12-15 18:32:04 t 1 1 199241 633 0.00 2019-12-15 18:32:04 2019-12-15 18:32:14 t 1 1 199247 611 0.00 2019-12-15 18:39:10 2019-12-15 18:39:10 t 1 1 199250 611 0.00 2019-12-15 18:39:22 2019-12-15 18:39:29 t 1 1 199251 611 0.00 2019-12-15 18:39:29 2019-12-15 18:43:51 t 1 1 199256 707 0.00 2019-12-15 18:45:19 2019-12-15 18:46:43 t 1 1 199259 615 0.00 2019-12-15 18:28:32 2019-12-15 18:49:17 t 1 1 199262 615 0.00 2019-12-15 18:49:18 2019-12-15 18:51:02 t 1 1 199263 696 0.00 2019-12-15 18:51:21 2019-12-15 18:51:22 t 1 1 199264 696 0.00 2019-12-15 18:51:22 2019-12-15 18:51:36 t 1 1 199270 625 0.00 2019-12-15 18:44:47 2019-12-15 18:55:36 t 1 1 198972 615 0.00 2019-12-15 16:04:43 2019-12-15 16:05:46 t 1 1 198975 637 0.00 2019-12-15 16:10:51 2019-12-15 16:12:20 t 1 1 198978 724 0.00 2019-12-15 16:12:47 2019-12-15 16:12:48 t 1 1 198984 724 0.00 2019-12-15 16:14:25 2019-12-15 16:14:26 t 1 1 198987 691 0.00 2019-12-15 16:15:04 2019-12-15 16:15:05 t 1 1 198991 691 0.00 2019-12-15 16:15:18 2019-12-15 16:15:30 t 1 1 198993 691 0.00 2019-12-15 16:15:30 2019-12-15 16:15:31 t 1 1 198997 724 0.00 2019-12-15 16:15:55 2019-12-15 16:15:56 t 1 1 199000 691 0.00 2019-12-15 16:16:01 2019-12-15 16:16:03 t 1 1 199004 724 0.00 2019-12-15 16:15:56 2019-12-15 16:16:20 t 1 1 199007 724 0.00 2019-12-15 16:16:37 2019-12-15 16:16:38 t 1 1 199011 724 0.00 2019-12-15 16:16:38 2019-12-15 16:17:49 t 1 1 199013 615 0.00 2019-12-15 16:17:49 2019-12-15 16:18:06 t 1 1 199016 490 0.00 2019-12-15 16:18:06 2019-12-15 16:18:43 t 1 1 199019 490 0.00 2019-12-15 16:19:02 2019-12-15 16:19:03 t 1 1 199023 724 0.00 2019-12-15 16:19:09 2019-12-15 16:19:10 t 1 1 199026 615 0.00 2019-12-15 16:19:29 2019-12-15 16:19:34 t 1 1 199030 615 0.00 2019-12-15 16:20:08 2019-12-15 16:20:08 t 1 1 199035 692 0.00 2019-12-15 16:21:40 2019-12-15 16:21:41 t 1 1 199038 615 0.00 2019-12-15 16:20:35 2019-12-15 16:21:50 t 1 1 199041 692 0.00 2019-12-15 16:22:28 2019-12-15 16:22:52 t 1 1 199044 692 0.00 2019-12-15 16:23:06 2019-12-15 16:23:07 t 1 1 199046 724 0.00 2019-12-15 16:27:26 2019-12-15 16:27:27 t 1 1 199050 689 0.00 2019-12-15 16:31:02 2019-12-15 16:31:03 t 1 1 199051 689 0.00 2019-12-15 16:31:03 2019-12-15 16:31:34 t 1 1 199054 689 0.00 2019-12-15 16:31:51 2019-12-15 16:31:52 t 1 1 199056 689 0.00 2019-12-15 16:31:53 2019-12-15 16:32:45 t 1 1 199058 615 0.00 2019-12-15 16:32:47 2019-12-15 16:33:41 t 1 1 199061 615 0.00 2019-12-15 16:34:04 2019-12-15 16:34:05 t 1 1 199062 615 0.00 2019-12-15 16:33:44 2019-12-15 16:34:19 t 1 1 199065 615 0.00 2019-12-15 16:34:05 2019-12-15 16:35:51 t 1 1 199069 722 0.00 2019-12-15 16:38:16 2019-12-15 16:38:33 t 1 1 199074 481 0.00 2019-12-15 16:44:35 2019-12-15 16:45:54 t 1 1 199075 483 0.00 2019-12-15 16:46:22 2019-12-15 16:46:23 t 1 1 199077 615 0.00 2019-12-15 16:47:23 2019-12-15 16:47:41 t 1 1 199081 615 0.00 2019-12-15 16:48:17 2019-12-15 16:48:18 t 1 1 199082 625 0.00 2019-12-15 16:49:04 2019-12-15 16:49:05 t 1 1 199083 625 0.00 2019-12-15 16:49:05 2019-12-15 16:49:45 t 1 1 199086 625 0.00 2019-12-15 16:49:50 2019-12-15 16:49:51 t 1 1 199087 625 0.00 2019-12-15 16:49:51 2019-12-15 16:50:10 t 1 1 199090 615 0.00 2019-12-15 16:50:31 2019-12-15 16:50:32 t 1 1 199093 615 0.00 2019-12-15 16:49:46 2019-12-15 16:50:55 t 1 1 199096 615 0.00 2019-12-15 16:51:16 2019-12-15 16:51:37 t 1 1 199099 615 0.00 2019-12-15 16:51:58 2019-12-15 16:51:59 t 1 1 199100 615 0.00 2019-12-15 16:51:59 2019-12-15 16:52:25 t 1 1 199103 615 0.00 2019-12-15 16:52:45 2019-12-15 16:52:45 t 1 1 199104 615 0.00 2019-12-15 16:53:01 2019-12-15 16:53:03 t 1 1 199106 615 0.00 2019-12-15 16:53:11 2019-12-15 16:53:13 t 1 1 199109 615 0.00 2019-12-15 16:53:13 2019-12-15 16:53:45 t 1 1 199111 544 0.00 2019-12-15 16:54:23 2019-12-15 16:54:25 t 1 2 199114 615 0.00 2019-12-15 16:56:50 2019-12-15 16:56:51 t 1 1 199116 615 0.00 2019-12-15 16:56:51 2019-12-15 16:57:57 t 1 1 199117 615 0.00 2019-12-15 16:57:19 2019-12-15 16:58:57 t 1 1 199118 615 0.00 2019-12-15 17:00:05 2019-12-15 17:00:06 t 1 1 199120 220 0.00 2019-12-15 16:40:55 2019-12-15 17:00:57 t 1 2 199122 615 0.00 2019-12-15 17:00:06 2019-12-15 17:01:57 t 1 1 199123 635 0.00 2019-12-15 17:12:37 2019-12-15 17:12:38 t 1 1 199124 687 0.00 2019-12-15 17:13:31 2019-12-15 17:13:32 t 1 1 199128 687 0.00 2019-12-15 17:14:40 2019-12-15 17:14:41 t 1 1 199131 687 0.00 2019-12-15 17:15:52 2019-12-15 17:15:54 t 1 1 199136 724 0.00 2019-12-15 17:17:08 2019-12-15 17:17:16 t 1 1 199140 724 0.00 2019-12-15 17:17:28 2019-12-15 17:17:29 t 1 1 199143 683 0.00 2019-12-15 17:17:51 2019-12-15 17:17:51 t 1 1 199145 724 0.00 2019-12-15 17:17:52 2019-12-15 17:18:16 t 1 1 199148 724 0.00 2019-12-15 17:18:17 2019-12-15 17:19:26 t 1 1 199155 722 0.00 2019-12-15 17:24:10 2019-12-15 17:24:29 t 1 1 199158 722 0.00 2019-12-15 17:24:38 2019-12-15 17:24:39 t 1 1 199162 615 0.00 2019-12-15 17:25:20 2019-12-15 17:25:21 t 1 1 199165 615 0.00 2019-12-15 17:25:51 2019-12-15 17:25:51 t 1 1 199168 615 0.00 2019-12-15 17:26:03 2019-12-15 17:26:04 t 1 1 199169 615 0.00 2019-12-15 17:26:04 2019-12-15 17:26:11 t 1 1 199172 615 0.00 2019-12-15 17:26:32 2019-12-15 17:26:33 t 1 1 199173 615 0.00 2019-12-15 17:26:33 2019-12-15 17:27:24 t 1 1 199178 615 0.00 2019-12-15 17:27:24 2019-12-15 17:36:37 t 1 1 199180 625 0.00 2019-12-15 17:33:03 2019-12-15 17:37:01 t 1 1 199181 625 0.00 2019-12-15 17:38:04 2019-12-15 17:38:06 t 1 1 199183 483 0.00 2019-12-15 17:36:37 2019-12-15 17:41:17 t 1 1 199188 722 0.00 2019-12-15 17:52:13 2019-12-15 17:53:40 t 1 1 199190 483 0.00 2019-12-15 17:57:00 2019-12-15 17:57:02 t 1 1 199191 483 0.00 2019-12-15 17:57:02 2019-12-15 17:57:32 t 1 1 199195 483 0.00 2019-12-15 17:59:06 2019-12-15 17:59:08 t 1 1 199201 481 0.00 2019-12-15 17:31:37 2019-12-15 18:06:35 t 1 1 199202 625 0.00 2019-12-15 18:01:21 2019-12-15 18:07:08 t 1 1 199208 687 0.00 2019-12-15 18:09:42 2019-12-15 18:09:43 t 1 1 199210 516 0.00 2019-12-15 18:10:28 2019-12-15 18:10:29 t 1 1 199214 667 0.00 2019-12-15 18:16:00 2019-12-15 18:16:06 t 1 1 199215 633 0.00 2019-12-15 17:42:37 2019-12-15 18:16:59 t 1 1 199221 633 0.00 2019-12-15 18:19:44 2019-12-15 18:19:45 t 1 1 199222 633 0.00 2019-12-15 18:19:56 2019-12-15 18:19:57 t 1 1 199223 633 0.00 2019-12-15 18:19:46 2019-12-15 18:20:29 t 1 1 199227 687 0.00 2019-12-15 18:20:30 2019-12-15 18:22:00 t 1 1 199228 687 0.00 2019-12-15 18:22:43 2019-12-15 18:22:44 t 1 1 199231 687 0.00 2019-12-15 18:22:44 2019-12-15 18:23:26 t 1 1 199234 615 0.00 2019-12-15 18:09:53 2019-12-15 18:28:32 t 1 1 199236 564 0.00 2019-12-15 18:30:28 2019-12-15 18:30:29 t 1 1 199237 625 0.00 2019-12-15 18:25:25 2019-12-15 18:31:06 t 1 1 199239 564 0.00 2019-12-15 18:30:29 2019-12-15 18:32:01 t 1 1 199242 696 0.00 2019-12-15 18:37:43 2019-12-15 18:37:44 t 1 1 199244 696 0.00 2019-12-15 18:38:12 2019-12-15 18:38:13 t 1 1 199245 696 0.00 2019-12-15 18:38:13 2019-12-15 18:38:54 t 1 1 199246 687 0.00 2019-12-15 18:38:50 2019-12-15 18:39:10 t 1 1 199249 611 0.00 2019-12-15 18:39:21 2019-12-15 18:39:22 t 1 1 199253 625 0.00 2019-12-15 18:44:46 2019-12-15 18:44:47 t 1 1 199255 635 0.00 2019-12-15 18:38:54 2019-12-15 18:45:50 t 1 1 199261 220 0.00 2019-12-15 18:42:34 2019-12-15 18:50:02 t 1 2 199267 696 0.00 2019-12-15 18:51:52 2019-12-15 18:55:18 t 1 1 199269 696 0.00 2019-12-15 18:55:22 2019-12-15 18:55:23 t 1 1 199272 615 0.00 2019-12-15 18:51:36 2019-12-15 18:55:45 t 1 1 199274 696 0.00 2019-12-15 18:55:51 2019-12-15 18:55:52 t 1 1 199281 615 0.00 2019-12-15 18:55:55 2019-12-15 18:58:48 t 1 1 199285 687 0.00 2019-12-15 19:07:56 2019-12-15 19:07:57 t 1 1 199288 691 0.00 2019-12-15 19:09:40 2019-12-15 19:09:42 t 1 1 199291 724 0.00 2019-12-15 19:02:21 2019-12-15 19:10:03 t 1 1 199294 633 0.00 2019-12-15 18:32:14 2019-12-15 19:14:43 t 1 1 199296 687 0.00 2019-12-15 19:07:57 2019-12-15 19:15:22 t 1 1 199301 691 0.00 2019-12-15 19:15:52 2019-12-15 19:15:54 t 1 1 199302 687 0.00 2019-12-15 19:15:23 2019-12-15 19:16:39 t 1 1 199304 633 0.00 2019-12-15 19:15:32 2019-12-15 19:17:39 t 1 1 199308 691 0.00 2019-12-15 19:21:39 2019-12-15 19:22:03 t 1 1 199310 625 0.00 2019-12-15 19:23:18 2019-12-15 19:23:19 t 1 1 199312 633 0.00 2019-12-15 19:18:57 2019-12-15 19:25:43 t 1 1 199313 675 0.00 2019-12-15 19:30:02 2019-12-15 19:32:46 t 1 1 199317 691 0.00 2019-12-15 19:36:42 2019-12-15 19:36:43 t 1 1 199326 687 0.00 2019-12-15 19:58:08 2019-12-15 20:00:11 t 1 1 199339 633 0.00 2019-12-15 20:21:43 2019-12-15 20:23:11 t 1 1 199343 633 0.00 2019-12-15 20:23:54 2019-12-15 20:23:55 t 1 1 199345 633 0.00 2019-12-15 20:23:20 2019-12-15 20:24:06 t 1 1 199350 687 0.00 2019-12-15 20:28:15 2019-12-15 20:30:39 t 1 1 199352 724 0.00 2019-12-15 20:28:19 2019-12-15 20:31:39 t 1 1 199357 675 0.00 2019-12-15 20:33:16 2019-12-15 20:33:16 t 1 1 199359 564 0.00 2019-12-15 20:34:09 2019-12-15 20:34:10 t 1 1 199363 510 0.00 2019-12-15 20:35:27 2019-12-15 20:35:28 t 1 1 199365 742 0.00 2019-12-15 20:36:14 2019-12-15 20:36:15 t 1 1 199366 742 0.00 2019-12-15 20:36:48 2019-12-15 20:36:49 t 1 1 199367 742 0.00 2019-12-15 20:36:15 2019-12-15 20:37:15 t 1 1 199370 724 0.00 2019-12-15 20:37:50 2019-12-15 20:37:51 t 1 1 199374 724 0.00 2019-12-15 20:38:31 2019-12-15 20:39:01 t 1 1 199375 490 0.00 2019-12-15 20:39:20 2019-12-15 20:39:21 t 1 1 199378 724 0.00 2019-12-15 20:39:22 2019-12-15 20:39:58 t 1 1 199383 724 0.00 2019-12-15 20:40:13 2019-12-15 20:41:19 t 1 1 199387 220 0.00 2019-12-15 20:46:25 2019-12-15 20:46:25 t 1 1 199388 633 0.00 2019-12-15 20:30:39 2019-12-15 20:47:27 t 1 1 199389 220 0.00 2019-12-15 20:46:26 2019-12-15 20:48:11 t 1 1 199395 750 0.00 2019-12-15 20:45:27 2019-12-15 21:08:07 t 1 1 199397 667 0.00 2019-12-15 21:11:59 2019-12-15 21:12:44 t 1 1 199398 726 0.00 2019-12-15 21:05:05 2019-12-15 21:13:47 t 1 1 199399 675 0.00 2019-12-15 21:14:33 2019-12-15 21:14:34 t 1 1 199407 615 0.00 2019-12-15 21:34:50 2019-12-15 21:37:45 t 1 1 199409 716 0.00 2019-12-15 21:39:09 2019-12-15 21:39:10 t 1 1 199412 716 0.00 2019-12-15 21:39:34 2019-12-15 21:39:35 t 1 1 199426 675 0.00 2019-12-15 21:48:52 2019-12-15 21:50:17 t 1 1 199432 635 0.00 2019-12-15 21:55:07 2019-12-15 21:56:18 t 1 1 199433 679 0.00 2019-12-15 21:57:50 2019-12-15 21:57:51 t 1 1 199437 689 0.00 2019-12-15 22:02:37 2019-12-15 22:02:38 t 1 1 199443 635 0.00 2019-12-15 21:52:37 2019-12-15 22:15:04 t 1 1 199447 591 0.00 2019-12-15 22:12:58 2019-12-15 22:15:18 t 1 1 199451 691 0.00 2019-12-15 22:16:39 2019-12-15 22:16:40 t 1 1 199452 591 0.00 2019-12-15 22:15:46 2019-12-15 22:17:19 t 1 1 199454 691 0.00 2019-12-15 22:16:40 2019-12-15 22:18:20 t 1 1 199456 742 0.00 2019-12-15 22:18:28 2019-12-15 22:18:29 t 1 1 199457 687 0.00 2019-12-15 22:19:02 2019-12-15 22:19:03 t 1 1 199459 742 0.00 2019-12-15 22:18:29 2019-12-15 22:20:20 t 1 1 199461 750 0.00 2019-12-15 22:20:52 2019-12-15 22:20:53 t 1 1 199462 750 0.00 2019-12-15 21:08:58 2019-12-15 22:21:35 t 1 1 199468 687 0.00 2019-12-15 22:42:07 2019-12-15 22:45:41 t 1 1 199473 538 0.00 2019-12-15 23:03:16 2019-12-15 23:03:54 t 1 1 199475 538 0.00 2019-12-15 23:03:54 2019-12-15 23:05:25 t 1 1 199477 538 0.00 2019-12-15 23:05:41 2019-12-15 23:07:25 t 1 1 199484 667 0.00 2019-12-15 23:12:39 2019-12-15 23:13:56 t 1 1 199487 687 0.00 2019-12-15 23:18:27 2019-12-15 23:18:28 t 1 1 199489 635 0.00 2019-12-15 23:25:19 2019-12-15 23:25:20 t 1 1 199490 635 0.00 2019-12-15 23:25:20 2019-12-15 23:26:25 t 1 1 199495 722 0.00 2019-12-15 23:30:44 2019-12-15 23:30:45 t 1 1 199496 722 0.00 2019-12-15 23:30:45 2019-12-15 23:31:09 t 1 1 199497 667 0.00 2019-12-15 23:33:45 2019-12-15 23:33:46 t 1 1 199500 633 0.00 2019-12-15 23:39:19 2019-12-15 23:41:36 t 1 1 199505 485 0.00 2019-12-15 23:47:01 2019-12-15 23:47:25 t 1 1 199507 633 0.00 2019-12-15 23:48:31 2019-12-15 23:50:28 t 1 1 199509 687 0.00 2019-12-15 23:36:10 2019-12-15 23:53:54 t 1 1 199510 538 0.00 2019-12-15 23:54:14 2019-12-15 23:54:16 t 1 1 199517 490 0.00 2019-12-16 00:06:18 2019-12-16 00:06:19 t 1 1 199520 744 0.00 2019-12-15 22:12:27 2019-12-16 00:12:13 t 1 1 199523 687 0.00 2019-12-16 00:15:26 2019-12-16 00:16:05 t 1 1 199525 687 0.00 2019-12-16 00:16:06 2019-12-16 00:17:32 t 1 1 199527 687 0.00 2019-12-16 00:27:21 2019-12-16 00:27:23 t 1 1 199529 538 0.00 2019-12-15 23:54:50 2019-12-16 00:29:15 t 1 1 199538 516 0.00 2019-12-16 00:41:00 2019-12-16 00:41:01 t 1 1 199539 516 0.00 2019-12-16 00:41:01 2019-12-16 00:41:27 t 1 1 199544 220 0.00 2019-12-16 00:42:15 2019-12-16 00:42:50 t 1 2 199545 516 0.00 2019-12-16 00:41:49 2019-12-16 00:43:08 t 1 1 199553 633 0.00 2019-12-16 00:48:10 2019-12-16 00:48:20 t 1 1 199556 633 0.00 2019-12-16 00:48:44 2019-12-16 00:48:45 t 1 1 199560 514 0.00 2019-12-16 00:48:02 2019-12-16 00:49:34 t 1 1 199561 538 0.00 2019-12-16 00:46:48 2019-12-16 00:51:40 t 1 1 199564 687 0.00 2019-12-16 00:53:48 2019-12-16 00:53:49 t 1 1 199567 516 0.00 2019-12-16 00:43:20 2019-12-16 00:56:30 t 1 1 199570 687 0.00 2019-12-16 00:57:51 2019-12-16 00:59:35 t 1 1 199573 687 0.00 2019-12-16 01:17:33 2019-12-16 01:17:34 t 1 1 199576 687 0.00 2019-12-16 01:42:41 2019-12-16 01:44:55 t 1 1 199577 687 0.00 2019-12-16 01:45:12 2019-12-16 01:45:13 t 1 1 199578 687 0.00 2019-12-16 01:45:13 2019-12-16 01:46:40 t 1 1 199581 633 0.00 2019-12-16 01:21:50 2019-12-16 01:49:38 t 1 1 199582 551 0.00 2019-12-16 02:30:54 2019-12-16 02:30:55 t 1 1 199588 551 0.00 2019-12-16 02:50:33 2019-12-16 02:55:34 t 1 1 199590 551 0.00 2019-12-16 02:59:34 2019-12-16 03:04:19 t 1 1 199592 551 0.00 2019-12-16 03:07:54 2019-12-16 03:28:39 t 1 1 199593 675 0.00 2019-12-16 04:24:24 2019-12-16 04:29:09 t 1 1 199596 675 0.00 2019-12-16 05:49:04 2019-12-16 05:55:31 t 1 1 199598 675 0.00 2019-12-16 06:36:10 2019-12-16 06:39:33 t 1 1 199600 637 0.00 2019-12-16 06:57:52 2019-12-16 07:03:14 t 1 1 199604 637 0.00 2019-12-16 07:09:59 2019-12-16 07:17:58 t 1 1 199608 625 0.00 2019-12-16 07:22:01 2019-12-16 07:22:35 t 1 1 199609 516 0.00 2019-12-16 07:19:17 2019-12-16 07:23:29 t 1 1 199611 625 0.00 2019-12-16 07:22:34 2019-12-16 07:24:09 t 1 1 199275 696 0.00 2019-12-15 18:55:23 2019-12-15 18:55:55 t 1 1 199276 696 0.00 2019-12-15 18:55:52 2019-12-15 18:56:20 t 1 1 199279 696 0.00 2019-12-15 18:56:56 2019-12-15 18:58:07 t 1 1 199284 687 0.00 2019-12-15 19:07:09 2019-12-15 19:07:18 t 1 1 199286 742 0.00 2019-12-15 19:06:16 2019-12-15 19:08:43 t 1 1 199287 675 0.00 2019-12-15 19:02:49 2019-12-15 19:09:21 t 1 1 199290 691 0.00 2019-12-15 19:09:50 2019-12-15 19:09:51 t 1 1 199293 691 0.00 2019-12-15 19:09:51 2019-12-15 19:11:07 t 1 1 199295 667 0.00 2019-12-15 19:03:50 2019-12-15 19:14:52 t 1 1 199298 687 0.00 2019-12-15 19:15:22 2019-12-15 19:15:23 t 1 1 199300 691 0.00 2019-12-15 19:15:43 2019-12-15 19:15:52 t 1 1 199306 675 0.00 2019-12-15 19:18:28 2019-12-15 19:20:07 t 1 1 199307 667 0.00 2019-12-15 19:18:05 2019-12-15 19:22:02 t 1 1 199309 691 0.00 2019-12-15 19:22:02 2019-12-15 19:23:10 t 1 1 199316 691 0.00 2019-12-15 19:36:27 2019-12-15 19:36:42 t 1 1 199319 564 0.00 2019-12-15 18:33:50 2019-12-15 19:38:24 t 1 1 199320 711 0.00 2019-12-15 19:25:53 2019-12-15 19:40:07 t 1 1 199321 649 0.00 2019-12-15 19:15:23 2019-12-15 19:43:18 t 1 1 199324 687 0.00 2019-12-15 19:23:35 2019-12-15 19:58:07 t 1 1 199327 675 0.00 2019-12-15 20:08:52 2019-12-15 20:08:53 t 1 1 199329 675 0.00 2019-12-15 20:10:28 2019-12-15 20:10:29 t 1 1 199332 711 0.00 2019-12-15 20:16:25 2019-12-15 20:16:25 t 1 1 199333 738 0.00 2019-12-15 20:15:58 2019-12-15 20:17:38 t 1 1 199335 742 0.00 2019-12-15 20:18:02 2019-12-15 20:18:03 t 1 1 199338 633 0.00 2019-12-15 20:21:42 2019-12-15 20:21:43 t 1 1 199342 633 0.00 2019-12-15 20:23:32 2019-12-15 20:23:54 t 1 1 199347 481 0.00 2019-12-15 20:24:07 2019-12-15 20:25:11 t 1 1 199349 687 0.00 2019-12-15 20:00:25 2019-12-15 20:28:15 t 1 1 199355 564 0.00 2019-12-15 20:31:30 2019-12-15 20:32:15 t 1 1 199356 724 0.00 2019-12-15 20:32:07 2019-12-15 20:33:11 t 1 1 199361 564 0.00 2019-12-15 20:34:42 2019-12-15 20:34:43 t 1 1 199362 564 0.00 2019-12-15 20:34:43 2019-12-15 20:35:27 t 1 1 199369 742 0.00 2019-12-15 20:37:16 2019-12-15 20:37:50 t 1 1 199371 742 0.00 2019-12-15 20:36:49 2019-12-15 20:38:11 t 1 1 199373 724 0.00 2019-12-15 20:18:35 2019-12-15 20:38:32 t 1 1 199377 724 0.00 2019-12-15 20:38:58 2019-12-15 20:39:23 t 1 1 199381 724 0.00 2019-12-15 20:40:45 2019-12-15 20:40:45 t 1 1 199382 724 0.00 2019-12-15 20:40:45 2019-12-15 20:41:17 t 1 1 199384 724 0.00 2019-12-15 20:41:17 2019-12-15 20:41:22 t 1 1 199385 724 0.00 2019-12-15 20:41:38 2019-12-15 20:41:38 t 1 1 199386 724 0.00 2019-12-15 20:41:38 2019-12-15 20:44:11 t 1 1 199390 667 0.00 2019-12-15 20:50:48 2019-12-15 20:50:49 t 1 1 199393 724 0.00 2019-12-15 20:54:43 2019-12-15 20:56:12 t 1 1 199396 667 0.00 2019-12-15 21:11:12 2019-12-15 21:12:00 t 1 1 199400 675 0.00 2019-12-15 21:14:34 2019-12-15 21:16:15 t 1 1 199404 392 0.00 2019-12-15 19:43:34 2019-12-15 21:27:23 t 1 2 199408 545 0.00 2019-12-15 21:34:47 2019-12-15 21:39:09 t 1 1 199411 724 0.00 2019-12-15 21:39:27 2019-12-15 21:39:34 t 1 1 199413 716 0.00 2019-12-15 21:39:35 2019-12-15 21:41:17 t 1 1 199414 481 0.00 2019-12-15 21:45:00 2019-12-15 21:45:00 t 1 1 199416 481 0.00 2019-12-15 21:46:01 2019-12-15 21:46:01 t 1 1 199417 481 0.00 2019-12-15 21:46:01 2019-12-15 21:46:12 t 1 1 199418 689 0.00 2019-12-15 21:46:29 2019-12-15 21:46:30 t 1 1 199419 510 0.00 2019-12-15 20:35:43 2019-12-15 21:47:51 t 1 1 199421 689 0.00 2019-12-15 21:46:30 2019-12-15 21:48:17 t 1 1 199423 734 0.00 2019-12-15 21:48:40 2019-12-15 21:48:41 t 1 1 199424 675 0.00 2019-12-15 21:48:50 2019-12-15 21:48:52 t 1 1 199428 724 0.00 2019-12-15 21:45:45 2019-12-15 21:51:14 t 1 1 199435 692 0.00 2019-12-15 22:02:04 2019-12-15 22:02:05 t 1 1 199436 692 0.00 2019-12-15 22:02:05 2019-12-15 22:02:37 t 1 1 199439 689 0.00 2019-12-15 22:09:03 2019-12-15 22:09:10 t 1 1 199440 744 0.00 2019-12-15 20:33:48 2019-12-15 22:11:57 t 1 1 199442 591 0.00 2019-12-15 22:12:57 2019-12-15 22:12:58 t 1 1 199446 591 0.00 2019-12-15 22:15:12 2019-12-15 22:15:13 t 1 1 199448 724 0.00 2019-12-15 22:12:51 2019-12-15 22:15:33 t 1 1 199453 687 0.00 2019-12-15 22:18:08 2019-12-15 22:18:09 t 1 1 199455 687 0.00 2019-12-15 22:18:09 2019-12-15 22:18:28 t 1 1 199458 724 0.00 2019-12-15 22:15:34 2019-12-15 22:20:07 t 1 1 199460 687 0.00 2019-12-15 22:19:03 2019-12-15 22:20:20 t 1 1 199463 750 0.00 2019-12-15 22:20:53 2019-12-15 22:21:58 t 1 1 199465 675 0.00 2019-12-15 22:35:17 2019-12-15 22:38:41 t 1 1 199470 625 0.00 2019-12-15 20:13:58 2019-12-15 22:52:28 t 1 1 199472 538 0.00 2019-12-15 23:03:15 2019-12-15 23:03:16 t 1 1 199479 485 0.00 2019-12-15 22:57:36 2019-12-15 23:07:41 t 1 1 199482 687 0.00 2019-12-15 22:48:12 2019-12-15 23:11:36 t 1 1 199483 687 0.00 2019-12-15 23:12:33 2019-12-15 23:12:39 t 1 1 199485 622 0.00 2019-12-15 23:13:31 2019-12-15 23:15:31 t 1 1 199488 687 0.00 2019-12-15 23:18:28 2019-12-15 23:20:25 t 1 1 199493 635 0.00 2019-12-15 23:26:47 2019-12-15 23:28:25 t 1 1 199498 667 0.00 2019-12-15 23:33:46 2019-12-15 23:35:26 t 1 1 199499 734 0.00 2019-12-15 23:17:14 2019-12-15 23:36:17 t 1 1 199501 722 0.00 2019-12-15 23:31:09 2019-12-15 23:41:43 t 1 1 199515 687 0.00 2019-12-15 23:59:35 2019-12-15 23:59:36 t 1 1 199516 687 0.00 2019-12-15 23:59:36 2019-12-16 00:01:30 t 1 1 199518 490 0.00 2019-12-16 00:06:19 2019-12-16 00:07:30 t 1 1 199519 514 0.00 2019-12-15 23:41:45 2019-12-16 00:08:48 t 1 1 199521 498 0.00 2019-12-15 22:19:45 2019-12-16 00:14:18 t 1 2 199522 687 0.00 2019-12-16 00:15:24 2019-12-16 00:15:25 t 1 1 199526 707 0.00 2019-12-15 18:51:23 2019-12-16 00:22:31 t 1 1 199528 687 0.00 2019-12-16 00:27:23 2019-12-16 00:28:34 t 1 1 199530 538 0.00 2019-12-16 00:31:27 2019-12-16 00:31:29 t 1 1 199531 538 0.00 2019-12-16 00:31:29 2019-12-16 00:32:34 t 1 1 199533 538 0.00 2019-12-16 00:32:49 2019-12-16 00:38:01 t 1 1 199535 490 0.00 2019-12-16 00:38:03 2019-12-16 00:38:04 t 1 1 199537 490 0.00 2019-12-16 00:38:04 2019-12-16 00:40:34 t 1 1 199541 490 0.00 2019-12-16 00:40:27 2019-12-16 00:41:34 t 1 1 199543 516 0.00 2019-12-16 00:41:47 2019-12-16 00:41:49 t 1 1 199547 516 0.00 2019-12-16 00:43:08 2019-12-16 00:43:20 t 1 1 199550 734 0.00 2019-12-16 00:46:37 2019-12-16 00:46:48 t 1 1 199552 633 0.00 2019-12-16 00:48:09 2019-12-16 00:48:10 t 1 1 199555 633 0.00 2019-12-16 00:48:21 2019-12-16 00:48:44 t 1 1 199558 633 0.00 2019-12-16 00:48:57 2019-12-16 00:48:58 t 1 1 199559 633 0.00 2019-12-16 00:48:58 2019-12-16 00:49:14 t 1 1 199563 687 0.00 2019-12-16 00:51:44 2019-12-16 00:53:34 t 1 1 199565 687 0.00 2019-12-16 00:54:48 2019-12-16 00:54:49 t 1 1 199566 687 0.00 2019-12-16 00:53:49 2019-12-16 00:55:34 t 1 1 199568 687 0.00 2019-12-16 00:54:49 2019-12-16 00:56:35 t 1 1 199297 649 0.00 2019-12-15 18:52:24 2019-12-15 19:15:23 t 1 1 199299 691 0.00 2019-12-15 19:15:42 2019-12-15 19:15:43 t 1 1 199303 691 0.00 2019-12-15 19:15:54 2019-12-15 19:17:07 t 1 1 199305 675 0.00 2019-12-15 19:18:28 2019-12-15 19:18:28 t 1 1 199311 625 0.00 2019-12-15 19:23:19 2019-12-15 19:25:08 t 1 1 199314 545 0.00 2019-12-15 19:29:13 2019-12-15 19:35:32 t 1 1 199315 691 0.00 2019-12-15 19:36:27 2019-12-15 19:36:27 t 1 1 199318 691 0.00 2019-12-15 19:36:43 2019-12-15 19:36:57 t 1 1 199322 744 0.00 2019-12-15 19:36:57 2019-12-15 19:54:37 t 1 1 199323 516 0.00 2019-12-15 19:53:52 2019-12-15 19:56:30 t 1 1 199325 687 0.00 2019-12-15 19:58:07 2019-12-15 19:58:08 t 1 1 199328 675 0.00 2019-12-15 20:08:53 2019-12-15 20:10:11 t 1 1 199330 675 0.00 2019-12-15 20:10:29 2019-12-15 20:12:11 t 1 1 199331 711 0.00 2019-12-15 19:41:48 2019-12-15 20:16:25 t 1 1 199334 711 0.00 2019-12-15 20:16:25 2019-12-15 20:18:02 t 1 1 199336 742 0.00 2019-12-15 20:18:03 2019-12-15 20:18:35 t 1 1 199337 742 0.00 2019-12-15 20:18:55 2019-12-15 20:19:01 t 1 1 199340 633 0.00 2019-12-15 20:23:19 2019-12-15 20:23:20 t 1 1 199341 633 0.00 2019-12-15 20:23:31 2019-12-15 20:23:32 t 1 1 199344 481 0.00 2019-12-15 20:14:22 2019-12-15 20:23:59 t 1 1 199346 481 0.00 2019-12-15 20:24:06 2019-12-15 20:24:07 t 1 1 199348 633 0.00 2019-12-15 20:23:55 2019-12-15 20:25:11 t 1 1 199351 724 0.00 2019-12-15 20:31:38 2019-12-15 20:31:38 f 1 1 199353 724 0.00 2019-12-15 20:31:39 2019-12-15 20:32:06 t 1 1 199354 724 0.00 2019-12-15 20:32:06 2019-12-15 20:32:07 t 1 1 199358 675 0.00 2019-12-15 20:33:16 2019-12-15 20:33:48 t 1 1 199360 564 0.00 2019-12-15 20:34:10 2019-12-15 20:34:42 t 1 1 199364 510 0.00 2019-12-15 20:35:28 2019-12-15 20:35:43 t 1 1 199368 742 0.00 2019-12-15 20:37:15 2019-12-15 20:37:16 t 1 1 199372 724 0.00 2019-12-15 20:37:51 2019-12-15 20:38:31 t 1 1 199376 490 0.00 2019-12-15 20:39:21 2019-12-15 20:39:22 t 1 1 199379 490 0.00 2019-12-15 20:40:04 2019-12-15 20:40:05 t 1 1 199380 724 0.00 2019-12-15 20:39:57 2019-12-15 20:40:14 t 1 1 199391 724 0.00 2019-12-15 20:54:42 2019-12-15 20:54:43 t 1 1 199392 724 0.00 2019-12-15 20:41:36 2019-12-15 20:55:13 t 1 1 199394 591 0.00 2019-12-15 20:24:40 2019-12-15 21:03:54 t 1 1 199401 498 0.00 2019-12-15 21:10:00 2019-12-15 21:16:53 t 1 2 199402 483 0.00 2019-12-15 21:17:51 2019-12-15 21:18:18 t 1 1 199403 498 0.00 2019-12-15 21:17:30 2019-12-15 21:19:15 t 1 2 199405 724 0.00 2019-12-15 21:18:18 2019-12-15 21:29:23 t 1 1 199406 675 0.00 2019-12-15 21:25:22 2019-12-15 21:34:05 t 1 1 199410 716 0.00 2019-12-15 21:39:10 2019-12-15 21:39:27 t 1 1 199415 481 0.00 2019-12-15 21:45:00 2019-12-15 21:46:00 t 1 1 199420 691 0.00 2019-12-15 21:48:12 2019-12-15 21:48:12 t 1 1 199422 691 0.00 2019-12-15 21:48:13 2019-12-15 21:48:40 t 1 1 199425 734 0.00 2019-12-15 21:48:41 2019-12-15 21:50:17 t 1 1 199427 220 0.00 2019-12-15 21:50:39 2019-12-15 21:50:46 t 1 2 199429 481 0.00 2019-12-15 21:46:12 2019-12-15 21:51:36 t 1 1 199430 635 0.00 2019-12-15 21:52:36 2019-12-15 21:52:37 t 1 1 199431 635 0.00 2019-12-15 21:55:05 2019-12-15 21:55:06 t 1 1 199434 679 0.00 2019-12-15 21:57:51 2019-12-15 21:59:18 t 1 1 199438 689 0.00 2019-12-15 22:02:38 2019-12-15 22:04:18 t 1 1 199441 591 0.00 2019-12-15 21:03:54 2019-12-15 22:12:57 t 1 1 199444 724 0.00 2019-12-15 22:15:04 2019-12-15 22:15:05 t 1 1 199445 724 0.00 2019-12-15 22:15:05 2019-12-15 22:15:12 t 1 1 199449 591 0.00 2019-12-15 22:15:13 2019-12-15 22:15:34 t 1 1 199450 591 0.00 2019-12-15 22:15:45 2019-12-15 22:15:46 t 1 1 199464 687 0.00 2019-12-15 22:21:58 2019-12-15 22:35:53 t 1 1 199466 687 0.00 2019-12-15 22:40:30 2019-12-15 22:40:31 t 1 1 199467 687 0.00 2019-12-15 22:40:31 2019-12-15 22:42:07 t 1 1 199469 687 0.00 2019-12-15 22:45:54 2019-12-15 22:45:54 t 1 1 199471 687 0.00 2019-12-15 22:45:54 2019-12-15 22:57:26 t 1 1 199474 538 0.00 2019-12-15 23:03:54 2019-12-15 23:03:54 t 1 1 199476 538 0.00 2019-12-15 23:05:40 2019-12-15 23:05:41 t 1 1 199478 538 0.00 2019-12-15 23:07:32 2019-12-15 23:07:33 t 1 1 199480 538 0.00 2019-12-15 23:07:33 2019-12-15 23:08:02 t 1 1 199481 392 0.00 2019-12-15 22:01:46 2019-12-15 23:11:02 t 1 2 199486 687 0.00 2019-12-15 23:14:39 2019-12-15 23:17:36 t 1 1 199491 635 0.00 2019-12-15 23:26:37 2019-12-15 23:26:37 t 1 1 199492 635 0.00 2019-12-15 23:26:46 2019-12-15 23:26:47 t 1 1 199494 635 0.00 2019-12-15 23:26:37 2019-12-15 23:28:25 t 1 1 199502 734 0.00 2019-12-15 23:42:12 2019-12-15 23:43:20 t 1 1 199503 485 0.00 2019-12-15 23:46:59 2019-12-15 23:47:00 t 1 1 199504 633 0.00 2019-12-15 23:42:20 2019-12-15 23:47:10 t 1 1 199506 633 0.00 2019-12-15 23:48:31 2019-12-15 23:48:31 t 1 1 199508 538 0.00 2019-12-15 23:08:02 2019-12-15 23:53:32 t 1 1 199511 538 0.00 2019-12-15 23:54:16 2019-12-15 23:54:50 t 1 1 199512 485 0.00 2019-12-15 23:47:25 2019-12-15 23:56:02 t 1 1 199513 687 0.00 2019-12-15 23:58:16 2019-12-15 23:58:17 t 1 1 199514 687 0.00 2019-12-15 23:58:17 2019-12-15 23:59:30 t 1 1 199524 687 0.00 2019-12-16 00:16:05 2019-12-16 00:16:05 t 1 1 199532 734 0.00 2019-12-15 23:43:33 2019-12-16 00:36:19 t 1 1 199534 490 0.00 2019-12-16 00:06:36 2019-12-16 00:38:03 t 1 1 199536 490 0.00 2019-12-16 00:40:26 2019-12-16 00:40:27 t 1 1 199540 516 0.00 2019-12-16 00:41:27 2019-12-16 00:41:28 t 1 1 199542 516 0.00 2019-12-16 00:41:28 2019-12-16 00:41:47 t 1 1 199546 516 0.00 2019-12-16 00:43:08 2019-12-16 00:43:08 t 1 1 199548 490 0.00 2019-12-16 00:42:06 2019-12-16 00:45:52 t 1 1 199549 734 0.00 2019-12-16 00:46:36 2019-12-16 00:46:37 t 1 1 199551 514 0.00 2019-12-16 00:48:00 2019-12-16 00:48:02 t 1 1 199554 633 0.00 2019-12-16 00:48:20 2019-12-16 00:48:21 t 1 1 199557 633 0.00 2019-12-16 00:48:45 2019-12-16 00:48:57 t 1 1 199562 687 0.00 2019-12-16 00:51:43 2019-12-16 00:51:44 t 1 1 199574 687 0.00 2019-12-16 01:17:34 2019-12-16 01:19:35 t 1 1 199575 633 0.00 2019-12-16 00:49:14 2019-12-16 01:21:50 t 1 1 199579 687 0.00 2019-12-16 01:46:40 2019-12-16 01:46:41 t 1 1 199583 551 0.00 2019-12-16 02:32:24 2019-12-16 02:32:25 t 1 1 199586 551 0.00 2019-12-16 02:35:47 2019-12-16 02:45:49 t 1 1 199591 551 0.00 2019-12-16 03:04:19 2019-12-16 03:07:54 t 1 1 199594 675 0.00 2019-12-16 04:29:49 2019-12-16 04:36:42 t 1 1 199595 675 0.00 2019-12-16 05:27:35 2019-12-16 05:49:04 t 1 1 199597 675 0.00 2019-12-16 05:55:30 2019-12-16 06:36:10 t 1 1 199601 694 0.00 2019-12-16 06:55:26 2019-12-16 07:05:10 t 1 1 199602 637 0.00 2019-12-16 07:03:14 2019-12-16 07:09:59 t 1 1 199605 689 0.00 2019-12-16 06:58:01 2019-12-16 07:18:24 t 1 1 199606 516 0.00 2019-12-16 07:14:06 2019-12-16 07:19:18 t 1 1 199607 734 0.00 2019-12-16 06:52:18 2019-12-16 07:21:04 t 1 1 199569 687 0.00 2019-12-16 00:57:51 2019-12-16 00:57:51 t 1 1 199571 687 0.00 2019-12-16 01:01:06 2019-12-16 01:08:17 t 1 1 199572 687 0.00 2019-12-16 01:09:04 2019-12-16 01:17:26 t 1 1 199580 687 0.00 2019-12-16 01:46:41 2019-12-16 01:48:38 t 1 1 199584 551 0.00 2019-12-16 02:30:55 2019-12-16 02:32:40 t 1 1 199585 551 0.00 2019-12-16 02:32:25 2019-12-16 02:33:40 t 1 1 199587 551 0.00 2019-12-16 02:45:49 2019-12-16 02:50:33 t 1 1 199589 551 0.00 2019-12-16 02:55:34 2019-12-16 02:59:34 t 1 1 199599 220 0.00 2019-12-16 05:42:36 2019-12-16 06:40:59 t 1 2 199603 622 0.00 2019-12-16 06:59:08 2019-12-16 07:14:42 t 1 1 199610 709 0.00 2019-12-16 07:21:28 2019-12-16 07:23:57 t 1 1 199612 637 0.00 2019-12-16 07:17:58 2019-12-16 07:25:05 t 1 1 199613 625 0.00 2019-12-16 07:24:11 2019-12-16 07:25:32 t 1 1 199614 633 0.00 2019-12-16 07:27:07 2019-12-16 07:27:14 t 1 1 199615 689 0.00 2019-12-16 07:19:28 2019-12-16 07:29:28 t 1 1 199616 637 0.00 2019-12-16 07:25:05 2019-12-16 07:30:27 t 1 1 199617 637 0.00 2019-12-16 07:30:27 2019-12-16 07:35:13 t 1 1 199618 485 0.00 2019-12-16 07:30:59 2019-12-16 07:37:53 t 1 1 199619 615 0.00 2019-12-16 07:29:53 2019-12-16 07:39:28 t 1 1 199620 615 0.00 2019-12-16 07:39:28 2019-12-16 07:45:42 t 1 1 199621 615 0.00 2019-12-16 07:45:42 2019-12-16 07:50:11 t 1 1 199622 689 0.00 2019-12-16 07:54:30 2019-12-16 07:58:18 t 1 1 199623 625 0.00 2019-12-16 07:25:31 2019-12-16 07:59:37 t 1 1 199624 689 0.00 2019-12-16 08:03:14 2019-12-16 08:03:27 t 1 1 199625 689 0.00 2019-12-16 08:04:33 2019-12-16 08:04:50 t 1 1 199626 625 0.00 2019-12-16 08:00:26 2019-12-16 08:08:30 t 1 1 199627 689 0.00 2019-12-16 08:07:11 2019-12-16 08:08:30 t 1 1 199628 687 0.00 2019-12-16 08:08:17 2019-12-16 08:09:31 t 1 1 199629 625 0.00 2019-12-16 08:11:34 2019-12-16 08:11:34 f 1 1 199630 625 0.00 2019-12-16 08:10:15 2019-12-16 08:11:50 t 1 1 199631 615 0.00 2019-12-16 08:09:39 2019-12-16 08:12:04 t 1 1 199632 625 0.00 2019-12-16 08:10:58 2019-12-16 08:12:41 t 1 1 199633 689 0.00 2019-12-16 08:11:46 2019-12-16 08:14:24 t 1 1 199634 615 0.00 2019-12-16 08:12:04 2019-12-16 08:14:44 t 1 1 199635 750 0.00 2019-12-16 07:56:27 2019-12-16 08:16:31 t 1 1 199636 689 0.00 2019-12-16 08:18:39 2019-12-16 08:18:46 t 1 1 199637 689 0.00 2019-12-16 08:20:48 2019-12-16 08:21:05 t 1 1 199638 615 0.00 2019-12-16 08:14:44 2019-12-16 08:22:22 t 1 1 199639 724 0.00 2019-12-16 08:09:30 2019-12-16 08:22:27 t 1 1 199640 625 0.00 2019-12-16 08:12:39 2019-12-16 08:23:33 t 1 1 199641 689 0.00 2019-12-16 08:23:46 2019-12-16 08:24:08 t 1 1 199642 689 0.00 2019-12-16 08:24:16 2019-12-16 08:24:40 t 1 1 199643 625 0.00 2019-12-16 08:23:33 2019-12-16 08:25:07 t 1 1 199644 689 0.00 2019-12-16 08:27:17 2019-12-16 08:27:30 t 1 1 199645 637 0.00 2019-12-16 07:35:13 2019-12-16 08:28:01 t 1 1 199646 615 0.00 2019-12-16 08:22:22 2019-12-16 08:29:07 t 1 1 199647 689 0.00 2019-12-16 08:27:43 2019-12-16 08:29:13 t 1 1 199648 689 0.00 2019-12-16 08:34:29 2019-12-16 08:34:32 t 1 1 199649 615 0.00 2019-12-16 08:29:07 2019-12-16 08:35:52 t 1 1 199650 689 0.00 2019-12-16 08:38:37 2019-12-16 08:38:47 t 1 1 199651 637 0.00 2019-12-16 08:36:15 2019-12-16 08:42:58 t 1 1 199652 689 0.00 2019-12-16 08:44:15 2019-12-16 08:44:23 t 1 1 199653 707 0.00 2019-12-16 06:10:26 2019-12-16 08:46:34 t 1 1 199654 689 0.00 2019-12-16 08:49:22 2019-12-16 08:49:48 t 1 1 199655 637 0.00 2019-12-16 08:42:58 2019-12-16 08:49:59 t 1 1 199656 635 0.00 2019-12-16 08:25:24 2019-12-16 08:50:14 t 1 1 199657 689 0.00 2019-12-16 08:50:01 2019-12-16 08:50:20 t 1 1 199658 689 0.00 2019-12-16 08:50:32 2019-12-16 08:50:55 t 1 1 199659 689 0.00 2019-12-16 08:51:07 2019-12-16 08:51:26 t 1 1 199660 615 0.00 2019-12-16 08:49:23 2019-12-16 08:51:49 t 1 1 199661 689 0.00 2019-12-16 08:51:38 2019-12-16 08:52:00 t 1 1 199662 689 0.00 2019-12-16 08:52:12 2019-12-16 08:52:25 t 1 1 199663 392 0.00 2019-12-16 08:49:57 2019-12-16 08:53:03 t 1 2 199664 689 0.00 2019-12-16 08:52:44 2019-12-16 08:53:44 t 1 1 199665 538 0.00 2019-12-16 08:55:11 2019-12-16 08:55:12 t 1 1 199666 689 0.00 2019-12-16 08:53:57 2019-12-16 08:55:13 t 1 1 199667 689 0.00 2019-12-16 08:55:24 2019-12-16 08:55:39 t 1 1 199668 615 0.00 2019-12-16 08:51:49 2019-12-16 08:55:50 t 1 1 199669 637 0.00 2019-12-16 08:49:59 2019-12-16 08:56:14 t 1 1 199670 689 0.00 2019-12-16 08:55:51 2019-12-16 08:56:52 t 1 1 199671 637 0.00 2019-12-16 08:56:14 2019-12-16 09:02:13 t 1 1 199672 392 0.00 2019-12-16 08:54:48 2019-12-16 09:05:53 t 1 2 199673 637 0.00 2019-12-16 09:02:13 2019-12-16 09:08:56 t 1 1 199674 675 0.00 2019-12-16 08:58:41 2019-12-16 09:10:27 t 1 1 199675 707 0.00 2019-12-16 09:09:09 2019-12-16 09:12:33 t 1 1 199676 667 0.00 2019-12-16 09:06:10 2019-12-16 09:13:54 t 1 1 199677 637 0.00 2019-12-16 09:08:56 2019-12-16 09:13:59 t 1 1 199678 637 0.00 2019-12-16 09:13:59 2019-12-16 09:20:57 t 1 1 199679 667 0.00 2019-12-16 09:13:54 2019-12-16 09:22:33 t 1 1 199680 734 0.00 2019-12-16 09:17:39 2019-12-16 09:23:18 t 1 1 199681 667 0.00 2019-12-16 09:24:47 2019-12-16 09:25:04 t 1 1 199682 459 0.00 2019-12-16 09:23:46 2019-12-16 09:25:21 t 1 2 199683 667 0.00 2019-12-16 09:25:58 2019-12-16 09:26:09 t 1 1 199684 637 0.00 2019-12-16 09:20:57 2019-12-16 09:27:43 t 1 1 199685 694 0.00 2019-12-16 08:44:42 2019-12-16 09:28:29 t 1 1 199686 615 0.00 2019-12-16 09:07:17 2019-12-16 09:29:26 t 1 1 199687 694 0.00 2019-12-16 09:29:14 2019-12-16 09:33:20 t 1 1 199688 637 0.00 2019-12-16 09:27:43 2019-12-16 09:35:13 t 1 1 199689 538 0.00 2019-12-16 08:55:36 2019-12-16 09:35:22 t 1 1 199690 615 0.00 2019-12-16 09:29:26 2019-12-16 09:36:11 t 1 1 199691 667 0.00 2019-12-16 09:35:23 2019-12-16 09:39:20 t 1 1 199692 694 0.00 2019-12-16 09:33:36 2019-12-16 09:39:22 t 1 1 199693 637 0.00 2019-12-16 09:35:13 2019-12-16 09:41:34 t 1 1 199694 734 0.00 2019-12-16 09:25:04 2019-12-16 09:43:12 t 1 1 199695 637 0.00 2019-12-16 09:43:44 2019-12-16 09:45:28 t 1 1 199696 667 0.00 2019-12-16 09:44:12 2019-12-16 09:46:42 t 1 1 199697 637 0.00 2019-12-16 09:46:35 2019-12-16 09:48:01 t 1 1 199698 625 0.00 2019-12-16 08:25:07 2019-12-16 09:49:20 t 1 1 199699 637 0.00 2019-12-16 09:49:13 2019-12-16 09:50:29 t 1 1 199700 220 0.00 2019-12-16 09:46:40 2019-12-16 09:55:03 t 1 2 199701 622 0.00 2019-12-16 07:14:42 2019-12-16 09:56:09 t 1 1 199702 675 0.00 2019-12-16 09:57:20 2019-12-16 09:59:33 t 1 1 199703 667 0.00 2019-12-16 09:59:20 2019-12-16 10:01:38 t 1 1 199704 635 0.00 2019-12-16 08:51:01 2019-12-16 10:03:26 t 1 1 199705 591 0.00 2019-12-16 09:25:27 2019-12-16 10:03:52 t 1 1 199706 615 0.00 2019-12-16 10:00:32 2019-12-16 10:04:44 t 1 1 199707 622 0.00 2019-12-16 09:56:09 2019-12-16 10:05:02 t 1 1 199708 631 0.00 2019-12-16 10:03:26 2019-12-16 10:06:02 t 1 1 199709 637 0.00 2019-12-16 09:58:23 2019-12-16 10:07:23 t 1 1 199711 675 0.00 2019-12-16 10:00:20 2019-12-16 10:11:04 t 1 1 199714 694 0.00 2019-12-16 09:39:22 2019-12-16 10:14:41 t 1 1 199717 637 0.00 2019-12-16 10:19:19 2019-12-16 10:20:22 t 1 1 199720 711 0.00 2019-12-16 08:43:18 2019-12-16 10:25:24 t 1 1 199723 637 0.00 2019-12-16 10:29:28 2019-12-16 10:30:41 t 1 1 199729 637 0.00 2019-12-16 10:36:27 2019-12-16 10:44:20 t 1 1 199731 694 0.00 2019-12-16 10:14:54 2019-12-16 10:46:25 t 1 1 199741 637 0.00 2019-12-16 10:52:06 2019-12-16 11:00:50 t 1 1 199750 675 0.00 2019-12-16 11:10:41 2019-12-16 11:15:32 t 1 1 199752 637 0.00 2019-12-16 11:19:33 2019-12-16 11:22:59 t 1 1 199758 637 0.00 2019-12-16 11:40:23 2019-12-16 11:48:46 t 1 1 199759 538 0.00 2019-12-16 11:18:19 2019-12-16 11:50:31 t 1 1 199762 615 0.00 2019-12-16 11:51:46 2019-12-16 11:57:48 t 1 1 199765 485 0.00 2019-12-16 12:03:03 2019-12-16 12:04:19 t 1 1 199767 675 0.00 2019-12-16 12:04:23 2019-12-16 12:07:21 t 1 1 199771 591 0.00 2019-12-16 11:47:12 2019-12-16 12:09:51 t 1 1 199776 615 0.00 2019-12-16 12:14:10 2019-12-16 12:16:46 t 1 1 199779 622 0.00 2019-12-16 11:03:25 2019-12-16 12:24:14 t 1 1 199781 694 0.00 2019-12-16 12:24:03 2019-12-16 12:26:00 t 1 1 199782 615 0.00 2019-12-16 12:20:23 2019-12-16 12:30:43 t 1 1 199784 503 0.00 2019-12-16 12:32:28 2019-12-16 12:34:14 t 1 1 199786 631 0.00 2019-12-16 12:35:58 2019-12-16 12:37:05 t 1 1 199789 724 0.00 2019-12-16 12:08:24 2019-12-16 12:37:53 t 1 1 199790 622 0.00 2019-12-16 12:28:24 2019-12-16 12:38:29 t 1 1 199791 663 0.00 2019-12-16 12:32:50 2019-12-16 12:39:45 t 1 1 199795 663 0.00 2019-12-16 12:41:38 2019-12-16 12:43:50 t 1 1 199803 503 0.00 2019-12-16 12:37:09 2019-12-16 12:49:21 t 1 1 199804 675 0.00 2019-12-16 12:48:43 2019-12-16 12:52:30 t 1 1 199805 663 0.00 2019-12-16 12:43:50 2019-12-16 12:53:25 t 1 1 199808 611 0.00 2019-12-16 12:56:25 2019-12-16 12:56:28 t 1 1 199810 487 0.00 2019-12-16 12:55:36 2019-12-16 12:57:41 t 1 2 199811 722 0.00 2019-12-16 12:56:16 2019-12-16 12:58:22 t 1 1 199813 663 0.00 2019-12-16 12:53:25 2019-12-16 12:58:47 t 1 1 199816 562 0.00 2019-12-16 12:52:24 2019-12-16 12:59:12 t 1 1 199820 562 0.00 2019-12-16 13:00:15 2019-12-16 13:00:42 t 1 1 199822 663 0.00 2019-12-16 13:00:57 2019-12-16 13:00:57 f 1 1 199825 722 0.00 2019-12-16 13:02:10 2019-12-16 13:02:41 t 1 1 199826 483 0.00 2019-12-16 12:56:27 2019-12-16 13:03:12 t 1 1 199827 722 0.00 2019-12-16 13:03:49 2019-12-16 13:03:55 t 1 1 199829 722 0.00 2019-12-16 13:05:28 2019-12-16 13:06:00 t 1 1 199831 562 0.00 2019-12-16 13:07:09 2019-12-16 13:09:16 t 1 1 199833 722 0.00 2019-12-16 13:10:55 2019-12-16 13:11:18 t 1 1 199834 611 0.00 2019-12-16 13:03:52 2019-12-16 13:11:41 t 1 1 199838 622 0.00 2019-12-16 12:49:16 2019-12-16 13:13:32 t 1 1 199842 722 0.00 2019-12-16 13:15:13 2019-12-16 13:15:14 t 1 1 199844 738 0.00 2019-12-16 13:16:12 2019-12-16 13:16:40 t 1 1 199847 562 0.00 2019-12-16 13:09:24 2019-12-16 13:18:05 t 1 1 199851 724 0.00 2019-12-16 12:51:12 2019-12-16 13:19:16 t 1 1 199853 724 0.00 2019-12-16 13:19:16 2019-12-16 13:19:36 t 1 1 199855 622 0.00 2019-12-16 13:13:32 2019-12-16 13:20:34 t 1 1 199856 722 0.00 2019-12-16 13:20:16 2019-12-16 13:21:10 t 1 1 199857 722 0.00 2019-12-16 13:21:19 2019-12-16 13:21:30 t 1 1 199858 722 0.00 2019-12-16 13:21:35 2019-12-16 13:22:16 t 1 1 199859 722 0.00 2019-12-16 13:22:21 2019-12-16 13:22:33 t 1 1 199862 483 0.00 2019-12-16 13:16:01 2019-12-16 13:24:02 t 1 1 199864 562 0.00 2019-12-16 13:18:05 2019-12-16 13:24:34 t 1 1 199867 687 0.00 2019-12-16 13:26:04 2019-12-16 13:26:16 t 1 1 199868 625 0.00 2019-12-16 12:47:49 2019-12-16 13:27:58 t 1 1 199871 691 0.00 2019-12-16 13:30:30 2019-12-16 13:31:11 t 1 1 199875 562 0.00 2019-12-16 13:24:34 2019-12-16 13:31:57 t 1 1 199876 691 0.00 2019-12-16 13:31:43 2019-12-16 13:32:03 t 1 1 199880 611 0.00 2019-12-16 13:12:06 2019-12-16 13:32:53 t 1 1 199882 691 0.00 2019-12-16 13:32:22 2019-12-16 13:34:29 t 1 1 199884 392 0.00 2019-12-16 13:35:01 2019-12-16 13:35:05 t 1 2 199885 691 0.00 2019-12-16 13:35:03 2019-12-16 13:35:23 t 1 1 199887 691 0.00 2019-12-16 13:35:38 2019-12-16 13:36:37 t 1 1 199892 691 0.00 2019-12-16 13:37:34 2019-12-16 13:37:53 t 1 1 199901 562 0.00 2019-12-16 13:44:16 2019-12-16 13:45:51 t 1 1 199906 622 0.00 2019-12-16 13:48:42 2019-12-16 13:55:11 t 1 1 199907 656 0.00 2019-12-16 13:44:42 2019-12-16 13:58:46 t 1 1 199908 622 0.00 2019-12-16 13:55:11 2019-12-16 13:59:13 t 1 1 199915 649 0.00 2019-12-16 13:50:34 2019-12-16 14:07:41 t 1 1 199918 656 0.00 2019-12-16 13:58:46 2019-12-16 14:12:07 t 1 1 199919 694 0.00 2019-12-16 13:34:41 2019-12-16 14:14:50 t 1 1 199920 625 0.00 2019-12-16 14:06:13 2019-12-16 14:16:23 t 1 1 199923 675 0.00 2019-12-16 14:19:29 2019-12-16 14:23:36 t 1 1 199926 709 0.00 2019-12-16 14:27:57 2019-12-16 14:31:52 t 1 1 199929 490 0.00 2019-12-16 14:29:57 2019-12-16 14:39:19 t 1 1 199936 514 0.00 2019-12-16 14:42:46 2019-12-16 14:48:25 t 1 1 199938 562 0.00 2019-12-16 14:50:05 2019-12-16 14:50:32 t 1 1 199939 562 0.00 2019-12-16 14:52:11 2019-12-16 14:52:17 t 1 1 199941 694 0.00 2019-12-16 14:49:01 2019-12-16 14:53:06 t 1 1 199944 635 0.00 2019-12-16 14:42:20 2019-12-16 14:55:55 t 1 1 199945 611 0.00 2019-12-16 14:53:43 2019-12-16 14:56:39 t 1 1 199946 514 0.00 2019-12-16 14:48:25 2019-12-16 14:57:28 t 1 1 199947 724 0.00 2019-12-16 14:42:56 2019-12-16 14:57:52 t 1 1 199951 675 0.00 2019-12-16 14:56:54 2019-12-16 15:01:34 t 1 1 199953 392 0.00 2019-12-16 14:45:44 2019-12-16 15:04:32 t 1 2 199955 625 0.00 2019-12-16 14:49:43 2019-12-16 15:05:48 t 1 1 199957 562 0.00 2019-12-16 15:07:33 2019-12-16 15:07:40 t 1 1 199960 485 0.00 2019-12-16 15:06:43 2019-12-16 15:08:26 t 1 1 199962 514 0.00 2019-12-16 14:57:28 2019-12-16 15:09:15 t 1 1 199963 694 0.00 2019-12-16 15:09:22 2019-12-16 15:09:54 t 1 1 199966 562 0.00 2019-12-16 15:18:04 2019-12-16 15:18:18 t 1 1 199970 514 0.00 2019-12-16 15:09:15 2019-12-16 15:28:03 t 1 1 199972 562 0.00 2019-12-16 15:39:15 2019-12-16 15:39:59 t 1 1 199981 750 0.00 2019-12-16 15:44:40 2019-12-16 15:51:58 t 1 1 199984 734 0.00 2019-12-16 15:22:50 2019-12-16 15:55:11 t 1 1 199986 625 0.00 2019-12-16 15:53:40 2019-12-16 15:59:24 t 1 1 199988 514 0.00 2019-12-16 15:28:03 2019-12-16 16:01:00 t 1 1 199989 220 0.00 2019-12-16 15:42:10 2019-12-16 16:01:30 t 1 2 199993 615 0.00 2019-12-16 15:59:34 2019-12-16 16:05:43 t 1 1 199994 625 0.00 2019-12-16 15:59:24 2019-12-16 16:06:12 t 1 1 199995 516 0.00 2019-12-16 15:59:41 2019-12-16 16:07:54 t 1 1 199996 622 0.00 2019-12-16 16:04:03 2019-12-16 16:08:50 t 1 1 199710 538 0.00 2019-12-16 09:35:22 2019-12-16 10:10:45 t 1 1 199712 622 0.00 2019-12-16 10:05:02 2019-12-16 10:11:44 t 1 1 199716 637 0.00 2019-12-16 10:16:27 2019-12-16 10:19:12 t 1 1 199719 707 0.00 2019-12-16 09:40:08 2019-12-16 10:21:32 t 1 1 199724 622 0.00 2019-12-16 10:11:44 2019-12-16 10:31:24 t 1 1 199726 637 0.00 2019-12-16 10:29:47 2019-12-16 10:36:57 t 1 1 199727 675 0.00 2019-12-16 10:37:27 2019-12-16 10:41:32 t 1 1 199733 707 0.00 2019-12-16 10:45:33 2019-12-16 10:46:49 t 1 1 199735 711 0.00 2019-12-16 10:25:24 2019-12-16 10:50:42 t 1 1 199736 637 0.00 2019-12-16 10:50:19 2019-12-16 10:51:32 t 1 1 199737 615 0.00 2019-12-16 10:47:07 2019-12-16 10:52:12 t 1 1 199738 615 0.00 2019-12-16 10:52:12 2019-12-16 10:56:02 t 1 1 199739 724 0.00 2019-12-16 10:49:27 2019-12-16 10:57:38 t 1 1 199740 694 0.00 2019-12-16 10:47:13 2019-12-16 10:58:41 t 1 1 199743 694 0.00 2019-12-16 11:00:35 2019-12-16 11:02:28 t 1 1 199744 625 0.00 2019-12-16 11:00:55 2019-12-16 11:06:05 t 1 1 199746 637 0.00 2019-12-16 11:05:49 2019-12-16 11:08:17 t 1 1 199747 538 0.00 2019-12-16 10:18:16 2019-12-16 11:09:42 t 1 1 199748 637 0.00 2019-12-16 11:09:03 2019-12-16 11:10:49 t 1 1 199751 538 0.00 2019-12-16 11:12:26 2019-12-16 11:18:11 t 1 1 199753 551 0.00 2019-12-16 03:35:21 2019-12-16 11:24:27 t 1 1 199754 734 0.00 2019-12-16 11:31:58 2019-12-16 11:33:40 t 1 1 199757 591 0.00 2019-12-16 10:42:22 2019-12-16 11:47:12 t 1 1 199760 675 0.00 2019-12-16 11:46:13 2019-12-16 11:54:28 t 1 1 199766 538 0.00 2019-12-16 11:55:47 2019-12-16 12:07:13 t 1 1 199770 707 0.00 2019-12-16 10:48:11 2019-12-16 12:09:16 t 1 1 199774 483 0.00 2019-12-16 12:04:16 2019-12-16 12:15:55 t 1 1 199777 750 0.00 2019-12-16 12:13:36 2019-12-16 12:22:50 t 1 1 199783 503 0.00 2019-12-16 12:21:45 2019-12-16 12:32:28 t 1 1 199785 503 0.00 2019-12-16 12:34:14 2019-12-16 12:34:30 t 1 1 199787 538 0.00 2019-12-16 12:09:13 2019-12-16 12:37:08 t 1 1 199796 750 0.00 2019-12-16 12:22:50 2019-12-16 12:45:18 t 1 1 199797 625 0.00 2019-12-16 12:05:14 2019-12-16 12:46:51 t 1 1 199801 220 0.00 2019-12-16 11:31:37 2019-12-16 12:49:00 t 1 2 199806 656 0.00 2019-12-16 10:01:17 2019-12-16 12:53:53 t 1 1 199807 722 0.00 2019-12-16 12:52:23 2019-12-16 12:56:16 t 1 1 199812 722 0.00 2019-12-16 12:58:35 2019-12-16 12:58:42 t 1 1 199814 663 0.00 2019-12-16 12:58:47 2019-12-16 12:58:47 f 1 1 199817 738 0.00 2019-12-16 12:48:38 2019-12-16 12:59:23 t 1 1 199819 738 0.00 2019-12-16 12:59:23 2019-12-16 12:59:52 t 1 1 199824 722 0.00 2019-12-16 13:01:03 2019-12-16 13:02:01 t 1 1 199828 562 0.00 2019-12-16 13:02:21 2019-12-16 13:05:32 t 1 1 199830 722 0.00 2019-12-16 13:07:07 2019-12-16 13:08:08 t 1 1 199832 722 0.00 2019-12-16 13:08:24 2019-12-16 13:09:25 t 1 1 199837 738 0.00 2019-12-16 13:12:14 2019-12-16 13:12:23 t 1 1 199839 722 0.00 2019-12-16 13:13:06 2019-12-16 13:13:42 t 1 1 199841 722 0.00 2019-12-16 13:13:57 2019-12-16 13:14:02 t 1 1 199846 722 0.00 2019-12-16 13:17:21 2019-12-16 13:17:51 t 1 1 199848 722 0.00 2019-12-16 13:18:16 2019-12-16 13:18:24 t 1 1 199854 724 0.00 2019-12-16 13:19:35 2019-12-16 13:19:48 t 1 1 199861 675 0.00 2019-12-16 13:11:55 2019-12-16 13:23:14 t 1 1 199863 707 0.00 2019-12-16 13:08:15 2019-12-16 13:24:31 t 1 1 199865 622 0.00 2019-12-16 13:20:34 2019-12-16 13:24:34 t 1 1 199866 687 0.00 2019-12-16 13:21:13 2019-12-16 13:25:14 t 1 1 199869 722 0.00 2019-12-16 13:22:39 2019-12-16 13:29:18 t 1 1 199870 622 0.00 2019-12-16 13:24:34 2019-12-16 13:31:02 t 1 1 199872 691 0.00 2019-12-16 13:31:11 2019-12-16 13:31:28 t 1 1 199874 503 0.00 2019-12-16 13:22:19 2019-12-16 13:31:54 t 1 1 199877 562 0.00 2019-12-16 13:32:03 2019-12-16 13:32:11 t 1 1 199879 724 0.00 2019-12-16 13:19:48 2019-12-16 13:32:41 t 1 1 199883 691 0.00 2019-12-16 13:34:34 2019-12-16 13:35:03 t 1 1 199886 691 0.00 2019-12-16 13:35:23 2019-12-16 13:35:38 t 1 1 199890 627 0.00 2019-12-16 13:26:47 2019-12-16 13:37:31 t 1 1 199894 691 0.00 2019-12-16 13:37:53 2019-12-16 13:39:05 t 1 1 199895 689 0.00 2019-12-16 13:16:38 2019-12-16 13:40:53 t 1 1 199898 622 0.00 2019-12-16 13:31:02 2019-12-16 13:45:27 t 1 1 199900 750 0.00 2019-12-16 12:47:05 2019-12-16 13:45:48 t 1 1 199902 622 0.00 2019-12-16 13:45:27 2019-12-16 13:48:42 t 1 1 199903 562 0.00 2019-12-16 13:52:00 2019-12-16 13:53:25 t 1 1 199904 625 0.00 2019-12-16 13:29:09 2019-12-16 13:54:14 t 1 1 199905 562 0.00 2019-12-16 13:54:59 2019-12-16 13:55:09 t 1 1 199910 675 0.00 2019-12-16 13:50:37 2019-12-16 14:03:38 t 1 1 199911 562 0.00 2019-12-16 14:04:44 2019-12-16 14:06:12 t 1 1 199913 675 0.00 2019-12-16 14:03:38 2019-12-16 14:06:26 t 1 1 199916 622 0.00 2019-12-16 14:07:40 2019-12-16 14:09:29 t 1 1 199922 481 0.00 2019-12-16 13:05:21 2019-12-16 14:22:11 t 1 1 199927 562 0.00 2019-12-16 14:14:24 2019-12-16 14:32:26 t 1 1 199928 562 0.00 2019-12-16 14:34:57 2019-12-16 14:35:08 t 1 1 199933 562 0.00 2019-12-16 14:36:36 2019-12-16 14:44:26 t 1 1 199935 675 0.00 2019-12-16 14:45:39 2019-12-16 14:48:12 t 1 1 199937 562 0.00 2019-12-16 14:49:02 2019-12-16 14:49:37 t 1 1 199942 481 0.00 2019-12-16 14:22:18 2019-12-16 14:54:02 t 1 1 199949 562 0.00 2019-12-16 14:57:41 2019-12-16 14:58:42 t 1 1 199950 656 0.00 2019-12-16 14:26:42 2019-12-16 14:59:24 t 1 1 199952 485 0.00 2019-12-16 14:51:58 2019-12-16 15:02:36 t 1 1 199954 562 0.00 2019-12-16 15:04:42 2019-12-16 15:04:56 t 1 1 199959 564 0.00 2019-12-16 13:51:39 2019-12-16 15:08:15 t 1 1 199965 694 0.00 2019-12-16 15:10:01 2019-12-16 15:18:00 t 1 1 199967 635 0.00 2019-12-16 15:05:29 2019-12-16 15:23:36 t 1 1 199974 625 0.00 2019-12-16 15:05:48 2019-12-16 15:41:30 t 1 1 199976 689 0.00 2019-12-16 15:39:36 2019-12-16 15:46:02 t 1 1 199978 744 0.00 2019-12-16 15:45:35 2019-12-16 15:49:03 t 1 1 199980 562 0.00 2019-12-16 15:50:12 2019-12-16 15:50:23 t 1 1 199982 687 0.00 2019-12-16 15:50:07 2019-12-16 15:52:22 t 1 1 199983 625 0.00 2019-12-16 15:41:30 2019-12-16 15:53:40 t 1 1 199990 687 0.00 2019-12-16 16:01:49 2019-12-16 16:02:04 t 1 1 199999 622 0.00 2019-12-16 16:08:50 2019-12-16 16:13:05 t 1 1 200000 514 0.00 2019-12-16 16:01:00 2019-12-16 16:16:05 t 1 1 200002 615 0.00 2019-12-16 16:05:43 2019-12-16 16:18:44 t 1 1 200008 724 0.00 2019-12-16 16:26:50 2019-12-16 16:27:04 t 1 1 200009 724 0.00 2019-12-16 16:27:03 2019-12-16 16:27:18 t 1 1 200012 724 0.00 2019-12-16 16:27:42 2019-12-16 16:27:54 t 1 1 200014 724 0.00 2019-12-16 16:28:07 2019-12-16 16:28:19 t 1 1 200021 724 0.00 2019-12-16 16:29:32 2019-12-16 16:29:45 t 1 1 200025 724 0.00 2019-12-16 16:30:23 2019-12-16 16:30:36 t 1 1 200027 516 0.00 2019-12-16 16:26:36 2019-12-16 16:30:53 t 1 1 200028 724 0.00 2019-12-16 16:30:51 2019-12-16 16:31:03 t 1 1 199713 667 0.00 2019-12-16 10:10:09 2019-12-16 10:13:23 t 1 1 199715 637 0.00 2019-12-16 10:07:23 2019-12-16 10:16:09 t 1 1 199718 625 0.00 2019-12-16 09:49:20 2019-12-16 10:20:33 t 1 1 199721 675 0.00 2019-12-16 10:25:18 2019-12-16 10:27:32 t 1 1 199722 637 0.00 2019-12-16 10:21:20 2019-12-16 10:28:30 t 1 1 199725 615 0.00 2019-12-16 10:20:17 2019-12-16 10:32:30 t 1 1 199728 591 0.00 2019-12-16 10:03:52 2019-12-16 10:42:22 t 1 1 199730 637 0.00 2019-12-16 10:44:33 2019-12-16 10:46:02 t 1 1 199732 724 0.00 2019-12-16 09:40:29 2019-12-16 10:46:26 t 1 1 199734 615 0.00 2019-12-16 10:40:46 2019-12-16 10:47:07 t 1 1 199742 625 0.00 2019-12-16 10:20:33 2019-12-16 11:00:55 t 1 1 199745 625 0.00 2019-12-16 11:05:47 2019-12-16 11:06:34 t 1 1 199749 734 0.00 2019-12-16 11:11:14 2019-12-16 11:14:38 t 1 1 199755 711 0.00 2019-12-16 10:51:10 2019-12-16 11:37:31 t 1 1 199756 724 0.00 2019-12-16 11:23:55 2019-12-16 11:40:57 t 1 1 199761 392 0.00 2019-12-16 11:52:17 2019-12-16 11:55:10 t 1 2 199763 485 0.00 2019-12-16 11:57:19 2019-12-16 11:59:26 t 1 1 199764 750 0.00 2019-12-16 11:28:39 2019-12-16 12:01:11 t 1 1 199768 724 0.00 2019-12-16 12:05:05 2019-12-16 12:08:25 t 1 1 199769 538 0.00 2019-12-16 12:07:13 2019-12-16 12:09:14 t 1 1 199772 750 0.00 2019-12-16 12:01:11 2019-12-16 12:13:36 t 1 1 199773 687 0.00 2019-12-16 12:13:50 2019-12-16 12:15:30 t 1 1 199775 591 0.00 2019-12-16 12:09:51 2019-12-16 12:16:31 t 1 1 199778 694 0.00 2019-12-16 11:02:59 2019-12-16 12:24:03 t 1 1 199780 591 0.00 2019-12-16 12:16:32 2019-12-16 12:24:53 t 1 1 199788 503 0.00 2019-12-16 12:34:30 2019-12-16 12:37:09 t 1 1 199792 724 0.00 2019-12-16 12:39:56 2019-12-16 12:41:14 t 1 1 199793 675 0.00 2019-12-16 12:37:44 2019-12-16 12:43:01 t 1 1 199794 622 0.00 2019-12-16 12:38:29 2019-12-16 12:43:37 t 1 1 199798 615 0.00 2019-12-16 12:30:43 2019-12-16 12:47:06 t 1 1 199799 538 0.00 2019-12-16 12:44:22 2019-12-16 12:47:23 t 1 1 199800 538 0.00 2019-12-16 12:47:23 2019-12-16 12:48:45 t 1 1 199802 622 0.00 2019-12-16 12:43:37 2019-12-16 12:49:16 t 1 1 199809 615 0.00 2019-12-16 12:49:50 2019-12-16 12:56:51 t 1 1 199815 722 0.00 2019-12-16 12:58:56 2019-12-16 12:59:03 t 1 1 199818 722 0.00 2019-12-16 12:59:19 2019-12-16 12:59:31 t 1 1 199821 722 0.00 2019-12-16 13:00:36 2019-12-16 13:00:52 t 1 1 199823 738 0.00 2019-12-16 13:01:43 2019-12-16 13:01:50 t 1 1 199835 722 0.00 2019-12-16 13:11:39 2019-12-16 13:11:46 t 1 1 199836 738 0.00 2019-12-16 13:11:20 2019-12-16 13:12:05 t 1 1 199840 516 0.00 2019-12-16 13:06:41 2019-12-16 13:14:01 t 1 1 199843 689 0.00 2019-12-16 13:11:49 2019-12-16 13:15:38 t 1 1 199845 738 0.00 2019-12-16 13:17:07 2019-12-16 13:17:27 t 1 1 199849 722 0.00 2019-12-16 13:18:32 2019-12-16 13:18:45 t 1 1 199850 734 0.00 2019-12-16 12:30:47 2019-12-16 13:19:13 t 1 1 199852 738 0.00 2019-12-16 13:18:54 2019-12-16 13:19:21 t 1 1 199860 738 0.00 2019-12-16 13:20:29 2019-12-16 13:22:35 t 1 1 199873 691 0.00 2019-12-16 13:31:28 2019-12-16 13:31:44 t 1 1 199878 691 0.00 2019-12-16 13:32:03 2019-12-16 13:32:22 t 1 1 199881 591 0.00 2019-12-16 12:45:48 2019-12-16 13:33:16 t 1 1 199888 562 0.00 2019-12-16 13:33:03 2019-12-16 13:36:39 t 1 1 199889 691 0.00 2019-12-16 13:36:37 2019-12-16 13:37:09 t 1 1 199891 691 0.00 2019-12-16 13:37:09 2019-12-16 13:37:34 t 1 1 199893 562 0.00 2019-12-16 13:37:59 2019-12-16 13:38:19 t 1 1 199896 707 0.00 2019-12-16 13:25:21 2019-12-16 13:43:39 t 1 1 199897 656 0.00 2019-12-16 12:53:53 2019-12-16 13:44:42 t 1 1 199899 538 0.00 2019-12-16 12:51:36 2019-12-16 13:45:30 t 1 1 199909 707 0.00 2019-12-16 13:45:10 2019-12-16 14:01:45 t 1 1 199912 625 0.00 2019-12-16 13:54:14 2019-12-16 14:06:13 t 1 1 199914 622 0.00 2019-12-16 13:59:13 2019-12-16 14:07:40 t 1 1 199917 562 0.00 2019-12-16 14:09:18 2019-12-16 14:10:10 t 1 1 199921 750 0.00 2019-12-16 14:17:56 2019-12-16 14:20:05 t 1 1 199924 656 0.00 2019-12-16 14:12:07 2019-12-16 14:26:42 t 1 1 199925 392 0.00 2019-12-16 13:36:36 2019-12-16 14:28:15 t 1 2 199930 635 0.00 2019-12-16 12:28:53 2019-12-16 14:39:31 t 1 1 199931 694 0.00 2019-12-16 14:14:45 2019-12-16 14:41:19 t 1 1 199932 514 0.00 2019-12-16 14:14:33 2019-12-16 14:42:46 t 1 1 199934 694 0.00 2019-12-16 14:42:52 2019-12-16 14:46:13 t 1 1 199940 740 0.00 2019-12-16 14:51:35 2019-12-16 14:52:39 t 1 1 199943 562 0.00 2019-12-16 14:52:57 2019-12-16 14:54:38 t 1 1 199948 615 0.00 2019-12-16 14:56:02 2019-12-16 14:58:27 t 1 1 199956 687 0.00 2019-12-16 14:59:19 2019-12-16 15:06:01 t 1 1 199958 694 0.00 2019-12-16 14:53:40 2019-12-16 15:08:13 t 1 1 199961 694 0.00 2019-12-16 15:08:12 2019-12-16 15:08:47 t 1 1 199964 724 0.00 2019-12-16 14:57:52 2019-12-16 15:13:52 t 1 1 199968 481 0.00 2019-12-16 15:00:51 2019-12-16 15:24:36 t 1 1 199969 694 0.00 2019-12-16 15:18:00 2019-12-16 15:26:57 t 1 1 199971 675 0.00 2019-12-16 15:28:27 2019-12-16 15:31:21 t 1 1 199973 562 0.00 2019-12-16 15:40:34 2019-12-16 15:41:14 t 1 1 199975 722 0.00 2019-12-16 15:37:57 2019-12-16 15:41:51 t 1 1 199977 562 0.00 2019-12-16 15:45:55 2019-12-16 15:46:16 t 1 1 199979 694 0.00 2019-12-16 15:29:18 2019-12-16 15:49:23 t 1 1 199985 707 0.00 2019-12-16 15:14:42 2019-12-16 15:56:41 t 1 1 199987 562 0.00 2019-12-16 15:55:43 2019-12-16 15:59:53 t 1 1 199991 622 0.00 2019-12-16 15:51:37 2019-12-16 16:02:55 t 1 1 199992 611 0.00 2019-12-16 15:28:09 2019-12-16 16:03:42 t 1 1 200001 562 0.00 2019-12-16 16:17:26 2019-12-16 16:18:41 t 1 1 200010 724 0.00 2019-12-16 16:27:17 2019-12-16 16:27:30 t 1 1 200015 724 0.00 2019-12-16 16:28:19 2019-12-16 16:28:36 t 1 1 200017 514 0.00 2019-12-16 16:16:05 2019-12-16 16:28:58 t 1 1 200018 724 0.00 2019-12-16 16:28:49 2019-12-16 16:29:06 t 1 1 200019 724 0.00 2019-12-16 16:29:05 2019-12-16 16:29:18 t 1 1 200022 724 0.00 2019-12-16 16:29:44 2019-12-16 16:29:59 t 1 1 200023 724 0.00 2019-12-16 16:29:58 2019-12-16 16:30:10 t 1 1 200026 724 0.00 2019-12-16 16:30:35 2019-12-16 16:30:52 t 1 1 200030 724 0.00 2019-12-16 16:31:16 2019-12-16 16:31:29 t 1 1 200031 724 0.00 2019-12-16 16:31:28 2019-12-16 16:31:40 t 1 1 200033 724 0.00 2019-12-16 16:31:40 2019-12-16 16:31:52 t 1 1 200035 724 0.00 2019-12-16 16:31:52 2019-12-16 16:32:05 t 1 1 200036 724 0.00 2019-12-16 16:32:04 2019-12-16 16:32:17 t 1 1 200039 724 0.00 2019-12-16 16:32:45 2019-12-16 16:32:59 t 1 1 200041 724 0.00 2019-12-16 16:33:09 2019-12-16 16:33:22 t 1 1 200044 724 0.00 2019-12-16 16:33:46 2019-12-16 16:33:59 t 1 1 200045 724 0.00 2019-12-16 16:33:58 2019-12-16 16:34:13 t 1 1 200047 220 0.00 2019-12-16 16:11:11 2019-12-16 16:34:34 t 1 2 200050 724 0.00 2019-12-16 16:34:49 2019-12-16 16:35:02 t 1 1 200051 724 0.00 2019-12-16 16:35:02 2019-12-16 16:35:18 t 1 1 199997 722 0.00 2019-12-16 15:56:36 2019-12-16 16:09:26 t 1 1 199998 562 0.00 2019-12-16 16:11:19 2019-12-16 16:11:40 t 1 1 200003 734 0.00 2019-12-16 16:16:17 2019-12-16 16:23:13 t 1 1 200004 722 0.00 2019-12-16 16:09:26 2019-12-16 16:24:18 t 1 1 200005 622 0.00 2019-12-16 16:13:05 2019-12-16 16:25:34 t 1 1 200006 611 0.00 2019-12-16 16:03:42 2019-12-16 16:26:14 t 1 1 200007 724 0.00 2019-12-16 16:21:01 2019-12-16 16:26:51 t 1 1 200011 724 0.00 2019-12-16 16:27:29 2019-12-16 16:27:43 t 1 1 200013 724 0.00 2019-12-16 16:27:54 2019-12-16 16:28:08 t 1 1 200016 724 0.00 2019-12-16 16:28:36 2019-12-16 16:28:50 t 1 1 200020 724 0.00 2019-12-16 16:29:18 2019-12-16 16:29:33 t 1 1 200024 724 0.00 2019-12-16 16:30:10 2019-12-16 16:30:24 t 1 1 200037 724 0.00 2019-12-16 16:32:16 2019-12-16 16:32:34 t 1 1 200042 724 0.00 2019-12-16 16:33:22 2019-12-16 16:33:33 t 1 1 200046 724 0.00 2019-12-16 16:34:13 2019-12-16 16:34:25 t 1 1 200048 724 0.00 2019-12-16 16:34:24 2019-12-16 16:34:38 t 1 1 200052 724 0.00 2019-12-16 16:35:17 2019-12-16 16:35:31 t 1 1 200054 694 0.00 2019-12-16 16:23:51 2019-12-16 16:35:50 t 1 1 200057 722 0.00 2019-12-16 16:24:18 2019-12-16 16:36:10 t 1 1 200061 724 0.00 2019-12-16 16:36:17 2019-12-16 16:36:32 t 1 1 200064 667 0.00 2019-12-16 16:41:47 2019-12-16 16:43:19 t 1 1 200066 562 0.00 2019-12-16 16:37:17 2019-12-16 16:43:47 t 1 1 200069 562 0.00 2019-12-16 16:46:50 2019-12-16 16:47:02 t 1 1 200070 724 0.00 2019-12-16 16:47:01 2019-12-16 16:47:24 t 1 1 200073 724 0.00 2019-12-16 16:47:57 2019-12-16 16:48:10 t 1 1 200077 724 0.00 2019-12-16 16:49:07 2019-12-16 16:49:19 t 1 1 200084 724 0.00 2019-12-16 16:50:47 2019-12-16 16:50:58 t 1 1 200085 724 0.00 2019-12-16 16:50:58 2019-12-16 16:51:10 t 1 1 200088 724 0.00 2019-12-16 16:51:33 2019-12-16 16:51:49 t 1 1 200090 750 0.00 2019-12-16 16:50:24 2019-12-16 16:52:05 t 1 1 200092 724 0.00 2019-12-16 16:52:12 2019-12-16 16:52:24 t 1 1 200095 724 0.00 2019-12-16 16:52:50 2019-12-16 16:53:01 t 1 1 200097 724 0.00 2019-12-16 16:53:00 2019-12-16 16:53:34 t 1 1 200099 750 0.00 2019-12-16 16:52:05 2019-12-16 16:53:50 t 1 1 200102 724 0.00 2019-12-16 16:54:20 2019-12-16 16:54:52 t 1 1 200106 724 0.00 2019-12-16 16:55:40 2019-12-16 16:55:57 t 1 1 200107 724 0.00 2019-12-16 16:55:56 2019-12-16 16:56:29 t 1 1 200109 724 0.00 2019-12-16 16:56:29 2019-12-16 16:56:40 t 1 1 200115 724 0.00 2019-12-16 16:57:24 2019-12-16 16:57:36 t 1 1 200118 724 0.00 2019-12-16 16:57:57 2019-12-16 16:58:21 t 1 1 200125 724 0.00 2019-12-16 16:59:33 2019-12-16 16:59:47 t 1 1 200129 724 0.00 2019-12-16 17:00:28 2019-12-16 17:00:42 t 1 1 200132 724 0.00 2019-12-16 17:00:55 2019-12-16 17:01:15 t 1 1 200141 724 0.00 2019-12-16 17:04:11 2019-12-16 17:04:29 t 1 1 200144 724 0.00 2019-12-16 17:04:52 2019-12-16 17:05:03 t 1 1 200145 724 0.00 2019-12-16 17:05:03 2019-12-16 17:05:23 t 1 1 200148 724 0.00 2019-12-16 17:05:49 2019-12-16 17:06:04 t 1 1 200149 750 0.00 2019-12-16 16:59:20 2019-12-16 17:06:23 t 1 1 200151 562 0.00 2019-12-16 17:06:18 2019-12-16 17:06:58 t 1 1 200154 724 0.00 2019-12-16 17:07:05 2019-12-16 17:07:19 t 1 1 200156 687 0.00 2019-12-16 17:02:16 2019-12-16 17:07:31 t 1 1 200162 724 0.00 2019-12-16 17:08:26 2019-12-16 17:08:38 t 1 1 200166 724 0.00 2019-12-16 17:09:38 2019-12-16 17:09:53 t 1 1 200168 724 0.00 2019-12-16 17:11:47 2019-12-16 17:11:59 t 1 1 200170 724 0.00 2019-12-16 17:11:59 2019-12-16 17:12:48 t 1 1 200174 724 0.00 2019-12-16 17:13:27 2019-12-16 17:13:40 t 1 1 200175 724 0.00 2019-12-16 17:13:40 2019-12-16 17:14:36 t 1 1 200176 724 0.00 2019-12-16 17:14:34 2019-12-16 17:14:48 t 1 1 200177 724 0.00 2019-12-16 17:14:48 2019-12-16 17:15:11 t 1 1 200178 724 0.00 2019-12-16 17:15:09 2019-12-16 17:15:22 t 1 1 200185 724 0.00 2019-12-16 17:16:02 2019-12-16 17:18:00 t 1 1 200190 691 0.00 2019-12-16 17:18:20 2019-12-16 17:18:46 t 1 1 200194 724 0.00 2019-12-16 17:19:22 2019-12-16 17:19:36 t 1 1 200195 724 0.00 2019-12-16 17:19:35 2019-12-16 17:19:55 t 1 1 200197 691 0.00 2019-12-16 17:18:46 2019-12-16 17:20:05 t 1 1 200200 722 0.00 2019-12-16 17:16:47 2019-12-16 17:20:35 t 1 1 200201 724 0.00 2019-12-16 17:20:29 2019-12-16 17:20:42 t 1 1 200203 724 0.00 2019-12-16 17:20:41 2019-12-16 17:23:50 t 1 1 200204 724 0.00 2019-12-16 17:23:49 2019-12-16 17:24:01 t 1 1 200211 722 0.00 2019-12-16 17:24:09 2019-12-16 17:28:20 t 1 1 200215 562 0.00 2019-12-16 17:23:58 2019-12-16 17:32:42 t 1 1 200219 724 0.00 2019-12-16 17:36:14 2019-12-16 17:36:29 t 1 1 200224 724 0.00 2019-12-16 17:38:01 2019-12-16 17:38:16 t 1 1 200227 724 0.00 2019-12-16 17:38:29 2019-12-16 17:38:42 t 1 1 200229 687 0.00 2019-12-16 17:29:19 2019-12-16 17:39:04 t 1 1 200230 724 0.00 2019-12-16 17:38:54 2019-12-16 17:39:05 t 1 1 200231 724 0.00 2019-12-16 17:39:05 2019-12-16 17:39:22 t 1 1 200234 724 0.00 2019-12-16 17:39:47 2019-12-16 17:40:00 t 1 1 200235 724 0.00 2019-12-16 17:39:59 2019-12-16 17:40:26 t 1 1 200241 724 0.00 2019-12-16 17:41:26 2019-12-16 17:41:43 t 1 1 200243 724 0.00 2019-12-16 17:41:42 2019-12-16 17:42:03 t 1 1 200244 724 0.00 2019-12-16 17:42:02 2019-12-16 17:42:28 t 1 1 200247 724 0.00 2019-12-16 17:43:17 2019-12-16 17:43:29 t 1 1 200251 738 0.00 2019-12-16 17:33:24 2019-12-16 17:44:41 t 1 1 200255 724 0.00 2019-12-16 17:45:10 2019-12-16 17:45:26 t 1 1 200261 687 0.00 2019-12-16 17:39:04 2019-12-16 17:46:52 t 1 1 200265 738 0.00 2019-12-16 17:51:51 2019-12-16 17:51:52 t 1 1 200269 562 0.00 2019-12-16 17:51:54 2019-12-16 17:53:28 t 1 1 200272 694 0.00 2019-12-16 17:52:39 2019-12-16 17:55:59 t 1 1 200273 707 0.00 2019-12-16 17:52:23 2019-12-16 17:56:28 t 1 1 200276 562 0.00 2019-12-16 17:55:54 2019-12-16 17:57:43 t 1 1 200277 516 0.00 2019-12-16 17:42:40 2019-12-16 18:00:55 t 1 1 200282 694 0.00 2019-12-16 17:56:10 2019-12-16 18:07:43 t 1 1 200283 722 0.00 2019-12-16 17:53:59 2019-12-16 18:09:47 t 1 1 200289 722 0.00 2019-12-16 18:10:56 2019-12-16 18:11:56 t 1 1 200293 722 0.00 2019-12-16 18:12:58 2019-12-16 18:13:58 t 1 1 200297 722 0.00 2019-12-16 18:16:07 2019-12-16 18:16:15 t 1 1 200303 722 0.00 2019-12-16 18:20:11 2019-12-16 18:20:13 t 1 1 200306 722 0.00 2019-12-16 18:21:19 2019-12-16 18:22:43 t 1 1 200311 722 0.00 2019-12-16 18:24:27 2019-12-16 18:24:29 t 1 1 200312 694 0.00 2019-12-16 18:08:29 2019-12-16 18:26:49 t 1 1 200313 562 0.00 2019-12-16 18:25:52 2019-12-16 18:27:33 t 1 1 200314 516 0.00 2019-12-16 18:00:55 2019-12-16 18:29:24 t 1 1 200315 738 0.00 2019-12-16 18:29:29 2019-12-16 18:29:41 t 1 1 200319 516 0.00 2019-12-16 18:29:24 2019-12-16 18:30:38 t 1 1 200321 615 0.00 2019-12-16 18:28:35 2019-12-16 18:34:41 t 1 1 200324 687 0.00 2019-12-16 18:22:58 2019-12-16 18:35:37 t 1 1 200029 724 0.00 2019-12-16 16:31:03 2019-12-16 16:31:16 t 1 1 200032 622 0.00 2019-12-16 16:25:37 2019-12-16 16:31:41 t 1 1 200034 516 0.00 2019-12-16 16:30:53 2019-12-16 16:31:57 t 1 1 200038 724 0.00 2019-12-16 16:32:33 2019-12-16 16:32:45 t 1 1 200040 724 0.00 2019-12-16 16:32:58 2019-12-16 16:33:09 t 1 1 200043 724 0.00 2019-12-16 16:33:33 2019-12-16 16:33:47 t 1 1 200049 724 0.00 2019-12-16 16:34:38 2019-12-16 16:34:50 t 1 1 200053 724 0.00 2019-12-16 16:35:30 2019-12-16 16:35:42 t 1 1 200055 724 0.00 2019-12-16 16:35:41 2019-12-16 16:35:54 t 1 1 200059 625 0.00 2019-12-16 16:06:12 2019-12-16 16:36:11 t 1 1 200063 724 0.00 2019-12-16 16:36:32 2019-12-16 16:36:40 t 1 1 200068 724 0.00 2019-12-16 16:36:45 2019-12-16 16:47:01 t 1 1 200071 724 0.00 2019-12-16 16:47:23 2019-12-16 16:47:34 t 1 1 200072 724 0.00 2019-12-16 16:47:34 2019-12-16 16:47:59 t 1 1 200074 724 0.00 2019-12-16 16:48:09 2019-12-16 16:48:33 t 1 1 200078 724 0.00 2019-12-16 16:49:19 2019-12-16 16:49:42 t 1 1 200081 750 0.00 2019-12-16 16:43:38 2019-12-16 16:50:24 t 1 1 200082 724 0.00 2019-12-16 16:50:15 2019-12-16 16:50:27 t 1 1 200086 724 0.00 2019-12-16 16:51:09 2019-12-16 16:51:20 t 1 1 200089 724 0.00 2019-12-16 16:51:49 2019-12-16 16:52:02 t 1 1 200093 724 0.00 2019-12-16 16:52:23 2019-12-16 16:52:36 t 1 1 200098 724 0.00 2019-12-16 16:53:32 2019-12-16 16:53:45 t 1 1 200103 724 0.00 2019-12-16 16:54:49 2019-12-16 16:55:06 t 1 1 200104 750 0.00 2019-12-16 16:53:50 2019-12-16 16:55:41 t 1 1 200110 724 0.00 2019-12-16 16:56:39 2019-12-16 16:56:52 t 1 1 200112 562 0.00 2019-12-16 16:47:50 2019-12-16 16:57:03 t 1 1 200116 724 0.00 2019-12-16 16:57:36 2019-12-16 16:57:48 t 1 1 200117 724 0.00 2019-12-16 16:57:47 2019-12-16 16:57:58 t 1 1 200119 724 0.00 2019-12-16 16:58:20 2019-12-16 16:58:31 t 1 1 200122 750 0.00 2019-12-16 16:57:23 2019-12-16 16:59:20 t 1 1 200123 724 0.00 2019-12-16 16:59:09 2019-12-16 16:59:23 t 1 1 200126 724 0.00 2019-12-16 16:59:47 2019-12-16 17:00:03 t 1 1 200127 724 0.00 2019-12-16 17:00:03 2019-12-16 17:00:18 t 1 1 200130 724 0.00 2019-12-16 17:00:41 2019-12-16 17:00:55 t 1 1 200133 724 0.00 2019-12-16 17:01:12 2019-12-16 17:01:32 t 1 1 200134 724 0.00 2019-12-16 17:01:31 2019-12-16 17:02:17 t 1 1 200136 562 0.00 2019-12-16 17:02:01 2019-12-16 17:02:35 t 1 1 200138 724 0.00 2019-12-16 17:02:56 2019-12-16 17:03:10 t 1 1 200142 724 0.00 2019-12-16 17:04:29 2019-12-16 17:04:40 t 1 1 200146 724 0.00 2019-12-16 17:05:22 2019-12-16 17:05:37 t 1 1 200150 724 0.00 2019-12-16 17:06:03 2019-12-16 17:06:51 t 1 1 200152 724 0.00 2019-12-16 17:06:51 2019-12-16 17:07:06 t 1 1 200155 724 0.00 2019-12-16 17:07:19 2019-12-16 17:07:30 t 1 1 200157 724 0.00 2019-12-16 17:07:30 2019-12-16 17:07:43 t 1 1 200158 724 0.00 2019-12-16 17:07:42 2019-12-16 17:07:53 t 1 1 200160 724 0.00 2019-12-16 17:08:04 2019-12-16 17:08:16 t 1 1 200163 724 0.00 2019-12-16 17:08:37 2019-12-16 17:09:05 t 1 1 200164 724 0.00 2019-12-16 17:09:02 2019-12-16 17:09:15 t 1 1 200169 514 0.00 2019-12-16 17:11:12 2019-12-16 17:12:16 t 1 1 200171 724 0.00 2019-12-16 17:12:46 2019-12-16 17:12:59 t 1 1 200172 562 0.00 2019-12-16 17:09:58 2019-12-16 17:13:20 t 1 1 200179 724 0.00 2019-12-16 17:15:21 2019-12-16 17:15:51 t 1 1 200182 514 0.00 2019-12-16 17:12:33 2019-12-16 17:16:41 t 1 1 200187 724 0.00 2019-12-16 17:17:58 2019-12-16 17:18:12 t 1 1 200188 724 0.00 2019-12-16 17:18:12 2019-12-16 17:18:35 t 1 1 200191 724 0.00 2019-12-16 17:18:44 2019-12-16 17:18:59 t 1 1 200192 724 0.00 2019-12-16 17:18:58 2019-12-16 17:19:09 t 1 1 200196 562 0.00 2019-12-16 17:19:54 2019-12-16 17:19:59 t 1 1 200198 724 0.00 2019-12-16 17:19:54 2019-12-16 17:20:05 t 1 1 200199 724 0.00 2019-12-16 17:20:05 2019-12-16 17:20:32 t 1 1 200202 514 0.00 2019-12-16 17:16:41 2019-12-16 17:21:51 t 1 1 200205 722 0.00 2019-12-16 17:20:35 2019-12-16 17:24:09 t 1 1 200206 724 0.00 2019-12-16 17:24:00 2019-12-16 17:24:47 t 1 1 200208 724 0.00 2019-12-16 17:24:57 2019-12-16 17:26:10 t 1 1 200210 707 0.00 2019-12-16 17:23:38 2019-12-16 17:26:53 t 1 1 200212 687 0.00 2019-12-16 17:07:44 2019-12-16 17:29:19 t 1 1 200214 724 0.00 2019-12-16 17:26:20 2019-12-16 17:31:52 t 1 1 200216 562 0.00 2019-12-16 17:33:57 2019-12-16 17:34:01 t 1 1 200220 736 0.00 2019-12-16 17:15:17 2019-12-16 17:36:45 t 1 1 200228 724 0.00 2019-12-16 17:38:41 2019-12-16 17:38:54 t 1 1 200232 724 0.00 2019-12-16 17:39:21 2019-12-16 17:39:33 t 1 1 200236 724 0.00 2019-12-16 17:40:24 2019-12-16 17:40:38 t 1 1 200237 724 0.00 2019-12-16 17:40:37 2019-12-16 17:40:51 t 1 1 200239 724 0.00 2019-12-16 17:41:01 2019-12-16 17:41:15 t 1 1 200245 724 0.00 2019-12-16 17:42:26 2019-12-16 17:42:40 t 1 1 200250 736 0.00 2019-12-16 17:36:45 2019-12-16 17:44:35 t 1 1 200252 724 0.00 2019-12-16 17:44:24 2019-12-16 17:44:43 t 1 1 200256 724 0.00 2019-12-16 17:45:25 2019-12-16 17:45:38 t 1 1 200259 724 0.00 2019-12-16 17:46:09 2019-12-16 17:46:12 t 1 1 200260 738 0.00 2019-12-16 17:46:30 2019-12-16 17:46:51 t 1 1 200262 514 0.00 2019-12-16 17:21:51 2019-12-16 17:48:09 t 1 1 200263 694 0.00 2019-12-16 17:32:08 2019-12-16 17:49:09 t 1 1 200268 615 0.00 2019-12-16 17:41:13 2019-12-16 17:53:28 t 1 1 200271 724 0.00 2019-12-16 17:46:37 2019-12-16 17:54:17 t 1 1 200275 738 0.00 2019-12-16 17:56:49 2019-12-16 17:57:29 t 1 1 200279 738 0.00 2019-12-16 18:04:09 2019-12-16 18:04:11 t 1 1 200284 722 0.00 2019-12-16 18:09:53 2019-12-16 18:09:56 t 1 1 200286 562 0.00 2019-12-16 18:10:46 2019-12-16 18:10:57 t 1 1 200288 738 0.00 2019-12-16 18:11:43 2019-12-16 18:11:52 t 1 1 200290 722 0.00 2019-12-16 18:11:07 2019-12-16 18:12:43 t 1 1 200292 562 0.00 2019-12-16 18:13:14 2019-12-16 18:13:52 t 1 1 200296 615 0.00 2019-12-16 18:13:36 2019-12-16 18:15:11 t 1 1 200298 687 0.00 2019-12-16 17:46:52 2019-12-16 18:17:10 t 1 1 200300 730 0.00 2019-12-16 18:14:15 2019-12-16 18:17:32 t 1 1 200301 611 0.00 2019-12-16 17:40:44 2019-12-16 18:18:29 t 1 1 200302 722 0.00 2019-12-16 18:18:32 2019-12-16 18:19:04 t 1 1 200305 562 0.00 2019-12-16 18:20:47 2019-12-16 18:21:15 t 1 1 200307 687 0.00 2019-12-16 18:17:10 2019-12-16 18:22:47 t 1 1 200309 562 0.00 2019-12-16 18:22:47 2019-12-16 18:23:42 t 1 1 200317 562 0.00 2019-12-16 18:29:37 2019-12-16 18:30:01 t 1 1 200322 691 0.00 2019-12-16 18:34:26 2019-12-16 18:34:42 t 1 1 200323 667 0.00 2019-12-16 18:35:05 2019-12-16 18:35:17 t 1 1 200327 738 0.00 2019-12-16 18:42:06 2019-12-16 18:42:16 t 1 1 200330 485 0.00 2019-12-16 18:39:53 2019-12-16 18:43:47 t 1 1 200331 738 0.00 2019-12-16 18:42:53 2019-12-16 18:44:43 t 1 1 200332 709 0.00 2019-12-16 18:41:25 2019-12-16 18:44:52 t 1 1 200334 687 0.00 2019-12-16 18:35:37 2019-12-16 18:45:01 t 1 1 200056 724 0.00 2019-12-16 16:35:53 2019-12-16 16:36:05 t 1 1 200058 622 0.00 2019-12-16 16:31:40 2019-12-16 16:36:11 t 1 1 200060 724 0.00 2019-12-16 16:36:04 2019-12-16 16:36:18 t 1 1 200062 562 0.00 2019-12-16 16:19:57 2019-12-16 16:36:39 t 1 1 200065 750 0.00 2019-12-16 15:51:58 2019-12-16 16:43:38 t 1 1 200067 562 0.00 2019-12-16 16:45:28 2019-12-16 16:45:37 t 1 1 200075 724 0.00 2019-12-16 16:48:32 2019-12-16 16:48:45 t 1 1 200076 724 0.00 2019-12-16 16:48:44 2019-12-16 16:49:09 t 1 1 200079 724 0.00 2019-12-16 16:49:40 2019-12-16 16:49:53 t 1 1 200080 724 0.00 2019-12-16 16:49:52 2019-12-16 16:50:17 t 1 1 200083 724 0.00 2019-12-16 16:50:27 2019-12-16 16:50:47 t 1 1 200087 724 0.00 2019-12-16 16:51:20 2019-12-16 16:51:33 t 1 1 200091 724 0.00 2019-12-16 16:52:00 2019-12-16 16:52:12 t 1 1 200094 724 0.00 2019-12-16 16:52:35 2019-12-16 16:52:50 t 1 1 200096 722 0.00 2019-12-16 16:53:05 2019-12-16 16:53:19 t 1 1 200100 724 0.00 2019-12-16 16:53:44 2019-12-16 16:54:09 t 1 1 200101 724 0.00 2019-12-16 16:54:07 2019-12-16 16:54:20 t 1 1 200105 724 0.00 2019-12-16 16:55:06 2019-12-16 16:55:42 t 1 1 200108 514 0.00 2019-12-16 16:28:58 2019-12-16 16:56:31 t 1 1 200111 724 0.00 2019-12-16 16:56:51 2019-12-16 16:57:02 t 1 1 200113 750 0.00 2019-12-16 16:55:41 2019-12-16 16:57:23 t 1 1 200114 724 0.00 2019-12-16 16:57:02 2019-12-16 16:57:26 t 1 1 200120 724 0.00 2019-12-16 16:58:31 2019-12-16 16:58:59 t 1 1 200121 724 0.00 2019-12-16 16:58:56 2019-12-16 16:59:10 t 1 1 200124 724 0.00 2019-12-16 16:59:22 2019-12-16 16:59:33 t 1 1 200128 724 0.00 2019-12-16 17:00:17 2019-12-16 17:00:29 t 1 1 200131 615 0.00 2019-12-16 16:57:53 2019-12-16 17:01:09 t 1 1 200135 724 0.00 2019-12-16 17:02:15 2019-12-16 17:02:27 t 1 1 200137 724 0.00 2019-12-16 17:02:27 2019-12-16 17:02:58 t 1 1 200139 724 0.00 2019-12-16 17:03:09 2019-12-16 17:04:02 t 1 1 200140 724 0.00 2019-12-16 17:04:01 2019-12-16 17:04:12 t 1 1 200143 724 0.00 2019-12-16 17:04:39 2019-12-16 17:04:53 t 1 1 200147 724 0.00 2019-12-16 17:05:37 2019-12-16 17:05:50 t 1 1 200153 611 0.00 2019-12-16 17:02:14 2019-12-16 17:07:10 t 1 1 200159 724 0.00 2019-12-16 17:07:53 2019-12-16 17:08:05 t 1 1 200161 724 0.00 2019-12-16 17:08:15 2019-12-16 17:08:27 t 1 1 200165 724 0.00 2019-12-16 17:09:15 2019-12-16 17:09:40 t 1 1 200167 724 0.00 2019-12-16 17:09:52 2019-12-16 17:11:49 t 1 1 200173 724 0.00 2019-12-16 17:12:59 2019-12-16 17:13:29 t 1 1 200180 724 0.00 2019-12-16 17:15:49 2019-12-16 17:16:03 t 1 1 200181 562 0.00 2019-12-16 17:16:07 2019-12-16 17:16:34 t 1 1 200183 722 0.00 2019-12-16 17:11:45 2019-12-16 17:16:47 t 1 1 200184 675 0.00 2019-12-16 17:14:40 2019-12-16 17:17:10 t 1 1 200186 611 0.00 2019-12-16 17:12:18 2019-12-16 17:18:05 t 1 1 200189 724 0.00 2019-12-16 17:18:33 2019-12-16 17:18:45 t 1 1 200193 724 0.00 2019-12-16 17:19:09 2019-12-16 17:19:23 t 1 1 200207 724 0.00 2019-12-16 17:24:46 2019-12-16 17:24:58 t 1 1 200209 724 0.00 2019-12-16 17:26:08 2019-12-16 17:26:21 t 1 1 200213 730 0.00 2019-12-16 17:19:58 2019-12-16 17:29:24 t 1 1 200217 724 0.00 2019-12-16 17:31:50 2019-12-16 17:35:53 t 1 1 200218 724 0.00 2019-12-16 17:35:53 2019-12-16 17:36:16 t 1 1 200221 392 0.00 2019-12-16 16:54:09 2019-12-16 17:37:00 t 1 2 200222 724 0.00 2019-12-16 17:36:29 2019-12-16 17:38:02 t 1 1 200223 611 0.00 2019-12-16 17:36:40 2019-12-16 17:38:08 t 1 1 200225 591 0.00 2019-12-16 16:20:15 2019-12-16 17:38:18 t 1 1 200226 724 0.00 2019-12-16 17:38:16 2019-12-16 17:38:30 t 1 1 200233 724 0.00 2019-12-16 17:39:32 2019-12-16 17:39:47 t 1 1 200238 724 0.00 2019-12-16 17:40:50 2019-12-16 17:41:02 t 1 1 200240 724 0.00 2019-12-16 17:41:14 2019-12-16 17:41:27 t 1 1 200242 485 0.00 2019-12-16 17:34:23 2019-12-16 17:41:48 t 1 1 200246 724 0.00 2019-12-16 17:42:39 2019-12-16 17:43:18 t 1 1 200248 734 0.00 2019-12-16 17:32:33 2019-12-16 17:43:31 t 1 1 200249 724 0.00 2019-12-16 17:43:28 2019-12-16 17:44:26 t 1 1 200253 724 0.00 2019-12-16 17:44:42 2019-12-16 17:44:59 t 1 1 200254 724 0.00 2019-12-16 17:44:58 2019-12-16 17:45:11 t 1 1 200257 724 0.00 2019-12-16 17:45:37 2019-12-16 17:45:56 t 1 1 200258 724 0.00 2019-12-16 17:45:55 2019-12-16 17:46:10 t 1 1 200264 562 0.00 2019-12-16 17:51:29 2019-12-16 17:51:45 t 1 1 200266 694 0.00 2019-12-16 17:49:16 2019-12-16 17:52:33 t 1 1 200267 738 0.00 2019-12-16 17:52:44 2019-12-16 17:52:54 t 1 1 200270 738 0.00 2019-12-16 17:53:21 2019-12-16 17:53:35 t 1 1 200274 562 0.00 2019-12-16 17:55:06 2019-12-16 17:56:43 t 1 1 200278 562 0.00 2019-12-16 18:02:12 2019-12-16 18:02:19 t 1 1 200280 562 0.00 2019-12-16 18:02:28 2019-12-16 18:05:15 t 1 1 200281 738 0.00 2019-12-16 18:05:36 2019-12-16 18:06:39 t 1 1 200285 562 0.00 2019-12-16 18:09:36 2019-12-16 18:10:08 t 1 1 200287 738 0.00 2019-12-16 18:10:41 2019-12-16 18:11:43 t 1 1 200291 675 0.00 2019-12-16 18:11:08 2019-12-16 18:12:51 t 1 1 200294 738 0.00 2019-12-16 18:13:52 2019-12-16 18:14:04 t 1 1 200295 722 0.00 2019-12-16 18:15:02 2019-12-16 18:15:09 t 1 1 200299 562 0.00 2019-12-16 18:14:29 2019-12-16 18:17:24 t 1 1 200304 722 0.00 2019-12-16 18:21:11 2019-12-16 18:21:13 t 1 1 200308 722 0.00 2019-12-16 18:22:16 2019-12-16 18:23:00 t 1 1 200310 730 0.00 2019-12-16 18:19:01 2019-12-16 18:24:19 t 1 1 200316 722 0.00 2019-12-16 18:24:34 2019-12-16 18:29:56 t 1 1 200318 722 0.00 2019-12-16 18:30:02 2019-12-16 18:30:04 t 1 1 200320 738 0.00 2019-12-16 18:30:19 2019-12-16 18:30:40 t 1 1 200325 691 0.00 2019-12-16 18:34:41 2019-12-16 18:37:33 t 1 1 200336 738 0.00 2019-12-16 18:45:14 2019-12-16 18:45:24 t 1 1 200338 740 0.00 2019-12-16 18:44:48 2019-12-16 18:45:56 t 1 1 200340 722 0.00 2019-12-16 18:45:16 2019-12-16 18:46:28 t 1 1 200345 752 0.00 2019-12-16 18:37:43 2019-12-16 18:48:10 t 1 1 200352 562 0.00 2019-12-16 18:47:40 2019-12-16 18:56:45 t 1 1 200353 564 0.00 2019-12-16 18:27:16 2019-12-16 18:57:27 t 1 1 200357 611 0.00 2019-12-16 18:47:22 2019-12-16 19:01:21 t 1 1 200364 514 0.00 2019-12-16 19:10:43 2019-12-16 19:11:41 t 1 1 200368 738 0.00 2019-12-16 19:12:39 2019-12-16 19:15:31 t 1 1 200372 528 0.00 2019-12-16 19:16:48 2019-12-16 19:18:43 t 1 1 200378 611 0.00 2019-12-16 19:14:43 2019-12-16 19:25:55 t 1 1 200380 738 0.00 2019-12-16 19:26:32 2019-12-16 19:28:43 t 1 1 200382 562 0.00 2019-12-16 19:04:21 2019-12-16 19:30:02 t 1 1 200384 528 0.00 2019-12-16 19:31:29 2019-12-16 19:32:18 t 1 1 200386 562 0.00 2019-12-16 19:32:11 2019-12-16 19:32:38 t 1 1 200388 738 0.00 2019-12-16 19:33:04 2019-12-16 19:34:43 t 1 1 200394 687 0.00 2019-12-16 19:36:46 2019-12-16 19:36:52 t 1 1 200397 711 0.00 2019-12-16 19:04:13 2019-12-16 19:39:15 t 1 1 200399 538 0.00 2019-12-16 18:15:11 2019-12-16 19:40:47 t 1 1 200326 516 0.00 2019-12-16 18:33:03 2019-12-16 18:39:28 t 1 1 200328 562 0.00 2019-12-16 18:30:29 2019-12-16 18:42:47 t 1 1 200329 562 0.00 2019-12-16 18:43:20 2019-12-16 18:43:35 t 1 1 200333 738 0.00 2019-12-16 18:43:45 2019-12-16 18:44:54 t 1 1 200343 707 0.00 2019-12-16 18:12:44 2019-12-16 18:47:21 t 1 1 200346 726 0.00 2019-12-16 18:45:41 2019-12-16 18:50:00 t 1 1 200349 483 0.00 2019-12-16 18:43:17 2019-12-16 18:54:12 t 1 1 200351 738 0.00 2019-12-16 18:49:03 2019-12-16 18:56:14 t 1 1 200354 738 0.00 2019-12-16 18:58:30 2019-12-16 18:58:46 t 1 1 200355 742 0.00 2019-12-16 18:46:43 2019-12-16 19:00:03 t 1 1 200356 562 0.00 2019-12-16 18:59:51 2019-12-16 19:01:16 t 1 1 200359 528 0.00 2019-12-16 18:57:06 2019-12-16 19:03:33 t 1 1 200361 528 0.00 2019-12-16 19:05:59 2019-12-16 19:06:17 t 1 1 200362 528 0.00 2019-12-16 19:07:32 2019-12-16 19:07:37 t 1 1 200363 514 0.00 2019-12-16 18:54:57 2019-12-16 19:10:22 t 1 1 200367 528 0.00 2019-12-16 19:15:20 2019-12-16 19:15:27 t 1 1 200369 675 0.00 2019-12-16 19:16:04 2019-12-16 19:16:07 t 1 1 200370 738 0.00 2019-12-16 19:16:32 2019-12-16 19:16:39 t 1 1 200371 742 0.00 2019-12-16 19:00:03 2019-12-16 19:17:20 t 1 1 200375 738 0.00 2019-12-16 19:21:54 2019-12-16 19:21:57 t 1 1 200376 742 0.00 2019-12-16 19:17:20 2019-12-16 19:24:56 t 1 1 200377 738 0.00 2019-12-16 19:24:28 2019-12-16 19:25:43 t 1 1 200381 611 0.00 2019-12-16 19:25:57 2019-12-16 19:29:11 t 1 1 200389 528 0.00 2019-12-16 19:34:29 2019-12-16 19:34:52 t 1 1 200392 562 0.00 2019-12-16 19:35:03 2019-12-16 19:35:17 t 1 1 200395 687 0.00 2019-12-16 19:38:11 2019-12-16 19:38:19 t 1 1 200404 528 0.00 2019-12-16 19:44:30 2019-12-16 19:45:08 t 1 1 200407 724 0.00 2019-12-16 19:41:41 2019-12-16 19:49:13 t 1 1 200408 730 0.00 2019-12-16 19:47:19 2019-12-16 19:50:09 t 1 1 200410 738 0.00 2019-12-16 19:48:59 2019-12-16 19:50:43 t 1 1 200416 562 0.00 2019-12-16 19:54:00 2019-12-16 19:55:22 t 1 1 200430 562 0.00 2019-12-16 20:17:20 2019-12-16 20:17:33 t 1 1 200435 562 0.00 2019-12-16 20:20:22 2019-12-16 20:21:34 t 1 1 200441 459 0.00 2019-12-16 20:15:54 2019-12-16 20:29:29 t 1 2 200443 738 0.00 2019-12-16 20:31:20 2019-12-16 20:31:32 t 1 1 200444 528 0.00 2019-12-16 20:16:21 2019-12-16 20:33:42 t 1 1 200447 562 0.00 2019-12-16 20:24:33 2019-12-16 20:35:49 t 1 1 200448 562 0.00 2019-12-16 20:38:28 2019-12-16 20:38:53 t 1 1 200451 551 0.00 2019-12-16 20:35:03 2019-12-16 20:45:19 t 1 1 200457 738 0.00 2019-12-16 20:48:32 2019-12-16 20:49:43 t 1 1 200461 562 0.00 2019-12-16 20:49:24 2019-12-16 20:53:11 t 1 1 200464 738 0.00 2019-12-16 20:56:05 2019-12-16 20:56:59 t 1 1 200465 738 0.00 2019-12-16 20:57:10 2019-12-16 20:57:17 t 1 1 200469 551 0.00 2019-12-16 20:45:19 2019-12-16 21:01:04 t 1 1 200471 744 0.00 2019-12-16 20:46:39 2019-12-16 21:02:40 t 1 1 200473 675 0.00 2019-12-16 21:03:14 2019-12-16 21:06:16 t 1 1 200476 687 0.00 2019-12-16 21:06:34 2019-12-16 21:09:34 t 1 1 200477 514 0.00 2019-12-16 21:02:32 2019-12-16 21:11:54 t 1 1 200482 528 0.00 2019-12-16 21:03:08 2019-12-16 21:17:59 t 1 1 200490 528 0.00 2019-12-16 21:24:54 2019-12-16 21:24:57 t 1 1 200492 750 0.00 2019-12-16 21:24:13 2019-12-16 21:28:56 t 1 1 200493 660 0.00 2019-12-16 21:14:35 2019-12-16 21:30:32 t 1 1 200500 562 0.00 2019-12-16 21:42:12 2019-12-16 21:42:48 t 1 1 200501 656 0.00 2019-12-16 21:34:29 2019-12-16 21:45:28 t 1 1 200504 675 0.00 2019-12-16 21:35:39 2019-12-16 21:47:49 t 1 1 200513 551 0.00 2019-12-16 21:51:37 2019-12-16 22:00:06 t 1 1 200515 562 0.00 2019-12-16 22:00:34 2019-12-16 22:01:52 t 1 1 200516 562 0.00 2019-12-16 22:02:13 2019-12-16 22:02:23 t 1 1 200521 562 0.00 2019-12-16 22:08:46 2019-12-16 22:09:50 t 1 1 200527 689 0.00 2019-12-16 22:12:21 2019-12-16 22:12:41 t 1 1 200530 562 0.00 2019-12-16 22:15:43 2019-12-16 22:17:57 t 1 1 200532 649 0.00 2019-12-16 22:00:50 2019-12-16 22:19:07 t 1 1 200534 649 0.00 2019-12-16 22:19:35 2019-12-16 22:21:52 t 1 1 200539 689 0.00 2019-12-16 22:24:29 2019-12-16 22:29:11 t 1 1 200544 551 0.00 2019-12-16 22:09:06 2019-12-16 22:32:06 t 1 1 200545 722 0.00 2019-12-16 22:20:03 2019-12-16 22:32:29 t 1 1 200547 220 0.00 2019-12-16 22:30:29 2019-12-16 22:33:53 t 1 2 200549 562 0.00 2019-12-16 22:25:44 2019-12-16 22:34:19 t 1 1 200556 689 0.00 2019-12-16 22:30:35 2019-12-16 22:39:05 t 1 1 200557 687 0.00 2019-12-16 22:39:46 2019-12-16 22:40:07 t 1 1 200558 528 0.00 2019-12-16 22:36:41 2019-12-16 22:40:11 t 1 1 200562 591 0.00 2019-12-16 21:54:52 2019-12-16 22:42:38 t 1 1 200563 744 0.00 2019-12-16 22:37:25 2019-12-16 22:43:47 t 1 1 200569 528 0.00 2019-12-16 22:50:28 2019-12-16 22:54:30 t 1 1 200571 591 0.00 2019-12-16 22:52:28 2019-12-16 22:55:10 t 1 1 200575 392 0.00 2019-12-16 21:23:21 2019-12-16 22:59:41 t 1 2 200578 528 0.00 2019-12-16 23:00:12 2019-12-16 23:00:45 t 1 1 200579 528 0.00 2019-12-16 23:01:22 2019-12-16 23:01:25 t 1 1 200584 656 0.00 2019-12-16 22:54:27 2019-12-16 23:06:35 t 1 1 200585 562 0.00 2019-12-16 23:06:40 2019-12-16 23:07:08 t 1 1 200591 744 0.00 2019-12-16 23:02:01 2019-12-16 23:08:30 t 1 1 200600 528 0.00 2019-12-16 23:18:24 2019-12-16 23:18:48 t 1 1 200601 675 0.00 2019-12-16 23:15:40 2019-12-16 23:19:52 t 1 1 200602 528 0.00 2019-12-16 23:19:48 2019-12-16 23:20:10 t 1 1 200604 528 0.00 2019-12-16 23:20:57 2019-12-16 23:21:07 t 1 1 200607 562 0.00 2019-12-16 23:20:01 2019-12-16 23:23:12 t 1 1 200609 528 0.00 2019-12-16 23:25:54 2019-12-16 23:27:45 t 1 1 200614 689 0.00 2019-12-16 23:27:50 2019-12-16 23:29:30 t 1 1 200617 562 0.00 2019-12-16 23:30:14 2019-12-16 23:30:44 t 1 1 200621 551 0.00 2019-12-16 23:29:44 2019-12-16 23:39:30 t 1 1 200625 562 0.00 2019-12-16 23:41:49 2019-12-16 23:43:03 t 1 1 200627 724 0.00 2019-12-16 23:14:49 2019-12-16 23:44:05 t 1 1 200628 734 0.00 2019-12-16 23:08:07 2019-12-16 23:47:56 t 1 1 200629 498 0.00 2019-12-16 23:28:24 2019-12-16 23:50:41 t 1 2 200631 562 0.00 2019-12-16 23:51:54 2019-12-16 23:52:12 t 1 1 200633 528 0.00 2019-12-16 23:56:29 2019-12-16 23:56:44 t 1 1 200637 528 0.00 2019-12-16 23:59:43 2019-12-16 23:59:59 t 1 1 200640 679 0.00 2019-12-17 00:03:09 2019-12-17 00:03:32 t 1 1 200641 528 0.00 2019-12-17 00:03:38 2019-12-17 00:03:50 t 1 1 200644 707 0.00 2019-12-16 23:36:23 2019-12-17 00:10:31 t 1 1 200646 528 0.00 2019-12-17 00:13:24 2019-12-17 00:14:05 t 1 1 200649 734 0.00 2019-12-17 00:12:34 2019-12-17 00:16:05 t 1 1 200650 528 0.00 2019-12-17 00:16:25 2019-12-17 00:16:31 t 1 1 200651 528 0.00 2019-12-17 00:17:14 2019-12-17 00:17:30 t 1 1 200653 562 0.00 2019-12-17 00:20:58 2019-12-17 00:21:26 t 1 1 200654 528 0.00 2019-12-17 00:21:52 2019-12-17 00:22:11 t 1 1 200658 685 0.00 2019-12-17 00:26:25 2019-12-17 00:27:25 t 1 1 200335 722 0.00 2019-12-16 18:30:10 2019-12-16 18:45:16 t 1 1 200337 726 0.00 2019-12-16 18:23:08 2019-12-16 18:45:41 t 1 1 200339 562 0.00 2019-12-16 18:44:24 2019-12-16 18:46:02 t 1 1 200341 742 0.00 2019-12-16 18:40:09 2019-12-16 18:46:43 t 1 1 200342 724 0.00 2019-12-16 17:54:16 2019-12-16 18:47:08 t 1 1 200344 611 0.00 2019-12-16 18:44:56 2019-12-16 18:47:22 t 1 1 200347 738 0.00 2019-12-16 18:48:53 2019-12-16 18:50:43 t 1 1 200348 485 0.00 2019-12-16 18:44:51 2019-12-16 18:52:54 t 1 1 200350 514 0.00 2019-12-16 17:48:09 2019-12-16 18:54:57 t 1 1 200358 483 0.00 2019-12-16 18:54:12 2019-12-16 19:01:35 t 1 1 200360 591 0.00 2019-12-16 17:38:29 2019-12-16 19:05:53 t 1 1 200365 675 0.00 2019-12-16 19:09:58 2019-12-16 19:12:05 t 1 1 200366 514 0.00 2019-12-16 19:11:40 2019-12-16 19:12:48 t 1 1 200373 744 0.00 2019-12-16 18:48:21 2019-12-16 19:18:58 t 1 1 200374 528 0.00 2019-12-16 19:19:31 2019-12-16 19:19:54 t 1 1 200379 687 0.00 2019-12-16 18:47:59 2019-12-16 19:26:37 t 1 1 200383 742 0.00 2019-12-16 19:24:56 2019-12-16 19:32:14 t 1 1 200385 631 0.00 2019-12-16 19:30:33 2019-12-16 19:32:31 t 1 1 200387 738 0.00 2019-12-16 19:32:31 2019-12-16 19:32:50 t 1 1 200390 562 0.00 2019-12-16 19:33:23 2019-12-16 19:34:57 t 1 1 200391 738 0.00 2019-12-16 19:34:47 2019-12-16 19:35:15 t 1 1 200393 687 0.00 2019-12-16 19:27:02 2019-12-16 19:36:36 t 1 1 200396 687 0.00 2019-12-16 19:38:37 2019-12-16 19:38:54 t 1 1 200398 738 0.00 2019-12-16 19:39:35 2019-12-16 19:39:44 t 1 1 200401 694 0.00 2019-12-16 18:26:47 2019-12-16 19:41:37 t 1 1 200402 687 0.00 2019-12-16 19:39:17 2019-12-16 19:41:46 t 1 1 200403 562 0.00 2019-12-16 19:41:46 2019-12-16 19:42:34 t 1 1 200405 538 0.00 2019-12-16 19:41:03 2019-12-16 19:45:33 t 1 1 200406 611 0.00 2019-12-16 19:34:52 2019-12-16 19:46:19 t 1 1 200412 738 0.00 2019-12-16 19:50:30 2019-12-16 19:50:53 t 1 1 200414 562 0.00 2019-12-16 19:52:32 2019-12-16 19:52:58 t 1 1 200417 562 0.00 2019-12-16 19:55:51 2019-12-16 19:56:04 t 1 1 200420 481 0.00 2019-12-16 17:56:55 2019-12-16 20:05:11 t 1 1 200422 707 0.00 2019-12-16 19:00:36 2019-12-16 20:05:51 t 1 1 200425 742 0.00 2019-12-16 20:01:12 2019-12-16 20:08:19 t 1 1 200426 562 0.00 2019-12-16 20:10:05 2019-12-16 20:11:30 t 1 1 200427 742 0.00 2019-12-16 20:08:19 2019-12-16 20:15:40 t 1 1 200429 730 0.00 2019-12-16 20:15:48 2019-12-16 20:16:15 t 1 1 200433 562 0.00 2019-12-16 20:17:57 2019-12-16 20:19:23 t 1 1 200436 742 0.00 2019-12-16 20:15:40 2019-12-16 20:21:57 t 1 1 200438 516 0.00 2019-12-16 20:18:59 2019-12-16 20:25:05 t 1 1 200442 742 0.00 2019-12-16 20:21:57 2019-12-16 20:30:11 t 1 1 200446 711 0.00 2019-12-16 20:21:27 2019-12-16 20:34:06 t 1 1 200454 611 0.00 2019-12-16 20:44:12 2019-12-16 20:47:43 t 1 1 200456 738 0.00 2019-12-16 20:48:38 2019-12-16 20:49:39 t 1 1 200460 738 0.00 2019-12-16 20:53:06 2019-12-16 20:53:09 t 1 1 200463 742 0.00 2019-12-16 20:52:01 2019-12-16 20:56:52 t 1 1 200467 738 0.00 2019-12-16 20:58:44 2019-12-16 20:58:54 t 1 1 200468 738 0.00 2019-12-16 21:00:48 2019-12-16 21:01:04 t 1 1 200472 738 0.00 2019-12-16 21:02:28 2019-12-16 21:02:56 t 1 1 200474 635 0.00 2019-12-16 21:01:01 2019-12-16 21:06:17 t 1 1 200479 562 0.00 2019-12-16 21:06:23 2019-12-16 21:14:18 t 1 1 200481 485 0.00 2019-12-16 21:11:57 2019-12-16 21:16:12 t 1 1 200484 675 0.00 2019-12-16 21:19:06 2019-12-16 21:21:30 t 1 1 200485 528 0.00 2019-12-16 21:21:35 2019-12-16 21:22:08 t 1 1 200487 528 0.00 2019-12-16 21:22:56 2019-12-16 21:23:46 t 1 1 200489 562 0.00 2019-12-16 21:24:46 2019-12-16 21:24:53 t 1 1 200491 528 0.00 2019-12-16 21:28:03 2019-12-16 21:28:28 t 1 1 200494 687 0.00 2019-12-16 21:28:39 2019-12-16 21:30:51 t 1 1 200496 562 0.00 2019-12-16 21:37:44 2019-12-16 21:38:00 t 1 1 200497 564 0.00 2019-12-16 18:57:27 2019-12-16 21:38:26 t 1 1 200498 483 0.00 2019-12-16 21:32:23 2019-12-16 21:38:58 t 1 1 200499 551 0.00 2019-12-16 21:33:07 2019-12-16 21:42:19 t 1 1 200503 487 0.00 2019-12-16 20:50:58 2019-12-16 21:46:15 t 1 2 200506 656 0.00 2019-12-16 21:45:28 2019-12-16 21:51:23 t 1 1 200510 691 0.00 2019-12-16 21:56:40 2019-12-16 21:56:57 t 1 1 200514 744 0.00 2019-12-16 21:48:54 2019-12-16 22:00:54 t 1 1 200517 675 0.00 2019-12-16 21:58:55 2019-12-16 22:05:10 t 1 1 200518 562 0.00 2019-12-16 22:04:23 2019-12-16 22:07:09 t 1 1 200519 722 0.00 2019-12-16 21:38:29 2019-12-16 22:08:08 t 1 1 200522 562 0.00 2019-12-16 22:09:41 2019-12-16 22:09:53 t 1 1 200524 481 0.00 2019-12-16 20:05:12 2019-12-16 22:10:18 t 1 1 200525 691 0.00 2019-12-16 22:10:34 2019-12-16 22:11:40 t 1 1 200526 689 0.00 2019-12-16 22:00:09 2019-12-16 22:12:14 t 1 1 200528 687 0.00 2019-12-16 22:12:07 2019-12-16 22:14:15 t 1 1 200531 459 0.00 2019-12-16 22:18:17 2019-12-16 22:18:26 t 1 2 200536 562 0.00 2019-12-16 22:23:21 2019-12-16 22:25:25 t 1 1 200538 691 0.00 2019-12-16 22:27:10 2019-12-16 22:28:16 t 1 1 200541 691 0.00 2019-12-16 22:29:46 2019-12-16 22:31:02 t 1 1 200542 528 0.00 2019-12-16 22:31:11 2019-12-16 22:31:31 t 1 1 200548 722 0.00 2019-12-16 22:32:29 2019-12-16 22:33:55 t 1 1 200550 485 0.00 2019-12-16 22:27:30 2019-12-16 22:34:53 t 1 1 200551 562 0.00 2019-12-16 22:35:03 2019-12-16 22:35:21 t 1 1 200553 660 0.00 2019-12-16 22:18:30 2019-12-16 22:37:01 t 1 1 200554 514 0.00 2019-12-16 22:36:09 2019-12-16 22:37:13 t 1 1 200560 528 0.00 2019-12-16 22:40:47 2019-12-16 22:41:05 t 1 1 200561 660 0.00 2019-12-16 22:37:01 2019-12-16 22:42:27 t 1 1 200566 744 0.00 2019-12-16 22:43:47 2019-12-16 22:51:15 t 1 1 200567 656 0.00 2019-12-16 22:44:43 2019-12-16 22:51:39 t 1 1 200568 562 0.00 2019-12-16 22:51:20 2019-12-16 22:52:44 t 1 1 200570 660 0.00 2019-12-16 22:49:12 2019-12-16 22:54:46 t 1 1 200572 689 0.00 2019-12-16 22:40:07 2019-12-16 22:55:33 t 1 1 200573 687 0.00 2019-12-16 22:55:33 2019-12-16 22:58:30 t 1 1 200574 689 0.00 2019-12-16 22:58:30 2019-12-16 22:59:22 t 1 1 200577 675 0.00 2019-12-16 23:00:07 2019-12-16 23:00:29 t 1 1 200580 744 0.00 2019-12-16 22:51:15 2019-12-16 23:02:01 t 1 1 200581 689 0.00 2019-12-16 23:00:05 2019-12-16 23:02:57 t 1 1 200583 528 0.00 2019-12-16 23:05:41 2019-12-16 23:05:51 t 1 1 200586 483 0.00 2019-12-16 23:00:18 2019-12-16 23:07:33 t 1 1 200588 734 0.00 2019-12-16 22:04:04 2019-12-16 23:07:47 t 1 1 200589 734 0.00 2019-12-16 23:07:47 2019-12-16 23:08:07 t 1 1 200590 687 0.00 2019-12-16 23:00:40 2019-12-16 23:08:13 t 1 1 200594 528 0.00 2019-12-16 23:11:50 2019-12-16 23:12:24 t 1 1 200597 528 0.00 2019-12-16 23:16:22 2019-12-16 23:16:42 t 1 1 200603 689 0.00 2019-12-16 23:05:02 2019-12-16 23:20:27 t 1 1 200605 528 0.00 2019-12-16 23:21:56 2019-12-16 23:22:21 t 1 1 200610 392 0.00 2019-12-16 23:15:11 2019-12-16 23:27:48 t 1 2 200400 724 0.00 2019-12-16 19:00:23 2019-12-16 19:41:13 t 1 1 200409 694 0.00 2019-12-16 19:41:37 2019-12-16 19:50:30 t 1 1 200411 483 0.00 2019-12-16 19:44:04 2019-12-16 19:50:46 t 1 1 200413 742 0.00 2019-12-16 19:32:14 2019-12-16 19:51:11 t 1 1 200415 538 0.00 2019-12-16 19:45:26 2019-12-16 19:54:54 t 1 1 200418 711 0.00 2019-12-16 19:39:15 2019-12-16 19:58:58 t 1 1 200419 742 0.00 2019-12-16 19:51:11 2019-12-16 20:01:12 t 1 1 200421 724 0.00 2019-12-16 19:49:45 2019-12-16 20:05:22 t 1 1 200423 738 0.00 2019-12-16 19:59:02 2019-12-16 20:06:13 t 1 1 200424 562 0.00 2019-12-16 20:06:21 2019-12-16 20:06:49 t 1 1 200428 528 0.00 2019-12-16 19:45:52 2019-12-16 20:15:45 t 1 1 200431 734 0.00 2019-12-16 19:34:14 2019-12-16 20:18:44 t 1 1 200432 724 0.00 2019-12-16 20:06:13 2019-12-16 20:19:12 t 1 1 200434 711 0.00 2019-12-16 19:58:58 2019-12-16 20:21:27 t 1 1 200437 738 0.00 2019-12-16 20:21:56 2019-12-16 20:21:58 t 1 1 200439 591 0.00 2019-12-16 19:05:53 2019-12-16 20:25:51 t 1 1 200440 675 0.00 2019-12-16 20:20:18 2019-12-16 20:26:29 t 1 1 200445 738 0.00 2019-12-16 20:31:40 2019-12-16 20:33:54 t 1 1 200449 742 0.00 2019-12-16 20:30:11 2019-12-16 20:39:00 t 1 1 200450 738 0.00 2019-12-16 20:40:07 2019-12-16 20:41:38 t 1 1 200452 562 0.00 2019-12-16 20:44:59 2019-12-16 20:46:40 t 1 1 200453 738 0.00 2019-12-16 20:47:12 2019-12-16 20:47:14 t 1 1 200455 738 0.00 2019-12-16 20:47:43 2019-12-16 20:47:45 t 1 1 200458 742 0.00 2019-12-16 20:39:00 2019-12-16 20:52:01 t 1 1 200459 750 0.00 2019-12-16 18:03:02 2019-12-16 20:52:20 t 1 1 200462 738 0.00 2019-12-16 20:53:40 2019-12-16 20:54:31 t 1 1 200466 528 0.00 2019-12-16 20:33:41 2019-12-16 20:57:41 t 1 1 200470 528 0.00 2019-12-16 20:59:03 2019-12-16 21:02:18 t 1 1 200475 562 0.00 2019-12-16 20:53:22 2019-12-16 21:06:18 t 1 1 200478 744 0.00 2019-12-16 21:02:40 2019-12-16 21:13:09 t 1 1 200480 551 0.00 2019-12-16 21:01:04 2019-12-16 21:14:18 t 1 1 200483 528 0.00 2019-12-16 21:18:25 2019-12-16 21:20:28 t 1 1 200486 709 0.00 2019-12-16 21:19:26 2019-12-16 21:22:21 t 1 1 200488 551 0.00 2019-12-16 21:14:18 2019-12-16 21:23:55 t 1 1 200495 551 0.00 2019-12-16 21:23:55 2019-12-16 21:33:07 t 1 1 200502 687 0.00 2019-12-16 21:43:12 2019-12-16 21:45:40 t 1 1 200505 744 0.00 2019-12-16 21:48:48 2019-12-16 21:48:50 t 1 1 200507 551 0.00 2019-12-16 21:42:19 2019-12-16 21:51:37 t 1 1 200508 591 0.00 2019-12-16 20:25:51 2019-12-16 21:54:52 t 1 1 200509 691 0.00 2019-12-16 21:56:20 2019-12-16 21:56:40 t 1 1 200511 691 0.00 2019-12-16 21:56:56 2019-12-16 21:58:19 t 1 1 200512 562 0.00 2019-12-16 21:48:17 2019-12-16 21:59:24 t 1 1 200520 551 0.00 2019-12-16 22:00:06 2019-12-16 22:09:06 t 1 1 200523 691 0.00 2019-12-16 22:08:57 2019-12-16 22:10:04 t 1 1 200529 687 0.00 2019-12-16 22:15:33 2019-12-16 22:17:14 t 1 1 200533 722 0.00 2019-12-16 22:08:08 2019-12-16 22:20:03 t 1 1 200535 689 0.00 2019-12-16 22:15:36 2019-12-16 22:22:31 t 1 1 200537 687 0.00 2019-12-16 22:18:32 2019-12-16 22:27:10 t 1 1 200540 744 0.00 2019-12-16 22:00:54 2019-12-16 22:30:41 t 1 1 200543 649 0.00 2019-12-16 22:23:11 2019-12-16 22:31:49 t 1 1 200546 459 0.00 2019-12-16 22:18:50 2019-12-16 22:33:28 t 1 2 200552 528 0.00 2019-12-16 22:32:35 2019-12-16 22:35:25 t 1 1 200555 744 0.00 2019-12-16 22:30:41 2019-12-16 22:37:25 t 1 1 200559 562 0.00 2019-12-16 22:40:25 2019-12-16 22:40:40 t 1 1 200564 675 0.00 2019-12-16 22:42:27 2019-12-16 22:45:26 t 1 1 200565 564 0.00 2019-12-16 21:38:26 2019-12-16 22:47:14 t 1 1 200576 687 0.00 2019-12-16 22:59:40 2019-12-16 23:00:06 t 1 1 200582 528 0.00 2019-12-16 23:03:03 2019-12-16 23:03:20 t 1 1 200587 551 0.00 2019-12-16 22:32:06 2019-12-16 23:07:42 t 1 1 200592 528 0.00 2019-12-16 23:08:22 2019-12-16 23:08:35 t 1 1 200593 528 0.00 2019-12-16 23:09:14 2019-12-16 23:09:22 t 1 1 200595 528 0.00 2019-12-16 23:13:16 2019-12-16 23:13:29 t 1 1 200596 528 0.00 2019-12-16 23:14:39 2019-12-16 23:14:47 t 1 1 200598 562 0.00 2019-12-16 23:16:26 2019-12-16 23:17:05 t 1 1 200599 562 0.00 2019-12-16 23:17:25 2019-12-16 23:17:35 t 1 1 200606 744 0.00 2019-12-16 23:08:30 2019-12-16 23:22:29 t 1 1 200608 528 0.00 2019-12-16 23:23:49 2019-12-16 23:25:45 t 1 1 200612 581 0.00 2019-12-16 23:24:16 2019-12-16 23:28:59 t 1 1 200613 591 0.00 2019-12-16 23:28:16 2019-12-16 23:29:24 t 1 1 200616 551 0.00 2019-12-16 23:07:42 2019-12-16 23:29:44 t 1 1 200618 707 0.00 2019-12-16 20:23:33 2019-12-16 23:36:06 t 1 1 200624 528 0.00 2019-12-16 23:42:20 2019-12-16 23:42:38 t 1 1 200626 528 0.00 2019-12-16 23:43:33 2019-12-16 23:44:00 t 1 1 200630 538 0.00 2019-12-16 22:36:50 2019-12-16 23:51:21 t 1 1 200632 528 0.00 2019-12-16 23:53:46 2019-12-16 23:54:26 t 1 1 200634 528 0.00 2019-12-16 23:58:23 2019-12-16 23:58:38 t 1 1 200636 562 0.00 2019-12-16 23:59:26 2019-12-16 23:59:55 t 1 1 200638 679 0.00 2019-12-16 23:43:43 2019-12-17 00:01:14 t 1 1 200639 679 0.00 2019-12-17 00:02:46 2019-12-17 00:02:47 t 1 1 200642 679 0.00 2019-12-17 00:03:44 2019-12-17 00:04:21 t 1 1 200643 734 0.00 2019-12-16 23:47:56 2019-12-17 00:05:32 t 1 1 200647 528 0.00 2019-12-17 00:14:40 2019-12-17 00:15:10 t 1 1 200656 685 0.00 2019-12-17 00:20:01 2019-12-17 00:24:55 t 1 1 200660 562 0.00 2019-12-17 00:32:02 2019-12-17 00:32:11 t 1 1 200662 503 0.00 2019-12-17 00:26:06 2019-12-17 00:32:43 t 1 1 200669 679 0.00 2019-12-17 00:22:33 2019-12-17 00:39:01 t 1 1 200676 551 0.00 2019-12-16 23:59:14 2019-12-17 01:05:53 t 1 1 200678 679 0.00 2019-12-17 00:54:53 2019-12-17 01:12:20 t 1 1 200680 734 0.00 2019-12-17 00:33:36 2019-12-17 01:22:05 t 1 1 200685 679 0.00 2019-12-17 01:30:16 2019-12-17 01:46:13 t 1 1 200694 687 0.00 2019-12-17 02:01:27 2019-12-17 02:03:09 t 1 1 200699 562 0.00 2019-12-17 02:12:30 2019-12-17 02:12:49 t 1 1 200700 544 0.00 2019-12-17 02:08:26 2019-12-17 02:16:32 t 1 2 200703 562 0.00 2019-12-17 02:31:01 2019-12-17 02:31:14 t 1 1 200705 538 0.00 2019-12-17 00:33:01 2019-12-17 02:33:03 t 1 1 200708 562 0.00 2019-12-17 02:41:48 2019-12-17 02:41:57 t 1 1 200713 736 0.00 2019-12-17 02:56:39 2019-12-17 03:01:06 t 1 1 200717 562 0.00 2019-12-17 03:14:03 2019-12-17 03:14:14 t 1 1 200720 750 0.00 2019-12-17 03:15:41 2019-12-17 03:27:15 t 1 1 200721 675 0.00 2019-12-17 03:21:23 2019-12-17 03:28:44 t 1 1 200723 562 0.00 2019-12-17 03:42:43 2019-12-17 03:42:53 t 1 1 200724 562 0.00 2019-12-17 03:50:11 2019-12-17 03:50:33 t 1 1 200725 679 0.00 2019-12-17 03:40:15 2019-12-17 03:52:20 t 1 1 200726 562 0.00 2019-12-17 04:01:10 2019-12-17 04:01:19 t 1 1 200732 562 0.00 2019-12-17 05:03:07 2019-12-17 05:03:17 t 1 1 200740 516 0.00 2019-12-17 06:08:58 2019-12-17 06:17:36 t 1 1 200742 562 0.00 2019-12-17 06:37:17 2019-12-17 06:37:26 t 1 1 200611 744 0.00 2019-12-16 23:22:29 2019-12-16 23:28:42 t 1 1 200615 675 0.00 2019-12-16 23:28:59 2019-12-16 23:29:31 t 1 1 200619 528 0.00 2019-12-16 23:37:14 2019-12-16 23:37:22 t 1 1 200620 581 0.00 2019-12-16 23:33:53 2019-12-16 23:38:26 t 1 1 200622 528 0.00 2019-12-16 23:39:59 2019-12-16 23:40:18 t 1 1 200623 562 0.00 2019-12-16 23:41:16 2019-12-16 23:41:27 t 1 1 200635 551 0.00 2019-12-16 23:39:30 2019-12-16 23:59:14 t 1 1 200645 687 0.00 2019-12-16 23:51:27 2019-12-17 00:10:41 t 1 1 200648 528 0.00 2019-12-17 00:15:23 2019-12-17 00:15:45 t 1 1 200652 685 0.00 2019-12-17 00:15:59 2019-12-17 00:20:01 t 1 1 200655 679 0.00 2019-12-17 00:04:35 2019-12-17 00:22:33 t 1 1 200657 685 0.00 2019-12-17 00:24:55 2019-12-17 00:26:04 t 1 1 200664 734 0.00 2019-12-17 00:22:48 2019-12-17 00:33:36 t 1 1 200666 528 0.00 2019-12-17 00:36:34 2019-12-17 00:37:12 t 1 1 200668 562 0.00 2019-12-17 00:38:37 2019-12-17 00:38:58 t 1 1 200671 562 0.00 2019-12-17 00:46:09 2019-12-17 00:46:36 t 1 1 200672 503 0.00 2019-12-17 00:37:12 2019-12-17 00:50:24 t 1 1 200673 679 0.00 2019-12-17 00:39:01 2019-12-17 00:54:53 t 1 1 200674 562 0.00 2019-12-17 00:57:14 2019-12-17 00:57:23 t 1 1 200675 687 0.00 2019-12-17 00:43:12 2019-12-17 01:01:46 t 1 1 200679 562 0.00 2019-12-17 01:18:48 2019-12-17 01:18:59 t 1 1 200681 687 0.00 2019-12-17 01:02:01 2019-12-17 01:22:44 t 1 1 200682 562 0.00 2019-12-17 01:29:29 2019-12-17 01:29:39 t 1 1 200686 687 0.00 2019-12-17 01:25:57 2019-12-17 01:48:19 t 1 1 200687 551 0.00 2019-12-17 01:06:24 2019-12-17 01:49:23 t 1 1 200689 663 0.00 2019-12-17 01:55:09 2019-12-17 01:55:09 f 1 1 200690 687 0.00 2019-12-17 01:48:19 2019-12-17 01:57:09 t 1 1 200692 687 0.00 2019-12-17 02:01:13 2019-12-17 02:01:17 t 1 1 200693 562 0.00 2019-12-17 02:01:50 2019-12-17 02:01:59 t 1 1 200695 679 0.00 2019-12-17 01:46:13 2019-12-17 02:04:27 t 1 1 200696 544 0.00 2019-12-17 02:07:39 2019-12-17 02:07:47 t 1 2 200697 544 0.00 2019-12-17 02:08:03 2019-12-17 02:08:04 t 1 1 200698 544 0.00 2019-12-17 02:08:03 2019-12-17 02:08:08 t 1 2 200701 679 0.00 2019-12-17 02:04:27 2019-12-17 02:19:51 t 1 1 200702 562 0.00 2019-12-17 02:20:20 2019-12-17 02:20:29 t 1 1 200711 679 0.00 2019-12-17 02:42:13 2019-12-17 02:59:52 t 1 1 200712 656 0.00 2019-12-17 00:14:13 2019-12-17 03:00:33 t 1 1 200714 667 0.00 2019-12-17 02:58:42 2019-12-17 03:03:14 t 1 1 200718 679 0.00 2019-12-17 02:59:52 2019-12-17 03:17:37 t 1 1 200719 562 0.00 2019-12-17 03:24:31 2019-12-17 03:25:00 t 1 1 200727 562 0.00 2019-12-17 04:08:53 2019-12-17 04:09:00 t 1 1 200728 562 0.00 2019-12-17 04:19:39 2019-12-17 04:19:48 t 1 1 200729 562 0.00 2019-12-17 04:30:14 2019-12-17 04:30:34 t 1 1 200730 562 0.00 2019-12-17 04:41:13 2019-12-17 04:41:39 t 1 1 200731 562 0.00 2019-12-17 04:52:19 2019-12-17 04:52:29 t 1 1 200733 562 0.00 2019-12-17 05:13:40 2019-12-17 05:14:04 t 1 1 200734 562 0.00 2019-12-17 05:24:34 2019-12-17 05:24:46 t 1 1 200735 562 0.00 2019-12-17 05:35:20 2019-12-17 05:35:57 t 1 1 200736 562 0.00 2019-12-17 05:46:33 2019-12-17 05:46:43 t 1 1 200737 562 0.00 2019-12-17 05:54:09 2019-12-17 05:54:18 t 1 1 200739 562 0.00 2019-12-17 06:15:44 2019-12-17 06:15:54 t 1 1 200741 562 0.00 2019-12-17 06:26:23 2019-12-17 06:26:41 t 1 1 200743 220 0.00 2019-12-17 06:35:59 2019-12-17 06:40:22 t 1 2 200744 611 0.00 2019-12-17 06:23:31 2019-12-17 06:43:49 t 1 1 200747 562 0.00 2019-12-17 06:58:43 2019-12-17 06:58:56 t 1 1 200748 562 0.00 2019-12-17 07:09:37 2019-12-17 07:09:46 t 1 1 200749 707 0.00 2019-12-17 06:58:15 2019-12-17 07:13:15 t 1 1 200750 564 0.00 2019-12-17 06:59:19 2019-12-17 07:14:54 t 1 1 200752 562 0.00 2019-12-17 07:20:22 2019-12-17 07:20:32 t 1 1 200753 611 0.00 2019-12-17 06:43:49 2019-12-17 07:20:53 t 1 1 200755 562 0.00 2019-12-17 07:23:12 2019-12-17 07:23:49 t 1 1 200756 675 0.00 2019-12-17 07:24:33 2019-12-17 07:27:55 t 1 1 200757 562 0.00 2019-12-17 07:33:59 2019-12-17 07:34:49 t 1 1 200758 611 0.00 2019-12-17 07:30:31 2019-12-17 07:40:04 t 1 1 200760 562 0.00 2019-12-17 07:35:45 2019-12-17 07:40:36 t 1 1 200761 667 0.00 2019-12-17 07:20:54 2019-12-17 07:42:41 t 1 1 200763 562 0.00 2019-12-17 07:44:36 2019-12-17 07:44:41 t 1 1 200766 734 0.00 2019-12-17 07:03:16 2019-12-17 07:54:24 t 1 1 200767 562 0.00 2019-12-17 07:55:16 2019-12-17 07:55:30 t 1 1 200768 675 0.00 2019-12-17 07:51:34 2019-12-17 07:55:53 t 1 1 200769 689 0.00 2019-12-17 07:53:34 2019-12-17 07:56:13 t 1 1 200770 637 0.00 2019-12-17 07:45:19 2019-12-17 07:56:49 t 1 1 200773 481 0.00 2019-12-17 06:58:57 2019-12-17 08:02:10 t 1 1 200774 689 0.00 2019-12-17 08:01:37 2019-12-17 08:02:37 t 1 1 200777 689 0.00 2019-12-17 08:06:56 2019-12-17 08:07:43 t 1 1 200778 689 0.00 2019-12-17 08:08:15 2019-12-17 08:08:27 t 1 1 200781 637 0.00 2019-12-17 07:56:49 2019-12-17 08:14:35 t 1 1 200783 562 0.00 2019-12-17 08:15:45 2019-12-17 08:20:16 t 1 1 200784 538 0.00 2019-12-17 02:33:07 2019-12-17 08:22:16 t 1 1 200785 562 0.00 2019-12-17 08:25:23 2019-12-17 08:27:20 t 1 1 200786 516 0.00 2019-12-17 07:47:03 2019-12-17 08:28:28 t 1 1 200787 709 0.00 2019-12-17 07:42:06 2019-12-17 08:28:58 t 1 1 200788 516 0.00 2019-12-17 08:32:21 2019-12-17 08:32:49 t 1 1 200790 724 0.00 2019-12-17 08:14:15 2019-12-17 08:35:02 t 1 1 200791 562 0.00 2019-12-17 08:36:21 2019-12-17 08:36:43 t 1 1 200792 516 0.00 2019-12-17 08:36:38 2019-12-17 08:37:45 t 1 1 200793 707 0.00 2019-12-17 08:19:00 2019-12-17 08:38:16 t 1 1 200794 687 0.00 2019-12-17 07:49:23 2019-12-17 08:38:57 t 1 1 200795 562 0.00 2019-12-17 08:40:37 2019-12-17 08:41:49 t 1 1 200797 675 0.00 2019-12-17 08:40:26 2019-12-17 08:42:23 t 1 1 200799 581 0.00 2019-12-17 08:45:12 2019-12-17 08:49:03 t 1 1 200800 516 0.00 2019-12-17 08:44:47 2019-12-17 08:50:49 t 1 1 200803 538 0.00 2019-12-17 08:32:14 2019-12-17 08:54:19 t 1 1 200804 562 0.00 2019-12-17 08:54:11 2019-12-17 08:54:29 t 1 1 200805 562 0.00 2019-12-17 08:54:59 2019-12-17 08:55:26 t 1 1 200806 637 0.00 2019-12-17 08:53:39 2019-12-17 08:55:34 t 1 1 200807 392 0.00 2019-12-17 08:55:10 2019-12-17 08:56:13 t 1 2 200808 392 0.00 2019-12-17 08:58:14 2019-12-17 08:59:19 t 1 2 200809 637 0.00 2019-12-17 08:59:53 2019-12-17 08:59:58 t 1 1 200810 707 0.00 2019-12-17 08:58:23 2019-12-17 09:01:10 t 1 1 200811 581 0.00 2019-12-17 09:05:00 2019-12-17 09:05:35 t 1 1 200812 667 0.00 2019-12-17 09:02:08 2019-12-17 09:05:37 t 1 1 200813 568 0.00 2019-12-17 09:03:26 2019-12-17 09:07:06 t 1 1 200814 562 0.00 2019-12-17 09:00:15 2019-12-17 09:07:43 t 1 1 200815 581 0.00 2019-12-17 09:07:40 2019-12-17 09:08:49 t 1 1 200816 667 0.00 2019-12-17 09:05:37 2019-12-17 09:09:26 t 1 1 200818 562 0.00 2019-12-17 09:09:17 2019-12-17 09:09:49 t 1 1 200659 528 0.00 2019-12-17 00:31:40 2019-12-17 00:32:05 t 1 1 200661 538 0.00 2019-12-16 23:50:27 2019-12-17 00:32:42 t 1 1 200663 503 0.00 2019-12-17 00:32:42 2019-12-17 00:32:53 t 1 1 200665 685 0.00 2019-12-17 00:27:36 2019-12-17 00:33:58 t 1 1 200667 503 0.00 2019-12-17 00:34:23 2019-12-17 00:37:12 t 1 1 200670 687 0.00 2019-12-17 00:10:41 2019-12-17 00:40:26 t 1 1 200677 562 0.00 2019-12-17 01:08:01 2019-12-17 01:08:10 t 1 1 200683 679 0.00 2019-12-17 01:12:20 2019-12-17 01:30:16 t 1 1 200684 562 0.00 2019-12-17 01:40:09 2019-12-17 01:40:26 t 1 1 200688 562 0.00 2019-12-17 01:51:02 2019-12-17 01:51:12 t 1 1 200691 687 0.00 2019-12-17 01:57:17 2019-12-17 01:59:44 t 1 1 200704 551 0.00 2019-12-17 01:49:26 2019-12-17 02:31:30 t 1 1 200706 679 0.00 2019-12-17 02:20:53 2019-12-17 02:40:32 t 1 1 200707 679 0.00 2019-12-17 02:41:13 2019-12-17 02:41:33 t 1 1 200709 562 0.00 2019-12-17 02:52:30 2019-12-17 02:52:39 t 1 1 200710 736 0.00 2019-12-17 02:39:56 2019-12-17 02:56:39 t 1 1 200715 562 0.00 2019-12-17 03:03:18 2019-12-17 03:03:29 t 1 1 200716 667 0.00 2019-12-17 03:06:42 2019-12-17 03:13:03 t 1 1 200722 562 0.00 2019-12-17 03:35:28 2019-12-17 03:35:42 t 1 1 200738 562 0.00 2019-12-17 06:04:57 2019-12-17 06:05:07 t 1 1 200745 562 0.00 2019-12-17 06:47:43 2019-12-17 06:48:14 t 1 1 200746 481 0.00 2019-12-17 06:17:04 2019-12-17 06:58:38 t 1 1 200751 564 0.00 2019-12-17 07:14:54 2019-12-17 07:18:45 t 1 1 200754 667 0.00 2019-12-17 07:13:15 2019-12-17 07:20:54 t 1 1 200759 220 0.00 2019-12-17 06:55:40 2019-12-17 07:40:29 t 1 2 200762 675 0.00 2019-12-17 07:32:47 2019-12-17 07:43:03 t 1 1 200764 562 0.00 2019-12-17 07:48:13 2019-12-17 07:48:35 t 1 1 200765 689 0.00 2019-12-17 07:47:55 2019-12-17 07:53:21 t 1 1 200771 689 0.00 2019-12-17 07:56:30 2019-12-17 08:00:27 t 1 1 200772 675 0.00 2019-12-17 07:58:31 2019-12-17 08:01:42 t 1 1 200775 485 0.00 2019-12-17 07:53:28 2019-12-17 08:02:37 t 1 1 200776 689 0.00 2019-12-17 08:02:53 2019-12-17 08:05:50 t 1 1 200779 750 0.00 2019-12-17 08:02:32 2019-12-17 08:08:51 t 1 1 200780 562 0.00 2019-12-17 07:56:15 2019-12-17 08:10:31 t 1 1 200782 675 0.00 2019-12-17 08:14:59 2019-12-17 08:19:53 t 1 1 200789 679 0.00 2019-12-17 08:32:49 2019-12-17 08:33:57 t 1 1 200796 516 0.00 2019-12-17 08:37:44 2019-12-17 08:41:56 t 1 1 200798 562 0.00 2019-12-17 08:43:30 2019-12-17 08:43:38 t 1 1 200801 637 0.00 2019-12-17 08:14:52 2019-12-17 08:52:13 t 1 1 200802 675 0.00 2019-12-17 08:51:29 2019-12-17 08:53:39 t 1 1 200817 516 0.00 2019-12-17 08:55:18 2019-12-17 09:09:29 t 1 1 200819 562 0.00 2019-12-17 09:10:35 2019-12-17 09:10:43 t 1 1 200820 709 0.00 2019-12-17 08:45:17 2019-12-17 09:11:40 t 1 1 200821 562 0.00 2019-12-17 09:12:32 2019-12-17 09:13:05 t 1 1 200822 750 0.00 2019-12-17 08:44:54 2019-12-17 09:13:23 t 1 1 200823 581 0.00 2019-12-17 09:14:37 2019-12-17 09:14:50 t 1 1 200824 581 0.00 2019-12-17 09:15:00 2019-12-17 09:15:08 t 1 1 200825 637 0.00 2019-12-17 09:14:09 2019-12-17 09:15:18 t 1 1 200826 722 0.00 2019-12-17 09:11:37 2019-12-17 09:15:32 t 1 1 200827 581 0.00 2019-12-17 09:16:28 2019-12-17 09:16:51 t 1 1 200828 722 0.00 2019-12-17 09:15:43 2019-12-17 09:20:13 t 1 1 200829 707 0.00 2019-12-17 09:04:33 2019-12-17 09:21:33 t 1 1 200830 562 0.00 2019-12-17 09:23:36 2019-12-17 09:23:53 t 1 1 200831 685 0.00 2019-12-17 09:24:20 2019-12-17 09:24:50 t 1 1 200832 679 0.00 2019-12-17 09:24:01 2019-12-17 09:25:30 t 1 1 200833 581 0.00 2019-12-17 09:25:48 2019-12-17 09:27:50 t 1 1 200834 709 0.00 2019-12-17 09:11:45 2019-12-17 09:28:57 t 1 1 200835 625 0.00 2019-12-17 08:30:06 2019-12-17 09:28:57 t 1 1 200836 615 0.00 2019-12-17 09:22:53 2019-12-17 09:31:59 t 1 1 200837 685 0.00 2019-12-17 09:24:54 2019-12-17 09:32:04 t 1 1 200838 685 0.00 2019-12-17 09:32:12 2019-12-17 09:32:21 t 1 1 200839 685 0.00 2019-12-17 09:32:29 2019-12-17 09:32:55 t 1 1 200840 591 0.00 2019-12-17 09:22:03 2019-12-17 09:33:19 t 1 1 200841 675 0.00 2019-12-17 09:05:18 2019-12-17 09:33:28 t 1 1 200842 685 0.00 2019-12-17 09:33:31 2019-12-17 09:33:33 t 1 1 200843 685 0.00 2019-12-17 09:33:46 2019-12-17 09:34:04 t 1 1 200844 562 0.00 2019-12-17 09:33:39 2019-12-17 09:34:04 t 1 1 200845 685 0.00 2019-12-17 09:34:18 2019-12-17 09:34:24 t 1 1 200846 685 0.00 2019-12-17 09:34:46 2019-12-17 09:34:56 t 1 1 200847 685 0.00 2019-12-17 09:36:24 2019-12-17 09:37:24 t 1 1 200848 685 0.00 2019-12-17 09:37:19 2019-12-17 09:38:06 t 1 1 200849 685 0.00 2019-12-17 09:39:30 2019-12-17 09:39:41 t 1 1 200850 685 0.00 2019-12-17 09:38:37 2019-12-17 09:39:50 t 1 1 200851 685 0.00 2019-12-17 09:39:46 2019-12-17 09:40:25 t 1 1 200852 625 0.00 2019-12-17 09:28:57 2019-12-17 09:42:43 t 1 1 200853 581 0.00 2019-12-17 09:40:58 2019-12-17 09:42:50 t 1 1 200854 685 0.00 2019-12-17 09:40:24 2019-12-17 09:43:19 t 1 1 200855 685 0.00 2019-12-17 09:43:22 2019-12-17 09:44:36 t 1 1 200856 685 0.00 2019-12-17 09:44:36 2019-12-17 09:44:43 t 1 1 200857 562 0.00 2019-12-17 09:44:23 2019-12-17 09:44:45 t 1 1 200858 689 0.00 2019-12-17 09:42:49 2019-12-17 09:44:49 t 1 1 200859 637 0.00 2019-12-17 09:40:20 2019-12-17 09:46:00 t 1 1 200860 637 0.00 2019-12-17 09:45:23 2019-12-17 09:46:32 t 1 1 200861 685 0.00 2019-12-17 09:46:36 2019-12-17 09:46:38 t 1 1 200862 685 0.00 2019-12-17 09:48:31 2019-12-17 09:48:37 t 1 1 200863 722 0.00 2019-12-17 09:52:11 2019-12-17 09:52:29 t 1 1 200864 581 0.00 2019-12-17 09:52:43 2019-12-17 09:52:50 t 1 1 200865 581 0.00 2019-12-17 09:52:58 2019-12-17 09:53:03 t 1 1 200866 685 0.00 2019-12-17 09:53:34 2019-12-17 09:53:40 t 1 1 200867 392 0.00 2019-12-17 09:54:02 2019-12-17 09:55:06 t 1 2 200868 709 0.00 2019-12-17 09:47:05 2019-12-17 09:55:35 t 1 1 200869 581 0.00 2019-12-17 09:53:11 2019-12-17 09:55:50 t 1 1 200870 685 0.00 2019-12-17 09:55:35 2019-12-17 09:56:35 t 1 1 200871 562 0.00 2019-12-17 09:45:16 2019-12-17 09:56:38 t 1 1 200872 581 0.00 2019-12-17 09:54:30 2019-12-17 09:56:42 t 1 1 200873 685 0.00 2019-12-17 09:57:00 2019-12-17 09:57:06 t 1 1 200874 581 0.00 2019-12-17 09:56:50 2019-12-17 09:57:44 t 1 1 200875 581 0.00 2019-12-17 09:57:52 2019-12-17 09:57:57 t 1 1 200876 581 0.00 2019-12-17 09:58:05 2019-12-17 09:58:06 t 1 1 200877 685 0.00 2019-12-17 09:58:41 2019-12-17 09:59:56 t 1 1 200878 685 0.00 2019-12-17 10:00:10 2019-12-17 10:00:17 t 1 1 200879 685 0.00 2019-12-17 10:00:34 2019-12-17 10:02:10 t 1 1 200880 562 0.00 2019-12-17 10:00:12 2019-12-17 10:02:48 t 1 1 200881 685 0.00 2019-12-17 10:02:23 2019-12-17 10:02:51 t 1 1 200882 685 0.00 2019-12-17 10:03:17 2019-12-17 10:03:22 t 1 1 200883 675 0.00 2019-12-17 09:34:14 2019-12-17 10:04:14 t 1 1 200884 581 0.00 2019-12-17 10:04:10 2019-12-17 10:04:14 t 1 1 200885 581 0.00 2019-12-17 10:04:22 2019-12-17 10:04:28 t 1 1 200887 503 0.00 2019-12-17 09:54:37 2019-12-17 10:06:38 t 1 1 200891 581 0.00 2019-12-17 10:07:46 2019-12-17 10:07:55 t 1 1 200902 637 0.00 2019-12-17 10:03:01 2019-12-17 10:17:38 t 1 1 200904 685 0.00 2019-12-17 10:17:47 2019-12-17 10:18:02 t 1 1 200906 481 0.00 2019-12-17 08:02:10 2019-12-17 10:20:47 t 1 1 200910 685 0.00 2019-12-17 10:23:02 2019-12-17 10:23:16 t 1 1 200912 685 0.00 2019-12-17 10:24:10 2019-12-17 10:24:15 t 1 1 200918 685 0.00 2019-12-17 10:27:07 2019-12-17 10:27:18 t 1 1 200921 685 0.00 2019-12-17 10:28:40 2019-12-17 10:30:26 t 1 1 200923 685 0.00 2019-12-17 10:30:29 2019-12-17 10:31:42 t 1 1 200926 637 0.00 2019-12-17 10:28:26 2019-12-17 10:35:06 t 1 1 200934 730 0.00 2019-12-17 10:32:13 2019-12-17 10:41:32 t 1 1 200948 685 0.00 2019-12-17 10:50:19 2019-12-17 10:50:30 t 1 1 200951 685 0.00 2019-12-17 10:51:17 2019-12-17 10:51:23 t 1 1 200953 742 0.00 2019-12-17 10:46:40 2019-12-17 10:53:11 t 1 1 200955 685 0.00 2019-12-17 10:53:21 2019-12-17 10:53:26 t 1 1 200958 685 0.00 2019-12-17 10:54:41 2019-12-17 10:54:46 t 1 1 200959 685 0.00 2019-12-17 10:55:08 2019-12-17 10:55:26 t 1 1 200961 685 0.00 2019-12-17 10:56:24 2019-12-17 10:56:32 t 1 1 200964 734 0.00 2019-12-17 10:49:43 2019-12-17 10:58:15 t 1 1 200965 685 0.00 2019-12-17 10:58:23 2019-12-17 10:58:23 f 1 1 200967 685 0.00 2019-12-17 10:58:12 2019-12-17 10:59:50 t 1 1 200971 637 0.00 2019-12-17 11:05:59 2019-12-17 11:09:38 t 1 1 200973 637 0.00 2019-12-17 11:10:04 2019-12-17 11:11:19 t 1 1 200979 724 0.00 2019-12-17 11:12:36 2019-12-17 11:12:52 t 1 1 200980 675 0.00 2019-12-17 11:11:56 2019-12-17 11:13:08 t 1 1 200985 481 0.00 2019-12-17 11:11:43 2019-12-17 11:14:03 t 1 1 200986 724 0.00 2019-12-17 11:13:45 2019-12-17 11:14:08 t 1 1 200987 724 0.00 2019-12-17 11:14:07 2019-12-17 11:14:37 t 1 1 200991 724 0.00 2019-12-17 11:15:14 2019-12-17 11:15:26 t 1 1 200995 724 0.00 2019-12-17 11:16:18 2019-12-17 11:16:43 t 1 1 200999 724 0.00 2019-12-17 11:17:36 2019-12-17 11:17:56 t 1 1 201001 724 0.00 2019-12-17 11:18:07 2019-12-17 11:18:22 t 1 1 201008 724 0.00 2019-12-17 11:19:18 2019-12-17 11:19:33 t 1 1 201012 750 0.00 2019-12-17 10:29:48 2019-12-17 11:22:20 t 1 1 201017 730 0.00 2019-12-17 10:42:44 2019-12-17 11:27:54 t 1 1 201024 625 0.00 2019-12-17 11:37:41 2019-12-17 11:39:02 t 1 1 201031 730 0.00 2019-12-17 11:45:11 2019-12-17 11:47:59 t 1 1 201032 514 0.00 2019-12-17 11:26:47 2019-12-17 11:48:43 t 1 1 201036 694 0.00 2019-12-17 11:33:06 2019-12-17 11:55:34 t 1 1 201042 483 0.00 2019-12-17 12:05:19 2019-12-17 12:11:31 t 1 1 201044 625 0.00 2019-12-17 12:09:28 2019-12-17 12:12:40 t 1 1 201046 220 0.00 2019-12-17 10:52:57 2019-12-17 12:14:42 t 1 2 201050 581 0.00 2019-12-17 12:09:37 2019-12-17 12:24:28 t 1 1 201053 637 0.00 2019-12-17 12:24:59 2019-12-17 12:26:25 t 1 1 201056 581 0.00 2019-12-17 12:25:46 2019-12-17 12:31:25 t 1 1 201061 562 0.00 2019-12-17 12:37:36 2019-12-17 12:38:51 t 1 1 201063 581 0.00 2019-12-17 12:35:41 2019-12-17 12:42:52 t 1 1 201065 483 0.00 2019-12-17 12:18:00 2019-12-17 12:44:40 t 1 1 201068 625 0.00 2019-12-17 12:15:43 2019-12-17 12:45:25 t 1 1 201072 673 0.00 2019-12-17 11:51:43 2019-12-17 12:49:24 t 1 1 201075 485 0.00 2019-12-17 12:52:11 2019-12-17 12:55:49 t 1 1 201081 611 0.00 2019-12-17 12:58:36 2019-12-17 13:01:04 t 1 1 201084 667 0.00 2019-12-17 13:03:56 2019-12-17 13:04:41 t 1 1 201088 689 0.00 2019-12-17 13:06:20 2019-12-17 13:06:47 t 1 1 201094 581 0.00 2019-12-17 13:09:36 2019-12-17 13:09:43 t 1 1 201095 689 0.00 2019-12-17 13:09:52 2019-12-17 13:10:20 t 1 1 201104 673 0.00 2019-12-17 12:49:24 2019-12-17 13:19:41 t 1 1 201107 667 0.00 2019-12-17 13:20:59 2019-12-17 13:21:00 t 1 1 201108 724 0.00 2019-12-17 13:16:36 2019-12-17 13:23:35 t 1 1 201109 566 0.00 2019-12-17 12:59:53 2019-12-17 13:24:13 t 1 1 201112 611 0.00 2019-12-17 13:17:47 2019-12-17 13:27:32 t 1 1 201119 667 0.00 2019-12-17 13:31:25 2019-12-17 13:31:34 t 1 1 201122 689 0.00 2019-12-17 13:11:06 2019-12-17 13:32:58 t 1 1 201124 691 0.00 2019-12-17 13:33:09 2019-12-17 13:33:37 t 1 1 201126 691 0.00 2019-12-17 13:34:12 2019-12-17 13:35:30 t 1 1 201134 691 0.00 2019-12-17 13:39:23 2019-12-17 13:40:01 t 1 1 201135 562 0.00 2019-12-17 13:40:05 2019-12-17 13:40:49 t 1 1 201138 687 0.00 2019-12-17 13:28:44 2019-12-17 13:44:22 t 1 1 201144 691 0.00 2019-12-17 13:47:18 2019-12-17 13:47:47 t 1 1 201145 691 0.00 2019-12-17 13:47:47 2019-12-17 13:48:55 t 1 1 201147 637 0.00 2019-12-17 13:49:01 2019-12-17 13:50:22 t 1 1 201151 562 0.00 2019-12-17 13:53:07 2019-12-17 13:54:47 t 1 1 201155 687 0.00 2019-12-17 13:45:32 2019-12-17 13:58:43 t 1 1 201156 551 0.00 2019-12-17 13:21:47 2019-12-17 13:59:09 t 1 1 201157 562 0.00 2019-12-17 13:59:15 2019-12-17 13:59:21 t 1 1 201158 562 0.00 2019-12-17 14:00:43 2019-12-17 14:01:16 t 1 1 201165 635 0.00 2019-12-17 12:41:40 2019-12-17 14:05:02 t 1 1 201166 679 0.00 2019-12-17 13:52:45 2019-12-17 14:06:12 t 1 1 201175 481 0.00 2019-12-17 13:08:18 2019-12-17 14:15:17 t 1 1 201178 637 0.00 2019-12-17 14:10:05 2019-12-17 14:18:08 t 1 1 201180 611 0.00 2019-12-17 14:18:08 2019-12-17 14:19:59 t 1 1 201181 637 0.00 2019-12-17 14:18:15 2019-12-17 14:21:15 t 1 1 201182 633 0.00 2019-12-17 14:13:37 2019-12-17 14:22:27 t 1 1 201193 675 0.00 2019-12-17 14:26:40 2019-12-17 14:33:40 t 1 1 201194 562 0.00 2019-12-17 14:34:05 2019-12-17 14:34:39 t 1 1 201196 687 0.00 2019-12-17 14:17:49 2019-12-17 14:36:11 t 1 1 201199 675 0.00 2019-12-17 14:37:05 2019-12-17 14:41:47 t 1 1 201201 687 0.00 2019-12-17 14:36:11 2019-12-17 14:43:55 t 1 1 201203 611 0.00 2019-12-17 14:36:28 2019-12-17 14:44:19 t 1 1 201205 709 0.00 2019-12-17 14:30:45 2019-12-17 14:46:29 t 1 1 201208 551 0.00 2019-12-17 14:01:07 2019-12-17 14:47:51 t 1 1 201211 633 0.00 2019-12-17 14:35:01 2019-12-17 14:48:04 t 1 1 201213 734 0.00 2019-12-17 14:32:46 2019-12-17 14:51:00 t 1 1 201214 481 0.00 2019-12-17 14:26:11 2019-12-17 14:51:46 t 1 1 201216 562 0.00 2019-12-17 14:51:50 2019-12-17 14:51:57 t 1 1 201217 611 0.00 2019-12-17 14:44:19 2019-12-17 14:53:04 t 1 1 201221 562 0.00 2019-12-17 14:54:00 2019-12-17 14:54:45 t 1 1 201224 485 0.00 2019-12-17 14:55:24 2019-12-17 14:56:34 t 1 1 201227 516 0.00 2019-12-17 14:56:01 2019-12-17 14:58:11 t 1 1 201231 633 0.00 2019-12-17 14:48:04 2019-12-17 15:00:14 t 1 1 201232 481 0.00 2019-12-17 14:58:57 2019-12-17 15:05:58 t 1 1 201233 694 0.00 2019-12-17 14:47:33 2019-12-17 15:06:32 t 1 1 201234 485 0.00 2019-12-17 14:57:05 2019-12-17 15:06:43 t 1 1 201236 514 0.00 2019-12-17 14:58:43 2019-12-17 15:07:15 t 1 1 201241 679 0.00 2019-12-17 15:09:42 2019-12-17 15:10:51 t 1 1 200886 581 0.00 2019-12-17 10:03:54 2019-12-17 10:05:50 t 1 1 200888 581 0.00 2019-12-17 10:06:24 2019-12-17 10:06:58 t 1 1 200889 685 0.00 2019-12-17 10:06:50 2019-12-17 10:07:08 t 1 1 200895 503 0.00 2019-12-17 10:06:38 2019-12-17 10:09:46 t 1 1 200897 562 0.00 2019-12-17 10:03:32 2019-12-17 10:11:45 t 1 1 200898 685 0.00 2019-12-17 10:09:10 2019-12-17 10:14:57 t 1 1 200899 685 0.00 2019-12-17 10:15:27 2019-12-17 10:15:33 t 1 1 200900 679 0.00 2019-12-17 10:13:16 2019-12-17 10:16:51 t 1 1 200903 581 0.00 2019-12-17 10:10:50 2019-12-17 10:18:00 t 1 1 200909 637 0.00 2019-12-17 10:18:13 2019-12-17 10:23:00 t 1 1 200911 615 0.00 2019-12-17 09:31:59 2019-12-17 10:23:56 t 1 1 200914 685 0.00 2019-12-17 10:25:12 2019-12-17 10:25:18 t 1 1 200917 637 0.00 2019-12-17 10:23:33 2019-12-17 10:26:36 t 1 1 200919 685 0.00 2019-12-17 10:27:28 2019-12-17 10:27:53 t 1 1 200920 503 0.00 2019-12-17 10:09:46 2019-12-17 10:28:18 t 1 1 200922 615 0.00 2019-12-17 10:23:56 2019-12-17 10:30:37 t 1 1 200924 611 0.00 2019-12-17 10:21:12 2019-12-17 10:33:27 t 1 1 200925 631 0.00 2019-12-17 10:31:16 2019-12-17 10:34:52 t 1 1 200927 673 0.00 2019-12-17 10:20:01 2019-12-17 10:35:58 t 1 1 200928 581 0.00 2019-12-17 10:26:43 2019-12-17 10:36:19 t 1 1 200929 685 0.00 2019-12-17 10:36:42 2019-12-17 10:37:43 t 1 1 200931 685 0.00 2019-12-17 10:38:24 2019-12-17 10:38:34 t 1 1 200932 685 0.00 2019-12-17 10:38:48 2019-12-17 10:40:30 t 1 1 200936 724 0.00 2019-12-17 10:40:24 2019-12-17 10:42:07 t 1 1 200939 685 0.00 2019-12-17 10:43:10 2019-12-17 10:44:06 t 1 1 200940 685 0.00 2019-12-17 10:44:18 2019-12-17 10:44:31 t 1 1 200943 685 0.00 2019-12-17 10:48:03 2019-12-17 10:48:24 t 1 1 200944 734 0.00 2019-12-17 10:47:52 2019-12-17 10:48:49 t 1 1 200945 685 0.00 2019-12-17 10:48:41 2019-12-17 10:49:21 t 1 1 200950 637 0.00 2019-12-17 10:36:18 2019-12-17 10:50:49 t 1 1 200960 685 0.00 2019-12-17 10:55:31 2019-12-17 10:56:24 t 1 1 200976 734 0.00 2019-12-17 10:58:20 2019-12-17 11:12:13 t 1 1 200977 724 0.00 2019-12-17 11:11:46 2019-12-17 11:12:23 t 1 1 200981 724 0.00 2019-12-17 11:12:51 2019-12-17 11:13:10 t 1 1 200983 615 0.00 2019-12-17 11:07:04 2019-12-17 11:13:42 t 1 1 200984 724 0.00 2019-12-17 11:13:22 2019-12-17 11:13:48 t 1 1 200988 724 0.00 2019-12-17 11:14:36 2019-12-17 11:14:49 t 1 1 200992 724 0.00 2019-12-17 11:15:26 2019-12-17 11:15:49 t 1 1 200996 724 0.00 2019-12-17 11:16:43 2019-12-17 11:16:59 t 1 1 200997 724 0.00 2019-12-17 11:16:58 2019-12-17 11:17:12 t 1 1 201002 724 0.00 2019-12-17 11:18:22 2019-12-17 11:18:38 t 1 1 201004 564 0.00 2019-12-17 09:58:56 2019-12-17 11:19:04 t 1 1 201005 724 0.00 2019-12-17 11:18:49 2019-12-17 11:19:07 t 1 1 201009 724 0.00 2019-12-17 11:19:33 2019-12-17 11:19:45 t 1 1 201021 724 0.00 2019-12-17 11:20:01 2019-12-17 11:34:39 t 1 1 201025 637 0.00 2019-12-17 11:11:48 2019-12-17 11:40:23 t 1 1 201026 750 0.00 2019-12-17 11:22:20 2019-12-17 11:41:16 t 1 1 201029 551 0.00 2019-12-17 11:38:29 2019-12-17 11:44:59 t 1 1 201034 724 0.00 2019-12-17 11:43:37 2019-12-17 11:52:58 t 1 1 201038 551 0.00 2019-12-17 11:44:59 2019-12-17 11:55:44 t 1 1 201039 724 0.00 2019-12-17 11:53:05 2019-12-17 12:01:23 t 1 1 201040 675 0.00 2019-12-17 12:01:43 2019-12-17 12:03:56 t 1 1 201043 503 0.00 2019-12-17 12:07:39 2019-12-17 12:12:17 t 1 1 201047 483 0.00 2019-12-17 12:10:58 2019-12-17 12:18:00 t 1 1 201048 637 0.00 2019-12-17 11:50:15 2019-12-17 12:18:45 t 1 1 201049 637 0.00 2019-12-17 12:18:56 2019-12-17 12:22:38 t 1 1 201058 734 0.00 2019-12-17 12:32:41 2019-12-17 12:35:00 t 1 1 201060 562 0.00 2019-12-17 12:29:00 2019-12-17 12:38:07 t 1 1 201062 635 0.00 2019-12-17 11:39:48 2019-12-17 12:41:19 t 1 1 201066 637 0.00 2019-12-17 12:31:24 2019-12-17 12:45:05 t 1 1 201067 483 0.00 2019-12-17 12:44:40 2019-12-17 12:45:24 t 1 1 201069 562 0.00 2019-12-17 12:44:29 2019-12-17 12:46:53 t 1 1 201070 667 0.00 2019-12-17 12:41:50 2019-12-17 12:48:26 t 1 1 201073 562 0.00 2019-12-17 12:47:14 2019-12-17 12:49:30 t 1 1 201076 581 0.00 2019-12-17 12:53:20 2019-12-17 12:58:09 t 1 1 201079 687 0.00 2019-12-17 12:47:03 2019-12-17 12:59:38 t 1 1 201080 637 0.00 2019-12-17 12:45:21 2019-12-17 13:00:36 t 1 1 201083 581 0.00 2019-12-17 13:04:18 2019-12-17 13:04:40 t 1 1 201087 562 0.00 2019-12-17 12:50:13 2019-12-17 13:06:27 t 1 1 201089 637 0.00 2019-12-17 13:00:36 2019-12-17 13:07:41 t 1 1 201091 581 0.00 2019-12-17 13:08:45 2019-12-17 13:08:59 t 1 1 201097 667 0.00 2019-12-17 13:11:45 2019-12-17 13:11:54 t 1 1 201099 581 0.00 2019-12-17 13:14:59 2019-12-17 13:15:21 t 1 1 201101 516 0.00 2019-12-17 13:08:45 2019-12-17 13:17:24 t 1 1 201102 675 0.00 2019-12-17 13:14:25 2019-12-17 13:17:48 t 1 1 201103 667 0.00 2019-12-17 13:19:19 2019-12-17 13:19:27 t 1 1 201106 581 0.00 2019-12-17 13:17:37 2019-12-17 13:19:43 t 1 1 201111 591 0.00 2019-12-17 12:13:04 2019-12-17 13:27:19 t 1 1 201114 694 0.00 2019-12-17 11:54:52 2019-12-17 13:28:25 t 1 1 201115 673 0.00 2019-12-17 13:20:18 2019-12-17 13:28:56 t 1 1 201117 691 0.00 2019-12-17 13:30:46 2019-12-17 13:31:05 t 1 1 201120 691 0.00 2019-12-17 13:31:05 2019-12-17 13:31:43 t 1 1 201121 691 0.00 2019-12-17 13:31:43 2019-12-17 13:32:09 t 1 1 201127 691 0.00 2019-12-17 13:36:46 2019-12-17 13:37:09 t 1 1 201130 566 0.00 2019-12-17 13:24:13 2019-12-17 13:38:19 t 1 1 201136 691 0.00 2019-12-17 13:40:00 2019-12-17 13:41:08 t 1 1 201137 667 0.00 2019-12-17 13:42:08 2019-12-17 13:42:10 t 1 1 201140 689 0.00 2019-12-17 13:33:43 2019-12-17 13:44:49 t 1 1 201141 691 0.00 2019-12-17 13:45:20 2019-12-17 13:45:54 t 1 1 201143 691 0.00 2019-12-17 13:45:54 2019-12-17 13:47:02 t 1 1 201149 667 0.00 2019-12-17 13:45:43 2019-12-17 13:51:29 t 1 1 201150 679 0.00 2019-12-17 13:38:22 2019-12-17 13:52:45 t 1 1 201152 562 0.00 2019-12-17 13:55:02 2019-12-17 13:57:27 t 1 1 201154 562 0.00 2019-12-17 13:57:35 2019-12-17 13:58:00 t 1 1 201160 637 0.00 2019-12-17 13:58:23 2019-12-17 14:01:59 t 1 1 201161 689 0.00 2019-12-17 13:51:30 2019-12-17 14:02:42 t 1 1 201163 689 0.00 2019-12-17 14:03:59 2019-12-17 14:04:21 t 1 1 201164 689 0.00 2019-12-17 14:04:43 2019-12-17 14:04:54 t 1 1 201168 673 0.00 2019-12-17 14:04:07 2019-12-17 14:07:05 t 1 1 201170 707 0.00 2019-12-17 13:49:22 2019-12-17 14:08:32 t 1 1 201173 679 0.00 2019-12-17 14:06:09 2019-12-17 14:10:57 t 1 1 201176 562 0.00 2019-12-17 14:15:01 2019-12-17 14:15:27 t 1 1 201183 637 0.00 2019-12-17 14:21:28 2019-12-17 14:22:54 t 1 1 201186 562 0.00 2019-12-17 14:25:44 2019-12-17 14:26:24 t 1 1 201188 709 0.00 2019-12-17 14:26:53 2019-12-17 14:27:53 t 1 1 201192 637 0.00 2019-12-17 14:28:53 2019-12-17 14:33:10 t 1 1 201197 611 0.00 2019-12-17 14:31:38 2019-12-17 14:36:28 t 1 1 200890 581 0.00 2019-12-17 10:07:27 2019-12-17 10:07:39 t 1 1 200892 685 0.00 2019-12-17 10:07:08 2019-12-17 10:07:58 t 1 1 200893 581 0.00 2019-12-17 10:08:03 2019-12-17 10:08:05 t 1 1 200894 685 0.00 2019-12-17 10:08:02 2019-12-17 10:09:03 t 1 1 200896 581 0.00 2019-12-17 10:09:52 2019-12-17 10:09:54 t 1 1 200901 685 0.00 2019-12-17 10:16:35 2019-12-17 10:16:53 t 1 1 200905 685 0.00 2019-12-17 10:16:52 2019-12-17 10:18:41 t 1 1 200907 685 0.00 2019-12-17 10:19:23 2019-12-17 10:21:59 t 1 1 200908 685 0.00 2019-12-17 10:22:52 2019-12-17 10:22:53 t 1 1 200913 591 0.00 2019-12-17 09:33:19 2019-12-17 10:24:52 t 1 1 200915 685 0.00 2019-12-17 10:25:23 2019-12-17 10:25:29 t 1 1 200916 685 0.00 2019-12-17 10:25:58 2019-12-17 10:26:24 t 1 1 200930 685 0.00 2019-12-17 10:37:51 2019-12-17 10:37:57 t 1 1 200933 685 0.00 2019-12-17 10:39:39 2019-12-17 10:41:16 t 1 1 200935 615 0.00 2019-12-17 10:30:37 2019-12-17 10:41:49 t 1 1 200937 685 0.00 2019-12-17 10:41:23 2019-12-17 10:42:30 t 1 1 200938 685 0.00 2019-12-17 10:42:40 2019-12-17 10:43:02 t 1 1 200941 685 0.00 2019-12-17 10:45:57 2019-12-17 10:46:57 t 1 1 200942 734 0.00 2019-12-17 09:37:18 2019-12-17 10:47:53 t 1 1 200946 685 0.00 2019-12-17 10:49:20 2019-12-17 10:49:52 t 1 1 200947 685 0.00 2019-12-17 10:50:07 2019-12-17 10:50:13 t 1 1 200949 734 0.00 2019-12-17 10:48:49 2019-12-17 10:50:36 t 1 1 200952 685 0.00 2019-12-17 10:52:42 2019-12-17 10:52:48 t 1 1 200954 685 0.00 2019-12-17 10:53:02 2019-12-17 10:53:15 t 1 1 200956 685 0.00 2019-12-17 10:51:29 2019-12-17 10:53:50 t 1 1 200957 685 0.00 2019-12-17 10:54:16 2019-12-17 10:54:18 t 1 1 200962 685 0.00 2019-12-17 10:57:42 2019-12-17 10:57:53 t 1 1 200963 635 0.00 2019-12-17 08:31:45 2019-12-17 10:58:09 t 1 1 200966 685 0.00 2019-12-17 10:56:40 2019-12-17 10:58:32 t 1 1 200968 637 0.00 2019-12-17 10:51:04 2019-12-17 11:05:47 t 1 1 200969 675 0.00 2019-12-17 11:06:32 2019-12-17 11:07:54 t 1 1 200970 625 0.00 2019-12-17 11:05:47 2019-12-17 11:08:43 t 1 1 200972 724 0.00 2019-12-17 10:55:48 2019-12-17 11:09:43 t 1 1 200974 481 0.00 2019-12-17 10:20:47 2019-12-17 11:11:43 t 1 1 200975 724 0.00 2019-12-17 11:09:49 2019-12-17 11:11:46 t 1 1 200978 724 0.00 2019-12-17 11:12:22 2019-12-17 11:12:36 t 1 1 200982 724 0.00 2019-12-17 11:13:09 2019-12-17 11:13:22 t 1 1 200989 724 0.00 2019-12-17 11:14:49 2019-12-17 11:15:01 t 1 1 200990 724 0.00 2019-12-17 11:15:00 2019-12-17 11:15:15 t 1 1 200993 724 0.00 2019-12-17 11:15:49 2019-12-17 11:16:01 t 1 1 200994 724 0.00 2019-12-17 11:16:00 2019-12-17 11:16:19 t 1 1 200998 724 0.00 2019-12-17 11:17:10 2019-12-17 11:17:37 t 1 1 201000 724 0.00 2019-12-17 11:17:55 2019-12-17 11:18:08 t 1 1 201003 724 0.00 2019-12-17 11:18:36 2019-12-17 11:18:50 t 1 1 201006 734 0.00 2019-12-17 11:12:17 2019-12-17 11:19:11 t 1 1 201007 724 0.00 2019-12-17 11:19:05 2019-12-17 11:19:19 t 1 1 201010 724 0.00 2019-12-17 11:19:44 2019-12-17 11:20:02 t 1 1 201011 625 0.00 2019-12-17 11:19:14 2019-12-17 11:21:23 t 1 1 201013 615 0.00 2019-12-17 11:13:42 2019-12-17 11:23:11 t 1 1 201014 625 0.00 2019-12-17 11:23:32 2019-12-17 11:24:47 t 1 1 201015 514 0.00 2019-12-17 11:01:02 2019-12-17 11:25:33 t 1 1 201016 514 0.00 2019-12-17 11:25:32 2019-12-17 11:26:48 t 1 1 201018 564 0.00 2019-12-17 11:19:04 2019-12-17 11:29:34 t 1 1 201019 551 0.00 2019-12-17 11:24:15 2019-12-17 11:30:44 t 1 1 201020 615 0.00 2019-12-17 11:23:11 2019-12-17 11:31:53 t 1 1 201022 625 0.00 2019-12-17 11:24:46 2019-12-17 11:37:41 t 1 1 201023 551 0.00 2019-12-17 11:30:44 2019-12-17 11:38:29 t 1 1 201027 625 0.00 2019-12-17 11:39:10 2019-12-17 11:41:20 t 1 1 201028 615 0.00 2019-12-17 11:31:53 2019-12-17 11:44:18 t 1 1 201030 707 0.00 2019-12-17 10:28:57 2019-12-17 11:46:59 t 1 1 201033 637 0.00 2019-12-17 11:41:00 2019-12-17 11:48:46 t 1 1 201035 564 0.00 2019-12-17 11:29:34 2019-12-17 11:54:07 t 1 1 201037 734 0.00 2019-12-17 11:53:28 2019-12-17 11:55:42 t 1 1 201041 625 0.00 2019-12-17 11:41:19 2019-12-17 12:06:56 t 1 1 201045 591 0.00 2019-12-17 10:24:52 2019-12-17 12:13:04 t 1 1 201051 581 0.00 2019-12-17 12:24:33 2019-12-17 12:25:37 t 1 1 201052 562 0.00 2019-12-17 12:18:36 2019-12-17 12:26:21 t 1 1 201054 562 0.00 2019-12-17 12:26:21 2019-12-17 12:28:40 t 1 1 201055 637 0.00 2019-12-17 12:29:20 2019-12-17 12:31:18 t 1 1 201057 581 0.00 2019-12-17 12:32:53 2019-12-17 12:33:05 t 1 1 201059 724 0.00 2019-12-17 12:01:29 2019-12-17 12:35:22 t 1 1 201064 562 0.00 2019-12-17 12:40:58 2019-12-17 12:44:20 t 1 1 201071 711 0.00 2019-12-17 11:54:38 2019-12-17 12:49:09 t 1 1 201074 667 0.00 2019-12-17 12:54:03 2019-12-17 12:54:24 t 1 1 201077 581 0.00 2019-12-17 12:58:17 2019-12-17 12:58:18 t 1 1 201078 566 0.00 2019-12-17 12:49:13 2019-12-17 12:59:38 t 1 1 201082 611 0.00 2019-12-17 13:01:04 2019-12-17 13:02:50 t 1 1 201085 687 0.00 2019-12-17 13:01:12 2019-12-17 13:04:47 t 1 1 201086 689 0.00 2019-12-17 13:02:54 2019-12-17 13:06:06 t 1 1 201090 481 0.00 2019-12-17 11:14:13 2019-12-17 13:08:18 t 1 1 201092 637 0.00 2019-12-17 13:07:48 2019-12-17 13:09:07 t 1 1 201093 581 0.00 2019-12-17 13:09:08 2019-12-17 13:09:30 t 1 1 201096 687 0.00 2019-12-17 13:06:20 2019-12-17 13:11:45 t 1 1 201098 637 0.00 2019-12-17 13:09:15 2019-12-17 13:14:23 t 1 1 201100 724 0.00 2019-12-17 13:00:50 2019-12-17 13:17:24 t 1 1 201105 551 0.00 2019-12-17 11:55:44 2019-12-17 13:19:42 t 1 1 201110 691 0.00 2019-12-17 13:26:09 2019-12-17 13:27:08 t 1 1 201113 562 0.00 2019-12-17 13:07:53 2019-12-17 13:27:47 t 1 1 201116 691 0.00 2019-12-17 13:27:08 2019-12-17 13:29:34 t 1 1 201118 516 0.00 2019-12-17 13:24:12 2019-12-17 13:31:24 t 1 1 201123 691 0.00 2019-12-17 13:32:09 2019-12-17 13:33:10 t 1 1 201125 691 0.00 2019-12-17 13:33:37 2019-12-17 13:34:12 t 1 1 201128 691 0.00 2019-12-17 13:37:08 2019-12-17 13:37:52 t 1 1 201129 562 0.00 2019-12-17 13:27:47 2019-12-17 13:38:17 t 1 1 201131 679 0.00 2019-12-17 13:16:14 2019-12-17 13:38:22 t 1 1 201132 691 0.00 2019-12-17 13:37:52 2019-12-17 13:38:40 t 1 1 201133 691 0.00 2019-12-17 13:38:40 2019-12-17 13:39:23 t 1 1 201139 637 0.00 2019-12-17 13:19:02 2019-12-17 13:44:38 t 1 1 201142 566 0.00 2019-12-17 13:38:19 2019-12-17 13:46:14 t 1 1 201146 660 0.00 2019-12-17 13:05:14 2019-12-17 13:48:56 t 1 1 201148 562 0.00 2019-12-17 13:51:10 2019-12-17 13:51:20 t 1 1 201153 637 0.00 2019-12-17 13:50:52 2019-12-17 13:57:48 t 1 1 201159 551 0.00 2019-12-17 14:00:08 2019-12-17 14:01:51 t 1 1 201162 689 0.00 2019-12-17 14:03:24 2019-12-17 14:03:42 t 1 1 201167 675 0.00 2019-12-17 14:04:38 2019-12-17 14:06:23 t 1 1 201169 562 0.00 2019-12-17 14:07:57 2019-12-17 14:08:08 t 1 1 201171 637 0.00 2019-12-17 14:03:15 2019-12-17 14:09:58 t 1 1 201172 689 0.00 2019-12-17 14:05:19 2019-12-17 14:10:44 t 1 1 201174 633 0.00 2019-12-17 14:02:27 2019-12-17 14:13:37 t 1 1 201177 687 0.00 2019-12-17 13:58:48 2019-12-17 14:16:42 t 1 1 201179 611 0.00 2019-12-17 13:59:18 2019-12-17 14:18:08 t 1 1 201184 611 0.00 2019-12-17 14:19:59 2019-12-17 14:25:05 t 1 1 201185 481 0.00 2019-12-17 14:15:17 2019-12-17 14:26:14 t 1 1 201187 637 0.00 2019-12-17 14:23:33 2019-12-17 14:27:48 t 1 1 201189 730 0.00 2019-12-17 14:25:19 2019-12-17 14:29:02 t 1 1 201190 709 0.00 2019-12-17 14:27:58 2019-12-17 14:30:45 t 1 1 201191 611 0.00 2019-12-17 14:27:21 2019-12-17 14:31:38 t 1 1 201195 633 0.00 2019-12-17 14:22:27 2019-12-17 14:35:01 t 1 1 201198 637 0.00 2019-12-17 14:35:42 2019-12-17 14:41:35 t 1 1 201202 562 0.00 2019-12-17 14:43:08 2019-12-17 14:43:57 t 1 1 201206 675 0.00 2019-12-17 14:42:28 2019-12-17 14:46:50 t 1 1 201209 581 0.00 2019-12-17 14:36:58 2019-12-17 14:47:53 t 1 1 201212 562 0.00 2019-12-17 14:47:05 2019-12-17 14:48:35 t 1 1 201219 679 0.00 2019-12-17 14:37:38 2019-12-17 14:53:46 t 1 1 201222 562 0.00 2019-12-17 14:54:57 2019-12-17 14:55:08 t 1 1 201225 611 0.00 2019-12-17 14:53:04 2019-12-17 14:57:03 t 1 1 201228 514 0.00 2019-12-17 14:32:36 2019-12-17 14:58:43 t 1 1 201229 481 0.00 2019-12-17 14:53:25 2019-12-17 14:58:59 t 1 1 201230 562 0.00 2019-12-17 14:59:06 2019-12-17 14:59:22 t 1 1 201235 562 0.00 2019-12-17 15:06:29 2019-12-17 15:06:51 t 1 1 201237 734 0.00 2019-12-17 15:01:16 2019-12-17 15:08:49 t 1 1 201238 679 0.00 2019-12-17 14:53:46 2019-12-17 15:09:23 t 1 1 201240 679 0.00 2019-12-17 15:10:09 2019-12-17 15:10:30 t 1 1 201245 637 0.00 2019-12-17 14:57:08 2019-12-17 15:13:45 t 1 1 201247 679 0.00 2019-12-17 15:18:14 2019-12-17 15:18:33 t 1 1 201249 679 0.00 2019-12-17 15:19:15 2019-12-17 15:19:46 t 1 1 201258 562 0.00 2019-12-17 15:10:23 2019-12-17 15:23:40 t 1 1 201263 633 0.00 2019-12-17 15:19:51 2019-12-17 15:29:26 t 1 1 201267 562 0.00 2019-12-17 15:25:54 2019-12-17 15:33:50 t 1 1 201270 562 0.00 2019-12-17 15:40:49 2019-12-17 15:41:19 t 1 1 201274 562 0.00 2019-12-17 15:47:54 2019-12-17 15:48:45 t 1 1 201280 615 0.00 2019-12-17 15:49:11 2019-12-17 15:53:20 t 1 1 201288 633 0.00 2019-12-17 15:53:01 2019-12-17 16:02:10 t 1 1 201294 633 0.00 2019-12-17 16:02:10 2019-12-17 16:10:46 t 1 1 201295 679 0.00 2019-12-17 16:10:33 2019-12-17 16:11:17 t 1 1 201301 637 0.00 2019-12-17 16:07:01 2019-12-17 16:18:46 t 1 1 201303 459 0.00 2019-12-17 16:14:27 2019-12-17 16:20:31 t 1 2 201306 562 0.00 2019-12-17 16:23:15 2019-12-17 16:23:26 t 1 1 201310 485 0.00 2019-12-17 16:16:49 2019-12-17 16:25:32 t 1 1 201311 551 0.00 2019-12-17 16:19:48 2019-12-17 16:26:14 t 1 1 201317 516 0.00 2019-12-17 16:25:10 2019-12-17 16:34:42 t 1 1 201320 675 0.00 2019-12-17 16:33:01 2019-12-17 16:36:09 t 1 1 201322 660 0.00 2019-12-17 16:32:20 2019-12-17 16:38:43 t 1 1 201325 483 0.00 2019-12-17 16:35:02 2019-12-17 16:40:07 t 1 1 201329 750 0.00 2019-12-17 16:33:28 2019-12-17 16:47:07 t 1 1 201331 675 0.00 2019-12-17 16:40:56 2019-12-17 16:47:50 t 1 1 201338 675 0.00 2019-12-17 16:55:22 2019-12-17 17:02:03 t 1 1 201340 734 0.00 2019-12-17 16:04:23 2019-12-17 17:04:25 t 1 1 201341 750 0.00 2019-12-17 16:47:07 2019-12-17 17:05:19 t 1 1 201351 611 0.00 2019-12-17 17:12:15 2019-12-17 17:15:53 t 1 1 201353 667 0.00 2019-12-17 17:15:18 2019-12-17 17:16:24 t 1 2 201360 562 0.00 2019-12-17 17:25:42 2019-12-17 17:27:12 t 1 1 201364 675 0.00 2019-12-17 17:28:28 2019-12-17 17:32:40 t 1 1 201367 545 0.00 2019-12-17 17:24:43 2019-12-17 17:37:11 t 1 1 201369 562 0.00 2019-12-17 17:37:04 2019-12-17 17:37:23 t 1 1 201371 581 0.00 2019-12-17 17:33:04 2019-12-17 17:41:50 t 1 1 201372 615 0.00 2019-12-17 17:28:55 2019-12-17 17:42:15 t 1 1 201374 551 0.00 2019-12-17 17:37:14 2019-12-17 17:44:01 t 1 1 201375 581 0.00 2019-12-17 17:41:50 2019-12-17 17:44:36 t 1 1 201377 750 0.00 2019-12-17 17:43:08 2019-12-17 17:45:02 t 1 1 201378 562 0.00 2019-12-17 17:40:15 2019-12-17 17:45:20 t 1 1 201379 720 0.00 2019-12-17 16:02:57 2019-12-17 17:47:09 t 1 1 201382 544 0.00 2019-12-17 17:40:42 2019-12-17 17:51:00 t 1 1 201385 622 0.00 2019-12-17 17:45:02 2019-12-17 17:54:42 t 1 1 201386 510 0.00 2019-12-17 17:51:41 2019-12-17 17:55:28 t 1 1 201388 503 0.00 2019-12-17 17:53:02 2019-12-17 17:58:13 t 1 1 201389 615 0.00 2019-12-17 17:51:32 2019-12-17 18:00:13 t 1 1 201390 675 0.00 2019-12-17 17:50:37 2019-12-17 18:00:44 t 1 1 201394 562 0.00 2019-12-17 18:01:55 2019-12-17 18:02:53 t 1 1 201396 591 0.00 2019-12-17 16:58:14 2019-12-17 18:03:38 t 1 1 201398 551 0.00 2019-12-17 17:56:32 2019-12-17 18:05:03 t 1 1 201399 637 0.00 2019-12-17 17:31:13 2019-12-17 18:05:46 t 1 1 201400 544 0.00 2019-12-17 18:03:15 2019-12-17 18:06:21 t 1 1 201406 633 0.00 2019-12-17 17:30:00 2019-12-17 18:12:37 t 1 1 201410 562 0.00 2019-12-17 18:13:38 2019-12-17 18:14:20 t 1 1 201417 696 0.00 2019-12-17 18:14:13 2019-12-17 18:20:54 t 1 1 201420 562 0.00 2019-12-17 18:23:14 2019-12-17 18:24:35 t 1 1 201425 615 0.00 2019-12-17 18:23:36 2019-12-17 18:28:28 t 1 1 201429 687 0.00 2019-12-17 17:48:32 2019-12-17 18:31:32 t 1 1 201432 673 0.00 2019-12-17 18:09:13 2019-12-17 18:35:48 t 1 1 201434 622 0.00 2019-12-17 18:27:22 2019-12-17 18:36:59 t 1 1 201438 551 0.00 2019-12-17 18:27:33 2019-12-17 18:41:09 t 1 1 201444 622 0.00 2019-12-17 18:43:59 2019-12-17 18:45:49 t 1 1 201447 562 0.00 2019-12-17 18:46:31 2019-12-17 18:49:48 t 1 1 201450 615 0.00 2019-12-17 18:49:00 2019-12-17 18:51:31 t 1 1 201463 637 0.00 2019-12-17 18:57:34 2019-12-17 19:02:48 t 1 1 201468 673 0.00 2019-12-17 18:47:41 2019-12-17 19:08:13 t 1 1 201470 615 0.00 2019-12-17 19:01:06 2019-12-17 19:08:39 t 1 1 201476 637 0.00 2019-12-17 19:09:04 2019-12-17 19:13:34 t 1 1 201477 551 0.00 2019-12-17 19:06:08 2019-12-17 19:14:05 t 1 1 201479 562 0.00 2019-12-17 19:13:56 2019-12-17 19:15:51 t 1 1 201483 562 0.00 2019-12-17 19:18:50 2019-12-17 19:20:39 t 1 1 201485 551 0.00 2019-12-17 19:14:05 2019-12-17 19:20:49 t 1 1 201487 591 0.00 2019-12-17 18:03:38 2019-12-17 19:24:41 t 1 1 201488 687 0.00 2019-12-17 19:08:26 2019-12-17 19:25:10 t 1 1 201494 562 0.00 2019-12-17 19:36:07 2019-12-17 19:36:30 t 1 1 201495 562 0.00 2019-12-17 19:37:47 2019-12-17 19:37:58 t 1 1 201501 591 0.00 2019-12-17 19:24:41 2019-12-17 19:43:27 t 1 1 201505 633 0.00 2019-12-17 19:15:36 2019-12-17 19:45:42 t 1 1 201507 562 0.00 2019-12-17 19:47:41 2019-12-17 19:48:11 t 1 1 201509 545 0.00 2019-12-17 19:45:18 2019-12-17 19:49:39 t 1 1 201514 622 0.00 2019-12-17 19:22:29 2019-12-17 19:52:35 t 1 1 201515 660 0.00 2019-12-17 19:44:17 2019-12-17 19:55:57 t 1 1 201517 679 0.00 2019-12-17 19:56:52 2019-12-17 19:56:57 t 1 1 201200 635 0.00 2019-12-17 14:06:03 2019-12-17 14:43:55 t 1 1 201204 562 0.00 2019-12-17 14:46:19 2019-12-17 14:46:25 t 1 1 201207 694 0.00 2019-12-17 13:28:33 2019-12-17 14:47:49 t 1 1 201210 516 0.00 2019-12-17 14:42:49 2019-12-17 14:47:59 t 1 1 201215 562 0.00 2019-12-17 14:50:50 2019-12-17 14:51:51 t 1 1 201218 481 0.00 2019-12-17 14:51:45 2019-12-17 14:53:26 t 1 1 201220 485 0.00 2019-12-17 14:52:11 2019-12-17 14:54:15 t 1 1 201223 637 0.00 2019-12-17 14:43:33 2019-12-17 14:55:34 t 1 1 201226 637 0.00 2019-12-17 14:55:33 2019-12-17 14:57:10 t 1 1 201239 516 0.00 2019-12-17 15:09:01 2019-12-17 15:10:19 t 1 1 201248 696 0.00 2019-12-17 14:56:03 2019-12-17 15:19:03 t 1 1 201250 633 0.00 2019-12-17 15:11:30 2019-12-17 15:19:51 t 1 1 201251 545 0.00 2019-12-17 13:53:24 2019-12-17 15:20:11 t 1 1 201252 545 0.00 2019-12-17 15:20:11 2019-12-17 15:20:57 t 1 1 201255 679 0.00 2019-12-17 15:21:56 2019-12-17 15:22:04 t 1 1 201256 738 0.00 2019-12-17 15:14:03 2019-12-17 15:22:58 t 1 1 201257 679 0.00 2019-12-17 15:22:21 2019-12-17 15:23:19 t 1 1 201259 679 0.00 2019-12-17 15:23:26 2019-12-17 15:23:53 t 1 1 201261 734 0.00 2019-12-17 15:10:46 2019-12-17 15:25:26 t 1 1 201265 696 0.00 2019-12-17 15:19:03 2019-12-17 15:33:02 t 1 1 201266 687 0.00 2019-12-17 14:57:41 2019-12-17 15:33:10 t 1 1 201271 498 0.00 2019-12-17 14:54:08 2019-12-17 15:44:44 t 1 2 201277 675 0.00 2019-12-17 15:46:48 2019-12-17 15:50:20 t 1 1 201278 633 0.00 2019-12-17 15:40:47 2019-12-17 15:53:01 t 1 1 201282 675 0.00 2019-12-17 15:51:38 2019-12-17 15:55:53 t 1 1 201284 562 0.00 2019-12-17 15:58:26 2019-12-17 15:58:37 t 1 1 201287 637 0.00 2019-12-17 15:19:30 2019-12-17 16:01:36 t 1 1 201289 459 0.00 2019-12-17 16:00:34 2019-12-17 16:04:39 t 1 2 201296 673 0.00 2019-12-17 16:09:47 2019-12-17 16:11:32 t 1 1 201297 687 0.00 2019-12-17 15:33:10 2019-12-17 16:12:51 t 1 1 201305 633 0.00 2019-12-17 16:10:46 2019-12-17 16:23:11 t 1 1 201308 687 0.00 2019-12-17 16:13:24 2019-12-17 16:24:47 t 1 1 201313 687 0.00 2019-12-17 16:27:46 2019-12-17 16:27:46 t 1 1 201314 660 0.00 2019-12-17 15:31:20 2019-12-17 16:32:20 t 1 1 201318 483 0.00 2019-12-17 16:27:45 2019-12-17 16:35:02 t 1 1 201319 673 0.00 2019-12-17 16:34:13 2019-12-17 16:35:21 t 1 1 201323 615 0.00 2019-12-17 16:27:07 2019-12-17 16:39:03 t 1 1 201324 637 0.00 2019-12-17 16:23:37 2019-12-17 16:39:46 t 1 1 201327 538 0.00 2019-12-17 10:34:49 2019-12-17 16:43:30 t 1 1 201332 711 0.00 2019-12-17 16:31:19 2019-12-17 16:48:01 t 1 1 201334 656 0.00 2019-12-17 14:55:19 2019-12-17 16:49:13 t 1 1 201339 687 0.00 2019-12-17 16:55:35 2019-12-17 17:03:52 t 1 1 201342 562 0.00 2019-12-17 16:53:09 2019-12-17 17:05:45 t 1 1 201343 581 0.00 2019-12-17 16:51:10 2019-12-17 17:06:47 t 1 1 201345 562 0.00 2019-12-17 17:06:01 2019-12-17 17:10:40 t 1 1 201346 615 0.00 2019-12-17 17:08:21 2019-12-17 17:11:09 t 1 1 201348 667 0.00 2019-12-17 17:12:02 2019-12-17 17:13:04 t 1 2 201349 562 0.00 2019-12-17 17:13:38 2019-12-17 17:14:58 t 1 1 201352 675 0.00 2019-12-17 17:10:44 2019-12-17 17:16:11 t 1 1 201355 615 0.00 2019-12-17 17:16:17 2019-12-17 17:18:00 t 1 1 201356 637 0.00 2019-12-17 16:40:24 2019-12-17 17:18:17 t 1 1 201357 611 0.00 2019-12-17 17:15:53 2019-12-17 17:19:19 t 1 1 201362 637 0.00 2019-12-17 17:19:12 2019-12-17 17:31:13 t 1 1 201363 514 0.00 2019-12-17 15:07:15 2019-12-17 17:32:12 t 1 1 201365 516 0.00 2019-12-17 17:30:14 2019-12-17 17:33:51 t 1 1 201368 551 0.00 2019-12-17 16:52:18 2019-12-17 17:37:14 t 1 1 201370 679 0.00 2019-12-17 17:35:18 2019-12-17 17:37:30 t 1 1 201376 711 0.00 2019-12-17 16:48:01 2019-12-17 17:44:44 t 1 1 201381 551 0.00 2019-12-17 17:44:01 2019-12-17 17:49:16 t 1 1 201384 562 0.00 2019-12-17 17:52:52 2019-12-17 17:53:51 t 1 1 201387 551 0.00 2019-12-17 17:49:16 2019-12-17 17:56:32 t 1 1 201392 510 0.00 2019-12-17 17:55:45 2019-12-17 18:01:36 t 1 1 201395 544 0.00 2019-12-17 17:50:59 2019-12-17 18:03:15 t 1 1 201402 514 0.00 2019-12-17 17:32:12 2019-12-17 18:10:40 t 1 1 201405 637 0.00 2019-12-17 18:05:46 2019-12-17 18:12:33 t 1 1 201409 696 0.00 2019-12-17 17:56:03 2019-12-17 18:14:13 t 1 1 201411 514 0.00 2019-12-17 18:13:21 2019-12-17 18:14:36 t 1 1 201413 562 0.00 2019-12-17 18:16:43 2019-12-17 18:18:18 t 1 1 201415 551 0.00 2019-12-17 18:13:18 2019-12-17 18:19:18 t 1 1 201418 637 0.00 2019-12-17 18:12:33 2019-12-17 18:22:18 t 1 1 201421 503 0.00 2019-12-17 17:58:13 2019-12-17 18:24:50 t 1 1 201424 551 0.00 2019-12-17 18:19:18 2019-12-17 18:27:33 t 1 1 201427 734 0.00 2019-12-17 18:25:45 2019-12-17 18:29:51 t 1 1 201430 562 0.00 2019-12-17 18:27:55 2019-12-17 18:32:21 t 1 1 201433 562 0.00 2019-12-17 18:34:10 2019-12-17 18:35:51 t 1 1 201435 498 0.00 2019-12-17 17:57:53 2019-12-17 18:39:08 t 1 2 201436 544 0.00 2019-12-17 18:39:30 2019-12-17 18:40:03 t 1 1 201437 675 0.00 2019-12-17 18:31:40 2019-12-17 18:40:46 t 1 1 201439 615 0.00 2019-12-17 18:38:20 2019-12-17 18:42:03 t 1 1 201440 611 0.00 2019-12-17 18:42:26 2019-12-17 18:43:26 t 1 1 201443 637 0.00 2019-12-17 18:32:45 2019-12-17 18:45:18 t 1 1 201446 611 0.00 2019-12-17 18:43:25 2019-12-17 18:49:02 t 1 1 201451 637 0.00 2019-12-17 18:45:18 2019-12-17 18:52:03 t 1 1 201454 615 0.00 2019-12-17 18:52:33 2019-12-17 18:54:29 t 1 1 201455 392 0.00 2019-12-17 18:02:17 2019-12-17 18:55:08 t 1 2 201457 637 0.00 2019-12-17 18:52:03 2019-12-17 18:57:34 t 1 1 201458 633 0.00 2019-12-17 18:29:33 2019-12-17 18:59:21 t 1 1 201459 611 0.00 2019-12-17 18:55:04 2019-12-17 18:59:56 t 1 1 201462 679 0.00 2019-12-17 19:01:59 2019-12-17 19:02:33 t 1 1 201464 538 0.00 2019-12-17 17:28:54 2019-12-17 19:04:32 t 1 1 201465 551 0.00 2019-12-17 18:57:51 2019-12-17 19:06:08 t 1 1 201469 687 0.00 2019-12-17 18:55:54 2019-12-17 19:08:26 t 1 1 201471 637 0.00 2019-12-17 19:02:48 2019-12-17 19:09:04 t 1 1 201472 675 0.00 2019-12-17 19:03:46 2019-12-17 19:09:54 t 1 1 201473 562 0.00 2019-12-17 19:10:14 2019-12-17 19:11:37 t 1 1 201474 667 0.00 2019-12-17 19:11:27 2019-12-17 19:12:30 t 1 2 201478 633 0.00 2019-12-17 18:59:21 2019-12-17 19:15:36 t 1 1 201482 562 0.00 2019-12-17 19:17:59 2019-12-17 19:18:21 t 1 1 201484 637 0.00 2019-12-17 19:17:04 2019-12-17 19:20:49 t 1 1 201486 622 0.00 2019-12-17 19:17:57 2019-12-17 19:22:29 t 1 1 201490 562 0.00 2019-12-17 19:25:23 2019-12-17 19:28:13 t 1 1 201491 510 0.00 2019-12-17 18:04:29 2019-12-17 19:29:18 t 1 1 201496 724 0.00 2019-12-17 16:11:49 2019-12-17 19:38:15 t 1 1 201498 724 0.00 2019-12-17 19:38:14 2019-12-17 19:38:45 t 1 1 201499 724 0.00 2019-12-17 19:38:43 2019-12-17 19:39:09 t 1 1 201502 694 0.00 2019-12-17 19:35:34 2019-12-17 19:44:23 t 1 1 201506 562 0.00 2019-12-17 19:46:22 2019-12-17 19:46:30 t 1 1 201242 633 0.00 2019-12-17 15:00:14 2019-12-17 15:11:30 t 1 1 201243 581 0.00 2019-12-17 15:06:38 2019-12-17 15:12:31 t 1 1 201244 673 0.00 2019-12-17 14:41:37 2019-12-17 15:13:35 t 1 1 201246 679 0.00 2019-12-17 15:10:55 2019-12-17 15:17:29 t 1 1 201253 679 0.00 2019-12-17 15:20:21 2019-12-17 15:21:02 t 1 1 201254 679 0.00 2019-12-17 15:21:26 2019-12-17 15:21:37 t 1 1 201260 679 0.00 2019-12-17 15:24:59 2019-12-17 15:25:05 t 1 1 201262 679 0.00 2019-12-17 15:24:10 2019-12-17 15:25:51 t 1 1 201264 673 0.00 2019-12-17 15:17:07 2019-12-17 15:29:29 t 1 1 201268 562 0.00 2019-12-17 15:35:59 2019-12-17 15:38:53 t 1 1 201269 633 0.00 2019-12-17 15:29:26 2019-12-17 15:40:47 t 1 1 201272 675 0.00 2019-12-17 14:55:01 2019-12-17 15:44:54 t 1 1 201273 562 0.00 2019-12-17 15:43:12 2019-12-17 15:47:28 t 1 1 201275 615 0.00 2019-12-17 15:46:57 2019-12-17 15:49:06 t 1 1 201276 562 0.00 2019-12-17 15:48:58 2019-12-17 15:49:47 t 1 1 201279 562 0.00 2019-12-17 15:52:51 2019-12-17 15:53:10 t 1 1 201281 696 0.00 2019-12-17 15:50:23 2019-12-17 15:54:35 t 1 1 201283 649 0.00 2019-12-17 15:42:11 2019-12-17 15:56:00 t 1 1 201285 459 0.00 2019-12-17 15:59:04 2019-12-17 15:59:45 t 1 2 201286 696 0.00 2019-12-17 15:56:38 2019-12-17 16:01:00 t 1 1 201290 709 0.00 2019-12-17 15:15:30 2019-12-17 16:06:30 t 1 1 201291 675 0.00 2019-12-17 15:59:17 2019-12-17 16:07:29 t 1 1 201292 649 0.00 2019-12-17 16:05:46 2019-12-17 16:08:54 t 1 1 201293 562 0.00 2019-12-17 16:08:59 2019-12-17 16:09:13 t 1 1 201298 551 0.00 2019-12-17 14:50:06 2019-12-17 16:12:59 t 1 1 201299 459 0.00 2019-12-17 16:13:38 2019-12-17 16:13:43 t 1 2 201300 750 0.00 2019-12-17 12:18:04 2019-12-17 16:15:02 t 1 1 201302 551 0.00 2019-12-17 16:12:59 2019-12-17 16:19:48 t 1 1 201304 220 0.00 2019-12-17 15:58:18 2019-12-17 16:20:57 t 1 2 201307 459 0.00 2019-12-17 16:20:33 2019-12-17 16:23:39 t 1 2 201309 675 0.00 2019-12-17 16:19:56 2019-12-17 16:24:48 t 1 1 201312 687 0.00 2019-12-17 16:25:03 2019-12-17 16:27:04 t 1 1 201315 490 0.00 2019-12-17 16:26:11 2019-12-17 16:33:58 t 1 1 201316 562 0.00 2019-12-17 16:33:55 2019-12-17 16:34:18 t 1 1 201321 551 0.00 2019-12-17 16:26:14 2019-12-17 16:37:45 t 1 1 201326 562 0.00 2019-12-17 16:40:46 2019-12-17 16:41:23 t 1 1 201328 615 0.00 2019-12-17 16:39:03 2019-12-17 16:45:47 t 1 1 201330 562 0.00 2019-12-17 16:47:02 2019-12-17 16:47:17 t 1 1 201333 538 0.00 2019-12-17 16:43:30 2019-12-17 16:48:58 t 1 1 201335 551 0.00 2019-12-17 16:37:45 2019-12-17 16:52:18 t 1 1 201336 694 0.00 2019-12-17 15:06:32 2019-12-17 16:55:07 t 1 1 201337 687 0.00 2019-12-17 16:27:50 2019-12-17 16:55:35 t 1 1 201344 673 0.00 2019-12-17 16:50:20 2019-12-17 17:10:15 t 1 1 201347 673 0.00 2019-12-17 17:10:18 2019-12-17 17:11:33 t 1 1 201350 562 0.00 2019-12-17 17:15:05 2019-12-17 17:15:52 t 1 1 201354 581 0.00 2019-12-17 17:12:06 2019-12-17 17:17:42 t 1 1 201358 581 0.00 2019-12-17 17:17:49 2019-12-17 17:19:25 t 1 1 201359 562 0.00 2019-12-17 17:15:59 2019-12-17 17:21:45 t 1 1 201361 562 0.00 2019-12-17 17:28:47 2019-12-17 17:29:16 t 1 1 201366 696 0.00 2019-12-17 16:45:03 2019-12-17 17:35:22 t 1 1 201373 750 0.00 2019-12-17 17:14:39 2019-12-17 17:43:09 t 1 1 201380 545 0.00 2019-12-17 17:38:04 2019-12-17 17:48:06 t 1 1 201383 615 0.00 2019-12-17 17:42:15 2019-12-17 17:51:32 t 1 1 201391 562 0.00 2019-12-17 17:57:59 2019-12-17 18:01:31 t 1 1 201393 679 0.00 2019-12-17 17:38:58 2019-12-17 18:01:44 t 1 1 201397 510 0.00 2019-12-17 18:01:35 2019-12-17 18:04:30 t 1 1 201401 562 0.00 2019-12-17 18:03:42 2019-12-17 18:08:42 t 1 1 201403 562 0.00 2019-12-17 18:10:37 2019-12-17 18:10:48 t 1 1 201404 615 0.00 2019-12-17 18:00:13 2019-12-17 18:11:58 t 1 1 201407 514 0.00 2019-12-17 18:11:05 2019-12-17 18:13:03 t 1 1 201408 551 0.00 2019-12-17 18:05:03 2019-12-17 18:13:18 t 1 1 201412 726 0.00 2019-12-17 18:08:12 2019-12-17 18:16:22 t 1 1 201414 711 0.00 2019-12-17 17:44:44 2019-12-17 18:18:45 t 1 1 201416 562 0.00 2019-12-17 18:19:50 2019-12-17 18:20:13 t 1 1 201419 696 0.00 2019-12-17 18:21:34 2019-12-17 18:24:15 t 1 1 201422 734 0.00 2019-12-17 17:04:28 2019-12-17 18:25:45 t 1 1 201423 622 0.00 2019-12-17 17:54:42 2019-12-17 18:27:22 t 1 1 201426 633 0.00 2019-12-17 18:12:37 2019-12-17 18:29:33 t 1 1 201428 679 0.00 2019-12-17 18:30:18 2019-12-17 18:31:24 t 1 1 201431 637 0.00 2019-12-17 18:22:18 2019-12-17 18:32:45 t 1 1 201441 622 0.00 2019-12-17 18:36:59 2019-12-17 18:43:59 t 1 1 201442 562 0.00 2019-12-17 18:39:41 2019-12-17 18:44:50 t 1 1 201445 673 0.00 2019-12-17 18:46:03 2019-12-17 18:47:39 t 1 1 201448 679 0.00 2019-12-17 18:40:39 2019-12-17 18:50:12 t 1 1 201449 679 0.00 2019-12-17 18:50:42 2019-12-17 18:51:08 t 1 1 201452 687 0.00 2019-12-17 18:31:32 2019-12-17 18:52:34 t 1 1 201453 750 0.00 2019-12-17 18:03:38 2019-12-17 18:53:48 t 1 1 201456 562 0.00 2019-12-17 18:55:11 2019-12-17 18:56:49 t 1 1 201460 562 0.00 2019-12-17 18:59:32 2019-12-17 19:01:28 t 1 1 201461 707 0.00 2019-12-17 18:00:23 2019-12-17 19:02:14 t 1 1 201466 562 0.00 2019-12-17 19:06:17 2019-12-17 19:07:51 t 1 1 201467 649 0.00 2019-12-17 19:03:32 2019-12-17 19:08:09 t 1 1 201475 562 0.00 2019-12-17 19:13:10 2019-12-17 19:13:30 t 1 1 201480 637 0.00 2019-12-17 19:13:34 2019-12-17 19:17:04 t 1 1 201481 622 0.00 2019-12-17 19:11:06 2019-12-17 19:17:57 t 1 1 201489 538 0.00 2019-12-17 19:11:56 2019-12-17 19:25:46 t 1 1 201492 675 0.00 2019-12-17 19:28:39 2019-12-17 19:32:12 t 1 1 201493 694 0.00 2019-12-17 18:24:55 2019-12-17 19:35:34 t 1 1 201497 707 0.00 2019-12-17 19:02:42 2019-12-17 19:38:29 t 1 1 201500 724 0.00 2019-12-17 19:39:09 2019-12-17 19:39:12 t 1 1 201503 545 0.00 2019-12-17 19:34:32 2019-12-17 19:45:18 t 1 1 201504 562 0.00 2019-12-17 19:45:23 2019-12-17 19:45:40 t 1 1 201510 724 0.00 2019-12-17 19:42:21 2019-12-17 19:50:08 t 1 1 201512 562 0.00 2019-12-17 19:50:24 2019-12-17 19:50:30 t 1 1 201513 656 0.00 2019-12-17 16:49:13 2019-12-17 19:51:41 t 1 1 201519 679 0.00 2019-12-17 19:57:24 2019-12-17 19:57:58 t 1 1 201532 637 0.00 2019-12-17 19:20:49 2019-12-17 20:05:30 t 1 1 201534 679 0.00 2019-12-17 20:06:21 2019-12-17 20:06:48 t 1 1 201537 581 0.00 2019-12-17 19:43:08 2019-12-17 20:08:10 t 1 1 201539 734 0.00 2019-12-17 20:07:47 2019-12-17 20:09:05 t 1 1 201541 562 0.00 2019-12-17 20:09:53 2019-12-17 20:10:48 t 1 1 201542 637 0.00 2019-12-17 20:05:30 2019-12-17 20:12:30 t 1 1 201544 687 0.00 2019-12-17 20:10:37 2019-12-17 20:15:42 t 1 1 201551 633 0.00 2019-12-17 19:45:42 2019-12-17 20:24:34 t 1 1 201552 481 0.00 2019-12-17 17:37:32 2019-12-17 20:26:34 t 1 1 201554 591 0.00 2019-12-17 19:43:27 2019-12-17 20:26:46 t 1 1 201558 649 0.00 2019-12-17 20:03:23 2019-12-17 20:30:52 t 1 1 201508 724 0.00 2019-12-17 19:49:25 2019-12-17 19:49:25 f 1 1 201511 679 0.00 2019-12-17 19:49:26 2019-12-17 19:50:24 t 1 1 201516 679 0.00 2019-12-17 19:54:10 2019-12-17 19:56:35 t 1 1 201524 679 0.00 2019-12-17 20:00:22 2019-12-17 20:00:41 t 1 1 201525 679 0.00 2019-12-17 20:01:20 2019-12-17 20:01:45 t 1 1 201528 675 0.00 2019-12-17 19:58:36 2019-12-17 20:03:17 t 1 1 201529 679 0.00 2019-12-17 20:03:29 2019-12-17 20:03:52 t 1 1 201530 679 0.00 2019-12-17 20:04:19 2019-12-17 20:04:28 t 1 1 201533 711 0.00 2019-12-17 19:53:32 2019-12-17 20:05:52 t 1 1 201535 724 0.00 2019-12-17 19:39:33 2019-12-17 20:07:11 t 1 1 201536 679 0.00 2019-12-17 20:07:37 2019-12-17 20:07:49 t 1 1 201540 660 0.00 2019-12-17 19:55:57 2019-12-17 20:10:11 t 1 1 201543 722 0.00 2019-12-17 20:09:58 2019-12-17 20:13:32 t 1 1 201545 562 0.00 2019-12-17 20:10:47 2019-12-17 20:17:24 t 1 1 201546 711 0.00 2019-12-17 20:05:52 2019-12-17 20:18:14 t 1 1 201547 637 0.00 2019-12-17 20:12:30 2019-12-17 20:19:04 t 1 1 201548 562 0.00 2019-12-17 20:18:34 2019-12-17 20:19:56 t 1 1 201549 675 0.00 2019-12-17 20:13:27 2019-12-17 20:21:07 t 1 1 201557 631 0.00 2019-12-17 20:29:30 2019-12-17 20:30:34 t 1 1 201570 481 0.00 2019-12-17 20:27:13 2019-12-17 20:45:41 t 1 1 201571 667 0.00 2019-12-17 20:46:20 2019-12-17 20:46:21 t 1 1 201572 516 0.00 2019-12-17 20:43:56 2019-12-17 20:50:17 t 1 1 201573 711 0.00 2019-12-17 20:33:26 2019-12-17 20:52:30 t 1 1 201575 687 0.00 2019-12-17 20:44:25 2019-12-17 20:53:05 t 1 1 201577 622 0.00 2019-12-17 20:42:42 2019-12-17 20:55:23 t 1 1 201579 562 0.00 2019-12-17 20:54:48 2019-12-17 20:55:47 t 1 1 201591 510 0.00 2019-12-17 20:54:52 2019-12-17 21:10:04 t 1 1 201596 551 0.00 2019-12-17 19:20:49 2019-12-17 21:12:26 t 1 1 201601 591 0.00 2019-12-17 20:38:00 2019-12-17 21:18:24 t 1 1 201603 562 0.00 2019-12-17 21:18:21 2019-12-17 21:19:03 t 1 1 201604 679 0.00 2019-12-17 21:20:03 2019-12-17 21:20:10 t 1 1 201616 627 0.00 2019-12-17 21:20:41 2019-12-17 21:27:15 t 1 1 201621 562 0.00 2019-12-17 21:28:05 2019-12-17 21:28:22 t 1 1 201627 722 0.00 2019-12-17 21:31:29 2019-12-17 21:32:12 t 1 1 201632 564 0.00 2019-12-17 21:27:58 2019-12-17 21:34:56 t 1 1 201633 679 0.00 2019-12-17 21:34:58 2019-12-17 21:34:59 t 1 1 201636 722 0.00 2019-12-17 21:36:40 2019-12-17 21:36:42 t 1 1 201638 562 0.00 2019-12-17 21:35:52 2019-12-17 21:37:01 t 1 1 201641 722 0.00 2019-12-17 21:37:40 2019-12-17 21:37:43 t 1 1 201644 689 0.00 2019-12-17 21:09:45 2019-12-17 21:38:56 t 1 1 201646 687 0.00 2019-12-17 21:26:29 2019-12-17 21:40:14 t 1 1 201647 679 0.00 2019-12-17 21:40:27 2019-12-17 21:40:32 t 1 1 201654 722 0.00 2019-12-17 21:41:38 2019-12-17 21:42:35 t 1 1 201658 722 0.00 2019-12-17 21:45:46 2019-12-17 21:46:16 t 1 1 201662 722 0.00 2019-12-17 21:50:01 2019-12-17 21:50:45 t 1 1 201664 689 0.00 2019-12-17 21:41:44 2019-12-17 21:51:41 t 1 1 201666 689 0.00 2019-12-17 21:51:53 2019-12-17 21:51:58 t 1 1 201672 627 0.00 2019-12-17 21:27:15 2019-12-17 21:56:52 t 1 1 201677 660 0.00 2019-12-17 21:45:57 2019-12-17 22:02:15 t 1 1 201679 481 0.00 2019-12-17 21:48:48 2019-12-17 22:03:18 t 1 1 201681 562 0.00 2019-12-17 22:08:12 2019-12-17 22:08:32 t 1 1 201682 637 0.00 2019-12-17 21:54:33 2019-12-17 22:10:19 t 1 1 201683 687 0.00 2019-12-17 22:14:40 2019-12-17 22:14:52 t 1 1 201684 622 0.00 2019-12-17 21:05:04 2019-12-17 22:16:30 t 1 1 201685 679 0.00 2019-12-17 22:14:46 2019-12-17 22:16:39 t 1 1 201687 675 0.00 2019-12-17 22:16:34 2019-12-17 22:18:09 t 1 1 201688 514 0.00 2019-12-17 21:25:49 2019-12-17 22:19:45 t 1 1 201692 724 0.00 2019-12-17 22:23:43 2019-12-17 22:24:14 t 1 1 201696 691 0.00 2019-12-17 22:26:44 2019-12-17 22:27:03 t 1 1 201698 660 0.00 2019-12-17 22:02:16 2019-12-17 22:27:26 t 1 1 201705 392 0.00 2019-12-17 21:08:24 2019-12-17 22:34:46 t 1 2 201708 675 0.00 2019-12-17 22:38:26 2019-12-17 22:41:33 t 1 1 201710 679 0.00 2019-12-17 22:43:53 2019-12-17 22:43:54 t 1 1 201711 679 0.00 2019-12-17 22:44:29 2019-12-17 22:45:14 t 1 1 201717 679 0.00 2019-12-17 22:47:05 2019-12-17 22:47:21 t 1 1 201722 459 0.00 2019-12-17 22:49:51 2019-12-17 22:49:56 t 1 2 201723 679 0.00 2019-12-17 22:50:05 2019-12-17 22:50:20 t 1 1 201725 738 0.00 2019-12-17 22:51:54 2019-12-17 22:51:56 t 1 1 201727 738 0.00 2019-12-17 22:52:10 2019-12-17 22:52:12 t 1 1 201729 679 0.00 2019-12-17 22:52:00 2019-12-17 22:52:31 t 1 1 201732 738 0.00 2019-12-17 22:53:11 2019-12-17 22:53:13 t 1 1 201736 738 0.00 2019-12-17 22:54:21 2019-12-17 22:54:29 t 1 1 201739 738 0.00 2019-12-17 22:54:34 2019-12-17 22:55:36 t 1 1 201740 689 0.00 2019-12-17 22:04:23 2019-12-17 22:55:50 t 1 1 201743 562 0.00 2019-12-17 22:55:43 2019-12-17 22:56:58 t 1 1 201749 679 0.00 2019-12-17 22:58:55 2019-12-17 23:00:18 t 1 1 201754 679 0.00 2019-12-17 23:04:32 2019-12-17 23:04:48 t 1 1 201756 679 0.00 2019-12-17 23:05:07 2019-12-17 23:05:24 t 1 1 201771 679 0.00 2019-12-17 23:12:48 2019-12-17 23:13:29 t 1 1 201772 679 0.00 2019-12-17 23:15:18 2019-12-17 23:15:29 t 1 1 201775 679 0.00 2019-12-17 23:15:37 2019-12-17 23:16:52 t 1 1 201779 679 0.00 2019-12-17 23:17:53 2019-12-17 23:18:33 t 1 1 201782 679 0.00 2019-12-17 23:19:23 2019-12-17 23:19:34 t 1 1 201783 679 0.00 2019-12-17 23:19:41 2019-12-17 23:20:11 t 1 1 201784 722 0.00 2019-12-17 23:21:16 2019-12-17 23:21:16 t 1 1 201786 679 0.00 2019-12-17 23:21:19 2019-12-17 23:21:53 t 1 1 201788 679 0.00 2019-12-17 23:21:59 2019-12-17 23:22:10 t 1 1 201792 562 0.00 2019-12-17 23:23:15 2019-12-17 23:23:40 t 1 1 201796 679 0.00 2019-12-17 23:24:38 2019-12-17 23:24:39 t 1 1 201802 679 0.00 2019-12-17 23:28:42 2019-12-17 23:28:54 t 1 1 201803 392 0.00 2019-12-17 23:14:08 2019-12-17 23:30:24 t 1 2 201806 622 0.00 2019-12-17 23:27:30 2019-12-17 23:32:06 t 1 1 201809 633 0.00 2019-12-17 23:18:51 2019-12-17 23:34:19 t 1 1 201811 687 0.00 2019-12-17 23:15:31 2019-12-17 23:34:40 t 1 1 201813 722 0.00 2019-12-17 23:28:53 2019-12-17 23:35:39 t 1 1 201816 538 0.00 2019-12-17 19:49:06 2019-12-17 23:39:35 t 1 1 201818 679 0.00 2019-12-17 23:42:40 2019-12-17 23:42:47 t 1 1 201825 679 0.00 2019-12-17 23:46:10 2019-12-17 23:46:38 t 1 1 201828 679 0.00 2019-12-17 23:47:51 2019-12-17 23:47:52 t 1 1 201830 481 0.00 2019-12-17 23:22:01 2019-12-17 23:49:15 t 1 1 201831 679 0.00 2019-12-17 23:49:31 2019-12-17 23:49:34 t 1 1 201836 220 0.00 2019-12-17 23:21:48 2019-12-17 23:52:27 t 1 2 201838 679 0.00 2019-12-17 23:53:35 2019-12-17 23:53:38 t 1 1 201840 562 0.00 2019-12-17 23:55:26 2019-12-17 23:55:52 t 1 1 201842 656 0.00 2019-12-17 19:51:41 2019-12-18 00:00:42 t 1 1 201843 679 0.00 2019-12-18 00:01:49 2019-12-18 00:01:57 t 1 1 201844 679 0.00 2019-12-18 00:02:15 2019-12-18 00:02:17 t 1 1 201518 392 0.00 2019-12-17 19:51:16 2019-12-17 19:57:23 t 1 2 201520 562 0.00 2019-12-17 19:55:27 2019-12-17 19:58:21 t 1 1 201521 679 0.00 2019-12-17 19:58:17 2019-12-17 19:58:38 t 1 1 201522 679 0.00 2019-12-17 19:59:13 2019-12-17 19:59:54 t 1 1 201523 622 0.00 2019-12-17 19:57:22 2019-12-17 20:00:26 t 1 1 201526 562 0.00 2019-12-17 19:58:31 2019-12-17 20:02:07 t 1 1 201527 649 0.00 2019-12-17 19:56:23 2019-12-17 20:03:17 t 1 1 201531 679 0.00 2019-12-17 20:04:50 2019-12-17 20:04:55 t 1 1 201538 562 0.00 2019-12-17 20:07:50 2019-12-17 20:08:20 t 1 1 201550 709 0.00 2019-12-17 20:20:00 2019-12-17 20:21:25 t 1 1 201553 578 0.00 2019-12-17 19:52:31 2019-12-17 20:26:38 t 1 1 201555 679 0.00 2019-12-17 20:08:28 2019-12-17 20:27:23 t 1 1 201556 562 0.00 2019-12-17 20:27:33 2019-12-17 20:28:52 t 1 1 201559 679 0.00 2019-12-17 20:27:34 2019-12-17 20:32:29 t 1 1 201560 711 0.00 2019-12-17 20:18:14 2019-12-17 20:33:26 t 1 1 201563 591 0.00 2019-12-17 20:27:03 2019-12-17 20:37:51 t 1 1 201565 220 0.00 2019-12-17 20:38:44 2019-12-17 20:40:57 t 1 2 201567 516 0.00 2019-12-17 20:27:30 2019-12-17 20:43:57 t 1 1 201569 673 0.00 2019-12-17 20:41:25 2019-12-17 20:45:29 t 1 1 201574 673 0.00 2019-12-17 20:45:28 2019-12-17 20:53:05 t 1 1 201578 687 0.00 2019-12-17 20:53:11 2019-12-17 20:55:40 t 1 1 201583 687 0.00 2019-12-17 20:56:29 2019-12-17 20:58:40 t 1 1 201585 562 0.00 2019-12-17 21:00:09 2019-12-17 21:01:52 t 1 1 201586 578 0.00 2019-12-17 20:36:24 2019-12-17 21:02:58 t 1 1 201588 562 0.00 2019-12-17 21:03:42 2019-12-17 21:03:56 t 1 1 201590 562 0.00 2019-12-17 21:05:17 2019-12-17 21:06:03 t 1 1 201592 724 0.00 2019-12-17 20:15:49 2019-12-17 21:10:26 t 1 1 201595 562 0.00 2019-12-17 21:12:03 2019-12-17 21:12:23 t 1 1 201597 578 0.00 2019-12-17 21:02:58 2019-12-17 21:15:05 t 1 1 201598 611 0.00 2019-12-17 20:14:31 2019-12-17 21:15:32 t 1 1 201599 687 0.00 2019-12-17 20:59:20 2019-12-17 21:16:14 t 1 1 201600 679 0.00 2019-12-17 20:38:24 2019-12-17 21:17:58 t 1 1 201602 679 0.00 2019-12-17 21:18:31 2019-12-17 21:19:01 t 1 1 201606 679 0.00 2019-12-17 21:21:03 2019-12-17 21:21:42 t 1 1 201607 679 0.00 2019-12-17 21:21:49 2019-12-17 21:22:25 t 1 1 201608 679 0.00 2019-12-17 21:22:34 2019-12-17 21:22:36 t 1 1 201613 722 0.00 2019-12-17 21:23:25 2019-12-17 21:25:27 t 1 1 201615 514 0.00 2019-12-17 18:14:55 2019-12-17 21:25:49 t 1 1 201617 736 0.00 2019-12-17 21:26:59 2019-12-17 21:27:17 t 1 1 201619 578 0.00 2019-12-17 21:15:05 2019-12-17 21:27:54 t 1 1 201622 750 0.00 2019-12-17 21:08:45 2019-12-17 21:29:06 t 1 1 201623 679 0.00 2019-12-17 21:28:54 2019-12-17 21:29:16 t 1 1 201625 724 0.00 2019-12-17 21:26:58 2019-12-17 21:30:02 t 1 1 201628 722 0.00 2019-12-17 21:32:18 2019-12-17 21:32:26 t 1 1 201630 722 0.00 2019-12-17 21:33:37 2019-12-17 21:33:54 t 1 1 201631 722 0.00 2019-12-17 21:34:00 2019-12-17 21:34:26 t 1 1 201634 679 0.00 2019-12-17 21:35:17 2019-12-17 21:36:05 t 1 1 201637 545 0.00 2019-12-17 21:25:23 2019-12-17 21:36:53 t 1 1 201639 722 0.00 2019-12-17 21:36:50 2019-12-17 21:37:24 t 1 1 201640 679 0.00 2019-12-17 21:37:29 2019-12-17 21:37:40 t 1 1 201642 679 0.00 2019-12-17 21:37:47 2019-12-17 21:37:57 t 1 1 201643 707 0.00 2019-12-17 19:53:07 2019-12-17 21:38:47 t 1 1 201648 679 0.00 2019-12-17 21:40:49 2019-12-17 21:41:00 t 1 1 201649 679 0.00 2019-12-17 21:41:21 2019-12-17 21:41:28 t 1 1 201650 722 0.00 2019-12-17 21:40:23 2019-12-17 21:41:53 t 1 1 201651 578 0.00 2019-12-17 21:27:54 2019-12-17 21:42:13 t 1 1 201653 564 0.00 2019-12-17 21:34:56 2019-12-17 21:42:20 t 1 1 201655 679 0.00 2019-12-17 21:42:57 2019-12-17 21:43:04 t 1 1 201656 722 0.00 2019-12-17 21:43:52 2019-12-17 21:44:13 t 1 1 201657 660 0.00 2019-12-17 20:10:11 2019-12-17 21:45:57 t 1 1 201659 562 0.00 2019-12-17 21:46:33 2019-12-17 21:46:57 t 1 1 201661 679 0.00 2019-12-17 21:48:48 2019-12-17 21:49:07 t 1 1 201663 516 0.00 2019-12-17 21:27:39 2019-12-17 21:51:32 t 1 1 201667 679 0.00 2019-12-17 21:52:29 2019-12-17 21:53:07 t 1 1 201668 637 0.00 2019-12-17 21:24:11 2019-12-17 21:54:33 t 1 1 201669 578 0.00 2019-12-17 21:42:13 2019-12-17 21:54:56 t 1 1 201671 687 0.00 2019-12-17 21:53:33 2019-12-17 21:56:22 t 1 1 201676 689 0.00 2019-12-17 21:55:46 2019-12-17 22:02:09 t 1 1 201678 687 0.00 2019-12-17 22:02:37 2019-12-17 22:03:15 t 1 1 201680 578 0.00 2019-12-17 21:54:56 2019-12-17 22:05:26 t 1 1 201689 551 0.00 2019-12-17 21:13:45 2019-12-17 22:20:00 t 1 1 201690 562 0.00 2019-12-17 22:18:59 2019-12-17 22:20:50 t 1 1 201691 687 0.00 2019-12-17 22:21:58 2019-12-17 22:22:07 t 1 1 201694 691 0.00 2019-12-17 22:23:59 2019-12-17 22:25:09 t 1 1 201700 750 0.00 2019-12-17 21:29:10 2019-12-17 22:27:57 t 1 1 201702 637 0.00 2019-12-17 22:10:19 2019-12-17 22:30:21 t 1 1 201703 631 0.00 2019-12-17 22:28:49 2019-12-17 22:31:30 t 1 1 201706 562 0.00 2019-12-17 22:37:40 2019-12-17 22:37:52 t 1 1 201713 622 0.00 2019-12-17 22:16:30 2019-12-17 22:46:03 t 1 1 201714 679 0.00 2019-12-17 22:45:55 2019-12-17 22:46:18 t 1 1 201716 562 0.00 2019-12-17 22:44:49 2019-12-17 22:46:58 t 1 1 201719 633 0.00 2019-12-17 22:38:00 2019-12-17 22:48:41 t 1 1 201720 498 0.00 2019-12-17 19:02:31 2019-12-17 22:49:12 t 1 2 201726 459 0.00 2019-12-17 22:50:55 2019-12-17 22:52:00 t 1 2 201731 581 0.00 2019-12-17 22:29:30 2019-12-17 22:52:55 t 1 1 201733 545 0.00 2019-12-17 22:25:03 2019-12-17 22:53:35 t 1 1 201737 744 0.00 2019-12-17 22:45:11 2019-12-17 22:54:59 t 1 1 201741 679 0.00 2019-12-17 22:53:43 2019-12-17 22:56:03 t 1 1 201742 738 0.00 2019-12-17 22:55:49 2019-12-17 22:56:49 t 1 1 201744 635 0.00 2019-12-17 21:43:18 2019-12-17 22:57:15 t 1 1 201746 679 0.00 2019-12-17 22:57:33 2019-12-17 22:58:31 t 1 1 201747 611 0.00 2019-12-17 22:32:31 2019-12-17 22:59:24 t 1 1 201753 687 0.00 2019-12-17 22:45:57 2019-12-17 23:03:31 t 1 1 201755 679 0.00 2019-12-17 23:04:55 2019-12-17 23:04:59 t 1 1 201757 679 0.00 2019-12-17 23:05:50 2019-12-17 23:05:53 t 1 1 201759 459 0.00 2019-12-17 22:56:21 2019-12-17 23:06:57 t 1 2 201760 679 0.00 2019-12-17 23:07:35 2019-12-17 23:07:36 t 1 1 201762 679 0.00 2019-12-17 23:08:12 2019-12-17 23:08:23 t 1 1 201763 633 0.00 2019-12-17 23:00:11 2019-12-17 23:09:23 t 1 1 201766 679 0.00 2019-12-17 23:10:38 2019-12-17 23:10:58 t 1 1 201767 622 0.00 2019-12-17 23:00:48 2019-12-17 23:12:30 t 1 1 201768 627 0.00 2019-12-17 21:56:52 2019-12-17 23:12:44 t 1 1 201769 562 0.00 2019-12-17 23:12:31 2019-12-17 23:12:52 t 1 1 201770 738 0.00 2019-12-17 22:55:58 2019-12-17 23:13:20 t 1 1 201776 679 0.00 2019-12-17 23:17:03 2019-12-17 23:17:04 t 1 1 201777 679 0.00 2019-12-17 23:17:11 2019-12-17 23:17:31 t 1 1 201781 633 0.00 2019-12-17 23:09:23 2019-12-17 23:18:50 t 1 1 201561 578 0.00 2019-12-17 20:26:38 2019-12-17 20:36:24 t 1 1 201562 720 0.00 2019-12-17 17:47:09 2019-12-17 20:37:44 t 1 1 201564 562 0.00 2019-12-17 20:32:19 2019-12-17 20:38:29 t 1 1 201566 750 0.00 2019-12-17 19:18:36 2019-12-17 20:41:17 t 1 1 201568 687 0.00 2019-12-17 20:15:54 2019-12-17 20:44:13 t 1 1 201576 510 0.00 2019-12-17 19:43:23 2019-12-17 20:54:05 t 1 1 201580 637 0.00 2019-12-17 20:19:04 2019-12-17 20:56:49 t 1 1 201581 562 0.00 2019-12-17 20:56:23 2019-12-17 20:58:07 t 1 1 201582 711 0.00 2019-12-17 20:52:30 2019-12-17 20:58:14 t 1 1 201584 392 0.00 2019-12-17 20:58:41 2019-12-17 21:01:47 t 1 2 201587 562 0.00 2019-12-17 21:02:01 2019-12-17 21:03:52 t 1 1 201589 622 0.00 2019-12-17 20:55:23 2019-12-17 21:05:04 t 1 1 201593 673 0.00 2019-12-17 21:00:19 2019-12-17 21:11:11 t 1 1 201594 485 0.00 2019-12-17 21:06:47 2019-12-17 21:12:14 t 1 1 201605 562 0.00 2019-12-17 21:20:05 2019-12-17 21:20:40 t 1 1 201609 679 0.00 2019-12-17 21:22:49 2019-12-17 21:23:03 t 1 1 201610 722 0.00 2019-12-17 21:15:54 2019-12-17 21:23:25 t 1 1 201611 637 0.00 2019-12-17 20:56:49 2019-12-17 21:24:11 t 1 1 201612 679 0.00 2019-12-17 21:24:28 2019-12-17 21:24:38 t 1 1 201614 722 0.00 2019-12-17 21:25:33 2019-12-17 21:25:43 t 1 1 201618 679 0.00 2019-12-17 21:24:49 2019-12-17 21:27:51 t 1 1 201620 564 0.00 2019-12-17 19:44:40 2019-12-17 21:27:58 t 1 1 201624 679 0.00 2019-12-17 21:29:36 2019-12-17 21:29:50 t 1 1 201626 679 0.00 2019-12-17 21:31:46 2019-12-17 21:31:53 t 1 1 201629 679 0.00 2019-12-17 21:33:38 2019-12-17 21:33:52 t 1 1 201635 722 0.00 2019-12-17 21:36:00 2019-12-17 21:36:24 t 1 1 201645 562 0.00 2019-12-17 21:38:57 2019-12-17 21:39:25 t 1 1 201652 679 0.00 2019-12-17 21:42:11 2019-12-17 21:42:15 t 1 1 201660 679 0.00 2019-12-17 21:48:05 2019-12-17 21:48:24 t 1 1 201665 707 0.00 2019-12-17 21:39:14 2019-12-17 21:51:45 t 1 1 201670 679 0.00 2019-12-17 21:54:38 2019-12-17 21:56:20 t 1 1 201673 675 0.00 2019-12-17 21:50:43 2019-12-17 21:57:46 t 1 1 201674 562 0.00 2019-12-17 21:57:21 2019-12-17 21:58:17 t 1 1 201675 591 0.00 2019-12-17 21:19:07 2019-12-17 22:00:07 t 1 1 201686 694 0.00 2019-12-17 19:44:23 2019-12-17 22:16:48 t 1 1 201693 545 0.00 2019-12-17 21:59:31 2019-12-17 22:25:03 t 1 1 201695 734 0.00 2019-12-17 21:16:50 2019-12-17 22:26:54 t 1 1 201697 562 0.00 2019-12-17 22:25:53 2019-12-17 22:27:06 t 1 1 201699 591 0.00 2019-12-17 22:26:24 2019-12-17 22:27:42 t 1 1 201701 691 0.00 2019-12-17 22:27:03 2019-12-17 22:28:06 t 1 1 201704 691 0.00 2019-12-17 22:31:09 2019-12-17 22:32:19 t 1 1 201707 673 0.00 2019-12-17 21:22:30 2019-12-17 22:38:55 t 1 1 201709 679 0.00 2019-12-17 22:41:01 2019-12-17 22:43:18 t 1 1 201712 724 0.00 2019-12-17 22:25:04 2019-12-17 22:45:30 t 1 1 201715 691 0.00 2019-12-17 22:45:37 2019-12-17 22:46:48 t 1 1 201718 691 0.00 2019-12-17 22:47:10 2019-12-17 22:48:22 t 1 1 201721 679 0.00 2019-12-17 22:49:36 2019-12-17 22:49:41 t 1 1 201724 738 0.00 2019-12-17 22:46:24 2019-12-17 22:51:48 t 1 1 201728 679 0.00 2019-12-17 22:52:08 2019-12-17 22:52:20 t 1 1 201730 679 0.00 2019-12-17 22:52:31 2019-12-17 22:52:44 t 1 1 201734 679 0.00 2019-12-17 22:53:16 2019-12-17 22:53:37 t 1 1 201735 220 0.00 2019-12-17 21:46:08 2019-12-17 22:54:08 t 1 2 201738 459 0.00 2019-12-17 22:51:27 2019-12-17 22:55:02 t 1 2 201745 744 0.00 2019-12-17 22:54:59 2019-12-17 22:57:43 t 1 1 201748 633 0.00 2019-12-17 22:48:41 2019-12-17 23:00:11 t 1 1 201750 622 0.00 2019-12-17 22:46:03 2019-12-17 23:00:48 t 1 1 201751 679 0.00 2019-12-17 23:02:21 2019-12-17 23:02:24 t 1 1 201752 562 0.00 2019-12-17 22:58:00 2019-12-17 23:03:19 t 1 1 201758 675 0.00 2019-12-17 23:01:19 2019-12-17 23:06:36 t 1 1 201761 679 0.00 2019-12-17 23:07:42 2019-12-17 23:07:46 t 1 1 201764 679 0.00 2019-12-17 23:08:38 2019-12-17 23:09:27 t 1 1 201765 635 0.00 2019-12-17 23:05:03 2019-12-17 23:10:51 t 1 1 201773 687 0.00 2019-12-17 23:03:31 2019-12-17 23:15:31 t 1 1 201774 545 0.00 2019-12-17 22:53:35 2019-12-17 23:15:55 t 1 1 201778 679 0.00 2019-12-17 23:17:40 2019-12-17 23:17:41 t 1 1 201780 611 0.00 2019-12-17 23:13:58 2019-12-17 23:18:50 t 1 1 201793 551 0.00 2019-12-17 22:20:00 2019-12-17 23:23:58 t 1 1 201795 738 0.00 2019-12-17 23:18:07 2019-12-17 23:24:34 t 1 1 201799 622 0.00 2019-12-17 23:12:30 2019-12-17 23:27:30 t 1 1 201801 722 0.00 2019-12-17 23:21:24 2019-12-17 23:28:53 t 1 1 201805 675 0.00 2019-12-17 23:27:35 2019-12-17 23:32:02 t 1 1 201807 611 0.00 2019-12-17 23:25:11 2019-12-17 23:33:41 t 1 1 201808 679 0.00 2019-12-17 23:33:51 2019-12-17 23:33:58 t 1 1 201815 679 0.00 2019-12-17 23:37:37 2019-12-17 23:37:40 t 1 1 201817 679 0.00 2019-12-17 23:39:03 2019-12-17 23:42:25 t 1 1 201820 485 0.00 2019-12-17 23:32:03 2019-12-17 23:44:19 t 1 1 201822 562 0.00 2019-12-17 23:44:42 2019-12-17 23:45:07 t 1 1 201823 679 0.00 2019-12-17 23:45:20 2019-12-17 23:45:30 t 1 1 201827 675 0.00 2019-12-17 23:43:12 2019-12-17 23:47:28 t 1 1 201829 722 0.00 2019-12-17 23:48:23 2019-12-17 23:48:55 t 1 1 201833 679 0.00 2019-12-17 23:49:50 2019-12-17 23:51:54 t 1 1 201835 679 0.00 2019-12-17 23:51:42 2019-12-17 23:52:09 t 1 1 201837 679 0.00 2019-12-17 23:52:18 2019-12-17 23:53:29 t 1 1 201839 633 0.00 2019-12-17 23:45:43 2019-12-17 23:53:53 t 1 1 201841 679 0.00 2019-12-17 23:57:17 2019-12-17 23:57:50 t 1 1 201846 679 0.00 2019-12-18 00:02:28 2019-12-18 00:03:03 t 1 1 201850 687 0.00 2019-12-17 23:52:39 2019-12-18 00:05:45 t 1 1 201853 679 0.00 2019-12-18 00:07:57 2019-12-18 00:08:02 t 1 1 201858 679 0.00 2019-12-18 00:11:34 2019-12-18 00:11:50 t 1 1 201862 679 0.00 2019-12-18 00:18:10 2019-12-18 00:18:52 t 1 1 201870 562 0.00 2019-12-18 00:27:48 2019-12-18 00:28:09 t 1 1 201874 679 0.00 2019-12-18 00:29:50 2019-12-18 00:30:02 t 1 1 201877 679 0.00 2019-12-18 00:34:46 2019-12-18 00:35:17 t 1 1 201882 544 0.00 2019-12-18 00:39:37 2019-12-18 00:42:13 t 1 2 201884 679 0.00 2019-12-18 00:44:06 2019-12-18 00:44:32 t 1 1 201886 679 0.00 2019-12-18 00:48:14 2019-12-18 00:48:33 t 1 1 201890 562 0.00 2019-12-18 00:49:14 2019-12-18 00:49:42 t 1 1 201893 679 0.00 2019-12-18 00:52:36 2019-12-18 00:52:40 t 1 1 201895 562 0.00 2019-12-18 00:57:38 2019-12-18 00:57:45 t 1 1 201896 679 0.00 2019-12-18 00:54:30 2019-12-18 00:58:35 t 1 1 201897 679 0.00 2019-12-18 00:58:54 2019-12-18 00:59:36 t 1 1 201903 562 0.00 2019-12-18 01:08:25 2019-12-18 01:08:33 t 1 1 201906 503 0.00 2019-12-18 00:57:02 2019-12-18 01:16:28 t 1 1 201913 562 0.00 2019-12-18 01:37:18 2019-12-18 01:37:42 t 1 1 201918 679 0.00 2019-12-18 01:31:09 2019-12-18 01:49:04 t 1 1 201919 687 0.00 2019-12-18 01:31:55 2019-12-18 01:52:32 t 1 1 201921 562 0.00 2019-12-18 01:58:50 2019-12-18 01:59:09 t 1 1 201785 722 0.00 2019-12-17 23:21:16 2019-12-17 23:21:19 t 1 1 201787 481 0.00 2019-12-17 22:03:52 2019-12-17 23:22:01 t 1 1 201789 679 0.00 2019-12-17 23:22:16 2019-12-17 23:22:42 t 1 1 201790 691 0.00 2019-12-17 23:22:04 2019-12-17 23:23:10 t 1 1 201791 750 0.00 2019-12-17 22:28:00 2019-12-17 23:23:19 t 1 1 201794 679 0.00 2019-12-17 23:23:17 2019-12-17 23:24:04 t 1 1 201797 679 0.00 2019-12-17 23:25:35 2019-12-17 23:25:36 t 1 1 201798 679 0.00 2019-12-17 23:26:03 2019-12-17 23:26:31 t 1 1 201800 679 0.00 2019-12-17 23:27:45 2019-12-17 23:28:06 t 1 1 201804 514 0.00 2019-12-17 22:19:45 2019-12-17 23:31:52 t 1 1 201810 562 0.00 2019-12-17 23:33:57 2019-12-17 23:34:22 t 1 1 201812 627 0.00 2019-12-17 23:12:44 2019-12-17 23:35:34 t 1 1 201814 679 0.00 2019-12-17 23:37:07 2019-12-17 23:37:10 t 1 1 201819 679 0.00 2019-12-17 23:43:09 2019-12-17 23:43:28 t 1 1 201821 722 0.00 2019-12-17 23:35:39 2019-12-17 23:44:29 t 1 1 201824 633 0.00 2019-12-17 23:34:19 2019-12-17 23:45:43 t 1 1 201826 722 0.00 2019-12-17 23:46:38 2019-12-17 23:46:54 t 1 1 201832 679 0.00 2019-12-17 23:51:22 2019-12-17 23:51:34 t 1 1 201834 722 0.00 2019-12-17 23:49:20 2019-12-17 23:51:57 t 1 1 201845 633 0.00 2019-12-17 23:53:53 2019-12-18 00:02:29 t 1 1 201851 562 0.00 2019-12-18 00:06:13 2019-12-18 00:06:38 t 1 1 201852 679 0.00 2019-12-18 00:07:31 2019-12-18 00:07:49 t 1 1 201854 679 0.00 2019-12-18 00:08:34 2019-12-18 00:08:48 t 1 1 201855 679 0.00 2019-12-18 00:09:35 2019-12-18 00:09:49 t 1 1 201856 679 0.00 2019-12-18 00:10:22 2019-12-18 00:10:23 t 1 1 201860 679 0.00 2019-12-18 00:13:37 2019-12-18 00:13:50 t 1 1 201861 562 0.00 2019-12-18 00:17:00 2019-12-18 00:17:24 t 1 1 201865 679 0.00 2019-12-18 00:22:35 2019-12-18 00:22:55 t 1 1 201869 545 0.00 2019-12-18 00:23:11 2019-12-18 00:26:22 t 1 1 201871 578 0.00 2019-12-17 22:05:26 2019-12-18 00:28:33 t 1 1 201873 679 0.00 2019-12-18 00:29:14 2019-12-18 00:29:42 t 1 1 201880 562 0.00 2019-12-18 00:38:37 2019-12-18 00:38:55 t 1 1 201883 679 0.00 2019-12-18 00:37:42 2019-12-18 00:43:03 t 1 1 201887 578 0.00 2019-12-18 00:40:18 2019-12-18 00:48:35 t 1 1 201888 679 0.00 2019-12-18 00:48:52 2019-12-18 00:49:04 t 1 1 201891 679 0.00 2019-12-18 00:49:53 2019-12-18 00:51:18 t 1 1 201892 679 0.00 2019-12-18 00:51:58 2019-12-18 00:52:27 t 1 1 201894 679 0.00 2019-12-18 00:53:23 2019-12-18 00:54:02 t 1 1 201899 578 0.00 2019-12-18 00:48:35 2019-12-18 01:00:11 t 1 1 201902 707 0.00 2019-12-17 22:48:10 2019-12-18 01:06:47 t 1 1 201911 687 0.00 2019-12-18 00:29:31 2019-12-18 01:31:55 t 1 1 201914 633 0.00 2019-12-18 01:38:32 2019-12-18 01:39:34 t 1 1 201915 675 0.00 2019-12-18 01:41:05 2019-12-18 01:45:21 t 1 1 201916 562 0.00 2019-12-18 01:48:04 2019-12-18 01:48:25 t 1 1 201920 514 0.00 2019-12-17 23:31:52 2019-12-18 01:53:58 t 1 1 201922 724 0.00 2019-12-18 01:38:08 2019-12-18 01:59:45 t 1 1 201923 687 0.00 2019-12-18 01:53:42 2019-12-18 02:01:09 t 1 1 201929 687 0.00 2019-12-18 02:07:03 2019-12-18 02:15:25 t 1 1 201930 562 0.00 2019-12-18 02:20:24 2019-12-18 02:20:44 t 1 1 201937 687 0.00 2019-12-18 02:15:34 2019-12-18 03:02:43 t 1 1 201945 750 0.00 2019-12-18 00:03:10 2019-12-18 03:31:12 t 1 1 201947 551 0.00 2019-12-17 23:28:42 2019-12-18 03:36:55 t 1 1 201949 562 0.00 2019-12-18 03:42:43 2019-12-18 03:42:53 t 1 1 201952 562 0.00 2019-12-18 03:53:26 2019-12-18 03:53:37 t 1 1 201954 562 0.00 2019-12-18 04:04:23 2019-12-18 04:05:57 t 1 1 201956 562 0.00 2019-12-18 04:26:03 2019-12-18 04:26:13 t 1 1 201960 562 0.00 2019-12-18 04:47:31 2019-12-18 04:47:43 t 1 1 201964 562 0.00 2019-12-18 05:05:52 2019-12-18 05:06:04 t 1 1 201965 514 0.00 2019-12-18 02:11:15 2019-12-18 05:07:57 t 1 1 201968 738 0.00 2019-12-18 05:11:00 2019-12-18 05:17:42 t 1 1 201973 738 0.00 2019-12-18 05:23:59 2019-12-18 05:32:59 t 1 1 201975 738 0.00 2019-12-18 05:33:14 2019-12-18 05:33:33 t 1 1 201979 738 0.00 2019-12-18 05:38:00 2019-12-18 05:38:11 t 1 1 201980 562 0.00 2019-12-18 05:38:36 2019-12-18 05:39:02 t 1 1 201982 738 0.00 2019-12-18 05:41:43 2019-12-18 05:42:05 t 1 1 201983 738 0.00 2019-12-18 05:42:12 2019-12-18 05:42:17 t 1 1 201985 516 0.00 2019-12-18 05:34:36 2019-12-18 05:47:03 t 1 1 201986 738 0.00 2019-12-18 05:47:10 2019-12-18 05:47:11 t 1 1 201989 738 0.00 2019-12-18 05:52:34 2019-12-18 05:52:37 t 1 1 201990 679 0.00 2019-12-18 05:53:32 2019-12-18 05:56:12 t 1 1 201991 738 0.00 2019-12-18 05:57:54 2019-12-18 05:57:57 t 1 1 201993 562 0.00 2019-12-18 06:00:41 2019-12-18 06:01:13 t 1 1 201995 564 0.00 2019-12-18 05:59:48 2019-12-18 06:03:16 t 1 1 201998 738 0.00 2019-12-18 06:07:55 2019-12-18 06:08:02 t 1 1 202000 562 0.00 2019-12-18 06:11:50 2019-12-18 06:12:00 t 1 1 202001 738 0.00 2019-12-18 06:12:25 2019-12-18 06:12:29 t 1 1 202006 707 0.00 2019-12-18 05:45:35 2019-12-18 06:25:04 t 1 1 202007 738 0.00 2019-12-18 06:25:53 2019-12-18 06:25:56 t 1 1 202008 738 0.00 2019-12-18 06:26:08 2019-12-18 06:26:22 t 1 1 202011 738 0.00 2019-12-18 06:30:59 2019-12-18 06:30:59 t 1 1 202012 707 0.00 2019-12-18 06:30:11 2019-12-18 06:33:04 t 1 1 202019 562 0.00 2019-12-18 06:44:06 2019-12-18 06:44:41 t 1 1 202021 738 0.00 2019-12-18 06:46:24 2019-12-18 06:46:26 t 1 1 202025 689 0.00 2019-12-18 06:35:54 2019-12-18 06:52:52 t 1 1 202028 459 0.00 2019-12-18 06:49:23 2019-12-18 06:55:28 t 1 2 202029 738 0.00 2019-12-18 06:56:19 2019-12-18 06:56:21 t 1 1 202035 738 0.00 2019-12-18 07:04:08 2019-12-18 07:04:31 t 1 1 202038 738 0.00 2019-12-18 07:08:21 2019-12-18 07:08:23 t 1 1 202041 578 0.00 2019-12-18 05:13:04 2019-12-18 07:12:59 t 1 1 202042 738 0.00 2019-12-18 07:13:01 2019-12-18 07:13:05 t 1 1 202045 738 0.00 2019-12-18 07:18:50 2019-12-18 07:20:02 t 1 1 202047 738 0.00 2019-12-18 07:21:56 2019-12-18 07:21:58 t 1 1 202051 694 0.00 2019-12-18 06:42:04 2019-12-18 07:31:32 t 1 1 202052 627 0.00 2019-12-18 07:34:26 2019-12-18 07:35:21 t 1 1 202053 627 0.00 2019-12-18 07:35:34 2019-12-18 07:35:48 t 1 1 202056 562 0.00 2019-12-18 07:38:11 2019-12-18 07:38:36 t 1 1 202058 627 0.00 2019-12-18 07:40:21 2019-12-18 07:40:32 t 1 1 202059 581 0.00 2019-12-18 07:38:27 2019-12-18 07:41:15 t 1 1 202060 581 0.00 2019-12-18 07:41:30 2019-12-18 07:41:36 t 1 1 202065 637 0.00 2019-12-18 07:33:48 2019-12-18 07:45:25 t 1 1 202069 750 0.00 2019-12-18 07:49:00 2019-12-18 07:50:58 t 1 1 202071 562 0.00 2019-12-18 07:51:35 2019-12-18 07:51:59 t 1 1 202075 738 0.00 2019-12-18 07:53:21 2019-12-18 07:53:23 t 1 1 202080 581 0.00 2019-12-18 07:57:03 2019-12-18 07:57:20 t 1 1 202082 481 0.00 2019-12-18 07:46:03 2019-12-18 07:58:24 t 1 1 202085 562 0.00 2019-12-18 08:02:18 2019-12-18 08:02:27 t 1 1 202087 637 0.00 2019-12-18 07:45:25 2019-12-18 08:05:06 t 1 1 201847 679 0.00 2019-12-18 00:03:23 2019-12-18 00:03:43 t 1 1 201848 679 0.00 2019-12-18 00:04:47 2019-12-18 00:04:48 t 1 1 201849 679 0.00 2019-12-18 00:05:16 2019-12-18 00:05:17 t 1 1 201857 633 0.00 2019-12-18 00:02:29 2019-12-18 00:10:39 t 1 1 201859 679 0.00 2019-12-18 00:13:05 2019-12-18 00:13:10 t 1 1 201863 633 0.00 2019-12-18 00:10:39 2019-12-18 00:19:50 t 1 1 201864 679 0.00 2019-12-18 00:22:24 2019-12-18 00:22:25 t 1 1 201866 734 0.00 2019-12-17 23:25:28 2019-12-18 00:23:00 t 1 1 201867 679 0.00 2019-12-18 00:23:42 2019-12-18 00:24:11 t 1 1 201868 679 0.00 2019-12-18 00:25:46 2019-12-18 00:26:00 t 1 1 201872 687 0.00 2019-12-18 00:05:45 2019-12-18 00:29:31 t 1 1 201875 633 0.00 2019-12-18 00:19:50 2019-12-18 00:30:32 t 1 1 201876 694 0.00 2019-12-17 22:17:17 2019-12-18 00:32:26 t 1 1 201878 625 0.00 2019-12-18 00:18:48 2019-12-18 00:36:33 t 1 1 201879 679 0.00 2019-12-18 00:37:31 2019-12-18 00:37:32 t 1 1 201881 578 0.00 2019-12-18 00:28:33 2019-12-18 00:40:18 t 1 1 201885 212 0.00 2019-12-18 00:47:13 2019-12-18 00:47:13 f 1 2 201889 679 0.00 2019-12-18 00:49:21 2019-12-18 00:49:35 t 1 1 201898 679 0.00 2019-12-18 00:59:47 2019-12-18 00:59:49 t 1 1 201900 679 0.00 2019-12-18 01:01:25 2019-12-18 01:01:42 t 1 1 201901 679 0.00 2019-12-18 01:02:09 2019-12-18 01:02:10 t 1 1 201904 679 0.00 2019-12-18 01:02:23 2019-12-18 01:13:00 t 1 1 201905 562 0.00 2019-12-18 01:16:01 2019-12-18 01:16:11 t 1 1 201907 625 0.00 2019-12-18 01:04:12 2019-12-18 01:17:43 t 1 1 201908 562 0.00 2019-12-18 01:26:42 2019-12-18 01:26:53 t 1 1 201909 625 0.00 2019-12-18 01:17:43 2019-12-18 01:27:32 t 1 1 201910 679 0.00 2019-12-18 01:13:19 2019-12-18 01:31:09 t 1 1 201912 707 0.00 2019-12-18 01:23:01 2019-12-18 01:35:35 t 1 1 201917 633 0.00 2019-12-18 01:39:20 2019-12-18 01:48:47 t 1 1 201924 679 0.00 2019-12-18 01:49:04 2019-12-18 02:07:23 t 1 1 201925 675 0.00 2019-12-18 01:54:05 2019-12-18 02:08:46 t 1 1 201931 562 0.00 2019-12-18 02:31:08 2019-12-18 02:31:30 t 1 1 201932 724 0.00 2019-12-18 02:27:52 2019-12-18 02:40:43 t 1 1 201933 656 0.00 2019-12-18 00:00:42 2019-12-18 02:41:28 t 1 1 201935 675 0.00 2019-12-18 02:42:03 2019-12-18 02:45:44 t 1 1 201939 675 0.00 2019-12-18 03:03:41 2019-12-18 03:13:30 t 1 1 201940 562 0.00 2019-12-18 03:14:13 2019-12-18 03:14:36 t 1 1 201942 562 0.00 2019-12-18 03:18:37 2019-12-18 03:18:51 t 1 1 201943 538 0.00 2019-12-18 01:15:05 2019-12-18 03:20:23 t 1 1 201944 687 0.00 2019-12-18 03:14:47 2019-12-18 03:22:21 t 1 1 201950 750 0.00 2019-12-18 03:31:12 2019-12-18 03:44:20 t 1 1 201951 687 0.00 2019-12-18 03:37:16 2019-12-18 03:49:06 t 1 1 201955 562 0.00 2019-12-18 04:15:02 2019-12-18 04:15:31 t 1 1 201957 675 0.00 2019-12-18 04:22:27 2019-12-18 04:34:37 t 1 1 201959 675 0.00 2019-12-18 04:34:37 2019-12-18 04:47:05 t 1 1 201961 675 0.00 2019-12-18 04:47:05 2019-12-18 04:50:29 t 1 1 201963 722 0.00 2019-12-18 04:55:49 2019-12-18 04:57:08 t 1 1 201966 578 0.00 2019-12-18 01:00:11 2019-12-18 05:13:04 t 1 1 201970 656 0.00 2019-12-18 02:41:27 2019-12-18 05:18:40 t 1 1 201972 562 0.00 2019-12-18 05:27:20 2019-12-18 05:27:55 t 1 1 201974 738 0.00 2019-12-18 05:33:06 2019-12-18 05:33:07 t 1 1 201977 738 0.00 2019-12-18 05:36:19 2019-12-18 05:36:34 t 1 1 201978 738 0.00 2019-12-18 05:36:40 2019-12-18 05:37:40 t 1 1 201981 738 0.00 2019-12-18 05:38:24 2019-12-18 05:39:25 t 1 1 201984 738 0.00 2019-12-18 05:42:29 2019-12-18 05:42:31 t 1 1 201987 738 0.00 2019-12-18 05:47:22 2019-12-18 05:47:25 t 1 1 201988 562 0.00 2019-12-18 05:49:36 2019-12-18 05:50:09 t 1 1 202002 738 0.00 2019-12-18 06:12:49 2019-12-18 06:13:50 t 1 1 202003 481 0.00 2019-12-18 06:13:31 2019-12-18 06:16:00 t 1 1 202004 738 0.00 2019-12-18 06:17:31 2019-12-18 06:18:58 t 1 1 202005 562 0.00 2019-12-18 06:22:33 2019-12-18 06:22:45 t 1 1 202009 738 0.00 2019-12-18 06:27:33 2019-12-18 06:28:44 t 1 1 202010 220 0.00 2019-12-18 04:58:39 2019-12-18 06:30:10 t 1 2 202015 738 0.00 2019-12-18 06:36:04 2019-12-18 06:37:58 t 1 1 202016 707 0.00 2019-12-18 06:36:23 2019-12-18 06:41:19 t 1 1 202022 459 0.00 2019-12-18 06:48:46 2019-12-18 06:48:57 t 1 2 202023 516 0.00 2019-12-18 06:36:19 2019-12-18 06:50:07 t 1 1 202027 562 0.00 2019-12-18 06:55:12 2019-12-18 06:55:24 t 1 1 202030 738 0.00 2019-12-18 06:56:33 2019-12-18 06:56:35 t 1 1 202032 738 0.00 2019-12-18 07:01:22 2019-12-18 07:01:23 t 1 1 202036 562 0.00 2019-12-18 07:05:48 2019-12-18 07:06:23 t 1 1 202039 738 0.00 2019-12-18 07:11:37 2019-12-18 07:11:39 t 1 1 202040 738 0.00 2019-12-18 07:12:27 2019-12-18 07:12:29 t 1 1 202043 562 0.00 2019-12-18 07:16:57 2019-12-18 07:17:05 t 1 1 202046 738 0.00 2019-12-18 07:21:44 2019-12-18 07:21:56 t 1 1 202048 220 0.00 2019-12-18 07:05:54 2019-12-18 07:27:17 t 1 2 202050 625 0.00 2019-12-18 01:27:32 2019-12-18 07:27:56 t 1 1 202057 635 0.00 2019-12-18 07:35:23 2019-12-18 07:39:21 t 1 1 202066 581 0.00 2019-12-18 07:46:00 2019-12-18 07:46:54 t 1 1 202067 738 0.00 2019-12-18 07:47:16 2019-12-18 07:47:36 t 1 1 202072 581 0.00 2019-12-18 07:51:50 2019-12-18 07:52:29 t 1 1 202076 581 0.00 2019-12-18 07:53:25 2019-12-18 07:53:37 t 1 1 202077 581 0.00 2019-12-18 07:53:47 2019-12-18 07:54:06 t 1 1 202078 581 0.00 2019-12-18 07:54:12 2019-12-18 07:54:17 t 1 1 202079 562 0.00 2019-12-18 07:54:57 2019-12-18 07:56:02 t 1 1 202083 738 0.00 2019-12-18 07:58:12 2019-12-18 07:58:34 t 1 1 202088 707 0.00 2019-12-18 07:30:41 2019-12-18 08:05:27 t 1 1 202090 581 0.00 2019-12-18 08:07:41 2019-12-18 08:07:43 t 1 1 202092 738 0.00 2019-12-18 08:09:03 2019-12-18 08:09:25 t 1 1 202093 581 0.00 2019-12-18 08:08:40 2019-12-18 08:09:39 t 1 1 202094 581 0.00 2019-12-18 08:09:47 2019-12-18 08:09:49 t 1 1 202095 675 0.00 2019-12-18 08:10:03 2019-12-18 08:11:35 t 1 1 202096 562 0.00 2019-12-18 08:12:58 2019-12-18 08:13:06 t 1 1 202097 581 0.00 2019-12-18 08:12:05 2019-12-18 08:13:27 t 1 1 202098 545 0.00 2019-12-18 07:53:37 2019-12-18 08:14:57 t 1 1 202099 633 0.00 2019-12-18 08:14:40 2019-12-18 08:15:32 t 1 1 202102 734 0.00 2019-12-18 07:40:09 2019-12-18 08:21:10 t 1 1 202103 738 0.00 2019-12-18 08:20:42 2019-12-18 08:21:43 t 1 1 202105 738 0.00 2019-12-18 08:20:36 2019-12-18 08:21:59 t 1 1 202106 625 0.00 2019-12-18 07:36:10 2019-12-18 08:22:03 t 1 1 202108 742 0.00 2019-12-18 08:23:17 2019-12-18 08:25:31 t 1 1 202109 738 0.00 2019-12-18 08:25:23 2019-12-18 08:26:59 t 1 1 202110 738 0.00 2019-12-18 08:28:31 2019-12-18 08:28:44 t 1 1 202112 622 0.00 2019-12-18 08:12:07 2019-12-18 08:32:01 t 1 1 202114 673 0.00 2019-12-18 08:26:28 2019-12-18 08:34:01 t 1 1 202115 562 0.00 2019-12-18 08:34:20 2019-12-18 08:34:30 t 1 1 202116 516 0.00 2019-12-18 08:22:30 2019-12-18 08:36:46 t 1 1 201926 679 0.00 2019-12-18 02:07:23 2019-12-18 02:08:58 t 1 1 201927 562 0.00 2019-12-18 02:09:42 2019-12-18 02:09:57 t 1 1 201928 514 0.00 2019-12-18 01:53:58 2019-12-18 02:11:15 t 1 1 201934 562 0.00 2019-12-18 02:42:01 2019-12-18 02:42:12 t 1 1 201936 562 0.00 2019-12-18 02:52:53 2019-12-18 02:53:00 t 1 1 201938 562 0.00 2019-12-18 03:03:41 2019-12-18 03:03:49 t 1 1 201941 687 0.00 2019-12-18 03:08:45 2019-12-18 03:14:47 t 1 1 201946 562 0.00 2019-12-18 03:36:01 2019-12-18 03:36:10 t 1 1 201948 687 0.00 2019-12-18 03:22:21 2019-12-18 03:37:16 t 1 1 201953 675 0.00 2019-12-18 03:40:07 2019-12-18 03:59:12 t 1 1 201958 562 0.00 2019-12-18 04:36:51 2019-12-18 04:37:00 t 1 1 201962 562 0.00 2019-12-18 04:55:05 2019-12-18 04:55:19 t 1 1 201967 562 0.00 2019-12-18 05:16:40 2019-12-18 05:16:49 t 1 1 201969 738 0.00 2019-12-18 05:18:08 2019-12-18 05:18:35 t 1 1 201971 738 0.00 2019-12-18 05:21:31 2019-12-18 05:21:34 t 1 1 201976 738 0.00 2019-12-18 05:34:30 2019-12-18 05:34:51 t 1 1 201992 564 0.00 2019-12-18 05:54:51 2019-12-18 05:59:48 t 1 1 201994 722 0.00 2019-12-18 05:52:55 2019-12-18 06:01:15 t 1 1 201996 738 0.00 2019-12-18 06:02:17 2019-12-18 06:03:58 t 1 1 201997 738 0.00 2019-12-18 06:07:40 2019-12-18 06:07:43 t 1 1 201999 738 0.00 2019-12-18 06:08:08 2019-12-18 06:08:09 t 1 1 202013 562 0.00 2019-12-18 06:33:25 2019-12-18 06:33:35 t 1 1 202014 516 0.00 2019-12-18 06:30:54 2019-12-18 06:36:19 t 1 1 202017 694 0.00 2019-12-18 00:32:26 2019-12-18 06:42:03 t 1 1 202018 738 0.00 2019-12-18 06:41:48 2019-12-18 06:42:38 t 1 1 202020 738 0.00 2019-12-18 06:46:10 2019-12-18 06:46:11 t 1 1 202024 738 0.00 2019-12-18 06:51:16 2019-12-18 06:51:18 t 1 1 202026 516 0.00 2019-12-18 06:50:07 2019-12-18 06:54:14 t 1 1 202031 516 0.00 2019-12-18 06:54:14 2019-12-18 06:59:29 t 1 1 202033 738 0.00 2019-12-18 07:01:29 2019-12-18 07:01:30 t 1 1 202034 738 0.00 2019-12-18 07:02:21 2019-12-18 07:02:32 t 1 1 202037 738 0.00 2019-12-18 07:06:29 2019-12-18 07:06:36 t 1 1 202044 738 0.00 2019-12-18 07:16:41 2019-12-18 07:17:42 t 1 1 202049 562 0.00 2019-12-18 07:27:36 2019-12-18 07:27:52 t 1 1 202054 627 0.00 2019-12-18 07:36:00 2019-12-18 07:36:17 t 1 1 202055 738 0.00 2019-12-18 07:37:02 2019-12-18 07:37:33 t 1 1 202061 562 0.00 2019-12-18 07:41:01 2019-12-18 07:41:46 t 1 1 202062 581 0.00 2019-12-18 07:41:23 2019-12-18 07:42:58 t 1 1 202063 738 0.00 2019-12-18 07:42:27 2019-12-18 07:43:51 t 1 1 202064 738 0.00 2019-12-18 07:44:03 2019-12-18 07:44:10 t 1 1 202068 738 0.00 2019-12-18 07:47:50 2019-12-18 07:48:58 t 1 1 202070 581 0.00 2019-12-18 07:50:49 2019-12-18 07:51:02 t 1 1 202073 581 0.00 2019-12-18 07:51:19 2019-12-18 07:52:58 t 1 1 202074 738 0.00 2019-12-18 07:52:45 2019-12-18 07:53:10 t 1 1 202081 581 0.00 2019-12-18 07:58:00 2019-12-18 07:58:11 t 1 1 202084 694 0.00 2019-12-18 07:31:32 2019-12-18 08:02:17 t 1 1 202086 738 0.00 2019-12-18 08:03:38 2019-12-18 08:04:00 t 1 1 202089 581 0.00 2019-12-18 08:07:14 2019-12-18 08:07:33 t 1 1 202091 581 0.00 2019-12-18 08:08:22 2019-12-18 08:08:30 t 1 1 202100 738 0.00 2019-12-18 08:14:30 2019-12-18 08:15:48 t 1 1 202101 738 0.00 2019-12-18 08:19:56 2019-12-18 08:20:22 t 1 1 202104 673 0.00 2019-12-18 08:16:37 2019-12-18 08:21:56 t 1 1 202107 562 0.00 2019-12-18 08:23:41 2019-12-18 08:23:51 t 1 1 202111 738 0.00 2019-12-18 08:30:28 2019-12-18 08:30:30 t 1 1 202113 738 0.00 2019-12-18 08:33:17 2019-12-18 08:33:20 t 1 1 202117 738 0.00 2019-12-18 08:34:54 2019-12-18 08:36:57 t 1 1 202118 392 0.00 2019-12-18 08:32:23 2019-12-18 08:37:29 t 1 2 202119 637 0.00 2019-12-18 08:05:06 2019-12-18 08:38:32 t 1 1 202120 615 0.00 2019-12-18 08:29:29 2019-12-18 08:39:22 t 1 1 202121 622 0.00 2019-12-18 08:32:01 2019-12-18 08:39:56 t 1 1 202122 673 0.00 2019-12-18 08:39:51 2019-12-18 08:42:12 t 1 1 202123 581 0.00 2019-12-18 08:40:44 2019-12-18 08:45:08 t 1 1 202124 562 0.00 2019-12-18 08:45:04 2019-12-18 08:45:10 t 1 1 202125 615 0.00 2019-12-18 08:39:22 2019-12-18 08:46:13 t 1 1 202126 481 0.00 2019-12-18 07:58:24 2019-12-18 08:46:34 t 1 1 202127 622 0.00 2019-12-18 08:39:56 2019-12-18 08:47:44 t 1 1 202128 581 0.00 2019-12-18 08:46:55 2019-12-18 08:50:43 t 1 1 202129 637 0.00 2019-12-18 08:39:06 2019-12-18 08:52:40 t 1 1 202130 591 0.00 2019-12-18 07:47:52 2019-12-18 08:53:10 t 1 1 202131 622 0.00 2019-12-18 08:47:44 2019-12-18 08:54:36 t 1 1 202132 581 0.00 2019-12-18 08:54:38 2019-12-18 08:55:11 t 1 1 202133 514 0.00 2019-12-18 08:48:27 2019-12-18 08:55:13 t 1 1 202134 562 0.00 2019-12-18 08:55:38 2019-12-18 08:55:46 t 1 1 202135 581 0.00 2019-12-18 08:55:52 2019-12-18 08:56:20 t 1 1 202136 637 0.00 2019-12-18 08:53:13 2019-12-18 08:56:20 t 1 1 202137 581 0.00 2019-12-18 08:55:40 2019-12-18 08:56:59 t 1 1 202138 581 0.00 2019-12-18 08:57:17 2019-12-18 08:57:18 t 1 1 202139 562 0.00 2019-12-18 08:57:10 2019-12-18 08:58:45 t 1 1 202140 581 0.00 2019-12-18 09:02:09 2019-12-18 09:02:28 t 1 1 202141 545 0.00 2019-12-18 08:14:58 2019-12-18 09:02:49 t 1 1 202142 562 0.00 2019-12-18 09:04:03 2019-12-18 09:06:18 t 1 1 202143 581 0.00 2019-12-18 09:04:36 2019-12-18 09:06:54 t 1 1 202144 622 0.00 2019-12-18 08:54:36 2019-12-18 09:07:07 t 1 1 202145 679 0.00 2019-12-18 09:05:35 2019-12-18 09:07:12 t 1 1 202146 622 0.00 2019-12-18 09:07:07 2019-12-18 09:08:15 t 1 1 202147 581 0.00 2019-12-18 09:08:17 2019-12-18 09:09:32 t 1 1 202148 615 0.00 2019-12-18 09:02:27 2019-12-18 09:09:47 t 1 1 202149 562 0.00 2019-12-18 09:08:50 2019-12-18 09:09:58 t 1 1 202150 514 0.00 2019-12-18 08:55:22 2019-12-18 09:10:41 t 1 1 202151 392 0.00 2019-12-18 08:38:23 2019-12-18 09:11:50 t 1 2 202152 562 0.00 2019-12-18 09:13:27 2019-12-18 09:13:38 t 1 1 202153 615 0.00 2019-12-18 09:09:47 2019-12-18 09:13:58 t 1 1 202154 611 0.00 2019-12-18 08:49:04 2019-12-18 09:15:35 t 1 1 202155 562 0.00 2019-12-18 09:14:21 2019-12-18 09:15:59 t 1 1 202156 615 0.00 2019-12-18 09:14:15 2019-12-18 09:16:47 t 1 1 202157 581 0.00 2019-12-18 09:10:43 2019-12-18 09:17:06 t 1 1 202158 637 0.00 2019-12-18 08:56:27 2019-12-18 09:18:43 t 1 1 202159 675 0.00 2019-12-18 09:13:22 2019-12-18 09:20:24 t 1 1 202160 673 0.00 2019-12-18 08:58:10 2019-12-18 09:21:44 t 1 1 202161 562 0.00 2019-12-18 09:22:49 2019-12-18 09:23:00 t 1 1 202162 514 0.00 2019-12-18 09:10:41 2019-12-18 09:23:02 t 1 1 202163 673 0.00 2019-12-18 09:21:44 2019-12-18 09:23:13 t 1 1 202164 581 0.00 2019-12-18 09:20:05 2019-12-18 09:24:14 t 1 1 202165 514 0.00 2019-12-18 09:23:14 2019-12-18 09:25:58 t 1 1 202166 611 0.00 2019-12-18 09:15:35 2019-12-18 09:27:43 t 1 1 202167 581 0.00 2019-12-18 09:29:31 2019-12-18 09:30:34 t 1 1 202168 625 0.00 2019-12-18 08:26:01 2019-12-18 09:31:35 t 1 1 202169 562 0.00 2019-12-18 09:28:15 2019-12-18 09:33:10 t 1 1 202170 691 0.00 2019-12-18 09:33:57 2019-12-18 09:36:07 t 1 1 202172 562 0.00 2019-12-18 09:36:02 2019-12-18 09:36:51 t 1 1 202174 691 0.00 2019-12-18 09:37:24 2019-12-18 09:37:34 t 1 1 202180 667 0.00 2019-12-18 09:30:37 2019-12-18 09:42:52 t 1 1 202181 637 0.00 2019-12-18 09:39:33 2019-12-18 09:43:02 t 1 1 202194 562 0.00 2019-12-18 09:51:56 2019-12-18 09:52:40 t 1 1 202196 615 0.00 2019-12-18 09:44:33 2019-12-18 09:52:59 t 1 1 202198 562 0.00 2019-12-18 09:53:32 2019-12-18 09:54:48 t 1 1 202202 667 0.00 2019-12-18 09:51:41 2019-12-18 09:59:06 t 1 1 202203 707 0.00 2019-12-18 09:50:40 2019-12-18 09:59:14 t 1 1 202205 591 0.00 2019-12-18 09:45:31 2019-12-18 09:59:41 t 1 1 202208 724 0.00 2019-12-18 08:48:41 2019-12-18 10:02:28 t 1 1 202211 687 0.00 2019-12-18 09:58:19 2019-12-18 10:04:37 t 1 1 202215 578 0.00 2019-12-18 09:52:57 2019-12-18 10:09:38 t 1 1 202217 538 0.00 2019-12-18 08:57:11 2019-12-18 10:10:31 t 1 1 202220 694 0.00 2019-12-18 10:00:13 2019-12-18 10:10:55 t 1 1 202230 734 0.00 2019-12-18 10:07:08 2019-12-18 10:27:35 t 1 1 202232 687 0.00 2019-12-18 10:24:14 2019-12-18 10:27:56 t 1 1 202234 694 0.00 2019-12-18 10:11:01 2019-12-18 10:28:43 t 1 1 202235 667 0.00 2019-12-18 10:23:35 2019-12-18 10:29:48 t 1 1 202238 611 0.00 2019-12-18 10:27:32 2019-12-18 10:36:07 t 1 1 202239 578 0.00 2019-12-18 10:09:38 2019-12-18 10:38:07 t 1 1 202241 514 0.00 2019-12-18 10:38:26 2019-12-18 10:39:22 t 1 1 202242 675 0.00 2019-12-18 10:13:31 2019-12-18 10:40:10 t 1 1 202244 392 0.00 2019-12-18 10:30:01 2019-12-18 10:42:01 t 1 2 202245 615 0.00 2019-12-18 10:35:35 2019-12-18 10:42:19 t 1 1 202256 679 0.00 2019-12-18 10:53:38 2019-12-18 10:53:50 t 1 1 202257 679 0.00 2019-12-18 10:53:56 2019-12-18 10:54:12 t 1 1 202261 679 0.00 2019-12-18 10:55:07 2019-12-18 10:55:33 t 1 1 202264 615 0.00 2019-12-18 10:49:42 2019-12-18 10:56:41 t 1 1 202265 679 0.00 2019-12-18 10:56:45 2019-12-18 10:57:06 t 1 1 202266 679 0.00 2019-12-18 10:57:13 2019-12-18 10:57:35 t 1 1 202272 679 0.00 2019-12-18 11:00:37 2019-12-18 11:00:52 t 1 1 202273 679 0.00 2019-12-18 11:00:58 2019-12-18 11:01:13 t 1 1 202276 694 0.00 2019-12-18 10:31:15 2019-12-18 11:02:12 t 1 1 202278 687 0.00 2019-12-18 10:48:01 2019-12-18 11:02:50 t 1 1 202280 679 0.00 2019-12-18 11:02:49 2019-12-18 11:03:05 t 1 1 202285 679 0.00 2019-12-18 11:03:54 2019-12-18 11:04:06 t 1 1 202287 679 0.00 2019-12-18 11:04:12 2019-12-18 11:04:48 t 1 1 202290 615 0.00 2019-12-18 10:56:41 2019-12-18 11:05:44 t 1 1 202292 679 0.00 2019-12-18 11:05:52 2019-12-18 11:06:22 t 1 1 202294 681 0.00 2019-12-18 11:05:54 2019-12-18 11:07:08 t 1 1 202298 667 0.00 2019-12-18 10:55:02 2019-12-18 11:08:18 t 1 1 202299 562 0.00 2019-12-18 11:06:50 2019-12-18 11:08:27 t 1 1 202303 679 0.00 2019-12-18 11:09:23 2019-12-18 11:09:54 t 1 1 202304 734 0.00 2019-12-18 10:34:22 2019-12-18 11:10:09 t 1 1 202306 687 0.00 2019-12-18 11:06:07 2019-12-18 11:10:44 t 1 1 202309 611 0.00 2019-12-18 11:08:36 2019-12-18 11:12:30 t 1 1 202313 679 0.00 2019-12-18 11:14:01 2019-12-18 11:14:22 t 1 1 202322 667 0.00 2019-12-18 11:17:19 2019-12-18 11:17:19 t 1 1 202327 679 0.00 2019-12-18 11:15:49 2019-12-18 11:18:58 t 1 1 202330 611 0.00 2019-12-18 11:14:16 2019-12-18 11:20:39 t 1 1 202340 694 0.00 2019-12-18 11:18:38 2019-12-18 11:28:37 t 1 1 202342 679 0.00 2019-12-18 11:21:10 2019-12-18 11:30:40 t 1 1 202350 681 0.00 2019-12-18 11:19:00 2019-12-18 11:32:36 t 1 1 202351 679 0.00 2019-12-18 11:32:42 2019-12-18 11:32:53 t 1 1 202353 679 0.00 2019-12-18 11:33:19 2019-12-18 11:33:36 t 1 1 202355 679 0.00 2019-12-18 11:34:12 2019-12-18 11:34:32 t 1 1 202356 679 0.00 2019-12-18 11:34:38 2019-12-18 11:34:53 t 1 1 202359 679 0.00 2019-12-18 11:35:15 2019-12-18 11:35:34 t 1 1 202361 679 0.00 2019-12-18 11:35:40 2019-12-18 11:36:00 t 1 1 202362 679 0.00 2019-12-18 11:36:06 2019-12-18 11:36:20 t 1 1 202363 562 0.00 2019-12-18 11:34:13 2019-12-18 11:37:07 t 1 1 202366 694 0.00 2019-12-18 11:28:46 2019-12-18 11:38:51 t 1 1 202368 562 0.00 2019-12-18 11:37:44 2019-12-18 11:39:06 t 1 1 202369 687 0.00 2019-12-18 11:29:25 2019-12-18 11:39:12 t 1 1 202371 679 0.00 2019-12-18 11:39:27 2019-12-18 11:39:42 t 1 1 202372 694 0.00 2019-12-18 11:39:09 2019-12-18 11:39:49 t 1 1 202375 679 0.00 2019-12-18 11:40:10 2019-12-18 11:40:26 t 1 1 202378 679 0.00 2019-12-18 11:41:35 2019-12-18 11:41:52 t 1 1 202380 615 0.00 2019-12-18 11:30:21 2019-12-18 11:41:57 t 1 1 202381 667 0.00 2019-12-18 11:41:39 2019-12-18 11:42:13 t 1 1 202387 611 0.00 2019-12-18 11:32:07 2019-12-18 11:45:49 t 1 1 202390 724 0.00 2019-12-18 10:05:19 2019-12-18 11:50:19 t 1 1 202395 611 0.00 2019-12-18 11:45:49 2019-12-18 11:56:39 t 1 1 202396 679 0.00 2019-12-18 11:54:40 2019-12-18 11:59:23 t 1 1 202398 611 0.00 2019-12-18 11:56:39 2019-12-18 11:59:59 t 1 1 202400 625 0.00 2019-12-18 11:32:12 2019-12-18 12:08:39 t 1 1 202401 562 0.00 2019-12-18 12:03:03 2019-12-18 12:09:33 t 1 1 202402 562 0.00 2019-12-18 12:10:28 2019-12-18 12:10:33 t 1 1 202404 734 0.00 2019-12-18 11:37:17 2019-12-18 12:10:42 t 1 1 202410 562 0.00 2019-12-18 12:15:58 2019-12-18 12:16:06 t 1 1 202412 538 0.00 2019-12-18 10:11:29 2019-12-18 12:16:51 t 1 1 202416 562 0.00 2019-12-18 12:19:13 2019-12-18 12:19:52 t 1 1 202421 562 0.00 2019-12-18 12:23:55 2019-12-18 12:26:43 t 1 1 202423 736 0.00 2019-12-18 12:21:25 2019-12-18 12:29:46 t 1 1 202424 392 0.00 2019-12-18 12:12:10 2019-12-18 12:30:00 t 1 2 202425 681 0.00 2019-12-18 12:24:57 2019-12-18 12:30:35 t 1 1 202431 637 0.00 2019-12-18 12:22:29 2019-12-18 12:35:35 t 1 1 202433 591 0.00 2019-12-18 11:40:15 2019-12-18 12:36:20 t 1 1 202439 707 0.00 2019-12-18 12:37:01 2019-12-18 12:45:53 t 1 1 202440 562 0.00 2019-12-18 12:45:44 2019-12-18 12:46:28 t 1 1 202443 490 0.00 2019-12-18 12:47:04 2019-12-18 12:51:46 t 1 1 202444 562 0.00 2019-12-18 12:53:03 2019-12-18 12:53:12 t 1 1 202446 581 0.00 2019-12-18 12:47:30 2019-12-18 12:54:28 t 1 1 202448 635 0.00 2019-12-18 11:45:02 2019-12-18 12:55:24 t 1 1 202449 679 0.00 2019-12-18 12:34:42 2019-12-18 12:56:33 t 1 1 202450 481 0.00 2019-12-18 11:22:59 2019-12-18 12:57:48 t 1 1 202451 311 0.00 2019-12-18 12:40:46 2019-12-18 12:59:09 t 1 2 202454 734 0.00 2019-12-18 12:58:22 2019-12-18 13:02:56 t 1 1 202458 578 0.00 2019-12-18 11:15:00 2019-12-18 13:07:06 t 1 1 202461 736 0.00 2019-12-18 12:54:26 2019-12-18 13:09:24 t 1 1 202465 679 0.00 2019-12-18 13:13:05 2019-12-18 13:13:16 t 1 1 202466 679 0.00 2019-12-18 13:13:22 2019-12-18 13:13:38 t 1 1 202470 679 0.00 2019-12-18 13:14:15 2019-12-18 13:14:30 t 1 1 202474 545 0.00 2019-12-18 13:02:55 2019-12-18 13:15:42 t 1 1 202171 683 0.00 2019-12-18 09:29:15 2019-12-18 09:36:49 t 1 1 202173 683 0.00 2019-12-18 09:36:11 2019-12-18 09:37:12 t 1 1 202175 562 0.00 2019-12-18 09:38:14 2019-12-18 09:39:01 t 1 1 202176 637 0.00 2019-12-18 09:18:43 2019-12-18 09:39:34 t 1 1 202178 709 0.00 2019-12-18 09:37:17 2019-12-18 09:42:03 t 1 1 202179 562 0.00 2019-12-18 09:40:47 2019-12-18 09:42:17 t 1 1 202185 591 0.00 2019-12-18 09:38:05 2019-12-18 09:45:31 t 1 1 202188 545 0.00 2019-12-18 09:31:44 2019-12-18 09:49:29 t 1 1 202190 545 0.00 2019-12-18 09:49:29 2019-12-18 09:50:49 t 1 1 202192 667 0.00 2019-12-18 09:50:51 2019-12-18 09:51:04 t 1 1 202193 687 0.00 2019-12-18 09:48:45 2019-12-18 09:51:35 t 1 1 202197 562 0.00 2019-12-18 09:51:29 2019-12-18 09:53:00 t 1 1 202199 562 0.00 2019-12-18 09:55:11 2019-12-18 09:57:07 t 1 1 202200 622 0.00 2019-12-18 09:29:39 2019-12-18 09:58:11 t 1 1 202204 691 0.00 2019-12-18 09:59:24 2019-12-18 09:59:32 t 1 1 202206 694 0.00 2019-12-18 09:54:33 2019-12-18 09:59:57 t 1 1 202207 637 0.00 2019-12-18 09:53:47 2019-12-18 10:00:30 t 1 1 202210 562 0.00 2019-12-18 09:57:54 2019-12-18 10:04:11 t 1 1 202216 667 0.00 2019-12-18 09:59:06 2019-12-18 10:09:58 t 1 1 202219 675 0.00 2019-12-18 10:06:55 2019-12-18 10:10:48 t 1 1 202221 625 0.00 2019-12-18 09:31:35 2019-12-18 10:11:41 t 1 1 202224 562 0.00 2019-12-18 10:20:42 2019-12-18 10:21:14 t 1 1 202225 667 0.00 2019-12-18 10:09:58 2019-12-18 10:23:35 t 1 1 202226 687 0.00 2019-12-18 10:05:10 2019-12-18 10:24:14 t 1 1 202228 622 0.00 2019-12-18 10:09:31 2019-12-18 10:24:16 t 1 1 202240 514 0.00 2019-12-18 09:48:48 2019-12-18 10:38:27 t 1 1 202243 718 0.00 2019-12-18 10:39:46 2019-12-18 10:41:22 t 1 1 202248 687 0.00 2019-12-18 10:28:05 2019-12-18 10:48:01 t 1 1 202250 615 0.00 2019-12-18 10:42:19 2019-12-18 10:49:42 t 1 1 202251 514 0.00 2019-12-18 10:39:21 2019-12-18 10:50:47 t 1 1 202253 679 0.00 2019-12-18 10:50:54 2019-12-18 10:52:27 t 1 1 202258 679 0.00 2019-12-18 10:54:18 2019-12-18 10:54:39 t 1 1 202260 667 0.00 2019-12-18 10:43:17 2019-12-18 10:55:02 t 1 1 202262 679 0.00 2019-12-18 10:55:39 2019-12-18 10:55:54 t 1 1 202263 679 0.00 2019-12-18 10:56:00 2019-12-18 10:56:39 t 1 1 202270 562 0.00 2019-12-18 10:58:24 2019-12-18 10:59:33 t 1 1 202274 679 0.00 2019-12-18 11:01:19 2019-12-18 11:01:40 t 1 1 202275 679 0.00 2019-12-18 11:01:46 2019-12-18 11:02:01 t 1 1 202279 694 0.00 2019-12-18 11:02:11 2019-12-18 11:02:59 t 1 1 202281 679 0.00 2019-12-18 11:03:11 2019-12-18 11:03:26 t 1 1 202283 637 0.00 2019-12-18 10:22:12 2019-12-18 11:03:37 t 1 1 202286 694 0.00 2019-12-18 11:02:58 2019-12-18 11:04:40 t 1 1 202288 562 0.00 2019-12-18 11:04:35 2019-12-18 11:05:03 t 1 1 202293 679 0.00 2019-12-18 11:06:28 2019-12-18 11:06:50 t 1 1 202297 679 0.00 2019-12-18 11:07:55 2019-12-18 11:08:13 t 1 1 202308 562 0.00 2019-12-18 11:12:07 2019-12-18 11:12:21 t 1 1 202311 679 0.00 2019-12-18 11:10:17 2019-12-18 11:13:30 t 1 1 202312 679 0.00 2019-12-18 11:13:36 2019-12-18 11:13:55 t 1 1 202314 679 0.00 2019-12-18 11:14:28 2019-12-18 11:14:43 t 1 1 202315 578 0.00 2019-12-18 11:11:48 2019-12-18 11:14:57 t 1 1 202318 679 0.00 2019-12-18 11:15:10 2019-12-18 11:15:24 t 1 1 202320 649 0.00 2019-12-18 11:13:37 2019-12-18 11:16:21 t 1 1 202324 656 0.00 2019-12-18 11:12:08 2019-12-18 11:18:05 t 1 1 202326 681 0.00 2019-12-18 11:07:15 2019-12-18 11:18:50 t 1 1 202335 687 0.00 2019-12-18 11:11:34 2019-12-18 11:24:02 t 1 1 202336 611 0.00 2019-12-18 11:22:52 2019-12-18 11:25:02 t 1 1 202338 622 0.00 2019-12-18 11:21:21 2019-12-18 11:25:48 t 1 1 202339 696 0.00 2019-12-18 11:16:14 2019-12-18 11:27:29 t 1 1 202341 637 0.00 2019-12-18 11:03:44 2019-12-18 11:29:50 t 1 1 202344 679 0.00 2019-12-18 11:30:46 2019-12-18 11:31:37 t 1 1 202346 611 0.00 2019-12-18 11:29:32 2019-12-18 11:32:00 t 1 1 202349 679 0.00 2019-12-18 11:32:04 2019-12-18 11:32:36 t 1 1 202354 679 0.00 2019-12-18 11:33:42 2019-12-18 11:34:07 t 1 1 202376 679 0.00 2019-12-18 11:40:32 2019-12-18 11:40:48 t 1 1 202377 679 0.00 2019-12-18 11:40:54 2019-12-18 11:41:30 t 1 1 202379 694 0.00 2019-12-18 11:39:49 2019-12-18 11:41:54 t 1 1 202386 679 0.00 2019-12-18 11:43:40 2019-12-18 11:44:26 t 1 1 202391 562 0.00 2019-12-18 11:50:42 2019-12-18 11:50:46 t 1 1 202393 675 0.00 2019-12-18 11:34:43 2019-12-18 11:53:49 t 1 1 202397 562 0.00 2019-12-18 11:59:34 2019-12-18 11:59:38 t 1 1 202405 615 0.00 2019-12-18 12:01:43 2019-12-18 12:11:46 t 1 1 202406 675 0.00 2019-12-18 12:10:38 2019-12-18 12:13:08 t 1 1 202408 562 0.00 2019-12-18 12:13:31 2019-12-18 12:15:12 t 1 1 202411 637 0.00 2019-12-18 12:03:45 2019-12-18 12:16:44 t 1 1 202415 637 0.00 2019-12-18 12:16:52 2019-12-18 12:19:37 t 1 1 202417 562 0.00 2019-12-18 12:21:11 2019-12-18 12:21:40 t 1 1 202418 545 0.00 2019-12-18 12:17:28 2019-12-18 12:22:30 t 1 1 202419 538 0.00 2019-12-18 12:16:55 2019-12-18 12:24:49 t 1 1 202420 694 0.00 2019-12-18 11:41:53 2019-12-18 12:26:24 t 1 1 202422 562 0.00 2019-12-18 12:27:28 2019-12-18 12:28:17 t 1 1 202426 615 0.00 2019-12-18 12:11:46 2019-12-18 12:30:35 t 1 1 202427 736 0.00 2019-12-18 12:30:25 2019-12-18 12:31:39 t 1 1 202428 694 0.00 2019-12-18 12:26:24 2019-12-18 12:32:58 t 1 1 202430 615 0.00 2019-12-18 12:30:35 2019-12-18 12:35:26 t 1 1 202432 675 0.00 2019-12-18 12:29:44 2019-12-18 12:36:09 t 1 1 202435 562 0.00 2019-12-18 12:37:57 2019-12-18 12:38:11 t 1 1 202442 736 0.00 2019-12-18 12:31:39 2019-12-18 12:51:30 t 1 1 202445 736 0.00 2019-12-18 12:53:17 2019-12-18 12:53:25 t 1 1 202456 660 0.00 2019-12-18 12:54:14 2019-12-18 13:03:03 t 1 1 202457 562 0.00 2019-12-18 13:03:36 2019-12-18 13:04:02 t 1 1 202459 611 0.00 2019-12-18 13:03:51 2019-12-18 13:07:11 t 1 1 202460 392 0.00 2019-12-18 12:33:36 2019-12-18 13:07:55 t 1 2 202462 591 0.00 2019-12-18 13:08:02 2019-12-18 13:09:46 t 1 1 202464 679 0.00 2019-12-18 12:56:52 2019-12-18 13:12:59 t 1 1 202467 679 0.00 2019-12-18 13:13:44 2019-12-18 13:13:46 t 1 1 202471 679 0.00 2019-12-18 13:14:36 2019-12-18 13:14:56 t 1 1 202472 679 0.00 2019-12-18 13:15:02 2019-12-18 13:15:14 t 1 1 202473 679 0.00 2019-12-18 13:15:20 2019-12-18 13:15:39 t 1 1 202475 736 0.00 2019-12-18 13:09:24 2019-12-18 13:15:48 t 1 1 202484 545 0.00 2019-12-18 13:17:59 2019-12-18 13:19:03 t 1 1 202487 687 0.00 2019-12-18 13:20:09 2019-12-18 13:20:59 t 1 1 202491 611 0.00 2019-12-18 13:19:02 2019-12-18 13:22:57 t 1 1 202492 707 0.00 2019-12-18 12:46:11 2019-12-18 13:25:52 t 1 1 202495 673 0.00 2019-12-18 13:08:08 2019-12-18 13:31:20 t 1 1 202498 544 0.00 2019-12-18 13:42:25 2019-12-18 13:42:44 t 1 1 202501 627 0.00 2019-12-18 13:41:13 2019-12-18 13:47:03 t 1 1 202502 627 0.00 2019-12-18 13:47:13 2019-12-18 13:47:22 t 1 1 202177 687 0.00 2019-12-18 09:39:58 2019-12-18 09:41:27 t 1 1 202182 562 0.00 2019-12-18 09:42:57 2019-12-18 09:44:00 t 1 1 202183 615 0.00 2019-12-18 09:37:23 2019-12-18 09:44:33 t 1 1 202184 562 0.00 2019-12-18 09:43:56 2019-12-18 09:45:29 t 1 1 202186 687 0.00 2019-12-18 09:44:08 2019-12-18 09:47:31 t 1 1 202187 562 0.00 2019-12-18 09:47:24 2019-12-18 09:48:28 t 1 1 202189 667 0.00 2019-12-18 09:42:52 2019-12-18 09:50:41 t 1 1 202191 562 0.00 2019-12-18 09:50:13 2019-12-18 09:50:56 t 1 1 202195 578 0.00 2019-12-18 07:12:59 2019-12-18 09:52:57 t 1 1 202201 734 0.00 2019-12-18 09:42:06 2019-12-18 09:58:17 t 1 1 202209 622 0.00 2019-12-18 09:57:30 2019-12-18 10:02:38 t 1 1 202212 498 0.00 2019-12-18 09:20:03 2019-12-18 10:04:44 t 1 2 202213 615 0.00 2019-12-18 09:52:59 2019-12-18 10:05:11 t 1 1 202214 734 0.00 2019-12-18 09:58:17 2019-12-18 10:06:54 t 1 1 202218 562 0.00 2019-12-18 10:10:08 2019-12-18 10:10:38 t 1 1 202222 707 0.00 2019-12-18 10:00:53 2019-12-18 10:12:48 t 1 1 202223 591 0.00 2019-12-18 09:59:41 2019-12-18 10:13:27 t 1 1 202227 562 0.00 2019-12-18 10:23:30 2019-12-18 10:24:16 t 1 1 202229 562 0.00 2019-12-18 10:27:11 2019-12-18 10:27:16 t 1 1 202231 720 0.00 2019-12-18 09:57:16 2019-12-18 10:27:39 t 1 1 202233 481 0.00 2019-12-18 08:46:34 2019-12-18 10:28:18 t 1 1 202236 734 0.00 2019-12-18 10:27:45 2019-12-18 10:32:55 t 1 1 202237 615 0.00 2019-12-18 10:29:38 2019-12-18 10:35:35 t 1 1 202246 667 0.00 2019-12-18 10:29:48 2019-12-18 10:43:17 t 1 1 202247 611 0.00 2019-12-18 10:46:07 2019-12-18 10:47:48 t 1 1 202249 562 0.00 2019-12-18 10:47:43 2019-12-18 10:48:05 t 1 1 202252 679 0.00 2019-12-18 10:39:18 2019-12-18 10:50:54 t 1 1 202254 562 0.00 2019-12-18 10:52:13 2019-12-18 10:52:39 t 1 1 202255 679 0.00 2019-12-18 10:52:33 2019-12-18 10:53:32 t 1 1 202259 679 0.00 2019-12-18 10:54:45 2019-12-18 10:55:01 t 1 1 202267 679 0.00 2019-12-18 10:57:41 2019-12-18 10:58:11 t 1 1 202268 679 0.00 2019-12-18 10:58:17 2019-12-18 10:58:44 t 1 1 202269 649 0.00 2019-12-18 10:42:40 2019-12-18 10:59:25 t 1 1 202271 679 0.00 2019-12-18 10:58:50 2019-12-18 11:00:31 t 1 1 202277 679 0.00 2019-12-18 11:02:07 2019-12-18 11:02:42 t 1 1 202282 681 0.00 2019-12-18 09:31:24 2019-12-18 11:03:32 t 1 1 202284 679 0.00 2019-12-18 11:03:32 2019-12-18 11:03:48 t 1 1 202289 679 0.00 2019-12-18 11:04:54 2019-12-18 11:05:10 t 1 1 202291 679 0.00 2019-12-18 11:05:15 2019-12-18 11:05:46 t 1 1 202295 679 0.00 2019-12-18 11:06:56 2019-12-18 11:07:12 t 1 1 202296 679 0.00 2019-12-18 11:07:18 2019-12-18 11:07:49 t 1 1 202300 679 0.00 2019-12-18 11:08:19 2019-12-18 11:08:34 t 1 1 202301 679 0.00 2019-12-18 11:08:40 2019-12-18 11:08:54 t 1 1 202302 679 0.00 2019-12-18 11:09:00 2019-12-18 11:09:16 t 1 1 202305 679 0.00 2019-12-18 11:10:00 2019-12-18 11:10:12 t 1 1 202307 675 0.00 2019-12-18 10:47:20 2019-12-18 11:10:54 t 1 1 202310 578 0.00 2019-12-18 10:38:07 2019-12-18 11:12:43 t 1 1 202316 679 0.00 2019-12-18 11:14:49 2019-12-18 11:15:04 t 1 1 202317 696 0.00 2019-12-18 11:03:18 2019-12-18 11:15:13 t 1 1 202319 679 0.00 2019-12-18 11:15:29 2019-12-18 11:15:44 t 1 1 202321 667 0.00 2019-12-18 11:08:18 2019-12-18 11:17:08 t 1 1 202323 675 0.00 2019-12-18 11:13:25 2019-12-18 11:17:36 t 1 1 202325 694 0.00 2019-12-18 11:04:40 2019-12-18 11:18:38 t 1 1 202328 679 0.00 2019-12-18 11:19:04 2019-12-18 11:19:57 t 1 1 202329 679 0.00 2019-12-18 11:20:03 2019-12-18 11:20:19 t 1 1 202331 679 0.00 2019-12-18 11:20:25 2019-12-18 11:21:04 t 1 1 202332 622 0.00 2019-12-18 11:14:54 2019-12-18 11:21:17 t 1 1 202333 481 0.00 2019-12-18 10:28:19 2019-12-18 11:23:00 t 1 1 202334 562 0.00 2019-12-18 11:22:43 2019-12-18 11:23:08 t 1 1 202337 667 0.00 2019-12-18 11:24:54 2019-12-18 11:25:26 t 1 1 202343 667 0.00 2019-12-18 11:31:06 2019-12-18 11:31:23 t 1 1 202345 679 0.00 2019-12-18 11:31:42 2019-12-18 11:31:58 t 1 1 202347 625 0.00 2019-12-18 10:11:40 2019-12-18 11:32:12 t 1 1 202348 562 0.00 2019-12-18 11:32:14 2019-12-18 11:32:35 t 1 1 202352 679 0.00 2019-12-18 11:32:59 2019-12-18 11:33:13 t 1 1 202357 696 0.00 2019-12-18 11:27:34 2019-12-18 11:34:57 t 1 1 202358 679 0.00 2019-12-18 11:34:59 2019-12-18 11:35:09 t 1 1 202360 545 0.00 2019-12-18 11:32:33 2019-12-18 11:35:39 t 1 1 202364 667 0.00 2019-12-18 11:37:18 2019-12-18 11:37:49 t 1 1 202365 679 0.00 2019-12-18 11:36:26 2019-12-18 11:38:18 t 1 1 202367 679 0.00 2019-12-18 11:38:24 2019-12-18 11:38:59 t 1 1 202370 679 0.00 2019-12-18 11:39:05 2019-12-18 11:39:21 t 1 1 202373 679 0.00 2019-12-18 11:39:49 2019-12-18 11:40:04 t 1 1 202374 591 0.00 2019-12-18 10:13:27 2019-12-18 11:40:15 t 1 1 202382 679 0.00 2019-12-18 11:41:58 2019-12-18 11:42:15 t 1 1 202383 696 0.00 2019-12-18 11:42:25 2019-12-18 11:43:04 t 1 1 202384 679 0.00 2019-12-18 11:42:21 2019-12-18 11:43:35 t 1 1 202385 687 0.00 2019-12-18 11:41:50 2019-12-18 11:44:08 t 1 1 202388 687 0.00 2019-12-18 11:47:38 2019-12-18 11:49:03 t 1 1 202389 562 0.00 2019-12-18 11:49:05 2019-12-18 11:49:23 t 1 1 202392 679 0.00 2019-12-18 11:44:32 2019-12-18 11:51:58 t 1 1 202394 562 0.00 2019-12-18 11:55:41 2019-12-18 11:56:00 t 1 1 202399 637 0.00 2019-12-18 11:30:06 2019-12-18 12:02:20 t 1 1 202403 675 0.00 2019-12-18 12:02:08 2019-12-18 12:10:38 t 1 1 202407 707 0.00 2019-12-18 11:01:47 2019-12-18 12:13:53 t 1 1 202409 656 0.00 2019-12-18 11:18:05 2019-12-18 12:16:01 t 1 1 202413 724 0.00 2019-12-18 12:14:47 2019-12-18 12:18:44 t 1 1 202414 681 0.00 2019-12-18 11:32:43 2019-12-18 12:19:20 t 1 1 202429 679 0.00 2019-12-18 12:01:44 2019-12-18 12:34:36 t 1 1 202434 581 0.00 2019-12-18 12:25:55 2019-12-18 12:37:45 t 1 1 202436 611 0.00 2019-12-18 12:34:42 2019-12-18 12:39:16 t 1 1 202437 625 0.00 2019-12-18 12:08:39 2019-12-18 12:42:54 t 1 1 202438 538 0.00 2019-12-18 12:23:54 2019-12-18 12:43:18 t 1 1 202441 538 0.00 2019-12-18 12:43:43 2019-12-18 12:49:36 t 1 1 202447 591 0.00 2019-12-18 12:36:20 2019-12-18 12:54:52 t 1 1 202452 459 0.00 2019-12-18 13:01:01 2019-12-18 13:01:13 t 1 2 202453 459 0.00 2019-12-18 13:01:53 2019-12-18 13:02:15 t 1 2 202455 625 0.00 2019-12-18 12:42:54 2019-12-18 13:02:57 t 1 1 202463 562 0.00 2019-12-18 13:08:40 2019-12-18 13:10:09 t 1 1 202468 625 0.00 2019-12-18 13:07:36 2019-12-18 13:13:50 t 1 1 202469 679 0.00 2019-12-18 13:13:52 2019-12-18 13:14:09 t 1 1 202477 679 0.00 2019-12-18 13:15:45 2019-12-18 13:15:55 t 1 1 202478 679 0.00 2019-12-18 13:16:01 2019-12-18 13:16:11 t 1 1 202480 679 0.00 2019-12-18 13:16:17 2019-12-18 13:16:32 t 1 1 202483 611 0.00 2019-12-18 13:13:24 2019-12-18 13:19:03 t 1 1 202485 679 0.00 2019-12-18 13:16:38 2019-12-18 13:20:23 t 1 1 202488 562 0.00 2019-12-18 13:10:44 2019-12-18 13:21:13 t 1 1 202476 660 0.00 2019-12-18 13:03:29 2019-12-18 13:15:49 t 1 1 202479 625 0.00 2019-12-18 13:13:49 2019-12-18 13:16:30 t 1 1 202481 675 0.00 2019-12-18 13:15:19 2019-12-18 13:16:55 t 1 1 202482 498 0.00 2019-12-18 12:55:44 2019-12-18 13:18:00 t 1 2 202486 679 0.00 2019-12-18 13:20:29 2019-12-18 13:20:40 t 1 1 202496 675 0.00 2019-12-18 13:32:25 2019-12-18 13:34:43 t 1 1 202503 562 0.00 2019-12-18 13:44:18 2019-12-18 13:47:51 t 1 1 202506 707 0.00 2019-12-18 13:34:54 2019-12-18 13:52:08 t 1 1 202508 562 0.00 2019-12-18 13:51:53 2019-12-18 13:54:09 t 1 1 202511 691 0.00 2019-12-18 13:56:24 2019-12-18 13:56:41 t 1 1 202513 691 0.00 2019-12-18 13:56:41 2019-12-18 13:57:44 t 1 1 202514 562 0.00 2019-12-18 13:56:21 2019-12-18 13:58:24 t 1 1 202515 564 0.00 2019-12-18 12:52:57 2019-12-18 14:00:36 t 1 1 202522 679 0.00 2019-12-18 14:11:22 2019-12-18 14:11:32 t 1 1 202528 679 0.00 2019-12-18 14:14:10 2019-12-18 14:14:25 t 1 1 202538 627 0.00 2019-12-18 13:49:03 2019-12-18 14:17:38 t 1 1 202544 679 0.00 2019-12-18 14:19:35 2019-12-18 14:19:45 t 1 1 202549 679 0.00 2019-12-18 14:21:16 2019-12-18 14:21:35 t 1 1 202552 679 0.00 2019-12-18 14:21:57 2019-12-18 14:23:17 t 1 1 202559 679 0.00 2019-12-18 14:25:31 2019-12-18 14:25:46 t 1 1 202560 679 0.00 2019-12-18 14:25:51 2019-12-18 14:26:08 t 1 1 202563 679 0.00 2019-12-18 14:26:39 2019-12-18 14:26:49 t 1 1 202564 679 0.00 2019-12-18 14:26:55 2019-12-18 14:27:07 t 1 1 202567 679 0.00 2019-12-18 14:27:51 2019-12-18 14:28:02 t 1 1 202569 627 0.00 2019-12-18 14:17:38 2019-12-18 14:28:38 t 1 1 202571 679 0.00 2019-12-18 14:28:45 2019-12-18 14:29:02 t 1 1 202572 679 0.00 2019-12-18 14:29:08 2019-12-18 14:29:21 t 1 1 202576 544 0.00 2019-12-18 13:46:52 2019-12-18 14:31:32 t 1 1 202580 673 0.00 2019-12-18 13:31:20 2019-12-18 14:35:21 t 1 1 202582 679 0.00 2019-12-18 14:38:56 2019-12-18 14:40:59 t 1 1 202583 736 0.00 2019-12-18 14:41:30 2019-12-18 14:41:40 t 1 1 202584 736 0.00 2019-12-18 14:42:26 2019-12-18 14:42:53 t 1 1 202585 625 0.00 2019-12-18 13:20:06 2019-12-18 14:45:11 t 1 1 202596 736 0.00 2019-12-18 15:06:01 2019-12-18 15:06:10 t 1 1 202599 568 0.00 2019-12-18 15:09:50 2019-12-18 15:10:12 t 1 1 202606 562 0.00 2019-12-18 15:22:59 2019-12-18 15:23:16 t 1 1 202609 562 0.00 2019-12-18 15:33:39 2019-12-18 15:34:05 t 1 1 202613 736 0.00 2019-12-18 15:41:00 2019-12-18 15:41:12 t 1 1 202616 736 0.00 2019-12-18 15:43:13 2019-12-18 15:43:25 t 1 1 202618 736 0.00 2019-12-18 15:44:31 2019-12-18 15:45:14 t 1 1 202621 736 0.00 2019-12-18 15:49:59 2019-12-18 15:50:23 t 1 1 202622 498 0.00 2019-12-18 14:52:48 2019-12-18 15:51:56 t 1 2 202627 736 0.00 2019-12-18 15:55:11 2019-12-18 15:56:03 t 1 1 202631 633 0.00 2019-12-18 15:36:18 2019-12-18 15:58:04 t 1 1 202636 736 0.00 2019-12-18 15:58:53 2019-12-18 16:00:06 t 1 1 202642 562 0.00 2019-12-18 16:03:13 2019-12-18 16:05:06 t 1 1 202644 581 0.00 2019-12-18 16:01:35 2019-12-18 16:06:43 t 1 1 202648 622 0.00 2019-12-18 15:22:30 2019-12-18 16:09:48 t 1 1 202649 562 0.00 2019-12-18 16:08:59 2019-12-18 16:10:25 t 1 1 202654 679 0.00 2019-12-18 15:59:09 2019-12-18 16:12:14 t 1 1 202655 675 0.00 2019-12-18 16:11:08 2019-12-18 16:12:28 t 1 1 202663 679 0.00 2019-12-18 16:13:35 2019-12-18 16:15:35 t 1 1 202664 611 0.00 2019-12-18 16:09:54 2019-12-18 16:16:22 t 1 1 202671 736 0.00 2019-12-18 16:21:43 2019-12-18 16:22:18 t 1 1 202677 581 0.00 2019-12-18 16:33:13 2019-12-18 16:35:23 t 1 1 202678 578 0.00 2019-12-18 16:06:18 2019-12-18 16:38:39 t 1 1 202679 562 0.00 2019-12-18 16:38:05 2019-12-18 16:39:50 t 1 1 202685 562 0.00 2019-12-18 16:45:22 2019-12-18 16:46:24 t 1 1 202688 611 0.00 2019-12-18 16:51:00 2019-12-18 16:53:07 t 1 1 202690 622 0.00 2019-12-18 16:49:29 2019-12-18 16:53:21 t 1 1 202691 611 0.00 2019-12-18 16:53:14 2019-12-18 16:54:14 t 1 1 202696 637 0.00 2019-12-18 16:20:04 2019-12-18 16:57:38 t 1 1 202698 581 0.00 2019-12-18 16:57:59 2019-12-18 17:00:59 t 1 1 202699 611 0.00 2019-12-18 16:55:37 2019-12-18 17:01:24 t 1 1 202703 503 0.00 2019-12-18 17:03:17 2019-12-18 17:04:32 t 1 1 202705 562 0.00 2019-12-18 17:07:01 2019-12-18 17:07:23 t 1 1 202714 675 0.00 2019-12-18 17:12:41 2019-12-18 17:20:58 t 1 1 202717 683 0.00 2019-12-18 17:22:59 2019-12-18 17:25:41 t 1 1 202724 562 0.00 2019-12-18 17:18:22 2019-12-18 17:36:41 t 1 1 202728 311 0.00 2019-12-18 17:29:58 2019-12-18 17:39:21 t 1 2 202730 611 0.00 2019-12-18 17:17:59 2019-12-18 17:40:32 t 1 1 202732 722 0.00 2019-12-18 17:40:24 2019-12-18 17:41:26 t 1 1 202734 687 0.00 2019-12-18 17:39:48 2019-12-18 17:44:10 t 1 1 202736 611 0.00 2019-12-18 17:42:49 2019-12-18 17:46:04 t 1 1 202737 591 0.00 2019-12-18 17:38:23 2019-12-18 17:47:40 t 1 1 202741 625 0.00 2019-12-18 17:38:43 2019-12-18 17:49:43 t 1 1 202744 562 0.00 2019-12-18 17:49:44 2019-12-18 17:52:09 t 1 1 202747 562 0.00 2019-12-18 17:54:59 2019-12-18 17:55:29 t 1 1 202749 625 0.00 2019-12-18 17:49:48 2019-12-18 17:58:18 t 1 1 202751 562 0.00 2019-12-18 17:57:12 2019-12-18 17:58:39 t 1 1 202752 562 0.00 2019-12-18 17:58:49 2019-12-18 17:59:22 t 1 1 202755 722 0.00 2019-12-18 17:58:07 2019-12-18 18:01:33 t 1 1 202758 692 0.00 2019-12-18 18:03:14 2019-12-18 18:03:25 t 1 1 202765 656 0.00 2019-12-18 17:48:06 2019-12-18 18:07:36 t 1 1 202766 675 0.00 2019-12-18 18:03:34 2019-12-18 18:08:11 t 1 1 202771 692 0.00 2019-12-18 18:10:30 2019-12-18 18:11:03 t 1 1 202774 692 0.00 2019-12-18 18:11:37 2019-12-18 18:12:06 t 1 1 202790 692 0.00 2019-12-18 18:27:46 2019-12-18 18:28:03 t 1 1 202791 687 0.00 2019-12-18 18:14:15 2019-12-18 18:28:18 t 1 1 202797 694 0.00 2019-12-18 16:54:39 2019-12-18 18:36:37 t 1 1 202798 692 0.00 2019-12-18 18:36:36 2019-12-18 18:37:39 t 1 1 202807 578 0.00 2019-12-18 16:38:39 2019-12-18 18:43:36 t 1 1 202811 730 0.00 2019-12-18 18:38:33 2019-12-18 18:44:35 t 1 1 202813 692 0.00 2019-12-18 18:44:36 2019-12-18 18:46:21 t 1 1 202814 692 0.00 2019-12-18 18:46:21 2019-12-18 18:47:36 t 1 1 202815 562 0.00 2019-12-18 18:44:42 2019-12-18 18:48:52 t 1 1 202823 692 0.00 2019-12-18 18:54:06 2019-12-18 18:57:19 t 1 1 202829 692 0.00 2019-12-18 19:00:25 2019-12-18 19:00:34 t 1 1 202831 692 0.00 2019-12-18 19:01:09 2019-12-18 19:01:28 t 1 1 202832 562 0.00 2019-12-18 18:53:10 2019-12-18 19:01:57 t 1 1 202836 622 0.00 2019-12-18 19:01:38 2019-12-18 19:04:24 t 1 1 202839 692 0.00 2019-12-18 19:05:27 2019-12-18 19:05:42 t 1 1 202843 692 0.00 2019-12-18 19:06:29 2019-12-18 19:07:05 t 1 1 202852 694 0.00 2019-12-18 19:03:21 2019-12-18 19:10:47 t 1 1 202854 675 0.00 2019-12-18 19:09:16 2019-12-18 19:12:00 t 1 1 202857 581 0.00 2019-12-18 19:11:58 2019-12-18 19:17:04 t 1 1 202859 692 0.00 2019-12-18 19:18:18 2019-12-18 19:18:27 t 1 1 202489 687 0.00 2019-12-18 13:21:27 2019-12-18 13:21:36 t 1 1 202490 679 0.00 2019-12-18 13:20:46 2019-12-18 13:22:24 t 1 1 202493 481 0.00 2019-12-18 12:57:56 2019-12-18 13:26:49 t 1 1 202494 562 0.00 2019-12-18 13:21:13 2019-12-18 13:28:03 t 1 1 202497 627 0.00 2019-12-18 13:33:04 2019-12-18 13:41:13 t 1 1 202499 562 0.00 2019-12-18 13:28:03 2019-12-18 13:44:18 t 1 1 202500 734 0.00 2019-12-18 13:23:58 2019-12-18 13:46:54 t 1 1 202504 679 0.00 2019-12-18 13:31:37 2019-12-18 13:49:05 t 1 1 202510 649 0.00 2019-12-18 13:33:12 2019-12-18 13:56:30 t 1 1 202516 562 0.00 2019-12-18 14:05:18 2019-12-18 14:05:31 t 1 1 202517 538 0.00 2019-12-18 12:49:40 2019-12-18 14:09:49 t 1 1 202520 679 0.00 2019-12-18 14:10:24 2019-12-18 14:10:34 t 1 1 202521 679 0.00 2019-12-18 14:10:40 2019-12-18 14:11:16 t 1 1 202525 562 0.00 2019-12-18 14:13:04 2019-12-18 14:13:19 t 1 1 202531 679 0.00 2019-12-18 14:15:16 2019-12-18 14:15:29 t 1 1 202533 679 0.00 2019-12-18 14:15:36 2019-12-18 14:15:56 t 1 1 202537 679 0.00 2019-12-18 14:17:13 2019-12-18 14:17:28 t 1 1 202540 687 0.00 2019-12-18 14:13:31 2019-12-18 14:18:02 t 1 1 202541 679 0.00 2019-12-18 14:17:59 2019-12-18 14:18:10 t 1 1 202542 679 0.00 2019-12-18 14:18:36 2019-12-18 14:18:38 t 1 1 202543 679 0.00 2019-12-18 14:18:44 2019-12-18 14:19:26 t 1 1 202547 679 0.00 2019-12-18 14:20:37 2019-12-18 14:20:54 t 1 1 202548 679 0.00 2019-12-18 14:21:01 2019-12-18 14:21:11 t 1 1 202555 656 0.00 2019-12-18 12:16:01 2019-12-18 14:24:48 t 1 1 202558 679 0.00 2019-12-18 14:25:16 2019-12-18 14:25:25 t 1 1 202562 538 0.00 2019-12-18 14:16:37 2019-12-18 14:26:39 t 1 1 202566 679 0.00 2019-12-18 14:27:35 2019-12-18 14:27:45 t 1 1 202568 679 0.00 2019-12-18 14:28:07 2019-12-18 14:28:22 t 1 1 202570 679 0.00 2019-12-18 14:28:28 2019-12-18 14:28:39 t 1 1 202573 545 0.00 2019-12-18 14:01:56 2019-12-18 14:29:23 t 1 1 202575 679 0.00 2019-12-18 14:29:48 2019-12-18 14:31:07 t 1 1 202579 578 0.00 2019-12-18 13:07:22 2019-12-18 14:35:08 t 1 1 202586 578 0.00 2019-12-18 14:35:08 2019-12-18 14:47:54 t 1 1 202588 689 0.00 2019-12-18 14:50:17 2019-12-18 14:51:12 t 1 1 202589 694 0.00 2019-12-18 12:32:57 2019-12-18 14:53:04 t 1 1 202591 562 0.00 2019-12-18 14:54:00 2019-12-18 14:54:06 t 1 1 202593 736 0.00 2019-12-18 15:00:49 2019-12-18 15:00:57 t 1 1 202602 736 0.00 2019-12-18 15:16:24 2019-12-18 15:16:54 t 1 1 202603 591 0.00 2019-12-18 14:13:37 2019-12-18 15:18:14 t 1 1 202604 578 0.00 2019-12-18 15:09:10 2019-12-18 15:22:15 t 1 1 202605 687 0.00 2019-12-18 15:06:22 2019-12-18 15:23:16 t 1 1 202611 736 0.00 2019-12-18 15:38:36 2019-12-18 15:38:37 t 1 1 202612 736 0.00 2019-12-18 15:39:25 2019-12-18 15:39:33 t 1 1 202615 736 0.00 2019-12-18 15:39:43 2019-12-18 15:42:05 t 1 1 202617 562 0.00 2019-12-18 15:44:35 2019-12-18 15:44:48 t 1 1 202619 625 0.00 2019-12-18 14:45:11 2019-12-18 15:46:00 t 1 1 202624 392 0.00 2019-12-18 15:17:40 2019-12-18 15:52:51 t 1 2 202625 625 0.00 2019-12-18 15:51:20 2019-12-18 15:53:26 t 1 1 202626 637 0.00 2019-12-18 15:06:17 2019-12-18 15:54:08 t 1 1 202629 578 0.00 2019-12-18 15:22:15 2019-12-18 15:56:33 t 1 1 202630 562 0.00 2019-12-18 15:55:24 2019-12-18 15:57:29 t 1 1 202633 538 0.00 2019-12-18 14:26:38 2019-12-18 15:58:19 t 1 1 202639 562 0.00 2019-12-18 15:58:28 2019-12-18 16:02:08 t 1 1 202643 578 0.00 2019-12-18 15:56:33 2019-12-18 16:06:18 t 1 1 202646 656 0.00 2019-12-18 15:52:20 2019-12-18 16:07:36 t 1 1 202650 675 0.00 2019-12-18 16:08:52 2019-12-18 16:10:29 t 1 1 202651 736 0.00 2019-12-18 16:10:40 2019-12-18 16:11:07 t 1 1 202652 564 0.00 2019-12-18 14:00:36 2019-12-18 16:11:19 t 1 1 202656 679 0.00 2019-12-18 16:12:20 2019-12-18 16:12:40 t 1 1 202657 679 0.00 2019-12-18 16:12:49 2019-12-18 16:13:03 t 1 1 202661 675 0.00 2019-12-18 16:12:27 2019-12-18 16:15:24 t 1 1 202667 736 0.00 2019-12-18 16:18:46 2019-12-18 16:18:49 t 1 1 202668 736 0.00 2019-12-18 16:18:14 2019-12-18 16:19:15 t 1 1 202672 687 0.00 2019-12-18 16:11:40 2019-12-18 16:22:45 t 1 1 202674 707 0.00 2019-12-18 16:16:23 2019-12-18 16:25:37 t 1 1 202680 622 0.00 2019-12-18 16:10:36 2019-12-18 16:42:07 t 1 1 202681 581 0.00 2019-12-18 16:40:22 2019-12-18 16:43:20 t 1 1 202683 724 0.00 2019-12-18 16:12:42 2019-12-18 16:44:23 t 1 1 202686 622 0.00 2019-12-18 16:42:42 2019-12-18 16:47:00 t 1 1 202689 562 0.00 2019-12-18 16:52:50 2019-12-18 16:53:11 t 1 1 202693 611 0.00 2019-12-18 16:54:14 2019-12-18 16:56:31 t 1 1 202695 722 0.00 2019-12-18 16:47:35 2019-12-18 16:57:21 t 1 1 202707 562 0.00 2019-12-18 17:08:52 2019-12-18 17:10:29 t 1 1 202710 562 0.00 2019-12-18 17:12:16 2019-12-18 17:12:46 t 1 1 202711 562 0.00 2019-12-18 17:13:43 2019-12-18 17:17:17 t 1 1 202716 591 0.00 2019-12-18 17:11:41 2019-12-18 17:22:53 t 1 1 202718 656 0.00 2019-12-18 16:07:36 2019-12-18 17:27:38 t 1 1 202722 591 0.00 2019-12-18 17:32:08 2019-12-18 17:34:52 t 1 1 202726 625 0.00 2019-12-18 15:53:58 2019-12-18 17:38:38 t 1 1 202733 722 0.00 2019-12-18 17:41:35 2019-12-18 17:43:08 t 1 1 202735 722 0.00 2019-12-18 17:41:59 2019-12-18 17:44:43 t 1 1 202738 656 0.00 2019-12-18 17:27:38 2019-12-18 17:48:06 t 1 1 202742 591 0.00 2019-12-18 17:48:46 2019-12-18 17:50:40 t 1 1 202748 392 0.00 2019-12-18 17:56:54 2019-12-18 17:56:58 t 1 2 202753 625 0.00 2019-12-18 17:58:24 2019-12-18 18:00:50 t 1 1 202756 692 0.00 2019-12-18 18:01:16 2019-12-18 18:03:04 t 1 1 202757 562 0.00 2019-12-18 18:01:36 2019-12-18 18:03:14 t 1 1 202759 692 0.00 2019-12-18 18:03:36 2019-12-18 18:04:01 t 1 1 202768 692 0.00 2019-12-18 18:09:24 2019-12-18 18:09:36 t 1 1 202769 692 0.00 2019-12-18 18:09:48 2019-12-18 18:10:13 t 1 1 202773 692 0.00 2019-12-18 18:11:15 2019-12-18 18:11:31 t 1 1 202776 687 0.00 2019-12-18 18:00:32 2019-12-18 18:14:15 t 1 1 202780 538 0.00 2019-12-18 15:58:19 2019-12-18 18:17:47 t 1 1 202783 392 0.00 2019-12-18 18:17:31 2019-12-18 18:23:37 t 1 2 202785 692 0.00 2019-12-18 18:23:15 2019-12-18 18:26:29 t 1 1 202787 637 0.00 2019-12-18 16:57:56 2019-12-18 18:26:55 t 1 1 202788 692 0.00 2019-12-18 18:26:49 2019-12-18 18:27:13 t 1 1 202792 692 0.00 2019-12-18 18:28:44 2019-12-18 18:29:35 t 1 1 202793 692 0.00 2019-12-18 18:31:16 2019-12-18 18:31:56 t 1 1 202795 744 0.00 2019-12-18 18:02:30 2019-12-18 18:32:46 t 1 1 202799 562 0.00 2019-12-18 18:12:42 2019-12-18 18:38:49 t 1 1 202800 581 0.00 2019-12-18 18:05:27 2019-12-18 18:39:29 t 1 1 202803 625 0.00 2019-12-18 18:01:02 2019-12-18 18:40:55 t 1 1 202809 516 0.00 2019-12-18 18:41:18 2019-12-18 18:44:23 t 1 1 202817 692 0.00 2019-12-18 18:52:11 2019-12-18 18:53:31 t 1 1 202819 726 0.00 2019-12-18 18:53:10 2019-12-18 18:55:21 t 1 1 202822 545 0.00 2019-12-18 18:30:23 2019-12-18 18:57:01 t 1 1 202505 689 0.00 2019-12-18 13:43:52 2019-12-18 13:50:11 t 1 1 202507 687 0.00 2019-12-18 13:21:46 2019-12-18 13:52:47 t 1 1 202509 691 0.00 2019-12-18 13:52:20 2019-12-18 13:55:03 t 1 1 202512 687 0.00 2019-12-18 13:54:34 2019-12-18 13:57:07 t 1 1 202518 679 0.00 2019-12-18 13:49:05 2019-12-18 14:10:02 t 1 1 202519 679 0.00 2019-12-18 14:10:08 2019-12-18 14:10:18 t 1 1 202523 679 0.00 2019-12-18 14:11:38 2019-12-18 14:11:54 t 1 1 202524 679 0.00 2019-12-18 14:12:00 2019-12-18 14:12:18 t 1 1 202526 679 0.00 2019-12-18 14:12:23 2019-12-18 14:14:04 t 1 1 202527 481 0.00 2019-12-18 13:27:04 2019-12-18 14:14:23 t 1 1 202529 679 0.00 2019-12-18 14:14:30 2019-12-18 14:14:45 t 1 1 202530 679 0.00 2019-12-18 14:14:51 2019-12-18 14:15:10 t 1 1 202532 562 0.00 2019-12-18 14:13:52 2019-12-18 14:15:32 t 1 1 202534 679 0.00 2019-12-18 14:16:02 2019-12-18 14:16:17 t 1 1 202535 679 0.00 2019-12-18 14:16:22 2019-12-18 14:16:51 t 1 1 202536 679 0.00 2019-12-18 14:16:57 2019-12-18 14:17:07 t 1 1 202539 679 0.00 2019-12-18 14:17:34 2019-12-18 14:17:54 t 1 1 202545 679 0.00 2019-12-18 14:19:51 2019-12-18 14:20:05 t 1 1 202546 679 0.00 2019-12-18 14:20:11 2019-12-18 14:20:26 t 1 1 202550 679 0.00 2019-12-18 14:21:41 2019-12-18 14:21:51 t 1 1 202551 562 0.00 2019-12-18 14:22:51 2019-12-18 14:23:09 t 1 1 202553 679 0.00 2019-12-18 14:23:22 2019-12-18 14:23:32 t 1 1 202554 679 0.00 2019-12-18 14:23:39 2019-12-18 14:24:25 t 1 1 202556 679 0.00 2019-12-18 14:24:34 2019-12-18 14:24:50 t 1 1 202557 679 0.00 2019-12-18 14:24:56 2019-12-18 14:25:10 t 1 1 202561 679 0.00 2019-12-18 14:26:14 2019-12-18 14:26:33 t 1 1 202565 679 0.00 2019-12-18 14:27:13 2019-12-18 14:27:29 t 1 1 202574 679 0.00 2019-12-18 14:29:27 2019-12-18 14:29:49 t 1 1 202577 736 0.00 2019-12-18 14:29:38 2019-12-18 14:33:50 t 1 1 202578 562 0.00 2019-12-18 14:33:48 2019-12-18 14:34:16 t 1 1 202581 736 0.00 2019-12-18 14:34:04 2019-12-18 14:36:25 t 1 1 202587 736 0.00 2019-12-18 14:45:31 2019-12-18 14:50:46 t 1 1 202590 736 0.00 2019-12-18 14:53:23 2019-12-18 14:53:34 t 1 1 202592 578 0.00 2019-12-18 14:47:54 2019-12-18 14:56:15 t 1 1 202594 631 0.00 2019-12-18 15:02:44 2019-12-18 15:03:20 t 1 1 202595 562 0.00 2019-12-18 15:04:46 2019-12-18 15:04:56 t 1 1 202597 687 0.00 2019-12-18 14:18:12 2019-12-18 15:06:22 t 1 1 202598 578 0.00 2019-12-18 14:56:15 2019-12-18 15:09:10 t 1 1 202600 562 0.00 2019-12-18 15:12:17 2019-12-18 15:12:32 t 1 1 202601 689 0.00 2019-12-18 15:10:28 2019-12-18 15:13:55 t 1 1 202607 481 0.00 2019-12-18 14:16:00 2019-12-18 15:26:34 t 1 1 202608 481 0.00 2019-12-18 15:27:25 2019-12-18 15:32:45 t 1 1 202610 736 0.00 2019-12-18 15:17:50 2019-12-18 15:38:07 t 1 1 202614 736 0.00 2019-12-18 15:41:20 2019-12-18 15:41:28 t 1 1 202620 625 0.00 2019-12-18 15:46:05 2019-12-18 15:50:21 t 1 1 202623 656 0.00 2019-12-18 15:18:31 2019-12-18 15:52:20 t 1 1 202628 687 0.00 2019-12-18 15:23:16 2019-12-18 15:56:15 t 1 1 202632 516 0.00 2019-12-18 15:41:34 2019-12-18 15:58:09 t 1 1 202634 736 0.00 2019-12-18 15:58:00 2019-12-18 15:58:25 t 1 1 202635 562 0.00 2019-12-18 15:58:06 2019-12-18 16:00:06 t 1 1 202637 736 0.00 2019-12-18 15:59:58 2019-12-18 16:00:16 t 1 1 202638 633 0.00 2019-12-18 15:58:04 2019-12-18 16:01:59 t 1 1 202640 637 0.00 2019-12-18 15:54:08 2019-12-18 16:03:03 t 1 1 202641 591 0.00 2019-12-18 15:25:33 2019-12-18 16:04:50 t 1 1 202645 734 0.00 2019-12-18 13:46:08 2019-12-18 16:07:22 t 1 1 202647 551 0.00 2019-12-18 16:05:51 2019-12-18 16:08:32 t 1 1 202653 687 0.00 2019-12-18 15:56:15 2019-12-18 16:11:40 t 1 1 202658 562 0.00 2019-12-18 16:11:58 2019-12-18 16:13:06 t 1 1 202659 637 0.00 2019-12-18 16:03:03 2019-12-18 16:13:07 t 1 1 202660 679 0.00 2019-12-18 16:13:09 2019-12-18 16:13:29 t 1 1 202662 673 0.00 2019-12-18 15:49:43 2019-12-18 16:15:34 t 1 1 202665 562 0.00 2019-12-18 16:15:39 2019-12-18 16:17:00 t 1 1 202666 736 0.00 2019-12-18 16:17:40 2019-12-18 16:17:53 t 1 1 202669 637 0.00 2019-12-18 16:13:07 2019-12-18 16:20:04 t 1 1 202670 562 0.00 2019-12-18 16:19:11 2019-12-18 16:20:49 t 1 1 202673 591 0.00 2019-12-18 16:14:27 2019-12-18 16:24:29 t 1 1 202675 562 0.00 2019-12-18 16:27:30 2019-12-18 16:27:40 t 1 1 202676 562 0.00 2019-12-18 16:31:24 2019-12-18 16:31:44 t 1 1 202682 551 0.00 2019-12-18 16:29:28 2019-12-18 16:43:58 t 1 1 202684 675 0.00 2019-12-18 16:42:11 2019-12-18 16:44:39 t 1 1 202687 694 0.00 2019-12-18 15:02:44 2019-12-18 16:50:07 t 1 1 202692 562 0.00 2019-12-18 16:55:57 2019-12-18 16:56:06 t 1 1 202694 581 0.00 2019-12-18 16:51:55 2019-12-18 16:56:52 t 1 1 202697 687 0.00 2019-12-18 16:51:06 2019-12-18 16:58:21 t 1 1 202700 722 0.00 2019-12-18 16:57:21 2019-12-18 17:01:49 t 1 1 202701 562 0.00 2019-12-18 17:01:57 2019-12-18 17:02:08 t 1 1 202702 562 0.00 2019-12-18 17:01:08 2019-12-18 17:03:08 t 1 1 202704 687 0.00 2019-12-18 16:58:27 2019-12-18 17:07:08 t 1 1 202706 675 0.00 2019-12-18 17:04:20 2019-12-18 17:09:42 t 1 1 202708 591 0.00 2019-12-18 16:28:32 2019-12-18 17:10:54 t 1 1 202709 722 0.00 2019-12-18 17:01:49 2019-12-18 17:11:50 t 1 1 202712 503 0.00 2019-12-18 17:16:23 2019-12-18 17:18:08 t 1 1 202713 722 0.00 2019-12-18 17:12:03 2019-12-18 17:18:27 t 1 1 202715 581 0.00 2019-12-18 17:18:17 2019-12-18 17:21:58 t 1 1 202719 722 0.00 2019-12-18 17:18:27 2019-12-18 17:30:10 t 1 1 202720 591 0.00 2019-12-18 17:25:12 2019-12-18 17:31:18 t 1 1 202721 687 0.00 2019-12-18 17:26:52 2019-12-18 17:32:52 t 1 1 202723 392 0.00 2019-12-18 17:36:12 2019-12-18 17:36:17 t 1 2 202725 687 0.00 2019-12-18 17:32:52 2019-12-18 17:36:52 t 1 1 202727 722 0.00 2019-12-18 17:30:10 2019-12-18 17:39:13 t 1 1 202729 683 0.00 2019-12-18 17:25:40 2019-12-18 17:39:34 t 1 1 202731 722 0.00 2019-12-18 17:39:26 2019-12-18 17:41:12 t 1 1 202739 722 0.00 2019-12-18 17:47:16 2019-12-18 17:48:19 t 1 1 202740 562 0.00 2019-12-18 17:36:48 2019-12-18 17:49:07 t 1 1 202743 611 0.00 2019-12-18 17:47:07 2019-12-18 17:50:59 t 1 1 202745 562 0.00 2019-12-18 17:52:20 2019-12-18 17:52:43 t 1 1 202746 679 0.00 2019-12-18 17:46:30 2019-12-18 17:53:48 t 1 1 202750 392 0.00 2019-12-18 17:57:15 2019-12-18 17:58:36 t 1 2 202754 692 0.00 2019-12-18 18:00:37 2019-12-18 18:01:00 t 1 1 202760 483 0.00 2019-12-18 17:56:06 2019-12-18 18:05:25 t 1 1 202761 692 0.00 2019-12-18 18:04:57 2019-12-18 18:05:30 t 1 1 202762 692 0.00 2019-12-18 18:05:42 2019-12-18 18:05:52 t 1 1 202763 679 0.00 2019-12-18 18:05:46 2019-12-18 18:07:00 t 1 1 202764 591 0.00 2019-12-18 17:51:49 2019-12-18 18:07:12 t 1 1 202767 692 0.00 2019-12-18 18:06:53 2019-12-18 18:09:14 t 1 1 202770 562 0.00 2019-12-18 18:03:42 2019-12-18 18:10:19 t 1 1 202772 692 0.00 2019-12-18 18:11:02 2019-12-18 18:11:09 t 1 1 202775 562 0.00 2019-12-18 18:10:30 2019-12-18 18:12:07 t 1 1 202777 692 0.00 2019-12-18 18:14:40 2019-12-18 18:15:25 t 1 1 202778 692 0.00 2019-12-18 18:15:36 2019-12-18 18:16:19 t 1 1 202779 483 0.00 2019-12-18 18:05:25 2019-12-18 18:17:39 t 1 1 202781 692 0.00 2019-12-18 18:19:48 2019-12-18 18:21:17 t 1 1 202782 692 0.00 2019-12-18 18:22:10 2019-12-18 18:22:35 t 1 1 202784 483 0.00 2019-12-18 18:17:39 2019-12-18 18:23:55 t 1 1 202786 692 0.00 2019-12-18 18:26:29 2019-12-18 18:26:38 t 1 1 202789 637 0.00 2019-12-18 18:27:04 2019-12-18 18:27:23 t 1 1 202794 675 0.00 2019-12-18 18:27:49 2019-12-18 18:32:07 t 1 1 202796 361 0.00 2019-12-18 18:35:35 2019-12-18 18:35:35 f 1 2 202801 754 0.00 2019-12-18 18:39:02 2019-12-18 18:39:46 t 1 2 202802 622 0.00 2019-12-18 18:33:25 2019-12-18 18:40:33 t 1 1 202804 692 0.00 2019-12-18 18:40:38 2019-12-18 18:41:22 t 1 1 202805 694 0.00 2019-12-18 18:36:37 2019-12-18 18:41:35 t 1 1 202806 562 0.00 2019-12-18 18:39:55 2019-12-18 18:43:36 t 1 1 202808 675 0.00 2019-12-18 18:41:33 2019-12-18 18:43:48 t 1 1 202810 692 0.00 2019-12-18 18:42:00 2019-12-18 18:44:25 t 1 1 202812 538 0.00 2019-12-18 18:45:07 2019-12-18 18:45:33 t 1 1 202816 692 0.00 2019-12-18 18:47:35 2019-12-18 18:51:14 t 1 1 202818 692 0.00 2019-12-18 18:53:33 2019-12-18 18:54:07 t 1 1 202820 656 0.00 2019-12-18 18:36:02 2019-12-18 18:55:54 t 1 1 202821 694 0.00 2019-12-18 18:41:34 2019-12-18 18:56:14 t 1 1 202824 692 0.00 2019-12-18 18:57:38 2019-12-18 18:57:42 t 1 1 202826 516 0.00 2019-12-18 18:56:02 2019-12-18 18:58:51 t 1 1 202827 622 0.00 2019-12-18 18:41:07 2019-12-18 18:59:09 t 1 1 202830 692 0.00 2019-12-18 19:00:59 2019-12-18 19:01:03 t 1 1 202841 683 0.00 2019-12-18 17:38:55 2019-12-18 19:06:17 t 1 1 202842 483 0.00 2019-12-18 18:52:34 2019-12-18 19:06:42 t 1 1 202844 692 0.00 2019-12-18 19:05:57 2019-12-18 19:07:10 t 1 1 202847 692 0.00 2019-12-18 19:08:05 2019-12-18 19:08:09 t 1 1 202850 692 0.00 2019-12-18 19:08:38 2019-12-18 19:09:46 t 1 1 202856 692 0.00 2019-12-18 19:12:00 2019-12-18 19:14:47 t 1 1 202858 615 0.00 2019-12-18 19:15:19 2019-12-18 19:17:18 t 1 1 202860 692 0.00 2019-12-18 19:18:35 2019-12-18 19:18:43 t 1 1 202863 483 0.00 2019-12-18 19:09:44 2019-12-18 19:19:03 t 1 1 202868 675 0.00 2019-12-18 19:19:36 2019-12-18 19:21:16 t 1 1 202872 692 0.00 2019-12-18 19:20:50 2019-12-18 19:22:10 t 1 1 202878 562 0.00 2019-12-18 19:21:36 2019-12-18 19:23:41 t 1 1 202880 692 0.00 2019-12-18 19:23:53 2019-12-18 19:24:00 t 1 1 202884 481 0.00 2019-12-18 18:23:31 2019-12-18 19:25:13 t 1 1 202887 692 0.00 2019-12-18 19:25:53 2019-12-18 19:25:55 t 1 1 202890 692 0.00 2019-12-18 19:26:32 2019-12-18 19:26:36 t 1 1 202901 692 0.00 2019-12-18 19:29:43 2019-12-18 19:29:47 t 1 1 202906 692 0.00 2019-12-18 19:31:35 2019-12-18 19:32:03 t 1 1 202907 692 0.00 2019-12-18 19:32:15 2019-12-18 19:32:31 t 1 1 202909 711 0.00 2019-12-18 19:01:11 2019-12-18 19:32:59 t 1 1 202911 692 0.00 2019-12-18 19:33:18 2019-12-18 19:33:24 t 1 1 202912 692 0.00 2019-12-18 19:33:30 2019-12-18 19:33:36 t 1 1 202918 692 0.00 2019-12-18 19:35:12 2019-12-18 19:35:25 t 1 1 202930 692 0.00 2019-12-18 19:37:19 2019-12-18 19:37:27 t 1 1 202932 392 0.00 2019-12-18 19:03:47 2019-12-18 19:38:24 t 1 2 202934 692 0.00 2019-12-18 19:38:31 2019-12-18 19:38:36 t 1 1 202936 692 0.00 2019-12-18 19:38:51 2019-12-18 19:38:55 t 1 1 202938 692 0.00 2019-12-18 19:39:11 2019-12-18 19:39:18 t 1 1 202941 545 0.00 2019-12-18 19:11:01 2019-12-18 19:40:59 t 1 1 202944 692 0.00 2019-12-18 19:41:50 2019-12-18 19:42:07 t 1 1 202945 591 0.00 2019-12-18 19:38:38 2019-12-18 19:42:24 t 1 1 202949 692 0.00 2019-12-18 19:43:39 2019-12-18 19:43:52 t 1 1 202950 692 0.00 2019-12-18 19:44:08 2019-12-18 19:44:12 t 1 1 202951 692 0.00 2019-12-18 19:44:28 2019-12-18 19:44:28 f 1 1 202954 692 0.00 2019-12-18 19:44:18 2019-12-18 19:45:19 t 1 1 202958 633 0.00 2019-12-18 19:20:44 2019-12-18 19:49:31 t 1 1 202960 722 0.00 2019-12-18 19:38:39 2019-12-18 19:50:39 t 1 1 202961 748 0.00 2019-12-18 19:48:13 2019-12-18 19:51:36 t 1 1 202963 748 0.00 2019-12-18 19:52:00 2019-12-18 19:52:58 t 1 1 202968 562 0.00 2019-12-18 19:54:22 2019-12-18 19:56:10 t 1 1 202970 660 0.00 2019-12-18 19:51:48 2019-12-18 20:03:37 t 1 1 202972 722 0.00 2019-12-18 19:50:39 2019-12-18 20:05:52 t 1 1 202973 562 0.00 2019-12-18 20:05:52 2019-12-18 20:06:13 t 1 1 202975 675 0.00 2019-12-18 20:08:05 2019-12-18 20:10:00 t 1 1 202977 625 0.00 2019-12-18 20:10:49 2019-12-18 20:11:52 t 1 1 202978 562 0.00 2019-12-18 20:12:01 2019-12-18 20:12:22 t 1 1 202982 562 0.00 2019-12-18 20:17:28 2019-12-18 20:17:37 t 1 1 202984 722 0.00 2019-12-18 20:18:17 2019-12-18 20:18:42 t 1 1 202986 562 0.00 2019-12-18 20:18:22 2019-12-18 20:20:42 t 1 1 202989 722 0.00 2019-12-18 20:21:58 2019-12-18 20:22:06 t 1 1 202991 722 0.00 2019-12-18 20:22:45 2019-12-18 20:23:37 t 1 1 202993 545 0.00 2019-12-18 20:12:37 2019-12-18 20:24:30 t 1 1 202995 722 0.00 2019-12-18 20:24:49 2019-12-18 20:25:22 t 1 1 202998 562 0.00 2019-12-18 20:23:14 2019-12-18 20:25:51 t 1 1 203001 675 0.00 2019-12-18 20:25:00 2019-12-18 20:27:25 t 1 1 203003 722 0.00 2019-12-18 20:27:51 2019-12-18 20:28:45 t 1 1 203005 562 0.00 2019-12-18 20:26:17 2019-12-18 20:31:37 t 1 1 203006 611 0.00 2019-12-18 20:26:45 2019-12-18 20:33:11 t 1 1 203008 722 0.00 2019-12-18 20:35:12 2019-12-18 20:36:24 t 1 1 203010 711 0.00 2019-12-18 20:21:14 2019-12-18 20:38:31 t 1 1 203011 562 0.00 2019-12-18 20:32:18 2019-12-18 20:39:17 t 1 1 203013 637 0.00 2019-12-18 18:27:30 2019-12-18 20:41:36 t 1 1 203014 679 0.00 2019-12-18 20:25:41 2019-12-18 20:42:13 t 1 1 203017 562 0.00 2019-12-18 20:44:00 2019-12-18 20:45:44 t 1 1 203019 711 0.00 2019-12-18 20:38:31 2019-12-18 20:48:56 t 1 1 203022 675 0.00 2019-12-18 20:48:38 2019-12-18 20:51:01 t 1 1 203025 581 0.00 2019-12-18 20:52:01 2019-12-18 20:54:09 t 1 1 203027 687 0.00 2019-12-18 20:45:45 2019-12-18 20:55:15 t 1 1 203030 722 0.00 2019-12-18 20:51:00 2019-12-18 20:56:26 t 1 1 203034 562 0.00 2019-12-18 21:03:28 2019-12-18 21:05:35 t 1 1 203037 581 0.00 2019-12-18 20:57:31 2019-12-18 21:08:59 t 1 1 203038 581 0.00 2019-12-18 21:09:06 2019-12-18 21:09:09 t 1 1 203046 581 0.00 2019-12-18 21:12:39 2019-12-18 21:17:36 t 1 1 203049 510 0.00 2019-12-18 21:08:38 2019-12-18 21:18:35 t 1 1 203051 679 0.00 2019-12-18 21:16:41 2019-12-18 21:24:19 t 1 1 203053 754 0.00 2019-12-18 19:09:41 2019-12-18 21:25:59 t 1 2 203055 660 0.00 2019-12-18 21:14:24 2019-12-18 21:28:37 t 1 1 203056 649 0.00 2019-12-18 21:27:19 2019-12-18 21:29:10 t 1 1 203058 660 0.00 2019-12-18 21:28:37 2019-12-18 21:31:02 t 1 1 203059 483 0.00 2019-12-18 21:30:09 2019-12-18 21:31:07 t 1 1 202825 692 0.00 2019-12-18 18:57:48 2019-12-18 18:57:54 t 1 1 202828 692 0.00 2019-12-18 18:57:59 2019-12-18 19:00:19 t 1 1 202833 692 0.00 2019-12-18 19:01:45 2019-12-18 19:01:57 t 1 1 202834 692 0.00 2019-12-18 19:02:14 2019-12-18 19:02:15 t 1 1 202835 694 0.00 2019-12-18 18:56:14 2019-12-18 19:03:21 t 1 1 202837 692 0.00 2019-12-18 19:04:12 2019-12-18 19:04:44 t 1 1 202838 692 0.00 2019-12-18 19:05:01 2019-12-18 19:05:14 t 1 1 202840 692 0.00 2019-12-18 19:06:06 2019-12-18 19:06:13 t 1 1 202845 692 0.00 2019-12-18 19:07:19 2019-12-18 19:07:31 t 1 1 202846 692 0.00 2019-12-18 19:07:55 2019-12-18 19:07:59 t 1 1 202848 692 0.00 2019-12-18 19:08:15 2019-12-18 19:08:22 t 1 1 202849 692 0.00 2019-12-18 19:07:46 2019-12-18 19:09:10 t 1 1 202851 220 0.00 2019-12-18 17:57:50 2019-12-18 19:10:14 t 1 2 202853 734 0.00 2019-12-18 16:07:27 2019-12-18 19:11:45 t 1 1 202855 562 0.00 2019-12-18 19:14:03 2019-12-18 19:14:14 t 1 1 202862 730 0.00 2019-12-18 18:50:41 2019-12-18 19:18:47 t 1 1 202864 692 0.00 2019-12-18 19:18:52 2019-12-18 19:19:04 t 1 1 202865 692 0.00 2019-12-18 19:19:17 2019-12-18 19:19:34 t 1 1 202866 730 0.00 2019-12-18 19:18:47 2019-12-18 19:20:04 t 1 1 202871 692 0.00 2019-12-18 19:21:33 2019-12-18 19:21:50 t 1 1 202874 692 0.00 2019-12-18 19:22:06 2019-12-18 19:22:44 t 1 1 202876 692 0.00 2019-12-18 19:23:17 2019-12-18 19:23:23 t 1 1 202881 692 0.00 2019-12-18 19:24:24 2019-12-18 19:24:31 t 1 1 202882 692 0.00 2019-12-18 19:24:46 2019-12-18 19:25:03 t 1 1 202885 692 0.00 2019-12-18 19:25:16 2019-12-18 19:25:34 t 1 1 202888 692 0.00 2019-12-18 19:24:15 2019-12-18 19:26:10 t 1 1 202891 692 0.00 2019-12-18 19:26:42 2019-12-18 19:26:46 t 1 1 202893 660 0.00 2019-12-18 19:25:10 2019-12-18 19:27:12 t 1 1 202894 562 0.00 2019-12-18 19:27:19 2019-12-18 19:27:59 t 1 1 202895 692 0.00 2019-12-18 19:27:52 2019-12-18 19:28:31 t 1 1 202896 692 0.00 2019-12-18 19:28:37 2019-12-18 19:28:54 t 1 1 202897 692 0.00 2019-12-18 19:29:00 2019-12-18 19:29:07 t 1 1 202899 692 0.00 2019-12-18 19:29:13 2019-12-18 19:29:20 t 1 1 202902 692 0.00 2019-12-18 19:29:53 2019-12-18 19:29:57 t 1 1 202903 692 0.00 2019-12-18 19:30:03 2019-12-18 19:30:45 t 1 1 202904 692 0.00 2019-12-18 19:30:51 2019-12-18 19:31:07 t 1 1 202910 692 0.00 2019-12-18 19:32:46 2019-12-18 19:33:02 t 1 1 202913 692 0.00 2019-12-18 19:33:51 2019-12-18 19:34:04 t 1 1 202915 692 0.00 2019-12-18 19:34:39 2019-12-18 19:34:43 t 1 1 202917 611 0.00 2019-12-18 19:18:59 2019-12-18 19:35:05 t 1 1 202920 562 0.00 2019-12-18 19:35:17 2019-12-18 19:35:38 t 1 1 202922 692 0.00 2019-12-18 19:36:05 2019-12-18 19:36:17 t 1 1 202925 692 0.00 2019-12-18 19:36:46 2019-12-18 19:36:54 t 1 1 202927 692 0.00 2019-12-18 19:37:10 2019-12-18 19:37:13 t 1 1 202929 562 0.00 2019-12-18 19:37:08 2019-12-18 19:37:24 t 1 1 202931 692 0.00 2019-12-18 19:37:42 2019-12-18 19:37:54 t 1 1 202937 692 0.00 2019-12-18 19:39:01 2019-12-18 19:39:05 t 1 1 202942 692 0.00 2019-12-18 19:40:52 2019-12-18 19:41:08 t 1 1 202947 656 0.00 2019-12-18 18:58:56 2019-12-18 19:42:42 t 1 1 202953 692 0.00 2019-12-18 19:43:21 2019-12-18 19:45:10 t 1 1 202957 683 0.00 2019-12-18 19:06:17 2019-12-18 19:47:05 t 1 1 202965 687 0.00 2019-12-18 18:28:18 2019-12-18 19:53:47 t 1 1 202966 675 0.00 2019-12-18 19:52:54 2019-12-18 19:54:18 t 1 1 202976 625 0.00 2019-12-18 19:36:46 2019-12-18 20:10:46 t 1 1 202980 744 0.00 2019-12-18 19:24:20 2019-12-18 20:17:02 t 1 1 202987 711 0.00 2019-12-18 20:06:33 2019-12-18 20:21:14 t 1 1 202990 691 0.00 2019-12-18 20:22:28 2019-12-18 20:22:51 t 1 1 202996 679 0.00 2019-12-18 20:06:47 2019-12-18 20:25:41 t 1 1 203009 660 0.00 2019-12-18 20:17:02 2019-12-18 20:37:58 t 1 1 203016 633 0.00 2019-12-18 20:25:20 2019-12-18 20:43:56 t 1 1 203029 679 0.00 2019-12-18 20:42:13 2019-12-18 20:55:50 t 1 1 203031 581 0.00 2019-12-18 20:55:50 2019-12-18 20:57:10 t 1 1 203033 675 0.00 2019-12-18 21:01:02 2019-12-18 21:03:06 t 1 1 203040 220 0.00 2019-12-18 20:54:36 2019-12-18 21:12:13 t 1 2 203041 660 0.00 2019-12-18 20:48:08 2019-12-18 21:14:24 t 1 1 203043 562 0.00 2019-12-18 21:14:13 2019-12-18 21:14:49 t 1 1 203044 679 0.00 2019-12-18 20:55:50 2019-12-18 21:16:41 t 1 1 203048 687 0.00 2019-12-18 21:18:07 2019-12-18 21:18:24 t 1 1 203050 562 0.00 2019-12-18 21:20:11 2019-12-18 21:20:35 t 1 1 203054 649 0.00 2019-12-18 21:27:18 2019-12-18 21:27:19 t 1 1 203057 687 0.00 2019-12-18 21:29:27 2019-12-18 21:30:34 t 1 1 203064 730 0.00 2019-12-18 21:26:59 2019-12-18 21:34:40 t 1 1 203065 637 0.00 2019-12-18 20:41:36 2019-12-18 21:34:54 t 1 1 203068 564 0.00 2019-12-18 18:31:07 2019-12-18 21:37:09 t 1 1 203069 724 0.00 2019-12-18 21:31:18 2019-12-18 21:39:32 t 1 1 203074 581 0.00 2019-12-18 21:43:33 2019-12-18 21:43:47 t 1 1 203088 694 0.00 2019-12-18 19:39:09 2019-12-18 21:54:36 t 1 1 203090 581 0.00 2019-12-18 21:55:19 2019-12-18 21:55:42 t 1 1 203092 675 0.00 2019-12-18 21:59:13 2019-12-18 22:00:25 t 1 1 203095 481 0.00 2019-12-18 19:27:07 2019-12-18 22:03:03 t 1 1 203097 649 0.00 2019-12-18 21:50:16 2019-12-18 22:03:14 t 1 1 203102 730 0.00 2019-12-18 21:55:03 2019-12-18 22:04:30 t 1 1 203105 581 0.00 2019-12-18 22:05:58 2019-12-18 22:06:19 t 1 1 203108 581 0.00 2019-12-18 22:08:46 2019-12-18 22:12:01 t 1 1 203110 562 0.00 2019-12-18 22:04:15 2019-12-18 22:14:20 t 1 1 203112 551 0.00 2019-12-18 22:08:09 2019-12-18 22:14:56 t 1 1 203113 730 0.00 2019-12-18 22:04:30 2019-12-18 22:15:40 t 1 1 203118 675 0.00 2019-12-18 22:09:09 2019-12-18 22:19:34 t 1 1 203120 581 0.00 2019-12-18 22:21:38 2019-12-18 22:22:04 t 1 1 203124 730 0.00 2019-12-18 22:15:40 2019-12-18 22:24:52 t 1 1 203128 562 0.00 2019-12-18 22:26:41 2019-12-18 22:27:45 t 1 1 203134 748 0.00 2019-12-18 22:32:25 2019-12-18 22:32:36 t 1 1 203137 689 0.00 2019-12-18 22:25:04 2019-12-18 22:34:37 t 1 1 203138 689 0.00 2019-12-18 22:34:57 2019-12-18 22:35:16 t 1 1 203140 562 0.00 2019-12-18 22:35:58 2019-12-18 22:37:09 t 1 1 203145 611 0.00 2019-12-18 22:36:34 2019-12-18 22:38:05 t 1 1 203152 748 0.00 2019-12-18 22:42:40 2019-12-18 22:42:41 t 1 1 203154 687 0.00 2019-12-18 22:38:58 2019-12-18 22:42:45 t 1 1 203156 689 0.00 2019-12-18 22:44:01 2019-12-18 22:44:21 t 1 1 203158 578 0.00 2019-12-18 20:41:22 2019-12-18 22:45:05 t 1 1 203164 689 0.00 2019-12-18 22:45:08 2019-12-18 22:51:43 t 1 1 203165 689 0.00 2019-12-18 22:51:55 2019-12-18 22:52:14 t 1 1 203166 748 0.00 2019-12-18 22:52:27 2019-12-18 22:52:44 t 1 1 203171 562 0.00 2019-12-18 22:56:16 2019-12-18 22:56:40 t 1 1 203179 689 0.00 2019-12-18 23:01:22 2019-12-18 23:01:43 t 1 1 203180 689 0.00 2019-12-18 23:02:06 2019-12-18 23:02:24 t 1 1 203181 748 0.00 2019-12-18 23:02:49 2019-12-18 23:02:51 t 1 1 202861 591 0.00 2019-12-18 18:07:11 2019-12-18 19:18:47 t 1 1 202867 692 0.00 2019-12-18 19:19:49 2019-12-18 19:20:42 t 1 1 202869 692 0.00 2019-12-18 19:21:07 2019-12-18 19:21:20 t 1 1 202870 483 0.00 2019-12-18 19:19:03 2019-12-18 19:21:38 t 1 1 202873 679 0.00 2019-12-18 19:22:02 2019-12-18 19:22:40 t 1 1 202875 692 0.00 2019-12-18 19:22:52 2019-12-18 19:23:05 t 1 1 202877 692 0.00 2019-12-18 19:23:28 2019-12-18 19:23:34 t 1 1 202879 692 0.00 2019-12-18 19:23:40 2019-12-18 19:23:48 t 1 1 202883 562 0.00 2019-12-18 19:24:33 2019-12-18 19:25:08 t 1 1 202886 692 0.00 2019-12-18 19:25:40 2019-12-18 19:25:47 t 1 1 202889 692 0.00 2019-12-18 19:26:12 2019-12-18 19:26:27 t 1 1 202892 692 0.00 2019-12-18 19:26:52 2019-12-18 19:26:54 t 1 1 202898 562 0.00 2019-12-18 19:28:50 2019-12-18 19:29:20 t 1 1 202900 692 0.00 2019-12-18 19:29:34 2019-12-18 19:29:37 t 1 1 202905 692 0.00 2019-12-18 19:31:13 2019-12-18 19:31:20 t 1 1 202908 625 0.00 2019-12-18 18:42:51 2019-12-18 19:32:46 t 1 1 202914 692 0.00 2019-12-18 19:34:20 2019-12-18 19:34:40 t 1 1 202916 692 0.00 2019-12-18 19:34:49 2019-12-18 19:34:57 t 1 1 202919 675 0.00 2019-12-18 19:34:06 2019-12-18 19:35:33 t 1 1 202921 692 0.00 2019-12-18 19:35:41 2019-12-18 19:35:49 t 1 1 202923 692 0.00 2019-12-18 19:36:33 2019-12-18 19:36:40 t 1 1 202924 625 0.00 2019-12-18 19:33:30 2019-12-18 19:36:46 t 1 1 202926 692 0.00 2019-12-18 19:37:00 2019-12-18 19:37:04 t 1 1 202928 691 0.00 2019-12-18 19:36:12 2019-12-18 19:37:22 t 1 1 202933 692 0.00 2019-12-18 19:38:08 2019-12-18 19:38:25 t 1 1 202935 692 0.00 2019-12-18 19:38:41 2019-12-18 19:38:45 t 1 1 202939 694 0.00 2019-12-18 19:10:25 2019-12-18 19:39:21 t 1 1 202940 692 0.00 2019-12-18 19:39:34 2019-12-18 19:40:39 t 1 1 202943 692 0.00 2019-12-18 19:41:23 2019-12-18 19:41:37 t 1 1 202946 692 0.00 2019-12-18 19:42:22 2019-12-18 19:42:35 t 1 1 202948 692 0.00 2019-12-18 19:42:48 2019-12-18 19:43:05 t 1 1 202952 711 0.00 2019-12-18 19:32:59 2019-12-18 19:44:42 t 1 1 202955 562 0.00 2019-12-18 19:44:46 2019-12-18 19:45:21 t 1 1 202956 562 0.00 2019-12-18 19:45:53 2019-12-18 19:46:15 t 1 1 202959 538 0.00 2019-12-18 18:45:49 2019-12-18 19:50:05 t 1 1 202962 660 0.00 2019-12-18 19:27:12 2019-12-18 19:51:48 t 1 1 202964 748 0.00 2019-12-18 19:53:07 2019-12-18 19:53:18 t 1 1 202967 562 0.00 2019-12-18 19:54:59 2019-12-18 19:55:28 t 1 1 202969 683 0.00 2019-12-18 19:47:05 2019-12-18 19:58:39 t 1 1 202971 711 0.00 2019-12-18 19:44:42 2019-12-18 20:05:26 t 1 1 202974 675 0.00 2019-12-18 20:04:39 2019-12-18 20:06:14 t 1 1 202979 722 0.00 2019-12-18 20:05:52 2019-12-18 20:15:44 t 1 1 202981 722 0.00 2019-12-18 20:15:44 2019-12-18 20:17:25 t 1 1 202983 675 0.00 2019-12-18 20:14:29 2019-12-18 20:17:45 t 1 1 202985 722 0.00 2019-12-18 20:19:45 2019-12-18 20:20:17 t 1 1 202988 722 0.00 2019-12-18 20:20:26 2019-12-18 20:21:52 t 1 1 202992 691 0.00 2019-12-18 20:22:50 2019-12-18 20:24:03 t 1 1 202994 633 0.00 2019-12-18 19:53:54 2019-12-18 20:25:20 t 1 1 202997 722 0.00 2019-12-18 20:25:30 2019-12-18 20:25:43 t 1 1 202999 722 0.00 2019-12-18 20:25:51 2019-12-18 20:26:03 t 1 1 203000 578 0.00 2019-12-18 18:43:36 2019-12-18 20:26:45 t 1 1 203002 722 0.00 2019-12-18 20:27:15 2019-12-18 20:27:37 t 1 1 203004 722 0.00 2019-12-18 20:30:02 2019-12-18 20:30:58 t 1 1 203007 722 0.00 2019-12-18 20:32:37 2019-12-18 20:33:43 t 1 1 203012 578 0.00 2019-12-18 20:26:45 2019-12-18 20:41:22 t 1 1 203015 675 0.00 2019-12-18 20:41:05 2019-12-18 20:43:46 t 1 1 203018 660 0.00 2019-12-18 20:38:05 2019-12-18 20:48:03 t 1 1 203020 514 0.00 2019-12-18 19:54:36 2019-12-18 20:50:15 t 1 1 203021 514 0.00 2019-12-18 20:50:25 2019-12-18 20:50:52 t 1 1 203023 707 0.00 2019-12-18 20:49:02 2019-12-18 20:52:11 t 1 1 203024 220 0.00 2019-12-18 19:11:43 2019-12-18 20:53:07 t 1 2 203026 510 0.00 2019-12-18 20:27:57 2019-12-18 20:54:33 t 1 1 203028 562 0.00 2019-12-18 20:54:57 2019-12-18 20:55:24 t 1 1 203032 625 0.00 2019-12-18 20:11:51 2019-12-18 20:58:14 t 1 1 203035 562 0.00 2019-12-18 21:06:46 2019-12-18 21:07:32 t 1 1 203036 510 0.00 2019-12-18 20:54:33 2019-12-18 21:08:38 t 1 1 203039 581 0.00 2019-12-18 21:11:52 2019-12-18 21:12:08 t 1 1 203042 675 0.00 2019-12-18 21:10:08 2019-12-18 21:14:25 t 1 1 203045 220 0.00 2019-12-18 21:01:25 2019-12-18 21:17:04 t 1 2 203047 748 0.00 2019-12-18 21:10:36 2019-12-18 21:18:15 t 1 1 203052 581 0.00 2019-12-18 21:24:05 2019-12-18 21:24:25 t 1 1 203061 675 0.00 2019-12-18 21:31:02 2019-12-18 21:32:18 t 1 1 203063 562 0.00 2019-12-18 21:32:15 2019-12-18 21:34:10 t 1 1 203066 581 0.00 2019-12-18 21:34:46 2019-12-18 21:35:08 t 1 1 203070 562 0.00 2019-12-18 21:39:36 2019-12-18 21:39:53 t 1 1 203071 687 0.00 2019-12-18 21:38:03 2019-12-18 21:40:12 t 1 1 203073 562 0.00 2019-12-18 21:40:26 2019-12-18 21:40:31 t 1 1 203076 483 0.00 2019-12-18 21:41:58 2019-12-18 21:44:02 t 1 1 203078 730 0.00 2019-12-18 21:34:40 2019-12-18 21:44:20 t 1 1 203079 581 0.00 2019-12-18 21:44:29 2019-12-18 21:44:57 t 1 1 203081 687 0.00 2019-12-18 21:40:11 2019-12-18 21:47:23 t 1 1 203083 562 0.00 2019-12-18 21:46:27 2019-12-18 21:48:22 t 1 1 203085 562 0.00 2019-12-18 21:48:40 2019-12-18 21:51:23 t 1 1 203087 581 0.00 2019-12-18 21:51:29 2019-12-18 21:51:51 t 1 1 203089 730 0.00 2019-12-18 21:44:20 2019-12-18 21:55:03 t 1 1 203091 675 0.00 2019-12-18 21:53:13 2019-12-18 21:58:55 t 1 1 203099 498 0.00 2019-12-18 21:43:34 2019-12-18 22:03:23 t 1 2 203101 667 0.00 2019-12-18 22:03:27 2019-12-18 22:04:21 t 1 1 203103 689 0.00 2019-12-18 21:49:23 2019-12-18 22:04:51 t 1 1 203114 687 0.00 2019-12-18 21:58:48 2019-12-18 22:16:36 t 1 1 203115 744 0.00 2019-12-18 22:11:52 2019-12-18 22:17:39 t 1 1 203116 689 0.00 2019-12-18 22:14:54 2019-12-18 22:18:44 t 1 1 203117 689 0.00 2019-12-18 22:18:56 2019-12-18 22:19:15 t 1 1 203121 716 0.00 2019-12-18 22:09:51 2019-12-18 22:22:29 t 1 1 203122 510 0.00 2019-12-18 21:18:35 2019-12-18 22:24:22 t 1 1 203127 581 0.00 2019-12-18 22:24:37 2019-12-18 22:27:19 t 1 1 203130 675 0.00 2019-12-18 22:27:07 2019-12-18 22:28:33 t 1 1 203131 748 0.00 2019-12-18 22:23:52 2019-12-18 22:30:58 t 1 1 203133 716 0.00 2019-12-18 22:22:29 2019-12-18 22:31:45 t 1 1 203142 660 0.00 2019-12-18 22:15:55 2019-12-18 22:37:31 t 1 1 203144 748 0.00 2019-12-18 22:37:33 2019-12-18 22:38:04 t 1 1 203148 687 0.00 2019-12-18 22:37:32 2019-12-18 22:38:52 t 1 1 203150 675 0.00 2019-12-18 22:38:34 2019-12-18 22:40:06 t 1 1 203151 566 0.00 2019-12-18 22:26:36 2019-12-18 22:41:10 t 1 1 203157 689 0.00 2019-12-18 22:44:39 2019-12-18 22:44:57 t 1 1 203161 660 0.00 2019-12-18 22:37:31 2019-12-18 22:46:40 t 1 1 203163 591 0.00 2019-12-18 22:04:01 2019-12-18 22:51:31 t 1 1 203060 562 0.00 2019-12-18 21:31:02 2019-12-18 21:31:31 t 1 1 203062 611 0.00 2019-12-18 21:29:23 2019-12-18 21:34:09 t 1 1 203067 611 0.00 2019-12-18 21:34:09 2019-12-18 21:36:25 t 1 1 203072 392 0.00 2019-12-18 21:03:32 2019-12-18 21:40:26 t 1 2 203075 675 0.00 2019-12-18 21:42:20 2019-12-18 21:43:49 t 1 1 203077 514 0.00 2019-12-18 21:32:15 2019-12-18 21:44:19 t 1 1 203080 689 0.00 2019-12-18 21:40:49 2019-12-18 21:45:11 t 1 1 203082 687 0.00 2019-12-18 21:47:41 2019-12-18 21:47:50 t 1 1 203084 687 0.00 2019-12-18 21:48:03 2019-12-18 21:49:32 t 1 1 203086 538 0.00 2019-12-18 20:00:18 2019-12-18 21:51:49 t 1 1 203093 545 0.00 2019-12-18 21:49:12 2019-12-18 22:00:40 t 1 1 203094 562 0.00 2019-12-18 21:53:03 2019-12-18 22:01:41 t 1 1 203096 667 0.00 2019-12-18 21:57:45 2019-12-18 22:03:05 t 1 1 203098 545 0.00 2019-12-18 22:00:40 2019-12-18 22:03:21 t 1 1 203100 591 0.00 2019-12-18 20:50:49 2019-12-18 22:04:01 t 1 1 203104 667 0.00 2019-12-18 22:03:13 2019-12-18 22:05:10 t 1 1 203106 551 0.00 2019-12-18 21:53:54 2019-12-18 22:08:09 t 1 1 203107 675 0.00 2019-12-18 22:05:57 2019-12-18 22:08:52 t 1 1 203109 689 0.00 2019-12-18 22:05:21 2019-12-18 22:14:01 t 1 1 203111 564 0.00 2019-12-18 21:37:09 2019-12-18 22:14:49 t 1 1 203119 689 0.00 2019-12-18 22:20:40 2019-12-18 22:21:18 t 1 1 203123 481 0.00 2019-12-18 22:03:11 2019-12-18 22:24:27 t 1 1 203125 566 0.00 2019-12-18 21:57:36 2019-12-18 22:26:36 t 1 1 203126 562 0.00 2019-12-18 22:26:57 2019-12-18 22:27:12 t 1 1 203129 562 0.00 2019-12-18 22:27:52 2019-12-18 22:28:28 t 1 1 203132 748 0.00 2019-12-18 22:31:10 2019-12-18 22:31:37 t 1 1 203135 625 0.00 2019-12-18 20:58:13 2019-12-18 22:32:52 t 1 1 203136 679 0.00 2019-12-18 22:31:35 2019-12-18 22:33:10 t 1 1 203139 611 0.00 2019-12-18 22:31:28 2019-12-18 22:35:38 t 1 1 203141 687 0.00 2019-12-18 22:16:55 2019-12-18 22:37:11 t 1 1 203143 581 0.00 2019-12-18 22:37:48 2019-12-18 22:38:01 t 1 1 203146 748 0.00 2019-12-18 22:38:23 2019-12-18 22:38:34 t 1 1 203147 689 0.00 2019-12-18 22:38:35 2019-12-18 22:38:38 t 1 1 203149 689 0.00 2019-12-18 22:38:54 2019-12-18 22:39:12 t 1 1 203153 510 0.00 2019-12-18 22:24:22 2019-12-18 22:42:43 t 1 1 203155 748 0.00 2019-12-18 22:43:02 2019-12-18 22:44:02 t 1 1 203159 748 0.00 2019-12-18 22:42:55 2019-12-18 22:45:10 t 1 1 203160 562 0.00 2019-12-18 22:45:55 2019-12-18 22:46:29 t 1 1 203162 581 0.00 2019-12-18 22:48:18 2019-12-18 22:48:38 t 1 1 203167 689 0.00 2019-12-18 22:52:26 2019-12-18 22:52:47 t 1 1 203168 591 0.00 2019-12-18 22:54:01 2019-12-18 22:54:31 t 1 1 203169 578 0.00 2019-12-18 22:45:05 2019-12-18 22:55:24 t 1 1 203174 581 0.00 2019-12-18 22:58:59 2019-12-18 22:59:21 t 1 1 203175 667 0.00 2019-12-18 22:43:20 2019-12-18 23:00:20 t 1 1 203177 566 0.00 2019-12-18 22:41:10 2019-12-18 23:00:40 t 1 1 203178 689 0.00 2019-12-18 22:53:01 2019-12-18 23:01:10 t 1 1 203184 562 0.00 2019-12-18 23:07:16 2019-12-18 23:07:25 t 1 1 203185 578 0.00 2019-12-18 22:55:24 2019-12-18 23:08:07 t 1 1 203188 581 0.00 2019-12-18 23:09:40 2019-12-18 23:10:02 t 1 1 203191 748 0.00 2019-12-18 23:12:30 2019-12-18 23:12:41 t 1 1 203193 722 0.00 2019-12-18 23:13:07 2019-12-18 23:13:17 t 1 1 203195 716 0.00 2019-12-18 22:31:45 2019-12-18 23:15:53 t 1 1 203197 675 0.00 2019-12-18 23:14:45 2019-12-18 23:16:13 t 1 1 203199 748 0.00 2019-12-18 23:16:49 2019-12-18 23:17:00 t 1 1 203204 748 0.00 2019-12-18 23:18:28 2019-12-18 23:18:40 t 1 1 203208 748 0.00 2019-12-18 23:22:32 2019-12-18 23:22:43 t 1 1 203210 510 0.00 2019-12-18 22:42:44 2019-12-18 23:24:14 t 1 1 203213 581 0.00 2019-12-18 23:15:50 2019-12-18 23:28:03 t 1 1 203216 748 0.00 2019-12-18 23:30:43 2019-12-18 23:30:47 t 1 1 203221 748 0.00 2019-12-18 23:32:44 2019-12-18 23:34:10 t 1 1 203223 562 0.00 2019-12-18 23:36:05 2019-12-18 23:36:15 t 1 1 203224 625 0.00 2019-12-18 22:39:03 2019-12-18 23:37:53 t 1 1 203225 667 0.00 2019-12-18 23:37:11 2019-12-18 23:40:26 t 1 1 203226 545 0.00 2019-12-18 23:17:25 2019-12-18 23:42:11 t 1 1 203229 551 0.00 2019-12-18 23:00:40 2019-12-18 23:43:48 t 1 1 203233 667 0.00 2019-12-18 23:47:02 2019-12-18 23:47:22 t 1 1 203234 687 0.00 2019-12-18 23:24:35 2019-12-18 23:48:48 t 1 1 203235 503 0.00 2019-12-18 23:40:18 2019-12-18 23:49:40 t 1 1 203238 675 0.00 2019-12-18 23:56:09 2019-12-18 23:57:10 t 1 1 203240 485 0.00 2019-12-18 23:52:46 2019-12-18 23:57:45 t 1 1 203247 687 0.00 2019-12-19 00:01:18 2019-12-19 00:04:02 t 1 1 203248 562 0.00 2019-12-19 00:04:29 2019-12-19 00:04:45 t 1 1 203252 667 0.00 2019-12-19 00:08:06 2019-12-19 00:08:07 t 1 1 203254 503 0.00 2019-12-18 23:50:36 2019-12-19 00:11:07 t 1 1 203257 687 0.00 2019-12-19 00:08:18 2019-12-19 00:16:35 t 1 1 203258 562 0.00 2019-12-19 00:16:35 2019-12-19 00:16:56 t 1 1 203262 667 0.00 2019-12-19 00:23:10 2019-12-19 00:23:11 t 1 1 203265 679 0.00 2019-12-18 23:23:48 2019-12-19 00:29:14 t 1 1 203268 562 0.00 2019-12-19 00:35:52 2019-12-19 00:36:33 t 1 1 203270 562 0.00 2019-12-19 00:42:14 2019-12-19 00:42:40 t 1 1 203271 667 0.00 2019-12-19 00:34:56 2019-12-19 00:43:27 t 1 1 203274 713 0.00 2019-12-19 00:36:53 2019-12-19 00:48:04 t 1 1 203284 562 0.00 2019-12-19 01:13:01 2019-12-19 01:13:23 t 1 1 203295 734 0.00 2019-12-19 01:20:47 2019-12-19 01:26:02 t 1 1 203296 611 0.00 2019-12-19 01:18:23 2019-12-19 01:30:21 t 1 1 203300 679 0.00 2019-12-19 01:31:10 2019-12-19 01:31:49 t 1 1 203303 562 0.00 2019-12-19 01:37:45 2019-12-19 01:37:58 t 1 1 203305 503 0.00 2019-12-19 01:42:02 2019-12-19 01:43:53 t 1 1 203307 687 0.00 2019-12-19 01:36:30 2019-12-19 01:47:40 t 1 1 203308 667 0.00 2019-12-19 01:40:31 2019-12-19 01:48:34 t 1 1 203309 562 0.00 2019-12-19 01:49:44 2019-12-19 01:50:10 t 1 1 203314 679 0.00 2019-12-19 01:57:17 2019-12-19 02:01:29 t 1 1 203315 562 0.00 2019-12-19 02:01:55 2019-12-19 02:02:26 t 1 1 203319 679 0.00 2019-12-19 02:03:19 2019-12-19 02:17:32 t 1 1 203322 459 0.00 2019-12-19 02:07:44 2019-12-19 02:21:50 t 1 2 203329 667 0.00 2019-12-19 02:41:59 2019-12-19 02:42:30 t 1 1 203330 562 0.00 2019-12-19 02:45:06 2019-12-19 02:45:28 t 1 1 203331 562 0.00 2019-12-19 02:51:09 2019-12-19 02:51:36 t 1 1 203332 667 0.00 2019-12-19 02:52:08 2019-12-19 02:52:25 t 1 1 203336 667 0.00 2019-12-19 03:05:27 2019-12-19 03:05:44 t 1 1 203338 562 0.00 2019-12-19 03:09:47 2019-12-19 03:09:50 t 1 1 203345 667 0.00 2019-12-19 03:40:32 2019-12-19 03:40:42 t 1 1 203348 562 0.00 2019-12-19 03:46:30 2019-12-19 03:46:54 t 1 1 203350 562 0.00 2019-12-19 03:52:40 2019-12-19 03:53:03 t 1 1 203351 667 0.00 2019-12-19 03:52:00 2019-12-19 03:53:11 t 1 1 203352 562 0.00 2019-12-19 03:58:43 2019-12-19 03:59:11 t 1 1 203353 562 0.00 2019-12-19 04:05:11 2019-12-19 04:05:18 t 1 1 203170 754 0.00 2019-12-18 21:53:34 2019-12-18 22:56:33 t 1 2 203172 748 0.00 2019-12-18 22:56:53 2019-12-18 22:57:02 t 1 1 203173 748 0.00 2019-12-18 22:57:14 2019-12-18 22:57:16 t 1 1 203176 551 0.00 2019-12-18 22:14:56 2019-12-18 23:00:40 t 1 1 203182 667 0.00 2019-12-18 23:03:04 2019-12-18 23:03:06 t 1 1 203183 687 0.00 2019-12-18 22:59:56 2019-12-18 23:03:08 t 1 1 203187 675 0.00 2019-12-18 22:54:56 2019-12-18 23:09:21 t 1 1 203189 748 0.00 2019-12-18 23:10:32 2019-12-18 23:10:42 t 1 1 203190 748 0.00 2019-12-18 23:10:10 2019-12-18 23:12:10 t 1 1 203194 748 0.00 2019-12-18 23:14:53 2019-12-18 23:15:05 t 1 1 203196 748 0.00 2019-12-18 23:15:12 2019-12-18 23:15:58 t 1 1 203198 716 0.00 2019-12-18 23:15:53 2019-12-18 23:16:44 t 1 1 203201 562 0.00 2019-12-18 23:17:57 2019-12-18 23:18:06 t 1 1 203203 566 0.00 2019-12-18 23:00:40 2019-12-18 23:18:40 t 1 1 203205 748 0.00 2019-12-18 23:20:09 2019-12-18 23:20:20 t 1 1 203207 748 0.00 2019-12-18 23:21:02 2019-12-18 23:22:10 t 1 1 203209 716 0.00 2019-12-18 23:17:16 2019-12-18 23:23:59 t 1 1 203214 562 0.00 2019-12-18 23:28:27 2019-12-18 23:28:51 t 1 1 203215 748 0.00 2019-12-18 23:25:07 2019-12-18 23:30:37 t 1 1 203219 748 0.00 2019-12-18 23:33:02 2019-12-18 23:33:02 f 1 1 203230 675 0.00 2019-12-18 23:40:27 2019-12-18 23:46:02 t 1 1 203231 562 0.00 2019-12-18 23:46:15 2019-12-18 23:46:21 t 1 1 203232 566 0.00 2019-12-18 23:32:11 2019-12-18 23:47:19 t 1 1 203241 667 0.00 2019-12-18 23:57:34 2019-12-18 23:58:01 t 1 1 203243 566 0.00 2019-12-18 23:47:19 2019-12-18 23:59:08 t 1 1 203245 687 0.00 2019-12-18 23:48:48 2019-12-18 23:59:29 t 1 1 203246 551 0.00 2019-12-18 23:43:48 2019-12-19 00:01:49 t 1 1 203250 514 0.00 2019-12-18 23:59:29 2019-12-19 00:06:30 t 1 1 203251 667 0.00 2019-12-19 00:07:41 2019-12-19 00:07:57 t 1 1 203253 562 0.00 2019-12-19 00:10:27 2019-12-19 00:10:46 t 1 1 203255 503 0.00 2019-12-19 00:11:06 2019-12-19 00:12:22 t 1 1 203259 675 0.00 2019-12-19 00:11:30 2019-12-19 00:18:51 t 1 1 203260 667 0.00 2019-12-19 00:22:59 2019-12-19 00:23:01 t 1 1 203267 667 0.00 2019-12-19 00:31:21 2019-12-19 00:34:36 t 1 1 203269 687 0.00 2019-12-19 00:27:19 2019-12-19 00:36:47 t 1 1 203272 667 0.00 2019-12-19 00:43:37 2019-12-19 00:45:10 t 1 1 203275 562 0.00 2019-12-19 00:48:35 2019-12-19 00:48:38 t 1 1 203276 392 0.00 2019-12-19 00:22:28 2019-12-19 00:53:03 t 1 2 203277 635 0.00 2019-12-19 00:50:08 2019-12-19 00:53:47 t 1 1 203278 562 0.00 2019-12-19 00:54:29 2019-12-19 00:54:56 t 1 1 203279 687 0.00 2019-12-19 00:36:47 2019-12-19 00:58:18 t 1 1 203280 538 0.00 2019-12-18 21:51:53 2019-12-19 00:59:09 t 1 1 203288 611 0.00 2019-12-19 01:02:05 2019-12-19 01:18:23 t 1 1 203289 514 0.00 2019-12-19 01:18:42 2019-12-19 01:18:48 t 1 1 203290 562 0.00 2019-12-19 01:19:13 2019-12-19 01:19:16 t 1 1 203291 514 0.00 2019-12-19 01:20:09 2019-12-19 01:20:13 t 1 1 203292 734 0.00 2019-12-18 22:10:29 2019-12-19 01:20:47 t 1 1 203293 667 0.00 2019-12-19 01:20:38 2019-12-19 01:21:16 t 1 1 203297 679 0.00 2019-12-19 01:18:12 2019-12-19 01:30:32 t 1 1 203298 667 0.00 2019-12-19 01:31:30 2019-12-19 01:31:31 t 1 1 203306 562 0.00 2019-12-19 01:43:44 2019-12-19 01:44:02 t 1 1 203310 687 0.00 2019-12-19 01:50:07 2019-12-19 01:50:52 t 1 1 203311 633 0.00 2019-12-19 01:49:58 2019-12-19 01:54:42 t 1 1 203313 503 0.00 2019-12-19 01:43:53 2019-12-19 01:59:05 t 1 1 203317 562 0.00 2019-12-19 02:08:03 2019-12-19 02:08:38 t 1 1 203321 562 0.00 2019-12-19 02:20:35 2019-12-19 02:20:55 t 1 1 203323 625 0.00 2019-12-19 01:29:18 2019-12-19 02:25:40 t 1 1 203326 311 0.00 2019-12-19 02:26:42 2019-12-19 02:31:05 t 1 2 203327 562 0.00 2019-12-19 02:32:56 2019-12-19 02:33:10 t 1 1 203328 562 0.00 2019-12-19 02:38:56 2019-12-19 02:39:16 t 1 1 203334 667 0.00 2019-12-19 03:02:08 2019-12-19 03:02:32 t 1 1 203337 667 0.00 2019-12-19 03:09:09 2019-12-19 03:09:19 t 1 1 203339 656 0.00 2019-12-18 23:50:40 2019-12-19 03:12:12 t 1 1 203341 562 0.00 2019-12-19 03:15:48 2019-12-19 03:16:11 t 1 1 203342 562 0.00 2019-12-19 03:22:01 2019-12-19 03:22:22 t 1 1 203346 562 0.00 2019-12-19 03:40:19 2019-12-19 03:40:45 t 1 1 203354 562 0.00 2019-12-19 04:11:14 2019-12-19 04:11:17 t 1 1 203355 562 0.00 2019-12-19 04:17:14 2019-12-19 04:17:37 t 1 1 203356 667 0.00 2019-12-19 04:20:18 2019-12-19 04:20:30 t 1 1 203357 562 0.00 2019-12-19 04:23:17 2019-12-19 04:23:42 t 1 1 203359 667 0.00 2019-12-19 04:34:50 2019-12-19 04:35:19 t 1 1 203361 667 0.00 2019-12-19 04:39:12 2019-12-19 04:42:17 t 1 1 203362 562 0.00 2019-12-19 04:45:09 2019-12-19 04:45:30 t 1 1 203363 562 0.00 2019-12-19 04:47:12 2019-12-19 04:47:28 t 1 1 203367 562 0.00 2019-12-19 04:57:18 2019-12-19 04:57:46 t 1 1 203368 667 0.00 2019-12-19 05:00:07 2019-12-19 05:00:09 t 1 1 203369 562 0.00 2019-12-19 05:03:42 2019-12-19 05:03:54 t 1 1 203370 562 0.00 2019-12-19 05:09:36 2019-12-19 05:09:59 t 1 1 203371 667 0.00 2019-12-19 05:06:10 2019-12-19 05:11:06 t 1 1 203373 689 0.00 2019-12-19 05:18:03 2019-12-19 05:19:43 t 1 1 203375 562 0.00 2019-12-19 05:27:56 2019-12-19 05:28:20 t 1 1 203376 562 0.00 2019-12-19 05:33:50 2019-12-19 05:34:29 t 1 1 203377 562 0.00 2019-12-19 05:40:12 2019-12-19 05:40:35 t 1 1 203379 675 0.00 2019-12-19 05:37:15 2019-12-19 05:51:31 t 1 1 203380 562 0.00 2019-12-19 05:52:15 2019-12-19 05:52:47 t 1 1 203382 637 0.00 2019-12-19 05:55:25 2019-12-19 05:55:41 t 1 1 203384 637 0.00 2019-12-19 05:56:54 2019-12-19 06:03:23 t 1 1 203387 562 0.00 2019-12-19 06:11:14 2019-12-19 06:11:37 t 1 1 203388 562 0.00 2019-12-19 06:10:43 2019-12-19 06:12:12 t 1 1 203389 562 0.00 2019-12-19 06:17:14 2019-12-19 06:17:44 t 1 1 203390 562 0.00 2019-12-19 06:23:40 2019-12-19 06:23:43 t 1 1 203391 562 0.00 2019-12-19 06:29:37 2019-12-19 06:29:58 t 1 1 203392 562 0.00 2019-12-19 06:35:44 2019-12-19 06:36:05 t 1 1 203394 562 0.00 2019-12-19 06:48:25 2019-12-19 06:48:29 t 1 1 203396 675 0.00 2019-12-19 06:53:31 2019-12-19 06:53:31 t 1 1 203397 562 0.00 2019-12-19 06:54:33 2019-12-19 06:54:49 t 1 1 203398 675 0.00 2019-12-19 06:53:31 2019-12-19 06:55:13 t 1 1 203400 514 0.00 2019-12-19 01:20:36 2019-12-19 07:04:04 t 1 1 203402 514 0.00 2019-12-19 07:04:04 2019-12-19 07:09:21 t 1 1 203403 562 0.00 2019-12-19 07:12:40 2019-12-19 07:13:12 t 1 1 203404 562 0.00 2019-12-19 07:18:50 2019-12-19 07:19:17 t 1 1 203406 615 0.00 2019-12-19 07:19:31 2019-12-19 07:21:06 t 1 1 203407 562 0.00 2019-12-19 07:24:56 2019-12-19 07:25:26 t 1 1 203408 748 0.00 2019-12-19 07:25:45 2019-12-19 07:28:59 t 1 1 203409 748 0.00 2019-12-19 07:28:59 2019-12-19 07:32:49 t 1 1 203410 748 0.00 2019-12-19 07:32:49 2019-12-19 07:36:40 t 1 1 203411 748 0.00 2019-12-19 07:36:40 2019-12-19 07:37:49 t 1 1 203186 748 0.00 2019-12-18 23:04:17 2019-12-18 23:08:56 t 1 1 203192 748 0.00 2019-12-18 23:12:53 2019-12-18 23:12:55 t 1 1 203200 514 0.00 2019-12-18 22:16:14 2019-12-18 23:18:06 t 1 1 203202 578 0.00 2019-12-18 23:08:07 2019-12-18 23:18:30 t 1 1 203206 748 0.00 2019-12-18 23:21:15 2019-12-18 23:21:17 t 1 1 203211 689 0.00 2019-12-18 23:02:35 2019-12-18 23:25:47 t 1 1 203212 667 0.00 2019-12-18 23:05:47 2019-12-18 23:27:39 t 1 1 203217 694 0.00 2019-12-18 21:54:36 2019-12-18 23:31:29 t 1 1 203218 566 0.00 2019-12-18 23:18:40 2019-12-18 23:32:11 t 1 1 203220 748 0.00 2019-12-18 23:32:56 2019-12-18 23:34:10 t 1 1 203222 675 0.00 2019-12-18 23:25:05 2019-12-18 23:34:35 t 1 1 203227 635 0.00 2019-12-18 23:34:34 2019-12-18 23:42:16 t 1 1 203228 667 0.00 2019-12-18 23:40:35 2019-12-18 23:43:10 t 1 1 203236 716 0.00 2019-12-18 23:41:02 2019-12-18 23:50:11 t 1 1 203237 562 0.00 2019-12-18 23:52:00 2019-12-18 23:52:30 t 1 1 203239 483 0.00 2019-12-18 23:55:57 2019-12-18 23:57:35 t 1 1 203242 562 0.00 2019-12-18 23:58:13 2019-12-18 23:58:35 t 1 1 203244 514 0.00 2019-12-18 23:18:06 2019-12-18 23:59:29 t 1 1 203249 545 0.00 2019-12-18 23:42:11 2019-12-19 00:06:01 t 1 1 203256 667 0.00 2019-12-19 00:15:56 2019-12-19 00:16:12 t 1 1 203261 562 0.00 2019-12-19 00:22:39 2019-12-19 00:23:07 t 1 1 203263 687 0.00 2019-12-19 00:16:35 2019-12-19 00:27:19 t 1 1 203264 562 0.00 2019-12-19 00:28:45 2019-12-19 00:29:12 t 1 1 203266 713 0.00 2019-12-19 00:19:47 2019-12-19 00:33:50 t 1 1 203273 667 0.00 2019-12-19 00:46:50 2019-12-19 00:47:15 t 1 1 203281 562 0.00 2019-12-19 01:00:44 2019-12-19 01:01:05 t 1 1 203282 667 0.00 2019-12-19 01:01:00 2019-12-19 01:03:19 t 1 1 203283 562 0.00 2019-12-19 01:06:51 2019-12-19 01:07:15 t 1 1 203285 667 0.00 2019-12-19 01:13:44 2019-12-19 01:13:57 t 1 1 203286 562 0.00 2019-12-19 01:17:10 2019-12-19 01:17:34 t 1 1 203287 679 0.00 2019-12-19 00:29:14 2019-12-19 01:18:12 t 1 1 203294 562 0.00 2019-12-19 01:25:19 2019-12-19 01:25:37 t 1 1 203299 562 0.00 2019-12-19 01:31:23 2019-12-19 01:31:46 t 1 1 203301 538 0.00 2019-12-19 01:30:12 2019-12-19 01:32:56 t 1 1 203302 687 0.00 2019-12-19 00:58:18 2019-12-19 01:36:30 t 1 1 203304 667 0.00 2019-12-19 01:39:44 2019-12-19 01:39:59 t 1 1 203312 562 0.00 2019-12-19 01:55:52 2019-12-19 01:56:16 t 1 1 203316 622 0.00 2019-12-19 02:01:19 2019-12-19 02:04:20 t 1 1 203318 562 0.00 2019-12-19 02:14:19 2019-12-19 02:14:45 t 1 1 203320 611 0.00 2019-12-19 02:10:36 2019-12-19 02:20:25 t 1 1 203324 562 0.00 2019-12-19 02:26:35 2019-12-19 02:27:04 t 1 1 203325 692 0.00 2019-12-19 02:27:59 2019-12-19 02:29:55 t 1 1 203333 562 0.00 2019-12-19 02:57:21 2019-12-19 02:57:45 t 1 1 203335 562 0.00 2019-12-19 03:03:33 2019-12-19 03:03:52 t 1 1 203340 667 0.00 2019-12-19 03:13:07 2019-12-19 03:13:25 t 1 1 203343 562 0.00 2019-12-19 03:27:59 2019-12-19 03:28:29 t 1 1 203344 562 0.00 2019-12-19 03:34:25 2019-12-19 03:34:28 t 1 1 203347 562 0.00 2019-12-19 03:42:27 2019-12-19 03:42:31 t 1 1 203349 667 0.00 2019-12-19 03:50:55 2019-12-19 03:51:51 t 1 1 203358 562 0.00 2019-12-19 04:32:51 2019-12-19 04:33:16 t 1 1 203360 562 0.00 2019-12-19 04:39:05 2019-12-19 04:39:25 t 1 1 203364 562 0.00 2019-12-19 04:51:14 2019-12-19 04:51:38 t 1 1 203365 667 0.00 2019-12-19 04:52:17 2019-12-19 04:52:26 t 1 1 203366 667 0.00 2019-12-19 04:52:36 2019-12-19 04:55:12 t 1 1 203372 562 0.00 2019-12-19 05:15:36 2019-12-19 05:16:07 t 1 1 203374 562 0.00 2019-12-19 05:21:51 2019-12-19 05:23:05 t 1 1 203378 562 0.00 2019-12-19 05:46:12 2019-12-19 05:46:44 t 1 1 203381 637 0.00 2019-12-19 05:45:20 2019-12-19 05:55:25 t 1 1 203383 562 0.00 2019-12-19 05:58:37 2019-12-19 05:58:41 t 1 1 203385 562 0.00 2019-12-19 06:05:05 2019-12-19 06:05:29 t 1 1 203386 551 0.00 2019-12-19 00:01:49 2019-12-19 06:09:57 t 1 1 203393 562 0.00 2019-12-19 06:42:02 2019-12-19 06:42:33 t 1 1 203395 516 0.00 2019-12-19 06:15:42 2019-12-19 06:49:34 t 1 1 203399 562 0.00 2019-12-19 07:00:38 2019-12-19 07:00:59 t 1 1 203401 562 0.00 2019-12-19 07:06:53 2019-12-19 07:07:03 t 1 1 203405 514 0.00 2019-12-19 07:09:26 2019-12-19 07:19:59 t 1 1 203412 748 0.00 2019-12-19 07:38:03 2019-12-19 07:38:07 t 1 1 203413 748 0.00 2019-12-19 07:39:15 2019-12-19 07:39:19 t 1 1 203414 748 0.00 2019-12-19 07:39:30 2019-12-19 07:39:39 t 1 1 203415 748 0.00 2019-12-19 07:39:51 2019-12-19 07:39:57 t 1 1 203416 748 0.00 2019-12-19 07:40:56 2019-12-19 07:44:29 t 1 1 203417 689 0.00 2019-12-19 07:42:22 2019-12-19 07:45:02 t 1 1 203418 750 0.00 2019-12-19 07:03:48 2019-12-19 07:45:02 t 1 1 203419 689 0.00 2019-12-19 07:45:12 2019-12-19 07:45:35 t 1 1 203420 689 0.00 2019-12-19 07:46:00 2019-12-19 07:46:19 t 1 1 203421 625 0.00 2019-12-19 02:25:39 2019-12-19 07:46:20 t 1 1 203422 689 0.00 2019-12-19 07:46:33 2019-12-19 07:46:52 t 1 1 203423 689 0.00 2019-12-19 07:47:06 2019-12-19 07:47:24 t 1 1 203424 748 0.00 2019-12-19 07:44:29 2019-12-19 07:47:40 t 1 1 203425 591 0.00 2019-12-19 07:41:32 2019-12-19 07:48:20 t 1 1 203426 748 0.00 2019-12-19 07:47:59 2019-12-19 07:48:25 t 1 1 203427 748 0.00 2019-12-19 07:48:29 2019-12-19 07:48:31 t 1 1 203428 689 0.00 2019-12-19 07:48:36 2019-12-19 07:48:42 t 1 1 203429 748 0.00 2019-12-19 07:48:35 2019-12-19 07:51:24 t 1 1 203430 748 0.00 2019-12-19 07:51:24 2019-12-19 07:51:53 t 1 1 203431 689 0.00 2019-12-19 07:53:36 2019-12-19 07:53:53 t 1 1 203432 637 0.00 2019-12-19 06:03:23 2019-12-19 07:54:18 t 1 1 203433 679 0.00 2019-12-19 07:53:01 2019-12-19 07:54:32 t 1 1 203434 748 0.00 2019-12-19 07:55:33 2019-12-19 07:55:43 t 1 1 203435 748 0.00 2019-12-19 07:55:55 2019-12-19 07:55:59 t 1 1 203436 748 0.00 2019-12-19 07:56:48 2019-12-19 07:56:52 t 1 1 203437 748 0.00 2019-12-19 07:57:34 2019-12-19 07:58:06 t 1 1 203438 748 0.00 2019-12-19 07:58:13 2019-12-19 07:58:23 t 1 1 203439 689 0.00 2019-12-19 07:58:43 2019-12-19 07:58:51 t 1 1 203440 748 0.00 2019-12-19 07:59:06 2019-12-19 07:59:20 t 1 1 203441 625 0.00 2019-12-19 07:46:09 2019-12-19 08:03:05 t 1 1 203442 748 0.00 2019-12-19 08:02:45 2019-12-19 08:03:17 t 1 1 203443 748 0.00 2019-12-19 08:03:24 2019-12-19 08:03:29 t 1 1 203444 689 0.00 2019-12-19 08:03:54 2019-12-19 08:03:59 t 1 1 203445 748 0.00 2019-12-19 08:05:15 2019-12-19 08:06:24 t 1 1 203446 689 0.00 2019-12-19 08:07:06 2019-12-19 08:07:21 t 1 1 203447 748 0.00 2019-12-19 08:07:42 2019-12-19 08:07:53 t 1 1 203448 689 0.00 2019-12-19 08:07:32 2019-12-19 08:08:10 t 1 1 203449 689 0.00 2019-12-19 08:08:24 2019-12-19 08:09:05 t 1 1 203450 689 0.00 2019-12-19 08:09:15 2019-12-19 08:09:37 t 1 1 203451 689 0.00 2019-12-19 08:09:47 2019-12-19 08:10:09 t 1 1 203452 689 0.00 2019-12-19 08:10:19 2019-12-19 08:10:22 t 1 1 203453 748 0.00 2019-12-19 08:10:45 2019-12-19 08:10:49 t 1 1 203455 748 0.00 2019-12-19 08:11:02 2019-12-19 08:11:06 t 1 1 203456 689 0.00 2019-12-19 08:11:14 2019-12-19 08:11:59 t 1 1 203457 689 0.00 2019-12-19 08:12:11 2019-12-19 08:12:30 t 1 1 203462 748 0.00 2019-12-19 08:15:45 2019-12-19 08:16:12 t 1 1 203465 689 0.00 2019-12-19 08:16:34 2019-12-19 08:16:53 t 1 1 203476 748 0.00 2019-12-19 08:26:31 2019-12-19 08:26:35 t 1 1 203478 689 0.00 2019-12-19 08:27:45 2019-12-19 08:28:14 t 1 1 203480 689 0.00 2019-12-19 08:28:24 2019-12-19 08:28:46 t 1 1 203483 694 0.00 2019-12-18 23:31:29 2019-12-19 08:29:32 t 1 1 203486 694 0.00 2019-12-19 08:30:16 2019-12-19 08:32:03 t 1 1 203487 748 0.00 2019-12-19 08:31:55 2019-12-19 08:32:11 t 1 1 203489 748 0.00 2019-12-19 08:32:50 2019-12-19 08:33:51 t 1 1 203492 689 0.00 2019-12-19 08:34:50 2019-12-19 08:35:21 t 1 1 203493 748 0.00 2019-12-19 08:34:20 2019-12-19 08:36:21 t 1 1 203501 689 0.00 2019-12-19 08:40:45 2019-12-19 08:41:02 t 1 1 203510 748 0.00 2019-12-19 08:45:33 2019-12-19 08:46:57 t 1 1 203511 689 0.00 2019-12-19 08:47:02 2019-12-19 08:47:27 t 1 1 203512 689 0.00 2019-12-19 08:47:40 2019-12-19 08:48:01 t 1 1 203515 748 0.00 2019-12-19 08:50:34 2019-12-19 08:50:40 t 1 1 203524 748 0.00 2019-12-19 08:55:35 2019-12-19 08:55:35 t 1 1 203525 748 0.00 2019-12-19 08:55:44 2019-12-19 08:56:26 t 1 1 203526 689 0.00 2019-12-19 08:56:36 2019-12-19 08:56:44 t 1 1 203528 689 0.00 2019-12-19 08:56:55 2019-12-19 08:57:53 t 1 1 203536 581 0.00 2019-12-19 09:01:22 2019-12-19 09:01:51 t 1 1 203542 748 0.00 2019-12-19 09:06:26 2019-12-19 09:06:30 t 1 1 203543 687 0.00 2019-12-19 09:07:17 2019-12-19 09:09:08 t 1 1 203550 748 0.00 2019-12-19 09:12:49 2019-12-19 09:14:13 t 1 1 203554 748 0.00 2019-12-19 09:19:10 2019-12-19 09:19:22 t 1 1 203556 748 0.00 2019-12-19 09:19:28 2019-12-19 09:19:32 t 1 1 203557 633 0.00 2019-12-19 09:19:08 2019-12-19 09:22:48 t 1 1 203565 748 0.00 2019-12-19 09:26:49 2019-12-19 09:28:10 t 1 1 203567 748 0.00 2019-12-19 09:28:28 2019-12-19 09:28:32 t 1 1 203570 578 0.00 2019-12-19 09:09:24 2019-12-19 09:31:29 t 1 1 203571 748 0.00 2019-12-19 09:32:49 2019-12-19 09:33:27 t 1 1 203572 581 0.00 2019-12-19 09:33:32 2019-12-19 09:33:51 t 1 1 203579 707 0.00 2019-12-19 09:28:48 2019-12-19 09:36:38 t 1 1 203580 687 0.00 2019-12-19 09:25:51 2019-12-19 09:37:54 t 1 1 203581 748 0.00 2019-12-19 09:37:48 2019-12-19 09:39:14 t 1 1 203582 748 0.00 2019-12-19 09:40:22 2019-12-19 09:40:29 t 1 1 203586 694 0.00 2019-12-19 09:34:37 2019-12-19 09:42:58 t 1 1 203588 581 0.00 2019-12-19 09:44:12 2019-12-19 09:44:34 t 1 1 203590 625 0.00 2019-12-19 09:35:17 2019-12-19 09:47:19 t 1 1 203593 694 0.00 2019-12-19 09:51:42 2019-12-19 09:52:21 t 1 1 203594 679 0.00 2019-12-19 09:52:28 2019-12-19 09:52:58 t 1 1 203598 679 0.00 2019-12-19 09:54:54 2019-12-19 09:55:18 t 1 1 203599 581 0.00 2019-12-19 09:54:54 2019-12-19 09:55:37 t 1 1 203603 687 0.00 2019-12-19 09:54:52 2019-12-19 09:56:55 t 1 1 203604 679 0.00 2019-12-19 09:57:34 2019-12-19 09:57:45 t 1 1 203605 687 0.00 2019-12-19 09:59:36 2019-12-19 09:59:43 t 1 1 203606 687 0.00 2019-12-19 10:00:05 2019-12-19 10:00:17 t 1 1 203614 622 0.00 2019-12-19 09:47:07 2019-12-19 10:03:40 t 1 1 203615 516 0.00 2019-12-19 10:02:53 2019-12-19 10:04:14 t 1 1 203616 679 0.00 2019-12-19 10:05:35 2019-12-19 10:05:47 t 1 1 203623 679 0.00 2019-12-19 10:06:47 2019-12-19 10:09:00 t 1 1 203629 562 0.00 2019-12-19 10:09:25 2019-12-19 10:13:15 t 1 1 203631 611 0.00 2019-12-19 10:11:19 2019-12-19 10:16:15 t 1 1 203635 581 0.00 2019-12-19 10:17:59 2019-12-19 10:17:59 f 1 1 203636 687 0.00 2019-12-19 10:01:45 2019-12-19 10:18:19 t 1 1 203638 562 0.00 2019-12-19 10:19:44 2019-12-19 10:20:11 t 1 1 203639 562 0.00 2019-12-19 10:20:34 2019-12-19 10:20:57 t 1 1 203643 691 0.00 2019-12-19 10:23:35 2019-12-19 10:23:48 t 1 1 203647 691 0.00 2019-12-19 10:24:12 2019-12-19 10:25:55 t 1 1 203657 750 0.00 2019-12-19 10:30:54 2019-12-19 10:31:37 t 1 1 203660 748 0.00 2019-12-19 10:30:59 2019-12-19 10:32:17 t 1 1 203665 748 0.00 2019-12-19 10:34:08 2019-12-19 10:34:15 t 1 1 203667 615 0.00 2019-12-19 10:33:11 2019-12-19 10:34:21 t 1 1 203669 748 0.00 2019-12-19 10:34:45 2019-12-19 10:35:30 t 1 1 203670 748 0.00 2019-12-19 10:36:30 2019-12-19 10:36:38 t 1 1 203681 679 0.00 2019-12-19 10:44:09 2019-12-19 10:44:29 t 1 1 203683 748 0.00 2019-12-19 10:44:46 2019-12-19 10:47:01 t 1 1 203684 562 0.00 2019-12-19 10:47:21 2019-12-19 10:48:10 t 1 1 203686 538 0.00 2019-12-19 08:36:06 2019-12-19 10:48:43 t 1 1 203691 748 0.00 2019-12-19 10:51:57 2019-12-19 10:51:59 t 1 1 203693 750 0.00 2019-12-19 10:31:36 2019-12-19 10:53:21 t 1 1 203697 687 0.00 2019-12-19 10:44:21 2019-12-19 10:57:05 t 1 1 203700 679 0.00 2019-12-19 10:58:35 2019-12-19 10:58:47 t 1 1 203704 748 0.00 2019-12-19 11:02:01 2019-12-19 11:02:06 t 1 1 203708 679 0.00 2019-12-19 11:02:35 2019-12-19 11:02:47 t 1 1 203711 611 0.00 2019-12-19 10:31:41 2019-12-19 11:04:31 t 1 1 203713 514 0.00 2019-12-19 10:35:26 2019-12-19 11:05:00 t 1 1 203716 538 0.00 2019-12-19 11:02:40 2019-12-19 11:05:01 t 1 1 203719 748 0.00 2019-12-19 11:04:00 2019-12-19 11:05:03 t 1 1 203722 687 0.00 2019-12-19 10:57:05 2019-12-19 11:05:03 t 1 1 203725 562 0.00 2019-12-19 10:49:31 2019-12-19 11:05:04 t 1 1 203728 637 0.00 2019-12-19 11:03:38 2019-12-19 11:05:05 t 1 1 203733 615 0.00 2019-12-19 11:22:15 2019-12-19 11:27:15 t 1 1 203738 615 0.00 2019-12-19 11:35:28 2019-12-19 11:40:29 t 1 1 203743 220 0.00 2019-12-19 11:54:46 2019-12-19 11:59:00 t 1 2 203744 649 0.00 2019-12-19 11:53:47 2019-12-19 12:00:43 t 1 1 203745 615 0.00 2019-12-19 11:58:34 2019-12-19 12:05:00 t 1 1 203747 615 0.00 2019-12-19 12:05:00 2019-12-19 12:11:37 t 1 1 203749 615 0.00 2019-12-19 12:11:37 2019-12-19 12:18:42 t 1 1 203752 514 0.00 2019-12-19 11:04:57 2019-12-19 12:34:47 t 1 1 203754 724 0.00 2019-12-19 12:36:49 2019-12-19 12:42:09 t 1 1 203756 514 0.00 2019-12-19 12:34:47 2019-12-19 12:53:00 t 1 1 203757 220 0.00 2019-12-19 12:47:21 2019-12-19 13:00:44 t 1 2 203759 538 0.00 2019-12-19 13:11:32 2019-12-19 13:16:48 t 1 1 203761 687 0.00 2019-12-19 13:11:42 2019-12-19 13:16:49 t 1 1 203764 591 0.00 2019-12-19 13:04:30 2019-12-19 13:19:36 t 1 1 203767 633 0.00 2019-12-19 13:15:17 2019-12-19 13:25:25 t 1 1 203771 748 0.00 2019-12-19 13:26:03 2019-12-19 13:28:43 t 1 1 203774 578 0.00 2019-12-19 13:17:27 2019-12-19 13:31:58 t 1 1 203775 748 0.00 2019-12-19 13:30:46 2019-12-19 13:32:14 t 1 1 203777 581 0.00 2019-12-19 13:33:18 2019-12-19 13:33:18 f 1 1 203782 591 0.00 2019-12-19 13:27:58 2019-12-19 13:35:41 t 1 1 203784 591 0.00 2019-12-19 13:37:07 2019-12-19 13:38:37 t 1 1 203454 689 0.00 2019-12-19 08:10:33 2019-12-19 08:10:59 t 1 1 203458 748 0.00 2019-12-19 08:12:55 2019-12-19 08:13:08 t 1 1 203459 689 0.00 2019-12-19 08:14:51 2019-12-19 08:15:07 t 1 1 203460 689 0.00 2019-12-19 08:15:21 2019-12-19 08:15:41 t 1 1 203467 748 0.00 2019-12-19 08:20:13 2019-12-19 08:21:44 t 1 1 203471 689 0.00 2019-12-19 08:22:39 2019-12-19 08:23:10 t 1 1 203473 748 0.00 2019-12-19 08:23:09 2019-12-19 08:23:46 t 1 1 203474 689 0.00 2019-12-19 08:23:43 2019-12-19 08:24:50 t 1 1 203479 748 0.00 2019-12-19 08:26:56 2019-12-19 08:28:17 t 1 1 203481 591 0.00 2019-12-19 07:48:20 2019-12-19 08:28:46 t 1 1 203484 689 0.00 2019-12-19 08:30:51 2019-12-19 08:31:06 t 1 1 203485 748 0.00 2019-12-19 08:31:28 2019-12-19 08:31:42 t 1 1 203488 625 0.00 2019-12-19 08:03:12 2019-12-19 08:32:44 t 1 1 203494 748 0.00 2019-12-19 08:37:26 2019-12-19 08:37:41 t 1 1 203496 748 0.00 2019-12-19 08:38:44 2019-12-19 08:38:59 t 1 1 203497 748 0.00 2019-12-19 08:39:24 2019-12-19 08:39:33 t 1 1 203499 679 0.00 2019-12-19 08:37:05 2019-12-19 08:40:03 t 1 1 203500 689 0.00 2019-12-19 08:40:13 2019-12-19 08:40:29 t 1 1 203503 748 0.00 2019-12-19 08:41:54 2019-12-19 08:41:55 t 1 1 203506 689 0.00 2019-12-19 08:42:15 2019-12-19 08:42:31 t 1 1 203507 689 0.00 2019-12-19 08:42:45 2019-12-19 08:43:03 t 1 1 203509 748 0.00 2019-12-19 08:43:22 2019-12-19 08:44:37 t 1 1 203513 748 0.00 2019-12-19 08:47:46 2019-12-19 08:49:57 t 1 1 203514 748 0.00 2019-12-19 08:50:03 2019-12-19 08:50:12 t 1 1 203516 748 0.00 2019-12-19 08:51:45 2019-12-19 08:52:03 t 1 1 203517 689 0.00 2019-12-19 08:52:31 2019-12-19 08:52:44 t 1 1 203519 689 0.00 2019-12-19 08:53:33 2019-12-19 08:53:51 t 1 1 203520 711 0.00 2019-12-19 08:41:15 2019-12-19 08:54:56 t 1 1 203521 748 0.00 2019-12-19 08:53:53 2019-12-19 08:55:13 t 1 1 203523 748 0.00 2019-12-19 08:55:27 2019-12-19 08:55:28 t 1 1 203527 625 0.00 2019-12-19 08:35:08 2019-12-19 08:57:22 t 1 1 203529 581 0.00 2019-12-19 08:50:55 2019-12-19 08:58:11 t 1 1 203531 581 0.00 2019-12-19 08:58:26 2019-12-19 08:58:29 t 1 1 203532 748 0.00 2019-12-19 08:59:29 2019-12-19 08:59:35 t 1 1 203539 748 0.00 2019-12-19 09:03:24 2019-12-19 09:03:25 t 1 1 203541 687 0.00 2019-12-19 08:59:46 2019-12-19 09:06:23 t 1 1 203544 578 0.00 2019-12-19 08:27:02 2019-12-19 09:09:24 t 1 1 203545 748 0.00 2019-12-19 09:10:11 2019-12-19 09:11:11 t 1 1 203546 581 0.00 2019-12-19 09:12:09 2019-12-19 09:12:31 t 1 1 203548 748 0.00 2019-12-19 09:12:56 2019-12-19 09:13:07 t 1 1 203551 748 0.00 2019-12-19 09:13:46 2019-12-19 09:14:29 t 1 1 203560 748 0.00 2019-12-19 09:23:25 2019-12-19 09:23:32 t 1 1 203561 748 0.00 2019-12-19 09:23:45 2019-12-19 09:25:05 t 1 1 203562 687 0.00 2019-12-19 09:15:18 2019-12-19 09:25:37 t 1 1 203569 622 0.00 2019-12-19 09:25:42 2019-12-19 09:30:57 t 1 1 203573 748 0.00 2019-12-19 09:33:40 2019-12-19 09:33:55 t 1 1 203574 694 0.00 2019-12-19 08:32:09 2019-12-19 09:34:29 t 1 1 203576 748 0.00 2019-12-19 09:34:51 2019-12-19 09:35:38 t 1 1 203584 611 0.00 2019-12-19 09:34:29 2019-12-19 09:41:22 t 1 1 203585 750 0.00 2019-12-19 08:42:41 2019-12-19 09:42:29 t 1 1 203587 516 0.00 2019-12-19 08:08:20 2019-12-19 09:42:59 t 1 1 203591 578 0.00 2019-12-19 09:31:29 2019-12-19 09:47:57 t 1 1 203592 679 0.00 2019-12-19 09:26:35 2019-12-19 09:52:05 t 1 1 203596 687 0.00 2019-12-19 09:37:54 2019-12-19 09:54:08 t 1 1 203597 679 0.00 2019-12-19 09:54:22 2019-12-19 09:54:34 t 1 1 203600 611 0.00 2019-12-19 09:50:38 2019-12-19 09:55:47 t 1 1 203607 490 0.00 2019-12-19 09:38:49 2019-12-19 10:00:24 t 1 1 203617 633 0.00 2019-12-19 10:05:07 2019-12-19 10:05:59 t 1 1 203621 564 0.00 2019-12-19 09:55:27 2019-12-19 10:07:45 t 1 1 203624 724 0.00 2019-12-19 10:02:58 2019-12-19 10:09:58 t 1 1 203626 679 0.00 2019-12-19 10:10:39 2019-12-19 10:10:49 t 1 1 203628 622 0.00 2019-12-19 10:06:38 2019-12-19 10:11:37 t 1 1 203633 581 0.00 2019-12-19 10:16:21 2019-12-19 10:17:04 t 1 1 203634 581 0.00 2019-12-19 10:17:13 2019-12-19 10:17:13 f 1 1 203641 514 0.00 2019-12-19 10:14:45 2019-12-19 10:21:46 t 1 1 203644 748 0.00 2019-12-19 10:22:48 2019-12-19 10:23:49 t 1 1 203646 615 0.00 2019-12-19 10:19:10 2019-12-19 10:25:27 t 1 1 203648 748 0.00 2019-12-19 10:25:01 2019-12-19 10:25:56 t 1 1 203649 611 0.00 2019-12-19 10:22:49 2019-12-19 10:26:22 t 1 1 203650 748 0.00 2019-12-19 10:26:07 2019-12-19 10:28:11 t 1 1 203652 691 0.00 2019-12-19 10:27:30 2019-12-19 10:28:39 t 1 1 203654 748 0.00 2019-12-19 10:28:11 2019-12-19 10:30:24 t 1 1 203655 750 0.00 2019-12-19 09:58:27 2019-12-19 10:30:55 t 1 1 203656 622 0.00 2019-12-19 10:29:37 2019-12-19 10:31:13 t 1 1 203658 756 0.00 2019-12-19 10:31:54 2019-12-19 10:32:14 t 1 1 203661 562 0.00 2019-12-19 10:22:38 2019-12-19 10:32:53 t 1 1 203662 615 0.00 2019-12-19 10:25:27 2019-12-19 10:33:11 t 1 1 203663 748 0.00 2019-12-19 10:33:30 2019-12-19 10:33:38 t 1 1 203664 679 0.00 2019-12-19 10:33:50 2019-12-19 10:34:07 t 1 1 203666 591 0.00 2019-12-19 10:10:45 2019-12-19 10:34:19 t 1 1 203668 514 0.00 2019-12-19 10:28:30 2019-12-19 10:35:26 t 1 1 203673 679 0.00 2019-12-19 10:37:33 2019-12-19 10:37:46 t 1 1 203675 622 0.00 2019-12-19 10:30:35 2019-12-19 10:38:04 t 1 1 203676 679 0.00 2019-12-19 10:39:00 2019-12-19 10:39:13 t 1 1 203677 748 0.00 2019-12-19 10:39:52 2019-12-19 10:41:00 t 1 1 203678 687 0.00 2019-12-19 10:21:33 2019-12-19 10:42:38 t 1 1 203682 711 0.00 2019-12-19 08:56:50 2019-12-19 10:44:38 t 1 1 203685 748 0.00 2019-12-19 10:48:01 2019-12-19 10:48:22 t 1 1 203688 679 0.00 2019-12-19 10:48:51 2019-12-19 10:49:03 t 1 1 203689 562 0.00 2019-12-19 10:49:08 2019-12-19 10:49:09 t 1 1 203690 562 0.00 2019-12-19 10:49:09 2019-12-19 10:49:31 t 1 1 203695 748 0.00 2019-12-19 10:55:07 2019-12-19 10:56:58 t 1 1 203699 679 0.00 2019-12-19 10:58:14 2019-12-19 10:58:26 t 1 1 203705 748 0.00 2019-12-19 11:01:48 2019-12-19 11:02:35 t 1 1 203706 538 0.00 2019-12-19 10:48:41 2019-12-19 11:02:40 t 1 1 203712 734 0.00 2019-12-19 10:00:37 2019-12-19 11:04:54 t 1 1 203714 683 0.00 2019-12-19 07:46:23 2019-12-19 11:05:00 t 1 1 203717 681 0.00 2019-12-19 01:31:05 2019-12-19 11:05:01 t 1 1 203720 649 0.00 2019-12-19 10:54:38 2019-12-19 11:05:03 t 1 1 203723 622 0.00 2019-12-19 10:57:29 2019-12-19 11:05:03 t 1 1 203726 711 0.00 2019-12-19 10:44:38 2019-12-19 11:05:04 t 1 1 203731 459 0.00 2019-12-19 11:02:40 2019-12-19 11:10:16 t 1 2 203736 392 0.00 2019-12-19 11:12:34 2019-12-19 11:33:30 t 1 2 203740 615 0.00 2019-12-19 11:45:34 2019-12-19 11:52:05 t 1 1 203742 615 0.00 2019-12-19 11:52:05 2019-12-19 11:58:34 t 1 1 203746 724 0.00 2019-12-19 11:50:51 2019-12-19 12:08:34 t 1 1 203760 392 0.00 2019-12-19 13:10:11 2019-12-19 13:16:48 t 1 2 203461 689 0.00 2019-12-19 08:15:53 2019-12-19 08:16:12 t 1 1 203463 748 0.00 2019-12-19 08:16:21 2019-12-19 08:16:31 t 1 1 203464 748 0.00 2019-12-19 08:16:43 2019-12-19 08:16:47 t 1 1 203466 566 0.00 2019-12-19 08:05:49 2019-12-19 08:19:41 t 1 1 203468 637 0.00 2019-12-19 07:54:17 2019-12-19 08:21:45 t 1 1 203469 566 0.00 2019-12-19 08:19:41 2019-12-19 08:22:24 t 1 1 203470 748 0.00 2019-12-19 08:22:45 2019-12-19 08:22:52 t 1 1 203472 689 0.00 2019-12-19 08:23:10 2019-12-19 08:23:32 t 1 1 203475 689 0.00 2019-12-19 08:24:43 2019-12-19 08:25:01 t 1 1 203477 578 0.00 2019-12-18 23:18:30 2019-12-19 08:27:02 t 1 1 203482 689 0.00 2019-12-19 08:28:56 2019-12-19 08:29:18 t 1 1 203490 748 0.00 2019-12-19 08:33:56 2019-12-19 08:34:03 t 1 1 203491 625 0.00 2019-12-19 08:32:44 2019-12-19 08:34:45 t 1 1 203495 748 0.00 2019-12-19 08:38:13 2019-12-19 08:38:22 t 1 1 203498 734 0.00 2019-12-19 08:27:19 2019-12-19 08:39:42 t 1 1 203502 748 0.00 2019-12-19 08:41:36 2019-12-19 08:41:41 t 1 1 203504 689 0.00 2019-12-19 08:41:31 2019-12-19 08:41:58 t 1 1 203505 689 0.00 2019-12-19 08:39:58 2019-12-19 08:42:13 t 1 1 203508 679 0.00 2019-12-19 08:42:06 2019-12-19 08:43:51 t 1 1 203518 689 0.00 2019-12-19 08:53:00 2019-12-19 08:53:20 t 1 1 203522 748 0.00 2019-12-19 08:55:08 2019-12-19 08:55:14 t 1 1 203530 689 0.00 2019-12-19 08:56:26 2019-12-19 08:58:13 t 1 1 203533 689 0.00 2019-12-19 08:58:03 2019-12-19 08:59:44 t 1 1 203534 591 0.00 2019-12-19 08:28:46 2019-12-19 09:00:49 t 1 1 203535 311 0.00 2019-12-19 08:45:20 2019-12-19 09:01:43 t 1 2 203537 748 0.00 2019-12-19 09:02:03 2019-12-19 09:02:07 t 1 1 203538 748 0.00 2019-12-19 09:03:02 2019-12-19 09:03:12 t 1 1 203540 748 0.00 2019-12-19 09:05:34 2019-12-19 09:05:42 t 1 1 203547 748 0.00 2019-12-19 09:11:03 2019-12-19 09:12:40 t 1 1 203549 637 0.00 2019-12-19 08:21:45 2019-12-19 09:13:15 t 1 1 203552 748 0.00 2019-12-19 09:14:35 2019-12-19 09:15:22 t 1 1 203553 625 0.00 2019-12-19 08:57:22 2019-12-19 09:17:54 t 1 1 203555 591 0.00 2019-12-19 09:02:57 2019-12-19 09:19:29 t 1 1 203558 748 0.00 2019-12-19 09:21:19 2019-12-19 09:22:53 t 1 1 203559 581 0.00 2019-12-19 09:22:50 2019-12-19 09:23:12 t 1 1 203563 748 0.00 2019-12-19 09:25:15 2019-12-19 09:26:33 t 1 1 203564 625 0.00 2019-12-19 09:17:54 2019-12-19 09:27:03 t 1 1 203566 490 0.00 2019-12-19 09:27:50 2019-12-19 09:28:32 t 1 1 203568 748 0.00 2019-12-19 09:29:10 2019-12-19 09:30:49 t 1 1 203575 625 0.00 2019-12-19 09:27:53 2019-12-19 09:35:17 t 1 1 203577 622 0.00 2019-12-19 09:30:56 2019-12-19 09:35:56 t 1 1 203578 748 0.00 2019-12-19 09:36:06 2019-12-19 09:36:32 t 1 1 203583 748 0.00 2019-12-19 09:40:41 2019-12-19 09:40:47 t 1 1 203589 748 0.00 2019-12-19 09:41:30 2019-12-19 09:45:15 t 1 1 203595 679 0.00 2019-12-19 09:53:39 2019-12-19 09:53:50 t 1 1 203601 679 0.00 2019-12-19 09:55:33 2019-12-19 09:55:48 t 1 1 203602 679 0.00 2019-12-19 09:56:11 2019-12-19 09:56:27 t 1 1 203608 578 0.00 2019-12-19 09:47:57 2019-12-19 10:00:35 t 1 1 203609 734 0.00 2019-12-19 09:42:48 2019-12-19 10:00:37 t 1 1 203610 687 0.00 2019-12-19 10:00:52 2019-12-19 10:01:13 t 1 1 203611 625 0.00 2019-12-19 09:53:40 2019-12-19 10:01:47 t 1 1 203612 679 0.00 2019-12-19 10:01:46 2019-12-19 10:02:17 t 1 1 203613 679 0.00 2019-12-19 10:02:43 2019-12-19 10:03:13 t 1 1 203618 581 0.00 2019-12-19 10:05:41 2019-12-19 10:06:01 t 1 1 203619 622 0.00 2019-12-19 10:03:40 2019-12-19 10:06:38 t 1 1 203620 514 0.00 2019-12-19 09:54:30 2019-12-19 10:07:26 t 1 1 203622 581 0.00 2019-12-19 10:08:34 2019-12-19 10:08:52 t 1 1 203625 591 0.00 2019-12-19 09:27:45 2019-12-19 10:10:45 t 1 1 203627 611 0.00 2019-12-19 10:09:20 2019-12-19 10:11:20 t 1 1 203630 514 0.00 2019-12-19 10:07:26 2019-12-19 10:14:45 t 1 1 203632 578 0.00 2019-12-19 10:00:35 2019-12-19 10:16:28 t 1 1 203637 615 0.00 2019-12-19 10:13:05 2019-12-19 10:19:10 t 1 1 203640 707 0.00 2019-12-19 10:05:05 2019-12-19 10:21:08 t 1 1 203642 611 0.00 2019-12-19 10:20:23 2019-12-19 10:22:42 t 1 1 203645 691 0.00 2019-12-19 10:22:52 2019-12-19 10:23:56 t 1 1 203651 514 0.00 2019-12-19 10:21:46 2019-12-19 10:28:30 t 1 1 203653 622 0.00 2019-12-19 10:11:37 2019-12-19 10:28:50 t 1 1 203659 679 0.00 2019-12-19 10:11:09 2019-12-19 10:32:16 t 1 1 203671 748 0.00 2019-12-19 10:36:48 2019-12-19 10:37:04 t 1 1 203672 748 0.00 2019-12-19 10:37:11 2019-12-19 10:37:18 t 1 1 203674 578 0.00 2019-12-19 10:16:28 2019-12-19 10:37:55 t 1 1 203679 622 0.00 2019-12-19 10:38:54 2019-12-19 10:42:56 t 1 1 203680 562 0.00 2019-12-19 10:34:39 2019-12-19 10:43:40 t 1 1 203687 578 0.00 2019-12-19 10:37:55 2019-12-19 10:48:52 t 1 1 203692 724 0.00 2019-12-19 10:28:51 2019-12-19 10:53:13 t 1 1 203694 748 0.00 2019-12-19 10:52:25 2019-12-19 10:54:31 t 1 1 203696 679 0.00 2019-12-19 10:49:18 2019-12-19 10:57:01 t 1 1 203698 679 0.00 2019-12-19 10:57:31 2019-12-19 10:57:45 t 1 1 203701 748 0.00 2019-12-19 11:00:57 2019-12-19 11:00:58 t 1 1 203702 748 0.00 2019-12-19 11:01:26 2019-12-19 11:01:36 t 1 1 203703 679 0.00 2019-12-19 10:59:41 2019-12-19 11:02:03 t 1 1 203707 748 0.00 2019-12-19 11:02:35 2019-12-19 11:02:46 t 1 1 203709 748 0.00 2019-12-19 11:02:52 2019-12-19 11:02:59 t 1 1 203710 637 0.00 2019-12-19 09:13:35 2019-12-19 11:03:38 t 1 1 203715 625 0.00 2019-12-19 10:01:55 2019-12-19 11:05:01 t 1 1 203718 694 0.00 2019-12-19 09:52:26 2019-12-19 11:05:02 t 1 1 203721 578 0.00 2019-12-19 10:48:52 2019-12-19 11:05:03 t 1 1 203724 591 0.00 2019-12-19 10:34:19 2019-12-19 11:05:04 t 1 1 203727 660 0.00 2019-12-19 10:58:12 2019-12-19 11:05:04 t 1 1 203729 754 0.00 2019-12-19 09:20:52 2019-12-19 11:05:13 t 1 2 203730 392 0.00 2019-12-19 10:10:26 2019-12-19 11:07:15 t 1 2 203732 220 0.00 2019-12-19 11:23:33 2019-12-19 11:24:50 t 1 2 203734 649 0.00 2019-12-19 11:19:35 2019-12-19 11:32:46 t 1 1 203735 615 0.00 2019-12-19 11:27:15 2019-12-19 11:33:10 t 1 1 203737 615 0.00 2019-12-19 11:33:10 2019-12-19 11:35:29 t 1 1 203739 615 0.00 2019-12-19 11:40:45 2019-12-19 11:45:34 t 1 1 203741 220 0.00 2019-12-19 11:51:00 2019-12-19 11:54:13 t 1 2 203748 220 0.00 2019-12-19 11:54:52 2019-12-19 12:16:23 t 1 2 203750 615 0.00 2019-12-19 12:18:42 2019-12-19 12:21:22 t 1 1 203751 498 0.00 2019-12-19 12:27:09 2019-12-19 12:27:31 t 1 2 203753 724 0.00 2019-12-19 12:35:08 2019-12-19 12:36:33 t 1 1 203755 724 0.00 2019-12-19 12:42:08 2019-12-19 12:45:52 t 1 1 203758 516 0.00 2019-12-19 13:09:17 2019-12-19 13:16:32 t 1 1 203770 709 0.00 2019-12-19 13:11:35 2019-12-19 13:28:04 t 1 1 203773 562 0.00 2019-12-19 13:23:38 2019-12-19 13:30:41 t 1 1 203776 748 0.00 2019-12-19 13:32:23 2019-12-19 13:32:45 t 1 1 203780 562 0.00 2019-12-19 13:30:41 2019-12-19 13:34:45 t 1 1 203762 578 0.00 2019-12-19 13:13:59 2019-12-19 13:16:51 t 1 1 203763 220 0.00 2019-12-19 12:10:32 2019-12-19 13:17:25 t 1 2 203765 734 0.00 2019-12-19 13:11:55 2019-12-19 13:22:35 t 1 1 203766 562 0.00 2019-12-19 13:11:46 2019-12-19 13:23:38 t 1 1 203768 748 0.00 2019-12-19 13:24:02 2019-12-19 13:25:33 t 1 1 203769 514 0.00 2019-12-19 12:53:00 2019-12-19 13:26:17 t 1 1 203772 748 0.00 2019-12-19 13:30:19 2019-12-19 13:30:24 t 1 1 203778 748 0.00 2019-12-19 13:33:15 2019-12-19 13:33:20 t 1 1 203779 709 0.00 2019-12-19 13:28:36 2019-12-19 13:34:25 t 1 1 203796 514 0.00 2019-12-19 13:26:17 2019-12-19 13:51:01 t 1 1 203799 687 0.00 2019-12-19 13:16:49 2019-12-19 13:51:41 t 1 1 203800 578 0.00 2019-12-19 13:31:58 2019-12-19 13:53:45 t 1 1 203802 748 0.00 2019-12-19 13:51:46 2019-12-19 13:53:55 t 1 1 203803 748 0.00 2019-12-19 13:54:25 2019-12-19 13:54:32 t 1 1 203809 716 0.00 2019-12-19 14:03:16 2019-12-19 14:04:11 t 1 1 203814 687 0.00 2019-12-19 13:52:11 2019-12-19 14:06:09 t 1 1 203815 615 0.00 2019-12-19 14:01:55 2019-12-19 14:11:01 t 1 1 203816 687 0.00 2019-12-19 14:06:18 2019-12-19 14:11:48 t 1 1 203818 673 0.00 2019-12-19 14:05:50 2019-12-19 14:15:19 t 1 1 203819 687 0.00 2019-12-19 14:16:31 2019-12-19 14:16:33 t 1 1 203822 748 0.00 2019-12-19 14:16:56 2019-12-19 14:17:05 t 1 1 203826 687 0.00 2019-12-19 14:17:53 2019-12-19 14:19:21 t 1 1 203829 748 0.00 2019-12-19 14:20:35 2019-12-19 14:22:14 t 1 1 203830 562 0.00 2019-12-19 14:25:37 2019-12-19 14:25:48 t 1 1 203834 562 0.00 2019-12-19 14:28:10 2019-12-19 14:29:38 t 1 1 203843 514 0.00 2019-12-19 13:51:01 2019-12-19 14:59:15 t 1 1 203847 734 0.00 2019-12-19 13:40:38 2019-12-19 15:09:29 t 1 1 203848 516 0.00 2019-12-19 14:51:36 2019-12-19 15:11:26 t 1 1 203853 564 0.00 2019-12-19 14:08:40 2019-12-19 15:24:19 t 1 1 203855 544 0.00 2019-12-19 14:52:53 2019-12-19 15:24:52 t 1 1 203859 611 0.00 2019-12-19 14:57:32 2019-12-19 15:27:32 t 1 1 203865 627 0.00 2019-12-19 15:33:19 2019-12-19 15:33:41 t 1 1 203870 635 0.00 2019-12-19 14:34:05 2019-12-19 15:41:57 t 1 1 203872 627 0.00 2019-12-19 15:42:32 2019-12-19 15:43:02 t 1 1 203879 564 0.00 2019-12-19 15:37:46 2019-12-19 15:54:08 t 1 1 203887 627 0.00 2019-12-19 16:02:40 2019-12-19 16:03:09 t 1 1 203889 627 0.00 2019-12-19 16:03:32 2019-12-19 16:03:41 t 1 1 203893 611 0.00 2019-12-19 15:42:48 2019-12-19 16:08:12 t 1 1 203895 562 0.00 2019-12-19 16:08:20 2019-12-19 16:08:30 t 1 1 203898 716 0.00 2019-12-19 16:12:25 2019-12-19 16:12:49 t 1 1 203901 748 0.00 2019-12-19 16:12:58 2019-12-19 16:14:01 t 1 1 203903 562 0.00 2019-12-19 16:15:11 2019-12-19 16:15:37 t 1 1 203905 562 0.00 2019-12-19 16:18:00 2019-12-19 16:19:15 t 1 1 203907 562 0.00 2019-12-19 16:21:47 2019-12-19 16:22:08 t 1 1 203911 748 0.00 2019-12-19 16:26:57 2019-12-19 16:26:58 t 1 1 203919 627 0.00 2019-12-19 16:36:13 2019-12-19 16:36:43 t 1 1 203920 736 0.00 2019-12-19 16:38:13 2019-12-19 16:38:33 t 1 1 203921 627 0.00 2019-12-19 16:36:50 2019-12-19 16:39:08 t 1 1 203923 687 0.00 2019-12-19 16:33:56 2019-12-19 16:39:32 t 1 1 203931 736 0.00 2019-12-19 16:46:40 2019-12-19 16:47:43 t 1 1 203939 635 0.00 2019-12-19 16:48:50 2019-12-19 16:54:10 t 1 1 203941 637 0.00 2019-12-19 16:51:01 2019-12-19 16:54:23 t 1 1 203944 637 0.00 2019-12-19 16:55:13 2019-12-19 17:00:16 t 1 1 203947 591 0.00 2019-12-19 16:29:37 2019-12-19 17:01:56 t 1 1 203949 627 0.00 2019-12-19 17:08:20 2019-12-19 17:08:33 t 1 1 203956 622 0.00 2019-12-19 16:48:21 2019-12-19 17:15:08 t 1 1 203958 514 0.00 2019-12-19 15:45:19 2019-12-19 17:16:27 t 1 1 203960 627 0.00 2019-12-19 17:18:56 2019-12-19 17:19:26 t 1 1 203962 627 0.00 2019-12-19 17:19:35 2019-12-19 17:19:47 t 1 1 203963 687 0.00 2019-12-19 17:12:28 2019-12-19 17:21:02 t 1 1 203964 591 0.00 2019-12-19 17:01:56 2019-12-19 17:21:57 t 1 1 203966 627 0.00 2019-12-19 17:23:12 2019-12-19 17:23:29 t 1 1 203968 627 0.00 2019-12-19 17:32:04 2019-12-19 17:32:13 t 1 1 203972 516 0.00 2019-12-19 17:26:11 2019-12-19 17:36:20 t 1 1 203976 675 0.00 2019-12-19 17:42:01 2019-12-19 17:43:12 t 1 1 203978 627 0.00 2019-12-19 17:44:32 2019-12-19 17:44:39 t 1 1 203979 748 0.00 2019-12-19 17:43:56 2019-12-19 17:46:07 t 1 1 203980 748 0.00 2019-12-19 17:45:16 2019-12-19 17:47:43 t 1 1 203987 748 0.00 2019-12-19 17:52:24 2019-12-19 17:52:40 t 1 1 203991 742 0.00 2019-12-19 17:48:32 2019-12-19 17:55:32 t 1 1 203992 748 0.00 2019-12-19 17:55:33 2019-12-19 17:55:47 t 1 1 203995 724 0.00 2019-12-19 17:10:12 2019-12-19 17:57:34 t 1 1 203996 673 0.00 2019-12-19 17:56:44 2019-12-19 17:58:12 t 1 1 203997 687 0.00 2019-12-19 17:48:22 2019-12-19 17:59:09 t 1 1 203999 687 0.00 2019-12-19 17:59:09 2019-12-19 18:03:24 t 1 1 204003 627 0.00 2019-12-19 18:02:47 2019-12-19 18:06:08 t 1 1 204009 711 0.00 2019-12-19 16:28:55 2019-12-19 18:10:33 t 1 1 204011 627 0.00 2019-12-19 18:09:44 2019-12-19 18:11:18 t 1 1 204012 514 0.00 2019-12-19 17:16:27 2019-12-19 18:12:26 t 1 1 204014 498 0.00 2019-12-19 17:04:51 2019-12-19 18:18:13 t 1 2 204015 724 0.00 2019-12-19 18:18:14 2019-12-19 18:18:50 t 1 1 204017 724 0.00 2019-12-19 18:19:03 2019-12-19 18:19:32 t 1 1 204019 724 0.00 2019-12-19 18:19:31 2019-12-19 18:19:51 t 1 1 204020 724 0.00 2019-12-19 18:19:50 2019-12-19 18:20:08 t 1 1 204022 562 0.00 2019-12-19 18:19:12 2019-12-19 18:20:30 t 1 1 204025 724 0.00 2019-12-19 18:20:25 2019-12-19 18:27:50 t 1 1 204026 481 0.00 2019-12-19 17:19:53 2019-12-19 18:28:41 t 1 1 204027 707 0.00 2019-12-19 18:25:08 2019-12-19 18:30:27 t 1 1 204029 637 0.00 2019-12-19 18:08:39 2019-12-19 18:31:49 t 1 1 204030 748 0.00 2019-12-19 18:35:18 2019-12-19 18:37:40 t 1 1 204031 514 0.00 2019-12-19 18:12:26 2019-12-19 18:39:10 t 1 1 204035 516 0.00 2019-12-19 18:17:38 2019-12-19 18:51:47 t 1 1 204040 687 0.00 2019-12-19 18:37:25 2019-12-19 18:57:59 t 1 1 204043 748 0.00 2019-12-19 18:38:56 2019-12-19 19:04:18 t 1 1 204046 724 0.00 2019-12-19 19:03:39 2019-12-19 19:05:43 t 1 1 204049 687 0.00 2019-12-19 19:08:11 2019-12-19 19:10:01 t 1 1 204051 748 0.00 2019-12-19 19:05:25 2019-12-19 19:12:08 t 1 1 204053 748 0.00 2019-12-19 19:13:19 2019-12-19 19:13:36 t 1 1 204055 748 0.00 2019-12-19 19:15:03 2019-12-19 19:15:11 t 1 1 204056 481 0.00 2019-12-19 19:10:10 2019-12-19 19:17:37 t 1 1 204059 514 0.00 2019-12-19 18:39:10 2019-12-19 19:22:07 t 1 1 204060 748 0.00 2019-12-19 19:22:02 2019-12-19 19:22:14 t 1 1 204062 591 0.00 2019-12-19 17:21:57 2019-12-19 19:22:54 t 1 1 204064 748 0.00 2019-12-19 19:23:35 2019-12-19 19:23:43 t 1 1 204068 748 0.00 2019-12-19 19:26:31 2019-12-19 19:26:32 t 1 1 204069 748 0.00 2019-12-19 19:27:55 2019-12-19 19:28:00 t 1 1 204071 581 0.00 2019-12-19 19:30:05 2019-12-19 19:30:05 f 1 1 203781 748 0.00 2019-12-19 13:33:59 2019-12-19 13:35:11 t 1 1 203783 622 0.00 2019-12-19 13:32:52 2019-12-19 13:37:57 t 1 1 203786 734 0.00 2019-12-19 13:37:23 2019-12-19 13:40:39 t 1 1 203788 748 0.00 2019-12-19 13:46:48 2019-12-19 13:48:34 t 1 1 203790 748 0.00 2019-12-19 13:49:06 2019-12-19 13:49:20 t 1 1 203792 724 0.00 2019-12-19 13:33:15 2019-12-19 13:49:44 t 1 1 203795 748 0.00 2019-12-19 13:50:35 2019-12-19 13:50:42 t 1 1 203797 748 0.00 2019-12-19 13:49:37 2019-12-19 13:51:24 t 1 1 203806 748 0.00 2019-12-19 13:59:08 2019-12-19 13:59:24 t 1 1 203807 748 0.00 2019-12-19 14:00:10 2019-12-19 14:00:15 t 1 1 203810 562 0.00 2019-12-19 13:50:45 2019-12-19 14:04:12 t 1 1 203812 578 0.00 2019-12-19 13:53:45 2019-12-19 14:05:29 t 1 1 203813 694 0.00 2019-12-19 13:45:06 2019-12-19 14:05:54 t 1 1 203823 748 0.00 2019-12-19 14:17:17 2019-12-19 14:17:18 t 1 1 203825 748 0.00 2019-12-19 14:19:02 2019-12-19 14:19:06 t 1 1 203827 748 0.00 2019-12-19 14:20:35 2019-12-19 14:20:35 t 1 1 203828 615 0.00 2019-12-19 14:16:35 2019-12-19 14:21:53 t 1 1 203833 481 0.00 2019-12-19 14:16:48 2019-12-19 14:28:26 t 1 1 203837 498 0.00 2019-12-19 14:51:10 2019-12-19 14:51:10 f 1 2 203839 544 0.00 2019-12-19 14:51:33 2019-12-19 14:53:05 t 1 1 203842 459 0.00 2019-12-19 14:58:50 2019-12-19 14:59:05 t 1 2 203844 691 0.00 2019-12-19 15:04:02 2019-12-19 15:05:07 t 1 1 203845 675 0.00 2019-12-19 15:06:56 2019-12-19 15:08:06 t 1 1 203846 687 0.00 2019-12-19 14:27:22 2019-12-19 15:09:04 t 1 1 203850 627 0.00 2019-12-19 15:04:23 2019-12-19 15:16:28 t 1 1 203851 498 0.00 2019-12-19 13:41:45 2019-12-19 15:17:55 t 1 2 203852 673 0.00 2019-12-19 14:15:19 2019-12-19 15:23:10 t 1 1 203861 627 0.00 2019-12-19 15:30:56 2019-12-19 15:31:24 t 1 1 203862 627 0.00 2019-12-19 15:32:11 2019-12-19 15:32:23 t 1 1 203864 627 0.00 2019-12-19 15:33:00 2019-12-19 15:33:01 t 1 1 203866 716 0.00 2019-12-19 15:33:12 2019-12-19 15:33:57 t 1 1 203867 627 0.00 2019-12-19 15:34:16 2019-12-19 15:34:30 t 1 1 203869 564 0.00 2019-12-19 15:31:13 2019-12-19 15:37:45 t 1 1 203871 637 0.00 2019-12-19 13:54:41 2019-12-19 15:42:02 t 1 1 203873 627 0.00 2019-12-19 15:43:17 2019-12-19 15:43:29 t 1 1 203874 514 0.00 2019-12-19 14:59:15 2019-12-19 15:45:19 t 1 1 203877 748 0.00 2019-12-19 15:49:41 2019-12-19 15:51:21 t 1 1 203878 748 0.00 2019-12-19 15:51:21 2019-12-19 15:54:04 t 1 1 203881 627 0.00 2019-12-19 15:54:17 2019-12-19 15:54:36 t 1 1 203883 516 0.00 2019-12-19 15:11:26 2019-12-19 15:54:44 t 1 1 203884 754 0.00 2019-12-19 13:05:10 2019-12-19 15:55:27 t 1 2 203886 562 0.00 2019-12-19 15:57:24 2019-12-19 15:57:44 t 1 1 203890 687 0.00 2019-12-19 15:38:58 2019-12-19 16:05:39 t 1 1 203891 687 0.00 2019-12-19 16:06:06 2019-12-19 16:06:23 t 1 1 203894 516 0.00 2019-12-19 15:54:44 2019-12-19 16:08:20 t 1 1 203904 748 0.00 2019-12-19 16:17:28 2019-12-19 16:18:58 t 1 1 203906 736 0.00 2019-12-19 16:08:15 2019-12-19 16:19:16 t 1 1 203908 748 0.00 2019-12-19 16:21:00 2019-12-19 16:24:24 t 1 1 203910 627 0.00 2019-12-19 16:25:43 2019-12-19 16:26:08 t 1 1 203914 591 0.00 2019-12-19 16:20:55 2019-12-19 16:29:37 t 1 1 203915 562 0.00 2019-12-19 16:32:45 2019-12-19 16:33:10 t 1 1 203917 687 0.00 2019-12-19 16:29:08 2019-12-19 16:33:56 t 1 1 203924 622 0.00 2019-12-19 16:39:00 2019-12-19 16:40:19 t 1 1 203925 622 0.00 2019-12-19 16:40:19 2019-12-19 16:41:37 t 1 1 203926 637 0.00 2019-12-19 16:33:32 2019-12-19 16:42:45 t 1 1 203928 673 0.00 2019-12-19 16:21:53 2019-12-19 16:45:43 t 1 1 203929 627 0.00 2019-12-19 16:47:01 2019-12-19 16:47:15 t 1 1 203932 673 0.00 2019-12-19 16:46:26 2019-12-19 16:48:45 t 1 1 203934 637 0.00 2019-12-19 16:45:32 2019-12-19 16:50:18 t 1 1 203938 581 0.00 2019-12-19 16:54:02 2019-12-19 16:54:02 f 1 1 203945 562 0.00 2019-12-19 16:58:31 2019-12-19 17:00:38 t 1 1 203948 675 0.00 2019-12-19 16:58:03 2019-12-19 17:05:07 t 1 1 203950 637 0.00 2019-12-19 17:00:49 2019-12-19 17:08:42 t 1 1 203953 483 0.00 2019-12-19 16:51:31 2019-12-19 17:12:31 t 1 1 203955 562 0.00 2019-12-19 17:10:29 2019-12-19 17:14:38 t 1 1 203957 637 0.00 2019-12-19 17:08:42 2019-12-19 17:15:15 t 1 1 203961 637 0.00 2019-12-19 17:18:27 2019-12-19 17:19:35 t 1 1 203965 627 0.00 2019-12-19 17:22:48 2019-12-19 17:23:04 t 1 1 203967 516 0.00 2019-12-19 17:09:07 2019-12-19 17:26:11 t 1 1 203970 627 0.00 2019-12-19 17:32:21 2019-12-19 17:32:40 t 1 1 203977 627 0.00 2019-12-19 17:43:38 2019-12-19 17:44:10 t 1 1 203984 748 0.00 2019-12-19 17:49:10 2019-12-19 17:51:06 t 1 1 203985 748 0.00 2019-12-19 17:51:28 2019-12-19 17:51:48 t 1 1 203986 748 0.00 2019-12-19 17:52:09 2019-12-19 17:52:16 t 1 1 203988 748 0.00 2019-12-19 17:53:04 2019-12-19 17:53:49 t 1 1 203989 637 0.00 2019-12-19 17:32:31 2019-12-19 17:54:29 t 1 1 203990 627 0.00 2019-12-19 17:54:34 2019-12-19 17:54:46 t 1 1 203993 649 0.00 2019-12-19 17:36:36 2019-12-19 17:55:54 t 1 1 203994 675 0.00 2019-12-19 17:54:45 2019-12-19 17:56:55 t 1 1 204001 578 0.00 2019-12-19 15:54:39 2019-12-19 18:05:03 t 1 1 204002 673 0.00 2019-12-19 17:59:08 2019-12-19 18:05:43 t 1 1 204004 754 0.00 2019-12-19 16:40:27 2019-12-19 18:06:40 t 1 2 204005 627 0.00 2019-12-19 18:07:00 2019-12-19 18:07:18 t 1 1 204008 627 0.00 2019-12-19 18:10:04 2019-12-19 18:10:17 t 1 1 204010 627 0.00 2019-12-19 18:10:25 2019-12-19 18:10:39 t 1 1 204013 687 0.00 2019-12-19 18:09:49 2019-12-19 18:13:17 t 1 1 204018 627 0.00 2019-12-19 18:12:13 2019-12-19 18:19:41 t 1 1 204021 724 0.00 2019-12-19 18:20:07 2019-12-19 18:20:13 t 1 1 204024 673 0.00 2019-12-19 18:22:07 2019-12-19 18:26:53 t 1 1 204033 673 0.00 2019-12-19 18:38:24 2019-12-19 18:40:57 t 1 1 204034 673 0.00 2019-12-19 18:43:54 2019-12-19 18:45:00 t 1 1 204037 625 0.00 2019-12-19 17:42:49 2019-12-19 18:53:50 t 1 1 204038 675 0.00 2019-12-19 18:53:47 2019-12-19 18:55:38 t 1 1 204044 516 0.00 2019-12-19 18:51:47 2019-12-19 19:04:41 t 1 1 204048 220 0.00 2019-12-19 19:04:59 2019-12-19 19:07:33 t 1 2 204061 637 0.00 2019-12-19 19:20:34 2019-12-19 19:22:45 t 1 1 204063 748 0.00 2019-12-19 19:22:51 2019-12-19 19:23:12 t 1 1 204067 748 0.00 2019-12-19 19:24:54 2019-12-19 19:24:59 t 1 1 204070 750 0.00 2019-12-19 19:18:05 2019-12-19 19:28:38 t 1 1 204072 748 0.00 2019-12-19 19:30:24 2019-12-19 19:31:11 t 1 1 204073 748 0.00 2019-12-19 19:31:24 2019-12-19 19:32:12 t 1 1 204076 637 0.00 2019-12-19 19:25:59 2019-12-19 19:34:00 t 1 1 204077 748 0.00 2019-12-19 19:34:12 2019-12-19 19:34:26 t 1 1 204084 564 0.00 2019-12-19 17:23:27 2019-12-19 19:40:46 t 1 1 204086 687 0.00 2019-12-19 19:29:52 2019-12-19 19:42:08 t 1 1 204088 687 0.00 2019-12-19 19:43:31 2019-12-19 19:43:35 t 1 1 204090 625 0.00 2019-12-19 19:01:36 2019-12-19 19:44:38 t 1 1 203785 637 0.00 2019-12-19 13:11:52 2019-12-19 13:40:14 t 1 1 203787 622 0.00 2019-12-19 13:37:57 2019-12-19 13:44:00 t 1 1 203789 748 0.00 2019-12-19 13:47:37 2019-12-19 13:48:54 t 1 1 203791 748 0.00 2019-12-19 13:49:20 2019-12-19 13:49:21 t 1 1 203793 622 0.00 2019-12-19 13:44:00 2019-12-19 13:50:01 t 1 1 203794 562 0.00 2019-12-19 13:49:01 2019-12-19 13:50:09 t 1 1 203798 748 0.00 2019-12-19 13:51:24 2019-12-19 13:51:28 t 1 1 203801 637 0.00 2019-12-19 13:40:42 2019-12-19 13:53:52 t 1 1 203804 748 0.00 2019-12-19 13:54:53 2019-12-19 13:58:19 t 1 1 203805 622 0.00 2019-12-19 13:50:01 2019-12-19 13:59:10 t 1 1 203808 748 0.00 2019-12-19 14:02:10 2019-12-19 14:03:10 t 1 1 203811 748 0.00 2019-12-19 14:03:37 2019-12-19 14:04:29 t 1 1 203817 220 0.00 2019-12-19 13:34:47 2019-12-19 14:12:18 t 1 2 203820 615 0.00 2019-12-19 14:11:01 2019-12-19 14:16:36 t 1 1 203821 562 0.00 2019-12-19 14:13:33 2019-12-19 14:16:58 t 1 1 203824 687 0.00 2019-12-19 14:17:15 2019-12-19 14:17:19 t 1 1 203831 687 0.00 2019-12-19 14:19:27 2019-12-19 14:26:32 t 1 1 203832 578 0.00 2019-12-19 14:05:29 2019-12-19 14:28:25 t 1 1 203835 562 0.00 2019-12-19 14:32:29 2019-12-19 14:33:01 t 1 1 203836 578 0.00 2019-12-19 14:28:25 2019-12-19 14:47:36 t 1 1 203838 622 0.00 2019-12-19 13:59:10 2019-12-19 14:51:19 t 1 1 203840 498 0.00 2019-12-19 14:53:44 2019-12-19 14:53:44 f 1 2 203841 578 0.00 2019-12-19 14:47:36 2019-12-19 14:58:56 t 1 1 203849 562 0.00 2019-12-19 14:34:29 2019-12-19 15:16:11 t 1 1 203854 627 0.00 2019-12-19 15:16:28 2019-12-19 15:24:45 t 1 1 203856 562 0.00 2019-12-19 15:16:11 2019-12-19 15:25:47 t 1 1 203857 627 0.00 2019-12-19 15:26:49 2019-12-19 15:26:58 t 1 1 203858 627 0.00 2019-12-19 15:27:07 2019-12-19 15:27:19 t 1 1 203860 564 0.00 2019-12-19 15:24:19 2019-12-19 15:31:13 t 1 1 203863 673 0.00 2019-12-19 15:28:32 2019-12-19 15:32:38 t 1 1 203868 562 0.00 2019-12-19 15:36:19 2019-12-19 15:36:27 t 1 1 203875 562 0.00 2019-12-19 15:46:49 2019-12-19 15:47:05 t 1 1 203876 627 0.00 2019-12-19 15:47:34 2019-12-19 15:49:15 t 1 1 203880 627 0.00 2019-12-19 15:53:36 2019-12-19 15:54:09 t 1 1 203882 578 0.00 2019-12-19 14:58:56 2019-12-19 15:54:39 t 1 1 203885 748 0.00 2019-12-19 15:54:04 2019-12-19 15:57:21 t 1 1 203888 562 0.00 2019-12-19 16:02:25 2019-12-19 16:03:33 t 1 1 203892 627 0.00 2019-12-19 16:04:25 2019-12-19 16:06:55 t 1 1 203896 564 0.00 2019-12-19 15:54:08 2019-12-19 16:09:14 t 1 1 203897 673 0.00 2019-12-19 16:08:19 2019-12-19 16:11:04 t 1 1 203899 748 0.00 2019-12-19 15:57:21 2019-12-19 16:12:59 t 1 1 203900 516 0.00 2019-12-19 16:08:20 2019-12-19 16:13:50 t 1 1 203902 627 0.00 2019-12-19 16:15:03 2019-12-19 16:15:20 t 1 1 203909 687 0.00 2019-12-19 16:09:24 2019-12-19 16:25:01 t 1 1 203912 627 0.00 2019-12-19 16:28:11 2019-12-19 16:28:17 t 1 1 203913 687 0.00 2019-12-19 16:25:01 2019-12-19 16:29:07 t 1 1 203916 637 0.00 2019-12-19 15:42:02 2019-12-19 16:33:26 t 1 1 203918 627 0.00 2019-12-19 16:33:56 2019-12-19 16:34:09 t 1 1 203922 627 0.00 2019-12-19 16:39:15 2019-12-19 16:39:17 t 1 1 203927 562 0.00 2019-12-19 16:43:14 2019-12-19 16:43:40 t 1 1 203930 622 0.00 2019-12-19 16:42:34 2019-12-19 16:47:38 t 1 1 203933 736 0.00 2019-12-19 16:49:06 2019-12-19 16:49:39 t 1 1 203935 483 0.00 2019-12-19 16:30:23 2019-12-19 16:51:47 t 1 1 203936 562 0.00 2019-12-19 16:52:45 2019-12-19 16:52:58 t 1 1 203937 687 0.00 2019-12-19 16:39:32 2019-12-19 16:53:38 t 1 1 203940 581 0.00 2019-12-19 16:54:20 2019-12-19 16:54:20 f 1 1 203942 675 0.00 2019-12-19 15:08:05 2019-12-19 16:56:31 t 1 1 203943 627 0.00 2019-12-19 16:57:31 2019-12-19 16:58:23 t 1 1 203946 562 0.00 2019-12-19 17:01:28 2019-12-19 17:01:51 t 1 1 203951 724 0.00 2019-12-19 16:44:36 2019-12-19 17:09:28 t 1 1 203952 687 0.00 2019-12-19 16:55:03 2019-12-19 17:12:28 t 1 1 203954 673 0.00 2019-12-19 17:06:34 2019-12-19 17:13:16 t 1 1 203959 483 0.00 2019-12-19 17:12:31 2019-12-19 17:16:50 t 1 1 203969 637 0.00 2019-12-19 17:26:27 2019-12-19 17:32:31 t 1 1 203971 627 0.00 2019-12-19 17:33:14 2019-12-19 17:33:40 t 1 1 203973 748 0.00 2019-12-19 17:39:38 2019-12-19 17:40:28 t 1 1 203974 627 0.00 2019-12-19 17:41:37 2019-12-19 17:41:54 t 1 1 203975 538 0.00 2019-12-19 13:17:22 2019-12-19 17:42:15 t 1 1 203981 748 0.00 2019-12-19 17:47:56 2019-12-19 17:48:06 t 1 1 203982 687 0.00 2019-12-19 17:21:02 2019-12-19 17:48:22 t 1 1 203983 748 0.00 2019-12-19 17:48:28 2019-12-19 17:49:10 t 1 1 203998 627 0.00 2019-12-19 17:55:46 2019-12-19 18:02:13 t 1 1 204000 687 0.00 2019-12-19 18:03:40 2019-12-19 18:03:44 t 1 1 204006 637 0.00 2019-12-19 17:54:28 2019-12-19 18:07:56 t 1 1 204007 627 0.00 2019-12-19 18:07:58 2019-12-19 18:09:36 t 1 1 204016 724 0.00 2019-12-19 18:18:50 2019-12-19 18:19:04 t 1 1 204023 724 0.00 2019-12-19 18:21:16 2019-12-19 18:25:49 t 1 1 204028 392 0.00 2019-12-19 18:20:34 2019-12-19 18:31:23 t 1 2 204032 220 0.00 2019-12-19 18:36:51 2019-12-19 18:39:17 t 1 2 204036 675 0.00 2019-12-19 18:41:45 2019-12-19 18:53:46 t 1 1 204039 611 0.00 2019-12-19 18:41:51 2019-12-19 18:56:06 t 1 1 204041 637 0.00 2019-12-19 18:56:47 2019-12-19 18:58:04 t 1 1 204042 625 0.00 2019-12-19 19:00:35 2019-12-19 19:01:37 t 1 1 204045 748 0.00 2019-12-19 19:04:17 2019-12-19 19:05:25 t 1 1 204047 687 0.00 2019-12-19 18:57:59 2019-12-19 19:06:17 t 1 1 204050 481 0.00 2019-12-19 18:31:53 2019-12-19 19:10:10 t 1 1 204052 748 0.00 2019-12-19 19:12:45 2019-12-19 19:13:06 t 1 1 204054 748 0.00 2019-12-19 19:13:48 2019-12-19 19:13:53 t 1 1 204057 637 0.00 2019-12-19 18:58:51 2019-12-19 19:19:37 t 1 1 204058 408 0.00 2019-12-19 19:20:17 2019-12-19 19:20:17 f 1 1 204065 748 0.00 2019-12-19 19:24:01 2019-12-19 19:24:06 t 1 1 204066 748 0.00 2019-12-19 19:24:27 2019-12-19 19:24:42 t 1 1 204081 748 0.00 2019-12-19 19:39:40 2019-12-19 19:39:50 t 1 1 204082 748 0.00 2019-12-19 19:38:25 2019-12-19 19:40:18 t 1 1 204085 748 0.00 2019-12-19 19:41:02 2019-12-19 19:42:05 t 1 1 204087 637 0.00 2019-12-19 19:35:52 2019-12-19 19:42:12 t 1 1 204093 687 0.00 2019-12-19 19:43:44 2019-12-19 19:47:04 t 1 1 204096 514 0.00 2019-12-19 19:22:07 2019-12-19 19:53:33 t 1 1 204101 724 0.00 2019-12-19 19:59:00 2019-12-19 20:00:19 t 1 1 204103 748 0.00 2019-12-19 20:01:38 2019-12-19 20:04:39 t 1 1 204105 562 0.00 2019-12-19 20:05:25 2019-12-19 20:06:41 t 1 1 204107 611 0.00 2019-12-19 20:04:25 2019-12-19 20:07:48 t 1 1 204108 748 0.00 2019-12-19 20:04:55 2019-12-19 20:08:33 t 1 1 204109 625 0.00 2019-12-19 20:01:20 2019-12-19 20:09:03 t 1 1 204110 748 0.00 2019-12-19 20:08:44 2019-12-19 20:09:39 t 1 1 204112 635 0.00 2019-12-19 20:01:57 2019-12-19 20:11:04 t 1 1 204117 711 0.00 2019-12-19 19:43:50 2019-12-19 20:22:56 t 1 1 204074 748 0.00 2019-12-19 19:32:24 2019-12-19 19:32:29 t 1 1 204075 591 0.00 2019-12-19 19:22:54 2019-12-19 19:33:17 t 1 1 204078 748 0.00 2019-12-19 19:34:55 2019-12-19 19:35:06 t 1 1 204079 748 0.00 2019-12-19 19:35:35 2019-12-19 19:35:45 t 1 1 204080 748 0.00 2019-12-19 19:38:31 2019-12-19 19:39:19 t 1 1 204083 748 0.00 2019-12-19 19:40:03 2019-12-19 19:40:23 t 1 1 204089 724 0.00 2019-12-19 18:51:05 2019-12-19 19:44:09 t 1 1 204092 748 0.00 2019-12-19 19:42:14 2019-12-19 19:46:34 t 1 1 204095 485 0.00 2019-12-19 19:41:12 2019-12-19 19:49:23 t 1 1 204100 748 0.00 2019-12-19 19:46:56 2019-12-19 19:58:18 t 1 1 204102 748 0.00 2019-12-19 19:58:18 2019-12-19 20:01:22 t 1 1 204114 637 0.00 2019-12-19 19:56:15 2019-12-19 20:17:21 t 1 1 204118 625 0.00 2019-12-19 20:11:42 2019-12-19 20:23:10 t 1 1 204119 687 0.00 2019-12-19 19:47:13 2019-12-19 20:25:05 t 1 1 204122 498 0.00 2019-12-19 19:28:20 2019-12-19 20:37:00 t 1 2 204125 748 0.00 2019-12-19 20:39:29 2019-12-19 20:39:30 t 1 1 204134 611 0.00 2019-12-19 20:42:47 2019-12-19 20:44:40 t 1 1 204136 724 0.00 2019-12-19 20:44:10 2019-12-19 20:45:36 t 1 1 204138 538 0.00 2019-12-19 18:46:46 2019-12-19 20:46:08 t 1 1 204146 633 0.00 2019-12-19 20:43:32 2019-12-19 20:56:20 t 1 1 204148 734 0.00 2019-12-19 20:57:53 2019-12-19 20:59:23 t 1 1 204150 392 0.00 2019-12-19 19:47:00 2019-12-19 20:59:59 t 1 2 204155 514 0.00 2019-12-19 20:46:10 2019-12-19 21:05:52 t 1 1 204156 748 0.00 2019-12-19 20:46:32 2019-12-19 21:06:56 t 1 1 204158 481 0.00 2019-12-19 20:57:33 2019-12-19 21:10:08 t 1 1 204161 750 0.00 2019-12-19 20:48:35 2019-12-19 21:14:27 t 1 1 204164 748 0.00 2019-12-19 21:16:17 2019-12-19 21:16:50 t 1 1 204170 736 0.00 2019-12-19 21:22:40 2019-12-19 21:23:05 t 1 1 204172 736 0.00 2019-12-19 21:23:15 2019-12-19 21:23:33 t 1 1 204175 514 0.00 2019-12-19 21:06:16 2019-12-19 21:24:47 t 1 1 204176 736 0.00 2019-12-19 21:25:00 2019-12-19 21:26:22 t 1 1 204177 748 0.00 2019-12-19 21:26:19 2019-12-19 21:28:02 t 1 1 204180 748 0.00 2019-12-19 21:29:28 2019-12-19 21:30:03 t 1 1 204182 578 0.00 2019-12-19 21:24:20 2019-12-19 21:30:22 t 1 1 204188 578 0.00 2019-12-19 21:30:22 2019-12-19 21:38:00 t 1 1 204191 748 0.00 2019-12-19 21:41:24 2019-12-19 21:41:57 t 1 1 204192 748 0.00 2019-12-19 21:42:41 2019-12-19 21:42:58 t 1 1 204193 748 0.00 2019-12-19 21:44:31 2019-12-19 21:45:49 t 1 1 204202 716 0.00 2019-12-19 21:52:54 2019-12-19 21:53:37 t 1 1 204203 591 0.00 2019-12-19 21:02:58 2019-12-19 21:54:46 t 1 1 204207 681 0.00 2019-12-19 20:06:03 2019-12-19 21:58:18 t 1 1 204208 625 0.00 2019-12-19 21:37:31 2019-12-19 21:58:25 t 1 1 204210 722 0.00 2019-12-19 21:56:54 2019-12-19 21:59:56 t 1 1 204214 691 0.00 2019-12-19 22:01:03 2019-12-19 22:02:00 t 1 1 204216 637 0.00 2019-12-19 21:33:20 2019-12-19 22:03:44 t 1 1 204217 694 0.00 2019-12-19 21:57:18 2019-12-19 22:04:31 t 1 1 204219 748 0.00 2019-12-19 22:05:24 2019-12-19 22:06:08 t 1 1 204221 220 0.00 2019-12-19 21:54:27 2019-12-19 22:07:36 t 1 2 204225 748 0.00 2019-12-19 22:10:36 2019-12-19 22:11:09 t 1 1 204227 748 0.00 2019-12-19 22:14:03 2019-12-19 22:14:46 t 1 1 204231 675 0.00 2019-12-19 22:03:25 2019-12-19 22:18:20 t 1 1 204233 635 0.00 2019-12-19 20:57:48 2019-12-19 22:20:35 t 1 1 204242 748 0.00 2019-12-19 22:28:51 2019-12-19 22:29:08 t 1 1 204248 748 0.00 2019-12-19 22:30:59 2019-12-19 22:32:46 t 1 1 204252 564 0.00 2019-12-19 21:02:23 2019-12-19 22:34:55 t 1 1 204255 722 0.00 2019-12-19 22:35:24 2019-12-19 22:35:55 t 1 1 204258 750 0.00 2019-12-19 22:32:27 2019-12-19 22:37:02 t 1 1 204259 722 0.00 2019-12-19 22:37:08 2019-12-19 22:37:47 t 1 1 204263 631 0.00 2019-12-19 22:40:06 2019-12-19 22:40:56 t 1 1 204267 711 0.00 2019-12-19 21:18:03 2019-12-19 22:43:04 t 1 1 204269 748 0.00 2019-12-19 22:45:07 2019-12-19 22:45:52 t 1 1 204270 485 0.00 2019-12-19 22:43:54 2019-12-19 22:46:19 t 1 1 204273 748 0.00 2019-12-19 22:47:45 2019-12-19 22:48:45 t 1 1 204274 748 0.00 2019-12-19 22:48:47 2019-12-19 22:49:08 t 1 1 204276 566 0.00 2019-12-19 22:36:12 2019-12-19 22:49:33 t 1 1 204285 687 0.00 2019-12-19 22:26:10 2019-12-19 22:55:35 t 1 1 204289 566 0.00 2019-12-19 22:49:33 2019-12-19 23:02:33 t 1 1 204291 691 0.00 2019-12-19 23:02:18 2019-12-19 23:03:27 t 1 1 204294 692 0.00 2019-12-19 23:04:10 2019-12-19 23:05:11 t 1 1 204295 689 0.00 2019-12-19 23:04:13 2019-12-19 23:05:56 t 1 1 204298 687 0.00 2019-12-19 22:55:35 2019-12-19 23:09:24 t 1 1 204304 692 0.00 2019-12-19 23:05:28 2019-12-19 23:14:52 t 1 1 204306 566 0.00 2019-12-19 23:02:33 2019-12-19 23:18:25 t 1 1 204309 692 0.00 2019-12-19 23:21:39 2019-12-19 23:22:14 t 1 1 204311 566 0.00 2019-12-19 23:18:25 2019-12-19 23:26:09 t 1 1 204313 716 0.00 2019-12-19 23:25:58 2019-12-19 23:27:02 t 1 1 204315 748 0.00 2019-12-19 23:29:28 2019-12-19 23:29:38 t 1 1 204319 679 0.00 2019-12-19 23:13:49 2019-12-19 23:31:06 t 1 1 204320 748 0.00 2019-12-19 23:30:47 2019-12-19 23:31:10 t 1 1 204323 748 0.00 2019-12-19 23:32:45 2019-12-19 23:32:50 t 1 1 204325 748 0.00 2019-12-19 23:33:24 2019-12-19 23:33:33 t 1 1 204327 625 0.00 2019-12-19 23:10:48 2019-12-19 23:35:49 t 1 1 204329 722 0.00 2019-12-19 23:18:36 2019-12-19 23:38:28 t 1 1 204333 687 0.00 2019-12-19 23:35:37 2019-12-19 23:42:03 t 1 1 204339 687 0.00 2019-12-19 23:47:53 2019-12-19 23:53:28 t 1 1 204345 679 0.00 2019-12-19 23:31:06 2019-12-20 00:02:44 t 1 1 204349 679 0.00 2019-12-20 00:05:14 2019-12-20 00:05:26 t 1 1 204357 679 0.00 2019-12-20 00:07:34 2019-12-20 00:07:46 t 1 1 204365 679 0.00 2019-12-20 00:10:48 2019-12-20 00:10:54 t 1 1 204366 748 0.00 2019-12-20 00:10:58 2019-12-20 00:11:09 t 1 1 204369 627 0.00 2019-12-20 00:13:26 2019-12-20 00:13:38 t 1 1 204371 627 0.00 2019-12-20 00:14:07 2019-12-20 00:14:25 t 1 1 204373 692 0.00 2019-12-20 00:16:46 2019-12-20 00:17:06 t 1 1 204374 627 0.00 2019-12-20 00:17:10 2019-12-20 00:17:28 t 1 1 204389 748 0.00 2019-12-20 00:32:50 2019-12-20 00:33:03 t 1 1 204390 220 0.00 2019-12-19 23:13:51 2019-12-20 00:39:05 t 1 1 204393 692 0.00 2019-12-20 00:43:44 2019-12-20 00:44:00 t 1 1 204395 514 0.00 2019-12-20 00:29:32 2019-12-20 00:46:30 t 1 1 204396 660 0.00 2019-12-20 00:40:17 2019-12-20 00:47:51 t 1 1 204400 748 0.00 2019-12-20 00:53:06 2019-12-20 00:53:10 t 1 1 204405 692 0.00 2019-12-20 00:55:40 2019-12-20 00:55:42 t 1 1 204413 694 0.00 2019-12-19 22:04:31 2019-12-20 01:06:55 t 1 1 204418 748 0.00 2019-12-20 01:09:42 2019-12-20 01:09:46 t 1 1 204427 625 0.00 2019-12-20 00:53:47 2019-12-20 01:20:10 t 1 1 204431 716 0.00 2019-12-20 01:15:17 2019-12-20 01:23:02 t 1 1 204432 692 0.00 2019-12-20 01:23:55 2019-12-20 01:24:15 t 1 1 204434 692 0.00 2019-12-20 01:26:53 2019-12-20 01:27:15 t 1 1 204091 625 0.00 2019-12-19 19:44:01 2019-12-19 19:46:10 t 1 1 204094 724 0.00 2019-12-19 19:46:24 2019-12-19 19:48:14 t 1 1 204097 611 0.00 2019-12-19 19:50:57 2019-12-19 19:54:02 t 1 1 204098 637 0.00 2019-12-19 19:46:44 2019-12-19 19:55:30 t 1 1 204099 625 0.00 2019-12-19 19:46:44 2019-12-19 19:56:54 t 1 1 204104 691 0.00 2019-12-19 20:05:27 2019-12-19 20:06:21 t 1 1 204106 691 0.00 2019-12-19 20:06:21 2019-12-19 20:07:27 t 1 1 204111 611 0.00 2019-12-19 20:08:56 2019-12-19 20:10:50 t 1 1 204113 709 0.00 2019-12-19 19:52:53 2019-12-19 20:12:29 t 1 1 204115 633 0.00 2019-12-19 20:11:58 2019-12-19 20:18:30 t 1 1 204116 578 0.00 2019-12-19 18:05:03 2019-12-19 20:20:45 t 1 1 204120 220 0.00 2019-12-19 20:15:33 2019-12-19 20:29:44 t 1 2 204121 711 0.00 2019-12-19 20:22:56 2019-12-19 20:31:55 t 1 1 204124 748 0.00 2019-12-19 20:39:18 2019-12-19 20:39:24 t 1 1 204126 625 0.00 2019-12-19 20:33:41 2019-12-19 20:39:43 t 1 1 204129 748 0.00 2019-12-19 20:41:19 2019-12-19 20:42:21 t 1 1 204130 748 0.00 2019-12-19 20:42:38 2019-12-19 20:42:46 t 1 1 204132 633 0.00 2019-12-19 20:23:42 2019-12-19 20:43:32 t 1 1 204133 748 0.00 2019-12-19 20:43:18 2019-12-19 20:43:44 t 1 1 204137 748 0.00 2019-12-19 20:44:08 2019-12-19 20:45:39 t 1 1 204139 481 0.00 2019-12-19 19:57:10 2019-12-19 20:46:10 t 1 1 204143 687 0.00 2019-12-19 20:53:04 2019-12-19 20:55:52 t 1 1 204144 754 0.00 2019-12-19 19:29:33 2019-12-19 20:56:08 t 1 2 204147 734 0.00 2019-12-19 20:47:05 2019-12-19 20:57:53 t 1 1 204149 516 0.00 2019-12-19 20:57:55 2019-12-19 20:59:31 t 1 1 204154 633 0.00 2019-12-19 20:57:11 2019-12-19 21:04:22 t 1 1 204160 748 0.00 2019-12-19 21:07:15 2019-12-19 21:13:51 t 1 1 204165 722 0.00 2019-12-19 21:00:52 2019-12-19 21:16:56 t 1 1 204166 711 0.00 2019-12-19 20:31:55 2019-12-19 21:18:03 t 1 1 204167 675 0.00 2019-12-19 21:17:41 2019-12-19 21:19:29 t 1 1 204169 736 0.00 2019-12-19 20:59:37 2019-12-19 21:22:40 t 1 1 204171 637 0.00 2019-12-19 20:18:27 2019-12-19 21:23:06 t 1 1 204173 722 0.00 2019-12-19 21:20:02 2019-12-19 21:23:53 t 1 1 204174 578 0.00 2019-12-19 21:15:32 2019-12-19 21:24:20 t 1 1 204179 722 0.00 2019-12-19 21:23:53 2019-12-19 21:30:00 t 1 1 204183 748 0.00 2019-12-19 21:30:56 2019-12-19 21:31:21 t 1 1 204187 625 0.00 2019-12-19 21:08:13 2019-12-19 21:37:31 t 1 1 204189 722 0.00 2019-12-19 21:30:00 2019-12-19 21:38:43 t 1 1 204196 752 0.00 2019-12-19 21:35:36 2019-12-19 21:49:53 t 1 1 204197 691 0.00 2019-12-19 21:49:19 2019-12-19 21:50:27 t 1 1 204201 748 0.00 2019-12-19 21:52:43 2019-12-19 21:53:30 t 1 1 204205 722 0.00 2019-12-19 21:40:32 2019-12-19 21:56:54 t 1 1 204211 748 0.00 2019-12-19 21:59:18 2019-12-19 22:00:01 t 1 1 204212 748 0.00 2019-12-19 22:00:08 2019-12-19 22:00:52 t 1 1 204218 673 0.00 2019-12-19 20:35:52 2019-12-19 22:05:28 t 1 1 204220 696 0.00 2019-12-19 21:57:02 2019-12-19 22:07:01 t 1 1 204223 748 0.00 2019-12-19 22:08:23 2019-12-19 22:09:07 t 1 1 204229 750 0.00 2019-12-19 21:48:53 2019-12-19 22:15:36 t 1 1 204232 637 0.00 2019-12-19 22:03:44 2019-12-19 22:19:44 t 1 1 204234 722 0.00 2019-12-19 22:14:14 2019-12-19 22:20:38 t 1 1 204236 748 0.00 2019-12-19 22:21:15 2019-12-19 22:21:41 t 1 1 204237 748 0.00 2019-12-19 22:21:48 2019-12-19 22:22:31 t 1 1 204239 649 0.00 2019-12-19 22:21:01 2019-12-19 22:27:27 t 1 1 204241 481 0.00 2019-12-19 21:10:30 2019-12-19 22:29:03 t 1 1 204244 752 0.00 2019-12-19 21:49:53 2019-12-19 22:31:10 t 1 1 204246 722 0.00 2019-12-19 22:31:37 2019-12-19 22:32:07 t 1 1 204247 722 0.00 2019-12-19 22:32:16 2019-12-19 22:32:23 t 1 1 204249 748 0.00 2019-12-19 22:32:53 2019-12-19 22:33:26 t 1 1 204250 748 0.00 2019-12-19 22:33:33 2019-12-19 22:34:06 t 1 1 204253 691 0.00 2019-12-19 22:34:34 2019-12-19 22:35:13 t 1 1 204256 748 0.00 2019-12-19 22:35:24 2019-12-19 22:35:59 t 1 1 204264 722 0.00 2019-12-19 22:39:50 2019-12-19 22:40:58 t 1 1 204268 736 0.00 2019-12-19 22:42:08 2019-12-19 22:43:17 t 1 1 204271 748 0.00 2019-12-19 22:45:58 2019-12-19 22:46:56 t 1 1 204272 748 0.00 2019-12-19 22:47:02 2019-12-19 22:47:38 t 1 1 204279 748 0.00 2019-12-19 22:50:20 2019-12-19 22:50:29 t 1 1 204281 591 0.00 2019-12-19 22:18:27 2019-12-19 22:53:43 t 1 1 204282 625 0.00 2019-12-19 21:58:25 2019-12-19 22:54:25 t 1 1 204283 748 0.00 2019-12-19 22:53:22 2019-12-19 22:55:21 t 1 1 204287 689 0.00 2019-12-19 22:51:28 2019-12-19 23:01:44 t 1 1 204288 691 0.00 2019-12-19 23:01:36 2019-12-19 23:02:18 t 1 1 204293 691 0.00 2019-12-19 23:03:40 2019-12-19 23:04:58 t 1 1 204297 748 0.00 2019-12-19 23:08:10 2019-12-19 23:08:55 t 1 1 204299 220 0.00 2019-12-19 22:35:48 2019-12-19 23:09:46 t 1 1 204300 625 0.00 2019-12-19 22:54:25 2019-12-19 23:10:48 t 1 1 204302 679 0.00 2019-12-19 22:48:42 2019-12-19 23:13:49 t 1 1 204307 692 0.00 2019-12-19 23:20:13 2019-12-19 23:20:27 t 1 1 204308 220 0.00 2019-12-19 23:18:44 2019-12-19 23:22:02 t 1 2 204310 692 0.00 2019-12-19 23:22:53 2019-12-19 23:23:07 t 1 1 204317 692 0.00 2019-12-19 23:27:36 2019-12-19 23:30:14 t 1 1 204321 692 0.00 2019-12-19 23:30:49 2019-12-19 23:31:11 t 1 1 204322 748 0.00 2019-12-19 23:31:18 2019-12-19 23:32:20 t 1 1 204324 748 0.00 2019-12-19 23:33:06 2019-12-19 23:33:15 t 1 1 204330 722 0.00 2019-12-19 23:38:32 2019-12-19 23:40:04 t 1 1 204332 692 0.00 2019-12-19 23:38:54 2019-12-19 23:40:21 t 1 1 204334 692 0.00 2019-12-19 23:42:32 2019-12-19 23:42:42 t 1 1 204336 687 0.00 2019-12-19 23:42:13 2019-12-19 23:47:53 t 1 1 204340 748 0.00 2019-12-19 23:57:14 2019-12-19 23:57:41 t 1 1 204344 514 0.00 2019-12-19 23:30:38 2019-12-20 00:02:32 t 1 1 204347 679 0.00 2019-12-20 00:03:48 2019-12-20 00:04:21 t 1 1 204351 679 0.00 2019-12-20 00:05:41 2019-12-20 00:06:11 t 1 1 204353 679 0.00 2019-12-20 00:06:36 2019-12-20 00:06:39 t 1 1 204355 748 0.00 2019-12-20 00:07:00 2019-12-20 00:07:04 t 1 1 204358 748 0.00 2019-12-20 00:07:38 2019-12-20 00:07:49 t 1 1 204359 692 0.00 2019-12-20 00:05:48 2019-12-20 00:08:34 t 1 1 204361 627 0.00 2019-12-20 00:09:08 2019-12-20 00:09:29 t 1 1 204363 692 0.00 2019-12-20 00:09:53 2019-12-20 00:09:55 t 1 1 204375 627 0.00 2019-12-20 00:18:16 2019-12-20 00:18:24 t 1 1 204377 748 0.00 2019-12-20 00:20:48 2019-12-20 00:21:05 t 1 1 204378 692 0.00 2019-12-20 00:22:01 2019-12-20 00:22:03 t 1 1 204379 681 0.00 2019-12-20 00:09:23 2019-12-20 00:24:49 t 1 1 204382 514 0.00 2019-12-20 00:02:32 2019-12-20 00:29:32 t 1 1 204383 679 0.00 2019-12-20 00:13:51 2019-12-20 00:30:15 t 1 1 204384 748 0.00 2019-12-20 00:30:23 2019-12-20 00:30:37 t 1 1 204385 687 0.00 2019-12-20 00:22:13 2019-12-20 00:31:47 t 1 1 204386 562 0.00 2019-12-20 00:31:23 2019-12-20 00:32:26 t 1 1 204392 748 0.00 2019-12-20 00:40:14 2019-12-20 00:40:42 t 1 1 204123 748 0.00 2019-12-19 20:09:34 2019-12-19 20:39:13 t 1 1 204127 748 0.00 2019-12-19 20:40:37 2019-12-19 20:40:41 t 1 1 204128 625 0.00 2019-12-19 20:40:35 2019-12-19 20:41:51 t 1 1 204131 724 0.00 2019-12-19 20:00:59 2019-12-19 20:43:15 t 1 1 204135 724 0.00 2019-12-19 20:43:36 2019-12-19 20:45:20 t 1 1 204140 514 0.00 2019-12-19 19:53:33 2019-12-19 20:46:10 t 1 1 204141 611 0.00 2019-12-19 20:44:40 2019-12-19 20:47:35 t 1 1 204142 694 0.00 2019-12-19 14:06:39 2019-12-19 20:50:36 t 1 1 204145 687 0.00 2019-12-19 20:55:58 2019-12-19 20:56:10 t 1 1 204151 722 0.00 2019-12-19 20:55:45 2019-12-19 21:00:52 t 1 1 204152 687 0.00 2019-12-19 20:57:36 2019-12-19 21:01:30 t 1 1 204153 591 0.00 2019-12-19 20:32:13 2019-12-19 21:02:58 t 1 1 204157 625 0.00 2019-12-19 20:42:31 2019-12-19 21:08:13 t 1 1 204159 724 0.00 2019-12-19 20:47:12 2019-12-19 21:10:52 t 1 1 204162 748 0.00 2019-12-19 21:14:48 2019-12-19 21:14:58 t 1 1 204163 578 0.00 2019-12-19 20:20:45 2019-12-19 21:15:32 t 1 1 204168 722 0.00 2019-12-19 21:18:07 2019-12-19 21:19:59 t 1 1 204178 748 0.00 2019-12-19 21:28:33 2019-12-19 21:29:21 t 1 1 204181 736 0.00 2019-12-19 21:27:10 2019-12-19 21:30:08 t 1 1 204184 637 0.00 2019-12-19 21:23:06 2019-12-19 21:33:20 t 1 1 204185 748 0.00 2019-12-19 21:33:27 2019-12-19 21:35:47 t 1 1 204186 748 0.00 2019-12-19 21:36:10 2019-12-19 21:36:30 t 1 1 204190 722 0.00 2019-12-19 21:39:01 2019-12-19 21:40:29 t 1 1 204194 562 0.00 2019-12-19 21:45:59 2019-12-19 21:47:13 t 1 1 204195 748 0.00 2019-12-19 21:46:34 2019-12-19 21:48:26 t 1 1 204198 748 0.00 2019-12-19 21:49:33 2019-12-19 21:50:54 t 1 1 204199 748 0.00 2019-12-19 21:51:08 2019-12-19 21:51:45 t 1 1 204200 748 0.00 2019-12-19 21:51:52 2019-12-19 21:52:36 t 1 1 204204 748 0.00 2019-12-19 21:53:37 2019-12-19 21:55:58 t 1 1 204206 694 0.00 2019-12-19 20:50:36 2019-12-19 21:57:18 t 1 1 204209 691 0.00 2019-12-19 21:58:47 2019-12-19 21:59:43 t 1 1 204213 691 0.00 2019-12-19 21:59:43 2019-12-19 22:00:56 t 1 1 204215 691 0.00 2019-12-19 22:02:00 2019-12-19 22:03:03 t 1 1 204222 538 0.00 2019-12-19 20:51:40 2019-12-19 22:08:44 t 1 1 204224 691 0.00 2019-12-19 22:08:28 2019-12-19 22:09:40 t 1 1 204226 691 0.00 2019-12-19 22:12:31 2019-12-19 22:13:46 t 1 1 204228 514 0.00 2019-12-19 21:24:47 2019-12-19 22:15:15 t 1 1 204230 748 0.00 2019-12-19 22:15:46 2019-12-19 22:16:30 t 1 1 204235 649 0.00 2019-12-19 22:18:50 2019-12-19 22:21:15 t 1 1 204238 722 0.00 2019-12-19 22:20:38 2019-12-19 22:26:36 t 1 1 204240 722 0.00 2019-12-19 22:28:24 2019-12-19 22:28:48 t 1 1 204243 748 0.00 2019-12-19 22:29:22 2019-12-19 22:29:58 t 1 1 204245 750 0.00 2019-12-19 22:15:45 2019-12-19 22:31:27 t 1 1 204251 691 0.00 2019-12-19 22:34:09 2019-12-19 22:34:34 t 1 1 204254 722 0.00 2019-12-19 22:34:02 2019-12-19 22:35:14 t 1 1 204257 691 0.00 2019-12-19 22:35:13 2019-12-19 22:36:23 t 1 1 204260 722 0.00 2019-12-19 22:37:55 2019-12-19 22:37:57 t 1 1 204261 748 0.00 2019-12-19 22:36:08 2019-12-19 22:38:29 t 1 1 204262 611 0.00 2019-12-19 22:30:51 2019-12-19 22:40:37 t 1 1 204265 748 0.00 2019-12-19 22:41:10 2019-12-19 22:41:49 t 1 1 204266 689 0.00 2019-12-19 22:40:14 2019-12-19 22:42:28 t 1 1 204275 748 0.00 2019-12-19 22:49:20 2019-12-19 22:49:25 t 1 1 204277 750 0.00 2019-12-19 22:41:32 2019-12-19 22:49:48 t 1 1 204278 514 0.00 2019-12-19 22:15:15 2019-12-19 22:50:23 t 1 1 204280 748 0.00 2019-12-19 22:51:52 2019-12-19 22:53:21 t 1 1 204284 711 0.00 2019-12-19 22:43:05 2019-12-19 22:55:28 t 1 1 204286 691 0.00 2019-12-19 23:01:36 2019-12-19 23:01:36 t 1 1 204290 689 0.00 2019-12-19 23:01:52 2019-12-19 23:02:58 t 1 1 204292 689 0.00 2019-12-19 23:03:09 2019-12-19 23:04:01 t 1 1 204296 691 0.00 2019-12-19 23:04:58 2019-12-19 23:06:07 t 1 1 204301 689 0.00 2019-12-19 23:10:52 2019-12-19 23:11:55 t 1 1 204303 687 0.00 2019-12-19 23:10:11 2019-12-19 23:14:35 t 1 1 204305 692 0.00 2019-12-19 23:17:03 2019-12-19 23:17:24 t 1 1 204312 748 0.00 2019-12-19 23:26:43 2019-12-19 23:27:02 t 1 1 204314 538 0.00 2019-12-19 22:54:30 2019-12-19 23:27:33 t 1 1 204316 748 0.00 2019-12-19 23:29:51 2019-12-19 23:29:55 t 1 1 204318 514 0.00 2019-12-19 22:50:23 2019-12-19 23:30:38 t 1 1 204326 689 0.00 2019-12-19 23:13:39 2019-12-19 23:34:39 t 1 1 204328 611 0.00 2019-12-19 23:17:51 2019-12-19 23:36:11 t 1 1 204331 734 0.00 2019-12-19 23:05:43 2019-12-19 23:40:04 t 1 1 204335 562 0.00 2019-12-19 23:43:09 2019-12-19 23:43:43 t 1 1 204337 538 0.00 2019-12-19 23:27:58 2019-12-19 23:48:53 t 1 1 204338 748 0.00 2019-12-19 23:51:53 2019-12-19 23:52:06 t 1 1 204341 748 0.00 2019-12-19 23:58:25 2019-12-19 23:58:36 t 1 1 204342 681 0.00 2019-12-19 21:58:18 2019-12-20 00:00:40 t 1 1 204343 687 0.00 2019-12-19 23:53:28 2019-12-20 00:02:21 t 1 1 204346 679 0.00 2019-12-20 00:02:50 2019-12-20 00:02:56 t 1 1 204348 564 0.00 2019-12-19 22:34:55 2019-12-20 00:04:42 t 1 1 204350 692 0.00 2019-12-20 00:05:23 2019-12-20 00:05:33 t 1 1 204352 687 0.00 2019-12-20 00:02:21 2019-12-20 00:06:21 t 1 1 204354 748 0.00 2019-12-20 00:05:58 2019-12-20 00:06:47 t 1 1 204356 627 0.00 2019-12-20 00:05:26 2019-12-20 00:07:07 t 1 1 204360 681 0.00 2019-12-20 00:00:40 2019-12-20 00:09:23 t 1 1 204362 748 0.00 2019-12-20 00:09:18 2019-12-20 00:09:29 t 1 1 204364 660 0.00 2019-12-19 21:15:25 2019-12-20 00:10:03 t 1 1 204367 627 0.00 2019-12-20 00:11:38 2019-12-20 00:11:46 t 1 1 204368 627 0.00 2019-12-20 00:11:54 2019-12-20 00:12:13 t 1 1 204370 748 0.00 2019-12-20 00:13:46 2019-12-20 00:13:47 t 1 1 204372 627 0.00 2019-12-20 00:15:36 2019-12-20 00:17:02 t 1 1 204376 627 0.00 2019-12-20 00:20:12 2019-12-20 00:20:14 t 1 1 204380 748 0.00 2019-12-20 00:25:08 2019-12-20 00:25:22 t 1 1 204381 660 0.00 2019-12-20 00:10:03 2019-12-20 00:27:49 t 1 1 204387 692 0.00 2019-12-20 00:32:23 2019-12-20 00:32:34 t 1 1 204388 692 0.00 2019-12-20 00:32:50 2019-12-20 00:32:51 t 1 1 204391 660 0.00 2019-12-20 00:27:49 2019-12-20 00:40:17 t 1 1 204394 679 0.00 2019-12-20 00:30:15 2019-12-20 00:45:01 t 1 1 204397 748 0.00 2019-12-20 00:52:22 2019-12-20 00:52:34 t 1 1 204399 748 0.00 2019-12-20 00:52:42 2019-12-20 00:52:54 t 1 1 204402 625 0.00 2019-12-19 23:34:55 2019-12-20 00:53:42 t 1 1 204403 748 0.00 2019-12-20 00:53:49 2019-12-20 00:54:00 t 1 1 204407 748 0.00 2019-12-20 00:58:55 2019-12-20 00:59:25 t 1 1 204409 748 0.00 2019-12-20 01:04:08 2019-12-20 01:04:30 t 1 1 204410 679 0.00 2019-12-20 01:04:43 2019-12-20 01:05:12 t 1 1 204411 679 0.00 2019-12-20 01:06:09 2019-12-20 01:06:15 t 1 1 204412 679 0.00 2019-12-20 01:06:42 2019-12-20 01:06:53 t 1 1 204414 562 0.00 2019-12-20 01:06:36 2019-12-20 01:07:04 t 1 1 204415 679 0.00 2019-12-20 01:07:19 2019-12-20 01:07:23 t 1 1 204398 514 0.00 2019-12-20 00:46:30 2019-12-20 00:52:52 t 1 1 204401 713 0.00 2019-12-20 00:39:08 2019-12-20 00:53:15 t 1 1 204404 681 0.00 2019-12-20 00:24:49 2019-12-20 00:54:24 t 1 1 204406 748 0.00 2019-12-20 00:55:20 2019-12-20 00:55:49 t 1 1 204408 679 0.00 2019-12-20 00:45:01 2019-12-20 01:04:21 t 1 1 204416 562 0.00 2019-12-20 01:08:01 2019-12-20 01:08:37 t 1 1 204417 748 0.00 2019-12-20 01:09:18 2019-12-20 01:09:30 t 1 1 204422 562 0.00 2019-12-20 01:15:10 2019-12-20 01:16:11 t 1 1 204423 692 0.00 2019-12-20 01:16:34 2019-12-20 01:16:43 t 1 1 204426 748 0.00 2019-12-20 01:19:45 2019-12-20 01:19:57 t 1 1 204428 220 0.00 2019-12-20 00:42:19 2019-12-20 01:20:15 t 1 1 204429 692 0.00 2019-12-20 01:21:41 2019-12-20 01:21:50 t 1 1 204430 692 0.00 2019-12-20 01:22:08 2019-12-20 01:22:15 t 1 1 204437 734 0.00 2019-12-20 01:16:24 2019-12-20 01:29:57 t 1 1 204440 692 0.00 2019-12-20 01:32:24 2019-12-20 01:32:46 t 1 1 204442 748 0.00 2019-12-20 01:38:39 2019-12-20 01:38:49 t 1 1 204444 748 0.00 2019-12-20 01:39:10 2019-12-20 01:40:11 t 1 1 204447 748 0.00 2019-12-20 01:42:06 2019-12-20 01:42:06 f 1 1 204449 748 0.00 2019-12-20 01:41:40 2019-12-20 01:42:40 t 1 1 204452 696 0.00 2019-12-20 01:44:57 2019-12-20 01:47:12 t 1 1 204454 687 0.00 2019-12-20 01:43:02 2019-12-20 01:50:01 t 1 1 204455 538 0.00 2019-12-19 23:51:51 2019-12-20 01:51:31 t 1 1 204456 692 0.00 2019-12-20 01:54:29 2019-12-20 01:55:12 t 1 1 204459 679 0.00 2019-12-20 01:48:03 2019-12-20 01:56:58 t 1 1 204460 679 0.00 2019-12-20 01:57:00 2019-12-20 01:59:34 t 1 1 204464 692 0.00 2019-12-20 02:10:05 2019-12-20 02:11:00 t 1 1 204468 692 0.00 2019-12-20 02:11:51 2019-12-20 02:12:52 t 1 1 204471 692 0.00 2019-12-20 02:30:59 2019-12-20 02:31:10 t 1 1 204477 687 0.00 2019-12-20 02:28:38 2019-12-20 02:37:13 t 1 1 204480 687 0.00 2019-12-20 02:43:18 2019-12-20 02:49:17 t 1 1 204482 692 0.00 2019-12-20 02:55:40 2019-12-20 02:56:07 t 1 1 204483 692 0.00 2019-12-20 02:56:18 2019-12-20 02:56:44 t 1 1 204490 718 0.00 2019-12-20 03:08:50 2019-12-20 03:12:55 t 1 1 204493 692 0.00 2019-12-20 03:22:51 2019-12-20 03:23:00 t 1 1 204496 687 0.00 2019-12-20 03:11:23 2019-12-20 03:29:05 t 1 1 204497 692 0.00 2019-12-20 03:31:27 2019-12-20 03:31:29 t 1 1 204498 692 0.00 2019-12-20 03:31:55 2019-12-20 03:32:24 t 1 1 204506 692 0.00 2019-12-20 04:12:16 2019-12-20 04:12:26 t 1 1 204508 538 0.00 2019-12-20 01:51:36 2019-12-20 04:40:01 t 1 1 204512 692 0.00 2019-12-20 05:15:03 2019-12-20 05:15:13 t 1 1 204515 711 0.00 2019-12-20 05:03:45 2019-12-20 05:46:24 t 1 1 204517 711 0.00 2019-12-20 05:46:24 2019-12-20 05:58:00 t 1 1 204518 692 0.00 2019-12-20 05:59:09 2019-12-20 05:59:19 t 1 1 204519 692 0.00 2019-12-20 06:10:02 2019-12-20 06:10:12 t 1 1 204520 220 0.00 2019-12-20 05:56:21 2019-12-20 06:12:44 t 1 2 204524 692 0.00 2019-12-20 06:22:24 2019-12-20 06:22:48 t 1 1 204530 692 0.00 2019-12-20 06:24:41 2019-12-20 06:25:04 t 1 1 204533 692 0.00 2019-12-20 06:26:23 2019-12-20 06:26:47 t 1 1 204534 692 0.00 2019-12-20 06:27:01 2019-12-20 06:27:21 t 1 1 204536 692 0.00 2019-12-20 06:28:06 2019-12-20 06:28:30 t 1 1 204540 516 0.00 2019-12-20 06:28:31 2019-12-20 06:39:29 t 1 1 204543 459 0.00 2019-12-20 06:25:25 2019-12-20 06:45:30 t 1 2 204545 692 0.00 2019-12-20 06:53:25 2019-12-20 06:53:36 t 1 1 204546 516 0.00 2019-12-20 06:48:54 2019-12-20 06:55:12 t 1 1 204547 578 0.00 2019-12-19 21:38:00 2019-12-20 06:59:52 t 1 1 204550 692 0.00 2019-12-20 07:04:19 2019-12-20 07:04:29 t 1 1 204564 689 0.00 2019-12-20 07:38:14 2019-12-20 07:38:16 t 1 1 204567 637 0.00 2019-12-20 03:39:56 2019-12-20 07:42:36 t 1 1 204574 692 0.00 2019-12-20 07:52:03 2019-12-20 07:52:21 t 1 1 204575 692 0.00 2019-12-20 07:57:16 2019-12-20 07:57:25 t 1 1 204578 692 0.00 2019-12-20 08:08:26 2019-12-20 08:08:51 t 1 1 204579 692 0.00 2019-12-20 08:12:50 2019-12-20 08:12:57 t 1 1 204581 485 0.00 2019-12-20 08:04:21 2019-12-20 08:17:33 t 1 1 204589 692 0.00 2019-12-20 08:28:03 2019-12-20 08:28:27 t 1 1 204593 692 0.00 2019-12-20 08:29:45 2019-12-20 08:30:09 t 1 1 204594 692 0.00 2019-12-20 08:30:20 2019-12-20 08:30:44 t 1 1 204595 692 0.00 2019-12-20 08:30:55 2019-12-20 08:31:19 t 1 1 204604 591 0.00 2019-12-20 08:37:15 2019-12-20 08:45:13 t 1 1 204608 748 0.00 2019-12-20 08:48:21 2019-12-20 08:48:22 t 1 1 204610 516 0.00 2019-12-20 08:28:16 2019-12-20 08:50:19 t 1 1 204616 516 0.00 2019-12-20 08:53:52 2019-12-20 08:58:15 t 1 1 204618 625 0.00 2019-12-20 08:35:47 2019-12-20 09:00:42 t 1 1 204623 748 0.00 2019-12-20 09:02:09 2019-12-20 09:08:15 t 1 1 204624 711 0.00 2019-12-20 08:59:59 2019-12-20 09:09:22 t 1 1 204625 722 0.00 2019-12-20 09:09:23 2019-12-20 09:09:35 t 1 1 204630 748 0.00 2019-12-20 09:13:37 2019-12-20 09:13:42 t 1 1 204631 692 0.00 2019-12-20 09:14:49 2019-12-20 09:15:00 t 1 1 204633 748 0.00 2019-12-20 09:18:49 2019-12-20 09:19:01 t 1 1 204635 748 0.00 2019-12-20 09:21:53 2019-12-20 09:22:28 t 1 1 204638 709 0.00 2019-12-20 09:21:50 2019-12-20 09:28:07 t 1 1 204646 625 0.00 2019-12-20 09:15:49 2019-12-20 09:33:42 t 1 1 204648 625 0.00 2019-12-20 09:33:44 2019-12-20 09:34:53 t 1 1 204653 459 0.00 2019-12-20 09:34:23 2019-12-20 09:40:58 t 1 2 204655 748 0.00 2019-12-20 09:44:04 2019-12-20 09:44:11 t 1 1 204656 748 0.00 2019-12-20 09:44:26 2019-12-20 09:45:26 t 1 1 204662 748 0.00 2019-12-20 09:55:37 2019-12-20 09:55:42 t 1 1 204664 748 0.00 2019-12-20 09:54:19 2019-12-20 09:56:25 t 1 1 204665 692 0.00 2019-12-20 09:57:15 2019-12-20 09:57:25 t 1 1 204666 748 0.00 2019-12-20 09:58:21 2019-12-20 09:59:43 t 1 1 204669 625 0.00 2019-12-20 09:38:59 2019-12-20 10:03:51 t 1 1 204674 748 0.00 2019-12-20 10:06:39 2019-12-20 10:11:03 t 1 1 204676 748 0.00 2019-12-20 10:12:00 2019-12-20 10:12:05 t 1 1 204677 748 0.00 2019-12-20 10:12:47 2019-12-20 10:12:58 t 1 1 204682 748 0.00 2019-12-20 10:15:59 2019-12-20 10:21:00 t 1 1 204683 591 0.00 2019-12-20 10:19:34 2019-12-20 10:21:34 t 1 1 204684 748 0.00 2019-12-20 10:21:00 2019-12-20 10:24:36 t 1 1 204691 756 0.00 2019-12-20 10:26:43 2019-12-20 10:32:35 t 1 1 204693 692 0.00 2019-12-20 10:32:35 2019-12-20 10:32:51 t 1 1 204695 615 0.00 2019-12-20 10:28:55 2019-12-20 10:36:18 t 1 1 204698 748 0.00 2019-12-20 10:41:01 2019-12-20 10:41:06 t 1 1 204701 692 0.00 2019-12-20 10:45:55 2019-12-20 10:46:05 t 1 1 204702 752 0.00 2019-12-20 10:44:12 2019-12-20 10:46:08 t 1 1 204704 692 0.00 2019-12-20 10:46:33 2019-12-20 10:46:47 t 1 1 204707 562 0.00 2019-12-20 10:45:29 2019-12-20 10:47:26 t 1 1 204711 481 0.00 2019-12-20 10:45:39 2019-12-20 10:50:08 t 1 1 204714 752 0.00 2019-12-20 10:52:31 2019-12-20 10:53:32 t 1 1 204715 734 0.00 2019-12-20 10:25:46 2019-12-20 10:54:31 t 1 1 204419 392 0.00 2019-12-19 22:59:59 2019-12-20 01:10:31 t 1 2 204420 692 0.00 2019-12-20 01:11:21 2019-12-20 01:11:31 t 1 1 204421 748 0.00 2019-12-20 01:14:35 2019-12-20 01:14:57 t 1 1 204424 681 0.00 2019-12-20 00:54:24 2019-12-20 01:17:03 t 1 1 204425 696 0.00 2019-12-20 00:43:07 2019-12-20 01:18:03 t 1 1 204433 748 0.00 2019-12-20 01:22:22 2019-12-20 01:25:51 t 1 1 204439 679 0.00 2019-12-20 01:07:30 2019-12-20 01:31:59 t 1 1 204441 748 0.00 2019-12-20 01:33:28 2019-12-20 01:33:35 t 1 1 204443 692 0.00 2019-12-20 01:39:55 2019-12-20 01:40:06 t 1 1 204450 748 0.00 2019-12-20 01:41:33 2019-12-20 01:43:21 t 1 1 204451 696 0.00 2019-12-20 01:32:31 2019-12-20 01:44:57 t 1 1 204453 679 0.00 2019-12-20 01:31:59 2019-12-20 01:48:03 t 1 1 204457 562 0.00 2019-12-20 01:52:33 2019-12-20 01:55:24 t 1 1 204458 681 0.00 2019-12-20 01:17:03 2019-12-20 01:56:49 t 1 1 204461 562 0.00 2019-12-20 02:03:07 2019-12-20 02:03:26 t 1 1 204466 692 0.00 2019-12-20 02:11:24 2019-12-20 02:11:27 t 1 1 204467 692 0.00 2019-12-20 02:11:34 2019-12-20 02:11:52 t 1 1 204469 562 0.00 2019-12-20 02:09:59 2019-12-20 02:13:04 t 1 1 204472 625 0.00 2019-12-20 02:16:59 2019-12-20 02:31:18 t 1 1 204473 692 0.00 2019-12-20 02:31:20 2019-12-20 02:31:28 t 1 1 204476 692 0.00 2019-12-20 02:36:55 2019-12-20 02:36:59 t 1 1 204478 687 0.00 2019-12-20 02:37:13 2019-12-20 02:43:18 t 1 1 204479 692 0.00 2019-12-20 02:48:01 2019-12-20 02:48:29 t 1 1 204481 692 0.00 2019-12-20 02:55:14 2019-12-20 02:55:30 t 1 1 204484 687 0.00 2019-12-20 02:50:10 2019-12-20 03:03:24 t 1 1 204489 692 0.00 2019-12-20 03:07:19 2019-12-20 03:11:37 t 1 1 204491 694 0.00 2019-12-20 01:06:55 2019-12-20 03:15:00 t 1 1 204492 562 0.00 2019-12-20 03:17:46 2019-12-20 03:21:05 t 1 1 204494 692 0.00 2019-12-20 03:23:28 2019-12-20 03:23:42 t 1 1 204500 692 0.00 2019-12-20 03:37:40 2019-12-20 03:37:48 t 1 1 204503 687 0.00 2019-12-20 03:29:05 2019-12-20 03:47:35 t 1 1 204504 687 0.00 2019-12-20 03:47:35 2019-12-20 03:50:12 t 1 1 204505 692 0.00 2019-12-20 03:56:40 2019-12-20 03:56:50 t 1 1 204507 692 0.00 2019-12-20 04:27:52 2019-12-20 04:28:01 t 1 1 204513 692 0.00 2019-12-20 05:30:40 2019-12-20 05:30:50 t 1 1 204514 692 0.00 2019-12-20 05:43:21 2019-12-20 05:43:35 t 1 1 204516 692 0.00 2019-12-20 05:48:35 2019-12-20 05:50:23 t 1 1 204526 711 0.00 2019-12-20 06:17:03 2019-12-20 06:23:32 t 1 1 204527 692 0.00 2019-12-20 06:23:33 2019-12-20 06:23:56 t 1 1 204528 692 0.00 2019-12-20 06:24:06 2019-12-20 06:24:30 t 1 1 204529 459 0.00 2019-12-20 06:24:46 2019-12-20 06:24:53 t 1 2 204535 692 0.00 2019-12-20 06:27:32 2019-12-20 06:27:55 t 1 1 204539 711 0.00 2019-12-20 06:30:07 2019-12-20 06:36:06 t 1 1 204541 711 0.00 2019-12-20 06:36:06 2019-12-20 06:42:41 t 1 1 204548 485 0.00 2019-12-20 06:49:49 2019-12-20 07:00:33 t 1 1 204549 711 0.00 2019-12-20 06:42:41 2019-12-20 07:01:58 t 1 1 204558 692 0.00 2019-12-20 07:30:58 2019-12-20 07:31:08 t 1 1 204561 716 0.00 2019-12-20 07:26:46 2019-12-20 07:34:53 t 1 1 204562 485 0.00 2019-12-20 07:24:03 2019-12-20 07:36:34 t 1 1 204563 689 0.00 2019-12-20 07:21:31 2019-12-20 07:38:04 t 1 1 204565 689 0.00 2019-12-20 07:38:27 2019-12-20 07:38:51 t 1 1 204566 689 0.00 2019-12-20 07:39:02 2019-12-20 07:39:22 t 1 1 204568 711 0.00 2019-12-20 07:15:47 2019-12-20 07:44:51 t 1 1 204571 692 0.00 2019-12-20 07:47:44 2019-12-20 07:48:08 t 1 1 204573 485 0.00 2019-12-20 07:37:21 2019-12-20 07:51:55 t 1 1 204576 485 0.00 2019-12-20 07:51:55 2019-12-20 08:04:21 t 1 1 204577 625 0.00 2019-12-20 02:31:18 2019-12-20 08:05:33 t 1 1 204580 566 0.00 2019-12-20 07:57:58 2019-12-20 08:16:02 t 1 1 204582 485 0.00 2019-12-20 08:17:33 2019-12-20 08:21:17 t 1 1 204583 716 0.00 2019-12-20 07:54:36 2019-12-20 08:25:13 t 1 1 204587 692 0.00 2019-12-20 08:26:54 2019-12-20 08:27:18 t 1 1 204590 692 0.00 2019-12-20 08:28:37 2019-12-20 08:29:01 t 1 1 204591 692 0.00 2019-12-20 08:29:11 2019-12-20 08:29:35 t 1 1 204598 485 0.00 2019-12-20 08:21:16 2019-12-20 08:33:32 t 1 1 204599 625 0.00 2019-12-20 08:05:33 2019-12-20 08:35:47 t 1 1 204602 692 0.00 2019-12-20 08:42:03 2019-12-20 08:42:13 t 1 1 204603 748 0.00 2019-12-20 08:32:36 2019-12-20 08:43:30 t 1 1 204607 675 0.00 2019-12-20 08:35:04 2019-12-20 08:47:52 t 1 1 204609 748 0.00 2019-12-20 08:48:33 2019-12-20 08:48:38 t 1 1 204613 220 0.00 2019-12-20 08:52:41 2019-12-20 08:53:45 t 1 2 204615 566 0.00 2019-12-20 08:32:46 2019-12-20 08:56:43 t 1 1 204617 711 0.00 2019-12-20 07:44:51 2019-12-20 08:59:59 t 1 1 204619 625 0.00 2019-12-20 09:00:42 2019-12-20 09:01:46 t 1 1 204629 748 0.00 2019-12-20 09:13:02 2019-12-20 09:13:07 t 1 1 204632 625 0.00 2019-12-20 09:10:50 2019-12-20 09:15:37 t 1 1 204634 591 0.00 2019-12-20 09:19:51 2019-12-20 09:21:47 t 1 1 204636 748 0.00 2019-12-20 09:22:52 2019-12-20 09:23:03 t 1 1 204637 692 0.00 2019-12-20 09:25:33 2019-12-20 09:25:43 t 1 1 204641 691 0.00 2019-12-20 09:25:54 2019-12-20 09:29:52 t 1 1 204644 748 0.00 2019-12-20 09:27:24 2019-12-20 09:32:06 t 1 1 204645 748 0.00 2019-12-20 09:32:42 2019-12-20 09:32:49 t 1 1 204647 692 0.00 2019-12-20 09:33:27 2019-12-20 09:33:47 t 1 1 204651 625 0.00 2019-12-20 09:34:53 2019-12-20 09:39:00 t 1 1 204658 692 0.00 2019-12-20 09:46:33 2019-12-20 09:46:45 t 1 1 204659 748 0.00 2019-12-20 09:48:02 2019-12-20 09:48:18 t 1 1 204660 748 0.00 2019-12-20 09:49:09 2019-12-20 09:49:22 t 1 1 204661 748 0.00 2019-12-20 09:54:06 2019-12-20 09:54:12 t 1 1 204663 591 0.00 2019-12-20 09:53:05 2019-12-20 09:56:11 t 1 1 204667 637 0.00 2019-12-20 09:58:15 2019-12-20 10:00:51 t 1 1 204672 679 0.00 2019-12-20 10:04:20 2019-12-20 10:06:11 t 1 1 204673 692 0.00 2019-12-20 10:07:47 2019-12-20 10:08:08 t 1 1 204679 748 0.00 2019-12-20 10:13:31 2019-12-20 10:15:59 t 1 1 204686 748 0.00 2019-12-20 10:24:36 2019-12-20 10:29:22 t 1 1 204687 637 0.00 2019-12-20 10:16:38 2019-12-20 10:30:54 t 1 1 204689 487 0.00 2019-12-20 10:20:50 2019-12-20 10:31:25 t 1 2 204692 498 0.00 2019-12-20 10:19:50 2019-12-20 10:32:37 t 1 2 204694 748 0.00 2019-12-20 10:33:58 2019-12-20 10:34:08 t 1 1 204696 752 0.00 2019-12-20 08:37:42 2019-12-20 10:39:05 t 1 1 204706 748 0.00 2019-12-20 10:45:54 2019-12-20 10:47:25 t 1 1 204708 562 0.00 2019-12-20 10:47:55 2019-12-20 10:47:59 t 1 1 204709 692 0.00 2019-12-20 10:46:57 2019-12-20 10:48:10 t 1 1 204713 562 0.00 2019-12-20 10:48:13 2019-12-20 10:52:21 t 1 1 204717 637 0.00 2019-12-20 10:34:49 2019-12-20 10:55:29 t 1 1 204718 756 0.00 2019-12-20 10:32:35 2019-12-20 10:57:41 t 1 1 204719 692 0.00 2019-12-20 10:59:06 2019-12-20 10:59:51 t 1 1 204720 562 0.00 2019-12-20 11:00:48 2019-12-20 11:01:13 t 1 1 204721 716 0.00 2019-12-20 10:46:53 2019-12-20 11:01:29 t 1 1 204435 716 0.00 2019-12-20 01:23:02 2019-12-20 01:28:37 t 1 1 204436 392 0.00 2019-12-20 01:19:01 2019-12-20 01:29:16 t 1 2 204438 696 0.00 2019-12-20 01:19:42 2019-12-20 01:30:14 t 1 1 204445 692 0.00 2019-12-20 01:40:23 2019-12-20 01:40:51 t 1 1 204446 748 0.00 2019-12-20 01:41:15 2019-12-20 01:41:19 t 1 1 204448 687 0.00 2019-12-20 01:18:48 2019-12-20 01:42:24 t 1 1 204462 687 0.00 2019-12-20 01:56:51 2019-12-20 02:03:37 t 1 1 204463 716 0.00 2019-12-20 01:28:37 2019-12-20 02:05:25 t 1 1 204465 692 0.00 2019-12-20 02:11:00 2019-12-20 02:11:09 t 1 1 204470 692 0.00 2019-12-20 02:25:45 2019-12-20 02:25:53 t 1 1 204474 562 0.00 2019-12-20 02:32:08 2019-12-20 02:35:18 t 1 1 204475 692 0.00 2019-12-20 02:36:34 2019-12-20 02:36:45 t 1 1 204485 692 0.00 2019-12-20 03:04:48 2019-12-20 03:04:59 t 1 1 204486 692 0.00 2019-12-20 03:05:10 2019-12-20 03:06:05 t 1 1 204487 692 0.00 2019-12-20 03:06:15 2019-12-20 03:06:16 t 1 1 204488 687 0.00 2019-12-20 03:03:24 2019-12-20 03:11:23 t 1 1 204495 562 0.00 2019-12-20 03:21:19 2019-12-20 03:26:09 t 1 1 204499 692 0.00 2019-12-20 03:34:21 2019-12-20 03:34:22 t 1 1 204501 692 0.00 2019-12-20 03:40:38 2019-12-20 03:40:47 t 1 1 204502 692 0.00 2019-12-20 03:41:11 2019-12-20 03:41:13 t 1 1 204509 692 0.00 2019-12-20 04:43:27 2019-12-20 04:43:50 t 1 1 204510 692 0.00 2019-12-20 04:59:09 2019-12-20 04:59:35 t 1 1 204511 711 0.00 2019-12-20 01:43:53 2019-12-20 05:03:45 t 1 1 204521 711 0.00 2019-12-20 05:58:00 2019-12-20 06:17:03 t 1 1 204522 692 0.00 2019-12-20 06:21:26 2019-12-20 06:21:39 t 1 1 204523 692 0.00 2019-12-20 06:21:49 2019-12-20 06:22:13 t 1 1 204525 692 0.00 2019-12-20 06:22:58 2019-12-20 06:23:22 t 1 1 204531 692 0.00 2019-12-20 06:25:15 2019-12-20 06:25:39 t 1 1 204532 692 0.00 2019-12-20 06:25:50 2019-12-20 06:26:13 t 1 1 204537 516 0.00 2019-12-20 06:16:21 2019-12-20 06:28:31 t 1 1 204538 711 0.00 2019-12-20 06:23:32 2019-12-20 06:30:07 t 1 1 204542 692 0.00 2019-12-20 06:42:41 2019-12-20 06:42:53 t 1 1 204544 485 0.00 2019-12-20 06:31:47 2019-12-20 06:49:49 t 1 1 204551 711 0.00 2019-12-20 07:01:58 2019-12-20 07:09:07 t 1 1 204552 675 0.00 2019-12-20 07:07:47 2019-12-20 07:09:37 t 1 1 204553 675 0.00 2019-12-20 07:09:40 2019-12-20 07:11:02 t 1 1 204554 485 0.00 2019-12-20 07:00:33 2019-12-20 07:12:09 t 1 1 204555 711 0.00 2019-12-20 07:09:07 2019-12-20 07:15:47 t 1 1 204556 692 0.00 2019-12-20 07:19:53 2019-12-20 07:20:15 t 1 1 204557 485 0.00 2019-12-20 07:12:09 2019-12-20 07:24:03 t 1 1 204559 692 0.00 2019-12-20 07:31:36 2019-12-20 07:31:49 t 1 1 204560 692 0.00 2019-12-20 07:32:00 2019-12-20 07:32:23 t 1 1 204569 692 0.00 2019-12-20 07:46:46 2019-12-20 07:46:52 t 1 1 204570 692 0.00 2019-12-20 07:47:20 2019-12-20 07:47:34 t 1 1 204572 637 0.00 2019-12-20 07:42:36 2019-12-20 07:49:37 t 1 1 204584 692 0.00 2019-12-20 08:25:22 2019-12-20 08:25:35 t 1 1 204585 692 0.00 2019-12-20 08:25:46 2019-12-20 08:26:10 t 1 1 204586 692 0.00 2019-12-20 08:26:20 2019-12-20 08:26:44 t 1 1 204588 692 0.00 2019-12-20 08:27:29 2019-12-20 08:27:53 t 1 1 204592 748 0.00 2019-12-20 08:26:37 2019-12-20 08:29:51 t 1 1 204596 748 0.00 2019-12-20 08:30:20 2019-12-20 08:31:33 t 1 1 204597 566 0.00 2019-12-20 08:16:02 2019-12-20 08:32:46 t 1 1 204600 681 0.00 2019-12-20 01:56:08 2019-12-20 08:36:47 t 1 1 204601 485 0.00 2019-12-20 08:33:32 2019-12-20 08:40:12 t 1 1 204605 611 0.00 2019-12-20 08:27:06 2019-12-20 08:45:44 t 1 1 204606 748 0.00 2019-12-20 08:43:30 2019-12-20 08:47:33 t 1 1 204611 716 0.00 2019-12-20 08:51:41 2019-12-20 08:52:46 t 1 1 204612 692 0.00 2019-12-20 08:52:45 2019-12-20 08:53:23 t 1 1 204614 516 0.00 2019-12-20 08:50:23 2019-12-20 08:53:53 t 1 1 204620 748 0.00 2019-12-20 08:49:05 2019-12-20 09:02:09 t 1 1 204621 568 0.00 2019-12-20 09:02:35 2019-12-20 09:03:20 t 1 1 204622 692 0.00 2019-12-20 09:04:06 2019-12-20 09:04:16 t 1 1 204626 748 0.00 2019-12-20 09:08:45 2019-12-20 09:10:06 t 1 1 204627 625 0.00 2019-12-20 09:06:25 2019-12-20 09:11:06 t 1 1 204628 748 0.00 2019-12-20 09:11:07 2019-12-20 09:12:03 t 1 1 204639 611 0.00 2019-12-20 09:13:03 2019-12-20 09:28:37 t 1 1 204640 711 0.00 2019-12-20 09:09:30 2019-12-20 09:29:43 t 1 1 204642 591 0.00 2019-12-20 09:28:39 2019-12-20 09:31:03 t 1 1 204643 692 0.00 2019-12-20 09:31:38 2019-12-20 09:31:48 t 1 1 204649 692 0.00 2019-12-20 09:36:31 2019-12-20 09:36:41 t 1 1 204650 716 0.00 2019-12-20 09:37:00 2019-12-20 09:37:54 t 1 1 204652 637 0.00 2019-12-20 07:49:37 2019-12-20 09:39:19 t 1 1 204654 691 0.00 2019-12-20 09:42:57 2019-12-20 09:44:06 t 1 1 204657 748 0.00 2019-12-20 09:46:29 2019-12-20 09:46:41 t 1 1 204668 311 0.00 2019-12-20 09:02:47 2019-12-20 10:02:07 t 1 2 204670 637 0.00 2019-12-20 10:02:42 2019-12-20 10:05:42 t 1 1 204671 692 0.00 2019-12-20 10:05:58 2019-12-20 10:06:08 t 1 1 204675 692 0.00 2019-12-20 10:11:39 2019-12-20 10:11:48 t 1 1 204678 637 0.00 2019-12-20 10:08:58 2019-12-20 10:12:59 t 1 1 204680 637 0.00 2019-12-20 10:13:11 2019-12-20 10:17:20 t 1 1 204681 675 0.00 2019-12-20 10:18:11 2019-12-20 10:20:26 t 1 1 204685 514 0.00 2019-12-20 10:19:47 2019-12-20 10:28:26 t 1 1 204688 514 0.00 2019-12-20 10:29:03 2019-12-20 10:31:24 t 1 1 204690 748 0.00 2019-12-20 10:29:22 2019-12-20 10:32:17 t 1 1 204697 748 0.00 2019-12-20 10:40:39 2019-12-20 10:40:49 t 1 1 204699 748 0.00 2019-12-20 10:41:42 2019-12-20 10:42:36 t 1 1 204700 481 0.00 2019-12-20 10:39:27 2019-12-20 10:45:19 t 1 1 204703 748 0.00 2019-12-20 10:46:07 2019-12-20 10:46:08 t 1 1 204705 716 0.00 2019-12-20 09:48:10 2019-12-20 10:46:53 t 1 1 204710 615 0.00 2019-12-20 10:36:18 2019-12-20 10:48:25 t 1 1 204712 752 0.00 2019-12-20 10:49:10 2019-12-20 10:50:17 t 1 1 204716 591 0.00 2019-12-20 10:24:27 2019-12-20 10:54:51 t 1 1 204722 716 0.00 2019-12-20 11:01:29 2019-12-20 11:01:40 t 1 1 204723 637 0.00 2019-12-20 11:03:06 2019-12-20 11:03:52 t 1 1 204724 627 0.00 2019-12-20 11:00:38 2019-12-20 11:03:57 t 1 1 204725 692 0.00 2019-12-20 11:04:48 2019-12-20 11:05:27 t 1 1 204726 627 0.00 2019-12-20 11:04:32 2019-12-20 11:05:56 t 1 1 204727 627 0.00 2019-12-20 11:06:20 2019-12-20 11:06:26 t 1 1 204728 748 0.00 2019-12-20 11:05:47 2019-12-20 11:06:57 t 1 1 204729 562 0.00 2019-12-20 11:07:31 2019-12-20 11:07:41 t 1 1 204730 627 0.00 2019-12-20 11:07:34 2019-12-20 11:08:01 t 1 1 204731 748 0.00 2019-12-20 11:08:45 2019-12-20 11:09:20 t 1 1 204732 627 0.00 2019-12-20 11:09:17 2019-12-20 11:09:26 t 1 1 204733 748 0.00 2019-12-20 11:09:32 2019-12-20 11:09:45 t 1 1 204734 692 0.00 2019-12-20 11:09:56 2019-12-20 11:09:57 t 1 1 204735 627 0.00 2019-12-20 11:10:43 2019-12-20 11:11:06 t 1 1 204736 748 0.00 2019-12-20 11:11:09 2019-12-20 11:12:25 t 1 1 204737 615 0.00 2019-12-20 10:48:25 2019-12-20 11:14:05 t 1 1 204738 562 0.00 2019-12-20 11:15:13 2019-12-20 11:15:33 t 1 1 204739 748 0.00 2019-12-20 11:16:20 2019-12-20 11:16:32 t 1 1 204742 611 0.00 2019-12-20 11:16:35 2019-12-20 11:19:59 t 1 1 204744 748 0.00 2019-12-20 11:22:20 2019-12-20 11:22:30 t 1 1 204745 635 0.00 2019-12-20 09:04:18 2019-12-20 11:23:23 t 1 1 204746 692 0.00 2019-12-20 11:25:27 2019-12-20 11:25:35 t 1 1 204748 675 0.00 2019-12-20 11:22:22 2019-12-20 11:25:50 t 1 1 204751 660 0.00 2019-12-20 11:04:39 2019-12-20 11:27:33 t 1 1 204753 748 0.00 2019-12-20 11:28:40 2019-12-20 11:28:46 t 1 1 204754 707 0.00 2019-12-20 11:26:11 2019-12-20 11:29:37 t 1 1 204755 748 0.00 2019-12-20 11:29:46 2019-12-20 11:30:32 t 1 1 204756 748 0.00 2019-12-20 11:31:16 2019-12-20 11:31:21 t 1 1 204757 615 0.00 2019-12-20 11:14:05 2019-12-20 11:32:52 t 1 1 204762 748 0.00 2019-12-20 11:35:20 2019-12-20 11:35:36 t 1 1 204764 581 0.00 2019-12-20 11:37:41 2019-12-20 11:37:41 f 1 1 204767 748 0.00 2019-12-20 11:37:17 2019-12-20 11:38:36 t 1 1 204768 748 0.00 2019-12-20 11:38:44 2019-12-20 11:39:33 t 1 1 204769 562 0.00 2019-12-20 11:40:12 2019-12-20 11:40:21 t 1 1 204777 748 0.00 2019-12-20 11:44:35 2019-12-20 11:44:48 t 1 1 204782 562 0.00 2019-12-20 11:45:16 2019-12-20 11:46:29 t 1 1 204783 734 0.00 2019-12-20 11:17:50 2019-12-20 11:47:30 t 1 1 204786 692 0.00 2019-12-20 11:50:31 2019-12-20 11:51:29 t 1 1 204787 681 0.00 2019-12-20 08:36:47 2019-12-20 11:52:52 t 1 1 204788 748 0.00 2019-12-20 11:54:05 2019-12-20 11:54:23 t 1 1 204791 748 0.00 2019-12-20 11:55:41 2019-12-20 11:55:52 t 1 1 204794 748 0.00 2019-12-20 11:57:11 2019-12-20 11:57:20 t 1 1 204798 679 0.00 2019-12-20 11:58:50 2019-12-20 12:01:25 t 1 1 204800 748 0.00 2019-12-20 12:01:44 2019-12-20 12:01:49 t 1 1 204804 748 0.00 2019-12-20 12:04:30 2019-12-20 12:04:40 t 1 1 204808 615 0.00 2019-12-20 11:45:42 2019-12-20 12:07:01 t 1 1 204810 692 0.00 2019-12-20 11:51:36 2019-12-20 12:07:40 t 1 1 204812 481 0.00 2019-12-20 11:46:15 2019-12-20 12:09:54 t 1 1 204815 748 0.00 2019-12-20 12:13:03 2019-12-20 12:13:06 t 1 1 204817 679 0.00 2019-12-20 12:13:35 2019-12-20 12:13:41 t 1 1 204819 562 0.00 2019-12-20 12:12:52 2019-12-20 12:15:59 t 1 1 204824 679 0.00 2019-12-20 12:19:11 2019-12-20 12:19:22 t 1 1 204827 679 0.00 2019-12-20 12:19:57 2019-12-20 12:20:06 t 1 1 204833 679 0.00 2019-12-20 12:22:05 2019-12-20 12:22:16 t 1 1 204834 679 0.00 2019-12-20 12:22:32 2019-12-20 12:22:52 t 1 1 204837 679 0.00 2019-12-20 12:22:22 2019-12-20 12:24:25 t 1 1 204840 748 0.00 2019-12-20 12:24:32 2019-12-20 12:25:30 t 1 1 204842 514 0.00 2019-12-20 12:14:12 2019-12-20 12:26:19 t 1 1 204847 627 0.00 2019-12-20 12:25:15 2019-12-20 12:27:28 t 1 1 204851 562 0.00 2019-12-20 12:25:33 2019-12-20 12:28:30 t 1 1 204854 562 0.00 2019-12-20 12:29:34 2019-12-20 12:29:41 t 1 1 204861 591 0.00 2019-12-20 12:00:46 2019-12-20 12:35:02 t 1 1 204863 562 0.00 2019-12-20 12:35:30 2019-12-20 12:35:57 t 1 1 204864 748 0.00 2019-12-20 12:36:24 2019-12-20 12:36:31 t 1 1 204867 734 0.00 2019-12-20 11:47:34 2019-12-20 12:37:59 t 1 1 204868 679 0.00 2019-12-20 12:35:42 2019-12-20 12:38:19 t 1 1 204872 679 0.00 2019-12-20 12:39:43 2019-12-20 12:39:45 t 1 1 204873 679 0.00 2019-12-20 12:40:04 2019-12-20 12:40:15 t 1 1 204875 679 0.00 2019-12-20 12:41:10 2019-12-20 12:41:19 t 1 1 204876 679 0.00 2019-12-20 12:41:31 2019-12-20 12:42:21 t 1 1 204877 544 0.00 2019-12-20 11:55:56 2019-12-20 12:42:52 t 1 1 204879 679 0.00 2019-12-20 12:43:15 2019-12-20 12:43:18 t 1 1 204881 679 0.00 2019-12-20 12:42:29 2019-12-20 12:44:25 t 1 1 204885 562 0.00 2019-12-20 12:46:27 2019-12-20 12:46:33 t 1 1 204886 679 0.00 2019-12-20 12:46:41 2019-12-20 12:46:51 t 1 1 204889 679 0.00 2019-12-20 12:47:50 2019-12-20 12:47:58 t 1 1 204891 544 0.00 2019-12-20 12:42:52 2019-12-20 12:48:42 t 1 1 204894 679 0.00 2019-12-20 12:49:08 2019-12-20 12:49:11 t 1 1 204896 514 0.00 2019-12-20 12:44:35 2019-12-20 12:49:51 t 1 1 204898 679 0.00 2019-12-20 12:49:58 2019-12-20 12:51:06 t 1 1 204899 679 0.00 2019-12-20 12:51:12 2019-12-20 12:51:45 t 1 1 204900 679 0.00 2019-12-20 12:52:05 2019-12-20 12:52:16 t 1 1 204907 679 0.00 2019-12-20 12:54:44 2019-12-20 12:54:56 t 1 1 204908 679 0.00 2019-12-20 12:55:10 2019-12-20 12:55:17 t 1 1 204909 514 0.00 2019-12-20 12:49:51 2019-12-20 12:56:59 t 1 1 204911 748 0.00 2019-12-20 12:54:21 2019-12-20 12:57:29 t 1 1 204913 562 0.00 2019-12-20 12:58:07 2019-12-20 12:58:15 t 1 1 204914 220 0.00 2019-12-20 11:33:41 2019-12-20 13:00:11 t 1 2 204915 748 0.00 2019-12-20 13:00:43 2019-12-20 13:00:47 t 1 1 204918 562 0.00 2019-12-20 13:04:24 2019-12-20 13:04:41 t 1 1 204919 692 0.00 2019-12-20 13:05:12 2019-12-20 13:05:26 t 1 1 204922 514 0.00 2019-12-20 12:56:59 2019-12-20 13:14:06 t 1 1 204923 748 0.00 2019-12-20 13:14:29 2019-12-20 13:14:38 t 1 1 204925 562 0.00 2019-12-20 13:15:15 2019-12-20 13:15:22 t 1 1 204930 544 0.00 2019-12-20 12:49:00 2019-12-20 13:16:21 t 1 1 204941 392 0.00 2019-12-20 13:08:26 2019-12-20 13:36:11 t 1 2 204944 615 0.00 2019-12-20 13:35:20 2019-12-20 13:39:24 t 1 1 204946 687 0.00 2019-12-20 13:40:55 2019-12-20 13:42:35 t 1 1 204949 687 0.00 2019-12-20 13:42:50 2019-12-20 13:43:52 t 1 1 204952 679 0.00 2019-12-20 13:31:11 2019-12-20 13:45:31 t 1 1 204953 562 0.00 2019-12-20 13:47:20 2019-12-20 13:47:27 t 1 1 204960 748 0.00 2019-12-20 13:53:42 2019-12-20 13:53:47 t 1 1 204961 562 0.00 2019-12-20 13:55:29 2019-12-20 13:55:45 t 1 1 204962 748 0.00 2019-12-20 13:56:46 2019-12-20 13:56:59 t 1 1 204963 485 0.00 2019-12-20 13:47:13 2019-12-20 13:57:44 t 1 1 204966 660 0.00 2019-12-20 13:10:20 2019-12-20 13:58:16 t 1 1 204967 748 0.00 2019-12-20 13:58:19 2019-12-20 13:58:23 t 1 1 204971 748 0.00 2019-12-20 14:00:18 2019-12-20 14:00:26 t 1 1 204972 691 0.00 2019-12-20 14:00:20 2019-12-20 14:01:23 t 1 1 204974 562 0.00 2019-12-20 14:01:41 2019-12-20 14:01:58 t 1 1 204979 485 0.00 2019-12-20 13:57:44 2019-12-20 14:07:02 t 1 1 204982 562 0.00 2019-12-20 14:10:59 2019-12-20 14:11:06 t 1 1 204987 562 0.00 2019-12-20 14:13:15 2019-12-20 14:14:03 t 1 1 204991 748 0.00 2019-12-20 14:15:22 2019-12-20 14:15:33 t 1 1 204992 566 0.00 2019-12-20 14:02:33 2019-12-20 14:16:33 t 1 1 204994 660 0.00 2019-12-20 14:08:30 2019-12-20 14:19:55 t 1 1 204996 748 0.00 2019-12-20 14:18:42 2019-12-20 14:21:47 t 1 1 204997 748 0.00 2019-12-20 14:22:06 2019-12-20 14:22:35 t 1 1 205000 748 0.00 2019-12-20 14:25:41 2019-12-20 14:25:51 t 1 1 205001 748 0.00 2019-12-20 14:26:04 2019-12-20 14:26:14 t 1 1 205018 748 0.00 2019-12-20 14:34:17 2019-12-20 14:34:24 t 1 1 205023 562 0.00 2019-12-20 14:40:21 2019-12-20 14:40:41 t 1 1 204740 734 0.00 2019-12-20 10:54:31 2019-12-20 11:16:49 t 1 1 204743 748 0.00 2019-12-20 11:21:42 2019-12-20 11:21:49 t 1 1 204747 748 0.00 2019-12-20 11:24:55 2019-12-20 11:25:50 t 1 1 204749 562 0.00 2019-12-20 11:25:45 2019-12-20 11:26:10 t 1 1 204758 748 0.00 2019-12-20 11:32:47 2019-12-20 11:32:53 t 1 1 204760 562 0.00 2019-12-20 11:33:08 2019-12-20 11:33:28 t 1 1 204761 716 0.00 2019-12-20 11:01:39 2019-12-20 11:35:28 t 1 1 204766 675 0.00 2019-12-20 11:28:50 2019-12-20 11:38:30 t 1 1 204773 615 0.00 2019-12-20 11:32:52 2019-12-20 11:42:45 t 1 1 204774 637 0.00 2019-12-20 11:20:11 2019-12-20 11:43:42 t 1 1 204775 625 0.00 2019-12-20 10:11:22 2019-12-20 11:44:19 t 1 1 204776 615 0.00 2019-12-20 11:42:45 2019-12-20 11:44:35 t 1 1 204778 748 0.00 2019-12-20 11:45:00 2019-12-20 11:45:04 t 1 1 204779 748 0.00 2019-12-20 11:43:26 2019-12-20 11:45:25 t 1 1 204780 625 0.00 2019-12-20 11:44:19 2019-12-20 11:45:43 t 1 1 204789 748 0.00 2019-12-20 11:54:35 2019-12-20 11:54:40 t 1 1 204796 748 0.00 2019-12-20 11:58:41 2019-12-20 11:58:46 t 1 1 204797 591 0.00 2019-12-20 11:10:03 2019-12-20 12:00:46 t 1 1 204807 562 0.00 2019-12-20 12:06:29 2019-12-20 12:06:41 t 1 1 204820 716 0.00 2019-12-20 11:44:30 2019-12-20 12:16:14 t 1 1 204823 220 0.00 2019-12-20 12:18:45 2019-12-20 12:18:45 f 1 1 204825 220 0.00 2019-12-20 12:19:32 2019-12-20 12:19:32 f 1 1 204828 679 0.00 2019-12-20 12:18:57 2019-12-20 12:20:25 t 1 1 204829 748 0.00 2019-12-20 12:20:46 2019-12-20 12:20:58 t 1 1 204830 679 0.00 2019-12-20 12:21:04 2019-12-20 12:21:13 t 1 1 204832 692 0.00 2019-12-20 12:21:57 2019-12-20 12:22:09 t 1 1 204838 679 0.00 2019-12-20 12:24:20 2019-12-20 12:24:51 t 1 1 204843 748 0.00 2019-12-20 12:26:18 2019-12-20 12:26:28 t 1 1 204846 637 0.00 2019-12-20 11:43:34 2019-12-20 12:27:28 t 1 1 204849 681 0.00 2019-12-20 11:52:52 2019-12-20 12:27:58 t 1 1 204853 637 0.00 2019-12-20 12:27:33 2019-12-20 12:28:37 t 1 1 204857 716 0.00 2019-12-20 12:20:47 2019-12-20 12:31:59 t 1 1 204859 679 0.00 2019-12-20 12:32:36 2019-12-20 12:33:36 t 1 1 204860 679 0.00 2019-12-20 12:34:28 2019-12-20 12:34:32 t 1 1 204866 637 0.00 2019-12-20 12:28:42 2019-12-20 12:36:49 t 1 1 204869 679 0.00 2019-12-20 12:38:35 2019-12-20 12:38:55 t 1 1 204870 679 0.00 2019-12-20 12:39:11 2019-12-20 12:39:22 t 1 1 204874 679 0.00 2019-12-20 12:40:40 2019-12-20 12:40:50 t 1 1 204878 679 0.00 2019-12-20 12:42:42 2019-12-20 12:42:58 t 1 1 204883 679 0.00 2019-12-20 12:45:45 2019-12-20 12:46:07 t 1 1 204887 679 0.00 2019-12-20 12:46:59 2019-12-20 12:47:03 t 1 1 204893 637 0.00 2019-12-20 12:36:57 2019-12-20 12:49:09 t 1 1 204895 748 0.00 2019-12-20 12:49:14 2019-12-20 12:49:51 t 1 1 204897 748 0.00 2019-12-20 12:50:30 2019-12-20 12:50:41 t 1 1 204901 748 0.00 2019-12-20 12:52:28 2019-12-20 12:52:28 t 1 1 204904 748 0.00 2019-12-20 12:52:52 2019-12-20 12:52:57 t 1 1 204910 679 0.00 2019-12-20 12:55:23 2019-12-20 12:57:25 t 1 1 204912 679 0.00 2019-12-20 12:57:51 2019-12-20 12:58:00 t 1 1 204920 637 0.00 2019-12-20 12:57:02 2019-12-20 13:06:11 t 1 1 204921 748 0.00 2019-12-20 13:09:02 2019-12-20 13:13:21 t 1 1 204924 748 0.00 2019-12-20 13:14:53 2019-12-20 13:15:16 t 1 1 204927 459 0.00 2019-12-20 13:08:32 2019-12-20 13:15:37 t 1 2 204931 748 0.00 2019-12-20 13:16:29 2019-12-20 13:16:35 t 1 1 204933 748 0.00 2019-12-20 13:18:53 2019-12-20 13:20:25 t 1 1 204935 687 0.00 2019-12-20 12:57:11 2019-12-20 13:23:35 t 1 1 204936 562 0.00 2019-12-20 13:25:58 2019-12-20 13:26:13 t 1 1 204937 748 0.00 2019-12-20 13:20:19 2019-12-20 13:27:50 t 1 1 204939 679 0.00 2019-12-20 13:27:10 2019-12-20 13:29:28 t 1 1 204942 562 0.00 2019-12-20 13:36:15 2019-12-20 13:36:27 t 1 1 204943 687 0.00 2019-12-20 13:23:35 2019-12-20 13:37:50 t 1 1 204945 544 0.00 2019-12-20 13:16:52 2019-12-20 13:42:15 t 1 1 204948 748 0.00 2019-12-20 13:37:33 2019-12-20 13:43:43 t 1 1 204950 748 0.00 2019-12-20 13:43:55 2019-12-20 13:43:57 t 1 1 204951 562 0.00 2019-12-20 13:44:53 2019-12-20 13:45:16 t 1 1 204954 748 0.00 2019-12-20 13:47:39 2019-12-20 13:47:47 t 1 1 204955 679 0.00 2019-12-20 13:45:31 2019-12-20 13:48:24 t 1 1 204956 748 0.00 2019-12-20 13:48:28 2019-12-20 13:48:36 t 1 1 204957 748 0.00 2019-12-20 13:49:42 2019-12-20 13:49:43 t 1 1 204959 691 0.00 2019-12-20 13:51:00 2019-12-20 13:52:15 t 1 1 204964 748 0.00 2019-12-20 13:57:11 2019-12-20 13:57:45 t 1 1 204965 637 0.00 2019-12-20 13:44:19 2019-12-20 13:58:09 t 1 1 204969 748 0.00 2019-12-20 13:59:52 2019-12-20 14:00:09 t 1 1 204970 691 0.00 2019-12-20 13:59:58 2019-12-20 14:00:20 t 1 1 204975 637 0.00 2019-12-20 13:59:27 2019-12-20 14:03:32 t 1 1 204976 687 0.00 2019-12-20 13:58:25 2019-12-20 14:05:03 t 1 1 204977 748 0.00 2019-12-20 14:05:02 2019-12-20 14:05:29 t 1 1 204978 748 0.00 2019-12-20 14:05:56 2019-12-20 14:07:00 t 1 1 204983 625 0.00 2019-12-20 11:45:42 2019-12-20 14:11:44 t 1 1 204985 748 0.00 2019-12-20 14:10:22 2019-12-20 14:13:32 t 1 1 204988 748 0.00 2019-12-20 14:14:02 2019-12-20 14:14:33 t 1 1 204993 748 0.00 2019-12-20 14:15:43 2019-12-20 14:18:31 t 1 1 204995 562 0.00 2019-12-20 14:21:33 2019-12-20 14:21:46 t 1 1 204998 748 0.00 2019-12-20 14:24:59 2019-12-20 14:25:12 t 1 1 205002 748 0.00 2019-12-20 14:26:24 2019-12-20 14:26:32 t 1 1 205006 748 0.00 2019-12-20 14:28:02 2019-12-20 14:28:23 t 1 1 205008 748 0.00 2019-12-20 14:28:33 2019-12-20 14:28:57 t 1 1 205009 748 0.00 2019-12-20 14:29:07 2019-12-20 14:29:16 t 1 1 205011 748 0.00 2019-12-20 14:29:45 2019-12-20 14:32:05 t 1 1 205013 566 0.00 2019-12-20 14:16:33 2019-12-20 14:32:49 t 1 1 205015 748 0.00 2019-12-20 14:33:11 2019-12-20 14:33:18 t 1 1 205017 673 0.00 2019-12-20 14:27:40 2019-12-20 14:33:42 t 1 1 205019 748 0.00 2019-12-20 14:34:36 2019-12-20 14:34:42 t 1 1 205021 748 0.00 2019-12-20 14:37:54 2019-12-20 14:38:02 t 1 1 205022 756 0.00 2019-12-20 12:23:48 2019-12-20 14:40:39 t 1 1 205025 625 0.00 2019-12-20 14:18:59 2019-12-20 14:41:54 t 1 1 205027 687 0.00 2019-12-20 14:24:43 2019-12-20 14:45:23 t 1 1 205029 562 0.00 2019-12-20 14:48:42 2019-12-20 14:49:03 t 1 1 205032 687 0.00 2019-12-20 14:45:23 2019-12-20 14:54:26 t 1 1 205040 748 0.00 2019-12-20 15:01:01 2019-12-20 15:01:09 t 1 1 205043 716 0.00 2019-12-20 15:00:11 2019-12-20 15:08:06 t 1 1 205044 562 0.00 2019-12-20 15:08:05 2019-12-20 15:08:23 t 1 1 205045 748 0.00 2019-12-20 15:01:52 2019-12-20 15:10:32 t 1 1 205048 748 0.00 2019-12-20 15:14:19 2019-12-20 15:14:44 t 1 1 205050 498 0.00 2019-12-20 14:08:45 2019-12-20 15:15:57 t 1 2 205053 748 0.00 2019-12-20 15:17:47 2019-12-20 15:19:35 t 1 1 205057 649 0.00 2019-12-20 15:16:43 2019-12-20 15:26:55 t 1 1 205058 748 0.00 2019-12-20 15:27:57 2019-12-20 15:28:09 t 1 1 204741 637 0.00 2019-12-20 11:04:15 2019-12-20 11:18:38 t 1 1 204750 514 0.00 2019-12-20 11:00:04 2019-12-20 11:26:57 t 1 1 204752 748 0.00 2019-12-20 11:28:05 2019-12-20 11:28:26 t 1 1 204759 748 0.00 2019-12-20 11:33:04 2019-12-20 11:33:18 t 1 1 204763 748 0.00 2019-12-20 11:36:59 2019-12-20 11:37:04 t 1 1 204765 538 0.00 2019-12-20 10:27:44 2019-12-20 11:38:09 t 1 1 204770 611 0.00 2019-12-20 11:38:03 2019-12-20 11:40:54 t 1 1 204771 748 0.00 2019-12-20 11:41:02 2019-12-20 11:41:11 t 1 1 204772 748 0.00 2019-12-20 11:42:28 2019-12-20 11:42:33 t 1 1 204781 481 0.00 2019-12-20 10:50:42 2019-12-20 11:46:12 t 1 1 204784 748 0.00 2019-12-20 11:47:14 2019-12-20 11:49:38 t 1 1 204785 692 0.00 2019-12-20 11:36:14 2019-12-20 11:50:31 t 1 1 204790 756 0.00 2019-12-20 10:58:19 2019-12-20 11:55:28 t 1 1 204792 544 0.00 2019-12-20 11:25:35 2019-12-20 11:55:56 t 1 1 204793 562 0.00 2019-12-20 11:57:02 2019-12-20 11:57:10 t 1 1 204795 660 0.00 2019-12-20 11:48:56 2019-12-20 11:57:28 t 1 1 204799 748 0.00 2019-12-20 12:01:13 2019-12-20 12:01:32 t 1 1 204801 562 0.00 2019-12-20 11:59:39 2019-12-20 12:02:27 t 1 1 204802 748 0.00 2019-12-20 12:02:23 2019-12-20 12:03:08 t 1 1 204803 748 0.00 2019-12-20 12:04:19 2019-12-20 12:04:23 t 1 1 204805 562 0.00 2019-12-20 12:02:06 2019-12-20 12:05:06 t 1 1 204806 748 0.00 2019-12-20 12:05:49 2019-12-20 12:05:59 t 1 1 204809 748 0.00 2019-12-20 12:06:29 2019-12-20 12:07:02 t 1 1 204811 611 0.00 2019-12-20 11:47:57 2019-12-20 12:09:38 t 1 1 204813 562 0.00 2019-12-20 12:09:45 2019-12-20 12:09:58 t 1 1 204814 679 0.00 2019-12-20 11:58:56 2019-12-20 12:13:01 t 1 1 204816 679 0.00 2019-12-20 12:13:26 2019-12-20 12:13:29 t 1 1 204818 679 0.00 2019-12-20 12:14:02 2019-12-20 12:14:17 t 1 1 204821 679 0.00 2019-12-20 12:16:32 2019-12-20 12:16:36 t 1 1 204822 679 0.00 2019-12-20 12:17:28 2019-12-20 12:18:06 t 1 1 204826 679 0.00 2019-12-20 12:19:35 2019-12-20 12:19:46 t 1 1 204831 679 0.00 2019-12-20 12:21:25 2019-12-20 12:21:55 t 1 1 204835 756 0.00 2019-12-20 11:56:11 2019-12-20 12:23:48 t 1 1 204836 748 0.00 2019-12-20 12:24:01 2019-12-20 12:24:16 t 1 1 204839 627 0.00 2019-12-20 11:14:30 2019-12-20 12:25:15 t 1 1 204841 748 0.00 2019-12-20 12:25:57 2019-12-20 12:26:09 t 1 1 204844 748 0.00 2019-12-20 12:26:37 2019-12-20 12:27:00 t 1 1 204845 748 0.00 2019-12-20 12:27:09 2019-12-20 12:27:23 t 1 1 204848 679 0.00 2019-12-20 12:27:53 2019-12-20 12:27:56 t 1 1 204850 748 0.00 2019-12-20 12:27:34 2019-12-20 12:28:01 t 1 1 204852 748 0.00 2019-12-20 12:28:26 2019-12-20 12:28:30 t 1 1 204855 679 0.00 2019-12-20 12:28:23 2019-12-20 12:29:52 t 1 1 204856 748 0.00 2019-12-20 12:31:11 2019-12-20 12:31:44 t 1 1 204858 679 0.00 2019-12-20 12:31:33 2019-12-20 12:32:10 t 1 1 204862 679 0.00 2019-12-20 12:35:17 2019-12-20 12:35:34 t 1 1 204865 692 0.00 2019-12-20 12:30:25 2019-12-20 12:36:38 t 1 1 204871 679 0.00 2019-12-20 12:39:30 2019-12-20 12:39:31 t 1 1 204880 681 0.00 2019-12-20 12:27:58 2019-12-20 12:43:37 t 1 1 204882 514 0.00 2019-12-20 12:26:19 2019-12-20 12:44:35 t 1 1 204884 748 0.00 2019-12-20 12:41:15 2019-12-20 12:46:08 t 1 1 204888 748 0.00 2019-12-20 12:46:42 2019-12-20 12:47:45 t 1 1 204890 679 0.00 2019-12-20 12:48:03 2019-12-20 12:48:36 t 1 1 204892 679 0.00 2019-12-20 12:48:41 2019-12-20 12:48:49 t 1 1 204902 679 0.00 2019-12-20 12:52:33 2019-12-20 12:52:40 t 1 1 204903 679 0.00 2019-12-20 12:52:46 2019-12-20 12:52:57 t 1 1 204905 562 0.00 2019-12-20 12:53:40 2019-12-20 12:53:58 t 1 1 204906 679 0.00 2019-12-20 12:53:23 2019-12-20 12:54:30 t 1 1 204916 692 0.00 2019-12-20 12:37:22 2019-12-20 13:01:03 t 1 1 204917 679 0.00 2019-12-20 13:00:38 2019-12-20 13:02:30 t 1 1 204926 748 0.00 2019-12-20 13:15:16 2019-12-20 13:15:29 t 1 1 204928 748 0.00 2019-12-20 13:15:40 2019-12-20 13:15:42 t 1 1 204929 748 0.00 2019-12-20 13:15:56 2019-12-20 13:16:02 t 1 1 204932 637 0.00 2019-12-20 13:06:57 2019-12-20 13:19:40 t 1 1 204934 611 0.00 2019-12-20 13:15:46 2019-12-20 13:23:16 t 1 1 204938 748 0.00 2019-12-20 13:27:59 2019-12-20 13:28:00 t 1 1 204940 748 0.00 2019-12-20 13:33:07 2019-12-20 13:33:14 t 1 1 204947 637 0.00 2019-12-20 13:19:45 2019-12-20 13:43:26 t 1 1 204958 538 0.00 2019-12-20 11:37:18 2019-12-20 13:50:27 t 1 1 204968 687 0.00 2019-12-20 13:44:52 2019-12-20 13:58:25 t 1 1 204973 748 0.00 2019-12-20 14:00:40 2019-12-20 14:01:37 t 1 1 204980 660 0.00 2019-12-20 13:58:16 2019-12-20 14:08:30 t 1 1 204981 591 0.00 2019-12-20 13:48:29 2019-12-20 14:10:33 t 1 1 204984 687 0.00 2019-12-20 14:05:03 2019-12-20 14:12:23 t 1 1 204986 748 0.00 2019-12-20 14:13:42 2019-12-20 14:13:52 t 1 1 204989 748 0.00 2019-12-20 14:14:44 2019-12-20 14:14:51 t 1 1 204990 748 0.00 2019-12-20 14:15:03 2019-12-20 14:15:11 t 1 1 204999 748 0.00 2019-12-20 14:25:22 2019-12-20 14:25:32 t 1 1 205003 748 0.00 2019-12-20 14:26:43 2019-12-20 14:26:51 t 1 1 205004 748 0.00 2019-12-20 14:27:01 2019-12-20 14:27:22 t 1 1 205005 748 0.00 2019-12-20 14:27:32 2019-12-20 14:27:52 t 1 1 205007 660 0.00 2019-12-20 14:19:55 2019-12-20 14:28:36 t 1 1 205010 748 0.00 2019-12-20 14:29:27 2019-12-20 14:29:35 t 1 1 205012 562 0.00 2019-12-20 14:32:10 2019-12-20 14:32:33 t 1 1 205014 748 0.00 2019-12-20 14:32:19 2019-12-20 14:33:01 t 1 1 205016 748 0.00 2019-12-20 14:33:33 2019-12-20 14:33:40 t 1 1 205020 611 0.00 2019-12-20 14:32:09 2019-12-20 14:35:35 t 1 1 205024 748 0.00 2019-12-20 14:41:04 2019-12-20 14:41:16 t 1 1 205028 748 0.00 2019-12-20 14:47:38 2019-12-20 14:48:47 t 1 1 205030 625 0.00 2019-12-20 14:41:54 2019-12-20 14:52:23 t 1 1 205034 635 0.00 2019-12-20 14:55:28 2019-12-20 14:57:04 t 1 1 205036 748 0.00 2019-12-20 14:58:44 2019-12-20 14:58:49 t 1 1 205038 673 0.00 2019-12-20 14:33:42 2019-12-20 14:59:33 t 1 1 205047 637 0.00 2019-12-20 14:22:38 2019-12-20 15:14:36 t 1 1 205049 734 0.00 2019-12-20 13:53:53 2019-12-20 15:15:34 t 1 1 205051 481 0.00 2019-12-20 15:00:09 2019-12-20 15:16:27 t 1 1 205054 516 0.00 2019-12-20 13:54:09 2019-12-20 15:22:51 t 1 1 205060 562 0.00 2019-12-20 15:29:01 2019-12-20 15:29:13 t 1 1 205063 748 0.00 2019-12-20 15:31:35 2019-12-20 15:32:17 t 1 1 205067 748 0.00 2019-12-20 15:34:47 2019-12-20 15:35:08 t 1 1 205068 562 0.00 2019-12-20 15:35:34 2019-12-20 15:35:46 t 1 1 205071 748 0.00 2019-12-20 15:39:57 2019-12-20 15:40:09 t 1 1 205072 748 0.00 2019-12-20 15:41:26 2019-12-20 15:41:30 t 1 1 205075 748 0.00 2019-12-20 15:44:20 2019-12-20 15:44:20 t 1 1 205076 748 0.00 2019-12-20 15:45:09 2019-12-20 15:45:50 t 1 1 205078 748 0.00 2019-12-20 15:46:02 2019-12-20 15:46:53 t 1 1 205082 748 0.00 2019-12-20 15:49:27 2019-12-20 15:49:31 t 1 1 205089 748 0.00 2019-12-20 15:51:24 2019-12-20 15:53:27 t 1 1 205026 748 0.00 2019-12-20 14:42:31 2019-12-20 14:43:04 t 1 1 205031 748 0.00 2019-12-20 14:52:44 2019-12-20 14:53:31 t 1 1 205033 566 0.00 2019-12-20 14:32:49 2019-12-20 14:56:06 t 1 1 205035 748 0.00 2019-12-20 14:55:39 2019-12-20 14:57:13 t 1 1 205037 481 0.00 2019-12-20 12:09:59 2019-12-20 14:59:28 t 1 1 205039 716 0.00 2019-12-20 14:56:26 2019-12-20 15:00:11 t 1 1 205041 562 0.00 2019-12-20 14:59:37 2019-12-20 15:01:26 t 1 1 205042 566 0.00 2019-12-20 14:56:06 2019-12-20 15:07:45 t 1 1 205046 748 0.00 2019-12-20 15:11:24 2019-12-20 15:11:59 t 1 1 205052 562 0.00 2019-12-20 15:18:51 2019-12-20 15:19:05 t 1 1 205055 748 0.00 2019-12-20 15:22:33 2019-12-20 15:23:03 t 1 1 205056 516 0.00 2019-12-20 15:22:51 2019-12-20 15:25:36 t 1 1 205059 687 0.00 2019-12-20 15:00:13 2019-12-20 15:28:36 t 1 1 205062 748 0.00 2019-12-20 15:30:04 2019-12-20 15:31:15 t 1 1 205066 611 0.00 2019-12-20 15:23:04 2019-12-20 15:33:40 t 1 1 205069 392 0.00 2019-12-20 15:10:35 2019-12-20 15:36:50 t 1 2 205079 748 0.00 2019-12-20 15:46:53 2019-12-20 15:47:23 t 1 1 205081 748 0.00 2019-12-20 15:47:29 2019-12-20 15:48:26 t 1 1 205083 748 0.00 2019-12-20 15:50:57 2019-12-20 15:51:08 t 1 1 205086 748 0.00 2019-12-20 15:52:29 2019-12-20 15:52:41 t 1 1 205087 748 0.00 2019-12-20 15:52:53 2019-12-20 15:52:54 t 1 1 205088 562 0.00 2019-12-20 15:52:26 2019-12-20 15:53:27 t 1 1 205090 748 0.00 2019-12-20 15:53:28 2019-12-20 15:53:30 t 1 1 205092 748 0.00 2019-12-20 15:55:05 2019-12-20 15:55:31 t 1 1 205093 748 0.00 2019-12-20 15:56:31 2019-12-20 15:56:58 t 1 1 205095 673 0.00 2019-12-20 15:52:23 2019-12-20 15:58:40 t 1 1 205097 637 0.00 2019-12-20 15:14:35 2019-12-20 15:59:51 t 1 1 205098 562 0.00 2019-12-20 16:00:40 2019-12-20 16:01:24 t 1 1 205101 611 0.00 2019-12-20 15:59:47 2019-12-20 16:02:16 t 1 1 205102 611 0.00 2019-12-20 16:02:16 2019-12-20 16:03:19 t 1 1 205106 756 0.00 2019-12-20 14:40:45 2019-12-20 16:11:55 t 1 1 205108 687 0.00 2019-12-20 16:01:51 2019-12-20 16:16:01 t 1 1 205110 748 0.00 2019-12-20 16:08:13 2019-12-20 16:19:54 t 1 1 205112 748 0.00 2019-12-20 16:21:08 2019-12-20 16:24:06 t 1 1 205118 748 0.00 2019-12-20 16:30:40 2019-12-20 16:31:13 t 1 1 205120 679 0.00 2019-12-20 16:31:33 2019-12-20 16:31:53 t 1 1 205124 679 0.00 2019-12-20 16:33:08 2019-12-20 16:33:17 t 1 1 205126 679 0.00 2019-12-20 16:33:38 2019-12-20 16:33:48 t 1 1 205129 687 0.00 2019-12-20 16:17:33 2019-12-20 16:35:30 t 1 1 205131 562 0.00 2019-12-20 16:36:10 2019-12-20 16:36:23 t 1 1 205133 679 0.00 2019-12-20 16:36:07 2019-12-20 16:36:43 t 1 1 205138 679 0.00 2019-12-20 16:40:58 2019-12-20 16:41:05 t 1 1 205139 679 0.00 2019-12-20 16:41:11 2019-12-20 16:41:13 t 1 1 205144 679 0.00 2019-12-20 16:43:59 2019-12-20 16:44:07 t 1 1 205147 679 0.00 2019-12-20 16:54:38 2019-12-20 16:54:48 t 1 1 205150 679 0.00 2019-12-20 16:55:45 2019-12-20 16:55:47 t 1 1 205151 679 0.00 2019-12-20 16:56:00 2019-12-20 16:56:01 t 1 1 205152 679 0.00 2019-12-20 16:56:21 2019-12-20 16:57:28 t 1 1 205154 660 0.00 2019-12-20 16:36:49 2019-12-20 16:58:21 t 1 1 205158 516 0.00 2019-12-20 16:52:23 2019-12-20 16:59:06 t 1 1 205159 691 0.00 2019-12-20 16:58:50 2019-12-20 16:59:25 t 1 1 205160 679 0.00 2019-12-20 16:59:39 2019-12-20 16:59:46 t 1 1 205162 750 0.00 2019-12-20 16:56:04 2019-12-20 17:00:06 t 1 1 205166 679 0.00 2019-12-20 16:59:25 2019-12-20 17:01:28 t 1 1 205169 611 0.00 2019-12-20 16:57:12 2019-12-20 17:03:41 t 1 1 205171 750 0.00 2019-12-20 17:04:14 2019-12-20 17:06:39 t 1 1 205175 625 0.00 2019-12-20 17:10:38 2019-12-20 17:11:56 t 1 1 205176 562 0.00 2019-12-20 17:12:05 2019-12-20 17:12:13 t 1 1 205179 748 0.00 2019-12-20 17:10:35 2019-12-20 17:13:16 t 1 1 205181 748 0.00 2019-12-20 17:13:23 2019-12-20 17:14:29 t 1 1 205184 716 0.00 2019-12-20 17:00:46 2019-12-20 17:15:50 t 1 1 205186 734 0.00 2019-12-20 17:13:05 2019-12-20 17:19:20 t 1 1 205187 562 0.00 2019-12-20 17:20:34 2019-12-20 17:20:42 t 1 1 205189 611 0.00 2019-12-20 17:27:40 2019-12-20 17:29:59 t 1 1 205191 675 0.00 2019-12-20 17:25:40 2019-12-20 17:32:55 t 1 1 205193 748 0.00 2019-12-20 17:28:46 2019-12-20 17:35:59 t 1 1 205194 748 0.00 2019-12-20 17:36:05 2019-12-20 17:36:37 t 1 1 205196 748 0.00 2019-12-20 17:37:42 2019-12-20 17:38:15 t 1 1 205200 631 0.00 2019-12-20 17:43:50 2019-12-20 17:44:15 t 1 1 205202 687 0.00 2019-12-20 17:37:18 2019-12-20 17:45:12 t 1 1 205204 562 0.00 2019-12-20 17:35:39 2019-12-20 17:46:56 t 1 1 205214 694 0.00 2019-12-20 17:07:06 2019-12-20 17:56:13 t 1 1 205216 562 0.00 2019-12-20 17:55:21 2019-12-20 17:56:23 t 1 1 205222 562 0.00 2019-12-20 18:02:05 2019-12-20 18:02:25 t 1 1 205224 675 0.00 2019-12-20 18:01:32 2019-12-20 18:03:34 t 1 1 205229 722 0.00 2019-12-20 18:03:40 2019-12-20 18:07:49 t 1 1 205230 748 0.00 2019-12-20 18:07:35 2019-12-20 18:08:17 t 1 1 205232 611 0.00 2019-12-20 18:02:09 2019-12-20 18:10:33 t 1 1 205234 459 0.00 2019-12-20 18:02:39 2019-12-20 18:12:28 t 1 2 205235 611 0.00 2019-12-20 18:10:57 2019-12-20 18:13:08 t 1 1 205236 687 0.00 2019-12-20 17:59:32 2019-12-20 18:14:31 t 1 1 205242 673 0.00 2019-12-20 18:11:06 2019-12-20 18:19:01 t 1 1 205243 566 0.00 2019-12-20 18:00:22 2019-12-20 18:19:47 t 1 1 205244 748 0.00 2019-12-20 18:08:43 2019-12-20 18:20:12 t 1 1 205250 744 0.00 2019-12-20 18:26:51 2019-12-20 18:29:01 t 1 1 205251 516 0.00 2019-12-20 18:07:28 2019-12-20 18:30:04 t 1 1 205253 538 0.00 2019-12-20 15:18:37 2019-12-20 18:31:12 t 1 1 205254 538 0.00 2019-12-20 18:31:11 2019-12-20 18:32:16 t 1 1 205256 220 0.00 2019-12-20 18:26:55 2019-12-20 18:32:28 t 1 1 205258 538 0.00 2019-12-20 18:32:16 2019-12-20 18:33:08 t 1 1 205262 538 0.00 2019-12-20 18:33:07 2019-12-20 18:35:07 t 1 1 205269 637 0.00 2019-12-20 17:58:01 2019-12-20 18:43:11 t 1 1 205273 637 0.00 2019-12-20 18:44:10 2019-12-20 18:48:17 t 1 1 205284 744 0.00 2019-12-20 18:29:25 2019-12-20 19:01:39 t 1 1 205286 611 0.00 2019-12-20 18:52:16 2019-12-20 19:03:07 t 1 1 205287 750 0.00 2019-12-20 17:55:43 2019-12-20 19:03:55 t 1 1 205288 694 0.00 2019-12-20 18:54:04 2019-12-20 19:04:49 t 1 1 205289 660 0.00 2019-12-20 18:44:15 2019-12-20 19:05:05 t 1 1 205290 562 0.00 2019-12-20 19:04:49 2019-12-20 19:05:09 t 1 1 205292 744 0.00 2019-12-20 19:01:29 2019-12-20 19:06:38 t 1 1 205295 734 0.00 2019-12-20 17:34:37 2019-12-20 19:10:39 t 1 1 205297 566 0.00 2019-12-20 19:01:31 2019-12-20 19:14:00 t 1 1 205298 625 0.00 2019-12-20 18:50:15 2019-12-20 19:14:42 t 1 1 205300 562 0.00 2019-12-20 19:15:50 2019-12-20 19:16:03 t 1 1 205302 675 0.00 2019-12-20 19:13:28 2019-12-20 19:18:31 t 1 1 205304 667 0.00 2019-12-20 19:16:25 2019-12-20 19:21:40 t 1 1 205306 498 0.00 2019-12-20 18:38:33 2019-12-20 19:22:30 t 1 2 205061 748 0.00 2019-12-20 15:29:08 2019-12-20 15:29:42 t 1 1 205064 748 0.00 2019-12-20 15:32:16 2019-12-20 15:32:27 t 1 1 205065 716 0.00 2019-12-20 15:27:06 2019-12-20 15:33:25 t 1 1 205070 687 0.00 2019-12-20 15:35:37 2019-12-20 15:37:20 t 1 1 205073 562 0.00 2019-12-20 15:40:05 2019-12-20 15:41:45 t 1 1 205074 748 0.00 2019-12-20 15:42:43 2019-12-20 15:42:55 t 1 1 205077 748 0.00 2019-12-20 15:46:23 2019-12-20 15:46:39 t 1 1 205080 673 0.00 2019-12-20 14:59:33 2019-12-20 15:47:33 t 1 1 205084 748 0.00 2019-12-20 15:51:14 2019-12-20 15:51:18 t 1 1 205085 673 0.00 2019-12-20 15:47:33 2019-12-20 15:52:17 t 1 1 205091 748 0.00 2019-12-20 15:53:55 2019-12-20 15:54:06 t 1 1 205094 748 0.00 2019-12-20 15:58:01 2019-12-20 15:58:34 t 1 1 205100 687 0.00 2019-12-20 15:37:27 2019-12-20 16:01:51 t 1 1 205104 637 0.00 2019-12-20 16:06:35 2019-12-20 16:08:54 t 1 1 205105 562 0.00 2019-12-20 16:11:39 2019-12-20 16:11:45 t 1 1 205109 562 0.00 2019-12-20 16:17:46 2019-12-20 16:18:05 t 1 1 205111 716 0.00 2019-12-20 16:13:12 2019-12-20 16:22:43 t 1 1 205113 562 0.00 2019-12-20 16:25:19 2019-12-20 16:25:39 t 1 1 205115 750 0.00 2019-12-20 16:25:04 2019-12-20 16:27:49 t 1 1 205117 748 0.00 2019-12-20 16:28:52 2019-12-20 16:29:32 t 1 1 205122 637 0.00 2019-12-20 16:10:45 2019-12-20 16:32:47 t 1 1 205123 679 0.00 2019-12-20 16:32:48 2019-12-20 16:33:03 t 1 1 205130 679 0.00 2019-12-20 16:35:53 2019-12-20 16:36:01 t 1 1 205135 679 0.00 2019-12-20 16:37:02 2019-12-20 16:37:51 t 1 1 205136 637 0.00 2019-12-20 16:34:33 2019-12-20 16:38:31 t 1 1 205141 637 0.00 2019-12-20 16:38:41 2019-12-20 16:43:07 t 1 1 205142 679 0.00 2019-12-20 16:42:10 2019-12-20 16:43:28 t 1 1 205146 679 0.00 2019-12-20 16:53:10 2019-12-20 16:53:17 t 1 1 205156 637 0.00 2019-12-20 16:55:59 2019-12-20 16:58:44 t 1 1 205157 679 0.00 2019-12-20 16:58:54 2019-12-20 16:58:56 t 1 1 205161 679 0.00 2019-12-20 16:59:52 2019-12-20 17:00:00 t 1 1 205163 691 0.00 2019-12-20 16:59:25 2019-12-20 17:00:32 t 1 1 205164 679 0.00 2019-12-20 17:01:01 2019-12-20 17:01:01 f 1 1 205165 562 0.00 2019-12-20 17:01:15 2019-12-20 17:01:28 t 1 1 205168 750 0.00 2019-12-20 17:00:47 2019-12-20 17:03:38 t 1 1 205170 625 0.00 2019-12-20 16:57:49 2019-12-20 17:06:39 t 1 1 205173 748 0.00 2019-12-20 16:36:40 2019-12-20 17:08:47 t 1 1 205178 625 0.00 2019-12-20 17:11:55 2019-12-20 17:13:01 t 1 1 205182 562 0.00 2019-12-20 17:14:22 2019-12-20 17:14:36 t 1 1 205188 748 0.00 2019-12-20 17:14:35 2019-12-20 17:28:46 t 1 1 205190 611 0.00 2019-12-20 17:29:59 2019-12-20 17:32:16 t 1 1 205197 566 0.00 2019-12-20 17:17:48 2019-12-20 17:39:24 t 1 1 205199 711 0.00 2019-12-20 16:26:31 2019-12-20 17:43:36 t 1 1 205205 748 0.00 2019-12-20 17:47:38 2019-12-20 17:48:24 t 1 1 205207 673 0.00 2019-12-20 15:58:47 2019-12-20 17:50:49 t 1 1 205209 615 0.00 2019-12-20 17:46:39 2019-12-20 17:51:47 t 1 1 205210 481 0.00 2019-12-20 16:34:18 2019-12-20 17:54:45 t 1 1 205212 750 0.00 2019-12-20 17:06:58 2019-12-20 17:55:40 t 1 1 205215 754 0.00 2019-12-20 11:34:23 2019-12-20 17:56:18 t 1 2 205217 637 0.00 2019-12-20 17:52:33 2019-12-20 17:56:49 t 1 1 205218 748 0.00 2019-12-20 17:56:42 2019-12-20 17:58:32 t 1 1 205221 748 0.00 2019-12-20 18:00:24 2019-12-20 18:00:58 t 1 1 205223 748 0.00 2019-12-20 18:02:52 2019-12-20 18:03:25 t 1 1 205226 744 0.00 2019-12-20 17:36:56 2019-12-20 18:05:27 t 1 1 205227 748 0.00 2019-12-20 18:05:45 2019-12-20 18:06:02 t 1 1 205228 562 0.00 2019-12-20 18:06:16 2019-12-20 18:06:31 t 1 1 205231 562 0.00 2019-12-20 18:09:48 2019-12-20 18:10:29 t 1 1 205233 673 0.00 2019-12-20 18:01:48 2019-12-20 18:11:06 t 1 1 205238 562 0.00 2019-12-20 18:17:48 2019-12-20 18:18:01 t 1 1 205239 687 0.00 2019-12-20 18:14:31 2019-12-20 18:18:13 t 1 1 205241 220 0.00 2019-12-20 18:17:02 2019-12-20 18:18:54 t 1 1 205246 562 0.00 2019-12-20 18:22:02 2019-12-20 18:22:14 t 1 1 205247 748 0.00 2019-12-20 18:20:53 2019-12-20 18:23:27 t 1 1 205252 687 0.00 2019-12-20 18:18:22 2019-12-20 18:31:02 t 1 1 205260 220 0.00 2019-12-20 18:33:06 2019-12-20 18:34:20 t 1 1 205265 625 0.00 2019-12-20 18:38:31 2019-12-20 18:39:53 t 1 1 205267 687 0.00 2019-12-20 18:31:02 2019-12-20 18:40:31 t 1 1 205274 625 0.00 2019-12-20 18:46:25 2019-12-20 18:49:36 t 1 1 205276 748 0.00 2019-12-20 18:47:40 2019-12-20 18:51:34 t 1 1 205277 566 0.00 2019-12-20 18:43:01 2019-12-20 18:52:51 t 1 1 205279 694 0.00 2019-12-20 17:56:13 2019-12-20 18:54:04 t 1 1 205282 711 0.00 2019-12-20 17:43:37 2019-12-20 18:57:56 t 1 1 205285 637 0.00 2019-12-20 18:55:41 2019-12-20 19:02:28 t 1 1 205291 691 0.00 2019-12-20 19:05:35 2019-12-20 19:06:24 t 1 1 205293 691 0.00 2019-12-20 19:06:23 2019-12-20 19:07:35 t 1 1 205294 660 0.00 2019-12-20 19:05:05 2019-12-20 19:10:08 t 1 1 205299 667 0.00 2019-12-20 19:16:00 2019-12-20 19:16:02 t 1 1 205312 748 0.00 2019-12-20 19:21:56 2019-12-20 19:28:37 t 1 1 205313 562 0.00 2019-12-20 19:28:33 2019-12-20 19:30:26 t 1 1 205314 679 0.00 2019-12-20 19:26:19 2019-12-20 19:32:10 t 1 1 205316 544 0.00 2019-12-20 19:05:30 2019-12-20 19:33:23 t 1 1 205326 562 0.00 2019-12-20 19:40:42 2019-12-20 19:41:04 t 1 1 205327 679 0.00 2019-12-20 19:32:10 2019-12-20 19:42:06 t 1 1 205328 675 0.00 2019-12-20 19:35:31 2019-12-20 19:42:12 t 1 1 205331 667 0.00 2019-12-20 19:43:24 2019-12-20 19:43:27 t 1 1 205333 691 0.00 2019-12-20 19:41:24 2019-12-20 19:43:47 t 1 1 205336 679 0.00 2019-12-20 19:46:38 2019-12-20 19:48:15 t 1 1 205343 611 0.00 2019-12-20 19:48:38 2019-12-20 19:52:17 t 1 1 205346 667 0.00 2019-12-20 19:54:28 2019-12-20 19:58:11 t 1 1 205348 591 0.00 2019-12-20 19:18:30 2019-12-20 20:01:29 t 1 1 205353 551 0.00 2019-12-20 20:02:27 2019-12-20 20:08:31 t 1 1 205356 562 0.00 2019-12-20 20:08:44 2019-12-20 20:09:36 t 1 1 205357 538 0.00 2019-12-20 20:10:00 2019-12-20 20:10:25 t 1 1 205359 566 0.00 2019-12-20 19:48:44 2019-12-20 20:11:14 t 1 1 205366 566 0.00 2019-12-20 20:11:14 2019-12-20 20:26:16 t 1 1 205372 544 0.00 2019-12-20 19:38:32 2019-12-20 20:30:39 t 1 1 205377 750 0.00 2019-12-20 19:27:30 2019-12-20 20:40:05 t 1 1 205381 516 0.00 2019-12-20 20:39:22 2019-12-20 20:43:00 t 1 1 205382 566 0.00 2019-12-20 20:26:16 2019-12-20 20:43:36 t 1 1 205383 754 0.00 2019-12-20 19:19:26 2019-12-20 20:44:58 t 1 2 205384 716 0.00 2019-12-20 19:58:08 2019-12-20 20:46:12 t 1 1 205385 591 0.00 2019-12-20 20:03:56 2019-12-20 20:47:15 t 1 1 205387 562 0.00 2019-12-20 20:51:56 2019-12-20 20:52:02 t 1 1 205391 562 0.00 2019-12-20 20:58:05 2019-12-20 20:58:28 t 1 1 205394 667 0.00 2019-12-20 21:00:38 2019-12-20 21:01:06 t 1 1 205397 625 0.00 2019-12-20 20:42:18 2019-12-20 21:02:52 t 1 1 205402 562 0.00 2019-12-20 21:11:53 2019-12-20 21:12:40 t 1 1 205096 611 0.00 2019-12-20 15:48:41 2019-12-20 15:59:47 t 1 1 205099 516 0.00 2019-12-20 15:59:55 2019-12-20 16:01:35 t 1 1 205103 748 0.00 2019-12-20 15:59:31 2019-12-20 16:08:04 t 1 1 205107 716 0.00 2019-12-20 16:01:19 2019-12-20 16:13:12 t 1 1 205114 711 0.00 2019-12-20 15:49:35 2019-12-20 16:26:31 t 1 1 205116 716 0.00 2019-12-20 16:26:37 2019-12-20 16:29:10 t 1 1 205119 679 0.00 2019-12-20 16:23:00 2019-12-20 16:31:20 t 1 1 205121 679 0.00 2019-12-20 16:32:15 2019-12-20 16:32:28 t 1 1 205125 748 0.00 2019-12-20 16:32:59 2019-12-20 16:33:32 t 1 1 205127 481 0.00 2019-12-20 16:32:21 2019-12-20 16:33:59 t 1 1 205128 679 0.00 2019-12-20 16:34:51 2019-12-20 16:34:52 t 1 1 205132 748 0.00 2019-12-20 16:34:28 2019-12-20 16:36:34 t 1 1 205134 660 0.00 2019-12-20 16:15:35 2019-12-20 16:36:49 t 1 1 205137 679 0.00 2019-12-20 16:40:12 2019-12-20 16:40:34 t 1 1 205140 679 0.00 2019-12-20 16:42:25 2019-12-20 16:42:52 t 1 1 205143 562 0.00 2019-12-20 16:43:37 2019-12-20 16:43:58 t 1 1 205145 679 0.00 2019-12-20 16:44:13 2019-12-20 16:53:04 t 1 1 205148 562 0.00 2019-12-20 16:54:25 2019-12-20 16:54:52 t 1 1 205149 679 0.00 2019-12-20 16:55:03 2019-12-20 16:55:11 t 1 1 205153 625 0.00 2019-12-20 14:52:23 2019-12-20 16:57:49 t 1 1 205155 679 0.00 2019-12-20 16:57:49 2019-12-20 16:58:31 t 1 1 205167 679 0.00 2019-12-20 17:00:42 2019-12-20 17:01:45 t 1 1 205172 591 0.00 2019-12-20 16:07:59 2019-12-20 17:06:39 t 1 1 205174 748 0.00 2019-12-20 17:08:56 2019-12-20 17:10:12 t 1 1 205177 734 0.00 2019-12-20 15:52:48 2019-12-20 17:12:45 t 1 1 205180 649 0.00 2019-12-20 17:07:21 2019-12-20 17:13:22 t 1 1 205183 566 0.00 2019-12-20 17:08:52 2019-12-20 17:15:08 t 1 1 205185 566 0.00 2019-12-20 17:15:16 2019-12-20 17:17:41 t 1 1 205192 562 0.00 2019-12-20 17:31:10 2019-12-20 17:32:55 t 1 1 205195 744 0.00 2019-12-20 13:18:28 2019-12-20 17:36:56 t 1 1 205198 748 0.00 2019-12-20 17:42:58 2019-12-20 17:43:12 t 1 1 205201 516 0.00 2019-12-20 17:27:07 2019-12-20 17:44:47 t 1 1 205203 722 0.00 2019-12-20 17:34:54 2019-12-20 17:45:38 t 1 1 205206 687 0.00 2019-12-20 17:46:39 2019-12-20 17:49:02 t 1 1 205208 637 0.00 2019-12-20 17:00:50 2019-12-20 17:51:37 t 1 1 205211 748 0.00 2019-12-20 17:48:44 2019-12-20 17:54:58 t 1 1 205213 748 0.00 2019-12-20 17:55:31 2019-12-20 17:56:05 t 1 1 205219 687 0.00 2019-12-20 17:49:21 2019-12-20 17:59:32 t 1 1 205220 566 0.00 2019-12-20 17:39:40 2019-12-20 18:00:22 t 1 1 205225 722 0.00 2019-12-20 17:45:38 2019-12-20 18:03:40 t 1 1 205237 744 0.00 2019-12-20 18:05:33 2019-12-20 18:16:21 t 1 1 205240 591 0.00 2019-12-20 17:37:01 2019-12-20 18:18:41 t 1 1 205245 673 0.00 2019-12-20 18:19:01 2019-12-20 18:20:27 t 1 1 205248 562 0.00 2019-12-20 18:27:34 2019-12-20 18:27:44 t 1 1 205249 679 0.00 2019-12-20 18:13:37 2019-12-20 18:28:39 t 1 1 205255 566 0.00 2019-12-20 18:19:47 2019-12-20 18:32:26 t 1 1 205257 679 0.00 2019-12-20 18:28:39 2019-12-20 18:32:30 t 1 1 205259 673 0.00 2019-12-20 18:21:17 2019-12-20 18:33:48 t 1 1 205261 625 0.00 2019-12-20 17:14:04 2019-12-20 18:34:38 t 1 1 205263 562 0.00 2019-12-20 18:34:00 2019-12-20 18:35:47 t 1 1 205264 625 0.00 2019-12-20 18:34:38 2019-12-20 18:37:45 t 1 1 205266 625 0.00 2019-12-20 18:38:59 2019-12-20 18:40:11 t 1 1 205268 566 0.00 2019-12-20 18:32:26 2019-12-20 18:43:01 t 1 1 205270 625 0.00 2019-12-20 18:43:03 2019-12-20 18:44:06 t 1 1 205271 660 0.00 2019-12-20 17:56:50 2019-12-20 18:44:15 t 1 1 205272 625 0.00 2019-12-20 18:44:22 2019-12-20 18:46:25 t 1 1 205275 740 0.00 2019-12-20 18:41:20 2019-12-20 18:51:08 t 1 1 205278 637 0.00 2019-12-20 18:49:49 2019-12-20 18:53:07 t 1 1 205280 637 0.00 2019-12-20 18:53:37 2019-12-20 18:55:28 t 1 1 205281 562 0.00 2019-12-20 18:57:24 2019-12-20 18:57:33 t 1 1 205283 566 0.00 2019-12-20 18:52:51 2019-12-20 19:01:31 t 1 1 205296 679 0.00 2019-12-20 18:57:07 2019-12-20 19:13:29 t 1 1 205301 591 0.00 2019-12-20 18:21:25 2019-12-20 19:18:30 t 1 1 205303 538 0.00 2019-12-20 18:54:08 2019-12-20 19:20:19 t 1 1 205305 625 0.00 2019-12-20 19:14:42 2019-12-20 19:22:26 t 1 1 205309 679 0.00 2019-12-20 19:13:29 2019-12-20 19:26:19 t 1 1 205310 562 0.00 2019-12-20 19:26:26 2019-12-20 19:26:44 t 1 1 205315 562 0.00 2019-12-20 19:33:00 2019-12-20 19:33:19 t 1 1 205318 544 0.00 2019-12-20 19:33:23 2019-12-20 19:34:46 t 1 1 205321 392 0.00 2019-12-20 19:09:28 2019-12-20 19:36:28 t 1 2 205322 566 0.00 2019-12-20 19:23:25 2019-12-20 19:37:13 t 1 1 205325 667 0.00 2019-12-20 19:22:04 2019-12-20 19:38:27 t 1 1 205332 667 0.00 2019-12-20 19:43:37 2019-12-20 19:43:39 t 1 1 205335 679 0.00 2019-12-20 19:42:06 2019-12-20 19:46:38 t 1 1 205338 667 0.00 2019-12-20 19:46:39 2019-12-20 19:48:28 t 1 1 205342 716 0.00 2019-12-20 19:45:26 2019-12-20 19:50:15 t 1 1 205344 637 0.00 2019-12-20 19:54:53 2019-12-20 19:56:09 t 1 1 205345 716 0.00 2019-12-20 19:50:15 2019-12-20 19:58:09 t 1 1 205347 562 0.00 2019-12-20 19:58:42 2019-12-20 19:59:06 t 1 1 205350 562 0.00 2019-12-20 20:06:41 2019-12-20 20:06:54 t 1 1 205352 667 0.00 2019-12-20 20:05:42 2019-12-20 20:07:11 t 1 1 205355 516 0.00 2019-12-20 20:08:29 2019-12-20 20:09:32 t 1 1 205358 667 0.00 2019-12-20 20:09:50 2019-12-20 20:10:29 t 1 1 205360 562 0.00 2019-12-20 20:11:07 2019-12-20 20:12:18 t 1 1 205362 562 0.00 2019-12-20 20:13:02 2019-12-20 20:15:34 t 1 1 205367 683 0.00 2019-12-20 20:11:29 2019-12-20 20:26:45 t 1 1 205370 667 0.00 2019-12-20 20:14:19 2019-12-20 20:28:03 t 1 2 205371 687 0.00 2019-12-20 20:18:40 2019-12-20 20:28:54 t 1 1 205373 562 0.00 2019-12-20 20:34:01 2019-12-20 20:34:29 t 1 1 205374 538 0.00 2019-12-20 20:10:29 2019-12-20 20:36:50 t 1 1 205376 516 0.00 2019-12-20 20:24:42 2019-12-20 20:39:22 t 1 1 205378 633 0.00 2019-12-20 20:38:33 2019-12-20 20:41:02 t 1 1 205379 562 0.00 2019-12-20 20:41:23 2019-12-20 20:41:48 t 1 1 205388 566 0.00 2019-12-20 20:43:36 2019-12-20 20:52:12 t 1 1 205390 679 0.00 2019-12-20 20:55:24 2019-12-20 20:57:11 t 1 1 205395 481 0.00 2019-12-20 17:54:45 2019-12-20 21:01:39 t 1 1 205398 566 0.00 2019-12-20 20:52:12 2019-12-20 21:04:34 t 1 1 205399 562 0.00 2019-12-20 21:08:46 2019-12-20 21:09:09 t 1 1 205401 750 0.00 2019-12-20 21:10:24 2019-12-20 21:12:32 t 1 1 205404 625 0.00 2019-12-20 21:06:05 2019-12-20 21:15:54 t 1 1 205411 667 0.00 2019-12-20 21:19:56 2019-12-20 21:22:11 t 1 1 205413 566 0.00 2019-12-20 21:11:30 2019-12-20 21:25:33 t 1 1 205416 625 0.00 2019-12-20 21:20:55 2019-12-20 21:29:22 t 1 1 205418 562 0.00 2019-12-20 21:31:45 2019-12-20 21:32:48 t 1 1 205421 667 0.00 2019-12-20 21:28:54 2019-12-20 21:37:44 t 1 1 205424 566 0.00 2019-12-20 21:25:33 2019-12-20 21:39:52 t 1 1 205428 667 0.00 2019-12-20 21:39:14 2019-12-20 21:41:08 t 1 1 205307 566 0.00 2019-12-20 19:14:00 2019-12-20 19:23:16 t 1 1 205308 694 0.00 2019-12-20 19:04:49 2019-12-20 19:24:58 t 1 1 205311 750 0.00 2019-12-20 19:03:55 2019-12-20 19:27:30 t 1 1 205317 637 0.00 2019-12-20 19:17:01 2019-12-20 19:34:45 t 1 1 205319 562 0.00 2019-12-20 19:34:39 2019-12-20 19:35:25 t 1 1 205320 734 0.00 2019-12-20 19:10:39 2019-12-20 19:36:25 t 1 1 205323 562 0.00 2019-12-20 19:37:03 2019-12-20 19:37:39 t 1 1 205324 564 0.00 2019-12-20 18:00:27 2019-12-20 19:38:12 t 1 1 205329 734 0.00 2019-12-20 19:40:36 2019-12-20 19:42:22 t 1 1 205330 667 0.00 2019-12-20 19:38:27 2019-12-20 19:43:16 t 1 1 205334 667 0.00 2019-12-20 19:44:31 2019-12-20 19:46:30 t 1 1 205337 562 0.00 2019-12-20 19:48:06 2019-12-20 19:48:25 t 1 1 205339 566 0.00 2019-12-20 19:37:13 2019-12-20 19:48:44 t 1 1 205340 709 0.00 2019-12-20 19:45:01 2019-12-20 19:49:07 t 1 1 205341 667 0.00 2019-12-20 19:49:37 2019-12-20 19:50:10 t 1 1 205349 625 0.00 2019-12-20 19:22:26 2019-12-20 20:05:47 t 1 1 205351 625 0.00 2019-12-20 20:05:52 2019-12-20 20:07:11 t 1 1 205354 675 0.00 2019-12-20 20:03:46 2019-12-20 20:08:35 t 1 1 205361 667 0.00 2019-12-20 20:11:14 2019-12-20 20:15:31 t 1 1 205363 691 0.00 2019-12-20 20:18:47 2019-12-20 20:20:00 t 1 1 205364 673 0.00 2019-12-20 18:33:48 2019-12-20 20:22:47 t 1 1 205365 667 0.00 2019-12-20 20:21:37 2019-12-20 20:24:05 t 1 1 205368 562 0.00 2019-12-20 20:26:56 2019-12-20 20:27:04 t 1 1 205369 667 0.00 2019-12-20 20:27:43 2019-12-20 20:27:58 t 1 1 205375 633 0.00 2019-12-20 20:21:17 2019-12-20 20:38:33 t 1 1 205380 625 0.00 2019-12-20 20:10:05 2019-12-20 20:42:18 t 1 1 205386 562 0.00 2019-12-20 20:49:25 2019-12-20 20:49:42 t 1 1 205389 667 0.00 2019-12-20 20:29:29 2019-12-20 20:55:47 t 1 1 205392 667 0.00 2019-12-20 20:56:53 2019-12-20 20:58:59 t 1 1 205393 544 0.00 2019-12-20 20:30:39 2019-12-20 21:00:28 t 1 1 205396 667 0.00 2019-12-20 21:01:53 2019-12-20 21:02:04 t 1 1 205400 566 0.00 2019-12-20 21:04:34 2019-12-20 21:11:21 t 1 1 205403 562 0.00 2019-12-20 21:14:38 2019-12-20 21:15:19 t 1 1 205409 562 0.00 2019-12-20 21:21:22 2019-12-20 21:21:50 t 1 1 205414 591 0.00 2019-12-20 20:47:15 2019-12-20 21:27:33 t 1 1 205419 625 0.00 2019-12-20 21:29:22 2019-12-20 21:35:35 t 1 1 205422 562 0.00 2019-12-20 21:36:45 2019-12-20 21:38:02 t 1 1 205423 667 0.00 2019-12-20 21:37:53 2019-12-20 21:39:28 t 1 1 205425 392 0.00 2019-12-20 21:29:35 2019-12-20 21:40:01 t 1 2 205432 611 0.00 2019-12-20 21:26:07 2019-12-20 21:43:37 t 1 1 205434 667 0.00 2019-12-20 21:44:32 2019-12-20 21:45:14 t 1 1 205439 667 0.00 2019-12-20 21:48:46 2019-12-20 21:48:57 t 1 1 205441 591 0.00 2019-12-20 21:27:33 2019-12-20 21:52:39 t 1 1 205442 667 0.00 2019-12-20 21:51:07 2019-12-20 21:53:50 t 1 1 205443 566 0.00 2019-12-20 21:39:52 2019-12-20 21:54:42 t 1 1 205444 667 0.00 2019-12-20 21:53:59 2019-12-20 21:55:28 t 1 1 205445 637 0.00 2019-12-20 19:56:20 2019-12-20 21:57:44 t 1 1 205446 667 0.00 2019-12-20 22:01:25 2019-12-20 22:01:38 t 1 1 205451 667 0.00 2019-12-20 22:01:48 2019-12-20 22:05:44 t 1 1 205452 679 0.00 2019-12-20 21:49:36 2019-12-20 22:06:13 t 1 1 205454 673 0.00 2019-12-20 22:00:51 2019-12-20 22:06:36 t 1 1 205462 551 0.00 2019-12-20 22:01:59 2019-12-20 22:15:14 t 1 1 205466 744 0.00 2019-12-20 20:50:22 2019-12-20 22:21:11 t 1 1 205477 578 0.00 2019-12-20 22:27:53 2019-12-20 22:34:44 t 1 1 205479 637 0.00 2019-12-20 21:57:44 2019-12-20 22:36:18 t 1 1 205484 667 0.00 2019-12-20 22:24:53 2019-12-20 22:40:58 t 1 1 205486 625 0.00 2019-12-20 21:41:07 2019-12-20 22:41:21 t 1 1 205488 750 0.00 2019-12-20 22:40:23 2019-12-20 22:42:31 t 1 1 205492 687 0.00 2019-12-20 22:44:30 2019-12-20 22:45:45 t 1 1 205495 687 0.00 2019-12-20 22:49:48 2019-12-20 22:50:24 t 1 1 205496 687 0.00 2019-12-20 22:50:40 2019-12-20 22:51:37 t 1 1 205500 679 0.00 2019-12-20 22:24:58 2019-12-20 22:52:54 t 1 1 205504 538 0.00 2019-12-20 21:04:15 2019-12-20 22:59:34 t 1 1 205508 392 0.00 2019-12-20 22:42:48 2019-12-20 23:03:44 t 1 2 205510 481 0.00 2019-12-20 21:10:16 2019-12-20 23:07:16 t 1 1 205513 562 0.00 2019-12-20 23:10:58 2019-12-20 23:11:15 t 1 1 205519 687 0.00 2019-12-20 23:10:38 2019-12-20 23:20:52 t 1 1 205521 562 0.00 2019-12-20 23:20:47 2019-12-20 23:24:47 t 1 1 205522 516 0.00 2019-12-20 23:19:25 2019-12-20 23:25:24 t 1 1 205523 578 0.00 2019-12-20 23:20:51 2019-12-20 23:28:03 t 1 1 205526 578 0.00 2019-12-20 23:28:03 2019-12-20 23:33:22 t 1 1 205529 562 0.00 2019-12-20 23:36:57 2019-12-20 23:37:15 t 1 1 205532 637 0.00 2019-12-20 23:02:11 2019-12-20 23:39:57 t 1 1 205533 679 0.00 2019-12-20 23:39:35 2019-12-20 23:40:35 t 1 1 205536 656 0.00 2019-12-20 23:36:29 2019-12-20 23:46:56 t 1 1 205541 637 0.00 2019-12-20 23:51:40 2019-12-20 23:53:31 t 1 1 205542 687 0.00 2019-12-20 23:31:10 2019-12-20 23:54:10 t 1 1 205546 656 0.00 2019-12-20 23:46:56 2019-12-20 23:58:03 t 1 1 205547 740 0.00 2019-12-20 23:43:28 2019-12-20 23:58:10 t 1 1 205549 503 0.00 2019-12-20 23:58:16 2019-12-20 23:59:32 t 1 1 205552 740 0.00 2019-12-20 23:59:37 2019-12-21 00:01:54 t 1 1 205554 503 0.00 2019-12-21 00:00:55 2019-12-21 00:04:34 t 1 1 205558 544 0.00 2019-12-20 23:57:02 2019-12-21 00:08:16 t 1 2 205561 683 0.00 2019-12-21 00:13:43 2019-12-21 00:16:31 t 1 1 205563 562 0.00 2019-12-21 00:20:57 2019-12-21 00:21:06 t 1 1 205564 611 0.00 2019-12-21 00:06:54 2019-12-21 00:21:52 t 1 1 205569 551 0.00 2019-12-21 00:19:38 2019-12-21 00:32:08 t 1 1 205572 679 0.00 2019-12-21 00:36:46 2019-12-21 00:39:00 t 1 1 205573 679 0.00 2019-12-21 00:39:08 2019-12-21 00:39:20 t 1 1 205577 740 0.00 2019-12-21 00:30:44 2019-12-21 00:41:56 t 1 1 205580 679 0.00 2019-12-21 00:40:34 2019-12-21 00:42:42 t 1 1 205581 679 0.00 2019-12-21 00:43:12 2019-12-21 00:43:41 t 1 1 205582 673 0.00 2019-12-21 00:37:19 2019-12-21 00:45:01 t 1 1 205583 687 0.00 2019-12-21 00:46:10 2019-12-21 00:47:29 t 1 1 205589 551 0.00 2019-12-21 00:54:57 2019-12-21 00:58:32 t 1 1 205590 562 0.00 2019-12-21 01:01:30 2019-12-21 01:01:41 t 1 1 205594 687 0.00 2019-12-21 01:05:06 2019-12-21 01:09:02 t 1 1 205595 562 0.00 2019-12-21 01:09:05 2019-12-21 01:09:20 t 1 1 205605 681 0.00 2019-12-21 01:12:48 2019-12-21 01:22:52 t 1 1 205607 514 0.00 2019-12-21 01:18:27 2019-12-21 01:25:02 t 1 1 205608 687 0.00 2019-12-21 01:18:50 2019-12-21 01:25:33 t 1 1 205610 687 0.00 2019-12-21 01:25:33 2019-12-21 01:31:08 t 1 1 205611 744 0.00 2019-12-20 22:21:11 2019-12-21 01:34:28 t 1 1 205615 687 0.00 2019-12-21 01:31:08 2019-12-21 01:42:02 t 1 1 205616 687 0.00 2019-12-21 01:42:40 2019-12-21 01:42:42 t 1 1 205623 637 0.00 2019-12-20 23:58:31 2019-12-21 01:48:56 t 1 1 205631 744 0.00 2019-12-21 01:36:56 2019-12-21 02:12:51 t 1 1 205405 667 0.00 2019-12-20 21:05:20 2019-12-20 21:18:00 t 1 1 205406 673 0.00 2019-12-20 20:46:38 2019-12-20 21:19:02 t 1 1 205407 687 0.00 2019-12-20 20:37:34 2019-12-20 21:20:03 t 1 1 205408 687 0.00 2019-12-20 21:20:13 2019-12-20 21:21:48 t 1 1 205410 740 0.00 2019-12-20 21:06:36 2019-12-20 21:22:00 t 1 1 205412 544 0.00 2019-12-20 21:17:19 2019-12-20 21:24:31 t 1 1 205415 220 0.00 2019-12-20 18:42:12 2019-12-20 21:27:44 t 1 1 205417 562 0.00 2019-12-20 21:29:36 2019-12-20 21:29:48 t 1 1 205420 673 0.00 2019-12-20 21:35:53 2019-12-20 21:37:05 t 1 1 205426 673 0.00 2019-12-20 21:38:47 2019-12-20 21:40:12 t 1 1 205427 625 0.00 2019-12-20 21:35:35 2019-12-20 21:41:07 t 1 1 205429 635 0.00 2019-12-20 17:17:32 2019-12-20 21:42:07 t 1 1 205431 734 0.00 2019-12-20 20:52:56 2019-12-20 21:43:37 t 1 1 205435 562 0.00 2019-12-20 21:45:23 2019-12-20 21:45:29 t 1 1 205438 740 0.00 2019-12-20 21:22:00 2019-12-20 21:47:06 t 1 1 205447 551 0.00 2019-12-20 20:08:49 2019-12-20 22:01:59 t 1 1 205449 562 0.00 2019-12-20 22:02:10 2019-12-20 22:02:22 t 1 1 205450 562 0.00 2019-12-20 22:04:17 2019-12-20 22:05:28 t 1 1 205453 627 0.00 2019-12-20 21:47:35 2019-12-20 22:06:28 t 1 1 205455 667 0.00 2019-12-20 22:06:09 2019-12-20 22:06:47 t 1 1 205458 687 0.00 2019-12-20 22:09:16 2019-12-20 22:09:34 t 1 1 205459 566 0.00 2019-12-20 21:54:42 2019-12-20 22:10:14 t 1 1 205461 687 0.00 2019-12-20 22:09:41 2019-12-20 22:10:56 t 1 1 205467 635 0.00 2019-12-20 22:12:02 2019-12-20 22:21:46 t 1 1 205469 754 0.00 2019-12-20 20:49:40 2019-12-20 22:24:45 t 1 2 205471 740 0.00 2019-12-20 21:48:27 2019-12-20 22:27:06 t 1 1 205480 711 0.00 2019-12-20 18:57:56 2019-12-20 22:37:15 t 1 1 205481 578 0.00 2019-12-20 22:34:44 2019-12-20 22:39:21 t 1 1 205483 750 0.00 2019-12-20 21:12:40 2019-12-20 22:40:23 t 1 1 205485 667 0.00 2019-12-20 22:41:08 2019-12-20 22:41:20 t 1 1 205487 687 0.00 2019-12-20 22:41:10 2019-12-20 22:42:30 t 1 1 205489 687 0.00 2019-12-20 22:43:02 2019-12-20 22:43:50 t 1 1 205490 687 0.00 2019-12-20 22:44:04 2019-12-20 22:44:19 t 1 1 205493 667 0.00 2019-12-20 22:41:45 2019-12-20 22:48:34 t 1 1 205494 627 0.00 2019-12-20 22:48:48 2019-12-20 22:49:07 t 1 1 205499 637 0.00 2019-12-20 22:39:28 2019-12-20 22:52:50 t 1 1 205501 551 0.00 2019-12-20 22:31:59 2019-12-20 22:54:20 t 1 1 205502 485 0.00 2019-12-20 22:33:35 2019-12-20 22:55:01 t 1 1 205505 687 0.00 2019-12-20 22:57:58 2019-12-20 23:00:48 t 1 1 205507 562 0.00 2019-12-20 23:03:08 2019-12-20 23:03:15 t 1 1 205511 551 0.00 2019-12-20 22:54:20 2019-12-20 23:10:17 t 1 1 205512 679 0.00 2019-12-20 22:57:02 2019-12-20 23:10:41 t 1 1 205515 578 0.00 2019-12-20 22:39:21 2019-12-20 23:13:48 t 1 1 205520 656 0.00 2019-12-20 23:14:45 2019-12-20 23:21:59 t 1 1 205528 656 0.00 2019-12-20 23:21:59 2019-12-20 23:36:29 t 1 1 205534 637 0.00 2019-12-20 23:40:01 2019-12-20 23:41:43 t 1 1 205535 740 0.00 2019-12-20 23:24:25 2019-12-20 23:42:47 t 1 1 205537 503 0.00 2019-12-20 23:42:42 2019-12-20 23:48:16 t 1 1 205538 562 0.00 2019-12-20 23:49:06 2019-12-20 23:49:15 t 1 1 205539 711 0.00 2019-12-20 22:37:21 2019-12-20 23:51:12 t 1 1 205543 637 0.00 2019-12-20 23:53:15 2019-12-20 23:54:19 t 1 1 205548 637 0.00 2019-12-20 23:56:45 2019-12-20 23:58:18 t 1 1 205551 687 0.00 2019-12-20 23:54:18 2019-12-21 00:01:14 t 1 1 205555 673 0.00 2019-12-21 00:03:57 2019-12-21 00:04:53 t 1 1 205562 551 0.00 2019-12-21 00:05:37 2019-12-21 00:19:38 t 1 1 205565 392 0.00 2019-12-20 23:55:26 2019-12-21 00:22:43 t 1 2 205567 740 0.00 2019-12-21 00:03:27 2019-12-21 00:27:53 t 1 1 205570 754 0.00 2019-12-20 22:42:21 2019-12-21 00:34:54 t 1 2 205571 679 0.00 2019-12-21 00:10:26 2019-12-21 00:36:32 t 1 1 205574 679 0.00 2019-12-21 00:39:30 2019-12-21 00:39:33 t 1 1 205575 679 0.00 2019-12-21 00:40:06 2019-12-21 00:40:10 t 1 1 205578 622 0.00 2019-12-21 00:12:40 2019-12-21 00:42:38 t 1 1 205585 687 0.00 2019-12-21 00:47:55 2019-12-21 00:52:03 t 1 1 205588 551 0.00 2019-12-21 00:42:40 2019-12-21 00:54:57 t 1 1 205602 611 0.00 2019-12-21 00:22:58 2019-12-21 01:19:32 t 1 1 205606 740 0.00 2019-12-21 01:08:57 2019-12-21 01:22:56 t 1 1 205609 562 0.00 2019-12-21 01:27:24 2019-12-21 01:27:46 t 1 1 205612 740 0.00 2019-12-21 01:28:06 2019-12-21 01:37:41 t 1 1 205614 740 0.00 2019-12-21 01:38:11 2019-12-21 01:41:46 t 1 1 205618 503 0.00 2019-12-21 01:03:55 2019-12-21 01:42:57 t 1 1 205621 679 0.00 2019-12-21 00:44:04 2019-12-21 01:46:42 t 1 1 205622 562 0.00 2019-12-21 01:48:13 2019-12-21 01:48:34 t 1 1 205628 562 0.00 2019-12-21 02:02:22 2019-12-21 02:02:31 t 1 1 205629 679 0.00 2019-12-21 01:56:44 2019-12-21 02:06:59 t 1 1 205630 687 0.00 2019-12-21 01:45:54 2019-12-21 02:10:38 t 1 1 205634 687 0.00 2019-12-21 02:20:22 2019-12-21 02:22:03 t 1 1 205635 562 0.00 2019-12-21 02:23:40 2019-12-21 02:23:57 t 1 1 205636 687 0.00 2019-12-21 02:22:45 2019-12-21 02:26:06 t 1 1 205637 694 0.00 2019-12-20 22:02:01 2019-12-21 02:26:38 t 1 1 205638 562 0.00 2019-12-21 02:31:03 2019-12-21 02:31:09 t 1 1 205640 637 0.00 2019-12-21 01:48:56 2019-12-21 02:38:24 t 1 1 205641 687 0.00 2019-12-21 02:35:22 2019-12-21 02:40:18 t 1 1 205644 562 0.00 2019-12-21 02:49:09 2019-12-21 02:49:30 t 1 1 205651 562 0.00 2019-12-21 03:18:32 2019-12-21 03:18:42 t 1 1 205654 562 0.00 2019-12-21 03:39:50 2019-12-21 03:40:09 t 1 1 205659 562 0.00 2019-12-21 04:01:28 2019-12-21 04:01:43 t 1 1 205673 562 0.00 2019-12-21 05:45:34 2019-12-21 05:46:02 t 1 1 205674 562 0.00 2019-12-21 05:56:26 2019-12-21 05:56:53 t 1 1 205675 562 0.00 2019-12-21 06:07:17 2019-12-21 06:07:32 t 1 1 205682 744 0.00 2019-12-21 04:31:41 2019-12-21 06:44:18 t 1 1 205688 562 0.00 2019-12-21 07:09:01 2019-12-21 07:09:16 t 1 1 205691 734 0.00 2019-12-21 07:06:25 2019-12-21 07:19:10 t 1 1 205693 681 0.00 2019-12-21 02:01:11 2019-12-21 07:23:27 t 1 1 205700 615 0.00 2019-12-21 07:39:51 2019-12-21 07:40:54 t 1 1 205701 562 0.00 2019-12-21 07:41:12 2019-12-21 07:41:35 t 1 1 205703 615 0.00 2019-12-21 07:50:22 2019-12-21 07:52:02 t 1 1 205713 675 0.00 2019-12-21 07:52:09 2019-12-21 08:11:30 t 1 1 205714 687 0.00 2019-12-21 08:07:43 2019-12-21 08:18:43 t 1 1 205716 562 0.00 2019-12-21 08:22:32 2019-12-21 08:23:22 t 1 1 205717 687 0.00 2019-12-21 08:20:16 2019-12-21 08:24:43 t 1 1 205719 538 0.00 2019-12-21 08:18:54 2019-12-21 08:25:19 t 1 1 205722 740 0.00 2019-12-21 08:18:12 2019-12-21 08:32:32 t 1 1 205725 562 0.00 2019-12-21 08:26:16 2019-12-21 08:36:38 t 1 1 205727 562 0.00 2019-12-21 08:38:53 2019-12-21 08:38:59 t 1 1 205728 562 0.00 2019-12-21 08:40:42 2019-12-21 08:42:35 t 1 1 205730 635 0.00 2019-12-21 08:47:25 2019-12-21 08:48:41 t 1 1 205732 562 0.00 2019-12-21 08:49:29 2019-12-21 08:49:45 t 1 1 205430 627 0.00 2019-12-20 21:40:57 2019-12-20 21:42:39 t 1 1 205433 667 0.00 2019-12-20 21:43:14 2019-12-20 21:43:43 t 1 1 205436 627 0.00 2019-12-20 21:45:40 2019-12-20 21:45:58 t 1 1 205437 459 0.00 2019-12-20 21:46:07 2019-12-20 21:46:08 t 1 2 205440 562 0.00 2019-12-20 21:50:45 2019-12-20 21:51:47 t 1 1 205448 694 0.00 2019-12-20 19:24:58 2019-12-20 22:02:01 t 1 1 205456 687 0.00 2019-12-20 22:06:39 2019-12-20 22:09:15 t 1 1 205457 562 0.00 2019-12-20 22:09:19 2019-12-20 22:09:25 t 1 1 205460 392 0.00 2019-12-20 21:44:30 2019-12-20 22:10:40 t 1 2 205463 562 0.00 2019-12-20 22:18:43 2019-12-20 22:18:51 t 1 1 205464 667 0.00 2019-12-20 22:12:41 2019-12-20 22:19:15 t 1 1 205465 667 0.00 2019-12-20 22:19:38 2019-12-20 22:21:02 t 1 1 205468 566 0.00 2019-12-20 22:10:14 2019-12-20 22:22:55 t 1 1 205470 679 0.00 2019-12-20 22:06:13 2019-12-20 22:24:58 t 1 1 205472 578 0.00 2019-12-20 20:12:38 2019-12-20 22:27:53 t 1 1 205473 562 0.00 2019-12-20 22:29:21 2019-12-20 22:29:36 t 1 1 205474 709 0.00 2019-12-20 22:12:38 2019-12-20 22:30:21 t 1 1 205475 551 0.00 2019-12-20 22:15:14 2019-12-20 22:31:59 t 1 1 205476 562 0.00 2019-12-20 22:30:45 2019-12-20 22:32:28 t 1 1 205478 562 0.00 2019-12-20 22:35:13 2019-12-20 22:35:46 t 1 1 205482 637 0.00 2019-12-20 22:38:26 2019-12-20 22:39:27 t 1 1 205491 544 0.00 2019-12-20 22:29:47 2019-12-20 22:44:33 t 1 1 205497 667 0.00 2019-12-20 22:49:40 2019-12-20 22:51:42 t 1 1 205498 562 0.00 2019-12-20 22:52:22 2019-12-20 22:52:32 t 1 1 205503 740 0.00 2019-12-20 22:53:36 2019-12-20 22:56:05 t 1 1 205506 687 0.00 2019-12-20 23:01:31 2019-12-20 23:02:33 t 1 1 205509 485 0.00 2019-12-20 22:54:55 2019-12-20 23:06:08 t 1 1 205514 625 0.00 2019-12-20 22:42:21 2019-12-20 23:11:51 t 1 1 205516 679 0.00 2019-12-20 23:10:41 2019-12-20 23:19:35 t 1 1 205517 562 0.00 2019-12-20 23:19:45 2019-12-20 23:20:04 t 1 1 205518 578 0.00 2019-12-20 23:13:48 2019-12-20 23:20:51 t 1 1 205524 611 0.00 2019-12-20 22:41:02 2019-12-20 23:28:34 t 1 1 205525 679 0.00 2019-12-20 23:19:35 2019-12-20 23:30:38 t 1 1 205527 516 0.00 2019-12-20 23:25:23 2019-12-20 23:33:50 t 1 1 205530 562 0.00 2019-12-20 23:38:24 2019-12-20 23:38:42 t 1 1 205531 679 0.00 2019-12-20 23:30:38 2019-12-20 23:39:35 t 1 1 205540 392 0.00 2019-12-20 23:33:15 2019-12-20 23:51:50 t 1 2 205544 392 0.00 2019-12-20 23:53:42 2019-12-20 23:54:47 t 1 2 205545 673 0.00 2019-12-20 23:54:39 2019-12-20 23:55:44 t 1 1 205550 503 0.00 2019-12-20 23:59:31 2019-12-21 00:00:56 t 1 1 205553 673 0.00 2019-12-21 00:03:15 2019-12-21 00:03:58 t 1 1 205556 551 0.00 2019-12-20 23:10:17 2019-12-21 00:05:37 t 1 1 205557 220 0.00 2019-12-20 20:10:17 2019-12-21 00:06:10 t 1 2 205559 673 0.00 2019-12-21 00:04:52 2019-12-21 00:08:45 t 1 1 205560 679 0.00 2019-12-20 23:39:41 2019-12-21 00:10:26 t 1 1 205566 611 0.00 2019-12-21 00:21:51 2019-12-21 00:22:58 t 1 1 205568 562 0.00 2019-12-21 00:31:30 2019-12-21 00:31:46 t 1 1 205576 220 0.00 2019-12-20 22:18:57 2019-12-21 00:40:51 t 1 1 205579 551 0.00 2019-12-21 00:32:08 2019-12-21 00:42:40 t 1 1 205584 673 0.00 2019-12-21 00:45:01 2019-12-21 00:51:11 t 1 1 205586 740 0.00 2019-12-21 00:43:27 2019-12-21 00:52:21 t 1 1 205587 562 0.00 2019-12-21 00:52:56 2019-12-21 00:54:28 t 1 1 205591 514 0.00 2019-12-21 00:53:51 2019-12-21 01:02:06 t 1 1 205592 681 0.00 2019-12-21 00:36:46 2019-12-21 01:02:40 t 1 1 205593 622 0.00 2019-12-21 00:42:38 2019-12-21 01:04:27 t 1 1 205596 392 0.00 2019-12-21 00:59:51 2019-12-21 01:09:39 t 1 2 205597 514 0.00 2019-12-21 01:02:07 2019-12-21 01:11:52 t 1 1 205598 681 0.00 2019-12-21 01:02:40 2019-12-21 01:12:48 t 1 1 205599 687 0.00 2019-12-21 01:13:04 2019-12-21 01:14:10 t 1 1 205600 687 0.00 2019-12-21 01:14:22 2019-12-21 01:16:04 t 1 1 205601 514 0.00 2019-12-21 01:11:52 2019-12-21 01:18:27 t 1 1 205603 562 0.00 2019-12-21 01:19:44 2019-12-21 01:20:06 t 1 1 205604 392 0.00 2019-12-21 01:18:25 2019-12-21 01:21:21 t 1 2 205613 562 0.00 2019-12-21 01:38:10 2019-12-21 01:38:43 t 1 1 205617 538 0.00 2019-12-21 00:42:57 2019-12-21 01:42:56 t 1 1 205619 681 0.00 2019-12-21 01:22:52 2019-12-21 01:44:07 t 1 1 205620 503 0.00 2019-12-21 01:42:57 2019-12-21 01:44:46 t 1 1 205624 562 0.00 2019-12-21 01:54:34 2019-12-21 01:54:55 t 1 1 205625 679 0.00 2019-12-21 01:46:43 2019-12-21 01:56:44 t 1 1 205626 564 0.00 2019-12-20 20:11:54 2019-12-21 01:58:05 t 1 1 205627 681 0.00 2019-12-21 01:44:07 2019-12-21 02:01:11 t 1 1 205632 562 0.00 2019-12-21 02:12:52 2019-12-21 02:13:16 t 1 1 205633 687 0.00 2019-12-21 02:10:38 2019-12-21 02:19:10 t 1 1 205639 687 0.00 2019-12-21 02:26:21 2019-12-21 02:33:04 t 1 1 205642 687 0.00 2019-12-21 02:40:48 2019-12-21 02:40:51 t 1 1 205643 562 0.00 2019-12-21 02:41:37 2019-12-21 02:41:56 t 1 1 205646 514 0.00 2019-12-21 01:25:02 2019-12-21 02:58:08 t 1 1 205648 562 0.00 2019-12-21 03:07:39 2019-12-21 03:07:57 t 1 1 205650 744 0.00 2019-12-21 02:15:17 2019-12-21 03:17:33 t 1 1 205660 687 0.00 2019-12-21 03:57:32 2019-12-21 04:04:25 t 1 1 205662 744 0.00 2019-12-21 03:59:46 2019-12-21 04:17:10 t 1 1 205663 562 0.00 2019-12-21 04:22:52 2019-12-21 04:23:02 t 1 1 205664 744 0.00 2019-12-21 04:20:14 2019-12-21 04:31:38 t 1 1 205665 562 0.00 2019-12-21 04:33:35 2019-12-21 04:33:45 t 1 1 205666 562 0.00 2019-12-21 04:44:15 2019-12-21 04:44:23 t 1 1 205677 562 0.00 2019-12-21 06:18:08 2019-12-21 06:18:15 t 1 1 205679 220 0.00 2019-12-21 06:29:58 2019-12-21 06:31:03 t 1 2 205681 675 0.00 2019-12-21 06:36:04 2019-12-21 06:42:59 t 1 1 205686 516 0.00 2019-12-21 06:52:15 2019-12-21 07:05:29 t 1 1 205687 694 0.00 2019-12-21 02:26:38 2019-12-21 07:08:39 t 1 1 205690 675 0.00 2019-12-21 06:45:27 2019-12-21 07:12:57 t 1 1 205692 562 0.00 2019-12-21 07:19:43 2019-12-21 07:20:05 t 1 1 205698 675 0.00 2019-12-21 07:32:09 2019-12-21 07:36:54 t 1 1 205699 625 0.00 2019-12-21 05:25:01 2019-12-21 07:37:17 t 1 1 205707 687 0.00 2019-12-21 07:56:38 2019-12-21 08:04:29 t 1 1 205708 687 0.00 2019-12-21 08:05:24 2019-12-21 08:05:25 t 1 1 205709 625 0.00 2019-12-21 07:37:23 2019-12-21 08:06:36 t 1 1 205724 637 0.00 2019-12-21 07:01:29 2019-12-21 08:32:48 t 1 1 205726 611 0.00 2019-12-21 08:36:02 2019-12-21 08:38:56 t 1 1 205733 591 0.00 2019-12-21 08:17:54 2019-12-21 08:56:31 t 1 1 205734 687 0.00 2019-12-21 08:58:21 2019-12-21 09:00:01 t 1 1 205735 562 0.00 2019-12-21 09:00:11 2019-12-21 09:00:29 t 1 1 205737 635 0.00 2019-12-21 08:49:44 2019-12-21 09:02:39 t 1 1 205738 562 0.00 2019-12-21 09:11:03 2019-12-21 09:11:10 t 1 1 205739 631 0.00 2019-12-21 09:16:23 2019-12-21 09:17:09 t 1 1 205741 562 0.00 2019-12-21 09:20:10 2019-12-21 09:20:57 t 1 1 205743 611 0.00 2019-12-21 09:21:27 2019-12-21 09:29:36 t 1 1 205645 687 0.00 2019-12-21 02:42:07 2019-12-21 02:54:59 t 1 1 205647 562 0.00 2019-12-21 02:59:57 2019-12-21 03:00:15 t 1 1 205649 687 0.00 2019-12-21 02:54:59 2019-12-21 03:10:42 t 1 1 205652 562 0.00 2019-12-21 03:29:03 2019-12-21 03:29:23 t 1 1 205653 744 0.00 2019-12-21 03:19:45 2019-12-21 03:34:02 t 1 1 205655 562 0.00 2019-12-21 03:42:27 2019-12-21 03:42:40 t 1 1 205656 562 0.00 2019-12-21 03:50:39 2019-12-21 03:50:54 t 1 1 205657 687 0.00 2019-12-21 03:10:42 2019-12-21 03:57:32 t 1 1 205658 744 0.00 2019-12-21 03:34:05 2019-12-21 03:59:46 t 1 1 205661 562 0.00 2019-12-21 04:12:04 2019-12-21 04:12:20 t 1 1 205667 562 0.00 2019-12-21 04:54:59 2019-12-21 04:55:07 t 1 1 205668 562 0.00 2019-12-21 05:05:29 2019-12-21 05:05:55 t 1 1 205669 562 0.00 2019-12-21 05:13:14 2019-12-21 05:13:31 t 1 1 205670 562 0.00 2019-12-21 05:23:55 2019-12-21 05:24:18 t 1 1 205671 562 0.00 2019-12-21 05:34:42 2019-12-21 05:35:03 t 1 1 205672 220 0.00 2019-12-21 05:38:16 2019-12-21 05:40:39 t 1 2 205676 514 0.00 2019-12-21 02:58:08 2019-12-21 06:15:01 t 1 1 205678 562 0.00 2019-12-21 06:26:14 2019-12-21 06:26:21 t 1 1 205680 562 0.00 2019-12-21 06:36:47 2019-12-21 06:37:11 t 1 1 205683 562 0.00 2019-12-21 06:47:35 2019-12-21 06:47:51 t 1 1 205684 615 0.00 2019-12-21 06:44:33 2019-12-21 06:51:50 t 1 1 205685 562 0.00 2019-12-21 06:58:13 2019-12-21 06:58:37 t 1 1 205689 694 0.00 2019-12-21 07:08:39 2019-12-21 07:09:18 t 1 1 205694 562 0.00 2019-12-21 07:30:30 2019-12-21 07:30:48 t 1 1 205695 562 0.00 2019-12-21 07:31:31 2019-12-21 07:31:42 t 1 1 205696 538 0.00 2019-12-21 01:43:03 2019-12-21 07:34:25 t 1 1 205697 694 0.00 2019-12-21 07:24:05 2019-12-21 07:36:27 t 1 1 205702 591 0.00 2019-12-21 07:36:56 2019-12-21 07:49:38 t 1 1 205704 562 0.00 2019-12-21 07:52:06 2019-12-21 07:52:12 t 1 1 205705 591 0.00 2019-12-21 07:51:03 2019-12-21 07:58:21 t 1 1 205706 562 0.00 2019-12-21 08:02:37 2019-12-21 08:02:56 t 1 1 205710 687 0.00 2019-12-21 08:05:48 2019-12-21 08:06:42 t 1 1 205711 740 0.00 2019-12-21 07:55:21 2019-12-21 08:07:55 t 1 1 205712 562 0.00 2019-12-21 08:10:24 2019-12-21 08:10:50 t 1 1 205715 562 0.00 2019-12-21 08:21:15 2019-12-21 08:21:42 t 1 1 205718 562 0.00 2019-12-21 08:24:04 2019-12-21 08:24:45 t 1 1 205720 687 0.00 2019-12-21 08:25:52 2019-12-21 08:29:43 t 1 1 205721 675 0.00 2019-12-21 08:28:27 2019-12-21 08:31:42 t 1 1 205723 635 0.00 2019-12-21 08:26:18 2019-12-21 08:32:47 t 1 1 205729 687 0.00 2019-12-21 08:46:57 2019-12-21 08:47:02 t 1 1 205731 740 0.00 2019-12-21 08:32:49 2019-12-21 08:49:05 t 1 1 205736 740 0.00 2019-12-21 08:49:05 2019-12-21 09:00:30 t 1 1 205740 724 0.00 2019-12-21 08:33:11 2019-12-21 09:20:53 t 1 1 205742 637 0.00 2019-12-21 08:32:48 2019-12-21 09:27:55 t 1 1 205744 637 0.00 2019-12-21 09:28:53 2019-12-21 09:29:46 t 1 1 205745 562 0.00 2019-12-21 09:30:38 2019-12-21 09:31:52 t 1 1 205746 709 0.00 2019-12-21 09:20:19 2019-12-21 09:32:22 t 1 1 205747 615 0.00 2019-12-21 09:25:15 2019-12-21 09:32:29 t 1 1 205748 675 0.00 2019-12-21 09:30:40 2019-12-21 09:32:43 t 1 1 205749 562 0.00 2019-12-21 09:33:13 2019-12-21 09:34:04 t 1 1 205750 689 0.00 2019-12-21 09:34:49 2019-12-21 09:39:42 t 1 1 205751 615 0.00 2019-12-21 09:32:29 2019-12-21 09:41:07 t 1 1 205752 635 0.00 2019-12-21 09:30:15 2019-12-21 09:41:32 t 1 1 205753 694 0.00 2019-12-21 07:48:23 2019-12-21 09:43:02 t 1 1 205754 562 0.00 2019-12-21 09:44:00 2019-12-21 09:44:14 t 1 1 205755 514 0.00 2019-12-21 09:45:26 2019-12-21 09:45:58 t 1 1 205756 744 0.00 2019-12-21 07:52:53 2019-12-21 09:46:36 t 1 1 205757 724 0.00 2019-12-21 09:20:53 2019-12-21 09:47:00 t 1 1 205758 694 0.00 2019-12-21 09:43:07 2019-12-21 09:50:45 t 1 1 205759 740 0.00 2019-12-21 09:25:15 2019-12-21 09:55:23 t 1 1 205760 744 0.00 2019-12-21 09:46:35 2019-12-21 09:55:33 t 1 1 205761 562 0.00 2019-12-21 09:55:36 2019-12-21 09:55:48 t 1 1 205762 673 0.00 2019-12-21 09:23:26 2019-12-21 09:56:28 t 1 1 205763 637 0.00 2019-12-21 09:29:52 2019-12-21 09:57:58 t 1 1 205764 667 0.00 2019-12-21 09:50:05 2019-12-21 09:59:31 t 1 1 205765 724 0.00 2019-12-21 09:47:00 2019-12-21 10:00:24 t 1 1 205766 481 0.00 2019-12-21 07:22:12 2019-12-21 10:01:56 t 1 1 205767 562 0.00 2019-12-21 10:04:34 2019-12-21 10:04:47 t 1 1 205768 611 0.00 2019-12-21 09:57:57 2019-12-21 10:05:09 t 1 1 205769 562 0.00 2019-12-21 10:06:15 2019-12-21 10:06:29 t 1 1 205770 591 0.00 2019-12-21 09:01:05 2019-12-21 10:06:43 t 1 1 205771 611 0.00 2019-12-21 10:05:09 2019-12-21 10:07:53 t 1 1 205772 562 0.00 2019-12-21 10:10:46 2019-12-21 10:10:52 t 1 1 205773 667 0.00 2019-12-21 09:59:32 2019-12-21 10:11:17 t 1 1 205774 615 0.00 2019-12-21 09:41:07 2019-12-21 10:12:22 t 1 1 205775 562 0.00 2019-12-21 10:12:22 2019-12-21 10:12:39 t 1 1 205776 724 0.00 2019-12-21 10:02:30 2019-12-21 10:13:08 t 1 1 205777 591 0.00 2019-12-21 10:06:43 2019-12-21 10:16:16 t 1 1 205778 656 0.00 2019-12-21 07:45:50 2019-12-21 10:17:31 t 1 1 205779 667 0.00 2019-12-21 10:10:45 2019-12-21 10:18:05 t 1 1 205780 562 0.00 2019-12-21 10:16:25 2019-12-21 10:21:03 t 1 1 205781 562 0.00 2019-12-21 10:22:36 2019-12-21 10:24:24 t 1 1 205782 694 0.00 2019-12-21 09:50:50 2019-12-21 10:24:42 t 1 1 205783 694 0.00 2019-12-21 10:25:22 2019-12-21 10:28:10 t 1 1 205784 649 0.00 2019-12-21 09:50:09 2019-12-21 10:28:57 t 1 1 205785 694 0.00 2019-12-21 10:28:15 2019-12-21 10:31:28 t 1 1 205786 622 0.00 2019-12-21 10:25:30 2019-12-21 10:33:34 t 1 1 205787 673 0.00 2019-12-21 10:07:50 2019-12-21 10:34:17 t 1 1 205788 637 0.00 2019-12-21 10:12:44 2019-12-21 10:34:39 t 1 1 205789 615 0.00 2019-12-21 10:12:22 2019-12-21 10:35:19 t 1 1 205790 562 0.00 2019-12-21 10:31:26 2019-12-21 10:35:33 t 1 1 205791 649 0.00 2019-12-21 10:28:57 2019-12-21 10:36:15 t 1 1 205792 498 0.00 2019-12-21 10:36:47 2019-12-21 10:37:38 t 1 2 205793 498 0.00 2019-12-21 10:37:57 2019-12-21 10:38:54 t 1 2 205794 562 0.00 2019-12-21 10:42:26 2019-12-21 10:44:04 t 1 1 205795 622 0.00 2019-12-21 10:33:34 2019-12-21 10:48:11 t 1 1 205796 679 0.00 2019-12-21 10:48:34 2019-12-21 10:48:34 t 1 1 205797 679 0.00 2019-12-21 10:48:38 2019-12-21 10:52:30 t 1 1 205798 562 0.00 2019-12-21 10:53:07 2019-12-21 10:53:37 t 1 1 205799 625 0.00 2019-12-21 08:06:39 2019-12-21 10:56:58 t 1 1 205800 637 0.00 2019-12-21 10:35:21 2019-12-21 10:57:39 t 1 1 205801 562 0.00 2019-12-21 10:57:00 2019-12-21 10:57:52 t 1 1 205802 562 0.00 2019-12-21 10:58:45 2019-12-21 10:58:57 t 1 1 205803 562 0.00 2019-12-21 10:59:12 2019-12-21 10:59:41 t 1 1 205804 673 0.00 2019-12-21 10:58:58 2019-12-21 11:00:43 t 1 1 205805 722 0.00 2019-12-21 11:00:05 2019-12-21 11:01:51 t 1 1 205806 694 0.00 2019-12-21 10:33:01 2019-12-21 11:01:53 t 1 1 205807 622 0.00 2019-12-21 10:48:11 2019-12-21 11:02:29 t 1 1 205810 562 0.00 2019-12-21 11:06:02 2019-12-21 11:06:36 t 1 1 205812 667 0.00 2019-12-21 11:09:12 2019-12-21 11:10:16 t 1 2 205815 637 0.00 2019-12-21 10:57:39 2019-12-21 11:12:28 t 1 1 205817 481 0.00 2019-12-21 10:02:27 2019-12-21 11:14:04 t 1 1 205819 679 0.00 2019-12-21 11:14:44 2019-12-21 11:14:49 t 1 1 205821 694 0.00 2019-12-21 11:01:53 2019-12-21 11:15:23 t 1 1 205824 679 0.00 2019-12-21 11:17:17 2019-12-21 11:17:47 t 1 1 205837 679 0.00 2019-12-21 11:29:40 2019-12-21 11:29:44 t 1 1 205839 734 0.00 2019-12-21 10:50:53 2019-12-21 11:30:33 t 1 1 205842 637 0.00 2019-12-21 11:22:59 2019-12-21 11:31:58 t 1 1 205843 679 0.00 2019-12-21 11:31:01 2019-12-21 11:32:09 t 1 1 205844 679 0.00 2019-12-21 11:32:28 2019-12-21 11:32:31 t 1 1 205847 679 0.00 2019-12-21 11:34:07 2019-12-21 11:34:32 t 1 1 205853 679 0.00 2019-12-21 11:34:45 2019-12-21 11:36:36 t 1 1 205858 679 0.00 2019-12-21 11:37:33 2019-12-21 11:37:35 t 1 1 205860 673 0.00 2019-12-21 11:36:43 2019-12-21 11:38:23 t 1 1 205861 562 0.00 2019-12-21 11:31:51 2019-12-21 11:39:32 t 1 1 205865 740 0.00 2019-12-21 11:32:53 2019-12-21 11:42:10 t 1 1 205870 754 0.00 2019-12-21 11:12:17 2019-12-21 11:46:46 t 1 2 205871 611 0.00 2019-12-21 11:45:21 2019-12-21 11:47:49 t 1 1 205877 746 0.00 2019-12-21 11:53:29 2019-12-21 11:57:06 t 1 1 205878 675 0.00 2019-12-21 11:45:01 2019-12-21 11:59:36 t 1 1 205880 746 0.00 2019-12-21 11:57:09 2019-12-21 12:01:20 t 1 1 205883 679 0.00 2019-12-21 12:03:26 2019-12-21 12:03:35 t 1 1 205889 622 0.00 2019-12-21 12:00:22 2019-12-21 12:07:13 t 1 1 205891 679 0.00 2019-12-21 12:06:03 2019-12-21 12:10:21 t 1 1 205893 622 0.00 2019-12-21 12:06:21 2019-12-21 12:11:52 t 1 1 205897 679 0.00 2019-12-21 12:13:27 2019-12-21 12:13:29 t 1 1 205899 679 0.00 2019-12-21 12:13:43 2019-12-21 12:13:48 t 1 1 205902 679 0.00 2019-12-21 12:14:31 2019-12-21 12:15:02 t 1 1 205905 562 0.00 2019-12-21 12:15:37 2019-12-21 12:15:54 t 1 1 205906 538 0.00 2019-12-21 12:14:17 2019-12-21 12:17:00 t 1 1 205907 481 0.00 2019-12-21 11:14:04 2019-12-21 12:17:36 t 1 1 205911 622 0.00 2019-12-21 12:18:15 2019-12-21 12:24:31 t 1 1 205915 746 0.00 2019-12-21 12:26:05 2019-12-21 12:26:59 t 1 1 205916 707 0.00 2019-12-21 12:17:32 2019-12-21 12:27:35 t 1 1 205919 625 0.00 2019-12-21 12:01:46 2019-12-21 12:30:04 t 1 1 205920 562 0.00 2019-12-21 12:30:12 2019-12-21 12:30:23 t 1 1 205923 689 0.00 2019-12-21 12:30:34 2019-12-21 12:31:08 t 1 1 205929 562 0.00 2019-12-21 12:37:26 2019-12-21 12:37:44 t 1 1 205933 637 0.00 2019-12-21 12:34:08 2019-12-21 12:40:08 t 1 1 205936 746 0.00 2019-12-21 12:42:57 2019-12-21 12:43:51 t 1 1 205943 637 0.00 2019-12-21 12:40:08 2019-12-21 12:46:57 t 1 1 205945 746 0.00 2019-12-21 12:43:51 2019-12-21 12:50:10 t 1 1 205948 694 0.00 2019-12-21 12:44:40 2019-12-21 12:51:04 t 1 1 205951 746 0.00 2019-12-21 12:50:10 2019-12-21 12:55:31 t 1 1 205952 637 0.00 2019-12-21 12:46:57 2019-12-21 12:59:03 t 1 1 205953 562 0.00 2019-12-21 13:00:36 2019-12-21 13:01:18 t 1 1 205955 562 0.00 2019-12-21 13:02:15 2019-12-21 13:03:00 t 1 1 205962 675 0.00 2019-12-21 13:02:13 2019-12-21 13:08:19 t 1 1 205966 637 0.00 2019-12-21 13:04:26 2019-12-21 13:13:35 t 1 1 205967 746 0.00 2019-12-21 13:08:35 2019-12-21 13:16:14 t 1 1 205969 220 0.00 2019-12-21 11:30:06 2019-12-21 13:17:40 t 1 1 205970 516 0.00 2019-12-21 12:25:03 2019-12-21 13:18:08 t 1 1 205972 679 0.00 2019-12-21 13:19:12 2019-12-21 13:19:37 t 1 1 205976 637 0.00 2019-12-21 13:13:35 2019-12-21 13:21:55 t 1 1 205980 637 0.00 2019-12-21 13:21:55 2019-12-21 13:24:06 t 1 1 205983 220 0.00 2019-12-21 12:43:03 2019-12-21 13:30:23 t 1 2 205985 754 0.00 2019-12-21 11:51:50 2019-12-21 13:34:28 t 1 2 205987 746 0.00 2019-12-21 13:35:25 2019-12-21 13:37:04 t 1 1 205990 591 0.00 2019-12-21 12:10:23 2019-12-21 13:39:39 t 1 1 205992 611 0.00 2019-12-21 13:39:16 2019-12-21 13:40:33 t 1 1 205993 562 0.00 2019-12-21 13:24:42 2019-12-21 13:42:29 t 1 1 205996 562 0.00 2019-12-21 13:43:59 2019-12-21 13:44:23 t 1 1 205998 562 0.00 2019-12-21 13:45:45 2019-12-21 13:46:00 t 1 1 206000 481 0.00 2019-12-21 12:17:36 2019-12-21 13:46:40 t 1 1 206002 637 0.00 2019-12-21 13:24:16 2019-12-21 13:48:41 t 1 1 206007 660 0.00 2019-12-21 13:09:38 2019-12-21 13:52:16 t 1 1 206008 687 0.00 2019-12-21 13:51:32 2019-12-21 13:52:34 t 1 1 206012 562 0.00 2019-12-21 13:52:20 2019-12-21 13:54:48 t 1 1 206015 627 0.00 2019-12-21 13:48:31 2019-12-21 13:55:58 t 1 1 206016 562 0.00 2019-12-21 13:56:24 2019-12-21 13:56:39 t 1 1 206018 687 0.00 2019-12-21 13:56:13 2019-12-21 13:56:57 t 1 1 206020 622 0.00 2019-12-21 13:19:04 2019-12-21 13:59:04 t 1 1 206021 752 0.00 2019-12-21 13:48:18 2019-12-21 13:59:34 t 1 1 206023 611 0.00 2019-12-21 13:56:50 2019-12-21 14:00:36 t 1 1 206024 562 0.00 2019-12-21 13:59:00 2019-12-21 14:01:25 t 1 1 206027 625 0.00 2019-12-21 13:49:43 2019-12-21 14:03:03 t 1 1 206031 746 0.00 2019-12-21 14:08:47 2019-12-21 14:11:30 t 1 1 206036 716 0.00 2019-12-21 14:14:17 2019-12-21 14:17:06 t 1 1 206037 687 0.00 2019-12-21 14:16:39 2019-12-21 14:17:48 t 1 1 206038 656 0.00 2019-12-21 12:46:46 2019-12-21 14:18:07 t 1 1 206039 481 0.00 2019-12-21 13:46:40 2019-12-21 14:18:16 t 1 1 206041 660 0.00 2019-12-21 13:52:29 2019-12-21 14:22:09 t 1 1 206048 746 0.00 2019-12-21 14:20:37 2019-12-21 14:31:09 t 1 1 206049 562 0.00 2019-12-21 14:34:20 2019-12-21 14:34:31 t 1 1 206051 578 0.00 2019-12-21 14:29:21 2019-12-21 14:35:22 t 1 1 206053 691 0.00 2019-12-21 14:33:58 2019-12-21 14:35:55 t 1 1 206059 564 0.00 2019-12-21 14:17:14 2019-12-21 14:42:16 t 1 1 206061 562 0.00 2019-12-21 14:44:51 2019-12-21 14:45:12 t 1 1 206062 578 0.00 2019-12-21 14:40:10 2019-12-21 14:48:07 t 1 1 206064 694 0.00 2019-12-21 13:28:34 2019-12-21 14:48:34 t 1 1 206067 392 0.00 2019-12-21 14:13:02 2019-12-21 14:51:49 t 1 2 206072 622 0.00 2019-12-21 14:40:21 2019-12-21 14:57:31 t 1 1 206074 220 0.00 2019-12-21 14:58:18 2019-12-21 14:58:18 f 1 1 206076 591 0.00 2019-12-21 14:32:30 2019-12-21 15:02:04 t 1 1 206078 562 0.00 2019-12-21 15:08:28 2019-12-21 15:08:36 t 1 1 206080 637 0.00 2019-12-21 15:04:11 2019-12-21 15:10:26 t 1 1 206085 622 0.00 2019-12-21 15:10:20 2019-12-21 15:21:52 t 1 1 206086 625 0.00 2019-12-21 14:55:55 2019-12-21 15:23:26 t 1 1 206089 564 0.00 2019-12-21 14:42:16 2019-12-21 15:27:50 t 1 1 206090 625 0.00 2019-12-21 15:23:26 2019-12-21 15:29:34 t 1 1 206092 622 0.00 2019-12-21 15:21:52 2019-12-21 15:32:12 t 1 1 206093 481 0.00 2019-12-21 14:18:36 2019-12-21 15:32:47 t 1 1 206095 707 0.00 2019-12-21 15:11:56 2019-12-21 15:36:28 t 1 1 206100 681 0.00 2019-12-21 07:23:27 2019-12-21 15:44:39 t 1 1 205808 622 0.00 2019-12-21 11:02:54 2019-12-21 11:04:04 t 1 1 205820 675 0.00 2019-12-21 11:13:11 2019-12-21 11:14:51 t 1 1 205822 679 0.00 2019-12-21 11:15:58 2019-12-21 11:16:40 t 1 1 205823 694 0.00 2019-12-21 11:15:27 2019-12-21 11:17:20 t 1 1 205826 591 0.00 2019-12-21 10:16:16 2019-12-21 11:20:34 t 1 1 205827 220 0.00 2019-12-21 09:43:14 2019-12-21 11:21:08 t 1 1 205829 562 0.00 2019-12-21 11:22:42 2019-12-21 11:23:02 t 1 1 205830 611 0.00 2019-12-21 11:24:46 2019-12-21 11:25:20 t 1 1 205831 679 0.00 2019-12-21 11:21:44 2019-12-21 11:26:44 t 1 1 205832 679 0.00 2019-12-21 11:26:57 2019-12-21 11:27:14 t 1 1 205833 625 0.00 2019-12-21 11:00:52 2019-12-21 11:28:17 t 1 1 205840 679 0.00 2019-12-21 11:30:32 2019-12-21 11:30:34 t 1 1 205849 679 0.00 2019-12-21 11:35:37 2019-12-21 11:35:40 t 1 1 205851 679 0.00 2019-12-21 11:35:49 2019-12-21 11:35:55 t 1 1 205852 679 0.00 2019-12-21 11:36:03 2019-12-21 11:36:04 t 1 1 205854 679 0.00 2019-12-21 11:36:36 2019-12-21 11:36:57 t 1 1 205857 679 0.00 2019-12-21 11:37:23 2019-12-21 11:37:24 t 1 1 205862 679 0.00 2019-12-21 11:38:02 2019-12-21 11:40:04 t 1 1 205863 722 0.00 2019-12-21 11:40:08 2019-12-21 11:40:18 t 1 1 205864 675 0.00 2019-12-21 11:38:30 2019-12-21 11:42:04 t 1 1 205866 562 0.00 2019-12-21 11:40:57 2019-12-21 11:42:34 t 1 1 205873 562 0.00 2019-12-21 11:46:50 2019-12-21 11:49:34 t 1 1 205875 622 0.00 2019-12-21 11:43:06 2019-12-21 11:55:07 t 1 1 205881 625 0.00 2019-12-21 11:32:24 2019-12-21 12:01:41 t 1 1 205882 679 0.00 2019-12-21 11:48:16 2019-12-21 12:02:22 t 1 1 205885 635 0.00 2019-12-21 09:41:32 2019-12-21 12:03:55 t 1 1 205886 689 0.00 2019-12-21 12:03:48 2019-12-21 12:05:14 t 1 1 205888 746 0.00 2019-12-21 12:05:51 2019-12-21 12:07:05 t 1 1 205890 637 0.00 2019-12-21 11:49:19 2019-12-21 12:09:12 t 1 1 205892 679 0.00 2019-12-21 12:11:36 2019-12-21 12:11:37 t 1 1 205895 562 0.00 2019-12-21 12:09:45 2019-12-21 12:13:00 t 1 1 205896 679 0.00 2019-12-21 12:11:52 2019-12-21 12:13:17 t 1 1 205898 622 0.00 2019-12-21 12:11:52 2019-12-21 12:13:37 t 1 1 205900 675 0.00 2019-12-21 12:03:18 2019-12-21 12:14:41 t 1 1 205903 679 0.00 2019-12-21 12:15:16 2019-12-21 12:15:26 t 1 1 205909 562 0.00 2019-12-21 12:18:46 2019-12-21 12:18:59 t 1 1 205912 516 0.00 2019-12-21 12:20:34 2019-12-21 12:24:33 t 1 1 205917 562 0.00 2019-12-21 12:27:18 2019-12-21 12:27:37 t 1 1 205921 689 0.00 2019-12-21 12:28:43 2019-12-21 12:30:25 t 1 1 205924 689 0.00 2019-12-21 12:31:08 2019-12-21 12:31:51 t 1 1 205926 694 0.00 2019-12-21 11:44:58 2019-12-21 12:34:34 t 1 1 205928 687 0.00 2019-12-21 12:33:14 2019-12-21 12:35:09 t 1 1 205930 675 0.00 2019-12-21 12:32:43 2019-12-21 12:38:04 t 1 1 205931 740 0.00 2019-12-21 12:16:48 2019-12-21 12:38:12 t 1 1 205935 746 0.00 2019-12-21 12:41:25 2019-12-21 12:42:58 t 1 1 205939 689 0.00 2019-12-21 12:34:01 2019-12-21 12:45:28 t 1 1 205940 689 0.00 2019-12-21 12:45:46 2019-12-21 12:45:58 t 1 1 205942 656 0.00 2019-12-21 10:17:31 2019-12-21 12:46:46 t 1 1 205946 622 0.00 2019-12-21 12:47:35 2019-12-21 12:50:12 t 1 1 205949 689 0.00 2019-12-21 12:50:47 2019-12-21 12:52:37 t 1 1 205954 746 0.00 2019-12-21 12:55:31 2019-12-21 13:01:24 t 1 1 205957 562 0.00 2019-12-21 13:03:50 2019-12-21 13:04:27 t 1 1 205958 694 0.00 2019-12-21 12:51:16 2019-12-21 13:05:19 t 1 1 205963 746 0.00 2019-12-21 13:01:24 2019-12-21 13:08:35 t 1 1 205964 562 0.00 2019-12-21 13:10:00 2019-12-21 13:10:24 t 1 1 205978 679 0.00 2019-12-21 13:21:17 2019-12-21 13:22:23 t 1 1 205981 679 0.00 2019-12-21 13:25:45 2019-12-21 13:26:35 t 1 1 205984 746 0.00 2019-12-21 13:16:14 2019-12-21 13:30:58 t 1 1 205994 625 0.00 2019-12-21 13:05:45 2019-12-21 13:42:35 t 1 1 205997 683 0.00 2019-12-21 13:33:45 2019-12-21 13:44:51 t 1 1 206001 627 0.00 2019-12-21 13:37:04 2019-12-21 13:48:31 t 1 1 206003 625 0.00 2019-12-21 13:47:00 2019-12-21 13:49:38 t 1 1 206004 746 0.00 2019-12-21 13:44:05 2019-12-21 13:50:26 t 1 1 206006 578 0.00 2019-12-21 13:13:32 2019-12-21 13:51:53 t 1 1 206009 611 0.00 2019-12-21 13:49:17 2019-12-21 13:52:39 t 1 1 206025 637 0.00 2019-12-21 13:48:41 2019-12-21 14:01:51 t 1 1 206033 734 0.00 2019-12-21 12:54:59 2019-12-21 14:13:25 t 1 1 206042 591 0.00 2019-12-21 14:18:15 2019-12-21 14:23:05 t 1 1 206043 742 0.00 2019-12-21 14:14:07 2019-12-21 14:23:19 t 1 1 206046 622 0.00 2019-12-21 14:12:58 2019-12-21 14:27:17 t 1 1 206047 578 0.00 2019-12-21 13:53:15 2019-12-21 14:29:21 t 1 1 206050 746 0.00 2019-12-21 14:30:19 2019-12-21 14:34:47 t 1 1 206054 649 0.00 2019-12-21 12:50:45 2019-12-21 14:37:31 t 1 1 206057 622 0.00 2019-12-21 14:27:17 2019-12-21 14:40:21 t 1 1 206058 740 0.00 2019-12-21 14:27:33 2019-12-21 14:41:58 t 1 1 206066 562 0.00 2019-12-21 14:50:02 2019-12-21 14:50:42 t 1 1 206069 730 0.00 2019-12-21 14:24:44 2019-12-21 14:55:41 t 1 1 206070 742 0.00 2019-12-21 14:36:47 2019-12-21 14:56:59 t 1 1 206071 673 0.00 2019-12-21 14:07:19 2019-12-21 14:57:28 t 1 1 206079 622 0.00 2019-12-21 14:57:31 2019-12-21 15:10:20 t 1 1 206082 562 0.00 2019-12-21 15:10:11 2019-12-21 15:11:02 t 1 1 206084 562 0.00 2019-12-21 15:16:12 2019-12-21 15:16:42 t 1 1 206087 742 0.00 2019-12-21 15:10:31 2019-12-21 15:23:48 t 1 1 206091 742 0.00 2019-12-21 15:23:48 2019-12-21 15:31:45 t 1 1 206094 740 0.00 2019-12-21 15:29:55 2019-12-21 15:32:50 t 1 1 206097 392 0.00 2019-12-21 15:05:35 2019-12-21 15:38:48 t 1 2 206098 611 0.00 2019-12-21 15:33:48 2019-12-21 15:40:41 t 1 1 206102 692 0.00 2019-12-21 15:38:34 2019-12-21 15:47:21 t 1 1 206104 611 0.00 2019-12-21 15:41:24 2019-12-21 15:48:23 t 1 1 206106 611 0.00 2019-12-21 15:48:21 2019-12-21 15:51:16 t 1 1 206107 625 0.00 2019-12-21 15:29:34 2019-12-21 15:51:55 t 1 1 206109 611 0.00 2019-12-21 15:51:24 2019-12-21 15:53:53 t 1 1 206114 683 0.00 2019-12-21 15:54:57 2019-12-21 15:57:56 t 1 1 206121 687 0.00 2019-12-21 16:05:24 2019-12-21 16:07:08 t 1 1 206123 692 0.00 2019-12-21 16:07:06 2019-12-21 16:07:43 t 1 1 206127 692 0.00 2019-12-21 16:10:18 2019-12-21 16:10:59 t 1 1 206136 692 0.00 2019-12-21 16:21:32 2019-12-21 16:22:10 t 1 1 206140 692 0.00 2019-12-21 16:24:58 2019-12-21 16:25:36 t 1 1 206141 692 0.00 2019-12-21 16:26:05 2019-12-21 16:26:34 t 1 1 206146 692 0.00 2019-12-21 16:29:28 2019-12-21 16:31:04 t 1 1 206148 694 0.00 2019-12-21 16:12:05 2019-12-21 16:32:28 t 1 1 206153 578 0.00 2019-12-21 14:48:07 2019-12-21 16:35:00 t 1 1 206155 692 0.00 2019-12-21 16:35:23 2019-12-21 16:35:57 t 1 1 206160 562 0.00 2019-12-21 16:42:51 2019-12-21 16:44:21 t 1 1 206167 611 0.00 2019-12-21 16:42:53 2019-12-21 16:49:34 t 1 1 206168 625 0.00 2019-12-21 16:33:25 2019-12-21 16:50:12 t 1 1 206170 692 0.00 2019-12-21 16:50:45 2019-12-21 16:51:00 t 1 1 205809 667 0.00 2019-12-21 11:04:07 2019-12-21 11:05:12 t 1 2 205811 667 0.00 2019-12-21 11:06:31 2019-12-21 11:07:34 t 1 2 205813 679 0.00 2019-12-21 11:00:44 2019-12-21 11:11:08 t 1 1 205814 679 0.00 2019-12-21 11:11:26 2019-12-21 11:11:56 t 1 1 205816 667 0.00 2019-12-21 11:11:57 2019-12-21 11:13:00 t 1 2 205818 562 0.00 2019-12-21 11:14:31 2019-12-21 11:14:48 t 1 1 205825 679 0.00 2019-12-21 11:18:42 2019-12-21 11:19:12 t 1 1 205828 637 0.00 2019-12-21 11:12:28 2019-12-21 11:22:51 t 1 1 205834 562 0.00 2019-12-21 11:26:43 2019-12-21 11:29:06 t 1 1 205835 622 0.00 2019-12-21 11:11:13 2019-12-21 11:29:31 t 1 1 205836 591 0.00 2019-12-21 11:20:34 2019-12-21 11:29:43 t 1 1 205838 679 0.00 2019-12-21 11:29:54 2019-12-21 11:30:05 t 1 1 205841 562 0.00 2019-12-21 11:29:23 2019-12-21 11:31:00 t 1 1 205845 679 0.00 2019-12-21 11:33:09 2019-12-21 11:33:15 t 1 1 205846 637 0.00 2019-12-21 11:32:02 2019-12-21 11:34:23 t 1 1 205848 679 0.00 2019-12-21 11:35:09 2019-12-21 11:35:14 t 1 1 205850 637 0.00 2019-12-21 11:34:34 2019-12-21 11:35:45 t 1 1 205855 679 0.00 2019-12-21 11:36:57 2019-12-21 11:37:00 t 1 1 205856 679 0.00 2019-12-21 11:37:12 2019-12-21 11:37:15 t 1 1 205859 679 0.00 2019-12-21 11:37:44 2019-12-21 11:37:45 t 1 1 205867 622 0.00 2019-12-21 11:29:31 2019-12-21 11:42:39 t 1 1 205868 694 0.00 2019-12-21 11:17:27 2019-12-21 11:44:59 t 1 1 205869 562 0.00 2019-12-21 11:45:48 2019-12-21 11:46:23 t 1 1 205872 637 0.00 2019-12-21 11:35:55 2019-12-21 11:49:19 t 1 1 205874 538 0.00 2019-12-21 11:07:37 2019-12-21 11:51:22 t 1 1 205876 591 0.00 2019-12-21 11:53:25 2019-12-21 11:56:18 t 1 1 205879 622 0.00 2019-12-21 11:55:07 2019-12-21 12:00:08 t 1 1 205884 679 0.00 2019-12-21 12:03:45 2019-12-21 12:03:46 t 1 1 205887 746 0.00 2019-12-21 12:01:20 2019-12-21 12:05:49 t 1 1 205894 538 0.00 2019-12-21 11:51:21 2019-12-21 12:11:57 t 1 1 205901 746 0.00 2019-12-21 12:09:35 2019-12-21 12:14:54 t 1 1 205904 637 0.00 2019-12-21 12:09:12 2019-12-21 12:15:28 t 1 1 205908 679 0.00 2019-12-21 12:15:47 2019-12-21 12:18:41 t 1 1 205910 562 0.00 2019-12-21 12:22:33 2019-12-21 12:22:53 t 1 1 205913 746 0.00 2019-12-21 12:15:02 2019-12-21 12:26:02 t 1 1 205914 637 0.00 2019-12-21 12:15:38 2019-12-21 12:26:18 t 1 1 205918 689 0.00 2019-12-21 12:26:19 2019-12-21 12:28:37 t 1 1 205922 483 0.00 2019-12-21 12:28:59 2019-12-21 12:30:29 t 1 1 205925 637 0.00 2019-12-21 12:26:18 2019-12-21 12:34:08 t 1 1 205927 562 0.00 2019-12-21 12:34:04 2019-12-21 12:35:06 t 1 1 205932 622 0.00 2019-12-21 12:25:31 2019-12-21 12:38:43 t 1 1 205934 746 0.00 2019-12-21 12:26:59 2019-12-21 12:40:36 t 1 1 205937 622 0.00 2019-12-21 12:38:59 2019-12-21 12:44:33 t 1 1 205938 694 0.00 2019-12-21 12:37:42 2019-12-21 12:44:41 t 1 1 205941 562 0.00 2019-12-21 12:45:45 2019-12-21 12:46:03 t 1 1 205944 622 0.00 2019-12-21 12:44:38 2019-12-21 12:47:03 t 1 1 205947 675 0.00 2019-12-21 12:48:50 2019-12-21 12:50:58 t 1 1 205950 562 0.00 2019-12-21 12:53:43 2019-12-21 12:54:00 t 1 1 205956 637 0.00 2019-12-21 12:59:03 2019-12-21 13:04:26 t 1 1 205959 625 0.00 2019-12-21 12:32:47 2019-12-21 13:05:36 t 1 1 205960 724 0.00 2019-12-21 12:49:49 2019-12-21 13:06:44 t 1 1 205961 694 0.00 2019-12-21 13:05:19 2019-12-21 13:07:34 t 1 1 205965 622 0.00 2019-12-21 12:50:12 2019-12-21 13:12:19 t 1 1 205968 752 0.00 2019-12-21 13:11:39 2019-12-21 13:17:33 t 1 1 205971 679 0.00 2019-12-21 13:13:48 2019-12-21 13:19:22 t 1 1 205973 562 0.00 2019-12-21 13:16:57 2019-12-21 13:20:01 t 1 1 205974 562 0.00 2019-12-21 13:20:30 2019-12-21 13:20:34 t 1 1 205975 516 0.00 2019-12-21 13:17:14 2019-12-21 13:21:45 t 1 1 205977 740 0.00 2019-12-21 13:19:53 2019-12-21 13:21:58 t 1 1 205979 562 0.00 2019-12-21 13:22:52 2019-12-21 13:23:29 t 1 1 205982 694 0.00 2019-12-21 13:08:12 2019-12-21 13:28:29 t 1 1 205986 392 0.00 2019-12-21 13:07:21 2019-12-21 13:35:19 t 1 2 205988 516 0.00 2019-12-21 13:34:12 2019-12-21 13:37:26 t 1 1 205989 611 0.00 2019-12-21 13:18:11 2019-12-21 13:39:17 t 1 1 205991 746 0.00 2019-12-21 13:37:35 2019-12-21 13:40:14 t 1 1 205995 538 0.00 2019-12-21 12:28:22 2019-12-21 13:44:08 t 1 1 205999 625 0.00 2019-12-21 13:42:35 2019-12-21 13:46:22 t 1 1 206005 687 0.00 2019-12-21 13:46:00 2019-12-21 13:50:50 t 1 1 206010 679 0.00 2019-12-21 13:51:08 2019-12-21 13:52:52 t 1 1 206011 675 0.00 2019-12-21 13:51:30 2019-12-21 13:54:28 t 1 1 206013 683 0.00 2019-12-21 13:45:31 2019-12-21 13:54:55 t 1 1 206014 687 0.00 2019-12-21 13:53:03 2019-12-21 13:55:23 t 1 1 206017 627 0.00 2019-12-21 13:55:58 2019-12-21 13:56:54 t 1 1 206019 675 0.00 2019-12-21 13:54:55 2019-12-21 13:57:40 t 1 1 206022 591 0.00 2019-12-21 13:56:05 2019-12-21 14:00:11 t 1 1 206026 746 0.00 2019-12-21 14:01:17 2019-12-21 14:02:24 t 1 1 206028 625 0.00 2019-12-21 14:03:03 2019-12-21 14:04:15 t 1 1 206029 746 0.00 2019-12-21 14:02:24 2019-12-21 14:08:14 t 1 1 206030 591 0.00 2019-12-21 14:07:47 2019-12-21 14:09:10 t 1 1 206032 622 0.00 2019-12-21 13:59:04 2019-12-21 14:12:49 t 1 1 206034 637 0.00 2019-12-21 14:02:01 2019-12-21 14:13:25 t 1 1 206035 562 0.00 2019-12-21 14:16:40 2019-12-21 14:16:47 t 1 1 206040 746 0.00 2019-12-21 14:11:27 2019-12-21 14:20:38 t 1 1 206044 691 0.00 2019-12-21 14:21:56 2019-12-21 14:23:32 t 1 1 206045 562 0.00 2019-12-21 14:24:50 2019-12-21 14:26:29 t 1 1 206052 691 0.00 2019-12-21 14:33:40 2019-12-21 14:35:38 t 1 1 206055 637 0.00 2019-12-21 14:13:25 2019-12-21 14:39:18 t 1 1 206056 578 0.00 2019-12-21 14:35:23 2019-12-21 14:40:10 t 1 1 206060 637 0.00 2019-12-21 14:39:18 2019-12-21 14:44:50 t 1 1 206063 691 0.00 2019-12-21 14:47:13 2019-12-21 14:48:24 t 1 1 206065 581 0.00 2019-12-21 14:50:03 2019-12-21 14:50:03 f 1 1 206068 625 0.00 2019-12-21 14:04:50 2019-12-21 14:54:47 t 1 1 206073 562 0.00 2019-12-21 14:57:30 2019-12-21 14:57:52 t 1 1 206075 637 0.00 2019-12-21 14:44:50 2019-12-21 14:59:15 t 1 1 206077 637 0.00 2019-12-21 14:59:15 2019-12-21 15:04:11 t 1 1 206081 742 0.00 2019-12-21 14:56:59 2019-12-21 15:10:31 t 1 1 206083 611 0.00 2019-12-21 15:11:10 2019-12-21 15:13:19 t 1 1 206088 562 0.00 2019-12-21 15:27:15 2019-12-21 15:27:23 t 1 1 206096 562 0.00 2019-12-21 15:37:58 2019-12-21 15:38:08 t 1 1 206099 746 0.00 2019-12-21 15:21:21 2019-12-21 15:43:02 t 1 1 206111 683 0.00 2019-12-21 13:55:18 2019-12-21 15:54:46 t 1 1 206113 637 0.00 2019-12-21 15:54:21 2019-12-21 15:56:52 t 1 1 206122 622 0.00 2019-12-21 15:45:10 2019-12-21 16:07:19 t 1 1 206124 692 0.00 2019-12-21 16:08:32 2019-12-21 16:09:05 t 1 1 206125 562 0.00 2019-12-21 16:10:12 2019-12-21 16:10:35 t 1 1 206130 625 0.00 2019-12-21 16:02:57 2019-12-21 16:13:52 t 1 1 206131 611 0.00 2019-12-21 16:14:18 2019-12-21 16:17:19 t 1 1 206101 622 0.00 2019-12-21 15:32:12 2019-12-21 15:45:10 t 1 1 206103 681 0.00 2019-12-21 15:44:39 2019-12-21 15:47:54 t 1 1 206105 562 0.00 2019-12-21 15:48:36 2019-12-21 15:48:52 t 1 1 206108 625 0.00 2019-12-21 15:51:55 2019-12-21 15:53:13 t 1 1 206110 637 0.00 2019-12-21 15:10:26 2019-12-21 15:54:21 t 1 1 206112 692 0.00 2019-12-21 15:47:21 2019-12-21 15:54:46 t 1 1 206115 562 0.00 2019-12-21 15:59:23 2019-12-21 15:59:50 t 1 1 206116 692 0.00 2019-12-21 15:54:57 2019-12-21 16:02:39 t 1 1 206117 625 0.00 2019-12-21 15:53:13 2019-12-21 16:02:57 t 1 1 206118 692 0.00 2019-12-21 16:02:39 2019-12-21 16:04:06 t 1 1 206119 687 0.00 2019-12-21 16:00:21 2019-12-21 16:05:06 t 1 1 206120 692 0.00 2019-12-21 16:05:05 2019-12-21 16:05:38 t 1 1 206126 692 0.00 2019-12-21 16:09:35 2019-12-21 16:10:38 t 1 1 206128 694 0.00 2019-12-21 14:48:49 2019-12-21 16:12:00 t 1 1 206129 692 0.00 2019-12-21 16:13:38 2019-12-21 16:13:42 t 1 1 206133 687 0.00 2019-12-21 16:17:26 2019-12-21 16:19:18 t 1 1 206134 692 0.00 2019-12-21 16:19:50 2019-12-21 16:20:02 t 1 1 206135 692 0.00 2019-12-21 16:20:20 2019-12-21 16:21:03 t 1 1 206138 692 0.00 2019-12-21 16:23:13 2019-12-21 16:23:47 t 1 1 206142 692 0.00 2019-12-21 16:26:54 2019-12-21 16:27:01 t 1 1 206143 692 0.00 2019-12-21 16:27:07 2019-12-21 16:27:17 t 1 1 206145 692 0.00 2019-12-21 16:28:32 2019-12-21 16:28:37 t 1 1 206147 485 0.00 2019-12-21 16:23:55 2019-12-21 16:32:09 t 1 1 206150 692 0.00 2019-12-21 16:31:10 2019-12-21 16:32:38 t 1 1 206154 692 0.00 2019-12-21 16:34:29 2019-12-21 16:35:07 t 1 1 206156 562 0.00 2019-12-21 16:35:06 2019-12-21 16:36:07 t 1 1 206159 673 0.00 2019-12-21 15:06:07 2019-12-21 16:43:03 t 1 1 206162 687 0.00 2019-12-21 16:24:30 2019-12-21 16:45:51 t 1 1 206163 692 0.00 2019-12-21 16:46:56 2019-12-21 16:47:18 t 1 1 206165 692 0.00 2019-12-21 16:48:02 2019-12-21 16:48:29 t 1 1 206166 485 0.00 2019-12-21 16:37:53 2019-12-21 16:49:30 t 1 1 206171 485 0.00 2019-12-21 16:49:35 2019-12-21 16:51:08 t 1 1 206173 692 0.00 2019-12-21 16:52:56 2019-12-21 16:53:08 t 1 1 206175 692 0.00 2019-12-21 16:53:19 2019-12-21 16:53:49 t 1 1 206177 692 0.00 2019-12-21 16:54:07 2019-12-21 16:54:42 t 1 1 206181 687 0.00 2019-12-21 16:54:08 2019-12-21 16:56:30 t 1 1 206184 692 0.00 2019-12-21 16:56:16 2019-12-21 16:57:16 t 1 1 206187 687 0.00 2019-12-21 16:58:26 2019-12-21 17:00:12 t 1 1 206193 679 0.00 2019-12-21 17:05:41 2019-12-21 17:05:44 t 1 1 206195 485 0.00 2019-12-21 16:52:08 2019-12-21 17:06:10 t 1 1 206196 679 0.00 2019-12-21 17:07:40 2019-12-21 17:07:42 t 1 1 206199 679 0.00 2019-12-21 17:10:30 2019-12-21 17:10:36 t 1 1 206201 656 0.00 2019-12-21 14:18:07 2019-12-21 17:10:59 t 1 1 206202 679 0.00 2019-12-21 17:11:10 2019-12-21 17:11:11 t 1 1 206210 679 0.00 2019-12-21 17:21:05 2019-12-21 17:21:06 t 1 1 206212 740 0.00 2019-12-21 17:15:37 2019-12-21 17:22:51 t 1 1 206214 679 0.00 2019-12-21 17:22:38 2019-12-21 17:24:38 t 1 1 206221 673 0.00 2019-12-21 16:44:57 2019-12-21 17:31:44 t 1 1 206223 660 0.00 2019-12-21 17:28:09 2019-12-21 17:34:00 t 1 1 206226 687 0.00 2019-12-21 17:32:20 2019-12-21 17:41:50 t 1 1 206227 724 0.00 2019-12-21 17:04:22 2019-12-21 17:43:04 t 1 1 206228 687 0.00 2019-12-21 17:43:38 2019-12-21 17:47:20 t 1 1 206231 758 0.00 2019-12-21 17:46:35 2019-12-21 17:49:35 t 1 1 206236 748 0.00 2019-12-21 17:48:38 2019-12-21 17:54:46 t 1 1 206240 748 0.00 2019-12-21 17:54:45 2019-12-21 17:55:46 t 1 1 206243 748 0.00 2019-12-21 17:54:52 2019-12-21 17:57:33 t 1 1 206244 692 0.00 2019-12-21 17:58:29 2019-12-21 17:58:30 t 1 1 206247 748 0.00 2019-12-21 17:58:50 2019-12-21 17:59:24 t 1 1 206250 748 0.00 2019-12-21 17:59:33 2019-12-21 18:00:15 t 1 1 206252 748 0.00 2019-12-21 18:00:26 2019-12-21 18:00:40 t 1 1 206255 485 0.00 2019-12-21 17:50:30 2019-12-21 18:03:47 t 1 1 206256 692 0.00 2019-12-21 18:02:21 2019-12-21 18:05:17 t 1 1 206259 758 0.00 2019-12-21 18:00:09 2019-12-21 18:06:42 t 1 1 206263 692 0.00 2019-12-21 18:08:11 2019-12-21 18:08:12 t 1 1 206272 724 0.00 2019-12-21 18:09:55 2019-12-21 18:13:19 t 1 1 206273 485 0.00 2019-12-21 18:10:07 2019-12-21 18:13:53 t 1 1 206283 740 0.00 2019-12-21 18:15:01 2019-12-21 18:20:08 t 1 1 206286 722 0.00 2019-12-21 18:05:19 2019-12-21 18:22:00 t 1 1 206289 692 0.00 2019-12-21 18:22:39 2019-12-21 18:23:33 t 1 1 206291 562 0.00 2019-12-21 18:25:09 2019-12-21 18:25:26 t 1 1 206292 722 0.00 2019-12-21 18:25:38 2019-12-21 18:25:53 t 1 1 206296 722 0.00 2019-12-21 18:27:03 2019-12-21 18:27:06 t 1 1 206300 485 0.00 2019-12-21 18:27:41 2019-12-21 18:28:42 t 1 1 206301 611 0.00 2019-12-21 18:20:43 2019-12-21 18:28:49 t 1 1 206302 687 0.00 2019-12-21 18:28:52 2019-12-21 18:29:50 t 1 1 206307 562 0.00 2019-12-21 18:30:25 2019-12-21 18:30:44 t 1 1 206311 673 0.00 2019-12-21 18:08:13 2019-12-21 18:31:31 t 1 1 206315 692 0.00 2019-12-21 18:34:16 2019-12-21 18:35:08 t 1 1 206320 692 0.00 2019-12-21 18:37:46 2019-12-21 18:38:32 t 1 1 206323 760 0.00 2019-12-21 18:27:30 2019-12-21 18:39:16 t 1 1 206324 692 0.00 2019-12-21 18:39:47 2019-12-21 18:39:49 t 1 1 206329 692 0.00 2019-12-21 18:43:56 2019-12-21 18:45:05 t 1 1 206334 754 0.00 2019-12-21 17:25:18 2019-12-21 18:49:07 t 1 2 206337 692 0.00 2019-12-21 18:45:04 2019-12-21 18:49:53 t 1 1 206339 724 0.00 2019-12-21 18:44:22 2019-12-21 18:51:22 t 1 1 206341 692 0.00 2019-12-21 18:51:02 2019-12-21 18:52:39 t 1 1 206343 485 0.00 2019-12-21 18:49:21 2019-12-21 18:54:51 t 1 1 206344 591 0.00 2019-12-21 18:38:38 2019-12-21 18:55:15 t 1 1 206348 562 0.00 2019-12-21 18:56:54 2019-12-21 18:57:06 t 1 1 206349 673 0.00 2019-12-21 18:56:42 2019-12-21 19:03:14 t 1 1 206351 687 0.00 2019-12-21 18:30:28 2019-12-21 19:03:24 t 1 1 206353 692 0.00 2019-12-21 19:04:27 2019-12-21 19:04:56 t 1 1 206358 692 0.00 2019-12-21 19:14:30 2019-12-21 19:16:40 t 1 1 206362 692 0.00 2019-12-21 19:20:37 2019-12-21 19:21:07 t 1 1 206367 754 0.00 2019-12-21 19:02:41 2019-12-21 19:23:49 t 1 2 206368 752 0.00 2019-12-21 19:13:45 2019-12-21 19:24:50 t 1 1 206369 428 0.00 2019-12-21 19:25:28 2019-12-21 19:25:28 f 1 1 206373 578 0.00 2019-12-21 16:35:15 2019-12-21 19:27:32 t 1 1 206379 538 0.00 2019-12-21 18:46:35 2019-12-21 19:32:19 t 1 1 206382 692 0.00 2019-12-21 19:33:10 2019-12-21 19:34:12 t 1 1 206386 611 0.00 2019-12-21 19:19:35 2019-12-21 19:36:48 t 1 1 206390 716 0.00 2019-12-21 19:04:13 2019-12-21 19:37:42 t 1 1 206395 633 0.00 2019-12-21 19:24:06 2019-12-21 19:40:24 t 1 1 206397 625 0.00 2019-12-21 19:32:19 2019-12-21 19:43:34 t 1 1 206398 692 0.00 2019-12-21 19:45:31 2019-12-21 19:46:04 t 1 1 206399 692 0.00 2019-12-21 19:46:17 2019-12-21 19:46:29 t 1 1 206400 692 0.00 2019-12-21 19:46:47 2019-12-21 19:47:01 t 1 1 206132 562 0.00 2019-12-21 16:17:35 2019-12-21 16:17:51 t 1 1 206137 622 0.00 2019-12-21 16:07:19 2019-12-21 16:23:33 t 1 1 206139 687 0.00 2019-12-21 16:19:41 2019-12-21 16:24:02 t 1 1 206144 562 0.00 2019-12-21 16:28:13 2019-12-21 16:28:34 t 1 1 206149 692 0.00 2019-12-21 16:32:01 2019-12-21 16:32:38 t 1 1 206151 625 0.00 2019-12-21 16:13:52 2019-12-21 16:33:25 t 1 1 206152 692 0.00 2019-12-21 16:33:45 2019-12-21 16:34:23 t 1 1 206157 692 0.00 2019-12-21 16:36:06 2019-12-21 16:36:26 t 1 1 206158 692 0.00 2019-12-21 16:41:29 2019-12-21 16:41:52 t 1 1 206161 692 0.00 2019-12-21 16:45:17 2019-12-21 16:45:21 t 1 1 206164 692 0.00 2019-12-21 16:47:57 2019-12-21 16:47:58 t 1 1 206169 562 0.00 2019-12-21 16:49:13 2019-12-21 16:50:40 t 1 1 206172 692 0.00 2019-12-21 16:52:18 2019-12-21 16:52:22 t 1 1 206174 687 0.00 2019-12-21 16:45:51 2019-12-21 16:53:40 t 1 1 206176 625 0.00 2019-12-21 16:51:49 2019-12-21 16:54:38 t 1 1 206178 692 0.00 2019-12-21 16:53:55 2019-12-21 16:54:56 t 1 1 206179 692 0.00 2019-12-21 16:54:51 2019-12-21 16:55:17 t 1 1 206180 692 0.00 2019-12-21 16:55:42 2019-12-21 16:56:02 t 1 1 206183 692 0.00 2019-12-21 16:57:09 2019-12-21 16:57:09 f 1 1 206185 687 0.00 2019-12-21 16:57:20 2019-12-21 16:57:58 t 1 1 206188 679 0.00 2019-12-21 16:59:28 2019-12-21 17:01:01 t 1 1 206191 687 0.00 2019-12-21 17:00:42 2019-12-21 17:04:19 t 1 1 206194 538 0.00 2019-12-21 15:33:20 2019-12-21 17:06:08 t 1 1 206197 740 0.00 2019-12-21 16:47:08 2019-12-21 17:10:07 t 1 1 206205 562 0.00 2019-12-21 17:14:14 2019-12-21 17:15:16 t 1 1 206206 679 0.00 2019-12-21 17:15:41 2019-12-21 17:15:45 t 1 1 206207 687 0.00 2019-12-21 17:04:37 2019-12-21 17:19:18 t 1 1 206211 679 0.00 2019-12-21 17:22:45 2019-12-21 17:22:48 t 1 1 206219 649 0.00 2019-12-21 17:12:28 2019-12-21 17:30:58 t 1 1 206220 220 0.00 2019-12-21 16:58:13 2019-12-21 17:31:34 t 1 2 206222 687 0.00 2019-12-21 17:26:11 2019-12-21 17:32:20 t 1 1 206224 660 0.00 2019-12-21 17:34:11 2019-12-21 17:36:19 t 1 1 206225 635 0.00 2019-12-21 16:55:14 2019-12-21 17:41:36 t 1 1 206229 679 0.00 2019-12-21 17:46:00 2019-12-21 17:47:43 t 1 1 206232 758 0.00 2019-12-21 17:49:42 2019-12-21 17:49:49 t 1 1 206234 758 0.00 2019-12-21 17:51:04 2019-12-21 17:54:28 t 1 1 206239 758 0.00 2019-12-21 17:55:20 2019-12-21 17:55:45 t 1 1 206242 692 0.00 2019-12-21 17:55:06 2019-12-21 17:57:24 t 1 1 206245 758 0.00 2019-12-21 17:58:03 2019-12-21 17:58:57 t 1 1 206246 692 0.00 2019-12-21 17:59:11 2019-12-21 17:59:12 t 1 1 206248 687 0.00 2019-12-21 17:47:39 2019-12-21 17:59:36 t 1 1 206251 760 0.00 2019-12-21 17:57:35 2019-12-21 18:00:34 t 1 1 206254 481 0.00 2019-12-21 15:32:47 2019-12-21 18:03:32 t 1 1 206262 740 0.00 2019-12-21 17:59:48 2019-12-21 18:08:07 t 1 1 206264 562 0.00 2019-12-21 18:06:11 2019-12-21 18:08:39 t 1 1 206267 692 0.00 2019-12-21 18:11:00 2019-12-21 18:11:23 t 1 1 206271 692 0.00 2019-12-21 18:12:51 2019-12-21 18:12:57 t 1 1 206275 687 0.00 2019-12-21 17:59:36 2019-12-21 18:14:44 t 1 1 206277 692 0.00 2019-12-21 18:13:37 2019-12-21 18:14:57 t 1 1 206278 760 0.00 2019-12-21 18:10:27 2019-12-21 18:15:12 t 1 1 206279 711 0.00 2019-12-21 17:42:26 2019-12-21 18:18:35 t 1 1 206281 562 0.00 2019-12-21 18:18:35 2019-12-21 18:18:38 t 1 1 206287 625 0.00 2019-12-21 18:18:35 2019-12-21 18:22:15 t 1 1 206288 722 0.00 2019-12-21 18:23:06 2019-12-21 18:23:28 t 1 1 206294 711 0.00 2019-12-21 18:18:35 2019-12-21 18:26:51 t 1 1 206297 760 0.00 2019-12-21 18:21:09 2019-12-21 18:27:30 t 1 1 206299 687 0.00 2019-12-21 18:14:44 2019-12-21 18:28:16 t 1 1 206304 675 0.00 2019-12-21 18:26:21 2019-12-21 18:30:05 t 1 1 206305 722 0.00 2019-12-21 18:30:10 2019-12-21 18:30:19 t 1 1 206306 722 0.00 2019-12-21 18:28:42 2019-12-21 18:30:39 t 1 1 206308 716 0.00 2019-12-21 18:23:09 2019-12-21 18:30:54 t 1 1 206309 692 0.00 2019-12-21 18:30:46 2019-12-21 18:30:58 t 1 1 206312 562 0.00 2019-12-21 18:30:56 2019-12-21 18:32:03 t 1 1 206314 485 0.00 2019-12-21 18:33:10 2019-12-21 18:33:19 t 1 1 206316 692 0.00 2019-12-21 18:35:14 2019-12-21 18:35:21 t 1 1 206319 692 0.00 2019-12-21 18:36:17 2019-12-21 18:37:46 t 1 1 206322 692 0.00 2019-12-21 18:38:38 2019-12-21 18:39:10 t 1 1 206326 724 0.00 2019-12-21 18:13:18 2019-12-21 18:41:48 t 1 1 206328 692 0.00 2019-12-21 18:41:38 2019-12-21 18:43:56 t 1 1 206332 760 0.00 2019-12-21 18:39:16 2019-12-21 18:46:50 t 1 1 206333 673 0.00 2019-12-21 18:45:20 2019-12-21 18:47:42 t 1 1 206335 485 0.00 2019-12-21 18:37:12 2019-12-21 18:49:21 t 1 1 206338 692 0.00 2019-12-21 18:49:53 2019-12-21 18:50:53 t 1 1 206342 742 0.00 2019-12-21 18:38:00 2019-12-21 18:54:48 t 1 1 206346 622 0.00 2019-12-21 18:48:02 2019-12-21 18:56:04 t 1 1 206347 742 0.00 2019-12-21 18:54:53 2019-12-21 18:56:36 t 1 1 206350 692 0.00 2019-12-21 18:56:38 2019-12-21 19:03:23 t 1 1 206357 692 0.00 2019-12-21 19:14:06 2019-12-21 19:14:19 t 1 1 206359 562 0.00 2019-12-21 19:18:07 2019-12-21 19:18:28 t 1 1 206360 692 0.00 2019-12-21 19:18:38 2019-12-21 19:20:18 t 1 1 206364 692 0.00 2019-12-21 19:21:56 2019-12-21 19:22:05 t 1 1 206366 692 0.00 2019-12-21 19:22:13 2019-12-21 19:23:40 t 1 1 206370 428 0.00 2019-12-21 19:25:52 2019-12-21 19:25:52 f 1 1 206371 625 0.00 2019-12-21 19:06:11 2019-12-21 19:26:25 t 1 1 206374 689 0.00 2019-12-21 19:00:46 2019-12-21 19:27:40 t 1 1 206376 564 0.00 2019-12-21 19:21:33 2019-12-21 19:28:04 t 1 1 206377 578 0.00 2019-12-21 19:27:32 2019-12-21 19:30:13 t 1 1 206380 689 0.00 2019-12-21 19:27:40 2019-12-21 19:32:28 t 1 1 206383 562 0.00 2019-12-21 19:23:07 2019-12-21 19:34:21 t 1 1 206384 692 0.00 2019-12-21 19:34:16 2019-12-21 19:35:17 t 1 1 206385 692 0.00 2019-12-21 19:35:17 2019-12-21 19:36:34 t 1 1 206387 724 0.00 2019-12-21 18:53:48 2019-12-21 19:36:54 t 1 1 206389 673 0.00 2019-12-21 19:03:14 2019-12-21 19:37:37 t 1 1 206391 692 0.00 2019-12-21 19:37:50 2019-12-21 19:37:51 t 1 1 206392 692 0.00 2019-12-21 19:39:43 2019-12-21 19:39:56 t 1 1 206394 724 0.00 2019-12-21 19:38:53 2019-12-21 19:40:22 t 1 1 206396 692 0.00 2019-12-21 19:40:11 2019-12-21 19:40:25 t 1 1 206403 611 0.00 2019-12-21 19:46:57 2019-12-21 19:50:06 t 1 1 206406 692 0.00 2019-12-21 19:50:24 2019-12-21 19:50:41 t 1 1 206408 748 0.00 2019-12-21 19:50:46 2019-12-21 19:50:47 t 1 1 206410 687 0.00 2019-12-21 19:40:13 2019-12-21 19:51:21 t 1 1 206411 692 0.00 2019-12-21 19:51:23 2019-12-21 19:51:24 t 1 1 206415 730 0.00 2019-12-21 19:53:06 2019-12-21 19:53:07 t 1 1 206417 692 0.00 2019-12-21 19:53:18 2019-12-21 19:53:24 t 1 1 206419 689 0.00 2019-12-21 19:32:28 2019-12-21 19:53:42 t 1 1 206421 675 0.00 2019-12-21 19:41:26 2019-12-21 19:54:33 t 1 1 206424 711 0.00 2019-12-21 19:23:13 2019-12-21 19:56:06 t 1 1 206182 692 0.00 2019-12-21 16:55:31 2019-12-21 16:56:38 t 1 1 206186 692 0.00 2019-12-21 16:56:52 2019-12-21 16:58:38 t 1 1 206189 724 0.00 2019-12-21 16:32:45 2019-12-21 17:02:02 t 1 1 206190 679 0.00 2019-12-21 17:02:28 2019-12-21 17:02:30 t 1 1 206192 679 0.00 2019-12-21 17:04:59 2019-12-21 17:05:28 t 1 1 206198 711 0.00 2019-12-21 17:00:00 2019-12-21 17:10:23 t 1 1 206200 551 0.00 2019-12-21 07:29:28 2019-12-21 17:10:43 t 1 1 206203 591 0.00 2019-12-21 16:02:10 2019-12-21 17:11:31 t 1 1 206204 485 0.00 2019-12-21 17:09:05 2019-12-21 17:13:57 t 1 1 206208 564 0.00 2019-12-21 15:27:50 2019-12-21 17:19:33 t 1 1 206209 679 0.00 2019-12-21 17:20:46 2019-12-21 17:20:55 t 1 1 206213 679 0.00 2019-12-21 17:24:04 2019-12-21 17:24:06 t 1 1 206215 679 0.00 2019-12-21 17:25:16 2019-12-21 17:25:27 t 1 1 206216 687 0.00 2019-12-21 17:19:18 2019-12-21 17:26:11 t 1 1 206217 660 0.00 2019-12-21 17:26:08 2019-12-21 17:27:56 t 1 1 206218 625 0.00 2019-12-21 16:56:04 2019-12-21 17:30:22 t 1 1 206230 562 0.00 2019-12-21 17:47:47 2019-12-21 17:47:53 t 1 1 206233 758 0.00 2019-12-21 17:50:36 2019-12-21 17:52:39 t 1 1 206235 692 0.00 2019-12-21 17:40:13 2019-12-21 17:54:43 t 1 1 206237 692 0.00 2019-12-21 17:54:42 2019-12-21 17:54:48 t 1 1 206238 562 0.00 2019-12-21 17:55:01 2019-12-21 17:55:29 t 1 1 206241 679 0.00 2019-12-21 17:52:21 2019-12-21 17:56:02 t 1 1 206249 740 0.00 2019-12-21 17:40:54 2019-12-21 17:59:48 t 1 1 206253 675 0.00 2019-12-21 17:43:24 2019-12-21 18:00:49 t 1 1 206257 562 0.00 2019-12-21 18:05:39 2019-12-21 18:05:56 t 1 1 206258 692 0.00 2019-12-21 18:05:48 2019-12-21 18:06:18 t 1 1 206260 692 0.00 2019-12-21 18:06:37 2019-12-21 18:06:49 t 1 1 206261 692 0.00 2019-12-21 18:07:06 2019-12-21 18:07:29 t 1 1 206265 724 0.00 2019-12-21 17:43:04 2019-12-21 18:09:56 t 1 1 206266 692 0.00 2019-12-21 18:09:18 2019-12-21 18:10:12 t 1 1 206268 692 0.00 2019-12-21 18:11:34 2019-12-21 18:11:45 t 1 1 206269 591 0.00 2019-12-21 17:11:31 2019-12-21 18:12:32 t 1 1 206270 675 0.00 2019-12-21 18:09:10 2019-12-21 18:12:51 t 1 1 206274 562 0.00 2019-12-21 18:14:33 2019-12-21 18:14:40 t 1 1 206276 689 0.00 2019-12-21 18:12:03 2019-12-21 18:14:45 t 1 1 206280 625 0.00 2019-12-21 17:31:08 2019-12-21 18:18:35 t 1 1 206282 692 0.00 2019-12-21 18:18:06 2019-12-21 18:19:07 t 1 1 206284 611 0.00 2019-12-21 18:00:04 2019-12-21 18:20:34 t 1 1 206285 760 0.00 2019-12-21 18:16:03 2019-12-21 18:21:09 t 1 1 206290 722 0.00 2019-12-21 18:24:40 2019-12-21 18:24:49 t 1 1 206293 692 0.00 2019-12-21 18:25:48 2019-12-21 18:26:05 t 1 1 206295 692 0.00 2019-12-21 18:26:33 2019-12-21 18:26:52 t 1 1 206298 485 0.00 2019-12-21 18:14:04 2019-12-21 18:27:41 t 1 1 206303 679 0.00 2019-12-21 18:13:35 2019-12-21 18:30:02 t 1 1 206310 516 0.00 2019-12-21 18:01:28 2019-12-21 18:31:13 t 1 1 206313 692 0.00 2019-12-21 18:31:29 2019-12-21 18:33:00 t 1 1 206317 692 0.00 2019-12-21 18:35:34 2019-12-21 18:36:06 t 1 1 206318 673 0.00 2019-12-21 18:31:31 2019-12-21 18:36:30 t 1 1 206321 591 0.00 2019-12-21 18:12:32 2019-12-21 18:38:38 t 1 1 206325 716 0.00 2019-12-21 18:30:54 2019-12-21 18:41:46 t 1 1 206327 611 0.00 2019-12-21 18:28:49 2019-12-21 18:42:21 t 1 1 206330 538 0.00 2019-12-21 18:24:42 2019-12-21 18:45:26 t 1 1 206331 538 0.00 2019-12-21 18:45:26 2019-12-21 18:46:35 t 1 1 206336 711 0.00 2019-12-21 18:26:51 2019-12-21 18:49:48 t 1 1 206340 692 0.00 2019-12-21 18:51:20 2019-12-21 18:51:41 t 1 1 206345 760 0.00 2019-12-21 18:46:50 2019-12-21 18:55:33 t 1 1 206352 692 0.00 2019-12-21 19:03:51 2019-12-21 19:04:17 t 1 1 206354 625 0.00 2019-12-21 18:25:12 2019-12-21 19:06:22 t 1 1 206355 562 0.00 2019-12-21 19:07:17 2019-12-21 19:07:41 t 1 1 206356 752 0.00 2019-12-21 17:41:16 2019-12-21 19:13:45 t 1 1 206361 687 0.00 2019-12-21 19:19:09 2019-12-21 19:21:02 t 1 1 206363 692 0.00 2019-12-21 19:21:18 2019-12-21 19:21:56 t 1 1 206365 692 0.00 2019-12-21 19:23:04 2019-12-21 19:23:35 t 1 1 206372 692 0.00 2019-12-21 19:26:02 2019-12-21 19:26:57 t 1 1 206375 625 0.00 2019-12-21 19:26:36 2019-12-21 19:27:43 t 1 1 206378 622 0.00 2019-12-21 18:56:12 2019-12-21 19:31:54 t 1 1 206381 692 0.00 2019-12-21 19:28:11 2019-12-21 19:33:10 t 1 1 206388 692 0.00 2019-12-21 19:36:50 2019-12-21 19:37:32 t 1 1 206393 428 0.00 2019-12-21 19:40:16 2019-12-21 19:40:16 f 1 1 206404 692 0.00 2019-12-21 19:49:26 2019-12-21 19:50:11 t 1 1 206405 748 0.00 2019-12-21 19:50:26 2019-12-21 19:50:27 t 1 1 206412 679 0.00 2019-12-21 19:49:41 2019-12-21 19:51:44 t 1 1 206418 692 0.00 2019-12-21 19:50:57 2019-12-21 19:53:40 t 1 1 206420 692 0.00 2019-12-21 19:53:30 2019-12-21 19:53:47 t 1 1 206423 748 0.00 2019-12-21 19:54:07 2019-12-21 19:54:51 t 1 1 206426 748 0.00 2019-12-21 19:54:59 2019-12-21 19:57:31 t 1 1 206428 692 0.00 2019-12-21 19:57:20 2019-12-21 19:57:59 t 1 1 206431 748 0.00 2019-12-21 19:58:11 2019-12-21 19:59:16 t 1 1 206432 692 0.00 2019-12-21 19:59:27 2019-12-21 19:59:29 t 1 1 206434 748 0.00 2019-12-21 19:57:43 2019-12-21 19:59:40 t 1 1 206437 625 0.00 2019-12-21 20:00:15 2019-12-21 20:01:43 t 1 1 206439 692 0.00 2019-12-21 20:00:23 2019-12-21 20:02:30 t 1 1 206442 711 0.00 2019-12-21 19:56:06 2019-12-21 20:03:03 t 1 1 206446 711 0.00 2019-12-21 20:03:03 2019-12-21 20:05:23 t 1 1 206449 692 0.00 2019-12-21 20:05:41 2019-12-21 20:07:40 t 1 1 206452 692 0.00 2019-12-21 20:08:51 2019-12-21 20:08:51 f 1 1 206455 692 0.00 2019-12-21 20:08:25 2019-12-21 20:10:40 t 1 1 206459 748 0.00 2019-12-21 20:08:35 2019-12-21 20:14:37 t 1 1 206466 689 0.00 2019-12-21 20:08:57 2019-12-21 20:19:37 t 1 1 206474 591 0.00 2019-12-21 20:26:42 2019-12-21 20:26:45 t 1 1 206476 689 0.00 2019-12-21 20:25:04 2019-12-21 20:29:41 t 1 1 206477 625 0.00 2019-12-21 20:02:59 2019-12-21 20:30:41 t 1 1 206479 758 0.00 2019-12-21 20:28:53 2019-12-21 20:31:59 t 1 1 206481 692 0.00 2019-12-21 20:32:49 2019-12-21 20:32:57 t 1 1 206486 692 0.00 2019-12-21 20:34:19 2019-12-21 20:34:36 t 1 1 206488 748 0.00 2019-12-21 20:35:38 2019-12-21 20:35:57 t 1 1 206489 748 0.00 2019-12-21 20:36:10 2019-12-21 20:36:22 t 1 1 206491 687 0.00 2019-12-21 20:15:09 2019-12-21 20:36:29 t 1 1 206493 758 0.00 2019-12-21 20:36:35 2019-12-21 20:36:45 t 1 1 206502 673 0.00 2019-12-21 20:23:35 2019-12-21 20:38:09 t 1 1 206507 692 0.00 2019-12-21 20:37:29 2019-12-21 20:39:41 t 1 1 206510 724 0.00 2019-12-21 20:37:46 2019-12-21 20:41:29 t 1 1 206514 516 0.00 2019-12-21 20:29:30 2019-12-21 20:44:41 t 1 1 206517 562 0.00 2019-12-21 20:38:20 2019-12-21 20:44:41 t 1 1 206520 744 0.00 2019-12-21 20:37:20 2019-12-21 20:44:41 t 1 1 206521 687 0.00 2019-12-21 20:36:59 2019-12-21 20:45:41 t 1 1 206524 481 0.00 2019-12-21 19:55:12 2019-12-21 20:45:41 t 1 1 206401 692 0.00 2019-12-21 19:47:20 2019-12-21 19:47:28 t 1 1 206402 748 0.00 2019-12-21 19:45:13 2019-12-21 19:49:55 t 1 1 206407 627 0.00 2019-12-21 19:35:25 2019-12-21 19:50:45 t 1 1 206409 625 0.00 2019-12-21 19:43:41 2019-12-21 19:50:48 t 1 1 206413 611 0.00 2019-12-21 19:50:06 2019-12-21 19:51:59 t 1 1 206414 748 0.00 2019-12-21 19:52:12 2019-12-21 19:52:19 t 1 1 206416 692 0.00 2019-12-21 19:53:05 2019-12-21 19:53:12 t 1 1 206422 692 0.00 2019-12-21 19:54:14 2019-12-21 19:54:49 t 1 1 206429 692 0.00 2019-12-21 19:58:03 2019-12-21 19:58:11 t 1 1 206440 692 0.00 2019-12-21 20:02:36 2019-12-21 20:02:53 t 1 1 206441 625 0.00 2019-12-21 20:01:43 2019-12-21 20:02:59 t 1 1 206445 692 0.00 2019-12-21 20:04:33 2019-12-21 20:04:56 t 1 1 206448 748 0.00 2019-12-21 20:05:05 2019-12-21 20:06:50 t 1 1 206454 692 0.00 2019-12-21 20:08:33 2019-12-21 20:10:40 t 1 1 206457 692 0.00 2019-12-21 20:12:41 2019-12-21 20:13:00 t 1 1 206460 692 0.00 2019-12-21 20:14:26 2019-12-21 20:14:51 t 1 1 206461 687 0.00 2019-12-21 19:51:21 2019-12-21 20:15:09 t 1 1 206462 449 0.00 2019-12-21 20:15:55 2019-12-21 20:15:55 f 1 1 206464 748 0.00 2019-12-21 20:14:55 2019-12-21 20:19:21 t 1 1 206467 692 0.00 2019-12-21 20:19:32 2019-12-21 20:19:41 t 1 1 206472 689 0.00 2019-12-21 20:19:37 2019-12-21 20:25:04 t 1 1 206473 591 0.00 2019-12-21 19:57:17 2019-12-21 20:26:42 t 1 1 206483 748 0.00 2019-12-21 20:33:14 2019-12-21 20:33:24 t 1 1 206492 748 0.00 2019-12-21 20:35:07 2019-12-21 20:36:41 t 1 1 206496 748 0.00 2019-12-21 20:37:07 2019-12-21 20:37:12 t 1 1 206498 692 0.00 2019-12-21 20:37:09 2019-12-21 20:37:23 t 1 1 206500 578 0.00 2019-12-21 20:14:49 2019-12-21 20:37:45 t 1 1 206501 562 0.00 2019-12-21 20:30:53 2019-12-21 20:38:07 t 1 1 206503 692 0.00 2019-12-21 20:38:25 2019-12-21 20:38:25 f 1 1 206506 692 0.00 2019-12-21 20:37:48 2019-12-21 20:39:41 t 1 1 206508 627 0.00 2019-12-21 19:51:18 2019-12-21 20:41:07 t 1 1 206511 758 0.00 2019-12-21 20:41:26 2019-12-21 20:41:56 t 1 1 206513 625 0.00 2019-12-21 20:30:41 2019-12-21 20:43:10 t 1 1 206516 551 0.00 2019-12-21 17:10:43 2019-12-21 20:44:41 t 1 1 206519 740 0.00 2019-12-21 20:39:25 2019-12-21 20:44:41 t 1 1 206523 734 0.00 2019-12-21 20:36:24 2019-12-21 20:45:41 t 1 1 206526 625 0.00 2019-12-21 20:43:28 2019-12-21 20:45:41 t 1 1 206528 754 0.00 2019-12-21 21:15:17 2019-12-21 21:36:38 t 1 2 206530 459 0.00 2019-12-21 22:00:11 2019-12-21 22:00:29 t 1 2 206533 220 0.00 2019-12-21 21:34:35 2019-12-21 22:12:15 t 1 2 206536 220 0.00 2019-12-22 00:14:06 2019-12-22 00:19:29 t 1 2 206537 220 0.00 2019-12-21 23:36:12 2019-12-22 01:03:50 t 1 2 206539 311 0.00 2019-12-22 02:12:36 2019-12-22 02:18:59 t 1 2 206542 392 0.00 2019-12-22 02:13:17 2019-12-22 03:00:57 t 1 2 206543 220 0.00 2019-12-22 05:56:32 2019-12-22 06:11:39 t 1 2 206550 726 0.00 2019-12-22 10:07:04 2019-12-22 10:08:09 t 1 2 206552 667 0.00 2019-12-22 10:54:42 2019-12-22 10:55:47 t 1 2 206554 683 0.00 2019-12-22 11:03:53 2019-12-22 11:04:56 t 1 2 206559 667 0.00 2019-12-22 11:29:31 2019-12-22 11:30:37 t 1 2 206562 487 0.00 2019-12-22 12:29:27 2019-12-22 12:29:28 t 1 2 206563 459 0.00 2019-12-22 13:14:28 2019-12-22 13:18:04 t 1 2 206564 656 0.00 2019-12-22 13:13:31 2019-12-22 13:31:07 t 1 2 206565 656 0.00 2019-12-22 13:44:31 2019-12-22 14:19:12 t 1 2 206567 459 0.00 2019-12-22 15:11:27 2019-12-22 15:18:02 t 1 2 206569 683 0.00 2019-12-22 15:33:53 2019-12-22 15:35:01 t 1 2 206573 392 0.00 2019-12-22 15:38:33 2019-12-22 17:03:06 t 1 2 206575 615 0.00 2019-12-22 18:24:37 2019-12-22 18:24:49 t 1 1 206577 707 0.00 2019-12-22 18:25:18 2019-12-22 18:29:56 t 1 1 206579 635 0.00 2019-12-22 18:28:45 2019-12-22 18:30:26 t 1 1 206580 748 0.00 2019-12-22 18:30:26 2019-12-22 18:30:42 t 1 1 206584 637 0.00 2019-12-22 18:29:56 2019-12-22 18:34:57 t 1 1 206588 615 0.00 2019-12-22 18:31:47 2019-12-22 18:39:33 t 1 1 206589 675 0.00 2019-12-22 18:38:05 2019-12-22 18:39:43 t 1 1 206591 763 0.00 2019-12-22 18:39:40 2019-12-22 18:40:22 t 1 1 206595 637 0.00 2019-12-22 18:34:57 2019-12-22 18:41:15 t 1 1 206598 615 0.00 2019-12-22 18:48:24 2019-12-22 18:49:11 t 1 1 206601 551 0.00 2019-12-22 18:51:28 2019-12-22 18:52:41 t 1 1 206605 637 0.00 2019-12-22 18:49:13 2019-12-22 18:54:39 t 1 1 206616 748 0.00 2019-12-22 19:08:09 2019-12-22 19:08:14 t 1 1 206617 615 0.00 2019-12-22 19:07:13 2019-12-22 19:09:54 t 1 1 206620 675 0.00 2019-12-22 19:08:34 2019-12-22 19:11:57 t 1 1 206623 637 0.00 2019-12-22 18:54:39 2019-12-22 19:14:50 t 1 1 206625 748 0.00 2019-12-22 19:16:42 2019-12-22 19:17:28 t 1 1 206628 551 0.00 2019-12-22 19:13:17 2019-12-22 19:20:48 t 1 1 206630 637 0.00 2019-12-22 19:14:49 2019-12-22 19:23:12 t 1 1 206634 392 0.00 2019-12-22 18:47:36 2019-12-22 19:27:35 t 1 2 206637 675 0.00 2019-12-22 19:27:52 2019-12-22 19:30:51 t 1 1 206638 722 0.00 2019-12-22 19:31:54 2019-12-22 19:32:07 t 1 1 206644 562 0.00 2019-12-22 19:35:44 2019-12-22 19:36:08 t 1 1 206648 722 0.00 2019-12-22 19:39:36 2019-12-22 19:40:08 t 1 1 206655 722 0.00 2019-12-22 19:44:38 2019-12-22 19:45:10 t 1 1 206658 673 0.00 2019-12-22 19:47:44 2019-12-22 19:48:29 t 1 1 206660 514 0.00 2019-12-22 19:49:45 2019-12-22 19:49:50 t 1 1 206663 514 0.00 2019-12-22 19:50:03 2019-12-22 19:51:47 t 1 1 206665 748 0.00 2019-12-22 19:53:02 2019-12-22 19:53:45 t 1 1 206677 722 0.00 2019-12-22 19:59:15 2019-12-22 19:59:52 t 1 1 206678 722 0.00 2019-12-22 20:00:09 2019-12-22 20:01:08 t 1 1 206679 711 0.00 2019-12-22 19:43:00 2019-12-22 20:02:14 t 1 1 206681 675 0.00 2019-12-22 19:58:35 2019-12-22 20:02:29 t 1 1 206683 722 0.00 2019-12-22 20:04:06 2019-12-22 20:04:50 t 1 1 206686 538 0.00 2019-12-22 19:36:08 2019-12-22 20:08:38 t 1 1 206689 748 0.00 2019-12-22 20:11:47 2019-12-22 20:12:27 t 1 1 206693 694 0.00 2019-12-22 20:14:18 2019-12-22 20:14:46 t 1 1 206694 748 0.00 2019-12-22 20:14:47 2019-12-22 20:15:38 t 1 1 206696 722 0.00 2019-12-22 20:08:51 2019-12-22 20:16:12 t 1 1 206701 722 0.00 2019-12-22 20:20:14 2019-12-22 20:25:41 t 1 1 206709 748 0.00 2019-12-22 20:41:26 2019-12-22 20:42:41 t 1 1 206711 694 0.00 2019-12-22 20:17:29 2019-12-22 20:45:07 t 1 1 206716 748 0.00 2019-12-22 20:46:57 2019-12-22 20:47:08 t 1 1 206717 724 0.00 2019-12-22 18:49:11 2019-12-22 20:48:49 t 1 1 206721 562 0.00 2019-12-22 20:51:47 2019-12-22 20:52:17 t 1 1 206722 428 0.00 2019-12-22 20:53:06 2019-12-22 20:53:06 f 1 1 206726 485 0.00 2019-12-22 20:54:10 2019-12-22 20:54:10 f 1 1 206727 428 0.00 2019-12-22 20:54:21 2019-12-22 20:54:21 f 1 1 206731 748 0.00 2019-12-22 20:56:37 2019-12-22 20:56:44 t 1 1 206733 562 0.00 2019-12-22 20:56:43 2019-12-22 20:57:03 t 1 1 206734 763 0.00 2019-12-22 20:58:28 2019-12-22 21:01:13 t 1 1 206425 689 0.00 2019-12-21 19:53:42 2019-12-21 19:56:40 t 1 1 206427 611 0.00 2019-12-21 19:51:49 2019-12-21 19:57:37 t 1 1 206430 692 0.00 2019-12-21 19:58:34 2019-12-21 19:58:35 t 1 1 206433 748 0.00 2019-12-21 19:59:24 2019-12-21 19:59:31 t 1 1 206435 748 0.00 2019-12-21 19:59:39 2019-12-21 19:59:58 t 1 1 206436 625 0.00 2019-12-21 19:50:58 2019-12-21 20:00:14 t 1 1 206438 673 0.00 2019-12-21 19:51:32 2019-12-21 20:01:50 t 1 1 206443 692 0.00 2019-12-21 20:02:59 2019-12-21 20:04:00 t 1 1 206444 748 0.00 2019-12-21 20:00:06 2019-12-21 20:04:41 t 1 1 206447 692 0.00 2019-12-21 20:05:06 2019-12-21 20:05:24 t 1 1 206450 748 0.00 2019-12-21 20:07:02 2019-12-21 20:08:02 t 1 1 206451 748 0.00 2019-12-21 20:07:19 2019-12-21 20:08:20 t 1 1 206453 689 0.00 2019-12-21 19:56:40 2019-12-21 20:08:57 t 1 1 206456 716 0.00 2019-12-21 20:06:27 2019-12-21 20:11:07 t 1 1 206458 692 0.00 2019-12-21 20:13:12 2019-12-21 20:14:20 t 1 1 206463 633 0.00 2019-12-21 19:40:24 2019-12-21 20:18:26 t 1 1 206465 692 0.00 2019-12-21 20:19:00 2019-12-21 20:19:26 t 1 1 206468 562 0.00 2019-12-21 20:18:47 2019-12-21 20:20:45 t 1 1 206469 692 0.00 2019-12-21 20:20:51 2019-12-21 20:21:53 t 1 1 206470 748 0.00 2019-12-21 20:19:21 2019-12-21 20:22:13 t 1 1 206471 692 0.00 2019-12-21 20:23:57 2019-12-21 20:25:03 t 1 1 206475 562 0.00 2019-12-21 20:26:51 2019-12-21 20:29:25 t 1 1 206478 692 0.00 2019-12-21 20:25:23 2019-12-21 20:30:58 t 1 1 206480 692 0.00 2019-12-21 20:32:25 2019-12-21 20:32:40 t 1 1 206482 748 0.00 2019-12-21 20:22:12 2019-12-21 20:33:00 t 1 1 206484 692 0.00 2019-12-21 20:33:35 2019-12-21 20:33:47 t 1 1 206485 748 0.00 2019-12-21 20:34:02 2019-12-21 20:34:09 t 1 1 206487 758 0.00 2019-12-21 20:32:37 2019-12-21 20:34:41 t 1 1 206490 734 0.00 2019-12-21 18:24:55 2019-12-21 20:36:24 t 1 1 206494 692 0.00 2019-12-21 20:34:43 2019-12-21 20:36:50 t 1 1 206495 692 0.00 2019-12-21 20:36:56 2019-12-21 20:37:03 t 1 1 206497 744 0.00 2019-12-21 20:30:54 2019-12-21 20:37:20 t 1 1 206499 724 0.00 2019-12-21 19:41:11 2019-12-21 20:37:35 t 1 1 206504 692 0.00 2019-12-21 20:38:48 2019-12-21 20:38:48 f 1 1 206505 748 0.00 2019-12-21 20:38:14 2019-12-21 20:39:27 t 1 1 206509 578 0.00 2019-12-21 20:37:45 2019-12-21 20:41:08 t 1 1 206512 689 0.00 2019-12-21 20:29:41 2019-12-21 20:42:47 t 1 1 206515 673 0.00 2019-12-21 20:38:23 2019-12-21 20:44:41 t 1 1 206518 611 0.00 2019-12-21 20:41:31 2019-12-21 20:44:41 t 1 1 206522 689 0.00 2019-12-21 20:42:47 2019-12-21 20:45:41 t 1 1 206525 748 0.00 2019-12-21 20:44:00 2019-12-21 20:45:41 t 1 1 206527 744 0.00 2019-12-21 20:44:45 2019-12-21 20:46:41 t 1 1 206540 487 0.00 2019-12-22 02:13:09 2019-12-22 02:19:44 t 1 2 206544 220 0.00 2019-12-22 06:17:08 2019-12-22 06:23:28 t 1 2 206545 459 0.00 2019-12-22 07:56:32 2019-12-22 08:27:42 t 1 2 206548 726 0.00 2019-12-22 09:57:30 2019-12-22 09:58:33 t 1 2 206555 667 0.00 2019-12-22 11:06:08 2019-12-22 11:07:12 t 1 2 206558 667 0.00 2019-12-22 11:27:28 2019-12-22 11:28:30 t 1 2 206566 498 0.00 2019-12-22 14:26:42 2019-12-22 14:29:43 t 1 2 206570 627 0.00 2019-12-22 16:33:05 2019-12-22 16:35:27 t 1 2 206571 627 0.00 2019-12-22 16:45:04 2019-12-22 16:53:27 t 1 2 206576 748 0.00 2019-12-22 18:24:49 2019-12-22 18:24:57 t 1 1 206578 748 0.00 2019-12-22 18:25:12 2019-12-22 18:30:06 t 1 1 206583 763 0.00 2019-12-22 18:34:47 2019-12-22 18:34:49 t 1 2 206587 763 0.00 2019-12-22 18:37:38 2019-12-22 18:39:06 t 1 2 206590 615 0.00 2019-12-22 18:39:33 2019-12-22 18:39:48 t 1 1 206594 551 0.00 2019-12-22 18:39:44 2019-12-22 18:40:53 t 1 1 206597 748 0.00 2019-12-22 18:43:37 2019-12-22 18:45:40 t 1 1 206599 637 0.00 2019-12-22 18:41:15 2019-12-22 18:49:13 t 1 1 206600 748 0.00 2019-12-22 18:52:07 2019-12-22 18:52:29 t 1 1 206602 748 0.00 2019-12-22 18:52:41 2019-12-22 18:52:42 t 1 1 206604 220 0.00 2019-12-22 18:32:40 2019-12-22 18:53:19 t 1 2 206607 726 0.00 2019-12-22 18:49:11 2019-12-22 19:00:07 t 1 1 206611 562 0.00 2019-12-22 19:02:14 2019-12-22 19:05:05 t 1 1 206614 578 0.00 2019-12-22 19:03:37 2019-12-22 19:07:56 t 1 1 206619 748 0.00 2019-12-22 19:11:46 2019-12-22 19:11:54 t 1 1 206621 748 0.00 2019-12-22 19:12:06 2019-12-22 19:12:10 t 1 1 206626 748 0.00 2019-12-22 19:17:33 2019-12-22 19:17:35 t 1 1 206629 722 0.00 2019-12-22 19:13:46 2019-12-22 19:22:01 t 1 1 206632 675 0.00 2019-12-22 19:22:32 2019-12-22 19:24:20 t 1 1 206633 748 0.00 2019-12-22 19:24:31 2019-12-22 19:25:43 t 1 1 206636 722 0.00 2019-12-22 19:22:01 2019-12-22 19:29:12 t 1 1 206640 722 0.00 2019-12-22 19:33:09 2019-12-22 19:33:38 t 1 1 206641 722 0.00 2019-12-22 19:34:06 2019-12-22 19:34:25 t 1 1 206645 675 0.00 2019-12-22 19:35:11 2019-12-22 19:36:44 t 1 1 206650 722 0.00 2019-12-22 19:40:31 2019-12-22 19:41:13 t 1 1 206651 722 0.00 2019-12-22 19:41:42 2019-12-22 19:42:14 t 1 1 206653 722 0.00 2019-12-22 19:43:24 2019-12-22 19:43:25 t 1 1 206657 722 0.00 2019-12-22 19:45:51 2019-12-22 19:46:07 t 1 1 206659 722 0.00 2019-12-22 19:48:11 2019-12-22 19:48:33 t 1 1 206664 722 0.00 2019-12-22 19:53:14 2019-12-22 19:53:35 t 1 1 206666 748 0.00 2019-12-22 19:54:04 2019-12-22 19:54:11 t 1 1 206669 562 0.00 2019-12-22 19:55:13 2019-12-22 19:55:35 t 1 1 206670 544 0.00 2019-12-22 19:56:04 2019-12-22 19:56:26 t 1 1 206671 754 0.00 2019-12-22 19:45:12 2019-12-22 19:56:57 t 1 2 206672 722 0.00 2019-12-22 19:55:37 2019-12-22 19:57:34 t 1 1 206674 748 0.00 2019-12-22 19:56:35 2019-12-22 19:58:04 t 1 1 206676 748 0.00 2019-12-22 19:58:15 2019-12-22 19:59:21 t 1 1 206684 562 0.00 2019-12-22 20:06:16 2019-12-22 20:06:25 t 1 1 206685 722 0.00 2019-12-22 20:05:22 2019-12-22 20:08:32 t 1 1 206687 711 0.00 2019-12-22 20:06:42 2019-12-22 20:08:51 t 1 1 206688 545 0.00 2019-12-22 20:08:13 2019-12-22 20:11:40 t 1 1 206690 748 0.00 2019-12-22 20:12:34 2019-12-22 20:13:18 t 1 1 206691 748 0.00 2019-12-22 20:13:31 2019-12-22 20:13:45 t 1 1 206700 748 0.00 2019-12-22 20:14:07 2019-12-22 20:24:24 t 1 1 206703 562 0.00 2019-12-22 20:26:21 2019-12-22 20:27:39 t 1 1 206704 748 0.00 2019-12-22 20:32:58 2019-12-22 20:34:13 t 1 1 206705 675 0.00 2019-12-22 20:33:01 2019-12-22 20:35:12 t 1 1 206706 722 0.00 2019-12-22 20:27:39 2019-12-22 20:36:31 t 1 1 206710 748 0.00 2019-12-22 20:43:34 2019-12-22 20:44:38 t 1 1 206712 748 0.00 2019-12-22 20:45:07 2019-12-22 20:45:17 t 1 1 206713 748 0.00 2019-12-22 20:45:29 2019-12-22 20:45:52 t 1 1 206720 633 0.00 2019-12-22 19:27:58 2019-12-22 20:51:11 t 1 1 206723 428 0.00 2019-12-22 20:53:12 2019-12-22 20:53:12 f 1 1 206724 428 0.00 2019-12-22 20:53:32 2019-12-22 20:53:32 f 1 1 206729 615 0.00 2019-12-22 20:54:19 2019-12-22 20:55:23 t 1 1 206730 734 0.00 2019-12-22 20:50:12 2019-12-22 20:56:00 t 1 1 206529 498 0.00 2019-12-21 21:30:38 2019-12-21 21:38:44 t 1 2 206531 459 0.00 2019-12-21 22:00:55 2019-12-21 22:03:01 t 1 2 206532 498 0.00 2019-12-21 21:43:25 2019-12-21 22:03:36 t 1 2 206534 487 0.00 2019-12-21 23:33:35 2019-12-21 23:39:11 t 1 2 206535 754 0.00 2019-12-21 22:21:52 2019-12-22 00:04:39 t 1 2 206538 220 0.00 2019-12-22 01:20:44 2019-12-22 01:25:20 t 1 2 206541 311 0.00 2019-12-22 02:26:03 2019-12-22 02:39:26 t 1 2 206546 311 0.00 2019-12-22 09:12:20 2019-12-22 09:33:43 t 1 2 206547 220 0.00 2019-12-22 09:14:21 2019-12-22 09:37:30 t 1 2 206549 726 0.00 2019-12-22 10:00:14 2019-12-22 10:01:19 t 1 2 206551 498 0.00 2019-12-22 09:36:17 2019-12-22 10:13:39 t 1 2 206553 683 0.00 2019-12-22 11:01:22 2019-12-22 11:02:25 t 1 2 206556 667 0.00 2019-12-22 11:23:46 2019-12-22 11:24:50 t 1 2 206557 656 0.00 2019-12-22 11:24:58 2019-12-22 11:25:12 t 1 2 206560 656 0.00 2019-12-22 11:25:42 2019-12-22 11:30:38 t 1 2 206561 220 0.00 2019-12-22 10:34:27 2019-12-22 12:22:32 t 1 2 206568 498 0.00 2019-12-22 15:06:40 2019-12-22 15:32:45 t 1 2 206572 754 0.00 2019-12-22 14:58:55 2019-12-22 16:56:43 t 1 2 206574 627 0.00 2019-12-22 16:54:49 2019-12-22 17:19:13 t 1 2 206581 748 0.00 2019-12-22 18:30:53 2019-12-22 18:31:39 t 1 1 206582 763 0.00 2019-12-22 18:34:25 2019-12-22 18:34:26 t 1 1 206585 763 0.00 2019-12-22 18:35:28 2019-12-22 18:35:30 t 1 2 206586 656 0.00 2019-12-22 18:24:37 2019-12-22 18:38:45 t 1 2 206592 726 0.00 2019-12-22 18:39:18 2019-12-22 18:40:25 t 1 2 206593 748 0.00 2019-12-22 18:40:45 2019-12-22 18:40:50 t 1 1 206596 748 0.00 2019-12-22 18:42:59 2019-12-22 18:43:59 t 1 1 206603 748 0.00 2019-12-22 18:52:49 2019-12-22 18:52:50 t 1 1 206606 748 0.00 2019-12-22 18:55:15 2019-12-22 18:55:34 t 1 1 206608 562 0.00 2019-12-22 19:01:48 2019-12-22 19:01:51 t 1 1 206609 578 0.00 2019-12-22 18:59:11 2019-12-22 19:03:00 t 1 1 206610 551 0.00 2019-12-22 19:03:00 2019-12-22 19:03:37 t 1 1 206612 748 0.00 2019-12-22 19:05:05 2019-12-22 19:05:19 t 1 1 206613 615 0.00 2019-12-22 19:00:07 2019-12-22 19:06:59 t 1 1 206615 748 0.00 2019-12-22 19:07:47 2019-12-22 19:07:57 t 1 1 206618 748 0.00 2019-12-22 19:09:45 2019-12-22 19:10:15 t 1 1 206622 578 0.00 2019-12-22 19:07:56 2019-12-22 19:13:17 t 1 1 206624 675 0.00 2019-12-22 19:14:30 2019-12-22 19:17:08 t 1 1 206627 562 0.00 2019-12-22 19:19:16 2019-12-22 19:19:40 t 1 1 206631 748 0.00 2019-12-22 19:23:21 2019-12-22 19:23:45 t 1 1 206635 562 0.00 2019-12-22 19:24:29 2019-12-22 19:29:08 t 1 1 206639 637 0.00 2019-12-22 19:23:23 2019-12-22 19:32:13 t 1 1 206642 418 0.00 2019-12-22 19:34:25 2019-12-22 19:34:25 f 1 1 206643 637 0.00 2019-12-22 19:33:47 2019-12-22 19:34:48 t 1 1 206646 722 0.00 2019-12-22 19:36:44 2019-12-22 19:37:06 t 1 1 206647 675 0.00 2019-12-22 19:38:42 2019-12-22 19:39:36 t 1 1 206649 562 0.00 2019-12-22 19:40:36 2019-12-22 19:41:01 t 1 1 206652 711 0.00 2019-12-22 19:26:38 2019-12-22 19:43:00 t 1 1 206654 748 0.00 2019-12-22 19:43:17 2019-12-22 19:44:38 t 1 1 206656 562 0.00 2019-12-22 19:44:32 2019-12-22 19:45:10 t 1 1 206661 748 0.00 2019-12-22 19:48:00 2019-12-22 19:50:03 t 1 1 206662 675 0.00 2019-12-22 19:48:29 2019-12-22 19:50:39 t 1 1 206667 722 0.00 2019-12-22 19:54:31 2019-12-22 19:55:04 t 1 1 206668 748 0.00 2019-12-22 19:54:23 2019-12-22 19:55:32 t 1 1 206673 562 0.00 2019-12-22 19:57:02 2019-12-22 19:57:57 t 1 1 206675 722 0.00 2019-12-22 19:57:40 2019-12-22 19:58:25 t 1 1 206680 514 0.00 2019-12-22 19:59:21 2019-12-22 20:02:19 t 1 1 206682 722 0.00 2019-12-22 20:01:15 2019-12-22 20:02:40 t 1 1 206692 514 0.00 2019-12-22 20:11:41 2019-12-22 20:13:59 t 1 1 206695 514 0.00 2019-12-22 20:13:58 2019-12-22 20:16:02 t 1 1 206697 748 0.00 2019-12-22 20:16:57 2019-12-22 20:16:57 f 1 1 206698 711 0.00 2019-12-22 20:16:12 2019-12-22 20:19:02 t 1 1 206699 722 0.00 2019-12-22 20:18:58 2019-12-22 20:19:58 t 1 1 206702 562 0.00 2019-12-22 20:08:41 2019-12-22 20:26:04 t 1 1 206707 726 0.00 2019-12-22 20:23:22 2019-12-22 20:36:50 t 1 1 206708 707 0.00 2019-12-22 20:18:20 2019-12-22 20:38:43 t 1 1 206714 748 0.00 2019-12-22 20:46:00 2019-12-22 20:46:25 t 1 1 206715 722 0.00 2019-12-22 20:36:31 2019-12-22 20:47:01 t 1 1 206718 722 0.00 2019-12-22 20:47:01 2019-12-22 20:49:48 t 1 1 206719 748 0.00 2019-12-22 20:49:22 2019-12-22 20:50:29 t 1 1 206725 428 0.00 2019-12-22 20:53:55 2019-12-22 20:53:55 f 1 1 206728 485 0.00 2019-12-22 20:54:36 2019-12-22 20:54:36 f 1 1 206732 722 0.00 2019-12-22 20:55:23 2019-12-22 20:56:46 t 1 1 206735 722 0.00 2019-12-22 21:01:19 2019-12-22 21:01:38 t 1 1 206736 763 0.00 2019-12-22 21:01:41 2019-12-22 21:01:58 t 1 1 206737 562 0.00 2019-12-22 21:02:40 2019-12-22 21:02:59 t 1 1 206738 722 0.00 2019-12-22 21:04:22 2019-12-22 21:04:54 t 1 1 206739 722 0.00 2019-12-22 21:02:20 2019-12-22 21:05:21 t 1 1 206740 722 0.00 2019-12-22 21:05:27 2019-12-22 21:05:40 t 1 1 206741 562 0.00 2019-12-22 21:04:13 2019-12-22 21:06:29 t 1 1 206742 748 0.00 2019-12-22 21:05:16 2019-12-22 21:06:42 t 1 1 206743 748 0.00 2019-12-22 21:07:48 2019-12-22 21:07:59 t 1 1 206744 763 0.00 2019-12-22 21:05:22 2019-12-22 21:08:15 t 1 1 206745 625 0.00 2019-12-22 20:40:42 2019-12-22 21:09:28 t 1 1 206746 562 0.00 2019-12-22 21:09:02 2019-12-22 21:09:34 t 1 1 206747 748 0.00 2019-12-22 21:09:55 2019-12-22 21:10:56 t 1 1 206748 748 0.00 2019-12-22 21:11:38 2019-12-22 21:11:47 t 1 1 206749 748 0.00 2019-12-22 21:11:55 2019-12-22 21:11:56 t 1 1 206750 722 0.00 2019-12-22 21:05:48 2019-12-22 21:13:01 t 1 1 206751 748 0.00 2019-12-22 21:13:07 2019-12-22 21:13:07 f 1 1 206752 673 0.00 2019-12-22 21:01:32 2019-12-22 21:13:25 t 1 1 206753 675 0.00 2019-12-22 21:09:34 2019-12-22 21:13:33 t 1 1 206754 748 0.00 2019-12-22 21:12:27 2019-12-22 21:14:30 t 1 1 206755 763 0.00 2019-12-22 21:08:18 2019-12-22 21:15:31 t 1 1 206756 707 0.00 2019-12-22 21:03:55 2019-12-22 21:17:44 t 1 1 206757 487 0.00 2019-12-22 21:03:55 2019-12-22 21:19:05 t 1 2 206758 633 0.00 2019-12-22 20:51:11 2019-12-22 21:19:48 t 1 1 206759 562 0.00 2019-12-22 21:19:37 2019-12-22 21:19:52 t 1 1 206760 748 0.00 2019-12-22 20:16:02 2019-12-22 21:21:55 t 1 1 206761 562 0.00 2019-12-22 21:21:08 2019-12-22 21:22:01 t 1 1 206762 763 0.00 2019-12-22 21:22:59 2019-12-22 21:25:58 t 1 1 206763 562 0.00 2019-12-22 21:27:06 2019-12-22 21:29:21 t 1 1 206764 763 0.00 2019-12-22 21:25:57 2019-12-22 21:29:29 t 1 1 206765 763 0.00 2019-12-22 21:29:33 2019-12-22 21:30:08 t 1 1 206766 763 0.00 2019-12-22 21:30:11 2019-12-22 21:33:01 t 1 1 206767 675 0.00 2019-12-22 21:33:32 2019-12-22 21:35:40 t 1 1 206768 763 0.00 2019-12-22 21:34:27 2019-12-22 21:39:13 t 1 1 206769 562 0.00 2019-12-22 21:36:54 2019-12-22 21:39:19 t 1 1 206770 635 0.00 2019-12-22 21:36:40 2019-12-22 21:41:28 t 1 1 206775 562 0.00 2019-12-22 21:03:13 2019-12-22 21:53:28 t 1 1 206776 545 0.00 2019-12-22 20:33:43 2019-12-22 21:54:20 t 1 1 206781 551 0.00 2019-12-22 21:15:33 2019-12-22 22:02:20 t 1 1 206783 691 0.00 2019-12-22 22:03:01 2019-12-22 22:04:30 t 1 1 206785 689 0.00 2019-12-22 22:03:07 2019-12-22 22:06:55 t 1 1 206787 498 0.00 2019-12-22 21:53:49 2019-12-22 22:07:32 t 1 2 206790 656 0.00 2019-12-22 21:38:22 2019-12-22 22:15:27 t 1 2 206791 551 0.00 2019-12-22 22:02:20 2019-12-22 22:17:07 t 1 1 206793 562 0.00 2019-12-22 22:20:00 2019-12-22 22:20:32 t 1 1 206794 562 0.00 2019-12-22 22:21:18 2019-12-22 22:21:58 t 1 1 206798 734 0.00 2019-12-22 22:19:06 2019-12-22 22:24:21 t 1 1 206801 562 0.00 2019-12-22 22:26:49 2019-12-22 22:27:20 t 1 1 206803 691 0.00 2019-12-22 22:27:07 2019-12-22 22:28:12 t 1 1 206806 709 0.00 2019-12-22 22:19:22 2019-12-22 22:31:47 t 1 1 206807 654 0.00 2019-12-22 21:50:25 2019-12-22 22:32:50 t 1 1 206811 691 0.00 2019-12-22 22:35:44 2019-12-22 22:36:50 t 1 1 206813 654 0.00 2019-12-22 22:32:50 2019-12-22 22:40:44 t 1 1 206817 758 0.00 2019-12-22 22:35:33 2019-12-22 22:43:00 t 1 1 206822 758 0.00 2019-12-22 22:43:29 2019-12-22 22:50:26 t 1 1 206824 656 0.00 2019-12-22 22:42:47 2019-12-22 22:51:01 t 1 1 206825 687 0.00 2019-12-22 22:37:01 2019-12-22 22:51:40 t 1 1 206827 562 0.00 2019-12-22 22:56:22 2019-12-22 22:56:45 t 1 1 206833 691 0.00 2019-12-22 23:02:39 2019-12-22 23:03:47 t 1 1 206835 654 0.00 2019-12-22 22:54:12 2019-12-22 23:04:23 t 1 1 206841 562 0.00 2019-12-22 22:24:03 2019-12-22 23:08:54 t 1 1 206842 673 0.00 2019-12-22 23:07:05 2019-12-22 23:11:02 t 1 1 206844 562 0.00 2019-12-22 23:17:49 2019-12-22 23:18:16 t 1 1 206847 679 0.00 2019-12-22 22:55:26 2019-12-22 23:23:49 t 1 1 206857 578 0.00 2019-12-22 23:22:27 2019-12-22 23:46:09 t 1 1 206862 687 0.00 2019-12-22 22:52:19 2019-12-22 23:59:22 t 1 1 206872 483 0.00 2019-12-23 00:28:44 2019-12-23 00:28:44 f 1 1 206873 687 0.00 2019-12-23 00:05:16 2019-12-23 00:29:47 t 1 1 206884 679 0.00 2019-12-23 00:51:47 2019-12-23 01:04:48 t 1 1 206885 562 0.00 2019-12-23 01:13:01 2019-12-23 01:13:10 t 1 1 206891 654 0.00 2019-12-23 01:25:15 2019-12-23 01:38:32 t 1 1 206896 654 0.00 2019-12-23 01:38:32 2019-12-23 01:52:44 t 1 1 206897 562 0.00 2019-12-23 01:53:01 2019-12-23 01:53:07 t 1 1 206901 654 0.00 2019-12-23 01:52:44 2019-12-23 02:01:07 t 1 1 206903 562 0.00 2019-12-23 02:03:34 2019-12-23 02:03:51 t 1 1 206905 687 0.00 2019-12-23 02:04:43 2019-12-23 02:05:20 t 1 1 206906 687 0.00 2019-12-23 02:06:08 2019-12-23 02:06:23 t 1 1 206909 544 0.00 2019-12-23 00:37:52 2019-12-23 02:11:45 t 1 1 206910 562 0.00 2019-12-23 02:14:13 2019-12-23 02:14:39 t 1 1 206915 687 0.00 2019-12-23 02:21:36 2019-12-23 02:31:53 t 1 1 206919 687 0.00 2019-12-23 02:37:23 2019-12-23 02:43:22 t 1 1 206921 687 0.00 2019-12-23 02:44:53 2019-12-23 02:45:23 t 1 1 206923 675 0.00 2019-12-23 02:45:23 2019-12-23 02:51:49 t 1 1 206926 562 0.00 2019-12-23 03:08:33 2019-12-23 03:08:45 t 1 1 206929 675 0.00 2019-12-23 03:20:18 2019-12-23 03:26:30 t 1 1 206934 562 0.00 2019-12-23 03:49:49 2019-12-23 03:50:10 t 1 1 206937 675 0.00 2019-12-23 04:01:52 2019-12-23 04:03:19 t 1 1 206940 562 0.00 2019-12-23 04:22:15 2019-12-23 04:22:25 t 1 1 206943 562 0.00 2019-12-23 04:32:55 2019-12-23 04:33:19 t 1 1 206944 562 0.00 2019-12-23 04:43:51 2019-12-23 04:44:03 t 1 1 206947 691 0.00 2019-12-23 05:15:07 2019-12-23 05:15:16 t 1 1 206950 691 0.00 2019-12-23 05:15:44 2019-12-23 05:16:46 t 1 1 206958 562 0.00 2019-12-23 05:48:21 2019-12-23 05:48:30 t 1 1 206960 675 0.00 2019-12-23 05:56:03 2019-12-23 05:58:52 t 1 1 206963 675 0.00 2019-12-23 06:07:04 2019-12-23 06:10:42 t 1 1 206966 562 0.00 2019-12-23 06:31:21 2019-12-23 06:31:30 t 1 1 206967 562 0.00 2019-12-23 06:41:55 2019-12-23 06:42:15 t 1 1 206970 707 0.00 2019-12-23 06:29:41 2019-12-23 06:46:03 t 1 1 206972 707 0.00 2019-12-23 06:46:19 2019-12-23 06:53:23 t 1 1 206978 625 0.00 2019-12-23 06:53:23 2019-12-23 07:08:02 t 1 1 206981 545 0.00 2019-12-23 07:13:57 2019-12-23 07:15:11 t 1 1 206982 545 0.00 2019-12-23 07:15:18 2019-12-23 07:15:56 t 1 1 206983 562 0.00 2019-12-23 07:25:02 2019-12-23 07:25:23 t 1 1 206989 654 0.00 2019-12-23 07:38:10 2019-12-23 07:56:41 t 1 1 206994 758 0.00 2019-12-23 07:51:03 2019-12-23 08:06:25 t 1 1 206995 625 0.00 2019-12-23 07:56:41 2019-12-23 08:06:49 t 1 1 206997 562 0.00 2019-12-23 08:07:57 2019-12-23 08:08:17 t 1 1 206998 654 0.00 2019-12-23 08:08:49 2019-12-23 08:09:15 t 1 1 206999 654 0.00 2019-12-23 08:11:09 2019-12-23 08:11:51 t 1 1 207000 654 0.00 2019-12-23 08:11:59 2019-12-23 08:13:00 t 1 1 207001 687 0.00 2019-12-23 08:06:49 2019-12-23 08:18:38 t 1 1 207003 758 0.00 2019-12-23 08:06:25 2019-12-23 08:21:20 t 1 1 207010 722 0.00 2019-12-23 08:33:19 2019-12-23 08:33:23 t 1 1 207011 615 0.00 2019-12-23 08:30:46 2019-12-23 08:36:02 t 1 1 207024 562 0.00 2019-12-23 08:49:39 2019-12-23 09:00:19 t 1 1 207030 675 0.00 2019-12-23 09:08:17 2019-12-23 09:11:38 t 1 1 207033 611 0.00 2019-12-23 09:01:57 2019-12-23 09:13:56 t 1 1 207035 675 0.00 2019-12-23 09:15:06 2019-12-23 09:21:07 t 1 1 207036 683 0.00 2019-12-23 09:23:16 2019-12-23 09:24:20 t 1 2 207037 752 0.00 2019-12-23 08:45:47 2019-12-23 09:27:07 t 1 1 207039 637 0.00 2019-12-23 09:15:57 2019-12-23 09:29:16 t 1 1 207044 591 0.00 2019-12-23 09:19:58 2019-12-23 09:38:29 t 1 1 207046 514 0.00 2019-12-23 09:28:15 2019-12-23 09:45:11 t 1 1 207049 748 0.00 2019-12-23 09:41:35 2019-12-23 09:46:06 t 1 1 207056 748 0.00 2019-12-23 09:51:15 2019-12-23 09:51:19 t 1 1 207057 748 0.00 2019-12-23 09:54:00 2019-12-23 09:55:27 t 1 1 207060 591 0.00 2019-12-23 09:38:30 2019-12-23 09:57:00 t 1 1 207062 568 0.00 2019-12-23 09:57:48 2019-12-23 09:58:24 t 1 1 207067 562 0.00 2019-12-23 10:02:08 2019-12-23 10:02:10 t 1 1 207068 611 0.00 2019-12-23 10:02:36 2019-12-23 10:03:29 t 1 1 207069 748 0.00 2019-12-23 10:03:26 2019-12-23 10:03:53 t 1 1 207073 681 0.00 2019-12-23 09:02:08 2019-12-23 10:05:57 t 1 1 207075 748 0.00 2019-12-23 10:07:01 2019-12-23 10:07:06 t 1 1 207077 748 0.00 2019-12-23 10:08:53 2019-12-23 10:09:00 t 1 1 207079 748 0.00 2019-12-23 10:09:23 2019-12-23 10:09:25 t 1 1 207080 748 0.00 2019-12-23 10:09:00 2019-12-23 10:10:00 t 1 1 207081 748 0.00 2019-12-23 10:10:15 2019-12-23 10:10:22 t 1 1 207082 748 0.00 2019-12-23 10:10:36 2019-12-23 10:10:55 t 1 1 207083 694 0.00 2019-12-23 09:33:53 2019-12-23 10:11:57 t 1 1 207084 675 0.00 2019-12-23 10:07:36 2019-12-23 10:12:14 t 1 1 207085 615 0.00 2019-12-23 10:03:57 2019-12-23 10:12:35 t 1 1 207086 694 0.00 2019-12-23 10:11:56 2019-12-23 10:13:37 t 1 1 206771 763 0.00 2019-12-22 21:39:14 2019-12-22 21:42:56 t 1 1 206772 654 0.00 2019-12-22 21:37:18 2019-12-22 21:47:58 t 1 1 206773 744 0.00 2019-12-22 21:47:58 2019-12-22 21:50:25 t 1 1 206774 683 0.00 2019-12-22 21:49:24 2019-12-22 21:50:32 t 1 2 206779 528 0.00 2019-12-22 21:58:05 2019-12-22 21:58:11 t 1 1 206780 691 0.00 2019-12-22 22:01:27 2019-12-22 22:01:58 t 1 1 206786 649 0.00 2019-12-22 21:44:45 2019-12-22 22:07:30 t 1 1 206795 487 0.00 2019-12-22 22:22:07 2019-12-22 22:22:18 t 1 2 206802 675 0.00 2019-12-22 22:26:33 2019-12-22 22:28:10 t 1 1 206804 656 0.00 2019-12-22 22:24:13 2019-12-22 22:28:35 t 1 1 206805 392 0.00 2019-12-22 22:05:51 2019-12-22 22:30:04 t 1 2 206808 707 0.00 2019-12-22 22:01:20 2019-12-22 22:33:32 t 1 1 206809 754 0.00 2019-12-22 20:06:05 2019-12-22 22:34:41 t 1 2 206814 673 0.00 2019-12-22 21:23:49 2019-12-22 22:41:06 t 1 1 206815 654 0.00 2019-12-22 22:41:02 2019-12-22 22:42:18 t 1 1 206818 562 0.00 2019-12-22 22:45:35 2019-12-22 22:46:02 t 1 1 206819 392 0.00 2019-12-22 22:37:30 2019-12-22 22:48:21 t 1 2 206823 675 0.00 2019-12-22 22:43:59 2019-12-22 22:50:34 t 1 1 206829 675 0.00 2019-12-22 22:54:54 2019-12-22 22:57:47 t 1 1 206831 656 0.00 2019-12-22 22:51:01 2019-12-22 22:59:55 t 1 1 206834 392 0.00 2019-12-22 23:00:31 2019-12-22 23:04:20 t 1 2 206838 673 0.00 2019-12-22 22:50:16 2019-12-22 23:06:54 t 1 1 206839 691 0.00 2019-12-22 23:06:11 2019-12-22 23:07:19 t 1 1 206848 754 0.00 2019-12-22 23:09:41 2019-12-22 23:25:22 t 1 2 206849 562 0.00 2019-12-22 23:25:46 2019-12-22 23:25:55 t 1 1 206850 625 0.00 2019-12-22 21:09:28 2019-12-22 23:26:36 t 1 1 206853 654 0.00 2019-12-22 23:23:42 2019-12-22 23:36:14 t 1 1 206856 679 0.00 2019-12-22 23:23:49 2019-12-22 23:42:04 t 1 1 206860 562 0.00 2019-12-22 23:57:35 2019-12-22 23:58:02 t 1 1 206864 654 0.00 2019-12-23 00:01:45 2019-12-23 00:05:09 t 1 1 206867 679 0.00 2019-12-22 23:59:07 2019-12-23 00:14:44 t 1 1 206868 562 0.00 2019-12-23 00:19:12 2019-12-23 00:19:31 t 1 1 206869 679 0.00 2019-12-23 00:14:44 2019-12-23 00:23:34 t 1 1 206870 538 0.00 2019-12-23 00:19:37 2019-12-23 00:27:22 t 1 1 206871 514 0.00 2019-12-23 00:06:47 2019-12-23 00:28:09 t 1 1 206874 562 0.00 2019-12-23 00:29:57 2019-12-23 00:30:12 t 1 1 206875 687 0.00 2019-12-23 00:30:15 2019-12-23 00:31:07 t 1 1 206876 220 0.00 2019-12-23 00:25:32 2019-12-23 00:32:07 t 1 2 206877 654 0.00 2019-12-23 00:27:22 2019-12-23 00:33:30 t 1 1 206880 562 0.00 2019-12-23 00:40:34 2019-12-23 00:41:03 t 1 1 206881 562 0.00 2019-12-23 00:51:23 2019-12-23 00:51:44 t 1 1 206882 754 0.00 2019-12-22 23:26:30 2019-12-23 01:00:08 t 1 2 206886 679 0.00 2019-12-23 01:04:48 2019-12-23 01:13:58 t 1 1 206887 562 0.00 2019-12-23 01:23:35 2019-12-23 01:23:55 t 1 1 206888 654 0.00 2019-12-23 01:04:23 2019-12-23 01:25:15 t 1 1 206895 675 0.00 2019-12-23 01:48:04 2019-12-23 01:51:23 t 1 1 206898 675 0.00 2019-12-23 01:52:39 2019-12-23 01:55:07 t 1 1 206902 687 0.00 2019-12-23 02:00:43 2019-12-23 02:03:35 t 1 1 206908 675 0.00 2019-12-23 02:04:46 2019-12-23 02:09:56 t 1 1 206911 687 0.00 2019-12-23 02:10:00 2019-12-23 02:16:02 t 1 1 206913 562 0.00 2019-12-23 02:25:18 2019-12-23 02:25:29 t 1 1 206914 675 0.00 2019-12-23 02:22:22 2019-12-23 02:27:29 t 1 1 206916 562 0.00 2019-12-23 02:35:57 2019-12-23 02:36:12 t 1 1 206922 562 0.00 2019-12-23 02:46:44 2019-12-23 02:47:18 t 1 1 206924 675 0.00 2019-12-23 02:53:10 2019-12-23 02:57:16 t 1 1 206925 562 0.00 2019-12-23 02:57:48 2019-12-23 02:58:02 t 1 1 206928 675 0.00 2019-12-23 03:07:55 2019-12-23 03:20:12 t 1 1 206932 675 0.00 2019-12-23 03:36:38 2019-12-23 03:39:05 t 1 1 206935 675 0.00 2019-12-23 03:44:05 2019-12-23 04:00:38 t 1 1 206938 562 0.00 2019-12-23 04:11:33 2019-12-23 04:11:43 t 1 1 206939 675 0.00 2019-12-23 04:14:55 2019-12-23 04:15:25 t 1 1 206941 675 0.00 2019-12-23 04:15:30 2019-12-23 04:32:10 t 1 1 206942 675 0.00 2019-12-23 04:32:10 2019-12-23 04:32:55 t 1 1 206945 562 0.00 2019-12-23 04:54:33 2019-12-23 04:54:42 t 1 1 206948 562 0.00 2019-12-23 05:16:04 2019-12-23 05:16:13 t 1 1 206952 611 0.00 2019-12-23 05:16:29 2019-12-23 05:17:37 t 1 1 206955 562 0.00 2019-12-23 05:26:48 2019-12-23 05:26:58 t 1 1 206956 562 0.00 2019-12-23 05:37:29 2019-12-23 05:37:41 t 1 1 206959 675 0.00 2019-12-23 05:26:55 2019-12-23 05:56:03 t 1 1 206962 562 0.00 2019-12-23 06:09:35 2019-12-23 06:09:58 t 1 1 206964 562 0.00 2019-12-23 06:20:24 2019-12-23 06:20:45 t 1 1 206969 545 0.00 2019-12-23 06:41:45 2019-12-23 06:44:04 t 1 1 206971 562 0.00 2019-12-23 06:52:39 2019-12-23 06:53:01 t 1 1 206974 656 0.00 2019-12-23 06:19:36 2019-12-23 06:55:34 t 1 1 206975 654 0.00 2019-12-23 06:54:39 2019-12-23 06:57:37 t 1 1 206976 562 0.00 2019-12-23 07:03:39 2019-12-23 07:03:46 t 1 1 206985 562 0.00 2019-12-23 07:35:43 2019-12-23 07:36:10 t 1 1 206987 562 0.00 2019-12-23 07:46:27 2019-12-23 07:46:50 t 1 1 206988 758 0.00 2019-12-23 07:25:03 2019-12-23 07:51:03 t 1 1 206990 752 0.00 2019-12-23 07:43:21 2019-12-23 07:56:42 t 1 1 206993 687 0.00 2019-12-23 07:59:18 2019-12-23 08:03:57 t 1 1 207006 562 0.00 2019-12-23 08:26:30 2019-12-23 08:27:37 t 1 1 207008 654 0.00 2019-12-23 08:29:41 2019-12-23 08:31:43 t 1 1 207009 654 0.00 2019-12-23 08:32:26 2019-12-23 08:33:19 t 1 1 207012 591 0.00 2019-12-23 08:07:12 2019-12-23 08:37:45 t 1 1 207014 615 0.00 2019-12-23 08:36:32 2019-12-23 08:38:47 t 1 1 207015 562 0.00 2019-12-23 08:34:51 2019-12-23 08:39:32 t 1 1 207016 758 0.00 2019-12-23 08:21:20 2019-12-23 08:43:28 t 1 1 207020 758 0.00 2019-12-23 08:43:28 2019-12-23 08:47:45 t 1 1 207021 562 0.00 2019-12-23 08:48:24 2019-12-23 08:48:31 t 1 1 207025 681 0.00 2019-12-23 06:47:20 2019-12-23 09:02:08 t 1 1 207026 514 0.00 2019-12-23 05:21:58 2019-12-23 09:07:09 t 1 1 207029 722 0.00 2019-12-23 09:10:19 2019-12-23 09:10:50 t 1 1 207031 615 0.00 2019-12-23 08:51:25 2019-12-23 09:13:33 t 1 1 207040 707 0.00 2019-12-23 09:21:51 2019-12-23 09:29:52 t 1 1 207041 750 0.00 2019-12-23 09:24:46 2019-12-23 09:33:30 t 1 1 207043 562 0.00 2019-12-23 09:34:55 2019-12-23 09:35:17 t 1 1 207047 675 0.00 2019-12-23 09:39:08 2019-12-23 09:45:14 t 1 1 207048 631 0.00 2019-12-23 09:42:50 2019-12-23 09:45:26 t 1 1 207051 538 0.00 2019-12-23 09:42:52 2019-12-23 09:46:42 t 1 1 207052 748 0.00 2019-12-23 09:47:44 2019-12-23 09:48:18 t 1 1 207053 611 0.00 2019-12-23 09:46:15 2019-12-23 09:48:34 t 1 1 207055 748 0.00 2019-12-23 09:48:32 2019-12-23 09:51:03 t 1 1 207059 562 0.00 2019-12-23 09:55:37 2019-12-23 09:56:03 t 1 1 207061 707 0.00 2019-12-23 09:30:00 2019-12-23 09:57:06 t 1 1 207064 748 0.00 2019-12-23 09:58:52 2019-12-23 09:59:04 t 1 1 207065 675 0.00 2019-12-23 09:55:37 2019-12-23 09:59:31 t 1 1 206777 311 0.00 2019-12-22 21:14:19 2019-12-22 21:54:42 t 1 2 206778 220 0.00 2019-12-22 21:47:50 2019-12-22 21:57:18 t 1 1 206782 691 0.00 2019-12-22 22:01:57 2019-12-22 22:03:02 t 1 1 206784 591 0.00 2019-12-22 21:13:27 2019-12-22 22:04:30 t 1 1 206788 545 0.00 2019-12-22 21:54:20 2019-12-22 22:07:40 t 1 1 206789 687 0.00 2019-12-22 22:08:33 2019-12-22 22:14:47 t 1 1 206792 562 0.00 2019-12-22 21:57:18 2019-12-22 22:19:03 t 1 1 206796 667 0.00 2019-12-22 22:19:48 2019-12-22 22:23:06 t 1 2 206797 591 0.00 2019-12-22 22:04:33 2019-12-22 22:24:13 t 1 1 206799 562 0.00 2019-12-22 22:24:21 2019-12-22 22:24:42 t 1 1 206800 487 0.00 2019-12-22 22:25:42 2019-12-22 22:26:07 t 1 2 206810 562 0.00 2019-12-22 22:34:51 2019-12-22 22:35:11 t 1 1 206812 687 0.00 2019-12-22 22:16:40 2019-12-22 22:37:01 t 1 1 206816 656 0.00 2019-12-22 22:31:32 2019-12-22 22:42:47 t 1 1 206820 545 0.00 2019-12-22 22:07:40 2019-12-22 22:48:34 t 1 1 206821 673 0.00 2019-12-22 22:41:06 2019-12-22 22:50:16 t 1 1 206826 591 0.00 2019-12-22 22:54:37 2019-12-22 22:54:57 t 1 1 206828 691 0.00 2019-12-22 22:57:00 2019-12-22 22:57:34 t 1 1 206830 551 0.00 2019-12-22 22:17:07 2019-12-22 22:58:40 t 1 1 206832 691 0.00 2019-12-22 22:57:34 2019-12-22 23:02:05 t 1 1 206836 691 0.00 2019-12-22 23:03:39 2019-12-22 23:05:32 t 1 1 206837 691 0.00 2019-12-22 23:03:55 2019-12-22 23:06:32 t 1 1 206840 562 0.00 2019-12-22 23:07:12 2019-12-22 23:07:31 t 1 1 206843 220 0.00 2019-12-22 23:08:54 2019-12-22 23:15:54 t 1 1 206845 763 0.00 2019-12-22 21:33:16 2019-12-22 23:22:27 t 1 1 206846 654 0.00 2019-12-22 23:17:49 2019-12-22 23:23:42 t 1 1 206851 673 0.00 2019-12-22 23:24:04 2019-12-22 23:27:46 t 1 1 206852 551 0.00 2019-12-22 22:58:40 2019-12-22 23:31:30 t 1 1 206854 707 0.00 2019-12-22 22:53:36 2019-12-22 23:36:24 t 1 1 206855 562 0.00 2019-12-22 23:36:27 2019-12-22 23:36:39 t 1 1 206858 562 0.00 2019-12-22 23:47:10 2019-12-22 23:47:17 t 1 1 206859 713 0.00 2019-12-22 23:36:14 2019-12-22 23:57:49 t 1 1 206861 679 0.00 2019-12-22 23:42:05 2019-12-22 23:59:07 t 1 1 206863 687 0.00 2019-12-23 00:00:07 2019-12-23 00:00:23 t 1 1 206865 562 0.00 2019-12-23 00:08:23 2019-12-23 00:08:50 t 1 1 206866 656 0.00 2019-12-22 22:59:55 2019-12-23 00:09:33 t 1 1 206878 483 0.00 2019-12-23 00:33:54 2019-12-23 00:33:54 f 1 1 206879 687 0.00 2019-12-23 00:31:49 2019-12-23 00:34:43 t 1 1 206883 562 0.00 2019-12-23 01:02:19 2019-12-23 01:02:29 t 1 1 206889 562 0.00 2019-12-23 01:31:13 2019-12-23 01:31:37 t 1 1 206890 679 0.00 2019-12-23 01:13:58 2019-12-23 01:37:40 t 1 1 206892 562 0.00 2019-12-23 01:42:15 2019-12-23 01:42:25 t 1 1 206893 687 0.00 2019-12-23 01:32:24 2019-12-23 01:48:15 t 1 1 206894 687 0.00 2019-12-23 01:48:15 2019-12-23 01:48:53 t 1 1 206899 675 0.00 2019-12-23 01:55:10 2019-12-23 01:59:30 t 1 1 206900 687 0.00 2019-12-23 01:53:25 2019-12-23 02:00:30 t 1 1 206904 675 0.00 2019-12-23 01:59:51 2019-12-23 02:04:46 t 1 1 206907 687 0.00 2019-12-23 02:07:50 2019-12-23 02:09:41 t 1 1 206912 675 0.00 2019-12-23 02:17:33 2019-12-23 02:20:38 t 1 1 206917 687 0.00 2019-12-23 02:31:53 2019-12-23 02:37:23 t 1 1 206918 675 0.00 2019-12-23 02:29:19 2019-12-23 02:42:52 t 1 1 206920 675 0.00 2019-12-23 02:42:52 2019-12-23 02:44:52 t 1 1 206927 562 0.00 2019-12-23 03:19:27 2019-12-23 03:19:36 t 1 1 206930 562 0.00 2019-12-23 03:30:13 2019-12-23 03:30:21 t 1 1 206931 675 0.00 2019-12-23 03:26:30 2019-12-23 03:36:38 t 1 1 206933 562 0.00 2019-12-23 03:40:59 2019-12-23 03:41:08 t 1 1 206936 562 0.00 2019-12-23 04:00:38 2019-12-23 04:00:58 t 1 1 206946 562 0.00 2019-12-23 05:05:23 2019-12-23 05:05:33 t 1 1 206949 691 0.00 2019-12-23 05:16:19 2019-12-23 05:16:32 t 1 1 206951 691 0.00 2019-12-23 05:16:58 2019-12-23 05:17:13 t 1 1 206953 514 0.00 2019-12-23 00:28:09 2019-12-23 05:21:53 t 1 1 206954 611 0.00 2019-12-23 05:17:44 2019-12-23 05:24:38 t 1 1 206957 694 0.00 2019-12-22 21:53:28 2019-12-23 05:40:06 t 1 1 206961 562 0.00 2019-12-23 05:59:00 2019-12-23 05:59:20 t 1 1 206965 220 0.00 2019-12-23 05:05:16 2019-12-23 06:23:39 t 1 2 206968 625 0.00 2019-12-23 06:10:42 2019-12-23 06:42:32 t 1 1 206973 675 0.00 2019-12-23 06:46:45 2019-12-23 06:55:04 t 1 1 206977 694 0.00 2019-12-23 05:40:06 2019-12-23 07:06:11 t 1 1 206979 689 0.00 2019-12-23 07:11:04 2019-12-23 07:13:11 t 1 1 206980 562 0.00 2019-12-23 07:14:14 2019-12-23 07:14:37 t 1 1 206984 625 0.00 2019-12-23 07:08:01 2019-12-23 07:25:35 t 1 1 206986 752 0.00 2019-12-23 07:23:07 2019-12-23 07:43:20 t 1 1 206991 562 0.00 2019-12-23 07:57:30 2019-12-23 07:57:39 t 1 1 206992 752 0.00 2019-12-23 07:56:42 2019-12-23 08:00:42 t 1 1 206996 726 0.00 2019-12-23 07:56:36 2019-12-23 08:06:54 t 1 1 207002 562 0.00 2019-12-23 08:18:06 2019-12-23 08:18:39 t 1 1 207004 687 0.00 2019-12-23 08:18:38 2019-12-23 08:24:51 t 1 1 207005 654 0.00 2019-12-23 08:23:53 2019-12-23 08:24:52 t 1 1 207007 654 0.00 2019-12-23 08:24:52 2019-12-23 08:29:36 t 1 1 207013 687 0.00 2019-12-23 08:24:51 2019-12-23 08:38:05 t 1 1 207017 711 0.00 2019-12-23 08:40:09 2019-12-23 08:44:55 t 1 1 207018 752 0.00 2019-12-23 08:00:44 2019-12-23 08:45:47 t 1 1 207019 591 0.00 2019-12-23 08:44:55 2019-12-23 08:47:11 t 1 1 207022 675 0.00 2019-12-23 08:50:57 2019-12-23 08:54:01 t 1 1 207023 707 0.00 2019-12-23 08:04:59 2019-12-23 08:57:34 t 1 1 207027 591 0.00 2019-12-23 09:05:50 2019-12-23 09:07:19 t 1 1 207028 736 0.00 2019-12-23 09:08:40 2019-12-23 09:08:49 t 1 1 207032 562 0.00 2019-12-23 09:13:02 2019-12-23 09:13:52 t 1 1 207034 707 0.00 2019-12-23 09:14:43 2019-12-23 09:20:29 t 1 1 207038 514 0.00 2019-12-23 09:07:26 2019-12-23 09:27:42 t 1 1 207042 675 0.00 2019-12-23 09:28:01 2019-12-23 09:34:38 t 1 1 207045 220 0.00 2019-12-23 06:44:55 2019-12-23 09:42:06 t 1 1 207050 611 0.00 2019-12-23 09:45:18 2019-12-23 09:46:16 t 1 1 207054 562 0.00 2019-12-23 09:49:47 2019-12-23 09:49:57 t 1 1 207058 675 0.00 2019-12-23 09:54:00 2019-12-23 09:55:37 t 1 1 207063 748 0.00 2019-12-23 09:57:13 2019-12-23 09:58:40 t 1 1 207066 637 0.00 2019-12-23 09:29:16 2019-12-23 10:01:39 t 1 1 207070 615 0.00 2019-12-23 09:57:34 2019-12-23 10:03:57 t 1 1 207071 748 0.00 2019-12-23 10:04:07 2019-12-23 10:04:08 t 1 1 207072 748 0.00 2019-12-23 10:04:57 2019-12-23 10:05:05 t 1 1 207074 748 0.00 2019-12-23 10:06:22 2019-12-23 10:06:38 t 1 1 207076 748 0.00 2019-12-23 10:07:45 2019-12-23 10:08:15 t 1 1 207078 562 0.00 2019-12-23 10:08:35 2019-12-23 10:09:02 t 1 1 207087 748 0.00 2019-12-23 10:14:09 2019-12-23 10:14:11 t 1 1 207088 625 0.00 2019-12-23 10:01:39 2019-12-23 10:14:12 t 1 1 207089 694 0.00 2019-12-23 10:13:36 2019-12-23 10:14:47 t 1 1 207090 748 0.00 2019-12-23 10:14:37 2019-12-23 10:14:51 t 1 1 207091 748 0.00 2019-12-23 10:15:41 2019-12-23 10:15:47 t 1 1 207093 562 0.00 2019-12-23 10:17:12 2019-12-23 10:18:55 t 1 1 207098 748 0.00 2019-12-23 10:25:04 2019-12-23 10:27:10 t 1 1 207100 694 0.00 2019-12-23 10:16:37 2019-12-23 10:29:05 t 1 1 207101 625 0.00 2019-12-23 10:14:12 2019-12-23 10:30:05 t 1 1 207104 675 0.00 2019-12-23 10:27:10 2019-12-23 10:33:13 t 1 1 207107 514 0.00 2019-12-23 10:34:39 2019-12-23 10:41:03 t 1 1 207112 538 0.00 2019-12-23 10:38:02 2019-12-23 10:45:15 t 1 1 207114 625 0.00 2019-12-23 10:45:16 2019-12-23 10:46:39 t 1 1 207118 562 0.00 2019-12-23 10:49:44 2019-12-23 10:55:00 t 1 1 207119 637 0.00 2019-12-23 10:04:25 2019-12-23 10:57:22 t 1 1 207122 675 0.00 2019-12-23 10:58:13 2019-12-23 10:59:45 t 1 1 207124 625 0.00 2019-12-23 10:46:49 2019-12-23 11:02:37 t 1 1 207127 625 0.00 2019-12-23 11:03:09 2019-12-23 11:05:04 t 1 1 207129 707 0.00 2019-12-23 10:04:50 2019-12-23 11:09:28 t 1 1 207132 667 0.00 2019-12-23 11:06:01 2019-12-23 11:12:31 t 1 1 207133 562 0.00 2019-12-23 11:11:24 2019-12-23 11:13:04 t 1 1 207134 694 0.00 2019-12-23 10:29:05 2019-12-23 11:14:35 t 1 1 207139 667 0.00 2019-12-23 11:12:31 2019-12-23 11:18:18 t 1 1 207145 673 0.00 2019-12-23 11:08:41 2019-12-23 11:21:03 t 1 1 207148 514 0.00 2019-12-23 11:22:17 2019-12-23 11:22:58 t 1 1 207149 667 0.00 2019-12-23 11:18:18 2019-12-23 11:25:08 t 1 1 207151 763 0.00 2019-12-23 11:25:33 2019-12-23 11:26:18 t 1 1 207155 724 0.00 2019-12-23 11:26:37 2019-12-23 11:27:32 t 1 1 207161 667 0.00 2019-12-23 11:30:27 2019-12-23 11:33:44 t 1 1 207162 763 0.00 2019-12-23 11:28:53 2019-12-23 11:35:12 t 1 1 207167 514 0.00 2019-12-23 11:32:51 2019-12-23 11:42:09 t 1 1 207170 694 0.00 2019-12-23 11:40:26 2019-12-23 11:43:39 t 1 1 207172 673 0.00 2019-12-23 11:22:37 2019-12-23 11:45:23 t 1 1 207174 763 0.00 2019-12-23 11:43:42 2019-12-23 11:48:17 t 1 1 207177 562 0.00 2019-12-23 11:43:53 2019-12-23 11:50:54 t 1 1 207184 763 0.00 2019-12-23 11:54:00 2019-12-23 11:55:44 t 1 1 207189 562 0.00 2019-12-23 12:00:00 2019-12-23 12:00:55 t 1 1 207191 763 0.00 2019-12-23 12:00:22 2019-12-23 12:01:47 t 1 1 207193 538 0.00 2019-12-23 12:02:45 2019-12-23 12:02:57 t 1 1 207199 763 0.00 2019-12-23 12:04:34 2019-12-23 12:06:39 t 1 1 207202 750 0.00 2019-12-23 12:06:51 2019-12-23 12:08:09 t 1 1 207206 562 0.00 2019-12-23 12:09:55 2019-12-23 12:11:14 t 1 1 207209 675 0.00 2019-12-23 12:12:33 2019-12-23 12:13:50 t 1 1 207211 763 0.00 2019-12-23 12:13:49 2019-12-23 12:14:23 t 1 1 207214 763 0.00 2019-12-23 12:14:29 2019-12-23 12:17:16 t 1 1 207218 763 0.00 2019-12-23 12:18:25 2019-12-23 12:20:18 t 1 1 207220 763 0.00 2019-12-23 12:21:22 2019-12-23 12:22:25 t 1 1 207221 615 0.00 2019-12-23 12:17:02 2019-12-23 12:23:23 t 1 1 207225 763 0.00 2019-12-23 12:22:28 2019-12-23 12:25:07 t 1 1 207230 611 0.00 2019-12-23 12:27:17 2019-12-23 12:28:23 t 1 1 207231 675 0.00 2019-12-23 12:25:48 2019-12-23 12:28:36 t 1 1 207233 562 0.00 2019-12-23 12:29:29 2019-12-23 12:30:00 t 1 1 207234 673 0.00 2019-12-23 12:26:35 2019-12-23 12:30:28 t 1 1 207235 562 0.00 2019-12-23 12:33:58 2019-12-23 12:34:03 t 1 1 207239 730 0.00 2019-12-23 12:40:45 2019-12-23 12:40:46 t 1 1 207241 611 0.00 2019-12-23 12:29:13 2019-12-23 12:44:12 t 1 1 207244 538 0.00 2019-12-23 12:27:56 2019-12-23 12:48:46 t 1 1 207246 538 0.00 2019-12-23 12:48:46 2019-12-23 12:49:47 t 1 1 207248 562 0.00 2019-12-23 12:55:08 2019-12-23 12:55:20 t 1 1 207249 675 0.00 2019-12-23 12:57:13 2019-12-23 12:59:40 t 1 1 207250 562 0.00 2019-12-23 12:59:48 2019-12-23 13:00:38 t 1 1 207253 611 0.00 2019-12-23 12:44:12 2019-12-23 13:04:22 t 1 1 207254 675 0.00 2019-12-23 13:03:24 2019-12-23 13:05:14 t 1 1 207255 562 0.00 2019-12-23 13:05:50 2019-12-23 13:06:00 t 1 1 207257 459 0.00 2019-12-23 13:12:52 2019-12-23 13:13:10 t 1 2 207259 683 0.00 2019-12-23 13:12:36 2019-12-23 13:13:42 t 1 2 207267 637 0.00 2019-12-23 13:15:27 2019-12-23 13:25:11 t 1 1 207268 691 0.00 2019-12-23 13:26:13 2019-12-23 13:26:54 t 1 1 207272 637 0.00 2019-12-23 13:26:00 2019-12-23 13:29:00 t 1 1 207273 562 0.00 2019-12-23 13:31:00 2019-12-23 13:31:05 t 1 1 207274 459 0.00 2019-12-23 13:27:50 2019-12-23 13:34:25 t 1 2 207275 220 0.00 2019-12-23 12:58:11 2019-12-23 13:34:33 t 1 2 207283 631 0.00 2019-12-23 13:49:55 2019-12-23 13:50:18 t 1 1 207284 631 0.00 2019-12-23 13:53:45 2019-12-23 13:53:51 t 1 1 207285 516 0.00 2019-12-23 13:47:44 2019-12-23 13:55:09 t 1 1 207287 514 0.00 2019-12-23 13:56:08 2019-12-23 13:57:07 t 1 1 207297 516 0.00 2019-12-23 14:01:59 2019-12-23 14:07:37 t 1 1 207299 392 0.00 2019-12-23 13:44:53 2019-12-23 14:08:21 t 1 2 207305 637 0.00 2019-12-23 14:12:08 2019-12-23 14:13:09 t 1 1 207309 625 0.00 2019-12-23 14:08:49 2019-12-23 14:22:08 t 1 1 207312 675 0.00 2019-12-23 14:21:22 2019-12-23 14:23:28 t 1 1 207317 611 0.00 2019-12-23 14:27:24 2019-12-23 14:28:44 t 1 1 207319 516 0.00 2019-12-23 14:23:17 2019-12-23 14:29:06 t 1 1 207323 611 0.00 2019-12-23 14:29:54 2019-12-23 14:31:20 t 1 1 207326 675 0.00 2019-12-23 14:30:35 2019-12-23 14:35:56 t 1 1 207332 696 0.00 2019-12-23 14:22:22 2019-12-23 14:39:27 t 1 1 207334 627 0.00 2019-12-23 14:33:55 2019-12-23 14:40:28 t 1 1 207342 691 0.00 2019-12-23 14:45:20 2019-12-23 14:46:22 t 1 1 207343 750 0.00 2019-12-23 14:35:46 2019-12-23 14:51:28 t 1 1 207346 675 0.00 2019-12-23 14:50:59 2019-12-23 14:55:30 t 1 1 207348 691 0.00 2019-12-23 14:54:32 2019-12-23 14:55:47 t 1 1 207350 562 0.00 2019-12-23 14:55:34 2019-12-23 14:56:23 t 1 1 207351 627 0.00 2019-12-23 14:57:04 2019-12-23 14:57:13 t 1 1 207357 627 0.00 2019-12-23 15:05:20 2019-12-23 15:06:12 t 1 1 207360 627 0.00 2019-12-23 15:06:45 2019-12-23 15:07:14 t 1 1 207362 627 0.00 2019-12-23 15:09:00 2019-12-23 15:09:15 t 1 1 207363 578 0.00 2019-12-23 15:02:43 2019-12-23 15:15:33 t 1 1 207365 627 0.00 2019-12-23 15:15:22 2019-12-23 15:15:55 t 1 1 207366 562 0.00 2019-12-23 15:16:13 2019-12-23 15:16:45 t 1 1 207368 667 0.00 2019-12-23 15:11:55 2019-12-23 15:17:30 t 1 2 207369 627 0.00 2019-12-23 15:17:58 2019-12-23 15:18:21 t 1 1 207374 516 0.00 2019-12-23 15:20:24 2019-12-23 15:22:36 t 1 1 207375 544 0.00 2019-12-23 13:06:57 2019-12-23 15:23:38 t 1 1 207376 627 0.00 2019-12-23 15:24:30 2019-12-23 15:24:33 t 1 1 207381 562 0.00 2019-12-23 15:27:16 2019-12-23 15:27:27 t 1 1 207382 627 0.00 2019-12-23 15:29:32 2019-12-23 15:30:17 t 1 1 207383 673 0.00 2019-12-23 15:12:46 2019-12-23 15:32:37 t 1 1 207388 635 0.00 2019-12-23 15:31:39 2019-12-23 15:36:47 t 1 1 207389 544 0.00 2019-12-23 15:23:38 2019-12-23 15:39:29 t 1 1 207393 637 0.00 2019-12-23 15:26:39 2019-12-23 15:43:23 t 1 1 207394 562 0.00 2019-12-23 15:43:05 2019-12-23 15:43:55 t 1 1 207092 748 0.00 2019-12-23 10:16:57 2019-12-23 10:17:00 t 1 1 207094 675 0.00 2019-12-23 10:18:37 2019-12-23 10:20:23 t 1 1 207095 615 0.00 2019-12-23 10:14:35 2019-12-23 10:21:59 t 1 1 207096 514 0.00 2019-12-23 09:45:22 2019-12-23 10:22:55 t 1 1 207097 562 0.00 2019-12-23 10:26:13 2019-12-23 10:26:38 t 1 1 207102 615 0.00 2019-12-23 10:28:13 2019-12-23 10:30:08 t 1 1 207110 625 0.00 2019-12-23 10:30:34 2019-12-23 10:44:45 t 1 1 207115 562 0.00 2019-12-23 10:47:29 2019-12-23 10:47:48 t 1 1 207116 675 0.00 2019-12-23 10:47:59 2019-12-23 10:50:29 t 1 1 207117 726 0.00 2019-12-23 10:40:50 2019-12-23 10:52:58 t 1 1 207120 627 0.00 2019-12-23 10:47:58 2019-12-23 10:58:49 t 1 2 207123 562 0.00 2019-12-23 11:01:51 2019-12-23 11:02:01 t 1 1 207131 726 0.00 2019-12-23 10:52:58 2019-12-23 11:11:02 t 1 1 207136 545 0.00 2019-12-23 11:13:46 2019-12-23 11:15:30 t 1 1 207138 615 0.00 2019-12-23 11:12:15 2019-12-23 11:17:00 t 1 1 207140 578 0.00 2019-12-22 23:46:09 2019-12-23 11:18:55 t 1 1 207141 514 0.00 2019-12-23 11:04:23 2019-12-23 11:19:56 t 1 1 207142 687 0.00 2019-12-23 11:12:42 2019-12-23 11:20:09 t 1 1 207144 637 0.00 2019-12-23 11:08:45 2019-12-23 11:20:46 t 1 1 207146 514 0.00 2019-12-23 11:20:06 2019-12-23 11:21:15 t 1 1 207150 763 0.00 2019-12-23 11:24:33 2019-12-23 11:25:34 t 1 1 207152 625 0.00 2019-12-23 11:25:06 2019-12-23 11:26:18 t 1 1 207154 562 0.00 2019-12-23 11:26:44 2019-12-23 11:27:04 t 1 1 207156 675 0.00 2019-12-23 11:25:55 2019-12-23 11:28:14 t 1 1 207158 667 0.00 2019-12-23 11:25:08 2019-12-23 11:30:27 t 1 1 207164 675 0.00 2019-12-23 11:32:38 2019-12-23 11:37:59 t 1 1 207165 694 0.00 2019-12-23 11:36:22 2019-12-23 11:40:26 t 1 1 207173 615 0.00 2019-12-23 11:20:02 2019-12-23 11:46:40 t 1 1 207176 763 0.00 2019-12-23 11:48:17 2019-12-23 11:49:26 t 1 1 207181 564 0.00 2019-12-23 10:19:51 2019-12-23 11:53:12 t 1 1 207182 763 0.00 2019-12-23 11:52:16 2019-12-23 11:54:00 t 1 1 207185 562 0.00 2019-12-23 11:56:36 2019-12-23 11:56:47 t 1 1 207186 625 0.00 2019-12-23 11:52:04 2019-12-23 11:58:09 t 1 1 207188 763 0.00 2019-12-23 11:59:04 2019-12-23 12:00:22 t 1 1 207190 675 0.00 2019-12-23 11:59:58 2019-12-23 12:01:43 t 1 1 207196 673 0.00 2019-12-23 12:01:22 2019-12-23 12:04:49 t 1 1 207200 750 0.00 2019-12-23 12:05:52 2019-12-23 12:06:40 t 1 1 207204 591 0.00 2019-12-23 11:50:36 2019-12-23 12:09:06 t 1 1 207205 220 0.00 2019-12-23 11:38:48 2019-12-23 12:10:59 t 1 2 207208 763 0.00 2019-12-23 12:12:49 2019-12-23 12:13:43 t 1 1 207212 538 0.00 2019-12-23 12:13:50 2019-12-23 12:14:42 t 1 1 207213 615 0.00 2019-12-23 12:06:11 2019-12-23 12:17:02 t 1 1 207215 730 0.00 2019-12-23 12:03:36 2019-12-23 12:17:21 t 1 1 207216 758 0.00 2019-12-23 12:10:31 2019-12-23 12:17:48 t 1 1 207217 637 0.00 2019-12-23 11:43:18 2019-12-23 12:19:41 t 1 1 207223 611 0.00 2019-12-23 12:18:33 2019-12-23 12:24:12 t 1 1 207226 611 0.00 2019-12-23 12:24:11 2019-12-23 12:25:51 t 1 1 207228 611 0.00 2019-12-23 12:26:01 2019-12-23 12:27:18 t 1 1 207229 724 0.00 2019-12-23 12:05:22 2019-12-23 12:27:54 t 1 1 207240 754 0.00 2019-12-23 12:40:45 2019-12-23 12:43:46 t 1 2 207243 691 0.00 2019-12-23 12:47:25 2019-12-23 12:48:40 t 1 1 207245 562 0.00 2019-12-23 12:48:40 2019-12-23 12:49:30 t 1 1 207256 683 0.00 2019-12-23 13:10:12 2019-12-23 13:11:18 t 1 2 207261 637 0.00 2019-12-23 13:03:52 2019-12-23 13:15:43 t 1 1 207262 562 0.00 2019-12-23 13:16:28 2019-12-23 13:16:39 t 1 1 207263 220 0.00 2019-12-23 12:33:44 2019-12-23 13:18:29 t 1 2 207271 625 0.00 2019-12-23 13:13:44 2019-12-23 13:28:30 t 1 1 207278 637 0.00 2019-12-23 13:31:01 2019-12-23 13:45:28 t 1 1 207279 220 0.00 2019-12-23 13:43:12 2019-12-23 13:46:47 t 1 2 207281 562 0.00 2019-12-23 13:48:06 2019-12-23 13:48:29 t 1 1 207282 631 0.00 2019-12-23 13:47:23 2019-12-23 13:49:33 t 1 1 207286 514 0.00 2019-12-23 12:36:14 2019-12-23 13:56:08 t 1 1 207290 625 0.00 2019-12-23 13:29:00 2019-12-23 13:58:45 t 1 1 207291 562 0.00 2019-12-23 13:59:03 2019-12-23 13:59:16 t 1 1 207294 689 0.00 2019-12-23 13:47:34 2019-12-23 14:03:33 t 1 1 207295 675 0.00 2019-12-23 14:02:40 2019-12-23 14:04:00 t 1 1 207300 625 0.00 2019-12-23 13:58:45 2019-12-23 14:08:49 t 1 1 207303 538 0.00 2019-12-23 14:11:47 2019-12-23 14:12:02 t 1 1 207304 562 0.00 2019-12-23 14:12:19 2019-12-23 14:12:20 t 1 1 207307 562 0.00 2019-12-23 14:14:37 2019-12-23 14:14:44 t 1 1 207308 516 0.00 2019-12-23 14:07:37 2019-12-23 14:21:00 t 1 1 207310 562 0.00 2019-12-23 14:21:02 2019-12-23 14:22:20 t 1 1 207327 516 0.00 2019-12-23 14:31:09 2019-12-23 14:36:04 t 1 1 207328 591 0.00 2019-12-23 13:43:31 2019-12-23 14:36:55 t 1 1 207330 611 0.00 2019-12-23 14:31:57 2019-12-23 14:37:49 t 1 1 207331 689 0.00 2019-12-23 14:31:49 2019-12-23 14:39:00 t 1 1 207333 696 0.00 2019-12-23 14:38:52 2019-12-23 14:39:55 t 1 1 207335 627 0.00 2019-12-23 14:40:36 2019-12-23 14:41:11 t 1 1 207337 696 0.00 2019-12-23 14:40:51 2019-12-23 14:41:58 t 1 1 207338 627 0.00 2019-12-23 14:42:37 2019-12-23 14:42:53 t 1 1 207339 675 0.00 2019-12-23 14:40:57 2019-12-23 14:44:37 t 1 1 207341 627 0.00 2019-12-23 14:44:49 2019-12-23 14:45:06 t 1 1 207352 627 0.00 2019-12-23 15:01:17 2019-12-23 15:02:36 t 1 1 207355 707 0.00 2019-12-23 14:45:44 2019-12-23 15:03:48 t 1 1 207359 696 0.00 2019-12-23 14:43:04 2019-12-23 15:07:10 t 1 1 207361 625 0.00 2019-12-23 14:51:45 2019-12-23 15:08:33 t 1 1 207367 516 0.00 2019-12-23 14:36:04 2019-12-23 15:17:16 t 1 1 207371 627 0.00 2019-12-23 15:20:16 2019-12-23 15:20:25 t 1 1 207372 689 0.00 2019-12-23 14:39:00 2019-12-23 15:21:08 t 1 1 207377 696 0.00 2019-12-23 15:07:10 2019-12-23 15:24:36 t 1 1 207380 611 0.00 2019-12-23 15:24:03 2019-12-23 15:26:51 t 1 1 207384 681 0.00 2019-12-23 14:05:55 2019-12-23 15:33:25 t 1 1 207391 516 0.00 2019-12-23 15:41:07 2019-12-23 15:42:02 t 1 1 207397 516 0.00 2019-12-23 15:43:24 2019-12-23 15:48:16 t 1 1 207399 627 0.00 2019-12-23 15:50:10 2019-12-23 15:51:12 t 1 1 207401 562 0.00 2019-12-23 15:50:22 2019-12-23 15:52:39 t 1 1 207402 673 0.00 2019-12-23 15:37:57 2019-12-23 15:53:41 t 1 1 207405 562 0.00 2019-12-23 15:57:35 2019-12-23 15:57:41 t 1 1 207411 562 0.00 2019-12-23 16:10:48 2019-12-23 16:11:29 t 1 1 207413 734 0.00 2019-12-23 13:31:48 2019-12-23 16:15:23 t 1 1 207418 711 0.00 2019-12-23 16:04:14 2019-12-23 16:19:21 t 1 1 207420 611 0.00 2019-12-23 16:19:33 2019-12-23 16:28:21 t 1 1 207424 544 0.00 2019-12-23 16:03:12 2019-12-23 16:42:22 t 1 1 207425 562 0.00 2019-12-23 16:42:22 2019-12-23 16:42:43 t 1 1 207433 722 0.00 2019-12-23 16:55:36 2019-12-23 16:57:16 t 1 1 207441 483 0.00 2019-12-23 16:58:51 2019-12-23 16:58:51 f 1 1 207442 483 0.00 2019-12-23 16:59:50 2019-12-23 16:59:50 f 1 1 207099 615 0.00 2019-12-23 10:21:59 2019-12-23 10:28:13 t 1 1 207103 514 0.00 2019-12-23 10:23:02 2019-12-23 10:31:47 t 1 1 207105 562 0.00 2019-12-23 10:33:01 2019-12-23 10:33:29 t 1 1 207106 514 0.00 2019-12-23 10:31:55 2019-12-23 10:34:36 t 1 1 207108 562 0.00 2019-12-23 10:37:57 2019-12-23 10:41:07 t 1 1 207109 675 0.00 2019-12-23 10:41:05 2019-12-23 10:42:39 t 1 1 207111 625 0.00 2019-12-23 10:43:54 2019-12-23 10:45:01 t 1 1 207113 514 0.00 2019-12-23 10:41:02 2019-12-23 10:45:25 t 1 1 207121 667 0.00 2019-12-23 10:50:10 2019-12-23 10:59:15 t 1 1 207125 625 0.00 2019-12-23 11:02:39 2019-12-23 11:02:58 t 1 1 207126 514 0.00 2019-12-23 10:45:27 2019-12-23 11:04:17 t 1 1 207128 667 0.00 2019-12-23 10:59:15 2019-12-23 11:06:01 t 1 1 207130 663 0.00 2019-12-23 11:10:15 2019-12-23 11:10:15 f 1 1 207135 740 0.00 2019-12-23 11:14:16 2019-12-23 11:15:24 t 1 1 207137 562 0.00 2019-12-23 11:14:35 2019-12-23 11:15:44 t 1 1 207143 578 0.00 2019-12-23 11:18:55 2019-12-23 11:20:26 t 1 1 207147 562 0.00 2019-12-23 11:22:43 2019-12-23 11:22:58 t 1 1 207153 220 0.00 2019-12-23 11:07:07 2019-12-23 11:26:42 t 1 2 207157 763 0.00 2019-12-23 11:26:22 2019-12-23 11:28:54 t 1 1 207159 514 0.00 2019-12-23 11:22:57 2019-12-23 11:31:31 t 1 1 207160 562 0.00 2019-12-23 11:30:29 2019-12-23 11:32:39 t 1 1 207163 694 0.00 2019-12-23 11:28:39 2019-12-23 11:35:36 t 1 1 207166 763 0.00 2019-12-23 11:36:26 2019-12-23 11:41:59 t 1 1 207168 637 0.00 2019-12-23 11:21:01 2019-12-23 11:42:38 t 1 1 207169 675 0.00 2019-12-23 11:41:31 2019-12-23 11:43:35 t 1 1 207171 562 0.00 2019-12-23 11:33:19 2019-12-23 11:43:53 t 1 1 207175 615 0.00 2019-12-23 11:46:40 2019-12-23 11:48:28 t 1 1 207178 625 0.00 2019-12-23 11:48:03 2019-12-23 11:51:53 t 1 1 207179 763 0.00 2019-12-23 11:49:26 2019-12-23 11:52:22 t 1 1 207180 611 0.00 2019-12-23 11:52:55 2019-12-23 11:52:57 t 1 1 207183 675 0.00 2019-12-23 11:52:59 2019-12-23 11:55:40 t 1 1 207187 763 0.00 2019-12-23 11:55:48 2019-12-23 11:58:11 t 1 1 207192 707 0.00 2019-12-23 12:00:56 2019-12-23 12:02:29 t 1 1 207194 763 0.00 2019-12-23 12:01:47 2019-12-23 12:03:05 t 1 1 207195 763 0.00 2019-12-23 12:03:04 2019-12-23 12:04:32 t 1 1 207197 724 0.00 2019-12-23 11:28:56 2019-12-23 12:05:07 t 1 1 207198 750 0.00 2019-12-23 12:02:29 2019-12-23 12:05:27 t 1 1 207201 625 0.00 2019-12-23 11:57:15 2019-12-23 12:08:07 t 1 1 207203 763 0.00 2019-12-23 12:06:54 2019-12-23 12:08:21 t 1 1 207207 763 0.00 2019-12-23 12:08:20 2019-12-23 12:12:06 t 1 1 207210 538 0.00 2019-12-23 12:02:57 2019-12-23 12:13:51 t 1 1 207219 730 0.00 2019-12-23 12:17:21 2019-12-23 12:20:50 t 1 1 207222 562 0.00 2019-12-23 12:21:17 2019-12-23 12:23:47 t 1 1 207224 637 0.00 2019-12-23 12:19:50 2019-12-23 12:24:24 t 1 1 207227 763 0.00 2019-12-23 12:25:12 2019-12-23 12:26:40 t 1 1 207232 611 0.00 2019-12-23 12:28:34 2019-12-23 12:29:13 t 1 1 207236 514 0.00 2019-12-23 12:27:26 2019-12-23 12:35:56 t 1 1 207237 675 0.00 2019-12-23 12:35:31 2019-12-23 12:37:11 t 1 1 207238 591 0.00 2019-12-23 12:30:23 2019-12-23 12:39:26 t 1 1 207242 625 0.00 2019-12-23 12:11:03 2019-12-23 12:48:40 t 1 1 207247 675 0.00 2019-12-23 12:49:16 2019-12-23 12:50:53 t 1 1 207251 681 0.00 2019-12-23 10:05:57 2019-12-23 13:01:47 t 1 1 207252 637 0.00 2019-12-23 12:24:55 2019-12-23 13:03:59 t 1 1 207258 625 0.00 2019-12-23 13:08:07 2019-12-23 13:13:31 t 1 1 207260 392 0.00 2019-12-23 12:03:59 2019-12-23 13:14:02 t 1 2 207264 724 0.00 2019-12-23 12:49:36 2019-12-23 13:18:55 t 1 1 207265 734 0.00 2019-12-23 12:39:26 2019-12-23 13:20:16 t 1 1 207266 675 0.00 2019-12-23 13:21:24 2019-12-23 13:23:18 t 1 1 207269 562 0.00 2019-12-23 13:27:03 2019-12-23 13:27:12 t 1 1 207270 691 0.00 2019-12-23 13:26:54 2019-12-23 13:28:05 t 1 1 207276 675 0.00 2019-12-23 13:33:03 2019-12-23 13:35:35 t 1 1 207277 611 0.00 2019-12-23 13:21:24 2019-12-23 13:43:32 t 1 1 207280 637 0.00 2019-12-23 13:46:19 2019-12-23 13:47:23 t 1 1 207288 694 0.00 2019-12-23 11:46:20 2019-12-23 13:57:11 t 1 1 207289 694 0.00 2019-12-23 13:57:07 2019-12-23 13:58:11 t 1 1 207292 611 0.00 2019-12-23 13:48:12 2019-12-23 13:59:23 t 1 1 207293 516 0.00 2019-12-23 13:55:09 2019-12-23 14:01:59 t 1 1 207296 681 0.00 2019-12-23 13:01:47 2019-12-23 14:05:55 t 1 1 207298 564 0.00 2019-12-23 14:03:56 2019-12-23 14:08:01 t 1 1 207301 562 0.00 2019-12-23 14:09:38 2019-12-23 14:09:47 t 1 1 207302 637 0.00 2019-12-23 14:08:32 2019-12-23 14:11:47 t 1 1 207306 689 0.00 2019-12-23 14:03:33 2019-12-23 14:14:23 t 1 1 207311 516 0.00 2019-12-23 14:21:00 2019-12-23 14:23:05 t 1 1 207313 625 0.00 2019-12-23 14:22:20 2019-12-23 14:24:14 t 1 1 207314 637 0.00 2019-12-23 14:23:27 2019-12-23 14:24:30 t 1 1 207315 694 0.00 2019-12-23 13:58:11 2019-12-23 14:26:00 t 1 1 207316 611 0.00 2019-12-23 14:00:00 2019-12-23 14:27:21 t 1 1 207318 611 0.00 2019-12-23 14:28:48 2019-12-23 14:28:59 t 1 1 207320 498 0.00 2019-12-23 14:16:38 2019-12-23 14:29:14 t 1 2 207321 637 0.00 2019-12-23 14:25:43 2019-12-23 14:29:35 t 1 1 207322 516 0.00 2019-12-23 14:29:06 2019-12-23 14:31:10 t 1 1 207324 689 0.00 2019-12-23 14:14:28 2019-12-23 14:31:49 t 1 1 207325 562 0.00 2019-12-23 14:29:35 2019-12-23 14:32:22 t 1 1 207329 562 0.00 2019-12-23 14:34:48 2019-12-23 14:36:56 t 1 1 207336 591 0.00 2019-12-23 14:39:44 2019-12-23 14:41:20 t 1 1 207340 627 0.00 2019-12-23 14:43:53 2019-12-23 14:44:40 t 1 1 207344 625 0.00 2019-12-23 14:24:14 2019-12-23 14:51:45 t 1 1 207345 562 0.00 2019-12-23 14:54:02 2019-12-23 14:54:29 t 1 1 207347 627 0.00 2019-12-23 14:55:08 2019-12-23 14:55:38 t 1 1 207349 627 0.00 2019-12-23 14:55:49 2019-12-23 14:55:59 t 1 1 207353 578 0.00 2019-12-23 14:46:00 2019-12-23 15:02:43 t 1 1 207354 627 0.00 2019-12-23 15:02:53 2019-12-23 15:03:08 t 1 1 207356 562 0.00 2019-12-23 15:05:10 2019-12-23 15:05:41 t 1 1 207358 675 0.00 2019-12-23 15:01:54 2019-12-23 15:06:29 t 1 1 207364 627 0.00 2019-12-23 15:14:21 2019-12-23 15:15:39 t 1 1 207370 311 0.00 2019-12-23 15:11:16 2019-12-23 15:18:39 t 1 2 207373 516 0.00 2019-12-23 15:17:31 2019-12-23 15:21:19 t 1 1 207378 754 0.00 2019-12-23 14:35:28 2019-12-23 15:25:22 t 1 2 207379 637 0.00 2019-12-23 15:03:48 2019-12-23 15:26:39 t 1 1 207385 516 0.00 2019-12-23 15:22:42 2019-12-23 15:34:36 t 1 1 207386 627 0.00 2019-12-23 15:30:24 2019-12-23 15:35:43 t 1 1 207387 627 0.00 2019-12-23 15:36:06 2019-12-23 15:36:46 t 1 1 207390 516 0.00 2019-12-23 15:34:39 2019-12-23 15:40:22 t 1 1 207392 516 0.00 2019-12-23 15:42:16 2019-12-23 15:43:16 t 1 1 207395 562 0.00 2019-12-23 15:44:04 2019-12-23 15:45:39 t 1 1 207400 544 0.00 2019-12-23 15:39:29 2019-12-23 15:51:20 t 1 1 207403 562 0.00 2019-12-23 15:53:32 2019-12-23 15:53:44 t 1 1 207396 627 0.00 2019-12-23 15:40:34 2019-12-23 15:46:14 t 1 1 207398 627 0.00 2019-12-23 15:47:03 2019-12-23 15:50:04 t 1 1 207404 709 0.00 2019-12-23 15:51:37 2019-12-23 15:55:45 t 1 1 207407 544 0.00 2019-12-23 15:51:20 2019-12-23 16:03:12 t 1 1 207408 516 0.00 2019-12-23 15:48:30 2019-12-23 16:05:02 t 1 1 207409 656 0.00 2019-12-23 15:59:22 2019-12-23 16:06:58 t 1 2 207410 689 0.00 2019-12-23 15:21:24 2019-12-23 16:07:51 t 1 1 207412 689 0.00 2019-12-23 16:07:50 2019-12-23 16:11:34 t 1 1 207415 578 0.00 2019-12-23 15:15:33 2019-12-23 16:18:19 t 1 1 207417 633 0.00 2019-12-23 16:16:29 2019-12-23 16:19:20 t 1 1 207421 562 0.00 2019-12-23 16:31:49 2019-12-23 16:32:04 t 1 1 207423 687 0.00 2019-12-23 16:35:16 2019-12-23 16:39:41 t 1 1 207434 483 0.00 2019-12-23 16:57:16 2019-12-23 16:57:16 f 1 1 207436 516 0.00 2019-12-23 16:05:02 2019-12-23 16:58:05 t 1 1 207438 707 0.00 2019-12-23 16:54:32 2019-12-23 16:58:18 t 1 1 207443 483 0.00 2019-12-23 17:02:26 2019-12-23 17:02:26 f 1 1 207446 483 0.00 2019-12-23 17:02:54 2019-12-23 17:02:54 f 1 1 207450 722 0.00 2019-12-23 16:59:44 2019-12-23 17:05:49 t 1 1 207453 615 0.00 2019-12-23 16:54:37 2019-12-23 17:06:39 t 1 1 207456 483 0.00 2019-12-23 17:07:25 2019-12-23 17:07:25 f 1 1 207464 627 0.00 2019-12-23 17:11:21 2019-12-23 17:14:02 t 1 1 207466 694 0.00 2019-12-23 17:05:49 2019-12-23 17:14:18 t 1 1 207468 736 0.00 2019-12-23 17:04:26 2019-12-23 17:15:28 t 1 1 207470 516 0.00 2019-12-23 17:14:14 2019-12-23 17:17:16 t 1 1 207475 724 0.00 2019-12-23 17:08:55 2019-12-23 17:21:46 t 1 1 207478 514 0.00 2019-12-23 17:15:38 2019-12-23 17:22:59 t 1 1 207482 637 0.00 2019-12-23 16:29:22 2019-12-23 17:23:54 t 1 1 207484 637 0.00 2019-12-23 17:24:03 2019-12-23 17:24:45 t 1 1 207486 722 0.00 2019-12-23 17:22:50 2019-12-23 17:27:20 t 1 1 207488 736 0.00 2019-12-23 17:28:20 2019-12-23 17:28:30 t 1 1 207489 687 0.00 2019-12-23 17:23:31 2019-12-23 17:29:32 t 1 1 207491 483 0.00 2019-12-23 17:31:21 2019-12-23 17:31:21 f 1 1 207493 483 0.00 2019-12-23 17:32:22 2019-12-23 17:32:22 f 1 1 207495 736 0.00 2019-12-23 17:31:31 2019-12-23 17:32:35 t 1 1 207496 689 0.00 2019-12-23 16:11:33 2019-12-23 17:33:08 t 1 1 207499 562 0.00 2019-12-23 17:33:55 2019-12-23 17:34:03 t 1 1 207503 750 0.00 2019-12-23 17:32:56 2019-12-23 17:35:18 t 1 1 207505 694 0.00 2019-12-23 17:35:22 2019-12-23 17:36:29 t 1 1 207508 760 0.00 2019-12-23 17:34:43 2019-12-23 17:38:34 t 1 1 207511 763 0.00 2019-12-23 17:39:56 2019-12-23 17:42:43 t 1 1 207513 689 0.00 2019-12-23 17:33:08 2019-12-23 17:43:27 t 1 1 207518 578 0.00 2019-12-23 17:42:02 2019-12-23 17:47:33 t 1 1 207521 736 0.00 2019-12-23 17:49:42 2019-12-23 17:49:49 t 1 1 207524 763 0.00 2019-12-23 17:45:55 2019-12-23 17:52:44 t 1 1 207527 736 0.00 2019-12-23 17:53:46 2019-12-23 17:54:00 t 1 1 207531 763 0.00 2019-12-23 17:55:07 2019-12-23 17:57:47 t 1 1 207532 673 0.00 2019-12-23 17:09:01 2019-12-23 17:59:16 t 1 1 207536 736 0.00 2019-12-23 17:55:21 2019-12-23 18:02:47 t 1 1 207539 514 0.00 2019-12-23 17:36:45 2019-12-23 18:04:52 t 1 1 207540 736 0.00 2019-12-23 18:04:56 2019-12-23 18:05:14 t 1 1 207542 615 0.00 2019-12-23 18:04:27 2019-12-23 18:06:22 t 1 1 207545 220 0.00 2019-12-23 18:07:26 2019-12-23 18:11:24 t 1 1 207546 562 0.00 2019-12-23 18:11:26 2019-12-23 18:11:36 t 1 1 207552 615 0.00 2019-12-23 18:07:03 2019-12-23 18:18:07 t 1 1 207554 514 0.00 2019-12-23 18:08:04 2019-12-23 18:20:36 t 1 1 207555 545 0.00 2019-12-23 18:18:54 2019-12-23 18:21:59 t 1 1 207557 742 0.00 2019-12-23 18:02:37 2019-12-23 18:22:11 t 1 1 207565 562 0.00 2019-12-23 18:29:44 2019-12-23 18:30:08 t 1 1 207566 736 0.00 2019-12-23 18:30:37 2019-12-23 18:30:53 t 1 1 207571 760 0.00 2019-12-23 18:38:54 2019-12-23 18:38:58 t 1 1 207576 483 0.00 2019-12-23 18:41:19 2019-12-23 18:41:19 f 1 1 207579 763 0.00 2019-12-23 18:41:39 2019-12-23 18:44:13 t 1 1 207586 516 0.00 2019-12-23 18:40:11 2019-12-23 18:50:26 t 1 1 207588 763 0.00 2019-12-23 18:44:59 2019-12-23 18:50:34 t 1 1 207591 516 0.00 2019-12-23 18:50:34 2019-12-23 18:51:43 t 1 1 207596 736 0.00 2019-12-23 18:52:16 2019-12-23 18:54:13 t 1 1 207598 562 0.00 2019-12-23 18:56:29 2019-12-23 18:56:43 t 1 1 207606 736 0.00 2019-12-23 19:00:55 2019-12-23 19:01:09 t 1 1 207610 724 0.00 2019-12-23 18:28:25 2019-12-23 19:04:08 t 1 1 207613 722 0.00 2019-12-23 19:06:36 2019-12-23 19:08:10 t 1 1 207615 675 0.00 2019-12-23 19:07:34 2019-12-23 19:09:19 t 1 1 207616 503 0.00 2019-12-23 18:59:06 2019-12-23 19:09:30 t 1 1 207619 722 0.00 2019-12-23 19:08:17 2019-12-23 19:11:00 t 1 1 207622 544 0.00 2019-12-23 19:11:03 2019-12-23 19:12:41 t 1 1 207624 738 0.00 2019-12-23 19:12:55 2019-12-23 19:12:58 t 1 1 207626 724 0.00 2019-12-23 19:05:45 2019-12-23 19:14:15 t 1 1 207628 738 0.00 2019-12-23 19:14:50 2019-12-23 19:15:17 t 1 1 207631 673 0.00 2019-12-23 19:15:58 2019-12-23 19:16:08 t 1 1 207635 738 0.00 2019-12-23 19:19:19 2019-12-23 19:19:27 t 1 1 207636 562 0.00 2019-12-23 19:19:11 2019-12-23 19:19:27 t 1 1 207639 736 0.00 2019-12-23 19:19:32 2019-12-23 19:19:58 t 1 1 207640 483 0.00 2019-12-23 19:20:06 2019-12-23 19:20:06 f 1 1 207641 738 0.00 2019-12-23 19:20:06 2019-12-23 19:21:08 t 1 1 207643 738 0.00 2019-12-23 19:22:57 2019-12-23 19:23:00 t 1 1 207646 696 0.00 2019-12-23 19:14:15 2019-12-23 19:25:01 t 1 1 207651 722 0.00 2019-12-23 19:25:04 2019-12-23 19:26:30 t 1 1 207652 675 0.00 2019-12-23 19:25:47 2019-12-23 19:27:15 t 1 1 207657 625 0.00 2019-12-23 18:49:40 2019-12-23 19:29:06 t 1 1 207660 722 0.00 2019-12-23 19:29:44 2019-12-23 19:30:11 t 1 1 207663 738 0.00 2019-12-23 19:29:18 2019-12-23 19:30:43 t 1 1 207668 722 0.00 2019-12-23 19:32:47 2019-12-23 19:33:03 t 1 1 207670 738 0.00 2019-12-23 19:32:57 2019-12-23 19:33:25 t 1 1 207671 544 0.00 2019-12-23 19:30:35 2019-12-23 19:33:31 t 1 1 207674 483 0.00 2019-12-23 19:34:13 2019-12-23 19:34:13 f 1 1 207675 722 0.00 2019-12-23 19:33:36 2019-12-23 19:34:39 t 1 1 207681 483 0.00 2019-12-23 19:39:46 2019-12-23 19:39:46 f 1 1 207687 675 0.00 2019-12-23 19:42:09 2019-12-23 19:43:57 t 1 1 207693 498 0.00 2019-12-23 19:26:41 2019-12-23 19:47:40 t 1 2 207696 562 0.00 2019-12-23 19:48:50 2019-12-23 19:49:01 t 1 1 207702 750 0.00 2019-12-23 19:45:03 2019-12-23 19:54:13 t 1 1 207705 736 0.00 2019-12-23 19:55:26 2019-12-23 19:55:29 t 1 1 207707 562 0.00 2019-12-23 19:56:25 2019-12-23 19:56:41 t 1 1 207711 564 0.00 2019-12-23 19:57:39 2019-12-23 19:57:51 t 1 1 207713 637 0.00 2019-12-23 19:52:40 2019-12-23 20:00:22 t 1 1 207725 763 0.00 2019-12-23 20:03:56 2019-12-23 20:06:23 t 1 1 207727 562 0.00 2019-12-23 20:06:59 2019-12-23 20:07:18 t 1 1 207729 660 0.00 2019-12-23 19:58:29 2019-12-23 20:08:11 t 1 1 207406 633 0.00 2019-12-23 15:20:38 2019-12-23 16:02:22 t 1 1 207414 633 0.00 2019-12-23 16:02:22 2019-12-23 16:16:29 t 1 1 207416 673 0.00 2019-12-23 16:11:43 2019-12-23 16:19:09 t 1 1 207419 562 0.00 2019-12-23 16:21:55 2019-12-23 16:22:09 t 1 1 207422 578 0.00 2019-12-23 16:18:19 2019-12-23 16:39:08 t 1 1 207426 591 0.00 2019-12-23 16:44:38 2019-12-23 16:46:25 t 1 1 207427 562 0.00 2019-12-23 16:46:25 2019-12-23 16:47:25 t 1 1 207428 544 0.00 2019-12-23 16:43:26 2019-12-23 16:48:51 t 1 1 207429 687 0.00 2019-12-23 16:40:02 2019-12-23 16:49:51 t 1 1 207430 562 0.00 2019-12-23 16:53:05 2019-12-23 16:53:30 t 1 1 207431 722 0.00 2019-12-23 16:50:05 2019-12-23 16:55:36 t 1 1 207432 625 0.00 2019-12-23 15:08:33 2019-12-23 16:57:09 t 1 1 207435 750 0.00 2019-12-23 16:50:29 2019-12-23 16:57:39 t 1 1 207437 483 0.00 2019-12-23 16:58:12 2019-12-23 16:58:12 f 1 1 207439 483 0.00 2019-12-23 16:58:24 2019-12-23 16:58:24 f 1 1 207440 483 0.00 2019-12-23 16:58:30 2019-12-23 16:58:30 f 1 1 207444 562 0.00 2019-12-23 17:01:24 2019-12-23 17:02:40 t 1 1 207449 687 0.00 2019-12-23 16:51:58 2019-12-23 17:04:03 t 1 1 207451 694 0.00 2019-12-23 14:26:00 2019-12-23 17:06:04 t 1 1 207454 483 0.00 2019-12-23 17:06:39 2019-12-23 17:06:39 f 1 1 207458 514 0.00 2019-12-23 16:39:08 2019-12-23 17:08:08 t 1 1 207459 483 0.00 2019-12-23 17:08:23 2019-12-23 17:08:23 f 1 1 207460 724 0.00 2019-12-23 16:38:01 2019-12-23 17:08:56 t 1 1 207461 483 0.00 2019-12-23 17:09:38 2019-12-23 17:09:38 f 1 1 207472 490 0.00 2019-12-23 17:10:11 2019-12-23 17:20:05 t 1 1 207473 734 0.00 2019-12-23 16:15:26 2019-12-23 17:21:22 t 1 1 207474 763 0.00 2019-12-23 17:18:47 2019-12-23 17:21:38 t 1 1 207480 736 0.00 2019-12-23 17:23:13 2019-12-23 17:23:26 t 1 1 207483 675 0.00 2019-12-23 17:23:57 2019-12-23 17:24:43 t 1 1 207485 736 0.00 2019-12-23 17:26:04 2019-12-23 17:26:35 t 1 1 207487 763 0.00 2019-12-23 17:21:58 2019-12-23 17:27:33 t 1 1 207492 760 0.00 2019-12-23 17:15:34 2019-12-23 17:31:28 t 1 1 207494 750 0.00 2019-12-23 17:04:24 2019-12-23 17:32:31 t 1 1 207498 483 0.00 2019-12-23 17:33:57 2019-12-23 17:33:57 f 1 1 207502 687 0.00 2019-12-23 17:29:32 2019-12-23 17:35:17 t 1 1 207509 763 0.00 2019-12-23 17:38:07 2019-12-23 17:39:56 t 1 1 207516 763 0.00 2019-12-23 17:45:01 2019-12-23 17:45:42 t 1 1 207520 736 0.00 2019-12-23 17:47:44 2019-12-23 17:48:40 t 1 1 207529 736 0.00 2019-12-23 17:54:20 2019-12-23 17:54:31 t 1 1 207537 760 0.00 2019-12-23 17:52:44 2019-12-23 18:03:36 t 1 1 207541 696 0.00 2019-12-23 17:51:53 2019-12-23 18:06:16 t 1 1 207549 611 0.00 2019-12-23 18:10:09 2019-12-23 18:15:12 t 1 1 207551 736 0.00 2019-12-23 18:17:28 2019-12-23 18:17:51 t 1 1 207556 687 0.00 2019-12-23 17:40:03 2019-12-23 18:22:04 t 1 1 207559 694 0.00 2019-12-23 17:36:35 2019-12-23 18:22:38 t 1 1 207561 687 0.00 2019-12-23 18:22:21 2019-12-23 18:26:46 t 1 1 207564 760 0.00 2019-12-23 18:12:14 2019-12-23 18:29:28 t 1 1 207568 687 0.00 2019-12-23 18:29:40 2019-12-23 18:36:17 t 1 1 207570 516 0.00 2019-12-23 18:36:19 2019-12-23 18:38:57 t 1 1 207574 562 0.00 2019-12-23 18:40:42 2019-12-23 18:40:52 t 1 1 207578 483 0.00 2019-12-23 18:43:32 2019-12-23 18:43:32 f 1 1 207581 503 0.00 2019-12-23 18:36:17 2019-12-23 18:46:45 t 1 1 207584 625 0.00 2019-12-23 18:28:48 2019-12-23 18:49:40 t 1 1 207587 611 0.00 2019-12-23 18:34:15 2019-12-23 18:50:33 t 1 1 207590 736 0.00 2019-12-23 18:50:18 2019-12-23 18:51:29 t 1 1 207592 696 0.00 2019-12-23 18:14:54 2019-12-23 18:52:13 t 1 1 207595 514 0.00 2019-12-23 18:36:44 2019-12-23 18:53:47 t 1 1 207597 736 0.00 2019-12-23 18:55:41 2019-12-23 18:56:00 t 1 1 207600 673 0.00 2019-12-23 18:55:57 2019-12-23 18:57:25 t 1 1 207601 562 0.00 2019-12-23 18:57:57 2019-12-23 18:58:11 t 1 1 207602 687 0.00 2019-12-23 18:46:45 2019-12-23 18:59:06 t 1 1 207604 514 0.00 2019-12-23 18:59:34 2019-12-23 19:00:39 t 1 1 207605 514 0.00 2019-12-23 19:00:38 2019-12-23 19:01:07 t 1 1 207609 736 0.00 2019-12-23 19:02:38 2019-12-23 19:03:42 t 1 1 207617 544 0.00 2019-12-23 17:34:03 2019-12-23 19:10:26 t 1 1 207620 544 0.00 2019-12-23 19:10:26 2019-12-23 19:11:03 t 1 1 207629 738 0.00 2019-12-23 19:13:43 2019-12-23 19:15:42 t 1 1 207633 738 0.00 2019-12-23 19:17:49 2019-12-23 19:18:45 t 1 1 207638 738 0.00 2019-12-23 19:19:35 2019-12-23 19:19:54 t 1 1 207642 722 0.00 2019-12-23 19:12:19 2019-12-23 19:22:01 t 1 1 207645 738 0.00 2019-12-23 19:23:58 2019-12-23 19:24:37 t 1 1 207649 483 0.00 2019-12-23 19:26:05 2019-12-23 19:26:05 f 1 1 207650 483 0.00 2019-12-23 19:26:29 2019-12-23 19:26:29 f 1 1 207653 738 0.00 2019-12-23 19:27:13 2019-12-23 19:27:40 t 1 1 207654 722 0.00 2019-12-23 19:27:49 2019-12-23 19:28:14 t 1 1 207656 562 0.00 2019-12-23 19:28:18 2019-12-23 19:28:58 t 1 1 207659 562 0.00 2019-12-23 19:29:49 2019-12-23 19:30:08 t 1 1 207662 744 0.00 2019-12-23 19:24:03 2019-12-23 19:30:24 t 1 1 207664 738 0.00 2019-12-23 19:30:24 2019-12-23 19:31:07 t 1 1 207666 738 0.00 2019-12-23 19:32:33 2019-12-23 19:32:45 t 1 1 207669 673 0.00 2019-12-23 19:16:12 2019-12-23 19:33:15 t 1 1 207672 722 0.00 2019-12-23 19:33:08 2019-12-23 19:33:32 t 1 1 207678 738 0.00 2019-12-23 19:37:21 2019-12-23 19:37:52 t 1 1 207680 694 0.00 2019-12-23 18:22:38 2019-12-23 19:38:12 t 1 1 207682 562 0.00 2019-12-23 19:38:52 2019-12-23 19:40:57 t 1 1 207684 736 0.00 2019-12-23 19:33:31 2019-12-23 19:42:25 t 1 1 207685 707 0.00 2019-12-23 19:37:32 2019-12-23 19:42:36 t 1 1 207688 738 0.00 2019-12-23 19:44:14 2019-12-23 19:44:23 t 1 1 207689 734 0.00 2019-12-23 17:21:25 2019-12-23 19:44:41 t 1 1 207692 736 0.00 2019-12-23 19:42:25 2019-12-23 19:47:38 t 1 1 207695 591 0.00 2019-12-23 19:38:12 2019-12-23 19:47:58 t 1 1 207698 738 0.00 2019-12-23 19:50:48 2019-12-23 19:50:58 t 1 1 207701 738 0.00 2019-12-23 19:53:37 2019-12-23 19:54:03 t 1 1 207704 736 0.00 2019-12-23 19:50:41 2019-12-23 19:54:59 t 1 1 207709 738 0.00 2019-12-23 19:57:21 2019-12-23 19:57:39 t 1 1 207710 675 0.00 2019-12-23 19:56:11 2019-12-23 19:57:42 t 1 1 207714 738 0.00 2019-12-23 19:59:48 2019-12-23 20:00:49 t 1 1 207715 744 0.00 2019-12-23 19:30:59 2019-12-23 20:01:33 t 1 1 207717 738 0.00 2019-12-23 20:01:41 2019-12-23 20:02:05 t 1 1 207721 738 0.00 2019-12-23 20:04:00 2019-12-23 20:04:27 t 1 1 207722 711 0.00 2019-12-23 18:54:23 2019-12-23 20:04:28 t 1 1 207723 738 0.00 2019-12-23 20:04:52 2019-12-23 20:04:55 t 1 1 207726 736 0.00 2019-12-23 20:06:14 2019-12-23 20:06:34 t 1 1 207728 736 0.00 2019-12-23 20:06:59 2019-12-23 20:07:29 t 1 1 207731 738 0.00 2019-12-23 20:07:59 2019-12-23 20:08:25 t 1 1 207735 738 0.00 2019-12-23 20:10:12 2019-12-23 20:11:01 t 1 1 207737 675 0.00 2019-12-23 20:06:45 2019-12-23 20:12:21 t 1 1 207445 483 0.00 2019-12-23 17:02:47 2019-12-23 17:02:47 f 1 1 207447 611 0.00 2019-12-23 16:59:13 2019-12-23 17:03:09 t 1 1 207448 483 0.00 2019-12-23 17:03:33 2019-12-23 17:03:33 f 1 1 207452 483 0.00 2019-12-23 17:06:20 2019-12-23 17:06:20 f 1 1 207455 483 0.00 2019-12-23 17:06:57 2019-12-23 17:06:57 f 1 1 207457 483 0.00 2019-12-23 17:07:53 2019-12-23 17:07:53 f 1 1 207462 545 0.00 2019-12-23 17:09:18 2019-12-23 17:11:31 t 1 1 207463 562 0.00 2019-12-23 17:12:19 2019-12-23 17:12:39 t 1 1 207465 516 0.00 2019-12-23 16:57:09 2019-12-23 17:14:05 t 1 1 207467 578 0.00 2019-12-23 17:08:08 2019-12-23 17:15:25 t 1 1 207469 687 0.00 2019-12-23 17:04:04 2019-12-23 17:17:06 t 1 1 207471 763 0.00 2019-12-23 17:17:37 2019-12-23 17:18:47 t 1 1 207476 631 0.00 2019-12-23 17:20:55 2019-12-23 17:21:48 t 1 1 207477 722 0.00 2019-12-23 17:14:18 2019-12-23 17:22:50 t 1 1 207479 562 0.00 2019-12-23 17:23:02 2019-12-23 17:23:20 t 1 1 207481 687 0.00 2019-12-23 17:17:06 2019-12-23 17:23:31 t 1 1 207490 483 0.00 2019-12-23 17:31:12 2019-12-23 17:31:12 f 1 1 207497 763 0.00 2019-12-23 17:28:01 2019-12-23 17:33:26 t 1 1 207500 760 0.00 2019-12-23 17:31:28 2019-12-23 17:34:43 t 1 1 207501 483 0.00 2019-12-23 17:34:53 2019-12-23 17:34:53 f 1 1 207504 514 0.00 2019-12-23 17:23:04 2019-12-23 17:36:25 t 1 1 207506 763 0.00 2019-12-23 17:35:20 2019-12-23 17:36:46 t 1 1 207507 763 0.00 2019-12-23 17:36:46 2019-12-23 17:38:08 t 1 1 207510 578 0.00 2019-12-23 17:24:45 2019-12-23 17:42:02 t 1 1 207512 736 0.00 2019-12-23 17:42:34 2019-12-23 17:42:53 t 1 1 207514 763 0.00 2019-12-23 17:43:59 2019-12-23 17:45:02 t 1 1 207515 736 0.00 2019-12-23 17:45:25 2019-12-23 17:45:39 t 1 1 207517 760 0.00 2019-12-23 17:38:34 2019-12-23 17:47:32 t 1 1 207519 707 0.00 2019-12-23 17:42:05 2019-12-23 17:47:44 t 1 1 207522 562 0.00 2019-12-23 17:41:15 2019-12-23 17:50:18 t 1 1 207523 637 0.00 2019-12-23 17:47:55 2019-12-23 17:51:12 t 1 1 207525 760 0.00 2019-12-23 17:47:32 2019-12-23 17:52:44 t 1 1 207526 724 0.00 2019-12-23 17:43:26 2019-12-23 17:53:34 t 1 1 207528 562 0.00 2019-12-23 17:50:58 2019-12-23 17:54:00 t 1 1 207530 689 0.00 2019-12-23 17:47:03 2019-12-23 17:55:20 t 1 1 207533 483 0.00 2019-12-23 17:59:38 2019-12-23 17:59:38 f 1 1 207534 562 0.00 2019-12-23 18:00:47 2019-12-23 18:01:03 t 1 1 207535 742 0.00 2019-12-23 17:52:25 2019-12-23 18:02:37 t 1 1 207538 545 0.00 2019-12-23 17:58:17 2019-12-23 18:04:07 t 1 1 207543 736 0.00 2019-12-23 18:07:04 2019-12-23 18:07:14 t 1 1 207544 514 0.00 2019-12-23 18:05:05 2019-12-23 18:07:58 t 1 1 207547 760 0.00 2019-12-23 18:03:36 2019-12-23 18:12:14 t 1 1 207548 675 0.00 2019-12-23 18:13:37 2019-12-23 18:15:04 t 1 1 207550 667 0.00 2019-12-23 18:13:28 2019-12-23 18:15:53 t 1 1 207553 673 0.00 2019-12-23 18:09:28 2019-12-23 18:19:46 t 1 1 207558 562 0.00 2019-12-23 18:21:59 2019-12-23 18:22:19 t 1 1 207560 514 0.00 2019-12-23 18:20:41 2019-12-23 18:24:17 t 1 1 207562 736 0.00 2019-12-23 18:19:40 2019-12-23 18:27:52 t 1 1 207563 625 0.00 2019-12-23 18:04:21 2019-12-23 18:28:27 t 1 1 207567 760 0.00 2019-12-23 18:29:28 2019-12-23 18:33:25 t 1 1 207569 578 0.00 2019-12-23 18:24:17 2019-12-23 18:36:46 t 1 1 207572 760 0.00 2019-12-23 18:33:25 2019-12-23 18:39:17 t 1 1 207573 615 0.00 2019-12-23 18:18:07 2019-12-23 18:39:40 t 1 1 207575 483 0.00 2019-12-23 18:41:11 2019-12-23 18:41:11 f 1 1 207577 483 0.00 2019-12-23 18:42:22 2019-12-23 18:42:22 f 1 1 207580 673 0.00 2019-12-23 18:25:39 2019-12-23 18:46:28 t 1 1 207582 562 0.00 2019-12-23 18:46:21 2019-12-23 18:47:04 t 1 1 207583 562 0.00 2019-12-23 18:47:40 2019-12-23 18:48:02 t 1 1 207585 736 0.00 2019-12-23 18:32:00 2019-12-23 18:50:18 t 1 1 207589 763 0.00 2019-12-23 18:50:34 2019-12-23 18:51:27 t 1 1 207593 752 0.00 2019-12-23 16:14:27 2019-12-23 18:53:05 t 1 1 207594 763 0.00 2019-12-23 18:52:31 2019-12-23 18:53:46 t 1 1 207599 736 0.00 2019-12-23 18:56:20 2019-12-23 18:56:55 t 1 1 207603 514 0.00 2019-12-23 18:54:15 2019-12-23 18:59:35 t 1 1 207607 675 0.00 2019-12-23 18:59:36 2019-12-23 19:01:14 t 1 1 207608 696 0.00 2019-12-23 18:52:13 2019-12-23 19:03:29 t 1 1 207611 689 0.00 2019-12-23 19:03:29 2019-12-23 19:04:51 t 1 1 207612 722 0.00 2019-12-23 19:00:50 2019-12-23 19:06:24 t 1 1 207614 562 0.00 2019-12-23 19:08:44 2019-12-23 19:08:50 t 1 1 207618 736 0.00 2019-12-23 19:04:39 2019-12-23 19:10:50 t 1 1 207621 722 0.00 2019-12-23 19:11:06 2019-12-23 19:11:12 t 1 1 207623 738 0.00 2019-12-23 19:09:09 2019-12-23 19:12:49 t 1 1 207625 562 0.00 2019-12-23 19:13:01 2019-12-23 19:13:31 t 1 1 207627 631 0.00 2019-12-23 19:12:04 2019-12-23 19:14:33 t 1 1 207630 738 0.00 2019-12-23 19:15:47 2019-12-23 19:15:48 t 1 1 207632 738 0.00 2019-12-23 19:16:35 2019-12-23 19:17:10 t 1 1 207634 564 0.00 2019-12-23 19:13:02 2019-12-23 19:19:19 t 1 1 207637 483 0.00 2019-12-23 19:19:36 2019-12-23 19:19:36 f 1 1 207644 736 0.00 2019-12-23 19:23:50 2019-12-23 19:24:03 t 1 1 207647 498 0.00 2019-12-23 17:07:25 2019-12-23 19:25:01 t 1 2 207648 760 0.00 2019-12-23 19:20:34 2019-12-23 19:25:33 t 1 1 207655 738 0.00 2019-12-23 19:27:48 2019-12-23 19:28:19 t 1 1 207658 738 0.00 2019-12-23 19:28:27 2019-12-23 19:29:10 t 1 1 207661 738 0.00 2019-12-23 19:29:33 2019-12-23 19:30:11 t 1 1 207665 637 0.00 2019-12-23 19:22:02 2019-12-23 19:32:23 t 1 1 207667 625 0.00 2019-12-23 19:28:20 2019-12-23 19:32:57 t 1 1 207673 738 0.00 2019-12-23 19:33:31 2019-12-23 19:34:12 t 1 1 207676 707 0.00 2019-12-23 19:25:51 2019-12-23 19:34:47 t 1 1 207677 722 0.00 2019-12-23 19:35:29 2019-12-23 19:35:47 t 1 1 207679 738 0.00 2019-12-23 19:37:58 2019-12-23 19:38:12 t 1 1 207683 738 0.00 2019-12-23 19:41:25 2019-12-23 19:41:26 t 1 1 207686 738 0.00 2019-12-23 19:42:36 2019-12-23 19:43:17 t 1 1 207690 750 0.00 2019-12-23 18:52:10 2019-12-23 19:45:04 t 1 1 207691 637 0.00 2019-12-23 19:32:32 2019-12-23 19:46:57 t 1 1 207694 738 0.00 2019-12-23 19:47:30 2019-12-23 19:47:57 t 1 1 207697 738 0.00 2019-12-23 19:49:29 2019-12-23 19:49:56 t 1 1 207699 738 0.00 2019-12-23 19:51:11 2019-12-23 19:51:24 t 1 1 207700 538 0.00 2019-12-23 17:43:56 2019-12-23 19:54:02 t 1 1 207703 738 0.00 2019-12-23 19:54:33 2019-12-23 19:54:40 t 1 1 207706 738 0.00 2019-12-23 19:55:15 2019-12-23 19:55:30 t 1 1 207708 738 0.00 2019-12-23 19:56:27 2019-12-23 19:57:13 t 1 1 207712 738 0.00 2019-12-23 19:58:44 2019-12-23 19:59:40 t 1 1 207716 625 0.00 2019-12-23 19:36:46 2019-12-23 20:02:03 t 1 1 207718 392 0.00 2019-12-23 19:47:06 2019-12-23 20:02:23 t 1 2 207719 738 0.00 2019-12-23 20:03:10 2019-12-23 20:03:48 t 1 1 207720 545 0.00 2019-12-23 19:42:01 2019-12-23 20:04:14 t 1 1 207724 736 0.00 2019-12-23 19:57:30 2019-12-23 20:05:30 t 1 1 207730 763 0.00 2019-12-23 20:07:31 2019-12-23 20:08:14 t 1 1 207732 763 0.00 2019-12-23 20:08:30 2019-12-23 20:09:28 t 1 1 207734 637 0.00 2019-12-23 20:03:05 2019-12-23 20:10:00 t 1 1 207738 738 0.00 2019-12-23 20:12:10 2019-12-23 20:12:37 t 1 1 207739 660 0.00 2019-12-23 20:08:10 2019-12-23 20:13:12 t 1 1 207742 738 0.00 2019-12-23 20:12:59 2019-12-23 20:14:00 t 1 1 207745 562 0.00 2019-12-23 20:17:56 2019-12-23 20:18:04 t 1 1 207749 673 0.00 2019-12-23 20:18:41 2019-12-23 20:22:12 t 1 1 207752 562 0.00 2019-12-23 20:24:30 2019-12-23 20:24:39 t 1 1 207753 687 0.00 2019-12-23 20:24:43 2019-12-23 20:25:33 t 1 1 207757 736 0.00 2019-12-23 20:26:34 2019-12-23 20:28:35 t 1 1 207759 675 0.00 2019-12-23 20:27:34 2019-12-23 20:29:52 t 1 1 207763 483 0.00 2019-12-23 20:32:41 2019-12-23 20:32:41 f 1 1 207764 724 0.00 2019-12-23 20:22:34 2019-12-23 20:34:22 t 1 1 207765 691 0.00 2019-12-23 20:33:46 2019-12-23 20:34:56 t 1 1 207767 562 0.00 2019-12-23 20:35:05 2019-12-23 20:35:25 t 1 1 207768 562 0.00 2019-12-23 20:38:13 2019-12-23 20:38:23 t 1 1 207769 687 0.00 2019-12-23 20:38:57 2019-12-23 20:39:14 t 1 1 207772 694 0.00 2019-12-23 19:47:58 2019-12-23 20:41:03 t 1 1 207774 754 0.00 2019-12-23 18:58:36 2019-12-23 20:42:35 t 1 2 207777 675 0.00 2019-12-23 20:43:38 2019-12-23 20:46:52 t 1 1 207784 625 0.00 2019-12-23 20:46:40 2019-12-23 20:54:28 t 1 1 207791 736 0.00 2019-12-23 20:56:49 2019-12-23 20:57:01 t 1 1 207793 625 0.00 2019-12-23 20:56:52 2019-12-23 20:57:23 t 1 1 207794 625 0.00 2019-12-23 20:57:22 2019-12-23 20:57:46 t 1 1 207801 483 0.00 2019-12-23 21:01:32 2019-12-23 21:01:32 f 1 1 207805 696 0.00 2019-12-23 21:06:30 2019-12-23 21:07:31 t 1 1 207808 696 0.00 2019-12-23 21:11:05 2019-12-23 21:12:44 t 1 1 207810 514 0.00 2019-12-23 21:02:05 2019-12-23 21:13:22 t 1 1 207812 611 0.00 2019-12-23 21:13:22 2019-12-23 21:14:05 t 1 1 207813 483 0.00 2019-12-23 21:14:25 2019-12-23 21:14:25 f 1 1 207814 744 0.00 2019-12-23 21:00:17 2019-12-23 21:15:06 t 1 1 207815 752 0.00 2019-12-23 18:53:05 2019-12-23 21:15:32 t 1 1 207817 562 0.00 2019-12-23 21:13:29 2019-12-23 21:16:51 t 1 1 207818 736 0.00 2019-12-23 20:59:42 2019-12-23 21:19:07 t 1 1 207822 544 0.00 2019-12-23 21:21:40 2019-12-23 21:23:04 t 1 1 207823 562 0.00 2019-12-23 21:24:21 2019-12-23 21:24:28 t 1 1 207824 736 0.00 2019-12-23 21:19:07 2019-12-23 21:26:50 t 1 1 207834 562 0.00 2019-12-23 21:46:52 2019-12-23 21:47:23 t 1 1 207836 679 0.00 2019-12-23 21:32:26 2019-12-23 21:50:59 t 1 1 207837 637 0.00 2019-12-23 21:36:23 2019-12-23 21:51:39 t 1 1 207838 689 0.00 2019-12-23 19:10:55 2019-12-23 21:53:43 t 1 1 207840 687 0.00 2019-12-23 21:54:58 2019-12-23 21:55:08 t 1 1 207842 689 0.00 2019-12-23 21:53:43 2019-12-23 22:03:23 t 1 1 207843 649 0.00 2019-12-23 21:46:16 2019-12-23 22:04:10 t 1 1 207845 744 0.00 2019-12-23 21:46:01 2019-12-23 22:08:16 t 1 1 207847 679 0.00 2019-12-23 21:50:59 2019-12-23 22:12:15 t 1 1 207848 483 0.00 2019-12-23 22:12:56 2019-12-23 22:12:56 f 1 1 207852 562 0.00 2019-12-23 22:13:48 2019-12-23 22:15:06 t 1 1 207855 675 0.00 2019-12-23 22:18:44 2019-12-23 22:20:18 t 1 1 207856 685 0.00 2019-12-23 22:18:50 2019-12-23 22:20:38 t 1 1 207858 687 0.00 2019-12-23 22:18:09 2019-12-23 22:21:22 t 1 1 207861 685 0.00 2019-12-23 22:21:41 2019-12-23 22:22:04 t 1 1 207866 514 0.00 2019-12-23 21:47:56 2019-12-23 22:27:26 t 1 1 207867 687 0.00 2019-12-23 22:23:44 2019-12-23 22:28:02 t 1 1 207872 758 0.00 2019-12-23 22:31:01 2019-12-23 22:33:40 t 1 1 207874 685 0.00 2019-12-23 22:34:43 2019-12-23 22:34:55 t 1 1 207880 675 0.00 2019-12-23 22:32:44 2019-12-23 22:35:54 t 1 1 207881 685 0.00 2019-12-23 22:36:19 2019-12-23 22:36:27 t 1 1 207884 685 0.00 2019-12-23 22:38:34 2019-12-23 22:38:51 t 1 1 207886 685 0.00 2019-12-23 22:39:59 2019-12-23 22:40:06 t 1 1 207891 685 0.00 2019-12-23 22:42:05 2019-12-23 22:42:10 t 1 1 207892 685 0.00 2019-12-23 22:43:05 2019-12-23 22:43:11 t 1 1 207894 758 0.00 2019-12-23 22:43:45 2019-12-23 22:44:29 t 1 1 207897 562 0.00 2019-12-23 22:45:17 2019-12-23 22:45:44 t 1 1 207898 691 0.00 2019-12-23 22:45:53 2019-12-23 22:47:03 t 1 1 207900 691 0.00 2019-12-23 22:47:03 2019-12-23 22:48:16 t 1 1 207904 685 0.00 2019-12-23 22:46:35 2019-12-23 22:49:22 t 1 1 207906 660 0.00 2019-12-23 22:19:41 2019-12-23 22:50:18 t 1 1 207911 685 0.00 2019-12-23 22:50:52 2019-12-23 22:52:03 t 1 1 207912 685 0.00 2019-12-23 22:52:39 2019-12-23 22:52:50 t 1 1 207914 683 0.00 2019-12-23 22:48:10 2019-12-23 22:53:08 t 1 1 207916 685 0.00 2019-12-23 22:52:58 2019-12-23 22:53:10 t 1 1 207919 685 0.00 2019-12-23 22:53:57 2019-12-23 22:56:27 t 1 1 207926 673 0.00 2019-12-23 20:36:50 2019-12-23 23:03:55 t 1 1 207929 675 0.00 2019-12-23 23:04:02 2019-12-23 23:06:01 t 1 1 207932 562 0.00 2019-12-23 23:07:02 2019-12-23 23:07:06 t 1 1 207941 675 0.00 2019-12-23 23:24:38 2019-12-23 23:26:25 t 1 1 207943 544 0.00 2019-12-23 23:25:57 2019-12-23 23:27:01 t 1 1 207946 687 0.00 2019-12-23 23:31:16 2019-12-23 23:38:42 t 1 1 207947 562 0.00 2019-12-23 23:38:56 2019-12-23 23:38:56 f 1 1 207949 545 0.00 2019-12-23 23:28:39 2019-12-23 23:46:02 t 1 1 207950 679 0.00 2019-12-23 23:14:41 2019-12-23 23:48:59 t 1 1 207952 562 0.00 2019-12-23 23:49:36 2019-12-23 23:49:36 f 1 1 207953 392 0.00 2019-12-23 21:00:07 2019-12-23 23:54:50 t 1 2 207954 544 0.00 2019-12-23 23:53:22 2019-12-23 23:56:38 t 1 1 207955 545 0.00 2019-12-23 23:46:02 2019-12-23 23:59:13 t 1 1 207956 687 0.00 2019-12-23 23:50:33 2019-12-24 00:04:01 t 1 1 207963 754 0.00 2019-12-23 23:27:28 2019-12-24 00:24:18 t 1 2 207976 514 0.00 2019-12-24 00:57:23 2019-12-24 01:02:54 t 1 1 207978 503 0.00 2019-12-24 01:03:32 2019-12-24 01:03:59 t 1 1 207980 514 0.00 2019-12-24 01:02:54 2019-12-24 01:09:26 t 1 1 207982 392 0.00 2019-12-24 00:40:02 2019-12-24 01:10:13 t 1 2 207984 514 0.00 2019-12-24 01:09:26 2019-12-24 01:18:06 t 1 1 207985 679 0.00 2019-12-24 01:09:58 2019-12-24 01:25:42 t 1 1 207988 538 0.00 2019-12-24 00:39:22 2019-12-24 01:33:00 t 1 1 207991 687 0.00 2019-12-24 02:14:11 2019-12-24 02:14:16 t 1 1 207992 544 0.00 2019-12-24 00:52:33 2019-12-24 02:24:44 t 1 1 207997 499 0.00 2019-12-24 01:03:03 2019-12-24 03:46:35 t 1 1 207998 667 0.00 2019-12-24 04:04:12 2019-12-24 04:05:49 t 1 1 208002 516 0.00 2019-12-24 05:29:52 2019-12-24 05:37:50 t 1 1 208003 667 0.00 2019-12-24 05:48:13 2019-12-24 05:48:34 t 1 1 208007 707 0.00 2019-12-24 06:35:54 2019-12-24 06:40:20 t 1 1 208010 637 0.00 2019-12-24 06:49:52 2019-12-24 07:02:55 t 1 1 208014 544 0.00 2019-12-24 02:25:14 2019-12-24 07:08:25 t 1 1 208019 742 0.00 2019-12-24 07:16:38 2019-12-24 07:23:36 t 1 1 208020 694 0.00 2019-12-24 07:10:25 2019-12-24 07:34:02 t 1 1 207733 763 0.00 2019-12-23 20:09:31 2019-12-23 20:09:33 t 1 1 207736 738 0.00 2019-12-23 20:11:48 2019-12-23 20:11:58 t 1 1 207740 750 0.00 2019-12-23 20:13:07 2019-12-23 20:13:13 t 1 1 207744 763 0.00 2019-12-23 20:13:12 2019-12-23 20:15:50 t 1 1 207746 562 0.00 2019-12-23 20:19:58 2019-12-23 20:20:38 t 1 1 207748 635 0.00 2019-12-23 20:01:11 2019-12-23 20:21:59 t 1 1 207751 675 0.00 2019-12-23 20:20:37 2019-12-23 20:22:15 t 1 1 207755 578 0.00 2019-12-23 20:26:32 2019-12-23 20:26:34 t 1 1 207758 483 0.00 2019-12-23 20:29:05 2019-12-23 20:29:05 f 1 1 207760 691 0.00 2019-12-23 20:29:48 2019-12-23 20:30:59 t 1 1 207766 696 0.00 2019-12-23 20:32:23 2019-12-23 20:35:12 t 1 1 207771 544 0.00 2019-12-23 19:57:40 2019-12-23 20:40:52 t 1 1 207773 637 0.00 2019-12-23 20:10:35 2019-12-23 20:41:27 t 1 1 207776 625 0.00 2019-12-23 20:43:10 2019-12-23 20:44:12 t 1 1 207778 562 0.00 2019-12-23 20:47:44 2019-12-23 20:47:52 t 1 1 207780 562 0.00 2019-12-23 20:48:20 2019-12-23 20:48:50 t 1 1 207782 754 0.00 2019-12-23 20:48:17 2019-12-23 20:53:01 t 1 2 207783 736 0.00 2019-12-23 20:53:21 2019-12-23 20:53:29 t 1 1 207785 516 0.00 2019-12-23 20:51:21 2019-12-23 20:55:23 t 1 1 207786 736 0.00 2019-12-23 20:55:17 2019-12-23 20:55:32 t 1 1 207788 656 0.00 2019-12-23 20:51:26 2019-12-23 20:55:43 t 1 1 207790 625 0.00 2019-12-23 20:54:28 2019-12-23 20:56:53 t 1 1 207795 625 0.00 2019-12-23 20:57:45 2019-12-23 20:58:08 t 1 1 207796 625 0.00 2019-12-23 20:58:08 2019-12-23 20:58:28 t 1 1 207798 724 0.00 2019-12-23 20:46:05 2019-12-23 20:58:48 t 1 1 207799 736 0.00 2019-12-23 20:59:02 2019-12-23 20:59:22 t 1 1 207802 591 0.00 2019-12-23 20:41:03 2019-12-23 21:05:47 t 1 1 207803 562 0.00 2019-12-23 21:03:32 2019-12-23 21:06:06 t 1 1 207804 551 0.00 2019-12-22 23:31:30 2019-12-23 21:06:58 t 1 1 207809 483 0.00 2019-12-23 21:12:53 2019-12-23 21:12:53 f 1 1 207811 483 0.00 2019-12-23 21:13:53 2019-12-23 21:13:53 f 1 1 207820 514 0.00 2019-12-23 21:14:05 2019-12-23 21:19:58 t 1 1 207825 637 0.00 2019-12-23 21:29:27 2019-12-23 21:32:09 t 1 1 207826 562 0.00 2019-12-23 21:35:10 2019-12-23 21:35:26 t 1 1 207827 485 0.00 2019-12-23 21:40:05 2019-12-23 21:40:05 f 1 1 207830 687 0.00 2019-12-23 20:48:31 2019-12-23 21:43:45 t 1 1 207831 744 0.00 2019-12-23 21:32:28 2019-12-23 21:45:58 t 1 1 207833 649 0.00 2019-12-23 21:33:57 2019-12-23 21:46:16 t 1 1 207835 514 0.00 2019-12-23 21:23:04 2019-12-23 21:47:56 t 1 1 207844 689 0.00 2019-12-23 22:03:23 2019-12-23 22:06:51 t 1 1 207846 758 0.00 2019-12-23 22:10:42 2019-12-23 22:12:08 t 1 1 207851 687 0.00 2019-12-23 22:07:12 2019-12-23 22:14:41 t 1 1 207853 637 0.00 2019-12-23 22:06:52 2019-12-23 22:18:16 t 1 1 207862 685 0.00 2019-12-23 22:22:10 2019-12-23 22:22:15 t 1 1 207865 562 0.00 2019-12-23 22:20:01 2019-12-23 22:27:21 t 1 1 207869 685 0.00 2019-12-23 22:22:37 2019-12-23 22:30:16 t 1 1 207870 758 0.00 2019-12-23 22:29:49 2019-12-23 22:30:54 t 1 1 207871 625 0.00 2019-12-23 22:25:48 2019-12-23 22:32:06 t 1 1 207876 545 0.00 2019-12-23 22:24:12 2019-12-23 22:35:15 t 1 1 207879 758 0.00 2019-12-23 22:35:29 2019-12-23 22:35:40 t 1 1 207883 758 0.00 2019-12-23 22:38:14 2019-12-23 22:38:49 t 1 1 207887 544 0.00 2019-12-23 22:38:47 2019-12-23 22:40:22 t 1 1 207889 544 0.00 2019-12-23 22:40:22 2019-12-23 22:41:20 t 1 1 207899 685 0.00 2019-12-23 22:47:07 2019-12-23 22:47:14 t 1 1 207901 685 0.00 2019-12-23 22:48:21 2019-12-23 22:48:27 t 1 1 207903 675 0.00 2019-12-23 22:46:33 2019-12-23 22:49:09 t 1 1 207905 685 0.00 2019-12-23 22:49:22 2019-12-23 22:49:29 t 1 1 207908 538 0.00 2019-12-23 20:11:33 2019-12-23 22:51:21 t 1 1 207910 487 0.00 2019-12-23 22:45:44 2019-12-23 22:51:49 t 1 2 207913 738 0.00 2019-12-23 19:58:00 2019-12-23 22:53:07 t 1 1 207915 687 0.00 2019-12-23 22:37:40 2019-12-23 22:53:09 t 1 1 207918 758 0.00 2019-12-23 22:53:13 2019-12-23 22:53:51 t 1 1 207920 685 0.00 2019-12-23 22:56:36 2019-12-23 22:56:42 t 1 1 207923 683 0.00 2019-12-23 22:53:09 2019-12-23 22:57:38 t 1 1 207925 683 0.00 2019-12-23 22:57:38 2019-12-23 23:02:40 t 1 1 207927 758 0.00 2019-12-23 23:03:26 2019-12-23 23:04:03 t 1 1 207930 683 0.00 2019-12-23 23:02:40 2019-12-23 23:06:41 t 1 1 207935 679 0.00 2019-12-23 22:45:22 2019-12-23 23:14:41 t 1 1 207936 683 0.00 2019-12-23 23:11:17 2019-12-23 23:15:53 t 1 1 207938 683 0.00 2019-12-23 23:15:53 2019-12-23 23:19:36 t 1 1 207939 683 0.00 2019-12-23 23:19:36 2019-12-23 23:21:16 t 1 1 207940 544 0.00 2019-12-23 22:45:19 2019-12-23 23:25:57 t 1 1 207942 754 0.00 2019-12-23 21:09:20 2019-12-23 23:26:56 t 1 2 207944 545 0.00 2019-12-23 23:07:08 2019-12-23 23:28:39 t 1 1 207948 687 0.00 2019-12-23 23:38:42 2019-12-23 23:41:45 t 1 1 207951 687 0.00 2019-12-23 23:43:05 2019-12-23 23:49:07 t 1 1 207957 760 0.00 2019-12-23 23:47:29 2019-12-24 00:04:14 t 1 1 207958 679 0.00 2019-12-23 23:48:59 2019-12-24 00:11:55 t 1 1 207959 760 0.00 2019-12-24 00:04:14 2019-12-24 00:13:00 t 1 1 207966 728 0.00 2019-12-24 00:20:32 2019-12-24 00:30:31 t 1 1 207970 679 0.00 2019-12-24 00:12:04 2019-12-24 00:43:34 t 1 1 207972 728 0.00 2019-12-24 00:42:26 2019-12-24 00:46:57 t 1 1 207975 728 0.00 2019-12-24 00:56:10 2019-12-24 01:02:43 t 1 1 207977 503 0.00 2019-12-24 00:59:01 2019-12-24 01:03:32 t 1 1 207987 687 0.00 2019-12-24 00:27:44 2019-12-24 01:30:29 t 1 1 207994 667 0.00 2019-12-24 02:46:27 2019-12-24 02:47:41 t 1 1 207999 667 0.00 2019-12-24 04:44:14 2019-12-24 04:44:28 t 1 1 208004 392 0.00 2019-12-24 06:10:16 2019-12-24 06:12:21 t 1 2 208005 637 0.00 2019-12-24 05:53:31 2019-12-24 06:23:08 t 1 1 208006 392 0.00 2019-12-24 06:12:42 2019-12-24 06:26:11 t 1 2 208008 562 0.00 2019-12-23 22:08:16 2019-12-24 06:43:44 t 1 1 208009 637 0.00 2019-12-24 06:24:26 2019-12-24 06:49:42 t 1 1 208012 667 0.00 2019-12-24 07:04:38 2019-12-24 07:04:52 t 1 1 208015 516 0.00 2019-12-24 07:08:13 2019-12-24 07:09:13 t 1 1 208016 675 0.00 2019-12-24 07:03:59 2019-12-24 07:09:30 t 1 1 208021 722 0.00 2019-12-24 07:29:19 2019-12-24 07:34:11 t 1 1 208022 635 0.00 2019-12-24 07:31:34 2019-12-24 07:34:19 t 1 1 208023 694 0.00 2019-12-24 07:34:07 2019-12-24 07:52:34 t 1 1 208026 514 0.00 2019-12-24 01:18:06 2019-12-24 07:58:59 t 1 1 208027 694 0.00 2019-12-24 07:58:57 2019-12-24 08:00:42 t 1 1 208028 694 0.00 2019-12-24 08:00:43 2019-12-24 08:03:07 t 1 1 208029 707 0.00 2019-12-24 07:52:29 2019-12-24 08:04:06 t 1 1 208034 625 0.00 2019-12-24 07:54:59 2019-12-24 08:21:28 t 1 1 208035 591 0.00 2019-12-24 08:16:47 2019-12-24 08:23:01 t 1 1 208036 564 0.00 2019-12-24 08:27:16 2019-12-24 08:30:42 t 1 1 208037 687 0.00 2019-12-24 08:18:36 2019-12-24 08:31:14 t 1 1 208040 562 0.00 2019-12-23 23:28:26 2019-12-24 08:43:04 t 1 1 207741 738 0.00 2019-12-23 20:13:22 2019-12-23 20:13:22 f 1 1 207743 711 0.00 2019-12-23 20:04:28 2019-12-23 20:14:15 t 1 1 207747 691 0.00 2019-12-23 20:20:26 2019-12-23 20:21:46 t 1 1 207750 724 0.00 2019-12-23 19:36:55 2019-12-23 20:22:13 t 1 1 207754 763 0.00 2019-12-23 20:19:35 2019-12-23 20:25:58 t 1 1 207756 516 0.00 2019-12-23 20:19:54 2019-12-23 20:28:31 t 1 1 207761 763 0.00 2019-12-23 20:26:05 2019-12-23 20:32:07 t 1 1 207762 516 0.00 2019-12-23 20:28:31 2019-12-23 20:32:41 t 1 1 207770 707 0.00 2019-12-23 20:03:18 2019-12-23 20:39:21 t 1 1 207775 625 0.00 2019-12-23 20:02:16 2019-12-23 20:43:08 t 1 1 207779 691 0.00 2019-12-23 20:47:33 2019-12-23 20:48:47 t 1 1 207781 736 0.00 2019-12-23 20:46:56 2019-12-23 20:52:36 t 1 1 207787 562 0.00 2019-12-23 20:55:23 2019-12-23 20:55:35 t 1 1 207789 736 0.00 2019-12-23 20:56:07 2019-12-23 20:56:16 t 1 1 207792 516 0.00 2019-12-23 20:55:34 2019-12-23 20:57:08 t 1 1 207797 736 0.00 2019-12-23 20:58:39 2019-12-23 20:58:42 t 1 1 207800 637 0.00 2019-12-23 20:41:27 2019-12-23 21:00:17 t 1 1 207806 675 0.00 2019-12-23 21:05:54 2019-12-23 21:07:45 t 1 1 207807 696 0.00 2019-12-23 21:07:30 2019-12-23 21:11:33 t 1 1 207816 544 0.00 2019-12-23 20:59:22 2019-12-23 21:16:24 t 1 1 207819 744 0.00 2019-12-23 21:15:06 2019-12-23 21:19:51 t 1 1 207821 675 0.00 2019-12-23 21:20:57 2019-12-23 21:22:21 t 1 1 207828 485 0.00 2019-12-23 21:40:18 2019-12-23 21:40:18 f 1 1 207829 485 0.00 2019-12-23 21:40:36 2019-12-23 21:40:36 f 1 1 207832 562 0.00 2019-12-23 21:45:48 2019-12-23 21:46:11 t 1 1 207839 687 0.00 2019-12-23 21:43:45 2019-12-23 21:54:44 t 1 1 207841 562 0.00 2019-12-23 21:49:14 2019-12-23 21:58:22 t 1 1 207849 758 0.00 2019-12-23 22:13:31 2019-12-23 22:14:19 t 1 1 207850 654 0.00 2019-12-23 21:59:08 2019-12-23 22:14:32 t 1 1 207854 758 0.00 2019-12-23 22:18:57 2019-12-23 22:19:42 t 1 1 207857 685 0.00 2019-12-23 22:20:38 2019-12-23 22:20:48 t 1 1 207859 685 0.00 2019-12-23 22:20:55 2019-12-23 22:21:23 t 1 1 207860 685 0.00 2019-12-23 22:21:29 2019-12-23 22:21:35 t 1 1 207863 625 0.00 2019-12-23 20:58:28 2019-12-23 22:25:49 t 1 1 207864 758 0.00 2019-12-23 22:27:12 2019-12-23 22:27:18 t 1 1 207868 758 0.00 2019-12-23 22:28:27 2019-12-23 22:28:57 t 1 1 207873 685 0.00 2019-12-23 22:30:16 2019-12-23 22:33:59 t 1 1 207875 562 0.00 2019-12-23 22:34:49 2019-12-23 22:34:58 t 1 1 207877 485 0.00 2019-12-23 22:35:19 2019-12-23 22:35:19 f 1 1 207878 687 0.00 2019-12-23 22:28:03 2019-12-23 22:35:35 t 1 1 207882 514 0.00 2019-12-23 22:27:26 2019-12-23 22:38:47 t 1 1 207885 694 0.00 2019-12-23 21:05:47 2019-12-23 22:38:59 t 1 1 207888 685 0.00 2019-12-23 22:41:01 2019-12-23 22:41:20 t 1 1 207890 685 0.00 2019-12-23 22:41:20 2019-12-23 22:41:27 t 1 1 207893 544 0.00 2019-12-23 22:41:20 2019-12-23 22:43:17 t 1 1 207895 679 0.00 2019-12-23 22:25:04 2019-12-23 22:45:22 t 1 1 207896 685 0.00 2019-12-23 22:45:12 2019-12-23 22:45:38 t 1 1 207902 758 0.00 2019-12-23 22:48:12 2019-12-23 22:48:29 t 1 1 207907 685 0.00 2019-12-23 22:50:28 2019-12-23 22:50:52 t 1 1 207909 591 0.00 2019-12-23 22:38:59 2019-12-23 22:51:38 t 1 1 207917 685 0.00 2019-12-23 22:53:29 2019-12-23 22:53:50 t 1 1 207921 685 0.00 2019-12-23 22:57:07 2019-12-23 22:57:21 t 1 1 207922 685 0.00 2019-12-23 22:57:29 2019-12-23 22:57:36 t 1 1 207924 562 0.00 2019-12-23 22:56:21 2019-12-23 22:57:47 t 1 1 207928 758 0.00 2019-12-23 23:04:07 2019-12-23 23:04:10 t 1 1 207931 758 0.00 2019-12-23 23:04:59 2019-12-23 23:06:59 t 1 1 207933 683 0.00 2019-12-23 23:06:41 2019-12-23 23:11:17 t 1 1 207934 687 0.00 2019-12-23 23:14:04 2019-12-23 23:14:09 t 1 1 207937 562 0.00 2019-12-23 23:17:22 2019-12-23 23:17:49 t 1 1 207945 687 0.00 2019-12-23 23:14:16 2019-12-23 23:31:16 t 1 1 207960 687 0.00 2019-12-24 00:04:01 2019-12-24 00:17:09 t 1 1 207961 760 0.00 2019-12-24 00:13:00 2019-12-24 00:19:48 t 1 1 207962 487 0.00 2019-12-24 00:23:19 2019-12-24 00:23:24 t 1 2 207964 566 0.00 2019-12-24 00:15:49 2019-12-24 00:25:44 t 1 1 207965 687 0.00 2019-12-24 00:17:48 2019-12-24 00:27:24 t 1 1 207967 514 0.00 2019-12-23 22:49:22 2019-12-24 00:34:20 t 1 1 207968 514 0.00 2019-12-24 00:34:20 2019-12-24 00:37:06 t 1 1 207969 728 0.00 2019-12-24 00:30:31 2019-12-24 00:42:26 t 1 1 207971 566 0.00 2019-12-24 00:25:44 2019-12-24 00:45:08 t 1 1 207973 728 0.00 2019-12-24 00:55:29 2019-12-24 00:55:41 t 1 1 207974 514 0.00 2019-12-24 00:43:39 2019-12-24 00:57:23 t 1 1 207979 694 0.00 2019-12-24 01:03:59 2019-12-24 01:04:50 t 1 1 207981 679 0.00 2019-12-24 00:43:35 2019-12-24 01:09:58 t 1 1 207983 566 0.00 2019-12-24 00:45:08 2019-12-24 01:12:56 t 1 1 207986 566 0.00 2019-12-24 01:12:56 2019-12-24 01:29:05 t 1 1 207989 679 0.00 2019-12-24 01:46:32 2019-12-24 01:57:13 t 1 1 207990 687 0.00 2019-12-24 01:31:00 2019-12-24 02:10:52 t 1 1 207993 687 0.00 2019-12-24 02:28:26 2019-12-24 02:28:30 t 1 1 207995 667 0.00 2019-12-24 03:14:14 2019-12-24 03:15:15 t 1 1 207996 667 0.00 2019-12-24 03:35:24 2019-12-24 03:35:35 t 1 1 208000 667 0.00 2019-12-24 04:43:50 2019-12-24 04:45:49 t 1 1 208001 707 0.00 2019-12-23 21:09:54 2019-12-24 04:52:38 t 1 1 208011 707 0.00 2019-12-24 06:56:13 2019-12-24 07:04:01 t 1 1 208013 499 0.00 2019-12-24 06:53:21 2019-12-24 07:08:12 t 1 1 208017 707 0.00 2019-12-24 07:06:14 2019-12-24 07:10:25 t 1 1 208018 667 0.00 2019-12-24 07:19:50 2019-12-24 07:19:53 t 1 1 208024 625 0.00 2019-12-24 06:11:51 2019-12-24 07:54:59 t 1 1 208025 694 0.00 2019-12-24 07:53:05 2019-12-24 07:58:52 t 1 1 208030 694 0.00 2019-12-24 08:03:12 2019-12-24 08:05:52 t 1 1 208031 694 0.00 2019-12-24 08:06:41 2019-12-24 08:12:11 t 1 1 208032 551 0.00 2019-12-23 21:06:58 2019-12-24 08:19:01 t 1 1 208033 611 0.00 2019-12-24 08:19:04 2019-12-24 08:20:40 t 1 1 208038 611 0.00 2019-12-24 08:25:08 2019-12-24 08:33:28 t 1 1 208039 694 0.00 2019-12-24 08:17:42 2019-12-24 08:43:02 t 1 1 208041 763 0.00 2019-12-24 08:44:48 2019-12-24 08:45:28 t 1 1 208042 763 0.00 2019-12-24 08:45:27 2019-12-24 08:47:19 t 1 1 208043 763 0.00 2019-12-24 08:47:37 2019-12-24 08:48:20 t 1 1 208044 615 0.00 2019-12-24 08:40:41 2019-12-24 08:48:41 t 1 1 208045 687 0.00 2019-12-24 08:44:10 2019-12-24 08:49:47 t 1 1 208046 711 0.00 2019-12-24 08:23:13 2019-12-24 08:56:23 t 1 1 208047 694 0.00 2019-12-24 08:43:08 2019-12-24 08:56:37 t 1 1 208048 615 0.00 2019-12-24 08:48:41 2019-12-24 08:56:37 t 1 1 208049 763 0.00 2019-12-24 08:56:03 2019-12-24 09:00:41 t 1 1 208050 763 0.00 2019-12-24 09:01:30 2019-12-24 09:02:33 t 1 1 208051 763 0.00 2019-12-24 09:03:03 2019-12-24 09:03:47 t 1 1 208052 763 0.00 2019-12-24 09:03:56 2019-12-24 09:05:07 t 1 1 208053 742 0.00 2019-12-24 08:39:09 2019-12-24 09:06:26 t 1 1 208054 615 0.00 2019-12-24 08:56:37 2019-12-24 09:10:19 t 1 1 208057 514 0.00 2019-12-24 07:59:11 2019-12-24 09:19:09 t 1 1 208061 687 0.00 2019-12-24 09:28:28 2019-12-24 09:28:31 t 1 1 208062 514 0.00 2019-12-24 09:19:36 2019-12-24 09:29:16 t 1 1 208072 694 0.00 2019-12-24 09:37:01 2019-12-24 09:40:46 t 1 1 208076 611 0.00 2019-12-24 09:45:39 2019-12-24 09:47:15 t 1 1 208078 637 0.00 2019-12-24 09:49:57 2019-12-24 09:51:03 t 1 1 208082 722 0.00 2019-12-24 10:00:37 2019-12-24 10:01:23 t 1 1 208085 615 0.00 2019-12-24 10:01:50 2019-12-24 10:05:26 t 1 1 208086 742 0.00 2019-12-24 09:54:41 2019-12-24 10:06:52 t 1 1 208088 687 0.00 2019-12-24 10:08:18 2019-12-24 10:08:57 t 1 1 208093 724 0.00 2019-12-24 09:39:02 2019-12-24 10:17:28 t 1 1 208095 625 0.00 2019-12-24 09:10:29 2019-12-24 10:32:22 t 1 1 208097 724 0.00 2019-12-24 10:32:58 2019-12-24 10:40:03 t 1 1 208099 675 0.00 2019-12-24 10:30:47 2019-12-24 10:45:51 t 1 1 208101 675 0.00 2019-12-24 10:45:51 2019-12-24 10:48:05 t 1 1 208102 724 0.00 2019-12-24 10:46:17 2019-12-24 10:50:58 t 1 1 208104 625 0.00 2019-12-24 10:32:22 2019-12-24 10:56:17 t 1 1 208107 538 0.00 2019-12-24 10:41:18 2019-12-24 10:58:42 t 1 1 208109 625 0.00 2019-12-24 10:56:17 2019-12-24 11:03:25 t 1 1 208110 687 0.00 2019-12-24 11:03:31 2019-12-24 11:03:36 t 1 1 208111 656 0.00 2019-12-24 10:33:05 2019-12-24 11:09:45 t 1 2 208115 615 0.00 2019-12-24 11:15:09 2019-12-24 11:16:56 t 1 1 208120 578 0.00 2019-12-24 08:43:04 2019-12-24 11:34:22 t 1 1 208121 625 0.00 2019-12-24 11:26:08 2019-12-24 11:36:37 t 1 1 208125 625 0.00 2019-12-24 11:40:58 2019-12-24 11:42:35 t 1 1 208126 637 0.00 2019-12-24 11:41:02 2019-12-24 11:43:28 t 1 1 208129 625 0.00 2019-12-24 11:42:40 2019-12-24 11:49:43 t 1 1 208131 591 0.00 2019-12-24 11:17:51 2019-12-24 11:50:56 t 1 1 208132 625 0.00 2019-12-24 11:50:05 2019-12-24 11:51:38 t 1 1 208133 578 0.00 2019-12-24 11:46:55 2019-12-24 11:53:30 t 1 1 208135 726 0.00 2019-12-24 11:44:50 2019-12-24 11:55:08 t 1 1 208139 660 0.00 2019-12-24 11:48:18 2019-12-24 11:58:45 t 1 1 208148 615 0.00 2019-12-24 12:05:48 2019-12-24 12:09:34 t 1 1 208150 483 0.00 2019-12-24 12:13:10 2019-12-24 12:13:10 f 1 1 208154 637 0.00 2019-12-24 11:54:37 2019-12-24 12:16:40 t 1 1 208159 763 0.00 2019-12-24 12:26:29 2019-12-24 12:27:52 t 1 1 208161 742 0.00 2019-12-24 12:24:52 2019-12-24 12:30:07 t 1 1 208162 656 0.00 2019-12-24 11:50:30 2019-12-24 12:30:14 t 1 2 208163 615 0.00 2019-12-24 12:30:10 2019-12-24 12:31:30 t 1 1 208164 611 0.00 2019-12-24 12:30:05 2019-12-24 12:34:36 t 1 1 208166 611 0.00 2019-12-24 12:34:42 2019-12-24 12:36:49 t 1 1 208169 691 0.00 2019-12-24 12:36:38 2019-12-24 12:37:40 t 1 1 208174 687 0.00 2019-12-24 12:39:56 2019-12-24 12:41:50 t 1 1 208177 562 0.00 2019-12-24 12:32:48 2019-12-24 12:43:21 t 1 1 208178 637 0.00 2019-12-24 12:17:01 2019-12-24 12:43:47 t 1 1 208180 687 0.00 2019-12-24 12:44:19 2019-12-24 12:44:44 t 1 1 208183 707 0.00 2019-12-24 12:05:51 2019-12-24 12:49:57 t 1 1 208186 538 0.00 2019-12-24 12:20:58 2019-12-24 12:51:07 t 1 1 208190 611 0.00 2019-12-24 12:49:17 2019-12-24 12:55:55 t 1 1 208194 562 0.00 2019-12-24 12:57:29 2019-12-24 12:59:05 t 1 1 208195 687 0.00 2019-12-24 12:58:27 2019-12-24 12:59:24 t 1 1 208197 683 0.00 2019-12-24 12:32:49 2019-12-24 13:00:37 t 1 1 208199 763 0.00 2019-12-24 12:58:27 2019-12-24 13:01:33 t 1 1 208200 763 0.00 2019-12-24 13:01:39 2019-12-24 13:03:02 t 1 1 208203 562 0.00 2019-12-24 13:01:56 2019-12-24 13:04:56 t 1 1 208204 763 0.00 2019-12-24 13:03:56 2019-12-24 13:05:55 t 1 1 208205 538 0.00 2019-12-24 12:52:13 2019-12-24 13:06:50 t 1 1 208209 687 0.00 2019-12-24 13:06:22 2019-12-24 13:08:43 t 1 1 208217 625 0.00 2019-12-24 12:39:19 2019-12-24 13:15:12 t 1 1 208219 683 0.00 2019-12-24 13:15:12 2019-12-24 13:15:20 t 1 1 208220 763 0.00 2019-12-24 13:14:45 2019-12-24 13:16:39 t 1 1 208222 667 0.00 2019-12-24 12:56:19 2019-12-24 13:18:17 t 1 1 208225 679 0.00 2019-12-24 13:21:12 2019-12-24 13:22:16 t 1 1 208226 763 0.00 2019-12-24 13:21:12 2019-12-24 13:23:34 t 1 1 208227 763 0.00 2019-12-24 13:24:09 2019-12-24 13:27:49 t 1 1 208230 763 0.00 2019-12-24 13:27:34 2019-12-24 13:30:31 t 1 1 208231 763 0.00 2019-12-24 13:32:30 2019-12-24 13:33:42 t 1 1 208240 763 0.00 2019-12-24 13:41:43 2019-12-24 13:44:35 t 1 1 208242 754 0.00 2019-12-24 11:39:27 2019-12-24 13:45:03 t 1 2 208245 707 0.00 2019-12-24 13:29:36 2019-12-24 13:50:23 t 1 1 208247 763 0.00 2019-12-24 13:50:36 2019-12-24 13:53:19 t 1 1 208250 763 0.00 2019-12-24 13:54:44 2019-12-24 13:56:04 t 1 1 208254 675 0.00 2019-12-24 13:46:31 2019-12-24 14:01:11 t 1 1 208258 562 0.00 2019-12-24 14:05:40 2019-12-24 14:06:05 t 1 1 208261 691 0.00 2019-12-24 14:06:22 2019-12-24 14:06:58 t 1 1 208262 691 0.00 2019-12-24 14:06:58 2019-12-24 14:07:40 t 1 1 208264 487 0.00 2019-12-24 13:58:36 2019-12-24 14:08:11 t 1 2 208268 637 0.00 2019-12-24 13:56:54 2019-12-24 14:12:09 t 1 1 208272 564 0.00 2019-12-24 12:59:07 2019-12-24 14:19:16 t 1 1 208273 691 0.00 2019-12-24 14:18:35 2019-12-24 14:19:40 t 1 1 208278 562 0.00 2019-12-24 14:22:15 2019-12-24 14:22:35 t 1 1 208284 736 0.00 2019-12-24 14:28:10 2019-12-24 14:28:12 t 1 1 208286 514 0.00 2019-12-24 13:04:49 2019-12-24 14:32:12 t 1 1 208288 736 0.00 2019-12-24 14:33:05 2019-12-24 14:33:47 t 1 1 208290 637 0.00 2019-12-24 14:24:44 2019-12-24 14:35:10 t 1 1 208291 728 0.00 2019-12-24 14:32:36 2019-12-24 14:37:11 t 1 1 208292 498 0.00 2019-12-24 14:35:03 2019-12-24 14:38:14 t 1 2 208294 392 0.00 2019-12-24 14:22:38 2019-12-24 14:39:43 t 1 2 208295 562 0.00 2019-12-24 14:39:59 2019-12-24 14:40:23 t 1 1 208301 459 0.00 2019-12-24 14:36:56 2019-12-24 14:43:33 t 1 2 208305 687 0.00 2019-12-24 14:44:40 2019-12-24 14:44:49 t 1 1 208308 564 0.00 2019-12-24 14:19:16 2019-12-24 14:45:51 t 1 1 208309 544 0.00 2019-12-24 14:45:05 2019-12-24 14:46:05 t 1 1 208310 544 0.00 2019-12-24 14:46:04 2019-12-24 14:47:52 t 1 1 208311 562 0.00 2019-12-24 14:49:49 2019-12-24 14:50:12 t 1 1 208321 679 0.00 2019-12-24 14:55:07 2019-12-24 15:02:07 t 1 1 208326 485 0.00 2019-12-24 15:13:10 2019-12-24 15:13:10 f 1 1 208328 562 0.00 2019-12-24 15:21:55 2019-12-24 15:22:16 t 1 1 208329 736 0.00 2019-12-24 15:04:17 2019-12-24 15:23:03 t 1 1 208335 736 0.00 2019-12-24 15:23:03 2019-12-24 15:30:12 t 1 1 208339 615 0.00 2019-12-24 15:40:16 2019-12-24 15:45:43 t 1 1 208341 679 0.00 2019-12-24 15:30:05 2019-12-24 15:47:43 t 1 1 208342 707 0.00 2019-12-24 15:23:43 2019-12-24 15:49:11 t 1 1 208347 679 0.00 2019-12-24 15:47:43 2019-12-24 15:51:25 t 1 1 208348 736 0.00 2019-12-24 15:51:58 2019-12-24 15:52:07 t 1 1 208351 615 0.00 2019-12-24 15:45:43 2019-12-24 15:54:10 t 1 1 208055 625 0.00 2019-12-24 08:21:28 2019-12-24 09:10:29 t 1 1 208056 707 0.00 2019-12-24 09:02:30 2019-12-24 09:15:53 t 1 1 208060 687 0.00 2019-12-24 09:25:48 2019-12-24 09:27:10 t 1 1 208068 722 0.00 2019-12-24 09:30:13 2019-12-24 09:36:01 t 1 1 208070 615 0.00 2019-12-24 09:35:29 2019-12-24 09:38:15 t 1 1 208075 498 0.00 2019-12-24 08:37:05 2019-12-24 09:45:05 t 1 2 208081 687 0.00 2019-12-24 10:00:38 2019-12-24 10:01:02 t 1 1 208087 611 0.00 2019-12-24 10:01:49 2019-12-24 10:08:42 t 1 1 208089 637 0.00 2019-12-24 10:01:46 2019-12-24 10:13:41 t 1 1 208091 637 0.00 2019-12-24 10:13:43 2019-12-24 10:15:43 t 1 1 208096 707 0.00 2019-12-24 09:57:12 2019-12-24 10:33:08 t 1 1 208098 591 0.00 2019-12-24 10:02:42 2019-12-24 10:40:18 t 1 1 208100 724 0.00 2019-12-24 10:40:03 2019-12-24 10:46:17 t 1 1 208103 687 0.00 2019-12-24 10:51:03 2019-12-24 10:54:07 t 1 1 208114 615 0.00 2019-12-24 11:10:48 2019-12-24 11:15:09 t 1 1 208116 591 0.00 2019-12-24 10:40:18 2019-12-24 11:17:51 t 1 1 208118 625 0.00 2019-12-24 11:10:39 2019-12-24 11:26:58 t 1 1 208119 538 0.00 2019-12-24 11:29:54 2019-12-24 11:31:18 t 1 1 208122 754 0.00 2019-12-24 10:50:33 2019-12-24 11:39:09 t 1 2 208124 625 0.00 2019-12-24 11:38:06 2019-12-24 11:40:54 t 1 1 208130 637 0.00 2019-12-24 11:43:40 2019-12-24 11:50:05 t 1 1 208137 679 0.00 2019-12-24 11:53:46 2019-12-24 11:56:57 t 1 1 208138 591 0.00 2019-12-24 11:50:56 2019-12-24 11:58:45 t 1 1 208141 726 0.00 2019-12-24 11:55:08 2019-12-24 12:03:17 t 1 1 208143 591 0.00 2019-12-24 11:58:44 2019-12-24 12:05:26 t 1 1 208144 615 0.00 2019-12-24 11:59:37 2019-12-24 12:05:48 t 1 1 208145 660 0.00 2019-12-24 11:58:45 2019-12-24 12:05:51 t 1 1 208146 709 0.00 2019-12-24 12:05:26 2019-12-24 12:08:13 t 1 1 208155 611 0.00 2019-12-24 12:14:39 2019-12-24 12:17:11 t 1 1 208158 711 0.00 2019-12-24 12:26:35 2019-12-24 12:27:41 t 1 1 208165 691 0.00 2019-12-24 12:36:13 2019-12-24 12:36:38 t 1 1 208170 687 0.00 2019-12-24 12:36:38 2019-12-24 12:38:06 t 1 1 208171 687 0.00 2019-12-24 12:39:11 2019-12-24 12:39:13 t 1 1 208173 687 0.00 2019-12-24 12:40:23 2019-12-24 12:41:38 t 1 1 208176 687 0.00 2019-12-24 12:42:32 2019-12-24 12:43:09 t 1 1 208179 687 0.00 2019-12-24 12:43:45 2019-12-24 12:43:54 t 1 1 208182 562 0.00 2019-12-24 12:46:45 2019-12-24 12:49:29 t 1 1 208188 538 0.00 2019-12-24 12:51:16 2019-12-24 12:52:13 t 1 1 208193 679 0.00 2019-12-24 12:48:34 2019-12-24 12:58:30 t 1 1 208201 675 0.00 2019-12-24 12:52:14 2019-12-24 13:03:12 t 1 1 208208 562 0.00 2019-12-24 13:08:36 2019-12-24 13:08:41 t 1 1 208210 687 0.00 2019-12-24 13:08:51 2019-12-24 13:08:58 t 1 1 208211 649 0.00 2019-12-24 12:37:34 2019-12-24 13:09:46 t 1 1 208213 683 0.00 2019-12-24 13:08:27 2019-12-24 13:12:11 t 1 1 208214 562 0.00 2019-12-24 13:11:14 2019-12-24 13:13:00 t 1 1 208216 611 0.00 2019-12-24 13:03:08 2019-12-24 13:14:55 t 1 1 208218 683 0.00 2019-12-24 13:12:34 2019-12-24 13:15:12 t 1 1 208223 763 0.00 2019-12-24 13:17:36 2019-12-24 13:18:45 t 1 1 208229 711 0.00 2019-12-24 12:32:55 2019-12-24 13:28:07 t 1 1 208234 625 0.00 2019-12-24 13:34:49 2019-12-24 13:38:11 t 1 1 208235 763 0.00 2019-12-24 13:35:20 2019-12-24 13:38:53 t 1 1 208237 660 0.00 2019-12-24 13:20:23 2019-12-24 13:41:21 t 1 1 208244 763 0.00 2019-12-24 13:44:43 2019-12-24 13:49:11 t 1 1 208251 637 0.00 2019-12-24 12:43:53 2019-12-24 13:57:10 t 1 1 208252 763 0.00 2019-12-24 13:56:37 2019-12-24 13:58:19 t 1 1 208257 611 0.00 2019-12-24 13:43:26 2019-12-24 14:05:57 t 1 1 208259 691 0.00 2019-12-24 14:05:42 2019-12-24 14:06:23 t 1 1 208263 691 0.00 2019-12-24 14:07:40 2019-12-24 14:08:06 t 1 1 208265 220 0.00 2019-12-24 13:01:59 2019-12-24 14:09:20 t 1 2 208266 691 0.00 2019-12-24 14:08:06 2019-12-24 14:09:50 t 1 1 208271 758 0.00 2019-12-24 14:11:59 2019-12-24 14:18:08 t 1 1 208274 728 0.00 2019-12-24 14:11:57 2019-12-24 14:21:04 t 1 1 208277 736 0.00 2019-12-24 14:21:51 2019-12-24 14:22:30 t 1 1 208279 635 0.00 2019-12-24 14:14:58 2019-12-24 14:22:41 t 1 1 208281 591 0.00 2019-12-24 14:11:16 2019-12-24 14:23:59 t 1 1 208282 736 0.00 2019-12-24 14:24:34 2019-12-24 14:25:56 t 1 1 208283 736 0.00 2019-12-24 14:27:14 2019-12-24 14:27:19 t 1 1 208285 562 0.00 2019-12-24 14:28:02 2019-12-24 14:28:42 t 1 1 208287 728 0.00 2019-12-24 14:21:05 2019-12-24 14:32:36 t 1 1 208289 514 0.00 2019-12-24 14:32:11 2019-12-24 14:35:07 t 1 1 208293 562 0.00 2019-12-24 14:39:19 2019-12-24 14:39:29 t 1 1 208296 637 0.00 2019-12-24 14:35:56 2019-12-24 14:41:50 t 1 1 208300 544 0.00 2019-12-24 14:30:06 2019-12-24 14:43:32 t 1 1 208302 637 0.00 2019-12-24 14:43:13 2019-12-24 14:44:16 t 1 1 208307 538 0.00 2019-12-24 14:37:52 2019-12-24 14:45:39 t 1 1 208314 538 0.00 2019-12-24 14:45:39 2019-12-24 14:54:06 t 1 1 208315 679 0.00 2019-12-24 14:39:43 2019-12-24 14:55:07 t 1 1 208318 736 0.00 2019-12-24 14:56:52 2019-12-24 14:57:50 t 1 1 208322 716 0.00 2019-12-24 14:52:59 2019-12-24 15:07:39 t 1 1 208324 675 0.00 2019-12-24 15:05:20 2019-12-24 15:08:21 t 1 1 208330 716 0.00 2019-12-24 15:07:39 2019-12-24 15:25:33 t 1 1 208332 544 0.00 2019-12-24 15:10:20 2019-12-24 15:26:05 t 1 1 208338 736 0.00 2019-12-24 15:30:12 2019-12-24 15:40:41 t 1 1 208340 736 0.00 2019-12-24 15:47:27 2019-12-24 15:47:37 t 1 1 208344 736 0.00 2019-12-24 15:49:32 2019-12-24 15:49:40 t 1 1 208350 498 0.00 2019-12-24 15:05:12 2019-12-24 15:52:17 t 1 2 208354 544 0.00 2019-12-24 15:57:26 2019-12-24 16:02:15 t 1 1 208355 736 0.00 2019-12-24 16:02:33 2019-12-24 16:02:57 t 1 1 208358 736 0.00 2019-12-24 16:03:24 2019-12-24 16:04:03 t 1 1 208360 637 0.00 2019-12-24 14:44:26 2019-12-24 16:08:19 t 1 1 208362 728 0.00 2019-12-24 16:10:57 2019-12-24 16:11:31 t 1 1 208365 562 0.00 2019-12-24 16:13:48 2019-12-24 16:14:49 t 1 1 208369 681 0.00 2019-12-24 11:41:32 2019-12-24 16:19:22 t 1 1 208371 660 0.00 2019-12-24 15:59:46 2019-12-24 16:25:00 t 1 1 208372 728 0.00 2019-12-24 16:25:12 2019-12-24 16:25:25 t 1 1 208373 736 0.00 2019-12-24 16:25:22 2019-12-24 16:25:32 t 1 1 208376 611 0.00 2019-12-24 16:23:34 2019-12-24 16:27:22 t 1 1 208378 736 0.00 2019-12-24 16:28:15 2019-12-24 16:28:33 t 1 1 208380 728 0.00 2019-12-24 16:35:55 2019-12-24 16:36:48 t 1 1 208388 635 0.00 2019-12-24 16:47:33 2019-12-24 16:48:31 t 1 1 208390 707 0.00 2019-12-24 16:10:34 2019-12-24 16:49:32 t 1 1 208400 675 0.00 2019-12-24 17:00:14 2019-12-24 17:02:50 t 1 1 208405 487 0.00 2019-12-24 17:03:50 2019-12-24 17:07:25 t 1 2 208409 675 0.00 2019-12-24 17:07:55 2019-12-24 17:11:05 t 1 1 208413 724 0.00 2019-12-24 16:45:12 2019-12-24 17:16:34 t 1 1 208416 728 0.00 2019-12-24 17:20:40 2019-12-24 17:20:50 t 1 1 208419 392 0.00 2019-12-24 16:23:50 2019-12-24 17:27:21 t 1 2 208058 694 0.00 2019-12-24 09:14:17 2019-12-24 09:22:35 t 1 1 208059 679 0.00 2019-12-24 09:23:35 2019-12-24 09:25:07 t 1 1 208063 687 0.00 2019-12-24 09:28:38 2019-12-24 09:29:16 t 1 1 208064 694 0.00 2019-12-24 09:22:41 2019-12-24 09:29:51 t 1 1 208065 514 0.00 2019-12-24 09:29:15 2019-12-24 09:30:49 t 1 1 208066 694 0.00 2019-12-24 09:31:40 2019-12-24 09:34:54 t 1 1 208067 637 0.00 2019-12-24 07:03:00 2019-12-24 09:35:30 t 1 1 208069 667 0.00 2019-12-24 09:31:33 2019-12-24 09:36:54 t 1 1 208071 637 0.00 2019-12-24 09:37:01 2019-12-24 09:40:10 t 1 1 208073 660 0.00 2019-12-24 09:34:25 2019-12-24 09:41:35 t 1 1 208074 694 0.00 2019-12-24 09:40:52 2019-12-24 09:44:21 t 1 1 208077 637 0.00 2019-12-24 09:41:05 2019-12-24 09:50:03 t 1 1 208079 615 0.00 2019-12-24 09:48:25 2019-12-24 09:51:07 t 1 1 208080 694 0.00 2019-12-24 09:44:28 2019-12-24 09:55:44 t 1 1 208083 615 0.00 2019-12-24 09:54:14 2019-12-24 10:01:50 t 1 1 208084 591 0.00 2019-12-24 08:54:10 2019-12-24 10:02:42 t 1 1 208090 611 0.00 2019-12-24 10:13:08 2019-12-24 10:14:24 t 1 1 208092 694 0.00 2019-12-24 10:08:41 2019-12-24 10:16:33 t 1 1 208094 687 0.00 2019-12-24 10:21:26 2019-12-24 10:21:58 t 1 1 208105 687 0.00 2019-12-24 10:56:28 2019-12-24 10:57:08 t 1 1 208106 687 0.00 2019-12-24 10:57:13 2019-12-24 10:57:29 t 1 1 208108 711 0.00 2019-12-24 08:57:12 2019-12-24 10:59:05 t 1 1 208112 675 0.00 2019-12-24 11:05:40 2019-12-24 11:10:10 t 1 1 208113 625 0.00 2019-12-24 11:03:25 2019-12-24 11:10:39 t 1 1 208117 744 0.00 2019-12-24 11:07:33 2019-12-24 11:20:00 t 1 1 208123 637 0.00 2019-12-24 11:38:30 2019-12-24 11:40:48 t 1 1 208127 578 0.00 2019-12-24 11:34:22 2019-12-24 11:46:55 t 1 1 208128 660 0.00 2019-12-24 11:29:37 2019-12-24 11:48:18 t 1 1 208134 611 0.00 2019-12-24 11:50:01 2019-12-24 11:53:39 t 1 1 208136 742 0.00 2019-12-24 11:41:24 2019-12-24 11:56:40 t 1 1 208140 611 0.00 2019-12-24 11:57:02 2019-12-24 12:01:20 t 1 1 208142 627 0.00 2019-12-24 12:00:04 2019-12-24 12:04:39 t 1 1 208147 726 0.00 2019-12-24 12:03:17 2019-12-24 12:08:44 t 1 1 208149 675 0.00 2019-12-24 12:09:22 2019-12-24 12:13:09 t 1 1 208151 544 0.00 2019-12-24 11:27:26 2019-12-24 12:13:30 t 1 1 208152 611 0.00 2019-12-24 12:02:05 2019-12-24 12:14:39 t 1 1 208153 625 0.00 2019-12-24 11:57:42 2019-12-24 12:16:14 t 1 1 208156 538 0.00 2019-12-24 12:08:48 2019-12-24 12:20:58 t 1 1 208157 742 0.00 2019-12-24 12:13:22 2019-12-24 12:24:52 t 1 1 208160 562 0.00 2019-12-24 12:19:50 2019-12-24 12:28:20 t 1 1 208167 742 0.00 2019-12-24 12:30:07 2019-12-24 12:37:19 t 1 1 208168 675 0.00 2019-12-24 12:34:13 2019-12-24 12:37:28 t 1 1 208172 625 0.00 2019-12-24 12:37:52 2019-12-24 12:39:20 t 1 1 208175 667 0.00 2019-12-24 12:36:05 2019-12-24 12:42:15 t 1 1 208181 742 0.00 2019-12-24 12:37:19 2019-12-24 12:46:53 t 1 1 208184 667 0.00 2019-12-24 12:42:15 2019-12-24 12:50:15 t 1 1 208185 544 0.00 2019-12-24 12:13:29 2019-12-24 12:50:54 t 1 1 208187 538 0.00 2019-12-24 12:51:07 2019-12-24 12:51:11 t 1 1 208189 763 0.00 2019-12-24 12:53:56 2019-12-24 12:55:19 t 1 1 208191 667 0.00 2019-12-24 12:50:15 2019-12-24 12:56:19 t 1 1 208192 763 0.00 2019-12-24 12:56:19 2019-12-24 12:58:18 t 1 1 208196 562 0.00 2019-12-24 12:59:16 2019-12-24 12:59:24 t 1 1 208198 724 0.00 2019-12-24 12:16:12 2019-12-24 13:00:59 t 1 1 208202 514 0.00 2019-12-24 12:54:54 2019-12-24 13:04:49 t 1 1 208206 763 0.00 2019-12-24 13:05:47 2019-12-24 13:07:24 t 1 1 208207 683 0.00 2019-12-24 13:00:37 2019-12-24 13:07:57 t 1 1 208212 691 0.00 2019-12-24 13:07:28 2019-12-24 13:10:40 t 1 1 208215 763 0.00 2019-12-24 13:11:15 2019-12-24 13:14:45 t 1 1 208221 562 0.00 2019-12-24 13:17:13 2019-12-24 13:17:30 t 1 1 208224 562 0.00 2019-12-24 13:19:11 2019-12-24 13:19:21 t 1 1 208228 687 0.00 2019-12-24 13:27:11 2019-12-24 13:27:53 t 1 1 208232 562 0.00 2019-12-24 13:33:31 2019-12-24 13:33:49 t 1 1 208233 625 0.00 2019-12-24 13:17:11 2019-12-24 13:34:42 t 1 1 208236 763 0.00 2019-12-24 13:38:53 2019-12-24 13:40:31 t 1 1 208238 459 0.00 2019-12-24 13:37:41 2019-12-24 13:42:47 t 1 2 208239 611 0.00 2019-12-24 13:30:28 2019-12-24 13:43:27 t 1 1 208241 562 0.00 2019-12-24 13:44:25 2019-12-24 13:44:35 t 1 1 208243 625 0.00 2019-12-24 13:38:19 2019-12-24 13:49:10 t 1 1 208246 763 0.00 2019-12-24 13:50:22 2019-12-24 13:51:52 t 1 1 208248 544 0.00 2019-12-24 13:49:10 2019-12-24 13:54:29 t 1 1 208249 562 0.00 2019-12-24 13:55:01 2019-12-24 13:55:19 t 1 1 208253 763 0.00 2019-12-24 13:57:34 2019-12-24 14:00:23 t 1 1 208255 736 0.00 2019-12-24 13:56:41 2019-12-24 14:02:41 t 1 1 208256 763 0.00 2019-12-24 14:01:44 2019-12-24 14:05:38 t 1 1 208260 763 0.00 2019-12-24 14:05:39 2019-12-24 14:06:41 t 1 1 208267 591 0.00 2019-12-24 13:43:42 2019-12-24 14:11:16 t 1 1 208269 736 0.00 2019-12-24 14:03:08 2019-12-24 14:14:00 t 1 1 208270 562 0.00 2019-12-24 14:14:40 2019-12-24 14:14:59 t 1 1 208275 736 0.00 2019-12-24 14:14:37 2019-12-24 14:21:12 t 1 1 208276 637 0.00 2019-12-24 14:12:09 2019-12-24 14:21:49 t 1 1 208280 637 0.00 2019-12-24 14:21:29 2019-12-24 14:23:28 t 1 1 208297 516 0.00 2019-12-24 14:40:28 2019-12-24 14:42:07 t 1 1 208298 637 0.00 2019-12-24 14:41:50 2019-12-24 14:43:05 t 1 1 208299 591 0.00 2019-12-24 14:36:31 2019-12-24 14:43:29 t 1 1 208303 728 0.00 2019-12-24 14:44:15 2019-12-24 14:44:26 t 1 1 208304 736 0.00 2019-12-24 14:34:11 2019-12-24 14:44:33 t 1 1 208306 544 0.00 2019-12-24 14:42:36 2019-12-24 14:44:56 t 1 1 208312 728 0.00 2019-12-24 14:51:18 2019-12-24 14:51:29 t 1 1 208313 736 0.00 2019-12-24 14:52:05 2019-12-24 14:52:36 t 1 1 208316 544 0.00 2019-12-24 14:48:19 2019-12-24 14:57:03 t 1 1 208317 562 0.00 2019-12-24 14:57:30 2019-12-24 14:57:49 t 1 1 208319 728 0.00 2019-12-24 14:58:13 2019-12-24 14:58:23 t 1 1 208320 392 0.00 2019-12-24 14:41:07 2019-12-24 15:00:36 t 1 2 208323 591 0.00 2019-12-24 15:06:03 2019-12-24 15:07:41 t 1 1 208325 728 0.00 2019-12-24 15:05:07 2019-12-24 15:12:29 t 1 1 208327 679 0.00 2019-12-24 15:02:07 2019-12-24 15:21:59 t 1 1 208331 716 0.00 2019-12-24 15:25:33 2019-12-24 15:25:58 t 1 1 208333 687 0.00 2019-12-24 15:24:18 2019-12-24 15:29:26 t 1 1 208334 679 0.00 2019-12-24 15:21:59 2019-12-24 15:30:05 t 1 1 208336 544 0.00 2019-12-24 15:26:05 2019-12-24 15:31:19 t 1 1 208337 562 0.00 2019-12-24 15:31:17 2019-12-24 15:31:39 t 1 1 208343 544 0.00 2019-12-24 15:31:19 2019-12-24 15:49:34 t 1 1 208345 736 0.00 2019-12-24 15:50:11 2019-12-24 15:50:21 t 1 1 208346 736 0.00 2019-12-24 15:50:46 2019-12-24 15:50:57 t 1 1 208349 687 0.00 2019-12-24 15:51:02 2019-12-24 15:52:11 t 1 1 208353 660 0.00 2019-12-24 13:41:21 2019-12-24 15:59:46 t 1 1 208359 635 0.00 2019-12-24 16:06:02 2019-12-24 16:07:37 t 1 1 208352 675 0.00 2019-12-24 15:54:28 2019-12-24 15:59:29 t 1 1 208356 728 0.00 2019-12-24 15:23:00 2019-12-24 16:03:18 t 1 1 208357 538 0.00 2019-12-24 14:54:06 2019-12-24 16:03:44 t 1 1 208361 728 0.00 2019-12-24 16:09:53 2019-12-24 16:10:05 t 1 1 208363 514 0.00 2019-12-24 16:08:19 2019-12-24 16:14:29 t 1 1 208367 728 0.00 2019-12-24 16:18:27 2019-12-24 16:18:36 t 1 1 208370 724 0.00 2019-12-24 16:22:37 2019-12-24 16:23:44 t 1 1 208374 687 0.00 2019-12-24 16:25:31 2019-12-24 16:25:43 t 1 1 208375 562 0.00 2019-12-24 16:26:37 2019-12-24 16:27:09 t 1 1 208379 736 0.00 2019-12-24 16:29:15 2019-12-24 16:29:38 t 1 1 208381 615 0.00 2019-12-24 16:31:09 2019-12-24 16:37:23 t 1 1 208382 562 0.00 2019-12-24 16:37:33 2019-12-24 16:37:53 t 1 1 208384 736 0.00 2019-12-24 16:39:10 2019-12-24 16:39:14 t 1 1 208385 498 0.00 2019-12-24 16:03:59 2019-12-24 16:43:06 t 1 2 208386 728 0.00 2019-12-24 16:43:25 2019-12-24 16:43:38 t 1 1 208387 625 0.00 2019-12-24 16:27:16 2019-12-24 16:47:02 t 1 1 208393 728 0.00 2019-12-24 16:53:08 2019-12-24 16:53:38 t 1 1 208395 675 0.00 2019-12-24 16:55:42 2019-12-24 16:58:52 t 1 1 208399 736 0.00 2019-12-24 17:02:17 2019-12-24 17:02:26 t 1 1 208403 736 0.00 2019-12-24 17:03:41 2019-12-24 17:06:38 t 1 1 208406 611 0.00 2019-12-24 17:06:21 2019-12-24 17:07:56 t 1 1 208408 562 0.00 2019-12-24 17:10:02 2019-12-24 17:10:11 t 1 1 208412 611 0.00 2019-12-24 17:13:12 2019-12-24 17:16:23 t 1 1 208415 562 0.00 2019-12-24 17:17:28 2019-12-24 17:18:34 t 1 1 208417 615 0.00 2019-12-24 16:49:39 2019-12-24 17:21:14 t 1 1 208418 736 0.00 2019-12-24 17:25:16 2019-12-24 17:25:46 t 1 1 208425 687 0.00 2019-12-24 16:58:28 2019-12-24 17:30:06 t 1 1 208426 728 0.00 2019-12-24 17:29:56 2019-12-24 17:30:30 t 1 1 208428 728 0.00 2019-12-24 17:34:11 2019-12-24 17:34:39 t 1 1 208429 637 0.00 2019-12-24 16:24:12 2019-12-24 17:35:54 t 1 1 208431 564 0.00 2019-12-24 17:35:59 2019-12-24 17:36:00 t 1 1 208437 736 0.00 2019-12-24 17:42:01 2019-12-24 17:42:21 t 1 1 208449 765 0.00 2019-12-24 18:01:49 2019-12-24 18:02:15 t 1 2 208450 765 0.00 2019-12-24 18:02:36 2019-12-24 18:02:41 t 1 2 208451 625 0.00 2019-12-24 17:12:09 2019-12-24 18:03:03 t 1 1 208455 503 0.00 2019-12-24 17:40:09 2019-12-24 18:06:17 t 1 1 208458 675 0.00 2019-12-24 18:03:14 2019-12-24 18:07:14 t 1 1 208459 562 0.00 2019-12-24 18:07:59 2019-12-24 18:10:10 t 1 1 208460 611 0.00 2019-12-24 18:00:10 2019-12-24 18:12:25 t 1 1 208462 728 0.00 2019-12-24 18:14:04 2019-12-24 18:14:18 t 1 1 208463 675 0.00 2019-12-24 18:12:42 2019-12-24 18:15:00 t 1 1 208465 483 0.00 2019-12-24 18:04:07 2019-12-24 18:16:37 t 1 1 208469 611 0.00 2019-12-24 18:19:20 2019-12-24 18:22:32 t 1 1 208473 483 0.00 2019-12-24 18:16:55 2019-12-24 18:26:23 t 1 1 208478 728 0.00 2019-12-24 18:32:02 2019-12-24 18:32:45 t 1 1 208481 724 0.00 2019-12-24 17:38:11 2019-12-24 18:37:12 t 1 1 208483 615 0.00 2019-12-24 18:37:23 2019-12-24 18:40:38 t 1 1 208484 736 0.00 2019-12-24 18:40:53 2019-12-24 18:41:11 t 1 1 208485 562 0.00 2019-12-24 18:37:11 2019-12-24 18:41:50 t 1 1 208486 728 0.00 2019-12-24 18:42:42 2019-12-24 18:43:17 t 1 1 208488 615 0.00 2019-12-24 18:41:01 2019-12-24 18:44:10 t 1 1 208489 562 0.00 2019-12-24 18:41:48 2019-12-24 18:44:40 t 1 1 208491 611 0.00 2019-12-24 18:22:39 2019-12-24 18:45:57 t 1 1 208494 675 0.00 2019-12-24 18:45:40 2019-12-24 18:47:40 t 1 1 208498 591 0.00 2019-12-24 16:59:12 2019-12-24 18:48:48 t 1 1 208506 687 0.00 2019-12-24 18:54:26 2019-12-24 18:58:25 t 1 1 208507 736 0.00 2019-12-24 18:58:26 2019-12-24 18:58:38 t 1 1 208509 687 0.00 2019-12-24 18:58:51 2019-12-24 19:00:10 t 1 1 208510 514 0.00 2019-12-24 18:55:49 2019-12-24 19:01:11 t 1 1 208512 687 0.00 2019-12-24 19:00:49 2019-12-24 19:02:13 t 1 1 208513 625 0.00 2019-12-24 18:02:08 2019-12-24 19:03:56 t 1 1 208516 736 0.00 2019-12-24 19:06:27 2019-12-24 19:06:33 t 1 1 208517 736 0.00 2019-12-24 19:08:59 2019-12-24 19:09:32 t 1 1 208521 744 0.00 2019-12-24 17:53:48 2019-12-24 19:12:57 t 1 1 208524 675 0.00 2019-12-24 19:09:19 2019-12-24 19:15:56 t 1 1 208531 544 0.00 2019-12-24 19:18:17 2019-12-24 19:26:18 t 1 1 208533 744 0.00 2019-12-24 19:18:36 2019-12-24 19:28:56 t 1 1 208534 544 0.00 2019-12-24 19:27:47 2019-12-24 19:29:50 t 1 1 208537 611 0.00 2019-12-24 19:28:04 2019-12-24 19:30:52 t 1 1 208539 728 0.00 2019-12-24 19:30:46 2019-12-24 19:31:19 t 1 1 208544 637 0.00 2019-12-24 19:17:22 2019-12-24 19:38:19 t 1 1 208545 760 0.00 2019-12-24 19:37:40 2019-12-24 19:39:00 t 1 1 208547 744 0.00 2019-12-24 19:28:56 2019-12-24 19:39:19 t 1 1 208550 728 0.00 2019-12-24 19:41:15 2019-12-24 19:41:30 t 1 1 208553 744 0.00 2019-12-24 19:39:19 2019-12-24 19:43:25 t 1 1 208559 637 0.00 2019-12-24 19:47:15 2019-12-24 19:50:16 t 1 1 208561 516 0.00 2019-12-24 19:37:33 2019-12-24 19:51:28 t 1 1 208563 675 0.00 2019-12-24 19:51:29 2019-12-24 19:52:51 t 1 1 208565 683 0.00 2019-12-24 19:50:24 2019-12-24 19:53:52 t 1 1 208567 736 0.00 2019-12-24 19:52:46 2019-12-24 19:54:23 t 1 1 208568 544 0.00 2019-12-24 19:48:18 2019-12-24 19:55:52 t 1 1 208569 487 0.00 2019-12-24 19:55:07 2019-12-24 19:57:13 t 1 2 208571 683 0.00 2019-12-24 19:53:52 2019-12-24 19:58:35 t 1 1 208573 562 0.00 2019-12-24 19:59:20 2019-12-24 19:59:34 t 1 1 208576 637 0.00 2019-12-24 19:59:40 2019-12-24 20:00:53 t 1 1 208581 683 0.00 2019-12-24 19:58:35 2019-12-24 20:03:36 t 1 1 208589 562 0.00 2019-12-24 20:10:03 2019-12-24 20:11:10 t 1 1 208595 637 0.00 2019-12-24 20:11:29 2019-12-24 20:16:10 t 1 1 208597 683 0.00 2019-12-24 20:11:57 2019-12-24 20:16:46 t 1 1 208600 675 0.00 2019-12-24 20:20:47 2019-12-24 20:23:07 t 1 1 208602 728 0.00 2019-12-24 20:24:20 2019-12-24 20:24:54 t 1 1 208607 562 0.00 2019-12-24 20:27:45 2019-12-24 20:28:05 t 1 1 208608 683 0.00 2019-12-24 20:22:58 2019-12-24 20:30:12 t 1 1 208613 728 0.00 2019-12-24 20:34:50 2019-12-24 20:35:23 t 1 1 208616 736 0.00 2019-12-24 20:35:38 2019-12-24 20:36:13 t 1 1 208617 722 0.00 2019-12-24 20:36:50 2019-12-24 20:37:21 t 1 1 208621 683 0.00 2019-12-24 20:30:12 2019-12-24 20:39:10 t 1 1 208624 683 0.00 2019-12-24 20:39:10 2019-12-24 20:42:06 t 1 1 208625 722 0.00 2019-12-24 20:42:27 2019-12-24 20:42:56 t 1 1 208640 220 0.00 2019-12-24 20:04:02 2019-12-24 20:57:46 t 1 2 208641 711 0.00 2019-12-24 19:13:20 2019-12-24 20:59:03 t 1 1 208647 722 0.00 2019-12-24 20:55:42 2019-12-24 21:02:54 t 1 1 208650 724 0.00 2019-12-24 20:45:09 2019-12-24 21:03:39 t 1 1 208655 562 0.00 2019-12-24 21:06:31 2019-12-24 21:06:37 t 1 1 208657 483 0.00 2019-12-24 20:59:37 2019-12-24 21:07:32 t 1 1 208658 760 0.00 2019-12-24 21:06:00 2019-12-24 21:08:28 t 1 1 208660 763 0.00 2019-12-24 21:09:11 2019-12-24 21:09:32 t 1 1 208364 736 0.00 2019-12-24 16:14:26 2019-12-24 16:14:49 t 1 1 208366 656 0.00 2019-12-24 15:00:31 2019-12-24 16:15:49 t 1 2 208368 679 0.00 2019-12-24 15:52:35 2019-12-24 16:19:20 t 1 1 208377 564 0.00 2019-12-24 14:45:51 2019-12-24 16:27:56 t 1 1 208383 736 0.00 2019-12-24 16:38:53 2019-12-24 16:39:00 t 1 1 208389 562 0.00 2019-12-24 16:48:31 2019-12-24 16:48:39 t 1 1 208391 736 0.00 2019-12-24 16:49:24 2019-12-24 16:49:44 t 1 1 208392 728 0.00 2019-12-24 16:50:47 2019-12-24 16:51:18 t 1 1 208394 687 0.00 2019-12-24 16:38:57 2019-12-24 16:58:28 t 1 1 208396 707 0.00 2019-12-24 16:56:55 2019-12-24 16:59:12 t 1 1 208397 562 0.00 2019-12-24 16:59:15 2019-12-24 16:59:22 t 1 1 208398 736 0.00 2019-12-24 16:55:34 2019-12-24 17:01:45 t 1 1 208401 728 0.00 2019-12-24 17:03:38 2019-12-24 17:04:12 t 1 1 208402 544 0.00 2019-12-24 16:04:22 2019-12-24 17:05:10 t 1 1 208404 675 0.00 2019-12-24 17:06:04 2019-12-24 17:07:21 t 1 1 208407 736 0.00 2019-12-24 17:07:43 2019-12-24 17:08:02 t 1 1 208410 625 0.00 2019-12-24 16:47:23 2019-12-24 17:11:36 t 1 1 208411 736 0.00 2019-12-24 17:14:37 2019-12-24 17:14:55 t 1 1 208414 724 0.00 2019-12-24 17:16:48 2019-12-24 17:18:18 t 1 1 208422 544 0.00 2019-12-24 17:12:39 2019-12-24 17:29:06 t 1 1 208432 726 0.00 2019-12-24 17:17:52 2019-12-24 17:37:05 t 1 1 208433 736 0.00 2019-12-24 17:39:50 2019-12-24 17:39:53 t 1 1 208434 503 0.00 2019-12-24 17:34:33 2019-12-24 17:40:09 t 1 1 208436 728 0.00 2019-12-24 17:41:55 2019-12-24 17:41:56 t 1 1 208440 728 0.00 2019-12-24 17:51:32 2019-12-24 17:52:13 t 1 1 208441 736 0.00 2019-12-24 17:52:50 2019-12-24 17:53:04 t 1 1 208446 711 0.00 2019-12-24 15:58:46 2019-12-24 17:58:05 t 1 1 208447 611 0.00 2019-12-24 17:21:41 2019-12-24 18:00:36 t 1 1 208452 728 0.00 2019-12-24 18:02:51 2019-12-24 18:03:34 t 1 1 208454 736 0.00 2019-12-24 18:03:23 2019-12-24 18:04:04 t 1 1 208456 615 0.00 2019-12-24 18:03:40 2019-12-24 18:07:04 t 1 1 208461 503 0.00 2019-12-24 18:06:17 2019-12-24 18:13:55 t 1 1 208466 562 0.00 2019-12-24 18:16:08 2019-12-24 18:19:09 t 1 1 208471 637 0.00 2019-12-24 18:20:43 2019-12-24 18:24:19 t 1 1 208474 726 0.00 2019-12-24 18:26:53 2019-12-24 18:26:58 t 1 1 208475 615 0.00 2019-12-24 18:25:27 2019-12-24 18:28:53 t 1 1 208476 562 0.00 2019-12-24 18:26:25 2019-12-24 18:29:43 t 1 1 208477 736 0.00 2019-12-24 18:30:16 2019-12-24 18:30:34 t 1 1 208493 498 0.00 2019-12-24 18:32:38 2019-12-24 18:46:31 t 1 2 208495 562 0.00 2019-12-24 18:45:17 2019-12-24 18:47:58 t 1 1 208496 687 0.00 2019-12-24 18:36:47 2019-12-24 18:48:41 t 1 1 208499 611 0.00 2019-12-24 18:45:57 2019-12-24 18:49:45 t 1 1 208500 687 0.00 2019-12-24 18:49:12 2019-12-24 18:50:44 t 1 1 208502 687 0.00 2019-12-24 18:51:14 2019-12-24 18:52:52 t 1 1 208511 544 0.00 2019-12-24 17:36:23 2019-12-24 19:01:19 t 1 1 208514 675 0.00 2019-12-24 19:02:21 2019-12-24 19:04:27 t 1 1 208519 514 0.00 2019-12-24 19:08:02 2019-12-24 19:10:29 t 1 1 208522 711 0.00 2019-12-24 19:02:32 2019-12-24 19:13:15 t 1 1 208523 687 0.00 2019-12-24 19:10:44 2019-12-24 19:14:03 t 1 1 208526 728 0.00 2019-12-24 19:20:17 2019-12-24 19:20:51 t 1 1 208528 709 0.00 2019-12-24 18:49:34 2019-12-24 19:21:48 t 1 1 208529 611 0.00 2019-12-24 19:22:16 2019-12-24 19:25:15 t 1 1 208532 544 0.00 2019-12-24 19:26:18 2019-12-24 19:27:48 t 1 1 208535 736 0.00 2019-12-24 19:29:37 2019-12-24 19:29:57 t 1 1 208546 683 0.00 2019-12-24 19:35:01 2019-12-24 19:39:10 t 1 1 208548 675 0.00 2019-12-24 19:37:52 2019-12-24 19:39:28 t 1 1 208554 683 0.00 2019-12-24 19:39:10 2019-12-24 19:45:23 t 1 1 208555 544 0.00 2019-12-24 19:37:10 2019-12-24 19:46:23 t 1 1 208557 562 0.00 2019-12-24 19:32:25 2019-12-24 19:48:56 t 1 1 208558 625 0.00 2019-12-24 19:25:23 2019-12-24 19:49:45 t 1 1 208562 736 0.00 2019-12-24 19:50:16 2019-12-24 19:52:46 t 1 1 208564 728 0.00 2019-12-24 19:51:44 2019-12-24 19:53:05 t 1 1 208570 744 0.00 2019-12-24 19:58:19 2019-12-24 19:58:27 t 1 1 208574 656 0.00 2019-12-24 19:56:01 2019-12-24 19:59:35 t 1 1 208575 544 0.00 2019-12-24 19:55:52 2019-12-24 19:59:49 t 1 1 208577 734 0.00 2019-12-24 19:46:28 2019-12-24 20:01:17 t 1 1 208578 736 0.00 2019-12-24 20:01:35 2019-12-24 20:02:02 t 1 1 208580 728 0.00 2019-12-24 20:03:00 2019-12-24 20:03:16 t 1 1 208582 724 0.00 2019-12-24 19:17:16 2019-12-24 20:04:07 t 1 1 208583 660 0.00 2019-12-24 20:03:14 2019-12-24 20:04:33 t 1 1 208588 544 0.00 2019-12-24 20:06:57 2019-12-24 20:09:21 t 1 1 208590 551 0.00 2019-12-24 08:19:01 2019-12-24 20:11:22 t 1 1 208592 728 0.00 2019-12-24 20:13:33 2019-12-24 20:13:42 t 1 1 208593 728 0.00 2019-12-24 20:13:50 2019-12-24 20:14:05 t 1 1 208596 707 0.00 2019-12-24 18:52:10 2019-12-24 20:16:22 t 1 1 208598 562 0.00 2019-12-24 20:20:43 2019-12-24 20:21:01 t 1 1 208599 683 0.00 2019-12-24 20:16:46 2019-12-24 20:22:58 t 1 1 208604 696 0.00 2019-12-24 19:37:45 2019-12-24 20:26:22 t 1 1 208605 736 0.00 2019-12-24 20:26:50 2019-12-24 20:26:56 t 1 1 208606 637 0.00 2019-12-24 20:26:21 2019-12-24 20:27:37 t 1 1 208609 220 0.00 2019-12-24 20:21:54 2019-12-24 20:31:55 t 1 2 208611 538 0.00 2019-12-24 16:08:40 2019-12-24 20:32:42 t 1 1 208615 516 0.00 2019-12-24 20:29:35 2019-12-24 20:35:50 t 1 1 208618 675 0.00 2019-12-24 20:36:08 2019-12-24 20:37:49 t 1 1 208619 722 0.00 2019-12-24 20:37:39 2019-12-24 20:38:44 t 1 1 208622 679 0.00 2019-12-24 20:34:49 2019-12-24 20:39:37 t 1 1 208623 637 0.00 2019-12-24 20:29:40 2019-12-24 20:40:40 t 1 1 208627 656 0.00 2019-12-24 20:22:29 2019-12-24 20:45:02 t 1 1 208629 562 0.00 2019-12-24 20:44:46 2019-12-24 20:45:11 t 1 1 208633 675 0.00 2019-12-24 20:50:27 2019-12-24 20:52:05 t 1 1 208634 544 0.00 2019-12-24 20:47:40 2019-12-24 20:55:20 t 1 1 208635 736 0.00 2019-12-24 20:55:18 2019-12-24 20:55:38 t 1 1 208639 625 0.00 2019-12-24 19:49:57 2019-12-24 20:56:33 t 1 1 208649 722 0.00 2019-12-24 21:02:54 2019-12-24 21:03:14 t 1 1 208651 656 0.00 2019-12-24 20:47:24 2019-12-24 21:04:32 t 1 1 208659 728 0.00 2019-12-24 21:06:27 2019-12-24 21:08:38 t 1 1 208661 625 0.00 2019-12-24 21:07:32 2019-12-24 21:10:02 t 1 1 208663 675 0.00 2019-12-24 21:09:27 2019-12-24 21:11:00 t 1 1 208666 683 0.00 2019-12-24 21:11:48 2019-12-24 21:12:44 t 1 1 208669 637 0.00 2019-12-24 21:13:30 2019-12-24 21:17:14 t 1 1 208672 392 0.00 2019-12-24 21:12:10 2019-12-24 21:17:16 t 1 2 208674 483 0.00 2019-12-24 21:11:59 2019-12-24 21:17:28 t 1 1 208678 763 0.00 2019-12-24 21:17:36 2019-12-24 21:22:47 t 1 1 208685 687 0.00 2019-12-24 21:28:11 2019-12-24 21:33:00 t 1 1 208687 551 0.00 2019-12-24 20:11:22 2019-12-24 21:33:45 t 1 1 208692 625 0.00 2019-12-24 21:10:58 2019-12-24 21:38:24 t 1 1 208693 763 0.00 2019-12-24 21:35:00 2019-12-24 21:38:37 t 1 1 208420 728 0.00 2019-12-24 17:27:28 2019-12-24 17:27:40 t 1 1 208421 736 0.00 2019-12-24 17:28:16 2019-12-24 17:28:35 t 1 1 208423 562 0.00 2019-12-24 17:29:32 2019-12-24 17:29:52 t 1 1 208424 736 0.00 2019-12-24 17:29:56 2019-12-24 17:30:01 t 1 1 208427 503 0.00 2019-12-24 17:28:59 2019-12-24 17:34:33 t 1 1 208430 564 0.00 2019-12-24 16:27:56 2019-12-24 17:35:59 t 1 1 208435 728 0.00 2019-12-24 17:41:33 2019-12-24 17:41:45 t 1 1 208438 679 0.00 2019-12-24 17:47:22 2019-12-24 17:48:27 t 1 1 208439 615 0.00 2019-12-24 17:46:49 2019-12-24 17:49:50 t 1 1 208442 691 0.00 2019-12-24 17:51:05 2019-12-24 17:53:06 t 1 1 208443 637 0.00 2019-12-24 17:36:00 2019-12-24 17:53:47 t 1 1 208444 728 0.00 2019-12-24 17:56:02 2019-12-24 17:56:13 t 1 1 208445 679 0.00 2019-12-24 17:48:27 2019-12-24 17:56:33 t 1 1 208448 392 0.00 2019-12-24 17:43:03 2019-12-24 18:02:10 t 1 2 208453 615 0.00 2019-12-24 17:56:18 2019-12-24 18:03:40 t 1 1 208457 311 0.00 2019-12-24 17:34:44 2019-12-24 18:07:07 t 1 2 208464 687 0.00 2019-12-24 17:31:37 2019-12-24 18:15:44 t 1 1 208467 637 0.00 2019-12-24 17:53:47 2019-12-24 18:19:40 t 1 1 208468 637 0.00 2019-12-24 18:19:52 2019-12-24 18:20:32 t 1 1 208470 736 0.00 2019-12-24 18:06:22 2019-12-24 18:23:03 t 1 1 208472 728 0.00 2019-12-24 18:24:47 2019-12-24 18:25:08 t 1 1 208479 687 0.00 2019-12-24 18:15:44 2019-12-24 18:33:35 t 1 1 208480 675 0.00 2019-12-24 18:34:37 2019-12-24 18:35:50 t 1 1 208482 637 0.00 2019-12-24 18:25:44 2019-12-24 18:40:32 t 1 1 208487 392 0.00 2019-12-24 18:35:05 2019-12-24 18:43:33 t 1 2 208490 724 0.00 2019-12-24 18:37:13 2019-12-24 18:45:57 t 1 1 208492 736 0.00 2019-12-24 18:46:01 2019-12-24 18:46:13 t 1 1 208497 728 0.00 2019-12-24 18:48:12 2019-12-24 18:48:44 t 1 1 208501 675 0.00 2019-12-24 18:49:46 2019-12-24 18:52:21 t 1 1 208503 611 0.00 2019-12-24 18:49:45 2019-12-24 18:56:24 t 1 1 208504 736 0.00 2019-12-24 18:56:24 2019-12-24 18:56:46 t 1 1 208505 736 0.00 2019-12-24 18:58:07 2019-12-24 18:58:20 t 1 1 208508 728 0.00 2019-12-24 18:58:41 2019-12-24 18:58:49 t 1 1 208515 220 0.00 2019-12-24 17:34:31 2019-12-24 19:05:04 t 1 1 208518 728 0.00 2019-12-24 19:09:10 2019-12-24 19:10:22 t 1 1 208520 687 0.00 2019-12-24 19:02:42 2019-12-24 19:10:44 t 1 1 208525 736 0.00 2019-12-24 19:09:55 2019-12-24 19:19:16 t 1 1 208527 687 0.00 2019-12-24 19:14:03 2019-12-24 19:20:53 t 1 1 208530 625 0.00 2019-12-24 19:03:56 2019-12-24 19:25:23 t 1 1 208536 544 0.00 2019-12-24 19:28:55 2019-12-24 19:30:20 t 1 1 208538 675 0.00 2019-12-24 19:29:22 2019-12-24 19:30:56 t 1 1 208540 562 0.00 2019-12-24 19:30:55 2019-12-24 19:32:06 t 1 1 208541 544 0.00 2019-12-24 19:30:25 2019-12-24 19:33:04 t 1 1 208542 544 0.00 2019-12-24 19:33:07 2019-12-24 19:34:18 t 1 1 208543 683 0.00 2019-12-24 19:27:53 2019-12-24 19:35:01 t 1 1 208549 736 0.00 2019-12-24 19:38:19 2019-12-24 19:39:38 t 1 1 208551 736 0.00 2019-12-24 19:41:51 2019-12-24 19:42:08 t 1 1 208552 736 0.00 2019-12-24 19:42:50 2019-12-24 19:43:02 t 1 1 208556 220 0.00 2019-12-24 18:03:00 2019-12-24 19:48:50 t 1 2 208560 683 0.00 2019-12-24 19:45:23 2019-12-24 19:50:24 t 1 1 208566 220 0.00 2019-12-24 19:48:53 2019-12-24 19:53:58 t 1 2 208572 675 0.00 2019-12-24 19:57:49 2019-12-24 19:59:33 t 1 1 208579 736 0.00 2019-12-24 20:03:03 2019-12-24 20:03:06 t 1 1 208584 724 0.00 2019-12-24 20:03:58 2019-12-24 20:05:39 t 1 1 208585 637 0.00 2019-12-24 20:05:04 2019-12-24 20:06:36 t 1 1 208586 544 0.00 2019-12-24 19:59:49 2019-12-24 20:06:58 t 1 1 208587 675 0.00 2019-12-24 20:07:02 2019-12-24 20:08:23 t 1 1 208591 683 0.00 2019-12-24 20:03:36 2019-12-24 20:11:57 t 1 1 208594 724 0.00 2019-12-24 20:05:38 2019-12-24 20:15:53 t 1 1 208601 637 0.00 2019-12-24 20:22:49 2019-12-24 20:24:01 t 1 1 208603 736 0.00 2019-12-24 20:06:53 2019-12-24 20:25:47 t 1 1 208610 724 0.00 2019-12-24 20:27:23 2019-12-24 20:32:23 t 1 1 208612 736 0.00 2019-12-24 20:34:45 2019-12-24 20:35:05 t 1 1 208614 722 0.00 2019-12-24 20:13:42 2019-12-24 20:35:30 t 1 1 208620 562 0.00 2019-12-24 20:38:30 2019-12-24 20:38:48 t 1 1 208626 679 0.00 2019-12-24 20:39:37 2019-12-24 20:44:19 t 1 1 208628 681 0.00 2019-12-24 16:19:28 2019-12-24 20:45:08 t 1 1 208630 728 0.00 2019-12-24 20:45:19 2019-12-24 20:46:01 t 1 1 208631 681 0.00 2019-12-24 20:45:35 2019-12-24 20:46:42 t 1 1 208632 736 0.00 2019-12-24 20:37:26 2019-12-24 20:50:35 t 1 1 208636 722 0.00 2019-12-24 20:46:05 2019-12-24 20:55:42 t 1 1 208637 562 0.00 2019-12-24 20:55:33 2019-12-24 20:55:52 t 1 1 208638 728 0.00 2019-12-24 20:55:56 2019-12-24 20:56:11 t 1 1 208642 483 0.00 2019-12-24 20:49:10 2019-12-24 20:59:37 t 1 1 208643 754 0.00 2019-12-24 17:42:32 2019-12-24 21:00:09 t 1 2 208644 220 0.00 2019-12-24 20:20:15 2019-12-24 21:00:53 t 1 2 208645 736 0.00 2019-12-24 20:59:20 2019-12-24 21:01:32 t 1 1 208646 736 0.00 2019-12-24 21:01:47 2019-12-24 21:02:53 t 1 1 208648 679 0.00 2019-12-24 20:44:19 2019-12-24 21:02:54 t 1 1 208652 667 0.00 2019-12-24 21:00:40 2019-12-24 21:04:36 t 1 2 208653 591 0.00 2019-12-24 18:48:48 2019-12-24 21:05:38 t 1 1 208654 736 0.00 2019-12-24 21:05:35 2019-12-24 21:06:12 t 1 1 208656 625 0.00 2019-12-24 21:00:54 2019-12-24 21:07:29 t 1 1 208662 763 0.00 2019-12-24 21:10:09 2019-12-24 21:10:58 t 1 1 208665 763 0.00 2019-12-24 21:10:58 2019-12-24 21:11:59 t 1 1 208667 564 0.00 2019-12-24 20:59:03 2019-12-24 21:12:47 t 1 1 208670 544 0.00 2019-12-24 20:55:51 2019-12-24 21:17:16 t 1 1 208673 562 0.00 2019-12-24 21:17:14 2019-12-24 21:17:20 t 1 1 208675 681 0.00 2019-12-24 20:48:25 2019-12-24 21:18:19 t 1 1 208679 544 0.00 2019-12-24 21:17:54 2019-12-24 21:22:49 t 1 1 208681 760 0.00 2019-12-24 21:19:56 2019-12-24 21:26:07 t 1 1 208684 763 0.00 2019-12-24 21:28:22 2019-12-24 21:29:43 t 1 1 208686 562 0.00 2019-12-24 21:31:15 2019-12-24 21:33:25 t 1 1 208689 728 0.00 2019-12-24 21:29:55 2019-12-24 21:35:00 t 1 1 208690 562 0.00 2019-12-24 21:35:36 2019-12-24 21:35:36 f 1 1 208691 675 0.00 2019-12-24 21:18:01 2019-12-24 21:37:30 t 1 1 208695 679 0.00 2019-12-24 21:38:59 2019-12-24 21:40:03 t 1 1 208696 679 0.00 2019-12-24 21:40:10 2019-12-24 21:40:27 t 1 1 208701 711 0.00 2019-12-24 21:12:44 2019-12-24 21:42:26 t 1 1 208702 625 0.00 2019-12-24 21:38:40 2019-12-24 21:42:51 t 1 1 208703 679 0.00 2019-12-24 21:42:51 2019-12-24 21:43:30 t 1 1 208708 637 0.00 2019-12-24 21:42:25 2019-12-24 21:47:30 t 1 1 208711 679 0.00 2019-12-24 21:47:56 2019-12-24 21:48:37 t 1 1 208715 679 0.00 2019-12-24 21:52:40 2019-12-24 21:53:03 t 1 1 208718 637 0.00 2019-12-24 21:49:48 2019-12-24 21:54:59 t 1 1 208725 679 0.00 2019-12-24 21:56:27 2019-12-24 21:56:44 t 1 1 208727 711 0.00 2019-12-24 21:42:26 2019-12-24 21:57:39 t 1 1 208664 392 0.00 2019-12-24 20:58:10 2019-12-24 21:11:45 t 1 2 208668 679 0.00 2019-12-24 21:02:54 2019-12-24 21:13:44 t 1 1 208671 722 0.00 2019-12-24 21:13:36 2019-12-24 21:17:16 t 1 1 208676 736 0.00 2019-12-24 21:18:19 2019-12-24 21:19:09 t 1 1 208677 728 0.00 2019-12-24 21:18:54 2019-12-24 21:20:00 t 1 1 208680 730 0.00 2019-12-24 21:04:11 2019-12-24 21:24:56 t 1 1 208682 562 0.00 2019-12-24 21:27:53 2019-12-24 21:28:10 t 1 1 208683 760 0.00 2019-12-24 21:26:02 2019-12-24 21:28:21 t 1 1 208688 763 0.00 2019-12-24 21:30:36 2019-12-24 21:34:54 t 1 1 208697 754 0.00 2019-12-24 20:59:41 2019-12-24 21:40:41 t 1 2 208700 679 0.00 2019-12-24 21:41:56 2019-12-24 21:41:57 t 1 1 208704 763 0.00 2019-12-24 21:38:37 2019-12-24 21:44:07 t 1 1 208705 728 0.00 2019-12-24 21:44:50 2019-12-24 21:45:05 t 1 1 208706 679 0.00 2019-12-24 21:45:40 2019-12-24 21:45:46 t 1 1 208709 514 0.00 2019-12-24 21:30:57 2019-12-24 21:47:40 t 1 1 208710 763 0.00 2019-12-24 21:45:05 2019-12-24 21:48:12 t 1 1 208714 679 0.00 2019-12-24 21:50:28 2019-12-24 21:50:37 t 1 1 208716 679 0.00 2019-12-24 21:53:25 2019-12-24 21:54:02 t 1 1 208719 679 0.00 2019-12-24 21:54:28 2019-12-24 21:54:59 t 1 1 208720 220 0.00 2019-12-24 21:24:59 2019-12-24 21:55:34 t 1 2 208722 728 0.00 2019-12-24 21:55:21 2019-12-24 21:55:54 t 1 1 208730 578 0.00 2019-12-24 21:49:13 2019-12-24 21:59:52 t 1 1 208731 679 0.00 2019-12-24 21:59:57 2019-12-24 22:00:00 t 1 1 208733 649 0.00 2019-12-24 21:26:06 2019-12-24 22:00:56 t 1 1 208737 679 0.00 2019-12-24 22:02:09 2019-12-24 22:02:10 t 1 1 208739 679 0.00 2019-12-24 22:04:31 2019-12-24 22:04:57 t 1 1 208740 728 0.00 2019-12-24 22:05:53 2019-12-24 22:06:09 t 1 1 208741 679 0.00 2019-12-24 22:07:23 2019-12-24 22:07:24 t 1 1 208742 679 0.00 2019-12-24 22:07:34 2019-12-24 22:07:55 t 1 1 208744 679 0.00 2019-12-24 22:08:47 2019-12-24 22:08:56 t 1 1 208745 687 0.00 2019-12-24 21:37:36 2019-12-24 22:09:31 t 1 1 208751 679 0.00 2019-12-24 22:13:02 2019-12-24 22:13:12 t 1 1 208754 679 0.00 2019-12-24 22:13:47 2019-12-24 22:14:09 t 1 1 208755 564 0.00 2019-12-24 22:12:07 2019-12-24 22:14:40 t 1 1 208759 763 0.00 2019-12-24 22:11:17 2019-12-24 22:15:54 t 1 1 208764 637 0.00 2019-12-24 21:56:23 2019-12-24 22:17:51 t 1 1 208768 763 0.00 2019-12-24 22:16:57 2019-12-24 22:19:34 t 1 1 208774 675 0.00 2019-12-24 22:21:03 2019-12-24 22:24:23 t 1 1 208776 679 0.00 2019-12-24 22:25:02 2019-12-24 22:25:10 t 1 1 208779 679 0.00 2019-12-24 22:24:08 2019-12-24 22:25:55 t 1 1 208780 679 0.00 2019-12-24 22:25:56 2019-12-24 22:26:10 t 1 1 208781 679 0.00 2019-12-24 22:26:33 2019-12-24 22:26:40 t 1 1 208782 679 0.00 2019-12-24 22:26:56 2019-12-24 22:27:10 t 1 1 208784 763 0.00 2019-12-24 22:23:41 2019-12-24 22:28:01 t 1 1 208786 679 0.00 2019-12-24 22:27:58 2019-12-24 22:28:10 t 1 1 208791 679 0.00 2019-12-24 22:29:56 2019-12-24 22:30:10 t 1 1 208796 691 0.00 2019-12-24 22:28:52 2019-12-24 22:33:13 t 1 1 208798 679 0.00 2019-12-24 22:34:01 2019-12-24 22:34:26 t 1 1 208801 679 0.00 2019-12-24 22:35:40 2019-12-24 22:35:42 t 1 1 208803 679 0.00 2019-12-24 22:36:58 2019-12-24 22:37:11 t 1 1 208806 679 0.00 2019-12-24 22:37:56 2019-12-24 22:38:11 t 1 1 208810 726 0.00 2019-12-24 22:24:56 2019-12-24 22:39:45 t 1 1 208811 581 0.00 2019-12-24 22:39:55 2019-12-24 22:39:55 f 1 1 208813 679 0.00 2019-12-24 22:39:53 2019-12-24 22:40:17 t 1 1 208814 679 0.00 2019-12-24 22:40:33 2019-12-24 22:40:33 t 1 1 208821 578 0.00 2019-12-24 21:59:52 2019-12-24 22:44:56 t 1 1 208828 679 0.00 2019-12-24 22:49:03 2019-12-24 22:49:15 t 1 1 208831 679 0.00 2019-12-24 22:50:03 2019-12-24 22:50:15 t 1 1 208832 679 0.00 2019-12-24 22:50:46 2019-12-24 22:50:48 t 1 1 208835 711 0.00 2019-12-24 22:09:47 2019-12-24 22:52:06 t 1 1 208837 679 0.00 2019-12-24 22:52:41 2019-12-24 22:52:55 t 1 1 208838 679 0.00 2019-12-24 22:53:02 2019-12-24 22:53:45 t 1 1 208841 611 0.00 2019-12-24 22:50:48 2019-12-24 22:57:13 t 1 1 208844 679 0.00 2019-12-24 22:57:30 2019-12-24 22:57:38 t 1 1 208861 631 0.00 2019-12-24 23:01:41 2019-12-24 23:03:37 t 1 1 208867 679 0.00 2019-12-24 23:07:46 2019-12-24 23:07:48 t 1 1 208871 716 0.00 2019-12-24 23:00:18 2019-12-24 23:09:58 t 1 1 208874 679 0.00 2019-12-24 23:10:21 2019-12-24 23:11:21 t 1 1 208878 562 0.00 2019-12-24 21:19:20 2019-12-24 23:14:41 t 1 1 208879 679 0.00 2019-12-24 23:14:46 2019-12-24 23:14:48 t 1 1 208882 711 0.00 2019-12-24 22:52:06 2019-12-24 23:15:41 t 1 1 208888 679 0.00 2019-12-24 23:22:06 2019-12-24 23:22:44 t 1 1 208896 758 0.00 2019-12-24 23:29:53 2019-12-24 23:31:30 t 1 1 208898 679 0.00 2019-12-24 23:33:44 2019-12-24 23:34:10 t 1 1 208899 487 0.00 2019-12-24 23:13:12 2019-12-24 23:34:49 t 1 2 208901 679 0.00 2019-12-24 23:35:01 2019-12-24 23:35:07 t 1 1 208902 611 0.00 2019-12-24 23:23:14 2019-12-24 23:36:27 t 1 1 208904 679 0.00 2019-12-24 23:37:46 2019-12-24 23:37:50 t 1 1 208908 681 0.00 2019-12-24 23:14:41 2019-12-24 23:40:29 t 1 1 208909 679 0.00 2019-12-24 23:40:35 2019-12-24 23:40:36 t 1 1 208920 679 0.00 2019-12-24 23:49:21 2019-12-24 23:49:25 t 1 1 208923 637 0.00 2019-12-24 23:01:10 2019-12-24 23:51:47 t 1 1 208924 679 0.00 2019-12-24 23:51:52 2019-12-24 23:51:53 t 1 1 208926 758 0.00 2019-12-24 23:52:40 2019-12-24 23:53:10 t 1 1 208928 687 0.00 2019-12-24 23:15:10 2019-12-24 23:54:36 t 1 1 208931 744 0.00 2019-12-24 23:45:53 2019-12-24 23:55:43 t 1 1 208932 679 0.00 2019-12-24 23:55:59 2019-12-24 23:56:00 t 1 1 208939 754 0.00 2019-12-24 22:33:49 2019-12-25 00:00:25 t 1 2 208941 679 0.00 2019-12-25 00:02:08 2019-12-25 00:02:11 t 1 1 208946 679 0.00 2019-12-25 00:05:10 2019-12-25 00:05:38 t 1 1 208947 758 0.00 2019-12-25 00:05:17 2019-12-25 00:06:04 t 1 1 208952 758 0.00 2019-12-25 00:07:48 2019-12-25 00:08:48 t 1 1 208955 758 0.00 2019-12-25 00:10:19 2019-12-25 00:11:10 t 1 1 208963 679 0.00 2019-12-25 00:17:31 2019-12-25 00:17:43 t 1 1 208965 679 0.00 2019-12-25 00:18:07 2019-12-25 00:20:44 t 1 1 208966 679 0.00 2019-12-25 00:21:12 2019-12-25 00:21:13 t 1 1 208967 679 0.00 2019-12-25 00:21:20 2019-12-25 00:21:44 t 1 1 208968 758 0.00 2019-12-25 00:20:28 2019-12-25 00:21:56 t 1 1 208977 758 0.00 2019-12-25 00:33:20 2019-12-25 00:34:22 t 1 1 208979 544 0.00 2019-12-25 00:24:13 2019-12-25 00:36:06 t 1 1 208980 687 0.00 2019-12-25 00:30:58 2019-12-25 00:36:49 t 1 1 208981 544 0.00 2019-12-25 00:36:12 2019-12-25 00:37:39 t 1 1 208984 551 0.00 2019-12-25 00:16:10 2019-12-25 00:41:17 t 1 1 208987 544 0.00 2019-12-25 00:45:16 2019-12-25 00:45:44 t 1 1 208997 687 0.00 2019-12-25 00:56:53 2019-12-25 01:01:57 t 1 1 209002 514 0.00 2019-12-24 23:02:36 2019-12-25 01:06:51 t 1 1 209004 758 0.00 2019-12-25 01:14:42 2019-12-25 01:15:06 t 1 1 208694 760 0.00 2019-12-24 21:28:20 2019-12-24 21:39:17 t 1 1 208698 760 0.00 2019-12-24 21:39:17 2019-12-24 21:41:14 t 1 1 208699 679 0.00 2019-12-24 21:41:45 2019-12-24 21:41:47 t 1 1 208707 675 0.00 2019-12-24 21:44:37 2019-12-24 21:46:20 t 1 1 208712 578 0.00 2019-12-24 20:47:21 2019-12-24 21:49:13 t 1 1 208713 763 0.00 2019-12-24 21:48:11 2019-12-24 21:50:28 t 1 1 208717 625 0.00 2019-12-24 21:48:50 2019-12-24 21:54:21 t 1 1 208721 392 0.00 2019-12-24 21:19:13 2019-12-24 21:55:37 t 1 2 208723 679 0.00 2019-12-24 21:55:53 2019-12-24 21:55:58 t 1 1 208724 679 0.00 2019-12-24 21:56:06 2019-12-24 21:56:08 t 1 1 208726 763 0.00 2019-12-24 21:54:02 2019-12-24 21:57:29 t 1 1 208728 675 0.00 2019-12-24 21:55:58 2019-12-24 21:58:57 t 1 1 208738 763 0.00 2019-12-24 22:03:11 2019-12-24 22:04:31 t 1 1 208743 551 0.00 2019-12-24 21:33:45 2019-12-24 22:08:13 t 1 1 208748 679 0.00 2019-12-24 22:10:34 2019-12-24 22:10:56 t 1 1 208749 660 0.00 2019-12-24 20:06:07 2019-12-24 22:11:36 t 1 1 208752 635 0.00 2019-12-24 22:01:57 2019-12-24 22:13:26 t 1 1 208753 679 0.00 2019-12-24 22:13:29 2019-12-24 22:13:33 t 1 1 208760 679 0.00 2019-12-24 22:15:59 2019-12-24 22:16:33 t 1 1 208762 687 0.00 2019-12-24 22:09:31 2019-12-24 22:17:12 t 1 1 208765 709 0.00 2019-12-24 22:14:49 2019-12-24 22:17:54 t 1 1 208766 679 0.00 2019-12-24 22:17:13 2019-12-24 22:18:36 t 1 1 208767 538 0.00 2019-12-24 20:56:09 2019-12-24 22:19:30 t 1 1 208769 220 0.00 2019-12-24 22:03:03 2019-12-24 22:20:41 t 1 2 208773 763 0.00 2019-12-24 22:19:34 2019-12-24 22:23:41 t 1 1 208775 707 0.00 2019-12-24 22:22:11 2019-12-24 22:25:02 t 1 1 208777 756 0.00 2019-12-24 22:19:37 2019-12-24 22:25:14 t 1 1 208778 687 0.00 2019-12-24 22:17:12 2019-12-24 22:25:41 t 1 1 208783 591 0.00 2019-12-24 21:05:38 2019-12-24 22:28:01 t 1 1 208785 728 0.00 2019-12-24 22:26:54 2019-12-24 22:28:02 t 1 1 208787 679 0.00 2019-12-24 22:27:17 2019-12-24 22:28:18 t 1 1 208788 679 0.00 2019-12-24 22:28:19 2019-12-24 22:28:28 t 1 1 208789 656 0.00 2019-12-24 22:28:07 2019-12-24 22:29:00 t 1 1 208792 722 0.00 2019-12-24 22:26:07 2019-12-24 22:30:24 t 1 1 208793 679 0.00 2019-12-24 22:30:55 2019-12-24 22:31:07 t 1 1 208794 722 0.00 2019-12-24 22:31:44 2019-12-24 22:31:53 t 1 1 208797 763 0.00 2019-12-24 22:28:01 2019-12-24 22:33:50 t 1 1 208799 679 0.00 2019-12-24 22:35:00 2019-12-24 22:35:10 t 1 1 208800 679 0.00 2019-12-24 22:35:27 2019-12-24 22:35:32 t 1 1 208805 679 0.00 2019-12-24 22:37:44 2019-12-24 22:37:46 t 1 1 208808 679 0.00 2019-12-24 22:38:59 2019-12-24 22:39:10 t 1 1 208816 679 0.00 2019-12-24 22:41:00 2019-12-24 22:41:11 t 1 1 208817 679 0.00 2019-12-24 22:41:57 2019-12-24 22:42:11 t 1 1 208818 679 0.00 2019-12-24 22:42:28 2019-12-24 22:43:12 t 1 1 208823 637 0.00 2019-12-24 22:18:02 2019-12-24 22:46:16 t 1 1 208824 679 0.00 2019-12-24 22:47:00 2019-12-24 22:47:15 t 1 1 208825 679 0.00 2019-12-24 22:47:35 2019-12-24 22:47:42 t 1 1 208826 679 0.00 2019-12-24 22:47:56 2019-12-24 22:48:15 t 1 1 208827 679 0.00 2019-12-24 22:48:27 2019-12-24 22:48:33 t 1 1 208829 679 0.00 2019-12-24 22:49:25 2019-12-24 22:49:32 t 1 1 208830 679 0.00 2019-12-24 22:49:43 2019-12-24 22:49:44 t 1 1 208834 679 0.00 2019-12-24 22:51:02 2019-12-24 22:51:15 t 1 1 208836 551 0.00 2019-12-24 22:08:45 2019-12-24 22:52:55 t 1 1 208839 392 0.00 2019-12-24 22:32:40 2019-12-24 22:55:21 t 1 2 208840 679 0.00 2019-12-24 22:55:43 2019-12-24 22:55:46 t 1 1 208842 220 0.00 2019-12-24 22:49:39 2019-12-24 22:57:25 t 1 1 208843 551 0.00 2019-12-24 22:52:55 2019-12-24 22:57:34 t 1 1 208846 679 0.00 2019-12-24 22:58:04 2019-12-24 22:58:17 t 1 1 208847 679 0.00 2019-12-24 22:58:27 2019-12-24 22:58:31 t 1 1 208848 679 0.00 2019-12-24 22:58:48 2019-12-24 22:58:49 t 1 1 208850 679 0.00 2019-12-24 22:59:29 2019-12-24 23:00:17 t 1 1 208855 679 0.00 2019-12-24 23:01:43 2019-12-24 23:02:03 t 1 1 208858 679 0.00 2019-12-24 23:03:09 2019-12-24 23:03:14 t 1 1 208864 679 0.00 2019-12-24 23:04:07 2019-12-24 23:04:19 t 1 1 208870 679 0.00 2019-12-24 23:09:30 2019-12-24 23:09:38 t 1 1 208876 679 0.00 2019-12-24 23:13:12 2019-12-24 23:13:39 t 1 1 208880 687 0.00 2019-12-24 23:03:52 2019-12-24 23:15:00 t 1 1 208881 679 0.00 2019-12-24 23:15:12 2019-12-24 23:15:24 t 1 1 208890 611 0.00 2019-12-24 22:57:34 2019-12-24 23:23:10 t 1 1 208891 622 0.00 2019-12-24 23:18:45 2019-12-24 23:24:19 t 1 1 208892 689 0.00 2019-12-24 23:18:02 2019-12-24 23:25:04 t 1 1 208894 689 0.00 2019-12-24 23:25:04 2019-12-24 23:27:19 t 1 1 208900 728 0.00 2019-12-24 23:26:03 2019-12-24 23:34:58 t 1 1 208903 679 0.00 2019-12-24 23:37:31 2019-12-24 23:37:40 t 1 1 208907 679 0.00 2019-12-24 23:40:01 2019-12-24 23:40:09 t 1 1 208911 679 0.00 2019-12-24 23:41:18 2019-12-24 23:41:19 t 1 1 208912 679 0.00 2019-12-24 23:41:33 2019-12-24 23:41:34 t 1 1 208913 611 0.00 2019-12-24 23:36:34 2019-12-24 23:42:38 t 1 1 208918 679 0.00 2019-12-24 23:45:42 2019-12-24 23:45:54 t 1 1 208919 622 0.00 2019-12-24 23:44:26 2019-12-24 23:47:55 t 1 1 208934 611 0.00 2019-12-24 23:42:37 2019-12-24 23:56:49 t 1 1 208935 679 0.00 2019-12-24 23:55:50 2019-12-24 23:57:55 t 1 1 208937 622 0.00 2019-12-24 23:48:36 2019-12-24 23:59:01 t 1 1 208940 679 0.00 2019-12-25 00:01:49 2019-12-25 00:02:00 t 1 1 208956 679 0.00 2019-12-25 00:10:45 2019-12-25 00:11:15 t 1 1 208958 758 0.00 2019-12-25 00:11:33 2019-12-25 00:12:46 t 1 1 208959 679 0.00 2019-12-25 00:13:26 2019-12-25 00:13:46 t 1 1 208961 679 0.00 2019-12-25 00:17:05 2019-12-25 00:17:09 t 1 1 208969 679 0.00 2019-12-25 00:21:51 2019-12-25 00:21:57 t 1 1 208970 758 0.00 2019-12-25 00:21:55 2019-12-25 00:22:35 t 1 1 208971 544 0.00 2019-12-25 00:20:50 2019-12-25 00:24:14 t 1 1 208973 687 0.00 2019-12-25 00:05:58 2019-12-25 00:28:40 t 1 1 208975 687 0.00 2019-12-25 00:29:21 2019-12-25 00:30:41 t 1 1 208976 637 0.00 2019-12-24 23:51:47 2019-12-25 00:33:34 t 1 1 208978 758 0.00 2019-12-25 00:34:44 2019-12-25 00:35:13 t 1 1 208985 758 0.00 2019-12-25 00:40:18 2019-12-25 00:41:20 t 1 1 208988 758 0.00 2019-12-25 00:45:22 2019-12-25 00:46:11 t 1 1 208989 687 0.00 2019-12-25 00:44:09 2019-12-25 00:47:28 t 1 1 208993 758 0.00 2019-12-25 00:52:24 2019-12-25 00:52:47 t 1 1 208994 758 0.00 2019-12-25 00:57:37 2019-12-25 00:57:52 t 1 1 208995 758 0.00 2019-12-25 00:57:58 2019-12-25 00:58:22 t 1 1 208998 758 0.00 2019-12-25 01:03:27 2019-12-25 01:04:11 t 1 1 209001 637 0.00 2019-12-25 01:04:25 2019-12-25 01:05:52 t 1 1 209003 758 0.00 2019-12-25 01:08:54 2019-12-25 01:09:25 t 1 1 209012 758 0.00 2019-12-25 01:30:52 2019-12-25 01:31:13 t 1 1 209013 758 0.00 2019-12-25 01:31:26 2019-12-25 01:31:36 t 1 1 209014 758 0.00 2019-12-25 01:33:07 2019-12-25 01:33:23 t 1 1 208729 679 0.00 2019-12-24 21:58:57 2019-12-24 21:59:47 t 1 1 208732 754 0.00 2019-12-24 21:46:24 2019-12-24 22:00:36 t 1 2 208734 679 0.00 2019-12-24 22:01:25 2019-12-24 22:01:26 t 1 1 208735 679 0.00 2019-12-24 22:01:42 2019-12-24 22:01:49 t 1 1 208736 763 0.00 2019-12-24 21:58:32 2019-12-24 22:02:09 t 1 1 208746 711 0.00 2019-12-24 21:57:39 2019-12-24 22:09:47 t 1 1 208747 675 0.00 2019-12-24 22:08:56 2019-12-24 22:10:31 t 1 1 208750 562 0.00 2019-12-24 21:33:56 2019-12-24 22:12:07 t 1 1 208756 726 0.00 2019-12-24 21:52:24 2019-12-24 22:15:09 t 1 1 208757 679 0.00 2019-12-24 22:15:22 2019-12-24 22:15:25 t 1 1 208758 763 0.00 2019-12-24 22:15:46 2019-12-24 22:15:46 f 1 1 208761 763 0.00 2019-12-24 22:15:21 2019-12-24 22:16:55 t 1 1 208763 728 0.00 2019-12-24 22:16:24 2019-12-24 22:17:28 t 1 1 208770 707 0.00 2019-12-24 21:14:38 2019-12-24 22:22:11 t 1 1 208771 679 0.00 2019-12-24 22:19:59 2019-12-24 22:23:05 t 1 1 208772 679 0.00 2019-12-24 22:23:11 2019-12-24 22:23:39 t 1 1 208790 679 0.00 2019-12-24 22:28:42 2019-12-24 22:29:10 t 1 1 208795 679 0.00 2019-12-24 22:32:58 2019-12-24 22:33:10 t 1 1 208802 679 0.00 2019-12-24 22:35:53 2019-12-24 22:36:14 t 1 1 208804 763 0.00 2019-12-24 22:33:49 2019-12-24 22:37:28 t 1 1 208807 625 0.00 2019-12-24 21:57:52 2019-12-24 22:38:49 t 1 1 208809 679 0.00 2019-12-24 22:39:26 2019-12-24 22:39:30 t 1 1 208812 581 0.00 2019-12-24 22:40:16 2019-12-24 22:40:16 f 1 1 208815 581 0.00 2019-12-24 22:40:52 2019-12-24 22:40:52 f 1 1 208819 679 0.00 2019-12-24 22:44:00 2019-12-24 22:44:14 t 1 1 208820 578 0.00 2019-12-24 22:44:01 2019-12-24 22:44:47 t 1 1 208822 679 0.00 2019-12-24 22:45:03 2019-12-24 22:45:14 t 1 1 208833 611 0.00 2019-12-24 22:22:52 2019-12-24 22:50:49 t 1 1 208845 679 0.00 2019-12-24 22:57:48 2019-12-24 22:57:55 t 1 1 208849 637 0.00 2019-12-24 22:47:51 2019-12-24 22:59:26 t 1 1 208851 679 0.00 2019-12-24 23:00:36 2019-12-24 23:00:40 t 1 1 208852 679 0.00 2019-12-24 23:01:04 2019-12-24 23:01:18 t 1 1 208853 679 0.00 2019-12-24 23:01:27 2019-12-24 23:01:36 t 1 1 208854 578 0.00 2019-12-24 23:00:07 2019-12-24 23:02:02 t 1 1 208856 679 0.00 2019-12-24 23:02:02 2019-12-24 23:02:18 t 1 1 208857 591 0.00 2019-12-24 22:54:38 2019-12-24 23:02:48 t 1 1 208859 687 0.00 2019-12-24 22:25:41 2019-12-24 23:03:19 t 1 1 208860 679 0.00 2019-12-24 23:03:33 2019-12-24 23:03:36 t 1 1 208862 679 0.00 2019-12-24 23:03:47 2019-12-24 23:03:48 t 1 1 208863 679 0.00 2019-12-24 23:03:57 2019-12-24 23:03:58 t 1 1 208865 679 0.00 2019-12-24 23:04:44 2019-12-24 23:04:49 t 1 1 208866 689 0.00 2019-12-24 22:58:35 2019-12-24 23:06:40 t 1 1 208868 679 0.00 2019-12-24 23:08:02 2019-12-24 23:08:24 t 1 1 208869 679 0.00 2019-12-24 23:08:31 2019-12-24 23:08:35 t 1 1 208872 679 0.00 2019-12-24 23:09:55 2019-12-24 23:10:00 t 1 1 208873 716 0.00 2019-12-24 23:09:58 2019-12-24 23:10:37 t 1 1 208875 487 0.00 2019-12-24 22:36:15 2019-12-24 23:12:24 t 1 2 208877 679 0.00 2019-12-24 23:14:20 2019-12-24 23:14:30 t 1 1 208883 679 0.00 2019-12-24 23:16:11 2019-12-24 23:16:25 t 1 1 208884 689 0.00 2019-12-24 23:06:40 2019-12-24 23:18:02 t 1 1 208885 679 0.00 2019-12-24 23:18:14 2019-12-24 23:18:24 t 1 1 208886 679 0.00 2019-12-24 23:18:34 2019-12-24 23:18:35 t 1 1 208887 679 0.00 2019-12-24 23:18:42 2019-12-24 23:19:24 t 1 1 208889 679 0.00 2019-12-24 23:22:55 2019-12-24 23:22:56 t 1 1 208893 679 0.00 2019-12-24 23:23:06 2019-12-24 23:26:06 t 1 1 208895 679 0.00 2019-12-24 23:28:13 2019-12-24 23:28:41 t 1 1 208897 726 0.00 2019-12-24 23:30:14 2019-12-24 23:32:22 t 1 1 208905 679 0.00 2019-12-24 23:37:56 2019-12-24 23:38:10 t 1 1 208906 679 0.00 2019-12-24 23:39:18 2019-12-24 23:39:43 t 1 1 208910 622 0.00 2019-12-24 23:39:04 2019-12-24 23:40:41 t 1 1 208914 622 0.00 2019-12-24 23:40:39 2019-12-24 23:43:21 t 1 1 208915 679 0.00 2019-12-24 23:43:58 2019-12-24 23:44:13 t 1 1 208916 679 0.00 2019-12-24 23:44:45 2019-12-24 23:45:13 t 1 1 208917 744 0.00 2019-12-24 23:09:15 2019-12-24 23:45:53 t 1 1 208921 679 0.00 2019-12-24 23:50:15 2019-12-24 23:50:44 t 1 1 208922 679 0.00 2019-12-24 23:51:15 2019-12-24 23:51:45 t 1 1 208925 679 0.00 2019-12-24 23:51:59 2019-12-24 23:52:11 t 1 1 208927 578 0.00 2019-12-24 23:52:11 2019-12-24 23:53:38 t 1 1 208929 679 0.00 2019-12-24 23:54:31 2019-12-24 23:55:01 t 1 1 208930 679 0.00 2019-12-24 23:55:15 2019-12-24 23:55:39 t 1 1 208933 679 0.00 2019-12-24 23:56:11 2019-12-24 23:56:12 t 1 1 208936 758 0.00 2019-12-24 23:57:47 2019-12-24 23:58:13 t 1 1 208938 679 0.00 2019-12-24 23:59:37 2019-12-25 00:00:05 t 1 1 208942 760 0.00 2019-12-24 23:44:52 2019-12-25 00:02:30 t 1 1 208943 679 0.00 2019-12-25 00:02:44 2019-12-25 00:02:48 t 1 1 208944 758 0.00 2019-12-25 00:03:09 2019-12-25 00:03:58 t 1 1 208945 687 0.00 2019-12-24 23:54:36 2019-12-25 00:05:34 t 1 1 208948 679 0.00 2019-12-25 00:06:00 2019-12-25 00:07:00 t 1 1 208949 679 0.00 2019-12-25 00:07:24 2019-12-25 00:07:45 t 1 1 208950 679 0.00 2019-12-25 00:07:53 2019-12-25 00:07:54 t 1 1 208951 679 0.00 2019-12-25 00:08:28 2019-12-25 00:08:45 t 1 1 208953 679 0.00 2019-12-25 00:08:55 2019-12-25 00:08:56 t 1 1 208954 544 0.00 2019-12-24 23:48:55 2019-12-25 00:09:42 t 1 1 208957 679 0.00 2019-12-25 00:11:23 2019-12-25 00:11:41 t 1 1 208960 679 0.00 2019-12-25 00:16:16 2019-12-25 00:16:43 t 1 1 208962 760 0.00 2019-12-25 00:02:30 2019-12-25 00:17:20 t 1 1 208964 679 0.00 2019-12-25 00:17:53 2019-12-25 00:17:55 t 1 1 208972 758 0.00 2019-12-25 00:27:28 2019-12-25 00:28:01 t 1 1 208974 760 0.00 2019-12-25 00:17:20 2019-12-25 00:30:25 t 1 1 208982 687 0.00 2019-12-25 00:37:01 2019-12-25 00:38:46 t 1 1 208983 754 0.00 2019-12-25 00:00:41 2019-12-25 00:40:33 t 1 2 208986 687 0.00 2019-12-25 00:39:17 2019-12-25 00:43:38 t 1 1 208990 679 0.00 2019-12-25 00:22:11 2019-12-25 00:47:50 t 1 1 208991 637 0.00 2019-12-25 00:33:34 2019-12-25 00:48:07 t 1 1 208992 758 0.00 2019-12-25 00:49:27 2019-12-25 00:49:37 t 1 1 208996 503 0.00 2019-12-25 00:58:00 2019-12-25 01:01:39 t 1 1 208999 637 0.00 2019-12-25 00:48:07 2019-12-25 01:04:25 t 1 1 209000 679 0.00 2019-12-25 00:47:50 2019-12-25 01:05:46 t 1 1 209005 562 0.00 2019-12-25 01:14:34 2019-12-25 01:18:21 t 1 1 209007 692 0.00 2019-12-25 01:07:49 2019-12-25 01:19:16 t 1 1 209008 562 0.00 2019-12-25 01:18:20 2019-12-25 01:19:36 t 1 1 209009 758 0.00 2019-12-25 01:19:59 2019-12-25 01:20:42 t 1 1 209010 679 0.00 2019-12-25 01:05:46 2019-12-25 01:25:40 t 1 1 209015 758 0.00 2019-12-25 01:34:19 2019-12-25 01:35:56 t 1 1 209018 758 0.00 2019-12-25 01:36:15 2019-12-25 01:37:05 t 1 1 209025 679 0.00 2019-12-25 01:25:40 2019-12-25 01:54:15 t 1 1 209027 758 0.00 2019-12-25 01:59:14 2019-12-25 01:59:38 t 1 1 209006 503 0.00 2019-12-25 01:01:39 2019-12-25 01:18:26 t 1 1 209011 758 0.00 2019-12-25 01:25:27 2019-12-25 01:25:50 t 1 1 209017 220 0.00 2019-12-24 23:32:20 2019-12-25 01:36:27 t 1 2 209019 538 0.00 2019-12-25 01:05:02 2019-12-25 01:39:46 t 1 1 209021 758 0.00 2019-12-25 01:41:42 2019-12-25 01:42:05 t 1 1 209022 758 0.00 2019-12-25 01:47:07 2019-12-25 01:47:39 t 1 1 209026 758 0.00 2019-12-25 01:54:10 2019-12-25 01:54:25 t 1 1 209030 622 0.00 2019-12-25 00:47:54 2019-12-25 02:12:04 t 1 1 209033 758 0.00 2019-12-25 02:14:21 2019-12-25 02:14:35 t 1 1 209036 758 0.00 2019-12-25 02:20:58 2019-12-25 02:21:11 t 1 1 209038 758 0.00 2019-12-25 02:22:30 2019-12-25 02:23:13 t 1 1 209039 758 0.00 2019-12-25 02:24:46 2019-12-25 02:25:49 t 1 1 209040 758 0.00 2019-12-25 02:26:57 2019-12-25 02:27:05 t 1 1 209042 758 0.00 2019-12-25 02:27:41 2019-12-25 02:28:08 t 1 1 209044 758 0.00 2019-12-25 02:29:08 2019-12-25 02:29:08 f 1 1 209047 687 0.00 2019-12-25 02:33:21 2019-12-25 02:37:42 t 1 1 209048 687 0.00 2019-12-25 02:37:42 2019-12-25 02:46:26 t 1 1 209049 679 0.00 2019-12-25 02:21:40 2019-12-25 02:46:58 t 1 1 209050 687 0.00 2019-12-25 02:46:26 2019-12-25 02:47:45 t 1 1 209051 622 0.00 2019-12-25 02:54:40 2019-12-25 02:55:53 t 1 1 209053 679 0.00 2019-12-25 03:19:49 2019-12-25 03:20:51 t 1 1 209057 711 0.00 2019-12-25 03:59:25 2019-12-25 04:01:57 t 1 1 209058 711 0.00 2019-12-25 04:01:57 2019-12-25 04:05:03 t 1 1 209062 711 0.00 2019-12-25 04:16:57 2019-12-25 04:20:56 t 1 1 209065 625 0.00 2019-12-25 05:52:52 2019-12-25 06:16:44 t 1 1 209068 625 0.00 2019-12-25 06:30:15 2019-12-25 06:42:45 t 1 1 209072 611 0.00 2019-12-25 06:19:57 2019-12-25 06:56:08 t 1 1 209073 637 0.00 2019-12-25 06:48:00 2019-12-25 07:05:44 t 1 1 209077 711 0.00 2019-12-25 04:43:25 2019-12-25 07:33:11 t 1 1 209080 611 0.00 2019-12-25 07:04:05 2019-12-25 07:36:52 t 1 1 209086 538 0.00 2019-12-25 06:44:47 2019-12-25 07:57:04 t 1 1 209089 538 0.00 2019-12-25 07:57:03 2019-12-25 08:00:20 t 1 1 209091 763 0.00 2019-12-25 07:58:03 2019-12-25 08:03:52 t 1 1 209093 611 0.00 2019-12-25 07:56:53 2019-12-25 08:08:56 t 1 1 209095 763 0.00 2019-12-25 08:03:51 2019-12-25 08:10:22 t 1 1 209104 763 0.00 2019-12-25 08:21:25 2019-12-25 08:23:17 t 1 1 209108 611 0.00 2019-12-25 08:21:07 2019-12-25 08:27:02 t 1 1 209117 487 0.00 2019-12-25 08:26:58 2019-12-25 08:41:18 t 1 2 209119 681 0.00 2019-12-25 08:25:38 2019-12-25 08:45:08 t 1 1 209120 734 0.00 2019-12-25 07:11:22 2019-12-25 08:46:16 t 1 1 209122 591 0.00 2019-12-25 08:21:49 2019-12-25 08:48:40 t 1 1 209124 763 0.00 2019-12-25 08:47:46 2019-12-25 08:51:31 t 1 1 209126 763 0.00 2019-12-25 08:51:31 2019-12-25 08:54:20 t 1 1 209127 591 0.00 2019-12-25 08:48:40 2019-12-25 08:58:25 t 1 1 209131 724 0.00 2019-12-25 09:01:26 2019-12-25 09:02:21 t 1 1 209133 681 0.00 2019-12-25 08:45:09 2019-12-25 09:06:26 t 1 1 209134 689 0.00 2019-12-25 07:29:06 2019-12-25 09:08:22 t 1 1 209137 726 0.00 2019-12-25 08:45:05 2019-12-25 09:12:19 t 1 1 209141 611 0.00 2019-12-25 09:17:24 2019-12-25 09:19:02 t 1 1 209142 611 0.00 2019-12-25 09:19:52 2019-12-25 09:22:18 t 1 1 209143 675 0.00 2019-12-25 09:20:58 2019-12-25 09:22:28 t 1 1 209147 756 0.00 2019-12-24 22:25:14 2019-12-25 09:29:56 t 1 1 209148 679 0.00 2019-12-25 09:30:55 2019-12-25 09:32:00 t 1 1 209150 564 0.00 2019-12-25 09:27:13 2019-12-25 09:39:35 t 1 1 209156 681 0.00 2019-12-25 09:06:26 2019-12-25 09:45:32 t 1 1 209161 625 0.00 2019-12-25 08:25:07 2019-12-25 09:50:16 t 1 1 209162 763 0.00 2019-12-25 09:49:14 2019-12-25 09:54:17 t 1 1 209163 691 0.00 2019-12-25 09:55:33 2019-12-25 09:56:10 t 1 1 209165 538 0.00 2019-12-25 08:19:39 2019-12-25 09:58:47 t 1 1 209168 763 0.00 2019-12-25 09:58:23 2019-12-25 10:01:32 t 1 1 209174 615 0.00 2019-12-25 09:59:56 2019-12-25 10:06:22 t 1 1 209180 562 0.00 2019-12-25 10:10:29 2019-12-25 10:11:11 t 1 1 209182 683 0.00 2019-12-25 10:08:03 2019-12-25 10:14:42 t 1 1 209188 564 0.00 2019-12-25 09:39:35 2019-12-25 10:21:18 t 1 1 209190 763 0.00 2019-12-25 10:23:26 2019-12-25 10:24:47 t 1 1 209196 671 0.00 2019-12-25 10:28:47 2019-12-25 10:31:39 t 1 1 209197 625 0.00 2019-12-25 10:12:36 2019-12-25 10:33:24 t 1 1 209210 675 0.00 2019-12-25 10:42:19 2019-12-25 10:43:40 t 1 1 209212 611 0.00 2019-12-25 10:44:18 2019-12-25 10:45:20 t 1 1 209217 694 0.00 2019-12-25 10:34:48 2019-12-25 10:51:24 t 1 1 209220 679 0.00 2019-12-25 10:53:11 2019-12-25 10:54:42 t 1 1 209222 679 0.00 2019-12-25 10:55:20 2019-12-25 10:55:41 t 1 1 209224 660 0.00 2019-12-25 10:43:33 2019-12-25 10:56:14 t 1 1 209225 679 0.00 2019-12-25 10:56:14 2019-12-25 10:56:43 t 1 1 209228 679 0.00 2019-12-25 10:58:22 2019-12-25 10:58:24 t 1 1 209229 679 0.00 2019-12-25 10:58:30 2019-12-25 10:58:46 t 1 1 209232 734 0.00 2019-12-25 10:57:49 2019-12-25 10:59:18 t 1 1 209234 220 0.00 2019-12-25 10:45:04 2019-12-25 11:00:01 t 1 1 209238 562 0.00 2019-12-25 11:00:46 2019-12-25 11:01:04 t 1 1 209239 694 0.00 2019-12-25 10:59:15 2019-12-25 11:02:09 t 1 1 209242 679 0.00 2019-12-25 11:02:56 2019-12-25 11:02:57 t 1 1 209244 679 0.00 2019-12-25 11:03:38 2019-12-25 11:03:54 t 1 1 209256 611 0.00 2019-12-25 11:08:06 2019-12-25 11:09:09 t 1 1 209258 679 0.00 2019-12-25 11:09:07 2019-12-25 11:09:13 t 1 1 209259 622 0.00 2019-12-25 09:36:07 2019-12-25 11:09:39 t 1 1 209260 679 0.00 2019-12-25 11:09:46 2019-12-25 11:10:03 t 1 1 209264 679 0.00 2019-12-25 11:10:47 2019-12-25 11:11:09 t 1 1 209265 220 0.00 2019-12-25 11:00:01 2019-12-25 11:11:32 t 1 1 209266 562 0.00 2019-12-25 11:11:31 2019-12-25 11:11:50 t 1 1 209271 679 0.00 2019-12-25 11:12:46 2019-12-25 11:13:23 t 1 1 209276 679 0.00 2019-12-25 11:14:53 2019-12-25 11:15:13 t 1 1 209277 679 0.00 2019-12-25 11:15:31 2019-12-25 11:15:35 t 1 1 209278 679 0.00 2019-12-25 11:15:57 2019-12-25 11:16:13 t 1 1 209280 681 0.00 2019-12-25 10:45:52 2019-12-25 11:16:43 t 1 1 209284 564 0.00 2019-12-25 10:21:18 2019-12-25 11:20:57 t 1 1 209288 679 0.00 2019-12-25 11:16:57 2019-12-25 11:23:57 t 1 1 209290 679 0.00 2019-12-25 11:24:41 2019-12-25 11:24:57 t 1 1 209291 679 0.00 2019-12-25 11:25:44 2019-12-25 11:26:02 t 1 1 209294 679 0.00 2019-12-25 11:27:43 2019-12-25 11:28:05 t 1 1 209298 562 0.00 2019-12-25 11:28:23 2019-12-25 11:28:42 t 1 1 209302 679 0.00 2019-12-25 11:29:50 2019-12-25 11:30:05 t 1 1 209305 679 0.00 2019-12-25 11:30:51 2019-12-25 11:31:08 t 1 1 209307 625 0.00 2019-12-25 11:30:58 2019-12-25 11:32:40 t 1 1 209310 694 0.00 2019-12-25 11:28:48 2019-12-25 11:33:19 t 1 1 209315 611 0.00 2019-12-25 11:27:23 2019-12-25 11:41:17 t 1 1 209319 611 0.00 2019-12-25 11:41:16 2019-12-25 11:45:03 t 1 1 209321 611 0.00 2019-12-25 11:45:03 2019-12-25 11:47:12 t 1 1 209016 675 0.00 2019-12-25 01:33:27 2019-12-25 01:36:15 t 1 1 209020 687 0.00 2019-12-25 01:09:12 2019-12-25 01:41:14 t 1 1 209023 758 0.00 2019-12-25 01:52:37 2019-12-25 01:53:05 t 1 1 209024 758 0.00 2019-12-25 01:53:53 2019-12-25 01:53:56 t 1 1 209031 758 0.00 2019-12-25 02:11:41 2019-12-25 02:12:34 t 1 1 209032 758 0.00 2019-12-25 02:13:33 2019-12-25 02:13:42 t 1 1 209034 758 0.00 2019-12-25 02:17:03 2019-12-25 02:17:36 t 1 1 209037 679 0.00 2019-12-25 01:54:15 2019-12-25 02:21:40 t 1 1 209043 758 0.00 2019-12-25 02:28:23 2019-12-25 02:28:24 t 1 1 209056 711 0.00 2019-12-25 03:56:59 2019-12-25 03:59:25 t 1 1 209059 711 0.00 2019-12-25 04:05:03 2019-12-25 04:09:28 t 1 1 209061 711 0.00 2019-12-25 04:12:47 2019-12-25 04:16:57 t 1 1 209064 625 0.00 2019-12-25 05:12:55 2019-12-25 05:52:43 t 1 1 209066 625 0.00 2019-12-25 06:16:44 2019-12-25 06:30:15 t 1 1 209069 681 0.00 2019-12-25 06:35:15 2019-12-25 06:50:07 t 1 1 209070 656 0.00 2019-12-25 06:23:31 2019-12-25 06:51:46 t 1 2 209075 637 0.00 2019-12-25 07:05:44 2019-12-25 07:28:19 t 1 1 209076 689 0.00 2019-12-25 07:19:50 2019-12-25 07:29:06 t 1 1 209079 758 0.00 2019-12-25 01:34:02 2019-12-25 07:35:34 t 1 1 209082 611 0.00 2019-12-25 07:36:52 2019-12-25 07:41:12 t 1 1 209083 611 0.00 2019-12-25 07:48:19 2019-12-25 07:50:32 t 1 1 209085 711 0.00 2019-12-25 07:34:11 2019-12-25 07:54:21 t 1 1 209087 625 0.00 2019-12-25 06:42:45 2019-12-25 07:57:31 t 1 1 209088 763 0.00 2019-12-25 07:54:10 2019-12-25 07:58:03 t 1 1 209090 566 0.00 2019-12-25 07:38:07 2019-12-25 08:00:33 t 1 1 209096 611 0.00 2019-12-25 08:09:33 2019-12-25 08:10:38 t 1 1 209097 625 0.00 2019-12-25 07:57:31 2019-12-25 08:13:10 t 1 1 209099 763 0.00 2019-12-25 08:10:21 2019-12-25 08:16:11 t 1 1 209100 625 0.00 2019-12-25 08:13:10 2019-12-25 08:18:36 t 1 1 209101 538 0.00 2019-12-25 08:18:11 2019-12-25 08:19:38 t 1 1 209102 566 0.00 2019-12-25 08:14:27 2019-12-25 08:20:30 t 1 1 209103 763 0.00 2019-12-25 08:16:11 2019-12-25 08:21:26 t 1 1 209105 625 0.00 2019-12-25 08:18:36 2019-12-25 08:25:07 t 1 1 209106 637 0.00 2019-12-25 07:28:19 2019-12-25 08:25:30 t 1 1 209110 763 0.00 2019-12-25 08:24:22 2019-12-25 08:29:30 t 1 1 209114 687 0.00 2019-12-25 08:33:57 2019-12-25 08:37:12 t 1 1 209116 687 0.00 2019-12-25 08:37:34 2019-12-25 08:40:32 t 1 1 209128 615 0.00 2019-12-25 08:52:42 2019-12-25 08:59:10 t 1 1 209130 724 0.00 2019-12-25 08:51:12 2019-12-25 09:01:12 t 1 1 209135 637 0.00 2019-12-25 08:54:07 2019-12-25 09:11:10 t 1 1 209136 591 0.00 2019-12-25 09:04:28 2019-12-25 09:11:52 t 1 1 209140 611 0.00 2019-12-25 09:08:04 2019-12-25 09:17:21 t 1 1 209144 611 0.00 2019-12-25 09:22:26 2019-12-25 09:24:30 t 1 1 209149 763 0.00 2019-12-25 09:29:53 2019-12-25 09:38:15 t 1 1 209151 544 0.00 2019-12-25 09:41:05 2019-12-25 09:41:34 t 1 1 209153 683 0.00 2019-12-25 09:29:58 2019-12-25 09:43:27 t 1 1 209155 591 0.00 2019-12-25 09:33:01 2019-12-25 09:44:07 t 1 1 209157 611 0.00 2019-12-25 09:45:32 2019-12-25 09:48:27 t 1 1 209160 694 0.00 2019-12-25 09:21:05 2019-12-25 09:50:09 t 1 1 209170 763 0.00 2019-12-25 10:01:32 2019-12-25 10:03:14 t 1 1 209171 538 0.00 2019-12-25 10:03:19 2019-12-25 10:04:33 t 1 1 209173 683 0.00 2019-12-25 09:45:27 2019-12-25 10:06:11 t 1 1 209176 679 0.00 2019-12-25 10:06:46 2019-12-25 10:09:02 t 1 1 209178 694 0.00 2019-12-25 09:50:46 2019-12-25 10:09:25 t 1 1 209179 679 0.00 2019-12-25 10:09:07 2019-12-25 10:10:10 t 1 1 209181 711 0.00 2019-12-25 09:51:12 2019-12-25 10:13:15 t 1 1 209183 562 0.00 2019-12-25 10:16:03 2019-12-25 10:16:42 t 1 1 209184 562 0.00 2019-12-25 10:17:35 2019-12-25 10:18:02 t 1 1 209185 562 0.00 2019-12-25 10:18:23 2019-12-25 10:18:38 t 1 1 209186 683 0.00 2019-12-25 10:16:06 2019-12-25 10:19:54 t 1 1 209187 689 0.00 2019-12-25 09:08:21 2019-12-25 10:21:02 t 1 1 209189 591 0.00 2019-12-25 09:44:10 2019-12-25 10:23:05 t 1 1 209191 544 0.00 2019-12-25 10:03:10 2019-12-25 10:25:35 t 1 1 209194 671 0.00 2019-12-25 10:06:55 2019-12-25 10:28:48 t 1 1 209198 611 0.00 2019-12-25 09:48:27 2019-12-25 10:33:26 t 1 1 209200 689 0.00 2019-12-25 10:21:48 2019-12-25 10:33:47 t 1 1 209206 687 0.00 2019-12-25 10:37:57 2019-12-25 10:38:13 t 1 1 209207 687 0.00 2019-12-25 10:38:44 2019-12-25 10:39:06 t 1 1 209208 562 0.00 2019-12-25 10:42:35 2019-12-25 10:43:00 t 1 1 209209 763 0.00 2019-12-25 10:38:07 2019-12-25 10:43:37 t 1 1 209211 611 0.00 2019-12-25 10:39:52 2019-12-25 10:44:18 t 1 1 209213 625 0.00 2019-12-25 10:33:24 2019-12-25 10:45:52 t 1 1 209214 724 0.00 2019-12-25 10:34:11 2019-12-25 10:46:24 t 1 1 209219 694 0.00 2019-12-25 10:52:40 2019-12-25 10:54:05 t 1 1 209221 679 0.00 2019-12-25 10:54:48 2019-12-25 10:54:53 t 1 1 209226 679 0.00 2019-12-25 10:56:50 2019-12-25 10:56:51 t 1 1 209235 679 0.00 2019-12-25 10:59:56 2019-12-25 11:00:04 t 1 1 209237 679 0.00 2019-12-25 11:00:32 2019-12-25 11:00:48 t 1 1 209243 679 0.00 2019-12-25 11:03:10 2019-12-25 11:03:13 t 1 1 209246 611 0.00 2019-12-25 10:45:58 2019-12-25 11:04:59 t 1 1 209247 707 0.00 2019-12-25 11:03:18 2019-12-25 11:05:34 t 1 1 209250 611 0.00 2019-12-25 11:05:20 2019-12-25 11:06:33 t 1 1 209253 683 0.00 2019-12-25 10:50:40 2019-12-25 11:08:06 t 1 1 209263 591 0.00 2019-12-25 10:23:05 2019-12-25 11:10:59 t 1 1 209268 611 0.00 2019-12-25 11:09:39 2019-12-25 11:12:17 t 1 1 209270 694 0.00 2019-12-25 11:08:03 2019-12-25 11:12:23 t 1 1 209272 707 0.00 2019-12-25 11:08:13 2019-12-25 11:13:32 t 1 1 209274 615 0.00 2019-12-25 11:08:27 2019-12-25 11:14:12 t 1 1 209275 683 0.00 2019-12-25 11:08:06 2019-12-25 11:15:11 t 1 1 209281 675 0.00 2019-12-25 11:15:42 2019-12-25 11:16:56 t 1 1 209282 611 0.00 2019-12-25 11:16:59 2019-12-25 11:19:00 t 1 1 209285 625 0.00 2019-12-25 11:16:47 2019-12-25 11:21:20 t 1 1 209289 694 0.00 2019-12-25 11:17:48 2019-12-25 11:24:11 t 1 1 209293 679 0.00 2019-12-25 11:26:45 2019-12-25 11:27:01 t 1 1 209297 544 0.00 2019-12-25 10:55:21 2019-12-25 11:28:36 t 1 1 209299 679 0.00 2019-12-25 11:28:30 2019-12-25 11:29:06 t 1 1 209300 591 0.00 2019-12-25 11:23:46 2019-12-25 11:29:48 t 1 1 209308 649 0.00 2019-12-25 10:59:14 2019-12-25 11:32:49 t 1 1 209312 615 0.00 2019-12-25 11:31:12 2019-12-25 11:36:42 t 1 1 209314 562 0.00 2019-12-25 11:38:39 2019-12-25 11:39:05 t 1 1 209317 694 0.00 2019-12-25 11:33:19 2019-12-25 11:42:26 t 1 1 209318 679 0.00 2019-12-25 11:40:16 2019-12-25 11:44:10 t 1 1 209320 578 0.00 2019-12-25 11:28:23 2019-12-25 11:46:53 t 1 1 209322 514 0.00 2019-12-25 09:27:11 2019-12-25 11:47:34 t 1 1 209325 667 0.00 2019-12-25 11:40:15 2019-12-25 11:51:13 t 1 1 209326 625 0.00 2019-12-25 11:37:59 2019-12-25 11:51:14 t 1 1 209327 611 0.00 2019-12-25 11:48:34 2019-12-25 11:52:18 t 1 1 209028 758 0.00 2019-12-25 02:03:35 2019-12-25 02:04:11 t 1 1 209029 758 0.00 2019-12-25 02:06:26 2019-12-25 02:06:37 t 1 1 209035 687 0.00 2019-12-25 01:41:25 2019-12-25 02:18:32 t 1 1 209041 758 0.00 2019-12-25 02:27:26 2019-12-25 02:27:34 t 1 1 209045 758 0.00 2019-12-25 02:28:50 2019-12-25 02:30:56 t 1 1 209046 687 0.00 2019-12-25 02:27:27 2019-12-25 02:33:21 t 1 1 209052 679 0.00 2019-12-25 02:46:58 2019-12-25 03:03:37 t 1 1 209054 711 0.00 2019-12-25 01:36:22 2019-12-25 03:53:31 t 1 1 209055 711 0.00 2019-12-25 03:53:31 2019-12-25 03:56:59 t 1 1 209060 711 0.00 2019-12-25 04:09:28 2019-12-25 04:12:47 t 1 1 209063 711 0.00 2019-12-25 04:20:56 2019-12-25 04:43:25 t 1 1 209067 681 0.00 2019-12-24 23:40:29 2019-12-25 06:35:15 t 1 1 209071 516 0.00 2019-12-25 05:24:16 2019-12-25 06:53:02 t 1 1 209074 514 0.00 2019-12-25 01:06:51 2019-12-25 07:26:09 t 1 1 209078 711 0.00 2019-12-25 07:33:11 2019-12-25 07:34:12 t 1 1 209081 675 0.00 2019-12-25 07:36:32 2019-12-25 07:39:10 t 1 1 209084 763 0.00 2019-12-25 07:47:42 2019-12-25 07:52:19 t 1 1 209092 544 0.00 2019-12-25 08:03:20 2019-12-25 08:05:47 t 1 1 209094 611 0.00 2019-12-25 08:08:56 2019-12-25 08:09:33 t 1 1 209098 566 0.00 2019-12-25 08:00:33 2019-12-25 08:14:27 t 1 1 209107 681 0.00 2019-12-25 06:49:54 2019-12-25 08:25:38 t 1 1 209109 637 0.00 2019-12-25 08:25:30 2019-12-25 08:27:26 t 1 1 209111 707 0.00 2019-12-25 06:57:13 2019-12-25 08:31:12 t 1 1 209112 687 0.00 2019-12-25 08:32:02 2019-12-25 08:32:13 t 1 1 209113 763 0.00 2019-12-25 08:29:29 2019-12-25 08:32:43 t 1 1 209115 763 0.00 2019-12-25 08:32:43 2019-12-25 08:38:43 t 1 1 209118 763 0.00 2019-12-25 08:38:42 2019-12-25 08:44:31 t 1 1 209121 763 0.00 2019-12-25 08:44:30 2019-12-25 08:47:47 t 1 1 209123 611 0.00 2019-12-25 08:26:40 2019-12-25 08:51:29 t 1 1 209125 637 0.00 2019-12-25 08:28:04 2019-12-25 08:51:35 t 1 1 209129 709 0.00 2019-12-25 08:59:23 2019-12-25 09:00:44 t 1 1 209132 687 0.00 2019-12-25 09:03:02 2019-12-25 09:03:46 t 1 1 209138 724 0.00 2019-12-25 09:02:20 2019-12-25 09:12:55 t 1 1 209139 726 0.00 2019-12-25 09:12:19 2019-12-25 09:16:55 t 1 1 209145 637 0.00 2019-12-25 09:11:11 2019-12-25 09:26:13 t 1 1 209146 514 0.00 2019-12-25 07:27:07 2019-12-25 09:26:46 t 1 1 209152 763 0.00 2019-12-25 09:38:14 2019-12-25 09:42:29 t 1 1 209154 611 0.00 2019-12-25 09:24:30 2019-12-25 09:44:07 t 1 1 209158 763 0.00 2019-12-25 09:46:18 2019-12-25 09:49:14 t 1 1 209159 615 0.00 2019-12-25 09:46:49 2019-12-25 09:50:00 t 1 1 209164 763 0.00 2019-12-25 09:54:17 2019-12-25 09:58:24 t 1 1 209166 691 0.00 2019-12-25 09:56:09 2019-12-25 09:59:10 t 1 1 209167 681 0.00 2019-12-25 09:45:32 2019-12-25 09:59:56 t 1 1 209169 724 0.00 2019-12-25 09:12:55 2019-12-25 10:02:23 t 1 1 209172 763 0.00 2019-12-25 10:03:13 2019-12-25 10:05:47 t 1 1 209175 625 0.00 2019-12-25 09:50:16 2019-12-25 10:08:43 t 1 1 209177 538 0.00 2019-12-25 10:04:33 2019-12-25 10:09:21 t 1 1 209192 763 0.00 2019-12-25 10:24:47 2019-12-25 10:25:42 t 1 1 209193 562 0.00 2019-12-25 10:27:05 2019-12-25 10:27:26 t 1 1 209195 763 0.00 2019-12-25 10:25:41 2019-12-25 10:29:00 t 1 1 209199 562 0.00 2019-12-25 10:32:56 2019-12-25 10:33:32 t 1 1 209201 694 0.00 2019-12-25 10:11:39 2019-12-25 10:34:42 t 1 1 209202 763 0.00 2019-12-25 10:29:00 2019-12-25 10:35:00 t 1 1 209203 689 0.00 2019-12-25 10:34:07 2019-12-25 10:35:41 t 1 1 209204 538 0.00 2019-12-25 10:11:03 2019-12-25 10:37:52 t 1 1 209205 763 0.00 2019-12-25 10:34:59 2019-12-25 10:38:07 t 1 1 209215 707 0.00 2019-12-25 09:20:00 2019-12-25 10:47:08 t 1 1 209216 562 0.00 2019-12-25 10:19:55 2019-12-25 10:50:35 t 1 1 209218 562 0.00 2019-12-25 10:53:25 2019-12-25 10:53:48 t 1 1 209223 694 0.00 2019-12-25 10:54:32 2019-12-25 10:55:56 t 1 1 209227 679 0.00 2019-12-25 10:57:28 2019-12-25 10:58:12 t 1 1 209230 694 0.00 2019-12-25 10:56:02 2019-12-25 10:58:48 t 1 1 209231 679 0.00 2019-12-25 10:59:06 2019-12-25 10:59:14 t 1 1 209233 679 0.00 2019-12-25 10:59:33 2019-12-25 10:59:47 t 1 1 209236 679 0.00 2019-12-25 11:00:10 2019-12-25 11:00:12 t 1 1 209240 679 0.00 2019-12-25 11:01:21 2019-12-25 11:02:23 t 1 1 209241 679 0.00 2019-12-25 11:02:31 2019-12-25 11:02:48 t 1 1 209245 679 0.00 2019-12-25 11:04:34 2019-12-25 11:04:55 t 1 1 209248 679 0.00 2019-12-25 11:05:39 2019-12-25 11:05:59 t 1 1 209249 679 0.00 2019-12-25 11:06:23 2019-12-25 11:06:30 t 1 1 209251 679 0.00 2019-12-25 11:06:41 2019-12-25 11:07:02 t 1 1 209252 679 0.00 2019-12-25 11:07:18 2019-12-25 11:08:02 t 1 1 209254 679 0.00 2019-12-25 11:08:45 2019-12-25 11:08:57 t 1 1 209255 611 0.00 2019-12-25 11:08:57 2019-12-25 11:09:01 t 1 1 209257 756 0.00 2019-12-25 09:30:28 2019-12-25 11:09:09 t 1 1 209261 726 0.00 2019-12-25 10:57:38 2019-12-25 11:10:04 t 1 1 209262 671 0.00 2019-12-25 11:08:58 2019-12-25 11:10:58 t 1 1 209267 679 0.00 2019-12-25 11:11:49 2019-12-25 11:12:05 t 1 1 209269 679 0.00 2019-12-25 11:12:20 2019-12-25 11:12:22 t 1 1 209273 679 0.00 2019-12-25 11:13:51 2019-12-25 11:14:11 t 1 1 209279 611 0.00 2019-12-25 11:12:24 2019-12-25 11:16:21 t 1 1 209283 611 0.00 2019-12-25 11:19:07 2019-12-25 11:20:50 t 1 1 209286 562 0.00 2019-12-25 11:22:14 2019-12-25 11:22:36 t 1 1 209287 611 0.00 2019-12-25 11:20:52 2019-12-25 11:23:36 t 1 1 209292 615 0.00 2019-12-25 11:14:12 2019-12-25 11:26:27 t 1 1 209295 578 0.00 2019-12-25 11:09:09 2019-12-25 11:28:23 t 1 1 209296 694 0.00 2019-12-25 11:24:11 2019-12-25 11:28:26 t 1 1 209301 220 0.00 2019-12-25 11:11:32 2019-12-25 11:29:55 t 1 1 209303 615 0.00 2019-12-25 11:26:27 2019-12-25 11:30:16 t 1 1 209304 625 0.00 2019-12-25 11:21:21 2019-12-25 11:30:54 t 1 1 209306 679 0.00 2019-12-25 11:31:52 2019-12-25 11:32:17 t 1 1 209309 679 0.00 2019-12-25 11:32:42 2019-12-25 11:33:15 t 1 1 209311 675 0.00 2019-12-25 11:33:10 2019-12-25 11:34:28 t 1 1 209313 625 0.00 2019-12-25 11:35:52 2019-12-25 11:37:43 t 1 1 209316 220 0.00 2019-12-25 11:29:55 2019-12-25 11:41:21 t 1 1 209323 671 0.00 2019-12-25 11:46:32 2019-12-25 11:48:06 t 1 1 209324 562 0.00 2019-12-25 11:49:21 2019-12-25 11:49:34 t 1 1 209328 578 0.00 2019-12-25 11:51:27 2019-12-25 11:54:16 t 1 1 209329 611 0.00 2019-12-25 11:52:21 2019-12-25 11:56:19 t 1 1 209330 562 0.00 2019-12-25 11:56:10 2019-12-25 11:56:20 t 1 1 209331 683 0.00 2019-12-25 11:15:10 2019-12-25 11:57:12 t 1 1 209332 667 0.00 2019-12-25 11:51:14 2019-12-25 11:59:50 t 1 1 209333 611 0.00 2019-12-25 11:57:46 2019-12-25 12:00:19 t 1 1 209334 683 0.00 2019-12-25 11:57:11 2019-12-25 12:00:39 t 1 1 209335 220 0.00 2019-12-25 11:41:21 2019-12-25 12:01:58 t 1 1 209336 564 0.00 2019-12-25 11:20:57 2019-12-25 12:04:32 t 1 1 209337 730 0.00 2019-12-25 11:58:12 2019-12-25 12:05:15 t 1 1 209338 667 0.00 2019-12-25 11:59:50 2019-12-25 12:05:43 t 1 1 209340 591 0.00 2019-12-25 12:03:06 2019-12-25 12:06:01 t 1 1 209343 562 0.00 2019-12-25 12:08:17 2019-12-25 12:09:55 t 1 1 209346 683 0.00 2019-12-25 12:00:38 2019-12-25 12:10:49 t 1 1 209354 679 0.00 2019-12-25 12:11:54 2019-12-25 12:17:40 t 1 1 209357 562 0.00 2019-12-25 12:19:29 2019-12-25 12:19:52 t 1 1 209359 667 0.00 2019-12-25 12:20:12 2019-12-25 12:20:22 t 1 1 209360 679 0.00 2019-12-25 12:20:30 2019-12-25 12:20:50 t 1 1 209361 615 0.00 2019-12-25 12:07:00 2019-12-25 12:21:25 t 1 1 209363 611 0.00 2019-12-25 12:07:29 2019-12-25 12:21:31 t 1 1 209364 679 0.00 2019-12-25 12:21:35 2019-12-25 12:21:50 t 1 1 209365 675 0.00 2019-12-25 12:21:23 2019-12-25 12:22:51 t 1 1 209370 760 0.00 2019-12-25 12:17:14 2019-12-25 12:25:03 t 1 1 209372 760 0.00 2019-12-25 12:25:03 2019-12-25 12:25:41 t 1 1 209375 611 0.00 2019-12-25 12:21:31 2019-12-25 12:27:52 t 1 1 209377 578 0.00 2019-12-25 12:15:09 2019-12-25 12:27:54 t 1 1 209379 683 0.00 2019-12-25 12:10:49 2019-12-25 12:28:22 t 1 1 209380 637 0.00 2019-12-25 09:26:13 2019-12-25 12:29:27 t 1 1 209383 637 0.00 2019-12-25 12:30:09 2019-12-25 12:31:11 t 1 1 209386 562 0.00 2019-12-25 12:33:09 2019-12-25 12:33:16 t 1 1 209390 562 0.00 2019-12-25 12:35:03 2019-12-25 12:35:13 t 1 1 209392 671 0.00 2019-12-25 12:28:17 2019-12-25 12:36:03 t 1 1 209401 683 0.00 2019-12-25 12:38:56 2019-12-25 12:43:13 t 1 1 209402 622 0.00 2019-12-25 12:13:03 2019-12-25 12:43:38 t 1 1 209403 615 0.00 2019-12-25 12:40:26 2019-12-25 12:43:49 t 1 1 209406 562 0.00 2019-12-25 12:45:25 2019-12-25 12:45:48 t 1 1 209412 516 0.00 2019-12-25 12:48:20 2019-12-25 12:52:35 t 1 1 209418 689 0.00 2019-12-25 10:35:41 2019-12-25 12:56:07 t 1 1 209419 562 0.00 2019-12-25 12:56:43 2019-12-25 12:56:53 t 1 1 209422 637 0.00 2019-12-25 12:46:38 2019-12-25 13:03:55 t 1 1 209425 220 0.00 2019-12-25 12:59:28 2019-12-25 13:06:07 t 1 1 209426 656 0.00 2019-12-25 12:24:27 2019-12-25 13:09:08 t 1 1 209427 637 0.00 2019-12-25 13:03:58 2019-12-25 13:10:31 t 1 1 209429 671 0.00 2019-12-25 13:11:14 2019-12-25 13:12:52 t 1 1 209432 220 0.00 2019-12-25 13:06:07 2019-12-25 13:16:47 t 1 1 209433 538 0.00 2019-12-25 13:11:34 2019-12-25 13:18:09 t 1 1 209444 562 0.00 2019-12-25 13:34:21 2019-12-25 13:34:50 t 1 1 209450 611 0.00 2019-12-25 13:30:49 2019-12-25 13:41:57 t 1 1 209451 679 0.00 2019-12-25 12:59:44 2019-12-25 13:42:41 t 1 1 209453 635 0.00 2019-12-25 13:07:33 2019-12-25 13:43:18 t 1 1 209456 683 0.00 2019-12-25 13:39:34 2019-12-25 13:44:25 t 1 1 209460 763 0.00 2019-12-25 13:47:27 2019-12-25 13:51:00 t 1 1 209461 689 0.00 2019-12-25 13:44:13 2019-12-25 13:51:29 t 1 1 209465 220 0.00 2019-12-25 13:46:02 2019-12-25 13:54:37 t 1 1 209467 683 0.00 2019-12-25 13:44:42 2019-12-25 13:56:41 t 1 1 209470 544 0.00 2019-12-25 13:50:05 2019-12-25 13:58:31 t 1 1 209472 654 0.00 2019-12-25 14:01:51 2019-12-25 14:02:00 t 1 1 209474 622 0.00 2019-12-25 13:33:35 2019-12-25 14:02:55 t 1 1 209475 220 0.00 2019-12-25 13:54:37 2019-12-25 14:04:58 t 1 1 209476 562 0.00 2019-12-25 14:05:59 2019-12-25 14:06:27 t 1 1 209481 220 0.00 2019-12-25 14:04:58 2019-12-25 14:15:29 t 1 1 209486 611 0.00 2019-12-25 14:13:44 2019-12-25 14:21:15 t 1 1 209490 683 0.00 2019-12-25 14:09:01 2019-12-25 14:27:54 t 1 1 209492 656 0.00 2019-12-25 14:13:27 2019-12-25 14:29:55 t 1 1 209493 220 0.00 2019-12-25 14:15:29 2019-12-25 14:30:39 t 1 1 209498 637 0.00 2019-12-25 14:39:40 2019-12-25 14:41:45 t 1 1 209499 637 0.00 2019-12-25 14:41:44 2019-12-25 14:43:11 t 1 1 209501 679 0.00 2019-12-25 14:27:14 2019-12-25 14:44:53 t 1 1 209503 679 0.00 2019-12-25 14:44:53 2019-12-25 14:49:11 t 1 1 209504 562 0.00 2019-12-25 14:48:51 2019-12-25 14:49:52 t 1 1 209506 679 0.00 2019-12-25 14:50:07 2019-12-25 14:50:37 t 1 1 209511 679 0.00 2019-12-25 14:52:58 2019-12-25 14:53:13 t 1 1 209519 679 0.00 2019-12-25 15:00:55 2019-12-25 15:01:56 t 1 1 209525 591 0.00 2019-12-25 14:42:05 2019-12-25 15:06:28 t 1 1 209526 679 0.00 2019-12-25 15:06:58 2019-12-25 15:06:59 t 1 1 209527 679 0.00 2019-12-25 15:07:41 2019-12-25 15:07:55 t 1 1 209529 562 0.00 2019-12-25 15:06:34 2019-12-25 15:08:00 t 1 1 209530 679 0.00 2019-12-25 15:08:54 2019-12-25 15:09:26 t 1 1 209533 562 0.00 2019-12-25 15:12:12 2019-12-25 15:12:49 t 1 1 209534 679 0.00 2019-12-25 15:10:37 2019-12-25 15:13:41 t 1 1 209539 627 0.00 2019-12-25 15:03:05 2019-12-25 15:16:41 t 1 1 209541 679 0.00 2019-12-25 15:18:38 2019-12-25 15:18:41 t 1 1 209542 679 0.00 2019-12-25 15:21:28 2019-12-25 15:21:47 t 1 1 209545 679 0.00 2019-12-25 15:22:56 2019-12-25 15:22:58 t 1 1 209546 562 0.00 2019-12-25 15:23:13 2019-12-25 15:23:31 t 1 1 209551 748 0.00 2019-12-25 15:25:03 2019-12-25 15:25:11 t 1 1 209552 748 0.00 2019-12-25 15:25:23 2019-12-25 15:25:50 t 1 1 209553 748 0.00 2019-12-25 15:26:18 2019-12-25 15:26:19 t 1 1 209555 220 0.00 2019-12-25 15:11:05 2019-12-25 15:27:13 t 1 1 209556 748 0.00 2019-12-25 15:28:58 2019-12-25 15:29:25 t 1 1 209557 728 0.00 2019-12-25 15:23:58 2019-12-25 15:30:02 t 1 1 209558 562 0.00 2019-12-25 15:30:09 2019-12-25 15:30:30 t 1 1 209562 637 0.00 2019-12-25 15:25:08 2019-12-25 15:37:42 t 1 1 209563 748 0.00 2019-12-25 15:39:25 2019-12-25 15:39:52 t 1 1 209564 562 0.00 2019-12-25 15:40:13 2019-12-25 15:40:29 t 1 1 209565 516 0.00 2019-12-25 15:37:14 2019-12-25 15:42:02 t 1 1 209566 544 0.00 2019-12-25 15:26:10 2019-12-25 15:43:22 t 1 1 209568 689 0.00 2019-12-25 14:06:42 2019-12-25 15:45:08 t 1 1 209569 756 0.00 2019-12-25 12:49:28 2019-12-25 15:46:29 t 1 1 209575 679 0.00 2019-12-25 15:27:35 2019-12-25 15:50:24 t 1 1 209576 748 0.00 2019-12-25 15:49:03 2019-12-25 15:50:30 t 1 1 209578 637 0.00 2019-12-25 15:37:42 2019-12-25 15:53:16 t 1 1 209579 748 0.00 2019-12-25 15:51:43 2019-12-25 15:55:24 t 1 1 209582 763 0.00 2019-12-25 15:52:45 2019-12-25 15:56:18 t 1 1 209583 656 0.00 2019-12-25 15:44:03 2019-12-25 15:57:13 t 1 1 209584 562 0.00 2019-12-25 15:57:18 2019-12-25 15:57:33 t 1 1 209587 611 0.00 2019-12-25 15:59:56 2019-12-25 16:01:35 t 1 1 209590 611 0.00 2019-12-25 16:01:35 2019-12-25 16:03:12 t 1 1 209591 748 0.00 2019-12-25 16:03:01 2019-12-25 16:03:56 t 1 1 209593 748 0.00 2019-12-25 16:03:59 2019-12-25 16:04:39 t 1 1 209603 562 0.00 2019-12-25 16:21:06 2019-12-25 16:21:21 t 1 1 209604 671 0.00 2019-12-25 16:19:05 2019-12-25 16:23:15 t 1 1 209605 637 0.00 2019-12-25 16:19:47 2019-12-25 16:28:31 t 1 1 209607 562 0.00 2019-12-25 16:30:59 2019-12-25 16:31:18 t 1 1 209610 726 0.00 2019-12-25 16:28:47 2019-12-25 16:34:45 t 1 1 209613 562 0.00 2019-12-25 16:38:16 2019-12-25 16:38:44 t 1 1 209621 726 0.00 2019-12-25 16:49:07 2019-12-25 16:49:11 t 1 1 209339 724 0.00 2019-12-25 11:59:15 2019-12-25 12:05:56 t 1 1 209341 562 0.00 2019-12-25 12:06:46 2019-12-25 12:07:09 t 1 1 209342 724 0.00 2019-12-25 12:06:18 2019-12-25 12:07:58 t 1 1 209345 667 0.00 2019-12-25 12:05:43 2019-12-25 12:10:07 t 1 1 209347 667 0.00 2019-12-25 12:10:07 2019-12-25 12:12:55 t 1 1 209350 578 0.00 2019-12-25 11:54:21 2019-12-25 12:15:09 t 1 1 209351 625 0.00 2019-12-25 11:52:23 2019-12-25 12:16:07 t 1 1 209353 694 0.00 2019-12-25 11:42:26 2019-12-25 12:16:16 t 1 1 209362 679 0.00 2019-12-25 12:20:57 2019-12-25 12:21:27 t 1 1 209371 679 0.00 2019-12-25 12:25:08 2019-12-25 12:25:18 t 1 1 209374 694 0.00 2019-12-25 12:16:15 2019-12-25 12:27:48 t 1 1 209378 679 0.00 2019-12-25 12:25:38 2019-12-25 12:28:20 t 1 1 209381 631 0.00 2019-12-25 12:28:58 2019-12-25 12:30:11 t 1 1 209389 760 0.00 2019-12-25 12:25:40 2019-12-25 12:34:41 t 1 1 209391 683 0.00 2019-12-25 12:33:55 2019-12-25 12:35:32 t 1 1 209397 562 0.00 2019-12-25 12:38:42 2019-12-25 12:39:00 t 1 1 209398 667 0.00 2019-12-25 12:38:58 2019-12-25 12:39:29 t 1 1 209400 760 0.00 2019-12-25 12:41:45 2019-12-25 12:42:45 t 1 1 209405 637 0.00 2019-12-25 12:31:10 2019-12-25 12:45:48 t 1 1 209409 756 0.00 2019-12-25 12:33:40 2019-12-25 12:49:29 t 1 1 209410 538 0.00 2019-12-25 12:44:14 2019-12-25 12:51:03 t 1 1 209411 760 0.00 2019-12-25 12:50:22 2019-12-25 12:52:28 t 1 1 209414 562 0.00 2019-12-25 12:53:17 2019-12-25 12:53:36 t 1 1 209415 694 0.00 2019-12-25 12:27:48 2019-12-25 12:54:06 t 1 1 209416 622 0.00 2019-12-25 12:43:38 2019-12-25 12:55:18 t 1 1 209417 220 0.00 2019-12-25 12:53:42 2019-12-25 12:56:01 t 1 1 209421 562 0.00 2019-12-25 13:01:03 2019-12-25 13:01:06 t 1 1 209424 562 0.00 2019-12-25 13:05:18 2019-12-25 13:05:34 t 1 1 209428 538 0.00 2019-12-25 13:09:29 2019-12-25 13:12:29 t 1 1 209430 683 0.00 2019-12-25 12:43:34 2019-12-25 13:16:10 t 1 1 209434 544 0.00 2019-12-25 11:28:36 2019-12-25 13:19:24 t 1 1 209435 689 0.00 2019-12-25 12:58:19 2019-12-25 13:20:07 t 1 1 209436 683 0.00 2019-12-25 13:16:13 2019-12-25 13:21:04 t 1 1 209438 562 0.00 2019-12-25 13:23:40 2019-12-25 13:24:06 t 1 1 209443 220 0.00 2019-12-25 13:23:14 2019-12-25 13:34:21 t 1 1 209446 578 0.00 2019-12-25 12:27:54 2019-12-25 13:37:18 t 1 1 209447 637 0.00 2019-12-25 13:32:30 2019-12-25 13:37:55 t 1 1 209452 675 0.00 2019-12-25 13:41:51 2019-12-25 13:43:16 t 1 1 209454 689 0.00 2019-12-25 13:20:07 2019-12-25 13:44:13 t 1 1 209455 656 0.00 2019-12-25 13:35:22 2019-12-25 13:44:24 t 1 1 209458 220 0.00 2019-12-25 13:34:21 2019-12-25 13:46:02 t 1 1 209459 763 0.00 2019-12-25 13:46:13 2019-12-25 13:47:28 t 1 1 209462 562 0.00 2019-12-25 13:52:07 2019-12-25 13:52:23 t 1 1 209464 763 0.00 2019-12-25 13:51:00 2019-12-25 13:53:19 t 1 1 209466 656 0.00 2019-12-25 13:44:23 2019-12-25 13:55:24 t 1 1 209469 562 0.00 2019-12-25 13:57:59 2019-12-25 13:58:27 t 1 1 209471 611 0.00 2019-12-25 13:41:57 2019-12-25 14:01:53 t 1 1 209477 689 0.00 2019-12-25 13:51:29 2019-12-25 14:06:42 t 1 1 209479 656 0.00 2019-12-25 13:55:24 2019-12-25 14:13:27 t 1 1 209484 637 0.00 2019-12-25 13:45:26 2019-12-25 14:19:29 t 1 1 209488 564 0.00 2019-12-25 14:01:44 2019-12-25 14:23:58 t 1 1 209491 562 0.00 2019-12-25 14:27:26 2019-12-25 14:28:01 t 1 1 209496 637 0.00 2019-12-25 14:19:29 2019-12-25 14:39:40 t 1 1 209502 742 0.00 2019-12-25 14:46:36 2019-12-25 14:47:20 t 1 1 209509 490 0.00 2019-12-25 14:49:56 2019-12-25 14:52:38 t 1 1 209512 538 0.00 2019-12-25 14:39:59 2019-12-25 14:53:37 t 1 1 209514 562 0.00 2019-12-25 14:55:49 2019-12-25 14:56:01 t 1 1 209515 679 0.00 2019-12-25 14:55:54 2019-12-25 14:57:49 t 1 1 209517 679 0.00 2019-12-25 15:00:27 2019-12-25 15:00:45 t 1 1 209520 679 0.00 2019-12-25 15:03:37 2019-12-25 15:03:46 t 1 1 209522 679 0.00 2019-12-25 15:04:43 2019-12-25 15:04:48 t 1 1 209538 562 0.00 2019-12-25 15:14:36 2019-12-25 15:16:00 t 1 1 209540 679 0.00 2019-12-25 15:16:11 2019-12-25 15:16:42 t 1 1 209548 728 0.00 2019-12-25 15:07:57 2019-12-25 15:23:58 t 1 1 209550 679 0.00 2019-12-25 15:24:31 2019-12-25 15:24:44 t 1 1 209554 679 0.00 2019-12-25 15:25:03 2019-12-25 15:27:12 t 1 1 209560 656 0.00 2019-12-25 15:16:29 2019-12-25 15:30:39 t 1 1 209561 748 0.00 2019-12-25 15:34:27 2019-12-25 15:36:02 t 1 1 209567 656 0.00 2019-12-25 15:31:24 2019-12-25 15:44:03 t 1 1 209570 591 0.00 2019-12-25 15:19:46 2019-12-25 15:46:43 t 1 1 209572 615 0.00 2019-12-25 15:41:38 2019-12-25 15:46:53 t 1 1 209573 748 0.00 2019-12-25 15:46:43 2019-12-25 15:47:50 t 1 1 209574 748 0.00 2019-12-25 15:48:03 2019-12-25 15:48:30 t 1 1 209580 748 0.00 2019-12-25 15:55:24 2019-12-25 15:55:34 t 1 1 209585 748 0.00 2019-12-25 15:56:31 2019-12-25 15:58:54 t 1 1 209586 748 0.00 2019-12-25 15:59:03 2019-12-25 16:00:38 t 1 1 209595 748 0.00 2019-12-25 16:04:38 2019-12-25 16:06:37 t 1 1 209596 562 0.00 2019-12-25 16:07:57 2019-12-25 16:08:13 t 1 1 209598 637 0.00 2019-12-25 16:02:01 2019-12-25 16:10:32 t 1 1 209599 562 0.00 2019-12-25 16:13:05 2019-12-25 16:14:34 t 1 1 209602 637 0.00 2019-12-25 16:10:32 2019-12-25 16:19:47 t 1 1 209606 726 0.00 2019-12-25 16:17:26 2019-12-25 16:28:47 t 1 1 209608 660 0.00 2019-12-25 16:19:42 2019-12-25 16:31:37 t 1 1 209609 220 0.00 2019-12-25 16:26:58 2019-12-25 16:33:32 t 1 1 209611 562 0.00 2019-12-25 16:34:12 2019-12-25 16:34:49 t 1 1 209614 726 0.00 2019-12-25 16:34:45 2019-12-25 16:40:46 t 1 1 209615 724 0.00 2019-12-25 16:42:19 2019-12-25 16:43:41 t 1 1 209618 726 0.00 2019-12-25 16:40:46 2019-12-25 16:48:16 t 1 1 209619 726 0.00 2019-12-25 16:48:52 2019-12-25 16:48:58 t 1 1 209622 562 0.00 2019-12-25 16:49:07 2019-12-25 16:49:25 t 1 1 209623 578 0.00 2019-12-25 14:50:51 2019-12-25 16:49:35 t 1 1 209624 763 0.00 2019-12-25 16:46:34 2019-12-25 16:50:19 t 1 1 209627 763 0.00 2019-12-25 16:50:19 2019-12-25 16:56:56 t 1 1 209632 763 0.00 2019-12-25 16:56:56 2019-12-25 17:02:29 t 1 1 209634 724 0.00 2019-12-25 16:49:24 2019-12-25 17:04:29 t 1 1 209635 763 0.00 2019-12-25 17:02:29 2019-12-25 17:05:24 t 1 1 209637 756 0.00 2019-12-25 16:38:43 2019-12-25 17:05:31 t 1 1 209640 763 0.00 2019-12-25 17:05:23 2019-12-25 17:07:21 t 1 1 209644 679 0.00 2019-12-25 16:52:46 2019-12-25 17:11:49 t 1 1 209645 687 0.00 2019-12-25 17:06:09 2019-12-25 17:12:11 t 1 1 209648 722 0.00 2019-12-25 17:01:37 2019-12-25 17:14:34 t 1 1 209649 763 0.00 2019-12-25 17:14:11 2019-12-25 17:15:29 t 1 1 209656 756 0.00 2019-12-25 17:07:55 2019-12-25 17:21:12 t 1 1 209658 722 0.00 2019-12-25 17:21:19 2019-12-25 17:21:25 t 1 1 209663 679 0.00 2019-12-25 17:11:49 2019-12-25 17:25:05 t 1 1 209665 763 0.00 2019-12-25 17:19:56 2019-12-25 17:25:16 t 1 1 209669 722 0.00 2019-12-25 17:27:35 2019-12-25 17:27:42 t 1 1 209344 730 0.00 2019-12-25 12:09:46 2019-12-25 12:09:57 t 1 1 209348 562 0.00 2019-12-25 12:12:31 2019-12-25 12:13:07 t 1 1 209349 562 0.00 2019-12-25 12:13:23 2019-12-25 12:13:30 t 1 1 209352 538 0.00 2019-12-25 11:59:09 2019-12-25 12:16:16 t 1 1 209355 220 0.00 2019-12-25 12:01:58 2019-12-25 12:18:06 t 1 1 209356 679 0.00 2019-12-25 12:18:09 2019-12-25 12:18:52 t 1 1 209358 679 0.00 2019-12-25 12:19:29 2019-12-25 12:19:53 t 1 1 209366 679 0.00 2019-12-25 12:22:19 2019-12-25 12:23:00 t 1 1 209367 679 0.00 2019-12-25 12:23:38 2019-12-25 12:23:54 t 1 1 209368 656 0.00 2019-12-25 12:13:34 2019-12-25 12:24:27 t 1 1 209369 679 0.00 2019-12-25 12:24:38 2019-12-25 12:24:59 t 1 1 209373 679 0.00 2019-12-25 12:27:39 2019-12-25 12:27:43 t 1 1 209376 667 0.00 2019-12-25 12:27:44 2019-12-25 12:27:52 t 1 1 209382 562 0.00 2019-12-25 12:30:11 2019-12-25 12:30:48 t 1 1 209384 707 0.00 2019-12-25 11:22:56 2019-12-25 12:31:17 t 1 1 209385 756 0.00 2019-12-25 11:46:52 2019-12-25 12:33:03 t 1 1 209387 724 0.00 2019-12-25 12:08:28 2019-12-25 12:33:23 t 1 1 209388 611 0.00 2019-12-25 12:27:44 2019-12-25 12:34:31 t 1 1 209393 514 0.00 2019-12-25 11:47:34 2019-12-25 12:36:10 t 1 1 209394 611 0.00 2019-12-25 12:35:08 2019-12-25 12:36:31 t 1 1 209395 611 0.00 2019-12-25 12:37:06 2019-12-25 12:37:57 t 1 1 209396 667 0.00 2019-12-25 12:38:15 2019-12-25 12:38:28 t 1 1 209399 760 0.00 2019-12-25 12:34:41 2019-12-25 12:41:40 t 1 1 209404 562 0.00 2019-12-25 12:43:47 2019-12-25 12:45:00 t 1 1 209407 611 0.00 2019-12-25 12:40:14 2019-12-25 12:46:19 t 1 1 209408 760 0.00 2019-12-25 12:42:45 2019-12-25 12:49:22 t 1 1 209413 514 0.00 2019-12-25 12:36:29 2019-12-25 12:53:13 t 1 1 209420 679 0.00 2019-12-25 12:45:18 2019-12-25 12:59:44 t 1 1 209423 622 0.00 2019-12-25 12:55:18 2019-12-25 13:04:54 t 1 1 209431 562 0.00 2019-12-25 13:15:57 2019-12-25 13:16:24 t 1 1 209437 220 0.00 2019-12-25 13:16:47 2019-12-25 13:23:14 t 1 1 209439 637 0.00 2019-12-25 13:14:09 2019-12-25 13:27:59 t 1 1 209440 611 0.00 2019-12-25 13:22:40 2019-12-25 13:30:49 t 1 1 209441 637 0.00 2019-12-25 13:28:25 2019-12-25 13:32:17 t 1 1 209442 622 0.00 2019-12-25 13:04:54 2019-12-25 13:33:19 t 1 1 209445 656 0.00 2019-12-25 13:09:52 2019-12-25 13:35:22 t 1 1 209448 726 0.00 2019-12-25 13:24:29 2019-12-25 13:38:38 t 1 1 209449 683 0.00 2019-12-25 13:25:47 2019-12-25 13:39:30 t 1 1 209457 562 0.00 2019-12-25 13:45:13 2019-12-25 13:45:49 t 1 1 209463 516 0.00 2019-12-25 13:14:06 2019-12-25 13:52:45 t 1 1 209468 679 0.00 2019-12-25 13:42:41 2019-12-25 13:57:19 t 1 1 209473 671 0.00 2019-12-25 13:59:28 2019-12-25 14:02:27 t 1 1 209478 671 0.00 2019-12-25 14:03:53 2019-12-25 14:07:35 t 1 1 209480 611 0.00 2019-12-25 14:03:12 2019-12-25 14:13:44 t 1 1 209482 562 0.00 2019-12-25 14:16:45 2019-12-25 14:17:04 t 1 1 209483 544 0.00 2019-12-25 14:05:26 2019-12-25 14:18:56 t 1 1 209485 591 0.00 2019-12-25 12:53:23 2019-12-25 14:20:13 t 1 1 209487 649 0.00 2019-12-25 14:11:48 2019-12-25 14:23:30 t 1 1 209489 578 0.00 2019-12-25 13:37:18 2019-12-25 14:26:30 t 1 1 209494 707 0.00 2019-12-25 13:22:05 2019-12-25 14:32:28 t 1 1 209495 562 0.00 2019-12-25 14:38:08 2019-12-25 14:38:31 t 1 1 209497 578 0.00 2019-12-25 14:26:30 2019-12-25 14:40:23 t 1 1 209500 220 0.00 2019-12-25 14:30:39 2019-12-25 14:43:15 t 1 1 209505 562 0.00 2019-12-25 14:50:02 2019-12-25 14:50:09 t 1 1 209507 578 0.00 2019-12-25 14:40:23 2019-12-25 14:50:51 t 1 1 209508 683 0.00 2019-12-25 14:27:59 2019-12-25 14:52:07 t 1 1 209510 679 0.00 2019-12-25 14:52:42 2019-12-25 14:52:50 t 1 1 209513 679 0.00 2019-12-25 14:55:15 2019-12-25 14:55:20 t 1 1 209516 679 0.00 2019-12-25 14:59:36 2019-12-25 14:59:43 t 1 1 209518 679 0.00 2019-12-25 15:00:08 2019-12-25 15:00:55 t 1 1 209521 490 0.00 2019-12-25 14:52:38 2019-12-25 15:04:10 t 1 1 209523 671 0.00 2019-12-25 15:03:50 2019-12-25 15:05:12 t 1 1 209524 679 0.00 2019-12-25 15:05:38 2019-12-25 15:06:05 t 1 1 209528 728 0.00 2019-12-25 14:54:17 2019-12-25 15:07:57 t 1 1 209531 679 0.00 2019-12-25 15:10:02 2019-12-25 15:10:05 t 1 1 209532 220 0.00 2019-12-25 14:43:15 2019-12-25 15:11:05 t 1 1 209535 562 0.00 2019-12-25 15:13:40 2019-12-25 15:13:58 t 1 1 209536 656 0.00 2019-12-25 14:29:55 2019-12-25 15:14:34 t 1 1 209537 709 0.00 2019-12-25 15:05:01 2019-12-25 15:15:50 t 1 1 209543 544 0.00 2019-12-25 14:19:11 2019-12-25 15:21:54 t 1 1 209544 679 0.00 2019-12-25 15:22:32 2019-12-25 15:22:47 t 1 1 209547 627 0.00 2019-12-25 15:16:41 2019-12-25 15:23:38 t 1 1 209549 748 0.00 2019-12-25 15:20:32 2019-12-25 15:24:22 t 1 1 209559 516 0.00 2019-12-25 15:27:47 2019-12-25 15:30:33 t 1 1 209571 562 0.00 2019-12-25 15:46:29 2019-12-25 15:46:53 t 1 1 209577 748 0.00 2019-12-25 15:50:30 2019-12-25 15:51:14 t 1 1 209581 748 0.00 2019-12-25 15:56:05 2019-12-25 15:56:12 t 1 1 209588 637 0.00 2019-12-25 15:53:16 2019-12-25 16:02:01 t 1 1 209589 763 0.00 2019-12-25 15:56:18 2019-12-25 16:02:40 t 1 1 209592 748 0.00 2019-12-25 16:01:03 2019-12-25 16:03:57 t 1 1 209594 615 0.00 2019-12-25 15:46:53 2019-12-25 16:04:54 t 1 1 209597 611 0.00 2019-12-25 16:03:17 2019-12-25 16:08:41 t 1 1 209600 707 0.00 2019-12-25 15:20:47 2019-12-25 16:16:27 t 1 1 209601 726 0.00 2019-12-25 16:05:01 2019-12-25 16:17:26 t 1 1 209612 681 0.00 2019-12-25 16:12:52 2019-12-25 16:38:01 t 1 1 209616 615 0.00 2019-12-25 16:37:54 2019-12-25 16:44:53 t 1 1 209617 763 0.00 2019-12-25 16:44:24 2019-12-25 16:46:02 t 1 1 209620 615 0.00 2019-12-25 16:44:53 2019-12-25 16:49:07 t 1 1 209625 516 0.00 2019-12-25 16:39:10 2019-12-25 16:51:07 t 1 1 209636 611 0.00 2019-12-25 16:59:26 2019-12-25 17:05:28 t 1 1 209642 516 0.00 2019-12-25 17:01:29 2019-12-25 17:09:32 t 1 1 209647 763 0.00 2019-12-25 17:07:43 2019-12-25 17:14:34 t 1 1 209651 711 0.00 2019-12-25 15:42:22 2019-12-25 17:15:36 t 1 1 209653 675 0.00 2019-12-25 17:10:33 2019-12-25 17:19:43 t 1 1 209662 722 0.00 2019-12-25 17:24:31 2019-12-25 17:24:38 t 1 1 209664 722 0.00 2019-12-25 17:25:07 2019-12-25 17:25:15 t 1 1 209667 724 0.00 2019-12-25 17:23:55 2019-12-25 17:26:08 t 1 1 209670 763 0.00 2019-12-25 17:25:27 2019-12-25 17:28:19 t 1 1 209673 722 0.00 2019-12-25 17:28:54 2019-12-25 17:29:11 t 1 1 209682 763 0.00 2019-12-25 17:32:31 2019-12-25 17:39:30 t 1 1 209685 615 0.00 2019-12-25 17:34:19 2019-12-25 17:41:16 t 1 1 209687 562 0.00 2019-12-25 17:40:07 2019-12-25 17:42:13 t 1 1 209689 671 0.00 2019-12-25 17:40:16 2019-12-25 17:43:26 t 1 1 209691 763 0.00 2019-12-25 17:43:57 2019-12-25 17:47:42 t 1 1 209698 763 0.00 2019-12-25 17:51:21 2019-12-25 17:54:05 t 1 1 209699 707 0.00 2019-12-25 17:04:30 2019-12-25 17:54:55 t 1 1 209702 763 0.00 2019-12-25 17:54:05 2019-12-25 17:58:52 t 1 1 209626 675 0.00 2019-12-25 16:38:01 2019-12-25 16:56:28 t 1 1 209628 615 0.00 2019-12-25 16:52:12 2019-12-25 16:57:01 t 1 1 209629 611 0.00 2019-12-25 16:44:27 2019-12-25 16:58:48 t 1 1 209630 562 0.00 2019-12-25 16:59:49 2019-12-25 17:00:05 t 1 1 209631 516 0.00 2019-12-25 16:51:07 2019-12-25 17:01:29 t 1 1 209633 683 0.00 2019-12-25 14:52:13 2019-12-25 17:02:57 t 1 1 209638 687 0.00 2019-12-25 16:30:35 2019-12-25 17:06:09 t 1 1 209639 683 0.00 2019-12-25 17:03:24 2019-12-25 17:06:30 t 1 1 209641 756 0.00 2019-12-25 17:07:16 2019-12-25 17:07:56 t 1 1 209643 562 0.00 2019-12-25 17:10:33 2019-12-25 17:10:48 t 1 1 209646 687 0.00 2019-12-25 17:12:11 2019-12-25 17:13:37 t 1 1 209650 732 0.00 2019-12-25 17:12:40 2019-12-25 17:15:32 t 1 1 209652 562 0.00 2019-12-25 17:19:15 2019-12-25 17:19:42 t 1 1 209654 763 0.00 2019-12-25 17:15:51 2019-12-25 17:19:57 t 1 1 209655 656 0.00 2019-12-25 16:59:05 2019-12-25 17:20:45 t 1 1 209657 722 0.00 2019-12-25 17:14:35 2019-12-25 17:21:14 t 1 1 209659 722 0.00 2019-12-25 17:23:12 2019-12-25 17:23:16 t 1 1 209660 711 0.00 2019-12-25 17:15:36 2019-12-25 17:23:44 t 1 1 209661 722 0.00 2019-12-25 17:23:21 2019-12-25 17:24:24 t 1 1 209666 722 0.00 2019-12-25 17:25:20 2019-12-25 17:25:53 t 1 1 209668 722 0.00 2019-12-25 17:27:01 2019-12-25 17:27:28 t 1 1 209672 722 0.00 2019-12-25 17:28:36 2019-12-25 17:28:55 t 1 1 209677 711 0.00 2019-12-25 17:23:44 2019-12-25 17:31:12 t 1 1 209678 763 0.00 2019-12-25 17:29:59 2019-12-25 17:31:21 t 1 1 209679 763 0.00 2019-12-25 17:31:23 2019-12-25 17:32:11 t 1 1 209680 722 0.00 2019-12-25 17:31:18 2019-12-25 17:35:16 t 1 1 209681 667 0.00 2019-12-25 17:30:38 2019-12-25 17:36:35 t 1 1 209683 667 0.00 2019-12-25 17:38:15 2019-12-25 17:39:45 t 1 1 209684 711 0.00 2019-12-25 17:31:12 2019-12-25 17:40:19 t 1 1 209688 732 0.00 2019-12-25 17:16:16 2019-12-25 17:43:16 t 1 1 209690 763 0.00 2019-12-25 17:39:30 2019-12-25 17:43:57 t 1 1 209692 622 0.00 2019-12-25 17:40:50 2019-12-25 17:49:57 t 1 1 209694 687 0.00 2019-12-25 17:33:09 2019-12-25 17:50:38 t 1 1 209695 562 0.00 2019-12-25 17:50:50 2019-12-25 17:51:11 t 1 1 209701 687 0.00 2019-12-25 17:50:38 2019-12-25 17:58:14 t 1 1 209712 667 0.00 2019-12-25 18:09:06 2019-12-25 18:11:04 t 1 1 209716 681 0.00 2019-12-25 18:05:02 2019-12-25 18:13:13 t 1 1 209718 763 0.00 2019-12-25 18:11:04 2019-12-25 18:14:02 t 1 1 209720 683 0.00 2019-12-25 18:02:45 2019-12-25 18:15:37 t 1 1 209722 671 0.00 2019-12-25 18:11:46 2019-12-25 18:15:59 t 1 1 209724 220 0.00 2019-12-25 18:03:24 2019-12-25 18:17:00 t 1 1 209725 763 0.00 2019-12-25 18:14:01 2019-12-25 18:17:16 t 1 1 209732 763 0.00 2019-12-25 18:20:39 2019-12-25 18:22:43 t 1 1 209733 671 0.00 2019-12-25 18:16:12 2019-12-25 18:23:56 t 1 1 209738 687 0.00 2019-12-25 18:29:14 2019-12-25 18:29:21 t 1 1 209740 615 0.00 2019-12-25 18:23:59 2019-12-25 18:30:48 t 1 1 209744 615 0.00 2019-12-25 18:30:48 2019-12-25 18:31:56 t 1 1 209745 694 0.00 2019-12-25 18:31:47 2019-12-25 18:32:54 t 1 1 209747 637 0.00 2019-12-25 18:06:01 2019-12-25 18:35:20 t 1 1 209748 722 0.00 2019-12-25 18:20:34 2019-12-25 18:36:24 t 1 1 209752 683 0.00 2019-12-25 18:31:16 2019-12-25 18:38:47 t 1 1 209755 656 0.00 2019-12-25 18:31:05 2019-12-25 18:43:44 t 1 1 209758 722 0.00 2019-12-25 18:45:07 2019-12-25 18:45:44 t 1 1 209760 615 0.00 2019-12-25 18:40:25 2019-12-25 18:46:35 t 1 1 209761 683 0.00 2019-12-25 18:38:47 2019-12-25 18:48:18 t 1 1 209762 656 0.00 2019-12-25 18:43:44 2019-12-25 18:48:29 t 1 1 209770 611 0.00 2019-12-25 19:02:23 2019-12-25 19:04:01 t 1 1 209772 711 0.00 2019-12-25 17:40:19 2019-12-25 19:05:55 t 1 1 209780 622 0.00 2019-12-25 18:56:27 2019-12-25 19:11:04 t 1 1 209783 687 0.00 2019-12-25 19:07:08 2019-12-25 19:12:18 t 1 1 209785 675 0.00 2019-12-25 19:11:56 2019-12-25 19:13:44 t 1 1 209791 656 0.00 2019-12-25 19:19:27 2019-12-25 19:20:34 t 1 1 209794 683 0.00 2019-12-25 18:48:18 2019-12-25 19:21:48 t 1 1 209804 656 0.00 2019-12-25 19:26:18 2019-12-25 19:29:09 t 1 1 209806 551 0.00 2019-12-25 19:24:12 2019-12-25 19:30:28 t 1 1 209810 728 0.00 2019-12-25 19:35:25 2019-12-25 19:37:01 t 1 1 209812 679 0.00 2019-12-25 19:23:33 2019-12-25 19:39:38 t 1 1 209814 562 0.00 2019-12-25 19:40:20 2019-12-25 19:40:29 t 1 1 209817 683 0.00 2019-12-25 19:21:52 2019-12-25 19:45:04 t 1 1 209820 687 0.00 2019-12-25 19:17:33 2019-12-25 19:45:59 t 1 1 209823 681 0.00 2019-12-25 19:45:42 2019-12-25 19:47:55 t 1 1 209825 551 0.00 2019-12-25 19:36:47 2019-12-25 19:48:35 t 1 1 209827 724 0.00 2019-12-25 18:08:20 2019-12-25 19:50:47 t 1 1 209828 564 0.00 2019-12-25 19:34:56 2019-12-25 19:51:31 t 1 1 209830 763 0.00 2019-12-25 19:49:16 2019-12-25 19:52:09 t 1 1 209835 562 0.00 2019-12-25 19:53:31 2019-12-25 19:53:48 t 1 1 209838 709 0.00 2019-12-25 19:48:55 2019-12-25 19:56:43 t 1 1 209840 564 0.00 2019-12-25 19:52:43 2019-12-25 19:56:54 t 1 1 209846 625 0.00 2019-12-25 19:41:07 2019-12-25 20:00:07 t 1 1 209848 763 0.00 2019-12-25 19:57:03 2019-12-25 20:00:19 t 1 1 209851 763 0.00 2019-12-25 20:00:18 2019-12-25 20:03:42 t 1 1 209853 551 0.00 2019-12-25 19:56:50 2019-12-25 20:06:21 t 1 1 209854 667 0.00 2019-12-25 19:58:50 2019-12-25 20:06:40 t 1 1 209856 763 0.00 2019-12-25 20:03:43 2019-12-25 20:08:12 t 1 1 209858 591 0.00 2019-12-25 18:03:19 2019-12-25 20:10:32 t 1 1 209867 675 0.00 2019-12-25 20:10:39 2019-12-25 20:20:04 t 1 1 209868 637 0.00 2019-12-25 20:03:19 2019-12-25 20:21:10 t 1 1 209873 635 0.00 2019-12-25 20:20:59 2019-12-25 20:27:14 t 1 1 209874 667 0.00 2019-12-25 20:27:35 2019-12-25 20:28:06 t 1 1 209878 551 0.00 2019-12-25 20:24:22 2019-12-25 20:31:51 t 1 1 209882 562 0.00 2019-12-25 20:39:44 2019-12-25 20:40:10 t 1 1 209885 687 0.00 2019-12-25 20:40:02 2019-12-25 20:49:35 t 1 1 209890 637 0.00 2019-12-25 20:32:54 2019-12-25 20:59:32 t 1 1 209895 562 0.00 2019-12-25 21:05:48 2019-12-25 21:06:12 t 1 1 209897 724 0.00 2019-12-25 20:31:50 2019-12-25 21:08:50 t 1 1 209899 748 0.00 2019-12-25 21:03:01 2019-12-25 21:09:58 t 1 1 209901 742 0.00 2019-12-25 20:57:56 2019-12-25 21:11:30 t 1 1 209903 748 0.00 2019-12-25 21:13:00 2019-12-25 21:13:07 t 1 1 209909 675 0.00 2019-12-25 21:09:26 2019-12-25 21:16:16 t 1 1 209911 763 0.00 2019-12-25 21:15:35 2019-12-25 21:17:00 t 1 1 209918 675 0.00 2019-12-25 21:18:13 2019-12-25 21:20:30 t 1 1 209921 724 0.00 2019-12-25 21:08:50 2019-12-25 21:21:33 t 1 1 209926 637 0.00 2019-12-25 21:01:04 2019-12-25 21:23:13 t 1 1 209927 748 0.00 2019-12-25 21:23:41 2019-12-25 21:24:03 t 1 1 209929 748 0.00 2019-12-25 21:24:51 2019-12-25 21:24:57 t 1 1 209935 562 0.00 2019-12-25 21:20:22 2019-12-25 21:29:34 t 1 1 209941 551 0.00 2019-12-25 20:31:51 2019-12-25 21:31:35 t 1 1 209671 722 0.00 2019-12-25 17:28:15 2019-12-25 17:28:22 t 1 1 209674 716 0.00 2019-12-25 17:20:22 2019-12-25 17:29:47 t 1 1 209675 562 0.00 2019-12-25 17:30:05 2019-12-25 17:30:23 t 1 1 209676 722 0.00 2019-12-25 17:29:37 2019-12-25 17:31:09 t 1 1 209686 675 0.00 2019-12-25 17:39:40 2019-12-25 17:41:19 t 1 1 209693 724 0.00 2019-12-25 17:26:09 2019-12-25 17:50:34 t 1 1 209696 763 0.00 2019-12-25 17:47:42 2019-12-25 17:51:21 t 1 1 209697 562 0.00 2019-12-25 17:51:25 2019-12-25 17:52:19 t 1 1 209700 544 0.00 2019-12-25 17:52:52 2019-12-25 17:55:13 t 1 1 209703 763 0.00 2019-12-25 17:58:52 2019-12-25 18:00:01 t 1 1 209704 667 0.00 2019-12-25 17:43:46 2019-12-25 18:01:30 t 1 1 209706 562 0.00 2019-12-25 18:01:35 2019-12-25 18:01:55 t 1 1 209711 687 0.00 2019-12-25 17:58:23 2019-12-25 18:08:48 t 1 1 209713 763 0.00 2019-12-25 18:03:00 2019-12-25 18:11:05 t 1 1 209715 562 0.00 2019-12-25 18:12:18 2019-12-25 18:12:38 t 1 1 209721 562 0.00 2019-12-25 18:13:13 2019-12-25 18:15:37 t 1 1 209723 687 0.00 2019-12-25 18:08:48 2019-12-25 18:16:12 t 1 1 209727 656 0.00 2019-12-25 17:34:29 2019-12-25 18:19:42 t 1 1 209729 763 0.00 2019-12-25 18:17:16 2019-12-25 18:20:39 t 1 1 209731 562 0.00 2019-12-25 18:17:41 2019-12-25 18:21:36 t 1 1 209735 562 0.00 2019-12-25 18:22:16 2019-12-25 18:25:03 t 1 1 209736 220 0.00 2019-12-25 18:17:00 2019-12-25 18:26:22 t 1 1 209741 656 0.00 2019-12-25 18:19:42 2019-12-25 18:31:05 t 1 1 209750 667 0.00 2019-12-25 18:36:27 2019-12-25 18:37:04 t 1 1 209754 622 0.00 2019-12-25 17:49:56 2019-12-25 18:42:18 t 1 1 209756 562 0.00 2019-12-25 18:43:20 2019-12-25 18:43:46 t 1 1 209757 220 0.00 2019-12-25 18:34:56 2019-12-25 18:45:05 t 1 1 209765 670 0.00 2019-12-25 18:14:22 2019-12-25 18:54:21 t 1 1 209766 562 0.00 2019-12-25 18:54:06 2019-12-25 18:54:29 t 1 1 209767 220 0.00 2019-12-25 18:53:55 2019-12-25 18:58:02 t 1 1 209773 687 0.00 2019-12-25 18:52:59 2019-12-25 19:05:57 t 1 1 209776 562 0.00 2019-12-25 19:06:00 2019-12-25 19:06:37 t 1 1 209784 503 0.00 2019-12-25 19:12:46 2019-12-25 19:13:31 t 1 1 209790 622 0.00 2019-12-25 19:17:20 2019-12-25 19:19:06 t 1 1 209793 732 0.00 2019-12-25 18:22:30 2019-12-25 19:20:39 t 1 1 209795 763 0.00 2019-12-25 19:19:50 2019-12-25 19:22:58 t 1 1 209798 732 0.00 2019-12-25 19:20:39 2019-12-25 19:24:35 t 1 1 209799 503 0.00 2019-12-25 19:16:15 2019-12-25 19:26:00 t 1 1 209801 611 0.00 2019-12-25 19:24:10 2019-12-25 19:27:59 t 1 1 209803 763 0.00 2019-12-25 19:26:18 2019-12-25 19:29:08 t 1 1 209807 637 0.00 2019-12-25 19:07:48 2019-12-25 19:34:17 t 1 1 209808 564 0.00 2019-12-25 19:03:21 2019-12-25 19:34:29 t 1 1 209811 732 0.00 2019-12-25 19:33:18 2019-12-25 19:38:06 t 1 1 209813 633 0.00 2019-12-25 19:25:54 2019-12-25 19:39:50 t 1 1 209815 625 0.00 2019-12-25 19:35:26 2019-12-25 19:41:07 t 1 1 209816 220 0.00 2019-12-25 19:30:43 2019-12-25 19:43:24 t 1 1 209819 683 0.00 2019-12-25 19:45:03 2019-12-25 19:45:42 t 1 1 209822 728 0.00 2019-12-25 19:47:14 2019-12-25 19:47:23 t 1 1 209831 633 0.00 2019-12-25 19:50:36 2019-12-25 19:52:27 t 1 1 209837 687 0.00 2019-12-25 19:46:17 2019-12-25 19:55:26 t 1 1 209841 763 0.00 2019-12-25 19:52:09 2019-12-25 19:57:03 t 1 1 209843 728 0.00 2019-12-25 19:57:43 2019-12-25 19:58:17 t 1 1 209844 562 0.00 2019-12-25 19:58:21 2019-12-25 19:58:43 t 1 1 209845 675 0.00 2019-12-25 19:53:01 2019-12-25 20:00:00 t 1 1 209849 679 0.00 2019-12-25 19:52:49 2019-12-25 20:01:10 t 1 1 209850 564 0.00 2019-12-25 19:58:44 2019-12-25 20:03:28 t 1 1 209857 728 0.00 2019-12-25 20:08:13 2019-12-25 20:08:21 t 1 1 209860 562 0.00 2019-12-25 20:10:20 2019-12-25 20:10:37 t 1 1 209861 711 0.00 2019-12-25 19:54:07 2019-12-25 20:11:49 t 1 1 209864 551 0.00 2019-12-25 20:06:21 2019-12-25 20:17:07 t 1 1 209865 562 0.00 2019-12-25 20:17:12 2019-12-25 20:17:27 t 1 1 209866 671 0.00 2019-12-25 20:18:14 2019-12-25 20:20:01 t 1 1 209870 551 0.00 2019-12-25 20:17:07 2019-12-25 20:24:21 t 1 1 209871 562 0.00 2019-12-25 20:26:09 2019-12-25 20:26:16 t 1 1 209875 679 0.00 2019-12-25 20:16:02 2019-12-25 20:30:27 t 1 1 209876 675 0.00 2019-12-25 20:26:39 2019-12-25 20:31:07 t 1 1 209883 679 0.00 2019-12-25 20:30:27 2019-12-25 20:44:39 t 1 1 209884 671 0.00 2019-12-25 20:44:43 2019-12-25 20:47:29 t 1 1 209886 562 0.00 2019-12-25 20:49:35 2019-12-25 20:49:51 t 1 1 209888 562 0.00 2019-12-25 20:55:35 2019-12-25 20:56:18 t 1 1 209889 679 0.00 2019-12-25 20:44:39 2019-12-25 20:59:05 t 1 1 209891 562 0.00 2019-12-25 20:58:21 2019-12-25 20:59:49 t 1 1 209892 637 0.00 2019-12-25 20:59:42 2019-12-25 21:00:55 t 1 1 209898 562 0.00 2019-12-25 21:08:29 2019-12-25 21:09:03 t 1 1 209900 562 0.00 2019-12-25 21:10:07 2019-12-25 21:10:23 t 1 1 209904 742 0.00 2019-12-25 21:11:30 2019-12-25 21:13:24 t 1 1 209906 679 0.00 2019-12-25 20:59:05 2019-12-25 21:13:58 t 1 1 209908 748 0.00 2019-12-25 21:14:10 2019-12-25 21:16:07 t 1 1 209914 728 0.00 2019-12-25 21:17:14 2019-12-25 21:17:22 t 1 1 209916 728 0.00 2019-12-25 21:18:30 2019-12-25 21:18:45 t 1 1 209919 748 0.00 2019-12-25 21:20:39 2019-12-25 21:21:06 t 1 1 209920 748 0.00 2019-12-25 21:21:13 2019-12-25 21:21:29 t 1 1 209925 748 0.00 2019-12-25 21:22:57 2019-12-25 21:23:08 t 1 1 209931 763 0.00 2019-12-25 21:22:38 2019-12-25 21:26:36 t 1 1 209933 763 0.00 2019-12-25 21:26:10 2019-12-25 21:28:07 t 1 1 209934 763 0.00 2019-12-25 21:27:20 2019-12-25 21:28:53 t 1 1 209938 728 0.00 2019-12-25 21:29:00 2019-12-25 21:29:56 t 1 1 209944 748 0.00 2019-12-25 21:29:44 2019-12-25 21:33:52 t 1 1 209952 687 0.00 2019-12-25 21:31:05 2019-12-25 21:38:34 t 1 1 209955 687 0.00 2019-12-25 21:42:20 2019-12-25 21:43:21 t 1 1 209956 687 0.00 2019-12-25 21:42:26 2019-12-25 21:43:40 t 1 1 209958 544 0.00 2019-12-25 19:57:58 2019-12-25 21:45:16 t 1 1 209962 748 0.00 2019-12-25 21:46:22 2019-12-25 21:46:49 t 1 1 209965 689 0.00 2019-12-25 19:57:53 2019-12-25 21:49:18 t 1 1 209967 562 0.00 2019-12-25 21:50:13 2019-12-25 21:50:50 t 1 1 209968 675 0.00 2019-12-25 21:44:26 2019-12-25 21:51:48 t 1 1 209970 562 0.00 2019-12-25 21:52:40 2019-12-25 21:53:07 t 1 1 209971 691 0.00 2019-12-25 21:52:38 2019-12-25 21:53:46 t 1 1 209972 691 0.00 2019-12-25 21:53:46 2019-12-25 21:55:03 t 1 1 209974 660 0.00 2019-12-25 21:44:01 2019-12-25 21:57:26 t 1 1 209978 562 0.00 2019-12-25 22:00:59 2019-12-25 22:01:39 t 1 1 209984 716 0.00 2019-12-25 21:50:46 2019-12-25 22:04:54 t 1 1 209987 562 0.00 2019-12-25 22:06:14 2019-12-25 22:06:31 t 1 1 209989 748 0.00 2019-12-25 22:04:48 2019-12-25 22:07:07 t 1 1 209993 566 0.00 2019-12-25 21:46:02 2019-12-25 22:08:42 t 1 1 209995 748 0.00 2019-12-25 22:10:03 2019-12-25 22:10:07 t 1 1 209998 691 0.00 2019-12-25 22:10:55 2019-12-25 22:12:13 t 1 1 209705 732 0.00 2019-12-25 17:43:52 2019-12-25 18:01:43 t 1 1 209707 683 0.00 2019-12-25 17:09:45 2019-12-25 18:02:43 t 1 1 209708 763 0.00 2019-12-25 18:00:00 2019-12-25 18:03:00 t 1 1 209709 637 0.00 2019-12-25 16:28:31 2019-12-25 18:06:01 t 1 1 209710 675 0.00 2019-12-25 18:05:44 2019-12-25 18:07:18 t 1 1 209714 578 0.00 2019-12-25 16:49:35 2019-12-25 18:11:35 t 1 1 209717 667 0.00 2019-12-25 18:13:35 2019-12-25 18:13:36 t 1 1 209719 670 0.00 2019-12-25 17:17:46 2019-12-25 18:14:22 t 1 1 209726 544 0.00 2019-12-25 18:09:57 2019-12-25 18:17:43 t 1 1 209728 760 0.00 2019-12-25 18:17:24 2019-12-25 18:19:51 t 1 1 209730 683 0.00 2019-12-25 18:15:37 2019-12-25 18:21:29 t 1 1 209734 615 0.00 2019-12-25 18:16:18 2019-12-25 18:23:59 t 1 1 209737 687 0.00 2019-12-25 18:16:12 2019-12-25 18:28:57 t 1 1 209739 220 0.00 2019-12-25 18:26:22 2019-12-25 18:30:30 t 1 1 209742 683 0.00 2019-12-25 18:23:43 2019-12-25 18:31:16 t 1 1 209743 694 0.00 2019-12-25 12:54:06 2019-12-25 18:31:47 t 1 1 209746 220 0.00 2019-12-25 18:30:30 2019-12-25 18:34:56 t 1 1 209749 722 0.00 2019-12-25 18:36:30 2019-12-25 18:36:37 t 1 1 209751 562 0.00 2019-12-25 18:32:37 2019-12-25 18:37:39 t 1 1 209753 637 0.00 2019-12-25 18:35:20 2019-12-25 18:39:43 t 1 1 209759 220 0.00 2019-12-25 18:45:05 2019-12-25 18:45:53 t 1 1 209763 667 0.00 2019-12-25 18:48:06 2019-12-25 18:48:31 t 1 1 209764 679 0.00 2019-12-25 18:26:04 2019-12-25 18:52:08 t 1 1 209768 763 0.00 2019-12-25 18:55:34 2019-12-25 18:59:45 t 1 1 209769 763 0.00 2019-12-25 18:59:44 2019-12-25 19:01:34 t 1 1 209771 562 0.00 2019-12-25 19:04:53 2019-12-25 19:05:10 t 1 1 209774 637 0.00 2019-12-25 18:51:13 2019-12-25 19:06:11 t 1 1 209775 687 0.00 2019-12-25 19:06:22 2019-12-25 19:06:36 t 1 1 209777 679 0.00 2019-12-25 18:52:08 2019-12-25 19:06:47 t 1 1 209778 562 0.00 2019-12-25 19:06:47 2019-12-25 19:07:14 t 1 1 209779 514 0.00 2019-12-25 19:09:09 2019-12-25 19:10:35 t 1 1 209781 562 0.00 2019-12-25 19:10:29 2019-12-25 19:11:20 t 1 1 209782 622 0.00 2019-12-25 19:11:04 2019-12-25 19:12:14 t 1 1 209786 622 0.00 2019-12-25 19:12:17 2019-12-25 19:14:29 t 1 1 209787 503 0.00 2019-12-25 19:13:31 2019-12-25 19:16:13 t 1 1 209788 622 0.00 2019-12-25 19:14:50 2019-12-25 19:17:04 t 1 1 209789 562 0.00 2019-12-25 19:18:37 2019-12-25 19:18:57 t 1 1 209792 671 0.00 2019-12-25 19:13:58 2019-12-25 19:20:37 t 1 1 209796 679 0.00 2019-12-25 19:06:47 2019-12-25 19:23:33 t 1 1 209797 551 0.00 2019-12-25 19:19:42 2019-12-25 19:24:12 t 1 1 209800 763 0.00 2019-12-25 19:22:58 2019-12-25 19:26:18 t 1 1 209802 675 0.00 2019-12-25 19:22:36 2019-12-25 19:28:36 t 1 1 209805 562 0.00 2019-12-25 19:29:18 2019-12-25 19:29:48 t 1 1 209809 551 0.00 2019-12-25 19:30:28 2019-12-25 19:36:47 t 1 1 209818 711 0.00 2019-12-25 19:05:55 2019-12-25 19:45:27 t 1 1 209821 637 0.00 2019-12-25 19:36:15 2019-12-25 19:47:18 t 1 1 209824 709 0.00 2019-12-25 19:47:41 2019-12-25 19:48:18 t 1 1 209826 633 0.00 2019-12-25 19:39:50 2019-12-25 19:50:36 t 1 1 209829 611 0.00 2019-12-25 19:45:01 2019-12-25 19:51:58 t 1 1 209832 679 0.00 2019-12-25 19:39:38 2019-12-25 19:52:49 t 1 1 209833 726 0.00 2019-12-25 19:32:05 2019-12-25 19:53:17 t 1 1 209834 220 0.00 2019-12-25 19:43:24 2019-12-25 19:53:35 t 1 1 209836 711 0.00 2019-12-25 19:45:27 2019-12-25 19:54:07 t 1 1 209839 551 0.00 2019-12-25 19:48:35 2019-12-25 19:56:50 t 1 1 209842 667 0.00 2019-12-25 19:56:03 2019-12-25 19:58:01 t 1 1 209847 637 0.00 2019-12-25 19:47:41 2019-12-25 20:00:12 t 1 1 209852 220 0.00 2019-12-25 19:53:35 2019-12-25 20:04:53 t 1 1 209855 516 0.00 2019-12-25 19:35:46 2019-12-25 20:06:52 t 1 1 209859 514 0.00 2019-12-25 20:09:33 2019-12-25 20:10:35 t 1 1 209862 679 0.00 2019-12-25 20:01:10 2019-12-25 20:16:01 t 1 1 209863 728 0.00 2019-12-25 20:13:34 2019-12-25 20:16:35 t 1 1 209869 562 0.00 2019-12-25 20:23:02 2019-12-25 20:23:36 t 1 1 209872 611 0.00 2019-12-25 20:22:08 2019-12-25 20:26:38 t 1 1 209877 724 0.00 2019-12-25 19:50:47 2019-12-25 20:31:50 t 1 1 209879 637 0.00 2019-12-25 20:21:40 2019-12-25 20:32:53 t 1 1 209880 562 0.00 2019-12-25 20:30:04 2019-12-25 20:35:51 t 1 1 209881 711 0.00 2019-12-25 20:11:49 2019-12-25 20:37:54 t 1 1 209887 711 0.00 2019-12-25 20:37:54 2019-12-25 20:50:54 t 1 1 209893 728 0.00 2019-12-25 20:59:58 2019-12-25 21:01:07 t 1 1 209894 675 0.00 2019-12-25 20:51:09 2019-12-25 21:03:48 t 1 1 209896 728 0.00 2019-12-25 21:02:32 2019-12-25 21:06:19 t 1 1 209902 748 0.00 2019-12-25 21:11:07 2019-12-25 21:12:28 t 1 1 209905 748 0.00 2019-12-25 21:13:13 2019-12-25 21:13:38 t 1 1 209907 562 0.00 2019-12-25 21:11:41 2019-12-25 21:14:29 t 1 1 209910 728 0.00 2019-12-25 21:16:33 2019-12-25 21:16:53 t 1 1 209912 748 0.00 2019-12-25 21:14:37 2019-12-25 21:17:06 t 1 1 209913 687 0.00 2019-12-25 21:16:16 2019-12-25 21:17:19 t 1 1 209915 763 0.00 2019-12-25 21:17:00 2019-12-25 21:18:41 t 1 1 209917 748 0.00 2019-12-25 21:17:14 2019-12-25 21:20:27 t 1 1 209922 763 0.00 2019-12-25 21:19:04 2019-12-25 21:21:46 t 1 1 209923 748 0.00 2019-12-25 21:22:19 2019-12-25 21:22:29 t 1 1 209924 625 0.00 2019-12-25 20:54:59 2019-12-25 21:23:07 t 1 1 209928 748 0.00 2019-12-25 21:24:28 2019-12-25 21:24:40 t 1 1 209930 748 0.00 2019-12-25 21:25:59 2019-12-25 21:26:32 t 1 1 209932 748 0.00 2019-12-25 21:27:12 2019-12-25 21:27:46 t 1 1 209936 660 0.00 2019-12-25 21:25:52 2019-12-25 21:29:35 t 1 1 209937 748 0.00 2019-12-25 21:28:46 2019-12-25 21:29:45 t 1 1 209939 728 0.00 2019-12-25 21:30:04 2019-12-25 21:30:05 t 1 1 209940 763 0.00 2019-12-25 21:29:35 2019-12-25 21:31:22 t 1 1 209943 763 0.00 2019-12-25 21:32:11 2019-12-25 21:33:41 t 1 1 209945 675 0.00 2019-12-25 21:27:37 2019-12-25 21:34:21 t 1 1 209946 637 0.00 2019-12-25 21:25:00 2019-12-25 21:35:25 t 1 1 209948 728 0.00 2019-12-25 21:36:29 2019-12-25 21:36:41 t 1 1 209949 562 0.00 2019-12-25 21:36:59 2019-12-25 21:37:11 t 1 1 209950 748 0.00 2019-12-25 21:37:08 2019-12-25 21:37:30 t 1 1 209951 562 0.00 2019-12-25 21:37:18 2019-12-25 21:38:33 t 1 1 209953 748 0.00 2019-12-25 21:38:28 2019-12-25 21:38:54 t 1 1 209954 562 0.00 2019-12-25 21:38:52 2019-12-25 21:39:39 t 1 1 209960 687 0.00 2019-12-25 21:44:17 2019-12-25 21:46:14 t 1 1 209963 544 0.00 2019-12-25 21:45:44 2019-12-25 21:47:47 t 1 1 209964 748 0.00 2019-12-25 21:48:23 2019-12-25 21:48:35 t 1 1 209966 649 0.00 2019-12-25 21:35:56 2019-12-25 21:49:58 t 1 1 209973 691 0.00 2019-12-25 21:56:09 2019-12-25 21:57:25 t 1 1 209976 689 0.00 2019-12-25 21:49:18 2019-12-25 21:58:16 t 1 1 209977 728 0.00 2019-12-25 21:42:05 2019-12-25 22:01:38 t 1 1 209979 748 0.00 2019-12-25 21:56:25 2019-12-25 22:03:05 t 1 1 209980 748 0.00 2019-12-25 22:03:13 2019-12-25 22:03:38 t 1 1 209942 562 0.00 2019-12-25 21:31:42 2019-12-25 21:32:03 t 1 1 209947 748 0.00 2019-12-25 21:34:10 2019-12-25 21:35:34 t 1 1 209957 562 0.00 2019-12-25 21:44:22 2019-12-25 21:44:47 t 1 1 209959 748 0.00 2019-12-25 21:43:38 2019-12-25 21:46:07 t 1 1 209961 671 0.00 2019-12-25 21:44:54 2019-12-25 21:46:24 t 1 1 209969 691 0.00 2019-12-25 21:51:52 2019-12-25 21:52:38 t 1 1 209975 562 0.00 2019-12-25 21:57:26 2019-12-25 21:57:42 t 1 1 209981 748 0.00 2019-12-25 22:03:50 2019-12-25 22:04:17 t 1 1 209983 748 0.00 2019-12-25 22:04:25 2019-12-25 22:04:42 t 1 1 209985 564 0.00 2019-12-25 20:39:50 2019-12-25 22:05:03 t 1 1 209986 656 0.00 2019-12-25 20:42:01 2019-12-25 22:06:31 t 1 1 209988 591 0.00 2019-12-25 20:32:21 2019-12-25 22:07:06 t 1 1 209990 538 0.00 2019-12-25 21:57:30 2019-12-25 22:07:19 t 1 1 209991 748 0.00 2019-12-25 22:06:12 2019-12-25 22:07:49 t 1 1 209992 748 0.00 2019-12-25 22:08:01 2019-12-25 22:08:28 t 1 1 209997 689 0.00 2019-12-25 22:04:36 2019-12-25 22:11:56 t 1 1 210000 748 0.00 2019-12-25 22:13:03 2019-12-25 22:13:07 t 1 1 210005 748 0.00 2019-12-25 22:16:34 2019-12-25 22:16:48 t 1 1 210006 562 0.00 2019-12-25 22:16:54 2019-12-25 22:17:13 t 1 1 210007 656 0.00 2019-12-25 22:06:31 2019-12-25 22:17:51 t 1 1 210018 562 0.00 2019-12-25 22:25:55 2019-12-25 22:26:55 t 1 1 210022 660 0.00 2019-12-25 22:16:25 2019-12-25 22:31:31 t 1 1 210023 675 0.00 2019-12-25 22:29:13 2019-12-25 22:32:18 t 1 1 210024 667 0.00 2019-12-25 22:00:53 2019-12-25 22:32:53 t 1 1 210028 748 0.00 2019-12-25 22:33:58 2019-12-25 22:34:25 t 1 1 210029 591 0.00 2019-12-25 22:32:48 2019-12-25 22:34:32 t 1 1 210031 689 0.00 2019-12-25 22:11:56 2019-12-25 22:35:23 t 1 1 210035 687 0.00 2019-12-25 22:35:27 2019-12-25 22:36:53 t 1 1 210036 667 0.00 2019-12-25 22:35:27 2019-12-25 22:37:08 t 1 1 210037 732 0.00 2019-12-25 22:36:31 2019-12-25 22:38:07 t 1 1 210038 744 0.00 2019-12-25 22:38:07 2019-12-25 22:40:05 t 1 1 210040 591 0.00 2019-12-25 22:38:45 2019-12-25 22:42:43 t 1 1 210046 728 0.00 2019-12-25 22:44:27 2019-12-25 22:44:42 t 1 1 210050 562 0.00 2019-12-25 22:45:32 2019-12-25 22:45:43 t 1 1 210052 683 0.00 2019-12-25 22:36:38 2019-12-25 22:47:03 t 1 1 210058 660 0.00 2019-12-25 22:31:44 2019-12-25 22:49:48 t 1 1 210060 671 0.00 2019-12-25 22:36:59 2019-12-25 22:50:26 t 1 1 210062 562 0.00 2019-12-25 22:50:48 2019-12-25 22:51:06 t 1 1 210064 748 0.00 2019-12-25 22:54:28 2019-12-25 22:54:55 t 1 1 210065 728 0.00 2019-12-25 22:54:58 2019-12-25 22:55:07 t 1 1 210068 748 0.00 2019-12-25 22:58:08 2019-12-25 22:58:35 t 1 1 210070 671 0.00 2019-12-25 22:51:01 2019-12-25 22:59:36 t 1 1 210073 671 0.00 2019-12-25 22:59:36 2019-12-25 23:02:15 t 1 1 210077 566 0.00 2019-12-25 22:49:33 2019-12-25 23:02:54 t 1 1 210079 562 0.00 2019-12-25 23:03:32 2019-12-25 23:04:14 t 1 1 210086 656 0.00 2019-12-25 22:43:46 2019-12-25 23:09:29 t 1 1 210087 722 0.00 2019-12-25 23:05:22 2019-12-25 23:10:52 t 1 1 210093 748 0.00 2019-12-25 23:14:49 2019-12-25 23:16:08 t 1 1 210096 728 0.00 2019-12-25 23:16:16 2019-12-25 23:16:31 t 1 1 210099 551 0.00 2019-12-25 21:31:35 2019-12-25 23:19:43 t 1 1 210100 660 0.00 2019-12-25 23:16:30 2019-12-25 23:20:31 t 1 1 210102 625 0.00 2019-12-25 22:49:43 2019-12-25 23:20:36 t 1 1 210104 756 0.00 2019-12-25 17:21:12 2019-12-25 23:20:37 t 1 1 210105 683 0.00 2019-12-25 23:05:34 2019-12-25 23:20:43 t 1 1 210107 748 0.00 2019-12-25 23:21:04 2019-12-25 23:21:30 t 1 1 210112 748 0.00 2019-12-25 23:20:34 2019-12-25 23:23:08 t 1 1 210116 656 0.00 2019-12-25 23:11:31 2019-12-25 23:26:58 t 1 1 210117 728 0.00 2019-12-25 23:26:48 2019-12-25 23:27:50 t 1 1 210118 562 0.00 2019-12-25 23:28:50 2019-12-25 23:29:12 t 1 1 210119 562 0.00 2019-12-25 23:31:02 2019-12-25 23:31:44 t 1 1 210120 514 0.00 2019-12-25 23:11:24 2019-12-25 23:34:16 t 1 1 210128 562 0.00 2019-12-25 23:43:04 2019-12-25 23:43:16 t 1 1 210129 728 0.00 2019-12-25 23:43:23 2019-12-25 23:43:36 t 1 1 210132 748 0.00 2019-12-25 23:38:46 2019-12-25 23:51:22 t 1 1 210134 696 0.00 2019-12-25 23:02:28 2019-12-25 23:51:54 t 1 1 210138 625 0.00 2019-12-25 23:20:35 2019-12-25 23:52:06 t 1 1 210141 756 0.00 2019-12-25 23:20:36 2019-12-25 23:52:27 t 1 1 210143 728 0.00 2019-12-25 23:53:54 2019-12-25 23:54:08 t 1 1 210145 748 0.00 2019-12-25 23:55:13 2019-12-25 23:55:14 t 1 1 210149 503 0.00 2019-12-25 23:52:07 2019-12-26 00:00:20 t 1 1 210154 728 0.00 2019-12-26 00:04:26 2019-12-26 00:04:40 t 1 1 210155 748 0.00 2019-12-26 00:05:44 2019-12-26 00:05:58 t 1 1 210156 566 0.00 2019-12-26 00:02:17 2019-12-26 00:06:52 t 1 1 210157 748 0.00 2019-12-26 00:07:25 2019-12-26 00:07:35 t 1 1 210160 748 0.00 2019-12-26 00:09:27 2019-12-26 00:09:29 t 1 1 210162 562 0.00 2019-12-26 00:11:47 2019-12-26 00:12:07 t 1 1 210163 562 0.00 2019-12-26 00:12:39 2019-12-26 00:12:45 t 1 1 210169 514 0.00 2019-12-25 23:46:12 2019-12-26 00:18:19 t 1 1 210175 748 0.00 2019-12-26 00:24:47 2019-12-26 00:24:57 t 1 1 210176 728 0.00 2019-12-26 00:28:17 2019-12-26 00:28:32 t 1 1 210178 220 0.00 2019-12-26 00:22:14 2019-12-26 00:29:16 t 1 1 210182 562 0.00 2019-12-26 00:33:13 2019-12-26 00:33:32 t 1 1 210184 220 0.00 2019-12-26 00:29:16 2019-12-26 00:35:44 t 1 1 210186 566 0.00 2019-12-26 00:06:51 2019-12-26 00:37:09 t 1 1 210187 566 0.00 2019-12-26 00:37:09 2019-12-26 00:38:09 t 1 1 210188 562 0.00 2019-12-26 00:38:32 2019-12-26 00:38:43 t 1 1 210190 748 0.00 2019-12-26 00:40:14 2019-12-26 00:41:15 t 1 1 210192 675 0.00 2019-12-26 00:40:00 2019-12-26 00:42:32 t 1 1 210197 562 0.00 2019-12-26 00:43:55 2019-12-26 00:44:18 t 1 1 210199 728 0.00 2019-12-26 00:49:23 2019-12-26 00:49:55 t 1 1 210200 562 0.00 2019-12-26 00:54:37 2019-12-26 00:55:01 t 1 1 210203 748 0.00 2019-12-26 00:56:30 2019-12-26 00:58:09 t 1 1 210211 687 0.00 2019-12-26 00:57:00 2019-12-26 01:01:18 t 1 1 210213 566 0.00 2019-12-26 00:43:56 2019-12-26 01:03:06 t 1 1 210214 748 0.00 2019-12-26 01:03:35 2019-12-26 01:03:59 t 1 1 210225 562 0.00 2019-12-26 01:23:42 2019-12-26 01:24:03 t 1 1 210230 728 0.00 2019-12-26 01:28:35 2019-12-26 01:28:47 t 1 1 210233 566 0.00 2019-12-26 01:30:35 2019-12-26 01:37:24 t 1 1 210237 756 0.00 2019-12-25 23:52:08 2019-12-26 01:40:22 t 1 1 210239 562 0.00 2019-12-26 01:45:08 2019-12-26 01:45:32 t 1 1 210242 718 0.00 2019-12-26 01:50:26 2019-12-26 01:51:23 t 1 1 210243 566 0.00 2019-12-26 01:37:23 2019-12-26 01:51:56 t 1 1 210244 687 0.00 2019-12-26 01:50:35 2019-12-26 01:53:39 t 1 1 210245 562 0.00 2019-12-26 01:55:53 2019-12-26 01:56:13 t 1 1 210246 728 0.00 2019-12-26 01:56:31 2019-12-26 01:56:40 t 1 1 210249 562 0.00 2019-12-26 02:06:48 2019-12-26 02:06:57 t 1 1 210256 562 0.00 2019-12-26 02:17:19 2019-12-26 02:17:43 t 1 1 209982 689 0.00 2019-12-25 21:58:16 2019-12-25 22:04:36 t 1 1 209994 748 0.00 2019-12-25 22:08:38 2019-12-25 22:08:47 t 1 1 209996 748 0.00 2019-12-25 22:11:33 2019-12-25 22:11:47 t 1 1 209999 728 0.00 2019-12-25 22:11:52 2019-12-25 22:12:56 t 1 1 210002 748 0.00 2019-12-25 22:14:47 2019-12-25 22:15:05 t 1 1 210003 748 0.00 2019-12-25 22:15:21 2019-12-25 22:15:38 t 1 1 210010 748 0.00 2019-12-25 22:19:10 2019-12-25 22:19:21 t 1 1 210012 728 0.00 2019-12-25 22:22:24 2019-12-25 22:22:32 t 1 1 210014 562 0.00 2019-12-25 22:22:54 2019-12-25 22:23:17 t 1 1 210015 748 0.00 2019-12-25 22:23:27 2019-12-25 22:23:42 t 1 1 210019 656 0.00 2019-12-25 22:17:51 2019-12-25 22:29:45 t 1 1 210020 748 0.00 2019-12-25 22:28:45 2019-12-25 22:30:08 t 1 1 210025 687 0.00 2019-12-25 22:31:43 2019-12-25 22:32:59 t 1 1 210026 562 0.00 2019-12-25 22:33:41 2019-12-25 22:34:02 t 1 1 210032 748 0.00 2019-12-25 22:35:08 2019-12-25 22:35:34 t 1 1 210034 683 0.00 2019-12-25 19:58:46 2019-12-25 22:36:38 t 1 1 210044 707 0.00 2019-12-25 19:21:24 2019-12-25 22:44:13 t 1 1 210048 564 0.00 2019-12-25 22:05:03 2019-12-25 22:45:04 t 1 1 210049 675 0.00 2019-12-25 22:43:42 2019-12-25 22:45:32 t 1 1 210056 544 0.00 2019-12-25 22:46:37 2019-12-25 22:49:44 t 1 1 210061 696 0.00 2019-12-25 22:22:46 2019-12-25 22:50:45 t 1 1 210066 514 0.00 2019-12-25 22:45:45 2019-12-25 22:55:40 t 1 1 210067 675 0.00 2019-12-25 22:55:07 2019-12-25 22:57:12 t 1 1 210072 562 0.00 2019-12-25 22:59:58 2019-12-25 23:01:06 t 1 1 210075 591 0.00 2019-12-25 23:02:06 2019-12-25 23:02:27 t 1 1 210076 696 0.00 2019-12-25 22:50:45 2019-12-25 23:02:29 t 1 1 210078 679 0.00 2019-12-25 22:49:46 2019-12-25 23:03:14 t 1 1 210081 728 0.00 2019-12-25 23:05:28 2019-12-25 23:05:36 t 1 1 210083 748 0.00 2019-12-25 23:07:01 2019-12-25 23:07:27 t 1 1 210085 635 0.00 2019-12-25 22:46:03 2019-12-25 23:09:28 t 1 1 210089 514 0.00 2019-12-25 22:55:40 2019-12-25 23:11:24 t 1 1 210092 748 0.00 2019-12-25 23:15:35 2019-12-25 23:16:02 t 1 1 210094 675 0.00 2019-12-25 23:12:18 2019-12-25 23:16:27 t 1 1 210098 748 0.00 2019-12-25 23:17:46 2019-12-25 23:17:46 t 1 1 210101 220 0.00 2019-12-25 22:23:03 2019-12-25 23:20:34 t 1 1 210106 748 0.00 2019-12-25 23:20:47 2019-12-25 23:20:53 t 1 1 210109 679 0.00 2019-12-25 23:20:35 2019-12-25 23:21:55 t 1 1 210110 748 0.00 2019-12-25 23:22:17 2019-12-25 23:22:28 t 1 1 210111 687 0.00 2019-12-25 23:23:05 2019-12-25 23:23:07 t 1 1 210113 687 0.00 2019-12-25 23:23:11 2019-12-25 23:23:22 t 1 1 210115 748 0.00 2019-12-25 23:22:39 2019-12-25 23:24:47 t 1 1 210121 544 0.00 2019-12-25 23:12:39 2019-12-25 23:35:42 t 1 1 210122 728 0.00 2019-12-25 23:36:17 2019-12-25 23:36:29 t 1 1 210124 503 0.00 2019-12-25 23:37:24 2019-12-25 23:37:39 t 1 1 210126 562 0.00 2019-12-25 23:39:37 2019-12-25 23:39:54 t 1 1 210131 562 0.00 2019-12-25 23:50:21 2019-12-25 23:50:40 t 1 1 210133 578 0.00 2019-12-25 21:14:26 2019-12-25 23:51:50 t 1 1 210135 748 0.00 2019-12-25 23:38:12 2019-12-25 23:51:55 t 1 1 210137 220 0.00 2019-12-25 23:20:34 2019-12-25 23:52:06 t 1 1 210139 503 0.00 2019-12-25 23:37:38 2019-12-25 23:52:07 t 1 1 210142 748 0.00 2019-12-25 23:52:05 2019-12-25 23:54:05 t 1 1 210146 748 0.00 2019-12-25 23:56:10 2019-12-25 23:58:08 t 1 1 210147 578 0.00 2019-12-25 23:54:13 2019-12-25 23:59:04 t 1 1 210148 748 0.00 2019-12-25 23:59:04 2019-12-25 23:59:28 t 1 1 210150 562 0.00 2019-12-26 00:01:03 2019-12-26 00:01:21 t 1 1 210153 748 0.00 2019-12-26 00:04:16 2019-12-26 00:04:32 t 1 1 210158 637 0.00 2019-12-25 21:49:22 2019-12-26 00:08:29 t 1 1 210166 748 0.00 2019-12-26 00:14:37 2019-12-26 00:15:06 t 1 1 210167 635 0.00 2019-12-26 00:09:19 2019-12-26 00:16:21 t 1 1 210172 728 0.00 2019-12-26 00:21:22 2019-12-26 00:21:43 t 1 1 210179 748 0.00 2019-12-26 00:29:55 2019-12-26 00:29:56 t 1 1 210180 679 0.00 2019-12-26 00:09:35 2019-12-26 00:32:01 t 1 1 210181 748 0.00 2019-12-26 00:32:16 2019-12-26 00:32:20 t 1 1 210189 728 0.00 2019-12-26 00:38:50 2019-12-26 00:39:05 t 1 1 210191 566 0.00 2019-12-26 00:38:09 2019-12-26 00:42:29 t 1 1 210194 220 0.00 2019-12-26 00:35:44 2019-12-26 00:43:06 t 1 1 210196 220 0.00 2019-12-26 00:43:06 2019-12-26 00:44:13 t 1 1 210202 687 0.00 2019-12-26 00:49:49 2019-12-26 00:57:00 t 1 1 210204 683 0.00 2019-12-25 23:52:02 2019-12-26 00:58:21 t 1 1 210210 728 0.00 2019-12-26 00:59:54 2019-12-26 01:01:09 t 1 1 210215 551 0.00 2019-12-26 00:02:34 2019-12-26 01:04:31 t 1 1 210219 220 0.00 2019-12-26 01:01:18 2019-12-26 01:07:10 t 1 1 210221 687 0.00 2019-12-26 01:04:35 2019-12-26 01:15:30 t 1 1 210222 562 0.00 2019-12-26 01:16:08 2019-12-26 01:16:28 t 1 1 210224 728 0.00 2019-12-26 01:23:34 2019-12-26 01:23:46 t 1 1 210227 566 0.00 2019-12-26 01:03:06 2019-12-26 01:25:19 t 1 1 210231 566 0.00 2019-12-26 01:26:25 2019-12-26 01:30:35 t 1 1 210236 707 0.00 2019-12-25 23:14:09 2019-12-26 01:40:09 t 1 1 210238 687 0.00 2019-12-26 01:19:19 2019-12-26 01:44:36 t 1 1 210241 728 0.00 2019-12-26 01:49:37 2019-12-26 01:49:39 t 1 1 210247 687 0.00 2019-12-26 01:53:50 2019-12-26 01:59:56 t 1 1 210248 687 0.00 2019-12-26 02:00:23 2019-12-26 02:05:29 t 1 1 210250 728 0.00 2019-12-26 02:07:01 2019-12-26 02:07:17 t 1 1 210253 748 0.00 2019-12-26 01:30:41 2019-12-26 02:14:36 t 1 1 210254 687 0.00 2019-12-26 02:09:44 2019-12-26 02:16:17 t 1 1 210255 566 0.00 2019-12-26 01:51:55 2019-12-26 02:16:33 t 1 1 210258 625 0.00 2019-12-26 00:36:43 2019-12-26 02:22:37 t 1 1 210259 728 0.00 2019-12-26 02:28:02 2019-12-26 02:28:10 t 1 1 210262 562 0.00 2019-12-26 02:38:49 2019-12-26 02:39:07 t 1 1 210264 748 0.00 2019-12-26 02:14:45 2019-12-26 02:41:13 t 1 1 210265 748 0.00 2019-12-26 02:41:22 2019-12-26 02:41:37 t 1 1 210267 748 0.00 2019-12-26 02:44:59 2019-12-26 02:46:02 t 1 1 210268 748 0.00 2019-12-26 02:46:11 2019-12-26 02:46:38 t 1 1 210281 748 0.00 2019-12-26 02:52:48 2019-12-26 02:53:16 t 1 1 210282 748 0.00 2019-12-26 02:53:24 2019-12-26 02:53:52 t 1 1 210284 748 0.00 2019-12-26 02:54:37 2019-12-26 02:55:04 t 1 1 210285 748 0.00 2019-12-26 02:55:13 2019-12-26 02:55:40 t 1 1 210291 748 0.00 2019-12-26 02:58:49 2019-12-26 02:59:22 t 1 1 210296 728 0.00 2019-12-26 03:05:03 2019-12-26 03:05:18 t 1 1 210301 562 0.00 2019-12-26 03:21:40 2019-12-26 03:22:00 t 1 1 210304 728 0.00 2019-12-26 03:26:04 2019-12-26 03:26:19 t 1 1 210309 748 0.00 2019-12-26 03:30:40 2019-12-26 03:31:04 t 1 1 210310 748 0.00 2019-12-26 03:31:13 2019-12-26 03:31:37 t 1 1 210311 566 0.00 2019-12-26 03:08:20 2019-12-26 03:32:07 t 1 1 210314 562 0.00 2019-12-26 03:32:22 2019-12-26 03:32:44 t 1 1 210317 748 0.00 2019-12-26 03:34:34 2019-12-26 03:34:59 t 1 1 210318 748 0.00 2019-12-26 03:35:07 2019-12-26 03:35:32 t 1 1 210001 566 0.00 2019-12-25 22:08:42 2019-12-25 22:14:04 t 1 1 210004 679 0.00 2019-12-25 22:07:36 2019-12-25 22:16:25 t 1 1 210008 748 0.00 2019-12-25 22:17:51 2019-12-25 22:18:22 t 1 1 210009 748 0.00 2019-12-25 22:18:35 2019-12-25 22:18:40 t 1 1 210011 748 0.00 2019-12-25 22:19:46 2019-12-25 22:19:48 t 1 1 210013 728 0.00 2019-12-25 22:22:40 2019-12-25 22:22:55 t 1 1 210016 675 0.00 2019-12-25 22:14:33 2019-12-25 22:23:44 t 1 1 210017 591 0.00 2019-12-25 22:07:06 2019-12-25 22:25:01 t 1 1 210021 748 0.00 2019-12-25 22:29:48 2019-12-25 22:30:16 t 1 1 210027 728 0.00 2019-12-25 22:33:12 2019-12-25 22:34:16 t 1 1 210030 667 0.00 2019-12-25 22:33:03 2019-12-25 22:35:16 t 1 1 210033 748 0.00 2019-12-25 22:35:47 2019-12-25 22:36:13 t 1 1 210039 748 0.00 2019-12-25 22:39:10 2019-12-25 22:40:11 t 1 1 210041 667 0.00 2019-12-25 22:42:29 2019-12-25 22:42:59 t 1 1 210042 656 0.00 2019-12-25 22:29:45 2019-12-25 22:43:46 t 1 1 210043 748 0.00 2019-12-25 22:43:56 2019-12-25 22:44:07 t 1 1 210045 748 0.00 2019-12-25 22:44:15 2019-12-25 22:44:16 t 1 1 210047 562 0.00 2019-12-25 22:44:24 2019-12-25 22:44:47 t 1 1 210051 544 0.00 2019-12-25 22:16:57 2019-12-25 22:46:37 t 1 1 210053 689 0.00 2019-12-25 22:35:23 2019-12-25 22:48:33 t 1 1 210054 566 0.00 2019-12-25 22:30:54 2019-12-25 22:49:33 t 1 1 210055 625 0.00 2019-12-25 21:51:02 2019-12-25 22:49:43 t 1 1 210057 679 0.00 2019-12-25 22:36:53 2019-12-25 22:49:47 t 1 1 210059 683 0.00 2019-12-25 22:47:18 2019-12-25 22:49:51 t 1 1 210063 562 0.00 2019-12-25 22:52:02 2019-12-25 22:53:08 t 1 1 210069 683 0.00 2019-12-25 22:49:47 2019-12-25 22:59:28 t 1 1 210071 748 0.00 2019-12-25 22:59:38 2019-12-25 23:00:38 t 1 1 210074 748 0.00 2019-12-25 23:01:59 2019-12-25 23:02:26 t 1 1 210080 683 0.00 2019-12-25 22:59:28 2019-12-25 23:05:34 t 1 1 210082 728 0.00 2019-12-25 23:05:45 2019-12-25 23:06:01 t 1 1 210084 748 0.00 2019-12-25 23:07:54 2019-12-25 23:08:05 t 1 1 210088 562 0.00 2019-12-25 23:10:37 2019-12-25 23:10:56 t 1 1 210090 748 0.00 2019-12-25 23:12:42 2019-12-25 23:13:09 t 1 1 210091 748 0.00 2019-12-25 23:13:23 2019-12-25 23:13:36 t 1 1 210095 660 0.00 2019-12-25 22:49:54 2019-12-25 23:16:30 t 1 1 210097 566 0.00 2019-12-25 23:02:54 2019-12-25 23:17:20 t 1 1 210103 679 0.00 2019-12-25 23:03:14 2019-12-25 23:20:36 t 1 1 210108 562 0.00 2019-12-25 23:21:23 2019-12-25 23:21:45 t 1 1 210114 660 0.00 2019-12-25 23:20:41 2019-12-25 23:24:23 t 1 1 210123 679 0.00 2019-12-25 23:36:53 2019-12-25 23:37:24 t 1 1 210125 748 0.00 2019-12-25 23:37:40 2019-12-25 23:38:00 t 1 1 210127 551 0.00 2019-12-25 23:19:43 2019-12-25 23:40:46 t 1 1 210130 514 0.00 2019-12-25 23:34:16 2019-12-25 23:46:12 t 1 1 210136 683 0.00 2019-12-25 23:20:43 2019-12-25 23:52:02 t 1 1 210140 687 0.00 2019-12-25 23:24:44 2019-12-25 23:52:14 t 1 1 210144 671 0.00 2019-12-25 23:49:13 2019-12-25 23:54:11 t 1 1 210151 566 0.00 2019-12-25 23:17:20 2019-12-26 00:02:17 t 1 1 210152 551 0.00 2019-12-25 23:40:46 2019-12-26 00:02:34 t 1 1 210159 748 0.00 2019-12-26 00:09:06 2019-12-26 00:09:15 t 1 1 210161 679 0.00 2019-12-25 23:53:45 2019-12-26 00:09:35 t 1 1 210164 696 0.00 2019-12-25 23:51:54 2019-12-26 00:12:47 t 1 1 210165 728 0.00 2019-12-26 00:15:01 2019-12-26 00:15:02 t 1 1 210168 671 0.00 2019-12-26 00:15:10 2019-12-26 00:16:40 t 1 1 210170 687 0.00 2019-12-25 23:52:18 2019-12-26 00:19:40 t 1 1 210171 748 0.00 2019-12-26 00:19:54 2019-12-26 00:20:23 t 1 1 210173 220 0.00 2019-12-25 23:52:05 2019-12-26 00:22:15 t 1 1 210174 562 0.00 2019-12-26 00:22:30 2019-12-26 00:22:52 t 1 1 210177 625 0.00 2019-12-25 23:52:06 2019-12-26 00:28:59 t 1 1 210183 748 0.00 2019-12-26 00:35:00 2019-12-26 00:35:07 t 1 1 210185 625 0.00 2019-12-26 00:28:59 2019-12-26 00:36:44 t 1 1 210193 679 0.00 2019-12-26 00:32:01 2019-12-26 00:42:37 t 1 1 210195 566 0.00 2019-12-26 00:42:29 2019-12-26 00:43:57 t 1 1 210198 687 0.00 2019-12-26 00:19:40 2019-12-26 00:49:49 t 1 1 210201 748 0.00 2019-12-26 00:42:11 2019-12-26 00:55:13 t 1 1 210205 748 0.00 2019-12-26 00:58:15 2019-12-26 00:58:39 t 1 1 210206 748 0.00 2019-12-26 00:58:00 2019-12-26 00:59:09 t 1 1 210207 748 0.00 2019-12-26 00:58:48 2019-12-26 00:59:33 t 1 1 210208 748 0.00 2019-12-26 00:59:41 2019-12-26 01:00:06 t 1 1 210209 748 0.00 2019-12-26 01:00:18 2019-12-26 01:00:45 t 1 1 210212 220 0.00 2019-12-26 00:51:47 2019-12-26 01:01:18 t 1 1 210216 748 0.00 2019-12-26 01:04:11 2019-12-26 01:04:38 t 1 1 210217 562 0.00 2019-12-26 01:05:23 2019-12-26 01:05:46 t 1 1 210218 728 0.00 2019-12-26 01:06:20 2019-12-26 01:06:34 t 1 1 210220 679 0.00 2019-12-26 01:04:14 2019-12-26 01:10:08 t 1 1 210223 687 0.00 2019-12-26 01:17:03 2019-12-26 01:17:17 t 1 1 210226 748 0.00 2019-12-26 01:23:43 2019-12-26 01:24:10 t 1 1 210228 514 0.00 2019-12-26 01:13:32 2019-12-26 01:26:18 t 1 1 210229 566 0.00 2019-12-26 01:25:19 2019-12-26 01:26:26 t 1 1 210232 562 0.00 2019-12-26 01:34:28 2019-12-26 01:34:46 t 1 1 210234 728 0.00 2019-12-26 01:39:06 2019-12-26 01:39:20 t 1 1 210235 683 0.00 2019-12-26 00:59:09 2019-12-26 01:40:09 t 1 1 210240 687 0.00 2019-12-26 01:44:36 2019-12-26 01:49:17 t 1 1 210251 756 0.00 2019-12-26 01:40:27 2019-12-26 02:08:14 t 1 1 210252 687 0.00 2019-12-26 02:05:29 2019-12-26 02:09:44 t 1 1 210257 728 0.00 2019-12-26 02:17:33 2019-12-26 02:17:47 t 1 1 210260 562 0.00 2019-12-26 02:28:05 2019-12-26 02:28:27 t 1 1 210266 748 0.00 2019-12-26 02:41:50 2019-12-26 02:42:20 t 1 1 210269 748 0.00 2019-12-26 02:46:47 2019-12-26 02:47:14 t 1 1 210270 748 0.00 2019-12-26 02:47:23 2019-12-26 02:47:50 t 1 1 210272 748 0.00 2019-12-26 02:48:35 2019-12-26 02:49:03 t 1 1 210274 748 0.00 2019-12-26 02:49:11 2019-12-26 02:49:39 t 1 1 210276 748 0.00 2019-12-26 02:49:47 2019-12-26 02:50:15 t 1 1 210277 748 0.00 2019-12-26 02:50:24 2019-12-26 02:50:51 t 1 1 210278 748 0.00 2019-12-26 02:51:00 2019-12-26 02:51:27 t 1 1 210286 748 0.00 2019-12-26 02:55:49 2019-12-26 02:56:16 t 1 1 210287 748 0.00 2019-12-26 02:56:25 2019-12-26 02:56:53 t 1 1 210288 748 0.00 2019-12-26 02:57:02 2019-12-26 02:57:29 t 1 1 210295 756 0.00 2019-12-26 02:08:19 2019-12-26 03:02:19 t 1 1 210297 566 0.00 2019-12-26 02:16:33 2019-12-26 03:08:20 t 1 1 210298 562 0.00 2019-12-26 03:10:56 2019-12-26 03:11:20 t 1 1 210300 748 0.00 2019-12-26 03:16:20 2019-12-26 03:18:10 t 1 1 210303 748 0.00 2019-12-26 03:25:21 2019-12-26 03:26:08 t 1 1 210306 748 0.00 2019-12-26 03:27:36 2019-12-26 03:27:41 t 1 1 210307 748 0.00 2019-12-26 03:29:05 2019-12-26 03:29:09 t 1 1 210313 748 0.00 2019-12-26 03:32:20 2019-12-26 03:32:44 t 1 1 210315 748 0.00 2019-12-26 03:32:53 2019-12-26 03:33:17 t 1 1 210316 748 0.00 2019-12-26 03:33:26 2019-12-26 03:34:25 t 1 1 210261 728 0.00 2019-12-26 02:38:31 2019-12-26 02:38:46 t 1 1 210263 538 0.00 2019-12-26 01:15:06 2019-12-26 02:40:59 t 1 1 210271 748 0.00 2019-12-26 02:47:59 2019-12-26 02:48:27 t 1 1 210273 728 0.00 2019-12-26 02:49:01 2019-12-26 02:49:16 t 1 1 210275 562 0.00 2019-12-26 02:49:35 2019-12-26 02:49:54 t 1 1 210279 748 0.00 2019-12-26 02:51:36 2019-12-26 02:52:03 t 1 1 210280 748 0.00 2019-12-26 02:52:12 2019-12-26 02:52:40 t 1 1 210283 748 0.00 2019-12-26 02:54:02 2019-12-26 02:54:28 t 1 1 210289 748 0.00 2019-12-26 02:57:38 2019-12-26 02:58:05 t 1 1 210290 748 0.00 2019-12-26 02:58:13 2019-12-26 02:58:41 t 1 1 210292 728 0.00 2019-12-26 02:59:32 2019-12-26 02:59:47 t 1 1 210293 562 0.00 2019-12-26 03:00:15 2019-12-26 03:00:33 t 1 1 210294 748 0.00 2019-12-26 03:01:09 2019-12-26 03:01:38 t 1 1 210299 728 0.00 2019-12-26 03:15:34 2019-12-26 03:15:48 t 1 1 210302 748 0.00 2019-12-26 03:24:41 2019-12-26 03:25:08 t 1 1 210305 675 0.00 2019-12-26 03:24:47 2019-12-26 03:26:27 t 1 1 210308 748 0.00 2019-12-26 03:30:01 2019-12-26 03:30:31 t 1 1 210312 748 0.00 2019-12-26 03:31:46 2019-12-26 03:32:11 t 1 1 210326 538 0.00 2019-12-26 02:41:11 2019-12-26 03:39:12 t 1 1 210332 748 0.00 2019-12-26 03:41:45 2019-12-26 03:42:09 t 1 1 210337 748 0.00 2019-12-26 03:43:57 2019-12-26 03:44:22 t 1 1 210340 748 0.00 2019-12-26 03:45:36 2019-12-26 03:46:01 t 1 1 210341 748 0.00 2019-12-26 03:46:10 2019-12-26 03:46:34 t 1 1 210342 748 0.00 2019-12-26 03:46:43 2019-12-26 03:47:11 t 1 1 210346 562 0.00 2019-12-26 03:53:10 2019-12-26 03:53:31 t 1 1 210350 748 0.00 2019-12-26 04:01:11 2019-12-26 04:03:11 t 1 1 210354 562 0.00 2019-12-26 04:08:38 2019-12-26 04:08:43 t 1 1 210355 728 0.00 2019-12-26 04:14:37 2019-12-26 04:14:45 t 1 1 210361 728 0.00 2019-12-26 04:25:27 2019-12-26 04:25:28 t 1 1 210364 728 0.00 2019-12-26 04:32:12 2019-12-26 04:32:23 t 1 1 210366 728 0.00 2019-12-26 04:38:54 2019-12-26 04:39:07 t 1 1 210367 748 0.00 2019-12-26 04:45:26 2019-12-26 04:45:56 t 1 1 210368 562 0.00 2019-12-26 04:47:00 2019-12-26 04:47:11 t 1 1 210376 566 0.00 2019-12-26 04:47:13 2019-12-26 05:00:57 t 1 1 210377 562 0.00 2019-12-26 05:08:17 2019-12-26 05:08:40 t 1 1 210378 728 0.00 2019-12-26 05:10:22 2019-12-26 05:10:30 t 1 1 210379 516 0.00 2019-12-26 05:01:12 2019-12-26 05:18:11 t 1 1 210380 562 0.00 2019-12-26 05:19:00 2019-12-26 05:19:21 t 1 1 210384 728 0.00 2019-12-26 05:31:52 2019-12-26 05:32:06 t 1 1 210390 562 0.00 2019-12-26 06:01:51 2019-12-26 06:02:13 t 1 1 210392 722 0.00 2019-12-26 06:07:32 2019-12-26 06:09:04 t 1 1 210405 516 0.00 2019-12-26 06:30:46 2019-12-26 06:32:25 t 1 1 210406 728 0.00 2019-12-26 06:35:02 2019-12-26 06:35:17 t 1 1 210417 728 0.00 2019-12-26 06:56:01 2019-12-26 06:56:15 t 1 1 210425 689 0.00 2019-12-26 06:59:11 2019-12-26 07:10:22 t 1 1 210427 748 0.00 2019-12-26 07:09:12 2019-12-26 07:11:11 t 1 1 210428 611 0.00 2019-12-26 07:01:57 2019-12-26 07:11:34 t 1 1 210429 566 0.00 2019-12-26 06:49:41 2019-12-26 07:12:27 t 1 1 210432 562 0.00 2019-12-26 07:13:47 2019-12-26 07:14:11 t 1 1 210436 611 0.00 2019-12-26 07:11:34 2019-12-26 07:19:00 t 1 1 210443 562 0.00 2019-12-26 07:24:31 2019-12-26 07:24:55 t 1 1 210448 748 0.00 2019-12-26 07:24:46 2019-12-26 07:32:00 t 1 1 210449 562 0.00 2019-12-26 07:35:16 2019-12-26 07:35:40 t 1 1 210450 675 0.00 2019-12-26 07:33:11 2019-12-26 07:37:51 t 1 1 210453 722 0.00 2019-12-26 07:32:19 2019-12-26 07:40:16 t 1 1 210454 538 0.00 2019-12-26 07:09:25 2019-12-26 07:44:53 t 1 1 210458 591 0.00 2019-12-26 07:43:20 2019-12-26 07:47:45 t 1 1 210459 728 0.00 2019-12-26 07:48:33 2019-12-26 07:48:48 t 1 1 210460 728 0.00 2019-12-26 07:48:56 2019-12-26 07:48:56 t 1 1 210469 679 0.00 2019-12-26 07:58:12 2019-12-26 07:59:25 t 1 1 210472 748 0.00 2019-12-26 07:52:15 2019-12-26 08:00:10 t 1 1 210479 611 0.00 2019-12-26 08:13:05 2019-12-26 08:14:11 t 1 1 210484 538 0.00 2019-12-26 08:07:43 2019-12-26 08:17:07 t 1 1 210494 763 0.00 2019-12-26 08:33:50 2019-12-26 08:35:05 t 1 1 210495 681 0.00 2019-12-26 08:22:12 2019-12-26 08:36:33 t 1 1 210497 728 0.00 2019-12-26 08:37:36 2019-12-26 08:37:49 t 1 1 210508 763 0.00 2019-12-26 08:57:02 2019-12-26 08:59:24 t 1 1 210512 675 0.00 2019-12-26 08:52:48 2019-12-26 09:04:04 t 1 1 210518 611 0.00 2019-12-26 08:51:27 2019-12-26 09:05:41 t 1 1 210521 562 0.00 2019-12-26 09:04:01 2019-12-26 09:08:00 t 1 1 210525 763 0.00 2019-12-26 09:10:23 2019-12-26 09:11:11 t 1 1 210531 742 0.00 2019-12-26 09:12:45 2019-12-26 09:17:01 t 1 1 210542 611 0.00 2019-12-26 09:05:41 2019-12-26 09:25:14 t 1 1 210544 615 0.00 2019-12-26 09:20:31 2019-12-26 09:25:43 t 1 1 210547 562 0.00 2019-12-26 09:26:08 2019-12-26 09:28:06 t 1 1 210552 689 0.00 2019-12-26 09:27:21 2019-12-26 09:35:33 t 1 1 210555 562 0.00 2019-12-26 09:28:44 2019-12-26 09:36:56 t 1 1 210557 562 0.00 2019-12-26 09:40:05 2019-12-26 09:40:26 t 1 1 210559 635 0.00 2019-12-26 09:38:55 2019-12-26 09:40:51 t 1 1 210560 728 0.00 2019-12-26 09:41:35 2019-12-26 09:41:45 t 1 1 210569 615 0.00 2019-12-26 09:47:44 2019-12-26 09:56:38 t 1 1 210571 562 0.00 2019-12-26 09:59:36 2019-12-26 10:00:52 t 1 1 210573 728 0.00 2019-12-26 10:02:35 2019-12-26 10:02:43 t 1 1 210577 562 0.00 2019-12-26 10:05:34 2019-12-26 10:07:09 t 1 1 210581 696 0.00 2019-12-26 10:09:30 2019-12-26 10:10:38 t 1 1 210584 611 0.00 2019-12-26 10:14:46 2019-12-26 10:16:55 t 1 1 210589 615 0.00 2019-12-26 10:21:16 2019-12-26 10:23:03 t 1 1 210591 591 0.00 2019-12-26 08:42:32 2019-12-26 10:23:28 t 1 1 210592 728 0.00 2019-12-26 10:23:35 2019-12-26 10:23:42 t 1 1 210593 675 0.00 2019-12-26 10:16:22 2019-12-26 10:24:45 t 1 1 210598 675 0.00 2019-12-26 10:28:45 2019-12-26 10:31:04 t 1 1 210599 724 0.00 2019-12-26 10:29:24 2019-12-26 10:32:40 t 1 1 210601 728 0.00 2019-12-26 10:34:04 2019-12-26 10:34:19 t 1 1 210602 516 0.00 2019-12-26 10:33:06 2019-12-26 10:35:14 t 1 1 210603 562 0.00 2019-12-26 10:33:42 2019-12-26 10:35:35 t 1 1 210604 562 0.00 2019-12-26 10:40:06 2019-12-26 10:40:39 t 1 1 210606 728 0.00 2019-12-26 10:44:34 2019-12-26 10:45:08 t 1 1 210608 724 0.00 2019-12-26 10:32:40 2019-12-26 10:50:24 t 1 1 210609 615 0.00 2019-12-26 10:43:15 2019-12-26 10:50:43 t 1 1 210611 675 0.00 2019-12-26 10:49:13 2019-12-26 10:53:02 t 1 1 210612 728 0.00 2019-12-26 10:55:05 2019-12-26 10:55:19 t 1 1 210613 728 0.00 2019-12-26 10:55:27 2019-12-26 10:56:28 t 1 1 210615 562 0.00 2019-12-26 11:00:49 2019-12-26 11:00:49 f 1 1 210616 562 0.00 2019-12-26 10:49:58 2019-12-26 11:01:47 t 1 1 210618 483 0.00 2019-12-26 10:47:33 2019-12-26 11:02:43 t 1 1 210620 724 0.00 2019-12-26 10:50:24 2019-12-26 11:10:49 t 1 1 210621 483 0.00 2019-12-26 11:08:35 2019-12-26 11:11:40 t 1 1 210319 748 0.00 2019-12-26 03:35:40 2019-12-26 03:36:05 t 1 1 210321 728 0.00 2019-12-26 03:36:34 2019-12-26 03:36:49 t 1 1 210324 748 0.00 2019-12-26 03:37:53 2019-12-26 03:38:17 t 1 1 210325 748 0.00 2019-12-26 03:38:26 2019-12-26 03:38:50 t 1 1 210327 748 0.00 2019-12-26 03:38:59 2019-12-26 03:39:24 t 1 1 210330 748 0.00 2019-12-26 03:40:39 2019-12-26 03:41:03 t 1 1 210331 748 0.00 2019-12-26 03:41:12 2019-12-26 03:41:36 t 1 1 210333 748 0.00 2019-12-26 03:42:18 2019-12-26 03:42:42 t 1 1 210335 748 0.00 2019-12-26 03:42:51 2019-12-26 03:43:15 t 1 1 210336 748 0.00 2019-12-26 03:43:24 2019-12-26 03:43:49 t 1 1 210338 748 0.00 2019-12-26 03:44:30 2019-12-26 03:44:55 t 1 1 210339 748 0.00 2019-12-26 03:45:03 2019-12-26 03:45:28 t 1 1 210343 728 0.00 2019-12-26 03:47:04 2019-12-26 03:47:19 t 1 1 210344 748 0.00 2019-12-26 03:47:24 2019-12-26 03:48:26 t 1 1 210345 566 0.00 2019-12-26 03:32:07 2019-12-26 03:50:37 t 1 1 210348 748 0.00 2019-12-26 03:56:00 2019-12-26 03:56:10 t 1 1 210349 748 0.00 2019-12-26 03:56:23 2019-12-26 03:56:50 t 1 1 210351 728 0.00 2019-12-26 04:04:07 2019-12-26 04:04:15 t 1 1 210356 562 0.00 2019-12-26 04:14:40 2019-12-26 04:15:01 t 1 1 210357 748 0.00 2019-12-26 04:11:22 2019-12-26 04:17:10 t 1 1 210359 748 0.00 2019-12-26 04:20:15 2019-12-26 04:20:27 t 1 1 210362 562 0.00 2019-12-26 04:25:24 2019-12-26 04:25:44 t 1 1 210363 748 0.00 2019-12-26 04:30:35 2019-12-26 04:32:11 t 1 1 210374 728 0.00 2019-12-26 04:59:52 2019-12-26 05:00:06 t 1 1 210385 562 0.00 2019-12-26 05:40:34 2019-12-26 05:40:50 t 1 1 210387 728 0.00 2019-12-26 05:42:36 2019-12-26 05:42:51 t 1 1 210391 728 0.00 2019-12-26 06:03:34 2019-12-26 06:03:49 t 1 1 210398 562 0.00 2019-12-26 06:23:18 2019-12-26 06:23:41 t 1 1 210400 722 0.00 2019-12-26 06:24:20 2019-12-26 06:24:22 t 1 1 210403 722 0.00 2019-12-26 06:25:13 2019-12-26 06:26:14 t 1 1 210404 562 0.00 2019-12-26 06:30:56 2019-12-26 06:31:19 t 1 1 210407 756 0.00 2019-12-26 03:02:27 2019-12-26 06:39:51 t 1 1 210409 566 0.00 2019-12-26 06:16:42 2019-12-26 06:41:47 t 1 1 210411 748 0.00 2019-12-26 05:10:17 2019-12-26 06:43:55 t 1 1 210412 516 0.00 2019-12-26 06:42:30 2019-12-26 06:45:23 t 1 1 210413 728 0.00 2019-12-26 06:45:31 2019-12-26 06:45:46 t 1 1 210414 748 0.00 2019-12-26 06:46:49 2019-12-26 06:47:12 t 1 1 210419 748 0.00 2019-12-26 06:47:47 2019-12-26 06:58:21 t 1 1 210420 689 0.00 2019-12-26 06:42:06 2019-12-26 06:59:11 t 1 1 210421 562 0.00 2019-12-26 07:03:08 2019-12-26 07:03:24 t 1 1 210423 748 0.00 2019-12-26 06:58:21 2019-12-26 07:08:12 t 1 1 210426 748 0.00 2019-12-26 07:10:32 2019-12-26 07:10:44 t 1 1 210430 748 0.00 2019-12-26 07:10:56 2019-12-26 07:13:11 t 1 1 210431 566 0.00 2019-12-26 07:12:27 2019-12-26 07:13:29 t 1 1 210433 748 0.00 2019-12-26 07:15:10 2019-12-26 07:15:23 t 1 1 210434 566 0.00 2019-12-26 07:13:29 2019-12-26 07:16:07 t 1 1 210435 728 0.00 2019-12-26 07:17:01 2019-12-26 07:17:15 t 1 1 210437 748 0.00 2019-12-26 07:17:44 2019-12-26 07:19:11 t 1 1 210440 748 0.00 2019-12-26 07:17:51 2019-12-26 07:21:49 t 1 1 210441 748 0.00 2019-12-26 07:22:39 2019-12-26 07:22:48 t 1 1 210442 748 0.00 2019-12-26 07:24:10 2019-12-26 07:24:15 t 1 1 210445 728 0.00 2019-12-26 07:27:31 2019-12-26 07:27:45 t 1 1 210456 562 0.00 2019-12-26 07:45:59 2019-12-26 07:46:22 t 1 1 210457 722 0.00 2019-12-26 07:40:16 2019-12-26 07:47:10 t 1 1 210461 728 0.00 2019-12-26 07:49:16 2019-12-26 07:50:20 t 1 1 210462 748 0.00 2019-12-26 07:31:05 2019-12-26 07:52:15 t 1 1 210463 689 0.00 2019-12-26 07:29:24 2019-12-26 07:56:15 t 1 1 210465 562 0.00 2019-12-26 07:56:06 2019-12-26 07:56:31 t 1 1 210466 566 0.00 2019-12-26 07:16:07 2019-12-26 07:57:17 t 1 1 210467 656 0.00 2019-12-25 23:27:46 2019-12-26 07:58:03 t 1 1 210470 728 0.00 2019-12-26 07:59:48 2019-12-26 08:00:02 t 1 1 210473 748 0.00 2019-12-26 08:00:10 2019-12-26 08:01:57 t 1 1 210475 728 0.00 2019-12-26 08:10:20 2019-12-26 08:10:28 t 1 1 210477 611 0.00 2019-12-26 07:46:29 2019-12-26 08:11:28 t 1 1 210478 675 0.00 2019-12-26 08:06:58 2019-12-26 08:12:35 t 1 1 210481 562 0.00 2019-12-26 08:14:23 2019-12-26 08:15:50 t 1 1 210482 707 0.00 2019-12-26 07:56:54 2019-12-26 08:16:44 t 1 1 210485 631 0.00 2019-12-26 08:13:53 2019-12-26 08:19:07 t 1 1 210488 615 0.00 2019-12-26 08:17:36 2019-12-26 08:22:05 t 1 1 210490 562 0.00 2019-12-26 08:25:10 2019-12-26 08:25:26 t 1 1 210492 564 0.00 2019-12-26 08:27:45 2019-12-26 08:29:44 t 1 1 210498 611 0.00 2019-12-26 08:40:28 2019-12-26 08:40:50 t 1 1 210501 728 0.00 2019-12-26 08:48:06 2019-12-26 08:48:13 t 1 1 210503 615 0.00 2019-12-26 08:43:22 2019-12-26 08:52:33 t 1 1 210505 763 0.00 2019-12-26 08:55:09 2019-12-26 08:57:03 t 1 1 210507 728 0.00 2019-12-26 08:58:36 2019-12-26 08:58:45 t 1 1 210509 763 0.00 2019-12-26 08:59:24 2019-12-26 09:01:13 t 1 1 210511 763 0.00 2019-12-26 09:01:13 2019-12-26 09:01:21 t 1 1 210514 514 0.00 2019-12-26 08:11:35 2019-12-26 09:04:35 t 1 1 210516 514 0.00 2019-12-26 09:04:34 2019-12-26 09:05:03 t 1 1 210517 763 0.00 2019-12-26 09:04:30 2019-12-26 09:05:40 t 1 1 210519 689 0.00 2019-12-26 07:56:45 2019-12-26 09:06:07 t 1 1 210522 728 0.00 2019-12-26 09:09:07 2019-12-26 09:09:15 t 1 1 210523 763 0.00 2019-12-26 09:05:40 2019-12-26 09:10:20 t 1 1 210524 637 0.00 2019-12-26 09:04:23 2019-12-26 09:10:45 t 1 1 210527 689 0.00 2019-12-26 09:06:24 2019-12-26 09:12:35 t 1 1 210529 763 0.00 2019-12-26 09:11:11 2019-12-26 09:14:38 t 1 1 210532 689 0.00 2019-12-26 09:15:27 2019-12-26 09:17:03 t 1 1 210533 763 0.00 2019-12-26 09:14:38 2019-12-26 09:18:16 t 1 1 210534 689 0.00 2019-12-26 09:17:20 2019-12-26 09:18:37 t 1 1 210537 728 0.00 2019-12-26 09:20:00 2019-12-26 09:20:00 t 1 1 210539 763 0.00 2019-12-26 09:18:17 2019-12-26 09:21:10 t 1 1 210540 763 0.00 2019-12-26 09:21:10 2019-12-26 09:23:30 t 1 1 210541 728 0.00 2019-12-26 09:23:21 2019-12-26 09:25:11 t 1 1 210545 635 0.00 2019-12-26 09:12:48 2019-12-26 09:25:53 t 1 1 210549 679 0.00 2019-12-26 09:27:45 2019-12-26 09:28:58 t 1 1 210551 611 0.00 2019-12-26 09:25:14 2019-12-26 09:35:19 t 1 1 210553 707 0.00 2019-12-26 09:13:04 2019-12-26 09:35:40 t 1 1 210554 683 0.00 2019-12-26 07:48:53 2019-12-26 09:36:52 t 1 1 210556 675 0.00 2019-12-26 09:34:23 2019-12-26 09:40:20 t 1 1 210564 671 0.00 2019-12-26 09:43:37 2019-12-26 09:46:58 t 1 1 210566 707 0.00 2019-12-26 09:48:02 2019-12-26 09:51:52 t 1 1 210567 728 0.00 2019-12-26 09:52:04 2019-12-26 09:52:38 t 1 1 210579 615 0.00 2019-12-26 10:03:52 2019-12-26 10:10:33 t 1 1 210583 611 0.00 2019-12-26 10:09:42 2019-12-26 10:14:47 t 1 1 210590 611 0.00 2019-12-26 10:18:14 2019-12-26 10:23:25 t 1 1 210594 562 0.00 2019-12-26 10:25:05 2019-12-26 10:25:32 t 1 1 210320 748 0.00 2019-12-26 03:36:13 2019-12-26 03:36:38 t 1 1 210322 748 0.00 2019-12-26 03:36:47 2019-12-26 03:37:11 t 1 1 210323 748 0.00 2019-12-26 03:37:20 2019-12-26 03:37:44 t 1 1 210328 748 0.00 2019-12-26 03:39:32 2019-12-26 03:39:57 t 1 1 210329 748 0.00 2019-12-26 03:40:05 2019-12-26 03:40:30 t 1 1 210334 562 0.00 2019-12-26 03:42:28 2019-12-26 03:42:46 t 1 1 210347 728 0.00 2019-12-26 03:53:38 2019-12-26 03:53:47 t 1 1 210352 562 0.00 2019-12-26 04:03:52 2019-12-26 04:04:15 t 1 1 210353 748 0.00 2019-12-26 04:06:23 2019-12-26 04:06:50 t 1 1 210358 748 0.00 2019-12-26 04:18:36 2019-12-26 04:18:47 t 1 1 210360 728 0.00 2019-12-26 04:25:06 2019-12-26 04:25:20 t 1 1 210365 562 0.00 2019-12-26 04:36:07 2019-12-26 04:36:30 t 1 1 210369 566 0.00 2019-12-26 03:50:37 2019-12-26 04:47:13 t 1 1 210370 728 0.00 2019-12-26 04:49:23 2019-12-26 04:49:30 t 1 1 210371 748 0.00 2019-12-26 04:50:54 2019-12-26 04:51:26 t 1 1 210372 707 0.00 2019-12-26 04:41:29 2019-12-26 04:52:50 t 1 1 210373 562 0.00 2019-12-26 04:57:38 2019-12-26 04:57:58 t 1 1 210375 683 0.00 2019-12-26 04:56:37 2019-12-26 05:00:22 t 1 1 210381 728 0.00 2019-12-26 05:20:51 2019-12-26 05:20:59 t 1 1 210382 728 0.00 2019-12-26 05:21:07 2019-12-26 05:21:31 t 1 1 210383 562 0.00 2019-12-26 05:29:43 2019-12-26 05:30:09 t 1 1 210386 728 0.00 2019-12-26 05:42:21 2019-12-26 05:42:28 t 1 1 210388 562 0.00 2019-12-26 05:51:12 2019-12-26 05:51:32 t 1 1 210389 728 0.00 2019-12-26 05:53:05 2019-12-26 05:53:19 t 1 1 210393 562 0.00 2019-12-26 06:12:36 2019-12-26 06:12:59 t 1 1 210394 728 0.00 2019-12-26 06:14:04 2019-12-26 06:14:12 t 1 1 210395 566 0.00 2019-12-26 05:00:57 2019-12-26 06:16:42 t 1 1 210396 722 0.00 2019-12-26 06:10:43 2019-12-26 06:20:46 t 1 1 210397 722 0.00 2019-12-26 06:21:01 2019-12-26 06:21:31 t 1 1 210399 722 0.00 2019-12-26 06:21:51 2019-12-26 06:24:12 t 1 1 210401 728 0.00 2019-12-26 06:24:33 2019-12-26 06:24:41 t 1 1 210402 722 0.00 2019-12-26 06:25:23 2019-12-26 06:25:25 t 1 1 210408 683 0.00 2019-12-26 05:00:22 2019-12-26 06:39:54 t 1 1 210410 562 0.00 2019-12-26 06:41:38 2019-12-26 06:41:59 t 1 1 210415 566 0.00 2019-12-26 06:41:46 2019-12-26 06:49:42 t 1 1 210416 562 0.00 2019-12-26 06:52:21 2019-12-26 06:52:41 t 1 1 210418 516 0.00 2019-12-26 06:52:07 2019-12-26 06:57:58 t 1 1 210422 728 0.00 2019-12-26 07:06:30 2019-12-26 07:06:45 t 1 1 210424 748 0.00 2019-12-26 07:10:16 2019-12-26 07:10:21 t 1 1 210438 689 0.00 2019-12-26 07:10:22 2019-12-26 07:20:17 t 1 1 210439 516 0.00 2019-12-26 07:19:20 2019-12-26 07:21:14 t 1 1 210444 514 0.00 2019-12-26 01:26:18 2019-12-26 07:25:43 t 1 1 210446 681 0.00 2019-12-26 00:41:00 2019-12-26 07:28:09 t 1 1 210447 689 0.00 2019-12-26 07:20:17 2019-12-26 07:29:24 t 1 1 210451 728 0.00 2019-12-26 07:38:03 2019-12-26 07:38:18 t 1 1 210452 562 0.00 2019-12-26 07:38:32 2019-12-26 07:38:45 t 1 1 210455 675 0.00 2019-12-26 07:39:33 2019-12-26 07:45:39 t 1 1 210464 707 0.00 2019-12-26 06:55:35 2019-12-26 07:56:19 t 1 1 210468 562 0.00 2019-12-26 07:58:42 2019-12-26 07:58:47 t 1 1 210471 591 0.00 2019-12-26 07:53:46 2019-12-26 08:00:05 t 1 1 210474 562 0.00 2019-12-26 08:06:52 2019-12-26 08:07:10 t 1 1 210476 514 0.00 2019-12-26 07:26:42 2019-12-26 08:11:25 t 1 1 210480 566 0.00 2019-12-26 07:57:17 2019-12-26 08:15:46 t 1 1 210483 566 0.00 2019-12-26 08:15:46 2019-12-26 08:17:01 t 1 1 210486 564 0.00 2019-12-26 08:04:24 2019-12-26 08:19:13 t 1 1 210487 728 0.00 2019-12-26 08:20:49 2019-12-26 08:20:57 t 1 1 210489 681 0.00 2019-12-26 07:28:09 2019-12-26 08:22:12 t 1 1 210491 564 0.00 2019-12-26 08:19:13 2019-12-26 08:27:45 t 1 1 210493 611 0.00 2019-12-26 08:14:05 2019-12-26 08:32:15 t 1 1 210496 637 0.00 2019-12-26 08:15:53 2019-12-26 08:36:57 t 1 1 210499 724 0.00 2019-12-26 08:40:03 2019-12-26 08:41:08 t 1 1 210500 611 0.00 2019-12-26 08:46:42 2019-12-26 08:47:32 t 1 1 210502 562 0.00 2019-12-26 08:31:52 2019-12-26 08:50:25 t 1 1 210504 538 0.00 2019-12-26 08:23:06 2019-12-26 08:53:33 t 1 1 210506 615 0.00 2019-12-26 08:52:33 2019-12-26 08:58:44 t 1 1 210510 691 0.00 2019-12-26 08:59:56 2019-12-26 09:01:17 t 1 1 210513 763 0.00 2019-12-26 09:01:21 2019-12-26 09:04:30 t 1 1 210515 637 0.00 2019-12-26 08:36:57 2019-12-26 09:04:39 t 1 1 210520 514 0.00 2019-12-26 09:05:02 2019-12-26 09:06:18 t 1 1 210526 635 0.00 2019-12-26 08:35:04 2019-12-26 09:11:29 t 1 1 210528 742 0.00 2019-12-26 09:00:19 2019-12-26 09:12:45 t 1 1 210530 615 0.00 2019-12-26 08:58:44 2019-12-26 09:14:51 t 1 1 210535 562 0.00 2019-12-26 09:19:10 2019-12-26 09:19:28 t 1 1 210536 728 0.00 2019-12-26 09:19:37 2019-12-26 09:19:52 t 1 1 210538 562 0.00 2019-12-26 09:20:28 2019-12-26 09:21:07 t 1 1 210543 696 0.00 2019-12-26 09:08:09 2019-12-26 09:25:27 t 1 1 210546 689 0.00 2019-12-26 09:19:42 2019-12-26 09:26:51 t 1 1 210548 635 0.00 2019-12-26 09:26:30 2019-12-26 09:28:43 t 1 1 210550 728 0.00 2019-12-26 09:29:55 2019-12-26 09:30:09 t 1 1 210558 728 0.00 2019-12-26 09:40:25 2019-12-26 09:40:39 t 1 1 210561 689 0.00 2019-12-26 09:35:56 2019-12-26 09:42:45 t 1 1 210562 562 0.00 2019-12-26 09:43:03 2019-12-26 09:43:23 t 1 1 210563 689 0.00 2019-12-26 09:42:47 2019-12-26 09:45:55 t 1 1 210565 562 0.00 2019-12-26 09:50:14 2019-12-26 09:50:33 t 1 1 210568 689 0.00 2019-12-26 09:54:49 2019-12-26 09:55:49 t 1 1 210570 675 0.00 2019-12-26 09:55:51 2019-12-26 09:57:56 t 1 1 210572 696 0.00 2019-12-26 09:56:04 2019-12-26 10:01:52 t 1 1 210574 562 0.00 2019-12-26 10:02:32 2019-12-26 10:03:49 t 1 1 210575 679 0.00 2019-12-26 09:53:30 2019-12-26 10:05:38 t 1 1 210576 734 0.00 2019-12-26 10:00:49 2019-12-26 10:06:43 t 1 1 210578 679 0.00 2019-12-26 10:05:38 2019-12-26 10:07:46 t 1 1 210580 562 0.00 2019-12-26 10:08:39 2019-12-26 10:10:35 t 1 1 210582 728 0.00 2019-12-26 10:13:05 2019-12-26 10:13:12 t 1 1 210585 562 0.00 2019-12-26 10:10:48 2019-12-26 10:17:15 t 1 1 210586 611 0.00 2019-12-26 10:16:55 2019-12-26 10:18:14 t 1 1 210587 683 0.00 2019-12-26 09:36:54 2019-12-26 10:21:45 t 1 1 210588 724 0.00 2019-12-26 10:17:04 2019-12-26 10:22:47 t 1 1 210595 675 0.00 2019-12-26 10:24:45 2019-12-26 10:28:45 t 1 1 210596 724 0.00 2019-12-26 10:22:47 2019-12-26 10:29:25 t 1 1 210597 562 0.00 2019-12-26 10:30:01 2019-12-26 10:30:35 t 1 1 210600 516 0.00 2019-12-26 10:18:34 2019-12-26 10:33:06 t 1 1 210605 564 0.00 2019-12-26 10:29:29 2019-12-26 10:44:09 t 1 1 210607 694 0.00 2019-12-26 09:47:53 2019-12-26 10:49:42 t 1 1 210610 514 0.00 2019-12-26 10:52:33 2019-12-26 10:52:53 t 1 1 210614 694 0.00 2019-12-26 10:49:41 2019-12-26 10:56:30 t 1 1 210617 728 0.00 2019-12-26 11:01:59 2019-12-26 11:02:12 t 1 1 210619 562 0.00 2019-12-26 08:53:34 2019-12-26 11:04:56 t 1 1 210622 696 0.00 2019-12-26 11:10:40 2019-12-26 11:12:45 t 1 1 210624 591 0.00 2019-12-26 10:23:28 2019-12-26 11:13:28 t 1 1 210626 481 0.00 2019-12-26 10:54:42 2019-12-26 11:21:36 t 1 1 210627 696 0.00 2019-12-26 11:13:44 2019-12-26 11:22:03 t 1 1 210628 611 0.00 2019-12-26 11:09:45 2019-12-26 11:23:05 t 1 1 210633 615 0.00 2019-12-26 11:24:45 2019-12-26 11:26:06 t 1 1 210635 696 0.00 2019-12-26 11:23:42 2019-12-26 11:28:45 t 1 1 210636 728 0.00 2019-12-26 11:33:32 2019-12-26 11:33:40 t 1 1 210644 675 0.00 2019-12-26 11:40:16 2019-12-26 11:43:41 t 1 1 210651 728 0.00 2019-12-26 11:55:03 2019-12-26 11:55:18 t 1 1 210652 667 0.00 2019-12-26 11:57:44 2019-12-26 12:02:48 t 1 1 210653 483 0.00 2019-12-26 11:58:47 2019-12-26 12:03:07 t 1 1 210655 667 0.00 2019-12-26 12:04:00 2019-12-26 12:04:09 t 1 1 210659 516 0.00 2019-12-26 12:02:57 2019-12-26 12:16:06 t 1 1 210663 675 0.00 2019-12-26 12:15:05 2019-12-26 12:18:07 t 1 1 210665 679 0.00 2019-12-26 12:07:12 2019-12-26 12:21:02 t 1 1 210667 728 0.00 2019-12-26 12:26:49 2019-12-26 12:27:03 t 1 1 210669 615 0.00 2019-12-26 12:22:25 2019-12-26 12:28:03 t 1 1 210673 694 0.00 2019-12-26 12:29:46 2019-12-26 12:31:29 t 1 1 210674 694 0.00 2019-12-26 12:31:34 2019-12-26 12:32:41 t 1 1 210677 694 0.00 2019-12-26 12:33:31 2019-12-26 12:34:38 t 1 1 210681 694 0.00 2019-12-26 12:37:26 2019-12-26 12:38:57 t 1 1 210683 551 0.00 2019-12-26 01:35:31 2019-12-26 12:46:15 t 1 1 210684 675 0.00 2019-12-26 12:45:16 2019-12-26 12:46:30 t 1 1 210687 671 0.00 2019-12-26 12:44:45 2019-12-26 12:49:03 t 1 1 210692 694 0.00 2019-12-26 12:42:14 2019-12-26 12:59:48 t 1 1 210695 728 0.00 2019-12-26 12:57:14 2019-12-26 13:02:42 t 1 1 210697 220 0.00 2019-12-26 11:42:59 2019-12-26 13:04:54 t 1 1 210700 220 0.00 2019-12-26 13:06:47 2019-12-26 13:07:26 t 1 1 210702 728 0.00 2019-12-26 13:02:42 2019-12-26 13:07:46 t 1 1 210705 611 0.00 2019-12-26 13:07:07 2019-12-26 13:10:24 t 1 1 210708 220 0.00 2019-12-26 13:07:26 2019-12-26 13:14:14 t 1 1 210709 516 0.00 2019-12-26 13:13:40 2019-12-26 13:14:44 t 1 1 210711 220 0.00 2019-12-26 13:14:48 2019-12-26 13:17:08 t 1 1 210717 490 0.00 2019-12-26 13:18:21 2019-12-26 13:20:56 t 1 1 210721 538 0.00 2019-12-26 13:20:34 2019-12-26 13:26:25 t 1 1 210724 728 0.00 2019-12-26 13:29:40 2019-12-26 13:29:41 t 1 1 210725 763 0.00 2019-12-26 13:29:32 2019-12-26 13:30:50 t 1 1 210729 763 0.00 2019-12-26 13:32:26 2019-12-26 13:33:41 t 1 1 210735 763 0.00 2019-12-26 13:35:05 2019-12-26 13:38:31 t 1 1 210738 728 0.00 2019-12-26 13:39:31 2019-12-26 13:40:12 t 1 1 210739 679 0.00 2019-12-26 13:21:23 2019-12-26 13:41:21 t 1 1 210742 483 0.00 2019-12-26 13:36:47 2019-12-26 13:43:33 t 1 1 210745 566 0.00 2019-12-26 13:37:32 2019-12-26 13:46:58 t 1 1 210746 611 0.00 2019-12-26 13:40:01 2019-12-26 13:47:34 t 1 1 210748 691 0.00 2019-12-26 13:48:40 2019-12-26 13:49:44 t 1 1 210752 503 0.00 2019-12-26 13:45:38 2019-12-26 13:52:51 t 1 1 210753 566 0.00 2019-12-26 13:46:58 2019-12-26 13:55:22 t 1 1 210758 694 0.00 2019-12-26 13:06:36 2019-12-26 14:03:50 t 1 1 210760 566 0.00 2019-12-26 13:55:22 2019-12-26 14:06:53 t 1 1 210761 679 0.00 2019-12-26 14:07:02 2019-12-26 14:07:13 t 1 1 210762 679 0.00 2019-12-26 14:07:32 2019-12-26 14:07:55 t 1 1 210774 637 0.00 2019-12-26 13:54:16 2019-12-26 14:12:23 t 1 1 210775 679 0.00 2019-12-26 14:11:48 2019-12-26 14:12:36 t 1 1 210776 763 0.00 2019-12-26 14:10:39 2019-12-26 14:13:18 t 1 1 210779 679 0.00 2019-12-26 14:13:48 2019-12-26 14:14:08 t 1 1 210792 591 0.00 2019-12-26 14:17:02 2019-12-26 14:18:59 t 1 1 210795 679 0.00 2019-12-26 14:19:20 2019-12-26 14:19:35 t 1 1 210796 728 0.00 2019-12-26 14:19:37 2019-12-26 14:19:49 t 1 1 210798 679 0.00 2019-12-26 14:20:02 2019-12-26 14:20:17 t 1 1 210799 679 0.00 2019-12-26 14:20:23 2019-12-26 14:20:37 t 1 1 210801 679 0.00 2019-12-26 14:20:43 2019-12-26 14:21:16 t 1 1 210802 763 0.00 2019-12-26 14:13:18 2019-12-26 14:21:37 t 1 1 210805 481 0.00 2019-12-26 14:08:11 2019-12-26 14:22:20 t 1 1 210812 679 0.00 2019-12-26 14:23:52 2019-12-26 14:24:32 t 1 1 210814 679 0.00 2019-12-26 14:24:59 2019-12-26 14:25:25 t 1 1 210815 679 0.00 2019-12-26 14:25:30 2019-12-26 14:25:46 t 1 1 210816 679 0.00 2019-12-26 14:25:52 2019-12-26 14:26:07 t 1 1 210817 679 0.00 2019-12-26 14:26:12 2019-12-26 14:26:33 t 1 1 210819 711 0.00 2019-12-26 12:55:24 2019-12-26 14:26:38 t 1 1 210820 675 0.00 2019-12-26 14:25:11 2019-12-26 14:26:41 t 1 1 210825 679 0.00 2019-12-26 14:27:37 2019-12-26 14:27:52 t 1 1 210829 591 0.00 2019-12-26 14:23:13 2019-12-26 14:28:49 t 1 1 210833 679 0.00 2019-12-26 14:29:43 2019-12-26 14:29:58 t 1 1 210834 679 0.00 2019-12-26 14:30:04 2019-12-26 14:30:28 t 1 1 210837 679 0.00 2019-12-26 14:30:55 2019-12-26 14:31:15 t 1 1 210838 679 0.00 2019-12-26 14:31:21 2019-12-26 14:31:35 t 1 1 210841 711 0.00 2019-12-26 14:26:38 2019-12-26 14:32:14 t 1 1 210844 679 0.00 2019-12-26 14:32:59 2019-12-26 14:33:14 t 1 1 210845 679 0.00 2019-12-26 14:33:20 2019-12-26 14:33:35 t 1 1 210846 728 0.00 2019-12-26 14:33:36 2019-12-26 14:33:50 t 1 1 210848 637 0.00 2019-12-26 14:27:58 2019-12-26 14:34:23 t 1 1 210854 679 0.00 2019-12-26 14:36:06 2019-12-26 14:36:20 t 1 1 210855 679 0.00 2019-12-26 14:36:26 2019-12-26 14:36:42 t 1 1 210857 679 0.00 2019-12-26 14:36:48 2019-12-26 14:37:04 t 1 1 210858 679 0.00 2019-12-26 14:37:10 2019-12-26 14:37:45 t 1 1 210860 679 0.00 2019-12-26 14:37:51 2019-12-26 14:38:12 t 1 1 210862 566 0.00 2019-12-26 14:27:18 2019-12-26 14:39:08 t 1 1 210864 763 0.00 2019-12-26 14:38:19 2019-12-26 14:40:04 t 1 1 210866 679 0.00 2019-12-26 14:40:26 2019-12-26 14:40:52 t 1 1 210872 679 0.00 2019-12-26 14:42:28 2019-12-26 14:43:00 t 1 1 210875 763 0.00 2019-12-26 14:42:03 2019-12-26 14:44:09 t 1 1 210882 679 0.00 2019-12-26 14:48:03 2019-12-26 14:48:37 t 1 1 210888 679 0.00 2019-12-26 14:50:44 2019-12-26 14:50:59 t 1 1 210891 679 0.00 2019-12-26 14:52:01 2019-12-26 14:52:21 t 1 1 210892 679 0.00 2019-12-26 14:52:27 2019-12-26 14:52:48 t 1 1 210894 544 0.00 2019-12-26 14:00:33 2019-12-26 14:52:53 t 1 1 210896 763 0.00 2019-12-26 14:48:36 2019-12-26 14:53:30 t 1 1 210898 679 0.00 2019-12-26 14:53:52 2019-12-26 14:54:07 t 1 1 210901 728 0.00 2019-12-26 14:54:36 2019-12-26 14:54:51 t 1 1 210904 679 0.00 2019-12-26 14:55:55 2019-12-26 14:56:09 t 1 1 210905 566 0.00 2019-12-26 14:47:02 2019-12-26 14:57:18 t 1 1 210907 763 0.00 2019-12-26 14:53:30 2019-12-26 14:57:35 t 1 1 210909 679 0.00 2019-12-26 14:57:55 2019-12-26 14:58:10 t 1 1 210910 220 0.00 2019-12-26 14:48:50 2019-12-26 14:59:12 t 1 1 210912 637 0.00 2019-12-26 14:34:58 2019-12-26 14:59:38 t 1 1 210918 763 0.00 2019-12-26 15:00:36 2019-12-26 15:03:03 t 1 1 210623 728 0.00 2019-12-26 11:12:32 2019-12-26 11:12:46 t 1 1 210625 679 0.00 2019-12-26 11:17:47 2019-12-26 11:19:02 t 1 1 210629 728 0.00 2019-12-26 11:23:01 2019-12-26 11:23:11 t 1 1 210630 696 0.00 2019-12-26 11:22:03 2019-12-26 11:23:42 t 1 1 210632 724 0.00 2019-12-26 11:10:49 2019-12-26 11:25:54 t 1 1 210634 671 0.00 2019-12-26 11:26:00 2019-12-26 11:28:14 t 1 1 210638 728 0.00 2019-12-26 11:34:03 2019-12-26 11:34:17 t 1 1 210641 696 0.00 2019-12-26 11:28:45 2019-12-26 11:38:17 t 1 1 210643 683 0.00 2019-12-26 11:41:02 2019-12-26 11:43:14 t 1 1 210645 728 0.00 2019-12-26 11:44:34 2019-12-26 11:44:48 t 1 1 210648 671 0.00 2019-12-26 11:47:49 2019-12-26 11:50:01 t 1 1 210650 675 0.00 2019-12-26 11:49:28 2019-12-26 11:53:05 t 1 1 210654 681 0.00 2019-12-26 08:36:33 2019-12-26 12:03:15 t 1 1 210656 667 0.00 2019-12-26 12:05:01 2019-12-26 12:05:11 t 1 1 210657 728 0.00 2019-12-26 12:05:33 2019-12-26 12:05:48 t 1 1 210662 483 0.00 2019-12-26 12:03:07 2019-12-26 12:17:16 t 1 1 210666 728 0.00 2019-12-26 12:26:33 2019-12-26 12:26:41 t 1 1 210668 516 0.00 2019-12-26 12:16:06 2019-12-26 12:27:23 t 1 1 210670 481 0.00 2019-12-26 11:37:39 2019-12-26 12:28:07 t 1 1 210672 694 0.00 2019-12-26 10:57:15 2019-12-26 12:30:41 t 1 1 210678 694 0.00 2019-12-26 12:34:42 2019-12-26 12:35:30 t 1 1 210682 611 0.00 2019-12-26 12:39:40 2019-12-26 12:42:19 t 1 1 210685 728 0.00 2019-12-26 12:29:54 2019-12-26 12:46:33 t 1 1 210686 696 0.00 2019-12-26 12:34:24 2019-12-26 12:47:59 t 1 1 210690 551 0.00 2019-12-26 12:46:15 2019-12-26 12:55:49 t 1 1 210691 728 0.00 2019-12-26 12:52:08 2019-12-26 12:57:14 t 1 1 210693 679 0.00 2019-12-26 12:58:17 2019-12-26 13:00:12 t 1 1 210699 611 0.00 2019-12-26 13:04:06 2019-12-26 13:07:07 t 1 1 210703 551 0.00 2019-12-26 12:55:49 2019-12-26 13:08:23 t 1 1 210707 516 0.00 2019-12-26 13:09:19 2019-12-26 13:13:41 t 1 1 210713 566 0.00 2019-12-26 13:10:45 2019-12-26 13:18:18 t 1 1 210715 728 0.00 2019-12-26 13:19:10 2019-12-26 13:19:44 t 1 1 210716 538 0.00 2019-12-26 13:04:12 2019-12-26 13:20:35 t 1 1 210718 679 0.00 2019-12-26 12:58:23 2019-12-26 13:21:23 t 1 1 210720 637 0.00 2019-12-26 13:12:53 2019-12-26 13:26:11 t 1 1 210722 611 0.00 2019-12-26 13:19:02 2019-12-26 13:26:26 t 1 1 210727 763 0.00 2019-12-26 13:30:49 2019-12-26 13:32:22 t 1 1 210728 490 0.00 2019-12-26 13:20:56 2019-12-26 13:32:57 t 1 1 210730 728 0.00 2019-12-26 13:33:01 2019-12-26 13:34:12 t 1 1 210732 490 0.00 2019-12-26 13:32:57 2019-12-26 13:36:03 t 1 1 210734 611 0.00 2019-12-26 13:26:26 2019-12-26 13:37:51 t 1 1 210736 637 0.00 2019-12-26 13:26:22 2019-12-26 13:39:21 t 1 1 210737 551 0.00 2019-12-26 13:31:29 2019-12-26 13:40:01 t 1 1 210740 637 0.00 2019-12-26 13:39:27 2019-12-26 13:41:25 t 1 1 210749 538 0.00 2019-12-26 13:41:08 2019-12-26 13:49:53 t 1 1 210750 728 0.00 2019-12-26 13:50:20 2019-12-26 13:50:35 t 1 1 210754 591 0.00 2019-12-26 13:56:23 2019-12-26 13:57:42 t 1 1 210756 728 0.00 2019-12-26 14:00:50 2019-12-26 14:00:58 t 1 1 210757 763 0.00 2019-12-26 14:00:58 2019-12-26 14:01:53 t 1 1 210763 481 0.00 2019-12-26 13:54:00 2019-12-26 14:08:11 t 1 1 210765 679 0.00 2019-12-26 14:08:42 2019-12-26 14:08:56 t 1 1 210767 679 0.00 2019-12-26 14:09:46 2019-12-26 14:10:01 t 1 1 210768 611 0.00 2019-12-26 13:47:40 2019-12-26 14:10:37 t 1 1 210769 763 0.00 2019-12-26 14:01:52 2019-12-26 14:10:40 t 1 1 210772 728 0.00 2019-12-26 14:11:20 2019-12-26 14:11:35 t 1 1 210773 728 0.00 2019-12-26 14:11:43 2019-12-26 14:11:44 t 1 1 210777 679 0.00 2019-12-26 14:12:43 2019-12-26 14:13:26 t 1 1 210778 679 0.00 2019-12-26 14:13:34 2019-12-26 14:13:35 t 1 1 210780 679 0.00 2019-12-26 14:14:14 2019-12-26 14:14:30 t 1 1 210781 679 0.00 2019-12-26 14:14:36 2019-12-26 14:15:16 t 1 1 210782 679 0.00 2019-12-26 14:15:22 2019-12-26 14:16:10 t 1 1 210785 679 0.00 2019-12-26 14:16:37 2019-12-26 14:16:52 t 1 1 210787 679 0.00 2019-12-26 14:16:58 2019-12-26 14:17:19 t 1 1 210788 687 0.00 2019-12-26 14:02:37 2019-12-26 14:17:38 t 1 1 210790 679 0.00 2019-12-26 14:17:46 2019-12-26 14:18:12 t 1 1 210791 679 0.00 2019-12-26 14:18:18 2019-12-26 14:18:38 t 1 1 210793 671 0.00 2019-12-26 14:17:03 2019-12-26 14:19:14 t 1 1 210797 679 0.00 2019-12-26 14:19:41 2019-12-26 14:19:56 t 1 1 210803 679 0.00 2019-12-26 14:21:22 2019-12-26 14:21:37 t 1 1 210804 679 0.00 2019-12-26 14:21:42 2019-12-26 14:21:57 t 1 1 210809 679 0.00 2019-12-26 14:22:49 2019-12-26 14:23:20 t 1 1 210818 551 0.00 2019-12-26 13:48:49 2019-12-26 14:26:38 t 1 1 210821 728 0.00 2019-12-26 14:26:38 2019-12-26 14:26:50 t 1 1 210823 566 0.00 2019-12-26 14:17:06 2019-12-26 14:27:18 t 1 1 210824 679 0.00 2019-12-26 14:27:06 2019-12-26 14:27:31 t 1 1 210828 679 0.00 2019-12-26 14:27:57 2019-12-26 14:28:29 t 1 1 210830 679 0.00 2019-12-26 14:28:35 2019-12-26 14:28:50 t 1 1 210840 220 0.00 2019-12-26 13:17:08 2019-12-26 14:32:13 t 1 1 210843 679 0.00 2019-12-26 14:32:39 2019-12-26 14:32:54 t 1 1 210847 679 0.00 2019-12-26 14:33:41 2019-12-26 14:33:55 t 1 1 210849 763 0.00 2019-12-26 14:31:09 2019-12-26 14:34:35 t 1 1 210853 679 0.00 2019-12-26 14:35:45 2019-12-26 14:36:00 t 1 1 210861 679 0.00 2019-12-26 14:38:18 2019-12-26 14:38:52 t 1 1 210868 763 0.00 2019-12-26 14:40:06 2019-12-26 14:41:26 t 1 1 210869 679 0.00 2019-12-26 14:41:19 2019-12-26 14:42:03 t 1 1 210870 679 0.00 2019-12-26 14:42:08 2019-12-26 14:42:22 t 1 1 210876 728 0.00 2019-12-26 14:44:06 2019-12-26 14:44:14 t 1 1 210880 679 0.00 2019-12-26 14:47:43 2019-12-26 14:47:57 t 1 1 210884 679 0.00 2019-12-26 14:48:43 2019-12-26 14:48:58 t 1 1 210886 679 0.00 2019-12-26 14:49:59 2019-12-26 14:50:13 t 1 1 210887 679 0.00 2019-12-26 14:50:19 2019-12-26 14:50:38 t 1 1 210890 679 0.00 2019-12-26 14:51:04 2019-12-26 14:51:56 t 1 1 210893 578 0.00 2019-12-26 14:41:31 2019-12-26 14:52:52 t 1 1 210897 679 0.00 2019-12-26 14:53:14 2019-12-26 14:53:46 t 1 1 210900 679 0.00 2019-12-26 14:54:31 2019-12-26 14:54:46 t 1 1 210902 679 0.00 2019-12-26 14:54:51 2019-12-26 14:55:05 t 1 1 210903 679 0.00 2019-12-26 14:55:10 2019-12-26 14:55:49 t 1 1 210908 679 0.00 2019-12-26 14:57:33 2019-12-26 14:57:50 t 1 1 210913 679 0.00 2019-12-26 14:59:28 2019-12-26 14:59:55 t 1 1 210914 679 0.00 2019-12-26 15:00:01 2019-12-26 15:00:16 t 1 1 210916 679 0.00 2019-12-26 15:00:22 2019-12-26 15:02:00 t 1 1 210922 679 0.00 2019-12-26 15:04:07 2019-12-26 15:04:21 t 1 1 210924 679 0.00 2019-12-26 15:04:27 2019-12-26 15:04:41 t 1 1 210925 679 0.00 2019-12-26 15:04:47 2019-12-26 15:05:08 t 1 1 210926 679 0.00 2019-12-26 15:05:13 2019-12-26 15:05:34 t 1 1 210928 637 0.00 2019-12-26 15:00:00 2019-12-26 15:05:57 t 1 1 210930 679 0.00 2019-12-26 15:05:40 2019-12-26 15:06:06 t 1 1 210631 679 0.00 2019-12-26 11:19:02 2019-12-26 11:24:10 t 1 1 210637 728 0.00 2019-12-26 11:33:47 2019-12-26 11:33:55 t 1 1 210639 538 0.00 2019-12-26 11:27:18 2019-12-26 11:35:37 t 1 1 210640 481 0.00 2019-12-26 11:21:36 2019-12-26 11:37:39 t 1 1 210642 683 0.00 2019-12-26 10:21:44 2019-12-26 11:41:03 t 1 1 210646 707 0.00 2019-12-26 10:40:04 2019-12-26 11:45:07 t 1 1 210647 683 0.00 2019-12-26 11:43:13 2019-12-26 11:46:00 t 1 1 210649 683 0.00 2019-12-26 11:45:59 2019-12-26 11:50:12 t 1 1 210658 490 0.00 2019-12-26 09:21:25 2019-12-26 12:09:45 t 1 1 210660 728 0.00 2019-12-26 12:16:03 2019-12-26 12:16:18 t 1 1 210661 615 0.00 2019-12-26 12:14:30 2019-12-26 12:16:52 t 1 1 210664 615 0.00 2019-12-26 12:16:52 2019-12-26 12:18:31 t 1 1 210671 481 0.00 2019-12-26 12:28:07 2019-12-26 12:30:16 t 1 1 210675 694 0.00 2019-12-26 12:32:46 2019-12-26 12:33:26 t 1 1 210676 538 0.00 2019-12-26 12:16:22 2019-12-26 12:34:04 t 1 1 210679 694 0.00 2019-12-26 12:35:29 2019-12-26 12:36:06 t 1 1 210680 694 0.00 2019-12-26 12:36:12 2019-12-26 12:37:18 t 1 1 210688 490 0.00 2019-12-26 12:12:15 2019-12-26 12:51:22 t 1 1 210689 728 0.00 2019-12-26 12:46:33 2019-12-26 12:52:08 t 1 1 210694 637 0.00 2019-12-26 12:49:04 2019-12-26 13:02:42 t 1 1 210696 538 0.00 2019-12-26 12:51:27 2019-12-26 13:04:13 t 1 1 210698 220 0.00 2019-12-26 13:04:53 2019-12-26 13:06:48 t 1 1 210701 707 0.00 2019-12-26 12:04:03 2019-12-26 13:07:39 t 1 1 210704 728 0.00 2019-12-26 13:08:40 2019-12-26 13:08:48 t 1 1 210706 724 0.00 2019-12-26 12:14:11 2019-12-26 13:11:57 t 1 1 210710 220 0.00 2019-12-26 13:14:13 2019-12-26 13:14:48 t 1 1 210712 551 0.00 2019-12-26 13:08:23 2019-12-26 13:17:55 t 1 1 210714 611 0.00 2019-12-26 13:11:38 2019-12-26 13:19:02 t 1 1 210719 591 0.00 2019-12-26 11:50:47 2019-12-26 13:23:22 t 1 1 210723 566 0.00 2019-12-26 13:18:18 2019-12-26 13:28:26 t 1 1 210726 551 0.00 2019-12-26 13:17:55 2019-12-26 13:31:29 t 1 1 210731 763 0.00 2019-12-26 13:33:41 2019-12-26 13:35:05 t 1 1 210733 566 0.00 2019-12-26 13:28:26 2019-12-26 13:37:32 t 1 1 210741 763 0.00 2019-12-26 13:39:29 2019-12-26 13:42:26 t 1 1 210743 763 0.00 2019-12-26 13:42:26 2019-12-26 13:44:11 t 1 1 210744 763 0.00 2019-12-26 13:44:11 2019-12-26 13:45:25 t 1 1 210747 691 0.00 2019-12-26 13:48:17 2019-12-26 13:48:40 t 1 1 210751 752 0.00 2019-12-26 13:43:28 2019-12-26 13:51:20 t 1 1 210755 670 0.00 2019-12-26 13:41:39 2019-12-26 13:58:15 t 1 1 210759 679 0.00 2019-12-26 14:02:36 2019-12-26 14:06:52 t 1 1 210764 679 0.00 2019-12-26 14:08:25 2019-12-26 14:08:33 t 1 1 210766 679 0.00 2019-12-26 14:09:02 2019-12-26 14:09:40 t 1 1 210770 679 0.00 2019-12-26 14:10:20 2019-12-26 14:11:04 t 1 1 210771 707 0.00 2019-12-26 13:56:49 2019-12-26 14:11:21 t 1 1 210783 728 0.00 2019-12-26 14:14:48 2019-12-26 14:16:12 t 1 1 210784 679 0.00 2019-12-26 14:16:16 2019-12-26 14:16:32 t 1 1 210786 566 0.00 2019-12-26 14:06:53 2019-12-26 14:17:06 t 1 1 210789 679 0.00 2019-12-26 14:17:25 2019-12-26 14:17:40 t 1 1 210794 679 0.00 2019-12-26 14:18:44 2019-12-26 14:19:14 t 1 1 210800 564 0.00 2019-12-26 10:44:14 2019-12-26 14:20:45 t 1 1 210806 679 0.00 2019-12-26 14:22:03 2019-12-26 14:22:23 t 1 1 210807 679 0.00 2019-12-26 14:22:28 2019-12-26 14:22:43 t 1 1 210808 763 0.00 2019-12-26 14:21:39 2019-12-26 14:22:52 t 1 1 210810 763 0.00 2019-12-26 14:22:51 2019-12-26 14:23:22 t 1 1 210811 679 0.00 2019-12-26 14:23:26 2019-12-26 14:23:46 t 1 1 210813 679 0.00 2019-12-26 14:24:38 2019-12-26 14:24:54 t 1 1 210822 679 0.00 2019-12-26 14:26:38 2019-12-26 14:27:00 t 1 1 210826 637 0.00 2019-12-26 14:12:23 2019-12-26 14:27:58 t 1 1 210827 763 0.00 2019-12-26 14:24:57 2019-12-26 14:28:07 t 1 1 210831 679 0.00 2019-12-26 14:28:55 2019-12-26 14:29:37 t 1 1 210832 611 0.00 2019-12-26 14:10:37 2019-12-26 14:29:53 t 1 1 210835 679 0.00 2019-12-26 14:30:34 2019-12-26 14:30:49 t 1 1 210836 763 0.00 2019-12-26 14:28:07 2019-12-26 14:31:10 t 1 1 210839 679 0.00 2019-12-26 14:31:41 2019-12-26 14:32:02 t 1 1 210842 679 0.00 2019-12-26 14:32:08 2019-12-26 14:32:33 t 1 1 210850 679 0.00 2019-12-26 14:34:01 2019-12-26 14:34:47 t 1 1 210851 679 0.00 2019-12-26 14:34:52 2019-12-26 14:35:08 t 1 1 210852 679 0.00 2019-12-26 14:35:13 2019-12-26 14:35:39 t 1 1 210856 481 0.00 2019-12-26 14:22:20 2019-12-26 14:36:53 t 1 1 210859 763 0.00 2019-12-26 14:34:35 2019-12-26 14:38:11 t 1 1 210863 679 0.00 2019-12-26 14:38:58 2019-12-26 14:39:10 t 1 1 210865 679 0.00 2019-12-26 14:39:16 2019-12-26 14:40:20 t 1 1 210867 679 0.00 2019-12-26 14:40:58 2019-12-26 14:41:13 t 1 1 210871 220 0.00 2019-12-26 14:32:13 2019-12-26 14:42:25 t 1 1 210873 679 0.00 2019-12-26 14:43:06 2019-12-26 14:43:25 t 1 1 210874 679 0.00 2019-12-26 14:43:31 2019-12-26 14:43:57 t 1 1 210877 679 0.00 2019-12-26 14:44:02 2019-12-26 14:44:18 t 1 1 210878 566 0.00 2019-12-26 14:39:08 2019-12-26 14:47:02 t 1 1 210879 679 0.00 2019-12-26 14:44:23 2019-12-26 14:47:37 t 1 1 210881 763 0.00 2019-12-26 14:44:09 2019-12-26 14:48:37 t 1 1 210883 220 0.00 2019-12-26 14:42:25 2019-12-26 14:48:50 t 1 1 210885 679 0.00 2019-12-26 14:49:04 2019-12-26 14:49:53 t 1 1 210889 611 0.00 2019-12-26 14:29:52 2019-12-26 14:51:24 t 1 1 210895 679 0.00 2019-12-26 14:52:54 2019-12-26 14:53:08 t 1 1 210899 679 0.00 2019-12-26 14:54:13 2019-12-26 14:54:25 t 1 1 210906 679 0.00 2019-12-26 14:56:15 2019-12-26 14:57:27 t 1 1 210911 679 0.00 2019-12-26 14:58:16 2019-12-26 14:59:23 t 1 1 210915 763 0.00 2019-12-26 14:57:34 2019-12-26 15:00:37 t 1 1 210917 679 0.00 2019-12-26 15:02:06 2019-12-26 15:03:00 t 1 1 210921 679 0.00 2019-12-26 15:03:32 2019-12-26 15:04:02 t 1 1 210923 591 0.00 2019-12-26 15:02:19 2019-12-26 15:04:33 t 1 1 210927 728 0.00 2019-12-26 15:05:06 2019-12-26 15:05:39 t 1 1 210937 566 0.00 2019-12-26 15:09:33 2019-12-26 15:15:12 t 1 1 210938 578 0.00 2019-12-26 15:11:28 2019-12-26 15:15:44 t 1 1 210941 763 0.00 2019-12-26 15:13:21 2019-12-26 15:18:31 t 1 1 210943 763 0.00 2019-12-26 15:18:31 2019-12-26 15:23:10 t 1 1 210947 728 0.00 2019-12-26 15:26:05 2019-12-26 15:26:39 t 1 1 210959 220 0.00 2019-12-26 15:42:37 2019-12-26 15:43:30 t 1 1 210960 728 0.00 2019-12-26 15:44:18 2019-12-26 15:44:27 t 1 1 210967 679 0.00 2019-12-26 15:54:12 2019-12-26 15:54:27 t 1 1 210970 679 0.00 2019-12-26 15:55:48 2019-12-26 15:56:13 t 1 1 210971 679 0.00 2019-12-26 15:56:18 2019-12-26 15:56:34 t 1 1 210982 514 0.00 2019-12-26 16:03:30 2019-12-26 16:13:13 t 1 1 210984 220 0.00 2019-12-26 16:12:50 2019-12-26 16:15:31 t 1 1 210985 728 0.00 2019-12-26 16:15:48 2019-12-26 16:16:05 t 1 1 210987 752 0.00 2019-12-26 13:51:20 2019-12-26 16:16:46 t 1 1 210990 635 0.00 2019-12-26 16:11:26 2019-12-26 16:22:03 t 1 1 210919 679 0.00 2019-12-26 15:03:06 2019-12-26 15:03:26 t 1 1 210920 566 0.00 2019-12-26 14:57:18 2019-12-26 15:04:00 t 1 1 210929 591 0.00 2019-12-26 15:03:21 2019-12-26 15:06:02 t 1 1 210935 220 0.00 2019-12-26 14:59:12 2019-12-26 15:11:55 t 1 1 210940 728 0.00 2019-12-26 15:15:36 2019-12-26 15:16:10 t 1 1 210942 220 0.00 2019-12-26 15:11:55 2019-12-26 15:19:14 t 1 1 210944 679 0.00 2019-12-26 15:06:11 2019-12-26 15:23:21 t 1 1 210946 627 0.00 2019-12-26 15:21:54 2019-12-26 15:26:10 t 1 1 210948 763 0.00 2019-12-26 15:23:28 2019-12-26 15:27:26 t 1 1 210950 538 0.00 2019-12-26 14:11:12 2019-12-26 15:31:12 t 1 1 210952 763 0.00 2019-12-26 15:28:09 2019-12-26 15:33:41 t 1 1 210953 637 0.00 2019-12-26 15:06:00 2019-12-26 15:36:50 t 1 1 210957 637 0.00 2019-12-26 15:38:00 2019-12-26 15:41:34 t 1 1 210961 763 0.00 2019-12-26 15:38:48 2019-12-26 15:45:00 t 1 1 210963 611 0.00 2019-12-26 15:38:12 2019-12-26 15:47:52 t 1 1 210966 679 0.00 2019-12-26 15:37:24 2019-12-26 15:54:06 t 1 1 210969 679 0.00 2019-12-26 15:54:32 2019-12-26 15:55:42 t 1 1 210973 763 0.00 2019-12-26 15:51:56 2019-12-26 15:58:30 t 1 1 210976 671 0.00 2019-12-26 15:59:44 2019-12-26 16:03:57 t 1 1 210977 763 0.00 2019-12-26 15:58:30 2019-12-26 16:04:53 t 1 1 210981 220 0.00 2019-12-26 15:56:42 2019-12-26 16:12:50 t 1 1 210983 763 0.00 2019-12-26 16:10:15 2019-12-26 16:15:13 t 1 1 210988 763 0.00 2019-12-26 16:15:12 2019-12-26 16:20:26 t 1 1 210989 763 0.00 2019-12-26 16:20:25 2019-12-26 16:21:26 t 1 1 210992 611 0.00 2019-12-26 16:21:23 2019-12-26 16:24:54 t 1 1 210999 728 0.00 2019-12-26 16:36:48 2019-12-26 16:36:56 t 1 1 211001 758 0.00 2019-12-26 16:37:50 2019-12-26 16:41:28 t 1 1 211005 671 0.00 2019-12-26 16:41:43 2019-12-26 16:46:26 t 1 1 211006 675 0.00 2019-12-26 16:45:07 2019-12-26 16:47:15 t 1 1 211012 514 0.00 2019-12-26 16:13:13 2019-12-26 16:57:28 t 1 1 211013 728 0.00 2019-12-26 16:57:47 2019-12-26 16:58:20 t 1 1 211015 758 0.00 2019-12-26 16:42:17 2019-12-26 17:03:03 t 1 1 211016 611 0.00 2019-12-26 17:00:17 2019-12-26 17:03:27 t 1 1 211020 728 0.00 2019-12-26 17:09:08 2019-12-26 17:11:13 t 1 1 211021 758 0.00 2019-12-26 17:03:03 2019-12-26 17:11:39 t 1 1 211023 611 0.00 2019-12-26 17:10:59 2019-12-26 17:11:58 t 1 1 211024 752 0.00 2019-12-26 16:52:55 2019-12-26 17:15:10 t 1 1 211027 481 0.00 2019-12-26 16:53:57 2019-12-26 17:16:19 t 1 1 211028 687 0.00 2019-12-26 16:47:07 2019-12-26 17:17:12 t 1 1 211029 752 0.00 2019-12-26 17:15:10 2019-12-26 17:18:13 t 1 1 211030 728 0.00 2019-12-26 17:22:29 2019-12-26 17:22:42 t 1 1 211032 514 0.00 2019-12-26 16:57:28 2019-12-26 17:25:58 t 1 1 211034 591 0.00 2019-12-26 17:18:46 2019-12-26 17:31:14 t 1 1 211040 671 0.00 2019-12-26 17:30:38 2019-12-26 17:38:20 t 1 1 211049 485 0.00 2019-12-26 17:42:08 2019-12-26 17:43:59 t 1 1 211051 375 0.00 2019-12-26 17:44:29 2019-12-26 17:44:29 f 1 1 211053 687 0.00 2019-12-26 17:46:47 2019-12-26 17:46:59 t 1 1 211054 514 0.00 2019-12-26 17:43:29 2019-12-26 17:49:31 t 1 1 211056 728 0.00 2019-12-26 17:54:34 2019-12-26 17:55:07 t 1 1 211057 724 0.00 2019-12-26 16:40:51 2019-12-26 17:56:00 t 1 1 211058 611 0.00 2019-12-26 17:55:30 2019-12-26 17:57:24 t 1 1 211059 687 0.00 2019-12-26 17:48:38 2019-12-26 18:01:53 t 1 1 211061 538 0.00 2019-12-26 17:38:04 2019-12-26 18:02:23 t 1 1 211062 728 0.00 2019-12-26 18:05:03 2019-12-26 18:05:18 t 1 1 211065 611 0.00 2019-12-26 18:05:21 2019-12-26 18:09:48 t 1 1 211068 675 0.00 2019-12-26 18:12:50 2019-12-26 18:14:29 t 1 1 211071 724 0.00 2019-12-26 17:56:00 2019-12-26 18:15:17 t 1 1 211073 615 0.00 2019-12-26 17:49:42 2019-12-26 18:16:45 t 1 1 211076 709 0.00 2019-12-26 17:59:08 2019-12-26 18:20:08 t 1 1 211080 728 0.00 2019-12-26 18:26:02 2019-12-26 18:26:17 t 1 1 211084 637 0.00 2019-12-26 18:26:13 2019-12-26 18:28:30 t 1 1 211087 728 0.00 2019-12-26 18:29:30 2019-12-26 18:30:31 t 1 1 211097 728 0.00 2019-12-26 18:46:35 2019-12-26 18:46:50 t 1 1 211099 551 0.00 2019-12-26 18:42:07 2019-12-26 18:49:53 t 1 1 211101 637 0.00 2019-12-26 18:50:23 2019-12-26 18:51:45 t 1 1 211106 637 0.00 2019-12-26 18:52:39 2019-12-26 18:58:08 t 1 1 211112 671 0.00 2019-12-26 19:04:23 2019-12-26 19:05:52 t 1 1 211115 728 0.00 2019-12-26 19:07:50 2019-12-26 19:08:24 t 1 1 211117 694 0.00 2019-12-26 18:57:00 2019-12-26 19:09:09 t 1 1 211121 625 0.00 2019-12-26 18:18:18 2019-12-26 19:12:47 t 1 1 211123 637 0.00 2019-12-26 19:08:05 2019-12-26 19:14:41 t 1 1 211125 728 0.00 2019-12-26 19:18:30 2019-12-26 19:19:32 t 1 1 211126 687 0.00 2019-12-26 19:06:06 2019-12-26 19:20:45 t 1 1 211130 728 0.00 2019-12-26 19:24:50 2019-12-26 19:25:04 t 1 1 211131 591 0.00 2019-12-26 19:07:54 2019-12-26 19:26:12 t 1 1 211132 485 0.00 2019-12-26 19:24:48 2019-12-26 19:26:28 t 1 1 211134 551 0.00 2019-12-26 19:24:31 2019-12-26 19:29:32 t 1 1 211137 220 0.00 2019-12-26 19:33:57 2019-12-26 19:34:03 t 1 1 211149 562 0.00 2019-12-26 19:46:57 2019-12-26 19:48:15 t 1 1 211154 687 0.00 2019-12-26 19:53:40 2019-12-26 19:56:03 t 1 1 211156 681 0.00 2019-12-26 12:03:15 2019-12-26 19:56:25 t 1 1 211158 625 0.00 2019-12-26 19:49:25 2019-12-26 19:57:00 t 1 1 211159 562 0.00 2019-12-26 19:57:13 2019-12-26 19:57:44 t 1 1 211164 625 0.00 2019-12-26 20:02:05 2019-12-26 20:03:15 t 1 1 211168 671 0.00 2019-12-26 19:59:32 2019-12-26 20:07:15 t 1 1 211169 562 0.00 2019-12-26 20:07:08 2019-12-26 20:08:59 t 1 1 211172 675 0.00 2019-12-26 20:13:24 2019-12-26 20:14:41 t 1 1 211176 687 0.00 2019-12-26 20:06:26 2019-12-26 20:16:05 t 1 1 211177 562 0.00 2019-12-26 20:14:44 2019-12-26 20:16:39 t 1 1 211183 728 0.00 2019-12-26 20:26:14 2019-12-26 20:26:23 t 1 1 211184 728 0.00 2019-12-26 20:26:32 2019-12-26 20:26:34 t 1 1 211188 763 0.00 2019-12-26 20:25:49 2019-12-26 20:29:57 t 1 1 211193 763 0.00 2019-12-26 20:32:21 2019-12-26 20:35:26 t 1 1 211194 687 0.00 2019-12-26 20:16:05 2019-12-26 20:36:11 t 1 1 211196 732 0.00 2019-12-26 20:36:55 2019-12-26 20:36:55 f 1 4 211197 728 0.00 2019-12-26 20:37:04 2019-12-26 20:37:06 t 1 1 211199 679 0.00 2019-12-26 20:31:34 2019-12-26 20:37:23 t 1 1 211200 728 0.00 2019-12-26 20:37:16 2019-12-26 20:39:13 t 1 1 211201 728 0.00 2019-12-26 20:40:18 2019-12-26 20:40:46 t 1 1 211202 763 0.00 2019-12-26 20:35:26 2019-12-26 20:41:12 t 1 1 211204 562 0.00 2019-12-26 20:27:32 2019-12-26 20:42:16 t 1 1 211206 562 0.00 2019-12-26 20:44:23 2019-12-26 20:44:29 t 1 1 211208 578 0.00 2019-12-26 20:15:05 2019-12-26 20:46:05 t 1 1 211209 763 0.00 2019-12-26 20:43:40 2019-12-26 20:46:10 t 1 1 211211 763 0.00 2019-12-26 20:46:09 2019-12-26 20:51:01 t 1 1 211213 562 0.00 2019-12-26 20:46:44 2019-12-26 20:51:59 t 1 1 211215 763 0.00 2019-12-26 20:51:01 2019-12-26 20:55:14 t 1 1 210931 707 0.00 2019-12-26 14:11:43 2019-12-26 15:07:23 t 1 1 210932 566 0.00 2019-12-26 15:04:00 2019-12-26 15:09:33 t 1 1 210933 763 0.00 2019-12-26 15:04:41 2019-12-26 15:10:09 t 1 1 210934 578 0.00 2019-12-26 14:52:52 2019-12-26 15:11:28 t 1 1 210936 763 0.00 2019-12-26 15:10:09 2019-12-26 15:13:21 t 1 1 210939 516 0.00 2019-12-26 15:07:50 2019-12-26 15:16:02 t 1 1 210945 516 0.00 2019-12-26 15:16:02 2019-12-26 15:24:20 t 1 1 210949 220 0.00 2019-12-26 15:19:14 2019-12-26 15:30:46 t 1 1 210951 679 0.00 2019-12-26 15:23:21 2019-12-26 15:31:12 t 1 1 210954 728 0.00 2019-12-26 15:36:35 2019-12-26 15:36:50 t 1 1 210955 220 0.00 2019-12-26 15:30:46 2019-12-26 15:38:47 t 1 1 210956 763 0.00 2019-12-26 15:33:41 2019-12-26 15:38:48 t 1 1 210958 220 0.00 2019-12-26 15:38:47 2019-12-26 15:42:10 t 1 1 210962 514 0.00 2019-12-26 14:40:38 2019-12-26 15:45:07 t 1 1 210964 763 0.00 2019-12-26 15:44:59 2019-12-26 15:51:57 t 1 1 210965 564 0.00 2019-12-26 14:25:53 2019-12-26 15:53:42 t 1 1 210968 728 0.00 2019-12-26 15:54:48 2019-12-26 15:55:03 t 1 1 210972 220 0.00 2019-12-26 15:43:32 2019-12-26 15:56:42 t 1 1 210974 679 0.00 2019-12-26 15:56:40 2019-12-26 15:59:37 t 1 1 210975 514 0.00 2019-12-26 15:45:07 2019-12-26 16:03:30 t 1 1 210978 728 0.00 2019-12-26 16:05:18 2019-12-26 16:05:33 t 1 1 210979 763 0.00 2019-12-26 16:05:30 2019-12-26 16:06:34 t 1 1 210980 763 0.00 2019-12-26 16:06:33 2019-12-26 16:10:23 t 1 1 210986 220 0.00 2019-12-26 16:15:34 2019-12-26 16:16:39 t 1 1 210991 483 0.00 2019-12-26 16:14:12 2019-12-26 16:22:19 t 1 1 210993 728 0.00 2019-12-26 16:26:19 2019-12-26 16:26:27 t 1 1 210994 671 0.00 2019-12-26 16:20:25 2019-12-26 16:27:45 t 1 1 210995 675 0.00 2019-12-26 16:28:23 2019-12-26 16:30:28 t 1 1 211004 538 0.00 2019-12-26 16:42:41 2019-12-26 16:46:07 t 1 1 211011 656 0.00 2019-12-26 16:49:58 2019-12-26 16:53:26 t 1 1 211018 728 0.00 2019-12-26 17:08:26 2019-12-26 17:08:27 t 1 1 211022 758 0.00 2019-12-26 17:11:39 2019-12-26 17:11:48 t 1 1 211031 611 0.00 2019-12-26 17:11:58 2019-12-26 17:22:45 t 1 1 211035 649 0.00 2019-12-26 17:27:28 2019-12-26 17:33:42 t 1 1 211037 687 0.00 2019-12-26 17:17:46 2019-12-26 17:36:10 t 1 1 211042 687 0.00 2019-12-26 17:38:17 2019-12-26 17:39:35 t 1 1 211046 687 0.00 2019-12-26 17:39:53 2019-12-26 17:42:27 t 1 1 211048 514 0.00 2019-12-26 17:38:34 2019-12-26 17:43:29 t 1 1 211052 687 0.00 2019-12-26 17:45:26 2019-12-26 17:46:32 t 1 1 211055 728 0.00 2019-12-26 17:50:02 2019-12-26 17:50:17 t 1 1 211060 564 0.00 2019-12-26 17:41:15 2019-12-26 18:02:06 t 1 1 211063 752 0.00 2019-12-26 17:35:30 2019-12-26 18:05:20 t 1 1 211064 611 0.00 2019-12-26 17:57:41 2019-12-26 18:05:21 t 1 1 211067 671 0.00 2019-12-26 18:10:15 2019-12-26 18:11:25 t 1 1 211069 611 0.00 2019-12-26 18:13:00 2019-12-26 18:14:41 t 1 1 211072 728 0.00 2019-12-26 18:15:32 2019-12-26 18:16:05 t 1 1 211074 615 0.00 2019-12-26 18:16:45 2019-12-26 18:19:21 t 1 1 211075 514 0.00 2019-12-26 17:49:32 2019-12-26 18:19:46 t 1 1 211077 709 0.00 2019-12-26 18:21:31 2019-12-26 18:21:58 t 1 1 211082 687 0.00 2019-12-26 18:07:28 2019-12-26 18:27:17 t 1 1 211083 514 0.00 2019-12-26 18:19:46 2019-12-26 18:28:25 t 1 1 211086 591 0.00 2019-12-26 17:42:36 2019-12-26 18:30:02 t 1 1 211088 615 0.00 2019-12-26 18:18:37 2019-12-26 18:30:32 t 1 1 211090 637 0.00 2019-12-26 18:29:59 2019-12-26 18:33:37 t 1 1 211092 728 0.00 2019-12-26 18:36:06 2019-12-26 18:36:20 t 1 1 211095 675 0.00 2019-12-26 18:39:50 2019-12-26 18:42:07 t 1 1 211109 551 0.00 2019-12-26 18:59:29 2019-12-26 19:02:40 t 1 1 211110 637 0.00 2019-12-26 18:58:08 2019-12-26 19:03:35 t 1 1 211111 724 0.00 2019-12-26 19:02:40 2019-12-26 19:05:45 t 1 1 211113 687 0.00 2019-12-26 19:01:44 2019-12-26 19:05:58 t 1 1 211114 637 0.00 2019-12-26 19:03:35 2019-12-26 19:08:05 t 1 1 211118 752 0.00 2019-12-26 18:05:20 2019-12-26 19:12:01 t 1 1 211124 625 0.00 2019-12-26 19:11:52 2019-12-26 19:14:49 t 1 1 211127 625 0.00 2019-12-26 19:15:31 2019-12-26 19:21:01 t 1 1 211133 635 0.00 2019-12-26 19:14:21 2019-12-26 19:26:38 t 1 1 211136 220 0.00 2019-12-26 19:29:57 2019-12-26 19:33:57 t 1 1 211141 516 0.00 2019-12-26 19:36:54 2019-12-26 19:38:29 t 1 1 211143 625 0.00 2019-12-26 19:23:39 2019-12-26 19:39:47 t 1 1 211144 551 0.00 2019-12-26 19:29:32 2019-12-26 19:41:23 t 1 1 211145 562 0.00 2019-12-26 19:41:04 2019-12-26 19:42:16 t 1 1 211147 625 0.00 2019-12-26 19:41:23 2019-12-26 19:44:16 t 1 1 211153 728 0.00 2019-12-26 19:54:41 2019-12-26 19:54:54 t 1 1 211155 562 0.00 2019-12-26 19:51:36 2019-12-26 19:56:06 t 1 1 211161 679 0.00 2019-12-26 19:42:28 2019-12-26 19:59:14 t 1 1 211162 625 0.00 2019-12-26 19:58:11 2019-12-26 20:01:21 t 1 1 211163 625 0.00 2019-12-26 20:01:21 2019-12-26 20:02:06 t 1 1 211165 732 0.00 2019-12-26 19:15:25 2019-12-26 20:04:49 t 1 1 211166 728 0.00 2019-12-26 20:05:11 2019-12-26 20:05:29 t 1 1 211170 562 0.00 2019-12-26 20:11:56 2019-12-26 20:12:17 t 1 1 211173 564 0.00 2019-12-26 19:49:43 2019-12-26 20:14:42 t 1 1 211174 578 0.00 2019-12-26 15:15:56 2019-12-26 20:15:05 t 1 1 211178 763 0.00 2019-12-26 20:14:25 2019-12-26 20:19:01 t 1 1 211180 707 0.00 2019-12-26 18:09:35 2019-12-26 20:22:09 t 1 1 211181 763 0.00 2019-12-26 20:19:26 2019-12-26 20:22:52 t 1 1 211182 763 0.00 2019-12-26 20:22:51 2019-12-26 20:25:49 t 1 1 211185 562 0.00 2019-12-26 20:20:05 2019-12-26 20:26:54 t 1 1 211186 591 0.00 2019-12-26 19:26:12 2019-12-26 20:28:06 t 1 1 211190 728 0.00 2019-12-26 20:30:15 2019-12-26 20:30:16 t 1 1 211195 728 0.00 2019-12-26 20:36:42 2019-12-26 20:36:54 t 1 1 211198 732 0.00 2019-12-26 20:36:22 2019-12-26 20:37:06 t 1 4 211205 763 0.00 2019-12-26 20:41:12 2019-12-26 20:43:40 t 1 1 211207 562 0.00 2019-12-26 20:43:52 2019-12-26 20:45:13 t 1 1 211210 728 0.00 2019-12-26 20:48:26 2019-12-26 20:48:38 t 1 1 211212 679 0.00 2019-12-26 20:50:45 2019-12-26 20:51:09 t 1 1 211214 679 0.00 2019-12-26 20:50:39 2019-12-26 20:52:13 t 1 1 211216 728 0.00 2019-12-26 20:55:09 2019-12-26 20:55:23 t 1 1 211217 763 0.00 2019-12-26 20:54:44 2019-12-26 20:56:13 t 1 1 211224 671 0.00 2019-12-26 21:03:31 2019-12-26 21:05:44 t 1 1 211229 728 0.00 2019-12-26 21:07:05 2019-12-26 21:07:29 t 1 4 211230 707 0.00 2019-12-26 20:49:13 2019-12-26 21:10:23 t 1 1 211234 562 0.00 2019-12-26 21:07:54 2019-12-26 21:15:01 t 1 1 211239 687 0.00 2019-12-26 21:11:32 2019-12-26 21:25:15 t 1 1 211245 562 0.00 2019-12-26 21:27:27 2019-12-26 21:27:43 t 1 1 211249 728 0.00 2019-12-26 21:28:37 2019-12-26 21:28:46 t 1 4 211251 671 0.00 2019-12-26 21:31:29 2019-12-26 21:33:04 t 1 1 211253 485 0.00 2019-12-26 21:29:14 2019-12-26 21:35:41 t 1 1 211257 728 0.00 2019-12-26 21:39:05 2019-12-26 21:39:14 t 1 4 210996 671 0.00 2019-12-26 16:27:44 2019-12-26 16:32:14 t 1 1 210997 675 0.00 2019-12-26 16:30:52 2019-12-26 16:34:18 t 1 1 210998 538 0.00 2019-12-26 15:59:09 2019-12-26 16:34:43 t 1 1 211000 671 0.00 2019-12-26 16:32:14 2019-12-26 16:38:30 t 1 1 211002 671 0.00 2019-12-26 16:38:29 2019-12-26 16:41:43 t 1 1 211003 675 0.00 2019-12-26 16:40:56 2019-12-26 16:44:04 t 1 1 211007 728 0.00 2019-12-26 16:47:18 2019-12-26 16:47:26 t 1 1 211008 671 0.00 2019-12-26 16:46:25 2019-12-26 16:48:32 t 1 1 211009 611 0.00 2019-12-26 16:43:09 2019-12-26 16:49:31 t 1 1 211010 483 0.00 2019-12-26 16:22:19 2019-12-26 16:50:36 t 1 1 211014 656 0.00 2019-12-26 16:53:26 2019-12-26 17:03:00 t 1 1 211017 728 0.00 2019-12-26 17:08:17 2019-12-26 17:08:18 t 1 1 211019 611 0.00 2019-12-26 17:03:27 2019-12-26 17:10:59 t 1 1 211025 758 0.00 2019-12-26 17:15:10 2019-12-26 17:15:13 t 1 1 211026 728 0.00 2019-12-26 17:15:32 2019-12-26 17:15:43 t 1 1 211033 481 0.00 2019-12-26 17:16:19 2019-12-26 17:26:03 t 1 1 211036 728 0.00 2019-12-26 17:32:58 2019-12-26 17:33:59 t 1 1 211038 564 0.00 2019-12-26 15:53:50 2019-12-26 17:36:11 t 1 1 211039 544 0.00 2019-12-26 17:31:52 2019-12-26 17:37:12 t 1 1 211041 514 0.00 2019-12-26 17:25:58 2019-12-26 17:38:34 t 1 1 211043 728 0.00 2019-12-26 17:39:32 2019-12-26 17:39:46 t 1 1 211044 564 0.00 2019-12-26 17:36:11 2019-12-26 17:41:15 t 1 1 211045 485 0.00 2019-12-26 17:32:18 2019-12-26 17:42:08 t 1 1 211047 687 0.00 2019-12-26 17:43:01 2019-12-26 17:43:23 t 1 1 211050 375 0.00 2019-12-26 17:44:20 2019-12-26 17:44:20 f 1 1 211066 671 0.00 2019-12-26 18:08:37 2019-12-26 18:10:15 t 1 1 211070 481 0.00 2019-12-26 17:26:03 2019-12-26 18:14:58 t 1 1 211078 637 0.00 2019-12-26 18:19:06 2019-12-26 18:22:23 t 1 1 211079 637 0.00 2019-12-26 18:22:23 2019-12-26 18:25:17 t 1 1 211081 728 0.00 2019-12-26 18:26:24 2019-12-26 18:26:25 t 1 1 211085 637 0.00 2019-12-26 18:28:46 2019-12-26 18:29:55 t 1 1 211089 687 0.00 2019-12-26 18:27:17 2019-12-26 18:31:00 t 1 1 211091 687 0.00 2019-12-26 18:31:00 2019-12-26 18:36:07 t 1 1 211093 637 0.00 2019-12-26 18:33:37 2019-12-26 18:38:18 t 1 1 211094 724 0.00 2019-12-26 18:34:30 2019-12-26 18:40:41 t 1 1 211096 637 0.00 2019-12-26 18:38:17 2019-12-26 18:43:28 t 1 1 211098 687 0.00 2019-12-26 18:36:07 2019-12-26 18:49:48 t 1 1 211100 637 0.00 2019-12-26 18:43:28 2019-12-26 18:50:23 t 1 1 211102 551 0.00 2019-12-26 18:49:53 2019-12-26 18:52:39 t 1 1 211103 564 0.00 2019-12-26 18:02:06 2019-12-26 18:55:23 t 1 1 211104 728 0.00 2019-12-26 18:57:05 2019-12-26 18:57:13 t 1 1 211105 728 0.00 2019-12-26 18:57:21 2019-12-26 18:57:29 t 1 1 211107 687 0.00 2019-12-26 18:54:22 2019-12-26 19:01:44 t 1 1 211108 564 0.00 2019-12-26 18:55:23 2019-12-26 19:02:31 t 1 1 211116 481 0.00 2019-12-26 18:15:56 2019-12-26 19:08:53 t 1 1 211119 551 0.00 2019-12-26 19:05:45 2019-12-26 19:12:16 t 1 1 211120 732 0.00 2019-12-26 18:06:06 2019-12-26 19:12:28 t 1 1 211122 551 0.00 2019-12-26 19:12:16 2019-12-26 19:13:33 t 1 1 211128 625 0.00 2019-12-26 19:21:15 2019-12-26 19:23:39 t 1 1 211129 551 0.00 2019-12-26 19:18:45 2019-12-26 19:24:31 t 1 1 211135 562 0.00 2019-12-26 19:20:34 2019-12-26 19:33:50 t 1 1 211138 220 0.00 2019-12-26 19:34:03 2019-12-26 19:34:19 t 1 1 211139 220 0.00 2019-12-26 19:34:18 2019-12-26 19:34:32 t 1 1 211140 728 0.00 2019-12-26 19:35:19 2019-12-26 19:35:27 t 1 1 211142 562 0.00 2019-12-26 19:39:14 2019-12-26 19:39:35 t 1 1 211146 625 0.00 2019-12-26 19:39:47 2019-12-26 19:42:17 t 1 1 211148 728 0.00 2019-12-26 19:44:03 2019-12-26 19:44:18 t 1 1 211150 564 0.00 2019-12-26 19:02:31 2019-12-26 19:49:43 t 1 1 211151 768 0.00 2019-12-26 19:30:51 2019-12-26 19:50:47 t 1 1 211152 728 0.00 2019-12-26 19:54:32 2019-12-26 19:54:33 t 1 1 211157 562 0.00 2019-12-26 19:56:53 2019-12-26 19:56:57 t 1 1 211160 625 0.00 2019-12-26 19:56:45 2019-12-26 19:58:12 t 1 1 211167 687 0.00 2019-12-26 19:56:24 2019-12-26 20:06:26 t 1 1 211171 763 0.00 2019-12-26 20:09:15 2019-12-26 20:13:53 t 1 1 211175 728 0.00 2019-12-26 20:15:44 2019-12-26 20:15:55 t 1 1 211179 562 0.00 2019-12-26 20:18:46 2019-12-26 20:19:05 t 1 1 211187 481 0.00 2019-12-26 19:09:31 2019-12-26 20:29:56 t 1 1 211189 728 0.00 2019-12-26 20:29:48 2019-12-26 20:30:07 t 1 1 211191 763 0.00 2019-12-26 20:29:31 2019-12-26 20:32:01 t 1 1 211192 681 0.00 2019-12-26 19:56:25 2019-12-26 20:32:55 t 1 1 211203 728 0.00 2019-12-26 20:40:56 2019-12-26 20:41:31 t 1 1 211218 591 0.00 2019-12-26 20:28:06 2019-12-26 20:57:38 t 1 1 211219 514 0.00 2019-12-26 20:40:30 2019-12-26 20:58:55 t 1 1 211220 691 0.00 2019-12-26 20:53:50 2019-12-26 21:00:03 t 1 1 211221 763 0.00 2019-12-26 20:55:33 2019-12-26 21:00:49 t 1 1 211225 728 0.00 2019-12-26 21:05:39 2019-12-26 21:05:54 t 1 1 211228 732 0.00 2019-12-26 20:37:06 2019-12-26 21:07:06 t 1 4 211232 724 0.00 2019-12-26 21:01:37 2019-12-26 21:13:33 t 1 1 211235 732 0.00 2019-12-26 21:15:06 2019-12-26 21:17:40 t 1 4 211237 562 0.00 2019-12-26 21:16:56 2019-12-26 21:24:21 t 1 1 211238 679 0.00 2019-12-26 21:04:19 2019-12-26 21:24:35 t 1 1 211241 581 0.00 2019-12-26 21:25:25 2019-12-26 21:25:25 f 1 1 211243 734 0.00 2019-12-26 20:46:39 2019-12-26 21:27:27 t 1 1 211244 687 0.00 2019-12-26 21:25:26 2019-12-26 21:27:30 t 1 1 211246 763 0.00 2019-12-26 21:22:37 2019-12-26 21:28:02 t 1 1 211252 716 0.00 2019-12-26 21:30:58 2019-12-26 21:35:22 t 1 1 211259 611 0.00 2019-12-26 21:39:01 2019-12-26 21:42:08 t 1 1 211260 637 0.00 2019-12-26 21:39:21 2019-12-26 21:42:37 t 1 1 211263 732 0.00 2019-12-26 21:41:12 2019-12-26 21:49:33 t 1 4 211266 637 0.00 2019-12-26 21:42:36 2019-12-26 21:52:08 t 1 1 211267 562 0.00 2019-12-26 21:52:03 2019-12-26 21:52:28 t 1 1 211268 220 0.00 2019-12-26 21:53:47 2019-12-26 21:54:06 t 1 1 211269 687 0.00 2019-12-26 21:27:37 2019-12-26 21:54:34 t 1 1 211275 675 0.00 2019-12-26 21:39:37 2019-12-26 21:59:18 t 1 1 211280 687 0.00 2019-12-26 22:00:01 2019-12-26 22:06:21 t 1 1 211282 707 0.00 2019-12-26 21:24:42 2019-12-26 22:06:42 t 1 1 211284 670 0.00 2019-12-26 22:00:30 2019-12-26 22:07:38 t 1 1 211287 562 0.00 2019-12-26 22:09:58 2019-12-26 22:10:18 t 1 1 211289 485 0.00 2019-12-26 22:09:25 2019-12-26 22:11:23 t 1 1 211293 611 0.00 2019-12-26 22:08:30 2019-12-26 22:13:25 t 1 1 211297 485 0.00 2019-12-26 22:11:14 2019-12-26 22:14:50 t 1 1 211300 722 0.00 2019-12-26 22:15:25 2019-12-26 22:15:33 t 1 1 211303 485 0.00 2019-12-26 22:15:00 2019-12-26 22:16:38 t 1 1 211312 728 0.00 2019-12-26 22:00:37 2019-12-26 22:24:20 t 1 4 211313 562 0.00 2019-12-26 22:22:27 2019-12-26 22:24:33 t 1 1 211314 722 0.00 2019-12-26 22:24:59 2019-12-26 22:25:01 t 1 1 211315 722 0.00 2019-12-26 22:25:29 2019-12-26 22:25:58 t 1 1 211222 763 0.00 2019-12-26 21:00:48 2019-12-26 21:04:01 t 1 1 211223 763 0.00 2019-12-26 21:04:01 2019-12-26 21:05:42 t 1 1 211226 562 0.00 2019-12-26 20:57:13 2019-12-26 21:06:03 t 1 1 211227 728 0.00 2019-12-26 21:06:06 2019-12-26 21:07:01 t 1 1 211231 687 0.00 2019-12-26 21:09:48 2019-12-26 21:11:23 t 1 1 211233 732 0.00 2019-12-26 21:14:53 2019-12-26 21:14:53 f 1 4 211236 728 0.00 2019-12-26 21:17:40 2019-12-26 21:18:19 t 1 4 211240 581 0.00 2019-12-26 21:25:19 2019-12-26 21:25:19 f 1 1 211242 581 0.00 2019-12-26 21:25:33 2019-12-26 21:25:33 f 1 1 211247 611 0.00 2019-12-26 21:19:40 2019-12-26 21:28:20 t 1 1 211248 732 0.00 2019-12-26 21:19:46 2019-12-26 21:28:38 t 1 4 211250 675 0.00 2019-12-26 21:29:32 2019-12-26 21:32:58 t 1 1 211254 562 0.00 2019-12-26 21:36:00 2019-12-26 21:36:16 t 1 1 211255 562 0.00 2019-12-26 21:38:29 2019-12-26 21:38:48 t 1 1 211256 732 0.00 2019-12-26 21:30:44 2019-12-26 21:39:06 t 1 4 211258 637 0.00 2019-12-26 21:36:18 2019-12-26 21:39:21 t 1 1 211261 562 0.00 2019-12-26 21:46:05 2019-12-26 21:46:22 t 1 1 211264 728 0.00 2019-12-26 21:49:33 2019-12-26 21:49:41 t 1 4 211265 728 0.00 2019-12-26 21:49:47 2019-12-26 21:50:15 t 1 4 211271 728 0.00 2019-12-26 21:55:01 2019-12-26 21:57:07 t 1 4 211273 562 0.00 2019-12-26 21:58:33 2019-12-26 21:59:03 t 1 1 211277 728 0.00 2019-12-26 21:59:02 2019-12-26 21:59:55 t 1 4 211278 637 0.00 2019-12-26 21:59:29 2019-12-26 22:04:33 t 1 1 211279 562 0.00 2019-12-26 22:01:51 2019-12-26 22:05:21 t 1 1 211283 722 0.00 2019-12-26 21:59:42 2019-12-26 22:06:42 t 1 1 211285 763 0.00 2019-12-26 22:02:29 2019-12-26 22:08:12 t 1 1 211286 611 0.00 2019-12-26 21:50:08 2019-12-26 22:08:30 t 1 1 211291 722 0.00 2019-12-26 22:12:17 2019-12-26 22:12:46 t 1 1 211295 722 0.00 2019-12-26 22:14:02 2019-12-26 22:14:32 t 1 1 211301 562 0.00 2019-12-26 22:15:12 2019-12-26 22:16:31 t 1 1 211306 763 0.00 2019-12-26 22:14:54 2019-12-26 22:18:35 t 1 1 211307 485 0.00 2019-12-26 22:19:06 2019-12-26 22:20:08 t 1 1 211308 675 0.00 2019-12-26 22:19:37 2019-12-26 22:21:51 t 1 1 211316 763 0.00 2019-12-26 22:24:18 2019-12-26 22:28:07 t 1 1 211320 220 0.00 2019-12-26 22:15:19 2019-12-26 22:30:06 t 1 1 211323 538 0.00 2019-12-26 20:20:09 2019-12-26 22:33:07 t 1 1 211329 675 0.00 2019-12-26 22:34:29 2019-12-26 22:36:10 t 1 1 211330 637 0.00 2019-12-26 22:11:29 2019-12-26 22:36:41 t 1 1 211335 763 0.00 2019-12-26 22:36:33 2019-12-26 22:41:04 t 1 1 211336 637 0.00 2019-12-26 22:36:41 2019-12-26 22:45:05 t 1 1 211342 722 0.00 2019-12-26 22:48:17 2019-12-26 22:48:39 t 1 1 211345 687 0.00 2019-12-26 22:39:04 2019-12-26 22:50:00 t 1 1 211349 562 0.00 2019-12-26 22:50:26 2019-12-26 22:53:09 t 1 1 211350 562 0.00 2019-12-26 22:53:29 2019-12-26 22:54:08 t 1 1 211352 562 0.00 2019-12-26 22:54:49 2019-12-26 22:55:13 t 1 1 211354 687 0.00 2019-12-26 22:50:14 2019-12-26 22:58:16 t 1 1 211355 722 0.00 2019-12-26 22:58:22 2019-12-26 22:58:44 t 1 1 211357 562 0.00 2019-12-26 22:59:38 2019-12-26 23:00:12 t 1 1 211362 763 0.00 2019-12-26 22:57:23 2019-12-26 23:02:45 t 1 1 211369 722 0.00 2019-12-26 23:07:46 2019-12-26 23:08:21 t 1 1 211371 591 0.00 2019-12-26 23:02:18 2019-12-26 23:10:51 t 1 1 211376 763 0.00 2019-12-26 23:11:45 2019-12-26 23:14:30 t 1 1 211378 722 0.00 2019-12-26 23:15:30 2019-12-26 23:15:34 t 1 1 211379 564 0.00 2019-12-26 20:14:54 2019-12-26 23:16:37 t 1 1 211382 637 0.00 2019-12-26 23:12:31 2019-12-26 23:19:01 t 1 1 211383 763 0.00 2019-12-26 23:15:27 2019-12-26 23:19:24 t 1 1 211384 679 0.00 2019-12-26 22:59:12 2019-12-26 23:20:10 t 1 1 211391 722 0.00 2019-12-26 23:23:41 2019-12-26 23:24:51 t 1 1 211393 591 0.00 2019-12-26 23:11:02 2019-12-26 23:27:35 t 1 1 211394 726 0.00 2019-12-26 23:11:46 2019-12-26 23:28:29 t 1 1 211396 722 0.00 2019-12-26 23:30:09 2019-12-26 23:30:09 f 1 1 211398 722 0.00 2019-12-26 23:29:25 2019-12-26 23:30:44 t 1 1 211403 591 0.00 2019-12-26 23:34:44 2019-12-26 23:36:08 t 1 1 211407 687 0.00 2019-12-26 23:03:13 2019-12-26 23:40:36 t 1 1 211412 763 0.00 2019-12-26 23:44:44 2019-12-26 23:46:59 t 1 1 211413 637 0.00 2019-12-26 23:41:32 2019-12-26 23:49:17 t 1 1 211414 763 0.00 2019-12-26 23:46:59 2019-12-26 23:50:35 t 1 1 211415 763 0.00 2019-12-26 23:50:34 2019-12-26 23:51:54 t 1 1 211416 679 0.00 2019-12-26 23:43:34 2019-12-26 23:53:32 t 1 1 211420 220 0.00 2019-12-26 23:40:56 2019-12-26 23:57:19 t 1 1 211423 763 0.00 2019-12-26 23:58:00 2019-12-27 00:00:14 t 1 1 211424 637 0.00 2019-12-26 23:56:32 2019-12-27 00:02:18 t 1 1 211425 726 0.00 2019-12-26 23:33:37 2019-12-27 00:03:19 t 1 1 211433 763 0.00 2019-12-27 00:11:31 2019-12-27 00:16:36 t 1 1 211435 763 0.00 2019-12-27 00:16:35 2019-12-27 00:20:04 t 1 1 211438 637 0.00 2019-12-27 00:20:17 2019-12-27 00:25:48 t 1 1 211442 637 0.00 2019-12-27 00:31:18 2019-12-27 00:33:16 t 1 1 211443 671 0.00 2019-12-27 00:27:23 2019-12-27 00:34:22 t 1 1 211444 637 0.00 2019-12-27 00:33:17 2019-12-27 00:35:10 t 1 1 211447 611 0.00 2019-12-26 23:41:47 2019-12-27 00:41:50 t 1 1 211451 562 0.00 2019-12-27 00:52:38 2019-12-27 00:52:53 t 1 1 211454 687 0.00 2019-12-27 00:59:48 2019-12-27 01:02:36 t 1 1 211455 562 0.00 2019-12-27 01:03:13 2019-12-27 01:03:29 t 1 1 211460 687 0.00 2019-12-27 01:08:38 2019-12-27 01:08:45 t 1 1 211465 566 0.00 2019-12-27 01:09:50 2019-12-27 01:11:44 t 1 1 211468 562 0.00 2019-12-27 01:13:53 2019-12-27 01:14:12 t 1 1 211477 551 0.00 2019-12-27 01:27:11 2019-12-27 01:34:55 t 1 1 211478 562 0.00 2019-12-27 01:35:06 2019-12-27 01:35:23 t 1 1 211482 551 0.00 2019-12-27 01:40:55 2019-12-27 01:46:10 t 1 1 211486 621 0.00 2019-12-27 01:28:59 2019-12-27 01:57:00 t 1 1 211488 551 0.00 2019-12-27 01:54:57 2019-12-27 02:00:26 t 1 1 211490 562 0.00 2019-12-27 02:03:44 2019-12-27 02:04:09 t 1 1 211491 687 0.00 2019-12-27 01:53:20 2019-12-27 02:05:24 t 1 1 211494 551 0.00 2019-12-27 02:06:42 2019-12-27 02:14:56 t 1 1 211496 566 0.00 2019-12-27 02:02:45 2019-12-27 02:18:22 t 1 1 211498 551 0.00 2019-12-27 02:14:56 2019-12-27 02:25:11 t 1 1 211509 544 0.00 2019-12-27 03:10:18 2019-12-27 03:12:00 t 1 1 211513 562 0.00 2019-12-27 03:42:23 2019-12-27 03:42:51 t 1 1 211514 562 0.00 2019-12-27 03:53:13 2019-12-27 03:53:29 t 1 1 211515 562 0.00 2019-12-27 04:03:54 2019-12-27 04:04:20 t 1 1 211519 562 0.00 2019-12-27 04:46:57 2019-12-27 04:47:13 t 1 1 211521 562 0.00 2019-12-27 05:03:13 2019-12-27 05:03:30 t 1 1 211524 562 0.00 2019-12-27 05:23:08 2019-12-27 05:23:36 t 1 1 211525 562 0.00 2019-12-27 05:33:52 2019-12-27 05:34:19 t 1 1 211529 503 0.00 2019-12-27 05:51:13 2019-12-27 05:54:59 t 1 1 211530 562 0.00 2019-12-27 05:55:21 2019-12-27 05:55:44 t 1 1 211531 562 0.00 2019-12-27 06:06:08 2019-12-27 06:06:25 t 1 1 211262 763 0.00 2019-12-26 21:43:17 2019-12-26 21:49:12 t 1 1 211270 732 0.00 2019-12-26 21:51:36 2019-12-26 21:55:01 t 1 4 211272 637 0.00 2019-12-26 21:52:17 2019-12-26 21:58:54 t 1 1 211274 732 0.00 2019-12-26 21:57:07 2019-12-26 21:59:03 t 1 4 211276 722 0.00 2019-12-26 21:41:42 2019-12-26 21:59:42 t 1 1 211281 671 0.00 2019-12-26 22:05:21 2019-12-26 22:06:40 t 1 1 211288 562 0.00 2019-12-26 22:10:39 2019-12-26 22:11:20 t 1 1 211290 637 0.00 2019-12-26 22:04:33 2019-12-26 22:11:29 t 1 1 211292 768 0.00 2019-12-26 22:12:29 2019-12-26 22:12:49 t 1 1 211294 675 0.00 2019-12-26 21:59:23 2019-12-26 22:13:41 t 1 1 211296 722 0.00 2019-12-26 22:14:32 2019-12-26 22:14:49 t 1 1 211298 763 0.00 2019-12-26 22:11:05 2019-12-26 22:14:54 t 1 1 211299 220 0.00 2019-12-26 21:57:06 2019-12-26 22:15:19 t 1 1 211302 679 0.00 2019-12-26 22:16:01 2019-12-26 22:16:36 t 1 1 211304 485 0.00 2019-12-26 22:16:09 2019-12-26 22:17:19 t 1 1 211305 562 0.00 2019-12-26 22:17:08 2019-12-26 22:17:29 t 1 1 211309 722 0.00 2019-12-26 22:22:29 2019-12-26 22:22:30 t 1 1 211310 722 0.00 2019-12-26 22:22:44 2019-12-26 22:22:56 t 1 1 211311 763 0.00 2019-12-26 22:19:02 2019-12-26 22:24:18 t 1 1 211317 562 0.00 2019-12-26 22:27:29 2019-12-26 22:28:23 t 1 1 211318 485 0.00 2019-12-26 22:22:31 2019-12-26 22:28:36 t 1 1 211319 728 0.00 2019-12-26 22:24:43 2019-12-26 22:29:28 t 1 4 211321 763 0.00 2019-12-26 22:28:26 2019-12-26 22:31:20 t 1 1 211322 562 0.00 2019-12-26 22:31:50 2019-12-26 22:32:24 t 1 1 211324 675 0.00 2019-12-26 22:31:02 2019-12-26 22:34:26 t 1 1 211327 763 0.00 2019-12-26 22:31:20 2019-12-26 22:35:56 t 1 1 211332 763 0.00 2019-12-26 22:35:52 2019-12-26 22:37:43 t 1 1 211334 722 0.00 2019-12-26 22:40:12 2019-12-26 22:40:45 t 1 1 211338 763 0.00 2019-12-26 22:41:04 2019-12-26 22:46:02 t 1 1 211339 722 0.00 2019-12-26 22:47:34 2019-12-26 22:48:09 t 1 1 211340 675 0.00 2019-12-26 22:45:46 2019-12-26 22:48:30 t 1 1 211343 694 0.00 2019-12-26 19:22:07 2019-12-26 22:48:44 t 1 1 211346 637 0.00 2019-12-26 22:45:27 2019-12-26 22:50:43 t 1 1 211347 763 0.00 2019-12-26 22:46:02 2019-12-26 22:51:24 t 1 1 211351 722 0.00 2019-12-26 22:54:10 2019-12-26 22:54:40 t 1 1 211353 763 0.00 2019-12-26 22:51:23 2019-12-26 22:57:24 t 1 1 211358 562 0.00 2019-12-26 22:59:21 2019-12-26 23:00:21 t 1 1 211360 649 0.00 2019-12-26 22:58:55 2019-12-26 23:01:41 t 1 1 211363 687 0.00 2019-12-26 23:00:26 2019-12-26 23:03:01 t 1 1 211364 637 0.00 2019-12-26 22:50:59 2019-12-26 23:04:37 t 1 1 211366 763 0.00 2019-12-26 23:02:45 2019-12-26 23:05:44 t 1 1 211372 722 0.00 2019-12-26 23:10:26 2019-12-26 23:10:57 t 1 1 211373 763 0.00 2019-12-26 23:05:44 2019-12-26 23:11:41 t 1 1 211375 637 0.00 2019-12-26 23:07:18 2019-12-26 23:12:31 t 1 1 211377 681 0.00 2019-12-26 23:11:47 2019-12-26 23:14:47 t 1 1 211380 763 0.00 2019-12-26 23:14:48 2019-12-26 23:16:43 t 1 1 211385 562 0.00 2019-12-26 23:20:52 2019-12-26 23:21:06 t 1 1 211388 683 0.00 2019-12-26 23:22:10 2019-12-26 23:23:15 t 1 1 211389 763 0.00 2019-12-26 23:19:24 2019-12-26 23:24:31 t 1 1 211395 562 0.00 2019-12-26 23:28:19 2019-12-26 23:29:02 t 1 1 211397 485 0.00 2019-12-26 23:22:00 2019-12-26 23:30:27 t 1 1 211399 694 0.00 2019-12-26 23:10:23 2019-12-26 23:31:22 t 1 1 211400 763 0.00 2019-12-26 23:24:30 2019-12-26 23:31:55 t 1 1 211401 637 0.00 2019-12-26 23:25:32 2019-12-26 23:32:48 t 1 1 211411 763 0.00 2019-12-26 23:37:41 2019-12-26 23:44:26 t 1 1 211418 707 0.00 2019-12-26 23:43:21 2019-12-26 23:55:32 t 1 1 211419 637 0.00 2019-12-26 23:49:17 2019-12-26 23:56:32 t 1 1 211428 637 0.00 2019-12-27 00:02:18 2019-12-27 00:09:31 t 1 1 211429 713 0.00 2019-12-26 23:54:08 2019-12-27 00:10:56 t 1 1 211445 514 0.00 2019-12-27 00:18:04 2019-12-27 00:35:21 t 1 1 211448 562 0.00 2019-12-27 00:41:33 2019-12-27 00:42:12 t 1 1 211450 562 0.00 2019-12-27 00:47:27 2019-12-27 00:50:14 t 1 1 211452 716 0.00 2019-12-27 00:48:23 2019-12-27 00:54:27 t 1 1 211456 716 0.00 2019-12-27 00:54:28 2019-12-27 01:06:28 t 1 1 211458 687 0.00 2019-12-27 01:04:09 2019-12-27 01:07:41 t 1 1 211459 687 0.00 2019-12-27 01:08:33 2019-12-27 01:08:35 t 1 1 211462 687 0.00 2019-12-27 01:09:06 2019-12-27 01:09:09 t 1 1 211464 687 0.00 2019-12-27 01:09:35 2019-12-27 01:11:06 t 1 1 211472 562 0.00 2019-12-27 01:24:57 2019-12-27 01:25:11 t 1 1 211473 551 0.00 2019-12-27 01:19:10 2019-12-27 01:27:11 t 1 1 211474 566 0.00 2019-12-27 01:11:46 2019-12-27 01:27:28 t 1 1 211475 621 0.00 2019-12-27 01:05:31 2019-12-27 01:28:59 t 1 1 211476 687 0.00 2019-12-27 01:12:15 2019-12-27 01:32:01 t 1 1 211484 562 0.00 2019-12-27 01:52:59 2019-12-27 01:53:26 t 1 1 211492 551 0.00 2019-12-27 02:00:26 2019-12-27 02:06:42 t 1 1 211495 687 0.00 2019-12-27 02:05:24 2019-12-27 02:16:58 t 1 1 211499 562 0.00 2019-12-27 02:25:13 2019-12-27 02:25:37 t 1 1 211501 551 0.00 2019-12-27 02:25:11 2019-12-27 02:40:42 t 1 1 211503 562 0.00 2019-12-27 02:43:33 2019-12-27 02:43:56 t 1 1 211504 675 0.00 2019-12-27 02:43:51 2019-12-27 02:50:06 t 1 1 211506 562 0.00 2019-12-27 02:54:23 2019-12-27 02:54:41 t 1 1 211507 562 0.00 2019-12-27 03:05:06 2019-12-27 03:05:27 t 1 1 211510 679 0.00 2019-12-27 03:14:43 2019-12-27 03:18:50 t 1 1 211511 562 0.00 2019-12-27 03:21:57 2019-12-27 03:22:12 t 1 1 211512 562 0.00 2019-12-27 03:32:38 2019-12-27 03:32:59 t 1 1 211516 562 0.00 2019-12-27 04:14:34 2019-12-27 04:14:55 t 1 1 211517 562 0.00 2019-12-27 04:25:17 2019-12-27 04:25:41 t 1 1 211518 562 0.00 2019-12-27 04:36:02 2019-12-27 04:36:31 t 1 1 211523 562 0.00 2019-12-27 05:15:48 2019-12-27 05:15:56 t 1 1 211526 627 0.00 2019-12-27 05:28:34 2019-12-27 05:34:35 t 1 1 211528 562 0.00 2019-12-27 05:44:43 2019-12-27 05:44:59 t 1 1 211532 562 0.00 2019-12-27 06:16:47 2019-12-27 06:17:08 t 1 1 211534 485 0.00 2019-12-27 06:20:34 2019-12-27 06:27:41 t 1 1 211536 707 0.00 2019-12-27 06:24:25 2019-12-27 06:32:34 t 1 1 211537 562 0.00 2019-12-27 06:38:12 2019-12-27 06:38:38 t 1 1 211541 726 0.00 2019-12-27 06:49:32 2019-12-27 07:06:20 t 1 1 211542 562 0.00 2019-12-27 07:10:22 2019-12-27 07:10:47 t 1 1 211545 562 0.00 2019-12-27 07:21:05 2019-12-27 07:21:33 t 1 1 211546 709 0.00 2019-12-27 07:25:52 2019-12-27 07:31:11 t 1 1 211547 562 0.00 2019-12-27 07:31:56 2019-12-27 07:32:13 t 1 1 211548 694 0.00 2019-12-26 23:31:22 2019-12-27 07:35:50 t 1 1 211550 516 0.00 2019-12-27 07:44:45 2019-12-27 07:48:20 t 1 1 211551 707 0.00 2019-12-27 07:39:39 2019-12-27 07:51:53 t 1 1 211554 707 0.00 2019-12-27 07:54:39 2019-12-27 08:02:33 t 1 1 211556 707 0.00 2019-12-27 08:02:33 2019-12-27 08:10:54 t 1 1 211557 516 0.00 2019-12-27 08:05:00 2019-12-27 08:11:54 t 1 1 211558 562 0.00 2019-12-27 08:14:01 2019-12-27 08:14:24 t 1 1 211325 722 0.00 2019-12-26 22:29:49 2019-12-26 22:34:35 t 1 1 211326 667 0.00 2019-12-26 22:34:25 2019-12-26 22:35:43 t 1 1 211328 562 0.00 2019-12-26 22:34:01 2019-12-26 22:35:59 t 1 1 211331 722 0.00 2019-12-26 22:35:07 2019-12-26 22:36:43 t 1 1 211333 562 0.00 2019-12-26 22:38:08 2019-12-26 22:39:06 t 1 1 211337 722 0.00 2019-12-26 22:45:10 2019-12-26 22:45:17 t 1 1 211341 562 0.00 2019-12-26 22:47:36 2019-12-26 22:48:37 t 1 1 211344 611 0.00 2019-12-26 22:46:52 2019-12-26 22:49:40 t 1 1 211348 722 0.00 2019-12-26 22:52:02 2019-12-26 22:52:33 t 1 1 211356 694 0.00 2019-12-26 22:48:44 2019-12-26 22:59:05 t 1 1 211359 722 0.00 2019-12-26 23:00:27 2019-12-26 23:01:01 t 1 1 211361 591 0.00 2019-12-26 20:57:38 2019-12-26 23:02:17 t 1 1 211365 722 0.00 2019-12-26 23:04:56 2019-12-26 23:05:39 t 1 1 211367 637 0.00 2019-12-26 23:04:37 2019-12-26 23:06:20 t 1 1 211368 562 0.00 2019-12-26 23:07:31 2019-12-26 23:07:49 t 1 1 211370 694 0.00 2019-12-26 22:59:05 2019-12-26 23:10:23 t 1 1 211374 681 0.00 2019-12-26 20:33:11 2019-12-26 23:11:41 t 1 1 211381 562 0.00 2019-12-26 23:18:15 2019-12-26 23:18:31 t 1 1 211386 611 0.00 2019-12-26 23:03:20 2019-12-26 23:21:22 t 1 1 211387 562 0.00 2019-12-26 23:22:10 2019-12-26 23:23:07 t 1 1 211390 683 0.00 2019-12-26 23:23:14 2019-12-26 23:24:39 t 1 1 211392 637 0.00 2019-12-26 23:19:01 2019-12-26 23:25:32 t 1 1 211402 611 0.00 2019-12-26 23:32:04 2019-12-26 23:35:52 t 1 1 211404 481 0.00 2019-12-26 20:29:58 2019-12-26 23:36:49 t 1 1 211405 763 0.00 2019-12-26 23:33:51 2019-12-26 23:37:41 t 1 1 211406 562 0.00 2019-12-26 23:39:00 2019-12-26 23:39:21 t 1 1 211408 611 0.00 2019-12-26 23:35:51 2019-12-26 23:40:41 t 1 1 211409 637 0.00 2019-12-26 23:32:48 2019-12-26 23:41:32 t 1 1 211410 679 0.00 2019-12-26 23:20:10 2019-12-26 23:43:34 t 1 1 211417 679 0.00 2019-12-26 23:53:53 2019-12-26 23:55:10 t 1 1 211421 220 0.00 2019-12-26 23:57:19 2019-12-26 23:57:21 t 1 1 211422 763 0.00 2019-12-26 23:51:54 2019-12-26 23:58:01 t 1 1 211426 763 0.00 2019-12-27 00:00:14 2019-12-27 00:04:22 t 1 1 211427 681 0.00 2019-12-26 23:15:44 2019-12-27 00:07:10 t 1 1 211430 481 0.00 2019-12-26 23:56:02 2019-12-27 00:11:02 t 1 1 211431 763 0.00 2019-12-27 00:04:58 2019-12-27 00:11:31 t 1 1 211432 637 0.00 2019-12-27 00:09:31 2019-12-27 00:16:07 t 1 1 211434 687 0.00 2019-12-26 23:40:36 2019-12-27 00:18:58 t 1 1 211436 637 0.00 2019-12-27 00:16:07 2019-12-27 00:20:17 t 1 1 211437 679 0.00 2019-12-27 00:20:15 2019-12-27 00:21:46 t 1 1 211439 763 0.00 2019-12-27 00:20:04 2019-12-27 00:26:13 t 1 1 211440 671 0.00 2019-12-27 00:17:15 2019-12-27 00:27:25 t 1 1 211441 637 0.00 2019-12-27 00:25:48 2019-12-27 00:31:18 t 1 1 211446 562 0.00 2019-12-26 23:44:54 2019-12-27 00:40:24 t 1 1 211449 716 0.00 2019-12-27 00:21:37 2019-12-27 00:48:23 t 1 1 211453 687 0.00 2019-12-27 00:20:51 2019-12-27 00:59:03 t 1 1 211457 627 0.00 2019-12-27 00:46:22 2019-12-27 01:06:53 t 1 1 211461 687 0.00 2019-12-27 01:08:55 2019-12-27 01:08:56 t 1 1 211463 687 0.00 2019-12-27 01:09:25 2019-12-27 01:09:27 t 1 1 211466 566 0.00 2019-12-27 01:09:54 2019-12-27 01:11:47 t 1 1 211467 744 0.00 2019-12-27 00:58:00 2019-12-27 01:13:12 t 1 1 211469 744 0.00 2019-12-27 01:13:12 2019-12-27 01:17:08 t 1 1 211470 722 0.00 2019-12-26 22:17:20 2019-12-27 01:19:10 t 1 1 211471 562 0.00 2019-12-27 01:24:33 2019-12-27 01:24:43 t 1 1 211479 551 0.00 2019-12-27 01:34:55 2019-12-27 01:40:55 t 1 1 211480 566 0.00 2019-12-27 01:27:28 2019-12-27 01:44:20 t 1 1 211481 562 0.00 2019-12-27 01:45:42 2019-12-27 01:45:56 t 1 1 211483 687 0.00 2019-12-27 01:41:32 2019-12-27 01:53:20 t 1 1 211485 551 0.00 2019-12-27 01:46:10 2019-12-27 01:54:57 t 1 1 211487 544 0.00 2019-12-27 01:20:15 2019-12-27 01:57:41 t 1 1 211489 566 0.00 2019-12-27 01:44:21 2019-12-27 02:02:40 t 1 1 211493 562 0.00 2019-12-27 02:14:32 2019-12-27 02:14:54 t 1 1 211497 566 0.00 2019-12-27 02:18:22 2019-12-27 02:23:24 t 1 1 211500 562 0.00 2019-12-27 02:32:54 2019-12-27 02:33:11 t 1 1 211502 679 0.00 2019-12-27 00:22:52 2019-12-27 02:42:36 t 1 1 211505 679 0.00 2019-12-27 02:42:36 2019-12-27 02:53:19 t 1 1 211508 562 0.00 2019-12-27 03:11:08 2019-12-27 03:11:29 t 1 1 211520 562 0.00 2019-12-27 04:56:52 2019-12-27 04:57:09 t 1 1 211522 562 0.00 2019-12-27 05:13:53 2019-12-27 05:14:16 t 1 1 211527 627 0.00 2019-12-27 05:34:34 2019-12-27 05:37:29 t 1 1 211533 503 0.00 2019-12-27 05:58:42 2019-12-27 06:23:45 t 1 1 211535 562 0.00 2019-12-27 06:27:30 2019-12-27 06:27:52 t 1 1 211538 562 0.00 2019-12-27 06:48:56 2019-12-27 06:49:20 t 1 1 211539 726 0.00 2019-12-27 06:20:56 2019-12-27 06:49:32 t 1 1 211540 562 0.00 2019-12-27 06:59:42 2019-12-27 07:00:05 t 1 1 211543 578 0.00 2019-12-26 20:46:05 2019-12-27 07:16:20 t 1 1 211544 516 0.00 2019-12-27 07:15:09 2019-12-27 07:18:26 t 1 1 211549 562 0.00 2019-12-27 07:42:33 2019-12-27 07:42:54 t 1 1 211552 611 0.00 2019-12-27 07:42:51 2019-12-27 07:54:07 t 1 1 211553 562 0.00 2019-12-27 07:52:32 2019-12-27 07:54:28 t 1 1 211555 562 0.00 2019-12-27 08:03:19 2019-12-27 08:03:41 t 1 1 211559 707 0.00 2019-12-27 08:10:54 2019-12-27 08:14:56 t 1 1 211560 744 0.00 2019-12-27 08:14:13 2019-12-27 08:16:03 t 1 1 211561 707 0.00 2019-12-27 08:14:56 2019-12-27 08:22:04 t 1 1 211562 689 0.00 2019-12-27 08:19:31 2019-12-27 08:24:35 t 1 1 211563 689 0.00 2019-12-27 08:24:35 2019-12-27 08:25:00 t 1 1 211564 562 0.00 2019-12-27 08:24:51 2019-12-27 08:25:09 t 1 1 211565 654 0.00 2019-12-27 08:18:14 2019-12-27 08:27:57 t 1 1 211566 675 0.00 2019-12-27 08:26:31 2019-12-27 08:28:37 t 1 1 211567 707 0.00 2019-12-27 08:22:04 2019-12-27 08:33:35 t 1 1 211568 562 0.00 2019-12-27 08:35:07 2019-12-27 08:35:32 t 1 1 211569 566 0.00 2019-12-27 08:35:21 2019-12-27 08:39:56 t 1 1 211570 654 0.00 2019-12-27 08:27:57 2019-12-27 08:40:29 t 1 1 211571 562 0.00 2019-12-27 08:40:47 2019-12-27 08:40:48 t 1 1 211572 562 0.00 2019-12-27 08:41:58 2019-12-27 08:42:17 t 1 1 211573 551 0.00 2019-12-27 02:40:42 2019-12-27 08:45:37 t 1 1 211574 562 0.00 2019-12-27 08:45:50 2019-12-27 08:47:46 t 1 1 211575 566 0.00 2019-12-27 08:47:32 2019-12-27 08:48:34 t 1 1 211576 562 0.00 2019-12-27 08:48:34 2019-12-27 08:48:54 t 1 1 211577 551 0.00 2019-12-27 08:45:37 2019-12-27 08:49:38 t 1 1 211578 551 0.00 2019-12-27 08:49:38 2019-12-27 08:58:41 t 1 1 211579 566 0.00 2019-12-27 08:48:47 2019-12-27 08:59:42 t 1 1 211580 516 0.00 2019-12-27 08:32:20 2019-12-27 09:02:09 t 1 1 211581 562 0.00 2019-12-27 08:56:14 2019-12-27 09:03:24 t 1 1 211582 675 0.00 2019-12-27 09:02:35 2019-12-27 09:04:16 t 1 1 211583 763 0.00 2019-12-27 09:05:19 2019-12-27 09:06:52 t 1 1 211584 611 0.00 2019-12-27 09:04:50 2019-12-27 09:07:07 t 1 1 211585 566 0.00 2019-12-27 08:59:42 2019-12-27 09:14:56 t 1 1 211588 562 0.00 2019-12-27 09:19:59 2019-12-27 09:22:34 t 1 1 211595 551 0.00 2019-12-27 09:17:57 2019-12-27 09:35:31 t 1 1 211596 562 0.00 2019-12-27 09:37:56 2019-12-27 09:38:19 t 1 1 211600 562 0.00 2019-12-27 09:44:24 2019-12-27 09:44:45 t 1 1 211601 551 0.00 2019-12-27 09:35:31 2019-12-27 09:46:37 t 1 1 211607 716 0.00 2019-12-27 09:47:17 2019-12-27 09:53:34 t 1 1 211611 516 0.00 2019-12-27 09:44:42 2019-12-27 09:58:41 t 1 1 211614 566 0.00 2019-12-27 09:53:06 2019-12-27 10:01:33 t 1 1 211615 551 0.00 2019-12-27 09:46:37 2019-12-27 10:01:42 t 1 1 211616 707 0.00 2019-12-27 09:54:32 2019-12-27 10:03:21 t 1 1 211617 687 0.00 2019-12-27 10:01:38 2019-12-27 10:03:57 t 1 1 211620 687 0.00 2019-12-27 10:04:12 2019-12-27 10:10:15 t 1 1 211621 707 0.00 2019-12-27 10:03:21 2019-12-27 10:13:22 t 1 1 211624 566 0.00 2019-12-27 10:01:33 2019-12-27 10:16:50 t 1 1 211625 631 0.00 2019-12-27 10:09:12 2019-12-27 10:17:20 t 1 1 211634 566 0.00 2019-12-27 10:22:58 2019-12-27 10:28:33 t 1 1 211641 687 0.00 2019-12-27 10:19:15 2019-12-27 10:32:45 t 1 1 211647 763 0.00 2019-12-27 10:43:33 2019-12-27 10:44:47 t 1 1 211649 763 0.00 2019-12-27 10:44:38 2019-12-27 10:48:55 t 1 1 211651 562 0.00 2019-12-27 10:49:14 2019-12-27 10:49:38 t 1 1 211652 611 0.00 2019-12-27 10:50:50 2019-12-27 10:52:55 t 1 1 211654 625 0.00 2019-12-27 10:47:26 2019-12-27 10:55:21 t 1 1 211658 768 0.00 2019-12-27 10:57:10 2019-12-27 10:59:59 t 1 1 211660 732 0.00 2019-12-27 10:38:53 2019-12-27 11:01:10 t 1 4 211662 728 0.00 2019-12-27 11:01:10 2019-12-27 11:03:15 t 1 4 211664 763 0.00 2019-12-27 11:04:23 2019-12-27 11:05:58 t 1 1 211665 591 0.00 2019-12-27 10:12:30 2019-12-27 11:07:45 t 1 1 211669 763 0.00 2019-12-27 11:05:58 2019-12-27 11:10:22 t 1 1 211670 667 0.00 2019-12-27 11:10:31 2019-12-27 11:10:32 t 1 1 211676 625 0.00 2019-12-27 10:55:21 2019-12-27 11:14:22 t 1 1 211677 732 0.00 2019-12-27 11:03:14 2019-12-27 11:17:15 t 1 4 211681 716 0.00 2019-12-27 10:19:19 2019-12-27 11:20:52 t 1 1 211685 763 0.00 2019-12-27 11:22:18 2019-12-27 11:26:38 t 1 1 211688 768 0.00 2019-12-27 11:23:22 2019-12-27 11:27:35 t 1 1 211691 538 0.00 2019-12-27 10:31:32 2019-12-27 11:29:24 t 1 1 211692 763 0.00 2019-12-27 11:28:05 2019-12-27 11:30:06 t 1 1 211694 578 0.00 2019-12-27 08:59:01 2019-12-27 11:32:44 t 1 1 211697 562 0.00 2019-12-27 11:33:57 2019-12-27 11:35:50 t 1 1 211699 687 0.00 2019-12-27 11:33:42 2019-12-27 11:36:19 t 1 1 211701 562 0.00 2019-12-27 11:37:08 2019-12-27 11:37:20 t 1 1 211704 562 0.00 2019-12-27 11:45:13 2019-12-27 11:45:36 t 1 1 211714 716 0.00 2019-12-27 11:40:50 2019-12-27 11:56:52 t 1 1 211716 591 0.00 2019-12-27 11:33:26 2019-12-27 11:58:38 t 1 1 211718 728 0.00 2019-12-27 11:58:36 2019-12-27 11:59:22 t 1 4 211719 625 0.00 2019-12-27 11:14:22 2019-12-27 12:00:13 t 1 1 211720 562 0.00 2019-12-27 12:00:15 2019-12-27 12:00:43 t 1 1 211721 683 0.00 2019-12-27 11:58:14 2019-12-27 12:01:34 t 1 1 211722 681 0.00 2019-12-27 10:57:48 2019-12-27 12:03:51 t 1 1 211726 752 0.00 2019-12-27 12:03:41 2019-12-27 12:07:18 t 1 1 211727 615 0.00 2019-12-27 11:55:26 2019-12-27 12:07:55 t 1 1 211728 562 0.00 2019-12-27 12:06:35 2019-12-27 12:08:36 t 1 1 211734 694 0.00 2019-12-27 11:59:12 2019-12-27 12:10:48 t 1 1 211737 562 0.00 2019-12-27 12:12:08 2019-12-27 12:13:02 t 1 1 211741 683 0.00 2019-12-27 12:14:37 2019-12-27 12:19:16 t 1 1 211743 763 0.00 2019-12-27 12:18:35 2019-12-27 12:22:03 t 1 1 211747 615 0.00 2019-12-27 12:22:47 2019-12-27 12:25:09 t 1 1 211750 742 0.00 2019-12-27 12:11:14 2019-12-27 12:26:06 t 1 1 211751 667 0.00 2019-12-27 12:10:08 2019-12-27 12:27:05 t 1 1 211757 625 0.00 2019-12-27 12:24:59 2019-12-27 12:32:45 t 1 1 211759 687 0.00 2019-12-27 12:30:39 2019-12-27 12:33:38 t 1 1 211760 514 0.00 2019-12-27 12:31:24 2019-12-27 12:35:38 t 1 1 211763 562 0.00 2019-12-27 12:37:57 2019-12-27 12:39:54 t 1 1 211767 683 0.00 2019-12-27 12:37:48 2019-12-27 12:41:12 t 1 1 211771 742 0.00 2019-12-27 12:41:33 2019-12-27 12:42:19 t 1 1 211773 763 0.00 2019-12-27 12:41:57 2019-12-27 12:43:32 t 1 1 211776 671 0.00 2019-12-27 12:41:47 2019-12-27 12:43:50 t 1 1 211778 544 0.00 2019-12-27 12:22:31 2019-12-27 12:49:42 t 1 1 211779 683 0.00 2019-12-27 12:45:55 2019-12-27 12:50:53 t 1 1 211781 667 0.00 2019-12-27 12:44:06 2019-12-27 12:53:32 t 1 1 211786 516 0.00 2019-12-27 12:52:54 2019-12-27 12:59:43 t 1 1 211793 687 0.00 2019-12-27 12:35:22 2019-12-27 13:10:13 t 1 1 211798 687 0.00 2019-12-27 13:14:18 2019-12-27 13:15:33 t 1 1 211799 562 0.00 2019-12-27 13:16:45 2019-12-27 13:17:12 t 1 1 211800 683 0.00 2019-12-27 12:58:23 2019-12-27 13:20:52 t 1 1 211804 562 0.00 2019-12-27 13:27:47 2019-12-27 13:27:56 t 1 1 211807 728 0.00 2019-12-27 13:35:00 2019-12-27 13:35:08 t 1 4 211814 514 0.00 2019-12-27 13:37:38 2019-12-27 13:51:14 t 1 1 211816 516 0.00 2019-12-27 13:32:34 2019-12-27 13:52:04 t 1 1 211822 671 0.00 2019-12-27 13:55:27 2019-12-27 13:59:23 t 1 1 211824 728 0.00 2019-12-27 14:06:22 2019-12-27 14:06:32 t 1 4 211830 631 0.00 2019-12-27 14:15:15 2019-12-27 14:15:46 t 1 1 211831 728 0.00 2019-12-27 14:16:51 2019-12-27 14:17:57 t 1 4 211832 562 0.00 2019-12-27 14:15:40 2019-12-27 14:18:35 t 1 1 211840 758 0.00 2019-12-27 14:18:12 2019-12-27 14:31:01 t 1 1 211845 578 0.00 2019-12-27 11:32:44 2019-12-27 14:34:21 t 1 1 211849 514 0.00 2019-12-27 14:18:45 2019-12-27 14:36:15 t 1 1 211853 611 0.00 2019-12-27 14:39:29 2019-12-27 14:41:59 t 1 1 211857 578 0.00 2019-12-27 14:34:21 2019-12-27 14:46:21 t 1 1 211863 734 0.00 2019-12-27 14:32:46 2019-12-27 14:51:45 t 1 1 211864 728 0.00 2019-12-27 14:55:49 2019-12-27 14:56:55 t 1 4 211865 562 0.00 2019-12-27 14:57:22 2019-12-27 14:57:44 t 1 1 211868 481 0.00 2019-12-27 13:24:23 2019-12-27 15:06:17 t 1 1 211870 687 0.00 2019-12-27 15:04:28 2019-12-27 15:06:22 t 1 1 211876 516 0.00 2019-12-27 15:05:22 2019-12-27 15:11:53 t 1 1 211878 562 0.00 2019-12-27 15:15:47 2019-12-27 15:16:08 t 1 1 211881 758 0.00 2019-12-27 15:17:33 2019-12-27 15:17:43 t 1 1 211883 687 0.00 2019-12-27 15:12:35 2019-12-27 15:18:32 t 1 1 211886 758 0.00 2019-12-27 15:19:25 2019-12-27 15:20:50 t 1 1 211895 220 0.00 2019-12-27 15:21:20 2019-12-27 15:32:25 t 1 1 211896 514 0.00 2019-12-27 15:26:01 2019-12-27 15:32:56 t 1 1 211898 728 0.00 2019-12-27 15:34:54 2019-12-27 15:35:02 t 1 4 211903 671 0.00 2019-12-27 15:39:25 2019-12-27 15:41:26 t 1 1 211908 730 0.00 2019-12-27 15:43:05 2019-12-27 15:45:53 t 1 1 211914 625 0.00 2019-12-27 12:38:46 2019-12-27 15:57:56 t 1 1 211915 220 0.00 2019-12-27 15:55:49 2019-12-27 15:58:50 t 1 1 211917 730 0.00 2019-12-27 15:45:53 2019-12-27 16:04:54 t 1 1 211586 551 0.00 2019-12-27 08:58:41 2019-12-27 09:17:57 t 1 1 211587 562 0.00 2019-12-27 09:11:59 2019-12-27 09:19:09 t 1 1 211590 562 0.00 2019-12-27 09:28:43 2019-12-27 09:29:11 t 1 1 211593 562 0.00 2019-12-27 09:33:15 2019-12-27 09:33:39 t 1 1 211598 566 0.00 2019-12-27 09:30:35 2019-12-27 09:41:44 t 1 1 211602 707 0.00 2019-12-27 09:42:16 2019-12-27 09:46:47 t 1 1 211604 485 0.00 2019-12-27 09:47:38 2019-12-27 09:52:08 t 1 1 211605 566 0.00 2019-12-27 09:41:44 2019-12-27 09:53:06 t 1 1 211609 716 0.00 2019-12-27 09:53:34 2019-12-27 09:58:13 t 1 1 211610 562 0.00 2019-12-27 09:55:52 2019-12-27 09:58:38 t 1 1 211612 562 0.00 2019-12-27 09:58:51 2019-12-27 09:59:27 t 1 1 211618 538 0.00 2019-12-26 23:09:01 2019-12-27 10:05:29 t 1 1 211623 687 0.00 2019-12-27 10:10:56 2019-12-27 10:16:41 t 1 1 211626 551 0.00 2019-12-27 10:01:42 2019-12-27 10:17:58 t 1 1 211629 562 0.00 2019-12-27 09:59:39 2019-12-27 10:20:34 t 1 1 211636 625 0.00 2019-12-27 08:18:47 2019-12-27 10:28:39 t 1 1 211640 562 0.00 2019-12-27 10:30:52 2019-12-27 10:31:17 t 1 1 211643 625 0.00 2019-12-27 10:28:39 2019-12-27 10:37:24 t 1 1 211644 562 0.00 2019-12-27 10:38:31 2019-12-27 10:38:52 t 1 1 211646 763 0.00 2019-12-27 10:43:17 2019-12-27 10:44:26 t 1 1 211653 763 0.00 2019-12-27 10:48:55 2019-12-27 10:55:15 t 1 1 211657 734 0.00 2019-12-27 10:49:07 2019-12-27 10:59:17 t 1 1 211659 562 0.00 2019-12-27 10:59:56 2019-12-27 11:00:20 t 1 1 211661 763 0.00 2019-12-27 10:58:32 2019-12-27 11:02:03 t 1 1 211663 730 0.00 2019-12-27 11:03:07 2019-12-27 11:04:35 t 1 1 211667 514 0.00 2019-12-27 11:08:33 2019-12-27 11:09:27 t 1 1 211673 670 0.00 2019-12-27 10:50:32 2019-12-27 11:11:59 t 1 1 211674 763 0.00 2019-12-27 11:10:21 2019-12-27 11:13:11 t 1 1 211678 728 0.00 2019-12-27 11:17:15 2019-12-27 11:17:23 t 1 4 211679 562 0.00 2019-12-27 11:17:42 2019-12-27 11:18:06 t 1 1 211682 707 0.00 2019-12-27 11:13:57 2019-12-27 11:21:57 t 1 1 211683 763 0.00 2019-12-27 11:20:12 2019-12-27 11:22:19 t 1 1 211689 763 0.00 2019-12-27 11:26:38 2019-12-27 11:28:05 t 1 1 211690 562 0.00 2019-12-27 11:28:26 2019-12-27 11:28:47 t 1 1 211693 687 0.00 2019-12-27 11:26:53 2019-12-27 11:30:33 t 1 1 211695 591 0.00 2019-12-27 11:07:45 2019-12-27 11:33:26 t 1 1 211696 687 0.00 2019-12-27 11:30:33 2019-12-27 11:33:42 t 1 1 211698 562 0.00 2019-12-27 11:36:04 2019-12-27 11:36:09 t 1 1 211702 687 0.00 2019-12-27 11:36:19 2019-12-27 11:39:51 t 1 1 211703 691 0.00 2019-12-27 11:40:49 2019-12-27 11:41:56 t 1 1 211706 683 0.00 2019-12-27 11:35:40 2019-12-27 11:46:23 t 1 1 211707 687 0.00 2019-12-27 11:39:51 2019-12-27 11:46:31 t 1 1 211709 763 0.00 2019-12-27 11:44:44 2019-12-27 11:47:07 t 1 1 211713 615 0.00 2019-12-27 11:51:04 2019-12-27 11:55:26 t 1 1 211715 683 0.00 2019-12-27 11:50:09 2019-12-27 11:58:14 t 1 1 211724 683 0.00 2019-12-27 12:01:34 2019-12-27 12:05:15 t 1 1 211725 681 0.00 2019-12-27 12:05:13 2019-12-27 12:06:38 t 1 1 211729 681 0.00 2019-12-27 12:06:36 2019-12-27 12:08:44 t 1 1 211732 667 0.00 2019-12-27 12:00:48 2019-12-27 12:09:22 t 1 1 211733 728 0.00 2019-12-27 12:09:20 2019-12-27 12:09:38 t 1 4 211735 681 0.00 2019-12-27 12:08:06 2019-12-27 12:10:59 t 1 1 211736 752 0.00 2019-12-27 12:07:18 2019-12-27 12:13:02 t 1 1 211738 683 0.00 2019-12-27 12:09:07 2019-12-27 12:14:37 t 1 1 211740 687 0.00 2019-12-27 12:11:40 2019-12-27 12:18:56 t 1 1 211742 728 0.00 2019-12-27 12:19:47 2019-12-27 12:21:51 t 1 4 211744 562 0.00 2019-12-27 12:20:34 2019-12-27 12:22:07 t 1 1 211745 615 0.00 2019-12-27 12:14:19 2019-12-27 12:22:47 t 1 1 211746 625 0.00 2019-12-27 12:08:37 2019-12-27 12:24:59 t 1 1 211748 694 0.00 2019-12-27 12:10:48 2019-12-27 12:25:49 t 1 1 211752 667 0.00 2019-12-27 12:27:15 2019-12-27 12:27:16 t 1 1 211753 514 0.00 2019-12-27 11:09:27 2019-12-27 12:31:24 t 1 1 211755 683 0.00 2019-12-27 12:26:04 2019-12-27 12:32:07 t 1 1 211756 516 0.00 2019-12-27 11:52:11 2019-12-27 12:32:43 t 1 1 211761 514 0.00 2019-12-27 12:35:14 2019-12-27 12:36:48 t 1 1 211762 683 0.00 2019-12-27 12:32:07 2019-12-27 12:37:48 t 1 1 211764 481 0.00 2019-12-27 11:00:21 2019-12-27 12:40:09 t 1 1 211766 732 0.00 2019-12-27 12:39:51 2019-12-27 12:40:57 t 1 1 211768 694 0.00 2019-12-27 12:25:49 2019-12-27 12:41:14 t 1 1 211769 742 0.00 2019-12-27 12:26:06 2019-12-27 12:41:33 t 1 1 211770 716 0.00 2019-12-27 12:41:49 2019-12-27 12:42:18 t 1 1 211775 728 0.00 2019-12-27 12:42:23 2019-12-27 12:43:46 t 1 4 211777 683 0.00 2019-12-27 12:41:12 2019-12-27 12:45:55 t 1 1 211780 516 0.00 2019-12-27 12:37:30 2019-12-27 12:52:54 t 1 1 211784 683 0.00 2019-12-27 12:50:53 2019-12-27 12:58:23 t 1 1 211785 544 0.00 2019-12-27 12:49:42 2019-12-27 12:59:09 t 1 1 211787 562 0.00 2019-12-27 12:39:52 2019-12-27 13:00:45 t 1 1 211792 707 0.00 2019-12-27 13:06:35 2019-12-27 13:08:09 t 1 1 211794 687 0.00 2019-12-27 13:10:28 2019-12-27 13:12:38 t 1 1 211801 481 0.00 2019-12-27 12:40:09 2019-12-27 13:24:07 t 1 1 211802 728 0.00 2019-12-27 13:24:33 2019-12-27 13:24:42 t 1 4 211809 562 0.00 2019-12-27 13:38:17 2019-12-27 13:38:44 t 1 1 211813 562 0.00 2019-12-27 13:49:46 2019-12-27 13:50:48 t 1 1 211815 691 0.00 2019-12-27 13:51:19 2019-12-27 13:51:43 t 1 1 211819 728 0.00 2019-12-27 13:55:54 2019-12-27 13:57:00 t 1 4 211820 562 0.00 2019-12-27 13:57:47 2019-12-27 13:58:14 t 1 1 211825 485 0.00 2019-12-27 14:05:31 2019-12-27 14:07:42 t 1 1 211826 562 0.00 2019-12-27 14:08:33 2019-12-27 14:08:59 t 1 1 211827 683 0.00 2019-12-27 13:26:12 2019-12-27 14:10:13 t 1 1 211828 514 0.00 2019-12-27 13:59:01 2019-12-27 14:12:23 t 1 1 211829 631 0.00 2019-12-27 14:10:25 2019-12-27 14:15:09 t 1 1 211833 514 0.00 2019-12-27 14:12:23 2019-12-27 14:18:45 t 1 1 211834 679 0.00 2019-12-27 14:11:19 2019-12-27 14:20:13 t 1 1 211836 687 0.00 2019-12-27 14:21:32 2019-12-27 14:23:02 t 1 1 211838 728 0.00 2019-12-27 14:24:20 2019-12-27 14:25:27 t 1 4 211841 687 0.00 2019-12-27 14:26:34 2019-12-27 14:31:05 t 1 1 211842 687 0.00 2019-12-27 14:31:17 2019-12-27 14:32:13 t 1 1 211846 726 0.00 2019-12-27 14:23:36 2019-12-27 14:35:04 t 1 1 211847 683 0.00 2019-12-27 14:10:13 2019-12-27 14:35:56 t 1 1 211850 562 0.00 2019-12-27 14:37:24 2019-12-27 14:37:58 t 1 1 211851 562 0.00 2019-12-27 14:39:01 2019-12-27 14:39:21 t 1 1 211854 726 0.00 2019-12-27 14:35:04 2019-12-27 14:44:20 t 1 1 211856 716 0.00 2019-12-27 14:16:09 2019-12-27 14:45:55 t 1 1 211858 728 0.00 2019-12-27 14:45:20 2019-12-27 14:46:26 t 1 4 211859 562 0.00 2019-12-27 14:46:35 2019-12-27 14:46:56 t 1 1 211861 683 0.00 2019-12-27 14:35:56 2019-12-27 14:50:18 t 1 1 211866 687 0.00 2019-12-27 14:58:47 2019-12-27 15:03:25 t 1 1 211867 730 0.00 2019-12-27 14:55:54 2019-12-27 15:05:15 t 1 1 211589 562 0.00 2019-12-27 09:26:14 2019-12-27 09:26:34 t 1 1 211591 566 0.00 2019-12-27 09:14:56 2019-12-27 09:30:35 t 1 1 211592 562 0.00 2019-12-27 09:30:14 2019-12-27 09:32:17 t 1 1 211594 562 0.00 2019-12-27 09:34:56 2019-12-27 09:35:04 t 1 1 211597 562 0.00 2019-12-27 09:41:05 2019-12-27 09:41:40 t 1 1 211599 707 0.00 2019-12-27 09:33:47 2019-12-27 09:42:16 t 1 1 211603 562 0.00 2019-12-27 09:49:54 2019-12-27 09:51:46 t 1 1 211606 562 0.00 2019-12-27 09:52:58 2019-12-27 09:53:20 t 1 1 211608 707 0.00 2019-12-27 09:46:47 2019-12-27 09:54:32 t 1 1 211613 687 0.00 2019-12-27 09:57:45 2019-12-27 10:00:52 t 1 1 211619 716 0.00 2019-12-27 09:58:13 2019-12-27 10:05:33 t 1 1 211622 538 0.00 2019-12-27 10:05:32 2019-12-27 10:15:04 t 1 1 211627 687 0.00 2019-12-27 10:17:11 2019-12-27 10:18:13 t 1 1 211628 716 0.00 2019-12-27 10:05:33 2019-12-27 10:19:19 t 1 1 211630 768 0.00 2019-12-27 10:19:37 2019-12-27 10:21:31 t 1 1 211631 566 0.00 2019-12-27 10:16:50 2019-12-27 10:22:58 t 1 1 211632 732 0.00 2019-12-27 10:19:25 2019-12-27 10:24:56 t 1 4 211633 671 0.00 2019-12-27 10:23:51 2019-12-27 10:26:09 t 1 1 211635 538 0.00 2019-12-27 10:15:13 2019-12-27 10:28:35 t 1 1 211637 689 0.00 2019-12-27 10:27:38 2019-12-27 10:28:49 t 1 1 211638 516 0.00 2019-12-27 10:25:45 2019-12-27 10:30:18 t 1 1 211639 551 0.00 2019-12-27 10:17:58 2019-12-27 10:31:00 t 1 1 211642 687 0.00 2019-12-27 10:32:45 2019-12-27 10:37:09 t 1 1 211645 763 0.00 2019-12-27 10:44:25 2019-12-27 10:44:25 f 1 1 211648 625 0.00 2019-12-27 10:37:24 2019-12-27 10:47:26 t 1 1 211650 768 0.00 2019-12-27 10:21:31 2019-12-27 10:48:55 t 1 1 211655 763 0.00 2019-12-27 10:55:15 2019-12-27 10:57:49 t 1 1 211656 730 0.00 2019-12-27 09:37:48 2019-12-27 10:58:56 t 1 1 211666 514 0.00 2019-12-27 10:46:23 2019-12-27 11:08:33 t 1 1 211668 562 0.00 2019-12-27 11:10:05 2019-12-27 11:10:20 t 1 1 211671 687 0.00 2019-12-27 10:37:33 2019-12-27 11:10:37 t 1 1 211672 730 0.00 2019-12-27 11:05:04 2019-12-27 11:11:56 t 1 1 211675 707 0.00 2019-12-27 11:00:19 2019-12-27 11:13:57 t 1 1 211680 763 0.00 2019-12-27 11:13:11 2019-12-27 11:20:13 t 1 1 211684 707 0.00 2019-12-27 11:21:57 2019-12-27 11:23:14 t 1 1 211686 687 0.00 2019-12-27 11:10:37 2019-12-27 11:26:53 t 1 1 211687 728 0.00 2019-12-27 11:27:01 2019-12-27 11:27:17 t 1 4 211700 562 0.00 2019-12-27 11:36:20 2019-12-27 11:36:55 t 1 1 211705 763 0.00 2019-12-27 11:44:01 2019-12-27 11:45:48 t 1 1 211708 687 0.00 2019-12-27 11:46:31 2019-12-27 11:46:58 t 1 1 211710 683 0.00 2019-12-27 11:46:23 2019-12-27 11:50:09 t 1 1 211711 615 0.00 2019-12-27 11:45:07 2019-12-27 11:51:04 t 1 1 211712 562 0.00 2019-12-27 11:52:50 2019-12-27 11:53:10 t 1 1 211717 694 0.00 2019-12-27 07:35:50 2019-12-27 11:59:12 t 1 1 211723 681 0.00 2019-12-27 12:03:50 2019-12-27 12:05:13 t 1 1 211730 683 0.00 2019-12-27 12:05:15 2019-12-27 12:09:07 t 1 1 211731 728 0.00 2019-12-27 12:09:03 2019-12-27 12:09:20 t 1 4 211739 562 0.00 2019-12-27 12:16:44 2019-12-27 12:17:01 t 1 1 211749 683 0.00 2019-12-27 12:19:16 2019-12-27 12:26:04 t 1 1 211754 562 0.00 2019-12-27 12:22:07 2019-12-27 12:31:58 t 1 1 211758 728 0.00 2019-12-27 12:31:13 2019-12-27 12:32:59 t 1 4 211765 667 0.00 2019-12-27 12:38:41 2019-12-27 12:40:56 t 1 1 211772 667 0.00 2019-12-27 12:41:44 2019-12-27 12:42:21 t 1 1 211774 667 0.00 2019-12-27 12:43:26 2019-12-27 12:43:37 t 1 1 211782 728 0.00 2019-12-27 12:53:10 2019-12-27 12:54:17 t 1 4 211783 611 0.00 2019-12-27 12:52:00 2019-12-27 12:55:24 t 1 1 211788 728 0.00 2019-12-27 13:03:38 2019-12-27 13:03:46 t 1 4 211789 627 0.00 2019-12-27 13:05:05 2019-12-27 13:06:06 t 1 1 211790 544 0.00 2019-12-27 12:59:09 2019-12-27 13:06:59 t 1 1 211791 562 0.00 2019-12-27 13:04:19 2019-12-27 13:08:07 t 1 1 211795 591 0.00 2019-12-27 12:09:42 2019-12-27 13:13:42 t 1 1 211796 562 0.00 2019-12-27 13:08:07 2019-12-27 13:14:24 t 1 1 211797 728 0.00 2019-12-27 13:14:05 2019-12-27 13:15:11 t 1 4 211803 683 0.00 2019-12-27 13:21:16 2019-12-27 13:26:12 t 1 1 211805 736 0.00 2019-12-27 13:29:54 2019-12-27 13:31:21 t 1 1 211806 736 0.00 2019-12-27 13:31:41 2019-12-27 13:31:47 t 1 1 211808 514 0.00 2019-12-27 13:24:35 2019-12-27 13:37:38 t 1 1 211810 728 0.00 2019-12-27 13:45:27 2019-12-27 13:45:44 t 1 4 211811 562 0.00 2019-12-27 13:46:58 2019-12-27 13:47:24 t 1 1 211812 611 0.00 2019-12-27 13:34:39 2019-12-27 13:50:13 t 1 1 211817 562 0.00 2019-12-27 13:50:47 2019-12-27 13:52:24 t 1 1 211818 691 0.00 2019-12-27 13:51:43 2019-12-27 13:54:11 t 1 1 211821 514 0.00 2019-12-27 13:51:14 2019-12-27 13:59:01 t 1 1 211823 611 0.00 2019-12-27 13:50:21 2019-12-27 14:05:06 t 1 1 211835 611 0.00 2019-12-27 14:16:05 2019-12-27 14:22:57 t 1 1 211837 687 0.00 2019-12-27 14:23:32 2019-12-27 14:24:25 t 1 1 211839 562 0.00 2019-12-27 14:26:29 2019-12-27 14:28:04 t 1 1 211843 758 0.00 2019-12-27 14:31:01 2019-12-27 14:32:25 t 1 1 211844 687 0.00 2019-12-27 14:32:22 2019-12-27 14:33:23 t 1 1 211848 728 0.00 2019-12-27 14:34:50 2019-12-27 14:35:57 t 1 4 211852 516 0.00 2019-12-27 14:35:57 2019-12-27 14:41:15 t 1 1 211855 726 0.00 2019-12-27 14:44:19 2019-12-27 14:45:55 t 1 1 211860 649 0.00 2019-12-27 14:00:14 2019-12-27 14:48:19 t 1 1 211862 538 0.00 2019-12-27 13:31:03 2019-12-27 14:51:07 t 1 1 211872 514 0.00 2019-12-27 14:36:55 2019-12-27 15:06:38 t 1 1 211873 687 0.00 2019-12-27 15:06:39 2019-12-27 15:07:08 t 1 1 211874 687 0.00 2019-12-27 15:07:10 2019-12-27 15:09:30 t 1 1 211875 730 0.00 2019-12-27 15:05:15 2019-12-27 15:10:30 t 1 1 211880 758 0.00 2019-12-27 15:16:42 2019-12-27 15:17:29 t 1 1 211882 728 0.00 2019-12-27 15:16:47 2019-12-27 15:17:53 t 1 4 211884 734 0.00 2019-12-27 15:14:54 2019-12-27 15:18:36 t 1 1 211885 687 0.00 2019-12-27 15:18:55 2019-12-27 15:20:10 t 1 1 211887 220 0.00 2019-12-27 15:12:50 2019-12-27 15:21:20 t 1 1 211888 758 0.00 2019-12-27 15:23:12 2019-12-27 15:23:41 t 1 1 211889 562 0.00 2019-12-27 15:23:56 2019-12-27 15:24:13 t 1 1 211891 728 0.00 2019-12-27 15:24:25 2019-12-27 15:24:34 t 1 4 211893 734 0.00 2019-12-27 15:18:36 2019-12-27 15:25:31 t 1 1 211902 514 0.00 2019-12-27 15:32:56 2019-12-27 15:40:38 t 1 1 211904 730 0.00 2019-12-27 15:33:12 2019-12-27 15:43:05 t 1 1 211905 728 0.00 2019-12-27 15:42:45 2019-12-27 15:43:51 t 1 4 211906 220 0.00 2019-12-27 15:32:25 2019-12-27 15:45:04 t 1 1 211911 220 0.00 2019-12-27 15:45:04 2019-12-27 15:55:49 t 1 1 211912 562 0.00 2019-12-27 15:56:01 2019-12-27 15:56:25 t 1 1 211913 728 0.00 2019-12-27 15:53:14 2019-12-27 15:57:37 t 1 4 211916 562 0.00 2019-12-27 15:59:36 2019-12-27 16:04:37 t 1 1 211919 728 0.00 2019-12-27 16:07:00 2019-12-27 16:07:08 t 1 4 211921 220 0.00 2019-12-27 16:04:39 2019-12-27 16:10:17 t 1 1 211869 562 0.00 2019-12-27 15:05:14 2019-12-27 15:06:19 t 1 1 211871 728 0.00 2019-12-27 15:06:18 2019-12-27 15:06:27 t 1 4 211877 687 0.00 2019-12-27 15:09:38 2019-12-27 15:12:27 t 1 1 211879 514 0.00 2019-12-27 15:06:38 2019-12-27 15:16:34 t 1 1 211890 728 0.00 2019-12-27 15:24:05 2019-12-27 15:24:19 t 1 4 211892 758 0.00 2019-12-27 15:24:24 2019-12-27 15:24:55 t 1 1 211894 514 0.00 2019-12-27 15:16:34 2019-12-27 15:26:01 t 1 1 211897 562 0.00 2019-12-27 15:34:33 2019-12-27 15:34:59 t 1 1 211899 671 0.00 2019-12-27 15:32:08 2019-12-27 15:35:17 t 1 1 211900 671 0.00 2019-12-27 15:35:17 2019-12-27 15:39:26 t 1 1 211901 716 0.00 2019-12-27 15:12:28 2019-12-27 15:39:41 t 1 1 211907 562 0.00 2019-12-27 15:45:23 2019-12-27 15:45:42 t 1 1 211909 562 0.00 2019-12-27 15:47:39 2019-12-27 15:47:45 t 1 1 211910 514 0.00 2019-12-27 15:40:38 2019-12-27 15:54:00 t 1 1 211918 611 0.00 2019-12-27 14:42:46 2019-12-27 16:05:06 t 1 1 211923 562 0.00 2019-12-27 16:12:57 2019-12-27 16:13:13 t 1 1 211925 562 0.00 2019-12-27 16:16:51 2019-12-27 16:17:00 t 1 1 211930 679 0.00 2019-12-27 15:57:53 2019-12-27 16:19:55 t 1 1 211931 562 0.00 2019-12-27 16:19:18 2019-12-27 16:21:18 t 1 1 211933 679 0.00 2019-12-27 16:22:15 2019-12-27 16:23:47 t 1 1 211934 220 0.00 2019-12-27 16:19:31 2019-12-27 16:26:31 t 1 1 211936 730 0.00 2019-12-27 16:19:29 2019-12-27 16:27:57 t 1 4 211938 691 0.00 2019-12-27 16:29:15 2019-12-27 16:31:13 t 1 1 211941 562 0.00 2019-12-27 16:36:44 2019-12-27 16:36:57 t 1 1 211943 683 0.00 2019-12-27 16:30:18 2019-12-27 16:37:26 t 1 1 211945 758 0.00 2019-12-27 16:42:12 2019-12-27 16:42:19 t 1 1 211947 758 0.00 2019-12-27 16:46:26 2019-12-27 16:47:23 t 1 1 211950 728 0.00 2019-12-27 16:47:51 2019-12-27 16:47:59 t 1 4 211953 562 0.00 2019-12-27 16:49:35 2019-12-27 16:50:17 t 1 1 211954 683 0.00 2019-12-27 16:44:03 2019-12-27 16:50:59 t 1 1 211956 763 0.00 2019-12-27 16:49:22 2019-12-27 16:52:12 t 1 1 211958 625 0.00 2019-12-27 16:55:48 2019-12-27 16:57:00 t 1 1 211960 679 0.00 2019-12-27 16:48:23 2019-12-27 16:57:37 t 1 1 211964 679 0.00 2019-12-27 16:58:21 2019-12-27 16:58:34 t 1 1 211966 679 0.00 2019-12-27 16:58:56 2019-12-27 16:59:32 t 1 1 211971 679 0.00 2019-12-27 17:01:52 2019-12-27 17:02:07 t 1 1 211973 679 0.00 2019-12-27 17:02:12 2019-12-27 17:02:42 t 1 1 211975 758 0.00 2019-12-27 17:02:38 2019-12-27 17:03:10 t 1 1 211976 679 0.00 2019-12-27 17:03:17 2019-12-27 17:03:33 t 1 1 211980 679 0.00 2019-12-27 17:04:15 2019-12-27 17:04:47 t 1 1 211984 679 0.00 2019-12-27 17:06:00 2019-12-27 17:06:14 t 1 1 211985 679 0.00 2019-12-27 17:06:20 2019-12-27 17:06:34 t 1 1 211990 679 0.00 2019-12-27 17:09:07 2019-12-27 17:09:38 t 1 1 211992 514 0.00 2019-12-27 15:54:00 2019-12-27 17:09:55 t 1 1 211997 679 0.00 2019-12-27 17:12:00 2019-12-27 17:12:17 t 1 1 211998 679 0.00 2019-12-27 17:12:22 2019-12-27 17:12:36 t 1 1 212000 679 0.00 2019-12-27 17:12:58 2019-12-27 17:13:13 t 1 1 212004 679 0.00 2019-12-27 17:14:04 2019-12-27 17:14:15 t 1 1 212006 679 0.00 2019-12-27 17:14:40 2019-12-27 17:14:59 t 1 1 212007 679 0.00 2019-12-27 17:15:05 2019-12-27 17:15:34 t 1 1 212009 481 0.00 2019-12-27 16:37:29 2019-12-27 17:16:09 t 1 1 212010 578 0.00 2019-12-27 14:46:21 2019-12-27 17:16:36 t 1 1 212019 514 0.00 2019-12-27 17:09:55 2019-12-27 17:19:08 t 1 1 212023 758 0.00 2019-12-27 17:18:20 2019-12-27 17:19:37 t 1 1 212026 679 0.00 2019-12-27 17:20:02 2019-12-27 17:20:36 t 1 1 212030 679 0.00 2019-12-27 17:21:45 2019-12-27 17:22:00 t 1 1 212032 578 0.00 2019-12-27 17:16:36 2019-12-27 17:22:50 t 1 1 212037 679 0.00 2019-12-27 17:23:43 2019-12-27 17:23:57 t 1 1 212039 679 0.00 2019-12-27 17:24:03 2019-12-27 17:24:12 t 1 1 212041 679 0.00 2019-12-27 17:24:45 2019-12-27 17:25:00 t 1 1 212044 679 0.00 2019-12-27 17:25:25 2019-12-27 17:25:37 t 1 1 212047 679 0.00 2019-12-27 17:26:03 2019-12-27 17:26:18 t 1 1 212049 763 0.00 2019-12-27 17:22:38 2019-12-27 17:26:57 t 1 1 212051 679 0.00 2019-12-27 17:27:04 2019-12-27 17:27:18 t 1 1 212052 679 0.00 2019-12-27 17:27:24 2019-12-27 17:27:38 t 1 1 212053 679 0.00 2019-12-27 17:27:44 2019-12-27 17:27:58 t 1 1 212055 615 0.00 2019-12-27 17:25:38 2019-12-27 17:28:18 t 1 1 212056 758 0.00 2019-12-27 17:27:55 2019-12-27 17:28:37 t 1 1 212060 679 0.00 2019-12-27 17:29:15 2019-12-27 17:29:38 t 1 1 212061 730 0.00 2019-12-27 17:23:47 2019-12-27 17:29:47 t 1 4 212066 758 0.00 2019-12-27 17:29:20 2019-12-27 17:30:38 t 1 1 212068 679 0.00 2019-12-27 17:30:44 2019-12-27 17:30:54 t 1 1 212072 679 0.00 2019-12-27 17:32:08 2019-12-27 17:32:18 t 1 1 212073 679 0.00 2019-12-27 17:32:23 2019-12-27 17:32:43 t 1 1 212076 679 0.00 2019-12-27 17:33:08 2019-12-27 17:33:23 t 1 1 212080 679 0.00 2019-12-27 17:34:03 2019-12-27 17:34:18 t 1 1 212082 679 0.00 2019-12-27 17:34:23 2019-12-27 17:34:43 t 1 1 212088 758 0.00 2019-12-27 17:35:32 2019-12-27 17:35:48 t 1 1 212089 679 0.00 2019-12-27 17:35:50 2019-12-27 17:36:05 t 1 1 212093 763 0.00 2019-12-27 17:35:32 2019-12-27 17:38:26 t 1 1 212096 611 0.00 2019-12-27 17:36:52 2019-12-27 17:39:36 t 1 1 212100 763 0.00 2019-12-27 17:38:26 2019-12-27 17:40:49 t 1 1 212106 679 0.00 2019-12-27 17:41:49 2019-12-27 17:42:03 t 1 1 212111 763 0.00 2019-12-27 17:40:49 2019-12-27 17:43:31 t 1 1 212115 679 0.00 2019-12-27 17:44:21 2019-12-27 17:44:35 t 1 1 212117 679 0.00 2019-12-27 17:44:41 2019-12-27 17:45:12 t 1 1 212118 679 0.00 2019-12-27 17:45:18 2019-12-27 17:45:28 t 1 1 212121 656 0.00 2019-12-27 17:45:08 2019-12-27 17:46:11 t 1 1 212128 679 0.00 2019-12-27 17:47:57 2019-12-27 17:48:16 t 1 1 212132 679 0.00 2019-12-27 17:48:42 2019-12-27 17:49:13 t 1 1 212135 671 0.00 2019-12-27 17:39:27 2019-12-27 17:50:33 t 1 1 212140 679 0.00 2019-12-27 17:51:35 2019-12-27 17:51:50 t 1 1 212145 679 0.00 2019-12-27 17:53:17 2019-12-27 17:53:31 t 1 1 212146 679 0.00 2019-12-27 17:53:37 2019-12-27 17:53:46 t 1 1 212148 694 0.00 2019-12-27 12:41:14 2019-12-27 17:53:53 t 1 1 212150 679 0.00 2019-12-27 17:53:52 2019-12-27 17:54:11 t 1 1 212152 538 0.00 2019-12-27 16:43:23 2019-12-27 17:54:20 t 1 1 212163 679 0.00 2019-12-27 17:57:46 2019-12-27 17:57:55 t 1 1 212167 679 0.00 2019-12-27 17:59:25 2019-12-27 17:59:40 t 1 1 212171 637 0.00 2019-12-27 17:55:51 2019-12-27 18:00:45 t 1 1 212172 637 0.00 2019-12-27 18:00:38 2019-12-27 18:02:13 t 1 1 212173 758 0.00 2019-12-27 18:02:40 2019-12-27 18:03:07 t 1 1 212175 514 0.00 2019-12-27 17:51:03 2019-12-27 18:05:40 t 1 1 212177 562 0.00 2019-12-27 18:07:29 2019-12-27 18:08:12 t 1 1 212179 679 0.00 2019-12-27 18:00:27 2019-12-27 18:09:10 t 1 1 212180 656 0.00 2019-12-27 18:03:30 2019-12-27 18:10:03 t 1 1 212185 637 0.00 2019-12-27 18:02:11 2019-12-27 18:19:35 t 1 1 211920 683 0.00 2019-12-27 16:06:15 2019-12-27 16:09:28 t 1 1 211922 730 0.00 2019-12-27 16:04:54 2019-12-27 16:10:19 t 1 1 211924 625 0.00 2019-12-27 15:57:56 2019-12-27 16:14:38 t 1 1 211926 730 0.00 2019-12-27 16:15:06 2019-12-27 16:17:28 t 1 4 211928 728 0.00 2019-12-27 16:17:28 2019-12-27 16:18:34 t 1 4 211929 220 0.00 2019-12-27 16:10:17 2019-12-27 16:19:31 t 1 1 211946 683 0.00 2019-12-27 16:37:26 2019-12-27 16:44:03 t 1 1 211949 730 0.00 2019-12-27 16:41:25 2019-12-27 16:47:51 t 1 4 211951 562 0.00 2019-12-27 16:47:56 2019-12-27 16:48:19 t 1 1 211955 683 0.00 2019-12-27 16:50:59 2019-12-27 16:51:05 t 1 1 211957 625 0.00 2019-12-27 16:17:00 2019-12-27 16:55:48 t 1 1 211962 679 0.00 2019-12-27 16:58:01 2019-12-27 16:58:16 t 1 1 211969 679 0.00 2019-12-27 17:00:43 2019-12-27 17:00:56 t 1 1 211970 679 0.00 2019-12-27 17:01:02 2019-12-27 17:01:46 t 1 1 211978 625 0.00 2019-12-27 16:57:00 2019-12-27 17:04:01 t 1 1 211981 679 0.00 2019-12-27 17:04:53 2019-12-27 17:05:33 t 1 1 211983 679 0.00 2019-12-27 17:05:39 2019-12-27 17:05:54 t 1 1 211996 679 0.00 2019-12-27 17:11:44 2019-12-27 17:11:54 t 1 1 212003 679 0.00 2019-12-27 17:13:43 2019-12-27 17:13:58 t 1 1 212005 679 0.00 2019-12-27 17:14:20 2019-12-27 17:14:34 t 1 1 212012 562 0.00 2019-12-27 17:16:01 2019-12-27 17:17:00 t 1 1 212015 679 0.00 2019-12-27 17:17:48 2019-12-27 17:17:58 t 1 1 212016 637 0.00 2019-12-27 17:13:08 2019-12-27 17:18:22 t 1 1 212018 679 0.00 2019-12-27 17:18:39 2019-12-27 17:18:54 t 1 1 212025 728 0.00 2019-12-27 17:19:18 2019-12-27 17:20:23 t 1 4 212028 679 0.00 2019-12-27 17:21:02 2019-12-27 17:21:14 t 1 1 212029 679 0.00 2019-12-27 17:21:20 2019-12-27 17:21:39 t 1 1 212034 763 0.00 2019-12-27 17:16:01 2019-12-27 17:23:03 t 1 1 212040 679 0.00 2019-12-27 17:24:18 2019-12-27 17:24:40 t 1 1 212043 611 0.00 2019-12-27 17:13:23 2019-12-27 17:25:27 t 1 1 212045 615 0.00 2019-12-27 17:02:26 2019-12-27 17:25:38 t 1 1 212046 679 0.00 2019-12-27 17:25:43 2019-12-27 17:25:57 t 1 1 212048 679 0.00 2019-12-27 17:26:24 2019-12-27 17:26:43 t 1 1 212050 679 0.00 2019-12-27 17:26:49 2019-12-27 17:26:59 t 1 1 212057 679 0.00 2019-12-27 17:28:19 2019-12-27 17:28:45 t 1 1 212059 679 0.00 2019-12-27 17:28:50 2019-12-27 17:29:10 t 1 1 212062 679 0.00 2019-12-27 17:29:43 2019-12-27 17:29:54 t 1 1 212063 763 0.00 2019-12-27 17:26:39 2019-12-27 17:30:14 t 1 1 212071 679 0.00 2019-12-27 17:31:48 2019-12-27 17:32:02 t 1 1 212077 679 0.00 2019-12-27 17:33:28 2019-12-27 17:33:43 t 1 1 212079 679 0.00 2019-12-27 17:33:48 2019-12-27 17:33:58 t 1 1 212081 578 0.00 2019-12-27 17:22:50 2019-12-27 17:34:19 t 1 1 212084 679 0.00 2019-12-27 17:35:05 2019-12-27 17:35:19 t 1 1 212086 763 0.00 2019-12-27 17:30:14 2019-12-27 17:35:33 t 1 1 212095 679 0.00 2019-12-27 17:39:10 2019-12-27 17:39:24 t 1 1 212097 679 0.00 2019-12-27 17:39:30 2019-12-27 17:40:05 t 1 1 212098 679 0.00 2019-12-27 17:40:11 2019-12-27 17:40:26 t 1 1 212099 679 0.00 2019-12-27 17:40:32 2019-12-27 17:40:47 t 1 1 212102 728 0.00 2019-12-27 17:40:16 2019-12-27 17:41:22 t 1 4 212105 578 0.00 2019-12-27 17:34:19 2019-12-27 17:41:50 t 1 1 212110 679 0.00 2019-12-27 17:43:15 2019-12-27 17:43:27 t 1 1 212113 637 0.00 2019-12-27 17:35:59 2019-12-27 17:44:05 t 1 1 212116 562 0.00 2019-12-27 17:44:40 2019-12-27 17:45:01 t 1 1 212120 679 0.00 2019-12-27 17:45:33 2019-12-27 17:45:43 t 1 1 212122 679 0.00 2019-12-27 17:45:48 2019-12-27 17:46:15 t 1 1 212123 679 0.00 2019-12-27 17:46:21 2019-12-27 17:46:35 t 1 1 212127 679 0.00 2019-12-27 17:47:38 2019-12-27 17:47:52 t 1 1 212129 679 0.00 2019-12-27 17:48:22 2019-12-27 17:48:36 t 1 1 212130 758 0.00 2019-12-27 17:48:45 2019-12-27 17:48:50 t 1 1 212133 679 0.00 2019-12-27 17:49:18 2019-12-27 17:49:30 t 1 1 212136 578 0.00 2019-12-27 17:41:50 2019-12-27 17:50:34 t 1 1 212138 679 0.00 2019-12-27 17:50:37 2019-12-27 17:51:13 t 1 1 212139 679 0.00 2019-12-27 17:51:19 2019-12-27 17:51:29 t 1 1 212147 562 0.00 2019-12-27 17:52:38 2019-12-27 17:53:50 t 1 1 212151 483 0.00 2019-12-27 17:44:05 2019-12-27 17:54:16 t 1 1 212153 679 0.00 2019-12-27 17:54:17 2019-12-27 17:54:27 t 1 1 212154 758 0.00 2019-12-27 17:53:53 2019-12-27 17:54:30 t 1 1 212156 728 0.00 2019-12-27 17:50:45 2019-12-27 17:56:15 t 1 4 212159 679 0.00 2019-12-27 17:56:49 2019-12-27 17:57:01 t 1 1 212161 679 0.00 2019-12-27 17:57:06 2019-12-27 17:57:20 t 1 1 212162 679 0.00 2019-12-27 17:57:26 2019-12-27 17:57:40 t 1 1 212165 679 0.00 2019-12-27 17:58:00 2019-12-27 17:58:21 t 1 1 212166 679 0.00 2019-12-27 17:58:26 2019-12-27 17:59:20 t 1 1 212169 758 0.00 2019-12-27 17:59:21 2019-12-27 18:00:12 t 1 1 212174 562 0.00 2019-12-27 18:03:57 2019-12-27 18:04:05 t 1 1 212182 562 0.00 2019-12-27 18:12:39 2019-12-27 18:12:57 t 1 1 212183 758 0.00 2019-12-27 18:14:04 2019-12-27 18:14:17 t 1 1 212184 728 0.00 2019-12-27 18:16:06 2019-12-27 18:17:13 t 1 4 212190 763 0.00 2019-12-27 18:23:11 2019-12-27 18:26:46 t 1 1 212196 516 0.00 2019-12-27 18:30:29 2019-12-27 18:33:20 t 1 1 212199 611 0.00 2019-12-27 18:31:31 2019-12-27 18:35:55 t 1 1 212202 728 0.00 2019-12-27 18:26:36 2019-12-27 18:37:15 t 1 4 212207 562 0.00 2019-12-27 18:44:53 2019-12-27 18:45:16 t 1 1 212211 763 0.00 2019-12-27 18:44:25 2019-12-27 18:48:59 t 1 1 212216 679 0.00 2019-12-27 18:49:04 2019-12-27 18:52:46 t 1 1 212222 763 0.00 2019-12-27 18:54:13 2019-12-27 18:57:27 t 1 1 212223 763 0.00 2019-12-27 18:57:28 2019-12-27 18:57:29 t 1 1 212225 758 0.00 2019-12-27 18:58:25 2019-12-27 18:58:51 t 1 1 212227 637 0.00 2019-12-27 18:52:49 2019-12-27 18:59:55 t 1 1 212234 562 0.00 2019-12-27 19:06:20 2019-12-27 19:06:44 t 1 1 212239 758 0.00 2019-12-27 19:12:17 2019-12-27 19:12:19 t 1 1 212242 660 0.00 2019-12-27 19:07:15 2019-12-27 19:17:09 t 1 1 212244 562 0.00 2019-12-27 19:17:03 2019-12-27 19:17:24 t 1 1 212248 671 0.00 2019-12-27 19:18:00 2019-12-27 19:21:23 t 1 1 212250 758 0.00 2019-12-27 19:22:24 2019-12-27 19:23:13 t 1 1 212251 694 0.00 2019-12-27 18:42:54 2019-12-27 19:27:07 t 1 1 212252 562 0.00 2019-12-27 19:27:44 2019-12-27 19:28:13 t 1 1 212253 728 0.00 2019-12-27 19:28:29 2019-12-27 19:28:47 t 1 4 212255 763 0.00 2019-12-27 19:31:05 2019-12-27 19:34:18 t 1 1 212257 514 0.00 2019-12-27 18:47:53 2019-12-27 19:35:11 t 1 1 212258 763 0.00 2019-12-27 19:34:37 2019-12-27 19:35:44 t 1 1 212260 728 0.00 2019-12-27 19:36:03 2019-12-27 19:36:27 t 1 4 212263 694 0.00 2019-12-27 19:27:04 2019-12-27 19:39:11 t 1 1 212266 591 0.00 2019-12-27 19:13:54 2019-12-27 19:41:55 t 1 1 212267 763 0.00 2019-12-27 19:39:08 2019-12-27 19:42:54 t 1 1 212268 728 0.00 2019-12-27 19:42:29 2019-12-27 19:43:36 t 1 4 212269 758 0.00 2019-12-27 19:29:38 2019-12-27 19:44:02 t 1 1 211927 481 0.00 2019-12-27 15:06:33 2019-12-27 16:18:12 t 1 1 211932 679 0.00 2019-12-27 16:19:55 2019-12-27 16:22:12 t 1 1 211935 562 0.00 2019-12-27 16:25:59 2019-12-27 16:27:04 t 1 1 211937 728 0.00 2019-12-27 16:27:57 2019-12-27 16:29:02 t 1 4 211939 671 0.00 2019-12-27 16:27:10 2019-12-27 16:31:31 t 1 1 211940 481 0.00 2019-12-27 16:18:55 2019-12-27 16:36:52 t 1 1 211942 730 0.00 2019-12-27 16:29:08 2019-12-27 16:37:22 t 1 4 211944 728 0.00 2019-12-27 16:37:22 2019-12-27 16:38:28 t 1 4 211948 562 0.00 2019-12-27 16:47:22 2019-12-27 16:47:41 t 1 1 211952 679 0.00 2019-12-27 16:32:08 2019-12-27 16:48:23 t 1 1 211959 562 0.00 2019-12-27 16:56:49 2019-12-27 16:57:37 t 1 1 211961 679 0.00 2019-12-27 16:57:43 2019-12-27 16:57:56 t 1 1 211963 728 0.00 2019-12-27 16:58:19 2019-12-27 16:58:28 t 1 4 211965 679 0.00 2019-12-27 16:58:40 2019-12-27 16:58:51 t 1 1 211967 679 0.00 2019-12-27 16:59:38 2019-12-27 17:00:08 t 1 1 211968 679 0.00 2019-12-27 17:00:14 2019-12-27 17:00:37 t 1 1 211972 615 0.00 2019-12-27 16:54:54 2019-12-27 17:02:26 t 1 1 211974 679 0.00 2019-12-27 17:02:48 2019-12-27 17:02:57 t 1 1 211977 679 0.00 2019-12-27 17:03:39 2019-12-27 17:03:53 t 1 1 211979 679 0.00 2019-12-27 17:03:59 2019-12-27 17:04:10 t 1 1 211982 562 0.00 2019-12-27 17:05:15 2019-12-27 17:05:33 t 1 1 211986 679 0.00 2019-12-27 17:06:39 2019-12-27 17:06:54 t 1 1 211987 679 0.00 2019-12-27 17:06:59 2019-12-27 17:08:01 t 1 1 211988 679 0.00 2019-12-27 17:08:06 2019-12-27 17:08:36 t 1 1 211989 679 0.00 2019-12-27 17:08:41 2019-12-27 17:08:56 t 1 1 211991 728 0.00 2019-12-27 17:08:47 2019-12-27 17:09:55 t 1 4 211993 679 0.00 2019-12-27 17:09:43 2019-12-27 17:09:58 t 1 1 211994 679 0.00 2019-12-27 17:10:03 2019-12-27 17:10:34 t 1 1 211995 679 0.00 2019-12-27 17:10:39 2019-12-27 17:11:38 t 1 1 211999 679 0.00 2019-12-27 17:12:42 2019-12-27 17:12:52 t 1 1 212001 758 0.00 2019-12-27 17:12:52 2019-12-27 17:13:23 t 1 1 212002 679 0.00 2019-12-27 17:13:18 2019-12-27 17:13:37 t 1 1 212008 679 0.00 2019-12-27 17:15:39 2019-12-27 17:16:00 t 1 1 212011 679 0.00 2019-12-27 17:16:05 2019-12-27 17:16:37 t 1 1 212013 679 0.00 2019-12-27 17:16:43 2019-12-27 17:17:04 t 1 1 212014 679 0.00 2019-12-27 17:17:09 2019-12-27 17:17:42 t 1 1 212017 679 0.00 2019-12-27 17:18:07 2019-12-27 17:18:34 t 1 1 212020 679 0.00 2019-12-27 17:19:00 2019-12-27 17:19:09 t 1 1 212021 730 0.00 2019-12-27 17:18:26 2019-12-27 17:19:18 t 1 4 212022 679 0.00 2019-12-27 17:19:15 2019-12-27 17:19:36 t 1 1 212024 679 0.00 2019-12-27 17:19:42 2019-12-27 17:19:57 t 1 1 212027 679 0.00 2019-12-27 17:20:42 2019-12-27 17:20:57 t 1 1 212031 679 0.00 2019-12-27 17:22:06 2019-12-27 17:22:15 t 1 1 212033 679 0.00 2019-12-27 17:22:21 2019-12-27 17:22:50 t 1 1 212035 679 0.00 2019-12-27 17:22:55 2019-12-27 17:23:11 t 1 1 212036 679 0.00 2019-12-27 17:23:16 2019-12-27 17:23:37 t 1 1 212038 758 0.00 2019-12-27 17:23:48 2019-12-27 17:24:09 t 1 1 212042 679 0.00 2019-12-27 17:25:06 2019-12-27 17:25:19 t 1 1 212054 679 0.00 2019-12-27 17:28:04 2019-12-27 17:28:14 t 1 1 212058 220 0.00 2019-12-27 16:26:31 2019-12-27 17:28:47 t 1 1 212064 679 0.00 2019-12-27 17:29:59 2019-12-27 17:30:14 t 1 1 212065 679 0.00 2019-12-27 17:30:19 2019-12-27 17:30:38 t 1 1 212067 728 0.00 2019-12-27 17:29:47 2019-12-27 17:30:52 t 1 4 212069 679 0.00 2019-12-27 17:30:59 2019-12-27 17:31:22 t 1 1 212070 679 0.00 2019-12-27 17:31:28 2019-12-27 17:31:43 t 1 1 212074 679 0.00 2019-12-27 17:32:49 2019-12-27 17:33:02 t 1 1 212075 637 0.00 2019-12-27 17:18:22 2019-12-27 17:33:11 t 1 1 212078 758 0.00 2019-12-27 17:33:24 2019-12-27 17:33:46 t 1 1 212083 679 0.00 2019-12-27 17:34:48 2019-12-27 17:35:00 t 1 1 212085 637 0.00 2019-12-27 17:33:11 2019-12-27 17:35:21 t 1 1 212087 679 0.00 2019-12-27 17:35:25 2019-12-27 17:35:44 t 1 1 212090 679 0.00 2019-12-27 17:36:10 2019-12-27 17:36:25 t 1 1 212091 679 0.00 2019-12-27 17:36:30 2019-12-27 17:36:44 t 1 1 212092 679 0.00 2019-12-27 17:36:50 2019-12-27 17:37:04 t 1 1 212094 679 0.00 2019-12-27 17:37:10 2019-12-27 17:39:04 t 1 1 212101 679 0.00 2019-12-27 17:40:52 2019-12-27 17:41:06 t 1 1 212103 679 0.00 2019-12-27 17:41:12 2019-12-27 17:41:22 t 1 1 212104 679 0.00 2019-12-27 17:41:28 2019-12-27 17:41:43 t 1 1 212107 679 0.00 2019-12-27 17:42:09 2019-12-27 17:42:24 t 1 1 212108 679 0.00 2019-12-27 17:42:29 2019-12-27 17:42:43 t 1 1 212109 679 0.00 2019-12-27 17:42:49 2019-12-27 17:43:10 t 1 1 212112 483 0.00 2019-12-27 17:43:02 2019-12-27 17:44:04 t 1 1 212114 679 0.00 2019-12-27 17:43:33 2019-12-27 17:44:15 t 1 1 212119 758 0.00 2019-12-27 17:44:52 2019-12-27 17:45:33 t 1 1 212124 637 0.00 2019-12-27 17:45:31 2019-12-27 17:46:37 t 1 1 212125 679 0.00 2019-12-27 17:46:40 2019-12-27 17:47:14 t 1 1 212126 679 0.00 2019-12-27 17:47:20 2019-12-27 17:47:33 t 1 1 212131 562 0.00 2019-12-27 17:48:34 2019-12-27 17:48:57 t 1 1 212134 679 0.00 2019-12-27 17:49:36 2019-12-27 17:50:32 t 1 1 212137 514 0.00 2019-12-27 17:19:08 2019-12-27 17:51:03 t 1 1 212141 679 0.00 2019-12-27 17:51:56 2019-12-27 17:52:15 t 1 1 212142 679 0.00 2019-12-27 17:52:21 2019-12-27 17:52:31 t 1 1 212143 679 0.00 2019-12-27 17:52:37 2019-12-27 17:53:12 t 1 1 212144 637 0.00 2019-12-27 17:47:08 2019-12-27 17:53:29 t 1 1 212149 637 0.00 2019-12-27 17:53:35 2019-12-27 17:54:07 t 1 1 212155 671 0.00 2019-12-27 17:50:32 2019-12-27 17:55:48 t 1 1 212157 679 0.00 2019-12-27 17:54:33 2019-12-27 17:56:24 t 1 1 212158 679 0.00 2019-12-27 17:56:29 2019-12-27 17:56:44 t 1 1 212160 671 0.00 2019-12-27 17:55:46 2019-12-27 17:57:03 t 1 1 212164 578 0.00 2019-12-27 17:50:34 2019-12-27 17:58:02 t 1 1 212168 679 0.00 2019-12-27 17:59:46 2019-12-27 17:59:56 t 1 1 212170 679 0.00 2019-12-27 18:00:02 2019-12-27 18:00:22 t 1 1 212176 728 0.00 2019-12-27 18:05:39 2019-12-27 18:05:47 t 1 4 212178 758 0.00 2019-12-27 18:06:36 2019-12-27 18:08:47 t 1 1 212181 578 0.00 2019-12-27 17:58:02 2019-12-27 18:10:52 t 1 1 212186 611 0.00 2019-12-27 18:06:18 2019-12-27 18:21:28 t 1 1 212188 514 0.00 2019-12-27 18:05:40 2019-12-27 18:21:55 t 1 1 212189 562 0.00 2019-12-27 18:23:23 2019-12-27 18:23:43 t 1 1 212191 637 0.00 2019-12-27 18:20:40 2019-12-27 18:27:20 t 1 1 212192 656 0.00 2019-12-27 18:24:19 2019-12-27 18:29:48 t 1 1 212194 763 0.00 2019-12-27 18:26:46 2019-12-27 18:31:35 t 1 1 212198 562 0.00 2019-12-27 18:34:09 2019-12-27 18:34:27 t 1 1 212200 763 0.00 2019-12-27 18:32:44 2019-12-27 18:36:06 t 1 1 212205 763 0.00 2019-12-27 18:36:11 2019-12-27 18:42:38 t 1 1 212206 660 0.00 2019-12-27 18:41:21 2019-12-27 18:43:43 t 1 1 212209 728 0.00 2019-12-27 18:46:37 2019-12-27 18:47:44 t 1 4 212212 679 0.00 2019-12-27 18:39:39 2019-12-27 18:49:04 t 1 1 212187 578 0.00 2019-12-27 18:10:52 2019-12-27 18:21:30 t 1 1 212193 514 0.00 2019-12-27 18:21:55 2019-12-27 18:31:12 t 1 1 212195 763 0.00 2019-12-27 18:31:35 2019-12-27 18:32:44 t 1 1 212197 656 0.00 2019-12-27 18:29:48 2019-12-27 18:34:09 t 1 1 212201 758 0.00 2019-12-27 18:35:46 2019-12-27 18:36:48 t 1 1 212203 679 0.00 2019-12-27 18:36:07 2019-12-27 18:39:39 t 1 1 212204 694 0.00 2019-12-27 18:21:05 2019-12-27 18:42:14 t 1 1 212208 758 0.00 2019-12-27 18:45:48 2019-12-27 18:46:50 t 1 1 212210 514 0.00 2019-12-27 18:31:12 2019-12-27 18:47:53 t 1 1 212213 611 0.00 2019-12-27 18:40:12 2019-12-27 18:50:20 t 1 1 212214 637 0.00 2019-12-27 18:27:49 2019-12-27 18:51:47 t 1 1 212215 637 0.00 2019-12-27 18:51:56 2019-12-27 18:52:40 t 1 1 212218 656 0.00 2019-12-27 18:48:06 2019-12-27 18:53:53 t 1 1 212220 562 0.00 2019-12-27 18:55:34 2019-12-27 18:55:59 t 1 1 212221 728 0.00 2019-12-27 18:57:07 2019-12-27 18:57:14 t 1 4 212224 656 0.00 2019-12-27 18:53:53 2019-12-27 18:58:25 t 1 1 212226 763 0.00 2019-12-27 18:57:40 2019-12-27 18:59:26 t 1 1 212229 637 0.00 2019-12-27 19:01:27 2019-12-27 19:02:41 t 1 1 212230 763 0.00 2019-12-27 18:59:26 2019-12-27 19:04:26 t 1 1 212231 656 0.00 2019-12-27 19:02:09 2019-12-27 19:04:29 t 1 1 212233 637 0.00 2019-12-27 19:04:29 2019-12-27 19:04:56 t 1 1 212236 728 0.00 2019-12-27 19:07:34 2019-12-27 19:07:42 t 1 4 212237 763 0.00 2019-12-27 19:04:26 2019-12-27 19:08:33 t 1 1 212240 591 0.00 2019-12-27 18:32:34 2019-12-27 19:12:36 t 1 1 212246 728 0.00 2019-12-27 19:18:02 2019-12-27 19:18:10 t 1 4 212249 758 0.00 2019-12-27 19:20:09 2019-12-27 19:21:39 t 1 1 212256 675 0.00 2019-12-27 19:31:02 2019-12-27 19:34:43 t 1 1 212262 763 0.00 2019-12-27 19:36:30 2019-12-27 19:39:09 t 1 1 212273 758 0.00 2019-12-27 19:46:34 2019-12-27 19:46:54 t 1 1 212275 562 0.00 2019-12-27 19:46:43 2019-12-27 19:47:08 t 1 1 212277 763 0.00 2019-12-27 19:43:18 2019-12-27 19:47:30 t 1 1 212279 758 0.00 2019-12-27 19:47:52 2019-12-27 19:48:21 t 1 1 212287 671 0.00 2019-12-27 19:45:02 2019-12-27 19:52:25 t 1 1 212289 692 0.00 2019-12-27 19:30:10 2019-12-27 19:52:48 t 1 1 212292 692 0.00 2019-12-27 19:52:48 2019-12-27 19:53:57 t 1 1 212296 562 0.00 2019-12-27 19:57:30 2019-12-27 19:57:51 t 1 1 212298 692 0.00 2019-12-27 19:57:03 2019-12-27 19:58:04 t 1 1 212304 763 0.00 2019-12-27 20:00:06 2019-12-27 20:02:59 t 1 1 212305 763 0.00 2019-12-27 20:02:59 2019-12-27 20:04:06 t 1 1 212306 728 0.00 2019-12-27 20:03:28 2019-12-27 20:04:34 t 1 4 212307 692 0.00 2019-12-27 20:06:18 2019-12-27 20:07:18 t 1 1 212313 758 0.00 2019-12-27 20:14:18 2019-12-27 20:14:49 t 1 1 212317 670 0.00 2019-12-27 20:08:11 2019-12-27 20:20:05 t 1 1 212318 220 0.00 2019-12-27 20:15:31 2019-12-27 20:20:10 t 1 1 212323 562 0.00 2019-12-27 20:23:44 2019-12-27 20:24:03 t 1 1 212328 675 0.00 2019-12-27 20:20:05 2019-12-27 20:27:18 t 1 1 212330 611 0.00 2019-12-27 19:54:13 2019-12-27 20:28:17 t 1 1 212332 220 0.00 2019-12-27 20:30:28 2019-12-27 20:31:06 t 1 1 212334 562 0.00 2019-12-27 20:31:21 2019-12-27 20:31:55 t 1 1 212337 220 0.00 2019-12-27 20:31:38 2019-12-27 20:32:16 t 1 1 212341 728 0.00 2019-12-27 20:34:54 2019-12-27 20:35:02 t 1 4 212343 514 0.00 2019-12-27 20:07:35 2019-12-27 20:37:19 t 1 1 212351 562 0.00 2019-12-27 20:46:15 2019-12-27 20:46:25 t 1 1 212361 728 0.00 2019-12-27 20:56:04 2019-12-27 20:56:14 t 1 4 212371 707 0.00 2019-12-27 21:01:07 2019-12-27 21:02:38 t 1 1 212374 692 0.00 2019-12-27 21:03:21 2019-12-27 21:03:22 t 1 1 212376 514 0.00 2019-12-27 21:01:53 2019-12-27 21:03:52 t 1 1 212385 516 0.00 2019-12-27 21:09:34 2019-12-27 21:13:59 t 1 1 212390 562 0.00 2019-12-27 21:20:17 2019-12-27 21:21:42 t 1 1 212395 687 0.00 2019-12-27 21:09:08 2019-12-27 21:24:01 t 1 1 212399 679 0.00 2019-12-27 21:26:47 2019-12-27 21:26:51 t 1 1 212404 692 0.00 2019-12-27 21:28:04 2019-12-27 21:28:13 t 1 1 212405 679 0.00 2019-12-27 21:26:57 2019-12-27 21:30:28 t 1 1 212418 687 0.00 2019-12-27 21:25:51 2019-12-27 21:37:54 t 1 1 212419 728 0.00 2019-12-27 21:38:26 2019-12-27 21:38:36 t 1 4 212421 728 0.00 2019-12-27 21:38:42 2019-12-27 21:38:50 t 1 4 212423 220 0.00 2019-12-27 20:41:00 2019-12-27 21:40:35 t 1 1 212426 692 0.00 2019-12-27 21:42:05 2019-12-27 21:42:56 t 1 1 212427 514 0.00 2019-12-27 21:11:33 2019-12-27 21:43:56 t 1 1 212430 611 0.00 2019-12-27 21:36:15 2019-12-27 21:44:58 t 1 1 212431 692 0.00 2019-12-27 21:45:21 2019-12-27 21:45:33 t 1 1 212432 692 0.00 2019-12-27 21:46:05 2019-12-27 21:46:35 t 1 1 212435 687 0.00 2019-12-27 21:47:55 2019-12-27 21:48:08 t 1 1 212440 611 0.00 2019-12-27 21:47:52 2019-12-27 21:51:29 t 1 1 212443 692 0.00 2019-12-27 21:53:18 2019-12-27 21:53:41 t 1 1 212445 713 0.00 2019-12-27 21:22:24 2019-12-27 21:54:35 t 1 1 212448 692 0.00 2019-12-27 21:55:50 2019-12-27 21:56:52 t 1 1 212450 675 0.00 2019-12-27 21:52:14 2019-12-27 21:58:13 t 1 1 212451 692 0.00 2019-12-27 21:58:45 2019-12-27 21:59:05 t 1 1 212453 692 0.00 2019-12-27 21:59:19 2019-12-27 22:00:20 t 1 1 212454 728 0.00 2019-12-27 22:00:35 2019-12-27 22:00:44 t 1 4 212458 692 0.00 2019-12-27 22:05:17 2019-12-27 22:05:19 t 1 1 212465 728 0.00 2019-12-27 22:11:02 2019-12-27 22:11:19 t 1 4 212466 728 0.00 2019-12-27 22:11:25 2019-12-27 22:11:34 t 1 4 212467 713 0.00 2019-12-27 22:07:07 2019-12-27 22:13:14 t 1 1 212469 485 0.00 2019-12-27 22:13:45 2019-12-27 22:14:45 t 1 1 212473 654 0.00 2019-12-27 22:17:41 2019-12-27 22:18:51 t 1 1 212476 654 0.00 2019-12-27 22:20:45 2019-12-27 22:21:57 t 1 1 212478 625 0.00 2019-12-27 21:41:29 2019-12-27 22:22:19 t 1 1 212479 692 0.00 2019-12-27 22:20:26 2019-12-27 22:22:52 t 1 1 212481 654 0.00 2019-12-27 22:23:16 2019-12-27 22:24:37 t 1 1 212482 692 0.00 2019-12-27 22:22:03 2019-12-27 22:25:31 t 1 1 212484 692 0.00 2019-12-27 22:25:45 2019-12-27 22:25:52 t 1 1 212489 679 0.00 2019-12-27 22:27:19 2019-12-27 22:27:48 t 1 1 212490 679 0.00 2019-12-27 22:27:54 2019-12-27 22:28:10 t 1 1 212494 692 0.00 2019-12-27 22:28:20 2019-12-27 22:28:53 t 1 1 212498 692 0.00 2019-12-27 22:30:49 2019-12-27 22:30:52 t 1 1 212500 675 0.00 2019-12-27 22:25:12 2019-12-27 22:31:12 t 1 1 212502 692 0.00 2019-12-27 22:29:20 2019-12-27 22:31:52 t 1 1 212505 728 0.00 2019-12-27 22:32:21 2019-12-27 22:32:30 t 1 4 212507 692 0.00 2019-12-27 22:32:33 2019-12-27 22:32:35 t 1 1 212508 679 0.00 2019-12-27 22:32:37 2019-12-27 22:32:52 t 1 1 212509 692 0.00 2019-12-27 22:32:53 2019-12-27 22:33:02 t 1 1 212512 679 0.00 2019-12-27 22:33:42 2019-12-27 22:33:58 t 1 1 212515 679 0.00 2019-12-27 22:34:05 2019-12-27 22:34:22 t 1 1 212516 683 0.00 2019-12-27 22:31:20 2019-12-27 22:34:39 t 1 1 212517 692 0.00 2019-12-27 22:38:05 2019-12-27 22:38:10 t 1 1 212217 758 0.00 2019-12-27 18:53:14 2019-12-27 18:53:36 t 1 1 212219 742 0.00 2019-12-27 18:07:39 2019-12-27 18:54:56 t 1 1 212228 637 0.00 2019-12-27 18:59:51 2019-12-27 19:01:32 t 1 1 212232 637 0.00 2019-12-27 19:02:41 2019-12-27 19:04:43 t 1 1 212235 660 0.00 2019-12-27 18:58:47 2019-12-27 19:07:15 t 1 1 212238 675 0.00 2019-12-27 18:55:38 2019-12-27 19:12:17 t 1 1 212241 763 0.00 2019-12-27 19:08:33 2019-12-27 19:14:34 t 1 1 212243 689 0.00 2019-12-27 19:16:12 2019-12-27 19:17:16 t 1 1 212245 758 0.00 2019-12-27 19:17:21 2019-12-27 19:17:26 t 1 1 212247 481 0.00 2019-12-27 17:16:22 2019-12-27 19:20:24 t 1 1 212254 483 0.00 2019-12-27 19:26:55 2019-12-27 19:33:04 t 1 1 212259 707 0.00 2019-12-27 19:34:35 2019-12-27 19:36:02 t 1 1 212261 562 0.00 2019-12-27 19:36:54 2019-12-27 19:37:12 t 1 1 212264 760 0.00 2019-12-27 19:24:56 2019-12-27 19:41:21 t 1 1 212265 514 0.00 2019-12-27 19:35:11 2019-12-27 19:41:31 t 1 1 212270 760 0.00 2019-12-27 19:41:21 2019-12-27 19:44:03 t 1 1 212274 758 0.00 2019-12-27 19:47:00 2019-12-27 19:47:07 t 1 1 212281 591 0.00 2019-12-27 19:47:45 2019-12-27 19:48:44 t 1 1 212283 516 0.00 2019-12-27 19:47:42 2019-12-27 19:49:26 t 1 1 212285 758 0.00 2019-12-27 19:49:31 2019-12-27 19:49:45 t 1 1 212288 758 0.00 2019-12-27 19:52:16 2019-12-27 19:52:29 t 1 1 212291 763 0.00 2019-12-27 19:52:05 2019-12-27 19:53:45 t 1 1 212294 656 0.00 2019-12-27 19:48:53 2019-12-27 19:54:33 t 1 1 212295 692 0.00 2019-12-27 19:55:54 2019-12-27 19:56:25 t 1 1 212297 758 0.00 2019-12-27 19:57:30 2019-12-27 19:57:58 t 1 1 212300 763 0.00 2019-12-27 19:58:16 2019-12-27 20:00:06 t 1 1 212308 514 0.00 2019-12-27 19:48:04 2019-12-27 20:07:35 t 1 1 212309 763 0.00 2019-12-27 20:04:57 2019-12-27 20:07:45 t 1 1 212310 758 0.00 2019-12-27 20:07:42 2019-12-27 20:08:26 t 1 1 212312 728 0.00 2019-12-27 20:13:56 2019-12-27 20:14:05 t 1 4 212315 679 0.00 2019-12-27 20:12:53 2019-12-27 20:14:53 t 1 1 212316 656 0.00 2019-12-27 20:05:06 2019-12-27 20:18:44 t 1 1 212326 742 0.00 2019-12-27 20:17:17 2019-12-27 20:26:16 t 1 1 212327 692 0.00 2019-12-27 20:26:29 2019-12-27 20:26:48 t 1 1 212329 220 0.00 2019-12-27 20:21:12 2019-12-27 20:28:15 t 1 1 212333 220 0.00 2019-12-27 20:31:06 2019-12-27 20:31:38 t 1 1 212335 758 0.00 2019-12-27 20:31:23 2019-12-27 20:32:08 t 1 1 212340 694 0.00 2019-12-27 19:57:55 2019-12-27 20:33:03 t 1 1 212342 683 0.00 2019-12-27 20:32:16 2019-12-27 20:35:55 t 1 1 212346 220 0.00 2019-12-27 20:32:47 2019-12-27 20:39:38 t 1 1 212347 220 0.00 2019-12-27 20:39:38 2019-12-27 20:41:01 t 1 1 212354 758 0.00 2019-12-27 20:47:03 2019-12-27 20:48:52 t 1 1 212356 692 0.00 2019-12-27 20:48:22 2019-12-27 20:49:52 t 1 1 212358 758 0.00 2019-12-27 20:53:00 2019-12-27 20:53:20 t 1 1 212362 514 0.00 2019-12-27 20:37:19 2019-12-27 20:56:54 t 1 1 212364 763 0.00 2019-12-27 20:54:41 2019-12-27 20:58:23 t 1 1 212365 758 0.00 2019-12-27 20:58:43 2019-12-27 20:59:14 t 1 1 212366 562 0.00 2019-12-27 21:00:19 2019-12-27 21:00:41 t 1 1 212368 692 0.00 2019-12-27 21:01:10 2019-12-27 21:01:34 t 1 1 212379 692 0.00 2019-12-27 21:07:37 2019-12-27 21:07:39 t 1 1 212381 562 0.00 2019-12-27 21:09:32 2019-12-27 21:09:55 t 1 1 212382 692 0.00 2019-12-27 21:09:59 2019-12-27 21:10:23 t 1 1 212383 692 0.00 2019-12-27 21:10:51 2019-12-27 21:11:18 t 1 1 212384 758 0.00 2019-12-27 21:10:00 2019-12-27 21:11:52 t 1 1 212387 728 0.00 2019-12-27 21:17:00 2019-12-27 21:17:08 t 1 4 212388 692 0.00 2019-12-27 21:12:41 2019-12-27 21:18:52 t 1 1 212389 564 0.00 2019-12-27 20:56:54 2019-12-27 21:21:06 t 1 1 212393 692 0.00 2019-12-27 21:22:48 2019-12-27 21:23:09 t 1 1 212394 692 0.00 2019-12-27 21:23:39 2019-12-27 21:23:59 t 1 1 212396 692 0.00 2019-12-27 21:24:05 2019-12-27 21:24:08 t 1 1 212397 679 0.00 2019-12-27 21:22:20 2019-12-27 21:26:30 t 1 1 212400 728 0.00 2019-12-27 21:27:28 2019-12-27 21:27:37 t 1 4 212402 692 0.00 2019-12-27 21:27:37 2019-12-27 21:27:57 t 1 1 212403 728 0.00 2019-12-27 21:27:59 2019-12-27 21:28:06 t 1 4 212406 692 0.00 2019-12-27 21:30:32 2019-12-27 21:31:01 t 1 1 212407 611 0.00 2019-12-27 21:06:58 2019-12-27 21:31:18 t 1 1 212408 692 0.00 2019-12-27 21:31:30 2019-12-27 21:31:57 t 1 1 212410 752 0.00 2019-12-27 21:16:47 2019-12-27 21:32:20 t 1 1 212412 675 0.00 2019-12-27 21:22:42 2019-12-27 21:33:11 t 1 1 212413 692 0.00 2019-12-27 21:35:38 2019-12-27 21:35:57 t 1 1 212416 692 0.00 2019-12-27 21:36:25 2019-12-27 21:36:38 t 1 1 212424 692 0.00 2019-12-27 21:41:03 2019-12-27 21:41:26 t 1 1 212428 687 0.00 2019-12-27 21:42:55 2019-12-27 21:43:56 t 1 1 212429 692 0.00 2019-12-27 21:43:25 2019-12-27 21:44:56 t 1 1 212433 692 0.00 2019-12-27 21:46:43 2019-12-27 21:47:16 t 1 1 212434 687 0.00 2019-12-27 21:47:42 2019-12-27 21:47:50 t 1 1 212438 728 0.00 2019-12-27 21:49:09 2019-12-27 21:50:16 t 1 4 212441 538 0.00 2019-12-27 21:40:17 2019-12-27 21:52:21 t 1 1 212444 692 0.00 2019-12-27 21:53:55 2019-12-27 21:54:02 t 1 1 212452 562 0.00 2019-12-27 21:59:21 2019-12-27 21:59:40 t 1 1 212456 611 0.00 2019-12-27 21:52:35 2019-12-27 22:02:51 t 1 1 212459 713 0.00 2019-12-27 21:54:35 2019-12-27 22:07:07 t 1 1 212460 692 0.00 2019-12-27 22:06:05 2019-12-27 22:07:52 t 1 1 212461 692 0.00 2019-12-27 22:08:40 2019-12-27 22:08:42 t 1 1 212462 611 0.00 2019-12-27 22:06:13 2019-12-27 22:09:56 t 1 1 212463 562 0.00 2019-12-27 22:10:04 2019-12-27 22:10:22 t 1 1 212468 611 0.00 2019-12-27 22:12:22 2019-12-27 22:14:18 t 1 1 212470 485 0.00 2019-12-27 22:14:45 2019-12-27 22:15:52 t 1 1 212472 654 0.00 2019-12-27 22:13:16 2019-12-27 22:17:18 t 1 1 212474 654 0.00 2019-12-27 22:19:14 2019-12-27 22:20:21 t 1 1 212475 562 0.00 2019-12-27 22:20:03 2019-12-27 22:20:33 t 1 1 212483 679 0.00 2019-12-27 22:19:23 2019-12-27 22:25:48 t 1 1 212485 679 0.00 2019-12-27 22:25:54 2019-12-27 22:26:10 t 1 1 212486 679 0.00 2019-12-27 22:26:16 2019-12-27 22:26:53 t 1 1 212487 679 0.00 2019-12-27 22:26:59 2019-12-27 22:27:13 t 1 1 212488 692 0.00 2019-12-27 22:27:11 2019-12-27 22:27:35 t 1 1 212495 679 0.00 2019-12-27 22:28:36 2019-12-27 22:29:02 t 1 1 212497 679 0.00 2019-12-27 22:29:08 2019-12-27 22:30:19 t 1 1 212504 679 0.00 2019-12-27 22:31:40 2019-12-27 22:32:08 t 1 1 212523 728 0.00 2019-12-27 22:42:59 2019-12-27 22:43:09 t 1 4 212530 551 0.00 2019-12-27 21:48:22 2019-12-27 22:53:56 t 1 1 212534 692 0.00 2019-12-27 22:54:41 2019-12-27 22:55:52 t 1 1 212537 763 0.00 2019-12-27 22:53:40 2019-12-27 22:56:40 t 1 1 212538 562 0.00 2019-12-27 22:57:10 2019-12-27 22:57:33 t 1 1 212542 692 0.00 2019-12-27 23:00:31 2019-12-27 23:02:52 t 1 1 212547 728 0.00 2019-12-27 23:03:58 2019-12-27 23:04:30 t 1 4 212552 562 0.00 2019-12-27 23:10:28 2019-12-27 23:11:53 t 1 1 212271 707 0.00 2019-12-27 19:43:57 2019-12-27 19:45:31 t 1 1 212272 758 0.00 2019-12-27 19:44:02 2019-12-27 19:46:35 t 1 1 212276 611 0.00 2019-12-27 19:22:10 2019-12-27 19:47:24 t 1 1 212278 514 0.00 2019-12-27 19:41:31 2019-12-27 19:48:04 t 1 1 212280 758 0.00 2019-12-27 19:48:37 2019-12-27 19:48:39 t 1 1 212282 758 0.00 2019-12-27 19:48:51 2019-12-27 19:49:02 t 1 1 212284 763 0.00 2019-12-27 19:48:55 2019-12-27 19:49:31 t 1 1 212286 763 0.00 2019-12-27 19:49:31 2019-12-27 19:52:06 t 1 1 212290 611 0.00 2019-12-27 19:51:08 2019-12-27 19:53:42 t 1 1 212293 728 0.00 2019-12-27 19:52:58 2019-12-27 19:54:04 t 1 4 212299 692 0.00 2019-12-27 19:56:31 2019-12-27 19:58:51 t 1 1 212301 692 0.00 2019-12-27 19:58:11 2019-12-27 20:00:57 t 1 1 212302 692 0.00 2019-12-27 20:01:15 2019-12-27 20:02:15 t 1 1 212303 758 0.00 2019-12-27 20:02:42 2019-12-27 20:02:56 t 1 1 212311 562 0.00 2019-12-27 20:08:14 2019-12-27 20:08:38 t 1 1 212314 562 0.00 2019-12-27 20:13:17 2019-12-27 20:14:51 t 1 1 212319 758 0.00 2019-12-27 20:19:46 2019-12-27 20:20:20 t 1 1 212320 220 0.00 2019-12-27 20:20:10 2019-12-27 20:21:13 t 1 1 212321 516 0.00 2019-12-27 20:17:00 2019-12-27 20:23:05 t 1 1 212322 683 0.00 2019-12-27 20:16:14 2019-12-27 20:23:59 t 1 1 212324 728 0.00 2019-12-27 20:24:25 2019-12-27 20:24:34 t 1 4 212325 758 0.00 2019-12-27 20:25:22 2019-12-27 20:25:58 t 1 1 212331 220 0.00 2019-12-27 20:29:43 2019-12-27 20:30:29 t 1 1 212336 683 0.00 2019-12-27 20:23:59 2019-12-27 20:32:16 t 1 1 212338 692 0.00 2019-12-27 20:31:56 2019-12-27 20:32:18 t 1 1 212339 220 0.00 2019-12-27 20:32:15 2019-12-27 20:32:47 t 1 1 212344 692 0.00 2019-12-27 20:37:32 2019-12-27 20:38:06 t 1 1 212345 692 0.00 2019-12-27 20:37:16 2019-12-27 20:38:52 t 1 1 212348 611 0.00 2019-12-27 20:36:38 2019-12-27 20:41:46 t 1 1 212349 562 0.00 2019-12-27 20:42:01 2019-12-27 20:42:30 t 1 1 212350 728 0.00 2019-12-27 20:45:22 2019-12-27 20:45:36 t 1 4 212352 692 0.00 2019-12-27 20:47:47 2019-12-27 20:48:15 t 1 1 212353 692 0.00 2019-12-27 20:47:32 2019-12-27 20:48:52 t 1 1 212355 675 0.00 2019-12-27 20:38:25 2019-12-27 20:49:22 t 1 1 212357 562 0.00 2019-12-27 20:49:36 2019-12-27 20:50:48 t 1 1 212359 763 0.00 2019-12-27 20:49:02 2019-12-27 20:54:42 t 1 1 212360 728 0.00 2019-12-27 20:55:49 2019-12-27 20:55:58 t 1 4 212363 220 0.00 2019-12-27 20:56:26 2019-12-27 20:58:11 t 1 1 212367 514 0.00 2019-12-27 20:56:54 2019-12-27 21:00:48 t 1 1 212369 514 0.00 2019-12-27 21:00:48 2019-12-27 21:01:48 t 1 1 212370 763 0.00 2019-12-27 20:59:34 2019-12-27 21:02:27 t 1 1 212372 692 0.00 2019-12-27 21:01:40 2019-12-27 21:02:41 t 1 1 212373 692 0.00 2019-12-27 21:02:42 2019-12-27 21:03:15 t 1 1 212375 514 0.00 2019-12-27 21:02:15 2019-12-27 21:03:22 t 1 1 212377 611 0.00 2019-12-27 20:47:40 2019-12-27 21:06:13 t 1 1 212378 728 0.00 2019-12-27 21:06:32 2019-12-27 21:06:46 t 1 4 212380 692 0.00 2019-12-27 21:08:07 2019-12-27 21:08:20 t 1 1 212386 538 0.00 2019-12-27 19:49:02 2019-12-27 21:15:31 t 1 1 212391 758 0.00 2019-12-27 21:20:52 2019-12-27 21:21:52 t 1 1 212392 758 0.00 2019-12-27 21:21:39 2019-12-27 21:22:52 t 1 1 212398 679 0.00 2019-12-27 21:26:37 2019-12-27 21:26:41 t 1 1 212401 728 0.00 2019-12-27 21:27:43 2019-12-27 21:27:53 t 1 4 212409 692 0.00 2019-12-27 21:31:17 2019-12-27 21:32:11 t 1 1 212411 692 0.00 2019-12-27 21:32:11 2019-12-27 21:32:39 t 1 1 212414 611 0.00 2019-12-27 21:31:18 2019-12-27 21:36:16 t 1 1 212415 538 0.00 2019-12-27 21:29:14 2019-12-27 21:36:36 t 1 1 212417 692 0.00 2019-12-27 21:36:46 2019-12-27 21:37:15 t 1 1 212420 692 0.00 2019-12-27 21:38:11 2019-12-27 21:38:40 t 1 1 212422 562 0.00 2019-12-27 21:38:00 2019-12-27 21:39:03 t 1 1 212425 687 0.00 2019-12-27 21:37:54 2019-12-27 21:42:55 t 1 1 212436 692 0.00 2019-12-27 21:47:52 2019-12-27 21:48:14 t 1 1 212437 562 0.00 2019-12-27 21:48:27 2019-12-27 21:48:54 t 1 1 212439 692 0.00 2019-12-27 21:48:21 2019-12-27 21:50:52 t 1 1 212442 687 0.00 2019-12-27 21:48:16 2019-12-27 21:53:35 t 1 1 212446 692 0.00 2019-12-27 21:54:51 2019-12-27 21:55:36 t 1 1 212447 692 0.00 2019-12-27 21:56:08 2019-12-27 21:56:08 f 1 1 212449 692 0.00 2019-12-27 21:54:09 2019-12-27 21:56:52 t 1 1 212455 514 0.00 2019-12-27 21:43:56 2019-12-27 22:02:33 t 1 1 212457 692 0.00 2019-12-27 22:04:10 2019-12-27 22:04:28 t 1 1 212464 692 0.00 2019-12-27 22:10:00 2019-12-27 22:10:30 t 1 1 212471 671 0.00 2019-12-27 22:13:54 2019-12-27 22:16:37 t 1 1 212477 728 0.00 2019-12-27 22:21:52 2019-12-27 22:22:01 t 1 4 212480 654 0.00 2019-12-27 22:22:19 2019-12-27 22:23:12 t 1 1 212491 692 0.00 2019-12-27 22:27:50 2019-12-27 22:28:14 t 1 1 212492 687 0.00 2019-12-27 21:53:35 2019-12-27 22:28:23 t 1 1 212493 679 0.00 2019-12-27 22:28:15 2019-12-27 22:28:30 t 1 1 212496 692 0.00 2019-12-27 22:28:59 2019-12-27 22:29:14 t 1 1 212499 485 0.00 2019-12-27 22:20:02 2019-12-27 22:31:01 t 1 1 212501 679 0.00 2019-12-27 22:30:25 2019-12-27 22:31:33 t 1 1 212503 692 0.00 2019-12-27 22:31:17 2019-12-27 22:31:53 t 1 1 212506 679 0.00 2019-12-27 22:32:14 2019-12-27 22:32:31 t 1 1 212510 679 0.00 2019-12-27 22:32:58 2019-12-27 22:33:14 t 1 1 212511 679 0.00 2019-12-27 22:33:20 2019-12-27 22:33:36 t 1 1 212513 562 0.00 2019-12-27 20:33:38 2019-12-27 22:34:04 t 1 1 212514 679 0.00 2019-12-27 22:34:15 2019-12-27 22:34:16 t 1 1 212519 485 0.00 2019-12-27 22:31:01 2019-12-27 22:39:18 t 1 1 212521 692 0.00 2019-12-27 22:39:32 2019-12-27 22:39:46 t 1 1 212522 649 0.00 2019-12-27 22:32:47 2019-12-27 22:43:08 t 1 1 212524 591 0.00 2019-12-27 21:03:07 2019-12-27 22:44:46 t 1 1 212525 503 0.00 2019-12-27 22:43:25 2019-12-27 22:46:25 t 1 1 212526 562 0.00 2019-12-27 22:46:38 2019-12-27 22:46:46 t 1 1 212527 591 0.00 2019-12-27 22:44:46 2019-12-27 22:48:15 t 1 1 212532 671 0.00 2019-12-27 22:42:38 2019-12-27 22:55:17 t 1 1 212536 679 0.00 2019-12-27 22:34:22 2019-12-27 22:56:00 t 1 1 212539 692 0.00 2019-12-27 22:58:38 2019-12-27 22:59:38 t 1 1 212543 625 0.00 2019-12-27 22:54:37 2019-12-27 23:03:32 t 1 1 212544 578 0.00 2019-12-27 18:21:30 2019-12-27 23:03:53 t 1 1 212546 562 0.00 2019-12-27 23:01:31 2019-12-27 23:04:06 t 1 1 212549 675 0.00 2019-12-27 23:03:43 2019-12-27 23:06:43 t 1 1 212550 562 0.00 2019-12-27 23:07:34 2019-12-27 23:10:22 t 1 1 212551 687 0.00 2019-12-27 22:28:23 2019-12-27 23:10:55 t 1 1 212553 562 0.00 2019-12-27 23:11:52 2019-12-27 23:12:52 t 1 1 212556 562 0.00 2019-12-27 23:14:28 2019-12-27 23:17:25 t 1 1 212558 685 0.00 2019-12-27 23:12:55 2019-12-27 23:18:52 t 1 1 212563 625 0.00 2019-12-27 23:20:13 2019-12-27 23:20:48 t 1 1 212565 562 0.00 2019-12-27 23:20:13 2019-12-27 23:24:00 t 1 1 212567 685 0.00 2019-12-27 23:19:39 2019-12-27 23:25:47 t 1 1 212518 692 0.00 2019-12-27 22:38:16 2019-12-27 22:39:16 t 1 1 212520 562 0.00 2019-12-27 22:39:39 2019-12-27 22:39:45 t 1 1 212528 692 0.00 2019-12-27 22:48:14 2019-12-27 22:49:14 t 1 1 212529 728 0.00 2019-12-27 22:53:29 2019-12-27 22:53:40 t 1 4 212531 625 0.00 2019-12-27 22:38:07 2019-12-27 22:54:37 t 1 1 212533 692 0.00 2019-12-27 22:55:17 2019-12-27 22:55:17 f 1 1 212535 692 0.00 2019-12-27 22:54:57 2019-12-27 22:55:59 t 1 1 212540 692 0.00 2019-12-27 23:00:19 2019-12-27 23:00:21 t 1 1 212541 763 0.00 2019-12-27 22:56:40 2019-12-27 23:02:18 t 1 1 212545 730 0.00 2019-12-27 23:01:12 2019-12-27 23:03:58 t 1 4 212548 730 0.00 2019-12-27 23:04:30 2019-12-27 23:05:02 t 1 4 212557 679 0.00 2019-12-27 22:56:00 2019-12-27 23:17:30 t 1 1 212559 685 0.00 2019-12-27 23:18:58 2019-12-27 23:19:11 t 1 1 212560 687 0.00 2019-12-27 23:10:55 2019-12-27 23:19:36 t 1 1 212561 692 0.00 2019-12-27 23:03:32 2019-12-27 23:20:13 t 1 1 212564 485 0.00 2019-12-27 23:13:42 2019-12-27 23:22:22 t 1 1 212570 562 0.00 2019-12-27 23:25:59 2019-12-27 23:26:48 t 1 1 212571 562 0.00 2019-12-27 23:26:55 2019-12-27 23:27:57 t 1 1 212578 685 0.00 2019-12-27 23:30:11 2019-12-27 23:30:13 t 1 1 212580 685 0.00 2019-12-27 23:30:20 2019-12-27 23:31:21 t 1 1 212581 685 0.00 2019-12-27 23:31:30 2019-12-27 23:31:36 t 1 1 212584 685 0.00 2019-12-27 23:31:15 2019-12-27 23:32:52 t 1 1 212586 685 0.00 2019-12-27 23:33:03 2019-12-27 23:33:17 t 1 1 212588 728 0.00 2019-12-27 23:35:24 2019-12-27 23:35:33 t 1 4 212590 562 0.00 2019-12-27 23:38:52 2019-12-27 23:39:14 t 1 1 212591 713 0.00 2019-12-27 22:52:26 2019-12-27 23:40:03 t 1 1 212592 758 0.00 2019-12-27 23:40:12 2019-12-27 23:40:43 t 1 1 212593 728 0.00 2019-12-27 23:42:14 2019-12-27 23:42:24 t 1 4 212595 692 0.00 2019-12-27 23:26:38 2019-12-27 23:46:55 t 1 1 212598 562 0.00 2019-12-27 23:49:30 2019-12-27 23:50:31 t 1 1 212599 758 0.00 2019-12-27 23:51:25 2019-12-27 23:51:44 t 1 1 212602 679 0.00 2019-12-27 23:34:33 2019-12-27 23:52:58 t 1 1 212604 679 0.00 2019-12-27 23:55:34 2019-12-27 23:55:48 t 1 1 212608 679 0.00 2019-12-27 23:56:38 2019-12-27 23:56:58 t 1 1 212610 514 0.00 2019-12-27 22:02:31 2019-12-28 00:00:56 t 1 1 212615 728 0.00 2019-12-28 00:13:40 2019-12-28 00:13:51 t 1 4 212616 758 0.00 2019-12-28 00:12:58 2019-12-28 00:14:52 t 1 1 212619 687 0.00 2019-12-28 00:01:47 2019-12-28 00:17:39 t 1 1 212623 687 0.00 2019-12-28 00:20:48 2019-12-28 00:23:41 t 1 1 212624 728 0.00 2019-12-28 00:24:12 2019-12-28 00:24:21 t 1 4 212627 758 0.00 2019-12-28 00:33:16 2019-12-28 00:34:17 t 1 1 212629 758 0.00 2019-12-28 00:38:20 2019-12-28 00:38:23 t 1 1 212631 562 0.00 2019-12-28 00:38:46 2019-12-28 00:39:05 t 1 1 212632 551 0.00 2019-12-27 23:52:04 2019-12-28 00:39:30 t 1 1 212635 758 0.00 2019-12-28 00:43:27 2019-12-28 00:43:34 t 1 1 212639 728 0.00 2019-12-28 00:45:10 2019-12-28 00:48:57 t 1 4 212643 679 0.00 2019-12-28 00:38:28 2019-12-28 00:58:52 t 1 1 212646 514 0.00 2019-12-28 00:17:49 2019-12-28 01:00:54 t 1 1 212647 562 0.00 2019-12-28 01:00:24 2019-12-28 01:01:24 t 1 1 212655 514 0.00 2019-12-28 01:00:54 2019-12-28 01:18:00 t 1 1 212656 728 0.00 2019-12-28 01:19:15 2019-12-28 01:21:38 t 1 4 212658 687 0.00 2019-12-28 00:46:39 2019-12-28 01:23:06 t 1 1 212663 728 0.00 2019-12-28 01:31:00 2019-12-28 01:32:06 t 1 4 212664 562 0.00 2019-12-28 01:32:15 2019-12-28 01:32:33 t 1 1 212665 687 0.00 2019-12-28 01:23:06 2019-12-28 01:36:52 t 1 1 212674 562 0.00 2019-12-28 01:54:19 2019-12-28 01:54:23 t 1 1 212679 730 0.00 2019-12-28 02:02:47 2019-12-28 02:03:00 t 1 1 212682 687 0.00 2019-12-28 01:46:59 2019-12-28 02:10:50 t 1 1 212686 728 0.00 2019-12-28 02:23:20 2019-12-28 02:23:29 t 1 4 212687 679 0.00 2019-12-28 02:24:45 2019-12-28 02:26:05 t 1 1 212696 687 0.00 2019-12-28 02:11:25 2019-12-28 02:48:06 t 1 1 212700 728 0.00 2019-12-28 03:07:23 2019-12-28 03:07:32 t 1 4 212702 758 0.00 2019-12-28 02:55:07 2019-12-28 03:15:38 t 1 1 212709 728 0.00 2019-12-28 03:29:15 2019-12-28 03:29:23 t 1 4 212714 562 0.00 2019-12-28 03:42:25 2019-12-28 03:42:32 t 1 1 212718 758 0.00 2019-12-28 03:49:05 2019-12-28 03:53:33 t 1 1 212721 728 0.00 2019-12-28 04:00:51 2019-12-28 04:00:59 t 1 4 212722 514 0.00 2019-12-28 01:43:15 2019-12-28 04:02:00 t 1 1 212723 758 0.00 2019-12-28 03:57:23 2019-12-28 04:02:34 t 1 1 212728 562 0.00 2019-12-28 04:20:24 2019-12-28 04:20:39 t 1 1 212729 728 0.00 2019-12-28 04:21:45 2019-12-28 04:21:55 t 1 4 212731 562 0.00 2019-12-28 04:31:04 2019-12-28 04:31:25 t 1 1 212733 758 0.00 2019-12-28 04:30:18 2019-12-28 04:32:47 t 1 1 212737 562 0.00 2019-12-28 04:41:45 2019-12-28 04:42:04 t 1 1 212738 728 0.00 2019-12-28 04:42:42 2019-12-28 04:42:50 t 1 4 212741 564 0.00 2019-12-27 21:21:06 2019-12-28 04:55:54 t 1 1 212743 562 0.00 2019-12-28 05:03:16 2019-12-28 05:03:36 t 1 1 212750 758 0.00 2019-12-28 05:16:45 2019-12-28 05:19:26 t 1 1 212753 728 0.00 2019-12-28 05:24:55 2019-12-28 05:25:03 t 1 4 212758 758 0.00 2019-12-28 05:29:54 2019-12-28 05:34:11 t 1 1 212763 728 0.00 2019-12-28 05:46:01 2019-12-28 05:46:14 t 1 4 212766 758 0.00 2019-12-28 05:46:38 2019-12-28 05:54:00 t 1 1 212773 562 0.00 2019-12-28 06:04:42 2019-12-28 06:04:58 t 1 1 212780 758 0.00 2019-12-28 06:21:30 2019-12-28 06:21:48 t 1 1 212781 562 0.00 2019-12-28 06:23:03 2019-12-28 06:23:21 t 1 1 212782 728 0.00 2019-12-28 06:27:58 2019-12-28 06:28:06 t 1 4 212786 611 0.00 2019-12-28 06:31:54 2019-12-28 06:34:13 t 1 1 212789 675 0.00 2019-12-28 06:33:10 2019-12-28 06:36:44 t 1 1 212790 758 0.00 2019-12-28 06:38:13 2019-12-28 06:38:15 t 1 1 212791 728 0.00 2019-12-28 06:38:26 2019-12-28 06:38:34 t 1 4 212792 758 0.00 2019-12-28 06:41:22 2019-12-28 06:41:53 t 1 1 212795 675 0.00 2019-12-28 06:42:12 2019-12-28 06:48:51 t 1 1 212797 758 0.00 2019-12-28 06:50:10 2019-12-28 06:50:23 t 1 1 212800 758 0.00 2019-12-28 06:54:53 2019-12-28 06:55:01 t 1 1 212808 675 0.00 2019-12-28 07:01:57 2019-12-28 07:06:27 t 1 1 212815 728 0.00 2019-12-28 07:20:19 2019-12-28 07:20:28 t 1 4 212817 675 0.00 2019-12-28 07:22:51 2019-12-28 07:26:49 t 1 1 212818 562 0.00 2019-12-28 07:27:30 2019-12-28 07:27:41 t 1 1 212820 758 0.00 2019-12-28 07:14:11 2019-12-28 07:30:28 t 1 1 212821 728 0.00 2019-12-28 07:30:48 2019-12-28 07:30:56 t 1 4 212822 562 0.00 2019-12-28 07:38:08 2019-12-28 07:38:27 t 1 1 212824 728 0.00 2019-12-28 07:39:28 2019-12-28 07:39:49 t 1 4 212825 611 0.00 2019-12-28 07:30:57 2019-12-28 07:40:30 t 1 1 212828 611 0.00 2019-12-28 07:41:42 2019-12-28 07:48:47 t 1 1 212830 728 0.00 2019-12-28 07:49:56 2019-12-28 07:50:05 t 1 4 212831 734 0.00 2019-12-28 07:23:24 2019-12-28 07:56:44 t 1 1 212836 758 0.00 2019-12-28 07:30:28 2019-12-28 08:01:16 t 1 1 212554 730 0.00 2019-12-27 23:05:08 2019-12-27 23:13:46 t 1 1 212555 728 0.00 2019-12-27 23:14:25 2019-12-27 23:15:32 t 1 4 212562 562 0.00 2019-12-27 23:17:39 2019-12-27 23:20:21 t 1 1 212566 728 0.00 2019-12-27 23:24:55 2019-12-27 23:25:05 t 1 4 212568 692 0.00 2019-12-27 23:23:54 2019-12-27 23:25:52 t 1 1 212569 685 0.00 2019-12-27 23:25:55 2019-12-27 23:26:01 t 1 1 212573 685 0.00 2019-12-27 23:28:38 2019-12-27 23:28:45 t 1 1 212576 685 0.00 2019-12-27 23:29:27 2019-12-27 23:29:33 t 1 1 212582 685 0.00 2019-12-27 23:31:42 2019-12-27 23:32:03 t 1 1 212583 685 0.00 2019-12-27 23:32:09 2019-12-27 23:32:33 t 1 1 212585 562 0.00 2019-12-27 23:28:16 2019-12-27 23:33:13 t 1 1 212596 692 0.00 2019-12-27 23:47:41 2019-12-27 23:47:41 f 1 1 212601 728 0.00 2019-12-27 23:52:43 2019-12-27 23:52:52 t 1 4 212605 679 0.00 2019-12-27 23:55:55 2019-12-27 23:56:10 t 1 1 212606 679 0.00 2019-12-27 23:56:16 2019-12-27 23:56:32 t 1 1 212609 758 0.00 2019-12-27 23:56:55 2019-12-27 23:57:23 t 1 1 212611 687 0.00 2019-12-28 00:00:50 2019-12-28 00:01:12 t 1 1 212614 679 0.00 2019-12-27 23:57:04 2019-12-28 00:10:58 t 1 1 212621 687 0.00 2019-12-28 00:18:00 2019-12-28 00:20:29 t 1 1 212626 687 0.00 2019-12-28 00:23:56 2019-12-28 00:24:29 t 1 1 212630 679 0.00 2019-12-28 00:24:25 2019-12-28 00:38:28 t 1 1 212637 687 0.00 2019-12-28 00:30:44 2019-12-28 00:45:57 t 1 1 212638 758 0.00 2019-12-28 00:48:42 2019-12-28 00:48:49 t 1 1 212641 562 0.00 2019-12-28 00:49:25 2019-12-28 00:49:47 t 1 1 212644 694 0.00 2019-12-27 20:33:03 2019-12-28 00:59:11 t 1 1 212648 758 0.00 2019-12-28 00:57:26 2019-12-28 01:01:27 t 1 1 212649 758 0.00 2019-12-28 01:01:30 2019-12-28 01:04:38 t 1 1 212652 621 0.00 2019-12-28 01:01:00 2019-12-28 01:14:04 t 1 1 212653 679 0.00 2019-12-28 00:58:52 2019-12-28 01:15:02 t 1 1 212654 730 0.00 2019-12-28 00:45:03 2019-12-28 01:16:23 t 1 1 212659 679 0.00 2019-12-28 01:15:02 2019-12-28 01:23:10 t 1 1 212662 514 0.00 2019-12-28 01:18:00 2019-12-28 01:29:16 t 1 1 212669 514 0.00 2019-12-28 01:29:16 2019-12-28 01:43:15 t 1 1 212670 687 0.00 2019-12-28 01:37:09 2019-12-28 01:46:03 t 1 1 212671 728 0.00 2019-12-28 01:51:57 2019-12-28 01:52:06 t 1 4 212675 562 0.00 2019-12-28 01:54:30 2019-12-28 01:54:38 t 1 1 212677 730 0.00 2019-12-28 01:16:23 2019-12-28 02:02:44 t 1 1 212680 562 0.00 2019-12-28 02:04:37 2019-12-28 02:04:45 t 1 1 212681 730 0.00 2019-12-28 02:02:59 2019-12-28 02:08:27 t 1 1 212683 728 0.00 2019-12-28 02:12:52 2019-12-28 02:13:01 t 1 4 212684 562 0.00 2019-12-28 02:15:18 2019-12-28 02:15:29 t 1 1 212685 758 0.00 2019-12-28 02:08:08 2019-12-28 02:20:01 t 1 1 212693 728 0.00 2019-12-28 02:44:16 2019-12-28 02:44:24 t 1 4 212694 728 0.00 2019-12-28 02:46:29 2019-12-28 02:46:42 t 1 4 212697 758 0.00 2019-12-28 02:28:23 2019-12-28 02:55:07 t 1 1 212705 562 0.00 2019-12-28 03:19:28 2019-12-28 03:19:55 t 1 1 212710 758 0.00 2019-12-28 03:15:38 2019-12-28 03:31:49 t 1 1 212712 728 0.00 2019-12-28 03:39:42 2019-12-28 03:39:51 t 1 4 212715 758 0.00 2019-12-28 03:31:49 2019-12-28 03:49:05 t 1 1 212719 758 0.00 2019-12-28 03:52:38 2019-12-28 03:57:18 t 1 1 212724 514 0.00 2019-12-28 04:02:23 2019-12-28 04:05:56 t 1 1 212732 728 0.00 2019-12-28 04:32:14 2019-12-28 04:32:23 t 1 4 212734 551 0.00 2019-12-28 01:50:00 2019-12-28 04:34:46 t 1 1 212740 728 0.00 2019-12-28 04:53:09 2019-12-28 04:53:17 t 1 4 212742 758 0.00 2019-12-28 04:41:54 2019-12-28 04:55:54 t 1 1 212744 728 0.00 2019-12-28 05:03:36 2019-12-28 05:03:45 t 1 4 212747 728 0.00 2019-12-28 05:14:04 2019-12-28 05:14:13 t 1 4 212749 758 0.00 2019-12-28 05:10:20 2019-12-28 05:16:29 t 1 1 212751 758 0.00 2019-12-28 05:19:25 2019-12-28 05:22:48 t 1 1 212752 728 0.00 2019-12-28 05:24:33 2019-12-28 05:24:49 t 1 4 212754 562 0.00 2019-12-28 05:24:46 2019-12-28 05:25:07 t 1 1 212759 728 0.00 2019-12-28 05:35:25 2019-12-28 05:35:42 t 1 4 212761 758 0.00 2019-12-28 05:34:17 2019-12-28 05:43:19 t 1 1 212764 562 0.00 2019-12-28 05:46:06 2019-12-28 05:46:15 t 1 1 212765 758 0.00 2019-12-28 05:43:00 2019-12-28 05:46:39 t 1 1 212767 562 0.00 2019-12-28 05:53:55 2019-12-28 05:54:12 t 1 1 212770 728 0.00 2019-12-28 05:56:36 2019-12-28 06:00:38 t 1 4 212771 758 0.00 2019-12-28 06:00:09 2019-12-28 06:02:04 t 1 1 212772 758 0.00 2019-12-28 06:01:09 2019-12-28 06:02:48 t 1 1 212776 562 0.00 2019-12-28 06:15:31 2019-12-28 06:15:44 t 1 1 212778 728 0.00 2019-12-28 06:17:30 2019-12-28 06:17:38 t 1 4 212784 758 0.00 2019-12-28 06:31:17 2019-12-28 06:32:55 t 1 1 212788 758 0.00 2019-12-28 06:36:12 2019-12-28 06:36:24 t 1 1 212794 758 0.00 2019-12-28 06:46:54 2019-12-28 06:47:38 t 1 1 212799 758 0.00 2019-12-28 06:54:32 2019-12-28 06:54:46 t 1 1 212801 758 0.00 2019-12-28 06:55:09 2019-12-28 06:55:34 t 1 1 212803 728 0.00 2019-12-28 06:59:22 2019-12-28 06:59:30 t 1 4 212804 758 0.00 2019-12-28 07:00:32 2019-12-28 07:01:01 t 1 1 212805 611 0.00 2019-12-28 06:53:01 2019-12-28 07:02:11 t 1 1 212806 538 0.00 2019-12-28 06:56:45 2019-12-28 07:06:04 t 1 1 212812 611 0.00 2019-12-28 07:07:50 2019-12-28 07:11:00 t 1 1 212813 758 0.00 2019-12-28 07:11:13 2019-12-28 07:11:39 t 1 1 212816 637 0.00 2019-12-28 01:52:31 2019-12-28 07:20:35 t 1 1 212826 611 0.00 2019-12-28 07:40:30 2019-12-28 07:41:42 t 1 1 212827 675 0.00 2019-12-28 07:40:46 2019-12-28 07:43:56 t 1 1 212833 562 0.00 2019-12-28 07:58:42 2019-12-28 07:59:58 t 1 1 212838 679 0.00 2019-12-28 08:01:24 2019-12-28 08:02:55 t 1 1 212840 734 0.00 2019-12-28 07:56:48 2019-12-28 08:07:20 t 1 1 212842 694 0.00 2019-12-28 08:02:15 2019-12-28 08:08:46 t 1 1 212844 562 0.00 2019-12-28 08:09:27 2019-12-28 08:09:43 t 1 1 212845 621 0.00 2019-12-28 08:08:22 2019-12-28 08:10:29 t 1 1 212848 758 0.00 2019-12-28 08:01:16 2019-12-28 08:13:42 t 1 1 212851 538 0.00 2019-12-28 07:44:05 2019-12-28 08:18:57 t 1 1 212853 724 0.00 2019-12-28 08:19:36 2019-12-28 08:20:53 t 1 1 212855 728 0.00 2019-12-28 08:21:36 2019-12-28 08:21:44 t 1 4 212856 637 0.00 2019-12-28 08:08:22 2019-12-28 08:25:12 t 1 1 212857 758 0.00 2019-12-28 08:16:13 2019-12-28 08:26:06 t 1 1 212858 675 0.00 2019-12-28 08:20:53 2019-12-28 08:27:28 t 1 1 212859 562 0.00 2019-12-28 08:19:54 2019-12-28 08:28:26 t 1 1 212860 625 0.00 2019-12-28 08:18:28 2019-12-28 08:30:07 t 1 1 212862 728 0.00 2019-12-28 08:32:04 2019-12-28 08:33:11 t 1 4 212863 562 0.00 2019-12-28 08:34:05 2019-12-28 08:34:25 t 1 1 212864 562 0.00 2019-12-28 08:38:19 2019-12-28 08:40:31 t 1 1 212865 728 0.00 2019-12-28 08:42:34 2019-12-28 08:43:40 t 1 4 212866 538 0.00 2019-12-28 08:41:08 2019-12-28 08:51:18 t 1 1 212867 637 0.00 2019-12-28 08:31:43 2019-12-28 08:53:03 t 1 1 212868 631 0.00 2019-12-28 08:51:16 2019-12-28 08:53:07 t 1 1 212572 685 0.00 2019-12-27 23:26:25 2019-12-27 23:28:01 t 1 1 212574 685 0.00 2019-12-27 23:28:51 2019-12-27 23:28:57 t 1 1 212575 685 0.00 2019-12-27 23:29:15 2019-12-27 23:29:21 t 1 1 212577 685 0.00 2019-12-27 23:29:39 2019-12-27 23:29:49 t 1 1 212579 685 0.00 2019-12-27 23:30:41 2019-12-27 23:30:49 t 1 1 212587 679 0.00 2019-12-27 23:17:30 2019-12-27 23:34:33 t 1 1 212589 758 0.00 2019-12-27 23:34:43 2019-12-27 23:35:41 t 1 1 212594 758 0.00 2019-12-27 23:45:37 2019-12-27 23:46:15 t 1 1 212597 692 0.00 2019-12-27 23:47:29 2019-12-27 23:48:52 t 1 1 212600 551 0.00 2019-12-27 22:53:56 2019-12-27 23:52:04 t 1 1 212603 679 0.00 2019-12-27 23:52:58 2019-12-27 23:55:28 t 1 1 212607 562 0.00 2019-12-27 23:54:18 2019-12-27 23:56:52 t 1 1 212612 728 0.00 2019-12-28 00:03:11 2019-12-28 00:03:20 t 1 4 212613 562 0.00 2019-12-28 00:04:31 2019-12-28 00:05:40 t 1 1 212617 611 0.00 2019-12-27 22:20:17 2019-12-28 00:15:09 t 1 1 212618 671 0.00 2019-12-28 00:01:06 2019-12-28 00:16:55 t 1 1 212620 514 0.00 2019-12-28 00:00:56 2019-12-28 00:17:49 t 1 1 212622 758 0.00 2019-12-28 00:23:06 2019-12-28 00:23:16 t 1 1 212625 679 0.00 2019-12-28 00:10:58 2019-12-28 00:24:25 t 1 1 212628 728 0.00 2019-12-28 00:34:41 2019-12-28 00:34:50 t 1 4 212633 551 0.00 2019-12-28 00:38:40 2019-12-28 00:39:54 t 1 1 212634 544 0.00 2019-12-28 00:40:46 2019-12-28 00:41:05 t 1 1 212636 758 0.00 2019-12-28 00:44:24 2019-12-28 00:44:36 t 1 1 212640 637 0.00 2019-12-27 19:48:38 2019-12-28 00:49:29 t 1 1 212642 758 0.00 2019-12-28 00:56:11 2019-12-28 00:57:21 t 1 1 212645 728 0.00 2019-12-28 00:58:19 2019-12-28 00:59:25 t 1 4 212650 728 0.00 2019-12-28 01:08:47 2019-12-28 01:09:53 t 1 4 212651 562 0.00 2019-12-28 01:10:41 2019-12-28 01:11:08 t 1 1 212657 562 0.00 2019-12-28 01:21:26 2019-12-28 01:22:02 t 1 1 212660 679 0.00 2019-12-28 01:24:14 2019-12-28 01:24:28 t 1 1 212661 538 0.00 2019-12-27 23:29:13 2019-12-28 01:29:02 t 1 1 212666 679 0.00 2019-12-28 01:24:33 2019-12-28 01:41:15 t 1 1 212667 728 0.00 2019-12-28 01:41:29 2019-12-28 01:41:47 t 1 4 212668 562 0.00 2019-12-28 01:43:05 2019-12-28 01:43:15 t 1 1 212672 637 0.00 2019-12-28 00:50:04 2019-12-28 01:52:31 t 1 1 212673 562 0.00 2019-12-28 01:51:40 2019-12-28 01:54:10 t 1 1 212676 728 0.00 2019-12-28 02:02:25 2019-12-28 02:02:34 t 1 4 212678 758 0.00 2019-12-28 01:54:28 2019-12-28 02:02:59 t 1 1 212688 562 0.00 2019-12-28 02:26:00 2019-12-28 02:26:14 t 1 1 212689 758 0.00 2019-12-28 02:20:01 2019-12-28 02:27:06 t 1 1 212690 758 0.00 2019-12-28 02:27:06 2019-12-28 02:28:23 t 1 1 212691 728 0.00 2019-12-28 02:33:48 2019-12-28 02:33:57 t 1 4 212692 562 0.00 2019-12-28 02:36:37 2019-12-28 02:36:45 t 1 1 212695 562 0.00 2019-12-28 02:47:08 2019-12-28 02:47:26 t 1 1 212698 728 0.00 2019-12-28 02:56:56 2019-12-28 02:57:04 t 1 4 212699 562 0.00 2019-12-28 02:58:01 2019-12-28 02:58:16 t 1 1 212701 562 0.00 2019-12-28 03:08:37 2019-12-28 03:09:11 t 1 1 212703 728 0.00 2019-12-28 03:17:51 2019-12-28 03:17:59 t 1 4 212704 728 0.00 2019-12-28 03:18:47 2019-12-28 03:19:00 t 1 4 212706 687 0.00 2019-12-28 02:48:51 2019-12-28 03:25:54 t 1 1 212707 538 0.00 2019-12-28 03:08:45 2019-12-28 03:27:48 t 1 1 212708 562 0.00 2019-12-28 03:28:23 2019-12-28 03:28:41 t 1 1 212711 562 0.00 2019-12-28 03:39:07 2019-12-28 03:39:15 t 1 1 212713 728 0.00 2019-12-28 03:39:57 2019-12-28 03:40:05 t 1 4 212716 562 0.00 2019-12-28 03:49:48 2019-12-28 03:49:58 t 1 1 212717 728 0.00 2019-12-28 03:50:24 2019-12-28 03:50:32 t 1 4 212720 562 0.00 2019-12-28 03:58:36 2019-12-28 03:59:09 t 1 1 212725 562 0.00 2019-12-28 04:09:36 2019-12-28 04:09:57 t 1 1 212726 728 0.00 2019-12-28 04:11:18 2019-12-28 04:11:27 t 1 4 212727 758 0.00 2019-12-28 04:02:38 2019-12-28 04:12:35 t 1 1 212730 758 0.00 2019-12-28 04:12:50 2019-12-28 04:30:18 t 1 1 212735 758 0.00 2019-12-28 04:31:50 2019-12-28 04:35:21 t 1 1 212736 758 0.00 2019-12-28 04:40:19 2019-12-28 04:40:30 t 1 1 212739 562 0.00 2019-12-28 04:52:23 2019-12-28 04:52:49 t 1 1 212745 516 0.00 2019-12-28 05:03:35 2019-12-28 05:08:52 t 1 1 212746 758 0.00 2019-12-28 05:00:49 2019-12-28 05:10:20 t 1 1 212748 562 0.00 2019-12-28 05:14:06 2019-12-28 05:14:21 t 1 1 212755 758 0.00 2019-12-28 05:22:47 2019-12-28 05:27:27 t 1 1 212756 758 0.00 2019-12-28 05:26:32 2019-12-28 05:29:49 t 1 1 212757 758 0.00 2019-12-28 05:29:03 2019-12-28 05:30:49 t 1 1 212760 562 0.00 2019-12-28 05:35:22 2019-12-28 05:35:47 t 1 1 212762 562 0.00 2019-12-28 05:43:12 2019-12-28 05:43:23 t 1 1 212768 758 0.00 2019-12-28 05:53:59 2019-12-28 05:57:10 t 1 1 212769 758 0.00 2019-12-28 05:57:10 2019-12-28 06:00:09 t 1 1 212774 728 0.00 2019-12-28 06:06:57 2019-12-28 06:07:09 t 1 4 212775 611 0.00 2019-12-28 06:05:42 2019-12-28 06:08:38 t 1 1 212777 758 0.00 2019-12-28 06:02:47 2019-12-28 06:15:51 t 1 1 212779 758 0.00 2019-12-28 06:17:28 2019-12-28 06:17:56 t 1 1 212783 707 0.00 2019-12-28 06:27:01 2019-12-28 06:32:15 t 1 1 212785 562 0.00 2019-12-28 06:33:38 2019-12-28 06:34:06 t 1 1 212787 758 0.00 2019-12-28 06:34:13 2019-12-28 06:34:16 t 1 1 212793 562 0.00 2019-12-28 06:44:37 2019-12-28 06:44:57 t 1 1 212796 728 0.00 2019-12-28 06:48:54 2019-12-28 06:49:03 t 1 4 212798 611 0.00 2019-12-28 06:42:23 2019-12-28 06:50:56 t 1 1 212802 562 0.00 2019-12-28 06:55:28 2019-12-28 06:55:41 t 1 1 212807 562 0.00 2019-12-28 07:06:04 2019-12-28 07:06:20 t 1 1 212809 758 0.00 2019-12-28 07:06:08 2019-12-28 07:06:50 t 1 1 212810 611 0.00 2019-12-28 07:06:05 2019-12-28 07:07:50 t 1 1 212811 728 0.00 2019-12-28 07:09:50 2019-12-28 07:09:59 t 1 4 212814 562 0.00 2019-12-28 07:16:41 2019-12-28 07:17:01 t 1 1 212819 611 0.00 2019-12-28 07:13:16 2019-12-28 07:28:31 t 1 1 212823 689 0.00 2019-12-28 07:35:28 2019-12-28 07:39:45 t 1 1 212829 562 0.00 2019-12-28 07:49:04 2019-12-28 07:49:16 t 1 1 212832 679 0.00 2019-12-28 07:57:03 2019-12-28 07:58:28 t 1 1 212834 611 0.00 2019-12-28 07:58:40 2019-12-28 08:00:16 t 1 1 212835 728 0.00 2019-12-28 08:00:24 2019-12-28 08:00:33 t 1 4 212837 694 0.00 2019-12-28 00:59:11 2019-12-28 08:02:16 t 1 1 212839 692 0.00 2019-12-27 23:47:06 2019-12-28 08:04:32 t 1 1 212841 637 0.00 2019-12-28 07:26:10 2019-12-28 08:08:39 t 1 1 212843 625 0.00 2019-12-28 08:04:57 2019-12-28 08:09:35 t 1 1 212846 728 0.00 2019-12-28 08:10:53 2019-12-28 08:11:02 t 1 4 212847 562 0.00 2019-12-28 08:10:10 2019-12-28 08:13:03 t 1 1 212849 758 0.00 2019-12-28 08:13:42 2019-12-28 08:15:00 t 1 1 212850 562 0.00 2019-12-28 08:16:59 2019-12-28 08:17:27 t 1 1 212852 538 0.00 2019-12-28 08:18:56 2019-12-28 08:20:20 t 1 1 212854 728 0.00 2019-12-28 08:21:21 2019-12-28 08:21:30 t 1 4 212861 637 0.00 2019-12-28 08:25:12 2019-12-28 08:31:43 t 1 1 212869 728 0.00 2019-12-28 08:53:03 2019-12-28 08:53:11 t 1 4 212871 625 0.00 2019-12-28 08:30:39 2019-12-28 08:55:14 t 1 1 212873 562 0.00 2019-12-28 08:47:12 2019-12-28 08:58:55 t 1 1 212877 562 0.00 2019-12-28 09:02:38 2019-12-28 09:04:46 t 1 1 212880 728 0.00 2019-12-28 09:10:42 2019-12-28 09:10:51 t 1 4 212884 768 0.00 2019-12-28 09:11:55 2019-12-28 09:12:55 t 1 1 212885 562 0.00 2019-12-28 09:13:49 2019-12-28 09:14:20 t 1 1 212887 591 0.00 2019-12-28 08:31:39 2019-12-28 09:18:58 t 1 1 212889 562 0.00 2019-12-28 09:19:14 2019-12-28 09:19:34 t 1 1 212891 611 0.00 2019-12-28 09:17:43 2019-12-28 09:20:32 t 1 1 212893 694 0.00 2019-12-28 08:08:51 2019-12-28 09:21:46 t 1 1 212894 625 0.00 2019-12-28 09:10:08 2019-12-28 09:22:08 t 1 1 212897 683 0.00 2019-12-28 09:16:24 2019-12-28 09:26:46 t 1 1 212899 679 0.00 2019-12-28 09:07:31 2019-12-28 09:30:03 t 1 1 212906 694 0.00 2019-12-28 09:33:06 2019-12-28 09:34:16 t 1 1 212907 683 0.00 2019-12-28 09:26:46 2019-12-28 09:36:04 t 1 1 212910 771 0.00 2019-12-28 09:33:41 2019-12-28 09:40:32 t 1 1 212911 758 0.00 2019-12-28 09:40:22 2019-12-28 09:41:34 t 1 1 212912 728 0.00 2019-12-28 09:43:35 2019-12-28 09:43:53 t 1 4 212914 711 0.00 2019-12-28 08:55:33 2019-12-28 09:46:22 t 1 1 212916 591 0.00 2019-12-28 09:18:58 2019-12-28 09:47:53 t 1 1 212918 679 0.00 2019-12-28 09:48:10 2019-12-28 09:48:11 t 1 1 212919 679 0.00 2019-12-28 09:48:27 2019-12-28 09:48:44 t 1 1 212922 679 0.00 2019-12-28 09:50:48 2019-12-28 09:51:05 t 1 1 212925 711 0.00 2019-12-28 09:46:22 2019-12-28 09:52:18 t 1 1 212933 728 0.00 2019-12-28 09:54:03 2019-12-28 09:55:26 t 1 4 212936 679 0.00 2019-12-28 09:55:53 2019-12-28 09:56:06 t 1 1 212940 562 0.00 2019-12-28 09:57:22 2019-12-28 09:57:50 t 1 1 212948 679 0.00 2019-12-28 10:02:00 2019-12-28 10:02:17 t 1 1 212951 671 0.00 2019-12-28 09:50:42 2019-12-28 10:03:55 t 1 1 212954 514 0.00 2019-12-28 10:02:43 2019-12-28 10:06:04 t 1 1 212956 485 0.00 2019-12-28 10:04:28 2019-12-28 10:07:25 t 1 1 212964 562 0.00 2019-12-28 10:13:21 2019-12-28 10:14:44 t 1 1 212966 637 0.00 2019-12-28 10:08:53 2019-12-28 10:16:30 t 1 1 212969 637 0.00 2019-12-28 10:16:27 2019-12-28 10:20:26 t 1 1 212970 683 0.00 2019-12-28 09:52:45 2019-12-28 10:21:10 t 1 1 212971 611 0.00 2019-12-28 10:19:41 2019-12-28 10:21:51 t 1 1 212976 562 0.00 2019-12-28 10:25:13 2019-12-28 10:25:49 t 1 1 212982 562 0.00 2019-12-28 10:29:59 2019-12-28 10:30:35 t 1 1 212984 615 0.00 2019-12-28 10:14:16 2019-12-28 10:33:17 t 1 1 212988 675 0.00 2019-12-28 10:34:11 2019-12-28 10:36:03 t 1 1 212990 758 0.00 2019-12-28 10:26:10 2019-12-28 10:38:02 t 1 1 212993 709 0.00 2019-12-28 10:35:08 2019-12-28 10:42:45 t 1 1 212994 709 0.00 2019-12-28 10:43:04 2019-12-28 10:43:30 t 1 1 212996 728 0.00 2019-12-28 10:46:42 2019-12-28 10:46:50 t 1 4 212998 709 0.00 2019-12-28 10:45:29 2019-12-28 10:47:39 t 1 1 213008 564 0.00 2019-12-28 09:56:05 2019-12-28 10:59:08 t 1 1 213010 760 0.00 2019-12-28 10:55:00 2019-12-28 11:02:18 t 1 1 213011 728 0.00 2019-12-28 10:59:29 2019-12-28 11:02:45 t 1 4 213013 681 0.00 2019-12-28 07:09:53 2019-12-28 11:05:10 t 1 1 213014 514 0.00 2019-12-28 10:50:39 2019-12-28 11:05:55 t 1 1 213017 679 0.00 2019-12-28 11:08:51 2019-12-28 11:09:56 t 1 1 213019 728 0.00 2019-12-28 11:12:08 2019-12-28 11:13:15 t 1 4 213022 637 0.00 2019-12-28 11:13:39 2019-12-28 11:15:33 t 1 1 213023 615 0.00 2019-12-28 10:46:10 2019-12-28 11:17:45 t 1 1 213030 562 0.00 2019-12-28 11:29:04 2019-12-28 11:29:22 t 1 1 213031 724 0.00 2019-12-28 11:28:40 2019-12-28 11:29:48 t 1 1 213032 724 0.00 2019-12-28 11:30:13 2019-12-28 11:32:36 t 1 1 213035 694 0.00 2019-12-28 10:52:18 2019-12-28 11:33:56 t 1 1 213036 514 0.00 2019-12-28 11:05:55 2019-12-28 11:36:47 t 1 1 213038 562 0.00 2019-12-28 11:38:26 2019-12-28 11:38:58 t 1 1 213050 611 0.00 2019-12-28 11:51:56 2019-12-28 11:53:44 t 1 1 213052 611 0.00 2019-12-28 11:53:44 2019-12-28 11:55:14 t 1 1 213054 481 0.00 2019-12-28 08:57:35 2019-12-28 11:58:31 t 1 1 213057 728 0.00 2019-12-28 11:59:16 2019-12-28 11:59:25 t 1 4 213058 637 0.00 2019-12-28 11:54:03 2019-12-28 12:00:01 t 1 1 213059 514 0.00 2019-12-28 11:40:26 2019-12-28 12:00:31 t 1 1 213062 615 0.00 2019-12-28 11:59:17 2019-12-28 12:02:25 t 1 1 213065 611 0.00 2019-12-28 11:59:51 2019-12-28 12:08:27 t 1 1 213067 220 0.00 2019-12-28 12:06:23 2019-12-28 12:09:48 t 1 1 213072 481 0.00 2019-12-28 11:58:44 2019-12-28 12:16:11 t 1 1 213076 562 0.00 2019-12-28 12:19:27 2019-12-28 12:19:51 t 1 1 213077 728 0.00 2019-12-28 12:20:14 2019-12-28 12:21:20 t 1 4 213078 220 0.00 2019-12-28 12:10:10 2019-12-28 12:23:09 t 1 1 213082 637 0.00 2019-12-28 12:23:12 2019-12-28 12:27:54 t 1 1 213083 538 0.00 2019-12-28 12:26:56 2019-12-28 12:29:15 t 1 1 213088 671 0.00 2019-12-28 12:32:42 2019-12-28 12:34:05 t 1 1 213089 758 0.00 2019-12-28 12:27:42 2019-12-28 12:34:32 t 1 1 213093 481 0.00 2019-12-28 12:16:51 2019-12-28 12:42:38 t 1 1 213097 544 0.00 2019-12-28 12:33:56 2019-12-28 12:47:26 t 1 1 213103 611 0.00 2019-12-28 12:33:29 2019-12-28 12:53:27 t 1 1 213106 671 0.00 2019-12-28 12:53:32 2019-12-28 12:55:14 t 1 1 213107 637 0.00 2019-12-28 12:54:05 2019-12-28 12:56:02 t 1 1 213108 758 0.00 2019-12-28 12:54:51 2019-12-28 12:58:34 t 1 1 213114 681 0.00 2019-12-28 11:05:10 2019-12-28 13:04:50 t 1 1 213115 637 0.00 2019-12-28 12:58:03 2019-12-28 13:05:28 t 1 1 213116 562 0.00 2019-12-28 12:57:07 2019-12-28 13:07:51 t 1 1 213118 514 0.00 2019-12-28 12:58:34 2019-12-28 13:11:20 t 1 1 213122 679 0.00 2019-12-28 13:13:06 2019-12-28 13:13:19 t 1 1 213123 728 0.00 2019-12-28 13:12:38 2019-12-28 13:13:45 t 1 4 213126 637 0.00 2019-12-28 13:11:36 2019-12-28 13:15:05 t 1 1 213129 679 0.00 2019-12-28 13:16:51 2019-12-28 13:17:13 t 1 1 213133 675 0.00 2019-12-28 13:12:59 2019-12-28 13:20:15 t 1 1 213137 637 0.00 2019-12-28 13:22:12 2019-12-28 13:23:57 t 1 1 213142 591 0.00 2019-12-28 11:08:09 2019-12-28 13:27:35 t 1 1 213145 679 0.00 2019-12-28 13:29:17 2019-12-28 13:29:31 t 1 1 213147 679 0.00 2019-12-28 13:30:17 2019-12-28 13:30:29 t 1 1 213148 679 0.00 2019-12-28 13:30:57 2019-12-28 13:31:49 t 1 1 213150 679 0.00 2019-12-28 13:31:59 2019-12-28 13:33:44 t 1 1 213157 637 0.00 2019-12-28 13:34:42 2019-12-28 13:35:55 t 1 1 213161 679 0.00 2019-12-28 13:38:37 2019-12-28 13:38:53 t 1 1 213163 758 0.00 2019-12-28 13:33:49 2019-12-28 13:40:34 t 1 1 213164 758 0.00 2019-12-28 13:40:56 2019-12-28 13:41:03 t 1 1 213167 679 0.00 2019-12-28 13:41:54 2019-12-28 13:42:10 t 1 1 213170 742 0.00 2019-12-28 13:30:07 2019-12-28 13:42:41 t 1 1 213171 679 0.00 2019-12-28 13:42:55 2019-12-28 13:43:07 t 1 1 213177 679 0.00 2019-12-28 13:46:29 2019-12-28 13:46:44 t 1 1 212870 679 0.00 2019-12-28 08:54:20 2019-12-28 08:55:05 t 1 1 212872 481 0.00 2019-12-28 08:29:12 2019-12-28 08:57:15 t 1 1 212874 562 0.00 2019-12-28 08:58:55 2019-12-28 09:02:22 t 1 1 212876 728 0.00 2019-12-28 09:03:30 2019-12-28 09:04:37 t 1 4 212879 625 0.00 2019-12-28 08:55:22 2019-12-28 09:10:09 t 1 1 212882 562 0.00 2019-12-28 09:11:24 2019-12-28 09:11:56 t 1 1 212888 771 0.00 2019-12-28 09:16:02 2019-12-28 09:19:14 t 1 1 212892 562 0.00 2019-12-28 09:21:04 2019-12-28 09:21:36 t 1 1 212895 728 0.00 2019-12-28 09:21:10 2019-12-28 09:23:09 t 1 4 212898 758 0.00 2019-12-28 09:25:55 2019-12-28 09:26:55 t 1 1 212900 694 0.00 2019-12-28 09:21:50 2019-12-28 09:30:10 t 1 1 212902 675 0.00 2019-12-28 09:29:28 2019-12-28 09:33:06 t 1 1 212903 637 0.00 2019-12-28 09:04:21 2019-12-28 09:33:39 t 1 1 212905 728 0.00 2019-12-28 09:32:32 2019-12-28 09:34:12 t 1 4 212921 679 0.00 2019-12-28 09:48:20 2019-12-28 09:50:55 t 1 1 212923 564 0.00 2019-12-28 09:21:12 2019-12-28 09:51:34 t 1 1 212924 679 0.00 2019-12-28 09:51:48 2019-12-28 09:52:02 t 1 1 212927 683 0.00 2019-12-28 09:36:04 2019-12-28 09:53:17 t 1 1 212929 679 0.00 2019-12-28 09:53:52 2019-12-28 09:54:07 t 1 1 212931 544 0.00 2019-12-28 09:41:13 2019-12-28 09:54:51 t 1 1 212932 679 0.00 2019-12-28 09:54:53 2019-12-28 09:55:16 t 1 1 212934 758 0.00 2019-12-28 09:41:38 2019-12-28 09:55:40 t 1 1 212937 694 0.00 2019-12-28 09:54:46 2019-12-28 09:56:32 t 1 1 212938 679 0.00 2019-12-28 09:56:55 2019-12-28 09:57:09 t 1 1 212939 675 0.00 2019-12-28 09:48:43 2019-12-28 09:57:29 t 1 1 212941 679 0.00 2019-12-28 09:57:55 2019-12-28 09:58:07 t 1 1 212944 615 0.00 2019-12-28 09:44:16 2019-12-28 09:59:24 t 1 1 212947 679 0.00 2019-12-28 10:00:59 2019-12-28 10:01:17 t 1 1 212950 514 0.00 2019-12-28 04:05:55 2019-12-28 10:02:44 t 1 1 212953 679 0.00 2019-12-28 10:03:01 2019-12-28 10:04:26 t 1 1 212957 760 0.00 2019-12-28 09:54:52 2019-12-28 10:08:03 t 1 1 212959 637 0.00 2019-12-28 10:01:32 2019-12-28 10:08:47 t 1 1 212960 562 0.00 2019-12-28 10:09:02 2019-12-28 10:09:22 t 1 1 212963 615 0.00 2019-12-28 10:00:13 2019-12-28 10:14:16 t 1 1 212965 728 0.00 2019-12-28 10:15:18 2019-12-28 10:15:26 t 1 4 212968 562 0.00 2019-12-28 10:18:33 2019-12-28 10:19:01 t 1 1 212972 683 0.00 2019-12-28 10:21:16 2019-12-28 10:22:32 t 1 1 212973 637 0.00 2019-12-28 10:20:30 2019-12-28 10:23:09 t 1 1 212979 728 0.00 2019-12-28 10:25:45 2019-12-28 10:26:51 t 1 4 212981 637 0.00 2019-12-28 10:23:42 2019-12-28 10:29:47 t 1 1 212985 562 0.00 2019-12-28 10:32:55 2019-12-28 10:33:26 t 1 1 212987 615 0.00 2019-12-28 10:33:17 2019-12-28 10:34:34 t 1 1 212989 728 0.00 2019-12-28 10:36:14 2019-12-28 10:36:22 t 1 4 212992 671 0.00 2019-12-28 10:35:53 2019-12-28 10:40:22 t 1 1 213000 760 0.00 2019-12-28 10:43:39 2019-12-28 10:49:48 t 1 1 213001 514 0.00 2019-12-28 10:06:04 2019-12-28 10:50:39 t 1 1 213004 760 0.00 2019-12-28 10:49:48 2019-12-28 10:55:00 t 1 1 213006 562 0.00 2019-12-28 10:57:24 2019-12-28 10:57:49 t 1 1 213015 591 0.00 2019-12-28 10:08:22 2019-12-28 11:08:09 t 1 1 213016 562 0.00 2019-12-28 11:08:05 2019-12-28 11:08:28 t 1 1 213018 724 0.00 2019-12-28 11:01:42 2019-12-28 11:11:07 t 1 1 213020 773 0.00 2019-12-28 11:04:29 2019-12-28 11:13:39 t 1 1 213024 562 0.00 2019-12-28 11:18:13 2019-12-28 11:20:01 t 1 1 213025 728 0.00 2019-12-28 11:22:38 2019-12-28 11:22:54 t 1 4 213027 691 0.00 2019-12-28 11:22:24 2019-12-28 11:25:03 t 1 1 213033 728 0.00 2019-12-28 11:33:06 2019-12-28 11:33:15 t 1 4 213034 691 0.00 2019-12-28 11:32:36 2019-12-28 11:33:52 t 1 1 213039 728 0.00 2019-12-28 11:39:13 2019-12-28 11:39:21 t 1 4 213040 637 0.00 2019-12-28 11:37:21 2019-12-28 11:39:42 t 1 1 213041 514 0.00 2019-12-28 11:36:46 2019-12-28 11:40:27 t 1 1 213043 637 0.00 2019-12-28 11:41:12 2019-12-28 11:43:47 t 1 1 213044 671 0.00 2019-12-28 11:42:13 2019-12-28 11:47:47 t 1 1 213046 562 0.00 2019-12-28 11:49:07 2019-12-28 11:49:36 t 1 1 213047 611 0.00 2019-12-28 11:44:54 2019-12-28 11:50:49 t 1 1 213049 611 0.00 2019-12-28 11:51:07 2019-12-28 11:51:57 t 1 1 213053 675 0.00 2019-12-28 11:54:37 2019-12-28 11:56:14 t 1 1 213055 707 0.00 2019-12-28 11:50:51 2019-12-28 11:59:06 t 1 1 213060 637 0.00 2019-12-28 11:59:30 2019-12-28 12:01:06 t 1 1 213061 562 0.00 2019-12-28 11:59:59 2019-12-28 12:01:40 t 1 1 213063 637 0.00 2019-12-28 12:01:21 2019-12-28 12:03:11 t 1 1 213073 615 0.00 2019-12-28 12:15:17 2019-12-28 12:16:46 t 1 1 213074 611 0.00 2019-12-28 12:13:30 2019-12-28 12:16:51 t 1 1 213079 637 0.00 2019-12-28 12:09:26 2019-12-28 12:23:12 t 1 1 213080 724 0.00 2019-12-28 12:00:19 2019-12-28 12:23:37 t 1 1 213081 683 0.00 2019-12-28 12:05:22 2019-12-28 12:27:19 t 1 1 213084 562 0.00 2019-12-28 12:29:58 2019-12-28 12:31:03 t 1 1 213086 611 0.00 2019-12-28 12:30:36 2019-12-28 12:32:24 t 1 1 213090 675 0.00 2019-12-28 12:30:34 2019-12-28 12:36:24 t 1 1 213091 562 0.00 2019-12-28 12:40:51 2019-12-28 12:41:14 t 1 1 213094 724 0.00 2019-12-28 12:40:40 2019-12-28 12:44:50 t 1 1 213095 707 0.00 2019-12-28 12:00:31 2019-12-28 12:46:00 t 1 1 213098 637 0.00 2019-12-28 12:46:17 2019-12-28 12:49:10 t 1 1 213101 562 0.00 2019-12-28 12:51:28 2019-12-28 12:51:54 t 1 1 213104 679 0.00 2019-12-28 12:37:01 2019-12-28 12:53:40 t 1 1 213109 675 0.00 2019-12-28 12:55:20 2019-12-28 12:58:57 t 1 1 213113 516 0.00 2019-12-28 12:59:31 2019-12-28 13:04:29 t 1 1 213117 637 0.00 2019-12-28 13:08:29 2019-12-28 13:10:02 t 1 1 213119 637 0.00 2019-12-28 13:10:26 2019-12-28 13:11:29 t 1 1 213121 679 0.00 2019-12-28 13:12:44 2019-12-28 13:12:57 t 1 1 213125 679 0.00 2019-12-28 13:14:22 2019-12-28 13:14:48 t 1 1 213127 720 0.00 2019-12-28 12:49:37 2019-12-28 13:15:23 t 1 1 213128 679 0.00 2019-12-28 13:15:51 2019-12-28 13:16:08 t 1 1 213130 637 0.00 2019-12-28 13:15:21 2019-12-28 13:17:22 t 1 1 213131 679 0.00 2019-12-28 13:17:52 2019-12-28 13:18:09 t 1 1 213132 679 0.00 2019-12-28 13:18:52 2019-12-28 13:19:04 t 1 1 213134 637 0.00 2019-12-28 13:17:21 2019-12-28 13:20:31 t 1 1 213135 481 0.00 2019-12-28 12:42:50 2019-12-28 13:21:33 t 1 1 213136 637 0.00 2019-12-28 13:20:34 2019-12-28 13:22:12 t 1 1 213138 728 0.00 2019-12-28 13:23:08 2019-12-28 13:24:14 t 1 4 213144 562 0.00 2019-12-28 13:10:24 2019-12-28 13:28:54 t 1 1 213149 728 0.00 2019-12-28 13:33:36 2019-12-28 13:33:44 t 1 4 213153 696 0.00 2019-12-28 13:26:07 2019-12-28 13:34:44 t 1 1 213155 679 0.00 2019-12-28 13:34:48 2019-12-28 13:35:17 t 1 1 213156 679 0.00 2019-12-28 13:35:34 2019-12-28 13:35:46 t 1 1 213160 544 0.00 2019-12-28 13:33:58 2019-12-28 13:38:48 t 1 1 213169 758 0.00 2019-12-28 13:42:24 2019-12-28 13:42:33 t 1 1 213173 679 0.00 2019-12-28 13:43:46 2019-12-28 13:44:02 t 1 1 212875 637 0.00 2019-12-28 08:53:03 2019-12-28 09:04:21 t 1 1 212878 611 0.00 2019-12-28 08:59:59 2019-12-28 09:04:54 t 1 1 212881 562 0.00 2019-12-28 09:10:41 2019-12-28 09:10:53 t 1 1 212883 771 0.00 2019-12-28 09:11:56 2019-12-28 09:12:14 t 1 1 212886 562 0.00 2019-12-28 09:16:56 2019-12-28 09:17:53 t 1 1 212890 724 0.00 2019-12-28 09:06:10 2019-12-28 09:20:24 t 1 1 212896 707 0.00 2019-12-28 09:21:53 2019-12-28 09:25:56 t 1 1 212901 562 0.00 2019-12-28 09:24:47 2019-12-28 09:30:47 t 1 1 212904 538 0.00 2019-12-28 09:00:30 2019-12-28 09:34:09 t 1 1 212908 562 0.00 2019-12-28 09:36:20 2019-12-28 09:36:50 t 1 1 212909 625 0.00 2019-12-28 09:23:54 2019-12-28 09:39:02 t 1 1 212913 615 0.00 2019-12-28 09:35:54 2019-12-28 09:44:16 t 1 1 212915 562 0.00 2019-12-28 09:42:12 2019-12-28 09:47:49 t 1 1 212917 679 0.00 2019-12-28 09:30:03 2019-12-28 09:48:01 t 1 1 212920 679 0.00 2019-12-28 09:49:47 2019-12-28 09:50:10 t 1 1 212926 679 0.00 2019-12-28 09:52:47 2019-12-28 09:52:59 t 1 1 212928 637 0.00 2019-12-28 09:35:35 2019-12-28 09:53:51 t 1 1 212930 679 0.00 2019-12-28 09:54:13 2019-12-28 09:54:25 t 1 1 212935 564 0.00 2019-12-28 09:51:34 2019-12-28 09:56:05 t 1 1 212942 637 0.00 2019-12-28 09:53:51 2019-12-28 09:58:28 t 1 1 212943 679 0.00 2019-12-28 09:58:57 2019-12-28 09:59:12 t 1 1 212945 679 0.00 2019-12-28 09:59:57 2019-12-28 10:00:25 t 1 1 212946 637 0.00 2019-12-28 09:58:28 2019-12-28 10:01:07 t 1 1 212949 724 0.00 2019-12-28 09:28:35 2019-12-28 10:02:18 t 1 1 212952 724 0.00 2019-12-28 10:02:28 2019-12-28 10:04:14 t 1 1 212955 728 0.00 2019-12-28 10:04:49 2019-12-28 10:06:09 t 1 4 212958 562 0.00 2019-12-28 10:08:12 2019-12-28 10:08:36 t 1 1 212961 671 0.00 2019-12-28 10:03:54 2019-12-28 10:11:08 t 1 1 212962 538 0.00 2019-12-28 09:48:12 2019-12-28 10:12:28 t 1 1 212967 538 0.00 2019-12-28 10:13:05 2019-12-28 10:16:37 t 1 1 212974 760 0.00 2019-12-28 10:08:03 2019-12-28 10:23:27 t 1 1 212975 578 0.00 2019-12-28 09:47:52 2019-12-28 10:25:01 t 1 1 212977 683 0.00 2019-12-28 10:22:35 2019-12-28 10:26:10 t 1 1 212978 611 0.00 2019-12-28 10:23:12 2019-12-28 10:26:48 t 1 1 212980 631 0.00 2019-12-28 10:25:28 2019-12-28 10:28:18 t 1 1 212983 724 0.00 2019-12-28 10:11:03 2019-12-28 10:31:09 t 1 1 212986 675 0.00 2019-12-28 10:22:51 2019-12-28 10:34:11 t 1 1 212991 562 0.00 2019-12-28 10:37:40 2019-12-28 10:39:27 t 1 1 212995 760 0.00 2019-12-28 10:23:27 2019-12-28 10:43:39 t 1 1 212997 562 0.00 2019-12-28 10:46:43 2019-12-28 10:47:02 t 1 1 212999 516 0.00 2019-12-28 10:45:47 2019-12-28 10:48:17 t 1 1 213002 694 0.00 2019-12-28 09:56:46 2019-12-28 10:52:11 t 1 1 213003 637 0.00 2019-12-28 10:29:47 2019-12-28 10:54:34 t 1 1 213005 637 0.00 2019-12-28 10:55:08 2019-12-28 10:56:38 t 1 1 213007 728 0.00 2019-12-28 10:57:09 2019-12-28 10:58:14 t 1 4 213009 724 0.00 2019-12-28 10:31:17 2019-12-28 11:01:42 t 1 1 213012 637 0.00 2019-12-28 10:58:01 2019-12-28 11:04:29 t 1 1 213021 760 0.00 2019-12-28 11:02:18 2019-12-28 11:14:16 t 1 1 213026 760 0.00 2019-12-28 11:14:16 2019-12-28 11:24:03 t 1 1 213028 760 0.00 2019-12-28 11:24:03 2019-12-28 11:27:29 t 1 1 213029 637 0.00 2019-12-28 11:25:46 2019-12-28 11:29:04 t 1 1 213037 675 0.00 2019-12-28 11:33:42 2019-12-28 11:37:15 t 1 1 213042 637 0.00 2019-12-28 11:39:57 2019-12-28 11:41:02 t 1 1 213045 675 0.00 2019-12-28 11:46:09 2019-12-28 11:48:39 t 1 1 213048 728 0.00 2019-12-28 11:49:41 2019-12-28 11:50:53 t 1 4 213051 637 0.00 2019-12-28 11:43:42 2019-12-28 11:54:03 t 1 1 213056 615 0.00 2019-12-28 11:47:12 2019-12-28 11:59:17 t 1 1 213064 564 0.00 2019-12-28 10:59:08 2019-12-28 12:05:24 t 1 1 213066 611 0.00 2019-12-28 12:08:26 2019-12-28 12:09:14 t 1 1 213068 562 0.00 2019-12-28 12:08:45 2019-12-28 12:10:05 t 1 1 213069 728 0.00 2019-12-28 12:09:45 2019-12-28 12:10:50 t 1 4 213070 611 0.00 2019-12-28 12:09:14 2019-12-28 12:13:16 t 1 1 213071 671 0.00 2019-12-28 12:08:26 2019-12-28 12:14:15 t 1 1 213075 611 0.00 2019-12-28 12:16:51 2019-12-28 12:18:24 t 1 1 213085 728 0.00 2019-12-28 12:30:42 2019-12-28 12:31:49 t 1 4 213087 637 0.00 2019-12-28 12:29:01 2019-12-28 12:33:52 t 1 1 213092 728 0.00 2019-12-28 12:41:11 2019-12-28 12:42:18 t 1 4 213096 637 0.00 2019-12-28 12:45:19 2019-12-28 12:46:17 t 1 1 213099 538 0.00 2019-12-28 12:40:33 2019-12-28 12:49:38 t 1 1 213100 538 0.00 2019-12-28 12:49:38 2019-12-28 12:51:10 t 1 1 213102 728 0.00 2019-12-28 12:51:40 2019-12-28 12:52:47 t 1 4 213105 637 0.00 2019-12-28 12:48:56 2019-12-28 12:53:57 t 1 1 213110 220 0.00 2019-12-28 12:23:10 2019-12-28 13:00:37 t 1 1 213111 679 0.00 2019-12-28 12:53:40 2019-12-28 13:02:22 t 1 1 213112 728 0.00 2019-12-28 13:02:09 2019-12-28 13:03:16 t 1 4 213120 679 0.00 2019-12-28 13:02:22 2019-12-28 13:11:45 t 1 1 213124 679 0.00 2019-12-28 13:13:29 2019-12-28 13:13:48 t 1 1 213139 683 0.00 2019-12-28 12:27:27 2019-12-28 13:24:18 t 1 1 213140 679 0.00 2019-12-28 13:19:33 2019-12-28 13:26:12 t 1 1 213141 679 0.00 2019-12-28 13:27:08 2019-12-28 13:27:22 t 1 1 213143 679 0.00 2019-12-28 13:28:16 2019-12-28 13:28:47 t 1 1 213146 742 0.00 2019-12-28 13:16:21 2019-12-28 13:30:07 t 1 1 213151 758 0.00 2019-12-28 13:13:09 2019-12-28 13:33:49 t 1 1 213152 544 0.00 2019-12-28 12:48:08 2019-12-28 13:33:59 t 1 1 213154 637 0.00 2019-12-28 13:23:57 2019-12-28 13:34:59 t 1 1 213158 679 0.00 2019-12-28 13:36:51 2019-12-28 13:37:04 t 1 1 213159 679 0.00 2019-12-28 13:37:50 2019-12-28 13:38:02 t 1 1 213162 679 0.00 2019-12-28 13:39:53 2019-12-28 13:40:05 t 1 1 213165 679 0.00 2019-12-28 13:40:54 2019-12-28 13:41:10 t 1 1 213166 637 0.00 2019-12-28 13:35:57 2019-12-28 13:41:55 t 1 1 213168 679 0.00 2019-12-28 13:42:18 2019-12-28 13:42:30 t 1 1 213172 538 0.00 2019-12-28 12:51:09 2019-12-28 13:44:01 t 1 1 213174 728 0.00 2019-12-28 13:44:03 2019-12-28 13:45:10 t 1 4 213175 544 0.00 2019-12-28 13:38:48 2019-12-28 13:45:39 t 1 1 213179 562 0.00 2019-12-28 13:30:14 2019-12-28 13:48:44 t 1 1 213181 611 0.00 2019-12-28 13:24:48 2019-12-28 13:49:18 t 1 1 213184 679 0.00 2019-12-28 13:50:22 2019-12-28 13:50:38 t 1 1 213185 481 0.00 2019-12-28 13:21:50 2019-12-28 13:51:30 t 1 1 213188 742 0.00 2019-12-28 13:42:41 2019-12-28 13:52:17 t 1 1 213189 758 0.00 2019-12-28 13:50:07 2019-12-28 13:52:35 t 1 1 213191 683 0.00 2019-12-28 13:24:18 2019-12-28 13:53:36 t 1 1 213196 748 0.00 2019-12-28 13:55:03 2019-12-28 13:57:40 t 1 1 213201 675 0.00 2019-12-28 13:54:23 2019-12-28 14:03:39 t 1 1 213203 562 0.00 2019-12-28 14:04:04 2019-12-28 14:04:15 t 1 1 213209 538 0.00 2019-12-28 13:53:41 2019-12-28 14:07:21 t 1 1 213210 562 0.00 2019-12-28 14:08:57 2019-12-28 14:09:57 t 1 1 213213 728 0.00 2019-12-28 14:15:30 2019-12-28 14:15:38 t 1 4 213176 679 0.00 2019-12-28 13:44:54 2019-12-28 13:46:18 t 1 1 213180 679 0.00 2019-12-28 13:48:21 2019-12-28 13:48:48 t 1 1 213186 679 0.00 2019-12-28 13:51:22 2019-12-28 13:51:43 t 1 1 213193 728 0.00 2019-12-28 13:54:32 2019-12-28 13:54:51 t 1 4 213195 671 0.00 2019-12-28 13:55:32 2019-12-28 13:57:26 t 1 1 213198 748 0.00 2019-12-28 13:57:48 2019-12-28 14:00:05 t 1 1 213200 544 0.00 2019-12-28 13:45:39 2019-12-28 14:00:34 t 1 1 213202 562 0.00 2019-12-28 13:49:15 2019-12-28 14:03:56 t 1 1 213204 637 0.00 2019-12-28 13:58:11 2019-12-28 14:05:01 t 1 1 213205 728 0.00 2019-12-28 14:05:01 2019-12-28 14:05:10 t 1 4 213207 562 0.00 2019-12-28 14:06:41 2019-12-28 14:06:59 t 1 1 213214 562 0.00 2019-12-28 14:10:07 2019-12-28 14:16:58 t 1 1 213219 562 0.00 2019-12-28 14:19:12 2019-12-28 14:20:58 t 1 1 213221 637 0.00 2019-12-28 14:20:24 2019-12-28 14:23:19 t 1 1 213225 758 0.00 2019-12-28 14:25:47 2019-12-28 14:26:09 t 1 1 213227 763 0.00 2019-12-28 14:23:04 2019-12-28 14:26:39 t 1 1 213228 758 0.00 2019-12-28 14:26:20 2019-12-28 14:27:03 t 1 1 213231 637 0.00 2019-12-28 14:27:01 2019-12-28 14:30:19 t 1 1 213235 758 0.00 2019-12-28 14:34:59 2019-12-28 14:35:08 t 1 1 213238 637 0.00 2019-12-28 14:31:11 2019-12-28 14:37:24 t 1 1 213239 220 0.00 2019-12-28 14:26:57 2019-12-28 14:37:48 t 1 1 213240 649 0.00 2019-12-28 14:26:15 2019-12-28 14:41:28 t 1 1 213243 728 0.00 2019-12-28 14:16:26 2019-12-28 14:43:33 t 1 4 213245 748 0.00 2019-12-28 14:43:50 2019-12-28 14:44:14 t 1 1 213246 562 0.00 2019-12-28 14:41:39 2019-12-28 14:44:33 t 1 1 213247 748 0.00 2019-12-28 14:45:32 2019-12-28 14:45:32 f 1 1 213248 748 0.00 2019-12-28 14:45:47 2019-12-28 14:45:47 f 1 1 213252 748 0.00 2019-12-28 14:45:18 2019-12-28 14:46:59 t 1 1 213256 220 0.00 2019-12-28 14:37:48 2019-12-28 14:50:35 t 1 1 213258 637 0.00 2019-12-28 14:46:08 2019-12-28 14:52:39 t 1 1 213260 562 0.00 2019-12-28 14:54:42 2019-12-28 14:55:41 t 1 1 213263 220 0.00 2019-12-28 14:50:35 2019-12-28 15:03:23 t 1 1 213264 485 0.00 2019-12-28 15:00:57 2019-12-28 15:04:00 t 1 1 213268 562 0.00 2019-12-28 14:55:50 2019-12-28 15:06:54 t 1 1 213270 748 0.00 2019-12-28 14:59:45 2019-12-28 15:07:51 t 1 1 213271 748 0.00 2019-12-28 15:09:06 2019-12-28 15:09:10 t 1 1 213272 683 0.00 2019-12-28 15:07:22 2019-12-28 15:10:09 t 1 1 213276 220 0.00 2019-12-28 15:03:23 2019-12-28 15:17:44 t 1 1 213277 683 0.00 2019-12-28 15:15:37 2019-12-28 15:19:05 t 1 1 213280 758 0.00 2019-12-28 15:20:03 2019-12-28 15:20:18 t 1 1 213285 671 0.00 2019-12-28 15:21:54 2019-12-28 15:23:45 t 1 1 213290 220 0.00 2019-12-28 15:17:44 2019-12-28 15:29:10 t 1 1 213294 220 0.00 2019-12-28 15:29:10 2019-12-28 15:33:29 t 1 1 213300 562 0.00 2019-12-28 15:35:03 2019-12-28 15:41:03 t 1 1 213304 742 0.00 2019-12-28 15:33:46 2019-12-28 15:43:15 t 1 1 213307 768 0.00 2019-12-28 15:48:38 2019-12-28 15:49:49 t 1 1 213308 562 0.00 2019-12-28 15:42:48 2019-12-28 15:52:00 t 1 1 213309 220 0.00 2019-12-28 15:33:32 2019-12-28 15:53:02 t 1 1 213311 516 0.00 2019-12-28 15:54:55 2019-12-28 15:57:22 t 1 1 213313 637 0.00 2019-12-28 15:48:39 2019-12-28 15:59:11 t 1 1 213317 637 0.00 2019-12-28 15:59:11 2019-12-28 16:04:57 t 1 1 213319 681 0.00 2019-12-28 13:04:50 2019-12-28 16:08:08 t 1 1 213320 562 0.00 2019-12-28 16:02:54 2019-12-28 16:08:42 t 1 1 213322 675 0.00 2019-12-28 16:07:29 2019-12-28 16:09:06 t 1 1 213326 566 0.00 2019-12-28 16:04:48 2019-12-28 16:13:16 t 1 1 213327 615 0.00 2019-12-28 15:59:03 2019-12-28 16:13:47 t 1 1 213330 611 0.00 2019-12-28 16:10:36 2019-12-28 16:16:14 t 1 1 213331 498 0.00 2019-12-28 16:18:20 2019-12-28 16:18:20 f 1 4 213332 498 0.00 2019-12-28 16:18:39 2019-12-28 16:18:39 f 1 4 213336 667 0.00 2019-12-28 16:18:59 2019-12-28 16:19:26 t 1 1 213338 498 0.00 2019-12-28 16:19:38 2019-12-28 16:19:38 f 1 4 213340 562 0.00 2019-12-28 16:19:22 2019-12-28 16:19:52 t 1 1 213344 498 0.00 2019-12-28 16:16:55 2019-12-28 16:20:56 t 1 4 213346 498 0.00 2019-12-28 16:21:41 2019-12-28 16:21:41 f 1 4 213347 675 0.00 2019-12-28 16:20:42 2019-12-28 16:23:16 t 1 1 213349 498 0.00 2019-12-28 16:24:03 2019-12-28 16:24:03 f 1 1 213351 498 0.00 2019-12-28 16:24:24 2019-12-28 16:24:24 f 1 1 213353 498 0.00 2019-12-28 16:24:48 2019-12-28 16:24:48 f 1 1 213356 498 0.00 2019-12-28 16:25:00 2019-12-28 16:26:03 t 1 1 213357 667 0.00 2019-12-28 16:27:03 2019-12-28 16:27:58 t 1 1 213366 498 0.00 2019-12-28 16:34:14 2019-12-28 16:35:17 t 1 1 213367 544 0.00 2019-12-28 16:30:41 2019-12-28 16:36:16 t 1 1 213369 220 0.00 2019-12-28 16:32:43 2019-12-28 16:37:11 t 1 1 213372 667 0.00 2019-12-28 16:38:20 2019-12-28 16:39:38 t 1 1 213374 771 0.00 2019-12-28 16:41:05 2019-12-28 16:41:17 t 1 2 213379 562 0.00 2019-12-28 16:41:50 2019-12-28 16:42:32 t 1 1 213384 566 0.00 2019-12-28 16:43:17 2019-12-28 16:48:21 t 1 1 213385 687 0.00 2019-12-28 16:45:03 2019-12-28 16:49:05 t 1 1 213386 562 0.00 2019-12-28 16:48:57 2019-12-28 16:50:41 t 1 1 213388 611 0.00 2019-12-28 16:52:11 2019-12-28 16:53:48 t 1 1 213389 758 0.00 2019-12-28 16:49:30 2019-12-28 16:54:29 t 1 1 213395 724 0.00 2019-12-28 16:29:55 2019-12-28 16:59:21 t 1 1 213396 483 0.00 2019-12-28 16:45:18 2019-12-28 17:01:24 t 1 1 213397 671 0.00 2019-12-28 16:57:50 2019-12-28 17:02:14 t 1 1 213399 763 0.00 2019-12-28 17:00:14 2019-12-28 17:02:38 t 1 1 213401 615 0.00 2019-12-28 17:02:32 2019-12-28 17:03:41 t 1 1 213402 724 0.00 2019-12-28 17:00:44 2019-12-28 17:04:29 t 1 1 213403 724 0.00 2019-12-28 17:05:01 2019-12-28 17:07:14 t 1 1 213405 637 0.00 2019-12-28 17:02:19 2019-12-28 17:07:34 t 1 1 213411 637 0.00 2019-12-28 17:07:51 2019-12-28 17:11:37 t 1 1 213413 637 0.00 2019-12-28 17:11:37 2019-12-28 17:13:25 t 1 1 213415 724 0.00 2019-12-28 17:09:04 2019-12-28 17:14:45 t 1 1 213418 562 0.00 2019-12-28 17:16:19 2019-12-28 17:16:41 t 1 1 213419 562 0.00 2019-12-28 17:16:51 2019-12-28 17:17:21 t 1 1 213421 675 0.00 2019-12-28 17:18:12 2019-12-28 17:20:48 t 1 1 213428 615 0.00 2019-12-28 17:20:31 2019-12-28 17:24:48 t 1 1 213432 763 0.00 2019-12-28 17:24:49 2019-12-28 17:29:20 t 1 1 213435 687 0.00 2019-12-28 17:20:54 2019-12-28 17:32:37 t 1 1 213436 711 0.00 2019-12-28 17:27:51 2019-12-28 17:34:18 t 1 1 213437 763 0.00 2019-12-28 17:32:30 2019-12-28 17:36:26 t 1 1 213438 562 0.00 2019-12-28 17:37:58 2019-12-28 17:38:12 t 1 1 213439 763 0.00 2019-12-28 17:36:57 2019-12-28 17:38:49 t 1 1 213441 220 0.00 2019-12-28 16:44:28 2019-12-28 17:41:07 t 1 1 213443 637 0.00 2019-12-28 17:13:25 2019-12-28 17:42:01 t 1 1 213446 498 0.00 2019-12-28 17:45:09 2019-12-28 17:46:11 t 1 1 213447 681 0.00 2019-12-28 16:08:08 2019-12-28 17:46:53 t 1 1 213448 498 0.00 2019-12-28 17:46:51 2019-12-28 17:47:55 t 1 1 213178 679 0.00 2019-12-28 13:47:21 2019-12-28 13:47:51 t 1 1 213182 679 0.00 2019-12-28 13:49:22 2019-12-28 13:49:23 t 1 1 213183 758 0.00 2019-12-28 13:43:12 2019-12-28 13:50:07 t 1 1 213187 734 0.00 2019-12-28 13:46:41 2019-12-28 13:52:07 t 1 1 213190 679 0.00 2019-12-28 13:52:23 2019-12-28 13:53:17 t 1 1 213192 679 0.00 2019-12-28 13:53:30 2019-12-28 13:54:31 t 1 1 213194 683 0.00 2019-12-28 13:53:36 2019-12-28 13:55:54 t 1 1 213197 637 0.00 2019-12-28 13:41:55 2019-12-28 13:58:11 t 1 1 213199 514 0.00 2019-12-28 13:48:38 2019-12-28 14:00:19 t 1 1 213206 562 0.00 2019-12-28 14:04:30 2019-12-28 14:05:15 t 1 1 213208 758 0.00 2019-12-28 14:06:01 2019-12-28 14:07:09 t 1 1 213211 637 0.00 2019-12-28 14:05:01 2019-12-28 14:12:01 t 1 1 213212 637 0.00 2019-12-28 14:12:01 2019-12-28 14:13:22 t 1 1 213216 564 0.00 2019-12-28 12:05:24 2019-12-28 14:18:40 t 1 1 213223 683 0.00 2019-12-28 14:00:59 2019-12-28 14:23:55 t 1 1 213230 562 0.00 2019-12-28 14:25:55 2019-12-28 14:29:07 t 1 1 213233 758 0.00 2019-12-28 14:31:47 2019-12-28 14:31:56 t 1 1 213241 683 0.00 2019-12-28 14:30:04 2019-12-28 14:41:39 t 1 1 213249 748 0.00 2019-12-28 14:44:33 2019-12-28 14:45:59 t 1 1 213254 562 0.00 2019-12-28 14:46:41 2019-12-28 14:48:37 t 1 1 213257 562 0.00 2019-12-28 14:51:25 2019-12-28 14:51:53 t 1 1 213261 675 0.00 2019-12-28 14:54:22 2019-12-28 15:00:08 t 1 1 213262 637 0.00 2019-12-28 14:57:22 2019-12-28 15:00:42 t 1 1 213265 591 0.00 2019-12-28 15:00:36 2019-12-28 15:04:12 t 1 1 213269 637 0.00 2019-12-28 15:01:45 2019-12-28 15:07:09 t 1 1 213273 499 0.00 2019-12-28 15:14:51 2019-12-28 15:15:16 t 1 1 213281 748 0.00 2019-12-28 15:19:17 2019-12-28 15:20:19 t 1 1 213284 773 0.00 2019-12-28 15:05:06 2019-12-28 15:21:08 t 1 1 213286 562 0.00 2019-12-28 15:07:50 2019-12-28 15:23:54 t 1 1 213293 562 0.00 2019-12-28 15:23:54 2019-12-28 15:31:58 t 1 1 213297 683 0.00 2019-12-28 15:30:25 2019-12-28 15:35:56 t 1 1 213298 675 0.00 2019-12-28 15:37:09 2019-12-28 15:38:40 t 1 1 213303 637 0.00 2019-12-28 15:21:08 2019-12-28 15:42:50 t 1 1 213310 758 0.00 2019-12-28 15:27:06 2019-12-28 15:56:15 t 1 1 213312 615 0.00 2019-12-28 15:43:28 2019-12-28 15:59:03 t 1 1 213316 566 0.00 2019-12-28 15:57:42 2019-12-28 16:04:48 t 1 1 213318 538 0.00 2019-12-28 14:12:01 2019-12-28 16:06:02 t 1 1 213323 667 0.00 2019-12-28 16:05:27 2019-12-28 16:10:34 t 1 1 213324 667 0.00 2019-12-28 16:10:47 2019-12-28 16:11:04 t 1 1 213328 562 0.00 2019-12-28 16:14:12 2019-12-28 16:14:26 t 1 1 213335 498 0.00 2019-12-28 16:19:15 2019-12-28 16:19:15 f 1 4 213342 498 0.00 2019-12-28 16:20:24 2019-12-28 16:20:24 f 1 4 213343 498 0.00 2019-12-28 16:20:35 2019-12-28 16:20:35 f 1 4 213348 498 0.00 2019-12-28 16:23:48 2019-12-28 16:23:48 f 1 1 213350 615 0.00 2019-12-28 16:13:47 2019-12-28 16:24:10 t 1 1 213352 498 0.00 2019-12-28 16:24:36 2019-12-28 16:24:36 f 1 1 213358 220 0.00 2019-12-28 16:30:06 2019-12-28 16:30:08 t 1 2 213361 566 0.00 2019-12-28 16:21:09 2019-12-28 16:30:44 t 1 1 213364 730 0.00 2019-12-28 16:34:31 2019-12-28 16:34:36 t 1 4 213375 562 0.00 2019-12-28 16:40:42 2019-12-28 16:41:51 t 1 1 213377 498 0.00 2019-12-28 16:42:09 2019-12-28 16:42:09 f 1 4 213378 498 0.00 2019-12-28 16:42:23 2019-12-28 16:42:23 f 1 4 213380 566 0.00 2019-12-28 16:30:44 2019-12-28 16:43:17 t 1 1 213381 687 0.00 2019-12-28 16:42:22 2019-12-28 16:44:07 t 1 1 213387 675 0.00 2019-12-28 16:44:44 2019-12-28 16:50:58 t 1 1 213391 758 0.00 2019-12-28 16:56:21 2019-12-28 16:56:31 t 1 1 213393 562 0.00 2019-12-28 16:56:07 2019-12-28 16:56:59 t 1 1 213398 637 0.00 2019-12-28 16:56:40 2019-12-28 17:02:19 t 1 1 213400 562 0.00 2019-12-28 17:02:08 2019-12-28 17:03:25 t 1 1 213404 562 0.00 2019-12-28 17:06:56 2019-12-28 17:07:23 t 1 1 213406 591 0.00 2019-12-28 16:47:44 2019-12-28 17:07:34 t 1 1 213410 675 0.00 2019-12-28 17:04:40 2019-12-28 17:11:07 t 1 1 213412 683 0.00 2019-12-28 15:42:45 2019-12-28 17:12:38 t 1 1 213420 483 0.00 2019-12-28 17:08:55 2019-12-28 17:18:59 t 1 1 213422 687 0.00 2019-12-28 16:51:57 2019-12-28 17:20:54 t 1 1 213424 516 0.00 2019-12-28 17:15:51 2019-12-28 17:22:07 t 1 1 213426 763 0.00 2019-12-28 17:21:41 2019-12-28 17:22:42 t 1 1 213427 711 0.00 2019-12-28 16:55:36 2019-12-28 17:23:31 t 1 1 213430 562 0.00 2019-12-28 17:27:20 2019-12-28 17:27:30 t 1 1 213433 483 0.00 2019-12-28 17:22:01 2019-12-28 17:31:17 t 1 1 213440 711 0.00 2019-12-28 17:34:18 2019-12-28 17:41:06 t 1 1 213442 675 0.00 2019-12-28 17:34:52 2019-12-28 17:41:14 t 1 1 213444 763 0.00 2019-12-28 17:38:49 2019-12-28 17:44:46 t 1 1 213449 562 0.00 2019-12-28 17:48:39 2019-12-28 17:49:03 t 1 1 213452 611 0.00 2019-12-28 17:49:12 2019-12-28 17:50:34 t 1 1 213454 711 0.00 2019-12-28 17:41:06 2019-12-28 17:51:03 t 1 1 213455 687 0.00 2019-12-28 17:32:37 2019-12-28 17:51:51 t 1 1 213457 611 0.00 2019-12-28 17:50:33 2019-12-28 17:54:36 t 1 1 213459 711 0.00 2019-12-28 17:51:03 2019-12-28 17:56:44 t 1 1 213463 498 0.00 2019-12-28 17:58:04 2019-12-28 17:58:04 f 1 4 213466 498 0.00 2019-12-28 17:59:40 2019-12-28 17:59:40 f 1 1 213469 687 0.00 2019-12-28 17:51:51 2019-12-28 18:00:17 t 1 1 213471 611 0.00 2019-12-28 17:54:15 2019-12-28 18:02:12 t 1 1 213473 562 0.00 2019-12-28 18:03:30 2019-12-28 18:04:40 t 1 1 213478 683 0.00 2019-12-28 18:08:39 2019-12-28 18:09:58 t 1 1 213483 687 0.00 2019-12-28 18:03:40 2019-12-28 18:13:33 t 1 1 213490 724 0.00 2019-12-28 17:17:16 2019-12-28 18:15:20 t 1 1 213491 637 0.00 2019-12-28 18:14:22 2019-12-28 18:19:50 t 1 1 213492 675 0.00 2019-12-28 18:15:52 2019-12-28 18:22:12 t 1 1 213498 683 0.00 2019-12-28 18:21:58 2019-12-28 18:25:58 t 1 1 213501 637 0.00 2019-12-28 18:26:21 2019-12-28 18:28:42 t 1 1 213503 711 0.00 2019-12-28 18:13:45 2019-12-28 18:29:43 t 1 1 213508 516 0.00 2019-12-28 18:12:58 2019-12-28 18:35:54 t 1 1 213511 711 0.00 2019-12-28 18:29:43 2019-12-28 18:38:12 t 1 1 213515 707 0.00 2019-12-28 18:09:08 2019-12-28 18:41:56 t 1 1 213516 775 0.00 2019-12-28 18:41:50 2019-12-28 18:42:58 t 1 1 213517 687 0.00 2019-12-28 18:41:32 2019-12-28 18:44:01 t 1 1 213518 625 0.00 2019-12-28 18:41:17 2019-12-28 18:46:35 t 1 1 213520 591 0.00 2019-12-28 18:32:58 2019-12-28 18:48:32 t 1 1 213523 516 0.00 2019-12-28 18:35:54 2019-12-28 18:51:24 t 1 1 213526 591 0.00 2019-12-28 18:50:41 2019-12-28 18:54:22 t 1 1 213527 722 0.00 2019-12-28 18:48:31 2019-12-28 18:54:47 t 1 1 213532 671 0.00 2019-12-28 19:00:07 2019-12-28 19:01:39 t 1 1 213535 675 0.00 2019-12-28 19:03:54 2019-12-28 19:06:56 t 1 1 213536 591 0.00 2019-12-28 19:04:22 2019-12-28 19:08:18 t 1 1 213537 562 0.00 2019-12-28 19:08:18 2019-12-28 19:08:32 t 1 1 213539 625 0.00 2019-12-28 18:46:30 2019-12-28 19:12:04 t 1 1 213215 562 0.00 2019-12-28 14:16:58 2019-12-28 14:18:13 t 1 1 213217 591 0.00 2019-12-28 13:27:35 2019-12-28 14:19:34 t 1 1 213218 763 0.00 2019-12-28 14:15:38 2019-12-28 14:20:32 t 1 1 213220 763 0.00 2019-12-28 14:20:32 2019-12-28 14:23:04 t 1 1 213222 562 0.00 2019-12-28 14:19:43 2019-12-28 14:23:43 t 1 1 213224 516 0.00 2019-12-28 14:21:51 2019-12-28 14:25:27 t 1 1 213226 637 0.00 2019-12-28 14:23:43 2019-12-28 14:26:39 t 1 1 213229 675 0.00 2019-12-28 14:23:55 2019-12-28 14:28:03 t 1 1 213232 758 0.00 2019-12-28 14:31:11 2019-12-28 14:31:39 t 1 1 213234 631 0.00 2019-12-28 14:26:29 2019-12-28 14:32:14 t 1 1 213236 562 0.00 2019-12-28 14:29:48 2019-12-28 14:36:18 t 1 1 213237 758 0.00 2019-12-28 14:36:53 2019-12-28 14:37:17 t 1 1 213242 675 0.00 2019-12-28 14:39:54 2019-12-28 14:43:29 t 1 1 213244 748 0.00 2019-12-28 14:33:30 2019-12-28 14:43:51 t 1 1 213250 637 0.00 2019-12-28 14:37:25 2019-12-28 14:46:08 t 1 1 213251 748 0.00 2019-12-28 14:46:43 2019-12-28 14:46:43 f 1 1 213253 748 0.00 2019-12-28 14:46:30 2019-12-28 14:47:59 t 1 1 213255 485 0.00 2019-12-28 14:44:49 2019-12-28 14:48:55 t 1 1 213259 637 0.00 2019-12-28 14:52:39 2019-12-28 14:55:33 t 1 1 213266 773 0.00 2019-12-28 14:45:34 2019-12-28 15:04:18 t 1 1 213267 611 0.00 2019-12-28 14:20:17 2019-12-28 15:04:44 t 1 1 213274 637 0.00 2019-12-28 15:07:09 2019-12-28 15:15:22 t 1 1 213275 748 0.00 2019-12-28 15:10:09 2019-12-28 15:15:37 t 1 1 213278 758 0.00 2019-12-28 14:38:20 2019-12-28 15:19:43 t 1 1 213279 748 0.00 2019-12-28 15:20:14 2019-12-28 15:20:14 f 1 1 213282 675 0.00 2019-12-28 15:13:35 2019-12-28 15:20:24 t 1 1 213283 637 0.00 2019-12-28 15:15:22 2019-12-28 15:21:08 t 1 1 213287 748 0.00 2019-12-28 15:19:26 2019-12-28 15:24:30 t 1 1 213288 758 0.00 2019-12-28 15:25:21 2019-12-28 15:25:27 t 1 1 213289 683 0.00 2019-12-28 15:24:30 2019-12-28 15:29:06 t 1 1 213291 683 0.00 2019-12-28 15:29:05 2019-12-28 15:30:25 t 1 1 213292 696 0.00 2019-12-28 15:27:58 2019-12-28 15:31:00 t 1 1 213295 562 0.00 2019-12-28 15:31:58 2019-12-28 15:34:55 t 1 1 213296 611 0.00 2019-12-28 15:27:06 2019-12-28 15:35:52 t 1 1 213299 611 0.00 2019-12-28 15:38:05 2019-12-28 15:38:43 t 1 1 213301 656 0.00 2019-12-28 14:57:51 2019-12-28 15:42:15 t 1 2 213302 683 0.00 2019-12-28 15:35:56 2019-12-28 15:42:45 t 1 1 213305 696 0.00 2019-12-28 15:31:00 2019-12-28 15:47:41 t 1 1 213306 637 0.00 2019-12-28 15:42:50 2019-12-28 15:48:39 t 1 1 213314 707 0.00 2019-12-28 15:32:53 2019-12-28 16:01:21 t 1 1 213315 562 0.00 2019-12-28 15:52:00 2019-12-28 16:02:54 t 1 1 213321 562 0.00 2019-12-28 16:08:48 2019-12-28 16:09:00 t 1 1 213325 562 0.00 2019-12-28 16:12:36 2019-12-28 16:13:15 t 1 1 213329 667 0.00 2019-12-28 16:14:14 2019-12-28 16:16:00 t 1 1 213333 498 0.00 2019-12-28 16:18:53 2019-12-28 16:18:53 f 1 4 213334 498 0.00 2019-12-28 16:19:04 2019-12-28 16:19:04 f 1 4 213337 498 0.00 2019-12-28 16:19:27 2019-12-28 16:19:27 f 1 4 213339 498 0.00 2019-12-28 16:19:48 2019-12-28 16:19:48 f 1 4 213341 498 0.00 2019-12-28 16:20:14 2019-12-28 16:20:14 f 1 4 213345 566 0.00 2019-12-28 16:13:16 2019-12-28 16:21:09 t 1 1 213354 498 0.00 2019-12-28 16:20:58 2019-12-28 16:25:00 t 1 4 213355 485 0.00 2019-12-28 16:23:47 2019-12-28 16:25:33 t 1 1 213359 562 0.00 2019-12-28 16:29:56 2019-12-28 16:30:15 t 1 1 213360 591 0.00 2019-12-28 15:20:49 2019-12-28 16:30:39 t 1 1 213362 220 0.00 2019-12-28 15:53:22 2019-12-28 16:31:55 t 1 1 213363 730 0.00 2019-12-28 16:34:25 2019-12-28 16:34:29 t 1 1 213365 615 0.00 2019-12-28 16:24:58 2019-12-28 16:35:07 t 1 1 213368 631 0.00 2019-12-28 16:35:26 2019-12-28 16:36:34 t 1 1 213370 483 0.00 2019-12-28 16:22:31 2019-12-28 16:37:34 t 1 1 213371 637 0.00 2019-12-28 16:04:57 2019-12-28 16:38:39 t 1 1 213373 667 0.00 2019-12-28 16:40:01 2019-12-28 16:40:14 t 1 1 213376 709 0.00 2019-12-28 16:33:07 2019-12-28 16:42:04 t 1 1 213382 637 0.00 2019-12-28 16:38:39 2019-12-28 16:44:12 t 1 1 213383 498 0.00 2019-12-28 16:41:33 2019-12-28 16:45:34 t 1 4 213390 711 0.00 2019-12-28 16:29:50 2019-12-28 16:55:36 t 1 1 213392 637 0.00 2019-12-28 16:44:12 2019-12-28 16:56:40 t 1 1 213394 734 0.00 2019-12-28 16:52:10 2019-12-28 16:57:01 t 1 1 213407 763 0.00 2019-12-28 17:02:37 2019-12-28 17:08:22 t 1 1 213408 763 0.00 2019-12-28 17:08:21 2019-12-28 17:09:21 t 1 1 213409 562 0.00 2019-12-28 17:08:34 2019-12-28 17:10:25 t 1 1 213414 538 0.00 2019-12-28 16:17:30 2019-12-28 17:14:32 t 1 1 213416 763 0.00 2019-12-28 17:09:20 2019-12-28 17:15:20 t 1 1 213417 562 0.00 2019-12-28 17:15:24 2019-12-28 17:15:29 t 1 1 213423 763 0.00 2019-12-28 17:15:19 2019-12-28 17:21:42 t 1 1 213425 591 0.00 2019-12-28 17:07:34 2019-12-28 17:22:09 t 1 1 213429 763 0.00 2019-12-28 17:23:19 2019-12-28 17:24:50 t 1 1 213431 711 0.00 2019-12-28 17:23:31 2019-12-28 17:27:51 t 1 1 213434 763 0.00 2019-12-28 17:29:20 2019-12-28 17:32:30 t 1 1 213445 771 0.00 2019-12-28 17:37:01 2019-12-28 17:44:58 t 1 2 213456 538 0.00 2019-12-28 17:14:32 2019-12-28 17:52:55 t 1 1 213458 763 0.00 2019-12-28 17:50:56 2019-12-28 17:56:04 t 1 1 213460 498 0.00 2019-12-28 17:57:09 2019-12-28 17:57:09 f 1 2 213462 763 0.00 2019-12-28 17:56:04 2019-12-28 17:57:52 t 1 1 213475 637 0.00 2019-12-28 18:01:10 2019-12-28 18:07:56 t 1 1 213477 763 0.00 2019-12-28 18:01:59 2019-12-28 18:09:30 t 1 1 213481 683 0.00 2019-12-28 18:09:58 2019-12-28 18:13:28 t 1 1 213484 671 0.00 2019-12-28 18:11:41 2019-12-28 18:13:42 t 1 1 213488 683 0.00 2019-12-28 18:13:28 2019-12-28 18:14:35 t 1 1 213494 724 0.00 2019-12-28 18:23:11 2019-12-28 18:23:11 f 1 1 213496 724 0.00 2019-12-28 18:15:20 2019-12-28 18:23:27 t 1 1 213500 724 0.00 2019-12-28 13:52:36 2019-12-28 18:27:53 t 1 2 213506 615 0.00 2019-12-28 18:23:59 2019-12-28 18:34:00 t 1 1 213510 562 0.00 2019-12-28 18:36:08 2019-12-28 18:36:22 t 1 1 213521 637 0.00 2019-12-28 18:28:43 2019-12-28 18:49:16 t 1 1 213524 611 0.00 2019-12-28 18:50:05 2019-12-28 18:53:26 t 1 1 213530 615 0.00 2019-12-28 18:57:31 2019-12-28 18:59:14 t 1 1 213538 687 0.00 2019-12-28 18:50:24 2019-12-28 19:11:22 t 1 1 213540 711 0.00 2019-12-28 18:38:12 2019-12-28 19:15:24 t 1 1 213542 591 0.00 2019-12-28 19:13:58 2019-12-28 19:16:43 t 1 1 213545 696 0.00 2019-12-28 19:18:35 2019-12-28 19:20:08 t 1 1 213546 711 0.00 2019-12-28 19:15:24 2019-12-28 19:21:30 t 1 1 213550 562 0.00 2019-12-28 19:26:32 2019-12-28 19:26:57 t 1 1 213551 625 0.00 2019-12-28 19:18:29 2019-12-28 19:27:30 t 1 1 213554 687 0.00 2019-12-28 19:32:54 2019-12-28 19:33:51 t 1 1 213555 722 0.00 2019-12-28 19:27:17 2019-12-28 19:34:20 t 1 1 213556 722 0.00 2019-12-28 19:34:20 2019-12-28 19:34:50 t 1 1 213562 562 0.00 2019-12-28 19:37:49 2019-12-28 19:38:04 t 1 1 213450 611 0.00 2019-12-28 17:45:13 2019-12-28 17:49:12 t 1 1 213451 637 0.00 2019-12-28 17:42:01 2019-12-28 17:49:53 t 1 1 213453 763 0.00 2019-12-28 17:44:46 2019-12-28 17:50:56 t 1 1 213461 562 0.00 2019-12-28 17:57:03 2019-12-28 17:57:24 t 1 1 213464 498 0.00 2019-12-28 17:58:25 2019-12-28 17:58:25 f 1 4 213465 498 0.00 2019-12-28 17:59:16 2019-12-28 17:59:16 f 1 4 213467 498 0.00 2019-12-28 17:54:48 2019-12-28 17:59:59 t 1 1 213468 707 0.00 2019-12-28 17:51:52 2019-12-28 18:00:08 t 1 1 213470 637 0.00 2019-12-28 17:49:53 2019-12-28 18:00:45 t 1 1 213472 711 0.00 2019-12-28 17:56:44 2019-12-28 18:03:43 t 1 1 213474 562 0.00 2019-12-28 18:05:21 2019-12-28 18:06:34 t 1 1 213476 683 0.00 2019-12-28 17:12:38 2019-12-28 18:08:39 t 1 1 213479 763 0.00 2019-12-28 18:09:30 2019-12-28 18:11:01 t 1 1 213480 675 0.00 2019-12-28 18:00:00 2019-12-28 18:11:58 t 1 1 213482 771 0.00 2019-12-28 17:48:44 2019-12-28 18:13:32 t 1 2 213485 711 0.00 2019-12-28 18:03:43 2019-12-28 18:13:45 t 1 1 213486 687 0.00 2019-12-28 18:13:48 2019-12-28 18:13:52 t 1 1 213487 637 0.00 2019-12-28 18:07:56 2019-12-28 18:14:22 t 1 1 213489 562 0.00 2019-12-28 18:14:18 2019-12-28 18:14:41 t 1 1 213493 683 0.00 2019-12-28 18:14:35 2019-12-28 18:22:52 t 1 1 213495 611 0.00 2019-12-28 18:05:55 2019-12-28 18:23:22 t 1 1 213497 562 0.00 2019-12-28 18:25:08 2019-12-28 18:25:39 t 1 1 213499 637 0.00 2019-12-28 18:19:53 2019-12-28 18:26:21 t 1 1 213502 591 0.00 2019-12-28 17:23:48 2019-12-28 18:29:03 t 1 1 213504 681 0.00 2019-12-28 17:46:53 2019-12-28 18:30:00 t 1 1 213505 544 0.00 2019-12-28 18:21:54 2019-12-28 18:30:42 t 1 1 213507 675 0.00 2019-12-28 18:27:47 2019-12-28 18:35:52 t 1 1 213509 771 0.00 2019-12-28 18:29:29 2019-12-28 18:36:04 t 1 2 213512 625 0.00 2019-12-28 18:25:05 2019-12-28 18:38:14 t 1 1 213513 687 0.00 2019-12-28 18:14:05 2019-12-28 18:41:32 t 1 1 213514 775 0.00 2019-12-28 18:39:51 2019-12-28 18:41:50 t 1 1 213519 562 0.00 2019-12-28 18:46:42 2019-12-28 18:47:07 t 1 1 213522 615 0.00 2019-12-28 18:43:39 2019-12-28 18:50:51 t 1 1 213525 516 0.00 2019-12-28 18:51:24 2019-12-28 18:54:16 t 1 1 213528 498 0.00 2019-12-28 18:00:08 2019-12-28 18:56:13 t 1 2 213529 562 0.00 2019-12-28 18:57:38 2019-12-28 18:57:53 t 1 1 213531 591 0.00 2019-12-28 18:56:39 2019-12-28 18:59:20 t 1 1 213533 591 0.00 2019-12-28 19:01:06 2019-12-28 19:03:04 t 1 1 213534 675 0.00 2019-12-28 18:53:35 2019-12-28 19:03:54 t 1 1 213541 562 0.00 2019-12-28 19:16:01 2019-12-28 19:16:12 t 1 1 213543 625 0.00 2019-12-28 19:12:44 2019-12-28 19:16:54 t 1 1 213548 722 0.00 2019-12-28 19:23:59 2019-12-28 19:25:39 t 1 1 213549 711 0.00 2019-12-28 19:21:30 2019-12-28 19:26:40 t 1 1 213552 711 0.00 2019-12-28 19:26:40 2019-12-28 19:31:34 t 1 1 213559 625 0.00 2019-12-28 19:27:34 2019-12-28 19:36:55 t 1 1 213564 722 0.00 2019-12-28 19:38:32 2019-12-28 19:38:40 t 1 1 213570 675 0.00 2019-12-28 19:39:58 2019-12-28 19:41:13 t 1 1 213572 722 0.00 2019-12-28 19:42:01 2019-12-28 19:42:08 t 1 1 213573 722 0.00 2019-12-28 19:42:47 2019-12-28 19:42:49 t 1 1 213576 722 0.00 2019-12-28 19:44:37 2019-12-28 19:45:08 t 1 1 213578 681 0.00 2019-12-28 18:30:00 2019-12-28 19:46:35 t 1 1 213581 722 0.00 2019-12-28 19:47:56 2019-12-28 19:48:01 t 1 1 213582 562 0.00 2019-12-28 19:41:46 2019-12-28 19:48:07 t 1 1 213587 591 0.00 2019-12-28 19:47:40 2019-12-28 19:49:56 t 1 1 213589 625 0.00 2019-12-28 19:49:23 2019-12-28 19:50:31 t 1 1 213591 675 0.00 2019-12-28 19:45:58 2019-12-28 19:51:28 t 1 1 213593 687 0.00 2019-12-28 19:33:50 2019-12-28 19:56:50 t 1 1 213595 687 0.00 2019-12-28 19:57:01 2019-12-28 19:58:53 t 1 1 213598 538 0.00 2019-12-28 19:59:49 2019-12-28 20:00:09 t 1 1 213599 711 0.00 2019-12-28 19:48:44 2019-12-28 20:00:52 t 1 1 213601 562 0.00 2019-12-28 20:06:10 2019-12-28 20:06:45 t 1 1 213602 722 0.00 2019-12-28 19:48:17 2019-12-28 20:07:55 t 1 1 213603 700 0.00 2019-12-28 20:07:35 2019-12-28 20:12:29 t 1 1 213605 562 0.00 2019-12-28 20:11:44 2019-12-28 20:14:08 t 1 1 213606 611 0.00 2019-12-28 20:13:50 2019-12-28 20:15:26 t 1 1 213607 516 0.00 2019-12-28 20:13:14 2019-12-28 20:15:34 t 1 1 213609 625 0.00 2019-12-28 20:02:58 2019-12-28 20:15:41 t 1 1 213612 625 0.00 2019-12-28 20:15:41 2019-12-28 20:20:32 t 1 1 213617 562 0.00 2019-12-28 20:22:31 2019-12-28 20:23:26 t 1 1 213620 691 0.00 2019-12-28 20:25:30 2019-12-28 20:26:05 t 1 1 213621 691 0.00 2019-12-28 20:26:05 2019-12-28 20:26:32 t 1 1 213623 691 0.00 2019-12-28 20:26:32 2019-12-28 20:29:01 t 1 1 213626 220 0.00 2019-12-28 20:29:03 2019-12-28 20:29:39 t 1 1 213640 562 0.00 2019-12-28 20:33:14 2019-12-28 20:33:41 t 1 1 213642 220 0.00 2019-12-28 20:34:19 2019-12-28 20:34:53 t 1 1 213645 220 0.00 2019-12-28 20:35:29 2019-12-28 20:36:08 t 1 1 213648 220 0.00 2019-12-28 20:36:42 2019-12-28 20:37:17 t 1 1 213655 220 0.00 2019-12-28 20:40:14 2019-12-28 20:40:50 t 1 1 213656 562 0.00 2019-12-28 20:41:12 2019-12-28 20:41:40 t 1 1 213664 763 0.00 2019-12-28 20:40:35 2019-12-28 20:45:27 t 1 1 213665 722 0.00 2019-12-28 20:45:31 2019-12-28 20:45:45 t 1 1 213666 656 0.00 2019-12-28 20:27:58 2019-12-28 20:47:08 t 1 2 213673 562 0.00 2019-12-28 20:51:21 2019-12-28 20:53:08 t 1 1 213677 562 0.00 2019-12-28 20:53:53 2019-12-28 20:56:09 t 1 1 213681 779 0.00 2019-12-28 20:44:53 2019-12-28 20:58:27 t 1 1 213683 671 0.00 2019-12-28 20:53:13 2019-12-28 21:00:01 t 1 1 213684 736 0.00 2019-12-28 20:56:12 2019-12-28 21:02:33 t 1 1 213686 724 0.00 2019-12-28 20:38:20 2019-12-28 21:02:53 t 1 1 213687 656 0.00 2019-12-28 20:47:16 2019-12-28 21:03:11 t 1 1 213689 763 0.00 2019-12-28 21:02:10 2019-12-28 21:05:56 t 1 1 213690 732 0.00 2019-12-28 18:41:00 2019-12-28 21:07:13 t 1 1 213693 689 0.00 2019-12-28 21:04:03 2019-12-28 21:08:41 t 1 1 213698 763 0.00 2019-12-28 21:06:24 2019-12-28 21:10:43 t 1 1 213700 562 0.00 2019-12-28 21:11:14 2019-12-28 21:12:56 t 1 1 213701 615 0.00 2019-12-28 21:12:09 2019-12-28 21:13:40 t 1 1 213703 562 0.00 2019-12-28 21:13:41 2019-12-28 21:14:12 t 1 1 213705 611 0.00 2019-12-28 21:04:37 2019-12-28 21:19:14 t 1 1 213707 562 0.00 2019-12-28 21:19:07 2019-12-28 21:23:36 t 1 1 213710 656 0.00 2019-12-28 21:03:11 2019-12-28 21:25:51 t 1 1 213718 562 0.00 2019-12-28 21:35:41 2019-12-28 21:37:17 t 1 1 213720 562 0.00 2019-12-28 21:37:52 2019-12-28 21:38:02 t 1 1 213723 736 0.00 2019-12-28 21:41:05 2019-12-28 21:42:40 t 1 1 213726 562 0.00 2019-12-28 21:40:32 2019-12-28 21:44:12 t 1 1 213727 656 0.00 2019-12-28 21:37:21 2019-12-28 21:46:08 t 1 1 213734 562 0.00 2019-12-28 21:49:01 2019-12-28 21:50:10 t 1 1 213739 656 0.00 2019-12-28 21:46:08 2019-12-28 21:56:37 t 1 1 213741 562 0.00 2019-12-28 21:57:31 2019-12-28 21:58:01 t 1 1 213544 675 0.00 2019-12-28 19:13:57 2019-12-28 19:17:08 t 1 1 213547 516 0.00 2019-12-28 19:13:13 2019-12-28 19:23:34 t 1 1 213553 700 0.00 2019-12-28 19:15:16 2019-12-28 19:33:11 t 1 1 213557 722 0.00 2019-12-28 19:34:56 2019-12-28 19:35:03 t 1 1 213558 722 0.00 2019-12-28 19:35:17 2019-12-28 19:36:03 t 1 1 213560 722 0.00 2019-12-28 19:36:07 2019-12-28 19:37:13 t 1 1 213561 700 0.00 2019-12-28 19:33:42 2019-12-28 19:37:55 t 1 1 213563 675 0.00 2019-12-28 19:36:14 2019-12-28 19:38:32 t 1 1 213568 722 0.00 2019-12-28 19:38:57 2019-12-28 19:40:04 t 1 1 213569 722 0.00 2019-12-28 19:40:32 2019-12-28 19:40:34 t 1 1 213571 722 0.00 2019-12-28 19:41:47 2019-12-28 19:41:55 t 1 1 213575 711 0.00 2019-12-28 19:39:09 2019-12-28 19:43:59 t 1 1 213577 722 0.00 2019-12-28 19:45:51 2019-12-28 19:45:58 t 1 1 213583 722 0.00 2019-12-28 19:48:07 2019-12-28 19:48:11 t 1 1 213584 562 0.00 2019-12-28 19:48:07 2019-12-28 19:48:37 t 1 1 213586 625 0.00 2019-12-28 19:43:43 2019-12-28 19:48:47 t 1 1 213590 691 0.00 2019-12-28 19:49:32 2019-12-28 19:50:47 t 1 1 213596 562 0.00 2019-12-28 19:58:37 2019-12-28 19:58:57 t 1 1 213597 538 0.00 2019-12-28 19:50:11 2019-12-28 19:59:30 t 1 1 213600 625 0.00 2019-12-28 19:50:31 2019-12-28 20:02:58 t 1 1 213604 611 0.00 2019-12-28 18:53:39 2019-12-28 20:13:44 t 1 1 213608 722 0.00 2019-12-28 20:07:55 2019-12-28 20:15:38 t 1 1 213610 562 0.00 2019-12-28 20:15:27 2019-12-28 20:16:33 t 1 1 213613 649 0.00 2019-12-28 19:47:25 2019-12-28 20:20:59 t 1 1 213615 631 0.00 2019-12-28 20:18:03 2019-12-28 20:21:39 t 1 1 213616 700 0.00 2019-12-28 20:12:40 2019-12-28 20:22:20 t 1 1 213619 591 0.00 2019-12-28 20:20:28 2019-12-28 20:24:24 t 1 1 213625 700 0.00 2019-12-28 20:23:23 2019-12-28 20:29:31 t 1 1 213627 777 0.00 2019-12-28 20:29:11 2019-12-28 20:29:39 t 1 1 213629 220 0.00 2019-12-28 20:29:39 2019-12-28 20:30:09 t 1 1 213630 220 0.00 2019-12-28 20:30:09 2019-12-28 20:30:48 t 1 1 213634 220 0.00 2019-12-28 20:31:19 2019-12-28 20:31:58 t 1 1 213636 779 0.00 2019-12-28 20:31:15 2019-12-28 20:32:05 t 1 1 213637 220 0.00 2019-12-28 20:31:58 2019-12-28 20:32:33 t 1 1 213638 220 0.00 2019-12-28 20:32:32 2019-12-28 20:33:06 t 1 1 213643 736 0.00 2019-12-28 20:25:46 2019-12-28 20:35:03 t 1 1 213644 220 0.00 2019-12-28 20:34:53 2019-12-28 20:35:30 t 1 1 213646 779 0.00 2019-12-28 20:32:46 2019-12-28 20:36:24 t 1 1 213647 220 0.00 2019-12-28 20:36:08 2019-12-28 20:36:42 t 1 1 213649 220 0.00 2019-12-28 20:37:17 2019-12-28 20:37:55 t 1 1 213650 220 0.00 2019-12-28 20:37:55 2019-12-28 20:38:26 t 1 1 213651 722 0.00 2019-12-28 20:31:59 2019-12-28 20:38:51 t 1 1 213652 220 0.00 2019-12-28 20:38:26 2019-12-28 20:39:05 t 1 1 213654 220 0.00 2019-12-28 20:39:38 2019-12-28 20:40:15 t 1 1 213659 538 0.00 2019-12-28 20:00:15 2019-12-28 20:43:10 t 1 1 213660 736 0.00 2019-12-28 20:44:19 2019-12-28 20:44:32 t 1 1 213662 722 0.00 2019-12-28 20:38:51 2019-12-28 20:44:46 t 1 1 213667 722 0.00 2019-12-28 20:46:27 2019-12-28 20:47:39 t 1 1 213669 711 0.00 2019-12-28 20:00:52 2019-12-28 20:49:22 t 1 1 213670 736 0.00 2019-12-28 20:47:12 2019-12-28 20:50:31 t 1 1 213672 736 0.00 2019-12-28 20:51:51 2019-12-28 20:52:12 t 1 1 213674 736 0.00 2019-12-28 20:53:32 2019-12-28 20:53:45 t 1 1 213679 722 0.00 2019-12-28 20:50:20 2019-12-28 20:57:07 t 1 1 213680 681 0.00 2019-12-28 19:46:35 2019-12-28 20:57:30 t 1 1 213685 562 0.00 2019-12-28 21:02:02 2019-12-28 21:02:40 t 1 1 213688 687 0.00 2019-12-28 20:52:01 2019-12-28 21:04:04 t 1 1 213691 220 0.00 2019-12-28 20:42:07 2019-12-28 21:07:21 t 1 1 213694 724 0.00 2019-12-28 21:02:53 2019-12-28 21:08:43 t 1 1 213695 683 0.00 2019-12-28 18:26:02 2019-12-28 21:10:02 t 1 1 213699 562 0.00 2019-12-28 21:02:50 2019-12-28 21:11:08 t 1 1 213704 562 0.00 2019-12-28 21:17:05 2019-12-28 21:18:52 t 1 1 213708 625 0.00 2019-12-28 20:31:31 2019-12-28 21:23:47 t 1 1 213709 562 0.00 2019-12-28 21:23:57 2019-12-28 21:24:11 t 1 1 213711 562 0.00 2019-12-28 21:24:32 2019-12-28 21:29:29 t 1 1 213712 736 0.00 2019-12-28 21:15:22 2019-12-28 21:30:50 t 1 1 213713 736 0.00 2019-12-28 21:32:13 2019-12-28 21:32:21 t 1 1 213715 562 0.00 2019-12-28 21:29:35 2019-12-28 21:35:33 t 1 1 213716 679 0.00 2019-12-28 21:35:50 2019-12-28 21:35:51 t 1 1 213717 736 0.00 2019-12-28 21:34:32 2019-12-28 21:36:24 t 1 1 213719 656 0.00 2019-12-28 21:25:51 2019-12-28 21:37:21 t 1 1 213721 736 0.00 2019-12-28 21:37:34 2019-12-28 21:38:03 t 1 1 213724 694 0.00 2019-12-28 20:15:50 2019-12-28 21:43:25 t 1 1 213729 736 0.00 2019-12-28 21:44:58 2019-12-28 21:46:50 t 1 1 213730 736 0.00 2019-12-28 21:47:12 2019-12-28 21:47:30 t 1 1 213731 562 0.00 2019-12-28 21:45:33 2019-12-28 21:48:29 t 1 1 213733 736 0.00 2019-12-28 21:48:49 2019-12-28 21:48:54 t 1 1 213735 736 0.00 2019-12-28 21:49:58 2019-12-28 21:50:26 t 1 1 213737 707 0.00 2019-12-28 19:03:22 2019-12-28 21:54:04 t 1 1 213738 675 0.00 2019-12-28 21:54:29 2019-12-28 21:55:59 t 1 1 213740 681 0.00 2019-12-28 20:57:30 2019-12-28 21:57:35 t 1 1 213743 736 0.00 2019-12-28 21:58:47 2019-12-28 21:59:01 t 1 1 213746 656 0.00 2019-12-28 21:59:16 2019-12-28 21:59:33 t 1 2 213747 736 0.00 2019-12-28 21:59:54 2019-12-28 21:59:58 t 1 1 213748 564 0.00 2019-12-28 16:06:38 2019-12-28 22:01:25 t 1 1 213750 679 0.00 2019-12-28 21:35:54 2019-12-28 22:06:23 t 1 1 213752 562 0.00 2019-12-28 22:08:20 2019-12-28 22:08:45 t 1 1 213754 220 0.00 2019-12-28 20:40:49 2019-12-28 22:12:54 t 1 1 213756 562 0.00 2019-12-28 22:12:11 2019-12-28 22:16:53 t 1 1 213762 736 0.00 2019-12-28 22:00:54 2019-12-28 22:27:46 t 1 1 213763 736 0.00 2019-12-28 22:28:12 2019-12-28 22:28:25 t 1 1 213764 736 0.00 2019-12-28 22:28:59 2019-12-28 22:29:12 t 1 1 213766 687 0.00 2019-12-28 22:09:54 2019-12-28 22:30:28 t 1 1 213776 779 0.00 2019-12-28 22:39:47 2019-12-28 22:40:03 t 1 1 213782 779 0.00 2019-12-28 22:44:50 2019-12-28 22:45:05 t 1 1 213790 687 0.00 2019-12-28 22:49:13 2019-12-28 22:54:42 t 1 1 213792 679 0.00 2019-12-28 22:30:21 2019-12-28 22:56:11 t 1 1 213794 660 0.00 2019-12-28 22:34:29 2019-12-28 23:01:14 t 1 1 213798 779 0.00 2019-12-28 23:03:54 2019-12-28 23:04:15 t 1 1 213800 779 0.00 2019-12-28 23:04:50 2019-12-28 23:05:20 t 1 1 213801 779 0.00 2019-12-28 23:05:31 2019-12-28 23:06:20 t 1 1 213806 681 0.00 2019-12-28 21:57:35 2019-12-28 23:08:02 t 1 1 213808 779 0.00 2019-12-28 23:08:22 2019-12-28 23:08:38 t 1 1 213809 779 0.00 2019-12-28 23:08:48 2019-12-28 23:09:05 t 1 1 213815 516 0.00 2019-12-28 23:06:37 2019-12-28 23:15:37 t 1 1 213819 779 0.00 2019-12-28 23:17:02 2019-12-28 23:17:18 t 1 1 213820 779 0.00 2019-12-28 23:17:28 2019-12-28 23:17:45 t 1 1 213832 487 0.00 2019-12-28 17:59:46 2019-12-28 23:24:43 t 1 2 213565 711 0.00 2019-12-28 19:31:34 2019-12-28 19:39:09 t 1 1 213566 722 0.00 2019-12-28 19:39:14 2019-12-28 19:39:16 t 1 1 213567 538 0.00 2019-12-28 19:33:57 2019-12-28 19:39:38 t 1 1 213574 625 0.00 2019-12-28 19:36:54 2019-12-28 19:43:40 t 1 1 213579 722 0.00 2019-12-28 19:47:07 2019-12-28 19:47:29 t 1 1 213580 700 0.00 2019-12-28 19:40:43 2019-12-28 19:47:57 t 1 1 213585 711 0.00 2019-12-28 19:43:59 2019-12-28 19:48:44 t 1 1 213588 538 0.00 2019-12-28 19:50:03 2019-12-28 19:50:06 t 1 1 213592 544 0.00 2019-12-28 19:21:31 2019-12-28 19:51:50 t 1 1 213594 675 0.00 2019-12-28 19:51:28 2019-12-28 19:57:09 t 1 1 213611 562 0.00 2019-12-28 20:16:41 2019-12-28 20:17:54 t 1 1 213614 611 0.00 2019-12-28 20:16:39 2019-12-28 20:21:08 t 1 1 213618 722 0.00 2019-12-28 20:15:38 2019-12-28 20:23:38 t 1 1 213622 220 0.00 2019-12-28 19:07:56 2019-12-28 20:28:29 t 1 1 213624 220 0.00 2019-12-28 20:28:28 2019-12-28 20:29:03 t 1 1 213628 675 0.00 2019-12-28 20:25:00 2019-12-28 20:30:05 t 1 1 213631 779 0.00 2019-12-28 20:29:19 2019-12-28 20:30:58 t 1 1 213632 220 0.00 2019-12-28 20:30:47 2019-12-28 20:31:20 t 1 1 213633 625 0.00 2019-12-28 20:22:44 2019-12-28 20:31:31 t 1 1 213635 722 0.00 2019-12-28 20:23:38 2019-12-28 20:31:59 t 1 1 213639 220 0.00 2019-12-28 20:33:05 2019-12-28 20:33:40 t 1 1 213641 220 0.00 2019-12-28 20:33:40 2019-12-28 20:34:19 t 1 1 213653 220 0.00 2019-12-28 20:39:04 2019-12-28 20:39:39 t 1 1 213657 736 0.00 2019-12-28 20:40:21 2019-12-28 20:42:11 t 1 1 213658 736 0.00 2019-12-28 20:42:34 2019-12-28 20:42:54 t 1 1 213661 779 0.00 2019-12-28 20:44:13 2019-12-28 20:44:44 t 1 1 213663 722 0.00 2019-12-28 20:44:52 2019-12-28 20:45:00 t 1 1 213668 675 0.00 2019-12-28 20:44:46 2019-12-28 20:47:48 t 1 1 213671 687 0.00 2019-12-28 20:38:49 2019-12-28 20:51:11 t 1 1 213675 726 0.00 2019-12-28 20:37:21 2019-12-28 20:54:31 t 1 1 213676 736 0.00 2019-12-28 20:55:04 2019-12-28 20:55:47 t 1 1 213678 516 0.00 2019-12-28 20:44:47 2019-12-28 20:56:25 t 1 1 213682 675 0.00 2019-12-28 20:57:24 2019-12-28 20:59:55 t 1 1 213692 591 0.00 2019-12-28 20:58:32 2019-12-28 21:07:21 t 1 1 213696 736 0.00 2019-12-28 21:02:58 2019-12-28 21:10:08 t 1 1 213697 683 0.00 2019-12-28 21:10:21 2019-12-28 21:10:36 t 1 1 213702 562 0.00 2019-12-28 21:13:02 2019-12-28 21:14:05 t 1 1 213706 675 0.00 2019-12-28 21:19:15 2019-12-28 21:20:58 t 1 1 213714 736 0.00 2019-12-28 21:32:46 2019-12-28 21:34:00 t 1 1 213722 736 0.00 2019-12-28 21:38:10 2019-12-28 21:40:59 t 1 1 213725 736 0.00 2019-12-28 21:43:30 2019-12-28 21:43:41 t 1 1 213728 775 0.00 2019-12-28 18:42:15 2019-12-28 21:46:26 t 1 1 213732 736 0.00 2019-12-28 21:48:19 2019-12-28 21:48:35 t 1 1 213736 736 0.00 2019-12-28 21:50:42 2019-12-28 21:52:17 t 1 1 213742 736 0.00 2019-12-28 21:55:16 2019-12-28 21:58:28 t 1 1 213744 687 0.00 2019-12-28 21:16:33 2019-12-28 21:59:12 t 1 1 213751 591 0.00 2019-12-28 21:07:25 2019-12-28 22:06:58 t 1 1 213753 679 0.00 2019-12-28 22:06:23 2019-12-28 22:09:02 t 1 1 213757 562 0.00 2019-12-28 22:19:06 2019-12-28 22:19:21 t 1 1 213759 481 0.00 2019-12-28 21:53:20 2019-12-28 22:21:23 t 1 1 213761 611 0.00 2019-12-28 21:35:52 2019-12-28 22:24:51 t 1 1 213770 687 0.00 2019-12-28 22:30:31 2019-12-28 22:33:13 t 1 1 213772 736 0.00 2019-12-28 22:29:23 2019-12-28 22:34:01 t 1 1 213773 660 0.00 2019-12-28 20:49:51 2019-12-28 22:34:29 t 1 1 213774 779 0.00 2019-12-28 22:34:46 2019-12-28 22:36:55 t 1 1 213775 779 0.00 2019-12-28 22:37:03 2019-12-28 22:37:56 t 1 1 213777 562 0.00 2019-12-28 22:40:12 2019-12-28 22:41:08 t 1 1 213778 779 0.00 2019-12-28 22:41:40 2019-12-28 22:42:15 t 1 1 213779 564 0.00 2019-12-28 22:27:55 2019-12-28 22:43:46 t 1 1 213781 779 0.00 2019-12-28 22:44:24 2019-12-28 22:44:39 t 1 1 213785 736 0.00 2019-12-28 22:35:26 2019-12-28 22:48:46 t 1 1 213787 656 0.00 2019-12-28 22:32:42 2019-12-28 22:50:53 t 1 1 213793 656 0.00 2019-12-28 22:50:53 2019-12-28 23:00:18 t 1 1 213795 562 0.00 2019-12-28 23:01:42 2019-12-28 23:02:14 t 1 1 213796 779 0.00 2019-12-28 23:02:40 2019-12-28 23:03:16 t 1 1 213797 779 0.00 2019-12-28 23:03:26 2019-12-28 23:03:43 t 1 1 213799 779 0.00 2019-12-28 23:04:25 2019-12-28 23:04:40 t 1 1 213802 591 0.00 2019-12-28 22:53:28 2019-12-28 23:06:26 t 1 1 213804 779 0.00 2019-12-28 23:06:56 2019-12-28 23:07:13 t 1 1 213805 779 0.00 2019-12-28 23:07:23 2019-12-28 23:07:43 t 1 1 213812 679 0.00 2019-12-28 22:56:11 2019-12-28 23:12:28 t 1 1 213813 562 0.00 2019-12-28 23:12:39 2019-12-28 23:13:00 t 1 1 213817 779 0.00 2019-12-28 23:16:09 2019-12-28 23:16:25 t 1 1 213818 779 0.00 2019-12-28 23:16:36 2019-12-28 23:16:52 t 1 1 213823 779 0.00 2019-12-28 23:18:50 2019-12-28 23:19:07 t 1 1 213825 696 0.00 2019-12-28 22:40:09 2019-12-28 23:19:57 t 1 1 213830 562 0.00 2019-12-28 23:23:26 2019-12-28 23:23:36 t 1 1 213833 732 0.00 2019-12-28 22:30:26 2019-12-28 23:24:54 t 1 1 213836 779 0.00 2019-12-28 23:25:12 2019-12-28 23:26:09 t 1 1 213837 779 0.00 2019-12-28 23:26:19 2019-12-28 23:26:42 t 1 1 213841 679 0.00 2019-12-28 23:25:58 2019-12-28 23:29:02 t 1 1 213843 516 0.00 2019-12-28 23:24:15 2019-12-28 23:30:17 t 1 1 213844 679 0.00 2019-12-28 23:29:35 2019-12-28 23:30:32 t 1 1 213853 779 0.00 2019-12-28 23:34:06 2019-12-28 23:34:22 t 1 1 213858 779 0.00 2019-12-28 23:36:01 2019-12-28 23:36:18 t 1 1 213861 694 0.00 2019-12-28 21:43:25 2019-12-28 23:39:53 t 1 1 213867 220 0.00 2019-12-28 23:39:26 2019-12-28 23:46:37 t 1 1 213870 687 0.00 2019-12-28 23:08:33 2019-12-28 23:55:25 t 1 1 213872 779 0.00 2019-12-28 23:36:28 2019-12-28 23:57:15 t 1 1 213873 779 0.00 2019-12-28 23:57:25 2019-12-28 23:57:41 t 1 1 213881 777 0.00 2019-12-29 00:11:08 2019-12-29 00:11:22 t 1 1 213882 777 0.00 2019-12-29 00:11:34 2019-12-29 00:11:57 t 1 1 213887 562 0.00 2019-12-29 00:17:21 2019-12-29 00:17:50 t 1 1 213889 516 0.00 2019-12-29 00:12:17 2019-12-29 00:19:27 t 1 1 213895 687 0.00 2019-12-28 23:59:17 2019-12-29 00:29:06 t 1 1 213899 679 0.00 2019-12-29 00:20:01 2019-12-29 00:35:03 t 1 1 213904 562 0.00 2019-12-29 00:46:50 2019-12-29 00:46:59 t 1 1 213907 773 0.00 2019-12-29 00:20:00 2019-12-29 00:50:34 t 1 1 213915 687 0.00 2019-12-29 00:54:27 2019-12-29 01:02:02 t 1 1 213918 562 0.00 2019-12-29 01:08:14 2019-12-29 01:08:25 t 1 1 213924 675 0.00 2019-12-29 01:28:53 2019-12-29 01:36:25 t 1 1 213928 637 0.00 2019-12-29 01:36:48 2019-12-29 01:42:48 t 1 1 213930 503 0.00 2019-12-29 01:35:39 2019-12-29 01:49:30 t 1 1 213931 562 0.00 2019-12-29 01:50:48 2019-12-29 01:51:01 t 1 1 213932 562 0.00 2019-12-29 01:56:08 2019-12-29 01:56:32 t 1 1 213939 687 0.00 2019-12-29 01:39:54 2019-12-29 02:24:13 t 1 1 213943 637 0.00 2019-12-29 02:26:03 2019-12-29 02:32:33 t 1 1 213745 656 0.00 2019-12-28 21:56:37 2019-12-28 21:59:14 t 1 1 213749 483 0.00 2019-12-28 21:52:33 2019-12-28 22:03:43 t 1 1 213755 656 0.00 2019-12-28 21:59:35 2019-12-28 22:13:25 t 1 1 213758 220 0.00 2019-12-28 22:12:54 2019-12-28 22:21:01 t 1 1 213760 564 0.00 2019-12-28 22:01:25 2019-12-28 22:22:26 t 1 1 213765 562 0.00 2019-12-28 22:29:47 2019-12-28 22:30:07 t 1 1 213767 779 0.00 2019-12-28 22:06:47 2019-12-28 22:31:15 t 1 1 213768 220 0.00 2019-12-28 22:21:01 2019-12-28 22:31:54 t 1 1 213769 656 0.00 2019-12-28 22:13:25 2019-12-28 22:32:42 t 1 1 213771 779 0.00 2019-12-28 22:31:37 2019-12-28 22:33:22 t 1 1 213780 220 0.00 2019-12-28 22:31:54 2019-12-28 22:43:53 t 1 1 213783 779 0.00 2019-12-28 22:45:16 2019-12-28 22:45:17 t 1 1 213784 779 0.00 2019-12-28 22:45:26 2019-12-28 22:45:40 t 1 1 213786 779 0.00 2019-12-28 22:46:27 2019-12-28 22:50:17 t 1 1 213788 562 0.00 2019-12-28 22:51:28 2019-12-28 22:52:04 t 1 1 213789 591 0.00 2019-12-28 22:06:58 2019-12-28 22:53:28 t 1 1 213791 220 0.00 2019-12-28 22:43:53 2019-12-28 22:56:03 t 1 1 213803 779 0.00 2019-12-28 23:06:30 2019-12-28 23:06:47 t 1 1 213807 779 0.00 2019-12-28 23:07:54 2019-12-28 23:08:12 t 1 1 213810 667 0.00 2019-12-28 23:09:04 2019-12-28 23:09:20 t 1 1 213811 779 0.00 2019-12-28 23:09:15 2019-12-28 23:09:31 t 1 1 213814 591 0.00 2019-12-28 23:15:18 2019-12-28 23:15:35 t 1 1 213816 779 0.00 2019-12-28 23:09:41 2019-12-28 23:15:59 t 1 1 213821 779 0.00 2019-12-28 23:17:56 2019-12-28 23:18:13 t 1 1 213822 779 0.00 2019-12-28 23:18:23 2019-12-28 23:18:39 t 1 1 213824 779 0.00 2019-12-28 23:19:17 2019-12-28 23:19:33 t 1 1 213826 779 0.00 2019-12-28 23:19:43 2019-12-28 23:20:05 t 1 1 213827 779 0.00 2019-12-28 23:20:16 2019-12-28 23:20:35 t 1 1 213828 625 0.00 2019-12-28 21:23:47 2019-12-28 23:22:03 t 1 1 213829 637 0.00 2019-12-28 23:15:32 2019-12-28 23:22:47 t 1 1 213831 516 0.00 2019-12-28 23:15:37 2019-12-28 23:24:15 t 1 1 213834 779 0.00 2019-12-28 23:20:44 2019-12-28 23:25:01 t 1 1 213835 679 0.00 2019-12-28 23:12:28 2019-12-28 23:25:51 t 1 1 213847 779 0.00 2019-12-28 23:31:50 2019-12-28 23:32:06 t 1 1 213848 779 0.00 2019-12-28 23:32:16 2019-12-28 23:33:04 t 1 1 213849 779 0.00 2019-12-28 23:33:14 2019-12-28 23:33:30 t 1 1 213854 779 0.00 2019-12-28 23:34:32 2019-12-28 23:34:48 t 1 1 213855 562 0.00 2019-12-28 23:35:04 2019-12-28 23:35:13 t 1 1 213857 779 0.00 2019-12-28 23:35:25 2019-12-28 23:35:51 t 1 1 213859 625 0.00 2019-12-28 23:22:03 2019-12-28 23:37:36 t 1 1 213863 481 0.00 2019-12-28 22:21:35 2019-12-28 23:42:44 t 1 1 213866 562 0.00 2019-12-28 23:45:37 2019-12-28 23:45:47 t 1 1 213875 514 0.00 2019-12-28 23:22:48 2019-12-28 23:58:55 t 1 1 213876 777 0.00 2019-12-29 00:00:33 2019-12-29 00:04:42 t 1 1 213879 637 0.00 2019-12-28 23:54:06 2019-12-29 00:10:19 t 1 1 213880 777 0.00 2019-12-29 00:09:11 2019-12-29 00:10:44 t 1 1 213885 679 0.00 2019-12-28 23:30:43 2019-12-29 00:14:30 t 1 1 213886 637 0.00 2019-12-29 00:10:19 2019-12-29 00:17:03 t 1 1 213891 777 0.00 2019-12-29 00:12:05 2019-12-29 00:22:13 t 1 1 213893 562 0.00 2019-12-29 00:25:35 2019-12-29 00:25:49 t 1 1 213897 516 0.00 2019-12-29 00:19:27 2019-12-29 00:31:42 t 1 1 213898 720 0.00 2019-12-29 00:04:28 2019-12-29 00:35:01 t 1 1 213900 566 0.00 2019-12-29 00:25:48 2019-12-29 00:36:22 t 1 1 213906 625 0.00 2019-12-28 23:52:30 2019-12-29 00:48:23 t 1 1 213908 744 0.00 2019-12-29 00:13:48 2019-12-29 00:53:38 t 1 1 213910 744 0.00 2019-12-29 00:53:38 2019-12-29 00:54:39 t 1 1 213913 562 0.00 2019-12-29 00:57:14 2019-12-29 00:57:41 t 1 1 213919 562 0.00 2019-12-29 01:18:51 2019-12-29 01:19:05 t 1 1 213920 773 0.00 2019-12-29 01:21:35 2019-12-29 01:22:18 t 1 1 213921 503 0.00 2019-12-29 01:18:10 2019-12-29 01:22:56 t 1 1 213929 538 0.00 2019-12-29 01:24:36 2019-12-29 01:46:44 t 1 1 213933 562 0.00 2019-12-29 01:58:00 2019-12-29 01:58:26 t 1 1 213935 516 0.00 2019-12-29 01:56:57 2019-12-29 02:07:36 t 1 1 213936 516 0.00 2019-12-29 02:07:36 2019-12-29 02:11:24 t 1 1 213937 562 0.00 2019-12-29 02:12:04 2019-12-29 02:12:15 t 1 1 213938 562 0.00 2019-12-29 02:22:43 2019-12-29 02:22:53 t 1 1 213941 687 0.00 2019-12-29 02:24:13 2019-12-29 02:26:09 t 1 1 213944 562 0.00 2019-12-29 02:33:09 2019-12-29 02:33:39 t 1 1 213947 562 0.00 2019-12-29 02:43:16 2019-12-29 02:43:29 t 1 1 213949 675 0.00 2019-12-29 02:45:03 2019-12-29 02:47:30 t 1 1 213952 687 0.00 2019-12-29 02:50:47 2019-12-29 02:59:25 t 1 1 213954 675 0.00 2019-12-29 03:07:46 2019-12-29 03:10:00 t 1 1 213955 562 0.00 2019-12-29 03:14:41 2019-12-29 03:16:13 t 1 1 213956 562 0.00 2019-12-29 03:26:32 2019-12-29 03:26:58 t 1 1 213960 675 0.00 2019-12-29 03:40:43 2019-12-29 03:44:35 t 1 1 213961 562 0.00 2019-12-29 03:45:10 2019-12-29 03:46:20 t 1 1 213963 562 0.00 2019-12-29 04:03:30 2019-12-29 04:03:56 t 1 1 213967 637 0.00 2019-12-29 03:42:35 2019-12-29 04:37:03 t 1 1 213971 562 0.00 2019-12-29 04:50:02 2019-12-29 04:50:12 t 1 1 213977 637 0.00 2019-12-29 05:10:55 2019-12-29 05:30:16 t 1 1 213978 562 0.00 2019-12-29 05:34:36 2019-12-29 05:35:00 t 1 1 213982 637 0.00 2019-12-29 05:36:18 2019-12-29 05:47:11 t 1 1 213984 562 0.00 2019-12-29 05:56:04 2019-12-29 05:56:31 t 1 1 213985 637 0.00 2019-12-29 05:53:42 2019-12-29 06:00:41 t 1 1 213988 637 0.00 2019-12-29 06:00:41 2019-12-29 06:10:29 t 1 1 213990 562 0.00 2019-12-29 06:17:34 2019-12-29 06:17:58 t 1 1 213999 722 0.00 2019-12-29 06:35:11 2019-12-29 06:35:18 t 1 1 214004 637 0.00 2019-12-29 06:40:53 2019-12-29 06:52:58 t 1 1 214006 516 0.00 2019-12-29 06:49:30 2019-12-29 06:57:22 t 1 1 214008 566 0.00 2019-12-29 06:41:59 2019-12-29 07:02:05 t 1 1 214014 637 0.00 2019-12-29 07:10:06 2019-12-29 07:15:21 t 1 1 214015 611 0.00 2019-12-29 06:42:00 2019-12-29 07:16:18 t 1 1 214020 481 0.00 2019-12-29 07:37:21 2019-12-29 07:38:05 t 1 1 214031 538 0.00 2019-12-29 07:45:10 2019-12-29 07:49:19 t 1 1 214036 637 0.00 2019-12-29 07:47:57 2019-12-29 07:57:22 t 1 1 214037 689 0.00 2019-12-29 07:48:09 2019-12-29 07:57:29 t 1 1 214043 689 0.00 2019-12-29 07:57:29 2019-12-29 08:05:01 t 1 1 214047 744 0.00 2019-12-29 08:02:55 2019-12-29 08:11:33 t 1 1 214050 627 0.00 2019-12-29 08:04:23 2019-12-29 08:15:10 t 1 1 214051 566 0.00 2019-12-29 07:56:55 2019-12-29 08:18:30 t 1 1 214054 779 0.00 2019-12-29 08:19:37 2019-12-29 08:24:20 t 1 1 214055 562 0.00 2019-12-29 08:27:01 2019-12-29 08:27:15 t 1 1 214057 637 0.00 2019-12-29 08:21:28 2019-12-29 08:29:25 t 1 1 214065 566 0.00 2019-12-29 08:41:41 2019-12-29 08:43:59 t 1 1 214074 498 0.00 2019-12-29 08:59:07 2019-12-29 08:59:07 f 1 2 214077 722 0.00 2019-12-29 09:01:12 2019-12-29 09:01:26 t 1 1 214079 679 0.00 2019-12-29 08:56:25 2019-12-29 09:04:19 t 1 1 213838 779 0.00 2019-12-28 23:26:53 2019-12-28 23:27:16 t 1 1 213839 779 0.00 2019-12-28 23:27:28 2019-12-28 23:28:09 t 1 1 213840 779 0.00 2019-12-28 23:28:19 2019-12-28 23:28:40 t 1 1 213842 679 0.00 2019-12-28 23:29:08 2019-12-28 23:29:23 t 1 1 213845 538 0.00 2019-12-28 20:43:10 2019-12-28 23:31:20 t 1 1 213846 779 0.00 2019-12-28 23:30:26 2019-12-28 23:31:40 t 1 1 213850 637 0.00 2019-12-28 23:22:47 2019-12-28 23:33:33 t 1 1 213851 779 0.00 2019-12-28 23:33:40 2019-12-28 23:33:56 t 1 1 213852 562 0.00 2019-12-28 23:34:04 2019-12-28 23:34:16 t 1 1 213856 779 0.00 2019-12-28 23:34:58 2019-12-28 23:35:14 t 1 1 213860 516 0.00 2019-12-28 23:35:39 2019-12-28 23:39:49 t 1 1 213862 516 0.00 2019-12-28 23:39:48 2019-12-28 23:42:15 t 1 1 213864 637 0.00 2019-12-28 23:33:33 2019-12-28 23:45:17 t 1 1 213865 544 0.00 2019-12-28 23:35:19 2019-12-28 23:45:32 t 1 1 213868 625 0.00 2019-12-28 23:37:37 2019-12-28 23:52:30 t 1 1 213869 637 0.00 2019-12-28 23:45:17 2019-12-28 23:54:06 t 1 1 213871 562 0.00 2019-12-28 23:56:21 2019-12-28 23:56:32 t 1 1 213874 516 0.00 2019-12-28 23:42:14 2019-12-28 23:58:44 t 1 1 213877 562 0.00 2019-12-29 00:06:55 2019-12-29 00:07:05 t 1 1 213878 681 0.00 2019-12-28 23:08:02 2019-12-29 00:10:17 t 1 1 213883 516 0.00 2019-12-28 23:58:44 2019-12-29 00:12:17 t 1 1 213884 544 0.00 2019-12-28 23:56:09 2019-12-29 00:13:23 t 1 1 213888 773 0.00 2019-12-29 00:17:38 2019-12-29 00:18:28 t 1 1 213890 707 0.00 2019-12-28 22:25:22 2019-12-29 00:21:04 t 1 1 213892 566 0.00 2019-12-29 00:03:52 2019-12-29 00:25:48 t 1 1 213894 538 0.00 2019-12-28 23:31:24 2019-12-29 00:28:27 t 1 1 213896 671 0.00 2019-12-29 00:20:20 2019-12-29 00:30:37 t 1 1 213901 562 0.00 2019-12-29 00:36:11 2019-12-29 00:36:26 t 1 1 213902 516 0.00 2019-12-29 00:31:42 2019-12-29 00:44:28 t 1 1 213903 679 0.00 2019-12-29 00:35:55 2019-12-29 00:46:13 t 1 1 213905 637 0.00 2019-12-29 00:17:03 2019-12-29 00:47:30 t 1 1 213909 687 0.00 2019-12-29 00:30:17 2019-12-29 00:54:27 t 1 1 213911 637 0.00 2019-12-29 00:47:30 2019-12-29 00:54:42 t 1 1 213912 562 0.00 2019-12-29 00:55:03 2019-12-29 00:55:13 t 1 1 213914 679 0.00 2019-12-29 00:46:13 2019-12-29 00:59:59 t 1 1 213916 671 0.00 2019-12-29 01:00:42 2019-12-29 01:02:08 t 1 1 213917 516 0.00 2019-12-29 00:44:28 2019-12-29 01:03:28 t 1 1 213922 562 0.00 2019-12-29 01:29:29 2019-12-29 01:29:37 t 1 1 213923 503 0.00 2019-12-29 01:22:55 2019-12-29 01:35:39 t 1 1 213925 637 0.00 2019-12-29 00:54:42 2019-12-29 01:36:48 t 1 1 213926 687 0.00 2019-12-29 01:02:02 2019-12-29 01:39:46 t 1 1 213927 562 0.00 2019-12-29 01:40:03 2019-12-29 01:40:21 t 1 1 213934 562 0.00 2019-12-29 02:01:30 2019-12-29 02:01:40 t 1 1 213940 637 0.00 2019-12-29 01:42:48 2019-12-29 02:26:03 t 1 1 213942 656 0.00 2019-12-28 23:01:21 2019-12-29 02:29:53 t 1 1 213945 562 0.00 2019-12-29 02:39:51 2019-12-29 02:40:00 t 1 1 213946 687 0.00 2019-12-29 02:27:10 2019-12-29 02:41:28 t 1 1 213951 562 0.00 2019-12-29 02:54:43 2019-12-29 02:54:57 t 1 1 213959 637 0.00 2019-12-29 03:36:49 2019-12-29 03:42:35 t 1 1 213962 562 0.00 2019-12-29 03:52:50 2019-12-29 03:53:12 t 1 1 213964 562 0.00 2019-12-29 04:14:27 2019-12-29 04:14:43 t 1 1 213965 562 0.00 2019-12-29 04:25:05 2019-12-29 04:25:28 t 1 1 213968 562 0.00 2019-12-29 04:42:14 2019-12-29 04:42:32 t 1 1 213972 637 0.00 2019-12-29 04:43:19 2019-12-29 05:04:43 t 1 1 213974 742 0.00 2019-12-29 05:09:42 2019-12-29 05:10:59 t 1 1 213979 694 0.00 2019-12-28 23:39:53 2019-12-29 05:35:00 t 1 1 213980 637 0.00 2019-12-29 05:30:16 2019-12-29 05:36:18 t 1 1 213981 562 0.00 2019-12-29 05:45:29 2019-12-29 05:45:44 t 1 1 213983 637 0.00 2019-12-29 05:47:11 2019-12-29 05:53:42 t 1 1 213992 722 0.00 2019-12-29 06:19:14 2019-12-29 06:23:10 t 1 1 213995 637 0.00 2019-12-29 06:18:43 2019-12-29 06:29:01 t 1 1 213997 562 0.00 2019-12-29 06:33:14 2019-12-29 06:33:37 t 1 1 213998 722 0.00 2019-12-29 06:33:30 2019-12-29 06:35:09 t 1 1 214002 722 0.00 2019-12-29 06:39:55 2019-12-29 06:41:11 t 1 1 214010 566 0.00 2019-12-29 07:02:05 2019-12-29 07:03:11 t 1 1 214012 562 0.00 2019-12-29 07:05:40 2019-12-29 07:06:02 t 1 1 214013 637 0.00 2019-12-29 07:05:37 2019-12-29 07:10:06 t 1 1 214017 637 0.00 2019-12-29 07:15:22 2019-12-29 07:27:45 t 1 1 214018 722 0.00 2019-12-29 07:31:12 2019-12-29 07:32:35 t 1 1 214019 562 0.00 2019-12-29 07:36:56 2019-12-29 07:37:57 t 1 1 214021 694 0.00 2019-12-29 05:35:00 2019-12-29 07:38:22 t 1 1 214022 481 0.00 2019-12-29 07:38:05 2019-12-29 07:39:14 t 1 1 214025 611 0.00 2019-12-29 07:26:12 2019-12-29 07:41:54 t 1 1 214026 538 0.00 2019-12-29 07:41:43 2019-12-29 07:45:10 t 1 1 214027 562 0.00 2019-12-29 07:47:22 2019-12-29 07:47:44 t 1 1 214032 734 0.00 2019-12-29 07:51:22 2019-12-29 07:54:00 t 1 1 214034 566 0.00 2019-12-29 07:54:44 2019-12-29 07:56:55 t 1 1 214041 627 0.00 2019-12-29 08:02:31 2019-12-29 08:04:09 t 1 1 214044 637 0.00 2019-12-29 07:57:22 2019-12-29 08:06:31 t 1 1 214046 562 0.00 2019-12-29 08:08:17 2019-12-29 08:08:37 t 1 1 214058 566 0.00 2019-12-29 08:27:20 2019-12-29 08:31:48 t 1 1 214059 681 0.00 2019-12-29 07:22:17 2019-12-29 08:35:41 t 1 1 214062 775 0.00 2019-12-29 07:58:55 2019-12-29 08:39:12 t 1 1 214067 562 0.00 2019-12-29 08:45:56 2019-12-29 08:46:13 t 1 1 214068 689 0.00 2019-12-29 08:12:25 2019-12-29 08:46:56 t 1 1 214071 566 0.00 2019-12-29 08:45:47 2019-12-29 08:52:23 t 1 1 214073 538 0.00 2019-12-29 08:54:32 2019-12-29 08:57:18 t 1 1 214075 498 0.00 2019-12-29 08:59:37 2019-12-29 08:59:37 f 1 2 214080 694 0.00 2019-12-29 09:02:05 2019-12-29 09:11:56 t 1 1 214081 694 0.00 2019-12-29 09:12:36 2019-12-29 09:12:44 t 1 1 214082 591 0.00 2019-12-29 08:01:14 2019-12-29 09:13:03 t 1 1 214083 615 0.00 2019-12-29 09:04:48 2019-12-29 09:13:04 t 1 1 214086 516 0.00 2019-12-29 09:13:05 2019-12-29 09:15:51 t 1 1 214087 675 0.00 2019-12-29 09:15:37 2019-12-29 09:16:50 t 1 1 214089 728 0.00 2019-12-29 09:21:00 2019-12-29 09:21:08 t 1 4 214090 649 0.00 2019-12-29 09:07:43 2019-12-29 09:22:12 t 1 1 214093 728 0.00 2019-12-29 09:31:39 2019-12-29 09:31:49 t 1 4 214094 777 0.00 2019-12-29 09:29:29 2019-12-29 09:33:35 t 1 1 214097 728 0.00 2019-12-29 09:42:06 2019-12-29 09:42:14 t 1 4 214099 671 0.00 2019-12-29 09:37:33 2019-12-29 09:43:25 t 1 1 214101 566 0.00 2019-12-29 09:43:27 2019-12-29 09:47:19 t 1 1 214102 671 0.00 2019-12-29 09:43:24 2019-12-29 09:48:37 t 1 1 214103 562 0.00 2019-12-29 09:45:54 2019-12-29 09:50:08 t 1 1 214105 779 0.00 2019-12-29 09:46:49 2019-12-29 09:52:22 t 1 1 214106 516 0.00 2019-12-29 09:52:12 2019-12-29 09:52:32 t 1 1 214107 779 0.00 2019-12-29 09:52:32 2019-12-29 09:52:47 t 1 1 214108 671 0.00 2019-12-29 09:48:36 2019-12-29 09:52:53 t 1 1 213948 562 0.00 2019-12-29 02:43:51 2019-12-29 02:44:16 t 1 1 213950 687 0.00 2019-12-29 02:41:28 2019-12-29 02:50:44 t 1 1 213953 562 0.00 2019-12-29 03:05:20 2019-12-29 03:05:34 t 1 1 213957 637 0.00 2019-12-29 02:32:33 2019-12-29 03:36:49 t 1 1 213958 562 0.00 2019-12-29 03:36:49 2019-12-29 03:37:34 t 1 1 213966 562 0.00 2019-12-29 04:31:36 2019-12-29 04:32:38 t 1 1 213969 637 0.00 2019-12-29 04:37:03 2019-12-29 04:43:19 t 1 1 213970 675 0.00 2019-12-29 04:35:05 2019-12-29 04:43:41 t 1 1 213973 637 0.00 2019-12-29 05:04:43 2019-12-29 05:10:55 t 1 1 213975 562 0.00 2019-12-29 05:24:08 2019-12-29 05:24:17 t 1 1 213976 675 0.00 2019-12-29 05:23:13 2019-12-29 05:27:27 t 1 1 213986 485 0.00 2019-12-29 05:56:05 2019-12-29 06:03:28 t 1 1 213987 562 0.00 2019-12-29 06:06:55 2019-12-29 06:07:17 t 1 1 213989 516 0.00 2019-12-29 06:10:27 2019-12-29 06:14:06 t 1 1 213991 637 0.00 2019-12-29 06:10:29 2019-12-29 06:18:43 t 1 1 213993 220 0.00 2019-12-29 05:22:49 2019-12-29 06:26:20 t 1 2 213994 516 0.00 2019-12-29 06:24:36 2019-12-29 06:28:03 t 1 1 213996 722 0.00 2019-12-29 06:23:17 2019-12-29 06:31:52 t 1 1 214000 722 0.00 2019-12-29 06:39:24 2019-12-29 06:39:45 t 1 1 214001 637 0.00 2019-12-29 06:29:01 2019-12-29 06:40:53 t 1 1 214003 562 0.00 2019-12-29 06:43:58 2019-12-29 06:44:22 t 1 1 214005 562 0.00 2019-12-29 06:55:13 2019-12-29 06:57:09 t 1 1 214007 637 0.00 2019-12-29 06:52:58 2019-12-29 07:00:14 t 1 1 214009 637 0.00 2019-12-29 07:00:14 2019-12-29 07:02:17 t 1 1 214011 637 0.00 2019-12-29 07:04:29 2019-12-29 07:05:37 t 1 1 214016 681 0.00 2019-12-29 00:10:17 2019-12-29 07:22:17 t 1 1 214023 637 0.00 2019-12-29 07:27:45 2019-12-29 07:41:15 t 1 1 214024 538 0.00 2019-12-29 06:30:30 2019-12-29 07:41:35 t 1 1 214028 637 0.00 2019-12-29 07:41:15 2019-12-29 07:47:57 t 1 1 214029 675 0.00 2019-12-29 07:43:13 2019-12-29 07:48:24 t 1 1 214030 566 0.00 2019-12-29 07:27:40 2019-12-29 07:48:53 t 1 1 214033 566 0.00 2019-12-29 07:48:52 2019-12-29 07:54:44 t 1 1 214035 679 0.00 2019-12-29 07:55:34 2019-12-29 07:57:13 t 1 1 214038 562 0.00 2019-12-29 07:58:09 2019-12-29 07:58:28 t 1 1 214039 611 0.00 2019-12-29 07:58:00 2019-12-29 08:00:40 t 1 1 214040 627 0.00 2019-12-29 07:51:36 2019-12-29 08:02:25 t 1 1 214042 538 0.00 2019-12-29 07:52:27 2019-12-29 08:04:11 t 1 1 214045 498 0.00 2019-12-29 07:59:14 2019-12-29 08:08:20 t 1 2 214048 689 0.00 2019-12-29 08:05:01 2019-12-29 08:12:25 t 1 1 214049 481 0.00 2019-12-29 07:39:13 2019-12-29 08:12:57 t 1 1 214052 562 0.00 2019-12-29 08:19:00 2019-12-29 08:19:20 t 1 1 214053 637 0.00 2019-12-29 08:06:32 2019-12-29 08:21:28 t 1 1 214056 566 0.00 2019-12-29 08:18:30 2019-12-29 08:27:21 t 1 1 214060 694 0.00 2019-12-29 08:12:15 2019-12-29 08:37:13 t 1 1 214061 562 0.00 2019-12-29 08:36:39 2019-12-29 08:38:11 t 1 1 214063 498 0.00 2019-12-29 08:28:14 2019-12-29 08:41:20 t 1 2 214064 566 0.00 2019-12-29 08:31:48 2019-12-29 08:41:41 t 1 1 214066 566 0.00 2019-12-29 08:43:58 2019-12-29 08:45:47 t 1 1 214069 562 0.00 2019-12-29 08:46:37 2019-12-29 08:48:46 t 1 1 214070 611 0.00 2019-12-29 08:49:44 2019-12-29 08:51:40 t 1 1 214072 562 0.00 2019-12-29 08:54:21 2019-12-29 08:54:41 t 1 1 214076 498 0.00 2019-12-29 08:57:26 2019-12-29 08:59:52 t 1 1 214078 694 0.00 2019-12-29 08:37:36 2019-12-29 09:01:50 t 1 1 214084 689 0.00 2019-12-29 08:47:55 2019-12-29 09:15:12 t 1 1 214085 689 0.00 2019-12-29 09:15:12 2019-12-29 09:15:28 t 1 1 214088 728 0.00 2019-12-29 09:19:47 2019-12-29 09:20:54 t 1 4 214091 615 0.00 2019-12-29 09:13:04 2019-12-29 09:23:17 t 1 1 214092 694 0.00 2019-12-29 09:12:55 2019-12-29 09:29:43 t 1 1 214095 615 0.00 2019-12-29 09:23:17 2019-12-29 09:33:59 t 1 1 214096 562 0.00 2019-12-29 09:37:54 2019-12-29 09:40:34 t 1 1 214098 562 0.00 2019-12-29 09:40:42 2019-12-29 09:42:41 t 1 1 214100 566 0.00 2019-12-29 08:52:23 2019-12-29 09:43:27 t 1 1 214104 724 0.00 2019-12-29 09:45:59 2019-12-29 09:51:46 t 1 1 214109 516 0.00 2019-12-29 09:50:37 2019-12-29 09:53:07 t 1 1 214110 779 0.00 2019-12-29 09:52:56 2019-12-29 09:53:16 t 1 1 214111 779 0.00 2019-12-29 09:53:24 2019-12-29 09:53:39 t 1 1 214112 728 0.00 2019-12-29 09:52:33 2019-12-29 09:53:39 t 1 4 214113 779 0.00 2019-12-29 09:53:47 2019-12-29 09:54:02 t 1 1 214114 779 0.00 2019-12-29 09:54:13 2019-12-29 09:54:16 t 1 1 214115 779 0.00 2019-12-29 09:54:38 2019-12-29 09:55:27 t 1 1 214116 498 0.00 2019-12-29 09:00:50 2019-12-29 09:56:26 t 1 2 214117 779 0.00 2019-12-29 09:57:20 2019-12-29 09:57:39 t 1 1 214118 498 0.00 2019-12-29 09:59:14 2019-12-29 10:00:57 t 1 2 214119 611 0.00 2019-12-29 09:57:02 2019-12-29 10:01:26 t 1 1 214120 728 0.00 2019-12-29 10:03:02 2019-12-29 10:03:11 t 1 4 214121 779 0.00 2019-12-29 09:57:46 2019-12-29 10:03:38 t 1 1 214122 779 0.00 2019-12-29 10:03:47 2019-12-29 10:05:53 t 1 1 214123 779 0.00 2019-12-29 10:07:07 2019-12-29 10:07:40 t 1 1 214124 779 0.00 2019-12-29 10:08:04 2019-12-29 10:08:56 t 1 1 214125 779 0.00 2019-12-29 10:09:09 2019-12-29 10:09:29 t 1 1 214126 779 0.00 2019-12-29 10:11:01 2019-12-29 10:11:15 t 1 1 214127 562 0.00 2019-12-29 10:11:17 2019-12-29 10:12:26 t 1 1 214128 611 0.00 2019-12-29 10:09:04 2019-12-29 10:13:34 t 1 1 214129 728 0.00 2019-12-29 10:13:29 2019-12-29 10:13:38 t 1 4 214130 694 0.00 2019-12-29 09:29:54 2019-12-29 10:14:51 t 1 1 214131 538 0.00 2019-12-29 08:57:17 2019-12-29 10:15:49 t 1 1 214132 782 0.00 2019-12-29 10:19:30 2019-12-29 10:19:53 t 1 1 214133 562 0.00 2019-12-29 10:18:24 2019-12-29 10:20:54 t 1 1 214134 667 0.00 2019-12-29 10:14:57 2019-12-29 10:21:35 t 1 1 214135 782 0.00 2019-12-29 10:21:32 2019-12-29 10:21:37 t 1 2 214136 728 0.00 2019-12-29 10:23:56 2019-12-29 10:24:05 t 1 4 214137 779 0.00 2019-12-29 10:11:32 2019-12-29 10:24:23 t 1 1 214138 667 0.00 2019-12-29 10:21:35 2019-12-29 10:24:45 t 1 1 214139 779 0.00 2019-12-29 10:24:37 2019-12-29 10:27:02 t 1 1 214140 611 0.00 2019-12-29 10:25:05 2019-12-29 10:27:09 t 1 1 214141 679 0.00 2019-12-29 10:24:59 2019-12-29 10:27:10 t 1 1 214142 667 0.00 2019-12-29 10:27:17 2019-12-29 10:27:18 t 1 1 214143 562 0.00 2019-12-29 10:29:10 2019-12-29 10:29:27 t 1 1 214144 667 0.00 2019-12-29 10:29:00 2019-12-29 10:30:14 t 1 1 214145 667 0.00 2019-12-29 10:31:10 2019-12-29 10:31:22 t 1 1 214146 779 0.00 2019-12-29 10:28:15 2019-12-29 10:31:57 t 1 1 214147 667 0.00 2019-12-29 10:31:54 2019-12-29 10:32:07 t 1 1 214148 627 0.00 2019-12-29 10:24:34 2019-12-29 10:32:14 t 1 1 214149 562 0.00 2019-12-29 10:30:05 2019-12-29 10:32:51 t 1 1 214150 615 0.00 2019-12-29 10:29:40 2019-12-29 10:32:54 t 1 1 214151 779 0.00 2019-12-29 10:33:24 2019-12-29 10:33:39 t 1 1 214152 591 0.00 2019-12-29 09:17:03 2019-12-29 10:34:32 t 1 1 214153 728 0.00 2019-12-29 10:34:25 2019-12-29 10:34:33 t 1 4 214155 779 0.00 2019-12-29 10:35:44 2019-12-29 10:36:28 t 1 1 214156 667 0.00 2019-12-29 10:37:08 2019-12-29 10:37:17 t 1 1 214158 779 0.00 2019-12-29 10:37:36 2019-12-29 10:37:50 t 1 1 214161 707 0.00 2019-12-29 10:04:12 2019-12-29 10:38:05 t 1 1 214162 779 0.00 2019-12-29 10:38:27 2019-12-29 10:38:43 t 1 1 214167 779 0.00 2019-12-29 10:41:08 2019-12-29 10:41:23 t 1 1 214170 562 0.00 2019-12-29 10:42:59 2019-12-29 10:43:21 t 1 1 214173 779 0.00 2019-12-29 10:43:40 2019-12-29 10:46:14 t 1 1 214174 779 0.00 2019-12-29 10:46:49 2019-12-29 10:47:05 t 1 1 214177 564 0.00 2019-12-29 09:14:39 2019-12-29 10:49:01 t 1 1 214178 562 0.00 2019-12-29 10:49:21 2019-12-29 10:49:37 t 1 1 214188 779 0.00 2019-12-29 10:54:07 2019-12-29 10:55:32 t 1 1 214190 779 0.00 2019-12-29 10:55:41 2019-12-29 10:56:01 t 1 1 214194 562 0.00 2019-12-29 10:57:21 2019-12-29 10:59:20 t 1 1 214195 779 0.00 2019-12-29 10:58:27 2019-12-29 11:00:01 t 1 1 214196 779 0.00 2019-12-29 11:00:11 2019-12-29 11:00:28 t 1 1 214199 562 0.00 2019-12-29 11:01:30 2019-12-29 11:02:44 t 1 1 214205 615 0.00 2019-12-29 10:53:33 2019-12-29 11:04:58 t 1 1 214211 611 0.00 2019-12-29 11:03:04 2019-12-29 11:07:39 t 1 1 214216 220 0.00 2019-12-29 11:08:33 2019-12-29 11:09:48 t 1 1 214220 779 0.00 2019-12-29 11:10:06 2019-12-29 11:11:07 t 1 1 214221 220 0.00 2019-12-29 11:11:00 2019-12-29 11:11:36 t 1 1 214224 779 0.00 2019-12-29 11:10:58 2019-12-29 11:12:51 t 1 1 214226 615 0.00 2019-12-29 11:13:35 2019-12-29 11:16:35 t 1 1 214228 728 0.00 2019-12-29 11:16:32 2019-12-29 11:16:40 t 1 4 214229 516 0.00 2019-12-29 11:17:05 2019-12-29 11:22:16 t 1 1 214232 562 0.00 2019-12-29 11:22:40 2019-12-29 11:23:22 t 1 1 214234 514 0.00 2019-12-29 11:03:36 2019-12-29 11:26:17 t 1 1 214236 728 0.00 2019-12-29 11:27:15 2019-12-29 11:27:24 t 1 4 214237 728 0.00 2019-12-29 11:27:30 2019-12-29 11:27:38 t 1 4 214238 564 0.00 2019-12-29 11:22:26 2019-12-29 11:28:29 t 1 1 214239 679 0.00 2019-12-29 11:16:39 2019-12-29 11:30:47 t 1 1 214241 562 0.00 2019-12-29 11:30:12 2019-12-29 11:31:17 t 1 1 214242 679 0.00 2019-12-29 11:31:18 2019-12-29 11:31:51 t 1 1 214246 679 0.00 2019-12-29 11:33:01 2019-12-29 11:33:14 t 1 1 214247 679 0.00 2019-12-29 11:33:20 2019-12-29 11:33:35 t 1 1 214251 611 0.00 2019-12-29 11:28:13 2019-12-29 11:34:27 t 1 1 214252 611 0.00 2019-12-29 11:34:27 2019-12-29 11:34:51 t 1 1 214254 637 0.00 2019-12-29 11:05:31 2019-12-29 11:36:23 t 1 1 214255 562 0.00 2019-12-29 11:36:04 2019-12-29 11:36:36 t 1 1 214263 689 0.00 2019-12-29 11:40:55 2019-12-29 11:41:39 t 1 1 214272 681 0.00 2019-12-29 08:35:41 2019-12-29 11:46:48 t 1 1 214275 779 0.00 2019-12-29 11:49:10 2019-12-29 11:50:00 t 1 1 214279 562 0.00 2019-12-29 11:49:00 2019-12-29 11:50:21 t 1 1 214280 392 0.00 2019-12-29 11:08:15 2019-12-29 11:52:59 t 1 2 214282 779 0.00 2019-12-29 11:50:10 2019-12-29 11:54:22 t 1 1 214286 728 0.00 2019-12-29 11:59:26 2019-12-29 11:59:35 t 1 4 214292 779 0.00 2019-12-29 12:05:42 2019-12-29 12:06:15 t 1 1 214297 679 0.00 2019-12-29 12:04:26 2019-12-29 12:11:29 t 1 1 214298 681 0.00 2019-12-29 11:46:48 2019-12-29 12:13:12 t 1 1 214301 779 0.00 2019-12-29 12:14:23 2019-12-29 12:15:45 t 1 1 214304 679 0.00 2019-12-29 12:11:29 2019-12-29 12:19:20 t 1 1 214313 675 0.00 2019-12-29 12:25:27 2019-12-29 12:27:38 t 1 1 214321 615 0.00 2019-12-29 12:30:11 2019-12-29 12:32:25 t 1 1 214324 637 0.00 2019-12-29 12:29:26 2019-12-29 12:33:58 t 1 1 214325 679 0.00 2019-12-29 12:19:20 2019-12-29 12:34:29 t 1 1 214327 779 0.00 2019-12-29 12:30:45 2019-12-29 12:37:04 t 1 1 214328 779 0.00 2019-12-29 12:37:11 2019-12-29 12:37:25 t 1 1 214331 538 0.00 2019-12-29 11:50:51 2019-12-29 12:38:33 t 1 1 214334 687 0.00 2019-12-29 12:38:55 2019-12-29 12:39:17 t 1 1 214337 514 0.00 2019-12-29 12:18:53 2019-12-29 12:40:59 t 1 1 214342 779 0.00 2019-12-29 12:43:48 2019-12-29 12:44:33 t 1 1 214345 779 0.00 2019-12-29 12:45:15 2019-12-29 12:46:17 t 1 1 214348 591 0.00 2019-12-29 12:08:12 2019-12-29 12:48:05 t 1 1 214350 516 0.00 2019-12-29 12:38:36 2019-12-29 12:49:08 t 1 1 214358 611 0.00 2019-12-29 12:56:16 2019-12-29 12:58:40 t 1 1 214364 562 0.00 2019-12-29 13:00:43 2019-12-29 13:02:27 t 1 1 214365 671 0.00 2019-12-29 13:01:10 2019-12-29 13:04:05 t 1 1 214367 578 0.00 2019-12-29 12:24:35 2019-12-29 13:05:32 t 1 1 214368 779 0.00 2019-12-29 13:05:40 2019-12-29 13:05:57 t 1 1 214371 562 0.00 2019-12-29 13:07:11 2019-12-29 13:08:16 t 1 1 214375 566 0.00 2019-12-29 12:56:42 2019-12-29 13:09:02 t 1 1 214377 562 0.00 2019-12-29 13:10:15 2019-12-29 13:10:19 t 1 1 214381 779 0.00 2019-12-29 13:11:20 2019-12-29 13:13:28 t 1 1 214383 516 0.00 2019-12-29 13:08:37 2019-12-29 13:13:55 t 1 1 214388 779 0.00 2019-12-29 13:15:13 2019-12-29 13:15:29 t 1 1 214390 696 0.00 2019-12-29 13:11:34 2019-12-29 13:15:54 t 1 1 214391 503 0.00 2019-12-29 13:11:09 2019-12-29 13:16:47 t 1 1 214399 503 0.00 2019-12-29 13:19:41 2019-12-29 13:19:41 f 1 1 214401 562 0.00 2019-12-29 13:19:09 2019-12-29 13:20:43 t 1 1 214405 564 0.00 2019-12-29 11:28:29 2019-12-29 13:25:53 t 1 1 214406 516 0.00 2019-12-29 13:22:19 2019-12-29 13:26:59 t 1 1 214409 779 0.00 2019-12-29 13:18:28 2019-12-29 13:27:43 t 1 1 214411 779 0.00 2019-12-29 13:27:51 2019-12-29 13:28:06 t 1 1 214413 779 0.00 2019-12-29 13:30:05 2019-12-29 13:31:26 t 1 1 214414 779 0.00 2019-12-29 13:31:34 2019-12-29 13:32:20 t 1 1 214417 779 0.00 2019-12-29 13:32:30 2019-12-29 13:35:11 t 1 1 214422 611 0.00 2019-12-29 13:30:13 2019-12-29 13:38:08 t 1 1 214425 779 0.00 2019-12-29 13:35:20 2019-12-29 13:43:15 t 1 1 214428 779 0.00 2019-12-29 13:43:24 2019-12-29 13:44:20 t 1 1 214432 779 0.00 2019-12-29 13:45:18 2019-12-29 13:45:33 t 1 1 214434 578 0.00 2019-12-29 13:05:32 2019-12-29 13:46:06 t 1 1 214435 728 0.00 2019-12-29 13:47:30 2019-12-29 13:47:38 t 1 4 214438 562 0.00 2019-12-29 13:49:01 2019-12-29 13:49:54 t 1 1 214443 779 0.00 2019-12-29 13:51:25 2019-12-29 13:51:40 t 1 1 214446 578 0.00 2019-12-29 13:46:06 2019-12-29 13:53:03 t 1 1 214449 220 0.00 2019-12-29 13:41:16 2019-12-29 13:56:00 t 1 1 214450 687 0.00 2019-12-29 13:54:44 2019-12-29 13:57:12 t 1 1 214453 779 0.00 2019-12-29 13:59:05 2019-12-29 13:59:19 t 1 1 214458 779 0.00 2019-12-29 13:59:28 2019-12-29 14:00:31 t 1 1 214462 611 0.00 2019-12-29 14:00:31 2019-12-29 14:02:25 t 1 1 214464 779 0.00 2019-12-29 14:02:52 2019-12-29 14:03:08 t 1 1 214467 779 0.00 2019-12-29 14:03:42 2019-12-29 14:03:57 t 1 1 214469 779 0.00 2019-12-29 14:04:34 2019-12-29 14:04:49 t 1 1 214474 220 0.00 2019-12-29 13:56:00 2019-12-29 14:08:27 t 1 1 214475 728 0.00 2019-12-29 14:08:26 2019-12-29 14:08:35 t 1 4 214154 779 0.00 2019-12-29 10:35:02 2019-12-29 10:35:18 t 1 1 214160 724 0.00 2019-12-29 10:33:11 2019-12-29 10:38:00 t 1 1 214164 562 0.00 2019-12-29 10:33:29 2019-12-29 10:38:59 t 1 1 214165 667 0.00 2019-12-29 10:40:12 2019-12-29 10:40:21 t 1 1 214169 779 0.00 2019-12-29 10:42:55 2019-12-29 10:43:08 t 1 1 214175 667 0.00 2019-12-29 10:45:15 2019-12-29 10:48:13 t 1 1 214176 782 0.00 2019-12-29 10:43:22 2019-12-29 10:48:30 t 1 1 214180 625 0.00 2019-12-29 10:32:42 2019-12-29 10:50:24 t 1 1 214182 481 0.00 2019-12-29 10:05:50 2019-12-29 10:52:18 t 1 1 214183 779 0.00 2019-12-29 10:52:22 2019-12-29 10:52:36 t 1 1 214186 779 0.00 2019-12-29 10:52:49 2019-12-29 10:54:07 t 1 1 214187 728 0.00 2019-12-29 10:55:21 2019-12-29 10:55:29 t 1 4 214189 562 0.00 2019-12-29 10:55:17 2019-12-29 10:55:43 t 1 1 214191 782 0.00 2019-12-29 10:48:30 2019-12-29 10:56:45 t 1 1 214193 637 0.00 2019-12-29 10:46:01 2019-12-29 10:59:14 t 1 1 214198 779 0.00 2019-12-29 11:02:21 2019-12-29 11:02:41 t 1 1 214200 637 0.00 2019-12-29 10:59:14 2019-12-29 11:03:20 t 1 1 214207 562 0.00 2019-12-29 11:03:38 2019-12-29 11:05:05 t 1 1 214217 220 0.00 2019-12-29 11:09:48 2019-12-29 11:10:22 t 1 1 214219 220 0.00 2019-12-29 11:10:21 2019-12-29 11:11:00 t 1 1 214222 220 0.00 2019-12-29 11:11:35 2019-12-29 11:12:14 t 1 1 214223 220 0.00 2019-12-29 11:12:14 2019-12-29 11:12:35 t 1 1 214225 611 0.00 2019-12-29 11:09:52 2019-12-29 11:14:28 t 1 1 214240 679 0.00 2019-12-29 11:30:54 2019-12-29 11:31:12 t 1 1 214243 679 0.00 2019-12-29 11:31:56 2019-12-29 11:32:12 t 1 1 214244 679 0.00 2019-12-29 11:32:18 2019-12-29 11:32:55 t 1 1 214245 728 0.00 2019-12-29 11:33:04 2019-12-29 11:33:12 t 1 4 214248 679 0.00 2019-12-29 11:33:41 2019-12-29 11:34:00 t 1 1 214250 679 0.00 2019-12-29 11:34:06 2019-12-29 11:34:25 t 1 1 214256 694 0.00 2019-12-29 11:35:43 2019-12-29 11:36:58 t 1 1 214257 637 0.00 2019-12-29 11:36:28 2019-12-29 11:37:32 t 1 1 214258 728 0.00 2019-12-29 11:38:28 2019-12-29 11:38:45 t 1 4 214261 611 0.00 2019-12-29 11:34:50 2019-12-29 11:40:44 t 1 1 214262 679 0.00 2019-12-29 11:41:11 2019-12-29 11:41:15 t 1 1 214264 779 0.00 2019-12-29 11:41:37 2019-12-29 11:42:11 t 1 1 214266 679 0.00 2019-12-29 11:41:21 2019-12-29 11:43:07 t 1 1 214268 667 0.00 2019-12-29 11:37:16 2019-12-29 11:45:10 t 1 1 214269 591 0.00 2019-12-29 11:05:09 2019-12-29 11:45:18 t 1 1 214273 779 0.00 2019-12-29 11:46:42 2019-12-29 11:47:06 t 1 1 214274 779 0.00 2019-12-29 11:47:22 2019-12-29 11:47:42 t 1 1 214277 544 0.00 2019-12-29 11:10:36 2019-12-29 11:50:06 t 1 1 214281 667 0.00 2019-12-29 11:50:16 2019-12-29 11:54:05 t 1 1 214284 671 0.00 2019-12-29 11:54:28 2019-12-29 11:58:22 t 1 1 214285 637 0.00 2019-12-29 11:39:15 2019-12-29 11:59:34 t 1 1 214288 779 0.00 2019-12-29 11:59:57 2019-12-29 12:01:54 t 1 1 214289 671 0.00 2019-12-29 11:58:21 2019-12-29 12:03:01 t 1 1 214291 679 0.00 2019-12-29 11:51:32 2019-12-29 12:04:26 t 1 1 214294 779 0.00 2019-12-29 12:06:32 2019-12-29 12:07:18 t 1 1 214296 728 0.00 2019-12-29 12:09:54 2019-12-29 12:10:10 t 1 4 214299 724 0.00 2019-12-29 12:11:21 2019-12-29 12:14:39 t 1 1 214300 562 0.00 2019-12-29 12:15:15 2019-12-29 12:15:28 t 1 1 214302 562 0.00 2019-12-29 12:18:20 2019-12-29 12:18:31 t 1 1 214306 615 0.00 2019-12-29 12:04:38 2019-12-29 12:20:39 t 1 1 214307 625 0.00 2019-12-29 11:39:03 2019-12-29 12:21:39 t 1 1 214310 578 0.00 2019-12-29 12:16:35 2019-12-29 12:24:21 t 1 1 214312 562 0.00 2019-12-29 12:25:53 2019-12-29 12:26:12 t 1 1 214314 728 0.00 2019-12-29 12:26:48 2019-12-29 12:27:55 t 1 4 214317 625 0.00 2019-12-29 12:21:39 2019-12-29 12:28:28 t 1 1 214319 615 0.00 2019-12-29 12:25:44 2019-12-29 12:30:11 t 1 1 214322 544 0.00 2019-12-29 12:25:05 2019-12-29 12:33:30 t 1 1 214329 728 0.00 2019-12-29 12:37:17 2019-12-29 12:37:26 t 1 4 214330 779 0.00 2019-12-29 12:37:34 2019-12-29 12:37:55 t 1 1 214335 779 0.00 2019-12-29 12:39:23 2019-12-29 12:39:56 t 1 1 214338 687 0.00 2019-12-29 12:40:52 2019-12-29 12:41:40 t 1 1 214343 538 0.00 2019-12-29 12:40:55 2019-12-29 12:44:51 t 1 1 214344 631 0.00 2019-12-29 12:43:45 2019-12-29 12:45:23 t 1 1 214349 779 0.00 2019-12-29 12:48:24 2019-12-29 12:48:46 t 1 1 214353 562 0.00 2019-12-29 12:50:49 2019-12-29 12:51:11 t 1 1 214354 779 0.00 2019-12-29 12:51:03 2019-12-29 12:52:10 t 1 1 214359 562 0.00 2019-12-29 12:58:27 2019-12-29 12:58:51 t 1 1 214361 779 0.00 2019-12-29 12:52:49 2019-12-29 12:59:14 t 1 1 214366 779 0.00 2019-12-29 13:00:41 2019-12-29 13:05:21 t 1 1 214369 779 0.00 2019-12-29 13:06:19 2019-12-29 13:06:48 t 1 1 214372 694 0.00 2019-12-29 11:36:57 2019-12-29 13:08:41 t 1 1 214376 724 0.00 2019-12-29 13:08:29 2019-12-29 13:09:56 t 1 1 214379 503 0.00 2019-12-29 13:08:46 2019-12-29 13:11:06 t 1 1 214380 538 0.00 2019-12-29 12:44:55 2019-12-29 13:12:47 t 1 1 214382 687 0.00 2019-12-29 13:10:57 2019-12-29 13:13:31 t 1 1 214384 779 0.00 2019-12-29 13:13:38 2019-12-29 13:14:00 t 1 1 214385 779 0.00 2019-12-29 13:14:10 2019-12-29 13:14:25 t 1 1 214392 503 0.00 2019-12-29 13:16:51 2019-12-29 13:17:45 t 1 1 214394 562 0.00 2019-12-29 13:14:54 2019-12-29 13:18:17 t 1 1 214397 503 0.00 2019-12-29 13:17:44 2019-12-29 13:19:05 t 1 1 214398 728 0.00 2019-12-29 13:19:12 2019-12-29 13:19:21 t 1 4 214400 503 0.00 2019-12-29 13:19:04 2019-12-29 13:19:48 t 1 1 214402 503 0.00 2019-12-29 13:19:31 2019-12-29 13:21:16 t 1 1 214403 562 0.00 2019-12-29 13:22:38 2019-12-29 13:24:16 t 1 1 214404 687 0.00 2019-12-29 13:15:04 2019-12-29 13:24:47 t 1 1 214407 562 0.00 2019-12-29 13:27:13 2019-12-29 13:27:38 t 1 1 214410 670 0.00 2019-12-29 10:53:00 2019-12-29 13:27:44 t 1 1 214412 566 0.00 2019-12-29 13:09:10 2019-12-29 13:30:11 t 1 1 214416 687 0.00 2019-12-29 13:33:45 2019-12-29 13:34:12 t 1 1 214418 687 0.00 2019-12-29 13:34:34 2019-12-29 13:35:11 t 1 1 214419 667 0.00 2019-12-29 13:32:40 2019-12-29 13:37:10 t 1 1 214421 687 0.00 2019-12-29 13:35:29 2019-12-29 13:37:38 t 1 1 214423 562 0.00 2019-12-29 13:37:59 2019-12-29 13:38:22 t 1 1 214424 220 0.00 2019-12-29 13:28:16 2019-12-29 13:41:16 t 1 1 214430 779 0.00 2019-12-29 13:44:53 2019-12-29 13:45:09 t 1 1 214431 667 0.00 2019-12-29 13:45:21 2019-12-29 13:45:25 t 1 1 214436 687 0.00 2019-12-29 13:38:43 2019-12-29 13:48:00 t 1 1 214437 779 0.00 2019-12-29 13:46:13 2019-12-29 13:49:31 t 1 1 214439 637 0.00 2019-12-29 12:43:14 2019-12-29 13:50:02 t 1 1 214441 779 0.00 2019-12-29 13:49:40 2019-12-29 13:51:15 t 1 1 214447 687 0.00 2019-12-29 13:53:23 2019-12-29 13:53:56 t 1 1 214451 728 0.00 2019-12-29 13:57:58 2019-12-29 13:58:07 t 1 4 214452 779 0.00 2019-12-29 13:58:31 2019-12-29 13:58:56 t 1 1 214454 687 0.00 2019-12-29 13:57:21 2019-12-29 13:59:24 t 1 1 214157 779 0.00 2019-12-29 10:36:55 2019-12-29 10:37:17 t 1 1 214159 667 0.00 2019-12-29 10:37:45 2019-12-29 10:37:54 t 1 1 214163 694 0.00 2019-12-29 10:37:44 2019-12-29 10:38:54 t 1 1 214166 694 0.00 2019-12-29 10:39:00 2019-12-29 10:40:31 t 1 1 214168 779 0.00 2019-12-29 10:41:46 2019-12-29 10:42:43 t 1 1 214171 728 0.00 2019-12-29 10:44:53 2019-12-29 10:45:01 t 1 4 214172 637 0.00 2019-12-29 08:29:25 2019-12-29 10:46:01 t 1 1 214179 779 0.00 2019-12-29 10:49:23 2019-12-29 10:50:16 t 1 1 214181 779 0.00 2019-12-29 10:51:24 2019-12-29 10:51:45 t 1 1 214184 670 0.00 2019-12-29 10:02:15 2019-12-29 10:53:00 t 1 1 214185 615 0.00 2019-12-29 10:43:06 2019-12-29 10:53:33 t 1 1 214192 779 0.00 2019-12-29 10:57:22 2019-12-29 10:57:59 t 1 1 214197 591 0.00 2019-12-29 10:34:32 2019-12-29 11:02:20 t 1 1 214201 779 0.00 2019-12-29 11:03:24 2019-12-29 11:03:25 t 1 1 214202 514 0.00 2019-12-29 10:50:39 2019-12-29 11:03:36 t 1 1 214203 779 0.00 2019-12-29 11:03:32 2019-12-29 11:03:47 t 1 1 214204 671 0.00 2019-12-29 11:01:04 2019-12-29 11:04:39 t 1 1 214206 779 0.00 2019-12-29 11:04:46 2019-12-29 11:05:02 t 1 1 214208 728 0.00 2019-12-29 11:05:49 2019-12-29 11:05:58 t 1 4 214209 728 0.00 2019-12-29 11:06:04 2019-12-29 11:06:13 t 1 4 214210 779 0.00 2019-12-29 11:06:01 2019-12-29 11:07:03 t 1 1 214212 392 0.00 2019-12-29 10:57:07 2019-12-29 11:07:42 t 1 2 214213 220 0.00 2019-12-29 11:06:30 2019-12-29 11:08:24 t 1 1 214214 611 0.00 2019-12-29 11:08:19 2019-12-29 11:09:25 t 1 1 214215 625 0.00 2019-12-29 10:53:37 2019-12-29 11:09:28 t 1 1 214218 779 0.00 2019-12-29 11:10:16 2019-12-29 11:10:31 t 1 1 214227 679 0.00 2019-12-29 10:39:05 2019-12-29 11:16:39 t 1 1 214230 564 0.00 2019-12-29 10:49:01 2019-12-29 11:22:26 t 1 1 214231 220 0.00 2019-12-29 11:12:35 2019-12-29 11:22:30 t 1 1 214233 615 0.00 2019-12-29 11:20:13 2019-12-29 11:24:41 t 1 1 214235 728 0.00 2019-12-29 11:27:00 2019-12-29 11:27:09 t 1 4 214249 724 0.00 2019-12-29 11:02:39 2019-12-29 11:34:21 t 1 1 214253 679 0.00 2019-12-29 11:34:30 2019-12-29 11:35:22 t 1 1 214259 679 0.00 2019-12-29 11:35:28 2019-12-29 11:39:37 t 1 1 214260 679 0.00 2019-12-29 11:40:19 2019-12-29 11:40:35 t 1 1 214265 779 0.00 2019-12-29 11:42:02 2019-12-29 11:43:01 t 1 1 214267 562 0.00 2019-12-29 11:43:51 2019-12-29 11:44:49 t 1 1 214270 779 0.00 2019-12-29 11:45:15 2019-12-29 11:45:36 t 1 1 214271 779 0.00 2019-12-29 11:45:53 2019-12-29 11:46:30 t 1 1 214276 728 0.00 2019-12-29 11:48:57 2019-12-29 11:50:03 t 1 4 214278 667 0.00 2019-12-29 11:45:10 2019-12-29 11:50:16 t 1 1 214283 562 0.00 2019-12-29 11:55:48 2019-12-29 11:56:27 t 1 1 214287 779 0.00 2019-12-29 11:54:31 2019-12-29 11:59:46 t 1 1 214290 779 0.00 2019-12-29 12:02:05 2019-12-29 12:04:08 t 1 1 214293 562 0.00 2019-12-29 12:06:49 2019-12-29 12:07:08 t 1 1 214295 779 0.00 2019-12-29 12:08:26 2019-12-29 12:09:55 t 1 1 214303 514 0.00 2019-12-29 11:26:17 2019-12-29 12:18:53 t 1 1 214305 728 0.00 2019-12-29 12:20:22 2019-12-29 12:20:31 t 1 4 214308 503 0.00 2019-12-29 12:18:32 2019-12-29 12:21:56 t 1 1 214309 516 0.00 2019-12-29 12:15:57 2019-12-29 12:23:51 t 1 1 214311 544 0.00 2019-12-29 12:20:55 2019-12-29 12:25:05 t 1 1 214315 779 0.00 2019-12-29 12:27:17 2019-12-29 12:28:01 t 1 1 214316 637 0.00 2019-12-29 11:59:31 2019-12-29 12:28:25 t 1 1 214318 779 0.00 2019-12-29 12:28:08 2019-12-29 12:30:00 t 1 1 214320 516 0.00 2019-12-29 12:28:20 2019-12-29 12:32:10 t 1 1 214323 562 0.00 2019-12-29 12:33:28 2019-12-29 12:33:49 t 1 1 214326 649 0.00 2019-12-29 12:19:39 2019-12-29 12:36:35 t 1 1 214332 687 0.00 2019-12-29 12:35:42 2019-12-29 12:38:46 t 1 1 214333 637 0.00 2019-12-29 12:34:31 2019-12-29 12:39:11 t 1 1 214336 637 0.00 2019-12-29 12:39:05 2019-12-29 12:40:56 t 1 1 214339 779 0.00 2019-12-29 12:41:21 2019-12-29 12:42:21 t 1 1 214340 687 0.00 2019-12-29 12:42:45 2019-12-29 12:43:14 t 1 1 214341 562 0.00 2019-12-29 12:44:15 2019-12-29 12:44:29 t 1 1 214346 687 0.00 2019-12-29 12:43:54 2019-12-29 12:46:34 t 1 1 214347 728 0.00 2019-12-29 12:47:46 2019-12-29 12:47:55 t 1 4 214351 779 0.00 2019-12-29 12:50:28 2019-12-29 12:50:41 t 1 1 214352 687 0.00 2019-12-29 12:48:50 2019-12-29 12:50:56 t 1 1 214355 675 0.00 2019-12-29 12:50:50 2019-12-29 12:54:13 t 1 1 214356 591 0.00 2019-12-29 12:48:05 2019-12-29 12:54:57 t 1 1 214357 728 0.00 2019-12-29 12:58:14 2019-12-29 12:58:27 t 1 4 214360 720 0.00 2019-12-29 00:35:01 2019-12-29 12:59:05 t 1 1 214362 779 0.00 2019-12-29 12:59:21 2019-12-29 13:00:18 t 1 1 214363 687 0.00 2019-12-29 12:51:34 2019-12-29 13:01:32 t 1 1 214370 562 0.00 2019-12-29 13:06:39 2019-12-29 13:06:58 t 1 1 214373 503 0.00 2019-12-29 13:07:35 2019-12-29 13:08:41 t 1 1 214374 728 0.00 2019-12-29 13:08:43 2019-12-29 13:08:52 t 1 4 214378 687 0.00 2019-12-29 13:05:12 2019-12-29 13:10:42 t 1 1 214386 562 0.00 2019-12-29 13:14:20 2019-12-29 13:14:38 t 1 1 214387 779 0.00 2019-12-29 13:14:34 2019-12-29 13:15:04 t 1 1 214389 779 0.00 2019-12-29 13:15:38 2019-12-29 13:15:52 t 1 1 214393 779 0.00 2019-12-29 13:16:01 2019-12-29 13:17:52 t 1 1 214395 779 0.00 2019-12-29 13:18:00 2019-12-29 13:18:20 t 1 1 214396 675 0.00 2019-12-29 13:14:58 2019-12-29 13:18:44 t 1 1 214408 728 0.00 2019-12-29 13:26:33 2019-12-29 13:27:39 t 1 4 214415 687 0.00 2019-12-29 13:27:29 2019-12-29 13:33:33 t 1 1 214420 728 0.00 2019-12-29 13:37:02 2019-12-29 13:37:11 t 1 4 214426 562 0.00 2019-12-29 13:43:00 2019-12-29 13:43:25 t 1 1 214427 667 0.00 2019-12-29 13:43:26 2019-12-29 13:43:36 t 1 1 214429 779 0.00 2019-12-29 13:44:29 2019-12-29 13:44:44 t 1 1 214433 779 0.00 2019-12-29 13:45:43 2019-12-29 13:46:04 t 1 1 214440 679 0.00 2019-12-29 13:48:29 2019-12-29 13:50:16 t 1 1 214442 566 0.00 2019-12-29 13:30:11 2019-12-29 13:51:22 t 1 1 214444 779 0.00 2019-12-29 13:51:49 2019-12-29 13:52:06 t 1 1 214445 779 0.00 2019-12-29 13:52:15 2019-12-29 13:52:29 t 1 1 214448 779 0.00 2019-12-29 13:55:33 2019-12-29 13:55:58 t 1 1 214455 591 0.00 2019-12-29 13:31:01 2019-12-29 13:59:38 t 1 1 214457 611 0.00 2019-12-29 13:44:22 2019-12-29 14:00:24 t 1 1 214459 779 0.00 2019-12-29 14:00:41 2019-12-29 14:00:56 t 1 1 214468 779 0.00 2019-12-29 14:04:08 2019-12-29 14:04:25 t 1 1 214470 779 0.00 2019-12-29 14:04:58 2019-12-29 14:05:13 t 1 1 214471 591 0.00 2019-12-29 14:02:28 2019-12-29 14:05:34 t 1 1 214472 779 0.00 2019-12-29 14:06:11 2019-12-29 14:06:33 t 1 1 214476 566 0.00 2019-12-29 13:51:22 2019-12-29 14:11:21 t 1 1 214479 516 0.00 2019-12-29 14:08:09 2019-12-29 14:14:27 t 1 1 214480 578 0.00 2019-12-29 13:53:03 2019-12-29 14:14:32 t 1 1 214484 562 0.00 2019-12-29 14:16:17 2019-12-29 14:17:02 t 1 1 214486 779 0.00 2019-12-29 14:15:13 2019-12-29 14:18:02 t 1 1 214456 562 0.00 2019-12-29 13:59:43 2019-12-29 14:00:12 t 1 1 214460 779 0.00 2019-12-29 14:01:04 2019-12-29 14:01:18 t 1 1 214461 779 0.00 2019-12-29 14:01:27 2019-12-29 14:02:17 t 1 1 214463 779 0.00 2019-12-29 14:02:27 2019-12-29 14:02:42 t 1 1 214465 498 0.00 2019-12-29 13:34:20 2019-12-29 14:03:14 t 1 2 214466 779 0.00 2019-12-29 14:03:16 2019-12-29 14:03:32 t 1 1 214473 611 0.00 2019-12-29 14:02:25 2019-12-29 14:06:46 t 1 1 214478 779 0.00 2019-12-29 14:06:44 2019-12-29 14:13:02 t 1 1 214481 779 0.00 2019-12-29 14:13:09 2019-12-29 14:15:04 t 1 1 214482 687 0.00 2019-12-29 14:12:29 2019-12-29 14:15:37 t 1 1 214487 779 0.00 2019-12-29 14:18:11 2019-12-29 14:18:26 t 1 1 214488 779 0.00 2019-12-29 14:18:36 2019-12-29 14:18:50 t 1 1 214489 728 0.00 2019-12-29 14:18:54 2019-12-29 14:19:03 t 1 4 214496 779 0.00 2019-12-29 14:20:44 2019-12-29 14:24:08 t 1 1 214501 728 0.00 2019-12-29 14:39:51 2019-12-29 14:40:58 t 1 4 214502 760 0.00 2019-12-29 14:32:28 2019-12-29 14:42:35 t 1 1 214508 779 0.00 2019-12-29 14:45:56 2019-12-29 14:46:17 t 1 1 214509 779 0.00 2019-12-29 14:46:26 2019-12-29 14:46:42 t 1 1 214513 779 0.00 2019-12-29 14:47:39 2019-12-29 14:47:55 t 1 1 214515 220 0.00 2019-12-29 14:22:12 2019-12-29 14:48:25 t 1 1 214519 779 0.00 2019-12-29 14:49:49 2019-12-29 14:50:05 t 1 1 214521 728 0.00 2019-12-29 14:50:36 2019-12-29 14:50:44 t 1 4 214522 779 0.00 2019-12-29 14:50:19 2019-12-29 14:52:18 t 1 1 214524 562 0.00 2019-12-29 14:52:55 2019-12-29 14:53:16 t 1 1 214529 779 0.00 2019-12-29 14:52:36 2019-12-29 14:56:25 t 1 1 214530 779 0.00 2019-12-29 14:56:33 2019-12-29 14:57:05 t 1 1 214531 779 0.00 2019-12-29 14:57:14 2019-12-29 14:57:35 t 1 1 214532 779 0.00 2019-12-29 14:57:45 2019-12-29 14:58:00 t 1 1 214543 728 0.00 2019-12-29 15:01:05 2019-12-29 15:01:14 t 1 4 214545 779 0.00 2019-12-29 15:00:52 2019-12-29 15:01:25 t 1 1 214548 514 0.00 2019-12-29 14:53:42 2019-12-29 15:03:06 t 1 1 214557 562 0.00 2019-12-29 15:06:47 2019-12-29 15:13:37 t 1 1 214561 667 0.00 2019-12-29 15:19:30 2019-12-29 15:20:06 t 1 2 214563 562 0.00 2019-12-29 15:21:46 2019-12-29 15:22:10 t 1 1 214567 562 0.00 2019-12-29 15:27:43 2019-12-29 15:28:46 t 1 1 214569 779 0.00 2019-12-29 15:29:18 2019-12-29 15:29:50 t 1 1 214571 637 0.00 2019-12-29 15:24:05 2019-12-29 15:33:41 t 1 1 214583 728 0.00 2019-12-29 15:53:46 2019-12-29 15:53:54 t 1 4 214593 779 0.00 2019-12-29 15:59:12 2019-12-29 15:59:13 t 1 1 214595 562 0.00 2019-12-29 16:00:15 2019-12-29 16:00:25 t 1 1 214596 681 0.00 2019-12-29 12:16:33 2019-12-29 16:03:57 t 1 1 214598 728 0.00 2019-12-29 16:04:14 2019-12-29 16:04:23 t 1 4 214601 562 0.00 2019-12-29 16:05:13 2019-12-29 16:05:25 t 1 1 214602 779 0.00 2019-12-29 16:05:31 2019-12-29 16:05:50 t 1 1 214604 728 0.00 2019-12-29 16:06:40 2019-12-29 16:06:51 t 1 4 214606 779 0.00 2019-12-29 16:08:55 2019-12-29 16:09:10 t 1 1 214609 779 0.00 2019-12-29 16:10:08 2019-12-29 16:10:22 t 1 1 214610 779 0.00 2019-12-29 16:10:31 2019-12-29 16:10:46 t 1 1 214613 779 0.00 2019-12-29 16:11:16 2019-12-29 16:11:31 t 1 1 214616 779 0.00 2019-12-29 16:12:25 2019-12-29 16:13:50 t 1 1 214618 779 0.00 2019-12-29 16:14:29 2019-12-29 16:14:45 t 1 1 214623 516 0.00 2019-12-29 16:12:02 2019-12-29 16:17:56 t 1 1 214626 779 0.00 2019-12-29 16:18:36 2019-12-29 16:18:56 t 1 1 214628 779 0.00 2019-12-29 16:19:28 2019-12-29 16:19:42 t 1 1 214632 779 0.00 2019-12-29 16:21:04 2019-12-29 16:21:19 t 1 1 214633 779 0.00 2019-12-29 16:21:28 2019-12-29 16:21:42 t 1 1 214637 779 0.00 2019-12-29 16:26:39 2019-12-29 16:26:54 t 1 1 214639 615 0.00 2019-12-29 16:25:10 2019-12-29 16:29:41 t 1 1 214643 656 0.00 2019-12-29 16:09:43 2019-12-29 16:30:56 t 1 2 214644 691 0.00 2019-12-29 16:29:27 2019-12-29 16:32:40 t 1 1 214645 779 0.00 2019-12-29 16:33:23 2019-12-29 16:33:45 t 1 1 214648 779 0.00 2019-12-29 16:40:05 2019-12-29 16:40:06 t 1 1 214650 779 0.00 2019-12-29 16:41:13 2019-12-29 16:43:35 t 1 1 214652 562 0.00 2019-12-29 16:16:55 2019-12-29 16:44:20 t 1 1 214653 578 0.00 2019-12-29 14:52:20 2019-12-29 16:46:19 t 1 1 214655 779 0.00 2019-12-29 16:52:51 2019-12-29 16:53:26 t 1 1 214656 779 0.00 2019-12-29 16:53:35 2019-12-29 16:54:12 t 1 1 214658 637 0.00 2019-12-29 16:39:49 2019-12-29 16:58:48 t 1 1 214660 675 0.00 2019-12-29 17:01:45 2019-12-29 17:04:04 t 1 1 214662 724 0.00 2019-12-29 16:43:10 2019-12-29 17:05:13 t 1 1 214664 562 0.00 2019-12-29 16:44:31 2019-12-29 17:07:45 t 1 1 214667 779 0.00 2019-12-29 17:08:32 2019-12-29 17:08:46 t 1 1 214672 779 0.00 2019-12-29 17:13:17 2019-12-29 17:13:30 t 1 1 214675 728 0.00 2019-12-29 17:14:55 2019-12-29 17:15:03 t 1 4 214676 779 0.00 2019-12-29 17:15:27 2019-12-29 17:15:36 t 1 1 214677 716 0.00 2019-12-29 17:14:09 2019-12-29 17:16:36 t 1 1 214679 779 0.00 2019-12-29 17:15:53 2019-12-29 17:16:50 t 1 1 214680 779 0.00 2019-12-29 17:17:44 2019-12-29 17:17:45 t 1 1 214683 687 0.00 2019-12-29 17:19:00 2019-12-29 17:19:58 t 1 1 214686 481 0.00 2019-12-29 15:25:27 2019-12-29 17:23:25 t 1 1 214687 514 0.00 2019-12-29 17:14:13 2019-12-29 17:25:01 t 1 1 214692 779 0.00 2019-12-29 17:25:49 2019-12-29 17:26:00 t 1 1 214693 716 0.00 2019-12-29 17:25:58 2019-12-29 17:26:35 t 1 1 214695 779 0.00 2019-12-29 17:26:15 2019-12-29 17:28:15 t 1 1 214696 679 0.00 2019-12-29 17:28:53 2019-12-29 17:31:06 t 1 1 214697 679 0.00 2019-12-29 17:31:14 2019-12-29 17:31:29 t 1 1 214700 679 0.00 2019-12-29 17:31:53 2019-12-29 17:32:14 t 1 1 214703 611 0.00 2019-12-29 17:29:34 2019-12-29 17:33:26 t 1 1 214704 679 0.00 2019-12-29 17:32:53 2019-12-29 17:33:42 t 1 1 214707 679 0.00 2019-12-29 17:34:20 2019-12-29 17:34:35 t 1 1 214709 615 0.00 2019-12-29 17:19:10 2019-12-29 17:35:12 t 1 1 214713 728 0.00 2019-12-29 17:36:06 2019-12-29 17:36:22 t 1 4 214714 779 0.00 2019-12-29 17:35:51 2019-12-29 17:36:39 t 1 1 214715 615 0.00 2019-12-29 17:35:12 2019-12-29 17:42:25 t 1 1 214716 779 0.00 2019-12-29 17:37:10 2019-12-29 17:43:00 t 1 1 214718 687 0.00 2019-12-29 17:19:57 2019-12-29 17:43:42 t 1 1 214720 498 0.00 2019-12-29 16:15:04 2019-12-29 17:45:11 t 1 2 214721 779 0.00 2019-12-29 17:45:47 2019-12-29 17:46:10 t 1 1 214725 675 0.00 2019-12-29 17:46:39 2019-12-29 17:48:45 t 1 1 214727 779 0.00 2019-12-29 17:49:37 2019-12-29 17:49:55 t 1 1 214730 722 0.00 2019-12-29 17:49:55 2019-12-29 17:53:52 t 1 1 214733 687 0.00 2019-12-29 17:43:42 2019-12-29 17:55:06 t 1 1 214736 562 0.00 2019-12-29 17:55:48 2019-12-29 17:56:27 t 1 1 214738 728 0.00 2019-12-29 17:57:03 2019-12-29 17:58:20 t 1 4 214742 687 0.00 2019-12-29 17:55:06 2019-12-29 18:04:27 t 1 1 214744 220 0.00 2019-12-29 18:00:05 2019-12-29 18:06:51 t 1 1 214748 679 0.00 2019-12-29 18:09:38 2019-12-29 18:09:51 t 1 1 214477 562 0.00 2019-12-29 14:10:34 2019-12-29 14:11:25 t 1 1 214483 611 0.00 2019-12-29 14:06:49 2019-12-29 14:16:17 t 1 1 214485 516 0.00 2019-12-29 14:14:26 2019-12-29 14:17:04 t 1 1 214491 779 0.00 2019-12-29 14:19:25 2019-12-29 14:19:40 t 1 1 214493 744 0.00 2019-12-29 13:28:49 2019-12-29 14:20:21 t 1 1 214500 514 0.00 2019-12-29 12:40:59 2019-12-29 14:34:21 t 1 1 214503 779 0.00 2019-12-29 14:24:22 2019-12-29 14:43:35 t 1 1 214505 779 0.00 2019-12-29 14:44:15 2019-12-29 14:44:30 t 1 1 214510 779 0.00 2019-12-29 14:46:51 2019-12-29 14:47:07 t 1 1 214511 779 0.00 2019-12-29 14:47:16 2019-12-29 14:47:30 t 1 1 214512 707 0.00 2019-12-29 14:00:28 2019-12-29 14:47:41 t 1 1 214514 779 0.00 2019-12-29 14:48:03 2019-12-29 14:48:19 t 1 1 214516 779 0.00 2019-12-29 14:48:27 2019-12-29 14:48:47 t 1 1 214518 779 0.00 2019-12-29 14:48:55 2019-12-29 14:49:24 t 1 1 214527 675 0.00 2019-12-29 14:52:09 2019-12-29 14:55:08 t 1 1 214534 562 0.00 2019-12-29 14:57:51 2019-12-29 14:58:03 t 1 1 214537 707 0.00 2019-12-29 14:47:41 2019-12-29 14:58:55 t 1 1 214542 538 0.00 2019-12-29 14:38:05 2019-12-29 15:00:45 t 1 1 214544 220 0.00 2019-12-29 15:01:17 2019-12-29 15:01:18 t 1 2 214551 779 0.00 2019-12-29 15:04:34 2019-12-29 15:04:54 t 1 1 214552 562 0.00 2019-12-29 15:05:20 2019-12-29 15:05:50 t 1 1 214554 220 0.00 2019-12-29 15:01:46 2019-12-29 15:10:06 t 1 2 214555 728 0.00 2019-12-29 15:11:33 2019-12-29 15:12:39 t 1 4 214560 675 0.00 2019-12-29 15:18:42 2019-12-29 15:18:59 t 1 1 214562 779 0.00 2019-12-29 15:21:37 2019-12-29 15:21:52 t 1 1 214564 637 0.00 2019-12-29 13:54:31 2019-12-29 15:22:34 t 1 1 214568 516 0.00 2019-12-29 15:25:34 2019-12-29 15:29:10 t 1 1 214570 732 0.00 2019-12-29 15:29:02 2019-12-29 15:32:49 t 1 4 214573 728 0.00 2019-12-29 15:32:49 2019-12-29 15:33:55 t 1 4 214576 779 0.00 2019-12-29 15:35:14 2019-12-29 15:39:21 t 1 1 214577 728 0.00 2019-12-29 15:43:18 2019-12-29 15:43:27 t 1 4 214578 591 0.00 2019-12-29 14:59:39 2019-12-29 15:45:19 t 1 1 214581 671 0.00 2019-12-29 15:46:48 2019-12-29 15:50:59 t 1 1 214585 675 0.00 2019-12-29 15:53:04 2019-12-29 15:55:25 t 1 1 214586 779 0.00 2019-12-29 15:55:43 2019-12-29 15:56:08 t 1 1 214587 779 0.00 2019-12-29 15:56:26 2019-12-29 15:56:47 t 1 1 214589 779 0.00 2019-12-29 15:56:59 2019-12-29 15:57:20 t 1 1 214590 779 0.00 2019-12-29 15:57:29 2019-12-29 15:57:54 t 1 1 214597 562 0.00 2019-12-29 16:03:22 2019-12-29 16:04:15 t 1 1 214600 779 0.00 2019-12-29 16:05:06 2019-12-29 16:05:23 t 1 1 214611 779 0.00 2019-12-29 16:10:54 2019-12-29 16:11:08 t 1 1 214614 779 0.00 2019-12-29 16:11:39 2019-12-29 16:11:53 t 1 1 214615 779 0.00 2019-12-29 16:12:02 2019-12-29 16:12:16 t 1 1 214617 779 0.00 2019-12-29 16:14:02 2019-12-29 16:14:21 t 1 1 214619 779 0.00 2019-12-29 16:14:53 2019-12-29 16:16:29 t 1 1 214627 779 0.00 2019-12-29 16:19:05 2019-12-29 16:19:19 t 1 1 214629 779 0.00 2019-12-29 16:19:52 2019-12-29 16:20:07 t 1 1 214630 779 0.00 2019-12-29 16:20:15 2019-12-29 16:20:30 t 1 1 214635 779 0.00 2019-12-29 16:24:40 2019-12-29 16:24:48 t 1 1 214636 591 0.00 2019-12-29 15:46:42 2019-12-29 16:26:01 t 1 1 214638 679 0.00 2019-12-29 16:26:32 2019-12-29 16:27:39 t 1 1 214641 538 0.00 2019-12-29 15:50:42 2019-12-29 16:29:52 t 1 1 214646 779 0.00 2019-12-29 16:37:16 2019-12-29 16:37:28 t 1 1 214649 671 0.00 2019-12-29 16:40:18 2019-12-29 16:42:00 t 1 1 214651 779 0.00 2019-12-29 16:44:00 2019-12-29 16:44:16 t 1 1 214657 220 0.00 2019-12-29 15:10:22 2019-12-29 16:58:29 t 1 1 214659 779 0.00 2019-12-29 16:54:35 2019-12-29 17:00:49 t 1 1 214661 728 0.00 2019-12-29 17:04:12 2019-12-29 17:04:32 t 1 4 214663 779 0.00 2019-12-29 17:00:56 2019-12-29 17:06:24 t 1 1 214666 779 0.00 2019-12-29 17:07:23 2019-12-29 17:08:24 t 1 1 214668 779 0.00 2019-12-29 17:08:56 2019-12-29 17:09:10 t 1 1 214669 716 0.00 2019-12-29 17:08:36 2019-12-29 17:09:55 t 1 1 214670 779 0.00 2019-12-29 17:10:46 2019-12-29 17:11:06 t 1 1 214671 611 0.00 2019-12-29 16:36:31 2019-12-29 17:12:20 t 1 1 214673 514 0.00 2019-12-29 15:03:13 2019-12-29 17:14:13 t 1 1 214685 779 0.00 2019-12-29 17:22:16 2019-12-29 17:23:14 t 1 1 214688 481 0.00 2019-12-29 17:23:50 2019-12-29 17:25:25 t 1 1 214691 728 0.00 2019-12-29 17:25:38 2019-12-29 17:25:46 t 1 4 214694 562 0.00 2019-12-29 17:25:49 2019-12-29 17:27:38 t 1 1 214698 679 0.00 2019-12-29 17:31:37 2019-12-29 17:31:39 t 1 1 214699 562 0.00 2019-12-29 17:31:40 2019-12-29 17:32:01 t 1 1 214706 611 0.00 2019-12-29 17:33:27 2019-12-29 17:34:15 t 1 1 214708 779 0.00 2019-12-29 17:34:07 2019-12-29 17:34:45 t 1 1 214710 578 0.00 2019-12-29 16:46:19 2019-12-29 17:35:27 t 1 1 214712 611 0.00 2019-12-29 17:34:14 2019-12-29 17:36:20 t 1 1 214719 779 0.00 2019-12-29 17:43:55 2019-12-29 17:44:30 t 1 1 214732 779 0.00 2019-12-29 17:54:47 2019-12-29 17:54:56 t 1 1 214734 562 0.00 2019-12-29 17:52:26 2019-12-29 17:55:21 t 1 1 214735 615 0.00 2019-12-29 17:54:32 2019-12-29 17:56:14 t 1 1 214739 637 0.00 2019-12-29 16:58:48 2019-12-29 17:59:47 t 1 1 214740 779 0.00 2019-12-29 17:59:26 2019-12-29 18:00:33 t 1 1 214741 722 0.00 2019-12-29 17:54:32 2019-12-29 18:03:50 t 1 1 214743 722 0.00 2019-12-29 18:04:00 2019-12-29 18:05:12 t 1 1 214751 687 0.00 2019-12-29 18:04:31 2019-12-29 18:13:57 t 1 1 214755 679 0.00 2019-12-29 18:09:59 2019-12-29 18:17:46 t 1 1 214762 562 0.00 2019-12-29 18:17:22 2019-12-29 18:23:47 t 1 1 214765 637 0.00 2019-12-29 18:01:35 2019-12-29 18:26:22 t 1 1 214766 562 0.00 2019-12-29 18:24:54 2019-12-29 18:26:30 t 1 1 214767 779 0.00 2019-12-29 18:26:28 2019-12-29 18:29:57 t 1 1 214771 675 0.00 2019-12-29 18:24:43 2019-12-29 18:32:02 t 1 1 214772 615 0.00 2019-12-29 18:22:31 2019-12-29 18:32:59 t 1 1 214773 498 0.00 2019-12-29 18:20:32 2019-12-29 18:33:31 t 1 2 214774 779 0.00 2019-12-29 18:32:19 2019-12-29 18:35:13 t 1 1 214777 779 0.00 2019-12-29 18:35:27 2019-12-29 18:42:06 t 1 1 214780 779 0.00 2019-12-29 18:42:46 2019-12-29 18:43:04 t 1 1 214781 615 0.00 2019-12-29 18:38:21 2019-12-29 18:45:20 t 1 1 214782 779 0.00 2019-12-29 18:43:49 2019-12-29 18:46:20 t 1 1 214786 562 0.00 2019-12-29 18:47:56 2019-12-29 18:48:50 t 1 1 214787 779 0.00 2019-12-29 18:48:03 2019-12-29 18:49:44 t 1 1 214789 779 0.00 2019-12-29 18:49:53 2019-12-29 18:51:20 t 1 1 214791 637 0.00 2019-12-29 18:26:55 2019-12-29 18:51:46 t 1 1 214792 220 0.00 2019-12-29 18:18:06 2019-12-29 18:53:22 t 1 1 214795 562 0.00 2019-12-29 18:55:57 2019-12-29 18:56:29 t 1 1 214805 562 0.00 2019-12-29 18:56:54 2019-12-29 19:08:30 t 1 1 214807 591 0.00 2019-12-29 19:03:16 2019-12-29 19:10:04 t 1 1 214808 562 0.00 2019-12-29 19:11:15 2019-12-29 19:11:27 t 1 1 214810 671 0.00 2019-12-29 19:09:30 2019-12-29 19:11:41 t 1 1 214490 779 0.00 2019-12-29 14:19:01 2019-12-29 14:19:15 t 1 1 214492 779 0.00 2019-12-29 14:19:50 2019-12-29 14:20:20 t 1 1 214494 220 0.00 2019-12-29 14:08:27 2019-12-29 14:22:12 t 1 1 214495 562 0.00 2019-12-29 14:21:35 2019-12-29 14:23:02 t 1 1 214497 591 0.00 2019-12-29 14:05:33 2019-12-29 14:25:15 t 1 1 214498 728 0.00 2019-12-29 14:29:23 2019-12-29 14:29:32 t 1 4 214499 687 0.00 2019-12-29 14:28:04 2019-12-29 14:31:46 t 1 1 214504 779 0.00 2019-12-29 14:43:43 2019-12-29 14:44:07 t 1 1 214506 779 0.00 2019-12-29 14:44:40 2019-12-29 14:44:55 t 1 1 214507 779 0.00 2019-12-29 14:45:33 2019-12-29 14:45:48 t 1 1 214517 562 0.00 2019-12-29 14:48:37 2019-12-29 14:48:58 t 1 1 214520 728 0.00 2019-12-29 14:50:21 2019-12-29 14:50:30 t 1 4 214523 578 0.00 2019-12-29 14:14:32 2019-12-29 14:52:20 t 1 1 214525 514 0.00 2019-12-29 14:34:21 2019-12-29 14:53:43 t 1 1 214526 220 0.00 2019-12-29 14:48:25 2019-12-29 14:54:52 t 1 1 214528 562 0.00 2019-12-29 14:53:26 2019-12-29 14:55:52 t 1 1 214533 392 0.00 2019-12-29 14:55:55 2019-12-29 14:58:00 t 1 2 214535 779 0.00 2019-12-29 14:58:08 2019-12-29 14:58:24 t 1 1 214536 779 0.00 2019-12-29 14:58:32 2019-12-29 14:58:52 t 1 1 214538 779 0.00 2019-12-29 14:59:00 2019-12-29 14:59:15 t 1 1 214539 779 0.00 2019-12-29 14:59:23 2019-12-29 14:59:39 t 1 1 214540 779 0.00 2019-12-29 14:59:49 2019-12-29 15:00:08 t 1 1 214541 779 0.00 2019-12-29 15:00:16 2019-12-29 15:00:43 t 1 1 214546 779 0.00 2019-12-29 15:01:34 2019-12-29 15:02:06 t 1 1 214547 779 0.00 2019-12-29 15:02:15 2019-12-29 15:02:31 t 1 1 214549 779 0.00 2019-12-29 15:02:40 2019-12-29 15:03:10 t 1 1 214550 562 0.00 2019-12-29 14:59:22 2019-12-29 15:03:29 t 1 1 214553 779 0.00 2019-12-29 15:06:57 2019-12-29 15:08:18 t 1 1 214556 728 0.00 2019-12-29 15:12:45 2019-12-29 15:12:54 t 1 4 214558 392 0.00 2019-12-29 15:01:02 2019-12-29 15:14:21 t 1 2 214559 779 0.00 2019-12-29 15:18:26 2019-12-29 15:18:51 t 1 1 214565 728 0.00 2019-12-29 15:23:13 2019-12-29 15:24:21 t 1 4 214566 516 0.00 2019-12-29 15:22:40 2019-12-29 15:25:35 t 1 1 214572 779 0.00 2019-12-29 15:33:19 2019-12-29 15:33:52 t 1 1 214574 637 0.00 2019-12-29 15:33:40 2019-12-29 15:34:23 t 1 1 214575 562 0.00 2019-12-29 15:38:39 2019-12-29 15:38:58 t 1 1 214579 562 0.00 2019-12-29 15:49:19 2019-12-29 15:50:00 t 1 1 214580 538 0.00 2019-12-29 14:59:53 2019-12-29 15:50:43 t 1 1 214582 779 0.00 2019-12-29 15:39:28 2019-12-29 15:51:38 t 1 1 214584 779 0.00 2019-12-29 15:54:00 2019-12-29 15:55:18 t 1 1 214588 742 0.00 2019-12-29 15:45:50 2019-12-29 15:57:14 t 1 1 214591 779 0.00 2019-12-29 15:58:07 2019-12-29 15:58:24 t 1 1 214592 779 0.00 2019-12-29 15:58:32 2019-12-29 15:59:00 t 1 1 214594 779 0.00 2019-12-29 15:59:26 2019-12-29 16:00:12 t 1 1 214599 779 0.00 2019-12-29 16:04:28 2019-12-29 16:04:58 t 1 1 214603 728 0.00 2019-12-29 16:06:03 2019-12-29 16:06:33 t 1 4 214605 779 0.00 2019-12-29 16:06:02 2019-12-29 16:07:17 t 1 1 214607 779 0.00 2019-12-29 16:09:18 2019-12-29 16:09:36 t 1 1 214608 779 0.00 2019-12-29 16:09:45 2019-12-29 16:10:00 t 1 1 214612 562 0.00 2019-12-29 16:08:55 2019-12-29 16:11:27 t 1 1 214620 779 0.00 2019-12-29 16:16:37 2019-12-29 16:16:53 t 1 1 214621 779 0.00 2019-12-29 16:17:01 2019-12-29 16:17:15 t 1 1 214622 779 0.00 2019-12-29 16:17:25 2019-12-29 16:17:40 t 1 1 214624 779 0.00 2019-12-29 16:17:49 2019-12-29 16:18:04 t 1 1 214625 779 0.00 2019-12-29 16:18:12 2019-12-29 16:18:27 t 1 1 214631 779 0.00 2019-12-29 16:20:38 2019-12-29 16:20:53 t 1 1 214634 779 0.00 2019-12-29 16:21:51 2019-12-29 16:24:26 t 1 1 214640 779 0.00 2019-12-29 16:29:31 2019-12-29 16:29:47 t 1 1 214642 779 0.00 2019-12-29 16:29:54 2019-12-29 16:30:06 t 1 1 214647 637 0.00 2019-12-29 15:34:23 2019-12-29 16:39:01 t 1 1 214654 779 0.00 2019-12-29 16:47:49 2019-12-29 16:52:43 t 1 1 214665 716 0.00 2019-12-29 17:04:18 2019-12-29 17:08:02 t 1 1 214674 728 0.00 2019-12-29 17:14:40 2019-12-29 17:14:49 t 1 4 214678 687 0.00 2019-12-29 17:03:27 2019-12-29 17:16:41 t 1 1 214681 611 0.00 2019-12-29 17:12:19 2019-12-29 17:17:57 t 1 1 214682 591 0.00 2019-12-29 16:28:42 2019-12-29 17:19:07 t 1 1 214684 779 0.00 2019-12-29 17:21:09 2019-12-29 17:22:06 t 1 1 214689 728 0.00 2019-12-29 17:25:23 2019-12-29 17:25:32 t 1 4 214690 611 0.00 2019-12-29 17:24:02 2019-12-29 17:25:45 t 1 1 214701 779 0.00 2019-12-29 17:28:30 2019-12-29 17:32:16 t 1 1 214702 679 0.00 2019-12-29 17:32:21 2019-12-29 17:32:47 t 1 1 214705 679 0.00 2019-12-29 17:33:47 2019-12-29 17:34:14 t 1 1 214711 679 0.00 2019-12-29 17:34:42 2019-12-29 17:36:20 t 1 1 214717 679 0.00 2019-12-29 17:39:38 2019-12-29 17:43:07 t 1 1 214722 728 0.00 2019-12-29 17:46:34 2019-12-29 17:46:42 t 1 4 214723 779 0.00 2019-12-29 17:47:41 2019-12-29 17:47:55 t 1 1 214724 615 0.00 2019-12-29 17:42:51 2019-12-29 17:48:31 t 1 1 214726 722 0.00 2019-12-29 17:47:56 2019-12-29 17:49:27 t 1 1 214728 732 0.00 2019-12-29 17:22:46 2019-12-29 17:50:24 t 1 1 214729 779 0.00 2019-12-29 17:50:36 2019-12-29 17:52:59 t 1 1 214731 615 0.00 2019-12-29 17:48:31 2019-12-29 17:54:32 t 1 1 214737 720 0.00 2019-12-29 12:59:05 2019-12-29 17:58:15 t 1 1 214745 779 0.00 2019-12-29 18:06:22 2019-12-29 18:07:55 t 1 1 214746 779 0.00 2019-12-29 18:08:09 2019-12-29 18:09:11 t 1 1 214747 679 0.00 2019-12-29 18:02:26 2019-12-29 18:09:30 t 1 1 214749 711 0.00 2019-12-29 17:16:48 2019-12-29 18:09:54 t 1 1 214750 675 0.00 2019-12-29 18:07:10 2019-12-29 18:13:35 t 1 1 214757 220 0.00 2019-12-29 18:06:51 2019-12-29 18:18:06 t 1 1 214758 611 0.00 2019-12-29 17:36:23 2019-12-29 18:18:16 t 1 1 214759 551 0.00 2019-12-29 18:18:07 2019-12-29 18:18:29 t 1 1 214764 779 0.00 2019-12-29 18:12:22 2019-12-29 18:26:11 t 1 1 214769 779 0.00 2019-12-29 18:30:54 2019-12-29 18:31:09 t 1 1 214770 779 0.00 2019-12-29 18:31:51 2019-12-29 18:31:52 t 1 1 214775 615 0.00 2019-12-29 18:32:59 2019-12-29 18:38:21 t 1 1 214779 562 0.00 2019-12-29 18:42:11 2019-12-29 18:42:52 t 1 1 214783 779 0.00 2019-12-29 18:47:44 2019-12-29 18:47:54 t 1 1 214784 591 0.00 2019-12-29 18:44:02 2019-12-29 18:48:06 t 1 1 214788 551 0.00 2019-12-29 18:18:28 2019-12-29 18:50:03 t 1 1 214790 779 0.00 2019-12-29 18:50:33 2019-12-29 18:51:35 t 1 1 214794 779 0.00 2019-12-29 18:55:24 2019-12-29 18:55:36 t 1 1 214796 779 0.00 2019-12-29 18:55:44 2019-12-29 18:58:20 t 1 1 214797 679 0.00 2019-12-29 18:59:14 2019-12-29 18:59:17 t 1 1 214799 625 0.00 2019-12-29 18:30:13 2019-12-29 19:02:06 t 1 1 214800 615 0.00 2019-12-29 18:45:20 2019-12-29 19:03:00 t 1 1 214802 615 0.00 2019-12-29 19:03:00 2019-12-29 19:05:40 t 1 1 214803 637 0.00 2019-12-29 18:52:18 2019-12-29 19:07:31 t 1 1 214811 637 0.00 2019-12-29 19:07:34 2019-12-29 19:13:42 t 1 1 214752 562 0.00 2019-12-29 18:12:27 2019-12-29 18:14:20 t 1 1 214753 625 0.00 2019-12-29 17:54:04 2019-12-29 18:14:34 t 1 1 214754 687 0.00 2019-12-29 18:15:38 2019-12-29 18:15:51 t 1 1 214756 687 0.00 2019-12-29 18:16:07 2019-12-29 18:17:57 t 1 1 214760 615 0.00 2019-12-29 18:15:43 2019-12-29 18:21:32 t 1 1 214761 679 0.00 2019-12-29 18:20:55 2019-12-29 18:23:06 t 1 1 214763 562 0.00 2019-12-29 18:24:33 2019-12-29 18:24:36 t 1 1 214768 625 0.00 2019-12-29 18:14:34 2019-12-29 18:30:13 t 1 1 214776 483 0.00 2019-12-29 18:14:43 2019-12-29 18:40:25 t 1 1 214778 681 0.00 2019-12-29 16:05:11 2019-12-29 18:42:07 t 1 1 214785 779 0.00 2019-12-29 18:46:40 2019-12-29 18:48:20 t 1 1 214793 591 0.00 2019-12-29 18:48:06 2019-12-29 18:54:45 t 1 1 214798 551 0.00 2019-12-29 18:50:28 2019-12-29 19:01:14 t 1 1 214801 591 0.00 2019-12-29 18:54:45 2019-12-29 19:03:16 t 1 1 214804 722 0.00 2019-12-29 19:04:37 2019-12-29 19:07:34 t 1 1 214806 481 0.00 2019-12-29 17:25:35 2019-12-29 19:09:52 t 1 1 214809 779 0.00 2019-12-29 18:59:24 2019-12-29 19:11:32 t 1 1 214815 562 0.00 2019-12-29 19:16:10 2019-12-29 19:18:29 t 1 1 214816 611 0.00 2019-12-29 18:57:30 2019-12-29 19:19:18 t 1 1 214819 551 0.00 2019-12-29 19:01:14 2019-12-29 19:21:00 t 1 1 214822 687 0.00 2019-12-29 19:14:14 2019-12-29 19:23:50 t 1 1 214824 711 0.00 2019-12-29 19:10:35 2019-12-29 19:24:53 t 1 1 214831 779 0.00 2019-12-29 19:26:09 2019-12-29 19:29:40 t 1 1 214833 779 0.00 2019-12-29 19:31:48 2019-12-29 19:32:17 t 1 1 214835 691 0.00 2019-12-29 19:31:49 2019-12-29 19:33:54 t 1 1 214846 779 0.00 2019-12-29 19:44:23 2019-12-29 19:44:54 t 1 1 214850 779 0.00 2019-12-29 19:49:14 2019-12-29 19:49:24 t 1 1 214851 683 0.00 2019-12-29 19:35:03 2019-12-29 19:49:45 t 1 1 214855 779 0.00 2019-12-29 19:54:34 2019-12-29 19:54:36 t 1 1 214859 707 0.00 2019-12-29 18:10:56 2019-12-29 19:57:00 t 1 1 214862 711 0.00 2019-12-29 19:44:10 2019-12-29 19:58:37 t 1 1 214864 726 0.00 2019-12-29 19:40:54 2019-12-29 19:58:59 t 1 1 214866 779 0.00 2019-12-29 19:59:37 2019-12-29 19:59:53 t 1 1 214867 779 0.00 2019-12-29 20:00:18 2019-12-29 20:00:35 t 1 1 214868 779 0.00 2019-12-29 20:02:02 2019-12-29 20:02:18 t 1 1 214870 611 0.00 2019-12-29 19:35:50 2019-12-29 20:02:30 t 1 1 214873 516 0.00 2019-12-29 18:41:01 2019-12-29 20:06:51 t 1 1 214876 709 0.00 2019-12-29 20:02:03 2019-12-29 20:08:07 t 1 1 214878 544 0.00 2019-12-29 20:09:37 2019-12-29 20:15:09 t 1 1 214880 763 0.00 2019-12-29 20:14:22 2019-12-29 20:16:21 t 1 1 214882 220 0.00 2019-12-29 20:06:37 2019-12-29 20:17:24 t 1 1 214883 220 0.00 2019-12-29 20:01:55 2019-12-29 20:17:29 t 1 2 214886 562 0.00 2019-12-29 20:19:24 2019-12-29 20:19:43 t 1 1 214893 544 0.00 2019-12-29 20:21:21 2019-12-29 20:26:02 t 1 1 214900 591 0.00 2019-12-29 19:15:16 2019-12-29 20:31:34 t 1 1 214902 562 0.00 2019-12-29 20:32:05 2019-12-29 20:34:47 t 1 1 214908 220 0.00 2019-12-29 20:28:57 2019-12-29 20:40:26 t 1 1 214909 679 0.00 2019-12-29 20:40:24 2019-12-29 20:40:54 t 1 1 214911 562 0.00 2019-12-29 20:41:32 2019-12-29 20:43:14 t 1 1 214914 760 0.00 2019-12-29 20:37:14 2019-12-29 20:47:52 t 1 1 214915 736 0.00 2019-12-29 20:39:07 2019-12-29 20:48:14 t 1 1 214917 611 0.00 2019-12-29 20:03:54 2019-12-29 20:48:21 t 1 1 214918 220 0.00 2019-12-29 20:40:26 2019-12-29 20:48:33 t 1 1 214919 683 0.00 2019-12-29 19:59:50 2019-12-29 20:48:37 t 1 1 214922 779 0.00 2019-12-29 20:51:56 2019-12-29 20:52:25 t 1 1 214923 779 0.00 2019-12-29 20:52:36 2019-12-29 20:52:37 t 1 1 214925 779 0.00 2019-12-29 20:52:46 2019-12-29 20:52:47 t 1 1 214927 779 0.00 2019-12-29 20:55:45 2019-12-29 20:56:10 t 1 1 214937 760 0.00 2019-12-29 20:47:52 2019-12-29 21:07:34 t 1 1 214940 722 0.00 2019-12-29 20:55:36 2019-12-29 21:11:15 t 1 1 214941 722 0.00 2019-12-29 21:11:27 2019-12-29 21:11:29 t 1 1 214943 736 0.00 2019-12-29 20:48:26 2019-12-29 21:16:14 t 1 1 214945 311 0.00 2019-12-29 21:07:34 2019-12-29 21:20:57 t 1 2 214948 779 0.00 2019-12-29 21:09:46 2019-12-29 21:25:36 t 1 1 214949 220 0.00 2019-12-29 21:05:55 2019-12-29 21:26:35 t 1 1 214955 779 0.00 2019-12-29 21:25:36 2019-12-29 21:36:55 t 1 1 214956 779 0.00 2019-12-29 21:37:03 2019-12-29 21:37:37 t 1 1 214959 637 0.00 2019-12-29 21:36:39 2019-12-29 21:40:32 t 1 1 214962 631 0.00 2019-12-29 21:40:58 2019-12-29 21:42:37 t 1 1 214969 779 0.00 2019-12-29 21:47:52 2019-12-29 21:48:03 t 1 1 214974 728 0.00 2019-12-29 21:47:56 2019-12-29 21:51:35 t 1 4 214977 779 0.00 2019-12-29 21:56:01 2019-12-29 21:56:10 t 1 1 214986 716 0.00 2019-12-29 21:42:53 2019-12-29 22:03:46 t 1 1 214989 760 0.00 2019-12-29 21:57:41 2019-12-29 22:06:14 t 1 1 214991 220 0.00 2019-12-29 21:46:42 2019-12-29 22:07:05 t 1 1 214995 687 0.00 2019-12-29 22:10:47 2019-12-29 22:11:39 t 1 1 214999 611 0.00 2019-12-29 21:32:07 2019-12-29 22:15:54 t 1 1 215000 681 0.00 2019-12-29 22:06:12 2019-12-29 22:18:33 t 1 1 215001 220 0.00 2019-12-29 22:07:05 2019-12-29 22:19:54 t 1 1 215004 578 0.00 2019-12-29 22:05:56 2019-12-29 22:20:33 t 1 1 215005 562 0.00 2019-12-29 22:20:47 2019-12-29 22:21:09 t 1 1 215010 716 0.00 2019-12-29 22:19:31 2019-12-29 22:26:36 t 1 1 215012 591 0.00 2019-12-29 21:44:28 2019-12-29 22:31:01 t 1 1 215013 395 0.00 2019-12-29 22:31:11 2019-12-29 22:31:11 f 1 2 215014 562 0.00 2019-12-29 22:31:36 2019-12-29 22:31:54 t 1 1 215016 220 0.00 2019-12-29 22:19:54 2019-12-29 22:32:46 t 1 1 215022 220 0.00 2019-12-29 22:32:46 2019-12-29 22:42:12 t 1 1 215024 779 0.00 2019-12-29 22:42:41 2019-12-29 22:42:56 t 1 1 215025 779 0.00 2019-12-29 22:43:16 2019-12-29 22:44:56 t 1 1 215029 773 0.00 2019-12-29 22:35:40 2019-12-29 22:48:57 t 1 1 215031 744 0.00 2019-12-29 22:26:35 2019-12-29 22:52:22 t 1 1 215034 562 0.00 2019-12-29 22:53:00 2019-12-29 22:53:21 t 1 1 215036 220 0.00 2019-12-29 22:42:12 2019-12-29 22:54:51 t 1 1 215038 779 0.00 2019-12-29 22:58:17 2019-12-29 22:58:37 t 1 1 215039 779 0.00 2019-12-29 23:01:06 2019-12-29 23:01:29 t 1 1 215041 591 0.00 2019-12-29 22:31:01 2019-12-29 23:01:40 t 1 1 215042 687 0.00 2019-12-29 22:39:11 2019-12-29 23:02:41 t 1 1 215044 611 0.00 2019-12-29 22:15:57 2019-12-29 23:03:06 t 1 1 215051 220 0.00 2019-12-29 23:12:25 2019-12-29 23:12:42 t 1 2 215054 611 0.00 2019-12-29 23:03:14 2019-12-29 23:14:23 t 1 1 215056 562 0.00 2019-12-29 23:14:28 2019-12-29 23:14:52 t 1 1 215059 779 0.00 2019-12-29 23:16:53 2019-12-29 23:17:42 t 1 1 215062 538 0.00 2019-12-29 23:19:56 2019-12-29 23:20:02 t 1 1 215065 611 0.00 2019-12-29 23:14:30 2019-12-29 23:21:14 t 1 1 215066 220 0.00 2019-12-29 23:15:24 2019-12-29 23:22:06 t 1 1 215069 730 0.00 2019-12-29 23:17:55 2019-12-29 23:29:54 t 1 1 215073 487 0.00 2019-12-29 23:34:10 2019-12-29 23:34:57 t 1 2 214812 687 0.00 2019-12-29 18:19:15 2019-12-29 19:14:14 t 1 1 214825 637 0.00 2019-12-29 19:23:29 2019-12-29 19:24:59 t 1 1 214826 779 0.00 2019-12-29 19:24:25 2019-12-29 19:25:58 t 1 1 214828 779 0.00 2019-12-29 19:24:11 2019-12-29 19:26:21 t 1 1 214829 675 0.00 2019-12-29 18:56:37 2019-12-29 19:27:27 t 1 1 214830 637 0.00 2019-12-29 19:26:35 2019-12-29 19:28:39 t 1 1 214832 637 0.00 2019-12-29 19:28:43 2019-12-29 19:31:05 t 1 1 214834 637 0.00 2019-12-29 19:32:34 2019-12-29 19:33:42 t 1 1 214837 562 0.00 2019-12-29 19:32:33 2019-12-29 19:34:14 t 1 1 214840 562 0.00 2019-12-29 19:36:33 2019-12-29 19:37:16 t 1 1 214841 544 0.00 2019-12-29 19:33:33 2019-12-29 19:38:22 t 1 1 214843 726 0.00 2019-12-29 19:11:44 2019-12-29 19:40:54 t 1 1 214844 711 0.00 2019-12-29 19:24:53 2019-12-29 19:44:10 t 1 1 214852 562 0.00 2019-12-29 19:48:24 2019-12-29 19:49:55 t 1 1 214854 779 0.00 2019-12-29 19:53:47 2019-12-29 19:54:22 t 1 1 214857 625 0.00 2019-12-29 19:02:06 2019-12-29 19:56:22 t 1 1 214858 779 0.00 2019-12-29 19:56:34 2019-12-29 19:56:51 t 1 1 214860 562 0.00 2019-12-29 19:53:17 2019-12-29 19:57:16 t 1 1 214863 675 0.00 2019-12-29 19:44:49 2019-12-29 19:58:43 t 1 1 214871 562 0.00 2019-12-29 20:03:50 2019-12-29 20:04:07 t 1 1 214872 679 0.00 2019-12-29 20:03:07 2019-12-29 20:05:18 t 1 1 214875 709 0.00 2019-12-29 20:07:54 2019-12-29 20:07:55 t 1 1 214877 562 0.00 2019-12-29 20:14:31 2019-12-29 20:14:57 t 1 1 214881 671 0.00 2019-12-29 20:12:46 2019-12-29 20:17:11 t 1 1 214890 763 0.00 2019-12-29 20:21:07 2019-12-29 20:23:41 t 1 1 214894 760 0.00 2019-12-29 20:13:56 2019-12-29 20:26:58 t 1 1 214896 779 0.00 2019-12-29 20:28:09 2019-12-29 20:28:31 t 1 1 214898 220 0.00 2019-12-29 20:17:24 2019-12-29 20:28:57 t 1 1 214901 591 0.00 2019-12-29 20:31:34 2019-12-29 20:33:49 t 1 1 214904 578 0.00 2019-12-29 17:35:27 2019-12-29 20:38:29 t 1 1 214906 679 0.00 2019-12-29 20:34:25 2019-12-29 20:39:50 t 1 1 214912 625 0.00 2019-12-29 20:44:30 2019-12-29 20:45:33 t 1 1 214920 779 0.00 2019-12-29 20:50:01 2019-12-29 20:50:43 t 1 1 214926 779 0.00 2019-12-29 20:53:33 2019-12-29 20:54:33 t 1 1 214928 779 0.00 2019-12-29 20:58:09 2019-12-29 20:58:21 t 1 1 214929 724 0.00 2019-12-29 20:56:16 2019-12-29 20:59:17 t 1 1 214931 779 0.00 2019-12-29 20:59:22 2019-12-29 20:59:37 t 1 1 214933 392 0.00 2019-12-29 20:48:09 2019-12-29 20:59:48 t 1 2 214935 220 0.00 2019-12-29 20:59:23 2019-12-29 21:05:55 t 1 1 214936 779 0.00 2019-12-29 21:04:47 2019-12-29 21:06:34 t 1 1 214938 779 0.00 2019-12-29 21:07:28 2019-12-29 21:07:37 t 1 1 214944 625 0.00 2019-12-29 20:52:23 2019-12-29 21:19:02 t 1 1 214950 720 0.00 2019-12-29 17:58:15 2019-12-29 21:29:39 t 1 1 214951 760 0.00 2019-12-29 21:07:34 2019-12-29 21:30:34 t 1 1 214952 722 0.00 2019-12-29 21:11:40 2019-12-29 21:31:34 t 1 1 214954 637 0.00 2019-12-29 19:34:50 2019-12-29 21:36:39 t 1 1 214957 760 0.00 2019-12-29 21:30:34 2019-12-29 21:39:41 t 1 1 214961 562 0.00 2019-12-29 20:43:54 2019-12-29 21:42:13 t 1 1 214965 220 0.00 2019-12-29 21:42:18 2019-12-29 21:46:37 t 1 1 214967 779 0.00 2019-12-29 21:42:34 2019-12-29 21:46:48 t 1 1 214970 779 0.00 2019-12-29 21:46:58 2019-12-29 21:49:22 t 1 1 214978 691 0.00 2019-12-29 21:52:07 2019-12-29 21:56:34 t 1 1 214979 779 0.00 2019-12-29 21:56:40 2019-12-29 21:57:27 t 1 1 214982 728 0.00 2019-12-29 21:54:11 2019-12-29 21:59:14 t 1 4 214983 562 0.00 2019-12-29 22:00:19 2019-12-29 22:00:43 t 1 1 214984 779 0.00 2019-12-29 22:00:28 2019-12-29 22:03:17 t 1 1 214987 578 0.00 2019-12-29 20:38:29 2019-12-29 22:05:56 t 1 1 214990 675 0.00 2019-12-29 22:03:51 2019-12-29 22:06:44 t 1 1 214993 687 0.00 2019-12-29 22:10:12 2019-12-29 22:10:47 t 1 1 214994 562 0.00 2019-12-29 22:11:11 2019-12-29 22:11:33 t 1 1 214997 481 0.00 2019-12-29 21:26:53 2019-12-29 22:14:43 t 1 1 215002 728 0.00 2019-12-29 22:19:54 2019-12-29 22:20:02 t 1 4 215006 779 0.00 2019-12-29 22:17:03 2019-12-29 22:22:02 t 1 1 215007 779 0.00 2019-12-29 22:22:12 2019-12-29 22:22:31 t 1 1 215017 728 0.00 2019-12-29 22:24:45 2019-12-29 22:36:36 t 1 4 215019 675 0.00 2019-12-29 22:30:55 2019-12-29 22:38:03 t 1 1 215032 487 0.00 2019-12-29 22:52:08 2019-12-29 22:52:33 t 1 2 215035 551 0.00 2019-12-29 20:48:19 2019-12-29 22:53:33 t 1 1 215037 779 0.00 2019-12-29 22:56:07 2019-12-29 22:56:28 t 1 1 215049 220 0.00 2019-12-29 23:10:17 2019-12-29 23:11:52 t 1 2 215050 779 0.00 2019-12-29 23:09:22 2019-12-29 23:12:33 t 1 1 215052 392 0.00 2019-12-29 22:51:28 2019-12-29 23:12:59 t 1 2 215053 622 0.00 2019-12-29 21:23:17 2019-12-29 23:14:21 t 1 1 215055 779 0.00 2019-12-29 23:13:05 2019-12-29 23:14:46 t 1 1 215057 220 0.00 2019-12-29 23:07:18 2019-12-29 23:15:24 t 1 1 215058 779 0.00 2019-12-29 23:15:17 2019-12-29 23:15:32 t 1 1 215060 730 0.00 2019-12-29 23:12:45 2019-12-29 23:17:55 t 1 1 215063 687 0.00 2019-12-29 23:02:46 2019-12-29 23:20:18 t 1 1 215064 779 0.00 2019-12-29 23:19:35 2019-12-29 23:20:50 t 1 1 215067 779 0.00 2019-12-29 23:23:50 2019-12-29 23:24:25 t 1 1 215072 738 0.00 2019-12-29 23:31:00 2019-12-29 23:34:03 t 1 1 215074 779 0.00 2019-12-29 23:26:47 2019-12-29 23:35:51 t 1 1 215076 220 0.00 2019-12-29 23:31:09 2019-12-29 23:37:12 t 1 1 215080 730 0.00 2019-12-29 23:29:54 2019-12-29 23:38:49 t 1 1 215081 611 0.00 2019-12-29 23:21:25 2019-12-29 23:41:29 t 1 1 215082 538 0.00 2019-12-29 23:20:07 2019-12-29 23:43:50 t 1 1 215088 681 0.00 2019-12-29 22:18:33 2019-12-29 23:54:46 t 1 1 215090 562 0.00 2019-12-29 23:58:54 2019-12-29 23:59:15 t 1 1 215091 730 0.00 2019-12-29 23:57:31 2019-12-30 00:00:22 t 1 1 215096 679 0.00 2019-12-29 23:50:15 2019-12-30 00:11:05 t 1 1 215100 562 0.00 2019-12-30 00:17:15 2019-12-30 00:17:35 t 1 1 215105 687 0.00 2019-12-30 00:09:07 2019-12-30 00:32:10 t 1 1 215112 562 0.00 2019-12-30 00:55:46 2019-12-30 00:56:07 t 1 1 215122 681 0.00 2019-12-30 00:55:50 2019-12-30 01:27:24 t 1 1 215123 562 0.00 2019-12-30 01:28:00 2019-12-30 01:28:18 t 1 1 215129 687 0.00 2019-12-30 01:36:16 2019-12-30 01:42:02 t 1 1 215130 514 0.00 2019-12-30 01:34:27 2019-12-30 01:46:33 t 1 1 215131 687 0.00 2019-12-30 01:42:02 2019-12-30 01:47:49 t 1 1 215132 562 0.00 2019-12-30 01:49:19 2019-12-30 01:49:43 t 1 1 215135 562 0.00 2019-12-30 02:00:06 2019-12-30 02:00:26 t 1 1 215140 679 0.00 2019-12-30 01:45:42 2019-12-30 02:21:39 t 1 1 215147 687 0.00 2019-12-30 02:12:14 2019-12-30 02:47:12 t 1 1 215148 687 0.00 2019-12-30 02:47:12 2019-12-30 02:50:21 t 1 1 215149 562 0.00 2019-12-30 02:50:42 2019-12-30 02:51:00 t 1 1 215159 562 0.00 2019-12-30 03:57:55 2019-12-30 03:58:03 t 1 1 215160 562 0.00 2019-12-30 04:03:51 2019-12-30 04:04:16 t 1 1 215161 689 0.00 2019-12-30 04:06:42 2019-12-30 04:10:30 t 1 1 214813 779 0.00 2019-12-29 19:11:40 2019-12-29 19:14:20 t 1 1 214814 591 0.00 2019-12-29 19:10:04 2019-12-29 19:15:16 t 1 1 214817 637 0.00 2019-12-29 19:17:48 2019-12-29 19:19:20 t 1 1 214818 487 0.00 2019-12-29 19:01:47 2019-12-29 19:20:19 t 1 2 214820 779 0.00 2019-12-29 19:12:53 2019-12-29 19:23:02 t 1 1 214821 637 0.00 2019-12-29 19:19:12 2019-12-29 19:23:30 t 1 1 214823 779 0.00 2019-12-29 19:23:38 2019-12-29 19:24:03 t 1 1 214827 562 0.00 2019-12-29 19:25:33 2019-12-29 19:26:18 t 1 1 214836 779 0.00 2019-12-29 19:32:24 2019-12-29 19:34:03 t 1 1 214838 611 0.00 2019-12-29 19:19:18 2019-12-29 19:36:09 t 1 1 214839 779 0.00 2019-12-29 19:35:45 2019-12-29 19:36:38 t 1 1 214842 544 0.00 2019-12-29 19:38:21 2019-12-29 19:38:33 t 1 1 214845 562 0.00 2019-12-29 19:43:21 2019-12-29 19:44:22 t 1 1 214847 724 0.00 2019-12-29 17:29:57 2019-12-29 19:45:05 t 1 1 214848 779 0.00 2019-12-29 19:45:15 2019-12-29 19:45:30 t 1 1 214849 779 0.00 2019-12-29 19:46:14 2019-12-29 19:46:52 t 1 1 214853 562 0.00 2019-12-29 19:50:10 2019-12-29 19:52:43 t 1 1 214856 779 0.00 2019-12-29 19:55:44 2019-12-29 19:56:22 t 1 1 214861 779 0.00 2019-12-29 19:57:10 2019-12-29 19:58:14 t 1 1 214865 683 0.00 2019-12-29 19:49:45 2019-12-29 19:59:50 t 1 1 214869 779 0.00 2019-12-29 20:01:12 2019-12-29 20:02:22 t 1 1 214874 711 0.00 2019-12-29 19:58:37 2019-12-29 20:07:16 t 1 1 214879 779 0.00 2019-12-29 20:15:25 2019-12-29 20:15:50 t 1 1 214884 544 0.00 2019-12-29 20:15:46 2019-12-29 20:18:25 t 1 1 214885 711 0.00 2019-12-29 20:07:16 2019-12-29 20:18:50 t 1 1 214887 675 0.00 2019-12-29 20:14:57 2019-12-29 20:20:18 t 1 1 214888 763 0.00 2019-12-29 20:16:21 2019-12-29 20:21:08 t 1 1 214889 779 0.00 2019-12-29 20:18:28 2019-12-29 20:21:39 t 1 1 214891 779 0.00 2019-12-29 20:23:48 2019-12-29 20:24:25 t 1 1 214892 562 0.00 2019-12-29 20:21:44 2019-12-29 20:24:58 t 1 1 214895 625 0.00 2019-12-29 19:56:22 2019-12-29 20:27:22 t 1 1 214897 779 0.00 2019-12-29 20:28:51 2019-12-29 20:28:56 t 1 1 214899 392 0.00 2019-12-29 20:14:10 2019-12-29 20:29:10 t 1 2 214903 760 0.00 2019-12-29 20:26:58 2019-12-29 20:37:10 t 1 1 214905 675 0.00 2019-12-29 20:35:50 2019-12-29 20:38:40 t 1 1 214907 679 0.00 2019-12-29 20:39:58 2019-12-29 20:40:16 t 1 1 214910 779 0.00 2019-12-29 20:41:16 2019-12-29 20:41:50 t 1 1 214913 625 0.00 2019-12-29 20:45:32 2019-12-29 20:46:38 t 1 1 214916 551 0.00 2019-12-29 19:21:00 2019-12-29 20:48:19 t 1 1 214921 779 0.00 2019-12-29 20:50:53 2019-12-29 20:52:22 t 1 1 214924 683 0.00 2019-12-29 20:48:36 2019-12-29 20:52:39 t 1 1 214930 220 0.00 2019-12-29 20:48:33 2019-12-29 20:59:23 t 1 1 214932 779 0.00 2019-12-29 20:59:44 2019-12-29 20:59:45 t 1 1 214934 516 0.00 2019-12-29 20:19:23 2019-12-29 21:05:45 t 1 1 214939 671 0.00 2019-12-29 21:05:30 2019-12-29 21:09:02 t 1 1 214942 611 0.00 2019-12-29 20:58:39 2019-12-29 21:14:05 t 1 1 214946 736 0.00 2019-12-29 21:16:48 2019-12-29 21:24:12 t 1 1 214947 481 0.00 2019-12-29 19:09:52 2019-12-29 21:25:27 t 1 1 214953 611 0.00 2019-12-29 21:23:58 2019-12-29 21:32:02 t 1 1 214958 779 0.00 2019-12-29 21:38:33 2019-12-29 21:40:22 t 1 1 214960 220 0.00 2019-12-29 21:26:35 2019-12-29 21:42:10 t 1 1 214963 716 0.00 2019-12-29 21:28:04 2019-12-29 21:42:53 t 1 1 214964 675 0.00 2019-12-29 21:15:46 2019-12-29 21:43:53 t 1 1 214966 562 0.00 2019-12-29 21:45:46 2019-12-29 21:46:46 t 1 1 214968 722 0.00 2019-12-29 21:31:34 2019-12-29 21:47:11 t 1 1 214971 637 0.00 2019-12-29 21:41:33 2019-12-29 21:49:23 t 1 1 214972 760 0.00 2019-12-29 21:39:41 2019-12-29 21:50:06 t 1 1 214973 722 0.00 2019-12-29 21:47:11 2019-12-29 21:51:03 t 1 1 214975 562 0.00 2019-12-29 21:52:48 2019-12-29 21:53:05 t 1 1 214976 649 0.00 2019-12-29 21:33:48 2019-12-29 21:54:23 t 1 1 214980 760 0.00 2019-12-29 21:50:06 2019-12-29 21:57:41 t 1 1 214981 671 0.00 2019-12-29 21:56:56 2019-12-29 21:59:07 t 1 1 214985 538 0.00 2019-12-29 19:33:20 2019-12-29 22:03:42 t 1 1 214988 681 0.00 2019-12-29 18:42:00 2019-12-29 22:06:12 t 1 1 214992 728 0.00 2019-12-29 22:09:25 2019-12-29 22:10:00 t 1 4 214996 687 0.00 2019-12-29 22:11:51 2019-12-29 22:13:35 t 1 1 214998 625 0.00 2019-12-29 21:22:47 2019-12-29 22:15:02 t 1 1 215003 728 0.00 2019-12-29 22:20:08 2019-12-29 22:20:25 t 1 4 215008 779 0.00 2019-12-29 22:22:39 2019-12-29 22:22:50 t 1 1 215009 779 0.00 2019-12-29 22:23:39 2019-12-29 22:24:02 t 1 1 215011 779 0.00 2019-12-29 22:26:21 2019-12-29 22:27:23 t 1 1 215015 514 0.00 2019-12-29 20:52:09 2019-12-29 22:32:18 t 1 1 215018 779 0.00 2019-12-29 22:28:23 2019-12-29 22:37:27 t 1 1 215020 687 0.00 2019-12-29 22:14:42 2019-12-29 22:39:11 t 1 1 215021 779 0.00 2019-12-29 22:40:36 2019-12-29 22:40:57 t 1 1 215023 562 0.00 2019-12-29 22:42:20 2019-12-29 22:42:39 t 1 1 215026 538 0.00 2019-12-29 22:03:45 2019-12-29 22:45:15 t 1 1 215027 779 0.00 2019-12-29 22:45:32 2019-12-29 22:45:53 t 1 1 215028 716 0.00 2019-12-29 22:43:50 2019-12-29 22:47:41 t 1 1 215030 487 0.00 2019-12-29 22:51:42 2019-12-29 22:51:49 t 1 2 215033 487 0.00 2019-12-29 22:52:49 2019-12-29 22:52:54 t 1 2 215040 220 0.00 2019-12-29 22:54:51 2019-12-29 23:01:29 t 1 1 215043 779 0.00 2019-12-29 23:02:21 2019-12-29 23:02:43 t 1 1 215045 562 0.00 2019-12-29 23:03:46 2019-12-29 23:04:08 t 1 1 215046 220 0.00 2019-12-29 23:01:29 2019-12-29 23:07:18 t 1 1 215047 730 0.00 2019-12-29 23:06:35 2019-12-29 23:08:15 t 1 1 215048 730 0.00 2019-12-29 23:08:24 2019-12-29 23:09:28 t 1 4 215061 578 0.00 2019-12-29 22:20:33 2019-12-29 23:18:33 t 1 1 215068 562 0.00 2019-12-29 23:25:13 2019-12-29 23:25:33 t 1 1 215070 220 0.00 2019-12-29 23:22:06 2019-12-29 23:31:09 t 1 1 215071 487 0.00 2019-12-29 23:33:44 2019-12-29 23:33:51 t 1 2 215075 562 0.00 2019-12-29 23:36:03 2019-12-29 23:36:22 t 1 1 215077 779 0.00 2019-12-29 23:36:49 2019-12-29 23:37:13 t 1 1 215085 562 0.00 2019-12-29 23:48:09 2019-12-29 23:48:31 t 1 1 215086 730 0.00 2019-12-29 23:40:09 2019-12-29 23:49:52 t 1 1 215089 730 0.00 2019-12-29 23:49:52 2019-12-29 23:57:31 t 1 1 215092 687 0.00 2019-12-29 23:20:18 2019-12-30 00:01:29 t 1 1 215093 220 0.00 2019-12-29 23:37:12 2019-12-30 00:05:10 t 1 1 215094 687 0.00 2019-12-30 00:01:29 2019-12-30 00:08:47 t 1 1 215097 707 0.00 2019-12-29 21:01:08 2019-12-30 00:11:23 t 1 1 215098 220 0.00 2019-12-30 00:05:10 2019-12-30 00:12:49 t 1 1 215099 220 0.00 2019-12-30 00:12:49 2019-12-30 00:16:02 t 1 1 215101 562 0.00 2019-12-30 00:19:31 2019-12-30 00:19:38 t 1 1 215104 679 0.00 2019-12-30 00:11:05 2019-12-30 00:30:07 t 1 1 215107 679 0.00 2019-12-30 00:30:07 2019-12-30 00:38:06 t 1 1 215114 720 0.00 2019-12-30 00:39:40 2019-12-30 00:56:24 t 1 1 215115 562 0.00 2019-12-30 01:06:28 2019-12-30 01:06:49 t 1 1 215078 562 0.00 2019-12-29 23:36:44 2019-12-29 23:37:35 t 1 1 215079 562 0.00 2019-12-29 23:37:42 2019-12-29 23:38:12 t 1 1 215083 779 0.00 2019-12-29 23:37:37 2019-12-29 23:45:33 t 1 1 215084 779 0.00 2019-12-29 23:45:41 2019-12-29 23:46:56 t 1 1 215087 679 0.00 2019-12-29 23:26:27 2019-12-29 23:50:15 t 1 1 215095 562 0.00 2019-12-30 00:09:40 2019-12-30 00:10:01 t 1 1 215102 681 0.00 2019-12-29 23:54:46 2019-12-30 00:23:23 t 1 1 215103 562 0.00 2019-12-30 00:28:01 2019-12-30 00:28:19 t 1 1 215106 562 0.00 2019-12-30 00:34:16 2019-12-30 00:34:42 t 1 1 215108 720 0.00 2019-12-29 21:29:39 2019-12-30 00:39:40 t 1 1 215109 562 0.00 2019-12-30 00:45:04 2019-12-30 00:45:22 t 1 1 215110 622 0.00 2019-12-30 00:50:37 2019-12-30 00:54:45 t 1 1 215111 681 0.00 2019-12-30 00:23:23 2019-12-30 00:55:50 t 1 1 215113 544 0.00 2019-12-30 00:50:13 2019-12-30 00:56:19 t 1 1 215117 514 0.00 2019-12-30 01:08:57 2019-12-30 01:15:19 t 1 1 215120 637 0.00 2019-12-29 21:49:23 2019-12-30 01:20:34 t 1 1 215126 514 0.00 2019-12-30 01:22:46 2019-12-30 01:34:27 t 1 1 215127 687 0.00 2019-12-30 01:30:24 2019-12-30 01:36:16 t 1 1 215128 562 0.00 2019-12-30 01:38:37 2019-12-30 01:38:58 t 1 1 215133 687 0.00 2019-12-30 01:47:49 2019-12-30 01:49:48 t 1 1 215134 514 0.00 2019-12-30 01:46:33 2019-12-30 01:58:47 t 1 1 215139 562 0.00 2019-12-30 02:18:28 2019-12-30 02:18:46 t 1 1 215141 679 0.00 2019-12-30 02:22:32 2019-12-30 02:23:38 t 1 1 215143 562 0.00 2019-12-30 02:29:13 2019-12-30 02:29:30 t 1 1 215144 675 0.00 2019-12-30 02:28:09 2019-12-30 02:36:44 t 1 1 215146 544 0.00 2019-12-30 02:37:31 2019-12-30 02:40:34 t 1 1 215150 514 0.00 2019-12-30 01:58:47 2019-12-30 02:58:28 t 1 1 215151 562 0.00 2019-12-30 03:01:22 2019-12-30 03:01:44 t 1 1 215152 562 0.00 2019-12-30 03:12:07 2019-12-30 03:12:27 t 1 1 215153 675 0.00 2019-12-30 03:18:58 2019-12-30 03:22:59 t 1 1 215155 675 0.00 2019-12-30 03:29:21 2019-12-30 03:33:18 t 1 1 215156 562 0.00 2019-12-30 03:33:36 2019-12-30 03:34:00 t 1 1 215162 562 0.00 2019-12-30 04:14:43 2019-12-30 04:15:02 t 1 1 215166 679 0.00 2019-12-30 04:30:36 2019-12-30 04:30:50 t 1 1 215167 679 0.00 2019-12-30 04:30:56 2019-12-30 04:31:08 t 1 1 215168 679 0.00 2019-12-30 04:31:14 2019-12-30 04:31:49 t 1 1 215171 679 0.00 2019-12-30 04:32:34 2019-12-30 04:32:48 t 1 1 215172 679 0.00 2019-12-30 04:32:54 2019-12-30 04:33:11 t 1 1 215173 679 0.00 2019-12-30 04:33:17 2019-12-30 04:33:31 t 1 1 215175 679 0.00 2019-12-30 04:33:52 2019-12-30 04:34:07 t 1 1 215177 679 0.00 2019-12-30 04:34:38 2019-12-30 04:34:54 t 1 1 215178 679 0.00 2019-12-30 04:34:59 2019-12-30 04:35:13 t 1 1 215179 679 0.00 2019-12-30 04:35:19 2019-12-30 04:35:33 t 1 1 215183 679 0.00 2019-12-30 04:36:20 2019-12-30 04:36:34 t 1 1 215186 679 0.00 2019-12-30 04:37:42 2019-12-30 04:38:03 t 1 1 215187 679 0.00 2019-12-30 04:38:09 2019-12-30 04:38:34 t 1 1 215188 679 0.00 2019-12-30 04:38:39 2019-12-30 04:38:54 t 1 1 215190 679 0.00 2019-12-30 04:39:20 2019-12-30 04:42:39 t 1 1 215192 679 0.00 2019-12-30 04:43:00 2019-12-30 04:43:20 t 1 1 215193 679 0.00 2019-12-30 04:43:26 2019-12-30 04:43:41 t 1 1 215194 679 0.00 2019-12-30 04:43:46 2019-12-30 04:43:56 t 1 1 215196 679 0.00 2019-12-30 04:44:22 2019-12-30 04:44:38 t 1 1 215198 679 0.00 2019-12-30 04:45:04 2019-12-30 04:45:19 t 1 1 215199 679 0.00 2019-12-30 04:45:24 2019-12-30 04:45:40 t 1 1 215200 679 0.00 2019-12-30 04:45:46 2019-12-30 04:46:00 t 1 1 215201 679 0.00 2019-12-30 04:46:06 2019-12-30 04:46:41 t 1 1 215202 679 0.00 2019-12-30 04:46:47 2019-12-30 04:47:11 t 1 1 215203 562 0.00 2019-12-30 04:46:55 2019-12-30 04:47:13 t 1 1 215204 679 0.00 2019-12-30 04:47:17 2019-12-30 04:47:42 t 1 1 215205 679 0.00 2019-12-30 04:47:48 2019-12-30 04:48:07 t 1 1 215206 679 0.00 2019-12-30 04:48:13 2019-12-30 04:48:43 t 1 1 215208 679 0.00 2019-12-30 04:49:09 2019-12-30 04:49:38 t 1 1 215210 679 0.00 2019-12-30 04:50:05 2019-12-30 04:50:20 t 1 1 215211 679 0.00 2019-12-30 04:50:26 2019-12-30 04:50:41 t 1 1 215212 679 0.00 2019-12-30 04:50:46 2019-12-30 04:51:01 t 1 1 215215 679 0.00 2019-12-30 04:51:49 2019-12-30 04:52:04 t 1 1 215216 679 0.00 2019-12-30 04:52:10 2019-12-30 04:52:40 t 1 1 215217 679 0.00 2019-12-30 04:52:46 2019-12-30 04:53:07 t 1 1 215218 679 0.00 2019-12-30 04:53:13 2019-12-30 04:53:44 t 1 1 215220 679 0.00 2019-12-30 04:54:10 2019-12-30 04:54:41 t 1 1 215222 679 0.00 2019-12-30 04:55:08 2019-12-30 04:55:23 t 1 1 215223 679 0.00 2019-12-30 04:55:28 2019-12-30 04:55:43 t 1 1 215224 679 0.00 2019-12-30 04:55:49 2019-12-30 04:56:03 t 1 1 215225 679 0.00 2019-12-30 04:56:09 2019-12-30 04:56:25 t 1 1 215226 679 0.00 2019-12-30 04:56:31 2019-12-30 04:56:41 t 1 1 215228 679 0.00 2019-12-30 04:57:18 2019-12-30 04:57:41 t 1 1 215230 679 0.00 2019-12-30 04:57:47 2019-12-30 04:58:02 t 1 1 215233 679 0.00 2019-12-30 04:58:55 2019-12-30 04:59:14 t 1 1 215235 679 0.00 2019-12-30 04:59:50 2019-12-30 05:00:00 t 1 1 215236 679 0.00 2019-12-30 05:00:06 2019-12-30 05:00:21 t 1 1 215237 679 0.00 2019-12-30 05:00:27 2019-12-30 05:00:38 t 1 1 215239 679 0.00 2019-12-30 05:01:04 2019-12-30 05:01:18 t 1 1 215240 679 0.00 2019-12-30 05:01:24 2019-12-30 05:01:43 t 1 1 215241 679 0.00 2019-12-30 05:01:49 2019-12-30 05:01:59 t 1 1 215244 679 0.00 2019-12-30 05:03:01 2019-12-30 05:03:12 t 1 1 215245 679 0.00 2019-12-30 05:03:18 2019-12-30 05:03:44 t 1 1 215246 679 0.00 2019-12-30 05:03:50 2019-12-30 05:04:11 t 1 1 215247 679 0.00 2019-12-30 05:04:17 2019-12-30 05:05:02 t 1 1 215248 679 0.00 2019-12-30 05:05:09 2019-12-30 05:05:23 t 1 1 215249 679 0.00 2019-12-30 05:05:29 2019-12-30 05:05:44 t 1 1 215251 679 0.00 2019-12-30 05:06:10 2019-12-30 05:06:20 t 1 1 215252 679 0.00 2019-12-30 05:06:26 2019-12-30 05:06:46 t 1 1 215253 679 0.00 2019-12-30 05:06:52 2019-12-30 05:07:07 t 1 1 215257 562 0.00 2019-12-30 05:08:22 2019-12-30 05:08:40 t 1 1 215259 679 0.00 2019-12-30 05:08:51 2019-12-30 05:09:05 t 1 1 215260 679 0.00 2019-12-30 05:09:11 2019-12-30 05:09:26 t 1 1 215262 679 0.00 2019-12-30 05:09:57 2019-12-30 05:10:11 t 1 1 215263 679 0.00 2019-12-30 05:10:17 2019-12-30 05:10:48 t 1 1 215264 679 0.00 2019-12-30 05:10:53 2019-12-30 05:11:07 t 1 1 215265 679 0.00 2019-12-30 05:11:13 2019-12-30 05:11:27 t 1 1 215267 679 0.00 2019-12-30 05:11:53 2019-12-30 05:12:07 t 1 1 215268 679 0.00 2019-12-30 05:12:13 2019-12-30 05:12:46 t 1 1 215269 679 0.00 2019-12-30 05:12:52 2019-12-30 05:13:06 t 1 1 215270 679 0.00 2019-12-30 05:13:12 2019-12-30 05:13:45 t 1 1 215272 679 0.00 2019-12-30 05:14:16 2019-12-30 05:14:45 t 1 1 215274 679 0.00 2019-12-30 05:14:51 2019-12-30 05:15:05 t 1 1 215275 679 0.00 2019-12-30 05:15:11 2019-12-30 05:15:46 t 1 1 215116 687 0.00 2019-12-30 00:33:36 2019-12-30 01:09:41 t 1 1 215118 679 0.00 2019-12-30 00:38:23 2019-12-30 01:16:41 t 1 1 215119 562 0.00 2019-12-30 01:17:25 2019-12-30 01:17:31 t 1 1 215121 514 0.00 2019-12-30 01:15:19 2019-12-30 01:22:46 t 1 1 215124 487 0.00 2019-12-30 00:22:02 2019-12-30 01:28:38 t 1 2 215125 687 0.00 2019-12-30 01:12:07 2019-12-30 01:30:24 t 1 1 215136 687 0.00 2019-12-30 01:49:55 2019-12-30 02:01:25 t 1 1 215137 562 0.00 2019-12-30 02:07:39 2019-12-30 02:08:02 t 1 1 215138 687 0.00 2019-12-30 02:01:25 2019-12-30 02:12:14 t 1 1 215142 220 0.00 2019-12-30 02:04:01 2019-12-30 02:23:56 t 1 1 215145 562 0.00 2019-12-30 02:39:58 2019-12-30 02:40:13 t 1 1 215154 562 0.00 2019-12-30 03:22:54 2019-12-30 03:23:13 t 1 1 215157 562 0.00 2019-12-30 03:42:28 2019-12-30 03:42:46 t 1 1 215158 562 0.00 2019-12-30 03:53:08 2019-12-30 03:53:29 t 1 1 215163 562 0.00 2019-12-30 04:25:26 2019-12-30 04:25:46 t 1 1 215164 679 0.00 2019-12-30 04:20:32 2019-12-30 04:27:57 t 1 1 215165 679 0.00 2019-12-30 04:27:57 2019-12-30 04:30:30 t 1 1 215169 679 0.00 2019-12-30 04:31:55 2019-12-30 04:32:10 t 1 1 215170 679 0.00 2019-12-30 04:32:15 2019-12-30 04:32:28 t 1 1 215174 679 0.00 2019-12-30 04:33:37 2019-12-30 04:33:47 t 1 1 215176 679 0.00 2019-12-30 04:34:13 2019-12-30 04:34:33 t 1 1 215180 679 0.00 2019-12-30 04:35:39 2019-12-30 04:35:53 t 1 1 215181 679 0.00 2019-12-30 04:36:00 2019-12-30 04:36:14 t 1 1 215182 562 0.00 2019-12-30 04:36:08 2019-12-30 04:36:31 t 1 1 215184 679 0.00 2019-12-30 04:36:40 2019-12-30 04:36:55 t 1 1 215185 679 0.00 2019-12-30 04:37:01 2019-12-30 04:37:37 t 1 1 215189 679 0.00 2019-12-30 04:39:00 2019-12-30 04:39:14 t 1 1 215191 679 0.00 2019-12-30 04:42:44 2019-12-30 04:42:55 t 1 1 215195 679 0.00 2019-12-30 04:44:02 2019-12-30 04:44:17 t 1 1 215197 679 0.00 2019-12-30 04:44:44 2019-12-30 04:44:59 t 1 1 215207 679 0.00 2019-12-30 04:48:49 2019-12-30 04:49:03 t 1 1 215209 679 0.00 2019-12-30 04:49:44 2019-12-30 04:49:59 t 1 1 215213 679 0.00 2019-12-30 04:51:07 2019-12-30 04:51:17 t 1 1 215214 679 0.00 2019-12-30 04:51:22 2019-12-30 04:51:43 t 1 1 215219 679 0.00 2019-12-30 04:53:50 2019-12-30 04:54:04 t 1 1 215221 679 0.00 2019-12-30 04:54:47 2019-12-30 04:55:02 t 1 1 215227 679 0.00 2019-12-30 04:56:47 2019-12-30 04:57:12 t 1 1 215229 562 0.00 2019-12-30 04:57:36 2019-12-30 04:57:59 t 1 1 215231 679 0.00 2019-12-30 04:58:07 2019-12-30 04:58:22 t 1 1 215232 679 0.00 2019-12-30 04:58:28 2019-12-30 04:58:49 t 1 1 215234 679 0.00 2019-12-30 04:59:20 2019-12-30 04:59:44 t 1 1 215238 679 0.00 2019-12-30 05:00:43 2019-12-30 05:00:58 t 1 1 215242 679 0.00 2019-12-30 05:02:05 2019-12-30 05:02:21 t 1 1 215243 679 0.00 2019-12-30 05:02:26 2019-12-30 05:02:56 t 1 1 215250 679 0.00 2019-12-30 05:05:50 2019-12-30 05:06:04 t 1 1 215254 679 0.00 2019-12-30 05:07:13 2019-12-30 05:07:27 t 1 1 215255 679 0.00 2019-12-30 05:07:33 2019-12-30 05:07:50 t 1 1 215256 516 0.00 2019-12-30 04:56:11 2019-12-30 05:08:23 t 1 1 215258 679 0.00 2019-12-30 05:07:56 2019-12-30 05:08:45 t 1 1 215261 679 0.00 2019-12-30 05:09:31 2019-12-30 05:09:51 t 1 1 215266 679 0.00 2019-12-30 05:11:33 2019-12-30 05:11:47 t 1 1 215271 679 0.00 2019-12-30 05:13:51 2019-12-30 05:14:10 t 1 1 215273 516 0.00 2019-12-30 05:09:41 2019-12-30 05:14:54 t 1 1 215276 679 0.00 2019-12-30 05:15:51 2019-12-30 05:16:05 t 1 1 215277 679 0.00 2019-12-30 05:16:11 2019-12-30 05:16:26 t 1 1 215278 679 0.00 2019-12-30 05:16:31 2019-12-30 05:16:46 t 1 1 215279 679 0.00 2019-12-30 05:16:52 2019-12-30 05:17:07 t 1 1 215280 679 0.00 2019-12-30 05:17:12 2019-12-30 05:17:48 t 1 1 215281 679 0.00 2019-12-30 05:17:54 2019-12-30 05:18:04 t 1 1 215282 679 0.00 2019-12-30 05:18:10 2019-12-30 05:18:51 t 1 1 215283 679 0.00 2019-12-30 05:18:57 2019-12-30 05:19:11 t 1 1 215284 562 0.00 2019-12-30 05:19:01 2019-12-30 05:19:25 t 1 1 215285 220 0.00 2019-12-30 05:18:16 2019-12-30 05:19:36 t 1 2 215286 679 0.00 2019-12-30 05:19:17 2019-12-30 05:19:47 t 1 1 215287 679 0.00 2019-12-30 05:19:53 2019-12-30 05:20:03 t 1 1 215288 679 0.00 2019-12-30 05:20:09 2019-12-30 05:20:19 t 1 1 215289 679 0.00 2019-12-30 05:20:25 2019-12-30 05:20:45 t 1 1 215290 679 0.00 2019-12-30 05:20:51 2019-12-30 05:21:06 t 1 1 215291 220 0.00 2019-12-30 05:19:53 2019-12-30 05:21:17 t 1 2 215292 679 0.00 2019-12-30 05:21:11 2019-12-30 05:21:26 t 1 1 215293 679 0.00 2019-12-30 05:21:32 2019-12-30 05:21:52 t 1 1 215294 679 0.00 2019-12-30 05:21:58 2019-12-30 05:22:14 t 1 1 215295 679 0.00 2019-12-30 05:22:19 2019-12-30 05:22:49 t 1 1 215296 679 0.00 2019-12-30 05:22:55 2019-12-30 05:23:10 t 1 1 215297 679 0.00 2019-12-30 05:23:15 2019-12-30 05:23:52 t 1 1 215298 679 0.00 2019-12-30 05:23:58 2019-12-30 05:24:20 t 1 1 215299 679 0.00 2019-12-30 05:24:26 2019-12-30 05:24:48 t 1 1 215300 679 0.00 2019-12-30 05:24:54 2019-12-30 05:25:07 t 1 1 215301 679 0.00 2019-12-30 05:25:13 2019-12-30 05:25:47 t 1 1 215302 679 0.00 2019-12-30 05:25:53 2019-12-30 05:26:07 t 1 1 215303 679 0.00 2019-12-30 05:26:13 2019-12-30 05:26:28 t 1 1 215304 679 0.00 2019-12-30 05:26:34 2019-12-30 05:26:55 t 1 1 215305 679 0.00 2019-12-30 05:27:00 2019-12-30 05:27:20 t 1 1 215306 679 0.00 2019-12-30 05:27:26 2019-12-30 05:27:46 t 1 1 215307 679 0.00 2019-12-30 05:27:52 2019-12-30 05:28:12 t 1 1 215308 679 0.00 2019-12-30 05:28:17 2019-12-30 05:28:47 t 1 1 215309 679 0.00 2019-12-30 05:28:52 2019-12-30 05:29:23 t 1 1 215310 679 0.00 2019-12-30 05:29:29 2019-12-30 05:29:49 t 1 1 215311 562 0.00 2019-12-30 05:29:48 2019-12-30 05:30:08 t 1 1 215312 679 0.00 2019-12-30 05:29:55 2019-12-30 05:30:09 t 1 1 215313 679 0.00 2019-12-30 05:30:15 2019-12-30 05:30:29 t 1 1 215314 679 0.00 2019-12-30 05:30:35 2019-12-30 05:30:54 t 1 1 215315 679 0.00 2019-12-30 05:31:00 2019-12-30 05:31:15 t 1 1 215316 679 0.00 2019-12-30 05:31:21 2019-12-30 05:31:47 t 1 1 215317 679 0.00 2019-12-30 05:31:53 2019-12-30 05:32:13 t 1 1 215318 679 0.00 2019-12-30 05:32:19 2019-12-30 05:32:49 t 1 1 215319 679 0.00 2019-12-30 05:32:55 2019-12-30 05:33:15 t 1 1 215320 679 0.00 2019-12-30 05:33:21 2019-12-30 05:33:46 t 1 1 215321 679 0.00 2019-12-30 05:33:52 2019-12-30 05:34:11 t 1 1 215322 679 0.00 2019-12-30 05:34:17 2019-12-30 05:34:48 t 1 1 215323 679 0.00 2019-12-30 05:34:54 2019-12-30 05:35:09 t 1 1 215324 679 0.00 2019-12-30 05:35:15 2019-12-30 05:35:25 t 1 1 215325 679 0.00 2019-12-30 05:35:31 2019-12-30 05:35:42 t 1 1 215326 679 0.00 2019-12-30 05:35:48 2019-12-30 05:36:03 t 1 1 215327 679 0.00 2019-12-30 05:36:08 2019-12-30 05:36:19 t 1 1 215328 679 0.00 2019-12-30 05:36:25 2019-12-30 05:36:51 t 1 1 215329 679 0.00 2019-12-30 05:36:57 2019-12-30 05:37:17 t 1 1 215330 679 0.00 2019-12-30 05:37:23 2019-12-30 05:37:54 t 1 1 215333 679 0.00 2019-12-30 05:38:21 2019-12-30 05:38:47 t 1 1 215336 679 0.00 2019-12-30 05:39:29 2019-12-30 05:39:50 t 1 1 215341 627 0.00 2019-12-30 05:40:34 2019-12-30 05:40:46 t 1 1 215357 679 0.00 2019-12-30 05:43:56 2019-12-30 05:44:10 t 1 1 215367 679 0.00 2019-12-30 05:46:57 2019-12-30 05:47:08 t 1 1 215368 679 0.00 2019-12-30 05:47:13 2019-12-30 05:47:28 t 1 1 215373 679 0.00 2019-12-30 05:48:35 2019-12-30 05:51:41 t 1 1 215377 679 0.00 2019-12-30 05:53:01 2019-12-30 05:53:16 t 1 1 215378 679 0.00 2019-12-30 05:53:22 2019-12-30 05:53:42 t 1 1 215380 679 0.00 2019-12-30 05:54:07 2019-12-30 05:54:49 t 1 1 215384 679 0.00 2019-12-30 05:56:05 2019-12-30 05:56:19 t 1 1 215385 679 0.00 2019-12-30 05:56:25 2019-12-30 05:56:39 t 1 1 215389 679 0.00 2019-12-30 05:57:48 2019-12-30 05:58:03 t 1 1 215396 679 0.00 2019-12-30 06:00:45 2019-12-30 06:00:58 t 1 1 215401 562 0.00 2019-12-30 06:01:57 2019-12-30 06:02:18 t 1 1 215405 679 0.00 2019-12-30 06:03:51 2019-12-30 06:04:06 t 1 1 215407 679 0.00 2019-12-30 06:04:32 2019-12-30 06:05:03 t 1 1 215411 578 0.00 2019-12-30 06:06:18 2019-12-30 06:06:33 t 1 1 215413 679 0.00 2019-12-30 06:06:50 2019-12-30 06:07:04 t 1 1 215416 679 0.00 2019-12-30 06:07:30 2019-12-30 06:07:45 t 1 1 215422 679 0.00 2019-12-30 06:10:14 2019-12-30 06:10:24 t 1 1 215423 679 0.00 2019-12-30 06:10:30 2019-12-30 06:10:45 t 1 1 215427 679 0.00 2019-12-30 06:11:53 2019-12-30 06:12:09 t 1 1 215428 679 0.00 2019-12-30 06:12:14 2019-12-30 06:12:44 t 1 1 215429 679 0.00 2019-12-30 06:12:50 2019-12-30 06:13:00 t 1 1 215431 679 0.00 2019-12-30 06:13:06 2019-12-30 06:13:16 t 1 1 215432 679 0.00 2019-12-30 06:13:22 2019-12-30 06:13:47 t 1 1 215434 679 0.00 2019-12-30 06:14:14 2019-12-30 06:14:28 t 1 1 215440 679 0.00 2019-12-30 06:16:52 2019-12-30 06:17:03 t 1 1 215444 679 0.00 2019-12-30 06:18:07 2019-12-30 06:18:22 t 1 1 215445 679 0.00 2019-12-30 06:18:28 2019-12-30 06:18:48 t 1 1 215451 679 0.00 2019-12-30 06:20:56 2019-12-30 06:21:11 t 1 1 215452 679 0.00 2019-12-30 06:21:17 2019-12-30 06:21:47 t 1 1 215458 562 0.00 2019-12-30 06:23:30 2019-12-30 06:23:51 t 1 1 215460 679 0.00 2019-12-30 06:24:17 2019-12-30 06:24:48 t 1 1 215462 220 0.00 2019-12-30 05:24:38 2019-12-30 06:25:06 t 1 2 215463 679 0.00 2019-12-30 06:25:09 2019-12-30 06:25:50 t 1 1 215464 679 0.00 2019-12-30 06:25:56 2019-12-30 06:26:11 t 1 1 215465 679 0.00 2019-12-30 06:26:17 2019-12-30 06:26:47 t 1 1 215469 679 0.00 2019-12-30 06:28:11 2019-12-30 06:28:24 t 1 1 215470 679 0.00 2019-12-30 06:28:30 2019-12-30 06:28:49 t 1 1 215471 562 0.00 2019-12-30 06:28:58 2019-12-30 06:29:12 t 1 1 215473 562 0.00 2019-12-30 06:29:21 2019-12-30 06:29:54 t 1 1 215475 679 0.00 2019-12-30 06:30:02 2019-12-30 06:30:21 t 1 1 215476 679 0.00 2019-12-30 06:30:27 2019-12-30 06:30:47 t 1 1 215478 679 0.00 2019-12-30 06:31:15 2019-12-30 06:31:29 t 1 1 215482 679 0.00 2019-12-30 06:32:53 2019-12-30 06:33:08 t 1 1 215483 679 0.00 2019-12-30 06:33:14 2019-12-30 06:33:28 t 1 1 215488 679 0.00 2019-12-30 06:34:55 2019-12-30 06:35:05 t 1 1 215493 679 0.00 2019-12-30 06:36:37 2019-12-30 06:36:53 t 1 1 215497 679 0.00 2019-12-30 06:37:54 2019-12-30 06:38:08 t 1 1 215500 679 0.00 2019-12-30 06:38:36 2019-12-30 06:38:55 t 1 1 215502 679 0.00 2019-12-30 06:39:22 2019-12-30 06:39:35 t 1 1 215509 679 0.00 2019-12-30 06:41:09 2019-12-30 06:41:24 t 1 1 215510 679 0.00 2019-12-30 06:41:30 2019-12-30 06:41:55 t 1 1 215514 679 0.00 2019-12-30 06:43:00 2019-12-30 06:43:11 t 1 1 215519 679 0.00 2019-12-30 06:44:18 2019-12-30 06:44:35 t 1 1 215530 679 0.00 2019-12-30 06:49:03 2019-12-30 06:49:13 t 1 1 215534 679 0.00 2019-12-30 06:50:44 2019-12-30 06:50:55 t 1 1 215535 562 0.00 2019-12-30 06:50:56 2019-12-30 06:51:19 t 1 1 215537 516 0.00 2019-12-30 06:50:45 2019-12-30 06:51:53 t 1 1 215539 679 0.00 2019-12-30 06:52:05 2019-12-30 06:52:06 t 1 1 215540 679 0.00 2019-12-30 06:52:41 2019-12-30 06:52:56 t 1 1 215543 777 0.00 2019-12-30 06:46:21 2019-12-30 06:54:53 t 1 1 215544 679 0.00 2019-12-30 06:53:44 2019-12-30 06:56:55 t 1 1 215545 679 0.00 2019-12-30 06:57:00 2019-12-30 06:57:14 t 1 1 215546 679 0.00 2019-12-30 06:57:20 2019-12-30 06:57:36 t 1 1 215554 679 0.00 2019-12-30 07:00:38 2019-12-30 07:00:58 t 1 1 215558 562 0.00 2019-12-30 07:01:45 2019-12-30 07:02:06 t 1 1 215563 679 0.00 2019-12-30 07:03:43 2019-12-30 07:03:59 t 1 1 215565 707 0.00 2019-12-30 06:58:26 2019-12-30 07:04:35 t 1 1 215567 679 0.00 2019-12-30 07:05:07 2019-12-30 07:05:17 t 1 1 215572 679 0.00 2019-12-30 07:06:45 2019-12-30 07:07:05 t 1 1 215574 625 0.00 2019-12-29 22:15:02 2019-12-30 07:07:28 t 1 1 215576 679 0.00 2019-12-30 07:08:03 2019-12-30 07:08:19 t 1 1 215577 679 0.00 2019-12-30 07:08:25 2019-12-30 07:08:58 t 1 1 215579 679 0.00 2019-12-30 07:09:23 2019-12-30 07:09:38 t 1 1 215583 679 0.00 2019-12-30 07:10:38 2019-12-30 07:10:58 t 1 1 215585 679 0.00 2019-12-30 07:11:03 2019-12-30 07:11:14 t 1 1 215586 679 0.00 2019-12-30 07:11:20 2019-12-30 07:11:36 t 1 1 215587 679 0.00 2019-12-30 07:11:42 2019-12-30 07:11:58 t 1 1 215591 679 0.00 2019-12-30 07:13:06 2019-12-30 07:13:20 t 1 1 215592 679 0.00 2019-12-30 07:13:26 2019-12-30 07:14:02 t 1 1 215594 679 0.00 2019-12-30 07:14:29 2019-12-30 07:14:59 t 1 1 215600 679 0.00 2019-12-30 07:17:36 2019-12-30 07:18:01 t 1 1 215604 679 0.00 2019-12-30 07:19:09 2019-12-30 07:19:24 t 1 1 215606 679 0.00 2019-12-30 07:19:30 2019-12-30 07:20:00 t 1 1 215609 637 0.00 2019-12-30 07:19:40 2019-12-30 07:20:42 t 1 1 215613 679 0.00 2019-12-30 07:21:47 2019-12-30 07:22:07 t 1 1 215615 679 0.00 2019-12-30 07:22:31 2019-12-30 07:23:01 t 1 1 215619 538 0.00 2019-12-30 06:31:16 2019-12-30 07:24:06 t 1 1 215623 679 0.00 2019-12-30 07:25:06 2019-12-30 07:25:26 t 1 1 215624 679 0.00 2019-12-30 07:25:31 2019-12-30 07:26:03 t 1 1 215628 679 0.00 2019-12-30 07:27:02 2019-12-30 07:27:24 t 1 1 215629 679 0.00 2019-12-30 07:27:30 2019-12-30 07:28:03 t 1 1 215633 679 0.00 2019-12-30 07:29:11 2019-12-30 07:29:26 t 1 1 215635 679 0.00 2019-12-30 07:30:07 2019-12-30 07:30:22 t 1 1 215636 679 0.00 2019-12-30 07:30:28 2019-12-30 07:30:42 t 1 1 215640 679 0.00 2019-12-30 07:31:25 2019-12-30 07:32:33 t 1 1 215648 675 0.00 2019-12-30 08:17:49 2019-12-30 08:22:09 t 1 1 215659 516 0.00 2019-12-30 08:54:38 2019-12-30 08:55:55 t 1 1 215660 516 0.00 2019-12-30 08:56:36 2019-12-30 09:00:55 t 1 1 215664 622 0.00 2019-12-30 09:05:11 2019-12-30 09:06:18 t 1 1 215665 611 0.00 2019-12-30 09:04:43 2019-12-30 09:07:28 t 1 1 215667 779 0.00 2019-12-30 09:08:12 2019-12-30 09:08:31 t 1 1 215671 671 0.00 2019-12-30 09:04:54 2019-12-30 09:12:46 t 1 1 215331 679 0.00 2019-12-30 05:38:00 2019-12-30 05:38:15 t 1 1 215332 627 0.00 2019-12-30 05:31:57 2019-12-30 05:38:46 t 1 1 215334 679 0.00 2019-12-30 05:38:53 2019-12-30 05:39:03 t 1 1 215339 627 0.00 2019-12-30 05:40:02 2019-12-30 05:40:10 t 1 1 215343 562 0.00 2019-12-30 05:40:32 2019-12-30 05:40:50 t 1 1 215345 627 0.00 2019-12-30 05:41:26 2019-12-30 05:41:32 t 1 1 215347 679 0.00 2019-12-30 05:41:20 2019-12-30 05:41:49 t 1 1 215348 679 0.00 2019-12-30 05:41:55 2019-12-30 05:42:11 t 1 1 215349 679 0.00 2019-12-30 05:42:17 2019-12-30 05:42:31 t 1 1 215350 627 0.00 2019-12-30 05:42:38 2019-12-30 05:42:50 t 1 1 215353 627 0.00 2019-12-30 05:43:07 2019-12-30 05:43:22 t 1 1 215354 627 0.00 2019-12-30 05:43:35 2019-12-30 05:43:49 t 1 1 215358 679 0.00 2019-12-30 05:44:16 2019-12-30 05:44:30 t 1 1 215359 679 0.00 2019-12-30 05:44:36 2019-12-30 05:44:51 t 1 1 215361 679 0.00 2019-12-30 05:44:56 2019-12-30 05:45:11 t 1 1 215362 679 0.00 2019-12-30 05:45:17 2019-12-30 05:45:48 t 1 1 215363 679 0.00 2019-12-30 05:45:54 2019-12-30 05:46:04 t 1 1 215365 679 0.00 2019-12-30 05:46:10 2019-12-30 05:46:20 t 1 1 215366 679 0.00 2019-12-30 05:46:26 2019-12-30 05:46:51 t 1 1 215370 679 0.00 2019-12-30 05:47:55 2019-12-30 05:48:09 t 1 1 215371 679 0.00 2019-12-30 05:48:15 2019-12-30 05:48:29 t 1 1 215376 679 0.00 2019-12-30 05:52:45 2019-12-30 05:52:56 t 1 1 215383 679 0.00 2019-12-30 05:55:45 2019-12-30 05:55:59 t 1 1 215387 679 0.00 2019-12-30 05:57:05 2019-12-30 05:57:20 t 1 1 215388 679 0.00 2019-12-30 05:57:26 2019-12-30 05:57:42 t 1 1 215392 679 0.00 2019-12-30 05:58:45 2019-12-30 05:59:01 t 1 1 215394 679 0.00 2019-12-30 05:59:57 2019-12-30 06:00:12 t 1 1 215395 679 0.00 2019-12-30 06:00:18 2019-12-30 06:00:38 t 1 1 215399 516 0.00 2019-12-30 05:24:42 2019-12-30 06:01:53 t 1 1 215400 679 0.00 2019-12-30 06:01:50 2019-12-30 06:02:06 t 1 1 215404 679 0.00 2019-12-30 06:03:09 2019-12-30 06:03:45 t 1 1 215410 679 0.00 2019-12-30 06:05:53 2019-12-30 06:06:08 t 1 1 215412 679 0.00 2019-12-30 06:06:14 2019-12-30 06:06:44 t 1 1 215419 679 0.00 2019-12-30 06:08:51 2019-12-30 06:09:06 t 1 1 215421 679 0.00 2019-12-30 06:09:52 2019-12-30 06:10:08 t 1 1 215426 679 0.00 2019-12-30 06:11:33 2019-12-30 06:11:47 t 1 1 215430 562 0.00 2019-12-30 06:12:47 2019-12-30 06:13:04 t 1 1 215438 679 0.00 2019-12-30 06:15:50 2019-12-30 06:16:05 t 1 1 215439 679 0.00 2019-12-30 06:16:10 2019-12-30 06:16:46 t 1 1 215443 679 0.00 2019-12-30 06:17:52 2019-12-30 06:18:02 t 1 1 215447 679 0.00 2019-12-30 06:19:14 2019-12-30 06:19:25 t 1 1 215450 679 0.00 2019-12-30 06:20:33 2019-12-30 06:20:50 t 1 1 215468 679 0.00 2019-12-30 06:27:55 2019-12-30 06:28:05 t 1 1 215472 679 0.00 2019-12-30 06:28:55 2019-12-30 06:29:35 t 1 1 215474 679 0.00 2019-12-30 06:29:41 2019-12-30 06:29:56 t 1 1 215480 679 0.00 2019-12-30 06:31:59 2019-12-30 06:32:15 t 1 1 215481 679 0.00 2019-12-30 06:32:21 2019-12-30 06:32:47 t 1 1 215485 679 0.00 2019-12-30 06:33:51 2019-12-30 06:34:07 t 1 1 215487 679 0.00 2019-12-30 06:34:35 2019-12-30 06:34:49 t 1 1 215491 679 0.00 2019-12-30 06:35:59 2019-12-30 06:36:10 t 1 1 215492 679 0.00 2019-12-30 06:36:16 2019-12-30 06:36:31 t 1 1 215495 679 0.00 2019-12-30 06:37:15 2019-12-30 06:37:25 t 1 1 215496 679 0.00 2019-12-30 06:37:30 2019-12-30 06:37:48 t 1 1 215498 516 0.00 2019-12-30 06:01:53 2019-12-30 06:38:10 t 1 1 215499 679 0.00 2019-12-30 06:38:14 2019-12-30 06:38:30 t 1 1 215504 679 0.00 2019-12-30 06:40:02 2019-12-30 06:40:17 t 1 1 215505 707 0.00 2019-12-30 06:26:02 2019-12-30 06:40:19 t 1 1 215506 562 0.00 2019-12-30 06:40:18 2019-12-30 06:40:36 t 1 1 215508 679 0.00 2019-12-30 06:40:44 2019-12-30 06:41:03 t 1 1 215513 679 0.00 2019-12-30 06:42:39 2019-12-30 06:42:54 t 1 1 215517 622 0.00 2019-12-30 06:14:57 2019-12-30 06:44:06 t 1 1 215521 679 0.00 2019-12-30 06:45:02 2019-12-30 06:45:22 t 1 1 215522 679 0.00 2019-12-30 06:45:28 2019-12-30 06:45:56 t 1 1 215523 679 0.00 2019-12-30 06:46:02 2019-12-30 06:46:21 t 1 1 215524 679 0.00 2019-12-30 06:46:27 2019-12-30 06:46:57 t 1 1 215526 679 0.00 2019-12-30 06:47:03 2019-12-30 06:47:22 t 1 1 215527 679 0.00 2019-12-30 06:47:28 2019-12-30 06:47:58 t 1 1 215528 679 0.00 2019-12-30 06:48:04 2019-12-30 06:48:19 t 1 1 215529 679 0.00 2019-12-30 06:48:25 2019-12-30 06:48:56 t 1 1 215532 679 0.00 2019-12-30 06:49:45 2019-12-30 06:50:02 t 1 1 215538 679 0.00 2019-12-30 06:51:03 2019-12-30 06:51:57 t 1 1 215548 679 0.00 2019-12-30 06:58:02 2019-12-30 06:58:23 t 1 1 215550 679 0.00 2019-12-30 06:59:04 2019-12-30 06:59:18 t 1 1 215552 679 0.00 2019-12-30 07:00:01 2019-12-30 07:00:12 t 1 1 215553 679 0.00 2019-12-30 07:00:18 2019-12-30 07:00:32 t 1 1 215561 679 0.00 2019-12-30 07:03:05 2019-12-30 07:03:16 t 1 1 215562 679 0.00 2019-12-30 07:03:23 2019-12-30 07:03:37 t 1 1 215566 679 0.00 2019-12-30 07:04:26 2019-12-30 07:04:59 t 1 1 215568 562 0.00 2019-12-30 07:05:29 2019-12-30 07:05:34 t 1 1 215570 679 0.00 2019-12-30 07:06:06 2019-12-30 07:06:21 t 1 1 215571 679 0.00 2019-12-30 07:06:27 2019-12-30 07:06:39 t 1 1 215575 679 0.00 2019-12-30 07:07:28 2019-12-30 07:07:57 t 1 1 215581 679 0.00 2019-12-30 07:10:06 2019-12-30 07:10:16 t 1 1 215582 679 0.00 2019-12-30 07:10:22 2019-12-30 07:10:32 t 1 1 215590 679 0.00 2019-12-30 07:12:46 2019-12-30 07:13:00 t 1 1 215597 679 0.00 2019-12-30 07:16:08 2019-12-30 07:16:22 t 1 1 215598 679 0.00 2019-12-30 07:16:28 2019-12-30 07:16:59 t 1 1 215599 679 0.00 2019-12-30 07:17:05 2019-12-30 07:17:30 t 1 1 215603 679 0.00 2019-12-30 07:18:42 2019-12-30 07:19:03 t 1 1 215611 679 0.00 2019-12-30 07:21:10 2019-12-30 07:21:21 t 1 1 215612 679 0.00 2019-12-30 07:21:27 2019-12-30 07:21:41 t 1 1 215618 679 0.00 2019-12-30 07:23:45 2019-12-30 07:24:00 t 1 1 215620 679 0.00 2019-12-30 07:24:06 2019-12-30 07:24:20 t 1 1 215622 679 0.00 2019-12-30 07:24:46 2019-12-30 07:25:00 t 1 1 215627 679 0.00 2019-12-30 07:26:46 2019-12-30 07:26:56 t 1 1 215632 679 0.00 2019-12-30 07:28:50 2019-12-30 07:29:05 t 1 1 215634 679 0.00 2019-12-30 07:29:31 2019-12-30 07:30:01 t 1 1 215638 744 0.00 2019-12-30 06:22:53 2019-12-30 07:31:17 t 1 1 215642 551 0.00 2019-12-29 22:53:33 2019-12-30 07:43:11 t 1 1 215645 498 0.00 2019-12-30 07:39:31 2019-12-30 08:01:18 t 1 2 215653 707 0.00 2019-12-30 08:19:37 2019-12-30 08:33:34 t 1 1 215654 611 0.00 2019-12-30 08:25:59 2019-12-30 08:39:28 t 1 1 215655 611 0.00 2019-12-30 08:46:56 2019-12-30 08:49:11 t 1 1 215658 516 0.00 2019-12-30 08:53:21 2019-12-30 08:54:38 t 1 1 215663 779 0.00 2019-12-30 09:04:47 2019-12-30 09:05:16 t 1 1 215666 667 0.00 2019-12-30 09:02:04 2019-12-30 09:07:41 t 1 1 215668 591 0.00 2019-12-30 08:10:29 2019-12-30 09:08:53 t 1 1 215335 679 0.00 2019-12-30 05:39:08 2019-12-30 05:39:23 t 1 1 215337 627 0.00 2019-12-30 05:39:29 2019-12-30 05:39:51 t 1 1 215338 679 0.00 2019-12-30 05:39:56 2019-12-30 05:40:06 t 1 1 215340 679 0.00 2019-12-30 05:40:12 2019-12-30 05:40:27 t 1 1 215342 679 0.00 2019-12-30 05:40:33 2019-12-30 05:40:48 t 1 1 215344 679 0.00 2019-12-30 05:40:54 2019-12-30 05:41:14 t 1 1 215346 627 0.00 2019-12-30 05:41:40 2019-12-30 05:41:49 t 1 1 215351 679 0.00 2019-12-30 05:42:37 2019-12-30 05:42:54 t 1 1 215352 679 0.00 2019-12-30 05:42:59 2019-12-30 05:43:14 t 1 1 215355 679 0.00 2019-12-30 05:43:20 2019-12-30 05:43:50 t 1 1 215356 627 0.00 2019-12-30 05:44:01 2019-12-30 05:44:05 t 1 1 215360 627 0.00 2019-12-30 05:44:37 2019-12-30 05:44:54 t 1 1 215364 627 0.00 2019-12-30 05:45:50 2019-12-30 05:46:07 t 1 1 215369 679 0.00 2019-12-30 05:47:34 2019-12-30 05:47:49 t 1 1 215372 562 0.00 2019-12-30 05:51:19 2019-12-30 05:51:35 t 1 1 215374 679 0.00 2019-12-30 05:51:46 2019-12-30 05:52:08 t 1 1 215375 679 0.00 2019-12-30 05:52:14 2019-12-30 05:52:40 t 1 1 215379 679 0.00 2019-12-30 05:53:47 2019-12-30 05:54:01 t 1 1 215381 679 0.00 2019-12-30 05:54:55 2019-12-30 05:55:09 t 1 1 215382 679 0.00 2019-12-30 05:55:15 2019-12-30 05:55:39 t 1 1 215386 679 0.00 2019-12-30 05:56:45 2019-12-30 05:56:59 t 1 1 215390 679 0.00 2019-12-30 05:58:09 2019-12-30 05:58:19 t 1 1 215391 679 0.00 2019-12-30 05:58:24 2019-12-30 05:58:39 t 1 1 215393 679 0.00 2019-12-30 05:59:06 2019-12-30 05:59:50 t 1 1 215397 679 0.00 2019-12-30 06:01:04 2019-12-30 06:01:19 t 1 1 215398 679 0.00 2019-12-30 06:01:24 2019-12-30 06:01:44 t 1 1 215402 679 0.00 2019-12-30 06:02:12 2019-12-30 06:02:42 t 1 1 215403 679 0.00 2019-12-30 06:02:48 2019-12-30 06:03:09 t 1 1 215406 679 0.00 2019-12-30 06:04:12 2019-12-30 06:04:26 t 1 1 215408 679 0.00 2019-12-30 06:05:09 2019-12-30 06:05:23 t 1 1 215409 679 0.00 2019-12-30 06:05:28 2019-12-30 06:05:47 t 1 1 215414 679 0.00 2019-12-30 06:07:10 2019-12-30 06:07:24 t 1 1 215415 578 0.00 2019-12-30 06:06:33 2019-12-30 06:07:34 t 1 1 215417 679 0.00 2019-12-30 06:07:51 2019-12-30 06:08:10 t 1 1 215418 679 0.00 2019-12-30 06:08:16 2019-12-30 06:08:46 t 1 1 215420 679 0.00 2019-12-30 06:09:12 2019-12-30 06:09:46 t 1 1 215424 679 0.00 2019-12-30 06:10:51 2019-12-30 06:11:06 t 1 1 215425 679 0.00 2019-12-30 06:11:12 2019-12-30 06:11:27 t 1 1 215433 679 0.00 2019-12-30 06:13:53 2019-12-30 06:14:08 t 1 1 215435 679 0.00 2019-12-30 06:14:34 2019-12-30 06:14:53 t 1 1 215436 679 0.00 2019-12-30 06:15:00 2019-12-30 06:15:24 t 1 1 215437 679 0.00 2019-12-30 06:15:29 2019-12-30 06:15:44 t 1 1 215441 679 0.00 2019-12-30 06:17:10 2019-12-30 06:17:20 t 1 1 215442 679 0.00 2019-12-30 06:17:26 2019-12-30 06:17:46 t 1 1 215446 679 0.00 2019-12-30 06:18:54 2019-12-30 06:19:09 t 1 1 215448 679 0.00 2019-12-30 06:19:31 2019-12-30 06:19:46 t 1 1 215449 679 0.00 2019-12-30 06:19:52 2019-12-30 06:20:28 t 1 1 215453 679 0.00 2019-12-30 06:21:53 2019-12-30 06:22:08 t 1 1 215454 679 0.00 2019-12-30 06:22:13 2019-12-30 06:22:48 t 1 1 215455 679 0.00 2019-12-30 06:22:53 2019-12-30 06:23:08 t 1 1 215456 679 0.00 2019-12-30 06:23:14 2019-12-30 06:23:29 t 1 1 215457 679 0.00 2019-12-30 06:23:35 2019-12-30 06:23:46 t 1 1 215459 679 0.00 2019-12-30 06:23:52 2019-12-30 06:24:12 t 1 1 215461 679 0.00 2019-12-30 06:24:54 2019-12-30 06:25:03 t 1 1 215466 679 0.00 2019-12-30 06:26:53 2019-12-30 06:27:15 t 1 1 215467 679 0.00 2019-12-30 06:27:21 2019-12-30 06:27:49 t 1 1 215477 679 0.00 2019-12-30 06:30:53 2019-12-30 06:31:09 t 1 1 215479 679 0.00 2019-12-30 06:31:35 2019-12-30 06:31:53 t 1 1 215484 679 0.00 2019-12-30 06:33:34 2019-12-30 06:33:45 t 1 1 215486 679 0.00 2019-12-30 06:34:13 2019-12-30 06:34:29 t 1 1 215489 679 0.00 2019-12-30 06:35:10 2019-12-30 06:35:25 t 1 1 215490 679 0.00 2019-12-30 06:35:31 2019-12-30 06:35:53 t 1 1 215494 679 0.00 2019-12-30 06:36:59 2019-12-30 06:37:09 t 1 1 215501 679 0.00 2019-12-30 06:39:01 2019-12-30 06:39:16 t 1 1 215503 679 0.00 2019-12-30 06:39:41 2019-12-30 06:39:57 t 1 1 215507 679 0.00 2019-12-30 06:40:23 2019-12-30 06:40:38 t 1 1 215511 679 0.00 2019-12-30 06:42:01 2019-12-30 06:42:12 t 1 1 215512 679 0.00 2019-12-30 06:42:18 2019-12-30 06:42:33 t 1 1 215515 679 0.00 2019-12-30 06:43:16 2019-12-30 06:43:26 t 1 1 215516 679 0.00 2019-12-30 06:43:33 2019-12-30 06:43:55 t 1 1 215518 679 0.00 2019-12-30 06:44:02 2019-12-30 06:44:12 t 1 1 215520 679 0.00 2019-12-30 06:44:41 2019-12-30 06:44:57 t 1 1 215525 707 0.00 2019-12-30 06:40:19 2019-12-30 06:46:59 t 1 1 215531 679 0.00 2019-12-30 06:49:20 2019-12-30 06:49:39 t 1 1 215533 516 0.00 2019-12-30 06:48:05 2019-12-30 06:50:46 t 1 1 215536 707 0.00 2019-12-30 06:49:30 2019-12-30 06:51:46 t 1 1 215541 679 0.00 2019-12-30 06:53:01 2019-12-30 06:53:17 t 1 1 215542 679 0.00 2019-12-30 06:53:22 2019-12-30 06:53:38 t 1 1 215547 679 0.00 2019-12-30 06:57:43 2019-12-30 06:57:57 t 1 1 215549 679 0.00 2019-12-30 06:58:29 2019-12-30 06:58:58 t 1 1 215551 679 0.00 2019-12-30 06:59:24 2019-12-30 06:59:56 t 1 1 215555 679 0.00 2019-12-30 07:01:04 2019-12-30 07:01:14 t 1 1 215556 679 0.00 2019-12-30 07:01:20 2019-12-30 07:01:40 t 1 1 215557 679 0.00 2019-12-30 07:01:45 2019-12-30 07:02:05 t 1 1 215559 679 0.00 2019-12-30 07:02:11 2019-12-30 07:02:21 t 1 1 215560 679 0.00 2019-12-30 07:02:28 2019-12-30 07:02:59 t 1 1 215564 679 0.00 2019-12-30 07:04:05 2019-12-30 07:04:20 t 1 1 215569 679 0.00 2019-12-30 07:05:24 2019-12-30 07:06:00 t 1 1 215573 679 0.00 2019-12-30 07:07:11 2019-12-30 07:07:22 t 1 1 215578 679 0.00 2019-12-30 07:09:05 2019-12-30 07:09:16 t 1 1 215580 679 0.00 2019-12-30 07:09:44 2019-12-30 07:09:59 t 1 1 215584 516 0.00 2019-12-30 06:57:14 2019-12-30 07:11:08 t 1 1 215588 679 0.00 2019-12-30 07:12:04 2019-12-30 07:12:19 t 1 1 215589 679 0.00 2019-12-30 07:12:25 2019-12-30 07:12:40 t 1 1 215593 679 0.00 2019-12-30 07:14:08 2019-12-30 07:14:23 t 1 1 215595 679 0.00 2019-12-30 07:15:05 2019-12-30 07:15:25 t 1 1 215596 679 0.00 2019-12-30 07:15:31 2019-12-30 07:16:02 t 1 1 215601 679 0.00 2019-12-30 07:18:06 2019-12-30 07:18:16 t 1 1 215602 679 0.00 2019-12-30 07:18:22 2019-12-30 07:18:36 t 1 1 215605 637 0.00 2019-12-30 01:22:05 2019-12-30 07:19:45 t 1 1 215607 679 0.00 2019-12-30 07:20:06 2019-12-30 07:20:21 t 1 1 215608 679 0.00 2019-12-30 07:20:26 2019-12-30 07:20:41 t 1 1 215610 679 0.00 2019-12-30 07:20:47 2019-12-30 07:21:04 t 1 1 215614 679 0.00 2019-12-30 07:22:13 2019-12-30 07:22:26 t 1 1 215616 679 0.00 2019-12-30 07:23:07 2019-12-30 07:23:22 t 1 1 215617 679 0.00 2019-12-30 07:23:28 2019-12-30 07:23:39 t 1 1 215621 679 0.00 2019-12-30 07:24:26 2019-12-30 07:24:41 t 1 1 215625 679 0.00 2019-12-30 07:26:09 2019-12-30 07:26:19 t 1 1 215626 679 0.00 2019-12-30 07:26:25 2019-12-30 07:26:40 t 1 1 215630 679 0.00 2019-12-30 07:28:09 2019-12-30 07:28:24 t 1 1 215631 679 0.00 2019-12-30 07:28:30 2019-12-30 07:28:44 t 1 1 215637 679 0.00 2019-12-30 07:30:48 2019-12-30 07:31:02 t 1 1 215639 679 0.00 2019-12-30 07:31:08 2019-12-30 07:31:19 t 1 1 215641 637 0.00 2019-12-30 07:22:28 2019-12-30 07:35:29 t 1 1 215643 625 0.00 2019-12-30 07:07:28 2019-12-30 07:47:52 t 1 1 215644 707 0.00 2019-12-30 07:11:36 2019-12-30 07:58:10 t 1 1 215646 516 0.00 2019-12-30 08:04:25 2019-12-30 08:06:52 t 1 1 215647 675 0.00 2019-12-30 08:14:08 2019-12-30 08:15:53 t 1 1 215649 611 0.00 2019-12-30 07:55:17 2019-12-30 08:22:59 t 1 1 215650 734 0.00 2019-12-30 08:07:01 2019-12-30 08:23:57 t 1 1 215651 625 0.00 2019-12-30 07:47:52 2019-12-30 08:24:46 t 1 1 215652 615 0.00 2019-12-30 08:23:53 2019-12-30 08:32:34 t 1 1 215656 516 0.00 2019-12-30 08:47:54 2019-12-30 08:53:13 t 1 1 215657 724 0.00 2019-12-30 08:44:49 2019-12-30 08:54:36 t 1 1 215661 625 0.00 2019-12-30 08:24:46 2019-12-30 09:01:28 t 1 1 215662 779 0.00 2019-12-30 08:58:55 2019-12-30 09:04:39 t 1 1 215669 516 0.00 2019-12-30 09:07:59 2019-12-30 09:09:46 t 1 1 215672 671 0.00 2019-12-30 09:12:46 2019-12-30 09:13:49 t 1 1 215673 675 0.00 2019-12-30 08:53:56 2019-12-30 09:14:57 t 1 1 215675 516 0.00 2019-12-30 09:14:42 2019-12-30 09:15:46 t 1 1 215677 779 0.00 2019-12-30 09:16:06 2019-12-30 09:17:08 t 1 1 215680 667 0.00 2019-12-30 09:17:57 2019-12-30 09:20:08 t 1 1 215681 667 0.00 2019-12-30 09:23:44 2019-12-30 09:23:53 t 1 1 215687 779 0.00 2019-12-30 09:29:15 2019-12-30 09:29:37 t 1 1 215697 779 0.00 2019-12-30 09:39:03 2019-12-30 09:39:18 t 1 1 215699 667 0.00 2019-12-30 09:41:19 2019-12-30 09:42:53 t 1 1 215702 544 0.00 2019-12-30 09:45:24 2019-12-30 09:49:10 t 1 1 215704 564 0.00 2019-12-30 09:37:26 2019-12-30 09:51:46 t 1 1 215705 637 0.00 2019-12-30 07:35:29 2019-12-30 09:54:36 t 1 1 215707 656 0.00 2019-12-30 08:06:32 2019-12-30 10:03:22 t 1 2 215711 724 0.00 2019-12-30 09:49:06 2019-12-30 10:11:51 t 1 1 215713 734 0.00 2019-12-30 10:09:55 2019-12-30 10:12:08 t 1 1 215718 631 0.00 2019-12-30 10:18:44 2019-12-30 10:21:09 t 1 1 215720 724 0.00 2019-12-30 10:28:59 2019-12-30 10:30:28 t 1 1 215722 591 0.00 2019-12-30 09:31:59 2019-12-30 10:38:28 t 1 1 215723 538 0.00 2019-12-30 09:43:05 2019-12-30 10:39:27 t 1 1 215724 779 0.00 2019-12-30 10:38:56 2019-12-30 10:45:42 t 1 1 215728 724 0.00 2019-12-30 10:30:44 2019-12-30 10:57:03 t 1 1 215730 483 0.00 2019-12-30 10:47:34 2019-12-30 10:59:00 t 1 1 215731 763 0.00 2019-12-30 10:58:29 2019-12-30 11:00:26 t 1 1 215733 779 0.00 2019-12-30 10:57:33 2019-12-30 11:03:04 t 1 1 215734 578 0.00 2019-12-30 10:44:01 2019-12-30 11:03:41 t 1 1 215735 564 0.00 2019-12-30 09:51:46 2019-12-30 11:04:27 t 1 1 215741 779 0.00 2019-12-30 11:11:12 2019-12-30 11:11:53 t 1 1 215745 675 0.00 2019-12-30 11:25:54 2019-12-30 11:27:06 t 1 1 215746 649 0.00 2019-12-30 10:53:14 2019-12-30 11:28:04 t 1 1 215747 679 0.00 2019-12-30 11:27:40 2019-12-30 11:28:40 t 1 1 215748 724 0.00 2019-12-30 11:20:55 2019-12-30 11:30:49 t 1 1 215750 679 0.00 2019-12-30 11:27:46 2019-12-30 11:31:39 t 1 1 215753 562 0.00 2019-12-30 11:30:35 2019-12-30 11:37:14 t 1 1 215754 562 0.00 2019-12-30 11:39:31 2019-12-30 11:41:03 t 1 1 215758 544 0.00 2019-12-30 11:47:13 2019-12-30 11:49:47 t 1 1 215760 707 0.00 2019-12-30 11:47:10 2019-12-30 11:50:44 t 1 1 215761 481 0.00 2019-12-30 10:09:11 2019-12-30 11:53:16 t 1 1 215763 538 0.00 2019-12-30 11:08:43 2019-12-30 11:55:21 t 1 1 215771 777 0.00 2019-12-30 12:06:02 2019-12-30 12:06:57 t 1 1 215772 562 0.00 2019-12-30 12:07:18 2019-12-30 12:07:34 t 1 1 215777 311 0.00 2019-12-30 11:33:40 2019-12-30 12:13:03 t 1 2 215779 637 0.00 2019-12-30 12:05:27 2019-12-30 12:14:58 t 1 1 215780 724 0.00 2019-12-30 12:09:12 2019-12-30 12:15:50 t 1 1 215786 622 0.00 2019-12-30 11:08:05 2019-12-30 12:25:53 t 1 1 215792 562 0.00 2019-12-30 12:28:38 2019-12-30 12:28:54 t 1 1 215796 611 0.00 2019-12-30 12:28:28 2019-12-30 12:31:06 t 1 1 215797 696 0.00 2019-12-30 12:21:26 2019-12-30 12:32:18 t 1 1 215799 591 0.00 2019-12-30 10:38:28 2019-12-30 12:34:10 t 1 1 215801 516 0.00 2019-12-30 12:33:32 2019-12-30 12:36:07 t 1 1 215804 637 0.00 2019-12-30 12:36:31 2019-12-30 12:41:45 t 1 1 215805 578 0.00 2019-12-30 12:13:26 2019-12-30 12:42:32 t 1 1 215806 562 0.00 2019-12-30 12:43:24 2019-12-30 12:43:56 t 1 1 215814 591 0.00 2019-12-30 12:34:10 2019-12-30 12:54:58 t 1 1 215816 679 0.00 2019-12-30 12:55:22 2019-12-30 12:55:23 t 1 1 215817 514 0.00 2019-12-30 12:46:45 2019-12-30 12:55:32 t 1 1 215819 516 0.00 2019-12-30 12:53:55 2019-12-30 12:55:51 t 1 1 215823 679 0.00 2019-12-30 12:56:49 2019-12-30 12:57:19 t 1 1 215843 679 0.00 2019-12-30 13:24:19 2019-12-30 13:24:42 t 1 1 215847 562 0.00 2019-12-30 13:23:59 2019-12-30 13:25:11 t 1 1 215849 679 0.00 2019-12-30 13:25:42 2019-12-30 13:25:52 t 1 1 215850 679 0.00 2019-12-30 13:26:00 2019-12-30 13:26:42 t 1 1 215854 679 0.00 2019-12-30 13:27:38 2019-12-30 13:27:48 t 1 1 215857 679 0.00 2019-12-30 13:29:05 2019-12-30 13:29:34 t 1 1 215859 679 0.00 2019-12-30 13:30:02 2019-12-30 13:30:34 t 1 1 215862 679 0.00 2019-12-30 13:31:00 2019-12-30 13:31:34 t 1 1 215870 562 0.00 2019-12-30 13:32:58 2019-12-30 13:33:36 t 1 1 215872 679 0.00 2019-12-30 13:34:18 2019-12-30 13:34:34 t 1 1 215874 679 0.00 2019-12-30 13:34:50 2019-12-30 13:35:00 t 1 1 215875 679 0.00 2019-12-30 13:35:16 2019-12-30 13:35:34 t 1 1 215883 679 0.00 2019-12-30 13:38:41 2019-12-30 13:38:54 t 1 1 215885 679 0.00 2019-12-30 13:39:52 2019-12-30 13:40:10 t 1 1 215887 679 0.00 2019-12-30 13:40:45 2019-12-30 13:40:56 t 1 1 215889 481 0.00 2019-12-30 12:12:44 2019-12-30 13:41:23 t 1 1 215895 679 0.00 2019-12-30 13:42:59 2019-12-30 13:43:16 t 1 1 215898 679 0.00 2019-12-30 13:43:23 2019-12-30 13:43:35 t 1 1 215899 679 0.00 2019-12-30 13:44:38 2019-12-30 13:44:48 t 1 1 215902 679 0.00 2019-12-30 13:45:38 2019-12-30 13:45:54 t 1 1 215909 679 0.00 2019-12-30 13:48:44 2019-12-30 13:48:54 t 1 1 215911 679 0.00 2019-12-30 13:49:40 2019-12-30 13:49:54 t 1 1 215912 637 0.00 2019-12-30 13:20:23 2019-12-30 13:50:43 t 1 1 215914 679 0.00 2019-12-30 13:51:42 2019-12-30 13:51:53 t 1 1 215919 562 0.00 2019-12-30 13:53:43 2019-12-30 13:54:56 t 1 1 215921 691 0.00 2019-12-30 13:55:11 2019-12-30 13:55:52 t 1 1 215924 220 0.00 2019-12-30 13:41:59 2019-12-30 13:57:02 t 1 1 215929 679 0.00 2019-12-30 13:59:06 2019-12-30 13:59:21 t 1 1 215931 691 0.00 2019-12-30 13:55:52 2019-12-30 14:00:39 t 1 1 215934 637 0.00 2019-12-30 13:50:44 2019-12-30 14:02:20 t 1 1 215670 779 0.00 2019-12-30 09:09:51 2019-12-30 09:12:33 t 1 1 215676 707 0.00 2019-12-30 08:52:30 2019-12-30 09:16:04 t 1 1 215678 667 0.00 2019-12-30 09:07:41 2019-12-30 09:17:57 t 1 1 215679 591 0.00 2019-12-30 09:08:53 2019-12-30 09:19:48 t 1 1 215683 667 0.00 2019-12-30 09:24:28 2019-12-30 09:24:40 t 1 1 215684 667 0.00 2019-12-30 09:25:42 2019-12-30 09:25:53 t 1 1 215690 779 0.00 2019-12-30 09:32:11 2019-12-30 09:33:25 t 1 1 215692 779 0.00 2019-12-30 09:34:18 2019-12-30 09:35:22 t 1 1 215700 538 0.00 2019-12-30 09:38:51 2019-12-30 09:43:26 t 1 1 215706 516 0.00 2019-12-30 10:00:54 2019-12-30 10:02:48 t 1 1 215708 667 0.00 2019-12-30 10:04:17 2019-12-30 10:04:35 t 1 1 215709 481 0.00 2019-12-30 09:14:40 2019-12-30 10:09:11 t 1 1 215710 779 0.00 2019-12-30 09:39:39 2019-12-30 10:11:35 t 1 1 215717 779 0.00 2019-12-30 10:14:03 2019-12-30 10:14:39 t 1 1 215725 671 0.00 2019-12-30 10:45:24 2019-12-30 10:50:09 t 1 1 215726 656 0.00 2019-12-30 10:35:03 2019-12-30 10:56:11 t 1 2 215732 675 0.00 2019-12-30 10:56:43 2019-12-30 11:00:58 t 1 1 215736 615 0.00 2019-12-30 11:02:02 2019-12-30 11:06:20 t 1 1 215737 779 0.00 2019-12-30 11:03:56 2019-12-30 11:07:27 t 1 1 215740 578 0.00 2019-12-30 11:03:41 2019-12-30 11:11:30 t 1 1 215742 734 0.00 2019-12-30 11:10:08 2019-12-30 11:12:38 t 1 1 215743 779 0.00 2019-12-30 11:15:26 2019-12-30 11:15:43 t 1 1 215755 514 0.00 2019-12-30 11:19:11 2019-12-30 11:44:21 t 1 1 215762 675 0.00 2019-12-30 11:52:51 2019-12-30 11:54:11 t 1 1 215764 562 0.00 2019-12-30 11:56:34 2019-12-30 11:57:23 t 1 1 215766 220 0.00 2019-12-30 12:00:18 2019-12-30 12:00:37 t 1 1 215769 487 0.00 2019-12-30 12:05:08 2019-12-30 12:06:13 t 1 2 215770 707 0.00 2019-12-30 11:50:59 2019-12-30 12:06:49 t 1 1 215774 724 0.00 2019-12-30 11:30:48 2019-12-30 12:09:14 t 1 1 215778 578 0.00 2019-12-30 11:40:20 2019-12-30 12:13:26 t 1 1 215781 696 0.00 2019-12-30 12:04:49 2019-12-30 12:16:31 t 1 1 215782 562 0.00 2019-12-30 12:18:01 2019-12-30 12:19:55 t 1 1 215784 675 0.00 2019-12-30 12:23:49 2019-12-30 12:25:24 t 1 1 215787 734 0.00 2019-12-30 12:26:00 2019-12-30 12:27:25 t 1 1 215790 622 0.00 2019-12-30 12:25:53 2019-12-30 12:28:36 t 1 1 215793 656 0.00 2019-12-30 11:54:21 2019-12-30 12:29:15 t 1 2 215794 760 0.00 2019-12-30 12:24:41 2019-12-30 12:29:46 t 1 1 215798 622 0.00 2019-12-30 12:29:00 2019-12-30 12:33:17 t 1 1 215802 637 0.00 2019-12-30 12:31:13 2019-12-30 12:36:31 t 1 1 215808 514 0.00 2019-12-30 12:28:44 2019-12-30 12:46:45 t 1 1 215810 562 0.00 2019-12-30 12:46:56 2019-12-30 12:47:42 t 1 1 215811 611 0.00 2019-12-30 12:31:02 2019-12-30 12:51:27 t 1 1 215818 679 0.00 2019-12-30 12:55:32 2019-12-30 12:55:48 t 1 1 215820 679 0.00 2019-12-30 12:55:56 2019-12-30 12:56:18 t 1 1 215825 611 0.00 2019-12-30 12:52:16 2019-12-30 13:02:43 t 1 1 215827 707 0.00 2019-12-30 12:26:01 2019-12-30 13:04:10 t 1 1 215828 538 0.00 2019-12-30 12:46:59 2019-12-30 13:04:29 t 1 1 215829 679 0.00 2019-12-30 12:57:27 2019-12-30 13:08:57 t 1 1 215832 724 0.00 2019-12-30 12:56:23 2019-12-30 13:14:52 t 1 1 215834 562 0.00 2019-12-30 13:14:07 2019-12-30 13:17:46 t 1 1 215837 562 0.00 2019-12-30 13:18:31 2019-12-30 13:20:51 t 1 1 215838 562 0.00 2019-12-30 13:21:18 2019-12-30 13:21:29 t 1 1 215839 562 0.00 2019-12-30 13:21:40 2019-12-30 13:22:53 t 1 1 215842 679 0.00 2019-12-30 13:23:39 2019-12-30 13:24:11 t 1 1 215844 679 0.00 2019-12-30 13:24:51 2019-12-30 13:24:53 t 1 1 215846 679 0.00 2019-12-30 13:25:01 2019-12-30 13:25:11 t 1 1 215851 679 0.00 2019-12-30 13:26:51 2019-12-30 13:26:52 t 1 1 215855 679 0.00 2019-12-30 13:27:56 2019-12-30 13:28:06 t 1 1 215856 679 0.00 2019-12-30 13:28:15 2019-12-30 13:28:56 t 1 1 215858 679 0.00 2019-12-30 13:29:42 2019-12-30 13:29:54 t 1 1 215860 679 0.00 2019-12-30 13:30:42 2019-12-30 13:30:52 t 1 1 215861 611 0.00 2019-12-30 13:26:54 2019-12-30 13:31:30 t 1 1 215864 562 0.00 2019-12-30 13:31:54 2019-12-30 13:32:04 t 1 1 215865 679 0.00 2019-12-30 13:32:05 2019-12-30 13:32:34 t 1 1 215868 696 0.00 2019-12-30 13:25:32 2019-12-30 13:33:02 t 1 1 215869 679 0.00 2019-12-30 13:33:13 2019-12-30 13:33:34 t 1 1 215871 679 0.00 2019-12-30 13:33:42 2019-12-30 13:33:43 t 1 1 215876 679 0.00 2019-12-30 13:35:50 2019-12-30 13:36:07 t 1 1 215877 679 0.00 2019-12-30 13:36:15 2019-12-30 13:36:45 t 1 1 215879 679 0.00 2019-12-30 13:37:01 2019-12-30 13:37:13 t 1 1 215880 679 0.00 2019-12-30 13:37:29 2019-12-30 13:37:38 t 1 1 215888 679 0.00 2019-12-30 13:41:03 2019-12-30 13:41:17 t 1 1 215891 679 0.00 2019-12-30 13:41:24 2019-12-30 13:41:35 t 1 1 215897 564 0.00 2019-12-30 13:30:28 2019-12-30 13:43:33 t 1 1 215900 562 0.00 2019-12-30 13:44:01 2019-12-30 13:45:16 t 1 1 215901 591 0.00 2019-12-30 13:31:40 2019-12-30 13:45:42 t 1 1 215905 679 0.00 2019-12-30 13:46:40 2019-12-30 13:46:56 t 1 1 215913 679 0.00 2019-12-30 13:50:40 2019-12-30 13:50:54 t 1 1 215917 679 0.00 2019-12-30 13:53:11 2019-12-30 13:54:03 t 1 1 215918 679 0.00 2019-12-30 13:54:42 2019-12-30 13:54:54 t 1 1 215920 691 0.00 2019-12-30 13:54:38 2019-12-30 13:55:11 t 1 1 215923 679 0.00 2019-12-30 13:56:43 2019-12-30 13:56:54 t 1 1 215925 562 0.00 2019-12-30 13:56:45 2019-12-30 13:57:11 t 1 1 215926 679 0.00 2019-12-30 13:57:43 2019-12-30 13:58:11 t 1 1 215932 679 0.00 2019-12-30 14:00:48 2019-12-30 14:00:59 t 1 1 215933 679 0.00 2019-12-30 14:01:47 2019-12-30 14:02:06 t 1 1 215944 679 0.00 2019-12-30 14:07:49 2019-12-30 14:08:19 t 1 1 215948 679 0.00 2019-12-30 14:09:50 2019-12-30 14:10:06 t 1 1 215951 679 0.00 2019-12-30 14:11:42 2019-12-30 14:11:55 t 1 1 215958 679 0.00 2019-12-30 14:14:55 2019-12-30 14:15:13 t 1 1 215959 679 0.00 2019-12-30 14:15:56 2019-12-30 14:16:11 t 1 1 215960 220 0.00 2019-12-30 13:57:03 2019-12-30 14:16:39 t 1 1 215961 562 0.00 2019-12-30 14:16:12 2019-12-30 14:17:20 t 1 1 215963 667 0.00 2019-12-30 14:06:47 2019-12-30 14:17:47 t 1 1 215972 679 0.00 2019-12-30 14:22:19 2019-12-30 14:23:04 t 1 1 215973 637 0.00 2019-12-30 14:20:09 2019-12-30 14:23:24 t 1 1 215974 679 0.00 2019-12-30 14:23:51 2019-12-30 14:24:03 t 1 1 215976 578 0.00 2019-12-30 13:58:40 2019-12-30 14:24:55 t 1 1 215987 720 0.00 2019-12-30 11:39:41 2019-12-30 14:35:35 t 1 1 215991 611 0.00 2019-12-30 14:37:29 2019-12-30 14:39:16 t 1 1 215994 679 0.00 2019-12-30 14:42:08 2019-12-30 14:42:36 t 1 1 215996 679 0.00 2019-12-30 14:43:38 2019-12-30 14:43:56 t 1 1 215998 611 0.00 2019-12-30 14:42:12 2019-12-30 14:44:08 t 1 1 216000 730 0.00 2019-12-30 14:33:50 2019-12-30 14:45:32 t 1 1 216001 679 0.00 2019-12-30 14:44:31 2019-12-30 14:46:32 t 1 1 216003 667 0.00 2019-12-30 14:43:19 2019-12-30 14:47:09 t 1 1 216009 516 0.00 2019-12-30 14:25:41 2019-12-30 14:52:59 t 1 1 215674 779 0.00 2019-12-30 09:14:52 2019-12-30 09:15:08 t 1 1 215682 516 0.00 2019-12-30 09:16:03 2019-12-30 09:24:16 t 1 1 215685 779 0.00 2019-12-30 09:19:12 2019-12-30 09:27:06 t 1 1 215686 779 0.00 2019-12-30 09:27:15 2019-12-30 09:28:18 t 1 1 215688 667 0.00 2019-12-30 09:31:15 2019-12-30 09:31:23 t 1 1 215689 779 0.00 2019-12-30 09:30:22 2019-12-30 09:32:03 t 1 1 215691 667 0.00 2019-12-30 09:32:06 2019-12-30 09:33:53 t 1 1 215693 734 0.00 2019-12-30 08:44:24 2019-12-30 09:35:43 t 1 1 215694 667 0.00 2019-12-30 09:36:00 2019-12-30 09:36:10 t 1 1 215695 516 0.00 2019-12-30 09:35:43 2019-12-30 09:37:19 t 1 1 215696 538 0.00 2019-12-30 09:37:03 2019-12-30 09:38:52 t 1 1 215698 667 0.00 2019-12-30 09:38:48 2019-12-30 09:39:53 t 1 1 215701 544 0.00 2019-12-30 09:44:50 2019-12-30 09:45:18 t 1 1 215703 220 0.00 2019-12-30 09:46:30 2019-12-30 09:51:26 t 1 1 215712 675 0.00 2019-12-30 10:08:10 2019-12-30 10:11:54 t 1 1 215714 779 0.00 2019-12-30 10:11:59 2019-12-30 10:12:27 t 1 1 215715 779 0.00 2019-12-30 10:12:39 2019-12-30 10:12:55 t 1 1 215716 779 0.00 2019-12-30 10:13:13 2019-12-30 10:13:30 t 1 1 215719 498 0.00 2019-12-30 09:16:46 2019-12-30 10:26:08 t 1 2 215721 779 0.00 2019-12-30 10:15:10 2019-12-30 10:38:23 t 1 1 215727 734 0.00 2019-12-30 10:36:24 2019-12-30 10:56:36 t 1 1 215729 779 0.00 2019-12-30 10:47:22 2019-12-30 10:57:12 t 1 1 215738 622 0.00 2019-12-30 10:04:52 2019-12-30 11:08:05 t 1 1 215739 611 0.00 2019-12-30 11:06:11 2019-12-30 11:08:56 t 1 1 215744 675 0.00 2019-12-30 11:19:05 2019-12-30 11:22:13 t 1 1 215749 516 0.00 2019-12-30 11:03:08 2019-12-30 11:31:27 t 1 1 215751 649 0.00 2019-12-30 11:28:04 2019-12-30 11:33:16 t 1 1 215752 675 0.00 2019-12-30 11:31:46 2019-12-30 11:33:50 t 1 1 215756 516 0.00 2019-12-30 11:33:09 2019-12-30 11:46:05 t 1 1 215757 562 0.00 2019-12-30 11:47:29 2019-12-30 11:47:49 t 1 1 215759 562 0.00 2019-12-30 11:49:38 2019-12-30 11:49:49 t 1 1 215765 675 0.00 2019-12-30 11:56:47 2019-12-30 11:58:14 t 1 1 215767 671 0.00 2019-12-30 12:01:12 2019-12-30 12:03:46 t 1 1 215768 483 0.00 2019-12-30 11:27:32 2019-12-30 12:05:09 t 1 1 215773 459 0.00 2019-12-30 11:59:33 2019-12-30 12:07:38 t 1 2 215775 220 0.00 2019-12-30 12:10:45 2019-12-30 12:10:45 f 1 2 215776 481 0.00 2019-12-30 11:53:16 2019-12-30 12:12:39 t 1 1 215783 760 0.00 2019-12-30 12:22:06 2019-12-30 12:24:42 t 1 1 215785 220 0.00 2019-12-30 12:08:57 2019-12-30 12:25:43 t 1 1 215788 516 0.00 2019-12-30 12:04:38 2019-12-30 12:28:25 t 1 1 215789 611 0.00 2019-12-30 12:22:41 2019-12-30 12:28:28 t 1 1 215791 514 0.00 2019-12-30 11:44:21 2019-12-30 12:28:44 t 1 1 215795 637 0.00 2019-12-30 12:14:58 2019-12-30 12:31:01 t 1 1 215800 562 0.00 2019-12-30 12:33:19 2019-12-30 12:35:00 t 1 1 215803 220 0.00 2019-12-30 12:25:43 2019-12-30 12:41:18 t 1 1 215807 562 0.00 2019-12-30 12:44:57 2019-12-30 12:45:01 t 1 1 215809 671 0.00 2019-12-30 12:41:06 2019-12-30 12:46:50 t 1 1 215812 675 0.00 2019-12-30 12:48:22 2019-12-30 12:51:59 t 1 1 215813 544 0.00 2019-12-30 12:45:28 2019-12-30 12:53:14 t 1 1 215815 679 0.00 2019-12-30 12:06:31 2019-12-30 12:55:15 t 1 1 215821 724 0.00 2019-12-30 12:21:21 2019-12-30 12:56:24 t 1 1 215822 679 0.00 2019-12-30 12:56:26 2019-12-30 12:56:41 t 1 1 215824 711 0.00 2019-12-30 12:23:58 2019-12-30 13:00:52 t 1 1 215826 675 0.00 2019-12-30 13:02:17 2019-12-30 13:04:08 t 1 1 215830 679 0.00 2019-12-30 13:09:05 2019-12-30 13:09:06 t 1 1 215831 591 0.00 2019-12-30 13:07:16 2019-12-30 13:11:49 t 1 1 215833 724 0.00 2019-12-30 13:14:28 2019-12-30 13:15:55 t 1 1 215835 562 0.00 2019-12-30 13:17:56 2019-12-30 13:18:14 t 1 1 215836 637 0.00 2019-12-30 12:41:45 2019-12-30 13:20:15 t 1 1 215840 679 0.00 2019-12-30 13:09:14 2019-12-30 13:23:31 t 1 1 215841 562 0.00 2019-12-30 13:23:31 2019-12-30 13:23:45 t 1 1 215845 611 0.00 2019-12-30 13:19:48 2019-12-30 13:25:08 t 1 1 215848 679 0.00 2019-12-30 13:25:19 2019-12-30 13:25:33 t 1 1 215852 687 0.00 2019-12-30 13:23:48 2019-12-30 13:27:25 t 1 1 215853 578 0.00 2019-12-30 12:42:31 2019-12-30 13:27:48 t 1 1 215863 679 0.00 2019-12-30 13:31:42 2019-12-30 13:31:57 t 1 1 215866 679 0.00 2019-12-30 13:32:42 2019-12-30 13:32:52 t 1 1 215867 679 0.00 2019-12-30 13:33:00 2019-12-30 13:33:01 t 1 1 215873 516 0.00 2019-12-30 13:24:09 2019-12-30 13:34:36 t 1 1 215878 656 0.00 2019-12-30 13:16:24 2019-12-30 13:37:01 t 1 2 215881 514 0.00 2019-12-30 12:55:32 2019-12-30 13:38:10 t 1 1 215882 679 0.00 2019-12-30 13:37:47 2019-12-30 13:38:35 t 1 1 215884 679 0.00 2019-12-30 13:39:10 2019-12-30 13:39:36 t 1 1 215886 679 0.00 2019-12-30 13:40:24 2019-12-30 13:40:36 t 1 1 215890 611 0.00 2019-12-30 13:40:10 2019-12-30 13:41:28 t 1 1 215892 679 0.00 2019-12-30 13:41:42 2019-12-30 13:41:52 t 1 1 215893 514 0.00 2019-12-30 13:38:10 2019-12-30 13:42:11 t 1 1 215894 679 0.00 2019-12-30 13:42:19 2019-12-30 13:42:35 t 1 1 215896 514 0.00 2019-12-30 13:42:11 2019-12-30 13:43:17 t 1 1 215903 675 0.00 2019-12-30 13:43:42 2019-12-30 13:46:23 t 1 1 215904 562 0.00 2019-12-30 13:45:07 2019-12-30 13:46:56 t 1 1 215906 679 0.00 2019-12-30 13:47:03 2019-12-30 13:47:14 t 1 1 215907 679 0.00 2019-12-30 13:47:40 2019-12-30 13:47:55 t 1 1 215908 679 0.00 2019-12-30 13:48:08 2019-12-30 13:48:37 t 1 1 215910 578 0.00 2019-12-30 13:27:48 2019-12-30 13:49:16 t 1 1 215915 562 0.00 2019-12-30 13:51:31 2019-12-30 13:52:16 t 1 1 215916 679 0.00 2019-12-30 13:52:41 2019-12-30 13:52:59 t 1 1 215922 679 0.00 2019-12-30 13:55:42 2019-12-30 13:55:56 t 1 1 215927 578 0.00 2019-12-30 13:49:17 2019-12-30 13:58:40 t 1 1 215928 679 0.00 2019-12-30 13:58:43 2019-12-30 13:58:59 t 1 1 215930 679 0.00 2019-12-30 13:59:48 2019-12-30 14:00:04 t 1 1 215935 679 0.00 2019-12-30 14:02:48 2019-12-30 14:03:07 t 1 1 215937 514 0.00 2019-12-30 13:43:19 2019-12-30 14:04:09 t 1 1 215938 679 0.00 2019-12-30 14:03:48 2019-12-30 14:04:28 t 1 1 215941 615 0.00 2019-12-30 14:02:44 2019-12-30 14:06:07 t 1 1 215942 671 0.00 2019-12-30 13:54:23 2019-12-30 14:06:34 t 1 1 215943 679 0.00 2019-12-30 14:06:49 2019-12-30 14:07:02 t 1 1 215945 562 0.00 2019-12-30 14:07:52 2019-12-30 14:08:28 t 1 1 215947 671 0.00 2019-12-30 14:06:33 2019-12-30 14:09:22 t 1 1 215949 679 0.00 2019-12-30 14:10:12 2019-12-30 14:10:22 t 1 1 215950 679 0.00 2019-12-30 14:10:41 2019-12-30 14:10:55 t 1 1 215952 679 0.00 2019-12-30 14:12:02 2019-12-30 14:12:11 t 1 1 215953 679 0.00 2019-12-30 14:12:18 2019-12-30 14:12:28 t 1 1 215957 562 0.00 2019-12-30 14:14:06 2019-12-30 14:15:00 t 1 1 215962 679 0.00 2019-12-30 14:16:56 2019-12-30 14:17:43 t 1 1 215964 679 0.00 2019-12-30 14:17:49 2019-12-30 14:17:59 t 1 1 215965 679 0.00 2019-12-30 14:18:57 2019-12-30 14:19:07 t 1 1 215936 490 0.00 2019-12-30 14:03:19 2019-12-30 14:03:22 t 1 1 215939 679 0.00 2019-12-30 14:04:34 2019-12-30 14:04:45 t 1 1 215940 679 0.00 2019-12-30 14:05:33 2019-12-30 14:05:46 t 1 1 215946 679 0.00 2019-12-30 14:08:51 2019-12-30 14:09:02 t 1 1 215954 679 0.00 2019-12-30 14:12:54 2019-12-30 14:13:23 t 1 1 215955 679 0.00 2019-12-30 14:13:54 2019-12-30 14:14:04 t 1 1 215956 679 0.00 2019-12-30 14:14:10 2019-12-30 14:14:21 t 1 1 215978 675 0.00 2019-12-30 14:23:21 2019-12-30 14:26:29 t 1 1 215979 679 0.00 2019-12-30 14:24:44 2019-12-30 14:28:37 t 1 1 215981 679 0.00 2019-12-30 14:29:46 2019-12-30 14:30:02 t 1 1 215982 679 0.00 2019-12-30 14:30:11 2019-12-30 14:30:35 t 1 1 215983 679 0.00 2019-12-30 14:30:41 2019-12-30 14:31:02 t 1 1 215988 611 0.00 2019-12-30 13:41:28 2019-12-30 14:37:30 t 1 1 215999 679 0.00 2019-12-30 14:44:02 2019-12-30 14:44:16 t 1 1 216005 679 0.00 2019-12-30 14:47:35 2019-12-30 14:50:17 t 1 1 216008 220 0.00 2019-12-30 14:37:51 2019-12-30 14:52:55 t 1 1 216011 679 0.00 2019-12-30 14:54:19 2019-12-30 14:54:50 t 1 1 216018 730 0.00 2019-12-30 14:45:32 2019-12-30 15:02:34 t 1 1 216021 483 0.00 2019-12-30 14:58:37 2019-12-30 15:07:20 t 1 1 216022 220 0.00 2019-12-30 14:52:55 2019-12-30 15:08:21 t 1 1 216023 481 0.00 2019-12-30 14:57:00 2019-12-30 15:11:09 t 1 1 216024 516 0.00 2019-12-30 15:03:00 2019-12-30 15:12:41 t 1 1 216026 220 0.00 2019-12-30 15:14:53 2019-12-30 15:19:22 t 1 1 216029 514 0.00 2019-12-30 15:30:09 2019-12-30 15:31:19 t 1 1 216031 720 0.00 2019-12-30 15:08:12 2019-12-30 15:42:35 t 1 1 216034 679 0.00 2019-12-30 15:31:47 2019-12-30 15:52:12 t 1 1 216036 777 0.00 2019-12-30 15:45:09 2019-12-30 15:54:01 t 1 1 216037 562 0.00 2019-12-30 15:58:14 2019-12-30 15:58:39 t 1 1 216042 671 0.00 2019-12-30 16:01:05 2019-12-30 16:06:29 t 1 1 216045 562 0.00 2019-12-30 16:12:42 2019-12-30 16:20:35 t 1 1 216050 562 0.00 2019-12-30 16:37:24 2019-12-30 16:37:48 t 1 1 216051 694 0.00 2019-12-30 16:37:01 2019-12-30 16:40:57 t 1 1 216052 220 0.00 2019-12-30 16:38:38 2019-12-30 16:43:32 t 1 1 216053 694 0.00 2019-12-30 16:40:57 2019-12-30 16:45:09 t 1 1 216056 483 0.00 2019-12-30 16:12:51 2019-12-30 16:50:04 t 1 1 216059 562 0.00 2019-12-30 16:58:34 2019-12-30 16:58:43 t 1 1 216062 784 0.00 2019-12-30 17:00:28 2019-12-30 17:00:38 t 1 1 216063 622 0.00 2019-12-30 13:20:21 2019-12-30 17:02:02 t 1 1 216064 562 0.00 2019-12-30 17:05:19 2019-12-30 17:05:47 t 1 1 216067 637 0.00 2019-12-30 17:12:38 2019-12-30 17:15:09 t 1 1 216072 763 0.00 2019-12-30 17:16:50 2019-12-30 17:18:02 t 1 1 216076 562 0.00 2019-12-30 17:21:06 2019-12-30 17:22:59 t 1 1 216078 724 0.00 2019-12-30 16:52:43 2019-12-30 17:23:24 t 1 1 216080 562 0.00 2019-12-30 17:21:25 2019-12-30 17:24:04 t 1 1 216081 687 0.00 2019-12-30 16:53:11 2019-12-30 17:24:44 t 1 1 216082 578 0.00 2019-12-30 16:59:13 2019-12-30 17:28:41 t 1 1 216086 562 0.00 2019-12-30 17:32:49 2019-12-30 17:33:19 t 1 1 216088 562 0.00 2019-12-30 17:34:24 2019-12-30 17:35:13 t 1 1 216090 687 0.00 2019-12-30 17:24:44 2019-12-30 17:35:46 t 1 1 216091 487 0.00 2019-12-30 17:19:45 2019-12-30 17:38:52 t 1 2 216092 784 0.00 2019-12-30 17:05:09 2019-12-30 17:40:17 t 1 1 216096 516 0.00 2019-12-30 17:11:03 2019-12-30 17:41:16 t 1 1 216097 611 0.00 2019-12-30 17:29:11 2019-12-30 17:42:07 t 1 1 216100 736 0.00 2019-12-30 17:44:49 2019-12-30 17:45:40 t 1 1 216104 730 0.00 2019-12-30 17:31:17 2019-12-30 17:49:22 t 1 1 216106 736 0.00 2019-12-30 17:49:56 2019-12-30 17:51:12 t 1 1 216107 551 0.00 2019-12-30 15:53:59 2019-12-30 17:51:27 t 1 1 216109 736 0.00 2019-12-30 17:51:19 2019-12-30 17:51:41 t 1 1 216112 736 0.00 2019-12-30 17:52:32 2019-12-30 17:54:19 t 1 1 216113 736 0.00 2019-12-30 17:54:37 2019-12-30 17:55:16 t 1 1 216115 637 0.00 2019-12-30 17:51:45 2019-12-30 17:56:57 t 1 1 216122 679 0.00 2019-12-30 17:44:10 2019-12-30 18:02:56 t 1 1 216124 481 0.00 2019-12-30 18:02:54 2019-12-30 18:04:01 t 1 1 216128 544 0.00 2019-12-30 17:36:02 2019-12-30 18:06:18 t 1 1 216135 687 0.00 2019-12-30 18:04:59 2019-12-30 18:10:37 t 1 1 216137 483 0.00 2019-12-30 17:58:45 2019-12-30 18:10:51 t 1 1 216142 736 0.00 2019-12-30 17:55:40 2019-12-30 18:14:58 t 1 1 216146 562 0.00 2019-12-30 18:16:00 2019-12-30 18:17:05 t 1 1 216148 736 0.00 2019-12-30 18:17:35 2019-12-30 18:18:05 t 1 1 216149 736 0.00 2019-12-30 18:18:24 2019-12-30 18:18:38 t 1 1 216152 611 0.00 2019-12-30 17:54:41 2019-12-30 18:19:42 t 1 1 216155 736 0.00 2019-12-30 18:19:53 2019-12-30 18:20:41 t 1 1 216157 687 0.00 2019-12-30 18:16:13 2019-12-30 18:23:08 t 1 1 216163 760 0.00 2019-12-30 18:37:36 2019-12-30 18:39:41 t 1 1 216166 538 0.00 2019-12-30 18:40:26 2019-12-30 18:42:02 t 1 1 216168 687 0.00 2019-12-30 18:23:08 2019-12-30 18:42:57 t 1 1 216173 220 0.00 2019-12-30 18:48:49 2019-12-30 18:48:49 f 1 2 216175 637 0.00 2019-12-30 18:46:57 2019-12-30 18:49:16 t 1 1 216176 562 0.00 2019-12-30 18:36:01 2019-12-30 18:49:35 t 1 1 216177 637 0.00 2019-12-30 18:50:08 2019-12-30 18:50:51 t 1 1 216180 691 0.00 2019-12-30 18:42:16 2019-12-30 18:52:08 t 1 1 216184 611 0.00 2019-12-30 18:46:58 2019-12-30 18:56:04 t 1 1 216188 551 0.00 2019-12-30 18:17:58 2019-12-30 19:00:59 t 1 1 216189 689 0.00 2019-12-30 18:59:16 2019-12-30 19:01:37 t 1 1 216192 483 0.00 2019-12-30 18:27:13 2019-12-30 19:02:32 t 1 1 216194 611 0.00 2019-12-30 18:56:04 2019-12-30 19:04:27 t 1 1 216197 544 0.00 2019-12-30 19:07:35 2019-12-30 19:08:16 t 1 1 216198 544 0.00 2019-12-30 19:08:15 2019-12-30 19:08:51 t 1 1 216201 551 0.00 2019-12-30 19:00:59 2019-12-30 19:09:41 t 1 1 216205 744 0.00 2019-12-30 18:32:57 2019-12-30 19:10:28 t 1 1 216206 544 0.00 2019-12-30 19:10:06 2019-12-30 19:10:52 t 1 1 216209 724 0.00 2019-12-30 17:54:28 2019-12-30 19:12:01 t 1 1 216212 544 0.00 2019-12-30 19:12:56 2019-12-30 19:13:34 t 1 1 216213 544 0.00 2019-12-30 19:13:33 2019-12-30 19:14:16 t 1 1 216215 564 0.00 2019-12-30 19:08:09 2019-12-30 19:15:33 t 1 1 216222 782 0.00 2019-12-30 18:13:11 2019-12-30 19:19:24 t 1 1 216224 763 0.00 2019-12-30 19:18:45 2019-12-30 19:21:24 t 1 1 216228 736 0.00 2019-12-30 19:14:07 2019-12-30 19:26:06 t 1 1 216229 763 0.00 2019-12-30 19:23:43 2019-12-30 19:26:25 t 1 1 216231 782 0.00 2019-12-30 19:19:23 2019-12-30 19:28:55 t 1 1 216234 763 0.00 2019-12-30 19:26:25 2019-12-30 19:32:19 t 1 1 216239 763 0.00 2019-12-30 19:32:19 2019-12-30 19:35:36 t 1 1 216240 544 0.00 2019-12-30 19:18:12 2019-12-30 19:35:49 t 1 1 216243 736 0.00 2019-12-30 19:26:06 2019-12-30 19:40:01 t 1 1 216248 562 0.00 2019-12-30 19:42:04 2019-12-30 19:43:21 t 1 1 216252 562 0.00 2019-12-30 19:44:21 2019-12-30 19:48:42 t 1 1 216255 544 0.00 2019-12-30 19:35:44 2019-12-30 19:51:43 t 1 1 215966 637 0.00 2019-12-30 14:03:38 2019-12-30 14:19:29 t 1 1 215967 679 0.00 2019-12-30 14:19:58 2019-12-30 14:20:11 t 1 1 215968 679 0.00 2019-12-30 14:20:17 2019-12-30 14:20:28 t 1 1 215969 679 0.00 2019-12-30 14:20:59 2019-12-30 14:21:32 t 1 1 215970 679 0.00 2019-12-30 14:21:58 2019-12-30 14:22:10 t 1 1 215971 562 0.00 2019-12-30 14:22:01 2019-12-30 14:22:30 t 1 1 215975 679 0.00 2019-12-30 14:24:09 2019-12-30 14:24:25 t 1 1 215977 562 0.00 2019-12-30 14:25:41 2019-12-30 14:25:47 t 1 1 215980 679 0.00 2019-12-30 14:28:43 2019-12-30 14:29:39 t 1 1 215984 562 0.00 2019-12-30 14:30:58 2019-12-30 14:31:22 t 1 1 215985 679 0.00 2019-12-30 14:31:38 2019-12-30 14:31:54 t 1 1 215986 679 0.00 2019-12-30 14:32:38 2019-12-30 14:33:01 t 1 1 215989 220 0.00 2019-12-30 14:16:39 2019-12-30 14:37:51 t 1 1 215990 649 0.00 2019-12-30 14:11:12 2019-12-30 14:39:14 t 1 1 215992 679 0.00 2019-12-30 14:33:26 2019-12-30 14:41:35 t 1 1 215993 679 0.00 2019-12-30 14:41:42 2019-12-30 14:41:56 t 1 1 215995 562 0.00 2019-12-30 14:41:49 2019-12-30 14:43:03 t 1 1 215997 768 0.00 2019-12-30 14:42:50 2019-12-30 14:44:03 t 1 1 216002 679 0.00 2019-12-30 14:46:48 2019-12-30 14:47:06 t 1 1 216004 562 0.00 2019-12-30 14:48:11 2019-12-30 14:48:22 t 1 1 216006 679 0.00 2019-12-30 14:51:19 2019-12-30 14:51:35 t 1 1 216007 679 0.00 2019-12-30 14:52:20 2019-12-30 14:52:30 t 1 1 216010 679 0.00 2019-12-30 14:52:51 2019-12-30 14:53:18 t 1 1 216015 481 0.00 2019-12-30 14:54:59 2019-12-30 14:57:01 t 1 1 216016 679 0.00 2019-12-30 14:57:23 2019-12-30 14:57:33 t 1 1 216017 679 0.00 2019-12-30 14:58:25 2019-12-30 14:58:34 t 1 1 216019 516 0.00 2019-12-30 14:52:59 2019-12-30 15:03:00 t 1 1 216025 220 0.00 2019-12-30 15:08:21 2019-12-30 15:14:53 t 1 1 216027 562 0.00 2019-12-30 15:22:36 2019-12-30 15:22:41 t 1 1 216028 562 0.00 2019-12-30 15:29:03 2019-12-30 15:30:13 t 1 1 216033 611 0.00 2019-12-30 15:49:40 2019-12-30 15:51:22 t 1 1 216035 551 0.00 2019-12-30 11:27:08 2019-12-30 15:53:54 t 1 1 216039 707 0.00 2019-12-30 15:16:42 2019-12-30 16:04:02 t 1 1 216040 720 0.00 2019-12-30 15:42:35 2019-12-30 16:05:04 t 1 1 216041 656 0.00 2019-12-30 15:32:51 2019-12-30 16:05:28 t 1 2 216043 777 0.00 2019-12-30 15:54:31 2019-12-30 16:07:08 t 1 1 216046 562 0.00 2019-12-30 16:23:33 2019-12-30 16:27:06 t 1 1 216048 538 0.00 2019-12-30 15:58:46 2019-12-30 16:37:01 t 1 1 216054 562 0.00 2019-12-30 16:48:16 2019-12-30 16:48:37 t 1 1 216058 562 0.00 2019-12-30 16:57:23 2019-12-30 16:57:53 t 1 1 216061 637 0.00 2019-12-30 14:23:22 2019-12-30 16:59:13 t 1 1 216070 763 0.00 2019-12-30 17:14:53 2019-12-30 17:16:51 t 1 1 216071 562 0.00 2019-12-30 17:17:46 2019-12-30 17:17:56 t 1 1 216075 483 0.00 2019-12-30 17:20:38 2019-12-30 17:22:01 t 1 1 216083 724 0.00 2019-12-30 17:25:05 2019-12-30 17:28:59 t 1 1 216084 562 0.00 2019-12-30 17:25:56 2019-12-30 17:29:16 t 1 1 216093 562 0.00 2019-12-30 17:36:21 2019-12-30 17:40:23 t 1 1 216094 562 0.00 2019-12-30 17:40:35 2019-12-30 17:41:01 t 1 1 216102 736 0.00 2019-12-30 17:45:39 2019-12-30 17:46:33 t 1 1 216114 711 0.00 2019-12-30 17:44:47 2019-12-30 17:55:20 t 1 1 216116 483 0.00 2019-12-30 17:53:54 2019-12-30 17:58:45 t 1 1 216119 694 0.00 2019-12-30 17:44:11 2019-12-30 18:00:39 t 1 1 216120 667 0.00 2019-12-30 17:52:33 2019-12-30 18:02:03 t 1 1 216125 687 0.00 2019-12-30 18:00:28 2019-12-30 18:04:09 t 1 1 216129 551 0.00 2019-12-30 17:59:00 2019-12-30 18:07:01 t 1 1 216130 637 0.00 2019-12-30 18:03:52 2019-12-30 18:07:37 t 1 1 216132 562 0.00 2019-12-30 18:05:35 2019-12-30 18:09:47 t 1 1 216139 679 0.00 2019-12-30 18:02:56 2019-12-30 18:12:12 t 1 1 216140 562 0.00 2019-12-30 18:10:54 2019-12-30 18:13:45 t 1 1 216143 591 0.00 2019-12-30 17:47:52 2019-12-30 18:15:13 t 1 1 216147 551 0.00 2019-12-30 18:07:01 2019-12-30 18:17:58 t 1 1 216150 311 0.00 2019-12-30 17:09:09 2019-12-30 18:18:56 t 1 2 216160 691 0.00 2019-12-30 18:28:33 2019-12-30 18:29:38 t 1 1 216161 562 0.00 2019-12-30 18:23:00 2019-12-30 18:36:01 t 1 1 216164 538 0.00 2019-12-30 18:22:18 2019-12-30 18:39:50 t 1 1 216165 637 0.00 2019-12-30 18:24:18 2019-12-30 18:40:28 t 1 1 216167 637 0.00 2019-12-30 18:41:17 2019-12-30 18:42:44 t 1 1 216171 637 0.00 2019-12-30 18:42:56 2019-12-30 18:46:47 t 1 1 216178 736 0.00 2019-12-30 18:41:53 2019-12-30 18:51:02 t 1 1 216185 591 0.00 2019-12-30 18:57:36 2019-12-30 18:58:40 t 1 1 216191 730 0.00 2019-12-30 18:47:43 2019-12-30 19:02:21 t 1 1 216193 562 0.00 2019-12-30 18:49:35 2019-12-30 19:02:54 t 1 1 216195 538 0.00 2019-12-30 18:51:57 2019-12-30 19:05:51 t 1 1 216199 591 0.00 2019-12-30 19:02:17 2019-12-30 19:09:09 t 1 1 216202 544 0.00 2019-12-30 19:09:31 2019-12-30 19:10:06 t 1 1 216204 562 0.00 2019-12-30 19:10:04 2019-12-30 19:10:25 t 1 1 216207 687 0.00 2019-12-30 18:42:57 2019-12-30 19:11:27 t 1 1 216214 544 0.00 2019-12-30 19:14:16 2019-12-30 19:14:55 t 1 1 216217 562 0.00 2019-12-30 19:15:42 2019-12-30 19:16:09 t 1 1 216218 544 0.00 2019-12-30 19:14:55 2019-12-30 19:16:47 t 1 1 216219 544 0.00 2019-12-30 19:16:47 2019-12-30 19:17:28 t 1 1 216223 744 0.00 2019-12-30 19:10:28 2019-12-30 19:20:14 t 1 1 216226 763 0.00 2019-12-30 19:21:24 2019-12-30 19:23:43 t 1 1 216227 562 0.00 2019-12-30 19:21:06 2019-12-30 19:25:19 t 1 1 216233 671 0.00 2019-12-30 19:18:08 2019-12-30 19:30:05 t 1 1 216236 671 0.00 2019-12-30 19:30:05 2019-12-30 19:34:45 t 1 1 216238 544 0.00 2019-12-30 19:19:41 2019-12-30 19:35:30 t 1 1 216241 679 0.00 2019-12-30 19:22:25 2019-12-30 19:35:53 t 1 1 216242 562 0.00 2019-12-30 19:36:24 2019-12-30 19:36:56 t 1 1 216249 746 0.00 2019-12-30 19:40:16 2019-12-30 19:46:28 t 1 1 216251 611 0.00 2019-12-30 19:43:29 2019-12-30 19:48:34 t 1 1 216257 564 0.00 2019-12-30 19:53:00 2019-12-30 19:55:49 t 1 1 216259 707 0.00 2019-12-30 18:44:24 2019-12-30 19:58:15 t 1 1 216264 707 0.00 2019-12-30 19:58:14 2019-12-30 19:59:15 t 1 1 216265 562 0.00 2019-12-30 19:59:01 2019-12-30 19:59:36 t 1 1 216266 736 0.00 2019-12-30 19:59:20 2019-12-30 20:00:28 t 1 1 216268 562 0.00 2019-12-30 19:59:44 2019-12-30 20:04:07 t 1 1 216271 516 0.00 2019-12-30 19:59:16 2019-12-30 20:06:03 t 1 1 216275 481 0.00 2019-12-30 19:49:06 2019-12-30 20:11:28 t 1 1 216277 562 0.00 2019-12-30 20:09:53 2019-12-30 20:12:20 t 1 1 216282 782 0.00 2019-12-30 19:29:25 2019-12-30 20:18:13 t 1 1 216285 746 0.00 2019-12-30 20:10:09 2019-12-30 20:19:42 t 1 1 216287 763 0.00 2019-12-30 20:14:05 2019-12-30 20:20:15 t 1 1 216293 615 0.00 2019-12-30 20:25:25 2019-12-30 20:27:07 t 1 1 216294 566 0.00 2019-12-30 20:19:42 2019-12-30 20:27:16 t 1 1 216297 611 0.00 2019-12-30 20:36:06 2019-12-30 20:37:05 t 1 1 216298 611 0.00 2019-12-30 20:37:05 2019-12-30 20:39:57 t 1 1 216012 481 0.00 2019-12-30 14:48:31 2019-12-30 14:55:00 t 1 1 216013 679 0.00 2019-12-30 14:55:24 2019-12-30 14:55:34 t 1 1 216014 679 0.00 2019-12-30 14:56:23 2019-12-30 14:56:39 t 1 1 216020 667 0.00 2019-12-30 14:47:34 2019-12-30 15:06:51 t 1 1 216030 679 0.00 2019-12-30 14:58:45 2019-12-30 15:31:47 t 1 1 216032 611 0.00 2019-12-30 15:47:43 2019-12-30 15:49:40 t 1 1 216038 679 0.00 2019-12-30 15:52:12 2019-12-30 16:02:29 t 1 1 216044 562 0.00 2019-12-30 16:08:43 2019-12-30 16:09:08 t 1 1 216047 694 0.00 2019-12-30 12:42:30 2019-12-30 16:33:49 t 1 1 216049 694 0.00 2019-12-30 16:33:49 2019-12-30 16:37:01 t 1 1 216055 694 0.00 2019-12-30 16:45:09 2019-12-30 16:49:26 t 1 1 216057 687 0.00 2019-12-30 16:26:39 2019-12-30 16:53:11 t 1 1 216060 578 0.00 2019-12-30 14:24:55 2019-12-30 16:59:13 t 1 1 216065 637 0.00 2019-12-30 16:59:13 2019-12-30 17:10:34 t 1 1 216066 637 0.00 2019-12-30 17:10:34 2019-12-30 17:13:31 t 1 1 216068 679 0.00 2019-12-30 17:10:31 2019-12-30 17:15:36 t 1 1 216069 562 0.00 2019-12-30 17:16:09 2019-12-30 17:16:36 t 1 1 216073 763 0.00 2019-12-30 17:18:01 2019-12-30 17:19:57 t 1 1 216074 483 0.00 2019-12-30 17:06:45 2019-12-30 17:20:38 t 1 1 216077 622 0.00 2019-12-30 17:02:01 2019-12-30 17:23:08 t 1 1 216079 483 0.00 2019-12-30 17:22:01 2019-12-30 17:23:32 t 1 1 216085 562 0.00 2019-12-30 17:31:37 2019-12-30 17:31:44 t 1 1 216087 631 0.00 2019-12-30 17:32:54 2019-12-30 17:33:49 t 1 1 216089 544 0.00 2019-12-30 17:04:40 2019-12-30 17:35:30 t 1 1 216095 667 0.00 2019-12-30 17:37:09 2019-12-30 17:41:07 t 1 1 216098 694 0.00 2019-12-30 16:49:26 2019-12-30 17:44:11 t 1 1 216099 637 0.00 2019-12-30 17:38:25 2019-12-30 17:45:24 t 1 1 216101 591 0.00 2019-12-30 16:17:00 2019-12-30 17:46:20 t 1 1 216103 487 0.00 2019-12-30 17:45:59 2019-12-30 17:49:13 t 1 2 216105 622 0.00 2019-12-30 17:23:08 2019-12-30 17:51:07 t 1 1 216108 637 0.00 2019-12-30 17:45:24 2019-12-30 17:51:39 t 1 1 216110 538 0.00 2019-12-30 16:43:09 2019-12-30 17:52:47 t 1 1 216111 483 0.00 2019-12-30 17:29:11 2019-12-30 17:53:54 t 1 1 216117 551 0.00 2019-12-30 17:51:27 2019-12-30 17:59:00 t 1 1 216118 687 0.00 2019-12-30 17:35:58 2019-12-30 18:00:28 t 1 1 216121 562 0.00 2019-12-30 17:44:03 2019-12-30 18:02:27 t 1 1 216123 637 0.00 2019-12-30 18:02:42 2019-12-30 18:03:52 t 1 1 216126 667 0.00 2019-12-30 18:03:25 2019-12-30 18:04:20 t 1 1 216127 760 0.00 2019-12-30 18:00:23 2019-12-30 18:05:50 t 1 1 216131 544 0.00 2019-12-30 18:06:23 2019-12-30 18:07:51 t 1 1 216133 637 0.00 2019-12-30 18:08:44 2019-12-30 18:09:58 t 1 1 216134 578 0.00 2019-12-30 17:28:41 2019-12-30 18:10:36 t 1 1 216136 730 0.00 2019-12-30 18:06:44 2019-12-30 18:10:46 t 1 1 216138 637 0.00 2019-12-30 18:10:08 2019-12-30 18:11:15 t 1 1 216141 637 0.00 2019-12-30 18:12:58 2019-12-30 18:14:50 t 1 1 216144 562 0.00 2019-12-30 18:14:33 2019-12-30 18:15:14 t 1 1 216145 687 0.00 2019-12-30 18:10:37 2019-12-30 18:16:13 t 1 1 216151 637 0.00 2019-12-30 18:16:42 2019-12-30 18:19:16 t 1 1 216153 694 0.00 2019-12-30 18:00:39 2019-12-30 18:20:05 t 1 1 216154 637 0.00 2019-12-30 18:19:22 2019-12-30 18:20:40 t 1 1 216156 562 0.00 2019-12-30 18:17:15 2019-12-30 18:21:47 t 1 1 216158 611 0.00 2019-12-30 18:25:48 2019-12-30 18:26:54 t 1 1 216159 696 0.00 2019-12-30 18:13:09 2019-12-30 18:27:39 t 1 1 216162 516 0.00 2019-12-30 17:41:23 2019-12-30 18:39:11 t 1 1 216169 752 0.00 2019-12-30 18:41:31 2019-12-30 18:43:02 t 1 1 216170 516 0.00 2019-12-30 18:39:11 2019-12-30 18:46:14 t 1 1 216172 730 0.00 2019-12-30 18:42:09 2019-12-30 18:47:35 t 1 1 216174 220 0.00 2019-12-30 18:49:00 2019-12-30 18:49:00 f 1 2 216179 578 0.00 2019-12-30 18:25:03 2019-12-30 18:51:05 t 1 1 216181 591 0.00 2019-12-30 18:23:14 2019-12-30 18:52:28 t 1 1 216182 696 0.00 2019-12-30 18:53:03 2019-12-30 18:54:22 t 1 1 216183 711 0.00 2019-12-30 17:55:20 2019-12-30 18:54:49 t 1 1 216186 637 0.00 2019-12-30 18:50:51 2019-12-30 18:58:40 t 1 1 216187 736 0.00 2019-12-30 18:56:14 2019-12-30 19:00:28 t 1 1 216190 516 0.00 2019-12-30 18:50:32 2019-12-30 19:02:20 t 1 1 216196 544 0.00 2019-12-30 18:38:27 2019-12-30 19:07:36 t 1 1 216200 544 0.00 2019-12-30 19:08:51 2019-12-30 19:09:31 t 1 1 216203 637 0.00 2019-12-30 18:58:43 2019-12-30 19:10:22 t 1 1 216208 544 0.00 2019-12-30 19:10:52 2019-12-30 19:11:27 t 1 1 216210 544 0.00 2019-12-30 19:11:27 2019-12-30 19:12:24 t 1 1 216211 544 0.00 2019-12-30 19:12:23 2019-12-30 19:12:56 t 1 1 216216 611 0.00 2019-12-30 19:07:55 2019-12-30 19:15:57 t 1 1 216220 730 0.00 2019-12-30 19:02:21 2019-12-30 19:17:42 t 1 1 216221 544 0.00 2019-12-30 19:17:24 2019-12-30 19:18:13 t 1 1 216225 679 0.00 2019-12-30 19:13:28 2019-12-30 19:22:25 t 1 1 216230 730 0.00 2019-12-30 19:28:21 2019-12-30 19:28:47 t 1 1 216232 578 0.00 2019-12-30 18:51:14 2019-12-30 19:29:49 t 1 1 216235 562 0.00 2019-12-30 19:31:49 2019-12-30 19:32:46 t 1 1 216237 687 0.00 2019-12-30 19:11:27 2019-12-30 19:34:48 t 1 1 216244 746 0.00 2019-12-30 19:35:44 2019-12-30 19:40:16 t 1 1 216245 671 0.00 2019-12-30 19:34:45 2019-12-30 19:41:02 t 1 1 216246 763 0.00 2019-12-30 19:35:36 2019-12-30 19:41:58 t 1 1 216247 611 0.00 2019-12-30 19:16:03 2019-12-30 19:43:03 t 1 1 216250 687 0.00 2019-12-30 19:46:47 2019-12-30 19:48:00 t 1 1 216253 763 0.00 2019-12-30 19:41:57 2019-12-30 19:49:17 t 1 1 216254 726 0.00 2019-12-30 19:44:58 2019-12-30 19:49:42 t 1 1 216256 611 0.00 2019-12-30 19:48:35 2019-12-30 19:54:20 t 1 1 216258 746 0.00 2019-12-30 19:46:28 2019-12-30 19:56:22 t 1 1 216261 483 0.00 2019-12-30 19:55:42 2019-12-30 19:58:50 t 1 1 216263 736 0.00 2019-12-30 19:40:01 2019-12-30 19:58:58 t 1 1 216270 763 0.00 2019-12-30 20:01:45 2019-12-30 20:05:40 t 1 1 216272 711 0.00 2019-12-30 18:54:49 2019-12-30 20:07:58 t 1 1 216278 544 0.00 2019-12-30 19:59:35 2019-12-30 20:13:45 t 1 1 216279 763 0.00 2019-12-30 20:10:26 2019-12-30 20:14:05 t 1 1 216281 691 0.00 2019-12-30 20:16:59 2019-12-30 20:17:19 t 1 1 216284 566 0.00 2019-12-30 19:49:47 2019-12-30 20:19:42 t 1 1 216288 744 0.00 2019-12-30 19:20:14 2019-12-30 20:20:17 t 1 1 216295 687 0.00 2019-12-30 20:29:06 2019-12-30 20:31:34 t 1 1 216300 773 0.00 2019-12-30 20:40:47 2019-12-30 20:41:11 t 1 1 216308 746 0.00 2019-12-30 20:50:05 2019-12-30 20:50:41 t 1 1 216311 566 0.00 2019-12-30 20:45:16 2019-12-30 20:54:47 t 1 1 216315 615 0.00 2019-12-30 20:55:51 2019-12-30 20:57:34 t 1 1 216318 566 0.00 2019-12-30 20:54:47 2019-12-30 21:00:44 t 1 1 216319 671 0.00 2019-12-30 20:55:19 2019-12-30 21:01:31 t 1 1 216321 716 0.00 2019-12-30 21:01:39 2019-12-30 21:02:24 t 1 1 216324 679 0.00 2019-12-30 20:42:19 2019-12-30 21:07:25 t 1 1 216325 516 0.00 2019-12-30 21:06:56 2019-12-30 21:08:09 t 1 1 216260 544 0.00 2019-12-30 19:52:04 2019-12-30 19:58:35 t 1 1 216262 694 0.00 2019-12-30 18:20:05 2019-12-30 19:58:57 t 1 1 216267 746 0.00 2019-12-30 19:56:22 2019-12-30 20:03:58 t 1 1 216269 746 0.00 2019-12-30 20:04:26 2019-12-30 20:05:36 t 1 1 216273 763 0.00 2019-12-30 20:05:40 2019-12-30 20:09:28 t 1 1 216274 746 0.00 2019-12-30 20:06:00 2019-12-30 20:10:09 t 1 1 216276 516 0.00 2019-12-30 20:07:55 2019-12-30 20:12:17 t 1 1 216280 562 0.00 2019-12-30 20:13:07 2019-12-30 20:17:08 t 1 1 216283 691 0.00 2019-12-30 20:17:19 2019-12-30 20:18:35 t 1 1 216286 611 0.00 2019-12-30 20:15:57 2019-12-30 20:20:05 t 1 1 216289 782 0.00 2019-12-30 20:19:17 2019-12-30 20:20:24 t 1 1 216290 649 0.00 2019-12-30 20:13:59 2019-12-30 20:21:52 t 1 1 216291 578 0.00 2019-12-30 19:29:48 2019-12-30 20:26:20 t 1 1 216292 562 0.00 2019-12-30 20:19:01 2019-12-30 20:26:46 t 1 1 216296 615 0.00 2019-12-30 20:27:15 2019-12-30 20:35:59 t 1 1 216302 633 0.00 2019-12-30 20:28:29 2019-12-30 20:42:10 t 1 1 216304 675 0.00 2019-12-30 20:39:47 2019-12-30 20:44:47 t 1 1 216310 615 0.00 2019-12-30 20:49:49 2019-12-30 20:52:40 t 1 1 216317 696 0.00 2019-12-30 20:53:39 2019-12-30 21:00:22 t 1 1 216320 696 0.00 2019-12-30 21:00:22 2019-12-30 21:01:33 t 1 1 216327 736 0.00 2019-12-30 21:09:33 2019-12-30 21:09:45 t 1 1 216328 566 0.00 2019-12-30 21:00:44 2019-12-30 21:11:09 t 1 1 216329 637 0.00 2019-12-30 19:10:22 2019-12-30 21:13:42 t 1 1 216330 709 0.00 2019-12-30 20:25:58 2019-12-30 21:17:20 t 1 1 216331 675 0.00 2019-12-30 21:13:35 2019-12-30 21:17:59 t 1 1 216335 566 0.00 2019-12-30 21:11:09 2019-12-30 21:22:54 t 1 1 216343 782 0.00 2019-12-30 21:20:27 2019-12-30 21:33:17 t 1 1 216348 510 0.00 2019-12-30 21:35:40 2019-12-30 21:50:08 t 1 1 216351 694 0.00 2019-12-30 21:29:34 2019-12-30 21:54:27 t 1 1 216352 782 0.00 2019-12-30 21:33:23 2019-12-30 21:56:24 t 1 1 216364 679 0.00 2019-12-30 21:48:28 2019-12-30 22:08:01 t 1 1 216365 637 0.00 2019-12-30 21:49:35 2019-12-30 22:10:09 t 1 1 216367 566 0.00 2019-12-30 22:04:00 2019-12-30 22:12:10 t 1 1 216369 694 0.00 2019-12-30 22:03:07 2019-12-30 22:15:12 t 1 1 216370 510 0.00 2019-12-30 22:07:23 2019-12-30 22:19:03 t 1 1 216377 578 0.00 2019-12-30 21:05:01 2019-12-30 22:34:20 t 1 1 216381 782 0.00 2019-12-30 22:33:48 2019-12-30 22:36:28 t 1 1 216387 675 0.00 2019-12-30 22:41:38 2019-12-30 22:48:17 t 1 1 216389 786 0.00 2019-12-30 21:19:04 2019-12-30 22:52:44 t 1 1 216396 675 0.00 2019-12-30 22:58:12 2019-12-30 23:04:24 t 1 1 216398 773 0.00 2019-12-30 22:58:25 2019-12-30 23:06:37 t 1 1 216402 687 0.00 2019-12-30 22:34:36 2019-12-30 23:18:42 t 1 1 216407 786 0.00 2019-12-30 23:25:34 2019-12-30 23:26:42 t 1 1 216410 510 0.00 2019-12-30 22:20:38 2019-12-30 23:29:50 t 1 1 216413 786 0.00 2019-12-30 23:33:33 2019-12-30 23:35:17 t 1 1 216417 578 0.00 2019-12-30 23:14:00 2019-12-30 23:43:13 t 1 1 216418 694 0.00 2019-12-30 22:15:12 2019-12-30 23:45:39 t 1 1 216419 786 0.00 2019-12-30 23:36:43 2019-12-30 23:47:26 t 1 1 216420 679 0.00 2019-12-30 23:24:09 2019-12-30 23:50:27 t 1 1 216424 685 0.00 2019-12-30 23:45:10 2019-12-30 23:55:21 t 1 1 216428 627 0.00 2019-12-30 22:46:39 2019-12-31 00:13:57 t 1 1 216430 687 0.00 2019-12-31 00:00:35 2019-12-31 00:22:43 t 1 1 216434 627 0.00 2019-12-31 00:13:57 2019-12-31 00:39:46 t 1 1 216435 773 0.00 2019-12-31 00:27:38 2019-12-31 00:41:49 t 1 1 216438 611 0.00 2019-12-31 00:16:41 2019-12-31 00:47:56 t 1 1 216442 773 0.00 2019-12-31 00:49:46 2019-12-31 00:56:18 t 1 1 216445 679 0.00 2019-12-31 01:00:09 2019-12-31 01:05:32 t 1 1 216447 679 0.00 2019-12-31 01:05:32 2019-12-31 01:13:54 t 1 1 216448 773 0.00 2019-12-31 00:56:18 2019-12-31 01:17:21 t 1 1 216453 679 0.00 2019-12-31 01:23:53 2019-12-31 01:29:13 t 1 1 216454 679 0.00 2019-12-31 01:29:13 2019-12-31 01:35:31 t 1 1 216456 687 0.00 2019-12-31 01:20:35 2019-12-31 01:38:27 t 1 1 216460 687 0.00 2019-12-31 01:38:27 2019-12-31 01:49:35 t 1 1 216461 551 0.00 2019-12-30 22:19:45 2019-12-31 01:50:08 t 1 1 216467 514 0.00 2019-12-31 01:38:56 2019-12-31 01:56:31 t 1 1 216472 514 0.00 2019-12-31 01:56:31 2019-12-31 02:06:33 t 1 1 216475 544 0.00 2019-12-31 02:13:21 2019-12-31 02:28:01 t 1 1 216476 694 0.00 2019-12-30 23:45:39 2019-12-31 02:35:35 t 1 1 216477 687 0.00 2019-12-31 02:00:32 2019-12-31 02:41:28 t 1 1 216480 220 0.00 2019-12-31 03:23:27 2019-12-31 03:54:33 t 1 2 216481 481 0.00 2019-12-30 21:32:54 2019-12-31 04:07:16 t 1 1 216483 516 0.00 2019-12-31 05:04:12 2019-12-31 05:08:25 t 1 1 216486 220 0.00 2019-12-31 05:28:27 2019-12-31 05:29:50 t 1 2 216491 611 0.00 2019-12-31 06:06:56 2019-12-31 06:10:02 t 1 1 216492 481 0.00 2019-12-31 04:07:57 2019-12-31 06:19:13 t 1 1 216494 786 0.00 2019-12-31 06:28:34 2019-12-31 06:33:07 t 1 1 216499 481 0.00 2019-12-31 06:19:12 2019-12-31 06:46:52 t 1 1 216501 775 0.00 2019-12-30 15:19:14 2019-12-31 07:08:04 t 1 1 216502 689 0.00 2019-12-31 07:06:58 2019-12-31 07:09:24 t 1 1 216504 775 0.00 2019-12-31 07:11:51 2019-12-31 07:13:21 t 1 1 216505 566 0.00 2019-12-31 06:44:56 2019-12-31 07:13:44 t 1 1 216508 707 0.00 2019-12-31 06:52:08 2019-12-31 07:17:42 t 1 1 216514 611 0.00 2019-12-31 07:18:05 2019-12-31 07:32:17 t 1 1 216522 694 0.00 2019-12-31 06:47:54 2019-12-31 07:56:18 t 1 1 216525 611 0.00 2019-12-31 08:01:48 2019-12-31 08:05:42 t 1 1 216528 562 0.00 2019-12-31 08:14:39 2019-12-31 08:14:44 t 1 1 216532 562 0.00 2019-12-31 08:21:10 2019-12-31 08:22:39 t 1 1 216541 637 0.00 2019-12-31 07:54:01 2019-12-31 08:36:25 t 1 1 216543 627 0.00 2019-12-31 08:37:07 2019-12-31 08:37:22 t 1 1 216546 481 0.00 2019-12-31 07:34:26 2019-12-31 08:42:00 t 1 1 216548 591 0.00 2019-12-31 08:12:14 2019-12-31 08:46:10 t 1 1 216553 564 0.00 2019-12-31 08:33:49 2019-12-31 08:50:58 t 1 1 216560 615 0.00 2019-12-31 09:01:52 2019-12-31 09:06:17 t 1 1 216562 481 0.00 2019-12-31 08:49:38 2019-12-31 09:06:27 t 1 1 216563 611 0.00 2019-12-31 09:05:21 2019-12-31 09:06:49 t 1 1 216564 538 0.00 2019-12-31 08:51:35 2019-12-31 09:07:44 t 1 1 216566 591 0.00 2019-12-31 09:05:41 2019-12-31 09:10:25 t 1 1 216567 481 0.00 2019-12-31 09:06:27 2019-12-31 09:11:06 t 1 1 216568 481 0.00 2019-12-31 09:10:30 2019-12-31 09:12:08 t 1 1 216575 637 0.00 2019-12-31 09:21:37 2019-12-31 09:25:41 t 1 1 216576 763 0.00 2019-12-31 09:25:36 2019-12-31 09:29:13 t 1 1 216579 637 0.00 2019-12-31 09:26:29 2019-12-31 09:33:51 t 1 1 216580 744 0.00 2019-12-31 07:38:10 2019-12-31 09:35:08 t 1 1 216581 637 0.00 2019-12-31 09:33:58 2019-12-31 09:36:08 t 1 1 216582 611 0.00 2019-12-31 09:15:22 2019-12-31 09:37:15 t 1 1 216583 562 0.00 2019-12-31 09:31:33 2019-12-31 09:37:51 t 1 1 216585 562 0.00 2019-12-31 09:39:27 2019-12-31 09:40:19 t 1 1 216299 707 0.00 2019-12-30 20:24:34 2019-12-30 20:41:09 t 1 1 216301 746 0.00 2019-12-30 20:19:42 2019-12-30 20:41:31 t 1 1 216303 481 0.00 2019-12-30 20:11:48 2019-12-30 20:43:58 t 1 1 216305 566 0.00 2019-12-30 20:27:15 2019-12-30 20:45:16 t 1 1 216306 615 0.00 2019-12-30 20:46:23 2019-12-30 20:47:37 t 1 1 216307 746 0.00 2019-12-30 20:41:31 2019-12-30 20:50:06 t 1 1 216309 675 0.00 2019-12-30 20:50:11 2019-12-30 20:52:25 t 1 1 216312 782 0.00 2019-12-30 20:31:42 2019-12-30 20:54:54 t 1 1 216313 746 0.00 2019-12-30 20:50:39 2019-12-30 20:57:01 t 1 1 216314 782 0.00 2019-12-30 20:55:06 2019-12-30 20:57:29 t 1 1 216316 615 0.00 2019-12-30 20:57:42 2019-12-30 20:59:47 t 1 1 216322 578 0.00 2019-12-30 20:26:20 2019-12-30 21:05:01 t 1 1 216323 516 0.00 2019-12-30 20:44:29 2019-12-30 21:05:48 t 1 1 216326 736 0.00 2019-12-30 21:07:15 2019-12-30 21:08:53 t 1 1 216333 786 0.00 2019-12-30 21:16:02 2019-12-30 21:19:04 t 1 1 216334 782 0.00 2019-12-30 20:57:28 2019-12-30 21:20:21 t 1 1 216336 516 0.00 2019-12-30 21:14:12 2019-12-30 21:26:02 t 1 1 216338 724 0.00 2019-12-30 19:44:21 2019-12-30 21:30:13 t 1 1 216341 481 0.00 2019-12-30 20:44:38 2019-12-30 21:32:54 t 1 1 216345 722 0.00 2019-12-30 21:25:45 2019-12-30 21:40:58 t 1 1 216346 656 0.00 2019-12-30 21:37:29 2019-12-30 21:41:48 t 1 1 216347 679 0.00 2019-12-30 21:30:24 2019-12-30 21:48:28 t 1 1 216350 566 0.00 2019-12-30 21:37:14 2019-12-30 21:50:35 t 1 1 216355 660 0.00 2019-12-30 21:57:00 2019-12-30 21:57:57 t 1 1 216357 768 0.00 2019-12-30 21:54:50 2019-12-30 21:59:18 t 1 1 216358 768 0.00 2019-12-30 21:58:59 2019-12-30 22:02:36 t 1 1 216361 722 0.00 2019-12-30 21:59:04 2019-12-30 22:04:18 t 1 1 216366 564 0.00 2019-12-30 20:29:45 2019-12-30 22:11:42 t 1 1 216371 551 0.00 2019-12-30 21:31:10 2019-12-30 22:19:45 t 1 1 216372 510 0.00 2019-12-30 22:19:28 2019-12-30 22:20:29 t 1 1 216373 687 0.00 2019-12-30 22:22:28 2019-12-30 22:26:44 t 1 1 216374 656 0.00 2019-12-30 22:09:56 2019-12-30 22:31:06 t 1 2 216382 746 0.00 2019-12-30 22:32:27 2019-12-30 22:38:04 t 1 1 216385 627 0.00 2019-12-30 22:45:11 2019-12-30 22:46:14 t 1 1 216386 564 0.00 2019-12-30 22:11:42 2019-12-30 22:47:07 t 1 1 216390 544 0.00 2019-12-30 22:36:24 2019-12-30 22:53:27 t 1 1 216391 637 0.00 2019-12-30 22:10:15 2019-12-30 22:54:51 t 1 1 216392 734 0.00 2019-12-30 22:54:36 2019-12-30 22:56:16 t 1 1 216393 786 0.00 2019-12-30 22:54:46 2019-12-30 22:59:15 t 1 1 216394 591 0.00 2019-12-30 22:06:15 2019-12-30 23:01:26 t 1 1 216395 716 0.00 2019-12-30 22:59:27 2019-12-30 23:02:33 t 1 1 216397 670 0.00 2019-12-30 22:52:01 2019-12-30 23:05:44 t 1 1 216400 578 0.00 2019-12-30 22:34:20 2019-12-30 23:14:00 t 1 1 216401 786 0.00 2019-12-30 23:17:10 2019-12-30 23:18:26 t 1 1 216405 591 0.00 2019-12-30 23:20:25 2019-12-30 23:21:38 t 1 1 216406 786 0.00 2019-12-30 23:24:13 2019-12-30 23:25:35 t 1 1 216409 220 0.00 2019-12-30 23:28:07 2019-12-30 23:28:07 f 1 1 216411 631 0.00 2019-12-30 23:29:41 2019-12-30 23:31:43 t 1 1 216414 510 0.00 2019-12-30 23:30:10 2019-12-30 23:35:25 t 1 1 216416 538 0.00 2019-12-30 21:10:29 2019-12-30 23:37:30 t 1 1 216427 220 0.00 2019-12-31 00:01:49 2019-12-31 00:02:35 t 1 2 216429 786 0.00 2019-12-30 23:56:36 2019-12-31 00:22:19 t 1 1 216432 687 0.00 2019-12-31 00:23:45 2019-12-31 00:36:41 t 1 1 216433 637 0.00 2019-12-30 22:55:17 2019-12-31 00:37:41 t 1 1 216437 687 0.00 2019-12-31 00:37:31 2019-12-31 00:47:09 t 1 1 216441 611 0.00 2019-12-31 00:49:13 2019-12-31 00:52:49 t 1 1 216443 679 0.00 2019-12-31 00:47:08 2019-12-31 01:00:09 t 1 1 216444 671 0.00 2019-12-31 01:01:39 2019-12-31 01:05:14 t 1 1 216446 538 0.00 2019-12-30 23:37:34 2019-12-31 01:12:39 t 1 1 216449 679 0.00 2019-12-31 01:13:54 2019-12-31 01:19:08 t 1 1 216452 773 0.00 2019-12-31 01:17:21 2019-12-31 01:24:06 t 1 1 216455 773 0.00 2019-12-31 01:24:45 2019-12-31 01:37:06 t 1 1 216457 514 0.00 2019-12-31 01:36:50 2019-12-31 01:38:56 t 1 1 216459 679 0.00 2019-12-31 01:41:19 2019-12-31 01:47:58 t 1 1 216462 752 0.00 2019-12-31 01:31:42 2019-12-31 01:51:46 t 1 1 216465 679 0.00 2019-12-31 01:53:47 2019-12-31 01:53:56 t 1 1 216469 687 0.00 2019-12-31 01:55:45 2019-12-31 02:00:32 t 1 1 216473 679 0.00 2019-12-31 01:54:20 2019-12-31 02:11:42 t 1 1 216478 696 0.00 2019-12-31 03:05:35 2019-12-31 03:08:58 t 1 1 216479 220 0.00 2019-12-31 02:29:33 2019-12-31 03:22:56 t 1 2 216482 220 0.00 2019-12-31 03:55:17 2019-12-31 04:46:35 t 1 2 216485 683 0.00 2019-12-31 05:21:30 2019-12-31 05:25:54 t 1 1 216487 516 0.00 2019-12-31 05:08:25 2019-12-31 05:35:53 t 1 1 216488 516 0.00 2019-12-31 05:35:53 2019-12-31 05:36:57 t 1 1 216489 516 0.00 2019-12-31 05:43:44 2019-12-31 05:44:47 t 1 1 216490 516 0.00 2019-12-31 05:44:47 2019-12-31 05:58:40 t 1 1 216495 786 0.00 2019-12-31 06:33:36 2019-12-31 06:34:53 t 1 1 216500 694 0.00 2019-12-31 02:35:35 2019-12-31 06:47:54 t 1 1 216503 744 0.00 2019-12-31 06:46:06 2019-12-31 07:10:35 t 1 1 216506 566 0.00 2019-12-31 07:13:44 2019-12-31 07:15:46 t 1 1 216509 720 0.00 2019-12-30 16:05:04 2019-12-31 07:20:12 t 1 1 216510 786 0.00 2019-12-31 06:35:45 2019-12-31 07:20:56 t 1 1 216512 625 0.00 2019-12-31 07:20:16 2019-12-31 07:29:49 t 1 1 216515 566 0.00 2019-12-31 07:15:45 2019-12-31 07:32:46 t 1 1 216516 681 0.00 2019-12-31 07:08:11 2019-12-31 07:37:55 t 1 1 216518 566 0.00 2019-12-31 07:32:46 2019-12-31 07:42:00 t 1 1 216520 516 0.00 2019-12-31 07:50:04 2019-12-31 07:52:28 t 1 1 216524 498 0.00 2019-12-31 08:00:10 2019-12-31 08:01:53 t 1 1 216529 782 0.00 2019-12-30 23:58:47 2019-12-31 08:15:33 t 1 1 216530 562 0.00 2019-12-31 08:15:42 2019-12-31 08:16:40 t 1 1 216531 694 0.00 2019-12-31 08:19:46 2019-12-31 08:20:51 t 1 1 216535 538 0.00 2019-12-31 06:32:27 2019-12-31 08:27:44 t 1 1 216538 562 0.00 2019-12-31 08:34:48 2019-12-31 08:35:18 t 1 1 216540 625 0.00 2019-12-31 07:29:49 2019-12-31 08:36:19 t 1 1 216542 746 0.00 2019-12-31 08:34:41 2019-12-31 08:36:55 t 1 1 216549 611 0.00 2019-12-31 08:42:33 2019-12-31 08:46:32 t 1 1 216550 481 0.00 2019-12-31 08:42:00 2019-12-31 08:49:38 t 1 1 216551 707 0.00 2019-12-31 08:30:51 2019-12-31 08:50:38 t 1 1 216554 562 0.00 2019-12-31 08:50:55 2019-12-31 08:55:26 t 1 1 216555 667 0.00 2019-12-31 08:49:38 2019-12-31 08:57:48 t 1 1 216557 615 0.00 2019-12-31 08:58:36 2019-12-31 09:01:52 t 1 1 216559 786 0.00 2019-12-31 09:00:14 2019-12-31 09:04:01 t 1 1 216561 786 0.00 2019-12-31 09:04:58 2019-12-31 09:06:18 t 1 1 216569 637 0.00 2019-12-31 08:37:32 2019-12-31 09:13:39 t 1 1 216570 627 0.00 2019-12-31 09:12:24 2019-12-31 09:14:31 t 1 1 216573 637 0.00 2019-12-31 09:13:24 2019-12-31 09:21:18 t 1 1 216574 551 0.00 2019-12-31 02:25:48 2019-12-31 09:25:39 t 1 1 216332 615 0.00 2019-12-30 21:17:10 2019-12-30 21:18:38 t 1 1 216337 694 0.00 2019-12-30 19:58:57 2019-12-30 21:29:34 t 1 1 216339 679 0.00 2019-12-30 21:07:25 2019-12-30 21:30:24 t 1 1 216340 551 0.00 2019-12-30 19:09:41 2019-12-30 21:31:10 t 1 1 216342 675 0.00 2019-12-30 21:28:45 2019-12-30 21:33:05 t 1 1 216344 566 0.00 2019-12-30 21:22:54 2019-12-30 21:37:14 t 1 1 216349 637 0.00 2019-12-30 21:15:18 2019-12-30 21:50:26 t 1 1 216353 660 0.00 2019-12-30 21:09:22 2019-12-30 21:56:59 t 1 1 216354 510 0.00 2019-12-30 21:50:22 2019-12-30 21:57:29 t 1 1 216356 722 0.00 2019-12-30 21:40:58 2019-12-30 21:59:04 t 1 1 216359 694 0.00 2019-12-30 21:54:27 2019-12-30 22:03:07 t 1 1 216360 566 0.00 2019-12-30 21:50:35 2019-12-30 22:04:00 t 1 1 216362 591 0.00 2019-12-30 21:17:28 2019-12-30 22:06:15 t 1 1 216363 510 0.00 2019-12-30 21:57:47 2019-12-30 22:07:00 t 1 1 216368 696 0.00 2019-12-30 22:07:24 2019-12-30 22:15:08 t 1 1 216375 746 0.00 2019-12-30 22:25:29 2019-12-30 22:32:27 t 1 1 216376 679 0.00 2019-12-30 22:08:01 2019-12-30 22:33:13 t 1 1 216378 671 0.00 2019-12-30 22:25:56 2019-12-30 22:34:21 t 1 1 216379 782 0.00 2019-12-30 21:58:16 2019-12-30 22:34:36 t 1 1 216380 544 0.00 2019-12-30 22:31:33 2019-12-30 22:35:22 t 1 1 216383 736 0.00 2019-12-30 22:31:06 2019-12-30 22:40:22 t 1 1 216384 649 0.00 2019-12-30 22:35:10 2019-12-30 22:41:28 t 1 1 216388 746 0.00 2019-12-30 22:38:02 2019-12-30 22:48:50 t 1 1 216399 671 0.00 2019-12-30 23:00:35 2019-12-30 23:10:00 t 1 1 216403 679 0.00 2019-12-30 22:33:13 2019-12-30 23:19:57 t 1 1 216404 675 0.00 2019-12-30 23:18:25 2019-12-30 23:20:40 t 1 1 216408 782 0.00 2019-12-30 22:36:41 2019-12-30 23:28:07 t 1 1 216412 707 0.00 2019-12-30 21:12:39 2019-12-30 23:34:47 t 1 1 216415 544 0.00 2019-12-30 23:33:42 2019-12-30 23:36:45 t 1 1 216421 687 0.00 2019-12-30 23:18:42 2019-12-30 23:52:32 t 1 1 216422 744 0.00 2019-12-30 23:19:16 2019-12-30 23:54:20 t 1 1 216423 687 0.00 2019-12-30 23:52:45 2019-12-30 23:55:14 t 1 1 216425 782 0.00 2019-12-30 23:52:04 2019-12-30 23:58:50 t 1 1 216426 687 0.00 2019-12-30 23:56:19 2019-12-31 00:00:16 t 1 1 216431 687 0.00 2019-12-31 00:23:17 2019-12-31 00:23:23 t 1 1 216436 679 0.00 2019-12-30 23:50:27 2019-12-31 00:47:08 t 1 1 216439 773 0.00 2019-12-31 00:41:49 2019-12-31 00:48:56 t 1 1 216440 773 0.00 2019-12-31 00:48:56 2019-12-31 00:49:46 t 1 1 216450 687 0.00 2019-12-31 00:51:53 2019-12-31 01:20:22 t 1 1 216451 679 0.00 2019-12-31 01:19:08 2019-12-31 01:23:53 t 1 1 216458 679 0.00 2019-12-31 01:35:31 2019-12-31 01:41:19 t 1 1 216463 773 0.00 2019-12-31 01:49:45 2019-12-31 01:52:16 t 1 1 216464 679 0.00 2019-12-31 01:47:58 2019-12-31 01:53:41 t 1 1 216466 687 0.00 2019-12-31 01:49:35 2019-12-31 01:55:07 t 1 1 216468 220 0.00 2019-12-31 01:44:09 2019-12-31 01:57:09 t 1 2 216470 220 0.00 2019-12-31 01:58:04 2019-12-31 02:01:05 t 1 2 216471 671 0.00 2019-12-31 02:02:03 2019-12-31 02:06:29 t 1 1 216474 551 0.00 2019-12-31 01:50:08 2019-12-31 02:25:48 t 1 1 216484 220 0.00 2019-12-31 04:49:12 2019-12-31 05:23:47 t 1 2 216493 786 0.00 2019-12-31 06:21:22 2019-12-31 06:28:35 t 1 1 216496 707 0.00 2019-12-31 06:24:44 2019-12-31 06:41:35 t 1 1 216497 675 0.00 2019-12-31 06:38:09 2019-12-31 06:43:52 t 1 1 216498 566 0.00 2019-12-31 06:30:07 2019-12-31 06:44:56 t 1 1 216507 611 0.00 2019-12-31 07:15:08 2019-12-31 07:16:56 t 1 1 216511 578 0.00 2019-12-31 07:14:05 2019-12-31 07:22:22 t 1 1 216513 627 0.00 2019-12-31 07:29:42 2019-12-31 07:31:08 t 1 1 216517 744 0.00 2019-12-31 07:10:23 2019-12-31 07:38:02 t 1 1 216519 566 0.00 2019-12-31 07:42:00 2019-12-31 07:51:04 t 1 1 216521 637 0.00 2019-12-31 00:37:41 2019-12-31 07:53:59 t 1 1 216523 566 0.00 2019-12-31 07:51:04 2019-12-31 07:58:27 t 1 1 216526 516 0.00 2019-12-31 08:09:48 2019-12-31 08:11:40 t 1 1 216527 562 0.00 2019-12-31 08:10:18 2019-12-31 08:14:33 t 1 1 216533 782 0.00 2019-12-31 08:18:43 2019-12-31 08:22:57 t 1 1 216534 562 0.00 2019-12-31 08:24:12 2019-12-31 08:24:20 t 1 1 216536 562 0.00 2019-12-31 08:28:36 2019-12-31 08:30:04 t 1 1 216537 562 0.00 2019-12-31 08:30:27 2019-12-31 08:32:27 t 1 1 216539 627 0.00 2019-12-31 08:17:05 2019-12-31 08:35:32 t 1 1 216544 627 0.00 2019-12-31 08:37:48 2019-12-31 08:37:51 t 1 1 216545 627 0.00 2019-12-31 08:37:59 2019-12-31 08:38:49 t 1 1 216547 625 0.00 2019-12-31 08:37:11 2019-12-31 08:44:55 t 1 1 216552 562 0.00 2019-12-31 08:37:13 2019-12-31 08:50:55 t 1 1 216556 615 0.00 2019-12-31 08:56:18 2019-12-31 08:58:36 t 1 1 216558 564 0.00 2019-12-31 08:50:58 2019-12-31 09:02:15 t 1 1 216565 615 0.00 2019-12-31 09:06:17 2019-12-31 09:10:22 t 1 1 216571 615 0.00 2019-12-31 09:10:22 2019-12-31 09:18:05 t 1 1 216572 694 0.00 2019-12-31 08:57:45 2019-12-31 09:21:16 t 1 1 216577 768 0.00 2019-12-31 09:03:41 2019-12-31 09:29:22 t 1 1 216578 481 0.00 2019-12-31 09:11:12 2019-12-31 09:29:32 t 1 1 216584 627 0.00 2019-12-31 09:40:09 2019-12-31 09:40:12 t 1 1 216586 637 0.00 2019-12-31 09:36:42 2019-12-31 09:40:50 t 1 1 216587 691 0.00 2019-12-31 09:39:04 2019-12-31 09:41:44 t 1 1 216588 516 0.00 2019-12-31 09:28:36 2019-12-31 09:42:05 t 1 1 216589 611 0.00 2019-12-31 09:41:18 2019-12-31 09:42:51 t 1 1 216590 562 0.00 2019-12-31 09:40:55 2019-12-31 09:42:53 t 1 1 216591 538 0.00 2019-12-31 09:38:13 2019-12-31 09:46:58 t 1 1 216592 671 0.00 2019-12-31 09:44:21 2019-12-31 09:47:32 t 1 1 216593 538 0.00 2019-12-31 09:46:58 2019-12-31 09:47:48 t 1 1 216594 615 0.00 2019-12-31 09:43:34 2019-12-31 09:48:00 t 1 1 216595 777 0.00 2019-12-31 09:43:16 2019-12-31 09:48:49 t 1 1 216596 562 0.00 2019-12-31 09:47:32 2019-12-31 09:49:11 t 1 1 216597 746 0.00 2019-12-31 09:48:05 2019-12-31 09:50:45 t 1 1 216598 544 0.00 2019-12-31 09:40:37 2019-12-31 09:51:17 t 1 1 216599 611 0.00 2019-12-31 09:47:44 2019-12-31 09:51:23 t 1 1 216600 724 0.00 2019-12-31 09:07:15 2019-12-31 09:51:50 t 1 1 216601 562 0.00 2019-12-31 09:49:40 2019-12-31 09:51:51 t 1 1 216602 562 0.00 2019-12-31 09:52:15 2019-12-31 09:53:00 t 1 1 216603 782 0.00 2019-12-31 08:25:52 2019-12-31 09:54:47 t 1 1 216604 611 0.00 2019-12-31 09:51:23 2019-12-31 09:55:32 t 1 1 216605 709 0.00 2019-12-31 09:51:03 2019-12-31 09:55:55 t 1 1 216606 746 0.00 2019-12-31 09:52:59 2019-12-31 09:55:58 t 1 1 216607 562 0.00 2019-12-31 09:53:46 2019-12-31 09:56:04 t 1 1 216608 782 0.00 2019-12-31 09:55:20 2019-12-31 09:57:21 t 1 1 216609 538 0.00 2019-12-31 09:47:47 2019-12-31 09:59:34 t 1 1 216610 615 0.00 2019-12-31 09:48:00 2019-12-31 10:00:01 t 1 1 216611 562 0.00 2019-12-31 09:56:28 2019-12-31 10:00:49 t 1 1 216612 782 0.00 2019-12-31 09:56:33 2019-12-31 10:01:38 t 1 1 216613 615 0.00 2019-12-31 10:00:01 2019-12-31 10:03:02 t 1 1 216614 746 0.00 2019-12-31 09:55:58 2019-12-31 10:03:07 t 1 1 216616 746 0.00 2019-12-31 10:02:12 2019-12-31 10:04:25 t 1 1 216617 562 0.00 2019-12-31 10:07:04 2019-12-31 10:07:14 t 1 1 216620 481 0.00 2019-12-31 09:29:32 2019-12-31 10:13:51 t 1 1 216621 681 0.00 2019-12-31 07:37:55 2019-12-31 10:15:41 t 1 1 216623 516 0.00 2019-12-31 10:13:01 2019-12-31 10:17:45 t 1 1 216625 615 0.00 2019-12-31 10:20:34 2019-12-31 10:22:57 t 1 1 216626 562 0.00 2019-12-31 10:25:17 2019-12-31 10:25:46 t 1 1 216627 591 0.00 2019-12-31 09:37:15 2019-12-31 10:27:07 t 1 1 216628 615 0.00 2019-12-31 10:22:57 2019-12-31 10:28:00 t 1 1 216630 627 0.00 2019-12-31 10:32:14 2019-12-31 10:32:36 t 1 1 216632 544 0.00 2019-12-31 10:25:32 2019-12-31 10:33:16 t 1 1 216633 782 0.00 2019-12-31 10:01:45 2019-12-31 10:34:04 t 1 1 216637 499 0.00 2019-12-31 10:35:48 2019-12-31 10:39:02 t 1 1 216641 782 0.00 2019-12-31 10:41:21 2019-12-31 10:43:42 t 1 1 216645 498 0.00 2019-12-31 10:42:56 2019-12-31 10:45:28 t 1 1 216649 516 0.00 2019-12-31 10:46:33 2019-12-31 10:48:13 t 1 1 216651 637 0.00 2019-12-31 09:42:06 2019-12-31 10:51:00 t 1 1 216657 562 0.00 2019-12-31 10:58:21 2019-12-31 10:58:49 t 1 1 216658 562 0.00 2019-12-31 11:01:44 2019-12-31 11:01:53 t 1 1 216660 627 0.00 2019-12-31 11:03:12 2019-12-31 11:05:51 t 1 1 216661 637 0.00 2019-12-31 10:52:51 2019-12-31 11:07:04 t 1 1 216665 591 0.00 2019-12-31 10:27:07 2019-12-31 11:13:52 t 1 1 216670 615 0.00 2019-12-31 11:14:12 2019-12-31 11:22:27 t 1 1 216673 562 0.00 2019-12-31 11:23:20 2019-12-31 11:25:09 t 1 1 216676 615 0.00 2019-12-31 11:22:27 2019-12-31 11:26:57 t 1 1 216684 656 0.00 2019-12-31 11:27:00 2019-12-31 11:33:08 t 1 1 216685 679 0.00 2019-12-31 11:32:18 2019-12-31 11:33:48 t 1 1 216688 681 0.00 2019-12-31 10:15:41 2019-12-31 11:37:26 t 1 1 216700 667 0.00 2019-12-31 11:46:02 2019-12-31 11:46:18 t 1 1 216702 667 0.00 2019-12-31 11:47:39 2019-12-31 11:49:12 t 1 1 216615 611 0.00 2019-12-31 09:56:54 2019-12-31 10:03:21 t 1 1 216619 711 0.00 2019-12-31 08:50:45 2019-12-31 10:10:32 t 1 1 216624 562 0.00 2019-12-31 10:16:56 2019-12-31 10:18:22 t 1 1 216629 627 0.00 2019-12-31 10:26:58 2019-12-31 10:30:05 t 1 1 216634 694 0.00 2019-12-31 09:21:15 2019-12-31 10:34:17 t 1 1 216635 499 0.00 2019-12-31 10:33:42 2019-12-31 10:34:52 t 1 1 216636 562 0.00 2019-12-31 10:36:16 2019-12-31 10:37:26 t 1 1 216640 724 0.00 2019-12-31 10:25:17 2019-12-31 10:42:48 t 1 1 216644 694 0.00 2019-12-31 10:34:56 2019-12-31 10:45:08 t 1 1 216646 694 0.00 2019-12-31 10:44:55 2019-12-31 10:46:08 t 1 1 216652 694 0.00 2019-12-31 10:46:45 2019-12-31 10:52:17 t 1 1 216656 694 0.00 2019-12-31 10:55:39 2019-12-31 10:56:40 t 1 1 216662 694 0.00 2019-12-31 10:57:35 2019-12-31 11:09:22 t 1 1 216663 679 0.00 2019-12-31 11:08:44 2019-12-31 11:09:53 t 1 1 216664 788 0.00 2019-12-31 11:10:13 2019-12-31 11:10:46 t 1 1 216666 679 0.00 2019-12-31 11:14:17 2019-12-31 11:15:22 t 1 1 216668 724 0.00 2019-12-31 11:14:26 2019-12-31 11:18:46 t 1 1 216671 611 0.00 2019-12-31 11:22:32 2019-12-31 11:24:37 t 1 1 216679 671 0.00 2019-12-31 11:26:42 2019-12-31 11:28:36 t 1 1 216681 611 0.00 2019-12-31 11:28:14 2019-12-31 11:29:14 t 1 1 216686 667 0.00 2019-12-31 11:28:45 2019-12-31 11:35:18 t 1 1 216689 562 0.00 2019-12-31 11:39:19 2019-12-31 11:39:40 t 1 1 216693 656 0.00 2019-12-31 11:33:08 2019-12-31 11:41:58 t 1 1 216695 611 0.00 2019-12-31 11:36:47 2019-12-31 11:43:51 t 1 1 216696 782 0.00 2019-12-31 11:41:55 2019-12-31 11:44:35 t 1 1 216699 481 0.00 2019-12-31 11:19:08 2019-12-31 11:46:12 t 1 1 216703 562 0.00 2019-12-31 11:46:33 2019-12-31 11:49:29 t 1 1 216705 667 0.00 2019-12-31 11:49:18 2019-12-31 11:50:00 t 1 1 216706 611 0.00 2019-12-31 11:47:39 2019-12-31 11:51:00 t 1 1 216618 649 0.00 2019-12-31 09:53:46 2019-12-31 10:08:06 t 1 1 216622 562 0.00 2019-12-31 10:15:00 2019-12-31 10:16:02 t 1 1 216631 627 0.00 2019-12-31 10:32:45 2019-12-31 10:33:00 t 1 1 216638 782 0.00 2019-12-31 10:36:47 2019-12-31 10:40:57 t 1 1 216639 499 0.00 2019-12-31 10:39:38 2019-12-31 10:42:14 t 1 1 216642 788 0.00 2019-12-31 10:36:59 2019-12-31 10:44:27 t 1 1 216643 499 0.00 2019-12-31 10:42:52 2019-12-31 10:44:45 t 1 1 216647 671 0.00 2019-12-31 10:38:43 2019-12-31 10:46:17 t 1 1 216648 562 0.00 2019-12-31 10:47:30 2019-12-31 10:48:01 t 1 1 216650 788 0.00 2019-12-31 10:44:27 2019-12-31 10:49:01 t 1 1 216653 637 0.00 2019-12-31 10:51:19 2019-12-31 10:52:21 t 1 1 216654 679 0.00 2019-12-31 10:38:48 2019-12-31 10:54:29 t 1 1 216655 694 0.00 2019-12-31 10:52:17 2019-12-31 10:55:40 t 1 1 216659 679 0.00 2019-12-31 11:02:35 2019-12-31 11:03:39 t 1 1 216667 562 0.00 2019-12-31 11:15:50 2019-12-31 11:16:18 t 1 1 216669 481 0.00 2019-12-31 10:13:55 2019-12-31 11:19:08 t 1 1 216672 694 0.00 2019-12-31 11:10:53 2019-12-31 11:25:07 t 1 1 216674 516 0.00 2019-12-31 11:23:36 2019-12-31 11:26:22 t 1 1 216675 671 0.00 2019-12-31 11:15:47 2019-12-31 11:26:42 t 1 1 216677 694 0.00 2019-12-31 11:25:11 2019-12-31 11:27:08 t 1 1 216678 611 0.00 2019-12-31 11:25:40 2019-12-31 11:28:14 t 1 1 216680 667 0.00 2019-12-31 11:23:07 2019-12-31 11:28:45 t 1 1 216682 679 0.00 2019-12-31 11:19:47 2019-12-31 11:32:18 t 1 1 216683 562 0.00 2019-12-31 11:31:08 2019-12-31 11:32:54 t 1 1 216687 611 0.00 2019-12-31 11:29:45 2019-12-31 11:36:47 t 1 1 216690 724 0.00 2019-12-31 11:18:46 2019-12-31 11:39:46 t 1 1 216691 562 0.00 2019-12-31 11:40:55 2019-12-31 11:41:20 t 1 1 216692 782 0.00 2019-12-31 10:43:42 2019-12-31 11:41:44 t 1 1 216694 667 0.00 2019-12-31 11:42:57 2019-12-31 11:43:09 t 1 1 216697 611 0.00 2019-12-31 11:44:41 2019-12-31 11:45:48 t 1 1 216698 562 0.00 2019-12-31 11:45:52 2019-12-31 11:46:01 t 1 1 216701 578 0.00 2019-12-31 08:04:45 2019-12-31 11:46:24 t 1 1 216704 782 0.00 2019-12-31 11:45:56 2019-12-31 11:49:37 t 1 1 \. -- -- Data for Name: connection_log_details; Type: TABLE DATA; Schema: public; Owner: ibs -- COPY connection_log_details (connection_log_id, name, value) FROM stdin; 72718 username aminvpn 72718 kill_reason Another user logged on this global unique id 72718 mac 72718 bytes_out 0 72718 bytes_in 0 72718 station_ip 5.120.51.120 72718 port 1 72718 unique_id port 72718 remote_ip 10.8.0.6 72720 username aminvpn 72720 kill_reason Another user logged on this global unique id 72720 mac 72720 bytes_out 0 72720 bytes_in 0 72720 station_ip 5.120.51.120 72720 port 1 72720 unique_id port 72732 username aminvpn 72732 kill_reason Another user logged on this global unique id 72732 mac 72732 bytes_out 0 72732 bytes_in 0 71487 username nader 71487 unique_id port 71487 terminate_cause User-Request 71487 bytes_out 0 71487 bytes_in 0 71487 station_ip 5.119.194.48 71487 port 15728930 71487 nas_port_type Virtual 71487 remote_ip 5.5.5.216 71489 username mobina 71489 unique_id port 71489 terminate_cause User-Request 71489 bytes_out 3025447 71489 bytes_in 30745369 71489 station_ip 5.219.214.35 71489 port 15728931 71489 nas_port_type Virtual 71489 remote_ip 5.5.5.215 71497 username alinezhad 71497 unique_id port 71497 terminate_cause User-Request 71497 bytes_out 56239 71497 bytes_in 112774 71497 station_ip 5.202.23.44 71497 port 15728942 71497 nas_port_type Virtual 71497 remote_ip 5.5.5.225 71508 username ahmad 71508 unique_id port 71508 terminate_cause User-Request 71508 bytes_out 11269955 71508 bytes_in 266320987 71508 station_ip 86.57.98.76 71508 port 15728946 71508 nas_port_type Virtual 71508 remote_ip 5.5.5.210 71509 username alinezhad 71509 unique_id port 71509 terminate_cause User-Request 71509 bytes_out 0 71509 bytes_in 0 71509 station_ip 5.202.0.33 71509 port 15728952 71509 nas_port_type Virtual 71509 remote_ip 5.5.5.205 71511 username mobina 71511 unique_id port 71511 terminate_cause User-Request 71511 bytes_out 47173 71511 bytes_in 56350 71511 station_ip 5.219.192.167 71511 port 15728954 71511 nas_port_type Virtual 71511 remote_ip 5.5.5.204 71517 username nazanin 71517 unique_id port 71517 terminate_cause User-Request 71517 bytes_out 63204 71517 bytes_in 167543 71517 station_ip 83.123.110.94 71517 port 15728650 71517 nas_port_type Virtual 71517 remote_ip 5.5.5.254 71519 username alinezhad 71519 unique_id port 71519 terminate_cause User-Request 71519 bytes_out 6003 71519 bytes_in 4082 71519 station_ip 5.202.0.33 71519 port 15728652 71519 nas_port_type Virtual 71519 remote_ip 5.5.5.255 71520 username mobina 71520 unique_id port 71520 terminate_cause User-Request 71520 bytes_out 1072006 71520 bytes_in 35028069 71520 station_ip 5.219.192.167 71520 port 15728646 71520 nas_port_type Virtual 71520 remote_ip 5.5.5.253 71523 username nazanin 71523 unique_id port 71523 terminate_cause User-Request 71523 bytes_out 0 71523 bytes_in 0 71523 station_ip 83.123.110.94 71523 port 15728655 71523 nas_port_type Virtual 71523 remote_ip 5.5.5.254 71525 username nazanin 71525 unique_id port 71525 terminate_cause User-Request 71525 bytes_out 0 71525 bytes_in 0 71525 station_ip 83.123.110.94 71525 port 15728657 71525 nas_port_type Virtual 71525 remote_ip 5.5.5.254 71526 username nazanin 71526 unique_id port 71526 terminate_cause User-Request 71526 bytes_out 0 71526 bytes_in 0 71526 station_ip 83.123.110.94 71526 port 15728658 71526 nas_port_type Virtual 71526 remote_ip 5.5.5.254 71527 username nazanin 71527 unique_id port 71527 terminate_cause User-Request 71527 bytes_out 0 71527 bytes_in 0 71527 station_ip 83.123.110.94 71527 port 15728659 71527 nas_port_type Virtual 71527 remote_ip 5.5.5.254 71528 username alinezhad 71528 unique_id port 71528 terminate_cause User-Request 71528 bytes_out 0 71528 bytes_in 0 72719 username aminvpn 72719 kill_reason Another user logged on this global unique id 72719 mac 72719 bytes_out 0 72719 bytes_in 0 72719 station_ip 5.120.51.120 72719 port 1 72719 unique_id port 72721 username aminvpn 72721 kill_reason Another user logged on this global unique id 72721 mac 72721 bytes_out 0 72721 bytes_in 0 72721 station_ip 5.120.51.120 72721 port 1 72721 unique_id port 71479 username aminvpn 71479 kill_reason Another user logged on this global unique id 71479 mac 71479 bytes_out 0 71479 bytes_in 0 71479 station_ip 5.119.144.134 71479 port 1 71479 unique_id port 71479 remote_ip 10.8.0.6 71481 username aminvpn 71481 kill_reason Another user logged on this global unique id 71481 mac 71481 bytes_out 0 71481 bytes_in 0 71481 station_ip 5.119.144.134 71481 port 1 71481 unique_id port 71484 username aminvpn 71484 kill_reason Another user logged on this global unique id 71484 mac 71484 bytes_out 0 71484 bytes_in 0 71484 station_ip 5.119.144.134 71484 port 1 71484 unique_id port 71488 username alinezhad 71488 unique_id port 71488 terminate_cause User-Request 71488 bytes_out 0 71488 bytes_in 0 71488 station_ip 83.122.207.126 71488 port 15728932 71488 nas_port_type Virtual 71488 remote_ip 5.5.5.214 71492 username mobina 71492 unique_id port 71492 terminate_cause Lost-Carrier 71492 bytes_out 41888757 71492 bytes_in 38160342 71492 station_ip 5.219.214.35 71492 port 15728934 71492 nas_port_type Virtual 71492 remote_ip 5.5.5.213 71494 username mobina 71494 unique_id port 71494 terminate_cause User-Request 71494 bytes_out 1148616 71494 bytes_in 33800299 71494 station_ip 5.219.214.35 71494 port 15728938 71494 nas_port_type Virtual 71494 remote_ip 5.5.5.213 71495 username alirezazamani 71495 unique_id port 71495 terminate_cause User-Request 71495 bytes_out 137788 71495 bytes_in 1804031 71495 station_ip 31.56.158.4 71495 port 15728939 71495 nas_port_type Virtual 71495 remote_ip 5.5.5.211 71496 username alinezhad 71496 unique_id port 71496 terminate_cause User-Request 71496 bytes_out 15348 71496 bytes_in 31286 71496 station_ip 5.202.23.44 71496 port 15728941 71496 nas_port_type Virtual 71496 remote_ip 5.5.5.225 71499 username alirezazamani 71499 unique_id port 71499 terminate_cause User-Request 71499 bytes_out 5670579 71499 bytes_in 110831604 71499 station_ip 5.119.229.131 71499 port 15728935 71499 nas_port_type Virtual 71499 remote_ip 5.5.5.233 71500 username alinezhad 71500 unique_id port 71500 terminate_cause User-Request 71500 bytes_out 0 71500 bytes_in 0 71500 station_ip 5.202.23.44 71500 port 15728944 71500 nas_port_type Virtual 71500 remote_ip 5.5.5.225 71503 username ksr 71503 unique_id port 71503 terminate_cause User-Request 71503 bytes_out 5913541 71503 bytes_in 148823218 71503 station_ip 151.235.64.253 71503 port 15728940 71503 nas_port_type Virtual 71503 remote_ip 5.5.5.238 71506 username alinezhad 71506 unique_id port 71506 terminate_cause User-Request 71506 bytes_out 0 71506 bytes_in 0 71506 station_ip 113.203.49.151 71506 port 15728950 71506 nas_port_type Virtual 71506 remote_ip 5.5.5.207 71510 username alinezhad 71510 unique_id port 71510 terminate_cause User-Request 71510 bytes_out 149797 71510 bytes_in 1735843 71510 station_ip 5.202.0.33 71510 port 15728953 71510 nas_port_type Virtual 71510 remote_ip 5.5.5.205 71514 username nazanin 71514 unique_id port 71514 terminate_cause User-Request 71514 bytes_out 0 71514 bytes_in 0 71514 station_ip 83.123.110.94 71514 port 15728644 71514 nas_port_type Virtual 71514 remote_ip 5.5.5.254 71515 username nazanin 71515 unique_id port 71515 terminate_cause User-Request 72723 username aminvpn 72722 username aminvpn 72722 kill_reason Another user logged on this global unique id 72722 mac 72722 bytes_out 0 72722 bytes_in 0 72722 station_ip 5.120.51.120 72722 port 1 72722 unique_id port 72724 username aminvpn 72724 kill_reason Another user logged on this global unique id 72724 mac 72724 bytes_out 0 72724 bytes_in 0 72724 station_ip 5.120.51.120 72724 port 1 72724 unique_id port 72725 username aminvpn 72725 kill_reason Another user logged on this global unique id 72725 mac 72725 bytes_out 0 72725 bytes_in 0 72725 station_ip 5.120.51.120 72725 port 1 72725 unique_id port 72727 username aminvpn 72727 kill_reason Another user logged on this global unique id 72727 mac 72727 bytes_out 0 72727 bytes_in 0 72727 station_ip 5.120.51.120 72727 port 1 72727 unique_id port 71480 username aminvpn 71480 kill_reason Another user logged on this global unique id 71480 mac 71480 bytes_out 0 71480 bytes_in 0 71480 station_ip 5.119.144.134 71480 port 1 71480 unique_id port 71482 username aminvpn 71482 kill_reason Another user logged on this global unique id 71482 mac 71482 bytes_out 0 71482 bytes_in 0 71482 station_ip 5.119.144.134 71482 port 1 71482 unique_id port 71483 username aminvpn 71483 kill_reason Another user logged on this global unique id 71483 mac 71483 bytes_out 0 71483 bytes_in 0 71483 station_ip 5.119.144.134 71483 port 1 71483 unique_id port 71485 username aminvpn 71485 mac 71485 bytes_out 0 71485 bytes_in 0 71485 station_ip 5.119.144.134 71485 port 1 71485 unique_id port 72728 username aminvpn 72728 kill_reason Another user logged on this global unique id 72728 mac 72728 bytes_out 0 72728 bytes_in 0 72728 station_ip 5.120.51.120 72728 port 1 72728 unique_id port 72731 username aminvpn 71490 username alirezazamani 71490 unique_id port 71490 terminate_cause User-Request 71490 bytes_out 2797698 71490 bytes_in 11055142 71490 station_ip 5.119.229.131 71490 port 15728933 71490 nas_port_type Virtual 71490 remote_ip 5.5.5.233 71491 username aminsaeedi 71491 unique_id port 71491 terminate_cause User-Request 71491 bytes_out 78739 71491 bytes_in 1069782 71491 station_ip 151.238.235.244 71491 port 15728936 71491 nas_port_type Virtual 71491 remote_ip 5.5.5.235 72731 kill_reason Another user logged on this global unique id 72731 mac 72731 bytes_out 0 72731 bytes_in 0 72731 station_ip 5.120.51.120 72731 port 1 72731 unique_id port 72734 username aminvpn 72866 username alirezazamani 71498 username alinezhad 71498 unique_id port 71498 terminate_cause User-Request 71498 bytes_out 4949 71498 bytes_in 10263 71498 station_ip 5.202.23.44 71498 port 15728943 71498 nas_port_type Virtual 71498 remote_ip 5.5.5.225 71501 username alinezhad 71501 unique_id port 71501 terminate_cause User-Request 71501 bytes_out 17248 71501 bytes_in 59561 71501 station_ip 5.202.23.44 71501 port 15728945 71501 nas_port_type Virtual 71501 remote_ip 5.5.5.225 71502 username aminsaeedi 71502 unique_id port 71502 terminate_cause User-Request 71502 bytes_out 75335 71502 bytes_in 719490 71502 station_ip 151.238.235.244 71502 port 15728947 71502 nas_port_type Virtual 71502 remote_ip 5.5.5.235 71504 username alinezhad 71504 unique_id port 71504 terminate_cause Lost-Carrier 71504 bytes_out 4163 71504 bytes_in 5865 71504 station_ip 83.122.226.97 71504 port 15728948 71504 nas_port_type Virtual 71504 remote_ip 5.5.5.209 71505 username alinezhad 71505 unique_id port 71505 terminate_cause User-Request 71505 bytes_out 0 71505 bytes_in 0 71505 station_ip 37.129.214.96 71505 port 15728949 71505 nas_port_type Virtual 71505 remote_ip 5.5.5.208 71507 username alinezhad 71507 unique_id port 71507 terminate_cause User-Request 71507 bytes_out 0 71507 bytes_in 0 71507 station_ip 113.203.88.11 71507 port 15728951 71507 nas_port_type Virtual 71507 remote_ip 5.5.5.206 71512 username alinezhad 71512 unique_id port 71512 terminate_cause Admin-Reboot 71512 bytes_out 0 71512 bytes_in 0 71512 station_ip 5.202.0.33 71512 port 15728640 71512 nas_port_type Virtual 71512 remote_ip 5.5.5.255 71513 username alinezhad 71513 unique_id port 71513 terminate_cause User-Request 71513 bytes_out 0 71513 bytes_in 0 71513 station_ip 5.202.0.33 71513 port 15728640 71513 nas_port_type Virtual 71513 remote_ip 5.5.5.255 71521 username nazanin 71521 unique_id port 71521 terminate_cause User-Request 71521 bytes_out 0 71521 bytes_in 0 71521 station_ip 83.123.110.94 71521 port 15728654 71521 nas_port_type Virtual 71521 remote_ip 5.5.5.254 71534 username alinezhad 71534 unique_id port 71534 terminate_cause User-Request 71534 bytes_out 0 71534 bytes_in 0 71534 station_ip 5.202.0.33 71534 port 15728666 71534 nas_port_type Virtual 71534 remote_ip 5.5.5.255 71535 username alinezhad 71535 unique_id port 71535 terminate_cause User-Request 71535 bytes_out 0 71535 bytes_in 0 71535 station_ip 5.202.0.33 71535 port 15728667 71535 nas_port_type Virtual 71535 remote_ip 5.5.5.255 71536 username alirezazamani 71536 kill_reason Maximum number of concurrent logins reached 71536 unique_id port 71536 bytes_out 0 71536 bytes_in 0 71536 station_ip 94.241.183.22 71536 port 15728672 71536 nas_port_type Virtual 71537 username alirezazamani 71537 kill_reason Maximum number of concurrent logins reached 71537 unique_id port 71537 bytes_out 0 71537 bytes_in 0 71537 station_ip 94.241.183.22 71537 port 15728673 71537 nas_port_type Virtual 71545 username aminvpn 71545 unique_id port 71545 terminate_cause Lost-Carrier 71545 bytes_out 2392 71545 bytes_in 9356 71545 station_ip 5.119.236.220 71545 port 15728680 71545 nas_port_type Virtual 71545 remote_ip 5.5.5.250 71546 username alirezazamani 71546 unique_id port 71546 terminate_cause Lost-Carrier 71546 bytes_out 681332 71546 bytes_in 8461369 71546 station_ip 94.241.183.22 71546 port 15728669 71546 nas_port_type Virtual 71546 remote_ip 5.5.5.251 71547 username alinezhad 71547 unique_id port 71547 terminate_cause User-Request 71547 bytes_out 0 71547 bytes_in 0 71547 station_ip 5.202.0.33 71547 port 15728683 71547 nas_port_type Virtual 71547 remote_ip 5.5.5.255 71549 username nazanin 71549 unique_id port 71549 terminate_cause User-Request 71549 bytes_out 14857 71549 bytes_in 41248 71549 station_ip 83.123.110.94 71549 port 15728685 71549 nas_port_type Virtual 71549 remote_ip 5.5.5.254 71837 username alinezhad 71837 unique_id port 71837 terminate_cause User-Request 71837 bytes_out 136870 71837 bytes_in 326474 71837 station_ip 83.122.9.79 71837 port 15729002 71837 nas_port_type Virtual 71837 remote_ip 5.5.5.183 71838 username mobina 71838 unique_id port 71838 terminate_cause User-Request 71838 bytes_out 0 71838 bytes_in 0 71838 station_ip 5.123.94.30 71838 port 15729003 71838 nas_port_type Virtual 71838 remote_ip 5.5.5.182 71839 username alinezhad 71839 unique_id port 71839 terminate_cause User-Request 71839 bytes_out 0 71839 bytes_in 0 71839 station_ip 5.202.8.173 71839 port 15729005 71839 nas_port_type Virtual 71839 remote_ip 5.5.5.181 71841 username mobina 71841 unique_id port 71841 terminate_cause User-Request 71841 bytes_out 0 71841 bytes_in 0 71841 station_ip 5.123.47.113 71841 port 15729007 71841 nas_port_type Virtual 71841 remote_ip 5.5.5.180 71844 username nazanin 71844 unique_id port 71844 terminate_cause User-Request 71515 bytes_out 0 71515 bytes_in 0 71515 station_ip 83.123.110.94 71515 port 15728645 71515 nas_port_type Virtual 71515 remote_ip 5.5.5.254 71516 username alinezhad 71516 unique_id port 71516 terminate_cause User-Request 71516 bytes_out 2459 71516 bytes_in 4469 71516 station_ip 5.202.0.33 71516 port 15728648 71516 nas_port_type Virtual 71516 remote_ip 5.5.5.255 71518 username alinezhad 71518 unique_id port 71518 terminate_cause User-Request 71518 bytes_out 8764 71518 bytes_in 6424 71518 station_ip 5.202.0.33 71518 port 15728651 71518 nas_port_type Virtual 71518 remote_ip 5.5.5.255 71522 username alinezhad 71522 unique_id port 71522 terminate_cause User-Request 71522 bytes_out 0 71522 bytes_in 0 71522 station_ip 5.202.0.33 71522 port 15728653 71522 nas_port_type Virtual 71522 remote_ip 5.5.5.255 71524 username nazanin 71524 unique_id port 71524 terminate_cause User-Request 71524 bytes_out 0 71524 bytes_in 0 71524 station_ip 83.123.110.94 71524 port 15728656 71524 nas_port_type Virtual 71524 remote_ip 5.5.5.254 71530 username nazanin 71530 unique_id port 71530 terminate_cause User-Request 71530 bytes_out 29387 71530 bytes_in 158771 71530 station_ip 83.123.110.94 71530 port 15728662 71530 nas_port_type Virtual 71530 remote_ip 5.5.5.254 71531 username nazanin 71531 unique_id port 71531 terminate_cause User-Request 71531 bytes_out 0 71531 bytes_in 0 71531 station_ip 83.123.110.94 71531 port 15728663 71531 nas_port_type Virtual 71531 remote_ip 5.5.5.254 71532 username nazanin 71532 unique_id port 71532 terminate_cause User-Request 71532 bytes_out 0 71532 bytes_in 0 71532 station_ip 83.123.110.94 71532 port 15728664 71532 nas_port_type Virtual 71532 remote_ip 5.5.5.254 71533 username nazanin 71533 unique_id port 71533 terminate_cause User-Request 71533 bytes_out 39023 71533 bytes_in 250149 71533 station_ip 83.123.110.94 71533 port 15728665 71533 nas_port_type Virtual 71533 remote_ip 5.5.5.254 71538 username alirezazamani 71538 kill_reason Maximum number of concurrent logins reached 71538 unique_id port 71538 bytes_out 0 71538 bytes_in 0 71538 station_ip 94.241.183.22 71538 port 15728674 71538 nas_port_type Virtual 71539 username alirezazamani 71539 kill_reason Maximum number of concurrent logins reached 71539 unique_id port 71539 bytes_out 0 71539 bytes_in 0 71539 station_ip 37.129.231.165 71539 port 15728675 71539 nas_port_type Virtual 71541 username alinezhad 71541 unique_id port 71541 terminate_cause User-Request 71541 bytes_out 0 71541 bytes_in 0 71541 station_ip 5.202.0.33 71541 port 15728677 71541 nas_port_type Virtual 71541 remote_ip 5.5.5.255 71542 username aminvpn 71542 kill_reason Wrong password 71542 unique_id port 71542 bytes_out 0 71542 bytes_in 0 71542 station_ip 5.119.236.220 71542 port 15728678 71542 nas_port_type Virtual 71543 username aminvpn 71543 kill_reason Wrong password 71543 unique_id port 71543 bytes_out 0 71543 bytes_in 0 71543 station_ip 5.119.236.220 71543 port 15728679 71543 nas_port_type Virtual 71551 username nazanin 71551 unique_id port 71551 terminate_cause User-Request 71551 bytes_out 24105 71551 bytes_in 70052 71551 station_ip 83.123.110.94 71551 port 15728686 71551 nas_port_type Virtual 71551 remote_ip 5.5.5.254 71840 username alirezazamani 71840 unique_id port 71840 terminate_cause User-Request 71840 bytes_out 845562 71840 bytes_in 15098545 71840 station_ip 5.120.62.138 71840 port 15729004 71840 nas_port_type Virtual 71840 remote_ip 5.5.5.185 71842 username alirezazamani 71842 unique_id port 71842 terminate_cause Admin-Reboot 71842 bytes_out 2066989 71842 bytes_in 14693685 71842 station_ip 5.120.24.50 71842 port 15728942 71528 station_ip 5.202.0.33 71528 port 15728660 71528 nas_port_type Virtual 71528 remote_ip 5.5.5.255 71529 username nazanin 71529 unique_id port 71529 terminate_cause User-Request 71529 bytes_out 35316 71529 bytes_in 236114 71529 station_ip 83.123.110.94 71529 port 15728661 71529 nas_port_type Virtual 71529 remote_ip 5.5.5.254 71540 username alirezazamani 71540 kill_reason Maximum number of concurrent logins reached 71540 unique_id port 71540 bytes_out 0 71540 bytes_in 0 71540 station_ip 37.129.231.165 71540 port 15728676 71540 nas_port_type Virtual 71544 username mobina 71544 unique_id port 71544 terminate_cause User-Request 71544 bytes_out 7575 71544 bytes_in 9849 71544 station_ip 5.219.213.202 71544 port 15728681 71544 nas_port_type Virtual 71544 remote_ip 5.5.5.249 71548 username alirezazamani 71548 unique_id port 71548 terminate_cause Lost-Carrier 71548 bytes_out 1138121 71548 bytes_in 26265299 71548 station_ip 5.119.229.131 71548 port 15728668 71548 nas_port_type Virtual 71548 remote_ip 5.5.5.252 71550 username mobina 71550 unique_id port 71550 terminate_cause User-Request 71550 bytes_out 2421499 71550 bytes_in 59359429 71550 station_ip 5.123.212.181 71550 port 15728682 71550 nas_port_type Virtual 71550 remote_ip 5.5.5.248 71842 nas_port_type Virtual 71842 remote_ip 5.5.5.199 71845 username mobina 71845 unique_id port 71845 terminate_cause User-Request 71845 bytes_out 0 71845 bytes_in 0 71845 station_ip 5.123.47.113 71845 port 15728641 71845 nas_port_type Virtual 71845 remote_ip 5.5.5.254 71847 username nazanin 71847 unique_id port 71847 terminate_cause User-Request 71847 bytes_out 41027 71847 bytes_in 296329 71847 station_ip 83.122.235.130 71847 port 15728643 71847 nas_port_type Virtual 71847 remote_ip 5.5.5.255 71848 username nazanin 71848 unique_id port 71848 terminate_cause User-Request 71848 bytes_out 26767 71848 bytes_in 379290 71848 station_ip 83.122.235.130 71848 port 15728644 71848 nas_port_type Virtual 71848 remote_ip 5.5.5.255 71849 username alinezhad 71849 unique_id port 71849 terminate_cause User-Request 71849 bytes_out 0 71849 bytes_in 0 71849 station_ip 5.202.8.173 71849 port 15728645 71849 nas_port_type Virtual 71849 remote_ip 5.5.5.253 71851 username nazanin 71851 unique_id port 71851 terminate_cause User-Request 71851 bytes_out 4756 71851 bytes_in 6850 71851 station_ip 83.122.235.130 71851 port 15728647 71851 nas_port_type Virtual 71851 remote_ip 5.5.5.255 71855 username nazanin 71855 unique_id port 71855 terminate_cause User-Request 71855 bytes_out 9958 71855 bytes_in 18875 71855 station_ip 83.122.235.130 71855 port 15728651 71855 nas_port_type Virtual 71855 remote_ip 5.5.5.255 71857 username nazanin 71857 unique_id port 71857 terminate_cause User-Request 71857 bytes_out 22840 71857 bytes_in 25616 71857 station_ip 83.122.235.130 71857 port 15728654 71857 nas_port_type Virtual 71857 remote_ip 5.5.5.255 71867 username alirezazamani 71867 unique_id port 71867 terminate_cause Lost-Carrier 71867 bytes_out 263229 71867 bytes_in 5588688 71867 station_ip 5.120.62.138 71867 port 15728653 71867 nas_port_type Virtual 71867 remote_ip 5.5.5.252 71870 username nazanin 71870 unique_id port 71870 terminate_cause User-Request 71870 bytes_out 0 71870 bytes_in 0 71870 station_ip 83.122.235.130 71870 port 15728668 71870 nas_port_type Virtual 71870 remote_ip 5.5.5.255 71874 username alinezhad 71874 unique_id port 71874 terminate_cause User-Request 71874 bytes_out 0 71874 bytes_in 0 71874 station_ip 5.202.8.173 71874 port 15728674 71874 nas_port_type Virtual 71874 remote_ip 5.5.5.253 71876 username alirezazamani 71876 unique_id port 71876 terminate_cause User-Request 71552 username nazanin 71552 unique_id port 71552 terminate_cause User-Request 71552 bytes_out 0 71552 bytes_in 0 71552 station_ip 83.123.110.94 71552 port 15728687 71552 nas_port_type Virtual 71552 remote_ip 5.5.5.254 71557 username nazanin 71557 unique_id port 71557 terminate_cause User-Request 71557 bytes_out 19778 71557 bytes_in 52262 71557 station_ip 83.123.110.94 71557 port 15728692 71557 nas_port_type Virtual 71557 remote_ip 5.5.5.254 71560 username nazanin 71560 unique_id port 71560 terminate_cause User-Request 71560 bytes_out 23564 71560 bytes_in 22872 71560 station_ip 83.123.110.94 71560 port 15728695 71560 nas_port_type Virtual 71560 remote_ip 5.5.5.254 71564 username nazanin 71564 unique_id port 71564 terminate_cause User-Request 71564 bytes_out 0 71564 bytes_in 0 71564 station_ip 83.123.110.94 71564 port 15728700 71564 nas_port_type Virtual 71564 remote_ip 5.5.5.254 71570 username mohammadi 71570 unique_id port 71570 terminate_cause User-Request 71570 bytes_out 0 71570 bytes_in 0 71570 station_ip 83.122.146.52 71570 port 15728707 71570 nas_port_type Virtual 71570 remote_ip 5.5.5.247 71572 username nazanin 71572 unique_id port 71572 terminate_cause User-Request 71572 bytes_out 20620 71572 bytes_in 50203 71572 station_ip 83.123.110.94 71572 port 15728708 71572 nas_port_type Virtual 71572 remote_ip 5.5.5.254 71573 username mohammadi 71573 unique_id port 71573 terminate_cause User-Request 71573 bytes_out 106450 71573 bytes_in 2429742 71573 station_ip 83.122.146.52 71573 port 15728709 71573 nas_port_type Virtual 71573 remote_ip 5.5.5.247 71577 username nazanin 71577 unique_id port 71577 terminate_cause User-Request 71577 bytes_out 0 71577 bytes_in 0 71577 station_ip 83.123.110.94 71577 port 15728713 71577 nas_port_type Virtual 71577 remote_ip 5.5.5.254 71578 username nazanin 71578 unique_id port 71578 terminate_cause User-Request 71578 bytes_out 38372 71578 bytes_in 90959 71578 station_ip 83.123.110.94 71578 port 15728714 71578 nas_port_type Virtual 71578 remote_ip 5.5.5.254 71584 username nazanin 71584 unique_id port 71584 terminate_cause User-Request 71584 bytes_out 0 71584 bytes_in 0 71584 station_ip 83.123.110.94 71584 port 15728721 71584 nas_port_type Virtual 71584 remote_ip 5.5.5.254 71585 username nazanin 71585 unique_id port 71585 terminate_cause User-Request 71585 bytes_out 0 71585 bytes_in 0 71585 station_ip 83.123.110.94 71585 port 15728722 71585 nas_port_type Virtual 71585 remote_ip 5.5.5.254 71586 username nazanin 71586 unique_id port 71586 terminate_cause User-Request 71586 bytes_out 0 71586 bytes_in 0 71586 station_ip 83.123.110.94 71586 port 15728723 71586 nas_port_type Virtual 71586 remote_ip 5.5.5.254 71593 username nazanin 71593 unique_id port 71593 terminate_cause User-Request 71593 bytes_out 0 71593 bytes_in 0 71593 station_ip 83.122.96.17 71593 port 15728731 71593 nas_port_type Virtual 71593 remote_ip 5.5.5.245 71596 username nazanin 71596 unique_id port 71596 terminate_cause User-Request 71596 bytes_out 0 71596 bytes_in 0 71596 station_ip 83.122.96.17 71596 port 15728733 71596 nas_port_type Virtual 71596 remote_ip 5.5.5.245 71843 username iranmanesh 71843 unique_id port 71843 terminate_cause Admin-Reboot 71843 bytes_out 2973646 71843 bytes_in 123261147 71843 station_ip 5.114.2.118 71843 port 15729006 71843 nas_port_type Virtual 71843 remote_ip 5.5.5.208 71846 username nazanin 71846 unique_id port 71846 terminate_cause User-Request 71846 bytes_out 10626 71846 bytes_in 17235 71846 station_ip 83.122.235.130 71846 port 15728642 71846 nas_port_type Virtual 71846 remote_ip 5.5.5.255 71553 username nazanin 71553 unique_id port 71553 terminate_cause User-Request 71553 bytes_out 0 71553 bytes_in 0 71553 station_ip 83.123.110.94 71553 port 15728688 71553 nas_port_type Virtual 71553 remote_ip 5.5.5.254 71554 username nazanin 71554 unique_id port 71554 terminate_cause User-Request 71554 bytes_out 24536 71554 bytes_in 36757 71554 station_ip 83.123.110.94 71554 port 15728689 71554 nas_port_type Virtual 71554 remote_ip 5.5.5.254 71555 username nazanin 71555 unique_id port 71555 terminate_cause User-Request 71555 bytes_out 0 71555 bytes_in 0 71555 station_ip 83.123.110.94 71555 port 15728690 71555 nas_port_type Virtual 71555 remote_ip 5.5.5.254 71558 username nazanin 71558 unique_id port 71558 terminate_cause User-Request 71558 bytes_out 22615 71558 bytes_in 61225 71558 station_ip 83.123.110.94 71558 port 15728693 71558 nas_port_type Virtual 71558 remote_ip 5.5.5.254 71562 username alinezhad 71562 unique_id port 71562 terminate_cause User-Request 71562 bytes_out 0 71562 bytes_in 0 71562 station_ip 5.202.0.33 71562 port 15728698 71562 nas_port_type Virtual 71562 remote_ip 5.5.5.255 71565 username nazanin 71565 unique_id port 71565 terminate_cause User-Request 71565 bytes_out 0 71565 bytes_in 0 71565 station_ip 83.123.110.94 71565 port 15728701 71565 nas_port_type Virtual 71565 remote_ip 5.5.5.254 71567 username nazanin 71567 unique_id port 71567 terminate_cause User-Request 71567 bytes_out 0 71567 bytes_in 0 71567 station_ip 83.123.110.94 71567 port 15728703 71567 nas_port_type Virtual 71567 remote_ip 5.5.5.254 71571 username nazanin 71571 unique_id port 71571 terminate_cause User-Request 71571 bytes_out 0 71571 bytes_in 0 71571 station_ip 83.123.110.94 71571 port 15728706 71571 nas_port_type Virtual 71571 remote_ip 5.5.5.254 71574 username nazanin 71574 unique_id port 71574 terminate_cause User-Request 71574 bytes_out 0 71574 bytes_in 0 71574 station_ip 83.123.110.94 71574 port 15728710 71574 nas_port_type Virtual 71574 remote_ip 5.5.5.254 71576 username mohammadi 71576 unique_id port 71576 terminate_cause User-Request 71576 bytes_out 435123 71576 bytes_in 21750777 71576 station_ip 83.122.146.52 71576 port 15728711 71576 nas_port_type Virtual 71576 remote_ip 5.5.5.247 71582 username nazanin 71582 unique_id port 71582 terminate_cause User-Request 71582 bytes_out 0 71582 bytes_in 0 71582 station_ip 83.123.110.94 71582 port 15728720 71582 nas_port_type Virtual 71582 remote_ip 5.5.5.254 71583 username mohammadi 71583 unique_id port 71583 terminate_cause User-Request 71583 bytes_out 34817 71583 bytes_in 77076 71583 station_ip 83.122.146.52 71583 port 15728719 71583 nas_port_type Virtual 71583 remote_ip 5.5.5.247 71589 username nazanin 71589 unique_id port 71589 terminate_cause User-Request 71589 bytes_out 0 71589 bytes_in 0 71589 station_ip 83.123.110.94 71589 port 15728726 71589 nas_port_type Virtual 71589 remote_ip 5.5.5.254 71590 username nazanin 71590 unique_id port 71590 terminate_cause User-Request 71590 bytes_out 0 71590 bytes_in 0 71590 station_ip 83.123.110.94 71590 port 15728728 71590 nas_port_type Virtual 71590 remote_ip 5.5.5.254 71594 username alirezazamani 71594 unique_id port 71594 terminate_cause Lost-Carrier 71594 bytes_out 347429 71594 bytes_in 1765530 71594 station_ip 5.119.35.28 71594 port 15728718 71594 nas_port_type Virtual 71594 remote_ip 5.5.5.246 71595 username nazanin 71595 unique_id port 71595 terminate_cause User-Request 71595 bytes_out 0 71595 bytes_in 0 71595 station_ip 83.122.96.17 71595 port 15728732 71595 nas_port_type Virtual 71595 remote_ip 5.5.5.245 71597 username nazanin 71556 username nazanin 71556 unique_id port 71556 terminate_cause User-Request 71556 bytes_out 28317 71556 bytes_in 106962 71556 station_ip 83.123.110.94 71556 port 15728691 71556 nas_port_type Virtual 71556 remote_ip 5.5.5.254 71559 username nazanin 71559 unique_id port 71559 terminate_cause User-Request 71559 bytes_out 0 71559 bytes_in 0 71559 station_ip 83.123.110.94 71559 port 15728694 71559 nas_port_type Virtual 71559 remote_ip 5.5.5.254 71561 username nazanin 71561 unique_id port 71561 terminate_cause User-Request 71561 bytes_out 0 71561 bytes_in 0 71561 station_ip 83.123.110.94 71561 port 15728696 71561 nas_port_type Virtual 71561 remote_ip 5.5.5.254 71563 username nazanin 71563 unique_id port 71563 terminate_cause User-Request 71563 bytes_out 8830 71563 bytes_in 10216 71563 station_ip 83.123.110.94 71563 port 15728697 71563 nas_port_type Virtual 71563 remote_ip 5.5.5.254 71566 username nazanin 71566 unique_id port 71566 terminate_cause User-Request 71566 bytes_out 0 71566 bytes_in 0 71566 station_ip 83.123.110.94 71566 port 15728702 71566 nas_port_type Virtual 71566 remote_ip 5.5.5.254 71568 username nazanin 71568 unique_id port 71568 terminate_cause User-Request 71568 bytes_out 0 71568 bytes_in 0 71568 station_ip 83.123.110.94 71568 port 15728704 71568 nas_port_type Virtual 71568 remote_ip 5.5.5.254 71569 username nazanin 71569 unique_id port 71569 terminate_cause User-Request 71569 bytes_out 37437 71569 bytes_in 122604 71569 station_ip 83.123.110.94 71569 port 15728705 71569 nas_port_type Virtual 71569 remote_ip 5.5.5.254 71575 username nazanin 71575 unique_id port 71575 terminate_cause User-Request 71575 bytes_out 0 71575 bytes_in 0 71575 station_ip 83.123.110.94 71575 port 15728712 71575 nas_port_type Virtual 71575 remote_ip 5.5.5.254 71579 username nazanin 71579 unique_id port 71579 terminate_cause User-Request 71579 bytes_out 28068 71579 bytes_in 60212 71579 station_ip 83.123.110.94 71579 port 15728715 71579 nas_port_type Virtual 71579 remote_ip 5.5.5.254 71580 username nazanin 71580 unique_id port 71580 terminate_cause User-Request 71580 bytes_out 0 71580 bytes_in 0 71580 station_ip 83.123.110.94 71580 port 15728716 71580 nas_port_type Virtual 71580 remote_ip 5.5.5.254 71581 username nazanin 71581 unique_id port 71581 terminate_cause User-Request 71581 bytes_out 24738 71581 bytes_in 50066 71581 station_ip 83.123.110.94 71581 port 15728717 71581 nas_port_type Virtual 71581 remote_ip 5.5.5.254 71587 username nazanin 71587 unique_id port 71587 terminate_cause User-Request 71587 bytes_out 0 71587 bytes_in 0 71587 station_ip 83.123.110.94 71587 port 15728724 71587 nas_port_type Virtual 71587 remote_ip 5.5.5.254 71588 username nazanin 71588 unique_id port 71588 terminate_cause User-Request 71588 bytes_out 0 71588 bytes_in 0 71588 station_ip 83.123.110.94 71588 port 15728725 71588 nas_port_type Virtual 71588 remote_ip 5.5.5.254 71591 username nazanin 71591 unique_id port 71591 terminate_cause User-Request 71591 bytes_out 0 71591 bytes_in 0 71591 station_ip 83.123.110.94 71591 port 15728729 71591 nas_port_type Virtual 71591 remote_ip 5.5.5.254 71592 username nazanin 71592 unique_id port 71592 terminate_cause User-Request 71592 bytes_out 15384 71592 bytes_in 43811 71592 station_ip 83.122.96.17 71592 port 15728730 71592 nas_port_type Virtual 71592 remote_ip 5.5.5.245 71844 bytes_out 0 71844 bytes_in 0 71844 station_ip 83.122.235.130 71844 port 15728640 71844 nas_port_type Virtual 71844 remote_ip 5.5.5.255 71850 username nazanin 71850 unique_id port 71850 terminate_cause User-Request 71850 bytes_out 0 71597 unique_id port 71597 terminate_cause User-Request 71597 bytes_out 0 71597 bytes_in 0 71597 station_ip 83.122.96.17 71597 port 15728734 71597 nas_port_type Virtual 71597 remote_ip 5.5.5.245 71850 bytes_in 0 71850 station_ip 83.122.235.130 71850 port 15728646 71850 nas_port_type Virtual 71850 remote_ip 5.5.5.255 71852 username nazanin 71852 unique_id port 71852 terminate_cause User-Request 71852 bytes_out 0 71852 bytes_in 0 71852 station_ip 83.122.235.130 71852 port 15728648 71852 nas_port_type Virtual 71852 remote_ip 5.5.5.255 71853 username nazanin 71853 unique_id port 71853 terminate_cause User-Request 71853 bytes_out 18250 71853 bytes_in 183221 71853 station_ip 83.122.235.130 71853 port 15728649 71853 nas_port_type Virtual 71853 remote_ip 5.5.5.255 71854 username nazanin 71854 unique_id port 71854 terminate_cause User-Request 71854 bytes_out 0 71854 bytes_in 0 71854 station_ip 83.122.235.130 71854 port 15728650 71854 nas_port_type Virtual 71854 remote_ip 5.5.5.255 71858 username alinezhad 71858 unique_id port 71858 terminate_cause User-Request 71858 bytes_out 0 71858 bytes_in 0 71858 station_ip 5.202.8.173 71858 port 15728655 71858 nas_port_type Virtual 71858 remote_ip 5.5.5.253 71859 username nazanin 71859 unique_id port 71859 terminate_cause User-Request 71859 bytes_out 0 71859 bytes_in 0 71859 station_ip 83.122.235.130 71859 port 15728656 71859 nas_port_type Virtual 71859 remote_ip 5.5.5.255 71862 username nazanin 71862 unique_id port 71862 terminate_cause User-Request 71862 bytes_out 0 71862 bytes_in 0 71862 station_ip 83.122.235.130 71862 port 15728659 71862 nas_port_type Virtual 71862 remote_ip 5.5.5.255 71863 username nazanin 71863 unique_id port 71863 terminate_cause User-Request 71863 bytes_out 0 71863 bytes_in 0 71863 station_ip 83.122.235.130 71863 port 15728661 71863 nas_port_type Virtual 71863 remote_ip 5.5.5.255 71871 username nazanin 71871 unique_id port 71871 terminate_cause User-Request 71871 bytes_out 14101 71871 bytes_in 26815 71871 station_ip 83.122.235.130 71871 port 15728669 71871 nas_port_type Virtual 71871 remote_ip 5.5.5.255 71872 username alinezhad 71872 unique_id port 71872 terminate_cause User-Request 71872 bytes_out 0 71872 bytes_in 0 71872 station_ip 5.202.8.173 71872 port 15728670 71872 nas_port_type Virtual 71872 remote_ip 5.5.5.253 71877 username alirezazamani 71877 unique_id port 71877 terminate_cause Lost-Carrier 71877 bytes_out 166714 71877 bytes_in 3347560 71877 station_ip 5.120.62.138 71877 port 15728671 71877 nas_port_type Virtual 71877 remote_ip 5.5.5.252 71880 username alinezhad 71880 unique_id port 71880 terminate_cause User-Request 71880 bytes_out 0 71880 bytes_in 0 71880 station_ip 5.202.8.173 71880 port 15728678 71880 nas_port_type Virtual 71880 remote_ip 5.5.5.253 71885 username alirezazamani 71885 unique_id port 71885 terminate_cause Lost-Carrier 71885 bytes_out 144801 71885 bytes_in 2115123 71885 station_ip 5.120.62.138 71885 port 15728675 71885 nas_port_type Virtual 71885 remote_ip 5.5.5.250 71889 username nazanin 71889 unique_id port 71889 terminate_cause User-Request 71889 bytes_out 0 71889 bytes_in 0 71889 station_ip 83.122.235.130 71889 port 15728689 71889 nas_port_type Virtual 71889 remote_ip 5.5.5.255 71891 username nazanin 71891 unique_id port 71891 terminate_cause User-Request 71891 bytes_out 6588 71891 bytes_in 6748 71891 station_ip 83.122.235.130 71891 port 15728690 71891 nas_port_type Virtual 71891 remote_ip 5.5.5.255 71892 username nazanin 71892 unique_id port 71892 terminate_cause User-Request 71892 bytes_out 0 71892 bytes_in 0 71892 station_ip 83.122.235.130 71598 username nazanin 71598 unique_id port 71598 terminate_cause User-Request 71598 bytes_out 0 71598 bytes_in 0 71598 station_ip 83.122.96.17 71598 port 15728735 71598 nas_port_type Virtual 71598 remote_ip 5.5.5.245 71599 username alinezhad 71599 unique_id port 71599 terminate_cause User-Request 71599 bytes_out 0 71599 bytes_in 0 71599 station_ip 37.129.173.195 71599 port 15728736 71599 nas_port_type Virtual 71599 remote_ip 5.5.5.244 71601 username nazanin 71601 unique_id port 71601 terminate_cause User-Request 71601 bytes_out 0 71601 bytes_in 0 71601 station_ip 83.122.96.17 71601 port 15728738 71601 nas_port_type Virtual 71601 remote_ip 5.5.5.245 71602 username nazanin 71602 unique_id port 71602 terminate_cause User-Request 71602 bytes_out 0 71602 bytes_in 0 71602 station_ip 83.122.96.17 71602 port 15728739 71602 nas_port_type Virtual 71602 remote_ip 5.5.5.245 71608 username mobina 71608 unique_id port 71608 terminate_cause Lost-Carrier 71608 bytes_out 366283 71608 bytes_in 3102544 71608 station_ip 5.123.212.181 71608 port 15728699 71608 nas_port_type Virtual 71608 remote_ip 5.5.5.248 71611 username aminvpn 71611 unique_id port 71611 terminate_cause Lost-Carrier 71611 bytes_out 178593 71611 bytes_in 870234 71611 station_ip 5.119.236.220 71611 port 15728745 71611 nas_port_type Virtual 71611 remote_ip 5.5.5.250 71613 username nazanin 71613 unique_id port 71613 terminate_cause User-Request 71613 bytes_out 0 71613 bytes_in 0 71613 station_ip 83.122.96.17 71613 port 15728750 71613 nas_port_type Virtual 71613 remote_ip 5.5.5.245 71616 username nazanin 71616 unique_id port 71616 terminate_cause User-Request 71616 bytes_out 0 71616 bytes_in 0 71616 station_ip 83.122.96.17 71616 port 15728755 71616 nas_port_type Virtual 71616 remote_ip 5.5.5.245 71622 username nazanin 71622 unique_id port 71622 terminate_cause User-Request 71622 bytes_out 0 71622 bytes_in 0 71622 station_ip 83.122.96.17 71622 port 15728764 71622 nas_port_type Virtual 71622 remote_ip 5.5.5.245 71623 username nazanin 71623 unique_id port 71623 terminate_cause User-Request 71623 bytes_out 0 71623 bytes_in 0 71623 station_ip 83.122.96.17 71623 port 15728765 71623 nas_port_type Virtual 71623 remote_ip 5.5.5.245 71624 username nazanin 71624 unique_id port 71624 terminate_cause User-Request 71624 bytes_out 19831 71624 bytes_in 48770 71624 station_ip 83.122.96.17 71624 port 15728766 71624 nas_port_type Virtual 71624 remote_ip 5.5.5.245 71625 username nazanin 71625 unique_id port 71625 terminate_cause User-Request 71625 bytes_out 0 71625 bytes_in 0 71625 station_ip 83.122.96.17 71625 port 15728767 71625 nas_port_type Virtual 71625 remote_ip 5.5.5.245 71626 username nazanin 71626 unique_id port 71626 terminate_cause User-Request 71626 bytes_out 0 71626 bytes_in 0 71626 station_ip 83.122.96.17 71626 port 15728768 71626 nas_port_type Virtual 71626 remote_ip 5.5.5.245 71627 username nazanin 71627 unique_id port 71627 terminate_cause User-Request 71627 bytes_out 33899 71627 bytes_in 246699 71627 station_ip 83.122.96.17 71627 port 15728769 71627 nas_port_type Virtual 71627 remote_ip 5.5.5.245 71628 username nazanin 71628 unique_id port 71628 terminate_cause User-Request 71628 bytes_out 0 71628 bytes_in 0 71628 station_ip 83.122.96.17 71628 port 15728771 71628 nas_port_type Virtual 71628 remote_ip 5.5.5.245 71629 username nazanin 71629 unique_id port 71629 terminate_cause User-Request 71629 bytes_out 0 71629 bytes_in 0 71629 station_ip 83.122.96.17 71629 port 15728772 71629 nas_port_type Virtual 71629 remote_ip 5.5.5.245 71630 username nazanin 71630 unique_id port 71600 username nazanin 71600 unique_id port 71600 terminate_cause User-Request 71600 bytes_out 0 71600 bytes_in 0 71600 station_ip 83.122.96.17 71600 port 15728737 71600 nas_port_type Virtual 71600 remote_ip 5.5.5.245 71603 username nazanin 71603 unique_id port 71603 terminate_cause User-Request 71603 bytes_out 0 71603 bytes_in 0 71603 station_ip 83.122.96.17 71603 port 15728741 71603 nas_port_type Virtual 71603 remote_ip 5.5.5.245 71605 username alinezhad 71605 unique_id port 71605 terminate_cause User-Request 71605 bytes_out 9580 71605 bytes_in 14997 71605 station_ip 83.123.57.178 71605 port 15728743 71605 nas_port_type Virtual 71605 remote_ip 5.5.5.241 71609 username nazanin 71609 unique_id port 71609 terminate_cause User-Request 71609 bytes_out 0 71609 bytes_in 0 71609 station_ip 83.122.96.17 71609 port 15728746 71609 nas_port_type Virtual 71609 remote_ip 5.5.5.245 71610 username nazanin 71610 unique_id port 71610 terminate_cause User-Request 71610 bytes_out 0 71610 bytes_in 0 71610 station_ip 83.122.96.17 71610 port 15728748 71610 nas_port_type Virtual 71610 remote_ip 5.5.5.245 71612 username mohammadi 71612 unique_id port 71612 terminate_cause User-Request 71612 bytes_out 4222968 71612 bytes_in 122934651 71612 station_ip 46.225.209.129 71612 port 15728749 71612 nas_port_type Virtual 71612 remote_ip 5.5.5.239 71614 username nazanin 71614 unique_id port 71614 terminate_cause User-Request 71614 bytes_out 0 71614 bytes_in 0 71614 station_ip 83.122.96.17 71614 port 15728751 71614 nas_port_type Virtual 71614 remote_ip 5.5.5.245 71615 username nazanin 71615 unique_id port 71615 terminate_cause User-Request 71615 bytes_out 0 71615 bytes_in 0 71615 station_ip 83.122.96.17 71615 port 15728752 71615 nas_port_type Virtual 71615 remote_ip 5.5.5.245 71618 username nazanin 71618 unique_id port 71618 terminate_cause User-Request 71618 bytes_out 0 71618 bytes_in 0 71618 station_ip 83.122.96.17 71618 port 15728758 71618 nas_port_type Virtual 71618 remote_ip 5.5.5.245 71619 username nazanin 71619 unique_id port 71619 terminate_cause User-Request 71619 bytes_out 0 71619 bytes_in 0 71619 station_ip 83.122.96.17 71619 port 15728760 71619 nas_port_type Virtual 71619 remote_ip 5.5.5.245 71620 username nazanin 71620 unique_id port 71620 terminate_cause User-Request 71620 bytes_out 0 71620 bytes_in 0 71620 station_ip 83.122.96.17 71620 port 15728761 71620 nas_port_type Virtual 71620 remote_ip 5.5.5.245 71621 username nazanin 71621 unique_id port 71621 terminate_cause User-Request 71621 bytes_out 0 71621 bytes_in 0 71621 station_ip 83.122.96.17 71621 port 15728762 71621 nas_port_type Virtual 71621 remote_ip 5.5.5.245 71634 username nazanin 71634 unique_id port 71634 terminate_cause User-Request 71634 bytes_out 0 71634 bytes_in 0 71634 station_ip 83.122.96.17 71634 port 15728777 71634 nas_port_type Virtual 71634 remote_ip 5.5.5.245 71640 username nazanin 71640 unique_id port 71640 terminate_cause User-Request 71640 bytes_out 0 71640 bytes_in 0 71640 station_ip 83.122.96.17 71640 port 15728785 71640 nas_port_type Virtual 71640 remote_ip 5.5.5.245 71645 username nazanin 71645 unique_id port 71645 terminate_cause User-Request 71645 bytes_out 0 71645 bytes_in 0 71645 station_ip 83.122.96.17 71645 port 15728790 71645 nas_port_type Virtual 71645 remote_ip 5.5.5.245 71648 username nazanin 71648 unique_id port 71648 terminate_cause User-Request 71648 bytes_out 0 71648 bytes_in 0 71648 station_ip 83.122.96.17 71648 port 15728795 71648 nas_port_type Virtual 71648 remote_ip 5.5.5.245 71856 username nazanin 71856 unique_id port 71604 username aminsaeedi 71604 unique_id port 71604 terminate_cause User-Request 71604 bytes_out 553009 71604 bytes_in 16274361 71604 station_ip 31.59.40.176 71604 port 15728742 71604 nas_port_type Virtual 71604 remote_ip 5.5.5.242 71606 username alirezazamani 71606 unique_id port 71606 terminate_cause Lost-Carrier 71606 bytes_out 516735 71606 bytes_in 4619002 71606 station_ip 5.120.54.208 71606 port 15728740 71606 nas_port_type Virtual 71606 remote_ip 5.5.5.243 71607 username mobina 71607 unique_id port 71607 terminate_cause User-Request 71607 bytes_out 0 71607 bytes_in 0 71607 station_ip 5.123.221.201 71607 port 15728744 71607 nas_port_type Virtual 71607 remote_ip 5.5.5.240 71617 username nazanin 71617 unique_id port 71617 terminate_cause User-Request 71617 bytes_out 0 71617 bytes_in 0 71617 station_ip 83.122.96.17 71617 port 15728756 71617 nas_port_type Virtual 71617 remote_ip 5.5.5.245 71631 username nazanin 71631 unique_id port 71631 terminate_cause User-Request 71631 bytes_out 4340 71631 bytes_in 6985 71631 station_ip 83.122.96.17 71631 port 15728774 71631 nas_port_type Virtual 71631 remote_ip 5.5.5.245 71632 username nazanin 71632 unique_id port 71632 terminate_cause User-Request 71632 bytes_out 0 71632 bytes_in 0 71632 station_ip 83.122.96.17 71632 port 15728775 71632 nas_port_type Virtual 71632 remote_ip 5.5.5.245 71633 username nazanin 71633 unique_id port 71633 terminate_cause User-Request 71633 bytes_out 28763 71633 bytes_in 49604 71633 station_ip 83.122.96.17 71633 port 15728776 71633 nas_port_type Virtual 71633 remote_ip 5.5.5.245 71643 username nazanin 71643 unique_id port 71643 terminate_cause User-Request 71643 bytes_out 0 71643 bytes_in 0 71643 station_ip 83.122.96.17 71643 port 15728788 71643 nas_port_type Virtual 71643 remote_ip 5.5.5.245 71644 username nazanin 71644 unique_id port 71644 terminate_cause User-Request 71644 bytes_out 0 71644 bytes_in 0 71644 station_ip 83.122.96.17 71644 port 15728789 71644 nas_port_type Virtual 71644 remote_ip 5.5.5.245 71646 username nazanin 71646 unique_id port 71646 terminate_cause User-Request 71646 bytes_out 0 71646 bytes_in 0 71646 station_ip 83.122.96.17 71646 port 15728792 71646 nas_port_type Virtual 71646 remote_ip 5.5.5.245 71647 username nazanin 71647 unique_id port 71647 terminate_cause User-Request 71647 bytes_out 0 71647 bytes_in 0 71647 station_ip 83.122.96.17 71647 port 15728794 71647 nas_port_type Virtual 71647 remote_ip 5.5.5.245 71856 terminate_cause User-Request 71856 bytes_out 30996 71856 bytes_in 50801 71856 station_ip 83.122.235.130 71856 port 15728652 71856 nas_port_type Virtual 71856 remote_ip 5.5.5.255 71860 username nazanin 71860 unique_id port 71860 terminate_cause User-Request 71860 bytes_out 210 71860 bytes_in 2710 71860 station_ip 83.122.235.130 71860 port 15728657 71860 nas_port_type Virtual 71860 remote_ip 5.5.5.255 71861 username nazanin 71861 unique_id port 71861 terminate_cause User-Request 71861 bytes_out 12221 71861 bytes_in 52386 71861 station_ip 83.122.235.130 71861 port 15728658 71861 nas_port_type Virtual 71861 remote_ip 5.5.5.255 71864 username nazanin 71864 unique_id port 71864 terminate_cause User-Request 71864 bytes_out 270 71864 bytes_in 236 71864 station_ip 83.122.235.130 71864 port 15728663 71864 nas_port_type Virtual 71864 remote_ip 5.5.5.255 71865 username nazanin 71865 unique_id port 71865 terminate_cause User-Request 71865 bytes_out 0 71865 bytes_in 0 71865 station_ip 83.122.235.130 71865 port 15728664 71865 nas_port_type Virtual 71865 remote_ip 5.5.5.255 71866 username nazanin 71866 unique_id port 71630 terminate_cause User-Request 71630 bytes_out 0 71630 bytes_in 0 71630 station_ip 83.122.96.17 71630 port 15728773 71630 nas_port_type Virtual 71630 remote_ip 5.5.5.245 71635 username nazanin 71635 unique_id port 71635 terminate_cause User-Request 71635 bytes_out 0 71635 bytes_in 0 71635 station_ip 83.122.96.17 71635 port 15728778 71635 nas_port_type Virtual 71635 remote_ip 5.5.5.245 71636 username nazanin 71636 unique_id port 71636 terminate_cause User-Request 71636 bytes_out 0 71636 bytes_in 0 71636 station_ip 83.122.96.17 71636 port 15728779 71636 nas_port_type Virtual 71636 remote_ip 5.5.5.245 71637 username nazanin 71637 unique_id port 71637 terminate_cause User-Request 71637 bytes_out 80822 71637 bytes_in 137325 71637 station_ip 83.122.96.17 71637 port 15728780 71637 nas_port_type Virtual 71637 remote_ip 5.5.5.245 71638 username nazanin 71638 unique_id port 71638 terminate_cause User-Request 71638 bytes_out 8512 71638 bytes_in 24373 71638 station_ip 83.122.96.17 71638 port 15728781 71638 nas_port_type Virtual 71638 remote_ip 5.5.5.245 71639 username nazanin 71639 unique_id port 71639 terminate_cause User-Request 71639 bytes_out 0 71639 bytes_in 0 71639 station_ip 83.122.96.17 71639 port 15728784 71639 nas_port_type Virtual 71639 remote_ip 5.5.5.245 71641 username nazanin 71641 unique_id port 71641 terminate_cause User-Request 71641 bytes_out 0 71641 bytes_in 0 71641 station_ip 83.122.96.17 71641 port 15728786 71641 nas_port_type Virtual 71641 remote_ip 5.5.5.245 71642 username nazanin 71642 unique_id port 71642 terminate_cause User-Request 71642 bytes_out 0 71642 bytes_in 0 71642 station_ip 83.122.96.17 71642 port 15728787 71642 nas_port_type Virtual 71642 remote_ip 5.5.5.245 71866 terminate_cause User-Request 71866 bytes_out 7912 71866 bytes_in 21541 71866 station_ip 83.122.235.130 71866 port 15728665 71866 nas_port_type Virtual 71866 remote_ip 5.5.5.255 71868 username nazanin 71868 unique_id port 71868 terminate_cause User-Request 71868 bytes_out 0 71868 bytes_in 0 71868 station_ip 83.122.235.130 71868 port 15728666 71868 nas_port_type Virtual 71868 remote_ip 5.5.5.255 71869 username nazanin 71869 unique_id port 71869 terminate_cause User-Request 71869 bytes_out 0 71869 bytes_in 0 71869 station_ip 83.122.235.130 71869 port 15728667 71869 nas_port_type Virtual 71869 remote_ip 5.5.5.255 71873 username alinezhad 71873 unique_id port 71873 terminate_cause User-Request 71873 bytes_out 0 71873 bytes_in 0 71873 station_ip 5.202.8.173 71873 port 15728672 71873 nas_port_type Virtual 71873 remote_ip 5.5.5.253 71875 username alirezazamani 71875 unique_id port 71875 terminate_cause Lost-Carrier 71875 bytes_out 1310823 71875 bytes_in 38928913 71875 station_ip 5.120.62.138 71875 port 15728660 71875 nas_port_type Virtual 71875 remote_ip 5.5.5.251 71879 username goli 71879 unique_id port 71879 terminate_cause User-Request 71879 bytes_out 97326 71879 bytes_in 994935 71879 station_ip 37.129.141.37 71879 port 15728677 71879 nas_port_type Virtual 71879 remote_ip 5.5.5.249 71881 username goli 71881 unique_id port 71881 terminate_cause User-Request 71881 bytes_out 68078 71881 bytes_in 316149 71881 station_ip 37.129.141.37 71881 port 15728679 71881 nas_port_type Virtual 71881 remote_ip 5.5.5.249 71882 username alinezhad 71882 unique_id port 71882 terminate_cause User-Request 71882 bytes_out 0 71882 bytes_in 0 71882 station_ip 5.202.8.173 71882 port 15728681 71882 nas_port_type Virtual 71882 remote_ip 5.5.5.253 71883 username alirezazamani 71883 unique_id port 71883 terminate_cause User-Request 71883 bytes_out 78348 71883 bytes_in 1343634 71649 username nazanin 71649 unique_id port 71649 terminate_cause User-Request 71649 bytes_out 0 71649 bytes_in 0 71649 station_ip 83.122.96.17 71649 port 15728796 71649 nas_port_type Virtual 71649 remote_ip 5.5.5.245 71652 username aminvpn 71652 unique_id port 71652 terminate_cause Lost-Carrier 71652 bytes_out 534916 71652 bytes_in 6678727 71652 station_ip 5.119.232.237 71652 port 15728782 71652 nas_port_type Virtual 71652 remote_ip 5.5.5.238 71653 username nazanin 71653 unique_id port 71653 terminate_cause User-Request 71653 bytes_out 0 71653 bytes_in 0 71653 station_ip 83.122.96.17 71653 port 15728801 71653 nas_port_type Virtual 71653 remote_ip 5.5.5.245 71662 username nazanin 71662 unique_id port 71662 terminate_cause User-Request 71662 bytes_out 0 71662 bytes_in 0 71662 station_ip 83.122.96.17 71662 port 15728813 71662 nas_port_type Virtual 71662 remote_ip 5.5.5.245 71663 username alirezazamani 71663 unique_id port 71663 terminate_cause User-Request 71663 bytes_out 7264201 71663 bytes_in 160651217 71663 station_ip 5.119.229.131 71663 port 15728757 71663 nas_port_type Virtual 71663 remote_ip 5.5.5.252 71666 username nazanin 71666 unique_id port 71666 terminate_cause User-Request 71666 bytes_out 0 71666 bytes_in 0 71666 station_ip 83.122.96.17 71666 port 15728815 71666 nas_port_type Virtual 71666 remote_ip 5.5.5.245 71669 username nazanin 71669 unique_id port 71669 terminate_cause User-Request 71669 bytes_out 0 71669 bytes_in 0 71669 station_ip 83.122.96.17 71669 port 15728818 71669 nas_port_type Virtual 71669 remote_ip 5.5.5.245 71676 username nazanin 71676 unique_id port 71676 terminate_cause User-Request 71676 bytes_out 0 71676 bytes_in 0 71676 station_ip 83.122.96.17 71676 port 15728826 71676 nas_port_type Virtual 71676 remote_ip 5.5.5.245 71677 username nazanin 71677 unique_id port 71677 terminate_cause User-Request 71677 bytes_out 0 71677 bytes_in 0 71677 station_ip 83.122.96.17 71677 port 15728829 71677 nas_port_type Virtual 71677 remote_ip 5.5.5.245 71679 username nazanin 71679 unique_id port 71679 terminate_cause User-Request 71679 bytes_out 0 71679 bytes_in 0 71679 station_ip 83.122.96.17 71679 port 15728830 71679 nas_port_type Virtual 71679 remote_ip 5.5.5.245 71680 username nazanin 71680 unique_id port 71680 terminate_cause User-Request 71680 bytes_out 0 71680 bytes_in 0 71680 station_ip 83.122.96.17 71680 port 15728833 71680 nas_port_type Virtual 71680 remote_ip 5.5.5.245 71684 username nazanin 71684 unique_id port 71684 terminate_cause User-Request 71684 bytes_out 40102 71684 bytes_in 224590 71684 station_ip 83.122.96.17 71684 port 15728836 71684 nas_port_type Virtual 71684 remote_ip 5.5.5.245 71685 username alinezhad 71685 unique_id port 71685 terminate_cause User-Request 71685 bytes_out 0 71685 bytes_in 0 71685 station_ip 83.123.175.98 71685 port 15728837 71685 nas_port_type Virtual 71685 remote_ip 5.5.5.231 71689 username alinezhad 71689 unique_id port 71689 terminate_cause User-Request 71689 bytes_out 9738 71689 bytes_in 14172 71689 station_ip 83.123.175.98 71689 port 15728842 71689 nas_port_type Virtual 71689 remote_ip 5.5.5.231 71690 username nazanin 71690 unique_id port 71690 terminate_cause User-Request 71690 bytes_out 35883 71690 bytes_in 358604 71690 station_ip 83.122.96.17 71690 port 15728843 71690 nas_port_type Virtual 71690 remote_ip 5.5.5.245 71691 username aminvpn 71691 unique_id port 71691 terminate_cause Lost-Carrier 71691 bytes_out 1059001 71691 bytes_in 18388256 71691 station_ip 5.119.232.237 71691 port 15728802 71691 nas_port_type Virtual 71691 remote_ip 5.5.5.238 71694 username nazanin 71650 username nazanin 71650 unique_id port 71650 terminate_cause User-Request 71650 bytes_out 28933 71650 bytes_in 268718 71650 station_ip 83.122.96.17 71650 port 15728797 71650 nas_port_type Virtual 71650 remote_ip 5.5.5.245 71658 username nazanin 71658 unique_id port 71658 terminate_cause User-Request 71658 bytes_out 0 71658 bytes_in 0 71658 station_ip 83.122.96.17 71658 port 15728808 71658 nas_port_type Virtual 71658 remote_ip 5.5.5.245 71659 username nazanin 71659 unique_id port 71659 terminate_cause User-Request 71659 bytes_out 0 71659 bytes_in 0 71659 station_ip 83.122.96.17 71659 port 15728809 71659 nas_port_type Virtual 71659 remote_ip 5.5.5.245 71661 username alinezhad 71661 unique_id port 71661 terminate_cause User-Request 71661 bytes_out 8850 71661 bytes_in 14028 71661 station_ip 83.122.229.224 71661 port 15728812 71661 nas_port_type Virtual 71661 remote_ip 5.5.5.236 72723 kill_reason Another user logged on this global unique id 72723 mac 72723 bytes_out 0 72723 bytes_in 0 72723 station_ip 5.120.51.120 72723 port 1 72723 unique_id port 72726 username aminvpn 72866 unique_id port 71667 username nazanin 71667 unique_id port 71667 terminate_cause User-Request 71667 bytes_out 0 71667 bytes_in 0 71667 station_ip 83.122.96.17 71667 port 15728816 71667 nas_port_type Virtual 71667 remote_ip 5.5.5.245 71673 username nazanin 71673 unique_id port 71673 terminate_cause User-Request 71673 bytes_out 0 71673 bytes_in 0 71673 station_ip 83.122.96.17 71673 port 15728823 71673 nas_port_type Virtual 71673 remote_ip 5.5.5.245 71674 username nazanin 71674 unique_id port 71674 terminate_cause User-Request 71674 bytes_out 25559 71674 bytes_in 131183 71674 station_ip 83.122.96.17 71674 port 15728824 71674 nas_port_type Virtual 71674 remote_ip 5.5.5.245 71675 username alirezazamani 71675 kill_reason Maximum number of concurrent logins reached 71675 unique_id port 71675 bytes_out 0 71675 bytes_in 0 71675 station_ip 83.123.218.82 71675 port 15728827 71675 nas_port_type Virtual 71678 username alinezhad 71678 unique_id port 71678 terminate_cause User-Request 71678 bytes_out 0 71678 bytes_in 0 71678 station_ip 83.123.171.139 71678 port 15728828 71678 nas_port_type Virtual 71678 remote_ip 5.5.5.233 71681 username alinezhad 71681 unique_id port 71681 terminate_cause User-Request 71681 bytes_out 9284 71681 bytes_in 63155 71681 station_ip 83.123.171.139 71681 port 15728832 71681 nas_port_type Virtual 71681 remote_ip 5.5.5.233 71688 username nazanin 71688 unique_id port 71688 terminate_cause User-Request 71688 bytes_out 27419 71688 bytes_in 87143 71688 station_ip 83.122.96.17 71688 port 15728840 71688 nas_port_type Virtual 71688 remote_ip 5.5.5.245 71692 username nazanin 71692 unique_id port 71692 terminate_cause User-Request 71692 bytes_out 0 71692 bytes_in 0 71692 station_ip 83.122.96.17 71692 port 15728844 71692 nas_port_type Virtual 71692 remote_ip 5.5.5.245 71695 username alirezazamani 71695 unique_id port 71695 terminate_cause Lost-Carrier 71695 bytes_out 207701 71695 bytes_in 1200761 71695 station_ip 5.120.57.182 71695 port 15728825 71695 nas_port_type Virtual 71695 remote_ip 5.5.5.234 71697 username mobina 71697 unique_id port 71697 terminate_cause Lost-Carrier 71697 bytes_out 538712 71697 bytes_in 7546041 71697 station_ip 31.7.113.218 71697 port 15728839 71697 nas_port_type Virtual 71697 remote_ip 5.5.5.230 71698 username alinezhad 71698 unique_id port 71698 terminate_cause User-Request 71698 bytes_out 7177 71698 bytes_in 8815 71698 station_ip 83.122.159.219 71698 port 15728848 71698 nas_port_type Virtual 71698 remote_ip 5.5.5.227 71699 username alirezazamani 71651 username nazanin 71651 unique_id port 71651 terminate_cause User-Request 71651 bytes_out 0 71651 bytes_in 0 71651 station_ip 83.122.96.17 71651 port 15728799 71651 nas_port_type Virtual 71651 remote_ip 5.5.5.245 71654 username nazanin 71654 unique_id port 71654 terminate_cause User-Request 71654 bytes_out 0 71654 bytes_in 0 71654 station_ip 83.122.96.17 71654 port 15728803 71654 nas_port_type Virtual 71654 remote_ip 5.5.5.245 71655 username nazanin 71655 unique_id port 71655 terminate_cause User-Request 71655 bytes_out 0 71655 bytes_in 0 71655 station_ip 83.122.96.17 71655 port 15728804 71655 nas_port_type Virtual 71655 remote_ip 5.5.5.245 71656 username nazanin 71656 unique_id port 71656 terminate_cause User-Request 71656 bytes_out 0 71656 bytes_in 0 71656 station_ip 83.122.96.17 71656 port 15728805 71656 nas_port_type Virtual 71656 remote_ip 5.5.5.245 71657 username nazanin 71657 unique_id port 71657 terminate_cause User-Request 71657 bytes_out 32351 71657 bytes_in 213319 71657 station_ip 83.122.96.17 71657 port 15728806 71657 nas_port_type Virtual 71657 remote_ip 5.5.5.245 71660 username nazanin 71660 unique_id port 71660 terminate_cause User-Request 71660 bytes_out 0 71660 bytes_in 0 71660 station_ip 83.122.96.17 71660 port 15728810 71660 nas_port_type Virtual 71660 remote_ip 5.5.5.245 71665 username nazanin 71665 unique_id port 71665 terminate_cause User-Request 71665 bytes_out 0 71665 bytes_in 0 71665 station_ip 83.122.96.17 71665 port 15728814 71665 nas_port_type Virtual 71665 remote_ip 5.5.5.245 71668 username alinezhad 71668 unique_id port 71668 terminate_cause User-Request 71668 bytes_out 10892 71668 bytes_in 11570 71668 station_ip 113.203.84.10 71668 port 15728817 71668 nas_port_type Virtual 71668 remote_ip 5.5.5.235 71670 username nazanin 71670 unique_id port 71670 terminate_cause User-Request 71670 bytes_out 0 71670 bytes_in 0 71670 station_ip 83.122.96.17 71670 port 15728820 71670 nas_port_type Virtual 71670 remote_ip 5.5.5.245 71671 username nazanin 71671 unique_id port 71671 terminate_cause User-Request 71671 bytes_out 0 71671 bytes_in 0 71671 station_ip 83.122.96.17 71671 port 15728821 71671 nas_port_type Virtual 71671 remote_ip 5.5.5.245 71672 username nazanin 71672 unique_id port 71672 terminate_cause User-Request 71672 bytes_out 0 71672 bytes_in 0 71672 station_ip 83.122.96.17 71672 port 15728822 71672 nas_port_type Virtual 71672 remote_ip 5.5.5.245 71682 username nazanin 71682 unique_id port 71682 terminate_cause User-Request 71682 bytes_out 0 71682 bytes_in 0 71682 station_ip 83.122.96.17 71682 port 15728834 71682 nas_port_type Virtual 71682 remote_ip 5.5.5.245 71683 username nazanin 71683 unique_id port 71683 terminate_cause User-Request 71683 bytes_out 0 71683 bytes_in 0 71683 station_ip 83.122.96.17 71683 port 15728835 71683 nas_port_type Virtual 71683 remote_ip 5.5.5.245 71686 username nazanin 71686 unique_id port 71686 terminate_cause User-Request 71686 bytes_out 0 71686 bytes_in 0 71686 station_ip 83.122.96.17 71686 port 15728838 71686 nas_port_type Virtual 71686 remote_ip 5.5.5.245 71687 username alinezhad 71687 unique_id port 71687 terminate_cause User-Request 71687 bytes_out 0 71687 bytes_in 0 71687 station_ip 83.123.175.98 71687 port 15728841 71687 nas_port_type Virtual 71687 remote_ip 5.5.5.231 71693 username ksr 71693 unique_id port 71693 terminate_cause User-Request 71693 bytes_out 3413598 71693 bytes_in 44329793 71693 station_ip 5.233.80.219 71693 port 15728831 71693 nas_port_type Virtual 71693 remote_ip 5.5.5.232 71696 username alinezhad 71696 unique_id port 71694 unique_id port 71694 terminate_cause User-Request 71694 bytes_out 0 71694 bytes_in 0 71694 station_ip 83.122.96.17 71694 port 15728845 71694 nas_port_type Virtual 71694 remote_ip 5.5.5.245 71700 username ahmad 71700 unique_id port 71700 terminate_cause User-Request 71700 bytes_out 631468 71700 bytes_in 9339817 71700 station_ip 86.57.28.94 71700 port 15728846 71700 nas_port_type Virtual 71700 remote_ip 5.5.5.229 71876 bytes_out 75895 71876 bytes_in 1217828 71876 station_ip 5.120.62.138 71876 port 15728673 71876 nas_port_type Virtual 71876 remote_ip 5.5.5.250 71878 username alinezhad 71878 unique_id port 71878 terminate_cause User-Request 71878 bytes_out 0 71878 bytes_in 0 71878 station_ip 5.202.8.173 71878 port 15728676 71878 nas_port_type Virtual 71878 remote_ip 5.5.5.253 71886 username alinezhad 71886 unique_id port 71886 terminate_cause User-Request 71886 bytes_out 0 71886 bytes_in 0 71886 station_ip 5.202.8.173 71886 port 15728687 71886 nas_port_type Virtual 71886 remote_ip 5.5.5.253 71887 username nazanin 71887 unique_id port 71887 terminate_cause User-Request 71887 bytes_out 46646 71887 bytes_in 109496 71887 station_ip 83.122.235.130 71887 port 15728686 71887 nas_port_type Virtual 71887 remote_ip 5.5.5.255 71888 username nazanin 71888 unique_id port 71888 terminate_cause User-Request 71888 bytes_out 30286 71888 bytes_in 150565 71888 station_ip 83.122.235.130 71888 port 15728688 71888 nas_port_type Virtual 71888 remote_ip 5.5.5.255 71893 username nazanin 71893 unique_id port 71893 terminate_cause User-Request 71893 bytes_out 0 71893 bytes_in 0 71893 station_ip 83.122.235.130 71893 port 15728696 71893 nas_port_type Virtual 71893 remote_ip 5.5.5.255 71894 username alinezhad 71894 unique_id port 71894 terminate_cause User-Request 71894 bytes_out 0 71894 bytes_in 0 71894 station_ip 5.202.8.173 71894 port 15728697 71894 nas_port_type Virtual 71894 remote_ip 5.5.5.253 71897 username alirezazamani 71897 unique_id port 71897 terminate_cause Lost-Carrier 71897 bytes_out 317938 71897 bytes_in 7863900 71897 station_ip 5.120.65.70 71897 port 15728694 71897 nas_port_type Virtual 71897 remote_ip 5.5.5.246 71899 username alirezazamani 71899 unique_id port 71899 terminate_cause User-Request 71899 bytes_out 134654 71899 bytes_in 425049 71899 station_ip 37.129.26.236 71899 port 15728702 71899 nas_port_type Virtual 71899 remote_ip 5.5.5.242 71905 username alirezazamani 71905 unique_id port 71905 terminate_cause Lost-Carrier 71905 bytes_out 341223 71905 bytes_in 555091 71905 station_ip 5.120.65.70 71905 port 15728706 71905 nas_port_type Virtual 71905 remote_ip 5.5.5.243 72081 username kohestani 72081 unique_id port 72081 terminate_cause User-Request 72081 bytes_out 559307 72081 bytes_in 19822155 72081 station_ip 37.129.90.148 72081 port 15728890 72081 nas_port_type Virtual 72081 remote_ip 5.5.5.173 72083 username nazanin 72083 unique_id port 72083 terminate_cause User-Request 72083 bytes_out 234 72083 bytes_in 232 72083 station_ip 113.203.7.229 72083 port 15728892 72083 nas_port_type Virtual 72083 remote_ip 5.5.5.172 72084 username nazanin 72084 unique_id port 72084 terminate_cause User-Request 72084 bytes_out 30177 72084 bytes_in 385332 72084 station_ip 113.203.7.229 72084 port 15728893 72084 nas_port_type Virtual 72084 remote_ip 5.5.5.172 72086 username nazanin 72086 unique_id port 72086 terminate_cause User-Request 72086 bytes_out 0 72086 bytes_in 0 72086 station_ip 113.203.7.229 72086 port 15728895 72086 nas_port_type Virtual 72086 remote_ip 5.5.5.172 72087 username nazanin 72087 unique_id port 72087 terminate_cause User-Request 72087 bytes_out 0 71696 terminate_cause User-Request 71696 bytes_out 4157 71696 bytes_in 4323 71696 station_ip 37.129.105.28 71696 port 15728847 71696 nas_port_type Virtual 71696 remote_ip 5.5.5.228 71701 username goli 71701 unique_id port 71701 terminate_cause User-Request 71701 bytes_out 33787 71701 bytes_in 142139 71701 station_ip 37.129.132.193 71701 port 15728852 71701 nas_port_type Virtual 71701 remote_ip 5.5.5.224 71702 username alirezazamani 71702 unique_id port 71702 terminate_cause User-Request 71702 bytes_out 641105 71702 bytes_in 5512529 71702 station_ip 5.119.58.205 71702 port 15728849 71702 nas_port_type Virtual 71702 remote_ip 5.5.5.226 71703 username aminvpn 71703 unique_id port 71703 terminate_cause Lost-Carrier 71703 bytes_out 200386 71703 bytes_in 826844 71703 station_ip 5.119.144.134 71703 port 15728851 71703 nas_port_type Virtual 71703 remote_ip 5.5.5.225 71704 username aminsaeedi 71704 unique_id port 71704 terminate_cause Lost-Carrier 71704 bytes_out 3979878 71704 bytes_in 108749057 71704 station_ip 31.59.40.176 71704 port 15728793 71704 nas_port_type Virtual 71704 remote_ip 5.5.5.242 71883 station_ip 5.120.65.70 71883 port 15728680 71883 nas_port_type Virtual 71883 remote_ip 5.5.5.248 71884 username nazanin 71884 unique_id port 71884 terminate_cause User-Request 71884 bytes_out 41848 71884 bytes_in 186784 71884 station_ip 83.122.235.130 71884 port 15728682 71884 nas_port_type Virtual 71884 remote_ip 5.5.5.255 71890 username alinezhad 71890 unique_id port 71890 terminate_cause User-Request 71890 bytes_out 0 71890 bytes_in 0 71890 station_ip 5.202.8.173 71890 port 15728691 71890 nas_port_type Virtual 71890 remote_ip 5.5.5.253 71895 username alinezhad 71895 unique_id port 71895 terminate_cause User-Request 71895 bytes_out 0 71895 bytes_in 0 71895 station_ip 5.202.8.173 71895 port 15728700 71895 nas_port_type Virtual 71895 remote_ip 5.5.5.253 71896 username alirezazamani 71896 unique_id port 71896 terminate_cause Lost-Carrier 71896 bytes_out 328856 71896 bytes_in 3354318 71896 station_ip 5.120.65.70 71896 port 15728685 71896 nas_port_type Virtual 71896 remote_ip 5.5.5.248 71901 username alinezhad 71901 unique_id port 71901 terminate_cause User-Request 71901 bytes_out 27428 71901 bytes_in 352129 71901 station_ip 5.202.8.173 71901 port 15728705 71901 nas_port_type Virtual 71901 remote_ip 5.5.5.253 71902 username dehghan 71902 unique_id port 71902 terminate_cause User-Request 71902 bytes_out 252995 71902 bytes_in 7279661 71902 station_ip 83.122.63.100 71902 port 15728707 71902 nas_port_type Virtual 71902 remote_ip 5.5.5.240 71904 username alirezazamani 71904 unique_id port 71904 terminate_cause User-Request 71904 bytes_out 18481561 71904 bytes_in 34168421 71904 station_ip 5.120.28.56 71904 port 15728698 71904 nas_port_type Virtual 71904 remote_ip 5.5.5.245 71906 username nazanin 71906 unique_id port 71906 terminate_cause User-Request 71906 bytes_out 0 71906 bytes_in 0 71906 station_ip 83.122.231.134 71906 port 15728709 71906 nas_port_type Virtual 71906 remote_ip 5.5.5.238 71907 username alirezazamani 71907 unique_id port 71907 terminate_cause Lost-Carrier 71907 bytes_out 104857 71907 bytes_in 358748 71907 station_ip 5.120.65.70 71907 port 15728708 71907 nas_port_type Virtual 71907 remote_ip 5.5.5.239 71908 username nazanin 71908 unique_id port 71908 terminate_cause User-Request 71908 bytes_out 17021 71908 bytes_in 21675 71908 station_ip 83.122.231.134 71908 port 15728710 71908 nas_port_type Virtual 71908 remote_ip 5.5.5.238 71911 username nazanin 71911 unique_id port 71911 terminate_cause User-Request 71911 bytes_out 12543 71911 bytes_in 19210 71911 station_ip 83.122.231.134 71699 unique_id port 71699 terminate_cause Lost-Carrier 71699 bytes_out 5275492 71699 bytes_in 114296695 71699 station_ip 5.119.229.131 71699 port 15728819 71699 nas_port_type Virtual 71699 remote_ip 5.5.5.252 71892 port 15728693 71892 nas_port_type Virtual 71892 remote_ip 5.5.5.255 71898 username mobina 71898 unique_id port 71898 terminate_cause Lost-Carrier 71898 bytes_out 24753 71898 bytes_in 21443 71898 station_ip 5.123.186.195 71898 port 15728699 71898 nas_port_type Virtual 71898 remote_ip 5.5.5.244 71900 username alirezazamani 71900 unique_id port 71900 terminate_cause Lost-Carrier 71900 bytes_out 1118295 71900 bytes_in 5715850 71900 station_ip 5.120.65.70 71900 port 15728701 71900 nas_port_type Virtual 71900 remote_ip 5.5.5.243 71903 username alirezazamani 71903 unique_id port 71903 terminate_cause Lost-Carrier 71903 bytes_out 245479 71903 bytes_in 503781 71903 station_ip 5.120.65.70 71903 port 15728704 71903 nas_port_type Virtual 71903 remote_ip 5.5.5.246 71909 username alirezazamani 71909 unique_id port 71909 terminate_cause User-Request 71909 bytes_out 0 71909 bytes_in 0 71909 station_ip 5.120.28.56 71909 port 15728711 71909 nas_port_type Virtual 71909 remote_ip 5.5.5.245 71910 username nazanin 71910 unique_id port 71910 terminate_cause User-Request 71910 bytes_out 0 71910 bytes_in 0 71910 station_ip 83.122.231.134 71910 port 15728712 71910 nas_port_type Virtual 71910 remote_ip 5.5.5.238 72082 username nazanin 72082 unique_id port 72082 terminate_cause User-Request 72082 bytes_out 0 72082 bytes_in 0 72082 station_ip 113.203.7.229 72082 port 15728891 72082 nas_port_type Virtual 72082 remote_ip 5.5.5.172 72085 username nazanin 72085 unique_id port 72085 terminate_cause User-Request 72085 bytes_out 0 72085 bytes_in 0 72085 station_ip 113.203.7.229 72085 port 15728894 72085 nas_port_type Virtual 72085 remote_ip 5.5.5.172 72088 username nazanin 72088 unique_id port 72088 terminate_cause User-Request 72088 bytes_out 25732 72088 bytes_in 314367 72088 station_ip 113.203.7.229 72088 port 15728897 72088 nas_port_type Virtual 72088 remote_ip 5.5.5.172 72091 username nazanin 72091 unique_id port 72091 terminate_cause User-Request 72091 bytes_out 18379 72091 bytes_in 153226 72091 station_ip 113.203.7.229 72091 port 15728900 72091 nas_port_type Virtual 72091 remote_ip 5.5.5.172 72094 username alinezhad 72094 unique_id port 72094 terminate_cause User-Request 72094 bytes_out 0 72094 bytes_in 0 72094 station_ip 5.202.1.195 72094 port 15728640 72094 nas_port_type Virtual 72094 remote_ip 5.5.5.255 72095 username alinezhad 72095 unique_id port 72095 terminate_cause User-Request 72095 bytes_out 38882 72095 bytes_in 498039 72095 station_ip 5.202.1.195 72095 port 15728641 72095 nas_port_type Virtual 72095 remote_ip 5.5.5.255 72099 username alinezhad 72099 unique_id port 72099 terminate_cause User-Request 72099 bytes_out 0 72099 bytes_in 0 72099 station_ip 5.202.1.195 72099 port 15728646 72099 nas_port_type Virtual 72099 remote_ip 5.5.5.255 72100 username alirezazamani 72100 unique_id port 72100 terminate_cause Lost-Carrier 72100 bytes_out 855873 72100 bytes_in 21866945 72100 station_ip 5.119.165.212 72100 port 15728645 72100 nas_port_type Virtual 72100 remote_ip 5.5.5.253 72102 username alinezhad 72102 unique_id port 72102 terminate_cause User-Request 72102 bytes_out 15206 72102 bytes_in 20980 72102 station_ip 5.202.1.195 72102 port 15728648 72102 nas_port_type Virtual 72102 remote_ip 5.5.5.255 72103 username alinezhad 72103 unique_id port 72103 terminate_cause User-Request 72103 bytes_out 0 72103 bytes_in 0 72103 station_ip 5.202.1.195 72103 port 15728652 71705 username nazanin 71705 unique_id port 71705 terminate_cause User-Request 71705 bytes_out 0 71705 bytes_in 0 71705 station_ip 83.123.178.219 71705 port 15728856 71705 nas_port_type Virtual 71705 remote_ip 5.5.5.223 71708 username nazanin 71708 unique_id port 71708 terminate_cause User-Request 71708 bytes_out 41209 71708 bytes_in 52436 71708 station_ip 83.123.178.219 71708 port 15728859 71708 nas_port_type Virtual 71708 remote_ip 5.5.5.223 71713 username nazanin 71713 unique_id port 71713 terminate_cause User-Request 71713 bytes_out 30065 71713 bytes_in 136166 71713 station_ip 83.123.178.219 71713 port 15728867 71713 nas_port_type Virtual 71713 remote_ip 5.5.5.223 71717 username nazanin 71717 unique_id port 71717 terminate_cause User-Request 71717 bytes_out 0 71717 bytes_in 0 71717 station_ip 83.123.178.219 71717 port 15728871 71717 nas_port_type Virtual 71717 remote_ip 5.5.5.223 71720 username alirezazamani 71720 unique_id port 71720 terminate_cause Lost-Carrier 71720 bytes_out 87842 71720 bytes_in 247182 71720 station_ip 5.119.250.4 71720 port 15728873 71720 nas_port_type Virtual 71720 remote_ip 5.5.5.222 71724 username nazanin 71724 unique_id port 71724 terminate_cause User-Request 71724 bytes_out 0 71724 bytes_in 0 71724 station_ip 83.123.178.219 71724 port 15728882 71724 nas_port_type Virtual 71724 remote_ip 5.5.5.223 71727 username alirezazamani 71727 unique_id port 71727 terminate_cause Lost-Carrier 71727 bytes_out 416102 71727 bytes_in 1909752 71727 station_ip 5.119.229.131 71727 port 15728876 71727 nas_port_type Virtual 71727 remote_ip 5.5.5.252 71728 username nazanin 71728 unique_id port 71728 terminate_cause User-Request 71728 bytes_out 34415 71728 bytes_in 182964 71728 station_ip 83.123.178.219 71728 port 15728885 71728 nas_port_type Virtual 71728 remote_ip 5.5.5.223 71732 username nazanin 71732 unique_id port 71732 terminate_cause User-Request 71732 bytes_out 0 71732 bytes_in 0 71732 station_ip 83.123.178.219 71732 port 15728890 71732 nas_port_type Virtual 71732 remote_ip 5.5.5.223 71734 username nazanin 71734 unique_id port 71734 terminate_cause User-Request 71734 bytes_out 24359 71734 bytes_in 45821 71734 station_ip 83.123.178.219 71734 port 15728892 71734 nas_port_type Virtual 71734 remote_ip 5.5.5.223 71738 username aminsaeedi 71738 unique_id port 71738 terminate_cause User-Request 71738 bytes_out 1018918 71738 bytes_in 27933589 71738 station_ip 31.59.40.176 71738 port 15728895 71738 nas_port_type Virtual 71738 remote_ip 5.5.5.242 71741 username alinezhad 71741 unique_id port 71741 terminate_cause User-Request 71741 bytes_out 14882 71741 bytes_in 142377 71741 station_ip 5.202.11.51 71741 port 15728900 71741 nas_port_type Virtual 71741 remote_ip 5.5.5.221 71749 username alinezhad 71749 unique_id port 71749 terminate_cause User-Request 71749 bytes_out 0 71749 bytes_in 0 71749 station_ip 5.202.11.51 71749 port 15728912 71749 nas_port_type Virtual 71749 remote_ip 5.5.5.221 71753 username ksr 71753 unique_id port 71753 terminate_cause User-Request 71753 bytes_out 20426269 71753 bytes_in 488728740 71753 station_ip 5.233.80.219 71753 port 15728903 71753 nas_port_type Virtual 71753 remote_ip 5.5.5.232 71756 username alirezazamani 71756 unique_id port 71756 terminate_cause User-Request 71756 bytes_out 6917801 71756 bytes_in 22453205 71756 station_ip 5.119.121.26 71756 port 15728908 71756 nas_port_type Virtual 71756 remote_ip 5.5.5.214 71757 username mobina 71757 unique_id port 71757 terminate_cause Lost-Carrier 71757 bytes_out 24621 71757 bytes_in 35017 71757 station_ip 5.219.210.181 71757 port 15728919 71757 nas_port_type Virtual 71757 remote_ip 5.5.5.220 71706 username nazanin 71706 unique_id port 71706 terminate_cause User-Request 71706 bytes_out 40776 71706 bytes_in 408230 71706 station_ip 83.123.178.219 71706 port 15728857 71706 nas_port_type Virtual 71706 remote_ip 5.5.5.223 71707 username nazanin 71707 unique_id port 71707 terminate_cause User-Request 71707 bytes_out 0 71707 bytes_in 0 71707 station_ip 83.123.178.219 71707 port 15728858 71707 nas_port_type Virtual 71707 remote_ip 5.5.5.223 71709 username nazanin 71709 unique_id port 71709 terminate_cause User-Request 71709 bytes_out 0 71709 bytes_in 0 71709 station_ip 83.123.178.219 71709 port 15728860 71709 nas_port_type Virtual 71709 remote_ip 5.5.5.223 71711 username nazanin 71711 unique_id port 71711 terminate_cause User-Request 71711 bytes_out 12269 71711 bytes_in 18853 71711 station_ip 83.123.178.219 71711 port 15728864 71711 nas_port_type Virtual 71711 remote_ip 5.5.5.223 71712 username nazanin 71712 unique_id port 71712 terminate_cause User-Request 71712 bytes_out 0 71712 bytes_in 0 71712 station_ip 83.123.178.219 71712 port 15728866 71712 nas_port_type Virtual 71712 remote_ip 5.5.5.223 71714 username nazanin 71714 unique_id port 71714 terminate_cause User-Request 71714 bytes_out 0 71714 bytes_in 0 71714 station_ip 83.123.178.219 71714 port 15728868 71714 nas_port_type Virtual 71714 remote_ip 5.5.5.223 71715 username nazanin 71715 unique_id port 71715 terminate_cause User-Request 71715 bytes_out 22954 71715 bytes_in 50510 71715 station_ip 83.123.178.219 71715 port 15728869 71715 nas_port_type Virtual 71715 remote_ip 5.5.5.223 71719 username alinezhad 71719 unique_id port 71719 terminate_cause User-Request 71719 bytes_out 230702 71719 bytes_in 7131840 71719 station_ip 5.202.11.51 71719 port 15728875 71719 nas_port_type Virtual 71719 remote_ip 5.5.5.221 71721 username alirezazamani 71721 unique_id port 71721 terminate_cause Lost-Carrier 71721 bytes_out 24686 71721 bytes_in 129963 71721 station_ip 5.120.57.182 71721 port 15728874 71721 nas_port_type Virtual 71721 remote_ip 5.5.5.234 71722 username alirezazamani 71722 kill_reason Maximum number of concurrent logins reached 71722 unique_id port 71722 bytes_out 0 71722 bytes_in 0 71722 station_ip 5.119.121.26 71722 port 15728880 71722 nas_port_type Virtual 71726 username nazanin 71726 unique_id port 71726 terminate_cause User-Request 71726 bytes_out 0 71726 bytes_in 0 71726 station_ip 83.123.178.219 71726 port 15728884 71726 nas_port_type Virtual 71726 remote_ip 5.5.5.223 71730 username alirezazamani 71730 unique_id port 71730 terminate_cause Lost-Carrier 71730 bytes_out 1672093 71730 bytes_in 9523348 71730 station_ip 5.119.229.131 71730 port 15728878 71730 nas_port_type Virtual 71730 remote_ip 5.5.5.219 71731 username nazanin 71731 unique_id port 71731 terminate_cause User-Request 71731 bytes_out 0 71731 bytes_in 0 71731 station_ip 83.123.178.219 71731 port 15728889 71731 nas_port_type Virtual 71731 remote_ip 5.5.5.223 71733 username nazanin 71733 kill_reason Maximum check online fails reached 71733 unique_id port 71733 bytes_out 0 71733 bytes_in 0 71733 station_ip 83.123.178.219 71733 port 15728891 71733 nas_port_type Virtual 71737 username nazanin 71737 unique_id port 71737 terminate_cause Lost-Carrier 71737 bytes_out 141618 71737 bytes_in 899292 71737 station_ip 83.123.178.219 71737 port 15728894 71737 nas_port_type Virtual 71737 remote_ip 5.5.5.223 71740 username aminsaeedi 71740 unique_id port 71740 terminate_cause User-Request 71740 bytes_out 389319 71740 bytes_in 8250615 71740 station_ip 31.59.40.176 71740 port 15728898 71740 nas_port_type Virtual 71740 remote_ip 5.5.5.242 71742 username alinezhad 71710 username nazanin 71710 unique_id port 71710 terminate_cause User-Request 71710 bytes_out 19667 71710 bytes_in 53686 71710 station_ip 83.123.178.219 71710 port 15728861 71710 nas_port_type Virtual 71710 remote_ip 5.5.5.223 71716 username nazanin 71716 unique_id port 71716 terminate_cause User-Request 71716 bytes_out 0 71716 bytes_in 0 71716 station_ip 83.123.178.219 71716 port 15728870 71716 nas_port_type Virtual 71716 remote_ip 5.5.5.223 71718 username nazanin 71718 unique_id port 71718 terminate_cause User-Request 71718 bytes_out 1781 71718 bytes_in 314 71718 station_ip 83.123.178.219 71718 port 15728872 71718 nas_port_type Virtual 71718 remote_ip 5.5.5.223 71723 username alirezazamani 71723 kill_reason Maximum number of concurrent logins reached 71723 unique_id port 71723 bytes_out 0 71723 bytes_in 0 71723 station_ip 5.119.121.26 71723 port 15728881 71723 nas_port_type Virtual 71725 username alinezhad 71725 unique_id port 71725 terminate_cause User-Request 71725 bytes_out 19522 71725 bytes_in 40781 71725 station_ip 5.202.11.51 71725 port 15728879 71725 nas_port_type Virtual 71725 remote_ip 5.5.5.221 71729 username nazanin 71729 unique_id port 71729 terminate_cause User-Request 71729 bytes_out 0 71729 bytes_in 0 71729 station_ip 83.123.178.219 71729 port 15728886 71729 nas_port_type Virtual 71729 remote_ip 5.5.5.223 71735 username nazanin 71735 unique_id port 71735 terminate_cause User-Request 71735 bytes_out 0 71735 bytes_in 0 71735 station_ip 83.123.178.219 71735 port 15728893 71735 nas_port_type Virtual 71735 remote_ip 5.5.5.223 71736 username alinezhad 71736 unique_id port 71736 terminate_cause User-Request 71736 bytes_out 0 71736 bytes_in 0 71736 station_ip 5.202.11.51 71736 port 15728896 71736 nas_port_type Virtual 71736 remote_ip 5.5.5.221 71739 username alirezazamani 71739 unique_id port 71739 terminate_cause User-Request 71739 bytes_out 743210 71739 bytes_in 8494091 71739 station_ip 94.241.183.22 71739 port 15728897 71739 nas_port_type Virtual 71739 remote_ip 5.5.5.251 71745 username nazanin 71745 unique_id port 71745 terminate_cause User-Request 71745 bytes_out 0 71745 bytes_in 0 71745 station_ip 83.123.210.203 71745 port 15728906 71745 nas_port_type Virtual 71745 remote_ip 5.5.5.215 71747 username aminvpn 71747 unique_id port 71747 terminate_cause Lost-Carrier 71747 bytes_out 1167086 71747 bytes_in 16735858 71747 station_ip 5.119.141.240 71747 port 15728904 71747 nas_port_type Virtual 71747 remote_ip 5.5.5.217 71748 username alinezhad 71748 unique_id port 71748 terminate_cause User-Request 71748 bytes_out 8506 71748 bytes_in 11769 71748 station_ip 5.202.11.51 71748 port 15728909 71748 nas_port_type Virtual 71748 remote_ip 5.5.5.221 71755 username ahmad 71755 unique_id port 71755 terminate_cause User-Request 71755 bytes_out 100751 71755 bytes_in 760076 71755 station_ip 113.203.74.165 71755 port 15728917 71755 nas_port_type Virtual 71755 remote_ip 5.5.5.212 71911 port 15728713 71911 nas_port_type Virtual 71911 remote_ip 5.5.5.238 72087 bytes_in 0 72087 station_ip 113.203.7.229 72087 port 15728896 72087 nas_port_type Virtual 72087 remote_ip 5.5.5.172 72089 username nazanin 72089 unique_id port 72089 terminate_cause User-Request 72089 bytes_out 0 72089 bytes_in 0 72089 station_ip 113.203.7.229 72089 port 15728898 72089 nas_port_type Virtual 72089 remote_ip 5.5.5.172 72092 username nazanin 72092 unique_id port 72092 terminate_cause User-Request 72092 bytes_out 0 72092 bytes_in 0 72092 station_ip 113.203.7.229 72092 port 15728901 72092 nas_port_type Virtual 72092 remote_ip 5.5.5.172 72096 username mobina 72096 unique_id port 71742 unique_id port 71742 terminate_cause User-Request 71742 bytes_out 13899 71742 bytes_in 19945 71742 station_ip 5.202.11.51 71742 port 15728901 71742 nas_port_type Virtual 71742 remote_ip 5.5.5.221 71743 username alirezazamani 71743 unique_id port 71743 terminate_cause Lost-Carrier 71743 bytes_out 454057 71743 bytes_in 2576157 71743 station_ip 5.119.24.104 71743 port 15728902 71743 nas_port_type Virtual 71743 remote_ip 5.5.5.218 71744 username kasra 71744 unique_id port 71744 terminate_cause User-Request 71744 bytes_out 171225 71744 bytes_in 3114440 71744 station_ip 113.203.110.100 71744 port 15728905 71744 nas_port_type Virtual 71744 remote_ip 5.5.5.216 71746 username nazanin 71746 unique_id port 71746 terminate_cause User-Request 71746 bytes_out 17657 71746 bytes_in 38493 71746 station_ip 83.123.210.203 71746 port 15728907 71746 nas_port_type Virtual 71746 remote_ip 5.5.5.215 71750 username aminvpn 71750 unique_id port 71750 terminate_cause Lost-Carrier 71750 bytes_out 201316 71750 bytes_in 2347597 71750 station_ip 5.119.141.240 71750 port 15728913 71750 nas_port_type Virtual 71750 remote_ip 5.5.5.217 81042 username pouria 81042 unique_id port 81042 terminate_cause User-Request 81042 bytes_out 53831769 81042 bytes_in 1443493404 81042 station_ip 151.235.115.50 81042 port 15728976 81042 nas_port_type Virtual 81042 remote_ip 5.5.5.86 81052 username alirezazamani 81052 kill_reason Relative expiration date has reached 81052 unique_id port 81052 bytes_out 0 81052 bytes_in 0 81052 station_ip 37.153.179.16 81052 port 15728646 81052 nas_port_type Virtual 81054 username ahmadi 71754 username mobina 71754 unique_id port 71754 terminate_cause Lost-Carrier 71754 bytes_out 10955338 71754 bytes_in 170841279 71754 station_ip 5.219.210.181 71754 port 15728877 71754 nas_port_type Virtual 71754 remote_ip 5.5.5.220 71760 username rashidi 71760 unique_id port 71760 terminate_cause User-Request 71760 bytes_out 358221 71760 bytes_in 934913 71760 station_ip 5.119.95.54 71760 port 15728922 71760 nas_port_type Virtual 71760 remote_ip 5.5.5.210 71762 username iranmanesh 71762 unique_id port 71762 terminate_cause NAS-Error 71762 bytes_out 0 71762 bytes_in 342 71762 station_ip 5.114.2.118 71762 port 15728925 71762 nas_port_type Virtual 71762 remote_ip 5.5.5.208 71763 username alirezazamani 71763 unique_id port 71763 terminate_cause Lost-Carrier 71763 bytes_out 150488 71763 bytes_in 295860 71763 station_ip 5.119.121.26 71763 port 15728924 71763 nas_port_type Virtual 71763 remote_ip 5.5.5.214 71764 username aminvpn 71764 unique_id port 71764 terminate_cause Lost-Carrier 71764 bytes_out 204031 71764 bytes_in 1211289 71764 station_ip 109.125.162.202 71764 port 15728923 71764 nas_port_type Virtual 71764 remote_ip 5.5.5.209 71765 username dehghan 71765 unique_id port 71765 terminate_cause User-Request 71765 bytes_out 175068 71765 bytes_in 2918531 71765 station_ip 83.122.108.116 71765 port 15728927 71765 nas_port_type Virtual 71765 remote_ip 5.5.5.206 71912 username nazanin 71912 unique_id port 71912 terminate_cause User-Request 71912 bytes_out 0 71912 bytes_in 0 71912 station_ip 83.122.231.134 71912 port 15728714 71912 nas_port_type Virtual 71912 remote_ip 5.5.5.238 71913 username nazanin 71913 unique_id port 71913 terminate_cause User-Request 71913 bytes_out 0 71913 bytes_in 0 71913 station_ip 83.122.231.134 71913 port 15728715 71913 nas_port_type Virtual 71913 remote_ip 5.5.5.238 71914 username nazanin 71914 unique_id port 71914 terminate_cause User-Request 71914 bytes_out 0 71914 bytes_in 0 71914 station_ip 83.122.231.134 71914 port 15728716 71914 nas_port_type Virtual 71914 remote_ip 5.5.5.238 71758 username rashidi 71758 unique_id port 71758 terminate_cause User-Request 71758 bytes_out 0 71758 bytes_in 0 71758 station_ip 5.119.95.54 71758 port 15728920 71758 nas_port_type Virtual 71758 remote_ip 5.5.5.210 71759 username rashidi 71759 unique_id port 71759 terminate_cause User-Request 71759 bytes_out 0 71759 bytes_in 0 71759 station_ip 5.119.95.54 71759 port 15728921 71759 nas_port_type Virtual 71759 remote_ip 5.5.5.210 71761 username ksr 71761 unique_id port 71761 terminate_cause User-Request 71761 bytes_out 5830520 71761 bytes_in 147524421 71761 station_ip 5.233.80.219 71761 port 15728916 71761 nas_port_type Virtual 71761 remote_ip 5.5.5.232 71766 username dehghan 71766 unique_id port 71766 terminate_cause User-Request 71766 bytes_out 364588 71766 bytes_in 10437922 71766 station_ip 83.122.108.116 71766 port 15728928 71766 nas_port_type Virtual 71766 remote_ip 5.5.5.206 71915 username nazanin 71915 unique_id port 71915 terminate_cause User-Request 71915 bytes_out 0 71915 bytes_in 0 71915 station_ip 83.122.231.134 71915 port 15728717 71915 nas_port_type Virtual 71915 remote_ip 5.5.5.238 71916 username nazanin 71916 unique_id port 71916 terminate_cause User-Request 71916 bytes_out 0 71916 bytes_in 0 71916 station_ip 83.122.231.134 71916 port 15728718 71916 nas_port_type Virtual 71916 remote_ip 5.5.5.238 71920 username nazanin 71920 unique_id port 71920 terminate_cause User-Request 71920 bytes_out 0 71920 bytes_in 0 71920 station_ip 83.122.141.23 71920 port 15728722 71920 nas_port_type Virtual 71920 remote_ip 5.5.5.237 71922 username nazanin 71922 unique_id port 71922 terminate_cause User-Request 71922 bytes_out 26599 71922 bytes_in 40391 71922 station_ip 83.122.141.23 71922 port 15728724 71922 nas_port_type Virtual 71922 remote_ip 5.5.5.237 71925 username alinezhad 71925 unique_id port 71925 terminate_cause User-Request 71925 bytes_out 0 71925 bytes_in 0 71925 station_ip 5.202.13.61 71925 port 15728727 71925 nas_port_type Virtual 71925 remote_ip 5.5.5.236 71927 username alinezhad 71927 unique_id port 71927 terminate_cause User-Request 71927 bytes_out 0 71927 bytes_in 0 71927 station_ip 5.202.13.61 71927 port 15728728 71927 nas_port_type Virtual 71927 remote_ip 5.5.5.236 71931 username dehghan 71931 unique_id port 71931 terminate_cause User-Request 71931 bytes_out 789932 71931 bytes_in 30561590 71931 station_ip 83.122.33.52 71931 port 15728734 71931 nas_port_type Virtual 71931 remote_ip 5.5.5.232 71934 username alirezazamani 71934 unique_id port 71934 terminate_cause User-Request 71934 bytes_out 0 71934 bytes_in 0 71934 station_ip 5.119.211.7 71934 port 15728738 71934 nas_port_type Virtual 71934 remote_ip 5.5.5.247 71935 username alirezazamani 71935 unique_id port 71935 terminate_cause User-Request 71935 bytes_out 0 71935 bytes_in 0 71935 station_ip 5.119.211.7 71935 port 15728739 71935 nas_port_type Virtual 71935 remote_ip 5.5.5.247 71945 username alinezhad 71945 unique_id port 71945 terminate_cause User-Request 71945 bytes_out 0 71945 bytes_in 0 71945 station_ip 5.202.60.47 71945 port 15728748 71945 nas_port_type Virtual 71945 remote_ip 5.5.5.229 71946 username mobina 71946 unique_id port 71946 terminate_cause User-Request 71946 bytes_out 0 71946 bytes_in 0 71946 station_ip 5.124.103.169 71946 port 15728750 71946 nas_port_type Virtual 71946 remote_ip 5.5.5.227 71947 username nazanin 71947 unique_id port 71947 terminate_cause User-Request 71947 bytes_out 9752 71947 bytes_in 14240 71947 station_ip 83.122.141.23 71947 port 15728751 71947 nas_port_type Virtual 71947 remote_ip 5.5.5.237 71957 username mobina 71767 username alinezhad 71767 unique_id port 71767 terminate_cause User-Request 71767 bytes_out 0 71767 bytes_in 0 71767 station_ip 5.202.11.51 71767 port 15728930 71767 nas_port_type Virtual 71767 remote_ip 5.5.5.221 72726 kill_reason Another user logged on this global unique id 72726 mac 72726 bytes_out 0 72726 bytes_in 0 72726 station_ip 5.120.51.120 72726 port 1 72726 unique_id port 72729 username aminvpn 72729 kill_reason Another user logged on this global unique id 71774 username alinezhad 71774 unique_id port 71774 terminate_cause User-Request 71774 bytes_out 0 71774 bytes_in 0 71774 station_ip 5.202.11.51 71774 port 15728940 71774 nas_port_type Virtual 71774 remote_ip 5.5.5.221 71779 username alirezazamani 71779 unique_id port 71779 terminate_cause Lost-Carrier 71779 bytes_out 384553 71779 bytes_in 3742287 71779 station_ip 5.120.62.138 71779 port 15728938 71779 nas_port_type Virtual 71779 remote_ip 5.5.5.201 71782 username alirezazamani 71782 kill_reason Maximum number of concurrent logins reached 71782 unique_id port 71782 bytes_out 0 71782 bytes_in 0 71782 station_ip 5.119.121.26 71782 port 15728949 71782 nas_port_type Virtual 71785 username dehghan 71785 unique_id port 71785 terminate_cause User-Request 71785 bytes_out 136660 71785 bytes_in 2716444 71785 station_ip 83.122.93.52 71785 port 15728951 71785 nas_port_type Virtual 71785 remote_ip 5.5.5.198 71788 username ksr 71788 unique_id port 71788 terminate_cause User-Request 71788 bytes_out 1859533 71788 bytes_in 27666760 71788 station_ip 5.233.80.219 71788 port 15728935 71788 nas_port_type Virtual 71788 remote_ip 5.5.5.232 71789 username alinezhad 71789 unique_id port 71789 terminate_cause User-Request 71789 bytes_out 23153 71789 bytes_in 22075 71789 station_ip 5.202.11.51 71789 port 15728953 71789 nas_port_type Virtual 71789 remote_ip 5.5.5.221 71795 username alinezhad 71795 unique_id port 71795 terminate_cause User-Request 71795 bytes_out 0 71795 bytes_in 0 71795 station_ip 5.202.11.51 71795 port 15728962 71795 nas_port_type Virtual 71795 remote_ip 5.5.5.221 71804 username dehghan 71804 unique_id port 71804 terminate_cause User-Request 71804 bytes_out 0 71804 bytes_in 0 71804 station_ip 83.122.40.124 71804 port 15728971 71804 nas_port_type Virtual 71804 remote_ip 5.5.5.195 71805 username dehghan 71805 unique_id port 71805 terminate_cause User-Request 71805 bytes_out 856113 71805 bytes_in 28623701 71805 station_ip 83.122.40.124 71805 port 15728972 71805 nas_port_type Virtual 71805 remote_ip 5.5.5.195 71806 username dehghan 71806 unique_id port 71806 terminate_cause User-Request 71806 bytes_out 494530 71806 bytes_in 13777225 71806 station_ip 83.122.40.124 71806 port 15728973 71806 nas_port_type Virtual 71806 remote_ip 5.5.5.195 71809 username alinezhad 71809 unique_id port 71809 terminate_cause User-Request 71809 bytes_out 0 71809 bytes_in 0 71809 station_ip 37.129.225.15 71809 port 15728976 71809 nas_port_type Virtual 71809 remote_ip 5.5.5.194 71817 username mobina 71817 unique_id port 71817 terminate_cause Lost-Carrier 71817 bytes_out 3950709 71817 bytes_in 63671660 71817 station_ip 5.219.196.121 71817 port 15728959 71817 nas_port_type Virtual 71817 remote_ip 5.5.5.197 71819 username alinezhad 71819 unique_id port 71819 terminate_cause User-Request 71819 bytes_out 0 71819 bytes_in 0 71819 station_ip 83.122.245.206 71819 port 15728984 71819 nas_port_type Virtual 71819 remote_ip 5.5.5.191 71820 username alinezhad 71820 unique_id port 71820 terminate_cause User-Request 71820 bytes_out 0 71820 bytes_in 0 71820 station_ip 83.123.130.59 71820 port 15728986 71820 nas_port_type Virtual 71820 remote_ip 5.5.5.190 71768 username iranmanesh 71768 unique_id port 71768 terminate_cause Lost-Carrier 71768 bytes_out 335073 71768 bytes_in 2568387 71768 station_ip 46.225.209.166 71768 port 15728926 71768 nas_port_type Virtual 71768 remote_ip 5.5.5.207 72729 mac 72729 bytes_out 0 72729 bytes_in 0 72729 station_ip 5.120.51.120 72729 port 1 72729 unique_id port 72730 username aminvpn 72730 kill_reason Another user logged on this global unique id 72730 mac 71771 username alirezazamani 71771 unique_id port 71771 terminate_cause Lost-Carrier 71771 bytes_out 481428 71771 bytes_in 2589108 71771 station_ip 5.119.77.203 71771 port 15728933 71771 nas_port_type Virtual 71771 remote_ip 5.5.5.204 71775 username alirezazamani 71775 unique_id port 71775 terminate_cause Lost-Carrier 71775 bytes_out 70628 71775 bytes_in 159811 71775 station_ip 5.119.162.117 71775 port 15728936 71775 nas_port_type Virtual 71775 remote_ip 5.5.5.203 71776 username alirezazamani 71776 kill_reason Maximum number of concurrent logins reached 71776 unique_id port 71776 bytes_out 0 71776 bytes_in 0 71776 station_ip 5.120.62.138 71776 port 15728943 71776 nas_port_type Virtual 71777 username alirezazamani 71777 kill_reason Maximum number of concurrent logins reached 71777 unique_id port 71777 bytes_out 0 71777 bytes_in 0 71777 station_ip 5.120.62.138 71777 port 15728944 71777 nas_port_type Virtual 71778 username alirezazamani 71778 kill_reason Maximum number of concurrent logins reached 71778 unique_id port 71778 bytes_out 0 71778 bytes_in 0 71778 station_ip 5.120.62.138 71778 port 15728945 71778 nas_port_type Virtual 71780 username alirezazamani 71780 kill_reason Maximum number of concurrent logins reached 71780 unique_id port 71780 bytes_out 0 71780 bytes_in 0 71780 station_ip 5.119.121.26 71780 port 15728947 71780 nas_port_type Virtual 71781 username alirezazamani 71781 kill_reason Maximum number of concurrent logins reached 71781 unique_id port 71781 bytes_out 0 71781 bytes_in 0 71781 station_ip 5.119.121.26 71781 port 15728948 71781 nas_port_type Virtual 71783 username alirezazamani 71783 unique_id port 71783 terminate_cause User-Request 71783 bytes_out 96189 71783 bytes_in 174760 71783 station_ip 5.119.121.26 71783 port 15728946 71783 nas_port_type Virtual 71783 remote_ip 5.5.5.214 71784 username alirezazamani 71784 unique_id port 71784 terminate_cause User-Request 71784 bytes_out 0 71784 bytes_in 0 71784 station_ip 5.119.121.26 71784 port 15728950 71784 nas_port_type Virtual 71784 remote_ip 5.5.5.214 71790 username alinezhad 71790 unique_id port 71790 terminate_cause User-Request 71790 bytes_out 0 71790 bytes_in 0 71790 station_ip 5.202.11.51 71790 port 15728954 71790 nas_port_type Virtual 71790 remote_ip 5.5.5.221 71792 username aminsaeedi 71792 unique_id port 71792 terminate_cause User-Request 71792 bytes_out 0 71792 bytes_in 0 71792 station_ip 31.59.40.176 71792 port 15728957 71792 nas_port_type Virtual 71792 remote_ip 5.5.5.242 71793 username alirezazamani 71793 unique_id port 71793 terminate_cause User-Request 71793 bytes_out 1124515 71793 bytes_in 3813674 71793 station_ip 5.119.121.26 71793 port 15728955 71793 nas_port_type Virtual 71793 remote_ip 5.5.5.214 71798 username alinezhad 71798 unique_id port 71798 terminate_cause User-Request 71798 bytes_out 12538 71798 bytes_in 19936 71798 station_ip 5.202.11.51 71798 port 15728965 71798 nas_port_type Virtual 71798 remote_ip 5.5.5.221 71800 username rashidi 71800 unique_id port 71800 terminate_cause User-Request 71800 bytes_out 187182 71800 bytes_in 379024 71800 station_ip 83.122.158.151 71800 port 15728966 71800 nas_port_type Virtual 71800 remote_ip 5.5.5.196 71802 username rashidi 71802 unique_id port 71802 terminate_cause User-Request 71772 username alirezazamani 71772 unique_id port 71772 terminate_cause User-Request 71772 bytes_out 0 71772 bytes_in 0 71772 station_ip 113.203.43.221 71772 port 15728937 71772 nas_port_type Virtual 71772 remote_ip 5.5.5.202 71773 username mobina 71773 unique_id port 71773 terminate_cause User-Request 71773 bytes_out 127997 71773 bytes_in 2054434 71773 station_ip 5.123.208.162 71773 port 15728939 71773 nas_port_type Virtual 71773 remote_ip 5.5.5.200 71786 username alinezhad 71786 unique_id port 71786 terminate_cause User-Request 71786 bytes_out 77561 71786 bytes_in 178548 71786 station_ip 5.202.11.51 71786 port 15728941 71786 nas_port_type Virtual 71786 remote_ip 5.5.5.221 71787 username aminsaeedi 71787 unique_id port 71787 terminate_cause User-Request 71787 bytes_out 112036 71787 bytes_in 2034070 71787 station_ip 31.59.40.176 71787 port 15728952 71787 nas_port_type Virtual 71787 remote_ip 5.5.5.242 71791 username alinezhad 71791 unique_id port 71791 terminate_cause User-Request 71791 bytes_out 191507 71791 bytes_in 4025160 71791 station_ip 5.202.11.51 71791 port 15728956 71791 nas_port_type Virtual 71791 remote_ip 5.5.5.221 71794 username alirezazamani 71794 unique_id port 71794 terminate_cause User-Request 71794 bytes_out 231276 71794 bytes_in 1506840 71794 station_ip 5.119.121.26 71794 port 15728960 71794 nas_port_type Virtual 71794 remote_ip 5.5.5.214 71796 username alinezhad 71796 unique_id port 71796 terminate_cause User-Request 71796 bytes_out 7215 71796 bytes_in 5721 71796 station_ip 5.202.11.51 71796 port 15728964 71796 nas_port_type Virtual 71796 remote_ip 5.5.5.221 71797 username aminsaeedi 71797 unique_id port 71797 terminate_cause User-Request 71797 bytes_out 4289747 71797 bytes_in 135940307 71797 station_ip 31.59.40.176 71797 port 15728958 71797 nas_port_type Virtual 71797 remote_ip 5.5.5.242 71799 username alirezazamani 71799 unique_id port 71799 terminate_cause Lost-Carrier 71799 bytes_out 460389 71799 bytes_in 8233939 71799 station_ip 5.120.62.138 71799 port 15728961 71799 nas_port_type Virtual 71799 remote_ip 5.5.5.201 71801 username alinezhad 71801 unique_id port 71801 terminate_cause User-Request 71801 bytes_out 0 71801 bytes_in 0 71801 station_ip 5.202.11.51 71801 port 15728967 71801 nas_port_type Virtual 71801 remote_ip 5.5.5.221 71810 username dehghan 71810 unique_id port 71810 terminate_cause User-Request 71810 bytes_out 0 71810 bytes_in 0 71810 station_ip 83.122.40.124 71810 port 15728977 71810 nas_port_type Virtual 71810 remote_ip 5.5.5.195 71811 username aminsaeedi 71811 unique_id port 71811 terminate_cause User-Request 71811 bytes_out 260735 71811 bytes_in 1698251 71811 station_ip 31.59.40.176 71811 port 15728978 71811 nas_port_type Virtual 71811 remote_ip 5.5.5.242 71812 username alinezhad 71812 unique_id port 71812 terminate_cause User-Request 71812 bytes_out 6306 71812 bytes_in 4045 71812 station_ip 37.129.219.191 71812 port 15728979 71812 nas_port_type Virtual 71812 remote_ip 5.5.5.193 71814 username alinezhad 71814 unique_id port 71814 terminate_cause User-Request 71814 bytes_out 0 71814 bytes_in 0 71814 station_ip 37.129.106.153 71814 port 15728982 71814 nas_port_type Virtual 71814 remote_ip 5.5.5.192 71818 username iranmanesh 71818 unique_id port 71818 terminate_cause Lost-Carrier 71818 bytes_out 2931125 71818 bytes_in 92539216 71818 station_ip 5.114.2.118 71818 port 15728934 71818 nas_port_type Virtual 71818 remote_ip 5.5.5.208 71821 username alinezhad 71821 unique_id port 71821 terminate_cause User-Request 71821 bytes_out 11437 71821 bytes_in 51331 71821 station_ip 83.122.43.212 71821 port 15728987 71821 nas_port_type Virtual 71802 bytes_out 79454 71802 bytes_in 167783 71802 station_ip 83.122.158.151 71802 port 15728969 71802 nas_port_type Virtual 71802 remote_ip 5.5.5.196 71803 username alinezhad 71803 unique_id port 71803 terminate_cause User-Request 71803 bytes_out 213711 71803 bytes_in 4756124 71803 station_ip 5.202.11.51 71803 port 15728968 71803 nas_port_type Virtual 71803 remote_ip 5.5.5.221 71807 username dehghan 71807 unique_id port 71807 terminate_cause User-Request 71807 bytes_out 285637 71807 bytes_in 7137652 71807 station_ip 83.122.40.124 71807 port 15728974 71807 nas_port_type Virtual 71807 remote_ip 5.5.5.195 71808 username dehghan 71808 unique_id port 71808 terminate_cause User-Request 71808 bytes_out 123109 71808 bytes_in 1950144 71808 station_ip 83.122.40.124 71808 port 15728975 71808 nas_port_type Virtual 71808 remote_ip 5.5.5.195 71813 username alinezhad 71813 unique_id port 71813 terminate_cause User-Request 71813 bytes_out 0 71813 bytes_in 0 71813 station_ip 37.129.219.191 71813 port 15728980 71813 nas_port_type Virtual 71813 remote_ip 5.5.5.193 71815 username alinezhad 71815 unique_id port 71815 terminate_cause User-Request 71815 bytes_out 20082 71815 bytes_in 28090 71815 station_ip 37.129.106.153 71815 port 15728983 71815 nas_port_type Virtual 71815 remote_ip 5.5.5.192 72730 bytes_out 0 72730 bytes_in 0 72730 station_ip 5.120.51.120 72730 port 1 72730 unique_id port 72733 username aminvpn 72733 kill_reason Another user logged on this global unique id 72733 mac 72733 bytes_out 0 71826 username alinezhad 71826 unique_id port 71826 terminate_cause User-Request 71826 bytes_out 12399 71826 bytes_in 24040 71826 station_ip 113.203.116.154 71826 port 15728992 71826 nas_port_type Virtual 71826 remote_ip 5.5.5.186 71828 username alinezhad 71828 unique_id port 71828 terminate_cause User-Request 71828 bytes_out 5064 71828 bytes_in 7005 71828 station_ip 37.129.194.209 71828 port 15728994 71828 nas_port_type Virtual 71828 remote_ip 5.5.5.184 71833 username alirezazamani 71833 unique_id port 71833 terminate_cause User-Request 71833 bytes_out 4510526 71833 bytes_in 60670610 71833 station_ip 5.119.121.26 71833 port 15728963 71833 nas_port_type Virtual 71833 remote_ip 5.5.5.214 71917 username nazanin 71917 unique_id port 71917 terminate_cause User-Request 71917 bytes_out 17175 71917 bytes_in 32678 71917 station_ip 83.122.231.134 71917 port 15728719 71917 nas_port_type Virtual 71917 remote_ip 5.5.5.238 71919 username nazanin 71919 unique_id port 71919 terminate_cause User-Request 71919 bytes_out 0 71919 bytes_in 0 71919 station_ip 83.122.141.23 71919 port 15728721 71919 nas_port_type Virtual 71919 remote_ip 5.5.5.237 71921 username alinezhad 71921 unique_id port 71921 terminate_cause User-Request 71921 bytes_out 0 71921 bytes_in 0 71921 station_ip 5.202.13.61 71921 port 15728723 71921 nas_port_type Virtual 71921 remote_ip 5.5.5.236 71923 username alinezhad 71923 unique_id port 71923 terminate_cause User-Request 71923 bytes_out 0 71923 bytes_in 0 71923 station_ip 5.202.13.61 71923 port 15728725 71923 nas_port_type Virtual 71923 remote_ip 5.5.5.236 71930 username rashidi 71930 unique_id port 71930 terminate_cause User-Request 71930 bytes_out 182 71930 bytes_in 1459 71930 station_ip 83.122.198.154 71930 port 15728732 71930 nas_port_type Virtual 71930 remote_ip 5.5.5.234 71932 username nazanin 71932 unique_id port 71932 terminate_cause User-Request 71932 bytes_out 29938 71932 bytes_in 125456 71932 station_ip 83.122.141.23 71932 port 15728735 71932 nas_port_type Virtual 71932 remote_ip 5.5.5.237 71933 username alinezhad 71933 unique_id port 72733 bytes_in 0 71821 remote_ip 5.5.5.189 71822 username iranmanesh 71822 unique_id port 71822 terminate_cause Lost-Carrier 71822 bytes_out 288968 71822 bytes_in 727504 71822 station_ip 5.114.2.118 71822 port 15728985 71822 nas_port_type Virtual 71822 remote_ip 5.5.5.208 71823 username alinezhad 71823 unique_id port 71823 terminate_cause User-Request 71823 bytes_out 0 71823 bytes_in 0 71823 station_ip 83.122.113.209 71823 port 15728988 71823 nas_port_type Virtual 71823 remote_ip 5.5.5.188 71824 username alirezazamani 71824 unique_id port 71824 terminate_cause User-Request 71824 bytes_out 82758 71824 bytes_in 282528 71824 station_ip 83.122.152.183 71824 port 15728989 71824 nas_port_type Virtual 71824 remote_ip 5.5.5.187 71827 username alirezazamani 71827 unique_id port 71827 terminate_cause Lost-Carrier 71827 bytes_out 157820 71827 bytes_in 1599242 71827 station_ip 5.120.62.138 71827 port 15728990 71827 nas_port_type Virtual 71827 remote_ip 5.5.5.201 71918 username nazanin 71918 unique_id port 71918 terminate_cause User-Request 71918 bytes_out 0 71918 bytes_in 0 71918 station_ip 83.122.141.23 71918 port 15728720 71918 nas_port_type Virtual 71918 remote_ip 5.5.5.237 71924 username alinezhad 71924 unique_id port 71924 terminate_cause User-Request 71924 bytes_out 0 71924 bytes_in 0 71924 station_ip 5.202.13.61 71924 port 15728726 71924 nas_port_type Virtual 71924 remote_ip 5.5.5.236 71926 username alirezazamani 71926 unique_id port 71926 terminate_cause User-Request 71926 bytes_out 6651071 71926 bytes_in 114797527 71926 station_ip 5.119.211.7 71926 port 15728692 71926 nas_port_type Virtual 71926 remote_ip 5.5.5.247 71928 username alinezhad 71928 unique_id port 71928 terminate_cause User-Request 71928 bytes_out 0 71928 bytes_in 0 71928 station_ip 5.202.13.61 71928 port 15728730 71928 nas_port_type Virtual 71928 remote_ip 5.5.5.236 71929 username rashidi 71929 unique_id port 71929 terminate_cause User-Request 71929 bytes_out 42110 71929 bytes_in 102400 71929 station_ip 83.122.198.154 71929 port 15728731 71929 nas_port_type Virtual 71929 remote_ip 5.5.5.234 71937 username nazanin 71937 unique_id port 71937 terminate_cause User-Request 71937 bytes_out 0 71937 bytes_in 0 71937 station_ip 83.122.141.23 71937 port 15728741 71937 nas_port_type Virtual 71937 remote_ip 5.5.5.237 71940 username alinezhad 71940 unique_id port 71940 terminate_cause User-Request 71940 bytes_out 0 71940 bytes_in 0 71940 station_ip 5.202.60.47 71940 port 15728744 71940 nas_port_type Virtual 71940 remote_ip 5.5.5.229 71941 username mobina 71941 unique_id port 71941 terminate_cause Lost-Carrier 71941 bytes_out 4700122 71941 bytes_in 107616071 71941 station_ip 5.124.134.46 71941 port 15728729 71941 nas_port_type Virtual 71941 remote_ip 5.5.5.235 71942 username rashidi 71942 unique_id port 71942 terminate_cause User-Request 71942 bytes_out 12436297 71942 bytes_in 75208259 71942 station_ip 5.119.153.136 71942 port 15728733 71942 nas_port_type Virtual 71942 remote_ip 5.5.5.233 71943 username alinezhad 71943 unique_id port 71943 terminate_cause User-Request 71943 bytes_out 4511 71943 bytes_in 8400 71943 station_ip 5.202.60.47 71943 port 15728745 71943 nas_port_type Virtual 71943 remote_ip 5.5.5.229 71944 username alinezhad 71944 unique_id port 71944 terminate_cause User-Request 71944 bytes_out 0 71944 bytes_in 0 71944 station_ip 5.202.60.47 71944 port 15728747 71944 nas_port_type Virtual 71944 remote_ip 5.5.5.229 71949 username alirezazamani 71949 unique_id port 71949 terminate_cause Lost-Carrier 71949 bytes_out 578929 71949 bytes_in 12709707 71949 station_ip 5.120.65.70 71949 port 15728749 71949 nas_port_type Virtual 71825 username alirezazamani 71825 unique_id port 71825 terminate_cause User-Request 71825 bytes_out 144446 71825 bytes_in 2989963 71825 station_ip 83.122.152.183 71825 port 15728991 71825 nas_port_type Virtual 71825 remote_ip 5.5.5.187 71829 username alirezazamani 71829 unique_id port 71829 terminate_cause User-Request 71829 bytes_out 57423 71829 bytes_in 409235 71829 station_ip 83.122.152.183 71829 port 15728995 71829 nas_port_type Virtual 71829 remote_ip 5.5.5.187 71830 username alinezhad 71830 unique_id port 71830 terminate_cause User-Request 71830 bytes_out 0 71830 bytes_in 0 71830 station_ip 37.129.194.209 71830 port 15728996 71830 nas_port_type Virtual 71830 remote_ip 5.5.5.184 71831 username alinezhad 71831 unique_id port 71831 terminate_cause User-Request 71831 bytes_out 0 71831 bytes_in 0 71831 station_ip 37.129.194.209 71831 port 15728997 71831 nas_port_type Virtual 71831 remote_ip 5.5.5.184 71832 username alirezazamani 71832 unique_id port 71832 terminate_cause Lost-Carrier 71832 bytes_out 256516 71832 bytes_in 5568673 71832 station_ip 5.120.62.138 71832 port 15728993 71832 nas_port_type Virtual 71832 remote_ip 5.5.5.185 81043 username pouria 81043 unique_id port 81043 terminate_cause Lost-Carrier 81043 bytes_out 1668976 81043 bytes_in 42468263 81043 station_ip 151.235.115.50 81043 port 15728979 81043 nas_port_type Virtual 81043 remote_ip 5.5.5.86 71933 terminate_cause User-Request 71933 bytes_out 0 71933 bytes_in 0 71933 station_ip 37.129.219.48 71933 port 15728737 71933 nas_port_type Virtual 71933 remote_ip 5.5.5.230 71936 username iranmanesh 71936 unique_id port 71936 terminate_cause User-Request 71936 bytes_out 1369625 71936 bytes_in 7089520 71936 station_ip 5.114.2.118 71936 port 15728736 71936 nas_port_type Virtual 71936 remote_ip 5.5.5.231 71938 username nazanin 71938 unique_id port 71938 terminate_cause User-Request 71938 bytes_out 0 71938 bytes_in 0 71938 station_ip 83.122.141.23 71938 port 15728742 71938 nas_port_type Virtual 71938 remote_ip 5.5.5.237 71939 username nazanin 71939 unique_id port 71939 terminate_cause User-Request 71939 bytes_out 0 71939 bytes_in 0 71939 station_ip 83.122.141.23 71939 port 15728743 71939 nas_port_type Virtual 71939 remote_ip 5.5.5.237 71948 username ahmad 71948 unique_id port 71948 terminate_cause User-Request 71948 bytes_out 931345 71948 bytes_in 13966672 71948 station_ip 86.57.5.175 71948 port 15728746 71948 nas_port_type Virtual 71948 remote_ip 5.5.5.228 71954 username ahmad 71954 unique_id port 71954 terminate_cause User-Request 71954 bytes_out 299145 71954 bytes_in 1524188 71954 station_ip 86.57.5.175 71954 port 15728757 71954 nas_port_type Virtual 71954 remote_ip 5.5.5.228 71956 username alinezhad 71956 unique_id port 71956 terminate_cause User-Request 71956 bytes_out 26335 71956 bytes_in 320141 71956 station_ip 5.202.60.47 71956 port 15728762 71956 nas_port_type Virtual 71956 remote_ip 5.5.5.229 71960 username alirezazamani 71960 unique_id port 71960 terminate_cause Lost-Carrier 71960 bytes_out 253188 71960 bytes_in 6011348 71960 station_ip 5.120.65.70 71960 port 15728763 71960 nas_port_type Virtual 71960 remote_ip 5.5.5.239 71963 username alinezhad 71963 unique_id port 71963 terminate_cause User-Request 71963 bytes_out 3726 71963 bytes_in 1176 71963 station_ip 5.202.60.47 71963 port 15728768 71963 nas_port_type Virtual 71963 remote_ip 5.5.5.229 71964 username alinezhad 71964 unique_id port 71964 terminate_cause User-Request 71964 bytes_out 0 71964 bytes_in 0 71964 station_ip 5.202.60.47 71964 port 15728769 71964 nas_port_type Virtual 71964 remote_ip 5.5.5.229 71967 username alirezazamani 71835 username rashidi 71835 unique_id port 71835 terminate_cause User-Request 71835 bytes_out 29321641 71835 bytes_in 74423086 71835 station_ip 5.119.95.54 71835 port 15728970 71835 nas_port_type Virtual 71835 remote_ip 5.5.5.210 81044 username zoha 81044 unique_id port 81044 terminate_cause Lost-Carrier 81044 bytes_out 4543432 81044 bytes_in 114244263 81044 station_ip 5.119.142.76 81044 port 15728978 81044 nas_port_type Virtual 81044 remote_ip 5.5.5.153 71949 remote_ip 5.5.5.239 71950 username rashidi 71950 unique_id port 71950 terminate_cause Lost-Carrier 71950 bytes_out 554623 71950 bytes_in 15384475 71950 station_ip 5.119.153.136 71950 port 15728752 71950 nas_port_type Virtual 71950 remote_ip 5.5.5.233 71951 username alirezazamani 71951 unique_id port 71951 terminate_cause Lost-Carrier 71951 bytes_out 266792 71951 bytes_in 5615937 71951 station_ip 5.120.65.70 71951 port 15728753 71951 nas_port_type Virtual 71951 remote_ip 5.5.5.226 71952 username alirezazamani 71952 unique_id port 71952 terminate_cause Lost-Carrier 71952 bytes_out 1527860 71952 bytes_in 8459678 71952 station_ip 5.120.65.70 71952 port 15728755 71952 nas_port_type Virtual 71952 remote_ip 5.5.5.243 71953 username alirezazamani 71953 unique_id port 71953 terminate_cause User-Request 71953 bytes_out 895249 71953 bytes_in 15731908 71953 station_ip 94.241.183.22 71953 port 15728758 71953 nas_port_type Virtual 71953 remote_ip 5.5.5.224 71955 username alirezazamani 71955 unique_id port 71955 terminate_cause Lost-Carrier 71955 bytes_out 804805 71955 bytes_in 20077965 71955 station_ip 5.120.65.70 71955 port 15728759 71955 nas_port_type Virtual 71955 remote_ip 5.5.5.226 71958 username alinezhad 71958 unique_id port 71958 terminate_cause User-Request 71958 bytes_out 0 71958 bytes_in 0 71958 station_ip 5.202.60.47 71958 port 15728765 71958 nas_port_type Virtual 71958 remote_ip 5.5.5.229 71959 username alirezazamani 71959 unique_id port 71959 terminate_cause Lost-Carrier 71959 bytes_out 512358 71959 bytes_in 17524244 71959 station_ip 5.120.65.70 71959 port 15728760 71959 nas_port_type Virtual 71959 remote_ip 5.5.5.223 71962 username alinezhad 71962 unique_id port 71962 terminate_cause User-Request 71962 bytes_out 25753 71962 bytes_in 25610 71962 station_ip 5.202.60.47 71962 port 15728767 71962 nas_port_type Virtual 71962 remote_ip 5.5.5.229 71965 username alinezhad 71965 unique_id port 71965 terminate_cause User-Request 71965 bytes_out 0 71965 bytes_in 0 71965 station_ip 5.202.60.47 71965 port 15728772 71965 nas_port_type Virtual 71965 remote_ip 5.5.5.229 71968 username mobina 71968 unique_id port 71968 terminate_cause Lost-Carrier 71968 bytes_out 60869 71968 bytes_in 168651 71968 station_ip 5.123.122.82 71968 port 15728771 71968 nas_port_type Virtual 71968 remote_ip 5.5.5.219 71970 username alirezazamani 71970 unique_id port 71970 terminate_cause Lost-Carrier 71970 bytes_out 395387 71970 bytes_in 8006343 71970 station_ip 5.120.65.70 71970 port 15728766 71970 nas_port_type Virtual 71970 remote_ip 5.5.5.226 71974 username alirezazamani 71974 unique_id port 71974 terminate_cause User-Request 71974 bytes_out 0 71974 bytes_in 0 71974 station_ip 5.120.28.56 71974 port 15728778 71974 nas_port_type Virtual 71974 remote_ip 5.5.5.245 71975 username alirezazamani 71975 unique_id port 71975 terminate_cause User-Request 71975 bytes_out 0 71975 bytes_in 0 71975 station_ip 5.120.28.56 71975 port 15728780 71975 nas_port_type Virtual 71975 remote_ip 5.5.5.245 81045 username zamanialireza 81045 unique_id port 81045 terminate_cause Lost-Carrier 81045 bytes_out 20064739 81045 bytes_in 451824699 81045 station_ip 5.120.127.121 81045 port 15728975 71957 unique_id port 71957 terminate_cause User-Request 71957 bytes_out 342374 71957 bytes_in 9168121 71957 station_ip 5.123.48.129 71957 port 15728764 71957 nas_port_type Virtual 71957 remote_ip 5.5.5.221 71961 username rashidi 71961 unique_id port 71961 terminate_cause User-Request 71961 bytes_out 5590470 71961 bytes_in 180297357 71961 station_ip 5.119.2.92 71961 port 15728754 71961 nas_port_type Virtual 71961 remote_ip 5.5.5.225 71966 username alinezhad 71966 unique_id port 71966 terminate_cause User-Request 71966 bytes_out 0 71966 bytes_in 0 71966 station_ip 5.202.60.47 71966 port 15728773 71966 nas_port_type Virtual 71966 remote_ip 5.5.5.229 71971 username alinezhad 71971 unique_id port 71971 terminate_cause User-Request 71971 bytes_out 0 71971 bytes_in 0 71971 station_ip 5.202.60.47 71971 port 15728775 71971 nas_port_type Virtual 71971 remote_ip 5.5.5.229 71976 username alinezhad 71976 unique_id port 71976 terminate_cause User-Request 71976 bytes_out 0 71976 bytes_in 0 71976 station_ip 5.202.60.47 71976 port 15728781 71976 nas_port_type Virtual 71976 remote_ip 5.5.5.229 71977 username mobina 71977 unique_id port 71977 terminate_cause User-Request 71977 bytes_out 18672 71977 bytes_in 29908 71977 station_ip 5.124.65.58 71977 port 15728782 71977 nas_port_type Virtual 71977 remote_ip 5.5.5.216 71980 username nazanin 71980 unique_id port 71980 terminate_cause User-Request 71980 bytes_out 0 71980 bytes_in 0 71980 station_ip 83.122.141.23 71980 port 15728784 71980 nas_port_type Virtual 71980 remote_ip 5.5.5.237 71981 username alinezhad 71981 unique_id port 71981 terminate_cause User-Request 71981 bytes_out 0 71981 bytes_in 0 71981 station_ip 5.202.60.47 71981 port 15728786 71981 nas_port_type Virtual 71981 remote_ip 5.5.5.229 71984 username alirezazamani 71984 unique_id port 71984 terminate_cause User-Request 71984 bytes_out 465719 71984 bytes_in 3234824 71984 station_ip 5.120.28.56 71984 port 15728788 71984 nas_port_type Virtual 71984 remote_ip 5.5.5.245 71985 username ksr 71985 unique_id port 71985 terminate_cause User-Request 71985 bytes_out 5709808 71985 bytes_in 92514100 71985 station_ip 2.183.128.176 71985 port 15728779 71985 nas_port_type Virtual 71985 remote_ip 5.5.5.217 71987 username nazanin 71987 unique_id port 71987 terminate_cause User-Request 71987 bytes_out 15726 71987 bytes_in 35520 71987 station_ip 83.122.141.23 71987 port 15728791 71987 nas_port_type Virtual 71987 remote_ip 5.5.5.237 71992 username alirezazamani 71992 unique_id port 71992 terminate_cause Lost-Carrier 71992 bytes_out 236105 71992 bytes_in 1911606 71992 station_ip 5.120.65.70 71992 port 15728794 71992 nas_port_type Virtual 71992 remote_ip 5.5.5.223 72090 username nazanin 72090 unique_id port 72090 terminate_cause User-Request 72090 bytes_out 28582 72090 bytes_in 287829 72090 station_ip 113.203.7.229 72090 port 15728899 72090 nas_port_type Virtual 72090 remote_ip 5.5.5.172 72093 username goli 72093 unique_id port 72093 terminate_cause User-Request 72093 bytes_out 15808 72093 bytes_in 27847 72093 station_ip 83.123.189.154 72093 port 15728902 72093 nas_port_type Virtual 72093 remote_ip 5.5.5.171 72101 username alirezazamani 72101 unique_id port 72101 terminate_cause User-Request 72101 bytes_out 0 72101 bytes_in 0 72101 station_ip 5.119.123.221 72101 port 15728649 72101 nas_port_type Virtual 72101 remote_ip 5.5.5.251 72105 username alirezazamani 72105 unique_id port 72105 terminate_cause Lost-Carrier 72105 bytes_out 728186 72105 bytes_in 12725206 72105 station_ip 5.120.28.56 72105 port 15728651 72105 nas_port_type Virtual 72105 remote_ip 5.5.5.250 72106 username alinezhad 71967 unique_id port 71967 terminate_cause Lost-Carrier 71967 bytes_out 342732 71967 bytes_in 2621317 71967 station_ip 5.119.101.118 71967 port 15728770 71967 nas_port_type Virtual 71967 remote_ip 5.5.5.220 71969 username dehghan 71969 unique_id port 71969 terminate_cause User-Request 71969 bytes_out 38510 71969 bytes_in 247156 71969 station_ip 83.122.104.8 71969 port 15728774 71969 nas_port_type Virtual 71969 remote_ip 5.5.5.218 71972 username dehghan 71972 unique_id port 71972 terminate_cause User-Request 71972 bytes_out 265011 71972 bytes_in 6274254 71972 station_ip 83.122.104.8 71972 port 15728776 71972 nas_port_type Virtual 71972 remote_ip 5.5.5.218 71973 username alinezhad 71973 unique_id port 71973 terminate_cause User-Request 71973 bytes_out 0 71973 bytes_in 0 71973 station_ip 5.202.60.47 71973 port 15728777 71973 nas_port_type Virtual 71973 remote_ip 5.5.5.229 71979 username mobina 71979 unique_id port 71979 terminate_cause User-Request 71979 bytes_out 767527 71979 bytes_in 19220472 71979 station_ip 37.255.247.104 71979 port 15728783 71979 nas_port_type Virtual 71979 remote_ip 5.5.5.215 71982 username aminvpn 71982 unique_id port 71982 terminate_cause User-Request 71982 bytes_out 240096 71982 bytes_in 925013 71982 station_ip 78.39.29.73 71982 port 15728785 71982 nas_port_type Virtual 71982 remote_ip 5.5.5.214 71983 username alirezazamani 71983 unique_id port 71983 terminate_cause User-Request 71983 bytes_out 0 71983 bytes_in 0 71983 station_ip 5.120.28.56 71983 port 15728787 71983 nas_port_type Virtual 71983 remote_ip 5.5.5.245 71986 username mobina 71986 unique_id port 71986 terminate_cause User-Request 71986 bytes_out 0 71986 bytes_in 0 71986 station_ip 5.123.36.243 71986 port 15728790 71986 nas_port_type Virtual 71986 remote_ip 5.5.5.213 71991 username dehghan 71991 unique_id port 71991 terminate_cause User-Request 71991 bytes_out 59004 71991 bytes_in 1126079 71991 station_ip 83.122.23.252 71991 port 15728797 71991 nas_port_type Virtual 71991 remote_ip 5.5.5.212 72096 terminate_cause User-Request 72096 bytes_out 0 72096 bytes_in 0 72096 station_ip 5.124.37.61 72096 port 15728642 72096 nas_port_type Virtual 72096 remote_ip 5.5.5.254 72097 username alinezhad 72097 unique_id port 72097 terminate_cause User-Request 72097 bytes_out 0 72097 bytes_in 0 72097 station_ip 5.202.1.195 72097 port 15728643 72097 nas_port_type Virtual 72097 remote_ip 5.5.5.255 72098 username alinezhad 72098 unique_id port 72098 terminate_cause User-Request 72098 bytes_out 3299 72098 bytes_in 2702 72098 station_ip 5.202.1.195 72098 port 15728644 72098 nas_port_type Virtual 72098 remote_ip 5.5.5.255 72108 username nazanin 72108 unique_id port 72108 terminate_cause User-Request 72108 bytes_out 0 72108 bytes_in 0 72108 station_ip 113.203.7.229 72108 port 15728655 72108 nas_port_type Virtual 72108 remote_ip 5.5.5.249 72109 username nazanin 72109 unique_id port 72109 terminate_cause User-Request 72109 bytes_out 0 72109 bytes_in 0 72109 station_ip 113.203.7.229 72109 port 15728656 72109 nas_port_type Virtual 72109 remote_ip 5.5.5.249 72112 username alinezhad 72112 unique_id port 72112 terminate_cause User-Request 72112 bytes_out 14499 72112 bytes_in 29234 72112 station_ip 5.202.1.195 72112 port 15728659 72112 nas_port_type Virtual 72112 remote_ip 5.5.5.255 72113 username alinezhad 72113 unique_id port 72113 terminate_cause User-Request 72113 bytes_out 0 72113 bytes_in 0 72113 station_ip 5.202.1.195 72113 port 15728661 72113 nas_port_type Virtual 72113 remote_ip 5.5.5.255 72114 username goli 72114 unique_id port 72114 terminate_cause User-Request 81045 nas_port_type Virtual 81045 remote_ip 5.5.5.87 71988 username rashidi 71988 unique_id port 71988 terminate_cause User-Request 71988 bytes_out 0 71988 bytes_in 0 71988 station_ip 5.119.2.92 71988 port 15728792 71988 nas_port_type Virtual 71988 remote_ip 5.5.5.225 71989 username nazanin 71989 unique_id port 71989 terminate_cause User-Request 71989 bytes_out 39670 71989 bytes_in 240824 71989 station_ip 83.122.141.23 71989 port 15728793 71989 nas_port_type Virtual 71989 remote_ip 5.5.5.237 71990 username dehghan 71990 unique_id port 71990 terminate_cause User-Request 71990 bytes_out 49610 71990 bytes_in 257460 71990 station_ip 83.122.23.252 71990 port 15728795 71990 nas_port_type Virtual 71990 remote_ip 5.5.5.212 81046 username heydari 81046 unique_id port 81046 terminate_cause Lost-Carrier 81046 bytes_out 428098 81046 bytes_in 4511920 81046 station_ip 5.119.186.227 81046 port 15728969 81046 nas_port_type Virtual 81046 remote_ip 5.5.5.132 72103 nas_port_type Virtual 72103 remote_ip 5.5.5.255 72104 username alirezazamani 72104 unique_id port 72104 terminate_cause Lost-Carrier 72104 bytes_out 501701 72104 bytes_in 14817830 72104 station_ip 5.119.165.212 72104 port 15728647 72104 nas_port_type Virtual 72104 remote_ip 5.5.5.252 72110 username alinezhad 72110 unique_id port 72110 terminate_cause User-Request 72110 bytes_out 0 72110 bytes_in 0 72110 station_ip 5.202.1.195 72110 port 15728657 72110 nas_port_type Virtual 72110 remote_ip 5.5.5.255 72732 station_ip 5.120.51.120 72732 port 1 72732 unique_id port 72735 username aminvpn 72735 kill_reason Another user logged on this global unique id 72735 mac 72735 bytes_out 0 72735 bytes_in 0 81048 username madadi 72117 username alinezhad 72117 unique_id port 72117 terminate_cause User-Request 72117 bytes_out 0 72117 bytes_in 0 72117 station_ip 5.202.1.195 72117 port 15728665 72117 nas_port_type Virtual 72117 remote_ip 5.5.5.255 72122 username alinezhad 72122 unique_id port 72122 terminate_cause User-Request 72122 bytes_out 0 72122 bytes_in 0 72122 station_ip 5.202.1.195 72122 port 15728670 72122 nas_port_type Virtual 72122 remote_ip 5.5.5.255 72124 username alinezhad 72124 unique_id port 72124 terminate_cause User-Request 72124 bytes_out 0 72124 bytes_in 0 72124 station_ip 5.202.1.195 72124 port 15728672 72124 nas_port_type Virtual 72124 remote_ip 5.5.5.255 72125 username alinezhad 72125 unique_id port 72125 terminate_cause User-Request 72125 bytes_out 9257 72125 bytes_in 11819 72125 station_ip 5.202.1.195 72125 port 15728673 72125 nas_port_type Virtual 72125 remote_ip 5.5.5.255 72130 username alinezhad 72130 unique_id port 72130 terminate_cause User-Request 72130 bytes_out 14799 72130 bytes_in 129292 72130 station_ip 5.202.1.195 72130 port 15728679 72130 nas_port_type Virtual 72130 remote_ip 5.5.5.255 72134 username alinezhad 72134 unique_id port 72134 terminate_cause User-Request 72134 bytes_out 0 72134 bytes_in 0 72134 station_ip 5.202.1.195 72134 port 15728682 72134 nas_port_type Virtual 72134 remote_ip 5.5.5.255 72135 username alinezhad 72135 unique_id port 72135 terminate_cause User-Request 72135 bytes_out 0 72135 bytes_in 0 72135 station_ip 5.202.1.195 72135 port 15728685 72135 nas_port_type Virtual 72135 remote_ip 5.5.5.255 72138 username alirezazamani 72138 unique_id port 72138 terminate_cause User-Request 72138 bytes_out 0 72138 bytes_in 0 72138 station_ip 5.119.32.252 72138 port 15728688 72138 nas_port_type Virtual 72138 remote_ip 5.5.5.238 72140 username alirezazamani 72140 unique_id port 72140 terminate_cause User-Request 72140 bytes_out 0 72140 bytes_in 0 72140 station_ip 5.119.171.186 71994 username alinezhad 71994 unique_id port 71994 terminate_cause User-Request 71994 bytes_out 0 71994 bytes_in 0 71994 station_ip 5.202.60.47 71994 port 15728799 71994 nas_port_type Virtual 71994 remote_ip 5.5.5.229 72001 username alinezhad 72001 unique_id port 72001 terminate_cause User-Request 72001 bytes_out 0 72001 bytes_in 0 72001 station_ip 5.202.60.47 72001 port 15728806 72001 nas_port_type Virtual 72001 remote_ip 5.5.5.229 72005 username ksr 72005 unique_id port 72005 terminate_cause User-Request 72005 bytes_out 9236953 72005 bytes_in 122703829 72005 station_ip 2.183.128.176 72005 port 15728803 72005 nas_port_type Virtual 72005 remote_ip 5.5.5.217 72007 username alinezhad 72007 unique_id port 72007 terminate_cause User-Request 72007 bytes_out 0 72007 bytes_in 0 72007 station_ip 5.202.60.47 72007 port 15728812 72007 nas_port_type Virtual 72007 remote_ip 5.5.5.229 72008 username alinezhad 72008 unique_id port 72008 terminate_cause User-Request 72008 bytes_out 0 72008 bytes_in 0 72008 station_ip 5.202.60.47 72008 port 15728813 72008 nas_port_type Virtual 72008 remote_ip 5.5.5.229 72014 username alirezazamani 72014 unique_id port 72014 terminate_cause User-Request 72014 bytes_out 0 72014 bytes_in 0 72014 station_ip 5.120.28.56 72014 port 15728820 72014 nas_port_type Virtual 72014 remote_ip 5.5.5.206 72016 username alinezhad 72016 unique_id port 72016 terminate_cause User-Request 72016 bytes_out 0 72016 bytes_in 0 72016 station_ip 5.202.60.47 72016 port 15728822 72016 nas_port_type Virtual 72016 remote_ip 5.5.5.229 72017 username alinezhad 72017 unique_id port 72017 terminate_cause User-Request 72017 bytes_out 0 72017 bytes_in 0 72017 station_ip 113.203.105.14 72017 port 15728823 72017 nas_port_type Virtual 72017 remote_ip 5.5.5.204 72019 username alirezazamani 72019 unique_id port 72019 terminate_cause Lost-Carrier 72019 bytes_out 1115061 72019 bytes_in 26223698 72019 station_ip 5.119.220.133 72019 port 15728819 72019 nas_port_type Virtual 72019 remote_ip 5.5.5.207 72021 username aminvpn 72021 kill_reason Wrong password 72021 mac 72021 bytes_out 0 72021 bytes_in 0 72021 station_ip 5.119.164.246 72021 port 2 72021 unique_id port 72023 username aminvpn 72023 mac 72023 bytes_out 0 72023 bytes_in 0 72023 station_ip 5.119.164.246 72023 port 1 72023 unique_id port 72024 username alinezhad 72024 unique_id port 72024 terminate_cause User-Request 72024 bytes_out 0 72024 bytes_in 0 72024 station_ip 5.202.98.104 72024 port 15728829 72024 nas_port_type Virtual 72024 remote_ip 5.5.5.201 72733 station_ip 5.120.51.120 72733 port 1 72733 unique_id port 72736 username aminvpn 72736 kill_reason Another user logged on this global unique id 72736 mac 72736 bytes_out 0 72736 bytes_in 0 72736 station_ip 5.120.51.120 72029 username alinezhad 72029 unique_id port 72029 terminate_cause User-Request 72029 bytes_out 0 72029 bytes_in 0 72029 station_ip 83.122.245.118 72029 port 15728840 72029 nas_port_type Virtual 72029 remote_ip 5.5.5.199 72031 username alinezhad 72031 unique_id port 72031 terminate_cause User-Request 72031 bytes_out 0 72031 bytes_in 0 72031 station_ip 113.203.98.34 72031 port 15728841 72031 nas_port_type Virtual 72031 remote_ip 5.5.5.198 72035 username mobina 72035 unique_id port 72035 terminate_cause User-Request 72035 bytes_out 0 72035 bytes_in 0 72035 station_ip 5.123.176.52 72035 port 15728844 72035 nas_port_type Virtual 72035 remote_ip 5.5.5.196 72038 username alinezhad 72038 unique_id port 72038 terminate_cause User-Request 72038 bytes_out 4899 72038 bytes_in 4106 72736 port 1 71995 username alirezazamani 71995 unique_id port 71995 terminate_cause Lost-Carrier 71995 bytes_out 1054955 71995 bytes_in 22854850 71995 station_ip 5.120.65.70 71995 port 15728796 71995 nas_port_type Virtual 71995 remote_ip 5.5.5.211 71996 username alinezhad 71996 unique_id port 71996 terminate_cause User-Request 71996 bytes_out 52913 71996 bytes_in 184646 71996 station_ip 5.202.60.47 71996 port 15728804 71996 nas_port_type Virtual 71996 remote_ip 5.5.5.229 72000 username alirezazamani 72000 unique_id port 72000 terminate_cause Lost-Carrier 72000 bytes_out 1787494 72000 bytes_in 22157332 72000 station_ip 5.120.146.31 72000 port 15728761 72000 nas_port_type Virtual 72000 remote_ip 5.5.5.222 72003 username alirezazamani 72003 unique_id port 72003 terminate_cause User-Request 72003 bytes_out 0 72003 bytes_in 0 72003 station_ip 5.120.95.219 72003 port 15728808 72003 nas_port_type Virtual 72003 remote_ip 5.5.5.209 72004 username alinezhad 72004 unique_id port 72004 terminate_cause User-Request 72004 bytes_out 0 72004 bytes_in 0 72004 station_ip 5.202.60.47 72004 port 15728809 72004 nas_port_type Virtual 72004 remote_ip 5.5.5.229 72011 username alinezhad 72011 unique_id port 72011 terminate_cause User-Request 72011 bytes_out 0 72011 bytes_in 0 72011 station_ip 5.202.60.47 72011 port 15728816 72011 nas_port_type Virtual 72011 remote_ip 5.5.5.229 81047 username zoha 81047 unique_id port 81047 terminate_cause Lost-Carrier 81047 bytes_out 1220581 81047 bytes_in 19754103 81047 station_ip 5.119.142.76 81047 port 15728980 81047 nas_port_type Virtual 81047 remote_ip 5.5.5.153 72018 username aminvpn 72018 kill_reason Another user logged on this global unique id 72018 mac 72018 bytes_out 0 72018 bytes_in 0 72018 station_ip 5.119.164.246 72018 port 1 72018 unique_id port 72018 remote_ip 10.8.0.6 72020 username alirezazamani 72020 unique_id port 72020 terminate_cause User-Request 72020 bytes_out 96706 72020 bytes_in 133583 72020 station_ip 37.129.185.223 72020 port 15728824 72020 nas_port_type Virtual 72020 remote_ip 5.5.5.203 72022 username aminvpn 72022 kill_reason Wrong password 72022 mac 72022 bytes_out 0 72022 bytes_in 0 72022 station_ip 5.119.164.246 72022 port 2 72022 unique_id port 72034 username alinezhad 72034 unique_id port 72034 terminate_cause User-Request 72034 bytes_out 0 72034 bytes_in 0 72034 station_ip 37.129.160.115 72034 port 15728843 72034 nas_port_type Virtual 72034 remote_ip 5.5.5.197 72036 username alinezhad 72036 unique_id port 72036 terminate_cause User-Request 72036 bytes_out 0 72036 bytes_in 0 72036 station_ip 83.122.39.164 72036 port 15728845 72036 nas_port_type Virtual 72036 remote_ip 5.5.5.195 72037 username alinezhad 72037 unique_id port 72037 terminate_cause User-Request 72037 bytes_out 0 72037 bytes_in 0 72037 station_ip 113.203.103.231 72037 port 15728849 72037 nas_port_type Virtual 72037 remote_ip 5.5.5.194 72039 username aminvpn 72039 kill_reason Another user logged on this global unique id 72039 mac 72039 bytes_out 0 72039 bytes_in 0 72039 station_ip 5.119.164.246 72039 port 2 72039 unique_id port 72040 username alinezhad 72040 unique_id port 72040 terminate_cause User-Request 72040 bytes_out 2959 72040 bytes_in 5736 72040 station_ip 83.123.253.50 72040 port 15728851 72040 nas_port_type Virtual 72040 remote_ip 5.5.5.193 72041 username alirezazamani 72041 unique_id port 72041 terminate_cause Lost-Carrier 72041 bytes_out 3347542 72041 bytes_in 77765757 72041 station_ip 5.120.28.56 72041 port 15728842 72041 nas_port_type Virtual 72041 remote_ip 5.5.5.206 72045 username alirezazamani 72045 unique_id port 81049 username asadi 71997 username alirezazamani 71997 unique_id port 71997 terminate_cause Lost-Carrier 71997 bytes_out 941531 71997 bytes_in 23240385 71997 station_ip 5.120.65.70 71997 port 15728800 71997 nas_port_type Virtual 71997 remote_ip 5.5.5.223 71998 username iranmanesh 71998 unique_id port 71998 terminate_cause Lost-Carrier 71998 bytes_out 7366374 71998 bytes_in 93616860 71998 station_ip 5.114.2.118 71998 port 15728756 71998 nas_port_type Virtual 71998 remote_ip 5.5.5.231 71999 username alinezhad 71999 unique_id port 71999 terminate_cause User-Request 71999 bytes_out 18059 71999 bytes_in 194731 71999 station_ip 5.202.60.47 71999 port 15728805 71999 nas_port_type Virtual 71999 remote_ip 5.5.5.229 72002 username alinezhad 72002 unique_id port 72002 terminate_cause User-Request 72002 bytes_out 9967 72002 bytes_in 17385 72002 station_ip 5.202.60.47 72002 port 15728807 72002 nas_port_type Virtual 72002 remote_ip 5.5.5.229 72006 username alinezhad 72006 unique_id port 72006 terminate_cause User-Request 72006 bytes_out 23181 72006 bytes_in 34065 72006 station_ip 5.202.60.47 72006 port 15728811 72006 nas_port_type Virtual 72006 remote_ip 5.5.5.229 72009 username aminvpn 72009 unique_id port 72009 terminate_cause User-Request 72009 bytes_out 128099 72009 bytes_in 513585 72009 station_ip 78.39.29.73 72009 port 15728814 72009 nas_port_type Virtual 72009 remote_ip 5.5.5.214 72010 username alinezhad 72010 unique_id port 72010 terminate_cause User-Request 72010 bytes_out 0 72010 bytes_in 0 72010 station_ip 5.202.60.47 72010 port 15728815 72010 nas_port_type Virtual 72010 remote_ip 5.5.5.229 72012 username alinezhad 72012 unique_id port 72012 terminate_cause User-Request 72012 bytes_out 0 72012 bytes_in 0 72012 station_ip 5.202.60.47 72012 port 15728817 72012 nas_port_type Virtual 72012 remote_ip 5.5.5.229 72015 username alirezazamani 72015 unique_id port 72015 terminate_cause Lost-Carrier 72015 bytes_out 306674 72015 bytes_in 5838500 72015 station_ip 5.120.140.222 72015 port 15728818 72015 nas_port_type Virtual 72015 remote_ip 5.5.5.208 72026 username alirezazamani 72026 unique_id port 72026 terminate_cause User-Request 72026 bytes_out 1258820 72026 bytes_in 13253289 72026 station_ip 5.120.95.219 72026 port 15728810 72026 nas_port_type Virtual 72026 remote_ip 5.5.5.209 72027 username alinezhad 72027 unique_id port 72027 terminate_cause User-Request 72027 bytes_out 0 72027 bytes_in 0 72027 station_ip 5.202.98.104 72027 port 15728830 72027 nas_port_type Virtual 72027 remote_ip 5.5.5.201 72028 username aminvpn 72028 kill_reason Another user logged on this global unique id 72028 mac 72028 bytes_out 0 72028 bytes_in 0 72028 station_ip 5.119.164.246 72028 port 2 72028 unique_id port 72028 remote_ip 10.8.0.6 81048 unique_id port 81048 terminate_cause Admin-Reboot 81048 bytes_out 396200 81048 bytes_in 2536570 81048 station_ip 5.119.119.149 81048 port 15728984 81048 nas_port_type Virtual 81048 remote_ip 5.5.5.85 72032 username mobina 72032 unique_id port 72032 terminate_cause Lost-Carrier 72032 bytes_out 9184231 72032 bytes_in 202222310 72032 station_ip 5.123.25.250 72032 port 15728801 72032 nas_port_type Virtual 72032 remote_ip 5.5.5.210 72033 username alirezazamani 72033 unique_id port 72033 terminate_cause User-Request 72033 bytes_out 9684216 72033 bytes_in 166707850 72033 station_ip 5.120.28.56 72033 port 15728802 72033 nas_port_type Virtual 72033 remote_ip 5.5.5.245 72042 username alinezhad 72042 unique_id port 72042 terminate_cause User-Request 72042 bytes_out 0 72042 bytes_in 0 72042 station_ip 83.122.206.75 72042 port 15728853 72042 nas_port_type Virtual 72042 remote_ip 5.5.5.192 72038 station_ip 113.203.103.231 72038 port 15728850 72038 nas_port_type Virtual 72038 remote_ip 5.5.5.194 72046 username ahmad 72046 unique_id port 72046 terminate_cause User-Request 72046 bytes_out 219599 72046 bytes_in 1589235 72046 station_ip 86.57.23.233 72046 port 15728859 72046 nas_port_type Virtual 72046 remote_ip 5.5.5.186 72048 username alirezazamani 72048 unique_id port 72048 terminate_cause Lost-Carrier 72048 bytes_out 91593 72048 bytes_in 172597 72048 station_ip 5.119.189.212 72048 port 15728860 72048 nas_port_type Virtual 72048 remote_ip 5.5.5.185 72052 username alinezhad 72052 unique_id port 72052 terminate_cause User-Request 72052 bytes_out 0 72052 bytes_in 0 72052 station_ip 5.202.98.104 72052 port 15728865 72052 nas_port_type Virtual 72052 remote_ip 5.5.5.201 72053 username alinezhad 72053 unique_id port 72053 terminate_cause User-Request 72053 bytes_out 0 72053 bytes_in 0 72053 station_ip 5.202.98.104 72053 port 15728866 72053 nas_port_type Virtual 72053 remote_ip 5.5.5.201 72060 username alinezhad 72060 unique_id port 72060 terminate_cause User-Request 72060 bytes_out 16871 72060 bytes_in 149087 72060 station_ip 5.202.3.253 72060 port 15728873 72060 nas_port_type Virtual 72060 remote_ip 5.5.5.179 72061 username rashidi 72061 unique_id port 72061 terminate_cause User-Request 72061 bytes_out 400 72061 bytes_in 1390 72061 station_ip 5.120.20.30 72061 port 15728874 72061 nas_port_type Virtual 72061 remote_ip 5.5.5.188 72063 username alinezhad 72063 unique_id port 72063 terminate_cause User-Request 72063 bytes_out 0 72063 bytes_in 0 72063 station_ip 5.202.3.253 72063 port 15728876 72063 nas_port_type Virtual 72063 remote_ip 5.5.5.179 72066 username mobina 72066 unique_id port 72066 terminate_cause User-Request 72066 bytes_out 0 72066 bytes_in 0 72066 station_ip 5.123.190.161 72066 port 15728879 72066 nas_port_type Virtual 72066 remote_ip 5.5.5.180 72068 username mobina 72068 unique_id port 72068 terminate_cause User-Request 72068 bytes_out 0 72068 bytes_in 0 72068 station_ip 5.123.190.161 72068 port 15728881 72068 nas_port_type Virtual 72068 remote_ip 5.5.5.180 72070 username iranmanesh 72070 unique_id port 72070 terminate_cause Lost-Carrier 72070 bytes_out 5128956 72070 bytes_in 92646219 72070 station_ip 5.113.219.214 72070 port 15728821 72070 nas_port_type Virtual 72070 remote_ip 5.5.5.205 81049 unique_id port 81049 terminate_cause User-Request 81049 bytes_out 125541 81049 bytes_in 1079839 81049 station_ip 113.203.49.19 81049 port 15728641 81049 nas_port_type Virtual 81049 remote_ip 5.5.5.254 81073 username asadi 81073 unique_id port 81073 terminate_cause User-Request 81073 bytes_out 248030 81073 bytes_in 3591732 81073 station_ip 113.203.49.19 81073 port 15728667 81073 nas_port_type Virtual 81073 remote_ip 5.5.5.254 81075 username asadi 72078 username alirezazamani 72078 unique_id port 72078 terminate_cause Lost-Carrier 72078 bytes_out 2089889 72078 bytes_in 1970033 72078 station_ip 5.119.165.212 72078 port 15728887 72078 nas_port_type Virtual 72078 remote_ip 5.5.5.174 72106 unique_id port 72106 terminate_cause User-Request 72106 bytes_out 0 72106 bytes_in 0 72106 station_ip 5.202.1.195 72106 port 15728653 72106 nas_port_type Virtual 72106 remote_ip 5.5.5.255 72107 username nazanin 72107 unique_id port 72107 terminate_cause User-Request 72107 bytes_out 0 72107 bytes_in 0 72107 station_ip 113.203.7.229 72107 port 15728654 72107 nas_port_type Virtual 72107 remote_ip 5.5.5.249 72111 username nazanin 72111 unique_id port 72111 terminate_cause User-Request 72111 bytes_out 0 72111 bytes_in 0 72111 station_ip 113.203.7.229 72043 username alirezazamani 72043 unique_id port 72043 terminate_cause Lost-Carrier 72043 bytes_out 656929 72043 bytes_in 6285122 72043 station_ip 5.120.166.123 72043 port 15728854 72043 nas_port_type Virtual 72043 remote_ip 5.5.5.191 72044 username alirezazamani 72044 unique_id port 72044 terminate_cause Lost-Carrier 72044 bytes_out 85818 72044 bytes_in 195356 72044 station_ip 5.120.127.246 72044 port 15728855 72044 nas_port_type Virtual 72044 remote_ip 5.5.5.190 72049 username alirezazamani 72049 unique_id port 72049 terminate_cause Lost-Carrier 72049 bytes_out 45499 72049 bytes_in 132124 72049 station_ip 5.119.1.145 72049 port 15728861 72049 nas_port_type Virtual 72049 remote_ip 5.5.5.184 72050 username aminvpn 72050 mac 72050 bytes_out 0 72050 bytes_in 0 72050 station_ip 5.119.164.246 72050 port 2 72050 unique_id port 72054 username goli 72054 unique_id port 72054 terminate_cause User-Request 72054 bytes_out 75252 72054 bytes_in 305922 72054 station_ip 83.123.240.170 72054 port 15728867 72054 nas_port_type Virtual 72054 remote_ip 5.5.5.181 72055 username mobina 72055 unique_id port 72055 terminate_cause User-Request 72055 bytes_out 0 72055 bytes_in 0 72055 station_ip 5.123.190.161 72055 port 15728868 72055 nas_port_type Virtual 72055 remote_ip 5.5.5.180 72057 username alinezhad 72057 unique_id port 72057 terminate_cause User-Request 72057 bytes_out 10315 72057 bytes_in 18787 72057 station_ip 5.202.3.253 72057 port 15728870 72057 nas_port_type Virtual 72057 remote_ip 5.5.5.179 72058 username rashidi 72058 unique_id port 72058 terminate_cause User-Request 72058 bytes_out 8532495 72058 bytes_in 24016958 72058 station_ip 5.120.20.30 72058 port 15728857 72058 nas_port_type Virtual 72058 remote_ip 5.5.5.188 72059 username alinezhad 72059 unique_id port 72059 terminate_cause User-Request 72059 bytes_out 15884 72059 bytes_in 13538 72059 station_ip 5.202.3.253 72059 port 15728872 72059 nas_port_type Virtual 72059 remote_ip 5.5.5.179 72064 username alinezhad 72064 unique_id port 72064 terminate_cause User-Request 72064 bytes_out 0 72064 bytes_in 0 72064 station_ip 5.202.3.253 72064 port 15728877 72064 nas_port_type Virtual 72064 remote_ip 5.5.5.179 72067 username alinezhad 72067 unique_id port 72067 terminate_cause User-Request 72067 bytes_out 0 72067 bytes_in 0 72067 station_ip 83.122.72.186 72067 port 15728880 72067 nas_port_type Virtual 72067 remote_ip 5.5.5.178 72069 username alinezhad 72069 unique_id port 72069 terminate_cause User-Request 72069 bytes_out 0 72069 bytes_in 0 72069 station_ip 83.122.109.46 72069 port 15728882 72069 nas_port_type Virtual 72069 remote_ip 5.5.5.177 72076 username alirezazamani 72076 unique_id port 72076 terminate_cause Lost-Carrier 72076 bytes_out 763906 72076 bytes_in 15150904 72076 station_ip 5.119.207.239 72076 port 15728884 72076 nas_port_type Virtual 72076 remote_ip 5.5.5.175 72111 port 15728658 72111 nas_port_type Virtual 72111 remote_ip 5.5.5.249 72118 username mobina 72118 unique_id port 72118 terminate_cause User-Request 72118 bytes_out 487792 72118 bytes_in 14937006 72118 station_ip 5.123.2.141 72118 port 15728666 72118 nas_port_type Virtual 72118 remote_ip 5.5.5.245 72126 username alinezhad 72126 unique_id port 72126 terminate_cause User-Request 72126 bytes_out 2825 72126 bytes_in 2106 72126 station_ip 5.202.1.195 72126 port 15728674 72126 nas_port_type Virtual 72126 remote_ip 5.5.5.255 72131 username alirezazamani 72131 unique_id port 72131 terminate_cause Lost-Carrier 72131 bytes_out 1795305 72131 bytes_in 8030146 72131 station_ip 5.119.0.109 72131 port 15728667 72131 nas_port_type Virtual 72045 terminate_cause Lost-Carrier 72045 bytes_out 579020 72045 bytes_in 11736640 72045 station_ip 5.119.155.111 72045 port 15728856 72045 nas_port_type Virtual 72045 remote_ip 5.5.5.189 81050 username forozande 81050 unique_id port 81050 terminate_cause User-Request 81050 bytes_out 388375 81050 bytes_in 3101536 81050 station_ip 83.123.187.3 81050 port 15728644 81050 nas_port_type Virtual 81050 remote_ip 5.5.5.251 72051 username alirezazamani 72051 unique_id port 72051 terminate_cause User-Request 72051 bytes_out 102086 72051 bytes_in 402913 72051 station_ip 5.119.88.188 72051 port 15728863 72051 nas_port_type Virtual 72051 remote_ip 5.5.5.182 72056 username alinezhad 72056 unique_id port 72056 terminate_cause User-Request 72056 bytes_out 0 72056 bytes_in 0 72056 station_ip 5.202.3.253 72056 port 15728869 72056 nas_port_type Virtual 72056 remote_ip 5.5.5.179 72062 username ahmad 72062 unique_id port 72062 terminate_cause User-Request 72062 bytes_out 762611 72062 bytes_in 11940218 72062 station_ip 86.57.23.233 72062 port 15728871 72062 nas_port_type Virtual 72062 remote_ip 5.5.5.186 72065 username alinezhad 72065 unique_id port 72065 terminate_cause User-Request 72065 bytes_out 0 72065 bytes_in 0 72065 station_ip 5.202.3.253 72065 port 15728878 72065 nas_port_type Virtual 72065 remote_ip 5.5.5.179 72071 username alirezazamani 72071 unique_id port 72071 terminate_cause User-Request 72071 bytes_out 3503361 72071 bytes_in 38345881 72071 station_ip 5.120.28.56 72071 port 15728864 72071 nas_port_type Virtual 72071 remote_ip 5.5.5.206 81053 username asadi 81053 unique_id port 81053 terminate_cause User-Request 81053 bytes_out 63928 81053 bytes_in 2992484 81053 station_ip 113.203.49.19 81053 port 15728647 81053 nas_port_type Virtual 81053 remote_ip 5.5.5.254 72074 username mobina 72074 unique_id port 72074 terminate_cause User-Request 72074 bytes_out 0 72074 bytes_in 0 72074 station_ip 5.123.190.161 72074 port 15728886 72074 nas_port_type Virtual 72074 remote_ip 5.5.5.180 72075 username rashidi 72075 unique_id port 72075 terminate_cause User-Request 72075 bytes_out 24247337 72075 bytes_in 48183725 72075 station_ip 5.120.20.30 72075 port 15728875 72075 nas_port_type Virtual 72075 remote_ip 5.5.5.188 72079 username alirezazamani 72079 unique_id port 72079 terminate_cause Lost-Carrier 72079 bytes_out 244860 72079 bytes_in 4876886 72079 station_ip 5.119.165.212 72079 port 15728888 72079 nas_port_type Virtual 72079 remote_ip 5.5.5.174 72080 username alirezazamani 72080 unique_id port 72080 terminate_cause Lost-Carrier 72080 bytes_out 76597 72080 bytes_in 406663 72080 station_ip 5.119.165.212 72080 port 15728889 72080 nas_port_type Virtual 72080 remote_ip 5.5.5.174 72114 bytes_out 19811 72114 bytes_in 28330 72114 station_ip 83.122.72.236 72114 port 15728662 72114 nas_port_type Virtual 72114 remote_ip 5.5.5.247 72734 kill_reason Another user logged on this global unique id 72734 mac 72734 bytes_out 0 72734 bytes_in 0 72734 station_ip 5.120.51.120 72734 port 1 72734 unique_id port 72737 username aminvpn 72866 terminate_cause User-Request 72119 username alirezazamani 72119 unique_id port 72119 terminate_cause User-Request 72119 bytes_out 6415577 72119 bytes_in 172603068 72119 station_ip 5.119.123.221 72119 port 15728650 72119 nas_port_type Virtual 72119 remote_ip 5.5.5.251 72120 username alinezhad 72120 unique_id port 72120 terminate_cause User-Request 72120 bytes_out 0 72120 bytes_in 0 72120 station_ip 5.202.1.195 72120 port 15728668 72120 nas_port_type Virtual 72120 remote_ip 5.5.5.255 72121 username dehghan 72121 unique_id port 72121 terminate_cause User-Request 72121 bytes_out 162465 72121 bytes_in 3009199 72121 station_ip 113.203.88.165 72121 port 15728669 72121 nas_port_type Virtual 72121 remote_ip 5.5.5.243 72123 username dehghan 72123 unique_id port 72123 terminate_cause User-Request 72123 bytes_out 62080 72123 bytes_in 615450 72123 station_ip 113.203.88.165 72123 port 15728671 72123 nas_port_type Virtual 72123 remote_ip 5.5.5.243 72127 username dehghan 72127 unique_id port 72127 terminate_cause User-Request 72127 bytes_out 240362 72127 bytes_in 6368671 72127 station_ip 113.203.9.173 72127 port 15728675 72127 nas_port_type Virtual 72127 remote_ip 5.5.5.242 72128 username alinezhad 72128 unique_id port 72128 terminate_cause User-Request 72128 bytes_out 0 72128 bytes_in 0 72128 station_ip 5.202.1.195 72128 port 15728676 72128 nas_port_type Virtual 72128 remote_ip 5.5.5.255 72129 username mohammadi 72129 kill_reason Wrong password 72129 unique_id port 72129 bytes_out 0 72129 bytes_in 0 72129 station_ip 46.225.210.224 72129 port 15728678 72129 nas_port_type Virtual 72133 username nazanin 72133 unique_id port 72133 terminate_cause User-Request 72133 bytes_out 0 72133 bytes_in 0 72133 station_ip 113.203.7.229 72133 port 15728683 72133 nas_port_type Virtual 72133 remote_ip 5.5.5.249 72136 username alirezazamani 72136 unique_id port 72136 terminate_cause Lost-Carrier 72136 bytes_out 313594 72136 bytes_in 1129833 72136 station_ip 5.119.165.212 72136 port 15728680 72136 nas_port_type Virtual 72136 remote_ip 5.5.5.252 72142 username alinezhad 72142 unique_id port 72142 terminate_cause User-Request 72142 bytes_out 0 72142 bytes_in 0 72142 station_ip 5.202.1.195 72142 port 15728694 72142 nas_port_type Virtual 72142 remote_ip 5.5.5.255 72143 username alirezazamani 72143 unique_id port 72143 terminate_cause User-Request 72143 bytes_out 2882651 72143 bytes_in 175939 72143 station_ip 5.119.32.252 72143 port 15728690 72143 nas_port_type Virtual 72143 remote_ip 5.5.5.238 72145 username alirezazamani 72145 unique_id port 72145 terminate_cause Lost-Carrier 72145 bytes_out 188178 72145 bytes_in 928238 72145 station_ip 5.119.171.186 72145 port 15728693 72145 nas_port_type Virtual 72145 remote_ip 5.5.5.237 72146 username alinezhad 72146 unique_id port 72146 terminate_cause User-Request 72146 bytes_out 0 72146 bytes_in 0 72146 station_ip 5.202.1.195 72146 port 15728696 72146 nas_port_type Virtual 72146 remote_ip 5.5.5.255 72148 username alinezhad 72148 unique_id port 72148 terminate_cause User-Request 72148 bytes_out 0 72148 bytes_in 0 72148 station_ip 5.202.1.195 72148 port 15728697 72148 nas_port_type Virtual 72148 remote_ip 5.5.5.255 72151 username alinezhad 72151 unique_id port 72151 terminate_cause User-Request 72151 bytes_out 67969 72151 bytes_in 667163 72151 station_ip 5.202.1.195 72151 port 15728700 72151 nas_port_type Virtual 72151 remote_ip 5.5.5.255 72152 username alinezhad 72152 unique_id port 72152 terminate_cause User-Request 72152 bytes_out 0 72152 bytes_in 0 72152 station_ip 5.202.1.195 72152 port 15728701 72152 nas_port_type Virtual 72152 remote_ip 5.5.5.255 72153 username alinezhad 72153 unique_id port 72153 terminate_cause User-Request 72153 bytes_out 0 72153 bytes_in 0 72153 station_ip 5.202.1.195 72153 port 15728706 72153 nas_port_type Virtual 72153 remote_ip 5.5.5.255 72155 username alirezazamani 72155 unique_id port 72155 terminate_cause User-Request 72155 bytes_out 106855 72155 bytes_in 471316 72155 station_ip 37.129.205.104 72155 port 15728708 72155 nas_port_type Virtual 72155 remote_ip 5.5.5.232 72156 username alirezazamani 72156 unique_id port 72156 terminate_cause User-Request 72156 bytes_out 0 72156 bytes_in 0 72131 remote_ip 5.5.5.244 72132 username nazanin 72132 unique_id port 72132 terminate_cause User-Request 72132 bytes_out 0 72132 bytes_in 0 72132 station_ip 113.203.7.229 72132 port 15728681 72132 nas_port_type Virtual 72132 remote_ip 5.5.5.249 72137 username alirezazamani 72137 unique_id port 72137 terminate_cause User-Request 72137 bytes_out 43417 72137 bytes_in 310714 72137 station_ip 5.119.32.252 72137 port 15728687 72137 nas_port_type Virtual 72137 remote_ip 5.5.5.238 72139 username alirezazamani 72139 unique_id port 72139 terminate_cause Lost-Carrier 72139 bytes_out 311343 72139 bytes_in 123964 72139 station_ip 5.119.165.212 72139 port 15728684 72139 nas_port_type Virtual 72139 remote_ip 5.5.5.240 72141 username alirezazamani 72141 unique_id port 72141 terminate_cause Lost-Carrier 72141 bytes_out 1001080 72141 bytes_in 461186 72141 station_ip 5.119.32.252 72141 port 15728686 72141 nas_port_type Virtual 72141 remote_ip 5.5.5.239 72144 username alirezazamani 72144 unique_id port 72144 terminate_cause Lost-Carrier 72144 bytes_out 401378 72144 bytes_in 5504438 72144 station_ip 5.119.123.221 72144 port 15728691 72144 nas_port_type Virtual 72144 remote_ip 5.5.5.251 72147 username mobina 72147 unique_id port 72147 terminate_cause Lost-Carrier 72147 bytes_out 26640 72147 bytes_in 56225 72147 station_ip 5.124.146.95 72147 port 15728695 72147 nas_port_type Virtual 72147 remote_ip 5.5.5.236 72149 username alinezhad 72149 unique_id port 72149 terminate_cause User-Request 72149 bytes_out 24735 72149 bytes_in 173471 72149 station_ip 5.202.1.195 72149 port 15728698 72149 nas_port_type Virtual 72149 remote_ip 5.5.5.255 72157 username alirezazamani 72157 unique_id port 72157 terminate_cause User-Request 72157 bytes_out 32338 72157 bytes_in 56212 72157 station_ip 37.129.205.104 72157 port 15728710 72157 nas_port_type Virtual 72157 remote_ip 5.5.5.232 72158 username alirezazamani 72158 unique_id port 72158 terminate_cause User-Request 72158 bytes_out 123107 72158 bytes_in 552457 72158 station_ip 37.129.205.104 72158 port 15728711 72158 nas_port_type Virtual 72158 remote_ip 5.5.5.232 72163 username iranmanesh 72163 unique_id port 72163 terminate_cause Lost-Carrier 72163 bytes_out 3874612 72163 bytes_in 44999709 72163 station_ip 5.113.157.250 72163 port 15728660 72163 nas_port_type Virtual 72163 remote_ip 5.5.5.248 72169 username aminvpn 72169 unique_id port 72169 terminate_cause User-Request 72169 bytes_out 0 72169 bytes_in 0 72169 station_ip 78.39.29.73 72169 port 15728723 72169 nas_port_type Virtual 72169 remote_ip 5.5.5.230 72171 username alinezhad 72171 unique_id port 72171 terminate_cause User-Request 72171 bytes_out 0 72171 bytes_in 0 72171 station_ip 5.202.1.195 72171 port 15728729 72171 nas_port_type Virtual 72171 remote_ip 5.5.5.255 72172 username mobina 72172 unique_id port 72172 terminate_cause User-Request 72172 bytes_out 0 72172 bytes_in 0 72172 station_ip 5.124.138.123 72172 port 15728730 72172 nas_port_type Virtual 72172 remote_ip 5.5.5.227 72174 username alirezazamani 72174 unique_id port 72174 terminate_cause Lost-Carrier 72174 bytes_out 271876 72174 bytes_in 1299921 72174 station_ip 5.119.32.252 72174 port 15728725 72174 nas_port_type Virtual 72174 remote_ip 5.5.5.238 72176 username nazanin 72176 unique_id port 72176 terminate_cause User-Request 72176 bytes_out 42622 72176 bytes_in 215895 72176 station_ip 37.129.41.170 72176 port 15728732 72176 nas_port_type Virtual 72176 remote_ip 5.5.5.228 72267 username mobina 72267 unique_id port 72267 terminate_cause Lost-Carrier 72267 bytes_out 48174 72267 bytes_in 140483 72267 station_ip 5.123.5.159 72267 port 15728826 72140 port 15728692 72140 nas_port_type Virtual 72140 remote_ip 5.5.5.237 72150 username mobina 72150 unique_id port 72150 terminate_cause User-Request 72150 bytes_out 0 72150 bytes_in 0 72150 station_ip 5.123.58.94 72150 port 15728699 72150 nas_port_type Virtual 72150 remote_ip 5.5.5.235 72154 username alirezazamani 72154 unique_id port 72154 terminate_cause User-Request 72154 bytes_out 169882 72154 bytes_in 2445807 72154 station_ip 31.57.142.215 72154 port 15728705 72154 nas_port_type Virtual 72154 remote_ip 5.5.5.233 72161 username alinezhad 72161 unique_id port 72161 terminate_cause User-Request 72161 bytes_out 62842 72161 bytes_in 131779 72161 station_ip 5.202.1.195 72161 port 15728713 72161 nas_port_type Virtual 72161 remote_ip 5.5.5.255 72165 username alinezhad 72165 unique_id port 72165 terminate_cause User-Request 72165 bytes_out 0 72165 bytes_in 0 72165 station_ip 5.202.1.195 72165 port 15728718 72165 nas_port_type Virtual 72165 remote_ip 5.5.5.255 72173 username aminvpn 72173 unique_id port 72173 terminate_cause Lost-Carrier 72173 bytes_out 1391269 72173 bytes_in 34838112 72173 station_ip 78.39.29.73 72173 port 15728726 72173 nas_port_type Virtual 72173 remote_ip 5.5.5.230 72175 username nazanin 72175 unique_id port 72175 terminate_cause User-Request 72175 bytes_out 0 72175 bytes_in 0 72175 station_ip 37.129.41.170 72175 port 15728731 72175 nas_port_type Virtual 72175 remote_ip 5.5.5.228 72178 username nazanin 72178 unique_id port 72178 terminate_cause User-Request 72178 bytes_out 29220 72178 bytes_in 94860 72178 station_ip 37.129.41.170 72178 port 15728734 72178 nas_port_type Virtual 72178 remote_ip 5.5.5.228 72267 nas_port_type Virtual 72267 remote_ip 5.5.5.195 72277 username alinezhad 72277 unique_id port 72277 terminate_cause User-Request 72277 bytes_out 106805 72277 bytes_in 5511978 72277 station_ip 5.202.16.19 72277 port 15728642 72277 nas_port_type Virtual 72277 remote_ip 5.5.5.255 72280 username alirezazamani 72280 unique_id port 72280 terminate_cause Lost-Carrier 72280 bytes_out 602210 72280 bytes_in 17511164 72280 station_ip 5.119.180.179 72280 port 15728644 72280 nas_port_type Virtual 72280 remote_ip 5.5.5.253 72283 username alinezhad 72283 unique_id port 72283 terminate_cause User-Request 72283 bytes_out 31983 72283 bytes_in 40301 72283 station_ip 5.202.16.19 72283 port 15728651 72283 nas_port_type Virtual 72283 remote_ip 5.5.5.255 72284 username aminvpn 72284 unique_id port 72284 terminate_cause User-Request 72284 bytes_out 787096 72284 bytes_in 13303173 72284 station_ip 78.39.29.73 72284 port 15728652 72284 nas_port_type Virtual 72284 remote_ip 5.5.5.249 72288 username alinezhad 72288 unique_id port 72288 terminate_cause User-Request 72288 bytes_out 0 72288 bytes_in 0 72288 station_ip 5.202.16.19 72288 port 15728656 72288 nas_port_type Virtual 72288 remote_ip 5.5.5.255 81051 username zamanialireza 81051 unique_id port 81051 terminate_cause User-Request 81051 bytes_out 1615621 81051 bytes_in 8314544 81051 station_ip 37.44.56.236 81051 port 15728642 81051 nas_port_type Virtual 81051 remote_ip 5.5.5.253 72292 username alinezhad 72292 unique_id port 72292 terminate_cause User-Request 72292 bytes_out 11831 72292 bytes_in 15618 72292 station_ip 5.202.16.19 72292 port 15728661 72292 nas_port_type Virtual 72292 remote_ip 5.5.5.255 72293 username iranmanesh 72293 unique_id port 72293 terminate_cause Lost-Carrier 72293 bytes_out 3683090 72293 bytes_in 104956551 72293 station_ip 5.114.228.231 72293 port 15728649 72293 nas_port_type Virtual 72293 remote_ip 5.5.5.251 72296 username alirezazamani 72296 unique_id port 72296 terminate_cause User-Request 72156 station_ip 37.129.205.104 72156 port 15728709 72156 nas_port_type Virtual 72156 remote_ip 5.5.5.232 72159 username alirezazamani 72159 unique_id port 72159 terminate_cause User-Request 72159 bytes_out 123518 72159 bytes_in 444950 72159 station_ip 37.129.205.104 72159 port 15728712 72159 nas_port_type Virtual 72159 remote_ip 5.5.5.232 72160 username alirezazamani 72160 unique_id port 72160 terminate_cause User-Request 72160 bytes_out 163148 72160 bytes_in 803042 72160 station_ip 37.129.205.104 72160 port 15728715 72160 nas_port_type Virtual 72160 remote_ip 5.5.5.232 72162 username alirezazamani 72162 unique_id port 72162 terminate_cause User-Request 72162 bytes_out 72101 72162 bytes_in 304814 72162 station_ip 37.129.205.104 72162 port 15728716 72162 nas_port_type Virtual 72162 remote_ip 5.5.5.232 72164 username alinezhad 72164 unique_id port 72164 terminate_cause User-Request 72164 bytes_out 0 72164 bytes_in 0 72164 station_ip 5.202.1.195 72164 port 15728717 72164 nas_port_type Virtual 72164 remote_ip 5.5.5.255 72166 username ksr 72166 unique_id port 72166 terminate_cause User-Request 72166 bytes_out 1501747 72166 bytes_in 15212175 72166 station_ip 151.234.20.72 72166 port 15728719 72166 nas_port_type Virtual 72166 remote_ip 5.5.5.231 72167 username alinezhad 72167 unique_id port 72167 terminate_cause User-Request 72167 bytes_out 0 72167 bytes_in 0 72167 station_ip 5.202.1.195 72167 port 15728720 72167 nas_port_type Virtual 72167 remote_ip 5.5.5.255 72168 username alinezhad 72168 unique_id port 72168 terminate_cause User-Request 72168 bytes_out 0 72168 bytes_in 0 72168 station_ip 5.202.1.195 72168 port 15728721 72168 nas_port_type Virtual 72168 remote_ip 5.5.5.255 72170 username nazanin 72170 unique_id port 72170 terminate_cause User-Request 72170 bytes_out 38160 72170 bytes_in 82801 72170 station_ip 37.129.41.170 72170 port 15728728 72170 nas_port_type Virtual 72170 remote_ip 5.5.5.228 72177 username nazanin 72177 unique_id port 72177 terminate_cause User-Request 72177 bytes_out 38151 72177 bytes_in 100620 72177 station_ip 37.129.41.170 72177 port 15728733 72177 nas_port_type Virtual 72177 remote_ip 5.5.5.228 72179 username nazanin 72179 unique_id port 72179 terminate_cause User-Request 72179 bytes_out 25398 72179 bytes_in 56559 72179 station_ip 37.129.41.170 72179 port 15728735 72179 nas_port_type Virtual 72179 remote_ip 5.5.5.228 72268 username nazanin 72268 unique_id port 72268 terminate_cause User-Request 72268 bytes_out 38685 72268 bytes_in 96104 72268 station_ip 113.203.40.163 72268 port 15728827 72268 nas_port_type Virtual 72268 remote_ip 5.5.5.194 72270 username nazanin 72270 unique_id port 72270 terminate_cause User-Request 72270 bytes_out 0 72270 bytes_in 0 72270 station_ip 113.203.40.163 72270 port 15728829 72270 nas_port_type Virtual 72270 remote_ip 5.5.5.194 72271 username nazanin 72271 unique_id port 72271 terminate_cause User-Request 72271 bytes_out 0 72271 bytes_in 0 72271 station_ip 113.203.40.163 72271 port 15728830 72271 nas_port_type Virtual 72271 remote_ip 5.5.5.194 81054 unique_id port 81054 terminate_cause Lost-Carrier 81054 bytes_out 79187 81054 bytes_in 827845 81054 station_ip 83.123.14.10 81054 port 15728643 81054 nas_port_type Virtual 81054 remote_ip 5.5.5.252 81057 username alinezhad 72275 username alinezhad 72275 unique_id port 72275 terminate_cause User-Request 72275 bytes_out 29800 72275 bytes_in 272427 72275 station_ip 5.202.16.19 72275 port 15728640 72275 nas_port_type Virtual 72275 remote_ip 5.5.5.255 72281 username alinezhad 72281 unique_id port 72281 terminate_cause User-Request 72281 bytes_out 0 72281 bytes_in 0 72180 username nazanin 72180 unique_id port 72180 terminate_cause User-Request 72180 bytes_out 0 72180 bytes_in 0 72180 station_ip 37.129.41.170 72180 port 15728736 72180 nas_port_type Virtual 72180 remote_ip 5.5.5.228 81055 username caferibar 81055 unique_id port 81055 terminate_cause Lost-Carrier 81055 bytes_out 738917 81055 bytes_in 12490971 81055 station_ip 5.120.98.121 81055 port 15728648 81055 nas_port_type Virtual 72184 username alirezazamani 72184 unique_id port 72184 terminate_cause Lost-Carrier 72184 bytes_out 292362 72184 bytes_in 3892053 72184 station_ip 5.119.32.252 72184 port 15728738 72184 nas_port_type Virtual 72184 remote_ip 5.5.5.238 72191 username mobina 72191 unique_id port 72191 terminate_cause User-Request 72191 bytes_out 236923 72191 bytes_in 6689204 72191 station_ip 5.123.254.62 72191 port 15728744 72191 nas_port_type Virtual 72191 remote_ip 5.5.5.225 72196 username alirezazamani 72196 unique_id port 72196 terminate_cause Lost-Carrier 72196 bytes_out 1110902 72196 bytes_in 6499339 72196 station_ip 5.119.18.163 72196 port 15728746 72196 nas_port_type Virtual 72196 remote_ip 5.5.5.224 72199 username alirezazamani 72199 unique_id port 72199 terminate_cause Lost-Carrier 72199 bytes_out 305447 72199 bytes_in 3957850 72199 station_ip 5.119.180.179 72199 port 15728754 72199 nas_port_type Virtual 72199 remote_ip 5.5.5.221 72200 username rashidi 72200 unique_id port 72200 terminate_cause User-Request 72200 bytes_out 15806030 72200 bytes_in 142811564 72200 station_ip 5.119.216.188 72200 port 15728743 72200 nas_port_type Virtual 72200 remote_ip 5.5.5.234 72201 username aminvpn 72201 unique_id port 72201 terminate_cause Lost-Carrier 72201 bytes_out 4029679 72201 bytes_in 43962942 72201 station_ip 78.39.29.73 72201 port 15728748 72201 nas_port_type Virtual 72201 remote_ip 5.5.5.230 72203 username aminvpn 72203 unique_id port 72203 terminate_cause Lost-Carrier 72203 bytes_out 102870 72203 bytes_in 313710 72203 station_ip 78.39.29.73 72203 port 15728756 72203 nas_port_type Virtual 72203 remote_ip 5.5.5.219 72204 username aminvpn 72204 unique_id port 72204 terminate_cause Lost-Carrier 72204 bytes_out 63405 72204 bytes_in 117385 72204 station_ip 78.39.29.73 72204 port 15728757 72204 nas_port_type Virtual 72204 remote_ip 5.5.5.218 72205 username alirezazamani 72205 unique_id port 72205 terminate_cause Lost-Carrier 72205 bytes_out 284103 72205 bytes_in 8720058 72205 station_ip 5.119.180.179 72205 port 15728758 72205 nas_port_type Virtual 72205 remote_ip 5.5.5.221 72207 username alirezazamani 72207 unique_id port 72207 terminate_cause Lost-Carrier 72207 bytes_out 349740 72207 bytes_in 8697514 72207 station_ip 5.119.180.179 72207 port 15728760 72207 nas_port_type Virtual 72207 remote_ip 5.5.5.220 72208 username alirezazamani 72208 unique_id port 72208 terminate_cause Lost-Carrier 72208 bytes_out 277336 72208 bytes_in 5664185 72208 station_ip 5.119.180.179 72208 port 15728761 72208 nas_port_type Virtual 72208 remote_ip 5.5.5.217 72210 username alirezazamani 72210 unique_id port 72210 terminate_cause Lost-Carrier 72210 bytes_out 932006 72210 bytes_in 25372629 72210 station_ip 5.119.180.179 72210 port 15728762 72210 nas_port_type Virtual 72210 remote_ip 5.5.5.216 72212 username alirezazamani 72212 unique_id port 72212 terminate_cause User-Request 72212 bytes_out 522066 72212 bytes_in 12504073 72212 station_ip 5.119.180.179 72212 port 15728764 72212 nas_port_type Virtual 72212 remote_ip 5.5.5.217 72213 username mobina 72213 unique_id port 72213 terminate_cause Lost-Carrier 72213 bytes_out 2531157 72213 bytes_in 86687432 72213 station_ip 5.124.36.66 72213 port 15728766 72182 username alinezhad 72182 unique_id port 72182 terminate_cause User-Request 72182 bytes_out 0 72182 bytes_in 0 72182 station_ip 5.202.1.195 72182 port 15728737 72182 nas_port_type Virtual 72182 remote_ip 5.5.5.255 72188 username alirezazamani 72188 unique_id port 72188 terminate_cause Lost-Carrier 72188 bytes_out 717283 72188 bytes_in 22898990 72188 station_ip 5.119.32.252 72188 port 15728741 72188 nas_port_type Virtual 72188 remote_ip 5.5.5.226 72189 username alirezazamani 72189 unique_id port 72189 terminate_cause Lost-Carrier 72189 bytes_out 3593696 72189 bytes_in 32290915 72189 station_ip 5.119.89.220 72189 port 15728724 72189 nas_port_type Virtual 72189 remote_ip 5.5.5.229 72190 username ksr 72190 unique_id port 72190 terminate_cause User-Request 72190 bytes_out 34986515 72190 bytes_in 912318111 72190 station_ip 151.234.20.72 72190 port 15728722 72190 nas_port_type Virtual 72190 remote_ip 5.5.5.231 72192 username aminvpn 72192 unique_id port 72192 terminate_cause User-Request 72192 bytes_out 0 72192 bytes_in 0 72192 station_ip 78.39.29.73 72192 port 15728747 72192 nas_port_type Virtual 72192 remote_ip 5.5.5.230 72195 username alirezazamani 72195 unique_id port 72195 terminate_cause Lost-Carrier 72195 bytes_out 271237 72195 bytes_in 1687476 72195 station_ip 5.120.174.61 72195 port 15728750 72195 nas_port_type Virtual 72195 remote_ip 5.5.5.223 72197 username alinezhad 72197 unique_id port 72197 terminate_cause User-Request 72197 bytes_out 0 72197 bytes_in 0 72197 station_ip 5.202.1.195 72197 port 15728752 72197 nas_port_type Virtual 72197 remote_ip 5.5.5.255 72202 username alirezazamani 72202 unique_id port 72202 terminate_cause Lost-Carrier 72202 bytes_out 438608 72202 bytes_in 11884658 72202 station_ip 5.119.180.179 72202 port 15728755 72202 nas_port_type Virtual 72202 remote_ip 5.5.5.220 72206 username alirezazamani 72206 unique_id port 72206 terminate_cause Lost-Carrier 72206 bytes_out 701545 72206 bytes_in 22578043 72206 station_ip 5.119.180.179 72206 port 15728759 72206 nas_port_type Virtual 72206 remote_ip 5.5.5.217 72209 username alinezhad 72209 unique_id port 72209 terminate_cause User-Request 72209 bytes_out 0 72209 bytes_in 0 72209 station_ip 5.202.1.195 72209 port 15728765 72209 nas_port_type Virtual 72209 remote_ip 5.5.5.255 72211 username alirezazamani 72211 unique_id port 72211 terminate_cause Lost-Carrier 72211 bytes_out 1129637 72211 bytes_in 27024224 72211 station_ip 5.120.85.252 72211 port 15728763 72211 nas_port_type Virtual 72211 remote_ip 5.5.5.215 72217 username mobina 72217 unique_id port 72217 terminate_cause User-Request 72217 bytes_out 329773 72217 bytes_in 9716523 72217 station_ip 5.124.178.102 72217 port 15728772 72217 nas_port_type Virtual 72217 remote_ip 5.5.5.212 72218 username iranmanesh 72218 unique_id port 72218 terminate_cause User-Request 72218 bytes_out 2246094 72218 bytes_in 13567687 72218 station_ip 5.113.157.250 72218 port 15728745 72218 nas_port_type Virtual 72218 remote_ip 5.5.5.248 72224 username alinezhad 72224 unique_id port 72224 terminate_cause User-Request 72224 bytes_out 11048 72224 bytes_in 110200 72224 station_ip 5.202.1.195 72224 port 15728777 72224 nas_port_type Virtual 72224 remote_ip 5.5.5.255 72233 username alinezhad 72233 unique_id port 72233 terminate_cause User-Request 72233 bytes_out 0 72233 bytes_in 0 72233 station_ip 5.202.1.195 72233 port 15728788 72233 nas_port_type Virtual 72233 remote_ip 5.5.5.255 72239 username alirezazamani 72239 unique_id port 72239 terminate_cause Lost-Carrier 72239 bytes_out 850857 72239 bytes_in 18249348 72239 station_ip 5.119.180.179 72239 port 15728778 72239 nas_port_type Virtual 72183 username rashidi 72183 unique_id port 72183 terminate_cause Lost-Carrier 72183 bytes_out 20230930 72183 bytes_in 282607565 72183 station_ip 5.119.216.188 72183 port 15728702 72183 nas_port_type Virtual 72183 remote_ip 5.5.5.234 72185 username alinezhad 72185 unique_id port 72185 terminate_cause User-Request 72185 bytes_out 8564 72185 bytes_in 14921 72185 station_ip 5.202.1.195 72185 port 15728739 72185 nas_port_type Virtual 72185 remote_ip 5.5.5.255 72186 username alirezazamani 72186 unique_id port 72186 terminate_cause Lost-Carrier 72186 bytes_out 473391 72186 bytes_in 10525789 72186 station_ip 5.119.32.252 72186 port 15728740 72186 nas_port_type Virtual 72186 remote_ip 5.5.5.238 72187 username alinezhad 72187 unique_id port 72187 terminate_cause User-Request 72187 bytes_out 6746 72187 bytes_in 5331 72187 station_ip 5.202.1.195 72187 port 15728742 72187 nas_port_type Virtual 72187 remote_ip 5.5.5.255 72193 username alirezazamani 72193 unique_id port 72193 terminate_cause User-Request 72193 bytes_out 0 72193 bytes_in 0 72193 station_ip 5.120.174.61 72193 port 15728749 72193 nas_port_type Virtual 72193 remote_ip 5.5.5.223 72194 username alinezhad 72194 unique_id port 72194 terminate_cause User-Request 72194 bytes_out 0 72194 bytes_in 0 72194 station_ip 5.202.1.195 72194 port 15728751 72194 nas_port_type Virtual 72194 remote_ip 5.5.5.255 72198 username alirezazamani 72198 unique_id port 72198 terminate_cause User-Request 72198 bytes_out 103273 72198 bytes_in 637388 72198 station_ip 5.119.143.243 72198 port 15728753 72198 nas_port_type Virtual 72198 remote_ip 5.5.5.222 72214 username alirezazamani 72214 unique_id port 72214 terminate_cause User-Request 72214 bytes_out 637764 72214 bytes_in 13786529 72214 station_ip 5.120.130.241 72214 port 15728767 72214 nas_port_type Virtual 72214 remote_ip 5.5.5.213 72735 station_ip 5.120.51.120 72735 port 1 72735 unique_id port 72738 username aminvpn 72738 kill_reason Another user logged on this global unique id 72738 mac 72738 bytes_out 0 72738 bytes_in 0 72738 station_ip 5.120.51.120 72220 username aminvpn 72220 kill_reason Maximum check online fails reached 72220 unique_id port 72220 bytes_out 1150265 72220 bytes_in 42591315 72220 station_ip 78.39.29.73 72220 port 15728773 72220 nas_port_type Virtual 72220 remote_ip 5.5.5.218 72223 username mobina 72223 unique_id port 72223 terminate_cause User-Request 72223 bytes_out 46712 72223 bytes_in 63612 72223 station_ip 5.124.178.102 72223 port 15728776 72223 nas_port_type Virtual 72223 remote_ip 5.5.5.212 72225 username alinezhad 72225 unique_id port 72225 terminate_cause User-Request 72225 bytes_out 0 72225 bytes_in 0 72225 station_ip 5.202.1.195 72225 port 15728779 72225 nas_port_type Virtual 72225 remote_ip 5.5.5.255 72226 username alirezazamani 72226 unique_id port 72226 terminate_cause Lost-Carrier 72226 bytes_out 1019428 72226 bytes_in 25526602 72226 station_ip 5.119.180.179 72226 port 15728774 72226 nas_port_type Virtual 72226 remote_ip 5.5.5.211 72227 username alirezazamani 72227 unique_id port 72227 terminate_cause User-Request 72227 bytes_out 291884 72227 bytes_in 868178 72227 station_ip 5.120.85.252 72227 port 15728782 72227 nas_port_type Virtual 72227 remote_ip 5.5.5.215 72228 username alirezazamani 72228 unique_id port 72228 terminate_cause User-Request 72228 bytes_out 497106 72228 bytes_in 2459190 72228 station_ip 5.120.85.252 72228 port 15728783 72228 nas_port_type Virtual 72228 remote_ip 5.5.5.209 72229 username alinezhad 72229 unique_id port 72229 terminate_cause User-Request 72229 bytes_out 0 72229 bytes_in 0 72229 station_ip 5.202.1.195 72229 port 15728784 72229 nas_port_type Virtual 72213 nas_port_type Virtual 72213 remote_ip 5.5.5.214 72216 username alinezhad 72216 unique_id port 72216 terminate_cause User-Request 72216 bytes_out 0 72216 bytes_in 0 72216 station_ip 5.202.1.195 72216 port 15728771 72216 nas_port_type Virtual 72216 remote_ip 5.5.5.255 72219 username aminvpn 72219 unique_id port 72219 terminate_cause User-Request 72219 bytes_out 2603327 72219 bytes_in 89688944 72219 station_ip 78.39.29.73 72219 port 15728770 72219 nas_port_type Virtual 72219 remote_ip 5.5.5.218 72221 username alirezazamani 72221 unique_id port 72221 terminate_cause Lost-Carrier 72221 bytes_out 518374 72221 bytes_in 1976029 72221 station_ip 5.119.180.179 72221 port 15728769 72221 nas_port_type Virtual 72221 remote_ip 5.5.5.216 72222 username alirezazamani 72222 unique_id port 72222 terminate_cause User-Request 72222 bytes_out 72300 72222 bytes_in 142573 72222 station_ip 113.203.68.161 72222 port 15728775 72222 nas_port_type Virtual 72222 remote_ip 5.5.5.210 72230 username alinezhad 72230 unique_id port 72230 terminate_cause User-Request 72230 bytes_out 0 72230 bytes_in 0 72230 station_ip 5.202.1.195 72230 port 15728785 72230 nas_port_type Virtual 72230 remote_ip 5.5.5.255 72232 username alinezhad 72232 unique_id port 72232 terminate_cause User-Request 72232 bytes_out 0 72232 bytes_in 0 72232 station_ip 5.202.1.195 72232 port 15728787 72232 nas_port_type Virtual 72232 remote_ip 5.5.5.255 72234 username alirezazamani 72234 unique_id port 72234 terminate_cause User-Request 72234 bytes_out 0 72234 bytes_in 0 72234 station_ip 5.120.85.252 72234 port 15728789 72234 nas_port_type Virtual 72234 remote_ip 5.5.5.209 72235 username alinezhad 72235 unique_id port 72235 terminate_cause User-Request 72235 bytes_out 18953 72235 bytes_in 22050 72235 station_ip 5.202.1.195 72235 port 15728790 72235 nas_port_type Virtual 72235 remote_ip 5.5.5.255 72236 username alinezhad 72236 unique_id port 72236 terminate_cause User-Request 72236 bytes_out 0 72236 bytes_in 0 72236 station_ip 113.203.57.250 72236 port 15728794 72236 nas_port_type Virtual 72236 remote_ip 5.5.5.206 72238 username aminvpn 72238 unique_id port 72238 terminate_cause Lost-Carrier 72238 bytes_out 137555 72238 bytes_in 583671 72238 station_ip 78.39.29.73 72238 port 15728792 72238 nas_port_type Virtual 72238 remote_ip 5.5.5.218 72241 username alinezhad 72241 unique_id port 72241 terminate_cause User-Request 72241 bytes_out 11594 72241 bytes_in 17046 72241 station_ip 83.123.167.90 72241 port 15728798 72241 nas_port_type Virtual 72241 remote_ip 5.5.5.205 72246 username alirezazamani 72246 unique_id port 72246 terminate_cause Lost-Carrier 72246 bytes_out 471445 72246 bytes_in 8606641 72246 station_ip 5.119.44.85 72246 port 15728797 72246 nas_port_type Virtual 72246 remote_ip 5.5.5.204 72247 username alinezhad 72247 unique_id port 72247 terminate_cause User-Request 72247 bytes_out 5996 72247 bytes_in 6517 72247 station_ip 83.123.167.90 72247 port 15728803 72247 nas_port_type Virtual 72247 remote_ip 5.5.5.205 72249 username alinezhad 72249 unique_id port 72249 terminate_cause User-Request 72249 bytes_out 21896 72249 bytes_in 36401 72249 station_ip 83.123.167.90 72249 port 15728805 72249 nas_port_type Virtual 72249 remote_ip 5.5.5.205 72251 username alirezazamani 72251 unique_id port 72251 terminate_cause Lost-Carrier 72251 bytes_out 117050 72251 bytes_in 925205 72251 station_ip 5.119.180.179 72251 port 15728802 72251 nas_port_type Virtual 72251 remote_ip 5.5.5.203 72256 username alinezhad 72256 unique_id port 72256 terminate_cause User-Request 72256 bytes_out 18710 72256 bytes_in 37851 72256 station_ip 113.203.13.162 72229 remote_ip 5.5.5.255 72231 username alinezhad 72231 unique_id port 72231 terminate_cause User-Request 72231 bytes_out 0 72231 bytes_in 0 72231 station_ip 5.202.1.195 72231 port 15728786 72231 nas_port_type Virtual 72231 remote_ip 5.5.5.255 72237 username aminvpn 72237 unique_id port 72237 terminate_cause Lost-Carrier 72237 bytes_out 68341 72237 bytes_in 1230261 72237 station_ip 5.119.77.136 72237 port 15728791 72237 nas_port_type Virtual 72237 remote_ip 5.5.5.208 72244 username alirezazamani 72244 unique_id port 72244 terminate_cause User-Request 72244 bytes_out 0 72244 bytes_in 0 72244 station_ip 5.119.180.179 72244 port 15728801 72244 nas_port_type Virtual 72244 remote_ip 5.5.5.203 72248 username goli 72248 unique_id port 72248 terminate_cause User-Request 72248 bytes_out 61710 72248 bytes_in 376025 72248 station_ip 83.123.168.37 72248 port 15728804 72248 nas_port_type Virtual 72248 remote_ip 5.5.5.202 72252 username alirezazamani 72252 unique_id port 72252 terminate_cause User-Request 72252 bytes_out 329993 72252 bytes_in 2590907 72252 station_ip 5.120.85.252 72252 port 15728807 72252 nas_port_type Virtual 72252 remote_ip 5.5.5.209 72257 username alinezhad 72257 unique_id port 72257 terminate_cause User-Request 72257 bytes_out 94212 72257 bytes_in 1744963 72257 station_ip 113.203.13.162 72257 port 15728815 72257 nas_port_type Virtual 72257 remote_ip 5.5.5.200 72261 username alinezhad 72261 unique_id port 72261 terminate_cause User-Request 72261 bytes_out 58687 72261 bytes_in 107746 72261 station_ip 83.122.65.26 72261 port 15728819 72261 nas_port_type Virtual 72261 remote_ip 5.5.5.198 72264 username aminvpn 72264 unique_id port 72264 terminate_cause User-Request 72264 bytes_out 57203693 72264 bytes_in 2445627641 72264 station_ip 5.119.36.55 72264 port 15728823 72264 nas_port_type Virtual 72264 remote_ip 5.5.5.196 72265 username rashidi 72265 unique_id port 72265 terminate_cause Lost-Carrier 72265 bytes_out 16842325 72265 bytes_in 55059034 72265 station_ip 5.119.204.12 72265 port 15728820 72265 nas_port_type Virtual 72265 remote_ip 5.5.5.197 72266 username aminvpn 72266 unique_id port 72266 terminate_cause User-Request 72266 bytes_out 625256 72266 bytes_in 8459352 72266 station_ip 5.119.36.55 72266 port 15728824 72266 nas_port_type Virtual 72266 remote_ip 5.5.5.196 72269 username nazanin 72269 unique_id port 72269 terminate_cause User-Request 72269 bytes_out 2963 72269 bytes_in 6381 72269 station_ip 113.203.40.163 72269 port 15728828 72269 nas_port_type Virtual 72269 remote_ip 5.5.5.194 72272 username aminvpn 72272 unique_id port 72272 terminate_cause Lost-Carrier 72272 bytes_out 21431939 72272 bytes_in 564811360 72272 station_ip 5.119.36.55 72272 port 15728825 72272 nas_port_type Virtual 72272 remote_ip 5.5.5.196 72273 username alinezhad 72273 unique_id port 72273 terminate_cause Admin-Reboot 72273 bytes_out 615232 72273 bytes_in 12248469 72273 station_ip 5.202.16.19 72273 port 15728831 72273 nas_port_type Virtual 72273 remote_ip 5.5.5.193 72276 username goli 72276 unique_id port 72276 terminate_cause User-Request 72276 bytes_out 395041 72276 bytes_in 16793329 72276 station_ip 83.123.183.221 72276 port 15728641 72276 nas_port_type Virtual 72276 remote_ip 5.5.5.254 72278 username alinezhad 72278 unique_id port 72278 terminate_cause User-Request 72278 bytes_out 11149 72278 bytes_in 29769 72278 station_ip 5.202.16.19 72278 port 15728643 72278 nas_port_type Virtual 72278 remote_ip 5.5.5.255 72279 username alinezhad 72279 unique_id port 72279 terminate_cause User-Request 72279 bytes_out 0 72279 bytes_in 0 72279 station_ip 5.202.16.19 72279 port 15728645 72239 remote_ip 5.5.5.216 72240 username alinezhad 72240 unique_id port 72240 terminate_cause User-Request 72240 bytes_out 0 72240 bytes_in 0 72240 station_ip 83.123.167.90 72240 port 15728796 72240 nas_port_type Virtual 72240 remote_ip 5.5.5.205 72242 username alinezhad 72242 unique_id port 72242 terminate_cause User-Request 72242 bytes_out 0 72242 bytes_in 0 72242 station_ip 83.123.167.90 72242 port 15728799 72242 nas_port_type Virtual 72242 remote_ip 5.5.5.205 72243 username alirezazamani 72243 unique_id port 72243 terminate_cause User-Request 72243 bytes_out 117596 72243 bytes_in 2711009 72243 station_ip 5.119.180.179 72243 port 15728800 72243 nas_port_type Virtual 72243 remote_ip 5.5.5.203 72245 username alirezazamani 72245 unique_id port 72245 terminate_cause Lost-Carrier 72245 bytes_out 573870 72245 bytes_in 12907075 72245 station_ip 5.119.180.179 72245 port 15728795 72245 nas_port_type Virtual 72245 remote_ip 5.5.5.211 72250 username alinezhad 72250 unique_id port 72250 terminate_cause User-Request 72250 bytes_out 21766 72250 bytes_in 106139 72250 station_ip 83.123.167.90 72250 port 15728806 72250 nas_port_type Virtual 72250 remote_ip 5.5.5.205 72253 username alinezhad 72253 unique_id port 72253 terminate_cause User-Request 72253 bytes_out 0 72253 bytes_in 0 72253 station_ip 113.203.30.240 72253 port 15728808 72253 nas_port_type Virtual 72253 remote_ip 5.5.5.201 72254 username alinezhad 72254 unique_id port 72254 terminate_cause User-Request 72254 bytes_out 84508 72254 bytes_in 150299 72254 station_ip 113.203.30.240 72254 port 15728809 72254 nas_port_type Virtual 72254 remote_ip 5.5.5.201 72255 username alinezhad 72255 unique_id port 72255 terminate_cause User-Request 72255 bytes_out 53338 72255 bytes_in 191119 72255 station_ip 113.203.13.162 72255 port 15728813 72255 nas_port_type Virtual 72255 remote_ip 5.5.5.200 72258 username alinezhad 72258 unique_id port 72258 terminate_cause User-Request 72258 bytes_out 0 72258 bytes_in 0 72258 station_ip 113.203.13.162 72258 port 15728816 72258 nas_port_type Virtual 72258 remote_ip 5.5.5.200 81055 remote_ip 5.5.5.249 81056 username madadi 81056 unique_id port 81056 terminate_cause Lost-Carrier 81056 bytes_out 621394 81056 bytes_in 2937204 81056 station_ip 5.119.119.149 81056 port 15728640 81056 nas_port_type Virtual 72263 username mobina 72263 unique_id port 72263 terminate_cause User-Request 72263 bytes_out 1192365 72263 bytes_in 15006454 72263 station_ip 5.124.178.102 72263 port 15728821 72263 nas_port_type Virtual 72263 remote_ip 5.5.5.212 72279 nas_port_type Virtual 72279 remote_ip 5.5.5.255 72282 username alirezazamani 72282 unique_id port 72282 terminate_cause Lost-Carrier 72282 bytes_out 85259 72282 bytes_in 656982 72282 station_ip 5.119.180.179 72282 port 15728646 72282 nas_port_type Virtual 72282 remote_ip 5.5.5.252 81056 remote_ip 5.5.5.255 81058 username zoha 81058 unique_id port 81058 terminate_cause Lost-Carrier 81058 bytes_out 5081313 81058 bytes_in 111665491 81058 station_ip 5.119.142.76 81058 port 15728645 81058 nas_port_type Virtual 72291 username alirezazamani 72291 unique_id port 72291 terminate_cause User-Request 72291 bytes_out 3520438 72291 bytes_in 10562910 72291 station_ip 5.120.85.252 72291 port 15728657 72291 nas_port_type Virtual 72291 remote_ip 5.5.5.248 72294 username alinezhad 72294 unique_id port 72294 terminate_cause User-Request 72294 bytes_out 0 72294 bytes_in 0 72294 station_ip 5.202.16.19 72294 port 15728662 72294 nas_port_type Virtual 72294 remote_ip 5.5.5.255 72295 username alinezhad 72295 unique_id port 72295 terminate_cause User-Request 72295 bytes_out 10691 72295 bytes_in 22017 72256 port 15728814 72256 nas_port_type Virtual 72256 remote_ip 5.5.5.200 81057 unique_id port 81057 terminate_cause User-Request 81057 bytes_out 212960 81057 bytes_in 597379 81057 station_ip 83.122.202.180 81057 port 15728652 81057 nas_port_type Virtual 81057 remote_ip 5.5.5.245 81061 username madadi 72260 username alinezhad 72260 unique_id port 72260 terminate_cause User-Request 72260 bytes_out 81202 72260 bytes_in 171508 72260 station_ip 83.122.65.26 72260 port 15728818 72260 nas_port_type Virtual 72260 remote_ip 5.5.5.198 72281 station_ip 5.202.16.19 72281 port 15728648 72281 nas_port_type Virtual 72281 remote_ip 5.5.5.255 72285 username alirezazamani 72285 unique_id port 72285 terminate_cause User-Request 72285 bytes_out 266464 72285 bytes_in 1338204 72285 station_ip 5.120.85.252 72285 port 15728653 72285 nas_port_type Virtual 72285 remote_ip 5.5.5.248 72286 username aminvpn 72286 unique_id port 72286 terminate_cause Lost-Carrier 72286 bytes_out 1660365 72286 bytes_in 10030213 72286 station_ip 78.39.29.73 72286 port 15728654 72286 nas_port_type Virtual 72286 remote_ip 5.5.5.249 81061 unique_id port 81061 terminate_cause Lost-Carrier 81061 bytes_out 41519 81061 bytes_in 284424 81061 station_ip 5.120.136.173 81061 port 15728651 81061 nas_port_type Virtual 81061 remote_ip 5.5.5.246 81065 username ahmadipour 72299 username aminvpn 72299 unique_id port 72299 terminate_cause Lost-Carrier 72299 bytes_out 794805 72299 bytes_in 7135614 72299 station_ip 78.39.29.73 72299 port 15728666 72299 nas_port_type Virtual 72299 remote_ip 5.5.5.249 72301 username aminvpn 72301 unique_id port 72301 terminate_cause Lost-Carrier 72301 bytes_out 188464 72301 bytes_in 1554584 72301 station_ip 78.39.29.73 72301 port 15728669 72301 nas_port_type Virtual 72301 remote_ip 5.5.5.249 72307 username alirezazamani 72307 unique_id port 72307 terminate_cause Lost-Carrier 72307 bytes_out 193540 72307 bytes_in 532273 72307 station_ip 5.120.96.157 72307 port 15728675 72307 nas_port_type Virtual 72307 remote_ip 5.5.5.238 72311 username alirezazamani 72311 unique_id port 72311 terminate_cause User-Request 72311 bytes_out 0 72311 bytes_in 0 72311 station_ip 5.120.2.211 72311 port 15728684 72311 nas_port_type Virtual 72311 remote_ip 5.5.5.235 81065 unique_id port 81065 terminate_cause Lost-Carrier 81065 bytes_out 146985 81065 bytes_in 2612392 81065 station_ip 113.203.125.123 81065 port 15728661 81065 nas_port_type Virtual 81065 remote_ip 5.5.5.238 81085 username reza 72319 username alinezhad 72319 unique_id port 72319 terminate_cause User-Request 72319 bytes_out 306 72319 bytes_in 308 72319 station_ip 5.202.12.208 72319 port 15728689 72319 nas_port_type Virtual 72319 remote_ip 5.5.5.236 72321 username alinezhad 72321 unique_id port 72321 terminate_cause User-Request 72321 bytes_out 0 72321 bytes_in 0 72321 station_ip 5.202.12.208 72321 port 15728691 72321 nas_port_type Virtual 72321 remote_ip 5.5.5.236 72736 unique_id port 72739 username aminvpn 72739 kill_reason Another user logged on this global unique id 72739 mac 72739 bytes_out 0 72739 bytes_in 0 72739 station_ip 5.120.51.120 72739 port 1 72327 username alirezazamani 72327 unique_id port 72327 terminate_cause Lost-Carrier 72327 bytes_out 770873 72327 bytes_in 3537824 72327 station_ip 94.241.177.177 72327 port 15728683 72327 nas_port_type Virtual 72327 remote_ip 5.5.5.237 72739 unique_id port 72740 username aminvpn 72740 kill_reason Another user logged on this global unique id 72740 mac 72740 bytes_out 0 72740 bytes_in 0 72740 station_ip 5.120.51.120 72740 port 1 72740 unique_id port 72742 username aminvpn 72742 mac 72295 station_ip 5.202.16.19 72295 port 15728663 72295 nas_port_type Virtual 72295 remote_ip 5.5.5.255 72298 username mobina 72298 unique_id port 72298 terminate_cause User-Request 72298 bytes_out 129032 72298 bytes_in 825987 72298 station_ip 37.255.245.59 72298 port 15728665 72298 nas_port_type Virtual 72298 remote_ip 5.5.5.243 72300 username ahmad 72300 unique_id port 72300 terminate_cause User-Request 72300 bytes_out 1278007 72300 bytes_in 34285309 72300 station_ip 86.57.87.63 72300 port 15728667 72300 nas_port_type Virtual 72300 remote_ip 5.5.5.242 72302 username alirezazamani 72302 unique_id port 72302 terminate_cause Lost-Carrier 72302 bytes_out 634806 72302 bytes_in 4637070 72302 station_ip 5.120.85.252 72302 port 15728668 72302 nas_port_type Virtual 72302 remote_ip 5.5.5.248 72303 username alirezazamani 72303 unique_id port 72303 terminate_cause Lost-Carrier 72303 bytes_out 1444845 72303 bytes_in 36712560 72303 station_ip 5.120.182.105 72303 port 15728672 72303 nas_port_type Virtual 72303 remote_ip 5.5.5.240 72306 username aminvpn 72306 unique_id port 72306 terminate_cause User-Request 72306 bytes_out 364505 72306 bytes_in 1984826 72306 station_ip 78.39.29.73 72306 port 15728673 72306 nas_port_type Virtual 72306 remote_ip 5.5.5.249 72309 username alirezazamani 72309 unique_id port 72309 terminate_cause User-Request 72309 bytes_out 0 72309 bytes_in 0 72309 station_ip 94.241.177.177 72309 port 15728682 72309 nas_port_type Virtual 72309 remote_ip 5.5.5.237 72310 username alinezhad 72310 unique_id port 72310 terminate_cause User-Request 72310 bytes_out 0 72310 bytes_in 0 72310 station_ip 5.202.12.208 72310 port 15728685 72310 nas_port_type Virtual 72310 remote_ip 5.5.5.236 72312 username alinezhad 72312 unique_id port 72312 terminate_cause User-Request 72312 bytes_out 0 72312 bytes_in 0 72312 station_ip 5.202.12.208 72312 port 15728686 72312 nas_port_type Virtual 72312 remote_ip 5.5.5.236 72320 username alinezhad 72320 unique_id port 72320 terminate_cause User-Request 72320 bytes_out 0 72320 bytes_in 0 72320 station_ip 5.202.12.208 72320 port 15728690 72320 nas_port_type Virtual 72320 remote_ip 5.5.5.236 72330 username alirezazamani 72330 unique_id port 72330 terminate_cause User-Request 72330 bytes_out 17167103 72330 bytes_in 80045924 72330 station_ip 5.120.182.105 72330 port 15728676 72330 nas_port_type Virtual 72330 remote_ip 5.5.5.240 72341 username alirezazamani 72341 unique_id port 72341 terminate_cause NAS-Error 72341 bytes_out 58 72341 bytes_in 200 72341 station_ip 94.241.177.177 72341 port 15728698 72341 nas_port_type Virtual 72341 remote_ip 5.5.5.237 72342 username alirezazamani 72342 unique_id port 72342 terminate_cause User-Request 72342 bytes_out 0 72342 bytes_in 0 72342 station_ip 5.119.84.165 72342 port 15728702 72342 nas_port_type Virtual 72342 remote_ip 5.5.5.232 72737 kill_reason Another user logged on this global unique id 72737 mac 72737 bytes_out 0 72737 bytes_in 0 72737 station_ip 5.120.51.120 72737 port 1 72737 unique_id port 72744 username aminvpn 72744 mac 72744 bytes_out 0 72744 bytes_in 0 72744 station_ip 5.120.51.120 72744 port 1 72744 unique_id port 72744 remote_ip 10.8.0.6 72745 username aminvpn 72745 mac 72745 bytes_out 0 72745 bytes_in 0 72745 station_ip 5.120.51.120 72745 port 1 72745 unique_id port 72745 remote_ip 10.8.0.6 72751 username alinezhad 72751 unique_id port 72751 terminate_cause User-Request 72751 bytes_out 34678 72751 bytes_in 530 72751 station_ip 5.202.26.164 72751 port 15728723 72751 nas_port_type Virtual 72751 remote_ip 5.5.5.227 72754 username alinezhad 72296 bytes_out 5118815 72296 bytes_in 122857423 72296 station_ip 5.120.55.93 72296 port 15728650 72296 nas_port_type Virtual 72296 remote_ip 5.5.5.250 72297 username alinezhad 72297 unique_id port 72297 terminate_cause User-Request 72297 bytes_out 0 72297 bytes_in 0 72297 station_ip 37.129.219.180 72297 port 15728664 72297 nas_port_type Virtual 72297 remote_ip 5.5.5.244 72304 username ahmad 72304 unique_id port 72304 terminate_cause User-Request 72304 bytes_out 1375435 72304 bytes_in 24938432 72304 station_ip 86.57.87.63 72304 port 15728671 72304 nas_port_type Virtual 72304 remote_ip 5.5.5.242 72305 username rashidi 72305 unique_id port 72305 terminate_cause Lost-Carrier 72305 bytes_out 2721978 72305 bytes_in 7148021 72305 station_ip 5.120.48.214 72305 port 15728670 72305 nas_port_type Virtual 72305 remote_ip 5.5.5.241 72308 username aminvpn 72308 unique_id port 72308 terminate_cause User-Request 72308 bytes_out 49421 72308 bytes_in 38516 72308 station_ip 78.39.29.73 72308 port 15728681 72308 nas_port_type Virtual 72308 remote_ip 5.5.5.249 72313 username alinezhad 72313 unique_id port 72313 terminate_cause User-Request 72313 bytes_out 18186 72313 bytes_in 37267 72313 station_ip 5.202.12.208 72313 port 15728687 72313 nas_port_type Virtual 72313 remote_ip 5.5.5.236 72738 port 1 72738 unique_id port 72741 username aminvpn 72741 kill_reason Another user logged on this global unique id 72741 mac 72741 bytes_out 0 72741 bytes_in 0 72741 station_ip 5.120.51.120 72741 port 1 72741 unique_id port 72743 username aminvpn 72743 mac 72743 bytes_out 0 72743 bytes_in 0 72743 station_ip 5.120.51.120 72743 port 1 72743 unique_id port 72743 remote_ip 10.8.0.6 72748 username aminvpn 72748 mac 72748 bytes_out 0 72748 bytes_in 0 72748 station_ip 5.120.51.120 72748 port 2 72318 username alirezazamani 72318 unique_id port 72318 terminate_cause Lost-Carrier 72318 bytes_out 266912 72318 bytes_in 1525072 72318 station_ip 5.120.2.211 72318 port 15728688 72318 nas_port_type Virtual 72318 remote_ip 5.5.5.235 72322 username alinezhad 72322 unique_id port 72322 terminate_cause User-Request 72322 bytes_out 0 72322 bytes_in 0 72322 station_ip 5.202.12.208 72322 port 15728692 72322 nas_port_type Virtual 72322 remote_ip 5.5.5.236 72323 username alinezhad 72323 unique_id port 72323 terminate_cause User-Request 72323 bytes_out 0 72323 bytes_in 0 72323 station_ip 5.202.12.208 72323 port 15728693 72323 nas_port_type Virtual 72323 remote_ip 5.5.5.236 72324 username alinezhad 72324 unique_id port 72324 terminate_cause User-Request 72324 bytes_out 0 72324 bytes_in 0 72324 station_ip 5.202.12.208 72324 port 15728694 72324 nas_port_type Virtual 72324 remote_ip 5.5.5.236 72326 username alinezhad 72326 unique_id port 72326 terminate_cause User-Request 72326 bytes_out 20419 72326 bytes_in 206612 72326 station_ip 5.202.12.208 72326 port 15728695 72326 nas_port_type Virtual 72326 remote_ip 5.5.5.236 72328 username rashidi 72328 unique_id port 72328 terminate_cause User-Request 72328 bytes_out 3678039 72328 bytes_in 42735480 72328 station_ip 5.119.81.88 72328 port 15728674 72328 nas_port_type Virtual 72328 remote_ip 5.5.5.239 72748 unique_id port 72748 remote_ip 10.8.1.10 72749 username aminvpn 72749 kill_reason Maximum check online fails reached 72749 mac 72749 bytes_out 0 72749 bytes_in 0 72749 station_ip 5.120.51.120 72334 username mobina 72334 unique_id port 72334 terminate_cause User-Request 72334 bytes_out 0 72334 bytes_in 0 72334 station_ip 5.124.21.117 72334 port 15728697 72334 nas_port_type Virtual 72334 remote_ip 5.5.5.234 72742 bytes_out 0 72742 bytes_in 0 72742 station_ip 5.120.51.120 72742 port 1 72742 unique_id port 72746 username aminvpn 72746 mac 72746 bytes_out 0 72746 bytes_in 0 72746 station_ip 5.120.51.120 72746 port 1 72746 unique_id port 72746 remote_ip 10.8.0.6 72747 username aminvpn 72747 mac 72747 bytes_out 0 72747 bytes_in 0 72747 station_ip 5.120.51.120 72747 port 1 72747 unique_id port 72747 remote_ip 10.8.0.6 72752 username aminvpn 72752 mac 72752 bytes_out 0 72752 bytes_in 0 72752 station_ip 5.120.51.120 72752 port 1 72339 username iranmanesh 72339 unique_id port 72339 terminate_cause Lost-Carrier 72339 bytes_out 1324042 72339 bytes_in 9294815 72339 station_ip 5.114.228.231 72339 port 15728680 72339 nas_port_type Virtual 72339 remote_ip 5.5.5.251 72752 unique_id port 72752 remote_ip 10.8.0.6 72753 username aminvpn 72753 mac 72753 bytes_out 0 72753 bytes_in 0 72753 station_ip 5.120.51.120 72753 port 1 81058 remote_ip 5.5.5.250 81060 username soleymani 81060 unique_id port 81060 terminate_cause Lost-Carrier 81060 bytes_out 88965 81060 bytes_in 598513 81060 station_ip 5.119.35.154 81060 port 15728654 81060 nas_port_type Virtual 72355 username alirezazamani 72355 unique_id port 72355 terminate_cause User-Request 72355 bytes_out 0 72355 bytes_in 0 72355 station_ip 5.119.80.92 72355 port 15728706 72355 nas_port_type Virtual 72355 remote_ip 5.5.5.230 72356 username alinezhad 72356 unique_id port 72356 terminate_cause User-Request 72356 bytes_out 0 72356 bytes_in 0 72356 station_ip 5.202.12.208 72356 port 15728711 72356 nas_port_type Virtual 72356 remote_ip 5.5.5.236 72753 unique_id port 72753 remote_ip 10.8.0.6 72756 username alinezhad 72756 unique_id port 72756 terminate_cause User-Request 72756 bytes_out 6185 72756 bytes_in 298 72756 station_ip 5.202.26.164 72365 username alinezhad 72365 unique_id port 72365 terminate_cause User-Request 72365 bytes_out 0 72365 bytes_in 0 72365 station_ip 5.202.12.208 72365 port 15728718 72365 nas_port_type Virtual 72365 remote_ip 5.5.5.236 72756 port 15728725 72756 nas_port_type Virtual 72756 remote_ip 5.5.5.227 72760 username alinezhad 72760 unique_id port 72760 terminate_cause User-Request 72760 bytes_out 0 72760 bytes_in 0 72367 username alinezhad 72367 unique_id port 72367 terminate_cause User-Request 72367 bytes_out 0 72367 bytes_in 0 72367 station_ip 5.202.12.208 72367 port 15728720 72367 nas_port_type Virtual 72367 remote_ip 5.5.5.236 72374 username zoha 72374 unique_id port 72374 terminate_cause Lost-Carrier 72374 bytes_out 200128 72374 bytes_in 720274 72374 station_ip 5.119.56.82 72374 port 15728722 72374 nas_port_type Virtual 72374 remote_ip 5.5.5.228 72760 station_ip 5.202.26.164 72760 port 15728727 72760 nas_port_type Virtual 72760 remote_ip 5.5.5.227 72762 username mobina 72762 unique_id port 72762 terminate_cause User-Request 72762 bytes_out 9354 72762 bytes_in 346 72762 station_ip 5.124.161.236 72762 port 15728728 72762 nas_port_type Virtual 72762 remote_ip 5.5.5.226 72388 username rashidi 72388 unique_id port 72388 terminate_cause Lost-Carrier 72388 bytes_out 26276961 72388 bytes_in 44724506 72388 station_ip 5.119.81.88 72388 port 15728713 72388 nas_port_type Virtual 72388 remote_ip 5.5.5.239 72475 username alirezazamani 72475 unique_id port 72475 terminate_cause User-Request 72475 bytes_out 0 72475 bytes_in 0 72475 station_ip 5.119.88.149 72475 port 15728792 72475 nas_port_type Virtual 72475 remote_ip 5.5.5.202 72483 username alirezazamani 72483 unique_id port 72483 terminate_cause User-Request 72749 port 2 72749 unique_id port 72750 username aminvpn 72750 mac 72750 bytes_out 0 72750 bytes_in 0 72750 station_ip 5.120.51.120 72750 port 1 72750 unique_id port 72750 remote_ip 10.8.0.6 72757 username alinezhad 72757 unique_id port 72757 terminate_cause User-Request 72757 bytes_out 0 72757 bytes_in 0 72757 station_ip 5.202.26.164 72757 port 15728726 72757 nas_port_type Virtual 72757 remote_ip 5.5.5.227 72758 username aminvpn 72758 mac 72758 bytes_out 0 72345 username alinezhad 72345 unique_id port 72345 terminate_cause User-Request 72345 bytes_out 34150 72345 bytes_in 419324 72345 station_ip 5.202.12.208 72345 port 15728703 72345 nas_port_type Virtual 72345 remote_ip 5.5.5.236 72349 username alirezazamani 72349 unique_id port 72349 terminate_cause Lost-Carrier 72349 bytes_out 222974 72349 bytes_in 1547594 72349 station_ip 5.119.84.165 72349 port 15728701 72349 nas_port_type Virtual 72349 remote_ip 5.5.5.233 81059 username soleymani 81059 unique_id port 81059 terminate_cause Lost-Carrier 81059 bytes_out 358416 81059 bytes_in 1246808 81059 station_ip 5.120.65.34 81059 port 15728649 81059 nas_port_type Virtual 81059 remote_ip 5.5.5.248 72359 username alinezhad 72359 unique_id port 72359 terminate_cause User-Request 72359 bytes_out 0 72359 bytes_in 0 72359 station_ip 5.202.12.208 72359 port 15728714 72359 nas_port_type Virtual 72359 remote_ip 5.5.5.236 72361 username alirezazamani 72361 unique_id port 72361 terminate_cause User-Request 72361 bytes_out 417863 72361 bytes_in 10267806 72361 station_ip 5.119.84.165 72361 port 15728715 72361 nas_port_type Virtual 72361 remote_ip 5.5.5.232 72758 bytes_in 0 72758 station_ip 5.120.51.120 72758 port 1 72758 unique_id port 72758 remote_ip 10.8.0.6 72759 username aminvpn 72759 mac 72759 bytes_out 0 72759 bytes_in 0 72759 station_ip 5.120.51.120 72759 port 1 72759 unique_id port 72759 remote_ip 10.8.0.6 72761 username aminvpn 72761 mac 72761 bytes_out 0 72761 bytes_in 0 72761 station_ip 5.120.51.120 72761 port 3 72761 unique_id port 72761 remote_ip 10.8.1.10 72766 username alinezhad 72766 unique_id port 72766 terminate_cause User-Request 72766 bytes_out 0 72766 bytes_in 0 72766 station_ip 5.202.26.164 72766 port 15728731 72766 nas_port_type Virtual 72766 remote_ip 5.5.5.227 72773 username aminvpn 72372 username alinezhad 72372 unique_id port 72372 terminate_cause User-Request 72372 bytes_out 0 72372 bytes_in 0 72372 station_ip 5.202.12.208 72372 port 15728723 72372 nas_port_type Virtual 72372 remote_ip 5.5.5.236 72773 mac 72773 bytes_out 0 72773 bytes_in 0 72773 station_ip 5.120.51.120 72773 port 1 72773 unique_id port 72773 remote_ip 10.8.0.6 72781 username aminvpn 72781 mac 72781 bytes_out 0 72781 bytes_in 0 72781 station_ip 5.120.51.120 72781 port 1 72781 unique_id port 72781 remote_ip 10.8.0.6 72377 username alirezazamani 72377 unique_id port 72377 terminate_cause User-Request 72377 bytes_out 1467059 72377 bytes_in 5402206 72377 station_ip 5.119.80.92 72377 port 15728707 72377 nas_port_type Virtual 72377 remote_ip 5.5.5.230 72378 username alinezhad 72378 unique_id port 72378 terminate_cause User-Request 72378 bytes_out 0 72378 bytes_in 0 72378 station_ip 5.202.12.208 72378 port 15728726 72378 nas_port_type Virtual 72378 remote_ip 5.5.5.236 72379 username mobina 72379 unique_id port 72379 terminate_cause Lost-Carrier 72379 bytes_out 1018682 72379 bytes_in 9267385 72379 station_ip 5.124.21.117 72379 port 15728721 72379 nas_port_type Virtual 72379 remote_ip 5.5.5.234 72754 unique_id port 72754 terminate_cause User-Request 72754 bytes_out 18578 72754 bytes_in 474 72754 station_ip 5.202.26.164 72754 port 15728724 72754 nas_port_type Virtual 72754 remote_ip 5.5.5.227 72755 username aminvpn 72755 mac 72755 bytes_out 0 72755 bytes_in 0 72755 station_ip 5.120.51.120 72755 port 1 72755 unique_id port 72755 remote_ip 10.8.0.6 72767 username aminvpn 72767 mac 72767 bytes_out 0 72767 bytes_in 0 72767 station_ip 5.120.51.120 72357 username mobina 72357 unique_id port 72357 terminate_cause User-Request 72357 bytes_out 456137 72357 bytes_in 10058355 72357 station_ip 5.124.21.117 72357 port 15728712 72357 nas_port_type Virtual 72357 remote_ip 5.5.5.234 72767 port 3 72767 unique_id port 72767 remote_ip 10.8.1.10 72769 username mobina 72769 unique_id port 72769 terminate_cause User-Request 72769 bytes_out 8879 72769 bytes_in 288 72363 username alirezazamani 72363 unique_id port 72363 terminate_cause Lost-Carrier 72363 bytes_out 15336 72363 bytes_in 93759 72363 station_ip 5.119.84.165 72363 port 15728716 72363 nas_port_type Virtual 72363 remote_ip 5.5.5.232 72364 username aminsaeedi 72364 unique_id port 72364 terminate_cause User-Request 72364 bytes_out 905683 72364 bytes_in 18307273 72364 station_ip 31.59.40.176 72364 port 15728717 72364 nas_port_type Virtual 72364 remote_ip 5.5.5.229 72769 station_ip 37.254.206.72 72769 port 15728732 72769 nas_port_type Virtual 72769 remote_ip 5.5.5.225 72774 username mahdi 72774 unique_id port 72774 terminate_cause Admin-Reboot 72774 bytes_out 2043011 72774 bytes_in 39531 81060 remote_ip 5.5.5.243 81062 username soleymani 81062 unique_id port 81062 terminate_cause User-Request 81062 bytes_out 0 81062 bytes_in 0 81062 station_ip 5.119.61.84 81062 port 15728658 81062 nas_port_type Virtual 72774 station_ip 5.120.81.87 72774 port 15728648 72774 nas_port_type Virtual 72774 remote_ip 5.5.5.250 72777 username alirezazamani 72777 unique_id port 72777 terminate_cause Lost-Carrier 72777 bytes_out 20207 72777 bytes_in 1369 72777 station_ip 5.119.10.236 72777 port 15728640 72777 nas_port_type Virtual 72777 remote_ip 5.5.5.255 72778 username aminvpn 72778 mac 72778 bytes_out 0 72778 bytes_in 0 72778 station_ip 5.120.51.120 72778 port 1 72778 unique_id port 72476 username alirezazamani 72476 unique_id port 72476 terminate_cause User-Request 72476 bytes_out 1759231 72476 bytes_in 84863609 72476 station_ip 5.119.88.149 72476 port 15728793 72476 nas_port_type Virtual 72476 remote_ip 5.5.5.202 72477 username alirezazamani 72477 unique_id port 72477 terminate_cause User-Request 72477 bytes_out 8873 72477 bytes_in 31623 72477 station_ip 5.119.88.149 72477 port 15728794 72477 nas_port_type Virtual 72477 remote_ip 5.5.5.202 72479 username alirezazamani 72479 unique_id port 72479 terminate_cause Admin-Reboot 72479 bytes_out 315989 72479 bytes_in 12015791 72479 station_ip 5.119.88.149 72479 port 15728795 72479 nas_port_type Virtual 72479 remote_ip 5.5.5.202 72480 username alinezhad 72480 unique_id port 72480 terminate_cause User-Request 72480 bytes_out 167648 72480 bytes_in 448011 72480 station_ip 113.203.75.195 72480 port 15728641 72480 nas_port_type Virtual 72480 remote_ip 5.5.5.255 72484 username kasra 72484 unique_id port 72484 terminate_cause User-Request 72484 bytes_out 98598 72484 bytes_in 740901 72484 station_ip 83.122.38.168 72484 port 15728647 72484 nas_port_type Virtual 72484 remote_ip 5.5.5.249 72486 username kasra 72486 unique_id port 72486 terminate_cause User-Request 72486 bytes_out 91069 72486 bytes_in 1220606 72486 station_ip 83.122.38.168 72763 username alinezhad 72763 unique_id port 72763 terminate_cause User-Request 72763 bytes_out 8307 72763 bytes_in 298 72763 station_ip 5.202.26.164 72763 port 15728729 72383 username alinezhad 72383 unique_id port 72383 terminate_cause User-Request 72383 bytes_out 0 72383 bytes_in 0 72383 station_ip 5.202.12.208 72383 port 15728728 72383 nas_port_type Virtual 72383 remote_ip 5.5.5.236 72387 username rashidi 72387 unique_id port 72387 terminate_cause User-Request 72387 bytes_out 149886 72387 bytes_in 187755 72387 station_ip 83.123.119.58 72387 port 15728729 72387 nas_port_type Virtual 72387 remote_ip 5.5.5.226 72478 username alirezazamani 72478 unique_id port 72478 terminate_cause Admin-Reboot 72478 bytes_out 27858027 72478 bytes_in 153899310 72478 station_ip 5.120.182.105 72478 port 15728782 72478 nas_port_type Virtual 72478 remote_ip 5.5.5.212 72481 username goli 72481 unique_id port 72481 terminate_cause User-Request 72481 bytes_out 102488 72481 bytes_in 729402 72481 station_ip 113.203.61.86 72481 port 15728642 72481 nas_port_type Virtual 72481 remote_ip 5.5.5.254 72482 username alinezhad 72482 unique_id port 72482 terminate_cause User-Request 72482 bytes_out 407504 72482 bytes_in 15976146 72482 station_ip 37.129.54.190 72482 port 15728643 72482 nas_port_type Virtual 72482 remote_ip 5.5.5.253 81062 remote_ip 5.5.5.239 81064 username soleymani 81064 unique_id port 81064 terminate_cause Lost-Carrier 81064 bytes_out 73003 81064 bytes_in 418322 81064 station_ip 5.120.95.77 81064 port 15728657 81064 nas_port_type Virtual 72490 username alirezazamani 72490 unique_id port 72490 terminate_cause Lost-Carrier 72490 bytes_out 946558 72490 bytes_in 18882371 72490 station_ip 5.120.182.105 72490 port 15728648 72490 nas_port_type Virtual 72490 remote_ip 5.5.5.250 72491 username alinezhad 72491 unique_id port 72491 terminate_cause User-Request 72491 bytes_out 0 72491 bytes_in 0 72491 station_ip 5.202.98.83 72491 port 15728654 72491 nas_port_type Virtual 72491 remote_ip 5.5.5.248 72495 username zoha 72495 unique_id port 72495 terminate_cause User-Request 72495 bytes_out 87390 72495 bytes_in 248079 72495 station_ip 5.119.56.82 72495 port 15728658 72495 nas_port_type Virtual 72495 remote_ip 5.5.5.246 72503 username zoha 72503 unique_id port 72503 terminate_cause Lost-Carrier 72503 bytes_out 2350059 72503 bytes_in 33567113 72503 station_ip 5.119.56.82 72503 port 15728659 72503 nas_port_type Virtual 72503 remote_ip 5.5.5.246 72507 username aminsaeedi 72507 unique_id port 72507 terminate_cause User-Request 72507 bytes_out 296824 72507 bytes_in 4742053 72507 station_ip 31.59.40.176 72507 port 15728675 72507 nas_port_type Virtual 72507 remote_ip 5.5.5.238 72763 nas_port_type Virtual 72763 remote_ip 5.5.5.227 72764 username aminvpn 72764 mac 72764 bytes_out 0 72764 bytes_in 0 72764 station_ip 5.120.51.120 72512 username alirezazamani 72512 mac 72512 bytes_out 0 72512 bytes_in 0 72512 station_ip 5.120.182.105 72512 port 2 72512 unique_id port 72512 remote_ip 10.8.0.14 72519 username alirezazamani 72519 mac 72519 bytes_out 0 72519 bytes_in 0 72519 station_ip 5.120.182.105 72519 port 1 72519 unique_id port 72519 remote_ip 10.8.0.14 72521 username zoha 72521 unique_id port 72521 terminate_cause Lost-Carrier 72521 bytes_out 1158193 72521 bytes_in 26709547 72521 station_ip 5.119.56.82 72521 port 15728677 72521 nas_port_type Virtual 72521 remote_ip 5.5.5.239 72522 username alirezazamani 72522 mac 72522 bytes_out 0 72522 bytes_in 0 72522 station_ip 5.120.182.105 72522 port 1 72522 unique_id port 72522 remote_ip 10.8.0.14 72764 port 3 72764 unique_id port 72764 remote_ip 10.8.1.10 72765 username alinezhad 72765 unique_id port 72765 terminate_cause User-Request 72765 bytes_out 0 72765 bytes_in 0 72765 station_ip 5.202.26.164 72765 port 15728730 72765 nas_port_type Virtual 72765 remote_ip 5.5.5.227 72768 username aminvpn 72768 mac 72768 bytes_out 0 72768 bytes_in 0 72768 station_ip 5.120.51.120 72768 port 3 72768 unique_id port 72768 remote_ip 10.8.1.10 72770 username aminvpn 72770 mac 72770 bytes_out 0 72770 bytes_in 0 72770 station_ip 5.120.51.120 72770 port 3 72770 unique_id port 72770 remote_ip 10.8.1.10 72771 username aminvpn 72771 mac 72771 bytes_out 0 72771 bytes_in 0 72771 station_ip 5.120.51.120 72771 port 3 72771 unique_id port 72771 remote_ip 10.8.1.10 72772 username aminvpn 72772 mac 72772 bytes_out 0 72772 bytes_in 0 72772 station_ip 5.120.51.120 72772 port 1 72772 unique_id port 72772 remote_ip 10.8.0.6 72775 username aminvpn 72775 mac 72775 bytes_out 0 72775 bytes_in 0 72775 station_ip 5.120.51.120 72775 port 1 72775 unique_id port 72775 remote_ip 10.8.0.6 72776 username aminvpn 72776 mac 72776 bytes_out 0 72776 bytes_in 0 72402 username alirezazamani 72402 unique_id port 72402 terminate_cause Lost-Carrier 72402 bytes_out 427 72402 bytes_in 18176 72402 station_ip 5.120.89.227 72402 port 15728735 72402 nas_port_type Virtual 72402 remote_ip 5.5.5.225 72408 username alinezhad 72408 unique_id port 72408 terminate_cause User-Request 72408 bytes_out 0 72408 bytes_in 0 72408 station_ip 5.202.12.208 72408 port 15728738 72408 nas_port_type Virtual 72408 remote_ip 5.5.5.236 72776 station_ip 5.120.51.120 72776 port 1 72776 unique_id port 72776 remote_ip 10.8.0.6 72779 username aminvpn 72779 mac 72779 bytes_out 0 72779 bytes_in 0 72779 station_ip 5.120.51.120 72779 port 1 72779 unique_id port 72779 remote_ip 10.8.0.6 72780 username alirezazamani 72780 unique_id port 72780 terminate_cause User-Request 72780 bytes_out 0 72780 bytes_in 0 72780 station_ip 5.119.10.236 72780 port 15728642 72780 nas_port_type Virtual 72780 remote_ip 5.5.5.254 72782 username aminvpn 72782 mac 72782 bytes_out 0 72782 bytes_in 0 72782 station_ip 5.120.51.120 72782 port 1 72782 unique_id port 72782 remote_ip 10.8.0.6 72783 username alirezazamani 72783 unique_id port 72783 terminate_cause Lost-Carrier 72418 username alinezhad 72418 unique_id port 72418 terminate_cause User-Request 72418 bytes_out 0 72418 bytes_in 0 72418 station_ip 5.202.12.208 72418 port 15728744 72418 nas_port_type Virtual 72418 remote_ip 5.5.5.236 72783 bytes_out 20180 72783 bytes_in 432 72783 station_ip 5.119.10.236 72783 port 15728641 72783 nas_port_type Virtual 72783 remote_ip 5.5.5.255 72787 username aminvpn 72787 mac 72787 bytes_out 0 72787 bytes_in 0 72787 station_ip 5.120.51.120 72787 port 1 72787 unique_id port 72787 remote_ip 10.8.0.6 72789 username aminvpn 72789 mac 72425 username mobina 72425 unique_id port 72425 terminate_cause Lost-Carrier 72425 bytes_out 2542518 72425 bytes_in 75764222 72425 station_ip 5.124.103.50 72425 port 15728733 72425 nas_port_type Virtual 72425 remote_ip 5.5.5.224 72426 username alinezhad 72426 unique_id port 72426 terminate_cause User-Request 72426 bytes_out 0 72426 bytes_in 0 72426 station_ip 5.202.12.208 72426 port 15728747 72426 nas_port_type Virtual 72426 remote_ip 5.5.5.236 72789 bytes_out 0 72789 bytes_in 0 72789 station_ip 5.120.51.120 72391 username zoha 72391 unique_id port 72391 terminate_cause Lost-Carrier 72391 bytes_out 853087 72391 bytes_in 10524380 72391 station_ip 5.119.56.82 72391 port 15728727 72391 nas_port_type Virtual 72391 remote_ip 5.5.5.228 72392 username alirezazamani 72392 unique_id port 72392 terminate_cause User-Request 72392 bytes_out 260145 72392 bytes_in 3479217 72392 station_ip 5.120.89.227 72392 port 15728730 72392 nas_port_type Virtual 72392 remote_ip 5.5.5.225 72393 username alirezazamani 72393 unique_id port 72393 terminate_cause User-Request 72393 bytes_out 0 72393 bytes_in 0 72393 station_ip 5.120.89.227 72393 port 15728731 72393 nas_port_type Virtual 72393 remote_ip 5.5.5.225 72778 remote_ip 10.8.0.6 72784 username aminvpn 72784 mac 72784 bytes_out 0 72784 bytes_in 0 72784 station_ip 5.120.51.120 72784 port 1 72784 unique_id port 72405 username alirezazamani 72405 unique_id port 72405 terminate_cause User-Request 72405 bytes_out 3785731 72405 bytes_in 46973914 72405 station_ip 5.120.182.105 72405 port 15728736 72405 nas_port_type Virtual 72405 remote_ip 5.5.5.223 72784 remote_ip 10.8.0.6 72785 username alirezazamani 72785 unique_id port 72785 terminate_cause User-Request 72785 bytes_out 0 72785 bytes_in 0 72785 station_ip 5.119.10.236 72785 port 15728645 72785 nas_port_type Virtual 72785 remote_ip 5.5.5.254 72786 username aminvpn 72786 mac 72786 bytes_out 0 72786 bytes_in 0 72786 station_ip 5.120.51.120 81063 username soleymani 81063 unique_id port 81063 terminate_cause User-Request 81063 bytes_out 0 81063 bytes_in 0 81063 station_ip 5.119.61.84 81063 port 15728659 81063 nas_port_type Virtual 81063 remote_ip 5.5.5.239 81066 username madadi 81066 unique_id port 81066 terminate_cause Lost-Carrier 81066 bytes_out 61886 81066 bytes_in 244052 81066 station_ip 5.120.18.2 81066 port 15728655 81066 nas_port_type Virtual 81066 remote_ip 5.5.5.242 81068 username zoha 72434 username mobina 72434 unique_id port 72434 terminate_cause Lost-Carrier 72434 bytes_out 1452941 72434 bytes_in 38753723 72434 station_ip 5.124.86.39 72434 port 15728748 72434 nas_port_type Virtual 72434 remote_ip 5.5.5.221 72436 username alirezazamani 72436 unique_id port 72436 terminate_cause User-Request 72436 bytes_out 514 72436 bytes_in 220 72436 station_ip 94.183.213.166 72436 port 15728753 72436 nas_port_type Virtual 72436 remote_ip 5.5.5.220 72439 username alirezazamani 72439 unique_id port 72439 terminate_cause User-Request 72439 bytes_out 630033 72439 bytes_in 11325401 72439 station_ip 5.119.115.142 72439 port 15728755 72439 nas_port_type Virtual 72439 remote_ip 5.5.5.219 72441 username alirezazamani 72441 unique_id port 72441 terminate_cause User-Request 72441 bytes_out 3076180 72441 bytes_in 111441633 72441 station_ip 94.183.213.166 72441 port 15728756 72441 nas_port_type Virtual 72441 remote_ip 5.5.5.220 72446 username mobina 72446 unique_id port 72446 terminate_cause Lost-Carrier 72446 bytes_out 57814 72446 bytes_in 53044 72446 station_ip 31.7.112.124 72446 port 15728759 72446 nas_port_type Virtual 72446 remote_ip 5.5.5.216 72447 username alirezazamani 72447 unique_id port 72447 terminate_cause User-Request 72447 bytes_out 42029349 72447 bytes_in 1610529894 72447 station_ip 94.183.213.166 72447 port 15728761 72447 nas_port_type Virtual 72447 remote_ip 5.5.5.220 72452 username mobina 72452 unique_id port 72452 terminate_cause User-Request 72452 bytes_out 218771 72452 bytes_in 5077912 72452 station_ip 5.123.104.178 72452 port 15728767 72452 nas_port_type Virtual 72452 remote_ip 5.5.5.214 81068 unique_id port 81068 terminate_cause Lost-Carrier 81068 bytes_out 2462960 72786 port 1 72786 unique_id port 72786 remote_ip 10.8.0.6 72792 username aminvpn 72792 mac 72792 bytes_out 0 72792 bytes_in 0 72792 station_ip 5.120.51.120 72398 username alirezazamani 72398 unique_id port 72398 terminate_cause User-Request 72398 bytes_out 60503 72398 bytes_in 1220502 72398 station_ip 5.120.89.227 72398 port 15728734 72398 nas_port_type Virtual 72398 remote_ip 5.5.5.225 72401 username iranmanesh 72401 unique_id port 72401 terminate_cause Lost-Carrier 72401 bytes_out 1563356 72401 bytes_in 20482447 72401 station_ip 5.114.228.231 72401 port 15728719 72401 nas_port_type Virtual 72401 remote_ip 5.5.5.251 72792 port 1 72792 unique_id port 72792 remote_ip 10.8.0.6 72797 username aminvpn 72797 mac 72797 bytes_out 0 72797 bytes_in 0 72797 station_ip 5.120.51.120 72406 username alinezhad 72406 unique_id port 72406 terminate_cause User-Request 72406 bytes_out 27978 72406 bytes_in 592336 72406 station_ip 5.202.12.208 72406 port 15728737 72406 nas_port_type Virtual 72406 remote_ip 5.5.5.236 72411 username alinezhad 72411 unique_id port 72411 terminate_cause User-Request 72411 bytes_out 0 72411 bytes_in 0 72411 station_ip 5.202.12.208 72411 port 15728739 72411 nas_port_type Virtual 72411 remote_ip 5.5.5.236 72412 username alirezazamani 72412 unique_id port 72412 terminate_cause User-Request 72412 bytes_out 1734599 72412 bytes_in 44293656 72412 station_ip 5.120.182.105 72412 port 15728740 72412 nas_port_type Virtual 72412 remote_ip 5.5.5.223 72797 port 1 72797 unique_id port 72797 remote_ip 10.8.0.6 72798 username mobina 72798 unique_id port 72798 terminate_cause User-Request 72798 bytes_out 0 72798 bytes_in 0 72416 username aminvpn 72416 unique_id port 72416 terminate_cause Lost-Carrier 72416 bytes_out 146283 72416 bytes_in 700063 72416 station_ip 78.39.29.73 72416 port 15728741 72416 nas_port_type Virtual 72416 remote_ip 5.5.5.249 72417 username alinezhad 72417 unique_id port 72417 terminate_cause User-Request 72417 bytes_out 0 72417 bytes_in 0 72417 station_ip 5.202.12.208 72417 port 15728742 72417 nas_port_type Virtual 72417 remote_ip 5.5.5.236 72798 station_ip 5.124.161.236 72798 port 15728647 72798 nas_port_type Virtual 72798 remote_ip 5.5.5.250 72801 username aminvpn 72801 kill_reason Another user logged on this global unique id 72801 mac 72801 bytes_out 0 72431 username alirezazamani 72431 unique_id port 72431 terminate_cause Lost-Carrier 72431 bytes_out 10013464 72431 bytes_in 167238881 72431 station_ip 5.120.182.105 72431 port 15728696 72431 nas_port_type Virtual 72431 remote_ip 5.5.5.240 72435 username alinezhad 72435 unique_id port 72435 terminate_cause User-Request 72435 bytes_out 0 72435 bytes_in 0 72435 station_ip 5.202.12.208 72435 port 15728752 72435 nas_port_type Virtual 72435 remote_ip 5.5.5.236 72801 bytes_in 0 72801 station_ip 5.120.51.120 72801 port 1 72801 unique_id port 72802 username alirezazamani 72802 unique_id port 72802 terminate_cause User-Request 72802 bytes_out 449858 72802 bytes_in 21997 72802 station_ip 5.119.194.241 72802 port 15728644 72802 nas_port_type Virtual 72802 remote_ip 5.5.5.252 72808 username alinezhad 72808 unique_id port 72443 username alirezazamani 72443 unique_id port 72443 terminate_cause Lost-Carrier 72443 bytes_out 150411 72443 bytes_in 4044881 72443 station_ip 89.34.60.172 72443 port 15728757 72443 nas_port_type Virtual 72443 remote_ip 5.5.5.218 72444 username alirezazamani 72444 unique_id port 72444 terminate_cause Lost-Carrier 72444 bytes_out 246223 72444 bytes_in 4979973 72444 station_ip 89.34.60.172 72444 port 15728758 72444 nas_port_type Virtual 72788 username alirezazamani 72428 username aminvpn 72428 unique_id port 72428 terminate_cause Lost-Carrier 72428 bytes_out 451764 72428 bytes_in 2742057 72428 station_ip 78.39.29.73 72428 port 15728743 72428 nas_port_type Virtual 72428 remote_ip 5.5.5.249 72788 unique_id port 72788 terminate_cause Lost-Carrier 72788 bytes_out 66988 72788 bytes_in 122 72788 station_ip 5.119.119.64 72788 port 15728643 72788 nas_port_type Virtual 72788 remote_ip 5.5.5.253 72791 username aminvpn 72791 mac 72791 bytes_out 0 72791 bytes_in 0 72791 station_ip 5.120.51.120 72791 port 1 72791 unique_id port 72791 remote_ip 10.8.0.6 72793 username aminvpn 72793 mac 72793 bytes_out 0 72793 bytes_in 0 72793 station_ip 5.120.51.120 72793 port 1 72793 unique_id port 72793 remote_ip 10.8.0.6 72795 username aminvpn 72795 mac 72795 bytes_out 0 72795 bytes_in 0 72795 station_ip 5.120.51.120 72795 port 1 72795 unique_id port 72795 remote_ip 10.8.0.6 72437 username alirezazamani 72437 kill_reason Maximum check online fails reached 72437 unique_id port 72437 bytes_out 116 72437 bytes_in 122 72437 station_ip 94.183.213.166 72437 port 15728754 72437 nas_port_type Virtual 72437 remote_ip 5.5.5.220 72442 username zoha 72442 unique_id port 72442 terminate_cause User-Request 72442 bytes_out 1544444 72442 bytes_in 11993876 72442 station_ip 5.119.56.82 72442 port 15728751 72442 nas_port_type Virtual 72442 remote_ip 5.5.5.228 72796 username aminvpn 72796 mac 72796 bytes_out 0 72796 bytes_in 0 72796 station_ip 5.120.51.120 81064 remote_ip 5.5.5.240 81067 username hamideh 72448 username alinezhad 72448 unique_id port 72448 terminate_cause User-Request 72448 bytes_out 0 72448 bytes_in 0 72448 station_ip 5.202.12.208 72448 port 15728763 72448 nas_port_type Virtual 72448 remote_ip 5.5.5.236 72455 username alirezazamani 72455 unique_id port 72455 terminate_cause User-Request 72455 bytes_out 136404 72455 bytes_in 1093025 72455 station_ip 5.120.182.105 72455 port 15728770 72455 nas_port_type Virtual 72455 remote_ip 5.5.5.223 72456 username alinezhad 72456 unique_id port 72456 terminate_cause User-Request 72456 bytes_out 0 72456 bytes_in 0 72456 station_ip 5.202.12.208 72456 port 15728771 72456 nas_port_type Virtual 72456 remote_ip 5.5.5.236 72457 username zoha 72457 unique_id port 72457 terminate_cause Lost-Carrier 72457 bytes_out 4250861 72457 bytes_in 46212778 72457 station_ip 5.119.56.82 72457 port 15728762 72457 nas_port_type Virtual 72457 remote_ip 5.5.5.228 72461 username nazanin 72461 unique_id port 72461 terminate_cause User-Request 72461 bytes_out 0 72461 bytes_in 0 72461 station_ip 113.203.60.113 72461 port 15728778 72461 nas_port_type Virtual 72461 remote_ip 5.5.5.210 72463 username goli 72463 unique_id port 72463 terminate_cause User-Request 72463 bytes_out 54670 72463 bytes_in 65197 72463 station_ip 113.203.54.2 72463 port 15728781 72463 nas_port_type Virtual 72463 remote_ip 5.5.5.207 81067 unique_id port 81067 terminate_cause Lost-Carrier 81067 bytes_out 724004 81067 bytes_in 15009983 81067 station_ip 5.120.46.102 81067 port 15728656 81067 nas_port_type Virtual 81067 remote_ip 5.5.5.241 81070 username avaanna 81070 unique_id port 81070 terminate_cause User-Request 81070 bytes_out 12054472 81070 bytes_in 1635722 81070 station_ip 113.203.88.97 81070 port 15728665 81070 nas_port_type Virtual 72468 username aminvpn 72468 unique_id port 72468 terminate_cause Lost-Carrier 72468 bytes_out 343941 72468 bytes_in 4330632 72468 station_ip 78.39.29.73 72468 port 15728785 72468 nas_port_type Virtual 72468 remote_ip 5.5.5.249 72444 remote_ip 5.5.5.217 81068 bytes_in 51868162 81068 station_ip 5.120.136.140 81068 port 15728653 81068 nas_port_type Virtual 81068 remote_ip 5.5.5.244 81069 username forozande 81069 unique_id port 81069 terminate_cause User-Request 81069 bytes_out 37922 72450 username alinezhad 72450 unique_id port 72450 terminate_cause User-Request 72450 bytes_out 0 72450 bytes_in 0 72450 station_ip 5.202.12.208 72450 port 15728765 72450 nas_port_type Virtual 72450 remote_ip 5.5.5.236 72451 username aminvpn 72451 unique_id port 72451 terminate_cause User-Request 72451 bytes_out 867672 72451 bytes_in 15451390 72451 station_ip 78.39.29.73 72451 port 15728764 72451 nas_port_type Virtual 72451 remote_ip 5.5.5.249 72453 username alinezhad 72453 unique_id port 72453 terminate_cause User-Request 72453 bytes_out 0 72453 bytes_in 0 72453 station_ip 5.202.12.208 72453 port 15728769 72453 nas_port_type Virtual 72453 remote_ip 5.5.5.236 72459 username alirezazamani 72459 unique_id port 72459 terminate_cause User-Request 72459 bytes_out 683400 72459 bytes_in 9578556 72459 station_ip 5.120.182.105 72459 port 15728772 72459 nas_port_type Virtual 72459 remote_ip 5.5.5.223 72460 username alinezhad 72460 unique_id port 72460 terminate_cause User-Request 72460 bytes_out 11823 72460 bytes_in 13712 72460 station_ip 83.122.103.183 72460 port 15728775 72460 nas_port_type Virtual 72460 remote_ip 5.5.5.211 72469 username aminvpn 72469 unique_id port 72469 terminate_cause Lost-Carrier 72469 bytes_out 13746573 72469 bytes_in 861947265 72469 station_ip 5.119.28.147 72469 port 15728786 72469 nas_port_type Virtual 72469 remote_ip 5.5.5.205 72472 username rashidi 72472 unique_id port 72472 terminate_cause Lost-Carrier 72472 bytes_out 10501119 72472 bytes_in 25752821 72472 station_ip 5.120.58.63 72472 port 15728779 72472 nas_port_type Virtual 72472 remote_ip 5.5.5.209 81069 bytes_in 336516 81069 station_ip 37.129.100.255 81069 port 15728664 81069 nas_port_type Virtual 81069 remote_ip 5.5.5.235 81074 username soleymani 81074 unique_id port 81074 terminate_cause Lost-Carrier 81074 bytes_out 28234 81074 bytes_in 314261 81074 station_ip 5.120.187.91 81074 port 15728663 81074 nas_port_type Virtual 81074 remote_ip 5.5.5.236 81078 username soleymani 81078 unique_id port 81078 terminate_cause Lost-Carrier 81078 bytes_out 47268 72483 bytes_out 67140 72483 bytes_in 53083 72483 station_ip 5.120.182.105 72483 port 15728646 72483 nas_port_type Virtual 72483 remote_ip 5.5.5.250 72487 username alinezhad 72487 unique_id port 72487 terminate_cause User-Request 72487 bytes_out 0 72487 bytes_in 0 72487 station_ip 5.202.98.83 72487 port 15728650 72487 nas_port_type Virtual 72487 remote_ip 5.5.5.248 72492 username mobina 72492 unique_id port 72492 terminate_cause Lost-Carrier 72492 bytes_out 45666 72492 bytes_in 127996 72492 station_ip 5.123.237.100 72492 port 15728655 72492 nas_port_type Virtual 72492 remote_ip 5.5.5.247 72493 username alirezazamani 72493 unique_id port 72493 terminate_cause User-Request 72493 bytes_out 1170001 72493 bytes_in 19146085 72493 station_ip 5.120.182.105 72493 port 15728656 72493 nas_port_type Virtual 72493 remote_ip 5.5.5.250 72494 username alinezhad 72494 unique_id port 72494 terminate_cause User-Request 72494 bytes_out 0 72494 bytes_in 0 72494 station_ip 5.202.98.83 72494 port 15728657 72494 nas_port_type Virtual 72494 remote_ip 5.5.5.248 72498 username mahdi 72498 unique_id port 72498 terminate_cause User-Request 72498 bytes_out 128571 72498 bytes_in 1539428 72498 station_ip 46.225.209.85 72498 port 15728663 72498 nas_port_type Virtual 72498 remote_ip 5.5.5.244 81078 bytes_in 206998 81070 remote_ip 5.5.5.234 81071 username soleymani 81071 unique_id port 81071 terminate_cause Lost-Carrier 81071 bytes_out 6278368 72458 username iranmanesh 72458 unique_id port 72458 terminate_cause Lost-Carrier 72458 bytes_out 307304 72458 bytes_in 753052 72458 station_ip 5.113.94.55 72458 port 15728760 72458 nas_port_type Virtual 72458 remote_ip 5.5.5.215 72462 username alirezazamani 72462 unique_id port 72462 terminate_cause User-Request 72462 bytes_out 11519624 72462 bytes_in 50808981 72462 station_ip 5.120.182.105 72462 port 15728773 72462 nas_port_type Virtual 72462 remote_ip 5.5.5.212 72465 username aminvpn 72465 unique_id port 72465 terminate_cause User-Request 72465 bytes_out 31690581 72465 bytes_in 456478423 72465 station_ip 78.39.29.73 72465 port 15728766 72465 nas_port_type Virtual 72465 remote_ip 5.5.5.249 81071 bytes_in 874180 81071 station_ip 5.119.61.84 81071 port 15728660 81071 nas_port_type Virtual 81071 remote_ip 5.5.5.239 81072 username madadi 81072 unique_id port 81072 terminate_cause Lost-Carrier 72471 username aminvpn 72471 unique_id port 72471 terminate_cause User-Request 72471 bytes_out 2436911 72471 bytes_in 91675895 72471 station_ip 5.120.15.123 72471 port 15728789 72471 nas_port_type Virtual 72471 remote_ip 5.5.5.204 72486 port 15728649 72486 nas_port_type Virtual 72486 remote_ip 5.5.5.249 72488 username kasra 72488 unique_id port 72488 terminate_cause User-Request 72488 bytes_out 69977 72488 bytes_in 681613 72488 station_ip 83.122.38.168 72488 port 15728651 72488 nas_port_type Virtual 72488 remote_ip 5.5.5.249 72489 username alinezhad 72489 unique_id port 72489 terminate_cause User-Request 72489 bytes_out 0 72489 bytes_in 0 72489 station_ip 5.202.98.83 72489 port 15728652 72489 nas_port_type Virtual 72489 remote_ip 5.5.5.248 72496 username alirezazamani 72496 unique_id port 72496 terminate_cause User-Request 72496 bytes_out 1652273 72496 bytes_in 42222138 72496 station_ip 5.120.182.105 72496 port 15728661 72496 nas_port_type Virtual 72496 remote_ip 5.5.5.245 72497 username mahdi 72497 unique_id port 72497 terminate_cause User-Request 72497 bytes_out 92612 72497 bytes_in 339604 72497 station_ip 46.225.209.85 72497 port 15728662 72497 nas_port_type Virtual 72497 remote_ip 5.5.5.244 72500 username alirezazamani 72500 unique_id port 72500 terminate_cause User-Request 72500 bytes_out 9078128 72500 bytes_in 34728905 72500 station_ip 5.120.182.105 72500 port 15728664 72500 nas_port_type Virtual 72500 remote_ip 5.5.5.245 72501 username alinezhad 72501 unique_id port 72501 terminate_cause User-Request 72501 bytes_out 33888 72501 bytes_in 311709 72501 station_ip 5.202.98.83 72501 port 15728669 72501 nas_port_type Virtual 72501 remote_ip 5.5.5.248 72502 username alirezazamani 72502 unique_id port 72502 terminate_cause User-Request 72502 bytes_out 658686 72502 bytes_in 17220638 72502 station_ip 89.47.73.10 72502 port 15728668 72502 nas_port_type Virtual 72502 remote_ip 5.5.5.240 72504 username mahdi 72504 unique_id port 72504 terminate_cause Lost-Carrier 72504 bytes_out 4848168 72504 bytes_in 110150037 72504 station_ip 5.120.81.87 72504 port 15728667 72504 nas_port_type Virtual 72504 remote_ip 5.5.5.241 72505 username rashidi 72505 unique_id port 72505 terminate_cause User-Request 72505 bytes_out 1498968 72505 bytes_in 30589112 72505 station_ip 5.119.225.147 72505 port 15728665 72505 nas_port_type Virtual 72505 remote_ip 5.5.5.243 72506 username aminsaeedi 72506 unique_id port 72506 terminate_cause User-Request 72506 bytes_out 559876 72506 bytes_in 13610956 72506 station_ip 31.59.40.176 72506 port 15728674 72506 nas_port_type Virtual 72506 remote_ip 5.5.5.238 72470 username aminvpn 72470 unique_id port 72470 terminate_cause User-Request 72470 bytes_out 0 72470 bytes_in 0 72470 station_ip 5.120.15.123 72470 port 15728787 72470 nas_port_type Virtual 72470 remote_ip 5.5.5.204 81072 bytes_out 68163 81072 bytes_in 252794 81072 station_ip 5.120.28.198 81072 port 15728662 81072 nas_port_type Virtual 81072 remote_ip 5.5.5.237 81079 username madadi 72789 port 1 72789 unique_id port 72789 remote_ip 10.8.0.6 72790 username aminvpn 72790 mac 72790 bytes_out 0 72790 bytes_in 0 72790 station_ip 5.120.51.120 72514 username zoha 72514 unique_id port 72514 terminate_cause User-Request 72514 bytes_out 94384 72514 bytes_in 598052 72514 station_ip 5.119.56.82 72514 port 15728676 72514 nas_port_type Virtual 72514 remote_ip 5.5.5.239 72790 port 1 72790 unique_id port 72790 remote_ip 10.8.0.6 72794 username alirezazamani 72794 unique_id port 72794 terminate_cause Lost-Carrier 72794 bytes_out 40051 72794 bytes_in 122 72794 station_ip 5.120.38.163 72516 username alinezhad 72516 unique_id port 72516 terminate_cause User-Request 72516 bytes_out 13536 72516 bytes_in 22176 72516 station_ip 5.202.98.83 72516 port 15728679 72516 nas_port_type Virtual 72516 remote_ip 5.5.5.248 72794 port 15728646 72794 nas_port_type Virtual 72794 remote_ip 5.5.5.251 72799 username aminvpn 72799 kill_reason Another user logged on this global unique id 72799 mac 72799 bytes_out 0 72799 bytes_in 0 72799 station_ip 5.120.51.120 72799 port 1 72799 unique_id port 72799 remote_ip 10.8.0.6 72803 username alirezazamani 72803 unique_id port 72803 terminate_cause User-Request 72803 bytes_out 0 72803 bytes_in 0 72803 station_ip 5.119.109.63 72803 port 15728652 72803 nas_port_type Virtual 72803 remote_ip 5.5.5.248 72804 username aminvpn 72804 mac 72804 bytes_out 0 72804 bytes_in 0 72804 station_ip 5.120.51.120 72804 port 1 72804 unique_id port 72805 username alinezhad 72805 unique_id port 72805 terminate_cause User-Request 72805 bytes_out 0 72805 bytes_in 0 72805 station_ip 5.202.26.164 72805 port 15728653 72805 nas_port_type Virtual 72805 remote_ip 5.5.5.247 72809 username ksr 72809 unique_id port 72809 terminate_cause User-Request 72809 bytes_out 24080 72809 bytes_in 298 72809 station_ip 94.176.15.121 72809 port 15728658 72809 nas_port_type Virtual 72809 remote_ip 5.5.5.245 72810 username ksr 72810 unique_id port 72810 terminate_cause User-Request 72810 bytes_out 13741 72810 bytes_in 308 72810 station_ip 94.176.15.121 72810 port 15728659 72810 nas_port_type Virtual 72810 remote_ip 5.5.5.245 72537 username alirezazamani 72537 mac 72537 bytes_out 0 72537 bytes_in 0 72537 station_ip 5.120.182.105 72537 port 1 72537 unique_id port 72537 remote_ip 10.8.0.14 72540 username alirezazamani 72540 mac 72540 bytes_out 0 72540 bytes_in 0 72540 station_ip 5.120.182.105 72540 port 1 72540 unique_id port 72540 remote_ip 10.8.0.14 72542 username alirezazamani 72542 mac 72542 bytes_out 0 72542 bytes_in 0 72542 station_ip 5.120.182.105 72542 port 1 72542 unique_id port 72542 remote_ip 10.8.0.14 72817 username mahdi 72817 unique_id port 72817 terminate_cause User-Request 72817 bytes_out 12792 72817 bytes_in 122 72817 station_ip 5.120.94.104 72817 port 15728665 72817 nas_port_type Virtual 72545 username alirezazamani 72545 mac 72545 bytes_out 0 72545 bytes_in 0 72545 station_ip 5.120.182.105 72545 port 1 72545 unique_id port 72545 remote_ip 10.8.0.14 72817 remote_ip 5.5.5.241 72550 username mobina 72550 unique_id port 72796 port 1 72796 unique_id port 72796 remote_ip 10.8.0.6 72800 username ahmad 72800 unique_id port 72800 terminate_cause User-Request 72800 bytes_out 79705 72800 bytes_in 826 72800 station_ip 86.57.32.231 72800 port 15728648 72800 nas_port_type Virtual 72800 remote_ip 5.5.5.249 72806 username alinezhad 72806 unique_id port 72806 terminate_cause User-Request 72806 bytes_out 26974 72513 username zoha 72513 unique_id port 72513 terminate_cause User-Request 72513 bytes_out 2785977 72513 bytes_in 43249133 72513 station_ip 5.119.56.82 72513 port 15728673 72513 nas_port_type Virtual 72513 remote_ip 5.5.5.239 72518 username alirezazamani 72518 mac 72518 bytes_out 0 72518 bytes_in 0 72518 station_ip 5.120.182.105 72518 port 2 72518 unique_id port 72518 remote_ip 10.8.0.14 72524 username alirezazamani 72524 mac 72524 bytes_out 0 72524 bytes_in 0 72524 station_ip 5.120.182.105 72524 port 1 72524 unique_id port 72524 remote_ip 10.8.0.14 72806 bytes_in 122 72806 station_ip 5.202.26.164 72806 port 15728654 72806 nas_port_type Virtual 72806 remote_ip 5.5.5.247 72807 username alinezhad 72807 unique_id port 72807 terminate_cause User-Request 72529 username alirezazamani 72529 mac 72529 bytes_out 0 72529 bytes_in 0 72529 station_ip 5.120.182.105 72529 port 1 72529 unique_id port 72529 remote_ip 10.8.0.14 72807 bytes_out 0 72807 bytes_in 0 72807 station_ip 5.202.26.164 72807 port 15728655 72807 nas_port_type Virtual 72807 remote_ip 5.5.5.247 72812 username alinezhad 72812 unique_id port 72812 terminate_cause User-Request 72812 bytes_out 0 72812 bytes_in 0 72812 station_ip 5.202.26.164 72812 port 15728662 72812 nas_port_type Virtual 72812 remote_ip 5.5.5.247 72813 username mahdi 72813 unique_id port 72813 terminate_cause User-Request 72813 bytes_out 131313 72813 bytes_in 1141 72813 station_ip 5.119.22.103 72813 port 15728661 72813 nas_port_type Virtual 72813 remote_ip 5.5.5.243 72818 username mahdi 72818 unique_id port 72818 terminate_cause NAS-Error 72818 bytes_out 34 72818 bytes_in 138 72818 station_ip 5.120.94.104 72818 port 15728666 72818 nas_port_type Virtual 72547 username alirezazamani 72547 mac 72547 bytes_out 0 72547 bytes_in 0 72547 station_ip 5.120.182.105 72547 port 1 72547 unique_id port 72547 remote_ip 10.8.0.14 72557 username alirezazamani 72557 mac 72557 bytes_out 0 72557 bytes_in 0 72557 station_ip 5.120.182.105 72557 port 1 72557 unique_id port 72561 username alirezazamani 72561 mac 72561 bytes_out 0 72561 bytes_in 0 72561 station_ip 5.120.182.105 72561 port 1 72561 unique_id port 72561 remote_ip 10.8.0.14 72818 remote_ip 5.5.5.241 72820 username alinezhad 72820 unique_id port 72820 terminate_cause User-Request 72820 bytes_out 0 72820 bytes_in 0 72820 station_ip 5.202.26.164 72820 port 15728667 72567 username nazanin 72567 unique_id port 72567 terminate_cause User-Request 72567 bytes_out 0 72567 bytes_in 0 72567 station_ip 113.203.60.113 72567 port 15728686 72567 nas_port_type Virtual 72567 remote_ip 5.5.5.234 72568 username nazanin 72568 unique_id port 72568 terminate_cause User-Request 72568 bytes_out 0 72568 bytes_in 0 72568 station_ip 113.203.60.113 72568 port 15728687 72568 nas_port_type Virtual 72568 remote_ip 5.5.5.234 72820 nas_port_type Virtual 72576 username alirezazamani 72576 kill_reason Another user logged on this global unique id 72576 mac 72576 bytes_out 0 72576 bytes_in 0 72576 station_ip 5.120.182.105 72576 port 1 72576 unique_id port 72577 username alirezazamani 72577 mac 72808 terminate_cause User-Request 72808 bytes_out 0 72808 bytes_in 0 72808 station_ip 5.202.26.164 72808 port 15728656 72808 nas_port_type Virtual 72808 remote_ip 5.5.5.247 81075 unique_id port 72527 username alirezazamani 72527 mac 72527 bytes_out 0 72527 bytes_in 0 72527 station_ip 5.120.182.105 72527 port 1 72527 unique_id port 72527 remote_ip 10.8.0.14 81075 terminate_cause User-Request 81075 bytes_out 466887 81075 bytes_in 14365042 81075 station_ip 113.203.49.19 81075 port 15728668 81075 nas_port_type Virtual 81075 remote_ip 5.5.5.254 72814 username mahdi 72814 unique_id port 72814 terminate_cause Lost-Carrier 72814 bytes_out 15247 72814 bytes_in 122 72814 station_ip 5.119.22.103 72814 port 15728660 72814 nas_port_type Virtual 72538 username zoha 72538 unique_id port 72538 terminate_cause Lost-Carrier 72538 bytes_out 557508 72538 bytes_in 9124054 72538 station_ip 5.119.56.82 72538 port 15728680 72538 nas_port_type Virtual 72538 remote_ip 5.5.5.239 72814 remote_ip 5.5.5.244 72815 username aminvpn 72815 mac 72815 bytes_out 0 72815 bytes_in 0 72815 station_ip 5.120.51.120 72815 port 1 72815 unique_id port 72815 remote_ip 10.8.0.6 72816 username aminsaeedi 72816 unique_id port 72816 terminate_cause User-Request 72816 bytes_out 0 72816 bytes_in 0 72816 station_ip 31.59.39.80 72816 port 15728664 72816 nas_port_type Virtual 72816 remote_ip 5.5.5.242 72819 username mahdi 72819 unique_id port 72819 terminate_cause Lost-Carrier 72819 bytes_out 53187 72819 bytes_in 1097 72819 station_ip 5.119.22.103 72819 port 15728663 72819 nas_port_type Virtual 72819 remote_ip 5.5.5.243 72821 username alinezhad 72821 unique_id port 72821 terminate_cause User-Request 72821 bytes_out 38158 72821 bytes_in 122 72821 station_ip 5.202.26.164 72821 port 15728669 72821 nas_port_type Virtual 72821 remote_ip 5.5.5.247 72825 username zoha 72825 unique_id port 72825 terminate_cause Lost-Carrier 72825 bytes_out 15431 72554 username ksr 72554 unique_id port 72554 terminate_cause User-Request 72554 bytes_out 3158840 72554 bytes_in 50227476 72554 station_ip 151.234.20.47 72554 port 15728681 72554 nas_port_type Virtual 72554 remote_ip 5.5.5.236 72825 bytes_in 122 72825 station_ip 5.119.184.91 72825 port 15728670 72825 nas_port_type Virtual 72825 remote_ip 5.5.5.240 72826 username aminvpn 72826 mac 72826 bytes_out 0 72826 bytes_in 0 72826 station_ip 78.39.29.73 72826 port 1 72826 unique_id port 72831 username ahmad 72831 unique_id port 72831 terminate_cause User-Request 72831 bytes_out 53694 72831 bytes_in 122 72831 station_ip 86.57.50.38 72831 port 15728676 72831 nas_port_type Virtual 72831 remote_ip 5.5.5.235 72837 username aminvpn 72837 mac 72837 bytes_out 0 72560 username kasra 72560 unique_id port 72560 terminate_cause User-Request 72560 bytes_out 68519 72560 bytes_in 553376 72560 station_ip 37.129.53.252 72560 port 15728684 72560 nas_port_type Virtual 72560 remote_ip 5.5.5.235 72562 username zoha 72562 unique_id port 72562 terminate_cause Lost-Carrier 72562 bytes_out 527144 72562 bytes_in 4752376 72562 station_ip 5.119.56.82 72562 port 15728683 72562 nas_port_type Virtual 72562 remote_ip 5.5.5.239 72837 bytes_in 0 72837 station_ip 5.233.48.152 72837 port 1 72837 unique_id port 72837 remote_ip 10.8.0.6 72843 username aminvpn 72843 kill_reason Another user logged on this global unique id 72565 username alirezazamani 72565 mac 72565 bytes_out 0 72565 bytes_in 0 72565 station_ip 5.120.182.105 72565 port 1 72565 unique_id port 72565 remote_ip 10.8.0.14 72550 terminate_cause Lost-Carrier 72550 bytes_out 7229667 72550 bytes_in 179051685 72550 station_ip 5.123.86.133 72550 port 15728678 72550 nas_port_type Virtual 72550 remote_ip 5.5.5.237 72553 username alinezhad 72553 unique_id port 72553 terminate_cause User-Request 72553 bytes_out 33467 72553 bytes_in 440497 72553 station_ip 5.202.98.83 72553 port 15728682 72553 nas_port_type Virtual 72553 remote_ip 5.5.5.248 72556 username alirezazamani 72556 kill_reason Another user logged on this global unique id 72556 mac 72556 bytes_out 0 72556 bytes_in 0 72556 station_ip 5.120.182.105 72556 port 1 72556 unique_id port 72556 remote_ip 10.8.0.14 72820 remote_ip 5.5.5.247 72822 username aminvpn 72822 kill_reason Another user logged on this global unique id 72822 mac 72822 bytes_out 0 72822 bytes_in 0 72822 station_ip 78.39.29.73 72822 port 1 72571 username alirezazamani 72571 kill_reason Another user logged on this global unique id 72571 mac 72571 bytes_out 0 72571 bytes_in 0 72571 station_ip 5.120.182.105 72571 port 1 72571 unique_id port 72571 remote_ip 10.8.0.14 72822 unique_id port 72822 remote_ip 10.8.0.6 72823 username zoha 72823 unique_id port 72823 terminate_cause User-Request 72823 bytes_out 216226 72823 bytes_in 12262 72823 station_ip 5.119.184.91 72578 username mobina 72578 unique_id port 72578 terminate_cause Lost-Carrier 72578 bytes_out 85231 72578 bytes_in 244804 72578 station_ip 5.124.29.236 72578 port 15728689 72578 nas_port_type Virtual 72578 remote_ip 5.5.5.233 72584 username alirezazamani 72584 unique_id port 72584 terminate_cause Lost-Carrier 72584 bytes_out 14307057 72584 bytes_in 311401325 72584 station_ip 5.120.182.105 72584 port 15728660 72584 nas_port_type Virtual 72584 remote_ip 5.5.5.250 72823 port 15728668 72823 nas_port_type Virtual 72823 remote_ip 5.5.5.240 72832 username goli 72832 unique_id port 72589 username zoha 72589 unique_id port 72589 terminate_cause Lost-Carrier 72589 bytes_out 910884 72589 bytes_in 10602827 72589 station_ip 5.119.56.82 72589 port 15728696 72589 nas_port_type Virtual 72589 remote_ip 5.5.5.239 72591 username alirezazamani 72591 unique_id port 72591 terminate_cause User-Request 72591 bytes_out 460 72591 bytes_in 190 72591 station_ip 5.119.182.42 72591 port 15728701 72591 nas_port_type Virtual 72591 remote_ip 5.5.5.228 72592 username alirezazamani 72592 unique_id port 72592 terminate_cause Lost-Carrier 72592 bytes_out 368984 72592 bytes_in 4794407 72592 station_ip 5.119.107.83 72592 port 15728699 72592 nas_port_type Virtual 72592 remote_ip 5.5.5.229 72594 username ksr 72594 unique_id port 72594 terminate_cause User-Request 72594 bytes_out 505639 72594 bytes_in 9017396 72594 station_ip 151.234.20.47 72594 port 15728704 72594 nas_port_type Virtual 72594 remote_ip 5.5.5.226 72596 username ksr 72596 unique_id port 72596 terminate_cause Lost-Carrier 72596 bytes_out 11900907 72596 bytes_in 256975553 72596 station_ip 151.234.20.47 72596 port 15728693 72596 nas_port_type Virtual 72596 remote_ip 5.5.5.236 72601 username rashidi 72601 unique_id port 72601 terminate_cause User-Request 72601 bytes_out 30106 72601 bytes_in 105544 72601 station_ip 5.119.225.147 72601 port 15728709 72601 nas_port_type Virtual 72601 remote_ip 5.5.5.243 72606 username zoha 72606 kill_reason Wrong password 72606 unique_id port 72606 bytes_out 0 72606 bytes_in 0 72606 station_ip 5.119.56.82 72606 port 15728715 72606 nas_port_type Virtual 72608 username zoha 72608 kill_reason Wrong password 72608 unique_id port 72608 bytes_out 0 72608 bytes_in 0 72608 station_ip 5.119.56.82 72608 port 15728717 72608 nas_port_type Virtual 72569 username alinezhad 72569 kill_reason Maximum check online fails reached 72569 unique_id port 72569 bytes_out 795493 72569 bytes_in 11070591 72569 station_ip 5.202.98.83 72569 port 15728685 72569 nas_port_type Virtual 72569 remote_ip 5.5.5.248 72824 username rashidi 72824 unique_id port 72824 terminate_cause User-Request 72824 bytes_out 0 72824 bytes_in 0 72824 station_ip 5.119.244.10 72824 port 15728671 72824 nas_port_type Virtual 72824 remote_ip 5.5.5.239 72827 username mahdi 72827 unique_id port 72827 terminate_cause Lost-Carrier 72827 bytes_out 98928 72827 bytes_in 6016 72827 station_ip 5.120.130.40 72827 port 15728672 72582 username mobina 72582 unique_id port 72582 terminate_cause Lost-Carrier 72582 bytes_out 44278 72582 bytes_in 87048 72582 station_ip 5.124.182.4 72582 port 15728690 72582 nas_port_type Virtual 72582 remote_ip 5.5.5.232 81076 username madadi 81076 unique_id port 81076 terminate_cause Lost-Carrier 81076 bytes_out 105073 81076 bytes_in 561067 81076 station_ip 5.119.233.102 81076 port 15728666 81076 nas_port_type Virtual 81076 remote_ip 5.5.5.233 72586 username alirezazamani 72586 unique_id port 72586 terminate_cause User-Request 72586 bytes_out 3709571 72586 bytes_in 116132347 72586 station_ip 5.233.65.151 72586 port 15728692 72586 nas_port_type Virtual 72586 remote_ip 5.5.5.231 72587 username goli 72587 unique_id port 72587 terminate_cause User-Request 72587 bytes_out 108443 72587 bytes_in 2328963 72587 station_ip 113.203.2.66 72587 port 15728697 72587 nas_port_type Virtual 72587 remote_ip 5.5.5.230 72588 username alinezhad 72588 unique_id port 72588 terminate_cause User-Request 72588 bytes_out 0 72588 bytes_in 0 72588 station_ip 5.202.98.83 72588 port 15728700 72588 nas_port_type Virtual 72588 remote_ip 5.5.5.248 72590 username alirezazamani 72590 unique_id port 72590 terminate_cause Lost-Carrier 72590 bytes_out 1585609 72590 bytes_in 21110311 72590 station_ip 5.120.182.105 72590 port 15728694 72590 nas_port_type Virtual 72590 remote_ip 5.5.5.245 72827 nas_port_type Virtual 72827 remote_ip 5.5.5.238 72828 username alinezhad 72828 unique_id port 72828 terminate_cause User-Request 72828 bytes_out 0 81077 username madadi 81077 kill_reason Maximum check online fails reached 72595 username alirezazamani 72595 unique_id port 72595 terminate_cause Lost-Carrier 72595 bytes_out 68589 72595 bytes_in 229674 72595 station_ip 5.119.182.42 72595 port 15728702 72595 nas_port_type Virtual 72595 remote_ip 5.5.5.228 81077 unique_id port 81077 bytes_out 189196 81077 bytes_in 4777007 81077 station_ip 5.120.147.223 81077 port 15728671 81077 nas_port_type Virtual 72602 username zoha 72602 kill_reason Wrong password 72602 unique_id port 72602 bytes_out 0 72602 bytes_in 0 72602 station_ip 5.119.56.82 72602 port 15728711 72602 nas_port_type Virtual 72603 username zoha 72603 kill_reason Wrong password 72603 unique_id port 72603 bytes_out 0 72603 bytes_in 0 72603 station_ip 5.119.56.82 72603 port 15728713 72603 nas_port_type Virtual 72605 username zoha 72605 kill_reason Wrong password 72605 unique_id port 72605 bytes_out 0 72605 bytes_in 0 72605 station_ip 5.119.56.82 72605 port 15728714 72605 nas_port_type Virtual 72614 username mobina 72614 unique_id port 72614 terminate_cause Lost-Carrier 72614 bytes_out 426579 72614 bytes_in 15083180 72614 station_ip 5.123.225.130 72614 port 15728721 72614 nas_port_type Virtual 72614 remote_ip 5.5.5.221 72619 username alirezazamani 72619 unique_id port 72619 terminate_cause User-Request 72619 bytes_out 250587 72619 bytes_in 4125540 72619 station_ip 83.123.120.69 72619 port 15728725 72619 nas_port_type Virtual 72577 bytes_out 0 72577 bytes_in 0 72577 station_ip 5.120.182.105 72577 port 1 72577 unique_id port 72828 bytes_in 0 72828 station_ip 5.202.26.164 72828 port 15728673 72828 nas_port_type Virtual 72828 remote_ip 5.5.5.247 81077 remote_ip 5.5.5.230 81082 username asadi 81082 unique_id port 72580 username iranmanesh 72580 unique_id port 72580 terminate_cause Lost-Carrier 72580 bytes_out 7030257 72580 bytes_in 115172267 72580 station_ip 5.112.214.147 72580 port 15728645 72580 nas_port_type Virtual 72580 remote_ip 5.5.5.251 72581 username alinezhad 72581 unique_id port 72581 terminate_cause User-Request 72581 bytes_out 20699 72581 bytes_in 20333 72581 station_ip 5.202.98.83 72581 port 15728691 72581 nas_port_type Virtual 72581 remote_ip 5.5.5.248 72597 username iranmanesh 72597 unique_id port 72597 terminate_cause Lost-Carrier 72597 bytes_out 579589 72597 bytes_in 6334241 72597 station_ip 5.114.58.203 72597 port 15728705 72597 nas_port_type Virtual 72597 remote_ip 5.5.5.225 72598 username mobina 72598 unique_id port 72598 terminate_cause Lost-Carrier 72598 bytes_out 826158 72598 bytes_in 23154227 72598 station_ip 5.124.148.188 72598 port 15728707 72598 nas_port_type Virtual 72598 remote_ip 5.5.5.224 72599 username alinezhad 72599 unique_id port 72599 terminate_cause User-Request 72599 bytes_out 10781 72599 bytes_in 14802 72599 station_ip 83.122.89.10 72599 port 15728708 72599 nas_port_type Virtual 72599 remote_ip 5.5.5.223 72604 username aminvpn 72604 unique_id port 72604 terminate_cause User-Request 72604 bytes_out 0 72604 bytes_in 0 72604 station_ip 5.119.77.136 72604 port 15728710 72604 nas_port_type Virtual 72604 remote_ip 5.5.5.222 72607 username zoha 72607 kill_reason Wrong password 72607 unique_id port 72607 bytes_out 0 72607 bytes_in 0 72607 station_ip 5.119.56.82 72607 port 15728716 72607 nas_port_type Virtual 72615 username rashidi 72615 unique_id port 72615 terminate_cause Lost-Carrier 72615 bytes_out 9140787 72615 bytes_in 17316598 72615 station_ip 5.119.225.147 72615 port 15728712 72615 nas_port_type Virtual 72615 remote_ip 5.5.5.243 72618 username zoha 72618 unique_id port 72618 terminate_cause Lost-Carrier 72618 bytes_out 760125 72618 bytes_in 9541879 72618 station_ip 5.119.56.82 72618 port 15728720 72618 nas_port_type Virtual 72618 remote_ip 5.5.5.239 81082 terminate_cause User-Request 81082 bytes_out 91270 81082 bytes_in 710411 81082 station_ip 113.203.49.19 81082 port 15728679 81082 nas_port_type Virtual 72830 username alirezazamani 72830 unique_id port 72830 terminate_cause User-Request 72830 bytes_out 6455 72830 bytes_in 122 72830 station_ip 5.119.254.181 72830 port 15728675 72830 nas_port_type Virtual 72830 remote_ip 5.5.5.236 72833 username mahdi 72833 unique_id port 72833 terminate_cause Lost-Carrier 72833 bytes_out 180519 72833 bytes_in 3199 72833 station_ip 5.119.231.154 72833 port 15728677 72833 nas_port_type Virtual 72833 remote_ip 5.5.5.234 72834 username alirezazamani 72834 unique_id port 72834 terminate_cause User-Request 72834 bytes_out 0 72834 bytes_in 0 72834 station_ip 5.120.181.13 72834 port 15728681 72834 nas_port_type Virtual 72834 remote_ip 5.5.5.230 72835 username mobina 72835 unique_id port 72835 terminate_cause Lost-Carrier 72835 bytes_out 40247 72835 bytes_in 308 72835 station_ip 5.123.202.30 72835 port 15728679 72835 nas_port_type Virtual 72835 remote_ip 5.5.5.232 72838 username alirezazamani 72838 unique_id port 72838 terminate_cause User-Request 72838 bytes_out 22491 72838 bytes_in 122 72838 station_ip 5.120.34.150 72838 port 15728682 72838 nas_port_type Virtual 72838 remote_ip 5.5.5.229 72609 username zoha 72609 kill_reason Wrong password 72609 unique_id port 72609 bytes_out 0 72609 bytes_in 0 72609 station_ip 5.119.56.82 72609 port 15728718 72609 nas_port_type Virtual 72832 terminate_cause User-Request 72832 bytes_out 2850 72832 bytes_in 122 72832 station_ip 113.203.125.117 72832 port 15728678 72832 nas_port_type Virtual 72832 remote_ip 5.5.5.233 72836 username iranmanesh 72611 username alirezazamani 72611 unique_id port 72611 terminate_cause Lost-Carrier 72611 bytes_out 4144773 72611 bytes_in 73871592 72611 station_ip 5.119.135.102 72611 port 15728703 72611 nas_port_type Virtual 72611 remote_ip 5.5.5.227 72836 unique_id port 72836 terminate_cause Lost-Carrier 72836 bytes_out 148078 72836 bytes_in 5535 72836 station_ip 5.113.166.146 72836 port 15728680 72836 nas_port_type Virtual 72836 remote_ip 5.5.5.231 72613 username zoha 72613 unique_id port 72613 terminate_cause User-Request 72613 bytes_out 618963 72613 bytes_in 3709879 72613 station_ip 5.119.56.82 72613 port 15728719 72613 nas_port_type Virtual 72613 remote_ip 5.5.5.239 72616 username alinezhad 72616 unique_id port 72616 terminate_cause User-Request 72616 bytes_out 0 72616 bytes_in 0 72616 station_ip 5.202.11.63 72616 port 15728722 72616 nas_port_type Virtual 72616 remote_ip 5.5.5.220 72617 username ksr 72617 unique_id port 72617 terminate_cause User-Request 72617 bytes_out 14928398 72617 bytes_in 390105172 72617 station_ip 151.234.20.47 72617 port 15728706 72617 nas_port_type Virtual 72617 remote_ip 5.5.5.226 72840 username iranmanesh 72840 unique_id port 72840 terminate_cause Lost-Carrier 72840 bytes_out 108678 72840 bytes_in 3510 72840 station_ip 5.113.166.146 72840 port 15728683 72840 nas_port_type Virtual 72840 remote_ip 5.5.5.231 81078 station_ip 5.119.138.40 81078 port 15728669 81078 nas_port_type Virtual 81078 remote_ip 5.5.5.232 81083 username alinezhad 81083 unique_id port 81083 terminate_cause User-Request 81083 bytes_out 0 81083 bytes_in 0 72844 username aminvpn 72844 mac 72844 bytes_out 0 72844 bytes_in 0 72844 station_ip 5.119.136.60 72844 port 1 72844 unique_id port 72846 username alirezazamani 72846 unique_id port 72846 terminate_cause User-Request 72846 bytes_out 17071 72846 bytes_in 3127 72846 station_ip 5.134.167.55 72846 port 15728691 72846 nas_port_type Virtual 72846 remote_ip 5.5.5.226 72847 username zoha 72847 unique_id port 72847 terminate_cause User-Request 72847 bytes_out 0 72847 bytes_in 0 72847 station_ip 5.119.184.91 72847 port 15728694 72847 nas_port_type Virtual 72847 remote_ip 5.5.5.240 72854 username aminvpn 72854 unique_id port 72854 terminate_cause User-Request 72854 bytes_out 9752 72854 bytes_in 298 72854 station_ip 5.233.48.152 72854 port 15728699 72854 nas_port_type Virtual 72854 remote_ip 5.5.5.222 72856 username ahmad 72856 unique_id port 72856 terminate_cause User-Request 72856 bytes_out 292967 72856 bytes_in 5941 72856 station_ip 86.57.44.18 72856 port 15728701 72856 nas_port_type Virtual 72856 remote_ip 5.5.5.221 72859 username iranmanesh 72859 unique_id port 72859 terminate_cause Lost-Carrier 72859 bytes_out 163892 72859 bytes_in 2388 72859 station_ip 5.114.134.101 72859 port 15728703 72859 nas_port_type Virtual 72859 remote_ip 5.5.5.219 72860 username aminvpn 72860 kill_reason Another user logged on this global unique id 72860 mac 72860 bytes_out 0 72860 bytes_in 0 72860 station_ip 5.119.136.60 72860 port 1 72860 unique_id port 72860 remote_ip 10.8.0.6 72862 username iranmanesh 72862 unique_id port 72862 terminate_cause User-Request 72862 bytes_out 65646 72862 bytes_in 3721 72862 station_ip 5.114.134.101 72619 remote_ip 5.5.5.218 72839 username mobina 72839 unique_id port 72839 terminate_cause Lost-Carrier 72839 bytes_out 211 72839 bytes_in 212 72839 station_ip 5.124.120.195 72839 port 15728688 72839 nas_port_type Virtual 72839 remote_ip 5.5.5.228 72841 username alirezazamani 72841 unique_id port 72841 terminate_cause Lost-Carrier 72841 bytes_out 168101 72841 bytes_in 122 72841 station_ip 5.120.34.150 72841 port 15728687 72841 nas_port_type Virtual 72841 remote_ip 5.5.5.229 72848 username alirezazamani 72848 unique_id port 72848 terminate_cause User-Request 72848 bytes_out 0 72848 bytes_in 0 72848 station_ip 5.134.167.55 72848 port 15728693 72848 nas_port_type Virtual 72848 remote_ip 5.5.5.225 72849 username alinezhad 72849 unique_id port 72849 terminate_cause User-Request 72849 bytes_out 0 72849 bytes_in 0 72849 station_ip 5.202.26.164 72849 port 15728695 72849 nas_port_type Virtual 72849 remote_ip 5.5.5.247 72851 username zoha 72851 unique_id port 72851 terminate_cause Lost-Carrier 72851 bytes_out 174427 72851 bytes_in 5217 72851 station_ip 5.119.184.91 72851 port 15728696 72851 nas_port_type Virtual 72851 remote_ip 5.5.5.240 81079 unique_id port 81079 terminate_cause Lost-Carrier 81079 bytes_out 64053 81079 bytes_in 285631 81079 station_ip 5.120.48.1 81079 port 15728670 81079 nas_port_type Virtual 81079 remote_ip 5.5.5.231 81080 username soleymani 72855 username alirezazamani 72855 unique_id port 72855 terminate_cause User-Request 72855 bytes_out 201909 72855 bytes_in 13060 72855 station_ip 5.134.167.55 72855 port 15728700 72855 nas_port_type Virtual 72855 remote_ip 5.5.5.225 72857 username iranmanesh 72857 unique_id port 72857 terminate_cause Lost-Carrier 72857 bytes_out 9523 72857 bytes_in 152 72857 station_ip 5.114.134.101 72857 port 15728702 72857 nas_port_type Virtual 72857 remote_ip 5.5.5.220 72865 username alirezazamani 72865 unique_id port 72865 terminate_cause Lost-Carrier 72865 bytes_out 75556 72865 bytes_in 122 72865 station_ip 5.119.169.171 72865 port 15728708 72865 nas_port_type Virtual 72865 remote_ip 5.5.5.217 72866 bytes_out 0 72866 bytes_in 0 72866 station_ip 93.114.18.89 72866 port 15728709 72866 nas_port_type Virtual 72866 remote_ip 5.5.5.216 72877 username najafi 72877 unique_id port 72877 terminate_cause User-Request 72877 bytes_out 135840 72877 bytes_in 122 72877 station_ip 5.120.161.207 72877 port 15728649 72877 nas_port_type Virtual 72877 remote_ip 5.5.5.250 72881 username najafi 72881 unique_id port 72881 terminate_cause User-Request 72881 bytes_out 9265 72881 bytes_in 354 72881 station_ip 46.225.215.128 72881 port 15728655 72881 nas_port_type Virtual 72881 remote_ip 5.5.5.249 81080 unique_id port 81080 terminate_cause Lost-Carrier 81080 bytes_out 432625 81080 bytes_in 1942709 81080 station_ip 5.119.0.182 81080 port 15728672 81080 nas_port_type Virtual 81080 remote_ip 5.5.5.229 81081 username reza 72885 username aminvpn 72885 unique_id port 72885 terminate_cause Lost-Carrier 72885 bytes_out 481 72885 bytes_in 12370 72885 station_ip 5.119.130.251 72885 port 15728659 72885 nas_port_type Virtual 72885 remote_ip 5.5.5.244 72887 username aminvpn 72887 unique_id port 72887 terminate_cause User-Request 72887 bytes_out 0 72887 bytes_in 0 72887 station_ip 5.119.130.251 72887 port 15728661 72887 nas_port_type Virtual 72887 remote_ip 5.5.5.243 72889 username aminvpn 72889 unique_id port 72889 terminate_cause User-Request 72889 bytes_out 0 72889 bytes_in 0 72889 station_ip 5.119.130.251 72889 port 15728663 72889 nas_port_type Virtual 72889 remote_ip 5.5.5.245 72890 username aminvpn 72890 unique_id port 72620 username dehghan 72620 unique_id port 72620 terminate_cause User-Request 72620 bytes_out 142433 72620 bytes_in 1790564 72620 station_ip 83.123.191.146 72620 port 15728726 72620 nas_port_type Virtual 72620 remote_ip 5.5.5.217 81081 unique_id port 81081 terminate_cause User-Request 81081 bytes_out 7246 81081 bytes_in 33563 81081 station_ip 113.203.30.251 81081 port 15728673 81081 nas_port_type Virtual 81081 remote_ip 5.5.5.228 81084 username forozande 72625 username alinezhad 72625 unique_id port 72625 terminate_cause User-Request 72625 bytes_out 34222 72625 bytes_in 525024 72625 station_ip 5.202.11.63 72625 port 15728733 72625 nas_port_type Virtual 72625 remote_ip 5.5.5.220 72626 username zoha 72626 unique_id port 72626 terminate_cause Lost-Carrier 72626 bytes_out 2356413 72626 bytes_in 27623791 72626 station_ip 5.119.56.82 72626 port 15728724 72626 nas_port_type Virtual 72626 remote_ip 5.5.5.239 72635 username iranmanesh 72635 unique_id port 72635 terminate_cause Admin-Reboot 72635 bytes_out 757098 72635 bytes_in 906683 72635 station_ip 5.113.25.193 72635 port 15728723 72635 nas_port_type Virtual 72635 remote_ip 5.5.5.219 72643 username rashidi 72643 unique_id port 72643 terminate_cause User-Request 72643 bytes_out 0 72643 bytes_in 0 72643 station_ip 5.120.1.117 72643 port 15728647 72643 nas_port_type Virtual 72643 remote_ip 5.5.5.249 72644 username aminvpn 72644 mac 72644 bytes_out 0 72644 bytes_in 0 72644 station_ip 5.120.51.120 72644 port 1 72644 unique_id port 72644 remote_ip 10.8.0.6 72645 username alinezhad 72645 unique_id port 72645 terminate_cause User-Request 72645 bytes_out 8806 72645 bytes_in 298 72645 station_ip 5.202.11.63 72645 port 15728646 72645 nas_port_type Virtual 72645 remote_ip 5.5.5.255 72647 username alinezhad 72647 unique_id port 72647 terminate_cause User-Request 72647 bytes_out 0 72647 bytes_in 0 72647 station_ip 5.202.11.63 72647 port 15728651 72647 nas_port_type Virtual 72647 remote_ip 5.5.5.255 72648 username alinezhad 72648 unique_id port 72648 terminate_cause User-Request 72648 bytes_out 0 72648 bytes_in 0 72648 station_ip 5.202.11.63 72648 port 15728652 72648 nas_port_type Virtual 72648 remote_ip 5.5.5.255 72650 username rashidi 72650 unique_id port 72650 terminate_cause User-Request 72650 bytes_out 0 72650 bytes_in 0 72650 station_ip 5.119.246.141 72650 port 15728654 72650 nas_port_type Virtual 72650 remote_ip 5.5.5.248 72652 username rashidi 72652 unique_id port 72652 terminate_cause User-Request 72652 bytes_out 0 72652 bytes_in 0 72652 station_ip 5.119.246.141 72652 port 15728658 72652 nas_port_type Virtual 72652 remote_ip 5.5.5.248 72655 username alinezhad 72655 unique_id port 72655 terminate_cause User-Request 72655 bytes_out 6712 72655 bytes_in 122 72655 station_ip 5.202.11.63 72655 port 15728653 72655 nas_port_type Virtual 72655 remote_ip 5.5.5.255 72664 username alirezazamani 72664 unique_id port 72664 terminate_cause Lost-Carrier 72664 bytes_out 54279 72664 bytes_in 446 72664 station_ip 5.120.82.218 72664 port 15728664 72664 nas_port_type Virtual 72664 remote_ip 5.5.5.245 72665 username alinezhad 72665 unique_id port 72665 terminate_cause User-Request 72665 bytes_out 7618 72665 bytes_in 178 72665 station_ip 5.202.11.63 72665 port 15728671 72665 nas_port_type Virtual 72665 remote_ip 5.5.5.255 72671 username alinezhad 72671 unique_id port 72671 terminate_cause User-Request 72671 bytes_out 0 72671 bytes_in 0 72671 station_ip 5.202.11.63 72671 port 15728678 72671 nas_port_type Virtual 72671 remote_ip 5.5.5.255 72674 username mobina 72674 unique_id port 72621 username alinezhad 72621 unique_id port 72621 terminate_cause User-Request 72621 bytes_out 0 72621 bytes_in 0 72621 station_ip 5.202.11.63 72621 port 15728728 72621 nas_port_type Virtual 72621 remote_ip 5.5.5.220 72623 username alirezazamani 72623 unique_id port 72623 terminate_cause User-Request 72623 bytes_out 0 72623 bytes_in 0 72623 station_ip 5.120.174.200 72623 port 15728731 72623 nas_port_type Virtual 72623 remote_ip 5.5.5.214 72627 username mobina 72627 unique_id port 72627 terminate_cause Lost-Carrier 72627 bytes_out 3505252 72627 bytes_in 103848560 72627 station_ip 5.123.61.122 72627 port 15728729 72627 nas_port_type Virtual 72627 remote_ip 5.5.5.215 72628 username nazanin 72628 unique_id port 72628 terminate_cause User-Request 72628 bytes_out 0 72628 bytes_in 0 72628 station_ip 83.122.150.132 72628 port 15728739 72628 nas_port_type Virtual 72628 remote_ip 5.5.5.212 72629 username nazanin 72629 unique_id port 72629 terminate_cause User-Request 72629 bytes_out 0 72629 bytes_in 0 72629 station_ip 83.122.150.132 72629 port 15728740 72629 nas_port_type Virtual 72629 remote_ip 5.5.5.212 72631 username nazanin 72631 unique_id port 72631 terminate_cause User-Request 72631 bytes_out 0 72631 bytes_in 0 72631 station_ip 83.122.150.132 72631 port 15728742 72631 nas_port_type Virtual 72631 remote_ip 5.5.5.212 72632 username alirezazamani 72632 unique_id port 72632 terminate_cause User-Request 72632 bytes_out 7495219 72632 bytes_in 148030216 72632 station_ip 5.120.174.200 72632 port 15728734 72632 nas_port_type Virtual 72632 remote_ip 5.5.5.214 81082 remote_ip 5.5.5.254 81087 username aminvpn 81087 unique_id port 81087 terminate_cause Lost-Carrier 81087 bytes_out 1116988 81087 bytes_in 12120709 81087 station_ip 5.119.169.58 81087 port 15728683 81087 nas_port_type Virtual 72638 username aminvpn 72638 unique_id port 72638 terminate_cause User-Request 72638 bytes_out 607502 72638 bytes_in 5553452 72638 station_ip 5.120.51.120 72638 port 15728641 72638 nas_port_type Virtual 72638 remote_ip 5.5.5.254 72640 username rashidi 72640 unique_id port 72640 terminate_cause User-Request 72640 bytes_out 903071 72640 bytes_in 2055633 72640 station_ip 5.119.225.147 72640 port 15728643 72640 nas_port_type Virtual 72640 remote_ip 5.5.5.252 72642 username aminvpn 72642 kill_reason Wrong password 72642 mac 72642 bytes_out 0 72642 bytes_in 0 72642 station_ip 5.120.51.120 72642 port 1 72642 unique_id port 72646 username rashidi 72646 unique_id port 72646 terminate_cause User-Request 72646 bytes_out 0 72646 bytes_in 0 72646 station_ip 5.120.1.117 72646 port 15728650 72646 nas_port_type Virtual 72646 remote_ip 5.5.5.249 72651 username rashidi 72651 unique_id port 72651 terminate_cause Lost-Carrier 72651 bytes_out 11066 72651 bytes_in 1154 72651 station_ip 5.119.225.147 72651 port 15728645 72651 nas_port_type Virtual 72651 remote_ip 5.5.5.252 72654 username rashidi 72654 unique_id port 72654 terminate_cause User-Request 72654 bytes_out 0 72654 bytes_in 0 72654 station_ip 5.119.246.141 72654 port 15728660 72654 nas_port_type Virtual 72654 remote_ip 5.5.5.248 81087 remote_ip 5.5.5.223 81093 username soleymani 81093 kill_reason Maximum number of concurrent logins reached 81093 unique_id port 81093 bytes_out 0 81093 bytes_in 0 81093 station_ip 5.119.182.34 81093 port 15728694 72659 username alinezhad 72659 unique_id port 72659 terminate_cause User-Request 72659 bytes_out 0 72659 bytes_in 0 72659 station_ip 5.202.11.63 72659 port 15728665 72659 nas_port_type Virtual 72659 remote_ip 5.5.5.255 72660 username alinezhad 72660 unique_id port 72624 username alirezazamani 72624 unique_id port 72624 terminate_cause User-Request 72624 bytes_out 0 72624 bytes_in 0 72624 station_ip 5.120.174.200 72624 port 15728732 72624 nas_port_type Virtual 72624 remote_ip 5.5.5.214 72630 username nazanin 72630 unique_id port 72630 terminate_cause User-Request 72630 bytes_out 0 72630 bytes_in 0 72630 station_ip 83.122.150.132 72630 port 15728741 72630 nas_port_type Virtual 72630 remote_ip 5.5.5.212 72633 username alirezazamani 72633 unique_id port 72633 terminate_cause User-Request 72633 bytes_out 2086312 72633 bytes_in 31515161 72633 station_ip 5.62.203.81 72633 port 15728735 72633 nas_port_type Virtual 72633 remote_ip 5.5.5.213 72636 username alinezhad 72636 unique_id port 72636 terminate_cause Admin-Reboot 72636 bytes_out 0 72636 bytes_in 0 72636 station_ip 5.202.11.63 72636 port 15728743 72636 nas_port_type Virtual 72636 remote_ip 5.5.5.220 72637 username alinezhad 72637 unique_id port 72637 terminate_cause User-Request 72637 bytes_out 31263 72637 bytes_in 65800 72637 station_ip 5.202.11.63 72637 port 15728640 72637 nas_port_type Virtual 72637 remote_ip 5.5.5.255 72639 username aminvpn 72639 unique_id port 72639 terminate_cause User-Request 72639 bytes_out 10011 72639 bytes_in 1287 72639 station_ip 5.120.51.120 72639 port 15728644 72639 nas_port_type Virtual 72639 remote_ip 5.5.5.251 72641 username aminvpn 72641 kill_reason Wrong password 72641 mac 72641 bytes_out 0 72641 bytes_in 0 72641 station_ip 5.120.51.120 72641 port 1 72641 unique_id port 81083 station_ip 5.202.4.103 81083 port 15728680 81083 nas_port_type Virtual 81083 remote_ip 5.5.5.226 81091 username alirezazamani 81091 kill_reason Relative expiration date has reached 81091 unique_id port 81091 bytes_out 0 81091 bytes_in 0 72653 username rashidi 72653 unique_id port 72653 terminate_cause User-Request 72653 bytes_out 0 72653 bytes_in 0 72653 station_ip 5.119.246.141 72653 port 15728659 72653 nas_port_type Virtual 72653 remote_ip 5.5.5.248 72656 username alinezhad 72656 unique_id port 72656 terminate_cause User-Request 72656 bytes_out 0 72656 bytes_in 0 72656 station_ip 5.202.11.63 72656 port 15728661 72656 nas_port_type Virtual 72656 remote_ip 5.5.5.255 72657 username alinezhad 72657 unique_id port 72657 terminate_cause User-Request 72657 bytes_out 0 72657 bytes_in 0 72657 station_ip 5.202.11.63 72657 port 15728662 72657 nas_port_type Virtual 72657 remote_ip 5.5.5.255 72662 username alinezhad 72662 unique_id port 72662 terminate_cause User-Request 72662 bytes_out 16203 72662 bytes_in 474 72662 station_ip 5.202.11.63 72662 port 15728667 72662 nas_port_type Virtual 72662 remote_ip 5.5.5.255 72668 username alinezhad 72668 unique_id port 72668 terminate_cause User-Request 72668 bytes_out 2108 72668 bytes_in 122 72668 station_ip 5.202.11.63 72668 port 15728674 72668 nas_port_type Virtual 72668 remote_ip 5.5.5.255 72669 username alinezhad 72669 unique_id port 72669 terminate_cause User-Request 72669 bytes_out 0 72669 bytes_in 0 72669 station_ip 5.202.11.63 72669 port 15728675 72669 nas_port_type Virtual 72669 remote_ip 5.5.5.255 81091 station_ip 94.241.178.64 81091 port 15728690 81091 nas_port_type Virtual 81096 username caferibar 81096 unique_id port 81096 terminate_cause User-Request 81096 bytes_out 2815555 81096 bytes_in 22149272 81096 station_ip 5.120.130.46 72676 username alirezazamani 72676 unique_id port 72676 terminate_cause User-Request 72676 bytes_out 0 72676 bytes_in 0 72676 station_ip 5.120.118.184 72676 port 15728682 72676 nas_port_type Virtual 72676 remote_ip 5.5.5.240 81096 port 15728650 81096 nas_port_type Virtual 72660 terminate_cause User-Request 72660 bytes_out 0 72660 bytes_in 0 72660 station_ip 5.202.11.63 72660 port 15728666 72660 nas_port_type Virtual 72660 remote_ip 5.5.5.255 81084 unique_id port 81084 terminate_cause User-Request 81084 bytes_out 129985 81084 bytes_in 1080502 81084 station_ip 83.122.187.170 81084 port 15728682 81084 nas_port_type Virtual 81084 remote_ip 5.5.5.224 81089 username asadi 72663 username alinezhad 72663 unique_id port 72663 terminate_cause User-Request 72663 bytes_out 24883 72663 bytes_in 938 72663 station_ip 5.202.11.63 72663 port 15728670 72663 nas_port_type Virtual 72663 remote_ip 5.5.5.255 72666 username zoha 72666 unique_id port 72666 terminate_cause Lost-Carrier 72666 bytes_out 71384 72666 bytes_in 122 72666 station_ip 5.119.56.82 72666 port 15728668 72666 nas_port_type Virtual 72666 remote_ip 5.5.5.244 72667 username alinezhad 72667 unique_id port 72667 terminate_cause User-Request 72667 bytes_out 35515 72667 bytes_in 1410 72667 station_ip 5.202.11.63 72667 port 15728672 72667 nas_port_type Virtual 72667 remote_ip 5.5.5.255 72670 username rashidi 72670 unique_id port 72670 terminate_cause Lost-Carrier 72670 bytes_out 6639 72670 bytes_in 122 72670 station_ip 5.119.246.141 72670 port 15728673 72670 nas_port_type Virtual 72670 remote_ip 5.5.5.248 72672 username alinezhad 72672 unique_id port 72672 terminate_cause User-Request 72672 bytes_out 7990 72672 bytes_in 354 72672 station_ip 5.202.11.63 72672 port 15728679 72672 nas_port_type Virtual 72672 remote_ip 5.5.5.255 72675 username alirezazamani 72675 unique_id port 72675 terminate_cause User-Request 72675 bytes_out 289384 72675 bytes_in 9731 72675 station_ip 5.119.182.0 72675 port 15728669 72675 nas_port_type Virtual 72675 remote_ip 5.5.5.243 81089 unique_id port 81089 terminate_cause User-Request 81089 bytes_out 43887 81089 bytes_in 119905 81089 station_ip 113.203.49.19 81089 port 15728687 81089 nas_port_type Virtual 81089 remote_ip 5.5.5.254 81092 username soleymani 72682 username alinezhad 72682 unique_id port 72682 terminate_cause User-Request 72682 bytes_out 0 72682 bytes_in 0 72682 station_ip 5.202.11.63 72682 port 15728687 72682 nas_port_type Virtual 72682 remote_ip 5.5.5.255 72683 username alirezazamani 72683 unique_id port 72683 terminate_cause User-Request 72683 bytes_out 0 72683 bytes_in 0 72683 station_ip 5.120.118.184 72683 port 15728689 72683 nas_port_type Virtual 72683 remote_ip 5.5.5.240 81092 kill_reason Maximum number of concurrent logins reached 81092 unique_id port 81092 bytes_out 0 81092 bytes_in 0 81092 station_ip 5.119.182.34 81092 port 15728692 81092 nas_port_type Virtual 81094 username soleymani 81094 kill_reason Maximum number of concurrent logins reached 81094 unique_id port 81094 bytes_out 0 81094 bytes_in 0 81094 station_ip 5.119.182.34 81094 port 15728695 81094 nas_port_type Virtual 81104 username soleymani 81104 unique_id port 72692 username ksr 72692 unique_id port 72692 terminate_cause User-Request 72692 bytes_out 21886 72692 bytes_in 426 72692 station_ip 151.234.20.47 72692 port 15728696 72692 nas_port_type Virtual 72692 remote_ip 5.5.5.235 72700 username alinezhad 72700 unique_id port 72700 terminate_cause User-Request 72700 bytes_out 12559 72700 bytes_in 630 72700 station_ip 37.129.190.187 72700 port 15728704 72700 nas_port_type Virtual 72700 remote_ip 5.5.5.234 72707 username alinezhad 72707 unique_id port 72707 terminate_cause User-Request 72707 bytes_out 21022 72707 bytes_in 354 72707 station_ip 83.122.195.96 72707 port 15728712 72707 nas_port_type Virtual 72707 remote_ip 5.5.5.230 72709 username alinezhad 72709 unique_id port 72674 terminate_cause Lost-Carrier 72674 bytes_out 4072 72674 bytes_in 308 72674 station_ip 5.219.204.167 72674 port 15728676 72674 nas_port_type Virtual 72674 remote_ip 5.5.5.242 72681 username alinezhad 72681 unique_id port 72681 terminate_cause User-Request 72681 bytes_out 115890 72681 bytes_in 3566 72681 station_ip 5.202.11.63 72681 port 15728681 72681 nas_port_type Virtual 72681 remote_ip 5.5.5.255 72684 username alinezhad 72684 unique_id port 72684 terminate_cause User-Request 72684 bytes_out 6575 72684 bytes_in 122 72684 station_ip 5.202.11.63 72684 port 15728690 72684 nas_port_type Virtual 72684 remote_ip 5.5.5.255 81085 unique_id port 81085 terminate_cause User-Request 81085 bytes_out 83844 81085 bytes_in 2515469 81085 station_ip 113.203.40.91 81085 port 15728681 81085 nas_port_type Virtual 81085 remote_ip 5.5.5.225 81086 username soleymani 72690 username alinezhad 72690 unique_id port 72690 terminate_cause User-Request 72690 bytes_out 0 72690 bytes_in 0 72690 station_ip 5.202.11.63 72690 port 15728694 72690 nas_port_type Virtual 72690 remote_ip 5.5.5.255 72691 username alinezhad 72691 unique_id port 72691 terminate_cause User-Request 72691 bytes_out 0 72691 bytes_in 0 72691 station_ip 5.202.11.63 72691 port 15728695 72691 nas_port_type Virtual 72691 remote_ip 5.5.5.255 72694 username alinezhad 72694 unique_id port 72694 terminate_cause User-Request 72694 bytes_out 8841 72694 bytes_in 298 72694 station_ip 37.129.190.187 72694 port 15728700 72694 nas_port_type Virtual 72694 remote_ip 5.5.5.234 72695 username alinezhad 72695 unique_id port 72695 terminate_cause User-Request 72695 bytes_out 0 72695 bytes_in 0 72695 station_ip 37.129.190.187 72695 port 15728701 72695 nas_port_type Virtual 72695 remote_ip 5.5.5.234 72697 username ksr 72697 unique_id port 72697 terminate_cause User-Request 72697 bytes_out 108168 72697 bytes_in 3759 72697 station_ip 151.234.20.47 72697 port 15728697 72697 nas_port_type Virtual 72697 remote_ip 5.5.5.235 72698 username ksr 72698 unique_id port 72698 terminate_cause User-Request 72698 bytes_out 0 72698 bytes_in 0 72698 station_ip 151.234.20.47 72698 port 15728702 72698 nas_port_type Virtual 72698 remote_ip 5.5.5.235 72699 username alinezhad 72699 unique_id port 72699 terminate_cause User-Request 72699 bytes_out 8225 72699 bytes_in 602 72699 station_ip 37.129.190.187 72699 port 15728703 72699 nas_port_type Virtual 72699 remote_ip 5.5.5.234 72701 username alinezhad 72701 unique_id port 72701 terminate_cause User-Request 72701 bytes_out 0 72701 bytes_in 0 72701 station_ip 37.129.190.187 72701 port 15728706 72701 nas_port_type Virtual 72701 remote_ip 5.5.5.234 72702 username aminsaeedi 72702 unique_id port 72702 terminate_cause User-Request 72702 bytes_out 15734 72702 bytes_in 594 72702 station_ip 31.59.39.80 72702 port 15728707 72702 nas_port_type Virtual 72702 remote_ip 5.5.5.232 72703 username zoha 72703 unique_id port 72703 terminate_cause Lost-Carrier 72703 bytes_out 6154 72703 bytes_in 122 72703 station_ip 5.119.184.91 72703 port 15728705 72703 nas_port_type Virtual 72703 remote_ip 5.5.5.233 72713 username aminsaeedi 72713 unique_id port 72713 terminate_cause User-Request 72713 bytes_out 28411 72713 bytes_in 650 72713 station_ip 31.59.39.80 72713 port 15728717 72713 nas_port_type Virtual 72713 remote_ip 5.5.5.232 72714 username iranmanesh 72714 unique_id port 72714 terminate_cause Lost-Carrier 72714 bytes_out 73911 72714 bytes_in 122 72714 station_ip 5.113.25.193 72714 port 15728718 72714 nas_port_type Virtual 72714 remote_ip 5.5.5.253 81086 unique_id port 81086 terminate_cause Lost-Carrier 81086 bytes_out 89312 81086 bytes_in 215445 81086 station_ip 5.119.228.104 81086 port 15728684 81086 nas_port_type Virtual 81086 remote_ip 5.5.5.222 81088 username soleymani 72678 username alirezazamani 72678 unique_id port 72678 terminate_cause User-Request 72678 bytes_out 22510 72678 bytes_in 122 72678 station_ip 5.120.91.64 72678 port 15728684 72678 nas_port_type Virtual 72678 remote_ip 5.5.5.239 72679 username rashidi 72679 unique_id port 72679 terminate_cause User-Request 72679 bytes_out 0 72679 bytes_in 0 72679 station_ip 5.119.246.141 72679 port 15728685 72679 nas_port_type Virtual 72679 remote_ip 5.5.5.248 72687 username alinezhad 72687 unique_id port 72687 terminate_cause User-Request 72687 bytes_out 0 72687 bytes_in 0 72687 station_ip 5.202.11.63 72687 port 15728691 72687 nas_port_type Virtual 72687 remote_ip 5.5.5.255 72689 username mobina 72689 unique_id port 72689 terminate_cause User-Request 72689 bytes_out 0 72689 bytes_in 0 72689 station_ip 5.123.154.177 72689 port 15728693 72689 nas_port_type Virtual 72689 remote_ip 5.5.5.236 72693 username alinezhad 72693 unique_id port 72693 terminate_cause User-Request 72693 bytes_out 14296 72693 bytes_in 498 72693 station_ip 37.129.190.187 72693 port 15728699 72693 nas_port_type Virtual 72693 remote_ip 5.5.5.234 72696 username zoha 72696 unique_id port 72696 terminate_cause Lost-Carrier 72696 bytes_out 45645 72696 bytes_in 1141 72696 station_ip 5.119.56.82 72696 port 15728698 72696 nas_port_type Virtual 72696 remote_ip 5.5.5.244 72704 username ksr 72704 unique_id port 72704 terminate_cause User-Request 72704 bytes_out 0 72704 bytes_in 0 72704 station_ip 151.234.20.47 72704 port 15728709 72704 nas_port_type Virtual 72704 remote_ip 5.5.5.235 72705 username alinezhad 72705 unique_id port 72705 terminate_cause User-Request 72705 bytes_out 12646 72705 bytes_in 502 72705 station_ip 113.203.75.50 72705 port 15728710 72705 nas_port_type Virtual 72705 remote_ip 5.5.5.231 72706 username alinezhad 72706 unique_id port 72706 terminate_cause User-Request 72706 bytes_out 0 72706 bytes_in 0 72706 station_ip 113.203.75.50 72706 port 15728711 72706 nas_port_type Virtual 72706 remote_ip 5.5.5.231 72708 username alinezhad 72708 unique_id port 72708 terminate_cause User-Request 72708 bytes_out 0 72708 bytes_in 0 72708 station_ip 83.122.195.96 72708 port 15728713 72708 nas_port_type Virtual 72708 remote_ip 5.5.5.230 72711 username alinezhad 72711 unique_id port 72711 terminate_cause User-Request 72711 bytes_out 0 72711 bytes_in 0 72711 station_ip 83.122.195.96 72711 port 15728716 72711 nas_port_type Virtual 72711 remote_ip 5.5.5.230 72843 mac 72843 bytes_out 0 72843 bytes_in 0 72843 station_ip 5.119.136.60 72843 port 1 72843 unique_id port 72843 remote_ip 10.8.0.6 72845 username iranmanesh 72845 unique_id port 72845 terminate_cause Lost-Carrier 72845 bytes_out 119429 72845 bytes_in 3434 72845 station_ip 5.113.166.146 72845 port 15728690 72845 nas_port_type Virtual 72845 remote_ip 5.5.5.231 72850 username alirezazamani 72850 unique_id port 72850 terminate_cause Lost-Carrier 72850 bytes_out 27715 72850 bytes_in 2218 72850 station_ip 5.134.167.55 72850 port 15728692 72850 nas_port_type Virtual 72850 remote_ip 5.5.5.226 81088 unique_id port 81088 terminate_cause User-Request 81088 bytes_out 0 81088 bytes_in 0 81088 station_ip 5.120.165.67 81088 port 15728686 81088 nas_port_type Virtual 81088 remote_ip 5.5.5.220 81090 username alirezazamani 72858 username zoha 72858 unique_id port 72858 terminate_cause User-Request 72858 bytes_out 55614 72858 bytes_in 1141 72709 terminate_cause User-Request 72709 bytes_out 11639 72709 bytes_in 366 72709 station_ip 83.122.195.96 72709 port 15728714 72709 nas_port_type Virtual 72709 remote_ip 5.5.5.230 72710 username ksr 72710 unique_id port 72710 terminate_cause User-Request 72710 bytes_out 0 72710 bytes_in 0 72710 station_ip 151.234.20.47 72710 port 15728715 72710 nas_port_type Virtual 72710 remote_ip 5.5.5.235 72712 username iranmanesh 72712 unique_id port 72712 terminate_cause Lost-Carrier 72712 bytes_out 226419 72712 bytes_in 64688 72712 station_ip 5.113.25.193 72712 port 15728642 72712 nas_port_type Virtual 72712 remote_ip 5.5.5.253 72715 username rashidi 72715 unique_id port 72715 terminate_cause User-Request 72715 bytes_out 0 72715 bytes_in 0 72715 station_ip 5.119.210.250 72715 port 15728720 72715 nas_port_type Virtual 72715 remote_ip 5.5.5.229 72858 station_ip 5.119.184.91 72858 port 15728704 72858 nas_port_type Virtual 72858 remote_ip 5.5.5.240 72861 username aminvpn 72861 mac 72861 bytes_out 0 72861 bytes_in 0 72861 station_ip 5.119.136.60 72861 port 1 72861 unique_id port 72863 username alirezazamani 72863 unique_id port 72863 terminate_cause User-Request 72863 bytes_out 101316 72863 bytes_in 2861 72863 station_ip 5.134.167.55 72863 port 15728706 72863 nas_port_type Virtual 72863 remote_ip 5.5.5.225 72864 username mobina 72864 unique_id port 72864 terminate_cause User-Request 72864 bytes_out 15104 72864 bytes_in 420 72864 station_ip 5.123.217.189 72864 port 15728707 72864 nas_port_type Virtual 72864 remote_ip 5.5.5.218 72867 username iranmanesh 72867 unique_id port 72867 terminate_cause Admin-Reboot 72867 bytes_out 48325 72867 bytes_in 1750 72867 station_ip 5.113.51.18 72867 port 15728710 72867 nas_port_type Virtual 72867 remote_ip 5.5.5.215 72869 username aminvpn 72869 unique_id port 72869 terminate_cause User-Request 72869 bytes_out 20651 72869 bytes_in 474 72869 station_ip 5.233.48.152 72869 port 15728641 72869 nas_port_type Virtual 72869 remote_ip 5.5.5.254 72870 username nazanin 72870 unique_id port 72870 terminate_cause User-Request 72870 bytes_out 3715 72870 bytes_in 142 72870 station_ip 83.123.169.170 72870 port 15728642 72870 nas_port_type Virtual 72870 remote_ip 5.5.5.253 72874 username alirezazamani 72874 unique_id port 72874 terminate_cause User-Request 72874 bytes_out 0 72874 bytes_in 0 72874 station_ip 5.233.65.151 72874 port 15728646 72874 nas_port_type Virtual 72874 remote_ip 5.5.5.251 72875 username nazanin 72875 unique_id port 72875 terminate_cause User-Request 72875 bytes_out 0 72875 bytes_in 0 72875 station_ip 83.123.169.170 72875 port 15728647 72875 nas_port_type Virtual 72875 remote_ip 5.5.5.253 72876 username nazanin 72876 unique_id port 72876 terminate_cause User-Request 72876 bytes_out 0 72876 bytes_in 0 72876 station_ip 83.123.169.170 72876 port 15728648 72876 nas_port_type Virtual 72876 remote_ip 5.5.5.253 72878 username najafi 72878 unique_id port 72878 terminate_cause User-Request 72878 bytes_out 13099 72878 bytes_in 3301 72878 station_ip 5.120.161.207 72878 port 15728650 72878 nas_port_type Virtual 72878 remote_ip 5.5.5.250 72879 username najafi 72879 unique_id port 72879 terminate_cause User-Request 72879 bytes_out 43019 72879 bytes_in 122 72879 station_ip 46.225.215.128 72879 port 15728651 72879 nas_port_type Virtual 72879 remote_ip 5.5.5.249 72880 username arshida 72880 unique_id port 72880 terminate_cause User-Request 72880 bytes_out 0 72880 bytes_in 0 72880 station_ip 46.225.215.128 72880 port 15728654 72880 nas_port_type Virtual 72880 remote_ip 5.5.5.248 72883 username alirezazamani 81090 kill_reason Relative expiration date has reached 81090 unique_id port 81090 bytes_out 0 81090 bytes_in 0 81090 station_ip 94.241.178.64 81090 port 15728689 81090 nas_port_type Virtual 81097 username soleymani 81097 kill_reason Maximum number of concurrent logins reached 81097 unique_id port 81097 bytes_out 0 81097 bytes_in 0 81097 station_ip 5.119.182.34 81097 port 15728697 81097 nas_port_type Virtual 72862 port 15728705 72862 nas_port_type Virtual 72862 remote_ip 5.5.5.219 72868 username goli 72868 unique_id port 72868 terminate_cause User-Request 72868 bytes_out 4719 72868 bytes_in 122 72868 station_ip 83.122.223.37 72868 port 15728640 72868 nas_port_type Virtual 72868 remote_ip 5.5.5.255 72871 username nazanin 72871 unique_id port 72871 terminate_cause User-Request 72871 bytes_out 3610 72871 bytes_in 142 72871 station_ip 83.123.169.170 72871 port 15728643 72871 nas_port_type Virtual 72871 remote_ip 5.5.5.253 72872 username iranmanesh 72872 unique_id port 72872 terminate_cause Lost-Carrier 72872 bytes_out 30989 72872 bytes_in 122 72872 station_ip 5.113.51.18 72872 port 15728644 72872 nas_port_type Virtual 72872 remote_ip 5.5.5.252 72873 username alirezazamani 72873 unique_id port 72873 terminate_cause User-Request 72873 bytes_out 0 72873 bytes_in 0 72873 station_ip 5.233.65.151 72873 port 15728645 72873 nas_port_type Virtual 72873 remote_ip 5.5.5.251 72884 username aminvpn 72884 unique_id port 72884 terminate_cause User-Request 72884 bytes_out 25993 72884 bytes_in 122 72884 station_ip 5.119.130.251 72884 port 15728658 72884 nas_port_type Virtual 72884 remote_ip 5.5.5.245 72888 username aminvpn 72888 unique_id port 72888 terminate_cause User-Request 72888 bytes_out 298703 72888 bytes_in 3493941 72888 station_ip 5.119.130.251 72888 port 15728662 72888 nas_port_type Virtual 72888 remote_ip 5.5.5.243 72896 username aminvpn 72896 mac 72896 bytes_out 0 72896 bytes_in 0 72896 station_ip 5.119.136.60 72896 port 1 72896 unique_id port 72896 remote_ip 10.8.0.6 72897 username nazanin 72897 unique_id port 72897 terminate_cause User-Request 72897 bytes_out 0 72897 bytes_in 0 72897 station_ip 83.123.169.170 72897 port 15728669 72897 nas_port_type Virtual 72897 remote_ip 5.5.5.253 72898 username nazanin 72898 unique_id port 72898 terminate_cause User-Request 72898 bytes_out 0 72898 bytes_in 0 72898 station_ip 83.123.169.170 72898 port 15728670 72898 nas_port_type Virtual 72898 remote_ip 5.5.5.253 72906 username aminvpn 72906 mac 72906 bytes_out 0 72906 bytes_in 0 72906 station_ip 5.119.136.60 72906 port 1 72906 unique_id port 72906 remote_ip 10.8.0.6 72916 username reza 72916 unique_id port 72916 terminate_cause User-Request 72916 bytes_out 0 72916 bytes_in 0 72916 station_ip 113.203.39.136 72916 port 15728678 72916 nas_port_type Virtual 72916 remote_ip 5.5.5.240 72917 username reza 72917 unique_id port 72917 terminate_cause User-Request 72917 bytes_out 135354 72917 bytes_in 740352 72917 station_ip 113.203.39.136 72917 port 15728679 72917 nas_port_type Virtual 72917 remote_ip 5.5.5.240 72919 username tahani 72919 unique_id port 72919 terminate_cause User-Request 72919 bytes_out 486651 72919 bytes_in 544259 72919 station_ip 83.122.97.126 72919 port 15728682 72919 nas_port_type Virtual 72919 remote_ip 5.5.5.239 72922 username ahmadi 72922 unique_id port 72922 terminate_cause User-Request 72922 bytes_out 143253 72922 bytes_in 1182486 72922 station_ip 37.129.30.232 72922 port 15728686 72922 nas_port_type Virtual 72922 remote_ip 5.5.5.237 72923 username ahmadi 72923 unique_id port 72923 terminate_cause User-Request 72883 unique_id port 72883 terminate_cause User-Request 72883 bytes_out 17264 72883 bytes_in 2657 72883 station_ip 83.123.87.68 72883 port 15728657 72883 nas_port_type Virtual 72883 remote_ip 5.5.5.246 72886 username aminvpn 72886 unique_id port 72886 terminate_cause User-Request 72886 bytes_out 187449 72886 bytes_in 485256 72886 station_ip 5.119.130.251 72886 port 15728660 72886 nas_port_type Virtual 72886 remote_ip 5.5.5.243 72891 username aminvpn 72891 unique_id port 72891 terminate_cause Lost-Carrier 72891 bytes_out 92118 72891 bytes_in 545683 72891 station_ip 5.119.130.251 72891 port 15728665 72891 nas_port_type Virtual 72891 remote_ip 5.5.5.243 72892 username aminvpn 72892 unique_id port 72892 terminate_cause User-Request 72892 bytes_out 0 72892 bytes_in 0 72892 station_ip 5.119.130.251 72892 port 15728666 72892 nas_port_type Virtual 72892 remote_ip 5.5.5.245 72901 username nazanin 72901 unique_id port 72901 terminate_cause User-Request 72901 bytes_out 0 72901 bytes_in 0 72901 station_ip 83.123.169.170 72901 port 15728671 72901 nas_port_type Virtual 72901 remote_ip 5.5.5.253 72902 username nazanin 72902 unique_id port 72902 terminate_cause User-Request 72902 bytes_out 62038 72902 bytes_in 373339 72902 station_ip 83.123.169.170 72902 port 15728672 72902 nas_port_type Virtual 72902 remote_ip 5.5.5.253 72903 username nazanin 72903 unique_id port 72903 terminate_cause User-Request 72903 bytes_out 26769 72903 bytes_in 238570 72903 station_ip 83.123.169.170 72903 port 15728673 72903 nas_port_type Virtual 72903 remote_ip 5.5.5.253 72904 username nazanin 72904 unique_id port 72904 terminate_cause User-Request 72904 bytes_out 0 72904 bytes_in 0 72904 station_ip 83.123.169.170 72904 port 15728674 72904 nas_port_type Virtual 72904 remote_ip 5.5.5.253 72905 username aminvpn 72905 mac 72905 bytes_out 0 72905 bytes_in 0 72905 station_ip 5.119.136.60 72905 port 1 72905 unique_id port 72905 remote_ip 10.8.0.6 72909 username aminvpn 72909 mac 72909 bytes_out 0 72909 bytes_in 0 72909 station_ip 5.119.136.60 72909 port 1 72909 unique_id port 72909 remote_ip 10.8.0.6 72911 username aminvpn 72911 mac 72911 bytes_out 0 72911 bytes_in 0 72911 station_ip 5.119.136.60 72911 port 1 72911 unique_id port 72911 remote_ip 10.8.0.6 72913 username zoha 72913 unique_id port 72913 terminate_cause Lost-Carrier 72913 bytes_out 14630317 72913 bytes_in 1342078 72913 station_ip 5.119.184.91 72913 port 15728675 72913 nas_port_type Virtual 72913 remote_ip 5.5.5.242 72915 username kasra 72915 unique_id port 72915 terminate_cause User-Request 72915 bytes_out 0 72915 bytes_in 0 72915 station_ip 113.203.94.179 72915 port 15728677 72915 nas_port_type Virtual 72915 remote_ip 5.5.5.241 72918 username tahani 72918 unique_id port 72918 terminate_cause User-Request 72918 bytes_out 460 72918 bytes_in 11228 72918 station_ip 83.122.97.126 72918 port 15728681 72918 nas_port_type Virtual 72918 remote_ip 5.5.5.239 72920 username tahani 72920 unique_id port 72920 terminate_cause User-Request 72920 bytes_out 37588 72920 bytes_in 89191 72920 station_ip 113.203.94.189 72920 port 15728684 72920 nas_port_type Virtual 72920 remote_ip 5.5.5.238 72921 username tahani 72921 unique_id port 72921 terminate_cause User-Request 72921 bytes_out 172628 72921 bytes_in 1731858 72921 station_ip 113.203.94.189 72921 port 15728685 72921 nas_port_type Virtual 72921 remote_ip 5.5.5.238 72924 username tahani 72924 unique_id port 72924 terminate_cause User-Request 72924 bytes_out 258160 72924 bytes_in 1280639 72924 station_ip 113.203.94.189 72890 terminate_cause User-Request 72890 bytes_out 0 72890 bytes_in 0 72890 station_ip 5.119.130.251 72890 port 15728664 72890 nas_port_type Virtual 72890 remote_ip 5.5.5.245 72893 username aminvpn 72893 unique_id port 72893 terminate_cause User-Request 72893 bytes_out 0 72893 bytes_in 0 72893 station_ip 5.119.130.251 72893 port 15728667 72893 nas_port_type Virtual 72893 remote_ip 5.5.5.243 72894 username aminvpn 72894 unique_id port 72894 terminate_cause User-Request 72894 bytes_out 423704 72894 bytes_in 2892134 72894 station_ip 5.233.48.152 72894 port 15728668 72894 nas_port_type Virtual 72894 remote_ip 5.5.5.254 72895 username aminvpn 72895 mac 72895 bytes_out 3629713 72895 bytes_in 35998656 72895 station_ip 5.119.136.60 72895 port 1 72895 unique_id port 72895 remote_ip 10.8.0.6 72899 username aminvpn 72899 mac 72899 bytes_out 0 72899 bytes_in 0 72899 station_ip 5.119.136.60 72899 port 1 72899 unique_id port 72899 remote_ip 10.8.0.6 72900 username aminvpn 72900 mac 72900 bytes_out 0 72900 bytes_in 0 72900 station_ip 5.119.136.60 72900 port 1 72900 unique_id port 72900 remote_ip 10.8.0.6 72907 username aminvpn 72907 mac 72907 bytes_out 0 72907 bytes_in 0 72907 station_ip 5.119.136.60 72907 port 1 72907 unique_id port 72907 remote_ip 10.8.0.6 72908 username aminvpn 72908 mac 72908 bytes_out 0 72908 bytes_in 0 72908 station_ip 5.119.136.60 72908 port 1 72908 unique_id port 72908 remote_ip 10.8.0.6 72910 username aminvpn 72910 mac 72910 bytes_out 0 72910 bytes_in 0 72910 station_ip 5.119.136.60 72910 port 1 72910 unique_id port 72910 remote_ip 10.8.0.6 72912 username aminvpn 72912 mac 72912 bytes_out 0 72912 bytes_in 0 72912 station_ip 5.119.136.60 72912 port 1 72912 unique_id port 72912 remote_ip 10.8.0.6 72914 username aminvpn 72914 mac 72914 bytes_out 0 72914 bytes_in 0 72914 station_ip 5.119.136.60 72914 port 3 72914 unique_id port 72914 remote_ip 10.8.1.10 72925 username tahani 72925 unique_id port 72925 terminate_cause User-Request 72925 bytes_out 369201 72925 bytes_in 4367688 72925 station_ip 113.203.94.189 72925 port 15728689 72925 nas_port_type Virtual 72925 remote_ip 5.5.5.238 72930 username tahani 72930 unique_id port 72930 terminate_cause User-Request 72930 bytes_out 144773 72930 bytes_in 2338677 72930 station_ip 37.129.20.24 72930 port 15728694 72930 nas_port_type Virtual 72930 remote_ip 5.5.5.235 72931 username tahani 72931 unique_id port 72931 terminate_cause User-Request 72931 bytes_out 399354 72931 bytes_in 10777520 72931 station_ip 37.129.20.24 72931 port 15728695 72931 nas_port_type Virtual 72931 remote_ip 5.5.5.235 72933 username alinezhad 72933 unique_id port 72933 terminate_cause User-Request 72933 bytes_out 0 72933 bytes_in 0 72933 station_ip 83.123.126.100 72933 port 15728696 72933 nas_port_type Virtual 72933 remote_ip 5.5.5.234 72939 username golmahammad 72939 unique_id port 72939 terminate_cause User-Request 72939 bytes_out 12019 72939 bytes_in 39755 72939 station_ip 37.129.245.170 72939 port 15728707 72939 nas_port_type Virtual 72939 remote_ip 5.5.5.232 72940 username golmahammad 72940 unique_id port 72940 terminate_cause User-Request 72940 bytes_out 0 72940 bytes_in 0 72940 station_ip 37.129.245.170 72940 port 15728708 72940 nas_port_type Virtual 72940 remote_ip 5.5.5.232 72943 username ahmadi 72943 unique_id port 72943 terminate_cause User-Request 72943 bytes_out 55979 72943 bytes_in 518612 72943 station_ip 37.129.9.76 72943 port 15728712 72923 bytes_out 0 72923 bytes_in 0 72923 station_ip 37.129.30.232 72923 port 15728687 72923 nas_port_type Virtual 72923 remote_ip 5.5.5.237 72927 username tahani 72927 unique_id port 72927 terminate_cause User-Request 72927 bytes_out 191514 72927 bytes_in 3976787 72927 station_ip 37.129.20.24 72927 port 15728691 72927 nas_port_type Virtual 72927 remote_ip 5.5.5.235 72928 username tahani 72928 unique_id port 72928 terminate_cause User-Request 72928 bytes_out 402940 72928 bytes_in 18726461 72928 station_ip 37.129.20.24 72928 port 15728692 72928 nas_port_type Virtual 72928 remote_ip 5.5.5.235 72932 username zoha 72932 unique_id port 72932 terminate_cause User-Request 72932 bytes_out 1184322 72932 bytes_in 9700010 72932 station_ip 5.119.184.91 72932 port 15728683 72932 nas_port_type Virtual 72932 remote_ip 5.5.5.242 72934 username golmahammad 72934 unique_id port 72934 terminate_cause User-Request 72934 bytes_out 133903 72934 bytes_in 1201099 72934 station_ip 37.129.245.170 72934 port 15728701 72934 nas_port_type Virtual 72934 remote_ip 5.5.5.232 72941 username golmahammad 72941 unique_id port 72941 terminate_cause User-Request 72941 bytes_out 11938 72941 bytes_in 24058 72941 station_ip 83.123.23.254 72941 port 15728709 72941 nas_port_type Virtual 72941 remote_ip 5.5.5.230 72945 username alirezazamani 72945 unique_id port 72945 terminate_cause User-Request 72945 bytes_out 31027345 72945 bytes_in 1170558163 72945 station_ip 94.183.213.166 72945 port 15728702 72945 nas_port_type Virtual 72945 remote_ip 5.5.5.231 81093 nas_port_type Virtual 81095 username soleymani 81095 kill_reason Maximum number of concurrent logins reached 81095 unique_id port 81095 bytes_out 0 81095 bytes_in 0 81095 station_ip 5.119.182.34 81095 port 15728696 72949 username golmahammad 72949 unique_id port 72949 terminate_cause User-Request 72949 bytes_out 26111 72949 bytes_in 41528 72949 station_ip 83.123.23.254 72949 port 15728716 72949 nas_port_type Virtual 72949 remote_ip 5.5.5.230 72954 username golmahammad 72954 unique_id port 72954 terminate_cause User-Request 72954 bytes_out 21572 72954 bytes_in 116874 72954 station_ip 83.123.23.254 72954 port 15728720 72954 nas_port_type Virtual 72954 remote_ip 5.5.5.230 72957 username iranmanesh 72957 unique_id port 72957 terminate_cause Lost-Carrier 72957 bytes_out 3615597 72957 bytes_in 53059188 72957 station_ip 5.113.51.18 72957 port 15728676 72957 nas_port_type Virtual 72957 remote_ip 5.5.5.252 72959 username alirezazamani 72959 unique_id port 72959 terminate_cause User-Request 72959 bytes_out 1532272 72959 bytes_in 15861585 72959 station_ip 5.119.147.162 72959 port 15728735 72959 nas_port_type Virtual 72959 remote_ip 5.5.5.222 72960 username alinezhad 72960 unique_id port 72960 terminate_cause User-Request 72960 bytes_out 0 72960 bytes_in 0 72960 station_ip 5.202.65.132 72960 port 15728737 72960 nas_port_type Virtual 72960 remote_ip 5.5.5.224 72961 username alirezazamani 72961 unique_id port 72961 terminate_cause User-Request 72961 bytes_out 342992 72961 bytes_in 1931536 72961 station_ip 5.119.147.162 72961 port 15728739 72961 nas_port_type Virtual 72961 remote_ip 5.5.5.221 72968 username alinezhad 72968 unique_id port 72968 terminate_cause User-Request 72968 bytes_out 0 72968 bytes_in 0 72968 station_ip 5.202.65.132 72968 port 15728746 72968 nas_port_type Virtual 72968 remote_ip 5.5.5.224 72969 username alirezazamani 72969 unique_id port 72969 terminate_cause Lost-Carrier 72969 bytes_out 2364805 72969 bytes_in 12459908 72969 station_ip 5.119.147.162 72969 port 15728741 72969 nas_port_type Virtual 72969 remote_ip 5.5.5.221 72972 username aminvpn 72972 mac 72924 port 15728688 72924 nas_port_type Virtual 72924 remote_ip 5.5.5.238 72926 username ahmadi 72926 unique_id port 72926 terminate_cause User-Request 72926 bytes_out 61593 72926 bytes_in 345477 72926 station_ip 37.129.121.120 72926 port 15728690 72926 nas_port_type Virtual 72926 remote_ip 5.5.5.236 72929 username tahani 72929 unique_id port 72929 terminate_cause User-Request 72929 bytes_out 519256 72929 bytes_in 15202235 72929 station_ip 37.129.20.24 72929 port 15728693 72929 nas_port_type Virtual 72929 remote_ip 5.5.5.235 72935 username golmahammad 72935 unique_id port 72935 terminate_cause User-Request 72935 bytes_out 210723 72935 bytes_in 157557 72935 station_ip 37.129.245.170 72935 port 15728703 72935 nas_port_type Virtual 72935 remote_ip 5.5.5.232 72936 username golmahammad 72936 unique_id port 72936 terminate_cause User-Request 72936 bytes_out 8119 72936 bytes_in 26201 72936 station_ip 37.129.245.170 72936 port 15728704 72936 nas_port_type Virtual 72936 remote_ip 5.5.5.232 72937 username golmahammad 72937 unique_id port 72937 terminate_cause User-Request 72937 bytes_out 254455 72937 bytes_in 9333621 72937 station_ip 37.129.245.170 72937 port 15728705 72937 nas_port_type Virtual 72937 remote_ip 5.5.5.232 72938 username golmahammad 72938 unique_id port 72938 terminate_cause User-Request 72938 bytes_out 253908 72938 bytes_in 5974272 72938 station_ip 37.129.245.170 72938 port 15728706 72938 nas_port_type Virtual 72938 remote_ip 5.5.5.232 72942 username golmahammad 72942 unique_id port 72942 terminate_cause User-Request 72942 bytes_out 2710 72942 bytes_in 17629 72942 station_ip 83.123.23.254 72942 port 15728711 72942 nas_port_type Virtual 72942 remote_ip 5.5.5.230 72944 username golmahammad 72944 unique_id port 72944 terminate_cause User-Request 72944 bytes_out 16906 72944 bytes_in 58793 72944 station_ip 83.123.23.254 72944 port 15728713 72944 nas_port_type Virtual 72944 remote_ip 5.5.5.230 72946 username golmahammad 72946 unique_id port 72946 terminate_cause User-Request 72946 bytes_out 61591 72946 bytes_in 389459 72946 station_ip 83.123.23.254 72946 port 15728714 72946 nas_port_type Virtual 72946 remote_ip 5.5.5.230 72950 username mobina 72950 unique_id port 72950 terminate_cause User-Request 72950 bytes_out 1824194 72950 bytes_in 33772425 72950 station_ip 5.219.159.224 72950 port 15728710 72950 nas_port_type Virtual 72950 remote_ip 5.5.5.229 72951 username alinezhad 72951 unique_id port 72951 terminate_cause User-Request 72951 bytes_out 89881 72951 bytes_in 350203 72951 station_ip 83.123.47.89 72951 port 15728717 72951 nas_port_type Virtual 72951 remote_ip 5.5.5.227 72953 username golmahammad 72953 unique_id port 72953 terminate_cause User-Request 72953 bytes_out 52731 72953 bytes_in 386400 72953 station_ip 83.123.23.254 72953 port 15728719 72953 nas_port_type Virtual 72953 remote_ip 5.5.5.230 72963 username aminvpn 72963 unique_id port 72963 terminate_cause Lost-Carrier 72963 bytes_out 866417 72963 bytes_in 28518724 72963 station_ip 46.100.222.60 72963 port 15728742 72963 nas_port_type Virtual 72963 remote_ip 5.5.5.226 72964 username alinezhad 72964 unique_id port 72964 terminate_cause User-Request 72964 bytes_out 1231456 72964 bytes_in 30545306 72964 station_ip 5.202.65.132 72964 port 15728743 72964 nas_port_type Virtual 72964 remote_ip 5.5.5.224 72965 username reza 72965 unique_id port 72965 terminate_cause Lost-Carrier 72965 bytes_out 120 72965 bytes_in 61296 72965 station_ip 37.129.24.44 72965 port 15728744 72965 nas_port_type Virtual 72965 remote_ip 5.5.5.219 72966 username alinezhad 72966 unique_id port 72966 terminate_cause User-Request 72966 bytes_out 14916 72943 nas_port_type Virtual 72943 remote_ip 5.5.5.228 72947 username golmahammad 72947 unique_id port 72947 terminate_cause User-Request 72947 bytes_out 14263 72947 bytes_in 37075 72947 station_ip 83.123.23.254 72947 port 15728715 72947 nas_port_type Virtual 72947 remote_ip 5.5.5.230 72952 username aminvpn 72952 unique_id port 72952 terminate_cause User-Request 72952 bytes_out 537599 72952 bytes_in 6893216 72952 station_ip 46.100.222.60 72952 port 15728718 72952 nas_port_type Virtual 72952 remote_ip 5.5.5.226 72955 username alinezhad 72955 unique_id port 72955 terminate_cause User-Request 72955 bytes_out 0 72955 bytes_in 0 72955 station_ip 5.202.65.132 72955 port 15728722 72955 nas_port_type Virtual 72955 remote_ip 5.5.5.224 72956 username alinezhad 72956 unique_id port 72956 terminate_cause User-Request 72956 bytes_out 0 72956 bytes_in 0 72956 station_ip 5.202.65.132 72956 port 15728725 72956 nas_port_type Virtual 72956 remote_ip 5.5.5.224 72958 username alinezhad 72958 unique_id port 72958 terminate_cause User-Request 72958 bytes_out 85477 72958 bytes_in 3595151 72958 station_ip 5.202.65.132 72958 port 15728736 72958 nas_port_type Virtual 72958 remote_ip 5.5.5.224 72962 username alirezazamani 72962 unique_id port 72962 terminate_cause Lost-Carrier 72962 bytes_out 371526 72962 bytes_in 1635174 72962 station_ip 5.119.147.162 72962 port 15728738 72962 nas_port_type Virtual 72962 remote_ip 5.5.5.222 72967 username ahmad 72967 unique_id port 72967 terminate_cause User-Request 72967 bytes_out 1171070 72967 bytes_in 21288765 72967 station_ip 86.57.44.18 72967 port 15728740 72967 nas_port_type Virtual 72967 remote_ip 5.5.5.220 72970 username mahdi 72970 unique_id port 72970 terminate_cause Lost-Carrier 72970 bytes_out 2757876 72970 bytes_in 48345799 72970 station_ip 5.119.22.103 72970 port 15728724 72970 nas_port_type Virtual 72970 remote_ip 5.5.5.223 72973 username aminvpn 72973 mac 72973 bytes_out 0 72973 bytes_in 0 72973 station_ip 5.119.136.60 72973 port 3 72973 unique_id port 72973 remote_ip 10.8.1.10 81095 nas_port_type Virtual 81098 username asadi 81098 unique_id port 81098 terminate_cause User-Request 81098 bytes_out 15118 81098 bytes_in 70441 81098 station_ip 113.203.49.19 81098 port 15728691 81098 nas_port_type Virtual 72976 username aminvpn 72976 mac 72976 bytes_out 2051845 72976 bytes_in 16485872 72976 station_ip 5.119.136.60 72976 port 3 72976 unique_id port 72976 remote_ip 10.8.1.10 72977 username alinezhad 72977 unique_id port 72977 terminate_cause User-Request 72977 bytes_out 10013 72977 bytes_in 18066 72977 station_ip 37.129.74.57 72977 port 15728751 72977 nas_port_type Virtual 72977 remote_ip 5.5.5.215 72979 username alirezazamani 72979 kill_reason Another user logged on this global unique id 72979 mac 72979 bytes_out 0 72979 bytes_in 0 72979 station_ip 5.119.109.63 72979 port 1 72979 unique_id port 72980 username alirezazamani 72980 mac 72980 bytes_out 0 72980 bytes_in 0 72980 station_ip 5.119.109.63 72980 port 1 72980 unique_id port 72981 username alinezhad 72981 unique_id port 72981 terminate_cause User-Request 72981 bytes_out 0 72981 bytes_in 0 72981 station_ip 37.129.110.146 72981 port 15728752 72981 nas_port_type Virtual 72981 remote_ip 5.5.5.214 81098 remote_ip 5.5.5.254 81101 username soleymani 81101 unique_id port 81101 terminate_cause Lost-Carrier 81101 bytes_out 215414 81101 bytes_in 751654 81101 station_ip 5.119.228.104 81101 port 15728685 81101 nas_port_type Virtual 72984 username iranmanesh 72984 unique_id port 72984 terminate_cause Lost-Carrier 72984 bytes_out 606163 72966 bytes_in 29662 72966 station_ip 5.202.65.132 72966 port 15728745 72966 nas_port_type Virtual 72966 remote_ip 5.5.5.224 81096 remote_ip 5.5.5.247 81100 username soleymani 81100 kill_reason Maximum number of concurrent logins reached 81100 unique_id port 81100 bytes_out 0 81100 bytes_in 0 81100 station_ip 5.119.227.210 81100 port 15728699 81100 nas_port_type Virtual 72974 username ahmadi 72974 unique_id port 72974 terminate_cause User-Request 72974 bytes_out 102737 72974 bytes_in 908544 72974 station_ip 37.129.6.204 72974 port 15728748 72974 nas_port_type Virtual 72974 remote_ip 5.5.5.217 72978 username alirezazamani 72978 kill_reason Another user logged on this global unique id 72978 mac 72978 bytes_out 0 72978 bytes_in 0 72978 station_ip 5.119.109.63 72978 port 1 72978 unique_id port 72978 remote_ip 10.8.0.14 72985 username alirezazamani 72985 mac 72985 bytes_out 0 72985 bytes_in 0 72985 station_ip 5.119.109.63 72985 port 1 72985 unique_id port 72985 remote_ip 10.8.0.14 72987 username alirezazamani 72987 mac 72987 bytes_out 0 72987 bytes_in 0 72987 station_ip 5.119.109.63 72987 port 1 72987 unique_id port 72987 remote_ip 10.8.0.14 72995 username alirezazamani 72995 mac 72995 bytes_out 0 72995 bytes_in 0 72995 station_ip 5.119.109.63 72995 port 1 72995 unique_id port 72995 remote_ip 10.8.0.14 72997 username alirezazamani 72997 mac 72997 bytes_out 0 72997 bytes_in 0 72997 station_ip 5.119.109.63 72997 port 3 72997 unique_id port 72997 remote_ip 10.8.1.14 73001 username alirezazamani 73001 mac 73001 bytes_out 0 73001 bytes_in 0 73001 station_ip 5.119.109.63 73001 port 3 73001 unique_id port 73001 remote_ip 10.8.1.14 73002 username alirezazamani 73002 mac 73002 bytes_out 0 73002 bytes_in 0 73002 station_ip 5.119.109.63 73002 port 3 73002 unique_id port 73002 remote_ip 10.8.1.14 73004 username aminvpn 73004 unique_id port 73004 terminate_cause User-Request 73004 bytes_out 0 73004 bytes_in 0 73004 station_ip 5.119.60.202 73004 port 15728758 73004 nas_port_type Virtual 73004 remote_ip 5.5.5.212 73009 username alirezazamani 73009 mac 73009 bytes_out 0 73009 bytes_in 0 73009 station_ip 5.119.109.63 73009 port 4 73009 unique_id port 73009 remote_ip 10.8.1.14 81103 username soleymani 81103 unique_id port 81103 terminate_cause Lost-Carrier 81103 bytes_out 52488 81103 bytes_in 284607 81103 station_ip 5.120.165.67 81103 port 15728688 81103 nas_port_type Virtual 81103 remote_ip 5.5.5.220 73023 username alirezazamani 73023 mac 73023 bytes_out 0 73023 bytes_in 0 73023 station_ip 5.119.109.63 73023 port 2 73023 unique_id port 73023 remote_ip 10.8.0.14 73024 username alirezazamani 73024 mac 73024 bytes_out 0 73024 bytes_in 0 73024 station_ip 5.119.109.63 73024 port 2 73024 unique_id port 73024 remote_ip 10.8.0.14 73025 username alirezazamani 73025 mac 73025 bytes_out 0 73025 bytes_in 0 73025 station_ip 5.119.109.63 73025 port 2 73025 unique_id port 73025 remote_ip 10.8.0.14 73028 username alirezazamani 73028 mac 73028 bytes_out 0 73028 bytes_in 0 73028 station_ip 5.119.109.63 73028 port 2 73028 unique_id port 73028 remote_ip 10.8.0.14 73075 username alirezazamani 73075 mac 73075 bytes_out 0 73075 bytes_in 0 73075 station_ip 5.119.109.63 73075 port 2 73075 unique_id port 73075 remote_ip 10.8.0.14 73078 username alirezazamani 73078 mac 73078 bytes_out 0 73078 bytes_in 0 73078 station_ip 5.119.109.63 73078 port 2 73078 unique_id port 72972 bytes_out 3106533 72972 bytes_in 34376034 72972 station_ip 5.119.136.60 72972 port 3 72972 unique_id port 72972 remote_ip 10.8.1.10 72982 username alirezazamani 72982 mac 72982 bytes_out 1141895 72982 bytes_in 11960838 72982 station_ip 5.119.109.63 72982 port 1 72982 unique_id port 72982 remote_ip 10.8.0.14 72986 username mobina 72986 unique_id port 72986 terminate_cause Lost-Carrier 72986 bytes_out 211651561 72986 bytes_in 460632180 72986 station_ip 5.123.225.67 72986 port 15728721 72986 nas_port_type Virtual 72986 remote_ip 5.5.5.225 72988 username alirezazamani 72988 mac 72988 bytes_out 0 72988 bytes_in 0 72988 station_ip 5.119.109.63 72988 port 1 72988 unique_id port 72988 remote_ip 10.8.0.14 72992 username alirezazamani 72992 unique_id port 72992 terminate_cause User-Request 72992 bytes_out 0 72992 bytes_in 0 72992 station_ip 5.119.109.63 72992 port 15728754 72992 nas_port_type Virtual 72992 remote_ip 5.5.5.213 72993 username alirezazamani 72993 mac 72993 bytes_out 0 72993 bytes_in 0 72993 station_ip 5.119.109.63 72993 port 1 72993 unique_id port 72993 remote_ip 10.8.0.14 72998 username alirezazamani 72998 mac 72998 bytes_out 0 72998 bytes_in 0 72998 station_ip 5.119.109.63 72998 port 3 72998 unique_id port 72998 remote_ip 10.8.1.14 73003 username alirezazamani 73003 mac 73003 bytes_out 0 73003 bytes_in 0 73003 station_ip 5.119.109.63 73003 port 3 73003 unique_id port 73003 remote_ip 10.8.1.14 73005 username alirezazamani 73005 mac 73005 bytes_out 0 73005 bytes_in 0 73005 station_ip 5.119.109.63 73005 port 3 73005 unique_id port 73005 remote_ip 10.8.1.14 73006 username alirezazamani 73006 kill_reason Maximum check online fails reached 73006 mac 73006 bytes_out 0 73006 bytes_in 0 73006 station_ip 5.119.109.63 73006 port 3 73006 unique_id port 73013 username alirezazamani 73013 mac 73013 bytes_out 0 73013 bytes_in 0 73013 station_ip 5.119.109.63 73013 port 1 73013 unique_id port 73013 remote_ip 10.8.0.14 73014 username alirezazamani 73014 mac 73014 bytes_out 0 73014 bytes_in 0 73014 station_ip 5.119.109.63 73014 port 1 73014 unique_id port 73014 remote_ip 10.8.0.14 73016 username alirezazamani 73016 mac 73016 bytes_out 0 73016 bytes_in 0 73016 station_ip 5.119.109.63 73016 port 5 73016 unique_id port 73016 remote_ip 10.8.1.14 73022 username alirezazamani 73022 mac 73022 bytes_out 0 73022 bytes_in 0 73022 station_ip 5.119.109.63 73022 port 2 73022 unique_id port 73022 remote_ip 10.8.0.14 73029 username alirezazamani 73029 mac 73029 bytes_out 0 73029 bytes_in 0 73029 station_ip 5.119.109.63 73029 port 2 73029 unique_id port 73029 remote_ip 10.8.0.14 73030 username alirezazamani 73030 mac 73030 bytes_out 0 73030 bytes_in 0 73030 station_ip 5.119.109.63 73030 port 2 73030 unique_id port 73030 remote_ip 10.8.0.14 73032 username alirezazamani 73032 mac 73032 bytes_out 0 73032 bytes_in 0 73032 station_ip 5.119.109.63 73032 port 2 73032 unique_id port 73032 remote_ip 10.8.0.14 73034 username alirezazamani 73034 mac 73034 bytes_out 0 73034 bytes_in 0 73034 station_ip 5.119.109.63 73034 port 2 73034 unique_id port 73034 remote_ip 10.8.0.14 73035 username alirezazamani 73035 mac 73035 bytes_out 0 73035 bytes_in 0 73035 station_ip 5.119.109.63 73035 port 2 73035 unique_id port 73035 remote_ip 10.8.0.14 73036 username alirezazamani 73036 mac 73036 bytes_out 0 72984 bytes_in 18184799 72984 station_ip 5.114.253.19 72984 port 15728749 72984 nas_port_type Virtual 72984 remote_ip 5.5.5.216 72989 username alirezazamani 72989 mac 72989 bytes_out 0 72989 bytes_in 0 72989 station_ip 5.119.109.63 72989 port 1 72989 unique_id port 72989 remote_ip 10.8.0.14 72990 username alirezazamani 72990 mac 72990 bytes_out 0 72990 bytes_in 0 72990 station_ip 5.119.109.63 72990 port 1 72990 unique_id port 72990 remote_ip 10.8.0.14 72991 username alirezazamani 72991 mac 72991 bytes_out 0 72991 bytes_in 0 72991 station_ip 5.119.109.63 72991 port 3 72991 unique_id port 72991 remote_ip 10.8.1.14 72994 username alirezazamani 72994 mac 72994 bytes_out 0 72994 bytes_in 0 72994 station_ip 5.119.109.63 72994 port 1 72994 unique_id port 72994 remote_ip 10.8.0.14 72996 username alirezazamani 72996 mac 72996 bytes_out 0 72996 bytes_in 0 72996 station_ip 5.119.109.63 72996 port 3 72996 unique_id port 72996 remote_ip 10.8.1.14 72999 username alirezazamani 72999 mac 72999 bytes_out 0 72999 bytes_in 0 72999 station_ip 5.119.109.63 72999 port 3 72999 unique_id port 72999 remote_ip 10.8.1.14 73000 username alirezazamani 73000 mac 73000 bytes_out 0 73000 bytes_in 0 73000 station_ip 5.119.109.63 73000 port 3 73000 unique_id port 73000 remote_ip 10.8.1.14 73007 username alirezazamani 73007 mac 73007 bytes_out 0 73007 bytes_in 0 73007 station_ip 5.119.109.63 73007 port 4 73007 unique_id port 73007 remote_ip 10.8.1.14 73008 username tahani 73008 unique_id port 73008 terminate_cause User-Request 73008 bytes_out 77534 73008 bytes_in 586482 73008 station_ip 83.122.172.212 73008 port 15728759 73008 nas_port_type Virtual 73008 remote_ip 5.5.5.211 73011 username alirezazamani 73011 kill_reason Maximum check online fails reached 73011 mac 73011 bytes_out 0 73011 bytes_in 0 73011 station_ip 5.119.109.63 73011 port 4 73011 unique_id port 73012 username alirezazamani 73012 mac 73012 bytes_out 0 73012 bytes_in 0 73012 station_ip 5.119.109.63 73012 port 5 73012 unique_id port 73012 remote_ip 10.8.1.14 73015 username alirezazamani 73015 kill_reason Maximum check online fails reached 73015 mac 73015 bytes_out 0 73015 bytes_in 0 73015 station_ip 5.119.109.63 73015 port 1 73015 unique_id port 73017 username alirezazamani 73017 mac 73017 bytes_out 0 73017 bytes_in 0 73017 station_ip 5.119.109.63 73017 port 2 73017 unique_id port 73017 remote_ip 10.8.0.14 73018 username alirezazamani 73018 mac 73018 bytes_out 0 73018 bytes_in 0 73018 station_ip 5.119.109.63 73018 port 2 73018 unique_id port 73018 remote_ip 10.8.0.14 73019 username alirezazamani 73019 mac 73019 bytes_out 0 73019 bytes_in 0 73019 station_ip 5.119.109.63 73019 port 2 73019 unique_id port 73019 remote_ip 10.8.0.14 73020 username alirezazamani 73020 mac 73020 bytes_out 0 73020 bytes_in 0 73020 station_ip 5.119.109.63 73020 port 2 73020 unique_id port 73020 remote_ip 10.8.0.14 73021 username alirezazamani 73021 mac 73021 bytes_out 0 73021 bytes_in 0 73021 station_ip 5.119.109.63 73021 port 2 73021 unique_id port 73021 remote_ip 10.8.0.14 73026 username alirezazamani 73026 mac 73026 bytes_out 0 73026 bytes_in 0 73026 station_ip 5.119.109.63 73026 port 2 73026 unique_id port 73026 remote_ip 10.8.0.14 73027 username alirezazamani 73027 mac 73027 bytes_out 0 73027 bytes_in 0 73027 station_ip 5.119.109.63 73027 port 2 73027 unique_id port 73027 remote_ip 10.8.0.14 73031 username alirezazamani 73031 mac 73031 bytes_out 0 73031 bytes_in 0 73031 station_ip 5.119.109.63 73031 port 2 73031 unique_id port 73031 remote_ip 10.8.0.14 73033 username alirezazamani 73033 mac 73033 bytes_out 0 73033 bytes_in 0 73033 station_ip 5.119.109.63 73033 port 2 73033 unique_id port 73033 remote_ip 10.8.0.14 73076 username alirezazamani 73076 mac 73076 bytes_out 0 73076 bytes_in 0 73076 station_ip 5.119.109.63 73076 port 2 73076 unique_id port 73076 remote_ip 10.8.0.14 73077 username alirezazamani 73077 mac 73077 bytes_out 0 73077 bytes_in 0 73077 station_ip 5.119.109.63 73077 port 2 73077 unique_id port 73077 remote_ip 10.8.0.14 73079 username alirezazamani 73079 mac 73079 bytes_out 0 73079 bytes_in 0 73079 station_ip 5.119.109.63 73079 port 2 73079 unique_id port 73079 remote_ip 10.8.0.14 73080 username alirezazamani 73080 mac 73080 bytes_out 0 73080 bytes_in 0 73080 station_ip 5.119.109.63 73080 port 2 73080 unique_id port 73080 remote_ip 10.8.0.14 73081 username alirezazamani 73081 mac 73081 bytes_out 0 73081 bytes_in 0 73081 station_ip 5.119.109.63 73081 port 2 73081 unique_id port 73081 remote_ip 10.8.0.14 73082 username alirezazamani 73082 mac 73082 bytes_out 0 73082 bytes_in 0 73082 station_ip 5.119.109.63 73082 port 2 73082 unique_id port 73082 remote_ip 10.8.0.14 73083 username alirezazamani 73083 mac 73083 bytes_out 0 73083 bytes_in 0 73083 station_ip 5.119.109.63 73083 port 2 73083 unique_id port 73083 remote_ip 10.8.0.14 73085 username alirezazamani 73085 mac 73085 bytes_out 0 73085 bytes_in 0 73085 station_ip 5.119.109.63 73085 port 2 73085 unique_id port 73085 remote_ip 10.8.0.14 73091 username alirezazamani 73091 mac 73091 bytes_out 0 73091 bytes_in 0 73091 station_ip 5.119.109.63 73091 port 2 73091 unique_id port 73091 remote_ip 10.8.0.14 73092 username alirezazamani 73092 mac 73092 bytes_out 0 73092 bytes_in 0 73092 station_ip 5.119.109.63 73092 port 2 73092 unique_id port 73092 remote_ip 10.8.0.14 73096 username alirezazamani 73096 mac 73096 bytes_out 0 73096 bytes_in 0 73096 station_ip 5.119.109.63 73096 port 2 73096 unique_id port 73096 remote_ip 10.8.0.14 73097 username alirezazamani 73097 mac 73097 bytes_out 0 73097 bytes_in 0 73097 station_ip 5.119.109.63 73097 port 2 73097 unique_id port 73097 remote_ip 10.8.0.14 73098 username alirezazamani 73098 mac 73098 bytes_out 0 73098 bytes_in 0 73098 station_ip 5.119.109.63 73098 port 2 73098 unique_id port 73098 remote_ip 10.8.0.14 73104 username alirezazamani 73104 mac 73104 bytes_out 0 73104 bytes_in 0 73104 station_ip 5.119.109.63 73104 port 6 73104 unique_id port 73104 remote_ip 10.8.1.14 73105 username alirezazamani 73105 mac 73105 bytes_out 0 73105 bytes_in 0 73105 station_ip 5.119.109.63 73105 port 3 73105 unique_id port 73105 remote_ip 10.8.0.14 73106 username alirezazamani 73106 mac 73106 bytes_out 0 73106 bytes_in 0 73106 station_ip 5.119.109.63 73106 port 3 73106 unique_id port 73106 remote_ip 10.8.0.14 73107 username alirezazamani 73107 mac 73107 bytes_out 0 73107 bytes_in 0 73107 station_ip 5.119.109.63 73107 port 3 73107 unique_id port 73107 remote_ip 10.8.0.14 73109 username alirezazamani 73109 mac 73109 bytes_out 0 73109 bytes_in 0 73036 bytes_in 0 73036 station_ip 5.119.109.63 73036 port 2 73036 unique_id port 73036 remote_ip 10.8.0.14 73078 remote_ip 10.8.0.14 73084 username alirezazamani 73084 mac 73084 bytes_out 0 73084 bytes_in 0 73084 station_ip 5.119.109.63 73084 port 2 73084 unique_id port 73084 remote_ip 10.8.0.14 73090 username alirezazamani 73090 mac 73090 bytes_out 0 73090 bytes_in 0 73090 station_ip 5.119.109.63 73090 port 2 73090 unique_id port 73090 remote_ip 10.8.0.14 73093 username alirezazamani 73093 mac 73093 bytes_out 0 73093 bytes_in 0 73093 station_ip 5.119.109.63 73093 port 2 73093 unique_id port 73093 remote_ip 10.8.0.14 73094 username alirezazamani 73094 mac 73094 bytes_out 0 73094 bytes_in 0 73094 station_ip 5.119.109.63 73094 port 2 73094 unique_id port 73094 remote_ip 10.8.0.14 73095 username alirezazamani 73095 mac 73095 bytes_out 0 73095 bytes_in 0 73095 station_ip 5.119.109.63 73095 port 2 73095 unique_id port 73095 remote_ip 10.8.0.14 73099 username alirezazamani 73099 mac 73099 bytes_out 0 73099 bytes_in 0 73099 station_ip 5.119.109.63 73099 port 2 73099 unique_id port 73099 remote_ip 10.8.0.14 73103 username alirezazamani 73103 mac 73103 bytes_out 0 73103 bytes_in 0 73103 station_ip 5.119.109.63 73103 port 6 73103 unique_id port 73103 remote_ip 10.8.1.14 73113 username alirezazamani 73113 mac 73113 bytes_out 0 73113 bytes_in 0 73113 station_ip 5.119.109.63 73113 port 3 73113 unique_id port 73113 remote_ip 10.8.0.14 73114 username alirezazamani 73114 mac 73114 bytes_out 0 73114 bytes_in 0 73114 station_ip 5.119.109.63 73114 port 3 73114 unique_id port 73114 remote_ip 10.8.0.14 73115 username alirezazamani 73115 mac 73115 bytes_out 0 73115 bytes_in 0 73115 station_ip 5.119.109.63 73115 port 3 73115 unique_id port 73115 remote_ip 10.8.0.14 73120 username alirezazamani 73120 mac 73120 bytes_out 0 73120 bytes_in 0 73120 station_ip 5.119.109.63 73120 port 3 73120 unique_id port 73120 remote_ip 10.8.0.14 73121 username alirezazamani 73121 mac 73121 bytes_out 0 73121 bytes_in 0 73121 station_ip 5.119.109.63 73121 port 3 73121 unique_id port 73121 remote_ip 10.8.0.14 73129 username alirezazamani 73129 mac 73129 bytes_out 0 73129 bytes_in 0 73129 station_ip 5.119.109.63 73129 port 3 73129 unique_id port 73129 remote_ip 10.8.0.14 73130 username alirezazamani 73130 mac 73130 bytes_out 0 73130 bytes_in 0 73130 station_ip 5.119.109.63 73130 port 3 73130 unique_id port 73130 remote_ip 10.8.0.14 73132 username alirezazamani 73132 mac 73132 bytes_out 0 73132 bytes_in 0 73132 station_ip 5.119.109.63 73132 port 3 73132 unique_id port 73132 remote_ip 10.8.0.14 73133 username alirezazamani 73133 mac 73133 bytes_out 0 73133 bytes_in 0 73133 station_ip 5.119.109.63 73133 port 6 73133 unique_id port 73133 remote_ip 10.8.1.14 73136 username alirezazamani 73136 mac 73136 bytes_out 0 73136 bytes_in 0 73136 station_ip 5.119.109.63 73136 port 3 73136 unique_id port 73136 remote_ip 10.8.0.14 73139 username alirezazamani 73139 mac 73139 bytes_out 0 73139 bytes_in 0 73139 station_ip 5.119.109.63 73139 port 3 73139 unique_id port 73139 remote_ip 10.8.0.14 73140 username alirezazamani 73140 mac 73140 bytes_out 0 73140 bytes_in 0 73140 station_ip 5.119.109.63 73140 port 3 73140 unique_id port 73140 remote_ip 10.8.0.14 73037 username alirezazamani 73037 mac 73037 bytes_out 0 73037 bytes_in 0 73037 station_ip 5.119.109.63 73037 port 2 73037 unique_id port 73037 remote_ip 10.8.0.14 73041 username alirezazamani 73041 mac 73041 bytes_out 0 73041 bytes_in 0 73041 station_ip 5.119.109.63 73041 port 5 73041 unique_id port 73041 remote_ip 10.8.1.14 73043 username alirezazamani 73043 mac 73043 bytes_out 0 73043 bytes_in 0 73043 station_ip 5.119.109.63 73043 port 5 73043 unique_id port 73043 remote_ip 10.8.1.14 73045 username alirezazamani 73045 kill_reason Maximum check online fails reached 73045 mac 73045 bytes_out 0 73045 bytes_in 0 73045 station_ip 5.119.109.63 73045 port 5 73045 unique_id port 73049 username alirezazamani 73049 mac 73049 bytes_out 0 73049 bytes_in 0 73049 station_ip 5.119.109.63 73049 port 6 73049 unique_id port 73049 remote_ip 10.8.1.14 73052 username alirezazamani 73052 mac 73052 bytes_out 0 73052 bytes_in 0 73052 station_ip 5.119.109.63 73052 port 2 73052 unique_id port 73052 remote_ip 10.8.0.14 73053 username alirezazamani 73053 mac 73053 bytes_out 0 73053 bytes_in 0 73053 station_ip 5.119.109.63 73053 port 2 73053 unique_id port 73053 remote_ip 10.8.0.14 73054 username alirezazamani 73054 mac 73054 bytes_out 0 73054 bytes_in 0 73054 station_ip 5.119.109.63 73054 port 2 73054 unique_id port 73054 remote_ip 10.8.0.14 73055 username alirezazamani 73055 mac 73055 bytes_out 0 73055 bytes_in 0 73055 station_ip 5.119.109.63 73055 port 2 73055 unique_id port 73055 remote_ip 10.8.0.14 73059 username alirezazamani 73059 mac 73059 bytes_out 0 73059 bytes_in 0 73059 station_ip 5.119.109.63 73059 port 2 73059 unique_id port 73059 remote_ip 10.8.0.14 73070 username alirezazamani 73070 mac 73070 bytes_out 0 73070 bytes_in 0 73070 station_ip 5.119.109.63 73070 port 2 73070 unique_id port 73070 remote_ip 10.8.0.14 73071 username alirezazamani 73071 mac 73071 bytes_out 0 73071 bytes_in 0 73071 station_ip 5.119.109.63 73071 port 2 73071 unique_id port 73071 remote_ip 10.8.0.14 73086 username alirezazamani 73086 mac 73086 bytes_out 0 73086 bytes_in 0 73086 station_ip 5.119.109.63 73086 port 2 73086 unique_id port 73086 remote_ip 10.8.0.14 73087 username alirezazamani 73087 mac 73087 bytes_out 0 73087 bytes_in 0 73087 station_ip 5.119.109.63 73087 port 2 73087 unique_id port 73087 remote_ip 10.8.0.14 73088 username alirezazamani 73088 mac 73088 bytes_out 0 73088 bytes_in 0 73088 station_ip 5.119.109.63 73088 port 2 73088 unique_id port 73088 remote_ip 10.8.0.14 73089 username alirezazamani 73089 mac 73089 bytes_out 0 73089 bytes_in 0 73089 station_ip 5.119.109.63 73089 port 2 73089 unique_id port 73089 remote_ip 10.8.0.14 73100 username alirezazamani 73100 mac 73100 bytes_out 0 73100 bytes_in 0 73100 station_ip 5.119.109.63 73100 port 2 73100 unique_id port 73100 remote_ip 10.8.0.14 73101 username alirezazamani 73101 mac 73101 bytes_out 0 73101 bytes_in 0 73101 station_ip 5.119.109.63 73101 port 2 73101 unique_id port 73101 remote_ip 10.8.0.14 73102 username alirezazamani 73102 kill_reason Maximum check online fails reached 73102 mac 73102 bytes_out 0 73102 bytes_in 0 73102 station_ip 5.119.109.63 73102 port 2 73102 unique_id port 73108 username alirezazamani 73108 mac 73108 bytes_out 0 73108 bytes_in 0 73108 station_ip 5.119.109.63 73038 username alirezazamani 73038 mac 73038 bytes_out 0 73038 bytes_in 0 73038 station_ip 5.119.109.63 73038 port 2 73038 unique_id port 73038 remote_ip 10.8.0.14 73039 username alirezazamani 73039 mac 73039 bytes_out 0 73039 bytes_in 0 73039 station_ip 5.119.109.63 73039 port 2 73039 unique_id port 73039 remote_ip 10.8.0.14 73040 username alirezazamani 73040 mac 73040 bytes_out 0 73040 bytes_in 0 73040 station_ip 5.119.109.63 73040 port 2 73040 unique_id port 73040 remote_ip 10.8.0.14 73042 username alirezazamani 73042 mac 73042 bytes_out 0 73042 bytes_in 0 73042 station_ip 5.119.109.63 73042 port 5 73042 unique_id port 73042 remote_ip 10.8.1.14 73044 username alirezazamani 73044 mac 73044 bytes_out 0 73044 bytes_in 0 73044 station_ip 5.119.109.63 73044 port 5 73044 unique_id port 73044 remote_ip 10.8.1.14 73046 username alirezazamani 73046 mac 73046 bytes_out 0 73046 bytes_in 0 73046 station_ip 5.119.109.63 73046 port 6 73046 unique_id port 73046 remote_ip 10.8.1.14 73050 username alirezazamani 73050 mac 73050 bytes_out 0 73050 bytes_in 0 73050 station_ip 5.119.109.63 73050 port 6 73050 unique_id port 73050 remote_ip 10.8.1.14 73051 username alirezazamani 73051 mac 73051 bytes_out 0 73051 bytes_in 0 73051 station_ip 5.119.109.63 73051 port 2 73051 unique_id port 73051 remote_ip 10.8.0.14 73056 username alirezazamani 73056 mac 73056 bytes_out 0 73056 bytes_in 0 73056 station_ip 5.119.109.63 73056 port 2 73056 unique_id port 73056 remote_ip 10.8.0.14 73065 username alirezazamani 73065 mac 73065 bytes_out 0 73065 bytes_in 0 73065 station_ip 5.119.109.63 73065 port 2 73065 unique_id port 73065 remote_ip 10.8.0.14 73066 username alirezazamani 73066 mac 73066 bytes_out 0 73066 bytes_in 0 73066 station_ip 5.119.109.63 73066 port 2 73066 unique_id port 73066 remote_ip 10.8.0.14 73067 username alirezazamani 73067 mac 73067 bytes_out 0 73067 bytes_in 0 73067 station_ip 5.119.109.63 73067 port 2 73067 unique_id port 73067 remote_ip 10.8.0.14 73068 username alirezazamani 73068 mac 73068 bytes_out 0 73068 bytes_in 0 73068 station_ip 5.119.109.63 73068 port 2 73068 unique_id port 73068 remote_ip 10.8.0.14 73069 username alirezazamani 73069 mac 73069 bytes_out 0 73069 bytes_in 0 73069 station_ip 5.119.109.63 73069 port 2 73069 unique_id port 73069 remote_ip 10.8.0.14 73072 username alirezazamani 73072 mac 73072 bytes_out 0 73072 bytes_in 0 73072 station_ip 5.119.109.63 73072 port 2 73072 unique_id port 73072 remote_ip 10.8.0.14 73108 port 3 73108 unique_id port 73108 remote_ip 10.8.0.14 73110 username alirezazamani 73110 mac 73110 bytes_out 0 73110 bytes_in 0 73110 station_ip 5.119.109.63 73110 port 3 73110 unique_id port 73110 remote_ip 10.8.0.14 73111 username alirezazamani 73111 mac 73111 bytes_out 0 73111 bytes_in 0 73111 station_ip 5.119.109.63 73111 port 3 73111 unique_id port 73111 remote_ip 10.8.0.14 73112 username alirezazamani 73112 mac 73112 bytes_out 0 73112 bytes_in 0 73112 station_ip 5.119.109.63 73112 port 3 73112 unique_id port 73112 remote_ip 10.8.0.14 73116 username alirezazamani 73116 mac 73116 bytes_out 0 73116 bytes_in 0 73116 station_ip 5.119.109.63 73116 port 3 73116 unique_id port 73116 remote_ip 10.8.0.14 73118 username alirezazamani 73118 mac 73118 bytes_out 0 73047 username alirezazamani 73047 mac 73047 bytes_out 0 73047 bytes_in 0 73047 station_ip 5.119.109.63 73047 port 6 73047 unique_id port 73047 remote_ip 10.8.1.14 73048 username alirezazamani 73048 mac 73048 bytes_out 0 73048 bytes_in 0 73048 station_ip 5.119.109.63 73048 port 6 73048 unique_id port 73048 remote_ip 10.8.1.14 73057 username alirezazamani 73057 mac 73057 bytes_out 0 73057 bytes_in 0 73057 station_ip 5.119.109.63 73057 port 2 73057 unique_id port 73057 remote_ip 10.8.0.14 73058 username alirezazamani 73058 mac 73058 bytes_out 0 73058 bytes_in 0 73058 station_ip 5.119.109.63 73058 port 2 73058 unique_id port 73058 remote_ip 10.8.0.14 73060 username alirezazamani 73060 mac 73060 bytes_out 0 73060 bytes_in 0 73060 station_ip 5.119.109.63 73060 port 2 73060 unique_id port 73060 remote_ip 10.8.0.14 73061 username alirezazamani 73061 mac 73061 bytes_out 0 73061 bytes_in 0 73061 station_ip 5.119.109.63 73061 port 2 73061 unique_id port 73061 remote_ip 10.8.0.14 73062 username alirezazamani 73062 mac 73062 bytes_out 0 73062 bytes_in 0 73062 station_ip 5.119.109.63 73062 port 2 73062 unique_id port 73062 remote_ip 10.8.0.14 73063 username alirezazamani 73063 mac 73063 bytes_out 0 73063 bytes_in 0 73063 station_ip 5.119.109.63 73063 port 2 73063 unique_id port 73063 remote_ip 10.8.0.14 73064 username alirezazamani 73064 mac 73064 bytes_out 0 73064 bytes_in 0 73064 station_ip 5.119.109.63 73064 port 2 73064 unique_id port 73064 remote_ip 10.8.0.14 73073 username alirezazamani 73073 mac 73073 bytes_out 0 73073 bytes_in 0 73073 station_ip 5.119.109.63 73073 port 2 73073 unique_id port 73073 remote_ip 10.8.0.14 73074 username alirezazamani 73074 mac 73074 bytes_out 0 73074 bytes_in 0 73074 station_ip 5.119.109.63 73074 port 2 73074 unique_id port 73074 remote_ip 10.8.0.14 73109 station_ip 5.119.109.63 73109 port 3 73109 unique_id port 73109 remote_ip 10.8.0.14 73117 username alirezazamani 73117 mac 73117 bytes_out 0 73117 bytes_in 0 73117 station_ip 5.119.109.63 73117 port 3 73117 unique_id port 73117 remote_ip 10.8.0.14 73122 username alirezazamani 73122 mac 73122 bytes_out 0 73122 bytes_in 0 73122 station_ip 5.119.109.63 73122 port 3 73122 unique_id port 73122 remote_ip 10.8.0.14 73124 username alirezazamani 73124 mac 73124 bytes_out 0 73124 bytes_in 0 73124 station_ip 5.119.109.63 73124 port 3 73124 unique_id port 73124 remote_ip 10.8.0.14 73125 username alirezazamani 73125 mac 73125 bytes_out 0 73125 bytes_in 0 73125 station_ip 5.119.109.63 73125 port 3 73125 unique_id port 73125 remote_ip 10.8.0.14 73126 username alirezazamani 73126 mac 73126 bytes_out 0 73126 bytes_in 0 73126 station_ip 5.119.109.63 73126 port 3 73126 unique_id port 73126 remote_ip 10.8.0.14 73131 username alirezazamani 73131 mac 73131 bytes_out 0 73131 bytes_in 0 73131 station_ip 5.119.109.63 73131 port 3 73131 unique_id port 73131 remote_ip 10.8.0.14 73134 username alirezazamani 73134 mac 73134 bytes_out 0 73134 bytes_in 0 73134 station_ip 5.119.109.63 73134 port 6 73134 unique_id port 73134 remote_ip 10.8.1.14 73135 username alirezazamani 73135 kill_reason Maximum check online fails reached 73135 mac 73135 bytes_out 0 73135 bytes_in 0 73135 station_ip 5.119.109.63 73135 port 6 73135 unique_id port 73141 username alirezazamani 73118 bytes_in 0 73118 station_ip 5.119.109.63 73118 port 3 73118 unique_id port 73118 remote_ip 10.8.0.14 73119 username alirezazamani 73119 mac 73119 bytes_out 0 73119 bytes_in 0 73119 station_ip 5.119.109.63 73119 port 3 73119 unique_id port 73119 remote_ip 10.8.0.14 73123 username alirezazamani 73123 mac 73123 bytes_out 0 73123 bytes_in 0 73123 station_ip 5.119.109.63 73123 port 3 73123 unique_id port 73123 remote_ip 10.8.0.14 73127 username alirezazamani 73127 mac 73127 bytes_out 0 73127 bytes_in 0 73127 station_ip 5.119.109.63 73127 port 3 73127 unique_id port 73127 remote_ip 10.8.0.14 73128 username alirezazamani 73128 mac 73128 bytes_out 0 73128 bytes_in 0 73128 station_ip 5.119.109.63 73128 port 3 73128 unique_id port 73128 remote_ip 10.8.0.14 73137 username alirezazamani 73137 mac 73137 bytes_out 0 73137 bytes_in 0 73137 station_ip 5.119.109.63 73137 port 3 73137 unique_id port 73137 remote_ip 10.8.0.14 73138 username alirezazamani 73138 mac 73138 bytes_out 0 73138 bytes_in 0 73138 station_ip 5.119.109.63 73138 port 3 73138 unique_id port 73138 remote_ip 10.8.0.14 73148 username alirezazamani 73148 mac 73148 bytes_out 0 73148 bytes_in 0 73148 station_ip 5.119.109.63 73148 port 3 73148 unique_id port 73148 remote_ip 10.8.0.14 73149 username alirezazamani 73149 mac 73149 bytes_out 0 73149 bytes_in 0 73149 station_ip 5.119.109.63 73149 port 3 73149 unique_id port 73149 remote_ip 10.8.0.14 73150 username alirezazamani 73150 mac 73150 bytes_out 0 73150 bytes_in 0 73150 station_ip 5.119.109.63 73150 port 3 73150 unique_id port 73150 remote_ip 10.8.0.14 73155 username alirezazamani 73155 mac 73155 bytes_out 0 73155 bytes_in 0 73155 station_ip 5.119.109.63 73155 port 7 73155 unique_id port 73155 remote_ip 10.8.1.14 81099 username soleymani 81099 kill_reason Maximum number of concurrent logins reached 81099 unique_id port 81099 bytes_out 0 81099 bytes_in 0 81099 station_ip 5.119.227.210 81099 port 15728698 81099 nas_port_type Virtual 81107 username asadi 73159 username alirezazamani 73159 mac 73159 bytes_out 0 73159 bytes_in 0 73159 station_ip 5.119.109.63 73159 port 3 73159 unique_id port 73159 remote_ip 10.8.0.14 73161 username alirezazamani 73161 mac 73161 bytes_out 0 73161 bytes_in 0 73161 station_ip 5.119.109.63 73161 port 3 73161 unique_id port 73161 remote_ip 10.8.0.14 73173 username alirezazamani 73173 mac 73173 bytes_out 0 73173 bytes_in 0 73173 station_ip 5.119.109.63 73173 port 3 73173 unique_id port 73173 remote_ip 10.8.0.14 73174 username alirezazamani 73174 mac 73174 bytes_out 0 73174 bytes_in 0 73174 station_ip 5.119.109.63 73174 port 3 73174 unique_id port 73174 remote_ip 10.8.0.14 73175 username alirezazamani 73175 mac 73175 bytes_out 0 73175 bytes_in 0 73175 station_ip 5.119.109.63 73175 port 3 73175 unique_id port 73175 remote_ip 10.8.0.14 73176 username alirezazamani 73176 mac 73176 bytes_out 0 73176 bytes_in 0 73176 station_ip 5.119.109.63 73176 port 3 73176 unique_id port 73176 remote_ip 10.8.0.14 73178 username alirezazamani 73178 mac 73178 bytes_out 0 73178 bytes_in 0 73178 station_ip 5.119.109.63 73178 port 7 73178 unique_id port 73178 remote_ip 10.8.1.14 73184 username alirezazamani 73184 mac 73184 bytes_out 0 73184 bytes_in 0 73184 station_ip 5.119.109.63 73184 port 7 73184 unique_id port 73141 mac 73141 bytes_out 0 73141 bytes_in 0 73141 station_ip 5.119.109.63 73141 port 3 73141 unique_id port 73141 remote_ip 10.8.0.14 73142 username alirezazamani 73142 mac 73142 bytes_out 0 73142 bytes_in 0 73142 station_ip 5.119.109.63 73142 port 3 73142 unique_id port 73142 remote_ip 10.8.0.14 73143 username alirezazamani 73143 mac 73143 bytes_out 0 73143 bytes_in 0 73143 station_ip 5.119.109.63 73143 port 3 73143 unique_id port 73143 remote_ip 10.8.0.14 73146 username alirezazamani 73146 mac 73146 bytes_out 0 73146 bytes_in 0 73146 station_ip 5.119.109.63 73146 port 3 73146 unique_id port 73146 remote_ip 10.8.0.14 73147 username alirezazamani 73147 mac 73147 bytes_out 0 73147 bytes_in 0 73147 station_ip 5.119.109.63 73147 port 3 73147 unique_id port 73147 remote_ip 10.8.0.14 73151 username alirezazamani 73151 mac 73151 bytes_out 0 73151 bytes_in 0 73151 station_ip 5.119.109.63 73151 port 3 73151 unique_id port 73151 remote_ip 10.8.0.14 73152 username alirezazamani 73152 mac 73152 bytes_out 0 73152 bytes_in 0 73152 station_ip 5.119.109.63 73152 port 3 73152 unique_id port 73152 remote_ip 10.8.0.14 73157 username alirezazamani 73157 mac 73157 bytes_out 0 73157 bytes_in 0 73157 station_ip 5.119.109.63 73157 port 3 73157 unique_id port 73157 remote_ip 10.8.0.14 73164 username alirezazamani 73164 mac 73164 bytes_out 0 73164 bytes_in 0 73164 station_ip 5.119.109.63 73164 port 3 73164 unique_id port 73164 remote_ip 10.8.0.14 73170 username alirezazamani 73170 mac 73170 bytes_out 0 73170 bytes_in 0 73170 station_ip 5.119.109.63 73170 port 3 73170 unique_id port 73170 remote_ip 10.8.0.14 73171 username alirezazamani 73171 mac 73171 bytes_out 0 73171 bytes_in 0 73171 station_ip 5.119.109.63 73171 port 3 73171 unique_id port 73171 remote_ip 10.8.0.14 73177 username alirezazamani 73177 mac 73177 bytes_out 0 73177 bytes_in 0 73177 station_ip 5.119.109.63 73177 port 7 73177 unique_id port 73177 remote_ip 10.8.1.14 73179 username alirezazamani 73179 mac 73179 bytes_out 0 73179 bytes_in 0 73179 station_ip 5.119.109.63 73179 port 7 73179 unique_id port 73179 remote_ip 10.8.1.14 73182 username alirezazamani 73182 mac 73182 bytes_out 0 73182 bytes_in 0 73182 station_ip 5.119.109.63 73182 port 7 73182 unique_id port 73182 remote_ip 10.8.1.14 73183 username alirezazamani 73183 mac 73183 bytes_out 0 73183 bytes_in 0 73183 station_ip 5.119.109.63 73183 port 7 73183 unique_id port 73183 remote_ip 10.8.1.14 73187 username alirezazamani 73187 mac 73187 bytes_out 0 73187 bytes_in 0 73187 station_ip 5.119.109.63 73187 port 8 73187 unique_id port 73187 remote_ip 10.8.1.14 73190 username alirezazamani 73190 mac 73190 bytes_out 0 73190 bytes_in 0 73190 station_ip 5.119.109.63 73190 port 8 73190 unique_id port 73190 remote_ip 10.8.1.14 73195 username alirezazamani 73195 mac 73195 bytes_out 0 73195 bytes_in 0 73195 station_ip 5.119.109.63 73195 port 8 73195 unique_id port 73195 remote_ip 10.8.1.14 73201 username alirezazamani 73201 mac 73201 bytes_out 0 73201 bytes_in 0 73201 station_ip 5.119.109.63 73201 port 8 73201 unique_id port 73201 remote_ip 10.8.1.14 73205 username alirezazamani 73205 mac 73205 bytes_out 0 73205 bytes_in 0 73205 station_ip 5.119.109.63 73205 port 8 73205 unique_id port 73144 username alirezazamani 73144 mac 73144 bytes_out 0 73144 bytes_in 0 73144 station_ip 5.119.109.63 73144 port 3 73144 unique_id port 73144 remote_ip 10.8.0.14 73145 username alirezazamani 73145 mac 73145 bytes_out 0 73145 bytes_in 0 73145 station_ip 5.119.109.63 73145 port 3 73145 unique_id port 73145 remote_ip 10.8.0.14 73153 username alirezazamani 73153 mac 73153 bytes_out 0 73153 bytes_in 0 73153 station_ip 5.119.109.63 73153 port 3 73153 unique_id port 73153 remote_ip 10.8.0.14 73154 username alirezazamani 73154 mac 73154 bytes_out 0 73154 bytes_in 0 73154 station_ip 5.119.109.63 73154 port 3 73154 unique_id port 73154 remote_ip 10.8.0.14 73156 username alirezazamani 73156 mac 73156 bytes_out 0 73156 bytes_in 0 73156 station_ip 5.119.109.63 73156 port 7 73156 unique_id port 73156 remote_ip 10.8.1.14 73160 username alirezazamani 73160 mac 73160 bytes_out 0 73160 bytes_in 0 73160 station_ip 5.119.109.63 73160 port 3 73160 unique_id port 73160 remote_ip 10.8.0.14 73162 username alirezazamani 73162 mac 73162 bytes_out 0 73162 bytes_in 0 73162 station_ip 5.119.109.63 73162 port 3 73162 unique_id port 73162 remote_ip 10.8.0.14 73163 username alirezazamani 73163 mac 73163 bytes_out 0 73163 bytes_in 0 73163 station_ip 5.119.109.63 73163 port 3 73163 unique_id port 73163 remote_ip 10.8.0.14 73165 username alirezazamani 73165 mac 73165 bytes_out 0 73165 bytes_in 0 73165 station_ip 5.119.109.63 73165 port 3 73165 unique_id port 73165 remote_ip 10.8.0.14 73166 username alirezazamani 73166 mac 73166 bytes_out 0 73166 bytes_in 0 73166 station_ip 5.119.109.63 73166 port 3 73166 unique_id port 73166 remote_ip 10.8.0.14 73167 username alirezazamani 73167 mac 73167 bytes_out 0 73167 bytes_in 0 73167 station_ip 5.119.109.63 73167 port 3 73167 unique_id port 73167 remote_ip 10.8.0.14 73168 username alirezazamani 73168 mac 73168 bytes_out 0 73168 bytes_in 0 73168 station_ip 5.119.109.63 73168 port 3 73168 unique_id port 73168 remote_ip 10.8.0.14 73169 username alirezazamani 73169 mac 73169 bytes_out 0 73169 bytes_in 0 73169 station_ip 5.119.109.63 73169 port 3 73169 unique_id port 73169 remote_ip 10.8.0.14 73172 username alirezazamani 73172 mac 73172 bytes_out 1636 73172 bytes_in 5142 73172 station_ip 5.119.109.63 73172 port 3 73172 unique_id port 73172 remote_ip 10.8.0.14 73180 username alirezazamani 73180 mac 73180 bytes_out 0 73180 bytes_in 0 73180 station_ip 5.119.109.63 73180 port 7 73180 unique_id port 73180 remote_ip 10.8.1.14 73181 username alirezazamani 73181 mac 73181 bytes_out 0 73181 bytes_in 0 73181 station_ip 5.119.109.63 73181 port 7 73181 unique_id port 73181 remote_ip 10.8.1.14 73185 username alirezazamani 73185 mac 73185 bytes_out 0 73185 bytes_in 0 73185 station_ip 5.119.109.63 73185 port 7 73185 unique_id port 73185 remote_ip 10.8.1.14 73186 username alirezazamani 73186 kill_reason Maximum check online fails reached 73186 mac 73186 bytes_out 0 73186 bytes_in 0 73186 station_ip 5.119.109.63 73186 port 7 73186 unique_id port 73189 username alirezazamani 73189 mac 73189 bytes_out 0 73189 bytes_in 0 73189 station_ip 5.119.109.63 73189 port 8 73189 unique_id port 73189 remote_ip 10.8.1.14 73192 username alirezazamani 73192 mac 73192 bytes_out 0 73192 bytes_in 0 73192 station_ip 5.119.109.63 73192 port 8 73184 remote_ip 10.8.1.14 73188 username alirezazamani 73188 mac 73188 bytes_out 0 73188 bytes_in 0 73188 station_ip 5.119.109.63 73188 port 8 73188 unique_id port 73188 remote_ip 10.8.1.14 73191 username alirezazamani 73191 mac 73191 bytes_out 0 73191 bytes_in 0 73191 station_ip 5.119.109.63 73191 port 8 73191 unique_id port 73191 remote_ip 10.8.1.14 73193 username alirezazamani 73193 mac 73193 bytes_out 0 73193 bytes_in 0 73193 station_ip 5.119.109.63 73193 port 8 73193 unique_id port 73193 remote_ip 10.8.1.14 73194 username alirezazamani 73194 mac 73194 bytes_out 0 73194 bytes_in 0 73194 station_ip 5.119.109.63 73194 port 8 73194 unique_id port 73194 remote_ip 10.8.1.14 73196 username alirezazamani 73196 mac 73196 bytes_out 0 73196 bytes_in 0 73196 station_ip 5.119.109.63 73196 port 8 73196 unique_id port 73196 remote_ip 10.8.1.14 73197 username alirezazamani 73197 mac 73197 bytes_out 0 73197 bytes_in 0 73197 station_ip 5.119.109.63 73197 port 8 73197 unique_id port 73197 remote_ip 10.8.1.14 73198 username alirezazamani 73198 mac 73198 bytes_out 0 73198 bytes_in 0 73198 station_ip 5.119.109.63 73198 port 8 73198 unique_id port 73198 remote_ip 10.8.1.14 73199 username alirezazamani 73199 mac 73199 bytes_out 0 73199 bytes_in 0 73199 station_ip 5.119.109.63 73199 port 8 73199 unique_id port 73199 remote_ip 10.8.1.14 73202 username alirezazamani 73202 mac 73202 bytes_out 0 73202 bytes_in 0 73202 station_ip 5.119.109.63 73202 port 8 73202 unique_id port 73202 remote_ip 10.8.1.14 73203 username alirezazamani 73203 mac 73203 bytes_out 0 73203 bytes_in 0 73203 station_ip 5.119.109.63 73203 port 8 73203 unique_id port 73203 remote_ip 10.8.1.14 73204 username alirezazamani 73204 mac 73204 bytes_out 0 73204 bytes_in 0 73204 station_ip 5.119.109.63 73204 port 8 73204 unique_id port 73204 remote_ip 10.8.1.14 73206 username alirezazamani 73206 mac 73206 bytes_out 0 73206 bytes_in 0 73206 station_ip 5.119.109.63 73206 port 3 73206 unique_id port 73206 remote_ip 10.8.0.14 73210 username alirezazamani 73210 mac 73210 bytes_out 0 73210 bytes_in 0 73210 station_ip 5.119.109.63 73210 port 3 73210 unique_id port 73210 remote_ip 10.8.0.14 73211 username alirezazamani 73211 mac 73211 bytes_out 0 73211 bytes_in 0 73211 station_ip 5.119.109.63 73211 port 3 73211 unique_id port 73211 remote_ip 10.8.0.14 73212 username alirezazamani 73212 mac 73212 bytes_out 0 73212 bytes_in 0 73212 station_ip 5.119.109.63 73212 port 3 73212 unique_id port 73212 remote_ip 10.8.0.14 73213 username alirezazamani 73213 mac 73213 bytes_out 0 73213 bytes_in 0 73213 station_ip 5.119.109.63 73213 port 3 73213 unique_id port 73213 remote_ip 10.8.0.14 73234 username alirezazamani 73234 mac 73234 bytes_out 0 73234 bytes_in 0 73234 station_ip 5.119.109.63 73234 port 8 73234 unique_id port 73234 remote_ip 10.8.1.14 73240 username alirezazamani 73240 mac 73240 bytes_out 0 73240 bytes_in 0 73240 station_ip 5.119.109.63 73240 port 10 73240 unique_id port 73240 remote_ip 10.8.1.14 73241 username alirezazamani 73241 mac 73241 bytes_out 0 73241 bytes_in 0 73241 station_ip 5.119.109.63 73241 port 10 73241 unique_id port 73241 remote_ip 10.8.1.14 73243 username alirezazamani 73243 mac 73243 bytes_out 0 73243 bytes_in 0 73243 station_ip 5.119.109.63 73192 unique_id port 73192 remote_ip 10.8.1.14 73200 username alirezazamani 73200 mac 73200 bytes_out 0 73200 bytes_in 0 73200 station_ip 5.119.109.63 73200 port 8 73200 unique_id port 73200 remote_ip 10.8.1.14 73207 username alirezazamani 73207 mac 73207 bytes_out 0 73207 bytes_in 0 73207 station_ip 5.119.109.63 73207 port 3 73207 unique_id port 73207 remote_ip 10.8.0.14 73215 username alirezazamani 73215 mac 73215 bytes_out 0 73215 bytes_in 0 73215 station_ip 5.119.109.63 73215 port 3 73215 unique_id port 73215 remote_ip 10.8.0.14 73216 username alirezazamani 73216 mac 73216 bytes_out 0 73216 bytes_in 0 73216 station_ip 5.119.109.63 73216 port 3 73216 unique_id port 73216 remote_ip 10.8.0.14 73217 username alirezazamani 73217 mac 73217 bytes_out 0 73217 bytes_in 0 73217 station_ip 5.119.109.63 73217 port 3 73217 unique_id port 73217 remote_ip 10.8.0.14 73219 username alirezazamani 73219 mac 73219 bytes_out 0 73219 bytes_in 0 73219 station_ip 5.119.109.63 73219 port 3 73219 unique_id port 73219 remote_ip 10.8.0.14 73220 username alirezazamani 73220 mac 73220 bytes_out 0 73220 bytes_in 0 73220 station_ip 5.119.109.63 73220 port 3 73220 unique_id port 73220 remote_ip 10.8.0.14 73221 username alirezazamani 73221 mac 73221 bytes_out 0 73221 bytes_in 0 73221 station_ip 5.119.109.63 73221 port 3 73221 unique_id port 73221 remote_ip 10.8.0.14 73222 username alirezazamani 73222 mac 73222 bytes_out 0 73222 bytes_in 0 73222 station_ip 5.119.109.63 73222 port 3 73222 unique_id port 73222 remote_ip 10.8.0.14 73223 username alirezazamani 73223 mac 73223 bytes_out 0 73223 bytes_in 0 73223 station_ip 5.119.109.63 73223 port 3 73223 unique_id port 73223 remote_ip 10.8.0.14 73225 username alirezazamani 73225 mac 73225 bytes_out 0 73225 bytes_in 0 73225 station_ip 5.119.109.63 73225 port 3 73225 unique_id port 73225 remote_ip 10.8.0.14 73226 username alirezazamani 73226 mac 73226 bytes_out 0 73226 bytes_in 0 73226 station_ip 5.119.109.63 73226 port 3 73226 unique_id port 73226 remote_ip 10.8.0.14 73228 username alirezazamani 73228 mac 73228 bytes_out 0 73228 bytes_in 0 73228 station_ip 5.119.109.63 73228 port 8 73228 unique_id port 73228 remote_ip 10.8.1.14 73229 username alirezazamani 73229 mac 73229 bytes_out 0 73229 bytes_in 0 73229 station_ip 5.119.109.63 73229 port 8 73229 unique_id port 73229 remote_ip 10.8.1.14 73230 username alirezazamani 73230 mac 73230 bytes_out 0 73230 bytes_in 0 73230 station_ip 5.119.109.63 73230 port 3 73230 unique_id port 73230 remote_ip 10.8.0.14 73231 username alirezazamani 73231 mac 73231 bytes_out 0 73231 bytes_in 0 73231 station_ip 5.119.109.63 73231 port 3 73231 unique_id port 73231 remote_ip 10.8.0.14 73232 username alirezazamani 73232 mac 73232 bytes_out 0 73232 bytes_in 0 73232 station_ip 5.119.109.63 73232 port 3 73232 unique_id port 73232 remote_ip 10.8.0.14 73233 username alirezazamani 73233 mac 73233 bytes_out 0 73233 bytes_in 0 73233 station_ip 5.119.109.63 73233 port 8 73233 unique_id port 73233 remote_ip 10.8.1.14 73235 username alirezazamani 73235 kill_reason Maximum check online fails reached 73235 mac 73235 bytes_out 0 73235 bytes_in 0 73235 station_ip 5.119.109.63 73235 port 8 73235 unique_id port 73236 username alirezazamani 73236 mac 73236 bytes_out 0 73236 bytes_in 0 73205 remote_ip 10.8.1.14 73208 username alirezazamani 73208 mac 73208 bytes_out 0 73208 bytes_in 0 73208 station_ip 5.119.109.63 73208 port 3 73208 unique_id port 73208 remote_ip 10.8.0.14 73209 username alirezazamani 73209 mac 73209 bytes_out 0 73209 bytes_in 0 73209 station_ip 5.119.109.63 73209 port 3 73209 unique_id port 73209 remote_ip 10.8.0.14 73214 username alirezazamani 73214 mac 73214 bytes_out 0 73214 bytes_in 0 73214 station_ip 5.119.109.63 73214 port 3 73214 unique_id port 73214 remote_ip 10.8.0.14 73218 username alirezazamani 73218 mac 73218 bytes_out 0 73218 bytes_in 0 73218 station_ip 5.119.109.63 73218 port 3 73218 unique_id port 73218 remote_ip 10.8.0.14 73224 username alirezazamani 73224 mac 73224 bytes_out 0 73224 bytes_in 0 73224 station_ip 5.119.109.63 73224 port 3 73224 unique_id port 73224 remote_ip 10.8.0.14 73227 username alirezazamani 73227 mac 73227 bytes_out 0 73227 bytes_in 0 73227 station_ip 5.119.109.63 73227 port 3 73227 unique_id port 73227 remote_ip 10.8.0.14 73237 username alirezazamani 73237 mac 73237 bytes_out 0 73237 bytes_in 0 73237 station_ip 5.119.109.63 73237 port 9 73237 unique_id port 73237 remote_ip 10.8.1.14 73239 username alirezazamani 73239 mac 73239 bytes_out 0 73239 bytes_in 0 73239 station_ip 5.119.109.63 73239 port 10 73239 unique_id port 73239 remote_ip 10.8.1.14 73249 username alirezazamani 73249 mac 73249 bytes_out 0 73249 bytes_in 0 73249 station_ip 5.119.109.63 73249 port 3 73249 unique_id port 73249 remote_ip 10.8.0.14 73250 username alirezazamani 73250 mac 73250 bytes_out 0 73250 bytes_in 0 73250 station_ip 5.119.109.63 73250 port 3 73250 unique_id port 73250 remote_ip 10.8.0.14 73253 username alirezazamani 73253 mac 73253 bytes_out 0 73253 bytes_in 0 73253 station_ip 5.119.109.63 73253 port 3 73253 unique_id port 73253 remote_ip 10.8.0.14 73257 username alirezazamani 73257 mac 73257 bytes_out 0 73257 bytes_in 0 73257 station_ip 5.119.109.63 73257 port 3 73257 unique_id port 73257 remote_ip 10.8.0.14 73262 username alirezazamani 73262 mac 73262 bytes_out 0 73262 bytes_in 0 73262 station_ip 5.119.109.63 73262 port 3 73262 unique_id port 73262 remote_ip 10.8.0.14 73263 username alirezazamani 73263 mac 73263 bytes_out 0 73263 bytes_in 0 73263 station_ip 5.119.109.63 73263 port 3 73263 unique_id port 73263 remote_ip 10.8.0.14 73275 username alirezazamani 73275 mac 73275 bytes_out 0 73275 bytes_in 0 73275 station_ip 5.119.109.63 73275 port 3 73275 unique_id port 73275 remote_ip 10.8.0.14 73277 username alirezazamani 73277 mac 73277 bytes_out 0 73277 bytes_in 0 73277 station_ip 5.119.109.63 73277 port 3 73277 unique_id port 73277 remote_ip 10.8.0.14 73278 username alirezazamani 73278 mac 73278 bytes_out 0 73278 bytes_in 0 73278 station_ip 5.119.109.63 73278 port 3 73278 unique_id port 73278 remote_ip 10.8.0.14 73279 username alirezazamani 73279 mac 73279 bytes_out 0 73279 bytes_in 0 73279 station_ip 5.119.109.63 73279 port 3 73279 unique_id port 73279 remote_ip 10.8.0.14 73281 username alinezhad 73281 unique_id port 73281 terminate_cause User-Request 73281 bytes_out 0 73281 bytes_in 0 73281 station_ip 5.202.28.229 73281 port 15728644 73281 nas_port_type Virtual 73281 remote_ip 5.5.5.254 74311 username amin.insta13 74311 unique_id port 74311 terminate_cause User-Request 73236 station_ip 5.119.109.63 73236 port 9 73236 unique_id port 73236 remote_ip 10.8.1.14 73238 username alirezazamani 73238 kill_reason Maximum check online fails reached 73238 mac 73238 bytes_out 0 73238 bytes_in 0 73238 station_ip 5.119.109.63 73238 port 9 73238 unique_id port 73242 username alinezhad 73242 unique_id port 73242 terminate_cause User-Request 73242 bytes_out 435546 73242 bytes_in 8517114 73242 station_ip 5.202.28.229 73242 port 15728641 73242 nas_port_type Virtual 73242 remote_ip 5.5.5.254 73245 username alirezazamani 73245 mac 73245 bytes_out 0 73245 bytes_in 0 73245 station_ip 5.119.109.63 73245 port 10 73245 unique_id port 73245 remote_ip 10.8.1.14 73246 username alirezazamani 73246 mac 73246 bytes_out 0 73246 bytes_in 0 73246 station_ip 5.119.109.63 73246 port 3 73246 unique_id port 73246 remote_ip 10.8.0.14 73247 username alirezazamani 73247 mac 73247 bytes_out 0 73247 bytes_in 0 73247 station_ip 5.119.109.63 73247 port 3 73247 unique_id port 73247 remote_ip 10.8.0.14 73248 username alirezazamani 73248 mac 73248 bytes_out 0 73248 bytes_in 0 73248 station_ip 5.119.109.63 73248 port 3 73248 unique_id port 73248 remote_ip 10.8.0.14 73251 username alirezazamani 73251 mac 73251 bytes_out 0 73251 bytes_in 0 73251 station_ip 5.119.109.63 73251 port 3 73251 unique_id port 73251 remote_ip 10.8.0.14 73252 username alirezazamani 73252 mac 73252 bytes_out 0 73252 bytes_in 0 73252 station_ip 5.119.109.63 73252 port 3 73252 unique_id port 73252 remote_ip 10.8.0.14 73254 username ahmadi 73254 unique_id port 73254 terminate_cause User-Request 73254 bytes_out 1430725 73254 bytes_in 5151548 73254 station_ip 37.129.96.8 73254 port 15728642 73254 nas_port_type Virtual 73254 remote_ip 5.5.5.253 73256 username alirezazamani 73256 mac 73256 bytes_out 0 73256 bytes_in 0 73256 station_ip 5.119.109.63 73256 port 3 73256 unique_id port 73256 remote_ip 10.8.0.14 73260 username alirezazamani 73260 mac 73260 bytes_out 0 73260 bytes_in 0 73260 station_ip 5.119.109.63 73260 port 3 73260 unique_id port 73260 remote_ip 10.8.0.14 73261 username alirezazamani 73261 mac 73261 bytes_out 0 73261 bytes_in 0 73261 station_ip 5.119.109.63 73261 port 3 73261 unique_id port 73261 remote_ip 10.8.0.14 73265 username alirezazamani 73265 mac 73265 bytes_out 0 73265 bytes_in 0 73265 station_ip 5.119.109.63 73265 port 3 73265 unique_id port 73265 remote_ip 10.8.0.14 73266 username alirezazamani 73266 mac 73266 bytes_out 0 73266 bytes_in 0 73266 station_ip 5.119.109.63 73266 port 3 73266 unique_id port 73266 remote_ip 10.8.0.14 73272 username alirezazamani 73272 mac 73272 bytes_out 0 73272 bytes_in 0 73272 station_ip 5.119.109.63 73272 port 3 73272 unique_id port 73272 remote_ip 10.8.0.14 73274 username alirezazamani 73274 mac 73274 bytes_out 0 73274 bytes_in 0 73274 station_ip 5.119.109.63 73274 port 3 73274 unique_id port 73274 remote_ip 10.8.0.14 73276 username alirezazamani 73276 mac 73276 bytes_out 0 73276 bytes_in 0 73276 station_ip 5.119.109.63 73276 port 3 73276 unique_id port 73276 remote_ip 10.8.0.14 74311 bytes_out 503195 74311 bytes_in 3860078 74311 station_ip 37.129.67.69 74311 port 15728864 74311 nas_port_type Virtual 74311 remote_ip 5.5.5.195 74315 username alinezhad 74315 unique_id port 74315 terminate_cause User-Request 74315 bytes_out 26255 74315 bytes_in 50234 74315 station_ip 37.129.248.171 73243 port 10 73243 unique_id port 73243 remote_ip 10.8.1.14 73244 username alirezazamani 73244 mac 73244 bytes_out 0 73244 bytes_in 0 73244 station_ip 5.119.109.63 73244 port 10 73244 unique_id port 73244 remote_ip 10.8.1.14 73255 username alirezazamani 73255 mac 73255 bytes_out 0 73255 bytes_in 0 73255 station_ip 5.119.109.63 73255 port 10 73255 unique_id port 73255 remote_ip 10.8.1.14 73258 username alirezazamani 73258 mac 73258 bytes_out 0 73258 bytes_in 0 73258 station_ip 5.119.109.63 73258 port 3 73258 unique_id port 73258 remote_ip 10.8.0.14 73259 username alirezazamani 73259 mac 73259 bytes_out 0 73259 bytes_in 0 73259 station_ip 5.119.109.63 73259 port 3 73259 unique_id port 73259 remote_ip 10.8.0.14 73264 username alirezazamani 73264 mac 73264 bytes_out 0 73264 bytes_in 0 73264 station_ip 5.119.109.63 73264 port 3 73264 unique_id port 73264 remote_ip 10.8.0.14 73267 username alinezhad 73267 unique_id port 73267 terminate_cause User-Request 73267 bytes_out 0 73267 bytes_in 0 73267 station_ip 5.202.28.229 73267 port 15728643 73267 nas_port_type Virtual 73267 remote_ip 5.5.5.254 73268 username alirezazamani 73268 mac 73268 bytes_out 0 73268 bytes_in 0 73268 station_ip 5.119.109.63 73268 port 3 73268 unique_id port 73268 remote_ip 10.8.0.14 73269 username alirezazamani 73269 mac 73269 bytes_out 0 73269 bytes_in 0 73269 station_ip 5.119.109.63 73269 port 3 73269 unique_id port 73269 remote_ip 10.8.0.14 73270 username alirezazamani 73270 mac 73270 bytes_out 0 73270 bytes_in 0 73270 station_ip 5.119.109.63 73270 port 3 73270 unique_id port 73270 remote_ip 10.8.0.14 73271 username alirezazamani 73271 mac 73271 bytes_out 0 73271 bytes_in 0 73271 station_ip 5.119.109.63 73271 port 3 73271 unique_id port 73271 remote_ip 10.8.0.14 73273 username alirezazamani 73273 mac 73273 bytes_out 0 73273 bytes_in 0 73273 station_ip 5.119.109.63 73273 port 3 73273 unique_id port 73273 remote_ip 10.8.0.14 73280 username alirezazamani 73280 mac 73280 bytes_out 0 73280 bytes_in 0 73280 station_ip 5.119.109.63 73280 port 3 73280 unique_id port 73280 remote_ip 10.8.0.14 74312 username amin.insta13 74312 unique_id port 74312 terminate_cause User-Request 74312 bytes_out 161198 74312 bytes_in 240875 74312 station_ip 37.129.67.69 74312 port 15728866 74312 nas_port_type Virtual 74312 remote_ip 5.5.5.195 74313 username amin.insta13 74313 unique_id port 74313 terminate_cause User-Request 74313 bytes_out 435340 74313 bytes_in 11783451 74313 station_ip 37.129.67.69 74313 port 15728867 74313 nas_port_type Virtual 74313 remote_ip 5.5.5.195 74316 username alirezazamani 74316 unique_id port 74316 terminate_cause Lost-Carrier 74316 bytes_out 52924 74316 bytes_in 170940 74316 station_ip 5.120.82.55 74316 port 15728870 74316 nas_port_type Virtual 74316 remote_ip 5.5.5.193 74317 username mobina 74317 unique_id port 74317 terminate_cause Lost-Carrier 74317 bytes_out 139132 74317 bytes_in 503773 74317 station_ip 80.191.144.71 74317 port 15728875 74317 nas_port_type Virtual 74317 remote_ip 5.5.5.192 74318 username iranmanesh 74318 unique_id port 74318 terminate_cause Admin-Reboot 74318 bytes_out 100340 74318 bytes_in 454421 74318 station_ip 5.114.71.237 74318 port 15728876 74318 nas_port_type Virtual 74318 remote_ip 5.5.5.191 74320 username ahmadi 74320 unique_id port 74320 terminate_cause User-Request 74320 bytes_out 0 74320 bytes_in 0 74320 station_ip 37.129.89.252 74320 port 15728647 73282 username alirezazamani 73282 mac 73282 bytes_out 0 73282 bytes_in 0 73282 station_ip 5.119.109.63 73282 port 3 73282 unique_id port 73282 remote_ip 10.8.0.14 73286 username alirezazamani 73286 mac 73286 bytes_out 0 73286 bytes_in 0 73286 station_ip 5.119.109.63 73286 port 3 73286 unique_id port 73286 remote_ip 10.8.0.14 73287 username alirezazamani 73287 mac 73287 bytes_out 0 73287 bytes_in 0 73287 station_ip 5.119.109.63 73287 port 3 73287 unique_id port 73287 remote_ip 10.8.0.14 73288 username alirezazamani 73288 mac 73288 bytes_out 0 73288 bytes_in 0 73288 station_ip 5.119.109.63 73288 port 3 73288 unique_id port 73288 remote_ip 10.8.0.14 73296 username alirezazamani 73296 mac 73296 bytes_out 0 73296 bytes_in 0 73296 station_ip 5.119.109.63 73296 port 3 73296 unique_id port 73296 remote_ip 10.8.0.14 73297 username alirezazamani 73297 mac 73297 bytes_out 0 73297 bytes_in 0 73297 station_ip 5.119.109.63 73297 port 3 73297 unique_id port 73297 remote_ip 10.8.0.14 73302 username alirezazamani 73302 mac 73302 bytes_out 1636 73302 bytes_in 5142 73302 station_ip 5.119.109.63 73302 port 3 73302 unique_id port 73302 remote_ip 10.8.0.14 73305 username alirezazamani 73305 mac 73305 bytes_out 0 73305 bytes_in 0 73305 station_ip 5.119.109.63 73305 port 10 73305 unique_id port 73305 remote_ip 10.8.1.14 73314 username alirezazamani 73314 mac 73314 bytes_out 0 73314 bytes_in 0 73314 station_ip 5.119.109.63 73314 port 3 73314 unique_id port 73314 remote_ip 10.8.0.14 73315 username alirezazamani 73315 mac 73315 bytes_out 0 73315 bytes_in 0 73315 station_ip 5.119.109.63 73315 port 3 73315 unique_id port 73315 remote_ip 10.8.0.14 73335 username alirezazamani 73335 mac 73335 bytes_out 0 73335 bytes_in 0 73335 station_ip 5.119.109.63 73335 port 3 73335 unique_id port 73335 remote_ip 10.8.0.14 73336 username alirezazamani 73336 mac 73336 bytes_out 0 73336 bytes_in 0 73336 station_ip 5.119.109.63 73336 port 3 73336 unique_id port 73336 remote_ip 10.8.0.14 73338 username alirezazamani 73338 mac 73338 bytes_out 0 73338 bytes_in 0 73338 station_ip 5.119.109.63 73338 port 3 73338 unique_id port 73338 remote_ip 10.8.0.14 73339 username alirezazamani 73339 mac 73339 bytes_out 0 73339 bytes_in 0 73339 station_ip 5.119.109.63 73339 port 3 73339 unique_id port 73339 remote_ip 10.8.0.14 73340 username alirezazamani 73340 mac 73340 bytes_out 0 73340 bytes_in 0 73340 station_ip 5.119.109.63 73340 port 10 73340 unique_id port 73340 remote_ip 10.8.1.14 73342 username nazanin 73342 unique_id port 73342 terminate_cause User-Request 73342 bytes_out 0 73342 bytes_in 0 73342 station_ip 83.123.164.36 73342 port 15728657 73342 nas_port_type Virtual 73342 remote_ip 5.5.5.247 73343 username nazanin 73343 unique_id port 73343 terminate_cause User-Request 73343 bytes_out 0 73343 bytes_in 0 73343 station_ip 83.123.164.36 73343 port 15728658 73343 nas_port_type Virtual 73343 remote_ip 5.5.5.247 73348 username alirezazamani 73348 mac 73348 bytes_out 0 73348 bytes_in 0 73348 station_ip 5.119.109.63 73348 port 10 73348 unique_id port 73348 remote_ip 10.8.1.14 73349 username alirezazamani 73349 mac 73349 bytes_out 0 73349 bytes_in 0 73349 station_ip 5.119.109.63 73349 port 10 73349 unique_id port 73349 remote_ip 10.8.1.14 73352 username alirezazamani 73352 mac 73283 username alirezazamani 73283 mac 73283 bytes_out 0 73283 bytes_in 0 73283 station_ip 5.119.109.63 73283 port 3 73283 unique_id port 73283 remote_ip 10.8.0.14 73289 username alirezazamani 73289 mac 73289 bytes_out 0 73289 bytes_in 0 73289 station_ip 5.119.109.63 73289 port 3 73289 unique_id port 73289 remote_ip 10.8.0.14 73291 username alirezazamani 73291 mac 73291 bytes_out 0 73291 bytes_in 0 73291 station_ip 5.119.109.63 73291 port 3 73291 unique_id port 73291 remote_ip 10.8.0.14 73295 username alinezhad 73295 unique_id port 73295 terminate_cause User-Request 73295 bytes_out 0 73295 bytes_in 0 73295 station_ip 5.202.28.229 73295 port 15728645 73295 nas_port_type Virtual 73295 remote_ip 5.5.5.254 73303 username alinezhad 73303 unique_id port 73303 terminate_cause User-Request 73303 bytes_out 0 73303 bytes_in 0 73303 station_ip 5.202.28.229 73303 port 15728646 73303 nas_port_type Virtual 73303 remote_ip 5.5.5.254 73304 username alirezazamani 73304 mac 73304 bytes_out 0 73304 bytes_in 0 73304 station_ip 5.119.109.63 73304 port 10 73304 unique_id port 73304 remote_ip 10.8.1.14 73307 username tahani 73307 unique_id port 73307 terminate_cause User-Request 73307 bytes_out 248948 73307 bytes_in 5116532 73307 station_ip 37.129.119.1 73307 port 15728647 73307 nas_port_type Virtual 73307 remote_ip 5.5.5.252 73310 username alirezazamani 73310 mac 73310 bytes_out 0 73310 bytes_in 0 73310 station_ip 5.119.109.63 73310 port 3 73310 unique_id port 73310 remote_ip 10.8.0.14 73311 username alirezazamani 73311 mac 73311 bytes_out 0 73311 bytes_in 0 73311 station_ip 5.119.109.63 73311 port 3 73311 unique_id port 73311 remote_ip 10.8.0.14 73312 username alirezazamani 73312 mac 73312 bytes_out 0 73312 bytes_in 0 73312 station_ip 5.119.109.63 73312 port 3 73312 unique_id port 73312 remote_ip 10.8.0.14 73313 username alirezazamani 73313 mac 73313 bytes_out 0 73313 bytes_in 0 73313 station_ip 5.119.109.63 73313 port 3 73313 unique_id port 73313 remote_ip 10.8.0.14 73317 username alirezazamani 73317 mac 73317 bytes_out 0 73317 bytes_in 0 73317 station_ip 5.119.109.63 73317 port 3 73317 unique_id port 73317 remote_ip 10.8.0.14 73320 username alirezazamani 73320 mac 73320 bytes_out 0 73320 bytes_in 0 73320 station_ip 5.119.109.63 73320 port 3 73320 unique_id port 73320 remote_ip 10.8.0.14 81101 remote_ip 5.5.5.221 81102 username alirezazamani 81102 kill_reason Relative expiration date has reached 81102 unique_id port 81102 bytes_out 0 81102 bytes_in 0 81102 station_ip 83.122.110.178 81102 port 15728702 81102 nas_port_type Virtual 73323 username alirezazamani 73323 mac 73323 bytes_out 0 73323 bytes_in 0 73323 station_ip 5.119.109.63 73323 port 3 73323 unique_id port 73323 remote_ip 10.8.0.14 73325 username alirezazamani 73325 mac 73325 bytes_out 0 73325 bytes_in 0 73325 station_ip 5.119.109.63 73325 port 3 73325 unique_id port 73325 remote_ip 10.8.0.14 73326 username alirezazamani 73326 mac 73326 bytes_out 0 73326 bytes_in 0 73326 station_ip 5.119.109.63 73326 port 3 73326 unique_id port 73326 remote_ip 10.8.0.14 73328 username reza 73328 unique_id port 73328 terminate_cause User-Request 73328 bytes_out 50735 73328 bytes_in 498701 73328 station_ip 37.129.20.87 73328 port 15728654 73328 nas_port_type Virtual 73328 remote_ip 5.5.5.249 73330 username alirezazamani 73330 mac 73330 bytes_out 0 73330 bytes_in 0 73330 station_ip 5.119.109.63 73284 username alirezazamani 73284 mac 73284 bytes_out 0 73284 bytes_in 0 73284 station_ip 5.119.109.63 73284 port 3 73284 unique_id port 73284 remote_ip 10.8.0.14 73285 username alirezazamani 73285 mac 73285 bytes_out 0 73285 bytes_in 0 73285 station_ip 5.119.109.63 73285 port 3 73285 unique_id port 73285 remote_ip 10.8.0.14 73290 username alirezazamani 73290 mac 73290 bytes_out 0 73290 bytes_in 0 73290 station_ip 5.119.109.63 73290 port 3 73290 unique_id port 73290 remote_ip 10.8.0.14 73292 username alirezazamani 73292 mac 73292 bytes_out 0 73292 bytes_in 0 73292 station_ip 5.119.109.63 73292 port 3 73292 unique_id port 73292 remote_ip 10.8.0.14 73293 username alirezazamani 73293 mac 73293 bytes_out 0 73293 bytes_in 0 73293 station_ip 5.119.109.63 73293 port 3 73293 unique_id port 73293 remote_ip 10.8.0.14 73294 username alirezazamani 73294 mac 73294 bytes_out 0 73294 bytes_in 0 73294 station_ip 5.119.109.63 73294 port 3 73294 unique_id port 73294 remote_ip 10.8.0.14 73298 username alirezazamani 73298 mac 73298 bytes_out 0 73298 bytes_in 0 73298 station_ip 5.119.109.63 73298 port 3 73298 unique_id port 73298 remote_ip 10.8.0.14 73299 username alirezazamani 73299 mac 73299 bytes_out 0 73299 bytes_in 0 73299 station_ip 5.119.109.63 73299 port 3 73299 unique_id port 73299 remote_ip 10.8.0.14 73300 username alirezazamani 73300 mac 73300 bytes_out 0 73300 bytes_in 0 73300 station_ip 5.119.109.63 73300 port 3 73300 unique_id port 73300 remote_ip 10.8.0.14 73301 username alirezazamani 73301 mac 73301 bytes_out 0 73301 bytes_in 0 73301 station_ip 5.119.109.63 73301 port 3 73301 unique_id port 73301 remote_ip 10.8.0.14 73306 username alirezazamani 73306 mac 73306 bytes_out 0 73306 bytes_in 0 73306 station_ip 5.119.109.63 73306 port 3 73306 unique_id port 73306 remote_ip 10.8.0.14 73308 username alirezazamani 73308 mac 73308 bytes_out 0 73308 bytes_in 0 73308 station_ip 5.119.109.63 73308 port 3 73308 unique_id port 73308 remote_ip 10.8.0.14 73309 username tahani 73309 unique_id port 73309 terminate_cause User-Request 73309 bytes_out 153737 73309 bytes_in 5096008 73309 station_ip 37.129.119.1 73309 port 15728648 73309 nas_port_type Virtual 73309 remote_ip 5.5.5.252 73316 username alirezazamani 73316 mac 73316 bytes_out 0 73316 bytes_in 0 73316 station_ip 5.119.109.63 73316 port 3 73316 unique_id port 73316 remote_ip 10.8.0.14 73318 username alirezazamani 73318 mac 73318 bytes_out 0 73318 bytes_in 0 73318 station_ip 5.119.109.63 73318 port 3 73318 unique_id port 73318 remote_ip 10.8.0.14 73319 username alirezazamani 73319 mac 73319 bytes_out 0 73319 bytes_in 0 73319 station_ip 5.119.109.63 73319 port 3 73319 unique_id port 73319 remote_ip 10.8.0.14 73321 username alirezazamani 73321 mac 73321 bytes_out 0 73321 bytes_in 0 73321 station_ip 5.119.109.63 73321 port 3 73321 unique_id port 73321 remote_ip 10.8.0.14 73324 username ahmadi 73324 unique_id port 73324 terminate_cause User-Request 73324 bytes_out 233803 73324 bytes_in 990597 73324 station_ip 37.129.17.144 73324 port 15728653 73324 nas_port_type Virtual 73324 remote_ip 5.5.5.250 73327 username alirezazamani 73327 mac 73327 bytes_out 0 73327 bytes_in 0 73327 station_ip 5.119.109.63 73327 port 3 73327 unique_id port 73327 remote_ip 10.8.0.14 73329 username alinezhad 73329 unique_id port 73329 terminate_cause User-Request 73329 bytes_out 0 73329 bytes_in 0 73329 station_ip 5.202.28.229 73329 port 15728655 73329 nas_port_type Virtual 73329 remote_ip 5.5.5.254 73332 username alirezazamani 73332 mac 73332 bytes_out 0 73332 bytes_in 0 73332 station_ip 5.119.109.63 73332 port 3 73332 unique_id port 73332 remote_ip 10.8.0.14 73333 username alirezazamani 73333 mac 73333 bytes_out 0 73333 bytes_in 0 73333 station_ip 5.119.109.63 73333 port 3 73333 unique_id port 73333 remote_ip 10.8.0.14 73334 username alirezazamani 73334 mac 73334 bytes_out 0 73334 bytes_in 0 73334 station_ip 5.119.109.63 73334 port 3 73334 unique_id port 73334 remote_ip 10.8.0.14 73346 username alirezazamani 73346 mac 73346 bytes_out 0 73346 bytes_in 0 73346 station_ip 5.119.109.63 73346 port 10 73346 unique_id port 73346 remote_ip 10.8.1.14 73353 username alirezazamani 73353 mac 73353 bytes_out 0 73353 bytes_in 0 73353 station_ip 5.119.109.63 73353 port 10 73353 unique_id port 73353 remote_ip 10.8.1.14 73357 username alirezazamani 73357 mac 73357 bytes_out 0 73357 bytes_in 0 73357 station_ip 5.119.109.63 73357 port 10 73357 unique_id port 73357 remote_ip 10.8.1.14 73360 username alirezazamani 73360 mac 73360 bytes_out 0 73360 bytes_in 0 73360 station_ip 5.119.109.63 73360 port 3 73360 unique_id port 73360 remote_ip 10.8.0.14 73362 username alirezazamani 73362 mac 73362 bytes_out 0 73362 bytes_in 0 73362 station_ip 5.119.109.63 73362 port 3 73362 unique_id port 73362 remote_ip 10.8.0.14 81104 terminate_cause User-Request 81104 bytes_out 0 81104 bytes_in 0 81104 station_ip 5.119.227.210 81104 port 15728703 81104 nas_port_type Virtual 81104 remote_ip 5.5.5.217 81109 username asadi 81109 unique_id port 73378 username alirezazamani 73378 mac 73378 bytes_out 0 73378 bytes_in 0 73378 station_ip 5.119.109.63 73378 port 3 73378 unique_id port 73378 remote_ip 10.8.0.14 73386 username alirezazamani 73386 mac 73386 bytes_out 0 73386 bytes_in 0 73386 station_ip 5.119.109.63 73386 port 3 73386 unique_id port 73386 remote_ip 10.8.0.14 73389 username alirezazamani 73389 mac 73389 bytes_out 0 73389 bytes_in 0 73389 station_ip 5.119.109.63 73389 port 3 73389 unique_id port 73389 remote_ip 10.8.0.14 73390 username alirezazamani 73390 mac 73390 bytes_out 0 73390 bytes_in 0 73390 station_ip 5.119.109.63 73390 port 3 73390 unique_id port 73390 remote_ip 10.8.0.14 73391 username alirezazamani 73391 mac 73391 bytes_out 0 73391 bytes_in 0 73391 station_ip 5.119.109.63 73391 port 3 73391 unique_id port 73391 remote_ip 10.8.0.14 73392 username alirezazamani 73392 mac 73392 bytes_out 0 73392 bytes_in 0 73392 station_ip 5.119.109.63 73392 port 3 73392 unique_id port 73392 remote_ip 10.8.0.14 73394 username alirezazamani 73394 mac 73394 bytes_out 0 73394 bytes_in 0 73394 station_ip 5.119.109.63 73394 port 3 73394 unique_id port 73394 remote_ip 10.8.0.14 73395 username alirezazamani 73395 mac 73395 bytes_out 0 73395 bytes_in 0 73395 station_ip 5.119.109.63 73395 port 3 73395 unique_id port 73395 remote_ip 10.8.0.14 73398 username alirezazamani 73398 unique_id port 73398 terminate_cause User-Request 73398 bytes_out 0 73398 bytes_in 0 73398 station_ip 94.241.179.206 73398 port 15728673 73398 nas_port_type Virtual 73398 remote_ip 5.5.5.245 73400 username alirezazamani 73400 kill_reason Maximum check online fails reached 73330 port 3 73330 unique_id port 73330 remote_ip 10.8.0.14 73331 username alirezazamani 73331 mac 73331 bytes_out 0 73331 bytes_in 0 73331 station_ip 5.119.109.63 73331 port 3 73331 unique_id port 73331 remote_ip 10.8.0.14 73337 username alirezazamani 73337 mac 73337 bytes_out 0 73337 bytes_in 0 73337 station_ip 5.119.109.63 73337 port 3 73337 unique_id port 73337 remote_ip 10.8.0.14 73341 username alirezazamani 73341 mac 73341 bytes_out 0 73341 bytes_in 0 73341 station_ip 5.119.109.63 73341 port 10 73341 unique_id port 73341 remote_ip 10.8.1.14 73344 username nazanin 73344 unique_id port 73344 terminate_cause User-Request 73344 bytes_out 0 73344 bytes_in 0 73344 station_ip 83.123.164.36 73344 port 15728659 73344 nas_port_type Virtual 73344 remote_ip 5.5.5.247 73345 username alirezazamani 73345 mac 73345 bytes_out 0 73345 bytes_in 0 73345 station_ip 5.119.109.63 73345 port 10 73345 unique_id port 73345 remote_ip 10.8.1.14 73347 username nazanin 73347 unique_id port 73347 terminate_cause User-Request 73347 bytes_out 38495 73347 bytes_in 84826 73347 station_ip 83.123.164.36 73347 port 15728660 73347 nas_port_type Virtual 73347 remote_ip 5.5.5.247 73350 username alirezazamani 73350 mac 73350 bytes_out 0 73350 bytes_in 0 73350 station_ip 5.119.109.63 73350 port 10 73350 unique_id port 73350 remote_ip 10.8.1.14 73351 username alirezazamani 73351 mac 73351 bytes_out 0 73351 bytes_in 0 73351 station_ip 5.119.109.63 73351 port 10 73351 unique_id port 73351 remote_ip 10.8.1.14 73355 username alirezazamani 73355 mac 73355 bytes_out 0 73355 bytes_in 0 73355 station_ip 5.119.109.63 73355 port 10 73355 unique_id port 73355 remote_ip 10.8.1.14 73356 username alirezazamani 73356 mac 73356 bytes_out 0 73356 bytes_in 0 73356 station_ip 5.119.109.63 73356 port 10 73356 unique_id port 73356 remote_ip 10.8.1.14 73361 username alirezazamani 73361 mac 73361 bytes_out 0 73361 bytes_in 0 73361 station_ip 5.119.109.63 73361 port 3 73361 unique_id port 73361 remote_ip 10.8.0.14 73367 username alirezazamani 73367 mac 73367 bytes_out 0 73367 bytes_in 0 73367 station_ip 5.119.109.63 73367 port 10 73367 unique_id port 73367 remote_ip 10.8.1.14 73368 username alirezazamani 73368 mac 73368 bytes_out 0 73368 bytes_in 0 73368 station_ip 5.119.109.63 73368 port 10 73368 unique_id port 73368 remote_ip 10.8.1.14 73372 username alirezazamani 73372 mac 73372 bytes_out 0 73372 bytes_in 0 73372 station_ip 5.119.109.63 73372 port 3 73372 unique_id port 73372 remote_ip 10.8.0.14 73373 username alirezazamani 73373 mac 73373 bytes_out 0 73373 bytes_in 0 73373 station_ip 5.119.109.63 73373 port 3 73373 unique_id port 73373 remote_ip 10.8.0.14 73374 username alirezazamani 73374 mac 73374 bytes_out 0 73374 bytes_in 0 73374 station_ip 5.119.109.63 73374 port 3 73374 unique_id port 73374 remote_ip 10.8.0.14 73375 username alirezazamani 73375 mac 73375 bytes_out 0 73375 bytes_in 0 73375 station_ip 5.119.109.63 73375 port 3 73375 unique_id port 73375 remote_ip 10.8.0.14 73376 username alirezazamani 73376 mac 73376 bytes_out 0 73376 bytes_in 0 73376 station_ip 5.119.109.63 73376 port 3 73376 unique_id port 73376 remote_ip 10.8.0.14 73379 username nazanin 73379 unique_id port 73379 terminate_cause User-Request 73379 bytes_out 392 73379 bytes_in 1240 73379 station_ip 83.123.164.36 73379 port 15728671 73352 bytes_out 0 73352 bytes_in 0 73352 station_ip 5.119.109.63 73352 port 10 73352 unique_id port 73352 remote_ip 10.8.1.14 73354 username alirezazamani 73354 mac 73354 bytes_out 0 73354 bytes_in 0 73354 station_ip 5.119.109.63 73354 port 10 73354 unique_id port 73354 remote_ip 10.8.1.14 73358 username alirezazamani 73358 mac 73358 bytes_out 0 73358 bytes_in 0 73358 station_ip 5.119.109.63 73358 port 3 73358 unique_id port 73358 remote_ip 10.8.0.14 73359 username alirezazamani 73359 mac 73359 bytes_out 0 73359 bytes_in 0 73359 station_ip 5.119.109.63 73359 port 3 73359 unique_id port 73359 remote_ip 10.8.0.14 73363 username alirezazamani 73363 mac 73363 bytes_out 0 73363 bytes_in 0 73363 station_ip 5.119.109.63 73363 port 3 73363 unique_id port 73363 remote_ip 10.8.0.14 73364 username alinezhad 73364 unique_id port 73364 terminate_cause User-Request 73364 bytes_out 0 73364 bytes_in 0 73364 station_ip 5.202.28.229 73364 port 15728663 73364 nas_port_type Virtual 73364 remote_ip 5.5.5.254 73366 username alirezazamani 73366 mac 73366 bytes_out 0 73366 bytes_in 0 73366 station_ip 5.119.109.63 73366 port 10 73366 unique_id port 73366 remote_ip 10.8.1.14 73369 username alirezazamani 73369 unique_id port 73369 terminate_cause Lost-Carrier 73369 bytes_out 888262 73369 bytes_in 24776715 73369 station_ip 5.120.160.6 73369 port 15728662 73369 nas_port_type Virtual 73369 remote_ip 5.5.5.246 73370 username alirezazamani 73370 mac 73370 bytes_out 0 73370 bytes_in 0 73370 station_ip 5.119.109.63 73370 port 3 73370 unique_id port 73370 remote_ip 10.8.0.14 73371 username alirezazamani 73371 mac 73371 bytes_out 0 73371 bytes_in 0 73371 station_ip 5.119.109.63 73371 port 3 73371 unique_id port 73371 remote_ip 10.8.0.14 73377 username ahmadi 73377 unique_id port 73377 terminate_cause User-Request 73377 bytes_out 52927 73377 bytes_in 345212 73377 station_ip 37.129.17.144 73377 port 15728669 73377 nas_port_type Virtual 73377 remote_ip 5.5.5.250 73380 username alirezazamani 73380 mac 73380 bytes_out 0 73380 bytes_in 0 73380 station_ip 5.119.109.63 73380 port 3 73380 unique_id port 73380 remote_ip 10.8.0.14 73396 username alirezazamani 73396 mac 73396 bytes_out 0 73396 bytes_in 0 73396 station_ip 5.119.109.63 73396 port 3 73396 unique_id port 73396 remote_ip 10.8.0.14 73397 username alirezazamani 73397 mac 73397 bytes_out 0 73397 bytes_in 0 73397 station_ip 5.119.109.63 73397 port 3 73397 unique_id port 73397 remote_ip 10.8.0.14 73399 username alirezazamani 73399 mac 73399 bytes_out 1636 73399 bytes_in 4054 73399 station_ip 5.119.109.63 73399 port 3 73399 unique_id port 73399 remote_ip 10.8.0.14 73402 username alirezazamani 73402 mac 73402 bytes_out 0 73402 bytes_in 0 73402 station_ip 5.119.109.63 73402 port 3 73402 unique_id port 73402 remote_ip 10.8.0.14 73403 username alirezazamani 73403 mac 73403 bytes_out 0 73403 bytes_in 0 73403 station_ip 5.119.109.63 73403 port 3 73403 unique_id port 73403 remote_ip 10.8.0.14 73405 username alirezazamani 73405 mac 73405 bytes_out 0 73405 bytes_in 0 73405 station_ip 5.119.109.63 73405 port 3 73405 unique_id port 73405 remote_ip 10.8.0.14 73406 username alirezazamani 73406 mac 73406 bytes_out 0 73406 bytes_in 0 73406 station_ip 5.119.109.63 73406 port 3 73406 unique_id port 73406 remote_ip 10.8.0.14 73407 username alirezazamani 73407 mac 73379 nas_port_type Virtual 73379 remote_ip 5.5.5.247 73381 username alirezazamani 73381 mac 73381 bytes_out 0 73381 bytes_in 0 73381 station_ip 5.119.109.63 73381 port 3 73381 unique_id port 73381 remote_ip 10.8.0.14 73382 username alirezazamani 73382 mac 73382 bytes_out 0 73382 bytes_in 0 73382 station_ip 5.119.109.63 73382 port 3 73382 unique_id port 73382 remote_ip 10.8.0.14 73383 username alirezazamani 73383 mac 73383 bytes_out 0 73383 bytes_in 0 73383 station_ip 5.119.109.63 73383 port 3 73383 unique_id port 73383 remote_ip 10.8.0.14 73384 username alirezazamani 73384 mac 73384 bytes_out 0 73384 bytes_in 0 73384 station_ip 5.119.109.63 73384 port 3 73384 unique_id port 73384 remote_ip 10.8.0.14 73385 username alirezazamani 73385 mac 73385 bytes_out 0 73385 bytes_in 0 73385 station_ip 5.119.109.63 73385 port 3 73385 unique_id port 73385 remote_ip 10.8.0.14 73387 username alirezazamani 73387 mac 73387 bytes_out 0 73387 bytes_in 0 73387 station_ip 5.119.109.63 73387 port 3 73387 unique_id port 73387 remote_ip 10.8.0.14 73388 username alirezazamani 73388 mac 73388 bytes_out 0 73388 bytes_in 0 73388 station_ip 5.119.109.63 73388 port 3 73388 unique_id port 73388 remote_ip 10.8.0.14 73393 username alirezazamani 73393 mac 73393 bytes_out 0 73393 bytes_in 0 73393 station_ip 5.119.109.63 73393 port 3 73393 unique_id port 73393 remote_ip 10.8.0.14 73408 username alirezazamani 73408 mac 73408 bytes_out 0 73408 bytes_in 0 73408 station_ip 5.119.109.63 73408 port 3 73408 unique_id port 73408 remote_ip 10.8.0.14 73411 username kasra 73411 unique_id port 73411 terminate_cause User-Request 73411 bytes_out 431109 73411 bytes_in 16108921 73411 station_ip 83.123.205.170 73411 port 15728679 73411 nas_port_type Virtual 73411 remote_ip 5.5.5.242 73415 username alirezazamani 73415 mac 73415 bytes_out 0 73415 bytes_in 0 73415 station_ip 5.119.109.63 73415 port 3 73415 unique_id port 73415 remote_ip 10.8.0.14 73417 username alinezhad 73417 unique_id port 73417 terminate_cause User-Request 73417 bytes_out 0 73417 bytes_in 0 73417 station_ip 5.202.28.229 73417 port 15728682 73417 nas_port_type Virtual 73417 remote_ip 5.5.5.254 73421 username alirezazamani 73421 mac 73421 bytes_out 0 73421 bytes_in 0 73421 station_ip 5.119.109.63 73421 port 11 73421 unique_id port 73421 remote_ip 10.8.1.14 73426 username alirezazamani 73426 mac 73426 bytes_out 0 73426 bytes_in 0 73426 station_ip 5.119.109.63 73426 port 3 73426 unique_id port 73426 remote_ip 10.8.0.14 73427 username alirezazamani 73427 mac 73427 bytes_out 0 73427 bytes_in 0 73427 station_ip 5.119.109.63 73427 port 3 73427 unique_id port 73427 remote_ip 10.8.0.14 73430 username alirezazamani 73430 mac 73430 bytes_out 0 73430 bytes_in 0 73430 station_ip 5.119.109.63 73430 port 3 73430 unique_id port 73430 remote_ip 10.8.0.14 73433 username alirezazamani 73433 mac 73433 bytes_out 0 73433 bytes_in 0 73433 station_ip 5.119.109.63 73433 port 3 73433 unique_id port 73433 remote_ip 10.8.0.14 73440 username alirezazamani 73440 mac 73440 bytes_out 0 73440 bytes_in 0 73440 station_ip 5.119.109.63 73440 port 3 73440 unique_id port 73440 remote_ip 10.8.0.14 73441 username alirezazamani 73441 mac 73441 bytes_out 0 73441 bytes_in 0 73441 station_ip 5.119.109.63 73441 port 3 73441 unique_id port 73441 remote_ip 10.8.0.14 73400 mac 73400 bytes_out 0 73400 bytes_in 0 73400 station_ip 5.119.109.63 73400 port 10 73400 unique_id port 73401 username alinezhad 73401 unique_id port 73401 terminate_cause User-Request 73401 bytes_out 0 73401 bytes_in 0 73401 station_ip 5.202.28.229 73401 port 15728675 73401 nas_port_type Virtual 73401 remote_ip 5.5.5.254 73404 username alirezazamani 73404 mac 73404 bytes_out 0 73404 bytes_in 0 73404 station_ip 5.119.109.63 73404 port 3 73404 unique_id port 73404 remote_ip 10.8.0.14 73410 username reza 73410 unique_id port 73410 terminate_cause User-Request 73410 bytes_out 305834 73410 bytes_in 9349654 73410 station_ip 37.129.33.99 73410 port 15728676 73410 nas_port_type Virtual 73410 remote_ip 5.5.5.244 73412 username alirezazamani 73412 mac 73412 bytes_out 0 73412 bytes_in 0 73412 station_ip 5.119.109.63 73412 port 11 73412 unique_id port 73412 remote_ip 10.8.1.14 73413 username alirezazamani 73413 mac 73413 bytes_out 0 73413 bytes_in 0 73413 station_ip 5.119.109.63 73413 port 3 73413 unique_id port 73413 remote_ip 10.8.0.14 73416 username nazanin 73416 unique_id port 73416 terminate_cause User-Request 73416 bytes_out 592 73416 bytes_in 10896 73416 station_ip 83.123.164.36 73416 port 15728681 73416 nas_port_type Virtual 73416 remote_ip 5.5.5.247 73418 username ahmadi 73418 unique_id port 73418 terminate_cause User-Request 73418 bytes_out 0 73418 bytes_in 0 73418 station_ip 37.129.17.144 73418 port 15728683 73418 nas_port_type Virtual 73418 remote_ip 5.5.5.250 73428 username alirezazamani 73428 mac 73428 bytes_out 0 73428 bytes_in 0 73428 station_ip 5.119.109.63 73428 port 3 73428 unique_id port 73428 remote_ip 10.8.0.14 73431 username alirezazamani 73431 mac 73431 bytes_out 0 73431 bytes_in 0 73431 station_ip 5.119.109.63 73431 port 3 73431 unique_id port 73431 remote_ip 10.8.0.14 73436 username alirezazamani 73436 mac 73436 bytes_out 0 73436 bytes_in 0 73436 station_ip 5.119.109.63 73436 port 3 73436 unique_id port 73436 remote_ip 10.8.0.14 73437 username alirezazamani 73437 mac 73437 bytes_out 0 73437 bytes_in 0 73437 station_ip 5.119.109.63 73437 port 3 73437 unique_id port 73437 remote_ip 10.8.0.14 73451 username alirezazamani 73451 mac 73451 bytes_out 0 73451 bytes_in 0 73451 station_ip 5.119.109.63 73451 port 3 73451 unique_id port 73451 remote_ip 10.8.0.14 73452 username alirezazamani 73452 mac 73452 bytes_out 0 73452 bytes_in 0 73452 station_ip 5.119.109.63 73452 port 3 73452 unique_id port 73452 remote_ip 10.8.0.14 73453 username alirezazamani 73453 mac 73453 bytes_out 0 73453 bytes_in 0 73453 station_ip 5.119.109.63 73453 port 3 73453 unique_id port 73453 remote_ip 10.8.0.14 73454 username ahmadi 73454 unique_id port 73454 terminate_cause User-Request 73454 bytes_out 60402 73454 bytes_in 739826 73454 station_ip 37.129.17.144 73454 port 15728684 73454 nas_port_type Virtual 73454 remote_ip 5.5.5.250 73466 username alirezazamani 73466 mac 73466 bytes_out 0 73466 bytes_in 0 73466 station_ip 5.119.109.63 73466 port 3 73466 unique_id port 73466 remote_ip 10.8.0.14 73467 username alirezazamani 73467 mac 73467 bytes_out 0 73467 bytes_in 0 73467 station_ip 5.119.109.63 73467 port 3 73467 unique_id port 73467 remote_ip 10.8.0.14 73470 username alirezazamani 73470 mac 73470 bytes_out 0 73470 bytes_in 0 73470 station_ip 5.119.109.63 73470 port 3 73470 unique_id port 73407 bytes_out 0 73407 bytes_in 0 73407 station_ip 5.119.109.63 73407 port 3 73407 unique_id port 73407 remote_ip 10.8.0.14 73409 username alirezazamani 73409 mac 73409 bytes_out 0 73409 bytes_in 0 73409 station_ip 5.119.109.63 73409 port 3 73409 unique_id port 73409 remote_ip 10.8.0.14 73414 username nazanin 73414 unique_id port 73414 terminate_cause User-Request 73414 bytes_out 0 73414 bytes_in 0 73414 station_ip 83.123.164.36 73414 port 15728680 73414 nas_port_type Virtual 73414 remote_ip 5.5.5.247 73419 username alirezazamani 73419 mac 73419 bytes_out 0 73419 bytes_in 0 73419 station_ip 5.119.109.63 73419 port 11 73419 unique_id port 73419 remote_ip 10.8.1.14 73420 username alirezazamani 73420 mac 73420 bytes_out 0 73420 bytes_in 0 73420 station_ip 5.119.109.63 73420 port 11 73420 unique_id port 73420 remote_ip 10.8.1.14 73422 username alirezazamani 73422 mac 73422 bytes_out 0 73422 bytes_in 0 73422 station_ip 5.119.109.63 73422 port 3 73422 unique_id port 73422 remote_ip 10.8.0.14 73423 username alirezazamani 73423 mac 73423 bytes_out 0 73423 bytes_in 0 73423 station_ip 5.119.109.63 73423 port 3 73423 unique_id port 73423 remote_ip 10.8.0.14 73424 username alirezazamani 73424 mac 73424 bytes_out 0 73424 bytes_in 0 73424 station_ip 5.119.109.63 73424 port 3 73424 unique_id port 73424 remote_ip 10.8.0.14 73425 username alirezazamani 73425 mac 73425 bytes_out 0 73425 bytes_in 0 73425 station_ip 5.119.109.63 73425 port 3 73425 unique_id port 73425 remote_ip 10.8.0.14 73429 username alirezazamani 73429 mac 73429 bytes_out 0 73429 bytes_in 0 73429 station_ip 5.119.109.63 73429 port 3 73429 unique_id port 73429 remote_ip 10.8.0.14 73432 username alirezazamani 73432 mac 73432 bytes_out 0 73432 bytes_in 0 73432 station_ip 5.119.109.63 73432 port 3 73432 unique_id port 73432 remote_ip 10.8.0.14 73434 username alirezazamani 73434 mac 73434 bytes_out 0 73434 bytes_in 0 73434 station_ip 5.119.109.63 73434 port 3 73434 unique_id port 73434 remote_ip 10.8.0.14 73435 username alirezazamani 73435 mac 73435 bytes_out 0 73435 bytes_in 0 73435 station_ip 5.119.109.63 73435 port 3 73435 unique_id port 73435 remote_ip 10.8.0.14 73438 username alirezazamani 73438 mac 73438 bytes_out 0 73438 bytes_in 0 73438 station_ip 5.119.109.63 73438 port 3 73438 unique_id port 73438 remote_ip 10.8.0.14 73439 username alirezazamani 73439 mac 73439 bytes_out 0 73439 bytes_in 0 73439 station_ip 5.119.109.63 73439 port 3 73439 unique_id port 73439 remote_ip 10.8.0.14 73443 username alirezazamani 73443 mac 73443 bytes_out 0 73443 bytes_in 0 73443 station_ip 5.119.109.63 73443 port 3 73443 unique_id port 73443 remote_ip 10.8.0.14 73448 username alirezazamani 73448 mac 73448 bytes_out 0 73448 bytes_in 0 73448 station_ip 5.119.109.63 73448 port 3 73448 unique_id port 73448 remote_ip 10.8.0.14 73450 username alirezazamani 73450 unique_id port 73450 terminate_cause Lost-Carrier 73450 bytes_out 9924509 73450 bytes_in 21535122 73450 station_ip 5.119.158.194 73450 port 15728678 73450 nas_port_type Virtual 73450 remote_ip 5.5.5.243 73457 username alirezazamani 73457 mac 73457 bytes_out 0 73457 bytes_in 0 73457 station_ip 5.119.109.63 73457 port 3 73457 unique_id port 73457 remote_ip 10.8.0.14 73458 username alirezazamani 73458 mac 73458 bytes_out 0 73458 bytes_in 0 73442 username alirezazamani 73442 mac 73442 bytes_out 0 73442 bytes_in 0 73442 station_ip 5.119.109.63 73442 port 3 73442 unique_id port 73442 remote_ip 10.8.0.14 73444 username alirezazamani 73444 mac 73444 bytes_out 0 73444 bytes_in 0 73444 station_ip 5.119.109.63 73444 port 3 73444 unique_id port 73444 remote_ip 10.8.0.14 73445 username alirezazamani 73445 mac 73445 bytes_out 0 73445 bytes_in 0 73445 station_ip 5.119.109.63 73445 port 3 73445 unique_id port 73445 remote_ip 10.8.0.14 73446 username alirezazamani 73446 mac 73446 bytes_out 0 73446 bytes_in 0 73446 station_ip 5.119.109.63 73446 port 3 73446 unique_id port 73446 remote_ip 10.8.0.14 73447 username alirezazamani 73447 mac 73447 bytes_out 0 73447 bytes_in 0 73447 station_ip 5.119.109.63 73447 port 3 73447 unique_id port 73447 remote_ip 10.8.0.14 73449 username alirezazamani 73449 mac 73449 bytes_out 0 73449 bytes_in 0 73449 station_ip 5.119.109.63 73449 port 3 73449 unique_id port 73449 remote_ip 10.8.0.14 73455 username alirezazamani 73455 mac 73455 bytes_out 0 73455 bytes_in 0 73455 station_ip 5.119.109.63 73455 port 3 73455 unique_id port 73455 remote_ip 10.8.0.14 73456 username alirezazamani 73456 mac 73456 bytes_out 0 73456 bytes_in 0 73456 station_ip 5.119.109.63 73456 port 3 73456 unique_id port 73456 remote_ip 10.8.0.14 73461 username alirezazamani 73461 mac 73461 bytes_out 0 73461 bytes_in 0 73461 station_ip 5.119.109.63 73461 port 3 73461 unique_id port 73461 remote_ip 10.8.0.14 73462 username alirezazamani 73462 mac 73462 bytes_out 0 73462 bytes_in 0 73462 station_ip 5.119.109.63 73462 port 3 73462 unique_id port 73462 remote_ip 10.8.0.14 73463 username alirezazamani 73463 mac 73463 bytes_out 0 73463 bytes_in 0 73463 station_ip 5.119.109.63 73463 port 3 73463 unique_id port 73463 remote_ip 10.8.0.14 73465 username alirezazamani 73465 mac 73465 bytes_out 0 73465 bytes_in 0 73465 station_ip 5.119.109.63 73465 port 3 73465 unique_id port 73465 remote_ip 10.8.0.14 73468 username reza 73468 unique_id port 73468 terminate_cause User-Request 73468 bytes_out 221390 73468 bytes_in 7032517 73468 station_ip 37.129.71.3 73468 port 15728685 73468 nas_port_type Virtual 73468 remote_ip 5.5.5.241 73469 username alirezazamani 73469 mac 73469 bytes_out 0 73469 bytes_in 0 73469 station_ip 5.119.109.63 73469 port 3 73469 unique_id port 73469 remote_ip 10.8.0.14 73473 username alirezazamani 73473 mac 73473 bytes_out 0 73473 bytes_in 0 73473 station_ip 5.119.109.63 73473 port 3 73473 unique_id port 73473 remote_ip 10.8.0.14 73474 username alirezazamani 73474 mac 73474 bytes_out 0 73474 bytes_in 0 73474 station_ip 5.119.109.63 73474 port 3 73474 unique_id port 73474 remote_ip 10.8.0.14 73477 username alirezazamani 73477 mac 73477 bytes_out 0 73477 bytes_in 0 73477 station_ip 5.119.109.63 73477 port 3 73477 unique_id port 73477 remote_ip 10.8.0.14 73478 username alirezazamani 73478 mac 73478 bytes_out 0 73478 bytes_in 0 73478 station_ip 5.119.109.63 73478 port 3 73478 unique_id port 73478 remote_ip 10.8.0.14 73481 username alirezazamani 73481 mac 73481 bytes_out 0 73481 bytes_in 0 73481 station_ip 5.119.109.63 73481 port 3 73481 unique_id port 73481 remote_ip 10.8.0.14 73482 username alirezazamani 73482 mac 73482 bytes_out 0 73482 bytes_in 0 73458 station_ip 5.119.109.63 73458 port 3 73458 unique_id port 73458 remote_ip 10.8.0.14 73459 username alirezazamani 73459 mac 73459 bytes_out 0 73459 bytes_in 0 73459 station_ip 5.119.109.63 73459 port 3 73459 unique_id port 73459 remote_ip 10.8.0.14 73460 username alirezazamani 73460 mac 73460 bytes_out 0 73460 bytes_in 0 73460 station_ip 5.119.109.63 73460 port 3 73460 unique_id port 73460 remote_ip 10.8.0.14 73464 username alirezazamani 73464 mac 73464 bytes_out 0 73464 bytes_in 0 73464 station_ip 5.119.109.63 73464 port 3 73464 unique_id port 73464 remote_ip 10.8.0.14 73472 username alirezazamani 73472 mac 73472 bytes_out 0 73472 bytes_in 0 73472 station_ip 5.119.109.63 73472 port 3 73472 unique_id port 73472 remote_ip 10.8.0.14 73475 username alirezazamani 73475 mac 73475 bytes_out 0 73475 bytes_in 0 73475 station_ip 5.119.109.63 73475 port 3 73475 unique_id port 73475 remote_ip 10.8.0.14 73476 username alinezhad 73476 unique_id port 73476 terminate_cause User-Request 73476 bytes_out 0 73476 bytes_in 0 73476 station_ip 5.202.28.229 73476 port 15728686 73476 nas_port_type Virtual 73476 remote_ip 5.5.5.254 73479 username alinezhad 73479 unique_id port 73479 terminate_cause User-Request 73479 bytes_out 0 73479 bytes_in 0 73479 station_ip 5.202.28.229 73479 port 15728687 73479 nas_port_type Virtual 73479 remote_ip 5.5.5.254 73480 username alirezazamani 73480 mac 73480 bytes_out 0 73480 bytes_in 0 73480 station_ip 5.119.109.63 73480 port 3 73480 unique_id port 73480 remote_ip 10.8.0.14 73484 username alirezazamani 73484 mac 73484 bytes_out 0 73484 bytes_in 0 73484 station_ip 5.119.109.63 73484 port 3 73484 unique_id port 73484 remote_ip 10.8.0.14 73485 username alirezazamani 73485 mac 73485 bytes_out 0 73485 bytes_in 0 73485 station_ip 5.119.109.63 73485 port 3 73485 unique_id port 73485 remote_ip 10.8.0.14 73486 username alirezazamani 73486 mac 73486 bytes_out 0 73486 bytes_in 0 73486 station_ip 5.119.109.63 73486 port 3 73486 unique_id port 73486 remote_ip 10.8.0.14 73490 username ahmadi 73490 unique_id port 73490 terminate_cause User-Request 73490 bytes_out 11028 73490 bytes_in 51961 73490 station_ip 37.129.72.228 73490 port 15728689 73490 nas_port_type Virtual 73490 remote_ip 5.5.5.240 73493 username alirezazamani 73493 mac 73493 bytes_out 0 73493 bytes_in 0 73493 station_ip 5.119.109.63 73493 port 11 73493 unique_id port 73493 remote_ip 10.8.1.14 73494 username alirezazamani 73494 mac 73494 bytes_out 0 73494 bytes_in 0 73494 station_ip 5.119.109.63 73494 port 11 73494 unique_id port 73494 remote_ip 10.8.1.14 73496 username alirezazamani 73496 mac 73496 bytes_out 0 73496 bytes_in 0 73496 station_ip 5.119.109.63 73496 port 11 73496 unique_id port 73496 remote_ip 10.8.1.14 73500 username alirezazamani 73500 mac 73500 bytes_out 0 73500 bytes_in 0 73500 station_ip 5.119.109.63 73500 port 12 73500 unique_id port 73500 remote_ip 10.8.1.14 73501 username alirezazamani 73501 mac 73501 bytes_out 0 73501 bytes_in 0 73501 station_ip 5.119.109.63 73501 port 12 73501 unique_id port 73501 remote_ip 10.8.1.14 73503 username ahmadi 73503 unique_id port 73503 terminate_cause User-Request 73503 bytes_out 670455 73503 bytes_in 7034813 73503 station_ip 37.129.72.228 73503 port 15728692 73503 nas_port_type Virtual 73503 remote_ip 5.5.5.240 73504 username alirezazamani 73504 mac 73504 bytes_out 0 73470 remote_ip 10.8.0.14 73471 username alirezazamani 73471 mac 73471 bytes_out 0 73471 bytes_in 0 73471 station_ip 5.119.109.63 73471 port 3 73471 unique_id port 73471 remote_ip 10.8.0.14 73483 username alirezazamani 73483 mac 73483 bytes_out 0 73483 bytes_in 0 73483 station_ip 5.119.109.63 73483 port 3 73483 unique_id port 73483 remote_ip 10.8.0.14 73487 username alirezazamani 73487 mac 73487 bytes_out 0 73487 bytes_in 0 73487 station_ip 5.119.109.63 73487 port 11 73487 unique_id port 73487 remote_ip 10.8.1.14 73488 username alirezazamani 73488 mac 73488 bytes_out 0 73488 bytes_in 0 73488 station_ip 5.119.109.63 73488 port 11 73488 unique_id port 73488 remote_ip 10.8.1.14 73489 username alinezhad 73489 unique_id port 73489 terminate_cause User-Request 73489 bytes_out 0 73489 bytes_in 0 73489 station_ip 5.202.28.229 73489 port 15728688 73489 nas_port_type Virtual 73489 remote_ip 5.5.5.254 73491 username ahmadi 73491 unique_id port 73491 terminate_cause User-Request 73491 bytes_out 0 73491 bytes_in 0 73491 station_ip 37.129.72.228 73491 port 15728690 73491 nas_port_type Virtual 73491 remote_ip 5.5.5.240 73492 username alirezazamani 73492 mac 73492 bytes_out 0 73492 bytes_in 0 73492 station_ip 5.119.109.63 73492 port 11 73492 unique_id port 73492 remote_ip 10.8.1.14 73498 username alirezazamani 73498 mac 73498 bytes_out 0 73498 bytes_in 0 73498 station_ip 5.119.109.63 73498 port 12 73498 unique_id port 73498 remote_ip 10.8.1.14 73499 username alirezazamani 73499 mac 73499 bytes_out 0 73499 bytes_in 0 73499 station_ip 5.119.109.63 73499 port 12 73499 unique_id port 73499 remote_ip 10.8.1.14 74314 username alinezhad 74314 unique_id port 74314 terminate_cause User-Request 74314 bytes_out 107348 74314 bytes_in 133446 74314 station_ip 37.129.248.171 74314 port 15728868 74314 nas_port_type Virtual 74314 remote_ip 5.5.5.194 74319 username mobina 74319 unique_id port 74319 terminate_cause User-Request 74319 bytes_out 897298 74319 bytes_in 24757910 74319 station_ip 80.191.144.71 74319 port 15728643 74319 nas_port_type Virtual 74319 remote_ip 5.5.5.255 74322 username amin.insta01 74322 unique_id port 74322 terminate_cause User-Request 74322 bytes_out 387426 74322 bytes_in 8122231 74322 station_ip 5.120.72.126 74322 port 15728648 74322 nas_port_type Virtual 74322 remote_ip 5.5.5.250 74326 username iranmanesh 74326 unique_id port 74326 terminate_cause Lost-Carrier 74326 bytes_out 2195422 74326 bytes_in 145455526 74326 station_ip 5.114.71.237 74326 port 15728645 74326 nas_port_type Virtual 74326 remote_ip 5.5.5.253 74327 username alirezazamani 74327 unique_id port 74327 terminate_cause User-Request 74327 bytes_out 223390 74327 bytes_in 2077454 74327 station_ip 5.233.77.94 74327 port 15728652 74327 nas_port_type Virtual 74327 remote_ip 5.5.5.247 74328 username alirezazamani 74328 unique_id port 74328 terminate_cause User-Request 74328 bytes_out 294613 74328 bytes_in 1935348 74328 station_ip 5.233.77.94 74328 port 15728653 74328 nas_port_type Virtual 74328 remote_ip 5.5.5.247 74330 username tahani 74330 unique_id port 74330 terminate_cause User-Request 74330 bytes_out 133744 74330 bytes_in 3117907 74330 station_ip 83.123.226.236 74330 port 15728655 74330 nas_port_type Virtual 74330 remote_ip 5.5.5.245 74333 username amin.insta13 74333 unique_id port 74333 terminate_cause User-Request 74333 bytes_out 428116 74333 bytes_in 7780318 74333 station_ip 37.129.125.97 74333 port 15728659 74333 nas_port_type Virtual 74333 remote_ip 5.5.5.243 74334 username amin.insta22 73482 station_ip 5.119.109.63 73482 port 3 73482 unique_id port 73482 remote_ip 10.8.0.14 73495 username alirezazamani 73495 mac 73495 bytes_out 0 73495 bytes_in 0 73495 station_ip 5.119.109.63 73495 port 11 73495 unique_id port 73495 remote_ip 10.8.1.14 73497 username alirezazamani 73497 kill_reason Maximum check online fails reached 73497 mac 73497 bytes_out 0 73497 bytes_in 0 73497 station_ip 5.119.109.63 73497 port 11 73497 unique_id port 73502 username alirezazamani 73502 mac 73502 bytes_out 0 73502 bytes_in 0 73502 station_ip 5.119.109.63 73502 port 12 73502 unique_id port 73502 remote_ip 10.8.1.14 74315 port 15728871 74315 nas_port_type Virtual 74315 remote_ip 5.5.5.194 74321 username mobina 74321 unique_id port 74321 terminate_cause User-Request 74321 bytes_out 22637648 74321 bytes_in 6909866 74321 station_ip 80.191.144.71 74321 port 15728646 74321 nas_port_type Virtual 74321 remote_ip 5.5.5.252 74332 username ahmadi 74332 unique_id port 74332 terminate_cause User-Request 74332 bytes_out 324376 74332 bytes_in 3814039 74332 station_ip 37.129.40.23 74332 port 15728657 74332 nas_port_type Virtual 74332 remote_ip 5.5.5.244 74338 username amin.insta13 74338 unique_id port 74338 terminate_cause User-Request 74338 bytes_out 283308 74338 bytes_in 2160765 74338 station_ip 37.129.125.97 74338 port 15728667 74338 nas_port_type Virtual 74338 remote_ip 5.5.5.243 74339 username alirezazamani 74339 unique_id port 74339 terminate_cause Lost-Carrier 74339 bytes_out 228499 74339 bytes_in 7885976 74339 station_ip 5.120.39.242 74339 port 15728662 74339 nas_port_type Virtual 74339 remote_ip 5.5.5.241 74344 username alinezhad 74344 unique_id port 74344 terminate_cause User-Request 74344 bytes_out 0 74344 bytes_in 0 74344 station_ip 5.202.27.41 74344 port 15728673 74344 nas_port_type Virtual 74344 remote_ip 5.5.5.249 74350 username aminvpn 74350 mac 74350 bytes_out 0 74350 bytes_in 0 74350 station_ip 5.120.128.15 74350 port 4 74350 unique_id port 74350 remote_ip 10.8.0.6 74353 username amin.insta15 74353 unique_id port 74353 terminate_cause User-Request 74353 bytes_out 3239333 74353 bytes_in 62450014 74353 station_ip 5.233.71.96 74353 port 15728674 74353 nas_port_type Virtual 74353 remote_ip 5.5.5.238 74358 username aminvpn 74358 mac 74358 bytes_out 0 74358 bytes_in 0 74358 station_ip 5.120.128.15 74358 port 6 74358 unique_id port 74358 remote_ip 10.8.0.6 74360 username amin.insta01 74360 unique_id port 74360 terminate_cause Lost-Carrier 74360 bytes_out 398556 74360 bytes_in 3970020 74360 station_ip 5.120.16.146 74360 port 15728676 74360 nas_port_type Virtual 74360 remote_ip 5.5.5.237 74361 username amin.insta22 74361 unique_id port 74361 terminate_cause Lost-Carrier 74361 bytes_out 3268153 74361 bytes_in 11077241 74361 station_ip 31.56.154.111 74361 port 15728671 74361 nas_port_type Virtual 74361 remote_ip 5.5.5.242 74362 username aminvpn 74362 mac 74362 bytes_out 0 74362 bytes_in 0 74362 station_ip 5.120.128.15 74362 port 7 74362 unique_id port 74362 remote_ip 10.8.0.6 74366 username ahmadi 74366 unique_id port 74366 terminate_cause User-Request 74366 bytes_out 74395 74366 bytes_in 1013102 74366 station_ip 37.129.40.23 74366 port 15728679 74366 nas_port_type Virtual 74366 remote_ip 5.5.5.244 74370 username aminvpn 74370 mac 74370 bytes_out 0 74370 bytes_in 0 74370 station_ip 5.120.128.15 74370 port 8 74370 unique_id port 74370 remote_ip 10.8.0.6 74375 username aminvpn 74375 mac 74375 bytes_out 0 74375 bytes_in 0 73504 bytes_in 0 73504 station_ip 5.119.109.63 73504 port 12 73504 unique_id port 73504 remote_ip 10.8.1.14 74320 nas_port_type Virtual 74320 remote_ip 5.5.5.251 74323 username alinezhad 74323 unique_id port 74323 terminate_cause User-Request 74323 bytes_out 280751 74323 bytes_in 6146875 74323 station_ip 5.202.27.41 74323 port 15728650 74323 nas_port_type Virtual 74323 remote_ip 5.5.5.249 74324 username mobina 74324 unique_id port 74324 terminate_cause User-Request 74324 bytes_out 2324187 74324 bytes_in 57471451 74324 station_ip 80.191.144.71 74324 port 15728649 74324 nas_port_type Virtual 74324 remote_ip 5.5.5.255 81105 username reza 81105 unique_id port 81105 terminate_cause User-Request 81105 bytes_out 4621 81105 bytes_in 29301 81105 station_ip 113.203.40.91 81105 port 15728701 81105 nas_port_type Virtual 81105 remote_ip 5.5.5.225 74329 username ahmadi 74329 unique_id port 74329 terminate_cause User-Request 74329 bytes_out 40694 74329 bytes_in 302407 74329 station_ip 37.129.61.7 74329 port 15728654 74329 nas_port_type Virtual 74329 remote_ip 5.5.5.246 74331 username alinezhad 74331 unique_id port 74331 terminate_cause User-Request 74331 bytes_out 96030 74331 bytes_in 756219 74331 station_ip 5.202.27.41 74331 port 15728656 74331 nas_port_type Virtual 74331 remote_ip 5.5.5.249 74335 username alinezhad 74335 unique_id port 74335 terminate_cause User-Request 74335 bytes_out 0 74335 bytes_in 0 74335 station_ip 5.202.27.41 74335 port 15728663 74335 nas_port_type Virtual 74335 remote_ip 5.5.5.249 74336 username aminvpn 74336 unique_id port 74336 terminate_cause User-Request 74336 bytes_out 513583 74336 bytes_in 13044506 74336 station_ip 5.233.65.48 74336 port 15728665 74336 nas_port_type Virtual 74336 remote_ip 5.5.5.239 74341 username ahmadi 74341 unique_id port 74341 terminate_cause User-Request 74341 bytes_out 23799 74341 bytes_in 164250 74341 station_ip 37.129.40.23 74341 port 15728670 74341 nas_port_type Virtual 74341 remote_ip 5.5.5.244 74342 username amin.insta01 74342 unique_id port 74342 terminate_cause Lost-Carrier 74342 bytes_out 2596564 74342 bytes_in 62991650 74342 station_ip 5.119.203.101 74342 port 15728664 74342 nas_port_type Virtual 74342 remote_ip 5.5.5.240 74343 username alirezazamani 74343 unique_id port 74343 terminate_cause User-Request 74343 bytes_out 3223856 74343 bytes_in 37506395 74343 station_ip 5.233.77.94 74343 port 15728668 74343 nas_port_type Virtual 74343 remote_ip 5.5.5.247 74345 username alirezazamani 74345 unique_id port 74345 terminate_cause Lost-Carrier 74345 bytes_out 64717 74345 bytes_in 991337 74345 station_ip 5.120.39.242 74345 port 15728672 74345 nas_port_type Virtual 74345 remote_ip 5.5.5.241 74346 username aminvpn 74346 mac 74346 bytes_out 0 74346 bytes_in 0 74346 station_ip 5.120.128.15 74346 port 4 74346 unique_id port 74346 remote_ip 10.8.0.6 74347 username aminvpn 74347 mac 74347 bytes_out 0 74347 bytes_in 0 74347 station_ip 5.120.128.15 74347 port 4 74347 unique_id port 74347 remote_ip 10.8.0.6 74354 username aminvpn 74354 mac 74354 bytes_out 0 74354 bytes_in 0 74354 station_ip 5.120.128.15 74354 port 4 74354 unique_id port 74354 remote_ip 10.8.0.6 74355 username aminvpn 74355 mac 74355 bytes_out 0 74355 bytes_in 0 74355 station_ip 5.120.128.15 74355 port 4 74355 unique_id port 74355 remote_ip 10.8.0.6 74359 username aminvpn 74359 mac 74359 bytes_out 0 74359 bytes_in 0 74359 station_ip 5.120.128.15 74359 port 6 74359 unique_id port 74359 remote_ip 10.8.0.6 74369 username aminvpn 74369 mac 73505 username alirezazamani 73505 mac 73505 bytes_out 0 73505 bytes_in 0 73505 station_ip 5.119.109.63 73505 port 13 73505 unique_id port 73505 remote_ip 10.8.1.14 73506 username alirezazamani 73506 mac 73506 bytes_out 0 73506 bytes_in 0 73506 station_ip 5.119.109.63 73506 port 13 73506 unique_id port 73506 remote_ip 10.8.1.14 73507 username alirezazamani 73507 kill_reason Maximum check online fails reached 73507 mac 73507 bytes_out 0 73507 bytes_in 0 73507 station_ip 5.119.109.63 73507 port 12 73507 unique_id port 73509 username alirezazamani 73509 mac 73509 bytes_out 0 73509 bytes_in 0 73509 station_ip 5.119.109.63 73509 port 13 73509 unique_id port 73509 remote_ip 10.8.1.14 73510 username alirezazamani 73510 kill_reason Maximum check online fails reached 73510 mac 73510 bytes_out 0 73510 bytes_in 0 73510 station_ip 5.119.109.63 73510 port 13 73510 unique_id port 73511 username mobina 73511 unique_id port 73511 terminate_cause User-Request 73511 bytes_out 185462 73511 bytes_in 2495343 73511 station_ip 5.123.219.108 73511 port 15728693 73511 nas_port_type Virtual 73511 remote_ip 5.5.5.238 73512 username mobina 73512 unique_id port 73512 terminate_cause User-Request 73512 bytes_out 0 73512 bytes_in 0 73512 station_ip 5.123.219.108 73512 port 15728694 73512 nas_port_type Virtual 73512 remote_ip 5.5.5.238 73513 username alirezazamani 73513 mac 73513 bytes_out 0 73513 bytes_in 0 73513 station_ip 5.119.109.63 73513 port 14 73513 unique_id port 73513 remote_ip 10.8.1.14 73519 username alirezazamani 73519 mac 73519 bytes_out 0 73519 bytes_in 0 73519 station_ip 5.119.109.63 73519 port 14 73519 unique_id port 73519 remote_ip 10.8.1.14 73520 username alirezazamani 73520 mac 73520 bytes_out 0 73520 bytes_in 0 73520 station_ip 5.119.109.63 73520 port 14 73520 unique_id port 73520 remote_ip 10.8.1.14 73524 username alirezazamani 73524 mac 73524 bytes_out 0 73524 bytes_in 0 73524 station_ip 5.119.109.63 73524 port 14 73524 unique_id port 73524 remote_ip 10.8.1.14 73525 username alirezazamani 73525 mac 73525 bytes_out 0 73525 bytes_in 0 73525 station_ip 5.119.109.63 73525 port 3 73525 unique_id port 73525 remote_ip 10.8.0.14 73528 username alirezazamani 73528 mac 73528 bytes_out 0 73528 bytes_in 0 73528 station_ip 5.119.109.63 73528 port 3 73528 unique_id port 73528 remote_ip 10.8.0.14 73529 username alirezazamani 73529 mac 73529 bytes_out 0 73529 bytes_in 0 73529 station_ip 5.119.109.63 73529 port 3 73529 unique_id port 73529 remote_ip 10.8.0.14 73534 username alirezazamani 73534 mac 73534 bytes_out 0 73534 bytes_in 0 73534 station_ip 5.119.109.63 73534 port 3 73534 unique_id port 73534 remote_ip 10.8.0.14 73537 username alirezazamani 73537 mac 73537 bytes_out 0 73537 bytes_in 0 73537 station_ip 5.119.109.63 73537 port 3 73537 unique_id port 73537 remote_ip 10.8.0.14 73541 username alinezhad 73541 unique_id port 73541 terminate_cause User-Request 73541 bytes_out 0 73541 bytes_in 0 73541 station_ip 5.202.28.229 73541 port 15728697 73541 nas_port_type Virtual 73541 remote_ip 5.5.5.254 73543 username alirezazamani 73543 mac 73543 bytes_out 0 73543 bytes_in 0 73543 station_ip 5.119.109.63 73543 port 15 73543 unique_id port 73543 remote_ip 10.8.1.14 73545 username alirezazamani 73545 mac 73545 bytes_out 0 73545 bytes_in 0 73545 station_ip 5.119.109.63 73545 port 15 73545 unique_id port 73545 remote_ip 10.8.1.14 73508 username alirezazamani 73508 mac 73508 bytes_out 0 73508 bytes_in 0 73508 station_ip 5.119.109.63 73508 port 13 73508 unique_id port 73508 remote_ip 10.8.1.14 73516 username alinezhad 73516 unique_id port 73516 terminate_cause User-Request 73516 bytes_out 0 73516 bytes_in 0 73516 station_ip 5.202.28.229 73516 port 15728695 73516 nas_port_type Virtual 73516 remote_ip 5.5.5.254 73518 username alirezazamani 73518 mac 73518 bytes_out 0 73518 bytes_in 0 73518 station_ip 5.119.109.63 73518 port 14 73518 unique_id port 73518 remote_ip 10.8.1.14 73522 username alirezazamani 73522 mac 73522 bytes_out 0 73522 bytes_in 0 73522 station_ip 5.119.109.63 73522 port 14 73522 unique_id port 73522 remote_ip 10.8.1.14 73526 username alirezazamani 73526 mac 73526 bytes_out 0 73526 bytes_in 0 73526 station_ip 5.119.109.63 73526 port 3 73526 unique_id port 73526 remote_ip 10.8.0.14 73531 username alirezazamani 73531 mac 73531 bytes_out 0 73531 bytes_in 0 73531 station_ip 5.119.109.63 73531 port 3 73531 unique_id port 73531 remote_ip 10.8.0.14 73532 username alirezazamani 73532 mac 73532 bytes_out 0 73532 bytes_in 0 73532 station_ip 5.119.109.63 73532 port 3 73532 unique_id port 73532 remote_ip 10.8.0.14 73533 username alirezazamani 73533 mac 73533 bytes_out 0 73533 bytes_in 0 73533 station_ip 5.119.109.63 73533 port 3 73533 unique_id port 73533 remote_ip 10.8.0.14 73536 username alirezazamani 73536 mac 73536 bytes_out 0 73536 bytes_in 0 73536 station_ip 5.119.109.63 73536 port 3 73536 unique_id port 73536 remote_ip 10.8.0.14 73539 username alirezazamani 73539 mac 73539 bytes_out 0 73539 bytes_in 0 73539 station_ip 5.119.109.63 73539 port 3 73539 unique_id port 73539 remote_ip 10.8.0.14 73542 username alirezazamani 73542 mac 73542 bytes_out 0 73542 bytes_in 0 73542 station_ip 5.119.109.63 73542 port 15 73542 unique_id port 73542 remote_ip 10.8.1.14 73546 username alirezazamani 73546 mac 73546 bytes_out 0 73546 bytes_in 0 73546 station_ip 5.119.109.63 73546 port 3 73546 unique_id port 73546 remote_ip 10.8.0.14 73547 username alirezazamani 73547 mac 73547 bytes_out 0 73547 bytes_in 0 73547 station_ip 5.119.109.63 73547 port 3 73547 unique_id port 73547 remote_ip 10.8.0.14 73556 username alirezazamani 73556 mac 73556 bytes_out 0 73556 bytes_in 0 73556 station_ip 5.119.109.63 73556 port 15 73556 unique_id port 73556 remote_ip 10.8.1.14 73559 username alirezazamani 73559 mac 73559 bytes_out 0 73559 bytes_in 0 73559 station_ip 5.119.109.63 73559 port 16 73559 unique_id port 73559 remote_ip 10.8.1.14 73560 username alirezazamani 73560 mac 73560 bytes_out 0 73560 bytes_in 0 73560 station_ip 5.119.109.63 73560 port 16 73560 unique_id port 73560 remote_ip 10.8.1.14 73566 username alirezazamani 73566 mac 73566 bytes_out 0 73566 bytes_in 0 73566 station_ip 5.119.109.63 73566 port 3 73566 unique_id port 73566 remote_ip 10.8.0.14 73567 username aminsaeedi 73567 unique_id port 73567 terminate_cause User-Request 73567 bytes_out 0 73567 bytes_in 0 73567 station_ip 31.56.157.197 73567 port 15728704 73567 nas_port_type Virtual 73567 remote_ip 5.5.5.235 73570 username alirezazamani 73570 mac 73570 bytes_out 0 73570 bytes_in 0 73570 station_ip 5.119.109.63 73570 port 3 73570 unique_id port 73570 remote_ip 10.8.0.14 73572 username alirezazamani 73572 mac 73572 bytes_out 0 73514 username ahmad 73514 unique_id port 73514 terminate_cause User-Request 73514 bytes_out 983203 73514 bytes_in 19875786 73514 station_ip 86.57.43.8 73514 port 15728691 73514 nas_port_type Virtual 73514 remote_ip 5.5.5.239 73515 username alirezazamani 73515 unique_id port 73515 terminate_cause Lost-Carrier 73515 bytes_out 4884094 73515 bytes_in 114325257 73515 station_ip 94.241.179.206 73515 port 15728674 73515 nas_port_type Virtual 73515 remote_ip 5.5.5.245 73517 username alirezazamani 73517 mac 73517 bytes_out 0 73517 bytes_in 0 73517 station_ip 5.119.109.63 73517 port 14 73517 unique_id port 73517 remote_ip 10.8.1.14 73521 username alirezazamani 73521 mac 73521 bytes_out 0 73521 bytes_in 0 73521 station_ip 5.119.109.63 73521 port 14 73521 unique_id port 73521 remote_ip 10.8.1.14 73523 username alirezazamani 73523 mac 73523 bytes_out 0 73523 bytes_in 0 73523 station_ip 5.119.109.63 73523 port 14 73523 unique_id port 73523 remote_ip 10.8.1.14 73527 username alirezazamani 73527 kill_reason Maximum check online fails reached 73527 mac 73527 bytes_out 0 73527 bytes_in 0 73527 station_ip 5.119.109.63 73527 port 14 73527 unique_id port 73530 username alirezazamani 73530 mac 73530 bytes_out 0 73530 bytes_in 0 73530 station_ip 5.119.109.63 73530 port 3 73530 unique_id port 73530 remote_ip 10.8.0.14 73535 username alirezazamani 73535 mac 73535 bytes_out 0 73535 bytes_in 0 73535 station_ip 5.119.109.63 73535 port 3 73535 unique_id port 73535 remote_ip 10.8.0.14 73538 username alirezazamani 73538 mac 73538 bytes_out 0 73538 bytes_in 0 73538 station_ip 5.119.109.63 73538 port 3 73538 unique_id port 73538 remote_ip 10.8.0.14 73540 username ahmadi 73540 unique_id port 73540 terminate_cause User-Request 73540 bytes_out 0 73540 bytes_in 0 73540 station_ip 37.129.85.144 73540 port 15728698 73540 nas_port_type Virtual 73540 remote_ip 5.5.5.237 73544 username alirezazamani 73544 mac 73544 bytes_out 0 73544 bytes_in 0 73544 station_ip 5.119.109.63 73544 port 15 73544 unique_id port 73544 remote_ip 10.8.1.14 73550 username alirezazamani 73550 mac 73550 bytes_out 0 73550 bytes_in 0 73550 station_ip 5.119.109.63 73550 port 3 73550 unique_id port 73550 remote_ip 10.8.0.14 73552 username alirezazamani 73552 mac 73552 bytes_out 0 73552 bytes_in 0 73552 station_ip 5.119.109.63 73552 port 3 73552 unique_id port 73552 remote_ip 10.8.0.14 73553 username alirezazamani 73553 mac 73553 bytes_out 0 73553 bytes_in 0 73553 station_ip 5.119.109.63 73553 port 3 73553 unique_id port 73553 remote_ip 10.8.0.14 81106 username alinezhad 81106 unique_id port 81106 terminate_cause User-Request 81106 bytes_out 0 81106 bytes_in 0 81106 station_ip 5.202.4.103 81106 port 15728704 81106 nas_port_type Virtual 81106 remote_ip 5.5.5.226 73555 username ahmadi 73555 unique_id port 73555 terminate_cause User-Request 73555 bytes_out 65296 73555 bytes_in 192167 73555 station_ip 37.129.85.144 73555 port 15728699 73555 nas_port_type Virtual 73555 remote_ip 5.5.5.237 73557 username ahmadi 73557 unique_id port 73557 terminate_cause User-Request 73557 bytes_out 162251 73557 bytes_in 2472201 73557 station_ip 37.129.85.144 73557 port 15728702 73557 nas_port_type Virtual 73557 remote_ip 5.5.5.237 73558 username alirezazamani 73558 kill_reason Maximum check online fails reached 73558 mac 73558 bytes_out 0 73558 bytes_in 0 73558 station_ip 5.119.109.63 73558 port 15 73558 unique_id port 73565 username aminsaeedi 81112 username asadi 73548 username alirezazamani 73548 mac 73548 bytes_out 0 73548 bytes_in 0 73548 station_ip 5.119.109.63 73548 port 3 73548 unique_id port 73548 remote_ip 10.8.0.14 73549 username alirezazamani 73549 mac 73549 bytes_out 0 73549 bytes_in 0 73549 station_ip 5.119.109.63 73549 port 3 73549 unique_id port 73549 remote_ip 10.8.0.14 73551 username alirezazamani 73551 mac 73551 bytes_out 0 73551 bytes_in 0 73551 station_ip 5.119.109.63 73551 port 3 73551 unique_id port 73551 remote_ip 10.8.0.14 73561 username alirezazamani 73561 mac 73561 bytes_out 0 73561 bytes_in 0 73561 station_ip 5.119.109.63 73561 port 16 73561 unique_id port 73561 remote_ip 10.8.1.14 73562 username alirezazamani 73562 mac 73562 bytes_out 0 73562 bytes_in 0 73562 station_ip 5.119.109.63 73562 port 16 73562 unique_id port 73562 remote_ip 10.8.1.14 73563 username alirezazamani 73563 unique_id port 73563 terminate_cause User-Request 73563 bytes_out 53998400 73563 bytes_in 1155043530 73563 station_ip 5.119.109.63 73563 port 15728700 73563 nas_port_type Virtual 73563 remote_ip 5.5.5.236 73564 username alirezazamani 73564 mac 73564 bytes_out 0 73564 bytes_in 0 73564 station_ip 5.119.109.63 73564 port 3 73564 unique_id port 73564 remote_ip 10.8.0.14 73568 username alirezazamani 73568 mac 73568 bytes_out 0 73568 bytes_in 0 73568 station_ip 5.119.109.63 73568 port 3 73568 unique_id port 73568 remote_ip 10.8.0.14 73569 username alirezazamani 73569 mac 73569 bytes_out 0 73569 bytes_in 0 73569 station_ip 5.119.109.63 73569 port 3 73569 unique_id port 73569 remote_ip 10.8.0.14 73571 username alirezazamani 73571 mac 73571 bytes_out 0 73571 bytes_in 0 73571 station_ip 5.119.109.63 73571 port 16 73571 unique_id port 73571 remote_ip 10.8.1.14 73574 username alirezazamani 73574 mac 73574 bytes_out 0 73574 bytes_in 0 73574 station_ip 5.119.109.63 73574 port 16 73574 unique_id port 73574 remote_ip 10.8.1.14 73575 username alirezazamani 73575 mac 73575 bytes_out 0 73575 bytes_in 0 73575 station_ip 5.119.109.63 73575 port 16 73575 unique_id port 73575 remote_ip 10.8.1.14 73580 username amin.insta01 73580 unique_id port 73580 terminate_cause User-Request 73580 bytes_out 0 73580 bytes_in 0 73580 station_ip 5.119.136.60 73580 port 15728707 73580 nas_port_type Virtual 73580 remote_ip 5.5.5.234 73581 username alirezazamani 73581 mac 73581 bytes_out 0 73581 bytes_in 0 73581 station_ip 5.119.109.63 73581 port 3 73581 unique_id port 73581 remote_ip 10.8.0.14 73584 username alinezhad 73584 unique_id port 73584 terminate_cause User-Request 73584 bytes_out 0 73584 bytes_in 0 73584 station_ip 5.202.28.229 73584 port 15728711 73584 nas_port_type Virtual 73584 remote_ip 5.5.5.254 73590 username alirezazamani 73590 mac 73590 bytes_out 0 73590 bytes_in 0 73590 station_ip 5.119.109.63 73590 port 3 73590 unique_id port 73590 remote_ip 10.8.0.14 73599 username alirezazamani 73599 mac 73599 bytes_out 0 73599 bytes_in 0 73599 station_ip 5.119.109.63 73599 port 16 73599 unique_id port 73599 remote_ip 10.8.1.14 73602 username alirezazamani 73602 mac 73602 bytes_out 0 73602 bytes_in 0 73602 station_ip 5.119.109.63 73602 port 16 73602 unique_id port 73602 remote_ip 10.8.1.14 81107 unique_id port 81107 terminate_cause User-Request 81107 bytes_out 81884 81107 bytes_in 1019498 81107 station_ip 113.203.49.19 81107 port 15728706 81107 nas_port_type Virtual 81107 remote_ip 5.5.5.254 73565 unique_id port 73565 terminate_cause User-Request 73565 bytes_out 0 73565 bytes_in 0 73565 station_ip 31.56.157.197 73565 port 15728703 73565 nas_port_type Virtual 73565 remote_ip 5.5.5.235 73576 username amin.insta01 73576 unique_id port 73576 terminate_cause User-Request 73576 bytes_out 0 73576 bytes_in 0 73576 station_ip 5.119.136.60 73576 port 15728706 73576 nas_port_type Virtual 73576 remote_ip 5.5.5.234 73578 username alirezazamani 73578 mac 73578 bytes_out 0 73578 bytes_in 0 73578 station_ip 5.119.109.63 73578 port 3 73578 unique_id port 73578 remote_ip 10.8.0.14 73582 username alirezazamani 73582 mac 73582 bytes_out 0 73582 bytes_in 0 73582 station_ip 5.119.109.63 73582 port 3 73582 unique_id port 73582 remote_ip 10.8.0.14 73585 username alirezazamani 73585 mac 73585 bytes_out 0 73585 bytes_in 0 73585 station_ip 5.119.109.63 73585 port 16 73585 unique_id port 73585 remote_ip 10.8.1.14 73591 username alirezazamani 73591 mac 73591 bytes_out 0 73591 bytes_in 0 73591 station_ip 5.119.109.63 73591 port 3 73591 unique_id port 73591 remote_ip 10.8.0.14 73592 username alirezazamani 73592 mac 73592 bytes_out 0 73592 bytes_in 0 73592 station_ip 5.119.109.63 73592 port 3 73592 unique_id port 73592 remote_ip 10.8.0.14 73593 username alirezazamani 73593 mac 73593 bytes_out 0 73593 bytes_in 0 73593 station_ip 5.119.109.63 73593 port 3 73593 unique_id port 73593 remote_ip 10.8.0.14 73594 username aminsaeedi 73594 unique_id port 73594 terminate_cause User-Request 73594 bytes_out 1869171 73594 bytes_in 25959117 73594 station_ip 31.56.157.197 73594 port 15728705 73594 nas_port_type Virtual 73594 remote_ip 5.5.5.235 73596 username alirezazamani 73596 mac 73596 bytes_out 0 73596 bytes_in 0 73596 station_ip 5.119.109.63 73596 port 16 73596 unique_id port 73596 remote_ip 10.8.1.14 73600 username amin.insta15 73600 unique_id port 73600 terminate_cause User-Request 73600 bytes_out 134555 73600 bytes_in 304104 73600 station_ip 83.122.62.252 73600 port 15728714 73600 nas_port_type Virtual 73600 remote_ip 5.5.5.232 73604 username amin.insta15 73604 unique_id port 73604 terminate_cause User-Request 73604 bytes_out 69070 73604 bytes_in 226892 73604 station_ip 83.122.62.252 73604 port 15728715 73604 nas_port_type Virtual 73604 remote_ip 5.5.5.232 73605 username alirezazamani 73605 mac 73605 bytes_out 0 73605 bytes_in 0 73605 station_ip 5.119.109.63 73605 port 3 73605 unique_id port 73605 remote_ip 10.8.0.14 73612 username alirezazamani 73612 mac 73612 bytes_out 0 73612 bytes_in 0 73612 station_ip 5.119.109.63 73612 port 16 73612 unique_id port 73612 remote_ip 10.8.1.14 73616 username alirezazamani 73616 kill_reason Maximum check online fails reached 73616 mac 73616 bytes_out 0 73616 bytes_in 0 73616 station_ip 5.119.109.63 73616 port 16 73616 unique_id port 73618 username alirezazamani 73618 mac 73618 bytes_out 0 73618 bytes_in 0 73618 station_ip 5.119.109.63 73618 port 17 73618 unique_id port 73618 remote_ip 10.8.1.14 73620 username alirezazamani 73620 mac 73620 bytes_out 0 73620 bytes_in 0 73620 station_ip 5.119.109.63 73620 port 3 73620 unique_id port 73620 remote_ip 10.8.0.14 73621 username alirezazamani 73621 mac 73621 bytes_out 0 73621 bytes_in 0 73621 station_ip 5.119.109.63 73621 port 3 73621 unique_id port 73621 remote_ip 10.8.0.14 73622 username alirezazamani 73622 mac 73622 bytes_out 0 73622 bytes_in 0 73622 station_ip 5.119.109.63 73572 bytes_in 0 73572 station_ip 5.119.109.63 73572 port 16 73572 unique_id port 73572 remote_ip 10.8.1.14 73573 username alirezazamani 73573 mac 73573 bytes_out 0 73573 bytes_in 0 73573 station_ip 5.119.109.63 73573 port 16 73573 unique_id port 73573 remote_ip 10.8.1.14 73577 username alirezazamani 73577 mac 73577 bytes_out 0 73577 bytes_in 0 73577 station_ip 5.119.109.63 73577 port 16 73577 unique_id port 73577 remote_ip 10.8.1.14 73579 username alirezazamani 73579 mac 73579 bytes_out 0 73579 bytes_in 0 73579 station_ip 5.119.109.63 73579 port 3 73579 unique_id port 73579 remote_ip 10.8.0.14 73583 username alirezazamani 73583 mac 73583 bytes_out 0 73583 bytes_in 0 73583 station_ip 5.119.109.63 73583 port 3 73583 unique_id port 73583 remote_ip 10.8.0.14 73586 username alirezazamani 73586 mac 73586 bytes_out 0 73586 bytes_in 0 73586 station_ip 5.119.109.63 73586 port 3 73586 unique_id port 73586 remote_ip 10.8.0.14 73587 username alirezazamani 73587 mac 73587 bytes_out 0 73587 bytes_in 0 73587 station_ip 5.119.109.63 73587 port 3 73587 unique_id port 73587 remote_ip 10.8.0.14 73588 username alirezazamani 73588 mac 73588 bytes_out 0 73588 bytes_in 0 73588 station_ip 5.119.109.63 73588 port 3 73588 unique_id port 73588 remote_ip 10.8.0.14 73589 username alirezazamani 73589 mac 73589 bytes_out 0 73589 bytes_in 0 73589 station_ip 5.119.109.63 73589 port 3 73589 unique_id port 73589 remote_ip 10.8.0.14 73595 username alinezhad 73595 unique_id port 73595 terminate_cause User-Request 73595 bytes_out 0 73595 bytes_in 0 73595 station_ip 5.202.28.229 73595 port 15728713 73595 nas_port_type Virtual 73595 remote_ip 5.5.5.254 73597 username alirezazamani 73597 mac 73597 bytes_out 0 73597 bytes_in 0 73597 station_ip 5.119.109.63 73597 port 16 73597 unique_id port 73597 remote_ip 10.8.1.14 73598 username alirezazamani 73598 mac 73598 bytes_out 0 73598 bytes_in 0 73598 station_ip 5.119.109.63 73598 port 16 73598 unique_id port 73598 remote_ip 10.8.1.14 73601 username alirezazamani 73601 mac 73601 bytes_out 0 73601 bytes_in 0 73601 station_ip 5.119.109.63 73601 port 16 73601 unique_id port 73601 remote_ip 10.8.1.14 73603 username alirezazamani 73603 mac 73603 bytes_out 0 73603 bytes_in 0 73603 station_ip 5.119.109.63 73603 port 3 73603 unique_id port 73603 remote_ip 10.8.0.14 73607 username alirezazamani 73607 mac 73607 bytes_out 0 73607 bytes_in 0 73607 station_ip 5.119.109.63 73607 port 3 73607 unique_id port 73607 remote_ip 10.8.0.14 73608 username alirezazamani 73608 mac 73608 bytes_out 0 73608 bytes_in 0 73608 station_ip 5.119.109.63 73608 port 3 73608 unique_id port 73608 remote_ip 10.8.0.14 73609 username alirezazamani 73609 mac 73609 bytes_out 0 73609 bytes_in 0 73609 station_ip 5.119.109.63 73609 port 16 73609 unique_id port 73609 remote_ip 10.8.1.14 73613 username alirezazamani 73613 mac 73613 bytes_out 0 73613 bytes_in 0 73613 station_ip 5.119.109.63 73613 port 16 73613 unique_id port 73613 remote_ip 10.8.1.14 73614 username alirezazamani 73614 mac 73614 bytes_out 0 73614 bytes_in 0 73614 station_ip 5.119.109.63 73614 port 16 73614 unique_id port 73614 remote_ip 10.8.1.14 81108 username asadi 81108 unique_id port 81108 terminate_cause User-Request 81108 bytes_out 22648 81108 bytes_in 88350 81108 station_ip 113.203.49.19 81108 port 15728708 81108 nas_port_type Virtual 73610 username alirezazamani 73610 mac 73610 bytes_out 0 73610 bytes_in 0 73610 station_ip 5.119.109.63 73610 port 16 73610 unique_id port 73610 remote_ip 10.8.1.14 73611 username alirezazamani 73611 mac 73611 bytes_out 0 73611 bytes_in 0 73611 station_ip 5.119.109.63 73611 port 16 73611 unique_id port 73611 remote_ip 10.8.1.14 73615 username alirezazamani 73615 mac 73615 bytes_out 0 73615 bytes_in 0 73615 station_ip 5.119.109.63 73615 port 16 73615 unique_id port 73615 remote_ip 10.8.1.14 73617 username alirezazamani 73617 mac 73617 bytes_out 0 73617 bytes_in 0 73617 station_ip 5.119.109.63 73617 port 17 73617 unique_id port 73617 remote_ip 10.8.1.14 73625 username alirezazamani 73625 mac 73625 bytes_out 0 73625 bytes_in 0 73625 station_ip 5.119.109.63 73625 port 3 73625 unique_id port 73625 remote_ip 10.8.0.14 73627 username iranmanesh 73627 unique_id port 73627 terminate_cause Lost-Carrier 73627 bytes_out 7589069 73627 bytes_in 299755857 73627 station_ip 5.112.163.248 73627 port 15728640 73627 nas_port_type Virtual 73627 remote_ip 5.5.5.255 73629 username alirezazamani 73629 mac 73629 bytes_out 0 73629 bytes_in 0 73629 station_ip 5.119.109.63 73629 port 3 73629 unique_id port 73629 remote_ip 10.8.0.14 73630 username alirezazamani 73630 mac 73630 bytes_out 0 73630 bytes_in 0 73630 station_ip 5.119.109.63 73630 port 3 73630 unique_id port 73630 remote_ip 10.8.0.14 73632 username alirezazamani 73632 mac 73632 bytes_out 0 73632 bytes_in 0 73632 station_ip 5.119.109.63 73632 port 3 73632 unique_id port 73632 remote_ip 10.8.0.14 73633 username alirezazamani 73633 mac 73633 bytes_out 0 73633 bytes_in 0 73633 station_ip 5.119.109.63 73633 port 3 73633 unique_id port 73633 remote_ip 10.8.0.14 73635 username alirezazamani 73635 mac 73635 bytes_out 0 73635 bytes_in 0 73635 station_ip 5.119.109.63 73635 port 3 73635 unique_id port 73635 remote_ip 10.8.0.14 73643 username alinezhad 73643 unique_id port 73643 terminate_cause User-Request 73643 bytes_out 0 73643 bytes_in 0 73643 station_ip 5.202.28.229 73643 port 15728724 73643 nas_port_type Virtual 73643 remote_ip 5.5.5.254 73652 username alirezazamani 73652 mac 73652 bytes_out 0 73652 bytes_in 0 73652 station_ip 5.119.109.63 73652 port 4 73652 unique_id port 73652 remote_ip 10.8.0.14 73657 username alirezazamani 73657 mac 73657 bytes_out 0 73657 bytes_in 0 73657 station_ip 5.119.109.63 73657 port 4 73657 unique_id port 73657 remote_ip 10.8.0.14 73665 username alirezazamani 73665 mac 73665 bytes_out 0 73665 bytes_in 0 73665 station_ip 5.119.109.63 73665 port 4 73665 unique_id port 73665 remote_ip 10.8.0.14 73667 username alirezazamani 73667 mac 73667 bytes_out 0 73667 bytes_in 0 73667 station_ip 5.119.109.63 73667 port 4 73667 unique_id port 73667 remote_ip 10.8.0.14 73669 username alirezazamani 73669 mac 73669 bytes_out 1636 73669 bytes_in 5379 73669 station_ip 5.119.109.63 73669 port 4 73669 unique_id port 73669 remote_ip 10.8.0.14 73671 username alirezazamani 73671 mac 73671 bytes_out 0 73671 bytes_in 0 73671 station_ip 5.119.109.63 73671 port 17 73671 unique_id port 73671 remote_ip 10.8.1.14 73672 username aminvpn 73672 mac 73672 bytes_out 0 73672 bytes_in 0 73672 station_ip 5.119.136.60 73672 port 4 73672 unique_id port 73672 remote_ip 10.8.0.6 73673 username alirezazamani 81108 remote_ip 5.5.5.254 81114 username zamanialireza 73623 username alirezazamani 73623 mac 73623 bytes_out 0 73623 bytes_in 0 73623 station_ip 5.119.109.63 73623 port 3 73623 unique_id port 73623 remote_ip 10.8.0.14 73624 username alirezazamani 73624 mac 73624 bytes_out 0 73624 bytes_in 0 73624 station_ip 5.119.109.63 73624 port 3 73624 unique_id port 73624 remote_ip 10.8.0.14 73626 username alirezazamani 73626 mac 73626 bytes_out 0 73626 bytes_in 0 73626 station_ip 5.119.109.63 73626 port 3 73626 unique_id port 73626 remote_ip 10.8.0.14 81114 unique_id port 81114 terminate_cause User-Request 81114 bytes_out 3094893 81114 bytes_in 41468574 81114 station_ip 94.24.82.54 81114 port 15728710 81114 nas_port_type Virtual 81114 remote_ip 5.5.5.214 81116 username madadi 73634 username alirezazamani 73634 mac 73634 bytes_out 0 73634 bytes_in 0 73634 station_ip 5.119.109.63 73634 port 3 73634 unique_id port 73634 remote_ip 10.8.0.14 73636 username alirezazamani 73636 mac 73636 bytes_out 0 73636 bytes_in 0 73636 station_ip 5.119.109.63 73636 port 3 73636 unique_id port 73636 remote_ip 10.8.0.14 73638 username ahmadi 73638 unique_id port 73638 terminate_cause User-Request 73638 bytes_out 349816 73638 bytes_in 131440 73638 station_ip 37.129.85.144 73638 port 15728721 73638 nas_port_type Virtual 73638 remote_ip 5.5.5.237 73640 username alirezazamani 73640 mac 73640 bytes_out 0 73640 bytes_in 0 73640 station_ip 5.119.109.63 73640 port 17 73640 unique_id port 73640 remote_ip 10.8.1.14 73642 username amin.insta15 73642 unique_id port 73642 terminate_cause User-Request 73642 bytes_out 273256 73642 bytes_in 5122654 73642 station_ip 83.122.62.252 73642 port 15728723 73642 nas_port_type Virtual 73642 remote_ip 5.5.5.232 73646 username alirezazamani 73646 mac 73646 bytes_out 0 73646 bytes_in 0 73646 station_ip 5.119.109.63 73646 port 4 73646 unique_id port 73646 remote_ip 10.8.0.14 73647 username alirezazamani 73647 mac 73647 bytes_out 0 73647 bytes_in 0 73647 station_ip 5.119.109.63 73647 port 4 73647 unique_id port 73647 remote_ip 10.8.0.14 73648 username alirezazamani 73648 mac 73648 bytes_out 0 73648 bytes_in 0 73648 station_ip 5.119.109.63 73648 port 4 73648 unique_id port 73648 remote_ip 10.8.0.14 73650 username alirezazamani 73650 mac 73650 bytes_out 0 73650 bytes_in 0 73650 station_ip 5.119.109.63 73650 port 4 73650 unique_id port 73650 remote_ip 10.8.0.14 73651 username alirezazamani 73651 mac 73651 bytes_out 0 73651 bytes_in 0 73651 station_ip 5.119.109.63 73651 port 4 73651 unique_id port 73651 remote_ip 10.8.0.14 73655 username alirezazamani 73655 mac 73655 bytes_out 0 73655 bytes_in 0 73655 station_ip 5.119.109.63 73655 port 4 73655 unique_id port 73655 remote_ip 10.8.0.14 73656 username alirezazamani 73656 mac 73656 bytes_out 0 73656 bytes_in 0 73656 station_ip 5.119.109.63 73656 port 4 73656 unique_id port 73656 remote_ip 10.8.0.14 73659 username alirezazamani 73659 mac 73659 bytes_out 0 73659 bytes_in 0 73659 station_ip 5.119.109.63 73659 port 4 73659 unique_id port 73659 remote_ip 10.8.0.14 73661 username alirezazamani 73661 mac 73661 bytes_out 0 73661 bytes_in 0 73661 station_ip 5.119.109.63 73661 port 4 73661 unique_id port 73661 remote_ip 10.8.0.14 73662 username alirezazamani 73662 mac 73662 bytes_out 0 73662 bytes_in 0 73662 station_ip 5.119.109.63 73662 port 4 73622 port 3 73622 unique_id port 73622 remote_ip 10.8.0.14 73631 username alirezazamani 73631 mac 73631 bytes_out 0 73631 bytes_in 0 73631 station_ip 5.119.109.63 73631 port 3 73631 unique_id port 73631 remote_ip 10.8.0.14 73637 username alirezazamani 73637 mac 73637 bytes_out 0 73637 bytes_in 0 73637 station_ip 5.119.109.63 73637 port 3 73637 unique_id port 73637 remote_ip 10.8.0.14 73639 username alirezazamani 73639 mac 73639 bytes_out 0 73639 bytes_in 0 73639 station_ip 5.119.109.63 73639 port 17 73639 unique_id port 73639 remote_ip 10.8.1.14 73641 username alirezazamani 73641 kill_reason Maximum check online fails reached 73641 mac 73641 bytes_out 0 73641 bytes_in 0 73641 station_ip 5.119.109.63 73641 port 3 73641 unique_id port 73644 username alirezazamani 73644 mac 73644 bytes_out 0 73644 bytes_in 0 73644 station_ip 5.119.109.63 73644 port 4 73644 unique_id port 73644 remote_ip 10.8.0.14 73645 username alirezazamani 73645 mac 73645 bytes_out 0 73645 bytes_in 0 73645 station_ip 5.119.109.63 73645 port 4 73645 unique_id port 73645 remote_ip 10.8.0.14 73649 username alirezazamani 73649 mac 73649 bytes_out 0 73649 bytes_in 0 73649 station_ip 5.119.109.63 73649 port 4 73649 unique_id port 73649 remote_ip 10.8.0.14 73653 username alirezazamani 73653 mac 73653 bytes_out 0 73653 bytes_in 0 73653 station_ip 5.119.109.63 73653 port 4 73653 unique_id port 73653 remote_ip 10.8.0.14 73654 username alirezazamani 73654 mac 73654 bytes_out 0 73654 bytes_in 0 73654 station_ip 5.119.109.63 73654 port 4 73654 unique_id port 73654 remote_ip 10.8.0.14 73658 username amin.insta01 73658 unique_id port 73658 terminate_cause Lost-Carrier 73658 bytes_out 6250887 73658 bytes_in 121286962 73658 station_ip 5.119.121.98 73658 port 15728712 73658 nas_port_type Virtual 73658 remote_ip 5.5.5.233 73660 username alirezazamani 73660 mac 73660 bytes_out 0 73660 bytes_in 0 73660 station_ip 5.119.109.63 73660 port 4 73660 unique_id port 73660 remote_ip 10.8.0.14 73666 username alirezazamani 73666 mac 73666 bytes_out 0 73666 bytes_in 0 73666 station_ip 5.119.109.63 73666 port 4 73666 unique_id port 73666 remote_ip 10.8.0.14 73676 username alirezazamani 73676 mac 73676 bytes_out 0 73676 bytes_in 0 73676 station_ip 5.119.109.63 73676 port 18 73676 unique_id port 73676 remote_ip 10.8.1.14 81109 terminate_cause User-Request 81109 bytes_out 42432 81109 bytes_in 243616 81109 station_ip 113.203.49.19 81109 port 15728711 81109 nas_port_type Virtual 81109 remote_ip 5.5.5.254 81111 username hamideh 81111 unique_id port 73688 username mahdi 73688 unique_id port 73688 terminate_cause Lost-Carrier 73688 bytes_out 1111715 73688 bytes_in 13038815 73688 station_ip 5.119.22.103 73688 port 15728728 73688 nas_port_type Virtual 73688 remote_ip 5.5.5.227 73697 username alirezazamani 73697 kill_reason Maximum check online fails reached 73697 mac 73697 bytes_out 0 73697 bytes_in 0 73697 station_ip 5.119.109.63 73697 port 18 73697 unique_id port 73700 username alirezazamani 73700 mac 73700 bytes_out 0 73700 bytes_in 0 73700 station_ip 5.119.109.63 73700 port 4 73700 unique_id port 73700 remote_ip 10.8.0.14 73701 username alirezazamani 73701 mac 73701 bytes_out 0 73701 bytes_in 0 73701 station_ip 5.119.109.63 73701 port 4 73701 unique_id port 73701 remote_ip 10.8.0.14 73702 username alirezazamani 73702 mac 73702 bytes_out 0 73702 bytes_in 0 73662 unique_id port 73662 remote_ip 10.8.0.14 73663 username alirezazamani 73663 mac 73663 bytes_out 0 73663 bytes_in 0 73663 station_ip 5.119.109.63 73663 port 4 73663 unique_id port 73663 remote_ip 10.8.0.14 73664 username alirezazamani 73664 mac 73664 bytes_out 0 73664 bytes_in 0 73664 station_ip 5.119.109.63 73664 port 4 73664 unique_id port 73664 remote_ip 10.8.0.14 73668 username alinezhad 73668 unique_id port 73668 terminate_cause User-Request 73668 bytes_out 19753 73668 bytes_in 42962 73668 station_ip 5.202.28.229 73668 port 15728725 73668 nas_port_type Virtual 73668 remote_ip 5.5.5.254 73670 username alirezazamani 73670 mac 73670 bytes_out 0 73670 bytes_in 0 73670 station_ip 5.119.109.63 73670 port 17 73670 unique_id port 73670 remote_ip 10.8.1.14 73674 username alirezazamani 73674 kill_reason Maximum check online fails reached 73674 mac 73674 bytes_out 0 73674 bytes_in 0 73674 station_ip 5.119.109.63 73674 port 17 73674 unique_id port 73679 username alirezazamani 73679 mac 73679 bytes_out 0 73679 bytes_in 0 73679 station_ip 5.119.109.63 73679 port 4 73679 unique_id port 73679 remote_ip 10.8.0.14 73689 username alirezazamani 73689 mac 73689 bytes_out 0 73689 bytes_in 0 73689 station_ip 5.119.109.63 73689 port 18 73689 unique_id port 73689 remote_ip 10.8.1.14 73690 username alirezazamani 73690 mac 73690 bytes_out 0 73690 bytes_in 0 73690 station_ip 5.119.109.63 73690 port 18 73690 unique_id port 73690 remote_ip 10.8.1.14 73692 username alirezazamani 73692 mac 73692 bytes_out 0 73692 bytes_in 0 73692 station_ip 5.119.109.63 73692 port 18 73692 unique_id port 73692 remote_ip 10.8.1.14 73694 username alirezazamani 73694 mac 73694 bytes_out 0 73694 bytes_in 0 73694 station_ip 5.119.109.63 73694 port 4 73694 unique_id port 73694 remote_ip 10.8.0.14 73695 username alirezazamani 73695 mac 73695 bytes_out 0 73695 bytes_in 0 73695 station_ip 5.119.109.63 73695 port 4 73695 unique_id port 73695 remote_ip 10.8.0.14 73696 username alirezazamani 73696 mac 73696 bytes_out 0 73696 bytes_in 0 73696 station_ip 5.119.109.63 73696 port 4 73696 unique_id port 73696 remote_ip 10.8.0.14 73698 username alirezazamani 73698 mac 73698 bytes_out 0 73698 bytes_in 0 73698 station_ip 5.119.109.63 73698 port 4 73698 unique_id port 73698 remote_ip 10.8.0.14 73699 username alirezazamani 73699 mac 73699 bytes_out 0 73699 bytes_in 0 73699 station_ip 5.119.109.63 73699 port 4 73699 unique_id port 73699 remote_ip 10.8.0.14 73703 username alirezazamani 73703 mac 73703 bytes_out 0 73703 bytes_in 0 73703 station_ip 5.119.109.63 73703 port 4 73703 unique_id port 73703 remote_ip 10.8.0.14 73705 username alirezazamani 73705 mac 73705 bytes_out 0 73705 bytes_in 0 73705 station_ip 5.119.109.63 73705 port 4 73705 unique_id port 73705 remote_ip 10.8.0.14 73706 username alirezazamani 73706 mac 73706 bytes_out 0 73706 bytes_in 0 73706 station_ip 5.119.109.63 73706 port 4 73706 unique_id port 73706 remote_ip 10.8.0.14 73710 username alirezazamani 73710 mac 73710 bytes_out 0 73710 bytes_in 0 73710 station_ip 5.119.109.63 73710 port 4 73710 unique_id port 73710 remote_ip 10.8.0.14 73712 username alirezazamani 73712 mac 73712 bytes_out 0 73712 bytes_in 0 73712 station_ip 5.119.109.63 73712 port 4 73712 unique_id port 73712 remote_ip 10.8.0.14 73719 username alirezazamani 73719 mac 73673 mac 73673 bytes_out 0 73673 bytes_in 0 73673 station_ip 5.119.109.63 73673 port 17 73673 unique_id port 73673 remote_ip 10.8.1.14 73675 username alirezazamani 73675 mac 73675 bytes_out 0 73675 bytes_in 0 73675 station_ip 5.119.109.63 73675 port 18 73675 unique_id port 73675 remote_ip 10.8.1.14 73678 username alirezazamani 73678 mac 73678 bytes_out 0 73678 bytes_in 0 73678 station_ip 5.119.109.63 73678 port 4 73678 unique_id port 73678 remote_ip 10.8.0.14 73680 username alirezazamani 73680 mac 73680 bytes_out 0 73680 bytes_in 0 73680 station_ip 5.119.109.63 73680 port 4 73680 unique_id port 73680 remote_ip 10.8.0.14 73681 username alirezazamani 73681 mac 73681 bytes_out 0 73681 bytes_in 0 73681 station_ip 5.119.109.63 73681 port 4 73681 unique_id port 73681 remote_ip 10.8.0.14 73682 username alirezazamani 73682 mac 73682 bytes_out 0 73682 bytes_in 0 73682 station_ip 5.119.109.63 73682 port 4 73682 unique_id port 73682 remote_ip 10.8.0.14 73683 username alirezazamani 73683 mac 73683 bytes_out 0 73683 bytes_in 0 73683 station_ip 5.119.109.63 73683 port 4 73683 unique_id port 73683 remote_ip 10.8.0.14 73684 username alirezazamani 73684 unique_id port 73684 terminate_cause Lost-Carrier 73684 bytes_out 3057103 73684 bytes_in 43272121 73684 station_ip 94.241.179.206 73684 port 15728722 73684 nas_port_type Virtual 73684 remote_ip 5.5.5.245 73685 username alirezazamani 73685 mac 73685 bytes_out 0 73685 bytes_in 0 73685 station_ip 5.119.109.63 73685 port 18 73685 unique_id port 73685 remote_ip 10.8.1.14 73686 username alirezazamani 73686 mac 73686 bytes_out 0 73686 bytes_in 0 73686 station_ip 5.119.109.63 73686 port 18 73686 unique_id port 73686 remote_ip 10.8.1.14 73687 username alinezhad 73687 unique_id port 73687 terminate_cause User-Request 73687 bytes_out 0 73687 bytes_in 0 73687 station_ip 5.202.28.229 73687 port 15728730 73687 nas_port_type Virtual 73687 remote_ip 5.5.5.254 73691 username alirezazamani 73691 mac 73691 bytes_out 0 73691 bytes_in 0 73691 station_ip 5.119.109.63 73691 port 18 73691 unique_id port 73691 remote_ip 10.8.1.14 73693 username alirezazamani 73693 mac 73693 bytes_out 0 73693 bytes_in 0 73693 station_ip 5.119.109.63 73693 port 18 73693 unique_id port 73693 remote_ip 10.8.1.14 73711 username alirezazamani 73711 mac 73711 bytes_out 0 73711 bytes_in 0 73711 station_ip 5.119.109.63 73711 port 4 73711 unique_id port 73711 remote_ip 10.8.0.14 73717 username alirezazamani 73717 mac 73717 bytes_out 0 73717 bytes_in 0 73717 station_ip 5.119.109.63 73717 port 4 73717 unique_id port 73717 remote_ip 10.8.0.14 73718 username amin.insta19 73718 unique_id port 73718 terminate_cause Lost-Carrier 73718 bytes_out 14508290 73718 bytes_in 211885710 73718 station_ip 5.120.60.22 73718 port 15728719 73718 nas_port_type Virtual 73718 remote_ip 5.5.5.229 73720 username alirezazamani 73720 mac 73720 bytes_out 0 73720 bytes_in 0 73720 station_ip 5.119.109.63 73720 port 4 73720 unique_id port 73720 remote_ip 10.8.0.14 73721 username alirezazamani 73721 unique_id port 73721 terminate_cause User-Request 73721 bytes_out 521045 73721 bytes_in 6656112 73721 station_ip 37.129.22.206 73721 port 15728732 73721 nas_port_type Virtual 73721 remote_ip 5.5.5.225 73724 username amin.insta11 73724 unique_id port 73724 terminate_cause Lost-Carrier 73724 bytes_out 10192431 73724 bytes_in 255942039 73724 station_ip 86.57.81.90 73702 station_ip 5.119.109.63 73702 port 4 73702 unique_id port 73702 remote_ip 10.8.0.14 73704 username alirezazamani 73704 mac 73704 bytes_out 0 73704 bytes_in 0 73704 station_ip 5.119.109.63 73704 port 4 73704 unique_id port 73704 remote_ip 10.8.0.14 73707 username alirezazamani 73707 mac 73707 bytes_out 0 73707 bytes_in 0 73707 station_ip 5.119.109.63 73707 port 4 73707 unique_id port 73707 remote_ip 10.8.0.14 73708 username alirezazamani 73708 mac 73708 bytes_out 0 73708 bytes_in 0 73708 station_ip 5.119.109.63 73708 port 4 73708 unique_id port 73708 remote_ip 10.8.0.14 73709 username alirezazamani 73709 mac 73709 bytes_out 0 73709 bytes_in 0 73709 station_ip 5.119.109.63 73709 port 4 73709 unique_id port 73709 remote_ip 10.8.0.14 73713 username alirezazamani 73713 mac 73713 bytes_out 0 73713 bytes_in 0 73713 station_ip 5.119.109.63 73713 port 4 73713 unique_id port 73713 remote_ip 10.8.0.14 73714 username alirezazamani 73714 mac 73714 bytes_out 0 73714 bytes_in 0 73714 station_ip 5.119.109.63 73714 port 4 73714 unique_id port 73714 remote_ip 10.8.0.14 73715 username alirezazamani 73715 mac 73715 bytes_out 0 73715 bytes_in 0 73715 station_ip 5.119.109.63 73715 port 4 73715 unique_id port 73715 remote_ip 10.8.0.14 73716 username zoha 73716 unique_id port 73716 terminate_cause Lost-Carrier 73716 bytes_out 314093 73716 bytes_in 1593165 73716 station_ip 5.120.145.223 73716 port 15728731 73716 nas_port_type Virtual 73716 remote_ip 5.5.5.226 73723 username alirezazamani 73723 mac 73723 bytes_out 0 73723 bytes_in 0 73723 station_ip 5.119.109.63 73723 port 4 73723 unique_id port 73723 remote_ip 10.8.0.14 73729 username alirezazamani 73729 mac 73729 bytes_out 0 73729 bytes_in 0 73729 station_ip 5.119.109.63 73729 port 4 73729 unique_id port 73729 remote_ip 10.8.0.14 73730 username alirezazamani 73730 mac 73730 bytes_out 0 73730 bytes_in 0 73730 station_ip 5.119.109.63 73730 port 4 73730 unique_id port 73730 remote_ip 10.8.0.14 73731 username alirezazamani 73731 mac 73731 bytes_out 0 73731 bytes_in 0 73731 station_ip 5.119.109.63 73731 port 4 73731 unique_id port 73731 remote_ip 10.8.0.14 73734 username alirezazamani 73734 mac 73734 bytes_out 0 73734 bytes_in 0 73734 station_ip 5.119.109.63 73734 port 4 73734 unique_id port 73734 remote_ip 10.8.0.14 73735 username alirezazamani 73735 mac 73735 bytes_out 0 73735 bytes_in 0 73735 station_ip 5.119.109.63 73735 port 4 73735 unique_id port 73735 remote_ip 10.8.0.14 73740 username alirezazamani 73740 mac 73740 bytes_out 0 73740 bytes_in 0 73740 station_ip 5.119.109.63 73740 port 19 73740 unique_id port 73740 remote_ip 10.8.1.14 73741 username alirezazamani 73741 mac 73741 bytes_out 0 73741 bytes_in 0 73741 station_ip 5.119.109.63 73741 port 19 73741 unique_id port 73741 remote_ip 10.8.1.14 74334 unique_id port 74334 terminate_cause User-Request 74334 bytes_out 1114017 74334 bytes_in 7120210 74334 station_ip 31.56.154.111 74334 port 15728660 74334 nas_port_type Virtual 74334 remote_ip 5.5.5.242 74337 username amin.insta13 74337 unique_id port 74337 terminate_cause User-Request 74337 bytes_out 351800 74337 bytes_in 5067406 74337 station_ip 37.129.125.97 74337 port 15728666 74337 nas_port_type Virtual 74337 remote_ip 5.5.5.243 74340 username alinezhad 74340 unique_id port 74340 terminate_cause User-Request 74340 bytes_out 100601 73719 bytes_out 0 73719 bytes_in 0 73719 station_ip 5.119.109.63 73719 port 4 73719 unique_id port 73719 remote_ip 10.8.0.14 73722 username alirezazamani 73722 mac 73722 bytes_out 0 73722 bytes_in 0 73722 station_ip 5.119.109.63 73722 port 19 73722 unique_id port 73722 remote_ip 10.8.1.14 73726 username alirezazamani 73726 mac 73726 bytes_out 0 73726 bytes_in 0 73726 station_ip 5.119.109.63 73726 port 4 73726 unique_id port 73726 remote_ip 10.8.0.14 73727 username alirezazamani 73727 mac 73727 bytes_out 0 73727 bytes_in 0 73727 station_ip 5.119.109.63 73727 port 4 73727 unique_id port 73727 remote_ip 10.8.0.14 73732 username alirezazamani 73732 mac 73732 bytes_out 0 73732 bytes_in 0 73732 station_ip 5.119.109.63 73732 port 4 73732 unique_id port 73732 remote_ip 10.8.0.14 73733 username alirezazamani 73733 mac 73733 bytes_out 0 73733 bytes_in 0 73733 station_ip 5.119.109.63 73733 port 4 73733 unique_id port 73733 remote_ip 10.8.0.14 73737 username alinezhad 73737 unique_id port 73737 terminate_cause User-Request 73737 bytes_out 0 73737 bytes_in 0 73737 station_ip 5.202.28.229 73737 port 15728734 73737 nas_port_type Virtual 73737 remote_ip 5.5.5.254 73738 username alirezazamani 73738 mac 73738 bytes_out 0 73738 bytes_in 0 73738 station_ip 5.119.109.63 73738 port 19 73738 unique_id port 73738 remote_ip 10.8.1.14 73739 username alirezazamani 73739 mac 73739 bytes_out 0 73739 bytes_in 0 73739 station_ip 5.119.109.63 73739 port 19 73739 unique_id port 73739 remote_ip 10.8.1.14 73742 username alirezazamani 73742 mac 73742 bytes_out 0 73742 bytes_in 0 73742 station_ip 5.119.109.63 73742 port 19 73742 unique_id port 73742 remote_ip 10.8.1.14 73744 username alirezazamani 73744 mac 73744 bytes_out 0 73744 bytes_in 0 73744 station_ip 5.119.109.63 73744 port 4 73744 unique_id port 73744 remote_ip 10.8.0.14 73745 username alirezazamani 73745 mac 73745 bytes_out 0 73745 bytes_in 0 73745 station_ip 5.119.109.63 73745 port 4 73745 unique_id port 73745 remote_ip 10.8.0.14 73747 username alirezazamani 73747 mac 73747 bytes_out 0 73747 bytes_in 0 73747 station_ip 5.119.109.63 73747 port 4 73747 unique_id port 73747 remote_ip 10.8.0.14 73748 username alirezazamani 73748 mac 73748 bytes_out 0 73748 bytes_in 0 73748 station_ip 5.119.109.63 73748 port 4 73748 unique_id port 73748 remote_ip 10.8.0.14 73749 username alirezazamani 73749 mac 73749 bytes_out 0 73749 bytes_in 0 73749 station_ip 5.119.109.63 73749 port 4 73749 unique_id port 73749 remote_ip 10.8.0.14 74340 bytes_in 1789429 74340 station_ip 5.202.27.41 74340 port 15728669 74340 nas_port_type Virtual 74340 remote_ip 5.5.5.249 74348 username aminvpn 74348 mac 74348 bytes_out 0 74348 bytes_in 0 74348 station_ip 5.120.128.15 74348 port 4 74348 unique_id port 74348 remote_ip 10.8.0.6 74349 username aminvpn 74349 mac 74349 bytes_out 0 74349 bytes_in 0 74349 station_ip 5.120.128.15 74349 port 4 74349 unique_id port 74349 remote_ip 10.8.0.6 74351 username aminvpn 74351 mac 74351 bytes_out 0 74351 bytes_in 0 74351 station_ip 5.120.128.15 74351 port 4 74351 unique_id port 74351 remote_ip 10.8.0.6 74352 username aminvpn 74352 mac 74352 bytes_out 0 74352 bytes_in 0 74352 station_ip 5.120.128.15 74352 port 4 74352 unique_id port 74352 remote_ip 10.8.0.6 74356 username aminvpn 73724 port 15728720 73724 nas_port_type Virtual 73724 remote_ip 5.5.5.228 73725 username alirezazamani 73725 mac 73725 bytes_out 0 73725 bytes_in 0 73725 station_ip 5.119.109.63 73725 port 4 73725 unique_id port 73725 remote_ip 10.8.0.14 73728 username alirezazamani 73728 mac 73728 bytes_out 0 73728 bytes_in 0 73728 station_ip 5.119.109.63 73728 port 4 73728 unique_id port 73728 remote_ip 10.8.0.14 73736 username tahani 73736 unique_id port 73736 terminate_cause User-Request 73736 bytes_out 219139 73736 bytes_in 547272 73736 station_ip 83.123.226.236 73736 port 15728733 73736 nas_port_type Virtual 73736 remote_ip 5.5.5.224 73743 username alirezazamani 73743 mac 73743 bytes_out 0 73743 bytes_in 0 73743 station_ip 5.119.109.63 73743 port 19 73743 unique_id port 73743 remote_ip 10.8.1.14 73746 username alirezazamani 73746 mac 73746 bytes_out 0 73746 bytes_in 0 73746 station_ip 5.119.109.63 73746 port 4 73746 unique_id port 73746 remote_ip 10.8.0.14 74356 mac 74356 bytes_out 0 74356 bytes_in 0 74356 station_ip 5.120.128.15 74356 port 6 74356 unique_id port 74356 remote_ip 10.8.0.6 74357 username aminvpn 74357 kill_reason Maximum check online fails reached 74357 mac 74357 bytes_out 0 74357 bytes_in 0 74357 station_ip 5.120.128.15 74357 port 4 74357 unique_id port 74363 username aminvpn 74363 kill_reason Maximum check online fails reached 74363 mac 74363 bytes_out 0 74363 bytes_in 0 74363 station_ip 5.120.128.15 74363 port 6 74363 unique_id port 74364 username aminvpn 74364 mac 74364 bytes_out 0 74364 bytes_in 0 74364 station_ip 5.120.128.15 74364 port 7 74364 unique_id port 74364 remote_ip 10.8.0.6 74365 username aminvpn 74365 kill_reason Maximum check online fails reached 74365 mac 74365 bytes_out 0 74365 bytes_in 0 74365 station_ip 5.120.128.15 74365 port 7 74365 unique_id port 74367 username aminvpn 74367 mac 74367 bytes_out 0 74367 bytes_in 0 74367 station_ip 5.120.128.15 74367 port 24 74367 unique_id port 74367 remote_ip 10.8.1.10 74368 username aminvpn 74368 mac 74368 bytes_out 0 74368 bytes_in 0 74368 station_ip 5.120.128.15 74368 port 24 74368 unique_id port 74368 remote_ip 10.8.1.10 74371 username aminvpn 74371 mac 74371 bytes_out 1687 74371 bytes_in 4692 74371 station_ip 5.120.128.15 74371 port 8 74371 unique_id port 74371 remote_ip 10.8.0.6 74372 username aminvpn 74372 mac 74372 bytes_out 0 74372 bytes_in 0 74372 station_ip 5.120.128.15 74372 port 24 74372 unique_id port 74372 remote_ip 10.8.1.10 74373 username aminvpn 74373 mac 74373 bytes_out 0 74373 bytes_in 0 74373 station_ip 5.120.128.15 74373 port 24 74373 unique_id port 74373 remote_ip 10.8.1.10 74376 username aminvpn 74376 mac 74376 bytes_out 0 74376 bytes_in 0 74376 station_ip 5.120.128.15 74376 port 24 74376 unique_id port 74376 remote_ip 10.8.1.10 74387 username amin.insta13 74387 unique_id port 74387 terminate_cause User-Request 74387 bytes_out 265833 74387 bytes_in 9120305 74387 station_ip 37.129.125.97 74387 port 15728685 74387 nas_port_type Virtual 74387 remote_ip 5.5.5.243 74390 username amin.insta13 74390 unique_id port 74390 terminate_cause User-Request 74390 bytes_out 0 74390 bytes_in 0 74390 station_ip 37.129.125.97 74390 port 15728687 74390 nas_port_type Virtual 74390 remote_ip 5.5.5.243 74392 username mahdi 74392 unique_id port 74392 terminate_cause Lost-Carrier 74392 bytes_out 1252842 74392 bytes_in 37042263 73750 username alirezazamani 73750 mac 73750 bytes_out 0 73750 bytes_in 0 73750 station_ip 5.119.109.63 73750 port 4 73750 unique_id port 73750 remote_ip 10.8.0.14 73755 username alirezazamani 73755 mac 73755 bytes_out 0 73755 bytes_in 0 73755 station_ip 5.119.109.63 73755 port 4 73755 unique_id port 73755 remote_ip 10.8.0.14 73756 username alirezazamani 73756 mac 73756 bytes_out 0 73756 bytes_in 0 73756 station_ip 5.119.109.63 73756 port 4 73756 unique_id port 73756 remote_ip 10.8.0.14 73757 username alirezazamani 73757 mac 73757 bytes_out 0 73757 bytes_in 0 73757 station_ip 5.119.109.63 73757 port 4 73757 unique_id port 73757 remote_ip 10.8.0.14 73758 username alirezazamani 73758 mac 73758 bytes_out 0 73758 bytes_in 0 73758 station_ip 5.119.109.63 73758 port 4 73758 unique_id port 73758 remote_ip 10.8.0.14 73761 username alirezazamani 73761 mac 73761 bytes_out 0 73761 bytes_in 0 73761 station_ip 5.119.109.63 73761 port 4 73761 unique_id port 73761 remote_ip 10.8.0.14 73762 username alirezazamani 73762 mac 73762 bytes_out 0 73762 bytes_in 0 73762 station_ip 5.119.109.63 73762 port 4 73762 unique_id port 73762 remote_ip 10.8.0.14 73766 username alirezazamani 73766 mac 73766 bytes_out 0 73766 bytes_in 0 73766 station_ip 5.119.109.63 73766 port 4 73766 unique_id port 73766 remote_ip 10.8.0.14 73770 username mobina 73770 unique_id port 73770 terminate_cause Lost-Carrier 73770 bytes_out 311939 73770 bytes_in 6279847 73770 station_ip 5.123.19.167 73770 port 15728736 73770 nas_port_type Virtual 73770 remote_ip 5.5.5.223 73771 username alirezazamani 73771 mac 73771 bytes_out 0 73771 bytes_in 0 73771 station_ip 5.119.109.63 73771 port 4 73771 unique_id port 73771 remote_ip 10.8.0.14 73774 username alirezazamani 73774 mac 73774 bytes_out 0 73774 bytes_in 0 73774 station_ip 5.119.109.63 73774 port 4 73774 unique_id port 73774 remote_ip 10.8.0.14 73780 username alirezazamani 73780 mac 73780 bytes_out 0 73780 bytes_in 0 73780 station_ip 5.119.109.63 73780 port 4 73780 unique_id port 73780 remote_ip 10.8.0.14 73781 username alinezhad 73781 unique_id port 73781 terminate_cause User-Request 73781 bytes_out 0 73781 bytes_in 0 73781 station_ip 5.202.28.229 73781 port 15728738 73781 nas_port_type Virtual 73781 remote_ip 5.5.5.254 73782 username alirezazamani 73782 mac 73782 bytes_out 0 73782 bytes_in 0 73782 station_ip 5.119.109.63 73782 port 4 73782 unique_id port 73782 remote_ip 10.8.0.14 73784 username alirezazamani 73784 mac 73784 bytes_out 0 73784 bytes_in 0 73784 station_ip 5.119.109.63 73784 port 4 73784 unique_id port 73784 remote_ip 10.8.0.14 73791 username rashidi 73791 unique_id port 73791 terminate_cause User-Request 73791 bytes_out 0 73791 bytes_in 0 73791 station_ip 5.119.42.59 73791 port 15728739 73791 nas_port_type Virtual 73791 remote_ip 5.5.5.221 73792 username alirezazamani 73792 mac 73792 bytes_out 0 73792 bytes_in 0 73792 station_ip 5.119.109.63 73792 port 4 73792 unique_id port 73792 remote_ip 10.8.0.14 73796 username alirezazamani 73796 mac 73796 bytes_out 0 73796 bytes_in 0 73796 station_ip 5.119.109.63 73796 port 4 73796 unique_id port 73796 remote_ip 10.8.0.14 73799 username alirezazamani 73799 mac 73799 bytes_out 0 73799 bytes_in 0 73799 station_ip 5.119.109.63 73799 port 4 73799 unique_id port 73799 remote_ip 10.8.0.14 73802 username alinezhad 73751 username alirezazamani 73751 mac 73751 bytes_out 0 73751 bytes_in 0 73751 station_ip 5.119.109.63 73751 port 4 73751 unique_id port 73751 remote_ip 10.8.0.14 73752 username alirezazamani 73752 mac 73752 bytes_out 0 73752 bytes_in 0 73752 station_ip 5.119.109.63 73752 port 4 73752 unique_id port 73752 remote_ip 10.8.0.14 73754 username alirezazamani 73754 mac 73754 bytes_out 0 73754 bytes_in 0 73754 station_ip 5.119.109.63 73754 port 4 73754 unique_id port 73754 remote_ip 10.8.0.14 73759 username alirezazamani 73759 mac 73759 bytes_out 0 73759 bytes_in 0 73759 station_ip 5.119.109.63 73759 port 4 73759 unique_id port 73759 remote_ip 10.8.0.14 73760 username alirezazamani 73760 mac 73760 bytes_out 0 73760 bytes_in 0 73760 station_ip 5.119.109.63 73760 port 4 73760 unique_id port 73760 remote_ip 10.8.0.14 73763 username alirezazamani 73763 mac 73763 bytes_out 0 73763 bytes_in 0 73763 station_ip 5.119.109.63 73763 port 4 73763 unique_id port 73763 remote_ip 10.8.0.14 73768 username alirezazamani 73768 mac 73768 bytes_out 0 73768 bytes_in 0 73768 station_ip 5.119.109.63 73768 port 4 73768 unique_id port 73768 remote_ip 10.8.0.14 73769 username alirezazamani 73769 mac 73769 bytes_out 0 73769 bytes_in 0 73769 station_ip 5.119.109.63 73769 port 4 73769 unique_id port 73769 remote_ip 10.8.0.14 73772 username alirezazamani 73772 mac 73772 bytes_out 0 73772 bytes_in 0 73772 station_ip 5.119.109.63 73772 port 4 73772 unique_id port 73772 remote_ip 10.8.0.14 73773 username alirezazamani 73773 mac 73773 bytes_out 0 73773 bytes_in 0 73773 station_ip 5.119.109.63 73773 port 4 73773 unique_id port 73773 remote_ip 10.8.0.14 73776 username alirezazamani 73776 mac 73776 bytes_out 0 73776 bytes_in 0 73776 station_ip 5.119.109.63 73776 port 4 73776 unique_id port 73776 remote_ip 10.8.0.14 73777 username alirezazamani 73777 mac 73777 bytes_out 0 73777 bytes_in 0 73777 station_ip 5.119.109.63 73777 port 4 73777 unique_id port 73777 remote_ip 10.8.0.14 73778 username alirezazamani 73778 mac 73778 bytes_out 0 73778 bytes_in 0 73778 station_ip 5.119.109.63 73778 port 4 73778 unique_id port 73778 remote_ip 10.8.0.14 73783 username alirezazamani 73783 mac 73783 bytes_out 0 73783 bytes_in 0 73783 station_ip 5.119.109.63 73783 port 4 73783 unique_id port 73783 remote_ip 10.8.0.14 73785 username alirezazamani 73785 mac 73785 bytes_out 0 73785 bytes_in 0 73785 station_ip 5.119.109.63 73785 port 4 73785 unique_id port 73785 remote_ip 10.8.0.14 73787 username alirezazamani 73787 mac 73787 bytes_out 0 73787 bytes_in 0 73787 station_ip 5.119.109.63 73787 port 4 73787 unique_id port 73787 remote_ip 10.8.0.14 73788 username alirezazamani 73788 mac 73788 bytes_out 0 73788 bytes_in 0 73788 station_ip 5.119.109.63 73788 port 4 73788 unique_id port 73788 remote_ip 10.8.0.14 73793 username alirezazamani 73793 mac 73793 bytes_out 0 73793 bytes_in 0 73793 station_ip 5.119.109.63 73793 port 4 73793 unique_id port 73793 remote_ip 10.8.0.14 73795 username tahani 73795 unique_id port 73795 terminate_cause User-Request 73795 bytes_out 314163 73795 bytes_in 10258450 73795 station_ip 83.123.226.236 73795 port 15728740 73795 nas_port_type Virtual 73795 remote_ip 5.5.5.224 73797 username alirezazamani 73797 mac 73797 bytes_out 0 73797 bytes_in 0 73753 username alirezazamani 73753 mac 73753 bytes_out 0 73753 bytes_in 0 73753 station_ip 5.119.109.63 73753 port 4 73753 unique_id port 73753 remote_ip 10.8.0.14 73764 username alirezazamani 73764 mac 73764 bytes_out 0 73764 bytes_in 0 73764 station_ip 5.119.109.63 73764 port 4 73764 unique_id port 73764 remote_ip 10.8.0.14 73765 username alirezazamani 73765 mac 73765 bytes_out 0 73765 bytes_in 0 73765 station_ip 5.119.109.63 73765 port 4 73765 unique_id port 73765 remote_ip 10.8.0.14 73767 username alirezazamani 73767 mac 73767 bytes_out 0 73767 bytes_in 0 73767 station_ip 5.119.109.63 73767 port 4 73767 unique_id port 73767 remote_ip 10.8.0.14 73775 username ahmad 73775 unique_id port 73775 terminate_cause User-Request 73775 bytes_out 70267 73775 bytes_in 567165 73775 station_ip 83.122.16.100 73775 port 15728737 73775 nas_port_type Virtual 73775 remote_ip 5.5.5.222 73779 username alirezazamani 73779 mac 73779 bytes_out 0 73779 bytes_in 0 73779 station_ip 5.119.109.63 73779 port 4 73779 unique_id port 73779 remote_ip 10.8.0.14 73786 username alirezazamani 73786 mac 73786 bytes_out 0 73786 bytes_in 0 73786 station_ip 5.119.109.63 73786 port 4 73786 unique_id port 73786 remote_ip 10.8.0.14 73789 username alirezazamani 73789 mac 73789 bytes_out 0 73789 bytes_in 0 73789 station_ip 5.119.109.63 73789 port 4 73789 unique_id port 73789 remote_ip 10.8.0.14 73790 username alirezazamani 73790 mac 73790 bytes_out 0 73790 bytes_in 0 73790 station_ip 5.119.109.63 73790 port 4 73790 unique_id port 73790 remote_ip 10.8.0.14 73794 username alirezazamani 73794 mac 73794 bytes_out 0 73794 bytes_in 0 73794 station_ip 5.119.109.63 73794 port 4 73794 unique_id port 73794 remote_ip 10.8.0.14 73798 username tahani 73798 unique_id port 73798 terminate_cause User-Request 73798 bytes_out 181420 73798 bytes_in 2269828 73798 station_ip 83.123.226.236 73798 port 15728741 73798 nas_port_type Virtual 73798 remote_ip 5.5.5.224 73800 username tahani 73800 unique_id port 73800 terminate_cause User-Request 73800 bytes_out 96121 73800 bytes_in 2346759 73800 station_ip 83.123.226.236 73800 port 15728745 73800 nas_port_type Virtual 73800 remote_ip 5.5.5.224 73804 username alirezazamani 73804 mac 73804 bytes_out 0 73804 bytes_in 0 73804 station_ip 5.119.109.63 73804 port 4 73804 unique_id port 73804 remote_ip 10.8.0.14 73805 username alirezazamani 73805 mac 73805 bytes_out 0 73805 bytes_in 0 73805 station_ip 5.119.109.63 73805 port 4 73805 unique_id port 73805 remote_ip 10.8.0.14 73813 username alirezazamani 73813 mac 73813 bytes_out 0 73813 bytes_in 0 73813 station_ip 5.119.109.63 73813 port 19 73813 unique_id port 73813 remote_ip 10.8.1.14 73817 username alirezazamani 73817 mac 73817 bytes_out 0 73817 bytes_in 0 73817 station_ip 5.119.109.63 73817 port 4 73817 unique_id port 73817 remote_ip 10.8.0.14 73819 username alirezazamani 73819 mac 73819 bytes_out 0 73819 bytes_in 0 73819 station_ip 5.119.109.63 73819 port 4 73819 unique_id port 73819 remote_ip 10.8.0.14 73820 username alirezazamani 73820 mac 73820 bytes_out 0 73820 bytes_in 0 73820 station_ip 5.119.109.63 73820 port 4 73820 unique_id port 73820 remote_ip 10.8.0.14 73822 username golmahammad 73822 unique_id port 73822 terminate_cause User-Request 73822 bytes_out 229175 73822 bytes_in 2605259 73822 station_ip 37.129.122.83 73822 port 15728754 73797 station_ip 5.119.109.63 73797 port 4 73797 unique_id port 73797 remote_ip 10.8.0.14 73801 username alirezazamani 73801 mac 73801 bytes_out 0 73801 bytes_in 0 73801 station_ip 5.119.109.63 73801 port 4 73801 unique_id port 73801 remote_ip 10.8.0.14 73806 username tahani 73806 unique_id port 73806 terminate_cause User-Request 73806 bytes_out 52645 73806 bytes_in 1054676 73806 station_ip 83.123.226.236 73806 port 15728747 73806 nas_port_type Virtual 73806 remote_ip 5.5.5.224 73809 username alirezazamani 73809 mac 73809 bytes_out 0 73809 bytes_in 0 73809 station_ip 5.119.109.63 73809 port 19 73809 unique_id port 73809 remote_ip 10.8.1.14 73810 username tahani 73810 unique_id port 73810 terminate_cause User-Request 73810 bytes_out 307460 73810 bytes_in 9816616 73810 station_ip 83.123.226.236 73810 port 15728749 73810 nas_port_type Virtual 73810 remote_ip 5.5.5.224 73814 username alirezazamani 73814 mac 73814 bytes_out 0 73814 bytes_in 0 73814 station_ip 5.119.109.63 73814 port 4 73814 unique_id port 73814 remote_ip 10.8.0.14 73815 username alirezazamani 73815 mac 73815 bytes_out 0 73815 bytes_in 0 73815 station_ip 5.119.109.63 73815 port 4 73815 unique_id port 73815 remote_ip 10.8.0.14 73816 username alirezazamani 73816 mac 73816 bytes_out 0 73816 bytes_in 0 73816 station_ip 5.119.109.63 73816 port 4 73816 unique_id port 73816 remote_ip 10.8.0.14 73823 username golmahammad 73823 kill_reason Maximum check online fails reached 73823 unique_id port 73823 bytes_out 0 73823 bytes_in 0 73823 station_ip 37.129.122.83 73823 port 15728753 73823 nas_port_type Virtual 73831 username golmahammad 73831 unique_id port 73831 terminate_cause User-Request 73831 bytes_out 99866 73831 bytes_in 837612 73831 station_ip 37.129.122.83 73831 port 15728756 73831 nas_port_type Virtual 73831 remote_ip 5.5.5.220 73835 username alirezazamani 73835 mac 73835 bytes_out 0 73835 bytes_in 0 73835 station_ip 5.119.109.63 73835 port 4 73835 unique_id port 73835 remote_ip 10.8.0.14 73836 username golmahammad 73836 unique_id port 73836 terminate_cause User-Request 73836 bytes_out 22815 73836 bytes_in 63200 73836 station_ip 37.129.122.83 73836 port 15728757 73836 nas_port_type Virtual 73836 remote_ip 5.5.5.220 73841 username alirezazamani 73841 mac 73841 bytes_out 0 73841 bytes_in 0 73841 station_ip 5.119.109.63 73841 port 4 73841 unique_id port 73841 remote_ip 10.8.0.14 73847 username golmahammad 73847 unique_id port 73847 terminate_cause User-Request 73847 bytes_out 40086 73847 bytes_in 277456 73847 station_ip 37.129.122.83 73847 port 15728760 73847 nas_port_type Virtual 73847 remote_ip 5.5.5.220 73849 username alirezazamani 73849 mac 73849 bytes_out 0 73849 bytes_in 0 73849 station_ip 5.119.109.63 73849 port 4 73849 unique_id port 73849 remote_ip 10.8.0.14 73853 username alirezazamani 73853 mac 73853 bytes_out 0 73853 bytes_in 0 73853 station_ip 5.119.109.63 73853 port 5 73853 unique_id port 73853 remote_ip 10.8.0.14 73855 username alirezazamani 73855 mac 73855 bytes_out 0 73855 bytes_in 0 73855 station_ip 5.119.109.63 73855 port 5 73855 unique_id port 73855 remote_ip 10.8.0.14 73857 username golmahammad 73857 unique_id port 73857 terminate_cause User-Request 73857 bytes_out 27559 73857 bytes_in 36108 73857 station_ip 37.129.122.83 73857 port 15728764 73857 nas_port_type Virtual 73857 remote_ip 5.5.5.220 73858 username alirezazamani 73858 mac 73858 bytes_out 0 73858 bytes_in 0 73858 station_ip 5.119.109.63 73802 unique_id port 73802 terminate_cause User-Request 73802 bytes_out 0 73802 bytes_in 0 73802 station_ip 5.202.28.229 73802 port 15728746 73802 nas_port_type Virtual 73802 remote_ip 5.5.5.254 73803 username alirezazamani 73803 mac 73803 bytes_out 0 73803 bytes_in 0 73803 station_ip 5.119.109.63 73803 port 4 73803 unique_id port 73803 remote_ip 10.8.0.14 73807 username alirezazamani 73807 mac 73807 bytes_out 0 73807 bytes_in 0 73807 station_ip 5.119.109.63 73807 port 19 73807 unique_id port 73807 remote_ip 10.8.1.14 73808 username tahani 73808 unique_id port 73808 terminate_cause User-Request 73808 bytes_out 255708 73808 bytes_in 7761616 73808 station_ip 83.123.226.236 73808 port 15728748 73808 nas_port_type Virtual 73808 remote_ip 5.5.5.224 73811 username tahani 73811 unique_id port 73811 terminate_cause User-Request 73811 bytes_out 239281 73811 bytes_in 6970440 73811 station_ip 83.123.226.236 73811 port 15728750 73811 nas_port_type Virtual 73811 remote_ip 5.5.5.224 73812 username alinezhad 73812 unique_id port 73812 terminate_cause User-Request 73812 bytes_out 0 73812 bytes_in 0 73812 station_ip 5.202.28.229 73812 port 15728751 73812 nas_port_type Virtual 73812 remote_ip 5.5.5.254 73818 username alirezazamani 73818 mac 73818 bytes_out 0 73818 bytes_in 0 73818 station_ip 5.119.109.63 73818 port 4 73818 unique_id port 73818 remote_ip 10.8.0.14 81110 username asadi 81110 unique_id port 81110 terminate_cause User-Request 81110 bytes_out 24391 81110 bytes_in 57300 81110 station_ip 113.203.49.19 81110 port 15728712 81110 nas_port_type Virtual 81110 remote_ip 5.5.5.254 73825 username alirezazamani 73825 mac 73825 bytes_out 0 73825 bytes_in 0 73825 station_ip 5.119.109.63 73825 port 4 73825 unique_id port 73825 remote_ip 10.8.0.14 73827 username alirezazamani 73827 mac 73827 bytes_out 0 73827 bytes_in 0 73827 station_ip 5.119.109.63 73827 port 4 73827 unique_id port 73827 remote_ip 10.8.0.14 73828 username golmahammad 73828 unique_id port 73828 terminate_cause User-Request 73828 bytes_out 160303 73828 bytes_in 1128558 73828 station_ip 37.129.122.83 73828 port 15728755 73828 nas_port_type Virtual 73828 remote_ip 5.5.5.220 73830 username alirezazamani 73830 mac 73830 bytes_out 0 73830 bytes_in 0 73830 station_ip 5.119.109.63 73830 port 4 73830 unique_id port 73830 remote_ip 10.8.0.14 73832 username alirezazamani 73832 mac 73832 bytes_out 0 73832 bytes_in 0 73832 station_ip 5.119.109.63 73832 port 4 73832 unique_id port 73832 remote_ip 10.8.0.14 73834 username alirezazamani 73834 mac 73834 bytes_out 0 73834 bytes_in 0 73834 station_ip 5.119.109.63 73834 port 4 73834 unique_id port 73834 remote_ip 10.8.0.14 73837 username alirezazamani 73837 mac 73837 bytes_out 0 73837 bytes_in 0 73837 station_ip 5.119.109.63 73837 port 4 73837 unique_id port 73837 remote_ip 10.8.0.14 73839 username golmahammad 73839 unique_id port 73839 terminate_cause User-Request 73839 bytes_out 283484 73839 bytes_in 46282 73839 station_ip 37.129.122.83 73839 port 15728758 73839 nas_port_type Virtual 73839 remote_ip 5.5.5.220 73840 username alirezazamani 73840 mac 73840 bytes_out 0 73840 bytes_in 0 73840 station_ip 5.119.109.63 73840 port 4 73840 unique_id port 73840 remote_ip 10.8.0.14 73842 username golmahammad 73842 unique_id port 73842 terminate_cause User-Request 73842 bytes_out 15099 73842 bytes_in 54597 73842 station_ip 37.129.122.83 73842 port 15728759 73842 nas_port_type Virtual 81113 username asadi 73822 nas_port_type Virtual 73822 remote_ip 5.5.5.220 73824 username alirezazamani 73824 mac 73824 bytes_out 0 73824 bytes_in 0 73824 station_ip 5.119.109.63 73824 port 4 73824 unique_id port 73824 remote_ip 10.8.0.14 73826 username alirezazamani 73826 mac 73826 bytes_out 0 73826 bytes_in 0 73826 station_ip 5.119.109.63 73826 port 4 73826 unique_id port 73826 remote_ip 10.8.0.14 73829 username alirezazamani 73829 mac 73829 bytes_out 0 73829 bytes_in 0 73829 station_ip 5.119.109.63 73829 port 4 73829 unique_id port 73829 remote_ip 10.8.0.14 73833 username alirezazamani 73833 mac 73833 bytes_out 0 73833 bytes_in 0 73833 station_ip 5.119.109.63 73833 port 4 73833 unique_id port 73833 remote_ip 10.8.0.14 73838 username alirezazamani 73838 mac 73838 bytes_out 0 73838 bytes_in 0 73838 station_ip 5.119.109.63 73838 port 4 73838 unique_id port 73838 remote_ip 10.8.0.14 73843 username alirezazamani 73843 mac 73843 bytes_out 0 73843 bytes_in 0 73843 station_ip 5.119.109.63 73843 port 4 73843 unique_id port 73843 remote_ip 10.8.0.14 73845 username alirezazamani 73845 mac 73845 bytes_out 0 73845 bytes_in 0 73845 station_ip 5.119.109.63 73845 port 4 73845 unique_id port 73845 remote_ip 10.8.0.14 73848 username alirezazamani 73848 mac 73848 bytes_out 0 73848 bytes_in 0 73848 station_ip 5.119.109.63 73848 port 4 73848 unique_id port 73848 remote_ip 10.8.0.14 73854 username alirezazamani 73854 mac 73854 bytes_out 0 73854 bytes_in 0 73854 station_ip 5.119.109.63 73854 port 5 73854 unique_id port 73854 remote_ip 10.8.0.14 73856 username aminvpn 73856 mac 73856 bytes_out 897343 73856 bytes_in 3618280 73856 station_ip 5.120.128.15 73856 port 4 73856 unique_id port 73856 remote_ip 10.8.0.6 73859 username amin.insta01 73859 unique_id port 73859 terminate_cause User-Request 73859 bytes_out 0 73859 bytes_in 0 73859 station_ip 5.119.85.103 73859 port 15728766 73859 nas_port_type Virtual 73859 remote_ip 5.5.5.218 73862 username alirezazamani 73862 mac 73862 bytes_out 0 73862 bytes_in 0 73862 station_ip 5.119.109.63 73862 port 4 73862 unique_id port 73862 remote_ip 10.8.0.14 73863 username golmahammad 73863 unique_id port 73863 terminate_cause User-Request 73863 bytes_out 91611 73863 bytes_in 435537 73863 station_ip 37.129.122.83 73863 port 15728768 73863 nas_port_type Virtual 73863 remote_ip 5.5.5.220 73865 username alirezazamani 73865 mac 73865 bytes_out 0 73865 bytes_in 0 73865 station_ip 5.119.109.63 73865 port 4 73865 unique_id port 73865 remote_ip 10.8.0.14 73870 username alirezazamani 73870 mac 73870 bytes_out 0 73870 bytes_in 0 73870 station_ip 5.119.109.63 73870 port 4 73870 unique_id port 73870 remote_ip 10.8.0.14 73871 username alirezazamani 73871 mac 73871 bytes_out 0 73871 bytes_in 0 73871 station_ip 5.119.109.63 73871 port 4 73871 unique_id port 73871 remote_ip 10.8.0.14 73873 username alirezazamani 73873 mac 73873 bytes_out 0 73873 bytes_in 0 73873 station_ip 5.119.109.63 73873 port 4 73873 unique_id port 73873 remote_ip 10.8.0.14 73875 username amin.insta01 73875 unique_id port 73875 terminate_cause Lost-Carrier 73875 bytes_out 117916 73875 bytes_in 1057966 73875 station_ip 5.119.85.103 73875 port 15728767 73875 nas_port_type Virtual 73875 remote_ip 5.5.5.218 73876 username alirezazamani 73876 mac 73876 bytes_out 0 73876 bytes_in 0 73876 station_ip 5.119.109.63 73876 port 4 73842 remote_ip 5.5.5.220 73844 username alirezazamani 73844 mac 73844 bytes_out 0 73844 bytes_in 0 73844 station_ip 5.119.109.63 73844 port 4 73844 unique_id port 73844 remote_ip 10.8.0.14 73846 username alirezazamani 73846 mac 73846 bytes_out 0 73846 bytes_in 0 73846 station_ip 5.119.109.63 73846 port 4 73846 unique_id port 73846 remote_ip 10.8.0.14 73850 username golmahammad 73850 unique_id port 73850 terminate_cause User-Request 73850 bytes_out 18586 73850 bytes_in 36863 73850 station_ip 37.129.122.83 73850 port 15728761 73850 nas_port_type Virtual 73850 remote_ip 5.5.5.220 73851 username alirezazamani 73851 mac 73851 bytes_out 0 73851 bytes_in 0 73851 station_ip 5.119.109.63 73851 port 5 73851 unique_id port 73851 remote_ip 10.8.0.14 73852 username golmahammad 73852 unique_id port 73852 terminate_cause User-Request 73852 bytes_out 15656 73852 bytes_in 45691 73852 station_ip 37.129.122.83 73852 port 15728763 73852 nas_port_type Virtual 73852 remote_ip 5.5.5.220 73861 username alirezazamani 73861 mac 73861 bytes_out 0 73861 bytes_in 0 73861 station_ip 5.119.109.63 73861 port 4 73861 unique_id port 73861 remote_ip 10.8.0.14 73864 username alirezazamani 73864 mac 73864 bytes_out 0 73864 bytes_in 0 73864 station_ip 5.119.109.63 73864 port 4 73864 unique_id port 73864 remote_ip 10.8.0.14 73869 username alirezazamani 73869 mac 73869 bytes_out 0 73869 bytes_in 0 73869 station_ip 5.119.109.63 73869 port 4 73869 unique_id port 73869 remote_ip 10.8.0.14 73874 username golmahammad 73874 unique_id port 73874 terminate_cause User-Request 73874 bytes_out 121274 73874 bytes_in 1648778 73874 station_ip 37.129.122.83 73874 port 15728772 73874 nas_port_type Virtual 73874 remote_ip 5.5.5.220 73877 username golmahammad 73877 unique_id port 73877 terminate_cause User-Request 73877 bytes_out 12935 73877 bytes_in 38824 73877 station_ip 37.129.122.83 73877 port 15728773 73877 nas_port_type Virtual 73877 remote_ip 5.5.5.220 73880 username alirezazamani 73880 mac 73880 bytes_out 0 73880 bytes_in 0 73880 station_ip 5.119.109.63 73880 port 4 73880 unique_id port 73880 remote_ip 10.8.0.14 73884 username alirezazamani 73884 mac 73884 bytes_out 0 73884 bytes_in 0 73884 station_ip 5.119.109.63 73884 port 4 73884 unique_id port 73884 remote_ip 10.8.0.14 73885 username alirezazamani 73885 mac 73885 bytes_out 0 73885 bytes_in 0 73885 station_ip 5.119.109.63 73885 port 4 73885 unique_id port 73885 remote_ip 10.8.0.14 73887 username alirezazamani 73887 mac 73887 bytes_out 0 73887 bytes_in 0 73887 station_ip 5.119.109.63 73887 port 4 73887 unique_id port 73887 remote_ip 10.8.0.14 73894 username golmahammad 73894 unique_id port 73894 terminate_cause User-Request 73894 bytes_out 6913 73894 bytes_in 25626 73894 station_ip 37.129.122.83 73894 port 15728779 73894 nas_port_type Virtual 73894 remote_ip 5.5.5.220 73897 username alirezazamani 73897 mac 73897 bytes_out 0 73897 bytes_in 0 73897 station_ip 5.119.109.63 73897 port 19 73897 unique_id port 73897 remote_ip 10.8.1.14 73899 username alirezazamani 73899 mac 73899 bytes_out 0 73899 bytes_in 0 73899 station_ip 5.119.109.63 73899 port 19 73899 unique_id port 73899 remote_ip 10.8.1.14 73905 username alirezazamani 73905 mac 73905 bytes_out 0 73905 bytes_in 0 73905 station_ip 5.119.70.41 73905 port 5 73905 unique_id port 73905 remote_ip 10.8.0.14 73908 username alirezazamani 73908 mac 73908 bytes_out 0 73858 port 4 73858 unique_id port 73858 remote_ip 10.8.0.14 73860 username golmahammad 73860 unique_id port 73860 terminate_cause User-Request 73860 bytes_out 50617 73860 bytes_in 498633 73860 station_ip 37.129.122.83 73860 port 15728765 73860 nas_port_type Virtual 73860 remote_ip 5.5.5.220 73866 username golmahammad 73866 unique_id port 73866 terminate_cause User-Request 73866 bytes_out 5115 73866 bytes_in 18330 73866 station_ip 37.129.122.83 73866 port 15728769 73866 nas_port_type Virtual 73866 remote_ip 5.5.5.220 73867 username alirezazamani 73867 mac 73867 bytes_out 0 73867 bytes_in 0 73867 station_ip 5.119.109.63 73867 port 4 73867 unique_id port 73867 remote_ip 10.8.0.14 73868 username alirezazamani 73868 mac 73868 bytes_out 0 73868 bytes_in 0 73868 station_ip 5.119.109.63 73868 port 4 73868 unique_id port 73868 remote_ip 10.8.0.14 73872 username nazanin 73872 unique_id port 73872 terminate_cause User-Request 73872 bytes_out 0 73872 bytes_in 0 73872 station_ip 83.123.150.54 73872 port 15728771 73872 nas_port_type Virtual 73872 remote_ip 5.5.5.217 73878 username alirezazamani 73878 mac 73878 bytes_out 0 73878 bytes_in 0 73878 station_ip 5.119.109.63 73878 port 4 73878 unique_id port 73878 remote_ip 10.8.0.14 73881 username golmahammad 73881 unique_id port 73881 terminate_cause User-Request 73881 bytes_out 78349 73881 bytes_in 737670 73881 station_ip 37.129.122.83 73881 port 15728774 73881 nas_port_type Virtual 73881 remote_ip 5.5.5.220 73888 username alirezazamani 73888 mac 73888 bytes_out 0 73888 bytes_in 0 73888 station_ip 5.119.109.63 73888 port 4 73888 unique_id port 73888 remote_ip 10.8.0.14 73889 username alirezazamani 73889 mac 73889 bytes_out 0 73889 bytes_in 0 73889 station_ip 5.119.109.63 73889 port 4 73889 unique_id port 73889 remote_ip 10.8.0.14 73890 username golmahammad 73890 unique_id port 73890 terminate_cause User-Request 73890 bytes_out 68601 73890 bytes_in 415596 73890 station_ip 37.129.122.83 73890 port 15728777 73890 nas_port_type Virtual 73890 remote_ip 5.5.5.220 73891 username alirezazamani 73891 mac 73891 bytes_out 0 73891 bytes_in 0 73891 station_ip 5.119.109.63 73891 port 19 73891 unique_id port 73891 remote_ip 10.8.1.14 73900 username alirezazamani 73900 mac 73900 bytes_out 0 73900 bytes_in 0 73900 station_ip 5.119.109.63 73900 port 19 73900 unique_id port 73900 remote_ip 10.8.1.14 73901 username alirezazamani 73901 mac 73901 bytes_out 0 73901 bytes_in 0 73901 station_ip 5.119.109.63 73901 port 19 73901 unique_id port 73901 remote_ip 10.8.1.14 73910 username alirezazamani 73910 mac 73910 bytes_out 0 73910 bytes_in 0 73910 station_ip 5.119.70.41 73910 port 5 73910 unique_id port 73910 remote_ip 10.8.0.14 73911 username alirezazamani 73911 mac 73911 bytes_out 0 73911 bytes_in 0 73911 station_ip 5.119.70.41 73911 port 5 73911 unique_id port 73911 remote_ip 10.8.0.14 73913 username alirezazamani 73913 mac 73913 bytes_out 0 73913 bytes_in 0 73913 station_ip 5.119.70.41 73913 port 5 73913 unique_id port 73913 remote_ip 10.8.0.14 73917 username alirezazamani 73917 mac 73917 bytes_out 0 73917 bytes_in 0 73917 station_ip 5.119.70.41 73917 port 19 73917 unique_id port 73917 remote_ip 10.8.1.14 73921 username golmahammad 73921 unique_id port 73921 terminate_cause User-Request 73921 bytes_out 135374 73921 bytes_in 3210790 73921 station_ip 37.129.122.83 73921 port 15728786 73921 nas_port_type Virtual 73876 unique_id port 73876 remote_ip 10.8.0.14 73879 username alirezazamani 73879 mac 73879 bytes_out 0 73879 bytes_in 0 73879 station_ip 5.119.109.63 73879 port 4 73879 unique_id port 73879 remote_ip 10.8.0.14 73882 username alirezazamani 73882 mac 73882 bytes_out 0 73882 bytes_in 0 73882 station_ip 5.119.109.63 73882 port 4 73882 unique_id port 73882 remote_ip 10.8.0.14 73883 username alirezazamani 73883 mac 73883 bytes_out 0 73883 bytes_in 0 73883 station_ip 5.119.109.63 73883 port 4 73883 unique_id port 73883 remote_ip 10.8.0.14 73886 username golmahammad 73886 unique_id port 73886 terminate_cause User-Request 73886 bytes_out 95859 73886 bytes_in 1569701 73886 station_ip 37.129.122.83 73886 port 15728775 73886 nas_port_type Virtual 73886 remote_ip 5.5.5.220 73892 username alirezazamani 73892 mac 73892 bytes_out 0 73892 bytes_in 0 73892 station_ip 5.119.109.63 73892 port 19 73892 unique_id port 73892 remote_ip 10.8.1.14 73893 username alirezazamani 73893 mac 73893 bytes_out 0 73893 bytes_in 0 73893 station_ip 5.119.109.63 73893 port 19 73893 unique_id port 73893 remote_ip 10.8.1.14 73895 username reza 73895 unique_id port 73895 terminate_cause Lost-Carrier 73895 bytes_out 139957 73895 bytes_in 4499806 73895 station_ip 83.122.230.118 73895 port 15728776 73895 nas_port_type Virtual 73895 remote_ip 5.5.5.216 73896 username golmahammad 73896 unique_id port 73896 terminate_cause User-Request 73896 bytes_out 37429 73896 bytes_in 420426 73896 station_ip 37.129.122.83 73896 port 15728781 73896 nas_port_type Virtual 73896 remote_ip 5.5.5.220 73898 username alirezazamani 73898 mac 73898 bytes_out 0 73898 bytes_in 0 73898 station_ip 5.119.109.63 73898 port 19 73898 unique_id port 73898 remote_ip 10.8.1.14 73902 username alirezazamani 73902 mac 73902 bytes_out 0 73902 bytes_in 0 73902 station_ip 5.119.70.41 73902 port 5 73902 unique_id port 73902 remote_ip 10.8.0.14 73903 username alirezazamani 73903 mac 73903 bytes_out 0 73903 bytes_in 0 73903 station_ip 5.119.70.41 73903 port 5 73903 unique_id port 73903 remote_ip 10.8.0.14 73904 username alirezazamani 73904 mac 73904 bytes_out 0 73904 bytes_in 0 73904 station_ip 5.119.70.41 73904 port 5 73904 unique_id port 73904 remote_ip 10.8.0.14 73906 username alirezazamani 73906 mac 73906 bytes_out 0 73906 bytes_in 0 73906 station_ip 5.119.70.41 73906 port 5 73906 unique_id port 73906 remote_ip 10.8.0.14 73907 username alirezazamani 73907 mac 73907 bytes_out 0 73907 bytes_in 0 73907 station_ip 5.119.70.41 73907 port 5 73907 unique_id port 73907 remote_ip 10.8.0.14 73915 username alirezazamani 73915 mac 73915 bytes_out 0 73915 bytes_in 0 73915 station_ip 5.119.70.41 73915 port 5 73915 unique_id port 73915 remote_ip 10.8.0.14 73916 username golmahammad 73916 unique_id port 73916 terminate_cause User-Request 73916 bytes_out 18821 73916 bytes_in 80192 73916 station_ip 37.129.122.83 73916 port 15728784 73916 nas_port_type Virtual 73916 remote_ip 5.5.5.220 73918 username golmahammad 73918 unique_id port 73918 terminate_cause User-Request 73918 bytes_out 26697 73918 bytes_in 181259 73918 station_ip 37.129.122.83 73918 port 15728785 73918 nas_port_type Virtual 73918 remote_ip 5.5.5.220 73922 username ahmadi 73922 unique_id port 73922 terminate_cause User-Request 73922 bytes_out 0 73922 bytes_in 0 73922 station_ip 37.129.71.108 73922 port 15728787 73922 nas_port_type Virtual 73922 remote_ip 5.5.5.214 73908 bytes_in 0 73908 station_ip 5.119.70.41 73908 port 5 73908 unique_id port 73908 remote_ip 10.8.0.14 73909 username alirezazamani 73909 mac 73909 bytes_out 0 73909 bytes_in 0 73909 station_ip 5.119.70.41 73909 port 5 73909 unique_id port 73909 remote_ip 10.8.0.14 73912 username alirezazamani 73912 mac 73912 bytes_out 0 73912 bytes_in 0 73912 station_ip 5.119.70.41 73912 port 5 73912 unique_id port 73912 remote_ip 10.8.0.14 73914 username tahani 73914 unique_id port 73914 terminate_cause User-Request 73914 bytes_out 464 73914 bytes_in 11242 73914 station_ip 83.123.226.236 73914 port 15728783 73914 nas_port_type Virtual 73914 remote_ip 5.5.5.224 73919 username alirezazamani 73919 mac 73919 bytes_out 0 73919 bytes_in 0 73919 station_ip 5.119.70.41 73919 port 19 73919 unique_id port 73919 remote_ip 10.8.1.14 73920 username alirezazamani 73920 mac 73920 bytes_out 0 73920 bytes_in 0 73920 station_ip 5.119.70.41 73920 port 19 73920 unique_id port 73920 remote_ip 10.8.1.14 73924 username alirezazamani 73924 mac 73924 bytes_out 0 73924 bytes_in 0 73924 station_ip 5.119.70.41 73924 port 5 73924 unique_id port 73924 remote_ip 10.8.0.14 73931 username alirezazamani 73931 mac 73931 bytes_out 0 73931 bytes_in 0 73931 station_ip 5.119.70.41 73931 port 5 73931 unique_id port 73931 remote_ip 10.8.0.14 73934 username alirezazamani 73934 mac 73934 bytes_out 0 73934 bytes_in 0 73934 station_ip 5.119.70.41 73934 port 5 73934 unique_id port 73934 remote_ip 10.8.0.14 73935 username alirezazamani 73935 mac 73935 bytes_out 0 73935 bytes_in 0 73935 station_ip 5.119.70.41 73935 port 5 73935 unique_id port 73935 remote_ip 10.8.0.14 73938 username alirezazamani 73938 mac 73938 bytes_out 0 73938 bytes_in 0 73938 station_ip 5.119.70.41 73938 port 19 73938 unique_id port 73938 remote_ip 10.8.1.14 73946 username alirezazamani 73946 mac 73946 bytes_out 0 73946 bytes_in 0 73946 station_ip 5.119.70.41 73946 port 19 73946 unique_id port 73946 remote_ip 10.8.1.14 73948 username alirezazamani 73948 mac 73948 bytes_out 0 73948 bytes_in 0 73948 station_ip 5.119.70.41 73948 port 6 73948 unique_id port 73948 remote_ip 10.8.0.14 73954 username alirezazamani 73954 mac 73954 bytes_out 0 73954 bytes_in 0 73954 station_ip 5.119.70.41 73954 port 6 73954 unique_id port 73954 remote_ip 10.8.0.14 73958 username alirezazamani 73958 mac 73958 bytes_out 0 73958 bytes_in 0 73958 station_ip 5.119.70.41 73958 port 6 73958 unique_id port 73958 remote_ip 10.8.0.14 73963 username alirezazamani 73963 mac 73963 bytes_out 0 73963 bytes_in 0 73963 station_ip 5.119.70.41 73963 port 6 73963 unique_id port 73963 remote_ip 10.8.0.14 73966 username golmahammad 73966 unique_id port 73966 terminate_cause User-Request 73966 bytes_out 10697 73966 bytes_in 25760 73966 station_ip 37.129.23.127 73966 port 15728796 73966 nas_port_type Virtual 73966 remote_ip 5.5.5.212 73969 username alirezazamani 73969 mac 73969 bytes_out 0 73969 bytes_in 0 73969 station_ip 5.119.70.41 73969 port 19 73969 unique_id port 73969 remote_ip 10.8.1.14 73970 username alirezazamani 73970 mac 73970 bytes_out 0 73970 bytes_in 0 73970 station_ip 5.119.70.41 73970 port 19 73970 unique_id port 73970 remote_ip 10.8.1.14 73972 username golmahammad 73972 unique_id port 73972 terminate_cause User-Request 73972 bytes_out 39050 73972 bytes_in 168949 73921 remote_ip 5.5.5.220 73923 username golmahammad 73923 unique_id port 73923 terminate_cause User-Request 73923 bytes_out 119941 73923 bytes_in 3125909 73923 station_ip 37.129.122.83 73923 port 15728788 73923 nas_port_type Virtual 73923 remote_ip 5.5.5.220 73928 username aminvpn 73928 kill_reason Another user logged on this global unique id 73928 mac 73928 bytes_out 0 73928 bytes_in 0 73928 station_ip 5.120.128.15 73928 port 4 73928 unique_id port 73928 remote_ip 10.8.0.6 73929 username alirezazamani 73929 mac 73929 bytes_out 0 73929 bytes_in 0 73929 station_ip 5.119.70.41 73929 port 5 73929 unique_id port 73929 remote_ip 10.8.0.14 73930 username alirezazamani 73930 mac 73930 bytes_out 0 73930 bytes_in 0 73930 station_ip 5.119.70.41 73930 port 5 73930 unique_id port 73930 remote_ip 10.8.0.14 73933 username amin.insta13 73933 unique_id port 73933 terminate_cause User-Request 73933 bytes_out 1014881 73933 bytes_in 9051440 73933 station_ip 37.129.58.243 73933 port 15728790 73933 nas_port_type Virtual 73933 remote_ip 5.5.5.213 73939 username alirezazamani 73939 mac 73939 bytes_out 0 73939 bytes_in 0 73939 station_ip 5.119.70.41 73939 port 19 73939 unique_id port 73939 remote_ip 10.8.1.14 73941 username alirezazamani 73941 mac 73941 bytes_out 0 73941 bytes_in 0 73941 station_ip 5.119.70.41 73941 port 6 73941 unique_id port 73941 remote_ip 10.8.0.14 73944 username alirezazamani 73944 mac 73944 bytes_out 0 73944 bytes_in 0 73944 station_ip 5.119.70.41 73944 port 6 73944 unique_id port 73944 remote_ip 10.8.0.14 73947 username amin.insta11 73947 unique_id port 73947 terminate_cause Lost-Carrier 73947 bytes_out 4264373 73947 bytes_in 6817872 73947 station_ip 5.160.113.102 73947 port 15728782 73947 nas_port_type Virtual 73947 remote_ip 5.5.5.215 73951 username alirezazamani 73951 mac 73951 bytes_out 0 73951 bytes_in 0 73951 station_ip 5.119.70.41 73951 port 6 73951 unique_id port 73951 remote_ip 10.8.0.14 73955 username alirezazamani 73955 mac 73955 bytes_out 0 73955 bytes_in 0 73955 station_ip 5.119.70.41 73955 port 6 73955 unique_id port 73955 remote_ip 10.8.0.14 73956 username alirezazamani 73956 mac 73956 bytes_out 0 73956 bytes_in 0 73956 station_ip 5.119.70.41 73956 port 6 73956 unique_id port 73956 remote_ip 10.8.0.14 73960 username alinezhad 73960 unique_id port 73960 terminate_cause User-Request 73960 bytes_out 35613 73960 bytes_in 449455 73960 station_ip 83.122.140.215 73960 port 15728793 73960 nas_port_type Virtual 73960 remote_ip 5.5.5.211 73961 username alirezazamani 73961 mac 73961 bytes_out 0 73961 bytes_in 0 73961 station_ip 5.119.70.41 73961 port 6 73961 unique_id port 73961 remote_ip 10.8.0.14 73964 username golmahammad 73964 unique_id port 73964 terminate_cause User-Request 73964 bytes_out 215428 73964 bytes_in 7168747 73964 station_ip 37.129.23.127 73964 port 15728794 73964 nas_port_type Virtual 73964 remote_ip 5.5.5.212 73965 username golmahammad 73965 unique_id port 73965 terminate_cause User-Request 73965 bytes_out 29308 73965 bytes_in 57553 73965 station_ip 37.129.23.127 73965 port 15728795 73965 nas_port_type Virtual 73965 remote_ip 5.5.5.212 73971 username alirezazamani 73971 mac 73971 bytes_out 0 73971 bytes_in 0 73971 station_ip 5.119.70.41 73971 port 19 73971 unique_id port 73971 remote_ip 10.8.1.14 73981 username alirezazamani 73981 mac 73981 bytes_out 0 73981 bytes_in 0 73981 station_ip 5.119.70.41 73981 port 6 73981 unique_id port 73925 username golmahammad 73925 unique_id port 73925 terminate_cause User-Request 73925 bytes_out 5042 73925 bytes_in 16278 73925 station_ip 37.129.122.83 73925 port 15728789 73925 nas_port_type Virtual 73925 remote_ip 5.5.5.220 73926 username alirezazamani 73926 mac 73926 bytes_out 0 73926 bytes_in 0 73926 station_ip 5.119.70.41 73926 port 5 73926 unique_id port 73926 remote_ip 10.8.0.14 73927 username alirezazamani 73927 mac 73927 bytes_out 0 73927 bytes_in 0 73927 station_ip 5.119.70.41 73927 port 5 73927 unique_id port 73927 remote_ip 10.8.0.14 73932 username alirezazamani 73932 mac 73932 bytes_out 0 73932 bytes_in 0 73932 station_ip 5.119.70.41 73932 port 5 73932 unique_id port 73932 remote_ip 10.8.0.14 73936 username amin.insta13 73936 unique_id port 73936 terminate_cause User-Request 73936 bytes_out 271466 73936 bytes_in 2967427 73936 station_ip 37.129.58.243 73936 port 15728791 73936 nas_port_type Virtual 73936 remote_ip 5.5.5.213 73937 username alirezazamani 73937 mac 73937 bytes_out 0 73937 bytes_in 0 73937 station_ip 5.119.70.41 73937 port 5 73937 unique_id port 73937 remote_ip 10.8.0.14 73940 username alirezazamani 73940 kill_reason Maximum check online fails reached 73940 mac 73940 bytes_out 0 73940 bytes_in 0 73940 station_ip 5.119.70.41 73940 port 5 73940 unique_id port 73942 username alirezazamani 73942 mac 73942 bytes_out 0 73942 bytes_in 0 73942 station_ip 5.119.70.41 73942 port 6 73942 unique_id port 73942 remote_ip 10.8.0.14 73943 username alirezazamani 73943 mac 73943 bytes_out 0 73943 bytes_in 0 73943 station_ip 5.119.70.41 73943 port 6 73943 unique_id port 73943 remote_ip 10.8.0.14 73945 username alirezazamani 73945 mac 73945 bytes_out 0 73945 bytes_in 0 73945 station_ip 5.119.70.41 73945 port 19 73945 unique_id port 73945 remote_ip 10.8.1.14 73949 username mobina 73949 unique_id port 73949 terminate_cause Lost-Carrier 73949 bytes_out 897476 73949 bytes_in 12565874 73949 station_ip 5.124.58.241 73949 port 15728762 73949 nas_port_type Virtual 73949 remote_ip 5.5.5.219 73950 username alirezazamani 73950 mac 73950 bytes_out 0 73950 bytes_in 0 73950 station_ip 5.119.70.41 73950 port 6 73950 unique_id port 73950 remote_ip 10.8.0.14 73952 username alirezazamani 73952 mac 73952 bytes_out 0 73952 bytes_in 0 73952 station_ip 5.119.70.41 73952 port 6 73952 unique_id port 73952 remote_ip 10.8.0.14 73953 username alirezazamani 73953 mac 73953 bytes_out 0 73953 bytes_in 0 73953 station_ip 5.119.70.41 73953 port 6 73953 unique_id port 73953 remote_ip 10.8.0.14 73957 username alirezazamani 73957 mac 73957 bytes_out 0 73957 bytes_in 0 73957 station_ip 5.119.70.41 73957 port 6 73957 unique_id port 73957 remote_ip 10.8.0.14 73959 username golmahammad 73959 unique_id port 73959 terminate_cause User-Request 73959 bytes_out 117990 73959 bytes_in 2026474 73959 station_ip 37.129.23.127 73959 port 15728792 73959 nas_port_type Virtual 73959 remote_ip 5.5.5.212 73962 username alirezazamani 73962 mac 73962 bytes_out 0 73962 bytes_in 0 73962 station_ip 5.119.70.41 73962 port 6 73962 unique_id port 73962 remote_ip 10.8.0.14 73967 username aminvpn 73967 mac 73967 bytes_out 0 73967 bytes_in 0 73967 station_ip 5.120.128.15 73967 port 4 73967 unique_id port 73968 username golmahammad 73968 unique_id port 73968 terminate_cause User-Request 73968 bytes_out 137990 73968 bytes_in 2722380 73968 station_ip 37.129.23.127 73968 port 15728797 73968 nas_port_type Virtual 73968 remote_ip 5.5.5.212 73973 username alirezazamani 73973 mac 73973 bytes_out 0 73973 bytes_in 0 73973 station_ip 5.119.70.41 73973 port 6 73973 unique_id port 73973 remote_ip 10.8.0.14 73975 username golmahammad 73975 unique_id port 73975 terminate_cause User-Request 73975 bytes_out 17930 73975 bytes_in 44751 73975 station_ip 37.129.23.127 73975 port 15728800 73975 nas_port_type Virtual 73975 remote_ip 5.5.5.212 73976 username ahmadi 73976 unique_id port 73976 terminate_cause User-Request 73976 bytes_out 219636 73976 bytes_in 2707805 73976 station_ip 37.129.71.108 73976 port 15728799 73976 nas_port_type Virtual 73976 remote_ip 5.5.5.214 73978 username alirezazamani 73978 mac 73978 bytes_out 0 73978 bytes_in 0 73978 station_ip 5.119.70.41 73978 port 6 73978 unique_id port 73978 remote_ip 10.8.0.14 73982 username golmahammad 73982 unique_id port 73982 terminate_cause User-Request 73982 bytes_out 403376 73982 bytes_in 6734300 73982 station_ip 37.129.23.127 73982 port 15728802 73982 nas_port_type Virtual 73982 remote_ip 5.5.5.212 73983 username golmahammad 73983 unique_id port 73983 terminate_cause User-Request 73983 bytes_out 98074 73983 bytes_in 457044 73983 station_ip 37.129.23.127 73983 port 15728803 73983 nas_port_type Virtual 73983 remote_ip 5.5.5.212 73985 username golmahammad 73985 unique_id port 73985 terminate_cause User-Request 73985 bytes_out 1150024 73985 bytes_in 230649 73985 station_ip 37.129.23.127 73985 port 15728805 73985 nas_port_type Virtual 73985 remote_ip 5.5.5.212 73988 username golmahammad 73988 unique_id port 73988 terminate_cause User-Request 73988 bytes_out 31336 73988 bytes_in 232378 73988 station_ip 37.129.23.127 73988 port 15728806 73988 nas_port_type Virtual 73988 remote_ip 5.5.5.212 73991 username golmahammad 73991 unique_id port 73991 terminate_cause User-Request 73991 bytes_out 58782 73991 bytes_in 474605 73991 station_ip 37.129.23.127 73991 port 15728807 73991 nas_port_type Virtual 73991 remote_ip 5.5.5.212 73994 username alirezazamani 73994 mac 73994 bytes_out 0 73994 bytes_in 0 73994 station_ip 5.119.70.41 73994 port 4 73994 unique_id port 73994 remote_ip 10.8.0.14 73997 username alirezazamani 73997 mac 73997 bytes_out 0 73997 bytes_in 0 73997 station_ip 5.119.70.41 73997 port 4 73997 unique_id port 73997 remote_ip 10.8.0.14 73999 username golmahammad 73999 unique_id port 73999 terminate_cause User-Request 73999 bytes_out 8109 73999 bytes_in 17975 73999 station_ip 37.129.23.127 73999 port 15728811 73999 nas_port_type Virtual 73999 remote_ip 5.5.5.212 74005 username alirezazamani 74005 mac 74005 bytes_out 0 74005 bytes_in 0 74005 station_ip 5.119.70.41 74005 port 20 74005 unique_id port 74005 remote_ip 10.8.1.14 74008 username alirezazamani 74008 mac 74008 bytes_out 0 74008 bytes_in 0 74008 station_ip 5.119.70.41 74008 port 4 74008 unique_id port 74008 remote_ip 10.8.0.14 74010 username alirezazamani 74010 mac 74010 bytes_out 0 74010 bytes_in 0 74010 station_ip 5.119.70.41 74010 port 20 74010 unique_id port 74010 remote_ip 10.8.1.14 74012 username alirezazamani 74012 mac 74012 bytes_out 0 74012 bytes_in 0 74012 station_ip 5.119.70.41 74012 port 20 74012 unique_id port 74012 remote_ip 10.8.1.14 74369 bytes_out 0 74369 bytes_in 0 74369 station_ip 5.120.128.15 74369 port 8 74369 unique_id port 74369 remote_ip 10.8.0.6 74374 username aminvpn 74374 mac 74374 bytes_out 0 74374 bytes_in 0 74374 station_ip 5.120.128.15 73972 station_ip 37.129.23.127 73972 port 15728798 73972 nas_port_type Virtual 73972 remote_ip 5.5.5.212 73974 username alirezazamani 73974 mac 73974 bytes_out 0 73974 bytes_in 0 73974 station_ip 5.119.70.41 73974 port 6 73974 unique_id port 73974 remote_ip 10.8.0.14 73977 username alirezazamani 73977 kill_reason Maximum check online fails reached 73977 mac 73977 bytes_out 0 73977 bytes_in 0 73977 station_ip 5.119.70.41 73977 port 19 73977 unique_id port 73979 username golmahammad 73979 unique_id port 73979 terminate_cause User-Request 73979 bytes_out 8984 73979 bytes_in 18779 73979 station_ip 37.129.23.127 73979 port 15728801 73979 nas_port_type Virtual 73979 remote_ip 5.5.5.212 73980 username alirezazamani 73980 mac 73980 bytes_out 0 73980 bytes_in 0 73980 station_ip 5.119.70.41 73980 port 6 73980 unique_id port 73980 remote_ip 10.8.0.14 73984 username golmahammad 73984 unique_id port 73984 terminate_cause User-Request 73984 bytes_out 149600 73984 bytes_in 5358701 73984 station_ip 37.129.23.127 73984 port 15728804 73984 nas_port_type Virtual 73984 remote_ip 5.5.5.212 73986 username aminvpn 73986 mac 73986 bytes_out 0 73986 bytes_in 0 73986 station_ip 5.120.128.15 73986 port 4 73986 unique_id port 73986 remote_ip 10.8.0.6 73987 username alirezazamani 73987 mac 73987 bytes_out 0 73987 bytes_in 0 73987 station_ip 5.119.70.41 73987 port 4 73987 unique_id port 73987 remote_ip 10.8.0.14 73989 username alirezazamani 73989 mac 73989 bytes_out 0 73989 bytes_in 0 73989 station_ip 5.119.70.41 73989 port 4 73989 unique_id port 73989 remote_ip 10.8.0.14 73990 username alirezazamani 73990 mac 73990 bytes_out 0 73990 bytes_in 0 73990 station_ip 5.119.70.41 73990 port 4 73990 unique_id port 73990 remote_ip 10.8.0.14 73992 username alirezazamani 73992 mac 73992 bytes_out 0 73992 bytes_in 0 73992 station_ip 5.119.70.41 73992 port 4 73992 unique_id port 73992 remote_ip 10.8.0.14 73993 username golmahammad 73993 unique_id port 73993 terminate_cause User-Request 73993 bytes_out 129696 73993 bytes_in 2290861 73993 station_ip 37.129.23.127 73993 port 15728809 73993 nas_port_type Virtual 73993 remote_ip 5.5.5.212 74003 username alirezazamani 74003 mac 74003 bytes_out 0 74003 bytes_in 0 74003 station_ip 5.119.70.41 74003 port 20 74003 unique_id port 74003 remote_ip 10.8.1.14 74006 username alirezazamani 74006 mac 74006 bytes_out 0 74006 bytes_in 0 74006 station_ip 5.119.70.41 74006 port 20 74006 unique_id port 74006 remote_ip 10.8.1.14 74007 username alinezhad 74007 unique_id port 74007 terminate_cause User-Request 74007 bytes_out 0 74007 bytes_in 0 74007 station_ip 37.129.194.86 74007 port 15728812 74007 nas_port_type Virtual 74007 remote_ip 5.5.5.210 74009 username golmahammad 74009 unique_id port 74009 terminate_cause User-Request 74009 bytes_out 197590 74009 bytes_in 5258250 74009 station_ip 37.129.23.127 74009 port 15728813 74009 nas_port_type Virtual 74009 remote_ip 5.5.5.212 74011 username golmahammad 74011 unique_id port 74011 terminate_cause User-Request 74011 bytes_out 234772 74011 bytes_in 6560843 74011 station_ip 37.129.23.127 74011 port 15728814 74011 nas_port_type Virtual 74011 remote_ip 5.5.5.212 74013 username alirezazamani 74013 mac 74013 bytes_out 0 74013 bytes_in 0 74013 station_ip 5.119.70.41 74013 port 20 74013 unique_id port 74013 remote_ip 10.8.1.14 74015 username alirezazamani 74015 mac 74015 bytes_out 0 74015 bytes_in 0 74015 station_ip 5.119.70.41 73981 remote_ip 10.8.0.14 73995 username alirezazamani 73995 mac 73995 bytes_out 0 73995 bytes_in 0 73995 station_ip 5.119.70.41 73995 port 4 73995 unique_id port 73995 remote_ip 10.8.0.14 73996 username golmahammad 73996 unique_id port 73996 terminate_cause User-Request 73996 bytes_out 137737 73996 bytes_in 2634248 73996 station_ip 37.129.23.127 73996 port 15728810 73996 nas_port_type Virtual 73996 remote_ip 5.5.5.212 73998 username rashidi 73998 unique_id port 73998 terminate_cause User-Request 73998 bytes_out 19964279 73998 bytes_in 352166317 73998 station_ip 5.119.42.59 73998 port 15728770 73998 nas_port_type Virtual 73998 remote_ip 5.5.5.221 74000 username alirezazamani 74000 mac 74000 bytes_out 1857 74000 bytes_in 4761 74000 station_ip 5.119.70.41 74000 port 4 74000 unique_id port 74000 remote_ip 10.8.0.14 74001 username alirezazamani 74001 mac 74001 bytes_out 0 74001 bytes_in 0 74001 station_ip 5.119.70.41 74001 port 20 74001 unique_id port 74001 remote_ip 10.8.1.14 74002 username alirezazamani 74002 mac 74002 bytes_out 0 74002 bytes_in 0 74002 station_ip 5.119.70.41 74002 port 20 74002 unique_id port 74002 remote_ip 10.8.1.14 74004 username alirezazamani 74004 mac 74004 bytes_out 0 74004 bytes_in 0 74004 station_ip 5.119.70.41 74004 port 20 74004 unique_id port 74004 remote_ip 10.8.1.14 74014 username alirezazamani 74014 mac 74014 bytes_out 0 74014 bytes_in 0 74014 station_ip 5.119.70.41 74014 port 20 74014 unique_id port 74014 remote_ip 10.8.1.14 74374 port 24 74374 unique_id port 74374 remote_ip 10.8.1.10 74377 username amin.insta13 74377 unique_id port 74377 terminate_cause User-Request 74377 bytes_out 193152 74377 bytes_in 690120 74377 station_ip 37.129.125.97 74377 port 15728682 74377 nas_port_type Virtual 74377 remote_ip 5.5.5.243 74380 username aminvpn 74380 kill_reason Maximum check online fails reached 74380 mac 74380 bytes_out 0 74380 bytes_in 0 74380 station_ip 5.120.128.15 74380 port 24 74380 unique_id port 74381 username amin.insta01 74381 unique_id port 74381 terminate_cause Lost-Carrier 74381 bytes_out 3437025 74381 bytes_in 88296548 74381 station_ip 5.119.191.53 74381 port 15728677 74381 nas_port_type Virtual 74381 remote_ip 5.5.5.236 74384 username alinezhad 74384 unique_id port 74384 terminate_cause User-Request 74384 bytes_out 2517162 74384 bytes_in 41840849 74384 station_ip 5.202.27.41 74384 port 15728678 74384 nas_port_type Virtual 74384 remote_ip 5.5.5.249 74385 username aminvpn 74385 mac 74385 bytes_out 0 74385 bytes_in 0 74385 station_ip 5.120.128.15 74385 port 8 74385 unique_id port 74385 remote_ip 10.8.0.6 74386 username amin.insta13 74386 unique_id port 74386 terminate_cause User-Request 74386 bytes_out 525184 74386 bytes_in 9599425 74386 station_ip 37.129.125.97 74386 port 15728684 74386 nas_port_type Virtual 74386 remote_ip 5.5.5.243 74388 username amin.insta13 74388 unique_id port 74388 terminate_cause User-Request 74388 bytes_out 375639 74388 bytes_in 10626341 74388 station_ip 37.129.125.97 74388 port 15728686 74388 nas_port_type Virtual 74388 remote_ip 5.5.5.243 74391 username amin.insta13 74391 unique_id port 74391 terminate_cause User-Request 74391 bytes_out 197761 74391 bytes_in 5236322 74391 station_ip 37.129.125.97 74391 port 15728688 74391 nas_port_type Virtual 74391 remote_ip 5.5.5.243 74395 username aminsaeedi 74395 unique_id port 74395 terminate_cause User-Request 74395 bytes_out 220802 74395 bytes_in 1851685 74395 station_ip 31.56.155.24 74395 port 15728690 74395 nas_port_type Virtual 74015 port 20 74015 unique_id port 74015 remote_ip 10.8.1.14 74375 station_ip 5.120.128.15 74375 port 24 74375 unique_id port 74375 remote_ip 10.8.1.10 74378 username mahdi 74378 unique_id port 74378 terminate_cause Lost-Carrier 74378 bytes_out 846154 74378 bytes_in 10645519 74378 station_ip 5.119.22.103 74378 port 15728680 74378 nas_port_type Virtual 74378 remote_ip 5.5.5.235 81111 terminate_cause User-Request 81111 bytes_out 233137 81111 bytes_in 4162612 81111 station_ip 5.119.44.237 81111 port 15728707 81111 nas_port_type Virtual 81111 remote_ip 5.5.5.215 81119 username asadi 81119 unique_id port 74382 username aminvpn 74382 mac 74382 bytes_out 0 74382 bytes_in 0 74382 station_ip 5.120.128.15 74382 port 8 74382 unique_id port 74382 remote_ip 10.8.0.6 74383 username aminvpn 74383 mac 74383 bytes_out 0 74383 bytes_in 0 74383 station_ip 5.120.128.15 74383 port 8 74383 unique_id port 74383 remote_ip 10.8.0.6 74389 username amin.insta15 74389 unique_id port 74389 terminate_cause Lost-Carrier 74389 bytes_out 11675306 74389 bytes_in 425647553 74389 station_ip 5.233.71.96 74389 port 15728675 74389 nas_port_type Virtual 74389 remote_ip 5.5.5.238 74393 username amin.insta13 74393 unique_id port 74393 terminate_cause User-Request 74393 bytes_out 229775 74393 bytes_in 3188336 74393 station_ip 37.129.125.97 74393 port 15728689 74393 nas_port_type Virtual 74393 remote_ip 5.5.5.243 74394 username mobina 74394 unique_id port 74394 terminate_cause User-Request 74394 bytes_out 25019834 74394 bytes_in 592615843 74394 station_ip 80.191.144.71 74394 port 15728661 74394 nas_port_type Virtual 74394 remote_ip 5.5.5.252 81119 terminate_cause User-Request 81119 bytes_out 16241 81119 bytes_in 70791 81119 station_ip 83.122.150.244 81119 port 15728719 81119 nas_port_type Virtual 81119 remote_ip 5.5.5.212 81126 username asadi 81126 unique_id port 74398 username alinezhad 74398 unique_id port 74398 terminate_cause User-Request 74398 bytes_out 713427 74398 bytes_in 11420525 74398 station_ip 5.202.27.41 74398 port 15728693 74398 nas_port_type Virtual 74398 remote_ip 5.5.5.249 74401 username amin.insta15 74401 unique_id port 74401 terminate_cause User-Request 74401 bytes_out 132382 74401 bytes_in 283441 74401 station_ip 83.122.14.141 74401 port 15728696 74401 nas_port_type Virtual 74401 remote_ip 5.5.5.230 74405 username amin.insta01 74405 unique_id port 74405 terminate_cause Lost-Carrier 74405 bytes_out 2340743 74405 bytes_in 59818758 74405 station_ip 5.119.97.228 74405 port 15728698 74405 nas_port_type Virtual 74405 remote_ip 5.5.5.229 74407 username aminvpn 74407 unique_id port 74407 terminate_cause User-Request 74407 bytes_out 139648 74407 bytes_in 826120 74407 station_ip 5.233.65.48 74407 port 15728706 74407 nas_port_type Virtual 74407 remote_ip 5.5.5.239 74410 username amin.insta13 74410 unique_id port 74410 terminate_cause User-Request 74410 bytes_out 136099 74410 bytes_in 403349 74410 station_ip 83.123.63.117 74410 port 15728711 74410 nas_port_type Virtual 74410 remote_ip 5.5.5.225 74414 username aminvpn 74414 unique_id port 74414 terminate_cause User-Request 74414 bytes_out 0 74414 bytes_in 0 74414 station_ip 5.233.65.48 74414 port 15728713 74414 nas_port_type Virtual 74414 remote_ip 5.5.5.224 74416 username tahani 74416 unique_id port 74416 terminate_cause User-Request 74416 bytes_out 78337 74416 bytes_in 549932 74416 station_ip 83.122.10.170 74416 port 15728715 74416 nas_port_type Virtual 74416 remote_ip 5.5.5.232 74417 username amin.insta21 74417 unique_id port 74417 terminate_cause User-Request 74417 bytes_out 3599091 74417 bytes_in 29886086 74016 username alirezazamani 74016 mac 74016 bytes_out 0 74016 bytes_in 0 74016 station_ip 5.119.70.41 74016 port 20 74016 unique_id port 74016 remote_ip 10.8.1.14 74017 username alirezazamani 74017 mac 74017 bytes_out 0 74017 bytes_in 0 74017 station_ip 5.119.70.41 74017 port 20 74017 unique_id port 74017 remote_ip 10.8.1.14 74020 username alinezhad 74020 unique_id port 74020 terminate_cause User-Request 74020 bytes_out 0 74020 bytes_in 0 74020 station_ip 5.202.61.212 74020 port 15728815 74020 nas_port_type Virtual 74020 remote_ip 5.5.5.209 74032 username alirezazamani 74032 mac 74032 bytes_out 0 74032 bytes_in 0 74032 station_ip 5.119.70.41 74032 port 4 74032 unique_id port 74032 remote_ip 10.8.0.14 74033 username alirezazamani 74033 mac 74033 bytes_out 0 74033 bytes_in 0 74033 station_ip 5.119.70.41 74033 port 4 74033 unique_id port 74033 remote_ip 10.8.0.14 74034 username alirezazamani 74034 mac 74034 bytes_out 0 74034 bytes_in 0 74034 station_ip 5.119.70.41 74034 port 4 74034 unique_id port 74034 remote_ip 10.8.0.14 74035 username alirezazamani 74035 mac 74035 bytes_out 0 74035 bytes_in 0 74035 station_ip 5.119.70.41 74035 port 4 74035 unique_id port 74035 remote_ip 10.8.0.14 74042 username golmahammad 74042 unique_id port 74042 terminate_cause User-Request 74042 bytes_out 242276 74042 bytes_in 5287758 74042 station_ip 37.129.23.127 74042 port 15728818 74042 nas_port_type Virtual 74042 remote_ip 5.5.5.212 74044 username alirezazamani 74044 mac 74044 bytes_out 64096 74044 bytes_in 118616 74044 station_ip 5.119.70.41 74044 port 4 74044 unique_id port 74044 remote_ip 10.8.0.14 74045 username alirezazamani 74045 mac 74045 bytes_out 0 74045 bytes_in 0 74045 station_ip 5.119.70.41 74045 port 4 74045 unique_id port 74045 remote_ip 10.8.0.14 74050 username alirezazamani 74050 mac 74050 bytes_out 0 74050 bytes_in 0 74050 station_ip 5.119.70.41 74050 port 4 74050 unique_id port 74050 remote_ip 10.8.0.14 74052 username alirezazamani 74052 mac 74052 bytes_out 0 74052 bytes_in 0 74052 station_ip 5.119.70.41 74052 port 4 74052 unique_id port 74052 remote_ip 10.8.0.14 74058 username alirezazamani 74058 mac 74058 bytes_out 0 74058 bytes_in 0 74058 station_ip 5.119.70.41 74058 port 4 74058 unique_id port 74058 remote_ip 10.8.0.14 74060 username alirezazamani 74060 mac 74060 bytes_out 0 74060 bytes_in 0 74060 station_ip 5.119.70.41 74060 port 4 74060 unique_id port 74060 remote_ip 10.8.0.14 74063 username alirezazamani 74063 mac 74063 bytes_out 0 74063 bytes_in 0 74063 station_ip 5.119.70.41 74063 port 20 74063 unique_id port 74063 remote_ip 10.8.1.14 74073 username alirezazamani 74073 mac 74073 bytes_out 1636 74073 bytes_in 4983 74073 station_ip 5.119.70.41 74073 port 4 74073 unique_id port 74073 remote_ip 10.8.0.14 74074 username alirezazamani 74074 mac 74074 bytes_out 0 74074 bytes_in 0 74074 station_ip 5.119.70.41 74074 port 20 74074 unique_id port 74074 remote_ip 10.8.1.14 74075 username alirezazamani 74075 mac 74075 bytes_out 0 74075 bytes_in 0 74075 station_ip 5.119.70.41 74075 port 4 74075 unique_id port 74075 remote_ip 10.8.0.14 74081 username alirezazamani 74081 mac 74081 bytes_out 0 74081 bytes_in 0 74081 station_ip 5.119.70.41 74081 port 20 74081 unique_id port 74081 remote_ip 10.8.1.14 74088 username alirezazamani 74088 mac 74018 username alirezazamani 74018 mac 74018 bytes_out 0 74018 bytes_in 0 74018 station_ip 5.119.70.41 74018 port 20 74018 unique_id port 74018 remote_ip 10.8.1.14 74023 username alirezazamani 74023 mac 74023 bytes_out 0 74023 bytes_in 0 74023 station_ip 5.119.70.41 74023 port 4 74023 unique_id port 74023 remote_ip 10.8.0.14 74024 username alirezazamani 74024 mac 74024 bytes_out 0 74024 bytes_in 0 74024 station_ip 5.119.70.41 74024 port 4 74024 unique_id port 74024 remote_ip 10.8.0.14 74025 username alirezazamani 74025 mac 74025 bytes_out 0 74025 bytes_in 0 74025 station_ip 5.119.70.41 74025 port 4 74025 unique_id port 74025 remote_ip 10.8.0.14 74026 username alirezazamani 74026 mac 74026 bytes_out 0 74026 bytes_in 0 74026 station_ip 5.119.70.41 74026 port 4 74026 unique_id port 74026 remote_ip 10.8.0.14 74027 username alirezazamani 74027 mac 74027 bytes_out 0 74027 bytes_in 0 74027 station_ip 5.119.70.41 74027 port 4 74027 unique_id port 74027 remote_ip 10.8.0.14 74029 username alirezazamani 74029 mac 74029 bytes_out 0 74029 bytes_in 0 74029 station_ip 5.119.70.41 74029 port 4 74029 unique_id port 74029 remote_ip 10.8.0.14 74030 username alirezazamani 74030 mac 74030 bytes_out 0 74030 bytes_in 0 74030 station_ip 5.119.70.41 74030 port 4 74030 unique_id port 74030 remote_ip 10.8.0.14 74036 username alirezazamani 74036 mac 74036 bytes_out 0 74036 bytes_in 0 74036 station_ip 5.119.70.41 74036 port 4 74036 unique_id port 74036 remote_ip 10.8.0.14 74039 username ahmadi 74039 unique_id port 74039 terminate_cause User-Request 74039 bytes_out 176402 74039 bytes_in 1287666 74039 station_ip 37.129.71.108 74039 port 15728817 74039 nas_port_type Virtual 74039 remote_ip 5.5.5.214 74040 username alirezazamani 74040 mac 74040 bytes_out 0 74040 bytes_in 0 74040 station_ip 5.119.70.41 74040 port 4 74040 unique_id port 74040 remote_ip 10.8.0.14 74043 username golmahammad 74043 unique_id port 74043 terminate_cause User-Request 74043 bytes_out 177657 74043 bytes_in 2392812 74043 station_ip 37.129.23.127 74043 port 15728819 74043 nas_port_type Virtual 74043 remote_ip 5.5.5.212 74046 username alirezazamani 74046 mac 74046 bytes_out 0 74046 bytes_in 0 74046 station_ip 5.119.70.41 74046 port 4 74046 unique_id port 74046 remote_ip 10.8.0.14 74047 username alirezazamani 74047 mac 74047 bytes_out 0 74047 bytes_in 0 74047 station_ip 5.119.70.41 74047 port 4 74047 unique_id port 74047 remote_ip 10.8.0.14 74048 username alirezazamani 74048 mac 74048 bytes_out 0 74048 bytes_in 0 74048 station_ip 5.119.70.41 74048 port 4 74048 unique_id port 74048 remote_ip 10.8.0.14 74051 username alirezazamani 74051 mac 74051 bytes_out 0 74051 bytes_in 0 74051 station_ip 5.119.70.41 74051 port 4 74051 unique_id port 74051 remote_ip 10.8.0.14 74053 username alirezazamani 74053 mac 74053 bytes_out 0 74053 bytes_in 0 74053 station_ip 5.119.70.41 74053 port 4 74053 unique_id port 74053 remote_ip 10.8.0.14 74055 username golmahammad 74055 unique_id port 74055 terminate_cause User-Request 74055 bytes_out 204379 74055 bytes_in 5022360 74055 station_ip 37.129.23.127 74055 port 15728821 74055 nas_port_type Virtual 74055 remote_ip 5.5.5.212 74056 username alirezazamani 74056 mac 74056 bytes_out 0 74056 bytes_in 0 74056 station_ip 5.119.70.41 74056 port 4 74056 unique_id port 74056 remote_ip 10.8.0.14 74019 username alirezazamani 74019 mac 74019 bytes_out 0 74019 bytes_in 0 74019 station_ip 5.119.70.41 74019 port 20 74019 unique_id port 74019 remote_ip 10.8.1.14 74021 username alirezazamani 74021 mac 74021 bytes_out 0 74021 bytes_in 0 74021 station_ip 5.119.70.41 74021 port 20 74021 unique_id port 74021 remote_ip 10.8.1.14 74022 username alirezazamani 74022 mac 74022 bytes_out 0 74022 bytes_in 0 74022 station_ip 5.119.70.41 74022 port 4 74022 unique_id port 74022 remote_ip 10.8.0.14 74028 username alirezazamani 74028 mac 74028 bytes_out 0 74028 bytes_in 0 74028 station_ip 5.119.70.41 74028 port 4 74028 unique_id port 74028 remote_ip 10.8.0.14 74031 username alirezazamani 74031 mac 74031 bytes_out 0 74031 bytes_in 0 74031 station_ip 5.119.70.41 74031 port 4 74031 unique_id port 74031 remote_ip 10.8.0.14 74037 username alirezazamani 74037 mac 74037 bytes_out 0 74037 bytes_in 0 74037 station_ip 5.119.70.41 74037 port 4 74037 unique_id port 74037 remote_ip 10.8.0.14 74038 username alirezazamani 74038 mac 74038 bytes_out 0 74038 bytes_in 0 74038 station_ip 5.119.70.41 74038 port 4 74038 unique_id port 74038 remote_ip 10.8.0.14 74041 username alirezazamani 74041 mac 74041 bytes_out 0 74041 bytes_in 0 74041 station_ip 5.119.70.41 74041 port 4 74041 unique_id port 74041 remote_ip 10.8.0.14 74049 username alirezazamani 74049 mac 74049 bytes_out 0 74049 bytes_in 0 74049 station_ip 5.119.70.41 74049 port 4 74049 unique_id port 74049 remote_ip 10.8.0.14 74054 username alirezazamani 74054 mac 74054 bytes_out 0 74054 bytes_in 0 74054 station_ip 5.119.70.41 74054 port 4 74054 unique_id port 74054 remote_ip 10.8.0.14 74057 username alirezazamani 74057 mac 74057 bytes_out 0 74057 bytes_in 0 74057 station_ip 5.119.70.41 74057 port 4 74057 unique_id port 74057 remote_ip 10.8.0.14 74059 username alirezazamani 74059 mac 74059 bytes_out 0 74059 bytes_in 0 74059 station_ip 5.119.70.41 74059 port 4 74059 unique_id port 74059 remote_ip 10.8.0.14 74062 username mobina 74062 unique_id port 74062 terminate_cause Lost-Carrier 74062 bytes_out 1280806 74062 bytes_in 22618315 74062 station_ip 5.123.249.177 74062 port 15728820 74062 nas_port_type Virtual 74062 remote_ip 5.5.5.208 74066 username alirezazamani 74066 mac 74066 bytes_out 0 74066 bytes_in 0 74066 station_ip 5.119.70.41 74066 port 20 74066 unique_id port 74066 remote_ip 10.8.1.14 74068 username alirezazamani 74068 mac 74068 bytes_out 0 74068 bytes_in 0 74068 station_ip 5.119.70.41 74068 port 20 74068 unique_id port 74068 remote_ip 10.8.1.14 74069 username alirezazamani 74069 mac 74069 bytes_out 0 74069 bytes_in 0 74069 station_ip 5.119.70.41 74069 port 4 74069 unique_id port 74069 remote_ip 10.8.0.14 74070 username alirezazamani 74070 mac 74070 bytes_out 0 74070 bytes_in 0 74070 station_ip 5.119.70.41 74070 port 4 74070 unique_id port 74070 remote_ip 10.8.0.14 74071 username alirezazamani 74071 mac 74071 bytes_out 0 74071 bytes_in 0 74071 station_ip 5.119.70.41 74071 port 4 74071 unique_id port 74071 remote_ip 10.8.0.14 74076 username alirezazamani 74076 mac 74076 bytes_out 0 74076 bytes_in 0 74076 station_ip 5.119.70.41 74076 port 4 74076 unique_id port 74076 remote_ip 10.8.0.14 74077 username alirezazamani 74077 mac 74077 bytes_out 0 74077 bytes_in 0 74061 username alirezazamani 74061 mac 74061 bytes_out 0 74061 bytes_in 0 74061 station_ip 5.119.70.41 74061 port 4 74061 unique_id port 74061 remote_ip 10.8.0.14 74064 username alirezazamani 74064 mac 74064 bytes_out 0 74064 bytes_in 0 74064 station_ip 5.119.70.41 74064 port 20 74064 unique_id port 74064 remote_ip 10.8.1.14 74065 username alirezazamani 74065 mac 74065 bytes_out 0 74065 bytes_in 0 74065 station_ip 5.119.70.41 74065 port 20 74065 unique_id port 74065 remote_ip 10.8.1.14 74067 username alirezazamani 74067 mac 74067 bytes_out 0 74067 bytes_in 0 74067 station_ip 5.119.70.41 74067 port 20 74067 unique_id port 74067 remote_ip 10.8.1.14 74072 username alirezazamani 74072 mac 74072 bytes_out 0 74072 bytes_in 0 74072 station_ip 5.119.70.41 74072 port 4 74072 unique_id port 74072 remote_ip 10.8.0.14 74082 username alirezazamani 74082 mac 74082 bytes_out 0 74082 bytes_in 0 74082 station_ip 5.119.70.41 74082 port 20 74082 unique_id port 74082 remote_ip 10.8.1.14 74083 username alirezazamani 74083 mac 74083 bytes_out 0 74083 bytes_in 0 74083 station_ip 5.119.70.41 74083 port 20 74083 unique_id port 74083 remote_ip 10.8.1.14 74086 username alirezazamani 74086 mac 74086 bytes_out 0 74086 bytes_in 0 74086 station_ip 5.119.70.41 74086 port 20 74086 unique_id port 74086 remote_ip 10.8.1.14 74089 username alirezazamani 74089 mac 74089 bytes_out 0 74089 bytes_in 0 74089 station_ip 5.119.70.41 74089 port 20 74089 unique_id port 74089 remote_ip 10.8.1.14 74091 username reza 74091 unique_id port 74091 terminate_cause User-Request 74091 bytes_out 282803 74091 bytes_in 5058472 74091 station_ip 83.122.177.129 74091 port 15728823 74091 nas_port_type Virtual 74091 remote_ip 5.5.5.207 74092 username alirezazamani 74092 mac 74092 bytes_out 0 74092 bytes_in 0 74092 station_ip 5.119.70.41 74092 port 20 74092 unique_id port 74092 remote_ip 10.8.1.14 74093 username alirezazamani 74093 mac 74093 bytes_out 0 74093 bytes_in 0 74093 station_ip 5.119.70.41 74093 port 20 74093 unique_id port 74093 remote_ip 10.8.1.14 74094 username rashidi 74094 unique_id port 74094 terminate_cause User-Request 74094 bytes_out 12809172 74094 bytes_in 185875435 74094 station_ip 5.119.42.59 74094 port 15728816 74094 nas_port_type Virtual 74094 remote_ip 5.5.5.221 74096 username alirezazamani 74096 mac 74096 bytes_out 0 74096 bytes_in 0 74096 station_ip 5.119.70.41 74096 port 20 74096 unique_id port 74096 remote_ip 10.8.1.14 74099 username reza 74099 unique_id port 74099 terminate_cause User-Request 74099 bytes_out 82468 74099 bytes_in 1452293 74099 station_ip 83.122.177.129 74099 port 15728826 74099 nas_port_type Virtual 74099 remote_ip 5.5.5.207 74102 username alirezazamani 74102 mac 74102 bytes_out 0 74102 bytes_in 0 74102 station_ip 5.119.70.41 74102 port 20 74102 unique_id port 74102 remote_ip 10.8.1.14 74105 username alirezazamani 74105 mac 74105 bytes_out 0 74105 bytes_in 0 74105 station_ip 5.119.70.41 74105 port 20 74105 unique_id port 74105 remote_ip 10.8.1.14 74109 username alirezazamani 74109 mac 74109 bytes_out 0 74109 bytes_in 0 74109 station_ip 5.119.70.41 74109 port 4 74109 unique_id port 74109 remote_ip 10.8.0.14 74110 username alirezazamani 74110 mac 74110 bytes_out 0 74110 bytes_in 0 74110 station_ip 5.119.70.41 74110 port 4 74110 unique_id port 74110 remote_ip 10.8.0.14 74077 station_ip 5.119.70.41 74077 port 4 74077 unique_id port 74077 remote_ip 10.8.0.14 74078 username alirezazamani 74078 mac 74078 bytes_out 0 74078 bytes_in 0 74078 station_ip 5.119.70.41 74078 port 4 74078 unique_id port 74078 remote_ip 10.8.0.14 74079 username alirezazamani 74079 mac 74079 bytes_out 0 74079 bytes_in 0 74079 station_ip 5.119.70.41 74079 port 4 74079 unique_id port 74079 remote_ip 10.8.0.14 74080 username alirezazamani 74080 mac 74080 bytes_out 0 74080 bytes_in 0 74080 station_ip 5.119.70.41 74080 port 4 74080 unique_id port 74080 remote_ip 10.8.0.14 74084 username alirezazamani 74084 mac 74084 bytes_out 0 74084 bytes_in 0 74084 station_ip 5.119.70.41 74084 port 20 74084 unique_id port 74084 remote_ip 10.8.1.14 74085 username reza 74085 unique_id port 74085 terminate_cause User-Request 74085 bytes_out 18296 74085 bytes_in 147067 74085 station_ip 83.122.177.129 74085 port 15728822 74085 nas_port_type Virtual 74085 remote_ip 5.5.5.207 74087 username alirezazamani 74087 mac 74087 bytes_out 0 74087 bytes_in 0 74087 station_ip 5.119.70.41 74087 port 20 74087 unique_id port 74087 remote_ip 10.8.1.14 74090 username alirezazamani 74090 mac 74090 bytes_out 0 74090 bytes_in 0 74090 station_ip 5.119.70.41 74090 port 20 74090 unique_id port 74090 remote_ip 10.8.1.14 74097 username alirezazamani 74097 mac 74097 bytes_out 0 74097 bytes_in 0 74097 station_ip 5.119.70.41 74097 port 20 74097 unique_id port 74097 remote_ip 10.8.1.14 74098 username mobina 74098 unique_id port 74098 terminate_cause Lost-Carrier 74098 bytes_out 81672 74098 bytes_in 447528 74098 station_ip 5.123.141.204 74098 port 15728825 74098 nas_port_type Virtual 74098 remote_ip 5.5.5.205 74108 username alirezazamani 74108 mac 74108 bytes_out 0 74108 bytes_in 0 74108 station_ip 5.119.70.41 74108 port 20 74108 unique_id port 74108 remote_ip 10.8.1.14 74111 username alirezazamani 74111 mac 74111 bytes_out 0 74111 bytes_in 0 74111 station_ip 5.119.70.41 74111 port 4 74111 unique_id port 74111 remote_ip 10.8.0.14 74112 username tahani 74112 unique_id port 74112 terminate_cause User-Request 74112 bytes_out 70951 74112 bytes_in 496377 74112 station_ip 83.123.226.236 74112 port 15728832 74112 nas_port_type Virtual 74112 remote_ip 5.5.5.224 74115 username alirezazamani 74115 mac 74115 bytes_out 0 74115 bytes_in 0 74115 station_ip 5.119.70.41 74115 port 4 74115 unique_id port 74115 remote_ip 10.8.0.14 74118 username alirezazamani 74118 mac 74118 bytes_out 0 74118 bytes_in 0 74118 station_ip 5.119.70.41 74118 port 4 74118 unique_id port 74118 remote_ip 10.8.0.14 74119 username tahani 74119 unique_id port 74119 terminate_cause User-Request 74119 bytes_out 136958 74119 bytes_in 1201209 74119 station_ip 83.123.226.236 74119 port 15728836 74119 nas_port_type Virtual 74119 remote_ip 5.5.5.224 74123 username alirezazamani 74123 mac 74123 bytes_out 0 74123 bytes_in 0 74123 station_ip 5.119.70.41 74123 port 20 74123 unique_id port 74123 remote_ip 10.8.1.14 74125 username reza 74125 unique_id port 74125 terminate_cause User-Request 74125 bytes_out 75609 74125 bytes_in 330538 74125 station_ip 83.122.177.129 74125 port 15728839 74125 nas_port_type Virtual 74125 remote_ip 5.5.5.207 74133 username alirezazamani 74133 mac 74133 bytes_out 0 74133 bytes_in 0 74133 station_ip 5.119.70.41 74133 port 20 74133 unique_id port 74133 remote_ip 10.8.1.14 74088 bytes_out 0 74088 bytes_in 0 74088 station_ip 5.119.70.41 74088 port 20 74088 unique_id port 74088 remote_ip 10.8.1.14 74095 username alirezazamani 74095 mac 74095 bytes_out 0 74095 bytes_in 0 74095 station_ip 5.119.70.41 74095 port 20 74095 unique_id port 74095 remote_ip 10.8.1.14 74100 username alirezazamani 74100 mac 74100 bytes_out 0 74100 bytes_in 0 74100 station_ip 5.119.70.41 74100 port 20 74100 unique_id port 74100 remote_ip 10.8.1.14 74101 username alirezazamani 74101 mac 74101 bytes_out 0 74101 bytes_in 0 74101 station_ip 5.119.70.41 74101 port 20 74101 unique_id port 74101 remote_ip 10.8.1.14 74103 username reza 74103 unique_id port 74103 terminate_cause User-Request 74103 bytes_out 56712 74103 bytes_in 1122100 74103 station_ip 83.122.177.129 74103 port 15728827 74103 nas_port_type Virtual 74103 remote_ip 5.5.5.207 74104 username alirezazamani 74104 mac 74104 bytes_out 0 74104 bytes_in 0 74104 station_ip 5.119.70.41 74104 port 20 74104 unique_id port 74104 remote_ip 10.8.1.14 74106 username amin.insta01 74106 unique_id port 74106 terminate_cause Lost-Carrier 74106 bytes_out 923217 74106 bytes_in 18030696 74106 station_ip 5.120.93.130 74106 port 15728824 74106 nas_port_type Virtual 74106 remote_ip 5.5.5.206 74107 username reza 74107 unique_id port 74107 terminate_cause User-Request 74107 bytes_out 899764 74107 bytes_in 1389315 74107 station_ip 83.122.177.129 74107 port 15728829 74107 nas_port_type Virtual 74107 remote_ip 5.5.5.207 74116 username tahani 74116 unique_id port 74116 terminate_cause User-Request 74116 bytes_out 161492 74116 bytes_in 1310588 74116 station_ip 83.123.226.236 74116 port 15728833 74116 nas_port_type Virtual 74116 remote_ip 5.5.5.224 74121 username mobina 74121 unique_id port 74121 terminate_cause Lost-Carrier 74121 bytes_out 573534 74121 bytes_in 17050231 74121 station_ip 5.123.110.122 74121 port 15728830 74121 nas_port_type Virtual 74121 remote_ip 5.5.5.203 81112 unique_id port 81112 terminate_cause User-Request 81112 bytes_out 48063 81112 bytes_in 281070 81112 station_ip 113.203.49.19 81112 port 15728713 81112 nas_port_type Virtual 81112 remote_ip 5.5.5.254 81115 username asadi 74126 username alirezazamani 74126 mac 74126 bytes_out 0 74126 bytes_in 0 74126 station_ip 5.119.70.41 74126 port 4 74126 unique_id port 74126 remote_ip 10.8.0.14 74127 username alirezazamani 74127 mac 74127 bytes_out 0 74127 bytes_in 0 74127 station_ip 5.119.70.41 74127 port 4 74127 unique_id port 74127 remote_ip 10.8.0.14 74128 username amin.insta01 74128 unique_id port 74128 terminate_cause User-Request 74128 bytes_out 0 74128 bytes_in 0 74128 station_ip 5.120.128.15 74128 port 15728846 74128 nas_port_type Virtual 74128 remote_ip 5.5.5.202 74132 username reza 74132 unique_id port 74132 terminate_cause User-Request 74132 bytes_out 68110 74132 bytes_in 221818 74132 station_ip 83.122.177.129 74132 port 15728845 74132 nas_port_type Virtual 74132 remote_ip 5.5.5.207 74134 username reza 74134 unique_id port 74134 terminate_cause User-Request 74134 bytes_out 39397 74134 bytes_in 481590 74134 station_ip 83.122.177.129 74134 port 15728848 74134 nas_port_type Virtual 74134 remote_ip 5.5.5.207 74139 username alirezazamani 74139 mac 74139 bytes_out 297042 74139 bytes_in 424436 74139 station_ip 5.119.70.41 74139 port 20 74139 unique_id port 74139 remote_ip 10.8.1.14 74144 username alirezazamani 74144 mac 74144 bytes_out 0 74144 bytes_in 0 74144 station_ip 5.119.70.41 74144 port 20 81115 unique_id port 74113 username alirezazamani 74113 mac 74113 bytes_out 0 74113 bytes_in 0 74113 station_ip 5.119.70.41 74113 port 4 74113 unique_id port 74113 remote_ip 10.8.0.14 74114 username alirezazamani 74114 mac 74114 bytes_out 0 74114 bytes_in 0 74114 station_ip 5.119.70.41 74114 port 4 74114 unique_id port 74114 remote_ip 10.8.0.14 74117 username alirezazamani 74117 mac 74117 bytes_out 0 74117 bytes_in 0 74117 station_ip 5.119.70.41 74117 port 4 74117 unique_id port 74117 remote_ip 10.8.0.14 74120 username reza 74120 unique_id port 74120 terminate_cause User-Request 74120 bytes_out 1170004 74120 bytes_in 2478828 74120 station_ip 83.122.177.129 74120 port 15728831 74120 nas_port_type Virtual 74120 remote_ip 5.5.5.207 81113 unique_id port 81113 terminate_cause User-Request 81113 bytes_out 18179 81113 bytes_in 66487 81113 station_ip 113.203.49.19 81113 port 15728714 81113 nas_port_type Virtual 81113 remote_ip 5.5.5.254 81118 username asadi 74129 username alirezazamani 74129 mac 74129 bytes_out 0 74129 bytes_in 0 74129 station_ip 5.119.70.41 74129 port 4 74129 unique_id port 74129 remote_ip 10.8.0.14 74130 username alirezazamani 74130 mac 74130 bytes_out 0 74130 bytes_in 0 74130 station_ip 5.119.70.41 74130 port 4 74130 unique_id port 74130 remote_ip 10.8.0.14 74131 username alirezazamani 74131 mac 74131 bytes_out 0 74131 bytes_in 0 74131 station_ip 5.119.70.41 74131 port 4 74131 unique_id port 74131 remote_ip 10.8.0.14 74137 username alirezazamani 74137 mac 74137 bytes_out 0 74137 bytes_in 0 74137 station_ip 5.119.70.41 74137 port 20 74137 unique_id port 74137 remote_ip 10.8.1.14 74140 username alirezazamani 74140 mac 74140 bytes_out 0 74140 bytes_in 0 74140 station_ip 5.119.70.41 74140 port 20 74140 unique_id port 74140 remote_ip 10.8.1.14 74141 username alirezazamani 74141 mac 74141 bytes_out 0 74141 bytes_in 0 74141 station_ip 5.119.70.41 74141 port 20 74141 unique_id port 74141 remote_ip 10.8.1.14 74142 username alirezazamani 74142 mac 74142 bytes_out 69092 74142 bytes_in 197767 74142 station_ip 5.119.70.41 74142 port 20 74142 unique_id port 74142 remote_ip 10.8.1.14 74146 username alirezazamani 74146 kill_reason Maximum check online fails reached 74146 mac 74146 bytes_out 0 74146 bytes_in 0 74146 station_ip 5.119.70.41 74146 port 20 74146 unique_id port 74158 username alirezazamani 74158 mac 74158 bytes_out 0 74158 bytes_in 0 74158 station_ip 5.119.70.41 74158 port 4 74158 unique_id port 74158 remote_ip 10.8.0.14 74159 username alirezazamani 74159 mac 74159 bytes_out 0 74159 bytes_in 0 74159 station_ip 5.119.70.41 74159 port 4 74159 unique_id port 74159 remote_ip 10.8.0.14 74167 username alirezazamani 74167 mac 74167 bytes_out 0 74167 bytes_in 0 74167 station_ip 5.119.70.41 74167 port 4 74167 unique_id port 74167 remote_ip 10.8.0.14 74168 username alirezazamani 74168 mac 74168 bytes_out 0 74168 bytes_in 0 74168 station_ip 5.119.70.41 74168 port 4 74168 unique_id port 74168 remote_ip 10.8.0.14 74171 username alirezazamani 74171 mac 74171 bytes_out 0 74171 bytes_in 0 74171 station_ip 5.119.70.41 74171 port 4 74171 unique_id port 74171 remote_ip 10.8.0.14 74176 username alirezazamani 74176 mac 74176 bytes_out 0 74176 bytes_in 0 74176 station_ip 5.119.70.41 74176 port 4 74176 unique_id port 74176 remote_ip 10.8.0.14 74177 username alirezazamani 74135 username alirezazamani 74135 mac 74135 bytes_out 0 74135 bytes_in 0 74135 station_ip 5.119.70.41 74135 port 20 74135 unique_id port 74135 remote_ip 10.8.1.14 74136 username alirezazamani 74136 mac 74136 bytes_out 0 74136 bytes_in 0 74136 station_ip 5.119.70.41 74136 port 20 74136 unique_id port 74136 remote_ip 10.8.1.14 74138 username alirezazamani 74138 mac 74138 bytes_out 0 74138 bytes_in 0 74138 station_ip 5.119.70.41 74138 port 20 74138 unique_id port 74138 remote_ip 10.8.1.14 74143 username alirezazamani 74143 mac 74143 bytes_out 0 74143 bytes_in 0 74143 station_ip 5.119.70.41 74143 port 20 74143 unique_id port 74143 remote_ip 10.8.1.14 74148 username alinezhad 74148 unique_id port 74148 terminate_cause User-Request 74148 bytes_out 0 74148 bytes_in 0 74148 station_ip 5.202.28.229 74148 port 15728855 74148 nas_port_type Virtual 74148 remote_ip 5.5.5.254 74149 username alirezazamani 74149 mac 74149 bytes_out 0 74149 bytes_in 0 74149 station_ip 5.119.70.41 74149 port 21 74149 unique_id port 74149 remote_ip 10.8.1.14 74155 username alirezazamani 74155 mac 74155 bytes_out 0 74155 bytes_in 0 74155 station_ip 5.119.70.41 74155 port 4 74155 unique_id port 74155 remote_ip 10.8.0.14 74160 username alirezazamani 74160 mac 74160 bytes_out 0 74160 bytes_in 0 74160 station_ip 5.119.70.41 74160 port 4 74160 unique_id port 74160 remote_ip 10.8.0.14 74164 username alirezazamani 74164 mac 74164 bytes_out 0 74164 bytes_in 0 74164 station_ip 5.119.70.41 74164 port 4 74164 unique_id port 74164 remote_ip 10.8.0.14 74165 username alirezazamani 74165 mac 74165 bytes_out 0 74165 bytes_in 0 74165 station_ip 5.119.70.41 74165 port 4 74165 unique_id port 74165 remote_ip 10.8.0.14 74169 username alirezazamani 74169 mac 74169 bytes_out 0 74169 bytes_in 0 74169 station_ip 5.119.70.41 74169 port 4 74169 unique_id port 74169 remote_ip 10.8.0.14 74170 username alirezazamani 74170 mac 74170 bytes_out 0 74170 bytes_in 0 74170 station_ip 5.119.70.41 74170 port 4 74170 unique_id port 74170 remote_ip 10.8.0.14 74173 username alirezazamani 74173 mac 74173 bytes_out 0 74173 bytes_in 0 74173 station_ip 5.119.70.41 74173 port 4 74173 unique_id port 74173 remote_ip 10.8.0.14 74184 username mahdi 74184 unique_id port 74184 terminate_cause Lost-Carrier 74184 bytes_out 3030830 74184 bytes_in 79927455 74184 station_ip 5.119.22.103 74184 port 15728838 74184 nas_port_type Virtual 74184 remote_ip 5.5.5.227 74185 username alirezazamani 74185 mac 74185 bytes_out 0 74185 bytes_in 0 74185 station_ip 5.119.70.41 74185 port 4 74185 unique_id port 74185 remote_ip 10.8.0.14 74187 username alirezazamani 74187 mac 74187 bytes_out 0 74187 bytes_in 0 74187 station_ip 5.119.70.41 74187 port 4 74187 unique_id port 74187 remote_ip 10.8.0.14 74188 username alirezazamani 74188 mac 74188 bytes_out 0 74188 bytes_in 0 74188 station_ip 5.119.70.41 74188 port 4 74188 unique_id port 74188 remote_ip 10.8.0.14 74189 username alirezazamani 74189 mac 74189 bytes_out 0 74189 bytes_in 0 74189 station_ip 5.119.70.41 74189 port 4 74189 unique_id port 74189 remote_ip 10.8.0.14 74192 username alirezazamani 74192 mac 74192 bytes_out 0 74192 bytes_in 0 74192 station_ip 5.119.70.41 74192 port 4 74192 unique_id port 74192 remote_ip 10.8.0.14 74195 username alirezazamani 74195 mac 74195 bytes_out 0 74144 unique_id port 74144 remote_ip 10.8.1.14 74145 username alirezazamani 74145 mac 74145 bytes_out 0 74145 bytes_in 0 74145 station_ip 5.119.70.41 74145 port 20 74145 unique_id port 74145 remote_ip 10.8.1.14 74147 username reza 74147 unique_id port 74147 terminate_cause Lost-Carrier 74147 bytes_out 87777 74147 bytes_in 599961 74147 station_ip 83.122.177.129 74147 port 15728854 74147 nas_port_type Virtual 74147 remote_ip 5.5.5.207 74150 username alirezazamani 74150 mac 74150 bytes_out 0 74150 bytes_in 0 74150 station_ip 5.119.70.41 74150 port 21 74150 unique_id port 74150 remote_ip 10.8.1.14 74151 username alirezazamani 74151 mac 74151 bytes_out 0 74151 bytes_in 0 74151 station_ip 5.119.70.41 74151 port 4 74151 unique_id port 74151 remote_ip 10.8.0.14 74152 username alirezazamani 74152 mac 74152 bytes_out 0 74152 bytes_in 0 74152 station_ip 5.119.70.41 74152 port 4 74152 unique_id port 74152 remote_ip 10.8.0.14 74153 username alirezazamani 74153 mac 74153 bytes_out 0 74153 bytes_in 0 74153 station_ip 5.119.70.41 74153 port 4 74153 unique_id port 74153 remote_ip 10.8.0.14 74154 username alirezazamani 74154 mac 74154 bytes_out 0 74154 bytes_in 0 74154 station_ip 5.119.70.41 74154 port 4 74154 unique_id port 74154 remote_ip 10.8.0.14 74156 username alirezazamani 74156 mac 74156 bytes_out 0 74156 bytes_in 0 74156 station_ip 5.119.70.41 74156 port 4 74156 unique_id port 74156 remote_ip 10.8.0.14 74157 username alirezazamani 74157 mac 74157 bytes_out 0 74157 bytes_in 0 74157 station_ip 5.119.70.41 74157 port 4 74157 unique_id port 74157 remote_ip 10.8.0.14 74161 username alirezazamani 74161 mac 74161 bytes_out 0 74161 bytes_in 0 74161 station_ip 5.119.70.41 74161 port 4 74161 unique_id port 74161 remote_ip 10.8.0.14 74162 username alirezazamani 74162 mac 74162 bytes_out 0 74162 bytes_in 0 74162 station_ip 5.119.70.41 74162 port 4 74162 unique_id port 74162 remote_ip 10.8.0.14 74163 username alirezazamani 74163 mac 74163 bytes_out 0 74163 bytes_in 0 74163 station_ip 5.119.70.41 74163 port 4 74163 unique_id port 74163 remote_ip 10.8.0.14 74166 username alirezazamani 74166 mac 74166 bytes_out 0 74166 bytes_in 0 74166 station_ip 5.119.70.41 74166 port 4 74166 unique_id port 74166 remote_ip 10.8.0.14 74172 username alinezhad 74172 unique_id port 74172 terminate_cause User-Request 74172 bytes_out 0 74172 bytes_in 0 74172 station_ip 113.203.27.138 74172 port 15728856 74172 nas_port_type Virtual 74172 remote_ip 5.5.5.199 74174 username alirezazamani 74174 mac 74174 bytes_out 0 74174 bytes_in 0 74174 station_ip 5.119.70.41 74174 port 4 74174 unique_id port 74174 remote_ip 10.8.0.14 74175 username alirezazamani 74175 mac 74175 bytes_out 0 74175 bytes_in 0 74175 station_ip 5.119.70.41 74175 port 4 74175 unique_id port 74175 remote_ip 10.8.0.14 74180 username alirezazamani 74180 mac 74180 bytes_out 0 74180 bytes_in 0 74180 station_ip 5.119.70.41 74180 port 4 74180 unique_id port 74180 remote_ip 10.8.0.14 74181 username alirezazamani 74181 mac 74181 bytes_out 0 74181 bytes_in 0 74181 station_ip 5.119.70.41 74181 port 4 74181 unique_id port 74181 remote_ip 10.8.0.14 74182 username alirezazamani 74182 mac 74182 bytes_out 0 74182 bytes_in 0 74182 station_ip 5.119.70.41 74182 port 4 74182 unique_id port 74182 remote_ip 10.8.0.14 74177 mac 74177 bytes_out 0 74177 bytes_in 0 74177 station_ip 5.119.70.41 74177 port 4 74177 unique_id port 74177 remote_ip 10.8.0.14 74178 username alirezazamani 74178 mac 74178 bytes_out 0 74178 bytes_in 0 74178 station_ip 5.119.70.41 74178 port 4 74178 unique_id port 74178 remote_ip 10.8.0.14 74179 username alirezazamani 74179 mac 74179 bytes_out 0 74179 bytes_in 0 74179 station_ip 5.119.70.41 74179 port 4 74179 unique_id port 74179 remote_ip 10.8.0.14 74191 username alirezazamani 74191 mac 74191 bytes_out 0 74191 bytes_in 0 74191 station_ip 5.119.70.41 74191 port 4 74191 unique_id port 74191 remote_ip 10.8.0.14 74199 username alirezazamani 74199 mac 74199 bytes_out 0 74199 bytes_in 0 74199 station_ip 5.120.64.61 74199 port 4 74199 unique_id port 74199 remote_ip 10.8.0.14 74202 username amin.insta21 74202 unique_id port 74202 terminate_cause User-Request 74202 bytes_out 3300075 74202 bytes_in 36832109 74202 station_ip 151.235.88.36 74202 port 15728853 74202 nas_port_type Virtual 74202 remote_ip 5.5.5.200 74205 username alirezazamani 74205 mac 74205 bytes_out 0 74205 bytes_in 0 74205 station_ip 5.120.64.61 74205 port 4 74205 unique_id port 74205 remote_ip 10.8.0.14 74206 username alirezazamani 74206 mac 74206 bytes_out 0 74206 bytes_in 0 74206 station_ip 5.120.64.61 74206 port 4 74206 unique_id port 74206 remote_ip 10.8.0.14 74207 username alirezazamani 74207 mac 74207 bytes_out 0 74207 bytes_in 0 74207 station_ip 5.120.64.61 74207 port 4 74207 unique_id port 74207 remote_ip 10.8.0.14 74208 username alirezazamani 74208 mac 74208 bytes_out 1636 74208 bytes_in 7691 74208 station_ip 5.120.64.61 74208 port 4 74208 unique_id port 74208 remote_ip 10.8.0.14 74214 username alirezazamani 74214 mac 74214 bytes_out 0 74214 bytes_in 0 74214 station_ip 5.120.64.61 74214 port 21 74214 unique_id port 74214 remote_ip 10.8.1.14 74220 username alirezazamani 74220 mac 74220 bytes_out 0 74220 bytes_in 0 74220 station_ip 5.120.64.61 74220 port 4 74220 unique_id port 74220 remote_ip 10.8.0.14 74221 username alirezazamani 74221 mac 74221 bytes_out 0 74221 bytes_in 0 74221 station_ip 5.120.64.61 74221 port 4 74221 unique_id port 74221 remote_ip 10.8.0.14 74222 username alirezazamani 74222 mac 74222 bytes_out 0 74222 bytes_in 0 74222 station_ip 5.120.64.61 74222 port 4 74222 unique_id port 74222 remote_ip 10.8.0.14 74223 username alirezazamani 74223 mac 74223 bytes_out 0 74223 bytes_in 0 74223 station_ip 5.120.64.61 74223 port 4 74223 unique_id port 74223 remote_ip 10.8.0.14 74225 username alirezazamani 74225 mac 74225 bytes_out 0 74225 bytes_in 0 74225 station_ip 5.120.64.61 74225 port 21 74225 unique_id port 74225 remote_ip 10.8.1.14 74232 username alirezazamani 74232 mac 74232 bytes_out 0 74232 bytes_in 0 74232 station_ip 5.120.64.61 74232 port 22 74232 unique_id port 74232 remote_ip 10.8.1.14 74237 username alirezazamani 74237 mac 74237 bytes_out 0 74237 bytes_in 0 74237 station_ip 5.120.64.61 74237 port 23 74237 unique_id port 74237 remote_ip 10.8.1.14 74239 username alirezazamani 74239 mac 74239 bytes_out 0 74239 bytes_in 0 74239 station_ip 5.120.64.61 74239 port 23 74239 unique_id port 74239 remote_ip 10.8.1.14 74244 username alirezazamani 74244 mac 74244 bytes_out 0 74244 bytes_in 0 74244 station_ip 5.120.64.61 74183 username alirezazamani 74183 mac 74183 bytes_out 0 74183 bytes_in 0 74183 station_ip 5.119.70.41 74183 port 4 74183 unique_id port 74183 remote_ip 10.8.0.14 74186 username alirezazamani 74186 mac 74186 bytes_out 0 74186 bytes_in 0 74186 station_ip 5.119.70.41 74186 port 4 74186 unique_id port 74186 remote_ip 10.8.0.14 81115 terminate_cause User-Request 81115 bytes_out 43784 81115 bytes_in 544286 81115 station_ip 113.203.49.19 81115 port 15728716 81115 nas_port_type Virtual 81115 remote_ip 5.5.5.254 81123 username asadi 81123 unique_id port 74193 username alirezazamani 74193 mac 74193 bytes_out 0 74193 bytes_in 0 74193 station_ip 5.119.70.41 74193 port 4 74193 unique_id port 74193 remote_ip 10.8.0.14 74194 username alirezazamani 74194 mac 74194 bytes_out 0 74194 bytes_in 0 74194 station_ip 5.119.70.41 74194 port 4 74194 unique_id port 74194 remote_ip 10.8.0.14 74201 username alirezazamani 74201 mac 74201 bytes_out 0 74201 bytes_in 0 74201 station_ip 5.120.64.61 74201 port 4 74201 unique_id port 74201 remote_ip 10.8.0.14 74204 username alirezazamani 74204 mac 74204 bytes_out 0 74204 bytes_in 0 74204 station_ip 5.120.64.61 74204 port 4 74204 unique_id port 74204 remote_ip 10.8.0.14 74209 username alirezazamani 74209 mac 74209 bytes_out 0 74209 bytes_in 0 74209 station_ip 5.120.64.61 74209 port 4 74209 unique_id port 74209 remote_ip 10.8.0.14 74211 username alirezazamani 74211 mac 74211 bytes_out 0 74211 bytes_in 0 74211 station_ip 5.120.64.61 74211 port 21 74211 unique_id port 74211 remote_ip 10.8.1.14 74213 username alirezazamani 74213 mac 74213 bytes_out 0 74213 bytes_in 0 74213 station_ip 5.120.64.61 74213 port 21 74213 unique_id port 74213 remote_ip 10.8.1.14 74217 username alirezazamani 74217 mac 74217 bytes_out 0 74217 bytes_in 0 74217 station_ip 5.120.64.61 74217 port 21 74217 unique_id port 74217 remote_ip 10.8.1.14 74218 username ahmad 74218 unique_id port 74218 terminate_cause User-Request 74218 bytes_out 234971 74218 bytes_in 1617122 74218 station_ip 86.57.43.8 74218 port 15728858 74218 nas_port_type Virtual 74218 remote_ip 5.5.5.239 74227 username alirezazamani 74227 mac 74227 bytes_out 0 74227 bytes_in 0 74227 station_ip 5.120.64.61 74227 port 21 74227 unique_id port 74227 remote_ip 10.8.1.14 74230 username amin.insta01 74230 unique_id port 74230 terminate_cause Lost-Carrier 74230 bytes_out 608046 74230 bytes_in 13104684 74230 station_ip 5.119.138.171 74230 port 15728860 74230 nas_port_type Virtual 74230 remote_ip 5.5.5.197 74234 username alirezazamani 74234 mac 74234 bytes_out 63339 74234 bytes_in 107072 74234 station_ip 5.120.64.61 74234 port 22 74234 unique_id port 74234 remote_ip 10.8.1.14 74250 username alirezazamani 74250 mac 74250 bytes_out 0 74250 bytes_in 0 74250 station_ip 5.120.64.61 74250 port 4 74250 unique_id port 74250 remote_ip 10.8.0.14 74254 username alirezazamani 74254 mac 74254 bytes_out 0 74254 bytes_in 0 74254 station_ip 5.120.64.61 74254 port 4 74254 unique_id port 74254 remote_ip 10.8.0.14 74255 username alirezazamani 74255 mac 74255 bytes_out 0 74255 bytes_in 0 74255 station_ip 5.120.64.61 74255 port 4 74255 unique_id port 74255 remote_ip 10.8.0.14 74260 username rashidi 74260 unique_id port 74260 terminate_cause Lost-Carrier 74260 bytes_out 14022877 74260 bytes_in 25001199 74260 station_ip 5.119.42.59 74260 port 15728857 74195 bytes_in 0 74195 station_ip 5.119.70.41 74195 port 4 74195 unique_id port 74195 remote_ip 10.8.0.14 74196 username alirezazamani 74196 mac 74196 bytes_out 0 74196 bytes_in 0 74196 station_ip 5.119.70.41 74196 port 4 74196 unique_id port 74196 remote_ip 10.8.0.14 74197 username alirezazamani 74197 mac 74197 bytes_out 0 74197 bytes_in 0 74197 station_ip 5.119.70.41 74197 port 4 74197 unique_id port 74197 remote_ip 10.8.0.14 74198 username alirezazamani 74198 mac 74198 bytes_out 0 74198 bytes_in 0 74198 station_ip 5.119.70.41 74198 port 4 74198 unique_id port 74198 remote_ip 10.8.0.14 74200 username alirezazamani 74200 mac 74200 bytes_out 0 74200 bytes_in 0 74200 station_ip 5.120.64.61 74200 port 4 74200 unique_id port 74200 remote_ip 10.8.0.14 74203 username alirezazamani 74203 mac 74203 bytes_out 49659 74203 bytes_in 62873 74203 station_ip 5.120.64.61 74203 port 4 74203 unique_id port 74203 remote_ip 10.8.0.14 74210 username alirezazamani 74210 mac 74210 bytes_out 0 74210 bytes_in 0 74210 station_ip 5.120.64.61 74210 port 4 74210 unique_id port 74210 remote_ip 10.8.0.14 74212 username alirezazamani 74212 mac 74212 bytes_out 1636 74212 bytes_in 4983 74212 station_ip 5.120.64.61 74212 port 4 74212 unique_id port 74212 remote_ip 10.8.0.14 74215 username alirezazamani 74215 mac 74215 bytes_out 0 74215 bytes_in 0 74215 station_ip 5.120.64.61 74215 port 21 74215 unique_id port 74215 remote_ip 10.8.1.14 74216 username alirezazamani 74216 mac 74216 bytes_out 0 74216 bytes_in 0 74216 station_ip 5.120.64.61 74216 port 21 74216 unique_id port 74216 remote_ip 10.8.1.14 74219 username alirezazamani 74219 unique_id port 74219 terminate_cause Lost-Carrier 74219 bytes_out 1057699 74219 bytes_in 26883890 74219 station_ip 5.119.37.203 74219 port 15728828 74219 nas_port_type Virtual 74219 remote_ip 5.5.5.204 74224 username alirezazamani 74224 mac 74224 bytes_out 1636 74224 bytes_in 5142 74224 station_ip 5.120.64.61 74224 port 4 74224 unique_id port 74224 remote_ip 10.8.0.14 74226 username alirezazamani 74226 mac 74226 bytes_out 0 74226 bytes_in 0 74226 station_ip 5.120.64.61 74226 port 21 74226 unique_id port 74226 remote_ip 10.8.1.14 74228 username alirezazamani 74228 unique_id port 74228 terminate_cause Lost-Carrier 74228 bytes_out 599379 74228 bytes_in 13079765 74228 station_ip 5.119.110.181 74228 port 15728859 74228 nas_port_type Virtual 74228 remote_ip 5.5.5.198 74229 username alirezazamani 74229 mac 74229 bytes_out 0 74229 bytes_in 0 74229 station_ip 5.120.64.61 74229 port 21 74229 unique_id port 74229 remote_ip 10.8.1.14 74231 username alirezazamani 74231 kill_reason Maximum check online fails reached 74231 mac 74231 bytes_out 0 74231 bytes_in 0 74231 station_ip 5.120.64.61 74231 port 21 74231 unique_id port 74233 username alirezazamani 74233 mac 74233 bytes_out 0 74233 bytes_in 0 74233 station_ip 5.120.64.61 74233 port 22 74233 unique_id port 74233 remote_ip 10.8.1.14 74235 username alirezazamani 74235 mac 74235 bytes_out 0 74235 bytes_in 0 74235 station_ip 5.120.64.61 74235 port 23 74235 unique_id port 74235 remote_ip 10.8.1.14 74236 username alirezazamani 74236 kill_reason Maximum check online fails reached 74236 mac 74236 bytes_out 0 74236 bytes_in 0 74236 station_ip 5.120.64.61 74236 port 22 74236 unique_id port 74238 username alirezazamani 74238 mac 74238 bytes_out 0 74238 bytes_in 0 74238 station_ip 5.120.64.61 74238 port 23 74238 unique_id port 74238 remote_ip 10.8.1.14 74240 username alirezazamani 74240 mac 74240 bytes_out 0 74240 bytes_in 0 74240 station_ip 5.120.64.61 74240 port 4 74240 unique_id port 74240 remote_ip 10.8.0.14 74241 username alirezazamani 74241 mac 74241 bytes_out 0 74241 bytes_in 0 74241 station_ip 5.120.64.61 74241 port 4 74241 unique_id port 74241 remote_ip 10.8.0.14 74242 username alirezazamani 74242 mac 74242 bytes_out 0 74242 bytes_in 0 74242 station_ip 5.120.64.61 74242 port 4 74242 unique_id port 74242 remote_ip 10.8.0.14 74243 username alirezazamani 74243 mac 74243 bytes_out 0 74243 bytes_in 0 74243 station_ip 5.120.64.61 74243 port 4 74243 unique_id port 74243 remote_ip 10.8.0.14 74247 username alirezazamani 74247 mac 74247 bytes_out 0 74247 bytes_in 0 74247 station_ip 5.120.64.61 74247 port 4 74247 unique_id port 74247 remote_ip 10.8.0.14 74249 username alirezazamani 74249 mac 74249 bytes_out 0 74249 bytes_in 0 74249 station_ip 5.120.64.61 74249 port 4 74249 unique_id port 74249 remote_ip 10.8.0.14 74252 username alinezhad 74252 unique_id port 74252 terminate_cause User-Request 74252 bytes_out 0 74252 bytes_in 0 74252 station_ip 37.129.134.214 74252 port 15728861 74252 nas_port_type Virtual 74252 remote_ip 5.5.5.196 74257 username alirezazamani 74257 mac 74257 bytes_out 0 74257 bytes_in 0 74257 station_ip 5.120.64.61 74257 port 4 74257 unique_id port 74257 remote_ip 10.8.0.14 74258 username alirezazamani 74258 mac 74258 bytes_out 0 74258 bytes_in 0 74258 station_ip 5.120.64.61 74258 port 4 74258 unique_id port 74258 remote_ip 10.8.0.14 74262 username alirezazamani 74262 mac 74262 bytes_out 0 74262 bytes_in 0 74262 station_ip 5.120.64.61 74262 port 23 74262 unique_id port 74262 remote_ip 10.8.1.14 74263 username alirezazamani 74263 mac 74263 bytes_out 0 74263 bytes_in 0 74263 station_ip 5.120.64.61 74263 port 23 74263 unique_id port 74263 remote_ip 10.8.1.14 74268 username alirezazamani 74268 mac 74268 bytes_out 0 74268 bytes_in 0 74268 station_ip 5.120.64.61 74268 port 4 74268 unique_id port 74268 remote_ip 10.8.0.14 74271 username alirezazamani 74271 mac 74271 bytes_out 0 74271 bytes_in 0 74271 station_ip 5.120.64.61 74271 port 4 74271 unique_id port 74271 remote_ip 10.8.0.14 74280 username alirezazamani 74280 mac 74280 bytes_out 0 74280 bytes_in 0 74280 station_ip 5.120.64.61 74280 port 4 74280 unique_id port 74280 remote_ip 10.8.0.14 74281 username alirezazamani 74281 mac 74281 bytes_out 0 74281 bytes_in 0 74281 station_ip 5.120.64.61 74281 port 23 74281 unique_id port 74281 remote_ip 10.8.1.14 74286 username alirezazamani 74286 mac 74286 bytes_out 0 74286 bytes_in 0 74286 station_ip 5.120.64.61 74286 port 4 74286 unique_id port 74286 remote_ip 10.8.0.14 74287 username alirezazamani 74287 mac 74287 bytes_out 0 74287 bytes_in 0 74287 station_ip 5.120.64.61 74287 port 4 74287 unique_id port 74287 remote_ip 10.8.0.14 74288 username alirezazamani 74288 mac 74288 bytes_out 0 74288 bytes_in 0 74288 station_ip 5.120.64.61 74288 port 4 74288 unique_id port 74288 remote_ip 10.8.0.14 74289 username alirezazamani 74289 mac 74289 bytes_out 1636 74289 bytes_in 5100 74289 station_ip 5.120.64.61 74289 port 4 74289 unique_id port 74244 port 4 74244 unique_id port 74244 remote_ip 10.8.0.14 74245 username alirezazamani 74245 mac 74245 bytes_out 0 74245 bytes_in 0 74245 station_ip 5.120.64.61 74245 port 4 74245 unique_id port 74245 remote_ip 10.8.0.14 74246 username alirezazamani 74246 mac 74246 bytes_out 0 74246 bytes_in 0 74246 station_ip 5.120.64.61 74246 port 4 74246 unique_id port 74246 remote_ip 10.8.0.14 74248 username alirezazamani 74248 mac 74248 bytes_out 0 74248 bytes_in 0 74248 station_ip 5.120.64.61 74248 port 4 74248 unique_id port 74248 remote_ip 10.8.0.14 74251 username alirezazamani 74251 mac 74251 bytes_out 0 74251 bytes_in 0 74251 station_ip 5.120.64.61 74251 port 4 74251 unique_id port 74251 remote_ip 10.8.0.14 74253 username alirezazamani 74253 mac 74253 bytes_out 0 74253 bytes_in 0 74253 station_ip 5.120.64.61 74253 port 4 74253 unique_id port 74253 remote_ip 10.8.0.14 74256 username alirezazamani 74256 mac 74256 bytes_out 0 74256 bytes_in 0 74256 station_ip 5.120.64.61 74256 port 4 74256 unique_id port 74256 remote_ip 10.8.0.14 74259 username alirezazamani 74259 mac 74259 bytes_out 0 74259 bytes_in 0 74259 station_ip 5.120.64.61 74259 port 4 74259 unique_id port 74259 remote_ip 10.8.0.14 74264 username alirezazamani 74264 mac 74264 bytes_out 0 74264 bytes_in 0 74264 station_ip 5.120.64.61 74264 port 23 74264 unique_id port 74264 remote_ip 10.8.1.14 74266 username alirezazamani 74266 mac 74266 bytes_out 0 74266 bytes_in 0 74266 station_ip 5.120.64.61 74266 port 23 74266 unique_id port 74266 remote_ip 10.8.1.14 74269 username alirezazamani 74269 mac 74269 bytes_out 0 74269 bytes_in 0 74269 station_ip 5.120.64.61 74269 port 4 74269 unique_id port 74269 remote_ip 10.8.0.14 74270 username alirezazamani 74270 mac 74270 bytes_out 0 74270 bytes_in 0 74270 station_ip 5.120.64.61 74270 port 4 74270 unique_id port 74270 remote_ip 10.8.0.14 74273 username alirezazamani 74273 mac 74273 bytes_out 0 74273 bytes_in 0 74273 station_ip 5.120.64.61 74273 port 4 74273 unique_id port 74273 remote_ip 10.8.0.14 74274 username alirezazamani 74274 mac 74274 bytes_out 0 74274 bytes_in 0 74274 station_ip 5.120.64.61 74274 port 4 74274 unique_id port 74274 remote_ip 10.8.0.14 74275 username alirezazamani 74275 mac 74275 bytes_out 0 74275 bytes_in 0 74275 station_ip 5.120.64.61 74275 port 4 74275 unique_id port 74275 remote_ip 10.8.0.14 74276 username alirezazamani 74276 mac 74276 bytes_out 0 74276 bytes_in 0 74276 station_ip 5.120.64.61 74276 port 4 74276 unique_id port 74276 remote_ip 10.8.0.14 74277 username alirezazamani 74277 mac 74277 bytes_out 0 74277 bytes_in 0 74277 station_ip 5.120.64.61 74277 port 4 74277 unique_id port 74277 remote_ip 10.8.0.14 74282 username alirezazamani 74282 mac 74282 bytes_out 0 74282 bytes_in 0 74282 station_ip 5.120.64.61 74282 port 23 74282 unique_id port 74282 remote_ip 10.8.1.14 74291 username alirezazamani 74291 mac 74291 bytes_out 0 74291 bytes_in 0 74291 station_ip 5.120.64.61 74291 port 4 74291 unique_id port 74291 remote_ip 10.8.0.14 74292 username alirezazamani 74292 mac 74292 bytes_out 0 74292 bytes_in 0 74292 station_ip 5.120.64.61 74292 port 4 74292 unique_id port 74292 remote_ip 10.8.0.14 74293 username alirezazamani 74293 mac 74293 bytes_out 0 74260 nas_port_type Virtual 74260 remote_ip 5.5.5.221 74261 username alirezazamani 74261 mac 74261 bytes_out 0 74261 bytes_in 0 74261 station_ip 5.120.64.61 74261 port 23 74261 unique_id port 74261 remote_ip 10.8.1.14 74265 username alirezazamani 74265 mac 74265 bytes_out 0 74265 bytes_in 0 74265 station_ip 5.120.64.61 74265 port 23 74265 unique_id port 74265 remote_ip 10.8.1.14 74267 username alirezazamani 74267 mac 74267 bytes_out 0 74267 bytes_in 0 74267 station_ip 5.120.64.61 74267 port 4 74267 unique_id port 74267 remote_ip 10.8.0.14 74272 username alirezazamani 74272 mac 74272 bytes_out 0 74272 bytes_in 0 74272 station_ip 5.120.64.61 74272 port 23 74272 unique_id port 74272 remote_ip 10.8.1.14 74278 username alirezazamani 74278 mac 74278 bytes_out 0 74278 bytes_in 0 74278 station_ip 5.120.64.61 74278 port 4 74278 unique_id port 74278 remote_ip 10.8.0.14 74279 username alirezazamani 74279 mac 74279 bytes_out 0 74279 bytes_in 0 74279 station_ip 5.120.64.61 74279 port 4 74279 unique_id port 74279 remote_ip 10.8.0.14 74283 username alirezazamani 74283 mac 74283 bytes_out 0 74283 bytes_in 0 74283 station_ip 5.120.64.61 74283 port 4 74283 unique_id port 74283 remote_ip 10.8.0.14 74284 username alirezazamani 74284 mac 74284 bytes_out 0 74284 bytes_in 0 74284 station_ip 5.120.64.61 74284 port 4 74284 unique_id port 74284 remote_ip 10.8.0.14 74285 username alirezazamani 74285 mac 74285 bytes_out 0 74285 bytes_in 0 74285 station_ip 5.120.64.61 74285 port 4 74285 unique_id port 74285 remote_ip 10.8.0.14 74302 username alirezazamani 74302 mac 74302 bytes_out 0 74302 bytes_in 0 74302 station_ip 5.120.64.61 74302 port 24 74302 unique_id port 74302 remote_ip 10.8.1.14 74392 station_ip 5.119.22.103 74392 port 15728683 74392 nas_port_type Virtual 74392 remote_ip 5.5.5.234 81116 unique_id port 81116 terminate_cause Lost-Carrier 81116 bytes_out 60636 81116 bytes_in 233946 81116 station_ip 5.119.203.222 81116 port 15728705 81116 nas_port_type Virtual 81116 remote_ip 5.5.5.216 81117 username hamideh 74400 username goli 74400 unique_id port 74400 terminate_cause User-Request 74400 bytes_out 84032 74400 bytes_in 684378 74400 station_ip 113.203.29.56 74400 port 15728695 74400 nas_port_type Virtual 74400 remote_ip 5.5.5.231 74402 username goli 74402 unique_id port 74402 terminate_cause User-Request 74402 bytes_out 91379 74402 bytes_in 1103439 74402 station_ip 113.203.29.56 74402 port 15728697 74402 nas_port_type Virtual 74402 remote_ip 5.5.5.231 74404 username alirezazamani 74404 unique_id port 74404 terminate_cause Lost-Carrier 74404 bytes_out 399096 74404 bytes_in 9970538 74404 station_ip 5.120.39.242 74404 port 15728701 74404 nas_port_type Virtual 74404 remote_ip 5.5.5.241 74411 username aminvpn 74411 unique_id port 74411 terminate_cause User-Request 74411 bytes_out 0 74411 bytes_in 0 74411 station_ip 5.233.65.48 74411 port 15728712 74411 nas_port_type Virtual 74411 remote_ip 5.5.5.224 74412 username aminvpn 74412 unique_id port 74412 terminate_cause Lost-Carrier 74412 bytes_out 573373 74412 bytes_in 819535 74412 station_ip 5.233.65.48 74412 port 15728710 74412 nas_port_type Virtual 74412 remote_ip 5.5.5.239 74415 username tahani 74415 unique_id port 74415 terminate_cause User-Request 74415 bytes_out 424407 74415 bytes_in 9302129 74415 station_ip 83.122.10.170 74415 port 15728714 74415 nas_port_type Virtual 74415 remote_ip 5.5.5.232 74421 username mobina 74421 unique_id port 74289 remote_ip 10.8.0.14 74290 username alirezazamani 74290 mac 74290 bytes_out 0 74290 bytes_in 0 74290 station_ip 5.120.64.61 74290 port 4 74290 unique_id port 74290 remote_ip 10.8.0.14 74295 username alirezazamani 74295 mac 74295 bytes_out 1636 74295 bytes_in 5142 74295 station_ip 5.120.64.61 74295 port 4 74295 unique_id port 74295 remote_ip 10.8.0.14 74296 username alirezazamani 74296 mac 74296 bytes_out 0 74296 bytes_in 0 74296 station_ip 5.120.64.61 74296 port 23 74296 unique_id port 74296 remote_ip 10.8.1.14 74298 username alirezazamani 74298 mac 74298 bytes_out 0 74298 bytes_in 0 74298 station_ip 5.120.64.61 74298 port 23 74298 unique_id port 74298 remote_ip 10.8.1.14 74299 username alirezazamani 74299 mac 74299 bytes_out 0 74299 bytes_in 0 74299 station_ip 5.120.64.61 74299 port 23 74299 unique_id port 74299 remote_ip 10.8.1.14 74301 username alirezazamani 74301 mac 74301 bytes_out 0 74301 bytes_in 0 74301 station_ip 5.120.64.61 74301 port 24 74301 unique_id port 74301 remote_ip 10.8.1.14 74308 username alirezazamani 74308 mac 74308 bytes_out 0 74308 bytes_in 0 74308 station_ip 5.120.64.61 74308 port 4 74308 unique_id port 74308 remote_ip 10.8.0.14 74310 username alirezazamani 74310 mac 74310 bytes_out 0 74310 bytes_in 0 74310 station_ip 5.120.64.61 74310 port 4 74310 unique_id port 74310 remote_ip 10.8.0.14 74395 remote_ip 5.5.5.233 74399 username tahani 74399 unique_id port 74399 terminate_cause User-Request 74399 bytes_out 369919 74399 bytes_in 7607451 74399 station_ip 83.122.10.170 74399 port 15728694 74399 nas_port_type Virtual 74399 remote_ip 5.5.5.232 74403 username alirezazamani 74403 unique_id port 74403 terminate_cause User-Request 74403 bytes_out 0 74403 bytes_in 0 74403 station_ip 5.120.39.242 74403 port 15728700 74403 nas_port_type Virtual 74403 remote_ip 5.5.5.241 81117 unique_id port 81117 terminate_cause User-Request 81117 bytes_out 33850 81117 bytes_in 168478 81117 station_ip 5.119.44.237 81117 port 15728715 81117 nas_port_type Virtual 81117 remote_ip 5.5.5.215 81121 username asadi 74408 username rashidi 74408 unique_id port 74408 terminate_cause User-Request 74408 bytes_out 12923643 74408 bytes_in 99962928 74408 station_ip 5.119.179.116 74408 port 15728699 74408 nas_port_type Virtual 74408 remote_ip 5.5.5.228 74409 username aminvpn 74409 unique_id port 74409 terminate_cause User-Request 74409 bytes_out 654869 74409 bytes_in 6121256 74409 station_ip 5.233.65.48 74409 port 15728709 74409 nas_port_type Virtual 74409 remote_ip 5.5.5.239 74413 username alirezazamani 74413 unique_id port 74413 terminate_cause Lost-Carrier 74413 bytes_out 1366122 74413 bytes_in 24359175 74413 station_ip 5.120.39.242 74413 port 15728703 74413 nas_port_type Virtual 74413 remote_ip 5.5.5.241 74418 username tahani 74418 unique_id port 74418 terminate_cause User-Request 74418 bytes_out 203261 74418 bytes_in 7298993 74418 station_ip 83.122.10.170 74418 port 15728716 74418 nas_port_type Virtual 74418 remote_ip 5.5.5.232 74424 username rashidi 74424 unique_id port 74424 terminate_cause User-Request 74424 bytes_out 8781973 74424 bytes_in 19562186 74424 station_ip 5.119.113.129 74424 port 15728717 74424 nas_port_type Virtual 74424 remote_ip 5.5.5.223 74426 username amin.insta21 74426 unique_id port 74426 terminate_cause Lost-Carrier 74426 bytes_out 212438 74426 bytes_in 1726313 74426 station_ip 151.235.88.36 74426 port 15728722 74426 nas_port_type Virtual 74426 remote_ip 5.5.5.226 74429 username rashidi 81121 unique_id port 74293 bytes_in 0 74293 station_ip 5.120.64.61 74293 port 4 74293 unique_id port 74293 remote_ip 10.8.0.14 74294 username alirezazamani 74294 mac 74294 bytes_out 0 74294 bytes_in 0 74294 station_ip 5.120.64.61 74294 port 4 74294 unique_id port 74294 remote_ip 10.8.0.14 74297 username alirezazamani 74297 mac 74297 bytes_out 0 74297 bytes_in 0 74297 station_ip 5.120.64.61 74297 port 23 74297 unique_id port 74297 remote_ip 10.8.1.14 74300 username alirezazamani 74300 kill_reason Maximum check online fails reached 74300 mac 74300 bytes_out 0 74300 bytes_in 0 74300 station_ip 5.120.64.61 74300 port 23 74300 unique_id port 74303 username alirezazamani 74303 mac 74303 bytes_out 0 74303 bytes_in 0 74303 station_ip 5.120.64.61 74303 port 24 74303 unique_id port 74303 remote_ip 10.8.1.14 74304 username alirezazamani 74304 mac 74304 bytes_out 0 74304 bytes_in 0 74304 station_ip 5.120.64.61 74304 port 4 74304 unique_id port 74304 remote_ip 10.8.0.14 74305 username alirezazamani 74305 mac 74305 bytes_out 0 74305 bytes_in 0 74305 station_ip 5.120.64.61 74305 port 4 74305 unique_id port 74305 remote_ip 10.8.0.14 74306 username alirezazamani 74306 mac 74306 bytes_out 0 74306 bytes_in 0 74306 station_ip 5.120.64.61 74306 port 4 74306 unique_id port 74306 remote_ip 10.8.0.14 74307 username alirezazamani 74307 mac 74307 bytes_out 0 74307 bytes_in 0 74307 station_ip 5.120.64.61 74307 port 4 74307 unique_id port 74307 remote_ip 10.8.0.14 74309 username alirezazamani 74309 mac 74309 bytes_out 0 74309 bytes_in 0 74309 station_ip 5.120.64.61 74309 port 4 74309 unique_id port 74309 remote_ip 10.8.0.14 74417 station_ip 151.235.88.36 74417 port 15728705 74417 nas_port_type Virtual 74417 remote_ip 5.5.5.226 74419 username amin.insta21 74419 unique_id port 74419 terminate_cause Lost-Carrier 74419 bytes_out 209746 74419 bytes_in 979133 74419 station_ip 151.235.88.36 74419 port 15728718 74419 nas_port_type Virtual 74419 remote_ip 5.5.5.226 74420 username amin.insta01 74420 unique_id port 74420 terminate_cause Lost-Carrier 74420 bytes_out 1226756 74420 bytes_in 17862724 74420 station_ip 5.119.175.120 74420 port 15728719 74420 nas_port_type Virtual 74420 remote_ip 5.5.5.222 74422 username iranmanesh 74422 unique_id port 74422 terminate_cause Lost-Carrier 74422 bytes_out 9055298 74422 bytes_in 389493864 74422 station_ip 5.114.71.237 74422 port 15728658 74422 nas_port_type Virtual 74422 remote_ip 5.5.5.253 74425 username amin.insta22 74425 unique_id port 74425 terminate_cause Lost-Carrier 74425 bytes_out 13228203 74425 bytes_in 32599815 74425 station_ip 31.56.112.203 74425 port 15728702 74425 nas_port_type Virtual 74425 remote_ip 5.5.5.227 74430 username amin.insta21 74430 unique_id port 74430 terminate_cause User-Request 74430 bytes_out 2646980 74430 bytes_in 33605050 74430 station_ip 151.235.88.36 74430 port 15728725 74430 nas_port_type Virtual 74430 remote_ip 5.5.5.226 74432 username mobina 74432 unique_id port 74432 terminate_cause User-Request 74432 bytes_out 50117 74432 bytes_in 635388 74432 station_ip 5.123.106.93 74432 port 15728728 74432 nas_port_type Virtual 74432 remote_ip 5.5.5.217 74435 username alirezazamani 74435 unique_id port 74435 terminate_cause User-Request 74435 bytes_out 22821128 74435 bytes_in 126215033 74435 station_ip 5.120.64.61 74435 port 15728730 74435 nas_port_type Virtual 74435 remote_ip 5.5.5.216 74440 username amin.insta21 74440 kill_reason Maximum check online fails reached 74440 unique_id port 74440 bytes_out 2721277 74440 bytes_in 5545587 74421 terminate_cause User-Request 74421 bytes_out 885199 74421 bytes_in 23502318 74421 station_ip 5.123.10.229 74421 port 15728721 74421 nas_port_type Virtual 74421 remote_ip 5.5.5.220 74423 username amin.insta19 74423 unique_id port 74423 terminate_cause Lost-Carrier 74423 bytes_out 741662 74423 bytes_in 4579956 74423 station_ip 5.119.63.20 74423 port 15728720 74423 nas_port_type Virtual 74423 remote_ip 5.5.5.221 74427 username mohammadi 74427 unique_id port 74427 terminate_cause User-Request 74427 bytes_out 0 74427 bytes_in 0 74427 station_ip 83.122.167.237 74427 port 15728723 74427 nas_port_type Virtual 74427 remote_ip 5.5.5.219 74428 username mohammadi 74428 unique_id port 74428 terminate_cause User-Request 74428 bytes_out 0 74428 bytes_in 0 74428 station_ip 83.122.167.237 74428 port 15728724 74428 nas_port_type Virtual 74428 remote_ip 5.5.5.219 74436 username alirezazamani 74436 unique_id port 74436 terminate_cause Lost-Carrier 74436 bytes_out 640813 74436 bytes_in 13475220 74436 station_ip 5.119.43.22 74436 port 15728733 74436 nas_port_type Virtual 74436 remote_ip 5.5.5.214 74438 username reza 74438 unique_id port 74438 terminate_cause User-Request 74438 bytes_out 153689 74438 bytes_in 2356384 74438 station_ip 83.123.26.9 74438 port 15728737 74438 nas_port_type Virtual 74438 remote_ip 5.5.5.212 74445 username ahmadi 74445 unique_id port 74445 terminate_cause User-Request 74445 bytes_out 27634 74445 bytes_in 198737 74445 station_ip 113.203.76.160 74445 port 15728742 74445 nas_port_type Virtual 74445 remote_ip 5.5.5.210 74452 username alirezazamani 74452 unique_id port 74452 terminate_cause User-Request 74452 bytes_out 0 74452 bytes_in 0 74452 station_ip 5.120.64.61 74452 port 15728753 74452 nas_port_type Virtual 74452 remote_ip 5.5.5.216 74455 username alinezhad 74455 unique_id port 74455 terminate_cause User-Request 74455 bytes_out 0 74455 bytes_in 0 74455 station_ip 5.202.7.112 74455 port 15728756 74455 nas_port_type Virtual 74455 remote_ip 5.5.5.203 74460 username rashidi 74460 unique_id port 74460 terminate_cause Lost-Carrier 74460 bytes_out 2678927 74460 bytes_in 11492057 74460 station_ip 5.119.172.151 74460 port 15728760 74460 nas_port_type Virtual 74460 remote_ip 5.5.5.208 74462 username amin.insta13 74462 unique_id port 74462 terminate_cause User-Request 74462 bytes_out 0 74462 bytes_in 0 74462 station_ip 37.129.79.156 74462 port 15728763 74462 nas_port_type Virtual 74462 remote_ip 5.5.5.201 74464 username iranmanesh 74464 unique_id port 74464 terminate_cause Lost-Carrier 74464 bytes_out 1075076 74464 bytes_in 31789271 74464 station_ip 5.112.34.40 74464 port 15728747 74464 nas_port_type Virtual 74464 remote_ip 5.5.5.206 74470 username rashidi 74470 unique_id port 74470 terminate_cause Lost-Carrier 74470 bytes_out 8522201 74470 bytes_in 78325024 74470 station_ip 5.119.188.120 74470 port 15728762 74470 nas_port_type Virtual 74470 remote_ip 5.5.5.197 74474 username amin.insta01 74474 unique_id port 74474 terminate_cause Lost-Carrier 74474 bytes_out 414427 74474 bytes_in 2066372 74474 station_ip 5.119.96.84 74474 port 15728771 74474 nas_port_type Virtual 74474 remote_ip 5.5.5.192 74476 username zoha 74476 unique_id port 74476 terminate_cause Lost-Carrier 74476 bytes_out 624252 74476 bytes_in 6683154 74476 station_ip 5.120.63.141 74476 port 15728772 74476 nas_port_type Virtual 74476 remote_ip 5.5.5.195 74483 username alinezhad 74483 unique_id port 74483 terminate_cause User-Request 74483 bytes_out 24625 74483 bytes_in 118143 74483 station_ip 83.123.202.49 74483 port 15728645 74483 nas_port_type Virtual 74483 remote_ip 5.5.5.251 74487 username alinezhad 74429 unique_id port 74429 terminate_cause Lost-Carrier 74429 bytes_out 730315 74429 bytes_in 25469859 74429 station_ip 5.119.113.129 74429 port 15728726 74429 nas_port_type Virtual 74429 remote_ip 5.5.5.223 74431 username ahmadi 74431 unique_id port 74431 terminate_cause User-Request 74431 bytes_out 54391 74431 bytes_in 369692 74431 station_ip 113.203.29.180 74431 port 15728727 74431 nas_port_type Virtual 74431 remote_ip 5.5.5.218 74433 username ahmadi 74433 unique_id port 74433 terminate_cause User-Request 74433 bytes_out 0 74433 bytes_in 0 74433 station_ip 113.203.15.232 74433 port 15728731 74433 nas_port_type Virtual 74433 remote_ip 5.5.5.215 74434 username aminvpn 74434 unique_id port 74434 terminate_cause User-Request 74434 bytes_out 228008 74434 bytes_in 1168862 74434 station_ip 5.233.65.48 74434 port 15728732 74434 nas_port_type Virtual 74434 remote_ip 5.5.5.224 74437 username alinezhad 74437 unique_id port 74437 terminate_cause User-Request 74437 bytes_out 60312 74437 bytes_in 100156 74437 station_ip 5.202.27.41 74437 port 15728736 74437 nas_port_type Virtual 74437 remote_ip 5.5.5.249 74439 username alinezhad 74439 unique_id port 74439 terminate_cause User-Request 74439 bytes_out 7328 74439 bytes_in 16788 74439 station_ip 5.202.27.41 74439 port 15728738 74439 nas_port_type Virtual 74439 remote_ip 5.5.5.249 74441 username alinezhad 74441 unique_id port 74441 terminate_cause User-Request 74441 bytes_out 39012 74441 bytes_in 353100 74441 station_ip 5.202.27.41 74441 port 15728739 74441 nas_port_type Virtual 74441 remote_ip 5.5.5.249 74442 username reza 74442 unique_id port 74442 terminate_cause User-Request 74442 bytes_out 17024 74442 bytes_in 120611 74442 station_ip 83.122.96.161 74442 port 15728740 74442 nas_port_type Virtual 74442 remote_ip 5.5.5.211 74446 username reza 74446 unique_id port 74446 terminate_cause User-Request 74446 bytes_out 942689 74446 bytes_in 13631838 74446 station_ip 83.123.33.21 74446 port 15728743 74446 nas_port_type Virtual 74446 remote_ip 5.5.5.209 74449 username mohammadi 74449 unique_id port 74449 terminate_cause User-Request 74449 bytes_out 18972 74449 bytes_in 40204 74449 station_ip 83.123.49.193 74449 port 15728748 74449 nas_port_type Virtual 74449 remote_ip 5.5.5.205 74450 username mohammadi 74450 unique_id port 74450 terminate_cause User-Request 74450 bytes_out 41406 74450 bytes_in 43178 74450 station_ip 83.123.49.193 74450 port 15728749 74450 nas_port_type Virtual 74450 remote_ip 5.5.5.205 74451 username alinezhad 74451 unique_id port 74451 terminate_cause User-Request 74451 bytes_out 15054 74451 bytes_in 34489 74451 station_ip 5.202.7.112 74451 port 15728751 74451 nas_port_type Virtual 74451 remote_ip 5.5.5.203 74453 username amin.insta13 74453 unique_id port 74453 terminate_cause User-Request 74453 bytes_out 394423 74453 bytes_in 2559893 74453 station_ip 37.129.79.156 74453 port 15728754 74453 nas_port_type Virtual 74453 remote_ip 5.5.5.201 74457 username rashidi 74457 unique_id port 74457 terminate_cause User-Request 74457 bytes_out 11651529 74457 bytes_in 18527139 74457 station_ip 5.119.172.151 74457 port 15728744 74457 nas_port_type Virtual 74457 remote_ip 5.5.5.208 74459 username amin.insta01 74459 unique_id port 74459 terminate_cause Lost-Carrier 74459 bytes_out 760038 74459 bytes_in 18361041 74459 station_ip 5.119.38.187 74459 port 15728752 74459 nas_port_type Virtual 74459 remote_ip 5.5.5.202 74461 username ahmad 74461 unique_id port 74461 terminate_cause User-Request 74461 bytes_out 659066 74461 bytes_in 7301926 74461 station_ip 86.57.43.8 74461 port 15728750 74461 nas_port_type Virtual 74461 remote_ip 5.5.5.204 74440 station_ip 151.235.88.36 74440 port 15728734 74440 nas_port_type Virtual 74440 remote_ip 5.5.5.226 74443 username iranmanesh 74443 unique_id port 74443 terminate_cause Lost-Carrier 74443 bytes_out 276726 74443 bytes_in 819449 74443 station_ip 5.114.255.253 74443 port 15728735 74443 nas_port_type Virtual 74443 remote_ip 5.5.5.213 74444 username alinezhad 74444 unique_id port 74444 terminate_cause User-Request 74444 bytes_out 175854 74444 bytes_in 1184433 74444 station_ip 5.202.27.41 74444 port 15728741 74444 nas_port_type Virtual 74444 remote_ip 5.5.5.249 74447 username alinezhad 74447 unique_id port 74447 terminate_cause User-Request 74447 bytes_out 0 74447 bytes_in 0 74447 station_ip 5.202.27.41 74447 port 15728745 74447 nas_port_type Virtual 74447 remote_ip 5.5.5.249 74448 username alirezazamani 74448 unique_id port 74448 terminate_cause User-Request 74448 bytes_out 62219264 74448 bytes_in 14069897 74448 station_ip 5.200.112.9 74448 port 15728746 74448 nas_port_type Virtual 74448 remote_ip 5.5.5.207 74454 username alirezazamani 74454 unique_id port 74454 terminate_cause User-Request 74454 bytes_out 239092 74454 bytes_in 4906669 74454 station_ip 5.120.86.187 74454 port 15728755 74454 nas_port_type Virtual 74454 remote_ip 5.5.5.200 74456 username amin.insta13 74456 unique_id port 74456 terminate_cause User-Request 74456 bytes_out 369083 74456 bytes_in 6380868 74456 station_ip 37.129.79.156 74456 port 15728757 74456 nas_port_type Virtual 74456 remote_ip 5.5.5.201 74458 username alinezhad 74458 unique_id port 74458 terminate_cause User-Request 74458 bytes_out 0 74458 bytes_in 0 74458 station_ip 113.203.87.214 74458 port 15728761 74458 nas_port_type Virtual 74458 remote_ip 5.5.5.198 74463 username alinezhad 74463 unique_id port 74463 terminate_cause User-Request 74463 bytes_out 0 74463 bytes_in 0 74463 station_ip 37.129.172.222 74463 port 15728764 74463 nas_port_type Virtual 74463 remote_ip 5.5.5.196 74472 username amin.insta15 74472 unique_id port 74472 terminate_cause User-Request 74472 bytes_out 214497 74472 bytes_in 905512 74472 station_ip 83.123.45.149 74472 port 15728769 74472 nas_port_type Virtual 74472 remote_ip 5.5.5.194 74473 username amin.insta13 74473 unique_id port 74473 terminate_cause User-Request 74473 bytes_out 208372 74473 bytes_in 3840483 74473 station_ip 83.123.5.183 74473 port 15728770 74473 nas_port_type Virtual 74473 remote_ip 5.5.5.193 74475 username zoha 74475 unique_id port 74475 terminate_cause Lost-Carrier 74475 bytes_out 6312886 74475 bytes_in 91635777 74475 station_ip 5.120.63.141 74475 port 15728766 74475 nas_port_type Virtual 74475 remote_ip 5.5.5.195 74477 username amin.insta19 74477 unique_id port 74477 terminate_cause Lost-Carrier 74477 bytes_out 2630368 74477 bytes_in 43809654 74477 station_ip 5.120.165.146 74477 port 15728773 74477 nas_port_type Virtual 74477 remote_ip 5.5.5.191 74478 username amin.insta19 74478 unique_id port 74478 terminate_cause Lost-Carrier 74478 bytes_out 10706697 74478 bytes_in 116320854 74478 station_ip 5.120.165.146 74478 port 15728774 74478 nas_port_type Virtual 74478 remote_ip 5.5.5.191 74479 username amin.insta15 74479 unique_id port 74479 terminate_cause User-Request 74479 bytes_out 117901 74479 bytes_in 871140 74479 station_ip 37.129.70.222 74479 port 15728641 74479 nas_port_type Virtual 74479 remote_ip 5.5.5.254 74480 username amin.insta15 74480 unique_id port 74480 terminate_cause User-Request 74480 bytes_out 198474 74480 bytes_in 4726534 74480 station_ip 37.129.70.222 74480 port 15728642 74480 nas_port_type Virtual 74480 remote_ip 5.5.5.254 74481 username alinezhad 74481 unique_id port 74481 terminate_cause User-Request 74465 username amin.insta13 74465 unique_id port 74465 terminate_cause User-Request 74465 bytes_out 365432 74465 bytes_in 1413261 74465 station_ip 37.129.79.156 74465 port 15728765 74465 nas_port_type Virtual 74465 remote_ip 5.5.5.201 74466 username amin.insta01 74466 unique_id port 74466 terminate_cause Lost-Carrier 74466 bytes_out 5305761 74466 bytes_in 146834921 74466 station_ip 5.120.26.107 74466 port 15728759 74466 nas_port_type Virtual 74466 remote_ip 5.5.5.199 74467 username alirezazamani 74467 unique_id port 74467 terminate_cause User-Request 74467 bytes_out 15764634 74467 bytes_in 302185136 74467 station_ip 5.200.112.9 74467 port 15728758 74467 nas_port_type Virtual 74467 remote_ip 5.5.5.207 81118 unique_id port 81118 terminate_cause User-Request 81118 bytes_out 21027 81118 bytes_in 74007 81118 station_ip 83.122.150.244 81118 port 15728718 81118 nas_port_type Virtual 81118 remote_ip 5.5.5.212 81120 username asadi 74469 username amin.insta15 74469 unique_id port 74469 terminate_cause User-Request 74469 bytes_out 53243 74469 bytes_in 179863 74469 station_ip 83.123.45.149 74469 port 15728767 74469 nas_port_type Virtual 74469 remote_ip 5.5.5.194 74471 username amin.insta15 74471 unique_id port 74471 terminate_cause User-Request 74471 bytes_out 203028 74471 bytes_in 1138752 74471 station_ip 83.123.45.149 74471 port 15728768 74471 nas_port_type Virtual 74471 remote_ip 5.5.5.194 74481 bytes_out 121976 74481 bytes_in 185975 74481 station_ip 113.203.62.223 74481 port 15728643 74481 nas_port_type Virtual 74481 remote_ip 5.5.5.253 74482 username ahmadi 74482 unique_id port 74482 terminate_cause User-Request 74482 bytes_out 93807 74482 bytes_in 970029 74482 station_ip 113.203.23.160 74482 port 15728644 74482 nas_port_type Virtual 74482 remote_ip 5.5.5.252 74488 username alirezazamani 74488 unique_id port 74488 terminate_cause User-Request 74488 bytes_out 224292 74488 bytes_in 3466847 74488 station_ip 5.119.183.194 74488 port 15728652 74488 nas_port_type Virtual 74488 remote_ip 5.5.5.244 74489 username amin.insta19 74489 unique_id port 74489 terminate_cause Lost-Carrier 74489 bytes_out 3648140 74489 bytes_in 13149206 74489 station_ip 5.120.156.208 74489 port 15728648 74489 nas_port_type Virtual 74489 remote_ip 5.5.5.248 74490 username ahmadi 74490 unique_id port 74490 terminate_cause User-Request 74490 bytes_out 28219 74490 bytes_in 301045 74490 station_ip 113.203.97.152 74490 port 15728654 74490 nas_port_type Virtual 74490 remote_ip 5.5.5.243 74493 username tahani 74493 unique_id port 74493 terminate_cause User-Request 74493 bytes_out 370607 74493 bytes_in 8078795 74493 station_ip 83.122.60.24 74493 port 15728656 74493 nas_port_type Virtual 74493 remote_ip 5.5.5.241 74497 username tahani 74497 unique_id port 74497 terminate_cause User-Request 74497 bytes_out 57954 74497 bytes_in 479658 74497 station_ip 83.122.60.24 74497 port 15728664 74497 nas_port_type Virtual 74497 remote_ip 5.5.5.241 74500 username nazanin 74500 unique_id port 74500 terminate_cause User-Request 74500 bytes_out 242 74500 bytes_in 10460 74500 station_ip 83.123.248.137 74500 port 15728667 74500 nas_port_type Virtual 74500 remote_ip 5.5.5.236 74502 username amin.insta19 74502 unique_id port 74502 terminate_cause Lost-Carrier 74502 bytes_out 3910780 74502 bytes_in 13866661 74502 station_ip 5.120.156.208 74502 port 15728662 74502 nas_port_type Virtual 74502 remote_ip 5.5.5.248 74505 username alirezazamani 74505 unique_id port 74505 terminate_cause User-Request 74505 bytes_out 21903709 74505 bytes_in 456450241 74505 station_ip 89.34.53.250 74505 port 15728661 74505 nas_port_type Virtual 74505 remote_ip 5.5.5.238 74509 username alirezazamani 74484 username reza 74484 unique_id port 74484 terminate_cause User-Request 74484 bytes_out 25608 74484 bytes_in 426836 74484 station_ip 113.203.43.247 74484 port 15728646 74484 nas_port_type Virtual 74484 remote_ip 5.5.5.250 74485 username iranmanesh 74485 unique_id port 74485 terminate_cause Lost-Carrier 74485 bytes_out 1393088 74485 bytes_in 54135570 74485 station_ip 5.112.58.251 74485 port 15728640 74485 nas_port_type Virtual 74485 remote_ip 5.5.5.255 74486 username alirezazamani 74486 unique_id port 74486 terminate_cause Lost-Carrier 74486 bytes_out 198 74486 bytes_in 60768 74486 station_ip 94.241.179.206 74486 port 15728649 74486 nas_port_type Virtual 74486 remote_ip 5.5.5.247 74492 username zoha 74492 unique_id port 74492 terminate_cause User-Request 74492 bytes_out 1644700 74492 bytes_in 12557569 74492 station_ip 5.120.63.141 74492 port 15728650 74492 nas_port_type Virtual 74492 remote_ip 5.5.5.246 74494 username alirezazamani 74494 unique_id port 74494 terminate_cause Lost-Carrier 74494 bytes_out 2240049 74494 bytes_in 44917098 74494 station_ip 5.120.126.105 74494 port 15728659 74494 nas_port_type Virtual 74494 remote_ip 5.5.5.240 74496 username aminvpn 74496 mac 74496 bytes_out 0 74496 bytes_in 0 74496 station_ip 89.199.241.153 74496 port 26 74496 unique_id port 74496 remote_ip 10.8.1.10 74498 username nazanin 74498 unique_id port 74498 terminate_cause User-Request 74498 bytes_out 0 74498 bytes_in 0 74498 station_ip 83.123.248.137 74498 port 15728665 74498 nas_port_type Virtual 74498 remote_ip 5.5.5.236 74499 username mohammadi 74499 unique_id port 74499 terminate_cause User-Request 74499 bytes_out 23999 74499 bytes_in 43048 74499 station_ip 83.123.235.47 74499 port 15728666 74499 nas_port_type Virtual 74499 remote_ip 5.5.5.235 74512 username alirezazamani 74512 unique_id port 74512 terminate_cause Lost-Carrier 74512 bytes_out 371161 74512 bytes_in 7850715 74512 station_ip 5.119.78.228 74512 port 15728674 74512 nas_port_type Virtual 74512 remote_ip 5.5.5.230 74513 username alirezazamani 74513 unique_id port 74513 terminate_cause Lost-Carrier 74513 bytes_out 430028 74513 bytes_in 12500185 74513 station_ip 5.119.236.98 74513 port 15728673 74513 nas_port_type Virtual 74513 remote_ip 5.5.5.231 74524 username kasra 74524 unique_id port 74524 terminate_cause User-Request 74524 bytes_out 185649 74524 bytes_in 3470702 74524 station_ip 37.129.201.61 74524 port 15728688 74524 nas_port_type Virtual 74524 remote_ip 5.5.5.221 81120 unique_id port 81120 terminate_cause User-Request 81120 bytes_out 31659 81120 bytes_in 64365 81120 station_ip 83.122.150.244 81120 port 15728720 81120 nas_port_type Virtual 81120 remote_ip 5.5.5.212 81122 username asadi 74530 username zoha 74530 unique_id port 74530 terminate_cause User-Request 74530 bytes_out 380110 74530 bytes_in 2688262 74530 station_ip 5.119.207.2 74530 port 15728692 74530 nas_port_type Virtual 74530 remote_ip 5.5.5.226 74531 username alirezazamani 74531 unique_id port 74531 terminate_cause User-Request 74531 bytes_out 15337224 74531 bytes_in 145578459 74531 station_ip 5.120.67.130 74531 port 15728663 74531 nas_port_type Virtual 74531 remote_ip 5.5.5.237 74538 username aminvpn 74538 mac 74538 bytes_out 0 74538 bytes_in 0 74538 station_ip 89.199.136.105 74538 port 25 74538 unique_id port 74538 remote_ip 10.8.1.10 74539 username aminvpn 74539 mac 74539 bytes_out 0 74539 bytes_in 0 74539 station_ip 89.199.136.105 74539 port 25 74539 unique_id port 74539 remote_ip 10.8.1.10 74543 username alirezazamani 74543 unique_id port 74543 terminate_cause Lost-Carrier 74543 bytes_out 18877333 74487 unique_id port 74487 terminate_cause User-Request 74487 bytes_out 0 74487 bytes_in 0 74487 station_ip 113.203.34.151 74487 port 15728651 74487 nas_port_type Virtual 74487 remote_ip 5.5.5.245 74491 username alinezhad 74491 unique_id port 74491 terminate_cause User-Request 74491 bytes_out 0 74491 bytes_in 0 74491 station_ip 37.129.65.236 74491 port 15728655 74491 nas_port_type Virtual 74491 remote_ip 5.5.5.242 74495 username aminvpn 74495 mac 74495 bytes_out 1426397 74495 bytes_in 13172770 74495 station_ip 89.199.241.153 74495 port 25 74495 unique_id port 74495 remote_ip 10.8.1.10 74501 username amin.insta22 74501 unique_id port 74501 terminate_cause Lost-Carrier 74501 bytes_out 12819170 74501 bytes_in 17532807 74501 station_ip 31.56.154.197 74501 port 15728660 74501 nas_port_type Virtual 74501 remote_ip 5.5.5.239 74503 username mobina 74503 unique_id port 74503 terminate_cause User-Request 74503 bytes_out 0 74503 bytes_in 0 74503 station_ip 5.123.177.75 74503 port 15728668 74503 nas_port_type Virtual 74503 remote_ip 5.5.5.234 74504 username zoha 74504 unique_id port 74504 terminate_cause Lost-Carrier 74504 bytes_out 6529194 74504 bytes_in 80132856 74504 station_ip 5.120.63.141 74504 port 15728657 74504 nas_port_type Virtual 74504 remote_ip 5.5.5.246 74506 username ahmadi 74506 unique_id port 74506 terminate_cause User-Request 74506 bytes_out 0 74506 bytes_in 0 74506 station_ip 113.203.97.152 74506 port 15728669 74506 nas_port_type Virtual 74506 remote_ip 5.5.5.243 74507 username alirezazamani 74507 unique_id port 74507 terminate_cause User-Request 74507 bytes_out 601488 74507 bytes_in 13275246 74507 station_ip 89.34.53.250 74507 port 15728672 74507 nas_port_type Virtual 74507 remote_ip 5.5.5.238 74508 username alirezazamani 74508 kill_reason Maximum number of concurrent logins reached 74508 unique_id port 74508 bytes_out 0 74508 bytes_in 0 74508 station_ip 5.119.78.228 74508 port 15728675 74508 nas_port_type Virtual 74511 username alirezazamani 74511 kill_reason Maximum check online fails reached 74511 unique_id port 74511 bytes_out 406201 74511 bytes_in 8923215 74511 station_ip 5.119.78.228 74511 port 15728676 74511 nas_port_type Virtual 74511 remote_ip 5.5.5.232 74514 username zoha 74514 unique_id port 74514 terminate_cause User-Request 74514 bytes_out 0 74514 bytes_in 0 74514 station_ip 5.120.63.141 74514 port 15728677 74514 nas_port_type Virtual 74514 remote_ip 5.5.5.246 74516 username alinezhad 74516 unique_id port 74516 terminate_cause User-Request 74516 bytes_out 0 74516 bytes_in 0 74516 station_ip 83.123.235.134 74516 port 15728681 74516 nas_port_type Virtual 74516 remote_ip 5.5.5.227 81121 terminate_cause User-Request 81121 bytes_out 26655 81121 bytes_in 60962 81121 station_ip 83.122.150.244 81121 port 15728721 81121 nas_port_type Virtual 81121 remote_ip 5.5.5.212 81124 username zamanialireza 74521 username amin.insta11 74521 unique_id port 74521 terminate_cause Lost-Carrier 74521 bytes_out 835960 74521 bytes_in 5563752 74521 station_ip 5.160.113.46 74521 port 15728683 74521 nas_port_type Virtual 74521 remote_ip 5.5.5.225 74522 username mohammadi 74522 unique_id port 74522 terminate_cause User-Request 74522 bytes_out 0 74522 bytes_in 0 74522 station_ip 83.123.153.51 74522 port 15728684 74522 nas_port_type Virtual 74522 remote_ip 5.5.5.224 74529 username alinezhad 74529 unique_id port 74529 terminate_cause User-Request 74529 bytes_out 12230 74529 bytes_in 26170 74529 station_ip 37.129.150.252 74529 port 15728694 74529 nas_port_type Virtual 74529 remote_ip 5.5.5.219 74533 username mohammadi 74533 unique_id port 74533 terminate_cause User-Request 74509 unique_id port 74509 terminate_cause Lost-Carrier 74509 bytes_out 54752 74509 bytes_in 338224 74509 station_ip 5.119.78.228 74509 port 15728670 74509 nas_port_type Virtual 74509 remote_ip 5.5.5.233 74510 username alirezazamani 74510 unique_id port 74510 terminate_cause Lost-Carrier 74510 bytes_out 368221 74510 bytes_in 7489735 74510 station_ip 5.119.78.228 74510 port 15728671 74510 nas_port_type Virtual 74510 remote_ip 5.5.5.232 74515 username iranmanesh 74515 unique_id port 74515 terminate_cause Lost-Carrier 74515 bytes_out 4114662 74515 bytes_in 167188449 74515 station_ip 5.112.58.251 74515 port 15728653 74515 nas_port_type Virtual 74515 remote_ip 5.5.5.255 74517 username ahmadi 74517 unique_id port 74517 terminate_cause User-Request 74517 bytes_out 70796 74517 bytes_in 361899 74517 station_ip 113.203.97.152 74517 port 15728680 74517 nas_port_type Virtual 74517 remote_ip 5.5.5.243 74518 username zoha 74518 unique_id port 74518 terminate_cause Lost-Carrier 74518 bytes_out 392198 74518 bytes_in 1906065 74518 station_ip 5.120.63.141 74518 port 15728678 74518 nas_port_type Virtual 74518 remote_ip 5.5.5.229 74520 username zoha 74520 unique_id port 74520 terminate_cause Lost-Carrier 74520 bytes_out 275629 74520 bytes_in 1736208 74520 station_ip 5.119.207.2 74520 port 15728682 74520 nas_port_type Virtual 74520 remote_ip 5.5.5.226 81122 unique_id port 81122 terminate_cause User-Request 81122 bytes_out 61330 81122 bytes_in 182585 81122 station_ip 83.122.141.139 81122 port 15728722 81122 nas_port_type Virtual 81122 remote_ip 5.5.5.211 81125 username forozande 74525 username kasra 74525 unique_id port 74525 terminate_cause User-Request 74525 bytes_out 440262 74525 bytes_in 16451849 74525 station_ip 37.129.201.61 74525 port 15728689 74525 nas_port_type Virtual 74525 remote_ip 5.5.5.221 74526 username amin.insta19 74526 unique_id port 74526 terminate_cause Lost-Carrier 74526 bytes_out 821079 74526 bytes_in 3085850 74526 station_ip 113.203.26.173 74526 port 15728686 74526 nas_port_type Virtual 74526 remote_ip 5.5.5.223 74527 username kasra 74527 unique_id port 74527 terminate_cause User-Request 74527 bytes_out 680850 74527 bytes_in 27508356 74527 station_ip 37.129.201.61 74527 port 15728691 74527 nas_port_type Virtual 74527 remote_ip 5.5.5.221 74532 username alirezazamani 74532 unique_id port 74532 terminate_cause Lost-Carrier 74532 bytes_out 1105923 74532 bytes_in 38244003 74532 station_ip 5.119.167.237 74532 port 15728696 74532 nas_port_type Virtual 74532 remote_ip 5.5.5.218 74534 username aminvpn 74534 mac 74534 bytes_out 1532045 74534 bytes_in 7838932 74534 station_ip 89.199.136.105 74534 port 25 74534 unique_id port 74534 remote_ip 10.8.1.10 74536 username aminvpn 74536 mac 74536 bytes_out 0 74536 bytes_in 0 74536 station_ip 89.199.136.105 74536 port 25 74536 unique_id port 74536 remote_ip 10.8.1.10 74540 username aminvpn 74540 mac 74540 bytes_out 0 74540 bytes_in 0 74540 station_ip 89.199.136.105 74540 port 25 74540 unique_id port 74540 remote_ip 10.8.1.10 74541 username aminvpn 74541 mac 74541 bytes_out 0 74541 bytes_in 0 74541 station_ip 89.199.136.105 74541 port 25 74541 unique_id port 74541 remote_ip 10.8.1.10 74544 username aminvpn 74544 mac 74544 bytes_out 0 74544 bytes_in 0 74544 station_ip 89.199.136.105 74544 port 8 74544 unique_id port 74544 remote_ip 10.8.0.6 74545 username alinezhad 74545 unique_id port 74545 terminate_cause User-Request 74545 bytes_out 0 74545 bytes_in 0 74545 station_ip 113.203.62.76 74545 port 15728698 74545 nas_port_type Virtual 74533 bytes_out 46359 74533 bytes_in 94919 74533 station_ip 83.122.149.116 74533 port 15728697 74533 nas_port_type Virtual 74533 remote_ip 5.5.5.217 74535 username aminvpn 74535 mac 74535 bytes_out 0 74535 bytes_in 0 74535 station_ip 89.199.136.105 74535 port 25 74535 unique_id port 74535 remote_ip 10.8.1.10 74537 username aminvpn 74537 mac 74537 bytes_out 0 74537 bytes_in 0 74537 station_ip 89.199.136.105 74537 port 25 74537 unique_id port 74537 remote_ip 10.8.1.10 74542 username aminvpn 74542 mac 74542 bytes_out 0 74542 bytes_in 0 74542 station_ip 89.199.136.105 74542 port 25 74542 unique_id port 74542 remote_ip 10.8.1.10 74547 username zoha 74547 unique_id port 74547 terminate_cause Lost-Carrier 74547 bytes_out 1962472 74547 bytes_in 17620704 74547 station_ip 5.119.207.2 74547 port 15728695 74547 nas_port_type Virtual 74547 remote_ip 5.5.5.226 74548 username ahmadi 74548 unique_id port 74548 terminate_cause User-Request 74548 bytes_out 52897 74548 bytes_in 308697 74548 station_ip 83.123.188.189 74548 port 15728699 74548 nas_port_type Virtual 74548 remote_ip 5.5.5.215 74551 username reza 74551 unique_id port 74551 terminate_cause User-Request 74551 bytes_out 341614 74551 bytes_in 8781438 74551 station_ip 113.203.4.16 74551 port 15728702 74551 nas_port_type Virtual 74551 remote_ip 5.5.5.213 74558 username mobina 74558 unique_id port 74558 terminate_cause User-Request 74558 bytes_out 389757 74558 bytes_in 8385258 74558 station_ip 5.124.72.35 74558 port 15728709 74558 nas_port_type Virtual 74558 remote_ip 5.5.5.211 74560 username alinezhad 74560 unique_id port 74560 terminate_cause User-Request 74560 bytes_out 0 74560 bytes_in 0 74560 station_ip 37.129.142.83 74560 port 15728714 74560 nas_port_type Virtual 74560 remote_ip 5.5.5.209 74561 username amin.insta22 74561 unique_id port 74561 terminate_cause Port-Error 74561 bytes_out 0 74561 bytes_in 0 74561 station_ip 31.56.157.139 74561 port 15728716 74561 nas_port_type Virtual 74561 remote_ip 5.5.5.208 74564 username reza 74564 unique_id port 74564 terminate_cause User-Request 74564 bytes_out 62847 74564 bytes_in 1540184 74564 station_ip 113.203.4.16 74564 port 15728717 74564 nas_port_type Virtual 74564 remote_ip 5.5.5.213 74565 username amin.insta19 74565 unique_id port 74565 terminate_cause Lost-Carrier 74565 bytes_out 9117343 74565 bytes_in 117483055 74565 station_ip 5.119.101.190 74565 port 15728710 74565 nas_port_type Virtual 74565 remote_ip 5.5.5.210 81123 terminate_cause User-Request 81123 bytes_out 54340 81123 bytes_in 90765 81123 station_ip 83.122.141.139 81123 port 15728725 81123 nas_port_type Virtual 81123 remote_ip 5.5.5.211 81127 username soleymani 81127 kill_reason Maximum number of concurrent logins reached 74571 username iranmanesh 74571 unique_id port 74571 terminate_cause Lost-Carrier 74571 bytes_out 10477163 74571 bytes_in 316300717 74571 station_ip 5.112.133.145 74571 port 15728690 74571 nas_port_type Virtual 74571 remote_ip 5.5.5.220 74573 username mohammadi 74573 unique_id port 74573 terminate_cause User-Request 74573 bytes_out 113570 74573 bytes_in 25069 74573 station_ip 37.129.70.241 74573 port 15728726 74573 nas_port_type Virtual 74573 remote_ip 5.5.5.202 74576 username alinezhad 74576 unique_id port 74576 terminate_cause User-Request 74576 bytes_out 75925 74576 bytes_in 169980 74576 station_ip 113.203.49.204 74576 port 15728730 74576 nas_port_type Virtual 74576 remote_ip 5.5.5.201 74578 username alinezhad 74578 unique_id port 74578 terminate_cause User-Request 74578 bytes_out 7481 74578 bytes_in 19842 74578 station_ip 113.203.49.204 74578 port 15728731 74543 bytes_in 467142661 74543 station_ip 5.200.122.1 74543 port 15728679 74543 nas_port_type Virtual 74543 remote_ip 5.5.5.228 81124 unique_id port 81124 terminate_cause User-Request 81124 bytes_out 333420 81124 bytes_in 5786934 81124 station_ip 37.129.170.236 81124 port 15728726 81124 nas_port_type Virtual 81124 remote_ip 5.5.5.208 81133 username soleymani 74549 username aminvpn 74549 mac 74549 bytes_out 2969323 74549 bytes_in 22397422 74549 station_ip 89.199.136.105 74549 port 8 74549 unique_id port 74549 remote_ip 10.8.0.6 74554 username amin.insta22 74554 unique_id port 74554 terminate_cause User-Request 74554 bytes_out 207047 74554 bytes_in 614570 74554 station_ip 31.56.157.139 74554 port 15728704 74554 nas_port_type Virtual 74554 remote_ip 5.5.5.212 74555 username zoha 74555 unique_id port 74555 terminate_cause User-Request 74555 bytes_out 287426 74555 bytes_in 3073492 74555 station_ip 5.119.207.2 74555 port 15728705 74555 nas_port_type Virtual 74555 remote_ip 5.5.5.226 81133 kill_reason Maximum number of concurrent logins reached 81133 unique_id port 81133 bytes_out 0 81133 bytes_in 0 81133 station_ip 5.119.211.229 81133 port 15728736 81133 nas_port_type Virtual 81136 username soleymani 81409 username shahrooz 74562 username mobina 74562 unique_id port 74562 terminate_cause User-Request 74562 bytes_out 2275804 74562 bytes_in 57820147 74562 station_ip 5.124.72.35 74562 port 15728715 74562 nas_port_type Virtual 74562 remote_ip 5.5.5.211 74563 username amin.insta22 74563 unique_id port 74563 terminate_cause Lost-Carrier 74563 bytes_out 15564926 74563 bytes_in 292540628 74563 station_ip 31.56.157.139 74563 port 15728706 74563 nas_port_type Virtual 74563 remote_ip 5.5.5.212 74569 username amin.insta22 74569 unique_id port 74569 terminate_cause Lost-Carrier 74569 bytes_out 18870746 74569 bytes_in 554768350 74569 station_ip 5.233.66.217 74569 port 15728719 74569 nas_port_type Virtual 74569 remote_ip 5.5.5.206 74570 username alirezazamani 74570 unique_id port 74570 terminate_cause User-Request 74570 bytes_out 1522725 74570 bytes_in 13760797 74570 station_ip 94.183.213.166 74570 port 15728722 74570 nas_port_type Virtual 74570 remote_ip 5.5.5.214 74572 username mohammadi 74572 unique_id port 74572 terminate_cause User-Request 74572 bytes_out 37236 74572 bytes_in 132872 74572 station_ip 37.129.70.241 74572 port 15728725 74572 nas_port_type Virtual 74572 remote_ip 5.5.5.202 74575 username mohammadi 74575 unique_id port 74575 terminate_cause User-Request 74575 bytes_out 25580 74575 bytes_in 43870 74575 station_ip 37.129.70.241 74575 port 15728729 74575 nas_port_type Virtual 74575 remote_ip 5.5.5.202 74577 username zoha 74577 unique_id port 74577 terminate_cause Lost-Carrier 74577 bytes_out 1989606 74577 bytes_in 14051423 74577 station_ip 5.119.207.2 74577 port 15728721 74577 nas_port_type Virtual 74577 remote_ip 5.5.5.226 74580 username mobina 74580 kill_reason Wrong password 74580 unique_id port 74580 bytes_out 0 74580 bytes_in 0 74580 station_ip 5.124.174.169 74580 port 15728733 74580 nas_port_type Virtual 74581 username alinezhad 74581 unique_id port 74581 terminate_cause User-Request 74581 bytes_out 18229 74581 bytes_in 111065 74581 station_ip 83.122.168.168 74581 port 15728735 74581 nas_port_type Virtual 74581 remote_ip 5.5.5.199 74583 username mobina 74583 unique_id port 74583 terminate_cause Lost-Carrier 74583 bytes_out 329308 74583 bytes_in 5128603 74583 station_ip 5.124.174.169 74583 port 15728734 74583 nas_port_type Virtual 74583 remote_ip 5.5.5.200 74584 username alinezhad 74584 unique_id port 74584 terminate_cause User-Request 74584 bytes_out 0 74584 bytes_in 0 74545 remote_ip 5.5.5.216 74550 username aminvpn 74550 mac 74550 bytes_out 0 74550 bytes_in 0 74550 station_ip 89.199.136.105 74550 port 8 74550 unique_id port 74550 remote_ip 10.8.0.6 74552 username alirezazamani 74552 kill_reason Maximum check online fails reached 74552 unique_id port 74552 bytes_out 2465893 74552 bytes_in 40578876 74552 station_ip 94.183.213.166 74552 port 15728701 74552 nas_port_type Virtual 74552 remote_ip 5.5.5.214 74553 username zoha 74553 unique_id port 74553 terminate_cause User-Request 74553 bytes_out 251112 74553 bytes_in 1024245 74553 station_ip 5.119.207.2 74553 port 15728703 74553 nas_port_type Virtual 74553 remote_ip 5.5.5.226 74556 username zoha 74556 unique_id port 74556 terminate_cause User-Request 74556 bytes_out 0 74556 bytes_in 0 74556 station_ip 5.119.207.2 74556 port 15728707 74556 nas_port_type Virtual 74556 remote_ip 5.5.5.226 74557 username zoha 74557 unique_id port 74557 terminate_cause User-Request 74557 bytes_out 145614 74557 bytes_in 1257867 74557 station_ip 5.119.207.2 74557 port 15728708 74557 nas_port_type Virtual 74557 remote_ip 5.5.5.226 74566 username alinezhad 74566 unique_id port 74566 terminate_cause User-Request 74566 bytes_out 0 74566 bytes_in 0 74566 station_ip 37.129.103.141 74566 port 15728718 74566 nas_port_type Virtual 74566 remote_ip 5.5.5.207 74568 username ahmadi 74568 unique_id port 74568 terminate_cause User-Request 74568 bytes_out 76031 74568 bytes_in 322174 74568 station_ip 83.123.213.149 74568 port 15728723 74568 nas_port_type Virtual 74568 remote_ip 5.5.5.204 74574 username mohammadi 74574 unique_id port 74574 terminate_cause User-Request 74574 bytes_out 57551 74574 bytes_in 611357 74574 station_ip 37.129.70.241 74574 port 15728728 74574 nas_port_type Virtual 74574 remote_ip 5.5.5.202 74579 username mohammadi 74579 unique_id port 74579 terminate_cause User-Request 74579 bytes_out 48756 74579 bytes_in 421174 74579 station_ip 37.129.70.241 74579 port 15728732 74579 nas_port_type Virtual 74579 remote_ip 5.5.5.202 74582 username mohammadi 74582 unique_id port 74582 terminate_cause User-Request 74582 bytes_out 31164 74582 bytes_in 62781 74582 station_ip 37.129.100.253 74582 port 15728737 74582 nas_port_type Virtual 74582 remote_ip 5.5.5.197 74585 username reza 74585 unique_id port 74585 terminate_cause User-Request 74585 bytes_out 0 74585 bytes_in 0 74585 station_ip 37.129.192.60 74585 port 15728741 74585 nas_port_type Virtual 74585 remote_ip 5.5.5.194 74588 username ahmadi 74588 unique_id port 74588 terminate_cause User-Request 74588 bytes_out 0 74588 bytes_in 0 74588 station_ip 83.123.169.21 74588 port 15728744 74588 nas_port_type Virtual 74588 remote_ip 5.5.5.193 74592 username alinezhad 74592 unique_id port 74592 terminate_cause User-Request 74592 bytes_out 0 74592 bytes_in 0 74592 station_ip 37.129.113.68 74592 port 15728748 74592 nas_port_type Virtual 74592 remote_ip 5.5.5.191 74595 username zoha 74595 unique_id port 74595 terminate_cause Lost-Carrier 74595 bytes_out 212993 74595 bytes_in 834104 74595 station_ip 5.119.207.2 74595 port 15728749 74595 nas_port_type Virtual 74595 remote_ip 5.5.5.226 74598 username iranmanesh 74598 unique_id port 74598 terminate_cause Lost-Carrier 74598 bytes_out 2102134 74598 bytes_in 28879701 74598 station_ip 5.112.133.145 74598 port 15728745 74598 nas_port_type Virtual 74598 remote_ip 5.5.5.220 74599 username zoha 74599 unique_id port 74599 terminate_cause Lost-Carrier 74599 bytes_out 130771 74599 bytes_in 606191 74599 station_ip 5.119.207.2 74599 port 15728753 74599 nas_port_type Virtual 74599 remote_ip 5.5.5.226 74578 nas_port_type Virtual 74578 remote_ip 5.5.5.201 74586 username alirezazamani 74586 unique_id port 74586 terminate_cause Lost-Carrier 74586 bytes_out 532499 74586 bytes_in 8691391 74586 station_ip 94.183.213.166 74586 port 15728740 74586 nas_port_type Virtual 74586 remote_ip 5.5.5.214 81125 unique_id port 81125 terminate_cause User-Request 81125 bytes_out 32993 81125 bytes_in 166825 81125 station_ip 37.129.89.190 81125 port 15728727 81125 nas_port_type Virtual 81125 remote_ip 5.5.5.207 81131 username soleymani 74593 username alirezazamani 74593 unique_id port 74593 terminate_cause Lost-Carrier 74593 bytes_out 445007 74593 bytes_in 4795934 74593 station_ip 5.120.56.53 74593 port 15728736 74593 nas_port_type Virtual 74593 remote_ip 5.5.5.198 81131 kill_reason Maximum number of concurrent logins reached 81131 unique_id port 81131 bytes_out 0 81131 bytes_in 0 81131 station_ip 5.119.211.229 81131 port 15728734 81131 nas_port_type Virtual 81135 username reza 81135 unique_id port 74604 username alinezhad 74604 unique_id port 74604 terminate_cause User-Request 74604 bytes_out 139734 74604 bytes_in 161558 74604 station_ip 83.123.236.169 74604 port 15728757 74604 nas_port_type Virtual 74604 remote_ip 5.5.5.187 74606 username zoha 74606 kill_reason Wrong password 74606 unique_id port 74606 bytes_out 0 74606 bytes_in 0 74606 station_ip 5.119.207.2 74606 port 15728759 74606 nas_port_type Virtual 74607 username zoha 74607 kill_reason Wrong password 74607 unique_id port 74607 bytes_out 0 74607 bytes_in 0 74607 station_ip 5.119.207.2 74607 port 15728760 74607 nas_port_type Virtual 74608 username alirezazamani 74608 unique_id port 74608 terminate_cause Lost-Carrier 74608 bytes_out 26810187 74608 bytes_in 49602850 74608 station_ip 5.119.16.96 74608 port 15728750 74608 nas_port_type Virtual 74608 remote_ip 5.5.5.190 74609 username rashidi 74609 unique_id port 74609 terminate_cause Lost-Carrier 74609 bytes_out 14684163 74609 bytes_in 191215353 74609 station_ip 5.119.16.254 74609 port 15728755 74609 nas_port_type Virtual 74609 remote_ip 5.5.5.196 74611 username goli 74611 unique_id port 74611 terminate_cause User-Request 74611 bytes_out 34321 74611 bytes_in 106711 74611 station_ip 37.129.30.161 74611 port 15728765 74611 nas_port_type Virtual 74611 remote_ip 5.5.5.186 81135 terminate_cause User-Request 81135 bytes_out 0 81135 bytes_in 0 81135 station_ip 113.203.56.55 81135 port 15728735 81135 nas_port_type Virtual 81135 remote_ip 5.5.5.206 81138 username soleymani 81138 unique_id port 74619 username alinezhad 74619 unique_id port 74619 terminate_cause User-Request 74619 bytes_out 0 74619 bytes_in 0 74619 station_ip 83.122.64.61 74619 port 15728648 74619 nas_port_type Virtual 74619 remote_ip 5.5.5.248 74621 username ahmadi 74621 unique_id port 74621 terminate_cause User-Request 74621 bytes_out 189906 74621 bytes_in 2865884 74621 station_ip 83.123.176.129 74621 port 15728649 74621 nas_port_type Virtual 74621 remote_ip 5.5.5.250 74625 username reza 74625 unique_id port 74625 terminate_cause User-Request 74625 bytes_out 43748 74625 bytes_in 1133220 74625 station_ip 37.129.161.226 74625 port 15728653 74625 nas_port_type Virtual 74625 remote_ip 5.5.5.245 74630 username alinezhad 74630 unique_id port 74630 terminate_cause User-Request 74630 bytes_out 0 74630 bytes_in 0 74630 station_ip 5.202.61.148 74630 port 15728660 74630 nas_port_type Virtual 74630 remote_ip 5.5.5.241 74634 username alinezhad 74634 unique_id port 74634 terminate_cause User-Request 74634 bytes_out 0 74634 bytes_in 0 74634 station_ip 5.202.61.148 74634 port 15728664 74634 nas_port_type Virtual 74634 remote_ip 5.5.5.241 74584 station_ip 83.122.240.38 74584 port 15728739 74584 nas_port_type Virtual 74584 remote_ip 5.5.5.195 74587 username alirezazamani 74587 unique_id port 74587 terminate_cause User-Request 74587 bytes_out 664809 74587 bytes_in 10823012 74587 station_ip 5.120.67.130 74587 port 15728743 74587 nas_port_type Virtual 74587 remote_ip 5.5.5.237 74590 username reza 74590 unique_id port 74590 terminate_cause User-Request 74590 bytes_out 4290623 74590 bytes_in 17715778 74590 station_ip 37.129.192.60 74590 port 15728742 74590 nas_port_type Virtual 74590 remote_ip 5.5.5.194 74591 username aminsaeedi 74591 unique_id port 74591 terminate_cause User-Request 74591 bytes_out 214735 74591 bytes_in 2799151 74591 station_ip 31.56.155.223 74591 port 15728747 74591 nas_port_type Virtual 74591 remote_ip 5.5.5.192 74594 username amin.insta22 74594 unique_id port 74594 terminate_cause User-Request 74594 bytes_out 16287526 74594 bytes_in 502747821 74594 station_ip 5.119.246.42 74594 port 15728724 74594 nas_port_type Virtual 74594 remote_ip 5.5.5.203 74597 username alinezhad 74597 unique_id port 74597 terminate_cause User-Request 74597 bytes_out 0 74597 bytes_in 0 74597 station_ip 83.123.171.71 74597 port 15728751 74597 nas_port_type Virtual 74597 remote_ip 5.5.5.189 74601 username zoha 74601 unique_id port 74601 terminate_cause Lost-Carrier 74601 bytes_out 466432 74601 bytes_in 1502727 74601 station_ip 5.119.207.2 74601 port 15728754 74601 nas_port_type Virtual 74601 remote_ip 5.5.5.226 74602 username alinezhad 74602 unique_id port 74602 terminate_cause User-Request 74602 bytes_out 0 74602 bytes_in 0 74602 station_ip 83.123.171.71 74602 port 15728756 74602 nas_port_type Virtual 74602 remote_ip 5.5.5.189 74603 username amin.insta21 74603 unique_id port 74603 terminate_cause User-Request 74603 bytes_out 2088553 74603 bytes_in 71172374 74603 station_ip 151.235.94.253 74603 port 15728752 74603 nas_port_type Virtual 74603 remote_ip 5.5.5.188 74610 username zoha 74610 unique_id port 74610 terminate_cause Lost-Carrier 74610 bytes_out 3380733 74610 bytes_in 39156919 74610 station_ip 5.119.207.2 74610 port 15728761 74610 nas_port_type Virtual 74610 remote_ip 5.5.5.226 74612 username alirezazamani 74612 unique_id port 74612 terminate_cause User-Request 74612 bytes_out 144281 74612 bytes_in 1772810 74612 station_ip 83.122.18.221 74612 port 15728766 74612 nas_port_type Virtual 74612 remote_ip 5.5.5.185 74617 username alirezazamani 74617 unique_id port 74617 terminate_cause Lost-Carrier 74617 bytes_out 88888 74617 bytes_in 501621 74617 station_ip 5.120.76.213 74617 port 15728642 74617 nas_port_type Virtual 74617 remote_ip 5.5.5.253 74620 username amin.insta19 74620 unique_id port 74620 terminate_cause Lost-Carrier 74620 bytes_out 13000212 74620 bytes_in 97904999 74620 station_ip 5.120.118.225 74620 port 15728641 74620 nas_port_type Virtual 74620 remote_ip 5.5.5.254 81126 terminate_cause User-Request 81126 bytes_out 22678 81126 bytes_in 61539 81126 station_ip 83.122.141.139 81126 port 15728728 81126 nas_port_type Virtual 81126 remote_ip 5.5.5.211 81128 username soleymani 81128 kill_reason Maximum number of concurrent logins reached 74627 username zoha 74627 unique_id port 74627 terminate_cause User-Request 74627 bytes_out 1619094 74627 bytes_in 14978982 74627 station_ip 5.119.207.2 74627 port 15728656 74627 nas_port_type Virtual 74627 remote_ip 5.5.5.242 81128 unique_id port 81128 bytes_out 0 81128 bytes_in 0 81128 station_ip 5.119.114.69 81128 port 15728730 81128 nas_port_type Virtual 81130 username soleymani 81130 kill_reason Maximum number of concurrent logins reached 74629 username zoha 74629 unique_id port 74629 terminate_cause User-Request 74600 username rashidi 74600 unique_id port 74600 terminate_cause User-Request 74600 bytes_out 14492586 74600 bytes_in 37327878 74600 station_ip 5.119.16.254 74600 port 15728738 74600 nas_port_type Virtual 74600 remote_ip 5.5.5.196 74605 username zoha 74605 kill_reason Wrong password 74605 unique_id port 74605 bytes_out 0 74605 bytes_in 0 74605 station_ip 5.119.207.2 74605 port 15728758 74605 nas_port_type Virtual 74613 username alirezazamani 74613 unique_id port 74613 terminate_cause User-Request 74613 bytes_out 89296 74613 bytes_in 227355 74613 station_ip 83.122.18.221 74613 port 15728767 74613 nas_port_type Virtual 74613 remote_ip 5.5.5.185 74614 username alirezazamani 74614 unique_id port 74614 terminate_cause User-Request 74614 bytes_out 118926 74614 bytes_in 100637 74614 station_ip 83.122.18.221 74614 port 15728768 74614 nas_port_type Virtual 74614 remote_ip 5.5.5.185 74615 username alinezhad 74615 unique_id port 74615 terminate_cause User-Request 74615 bytes_out 0 74615 bytes_in 0 74615 station_ip 83.122.158.94 74615 port 15728643 74615 nas_port_type Virtual 74615 remote_ip 5.5.5.252 74618 username ahmadi 74618 unique_id port 74618 terminate_cause User-Request 74618 bytes_out 125533 74618 bytes_in 1220548 74618 station_ip 83.123.176.129 74618 port 15728646 74618 nas_port_type Virtual 74618 remote_ip 5.5.5.250 81127 unique_id port 81127 bytes_out 0 81127 bytes_in 0 81127 station_ip 5.119.114.69 81127 port 15728729 81127 nas_port_type Virtual 81129 username soleymani 81129 kill_reason Maximum number of concurrent logins reached 81129 unique_id port 74623 username alirezazamani 74623 unique_id port 74623 terminate_cause Lost-Carrier 74623 bytes_out 640771 74623 bytes_in 16436970 74623 station_ip 5.119.57.26 74623 port 15728650 74623 nas_port_type Virtual 74623 remote_ip 5.5.5.247 74626 username amin.insta22 74626 unique_id port 74626 terminate_cause Lost-Carrier 74626 bytes_out 9643761 74626 bytes_in 81751460 74626 station_ip 31.59.45.30 74626 port 15728647 74626 nas_port_type Virtual 74626 remote_ip 5.5.5.249 74632 username alirezazamani 74632 unique_id port 74632 terminate_cause Lost-Carrier 74632 bytes_out 6078121 74632 bytes_in 7660334 74632 station_ip 5.120.60.73 74632 port 15728655 74632 nas_port_type Virtual 74632 remote_ip 5.5.5.243 81129 bytes_out 0 81129 bytes_in 0 81129 station_ip 5.119.114.69 81129 port 15728732 81129 nas_port_type Virtual 81134 username soleymani 81134 kill_reason Maximum number of concurrent logins reached 81134 unique_id port 74635 username zoha 74635 unique_id port 74635 terminate_cause Lost-Carrier 74635 bytes_out 490257 74635 bytes_in 3206682 74635 station_ip 5.119.207.2 74635 port 15728661 74635 nas_port_type Virtual 74635 remote_ip 5.5.5.240 74637 username ahmadi 74637 unique_id port 74637 terminate_cause Lost-Carrier 74637 bytes_out 62453 74637 bytes_in 1131423 74637 station_ip 83.123.176.129 74637 port 15728665 74637 nas_port_type Virtual 74637 remote_ip 5.5.5.250 74643 username rashidi 74643 unique_id port 74643 terminate_cause User-Request 74643 bytes_out 3992967 74643 bytes_in 7809566 74643 station_ip 5.119.100.129 74643 port 15728666 74643 nas_port_type Virtual 74643 remote_ip 5.5.5.239 74650 username alirezazamani 74650 unique_id port 74650 terminate_cause User-Request 74650 bytes_out 0 74650 bytes_in 0 74650 station_ip 138.201.2.123 74650 port 15728682 74650 nas_port_type Virtual 74650 remote_ip 5.5.5.229 74654 username rashidi 74654 unique_id port 74654 terminate_cause Lost-Carrier 74654 bytes_out 5168406 74654 bytes_in 13796529 74654 station_ip 5.119.135.125 74654 port 15728680 74654 nas_port_type Virtual 74654 remote_ip 5.5.5.231 74629 bytes_out 180338 74629 bytes_in 1532802 74629 station_ip 5.119.207.2 74629 port 15728657 74629 nas_port_type Virtual 74629 remote_ip 5.5.5.242 74631 username zoha 74631 unique_id port 74631 terminate_cause Lost-Carrier 74631 bytes_out 1096994 74631 bytes_in 13811676 74631 station_ip 5.119.207.2 74631 port 15728658 74631 nas_port_type Virtual 74631 remote_ip 5.5.5.242 74636 username amin.insta22 74636 unique_id port 74636 terminate_cause Lost-Carrier 74636 bytes_out 7889863 74636 bytes_in 38012483 74636 station_ip 31.56.220.63 74636 port 15728654 74636 nas_port_type Virtual 74636 remote_ip 5.5.5.244 74641 username ahmad 74641 unique_id port 74641 terminate_cause User-Request 74641 bytes_out 0 74641 bytes_in 0 74641 station_ip 86.57.80.183 74641 port 15728672 74641 nas_port_type Virtual 74641 remote_ip 5.5.5.237 74642 username reza 74642 unique_id port 74642 terminate_cause User-Request 74642 bytes_out 14346 74642 bytes_in 305212 74642 station_ip 37.129.161.226 74642 port 15728673 74642 nas_port_type Virtual 74642 remote_ip 5.5.5.245 74648 username alirezazamani 74648 unique_id port 74648 terminate_cause Lost-Carrier 74648 bytes_out 776663 74648 bytes_in 12373148 74648 station_ip 89.47.65.67 74648 port 15728678 74648 nas_port_type Virtual 74648 remote_ip 5.5.5.233 81130 unique_id port 81130 bytes_out 0 81130 bytes_in 0 81130 station_ip 5.119.114.69 81130 port 15728733 81130 nas_port_type Virtual 81132 username asadi 81132 unique_id port 81132 terminate_cause User-Request 74653 username alinezhad 74653 unique_id port 74653 terminate_cause User-Request 74653 bytes_out 13326 74653 bytes_in 25917 74653 station_ip 83.122.223.231 74653 port 15728686 74653 nas_port_type Virtual 74653 remote_ip 5.5.5.226 74657 username alirezazamani 74657 unique_id port 74657 terminate_cause User-Request 74657 bytes_out 339629 74657 bytes_in 11916715 74657 station_ip 31.57.128.251 74657 port 15728688 74657 nas_port_type Virtual 74657 remote_ip 5.5.5.228 74658 username amin.insta15 74658 unique_id port 74658 terminate_cause User-Request 74658 bytes_out 279801 74658 bytes_in 7617697 74658 station_ip 83.123.231.0 74658 port 15728690 74658 nas_port_type Virtual 74658 remote_ip 5.5.5.224 74661 username amin.insta15 74661 unique_id port 74661 terminate_cause User-Request 74661 bytes_out 128834 74661 bytes_in 1810171 74661 station_ip 83.123.231.0 74661 port 15728693 74661 nas_port_type Virtual 74661 remote_ip 5.5.5.224 74664 username alirezazamani 74664 unique_id port 74664 terminate_cause User-Request 74664 bytes_out 4901929 74664 bytes_in 114428386 74664 station_ip 31.57.128.251 74664 port 15728689 74664 nas_port_type Virtual 74664 remote_ip 5.5.5.228 74667 username zoha 74667 unique_id port 74667 terminate_cause Lost-Carrier 74667 bytes_out 142246 74667 bytes_in 983629 74667 station_ip 5.119.207.2 74667 port 15728697 74667 nas_port_type Virtual 74667 remote_ip 5.5.5.240 74669 username amin.insta21 74669 unique_id port 74669 terminate_cause Lost-Carrier 74669 bytes_out 701433 74669 bytes_in 5265721 74669 station_ip 151.235.112.223 74669 port 15728696 74669 nas_port_type Virtual 74669 remote_ip 5.5.5.223 74671 username tahani 74671 unique_id port 74671 terminate_cause User-Request 74671 bytes_out 131332 74671 bytes_in 1014205 74671 station_ip 83.122.60.24 74671 port 15728705 74671 nas_port_type Virtual 74671 remote_ip 5.5.5.217 74673 username amin.insta22 74673 unique_id port 74673 terminate_cause Lost-Carrier 74673 bytes_out 7316552 74673 bytes_in 209473649 74673 station_ip 5.233.51.222 74673 port 15728703 74673 nas_port_type Virtual 74673 remote_ip 5.5.5.219 74676 username mohammadi 81132 bytes_out 69808 74638 username zoha 74638 unique_id port 74638 terminate_cause User-Request 74638 bytes_out 610354 74638 bytes_in 4044175 74638 station_ip 5.119.207.2 74638 port 15728662 74638 nas_port_type Virtual 74638 remote_ip 5.5.5.242 74639 username nazanin 74639 kill_reason Wrong password 74639 unique_id port 74639 bytes_out 0 74639 bytes_in 0 74639 station_ip 5.119.80.120 74639 port 15728667 74639 nas_port_type Virtual 74640 username nazanin 74640 kill_reason Wrong password 74640 unique_id port 74640 bytes_out 0 74640 bytes_in 0 74640 station_ip 5.119.80.120 74640 port 15728668 74640 nas_port_type Virtual 74644 username amin.insta22 74644 unique_id port 74644 terminate_cause Lost-Carrier 74644 bytes_out 350901 74644 bytes_in 3255728 74644 station_ip 151.238.252.216 74644 port 15728674 74644 nas_port_type Virtual 74644 remote_ip 5.5.5.236 74645 username samira 74645 unique_id port 74645 terminate_cause Lost-Carrier 74645 bytes_out 1472350 74645 bytes_in 21819072 74645 station_ip 5.119.80.120 74645 port 15728671 74645 nas_port_type Virtual 74645 remote_ip 5.5.5.238 74646 username alinezhad 74646 unique_id port 74646 terminate_cause User-Request 74646 bytes_out 41126 74646 bytes_in 250022 74646 station_ip 37.129.205.168 74646 port 15728679 74646 nas_port_type Virtual 74646 remote_ip 5.5.5.232 74647 username alirezazamani 74647 unique_id port 74647 terminate_cause Lost-Carrier 74647 bytes_out 99836 74647 bytes_in 562400 74647 station_ip 89.47.65.67 74647 port 15728677 74647 nas_port_type Virtual 74647 remote_ip 5.5.5.234 81132 bytes_in 655242 81132 station_ip 83.122.141.139 81132 port 15728731 81132 nas_port_type Virtual 81132 remote_ip 5.5.5.211 81143 username zamanialireza 81143 unique_id port 81143 terminate_cause User-Request 81143 bytes_out 154482 74652 username aminsaeedi 74652 unique_id port 74652 terminate_cause User-Request 74652 bytes_out 118327 74652 bytes_in 1382383 74652 station_ip 31.56.154.41 74652 port 15728685 74652 nas_port_type Virtual 74652 remote_ip 5.5.5.227 74659 username amin.insta15 74659 unique_id port 74659 terminate_cause User-Request 74659 bytes_out 126959 74659 bytes_in 983385 74659 station_ip 83.123.231.0 74659 port 15728691 74659 nas_port_type Virtual 74659 remote_ip 5.5.5.224 74662 username amin.insta15 74662 unique_id port 74662 terminate_cause User-Request 74662 bytes_out 212379 74662 bytes_in 8046789 74662 station_ip 83.123.231.0 74662 port 15728694 74662 nas_port_type Virtual 74662 remote_ip 5.5.5.224 74672 username tahani 74672 unique_id port 74672 terminate_cause User-Request 74672 bytes_out 175984 74672 bytes_in 3869986 74672 station_ip 83.122.60.24 74672 port 15728706 74672 nas_port_type Virtual 74672 remote_ip 5.5.5.217 74677 username alirezazamani 74677 unique_id port 74677 terminate_cause User-Request 74677 bytes_out 141828902 74677 bytes_in 5167210925 74677 station_ip 31.57.128.251 74677 port 15728675 74677 nas_port_type Virtual 74677 remote_ip 5.5.5.235 74680 username ahmadi 74680 unique_id port 74680 terminate_cause User-Request 74680 bytes_out 155024 74680 bytes_in 1053156 74680 station_ip 83.123.144.241 74680 port 15728712 74680 nas_port_type Virtual 74680 remote_ip 5.5.5.215 81143 bytes_in 389924 81143 station_ip 5.134.153.58 81143 port 15728724 81143 nas_port_type Virtual 81143 remote_ip 5.5.5.209 81145 username forozande 81145 unique_id port 81145 terminate_cause User-Request 81145 bytes_out 282153 74684 username ahmadi 74684 unique_id port 74684 terminate_cause User-Request 74684 bytes_out 14924 74684 bytes_in 83658 74684 station_ip 83.123.144.241 74684 port 15728715 74684 nas_port_type Virtual 74684 remote_ip 5.5.5.215 74688 username amin.insta19 74655 username alinezhad 74655 unique_id port 74655 terminate_cause User-Request 74655 bytes_out 0 74655 bytes_in 0 74655 station_ip 83.123.123.151 74655 port 15728687 74655 nas_port_type Virtual 74655 remote_ip 5.5.5.225 74656 username alirezazamani 74656 unique_id port 74656 terminate_cause User-Request 74656 bytes_out 5811065 74656 bytes_in 276368248 74656 station_ip 31.57.128.251 74656 port 15728683 74656 nas_port_type Virtual 74656 remote_ip 5.5.5.228 74660 username amin.insta15 74660 unique_id port 74660 terminate_cause User-Request 74660 bytes_out 219447 74660 bytes_in 6368579 74660 station_ip 83.123.231.0 74660 port 15728692 74660 nas_port_type Virtual 74660 remote_ip 5.5.5.224 74663 username zoha 74663 unique_id port 74663 terminate_cause User-Request 74663 bytes_out 5809632 74663 bytes_in 32197544 74663 station_ip 5.119.207.2 74663 port 15728676 74663 nas_port_type Virtual 74663 remote_ip 5.5.5.240 74665 username alinezhad 74665 unique_id port 74665 terminate_cause User-Request 74665 bytes_out 10797 74665 bytes_in 19173 74665 station_ip 5.202.135.166 74665 port 15728699 74665 nas_port_type Virtual 74665 remote_ip 5.5.5.221 74666 username alirezazamani 74666 unique_id port 74666 terminate_cause User-Request 74666 bytes_out 36186 74666 bytes_in 108366 74666 station_ip 31.57.128.251 74666 port 15728700 74666 nas_port_type Virtual 74666 remote_ip 5.5.5.228 74668 username amin.insta19 74668 kill_reason Maximum check online fails reached 74668 unique_id port 74668 bytes_out 1181852 74668 bytes_in 9968447 74668 station_ip 5.120.137.56 74668 port 15728698 74668 nas_port_type Virtual 74668 remote_ip 5.5.5.222 74670 username reza 74670 unique_id port 74670 terminate_cause User-Request 74670 bytes_out 13768 74670 bytes_in 62171 74670 station_ip 37.129.155.109 74670 port 15728704 74670 nas_port_type Virtual 74670 remote_ip 5.5.5.218 74674 username alinezhad 74674 unique_id port 74674 terminate_cause User-Request 74674 bytes_out 0 74674 bytes_in 0 74674 station_ip 5.202.135.166 74674 port 15728707 74674 nas_port_type Virtual 74674 remote_ip 5.5.5.221 74675 username tahani 74675 unique_id port 74675 terminate_cause User-Request 74675 bytes_out 322454 74675 bytes_in 8262228 74675 station_ip 83.122.60.24 74675 port 15728708 74675 nas_port_type Virtual 74675 remote_ip 5.5.5.217 81134 bytes_out 0 81134 bytes_in 0 81134 station_ip 5.119.211.229 81134 port 15728738 81134 nas_port_type Virtual 81137 username soleymani 81137 kill_reason Maximum number of concurrent logins reached 81137 unique_id port 81137 bytes_out 0 74681 username alinezhad 74681 unique_id port 74681 terminate_cause User-Request 74681 bytes_out 0 74681 bytes_in 0 74681 station_ip 5.202.135.166 74681 port 15728713 74681 nas_port_type Virtual 74681 remote_ip 5.5.5.221 74682 username amin.insta19 74682 unique_id port 74682 terminate_cause Lost-Carrier 74682 bytes_out 14280267 74682 bytes_in 237650739 74682 station_ip 5.120.183.170 74682 port 15728702 74682 nas_port_type Virtual 74682 remote_ip 5.5.5.220 74685 username alirezazamani 74685 unique_id port 74685 terminate_cause User-Request 74685 bytes_out 64878767 74685 bytes_in 1785434483 74685 station_ip 31.57.128.251 74685 port 15728701 74685 nas_port_type Virtual 74685 remote_ip 5.5.5.228 74686 username alinezhad 74686 unique_id port 74686 terminate_cause User-Request 74686 bytes_out 0 74686 bytes_in 0 74686 station_ip 5.202.135.166 74686 port 15728718 74686 nas_port_type Virtual 74686 remote_ip 5.5.5.221 74691 username amin.insta19 74691 unique_id port 74691 terminate_cause Lost-Carrier 74691 bytes_out 1464655 74691 bytes_in 6869824 74691 station_ip 5.120.183.170 74691 port 15728722 74676 unique_id port 74676 terminate_cause User-Request 74676 bytes_out 56056 74676 bytes_in 298097 74676 station_ip 83.123.245.248 74676 port 15728710 74676 nas_port_type Virtual 74676 remote_ip 5.5.5.216 74678 username reza 74678 unique_id port 74678 terminate_cause User-Request 74678 bytes_out 11956 74678 bytes_in 60822 74678 station_ip 37.129.155.109 74678 port 15728709 74678 nas_port_type Virtual 74678 remote_ip 5.5.5.218 74687 username iranmanesh 74687 unique_id port 74687 terminate_cause Lost-Carrier 74687 bytes_out 8622591 74687 bytes_in 334770481 74687 station_ip 5.112.107.185 74687 port 15728640 74687 nas_port_type Virtual 74687 remote_ip 5.5.5.255 74689 username amin.insta22 74689 unique_id port 74689 terminate_cause Lost-Carrier 74689 bytes_out 1576289 74689 bytes_in 37789191 74689 station_ip 151.238.252.216 74689 port 15728720 74689 nas_port_type Virtual 74689 remote_ip 5.5.5.213 74693 username samira 74693 unique_id port 74693 terminate_cause Lost-Carrier 74693 bytes_out 12634118 74693 bytes_in 211638108 74693 station_ip 5.119.80.120 74693 port 15728717 74693 nas_port_type Virtual 74693 remote_ip 5.5.5.238 74696 username rashidi 74696 unique_id port 74696 terminate_cause Lost-Carrier 74696 bytes_out 20216432 74696 bytes_in 28877156 74696 station_ip 5.119.150.128 74696 port 15728716 74696 nas_port_type Virtual 74696 remote_ip 5.5.5.214 74697 username ahmadi 74697 unique_id port 74697 terminate_cause User-Request 74697 bytes_out 24375 74697 bytes_in 289191 74697 station_ip 83.123.105.62 74697 port 15728728 74697 nas_port_type Virtual 74697 remote_ip 5.5.5.209 74702 username zoha 74702 unique_id port 74702 terminate_cause Lost-Carrier 74702 bytes_out 2548537 74702 bytes_in 15159265 74702 station_ip 5.120.101.214 74702 port 15728724 74702 nas_port_type Virtual 74702 remote_ip 5.5.5.210 74707 username amin.insta22 74707 unique_id port 74707 terminate_cause Lost-Carrier 74707 bytes_out 613478 74707 bytes_in 5336259 74707 station_ip 151.238.252.216 74707 port 15728732 74707 nas_port_type Virtual 74707 remote_ip 5.5.5.213 74710 username amin.insta22 74710 kill_reason Maximum number of concurrent logins reached 74710 unique_id port 74710 bytes_out 0 74710 bytes_in 0 74710 station_ip 5.119.209.119 74710 port 15728743 74710 nas_port_type Virtual 74714 username mobina 74714 unique_id port 74714 terminate_cause User-Request 74714 bytes_out 0 74714 bytes_in 0 74714 station_ip 5.124.166.30 74714 port 15728746 74714 nas_port_type Virtual 74714 remote_ip 5.5.5.201 74715 username amin.insta22 74715 kill_reason Maximum number of concurrent logins reached 74715 unique_id port 74715 bytes_out 0 74715 bytes_in 0 74715 station_ip 5.119.209.119 74715 port 15728747 74715 nas_port_type Virtual 74718 username amin.insta22 74718 kill_reason Maximum number of concurrent logins reached 74718 unique_id port 74718 bytes_out 0 74718 bytes_in 0 74718 station_ip 5.119.209.119 74718 port 15728750 74718 nas_port_type Virtual 74720 username amin.insta22 74720 kill_reason Maximum number of concurrent logins reached 74720 unique_id port 74720 bytes_out 0 74720 bytes_in 0 74720 station_ip 5.119.209.119 74720 port 15728752 74720 nas_port_type Virtual 74731 username ahmadi 74731 unique_id port 74731 terminate_cause User-Request 74731 bytes_out 0 74731 bytes_in 0 74731 station_ip 83.123.21.198 74731 port 15728764 74731 nas_port_type Virtual 74731 remote_ip 5.5.5.197 74734 username alinezhad 74734 unique_id port 74734 terminate_cause User-Request 74734 bytes_out 0 74734 bytes_in 0 74734 station_ip 5.202.7.4 74734 port 15728765 74734 nas_port_type Virtual 74734 remote_ip 5.5.5.200 74738 username reza 74738 unique_id port 74738 terminate_cause User-Request 74688 unique_id port 74688 terminate_cause Lost-Carrier 74688 bytes_out 706485 74688 bytes_in 1698765 74688 station_ip 5.120.183.170 74688 port 15728719 74688 nas_port_type Virtual 74688 remote_ip 5.5.5.220 74690 username ahmad 74690 unique_id port 74690 terminate_cause User-Request 74690 bytes_out 92124 74690 bytes_in 703292 74690 station_ip 83.123.35.78 74690 port 15728721 74690 nas_port_type Virtual 74690 remote_ip 5.5.5.212 81136 kill_reason Maximum number of concurrent logins reached 81136 unique_id port 81136 bytes_out 0 81136 bytes_in 0 81136 station_ip 5.119.211.229 81136 port 15728739 81136 nas_port_type Virtual 81141 username reza 81141 unique_id port 74700 username hamideh 74700 unique_id port 74700 terminate_cause User-Request 74700 bytes_out 622333 74700 bytes_in 9417942 74700 station_ip 5.119.86.57 74700 port 15728730 74700 nas_port_type Virtual 74700 remote_ip 5.5.5.208 74701 username hamideh 74701 unique_id port 74701 terminate_cause Lost-Carrier 74701 bytes_out 9624 74701 bytes_in 131236 74701 station_ip 5.119.86.57 74701 port 15728733 74701 nas_port_type Virtual 74701 remote_ip 5.5.5.208 74704 username alinezhad 74704 unique_id port 74704 terminate_cause User-Request 74704 bytes_out 0 74704 bytes_in 0 74704 station_ip 83.123.81.32 74704 port 15728737 74704 nas_port_type Virtual 74704 remote_ip 5.5.5.204 74708 username ahmadi 74708 unique_id port 74708 terminate_cause User-Request 74708 bytes_out 20689 74708 bytes_in 160308 74708 station_ip 83.123.66.242 74708 port 15728740 74708 nas_port_type Virtual 74708 remote_ip 5.5.5.203 74711 username amin.insta22 74711 kill_reason Maximum number of concurrent logins reached 74711 unique_id port 74711 bytes_out 0 74711 bytes_in 0 74711 station_ip 5.119.209.119 74711 port 15728744 74711 nas_port_type Virtual 74716 username amin.insta22 74716 kill_reason Maximum number of concurrent logins reached 74716 unique_id port 74716 bytes_out 0 74716 bytes_in 0 74716 station_ip 5.119.209.119 74716 port 15728748 74716 nas_port_type Virtual 74721 username amin.insta22 74721 kill_reason Maximum number of concurrent logins reached 74721 unique_id port 74721 bytes_out 0 74721 bytes_in 0 74721 station_ip 5.119.209.119 74721 port 15728753 74721 nas_port_type Virtual 74722 username amin.insta22 74722 kill_reason Maximum number of concurrent logins reached 74722 unique_id port 74722 bytes_out 0 74722 bytes_in 0 74722 station_ip 5.119.209.119 74722 port 15728754 74722 nas_port_type Virtual 74723 username amin.insta22 74723 kill_reason Maximum number of concurrent logins reached 74723 unique_id port 74723 bytes_out 0 74723 bytes_in 0 74723 station_ip 5.119.209.119 74723 port 15728755 74723 nas_port_type Virtual 74725 username alinezhad 74725 unique_id port 74725 terminate_cause User-Request 74725 bytes_out 16846 74725 bytes_in 36911 74725 station_ip 5.202.7.4 74725 port 15728757 74725 nas_port_type Virtual 74725 remote_ip 5.5.5.200 74729 username alinezhad 74729 unique_id port 74729 terminate_cause User-Request 74729 bytes_out 0 74729 bytes_in 0 74729 station_ip 5.202.7.4 74729 port 15728761 74729 nas_port_type Virtual 74729 remote_ip 5.5.5.200 74730 username iranmanesh 74730 kill_reason Maximum check online fails reached 74730 unique_id port 74730 bytes_out 230385 74730 bytes_in 777170 74730 station_ip 5.114.121.234 74730 port 15728760 74730 nas_port_type Virtual 74730 remote_ip 5.5.5.198 74732 username alinezhad 74732 unique_id port 74732 terminate_cause User-Request 74732 bytes_out 18605 74732 bytes_in 66849 74732 station_ip 5.202.7.4 74732 port 15728763 74732 nas_port_type Virtual 74732 remote_ip 5.5.5.200 74733 username hamideh 74733 unique_id port 74733 terminate_cause Lost-Carrier 74691 nas_port_type Virtual 74691 remote_ip 5.5.5.220 74692 username alinezhad 74692 unique_id port 74692 terminate_cause User-Request 74692 bytes_out 0 74692 bytes_in 0 74692 station_ip 5.202.135.166 74692 port 15728725 74692 nas_port_type Virtual 74692 remote_ip 5.5.5.221 74695 username tahani 74695 unique_id port 74695 terminate_cause User-Request 74695 bytes_out 63157 74695 bytes_in 520822 74695 station_ip 83.122.60.24 74695 port 15728727 74695 nas_port_type Virtual 74695 remote_ip 5.5.5.217 74698 username alinezhad 74698 unique_id port 74698 terminate_cause User-Request 74698 bytes_out 0 74698 bytes_in 0 74698 station_ip 113.203.25.46 74698 port 15728731 74698 nas_port_type Virtual 74698 remote_ip 5.5.5.207 81137 bytes_in 0 81137 station_ip 5.119.211.229 81137 port 15728741 81137 nas_port_type Virtual 81140 username amirhosein 81140 unique_id port 81140 terminate_cause Lost-Carrier 81140 bytes_out 671600 81140 bytes_in 11421785 74703 username mohammadi 74703 unique_id port 74703 terminate_cause User-Request 74703 bytes_out 116048 74703 bytes_in 1631400 74703 station_ip 83.123.138.100 74703 port 15728736 74703 nas_port_type Virtual 74703 remote_ip 5.5.5.205 74705 username amin.insta19 74705 unique_id port 74705 terminate_cause Lost-Carrier 74705 bytes_out 4701394 74705 bytes_in 19311316 74705 station_ip 5.120.183.170 74705 port 15728729 74705 nas_port_type Virtual 74705 remote_ip 5.5.5.220 74706 username zoha 74706 unique_id port 74706 terminate_cause Lost-Carrier 74706 bytes_out 424351 74706 bytes_in 2627211 74706 station_ip 5.120.101.214 74706 port 15728735 74706 nas_port_type Virtual 74706 remote_ip 5.5.5.206 74709 username amin.insta22 74709 kill_reason Maximum number of concurrent logins reached 74709 unique_id port 74709 bytes_out 0 74709 bytes_in 0 74709 station_ip 5.119.209.119 74709 port 15728742 74709 nas_port_type Virtual 74712 username amin.insta22 74712 kill_reason Maximum number of concurrent logins reached 74712 unique_id port 74712 bytes_out 0 74712 bytes_in 0 74712 station_ip 5.119.209.119 74712 port 15728745 74712 nas_port_type Virtual 74713 username zoha 74713 unique_id port 74713 terminate_cause Lost-Carrier 74713 bytes_out 286040 74713 bytes_in 1668045 74713 station_ip 5.120.101.214 74713 port 15728739 74713 nas_port_type Virtual 74713 remote_ip 5.5.5.206 74717 username amin.insta22 74717 kill_reason Maximum number of concurrent logins reached 74717 unique_id port 74717 bytes_out 0 74717 bytes_in 0 74717 station_ip 5.119.209.119 74717 port 15728749 74717 nas_port_type Virtual 74719 username amin.insta22 74719 kill_reason Maximum number of concurrent logins reached 74719 unique_id port 74719 bytes_out 0 74719 bytes_in 0 74719 station_ip 5.119.209.119 74719 port 15728751 74719 nas_port_type Virtual 74724 username amin.insta22 74724 unique_id port 74724 terminate_cause Lost-Carrier 74724 bytes_out 580652 74724 bytes_in 13533289 74724 station_ip 5.119.209.119 74724 port 15728741 74724 nas_port_type Virtual 74724 remote_ip 5.5.5.202 74726 username amin.insta22 74726 unique_id port 74726 terminate_cause Lost-Carrier 74726 bytes_out 9614817 74726 bytes_in 312326350 74726 station_ip 5.119.209.119 74726 port 15728756 74726 nas_port_type Virtual 74726 remote_ip 5.5.5.202 74727 username amin.insta13 74727 unique_id port 74727 terminate_cause User-Request 74727 bytes_out 572042 74727 bytes_in 7520113 74727 station_ip 113.203.67.197 74727 port 15728758 74727 nas_port_type Virtual 74727 remote_ip 5.5.5.199 74728 username amin.insta13 74728 unique_id port 74728 terminate_cause User-Request 74728 bytes_out 683642 74728 bytes_in 20092857 74728 station_ip 113.203.67.197 74728 port 15728759 74728 nas_port_type Virtual 74728 remote_ip 5.5.5.199 74735 username reza 74735 unique_id port 74735 terminate_cause User-Request 74735 bytes_out 63025 74735 bytes_in 1205908 74735 station_ip 83.123.90.29 74735 port 15728766 74735 nas_port_type Virtual 74735 remote_ip 5.5.5.196 74737 username ahmadi 74737 unique_id port 74737 terminate_cause User-Request 74737 bytes_out 0 74737 bytes_in 0 74737 station_ip 83.123.21.198 74737 port 15728771 74737 nas_port_type Virtual 74737 remote_ip 5.5.5.197 74740 username alinezhad 74740 unique_id port 74740 terminate_cause User-Request 74740 bytes_out 0 74740 bytes_in 0 74740 station_ip 5.202.7.4 74740 port 15728773 74740 nas_port_type Virtual 74740 remote_ip 5.5.5.200 74745 username zoha 74745 unique_id port 74745 terminate_cause Lost-Carrier 74745 bytes_out 2342637 74745 bytes_in 13237755 74745 station_ip 5.120.101.214 74745 port 15728762 74745 nas_port_type Virtual 74745 remote_ip 5.5.5.206 74746 username amin.insta01 74746 unique_id port 74746 terminate_cause User-Request 74746 bytes_out 718620 74746 bytes_in 6394579 74746 station_ip 89.199.124.12 74746 port 15728778 74746 nas_port_type Virtual 74746 remote_ip 5.5.5.190 74752 username zoha 74752 unique_id port 74752 terminate_cause Lost-Carrier 74752 bytes_out 3599665 74752 bytes_in 31652278 74752 station_ip 5.120.101.214 74752 port 15728781 74752 nas_port_type Virtual 74752 remote_ip 5.5.5.206 74753 username alinezhad 74753 unique_id port 74753 terminate_cause User-Request 74753 bytes_out 0 74753 bytes_in 0 74753 station_ip 5.202.7.4 74753 port 15728784 74753 nas_port_type Virtual 74753 remote_ip 5.5.5.200 81138 terminate_cause Lost-Carrier 81138 bytes_out 201076 81138 bytes_in 759705 81138 station_ip 5.120.44.10 81138 port 15728717 81138 nas_port_type Virtual 81138 remote_ip 5.5.5.213 81139 username soleymani 81139 unique_id port 81139 terminate_cause User-Request 81139 bytes_out 0 81139 bytes_in 0 81139 station_ip 5.119.211.229 81139 port 15728742 81139 nas_port_type Virtual 81139 remote_ip 5.5.5.204 81142 username soleymani 81142 unique_id port 74762 username ahmadi 74762 unique_id port 74762 terminate_cause User-Request 74762 bytes_out 22987 74762 bytes_in 86822 74762 station_ip 83.123.94.70 74762 port 15728643 74762 nas_port_type Virtual 74762 remote_ip 5.5.5.255 74764 username amin.insta01 74764 unique_id port 74764 terminate_cause User-Request 74764 bytes_out 86253 74764 bytes_in 317947 74764 station_ip 89.199.107.56 74764 port 15728644 74764 nas_port_type Virtual 74764 remote_ip 5.5.5.252 74767 username alinezhad 74767 unique_id port 74767 terminate_cause User-Request 74767 bytes_out 0 74767 bytes_in 0 74767 station_ip 5.202.8.30 74767 port 15728648 74767 nas_port_type Virtual 74767 remote_ip 5.5.5.251 74769 username aminvpn 74769 mac 74769 bytes_out 0 74769 bytes_in 0 74769 station_ip 89.199.107.56 74769 port 25 74769 unique_id port 74769 remote_ip 10.8.1.10 74770 username aminvpn 74770 mac 74770 bytes_out 0 74770 bytes_in 0 74770 station_ip 89.199.107.56 74770 port 25 74770 unique_id port 74770 remote_ip 10.8.1.10 74771 username ahmadi 74771 unique_id port 74771 terminate_cause User-Request 74771 bytes_out 0 74771 bytes_in 0 74771 station_ip 83.123.94.70 74771 port 15728651 74771 nas_port_type Virtual 74771 remote_ip 5.5.5.255 74773 username aminvpn 74773 mac 74773 bytes_out 0 74773 bytes_in 0 74773 station_ip 89.199.107.56 74773 port 25 74773 unique_id port 74773 remote_ip 10.8.1.10 74774 username aminvpn 74774 mac 74774 bytes_out 0 74774 bytes_in 0 74774 station_ip 89.199.107.56 74733 bytes_out 5362631 74733 bytes_in 99203868 74733 station_ip 5.119.86.57 74733 port 15728734 74733 nas_port_type Virtual 74733 remote_ip 5.5.5.208 74736 username alinezhad 74736 unique_id port 74736 terminate_cause User-Request 74736 bytes_out 0 74736 bytes_in 0 74736 station_ip 5.202.7.4 74736 port 15728767 74736 nas_port_type Virtual 74736 remote_ip 5.5.5.200 74741 username rashidi 74741 unique_id port 74741 terminate_cause User-Request 74741 bytes_out 5330805 74741 bytes_in 2586577 74741 station_ip 5.120.45.233 74741 port 15728769 74741 nas_port_type Virtual 74741 remote_ip 5.5.5.194 74743 username ahmadi 74743 unique_id port 74743 terminate_cause User-Request 74743 bytes_out 30880 74743 bytes_in 200637 74743 station_ip 83.123.21.198 74743 port 15728776 74743 nas_port_type Virtual 74743 remote_ip 5.5.5.197 74744 username goli 74744 unique_id port 74744 terminate_cause User-Request 74744 bytes_out 51917 74744 bytes_in 632045 74744 station_ip 37.129.64.86 74744 port 15728777 74744 nas_port_type Virtual 74744 remote_ip 5.5.5.191 81140 station_ip 5.119.220.147 81140 port 15728700 81140 nas_port_type Virtual 81140 remote_ip 5.5.5.218 81144 username madadi 81144 unique_id port 81144 terminate_cause Lost-Carrier 81144 bytes_out 6853 81144 bytes_in 128716 74750 username aminvpn 74750 unique_id port 74750 terminate_cause Lost-Carrier 74750 bytes_out 4519174 74750 bytes_in 80098661 74750 station_ip 89.199.124.12 74750 port 15728780 74750 nas_port_type Virtual 74750 remote_ip 5.5.5.189 74758 username iranmanesh 74758 unique_id port 74758 terminate_cause Admin-Reboot 74758 bytes_out 132882 74758 bytes_in 3475978 74758 station_ip 5.112.36.157 74758 port 15728787 74758 nas_port_type Virtual 74758 remote_ip 5.5.5.184 74760 username ahmadi 74760 unique_id port 74760 terminate_cause User-Request 74760 bytes_out 26001 74760 bytes_in 128254 74760 station_ip 83.123.94.70 74760 port 15728640 74760 nas_port_type Virtual 74760 remote_ip 5.5.5.255 74763 username amin.insta22 74763 unique_id port 74763 terminate_cause User-Request 74763 bytes_out 198080 74763 bytes_in 1483143 74763 station_ip 5.119.66.54 74763 port 15728641 74763 nas_port_type Virtual 74763 remote_ip 5.5.5.254 74775 username aminvpn 74775 mac 74775 bytes_out 0 74775 bytes_in 0 74775 station_ip 89.199.107.56 74775 port 25 74775 unique_id port 74775 remote_ip 10.8.1.10 74776 username aminvpn 74776 mac 74776 bytes_out 0 74776 bytes_in 0 74776 station_ip 89.199.107.56 74776 port 25 74776 unique_id port 74776 remote_ip 10.8.1.10 74779 username aminvpn 74779 mac 74779 bytes_out 0 74779 bytes_in 0 74779 station_ip 89.199.107.56 74779 port 25 74779 unique_id port 74779 remote_ip 10.8.1.10 74780 username aminvpn 74780 mac 74780 bytes_out 0 74780 bytes_in 0 74780 station_ip 89.199.107.56 74780 port 25 74780 unique_id port 74780 remote_ip 10.8.1.10 74785 username aminvpn 74785 mac 74785 bytes_out 0 74785 bytes_in 0 74785 station_ip 89.199.107.56 74785 port 25 74785 unique_id port 74785 remote_ip 10.8.1.10 81144 station_ip 5.119.44.103 81144 port 15728737 81144 nas_port_type Virtual 81144 remote_ip 5.5.5.205 81147 username forozande 81147 unique_id port 81147 terminate_cause User-Request 81147 bytes_out 88856 81147 bytes_in 33779 74788 username aminvpn 74788 mac 74788 bytes_out 0 74788 bytes_in 0 74788 station_ip 89.199.107.56 74788 port 25 74788 unique_id port 74788 remote_ip 10.8.1.10 74789 username aminvpn 74789 mac 74789 bytes_out 0 74789 bytes_in 0 74738 bytes_out 6286 74738 bytes_in 31618 74738 station_ip 83.123.90.29 74738 port 15728770 74738 nas_port_type Virtual 74738 remote_ip 5.5.5.196 74739 username amin.insta22 74739 unique_id port 74739 terminate_cause Lost-Carrier 74739 bytes_out 338295 74739 bytes_in 2113459 74739 station_ip 5.119.91.100 74739 port 15728768 74739 nas_port_type Virtual 74739 remote_ip 5.5.5.195 81141 terminate_cause User-Request 81141 bytes_out 56530 81141 bytes_in 649800 81141 station_ip 113.203.56.55 81141 port 15728740 81141 nas_port_type Virtual 81141 remote_ip 5.5.5.206 81146 username asadi 81146 unique_id port 74748 username amin.insta01 74748 unique_id port 74748 terminate_cause User-Request 74748 bytes_out 499228 74748 bytes_in 12636311 74748 station_ip 89.199.124.12 74748 port 15728779 74748 nas_port_type Virtual 74748 remote_ip 5.5.5.190 74749 username iranmanesh 74749 unique_id port 74749 terminate_cause Lost-Carrier 74749 bytes_out 3077580 74749 bytes_in 28095022 74749 station_ip 5.114.121.234 74749 port 15728772 74749 nas_port_type Virtual 74749 remote_ip 5.5.5.193 74751 username alirezazamani 74751 unique_id port 74751 terminate_cause Lost-Carrier 74751 bytes_out 202884 74751 bytes_in 1309157 74751 station_ip 5.119.244.191 74751 port 15728782 74751 nas_port_type Virtual 74751 remote_ip 5.5.5.188 74754 username rashidi 74754 unique_id port 74754 terminate_cause User-Request 74754 bytes_out 13145909 74754 bytes_in 55098637 74754 station_ip 5.120.45.233 74754 port 15728775 74754 nas_port_type Virtual 74754 remote_ip 5.5.5.194 74755 username amin.insta21 74755 unique_id port 74755 terminate_cause User-Request 74755 bytes_out 4151974 74755 bytes_in 42182921 74755 station_ip 151.235.108.35 74755 port 15728783 74755 nas_port_type Virtual 74755 remote_ip 5.5.5.187 74759 username amin.insta22 74759 unique_id port 74759 terminate_cause Admin-Reboot 74759 bytes_out 35960424 74759 bytes_in 72055908 74759 station_ip 151.238.252.216 74759 port 15728714 74759 nas_port_type Virtual 74759 remote_ip 5.5.5.236 74761 username hamideh 74761 unique_id port 74761 terminate_cause Lost-Carrier 74761 bytes_out 251424 74761 bytes_in 2567300 74761 station_ip 5.119.237.138 74761 port 15728642 74761 nas_port_type Virtual 74761 remote_ip 5.5.5.253 74765 username hamideh 74765 unique_id port 74765 terminate_cause Lost-Carrier 74765 bytes_out 153363 74765 bytes_in 2612387 74765 station_ip 5.119.237.138 74765 port 15728645 74765 nas_port_type Virtual 74765 remote_ip 5.5.5.253 74766 username alinezhad 74766 unique_id port 74766 terminate_cause User-Request 74766 bytes_out 0 74766 bytes_in 0 74766 station_ip 5.202.8.30 74766 port 15728646 74766 nas_port_type Virtual 74766 remote_ip 5.5.5.251 74768 username hamideh 74768 unique_id port 74768 terminate_cause Lost-Carrier 74768 bytes_out 708438 74768 bytes_in 20030155 74768 station_ip 5.119.237.138 74768 port 15728649 74768 nas_port_type Virtual 74768 remote_ip 5.5.5.253 74772 username aminvpn 74772 mac 74772 bytes_out 0 74772 bytes_in 0 74772 station_ip 89.199.107.56 74772 port 25 74772 unique_id port 74772 remote_ip 10.8.1.10 74781 username aminvpn 74781 mac 74781 bytes_out 0 74781 bytes_in 0 74781 station_ip 89.199.107.56 74781 port 25 74781 unique_id port 74781 remote_ip 10.8.1.10 74782 username aminvpn 74782 mac 74782 bytes_out 0 74782 bytes_in 0 74782 station_ip 89.199.107.56 74782 port 25 74782 unique_id port 74782 remote_ip 10.8.1.10 74790 username aminvpn 74790 mac 74790 bytes_out 0 74790 bytes_in 0 74790 station_ip 89.199.107.56 74790 port 25 74790 unique_id port 74774 port 25 74774 unique_id port 74774 remote_ip 10.8.1.10 74777 username aminvpn 74777 mac 74777 bytes_out 0 74777 bytes_in 0 74777 station_ip 89.199.107.56 74777 port 25 74777 unique_id port 74777 remote_ip 10.8.1.10 74778 username aminvpn 74778 mac 74778 bytes_out 0 74778 bytes_in 0 74778 station_ip 89.199.107.56 74778 port 25 74778 unique_id port 74778 remote_ip 10.8.1.10 74783 username aminvpn 74783 mac 74783 bytes_out 0 74783 bytes_in 0 74783 station_ip 89.199.107.56 74783 port 25 74783 unique_id port 74783 remote_ip 10.8.1.10 74784 username aminvpn 74784 mac 74784 bytes_out 0 74784 bytes_in 0 74784 station_ip 89.199.107.56 74784 port 25 74784 unique_id port 74784 remote_ip 10.8.1.10 74786 username aminvpn 74786 mac 74786 bytes_out 16612 74786 bytes_in 33749 74786 station_ip 89.199.107.56 74786 port 25 74786 unique_id port 74786 remote_ip 10.8.1.10 74796 username aminvpn 74796 mac 74796 bytes_out 0 74796 bytes_in 0 74796 station_ip 89.199.107.56 74796 port 8 74796 unique_id port 74796 remote_ip 10.8.0.6 74797 username aminvpn 74797 mac 74797 bytes_out 0 74797 bytes_in 0 74797 station_ip 89.199.107.56 74797 port 8 74797 unique_id port 74797 remote_ip 10.8.0.6 74799 username aminvpn 74799 mac 74799 bytes_out 0 74799 bytes_in 0 74799 station_ip 89.199.107.56 74799 port 8 74799 unique_id port 74799 remote_ip 10.8.0.6 74800 username aminvpn 74800 mac 74800 bytes_out 0 74800 bytes_in 0 74800 station_ip 89.199.107.56 74800 port 8 74800 unique_id port 74800 remote_ip 10.8.0.6 74801 username aminvpn 74801 mac 74801 bytes_out 0 74801 bytes_in 0 74801 station_ip 89.199.107.56 74801 port 8 74801 unique_id port 74801 remote_ip 10.8.0.6 74806 username aminvpn 74806 mac 74806 bytes_out 0 74806 bytes_in 0 74806 station_ip 89.199.107.56 74806 port 9 74806 unique_id port 74806 remote_ip 10.8.0.6 81142 terminate_cause Lost-Carrier 81142 bytes_out 275963 81142 bytes_in 309752 81142 station_ip 5.119.170.32 81142 port 15728723 81142 nas_port_type Virtual 81142 remote_ip 5.5.5.210 81151 username reza 81151 unique_id port 74817 username aminvpn 74817 mac 74817 bytes_out 0 74817 bytes_in 0 74817 station_ip 89.199.107.56 74817 port 8 74817 unique_id port 74817 remote_ip 10.8.0.6 74818 username aminvpn 74818 mac 74818 bytes_out 0 74818 bytes_in 0 74818 station_ip 89.199.107.56 74818 port 8 74818 unique_id port 74818 remote_ip 10.8.0.6 74822 username mobina 74822 unique_id port 74822 terminate_cause User-Request 74822 bytes_out 19270650 74822 bytes_in 491969323 74822 station_ip 5.219.207.88 74822 port 15728650 74822 nas_port_type Virtual 74822 remote_ip 5.5.5.249 74826 username aminvpn 74826 mac 74826 bytes_out 0 74826 bytes_in 0 74826 station_ip 89.199.107.56 74826 port 25 74826 unique_id port 74826 remote_ip 10.8.1.10 74827 username aminvpn 74827 mac 74827 bytes_out 0 74827 bytes_in 0 74827 station_ip 89.199.107.56 74827 port 25 74827 unique_id port 74827 remote_ip 10.8.1.10 74832 username aminvpn 74832 mac 74832 bytes_out 0 74832 bytes_in 0 74832 station_ip 89.199.107.56 74832 port 25 74832 unique_id port 74832 remote_ip 10.8.1.10 74834 username aminvpn 74834 mac 74834 bytes_out 0 74834 bytes_in 0 74834 station_ip 89.199.107.56 74834 port 25 74834 unique_id port 74789 station_ip 89.199.107.56 74789 port 25 74789 unique_id port 74789 remote_ip 10.8.1.10 74793 username alinezhad 74793 unique_id port 74793 terminate_cause User-Request 74793 bytes_out 14719 74793 bytes_in 37826 74793 station_ip 5.202.8.30 74793 port 15728654 74793 nas_port_type Virtual 74793 remote_ip 5.5.5.251 74794 username aminvpn 74794 mac 74794 bytes_out 0 74794 bytes_in 0 74794 station_ip 89.199.107.56 74794 port 8 74794 unique_id port 74794 remote_ip 10.8.0.6 74795 username aminvpn 74795 mac 74795 bytes_out 0 74795 bytes_in 0 74795 station_ip 89.199.107.56 74795 port 8 74795 unique_id port 74795 remote_ip 10.8.0.6 74804 username aminvpn 74804 mac 74804 bytes_out 0 74804 bytes_in 0 74804 station_ip 89.199.107.56 74804 port 8 74804 unique_id port 74804 remote_ip 10.8.0.6 74805 username aminvpn 74805 mac 74805 bytes_out 0 74805 bytes_in 0 74805 station_ip 89.199.107.56 74805 port 8 74805 unique_id port 74805 remote_ip 10.8.0.6 74808 username aminvpn 74808 mac 74808 bytes_out 0 74808 bytes_in 0 74808 station_ip 89.199.107.56 74808 port 9 74808 unique_id port 74808 remote_ip 10.8.0.6 74809 username aminvpn 74809 mac 74809 bytes_out 0 74809 bytes_in 0 74809 station_ip 89.199.107.56 74809 port 8 74809 unique_id port 74809 remote_ip 10.8.0.6 74813 username aminvpn 74813 mac 74813 bytes_out 0 74813 bytes_in 0 74813 station_ip 89.199.107.56 74813 port 8 74813 unique_id port 74813 remote_ip 10.8.0.6 74814 username aminvpn 74814 mac 74814 bytes_out 0 74814 bytes_in 0 74814 station_ip 89.199.107.56 74814 port 8 74814 unique_id port 74814 remote_ip 10.8.0.6 74815 username aminvpn 74815 mac 74815 bytes_out 0 74815 bytes_in 0 74815 station_ip 89.199.107.56 74815 port 8 74815 unique_id port 74815 remote_ip 10.8.0.6 74823 username aminvpn 74823 mac 74823 bytes_out 0 74823 bytes_in 0 74823 station_ip 89.199.107.56 74823 port 25 74823 unique_id port 74823 remote_ip 10.8.1.10 74828 username aminvpn 74828 mac 74828 bytes_out 0 74828 bytes_in 0 74828 station_ip 89.199.107.56 74828 port 25 74828 unique_id port 74828 remote_ip 10.8.1.10 74829 username aminvpn 74829 mac 74829 bytes_out 0 74829 bytes_in 0 74829 station_ip 89.199.107.56 74829 port 25 74829 unique_id port 74829 remote_ip 10.8.1.10 74836 username aminvpn 74836 mac 74836 bytes_out 0 74836 bytes_in 0 74836 station_ip 89.199.107.56 74836 port 25 74836 unique_id port 74836 remote_ip 10.8.1.10 74837 username aminvpn 74837 mac 74837 bytes_out 0 74837 bytes_in 0 74837 station_ip 89.199.107.56 74837 port 25 74837 unique_id port 74837 remote_ip 10.8.1.10 74838 username aminvpn 74838 mac 74838 bytes_out 0 74838 bytes_in 0 74838 station_ip 89.199.107.56 74838 port 25 74838 unique_id port 74838 remote_ip 10.8.1.10 74839 username aminvpn 74839 mac 74839 bytes_out 0 74839 bytes_in 0 74839 station_ip 89.199.107.56 74839 port 25 74839 unique_id port 74839 remote_ip 10.8.1.10 74848 username aminvpn 74848 mac 74848 bytes_out 0 74848 bytes_in 0 74848 station_ip 89.199.107.56 74848 port 25 74848 unique_id port 74848 remote_ip 10.8.1.10 74849 username aminvpn 74849 mac 74849 bytes_out 0 74849 bytes_in 0 74849 station_ip 89.199.107.56 74849 port 25 74849 unique_id port 74849 remote_ip 10.8.1.10 74790 remote_ip 10.8.1.10 74791 username aminvpn 74791 mac 74791 bytes_out 0 74791 bytes_in 0 74791 station_ip 89.199.107.56 74791 port 25 74791 unique_id port 74791 remote_ip 10.8.1.10 74792 username aminvpn 74792 unique_id port 74792 terminate_cause Lost-Carrier 74792 bytes_out 203262 74792 bytes_in 1722883 74792 station_ip 2.183.249.152 74792 port 15728652 74792 nas_port_type Virtual 74792 remote_ip 5.5.5.248 74798 username aminvpn 74798 mac 74798 bytes_out 0 74798 bytes_in 0 74798 station_ip 89.199.107.56 74798 port 8 74798 unique_id port 74798 remote_ip 10.8.0.6 74802 username aminvpn 74802 mac 74802 bytes_out 0 74802 bytes_in 0 74802 station_ip 89.199.107.56 74802 port 8 74802 unique_id port 74802 remote_ip 10.8.0.6 74803 username aminvpn 74803 mac 74803 bytes_out 0 74803 bytes_in 0 74803 station_ip 89.199.107.56 74803 port 8 74803 unique_id port 74803 remote_ip 10.8.0.6 74807 username aminvpn 74807 mac 74807 bytes_out 0 74807 bytes_in 0 74807 station_ip 89.199.107.56 74807 port 8 74807 unique_id port 74807 remote_ip 10.8.0.6 74810 username aminvpn 74810 mac 74810 bytes_out 0 74810 bytes_in 0 74810 station_ip 89.199.107.56 74810 port 8 74810 unique_id port 74810 remote_ip 10.8.0.6 74811 username aminvpn 74811 mac 74811 bytes_out 0 74811 bytes_in 0 74811 station_ip 89.199.107.56 74811 port 8 74811 unique_id port 74811 remote_ip 10.8.0.6 74812 username aminvpn 74812 mac 74812 bytes_out 0 74812 bytes_in 0 74812 station_ip 89.199.107.56 74812 port 8 74812 unique_id port 74812 remote_ip 10.8.0.6 74819 username aminvpn 74819 mac 74819 bytes_out 0 74819 bytes_in 0 74819 station_ip 89.199.107.56 74819 port 8 74819 unique_id port 74819 remote_ip 10.8.0.6 74820 username aminvpn 74820 mac 74820 bytes_out 0 74820 bytes_in 0 74820 station_ip 89.199.107.56 74820 port 8 74820 unique_id port 74820 remote_ip 10.8.0.6 74821 username aminvpn 74821 mac 74821 bytes_out 0 74821 bytes_in 0 74821 station_ip 89.199.107.56 74821 port 8 74821 unique_id port 74821 remote_ip 10.8.0.6 74824 username aminvpn 74824 mac 74824 bytes_out 0 74824 bytes_in 0 74824 station_ip 89.199.107.56 74824 port 25 74824 unique_id port 74824 remote_ip 10.8.1.10 74825 username aminvpn 74825 mac 74825 bytes_out 0 74825 bytes_in 0 74825 station_ip 89.199.107.56 74825 port 25 74825 unique_id port 74825 remote_ip 10.8.1.10 74830 username aminvpn 74830 mac 74830 bytes_out 0 74830 bytes_in 0 74830 station_ip 89.199.107.56 74830 port 25 74830 unique_id port 74830 remote_ip 10.8.1.10 74831 username aminvpn 74831 mac 74831 bytes_out 0 74831 bytes_in 0 74831 station_ip 89.199.107.56 74831 port 25 74831 unique_id port 74831 remote_ip 10.8.1.10 74833 username aminvpn 74833 mac 74833 bytes_out 0 74833 bytes_in 0 74833 station_ip 89.199.107.56 74833 port 25 74833 unique_id port 74833 remote_ip 10.8.1.10 74840 username aminvpn 74840 mac 74840 bytes_out 0 74840 bytes_in 0 74840 station_ip 89.199.107.56 74840 port 25 74840 unique_id port 74840 remote_ip 10.8.1.10 74841 username aminvpn 74841 mac 74841 bytes_out 0 74841 bytes_in 0 74841 station_ip 89.199.107.56 74841 port 25 74841 unique_id port 74841 remote_ip 10.8.1.10 74843 username aminvpn 74843 mac 74843 bytes_out 0 74834 remote_ip 10.8.1.10 74835 username aminvpn 74835 mac 74835 bytes_out 0 74835 bytes_in 0 74835 station_ip 89.199.107.56 74835 port 25 74835 unique_id port 74835 remote_ip 10.8.1.10 74842 username aminvpn 74842 mac 74842 bytes_out 0 74842 bytes_in 0 74842 station_ip 89.199.107.56 74842 port 25 74842 unique_id port 74842 remote_ip 10.8.1.10 74844 username aminvpn 74844 mac 74844 bytes_out 0 74844 bytes_in 0 74844 station_ip 89.199.107.56 74844 port 25 74844 unique_id port 74844 remote_ip 10.8.1.10 74845 username aminvpn 74845 mac 74845 bytes_out 0 74845 bytes_in 0 74845 station_ip 89.199.107.56 74845 port 25 74845 unique_id port 74845 remote_ip 10.8.1.10 74846 username aminvpn 74846 mac 74846 bytes_out 0 74846 bytes_in 0 74846 station_ip 89.199.107.56 74846 port 25 74846 unique_id port 74846 remote_ip 10.8.1.10 74847 username aminvpn 74847 mac 74847 bytes_out 0 74847 bytes_in 0 74847 station_ip 89.199.107.56 74847 port 25 74847 unique_id port 74847 remote_ip 10.8.1.10 74853 username aminvpn 74853 mac 74853 bytes_out 0 74853 bytes_in 0 74853 station_ip 89.199.107.56 74853 port 8 74853 unique_id port 74853 remote_ip 10.8.0.6 74854 username aminvpn 74854 mac 74854 bytes_out 0 74854 bytes_in 0 74854 station_ip 89.199.107.56 74854 port 8 74854 unique_id port 74854 remote_ip 10.8.0.6 74860 username alinezhad 74860 unique_id port 74860 terminate_cause User-Request 74860 bytes_out 12718 74860 bytes_in 25791 74860 station_ip 5.202.8.30 74860 port 15728665 74860 nas_port_type Virtual 74860 remote_ip 5.5.5.251 74868 username aminvpn 74868 mac 74868 bytes_out 0 74868 bytes_in 0 74868 station_ip 89.199.107.56 74868 port 8 74868 unique_id port 74868 remote_ip 10.8.0.6 74869 username aminvpn 74869 mac 74869 bytes_out 0 74869 bytes_in 0 74869 station_ip 89.199.107.56 74869 port 8 74869 unique_id port 74869 remote_ip 10.8.0.6 74870 username aminvpn 74870 mac 74870 bytes_out 0 74870 bytes_in 0 74870 station_ip 89.199.107.56 74870 port 8 74870 unique_id port 74870 remote_ip 10.8.0.6 74871 username aminvpn 74871 mac 74871 bytes_out 0 74871 bytes_in 0 74871 station_ip 89.199.107.56 74871 port 8 74871 unique_id port 74871 remote_ip 10.8.0.6 74872 username aminvpn 74872 mac 74872 bytes_out 0 74872 bytes_in 0 74872 station_ip 89.199.107.56 74872 port 8 74872 unique_id port 74872 remote_ip 10.8.0.6 74873 username aminvpn 74873 mac 74873 bytes_out 0 74873 bytes_in 0 74873 station_ip 89.199.107.56 74873 port 8 74873 unique_id port 74873 remote_ip 10.8.0.6 74874 username aminvpn 74874 mac 74874 bytes_out 0 74874 bytes_in 0 74874 station_ip 89.199.107.56 74874 port 8 74874 unique_id port 74874 remote_ip 10.8.0.6 74877 username aminvpn 74877 mac 74877 bytes_out 0 74877 bytes_in 0 74877 station_ip 89.199.107.56 74877 port 8 74877 unique_id port 74877 remote_ip 10.8.0.6 74880 username aminvpn 74880 mac 74880 bytes_out 0 74880 bytes_in 0 74880 station_ip 89.199.107.56 74880 port 8 74880 unique_id port 74880 remote_ip 10.8.0.6 74882 username goli 74882 unique_id port 74882 terminate_cause User-Request 74882 bytes_out 162066 74882 bytes_in 2553239 74882 station_ip 37.129.83.222 74882 port 15728667 74882 nas_port_type Virtual 74882 remote_ip 5.5.5.238 74886 username aminvpn 74843 bytes_in 0 74843 station_ip 89.199.107.56 74843 port 25 74843 unique_id port 74843 remote_ip 10.8.1.10 74855 username hamideh 74855 unique_id port 74855 terminate_cause Lost-Carrier 74855 bytes_out 4152029 74855 bytes_in 107338449 74855 station_ip 5.119.216.4 74855 port 15728653 74855 nas_port_type Virtual 74855 remote_ip 5.5.5.247 74858 username tahani 74858 unique_id port 74858 terminate_cause User-Request 74858 bytes_out 58496 74858 bytes_in 382394 74858 station_ip 37.129.112.249 74858 port 15728663 74858 nas_port_type Virtual 74858 remote_ip 5.5.5.240 74861 username aminvpn 74861 mac 74861 bytes_out 0 74861 bytes_in 0 74861 station_ip 89.199.107.56 74861 port 8 74861 unique_id port 74861 remote_ip 10.8.0.6 74862 username aminvpn 74862 mac 74862 bytes_out 0 74862 bytes_in 0 74862 station_ip 89.199.107.56 74862 port 8 74862 unique_id port 74862 remote_ip 10.8.0.6 74863 username aminvpn 74863 mac 74863 bytes_out 0 74863 bytes_in 0 74863 station_ip 89.199.107.56 74863 port 8 74863 unique_id port 74863 remote_ip 10.8.0.6 74864 username aminvpn 74864 mac 74864 bytes_out 0 74864 bytes_in 0 74864 station_ip 89.199.107.56 74864 port 8 74864 unique_id port 74864 remote_ip 10.8.0.6 74865 username aminvpn 74865 mac 74865 bytes_out 0 74865 bytes_in 0 74865 station_ip 89.199.107.56 74865 port 8 74865 unique_id port 74865 remote_ip 10.8.0.6 74875 username aminvpn 74875 mac 74875 bytes_out 0 74875 bytes_in 0 74875 station_ip 89.199.107.56 74875 port 8 74875 unique_id port 74875 remote_ip 10.8.0.6 74876 username aminvpn 74876 mac 74876 bytes_out 0 74876 bytes_in 0 74876 station_ip 89.199.107.56 74876 port 8 74876 unique_id port 74876 remote_ip 10.8.0.6 74878 username aminvpn 74878 mac 74878 bytes_out 0 74878 bytes_in 0 74878 station_ip 89.199.107.56 74878 port 9 74878 unique_id port 74878 remote_ip 10.8.0.6 74881 username aminvpn 74881 mac 74881 bytes_out 0 74881 bytes_in 0 74881 station_ip 89.199.107.56 74881 port 8 74881 unique_id port 74881 remote_ip 10.8.0.6 74888 username asadi 74888 unique_id port 74888 terminate_cause User-Request 74888 bytes_out 584077 74888 bytes_in 19806080 74888 station_ip 83.122.198.24 74888 port 15728669 74888 nas_port_type Virtual 74888 remote_ip 5.5.5.236 74890 username aminvpn 74890 mac 74890 bytes_out 0 74890 bytes_in 0 74890 station_ip 89.199.107.56 74890 port 25 74890 unique_id port 74890 remote_ip 10.8.1.10 74892 username aminvpn 74892 mac 74892 bytes_out 0 74892 bytes_in 0 74892 station_ip 89.199.107.56 74892 port 25 74892 unique_id port 74892 remote_ip 10.8.1.10 74895 username asadi 74895 unique_id port 74895 terminate_cause User-Request 74895 bytes_out 190408 74895 bytes_in 6949544 74895 station_ip 83.122.198.24 74895 port 15728672 74895 nas_port_type Virtual 74895 remote_ip 5.5.5.236 74896 username aminvpn 74896 mac 74896 bytes_out 0 74896 bytes_in 0 74896 station_ip 89.199.107.56 74896 port 8 74896 unique_id port 74896 remote_ip 10.8.0.6 74904 username aminvpn 74904 mac 74904 bytes_out 0 74904 bytes_in 0 74904 station_ip 89.199.107.56 74904 port 8 74904 unique_id port 74904 remote_ip 10.8.0.6 74908 username aminvpn 74908 mac 74908 bytes_out 0 74908 bytes_in 0 74908 station_ip 89.199.107.56 74908 port 8 74908 unique_id port 74908 remote_ip 10.8.0.6 74913 username asadi 74850 username aminvpn 74850 mac 74850 bytes_out 0 74850 bytes_in 0 74850 station_ip 89.199.107.56 74850 port 8 74850 unique_id port 74850 remote_ip 10.8.0.6 74851 username alirezazamani 74851 unique_id port 74851 terminate_cause User-Request 74851 bytes_out 0 74851 bytes_in 0 74851 station_ip 37.129.7.179 74851 port 15728659 74851 nas_port_type Virtual 74851 remote_ip 5.5.5.242 74852 username amin.insta22 74852 unique_id port 74852 terminate_cause Lost-Carrier 74852 bytes_out 609304 74852 bytes_in 2862644 74852 station_ip 151.238.252.216 74852 port 15728657 74852 nas_port_type Virtual 74852 remote_ip 5.5.5.244 74856 username tahani 74856 unique_id port 74856 terminate_cause User-Request 74856 bytes_out 157170 74856 bytes_in 886344 74856 station_ip 37.129.112.249 74856 port 15728662 74856 nas_port_type Virtual 74856 remote_ip 5.5.5.240 81145 bytes_in 1152346 81145 station_ip 37.129.119.94 81145 port 15728744 81145 nas_port_type Virtual 81145 remote_ip 5.5.5.202 81148 username ahmadipour 81148 unique_id port 81148 terminate_cause User-Request 81148 bytes_out 84727 74859 username tahani 74859 unique_id port 74859 terminate_cause User-Request 74859 bytes_out 256741 74859 bytes_in 4762455 74859 station_ip 37.129.112.249 74859 port 15728664 74859 nas_port_type Virtual 74859 remote_ip 5.5.5.240 74866 username aminvpn 74866 mac 74866 bytes_out 0 74866 bytes_in 0 74866 station_ip 89.199.107.56 74866 port 8 74866 unique_id port 74866 remote_ip 10.8.0.6 74867 username aminvpn 74867 unique_id port 74867 terminate_cause User-Request 74867 bytes_out 461739 74867 bytes_in 2763680 74867 station_ip 2.183.249.152 74867 port 15728661 74867 nas_port_type Virtual 74867 remote_ip 5.5.5.248 74879 username aminvpn 74879 mac 74879 bytes_out 0 74879 bytes_in 0 74879 station_ip 89.199.107.56 74879 port 8 74879 unique_id port 74879 remote_ip 10.8.0.6 74883 username aminvpn 74883 mac 74883 bytes_out 0 74883 bytes_in 0 74883 station_ip 89.199.107.56 74883 port 8 74883 unique_id port 74883 remote_ip 10.8.0.6 74884 username aminvpn 74884 mac 74884 bytes_out 0 74884 bytes_in 0 74884 station_ip 89.199.107.56 74884 port 8 74884 unique_id port 74884 remote_ip 10.8.0.6 74885 username aminvpn 74885 mac 74885 bytes_out 0 74885 bytes_in 0 74885 station_ip 89.199.107.56 74885 port 8 74885 unique_id port 74885 remote_ip 10.8.0.6 74887 username zoha 74887 unique_id port 74887 terminate_cause Lost-Carrier 74887 bytes_out 5797856 74887 bytes_in 50678096 74887 station_ip 5.119.17.164 74887 port 15728655 74887 nas_port_type Virtual 74887 remote_ip 5.5.5.246 74889 username asadi 74889 unique_id port 74889 terminate_cause User-Request 74889 bytes_out 226580 74889 bytes_in 4484810 74889 station_ip 83.122.198.24 74889 port 15728670 74889 nas_port_type Virtual 74889 remote_ip 5.5.5.236 74891 username aminvpn 74891 mac 74891 bytes_out 0 74891 bytes_in 0 74891 station_ip 89.199.107.56 74891 port 25 74891 unique_id port 74891 remote_ip 10.8.1.10 74893 username aminvpn 74893 mac 74893 bytes_out 1636 74893 bytes_in 5262 74893 station_ip 89.199.107.56 74893 port 25 74893 unique_id port 74893 remote_ip 10.8.1.10 74897 username aminvpn 74897 mac 74897 bytes_out 0 74897 bytes_in 0 74897 station_ip 89.199.107.56 74897 port 8 74897 unique_id port 74897 remote_ip 10.8.0.6 74898 username aminvpn 74898 mac 74898 bytes_out 0 74898 bytes_in 0 74898 station_ip 89.199.107.56 74898 port 8 74886 mac 74886 bytes_out 0 74886 bytes_in 0 74886 station_ip 89.199.107.56 74886 port 8 74886 unique_id port 74886 remote_ip 10.8.0.6 74894 username asadi 74894 unique_id port 74894 terminate_cause User-Request 74894 bytes_out 117006 74894 bytes_in 2156049 74894 station_ip 83.122.198.24 74894 port 15728671 74894 nas_port_type Virtual 74894 remote_ip 5.5.5.236 74902 username aminvpn 74902 mac 74902 bytes_out 0 74902 bytes_in 0 74902 station_ip 89.199.107.56 74902 port 8 74902 unique_id port 74902 remote_ip 10.8.0.6 74903 username aminvpn 74903 mac 74903 bytes_out 0 74903 bytes_in 0 74903 station_ip 89.199.107.56 74903 port 8 74903 unique_id port 74903 remote_ip 10.8.0.6 74906 username aminvpn 74906 mac 74906 bytes_out 0 74906 bytes_in 0 74906 station_ip 89.199.107.56 74906 port 8 74906 unique_id port 74906 remote_ip 10.8.0.6 74907 username asadi 74907 unique_id port 74907 terminate_cause User-Request 74907 bytes_out 29323 74907 bytes_in 126233 74907 station_ip 83.122.198.24 74907 port 15728674 74907 nas_port_type Virtual 74907 remote_ip 5.5.5.236 74910 username asadi 74910 unique_id port 74910 terminate_cause User-Request 74910 bytes_out 106 74910 bytes_in 192 74910 station_ip 83.122.198.24 74910 port 15728677 74910 nas_port_type Virtual 74910 remote_ip 5.5.5.236 74911 username zoha 74911 kill_reason Maximum check online fails reached 74911 unique_id port 74911 bytes_out 245397 74911 bytes_in 1157312 74911 station_ip 5.119.17.164 74911 port 15728676 74911 nas_port_type Virtual 74911 remote_ip 5.5.5.246 74912 username asadi 74912 unique_id port 74912 terminate_cause User-Request 74912 bytes_out 31561 74912 bytes_in 136721 74912 station_ip 83.122.198.24 74912 port 15728678 74912 nas_port_type Virtual 74912 remote_ip 5.5.5.236 74915 username asadi 74915 unique_id port 74915 terminate_cause User-Request 74915 bytes_out 25530 74915 bytes_in 178843 74915 station_ip 83.122.198.24 74915 port 15728680 74915 nas_port_type Virtual 74915 remote_ip 5.5.5.236 74918 username alinezhad 74918 unique_id port 74918 terminate_cause User-Request 74918 bytes_out 43869 74918 bytes_in 84144 74918 station_ip 5.202.8.30 74918 port 15728684 74918 nas_port_type Virtual 74918 remote_ip 5.5.5.251 74919 username asadi 74919 unique_id port 74919 terminate_cause User-Request 74919 bytes_out 27003 74919 bytes_in 113439 74919 station_ip 83.122.198.24 74919 port 15728685 74919 nas_port_type Virtual 74919 remote_ip 5.5.5.236 74923 username asadi 74923 unique_id port 74923 terminate_cause User-Request 74923 bytes_out 329053 74923 bytes_in 10175778 74923 station_ip 83.122.198.24 74923 port 15728692 74923 nas_port_type Virtual 74923 remote_ip 5.5.5.236 74924 username amin.insta13 74924 unique_id port 74924 terminate_cause Lost-Carrier 74924 bytes_out 992573 74924 bytes_in 3703567 74924 station_ip 46.100.216.233 74924 port 15728691 74924 nas_port_type Virtual 74924 remote_ip 5.5.5.229 74929 username asadi 74929 unique_id port 74929 terminate_cause User-Request 74929 bytes_out 58571 74929 bytes_in 459345 74929 station_ip 83.122.198.24 74929 port 15728698 74929 nas_port_type Virtual 74929 remote_ip 5.5.5.236 74930 username asadi 74930 unique_id port 74930 terminate_cause User-Request 74930 bytes_out 92332 74930 bytes_in 1145143 74930 station_ip 83.122.198.24 74930 port 15728700 74930 nas_port_type Virtual 74930 remote_ip 5.5.5.236 74933 username asadi 74933 unique_id port 74933 terminate_cause User-Request 74933 bytes_out 60616 74933 bytes_in 825392 74933 station_ip 83.122.198.24 74933 port 15728703 74898 unique_id port 74898 remote_ip 10.8.0.6 74899 username aminvpn 74899 mac 74899 bytes_out 0 74899 bytes_in 0 74899 station_ip 89.199.107.56 74899 port 8 74899 unique_id port 74899 remote_ip 10.8.0.6 74900 username aminvpn 74900 mac 74900 bytes_out 0 74900 bytes_in 0 74900 station_ip 89.199.107.56 74900 port 8 74900 unique_id port 74900 remote_ip 10.8.0.6 74901 username aminvpn 74901 mac 74901 bytes_out 0 74901 bytes_in 0 74901 station_ip 89.199.107.56 74901 port 8 74901 unique_id port 74901 remote_ip 10.8.0.6 74905 username asadi 74905 unique_id port 74905 terminate_cause User-Request 74905 bytes_out 24963 74905 bytes_in 126378 74905 station_ip 83.122.198.24 74905 port 15728673 74905 nas_port_type Virtual 74905 remote_ip 5.5.5.236 74909 username asadi 74909 unique_id port 74909 terminate_cause User-Request 74909 bytes_out 25804 74909 bytes_in 166248 74909 station_ip 83.122.198.24 74909 port 15728675 74909 nas_port_type Virtual 74909 remote_ip 5.5.5.236 74916 username alinezhad 74916 unique_id port 74916 terminate_cause User-Request 74916 bytes_out 26123 74916 bytes_in 252365 74916 station_ip 5.202.8.30 74916 port 15728681 74916 nas_port_type Virtual 74916 remote_ip 5.5.5.251 74926 username asadi 74926 unique_id port 74926 terminate_cause User-Request 74926 bytes_out 30834 74926 bytes_in 269881 74926 station_ip 83.122.198.24 74926 port 15728695 74926 nas_port_type Virtual 74926 remote_ip 5.5.5.236 74931 username rashidi 74931 unique_id port 74931 terminate_cause User-Request 74931 bytes_out 4263242 74931 bytes_in 8025262 74931 station_ip 5.120.106.153 74931 port 15728687 74931 nas_port_type Virtual 74931 remote_ip 5.5.5.232 74934 username ahmad 74934 unique_id port 74934 terminate_cause User-Request 74934 bytes_out 1442739 74934 bytes_in 30237269 74934 station_ip 86.57.114.123 74934 port 15728688 74934 nas_port_type Virtual 74934 remote_ip 5.5.5.231 74946 username asadi 74946 unique_id port 74946 terminate_cause User-Request 74946 bytes_out 124394 74946 bytes_in 3271719 74946 station_ip 83.122.198.24 74946 port 15728714 74946 nas_port_type Virtual 74946 remote_ip 5.5.5.236 74950 username aminvpn 74950 mac 74950 bytes_out 0 74950 bytes_in 0 74950 station_ip 5.113.29.27 74950 port 8 74950 unique_id port 74950 remote_ip 10.8.0.6 74952 username mohammadi 74952 unique_id port 74952 terminate_cause User-Request 74952 bytes_out 33259 74952 bytes_in 140324 74952 station_ip 83.123.108.121 74952 port 15728716 74952 nas_port_type Virtual 74952 remote_ip 5.5.5.223 74956 username aminvpn 74956 mac 74956 bytes_out 0 74956 bytes_in 0 74956 station_ip 5.113.29.27 74956 port 8 74956 unique_id port 74956 remote_ip 10.8.0.6 74959 username aminvpn 74959 mac 74959 bytes_out 0 74959 bytes_in 0 74959 station_ip 5.113.29.27 74959 port 8 74959 unique_id port 74959 remote_ip 10.8.0.6 74965 username aminvpn 74965 kill_reason Maximum check online fails reached 74965 mac 74965 bytes_out 0 74965 bytes_in 0 74965 station_ip 5.113.29.27 74965 port 25 74965 unique_id port 74967 username aminvpn 74967 mac 74967 bytes_out 0 74967 bytes_in 0 74967 station_ip 5.113.29.27 74967 port 26 74967 unique_id port 74967 remote_ip 10.8.1.10 74968 username aminvpn 74968 mac 74968 bytes_out 0 74968 bytes_in 0 74968 station_ip 5.113.29.27 74968 port 26 74968 unique_id port 74968 remote_ip 10.8.1.10 81146 terminate_cause User-Request 81146 bytes_out 31251 81146 bytes_in 99029 81146 station_ip 83.122.141.139 74913 unique_id port 74913 terminate_cause User-Request 74913 bytes_out 19124 74913 bytes_in 85112 74913 station_ip 83.122.198.24 74913 port 15728679 74913 nas_port_type Virtual 74913 remote_ip 5.5.5.236 74914 username amin.insta21 74914 unique_id port 74914 terminate_cause Lost-Carrier 74914 bytes_out 7237231 74914 bytes_in 105288685 74914 station_ip 151.235.109.225 74914 port 15728658 74914 nas_port_type Virtual 74914 remote_ip 5.5.5.243 74917 username amin.insta13 74917 unique_id port 74917 terminate_cause User-Request 74917 bytes_out 443573 74917 bytes_in 2367734 74917 station_ip 113.203.31.33 74917 port 15728683 74917 nas_port_type Virtual 74917 remote_ip 5.5.5.234 74920 username mobina 74920 unique_id port 74920 terminate_cause User-Request 74920 bytes_out 1367780 74920 bytes_in 31440324 74920 station_ip 5.219.210.161 74920 port 15728682 74920 nas_port_type Virtual 74920 remote_ip 5.5.5.235 74921 username amin.insta22 74921 unique_id port 74921 terminate_cause Lost-Carrier 74921 bytes_out 134792 74921 bytes_in 539329 74921 station_ip 5.233.51.222 74921 port 15728686 74921 nas_port_type Virtual 74921 remote_ip 5.5.5.233 74922 username amin.insta19 74922 unique_id port 74922 terminate_cause Lost-Carrier 74922 bytes_out 247233 74922 bytes_in 494872 74922 station_ip 5.119.15.22 74922 port 15728689 74922 nas_port_type Virtual 74922 remote_ip 5.5.5.230 74925 username asadi 74925 unique_id port 74925 terminate_cause User-Request 74925 bytes_out 154951 74925 bytes_in 3634193 74925 station_ip 83.122.198.24 74925 port 15728693 74925 nas_port_type Virtual 74925 remote_ip 5.5.5.236 74927 username alinezhad 74927 unique_id port 74927 terminate_cause User-Request 74927 bytes_out 0 74927 bytes_in 0 74927 station_ip 5.202.8.30 74927 port 15728696 74927 nas_port_type Virtual 74927 remote_ip 5.5.5.251 74928 username asadi 74928 unique_id port 74928 terminate_cause User-Request 74928 bytes_out 33868 74928 bytes_in 266536 74928 station_ip 83.122.198.24 74928 port 15728697 74928 nas_port_type Virtual 74928 remote_ip 5.5.5.236 74932 username asadi 74932 unique_id port 74932 terminate_cause User-Request 74932 bytes_out 18913 74932 bytes_in 86000 74932 station_ip 83.122.198.24 74932 port 15728702 74932 nas_port_type Virtual 74932 remote_ip 5.5.5.236 74936 username mohammadi 74936 unique_id port 74936 terminate_cause User-Request 74936 bytes_out 27978 74936 bytes_in 64872 74936 station_ip 83.123.43.169 74936 port 15728707 74936 nas_port_type Virtual 74936 remote_ip 5.5.5.224 74939 username aminsaeedi 74939 unique_id port 74939 terminate_cause User-Request 74939 bytes_out 157100 74939 bytes_in 346166 74939 station_ip 31.59.45.123 74939 port 15728708 74939 nas_port_type Virtual 74939 remote_ip 5.5.5.226 74940 username asadi 74940 unique_id port 74940 terminate_cause User-Request 74940 bytes_out 220541 74940 bytes_in 6091481 74940 station_ip 83.122.198.24 74940 port 15728709 74940 nas_port_type Virtual 74940 remote_ip 5.5.5.236 74941 username alinezhad 74941 unique_id port 74941 terminate_cause User-Request 74941 bytes_out 3354232 74941 bytes_in 96611759 74941 station_ip 5.202.8.30 74941 port 15728706 74941 nas_port_type Virtual 74941 remote_ip 5.5.5.251 74942 username amin.insta22 74942 unique_id port 74942 terminate_cause User-Request 74942 bytes_out 260216 74942 bytes_in 2143710 74942 station_ip 5.119.253.19 74942 port 15728699 74942 nas_port_type Virtual 74942 remote_ip 5.5.5.227 74943 username ahmadi 74943 unique_id port 74943 terminate_cause User-Request 74943 bytes_out 23725 74943 bytes_in 166018 74943 station_ip 83.123.94.70 74943 port 15728711 74943 nas_port_type Virtual 74943 remote_ip 5.5.5.255 74933 nas_port_type Virtual 74933 remote_ip 5.5.5.236 74935 username asadi 74935 unique_id port 74935 terminate_cause User-Request 74935 bytes_out 46902 74935 bytes_in 430420 74935 station_ip 83.122.198.24 74935 port 15728704 74935 nas_port_type Virtual 74935 remote_ip 5.5.5.236 74937 username zoha 74937 unique_id port 74937 terminate_cause Lost-Carrier 74937 bytes_out 6144317 74937 bytes_in 205525326 74937 station_ip 5.119.17.164 74937 port 15728690 74937 nas_port_type Virtual 74937 remote_ip 5.5.5.246 74938 username aminsaeedi 74938 unique_id port 74938 terminate_cause User-Request 74938 bytes_out 1272432 74938 bytes_in 13577305 74938 station_ip 31.59.45.123 74938 port 15728701 74938 nas_port_type Virtual 74938 remote_ip 5.5.5.226 81146 port 15728745 81146 nas_port_type Virtual 81146 remote_ip 5.5.5.211 81157 username soleymani 81157 unique_id port 81157 terminate_cause Lost-Carrier 81157 bytes_out 97354 81157 bytes_in 854347 81157 station_ip 5.120.30.46 74947 username mohammadi 74947 unique_id port 74947 terminate_cause User-Request 74947 bytes_out 107388 74947 bytes_in 1361521 74947 station_ip 83.123.108.121 74947 port 15728715 74947 nas_port_type Virtual 74947 remote_ip 5.5.5.223 74951 username aminvpn 74951 mac 74951 bytes_out 0 74951 bytes_in 0 74951 station_ip 5.113.29.27 74951 port 8 74951 unique_id port 74951 remote_ip 10.8.0.6 74958 username aminvpn 74958 mac 74958 bytes_out 0 74958 bytes_in 0 74958 station_ip 5.113.29.27 74958 port 8 74958 unique_id port 74958 remote_ip 10.8.0.6 74963 username aminvpn 74963 mac 74963 bytes_out 0 74963 bytes_in 0 74963 station_ip 5.113.29.27 74963 port 25 74963 unique_id port 74963 remote_ip 10.8.1.10 74964 username aminvpn 74964 mac 74964 bytes_out 0 74964 bytes_in 0 74964 station_ip 5.113.29.27 74964 port 25 74964 unique_id port 74964 remote_ip 10.8.1.10 74972 username aminvpn 74972 mac 74972 bytes_out 0 74972 bytes_in 0 74972 station_ip 5.113.29.27 74972 port 26 74972 unique_id port 74972 remote_ip 10.8.1.10 74974 username aminvpn 74974 mac 74974 bytes_out 0 74974 bytes_in 0 74974 station_ip 5.113.29.27 74974 port 26 74974 unique_id port 74974 remote_ip 10.8.1.10 74975 username aminvpn 74975 mac 74975 bytes_out 0 74975 bytes_in 0 74975 station_ip 5.113.29.27 74975 port 26 74975 unique_id port 74975 remote_ip 10.8.1.10 81157 port 15728748 81157 nas_port_type Virtual 81157 remote_ip 5.5.5.200 81159 username madadi 81159 unique_id port 81159 terminate_cause Lost-Carrier 81159 bytes_out 10788 81159 bytes_in 133275 81159 station_ip 5.119.217.213 74983 username alirezazamani 74983 unique_id port 74983 terminate_cause Lost-Carrier 74983 bytes_out 179202 74983 bytes_in 1305139 74983 station_ip 5.120.33.201 74983 port 15728717 74983 nas_port_type Virtual 74983 remote_ip 5.5.5.222 74985 username hamideh 74985 unique_id port 74985 terminate_cause Lost-Carrier 74985 bytes_out 595682 74985 bytes_in 6835264 74985 station_ip 5.119.216.4 74985 port 15728719 74985 nas_port_type Virtual 74985 remote_ip 5.5.5.247 74987 username asadi 74987 unique_id port 74987 terminate_cause User-Request 74987 bytes_out 116740 74987 bytes_in 3523777 74987 station_ip 37.129.250.158 74987 port 15728730 74987 nas_port_type Virtual 74987 remote_ip 5.5.5.219 74989 username asadi 74989 unique_id port 74989 terminate_cause User-Request 74989 bytes_out 79212 74989 bytes_in 587193 74989 station_ip 37.129.250.158 74989 port 15728732 74989 nas_port_type Virtual 74989 remote_ip 5.5.5.219 74993 username mohammadi 74944 username amin.insta21 74944 unique_id port 74944 terminate_cause User-Request 74944 bytes_out 6853175 74944 bytes_in 82842133 74944 station_ip 151.235.125.27 74944 port 15728705 74944 nas_port_type Virtual 74944 remote_ip 5.5.5.225 74948 username aminvpn 74948 mac 74948 bytes_out 0 74948 bytes_in 0 74948 station_ip 5.113.29.27 74948 port 8 74948 unique_id port 74948 remote_ip 10.8.0.6 74949 username aminvpn 74949 mac 74949 bytes_out 0 74949 bytes_in 0 74949 station_ip 5.113.29.27 74949 port 8 74949 unique_id port 74949 remote_ip 10.8.0.6 74953 username aminvpn 74953 mac 74953 bytes_out 0 74953 bytes_in 0 74953 station_ip 5.113.29.27 74953 port 8 74953 unique_id port 74953 remote_ip 10.8.0.6 74954 username aminvpn 74954 mac 74954 bytes_out 0 74954 bytes_in 0 74954 station_ip 5.113.29.27 74954 port 8 74954 unique_id port 74954 remote_ip 10.8.0.6 74955 username aminvpn 74955 mac 74955 bytes_out 0 74955 bytes_in 0 74955 station_ip 5.113.29.27 74955 port 8 74955 unique_id port 74955 remote_ip 10.8.0.6 74957 username alirezazamani 74957 unique_id port 74957 terminate_cause Lost-Carrier 74957 bytes_out 2073953 74957 bytes_in 31879144 74957 station_ip 5.119.157.169 74957 port 15728694 74957 nas_port_type Virtual 74957 remote_ip 5.5.5.228 74960 username aminvpn 74960 mac 74960 bytes_out 1628 74960 bytes_in 4074 74960 station_ip 5.113.29.27 74960 port 8 74960 unique_id port 74960 remote_ip 10.8.0.6 74961 username aminvpn 74961 mac 74961 bytes_out 0 74961 bytes_in 0 74961 station_ip 5.113.29.27 74961 port 25 74961 unique_id port 74961 remote_ip 10.8.1.10 74962 username aminvpn 74962 mac 74962 bytes_out 0 74962 bytes_in 0 74962 station_ip 5.113.29.27 74962 port 25 74962 unique_id port 74962 remote_ip 10.8.1.10 74966 username amin.insta13 74966 unique_id port 74966 terminate_cause Lost-Carrier 74966 bytes_out 1589660 74966 bytes_in 18800734 74966 station_ip 46.100.216.233 74966 port 15728710 74966 nas_port_type Virtual 74966 remote_ip 5.5.5.229 74969 username aminvpn 74969 mac 74969 bytes_out 0 74969 bytes_in 0 74969 station_ip 5.113.29.27 74969 port 26 74969 unique_id port 74969 remote_ip 10.8.1.10 74970 username aminvpn 74970 mac 74970 bytes_out 0 74970 bytes_in 0 74970 station_ip 5.113.29.27 74970 port 26 74970 unique_id port 74970 remote_ip 10.8.1.10 74971 username aminvpn 74971 mac 74971 bytes_out 0 74971 bytes_in 0 74971 station_ip 5.113.29.27 74971 port 26 74971 unique_id port 74971 remote_ip 10.8.1.10 74973 username aminvpn 74973 mac 74973 bytes_out 0 74973 bytes_in 0 74973 station_ip 5.113.29.27 74973 port 26 74973 unique_id port 74973 remote_ip 10.8.1.10 74976 username amin.insta21 74976 unique_id port 74976 terminate_cause User-Request 74976 bytes_out 3986415 74976 bytes_in 61542770 74976 station_ip 151.235.125.27 74976 port 15728713 74976 nas_port_type Virtual 74976 remote_ip 5.5.5.225 81147 station_ip 37.129.119.94 81147 port 15728746 81147 nas_port_type Virtual 81147 remote_ip 5.5.5.202 81150 username mahbobeh 81150 unique_id port 81150 terminate_cause Lost-Carrier 81150 bytes_out 186666 81150 bytes_in 1436959 74978 username alinezhad 74978 unique_id port 74978 terminate_cause User-Request 74978 bytes_out 0 74978 bytes_in 0 74978 station_ip 5.202.8.30 74978 port 15728718 74978 nas_port_type Virtual 74978 remote_ip 5.5.5.251 81150 station_ip 113.203.36.149 81150 port 15728693 81148 bytes_in 637968 81148 station_ip 113.203.95.131 81148 port 15728747 81148 nas_port_type Virtual 81148 remote_ip 5.5.5.201 81149 username soleymani 81149 unique_id port 81149 terminate_cause Lost-Carrier 81149 bytes_out 95189 81149 bytes_in 338040 81149 station_ip 5.119.29.219 81149 port 15728743 81149 nas_port_type Virtual 81149 remote_ip 5.5.5.203 81155 username avaanna 81155 unique_id port 81155 terminate_cause User-Request 81155 bytes_out 7273453 81155 bytes_in 736323 81155 station_ip 113.203.88.97 81155 port 15728756 81155 nas_port_type Virtual 81155 remote_ip 5.5.5.234 74988 username asadi 74988 unique_id port 74988 terminate_cause User-Request 74988 bytes_out 13502 74988 bytes_in 58512 74988 station_ip 37.129.250.158 74988 port 15728731 74988 nas_port_type Virtual 74988 remote_ip 5.5.5.219 74992 username asadi 74992 unique_id port 74992 terminate_cause User-Request 74992 bytes_out 57494 74992 bytes_in 498272 74992 station_ip 37.129.172.236 74992 port 15728734 74992 nas_port_type Virtual 74992 remote_ip 5.5.5.218 74994 username asadi 74994 unique_id port 74994 terminate_cause User-Request 74994 bytes_out 32751 74994 bytes_in 130832 74994 station_ip 37.129.172.236 74994 port 15728737 74994 nas_port_type Virtual 74994 remote_ip 5.5.5.218 74996 username iranmanesh 74996 unique_id port 74996 terminate_cause Lost-Carrier 74996 bytes_out 2303938 74996 bytes_in 20830941 74996 station_ip 5.112.36.157 74996 port 15728666 74996 nas_port_type Virtual 74996 remote_ip 5.5.5.239 75002 username asadi 75002 unique_id port 75002 terminate_cause User-Request 75002 bytes_out 38059 75002 bytes_in 202205 75002 station_ip 37.129.172.236 75002 port 15728746 75002 nas_port_type Virtual 75002 remote_ip 5.5.5.218 75005 username asadi 75005 unique_id port 75005 terminate_cause User-Request 75005 bytes_out 30769 75005 bytes_in 115676 75005 station_ip 37.129.172.236 75005 port 15728749 75005 nas_port_type Virtual 75005 remote_ip 5.5.5.218 75006 username asadi 75006 unique_id port 75006 terminate_cause User-Request 75006 bytes_out 50627 75006 bytes_in 260572 75006 station_ip 37.129.172.236 75006 port 15728750 75006 nas_port_type Virtual 75006 remote_ip 5.5.5.218 75010 username asadi 75010 unique_id port 75010 terminate_cause User-Request 75010 bytes_out 0 75010 bytes_in 0 75010 station_ip 37.129.172.236 75010 port 15728753 75010 nas_port_type Virtual 75010 remote_ip 5.5.5.218 75011 username asadi 75011 unique_id port 75011 terminate_cause User-Request 75011 bytes_out 27911 75011 bytes_in 85370 75011 station_ip 37.129.172.236 75011 port 15728754 75011 nas_port_type Virtual 75011 remote_ip 5.5.5.218 75012 username zoha 75012 unique_id port 75012 terminate_cause User-Request 75012 bytes_out 492227 75012 bytes_in 3233422 75012 station_ip 5.119.17.164 75012 port 15728740 75012 nas_port_type Virtual 75012 remote_ip 5.5.5.246 75017 username asadi 75017 unique_id port 75017 terminate_cause User-Request 75017 bytes_out 1262035 75017 bytes_in 44841913 75017 station_ip 37.129.172.236 75017 port 15728758 75017 nas_port_type Virtual 75017 remote_ip 5.5.5.218 75020 username alinezhad 75020 unique_id port 75020 terminate_cause User-Request 75020 bytes_out 0 75020 bytes_in 0 75020 station_ip 83.122.46.188 75020 port 15728762 75020 nas_port_type Virtual 75020 remote_ip 5.5.5.215 75021 username mohammadi 75021 unique_id port 75021 terminate_cause User-Request 75021 bytes_out 20494 75021 bytes_in 36475 75021 station_ip 83.123.83.81 75021 port 15728763 75021 nas_port_type Virtual 75021 remote_ip 5.5.5.217 75025 username asadi 75025 unique_id port 75025 terminate_cause User-Request 75025 bytes_out 26521 81150 nas_port_type Virtual 81150 remote_ip 5.5.5.219 81152 username kamali 81152 unique_id port 81152 terminate_cause User-Request 81152 bytes_out 25934 81152 bytes_in 40446 74986 username asadi 74986 unique_id port 74986 terminate_cause User-Request 74986 bytes_out 185421 74986 bytes_in 4104947 74986 station_ip 37.129.250.158 74986 port 15728727 74986 nas_port_type Virtual 74986 remote_ip 5.5.5.219 74990 username asadi 74990 unique_id port 74990 terminate_cause User-Request 74990 bytes_out 31048 74990 bytes_in 135244 74990 station_ip 37.129.250.158 74990 port 15728733 74990 nas_port_type Virtual 74990 remote_ip 5.5.5.219 74991 username alinezhad 74991 unique_id port 74991 terminate_cause User-Request 74991 bytes_out 0 74991 bytes_in 0 74991 station_ip 5.202.8.30 74991 port 15728735 74991 nas_port_type Virtual 74991 remote_ip 5.5.5.251 74995 username asadi 74995 unique_id port 74995 terminate_cause User-Request 74995 bytes_out 23981 74995 bytes_in 159731 74995 station_ip 37.129.172.236 74995 port 15728738 74995 nas_port_type Virtual 74995 remote_ip 5.5.5.218 74999 username asadi 74999 unique_id port 74999 terminate_cause User-Request 74999 bytes_out 32288 74999 bytes_in 106807 74999 station_ip 37.129.172.236 74999 port 15728744 74999 nas_port_type Virtual 74999 remote_ip 5.5.5.218 75001 username asadi 75001 unique_id port 75001 terminate_cause User-Request 75001 bytes_out 32451 75001 bytes_in 120077 75001 station_ip 37.129.172.236 75001 port 15728745 75001 nas_port_type Virtual 75001 remote_ip 5.5.5.218 75013 username asadi 75013 unique_id port 75013 terminate_cause User-Request 75013 bytes_out 274092 75013 bytes_in 8019936 75013 station_ip 37.129.172.236 75013 port 15728755 75013 nas_port_type Virtual 75013 remote_ip 5.5.5.218 75014 username asadi 75014 unique_id port 75014 terminate_cause User-Request 75014 bytes_out 330435 75014 bytes_in 10748741 75014 station_ip 37.129.172.236 75014 port 15728756 75014 nas_port_type Virtual 75014 remote_ip 5.5.5.218 75015 username rashidi 75015 unique_id port 75015 terminate_cause User-Request 75015 bytes_out 12302250 75015 bytes_in 77578365 75015 station_ip 5.120.134.237 75015 port 15728726 75015 nas_port_type Virtual 75015 remote_ip 5.5.5.220 75016 username asadi 75016 unique_id port 75016 terminate_cause User-Request 75016 bytes_out 832259 75016 bytes_in 30866619 75016 station_ip 37.129.172.236 75016 port 15728757 75016 nas_port_type Virtual 75016 remote_ip 5.5.5.218 75018 username asadi 75018 unique_id port 75018 terminate_cause User-Request 75018 bytes_out 933451 75018 bytes_in 33728895 75018 station_ip 37.129.172.236 75018 port 15728759 75018 nas_port_type Virtual 75018 remote_ip 5.5.5.218 75019 username asadi 75019 unique_id port 75019 terminate_cause User-Request 75019 bytes_out 775007 75019 bytes_in 31626913 75019 station_ip 37.129.172.236 75019 port 15728761 75019 nas_port_type Virtual 75019 remote_ip 5.5.5.218 75022 username asadi 75022 unique_id port 75022 terminate_cause User-Request 75022 bytes_out 428096 75022 bytes_in 16940696 75022 station_ip 37.129.172.236 75022 port 15728764 75022 nas_port_type Virtual 75022 remote_ip 5.5.5.218 75024 username asadi 75024 unique_id port 75024 terminate_cause User-Request 75024 bytes_out 42236 75024 bytes_in 40759 75024 station_ip 37.129.172.236 75024 port 15728768 75024 nas_port_type Virtual 75024 remote_ip 5.5.5.218 75027 username mohammadi 75027 unique_id port 75027 terminate_cause User-Request 75027 bytes_out 43311 75027 bytes_in 182252 75027 station_ip 83.123.83.81 75027 port 15728771 75027 nas_port_type Virtual 75027 remote_ip 5.5.5.217 75030 username asadi 74993 unique_id port 74993 terminate_cause User-Request 74993 bytes_out 55160 74993 bytes_in 262616 74993 station_ip 83.123.83.81 74993 port 15728736 74993 nas_port_type Virtual 74993 remote_ip 5.5.5.217 74997 username asadi 74997 unique_id port 74997 terminate_cause User-Request 74997 bytes_out 36874 74997 bytes_in 406934 74997 station_ip 37.129.172.236 74997 port 15728742 74997 nas_port_type Virtual 74997 remote_ip 5.5.5.218 74998 username asadi 74998 unique_id port 74998 terminate_cause User-Request 74998 bytes_out 231148 74998 bytes_in 4861550 74998 station_ip 37.129.172.236 74998 port 15728743 74998 nas_port_type Virtual 74998 remote_ip 5.5.5.218 75000 username mobina 75000 unique_id port 75000 terminate_cause Lost-Carrier 75000 bytes_out 3810 75000 bytes_in 117023 75000 station_ip 5.123.12.94 75000 port 15728739 75000 nas_port_type Virtual 75000 remote_ip 5.5.5.216 75003 username asadi 75003 unique_id port 75003 terminate_cause User-Request 75003 bytes_out 29795 75003 bytes_in 345116 75003 station_ip 37.129.172.236 75003 port 15728747 75003 nas_port_type Virtual 75003 remote_ip 5.5.5.218 75004 username asadi 75004 unique_id port 75004 terminate_cause User-Request 75004 bytes_out 21522 75004 bytes_in 64387 75004 station_ip 37.129.172.236 75004 port 15728748 75004 nas_port_type Virtual 75004 remote_ip 5.5.5.218 75007 username asadi 75007 unique_id port 75007 terminate_cause User-Request 75007 bytes_out 26721 75007 bytes_in 63384 75007 station_ip 37.129.172.236 75007 port 15728751 75007 nas_port_type Virtual 75007 remote_ip 5.5.5.218 81151 terminate_cause User-Request 81151 bytes_out 0 81151 bytes_in 0 81151 station_ip 113.203.56.55 81151 port 15728750 81151 nas_port_type Virtual 81151 remote_ip 5.5.5.206 81154 username soleymani 81154 unique_id port 75009 username asadi 75009 unique_id port 75009 terminate_cause User-Request 75009 bytes_out 35909 75009 bytes_in 192657 75009 station_ip 37.129.172.236 75009 port 15728752 75009 nas_port_type Virtual 75009 remote_ip 5.5.5.218 75023 username asadi 75023 unique_id port 75023 terminate_cause User-Request 75023 bytes_out 381993 75023 bytes_in 12446221 75023 station_ip 37.129.172.236 75023 port 15728767 75023 nas_port_type Virtual 75023 remote_ip 5.5.5.218 75026 username asadi 75026 unique_id port 75026 terminate_cause User-Request 75026 bytes_out 130304 75026 bytes_in 2803265 75026 station_ip 37.129.172.236 75026 port 15728770 75026 nas_port_type Virtual 75026 remote_ip 5.5.5.218 75031 username asadi 75031 unique_id port 75031 terminate_cause User-Request 75031 bytes_out 340268 75031 bytes_in 7888881 75031 station_ip 37.129.172.236 75031 port 15728776 75031 nas_port_type Virtual 75031 remote_ip 5.5.5.218 75037 username mohammadi 75037 unique_id port 75037 terminate_cause User-Request 75037 bytes_out 34726 75037 bytes_in 175588 75037 station_ip 83.123.55.137 75037 port 15728781 75037 nas_port_type Virtual 75037 remote_ip 5.5.5.211 75039 username iranmanesh 75039 unique_id port 75039 terminate_cause Lost-Carrier 75039 bytes_out 497904 75039 bytes_in 9029717 75039 station_ip 5.113.145.251 75039 port 15728775 75039 nas_port_type Virtual 75039 remote_ip 5.5.5.213 75041 username asadi 75041 unique_id port 75041 terminate_cause User-Request 75041 bytes_out 71289 75041 bytes_in 638674 75041 station_ip 37.129.172.236 75041 port 15728787 75041 nas_port_type Virtual 75041 remote_ip 5.5.5.218 75044 username mobina 75044 unique_id port 75044 terminate_cause Lost-Carrier 75044 bytes_out 140291 75044 bytes_in 747304 75044 station_ip 5.123.222.32 75044 port 15728789 75044 nas_port_type Virtual 75044 remote_ip 5.5.5.210 75025 bytes_in 113944 75025 station_ip 37.129.172.236 75025 port 15728769 75025 nas_port_type Virtual 75025 remote_ip 5.5.5.218 75028 username asadi 75028 unique_id port 75028 terminate_cause User-Request 75028 bytes_out 40859 75028 bytes_in 154188 75028 station_ip 37.129.172.236 75028 port 15728772 75028 nas_port_type Virtual 75028 remote_ip 5.5.5.218 75029 username asadi 75029 unique_id port 75029 terminate_cause User-Request 75029 bytes_out 0 75029 bytes_in 0 75029 station_ip 37.129.172.236 75029 port 15728773 75029 nas_port_type Virtual 75029 remote_ip 5.5.5.218 75032 username asadi 75032 unique_id port 75032 terminate_cause User-Request 75032 bytes_out 547160 75032 bytes_in 24929955 75032 station_ip 37.129.172.236 75032 port 15728777 75032 nas_port_type Virtual 75032 remote_ip 5.5.5.218 75033 username asadi 75033 unique_id port 75033 terminate_cause User-Request 75033 bytes_out 439629 75033 bytes_in 16252663 75033 station_ip 37.129.172.236 75033 port 15728778 75033 nas_port_type Virtual 75033 remote_ip 5.5.5.218 75035 username alinezhad 75035 unique_id port 75035 terminate_cause User-Request 75035 bytes_out 0 75035 bytes_in 0 75035 station_ip 5.202.97.105 75035 port 15728780 75035 nas_port_type Virtual 75035 remote_ip 5.5.5.212 75038 username mohammadi 75038 unique_id port 75038 terminate_cause User-Request 75038 bytes_out 29648 75038 bytes_in 62125 75038 station_ip 83.123.55.137 75038 port 15728782 75038 nas_port_type Virtual 75038 remote_ip 5.5.5.211 75040 username alinezhad 75040 unique_id port 75040 terminate_cause User-Request 75040 bytes_out 0 75040 bytes_in 0 75040 station_ip 5.202.97.105 75040 port 15728783 75040 nas_port_type Virtual 75040 remote_ip 5.5.5.212 75043 username alinezhad 75043 unique_id port 75043 terminate_cause User-Request 75043 bytes_out 27346 75043 bytes_in 194232 75043 station_ip 5.202.97.105 75043 port 15728788 75043 nas_port_type Virtual 75043 remote_ip 5.5.5.212 75045 username ahmadi 75045 unique_id port 75045 terminate_cause User-Request 75045 bytes_out 62116 75045 bytes_in 346280 75045 station_ip 83.123.105.94 75045 port 15728792 75045 nas_port_type Virtual 75045 remote_ip 5.5.5.207 75049 username hamideh 75049 unique_id port 75049 terminate_cause Lost-Carrier 75049 bytes_out 115108 75049 bytes_in 778906 75049 station_ip 5.119.216.4 75049 port 15728800 75049 nas_port_type Virtual 75049 remote_ip 5.5.5.247 75054 username amin.insta22 75054 unique_id port 75054 terminate_cause Lost-Carrier 75054 bytes_out 278601 75054 bytes_in 1852897 75054 station_ip 5.120.35.23 75054 port 15728801 75054 nas_port_type Virtual 75054 remote_ip 5.5.5.202 81152 station_ip 37.129.58.169 81152 port 15728751 81152 nas_port_type Virtual 81152 remote_ip 5.5.5.198 81153 username reza 81153 unique_id port 81153 terminate_cause User-Request 81153 bytes_out 0 81153 bytes_in 0 81153 station_ip 113.203.56.55 81153 port 15728754 81153 nas_port_type Virtual 81153 remote_ip 5.5.5.206 81156 username reza 81156 unique_id port 81156 terminate_cause User-Request 81156 bytes_out 617 81156 bytes_in 11929 75059 username mohammadi 75059 unique_id port 75059 terminate_cause User-Request 75059 bytes_out 37322 75059 bytes_in 163714 75059 station_ip 83.123.122.177 75059 port 15728808 75059 nas_port_type Virtual 75059 remote_ip 5.5.5.204 81156 station_ip 113.203.56.55 81156 port 15728757 81156 nas_port_type Virtual 81156 remote_ip 5.5.5.206 81169 username zamanialireza 81169 unique_id port 81169 terminate_cause User-Request 81169 bytes_out 70751 81169 bytes_in 544439 75065 username asadi 75065 unique_id port 75065 terminate_cause User-Request 75065 bytes_out 68333 75030 unique_id port 75030 terminate_cause User-Request 75030 bytes_out 15511 75030 bytes_in 66712 75030 station_ip 37.129.172.236 75030 port 15728774 75030 nas_port_type Virtual 75030 remote_ip 5.5.5.218 81154 terminate_cause User-Request 81154 bytes_out 76165 81154 bytes_in 95634 81154 station_ip 5.119.75.51 81154 port 15728752 81154 nas_port_type Virtual 81154 remote_ip 5.5.5.197 81162 username asadi 81162 unique_id port 75036 username zoha 75036 unique_id port 75036 terminate_cause Lost-Carrier 75036 bytes_out 1251522 75036 bytes_in 11332605 75036 station_ip 5.119.17.164 75036 port 15728779 75036 nas_port_type Virtual 75036 remote_ip 5.5.5.246 75042 username amin.insta21 75042 unique_id port 75042 terminate_cause Lost-Carrier 75042 bytes_out 2574562 75042 bytes_in 12524112 75042 station_ip 151.235.125.27 75042 port 15728760 75042 nas_port_type Virtual 75042 remote_ip 5.5.5.225 81162 terminate_cause User-Request 81162 bytes_out 26603 81162 bytes_in 58999 81162 station_ip 83.122.141.139 81162 port 15728760 81162 nas_port_type Virtual 81162 remote_ip 5.5.5.211 81170 username forozande 81170 unique_id port 75047 username mohammadi 75047 unique_id port 75047 terminate_cause User-Request 75047 bytes_out 37167 75047 bytes_in 97729 75047 station_ip 83.123.122.177 75047 port 15728798 75047 nas_port_type Virtual 75047 remote_ip 5.5.5.204 75051 username mobina 75051 unique_id port 75051 terminate_cause Lost-Carrier 75051 bytes_out 3416596 75051 bytes_in 100765358 75051 station_ip 5.123.80.227 75051 port 15728797 75051 nas_port_type Virtual 75051 remote_ip 5.5.5.205 75057 username mohammadi 75057 unique_id port 75057 terminate_cause User-Request 75057 bytes_out 35689 75057 bytes_in 33635 75057 station_ip 83.123.122.177 75057 port 15728806 75057 nas_port_type Virtual 75057 remote_ip 5.5.5.204 75060 username alinezhad 75060 unique_id port 75060 terminate_cause User-Request 75060 bytes_out 0 75060 bytes_in 0 75060 station_ip 5.202.97.105 75060 port 15728810 75060 nas_port_type Virtual 75060 remote_ip 5.5.5.212 75064 username iranmanesh 75064 unique_id port 75064 terminate_cause Lost-Carrier 75064 bytes_out 1835037 75064 bytes_in 20183268 75064 station_ip 5.114.197.126 75064 port 15728796 75064 nas_port_type Virtual 75064 remote_ip 5.5.5.206 75069 username asadi 75069 unique_id port 75069 terminate_cause User-Request 75069 bytes_out 79603 75069 bytes_in 729664 75069 station_ip 83.123.104.12 75069 port 15728820 75069 nas_port_type Virtual 75069 remote_ip 5.5.5.203 75070 username mobina 75070 unique_id port 75070 terminate_cause User-Request 75070 bytes_out 71220 75070 bytes_in 337897 75070 station_ip 5.123.158.182 75070 port 15728822 75070 nas_port_type Virtual 75070 remote_ip 5.5.5.195 75074 username rashidi 75074 unique_id port 75074 terminate_cause Lost-Carrier 75074 bytes_out 8313128 75074 bytes_in 88517934 75074 station_ip 5.120.134.237 75074 port 15728819 75074 nas_port_type Virtual 75074 remote_ip 5.5.5.220 75076 username amin.insta21 75076 unique_id port 75076 terminate_cause User-Request 75076 bytes_out 0 75076 bytes_in 0 75076 station_ip 5.120.42.208 75076 port 15728826 75076 nas_port_type Virtual 75076 remote_ip 5.5.5.192 75079 username amin.insta13 75079 unique_id port 75079 terminate_cause User-Request 75079 bytes_out 0 75079 bytes_in 0 75079 station_ip 46.100.216.233 75079 port 15728831 75079 nas_port_type Virtual 75079 remote_ip 5.5.5.229 75080 username amin.insta21 75080 unique_id port 75080 terminate_cause User-Request 75080 bytes_out 0 75080 bytes_in 0 75080 station_ip 5.120.42.208 75080 port 15728832 75080 nas_port_type Virtual 75080 remote_ip 5.5.5.191 75048 username asadi 75048 unique_id port 75048 terminate_cause User-Request 75048 bytes_out 45629 75048 bytes_in 616665 75048 station_ip 83.123.104.12 75048 port 15728799 75048 nas_port_type Virtual 75048 remote_ip 5.5.5.203 75050 username zoha 75050 unique_id port 75050 terminate_cause Lost-Carrier 75050 bytes_out 1460449 75050 bytes_in 12304889 75050 station_ip 5.120.89.10 75050 port 15728791 75050 nas_port_type Virtual 75050 remote_ip 5.5.5.208 75052 username ahmadi 75052 unique_id port 75052 terminate_cause User-Request 75052 bytes_out 47009 75052 bytes_in 242138 75052 station_ip 83.123.29.82 75052 port 15728803 75052 nas_port_type Virtual 75052 remote_ip 5.5.5.201 75053 username alinezhad 75053 unique_id port 75053 terminate_cause User-Request 75053 bytes_out 81781 75053 bytes_in 653405 75053 station_ip 5.202.97.105 75053 port 15728802 75053 nas_port_type Virtual 75053 remote_ip 5.5.5.212 75058 username mohammadi 75058 unique_id port 75058 terminate_cause User-Request 75058 bytes_out 19086 75058 bytes_in 48486 75058 station_ip 83.123.122.177 75058 port 15728807 75058 nas_port_type Virtual 75058 remote_ip 5.5.5.204 75062 username ahmadi 75062 unique_id port 75062 terminate_cause User-Request 75062 bytes_out 0 75062 bytes_in 0 75062 station_ip 83.123.109.226 75062 port 15728813 75062 nas_port_type Virtual 75062 remote_ip 5.5.5.198 75063 username zoha 75063 unique_id port 75063 terminate_cause Lost-Carrier 75063 bytes_out 927218 75063 bytes_in 8299667 75063 station_ip 5.120.89.10 75063 port 15728811 75063 nas_port_type Virtual 75063 remote_ip 5.5.5.208 75067 username alinezhad 75067 unique_id port 75067 terminate_cause Lost-Carrier 75067 bytes_out 120029 75067 bytes_in 1173051 75067 station_ip 5.202.97.105 75067 port 15728812 75067 nas_port_type Virtual 75067 remote_ip 5.5.5.212 75068 username asadi 75068 unique_id port 75068 terminate_cause User-Request 75068 bytes_out 30263 75068 bytes_in 250227 75068 station_ip 83.123.104.12 75068 port 15728816 75068 nas_port_type Virtual 75068 remote_ip 5.5.5.203 75071 username alirezazamani 75071 unique_id port 75071 terminate_cause Lost-Carrier 75071 bytes_out 207709 75071 bytes_in 1556936 75071 station_ip 5.120.70.56 75071 port 15728821 75071 nas_port_type Virtual 75071 remote_ip 5.5.5.196 75072 username alinezhad 75072 unique_id port 75072 terminate_cause User-Request 75072 bytes_out 167620 75072 bytes_in 314751 75072 station_ip 37.129.227.50 75072 port 15728823 75072 nas_port_type Virtual 75072 remote_ip 5.5.5.194 81158 username caferibar 81158 unique_id port 81158 terminate_cause Lost-Carrier 81158 bytes_out 568390 81158 bytes_in 9915802 81158 station_ip 5.119.79.148 81158 port 15728749 81158 nas_port_type Virtual 81158 remote_ip 5.5.5.199 75077 username amin.insta21 75077 unique_id port 75077 terminate_cause User-Request 75077 bytes_out 0 75077 bytes_in 0 75077 station_ip 5.120.42.208 75077 port 15728827 75077 nas_port_type Virtual 75077 remote_ip 5.5.5.192 75078 username amin.insta21 75078 unique_id port 75078 terminate_cause User-Request 75078 bytes_out 0 75078 bytes_in 0 75078 station_ip 5.120.42.208 75078 port 15728829 75078 nas_port_type Virtual 75078 remote_ip 5.5.5.192 75081 username amin.insta21 75081 unique_id port 75081 terminate_cause Lost-Carrier 75081 bytes_out 1439584 75081 bytes_in 28244493 75081 station_ip 5.120.42.208 75081 port 15728830 75081 nas_port_type Virtual 75081 remote_ip 5.5.5.192 75084 username mobina 75084 unique_id port 75084 terminate_cause User-Request 75084 bytes_out 2826404 75084 bytes_in 22594236 75084 station_ip 5.124.10.17 75084 port 15728835 75084 nas_port_type Virtual 75065 bytes_in 445974 75065 station_ip 83.123.104.12 75065 port 15728814 75065 nas_port_type Virtual 75065 remote_ip 5.5.5.203 75066 username alinezhad 75066 unique_id port 75066 terminate_cause User-Request 75066 bytes_out 14742 75066 bytes_in 27318 75066 station_ip 83.123.67.93 75066 port 15728815 75066 nas_port_type Virtual 75066 remote_ip 5.5.5.197 75073 username asadi 75073 unique_id port 75073 terminate_cause User-Request 75073 bytes_out 70020 75073 bytes_in 756590 75073 station_ip 83.123.104.12 75073 port 15728824 75073 nas_port_type Virtual 75073 remote_ip 5.5.5.203 75082 username zoha 75082 unique_id port 75082 terminate_cause Lost-Carrier 75082 bytes_out 3362097 75082 bytes_in 45125282 75082 station_ip 5.120.89.10 75082 port 15728828 75082 nas_port_type Virtual 75082 remote_ip 5.5.5.208 75083 username amin.insta21 75083 unique_id port 75083 terminate_cause Lost-Carrier 75083 bytes_out 283136 75083 bytes_in 7026896 75083 station_ip 5.120.42.208 75083 port 15728833 75083 nas_port_type Virtual 75083 remote_ip 5.5.5.191 75084 remote_ip 5.5.5.189 75090 username mobina 75090 unique_id port 75090 terminate_cause User-Request 75090 bytes_out 60978 75090 bytes_in 125018 75090 station_ip 5.124.147.202 75090 port 15728648 75090 nas_port_type Virtual 75090 remote_ip 5.5.5.251 75095 username ahmadi 75095 unique_id port 75095 terminate_cause User-Request 75095 bytes_out 18135 75095 bytes_in 101272 75095 station_ip 83.123.99.46 75095 port 15728657 75095 nas_port_type Virtual 75095 remote_ip 5.5.5.245 75100 username aminvpn 75100 mac 75100 bytes_out 0 75100 bytes_in 0 75100 station_ip 5.119.53.235 75100 port 8 75100 unique_id port 75100 remote_ip 10.8.0.6 75101 username aminvpn 75101 mac 75101 bytes_out 0 75101 bytes_in 0 75101 station_ip 5.119.53.235 75101 port 8 75101 unique_id port 75101 remote_ip 10.8.0.6 75109 username aminvpn 75109 mac 75109 bytes_out 0 75109 bytes_in 0 75109 station_ip 5.119.53.235 75109 port 26 75109 unique_id port 75109 remote_ip 10.8.1.10 75110 username aminvpn 75110 mac 75110 bytes_out 0 75110 bytes_in 0 75110 station_ip 5.119.53.235 75110 port 26 75110 unique_id port 75110 remote_ip 10.8.1.10 75112 username aminvpn 75112 mac 75112 bytes_out 0 75112 bytes_in 0 75112 station_ip 5.119.53.235 75112 port 26 75112 unique_id port 75112 remote_ip 10.8.1.10 81159 port 15728753 81159 nas_port_type Virtual 81159 remote_ip 5.5.5.196 81160 username zamanialireza 81160 unique_id port 81160 terminate_cause Lost-Carrier 81160 bytes_out 89969 81160 bytes_in 310702 81160 station_ip 5.134.186.158 75119 username aminvpn 75119 mac 75119 bytes_out 0 75119 bytes_in 0 75119 station_ip 5.119.53.235 75119 port 26 75119 unique_id port 75119 remote_ip 10.8.1.10 75120 username aminvpn 75120 mac 75120 bytes_out 0 75120 bytes_in 0 75120 station_ip 5.119.53.235 75120 port 26 75120 unique_id port 75120 remote_ip 10.8.1.10 75122 username aminvpn 75122 mac 75122 bytes_out 0 75122 bytes_in 0 75122 station_ip 5.119.53.235 75122 port 26 75122 unique_id port 75122 remote_ip 10.8.1.10 75125 username aminvpn 75125 mac 75125 bytes_out 0 75125 bytes_in 0 75125 station_ip 5.119.53.235 75125 port 26 75125 unique_id port 75125 remote_ip 10.8.1.10 75133 username aminvpn 75133 mac 75133 bytes_out 0 75133 bytes_in 0 75133 station_ip 5.119.53.235 75133 port 26 75133 unique_id port 75133 remote_ip 10.8.1.10 75135 username aminvpn 75135 mac 75135 bytes_out 0 75085 username mobina 75085 unique_id port 75085 terminate_cause Lost-Carrier 75085 bytes_out 5497033 75085 bytes_in 201125434 75085 station_ip 5.124.10.17 75085 port 15728834 75085 nas_port_type Virtual 75085 remote_ip 5.5.5.190 75087 username asadi 75087 unique_id port 75087 terminate_cause User-Request 75087 bytes_out 109553 75087 bytes_in 1390206 75087 station_ip 83.122.238.186 75087 port 15728641 75087 nas_port_type Virtual 75087 remote_ip 5.5.5.255 75088 username alinezhad 75088 unique_id port 75088 terminate_cause User-Request 75088 bytes_out 0 75088 bytes_in 0 75088 station_ip 5.202.28.123 75088 port 15728642 75088 nas_port_type Virtual 75088 remote_ip 5.5.5.254 75092 username iranmanesh 75092 unique_id port 75092 terminate_cause User-Request 75092 bytes_out 0 75092 bytes_in 0 75092 station_ip 5.113.31.32 75092 port 15728652 75092 nas_port_type Virtual 75092 remote_ip 5.5.5.249 75096 username alinezhad 75096 unique_id port 75096 terminate_cause User-Request 75096 bytes_out 0 75096 bytes_in 0 75096 station_ip 5.202.28.123 75096 port 15728658 75096 nas_port_type Virtual 75096 remote_ip 5.5.5.254 75097 username aminvpn 75097 unique_id port 75097 terminate_cause Lost-Carrier 75097 bytes_out 629292 75097 bytes_in 1881288 75097 station_ip 2.183.249.152 75097 port 15728656 75097 nas_port_type Virtual 75097 remote_ip 5.5.5.246 81160 port 15728755 81160 nas_port_type Virtual 81160 remote_ip 5.5.5.195 81161 username alirezazamani 81161 kill_reason Relative expiration date has reached 81161 unique_id port 81161 bytes_out 0 81161 bytes_in 0 81161 station_ip 94.241.178.64 75102 username aminvpn 75102 kill_reason Maximum check online fails reached 75102 mac 75102 bytes_out 0 75102 bytes_in 0 75102 station_ip 5.119.53.235 75102 port 8 75102 unique_id port 75103 username aminvpn 75103 mac 75103 bytes_out 0 75103 bytes_in 0 75103 station_ip 5.119.53.235 75103 port 26 75103 unique_id port 75103 remote_ip 10.8.1.10 75106 username mobina 75106 unique_id port 75106 terminate_cause User-Request 75106 bytes_out 18800344 75106 bytes_in 581598617 75106 station_ip 5.124.147.202 75106 port 15728651 75106 nas_port_type Virtual 75106 remote_ip 5.5.5.251 75111 username aminvpn 75111 mac 75111 bytes_out 0 75111 bytes_in 0 75111 station_ip 5.119.53.235 75111 port 26 75111 unique_id port 75111 remote_ip 10.8.1.10 75113 username aminvpn 75113 mac 75113 bytes_out 0 75113 bytes_in 0 75113 station_ip 5.119.53.235 75113 port 26 75113 unique_id port 75113 remote_ip 10.8.1.10 75114 username aminvpn 75114 mac 75114 bytes_out 0 75114 bytes_in 0 75114 station_ip 5.119.53.235 75114 port 26 75114 unique_id port 75114 remote_ip 10.8.1.10 75117 username aminvpn 75117 mac 75117 bytes_out 0 75117 bytes_in 0 75117 station_ip 5.119.53.235 75117 port 26 75117 unique_id port 75117 remote_ip 10.8.1.10 75118 username aminvpn 75118 mac 75118 bytes_out 0 75118 bytes_in 0 75118 station_ip 5.119.53.235 75118 port 26 75118 unique_id port 75118 remote_ip 10.8.1.10 75121 username aminvpn 75121 mac 75121 bytes_out 0 75121 bytes_in 0 75121 station_ip 5.119.53.235 75121 port 26 75121 unique_id port 75121 remote_ip 10.8.1.10 75123 username aminvpn 75123 mac 75123 bytes_out 0 75123 bytes_in 0 75123 station_ip 5.119.53.235 75123 port 26 75123 unique_id port 75123 remote_ip 10.8.1.10 75126 username aminvpn 75126 mac 75126 bytes_out 0 75126 bytes_in 0 75126 station_ip 5.119.53.235 75126 port 26 75126 unique_id port 75086 username asadi 75086 unique_id port 75086 terminate_cause User-Request 75086 bytes_out 203081 75086 bytes_in 5050306 75086 station_ip 83.122.238.186 75086 port 15728640 75086 nas_port_type Virtual 75086 remote_ip 5.5.5.255 75089 username amin.insta19 75089 unique_id port 75089 terminate_cause Lost-Carrier 75089 bytes_out 1656859 75089 bytes_in 5329328 75089 station_ip 5.119.193.66 75089 port 15728644 75089 nas_port_type Virtual 75089 remote_ip 5.5.5.252 75091 username alinezhad 75091 unique_id port 75091 terminate_cause User-Request 75091 bytes_out 0 75091 bytes_in 0 75091 station_ip 5.202.28.123 75091 port 15728649 75091 nas_port_type Virtual 75091 remote_ip 5.5.5.254 75093 username hamideh 75093 unique_id port 75093 terminate_cause Lost-Carrier 75093 bytes_out 250610 75093 bytes_in 2683012 75093 station_ip 5.119.216.4 75093 port 15728650 75093 nas_port_type Virtual 75093 remote_ip 5.5.5.250 81161 port 15728761 81161 nas_port_type Virtual 81166 username zamanialireza 81166 unique_id port 81166 terminate_cause User-Request 81166 bytes_out 0 81166 bytes_in 0 81166 station_ip 113.203.25.99 81166 port 15728768 75098 username mahdi 75098 unique_id port 75098 terminate_cause Lost-Carrier 75098 bytes_out 1721557 75098 bytes_in 56257766 75098 station_ip 5.119.185.92 75098 port 15728655 75098 nas_port_type Virtual 75098 remote_ip 5.5.5.247 75104 username aminvpn 75104 mac 75104 bytes_out 0 75104 bytes_in 0 75104 station_ip 5.119.53.235 75104 port 26 75104 unique_id port 75104 remote_ip 10.8.1.10 75105 username aminvpn 75105 mac 75105 bytes_out 0 75105 bytes_in 0 75105 station_ip 5.119.53.235 75105 port 26 75105 unique_id port 75105 remote_ip 10.8.1.10 75107 username aminvpn 75107 mac 75107 bytes_out 0 75107 bytes_in 0 75107 station_ip 5.119.53.235 75107 port 26 75107 unique_id port 75107 remote_ip 10.8.1.10 75108 username aminvpn 75108 mac 75108 bytes_out 0 75108 bytes_in 0 75108 station_ip 5.119.53.235 75108 port 26 75108 unique_id port 75108 remote_ip 10.8.1.10 75115 username aminvpn 75115 mac 75115 bytes_out 0 75115 bytes_in 0 75115 station_ip 5.119.53.235 75115 port 26 75115 unique_id port 75115 remote_ip 10.8.1.10 75124 username amin.insta22 75124 unique_id port 75124 terminate_cause Lost-Carrier 75124 bytes_out 211564 75124 bytes_in 1322389 75124 station_ip 5.120.155.93 75124 port 15728664 75124 nas_port_type Virtual 75124 remote_ip 5.5.5.242 75128 username aminvpn 75128 mac 75128 bytes_out 0 75128 bytes_in 0 75128 station_ip 5.119.53.235 75128 port 26 75128 unique_id port 75128 remote_ip 10.8.1.10 75129 username mobina 75129 unique_id port 75129 terminate_cause Lost-Carrier 75129 bytes_out 466915 75129 bytes_in 6283081 75129 station_ip 5.124.147.202 75129 port 15728660 75129 nas_port_type Virtual 75129 remote_ip 5.5.5.243 75131 username aminvpn 75131 mac 75131 bytes_out 0 75131 bytes_in 0 75131 station_ip 5.119.53.235 75131 port 26 75131 unique_id port 75131 remote_ip 10.8.1.10 75132 username aminvpn 75132 mac 75132 bytes_out 0 75132 bytes_in 0 75132 station_ip 5.119.53.235 75132 port 26 75132 unique_id port 75132 remote_ip 10.8.1.10 75134 username aminvpn 75134 mac 75134 bytes_out 0 75134 bytes_in 0 75134 station_ip 5.119.53.235 75134 port 26 75134 unique_id port 75134 remote_ip 10.8.1.10 75139 username aminvpn 75139 mac 75139 bytes_out 0 75139 bytes_in 0 75139 station_ip 5.119.53.235 75139 port 26 75139 unique_id port 75126 remote_ip 10.8.1.10 75127 username aminvpn 75127 mac 75127 bytes_out 0 75127 bytes_in 0 75127 station_ip 5.119.53.235 75127 port 26 75127 unique_id port 75127 remote_ip 10.8.1.10 75130 username aminvpn 75130 mac 75130 bytes_out 0 75130 bytes_in 0 75130 station_ip 5.119.53.235 75130 port 26 75130 unique_id port 75130 remote_ip 10.8.1.10 75137 username aminvpn 75137 mac 75137 bytes_out 0 75137 bytes_in 0 75137 station_ip 5.119.53.235 75137 port 26 75137 unique_id port 75137 remote_ip 10.8.1.10 75138 username aminvpn 75138 mac 75138 bytes_out 0 75138 bytes_in 0 75138 station_ip 5.119.53.235 75138 port 26 75138 unique_id port 75138 remote_ip 10.8.1.10 75141 username aminvpn 75141 mac 75141 bytes_out 0 75141 bytes_in 0 75141 station_ip 5.119.53.235 75141 port 26 75141 unique_id port 75141 remote_ip 10.8.1.10 75143 username aminvpn 75143 mac 75143 bytes_out 0 75143 bytes_in 0 75143 station_ip 5.119.53.235 75143 port 26 75143 unique_id port 75143 remote_ip 10.8.1.10 75144 username aminvpn 75144 mac 75144 bytes_out 0 75144 bytes_in 0 75144 station_ip 5.119.53.235 75144 port 26 75144 unique_id port 75144 remote_ip 10.8.1.10 75146 username aminvpn 75146 mac 75146 bytes_out 0 75146 bytes_in 0 75146 station_ip 5.119.53.235 75146 port 26 75146 unique_id port 75146 remote_ip 10.8.1.10 75155 username aminvpn 75155 mac 75155 bytes_out 0 75155 bytes_in 0 75155 station_ip 5.119.53.235 75155 port 26 75155 unique_id port 75155 remote_ip 10.8.1.10 75157 username aminvpn 75157 mac 75157 bytes_out 0 75157 bytes_in 0 75157 station_ip 5.119.53.235 75157 port 26 75157 unique_id port 75157 remote_ip 10.8.1.10 75158 username aminvpn 75158 unique_id port 75158 terminate_cause Lost-Carrier 75158 bytes_out 67886 75158 bytes_in 589729 75158 station_ip 2.183.249.152 75158 port 15728667 75158 nas_port_type Virtual 75158 remote_ip 5.5.5.246 75160 username alinezhad 75160 unique_id port 75160 terminate_cause User-Request 75160 bytes_out 0 75160 bytes_in 0 75160 station_ip 5.202.28.123 75160 port 15728669 75160 nas_port_type Virtual 75160 remote_ip 5.5.5.254 75164 username aminvpn 75164 mac 75164 bytes_out 0 75164 bytes_in 0 75164 station_ip 5.119.53.235 75164 port 26 75164 unique_id port 75164 remote_ip 10.8.1.10 75166 username aminvpn 75166 mac 75166 bytes_out 0 75166 bytes_in 0 75166 station_ip 5.119.53.235 75166 port 26 75166 unique_id port 75166 remote_ip 10.8.1.10 75168 username aminvpn 75168 mac 75168 bytes_out 0 75168 bytes_in 0 75168 station_ip 5.119.53.235 75168 port 26 75168 unique_id port 75168 remote_ip 10.8.1.10 75169 username aminvpn 75169 mac 75169 bytes_out 0 75169 bytes_in 0 75169 station_ip 5.119.53.235 75169 port 26 75169 unique_id port 75169 remote_ip 10.8.1.10 75180 username iranmanesh 75180 unique_id port 75180 terminate_cause Lost-Carrier 75180 bytes_out 1103591 75180 bytes_in 11757008 75180 station_ip 5.113.31.32 75180 port 15728653 75180 nas_port_type Virtual 75180 remote_ip 5.5.5.249 75181 username alinezhad 75181 unique_id port 75181 terminate_cause User-Request 75181 bytes_out 0 75181 bytes_in 0 75181 station_ip 5.202.28.123 75181 port 15728673 75181 nas_port_type Virtual 75181 remote_ip 5.5.5.254 75183 username alirezazamani 75183 unique_id port 75183 terminate_cause Lost-Carrier 75183 bytes_out 2117584 75183 bytes_in 34175151 75183 station_ip 5.120.109.20 75135 bytes_in 0 75135 station_ip 5.119.53.235 75135 port 26 75135 unique_id port 75135 remote_ip 10.8.1.10 75136 username aminvpn 75136 mac 75136 bytes_out 0 75136 bytes_in 0 75136 station_ip 5.119.53.235 75136 port 26 75136 unique_id port 75136 remote_ip 10.8.1.10 75142 username alirezazamani 75142 unique_id port 75142 terminate_cause Lost-Carrier 75142 bytes_out 152313 75142 bytes_in 2764142 75142 station_ip 5.120.130.154 75142 port 15728666 75142 nas_port_type Virtual 75142 remote_ip 5.5.5.240 75149 username aminvpn 75149 mac 75149 bytes_out 0 75149 bytes_in 0 75149 station_ip 5.119.53.235 75149 port 26 75149 unique_id port 75149 remote_ip 10.8.1.10 75153 username aminvpn 75153 mac 75153 bytes_out 0 75153 bytes_in 0 75153 station_ip 5.119.53.235 75153 port 26 75153 unique_id port 75153 remote_ip 10.8.1.10 75154 username aminvpn 75154 mac 75154 bytes_out 0 75154 bytes_in 0 75154 station_ip 5.119.53.235 75154 port 26 75154 unique_id port 75154 remote_ip 10.8.1.10 75156 username aminvpn 75156 mac 75156 bytes_out 0 75156 bytes_in 0 75156 station_ip 5.119.53.235 75156 port 26 75156 unique_id port 75156 remote_ip 10.8.1.10 75159 username aminvpn 75159 kill_reason Another user logged on this global unique id 75159 mac 75159 bytes_out 0 75159 bytes_in 0 75159 station_ip 5.119.53.235 75159 port 26 75159 unique_id port 75159 remote_ip 10.8.1.10 75162 username aminvpn 75162 mac 75162 bytes_out 0 75162 bytes_in 0 75162 station_ip 5.119.53.235 75162 port 26 75162 unique_id port 75162 remote_ip 10.8.1.10 75163 username aminvpn 75163 mac 75163 bytes_out 0 75163 bytes_in 0 75163 station_ip 5.119.53.235 75163 port 26 75163 unique_id port 75163 remote_ip 10.8.1.10 75165 username aminvpn 75165 mac 75165 bytes_out 0 75165 bytes_in 0 75165 station_ip 5.119.53.235 75165 port 26 75165 unique_id port 75165 remote_ip 10.8.1.10 75167 username aminvpn 75167 mac 75167 bytes_out 0 75167 bytes_in 0 75167 station_ip 5.119.53.235 75167 port 26 75167 unique_id port 75167 remote_ip 10.8.1.10 75172 username aminvpn 75172 mac 75172 bytes_out 0 75172 bytes_in 0 75172 station_ip 5.119.53.235 75172 port 26 75172 unique_id port 75172 remote_ip 10.8.1.10 75173 username aminvpn 75173 mac 75173 bytes_out 0 75173 bytes_in 0 75173 station_ip 5.119.53.235 75173 port 26 75173 unique_id port 75173 remote_ip 10.8.1.10 75175 username aminvpn 75175 mac 75175 bytes_out 0 75175 bytes_in 0 75175 station_ip 5.119.53.235 75175 port 26 75175 unique_id port 75175 remote_ip 10.8.1.10 75176 username aminvpn 75176 mac 75176 bytes_out 0 75176 bytes_in 0 75176 station_ip 5.119.53.235 75176 port 26 75176 unique_id port 75176 remote_ip 10.8.1.10 75178 username aminvpn 75178 kill_reason Another user logged on this global unique id 75178 mac 75178 bytes_out 0 75178 bytes_in 0 75178 station_ip 5.119.53.235 75178 port 26 75178 unique_id port 75178 remote_ip 10.8.1.10 75179 username mobina 75179 unique_id port 75179 terminate_cause Lost-Carrier 75179 bytes_out 781379 75179 bytes_in 16575047 75179 station_ip 5.123.251.154 75179 port 15728671 75179 nas_port_type Virtual 75179 remote_ip 5.5.5.237 75188 username aminvpn 75188 mac 75188 bytes_out 0 75188 bytes_in 0 75188 station_ip 5.119.53.235 75188 port 26 75188 unique_id port 75191 username rashidi 75191 unique_id port 75191 terminate_cause User-Request 75139 remote_ip 10.8.1.10 75140 username zoha 75140 unique_id port 75140 terminate_cause Lost-Carrier 75140 bytes_out 213504 75140 bytes_in 877711 75140 station_ip 5.120.89.10 75140 port 15728665 75140 nas_port_type Virtual 75140 remote_ip 5.5.5.241 75145 username aminvpn 75145 mac 75145 bytes_out 0 75145 bytes_in 0 75145 station_ip 5.119.53.235 75145 port 26 75145 unique_id port 75145 remote_ip 10.8.1.10 75147 username aminvpn 75147 mac 75147 bytes_out 0 75147 bytes_in 0 75147 station_ip 5.119.53.235 75147 port 26 75147 unique_id port 75147 remote_ip 10.8.1.10 75148 username aminvpn 75148 mac 75148 bytes_out 0 75148 bytes_in 0 75148 station_ip 5.119.53.235 75148 port 26 75148 unique_id port 75148 remote_ip 10.8.1.10 75150 username aminvpn 75150 mac 75150 bytes_out 0 75150 bytes_in 0 75150 station_ip 5.119.53.235 75150 port 26 75150 unique_id port 75150 remote_ip 10.8.1.10 75151 username aminvpn 75151 mac 75151 bytes_out 0 75151 bytes_in 0 75151 station_ip 5.119.53.235 75151 port 26 75151 unique_id port 75151 remote_ip 10.8.1.10 75152 username aminvpn 75152 mac 75152 bytes_out 0 75152 bytes_in 0 75152 station_ip 5.119.53.235 75152 port 26 75152 unique_id port 75152 remote_ip 10.8.1.10 75161 username aminvpn 75161 mac 75161 bytes_out 0 75161 bytes_in 0 75161 station_ip 5.119.53.235 75161 port 26 75161 unique_id port 75170 username aminvpn 75170 mac 75170 bytes_out 0 75170 bytes_in 0 75170 station_ip 5.119.53.235 75170 port 26 75170 unique_id port 75170 remote_ip 10.8.1.10 75171 username aminvpn 75171 mac 75171 bytes_out 0 75171 bytes_in 0 75171 station_ip 5.119.53.235 75171 port 26 75171 unique_id port 75171 remote_ip 10.8.1.10 75174 username aminvpn 75174 mac 75174 bytes_out 0 75174 bytes_in 0 75174 station_ip 5.119.53.235 75174 port 26 75174 unique_id port 75174 remote_ip 10.8.1.10 75177 username asadi 75177 unique_id port 75177 terminate_cause User-Request 75177 bytes_out 244499 75177 bytes_in 5506238 75177 station_ip 37.129.26.216 75177 port 15728672 75177 nas_port_type Virtual 75177 remote_ip 5.5.5.236 75182 username aminvpn 75182 kill_reason Another user logged on this global unique id 75182 mac 75182 bytes_out 0 75182 bytes_in 0 75182 station_ip 5.119.53.235 75182 port 26 75182 unique_id port 75184 username aminvpn 75184 kill_reason Another user logged on this global unique id 75184 mac 75184 bytes_out 0 75184 bytes_in 0 75184 station_ip 5.119.53.235 75184 port 26 75184 unique_id port 75185 username asadi 75185 unique_id port 75185 terminate_cause User-Request 75185 bytes_out 71194 75185 bytes_in 781700 75185 station_ip 37.129.26.216 75185 port 15728678 75185 nas_port_type Virtual 75185 remote_ip 5.5.5.236 75186 username asadi 75186 unique_id port 75186 terminate_cause User-Request 75186 bytes_out 64698 75186 bytes_in 188160 75186 station_ip 37.129.26.216 75186 port 15728679 75186 nas_port_type Virtual 75186 remote_ip 5.5.5.236 75189 username asadi 75189 unique_id port 75189 terminate_cause User-Request 75189 bytes_out 39090 75189 bytes_in 94862 75189 station_ip 37.129.26.216 75189 port 15728680 75189 nas_port_type Virtual 75189 remote_ip 5.5.5.236 75190 username asadi 75190 unique_id port 75190 terminate_cause User-Request 75190 bytes_out 58929 75190 bytes_in 163934 75190 station_ip 37.129.26.216 75190 port 15728681 75190 nas_port_type Virtual 75190 remote_ip 5.5.5.236 75192 username asadi 75192 unique_id port 75183 port 15728668 75183 nas_port_type Virtual 75183 remote_ip 5.5.5.239 75187 username aminvpn 75187 kill_reason Another user logged on this global unique id 75187 mac 75187 bytes_out 0 75187 bytes_in 0 75187 station_ip 5.119.53.235 75187 port 26 75187 unique_id port 75198 username alirezazamani 75198 unique_id port 75198 terminate_cause User-Request 75198 bytes_out 0 75198 bytes_in 0 75198 station_ip 5.119.26.3 75198 port 15728689 75198 nas_port_type Virtual 75198 remote_ip 5.5.5.234 75203 username mohammadi 75203 unique_id port 75203 terminate_cause User-Request 75203 bytes_out 0 75203 bytes_in 0 75203 station_ip 83.123.54.29 75203 port 15728694 75203 nas_port_type Virtual 75203 remote_ip 5.5.5.233 75204 username amin.insta13 75204 unique_id port 75204 terminate_cause User-Request 75204 bytes_out 0 75204 bytes_in 342 75204 station_ip 113.203.73.111 75204 port 15728695 75204 nas_port_type Virtual 75204 remote_ip 5.5.5.232 75205 username amin.insta13 75205 unique_id port 75205 terminate_cause User-Request 75205 bytes_out 0 75205 bytes_in 0 75205 station_ip 113.203.73.111 75205 port 15728696 75205 nas_port_type Virtual 75205 remote_ip 5.5.5.232 75212 username asadi 75212 unique_id port 75212 terminate_cause User-Request 75212 bytes_out 43497 75212 bytes_in 485574 75212 station_ip 37.129.26.216 75212 port 15728703 75212 nas_port_type Virtual 75212 remote_ip 5.5.5.236 75218 username asadi 75218 unique_id port 75218 terminate_cause User-Request 75218 bytes_out 347901 75218 bytes_in 3853243 75218 station_ip 37.129.26.216 75218 port 15728709 75218 nas_port_type Virtual 75218 remote_ip 5.5.5.236 75220 username asadi 75220 unique_id port 75220 terminate_cause User-Request 75220 bytes_out 98921 75220 bytes_in 497044 75220 station_ip 37.129.26.216 75220 port 15728711 75220 nas_port_type Virtual 75220 remote_ip 5.5.5.236 75223 username asadi 75223 unique_id port 75223 terminate_cause User-Request 75223 bytes_out 49765 75223 bytes_in 117922 75223 station_ip 37.129.26.216 75223 port 15728714 75223 nas_port_type Virtual 75223 remote_ip 5.5.5.236 75227 username asadi 75227 unique_id port 75227 terminate_cause User-Request 75227 bytes_out 378413 75227 bytes_in 11346502 75227 station_ip 37.129.26.216 75227 port 15728718 75227 nas_port_type Virtual 75227 remote_ip 5.5.5.236 75229 username alinezhad 75229 unique_id port 75229 terminate_cause User-Request 75229 bytes_out 0 75229 bytes_in 0 75229 station_ip 5.202.28.123 75229 port 15728720 75229 nas_port_type Virtual 75229 remote_ip 5.5.5.254 81163 username alinezhad 81163 unique_id port 81163 terminate_cause User-Request 81163 bytes_out 0 81163 bytes_in 0 81163 station_ip 5.202.4.103 81163 port 15728762 81163 nas_port_type Virtual 81163 remote_ip 5.5.5.226 75235 username mohammadi 75235 unique_id port 75235 terminate_cause User-Request 75235 bytes_out 52741 75235 bytes_in 522174 75235 station_ip 83.123.9.245 75235 port 15728726 75235 nas_port_type Virtual 75235 remote_ip 5.5.5.229 75236 username mohammadi 75236 unique_id port 75236 terminate_cause User-Request 75236 bytes_out 55150 75236 bytes_in 415803 75236 station_ip 83.123.9.245 75236 port 15728727 75236 nas_port_type Virtual 75236 remote_ip 5.5.5.229 75237 username alinezhad 75237 unique_id port 75237 terminate_cause User-Request 75237 bytes_out 0 75237 bytes_in 0 75237 station_ip 5.202.28.123 75237 port 15728729 75237 nas_port_type Virtual 75237 remote_ip 5.5.5.254 75239 username alirezazamani 75239 unique_id port 75239 terminate_cause User-Request 75239 bytes_out 288778 75239 bytes_in 3603846 75239 station_ip 83.122.192.221 75239 port 15728732 75191 bytes_out 9497759 75191 bytes_in 118998588 75191 station_ip 5.119.206.67 75191 port 15728670 75191 nas_port_type Virtual 75191 remote_ip 5.5.5.238 75193 username asadi 75193 unique_id port 75193 terminate_cause User-Request 75193 bytes_out 51927 75193 bytes_in 166708 75193 station_ip 37.129.26.216 75193 port 15728683 75193 nas_port_type Virtual 75193 remote_ip 5.5.5.236 75195 username ahmadi 75195 unique_id port 75195 terminate_cause User-Request 75195 bytes_out 71482 75195 bytes_in 868980 75195 station_ip 83.123.16.38 75195 port 15728687 75195 nas_port_type Virtual 75195 remote_ip 5.5.5.235 75207 username mobina 75207 unique_id port 75207 terminate_cause User-Request 75207 bytes_out 0 75207 bytes_in 0 75207 station_ip 5.124.73.251 75207 port 15728698 75207 nas_port_type Virtual 75207 remote_ip 5.5.5.231 75208 username asadi 75208 unique_id port 75208 terminate_cause User-Request 75208 bytes_out 65645 75208 bytes_in 1250136 75208 station_ip 37.129.26.216 75208 port 15728699 75208 nas_port_type Virtual 75208 remote_ip 5.5.5.236 75210 username asadi 75210 unique_id port 75210 terminate_cause User-Request 75210 bytes_out 59827 75210 bytes_in 645135 75210 station_ip 37.129.26.216 75210 port 15728701 75210 nas_port_type Virtual 75210 remote_ip 5.5.5.236 75213 username asadi 75213 unique_id port 75213 terminate_cause User-Request 75213 bytes_out 41061 75213 bytes_in 64017 75213 station_ip 37.129.26.216 75213 port 15728704 75213 nas_port_type Virtual 75213 remote_ip 5.5.5.236 75216 username asadi 75216 unique_id port 75216 terminate_cause User-Request 75216 bytes_out 44175 75216 bytes_in 62573 75216 station_ip 37.129.26.216 75216 port 15728707 75216 nas_port_type Virtual 75216 remote_ip 5.5.5.236 75219 username asadi 75219 unique_id port 75219 terminate_cause User-Request 75219 bytes_out 516924 75219 bytes_in 2806841 75219 station_ip 37.129.26.216 75219 port 15728710 75219 nas_port_type Virtual 75219 remote_ip 5.5.5.236 75221 username mohammadi 75221 unique_id port 75221 terminate_cause User-Request 75221 bytes_out 22091 75221 bytes_in 84063 75221 station_ip 83.123.54.29 75221 port 15728712 75221 nas_port_type Virtual 75221 remote_ip 5.5.5.233 75224 username asadi 75224 unique_id port 75224 terminate_cause User-Request 75224 bytes_out 293611 75224 bytes_in 6714810 75224 station_ip 37.129.26.216 75224 port 15728715 75224 nas_port_type Virtual 75224 remote_ip 5.5.5.236 75225 username asadi 75225 unique_id port 75225 terminate_cause User-Request 75225 bytes_out 130875 75225 bytes_in 1236675 75225 station_ip 37.129.26.216 75225 port 15728716 75225 nas_port_type Virtual 75225 remote_ip 5.5.5.236 75226 username asadi 75226 unique_id port 75226 terminate_cause User-Request 75226 bytes_out 331048 75226 bytes_in 11776800 75226 station_ip 37.129.26.216 75226 port 15728717 75226 nas_port_type Virtual 75226 remote_ip 5.5.5.236 75230 username asadi 75230 unique_id port 75230 terminate_cause User-Request 75230 bytes_out 0 75230 bytes_in 0 75230 station_ip 37.129.26.216 75230 port 15728721 75230 nas_port_type Virtual 75230 remote_ip 5.5.5.236 75231 username asadi 75231 unique_id port 75231 terminate_cause User-Request 75231 bytes_out 12132 75231 bytes_in 30601 75231 station_ip 37.129.26.216 75231 port 15728723 75231 nas_port_type Virtual 75231 remote_ip 5.5.5.236 75234 username hamideh 75234 unique_id port 75234 terminate_cause Lost-Carrier 75234 bytes_out 5405780 75234 bytes_in 21964030 75234 station_ip 5.119.216.4 75234 port 15728686 75234 nas_port_type Virtual 75234 remote_ip 5.5.5.250 75238 username mohammadi 75238 unique_id port 75238 terminate_cause User-Request 75192 terminate_cause User-Request 75192 bytes_out 34509 75192 bytes_in 63262 75192 station_ip 37.129.26.216 75192 port 15728682 75192 nas_port_type Virtual 75192 remote_ip 5.5.5.236 75194 username alinezhad 75194 unique_id port 75194 terminate_cause User-Request 75194 bytes_out 0 75194 bytes_in 0 75194 station_ip 5.202.28.123 75194 port 15728685 75194 nas_port_type Virtual 75194 remote_ip 5.5.5.254 75196 username alirezazamani 75196 unique_id port 75196 terminate_cause Lost-Carrier 75196 bytes_out 807521 75196 bytes_in 17587777 75196 station_ip 5.120.109.20 75196 port 15728684 75196 nas_port_type Virtual 75196 remote_ip 5.5.5.239 75197 username asadi 75197 unique_id port 75197 terminate_cause User-Request 75197 bytes_out 65345 75197 bytes_in 974926 75197 station_ip 37.129.26.216 75197 port 15728688 75197 nas_port_type Virtual 75197 remote_ip 5.5.5.236 75199 username asadi 75199 unique_id port 75199 terminate_cause User-Request 75199 bytes_out 109920 75199 bytes_in 509907 75199 station_ip 37.129.26.216 75199 port 15728690 75199 nas_port_type Virtual 75199 remote_ip 5.5.5.236 75200 username asadi 75200 unique_id port 75200 terminate_cause User-Request 75200 bytes_out 79621 75200 bytes_in 956704 75200 station_ip 37.129.26.216 75200 port 15728691 75200 nas_port_type Virtual 75200 remote_ip 5.5.5.236 75201 username alinezhad 75201 unique_id port 75201 terminate_cause User-Request 75201 bytes_out 0 75201 bytes_in 0 75201 station_ip 5.202.28.123 75201 port 15728693 75201 nas_port_type Virtual 75201 remote_ip 5.5.5.254 75202 username asadi 75202 unique_id port 75202 terminate_cause User-Request 75202 bytes_out 44763 75202 bytes_in 156114 75202 station_ip 37.129.26.216 75202 port 15728692 75202 nas_port_type Virtual 75202 remote_ip 5.5.5.236 75206 username ahmadi 75206 unique_id port 75206 terminate_cause User-Request 75206 bytes_out 29695 75206 bytes_in 236544 75206 station_ip 83.123.16.38 75206 port 15728697 75206 nas_port_type Virtual 75206 remote_ip 5.5.5.235 75209 username asadi 75209 unique_id port 75209 terminate_cause User-Request 75209 bytes_out 74166 75209 bytes_in 1007454 75209 station_ip 37.129.26.216 75209 port 15728700 75209 nas_port_type Virtual 75209 remote_ip 5.5.5.236 75211 username asadi 75211 unique_id port 75211 terminate_cause User-Request 75211 bytes_out 50966 75211 bytes_in 296276 75211 station_ip 37.129.26.216 75211 port 15728702 75211 nas_port_type Virtual 75211 remote_ip 5.5.5.236 75214 username asadi 75214 unique_id port 75214 terminate_cause User-Request 75214 bytes_out 70181 75214 bytes_in 527327 75214 station_ip 37.129.26.216 75214 port 15728705 75214 nas_port_type Virtual 75214 remote_ip 5.5.5.236 75215 username asadi 75215 unique_id port 75215 terminate_cause User-Request 75215 bytes_out 97912 75215 bytes_in 301057 75215 station_ip 37.129.26.216 75215 port 15728706 75215 nas_port_type Virtual 75215 remote_ip 5.5.5.236 75217 username asadi 75217 unique_id port 75217 terminate_cause User-Request 75217 bytes_out 31641 75217 bytes_in 172626 75217 station_ip 37.129.26.216 75217 port 15728708 75217 nas_port_type Virtual 75217 remote_ip 5.5.5.236 75222 username asadi 75222 unique_id port 75222 terminate_cause User-Request 75222 bytes_out 107367 75222 bytes_in 774407 75222 station_ip 37.129.26.216 75222 port 15728713 75222 nas_port_type Virtual 75222 remote_ip 5.5.5.236 75228 username asadi 75228 unique_id port 75228 terminate_cause User-Request 75228 bytes_out 172219 75228 bytes_in 4182442 75228 station_ip 37.129.26.216 75228 port 15728719 75228 nas_port_type Virtual 75228 remote_ip 5.5.5.236 75233 username asadi 75233 unique_id port 75233 terminate_cause User-Request 75233 bytes_out 80007 75233 bytes_in 687582 75233 station_ip 37.129.26.216 75233 port 15728724 75233 nas_port_type Virtual 75233 remote_ip 5.5.5.236 75242 username alinezhad 75242 unique_id port 75242 terminate_cause User-Request 75242 bytes_out 0 75242 bytes_in 0 75242 station_ip 5.202.28.123 75242 port 15728737 75242 nas_port_type Virtual 75242 remote_ip 5.5.5.254 75245 username hamideh 75245 unique_id port 75245 terminate_cause User-Request 75245 bytes_out 442674 75245 bytes_in 5827133 75245 station_ip 5.119.216.4 75245 port 15728736 75245 nas_port_type Virtual 75245 remote_ip 5.5.5.250 75251 username alirezazamani 75251 unique_id port 75251 terminate_cause User-Request 75251 bytes_out 546589 75251 bytes_in 11180014 75251 station_ip 83.122.192.221 75251 port 15728744 75251 nas_port_type Virtual 75251 remote_ip 5.5.5.227 75257 username alinezhad 75257 unique_id port 75257 terminate_cause User-Request 75257 bytes_out 0 75257 bytes_in 0 75257 station_ip 5.202.28.123 75257 port 15728748 75257 nas_port_type Virtual 75257 remote_ip 5.5.5.254 75258 username alirezazamani 75258 unique_id port 75258 terminate_cause User-Request 75258 bytes_out 181242 75258 bytes_in 2084268 75258 station_ip 83.122.192.221 75258 port 15728749 75258 nas_port_type Virtual 75258 remote_ip 5.5.5.227 81164 username zamanialireza 81164 unique_id port 81164 terminate_cause Lost-Carrier 81164 bytes_out 493741 81164 bytes_in 7456325 81164 station_ip 5.134.186.158 81164 port 15728759 81164 nas_port_type Virtual 75260 username alirezazamani 75260 unique_id port 75260 terminate_cause User-Request 75260 bytes_out 82518 75260 bytes_in 931038 75260 station_ip 83.122.192.221 75260 port 15728750 75260 nas_port_type Virtual 75260 remote_ip 5.5.5.227 75262 username asadi 75262 unique_id port 75262 terminate_cause User-Request 75262 bytes_out 303341 75262 bytes_in 9235383 75262 station_ip 37.129.26.216 75262 port 15728753 75262 nas_port_type Virtual 75262 remote_ip 5.5.5.236 75264 username alinezhad 75264 unique_id port 75264 terminate_cause User-Request 75264 bytes_out 0 75264 bytes_in 0 75264 station_ip 5.202.28.123 75264 port 15728755 75264 nas_port_type Virtual 75264 remote_ip 5.5.5.254 75265 username alirezazamani 75265 unique_id port 75265 terminate_cause User-Request 75265 bytes_out 160248 75265 bytes_in 1174462 75265 station_ip 83.122.192.221 75265 port 15728756 75265 nas_port_type Virtual 75265 remote_ip 5.5.5.227 75266 username alirezazamani 75266 unique_id port 75266 terminate_cause User-Request 75266 bytes_out 89444 75266 bytes_in 539186 75266 station_ip 83.122.192.221 75266 port 15728757 75266 nas_port_type Virtual 75266 remote_ip 5.5.5.227 75268 username alirezazamani 75268 unique_id port 75268 terminate_cause User-Request 75268 bytes_out 100639 75268 bytes_in 841054 75268 station_ip 83.122.192.221 75268 port 15728759 75268 nas_port_type Virtual 75268 remote_ip 5.5.5.227 75270 username alirezazamani 75270 unique_id port 75270 terminate_cause User-Request 75270 bytes_out 33977 75270 bytes_in 131017 75270 station_ip 83.122.192.221 75270 port 15728761 75270 nas_port_type Virtual 75270 remote_ip 5.5.5.227 75274 username alinezhad 75274 unique_id port 75274 terminate_cause User-Request 75274 bytes_out 0 75274 bytes_in 0 75274 station_ip 5.202.28.123 75274 port 15728764 75274 nas_port_type Virtual 75274 remote_ip 5.5.5.254 75276 username asadi 75276 unique_id port 75276 terminate_cause User-Request 75276 bytes_out 461703 75276 bytes_in 13835257 75276 station_ip 37.129.26.216 75276 port 15728767 75276 nas_port_type Virtual 75276 remote_ip 5.5.5.236 75287 username hamideh 75238 bytes_out 38101 75238 bytes_in 80711 75238 station_ip 83.123.9.245 75238 port 15728731 75238 nas_port_type Virtual 75238 remote_ip 5.5.5.229 75240 username alirezazamani 75240 unique_id port 75240 terminate_cause User-Request 75240 bytes_out 306791 75240 bytes_in 7366516 75240 station_ip 83.122.192.221 75240 port 15728734 75240 nas_port_type Virtual 75240 remote_ip 5.5.5.227 75243 username mobina 75243 unique_id port 75243 terminate_cause Lost-Carrier 75243 bytes_out 198421 75243 bytes_in 1028707 75243 station_ip 5.123.118.58 75243 port 15728733 75243 nas_port_type Virtual 75243 remote_ip 5.5.5.226 75244 username ahmadi 75244 unique_id port 75244 terminate_cause User-Request 75244 bytes_out 18648 75244 bytes_in 110818 75244 station_ip 113.203.38.248 75244 port 15728738 75244 nas_port_type Virtual 75244 remote_ip 5.5.5.225 75246 username asadi 75246 unique_id port 75246 terminate_cause User-Request 75246 bytes_out 119109 75246 bytes_in 637964 75246 station_ip 37.129.26.216 75246 port 15728739 75246 nas_port_type Virtual 75246 remote_ip 5.5.5.236 75248 username asadi 75248 unique_id port 75248 terminate_cause User-Request 75248 bytes_out 444215 75248 bytes_in 13065962 75248 station_ip 37.129.26.216 75248 port 15728741 75248 nas_port_type Virtual 75248 remote_ip 5.5.5.236 75249 username asadi 75249 unique_id port 75249 terminate_cause User-Request 75249 bytes_out 602942 75249 bytes_in 17969594 75249 station_ip 37.129.26.216 75249 port 15728742 75249 nas_port_type Virtual 75249 remote_ip 5.5.5.236 75252 username alirezazamani 75252 unique_id port 75252 terminate_cause Lost-Carrier 75252 bytes_out 1874164 75252 bytes_in 16074052 75252 station_ip 5.120.109.130 75252 port 15728725 75252 nas_port_type Virtual 75252 remote_ip 5.5.5.230 75253 username rashidi 75253 unique_id port 75253 terminate_cause Lost-Carrier 75253 bytes_out 6656741 75253 bytes_in 29263016 75253 station_ip 5.120.178.42 75253 port 15728728 75253 nas_port_type Virtual 75253 remote_ip 5.5.5.228 75255 username alirezazamani 75255 unique_id port 75255 terminate_cause User-Request 75255 bytes_out 459947 75255 bytes_in 5077097 75255 station_ip 83.122.192.221 75255 port 15728747 75255 nas_port_type Virtual 75255 remote_ip 5.5.5.227 75261 username asadi 75261 unique_id port 75261 terminate_cause User-Request 75261 bytes_out 58448 75261 bytes_in 965691 75261 station_ip 37.129.26.216 75261 port 15728752 75261 nas_port_type Virtual 75261 remote_ip 5.5.5.236 75267 username alirezazamani 75267 unique_id port 75267 terminate_cause User-Request 75267 bytes_out 61494 75267 bytes_in 177856 75267 station_ip 83.122.192.221 75267 port 15728758 75267 nas_port_type Virtual 75267 remote_ip 5.5.5.227 75275 username mobina 75275 unique_id port 75275 terminate_cause User-Request 75275 bytes_out 0 75275 bytes_in 0 75275 station_ip 5.124.20.146 75275 port 15728765 75275 nas_port_type Virtual 75275 remote_ip 5.5.5.223 75280 username alinezhad 75280 unique_id port 75280 terminate_cause User-Request 75280 bytes_out 0 75280 bytes_in 0 75280 station_ip 5.202.28.123 75280 port 15728772 75280 nas_port_type Virtual 75280 remote_ip 5.5.5.254 75281 username asadi 75281 unique_id port 75281 terminate_cause User-Request 75281 bytes_out 245296 75281 bytes_in 6365963 75281 station_ip 37.129.26.216 75281 port 15728773 75281 nas_port_type Virtual 75281 remote_ip 5.5.5.236 75285 username asadi 75285 unique_id port 75285 terminate_cause User-Request 75285 bytes_out 186457 75285 bytes_in 3092791 75285 station_ip 37.129.26.216 75285 port 15728779 75285 nas_port_type Virtual 75285 remote_ip 5.5.5.236 81164 remote_ip 5.5.5.193 81165 username zamanialireza 75239 nas_port_type Virtual 75239 remote_ip 5.5.5.227 75241 username alirezazamani 75241 unique_id port 75241 terminate_cause User-Request 75241 bytes_out 302685 75241 bytes_in 6353694 75241 station_ip 83.122.192.221 75241 port 15728735 75241 nas_port_type Virtual 75241 remote_ip 5.5.5.227 75247 username asadi 75247 unique_id port 75247 terminate_cause User-Request 75247 bytes_out 513816 75247 bytes_in 11252724 75247 station_ip 37.129.26.216 75247 port 15728740 75247 nas_port_type Virtual 75247 remote_ip 5.5.5.236 75250 username asadi 75250 unique_id port 75250 terminate_cause User-Request 75250 bytes_out 159213 75250 bytes_in 4306943 75250 station_ip 37.129.26.216 75250 port 15728743 75250 nas_port_type Virtual 75250 remote_ip 5.5.5.236 75254 username asadi 75254 unique_id port 75254 terminate_cause User-Request 75254 bytes_out 190087 75254 bytes_in 398434 75254 station_ip 37.129.26.216 75254 port 15728746 75254 nas_port_type Virtual 75254 remote_ip 5.5.5.236 75256 username hamideh 75256 unique_id port 75256 terminate_cause Lost-Carrier 75256 bytes_out 337922 75256 bytes_in 4533705 75256 station_ip 5.119.216.4 75256 port 15728745 75256 nas_port_type Virtual 75256 remote_ip 5.5.5.250 75263 username hamideh 75263 unique_id port 75263 terminate_cause Lost-Carrier 75263 bytes_out 41304 75263 bytes_in 191323 75263 station_ip 5.119.216.4 75263 port 15728751 75263 nas_port_type Virtual 75263 remote_ip 5.5.5.250 75269 username alirezazamani 75269 unique_id port 75269 terminate_cause User-Request 75269 bytes_out 43137 75269 bytes_in 166922 75269 station_ip 83.122.192.221 75269 port 15728760 75269 nas_port_type Virtual 75269 remote_ip 5.5.5.227 75271 username alirezazamani 75271 unique_id port 75271 terminate_cause User-Request 75271 bytes_out 164711 75271 bytes_in 2185078 75271 station_ip 83.122.192.221 75271 port 15728762 75271 nas_port_type Virtual 75271 remote_ip 5.5.5.227 75272 username alirezazamani 75272 unique_id port 75272 terminate_cause User-Request 75272 bytes_out 107710 75272 bytes_in 842455 75272 station_ip 83.122.192.221 75272 port 15728763 75272 nas_port_type Virtual 75272 remote_ip 5.5.5.227 81165 unique_id port 81165 terminate_cause User-Request 81165 bytes_out 0 81165 bytes_in 0 81165 station_ip 5.134.186.158 81165 port 15728766 81165 nas_port_type Virtual 81165 remote_ip 5.5.5.193 81167 username forozande 75277 username ahmadi 75277 unique_id port 75277 terminate_cause User-Request 75277 bytes_out 23702 75277 bytes_in 130163 75277 station_ip 113.203.21.52 75277 port 15728768 75277 nas_port_type Virtual 75277 remote_ip 5.5.5.222 75278 username asadi 75278 unique_id port 75278 terminate_cause User-Request 75278 bytes_out 0 75278 bytes_in 0 75278 station_ip 37.129.26.216 75278 port 15728770 75278 nas_port_type Virtual 75278 remote_ip 5.5.5.236 75279 username alinezhad 75279 unique_id port 75279 terminate_cause User-Request 75279 bytes_out 0 75279 bytes_in 0 75279 station_ip 5.202.28.123 75279 port 15728771 75279 nas_port_type Virtual 75279 remote_ip 5.5.5.254 75282 username kohestani 75282 unique_id port 75282 terminate_cause User-Request 75282 bytes_out 359647 75282 bytes_in 6601571 75282 station_ip 37.129.14.101 75282 port 15728774 75282 nas_port_type Virtual 75282 remote_ip 5.5.5.221 75283 username iranmanesh 75283 unique_id port 75283 terminate_cause Lost-Carrier 75283 bytes_out 1918427 75283 bytes_in 39725894 75283 station_ip 5.113.31.32 75283 port 15728722 75283 nas_port_type Virtual 75283 remote_ip 5.5.5.249 75284 username amin.insta22 75284 unique_id port 75284 terminate_cause User-Request 75284 bytes_out 309530 75284 bytes_in 4665805 81167 unique_id port 75284 station_ip 31.56.218.91 75284 port 15728778 75284 nas_port_type Virtual 75284 remote_ip 5.5.5.220 81166 nas_port_type Virtual 81166 remote_ip 5.5.5.191 81168 username soleymani 81168 unique_id port 81168 terminate_cause Lost-Carrier 81168 bytes_out 146685 81168 bytes_in 402267 81168 station_ip 5.120.122.70 81168 port 15728770 75295 username alinezhad 75295 unique_id port 75295 terminate_cause User-Request 75295 bytes_out 19625 75295 bytes_in 51962 75295 station_ip 113.203.37.119 75295 port 15728793 75295 nas_port_type Virtual 75295 remote_ip 5.5.5.214 75297 username zoha 75297 unique_id port 75297 terminate_cause User-Request 75297 bytes_out 323329 75297 bytes_in 2681414 75297 station_ip 5.120.121.71 75297 port 15728794 75297 nas_port_type Virtual 75297 remote_ip 5.5.5.213 75299 username mohammadi 75299 unique_id port 75299 terminate_cause User-Request 75299 bytes_out 86706 75299 bytes_in 858077 75299 station_ip 83.123.65.121 75299 port 15728796 75299 nas_port_type Virtual 75299 remote_ip 5.5.5.212 75307 username ahmadi 75307 unique_id port 75307 terminate_cause User-Request 75307 bytes_out 30341 75307 bytes_in 365254 75307 station_ip 113.203.77.24 75307 port 15728805 75307 nas_port_type Virtual 75307 remote_ip 5.5.5.208 81168 nas_port_type Virtual 81168 remote_ip 5.5.5.190 81176 username madadi 81176 unique_id port 81176 terminate_cause Lost-Carrier 81176 bytes_out 140159 81176 bytes_in 569516 81176 station_ip 5.119.157.151 81176 port 15728774 75309 username mohammadi 75309 unique_id port 75309 terminate_cause User-Request 75309 bytes_out 221799 75309 bytes_in 1014333 75309 station_ip 83.123.65.121 75309 port 15728809 75309 nas_port_type Virtual 75309 remote_ip 5.5.5.212 75321 username amin.insta15 75321 unique_id port 75321 terminate_cause User-Request 75321 bytes_out 162895 75321 bytes_in 981316 75321 station_ip 113.203.15.205 75321 port 15728820 75321 nas_port_type Virtual 75321 remote_ip 5.5.5.198 75322 username alirezazamani 75322 unique_id port 75322 terminate_cause User-Request 75322 bytes_out 8195416 75322 bytes_in 57457302 75322 station_ip 31.57.142.163 75322 port 15728804 75322 nas_port_type Virtual 75322 remote_ip 5.5.5.209 75323 username alinezhad 75323 unique_id port 75323 terminate_cause User-Request 75323 bytes_out 0 75323 bytes_in 0 75323 station_ip 5.202.24.242 75323 port 15728823 75323 nas_port_type Virtual 75323 remote_ip 5.5.5.196 75324 username iranmanesh 75324 unique_id port 75324 terminate_cause Lost-Carrier 75324 bytes_out 2390269 75324 bytes_in 16150270 75324 station_ip 5.114.100.253 75324 port 15728791 75324 nas_port_type Virtual 75324 remote_ip 5.5.5.216 75327 username rashidi 75327 unique_id port 75327 terminate_cause Lost-Carrier 75327 bytes_out 3873840 75327 bytes_in 12666432 75327 station_ip 5.119.33.122 75327 port 15728821 75327 nas_port_type Virtual 75327 remote_ip 5.5.5.205 75332 username mobina 75332 unique_id port 75332 terminate_cause Lost-Carrier 75332 bytes_out 612953 75332 bytes_in 11972503 75332 station_ip 5.123.236.31 75332 port 15728827 75332 nas_port_type Virtual 75332 remote_ip 5.5.5.194 75334 username asadi 75334 unique_id port 75334 terminate_cause User-Request 75334 bytes_out 152419 75334 bytes_in 1496075 75334 station_ip 37.129.167.77 75334 port 15728640 75334 nas_port_type Virtual 75334 remote_ip 5.5.5.255 75337 username alinezhad 75337 unique_id port 75337 terminate_cause User-Request 75337 bytes_out 0 75337 bytes_in 0 75337 station_ip 5.202.24.242 75337 port 15728643 75337 nas_port_type Virtual 75337 remote_ip 5.5.5.254 75338 username mobina 75338 unique_id port 75338 terminate_cause Lost-Carrier 75338 bytes_out 32974 81167 terminate_cause User-Request 81167 bytes_out 69621 81167 bytes_in 80022 81167 station_ip 37.129.120.10 81167 port 15728772 81167 nas_port_type Virtual 81167 remote_ip 5.5.5.189 75292 username ahmadi 75292 unique_id port 75292 terminate_cause User-Request 75292 bytes_out 38305 75292 bytes_in 558862 75292 station_ip 113.203.126.240 75292 port 15728788 75292 nas_port_type Virtual 75292 remote_ip 5.5.5.217 75293 username mobina 75293 unique_id port 75293 terminate_cause Lost-Carrier 75293 bytes_out 1152173 75293 bytes_in 22217376 75293 station_ip 5.123.222.143 75293 port 15728787 75293 nas_port_type Virtual 75293 remote_ip 5.5.5.218 75294 username hamideh 75294 unique_id port 75294 terminate_cause Lost-Carrier 75294 bytes_out 2841600 75294 bytes_in 56856683 75294 station_ip 5.119.216.4 75294 port 15728784 75294 nas_port_type Virtual 75294 remote_ip 5.5.5.250 75296 username mobina 75296 unique_id port 75296 terminate_cause Lost-Carrier 75296 bytes_out 191611 75296 bytes_in 3473047 75296 station_ip 5.123.196.61 75296 port 15728792 75296 nas_port_type Virtual 75296 remote_ip 5.5.5.215 75298 username mohammadi 75298 unique_id port 75298 terminate_cause User-Request 75298 bytes_out 64515 75298 bytes_in 510658 75298 station_ip 83.123.65.121 75298 port 15728795 75298 nas_port_type Virtual 75298 remote_ip 5.5.5.212 75300 username alinezhad 75300 unique_id port 75300 terminate_cause User-Request 75300 bytes_out 0 75300 bytes_in 0 75300 station_ip 37.129.101.114 75300 port 15728799 75300 nas_port_type Virtual 75300 remote_ip 5.5.5.210 75301 username mobina 75301 unique_id port 75301 terminate_cause Lost-Carrier 75301 bytes_out 106588 75301 bytes_in 1361173 75301 station_ip 5.123.101.173 75301 port 15728797 75301 nas_port_type Virtual 75301 remote_ip 5.5.5.211 75302 username ahmadi 75302 unique_id port 75302 terminate_cause Lost-Carrier 75302 bytes_out 17536 75302 bytes_in 51971 75302 station_ip 113.203.126.240 75302 port 15728800 75302 nas_port_type Virtual 75302 remote_ip 5.5.5.217 75303 username zoha 75303 kill_reason Maximum check online fails reached 75303 unique_id port 75303 bytes_out 248999 75303 bytes_in 1207911 75303 station_ip 5.120.121.71 75303 port 15728801 75303 nas_port_type Virtual 75303 remote_ip 5.5.5.213 75306 username hamideh 75306 unique_id port 75306 terminate_cause Lost-Carrier 75306 bytes_out 109891 75306 bytes_in 1034292 75306 station_ip 5.119.216.4 75306 port 15728802 75306 nas_port_type Virtual 75306 remote_ip 5.5.5.250 75310 username zoha 75310 unique_id port 75310 terminate_cause Lost-Carrier 75310 bytes_out 937869 75310 bytes_in 9185044 75310 station_ip 5.120.66.170 75310 port 15728807 75310 nas_port_type Virtual 75310 remote_ip 5.5.5.206 81171 username alirezazamani 81171 kill_reason Relative expiration date has reached 81171 unique_id port 81171 bytes_out 0 81171 bytes_in 0 81171 station_ip 89.47.66.224 81171 port 15728777 81171 nas_port_type Virtual 81200 username aminvpn 75314 username mohammadi 75314 unique_id port 75314 terminate_cause User-Request 75314 bytes_out 91640 75314 bytes_in 521461 75314 station_ip 83.123.115.97 75314 port 15728814 75314 nas_port_type Virtual 75314 remote_ip 5.5.5.201 75317 username mobina 75317 unique_id port 75317 terminate_cause User-Request 75317 bytes_out 0 75317 bytes_in 0 75317 station_ip 5.123.249.218 75317 port 15728815 75317 nas_port_type Virtual 75317 remote_ip 5.5.5.200 75318 username aminvpn 75318 unique_id port 75318 terminate_cause User-Request 75318 bytes_out 67068 75318 bytes_in 366204 75318 station_ip 2.183.249.152 75318 port 15728816 75318 nas_port_type Virtual 75318 remote_ip 5.5.5.246 75319 username amin.insta15 75287 unique_id port 75287 terminate_cause Lost-Carrier 75287 bytes_out 1808164 75287 bytes_in 36674967 75287 station_ip 5.119.216.4 75287 port 15728769 75287 nas_port_type Virtual 75287 remote_ip 5.5.5.250 81169 station_ip 113.203.25.99 81169 port 15728771 81169 nas_port_type Virtual 81169 remote_ip 5.5.5.191 81174 username zamanialireza 81174 unique_id port 81174 terminate_cause Lost-Carrier 81174 bytes_out 112597 81174 bytes_in 200519 75290 username alinezhad 75290 unique_id port 75290 terminate_cause User-Request 75290 bytes_out 0 75290 bytes_in 0 75290 station_ip 5.202.28.123 75290 port 15728783 75290 nas_port_type Virtual 75290 remote_ip 5.5.5.254 75291 username alinezhad 75291 unique_id port 75291 terminate_cause User-Request 75291 bytes_out 0 75291 bytes_in 0 75291 station_ip 5.202.28.123 75291 port 15728785 75291 nas_port_type Virtual 75291 remote_ip 5.5.5.254 75304 username hamideh 75304 unique_id port 75304 terminate_cause User-Request 75304 bytes_out 1069082 75304 bytes_in 16969198 75304 station_ip 5.119.216.4 75304 port 15728798 75304 nas_port_type Virtual 75304 remote_ip 5.5.5.250 75305 username mohammadi 75305 unique_id port 75305 terminate_cause User-Request 75305 bytes_out 34861 75305 bytes_in 94723 75305 station_ip 83.123.65.121 75305 port 15728803 75305 nas_port_type Virtual 75305 remote_ip 5.5.5.212 75311 username alirezazamani 75311 unique_id port 75311 terminate_cause Lost-Carrier 75311 bytes_out 1002731 75311 bytes_in 21611891 75311 station_ip 5.119.183.149 75311 port 15728806 75311 nas_port_type Virtual 75311 remote_ip 5.5.5.207 75313 username asadi 75313 unique_id port 75313 terminate_cause User-Request 75313 bytes_out 125859 75313 bytes_in 2646235 75313 station_ip 37.129.81.58 75313 port 15728813 75313 nas_port_type Virtual 75313 remote_ip 5.5.5.202 75315 username rashidi 75315 unique_id port 75315 terminate_cause User-Request 75315 bytes_out 5931137 75315 bytes_in 11269064 75315 station_ip 5.119.33.122 75315 port 15728808 75315 nas_port_type Virtual 75315 remote_ip 5.5.5.205 75316 username hamideh 75316 unique_id port 75316 terminate_cause Lost-Carrier 75316 bytes_out 3402049 75316 bytes_in 58562596 75316 station_ip 5.119.216.4 75316 port 15728810 75316 nas_port_type Virtual 75316 remote_ip 5.5.5.250 75320 username amin.insta15 75320 unique_id port 75320 terminate_cause User-Request 75320 bytes_out 190958 75320 bytes_in 352008 75320 station_ip 113.203.15.205 75320 port 15728819 75320 nas_port_type Virtual 75320 remote_ip 5.5.5.198 81174 station_ip 5.134.186.158 81174 port 15728775 81174 nas_port_type Virtual 81174 remote_ip 5.5.5.193 81177 username aminvpn 81177 kill_reason Another user logged on this global unique id 81177 mac 81177 bytes_out 0 81177 bytes_in 0 75326 username alirezazamani 75326 unique_id port 75326 terminate_cause Lost-Carrier 75326 bytes_out 257208 75326 bytes_in 3613956 75326 station_ip 5.119.220.17 75326 port 15728822 75326 nas_port_type Virtual 75326 remote_ip 5.5.5.197 75328 username amin.insta13 75328 unique_id port 75328 terminate_cause User-Request 75328 bytes_out 432939 75328 bytes_in 2614705 75328 station_ip 83.123.71.34 75328 port 15728824 75328 nas_port_type Virtual 75328 remote_ip 5.5.5.195 75331 username amin.insta22 75331 unique_id port 75331 terminate_cause User-Request 75331 bytes_out 35465663 75331 bytes_in 963436759 75331 station_ip 5.233.57.134 75331 port 15728817 75331 nas_port_type Virtual 75331 remote_ip 5.5.5.199 75333 username alirezazamani 75333 unique_id port 75333 terminate_cause Admin-Reboot 75333 bytes_out 143276 75333 bytes_in 984976 75333 station_ip 5.119.26.3 75333 port 15728828 75333 nas_port_type Virtual 75319 unique_id port 75319 terminate_cause User-Request 75319 bytes_out 174154 75319 bytes_in 487712 75319 station_ip 113.203.15.205 75319 port 15728818 75319 nas_port_type Virtual 75319 remote_ip 5.5.5.198 75329 username amin.insta13 75329 unique_id port 75329 terminate_cause User-Request 75329 bytes_out 307218 75329 bytes_in 5411981 75329 station_ip 83.123.71.34 75329 port 15728825 75329 nas_port_type Virtual 75329 remote_ip 5.5.5.195 75330 username amin.insta13 75330 unique_id port 75330 terminate_cause User-Request 75330 bytes_out 353545 75330 bytes_in 2329021 75330 station_ip 83.123.71.34 75330 port 15728826 75330 nas_port_type Virtual 75330 remote_ip 5.5.5.195 75333 remote_ip 5.5.5.234 75336 username asadi 75336 unique_id port 75336 terminate_cause User-Request 75336 bytes_out 123788 75336 bytes_in 1896085 75336 station_ip 37.129.167.77 75336 port 15728642 75336 nas_port_type Virtual 75336 remote_ip 5.5.5.255 75340 username hamideh 75340 unique_id port 75340 terminate_cause Lost-Carrier 75340 bytes_out 853129 75340 bytes_in 29611740 75340 station_ip 5.119.216.4 75340 port 15728645 75340 nas_port_type Virtual 75340 remote_ip 5.5.5.252 75342 username asadi 75342 unique_id port 75342 terminate_cause User-Request 75342 bytes_out 41898 75342 bytes_in 251094 75342 station_ip 37.129.144.225 75342 port 15728650 75342 nas_port_type Virtual 75342 remote_ip 5.5.5.247 75343 username asadi 75343 unique_id port 75343 terminate_cause User-Request 75343 bytes_out 219008 75343 bytes_in 5213101 75343 station_ip 83.122.218.112 75343 port 15728652 75343 nas_port_type Virtual 75343 remote_ip 5.5.5.245 75346 username alirezazamani 75346 unique_id port 75346 terminate_cause Lost-Carrier 75346 bytes_out 2241208 75346 bytes_in 56132333 75346 station_ip 5.119.180.23 75346 port 15728648 75346 nas_port_type Virtual 75346 remote_ip 5.5.5.249 75350 username asadi 75350 unique_id port 75350 terminate_cause User-Request 75350 bytes_out 64803 75350 bytes_in 386766 75350 station_ip 83.122.218.112 75350 port 15728658 75350 nas_port_type Virtual 75350 remote_ip 5.5.5.245 75351 username mohammadi 75351 unique_id port 75351 terminate_cause User-Request 75351 bytes_out 160747 75351 bytes_in 482038 75351 station_ip 83.123.9.77 75351 port 15728659 75351 nas_port_type Virtual 75351 remote_ip 5.5.5.244 75353 username mobina 75353 unique_id port 75353 terminate_cause Lost-Carrier 75353 bytes_out 43172 75353 bytes_in 311279 75353 station_ip 5.123.152.244 75353 port 15728660 75353 nas_port_type Virtual 75353 remote_ip 5.5.5.243 75355 username reza2742 75355 unique_id port 75355 terminate_cause User-Request 75355 bytes_out 138552 75355 bytes_in 232267 75355 station_ip 46.225.232.215 75355 port 15728663 75355 nas_port_type Virtual 75355 remote_ip 5.5.5.241 75358 username reza2742 75358 unique_id port 75358 terminate_cause Lost-Carrier 75358 bytes_out 117283 75358 bytes_in 214877 75358 station_ip 46.225.232.215 75358 port 15728664 75358 nas_port_type Virtual 75358 remote_ip 5.5.5.241 75361 username zoha 75361 unique_id port 75361 terminate_cause Lost-Carrier 75361 bytes_out 1309137 75361 bytes_in 15646986 75361 station_ip 5.120.66.170 75361 port 15728672 75361 nas_port_type Virtual 75361 remote_ip 5.5.5.238 75365 username amin.insta22 75365 unique_id port 75365 terminate_cause User-Request 75365 bytes_out 31081393 75365 bytes_in 755203319 75365 station_ip 31.56.218.91 75365 port 15728649 75365 nas_port_type Virtual 75365 remote_ip 5.5.5.248 75368 username asadi 75368 unique_id port 75368 terminate_cause User-Request 75368 bytes_out 61637 75368 bytes_in 942131 75368 station_ip 83.122.218.112 75368 port 15728679 75335 username alinezhad 75335 unique_id port 75335 terminate_cause User-Request 75335 bytes_out 0 75335 bytes_in 0 75335 station_ip 5.202.24.242 75335 port 15728641 75335 nas_port_type Virtual 75335 remote_ip 5.5.5.254 75339 username ahmadi 75339 unique_id port 75339 terminate_cause User-Request 75339 bytes_out 88474 75339 bytes_in 358372 75339 station_ip 113.203.77.232 75339 port 15728646 75339 nas_port_type Virtual 75339 remote_ip 5.5.5.251 75344 username alinezhad 75344 unique_id port 75344 terminate_cause User-Request 75344 bytes_out 0 75344 bytes_in 0 75344 station_ip 5.202.24.242 75344 port 15728653 75344 nas_port_type Virtual 75344 remote_ip 5.5.5.254 75352 username asadi 75352 unique_id port 75352 terminate_cause User-Request 75352 bytes_out 107519 75352 bytes_in 2357479 75352 station_ip 83.122.218.112 75352 port 15728661 75352 nas_port_type Virtual 75352 remote_ip 5.5.5.245 75356 username ahmadi 75356 unique_id port 75356 terminate_cause User-Request 75356 bytes_out 35094 75356 bytes_in 233193 75356 station_ip 37.129.160.223 75356 port 15728665 75356 nas_port_type Virtual 75356 remote_ip 5.5.5.240 75359 username asadi 75359 unique_id port 75359 terminate_cause User-Request 75359 bytes_out 90022 75359 bytes_in 1394946 75359 station_ip 83.122.218.112 75359 port 15728671 75359 nas_port_type Virtual 75359 remote_ip 5.5.5.245 75360 username zoha 75360 unique_id port 75360 terminate_cause User-Request 75360 bytes_out 1739657 75360 bytes_in 9472520 75360 station_ip 5.120.66.170 75360 port 15728669 75360 nas_port_type Virtual 75360 remote_ip 5.5.5.238 75362 username mohammadi 75362 unique_id port 75362 terminate_cause User-Request 75362 bytes_out 47305 75362 bytes_in 238749 75362 station_ip 83.123.54.161 75362 port 15728674 75362 nas_port_type Virtual 75362 remote_ip 5.5.5.235 75363 username asadi 75363 unique_id port 75363 terminate_cause User-Request 75363 bytes_out 84581 75363 bytes_in 694261 75363 station_ip 83.122.218.112 75363 port 15728675 75363 nas_port_type Virtual 75363 remote_ip 5.5.5.245 75366 username ahmadi 75366 unique_id port 75366 terminate_cause User-Request 75366 bytes_out 0 75366 bytes_in 0 75366 station_ip 37.129.160.223 75366 port 15728678 75366 nas_port_type Virtual 75366 remote_ip 5.5.5.240 75369 username reza 75369 unique_id port 75369 terminate_cause User-Request 75369 bytes_out 473427 75369 bytes_in 13963530 75369 station_ip 83.122.221.154 75369 port 15728673 75369 nas_port_type Virtual 75369 remote_ip 5.5.5.236 75373 username asadi 75373 unique_id port 75373 terminate_cause User-Request 75373 bytes_out 63004 75373 bytes_in 565902 75373 station_ip 83.122.218.112 75373 port 15728687 75373 nas_port_type Virtual 75373 remote_ip 5.5.5.245 75374 username iranmanesh 75374 unique_id port 75374 terminate_cause Lost-Carrier 75374 bytes_out 1838909 75374 bytes_in 14406362 75374 station_ip 5.113.196.172 75374 port 15728651 75374 nas_port_type Virtual 75374 remote_ip 5.5.5.246 75376 username aminvpn 75376 unique_id port 75376 terminate_cause Lost-Carrier 75376 bytes_out 3240306 75376 bytes_in 124182146 75376 station_ip 2.183.249.152 75376 port 15728680 75376 nas_port_type Virtual 75376 remote_ip 5.5.5.234 75382 username aminvpn 75382 unique_id port 75382 terminate_cause User-Request 75382 bytes_out 97433 75382 bytes_in 426458 75382 station_ip 2.183.249.152 75382 port 15728693 75382 nas_port_type Virtual 75382 remote_ip 5.5.5.234 75384 username amin.insta22 75384 unique_id port 75384 terminate_cause Lost-Carrier 75384 bytes_out 187644 75384 bytes_in 1184817 75384 station_ip 31.56.218.91 75384 port 15728689 75384 nas_port_type Virtual 75338 bytes_in 175524 75338 station_ip 5.124.169.194 75338 port 15728644 75338 nas_port_type Virtual 75338 remote_ip 5.5.5.253 75341 username alirezazamani 75341 unique_id port 75341 terminate_cause User-Request 75341 bytes_out 128865 75341 bytes_in 1410793 75341 station_ip 31.57.128.206 75341 port 15728647 75341 nas_port_type Virtual 75341 remote_ip 5.5.5.250 75345 username alinezhad 75345 unique_id port 75345 terminate_cause User-Request 75345 bytes_out 0 75345 bytes_in 0 75345 station_ip 5.202.24.242 75345 port 15728654 75345 nas_port_type Virtual 75345 remote_ip 5.5.5.254 75347 username hamideh 75347 unique_id port 75347 terminate_cause Lost-Carrier 75347 bytes_out 24809 75347 bytes_in 134822 75347 station_ip 5.119.216.4 75347 port 15728655 75347 nas_port_type Virtual 75347 remote_ip 5.5.5.252 75348 username alinezhad 75348 unique_id port 75348 terminate_cause User-Request 75348 bytes_out 0 75348 bytes_in 0 75348 station_ip 5.202.24.242 75348 port 15728656 75348 nas_port_type Virtual 75348 remote_ip 5.5.5.254 75349 username alinezhad 75349 unique_id port 75349 terminate_cause User-Request 75349 bytes_out 0 75349 bytes_in 0 75349 station_ip 5.202.24.242 75349 port 15728657 75349 nas_port_type Virtual 75349 remote_ip 5.5.5.254 75354 username reza2742 75354 unique_id port 75354 terminate_cause User-Request 75354 bytes_out 179025 75354 bytes_in 116674 75354 station_ip 83.122.17.40 75354 port 15728662 75354 nas_port_type Virtual 75354 remote_ip 5.5.5.242 75357 username asadi 75357 unique_id port 75357 terminate_cause User-Request 75357 bytes_out 32963 75357 bytes_in 207502 75357 station_ip 83.122.218.112 75357 port 15728666 75357 nas_port_type Virtual 75357 remote_ip 5.5.5.245 75364 username asadi 75364 unique_id port 75364 terminate_cause User-Request 75364 bytes_out 79878 75364 bytes_in 418841 75364 station_ip 83.122.218.112 75364 port 15728676 75364 nas_port_type Virtual 75364 remote_ip 5.5.5.245 75367 username mohammadi 75367 unique_id port 75367 terminate_cause User-Request 75367 bytes_out 41487 75367 bytes_in 104150 75367 station_ip 83.123.54.161 75367 port 15728677 75367 nas_port_type Virtual 75367 remote_ip 5.5.5.235 75370 username amin.insta19 75370 unique_id port 75370 terminate_cause Lost-Carrier 75370 bytes_out 836241 75370 bytes_in 2637506 75370 station_ip 5.119.126.39 75370 port 15728683 75370 nas_port_type Virtual 75370 remote_ip 5.5.5.233 75371 username ahmadi 75371 unique_id port 75371 terminate_cause User-Request 75371 bytes_out 0 75371 bytes_in 0 75371 station_ip 37.129.160.223 75371 port 15728685 75371 nas_port_type Virtual 75371 remote_ip 5.5.5.240 75372 username alinezhad 75372 unique_id port 75372 terminate_cause User-Request 75372 bytes_out 50809 75372 bytes_in 596805 75372 station_ip 5.202.24.242 75372 port 15728686 75372 nas_port_type Virtual 75372 remote_ip 5.5.5.254 75375 username zoha 75375 unique_id port 75375 terminate_cause Lost-Carrier 75375 bytes_out 2107677 75375 bytes_in 23733918 75375 station_ip 5.120.66.170 75375 port 15728681 75375 nas_port_type Virtual 75375 remote_ip 5.5.5.238 75377 username mobina 75377 unique_id port 75377 terminate_cause Lost-Carrier 75377 bytes_out 22429 75377 bytes_in 165942 75377 station_ip 5.123.55.32 75377 port 15728688 75377 nas_port_type Virtual 75377 remote_ip 5.5.5.231 75378 username zoha 75378 unique_id port 75378 terminate_cause User-Request 75378 bytes_out 214867 75378 bytes_in 1433597 75378 station_ip 5.120.66.170 75378 port 15728690 75378 nas_port_type Virtual 75378 remote_ip 5.5.5.238 75379 username asadi 75379 unique_id port 75379 terminate_cause User-Request 75379 bytes_out 113804 75368 nas_port_type Virtual 75368 remote_ip 5.5.5.245 75381 username asadi 75381 unique_id port 75381 terminate_cause User-Request 75381 bytes_out 110091 75381 bytes_in 1170230 75381 station_ip 83.122.218.112 75381 port 15728694 75381 nas_port_type Virtual 75381 remote_ip 5.5.5.245 75386 username amin.insta21 75386 unique_id port 75386 terminate_cause User-Request 75386 bytes_out 16312831 75386 bytes_in 426915200 75386 station_ip 151.235.125.27 75386 port 15728668 75386 nas_port_type Virtual 75386 remote_ip 5.5.5.239 75388 username mohammadi 75388 unique_id port 75388 terminate_cause User-Request 75388 bytes_out 326978 75388 bytes_in 9312721 75388 station_ip 83.123.74.157 75388 port 15728700 75388 nas_port_type Virtual 75388 remote_ip 5.5.5.230 75389 username hamideh 75389 unique_id port 75389 terminate_cause Lost-Carrier 75389 bytes_out 1344128 75389 bytes_in 29928732 75389 station_ip 5.119.216.4 75389 port 15728698 75389 nas_port_type Virtual 75389 remote_ip 5.5.5.252 75391 username zoha 75391 unique_id port 75391 terminate_cause User-Request 75391 bytes_out 2659599 75391 bytes_in 58408200 75391 station_ip 5.120.66.170 75391 port 15728701 75391 nas_port_type Virtual 75391 remote_ip 5.5.5.238 75395 username alinezhad 75395 unique_id port 75395 terminate_cause User-Request 75395 bytes_out 0 75395 bytes_in 0 75395 station_ip 5.202.24.242 75395 port 15728706 75395 nas_port_type Virtual 75395 remote_ip 5.5.5.254 75396 username reza2742 75396 unique_id port 75396 terminate_cause User-Request 75396 bytes_out 63723 75396 bytes_in 318079 75396 station_ip 37.129.100.85 75396 port 15728708 75396 nas_port_type Virtual 75396 remote_ip 5.5.5.227 75397 username zoha 75397 kill_reason Maximum check online fails reached 75397 unique_id port 75397 bytes_out 347170 75397 bytes_in 1287728 75397 station_ip 5.120.66.170 75397 port 15728707 75397 nas_port_type Virtual 75397 remote_ip 5.5.5.238 75406 username dehghan 75406 unique_id port 75406 terminate_cause User-Request 75406 bytes_out 109138 75406 bytes_in 1450581 75406 station_ip 83.122.72.7 75406 port 15728719 75406 nas_port_type Virtual 75406 remote_ip 5.5.5.221 75418 username amin.insta22 75418 unique_id port 75418 terminate_cause Lost-Carrier 75418 bytes_out 27255 75418 bytes_in 136139 75418 station_ip 31.56.218.91 75418 port 15728730 75418 nas_port_type Virtual 75418 remote_ip 5.5.5.248 75420 username amin.insta22 75420 unique_id port 75420 terminate_cause Lost-Carrier 75420 bytes_out 105334 75420 bytes_in 487540 75420 station_ip 31.56.218.91 75420 port 15728731 75420 nas_port_type Virtual 75420 remote_ip 5.5.5.220 75425 username alirezazamani 75425 unique_id port 75425 terminate_cause Lost-Carrier 75425 bytes_out 9749350 75425 bytes_in 168989415 75425 station_ip 94.241.176.235 75425 port 15728670 75425 nas_port_type Virtual 75425 remote_ip 5.5.5.237 75428 username asadi 75428 unique_id port 75428 terminate_cause User-Request 75428 bytes_out 28299 75428 bytes_in 163046 75428 station_ip 83.122.218.112 75428 port 15728740 75428 nas_port_type Virtual 75428 remote_ip 5.5.5.245 75429 username amin.insta22 75429 unique_id port 75429 terminate_cause Lost-Carrier 75429 bytes_out 4016491 75429 bytes_in 58922801 75429 station_ip 31.56.218.91 75429 port 15728737 75429 nas_port_type Virtual 75429 remote_ip 5.5.5.220 75431 username asadi 75431 unique_id port 75431 terminate_cause User-Request 75431 bytes_out 31855 75431 bytes_in 171035 75431 station_ip 83.122.218.112 75431 port 15728743 75431 nas_port_type Virtual 75431 remote_ip 5.5.5.245 75433 username alirezazamani 75433 unique_id port 75433 terminate_cause Lost-Carrier 75433 bytes_out 637639 75433 bytes_in 16587561 75379 bytes_in 1686922 75379 station_ip 83.122.218.112 75379 port 15728692 75379 nas_port_type Virtual 75379 remote_ip 5.5.5.245 75380 username mohammadi 75380 unique_id port 75380 terminate_cause User-Request 75380 bytes_out 87950 75380 bytes_in 1439804 75380 station_ip 83.123.74.157 75380 port 15728695 75380 nas_port_type Virtual 75380 remote_ip 5.5.5.230 75383 username hamideh 75383 unique_id port 75383 terminate_cause Lost-Carrier 75383 bytes_out 27358 75383 bytes_in 206702 75383 station_ip 5.119.216.4 75383 port 15728691 75383 nas_port_type Virtual 75383 remote_ip 5.5.5.252 75385 username ahmadi 75385 unique_id port 75385 terminate_cause User-Request 75385 bytes_out 22257 75385 bytes_in 155034 75385 station_ip 37.129.160.223 75385 port 15728696 75385 nas_port_type Virtual 75385 remote_ip 5.5.5.240 75390 username hamideh 75390 unique_id port 75390 terminate_cause Lost-Carrier 75390 bytes_out 3365 75390 bytes_in 123357 75390 station_ip 5.119.216.4 75390 port 15728702 75390 nas_port_type Virtual 75390 remote_ip 5.5.5.228 75392 username ahmadi 75392 unique_id port 75392 terminate_cause User-Request 75392 bytes_out 52672 75392 bytes_in 383762 75392 station_ip 37.129.160.223 75392 port 15728705 75392 nas_port_type Virtual 75392 remote_ip 5.5.5.240 75393 username zoha 75393 unique_id port 75393 terminate_cause Lost-Carrier 75393 bytes_out 1469753 75393 bytes_in 18023003 75393 station_ip 5.120.66.170 75393 port 15728703 75393 nas_port_type Virtual 75393 remote_ip 5.5.5.238 75394 username rashidi 75394 unique_id port 75394 terminate_cause Lost-Carrier 75394 bytes_out 14348384 75394 bytes_in 18215213 75394 station_ip 5.120.7.82 75394 port 15728699 75394 nas_port_type Virtual 75394 remote_ip 5.5.5.229 75400 username amin.insta13 75400 unique_id port 75400 terminate_cause NAS-Error 75400 bytes_out 0 75400 bytes_in 342 75400 station_ip 2.183.252.21 75400 port 15728711 75400 nas_port_type Virtual 75400 remote_ip 5.5.5.224 75403 username asadi 75403 unique_id port 75403 terminate_cause User-Request 75403 bytes_out 170250 75403 bytes_in 2142792 75403 station_ip 83.122.218.112 75403 port 15728714 75403 nas_port_type Virtual 75403 remote_ip 5.5.5.245 81170 terminate_cause User-Request 81170 bytes_out 66807 81170 bytes_in 64169 81170 station_ip 37.129.120.10 81170 port 15728773 81170 nas_port_type Virtual 81170 remote_ip 5.5.5.189 81172 username alirezazamani 75408 username hamideh 75408 unique_id port 75408 terminate_cause Lost-Carrier 75408 bytes_out 119752 75408 bytes_in 1729536 75408 station_ip 5.119.216.4 75408 port 15728717 75408 nas_port_type Virtual 75408 remote_ip 5.5.5.228 75410 username dehghan 75410 unique_id port 75410 terminate_cause User-Request 75410 bytes_out 336312 75410 bytes_in 9821834 75410 station_ip 83.122.72.7 75410 port 15728722 75410 nas_port_type Virtual 75410 remote_ip 5.5.5.221 75411 username asadi 75411 unique_id port 75411 terminate_cause User-Request 75411 bytes_out 52696 75411 bytes_in 274412 75411 station_ip 83.122.218.112 75411 port 15728723 75411 nas_port_type Virtual 75411 remote_ip 5.5.5.245 75414 username asadi 75414 unique_id port 75414 terminate_cause User-Request 75414 bytes_out 6190 75414 bytes_in 18880 75414 station_ip 83.122.218.112 75414 port 15728727 75414 nas_port_type Virtual 75414 remote_ip 5.5.5.245 75415 username mohammadi 75415 unique_id port 75415 terminate_cause User-Request 75415 bytes_out 0 75415 bytes_in 0 75415 station_ip 83.123.74.157 75415 port 15728728 75415 nas_port_type Virtual 75415 remote_ip 5.5.5.230 75417 username asadi 75417 unique_id port 75417 terminate_cause User-Request 75417 bytes_out 53190 75384 remote_ip 5.5.5.248 81172 kill_reason Relative expiration date has reached 81172 unique_id port 81172 bytes_out 0 81172 bytes_in 0 81172 station_ip 89.47.66.224 81172 port 15728778 81172 nas_port_type Virtual 81173 username forozande 81173 unique_id port 75398 username mobina 75398 unique_id port 75398 terminate_cause Lost-Carrier 75398 bytes_out 120013 75398 bytes_in 610415 75398 station_ip 5.123.149.24 75398 port 15728709 75398 nas_port_type Virtual 75398 remote_ip 5.5.5.226 75399 username amin.insta13 75399 unique_id port 75399 terminate_cause User-Request 75399 bytes_out 565021 75399 bytes_in 5044150 75399 station_ip 83.123.50.165 75399 port 15728710 75399 nas_port_type Virtual 75399 remote_ip 5.5.5.225 75401 username alinezhad 75401 unique_id port 75401 terminate_cause User-Request 75401 bytes_out 0 75401 bytes_in 0 75401 station_ip 5.202.24.242 75401 port 15728712 75401 nas_port_type Virtual 75401 remote_ip 5.5.5.254 81173 terminate_cause User-Request 81173 bytes_out 17458 81173 bytes_in 61453 81173 station_ip 37.129.210.205 81173 port 15728780 81173 nas_port_type Virtual 81173 remote_ip 5.5.5.185 81175 username ahmadipour 81175 unique_id port 75404 username asadi 75404 unique_id port 75404 terminate_cause User-Request 75404 bytes_out 52563 75404 bytes_in 430501 75404 station_ip 83.122.218.112 75404 port 15728718 75404 nas_port_type Virtual 75404 remote_ip 5.5.5.245 75407 username dehghan 75407 unique_id port 75407 terminate_cause User-Request 75407 bytes_out 341801 75407 bytes_in 10407658 75407 station_ip 83.122.72.7 75407 port 15728720 75407 nas_port_type Virtual 75407 remote_ip 5.5.5.221 75409 username dehghan 75409 unique_id port 75409 terminate_cause User-Request 75409 bytes_out 109078 75409 bytes_in 1901412 75409 station_ip 83.122.72.7 75409 port 15728721 75409 nas_port_type Virtual 75409 remote_ip 5.5.5.221 75412 username dehghan 75412 unique_id port 75412 terminate_cause User-Request 75412 bytes_out 426379 75412 bytes_in 13536876 75412 station_ip 83.122.72.7 75412 port 15728724 75412 nas_port_type Virtual 75412 remote_ip 5.5.5.221 75413 username asadi 75413 unique_id port 75413 terminate_cause User-Request 75413 bytes_out 180182 75413 bytes_in 5325705 75413 station_ip 83.122.218.112 75413 port 15728725 75413 nas_port_type Virtual 75413 remote_ip 5.5.5.245 75416 username zoha 75416 unique_id port 75416 terminate_cause User-Request 75416 bytes_out 788079 75416 bytes_in 5101524 75416 station_ip 5.120.66.170 75416 port 15728726 75416 nas_port_type Virtual 75416 remote_ip 5.5.5.238 75419 username asadi 75419 unique_id port 75419 terminate_cause User-Request 75419 bytes_out 39181 75419 bytes_in 199991 75419 station_ip 83.122.218.112 75419 port 15728733 75419 nas_port_type Virtual 75419 remote_ip 5.5.5.245 75421 username asadi 75421 unique_id port 75421 terminate_cause User-Request 75421 bytes_out 15654 75421 bytes_in 90057 75421 station_ip 83.122.218.112 75421 port 15728734 75421 nas_port_type Virtual 75421 remote_ip 5.5.5.245 75424 username zoha 75424 unique_id port 75424 terminate_cause Lost-Carrier 75424 bytes_out 1265216 75424 bytes_in 15440233 75424 station_ip 5.120.66.170 75424 port 15728732 75424 nas_port_type Virtual 75424 remote_ip 5.5.5.238 75427 username alinezhad 75427 unique_id port 75427 terminate_cause User-Request 75427 bytes_out 18995 75427 bytes_in 30050 75427 station_ip 5.202.24.242 75427 port 15728739 75427 nas_port_type Virtual 75427 remote_ip 5.5.5.254 75432 username asadi 75432 unique_id port 75432 terminate_cause User-Request 75432 bytes_out 32722 75432 bytes_in 142103 75432 station_ip 83.122.218.112 75432 port 15728744 75417 bytes_in 439907 75417 station_ip 83.122.218.112 75417 port 15728729 75417 nas_port_type Virtual 75417 remote_ip 5.5.5.245 75422 username asadi 75422 unique_id port 75422 terminate_cause User-Request 75422 bytes_out 36253 75422 bytes_in 84958 75422 station_ip 83.122.218.112 75422 port 15728735 75422 nas_port_type Virtual 75422 remote_ip 5.5.5.245 75423 username asadi 75423 unique_id port 75423 terminate_cause User-Request 75423 bytes_out 39938 75423 bytes_in 66340 75423 station_ip 83.122.218.112 75423 port 15728736 75423 nas_port_type Virtual 75423 remote_ip 5.5.5.245 75426 username asadi 75426 unique_id port 75426 terminate_cause User-Request 75426 bytes_out 35370 75426 bytes_in 136444 75426 station_ip 83.122.218.112 75426 port 15728738 75426 nas_port_type Virtual 75426 remote_ip 5.5.5.245 75430 username asadi 75430 unique_id port 75430 terminate_cause User-Request 75430 bytes_out 26925 75430 bytes_in 108497 75430 station_ip 83.122.218.112 75430 port 15728742 75430 nas_port_type Virtual 75430 remote_ip 5.5.5.245 75442 username alinezhad 75442 unique_id port 75442 terminate_cause User-Request 75442 bytes_out 0 75442 bytes_in 0 75442 station_ip 5.202.24.242 75442 port 15728753 75442 nas_port_type Virtual 75442 remote_ip 5.5.5.254 75443 username mohammadi 75443 unique_id port 75443 terminate_cause User-Request 75443 bytes_out 58691 75443 bytes_in 293886 75443 station_ip 37.129.0.96 75443 port 15728755 75443 nas_port_type Virtual 75443 remote_ip 5.5.5.214 75445 username mobina 75445 unique_id port 75445 terminate_cause Lost-Carrier 75445 bytes_out 357324 75445 bytes_in 4084618 75445 station_ip 5.124.133.65 75445 port 15728754 75445 nas_port_type Virtual 75445 remote_ip 5.5.5.215 75446 username zoha 75446 unique_id port 75446 terminate_cause Lost-Carrier 75446 bytes_out 462498 75446 bytes_in 2982527 75446 station_ip 5.120.66.170 75446 port 15728752 75446 nas_port_type Virtual 75446 remote_ip 5.5.5.238 75449 username asadi 75449 unique_id port 75449 terminate_cause User-Request 75449 bytes_out 17661 75449 bytes_in 108096 75449 station_ip 37.129.19.154 75449 port 15728762 75449 nas_port_type Virtual 75449 remote_ip 5.5.5.213 81175 terminate_cause Lost-Carrier 81175 bytes_out 376997 81175 bytes_in 4436065 81175 station_ip 113.203.8.139 81175 port 15728779 81175 nas_port_type Virtual 81175 remote_ip 5.5.5.186 81179 username arman 81179 unique_id port 75453 username asadi 75453 unique_id port 75453 terminate_cause User-Request 75453 bytes_out 11495 75453 bytes_in 28607 75453 station_ip 37.129.19.154 75453 port 15728764 75453 nas_port_type Virtual 75453 remote_ip 5.5.5.213 75458 username amin.insta19 75458 unique_id port 75458 terminate_cause Lost-Carrier 75458 bytes_out 519888 75458 bytes_in 5457884 75458 station_ip 5.119.100.130 75458 port 15728770 75458 nas_port_type Virtual 75458 remote_ip 5.5.5.212 75460 username ahmadi 75460 unique_id port 75460 terminate_cause User-Request 75460 bytes_out 0 75460 bytes_in 0 75460 station_ip 37.129.20.48 75460 port 15728772 75460 nas_port_type Virtual 75460 remote_ip 5.5.5.211 75463 username arabpour 75463 unique_id port 75463 terminate_cause User-Request 75463 bytes_out 0 75463 bytes_in 0 75463 station_ip 83.122.134.223 75463 port 15728776 75463 nas_port_type Virtual 75463 remote_ip 5.5.5.208 75465 username asadi 75465 unique_id port 75465 terminate_cause User-Request 75465 bytes_out 151089 75465 bytes_in 1684276 75465 station_ip 37.129.19.154 75465 port 15728778 75465 nas_port_type Virtual 75465 remote_ip 5.5.5.213 75466 username ahmadi 75466 unique_id port 75466 terminate_cause User-Request 75466 bytes_out 0 75432 nas_port_type Virtual 75432 remote_ip 5.5.5.245 75441 username alirezazamani 75441 unique_id port 75441 terminate_cause User-Request 75441 bytes_out 200550 75441 bytes_in 623196 75441 station_ip 86.57.57.212 75441 port 15728751 75441 nas_port_type Virtual 75441 remote_ip 5.5.5.216 75444 username asadi 75444 unique_id port 75444 terminate_cause User-Request 75444 bytes_out 136026 75444 bytes_in 1330657 75444 station_ip 37.129.19.154 75444 port 15728756 75444 nas_port_type Virtual 75444 remote_ip 5.5.5.213 75448 username asadi 75448 unique_id port 75448 terminate_cause User-Request 75448 bytes_out 38819 75448 bytes_in 661610 75448 station_ip 37.129.19.154 75448 port 15728761 75448 nas_port_type Virtual 75448 remote_ip 5.5.5.213 75454 username asadi 75454 unique_id port 75454 terminate_cause User-Request 75454 bytes_out 47336 75454 bytes_in 432133 75454 station_ip 37.129.19.154 75454 port 15728765 75454 nas_port_type Virtual 75454 remote_ip 5.5.5.213 75456 username asadi 75456 unique_id port 75456 terminate_cause User-Request 75456 bytes_out 526 75456 bytes_in 11808 75456 station_ip 37.129.19.154 75456 port 15728769 75456 nas_port_type Virtual 75456 remote_ip 5.5.5.213 75462 username arabpour 75462 unique_id port 75462 terminate_cause User-Request 75462 bytes_out 22951 75462 bytes_in 31854 75462 station_ip 83.122.134.223 75462 port 15728775 75462 nas_port_type Virtual 75462 remote_ip 5.5.5.208 75468 username alinezhad 75468 unique_id port 75468 terminate_cause User-Request 75468 bytes_out 0 75468 bytes_in 0 75468 station_ip 5.202.28.123 75468 port 15728781 75468 nas_port_type Virtual 75468 remote_ip 5.5.5.207 75476 username asadi 75476 unique_id port 75476 terminate_cause User-Request 75476 bytes_out 9919 75476 bytes_in 21406 75476 station_ip 37.129.19.154 75476 port 15728789 75476 nas_port_type Virtual 75476 remote_ip 5.5.5.213 75480 username asadi 75480 unique_id port 75480 terminate_cause User-Request 75480 bytes_out 150991 75480 bytes_in 3472949 75480 station_ip 37.129.19.154 75480 port 15728794 75480 nas_port_type Virtual 75480 remote_ip 5.5.5.213 75485 username asadi 75485 unique_id port 75485 terminate_cause User-Request 75485 bytes_out 13691 75485 bytes_in 66108 75485 station_ip 37.129.19.154 75485 port 15728801 75485 nas_port_type Virtual 75485 remote_ip 5.5.5.213 75494 username ahmadi 75494 unique_id port 75494 terminate_cause Lost-Carrier 75494 bytes_out 2543011 75494 bytes_in 24044529 75494 station_ip 83.123.181.255 75494 port 15728802 75494 nas_port_type Virtual 75494 remote_ip 5.5.5.202 75495 username ahmadi 75495 unique_id port 75495 terminate_cause User-Request 75495 bytes_out 118395 75495 bytes_in 1725240 75495 station_ip 83.123.181.255 75495 port 15728812 75495 nas_port_type Virtual 75495 remote_ip 5.5.5.202 75500 username ahmadi 75500 unique_id port 75500 terminate_cause User-Request 75500 bytes_out 0 75500 bytes_in 0 75500 station_ip 83.123.181.255 75500 port 15728815 75500 nas_port_type Virtual 75500 remote_ip 5.5.5.202 75502 username alinezhad 75502 unique_id port 75502 terminate_cause User-Request 75502 bytes_out 0 75502 bytes_in 0 75502 station_ip 37.129.137.138 75502 port 15728818 75502 nas_port_type Virtual 75502 remote_ip 5.5.5.196 75504 username iranmanesh 75504 unique_id port 75504 terminate_cause User-Request 75504 bytes_out 745093 75504 bytes_in 12154416 75504 station_ip 5.112.183.63 75504 port 15728817 75504 nas_port_type Virtual 75504 remote_ip 5.5.5.197 75505 username mahdi 75505 unique_id port 75505 terminate_cause Lost-Carrier 75505 bytes_out 3025212 75505 bytes_in 107402814 75505 station_ip 5.119.185.92 75433 station_ip 5.120.47.136 75433 port 15728741 75433 nas_port_type Virtual 75433 remote_ip 5.5.5.219 75434 username asadi 75434 unique_id port 75434 terminate_cause User-Request 75434 bytes_out 38419 75434 bytes_in 145178 75434 station_ip 83.122.218.112 75434 port 15728745 75434 nas_port_type Virtual 75434 remote_ip 5.5.5.245 75435 username asadi 75435 unique_id port 75435 terminate_cause User-Request 75435 bytes_out 61135 75435 bytes_in 901136 75435 station_ip 83.122.218.112 75435 port 15728747 75435 nas_port_type Virtual 75435 remote_ip 5.5.5.245 75436 username alinezhad 75436 unique_id port 75436 terminate_cause User-Request 75436 bytes_out 0 75436 bytes_in 0 75436 station_ip 5.202.24.242 75436 port 15728748 75436 nas_port_type Virtual 75436 remote_ip 5.5.5.254 75437 username asadi 75437 unique_id port 75437 terminate_cause User-Request 75437 bytes_out 27926 75437 bytes_in 111554 75437 station_ip 83.122.218.112 75437 port 15728749 75437 nas_port_type Virtual 75437 remote_ip 5.5.5.245 75438 username mobina 75438 unique_id port 75438 terminate_cause Lost-Carrier 75438 bytes_out 2140215 75438 bytes_in 26779363 75438 station_ip 5.123.46.225 75438 port 15728715 75438 nas_port_type Virtual 75438 remote_ip 5.5.5.222 75439 username ahmadi 75439 unique_id port 75439 terminate_cause User-Request 75439 bytes_out 0 75439 bytes_in 0 75439 station_ip 37.129.123.160 75439 port 15728750 75439 nas_port_type Virtual 75439 remote_ip 5.5.5.217 75440 username iranmanesh 75440 unique_id port 75440 terminate_cause Lost-Carrier 75440 bytes_out 498097 75440 bytes_in 3082973 75440 station_ip 5.112.51.167 75440 port 15728746 75440 nas_port_type Virtual 75440 remote_ip 5.5.5.218 75447 username asadi 75447 unique_id port 75447 terminate_cause User-Request 75447 bytes_out 18082 75447 bytes_in 61530 75447 station_ip 37.129.19.154 75447 port 15728757 75447 nas_port_type Virtual 75447 remote_ip 5.5.5.213 75451 username amin.insta21 75451 unique_id port 75451 terminate_cause Lost-Carrier 75451 bytes_out 27615586 75451 bytes_in 409374798 75451 station_ip 151.235.125.27 75451 port 15728697 75451 nas_port_type Virtual 75451 remote_ip 5.5.5.239 75452 username asadi 75452 unique_id port 75452 terminate_cause User-Request 75452 bytes_out 43135 75452 bytes_in 412708 75452 station_ip 37.129.19.154 75452 port 15728763 75452 nas_port_type Virtual 75452 remote_ip 5.5.5.213 75455 username asadi 75455 unique_id port 75455 terminate_cause User-Request 75455 bytes_out 111217 75455 bytes_in 946678 75455 station_ip 37.129.19.154 75455 port 15728766 75455 nas_port_type Virtual 75455 remote_ip 5.5.5.213 75457 username amin.insta19 75457 unique_id port 75457 terminate_cause Lost-Carrier 75457 bytes_out 939142 75457 bytes_in 6297853 75457 station_ip 5.119.100.130 75457 port 15728767 75457 nas_port_type Virtual 75457 remote_ip 5.5.5.212 75459 username alinezhad 75459 unique_id port 75459 terminate_cause User-Request 75459 bytes_out 0 75459 bytes_in 0 75459 station_ip 5.202.24.242 75459 port 15728771 75459 nas_port_type Virtual 75459 remote_ip 5.5.5.254 75461 username reza2742 75461 unique_id port 75461 terminate_cause User-Request 75461 bytes_out 74681 75461 bytes_in 760247 75461 station_ip 37.129.221.95 75461 port 15728774 75461 nas_port_type Virtual 75461 remote_ip 5.5.5.209 75464 username arabpour 75464 unique_id port 75464 terminate_cause User-Request 75464 bytes_out 18581 75464 bytes_in 26865 75464 station_ip 83.122.134.223 75464 port 15728777 75464 nas_port_type Virtual 75464 remote_ip 5.5.5.208 75469 username asadi 75469 unique_id port 75469 terminate_cause User-Request 75469 bytes_out 82649 75469 bytes_in 1244653 75466 bytes_in 0 75466 station_ip 37.129.20.48 75466 port 15728779 75466 nas_port_type Virtual 75466 remote_ip 5.5.5.211 75467 username asadi 75467 unique_id port 75467 terminate_cause User-Request 75467 bytes_out 22840 75467 bytes_in 55353 75467 station_ip 37.129.19.154 75467 port 15728780 75467 nas_port_type Virtual 75467 remote_ip 5.5.5.213 75470 username alinezhad 75470 unique_id port 75470 terminate_cause User-Request 75470 bytes_out 0 75470 bytes_in 0 75470 station_ip 5.202.28.123 75470 port 15728784 75470 nas_port_type Virtual 75470 remote_ip 5.5.5.207 75471 username asadi 75471 unique_id port 75471 terminate_cause User-Request 75471 bytes_out 83847 75471 bytes_in 558455 75471 station_ip 37.129.19.154 75471 port 15728785 75471 nas_port_type Virtual 75471 remote_ip 5.5.5.213 75472 username asadi 75472 unique_id port 75472 terminate_cause User-Request 75472 bytes_out 223795 75472 bytes_in 6815838 75472 station_ip 37.129.19.154 75472 port 15728786 75472 nas_port_type Virtual 75472 remote_ip 5.5.5.213 75474 username asadi 75474 unique_id port 75474 terminate_cause User-Request 75474 bytes_out 225546 75474 bytes_in 5288146 75474 station_ip 37.129.19.154 75474 port 15728787 75474 nas_port_type Virtual 75474 remote_ip 5.5.5.213 75479 username mohammadi 75479 unique_id port 75479 terminate_cause User-Request 75479 bytes_out 49772 75479 bytes_in 223977 75479 station_ip 37.129.96.60 75479 port 15728793 75479 nas_port_type Virtual 75479 remote_ip 5.5.5.206 75481 username zoha 75481 unique_id port 75481 terminate_cause Lost-Carrier 75481 bytes_out 1203574 75481 bytes_in 14095183 75481 station_ip 5.120.66.170 75481 port 15728790 75481 nas_port_type Virtual 75481 remote_ip 5.5.5.238 75483 username mahdi 75483 unique_id port 75483 terminate_cause Lost-Carrier 75483 bytes_out 517388 75483 bytes_in 6748354 75483 station_ip 5.119.185.92 75483 port 15728795 75483 nas_port_type Virtual 75483 remote_ip 5.5.5.205 75488 username aminvpn 75488 unique_id port 75488 terminate_cause Lost-Carrier 75488 bytes_out 10948625 75488 bytes_in 437807571 75488 station_ip 2.183.249.152 75488 port 15728791 75488 nas_port_type Virtual 75488 remote_ip 5.5.5.234 75489 username alinezhad 75489 unique_id port 75489 terminate_cause User-Request 75489 bytes_out 0 75489 bytes_in 0 75489 station_ip 5.202.28.123 75489 port 15728806 75489 nas_port_type Virtual 75489 remote_ip 5.5.5.207 75491 username iranmanesh 75491 unique_id port 75491 terminate_cause Lost-Carrier 75491 bytes_out 351987 75491 bytes_in 4670247 75491 station_ip 5.114.10.200 75491 port 15728797 75491 nas_port_type Virtual 75491 remote_ip 5.5.5.204 75492 username mobina 75492 unique_id port 75492 terminate_cause Lost-Carrier 75492 bytes_out 537866 75492 bytes_in 9457650 75492 station_ip 5.124.94.219 75492 port 15728807 75492 nas_port_type Virtual 75492 remote_ip 5.5.5.200 75510 username amin.insta21 75510 unique_id port 75510 terminate_cause Lost-Carrier 75510 bytes_out 6621122 75510 bytes_in 135612170 75510 station_ip 151.235.107.53 75510 port 15728808 75510 nas_port_type Virtual 75510 remote_ip 5.5.5.199 75512 username alirezazamani 75512 unique_id port 75512 terminate_cause Lost-Carrier 75512 bytes_out 514171 75512 bytes_in 10206952 75512 station_ip 5.120.111.43 75512 port 15728824 75512 nas_port_type Virtual 75512 remote_ip 5.5.5.193 75513 username goli 75513 unique_id port 75513 terminate_cause User-Request 75513 bytes_out 85083 75513 bytes_in 470038 75513 station_ip 83.123.199.105 75513 port 15728825 75513 nas_port_type Virtual 75513 remote_ip 5.5.5.192 81176 nas_port_type Virtual 81176 remote_ip 5.5.5.188 81184 username aminvpn 75469 station_ip 37.129.19.154 75469 port 15728782 75469 nas_port_type Virtual 75469 remote_ip 5.5.5.213 75473 username zoha 75473 unique_id port 75473 terminate_cause Lost-Carrier 75473 bytes_out 171188 75473 bytes_in 651581 75473 station_ip 5.120.66.170 75473 port 15728783 75473 nas_port_type Virtual 75473 remote_ip 5.5.5.238 75475 username ahmadi 75475 unique_id port 75475 terminate_cause User-Request 75475 bytes_out 16711 75475 bytes_in 88448 75475 station_ip 37.129.20.48 75475 port 15728788 75475 nas_port_type Virtual 75475 remote_ip 5.5.5.211 75477 username mobina 75477 unique_id port 75477 terminate_cause Lost-Carrier 75477 bytes_out 3430483 75477 bytes_in 67460386 75477 station_ip 5.53.32.46 75477 port 15728773 75477 nas_port_type Virtual 75477 remote_ip 5.5.5.210 75478 username alinezhad 75478 unique_id port 75478 terminate_cause User-Request 75478 bytes_out 0 75478 bytes_in 0 75478 station_ip 5.202.28.123 75478 port 15728792 75478 nas_port_type Virtual 75478 remote_ip 5.5.5.207 75482 username asadi 75482 unique_id port 75482 terminate_cause User-Request 75482 bytes_out 46342 75482 bytes_in 128592 75482 station_ip 37.129.19.154 75482 port 15728796 75482 nas_port_type Virtual 75482 remote_ip 5.5.5.213 75484 username arabpour 75484 unique_id port 75484 terminate_cause User-Request 75484 bytes_out 482670 75484 bytes_in 12167300 75484 station_ip 113.203.76.244 75484 port 15728800 75484 nas_port_type Virtual 75484 remote_ip 5.5.5.203 75486 username asadi 75486 unique_id port 75486 terminate_cause User-Request 75486 bytes_out 13250 75486 bytes_in 30707 75486 station_ip 37.129.19.154 75486 port 15728804 75486 nas_port_type Virtual 75486 remote_ip 5.5.5.213 81177 station_ip 5.119.30.76 81177 port 14 81177 unique_id port 81177 remote_ip 10.8.0.6 81178 username caferibar 81178 unique_id port 81178 terminate_cause Lost-Carrier 81178 bytes_out 5769348 81178 bytes_in 77550074 75490 username asadi 75490 unique_id port 75490 terminate_cause Lost-Carrier 75490 bytes_out 46908 75490 bytes_in 570512 75490 station_ip 37.129.19.154 75490 port 15728805 75490 nas_port_type Virtual 75490 remote_ip 5.5.5.213 75493 username alinezhad 75493 unique_id port 75493 terminate_cause User-Request 75493 bytes_out 6172 75493 bytes_in 16918 75493 station_ip 5.202.28.123 75493 port 15728809 75493 nas_port_type Virtual 75493 remote_ip 5.5.5.207 75496 username hamideh 75496 unique_id port 75496 terminate_cause Lost-Carrier 75496 bytes_out 99715 75496 bytes_in 478682 75496 station_ip 5.119.216.4 75496 port 15728810 75496 nas_port_type Virtual 75496 remote_ip 5.5.5.228 75497 username alirezazamani 75497 unique_id port 75497 terminate_cause Lost-Carrier 75497 bytes_out 120125 75497 bytes_in 551362 75497 station_ip 5.119.99.248 75497 port 15728811 75497 nas_port_type Virtual 75497 remote_ip 5.5.5.198 75498 username ahmadi 75498 unique_id port 75498 terminate_cause User-Request 75498 bytes_out 0 75498 bytes_in 0 75498 station_ip 83.123.181.255 75498 port 15728813 75498 nas_port_type Virtual 75498 remote_ip 5.5.5.202 75499 username alinezhad 75499 unique_id port 75499 terminate_cause User-Request 75499 bytes_out 0 75499 bytes_in 0 75499 station_ip 5.202.28.123 75499 port 15728814 75499 nas_port_type Virtual 75499 remote_ip 5.5.5.207 75501 username alinezhad 75501 unique_id port 75501 terminate_cause User-Request 75501 bytes_out 55345 75501 bytes_in 685373 75501 station_ip 5.202.28.123 75501 port 15728816 75501 nas_port_type Virtual 75501 remote_ip 5.5.5.207 81178 station_ip 5.119.57.159 81178 port 15728758 81178 nas_port_type Virtual 81178 remote_ip 5.5.5.194 81181 username aminvpn 81179 terminate_cause User-Request 81179 bytes_out 0 81179 bytes_in 0 81179 station_ip 5.119.115.21 75506 username alinezhad 75506 unique_id port 75506 terminate_cause User-Request 75506 bytes_out 0 75506 bytes_in 0 75506 station_ip 83.122.43.74 75506 port 15728820 75506 nas_port_type Virtual 75506 remote_ip 5.5.5.195 75507 username alinezhad 75507 unique_id port 75507 terminate_cause User-Request 75507 bytes_out 0 75507 bytes_in 0 75507 station_ip 83.122.43.74 75507 port 15728821 75507 nas_port_type Virtual 75507 remote_ip 5.5.5.195 75514 username goli 75514 unique_id port 75514 terminate_cause User-Request 75514 bytes_out 50416 75514 bytes_in 711989 75514 station_ip 83.123.199.105 75514 port 15728826 75514 nas_port_type Virtual 75514 remote_ip 5.5.5.192 75517 username asadi 75517 unique_id port 75517 terminate_cause User-Request 75517 bytes_out 27481 75517 bytes_in 263678 75517 station_ip 37.129.255.75 75517 port 15728830 75517 nas_port_type Virtual 75517 remote_ip 5.5.5.190 81179 port 15728783 81179 nas_port_type Virtual 81179 remote_ip 5.5.5.182 81180 username forozande 81180 unique_id port 81180 terminate_cause User-Request 81180 bytes_out 9658 81180 bytes_in 34342 81180 station_ip 83.122.156.40 75520 username reza 75520 unique_id port 75520 terminate_cause User-Request 75520 bytes_out 69119 75520 bytes_in 1770909 75520 station_ip 37.129.244.207 75520 port 15728835 75520 nas_port_type Virtual 75520 remote_ip 5.5.5.189 75521 username alirezazamani 75521 unique_id port 75521 terminate_cause Admin-Reboot 75521 bytes_out 354827 75521 bytes_in 4115085 75521 station_ip 5.119.118.61 75521 port 15728836 75521 nas_port_type Virtual 75521 remote_ip 5.5.5.188 75523 username arabpour 75523 unique_id port 75523 terminate_cause User-Request 75523 bytes_out 583690 75523 bytes_in 14575312 75523 station_ip 37.129.83.156 75523 port 15728643 75523 nas_port_type Virtual 75523 remote_ip 5.5.5.253 75530 username amin.insta22 75530 unique_id port 75530 terminate_cause Lost-Carrier 75530 bytes_out 5553027 75530 bytes_in 116916446 75530 station_ip 31.56.218.91 75530 port 15728647 75530 nas_port_type Virtual 75530 remote_ip 5.5.5.249 75533 username asadi 75533 unique_id port 75533 terminate_cause User-Request 75533 bytes_out 81814 75533 bytes_in 898716 75533 station_ip 37.129.78.217 75533 port 15728654 75533 nas_port_type Virtual 75533 remote_ip 5.5.5.251 75541 username hamideh 75541 unique_id port 75541 terminate_cause Lost-Carrier 75541 bytes_out 778629 75541 bytes_in 6623051 75541 station_ip 5.119.216.4 75541 port 15728655 75541 nas_port_type Virtual 75541 remote_ip 5.5.5.245 75542 username mahbobeh 75542 unique_id port 75542 terminate_cause User-Request 75542 bytes_out 419400 75542 bytes_in 8563735 75542 station_ip 83.123.43.79 75542 port 15728662 75542 nas_port_type Virtual 75542 remote_ip 5.5.5.241 75543 username mahbobeh 75543 unique_id port 75543 terminate_cause Lost-Carrier 75543 bytes_out 1351572 75543 bytes_in 30073943 75543 station_ip 83.123.43.79 75543 port 15728663 75543 nas_port_type Virtual 75543 remote_ip 5.5.5.241 75547 username asadi 75547 unique_id port 75547 terminate_cause User-Request 75547 bytes_out 20129 75547 bytes_in 115734 75547 station_ip 37.129.71.252 75547 port 15728678 75547 nas_port_type Virtual 75547 remote_ip 5.5.5.240 75551 username asadi 75551 unique_id port 75551 terminate_cause User-Request 75551 bytes_out 38404 75551 bytes_in 81061 75551 station_ip 83.122.174.52 75551 port 15728682 75551 nas_port_type Virtual 75551 remote_ip 5.5.5.238 75552 username asadi 75552 unique_id port 75552 terminate_cause User-Request 75552 bytes_out 47599 75505 port 15728799 75505 nas_port_type Virtual 75505 remote_ip 5.5.5.205 75508 username zoha 75508 unique_id port 75508 terminate_cause Lost-Carrier 75508 bytes_out 728955 75508 bytes_in 4881006 75508 station_ip 5.120.66.170 75508 port 15728819 75508 nas_port_type Virtual 75508 remote_ip 5.5.5.238 75509 username zoha 75509 unique_id port 75509 terminate_cause Lost-Carrier 75509 bytes_out 1010085 75509 bytes_in 12708734 75509 station_ip 5.120.66.170 75509 port 15728822 75509 nas_port_type Virtual 75509 remote_ip 5.5.5.238 75511 username mobina 75511 unique_id port 75511 terminate_cause Lost-Carrier 75511 bytes_out 17191 75511 bytes_in 125956 75511 station_ip 5.123.95.28 75511 port 15728823 75511 nas_port_type Virtual 75511 remote_ip 5.5.5.194 81180 port 15728782 81180 nas_port_type Virtual 81180 remote_ip 5.5.5.183 81182 username zoha 81182 unique_id port 81182 terminate_cause Lost-Carrier 75516 username asadi 75516 unique_id port 75516 terminate_cause User-Request 75516 bytes_out 49146 75516 bytes_in 217826 75516 station_ip 37.129.255.75 75516 port 15728829 75516 nas_port_type Virtual 75516 remote_ip 5.5.5.190 75524 username alirezazamani 75524 unique_id port 75524 terminate_cause Lost-Carrier 75524 bytes_out 477195 75524 bytes_in 10886532 75524 station_ip 5.119.118.61 75524 port 15728641 75524 nas_port_type Virtual 75524 remote_ip 5.5.5.254 75526 username alirezazamani 75526 unique_id port 75526 terminate_cause Lost-Carrier 75526 bytes_out 253808 75526 bytes_in 5037406 75526 station_ip 5.119.118.61 75526 port 15728642 75526 nas_port_type Virtual 75526 remote_ip 5.5.5.255 75527 username alinezhad 75527 unique_id port 75527 terminate_cause User-Request 75527 bytes_out 0 75527 bytes_in 0 75527 station_ip 5.202.4.248 75527 port 15728648 75527 nas_port_type Virtual 75527 remote_ip 5.5.5.248 75528 username alirezazamani 75528 unique_id port 75528 terminate_cause Lost-Carrier 75528 bytes_out 418027 75528 bytes_in 9230914 75528 station_ip 5.119.118.61 75528 port 15728644 75528 nas_port_type Virtual 75528 remote_ip 5.5.5.252 75529 username alirezazamani 75529 unique_id port 75529 terminate_cause Lost-Carrier 75529 bytes_out 1361296 75529 bytes_in 835924 75529 station_ip 5.119.118.61 75529 port 15728649 75529 nas_port_type Virtual 75529 remote_ip 5.5.5.254 75532 username alirezazamani 75532 unique_id port 75532 terminate_cause User-Request 75532 bytes_out 97854 75532 bytes_in 2095209 75532 station_ip 5.120.7.208 75532 port 15728652 75532 nas_port_type Virtual 75532 remote_ip 5.5.5.246 75536 username alinezhad 75536 unique_id port 75536 terminate_cause User-Request 75536 bytes_out 0 75536 bytes_in 0 75536 station_ip 5.202.4.248 75536 port 15728657 75536 nas_port_type Virtual 75536 remote_ip 5.5.5.248 75540 username alirezazamani 75540 unique_id port 75540 terminate_cause Lost-Carrier 75540 bytes_out 286374 75540 bytes_in 2188732 75540 station_ip 5.119.76.201 75540 port 15728656 75540 nas_port_type Virtual 75540 remote_ip 5.5.5.244 75544 username alinezhad 75544 unique_id port 75544 terminate_cause User-Request 75544 bytes_out 0 75544 bytes_in 0 75544 station_ip 5.202.4.248 75544 port 15728676 75544 nas_port_type Virtual 75544 remote_ip 5.5.5.248 75550 username asadi 75550 unique_id port 75550 terminate_cause User-Request 75550 bytes_out 62874 75550 bytes_in 254862 75550 station_ip 83.122.174.52 75550 port 15728681 75550 nas_port_type Virtual 75550 remote_ip 5.5.5.238 75553 username asadi 75553 unique_id port 75553 terminate_cause User-Request 75553 bytes_out 0 75553 bytes_in 0 75553 station_ip 83.122.174.52 75553 port 15728686 75553 nas_port_type Virtual 75553 remote_ip 5.5.5.238 75519 username asadi 75519 unique_id port 75519 terminate_cause User-Request 75519 bytes_out 107971 75519 bytes_in 2476396 75519 station_ip 37.129.255.75 75519 port 15728834 75519 nas_port_type Virtual 75519 remote_ip 5.5.5.190 75522 username alirezazamani 75522 unique_id port 75522 terminate_cause Lost-Carrier 75522 bytes_out 396507 75522 bytes_in 11220532 75522 station_ip 5.119.118.61 75522 port 15728640 75522 nas_port_type Virtual 75522 remote_ip 5.5.5.255 75525 username asadi 75525 unique_id port 75525 terminate_cause User-Request 75525 bytes_out 91906 75525 bytes_in 254871 75525 station_ip 37.129.78.217 75525 port 15728645 75525 nas_port_type Virtual 75525 remote_ip 5.5.5.251 75531 username alinezhad 75531 unique_id port 75531 terminate_cause User-Request 75531 bytes_out 0 75531 bytes_in 0 75531 station_ip 5.202.4.248 75531 port 15728653 75531 nas_port_type Virtual 75531 remote_ip 5.5.5.248 75534 username alirezazamani 75534 unique_id port 75534 terminate_cause Lost-Carrier 75534 bytes_out 639118 75534 bytes_in 16917516 75534 station_ip 5.119.118.61 75534 port 15728651 75534 nas_port_type Virtual 75534 remote_ip 5.5.5.252 75535 username iranmanesh 75535 unique_id port 75535 terminate_cause User-Request 75535 bytes_out 143329 75535 bytes_in 2489182 75535 station_ip 5.114.60.240 75535 port 15728646 75535 nas_port_type Virtual 75535 remote_ip 5.5.5.250 75537 username asadi 75537 unique_id port 75537 terminate_cause User-Request 75537 bytes_out 94903 75537 bytes_in 1458738 75537 station_ip 37.129.78.217 75537 port 15728659 75537 nas_port_type Virtual 75537 remote_ip 5.5.5.251 75538 username ahmadi 75538 unique_id port 75538 terminate_cause User-Request 75538 bytes_out 52627 75538 bytes_in 365587 75538 station_ip 83.123.198.207 75538 port 15728658 75538 nas_port_type Virtual 75538 remote_ip 5.5.5.243 75539 username asadi 75539 unique_id port 75539 terminate_cause User-Request 75539 bytes_out 48736 75539 bytes_in 82965 75539 station_ip 37.129.78.217 75539 port 15728660 75539 nas_port_type Virtual 75539 remote_ip 5.5.5.251 75545 username alinezhad 75545 kill_reason Maximum check online fails reached 75545 unique_id port 75545 bytes_out 0 75545 bytes_in 0 75545 station_ip 5.202.4.248 75545 port 15728675 75545 nas_port_type Virtual 75546 username asadi 75546 unique_id port 75546 terminate_cause User-Request 75546 bytes_out 0 75546 bytes_in 0 75546 station_ip 37.129.71.252 75546 port 15728677 75546 nas_port_type Virtual 75546 remote_ip 5.5.5.240 75548 username reza 75548 unique_id port 75548 terminate_cause User-Request 75548 bytes_out 243187 75548 bytes_in 7829511 75548 station_ip 83.123.54.54 75548 port 15728679 75548 nas_port_type Virtual 75548 remote_ip 5.5.5.239 75549 username asadi 75549 unique_id port 75549 terminate_cause User-Request 75549 bytes_out 124340 75549 bytes_in 2217737 75549 station_ip 83.122.174.52 75549 port 15728680 75549 nas_port_type Virtual 75549 remote_ip 5.5.5.238 75556 username ahmadi 75556 unique_id port 75556 terminate_cause User-Request 75556 bytes_out 245952 75556 bytes_in 744781 75556 station_ip 83.122.166.237 75556 port 15728687 75556 nas_port_type Virtual 75556 remote_ip 5.5.5.236 75558 username asadi 75558 unique_id port 75558 terminate_cause User-Request 75558 bytes_out 37595 75558 bytes_in 189318 75558 station_ip 83.123.66.10 75558 port 15728691 75558 nas_port_type Virtual 75558 remote_ip 5.5.5.235 75563 username ahmadi 75563 unique_id port 75563 terminate_cause User-Request 75563 bytes_out 17517 75563 bytes_in 181987 75563 station_ip 83.122.138.17 75563 port 15728697 75563 nas_port_type Virtual 75563 remote_ip 5.5.5.232 75552 bytes_in 171664 75552 station_ip 83.122.174.52 75552 port 15728683 75552 nas_port_type Virtual 75552 remote_ip 5.5.5.238 75555 username alinezhad 75555 unique_id port 75555 terminate_cause User-Request 75555 bytes_out 0 75555 bytes_in 0 75555 station_ip 5.202.4.248 75555 port 15728689 75555 nas_port_type Virtual 75555 remote_ip 5.5.5.248 75559 username reza2742 75559 unique_id port 75559 terminate_cause Lost-Carrier 75559 bytes_out 2969210 75559 bytes_in 21322367 75559 station_ip 151.235.119.53 75559 port 15728684 75559 nas_port_type Virtual 75559 remote_ip 5.5.5.237 75560 username mobina 75560 unique_id port 75560 terminate_cause User-Request 75560 bytes_out 339100 75560 bytes_in 6572566 75560 station_ip 5.124.89.236 75560 port 15728692 75560 nas_port_type Virtual 75560 remote_ip 5.5.5.234 75564 username zoha 75564 unique_id port 75564 terminate_cause Lost-Carrier 75564 bytes_out 912548 75564 bytes_in 7531248 75564 station_ip 5.120.66.170 75564 port 15728693 75564 nas_port_type Virtual 75564 remote_ip 5.5.5.233 75567 username reza 75567 unique_id port 75567 terminate_cause User-Request 75567 bytes_out 20649 75567 bytes_in 357972 75567 station_ip 37.129.65.206 75567 port 15728700 75567 nas_port_type Virtual 75567 remote_ip 5.5.5.231 75573 username alirezazamani 75573 kill_reason Wrong password 75573 unique_id port 75573 bytes_out 0 75573 bytes_in 0 75573 station_ip 37.27.3.151 75573 port 15728706 75573 nas_port_type Virtual 75575 username alirezazamani 75575 kill_reason Wrong password 75575 unique_id port 75575 bytes_out 0 75575 bytes_in 0 75575 station_ip 37.27.3.151 75575 port 15728708 75575 nas_port_type Virtual 75576 username alirezazamani 75576 kill_reason Wrong password 75576 unique_id port 75576 bytes_out 0 75576 bytes_in 0 75576 station_ip 37.27.3.151 75576 port 15728709 75576 nas_port_type Virtual 75579 username alirezazamani 75579 kill_reason Wrong password 75579 unique_id port 75579 bytes_out 0 75579 bytes_in 0 75579 station_ip 37.27.3.151 75579 port 15728712 75579 nas_port_type Virtual 75583 username alirezazamani 75583 kill_reason Wrong password 75583 unique_id port 75583 bytes_out 0 75583 bytes_in 0 75583 station_ip 37.27.3.151 75583 port 15728716 75583 nas_port_type Virtual 75584 username alirezazamani 75584 kill_reason Wrong password 75584 unique_id port 75584 bytes_out 0 75584 bytes_in 0 75584 station_ip 37.27.3.151 75584 port 15728717 75584 nas_port_type Virtual 75587 username alirezazamani 75587 kill_reason Wrong password 75587 unique_id port 75587 bytes_out 0 75587 bytes_in 0 75587 station_ip 37.27.3.151 75587 port 15728719 75587 nas_port_type Virtual 75588 username alirezazamani 75588 kill_reason Wrong password 75588 unique_id port 75588 bytes_out 0 75588 bytes_in 0 75588 station_ip 37.27.3.151 75588 port 15728721 75588 nas_port_type Virtual 75590 username alirezazamani 75590 kill_reason Wrong password 75590 unique_id port 75590 bytes_out 0 75590 bytes_in 0 75590 station_ip 37.27.3.151 75590 port 15728723 75590 nas_port_type Virtual 75595 username hamideh 75595 unique_id port 75595 terminate_cause User-Request 75595 bytes_out 59030 75595 bytes_in 141294 75595 station_ip 5.119.139.162 75595 port 15728729 75595 nas_port_type Virtual 75595 remote_ip 5.5.5.226 75596 username asadi 75596 unique_id port 75596 terminate_cause User-Request 75596 bytes_out 69734 75596 bytes_in 693815 75596 station_ip 83.123.66.10 75596 port 15728730 75596 nas_port_type Virtual 75596 remote_ip 5.5.5.235 75598 username arabpour 75598 unique_id port 75598 terminate_cause User-Request 75598 bytes_out 248839 75598 bytes_in 6778089 75554 username asadi 75554 unique_id port 75554 terminate_cause User-Request 75554 bytes_out 24635 75554 bytes_in 48025 75554 station_ip 83.123.66.10 75554 port 15728688 75554 nas_port_type Virtual 75554 remote_ip 5.5.5.235 75557 username asadi 75557 unique_id port 75557 terminate_cause User-Request 75557 bytes_out 19658 75557 bytes_in 93994 75557 station_ip 83.123.66.10 75557 port 15728690 75557 nas_port_type Virtual 75557 remote_ip 5.5.5.235 75561 username ahmadi 75561 unique_id port 75561 terminate_cause User-Request 75561 bytes_out 0 75561 bytes_in 0 75561 station_ip 83.122.138.17 75561 port 15728695 75561 nas_port_type Virtual 75561 remote_ip 5.5.5.232 75562 username asadi 75562 unique_id port 75562 terminate_cause User-Request 75562 bytes_out 79978 75562 bytes_in 703644 75562 station_ip 83.123.66.10 75562 port 15728694 75562 nas_port_type Virtual 75562 remote_ip 5.5.5.235 75565 username asadi 75565 unique_id port 75565 terminate_cause User-Request 75565 bytes_out 73206 75565 bytes_in 568950 75565 station_ip 83.123.66.10 75565 port 15728699 75565 nas_port_type Virtual 75565 remote_ip 5.5.5.235 75568 username arabpour 75568 unique_id port 75568 terminate_cause User-Request 75568 bytes_out 459109 75568 bytes_in 11295417 75568 station_ip 83.122.109.231 75568 port 15728702 75568 nas_port_type Virtual 75568 remote_ip 5.5.5.230 75570 username alinezhad 75570 unique_id port 75570 terminate_cause User-Request 75570 bytes_out 41243 75570 bytes_in 410428 75570 station_ip 5.202.4.248 75570 port 15728701 75570 nas_port_type Virtual 75570 remote_ip 5.5.5.248 75577 username alirezazamani 75577 kill_reason Wrong password 75577 unique_id port 75577 bytes_out 0 75577 bytes_in 0 75577 station_ip 37.27.3.151 75577 port 15728710 75577 nas_port_type Virtual 75581 username alirezazamani 75581 kill_reason Wrong password 75581 unique_id port 75581 bytes_out 0 75581 bytes_in 0 75581 station_ip 37.27.3.151 75581 port 15728713 75581 nas_port_type Virtual 75582 username alirezazamani 75582 kill_reason Wrong password 75582 unique_id port 75582 bytes_out 0 75582 bytes_in 0 75582 station_ip 37.27.3.151 75582 port 15728715 75582 nas_port_type Virtual 75585 username alirezazamani 75585 kill_reason Wrong password 75585 unique_id port 75585 bytes_out 0 75585 bytes_in 0 75585 station_ip 37.27.3.151 75585 port 15728718 75585 nas_port_type Virtual 75586 username alirezazamani 75586 kill_reason Wrong password 75586 unique_id port 75586 bytes_out 0 75586 bytes_in 0 75586 station_ip 37.27.3.151 75586 port 15728720 75586 nas_port_type Virtual 75589 username alirezazamani 75589 kill_reason Wrong password 75589 unique_id port 75589 bytes_out 0 75589 bytes_in 0 75589 station_ip 37.27.3.151 75589 port 15728722 75589 nas_port_type Virtual 75591 username alirezazamani 75591 kill_reason Wrong password 75591 unique_id port 75591 bytes_out 0 75591 bytes_in 0 75591 station_ip 37.27.3.151 75591 port 15728724 75591 nas_port_type Virtual 75593 username asadi 75593 unique_id port 75593 terminate_cause User-Request 75593 bytes_out 113302 75593 bytes_in 975104 75593 station_ip 83.123.66.10 75593 port 15728727 75593 nas_port_type Virtual 75593 remote_ip 5.5.5.235 75601 username ahmadi 75601 unique_id port 75601 terminate_cause User-Request 75601 bytes_out 37996 75601 bytes_in 268497 75601 station_ip 37.129.185.10 75601 port 15728735 75601 nas_port_type Virtual 75601 remote_ip 5.5.5.229 75606 username rashidi 75606 unique_id port 75606 terminate_cause User-Request 75606 bytes_out 43543 75606 bytes_in 127260 75606 station_ip 5.120.132.88 75606 port 15728740 75606 nas_port_type Virtual 75566 username alirezazamani 75566 unique_id port 75566 terminate_cause Lost-Carrier 75566 bytes_out 418750 75566 bytes_in 7063553 75566 station_ip 5.120.7.208 75566 port 15728696 75566 nas_port_type Virtual 75566 remote_ip 5.5.5.246 75569 username asadi 75569 unique_id port 75569 terminate_cause User-Request 75569 bytes_out 111896 75569 bytes_in 1235121 75569 station_ip 83.123.66.10 75569 port 15728703 75569 nas_port_type Virtual 75569 remote_ip 5.5.5.235 75571 username alirezazamani 75571 kill_reason Wrong password 75571 unique_id port 75571 bytes_out 0 75571 bytes_in 0 75571 station_ip 37.27.3.151 75571 port 15728704 75571 nas_port_type Virtual 75572 username alirezazamani 75572 kill_reason Wrong password 75572 unique_id port 75572 bytes_out 0 75572 bytes_in 0 75572 station_ip 37.27.3.151 75572 port 15728705 75572 nas_port_type Virtual 75574 username alirezazamani 75574 kill_reason Wrong password 75574 unique_id port 75574 bytes_out 0 75574 bytes_in 0 75574 station_ip 37.27.3.151 75574 port 15728707 75574 nas_port_type Virtual 75578 username alirezazamani 75578 kill_reason Wrong password 75578 unique_id port 75578 bytes_out 0 75578 bytes_in 0 75578 station_ip 37.27.3.151 75578 port 15728711 75578 nas_port_type Virtual 75580 username alirezazamani 75580 kill_reason Wrong password 75580 unique_id port 75580 bytes_out 0 75580 bytes_in 0 75580 station_ip 37.27.3.151 75580 port 15728714 75580 nas_port_type Virtual 75592 username ahmadi 75592 unique_id port 75592 terminate_cause User-Request 75592 bytes_out 39346 75592 bytes_in 446454 75592 station_ip 37.129.185.10 75592 port 15728725 75592 nas_port_type Virtual 75592 remote_ip 5.5.5.229 75594 username rashidi 75594 unique_id port 75594 terminate_cause User-Request 75594 bytes_out 769111 75594 bytes_in 6225698 75594 station_ip 5.120.132.88 75594 port 15728726 75594 nas_port_type Virtual 75594 remote_ip 5.5.5.228 75597 username alinezhad 75597 unique_id port 75597 terminate_cause User-Request 75597 bytes_out 0 75597 bytes_in 0 75597 station_ip 5.202.4.248 75597 port 15728732 75597 nas_port_type Virtual 75597 remote_ip 5.5.5.248 75599 username asadi 75599 unique_id port 75599 terminate_cause User-Request 75599 bytes_out 51012 75599 bytes_in 248569 75599 station_ip 83.123.66.10 75599 port 15728733 75599 nas_port_type Virtual 75599 remote_ip 5.5.5.235 75600 username aminvpn 75600 unique_id port 75600 terminate_cause User-Request 75600 bytes_out 654187 75600 bytes_in 8176338 75600 station_ip 5.233.60.179 75600 port 15728728 75600 nas_port_type Virtual 75600 remote_ip 5.5.5.227 75602 username alirezazamani 75602 unique_id port 75602 terminate_cause User-Request 75602 bytes_out 0 75602 bytes_in 0 75602 station_ip 37.27.5.17 75602 port 15728738 75602 nas_port_type Virtual 75602 remote_ip 5.5.5.222 75603 username amin.insta21 75603 unique_id port 75603 terminate_cause Lost-Carrier 75603 bytes_out 1417574 75603 bytes_in 25393753 75603 station_ip 151.235.107.53 75603 port 15728734 75603 nas_port_type Virtual 75603 remote_ip 5.5.5.224 75604 username alinezhad 75604 unique_id port 75604 terminate_cause User-Request 75604 bytes_out 0 75604 bytes_in 0 75604 station_ip 5.202.4.248 75604 port 15728739 75604 nas_port_type Virtual 75604 remote_ip 5.5.5.248 75605 username alirezazamani 75605 unique_id port 75605 terminate_cause Lost-Carrier 75605 bytes_out 346859 75605 bytes_in 2034616 75605 station_ip 5.120.7.208 75605 port 15728736 75605 nas_port_type Virtual 75605 remote_ip 5.5.5.246 75607 username asadi 75607 unique_id port 75607 terminate_cause User-Request 75607 bytes_out 88309 75607 bytes_in 802854 75598 station_ip 37.129.190.45 75598 port 15728731 75598 nas_port_type Virtual 75598 remote_ip 5.5.5.225 75608 username ahmadipour 75608 unique_id port 75608 terminate_cause User-Request 75608 bytes_out 2879582 75608 bytes_in 64774889 75608 station_ip 37.129.201.85 75608 port 15728737 75608 nas_port_type Virtual 75608 remote_ip 5.5.5.223 75617 username alirezazamani 75617 unique_id port 75617 terminate_cause Lost-Carrier 75617 bytes_out 508781 75617 bytes_in 10434688 75617 station_ip 5.119.76.201 75617 port 15728745 75617 nas_port_type Virtual 75617 remote_ip 5.5.5.244 75621 username alirezazamani 75621 unique_id port 75621 terminate_cause Lost-Carrier 75621 bytes_out 1100039 75621 bytes_in 10974771 75621 station_ip 5.120.7.208 75621 port 15728752 75621 nas_port_type Virtual 75621 remote_ip 5.5.5.221 75624 username alirezazamani 75624 unique_id port 75624 terminate_cause User-Request 75624 bytes_out 0 75624 bytes_in 0 75624 station_ip 37.27.5.17 75624 port 15728759 75624 nas_port_type Virtual 75624 remote_ip 5.5.5.222 81181 kill_reason Another user logged on this global unique id 81181 mac 81181 bytes_out 0 81181 bytes_in 0 81181 station_ip 5.119.30.76 81181 port 14 81181 unique_id port 81186 username arman 81186 unique_id port 75632 username mahbobeh 75632 unique_id port 75632 terminate_cause Lost-Carrier 75632 bytes_out 1515860 75632 bytes_in 21780964 75632 station_ip 83.123.111.67 75632 port 15728753 75632 nas_port_type Virtual 75632 remote_ip 5.5.5.217 75633 username alirezazamani 75633 unique_id port 75633 terminate_cause User-Request 75633 bytes_out 6341911 75633 bytes_in 144856775 75633 station_ip 37.27.5.17 75633 port 15728760 75633 nas_port_type Virtual 75633 remote_ip 5.5.5.222 75635 username alirezazamani 75635 unique_id port 75635 terminate_cause User-Request 75635 bytes_out 0 75635 bytes_in 0 75635 station_ip 37.27.5.17 75635 port 15728769 75635 nas_port_type Virtual 75635 remote_ip 5.5.5.222 75639 username ahmadi 75639 unique_id port 75639 terminate_cause User-Request 75639 bytes_out 62233 75639 bytes_in 383075 75639 station_ip 37.129.213.130 75639 port 15728776 75639 nas_port_type Virtual 75639 remote_ip 5.5.5.208 75640 username zoha 75640 unique_id port 75640 terminate_cause Lost-Carrier 75640 bytes_out 2198624 75640 bytes_in 13020383 75640 station_ip 5.120.66.170 75640 port 15728770 75640 nas_port_type Virtual 75640 remote_ip 5.5.5.233 75641 username zoha 75641 unique_id port 75641 terminate_cause Lost-Carrier 75641 bytes_out 435046 75641 bytes_in 2702078 75641 station_ip 5.120.66.170 75641 port 15728775 75641 nas_port_type Virtual 75641 remote_ip 5.5.5.209 75645 username mahbobeh 75645 unique_id port 75645 terminate_cause Lost-Carrier 75645 bytes_out 696378 75645 bytes_in 15310613 75645 station_ip 83.123.111.67 75645 port 15728768 75645 nas_port_type Virtual 75645 remote_ip 5.5.5.217 75648 username alirezazamani 75648 unique_id port 75648 terminate_cause Lost-Carrier 75648 bytes_out 99957 75648 bytes_in 532044 75648 station_ip 5.120.7.208 75648 port 15728780 75648 nas_port_type Virtual 75648 remote_ip 5.5.5.215 75651 username alinezhad 75651 unique_id port 75651 terminate_cause User-Request 75651 bytes_out 37117 75651 bytes_in 359069 75651 station_ip 5.202.4.248 75651 port 15728786 75651 nas_port_type Virtual 75651 remote_ip 5.5.5.248 75652 username mobina 75652 unique_id port 75652 terminate_cause User-Request 75652 bytes_out 184650 75652 bytes_in 695642 75652 station_ip 5.53.37.54 75652 port 15728788 75652 nas_port_type Virtual 75652 remote_ip 5.5.5.219 75655 username ahmadi 75655 unique_id port 75655 terminate_cause User-Request 75655 bytes_out 135272 75606 remote_ip 5.5.5.228 75610 username alinezhad 75610 unique_id port 75610 terminate_cause User-Request 75610 bytes_out 449332 75610 bytes_in 5235230 75610 station_ip 5.202.4.248 75610 port 15728744 75610 nas_port_type Virtual 75610 remote_ip 5.5.5.248 75612 username reza 75612 unique_id port 75612 terminate_cause User-Request 75612 bytes_out 34785 75612 bytes_in 935383 75612 station_ip 37.129.65.206 75612 port 15728746 75612 nas_port_type Virtual 75612 remote_ip 5.5.5.231 81182 bytes_out 4169460 81182 bytes_in 59421430 81182 station_ip 5.120.136.140 81182 port 15728767 81182 nas_port_type Virtual 81182 remote_ip 5.5.5.244 81183 username avaanna 81183 unique_id port 81183 terminate_cause User-Request 75615 username ahmadi 75615 unique_id port 75615 terminate_cause User-Request 75615 bytes_out 17495 75615 bytes_in 83318 75615 station_ip 37.129.185.10 75615 port 15728749 75615 nas_port_type Virtual 75615 remote_ip 5.5.5.229 75616 username aminvpn 75616 unique_id port 75616 terminate_cause User-Request 75616 bytes_out 599874 75616 bytes_in 3699653 75616 station_ip 5.233.60.179 75616 port 15728748 75616 nas_port_type Virtual 75616 remote_ip 5.5.5.227 75619 username mobina 75619 unique_id port 75619 terminate_cause User-Request 75619 bytes_out 1075806 75619 bytes_in 8832783 75619 station_ip 5.53.37.54 75619 port 15728750 75619 nas_port_type Virtual 75619 remote_ip 5.5.5.219 75623 username alinezhad 75623 unique_id port 75623 terminate_cause User-Request 75623 bytes_out 0 75623 bytes_in 0 75623 station_ip 5.202.4.248 75623 port 15728757 75623 nas_port_type Virtual 75623 remote_ip 5.5.5.248 75625 username alirezazamani 75625 unique_id port 75625 terminate_cause Lost-Carrier 75625 bytes_out 1247908 75625 bytes_in 30518993 75625 station_ip 5.120.7.208 75625 port 15728755 75625 nas_port_type Virtual 75625 remote_ip 5.5.5.215 75627 username mohammadi 75627 unique_id port 75627 terminate_cause User-Request 75627 bytes_out 57973 75627 bytes_in 134610 75627 station_ip 83.123.34.145 75627 port 15728762 75627 nas_port_type Virtual 75627 remote_ip 5.5.5.212 75629 username arabpour 75629 unique_id port 75629 terminate_cause User-Request 75629 bytes_out 292067 75629 bytes_in 5235392 75629 station_ip 113.203.112.153 75629 port 15728764 75629 nas_port_type Virtual 75629 remote_ip 5.5.5.211 75630 username alinezhad 75630 unique_id port 75630 terminate_cause User-Request 75630 bytes_out 0 75630 bytes_in 0 75630 station_ip 5.202.4.248 75630 port 15728765 75630 nas_port_type Virtual 75630 remote_ip 5.5.5.248 75634 username alirezazamani 75634 unique_id port 75634 terminate_cause User-Request 75634 bytes_out 906045 75634 bytes_in 28056056 75634 station_ip 37.27.5.17 75634 port 15728767 75634 nas_port_type Virtual 75634 remote_ip 5.5.5.222 75636 username asadi 75636 unique_id port 75636 terminate_cause User-Request 75636 bytes_out 102677 75636 bytes_in 805305 75636 station_ip 83.123.66.10 75636 port 15728773 75636 nas_port_type Virtual 75636 remote_ip 5.5.5.235 75643 username alirezazamani 75643 unique_id port 75643 terminate_cause User-Request 75643 bytes_out 450611 75643 bytes_in 11268781 75643 station_ip 37.27.32.10 75643 port 15728774 75643 nas_port_type Virtual 75643 remote_ip 5.5.5.210 75644 username ahmadi 75644 unique_id port 75644 terminate_cause User-Request 75644 bytes_out 27164 75644 bytes_in 287507 75644 station_ip 37.129.213.130 75644 port 15728777 75644 nas_port_type Virtual 75644 remote_ip 5.5.5.208 75647 username zoha 75647 unique_id port 75647 terminate_cause User-Request 75647 bytes_out 318703 75647 bytes_in 1184935 75647 station_ip 5.120.66.170 75647 port 15728779 75607 station_ip 83.123.66.10 75607 port 15728742 75607 nas_port_type Virtual 75607 remote_ip 5.5.5.235 75609 username asadi 75609 unique_id port 75609 terminate_cause User-Request 75609 bytes_out 70719 75609 bytes_in 1046976 75609 station_ip 83.123.66.10 75609 port 15728743 75609 nas_port_type Virtual 75609 remote_ip 5.5.5.235 75611 username amin.insta22 75611 unique_id port 75611 terminate_cause User-Request 75611 bytes_out 23731508 75611 bytes_in 78566838 75611 station_ip 31.56.218.91 75611 port 15728650 75611 nas_port_type Virtual 75611 remote_ip 5.5.5.247 75614 username alirezazamani 75614 unique_id port 75614 terminate_cause Lost-Carrier 75614 bytes_out 1560142 75614 bytes_in 1509045 75614 station_ip 5.120.7.208 75614 port 15728741 75614 nas_port_type Virtual 75614 remote_ip 5.5.5.221 75618 username mohammadi 75618 unique_id port 75618 terminate_cause User-Request 75618 bytes_out 23863 75618 bytes_in 31965 75618 station_ip 83.123.112.85 75618 port 15728751 75618 nas_port_type Virtual 75618 remote_ip 5.5.5.218 75620 username ahmadipour 75620 unique_id port 75620 terminate_cause User-Request 75620 bytes_out 12211797 75620 bytes_in 69376161 75620 station_ip 37.129.233.89 75620 port 15728754 75620 nas_port_type Virtual 75620 remote_ip 5.5.5.216 75622 username reza2742 75622 unique_id port 75622 terminate_cause Lost-Carrier 75622 bytes_out 461103 75622 bytes_in 1243945 75622 station_ip 151.235.78.190 75622 port 15728756 75622 nas_port_type Virtual 75622 remote_ip 5.5.5.214 75628 username asadi 75628 unique_id port 75628 terminate_cause User-Request 75628 bytes_out 210714 75628 bytes_in 2924365 75628 station_ip 83.123.66.10 75628 port 15728763 75628 nas_port_type Virtual 75628 remote_ip 5.5.5.235 75631 username alirezazamani 75631 unique_id port 75631 terminate_cause Lost-Carrier 75631 bytes_out 280398 75631 bytes_in 5814446 75631 station_ip 5.120.7.208 75631 port 15728758 75631 nas_port_type Virtual 75631 remote_ip 5.5.5.221 75637 username mobina 75637 unique_id port 75637 terminate_cause User-Request 75637 bytes_out 349340 75637 bytes_in 2954632 75637 station_ip 5.53.37.54 75637 port 15728772 75637 nas_port_type Virtual 75637 remote_ip 5.5.5.219 75638 username alirezazamani 75638 unique_id port 75638 terminate_cause Lost-Carrier 75638 bytes_out 413929 75638 bytes_in 11163634 75638 station_ip 37.27.5.17 75638 port 15728771 75638 nas_port_type Virtual 75638 remote_ip 5.5.5.222 75642 username amin.insta22 75642 unique_id port 75642 terminate_cause Lost-Carrier 75642 bytes_out 19560777 75642 bytes_in 522951954 75642 station_ip 5.233.49.34 75642 port 15728761 75642 nas_port_type Virtual 75642 remote_ip 5.5.5.213 75646 username zoha 75646 unique_id port 75646 terminate_cause User-Request 75646 bytes_out 0 75646 bytes_in 0 75646 station_ip 5.120.66.170 75646 port 15728778 75646 nas_port_type Virtual 75646 remote_ip 5.5.5.209 75654 username alinezhad 75654 unique_id port 75654 terminate_cause User-Request 75654 bytes_out 46999 75654 bytes_in 1820818 75654 station_ip 5.202.4.248 75654 port 15728794 75654 nas_port_type Virtual 75654 remote_ip 5.5.5.248 75657 username ahmadipour 75657 unique_id port 75657 terminate_cause Lost-Carrier 75657 bytes_out 637134 75657 bytes_in 11609764 75657 station_ip 37.129.238.33 75657 port 15728783 75657 nas_port_type Virtual 75657 remote_ip 5.5.5.207 75662 username asadi 75662 unique_id port 75662 terminate_cause User-Request 75662 bytes_out 19750 75662 bytes_in 96599 75662 station_ip 113.203.92.113 75662 port 15728801 75662 nas_port_type Virtual 75662 remote_ip 5.5.5.203 75663 username mahbobeh 75663 unique_id port 75663 terminate_cause Lost-Carrier 75647 nas_port_type Virtual 75647 remote_ip 5.5.5.209 75649 username mahbobeh 75649 unique_id port 75649 terminate_cause Lost-Carrier 75649 bytes_out 205353 75649 bytes_in 2516919 75649 station_ip 83.123.111.67 75649 port 15728781 75649 nas_port_type Virtual 75649 remote_ip 5.5.5.217 75650 username mobina 75650 unique_id port 75650 terminate_cause User-Request 75650 bytes_out 0 75650 bytes_in 0 75650 station_ip 5.53.37.54 75650 port 15728785 75650 nas_port_type Virtual 75650 remote_ip 5.5.5.219 75653 username zoha 75653 unique_id port 75653 terminate_cause Lost-Carrier 75653 bytes_out 1356463 75653 bytes_in 15947533 75653 station_ip 5.120.66.170 75653 port 15728782 75653 nas_port_type Virtual 75653 remote_ip 5.5.5.209 75658 username mobina 75658 unique_id port 75658 terminate_cause User-Request 75658 bytes_out 1075736 75658 bytes_in 17813645 75658 station_ip 5.53.37.54 75658 port 15728797 75658 nas_port_type Virtual 75658 remote_ip 5.5.5.219 75659 username rashidi 75659 unique_id port 75659 terminate_cause User-Request 75659 bytes_out 5557051 75659 bytes_in 10236277 75659 station_ip 5.120.132.88 75659 port 15728789 75659 nas_port_type Virtual 75659 remote_ip 5.5.5.228 75660 username asadi 75660 unique_id port 75660 terminate_cause User-Request 75660 bytes_out 252991 75660 bytes_in 3010259 75660 station_ip 113.203.92.113 75660 port 15728798 75660 nas_port_type Virtual 75660 remote_ip 5.5.5.203 75664 username mahdi 75664 unique_id port 75664 terminate_cause Lost-Carrier 75664 bytes_out 3298094 75664 bytes_in 78968787 75664 station_ip 5.119.185.92 75664 port 15728799 75664 nas_port_type Virtual 75664 remote_ip 5.5.5.202 75669 username mahbobeh 75669 kill_reason Maximum check online fails reached 75669 unique_id port 75669 bytes_out 55214 75669 bytes_in 364223 75669 station_ip 83.123.62.95 75669 port 15728806 75669 nas_port_type Virtual 75669 remote_ip 5.5.5.206 75670 username aminvpn 75670 unique_id port 75670 terminate_cause Lost-Carrier 75670 bytes_out 2085427 75670 bytes_in 75703690 75670 station_ip 5.233.60.179 75670 port 15728793 75670 nas_port_type Virtual 75670 remote_ip 5.5.5.227 75676 username asadi 75676 unique_id port 75676 terminate_cause User-Request 75676 bytes_out 81203 75676 bytes_in 1272462 75676 station_ip 113.203.92.113 75676 port 15728817 75676 nas_port_type Virtual 75676 remote_ip 5.5.5.203 75679 username alinezhad 75679 unique_id port 75679 terminate_cause User-Request 75679 bytes_out 0 75679 bytes_in 0 75679 station_ip 83.123.116.130 75679 port 15728826 75679 nas_port_type Virtual 75679 remote_ip 5.5.5.193 75687 username ahmadi 75687 unique_id port 75687 terminate_cause User-Request 75687 bytes_out 64721 75687 bytes_in 761476 75687 station_ip 37.129.213.130 75687 port 15728839 75687 nas_port_type Virtual 75687 remote_ip 5.5.5.208 75689 username amin.insta22 75689 unique_id port 75689 terminate_cause User-Request 75689 bytes_out 15550338 75689 bytes_in 242397877 75689 station_ip 31.56.114.192 75689 port 15728792 75689 nas_port_type Virtual 75689 remote_ip 5.5.5.205 75693 username amin.insta22 75693 unique_id port 75693 terminate_cause User-Request 75693 bytes_out 28110818 75693 bytes_in 135023879 75693 station_ip 31.56.114.192 75693 port 15728802 75693 nas_port_type Virtual 75693 remote_ip 5.5.5.201 75699 username asadi 75699 unique_id port 75699 terminate_cause User-Request 75699 bytes_out 45592 75699 bytes_in 204047 75699 station_ip 113.203.92.113 75699 port 15728851 75699 nas_port_type Virtual 75699 remote_ip 5.5.5.203 75703 username zoha 75703 unique_id port 75703 terminate_cause User-Request 75703 bytes_out 1492570 75703 bytes_in 15830614 75703 station_ip 5.120.66.170 75655 bytes_in 2660692 75655 station_ip 37.129.213.130 75655 port 15728795 75655 nas_port_type Virtual 75655 remote_ip 5.5.5.208 75656 username alirezazamani 75656 unique_id port 75656 terminate_cause User-Request 75656 bytes_out 1732968 75656 bytes_in 31871042 75656 station_ip 37.27.60.142 75656 port 15728796 75656 nas_port_type Virtual 75656 remote_ip 5.5.5.204 75661 username asadi 75661 unique_id port 75661 terminate_cause User-Request 75661 bytes_out 33679 75661 bytes_in 301779 75661 station_ip 113.203.92.113 75661 port 15728800 75661 nas_port_type Virtual 75661 remote_ip 5.5.5.203 75666 username alinezhad 75666 unique_id port 75666 terminate_cause User-Request 75666 bytes_out 0 75666 bytes_in 0 75666 station_ip 83.123.193.222 75666 port 15728803 75666 nas_port_type Virtual 75666 remote_ip 5.5.5.200 75667 username alinezhad 75667 unique_id port 75667 terminate_cause User-Request 75667 bytes_out 0 75667 bytes_in 0 75667 station_ip 83.122.180.73 75667 port 15728805 75667 nas_port_type Virtual 75667 remote_ip 5.5.5.198 75668 username asadi 75668 unique_id port 75668 terminate_cause User-Request 75668 bytes_out 218760 75668 bytes_in 4738728 75668 station_ip 113.203.92.113 75668 port 15728807 75668 nas_port_type Virtual 75668 remote_ip 5.5.5.203 81183 bytes_out 4939237 81183 bytes_in 350923 81183 station_ip 113.203.88.97 81183 port 15728785 81183 nas_port_type Virtual 81183 remote_ip 5.5.5.234 81191 username aminvpn 81191 unique_id port 81191 terminate_cause User-Request 75673 username amin.insta19 75673 unique_id port 75673 terminate_cause Lost-Carrier 75673 bytes_out 804966 75673 bytes_in 959906 75673 station_ip 5.119.127.192 75673 port 15728808 75673 nas_port_type Virtual 75673 remote_ip 5.5.5.197 75675 username amin.insta21 75675 unique_id port 75675 terminate_cause Lost-Carrier 75675 bytes_out 9556841 75675 bytes_in 124918077 75675 station_ip 151.235.107.53 75675 port 15728784 75675 nas_port_type Virtual 75675 remote_ip 5.5.5.224 75678 username asadi 75678 unique_id port 75678 terminate_cause User-Request 75678 bytes_out 34400 75678 bytes_in 142390 75678 station_ip 113.203.92.113 75678 port 15728822 75678 nas_port_type Virtual 75678 remote_ip 5.5.5.203 75681 username mobina 75681 unique_id port 75681 terminate_cause User-Request 75681 bytes_out 1596888 75681 bytes_in 10326878 75681 station_ip 5.53.37.54 75681 port 15728829 75681 nas_port_type Virtual 75681 remote_ip 5.5.5.219 75686 username reza2742 75686 unique_id port 75686 terminate_cause Lost-Carrier 75686 bytes_out 470441 75686 bytes_in 1062243 75686 station_ip 151.235.78.190 75686 port 15728830 75686 nas_port_type Virtual 75686 remote_ip 5.5.5.214 75690 username asadi 75690 unique_id port 75690 terminate_cause User-Request 75690 bytes_out 62541 75690 bytes_in 1643247 75690 station_ip 113.203.92.113 75690 port 15728841 75690 nas_port_type Virtual 75690 remote_ip 5.5.5.203 75691 username alinezhad 75691 unique_id port 75691 terminate_cause User-Request 75691 bytes_out 0 75691 bytes_in 0 75691 station_ip 5.202.13.167 75691 port 15728843 75691 nas_port_type Virtual 75691 remote_ip 5.5.5.191 75696 username alirezazamani 75696 unique_id port 75696 terminate_cause User-Request 75696 bytes_out 2809295 75696 bytes_in 58308525 75696 station_ip 37.27.25.131 75696 port 15728847 75696 nas_port_type Virtual 75696 remote_ip 5.5.5.194 75698 username iranmanesh 75698 unique_id port 75698 terminate_cause Lost-Carrier 75698 bytes_out 64369 75698 bytes_in 528916 75698 station_ip 5.113.157.215 75698 port 15728845 75698 nas_port_type Virtual 75698 remote_ip 5.5.5.190 75701 username mohammadi 75701 unique_id port 75701 terminate_cause User-Request 75663 bytes_out 904345 75663 bytes_in 3464855 75663 station_ip 83.123.62.95 75663 port 15728790 75663 nas_port_type Virtual 75663 remote_ip 5.5.5.206 75665 username zoha 75665 unique_id port 75665 terminate_cause Lost-Carrier 75665 bytes_out 6458304 75665 bytes_in 75198722 75665 station_ip 5.120.66.170 75665 port 15728791 75665 nas_port_type Virtual 75665 remote_ip 5.5.5.209 75672 username mohammadi 75672 unique_id port 75672 terminate_cause User-Request 75672 bytes_out 157640 75672 bytes_in 100555 75672 station_ip 83.123.46.37 75672 port 15728809 75672 nas_port_type Virtual 75672 remote_ip 5.5.5.196 75741 username mahbobeh 75741 unique_id port 75741 terminate_cause Admin-Reboot 75741 bytes_out 1187425 75741 bytes_in 25396009 75741 station_ip 83.123.121.95 75741 port 15728890 75741 nas_port_type Virtual 75741 remote_ip 5.5.5.181 75677 username asadi 75677 unique_id port 75677 terminate_cause User-Request 75677 bytes_out 46135 75677 bytes_in 490775 75677 station_ip 113.203.92.113 75677 port 15728820 75677 nas_port_type Virtual 75677 remote_ip 5.5.5.203 75680 username alirezazamani 75680 unique_id port 75680 terminate_cause User-Request 75680 bytes_out 1755838 75680 bytes_in 28805020 75680 station_ip 37.27.25.131 75680 port 15728823 75680 nas_port_type Virtual 75680 remote_ip 5.5.5.194 75682 username mohammadi 75682 unique_id port 75682 terminate_cause User-Request 75682 bytes_out 0 75682 bytes_in 0 75682 station_ip 83.123.46.37 75682 port 15728831 75682 nas_port_type Virtual 75682 remote_ip 5.5.5.196 75683 username ahmadi 75683 unique_id port 75683 terminate_cause User-Request 75683 bytes_out 50288 75683 bytes_in 308972 75683 station_ip 37.129.213.130 75683 port 15728833 75683 nas_port_type Virtual 75683 remote_ip 5.5.5.208 75684 username asadi 75684 unique_id port 75684 terminate_cause User-Request 75684 bytes_out 260 75684 bytes_in 12158 75684 station_ip 113.203.92.113 75684 port 15728837 75684 nas_port_type Virtual 75684 remote_ip 5.5.5.203 75685 username asadi 75685 unique_id port 75685 terminate_cause User-Request 75685 bytes_out 46387 75685 bytes_in 368849 75685 station_ip 113.203.92.113 75685 port 15728838 75685 nas_port_type Virtual 75685 remote_ip 5.5.5.203 75688 username alirezazamani 75688 unique_id port 75688 terminate_cause Lost-Carrier 75688 bytes_out 408607 75688 bytes_in 1985567 75688 station_ip 5.119.136.207 75688 port 15728836 75688 nas_port_type Virtual 75688 remote_ip 5.5.5.192 75692 username asadi 75692 unique_id port 75692 terminate_cause User-Request 75692 bytes_out 9008 75692 bytes_in 31550 75692 station_ip 113.203.92.113 75692 port 15728842 75692 nas_port_type Virtual 75692 remote_ip 5.5.5.203 75694 username asadi 75694 unique_id port 75694 terminate_cause User-Request 75694 bytes_out 3447 75694 bytes_in 14898 75694 station_ip 113.203.92.113 75694 port 15728844 75694 nas_port_type Virtual 75694 remote_ip 5.5.5.203 75695 username mobina 75695 unique_id port 75695 terminate_cause User-Request 75695 bytes_out 0 75695 bytes_in 0 75695 station_ip 5.53.37.54 75695 port 15728846 75695 nas_port_type Virtual 75695 remote_ip 5.5.5.219 75697 username amin.insta21 75697 unique_id port 75697 terminate_cause User-Request 75697 bytes_out 883616 75697 bytes_in 3907644 75697 station_ip 151.235.107.53 75697 port 15728848 75697 nas_port_type Virtual 75697 remote_ip 5.5.5.224 75700 username ahmadi 75700 unique_id port 75700 terminate_cause User-Request 75700 bytes_out 29957 75700 bytes_in 383951 75700 station_ip 37.129.213.130 75700 port 15728849 75700 nas_port_type Virtual 75700 remote_ip 5.5.5.208 75704 username mohammadi 75704 unique_id port 75701 bytes_out 82418 75701 bytes_in 321464 75701 station_ip 83.122.108.104 75701 port 15728852 75701 nas_port_type Virtual 75701 remote_ip 5.5.5.189 75702 username alinezhad 75702 unique_id port 75702 terminate_cause User-Request 75702 bytes_out 24609 75702 bytes_in 104539 75702 station_ip 5.202.13.167 75702 port 15728853 75702 nas_port_type Virtual 75702 remote_ip 5.5.5.191 75706 username mohammadi 75706 unique_id port 75706 terminate_cause User-Request 75706 bytes_out 347400 75706 bytes_in 9546580 75706 station_ip 83.122.108.104 75706 port 15728858 75706 nas_port_type Virtual 75706 remote_ip 5.5.5.189 75708 username mohammadi 75708 unique_id port 75708 terminate_cause User-Request 75708 bytes_out 225023 75708 bytes_in 4334036 75708 station_ip 83.122.108.104 75708 port 15728860 75708 nas_port_type Virtual 75708 remote_ip 5.5.5.189 75710 username mohammadi 75710 unique_id port 75710 terminate_cause User-Request 75710 bytes_out 233193 75710 bytes_in 5160867 75710 station_ip 83.122.108.104 75710 port 15728861 75710 nas_port_type Virtual 75710 remote_ip 5.5.5.189 75713 username mohammadi 75713 unique_id port 75713 terminate_cause User-Request 75713 bytes_out 38956 75713 bytes_in 88254 75713 station_ip 83.122.108.104 75713 port 15728867 75713 nas_port_type Virtual 75713 remote_ip 5.5.5.189 75715 username mohammadi 75715 unique_id port 75715 terminate_cause User-Request 75715 bytes_out 36692 75715 bytes_in 151100 75715 station_ip 83.122.108.104 75715 port 15728869 75715 nas_port_type Virtual 75715 remote_ip 5.5.5.189 75723 username arabpour 75723 unique_id port 75723 terminate_cause User-Request 75723 bytes_out 325384 75723 bytes_in 5551084 75723 station_ip 83.122.240.16 75723 port 15728875 75723 nas_port_type Virtual 75723 remote_ip 5.5.5.187 75724 username reza 75724 unique_id port 75724 terminate_cause User-Request 75724 bytes_out 10923 75724 bytes_in 125288 75724 station_ip 37.129.230.43 75724 port 15728876 75724 nas_port_type Virtual 75724 remote_ip 5.5.5.186 75726 username aminvpn 75726 unique_id port 75726 terminate_cause Lost-Carrier 75726 bytes_out 50832249 75726 bytes_in 1621370734 75726 station_ip 5.233.60.179 75726 port 15728804 75726 nas_port_type Virtual 75726 remote_ip 5.5.5.199 75740 username alirezazamani 75740 unique_id port 75740 terminate_cause Lost-Carrier 75740 bytes_out 765452 75740 bytes_in 22108824 75740 station_ip 5.119.27.116 75740 port 15728889 75740 nas_port_type Virtual 75740 remote_ip 5.5.5.182 75742 username alinezhad 75742 unique_id port 75742 terminate_cause User-Request 75742 bytes_out 0 75742 bytes_in 0 75742 station_ip 37.129.250.107 75742 port 15728640 75742 nas_port_type Virtual 75742 remote_ip 5.5.5.255 75747 username kasra 75747 unique_id port 75747 terminate_cause User-Request 75747 bytes_out 75435 75747 bytes_in 572118 75747 station_ip 83.122.165.33 75747 port 15728647 75747 nas_port_type Virtual 75747 remote_ip 5.5.5.251 75753 username alinezhad 75753 unique_id port 75753 terminate_cause User-Request 75753 bytes_out 0 75753 bytes_in 0 75753 station_ip 5.202.59.112 75753 port 15728651 75753 nas_port_type Virtual 75753 remote_ip 5.5.5.249 75756 username asadi 75756 unique_id port 75756 terminate_cause User-Request 75756 bytes_out 29971 75756 bytes_in 96650 75756 station_ip 113.203.8.164 75756 port 15728654 75756 nas_port_type Virtual 75756 remote_ip 5.5.5.252 75758 username asadi 75758 unique_id port 75758 terminate_cause User-Request 75758 bytes_out 82755 75758 bytes_in 727506 75758 station_ip 113.203.8.164 75758 port 15728658 75758 nas_port_type Virtual 75758 remote_ip 5.5.5.252 75760 username asadi 75760 unique_id port 75703 port 15728850 75703 nas_port_type Virtual 75703 remote_ip 5.5.5.209 75705 username mohammadi 75705 unique_id port 75705 terminate_cause User-Request 75705 bytes_out 316220 75705 bytes_in 9456978 75705 station_ip 83.122.108.104 75705 port 15728857 75705 nas_port_type Virtual 75705 remote_ip 5.5.5.189 75707 username mohammadi 75707 unique_id port 75707 terminate_cause User-Request 75707 bytes_out 201178 75707 bytes_in 4367511 75707 station_ip 83.122.108.104 75707 port 15728859 75707 nas_port_type Virtual 75707 remote_ip 5.5.5.189 75709 username alinezhad 75709 unique_id port 75709 terminate_cause User-Request 75709 bytes_out 33892 75709 bytes_in 140026 75709 station_ip 5.202.13.167 75709 port 15728856 75709 nas_port_type Virtual 75709 remote_ip 5.5.5.191 75712 username alinezhad 75712 unique_id port 75712 terminate_cause User-Request 75712 bytes_out 0 75712 bytes_in 0 75712 station_ip 5.202.13.167 75712 port 15728866 75712 nas_port_type Virtual 75712 remote_ip 5.5.5.191 75714 username mohammadi 75714 unique_id port 75714 terminate_cause User-Request 75714 bytes_out 48939 75714 bytes_in 84813 75714 station_ip 83.122.108.104 75714 port 15728868 75714 nas_port_type Virtual 75714 remote_ip 5.5.5.189 75716 username alinezhad 75716 unique_id port 75716 terminate_cause User-Request 75716 bytes_out 0 75716 bytes_in 0 75716 station_ip 5.202.13.167 75716 port 15728870 75716 nas_port_type Virtual 75716 remote_ip 5.5.5.191 75718 username amin.insta22 75718 unique_id port 75718 terminate_cause Lost-Carrier 75718 bytes_out 1100910 75718 bytes_in 9422510 75718 station_ip 5.120.30.66 75718 port 15728862 75718 nas_port_type Virtual 75718 remote_ip 5.5.5.188 75719 username alinezhad 75719 unique_id port 75719 terminate_cause User-Request 75719 bytes_out 0 75719 bytes_in 0 75719 station_ip 5.202.13.167 75719 port 15728872 75719 nas_port_type Virtual 75719 remote_ip 5.5.5.191 75722 username mahbobeh 75722 unique_id port 75722 terminate_cause Lost-Carrier 75722 bytes_out 1707960 75722 bytes_in 25594585 75722 station_ip 83.123.62.95 75722 port 15728863 75722 nas_port_type Virtual 75722 remote_ip 5.5.5.206 75727 username amin.insta22 75727 unique_id port 75727 terminate_cause Lost-Carrier 75727 bytes_out 807268 75727 bytes_in 6364494 75727 station_ip 5.120.30.66 75727 port 15728871 75727 nas_port_type Virtual 75727 remote_ip 5.5.5.188 75731 username asadi 75731 unique_id port 75731 terminate_cause User-Request 75731 bytes_out 46725 75731 bytes_in 111679 75731 station_ip 113.203.92.113 75731 port 15728883 75731 nas_port_type Virtual 75731 remote_ip 5.5.5.203 75733 username alinezhad 75733 unique_id port 75733 terminate_cause User-Request 75733 bytes_out 0 75733 bytes_in 0 75733 station_ip 37.129.29.231 75733 port 15728884 75733 nas_port_type Virtual 75733 remote_ip 5.5.5.185 75735 username ahmadi 75735 unique_id port 75735 terminate_cause User-Request 75735 bytes_out 0 75735 bytes_in 0 75735 station_ip 37.129.222.254 75735 port 15728887 75735 nas_port_type Virtual 75735 remote_ip 5.5.5.183 81184 kill_reason Another user logged on this global unique id 81184 mac 81184 bytes_out 0 81184 bytes_in 0 81184 station_ip 5.119.30.76 81184 port 14 81184 unique_id port 81185 username aminvpn 81185 mac 75737 username rashidi 75737 unique_id port 75737 terminate_cause User-Request 75737 bytes_out 6204607 75737 bytes_in 22672484 75737 station_ip 5.120.132.88 75737 port 15728879 75737 nas_port_type Virtual 75737 remote_ip 5.5.5.228 75739 username reza 75739 unique_id port 75739 terminate_cause User-Request 75739 bytes_out 2120081 75739 bytes_in 34147018 81185 bytes_out 0 75704 terminate_cause User-Request 75704 bytes_out 518719 75704 bytes_in 13265587 75704 station_ip 83.122.108.104 75704 port 15728854 75704 nas_port_type Virtual 75704 remote_ip 5.5.5.189 75711 username alinezhad 75711 unique_id port 75711 terminate_cause User-Request 75711 bytes_out 0 75711 bytes_in 0 75711 station_ip 5.202.13.167 75711 port 15728864 75711 nas_port_type Virtual 75711 remote_ip 5.5.5.191 75717 username mobina 75717 unique_id port 75717 terminate_cause User-Request 75717 bytes_out 1950214 75717 bytes_in 20141536 75717 station_ip 5.53.37.54 75717 port 15728865 75717 nas_port_type Virtual 75717 remote_ip 5.5.5.219 75720 username zoha 75720 kill_reason Maximum check online fails reached 75720 unique_id port 75720 bytes_out 285359 75720 bytes_in 2648408 75720 station_ip 5.120.66.170 75720 port 15728873 75720 nas_port_type Virtual 75720 remote_ip 5.5.5.209 75721 username ahmadi 75721 unique_id port 75721 terminate_cause User-Request 75721 bytes_out 0 75721 bytes_in 0 75721 station_ip 37.129.213.130 75721 port 15728874 75721 nas_port_type Virtual 75721 remote_ip 5.5.5.208 75725 username asadi 75725 unique_id port 75725 terminate_cause User-Request 75725 bytes_out 165884 75725 bytes_in 1545410 75725 station_ip 113.203.92.113 75725 port 15728877 75725 nas_port_type Virtual 75725 remote_ip 5.5.5.203 75728 username reza 75728 unique_id port 75728 terminate_cause User-Request 75728 bytes_out 94138 75728 bytes_in 1198679 75728 station_ip 37.129.230.43 75728 port 15728878 75728 nas_port_type Virtual 75728 remote_ip 5.5.5.186 75729 username ahmadi 75729 unique_id port 75729 terminate_cause User-Request 75729 bytes_out 60098 75729 bytes_in 1057090 75729 station_ip 37.129.213.130 75729 port 15728880 75729 nas_port_type Virtual 75729 remote_ip 5.5.5.208 75730 username asadi 75730 unique_id port 75730 terminate_cause User-Request 75730 bytes_out 188170 75730 bytes_in 3000241 75730 station_ip 113.203.92.113 75730 port 15728882 75730 nas_port_type Virtual 75730 remote_ip 5.5.5.203 81185 bytes_in 0 81185 station_ip 5.119.30.76 81185 port 14 81185 unique_id port 81187 username aminvpn 81187 unique_id port 81187 terminate_cause Lost-Carrier 81187 bytes_out 664317 81187 bytes_in 2291567 75734 username reza2742 75734 unique_id port 75734 terminate_cause Lost-Carrier 75734 bytes_out 2271674 75734 bytes_in 4162290 75734 station_ip 151.235.78.190 75734 port 15728881 75734 nas_port_type Virtual 75734 remote_ip 5.5.5.214 81187 station_ip 5.120.55.239 81187 port 15728763 81187 nas_port_type Virtual 81187 remote_ip 5.5.5.192 81189 username aminvpn 81189 mac 81189 bytes_out 0 81189 bytes_in 0 81189 station_ip 5.119.30.76 75743 username amin.insta22 75743 unique_id port 75743 terminate_cause Lost-Carrier 75743 bytes_out 62556 75743 bytes_in 497353 75743 station_ip 31.56.114.192 75743 port 15728642 75743 nas_port_type Virtual 75743 remote_ip 5.5.5.253 75744 username amin.insta22 75744 unique_id port 75744 terminate_cause User-Request 75744 bytes_out 1636053 75744 bytes_in 14079667 75744 station_ip 31.56.114.192 75744 port 15728643 75744 nas_port_type Virtual 75744 remote_ip 5.5.5.253 75745 username amin.insta22 75745 unique_id port 75745 terminate_cause User-Request 75745 bytes_out 0 75745 bytes_in 0 75745 station_ip 31.56.114.192 75745 port 15728644 75745 nas_port_type Virtual 75745 remote_ip 5.5.5.253 75746 username asadi 75746 unique_id port 75746 terminate_cause User-Request 75746 bytes_out 192728 75746 bytes_in 2351685 75746 station_ip 113.203.8.164 75746 port 15728646 75746 nas_port_type Virtual 75746 remote_ip 5.5.5.252 81189 port 14 81189 unique_id port 75739 station_ip 37.129.230.43 75739 port 15728885 75739 nas_port_type Virtual 75739 remote_ip 5.5.5.186 75748 username amin.insta22 75748 unique_id port 75748 terminate_cause User-Request 75748 bytes_out 1128385 75748 bytes_in 8367192 75748 station_ip 31.56.114.192 75748 port 15728645 75748 nas_port_type Virtual 75748 remote_ip 5.5.5.253 75750 username hamideh 75750 unique_id port 75750 terminate_cause User-Request 75750 bytes_out 197492 75750 bytes_in 2655584 75750 station_ip 5.120.150.160 75750 port 15728648 75750 nas_port_type Virtual 75750 remote_ip 5.5.5.250 75752 username asadi 75752 unique_id port 75752 terminate_cause User-Request 75752 bytes_out 150240 75752 bytes_in 4360034 75752 station_ip 113.203.8.164 75752 port 15728650 75752 nas_port_type Virtual 75752 remote_ip 5.5.5.252 75754 username asadi 75754 unique_id port 75754 terminate_cause User-Request 75754 bytes_out 39161 75754 bytes_in 581024 75754 station_ip 113.203.8.164 75754 port 15728652 75754 nas_port_type Virtual 75754 remote_ip 5.5.5.252 75755 username asadi 75755 unique_id port 75755 terminate_cause User-Request 75755 bytes_out 14413 75755 bytes_in 48037 75755 station_ip 113.203.8.164 75755 port 15728653 75755 nas_port_type Virtual 75755 remote_ip 5.5.5.252 75757 username ahmadi 75757 unique_id port 75757 terminate_cause User-Request 75757 bytes_out 0 75757 bytes_in 0 75757 station_ip 37.129.184.126 75757 port 15728656 75757 nas_port_type Virtual 75757 remote_ip 5.5.5.247 81186 terminate_cause Lost-Carrier 81186 bytes_out 1540152 81186 bytes_in 29298332 81186 station_ip 5.119.115.21 81186 port 15728784 81186 nas_port_type Virtual 81186 remote_ip 5.5.5.182 81188 username arman 81188 unique_id port 81188 terminate_cause Lost-Carrier 81188 bytes_out 21392 81188 bytes_in 156538 81188 station_ip 5.120.96.69 81188 port 15728787 81188 nas_port_type Virtual 81188 remote_ip 5.5.5.180 81190 username heydari 81190 unique_id port 75772 username hamideh 75772 unique_id port 75772 terminate_cause Lost-Carrier 75772 bytes_out 320908 75772 bytes_in 4225294 75772 station_ip 5.120.150.160 75772 port 15728670 75772 nas_port_type Virtual 75772 remote_ip 5.5.5.241 75773 username mobina 75773 unique_id port 75773 terminate_cause User-Request 75773 bytes_out 0 75773 bytes_in 0 75773 station_ip 5.124.66.30 75773 port 15728672 75773 nas_port_type Virtual 75773 remote_ip 5.5.5.246 75775 username asadi 75775 unique_id port 75775 terminate_cause User-Request 75775 bytes_out 230257 75775 bytes_in 5078468 75775 station_ip 83.123.98.153 75775 port 15728675 75775 nas_port_type Virtual 75775 remote_ip 5.5.5.240 75776 username mobina 75776 unique_id port 75776 terminate_cause User-Request 75776 bytes_out 348689 75776 bytes_in 10533433 75776 station_ip 5.124.66.30 75776 port 15728673 75776 nas_port_type Virtual 75776 remote_ip 5.5.5.246 75777 username zoha 75777 unique_id port 75777 terminate_cause User-Request 75777 bytes_out 412987 75777 bytes_in 2633787 75777 station_ip 5.120.66.170 75777 port 15728676 75777 nas_port_type Virtual 75777 remote_ip 5.5.5.242 75784 username asadi 75784 unique_id port 75784 terminate_cause User-Request 75784 bytes_out 64765 75784 bytes_in 522835 75784 station_ip 83.123.98.153 75784 port 15728684 75784 nas_port_type Virtual 75784 remote_ip 5.5.5.240 75785 username asadi 75785 unique_id port 75785 terminate_cause User-Request 75785 bytes_out 31419 75785 bytes_in 131747 75785 station_ip 83.123.98.153 75785 port 15728685 75785 nas_port_type Virtual 75785 remote_ip 5.5.5.240 75790 username ahmadi 75790 unique_id port 75790 terminate_cause User-Request 75790 bytes_out 605995 75749 username mahbobeh 75749 unique_id port 75749 terminate_cause Lost-Carrier 75749 bytes_out 768759 75749 bytes_in 13308040 75749 station_ip 83.123.121.95 75749 port 15728641 75749 nas_port_type Virtual 75749 remote_ip 5.5.5.254 75751 username asadi 75751 unique_id port 75751 terminate_cause User-Request 75751 bytes_out 16370 75751 bytes_in 39666 75751 station_ip 113.203.8.164 75751 port 15728649 75751 nas_port_type Virtual 75751 remote_ip 5.5.5.252 75761 username iranmanesh 75761 unique_id port 75761 terminate_cause User-Request 75761 bytes_out 652557 75761 bytes_in 15105611 75761 station_ip 5.114.141.25 75761 port 15728661 75761 nas_port_type Virtual 75761 remote_ip 5.5.5.244 75762 username asadi 75762 unique_id port 75762 terminate_cause User-Request 75762 bytes_out 86587 75762 bytes_in 706469 75762 station_ip 113.203.8.164 75762 port 15728662 75762 nas_port_type Virtual 75762 remote_ip 5.5.5.252 75763 username asadi 75763 unique_id port 75763 terminate_cause User-Request 75763 bytes_out 63082 75763 bytes_in 553691 75763 station_ip 113.203.8.164 75763 port 15728663 75763 nas_port_type Virtual 75763 remote_ip 5.5.5.252 75764 username mobina 75764 unique_id port 75764 terminate_cause User-Request 75764 bytes_out 681036 75764 bytes_in 9703737 75764 station_ip 5.124.66.30 75764 port 15728657 75764 nas_port_type Virtual 75764 remote_ip 5.5.5.246 75765 username asadi 75765 unique_id port 75765 terminate_cause User-Request 75765 bytes_out 110698 75765 bytes_in 3542574 75765 station_ip 113.203.8.164 75765 port 15728664 75765 nas_port_type Virtual 75765 remote_ip 5.5.5.252 75766 username asadi 75766 unique_id port 75766 terminate_cause User-Request 75766 bytes_out 180061 75766 bytes_in 4581972 75766 station_ip 113.203.8.164 75766 port 15728666 75766 nas_port_type Virtual 75766 remote_ip 5.5.5.252 75771 username asadi 75771 unique_id port 75771 terminate_cause User-Request 75771 bytes_out 116130 75771 bytes_in 838111 75771 station_ip 83.123.98.153 75771 port 15728671 75771 nas_port_type Virtual 75771 remote_ip 5.5.5.240 75774 username zoha 75774 unique_id port 75774 terminate_cause Lost-Carrier 75774 bytes_out 1895122 75774 bytes_in 13459782 75774 station_ip 5.120.66.170 75774 port 15728669 75774 nas_port_type Virtual 75774 remote_ip 5.5.5.242 75778 username asadi 75778 unique_id port 75778 terminate_cause User-Request 75778 bytes_out 93658 75778 bytes_in 1342901 75778 station_ip 83.123.98.153 75778 port 15728679 75778 nas_port_type Virtual 75778 remote_ip 5.5.5.240 75780 username hamideh 75780 unique_id port 75780 terminate_cause Lost-Carrier 75780 bytes_out 31208 75780 bytes_in 192113 75780 station_ip 5.120.150.160 75780 port 15728680 75780 nas_port_type Virtual 75780 remote_ip 5.5.5.241 75781 username ahmadi 75781 unique_id port 75781 terminate_cause Lost-Carrier 75781 bytes_out 146721 75781 bytes_in 1159558 75781 station_ip 37.129.168.22 75781 port 15728674 75781 nas_port_type Virtual 75781 remote_ip 5.5.5.239 75782 username amin.insta21 75782 unique_id port 75782 terminate_cause Lost-Carrier 75782 bytes_out 2443136 75782 bytes_in 15516345 75782 station_ip 151.235.85.123 75782 port 15728678 75782 nas_port_type Virtual 75782 remote_ip 5.5.5.237 75786 username alinezhad 75786 unique_id port 75786 terminate_cause User-Request 75786 bytes_out 0 75786 bytes_in 0 75786 station_ip 5.202.58.147 75786 port 15728686 75786 nas_port_type Virtual 75786 remote_ip 5.5.5.235 75789 username asadi 75789 unique_id port 75789 terminate_cause User-Request 75789 bytes_out 79053 75789 bytes_in 1338356 75789 station_ip 83.123.98.153 75789 port 15728694 75789 nas_port_type Virtual 75760 terminate_cause User-Request 75760 bytes_out 72936 75760 bytes_in 1751740 75760 station_ip 113.203.8.164 75760 port 15728660 75760 nas_port_type Virtual 75760 remote_ip 5.5.5.252 81189 remote_ip 10.8.0.6 81193 username reza 81193 unique_id port 81193 terminate_cause User-Request 81193 bytes_out 25670 81193 bytes_in 310277 81193 station_ip 113.203.56.55 81193 port 15728793 81193 nas_port_type Virtual 75769 username ahmadipour 75769 unique_id port 75769 terminate_cause Lost-Carrier 75769 bytes_out 5103108 75769 bytes_in 113619441 75769 station_ip 37.129.233.89 75769 port 15728659 75769 nas_port_type Virtual 75769 remote_ip 5.5.5.245 75770 username hamideh 75770 unique_id port 75770 terminate_cause Lost-Carrier 75770 bytes_out 3242531 75770 bytes_in 69011618 75770 station_ip 5.120.150.160 75770 port 15728665 75770 nas_port_type Virtual 75770 remote_ip 5.5.5.250 75779 username alirezazamani 75779 unique_id port 75779 terminate_cause User-Request 75779 bytes_out 606731 75779 bytes_in 13573256 75779 station_ip 37.27.29.187 75779 port 15728677 75779 nas_port_type Virtual 75779 remote_ip 5.5.5.238 75783 username ahmadipour 75783 unique_id port 75783 terminate_cause Lost-Carrier 75783 bytes_out 752134 75783 bytes_in 16069867 75783 station_ip 37.129.211.157 75783 port 15728683 75783 nas_port_type Virtual 75783 remote_ip 5.5.5.236 75787 username ahmad 75787 kill_reason Maximum check online fails reached 75787 unique_id port 75787 bytes_out 681962 75787 bytes_in 9186012 75787 station_ip 5.119.107.239 75787 port 15728691 75787 nas_port_type Virtual 75787 remote_ip 5.5.5.231 75788 username asadi 75788 unique_id port 75788 terminate_cause User-Request 75788 bytes_out 32233 75788 bytes_in 205873 75788 station_ip 83.123.98.153 75788 port 15728693 75788 nas_port_type Virtual 75788 remote_ip 5.5.5.240 75792 username alirezazamani 75792 unique_id port 75792 terminate_cause Lost-Carrier 75792 bytes_out 2445952 75792 bytes_in 33477110 75792 station_ip 37.27.34.191 75792 port 15728688 75792 nas_port_type Virtual 75792 remote_ip 5.5.5.233 75793 username aminvpn 75793 unique_id port 75793 terminate_cause Lost-Carrier 75793 bytes_out 201175 75793 bytes_in 875263 75793 station_ip 2.183.243.172 75793 port 15728687 75793 nas_port_type Virtual 75793 remote_ip 5.5.5.234 75794 username alinezhad 75794 unique_id port 75794 terminate_cause User-Request 75794 bytes_out 0 75794 bytes_in 0 75794 station_ip 5.202.58.147 75794 port 15728696 75794 nas_port_type Virtual 75794 remote_ip 5.5.5.235 81193 remote_ip 5.5.5.206 81197 username sobhan 81197 unique_id port 81197 terminate_cause User-Request 81197 bytes_out 0 81197 bytes_in 0 81197 station_ip 5.119.177.30 81197 port 15728795 81197 nas_port_type Virtual 75798 username ahmadi 75798 unique_id port 75798 terminate_cause User-Request 75798 bytes_out 23581 75798 bytes_in 129395 75798 station_ip 37.129.168.22 75798 port 15728702 75798 nas_port_type Virtual 75798 remote_ip 5.5.5.239 75800 username alirezazamani 75800 unique_id port 75800 terminate_cause Lost-Carrier 75800 bytes_out 46541 75800 bytes_in 543456 75800 station_ip 94.241.178.166 75800 port 15728704 75800 nas_port_type Virtual 75800 remote_ip 5.5.5.227 75802 username ahmadi 75802 unique_id port 75802 terminate_cause User-Request 75802 bytes_out 0 75802 bytes_in 0 75802 station_ip 37.129.248.118 75802 port 15728708 75802 nas_port_type Virtual 75802 remote_ip 5.5.5.225 75805 username ahmadi 75805 unique_id port 75805 terminate_cause User-Request 75805 bytes_out 0 75805 bytes_in 0 75805 station_ip 37.129.248.118 75805 port 15728710 75805 nas_port_type Virtual 75805 remote_ip 5.5.5.225 81197 remote_ip 5.5.5.177 75789 remote_ip 5.5.5.240 75796 username asadi 75796 unique_id port 75796 terminate_cause User-Request 75796 bytes_out 202141 75796 bytes_in 5218509 75796 station_ip 83.123.98.153 75796 port 15728701 75796 nas_port_type Virtual 75796 remote_ip 5.5.5.240 75801 username amin.insta21 75801 unique_id port 75801 terminate_cause User-Request 75801 bytes_out 1436628 75801 bytes_in 14162227 75801 station_ip 151.235.85.123 75801 port 15728689 75801 nas_port_type Virtual 75801 remote_ip 5.5.5.237 75803 username alirezazamani 75803 unique_id port 75803 terminate_cause User-Request 75803 bytes_out 1207983 75803 bytes_in 23573118 75803 station_ip 37.27.19.133 75803 port 15728706 75803 nas_port_type Virtual 75803 remote_ip 5.5.5.226 75804 username mahbobeh 75804 kill_reason Maximum check online fails reached 75804 unique_id port 75804 bytes_out 214657 75804 bytes_in 1891492 75804 station_ip 83.123.24.67 75804 port 15728703 75804 nas_port_type Virtual 75804 remote_ip 5.5.5.228 75808 username hamideh 75808 unique_id port 75808 terminate_cause User-Request 75808 bytes_out 144769 75808 bytes_in 631887 75808 station_ip 5.120.150.160 75808 port 15728709 75808 nas_port_type Virtual 75808 remote_ip 5.5.5.241 75809 username hamideh 75809 kill_reason Maximum check online fails reached 75809 unique_id port 75809 bytes_out 0 75809 bytes_in 0 75809 station_ip 5.120.150.160 75809 port 15728712 75809 nas_port_type Virtual 75809 remote_ip 5.5.5.241 75819 username asadi 75819 unique_id port 75819 terminate_cause User-Request 75819 bytes_out 55494 75819 bytes_in 265208 75819 station_ip 83.123.98.153 75819 port 15728730 75819 nas_port_type Virtual 75819 remote_ip 5.5.5.240 75821 username asadi 75821 unique_id port 75821 terminate_cause User-Request 75821 bytes_out 121679 75821 bytes_in 1484021 75821 station_ip 83.123.98.153 75821 port 15728731 75821 nas_port_type Virtual 75821 remote_ip 5.5.5.240 75822 username asadi 75822 unique_id port 75822 terminate_cause User-Request 75822 bytes_out 38169 75822 bytes_in 181571 75822 station_ip 83.123.98.153 75822 port 15728734 75822 nas_port_type Virtual 75822 remote_ip 5.5.5.240 75829 username zoha 75829 unique_id port 75829 terminate_cause Lost-Carrier 75829 bytes_out 1376682 75829 bytes_in 11729855 75829 station_ip 5.120.66.170 75829 port 15728727 75829 nas_port_type Virtual 75829 remote_ip 5.5.5.242 75831 username alinezhad 75831 unique_id port 75831 terminate_cause User-Request 75831 bytes_out 0 75831 bytes_in 0 75831 station_ip 5.202.58.147 75831 port 15728741 75831 nas_port_type Virtual 75831 remote_ip 5.5.5.235 75841 username alinezhad 75841 unique_id port 75841 terminate_cause User-Request 75841 bytes_out 0 75841 bytes_in 0 75841 station_ip 5.202.58.147 75841 port 15728749 75841 nas_port_type Virtual 75841 remote_ip 5.5.5.235 75842 username hamideh 75842 unique_id port 75842 terminate_cause Lost-Carrier 75842 bytes_out 80780 75842 bytes_in 177987 75842 station_ip 5.120.150.160 75842 port 15728748 75842 nas_port_type Virtual 75842 remote_ip 5.5.5.216 75843 username mobina 75843 unique_id port 75843 terminate_cause Lost-Carrier 75843 bytes_out 78370 75843 bytes_in 356465 75843 station_ip 5.124.88.12 75843 port 15728750 75843 nas_port_type Virtual 75843 remote_ip 5.5.5.214 75851 username aminvpn 75851 unique_id port 75851 terminate_cause User-Request 75851 bytes_out 163959 75851 bytes_in 797990 75851 station_ip 2.183.243.172 75851 port 15728760 75851 nas_port_type Virtual 75851 remote_ip 5.5.5.234 75853 username asadi 75853 unique_id port 75853 terminate_cause User-Request 75853 bytes_out 38367 75853 bytes_in 185803 75853 station_ip 83.123.98.153 75853 port 15728762 75790 bytes_in 12353692 75790 station_ip 37.129.168.22 75790 port 15728692 75790 nas_port_type Virtual 75790 remote_ip 5.5.5.239 75791 username hamideh 75791 unique_id port 75791 terminate_cause User-Request 75791 bytes_out 168915 75791 bytes_in 466679 75791 station_ip 5.120.150.160 75791 port 15728695 75791 nas_port_type Virtual 75791 remote_ip 5.5.5.241 75795 username pouria 75795 unique_id port 75795 terminate_cause Lost-Carrier 75795 bytes_out 1752872 75795 bytes_in 27035326 75795 station_ip 46.225.208.29 75795 port 15728699 75795 nas_port_type Virtual 75795 remote_ip 5.5.5.230 75799 username pouria 75799 unique_id port 75799 terminate_cause Lost-Carrier 75799 bytes_out 6899562 75799 bytes_in 163695059 75799 station_ip 151.235.84.9 75799 port 15728700 75799 nas_port_type Virtual 75799 remote_ip 5.5.5.229 75806 username zoha 75806 unique_id port 75806 terminate_cause Lost-Carrier 75806 bytes_out 142993 75806 bytes_in 602747 75806 station_ip 5.120.66.170 75806 port 15728707 75806 nas_port_type Virtual 75806 remote_ip 5.5.5.242 75810 username hamideh 75810 unique_id port 75810 terminate_cause Lost-Carrier 75810 bytes_out 43408 75810 bytes_in 482681 75810 station_ip 5.120.150.160 75810 port 15728714 75810 nas_port_type Virtual 75810 remote_ip 5.5.5.241 75813 username asadi 75813 unique_id port 75813 terminate_cause User-Request 75813 bytes_out 349904 75813 bytes_in 10805401 75813 station_ip 83.123.98.153 75813 port 15728720 75813 nas_port_type Virtual 75813 remote_ip 5.5.5.240 75814 username arabpour 75814 unique_id port 75814 terminate_cause User-Request 75814 bytes_out 538924 75814 bytes_in 13823211 75814 station_ip 83.123.33.84 75814 port 15728721 75814 nas_port_type Virtual 75814 remote_ip 5.5.5.223 75815 username alirezazamani 75815 unique_id port 75815 terminate_cause Lost-Carrier 75815 bytes_out 336170 75815 bytes_in 648601 75815 station_ip 5.119.36.82 75815 port 15728718 75815 nas_port_type Virtual 75815 remote_ip 5.5.5.224 75816 username asadi 75816 unique_id port 75816 terminate_cause User-Request 75816 bytes_out 820 75816 bytes_in 7470 75816 station_ip 83.123.98.153 75816 port 15728726 75816 nas_port_type Virtual 75816 remote_ip 5.5.5.240 75817 username ksr 75817 unique_id port 75817 terminate_cause User-Request 75817 bytes_out 183332 75817 bytes_in 4794996 75817 station_ip 78.39.25.199 75817 port 15728728 75817 nas_port_type Virtual 75817 remote_ip 5.5.5.221 75818 username alinezhad 75818 unique_id port 75818 terminate_cause User-Request 75818 bytes_out 263403 75818 bytes_in 2586808 75818 station_ip 5.202.58.147 75818 port 15728716 75818 nas_port_type Virtual 75818 remote_ip 5.5.5.235 75820 username mahbobeh 75820 unique_id port 75820 terminate_cause Lost-Carrier 75820 bytes_out 623337 75820 bytes_in 6695336 75820 station_ip 83.123.13.219 75820 port 15728725 75820 nas_port_type Virtual 75820 remote_ip 5.5.5.222 75823 username ahmadi 75823 unique_id port 75823 terminate_cause User-Request 75823 bytes_out 66941 75823 bytes_in 769527 75823 station_ip 37.129.194.30 75823 port 15728733 75823 nas_port_type Virtual 75823 remote_ip 5.5.5.219 75826 username asadi 75826 unique_id port 75826 terminate_cause User-Request 75826 bytes_out 35004 75826 bytes_in 180355 75826 station_ip 83.123.98.153 75826 port 15728737 75826 nas_port_type Virtual 75826 remote_ip 5.5.5.240 75827 username ahmadipour 75827 unique_id port 75827 terminate_cause Lost-Carrier 75827 bytes_out 3561898 75827 bytes_in 70135458 75827 station_ip 37.129.131.245 75827 port 15728736 75827 nas_port_type Virtual 75827 remote_ip 5.5.5.218 75830 username asadi 75830 unique_id port 75807 username alinezhad 75807 unique_id port 75807 terminate_cause User-Request 75807 bytes_out 0 75807 bytes_in 0 75807 station_ip 5.202.58.147 75807 port 15728711 75807 nas_port_type Virtual 75807 remote_ip 5.5.5.235 75811 username asadi 75811 unique_id port 75811 terminate_cause User-Request 75811 bytes_out 126032 75811 bytes_in 1368836 75811 station_ip 83.123.98.153 75811 port 15728719 75811 nas_port_type Virtual 75811 remote_ip 5.5.5.240 75812 username zoha 75812 unique_id port 75812 terminate_cause Lost-Carrier 75812 bytes_out 840035 75812 bytes_in 6863142 75812 station_ip 5.120.66.170 75812 port 15728715 75812 nas_port_type Virtual 75812 remote_ip 5.5.5.242 75824 username reza 75824 unique_id port 75824 terminate_cause User-Request 75824 bytes_out 73512 75824 bytes_in 1584146 75824 station_ip 37.129.55.140 75824 port 15728729 75824 nas_port_type Virtual 75824 remote_ip 5.5.5.220 75825 username asadi 75825 unique_id port 75825 terminate_cause User-Request 75825 bytes_out 23599 75825 bytes_in 81308 75825 station_ip 83.123.98.153 75825 port 15728735 75825 nas_port_type Virtual 75825 remote_ip 5.5.5.240 75828 username asadi 75828 unique_id port 75828 terminate_cause User-Request 75828 bytes_out 39513 75828 bytes_in 122712 75828 station_ip 83.123.98.153 75828 port 15728738 75828 nas_port_type Virtual 75828 remote_ip 5.5.5.240 75832 username zoha 75832 unique_id port 75832 terminate_cause User-Request 75832 bytes_out 460668 75832 bytes_in 3382630 75832 station_ip 5.120.66.170 75832 port 15728740 75832 nas_port_type Virtual 75832 remote_ip 5.5.5.242 75834 username arabpour 75834 unique_id port 75834 terminate_cause User-Request 75834 bytes_out 478180 75834 bytes_in 12364577 75834 station_ip 83.123.225.197 75834 port 15728742 75834 nas_port_type Virtual 75834 remote_ip 5.5.5.217 75838 username hamideh 75838 unique_id port 75838 terminate_cause User-Request 75838 bytes_out 107486 75838 bytes_in 1308815 75838 station_ip 5.120.150.160 75838 port 15728745 75838 nas_port_type Virtual 75838 remote_ip 5.5.5.241 75840 username mobina 75840 unique_id port 75840 terminate_cause Lost-Carrier 75840 bytes_out 927231 75840 bytes_in 633732 75840 station_ip 5.124.32.55 75840 port 15728747 75840 nas_port_type Virtual 75840 remote_ip 5.5.5.215 75845 username aminvpn 75845 unique_id port 75845 terminate_cause Lost-Carrier 75845 bytes_out 149340 75845 bytes_in 895376 75845 station_ip 2.183.243.172 75845 port 15728751 75845 nas_port_type Virtual 75845 remote_ip 5.5.5.234 75854 username hamideh 75854 unique_id port 75854 terminate_cause Lost-Carrier 75854 bytes_out 16967 75854 bytes_in 155459 75854 station_ip 5.120.150.160 75854 port 15728763 75854 nas_port_type Virtual 75854 remote_ip 5.5.5.213 75856 username asadi 75856 unique_id port 75856 terminate_cause User-Request 75856 bytes_out 434879 75856 bytes_in 7449389 75856 station_ip 37.129.84.155 75856 port 15728766 75856 nas_port_type Virtual 75856 remote_ip 5.5.5.208 75857 username reza2742 75857 unique_id port 75857 terminate_cause Lost-Carrier 75857 bytes_out 1506547 75857 bytes_in 3211790 75857 station_ip 151.235.116.156 75857 port 15728764 75857 nas_port_type Virtual 75857 remote_ip 5.5.5.210 75862 username alinezhad 75862 unique_id port 75862 terminate_cause User-Request 75862 bytes_out 0 75862 bytes_in 0 75862 station_ip 5.202.97.116 75862 port 15728775 75862 nas_port_type Virtual 75862 remote_ip 5.5.5.204 75864 username hamideh 75864 unique_id port 75864 terminate_cause User-Request 75864 bytes_out 203394 75864 bytes_in 383716 75864 station_ip 5.120.150.160 75864 port 15728777 75864 nas_port_type Virtual 75830 terminate_cause User-Request 75830 bytes_out 45261 75830 bytes_in 416060 75830 station_ip 83.123.98.153 75830 port 15728739 75830 nas_port_type Virtual 75830 remote_ip 5.5.5.240 75833 username mahbobeh 75833 unique_id port 75833 terminate_cause Lost-Carrier 75833 bytes_out 103362 75833 bytes_in 1142710 75833 station_ip 83.123.13.219 75833 port 15728732 75833 nas_port_type Virtual 75833 remote_ip 5.5.5.222 75835 username asadi 75835 unique_id port 75835 terminate_cause User-Request 75835 bytes_out 199908 75835 bytes_in 3746985 75835 station_ip 83.123.98.153 75835 port 15728743 75835 nas_port_type Virtual 75835 remote_ip 5.5.5.240 75836 username asadi 75836 unique_id port 75836 terminate_cause User-Request 75836 bytes_out 107287 75836 bytes_in 1249336 75836 station_ip 83.123.98.153 75836 port 15728744 75836 nas_port_type Virtual 75836 remote_ip 5.5.5.240 81190 terminate_cause Lost-Carrier 81190 bytes_out 114065686 81190 bytes_in 23537989 81190 station_ip 5.119.186.227 81190 port 15728678 81190 nas_port_type Virtual 81190 remote_ip 5.5.5.227 81194 username aminvpn 81194 mac 75839 username hamideh 75839 unique_id port 75839 terminate_cause Lost-Carrier 75839 bytes_out 20376 75839 bytes_in 148667 75839 station_ip 5.120.150.160 75839 port 15728746 75839 nas_port_type Virtual 75839 remote_ip 5.5.5.216 75844 username ahmadi 75844 unique_id port 75844 terminate_cause User-Request 75844 bytes_out 0 75844 bytes_in 0 75844 station_ip 83.122.163.14 75844 port 15728756 75844 nas_port_type Virtual 75844 remote_ip 5.5.5.212 75846 username hamideh 75846 unique_id port 75846 terminate_cause Lost-Carrier 75846 bytes_out 23876 75846 bytes_in 170917 75846 station_ip 5.120.150.160 75846 port 15728752 75846 nas_port_type Virtual 75846 remote_ip 5.5.5.213 75847 username mobina 75847 unique_id port 75847 terminate_cause Lost-Carrier 75847 bytes_out 351359 75847 bytes_in 3410217 75847 station_ip 5.123.206.202 75847 port 15728757 75847 nas_port_type Virtual 75847 remote_ip 5.5.5.211 75848 username iranmanesh 75848 unique_id port 75848 terminate_cause Lost-Carrier 75848 bytes_out 9883087 75848 bytes_in 257678607 75848 station_ip 5.114.141.25 75848 port 15728717 75848 nas_port_type Virtual 75848 remote_ip 5.5.5.244 75849 username aminvpn 75849 unique_id port 75849 terminate_cause User-Request 75849 bytes_out 0 75849 bytes_in 0 75849 station_ip 2.183.243.172 75849 port 15728759 75849 nas_port_type Virtual 75849 remote_ip 5.5.5.234 75850 username asadi 75850 unique_id port 75850 terminate_cause User-Request 75850 bytes_out 87590 75850 bytes_in 1661850 75850 station_ip 83.123.98.153 75850 port 15728761 75850 nas_port_type Virtual 75850 remote_ip 5.5.5.240 75852 username mahbobeh 75852 unique_id port 75852 terminate_cause Lost-Carrier 75852 bytes_out 43206 75852 bytes_in 546037 75852 station_ip 83.123.13.219 75852 port 15728758 75852 nas_port_type Virtual 75852 remote_ip 5.5.5.222 75860 username aminvpn 75860 unique_id port 75860 terminate_cause User-Request 75860 bytes_out 162248 75860 bytes_in 920386 75860 station_ip 2.183.243.172 75860 port 15728773 75860 nas_port_type Virtual 75860 remote_ip 5.5.5.234 75869 username hamideh 75869 unique_id port 75869 terminate_cause Lost-Carrier 75869 bytes_out 38008 75869 bytes_in 274857 75869 station_ip 5.120.150.160 75869 port 15728780 75869 nas_port_type Virtual 75869 remote_ip 5.5.5.202 75870 username hamideh 75870 unique_id port 75870 terminate_cause Lost-Carrier 75870 bytes_out 19166 75870 bytes_in 157987 75870 station_ip 5.120.150.160 75870 port 15728783 75870 nas_port_type Virtual 75870 remote_ip 5.5.5.213 75874 username asadi 75853 nas_port_type Virtual 75853 remote_ip 5.5.5.240 75855 username ahmadi 75855 unique_id port 75855 terminate_cause User-Request 75855 bytes_out 0 75855 bytes_in 0 75855 station_ip 113.203.48.122 75855 port 15728765 75855 nas_port_type Virtual 75855 remote_ip 5.5.5.209 75858 username ahmadipour 75858 unique_id port 75858 terminate_cause Lost-Carrier 75858 bytes_out 173716 75858 bytes_in 2646850 75858 station_ip 37.129.159.153 75858 port 15728767 75858 nas_port_type Virtual 75858 remote_ip 5.5.5.207 75859 username asadi 75859 unique_id port 75859 terminate_cause User-Request 75859 bytes_out 187924 75859 bytes_in 3906038 75859 station_ip 37.129.84.155 75859 port 15728768 75859 nas_port_type Virtual 75859 remote_ip 5.5.5.208 75861 username alirezazamani 75861 unique_id port 75861 terminate_cause User-Request 75861 bytes_out 200523 75861 bytes_in 3911071 75861 station_ip 37.27.33.16 75861 port 15728774 75861 nas_port_type Virtual 75861 remote_ip 5.5.5.205 75863 username asadi 75863 unique_id port 75863 terminate_cause User-Request 75863 bytes_out 113924 75863 bytes_in 1841676 75863 station_ip 37.129.244.58 75863 port 15728776 75863 nas_port_type Virtual 75863 remote_ip 5.5.5.203 75868 username asadi 75868 unique_id port 75868 terminate_cause User-Request 75868 bytes_out 69174 75868 bytes_in 405188 75868 station_ip 37.129.244.58 75868 port 15728782 75868 nas_port_type Virtual 75868 remote_ip 5.5.5.203 75871 username hamideh 75871 unique_id port 75871 terminate_cause User-Request 75871 bytes_out 31504 75871 bytes_in 124320 75871 station_ip 5.120.150.160 75871 port 15728784 75871 nas_port_type Virtual 75871 remote_ip 5.5.5.202 75872 username hamideh 75872 unique_id port 75872 terminate_cause User-Request 75872 bytes_out 10668 75872 bytes_in 22279 75872 station_ip 5.120.150.160 75872 port 15728785 75872 nas_port_type Virtual 75872 remote_ip 5.5.5.202 75877 username alinezhad 75877 unique_id port 75877 terminate_cause User-Request 75877 bytes_out 92067 75877 bytes_in 341379 75877 station_ip 5.202.97.116 75877 port 15728786 75877 nas_port_type Virtual 75877 remote_ip 5.5.5.204 75878 username alinezhad 75878 unique_id port 75878 terminate_cause User-Request 75878 bytes_out 0 75878 bytes_in 0 75878 station_ip 5.202.97.116 75878 port 15728791 75878 nas_port_type Virtual 75878 remote_ip 5.5.5.204 75883 username ahmadi 75883 unique_id port 75883 terminate_cause User-Request 75883 bytes_out 61849 75883 bytes_in 777318 75883 station_ip 113.203.17.50 75883 port 15728799 75883 nas_port_type Virtual 75883 remote_ip 5.5.5.197 75884 username mobina 75884 unique_id port 75884 terminate_cause User-Request 75884 bytes_out 2495832 75884 bytes_in 35356086 75884 station_ip 5.219.213.31 75884 port 15728796 75884 nas_port_type Virtual 75884 remote_ip 5.5.5.199 75886 username zoha 75886 unique_id port 75886 terminate_cause Lost-Carrier 75886 bytes_out 251040 75886 bytes_in 1288841 75886 station_ip 5.120.66.170 75886 port 15728802 75886 nas_port_type Virtual 75886 remote_ip 5.5.5.242 75888 username ahmadipour 75888 unique_id port 75888 terminate_cause Lost-Carrier 75888 bytes_out 846231 75888 bytes_in 16603100 75888 station_ip 37.129.248.93 75888 port 15728804 75888 nas_port_type Virtual 75888 remote_ip 5.5.5.195 75889 username mahbobeh 75889 unique_id port 75889 terminate_cause Lost-Carrier 75889 bytes_out 1536790 75889 bytes_in 24879781 75889 station_ip 113.203.49.22 75889 port 15728797 75889 nas_port_type Virtual 75889 remote_ip 5.5.5.206 75894 username alirezazamani 75894 unique_id port 75894 terminate_cause Lost-Carrier 75894 bytes_out 128130 75894 bytes_in 2240192 75894 station_ip 5.119.3.22 75864 remote_ip 5.5.5.213 75865 username hamideh 75865 kill_reason Maximum check online fails reached 75865 unique_id port 75865 bytes_out 25294 75865 bytes_in 38179 75865 station_ip 5.120.150.160 75865 port 15728778 75865 nas_port_type Virtual 75865 remote_ip 5.5.5.213 75866 username mahbobeh 75866 unique_id port 75866 terminate_cause Lost-Carrier 75866 bytes_out 195643 75866 bytes_in 3493860 75866 station_ip 113.203.49.22 75866 port 15728769 75866 nas_port_type Virtual 75866 remote_ip 5.5.5.206 81191 bytes_out 155615 81191 bytes_in 782598 81191 station_ip 46.100.222.213 81191 port 15728790 81191 nas_port_type Virtual 81191 remote_ip 5.5.5.178 81192 username soleymani 81192 unique_id port 81192 terminate_cause Lost-Carrier 75873 username hamideh 75873 unique_id port 75873 terminate_cause User-Request 75873 bytes_out 16954 75873 bytes_in 61382 75873 station_ip 5.120.150.160 75873 port 15728787 75873 nas_port_type Virtual 75873 remote_ip 5.5.5.202 75875 username hamideh 75875 unique_id port 75875 terminate_cause User-Request 75875 bytes_out 32836 75875 bytes_in 89732 75875 station_ip 5.120.150.160 75875 port 15728788 75875 nas_port_type Virtual 75875 remote_ip 5.5.5.201 75880 username asadi 75880 unique_id port 75880 terminate_cause User-Request 75880 bytes_out 306642 75880 bytes_in 5225528 75880 station_ip 37.129.244.58 75880 port 15728793 75880 nas_port_type Virtual 75880 remote_ip 5.5.5.203 75887 username asadi 75887 unique_id port 75887 terminate_cause User-Request 75887 bytes_out 76399 75887 bytes_in 1398470 75887 station_ip 37.129.244.58 75887 port 15728803 75887 nas_port_type Virtual 75887 remote_ip 5.5.5.203 75892 username amin.insta21 75892 unique_id port 75892 terminate_cause Lost-Carrier 75892 bytes_out 6804626 75892 bytes_in 586511 75892 station_ip 151.235.124.200 75892 port 15728805 75892 nas_port_type Virtual 75892 remote_ip 5.5.5.194 75898 username pouria 75898 unique_id port 75898 terminate_cause Lost-Carrier 75898 bytes_out 34067164 75898 bytes_in 1309935294 75898 station_ip 151.235.110.204 75898 port 15728812 75898 nas_port_type Virtual 75898 remote_ip 5.5.5.191 4395 username ramin 4395 kill_reason Maximum check online fails reached 4395 bytes_out 0 4395 bytes_in 0 4395 port 562 4395 unique_id port 75899 username zoha 75899 unique_id port 75899 terminate_cause Lost-Carrier 75899 bytes_out 1268044 75899 bytes_in 3691250 75899 station_ip 5.120.66.170 4401 username ramin 4401 kill_reason Maximum check online fails reached 4401 bytes_out 0 4401 bytes_in 0 4401 port 104 4401 unique_id port 75899 port 15728813 75899 nas_port_type Virtual 75899 remote_ip 5.5.5.242 75903 username alirezazamani 75903 unique_id port 75903 terminate_cause Lost-Carrier 75903 bytes_out 2310658 75903 bytes_in 21719842 75903 station_ip 5.119.225.210 75903 port 15728818 75903 nas_port_type Virtual 75903 remote_ip 5.5.5.189 75904 username ahmadi 75904 unique_id port 75904 terminate_cause User-Request 75904 bytes_out 53761 75904 bytes_in 1034112 75904 station_ip 113.203.124.118 75904 port 15728823 75904 nas_port_type Virtual 75904 remote_ip 5.5.5.186 75905 username alirezazamani 75905 unique_id port 75905 terminate_cause Admin-Reboot 75905 bytes_out 48171 75905 bytes_in 716186 75905 station_ip 5.119.225.210 75905 port 15728824 75905 nas_port_type Virtual 75905 remote_ip 5.5.5.189 75908 username alirezazamani 75908 unique_id port 75908 terminate_cause User-Request 75908 bytes_out 0 75908 bytes_in 0 75908 station_ip 5.119.225.210 75908 port 15728641 75908 nas_port_type Virtual 4419 username ramin 4419 kill_reason Maximum check online fails reached 4419 bytes_out 0 4419 bytes_in 0 75874 unique_id port 75874 terminate_cause User-Request 75874 bytes_out 71106 75874 bytes_in 674920 75874 station_ip 37.129.244.58 75874 port 15728789 75874 nas_port_type Virtual 75874 remote_ip 5.5.5.203 75876 username hamideh 75876 unique_id port 75876 terminate_cause Lost-Carrier 75876 bytes_out 18571 75876 bytes_in 133605 75876 station_ip 5.120.150.160 75876 port 15728790 75876 nas_port_type Virtual 75876 remote_ip 5.5.5.201 75879 username alinezhad 75879 unique_id port 75879 terminate_cause User-Request 75879 bytes_out 0 75879 bytes_in 0 75879 station_ip 5.202.97.116 75879 port 15728792 75879 nas_port_type Virtual 75879 remote_ip 5.5.5.204 75881 username alinezhad 75881 unique_id port 75881 terminate_cause User-Request 75881 bytes_out 0 75881 bytes_in 0 75881 station_ip 5.202.97.116 75881 port 15728795 75881 nas_port_type Virtual 75881 remote_ip 5.5.5.204 75882 username asadi 75882 unique_id port 75882 terminate_cause User-Request 75882 bytes_out 51647 75882 bytes_in 195441 75882 station_ip 37.129.244.58 75882 port 15728800 75882 nas_port_type Virtual 75882 remote_ip 5.5.5.203 75885 username mobina 75885 unique_id port 75885 terminate_cause User-Request 75885 bytes_out 395277 75885 bytes_in 8023653 75885 station_ip 5.219.208.118 75885 port 15728801 75885 nas_port_type Virtual 75885 remote_ip 5.5.5.196 75890 username iranmanesh 75890 unique_id port 75890 terminate_cause User-Request 75890 bytes_out 925453 75890 bytes_in 16618663 75890 station_ip 5.114.131.72 75890 port 15728794 75890 nas_port_type Virtual 75890 remote_ip 5.5.5.200 75891 username asadi 75891 unique_id port 75891 terminate_cause User-Request 75891 bytes_out 35064 75891 bytes_in 189872 75891 station_ip 37.129.244.58 75891 port 15728807 75891 nas_port_type Virtual 75891 remote_ip 5.5.5.203 75893 username alirezazamani 75893 unique_id port 4397 username ramin 4397 kill_reason Maximum check online fails reached 4397 bytes_out 0 4397 bytes_in 0 4397 port 918 4397 unique_id port 75893 terminate_cause Lost-Carrier 75893 bytes_out 932578 75893 bytes_in 18648226 75893 station_ip 5.119.3.22 75893 port 15728798 75893 nas_port_type Virtual 4400 username ramin 4400 kill_reason Maximum check online fails reached 4400 bytes_out 0 4400 bytes_in 0 4400 port 605 4400 unique_id port 4403 username ramin 4403 kill_reason Maximum check online fails reached 4403 bytes_out 0 4403 bytes_in 0 4403 port 721 4403 unique_id port 75893 remote_ip 5.5.5.198 75895 username zoha 75895 unique_id port 75895 terminate_cause Lost-Carrier 75895 bytes_out 1400112 75895 bytes_in 15189777 4409 username ramin 4409 kill_reason Maximum check online fails reached 4409 bytes_out 0 4409 bytes_in 0 4409 port 501 4409 unique_id port 75895 station_ip 5.120.66.170 75895 port 15728806 75895 nas_port_type Virtual 75895 remote_ip 5.5.5.242 75897 username zoha 75897 unique_id port 75897 terminate_cause Lost-Carrier 75897 bytes_out 4158483 75897 bytes_in 47171551 75897 station_ip 5.120.66.170 75897 port 15728809 75897 nas_port_type Virtual 75897 remote_ip 5.5.5.242 75900 username alirezazamani 75900 unique_id port 75900 terminate_cause Lost-Carrier 75900 bytes_out 807294 75900 bytes_in 8267618 75900 station_ip 5.119.225.210 75900 port 15728817 75900 nas_port_type Virtual 75900 remote_ip 5.5.5.190 75907 username alirezazamani 75907 unique_id port 75907 terminate_cause User-Request 75907 bytes_out 253865 4421 username ramin 4421 kill_reason Maximum check online fails reached 4421 bytes_out 0 4421 bytes_in 0 4421 port 171 4421 unique_id port 75907 bytes_in 9380019 75907 station_ip 5.119.225.210 75907 port 15728640 4393 username ramin 4393 kill_reason Maximum check online fails reached 4393 bytes_out 0 4393 bytes_in 0 4393 port 895 4393 unique_id port 75894 port 15728808 75894 nas_port_type Virtual 75894 remote_ip 5.5.5.193 75896 username pouria 75896 unique_id port 75896 terminate_cause Lost-Carrier 4399 username ramin 4399 kill_reason Maximum check online fails reached 4399 bytes_out 0 4399 bytes_in 0 4399 port 883 4399 unique_id port 4405 username ramin 4405 kill_reason Maximum check online fails reached 4405 bytes_out 0 4405 bytes_in 0 4405 port 672 4405 unique_id port 4411 username ramin 4411 kill_reason Maximum check online fails reached 4411 bytes_out 0 4411 bytes_in 0 4411 port 818 4411 unique_id port 75896 bytes_out 5230119 75896 bytes_in 192533572 75896 station_ip 151.235.110.204 75896 port 15728811 75896 nas_port_type Virtual 75896 remote_ip 5.5.5.192 4417 username ramin 4417 kill_reason Maximum check online fails reached 4417 bytes_out 0 4417 bytes_in 0 4417 port 593 4417 unique_id port 75901 username ahmadi 75901 unique_id port 75901 terminate_cause User-Request 75901 bytes_out 38622 75901 bytes_in 352476 75901 station_ip 113.203.32.22 75901 port 15728819 75901 nas_port_type Virtual 75901 remote_ip 5.5.5.188 75902 username alinezhad 75902 unique_id port 75902 terminate_cause User-Request 75902 bytes_out 0 75902 bytes_in 0 75902 station_ip 5.202.28.98 75902 port 15728821 75902 nas_port_type Virtual 75902 remote_ip 5.5.5.187 75906 username alirezazamani 75906 unique_id port 75906 terminate_cause Admin-Reboot 75906 bytes_out 655018 75906 bytes_in 18984576 75906 station_ip 5.119.225.210 75906 port 15728822 75906 nas_port_type Virtual 75906 remote_ip 5.5.5.190 75911 username asadi 75911 unique_id port 75911 terminate_cause User-Request 75911 bytes_out 36580 75911 bytes_in 114433 4429 username ramin 4429 kill_reason Maximum check online fails reached 4429 bytes_out 0 4429 bytes_in 0 4429 port 487 4429 unique_id port 4432 username ramin 4432 kill_reason Maximum check online fails reached 4432 bytes_out 0 4432 bytes_in 0 4432 port 788 4432 unique_id port 4434 username ramin 4434 kill_reason Maximum check online fails reached 4434 bytes_out 0 4434 bytes_in 0 4434 port 696 4434 unique_id port 4437 username ramin 4437 kill_reason Maximum check online fails reached 4437 bytes_out 0 4437 bytes_in 0 4437 port 84 4437 unique_id port 75911 station_ip 37.129.27.73 75911 port 15728645 75911 nas_port_type Virtual 75911 remote_ip 5.5.5.253 75915 username asadi 75915 unique_id port 75915 terminate_cause User-Request 75915 bytes_out 24901 75915 bytes_in 71698 75915 station_ip 37.129.27.73 75915 port 15728649 75915 nas_port_type Virtual 75915 remote_ip 5.5.5.253 75917 username asadi 75917 unique_id port 75917 terminate_cause User-Request 75917 bytes_out 48972 75917 bytes_in 237766 75917 station_ip 83.122.72.174 75917 port 15728651 75917 nas_port_type Virtual 75917 remote_ip 5.5.5.251 75918 username amin.insta22 75918 kill_reason Maximum check online fails reached 75918 unique_id port 75918 bytes_out 1966828 75918 bytes_in 3750724 75918 station_ip 31.56.114.192 75918 port 15728646 75918 nas_port_type Virtual 75918 remote_ip 5.5.5.252 75919 username asadi 75919 unique_id port 75919 terminate_cause User-Request 75919 bytes_out 85391 75919 bytes_in 2724542 75919 station_ip 83.122.72.174 75919 port 15728652 75919 nas_port_type Virtual 75919 remote_ip 5.5.5.251 75925 username ahmadi 75925 unique_id port 75925 terminate_cause User-Request 75925 bytes_out 65859 75925 bytes_in 1194157 75925 station_ip 113.203.124.118 75925 port 15728659 4419 port 869 4419 unique_id port 4422 username ramin 4422 kill_reason Maximum check online fails reached 4422 bytes_out 0 4422 bytes_in 0 4422 port 381 4422 unique_id port 75907 nas_port_type Virtual 75907 remote_ip 5.5.5.255 75909 username alinezhad 75909 unique_id port 75909 terminate_cause User-Request 75909 bytes_out 0 75909 bytes_in 0 75909 station_ip 5.202.28.98 4428 username ramin 4428 kill_reason Maximum check online fails reached 4428 bytes_out 0 4428 bytes_in 0 4428 port 919 4428 unique_id port 75909 port 15728643 75909 nas_port_type Virtual 75909 remote_ip 5.5.5.254 75910 username asadi 75910 unique_id port 75910 terminate_cause User-Request 75910 bytes_out 195258 75910 bytes_in 3299323 4431 username ramin 4431 kill_reason Maximum check online fails reached 4431 bytes_out 0 4431 bytes_in 0 4431 port 23 4431 unique_id port 4436 username ramin 4436 kill_reason Maximum check online fails reached 4436 bytes_out 0 4436 bytes_in 0 4436 port 320 4436 unique_id port 75910 station_ip 37.129.27.73 75910 port 15728644 75910 nas_port_type Virtual 75910 remote_ip 5.5.5.253 75916 username asadi 75916 unique_id port 75916 terminate_cause User-Request 75916 bytes_out 38705 75916 bytes_in 149860 75916 station_ip 37.129.27.73 75916 port 15728650 75916 nas_port_type Virtual 75916 remote_ip 5.5.5.253 75922 username aminvpn 75922 unique_id port 75922 terminate_cause Lost-Carrier 75922 bytes_out 122988 75922 bytes_in 879912 75922 station_ip 2.183.243.172 75922 port 15728654 75922 nas_port_type Virtual 75922 remote_ip 5.5.5.250 75923 username asadi 75923 unique_id port 75923 terminate_cause User-Request 75923 bytes_out 288599 75923 bytes_in 9674294 75923 station_ip 83.122.72.174 75923 port 15728656 75923 nas_port_type Virtual 75923 remote_ip 5.5.5.251 75924 username asadi 75924 unique_id port 75924 terminate_cause User-Request 75924 bytes_out 271590 75924 bytes_in 8699920 75924 station_ip 83.122.72.174 75924 port 15728657 75924 nas_port_type Virtual 75924 remote_ip 5.5.5.251 75927 username reza 75927 unique_id port 75927 terminate_cause User-Request 75927 bytes_out 148934 75927 bytes_in 2844723 75927 station_ip 37.129.196.244 75927 port 15728661 75927 nas_port_type Virtual 75927 remote_ip 5.5.5.246 75929 username rashidi 75929 unique_id port 75929 terminate_cause User-Request 75929 bytes_out 0 75929 bytes_in 0 75929 station_ip 5.119.238.131 75929 port 15728665 75929 nas_port_type Virtual 75929 remote_ip 5.5.5.243 75934 username rashidi 75934 unique_id port 75934 terminate_cause User-Request 75934 bytes_out 4305932 75934 bytes_in 11478562 75934 station_ip 5.119.184.225 75934 port 15728667 75934 nas_port_type Virtual 75934 remote_ip 5.5.5.242 75936 username ahmadipour 75936 unique_id port 75936 terminate_cause Lost-Carrier 75936 bytes_out 153797 75936 bytes_in 2490075 75936 station_ip 83.122.83.175 75936 port 15728673 75936 nas_port_type Virtual 75936 remote_ip 5.5.5.237 75937 username ahmadipour 75937 unique_id port 75937 terminate_cause User-Request 75937 bytes_out 0 75937 bytes_in 0 75937 station_ip 83.122.83.175 75937 port 15728674 75937 nas_port_type Virtual 75937 remote_ip 5.5.5.237 75938 username asadi 75938 unique_id port 75938 terminate_cause User-Request 75938 bytes_out 125873 75938 bytes_in 2039848 75938 station_ip 37.129.224.4 75938 port 15728675 75938 nas_port_type Virtual 75938 remote_ip 5.5.5.236 75939 username asadi 75939 unique_id port 75939 terminate_cause User-Request 75939 bytes_out 31445 75939 bytes_in 234549 75939 station_ip 37.129.224.4 75939 port 15728676 75939 nas_port_type Virtual 75908 remote_ip 5.5.5.255 75912 username asadi 75912 unique_id port 4433 username ramin 4433 kill_reason Maximum check online fails reached 4433 bytes_out 0 4433 bytes_in 0 4433 port 685 4433 unique_id port 4435 username ramin 4435 kill_reason Maximum check online fails reached 4435 bytes_out 0 4435 bytes_in 0 4435 port 145 4435 unique_id port 4438 username ramin 4438 kill_reason Maximum check online fails reached 4438 bytes_out 0 4438 bytes_in 0 4438 port 819 4438 unique_id port 75912 terminate_cause User-Request 75912 bytes_out 44918 75912 bytes_in 288725 75912 station_ip 37.129.27.73 75912 port 15728647 75912 nas_port_type Virtual 75912 remote_ip 5.5.5.253 75913 username asadi 75913 unique_id port 75913 terminate_cause User-Request 75913 bytes_out 19744 75913 bytes_in 102378 75913 station_ip 37.129.27.73 75913 port 15728648 75913 nas_port_type Virtual 75913 remote_ip 5.5.5.253 75914 username alirezazamani 75914 unique_id port 75914 terminate_cause User-Request 75914 bytes_out 217868 75914 bytes_in 575094 75914 station_ip 5.119.225.210 75914 port 15728642 75914 nas_port_type Virtual 75914 remote_ip 5.5.5.255 75920 username alinezhad 75920 unique_id port 75920 terminate_cause User-Request 75920 bytes_out 0 75920 bytes_in 0 75920 station_ip 5.202.28.98 75920 port 15728653 75920 nas_port_type Virtual 75920 remote_ip 5.5.5.254 75921 username hamideh 75921 unique_id port 75921 terminate_cause User-Request 75921 bytes_out 91800 75921 bytes_in 1003888 75921 station_ip 5.120.137.114 75921 port 15728655 75921 nas_port_type Virtual 75921 remote_ip 5.5.5.249 75926 username aminvpn 75926 unique_id port 75926 terminate_cause Lost-Carrier 75926 bytes_out 305433 75926 bytes_in 1717773 75926 station_ip 2.183.243.172 75926 port 15728660 75926 nas_port_type Virtual 75926 remote_ip 5.5.5.250 75931 username rashidi 75931 unique_id port 75931 terminate_cause User-Request 75931 bytes_out 209862 75931 bytes_in 1296219 75931 station_ip 5.119.238.131 75931 port 15728666 75931 nas_port_type Virtual 75931 remote_ip 5.5.5.243 75932 username ahmadi 75932 unique_id port 75932 terminate_cause User-Request 75932 bytes_out 423434 75932 bytes_in 183031 75932 station_ip 113.203.52.34 75932 port 15728668 75932 nas_port_type Virtual 75932 remote_ip 5.5.5.241 75933 username alinezhad 75933 unique_id port 75933 terminate_cause User-Request 75933 bytes_out 0 75933 bytes_in 0 75933 station_ip 5.202.133.76 75933 port 15728671 75933 nas_port_type Virtual 75933 remote_ip 5.5.5.239 75935 username alirezazamani 75935 unique_id port 75935 terminate_cause Lost-Carrier 75935 bytes_out 6178370 75935 bytes_in 1460303 75935 station_ip 5.119.225.210 75935 port 15728670 75935 nas_port_type Virtual 75935 remote_ip 5.5.5.255 75940 username mobina 75940 unique_id port 75940 terminate_cause User-Request 75940 bytes_out 6434080 75940 bytes_in 135296249 75940 station_ip 5.219.199.8 75940 port 15728669 75940 nas_port_type Virtual 75940 remote_ip 5.5.5.240 75941 username asadi 75941 unique_id port 75941 terminate_cause User-Request 75941 bytes_out 24866 75941 bytes_in 111804 75941 station_ip 37.129.224.4 75941 port 15728677 75941 nas_port_type Virtual 75941 remote_ip 5.5.5.236 75944 username asadi 75944 unique_id port 75944 terminate_cause User-Request 75944 bytes_out 124079 75944 bytes_in 1251224 75944 station_ip 37.129.224.4 75944 port 15728680 75944 nas_port_type Virtual 75944 remote_ip 5.5.5.236 75947 username asadi 75947 unique_id port 75947 terminate_cause User-Request 75947 bytes_out 40504 75947 bytes_in 308788 75947 station_ip 37.129.224.4 75947 port 15728685 75947 nas_port_type Virtual 75925 nas_port_type Virtual 75925 remote_ip 5.5.5.247 75928 username alirezazamani 75928 unique_id port 75928 terminate_cause Lost-Carrier 75928 bytes_out 663112 75928 bytes_in 22413671 75928 station_ip 5.119.225.210 75928 port 15728663 75928 nas_port_type Virtual 75928 remote_ip 5.5.5.255 75930 username reza2742 75930 unique_id port 75930 terminate_cause Lost-Carrier 75930 bytes_out 2795766 75930 bytes_in 13533546 75930 station_ip 151.235.81.235 75930 port 15728662 75930 nas_port_type Virtual 75930 remote_ip 5.5.5.245 75946 username alirezazamani 75946 unique_id port 75946 terminate_cause Lost-Carrier 75946 bytes_out 332690 75946 bytes_in 1059163 75946 station_ip 5.119.225.210 75946 port 15728672 75946 nas_port_type Virtual 75946 remote_ip 5.5.5.238 75948 username asadi 75948 unique_id port 75948 terminate_cause User-Request 75948 bytes_out 31733 75948 bytes_in 104823 75948 station_ip 37.129.224.4 75948 port 15728686 75948 nas_port_type Virtual 75948 remote_ip 5.5.5.236 75954 username ahmadi 75954 unique_id port 75954 terminate_cause User-Request 75954 bytes_out 14855 75954 bytes_in 93794 75954 station_ip 113.203.62.174 75954 port 15728694 75954 nas_port_type Virtual 75954 remote_ip 5.5.5.230 75957 username asadi 75957 unique_id port 75957 terminate_cause User-Request 75957 bytes_out 7763 75957 bytes_in 22501 75957 station_ip 37.129.224.4 75957 port 15728697 75957 nas_port_type Virtual 75957 remote_ip 5.5.5.236 75958 username asadi 75958 unique_id port 75958 terminate_cause User-Request 75958 bytes_out 142713 75958 bytes_in 4384156 75958 station_ip 37.129.224.4 75958 port 15728701 75958 nas_port_type Virtual 75958 remote_ip 5.5.5.236 75959 username asadi 75959 unique_id port 75959 terminate_cause User-Request 75959 bytes_out 6477 75959 bytes_in 20081 75959 station_ip 37.129.224.4 75959 port 15728702 75959 nas_port_type Virtual 75959 remote_ip 5.5.5.236 75961 username asadi 75961 unique_id port 75961 terminate_cause User-Request 75961 bytes_out 72054 75961 bytes_in 530728 75961 station_ip 37.129.224.4 75961 port 15728704 75961 nas_port_type Virtual 75961 remote_ip 5.5.5.236 75963 username amin.insta22 75963 unique_id port 75963 terminate_cause User-Request 75963 bytes_out 3992018 75963 bytes_in 7298726 75963 station_ip 31.56.218.108 75963 port 15728690 75963 nas_port_type Virtual 75963 remote_ip 5.5.5.233 75964 username hamideh 75964 unique_id port 75964 terminate_cause Lost-Carrier 75964 bytes_out 130733 75964 bytes_in 814157 75964 station_ip 5.120.15.3 75964 port 15728700 75964 nas_port_type Virtual 75964 remote_ip 5.5.5.227 75969 username amin.insta22 75969 unique_id port 75969 terminate_cause Lost-Carrier 75969 bytes_out 3354311 75969 bytes_in 87532885 75969 station_ip 31.56.218.108 75969 port 15728692 75969 nas_port_type Virtual 75969 remote_ip 5.5.5.231 75971 username hamideh 75971 unique_id port 75971 terminate_cause Lost-Carrier 75971 bytes_out 27047 75971 bytes_in 141874 75971 station_ip 5.120.15.3 75971 port 15728709 75971 nas_port_type Virtual 75971 remote_ip 5.5.5.227 75975 username alinezhad 75975 unique_id port 75975 terminate_cause User-Request 75975 bytes_out 20590 75975 bytes_in 37183 75975 station_ip 5.202.9.74 75975 port 15728714 75975 nas_port_type Virtual 75975 remote_ip 5.5.5.222 75977 username hamideh 75977 unique_id port 75977 terminate_cause User-Request 75977 bytes_out 0 75977 bytes_in 0 75977 station_ip 5.120.15.3 75977 port 15728715 75977 nas_port_type Virtual 75977 remote_ip 5.5.5.227 75978 username reza 75978 unique_id port 75978 terminate_cause User-Request 75978 bytes_out 23067 75978 bytes_in 336652 75978 station_ip 37.129.119.123 75939 remote_ip 5.5.5.236 75942 username asadi 75942 unique_id port 75942 terminate_cause User-Request 75942 bytes_out 21597 75942 bytes_in 99229 75942 station_ip 37.129.224.4 75942 port 15728678 75942 nas_port_type Virtual 75942 remote_ip 5.5.5.236 75943 username asadi 75943 unique_id port 75943 terminate_cause User-Request 75943 bytes_out 27689 75943 bytes_in 94753 75943 station_ip 37.129.224.4 75943 port 15728679 75943 nas_port_type Virtual 75943 remote_ip 5.5.5.236 75945 username ahmadi 75945 unique_id port 75945 terminate_cause User-Request 75945 bytes_out 0 75945 bytes_in 0 75945 station_ip 113.203.52.34 75945 port 15728684 75945 nas_port_type Virtual 75945 remote_ip 5.5.5.241 75949 username asadi 75949 unique_id port 75949 terminate_cause User-Request 75949 bytes_out 71985 75949 bytes_in 858023 75949 station_ip 37.129.224.4 75949 port 15728687 75949 nas_port_type Virtual 75949 remote_ip 5.5.5.236 75951 username soleymani 75951 unique_id port 75951 terminate_cause Lost-Carrier 75951 bytes_out 52103 75951 bytes_in 205311 75951 station_ip 5.120.110.67 75951 port 15728689 75951 nas_port_type Virtual 75951 remote_ip 5.5.5.234 75952 username alinezhad 75952 unique_id port 75952 terminate_cause User-Request 75952 bytes_out 85928 75952 bytes_in 276389 75952 station_ip 5.202.13.230 75952 port 15728691 75952 nas_port_type Virtual 75952 remote_ip 5.5.5.232 75953 username asadi 75953 unique_id port 75953 terminate_cause User-Request 75953 bytes_out 387163 75953 bytes_in 7748859 75953 station_ip 37.129.224.4 75953 port 15728693 75953 nas_port_type Virtual 75953 remote_ip 5.5.5.236 75960 username asadi 75960 unique_id port 75960 terminate_cause User-Request 75960 bytes_out 26373 75960 bytes_in 78304 75960 station_ip 37.129.224.4 75960 port 15728703 75960 nas_port_type Virtual 75960 remote_ip 5.5.5.236 75962 username rashidi 75962 unique_id port 75962 terminate_cause Lost-Carrier 75962 bytes_out 1471213 75962 bytes_in 10032811 75962 station_ip 5.119.184.225 75962 port 15728698 75962 nas_port_type Virtual 75962 remote_ip 5.5.5.242 75965 username zoha 75965 unique_id port 75965 terminate_cause User-Request 75965 bytes_out 0 75965 bytes_in 0 75965 station_ip 5.120.66.170 75965 port 15728705 75965 nas_port_type Virtual 75965 remote_ip 5.5.5.226 81192 bytes_out 107872 81192 bytes_in 354593 81192 station_ip 5.120.164.88 81192 port 15728789 81192 nas_port_type Virtual 81192 remote_ip 5.5.5.179 81195 username aminvpn 81195 mac 81195 bytes_out 0 75970 username soleymani 75970 unique_id port 75970 terminate_cause Lost-Carrier 75970 bytes_out 120580 75970 bytes_in 565152 75970 station_ip 5.120.150.18 75970 port 15728699 75970 nas_port_type Virtual 75970 remote_ip 5.5.5.228 75973 username soleymani 75973 unique_id port 75973 terminate_cause Lost-Carrier 75973 bytes_out 133494 75973 bytes_in 598722 75973 station_ip 5.120.25.50 75973 port 15728710 75973 nas_port_type Virtual 75973 remote_ip 5.5.5.225 75979 username iranmanesh 75979 unique_id port 75979 terminate_cause User-Request 75979 bytes_out 0 75979 bytes_in 342 75979 station_ip 5.112.138.249 75979 port 15728721 75979 nas_port_type Virtual 75979 remote_ip 5.5.5.220 75983 username soleymani 75983 unique_id port 75983 terminate_cause Lost-Carrier 75983 bytes_out 46114 75983 bytes_in 414043 75983 station_ip 5.119.19.8 75983 port 15728724 75983 nas_port_type Virtual 75983 remote_ip 5.5.5.218 75989 username soleymani 75989 unique_id port 75989 terminate_cause Lost-Carrier 75989 bytes_out 266784 75989 bytes_in 4153645 75989 station_ip 5.119.101.234 75989 port 15728730 75989 nas_port_type Virtual 81195 bytes_in 0 75947 remote_ip 5.5.5.236 75950 username arabpour 75950 unique_id port 75950 terminate_cause User-Request 75950 bytes_out 205066 75950 bytes_in 3716173 75950 station_ip 37.129.116.51 75950 port 15728688 75950 nas_port_type Virtual 75950 remote_ip 5.5.5.235 75955 username soleymani 75955 unique_id port 75955 terminate_cause Lost-Carrier 75955 bytes_out 79764 75955 bytes_in 299294 75955 station_ip 5.120.176.71 75955 port 15728695 75955 nas_port_type Virtual 75955 remote_ip 5.5.5.229 75956 username asadi 75956 unique_id port 75956 terminate_cause User-Request 75956 bytes_out 61888 75956 bytes_in 934408 75956 station_ip 37.129.224.4 75956 port 15728696 75956 nas_port_type Virtual 75956 remote_ip 5.5.5.236 75966 username asadi 75966 unique_id port 75966 terminate_cause User-Request 75966 bytes_out 52447 75966 bytes_in 328269 75966 station_ip 37.129.224.4 75966 port 15728706 75966 nas_port_type Virtual 75966 remote_ip 5.5.5.236 75968 username hamideh 75968 unique_id port 75968 terminate_cause User-Request 75968 bytes_out 0 75968 bytes_in 0 75968 station_ip 5.120.15.3 75968 port 15728708 75968 nas_port_type Virtual 75968 remote_ip 5.5.5.227 75972 username ahmadi 75972 unique_id port 75972 terminate_cause User-Request 75972 bytes_out 0 75972 bytes_in 0 75972 station_ip 113.203.62.174 75972 port 15728712 75972 nas_port_type Virtual 75972 remote_ip 5.5.5.230 75974 username zoha 75974 unique_id port 75974 terminate_cause Lost-Carrier 75974 bytes_out 2022239 75974 bytes_in 16550752 75974 station_ip 5.120.66.170 75974 port 15728707 75974 nas_port_type Virtual 75974 remote_ip 5.5.5.226 75976 username reza 75976 unique_id port 75976 terminate_cause User-Request 75976 bytes_out 34916 75976 bytes_in 345294 75976 station_ip 37.129.119.123 75976 port 15728713 75976 nas_port_type Virtual 75976 remote_ip 5.5.5.223 75980 username soleymani 75980 unique_id port 75980 terminate_cause Lost-Carrier 75980 bytes_out 50486 75980 bytes_in 259513 75980 station_ip 5.119.44.0 75980 port 15728717 75980 nas_port_type Virtual 75980 remote_ip 5.5.5.221 75985 username asadi 75985 unique_id port 75985 terminate_cause User-Request 75985 bytes_out 56197 75985 bytes_in 159210 75985 station_ip 37.129.224.4 75985 port 15728727 75985 nas_port_type Virtual 75985 remote_ip 5.5.5.236 75986 username alinezhad 75986 unique_id port 75986 terminate_cause User-Request 75986 bytes_out 0 75986 bytes_in 0 75986 station_ip 5.202.9.74 75986 port 15728728 75986 nas_port_type Virtual 75986 remote_ip 5.5.5.222 75987 username soleymani 75987 unique_id port 75987 terminate_cause User-Request 75987 bytes_out 0 75987 bytes_in 0 75987 station_ip 5.119.101.234 75987 port 15728729 75987 nas_port_type Virtual 75987 remote_ip 5.5.5.216 75988 username alirezazamani 75988 unique_id port 75988 terminate_cause User-Request 75988 bytes_out 90827948 75988 bytes_in 5034616349 75988 station_ip 31.57.129.215 75988 port 15728664 75988 nas_port_type Virtual 75988 remote_ip 5.5.5.244 75990 username arabpour 75990 unique_id port 75990 terminate_cause User-Request 75990 bytes_out 386 75990 bytes_in 11454 75990 station_ip 113.203.115.124 75990 port 15728733 75990 nas_port_type Virtual 75990 remote_ip 5.5.5.213 75992 username soleymani 75992 unique_id port 75992 terminate_cause User-Request 75992 bytes_out 0 75992 bytes_in 0 75992 station_ip 5.119.176.11 75992 port 15728741 75992 nas_port_type Virtual 75992 remote_ip 5.5.5.211 75995 username soleymani 75995 unique_id port 75995 terminate_cause Lost-Carrier 75995 bytes_out 125444 75995 bytes_in 1639990 75995 station_ip 5.119.176.11 75995 port 15728742 75995 nas_port_type Virtual 75978 port 15728716 75978 nas_port_type Virtual 75978 remote_ip 5.5.5.223 75981 username ahmadi 75981 unique_id port 75981 terminate_cause User-Request 75981 bytes_out 33268 75981 bytes_in 348029 75981 station_ip 113.203.62.174 75981 port 15728723 75981 nas_port_type Virtual 75981 remote_ip 5.5.5.230 75982 username soleymani 75982 unique_id port 75982 terminate_cause Lost-Carrier 75982 bytes_out 30905 75982 bytes_in 418120 75982 station_ip 5.119.211.45 75982 port 15728722 75982 nas_port_type Virtual 75982 remote_ip 5.5.5.219 75984 username arabpour 75984 unique_id port 75984 terminate_cause User-Request 75984 bytes_out 143071 75984 bytes_in 1869387 75984 station_ip 113.203.64.61 75984 port 15728725 75984 nas_port_type Virtual 75984 remote_ip 5.5.5.217 75991 username soleymani 75991 unique_id port 75991 terminate_cause NAS-Error 75991 bytes_out 0 75991 bytes_in 342 75991 station_ip 5.120.35.9 75991 port 15728740 75991 nas_port_type Virtual 75991 remote_ip 5.5.5.212 75993 username soleymani 75993 unique_id port 75993 terminate_cause Lost-Carrier 75993 bytes_out 185918 75993 bytes_in 3075663 75993 station_ip 5.119.156.185 75993 port 15728732 75993 nas_port_type Virtual 75993 remote_ip 5.5.5.214 75994 username soleymani 75994 unique_id port 75994 terminate_cause User-Request 75994 bytes_out 0 75994 bytes_in 0 75994 station_ip 5.120.20.201 75994 port 15728743 75994 nas_port_type Virtual 75994 remote_ip 5.5.5.210 75997 username soleymani 75997 unique_id port 75997 terminate_cause User-Request 75997 bytes_out 0 75997 bytes_in 0 75997 station_ip 5.119.189.174 75997 port 15728746 75997 nas_port_type Virtual 75997 remote_ip 5.5.5.208 75999 username asadi 75999 unique_id port 75999 terminate_cause User-Request 75999 bytes_out 184373 75999 bytes_in 1911231 75999 station_ip 37.129.224.4 75999 port 15728748 75999 nas_port_type Virtual 75999 remote_ip 5.5.5.236 76000 username alirezazamani 76000 unique_id port 76000 terminate_cause User-Request 76000 bytes_out 567606 76000 bytes_in 12702575 76000 station_ip 37.27.50.200 76000 port 15728749 76000 nas_port_type Virtual 76000 remote_ip 5.5.5.207 76002 username soleymani 76002 unique_id port 76002 terminate_cause Lost-Carrier 76002 bytes_out 366131 76002 bytes_in 5789129 76002 station_ip 5.119.189.174 76002 port 15728747 76002 nas_port_type Virtual 76002 remote_ip 5.5.5.208 76003 username mahbobeh 76003 unique_id port 76003 terminate_cause Lost-Carrier 76003 bytes_out 2201218 76003 bytes_in 23226505 76003 station_ip 83.122.66.146 76003 port 15728731 76003 nas_port_type Virtual 76003 remote_ip 5.5.5.215 76007 username hamideh 76007 unique_id port 76007 terminate_cause Lost-Carrier 76007 bytes_out 116825 76007 bytes_in 381950 76007 station_ip 5.120.15.3 76007 port 15728753 76007 nas_port_type Virtual 76007 remote_ip 5.5.5.227 76017 username asadi 76017 unique_id port 76017 terminate_cause User-Request 76017 bytes_out 78905 76017 bytes_in 173475 76017 station_ip 37.129.209.253 76017 port 15728766 76017 nas_port_type Virtual 76017 remote_ip 5.5.5.200 76019 username mahbobeh 76019 unique_id port 76019 terminate_cause Lost-Carrier 76019 bytes_out 1843839 76019 bytes_in 32043994 76019 station_ip 83.122.66.146 76019 port 15728759 76019 nas_port_type Virtual 76019 remote_ip 5.5.5.215 76021 username pouria 76021 unique_id port 76021 terminate_cause Lost-Carrier 76021 bytes_out 3882488 76021 bytes_in 83260425 76021 station_ip 5.119.132.222 76021 port 15728767 76021 nas_port_type Virtual 76021 remote_ip 5.5.5.199 76028 username alinezhad 76028 unique_id port 76028 terminate_cause User-Request 76028 bytes_out 19881 76028 bytes_in 30389 75989 remote_ip 5.5.5.216 75996 username alirezazamani 75996 unique_id port 75996 terminate_cause User-Request 75996 bytes_out 0 75996 bytes_in 0 75996 station_ip 5.120.24.17 75996 port 15728745 75996 nas_port_type Virtual 75996 remote_ip 5.5.5.209 75998 username soleymani 75998 unique_id port 75998 terminate_cause Lost-Carrier 75998 bytes_out 553889 75998 bytes_in 8491624 75998 station_ip 5.120.20.201 75998 port 15728744 75998 nas_port_type Virtual 75998 remote_ip 5.5.5.210 76001 username asadi 76001 unique_id port 76001 terminate_cause User-Request 76001 bytes_out 0 76001 bytes_in 0 76001 station_ip 37.129.224.4 76001 port 15728750 76001 nas_port_type Virtual 76001 remote_ip 5.5.5.236 76006 username mahdi 76006 unique_id port 76006 terminate_cause Lost-Carrier 76006 bytes_out 520636 76006 bytes_in 5612520 76006 station_ip 5.120.102.176 76006 port 15728711 76006 nas_port_type Virtual 76006 remote_ip 5.5.5.224 76008 username alinezhad 76008 unique_id port 76008 terminate_cause User-Request 76008 bytes_out 25741 76008 bytes_in 50571 76008 station_ip 5.202.9.74 76008 port 15728754 76008 nas_port_type Virtual 76008 remote_ip 5.5.5.222 76010 username ahmadi 76010 unique_id port 76010 terminate_cause User-Request 76010 bytes_out 17664 76010 bytes_in 92376 76010 station_ip 83.122.192.167 76010 port 15728757 76010 nas_port_type Virtual 76010 remote_ip 5.5.5.203 76011 username mobina 76011 unique_id port 76011 terminate_cause User-Request 76011 bytes_out 1254438 76011 bytes_in 13962086 76011 station_ip 37.254.127.154 76011 port 15728758 76011 nas_port_type Virtual 76011 remote_ip 5.5.5.202 76012 username hamideh 76012 unique_id port 76012 terminate_cause User-Request 76012 bytes_out 56755 76012 bytes_in 152789 76012 station_ip 5.120.15.3 76012 port 15728760 76012 nas_port_type Virtual 76012 remote_ip 5.5.5.227 76013 username hamideh 76013 unique_id port 76013 terminate_cause Lost-Carrier 76013 bytes_out 278840 76013 bytes_in 6095433 76013 station_ip 5.120.15.3 76013 port 15728761 76013 nas_port_type Virtual 76013 remote_ip 5.5.5.227 76014 username zoha 76014 unique_id port 76014 terminate_cause Lost-Carrier 76014 bytes_out 3983691 76014 bytes_in 38257386 76014 station_ip 5.120.66.170 76014 port 15728756 76014 nas_port_type Virtual 76014 remote_ip 5.5.5.226 76020 username rashidi 76020 unique_id port 76020 terminate_cause User-Request 76020 bytes_out 10796339 76020 bytes_in 66276361 76020 station_ip 5.119.250.51 76020 port 15728762 76020 nas_port_type Virtual 76020 remote_ip 5.5.5.201 76022 username soleymani 76022 unique_id port 76022 terminate_cause Lost-Carrier 76022 bytes_out 95395 76022 bytes_in 528762 76022 station_ip 5.120.113.204 76022 port 15728768 76022 nas_port_type Virtual 76022 remote_ip 5.5.5.198 76024 username aminvpn 76024 unique_id port 76024 terminate_cause Lost-Carrier 76024 bytes_out 341131 76024 bytes_in 2543986 76024 station_ip 2.183.243.172 76024 port 15728770 76024 nas_port_type Virtual 76024 remote_ip 5.5.5.250 76025 username alirezazamani 76025 unique_id port 76025 terminate_cause Lost-Carrier 76025 bytes_out 717847 76025 bytes_in 12641465 76025 station_ip 5.119.225.210 76025 port 15728773 76025 nas_port_type Virtual 76025 remote_ip 5.5.5.238 76026 username alirezazamani 76026 unique_id port 76026 terminate_cause Lost-Carrier 76026 bytes_out 859322 76026 bytes_in 22416755 76026 station_ip 5.119.225.210 76026 port 15728775 76026 nas_port_type Virtual 76026 remote_ip 5.5.5.195 76027 username zoha 76027 unique_id port 76027 terminate_cause Lost-Carrier 76027 bytes_out 1490637 76027 bytes_in 18081365 76027 station_ip 5.120.66.170 76027 port 15728774 75995 remote_ip 5.5.5.211 76004 username soleymani 76004 unique_id port 76004 terminate_cause Lost-Carrier 76004 bytes_out 138756 76004 bytes_in 2065698 76004 station_ip 5.119.242.151 76004 port 15728752 76004 nas_port_type Virtual 76004 remote_ip 5.5.5.205 76005 username alirezazamani 76005 unique_id port 76005 terminate_cause Lost-Carrier 76005 bytes_out 332992 76005 bytes_in 4889288 76005 station_ip 5.119.253.192 76005 port 15728751 76005 nas_port_type Virtual 76005 remote_ip 5.5.5.206 76009 username asadi 76009 unique_id port 76009 terminate_cause User-Request 76009 bytes_out 107634 76009 bytes_in 1270844 76009 station_ip 83.122.46.153 76009 port 15728755 76009 nas_port_type Virtual 76009 remote_ip 5.5.5.204 76015 username asadi 76015 unique_id port 76015 terminate_cause User-Request 76015 bytes_out 7078 76015 bytes_in 22100 76015 station_ip 37.129.209.253 76015 port 15728763 76015 nas_port_type Virtual 76015 remote_ip 5.5.5.200 76016 username asadi 76016 unique_id port 76016 terminate_cause User-Request 76016 bytes_out 1518 76016 bytes_in 12692 76016 station_ip 37.129.209.253 76016 port 15728764 76016 nas_port_type Virtual 76016 remote_ip 5.5.5.200 76018 username aminvpn 76018 unique_id port 76018 terminate_cause User-Request 76018 bytes_out 4171784 76018 bytes_in 134367644 76018 station_ip 2.183.243.172 76018 port 15728765 76018 nas_port_type Virtual 76018 remote_ip 5.5.5.250 76023 username soleymani 76023 unique_id port 76023 terminate_cause Lost-Carrier 76023 bytes_out 733006 76023 bytes_in 361735 76023 station_ip 5.119.30.81 76023 port 15728772 76023 nas_port_type Virtual 76023 remote_ip 5.5.5.196 76034 username dehghan 76034 unique_id port 76034 terminate_cause User-Request 76034 bytes_out 249808 76034 bytes_in 6312049 76034 station_ip 83.122.3.29 76034 port 15728787 76034 nas_port_type Virtual 76034 remote_ip 5.5.5.188 76039 username arabpour 76039 unique_id port 76039 terminate_cause User-Request 76039 bytes_out 0 76039 bytes_in 0 76039 station_ip 83.123.93.31 76039 port 15728792 76039 nas_port_type Virtual 76039 remote_ip 5.5.5.184 76040 username arabpour 76040 unique_id port 76040 terminate_cause User-Request 76040 bytes_out 493718 76040 bytes_in 12610027 76040 station_ip 83.123.93.31 76040 port 15728793 76040 nas_port_type Virtual 76040 remote_ip 5.5.5.184 76042 username pouria 76042 unique_id port 76042 terminate_cause Lost-Carrier 76042 bytes_out 14066431 76042 bytes_in 500742237 76042 station_ip 151.235.93.36 76042 port 15728784 76042 nas_port_type Virtual 76042 remote_ip 5.5.5.190 76049 username ahmadi 76049 unique_id port 76049 terminate_cause User-Request 76049 bytes_out 11255 76049 bytes_in 55986 76049 station_ip 83.122.156.239 76049 port 15728804 76049 nas_port_type Virtual 76049 remote_ip 5.5.5.183 76051 username reza2742 76051 unique_id port 76051 terminate_cause Lost-Carrier 76051 bytes_out 116 76051 bytes_in 60710 76051 station_ip 151.235.110.87 76051 port 15728803 76051 nas_port_type Virtual 76051 remote_ip 5.5.5.176 76053 username asadi 76053 unique_id port 76053 terminate_cause User-Request 76053 bytes_out 194733 76053 bytes_in 4312126 76053 station_ip 83.122.18.178 76053 port 15728807 76053 nas_port_type Virtual 76053 remote_ip 5.5.5.182 76056 username arabpour 76056 unique_id port 76056 terminate_cause User-Request 76056 bytes_out 318453 76056 bytes_in 8994344 76056 station_ip 113.203.115.88 76056 port 15728810 76056 nas_port_type Virtual 76056 remote_ip 5.5.5.174 76058 username arabpour 76058 unique_id port 76058 terminate_cause User-Request 76058 bytes_out 345554 76058 bytes_in 8939228 76058 station_ip 113.203.115.88 76027 nas_port_type Virtual 76027 remote_ip 5.5.5.226 76029 username soleymani 76029 unique_id port 76029 terminate_cause Lost-Carrier 76029 bytes_out 468820 76029 bytes_in 626176 76029 station_ip 5.120.4.89 76029 port 15728780 76029 nas_port_type Virtual 76029 remote_ip 5.5.5.194 76031 username soleymani 76031 unique_id port 76031 terminate_cause Lost-Carrier 76031 bytes_out 31196 76031 bytes_in 341368 76031 station_ip 5.119.132.158 76031 port 15728783 76031 nas_port_type Virtual 76031 remote_ip 5.5.5.191 76032 username dehghan 76032 unique_id port 76032 terminate_cause User-Request 76032 bytes_out 159603 76032 bytes_in 2114488 76032 station_ip 83.122.3.29 76032 port 15728786 76032 nas_port_type Virtual 76032 remote_ip 5.5.5.188 76036 username amin.insta22 76036 unique_id port 76036 terminate_cause User-Request 76036 bytes_out 8536661 76036 bytes_in 15629926 76036 station_ip 31.56.218.108 76036 port 15728771 76036 nas_port_type Virtual 76036 remote_ip 5.5.5.197 76037 username soleymani 76037 unique_id port 76037 terminate_cause Lost-Carrier 76037 bytes_out 76865 76037 bytes_in 574890 76037 station_ip 5.119.1.34 76037 port 15728789 76037 nas_port_type Virtual 76037 remote_ip 5.5.5.187 76041 username soleymani 76041 unique_id port 76041 terminate_cause Lost-Carrier 76041 bytes_out 33566 76041 bytes_in 184460 76041 station_ip 5.119.120.19 76041 port 15728791 76041 nas_port_type Virtual 76041 remote_ip 5.5.5.185 76044 username asadi 76044 unique_id port 76044 terminate_cause User-Request 76044 bytes_out 135841 76044 bytes_in 1991689 76044 station_ip 83.122.18.178 76044 port 15728795 76044 nas_port_type Virtual 76044 remote_ip 5.5.5.182 76045 username aminvpn 76045 unique_id port 76045 terminate_cause User-Request 76045 bytes_out 0 76045 bytes_in 0 76045 station_ip 5.233.59.243 76045 port 15728796 76045 nas_port_type Virtual 76045 remote_ip 5.5.5.181 76047 username mahbobeh 76047 unique_id port 76047 terminate_cause Lost-Carrier 76047 bytes_out 207073 76047 bytes_in 1462366 76047 station_ip 83.122.73.140 76047 port 15728790 76047 nas_port_type Virtual 76047 remote_ip 5.5.5.186 76048 username ahmadi 76048 unique_id port 76048 terminate_cause User-Request 76048 bytes_out 293609 76048 bytes_in 2221577 76048 station_ip 83.122.156.239 76048 port 15728800 76048 nas_port_type Virtual 76048 remote_ip 5.5.5.183 76050 username soleymani 76050 unique_id port 76050 terminate_cause Lost-Carrier 76050 bytes_out 2160196 76050 bytes_in 68129315 76050 station_ip 5.119.38.8 76050 port 15728798 76050 nas_port_type Virtual 76050 remote_ip 5.5.5.180 76054 username arabpour 76054 unique_id port 76054 terminate_cause User-Request 76054 bytes_out 230073 76054 bytes_in 6439694 76054 station_ip 113.203.115.88 76054 port 15728808 76054 nas_port_type Virtual 76054 remote_ip 5.5.5.174 76055 username arabpour 76055 unique_id port 76055 terminate_cause User-Request 76055 bytes_out 410252 76055 bytes_in 11758025 76055 station_ip 113.203.115.88 76055 port 15728809 76055 nas_port_type Virtual 76055 remote_ip 5.5.5.174 76060 username reza2742 76060 unique_id port 76060 terminate_cause Lost-Carrier 76060 bytes_out 833650 76060 bytes_in 1716176 76060 station_ip 151.235.110.87 76060 port 15728805 76060 nas_port_type Virtual 76060 remote_ip 5.5.5.175 76065 username asadi 76065 unique_id port 76065 terminate_cause User-Request 76065 bytes_out 82609 76065 bytes_in 1440195 76065 station_ip 83.122.18.178 76065 port 15728818 76065 nas_port_type Virtual 76065 remote_ip 5.5.5.182 76067 username arabpour 76067 unique_id port 76067 terminate_cause User-Request 76067 bytes_out 324485 76067 bytes_in 8379228 76028 station_ip 5.202.24.196 76028 port 15728781 76028 nas_port_type Virtual 76028 remote_ip 5.5.5.193 76030 username ahmadi 76030 unique_id port 76030 terminate_cause User-Request 76030 bytes_out 249208 76030 bytes_in 1223441 76030 station_ip 83.122.147.187 76030 port 15728782 76030 nas_port_type Virtual 76030 remote_ip 5.5.5.192 76033 username aminvpn 76033 unique_id port 76033 terminate_cause Lost-Carrier 76033 bytes_out 431027 76033 bytes_in 12296456 76033 station_ip 2.183.242.5 76033 port 15728785 76033 nas_port_type Virtual 76033 remote_ip 5.5.5.189 76035 username dehghan 76035 unique_id port 76035 terminate_cause User-Request 76035 bytes_out 158246 76035 bytes_in 2827417 76035 station_ip 83.122.3.29 76035 port 15728788 76035 nas_port_type Virtual 76035 remote_ip 5.5.5.188 76038 username amin.insta22 76038 unique_id port 76038 terminate_cause Lost-Carrier 76038 bytes_out 13624573 76038 bytes_in 322912238 76038 station_ip 31.56.218.108 76038 port 15728769 76038 nas_port_type Virtual 76038 remote_ip 5.5.5.231 76043 username ahmadi 76043 unique_id port 76043 terminate_cause User-Request 76043 bytes_out 59187 76043 bytes_in 824121 76043 station_ip 83.122.156.239 76043 port 15728794 76043 nas_port_type Virtual 76043 remote_ip 5.5.5.183 76046 username ahmadi 76046 unique_id port 76046 terminate_cause User-Request 76046 bytes_out 72301 76046 bytes_in 223129 76046 station_ip 83.122.156.239 76046 port 15728797 76046 nas_port_type Virtual 76046 remote_ip 5.5.5.183 76052 username arabpour 76052 unique_id port 76052 terminate_cause User-Request 76052 bytes_out 295894 76052 bytes_in 8828464 76052 station_ip 113.203.115.88 76052 port 15728806 76052 nas_port_type Virtual 76052 remote_ip 5.5.5.174 76057 username reza 76057 unique_id port 76057 terminate_cause User-Request 76057 bytes_out 0 76057 bytes_in 0 76057 station_ip 113.203.105.9 76057 port 15728811 76057 nas_port_type Virtual 76057 remote_ip 5.5.5.173 76061 username arabpour 76061 unique_id port 76061 terminate_cause User-Request 76061 bytes_out 314836 76061 bytes_in 9016195 76061 station_ip 113.203.115.88 76061 port 15728814 76061 nas_port_type Virtual 76061 remote_ip 5.5.5.174 76062 username aminsaeedi 76062 unique_id port 76062 terminate_cause User-Request 76062 bytes_out 0 76062 bytes_in 0 76062 station_ip 31.59.35.71 76062 port 15728817 76062 nas_port_type Virtual 76062 remote_ip 5.5.5.172 76063 username reza 76063 unique_id port 76063 terminate_cause User-Request 76063 bytes_out 474106 76063 bytes_in 13774975 76063 station_ip 113.203.105.9 76063 port 15728812 76063 nas_port_type Virtual 76063 remote_ip 5.5.5.173 76064 username soleymani 76064 unique_id port 76064 terminate_cause Lost-Carrier 76064 bytes_out 1263353 76064 bytes_in 39543286 76064 station_ip 5.119.186.247 76064 port 15728802 76064 nas_port_type Virtual 76064 remote_ip 5.5.5.177 76066 username iranmanesh 76066 unique_id port 76066 terminate_cause Lost-Carrier 76066 bytes_out 7092930 76066 bytes_in 198149966 76066 station_ip 5.112.138.249 76066 port 15728726 76066 nas_port_type Virtual 76066 remote_ip 5.5.5.220 76072 username arabpour 76072 unique_id port 76072 terminate_cause User-Request 76072 bytes_out 362482 76072 bytes_in 9094460 76072 station_ip 113.203.115.88 76072 port 15728825 76072 nas_port_type Virtual 76072 remote_ip 5.5.5.174 76073 username alinezhad 76073 unique_id port 76073 terminate_cause User-Request 76073 bytes_out 103714 76073 bytes_in 507259 76073 station_ip 5.202.24.196 76073 port 15728815 76073 nas_port_type Virtual 76073 remote_ip 5.5.5.193 76076 username arabpour 76076 unique_id port 76076 terminate_cause User-Request 76058 port 15728813 76058 nas_port_type Virtual 76058 remote_ip 5.5.5.174 76059 username alirezazamani 76059 unique_id port 76059 terminate_cause User-Request 76059 bytes_out 4322054 76059 bytes_in 99442496 76059 station_ip 37.27.30.7 76059 port 15728801 76059 nas_port_type Virtual 76059 remote_ip 5.5.5.178 76075 username arabpour 76075 unique_id port 76075 terminate_cause User-Request 76075 bytes_out 160905 76075 bytes_in 3326975 76075 station_ip 113.203.115.88 76075 port 15728828 76075 nas_port_type Virtual 76075 remote_ip 5.5.5.174 76078 username arabpour 76078 unique_id port 76078 terminate_cause User-Request 76078 bytes_out 261487 76078 bytes_in 5862127 76078 station_ip 113.203.115.88 76078 port 15728832 76078 nas_port_type Virtual 76078 remote_ip 5.5.5.174 76080 username alinezhad 76080 unique_id port 76080 terminate_cause User-Request 76080 bytes_out 108140 76080 bytes_in 351601 76080 station_ip 5.202.24.196 76080 port 15728827 76080 nas_port_type Virtual 76080 remote_ip 5.5.5.193 76083 username soleymani 76083 unique_id port 76083 terminate_cause Lost-Carrier 76083 bytes_out 148666 76083 bytes_in 491681 76083 station_ip 5.120.120.225 76083 port 15728829 76083 nas_port_type Virtual 76083 remote_ip 5.5.5.170 76087 username asadi 76087 unique_id port 76087 terminate_cause User-Request 76087 bytes_out 94429 76087 bytes_in 1643249 76087 station_ip 83.122.18.178 76087 port 15728842 76087 nas_port_type Virtual 76087 remote_ip 5.5.5.182 76090 username soleymani 76090 unique_id port 76090 terminate_cause NAS-Error 76090 bytes_out 24 76090 bytes_in 208 76090 station_ip 5.120.3.158 76090 port 15728844 76090 nas_port_type Virtual 76090 remote_ip 5.5.5.165 76092 username amin.insta22 76092 unique_id port 76092 terminate_cause Lost-Carrier 76092 bytes_out 6856801 76092 bytes_in 193868666 76092 station_ip 5.119.51.223 76092 port 15728835 76092 nas_port_type Virtual 76092 remote_ip 5.5.5.169 76098 username aminvpn 76098 unique_id port 76098 terminate_cause User-Request 76098 bytes_out 0 76098 bytes_in 0 76098 station_ip 78.39.27.27 76098 port 15728852 76098 nas_port_type Virtual 76098 remote_ip 5.5.5.160 76100 username alinezhad 76100 unique_id port 76100 terminate_cause User-Request 76100 bytes_out 0 76100 bytes_in 0 76100 station_ip 83.123.140.173 76100 port 15728854 76100 nas_port_type Virtual 76100 remote_ip 5.5.5.159 76101 username mahbobeh 76101 unique_id port 76101 terminate_cause Lost-Carrier 76101 bytes_out 1613409 76101 bytes_in 16522794 76101 station_ip 83.122.73.140 76101 port 15728845 76101 nas_port_type Virtual 76101 remote_ip 5.5.5.186 76103 username alinezhad 76103 unique_id port 76103 terminate_cause User-Request 76103 bytes_out 0 76103 bytes_in 0 76103 station_ip 113.203.81.65 76103 port 15728856 76103 nas_port_type Virtual 76103 remote_ip 5.5.5.158 76104 username alinezhad 76104 unique_id port 76104 terminate_cause User-Request 76104 bytes_out 0 76104 bytes_in 0 76104 station_ip 83.123.231.83 76104 port 15728859 76104 nas_port_type Virtual 76104 remote_ip 5.5.5.155 76106 username zoha 76106 unique_id port 76106 terminate_cause Lost-Carrier 76106 bytes_out 4476580 76106 bytes_in 48620160 76106 station_ip 5.120.66.170 76106 port 15728851 76106 nas_port_type Virtual 76106 remote_ip 5.5.5.226 76107 username alirezazamani 76107 unique_id port 76107 terminate_cause Lost-Carrier 76107 bytes_out 1602748 76107 bytes_in 23370664 76107 station_ip 5.119.38.4 76107 port 15728849 76107 nas_port_type Virtual 76107 remote_ip 5.5.5.162 76112 username asadi 76112 unique_id port 76112 terminate_cause User-Request 76112 bytes_out 260836 76112 bytes_in 7752536 76067 station_ip 113.203.115.88 76067 port 15728819 76067 nas_port_type Virtual 76067 remote_ip 5.5.5.174 76068 username arabpour 76068 unique_id port 76068 terminate_cause User-Request 76068 bytes_out 338854 76068 bytes_in 8839558 76068 station_ip 113.203.115.88 76068 port 15728820 76068 nas_port_type Virtual 76068 remote_ip 5.5.5.174 76069 username arabpour 76069 unique_id port 76069 terminate_cause User-Request 76069 bytes_out 346450 76069 bytes_in 9638358 76069 station_ip 113.203.115.88 76069 port 15728821 76069 nas_port_type Virtual 76069 remote_ip 5.5.5.174 76070 username ahmadi 76070 unique_id port 76070 terminate_cause User-Request 76070 bytes_out 191308 76070 bytes_in 4061610 76070 station_ip 83.122.156.239 76070 port 15728822 76070 nas_port_type Virtual 76070 remote_ip 5.5.5.183 76071 username arabpour 76071 unique_id port 76071 terminate_cause User-Request 76071 bytes_out 295391 76071 bytes_in 6507865 76071 station_ip 113.203.115.88 76071 port 15728824 76071 nas_port_type Virtual 76071 remote_ip 5.5.5.174 76074 username arabpour 76074 unique_id port 76074 terminate_cause User-Request 76074 bytes_out 218083 76074 bytes_in 4337376 76074 station_ip 113.203.115.88 76074 port 15728826 76074 nas_port_type Virtual 76074 remote_ip 5.5.5.174 76084 username aminvpn 76084 unique_id port 76084 terminate_cause Lost-Carrier 76084 bytes_out 2002223 76084 bytes_in 54784792 76084 station_ip 2.183.241.98 76084 port 15728823 76084 nas_port_type Virtual 76084 remote_ip 5.5.5.171 76086 username soleymani 76086 unique_id port 76086 terminate_cause User-Request 76086 bytes_out 0 76086 bytes_in 0 76086 station_ip 5.120.165.35 76086 port 15728838 76086 nas_port_type Virtual 76086 remote_ip 5.5.5.168 76089 username mahbobeh 76089 unique_id port 76089 terminate_cause Lost-Carrier 76089 bytes_out 1624152 76089 bytes_in 29200141 76089 station_ip 83.122.73.140 76089 port 15728816 76089 nas_port_type Virtual 76089 remote_ip 5.5.5.186 76095 username ahmadi 76095 unique_id port 76095 terminate_cause User-Request 76095 bytes_out 0 76095 bytes_in 0 76095 station_ip 83.122.227.163 76095 port 15728848 76095 nas_port_type Virtual 76095 remote_ip 5.5.5.163 76096 username alinezhad 76096 unique_id port 76096 terminate_cause User-Request 76096 bytes_out 1029306 76096 bytes_in 17544775 76096 station_ip 5.202.24.196 76096 port 15728836 76096 nas_port_type Virtual 76096 remote_ip 5.5.5.193 76099 username aminvpn 76099 unique_id port 76099 terminate_cause User-Request 76099 bytes_out 159315 76099 bytes_in 3790608 76099 station_ip 78.39.27.27 76099 port 15728853 76099 nas_port_type Virtual 76099 remote_ip 5.5.5.160 76112 station_ip 37.129.188.196 76112 port 15728870 76112 nas_port_type Virtual 76112 remote_ip 5.5.5.151 81194 bytes_out 0 81194 bytes_in 0 81194 station_ip 5.119.30.76 81194 port 14 81194 unique_id port 81194 remote_ip 10.8.0.6 81201 username aminvpn 81201 mac 81201 bytes_out 0 76117 username asadi 76117 unique_id port 76117 terminate_cause User-Request 76117 bytes_out 79889 76117 bytes_in 626229 76117 station_ip 37.129.188.196 76117 port 15728642 76117 nas_port_type Virtual 76117 remote_ip 5.5.5.255 76121 username asadi 76121 unique_id port 76121 terminate_cause User-Request 76121 bytes_out 214295 76121 bytes_in 2140448 76121 station_ip 37.129.188.196 76121 port 15728647 76121 nas_port_type Virtual 76121 remote_ip 5.5.5.255 76126 username alirezazamani 76126 unique_id port 76126 terminate_cause Lost-Carrier 76126 bytes_out 1219589 76126 bytes_in 1944078 76126 station_ip 5.119.167.240 76126 port 15728650 76126 nas_port_type Virtual 81201 bytes_in 0 76076 bytes_out 295126 76076 bytes_in 5739155 76076 station_ip 113.203.115.88 76076 port 15728830 76076 nas_port_type Virtual 76076 remote_ip 5.5.5.174 76077 username arabpour 76077 unique_id port 76077 terminate_cause User-Request 76077 bytes_out 185760 76077 bytes_in 4523991 76077 station_ip 113.203.115.88 76077 port 15728831 76077 nas_port_type Virtual 76077 remote_ip 5.5.5.174 76079 username arabpour 76079 unique_id port 76079 terminate_cause User-Request 76079 bytes_out 202773 76079 bytes_in 4088591 76079 station_ip 113.203.115.88 76079 port 15728833 76079 nas_port_type Virtual 76079 remote_ip 5.5.5.174 76081 username ahmadi 76081 unique_id port 76081 terminate_cause User-Request 76081 bytes_out 0 76081 bytes_in 0 76081 station_ip 83.122.156.239 76081 port 15728834 76081 nas_port_type Virtual 76081 remote_ip 5.5.5.183 76082 username rashidi 76082 unique_id port 76082 terminate_cause User-Request 76082 bytes_out 10113470 76082 bytes_in 172642929 76082 station_ip 5.119.113.102 76082 port 15728799 76082 nas_port_type Virtual 76082 remote_ip 5.5.5.179 76085 username asadi 76085 unique_id port 76085 terminate_cause User-Request 76085 bytes_out 104680 76085 bytes_in 1650016 76085 station_ip 83.122.18.178 76085 port 15728837 76085 nas_port_type Virtual 76085 remote_ip 5.5.5.182 76088 username soleymani 76088 unique_id port 76088 terminate_cause Lost-Carrier 76088 bytes_out 7506 76088 bytes_in 149756 76088 station_ip 5.120.165.35 76088 port 15728839 76088 nas_port_type Virtual 76088 remote_ip 5.5.5.168 76091 username arabpour 76091 unique_id port 76091 terminate_cause User-Request 76091 bytes_out 357730 76091 bytes_in 7847914 76091 station_ip 83.122.183.188 76091 port 15728846 76091 nas_port_type Virtual 76091 remote_ip 5.5.5.164 76093 username mobina 76093 unique_id port 76093 terminate_cause User-Request 76093 bytes_out 4709438 76093 bytes_in 88759736 76093 station_ip 5.53.36.12 76093 port 15728840 76093 nas_port_type Virtual 76093 remote_ip 5.5.5.167 76094 username aminvpn 76094 unique_id port 76094 terminate_cause Lost-Carrier 76094 bytes_out 3056814 76094 bytes_in 116877114 76094 station_ip 2.183.253.33 76094 port 15728841 76094 nas_port_type Virtual 76094 remote_ip 5.5.5.166 76097 username alinezhad 76097 unique_id port 76097 terminate_cause User-Request 76097 bytes_out 0 76097 bytes_in 0 76097 station_ip 83.123.40.123 76097 port 15728850 76097 nas_port_type Virtual 76097 remote_ip 5.5.5.161 76102 username alinezhad 76102 unique_id port 76102 terminate_cause User-Request 76102 bytes_out 0 76102 bytes_in 0 76102 station_ip 113.203.81.65 76102 port 15728855 76102 nas_port_type Virtual 76102 remote_ip 5.5.5.158 76105 username amin.insta21 76105 unique_id port 76105 terminate_cause Lost-Carrier 76105 bytes_out 268498 76105 bytes_in 1472993 76105 station_ip 151.235.118.188 76105 port 15728857 76105 nas_port_type Virtual 76105 remote_ip 5.5.5.157 76108 username zoha 76108 unique_id port 76108 terminate_cause Lost-Carrier 76108 bytes_out 1242314 76108 bytes_in 15769992 76108 station_ip 5.120.66.170 76108 port 15728860 76108 nas_port_type Virtual 76108 remote_ip 5.5.5.226 76109 username ahmadipour 76109 unique_id port 76109 terminate_cause Lost-Carrier 76109 bytes_out 735156 76109 bytes_in 15443036 76109 station_ip 113.203.56.29 76109 port 15728861 76109 nas_port_type Virtual 76109 remote_ip 5.5.5.154 81195 station_ip 5.119.30.76 81195 port 14 81195 unique_id port 81195 remote_ip 10.8.0.6 81196 username sobhan 81196 unique_id port 81196 terminate_cause User-Request 81196 bytes_out 477064 81196 bytes_in 3514325 76111 username amin.insta21 76111 unique_id port 76111 terminate_cause Lost-Carrier 76111 bytes_out 5752710 76111 bytes_in 59576390 76111 station_ip 151.235.87.149 76111 port 15728858 76111 nas_port_type Virtual 76111 remote_ip 5.5.5.156 76113 username asadi 76113 unique_id port 76113 terminate_cause User-Request 76113 bytes_out 93328 76113 bytes_in 1543040 76113 station_ip 37.129.188.196 76113 port 15728871 76113 nas_port_type Virtual 76113 remote_ip 5.5.5.151 76116 username arabpour 76116 unique_id port 76116 terminate_cause User-Request 76116 bytes_out 549076 76116 bytes_in 13282254 76116 station_ip 113.203.84.19 76116 port 15728641 76116 nas_port_type Virtual 76116 remote_ip 5.5.5.254 76118 username asadi 76118 unique_id port 76118 terminate_cause User-Request 76118 bytes_out 235223 76118 bytes_in 4476544 76118 station_ip 37.129.188.196 76118 port 15728643 76118 nas_port_type Virtual 76118 remote_ip 5.5.5.255 76122 username asadi 76122 unique_id port 76122 terminate_cause User-Request 76122 bytes_out 261931 76122 bytes_in 3971169 76122 station_ip 37.129.188.196 76122 port 15728648 76122 nas_port_type Virtual 76122 remote_ip 5.5.5.255 76124 username mahbobeh 76124 unique_id port 76124 terminate_cause Lost-Carrier 76124 bytes_out 717131 76124 bytes_in 12811871 76124 station_ip 83.122.73.140 76124 port 15728645 76124 nas_port_type Virtual 76124 remote_ip 5.5.5.253 76127 username alirezazamani 76127 unique_id port 76127 terminate_cause Lost-Carrier 76127 bytes_out 550446 76127 bytes_in 331700 76127 station_ip 5.119.167.240 76127 port 15728651 76127 nas_port_type Virtual 76127 remote_ip 5.5.5.251 76129 username alirezazamani 76129 unique_id port 76129 terminate_cause User-Request 76129 bytes_out 1010153 76129 bytes_in 3534744 76129 station_ip 5.119.167.240 76129 port 15728654 76129 nas_port_type Virtual 76129 remote_ip 5.5.5.251 76130 username asadi 76130 unique_id port 76130 terminate_cause User-Request 76130 bytes_out 77038 76130 bytes_in 313830 76130 station_ip 37.129.188.196 76130 port 15728658 76130 nas_port_type Virtual 76130 remote_ip 5.5.5.255 76135 username soleymani 76135 kill_reason Maximum number of concurrent logins reached 76135 unique_id port 76135 bytes_out 0 76135 bytes_in 0 76135 station_ip 5.119.141.203 76135 port 15728663 76135 nas_port_type Virtual 76136 username soleymani 76136 kill_reason Maximum number of concurrent logins reached 76136 unique_id port 76136 bytes_out 0 76136 bytes_in 0 76136 station_ip 5.119.141.203 76136 port 15728664 76136 nas_port_type Virtual 76140 username soleymani 76140 kill_reason Maximum number of concurrent logins reached 76140 unique_id port 76140 bytes_out 0 76140 bytes_in 0 76140 station_ip 5.119.141.203 76140 port 15728668 76140 nas_port_type Virtual 76142 username soleymani 76142 unique_id port 76142 terminate_cause Lost-Carrier 76142 bytes_out 158467 76142 bytes_in 523580 76142 station_ip 5.120.65.36 76142 port 15728660 76142 nas_port_type Virtual 76142 remote_ip 5.5.5.245 76144 username soleymani 76144 unique_id port 76144 terminate_cause Lost-Carrier 76144 bytes_out 432431 76144 bytes_in 1133446 76144 station_ip 5.119.141.203 76144 port 15728669 76144 nas_port_type Virtual 76144 remote_ip 5.5.5.244 76145 username soleymani 76145 unique_id port 76145 terminate_cause Lost-Carrier 76145 bytes_out 110783 76145 bytes_in 603447 76145 station_ip 5.120.62.229 76145 port 15728673 76145 nas_port_type Virtual 76145 remote_ip 5.5.5.241 76146 username soleymani 76146 unique_id port 76146 terminate_cause User-Request 76146 bytes_out 0 76146 bytes_in 0 76146 station_ip 5.120.20.108 76146 port 15728675 76146 nas_port_type Virtual 76146 remote_ip 5.5.5.239 76149 username soleymani 76149 unique_id port 76115 username asadi 76115 unique_id port 76115 terminate_cause User-Request 76115 bytes_out 170451 76115 bytes_in 2848123 76115 station_ip 37.129.188.196 76115 port 15728640 76115 nas_port_type Virtual 76115 remote_ip 5.5.5.255 76119 username asadi 76119 unique_id port 76119 terminate_cause User-Request 76119 bytes_out 181793 76119 bytes_in 1379228 76119 station_ip 37.129.188.196 76119 port 15728644 76119 nas_port_type Virtual 76119 remote_ip 5.5.5.255 76120 username asadi 76120 unique_id port 76120 terminate_cause User-Request 76120 bytes_out 305575 76120 bytes_in 5081873 76120 station_ip 37.129.188.196 76120 port 15728646 76120 nas_port_type Virtual 76120 remote_ip 5.5.5.255 76123 username asadi 76123 unique_id port 76123 terminate_cause User-Request 76123 bytes_out 196321 76123 bytes_in 2108610 76123 station_ip 37.129.188.196 76123 port 15728649 76123 nas_port_type Virtual 76123 remote_ip 5.5.5.255 76125 username alinezhad 76125 unique_id port 76125 terminate_cause User-Request 76125 bytes_out 0 76125 bytes_in 0 76125 station_ip 113.203.78.46 76125 port 15728652 76125 nas_port_type Virtual 76125 remote_ip 5.5.5.250 76128 username ahmadi 76128 unique_id port 76128 terminate_cause User-Request 76128 bytes_out 40126 76128 bytes_in 311976 76128 station_ip 83.122.222.163 76128 port 15728653 76128 nas_port_type Virtual 76128 remote_ip 5.5.5.249 76131 username soleymani 76131 unique_id port 76131 terminate_cause Lost-Carrier 76131 bytes_out 140947 76131 bytes_in 899745 76131 station_ip 5.119.212.235 76131 port 15728655 76131 nas_port_type Virtual 76131 remote_ip 5.5.5.248 76132 username alirezazamani 76132 unique_id port 76132 terminate_cause Lost-Carrier 76132 bytes_out 465184 76132 bytes_in 18569531 76132 station_ip 5.119.167.240 76132 port 15728657 76132 nas_port_type Virtual 76132 remote_ip 5.5.5.251 76133 username soleymani 76133 kill_reason Maximum number of concurrent logins reached 76133 unique_id port 76133 bytes_out 0 76133 bytes_in 0 76133 station_ip 5.119.141.203 76133 port 15728661 76133 nas_port_type Virtual 76137 username soleymani 76137 kill_reason Maximum number of concurrent logins reached 76137 unique_id port 76137 bytes_out 0 76137 bytes_in 0 76137 station_ip 5.119.141.203 76137 port 15728665 76137 nas_port_type Virtual 76143 username alirezazamani 76143 unique_id port 76143 terminate_cause Lost-Carrier 76143 bytes_out 1096580 76143 bytes_in 8033842 76143 station_ip 5.119.167.240 76143 port 15728670 76143 nas_port_type Virtual 76143 remote_ip 5.5.5.251 76150 username asadi 76150 unique_id port 76150 terminate_cause User-Request 76150 bytes_out 78198 76150 bytes_in 762500 76150 station_ip 37.129.188.196 76150 port 15728679 76150 nas_port_type Virtual 76150 remote_ip 5.5.5.255 76156 username asadi 76156 unique_id port 76156 terminate_cause User-Request 76156 bytes_out 51074 76156 bytes_in 338071 76156 station_ip 37.129.188.196 76156 port 15728685 76156 nas_port_type Virtual 76156 remote_ip 5.5.5.255 76157 username asadi 76157 unique_id port 76157 terminate_cause User-Request 76157 bytes_out 33726 76157 bytes_in 173225 76157 station_ip 37.129.188.196 76157 port 15728686 76157 nas_port_type Virtual 76157 remote_ip 5.5.5.255 76158 username soleymani 76158 unique_id port 76158 terminate_cause User-Request 76158 bytes_out 0 76158 bytes_in 0 76158 station_ip 5.119.149.173 76158 port 15728687 76158 nas_port_type Virtual 76158 remote_ip 5.5.5.233 76159 username soleymani 76159 unique_id port 76159 terminate_cause User-Request 76159 bytes_out 0 76159 bytes_in 0 76159 station_ip 5.119.149.173 76159 port 15728688 76159 nas_port_type Virtual 76159 remote_ip 5.5.5.233 76126 remote_ip 5.5.5.252 76134 username soleymani 76134 kill_reason Maximum number of concurrent logins reached 76134 unique_id port 76134 bytes_out 0 76134 bytes_in 0 76134 station_ip 5.119.141.203 76134 port 15728662 76134 nas_port_type Virtual 76138 username soleymani 76138 kill_reason Maximum number of concurrent logins reached 76138 unique_id port 76138 bytes_out 0 76138 bytes_in 0 76138 station_ip 5.119.141.203 76138 port 15728666 76138 nas_port_type Virtual 76139 username soleymani 76139 kill_reason Maximum number of concurrent logins reached 76139 unique_id port 76139 bytes_out 0 76139 bytes_in 0 76139 station_ip 5.119.141.203 76139 port 15728667 76139 nas_port_type Virtual 76141 username soleymani 76141 unique_id port 76141 terminate_cause Lost-Carrier 76141 bytes_out 148625 76141 bytes_in 771259 76141 station_ip 5.120.24.132 76141 port 15728656 76141 nas_port_type Virtual 76141 remote_ip 5.5.5.247 76147 username hamideh 76147 unique_id port 76147 terminate_cause Lost-Carrier 76147 bytes_out 1899481 76147 bytes_in 37326634 76147 station_ip 5.119.176.24 76147 port 15728659 76147 nas_port_type Virtual 76147 remote_ip 5.5.5.246 76148 username soleymani 76148 unique_id port 76148 terminate_cause User-Request 76148 bytes_out 0 76148 bytes_in 0 76148 station_ip 5.120.20.108 76148 port 15728676 76148 nas_port_type Virtual 76148 remote_ip 5.5.5.239 76151 username alinezhad 76151 unique_id port 76151 terminate_cause User-Request 76151 bytes_out 0 76151 bytes_in 0 76151 station_ip 83.122.45.4 76151 port 15728680 76151 nas_port_type Virtual 76151 remote_ip 5.5.5.238 76153 username soleymani 76153 unique_id port 76153 terminate_cause Lost-Carrier 76153 bytes_out 329708 76153 bytes_in 1632684 76153 station_ip 5.120.20.108 76153 port 15728678 76153 nas_port_type Virtual 76153 remote_ip 5.5.5.239 76154 username soleymani 76154 unique_id port 76154 terminate_cause Lost-Carrier 76154 bytes_out 67982 76154 bytes_in 199642 76154 station_ip 5.119.10.234 76154 port 15728682 76154 nas_port_type Virtual 76154 remote_ip 5.5.5.236 76162 username mobina 76162 unique_id port 76162 terminate_cause User-Request 76162 bytes_out 774945 76162 bytes_in 6335272 76162 station_ip 5.53.38.70 76162 port 15728690 76162 nas_port_type Virtual 76162 remote_ip 5.5.5.232 76165 username alinezhad 76165 unique_id port 76165 terminate_cause User-Request 76165 bytes_out 0 76165 bytes_in 0 76165 station_ip 5.202.61.218 76165 port 15728694 76165 nas_port_type Virtual 76165 remote_ip 5.5.5.229 76172 username aminvpn 76172 unique_id port 76172 terminate_cause Lost-Carrier 76172 bytes_out 21474336 76172 bytes_in 848125788 76172 station_ip 2.183.243.203 76172 port 15728672 76172 nas_port_type Virtual 76172 remote_ip 5.5.5.242 76175 username abdilahyar 76175 unique_id port 76175 terminate_cause User-Request 76175 bytes_out 141987 76175 bytes_in 390978 76175 station_ip 5.120.16.56 76175 port 15728705 76175 nas_port_type Virtual 76175 remote_ip 5.5.5.224 76182 username soleymani 76182 kill_reason Maximum number of concurrent logins reached 76182 unique_id port 76182 bytes_out 0 76182 bytes_in 0 76182 station_ip 5.119.227.221 76182 port 15728715 76182 nas_port_type Virtual 76186 username soleymani 76186 kill_reason Maximum number of concurrent logins reached 76186 unique_id port 76186 bytes_out 0 76186 bytes_in 0 76186 station_ip 5.119.173.177 76186 port 15728719 76186 nas_port_type Virtual 76189 username soleymani 76189 kill_reason Maximum number of concurrent logins reached 76189 unique_id port 76189 bytes_out 0 76189 bytes_in 0 76189 station_ip 5.119.173.177 76189 port 15728722 76189 nas_port_type Virtual 76190 username soleymani 76190 kill_reason Maximum number of concurrent logins reached 76149 terminate_cause User-Request 76149 bytes_out 0 76149 bytes_in 0 76149 station_ip 5.120.20.108 76149 port 15728677 76149 nas_port_type Virtual 76149 remote_ip 5.5.5.239 76152 username ahmadi 76152 unique_id port 76152 terminate_cause User-Request 76152 bytes_out 46498 76152 bytes_in 301101 76152 station_ip 83.122.142.187 76152 port 15728683 76152 nas_port_type Virtual 76152 remote_ip 5.5.5.235 76155 username amin.insta22 76155 unique_id port 76155 terminate_cause Lost-Carrier 76155 bytes_out 1251685 76155 bytes_in 30329042 76155 station_ip 31.56.157.81 76155 port 15728681 76155 nas_port_type Virtual 76155 remote_ip 5.5.5.237 76164 username forozande 76164 unique_id port 76164 terminate_cause User-Request 76164 bytes_out 296 76164 bytes_in 12158 76164 station_ip 37.129.106.114 76164 port 15728692 76164 nas_port_type Virtual 76164 remote_ip 5.5.5.231 76166 username forozande 76166 unique_id port 76166 terminate_cause User-Request 76166 bytes_out 0 76166 bytes_in 0 76166 station_ip 37.129.32.99 76166 port 15728696 76166 nas_port_type Virtual 76166 remote_ip 5.5.5.228 76167 username asadi 76167 unique_id port 76167 terminate_cause User-Request 76167 bytes_out 56225 76167 bytes_in 335300 76167 station_ip 37.129.188.196 76167 port 15728695 76167 nas_port_type Virtual 76167 remote_ip 5.5.5.255 76171 username alirezazamani 76171 unique_id port 76171 terminate_cause User-Request 76171 bytes_out 324960 76171 bytes_in 10844195 76171 station_ip 37.27.43.28 76171 port 15728700 76171 nas_port_type Virtual 76171 remote_ip 5.5.5.226 76177 username soleymani 76177 unique_id port 76177 terminate_cause Lost-Carrier 76177 bytes_out 71588 76177 bytes_in 304957 76177 station_ip 5.120.139.234 76177 port 15728708 76177 nas_port_type Virtual 76177 remote_ip 5.5.5.222 76178 username ahmadi 76178 unique_id port 76178 terminate_cause User-Request 76178 bytes_out 0 76178 bytes_in 0 76178 station_ip 83.122.157.171 76178 port 15728709 76178 nas_port_type Virtual 76178 remote_ip 5.5.5.221 76179 username forozande 76179 unique_id port 76179 terminate_cause User-Request 76179 bytes_out 76113 76179 bytes_in 129255 76179 station_ip 37.129.54.13 76179 port 15728710 76179 nas_port_type Virtual 76179 remote_ip 5.5.5.220 76180 username soleymani 76180 kill_reason Maximum number of concurrent logins reached 76180 unique_id port 76180 bytes_out 0 76180 bytes_in 0 76180 station_ip 5.119.227.221 76180 port 15728713 76180 nas_port_type Virtual 76183 username soleymani 76183 kill_reason Maximum number of concurrent logins reached 76183 unique_id port 76183 bytes_out 0 76183 bytes_in 0 76183 station_ip 5.119.173.177 76183 port 15728716 76183 nas_port_type Virtual 76187 username soleymani 76187 kill_reason Maximum number of concurrent logins reached 76187 unique_id port 76187 bytes_out 0 76187 bytes_in 0 76187 station_ip 5.119.173.177 76187 port 15728720 76187 nas_port_type Virtual 76195 username zoha 76195 unique_id port 76195 terminate_cause Lost-Carrier 76195 bytes_out 578791 76195 bytes_in 3921819 76195 station_ip 5.120.66.170 76195 port 15728726 76195 nas_port_type Virtual 76195 remote_ip 5.5.5.216 76196 username asadi 76196 unique_id port 76196 terminate_cause User-Request 76196 bytes_out 10603 76196 bytes_in 34398 76196 station_ip 37.129.96.237 76196 port 15728729 76196 nas_port_type Virtual 76196 remote_ip 5.5.5.223 76199 username forozande 76199 unique_id port 76199 terminate_cause User-Request 76199 bytes_out 58611 76199 bytes_in 228530 76199 station_ip 37.129.54.13 76199 port 15728730 76199 nas_port_type Virtual 76199 remote_ip 5.5.5.220 76204 username alinezhad 76204 unique_id port 76204 terminate_cause User-Request 76204 bytes_out 43176 76160 username samira 76160 unique_id port 76160 terminate_cause Lost-Carrier 76160 bytes_out 52405 76160 bytes_in 905468 76160 station_ip 5.119.12.35 76160 port 15728684 76160 nas_port_type Virtual 76160 remote_ip 5.5.5.234 76161 username forozande 76161 unique_id port 76161 terminate_cause User-Request 76161 bytes_out 42238 76161 bytes_in 281442 76161 station_ip 37.129.106.114 76161 port 15728691 76161 nas_port_type Virtual 76161 remote_ip 5.5.5.231 76163 username soleymani 76163 unique_id port 76163 terminate_cause Lost-Carrier 76163 bytes_out 24386 76163 bytes_in 214284 76163 station_ip 5.119.149.173 76163 port 15728689 76163 nas_port_type Virtual 76163 remote_ip 5.5.5.233 76168 username forozande 76168 unique_id port 76168 terminate_cause User-Request 76168 bytes_out 18687 76168 bytes_in 39458 76168 station_ip 37.129.32.99 76168 port 15728697 76168 nas_port_type Virtual 76168 remote_ip 5.5.5.228 76169 username forozande 76169 unique_id port 76169 terminate_cause User-Request 76169 bytes_out 24522 76169 bytes_in 79855 76169 station_ip 37.129.107.103 76169 port 15728699 76169 nas_port_type Virtual 76169 remote_ip 5.5.5.227 76170 username alirezazamani 76170 unique_id port 76170 terminate_cause Lost-Carrier 76170 bytes_out 1017832 76170 bytes_in 26246106 76170 station_ip 37.27.19.224 76170 port 15728693 76170 nas_port_type Virtual 76170 remote_ip 5.5.5.230 76173 username soleymani 76173 unique_id port 76173 terminate_cause Lost-Carrier 76173 bytes_out 77202 76173 bytes_in 251035 76173 station_ip 5.119.114.150 76173 port 15728701 76173 nas_port_type Virtual 76173 remote_ip 5.5.5.225 76174 username alirezazamani 76174 unique_id port 76174 terminate_cause Lost-Carrier 76174 bytes_out 2927972 76174 bytes_in 52637842 76174 station_ip 94.241.178.166 76174 port 15728671 76174 nas_port_type Virtual 76174 remote_ip 5.5.5.243 76176 username asadi 76176 unique_id port 76176 terminate_cause User-Request 76176 bytes_out 111996 76176 bytes_in 1121581 76176 station_ip 37.129.96.237 76176 port 15728707 76176 nas_port_type Virtual 76176 remote_ip 5.5.5.223 76181 username soleymani 76181 kill_reason Maximum number of concurrent logins reached 76181 unique_id port 76181 bytes_out 0 76181 bytes_in 0 76181 station_ip 5.119.227.221 76181 port 15728714 76181 nas_port_type Virtual 76184 username soleymani 76184 kill_reason Maximum number of concurrent logins reached 76184 unique_id port 76184 bytes_out 0 76184 bytes_in 0 76184 station_ip 5.119.173.177 76184 port 15728717 76184 nas_port_type Virtual 76185 username soleymani 76185 kill_reason Maximum number of concurrent logins reached 76185 unique_id port 76185 bytes_out 0 76185 bytes_in 0 76185 station_ip 5.119.173.177 76185 port 15728718 76185 nas_port_type Virtual 76188 username soleymani 76188 kill_reason Maximum number of concurrent logins reached 76188 unique_id port 76188 bytes_out 0 76188 bytes_in 0 76188 station_ip 5.119.173.177 76188 port 15728721 76188 nas_port_type Virtual 76191 username soleymani 76191 unique_id port 76191 terminate_cause Lost-Carrier 76191 bytes_out 93319 76191 bytes_in 356875 76191 station_ip 5.119.254.75 76191 port 15728711 76191 nas_port_type Virtual 76191 remote_ip 5.5.5.219 76194 username soleymani 76194 unique_id port 76194 terminate_cause Lost-Carrier 76194 bytes_out 29480 76194 bytes_in 148758 76194 station_ip 5.120.182.40 76194 port 15728725 76194 nas_port_type Virtual 76194 remote_ip 5.5.5.217 76197 username alirezazamani 76197 unique_id port 76197 terminate_cause User-Request 76197 bytes_out 0 76197 bytes_in 0 76197 station_ip 37.27.43.28 76197 port 15728731 76197 nas_port_type Virtual 76197 remote_ip 5.5.5.226 76198 username iranmanesh 76198 unique_id port 76190 unique_id port 76190 bytes_out 0 76190 bytes_in 0 76190 station_ip 5.119.173.177 76190 port 15728723 76190 nas_port_type Virtual 76192 username soleymani 76192 unique_id port 76192 terminate_cause User-Request 76192 bytes_out 0 76192 bytes_in 0 76192 station_ip 5.120.182.40 76192 port 15728724 76192 nas_port_type Virtual 76192 remote_ip 5.5.5.217 76193 username soleymani 76193 unique_id port 76193 terminate_cause Lost-Carrier 76193 bytes_out 131996 76193 bytes_in 255680 76193 station_ip 5.119.7.104 76193 port 15728712 76193 nas_port_type Virtual 76193 remote_ip 5.5.5.218 76200 username reza 76200 unique_id port 76200 terminate_cause User-Request 76200 bytes_out 292260 76200 bytes_in 6541396 76200 station_ip 83.122.39.33 76200 port 15728727 76200 nas_port_type Virtual 76200 remote_ip 5.5.5.215 76201 username soleymani 76201 unique_id port 76201 terminate_cause Lost-Carrier 76201 bytes_out 263064 76201 bytes_in 261397 76201 station_ip 5.119.98.19 76201 port 15728728 76201 nas_port_type Virtual 76201 remote_ip 5.5.5.214 76202 username ahmadi 76202 unique_id port 76202 terminate_cause User-Request 76202 bytes_out 37261 76202 bytes_in 259729 76202 station_ip 83.122.175.239 76202 port 15728732 76202 nas_port_type Virtual 76202 remote_ip 5.5.5.213 76203 username soleymani 76203 unique_id port 76203 terminate_cause Lost-Carrier 76203 bytes_out 55451 76203 bytes_in 236412 76203 station_ip 5.119.71.181 76203 port 15728733 76203 nas_port_type Virtual 76203 remote_ip 5.5.5.212 76205 username rashidi 76205 kill_reason Maximum check online fails reached 76205 unique_id port 76205 bytes_out 11480693 76205 bytes_in 21294412 76205 station_ip 5.120.143.175 76205 port 15728734 76205 nas_port_type Virtual 76205 remote_ip 5.5.5.211 76210 username alirezazamani 76210 unique_id port 76210 terminate_cause User-Request 76210 bytes_out 627664 76210 bytes_in 17689921 76210 station_ip 37.27.27.15 76210 port 15728742 76210 nas_port_type Virtual 76210 remote_ip 5.5.5.206 76212 username soleymani 76212 unique_id port 76212 terminate_cause Lost-Carrier 76212 bytes_out 104600 76212 bytes_in 510357 76212 station_ip 5.119.108.209 76212 port 15728743 76212 nas_port_type Virtual 76212 remote_ip 5.5.5.205 76218 username soleymani 76218 unique_id port 76218 terminate_cause Lost-Carrier 76218 bytes_out 66292 76218 bytes_in 630056 76218 station_ip 5.120.27.198 76218 port 15728747 76218 nas_port_type Virtual 76218 remote_ip 5.5.5.201 76221 username soleymani 76221 unique_id port 76221 terminate_cause Lost-Carrier 76221 bytes_out 77157 76221 bytes_in 712182 76221 station_ip 5.119.21.30 4843 username ramin 4843 kill_reason Maximum check online fails reached 4843 bytes_out 0 4843 bytes_in 0 4843 port 443 4843 unique_id port 4845 username ramin 4845 kill_reason Maximum check online fails reached 4845 bytes_out 0 4845 bytes_in 0 4845 port 652 4845 unique_id port 4848 username ramin 4848 kill_reason Maximum check online fails reached 4848 bytes_out 0 4848 bytes_in 0 4848 port 1 4848 unique_id port 4851 username ramin 4851 kill_reason Maximum check online fails reached 4851 bytes_out 0 4851 bytes_in 0 4851 port 410 4851 unique_id port 4854 username ramin 4854 kill_reason Maximum check online fails reached 4854 bytes_out 0 4854 bytes_in 0 4854 port 465 4854 unique_id port 4857 username ramin 4857 kill_reason Maximum check online fails reached 4857 bytes_out 0 4857 bytes_in 0 4857 port 71 4857 unique_id port 4860 username ramin 4860 kill_reason Maximum check online fails reached 4860 bytes_out 0 76221 port 15728755 76221 nas_port_type Virtual 76221 remote_ip 5.5.5.196 76198 terminate_cause Lost-Carrier 76198 bytes_out 4390887 76198 bytes_in 24219004 76198 station_ip 5.112.244.122 76198 port 15728674 76198 nas_port_type Virtual 76198 remote_ip 5.5.5.240 76213 username soleymani 76213 unique_id port 76213 terminate_cause Lost-Carrier 76213 bytes_out 154262 76213 bytes_in 351739 76213 station_ip 5.120.104.92 76213 port 15728745 76213 nas_port_type Virtual 76213 remote_ip 5.5.5.203 76214 username soleymani 76214 unique_id port 76214 terminate_cause Lost-Carrier 76214 bytes_out 177945 76214 bytes_in 418050 76214 station_ip 5.119.135.214 76214 port 15728746 76214 nas_port_type Virtual 76214 remote_ip 5.5.5.202 76215 username forozande 76215 unique_id port 76215 terminate_cause User-Request 76215 bytes_out 28017 76215 bytes_in 86552 76215 station_ip 37.129.63.67 76215 port 15728749 76215 nas_port_type Virtual 76215 remote_ip 5.5.5.200 76217 username alinezhad 76217 unique_id port 76217 terminate_cause User-Request 76217 bytes_out 61100 76217 bytes_in 216839 76217 station_ip 5.202.65.6 76217 port 15728751 76217 nas_port_type Virtual 76217 remote_ip 5.5.5.199 76227 username forozande 76227 unique_id port 76227 terminate_cause User-Request 76227 bytes_out 98043 76227 bytes_in 324691 76227 station_ip 37.129.175.85 76227 port 15728762 76227 nas_port_type Virtual 76227 remote_ip 5.5.5.191 76229 username soleymani 76229 unique_id port 76229 terminate_cause Lost-Carrier 76229 bytes_out 167610 76229 bytes_in 820382 76229 station_ip 5.119.165.140 76229 port 15728760 76229 nas_port_type Virtual 76229 remote_ip 5.5.5.193 76230 username soleymani 76230 unique_id port 76230 terminate_cause Lost-Carrier 76230 bytes_out 34690 76230 bytes_in 151691 76230 station_ip 5.120.131.172 76230 port 15728761 76230 nas_port_type Virtual 76230 remote_ip 5.5.5.192 76243 username mobina 76243 unique_id port 76243 terminate_cause User-Request 76243 bytes_out 3452544 76243 bytes_in 48205389 76243 station_ip 5.219.203.120 76243 port 15728773 76243 nas_port_type Virtual 76243 remote_ip 5.5.5.186 76244 username soleymani 76244 kill_reason Maximum number of concurrent logins reached 76244 unique_id port 76244 bytes_out 0 76244 bytes_in 0 76244 station_ip 5.120.129.10 76244 port 15728781 4842 username ramin 4842 kill_reason Maximum check online fails reached 4842 bytes_out 0 4842 bytes_in 0 4842 port 720 4842 unique_id port 4847 username ramin 4847 kill_reason Maximum check online fails reached 4847 bytes_out 0 4847 bytes_in 0 4847 port 963 4847 unique_id port 4850 username ramin 4850 kill_reason Maximum check online fails reached 4850 bytes_out 0 4850 bytes_in 0 4850 port 853 4850 unique_id port 4853 username ramin 4853 kill_reason Maximum check online fails reached 4853 bytes_out 0 4853 bytes_in 0 4853 port 322 4853 unique_id port 4856 username ramin 4856 kill_reason Maximum check online fails reached 4856 bytes_out 0 4856 bytes_in 0 4856 port 103 4856 unique_id port 4859 username ramin 4859 kill_reason Maximum check online fails reached 4859 bytes_out 0 4859 bytes_in 0 4859 port 225 4859 unique_id port 4865 username ramin 4865 kill_reason Maximum check online fails reached 4865 bytes_out 0 4865 bytes_in 0 4865 port 561 4865 unique_id port 76244 nas_port_type Virtual 76245 username soleymani 76245 kill_reason Maximum number of concurrent logins reached 76245 unique_id port 76245 bytes_out 0 76245 bytes_in 0 76245 station_ip 5.120.129.10 76245 port 15728782 76245 nas_port_type Virtual 76247 username ahmadi 76247 unique_id port 76247 terminate_cause User-Request 76247 bytes_out 0 76247 bytes_in 0 76247 station_ip 83.122.156.162 76247 port 15728780 76204 bytes_in 600340 76204 station_ip 5.202.61.218 76204 port 15728735 76204 nas_port_type Virtual 76204 remote_ip 5.5.5.229 76206 username forozande 76206 unique_id port 76206 terminate_cause User-Request 76206 bytes_out 190433 76206 bytes_in 2060702 76206 station_ip 83.122.209.249 76206 port 15728739 76206 nas_port_type Virtual 76206 remote_ip 5.5.5.209 76207 username soleymani 76207 unique_id port 76207 terminate_cause Lost-Carrier 76207 bytes_out 239868 76207 bytes_in 628622 76207 station_ip 5.120.64.155 76207 port 15728738 76207 nas_port_type Virtual 76207 remote_ip 5.5.5.210 76208 username ahmadi 76208 unique_id port 76208 terminate_cause User-Request 76208 bytes_out 0 76208 bytes_in 0 76208 station_ip 83.122.128.19 76208 port 15728741 76208 nas_port_type Virtual 76208 remote_ip 5.5.5.207 76209 username soleymani 76209 unique_id port 76209 terminate_cause Lost-Carrier 76209 bytes_out 161471 76209 bytes_in 720210 76209 station_ip 5.119.251.129 76209 port 15728740 76209 nas_port_type Virtual 76209 remote_ip 5.5.5.208 76211 username forozande 76211 unique_id port 76211 terminate_cause User-Request 76211 bytes_out 40120 76211 bytes_in 422935 76211 station_ip 83.122.69.220 76211 port 15728744 76211 nas_port_type Virtual 76211 remote_ip 5.5.5.204 76216 username alinezhad 76216 unique_id port 76216 terminate_cause User-Request 76216 bytes_out 0 76216 bytes_in 0 76216 station_ip 5.202.65.6 76216 port 15728750 76216 nas_port_type Virtual 76216 remote_ip 5.5.5.199 76219 username mahbobeh 76219 unique_id port 76219 terminate_cause User-Request 76219 bytes_out 0 76219 bytes_in 0 76219 station_ip 83.122.69.99 76219 port 15728753 76219 nas_port_type Virtual 76219 remote_ip 5.5.5.197 76220 username soleymani 76220 unique_id port 76220 terminate_cause Lost-Carrier 76220 bytes_out 4242 76220 bytes_in 126951 76220 station_ip 5.120.92.144 76220 port 15728752 76220 nas_port_type Virtual 76220 remote_ip 5.5.5.198 76222 username asadi 76222 unique_id port 76222 terminate_cause User-Request 76222 bytes_out 20119 76222 bytes_in 57722 76222 station_ip 37.129.96.237 76222 port 15728757 76222 nas_port_type Virtual 76222 remote_ip 5.5.5.223 76223 username asadi 76223 unique_id port 76223 terminate_cause User-Request 76223 bytes_out 194410 76223 bytes_in 2653467 76223 station_ip 37.129.96.237 76223 port 15728759 76223 nas_port_type Virtual 76223 remote_ip 5.5.5.223 76224 username soleymani 76224 unique_id port 76224 terminate_cause Lost-Carrier 76224 bytes_out 126048 76224 bytes_in 1293697 76224 station_ip 5.119.143.121 76224 port 15728756 76224 nas_port_type Virtual 76224 remote_ip 5.5.5.195 76225 username soleymani 76225 unique_id port 76225 terminate_cause Lost-Carrier 76225 bytes_out 21326 76225 bytes_in 144485 76225 station_ip 5.119.165.253 76225 port 15728758 76225 nas_port_type Virtual 76225 remote_ip 5.5.5.194 76226 username alirezazamani 76226 unique_id port 76226 terminate_cause Lost-Carrier 76226 bytes_out 4738128 76226 bytes_in 47335960 4841 username ramin 4841 kill_reason Maximum check online fails reached 4841 bytes_out 0 4841 bytes_in 0 4841 port 302 4841 unique_id port 76226 station_ip 94.241.178.166 76226 port 15728748 76226 nas_port_type Virtual 76226 remote_ip 5.5.5.243 76231 username ahmadi 76231 unique_id port 76231 terminate_cause User-Request 76231 bytes_out 150770 4846 username ramin 4846 kill_reason Maximum check online fails reached 4846 bytes_out 0 4846 bytes_in 0 4846 port 768 4846 unique_id port 4849 username ramin 4849 kill_reason Maximum check online fails reached 76231 bytes_in 2092104 76231 station_ip 83.122.156.162 76231 port 15728764 4849 bytes_out 0 4849 bytes_in 0 4849 port 633 4849 unique_id port 4852 username ramin 4852 kill_reason Maximum check online fails reached 4852 bytes_out 0 4852 bytes_in 0 4852 port 470 4852 unique_id port 4855 username ramin 4855 kill_reason Maximum check online fails reached 4855 bytes_out 0 4855 bytes_in 0 4855 port 888 4855 unique_id port 4858 username ramin 4858 kill_reason Maximum check online fails reached 4858 bytes_out 0 4858 bytes_in 0 4858 port 280 4858 unique_id port 4861 username ramin 4861 kill_reason Maximum check online fails reached 4861 bytes_out 0 4861 bytes_in 0 4861 port 681 4861 unique_id port 4864 username ramin 4864 kill_reason Maximum check online fails reached 4864 bytes_out 0 4864 bytes_in 0 4864 port 755 4864 unique_id port 4867 username ramin 4867 kill_reason Maximum check online fails reached 4867 bytes_out 0 4867 bytes_in 0 4867 port 149 4867 unique_id port 76228 username mahbobeh 76228 unique_id port 76228 terminate_cause Lost-Carrier 76228 bytes_out 235731 76228 bytes_in 3160150 76228 station_ip 83.122.69.99 76228 port 15728754 76228 nas_port_type Virtual 76228 remote_ip 5.5.5.197 76232 username alinezhad 76232 unique_id port 76232 terminate_cause User-Request 76232 bytes_out 12245 76232 bytes_in 27204 76232 station_ip 5.202.65.6 76232 port 15728765 76232 nas_port_type Virtual 76232 remote_ip 5.5.5.199 76233 username soleymani 76233 unique_id port 76233 terminate_cause Lost-Carrier 76233 bytes_out 101842 76233 bytes_in 952617 76233 station_ip 5.120.105.241 76233 port 15728763 76233 nas_port_type Virtual 76233 remote_ip 5.5.5.190 76235 username asadi 76235 unique_id port 76235 terminate_cause User-Request 76235 bytes_out 164921 76235 bytes_in 2996662 76235 station_ip 37.129.96.237 76235 port 15728767 76235 nas_port_type Virtual 76235 remote_ip 5.5.5.223 76238 username ahmadi 76238 unique_id port 76238 terminate_cause User-Request 76238 bytes_out 0 76238 bytes_in 0 76238 station_ip 83.122.156.162 76238 port 15728770 76238 nas_port_type Virtual 76238 remote_ip 5.5.5.189 76240 username asadi 76240 unique_id port 76240 terminate_cause User-Request 76240 bytes_out 38395 76240 bytes_in 327180 76240 station_ip 37.129.96.237 76240 port 15728775 76240 nas_port_type Virtual 76240 remote_ip 5.5.5.223 76246 username soleymani 76246 kill_reason Maximum number of concurrent logins reached 76246 unique_id port 76246 bytes_out 0 76246 bytes_in 0 76246 station_ip 5.120.129.10 76246 port 15728783 76246 nas_port_type Virtual 76248 username soleymani 76248 kill_reason Maximum number of concurrent logins reached 76248 unique_id port 76248 bytes_out 0 76248 bytes_in 0 76248 station_ip 5.120.129.10 76248 port 15728784 76248 nas_port_type Virtual 76256 username soleymani 76256 kill_reason Maximum number of concurrent logins reached 76256 unique_id port 76256 bytes_out 0 76256 bytes_in 0 76256 station_ip 5.119.100.1 76256 port 15728792 76256 nas_port_type Virtual 76259 username soleymani 76259 kill_reason Maximum number of concurrent logins reached 76259 unique_id port 76259 bytes_out 0 76259 bytes_in 0 76259 station_ip 5.119.100.1 76259 port 15728795 76259 nas_port_type Virtual 76263 username soleymani 76263 kill_reason Maximum number of concurrent logins reached 76263 unique_id port 76263 bytes_out 0 76263 bytes_in 0 76263 station_ip 5.119.2.201 76263 port 15728799 76263 nas_port_type Virtual 76266 username soleymani 76266 kill_reason Maximum number of concurrent logins reached 76266 unique_id port 76266 bytes_out 0 76266 bytes_in 0 76266 station_ip 5.119.2.201 76266 port 15728802 76266 nas_port_type Virtual 76271 username asadi 76271 unique_id port 4860 bytes_in 0 4860 port 604 4860 unique_id port 76231 nas_port_type Virtual 76231 remote_ip 5.5.5.189 76234 username soleymani 76234 unique_id port 76234 terminate_cause Lost-Carrier 76234 bytes_out 50315 76234 bytes_in 187026 76234 station_ip 5.119.212.206 4863 username ramin 4863 kill_reason Maximum check online fails reached 4863 bytes_out 0 4863 bytes_in 0 4863 port 450 4863 unique_id port 4866 username ramin 4866 kill_reason Maximum check online fails reached 4866 bytes_out 0 4866 bytes_in 0 4866 port 580 4866 unique_id port 76234 port 15728766 76234 nas_port_type Virtual 76234 remote_ip 5.5.5.188 76236 username forozande 76236 unique_id port 76236 terminate_cause User-Request 76236 bytes_out 44038 76236 bytes_in 29627 76236 station_ip 83.123.201.14 76236 port 15728768 76236 nas_port_type Virtual 76236 remote_ip 5.5.5.187 76237 username forozande 76237 unique_id port 76237 terminate_cause User-Request 76237 bytes_out 15420 76237 bytes_in 42119 76237 station_ip 83.123.201.14 76237 port 15728769 76237 nas_port_type Virtual 76237 remote_ip 5.5.5.187 76239 username asadi 76239 unique_id port 76239 terminate_cause User-Request 76239 bytes_out 50001 76239 bytes_in 232670 76239 station_ip 37.129.96.237 76239 port 15728771 76239 nas_port_type Virtual 76239 remote_ip 5.5.5.223 76241 username soleymani 76241 unique_id port 76241 terminate_cause Lost-Carrier 76241 bytes_out 125582 76241 bytes_in 402343 76241 station_ip 5.120.101.106 76241 port 15728774 76241 nas_port_type Virtual 76241 remote_ip 5.5.5.185 76242 username asadi 76242 unique_id port 76242 terminate_cause User-Request 76242 bytes_out 80534 76242 bytes_in 222446 76242 station_ip 37.129.96.237 76242 port 15728778 76242 nas_port_type Virtual 76242 remote_ip 5.5.5.223 76249 username soleymani 76249 kill_reason Maximum number of concurrent logins reached 76249 unique_id port 76249 bytes_out 0 76249 bytes_in 0 76249 station_ip 5.120.129.10 76249 port 15728785 76249 nas_port_type Virtual 76251 username soleymani 76251 unique_id port 76251 terminate_cause Lost-Carrier 76251 bytes_out 169736 76251 bytes_in 624956 76251 station_ip 5.120.135.153 76251 port 15728777 76251 nas_port_type Virtual 76251 remote_ip 5.5.5.184 76252 username soleymani 76252 kill_reason Maximum number of concurrent logins reached 76252 unique_id port 76252 bytes_out 0 76252 bytes_in 0 76252 station_ip 5.120.124.131 76252 port 15728788 76252 nas_port_type Virtual 76254 username soleymani 76254 unique_id port 76254 terminate_cause Lost-Carrier 76254 bytes_out 130902 76254 bytes_in 522502 76254 station_ip 5.120.98.143 76254 port 15728779 76254 nas_port_type Virtual 76254 remote_ip 5.5.5.183 76255 username soleymani 76255 kill_reason Maximum number of concurrent logins reached 76255 unique_id port 76255 bytes_out 0 76255 bytes_in 0 76255 station_ip 5.119.100.1 76255 port 15728791 76255 nas_port_type Virtual 76257 username soleymani 76257 kill_reason Maximum number of concurrent logins reached 76257 unique_id port 76257 bytes_out 0 76257 bytes_in 0 76257 station_ip 5.119.100.1 76257 port 15728793 76257 nas_port_type Virtual 76260 username soleymani 76260 kill_reason Maximum number of concurrent logins reached 76260 unique_id port 76260 bytes_out 0 76260 bytes_in 0 76260 station_ip 5.119.100.1 76260 port 15728796 76260 nas_port_type Virtual 76264 username soleymani 76264 kill_reason Maximum number of concurrent logins reached 76264 unique_id port 76264 bytes_out 0 76264 bytes_in 0 76264 station_ip 5.119.2.201 76264 port 15728800 76264 nas_port_type Virtual 76267 username soleymani 76267 unique_id port 76267 terminate_cause Lost-Carrier 76267 bytes_out 130281 76267 bytes_in 351682 76247 nas_port_type Virtual 76247 remote_ip 5.5.5.189 76250 username soleymani 76250 kill_reason Maximum number of concurrent logins reached 76250 unique_id port 76250 bytes_out 0 76250 bytes_in 0 76250 station_ip 5.120.129.10 76250 port 15728786 76250 nas_port_type Virtual 76253 username soleymani 76253 kill_reason Maximum number of concurrent logins reached 76253 unique_id port 76253 bytes_out 0 76253 bytes_in 0 76253 station_ip 5.120.124.131 76253 port 15728789 76253 nas_port_type Virtual 76258 username soleymani 76258 kill_reason Maximum number of concurrent logins reached 76258 unique_id port 76258 bytes_out 0 76258 bytes_in 0 76258 station_ip 5.119.100.1 76258 port 15728794 76258 nas_port_type Virtual 76261 username soleymani 76261 kill_reason Maximum number of concurrent logins reached 76261 unique_id port 76261 bytes_out 0 76261 bytes_in 0 76261 station_ip 5.119.100.1 76261 port 15728797 76261 nas_port_type Virtual 76262 username soleymani 76262 kill_reason Maximum number of concurrent logins reached 76262 unique_id port 76262 bytes_out 0 76262 bytes_in 0 76262 station_ip 5.119.2.201 76262 port 15728798 76262 nas_port_type Virtual 76265 username soleymani 76265 kill_reason Maximum number of concurrent logins reached 76265 unique_id port 76265 bytes_out 0 76265 bytes_in 0 76265 station_ip 5.119.2.201 76265 port 15728801 76265 nas_port_type Virtual 76268 username asadi 76268 unique_id port 76268 terminate_cause User-Request 76268 bytes_out 61372 76268 bytes_in 215891 76268 station_ip 37.129.114.15 76268 port 15728804 76268 nas_port_type Virtual 76268 remote_ip 5.5.5.179 76269 username soleymani 76269 unique_id port 76269 terminate_cause Lost-Carrier 76269 bytes_out 137862 76269 bytes_in 839251 76269 station_ip 5.120.124.131 76269 port 15728790 76269 nas_port_type Virtual 76269 remote_ip 5.5.5.181 76272 username asadi 76272 unique_id port 76272 terminate_cause User-Request 76272 bytes_out 24187 76272 bytes_in 137399 76272 station_ip 37.129.109.125 76272 port 15728807 76272 nas_port_type Virtual 76272 remote_ip 5.5.5.178 76276 username asadi 76276 unique_id port 76276 terminate_cause User-Request 76276 bytes_out 222218 76276 bytes_in 5181543 76276 station_ip 37.129.109.125 76276 port 15728812 76276 nas_port_type Virtual 76276 remote_ip 5.5.5.178 76278 username aminvpn 76278 unique_id port 76278 terminate_cause Lost-Carrier 76278 bytes_out 44825 76278 bytes_in 335713 76278 station_ip 5.233.59.139 76278 port 15728809 76278 nas_port_type Virtual 76278 remote_ip 5.5.5.177 76280 username asadi 76280 unique_id port 76280 terminate_cause User-Request 76280 bytes_out 0 76280 bytes_in 0 76280 station_ip 37.129.109.125 76280 port 15728816 76280 nas_port_type Virtual 76280 remote_ip 5.5.5.178 76282 username mahbobeh 76282 unique_id port 76282 terminate_cause Lost-Carrier 76282 bytes_out 211382 76282 bytes_in 1652446 76282 station_ip 83.122.69.99 76282 port 15728772 76282 nas_port_type Virtual 76282 remote_ip 5.5.5.197 76287 username forozande 76287 unique_id port 76287 terminate_cause User-Request 76287 bytes_out 68913 76287 bytes_in 818215 76287 station_ip 83.122.93.175 76287 port 15728821 76287 nas_port_type Virtual 76287 remote_ip 5.5.5.172 76290 username zoha 76290 unique_id port 76290 terminate_cause Lost-Carrier 76290 bytes_out 2479490 76290 bytes_in 36447670 76290 station_ip 5.120.66.170 76290 port 15728823 76290 nas_port_type Virtual 76290 remote_ip 5.5.5.216 76292 username amin.insta22 76292 unique_id port 76292 terminate_cause Lost-Carrier 76292 bytes_out 8191725 76292 bytes_in 228825138 76292 station_ip 5.119.102.107 76292 port 15728819 76292 nas_port_type Virtual 76292 remote_ip 5.5.5.173 76294 username kasra 76294 unique_id port 76267 station_ip 5.120.116.45 76267 port 15728787 76267 nas_port_type Virtual 76267 remote_ip 5.5.5.182 76270 username asadi 76270 unique_id port 76270 terminate_cause User-Request 76270 bytes_out 15001 76270 bytes_in 102993 76270 station_ip 37.129.109.125 76270 port 15728805 76270 nas_port_type Virtual 76270 remote_ip 5.5.5.178 76273 username soleymani 76273 unique_id port 76273 terminate_cause Lost-Carrier 76273 bytes_out 43698 76273 bytes_in 230724 76273 station_ip 5.119.2.201 76273 port 15728803 76273 nas_port_type Virtual 76273 remote_ip 5.5.5.180 76274 username asadi 76274 unique_id port 76274 terminate_cause User-Request 76274 bytes_out 34241 76274 bytes_in 201235 76274 station_ip 37.129.109.125 76274 port 15728808 76274 nas_port_type Virtual 76274 remote_ip 5.5.5.178 76275 username asadi 76275 unique_id port 76275 terminate_cause User-Request 76275 bytes_out 80737 76275 bytes_in 617927 76275 station_ip 37.129.109.125 76275 port 15728810 76275 nas_port_type Virtual 76275 remote_ip 5.5.5.178 76277 username asadi 76277 unique_id port 76277 terminate_cause User-Request 76277 bytes_out 247385 76277 bytes_in 4991595 76277 station_ip 37.129.109.125 76277 port 15728813 76277 nas_port_type Virtual 76277 remote_ip 5.5.5.178 76279 username forozande 76279 unique_id port 76279 terminate_cause User-Request 76279 bytes_out 165092 76279 bytes_in 1891719 76279 station_ip 83.123.137.89 76279 port 15728814 76279 nas_port_type Virtual 76279 remote_ip 5.5.5.175 76281 username asadi 76281 unique_id port 76281 terminate_cause User-Request 76281 bytes_out 251827 76281 bytes_in 3397061 76281 station_ip 37.129.109.125 76281 port 15728817 76281 nas_port_type Virtual 76281 remote_ip 5.5.5.178 76285 username asadi 76285 unique_id port 76285 terminate_cause User-Request 76285 bytes_out 95706 76285 bytes_in 776136 76285 station_ip 37.129.109.125 76285 port 15728820 76285 nas_port_type Virtual 76285 remote_ip 5.5.5.178 76289 username rashidi 76289 unique_id port 76289 terminate_cause User-Request 76289 bytes_out 4422800 76289 bytes_in 6171992 76289 station_ip 5.120.94.200 76289 port 15728811 76289 nas_port_type Virtual 76289 remote_ip 5.5.5.176 76293 username soleymani 76293 unique_id port 76293 terminate_cause Lost-Carrier 76293 bytes_out 116805 76293 bytes_in 335402 76293 station_ip 5.119.37.101 76293 port 15728826 76293 nas_port_type Virtual 76293 remote_ip 5.5.5.169 76296 username forozande 76296 unique_id port 76296 terminate_cause User-Request 76296 bytes_out 68217 76296 bytes_in 826562 76296 station_ip 83.122.67.75 76296 port 15728829 76296 nas_port_type Virtual 76296 remote_ip 5.5.5.167 76300 username amin.insta22 76300 unique_id port 76300 terminate_cause Lost-Carrier 76300 bytes_out 1711273 76300 bytes_in 42484802 76300 station_ip 151.238.243.245 76300 port 15728824 76300 nas_port_type Virtual 76300 remote_ip 5.5.5.170 76303 username forozande 76303 unique_id port 76303 terminate_cause User-Request 76303 bytes_out 23160 76303 bytes_in 177340 76303 station_ip 37.129.213.175 76303 port 15728836 76303 nas_port_type Virtual 76303 remote_ip 5.5.5.163 76309 username zoha 76309 unique_id port 76309 terminate_cause Lost-Carrier 76309 bytes_out 329191 76309 bytes_in 2241906 76309 station_ip 5.120.66.170 76309 port 15728839 76309 nas_port_type Virtual 76309 remote_ip 5.5.5.216 76310 username mahbobeh 76310 unique_id port 76310 terminate_cause Lost-Carrier 76310 bytes_out 326855 76310 bytes_in 4121283 76310 station_ip 83.122.69.99 76310 port 15728834 76310 nas_port_type Virtual 76310 remote_ip 5.5.5.197 76312 username alinezhad 76312 unique_id port 76312 terminate_cause User-Request 76312 bytes_out 50736 76271 terminate_cause User-Request 76271 bytes_out 60944 76271 bytes_in 306477 76271 station_ip 37.129.109.125 76271 port 15728806 76271 nas_port_type Virtual 76271 remote_ip 5.5.5.178 76283 username ahmadi 76283 unique_id port 76283 terminate_cause User-Request 76283 bytes_out 16691 76283 bytes_in 107515 76283 station_ip 83.122.156.162 76283 port 15728818 76283 nas_port_type Virtual 76283 remote_ip 5.5.5.189 76284 username zoha 76284 unique_id port 76284 terminate_cause Lost-Carrier 76284 bytes_out 3518236 76284 bytes_in 39662565 76284 station_ip 5.120.66.170 76284 port 15728776 76284 nas_port_type Virtual 76284 remote_ip 5.5.5.216 76286 username amin.insta19 76286 unique_id port 76286 terminate_cause Lost-Carrier 76286 bytes_out 5030686 76286 bytes_in 24134477 76286 station_ip 5.120.58.95 76286 port 15728815 76286 nas_port_type Virtual 76286 remote_ip 5.5.5.174 76288 username soleymani 76288 unique_id port 76288 terminate_cause Lost-Carrier 76288 bytes_out 72361 76288 bytes_in 227902 76288 station_ip 5.120.123.149 76288 port 15728822 76288 nas_port_type Virtual 76288 remote_ip 5.5.5.171 76291 username asadi 76291 unique_id port 76291 terminate_cause User-Request 76291 bytes_out 202456 76291 bytes_in 4684452 76291 station_ip 37.129.109.125 76291 port 15728825 76291 nas_port_type Virtual 76291 remote_ip 5.5.5.178 76295 username forozande 76295 unique_id port 76295 terminate_cause User-Request 76295 bytes_out 39284 76295 bytes_in 133154 76295 station_ip 83.122.67.75 76295 port 15728828 76295 nas_port_type Virtual 76295 remote_ip 5.5.5.167 76297 username kasra 76297 unique_id port 76297 terminate_cause User-Request 76297 bytes_out 202420 76297 bytes_in 4370001 76297 station_ip 37.129.192.118 76297 port 15728831 76297 nas_port_type Virtual 76297 remote_ip 5.5.5.168 81196 station_ip 5.119.177.30 81196 port 15728791 81196 nas_port_type Virtual 81196 remote_ip 5.5.5.177 81199 username madadi 81199 unique_id port 81199 terminate_cause Lost-Carrier 81199 bytes_out 349944 81199 bytes_in 1857118 76299 username soleymani 76299 unique_id port 76299 terminate_cause Lost-Carrier 76299 bytes_out 108097 76299 bytes_in 429986 76299 station_ip 5.119.165.249 76299 port 15728832 76299 nas_port_type Virtual 76299 remote_ip 5.5.5.165 76301 username forozande 76301 unique_id port 76301 terminate_cause User-Request 76301 bytes_out 100642 76301 bytes_in 256550 76301 station_ip 83.122.217.52 76301 port 15728833 76301 nas_port_type Virtual 76301 remote_ip 5.5.5.164 76302 username forozande 76302 unique_id port 76302 terminate_cause User-Request 76302 bytes_out 56400 76302 bytes_in 932887 76302 station_ip 37.129.213.175 76302 port 15728835 76302 nas_port_type Virtual 76302 remote_ip 5.5.5.163 76307 username arabpour 76307 unique_id port 76307 terminate_cause User-Request 76307 bytes_out 431377 76307 bytes_in 12368702 76307 station_ip 83.123.211.55 76307 port 15728842 76307 nas_port_type Virtual 76307 remote_ip 5.5.5.159 76313 username asadi 76313 unique_id port 76313 terminate_cause User-Request 76313 bytes_out 270647 76313 bytes_in 7033886 76313 station_ip 37.129.109.125 76313 port 15728845 76313 nas_port_type Virtual 76313 remote_ip 5.5.5.178 76316 username asadi 76316 unique_id port 76316 terminate_cause User-Request 76316 bytes_out 31234 76316 bytes_in 177520 76316 station_ip 37.129.109.125 76316 port 15728848 76316 nas_port_type Virtual 76316 remote_ip 5.5.5.178 76327 username asadi 76327 unique_id port 76327 terminate_cause User-Request 76327 bytes_out 395870 76327 bytes_in 8211423 76327 station_ip 37.129.59.96 76327 port 15728860 76327 nas_port_type Virtual 76327 remote_ip 5.5.5.156 76329 username asadi 76294 terminate_cause User-Request 76294 bytes_out 77776 76294 bytes_in 653858 76294 station_ip 37.129.192.118 76294 port 15728827 76294 nas_port_type Virtual 76294 remote_ip 5.5.5.168 76304 username iranmanesh 76304 unique_id port 76304 terminate_cause Lost-Carrier 76304 bytes_out 3097906 76304 bytes_in 56983766 76304 station_ip 5.112.244.122 76304 port 15728737 76304 nas_port_type Virtual 76304 remote_ip 5.5.5.240 76305 username forozande 76305 unique_id port 76305 terminate_cause User-Request 76305 bytes_out 27301 76305 bytes_in 74257 76305 station_ip 83.122.238.115 76305 port 15728837 76305 nas_port_type Virtual 76305 remote_ip 5.5.5.162 76306 username forozande 76306 unique_id port 76306 terminate_cause User-Request 76306 bytes_out 6749 76306 bytes_in 19946 76306 station_ip 83.122.238.115 76306 port 15728838 76306 nas_port_type Virtual 76306 remote_ip 5.5.5.162 76308 username soleymani 76308 unique_id port 76308 terminate_cause Lost-Carrier 76308 bytes_out 66794 76308 bytes_in 340844 76308 station_ip 5.119.194.214 76308 port 15728840 76308 nas_port_type Virtual 76308 remote_ip 5.5.5.161 76311 username soleymani 76311 unique_id port 76311 terminate_cause Lost-Carrier 76311 bytes_out 64686 76311 bytes_in 301111 76311 station_ip 5.120.98.245 76311 port 15728843 76311 nas_port_type Virtual 76311 remote_ip 5.5.5.158 76317 username asadi 76317 unique_id port 76317 terminate_cause User-Request 76317 bytes_out 31812 76317 bytes_in 167920 76317 station_ip 37.129.109.125 76317 port 15728850 76317 nas_port_type Virtual 76317 remote_ip 5.5.5.178 76319 username asadi 76319 unique_id port 76319 terminate_cause User-Request 76319 bytes_out 34062 76319 bytes_in 165472 76319 station_ip 37.129.109.125 76319 port 15728852 76319 nas_port_type Virtual 76319 remote_ip 5.5.5.178 76322 username asadi 76322 unique_id port 76322 terminate_cause User-Request 76322 bytes_out 45684 76322 bytes_in 474571 76322 station_ip 37.129.109.125 76322 port 15728855 76322 nas_port_type Virtual 76322 remote_ip 5.5.5.178 76324 username asadi 76324 unique_id port 76324 terminate_cause User-Request 76324 bytes_out 0 76324 bytes_in 0 76324 station_ip 37.129.109.125 76324 port 15728857 76324 nas_port_type Virtual 76324 remote_ip 5.5.5.178 76325 username asadi 76325 unique_id port 76325 terminate_cause User-Request 76325 bytes_out 32076 76325 bytes_in 252315 76325 station_ip 37.129.109.125 76325 port 15728858 76325 nas_port_type Virtual 76325 remote_ip 5.5.5.178 76335 username forozande 76335 unique_id port 76335 terminate_cause User-Request 76335 bytes_out 50375 76335 bytes_in 150942 76335 station_ip 83.123.151.201 76335 port 15728869 76335 nas_port_type Virtual 76335 remote_ip 5.5.5.153 76337 username alirezazamani 76337 unique_id port 76337 terminate_cause Lost-Carrier 76337 bytes_out 620338 76337 bytes_in 2314302 76337 station_ip 5.119.112.45 76337 port 15728866 76337 nas_port_type Virtual 76337 remote_ip 5.5.5.154 76344 username forozande 76344 unique_id port 76344 terminate_cause User-Request 76344 bytes_out 41746 76344 bytes_in 86263 76344 station_ip 83.122.107.253 76344 port 15728877 76344 nas_port_type Virtual 76344 remote_ip 5.5.5.150 76346 username soleymani 76346 unique_id port 76346 terminate_cause Lost-Carrier 76346 bytes_out 46404 76346 bytes_in 198559 76346 station_ip 5.120.147.149 76346 port 15728880 76346 nas_port_type Virtual 76346 remote_ip 5.5.5.147 76348 username alinezhad 76348 unique_id port 76348 terminate_cause User-Request 76348 bytes_out 161310 76348 bytes_in 661531 76348 station_ip 5.202.62.62 76348 port 15728874 76348 nas_port_type Virtual 76348 remote_ip 5.5.5.151 76349 username mahbobeh 76312 bytes_in 431343 76312 station_ip 5.202.13.93 76312 port 15728844 76312 nas_port_type Virtual 76312 remote_ip 5.5.5.157 76314 username asadi 76314 unique_id port 76314 terminate_cause User-Request 76314 bytes_out 181287 76314 bytes_in 6136962 76314 station_ip 37.129.109.125 76314 port 15728846 76314 nas_port_type Virtual 76314 remote_ip 5.5.5.178 76315 username asadi 76315 unique_id port 76315 terminate_cause User-Request 76315 bytes_out 34162 76315 bytes_in 144687 76315 station_ip 37.129.109.125 76315 port 15728847 76315 nas_port_type Virtual 76315 remote_ip 5.5.5.178 76318 username asadi 76318 unique_id port 76318 terminate_cause User-Request 76318 bytes_out 32283 76318 bytes_in 159395 76318 station_ip 37.129.109.125 76318 port 15728851 76318 nas_port_type Virtual 76318 remote_ip 5.5.5.178 76320 username asadi 76320 unique_id port 76320 terminate_cause User-Request 76320 bytes_out 32042 76320 bytes_in 123467 76320 station_ip 37.129.109.125 76320 port 15728853 76320 nas_port_type Virtual 76320 remote_ip 5.5.5.178 76321 username asadi 76321 unique_id port 76321 terminate_cause User-Request 76321 bytes_out 32107 76321 bytes_in 139606 76321 station_ip 37.129.109.125 76321 port 15728854 76321 nas_port_type Virtual 76321 remote_ip 5.5.5.178 76323 username asadi 76323 unique_id port 76323 terminate_cause User-Request 76323 bytes_out 22294 76323 bytes_in 147985 76323 station_ip 37.129.109.125 76323 port 15728856 76323 nas_port_type Virtual 76323 remote_ip 5.5.5.178 76326 username asadi 76326 unique_id port 76326 terminate_cause User-Request 76326 bytes_out 23491 76326 bytes_in 207224 76326 station_ip 37.129.109.125 76326 port 15728859 76326 nas_port_type Virtual 76326 remote_ip 5.5.5.178 76328 username ahmadi 76328 unique_id port 76328 terminate_cause User-Request 76328 bytes_out 0 76328 bytes_in 0 76328 station_ip 83.122.196.174 76328 port 15728861 76328 nas_port_type Virtual 76328 remote_ip 5.5.5.155 76330 username asadi 76330 unique_id port 76330 terminate_cause User-Request 76330 bytes_out 195454 76330 bytes_in 2991741 76330 station_ip 37.129.59.96 76330 port 15728863 76330 nas_port_type Virtual 76330 remote_ip 5.5.5.156 76331 username asadi 76331 unique_id port 76331 terminate_cause User-Request 76331 bytes_out 384170 76331 bytes_in 11417035 76331 station_ip 37.129.59.96 76331 port 15728864 76331 nas_port_type Virtual 76331 remote_ip 5.5.5.156 76333 username asadi 76333 unique_id port 76333 terminate_cause User-Request 76333 bytes_out 216017 76333 bytes_in 3528293 76333 station_ip 37.129.59.96 76333 port 15728867 76333 nas_port_type Virtual 76333 remote_ip 5.5.5.156 76334 username asadi 76334 unique_id port 76334 terminate_cause User-Request 76334 bytes_out 690729 76334 bytes_in 16277615 76334 station_ip 37.129.59.96 76334 port 15728868 76334 nas_port_type Virtual 76334 remote_ip 5.5.5.156 76336 username asadi 76336 unique_id port 76336 terminate_cause User-Request 76336 bytes_out 154765 76336 bytes_in 3399925 76336 station_ip 37.129.59.96 76336 port 15728870 76336 nas_port_type Virtual 76336 remote_ip 5.5.5.156 76339 username asadi 76339 unique_id port 76339 terminate_cause User-Request 76339 bytes_out 83401 76339 bytes_in 1592336 76339 station_ip 37.129.59.96 76339 port 15728872 76339 nas_port_type Virtual 76339 remote_ip 5.5.5.156 76341 username zoha 76341 unique_id port 76341 terminate_cause Lost-Carrier 76341 bytes_out 1985475 76341 bytes_in 17289107 76341 station_ip 5.120.66.170 76341 port 15728841 76341 nas_port_type Virtual 76341 remote_ip 5.5.5.160 76342 username aminvpn 76342 unique_id port 76342 terminate_cause User-Request 76342 bytes_out 62980 76329 unique_id port 76329 terminate_cause User-Request 76329 bytes_out 202767 76329 bytes_in 2349875 76329 station_ip 37.129.59.96 76329 port 15728862 76329 nas_port_type Virtual 76329 remote_ip 5.5.5.156 76332 username asadi 76332 unique_id port 76332 terminate_cause User-Request 76332 bytes_out 676822 76332 bytes_in 19356828 76332 station_ip 37.129.59.96 76332 port 15728865 76332 nas_port_type Virtual 76332 remote_ip 5.5.5.156 76338 username soleymani 76338 unique_id port 76338 terminate_cause Lost-Carrier 76338 bytes_out 131661 76338 bytes_in 366116 76338 station_ip 5.119.204.255 76338 port 15728871 76338 nas_port_type Virtual 76338 remote_ip 5.5.5.152 76340 username asadi 76340 unique_id port 76340 terminate_cause User-Request 76340 bytes_out 48338 76340 bytes_in 316647 76340 station_ip 37.129.59.96 76340 port 15728873 76340 nas_port_type Virtual 76340 remote_ip 5.5.5.156 76343 username alirezazamani 76343 unique_id port 76343 terminate_cause User-Request 76343 bytes_out 0 76343 bytes_in 0 76343 station_ip 37.27.8.210 76343 port 15728878 76343 nas_port_type Virtual 76343 remote_ip 5.5.5.149 76347 username mobina 76347 unique_id port 76347 terminate_cause User-Request 76347 bytes_out 17137247 76347 bytes_in 379499227 76347 station_ip 5.219.203.120 76347 port 15728849 76347 nas_port_type Virtual 76347 remote_ip 5.5.5.186 76350 username forozande 76350 unique_id port 76350 terminate_cause User-Request 76350 bytes_out 0 76350 bytes_in 0 76350 station_ip 83.123.137.219 76350 port 15728885 76350 nas_port_type Virtual 76350 remote_ip 5.5.5.144 76351 username forozande 76351 unique_id port 76351 terminate_cause User-Request 76351 bytes_out 89929 76351 bytes_in 860945 76351 station_ip 83.123.137.219 76351 port 15728886 76351 nas_port_type Virtual 76351 remote_ip 5.5.5.144 76354 username soleymani 76354 unique_id port 76354 terminate_cause Lost-Carrier 76354 bytes_out 82269 76354 bytes_in 522163 76354 station_ip 5.120.16.28 76354 port 15728882 76354 nas_port_type Virtual 76354 remote_ip 5.5.5.146 76356 username forozande 76356 unique_id port 76356 terminate_cause User-Request 76356 bytes_out 30003 76356 bytes_in 502957 76356 station_ip 83.123.137.219 76356 port 15728890 76356 nas_port_type Virtual 76356 remote_ip 5.5.5.144 76357 username abdilahyar 76357 unique_id port 76357 terminate_cause Lost-Carrier 76357 bytes_out 3560366 76357 bytes_in 66303673 76357 station_ip 5.120.16.56 76357 port 15728706 76357 nas_port_type Virtual 76357 remote_ip 5.5.5.224 76358 username ahmadi 76358 unique_id port 76358 terminate_cause User-Request 76358 bytes_out 88911 76358 bytes_in 529355 76358 station_ip 83.122.159.134 76358 port 15728892 76358 nas_port_type Virtual 76358 remote_ip 5.5.5.141 76359 username soleymani 76359 unique_id port 76359 terminate_cause User-Request 76359 bytes_out 0 76359 bytes_in 0 76359 station_ip 5.120.129.0 76359 port 15728893 76359 nas_port_type Virtual 76359 remote_ip 5.5.5.140 76362 username soleymani 76362 unique_id port 76362 terminate_cause Lost-Carrier 76362 bytes_out 101957 76362 bytes_in 1367907 76362 station_ip 5.120.129.0 76362 port 15728894 76362 nas_port_type Virtual 76362 remote_ip 5.5.5.140 76364 username reza2742 76364 unique_id port 76364 terminate_cause Lost-Carrier 76364 bytes_out 1973368 76364 bytes_in 33666245 76364 station_ip 151.235.79.111 76364 port 15728891 76364 nas_port_type Virtual 76364 remote_ip 5.5.5.142 76372 username ahmadi 76372 unique_id port 76372 terminate_cause Lost-Carrier 76372 bytes_out 1006486 76372 bytes_in 3559609 76372 station_ip 83.122.159.134 76372 port 15728907 76372 nas_port_type Virtual 76372 remote_ip 5.5.5.141 76342 bytes_in 233035 76342 station_ip 5.233.59.139 76342 port 15728876 76342 nas_port_type Virtual 76342 remote_ip 5.5.5.177 76345 username soleymani 76345 unique_id port 76345 terminate_cause Lost-Carrier 76345 bytes_out 226 76345 bytes_in 58962 76345 station_ip 5.120.44.19 76345 port 15728879 76345 nas_port_type Virtual 76345 remote_ip 5.5.5.148 76352 username alinezhad 76352 unique_id port 76352 terminate_cause User-Request 76352 bytes_out 0 76352 bytes_in 0 76352 station_ip 5.202.62.62 76352 port 15728888 76352 nas_port_type Virtual 76352 remote_ip 5.5.5.151 76355 username aminvpn 76355 unique_id port 76355 terminate_cause Lost-Carrier 76355 bytes_out 1284928 76355 bytes_in 3963150 76355 station_ip 5.233.59.139 76355 port 15728881 76355 nas_port_type Virtual 76355 remote_ip 5.5.5.177 76360 username mobina 76360 unique_id port 76360 terminate_cause User-Request 76360 bytes_out 0 76360 bytes_in 0 76360 station_ip 5.219.203.120 76360 port 15728895 76360 nas_port_type Virtual 76360 remote_ip 5.5.5.186 76365 username aminvpn 76365 unique_id port 76365 terminate_cause Lost-Carrier 76365 bytes_out 766570 76365 bytes_in 6976699 76365 station_ip 78.39.26.79 76365 port 15728899 76365 nas_port_type Virtual 76365 remote_ip 5.5.5.139 76367 username asadi 76367 unique_id port 76367 terminate_cause User-Request 76367 bytes_out 57896 76367 bytes_in 168311 76367 station_ip 37.129.59.96 76367 port 15728908 76367 nas_port_type Virtual 76367 remote_ip 5.5.5.156 76369 username alinezhad 76369 unique_id port 76369 terminate_cause User-Request 76369 bytes_out 0 76369 bytes_in 0 76369 station_ip 5.202.62.62 76369 port 15728910 76369 nas_port_type Virtual 76369 remote_ip 5.5.5.151 76370 username soleymani 76370 unique_id port 76370 terminate_cause Lost-Carrier 76370 bytes_out 39963 76370 bytes_in 162182 76370 station_ip 5.120.31.53 76370 port 15728909 76370 nas_port_type Virtual 76370 remote_ip 5.5.5.137 76371 username mahbobeh 76371 unique_id port 76371 terminate_cause Lost-Carrier 76371 bytes_out 538930 76371 bytes_in 5980112 76371 station_ip 83.122.69.99 76371 port 15728887 76371 nas_port_type Virtual 76371 remote_ip 5.5.5.197 76373 username iranmanesh 76373 unique_id port 76373 terminate_cause Lost-Carrier 76373 bytes_out 795249 76373 bytes_in 10005700 76373 station_ip 5.112.6.17 76373 port 15728905 76373 nas_port_type Virtual 76373 remote_ip 5.5.5.138 76379 username alinezhad 76379 unique_id port 76379 terminate_cause User-Request 76379 bytes_out 17960 76379 bytes_in 21876 76379 station_ip 83.122.72.159 76379 port 15728918 76379 nas_port_type Virtual 76379 remote_ip 5.5.5.134 76381 username soleymani 76381 unique_id port 76381 terminate_cause Lost-Carrier 76381 bytes_out 55033 76381 bytes_in 255105 76381 station_ip 5.119.230.115 76381 port 15728919 76381 nas_port_type Virtual 76381 remote_ip 5.5.5.133 81198 username aminvpn 81198 mac 81198 bytes_out 567059 81198 bytes_in 3874209 81198 station_ip 5.119.30.76 81198 port 14 81198 unique_id port 81198 remote_ip 10.8.0.6 81202 username forozande 76384 username pouria 76384 unique_id port 76384 terminate_cause Lost-Carrier 76384 bytes_out 14419147 76384 bytes_in 541219870 76384 station_ip 151.235.88.233 76384 port 15728922 76384 nas_port_type Virtual 76384 remote_ip 5.5.5.131 76385 username mahbobeh 76385 unique_id port 76385 terminate_cause Admin-Reboot 76385 bytes_out 1286412 76385 bytes_in 19363027 76385 station_ip 83.122.69.99 76385 port 15728911 76385 nas_port_type Virtual 76385 remote_ip 5.5.5.197 76390 username alinezhad 76390 unique_id port 76390 terminate_cause User-Request 81202 unique_id port 76349 unique_id port 76349 terminate_cause Lost-Carrier 76349 bytes_out 660069 76349 bytes_in 6677776 76349 station_ip 83.122.69.99 76349 port 15728875 76349 nas_port_type Virtual 76349 remote_ip 5.5.5.197 76353 username ahmadipour 76353 unique_id port 76353 terminate_cause Lost-Carrier 76353 bytes_out 1641450 76353 bytes_in 35056740 76353 station_ip 83.123.114.97 76353 port 15728883 76353 nas_port_type Virtual 76353 remote_ip 5.5.5.145 76361 username soleymani 76361 unique_id port 76361 terminate_cause Lost-Carrier 76361 bytes_out 202777 76361 bytes_in 2028223 76361 station_ip 5.119.125.182 76361 port 15728889 76361 nas_port_type Virtual 76361 remote_ip 5.5.5.143 76363 username alinezhad 76363 unique_id port 76363 terminate_cause User-Request 76363 bytes_out 0 76363 bytes_in 0 76363 station_ip 5.202.62.62 76363 port 15728900 76363 nas_port_type Virtual 76363 remote_ip 5.5.5.151 76366 username alinezhad 76366 unique_id port 76366 terminate_cause User-Request 76366 bytes_out 0 76366 bytes_in 0 76366 station_ip 5.202.62.62 76366 port 15728906 76366 nas_port_type Virtual 76366 remote_ip 5.5.5.151 76368 username mobina 76368 unique_id port 76368 terminate_cause User-Request 76368 bytes_out 1857477 76368 bytes_in 19796468 76368 station_ip 5.219.203.120 76368 port 15728901 76368 nas_port_type Virtual 76368 remote_ip 5.5.5.186 76375 username soleymani 76375 unique_id port 76375 terminate_cause Lost-Carrier 76375 bytes_out 45529 76375 bytes_in 219825 76375 station_ip 5.119.179.126 76375 port 15728913 76375 nas_port_type Virtual 76375 remote_ip 5.5.5.136 76376 username alinezhad 76376 unique_id port 76376 terminate_cause User-Request 76376 bytes_out 71717 76376 bytes_in 71444 76376 station_ip 113.203.60.23 76376 port 15728915 76376 nas_port_type Virtual 76376 remote_ip 5.5.5.135 76377 username alinezhad 76377 unique_id port 76377 terminate_cause User-Request 76377 bytes_out 6647 76377 bytes_in 15393 76377 station_ip 113.203.60.23 76377 port 15728916 76377 nas_port_type Virtual 76377 remote_ip 5.5.5.135 76382 username mahdi 76382 unique_id port 76382 terminate_cause Lost-Carrier 76382 bytes_out 1629139 76382 bytes_in 63817183 76382 station_ip 5.120.102.176 76382 port 15728920 76382 nas_port_type Virtual 76382 remote_ip 5.5.5.132 76386 username alirezazamani 76386 unique_id port 76386 terminate_cause User-Request 76386 bytes_out 451302 76386 bytes_in 5253737 76386 station_ip 83.123.108.57 76386 port 15728641 76386 nas_port_type Virtual 76386 remote_ip 5.5.5.254 76388 username mahbobeh 76388 unique_id port 76388 terminate_cause Lost-Carrier 76388 bytes_out 1342411 76388 bytes_in 4854658 76388 station_ip 83.122.69.99 76388 port 15728640 76388 nas_port_type Virtual 76388 remote_ip 5.5.5.255 76389 username asadi 76389 unique_id port 76389 terminate_cause User-Request 76389 bytes_out 170619 76389 bytes_in 4575844 76389 station_ip 83.122.230.127 76389 port 15728643 76389 nas_port_type Virtual 76389 remote_ip 5.5.5.252 76395 username soleymani 76395 unique_id port 76395 terminate_cause Lost-Carrier 76395 bytes_out 349988 76395 bytes_in 645158 76395 station_ip 5.119.67.145 76395 port 15728649 76395 nas_port_type Virtual 76395 remote_ip 5.5.5.247 76397 username soleymani 76397 unique_id port 76397 terminate_cause Lost-Carrier 76397 bytes_out 236425 76397 bytes_in 1138417 76397 station_ip 5.120.39.150 76397 port 15728651 76397 nas_port_type Virtual 76397 remote_ip 5.5.5.246 76399 username sobhan 76399 unique_id port 76399 terminate_cause User-Request 76399 bytes_out 0 76399 bytes_in 0 76399 station_ip 151.238.243.245 76399 port 15728658 76399 nas_port_type Virtual 76399 remote_ip 5.5.5.242 76374 username alinezhad 76374 unique_id port 76374 terminate_cause User-Request 76374 bytes_out 0 76374 bytes_in 0 76374 station_ip 5.202.62.62 76374 port 15728912 76374 nas_port_type Virtual 76374 remote_ip 5.5.5.151 76378 username alinezhad 76378 unique_id port 76378 terminate_cause User-Request 76378 bytes_out 15179 76378 bytes_in 19571 76378 station_ip 83.122.72.159 76378 port 15728917 76378 nas_port_type Virtual 76378 remote_ip 5.5.5.134 81199 station_ip 5.119.3.114 81199 port 15728792 81199 nas_port_type Virtual 81199 remote_ip 5.5.5.176 81217 username zoha 81217 unique_id port 81217 terminate_cause Lost-Carrier 81217 bytes_out 623070 81217 bytes_in 5069065 76387 username forozande 76387 unique_id port 76387 terminate_cause User-Request 76387 bytes_out 225663 76387 bytes_in 1867277 76387 station_ip 37.129.233.129 76387 port 15728642 76387 nas_port_type Virtual 76387 remote_ip 5.5.5.253 76392 username aminvpn 76392 unique_id port 76392 terminate_cause Lost-Carrier 76392 bytes_out 79846 76392 bytes_in 384276 76392 station_ip 5.233.57.197 76392 port 15728647 76392 nas_port_type Virtual 76392 remote_ip 5.5.5.248 76398 username soleymani 76398 unique_id port 76398 terminate_cause Lost-Carrier 76398 bytes_out 1343924 76398 bytes_in 932105 76398 station_ip 5.119.217.83 76398 port 15728653 76398 nas_port_type Virtual 76398 remote_ip 5.5.5.244 76401 username sobhan 76401 unique_id port 76401 terminate_cause User-Request 76401 bytes_out 0 76401 bytes_in 0 76401 station_ip 151.238.243.245 76401 port 15728660 76401 nas_port_type Virtual 76401 remote_ip 5.5.5.242 76402 username sobhan 76402 unique_id port 76402 terminate_cause User-Request 76402 bytes_out 0 76402 bytes_in 0 76402 station_ip 151.238.243.245 76402 port 15728661 76402 nas_port_type Virtual 76402 remote_ip 5.5.5.242 76404 username aminvpn 76404 unique_id port 76404 terminate_cause User-Request 76404 bytes_out 0 76404 bytes_in 0 76404 station_ip 151.238.243.245 76404 port 15728663 76404 nas_port_type Virtual 76404 remote_ip 5.5.5.241 76406 username soleymani 76406 unique_id port 76406 terminate_cause Lost-Carrier 76406 bytes_out 50965 76406 bytes_in 260566 76406 station_ip 5.120.5.132 76406 port 15728654 76406 nas_port_type Virtual 76406 remote_ip 5.5.5.243 76408 username sobhan 76408 unique_id port 76408 terminate_cause User-Request 76408 bytes_out 284978 76408 bytes_in 1330410 76408 station_ip 151.238.243.245 76408 port 15728665 76408 nas_port_type Virtual 76408 remote_ip 5.5.5.242 76413 username alinezhad 76413 unique_id port 76413 terminate_cause User-Request 76413 bytes_out 31022 76413 bytes_in 72749 76413 station_ip 5.202.13.20 76413 port 15728669 76413 nas_port_type Virtual 76413 remote_ip 5.5.5.251 76414 username asadi 76414 unique_id port 76414 terminate_cause User-Request 76414 bytes_out 66627 76414 bytes_in 544546 76414 station_ip 83.122.230.127 76414 port 15728673 76414 nas_port_type Virtual 76414 remote_ip 5.5.5.252 76418 username soleymani 76418 unique_id port 76418 terminate_cause Lost-Carrier 76418 bytes_out 63450 76418 bytes_in 296619 76418 station_ip 5.119.43.209 76418 port 15728675 76418 nas_port_type Virtual 76418 remote_ip 5.5.5.237 76425 username forozande 76425 unique_id port 76425 terminate_cause User-Request 76425 bytes_out 148814 76425 bytes_in 626150 76425 station_ip 83.122.248.83 76425 port 15728687 76425 nas_port_type Virtual 76425 remote_ip 5.5.5.229 76426 username soleymani 76426 unique_id port 76426 terminate_cause Lost-Carrier 76426 bytes_out 27242 76426 bytes_in 233492 76426 station_ip 5.119.205.142 76426 port 15728682 76426 nas_port_type Virtual 76426 remote_ip 5.5.5.231 76390 bytes_out 191712 76390 bytes_in 354384 76390 station_ip 5.202.13.20 76390 port 15728644 76390 nas_port_type Virtual 76390 remote_ip 5.5.5.251 76391 username forozande 76391 unique_id port 76391 terminate_cause User-Request 76391 bytes_out 8984 76391 bytes_in 27432 76391 station_ip 37.129.169.150 76391 port 15728645 76391 nas_port_type Virtual 76391 remote_ip 5.5.5.250 76393 username alinezhad 76393 unique_id port 76393 terminate_cause User-Request 76393 bytes_out 32838 76393 bytes_in 500179 76393 station_ip 5.202.13.20 76393 port 15728648 76393 nas_port_type Virtual 76393 remote_ip 5.5.5.251 76394 username aminvpn 76394 unique_id port 76394 terminate_cause Lost-Carrier 76394 bytes_out 1677323 76394 bytes_in 67325550 76394 station_ip 5.233.57.197 76394 port 15728650 76394 nas_port_type Virtual 76394 remote_ip 5.5.5.248 76396 username forozande 76396 unique_id port 76396 terminate_cause User-Request 76396 bytes_out 170132 76396 bytes_in 276519 76396 station_ip 83.122.243.33 76396 port 15728652 76396 nas_port_type Virtual 76396 remote_ip 5.5.5.245 76400 username sobhan 76400 unique_id port 76400 terminate_cause User-Request 76400 bytes_out 0 76400 bytes_in 0 76400 station_ip 151.238.243.245 76400 port 15728659 76400 nas_port_type Virtual 76400 remote_ip 5.5.5.242 76412 username amin.insta01 76412 unique_id port 76412 terminate_cause User-Request 76412 bytes_out 0 76412 bytes_in 0 76412 station_ip 151.238.243.245 76412 port 15728672 76412 nas_port_type Virtual 76412 remote_ip 5.5.5.239 76416 username forozande 76416 unique_id port 76416 terminate_cause User-Request 76416 bytes_out 35956 76416 bytes_in 106705 76416 station_ip 83.122.132.100 76416 port 15728676 76416 nas_port_type Virtual 76416 remote_ip 5.5.5.236 76420 username asadi 76420 unique_id port 76420 terminate_cause User-Request 76420 bytes_out 95297 76420 bytes_in 475692 76420 station_ip 83.122.230.127 76420 port 15728680 76420 nas_port_type Virtual 76420 remote_ip 5.5.5.252 76423 username asadi 76423 unique_id port 76423 terminate_cause User-Request 76423 bytes_out 27264 76423 bytes_in 112313 76423 station_ip 83.122.230.127 76423 port 15728684 76423 nas_port_type Virtual 76423 remote_ip 5.5.5.252 76424 username asadi 76424 unique_id port 76424 terminate_cause User-Request 76424 bytes_out 22450 76424 bytes_in 86947 76424 station_ip 83.122.230.127 76424 port 15728685 76424 nas_port_type Virtual 76424 remote_ip 5.5.5.252 76430 username forozande 76430 unique_id port 76430 terminate_cause User-Request 76430 bytes_out 0 76430 bytes_in 0 76430 station_ip 83.122.248.83 76430 port 15728690 76430 nas_port_type Virtual 76430 remote_ip 5.5.5.229 76433 username soleymani 76433 unique_id port 76433 terminate_cause User-Request 76433 bytes_out 27514 76433 bytes_in 76035 76433 station_ip 5.120.82.195 76433 port 15728693 76433 nas_port_type Virtual 76433 remote_ip 5.5.5.227 76438 username pouria 76438 unique_id port 76438 terminate_cause User-Request 76438 bytes_out 7882808 76438 bytes_in 280962441 76438 station_ip 5.119.132.222 76438 port 15728686 76438 nas_port_type Virtual 76438 remote_ip 5.5.5.230 76441 username soleymani 76441 unique_id port 76441 terminate_cause Lost-Carrier 76441 bytes_out 40776 76441 bytes_in 171859 76441 station_ip 5.120.82.195 76441 port 15728699 76441 nas_port_type Virtual 76441 remote_ip 5.5.5.225 76446 username asadi 76446 unique_id port 76446 terminate_cause User-Request 76446 bytes_out 30250 76446 bytes_in 84310 76446 station_ip 113.203.13.150 76446 port 15728707 76446 nas_port_type Virtual 76446 remote_ip 5.5.5.226 76447 username asadi 76447 unique_id port 76447 terminate_cause User-Request 76403 username sobhan 76403 unique_id port 76403 terminate_cause User-Request 76403 bytes_out 0 76403 bytes_in 0 76403 station_ip 151.238.243.245 76403 port 15728662 76403 nas_port_type Virtual 76403 remote_ip 5.5.5.242 76405 username sobhan 76405 unique_id port 76405 terminate_cause User-Request 76405 bytes_out 0 76405 bytes_in 0 76405 station_ip 151.238.243.245 76405 port 15728664 76405 nas_port_type Virtual 76405 remote_ip 5.5.5.242 76407 username asadi 76407 unique_id port 76407 terminate_cause User-Request 76407 bytes_out 88768 76407 bytes_in 1628964 76407 station_ip 83.122.230.127 76407 port 15728666 76407 nas_port_type Virtual 76407 remote_ip 5.5.5.252 76409 username asadi 76409 unique_id port 76409 terminate_cause User-Request 76409 bytes_out 106882 76409 bytes_in 4057645 76409 station_ip 83.122.230.127 76409 port 15728668 76409 nas_port_type Virtual 76409 remote_ip 5.5.5.252 76410 username ahmadi 76410 unique_id port 76410 terminate_cause User-Request 76410 bytes_out 36683 76410 bytes_in 404651 76410 station_ip 83.122.154.106 76410 port 15728667 76410 nas_port_type Virtual 76410 remote_ip 5.5.5.240 76411 username amin.insta01 76411 unique_id port 76411 terminate_cause User-Request 76411 bytes_out 0 76411 bytes_in 0 76411 station_ip 151.238.243.245 76411 port 15728671 76411 nas_port_type Virtual 76411 remote_ip 5.5.5.239 76415 username sobhan 76415 unique_id port 76415 terminate_cause Lost-Carrier 76415 bytes_out 1091536 76415 bytes_in 23301249 76415 station_ip 151.238.243.245 76415 port 15728670 76415 nas_port_type Virtual 76415 remote_ip 5.5.5.242 76417 username hamideh 76417 kill_reason Maximum check online fails reached 76417 unique_id port 76417 bytes_out 261710 76417 bytes_in 516905 76417 station_ip 5.119.146.141 76417 port 15728674 76417 nas_port_type Virtual 76417 remote_ip 5.5.5.238 76419 username ahmadipour 76419 unique_id port 76419 terminate_cause User-Request 76419 bytes_out 621912 76419 bytes_in 7437731 76419 station_ip 83.123.13.65 76419 port 15728678 76419 nas_port_type Virtual 76419 remote_ip 5.5.5.234 76421 username soleymani 76421 unique_id port 76421 terminate_cause User-Request 76421 bytes_out 0 76421 bytes_in 0 76421 station_ip 5.120.43.197 76421 port 15728681 76421 nas_port_type Virtual 76421 remote_ip 5.5.5.232 76422 username asadi 76422 unique_id port 76422 terminate_cause User-Request 76422 bytes_out 97510 76422 bytes_in 2419305 76422 station_ip 83.122.230.127 76422 port 15728683 76422 nas_port_type Virtual 76422 remote_ip 5.5.5.252 76427 username forozande 76427 unique_id port 76427 terminate_cause User-Request 76427 bytes_out 14531 76427 bytes_in 20624 76427 station_ip 83.122.248.83 76427 port 15728688 76427 nas_port_type Virtual 76427 remote_ip 5.5.5.229 76428 username forozande 76428 unique_id port 76428 terminate_cause User-Request 76428 bytes_out 258830 76428 bytes_in 8376410 76428 station_ip 83.122.248.83 76428 port 15728689 76428 nas_port_type Virtual 76428 remote_ip 5.5.5.229 76431 username forozande 76431 unique_id port 76431 terminate_cause User-Request 76431 bytes_out 360086 76431 bytes_in 11940289 76431 station_ip 83.122.248.83 76431 port 15728691 76431 nas_port_type Virtual 76431 remote_ip 5.5.5.229 76434 username forozande 76434 unique_id port 76434 terminate_cause User-Request 76434 bytes_out 421183 76434 bytes_in 13336395 76434 station_ip 83.122.248.83 76434 port 15728694 76434 nas_port_type Virtual 76434 remote_ip 5.5.5.229 76436 username asadi 76436 unique_id port 76436 terminate_cause User-Request 76436 bytes_out 78123 76436 bytes_in 362350 76436 station_ip 113.203.13.150 76436 port 15728697 76436 nas_port_type Virtual 76429 username reza2742 76429 unique_id port 76429 terminate_cause Lost-Carrier 76429 bytes_out 4086550 76429 bytes_in 69908825 76429 station_ip 151.235.117.215 76429 port 15728677 76429 nas_port_type Virtual 76429 remote_ip 5.5.5.235 76432 username asadi 76432 unique_id port 76432 terminate_cause User-Request 76432 bytes_out 65878 76432 bytes_in 1096686 76432 station_ip 83.122.124.170 76432 port 15728692 76432 nas_port_type Virtual 76432 remote_ip 5.5.5.228 76435 username forozande 76435 unique_id port 76435 terminate_cause User-Request 76435 bytes_out 280940 76435 bytes_in 9338927 76435 station_ip 83.122.248.83 76435 port 15728696 76435 nas_port_type Virtual 76435 remote_ip 5.5.5.229 76437 username forozande 76437 unique_id port 76437 terminate_cause User-Request 76437 bytes_out 329199 76437 bytes_in 9930556 76437 station_ip 83.122.248.83 76437 port 15728698 76437 nas_port_type Virtual 76437 remote_ip 5.5.5.229 76443 username asadi 76443 unique_id port 76443 terminate_cause User-Request 76443 bytes_out 31515 76443 bytes_in 78789 76443 station_ip 113.203.13.150 76443 port 15728703 76443 nas_port_type Virtual 76443 remote_ip 5.5.5.226 76444 username asadi 76444 unique_id port 76444 terminate_cause User-Request 76444 bytes_out 19504 76444 bytes_in 66717 76444 station_ip 113.203.13.150 76444 port 15728704 76444 nas_port_type Virtual 76444 remote_ip 5.5.5.226 76445 username asadi 76445 unique_id port 76445 terminate_cause User-Request 76445 bytes_out 28831 76445 bytes_in 68574 76445 station_ip 113.203.13.150 76445 port 15728706 76445 nas_port_type Virtual 76445 remote_ip 5.5.5.226 76448 username asadi 76448 unique_id port 76448 terminate_cause User-Request 76448 bytes_out 21463 76448 bytes_in 67284 76448 station_ip 113.203.13.150 76448 port 15728709 76448 nas_port_type Virtual 76448 remote_ip 5.5.5.226 76452 username asadi 76452 unique_id port 76452 terminate_cause User-Request 76452 bytes_out 19621 76452 bytes_in 67362 76452 station_ip 113.203.13.150 76452 port 15728714 76452 nas_port_type Virtual 76452 remote_ip 5.5.5.226 76455 username asadi 76455 unique_id port 76455 terminate_cause User-Request 76455 bytes_out 59885 76455 bytes_in 699033 76455 station_ip 113.203.57.157 76455 port 15728716 76455 nas_port_type Virtual 76455 remote_ip 5.5.5.220 76460 username forozande 76460 unique_id port 76460 terminate_cause User-Request 76460 bytes_out 353127 76460 bytes_in 8659941 76460 station_ip 83.122.162.28 76460 port 15728721 76460 nas_port_type Virtual 76460 remote_ip 5.5.5.218 76462 username ahmadi 76462 unique_id port 76462 terminate_cause User-Request 76462 bytes_out 0 76462 bytes_in 0 76462 station_ip 83.122.253.190 76462 port 15728724 76462 nas_port_type Virtual 76462 remote_ip 5.5.5.217 76464 username soleymani 76464 unique_id port 76464 terminate_cause User-Request 76464 bytes_out 0 76464 bytes_in 0 76464 station_ip 5.120.103.2 76464 port 15728725 76464 nas_port_type Virtual 76464 remote_ip 5.5.5.216 76466 username asadi 76466 unique_id port 76466 terminate_cause User-Request 76466 bytes_out 26688 76466 bytes_in 78098 76466 station_ip 113.203.57.157 76466 port 15728727 76466 nas_port_type Virtual 76466 remote_ip 5.5.5.220 76473 username soleymani 76473 unique_id port 76473 terminate_cause Lost-Carrier 76473 bytes_out 107124 76473 bytes_in 317191 76473 station_ip 5.120.103.2 76473 port 15728729 76473 nas_port_type Virtual 76473 remote_ip 5.5.5.216 76477 username forozande 76477 unique_id port 76477 terminate_cause User-Request 76477 bytes_out 277126 76477 bytes_in 7507999 76477 station_ip 83.122.162.28 76477 port 15728739 76477 nas_port_type Virtual 76436 remote_ip 5.5.5.226 76439 username soleymani 76439 unique_id port 76439 terminate_cause Lost-Carrier 76439 bytes_out 15920 76439 bytes_in 137950 76439 station_ip 5.120.82.195 76439 port 15728695 76439 nas_port_type Virtual 76439 remote_ip 5.5.5.227 76440 username mobina 76440 unique_id port 76440 terminate_cause User-Request 76440 bytes_out 6901468 76440 bytes_in 154861122 76440 station_ip 5.219.202.90 76440 port 15728679 76440 nas_port_type Virtual 76440 remote_ip 5.5.5.233 76442 username asadi 76442 unique_id port 76442 terminate_cause User-Request 76442 bytes_out 36438 76442 bytes_in 154287 76442 station_ip 113.203.13.150 76442 port 15728702 76442 nas_port_type Virtual 76442 remote_ip 5.5.5.226 76450 username asadi 76450 unique_id port 76450 terminate_cause User-Request 76450 bytes_out 32719 76450 bytes_in 85459 76450 station_ip 113.203.13.150 76450 port 15728712 76450 nas_port_type Virtual 76450 remote_ip 5.5.5.226 76451 username asadi 76451 unique_id port 76451 terminate_cause User-Request 76451 bytes_out 20254 76451 bytes_in 65780 76451 station_ip 113.203.13.150 76451 port 15728713 76451 nas_port_type Virtual 76451 remote_ip 5.5.5.226 76454 username soleymani 76454 unique_id port 76454 terminate_cause Lost-Carrier 76454 bytes_out 195666 76454 bytes_in 281312 76454 station_ip 5.119.95.13 76454 port 15728705 76454 nas_port_type Virtual 76454 remote_ip 5.5.5.222 76456 username soleymani 76456 unique_id port 76456 terminate_cause Lost-Carrier 76456 bytes_out 33597 76456 bytes_in 155042 76456 station_ip 5.120.50.18 76456 port 15728711 76456 nas_port_type Virtual 76456 remote_ip 5.5.5.221 76458 username asadi 76458 unique_id port 76458 terminate_cause User-Request 76458 bytes_out 21262 76458 bytes_in 72736 76458 station_ip 113.203.57.157 76458 port 15728719 76458 nas_port_type Virtual 76458 remote_ip 5.5.5.220 76459 username asadi 76459 unique_id port 76459 terminate_cause User-Request 76459 bytes_out 23127 76459 bytes_in 83534 76459 station_ip 113.203.57.157 76459 port 15728720 76459 nas_port_type Virtual 76459 remote_ip 5.5.5.220 76461 username asadi 76461 unique_id port 76461 terminate_cause User-Request 76461 bytes_out 19391 76461 bytes_in 71625 76461 station_ip 113.203.57.157 76461 port 15728722 76461 nas_port_type Virtual 76461 remote_ip 5.5.5.220 76467 username soleymani 76467 unique_id port 76467 terminate_cause User-Request 76467 bytes_out 0 76467 bytes_in 0 76467 station_ip 5.120.103.2 76467 port 15728728 76467 nas_port_type Virtual 76467 remote_ip 5.5.5.216 76468 username forozande 76468 unique_id port 76468 terminate_cause User-Request 76468 bytes_out 284756 76468 bytes_in 8007175 76468 station_ip 83.122.162.28 76468 port 15728730 76468 nas_port_type Virtual 76468 remote_ip 5.5.5.218 76471 username asadi 76471 unique_id port 76471 terminate_cause User-Request 76471 bytes_out 17145 76471 bytes_in 60432 76471 station_ip 113.203.57.157 76471 port 15728733 76471 nas_port_type Virtual 76471 remote_ip 5.5.5.220 76475 username asadi 76475 unique_id port 76475 terminate_cause User-Request 76475 bytes_out 24844 76475 bytes_in 136036 76475 station_ip 113.203.57.157 76475 port 15728736 76475 nas_port_type Virtual 76475 remote_ip 5.5.5.220 76479 username forozande 76479 unique_id port 76479 terminate_cause User-Request 76479 bytes_out 285527 76479 bytes_in 8734097 76479 station_ip 83.122.162.28 76479 port 15728740 76479 nas_port_type Virtual 76479 remote_ip 5.5.5.218 76480 username asadi 76480 unique_id port 76480 terminate_cause User-Request 76480 bytes_out 48889 76480 bytes_in 421237 76480 station_ip 83.123.246.29 76480 port 15728742 76480 nas_port_type Virtual 76447 bytes_out 19439 76447 bytes_in 65380 76447 station_ip 113.203.13.150 76447 port 15728708 76447 nas_port_type Virtual 76447 remote_ip 5.5.5.226 76449 username asadi 76449 unique_id port 76449 terminate_cause User-Request 76449 bytes_out 28554 76449 bytes_in 69044 76449 station_ip 113.203.13.150 76449 port 15728710 76449 nas_port_type Virtual 76449 remote_ip 5.5.5.226 76453 username asadi 76453 unique_id port 76453 terminate_cause User-Request 76453 bytes_out 29689 76453 bytes_in 60582 76453 station_ip 113.203.13.150 76453 port 15728715 76453 nas_port_type Virtual 76453 remote_ip 5.5.5.226 76457 username asadi 76457 unique_id port 76457 terminate_cause User-Request 76457 bytes_out 31257 76457 bytes_in 72098 76457 station_ip 113.203.57.157 76457 port 15728717 76457 nas_port_type Virtual 76457 remote_ip 5.5.5.220 76463 username asadi 76463 unique_id port 76463 terminate_cause User-Request 76463 bytes_out 32728 76463 bytes_in 85097 76463 station_ip 113.203.57.157 76463 port 15728723 76463 nas_port_type Virtual 76463 remote_ip 5.5.5.220 76465 username soleymani 76465 unique_id port 76465 terminate_cause User-Request 76465 bytes_out 0 76465 bytes_in 0 76465 station_ip 5.120.103.2 76465 port 15728726 76465 nas_port_type Virtual 76465 remote_ip 5.5.5.216 76469 username asadi 76469 unique_id port 76469 terminate_cause User-Request 76469 bytes_out 46099 76469 bytes_in 724261 76469 station_ip 113.203.57.157 76469 port 15728731 76469 nas_port_type Virtual 76469 remote_ip 5.5.5.220 76470 username forozande 76470 unique_id port 76470 terminate_cause User-Request 76470 bytes_out 218834 76470 bytes_in 6342402 76470 station_ip 83.122.162.28 76470 port 15728732 76470 nas_port_type Virtual 76470 remote_ip 5.5.5.218 76472 username forozande 76472 unique_id port 76472 terminate_cause User-Request 76472 bytes_out 234044 76472 bytes_in 6964315 76472 station_ip 83.122.162.28 76472 port 15728734 76472 nas_port_type Virtual 76472 remote_ip 5.5.5.218 76474 username asadi 76474 unique_id port 76474 terminate_cause User-Request 76474 bytes_out 38748 76474 bytes_in 151690 76474 station_ip 113.203.57.157 76474 port 15728735 76474 nas_port_type Virtual 76474 remote_ip 5.5.5.220 76476 username forozande 76476 unique_id port 76476 terminate_cause User-Request 76476 bytes_out 283273 76476 bytes_in 8570462 76476 station_ip 83.122.162.28 76476 port 15728738 76476 nas_port_type Virtual 76476 remote_ip 5.5.5.218 76482 username zoha 76482 unique_id port 76482 terminate_cause Lost-Carrier 76482 bytes_out 4307184 76482 bytes_in 58230975 76482 station_ip 5.120.66.170 76482 port 15728701 76482 nas_port_type Virtual 76482 remote_ip 5.5.5.223 76483 username forozande 76483 unique_id port 76483 terminate_cause User-Request 76483 bytes_out 139096 76483 bytes_in 3668457 76483 station_ip 83.122.162.28 76483 port 15728745 76483 nas_port_type Virtual 76483 remote_ip 5.5.5.218 76485 username forozande 76485 unique_id port 76485 terminate_cause User-Request 76485 bytes_out 92414 76485 bytes_in 2121270 76485 station_ip 83.122.162.28 76485 port 15728747 76485 nas_port_type Virtual 76485 remote_ip 5.5.5.218 76488 username asadi 76488 unique_id port 76488 terminate_cause User-Request 76488 bytes_out 18706 76488 bytes_in 74370 76488 station_ip 83.123.246.29 76488 port 15728750 76488 nas_port_type Virtual 76488 remote_ip 5.5.5.213 76489 username mobina 76489 unique_id port 76489 terminate_cause Lost-Carrier 76489 bytes_out 201155 76489 bytes_in 1193687 76489 station_ip 5.219.202.90 76489 port 15728744 76489 nas_port_type Virtual 76489 remote_ip 5.5.5.233 76491 username soleymani 76491 unique_id port 76477 remote_ip 5.5.5.218 76478 username reza 76478 unique_id port 76478 terminate_cause User-Request 76478 bytes_out 179377 76478 bytes_in 5505331 76478 station_ip 113.203.25.20 76478 port 15728737 76478 nas_port_type Virtual 76478 remote_ip 5.5.5.215 76481 username asadi 76481 unique_id port 76481 terminate_cause User-Request 76481 bytes_out 18280 76481 bytes_in 61846 76481 station_ip 83.123.246.29 76481 port 15728743 76481 nas_port_type Virtual 76481 remote_ip 5.5.5.213 76486 username asadi 76486 unique_id port 76486 terminate_cause User-Request 76486 bytes_out 24694 76486 bytes_in 74622 76486 station_ip 83.123.246.29 76486 port 15728748 76486 nas_port_type Virtual 76486 remote_ip 5.5.5.213 76490 username asadi 76490 unique_id port 76490 terminate_cause User-Request 76490 bytes_out 23473 76490 bytes_in 80431 76490 station_ip 83.123.246.29 76490 port 15728751 76490 nas_port_type Virtual 76490 remote_ip 5.5.5.213 76493 username asadi 76493 unique_id port 76493 terminate_cause User-Request 76493 bytes_out 23376 76493 bytes_in 107085 76493 station_ip 83.123.246.29 76493 port 15728753 76493 nas_port_type Virtual 76493 remote_ip 5.5.5.213 76494 username asadi 76494 unique_id port 76494 terminate_cause User-Request 76494 bytes_out 22569 76494 bytes_in 103182 76494 station_ip 83.123.246.29 76494 port 15728754 76494 nas_port_type Virtual 76494 remote_ip 5.5.5.213 76498 username asadi 76498 unique_id port 76498 terminate_cause User-Request 76498 bytes_out 74633 76498 bytes_in 734487 76498 station_ip 37.129.166.205 76498 port 15728760 76498 nas_port_type Virtual 76498 remote_ip 5.5.5.210 76499 username alinezhad 76499 unique_id port 76499 terminate_cause User-Request 76499 bytes_out 30355 76499 bytes_in 93729 76499 station_ip 5.202.13.242 76499 port 15728763 76499 nas_port_type Virtual 76499 remote_ip 5.5.5.206 76502 username aminvpn 76502 unique_id port 76502 terminate_cause Lost-Carrier 76502 bytes_out 318237 76502 bytes_in 3285683 76502 station_ip 5.233.54.64 76502 port 15728761 76502 nas_port_type Virtual 76502 remote_ip 5.5.5.208 76503 username forozande 76503 unique_id port 76503 terminate_cause User-Request 76503 bytes_out 42313 76503 bytes_in 54293 76503 station_ip 113.203.16.178 76503 port 15728765 76503 nas_port_type Virtual 76503 remote_ip 5.5.5.205 76512 username asadi 76512 unique_id port 76512 terminate_cause User-Request 76512 bytes_out 75226 76512 bytes_in 708602 76512 station_ip 37.129.166.205 76512 port 15728774 76512 nas_port_type Virtual 76512 remote_ip 5.5.5.210 76513 username alirezazamani 76513 unique_id port 76513 terminate_cause Lost-Carrier 76513 bytes_out 2458407 76513 bytes_in 4006469 76513 station_ip 5.120.85.86 76513 port 15728770 76513 nas_port_type Virtual 76513 remote_ip 5.5.5.201 76520 username sobhan 76520 unique_id port 76520 terminate_cause Lost-Carrier 76520 bytes_out 4165437 76520 bytes_in 52123767 76520 station_ip 5.120.94.78 76520 port 15728756 76520 nas_port_type Virtual 76520 remote_ip 5.5.5.212 76521 username asadi 76521 unique_id port 76521 terminate_cause User-Request 76521 bytes_out 171091 76521 bytes_in 3987400 76521 station_ip 37.129.166.205 76521 port 15728781 76521 nas_port_type Virtual 76521 remote_ip 5.5.5.210 81200 mac 81200 bytes_out 0 81200 bytes_in 0 81200 station_ip 5.119.30.76 81200 port 14 81200 unique_id port 81200 remote_ip 10.8.0.6 81209 username mahbobeh 81209 unique_id port 76526 username alinezhad 76526 unique_id port 76526 terminate_cause User-Request 76526 bytes_out 641125 76526 bytes_in 10612338 76526 station_ip 5.202.13.242 76526 port 15728777 81209 terminate_cause Lost-Carrier 76480 remote_ip 5.5.5.213 76484 username asadi 76484 unique_id port 76484 terminate_cause User-Request 76484 bytes_out 34271 76484 bytes_in 68997 76484 station_ip 83.123.246.29 76484 port 15728746 76484 nas_port_type Virtual 76484 remote_ip 5.5.5.213 76487 username asadi 76487 unique_id port 76487 terminate_cause User-Request 76487 bytes_out 234839 76487 bytes_in 6459252 76487 station_ip 83.123.246.29 76487 port 15728749 76487 nas_port_type Virtual 76487 remote_ip 5.5.5.213 76496 username sobhan 76496 unique_id port 76496 terminate_cause Lost-Carrier 76496 bytes_out 156944599 76496 bytes_in 167054315 76496 station_ip 31.56.221.214 76496 port 15728700 76496 nas_port_type Virtual 76496 remote_ip 5.5.5.224 76497 username asadi 76497 unique_id port 76497 terminate_cause User-Request 76497 bytes_out 16048 76497 bytes_in 102698 76497 station_ip 37.129.166.205 76497 port 15728758 76497 nas_port_type Virtual 76497 remote_ip 5.5.5.210 76504 username forozande 76504 unique_id port 76504 terminate_cause User-Request 76504 bytes_out 234435 76504 bytes_in 7000851 76504 station_ip 113.203.16.178 76504 port 15728766 76504 nas_port_type Virtual 76504 remote_ip 5.5.5.205 76505 username zoha 76505 unique_id port 76505 terminate_cause User-Request 76505 bytes_out 1594627 76505 bytes_in 26114507 76505 station_ip 5.120.66.170 76505 port 15728764 76505 nas_port_type Virtual 76505 remote_ip 5.5.5.223 76506 username soleymani 76506 unique_id port 76506 terminate_cause Lost-Carrier 76506 bytes_out 455533 76506 bytes_in 426361 76506 station_ip 5.119.75.222 76506 port 15728767 76506 nas_port_type Virtual 76506 remote_ip 5.5.5.204 76510 username mahbobeh 76510 unique_id port 76510 terminate_cause Lost-Carrier 76510 bytes_out 14699852 76510 bytes_in 274970779 76510 station_ip 83.122.40.19 76510 port 15728757 76510 nas_port_type Virtual 76510 remote_ip 5.5.5.211 76514 username mahdi 76514 unique_id port 76514 terminate_cause Lost-Carrier 76514 bytes_out 2092372 76514 bytes_in 27795155 76514 station_ip 5.120.102.176 76514 port 15728718 76514 nas_port_type Virtual 76514 remote_ip 5.5.5.219 76515 username asadi 76515 unique_id port 76515 terminate_cause User-Request 76515 bytes_out 196926 76515 bytes_in 4768630 76515 station_ip 37.129.166.205 76515 port 15728778 76515 nas_port_type Virtual 76515 remote_ip 5.5.5.210 76516 username amin.insta22 76516 unique_id port 76516 terminate_cause Lost-Carrier 76516 bytes_out 329642 76516 bytes_in 1851394 76516 station_ip 5.123.64.155 76516 port 15728769 76516 nas_port_type Virtual 76516 remote_ip 5.5.5.202 76517 username ahmadi 76517 unique_id port 76517 terminate_cause User-Request 76517 bytes_out 38402 76517 bytes_in 239173 76517 station_ip 83.122.253.190 76517 port 15728779 76517 nas_port_type Virtual 76517 remote_ip 5.5.5.217 76519 username zoha 76519 unique_id port 76519 terminate_cause Lost-Carrier 76519 bytes_out 3583203 76519 bytes_in 49955930 76519 station_ip 5.120.66.170 76519 port 15728772 76519 nas_port_type Virtual 76519 remote_ip 5.5.5.223 76524 username soleymani 76524 unique_id port 76524 terminate_cause Lost-Carrier 76524 bytes_out 52746 76524 bytes_in 173739 76524 station_ip 5.119.53.230 76524 port 15728783 76524 nas_port_type Virtual 76524 remote_ip 5.5.5.198 76525 username forozande 76525 unique_id port 76525 terminate_cause User-Request 76525 bytes_out 39679 76525 bytes_in 150957 76525 station_ip 113.203.16.178 76525 port 15728786 76525 nas_port_type Virtual 76525 remote_ip 5.5.5.205 76527 username ahmadi 76527 unique_id port 76527 terminate_cause User-Request 76527 bytes_out 0 76527 bytes_in 0 76527 station_ip 83.122.212.182 76527 port 15728787 76491 terminate_cause Lost-Carrier 76491 bytes_out 343497 76491 bytes_in 748630 76491 station_ip 5.120.37.75 76491 port 15728741 76491 nas_port_type Virtual 76491 remote_ip 5.5.5.214 76492 username asadi 76492 unique_id port 76492 terminate_cause User-Request 76492 bytes_out 34314 76492 bytes_in 100683 76492 station_ip 83.123.246.29 76492 port 15728752 76492 nas_port_type Virtual 76492 remote_ip 5.5.5.213 76495 username asadi 76495 unique_id port 76495 terminate_cause User-Request 76495 bytes_out 29160 76495 bytes_in 82531 76495 station_ip 83.123.246.29 76495 port 15728755 76495 nas_port_type Virtual 76495 remote_ip 5.5.5.213 76500 username soleymani 76500 unique_id port 76500 terminate_cause Lost-Carrier 76500 bytes_out 8227874 76500 bytes_in 760254 76500 station_ip 5.119.71.100 76500 port 15728759 76500 nas_port_type Virtual 76500 remote_ip 5.5.5.209 76501 username soleymani 76501 unique_id port 76501 terminate_cause Lost-Carrier 76501 bytes_out 18873 76501 bytes_in 188321 76501 station_ip 5.120.59.98 76501 port 15728762 76501 nas_port_type Virtual 76501 remote_ip 5.5.5.207 76507 username soleymani 76507 unique_id port 76507 terminate_cause Lost-Carrier 76507 bytes_out 490270 76507 bytes_in 718644 76507 station_ip 5.119.67.239 76507 port 15728768 76507 nas_port_type Virtual 76507 remote_ip 5.5.5.203 76508 username asadi 76508 unique_id port 76508 terminate_cause User-Request 76508 bytes_out 28563 76508 bytes_in 124175 76508 station_ip 37.129.166.205 76508 port 15728773 76508 nas_port_type Virtual 76508 remote_ip 5.5.5.210 76509 username soleymani 76509 unique_id port 76509 terminate_cause Lost-Carrier 76509 bytes_out 12274 76509 bytes_in 147336 76509 station_ip 5.119.120.84 76509 port 15728771 76509 nas_port_type Virtual 76509 remote_ip 5.5.5.200 76511 username iranmanesh 76511 unique_id port 76511 terminate_cause Lost-Carrier 76511 bytes_out 3463142 76511 bytes_in 150440104 76511 station_ip 5.112.92.107 76511 port 15728646 76511 nas_port_type Virtual 76511 remote_ip 5.5.5.249 76518 username asadi 76518 unique_id port 76518 terminate_cause User-Request 76518 bytes_out 164327 76518 bytes_in 2609347 76518 station_ip 37.129.166.205 76518 port 15728780 76518 nas_port_type Virtual 76518 remote_ip 5.5.5.210 76522 username amin.insta22 76522 unique_id port 76522 terminate_cause Lost-Carrier 76522 bytes_out 103373 76522 bytes_in 881836 76522 station_ip 5.123.64.155 76522 port 15728782 76522 nas_port_type Virtual 76522 remote_ip 5.5.5.202 76533 username asadi 76533 unique_id port 76533 terminate_cause User-Request 76533 bytes_out 290286 76533 bytes_in 6582764 76533 station_ip 37.129.166.205 76533 port 15728794 76533 nas_port_type Virtual 76533 remote_ip 5.5.5.210 76534 username asadi 76534 unique_id port 76534 terminate_cause User-Request 76534 bytes_out 230648 76534 bytes_in 3221374 76534 station_ip 37.129.166.205 76534 port 15728795 76534 nas_port_type Virtual 76534 remote_ip 5.5.5.210 76535 username asadi 76535 unique_id port 76535 terminate_cause User-Request 76535 bytes_out 519712 76535 bytes_in 12012071 76535 station_ip 37.129.166.205 76535 port 15728796 76535 nas_port_type Virtual 76535 remote_ip 5.5.5.210 76539 username soleymani 76539 unique_id port 76539 terminate_cause Lost-Carrier 76539 bytes_out 79151 76539 bytes_in 369437 76539 station_ip 5.119.184.6 76539 port 15728801 76539 nas_port_type Virtual 76539 remote_ip 5.5.5.191 76541 username mahdi 76541 unique_id port 76541 terminate_cause Lost-Carrier 76541 bytes_out 2245393 76541 bytes_in 58082273 76541 station_ip 5.120.102.176 76541 port 15728785 76541 nas_port_type Virtual 76541 remote_ip 5.5.5.219 76544 username sobhan 76526 nas_port_type Virtual 76526 remote_ip 5.5.5.206 76528 username mahbobeh 76528 unique_id port 76528 terminate_cause Lost-Carrier 76528 bytes_out 6609771 76528 bytes_in 141094947 76528 station_ip 83.122.40.19 76528 port 15728775 76528 nas_port_type Virtual 76528 remote_ip 5.5.5.211 76531 username soleymani 76531 unique_id port 76531 terminate_cause Lost-Carrier 76531 bytes_out 35547 76531 bytes_in 157511 76531 station_ip 5.120.178.71 76531 port 15728790 76531 nas_port_type Virtual 76531 remote_ip 5.5.5.195 76532 username mobina 76532 unique_id port 76532 terminate_cause User-Request 76532 bytes_out 7672980 76532 bytes_in 136425881 76532 station_ip 37.254.206.27 76532 port 15728788 76532 nas_port_type Virtual 76532 remote_ip 5.5.5.196 76536 username alirezazamani 76536 unique_id port 76536 terminate_cause User-Request 76536 bytes_out 428035 76536 bytes_in 5241643 76536 station_ip 113.203.24.235 76536 port 15728797 76536 nas_port_type Virtual 76536 remote_ip 5.5.5.194 76538 username forozande 76538 unique_id port 76538 terminate_cause User-Request 76538 bytes_out 44048 76538 bytes_in 227738 76538 station_ip 37.129.156.190 76538 port 15728802 76538 nas_port_type Virtual 76538 remote_ip 5.5.5.190 76540 username forozande 76540 unique_id port 76540 terminate_cause User-Request 76540 bytes_out 48125 76540 bytes_in 115046 76540 station_ip 37.129.236.150 76540 port 15728803 76540 nas_port_type Virtual 76540 remote_ip 5.5.5.189 76542 username mohammadi 76542 unique_id port 76542 terminate_cause User-Request 76542 bytes_out 0 76542 bytes_in 0 76542 station_ip 83.123.104.145 76542 port 15728804 76542 nas_port_type Virtual 76542 remote_ip 5.5.5.188 76543 username mohammadi 76543 unique_id port 76543 terminate_cause User-Request 76543 bytes_out 0 76543 bytes_in 0 76543 station_ip 83.123.104.145 76543 port 15728805 76543 nas_port_type Virtual 76543 remote_ip 5.5.5.188 76545 username forozande 76545 unique_id port 76545 terminate_cause User-Request 76545 bytes_out 124574 76545 bytes_in 567036 76545 station_ip 83.123.213.112 76545 port 15728806 76545 nas_port_type Virtual 76545 remote_ip 5.5.5.187 76552 username zoha 76552 unique_id port 76552 terminate_cause Lost-Carrier 76552 bytes_out 568076 76552 bytes_in 4631733 76552 station_ip 5.119.8.203 76552 port 15728809 76552 nas_port_type Virtual 76552 remote_ip 5.5.5.185 76554 username soleymani 76554 unique_id port 76554 terminate_cause Lost-Carrier 76554 bytes_out 127902 76554 bytes_in 553576 76554 station_ip 5.119.97.126 76554 port 15728815 76554 nas_port_type Virtual 76554 remote_ip 5.5.5.180 76557 username alirezazamani 76557 unique_id port 76557 terminate_cause User-Request 76557 bytes_out 468084 76557 bytes_in 11040303 76557 station_ip 5.120.106.47 76557 port 15728867 76557 nas_port_type Virtual 76557 remote_ip 5.5.5.177 76561 username soleymani 76561 kill_reason Maximum number of concurrent logins reached 76561 unique_id port 76561 bytes_out 0 76561 bytes_in 0 76561 station_ip 5.119.152.124 76561 port 15728874 76561 nas_port_type Virtual 76565 username soleymani 76565 kill_reason Maximum number of concurrent logins reached 76565 unique_id port 76565 bytes_out 0 76565 bytes_in 0 76565 station_ip 5.119.18.81 76565 port 15728878 76565 nas_port_type Virtual 76568 username soleymani 76568 unique_id port 76568 terminate_cause Lost-Carrier 76568 bytes_out 27290 76568 bytes_in 157602 76568 station_ip 5.120.118.226 76568 port 15728870 76568 nas_port_type Virtual 76568 remote_ip 5.5.5.174 76575 username soleymani 76575 kill_reason Maximum number of concurrent logins reached 76575 unique_id port 76575 bytes_out 0 76575 bytes_in 0 76575 station_ip 5.120.157.190 76575 port 15728887 76527 nas_port_type Virtual 76527 remote_ip 5.5.5.197 76529 username soleymani 76529 unique_id port 76529 terminate_cause User-Request 76529 bytes_out 0 76529 bytes_in 0 76529 station_ip 5.120.178.71 76529 port 15728789 76529 nas_port_type Virtual 76529 remote_ip 5.5.5.195 76530 username zoha 76530 unique_id port 76530 terminate_cause Lost-Carrier 76530 bytes_out 2528392 76530 bytes_in 41334182 76530 station_ip 5.120.66.170 76530 port 15728784 76530 nas_port_type Virtual 76530 remote_ip 5.5.5.223 76537 username alirezazamani 76537 unique_id port 76537 terminate_cause User-Request 76537 bytes_out 284808 76537 bytes_in 4515879 76537 station_ip 113.203.24.235 76537 port 15728798 76537 nas_port_type Virtual 76537 remote_ip 5.5.5.194 76546 username forozande 76546 unique_id port 76546 terminate_cause User-Request 76546 bytes_out 40512 76546 bytes_in 502271 76546 station_ip 83.123.213.112 76546 port 15728807 76546 nas_port_type Virtual 76546 remote_ip 5.5.5.187 76549 username soleymani 76549 unique_id port 76549 terminate_cause Lost-Carrier 76549 bytes_out 84746 76549 bytes_in 560689 76549 station_ip 5.119.17.72 76549 port 15728811 76549 nas_port_type Virtual 76549 remote_ip 5.5.5.184 76551 username forozande 76551 unique_id port 76551 terminate_cause User-Request 76551 bytes_out 40524 76551 bytes_in 285944 76551 station_ip 37.129.103.110 76551 port 15728814 76551 nas_port_type Virtual 76551 remote_ip 5.5.5.181 76553 username forozande 76553 unique_id port 76553 terminate_cause User-Request 76553 bytes_out 24343 76553 bytes_in 140551 76553 station_ip 83.123.51.9 76553 port 15728821 76553 nas_port_type Virtual 76553 remote_ip 5.5.5.178 76556 username alirezazamani 76556 unique_id port 76556 terminate_cause Lost-Carrier 76556 bytes_out 143998 76556 bytes_in 3429102 76556 station_ip 5.120.106.47 76556 port 15728830 76556 nas_port_type Virtual 76556 remote_ip 5.5.5.177 76559 username alirezazamani 76559 unique_id port 76559 terminate_cause User-Request 76559 bytes_out 2707216 76559 bytes_in 36920719 76559 station_ip 37.27.8.210 76559 port 15728817 76559 nas_port_type Virtual 76559 remote_ip 5.5.5.179 76560 username soleymani 76560 unique_id port 76560 terminate_cause Lost-Carrier 76560 bytes_out 307286 76560 bytes_in 449103 76560 station_ip 5.119.247.27 76560 port 15728866 76560 nas_port_type Virtual 76560 remote_ip 5.5.5.175 76562 username soleymani 76562 kill_reason Maximum number of concurrent logins reached 76562 unique_id port 76562 bytes_out 0 76562 bytes_in 0 76562 station_ip 5.119.152.124 76562 port 15728875 76562 nas_port_type Virtual 76563 username soleymani 76563 kill_reason Maximum number of concurrent logins reached 76563 unique_id port 76563 bytes_out 0 76563 bytes_in 0 76563 station_ip 5.119.152.124 76563 port 15728876 76563 nas_port_type Virtual 76566 username soleymani 76566 kill_reason Maximum number of concurrent logins reached 76566 unique_id port 76566 bytes_out 0 76566 bytes_in 0 76566 station_ip 5.119.18.81 76566 port 15728879 76566 nas_port_type Virtual 76567 username soleymani 76567 kill_reason Maximum number of concurrent logins reached 76567 unique_id port 76567 bytes_out 0 76567 bytes_in 0 76567 station_ip 5.119.18.81 76567 port 15728880 76567 nas_port_type Virtual 76571 username alirezazamani 76571 unique_id port 76571 terminate_cause Lost-Carrier 76571 bytes_out 219456 76571 bytes_in 4063482 76571 station_ip 5.120.106.47 76571 port 15728869 76571 nas_port_type Virtual 76571 remote_ip 5.5.5.177 76573 username asadi 76573 unique_id port 76573 terminate_cause User-Request 76573 bytes_out 250972 76573 bytes_in 4864264 76573 station_ip 83.123.240.175 76573 port 15728882 76573 nas_port_type Virtual 76573 remote_ip 5.5.5.171 76544 unique_id port 76544 terminate_cause User-Request 76544 bytes_out 1282535 76544 bytes_in 14479892 76544 station_ip 5.119.4.91 76544 port 15728800 76544 nas_port_type Virtual 76544 remote_ip 5.5.5.192 76547 username mobina 76547 unique_id port 76547 terminate_cause Lost-Carrier 76547 bytes_out 117857 76547 bytes_in 490690 76547 station_ip 5.123.151.109 76547 port 15728808 76547 nas_port_type Virtual 76547 remote_ip 5.5.5.186 76548 username soleymani 76548 unique_id port 76548 terminate_cause User-Request 76548 bytes_out 65784 76548 bytes_in 545557 76548 station_ip 5.119.17.72 76548 port 15728810 76548 nas_port_type Virtual 76548 remote_ip 5.5.5.184 76550 username ahmadipour 76550 unique_id port 76550 terminate_cause Lost-Carrier 76550 bytes_out 107858 76550 bytes_in 1324428 76550 station_ip 83.123.63.97 76550 port 15728812 76550 nas_port_type Virtual 76550 remote_ip 5.5.5.183 76555 username alirezazamani 76555 unique_id port 76555 terminate_cause Lost-Carrier 76555 bytes_out 621296 76555 bytes_in 7766255 76555 station_ip 5.120.106.47 76555 port 15728813 76555 nas_port_type Virtual 76555 remote_ip 5.5.5.182 76558 username alirezazamani 76558 unique_id port 76558 terminate_cause Lost-Carrier 76558 bytes_out 521183 76558 bytes_in 14486130 76558 station_ip 5.120.106.47 76558 port 15728846 76558 nas_port_type Virtual 76558 remote_ip 5.5.5.176 76564 username soleymani 76564 kill_reason Maximum number of concurrent logins reached 76564 unique_id port 76564 bytes_out 0 76564 bytes_in 0 76564 station_ip 5.119.18.81 76564 port 15728877 76564 nas_port_type Virtual 76569 username soleymani 76569 unique_id port 76569 terminate_cause Lost-Carrier 76569 bytes_out 57095 76569 bytes_in 246999 76569 station_ip 5.120.102.58 76569 port 15728872 76569 nas_port_type Virtual 76569 remote_ip 5.5.5.173 76570 username soleymani 76570 unique_id port 76570 terminate_cause User-Request 76570 bytes_out 0 76570 bytes_in 0 76570 station_ip 5.119.113.209 76570 port 15728883 76570 nas_port_type Virtual 76570 remote_ip 5.5.5.170 76572 username soleymani 76572 unique_id port 76572 terminate_cause User-Request 76572 bytes_out 0 76572 bytes_in 0 76572 station_ip 5.119.113.209 76572 port 15728884 76572 nas_port_type Virtual 76572 remote_ip 5.5.5.170 76574 username soleymani 76574 kill_reason Maximum number of concurrent logins reached 76574 unique_id port 76574 bytes_out 0 76574 bytes_in 0 76574 station_ip 5.120.157.190 76574 port 15728886 76574 nas_port_type Virtual 76582 username ahmadi 76582 unique_id port 76582 terminate_cause User-Request 76582 bytes_out 30718 76582 bytes_in 123728 76582 station_ip 83.122.141.242 76582 port 15728894 76582 nas_port_type Virtual 76582 remote_ip 5.5.5.167 76584 username soleymani 76584 unique_id port 76584 terminate_cause Lost-Carrier 76584 bytes_out 53359 76584 bytes_in 184132 76584 station_ip 5.120.58.56 76584 port 15728892 76584 nas_port_type Virtual 76584 remote_ip 5.5.5.168 76587 username soleymani 76587 unique_id port 76587 terminate_cause Lost-Carrier 76587 bytes_out 39833 76587 bytes_in 161411 76587 station_ip 5.120.129.229 76587 port 15728895 76587 nas_port_type Virtual 76587 remote_ip 5.5.5.166 76588 username soleymani 76588 unique_id port 76588 terminate_cause Lost-Carrier 76588 bytes_out 103295 76588 bytes_in 384355 76588 station_ip 5.120.51.190 76588 port 15728896 76588 nas_port_type Virtual 76588 remote_ip 5.5.5.165 76596 username mahbobeh 76596 unique_id port 76596 terminate_cause Lost-Carrier 76596 bytes_out 1570752 76596 bytes_in 9880369 76596 station_ip 83.122.44.107 76596 port 15728900 76596 nas_port_type Virtual 76596 remote_ip 5.5.5.163 76599 username alirezazamani 76599 unique_id port 76575 nas_port_type Virtual 76576 username soleymani 76576 kill_reason Maximum number of concurrent logins reached 76576 unique_id port 76576 bytes_out 0 76576 bytes_in 0 76576 station_ip 5.120.157.190 76576 port 15728888 76576 nas_port_type Virtual 76578 username alirezazamani 76578 unique_id port 76578 terminate_cause User-Request 76578 bytes_out 2553214 76578 bytes_in 24590739 76578 station_ip 37.27.8.210 76578 port 15728871 76578 nas_port_type Virtual 76578 remote_ip 5.5.5.179 76585 username alirezazamani 76585 unique_id port 76585 terminate_cause User-Request 76585 bytes_out 2173545 76585 bytes_in 36469780 76585 station_ip 37.27.8.210 76585 port 15728891 76585 nas_port_type Virtual 76585 remote_ip 5.5.5.179 76590 username alirezazamani 76590 unique_id port 76590 terminate_cause User-Request 76590 bytes_out 0 76590 bytes_in 0 76590 station_ip 5.120.106.47 76590 port 15728898 76590 nas_port_type Virtual 76590 remote_ip 5.5.5.176 76591 username alirezazamani 76591 unique_id port 76591 terminate_cause User-Request 76591 bytes_out 0 76591 bytes_in 0 76591 station_ip 5.120.106.47 76591 port 15728899 76591 nas_port_type Virtual 76591 remote_ip 5.5.5.176 76592 username alirezazamani 76592 unique_id port 76592 terminate_cause Lost-Carrier 76592 bytes_out 1491604 76592 bytes_in 12015676 76592 station_ip 5.119.229.210 76592 port 15728901 76592 nas_port_type Virtual 76592 remote_ip 5.5.5.162 76595 username asadi 76595 unique_id port 76595 terminate_cause User-Request 76595 bytes_out 34630 76595 bytes_in 177770 76595 station_ip 83.123.240.175 76595 port 15728909 76595 nas_port_type Virtual 76595 remote_ip 5.5.5.171 76597 username soleymani 76597 unique_id port 76597 terminate_cause Lost-Carrier 76597 bytes_out 37004 76597 bytes_in 172645 76597 station_ip 5.120.103.235 76597 port 15728907 76597 nas_port_type Virtual 76597 remote_ip 5.5.5.159 76598 username soleymani 76598 unique_id port 76598 terminate_cause Lost-Carrier 76598 bytes_out 28529 76598 bytes_in 156527 76598 station_ip 5.119.64.171 76598 port 15728908 76598 nas_port_type Virtual 76598 remote_ip 5.5.5.158 76603 username alirezazamani 76603 unique_id port 76603 terminate_cause User-Request 76603 bytes_out 728895 76603 bytes_in 1046200 76603 station_ip 5.119.229.210 76603 port 15728914 76603 nas_port_type Virtual 76603 remote_ip 5.5.5.162 76605 username aminvpn 76605 unique_id port 76605 terminate_cause Lost-Carrier 76605 bytes_out 14606747 76605 bytes_in 548843725 76605 station_ip 5.233.54.64 76605 port 15728905 76605 nas_port_type Virtual 76605 remote_ip 5.5.5.208 76607 username alinezhad 76607 unique_id port 76607 terminate_cause User-Request 76607 bytes_out 148275 76607 bytes_in 430455 76607 station_ip 5.202.7.20 76607 port 15728923 76607 nas_port_type Virtual 76607 remote_ip 5.5.5.153 76608 username alinezhad 76608 unique_id port 76608 terminate_cause User-Request 76608 bytes_out 0 76608 bytes_in 0 76608 station_ip 5.202.7.20 76608 port 15728925 76608 nas_port_type Virtual 76608 remote_ip 5.5.5.153 76614 username asadi 76614 unique_id port 76614 terminate_cause User-Request 76614 bytes_out 110286 76614 bytes_in 1465406 76614 station_ip 83.123.240.175 76614 port 15728930 76614 nas_port_type Virtual 76614 remote_ip 5.5.5.171 76618 username mahbobeh 76618 unique_id port 76618 terminate_cause Lost-Carrier 76618 bytes_out 280136 76618 bytes_in 2664870 76618 station_ip 83.122.44.107 76618 port 15728935 76618 nas_port_type Virtual 76618 remote_ip 5.5.5.163 76622 username mobina 76622 unique_id port 76622 terminate_cause User-Request 76622 bytes_out 8103371 76622 bytes_in 144652661 76622 station_ip 5.219.195.123 76622 port 15728934 76577 username soleymani 76577 unique_id port 76577 terminate_cause Lost-Carrier 76577 bytes_out 6973 76577 bytes_in 133118 76577 station_ip 5.119.18.81 76577 port 15728881 76577 nas_port_type Virtual 76577 remote_ip 5.5.5.172 76579 username forozande 76579 unique_id port 76579 terminate_cause User-Request 76579 bytes_out 19755 76579 bytes_in 63277 76579 station_ip 83.122.145.136 76579 port 15728890 76579 nas_port_type Virtual 76579 remote_ip 5.5.5.169 76580 username soleymani 76580 unique_id port 76580 terminate_cause Lost-Carrier 76580 bytes_out 15792 76580 bytes_in 140281 76580 station_ip 5.119.113.209 76580 port 15728885 76580 nas_port_type Virtual 76580 remote_ip 5.5.5.170 76581 username forozande 76581 unique_id port 76581 terminate_cause User-Request 76581 bytes_out 10165 76581 bytes_in 23158 76581 station_ip 83.122.145.136 76581 port 15728893 76581 nas_port_type Virtual 76581 remote_ip 5.5.5.169 76583 username sobhan 76583 unique_id port 76583 terminate_cause Lost-Carrier 76583 bytes_out 1095673 76583 bytes_in 7921744 76583 station_ip 5.119.4.91 76583 port 15728816 76583 nas_port_type Virtual 76583 remote_ip 5.5.5.192 76586 username alirezazamani 76586 unique_id port 76586 terminate_cause Lost-Carrier 76586 bytes_out 207674 76586 bytes_in 1757719 76586 station_ip 5.120.106.47 76586 port 15728873 76586 nas_port_type Virtual 76586 remote_ip 5.5.5.176 76589 username alinezhad 76589 unique_id port 76589 terminate_cause User-Request 76589 bytes_out 70475 76589 bytes_in 711553 76589 station_ip 5.202.3.226 76589 port 15728897 76589 nas_port_type Virtual 76589 remote_ip 5.5.5.164 76593 username forozande 76593 unique_id port 76593 terminate_cause User-Request 76593 bytes_out 39204 76593 bytes_in 101300 76593 station_ip 83.123.65.74 76593 port 15728904 76593 nas_port_type Virtual 76593 remote_ip 5.5.5.160 76594 username sobhan 76594 unique_id port 76594 terminate_cause User-Request 76594 bytes_out 3862122 76594 bytes_in 83706126 76594 station_ip 5.120.33.99 76594 port 15728903 76594 nas_port_type Virtual 76594 remote_ip 5.5.5.161 76600 username forozande 76600 unique_id port 76600 terminate_cause User-Request 76600 bytes_out 211821 76600 bytes_in 6152673 76600 station_ip 37.129.160.127 76600 port 15728915 76600 nas_port_type Virtual 76600 remote_ip 5.5.5.156 76602 username alinezhad 76602 unique_id port 76602 terminate_cause User-Request 76602 bytes_out 0 76602 bytes_in 0 76602 station_ip 5.202.60.67 76602 port 15728919 76602 nas_port_type Virtual 76602 remote_ip 5.5.5.155 76610 username soleymani 76610 unique_id port 76610 terminate_cause Lost-Carrier 76610 bytes_out 53618 76610 bytes_in 189918 76610 station_ip 5.119.43.169 76610 port 15728920 76610 nas_port_type Virtual 76610 remote_ip 5.5.5.154 76612 username mobina 76612 unique_id port 76612 terminate_cause Lost-Carrier 76612 bytes_out 289306 76612 bytes_in 997739 76612 station_ip 5.124.51.36 76612 port 15728924 76612 nas_port_type Virtual 76612 remote_ip 5.5.5.152 76615 username mahbobeh 76615 unique_id port 76615 terminate_cause Lost-Carrier 76615 bytes_out 758394 76615 bytes_in 1120945 76615 station_ip 83.122.44.107 76615 port 15728916 76615 nas_port_type Virtual 76615 remote_ip 5.5.5.163 76616 username iranmanesh 76616 unique_id port 76616 terminate_cause Lost-Carrier 76616 bytes_out 1936338 76616 bytes_in 32013857 76616 station_ip 5.112.38.20 76616 port 15728799 76616 nas_port_type Virtual 76616 remote_ip 5.5.5.193 76617 username reza 76617 unique_id port 76617 terminate_cause User-Request 76617 bytes_out 356387 76617 bytes_in 8480089 76617 station_ip 37.129.125.87 76617 port 15728933 76617 nas_port_type Virtual 76599 terminate_cause User-Request 76599 bytes_out 73183 76599 bytes_in 419140 76599 station_ip 83.123.150.228 76599 port 15728910 76599 nas_port_type Virtual 76599 remote_ip 5.5.5.157 76601 username forozande 76601 unique_id port 76601 terminate_cause User-Request 76601 bytes_out 29002 76601 bytes_in 120191 76601 station_ip 37.129.160.127 76601 port 15728917 76601 nas_port_type Virtual 76601 remote_ip 5.5.5.156 76604 username asadi 76604 unique_id port 76604 terminate_cause User-Request 76604 bytes_out 129186 76604 bytes_in 1714733 76604 station_ip 83.123.240.175 76604 port 15728918 76604 nas_port_type Virtual 76604 remote_ip 5.5.5.171 76606 username asadi 76606 unique_id port 76606 terminate_cause User-Request 76606 bytes_out 115803 76606 bytes_in 1366818 76606 station_ip 83.123.240.175 76606 port 15728922 76606 nas_port_type Virtual 76606 remote_ip 5.5.5.171 76609 username alirezazamani 76609 unique_id port 76609 terminate_cause User-Request 76609 bytes_out 27130829 76609 bytes_in 201643303 76609 station_ip 37.27.8.210 76609 port 15728913 76609 nas_port_type Virtual 76609 remote_ip 5.5.5.179 76611 username alinezhad 76611 unique_id port 76611 terminate_cause User-Request 76611 bytes_out 0 76611 bytes_in 0 76611 station_ip 5.202.98.155 76611 port 15728928 76611 nas_port_type Virtual 76611 remote_ip 5.5.5.151 76613 username zoha 76613 unique_id port 76613 terminate_cause User-Request 76613 bytes_out 1037129 76613 bytes_in 10750268 76613 station_ip 5.119.8.203 76613 port 15728906 76613 nas_port_type Virtual 76613 remote_ip 5.5.5.185 76620 username soleymani 76620 unique_id port 76620 terminate_cause Lost-Carrier 76620 bytes_out 71274 76620 bytes_in 272207 76620 station_ip 5.119.182.178 76620 port 15728938 76620 nas_port_type Virtual 76620 remote_ip 5.5.5.147 76624 username asadi 76624 unique_id port 76624 terminate_cause User-Request 76624 bytes_out 39795 76624 bytes_in 151374 76624 station_ip 83.123.240.175 76624 port 15728942 76624 nas_port_type Virtual 76624 remote_ip 5.5.5.171 76626 username reza2742 76626 unique_id port 76626 terminate_cause Lost-Carrier 76626 bytes_out 3235384 76626 bytes_in 9386560 76626 station_ip 151.235.117.215 76626 port 15728932 76626 nas_port_type Virtual 76626 remote_ip 5.5.5.235 76629 username reza 76629 unique_id port 76629 terminate_cause User-Request 76629 bytes_out 955671 76629 bytes_in 9362802 76629 station_ip 37.129.125.87 76629 port 15728945 76629 nas_port_type Virtual 76629 remote_ip 5.5.5.150 76630 username alirezazamani 76630 unique_id port 76630 terminate_cause User-Request 76630 bytes_out 61927372 76630 bytes_in 104796595 76630 station_ip 37.27.8.210 76630 port 15728929 76630 nas_port_type Virtual 76630 remote_ip 5.5.5.179 76637 username alinezhad 76637 unique_id port 76637 terminate_cause User-Request 76637 bytes_out 0 76637 bytes_in 0 76637 station_ip 37.129.98.61 76637 port 15728951 76637 nas_port_type Virtual 76637 remote_ip 5.5.5.142 76638 username alirezazamani 76638 unique_id port 76638 terminate_cause Admin-Reboot 76638 bytes_out 22828145 76638 bytes_in 12300894 76638 station_ip 37.27.8.210 76638 port 15728952 76638 nas_port_type Virtual 76638 remote_ip 5.5.5.179 76639 username reza 76639 unique_id port 76639 terminate_cause User-Request 76639 bytes_out 8973 76639 bytes_in 41510 76639 station_ip 37.129.19.163 76639 port 15728642 76639 nas_port_type Virtual 76639 remote_ip 5.5.5.253 76643 username sobhan 76643 unique_id port 76643 terminate_cause Lost-Carrier 76643 bytes_out 92714 76643 bytes_in 431414 76643 station_ip 5.119.177.162 76643 port 15728646 76643 nas_port_type Virtual 76643 remote_ip 5.5.5.250 76645 username sobhan 76617 remote_ip 5.5.5.150 76619 username reza 76619 unique_id port 76619 terminate_cause User-Request 76619 bytes_out 16509 76619 bytes_in 182785 76619 station_ip 37.129.125.87 76619 port 15728937 76619 nas_port_type Virtual 76619 remote_ip 5.5.5.150 76621 username reza 76621 unique_id port 76621 terminate_cause User-Request 76621 bytes_out 4609 76621 bytes_in 42871 76621 station_ip 37.129.125.87 76621 port 15728939 76621 nas_port_type Virtual 76621 remote_ip 5.5.5.150 76623 username alirezazamani 76623 unique_id port 76623 terminate_cause Lost-Carrier 76623 bytes_out 514671 76623 bytes_in 13430858 76623 station_ip 5.125.147.92 76623 port 15728936 76623 nas_port_type Virtual 76623 remote_ip 5.5.5.148 76627 username reza 76627 unique_id port 76627 terminate_cause User-Request 76627 bytes_out 39258 76627 bytes_in 601815 76627 station_ip 37.129.125.87 76627 port 15728941 76627 nas_port_type Virtual 76627 remote_ip 5.5.5.150 76632 username alinezhad 76632 unique_id port 76632 terminate_cause User-Request 76632 bytes_out 0 76632 bytes_in 0 76632 station_ip 37.129.237.149 76632 port 15728947 76632 nas_port_type Virtual 76632 remote_ip 5.5.5.145 76634 username zoha 76634 unique_id port 76634 terminate_cause Lost-Carrier 76634 bytes_out 564106 76634 bytes_in 2476009 76634 station_ip 5.119.8.203 76634 port 15728948 76634 nas_port_type Virtual 76634 remote_ip 5.5.5.185 76635 username rashidi 76635 unique_id port 76635 terminate_cause Lost-Carrier 76635 bytes_out 13984218 76635 bytes_in 147393974 76635 station_ip 46.100.155.61 76635 port 15728949 76635 nas_port_type Virtual 76635 remote_ip 5.5.5.144 76636 username sobhan 76636 unique_id port 76636 terminate_cause Lost-Carrier 76636 bytes_out 698025 76636 bytes_in 8674780 76636 station_ip 5.119.227.120 76636 port 15728950 76636 nas_port_type Virtual 76636 remote_ip 5.5.5.143 76640 username mobina 76640 unique_id port 76640 terminate_cause User-Request 76640 bytes_out 0 76640 bytes_in 0 76640 station_ip 5.219.194.109 76640 port 15728643 76640 nas_port_type Virtual 76640 remote_ip 5.5.5.252 76641 username hamideh 76641 unique_id port 76641 terminate_cause Lost-Carrier 76641 bytes_out 2851684 76641 bytes_in 60435513 76641 station_ip 5.120.8.77 76641 port 15728641 76641 nas_port_type Virtual 76641 remote_ip 5.5.5.254 76644 username mobina 76644 unique_id port 76644 terminate_cause User-Request 76644 bytes_out 1933442 76644 bytes_in 41769496 76644 station_ip 5.219.194.109 76644 port 15728644 76644 nas_port_type Virtual 76644 remote_ip 5.5.5.252 76647 username arabpour 76647 unique_id port 76647 terminate_cause User-Request 76647 bytes_out 390810 76647 bytes_in 8384218 76647 station_ip 37.129.84.152 76647 port 15728648 76647 nas_port_type Virtual 76647 remote_ip 5.5.5.248 76650 username alirezazamani 76650 unique_id port 76650 terminate_cause User-Request 76650 bytes_out 31011 76650 bytes_in 131438 76650 station_ip 37.27.8.210 76650 port 15728653 76650 nas_port_type Virtual 76650 remote_ip 5.5.5.255 76651 username forozande 76651 unique_id port 76651 terminate_cause User-Request 76651 bytes_out 51661 76651 bytes_in 99791 76651 station_ip 37.129.55.109 76651 port 15728654 76651 nas_port_type Virtual 76651 remote_ip 5.5.5.244 76653 username goli 76653 unique_id port 76653 terminate_cause User-Request 76653 bytes_out 878189 76653 bytes_in 78130 76653 station_ip 37.129.200.25 76653 port 15728656 76653 nas_port_type Virtual 76653 remote_ip 5.5.5.243 76654 username asadi 76654 unique_id port 76654 terminate_cause User-Request 76654 bytes_out 155897 76654 bytes_in 3096472 76654 station_ip 83.122.213.235 76654 port 15728657 76622 nas_port_type Virtual 76622 remote_ip 5.5.5.149 76625 username asadi 76625 unique_id port 76625 terminate_cause User-Request 76625 bytes_out 195777 76625 bytes_in 3022644 76625 station_ip 83.123.240.175 76625 port 15728943 76625 nas_port_type Virtual 76625 remote_ip 5.5.5.171 76628 username ahmadi 76628 unique_id port 76628 terminate_cause User-Request 76628 bytes_out 69503 76628 bytes_in 1436611 76628 station_ip 83.122.227.186 76628 port 15728944 76628 nas_port_type Virtual 76628 remote_ip 5.5.5.146 76631 username reza 76631 unique_id port 76631 terminate_cause User-Request 76631 bytes_out 1645 76631 bytes_in 14778 76631 station_ip 37.129.125.87 76631 port 15728946 76631 nas_port_type Virtual 76631 remote_ip 5.5.5.150 76633 username mahbobeh 76633 unique_id port 76633 terminate_cause Lost-Carrier 76633 bytes_out 220446 76633 bytes_in 3324865 76633 station_ip 83.122.44.107 76633 port 15728940 76633 nas_port_type Virtual 76633 remote_ip 5.5.5.163 76642 username asadi 76642 unique_id port 76642 terminate_cause User-Request 76642 bytes_out 152125 76642 bytes_in 3152136 76642 station_ip 83.122.213.235 76642 port 15728645 76642 nas_port_type Virtual 76642 remote_ip 5.5.5.251 76646 username alirezazamani 76646 unique_id port 76646 terminate_cause User-Request 76646 bytes_out 78380931 76646 bytes_in 94361460 76646 station_ip 37.27.8.210 76646 port 15728640 76646 nas_port_type Virtual 76646 remote_ip 5.5.5.255 76652 username goli 76652 unique_id port 76652 terminate_cause User-Request 76652 bytes_out 76457 76652 bytes_in 598717 76652 station_ip 37.129.200.25 76652 port 15728655 76652 nas_port_type Virtual 76652 remote_ip 5.5.5.243 76655 username mobina 76655 unique_id port 76655 terminate_cause User-Request 76655 bytes_out 549013 76655 bytes_in 2707814 76655 station_ip 5.219.194.109 76655 port 15728651 76655 nas_port_type Virtual 76655 remote_ip 5.5.5.252 76661 username forozande 76661 unique_id port 76661 terminate_cause User-Request 76661 bytes_out 27037 76661 bytes_in 254142 76661 station_ip 37.129.107.149 76661 port 15728664 76661 nas_port_type Virtual 76661 remote_ip 5.5.5.240 76662 username soleymani 76662 unique_id port 76662 terminate_cause Lost-Carrier 76662 bytes_out 93490 76662 bytes_in 330268 76662 station_ip 5.119.183.201 76662 port 15728662 76662 nas_port_type Virtual 76662 remote_ip 5.5.5.241 76663 username ahmadipour 76663 unique_id port 76663 terminate_cause Lost-Carrier 76663 bytes_out 3809581 76663 bytes_in 89810315 76663 station_ip 83.123.185.82 76663 port 15728665 76663 nas_port_type Virtual 76663 remote_ip 5.5.5.239 76664 username alirezazamani 76664 unique_id port 76664 terminate_cause User-Request 76664 bytes_out 320430 76664 bytes_in 10882899 76664 station_ip 188.245.91.241 76664 port 15728668 76664 nas_port_type Virtual 76664 remote_ip 5.5.5.237 76665 username forozande 76665 unique_id port 76665 terminate_cause User-Request 76665 bytes_out 125676 76665 bytes_in 50890 76665 station_ip 83.122.20.150 76665 port 15728670 76665 nas_port_type Virtual 76665 remote_ip 5.5.5.235 76668 username forozande 76668 unique_id port 76668 terminate_cause User-Request 76668 bytes_out 9404 76668 bytes_in 19145 76668 station_ip 37.129.60.14 76668 port 15728675 76668 nas_port_type Virtual 76668 remote_ip 5.5.5.234 76670 username mahbobeh 76670 unique_id port 76670 terminate_cause Lost-Carrier 76670 bytes_out 1180744 76670 bytes_in 14477695 76670 station_ip 37.129.44.0 76670 port 15728650 76670 nas_port_type Virtual 76670 remote_ip 5.5.5.246 76679 username zoha 76679 unique_id port 76679 terminate_cause Lost-Carrier 76679 bytes_out 1731702 76679 bytes_in 17424580 76645 unique_id port 76645 terminate_cause User-Request 76645 bytes_out 708852 76645 bytes_in 7506443 76645 station_ip 5.119.177.162 76645 port 15728647 76645 nas_port_type Virtual 76645 remote_ip 5.5.5.249 76648 username alinezhad 76648 unique_id port 76648 terminate_cause User-Request 76648 bytes_out 0 76648 bytes_in 0 76648 station_ip 83.123.43.102 76648 port 15728649 76648 nas_port_type Virtual 76648 remote_ip 5.5.5.247 76649 username forozande 76649 unique_id port 76649 terminate_cause User-Request 76649 bytes_out 194471 76649 bytes_in 3112729 76649 station_ip 83.122.103.60 76649 port 15728652 76649 nas_port_type Virtual 76649 remote_ip 5.5.5.245 76658 username alirezazamani 76658 unique_id port 76658 terminate_cause User-Request 76658 bytes_out 0 76658 bytes_in 0 76658 station_ip 37.27.8.210 76658 port 15728660 76658 nas_port_type Virtual 76658 remote_ip 5.5.5.255 76659 username asadi 76659 unique_id port 76659 terminate_cause User-Request 76659 bytes_out 271144 76659 bytes_in 5954682 76659 station_ip 83.122.213.235 76659 port 15728661 76659 nas_port_type Virtual 76659 remote_ip 5.5.5.251 76671 username pouria 76671 unique_id port 76671 terminate_cause Lost-Carrier 76671 bytes_out 345821 76671 bytes_in 5641912 76671 station_ip 5.120.158.249 76671 port 15728676 76671 nas_port_type Virtual 76671 remote_ip 5.5.5.232 76672 username forozande 76672 unique_id port 76672 terminate_cause User-Request 76672 bytes_out 46248 76672 bytes_in 449693 76672 station_ip 83.122.30.196 76672 port 15728681 76672 nas_port_type Virtual 76672 remote_ip 5.5.5.228 76675 username pouria 76675 unique_id port 76675 terminate_cause User-Request 76675 bytes_out 3955470 76675 bytes_in 123773969 76675 station_ip 151.235.96.77 76675 port 15728677 76675 nas_port_type Virtual 76675 remote_ip 5.5.5.231 76678 username forozande 76678 unique_id port 76678 terminate_cause User-Request 76678 bytes_out 22148 76678 bytes_in 347719 76678 station_ip 83.122.30.196 76678 port 15728684 76678 nas_port_type Virtual 76678 remote_ip 5.5.5.228 76681 username forozande 76681 unique_id port 76681 terminate_cause User-Request 76681 bytes_out 14522 76681 bytes_in 35190 76681 station_ip 83.122.30.196 76681 port 15728688 76681 nas_port_type Virtual 76681 remote_ip 5.5.5.228 76682 username forozande 76682 unique_id port 76682 terminate_cause User-Request 76682 bytes_out 4344 76682 bytes_in 15579 76682 station_ip 83.122.30.196 76682 port 15728689 76682 nas_port_type Virtual 76682 remote_ip 5.5.5.228 76686 username alirezazamani 76686 unique_id port 76686 terminate_cause User-Request 76686 bytes_out 2973099 76686 bytes_in 130669844 76686 station_ip 31.57.129.129 76686 port 15728687 76686 nas_port_type Virtual 76686 remote_ip 5.5.5.226 76687 username forozande 76687 unique_id port 76687 terminate_cause User-Request 76687 bytes_out 8830 76687 bytes_in 45545 76687 station_ip 37.129.75.92 76687 port 15728701 76687 nas_port_type Virtual 76687 remote_ip 5.5.5.221 76690 username forozande 76690 unique_id port 76690 terminate_cause User-Request 76690 bytes_out 67694 76690 bytes_in 151600 76690 station_ip 37.129.11.236 76690 port 15728702 76690 nas_port_type Virtual 76690 remote_ip 5.5.5.220 76699 username forozande 76699 unique_id port 76699 terminate_cause User-Request 76699 bytes_out 51976 76699 bytes_in 358919 76699 station_ip 83.122.153.94 76699 port 15728711 76699 nas_port_type Virtual 76699 remote_ip 5.5.5.212 76700 username aminvpn 76700 unique_id port 76700 terminate_cause User-Request 76700 bytes_out 3847108 76700 bytes_in 40152008 76700 station_ip 5.120.84.64 76700 port 15728674 76700 nas_port_type Virtual 76700 remote_ip 5.5.5.233 76654 nas_port_type Virtual 76654 remote_ip 5.5.5.251 76656 username asadi 76656 unique_id port 76656 terminate_cause User-Request 76656 bytes_out 456102 76656 bytes_in 7992620 76656 station_ip 83.122.213.235 76656 port 15728658 76656 nas_port_type Virtual 76656 remote_ip 5.5.5.251 76657 username alinezhad 76657 unique_id port 76657 terminate_cause User-Request 76657 bytes_out 0 76657 bytes_in 0 76657 station_ip 113.203.35.127 76657 port 15728659 76657 nas_port_type Virtual 76657 remote_ip 5.5.5.242 76660 username forozande 76660 unique_id port 76660 terminate_cause User-Request 76660 bytes_out 82201 76660 bytes_in 1608358 76660 station_ip 37.129.107.149 76660 port 15728663 76660 nas_port_type Virtual 76660 remote_ip 5.5.5.240 76666 username hamideh 76666 unique_id port 76666 terminate_cause Lost-Carrier 76666 bytes_out 1598966 76666 bytes_in 29486776 76666 station_ip 5.120.8.77 76666 port 15728666 76666 nas_port_type Virtual 76666 remote_ip 5.5.5.254 76667 username forozande 76667 unique_id port 76667 terminate_cause User-Request 76667 bytes_out 18872 76667 bytes_in 29772 76667 station_ip 37.129.60.14 76667 port 15728671 76667 nas_port_type Virtual 76667 remote_ip 5.5.5.234 76669 username asadi 76669 unique_id port 76669 terminate_cause User-Request 76669 bytes_out 161363 76669 bytes_in 2697771 76669 station_ip 83.122.213.235 76669 port 15728678 76669 nas_port_type Virtual 76669 remote_ip 5.5.5.251 76673 username alinezhad 76673 unique_id port 76673 terminate_cause User-Request 76673 bytes_out 162659 76673 bytes_in 6500592 76673 station_ip 5.202.59.108 76673 port 15728680 76673 nas_port_type Virtual 76673 remote_ip 5.5.5.229 76674 username forozande 76674 unique_id port 76674 terminate_cause User-Request 76674 bytes_out 55267 76674 bytes_in 855426 76674 station_ip 83.122.30.196 76674 port 15728682 76674 nas_port_type Virtual 76674 remote_ip 5.5.5.228 76676 username soleymani 76676 unique_id port 76676 terminate_cause Lost-Carrier 76676 bytes_out 78750 76676 bytes_in 766946 76676 station_ip 5.120.9.91 76676 port 15728679 76676 nas_port_type Virtual 76676 remote_ip 5.5.5.230 76677 username forozande 76677 unique_id port 76677 terminate_cause User-Request 76677 bytes_out 33209 76677 bytes_in 213600 76677 station_ip 83.122.30.196 76677 port 15728683 76677 nas_port_type Virtual 76677 remote_ip 5.5.5.228 76683 username asadi 76683 unique_id port 76683 terminate_cause User-Request 76683 bytes_out 132878 76683 bytes_in 2158083 76683 station_ip 83.122.213.235 76683 port 15728690 76683 nas_port_type Virtual 76683 remote_ip 5.5.5.251 76685 username forozande 76685 unique_id port 76685 terminate_cause User-Request 76685 bytes_out 47621 76685 bytes_in 530744 76685 station_ip 37.129.63.168 76685 port 15728700 76685 nas_port_type Virtual 76685 remote_ip 5.5.5.222 76688 username soleymani 76688 unique_id port 76688 terminate_cause Lost-Carrier 76688 bytes_out 198831 76688 bytes_in 830901 76688 station_ip 5.119.189.116 76688 port 15728698 76688 nas_port_type Virtual 76688 remote_ip 5.5.5.224 76691 username forozande 76691 unique_id port 76691 terminate_cause User-Request 76691 bytes_out 48646 76691 bytes_in 381312 76691 station_ip 37.129.200.237 76691 port 15728703 76691 nas_port_type Virtual 76691 remote_ip 5.5.5.219 76692 username mobina 76692 unique_id port 76692 terminate_cause Lost-Carrier 76692 bytes_out 2276544 76692 bytes_in 29831740 76692 station_ip 5.123.64.92 76692 port 15728667 76692 nas_port_type Virtual 76692 remote_ip 5.5.5.238 76694 username soleymani 76694 unique_id port 76694 terminate_cause Lost-Carrier 76694 bytes_out 36940 76694 bytes_in 430262 76694 station_ip 5.120.104.115 76679 station_ip 5.119.8.203 76679 port 15728669 76679 nas_port_type Virtual 76679 remote_ip 5.5.5.236 76680 username forozande 76680 unique_id port 76680 terminate_cause User-Request 76680 bytes_out 17394 76680 bytes_in 116304 76680 station_ip 83.122.30.196 76680 port 15728686 76680 nas_port_type Virtual 76680 remote_ip 5.5.5.228 76684 username forozande 76684 unique_id port 76684 terminate_cause User-Request 76684 bytes_out 0 76684 bytes_in 0 76684 station_ip 37.129.12.225 76684 port 15728697 76684 nas_port_type Virtual 76684 remote_ip 5.5.5.225 76689 username ahmadipour 76689 unique_id port 76689 terminate_cause Lost-Carrier 76689 bytes_out 6069804 76689 bytes_in 107382830 76689 station_ip 83.123.179.210 76689 port 15728699 76689 nas_port_type Virtual 76689 remote_ip 5.5.5.223 76693 username forozande 76693 unique_id port 76693 terminate_cause User-Request 76693 bytes_out 21687 76693 bytes_in 35944 76693 station_ip 37.129.200.237 76693 port 15728704 76693 nas_port_type Virtual 76693 remote_ip 5.5.5.219 76698 username mobina 76698 unique_id port 76698 terminate_cause Lost-Carrier 76698 bytes_out 3275181 76698 bytes_in 102502144 76698 station_ip 5.124.114.102 76698 port 15728708 76698 nas_port_type Virtual 76698 remote_ip 5.5.5.215 76702 username soleymani 76702 unique_id port 76702 terminate_cause Lost-Carrier 76702 bytes_out 32200 76702 bytes_in 172965 76702 station_ip 5.119.167.122 76702 port 15728709 76702 nas_port_type Virtual 76702 remote_ip 5.5.5.214 76709 username forozande 76709 unique_id port 76709 terminate_cause User-Request 76709 bytes_out 0 76709 bytes_in 0 76709 station_ip 37.129.145.172 76709 port 15728720 76709 nas_port_type Virtual 76709 remote_ip 5.5.5.207 76713 username soleymani 76713 unique_id port 76713 terminate_cause Lost-Carrier 76713 bytes_out 44736 76713 bytes_in 218759 76713 station_ip 5.120.144.101 76713 port 15728723 76713 nas_port_type Virtual 76713 remote_ip 5.5.5.205 76714 username reza 76714 unique_id port 76714 terminate_cause User-Request 76714 bytes_out 169226 76714 bytes_in 3429501 76714 station_ip 113.203.80.110 76714 port 15728725 76714 nas_port_type Virtual 76714 remote_ip 5.5.5.203 76717 username reza 76717 unique_id port 76717 terminate_cause User-Request 76717 bytes_out 40834 76717 bytes_in 918268 76717 station_ip 113.203.80.110 76717 port 15728728 76717 nas_port_type Virtual 76717 remote_ip 5.5.5.203 76718 username forozande 76718 unique_id port 76718 terminate_cause User-Request 76718 bytes_out 43836 76718 bytes_in 266708 76718 station_ip 83.123.186.212 76718 port 15728735 76718 nas_port_type Virtual 76718 remote_ip 5.5.5.199 76723 username alinezhad 76723 unique_id port 76723 terminate_cause User-Request 76723 bytes_out 0 76723 bytes_in 0 76723 station_ip 5.202.13.93 76723 port 15728737 76723 nas_port_type Virtual 76723 remote_ip 5.5.5.197 76724 username forozande 76724 unique_id port 76724 terminate_cause User-Request 76724 bytes_out 104810 76724 bytes_in 1606336 76724 station_ip 83.123.186.212 76724 port 15728738 76724 nas_port_type Virtual 76724 remote_ip 5.5.5.199 76729 username reza 76729 unique_id port 76729 terminate_cause User-Request 76729 bytes_out 9580 76729 bytes_in 58781 76729 station_ip 83.122.21.13 76729 port 15728742 76729 nas_port_type Virtual 76729 remote_ip 5.5.5.196 76730 username asadi 76730 unique_id port 76730 terminate_cause User-Request 76730 bytes_out 232 76730 bytes_in 12287 76730 station_ip 83.122.210.242 76730 port 15728748 76730 nas_port_type Virtual 76730 remote_ip 5.5.5.194 76733 username reza 76733 unique_id port 76733 terminate_cause User-Request 76733 bytes_out 0 76733 bytes_in 0 76694 port 15728705 76694 nas_port_type Virtual 76694 remote_ip 5.5.5.218 76695 username aminvpn 76695 unique_id port 76695 terminate_cause Lost-Carrier 76695 bytes_out 65325 76695 bytes_in 483175 76695 station_ip 5.233.54.64 76695 port 15728706 76695 nas_port_type Virtual 76695 remote_ip 5.5.5.217 76696 username mobina 76696 unique_id port 76696 terminate_cause Lost-Carrier 76696 bytes_out 253433 76696 bytes_in 1059117 76696 station_ip 5.123.148.189 76696 port 15728707 76696 nas_port_type Virtual 76696 remote_ip 5.5.5.216 76697 username forozande 76697 unique_id port 76697 terminate_cause User-Request 76697 bytes_out 212 76697 bytes_in 11438 76697 station_ip 83.122.75.244 76697 port 15728710 76697 nas_port_type Virtual 76697 remote_ip 5.5.5.213 76703 username forozande 76703 unique_id port 76703 terminate_cause User-Request 76703 bytes_out 19473 76703 bytes_in 49852 76703 station_ip 83.123.16.247 76703 port 15728713 76703 nas_port_type Virtual 76703 remote_ip 5.5.5.210 76704 username forozande 76704 unique_id port 76704 terminate_cause User-Request 76704 bytes_out 42873 76704 bytes_in 490574 76704 station_ip 83.123.16.247 76704 port 15728714 76704 nas_port_type Virtual 76704 remote_ip 5.5.5.210 76707 username soleymani 76707 unique_id port 76707 terminate_cause User-Request 76707 bytes_out 78405 76707 bytes_in 265795 76707 station_ip 5.119.246.19 76707 port 15728717 76707 nas_port_type Virtual 76707 remote_ip 5.5.5.208 76708 username forozande 76708 unique_id port 76708 terminate_cause User-Request 76708 bytes_out 222980 76708 bytes_in 6446961 76708 station_ip 37.129.145.172 76708 port 15728718 76708 nas_port_type Virtual 76708 remote_ip 5.5.5.207 76711 username ahmadi 76711 unique_id port 76711 terminate_cause User-Request 76711 bytes_out 66518 76711 bytes_in 182400 76711 station_ip 83.122.175.242 76711 port 15728722 76711 nas_port_type Virtual 76711 remote_ip 5.5.5.206 76716 username reza 76716 unique_id port 76716 terminate_cause User-Request 76716 bytes_out 89013 76716 bytes_in 369629 76716 station_ip 113.203.80.110 76716 port 15728726 76716 nas_port_type Virtual 76716 remote_ip 5.5.5.203 76719 username mahbobeh 76719 unique_id port 76719 terminate_cause Lost-Carrier 76719 bytes_out 21083534 76719 bytes_in 418918211 76719 station_ip 37.129.44.0 76719 port 15728719 76719 nas_port_type Virtual 76719 remote_ip 5.5.5.246 76727 username forozande 76727 unique_id port 76727 terminate_cause User-Request 76727 bytes_out 144339 76727 bytes_in 2260425 76727 station_ip 83.123.186.212 76727 port 15728743 76727 nas_port_type Virtual 76727 remote_ip 5.5.5.199 81201 station_ip 5.119.30.76 81201 port 14 81201 unique_id port 81201 remote_ip 10.8.0.6 81204 username aminvpn 81204 mac 81204 bytes_out 0 81204 bytes_in 0 81204 station_ip 5.119.30.76 76735 username aminvpn 76735 unique_id port 76735 terminate_cause Lost-Carrier 76735 bytes_out 159740 76735 bytes_in 977923 76735 station_ip 5.233.54.64 76735 port 15728746 76735 nas_port_type Virtual 76735 remote_ip 5.5.5.217 76736 username reza 76736 unique_id port 76736 terminate_cause User-Request 76736 bytes_out 2200 76736 bytes_in 14676 76736 station_ip 83.122.21.13 76736 port 15728753 76736 nas_port_type Virtual 76736 remote_ip 5.5.5.196 76743 username mahbobeh 76743 kill_reason Maximum check online fails reached 76743 unique_id port 76743 bytes_out 20674 76743 bytes_in 73387 76743 station_ip 37.129.44.0 76743 port 15728758 76743 nas_port_type Virtual 76743 remote_ip 5.5.5.246 76749 username sobhan 76749 unique_id port 76749 terminate_cause User-Request 76749 bytes_out 0 76749 bytes_in 0 81204 port 15 76701 username forozande 76701 unique_id port 76701 terminate_cause User-Request 76701 bytes_out 51251 76701 bytes_in 119840 76701 station_ip 83.123.199.57 76701 port 15728712 76701 nas_port_type Virtual 76701 remote_ip 5.5.5.211 76705 username alirezazamani 76705 unique_id port 76705 terminate_cause User-Request 76705 bytes_out 601305 76705 bytes_in 15779027 76705 station_ip 37.27.60.132 76705 port 15728715 76705 nas_port_type Virtual 76705 remote_ip 5.5.5.209 76706 username soleymani 76706 unique_id port 76706 terminate_cause User-Request 76706 bytes_out 0 76706 bytes_in 0 76706 station_ip 5.119.246.19 76706 port 15728716 76706 nas_port_type Virtual 76706 remote_ip 5.5.5.208 76710 username forozande 76710 unique_id port 76710 terminate_cause User-Request 76710 bytes_out 76838 76710 bytes_in 1761075 76710 station_ip 37.129.145.172 76710 port 15728721 76710 nas_port_type Virtual 76710 remote_ip 5.5.5.207 76712 username forozande 76712 unique_id port 76712 terminate_cause User-Request 76712 bytes_out 52950 76712 bytes_in 669149 76712 station_ip 113.203.68.139 76712 port 15728724 76712 nas_port_type Virtual 76712 remote_ip 5.5.5.204 76715 username ahmadipour 76715 unique_id port 76715 terminate_cause User-Request 76715 bytes_out 629032 76715 bytes_in 12816933 76715 station_ip 83.123.224.206 76715 port 15728727 76715 nas_port_type Virtual 76715 remote_ip 5.5.5.202 76720 username hamideh 76720 unique_id port 76720 terminate_cause Lost-Carrier 76720 bytes_out 141671 76720 bytes_in 565260 76720 station_ip 5.120.34.38 76720 port 15728733 76720 nas_port_type Virtual 76720 remote_ip 5.5.5.200 76721 username reza 76721 kill_reason Maximum check online fails reached 76721 unique_id port 76721 bytes_out 169021 76721 bytes_in 5102013 76721 station_ip 113.203.80.110 76721 port 15728734 76721 nas_port_type Virtual 76721 remote_ip 5.5.5.203 76722 username alirezazamani 76722 unique_id port 76722 terminate_cause User-Request 76722 bytes_out 2096817 76722 bytes_in 63605823 76722 station_ip 188.245.88.110 76722 port 15728732 76722 nas_port_type Virtual 76722 remote_ip 5.5.5.201 76725 username reza 76725 unique_id port 76725 terminate_cause User-Request 76725 bytes_out 0 76725 bytes_in 0 76725 station_ip 83.122.21.13 76725 port 15728740 76725 nas_port_type Virtual 76725 remote_ip 5.5.5.196 76726 username reza 76726 unique_id port 76726 terminate_cause User-Request 76726 bytes_out 0 76726 bytes_in 0 76726 station_ip 83.122.21.13 76726 port 15728741 76726 nas_port_type Virtual 76726 remote_ip 5.5.5.196 76728 username forozande 76728 unique_id port 76728 terminate_cause User-Request 76728 bytes_out 26039 76728 bytes_in 192715 76728 station_ip 83.123.186.212 76728 port 15728744 76728 nas_port_type Virtual 76728 remote_ip 5.5.5.199 76731 username forozande 76731 unique_id port 76731 terminate_cause User-Request 76731 bytes_out 181085 76731 bytes_in 2940422 76731 station_ip 37.129.202.74 76731 port 15728749 76731 nas_port_type Virtual 76731 remote_ip 5.5.5.193 76737 username amin.insta21 76737 unique_id port 76737 terminate_cause Lost-Carrier 76737 bytes_out 1711474 76737 bytes_in 26774549 76737 station_ip 5.119.24.134 76737 port 15728751 76737 nas_port_type Virtual 76737 remote_ip 5.5.5.191 76742 username iranmanesh 76742 unique_id port 76742 terminate_cause Lost-Carrier 76742 bytes_out 2500222 76742 bytes_in 34835652 76742 station_ip 5.112.74.29 76742 port 15728685 76742 nas_port_type Virtual 76742 remote_ip 5.5.5.227 76744 username amin.insta21 76744 unique_id port 76744 terminate_cause Lost-Carrier 76744 bytes_out 1167754 76744 bytes_in 21998214 76744 station_ip 5.119.24.134 76744 port 15728757 76733 station_ip 83.122.21.13 76733 port 15728752 76733 nas_port_type Virtual 76733 remote_ip 5.5.5.196 76734 username soleymani 76734 unique_id port 76734 terminate_cause Lost-Carrier 76734 bytes_out 137178 76734 bytes_in 749885 76734 station_ip 5.120.134.237 76734 port 15728745 76734 nas_port_type Virtual 76734 remote_ip 5.5.5.195 76738 username mobina 76738 unique_id port 76738 terminate_cause Lost-Carrier 76738 bytes_out 143346 76738 bytes_in 478785 76738 station_ip 5.124.90.168 76738 port 15728754 76738 nas_port_type Virtual 76738 remote_ip 5.5.5.190 76739 username ahmadi 76739 unique_id port 76739 terminate_cause User-Request 76739 bytes_out 34204 76739 bytes_in 399343 76739 station_ip 83.122.134.174 76739 port 15728755 76739 nas_port_type Virtual 76739 remote_ip 5.5.5.189 76740 username amin.insta21 76740 unique_id port 76740 terminate_cause User-Request 76740 bytes_out 0 76740 bytes_in 0 76740 station_ip 5.119.24.134 76740 port 15728756 76740 nas_port_type Virtual 76740 remote_ip 5.5.5.191 76741 username mahbobeh 76741 unique_id port 76741 terminate_cause Lost-Carrier 76741 bytes_out 1855070 76741 bytes_in 31074668 76741 station_ip 37.129.44.0 76741 port 15728739 76741 nas_port_type Virtual 76741 remote_ip 5.5.5.246 76750 username sobhan 76750 unique_id port 76750 terminate_cause Lost-Carrier 76750 bytes_out 1371156 76750 bytes_in 27175674 76750 station_ip 5.119.204.27 76750 port 15728763 76750 nas_port_type Virtual 76750 remote_ip 5.5.5.185 76751 username rashidi 76751 unique_id port 76751 terminate_cause User-Request 76751 bytes_out 23121229 76751 bytes_in 385174587 76751 station_ip 94.176.9.60 76751 port 15728736 76751 nas_port_type Virtual 76751 remote_ip 5.5.5.198 76752 username alirezazamani 76752 unique_id port 76752 terminate_cause Lost-Carrier 76752 bytes_out 656885 76752 bytes_in 14888014 76752 station_ip 5.119.192.213 76752 port 15728761 76752 nas_port_type Virtual 76752 remote_ip 5.5.5.186 76755 username alirezazamani 76755 unique_id port 76755 terminate_cause Lost-Carrier 76755 bytes_out 223141 76755 bytes_in 5029920 76755 station_ip 5.119.192.213 76755 port 15728768 76755 nas_port_type Virtual 76755 remote_ip 5.5.5.188 76757 username alirezazamani 76757 unique_id port 76757 terminate_cause Lost-Carrier 76757 bytes_out 778836 76757 bytes_in 28579050 76757 station_ip 5.119.192.213 76757 port 15728769 76757 nas_port_type Virtual 76757 remote_ip 5.5.5.181 76758 username zoha 76758 unique_id port 76758 terminate_cause Lost-Carrier 76758 bytes_out 418148 76758 bytes_in 1748797 76758 station_ip 5.119.8.203 76758 port 15728770 76758 nas_port_type Virtual 76758 remote_ip 5.5.5.236 76759 username alirezazamani 76759 unique_id port 76759 terminate_cause Lost-Carrier 76759 bytes_out 1451900 76759 bytes_in 47222941 76759 station_ip 5.119.192.213 76759 port 15728772 76759 nas_port_type Virtual 76759 remote_ip 5.5.5.186 76760 username forozande 76760 unique_id port 76760 terminate_cause User-Request 76760 bytes_out 142255 76760 bytes_in 680492 76760 station_ip 37.129.215.161 76760 port 15728776 76760 nas_port_type Virtual 76760 remote_ip 5.5.5.180 76771 username asadi 76771 unique_id port 76771 terminate_cause User-Request 76771 bytes_out 50173 76771 bytes_in 1091958 76771 station_ip 83.123.37.182 76771 port 15728788 76771 nas_port_type Virtual 76771 remote_ip 5.5.5.176 76773 username forozande 76773 unique_id port 76773 terminate_cause User-Request 76773 bytes_out 27437 76773 bytes_in 327207 76773 station_ip 37.129.226.12 76773 port 15728792 76773 nas_port_type Virtual 76773 remote_ip 5.5.5.174 76776 username asadi 76776 unique_id port 76776 terminate_cause User-Request 76744 nas_port_type Virtual 76744 remote_ip 5.5.5.191 76745 username reza 76745 unique_id port 76745 terminate_cause User-Request 76745 bytes_out 2469 76745 bytes_in 14993 76745 station_ip 83.122.117.135 76745 port 15728760 76745 nas_port_type Virtual 76745 remote_ip 5.5.5.187 76746 username alirezazamani 76746 unique_id port 76746 terminate_cause Lost-Carrier 76746 bytes_out 598686 76746 bytes_in 2044601 76746 station_ip 5.119.192.213 76746 port 15728759 76746 nas_port_type Virtual 76746 remote_ip 5.5.5.188 76747 username hamideh 76747 unique_id port 76747 terminate_cause Lost-Carrier 76747 bytes_out 331465 76747 bytes_in 745898 76747 station_ip 5.120.34.38 76747 port 15728762 76747 nas_port_type Virtual 76747 remote_ip 5.5.5.200 76748 username ahmadi 76748 unique_id port 76748 terminate_cause User-Request 76748 bytes_out 0 76748 bytes_in 0 76748 station_ip 83.122.134.174 76748 port 15728766 76748 nas_port_type Virtual 76748 remote_ip 5.5.5.189 76754 username mahdi 76754 unique_id port 76754 terminate_cause Lost-Carrier 76754 bytes_out 670144 76754 bytes_in 18304923 76754 station_ip 5.120.114.101 76754 port 15728764 76754 nas_port_type Virtual 76754 remote_ip 5.5.5.184 76756 username alirezazamani 76756 unique_id port 76756 terminate_cause User-Request 76756 bytes_out 20240 76756 bytes_in 177640 76756 station_ip 5.119.192.213 76756 port 15728771 76756 nas_port_type Virtual 76756 remote_ip 5.5.5.186 76761 username hamideh 76761 unique_id port 76761 terminate_cause Lost-Carrier 76761 bytes_out 330004 76761 bytes_in 279554 76761 station_ip 5.120.34.38 76761 port 15728777 76761 nas_port_type Virtual 76761 remote_ip 5.5.5.200 76762 username aminvpn 76762 unique_id port 76762 terminate_cause Lost-Carrier 76762 bytes_out 1479615 76762 bytes_in 2655582 76762 station_ip 5.233.54.64 76762 port 15728778 76762 nas_port_type Virtual 76762 remote_ip 5.5.5.217 76766 username ahmadi 76766 unique_id port 76766 terminate_cause User-Request 76766 bytes_out 148300 76766 bytes_in 435079 76766 station_ip 83.122.134.174 76766 port 15728783 76766 nas_port_type Virtual 76766 remote_ip 5.5.5.189 76769 username asadi 76769 unique_id port 76769 terminate_cause User-Request 76769 bytes_out 79525 76769 bytes_in 1044678 76769 station_ip 83.123.37.182 76769 port 15728786 76769 nas_port_type Virtual 76769 remote_ip 5.5.5.176 76772 username asadi 76772 unique_id port 76772 terminate_cause User-Request 76772 bytes_out 26218 76772 bytes_in 70944 76772 station_ip 83.123.37.182 76772 port 15728789 76772 nas_port_type Virtual 76772 remote_ip 5.5.5.176 76777 username ahmadi 76777 unique_id port 76777 terminate_cause User-Request 76777 bytes_out 0 76777 bytes_in 0 76777 station_ip 83.122.134.174 76777 port 15728796 76777 nas_port_type Virtual 76777 remote_ip 5.5.5.189 76782 username asadi 76782 unique_id port 76782 terminate_cause User-Request 76782 bytes_out 19246 76782 bytes_in 87896 76782 station_ip 83.123.37.182 76782 port 15728800 76782 nas_port_type Virtual 76782 remote_ip 5.5.5.176 76785 username zoha 76785 unique_id port 76785 terminate_cause Lost-Carrier 76785 bytes_out 6610893 76785 bytes_in 72721346 76785 station_ip 5.119.8.203 76785 port 15728779 76785 nas_port_type Virtual 76785 remote_ip 5.5.5.236 76786 username asadi 76786 unique_id port 76786 terminate_cause User-Request 76786 bytes_out 130423 76786 bytes_in 1598243 76786 station_ip 83.123.37.182 76786 port 15728806 76786 nas_port_type Virtual 76786 remote_ip 5.5.5.176 76792 username forozande 76792 unique_id port 76792 terminate_cause User-Request 76792 bytes_out 51211 76792 bytes_in 58932 76792 station_ip 113.203.50.230 76749 station_ip 5.119.204.27 76749 port 15728767 76749 nas_port_type Virtual 76749 remote_ip 5.5.5.182 76753 username soleymani 76753 unique_id port 76753 terminate_cause Lost-Carrier 76753 bytes_out 490265 76753 bytes_in 16471895 76753 station_ip 5.119.206.178 76753 port 15728765 76753 nas_port_type Virtual 76753 remote_ip 5.5.5.183 76763 username ahmadipour 76763 unique_id port 76763 terminate_cause Lost-Carrier 76763 bytes_out 430187 76763 bytes_in 4741531 76763 station_ip 83.123.232.170 76763 port 15728781 76763 nas_port_type Virtual 76763 remote_ip 5.5.5.178 76764 username forozande 76764 unique_id port 76764 terminate_cause User-Request 76764 bytes_out 55543 76764 bytes_in 119529 76764 station_ip 83.122.164.117 76764 port 15728782 76764 nas_port_type Virtual 76764 remote_ip 5.5.5.177 76765 username mobina 76765 unique_id port 76765 terminate_cause Lost-Carrier 76765 bytes_out 1552138 76765 bytes_in 32875146 76765 station_ip 5.123.247.59 76765 port 15728780 76765 nas_port_type Virtual 76765 remote_ip 5.5.5.179 76767 username asadi 76767 unique_id port 76767 terminate_cause User-Request 76767 bytes_out 198121 76767 bytes_in 6940558 76767 station_ip 83.123.37.182 76767 port 15728784 76767 nas_port_type Virtual 76767 remote_ip 5.5.5.176 76768 username asadi 76768 unique_id port 76768 terminate_cause User-Request 76768 bytes_out 59647 76768 bytes_in 284638 76768 station_ip 83.123.37.182 76768 port 15728785 76768 nas_port_type Virtual 76768 remote_ip 5.5.5.176 76770 username asadi 76770 unique_id port 76770 terminate_cause User-Request 76770 bytes_out 43856 76770 bytes_in 540828 76770 station_ip 83.123.37.182 76770 port 15728787 76770 nas_port_type Virtual 76770 remote_ip 5.5.5.176 76774 username ahmadi 76774 unique_id port 76774 terminate_cause User-Request 76774 bytes_out 0 76774 bytes_in 0 76774 station_ip 83.122.134.174 76774 port 15728794 76774 nas_port_type Virtual 76774 remote_ip 5.5.5.189 76775 username mobina 76775 unique_id port 76775 terminate_cause Lost-Carrier 76775 bytes_out 133452 76775 bytes_in 947883 76775 station_ip 5.123.8.138 76775 port 15728793 76775 nas_port_type Virtual 76775 remote_ip 5.5.5.173 76778 username asadi 76778 unique_id port 76778 terminate_cause User-Request 76778 bytes_out 15237 76778 bytes_in 30956 76778 station_ip 83.123.37.182 76778 port 15728798 76778 nas_port_type Virtual 76778 remote_ip 5.5.5.176 76779 username asadi 76779 unique_id port 76779 terminate_cause User-Request 76779 bytes_out 87256 76779 bytes_in 138565 76779 station_ip 83.123.37.182 76779 port 15728799 76779 nas_port_type Virtual 76779 remote_ip 5.5.5.176 76781 username mahbobeh 76781 unique_id port 76781 terminate_cause Lost-Carrier 76781 bytes_out 120297 76781 bytes_in 838407 76781 station_ip 37.129.44.0 76781 port 15728790 76781 nas_port_type Virtual 76781 remote_ip 5.5.5.246 76783 username forozande 76783 unique_id port 76783 terminate_cause User-Request 76783 bytes_out 32020 76783 bytes_in 52667 76783 station_ip 83.122.151.209 76783 port 15728802 76783 nas_port_type Virtual 76783 remote_ip 5.5.5.170 76787 username soleymani 76787 unique_id port 76787 terminate_cause Lost-Carrier 76787 bytes_out 224547 76787 bytes_in 886838 76787 station_ip 5.120.9.142 76787 port 15728801 76787 nas_port_type Virtual 76787 remote_ip 5.5.5.171 76788 username soleymani 76788 unique_id port 76788 terminate_cause Lost-Carrier 76788 bytes_out 125514 76788 bytes_in 2059411 76788 station_ip 5.119.138.45 76788 port 15728805 76788 nas_port_type Virtual 76788 remote_ip 5.5.5.168 76790 username dehghan 76790 unique_id port 76790 terminate_cause User-Request 76790 bytes_out 106303 76776 bytes_out 91815 76776 bytes_in 1162466 76776 station_ip 83.123.37.182 76776 port 15728795 76776 nas_port_type Virtual 76776 remote_ip 5.5.5.176 76780 username mobina 76780 unique_id port 76780 terminate_cause Lost-Carrier 76780 bytes_out 70746 76780 bytes_in 382021 76780 station_ip 5.124.113.34 76780 port 15728797 76780 nas_port_type Virtual 76780 remote_ip 5.5.5.172 76784 username asadi 76784 unique_id port 76784 terminate_cause User-Request 76784 bytes_out 8569 76784 bytes_in 22097 76784 station_ip 83.123.37.182 76784 port 15728803 76784 nas_port_type Virtual 76784 remote_ip 5.5.5.176 76789 username alirezazamani 76789 unique_id port 76789 terminate_cause Lost-Carrier 76789 bytes_out 4467347 76789 bytes_in 6065379 76789 station_ip 5.126.123.167 76789 port 15728791 76789 nas_port_type Virtual 76789 remote_ip 5.5.5.175 76797 username mobina 76797 unique_id port 76797 terminate_cause Lost-Carrier 76797 bytes_out 16405 76797 bytes_in 150180 76797 station_ip 5.123.238.16 76797 port 15728815 76797 nas_port_type Virtual 76797 remote_ip 5.5.5.163 76801 username asadi 76801 unique_id port 76801 terminate_cause User-Request 76801 bytes_out 25234 76801 bytes_in 149632 76801 station_ip 83.123.37.182 76801 port 15728820 76801 nas_port_type Virtual 76801 remote_ip 5.5.5.176 76802 username ahmadi 76802 unique_id port 76802 terminate_cause User-Request 76802 bytes_out 0 76802 bytes_in 0 76802 station_ip 83.122.134.174 76802 port 15728821 76802 nas_port_type Virtual 76802 remote_ip 5.5.5.189 76803 username pouria 76803 unique_id port 76803 terminate_cause Lost-Carrier 76803 bytes_out 14357007 76803 bytes_in 505779537 76803 station_ip 217.219.43.202 76803 port 15728804 76803 nas_port_type Virtual 76803 remote_ip 5.5.5.169 76806 username asadi 76806 unique_id port 76806 terminate_cause User-Request 76806 bytes_out 41941 76806 bytes_in 342575 76806 station_ip 83.123.37.182 76806 port 15728824 76806 nas_port_type Virtual 76806 remote_ip 5.5.5.176 76807 username forozande 76807 unique_id port 76807 terminate_cause User-Request 76807 bytes_out 60799 76807 bytes_in 218921 76807 station_ip 83.123.137.68 76807 port 15728825 76807 nas_port_type Virtual 76807 remote_ip 5.5.5.160 76808 username mahbobeh 76808 unique_id port 76808 terminate_cause Lost-Carrier 76808 bytes_out 2998530 76808 bytes_in 7987331 76808 station_ip 37.129.44.0 76808 port 15728816 76808 nas_port_type Virtual 76808 remote_ip 5.5.5.246 76809 username forozande 76809 unique_id port 76809 terminate_cause User-Request 76809 bytes_out 0 76809 bytes_in 0 76809 station_ip 83.122.182.183 76809 port 15728828 76809 nas_port_type Virtual 76809 remote_ip 5.5.5.157 76810 username forozande 76810 unique_id port 76810 terminate_cause User-Request 76810 bytes_out 22063 76810 bytes_in 54664 76810 station_ip 83.122.182.183 76810 port 15728829 76810 nas_port_type Virtual 76810 remote_ip 5.5.5.157 76811 username forozande 76811 unique_id port 76811 terminate_cause User-Request 76811 bytes_out 451615 76811 bytes_in 736993 76811 station_ip 83.122.182.183 76811 port 15728830 76811 nas_port_type Virtual 76811 remote_ip 5.5.5.157 76812 username asadi 76812 unique_id port 76812 terminate_cause User-Request 76812 bytes_out 66391 76812 bytes_in 1757204 76812 station_ip 83.123.37.182 76812 port 15728833 76812 nas_port_type Virtual 76812 remote_ip 5.5.5.176 76813 username soleymani 76813 unique_id port 76813 terminate_cause Lost-Carrier 76813 bytes_out 204757 76813 bytes_in 784201 76813 station_ip 5.120.171.30 76813 port 15728827 76813 nas_port_type Virtual 76813 remote_ip 5.5.5.158 76814 username asadi 76814 unique_id port 76814 terminate_cause User-Request 76790 bytes_in 709465 76790 station_ip 83.122.22.5 76790 port 15728807 76790 nas_port_type Virtual 76790 remote_ip 5.5.5.167 76791 username dehghan 76791 unique_id port 76791 terminate_cause User-Request 76791 bytes_out 68494 76791 bytes_in 847944 76791 station_ip 83.122.22.5 76791 port 15728808 76791 nas_port_type Virtual 76791 remote_ip 5.5.5.167 76793 username dehghan 76793 unique_id port 76793 terminate_cause User-Request 76793 bytes_out 222220 76793 bytes_in 4828831 76793 station_ip 83.122.22.5 76793 port 15728812 76793 nas_port_type Virtual 76793 remote_ip 5.5.5.167 76795 username forozande 76795 unique_id port 76795 terminate_cause User-Request 76795 bytes_out 102516 76795 bytes_in 990479 76795 station_ip 113.203.50.230 76795 port 15728814 76795 nas_port_type Virtual 76795 remote_ip 5.5.5.166 76799 username arabpour 76799 unique_id port 76799 terminate_cause User-Request 76799 bytes_out 335168 76799 bytes_in 8400842 76799 station_ip 37.129.213.196 76799 port 15728818 76799 nas_port_type Virtual 76799 remote_ip 5.5.5.162 76800 username asadi 76800 unique_id port 76800 terminate_cause User-Request 76800 bytes_out 9829 76800 bytes_in 35012 76800 station_ip 83.123.37.182 76800 port 15728819 76800 nas_port_type Virtual 76800 remote_ip 5.5.5.176 76804 username asadi 76804 unique_id port 76804 terminate_cause User-Request 76804 bytes_out 7206 76804 bytes_in 20018 76804 station_ip 83.123.37.182 76804 port 15728823 76804 nas_port_type Virtual 76804 remote_ip 5.5.5.176 76817 username reza 76817 unique_id port 76817 terminate_cause User-Request 76817 bytes_out 350538 76817 bytes_in 8437057 76817 station_ip 83.122.71.230 76817 port 15728832 76817 nas_port_type Virtual 76817 remote_ip 5.5.5.156 76818 username alirezazamani 76818 unique_id port 76818 terminate_cause User-Request 76818 bytes_out 0 76818 bytes_in 0 76818 station_ip 37.27.57.80 76818 port 15728840 76818 nas_port_type Virtual 76818 remote_ip 5.5.5.152 76819 username zoha 76819 unique_id port 76819 terminate_cause Lost-Carrier 76819 bytes_out 1608087 76819 bytes_in 20601483 76819 station_ip 5.119.8.203 76819 port 15728835 76819 nas_port_type Virtual 76819 remote_ip 5.5.5.154 76821 username alirezazamani 76821 unique_id port 76821 terminate_cause User-Request 76821 bytes_out 2790392 76821 bytes_in 44700222 76821 station_ip 5.120.24.17 76821 port 15728841 76821 nas_port_type Virtual 76821 remote_ip 5.5.5.151 76824 username asadi 76824 unique_id port 76824 terminate_cause User-Request 76824 bytes_out 169409 76824 bytes_in 1570141 76824 station_ip 83.123.37.182 76824 port 15728845 76824 nas_port_type Virtual 76824 remote_ip 5.5.5.176 76826 username dehghan 76826 unique_id port 76826 terminate_cause User-Request 76826 bytes_out 109627 76826 bytes_in 1748501 76826 station_ip 83.122.91.77 76826 port 15728847 76826 nas_port_type Virtual 76826 remote_ip 5.5.5.148 81202 terminate_cause User-Request 81202 bytes_out 142856 81202 bytes_in 343574 81202 station_ip 113.203.45.115 81202 port 15728798 81202 nas_port_type Virtual 81202 remote_ip 5.5.5.174 81203 username aminvpn 81203 mac 76831 username aminvpn 76831 unique_id port 76831 terminate_cause User-Request 76831 bytes_out 0 76831 bytes_in 0 76831 station_ip 5.233.54.64 76831 port 15728852 76831 nas_port_type Virtual 76831 remote_ip 5.5.5.217 76832 username soleymani 76832 unique_id port 76832 terminate_cause Lost-Carrier 76832 bytes_out 793730 76832 bytes_in 17672742 76832 station_ip 5.119.107.29 76832 port 15728851 76832 nas_port_type Virtual 76832 remote_ip 5.5.5.146 76833 username sobhan 76833 unique_id port 76833 terminate_cause User-Request 76792 port 15728809 76792 nas_port_type Virtual 76792 remote_ip 5.5.5.166 76794 username aminvpn 76794 kill_reason Maximum check online fails reached 76794 unique_id port 76794 bytes_out 0 76794 bytes_in 0 76794 station_ip 5.119.108.59 76794 port 15728810 76794 nas_port_type Virtual 76796 username ahmadipour 76796 unique_id port 76796 terminate_cause User-Request 76796 bytes_out 2939493 76796 bytes_in 50400387 76796 station_ip 83.122.133.77 76796 port 15728813 76796 nas_port_type Virtual 76796 remote_ip 5.5.5.164 76798 username aminvpn 76798 unique_id port 76798 terminate_cause User-Request 76798 bytes_out 936206 76798 bytes_in 7145244 76798 station_ip 5.119.108.59 76798 port 15728811 76798 nas_port_type Virtual 76798 remote_ip 5.5.5.165 76805 username mobina 76805 unique_id port 76805 terminate_cause Lost-Carrier 76805 bytes_out 26557 76805 bytes_in 150440 76805 station_ip 5.123.50.98 76805 port 15728822 76805 nas_port_type Virtual 76805 remote_ip 5.5.5.161 76815 username dehghan 76815 unique_id port 76815 terminate_cause User-Request 76815 bytes_out 363584 76815 bytes_in 9542532 76815 station_ip 83.122.97.49 76815 port 15728837 76815 nas_port_type Virtual 76815 remote_ip 5.5.5.153 76822 username alirezazamani 76822 unique_id port 76822 terminate_cause User-Request 76822 bytes_out 504011 76822 bytes_in 3293848 76822 station_ip 5.120.24.17 76822 port 15728843 76822 nas_port_type Virtual 76822 remote_ip 5.5.5.151 76823 username mahbobeh 76823 unique_id port 76823 terminate_cause Lost-Carrier 76823 bytes_out 72718 76823 bytes_in 1227957 76823 station_ip 37.129.44.0 76823 port 15728838 76823 nas_port_type Virtual 76823 remote_ip 5.5.5.246 76825 username dehghan 76825 unique_id port 76825 terminate_cause User-Request 76825 bytes_out 337074 76825 bytes_in 9223372 76825 station_ip 83.122.91.77 76825 port 15728846 76825 nas_port_type Virtual 76825 remote_ip 5.5.5.148 76830 username ahmadipour 76830 unique_id port 76830 terminate_cause Lost-Carrier 76830 bytes_out 390080 76830 bytes_in 4334958 76830 station_ip 83.122.188.45 76830 port 15728850 76830 nas_port_type Virtual 76830 remote_ip 5.5.5.147 76834 username sobhan 76834 unique_id port 76834 terminate_cause NAS-Error 76834 bytes_out 0 76834 bytes_in 380 76834 station_ip 5.119.160.133 76834 port 15728854 76834 nas_port_type Virtual 76834 remote_ip 5.5.5.145 76836 username mobina 76836 unique_id port 76836 terminate_cause Lost-Carrier 76836 bytes_out 1426479 76836 bytes_in 19477462 76836 station_ip 5.123.89.130 76836 port 15728844 76836 nas_port_type Virtual 76836 remote_ip 5.5.5.149 76846 username amin.insta21 76846 unique_id port 76846 terminate_cause Lost-Carrier 76846 bytes_out 9392427 76846 bytes_in 202625425 76846 station_ip 151.235.76.8 76846 port 15728842 76846 nas_port_type Virtual 76846 remote_ip 5.5.5.150 76847 username alirezazamani 76847 unique_id port 76847 terminate_cause Lost-Carrier 76847 bytes_out 591768 76847 bytes_in 14242867 76847 station_ip 5.120.55.2 76847 port 15728862 76847 nas_port_type Virtual 76847 remote_ip 5.5.5.139 76851 username zoha 76851 unique_id port 76851 terminate_cause Lost-Carrier 76851 bytes_out 3049310 76851 bytes_in 48295690 76851 station_ip 5.119.8.203 76851 port 15728870 76851 nas_port_type Virtual 76851 remote_ip 5.5.5.154 76852 username alirezazamani 76852 unique_id port 76852 terminate_cause Lost-Carrier 76852 bytes_out 292872 76852 bytes_in 7187063 76852 station_ip 5.120.55.2 76852 port 15728873 76852 nas_port_type Virtual 76852 remote_ip 5.5.5.139 81203 bytes_out 806600 81203 bytes_in 9427876 81203 station_ip 5.119.30.76 81203 port 14 81203 unique_id port 81203 remote_ip 10.8.0.6 76814 bytes_out 52037 76814 bytes_in 314628 76814 station_ip 83.123.37.182 76814 port 15728836 76814 nas_port_type Virtual 76814 remote_ip 5.5.5.176 76816 username zoha 76816 unique_id port 76816 terminate_cause Lost-Carrier 76816 bytes_out 402314 76816 bytes_in 3492162 76816 station_ip 5.119.8.203 76816 port 15728831 76816 nas_port_type Virtual 76816 remote_ip 5.5.5.236 76820 username reza 76820 unique_id port 76820 terminate_cause User-Request 76820 bytes_out 2180840 76820 bytes_in 2463918 76820 station_ip 83.122.71.230 76820 port 15728839 76820 nas_port_type Virtual 76820 remote_ip 5.5.5.156 76827 username ahmadi 76827 unique_id port 76827 terminate_cause User-Request 76827 bytes_out 27749 76827 bytes_in 99557 76827 station_ip 83.122.134.174 76827 port 15728848 76827 nas_port_type Virtual 76827 remote_ip 5.5.5.189 76829 username zoha 76829 unique_id port 76829 terminate_cause Lost-Carrier 76829 bytes_out 474730 76829 bytes_in 2022524 76829 station_ip 5.119.8.203 76829 port 15728849 76829 nas_port_type Virtual 76829 remote_ip 5.5.5.154 76838 username mobina 76838 unique_id port 76838 terminate_cause Lost-Carrier 76838 bytes_out 1876552 76838 bytes_in 19087918 76838 station_ip 5.123.134.121 76838 port 15728856 76838 nas_port_type Virtual 76838 remote_ip 5.5.5.143 76839 username alinezhad 76839 unique_id port 76839 terminate_cause User-Request 76839 bytes_out 44169 76839 bytes_in 424456 76839 station_ip 5.202.4.102 76839 port 15728860 76839 nas_port_type Virtual 76839 remote_ip 5.5.5.140 76840 username sobhan 76840 unique_id port 76840 terminate_cause Lost-Carrier 76840 bytes_out 11324443 76840 bytes_in 252634523 76840 station_ip 5.119.160.133 76840 port 15728855 76840 nas_port_type Virtual 76840 remote_ip 5.5.5.144 76844 username soleymani 76844 unique_id port 76844 terminate_cause Lost-Carrier 76844 bytes_out 243946 76844 bytes_in 3513951 76844 station_ip 5.119.249.37 76844 port 15728859 76844 nas_port_type Virtual 76844 remote_ip 5.5.5.141 76857 username alirezazamani 76857 unique_id port 76857 terminate_cause User-Request 76857 bytes_out 511270 76857 bytes_in 10710897 76857 station_ip 5.120.55.2 76857 port 15728876 76857 nas_port_type Virtual 76857 remote_ip 5.5.5.136 76858 username alirezazamani 76858 unique_id port 76858 terminate_cause Lost-Carrier 76858 bytes_out 268568 76858 bytes_in 7373437 76858 station_ip 5.120.55.2 76858 port 15728881 76858 nas_port_type Virtual 76858 remote_ip 5.5.5.136 76862 username alirezazamani 76862 unique_id port 76862 terminate_cause Lost-Carrier 76862 bytes_out 364580 76862 bytes_in 3874768 76862 station_ip 5.120.55.2 76862 port 15728882 76862 nas_port_type Virtual 76862 remote_ip 5.5.5.133 76863 username asadi 76863 unique_id port 76863 terminate_cause User-Request 76863 bytes_out 68492 76863 bytes_in 487686 76863 station_ip 83.123.18.18 76863 port 15728887 76863 nas_port_type Virtual 76863 remote_ip 5.5.5.131 76864 username samira 76864 unique_id port 76864 terminate_cause Admin-Reboot 76864 bytes_out 609771 76864 bytes_in 3972001 76864 station_ip 5.119.248.0 76864 port 15728878 76864 nas_port_type Virtual 76864 remote_ip 5.5.5.134 76868 username alirezazamani 76868 unique_id port 76868 terminate_cause Lost-Carrier 76868 bytes_out 301237 76868 bytes_in 6203812 76868 station_ip 5.119.15.123 76868 port 15728642 76868 nas_port_type Virtual 76868 remote_ip 5.5.5.253 76874 username mobina 76874 unique_id port 76874 terminate_cause Lost-Carrier 76874 bytes_out 31130 76874 bytes_in 186549 76874 station_ip 5.123.130.197 76874 port 15728648 76874 nas_port_type Virtual 76874 remote_ip 5.5.5.248 76880 username alirezazamani 76833 bytes_out 0 76833 bytes_in 0 76833 station_ip 5.119.160.133 76833 port 15728853 76833 nas_port_type Virtual 76833 remote_ip 5.5.5.145 76835 username iranmanesh 76835 unique_id port 76835 terminate_cause Lost-Carrier 76835 bytes_out 3451514 76835 bytes_in 54545481 76835 station_ip 5.120.183.40 76835 port 15728834 76835 nas_port_type Virtual 76835 remote_ip 5.5.5.155 76837 username mahbobeh 76837 unique_id port 76837 terminate_cause User-Request 76837 bytes_out 1514053 76837 bytes_in 22372991 76837 station_ip 37.129.44.0 76837 port 15728857 76837 nas_port_type Virtual 76837 remote_ip 5.5.5.246 76841 username soleymani 76841 unique_id port 76841 terminate_cause User-Request 76841 bytes_out 0 76841 bytes_in 0 76841 station_ip 5.119.78.238 76841 port 15728863 76841 nas_port_type Virtual 76841 remote_ip 5.5.5.138 76842 username alirezazamani 76842 unique_id port 76842 terminate_cause Lost-Carrier 76842 bytes_out 644788 76842 bytes_in 8898167 76842 station_ip 5.120.55.2 76842 port 15728858 76842 nas_port_type Virtual 76842 remote_ip 5.5.5.142 76843 username sobhan 76843 unique_id port 76843 terminate_cause Lost-Carrier 76843 bytes_out 886209 76843 bytes_in 12105267 76843 station_ip 5.119.160.133 76843 port 15728861 76843 nas_port_type Virtual 76843 remote_ip 5.5.5.145 76845 username soleymani 76845 unique_id port 76845 terminate_cause Lost-Carrier 76845 bytes_out 303154 76845 bytes_in 2385467 76845 station_ip 5.119.78.238 76845 port 15728864 76845 nas_port_type Virtual 76845 remote_ip 5.5.5.138 76848 username zoha 76848 unique_id port 76848 terminate_cause Lost-Carrier 76848 bytes_out 394862 76848 bytes_in 1282384 76848 station_ip 5.119.8.203 76848 port 15728865 76848 nas_port_type Virtual 76848 remote_ip 5.5.5.154 76849 username zoha 76849 unique_id port 76849 terminate_cause User-Request 76849 bytes_out 0 76849 bytes_in 0 76849 station_ip 5.119.8.203 76849 port 15728869 76849 nas_port_type Virtual 76849 remote_ip 5.5.5.154 76850 username alirezazamani 76850 unique_id port 76850 terminate_cause User-Request 76850 bytes_out 133929 76850 bytes_in 598450 76850 station_ip 5.120.55.2 76850 port 15728872 76850 nas_port_type Virtual 76850 remote_ip 5.5.5.139 81204 unique_id port 81204 remote_ip 10.8.0.6 81207 username aminvpn 81207 mac 81207 bytes_out 0 81207 bytes_in 0 81207 station_ip 5.119.30.76 81207 port 15 81207 unique_id port 76854 username alirezazamani 76854 unique_id port 76854 terminate_cause User-Request 76854 bytes_out 205619 76854 bytes_in 3280957 76854 station_ip 5.120.55.2 76854 port 15728874 76854 nas_port_type Virtual 76854 remote_ip 5.5.5.137 76855 username alirezazamani 76855 unique_id port 76855 terminate_cause Lost-Carrier 76855 bytes_out 209712 76855 bytes_in 4314989 76855 station_ip 5.120.55.2 76855 port 15728875 76855 nas_port_type Virtual 76855 remote_ip 5.5.5.137 76859 username dehghan 76859 unique_id port 76859 terminate_cause User-Request 76859 bytes_out 37294 76859 bytes_in 60941 76859 station_ip 83.122.89.85 76859 port 15728883 76859 nas_port_type Virtual 76859 remote_ip 5.5.5.132 76860 username mahdi 76860 unique_id port 76860 terminate_cause Lost-Carrier 76860 bytes_out 198 76860 bytes_in 1405128 76860 station_ip 5.119.255.88 76860 port 15728877 76860 nas_port_type Virtual 76860 remote_ip 5.5.5.135 81207 remote_ip 10.8.0.6 81215 username aminvpn 81215 mac 81215 bytes_out 0 81215 bytes_in 0 81215 station_ip 5.119.30.76 81215 port 15 81215 unique_id port 81215 remote_ip 10.8.0.6 76866 username forozande 76866 unique_id port 81219 username aminvpn 81219 mac 81205 username heydari 81205 unique_id port 81205 terminate_cause Lost-Carrier 76865 username alirezazamani 76865 unique_id port 76865 terminate_cause Lost-Carrier 76865 bytes_out 88676 76865 bytes_in 947715 76865 station_ip 5.120.55.2 76865 port 15728641 76865 nas_port_type Virtual 76865 remote_ip 5.5.5.254 76869 username alinezhad 76869 unique_id port 76869 terminate_cause User-Request 76869 bytes_out 0 76869 bytes_in 0 76869 station_ip 5.202.65.197 76869 port 15728645 76869 nas_port_type Virtual 76869 remote_ip 5.5.5.251 76870 username mahbobeh 76870 unique_id port 76870 terminate_cause Lost-Carrier 76870 bytes_out 114555 76870 bytes_in 925787 76870 station_ip 37.129.44.0 76870 port 15728640 76870 nas_port_type Virtual 76870 remote_ip 5.5.5.255 76875 username asadi 76875 unique_id port 76875 terminate_cause User-Request 76875 bytes_out 14053 76875 bytes_in 177793 76875 station_ip 37.129.220.253 76875 port 15728652 76875 nas_port_type Virtual 76875 remote_ip 5.5.5.246 76878 username alirezazamani 76878 unique_id port 76878 terminate_cause Lost-Carrier 76878 bytes_out 369384 76878 bytes_in 6669590 76878 station_ip 5.119.15.123 76878 port 15728651 76878 nas_port_type Virtual 76878 remote_ip 5.5.5.253 76882 username mobina 76882 unique_id port 76882 terminate_cause Lost-Carrier 76882 bytes_out 44590 76882 bytes_in 180157 76882 station_ip 5.123.152.118 76882 port 15728665 76882 nas_port_type Virtual 76882 remote_ip 5.5.5.243 76888 username soleymani 76888 unique_id port 76888 terminate_cause User-Request 76888 bytes_out 36460 76888 bytes_in 125073 76888 station_ip 5.119.92.100 76888 port 15728675 76888 nas_port_type Virtual 76888 remote_ip 5.5.5.237 76889 username rashidi 76889 unique_id port 76889 terminate_cause Lost-Carrier 76889 bytes_out 8768570 76889 bytes_in 191552790 76889 station_ip 5.119.170.163 76889 port 15728667 76889 nas_port_type Virtual 76889 remote_ip 5.5.5.242 76891 username soleymani 76891 unique_id port 76891 terminate_cause Lost-Carrier 76891 bytes_out 67591 76891 bytes_in 298551 76891 station_ip 5.120.106.199 76891 port 15728676 76891 nas_port_type Virtual 76891 remote_ip 5.5.5.236 76894 username soleymani 76894 unique_id port 76894 terminate_cause Lost-Carrier 76894 bytes_out 1018760 76894 bytes_in 314006 76894 station_ip 5.120.187.129 76894 port 15728680 76894 nas_port_type Virtual 76894 remote_ip 5.5.5.232 76899 username ahmadi 76899 unique_id port 76899 terminate_cause User-Request 76899 bytes_out 0 76899 bytes_in 0 76899 station_ip 37.129.121.245 76899 port 15728686 76899 nas_port_type Virtual 76899 remote_ip 5.5.5.227 76908 username forozande 76908 unique_id port 76908 terminate_cause User-Request 76908 bytes_out 8773 76908 bytes_in 20684 76908 station_ip 37.129.33.64 76908 port 15728695 76908 nas_port_type Virtual 76908 remote_ip 5.5.5.221 76912 username soleymani 76912 unique_id port 76912 terminate_cause Lost-Carrier 76912 bytes_out 98574 76912 bytes_in 495137 76912 station_ip 5.120.6.185 76912 port 15728701 76912 nas_port_type Virtual 76912 remote_ip 5.5.5.218 76913 username reza 76913 unique_id port 76913 terminate_cause User-Request 76913 bytes_out 11515 76913 bytes_in 44640 76913 station_ip 83.123.74.15 76913 port 15728705 76913 nas_port_type Virtual 76913 remote_ip 5.5.5.215 76917 username alirezazamani 76917 unique_id port 76917 terminate_cause Lost-Carrier 76917 bytes_out 236901 76917 bytes_in 1276051 76917 station_ip 5.119.15.123 76917 port 15728707 76917 nas_port_type Virtual 76917 remote_ip 5.5.5.245 76918 username hamideh 76918 unique_id port 76918 terminate_cause User-Request 76918 bytes_out 1589100 76918 bytes_in 7353604 76866 terminate_cause User-Request 76866 bytes_out 184299 76866 bytes_in 252211 76866 station_ip 83.123.189.7 76866 port 15728643 76866 nas_port_type Virtual 76866 remote_ip 5.5.5.252 76867 username forozande 76867 unique_id port 76867 terminate_cause User-Request 76867 bytes_out 244142 76867 bytes_in 1450440 76867 station_ip 83.123.189.7 76867 port 15728644 76867 nas_port_type Virtual 76867 remote_ip 5.5.5.252 76871 username mobina 76871 unique_id port 76871 terminate_cause Lost-Carrier 76871 bytes_out 889171 76871 bytes_in 11778870 76871 station_ip 5.123.98.184 76871 port 15728647 76871 nas_port_type Virtual 76871 remote_ip 5.5.5.249 76872 username forozande 76872 unique_id port 76872 terminate_cause User-Request 76872 bytes_out 105566 76872 bytes_in 1445017 76872 station_ip 83.123.189.7 76872 port 15728650 76872 nas_port_type Virtual 76872 remote_ip 5.5.5.252 76873 username ahmadi 76873 unique_id port 76873 terminate_cause User-Request 76873 bytes_out 105417 76873 bytes_in 608028 76873 station_ip 83.122.197.182 76873 port 15728649 76873 nas_port_type Virtual 76873 remote_ip 5.5.5.247 76876 username asadi 76876 unique_id port 76876 terminate_cause User-Request 76876 bytes_out 54804 76876 bytes_in 502817 76876 station_ip 37.129.220.253 76876 port 15728660 76876 nas_port_type Virtual 76876 remote_ip 5.5.5.246 76877 username asadi 76877 unique_id port 76877 terminate_cause User-Request 76877 bytes_out 46843 76877 bytes_in 258596 76877 station_ip 37.129.220.253 76877 port 15728663 76877 nas_port_type Virtual 76877 remote_ip 5.5.5.246 76879 username alirezazamani 76879 unique_id port 76879 terminate_cause Lost-Carrier 76879 bytes_out 1047239 76879 bytes_in 28810018 76879 station_ip 5.119.15.123 76879 port 15728653 76879 nas_port_type Virtual 76879 remote_ip 5.5.5.245 76881 username soleymani 76881 unique_id port 76881 terminate_cause Lost-Carrier 76881 bytes_out 251705 76881 bytes_in 652203 76881 station_ip 5.120.25.148 76881 port 15728664 76881 nas_port_type Virtual 76881 remote_ip 5.5.5.244 76886 username asadi 76886 unique_id port 76886 terminate_cause User-Request 76886 bytes_out 52717 76886 bytes_in 158091 76886 station_ip 37.129.220.253 76886 port 15728672 76886 nas_port_type Virtual 76886 remote_ip 5.5.5.246 76887 username soleymani 76887 unique_id port 76887 terminate_cause Lost-Carrier 76887 bytes_out 459997 76887 bytes_in 15698276 76887 station_ip 5.119.158.61 76887 port 15728670 76887 nas_port_type Virtual 76887 remote_ip 5.5.5.240 76895 username reza 76895 unique_id port 76895 terminate_cause User-Request 76895 bytes_out 21708 76895 bytes_in 395895 76895 station_ip 83.123.79.244 76895 port 15728682 76895 nas_port_type Virtual 76895 remote_ip 5.5.5.230 76896 username aminvpn 76896 unique_id port 76896 terminate_cause User-Request 76896 bytes_out 13683781 76896 bytes_in 531574036 76896 station_ip 5.233.54.64 76896 port 15728674 76896 nas_port_type Virtual 76896 remote_ip 5.5.5.238 76897 username forozande 76897 unique_id port 76897 terminate_cause User-Request 76897 bytes_out 85102 76897 bytes_in 288936 76897 station_ip 37.129.226.79 76897 port 15728683 76897 nas_port_type Virtual 76897 remote_ip 5.5.5.229 76902 username soleymani 76902 unique_id port 76902 terminate_cause Lost-Carrier 76902 bytes_out 232860 76902 bytes_in 1006991 76902 station_ip 5.120.125.86 76902 port 15728687 76902 nas_port_type Virtual 76902 remote_ip 5.5.5.226 76904 username ahmadi 76904 unique_id port 76904 terminate_cause User-Request 76904 bytes_out 0 76904 bytes_in 0 76904 station_ip 37.129.1.77 76904 port 15728691 76904 nas_port_type Virtual 76904 remote_ip 5.5.5.222 76905 username soleymani 76880 kill_reason Maximum check online fails reached 76880 unique_id port 76880 bytes_out 164085 76880 bytes_in 3632933 76880 station_ip 5.119.15.123 76880 port 15728666 76880 nas_port_type Virtual 76880 remote_ip 5.5.5.253 76883 username reza 76883 unique_id port 76883 terminate_cause User-Request 76883 bytes_out 44834 76883 bytes_in 563913 76883 station_ip 37.129.196.239 76883 port 15728668 76883 nas_port_type Virtual 76883 remote_ip 5.5.5.241 76884 username asadi 76884 unique_id port 76884 terminate_cause User-Request 76884 bytes_out 137838 76884 bytes_in 1247015 76884 station_ip 37.129.220.253 76884 port 15728669 76884 nas_port_type Virtual 76884 remote_ip 5.5.5.246 76885 username asadi 76885 unique_id port 76885 terminate_cause User-Request 76885 bytes_out 6118 76885 bytes_in 15494 76885 station_ip 37.129.220.253 76885 port 15728671 76885 nas_port_type Virtual 76885 remote_ip 5.5.5.246 76890 username soleymani 76890 unique_id port 76890 terminate_cause Lost-Carrier 76890 bytes_out 186090 76890 bytes_in 1304159 76890 station_ip 5.119.158.61 76890 port 15728673 76890 nas_port_type Virtual 76890 remote_ip 5.5.5.239 76892 username mobina 76892 unique_id port 76892 terminate_cause Lost-Carrier 76892 bytes_out 13739 76892 bytes_in 119640 76892 station_ip 5.123.250.189 76892 port 15728677 76892 nas_port_type Virtual 76892 remote_ip 5.5.5.235 76893 username soleymani 76893 unique_id port 76893 terminate_cause Lost-Carrier 76893 bytes_out 433646 76893 bytes_in 5189726 76893 station_ip 5.119.48.163 76893 port 15728678 76893 nas_port_type Virtual 76893 remote_ip 5.5.5.234 76898 username soleymani 76898 unique_id port 76898 terminate_cause Lost-Carrier 76898 bytes_out 100056 76898 bytes_in 398744 76898 station_ip 5.120.33.211 76898 port 15728681 76898 nas_port_type Virtual 76898 remote_ip 5.5.5.231 76900 username aminvpn 76900 kill_reason Maximum check online fails reached 76900 unique_id port 76900 bytes_out 554289 76900 bytes_in 21335751 76900 station_ip 5.233.54.64 76900 port 15728684 76900 nas_port_type Virtual 76900 remote_ip 5.5.5.238 76901 username soleymani 76901 unique_id port 76901 terminate_cause Lost-Carrier 76901 bytes_out 131632 76901 bytes_in 450473 76901 station_ip 5.119.189.67 76901 port 15728685 76901 nas_port_type Virtual 76901 remote_ip 5.5.5.228 76903 username zoha 76903 unique_id port 76903 terminate_cause Lost-Carrier 76903 bytes_out 2304524 76903 bytes_in 57054465 76903 station_ip 5.119.8.203 76903 port 15728679 76903 nas_port_type Virtual 76903 remote_ip 5.5.5.233 76906 username forozande 76906 unique_id port 76906 terminate_cause User-Request 76906 bytes_out 86764 76906 bytes_in 404039 76906 station_ip 37.129.33.64 76906 port 15728692 76906 nas_port_type Virtual 76906 remote_ip 5.5.5.221 76914 username soleymani 76914 unique_id port 76914 terminate_cause Lost-Carrier 76914 bytes_out 307315 76914 bytes_in 9562712 76914 station_ip 5.119.70.52 76914 port 15728703 76914 nas_port_type Virtual 76914 remote_ip 5.5.5.216 76915 username mahbobeh 76915 unique_id port 76915 terminate_cause Lost-Carrier 76915 bytes_out 77909 76915 bytes_in 136545 76915 station_ip 37.129.107.184 76915 port 15728708 76915 nas_port_type Virtual 76915 remote_ip 5.5.5.213 76922 username asadi 76922 unique_id port 76922 terminate_cause User-Request 76922 bytes_out 165687 76922 bytes_in 4951600 76922 station_ip 37.129.220.253 76922 port 15728713 76922 nas_port_type Virtual 76922 remote_ip 5.5.5.246 76924 username hamideh 76924 unique_id port 76924 terminate_cause Lost-Carrier 76924 bytes_out 70477 76924 bytes_in 163180 76924 station_ip 5.119.19.22 76924 port 15728710 76924 nas_port_type Virtual 76905 unique_id port 76905 terminate_cause Lost-Carrier 76905 bytes_out 158762 76905 bytes_in 316223 76905 station_ip 5.120.92.15 76905 port 15728689 76905 nas_port_type Virtual 76905 remote_ip 5.5.5.224 76907 username forozande 76907 unique_id port 76907 terminate_cause User-Request 76907 bytes_out 0 76907 bytes_in 0 76907 station_ip 37.129.33.64 76907 port 15728693 76907 nas_port_type Virtual 76907 remote_ip 5.5.5.221 76909 username soleymani 76909 unique_id port 76909 terminate_cause Lost-Carrier 76909 bytes_out 88079 76909 bytes_in 201916 76909 station_ip 5.120.7.66 76909 port 15728690 76909 nas_port_type Virtual 76909 remote_ip 5.5.5.223 76910 username forozande 76910 unique_id port 76910 terminate_cause User-Request 76910 bytes_out 34145 76910 bytes_in 129782 76910 station_ip 83.122.36.207 76910 port 15728696 76910 nas_port_type Virtual 76910 remote_ip 5.5.5.219 76911 username asadi 76911 unique_id port 76911 terminate_cause User-Request 76911 bytes_out 10736 76911 bytes_in 29228 76911 station_ip 37.129.220.253 76911 port 15728697 76911 nas_port_type Virtual 76911 remote_ip 5.5.5.246 76916 username soleymani 76916 unique_id port 76916 terminate_cause Lost-Carrier 76916 bytes_out 352259 76916 bytes_in 412968 76916 station_ip 5.119.3.2 76916 port 15728706 76916 nas_port_type Virtual 76916 remote_ip 5.5.5.214 76919 username forozande 76919 unique_id port 76919 terminate_cause User-Request 76919 bytes_out 262078 76919 bytes_in 3252439 76919 station_ip 37.129.9.14 76919 port 15728711 76919 nas_port_type Virtual 76919 remote_ip 5.5.5.211 76920 username soleymani 76920 unique_id port 76920 terminate_cause Lost-Carrier 76920 bytes_out 56341 76920 bytes_in 295641 76920 station_ip 5.119.37.18 76920 port 15728709 76920 nas_port_type Virtual 76920 remote_ip 5.5.5.212 76923 username asadi 76923 unique_id port 76923 terminate_cause User-Request 76923 bytes_out 241278 76923 bytes_in 4589829 76923 station_ip 37.129.220.253 76923 port 15728715 76923 nas_port_type Virtual 76923 remote_ip 5.5.5.246 76929 username hamideh 76929 unique_id port 76929 terminate_cause Lost-Carrier 76929 bytes_out 235916 76929 bytes_in 2217192 76929 station_ip 5.119.19.22 76929 port 15728718 76929 nas_port_type Virtual 76929 remote_ip 5.5.5.209 76932 username hamideh 76932 unique_id port 76932 terminate_cause User-Request 76932 bytes_out 18545 76932 bytes_in 38912 76932 station_ip 5.119.19.22 76932 port 15728724 76932 nas_port_type Virtual 76932 remote_ip 5.5.5.206 76933 username hamideh 76933 unique_id port 76933 terminate_cause Lost-Carrier 76933 bytes_out 13453 76933 bytes_in 151454 76933 station_ip 5.119.19.22 76933 port 15728722 76933 nas_port_type Virtual 76933 remote_ip 5.5.5.209 76938 username forozande 76938 unique_id port 76938 terminate_cause User-Request 76938 bytes_out 0 76938 bytes_in 0 76938 station_ip 37.129.165.14 76938 port 15728731 76938 nas_port_type Virtual 76938 remote_ip 5.5.5.201 76940 username mahdavi 76940 unique_id port 76940 terminate_cause User-Request 76940 bytes_out 350666 76940 bytes_in 1487926 76940 station_ip 83.122.47.199 76940 port 15728733 76940 nas_port_type Virtual 76940 remote_ip 5.5.5.200 76944 username forozande 76944 unique_id port 76944 terminate_cause User-Request 76944 bytes_out 39873 76944 bytes_in 94184 76944 station_ip 37.129.206.84 76944 port 15728736 76944 nas_port_type Virtual 76944 remote_ip 5.5.5.199 76945 username mahdavi 76945 unique_id port 76945 terminate_cause User-Request 76945 bytes_out 519547 76945 bytes_in 9900362 76945 station_ip 83.122.98.195 76945 port 15728737 76945 nas_port_type Virtual 76945 remote_ip 5.5.5.198 76918 station_ip 5.119.19.22 76918 port 15728694 76918 nas_port_type Virtual 76918 remote_ip 5.5.5.220 76921 username ahmadi 76921 unique_id port 76921 terminate_cause User-Request 76921 bytes_out 0 76921 bytes_in 0 76921 station_ip 37.129.1.77 76921 port 15728714 76921 nas_port_type Virtual 76921 remote_ip 5.5.5.222 76925 username soleymani 76925 unique_id port 76925 terminate_cause Lost-Carrier 76925 bytes_out 17881 76925 bytes_in 184595 76925 station_ip 5.119.134.11 76925 port 15728712 76925 nas_port_type Virtual 76925 remote_ip 5.5.5.210 76926 username forozande 76926 unique_id port 76926 terminate_cause User-Request 76926 bytes_out 32166 76926 bytes_in 201551 76926 station_ip 83.122.199.131 76926 port 15728717 76926 nas_port_type Virtual 76926 remote_ip 5.5.5.208 76935 username asadi 76935 unique_id port 76935 terminate_cause User-Request 76935 bytes_out 48187 76935 bytes_in 192855 76935 station_ip 37.129.220.253 76935 port 15728728 76935 nas_port_type Virtual 76935 remote_ip 5.5.5.246 76936 username mahbobeh 76936 unique_id port 76936 terminate_cause Lost-Carrier 76936 bytes_out 350623 76936 bytes_in 289981 76936 station_ip 37.129.11.60 76936 port 15728725 76936 nas_port_type Virtual 76936 remote_ip 5.5.5.204 76937 username soleymani 76937 unique_id port 76937 terminate_cause User-Request 76937 bytes_out 0 76937 bytes_in 0 76937 station_ip 5.119.205.147 76937 port 15728729 76937 nas_port_type Virtual 76937 remote_ip 5.5.5.202 76939 username forozande 76939 unique_id port 76939 terminate_cause User-Request 76939 bytes_out 74656 76939 bytes_in 367178 76939 station_ip 37.129.165.14 76939 port 15728732 76939 nas_port_type Virtual 76939 remote_ip 5.5.5.201 76956 username mobina 76956 unique_id port 76956 terminate_cause Lost-Carrier 76956 bytes_out 1308676 76956 bytes_in 3153004 76956 station_ip 5.123.140.150 76956 port 15728702 76956 nas_port_type Virtual 76956 remote_ip 5.5.5.217 76957 username sobhan 76957 unique_id port 76957 terminate_cause Lost-Carrier 76957 bytes_out 331909 76957 bytes_in 7916617 76957 station_ip 5.119.83.87 76957 port 15728746 76957 nas_port_type Virtual 76957 remote_ip 5.5.5.196 76959 username alirezazamani 76959 unique_id port 76959 terminate_cause Lost-Carrier 76959 bytes_out 1326924 76959 bytes_in 46797119 76959 station_ip 5.119.15.123 76959 port 15728740 76959 nas_port_type Virtual 76959 remote_ip 5.5.5.245 76961 username iranmanesh 76961 unique_id port 76961 terminate_cause Lost-Carrier 76961 bytes_out 2163586 76961 bytes_in 91301336 76961 station_ip 5.112.227.192 76961 port 15728646 76961 nas_port_type Virtual 76961 remote_ip 5.5.5.250 76964 username mahdavi 76964 unique_id port 76964 terminate_cause User-Request 76964 bytes_out 808229 76964 bytes_in 16104602 76964 station_ip 83.122.98.195 76964 port 15728755 76964 nas_port_type Virtual 76964 remote_ip 5.5.5.198 76970 username hamideh 76970 unique_id port 76970 terminate_cause Lost-Carrier 76970 bytes_out 28264 76970 bytes_in 132673 76970 station_ip 5.119.19.22 76970 port 15728760 76970 nas_port_type Virtual 76970 remote_ip 5.5.5.206 76972 username hamideh 76972 unique_id port 76972 terminate_cause Lost-Carrier 76972 bytes_out 1832 76972 bytes_in 122636 76972 station_ip 5.119.19.22 76972 port 15728762 76972 nas_port_type Virtual 76972 remote_ip 5.5.5.190 76978 username mahdavi 76978 unique_id port 76978 terminate_cause User-Request 76978 bytes_out 798921 76978 bytes_in 15297078 76978 station_ip 83.122.63.115 76978 port 15728769 76978 nas_port_type Virtual 76978 remote_ip 5.5.5.185 76979 username mahdavi 76979 unique_id port 76979 terminate_cause User-Request 76979 bytes_out 601064 76924 remote_ip 5.5.5.220 76927 username hamideh 76927 unique_id port 76927 terminate_cause User-Request 76927 bytes_out 327879 76927 bytes_in 2671458 76927 station_ip 5.119.19.22 76927 port 15728716 76927 nas_port_type Virtual 76927 remote_ip 5.5.5.209 76928 username alirezazamani 76928 unique_id port 76928 terminate_cause User-Request 76928 bytes_out 2716984 76928 bytes_in 50693400 76928 station_ip 94.241.178.166 76928 port 15728688 76928 nas_port_type Virtual 76928 remote_ip 5.5.5.225 76930 username hamideh 76930 unique_id port 76930 terminate_cause Lost-Carrier 76930 bytes_out 224398 76930 bytes_in 4128810 76930 station_ip 5.119.19.22 76930 port 15728721 76930 nas_port_type Virtual 76930 remote_ip 5.5.5.206 76931 username alirezazamani 76931 unique_id port 76931 terminate_cause Lost-Carrier 76931 bytes_out 186358 76931 bytes_in 985072 76931 station_ip 5.119.15.123 76931 port 15728720 76931 nas_port_type Virtual 76931 remote_ip 5.5.5.245 76934 username soleymani 76934 unique_id port 76934 terminate_cause Lost-Carrier 76934 bytes_out 274167 76934 bytes_in 806083 76934 station_ip 5.120.176.249 76934 port 15728719 76934 nas_port_type Virtual 76934 remote_ip 5.5.5.207 76941 username ahmadipour 76941 unique_id port 76941 terminate_cause Lost-Carrier 76941 bytes_out 1005380 76941 bytes_in 20038474 76941 station_ip 37.129.203.127 76941 port 15728726 76941 nas_port_type Virtual 76941 remote_ip 5.5.5.203 76942 username mahdavi 76942 unique_id port 76942 terminate_cause User-Request 76942 bytes_out 41183 76942 bytes_in 668035 76942 station_ip 83.122.47.199 76942 port 15728734 76942 nas_port_type Virtual 76942 remote_ip 5.5.5.200 76943 username soleymani 76943 unique_id port 76943 terminate_cause Lost-Carrier 76943 bytes_out 186286 76943 bytes_in 484939 76943 station_ip 5.119.56.127 76943 port 15728723 76943 nas_port_type Virtual 76943 remote_ip 5.5.5.205 76952 username mahdavi 76952 unique_id port 76952 terminate_cause User-Request 76952 bytes_out 0 76952 bytes_in 0 76952 station_ip 83.122.98.195 76952 port 15728748 76952 nas_port_type Virtual 76952 remote_ip 5.5.5.198 76953 username mahdavi 76953 unique_id port 76953 terminate_cause User-Request 76953 bytes_out 0 76953 bytes_in 0 76953 station_ip 83.122.98.195 76953 port 15728749 76953 nas_port_type Virtual 76953 remote_ip 5.5.5.198 76955 username mahdavi 76955 unique_id port 76955 terminate_cause User-Request 76955 bytes_out 328797 76955 bytes_in 6628109 76955 station_ip 83.122.98.195 76955 port 15728751 76955 nas_port_type Virtual 76955 remote_ip 5.5.5.198 76960 username mahdi 76960 unique_id port 76960 terminate_cause Lost-Carrier 76960 bytes_out 1056112 76960 bytes_in 25293811 76960 station_ip 5.120.28.130 76960 port 15728747 76960 nas_port_type Virtual 76960 remote_ip 5.5.5.195 76962 username soleymani 76962 unique_id port 76962 terminate_cause Lost-Carrier 76962 bytes_out 150199 76962 bytes_in 1348029 76962 station_ip 5.120.188.223 76962 port 15728753 76962 nas_port_type Virtual 76962 remote_ip 5.5.5.194 76966 username forozande 76966 unique_id port 76966 terminate_cause User-Request 76966 bytes_out 38764 76966 bytes_in 577591 76966 station_ip 83.123.66.0 76966 port 15728759 76966 nas_port_type Virtual 76966 remote_ip 5.5.5.192 76968 username ahmadi 76968 unique_id port 76968 terminate_cause User-Request 76968 bytes_out 1544611 76968 bytes_in 24212233 76968 station_ip 37.129.1.77 76968 port 15728756 76968 nas_port_type Virtual 76968 remote_ip 5.5.5.222 76969 username dehghan 76969 unique_id port 76969 terminate_cause User-Request 76969 bytes_out 242576 76969 bytes_in 5351153 76969 station_ip 83.122.91.157 76946 username mahdavi 76946 unique_id port 76946 terminate_cause User-Request 76946 bytes_out 80641 76946 bytes_in 981658 76946 station_ip 83.122.98.195 76946 port 15728739 76946 nas_port_type Virtual 76946 remote_ip 5.5.5.198 76947 username mahdavi 76947 unique_id port 76947 terminate_cause User-Request 76947 bytes_out 0 76947 bytes_in 0 76947 station_ip 83.122.98.195 76947 port 15728741 76947 nas_port_type Virtual 76947 remote_ip 5.5.5.198 76948 username mahbobeh 76948 unique_id port 76948 terminate_cause Lost-Carrier 76948 bytes_out 57140 76948 bytes_in 614878 76948 station_ip 37.129.11.60 76948 port 15728735 76948 nas_port_type Virtual 76948 remote_ip 5.5.5.204 76949 username soleymani 76949 unique_id port 76949 terminate_cause Lost-Carrier 76949 bytes_out 747781 76949 bytes_in 1346265 76949 station_ip 5.119.205.147 76949 port 15728730 76949 nas_port_type Virtual 76949 remote_ip 5.5.5.202 76950 username mahdavi 76950 unique_id port 76950 terminate_cause User-Request 76950 bytes_out 94541 76950 bytes_in 1674267 76950 station_ip 83.122.98.195 76950 port 15728742 76950 nas_port_type Virtual 76950 remote_ip 5.5.5.198 76951 username soleymani 76951 unique_id port 76951 terminate_cause Lost-Carrier 76951 bytes_out 45369 76951 bytes_in 163112 76951 station_ip 5.119.45.11 76951 port 15728738 76951 nas_port_type Virtual 76951 remote_ip 5.5.5.197 76954 username mahdavi 76954 unique_id port 76954 terminate_cause User-Request 76954 bytes_out 325711 76954 bytes_in 6459154 76954 station_ip 83.122.98.195 76954 port 15728750 76954 nas_port_type Virtual 76954 remote_ip 5.5.5.198 76958 username mahdavi 76958 unique_id port 76958 terminate_cause User-Request 76958 bytes_out 749641 76958 bytes_in 19138577 76958 station_ip 83.122.98.195 76958 port 15728752 76958 nas_port_type Virtual 76958 remote_ip 5.5.5.198 76963 username forozande 76963 unique_id port 76963 terminate_cause User-Request 76963 bytes_out 39863 76963 bytes_in 126627 76963 station_ip 83.122.144.236 76963 port 15728754 76963 nas_port_type Virtual 76963 remote_ip 5.5.5.193 76965 username forozande 76965 unique_id port 76965 terminate_cause User-Request 76965 bytes_out 15736 76965 bytes_in 121864 76965 station_ip 83.123.66.0 76965 port 15728757 76965 nas_port_type Virtual 76965 remote_ip 5.5.5.192 76967 username hamideh 76967 unique_id port 76967 terminate_cause User-Request 76967 bytes_out 275668 76967 bytes_in 222347 76967 station_ip 5.119.19.22 76967 port 15728758 76967 nas_port_type Virtual 76967 remote_ip 5.5.5.206 76974 username amin.insta21 76974 unique_id port 76974 terminate_cause User-Request 76974 bytes_out 0 76974 bytes_in 0 76974 station_ip 151.235.114.235 76974 port 15728767 76974 nas_port_type Virtual 76974 remote_ip 5.5.5.186 76975 username amin.insta21 76975 unique_id port 76975 terminate_cause Lost-Carrier 76975 bytes_out 661351 76975 bytes_in 8354148 76975 station_ip 151.235.114.235 76975 port 15728764 76975 nas_port_type Virtual 76975 remote_ip 5.5.5.188 76982 username soleymani 76982 unique_id port 76982 terminate_cause Lost-Carrier 76982 bytes_out 327513 76982 bytes_in 204557 76982 station_ip 5.120.146.145 76982 port 15728772 76982 nas_port_type Virtual 76982 remote_ip 5.5.5.184 76988 username soleymani 76988 unique_id port 76988 terminate_cause Lost-Carrier 76988 bytes_out 315969 76988 bytes_in 1336355 76988 station_ip 5.119.183.56 76988 port 15728777 76988 nas_port_type Virtual 76988 remote_ip 5.5.5.179 76989 username mobina 76989 unique_id port 76989 terminate_cause Lost-Carrier 76989 bytes_out 506553 76989 bytes_in 7182205 76989 station_ip 5.124.45.60 76989 port 15728781 76989 nas_port_type Virtual 76969 port 15728761 76969 nas_port_type Virtual 76969 remote_ip 5.5.5.191 76971 username rashidi 76971 unique_id port 76971 terminate_cause User-Request 76971 bytes_out 8164340 76971 bytes_in 61490147 76971 station_ip 5.119.170.163 76971 port 15728727 76971 nas_port_type Virtual 76971 remote_ip 5.5.5.242 76973 username mahbobeh 76973 unique_id port 76973 terminate_cause Lost-Carrier 76973 bytes_out 154382 76973 bytes_in 1871696 76973 station_ip 37.129.11.60 76973 port 15728765 76973 nas_port_type Virtual 76973 remote_ip 5.5.5.204 76976 username soleymani 76976 unique_id port 76976 terminate_cause Lost-Carrier 76976 bytes_out 470144 76976 bytes_in 657059 76976 station_ip 5.119.4.204 76976 port 15728763 76976 nas_port_type Virtual 76976 remote_ip 5.5.5.189 76977 username soleymani 76977 unique_id port 76977 terminate_cause Lost-Carrier 76977 bytes_out 44424 76977 bytes_in 199800 76977 station_ip 5.119.156.124 76977 port 15728766 76977 nas_port_type Virtual 76977 remote_ip 5.5.5.187 76980 username mahdavi 76980 unique_id port 76980 terminate_cause User-Request 76980 bytes_out 523778 76980 bytes_in 11350939 76980 station_ip 83.122.63.115 76980 port 15728771 76980 nas_port_type Virtual 76980 remote_ip 5.5.5.185 76981 username amin.insta21 76981 unique_id port 76981 terminate_cause Lost-Carrier 76981 bytes_out 545919 76981 bytes_in 6172508 76981 station_ip 151.235.114.235 76981 port 15728768 76981 nas_port_type Virtual 76981 remote_ip 5.5.5.186 76983 username alirezazamani 76983 unique_id port 76983 terminate_cause User-Request 76983 bytes_out 664400 76983 bytes_in 13458687 76983 station_ip 37.27.0.178 76983 port 15728775 76983 nas_port_type Virtual 76983 remote_ip 5.5.5.182 76984 username soleymani 76984 unique_id port 76984 terminate_cause Lost-Carrier 76984 bytes_out 32298 76984 bytes_in 155625 76984 station_ip 5.120.91.70 76984 port 15728776 76984 nas_port_type Virtual 76984 remote_ip 5.5.5.181 76985 username amin.insta21 76985 unique_id port 76985 terminate_cause User-Request 76985 bytes_out 2385149 76985 bytes_in 34606839 76985 station_ip 151.235.114.235 76985 port 15728773 76985 nas_port_type Virtual 76985 remote_ip 5.5.5.183 76986 username forozande 76986 unique_id port 76986 terminate_cause User-Request 76986 bytes_out 42286 76986 bytes_in 140715 76986 station_ip 113.203.52.223 76986 port 15728778 76986 nas_port_type Virtual 76986 remote_ip 5.5.5.180 76991 username asadi 76991 unique_id port 76991 terminate_cause User-Request 76991 bytes_out 190287 76991 bytes_in 2977936 76991 station_ip 37.129.220.253 76991 port 15728785 76991 nas_port_type Virtual 76991 remote_ip 5.5.5.246 76993 username forozande 76993 unique_id port 76993 terminate_cause User-Request 76993 bytes_out 75534 76993 bytes_in 285406 76993 station_ip 113.203.23.176 76993 port 15728787 76993 nas_port_type Virtual 76993 remote_ip 5.5.5.175 76994 username amin.insta21 76994 unique_id port 76994 terminate_cause Lost-Carrier 76994 bytes_out 1299107 76994 bytes_in 7812441 76994 station_ip 151.235.114.235 76994 port 15728779 76994 nas_port_type Virtual 76994 remote_ip 5.5.5.183 76996 username soleymani 76996 unique_id port 76996 terminate_cause Lost-Carrier 76996 bytes_out 123964 76996 bytes_in 578686 76996 station_ip 5.119.44.191 76996 port 15728784 76996 nas_port_type Virtual 76996 remote_ip 5.5.5.176 76999 username hamideh 76999 unique_id port 76999 terminate_cause Lost-Carrier 76999 bytes_out 57488 76999 bytes_in 296065 76999 station_ip 5.119.19.22 76999 port 15728793 76999 nas_port_type Virtual 76999 remote_ip 5.5.5.190 77000 username soleymani 77000 unique_id port 77000 terminate_cause Lost-Carrier 77000 bytes_out 412813 76979 bytes_in 12036172 76979 station_ip 83.122.63.115 76979 port 15728770 76979 nas_port_type Virtual 76979 remote_ip 5.5.5.185 76987 username mahbobeh 76987 unique_id port 76987 terminate_cause Lost-Carrier 76987 bytes_out 221713 76987 bytes_in 3727668 76987 station_ip 37.129.11.60 76987 port 15728774 76987 nas_port_type Virtual 76987 remote_ip 5.5.5.204 76990 username alirezazamani 76990 unique_id port 76990 terminate_cause User-Request 76990 bytes_out 1601957 76990 bytes_in 26678701 76990 station_ip 37.27.5.37 76990 port 15728783 76990 nas_port_type Virtual 76990 remote_ip 5.5.5.177 76995 username asadi 76995 unique_id port 76995 terminate_cause User-Request 76995 bytes_out 416425 76995 bytes_in 10764580 76995 station_ip 37.129.220.253 76995 port 15728789 76995 nas_port_type Virtual 76995 remote_ip 5.5.5.246 76998 username asadi 76998 unique_id port 76998 terminate_cause User-Request 76998 bytes_out 11899 76998 bytes_in 54874 76998 station_ip 37.129.220.253 76998 port 15728792 76998 nas_port_type Virtual 76998 remote_ip 5.5.5.246 77001 username mahbobeh 77001 unique_id port 77001 terminate_cause Lost-Carrier 77001 bytes_out 131435 77001 bytes_in 699767 77001 station_ip 37.129.11.60 77001 port 15728788 77001 nas_port_type Virtual 77001 remote_ip 5.5.5.204 77006 username ahmadipour 77006 unique_id port 77006 terminate_cause Lost-Carrier 77006 bytes_out 521676 77006 bytes_in 10102586 77006 station_ip 37.129.151.151 77006 port 15728804 77006 nas_port_type Virtual 77006 remote_ip 5.5.5.168 77007 username dehghan 77007 unique_id port 77007 terminate_cause User-Request 77007 bytes_out 536029 77007 bytes_in 13075492 77007 station_ip 83.122.89.65 77007 port 15728805 77007 nas_port_type Virtual 77007 remote_ip 5.5.5.167 77009 username rashidi 77009 unique_id port 77009 terminate_cause User-Request 77009 bytes_out 3796127 77009 bytes_in 4937031 77009 station_ip 5.119.170.163 77009 port 15728802 77009 nas_port_type Virtual 77009 remote_ip 5.5.5.169 77011 username amin.insta21 77011 unique_id port 77011 terminate_cause User-Request 77011 bytes_out 276711 77011 bytes_in 1648416 77011 station_ip 151.235.114.235 77011 port 15728806 77011 nas_port_type Virtual 77011 remote_ip 5.5.5.166 77014 username alirezazamani 77014 unique_id port 77014 terminate_cause Lost-Carrier 77014 bytes_out 752740 77014 bytes_in 10301316 77014 station_ip 5.119.15.123 77014 port 15728803 77014 nas_port_type Virtual 77014 remote_ip 5.5.5.245 77015 username mahbobeh 77015 unique_id port 77015 terminate_cause Lost-Carrier 77015 bytes_out 6344701 77015 bytes_in 116677295 77015 station_ip 37.129.11.60 77015 port 15728800 77015 nas_port_type Virtual 77015 remote_ip 5.5.5.204 77025 username asadi 77025 unique_id port 77025 terminate_cause User-Request 77025 bytes_out 71530 77025 bytes_in 883799 77025 station_ip 113.203.121.74 77025 port 15728823 77025 nas_port_type Virtual 77025 remote_ip 5.5.5.162 77026 username alirezazamani 77026 unique_id port 77026 terminate_cause Lost-Carrier 77026 bytes_out 647166 77026 bytes_in 16409143 77026 station_ip 5.119.34.166 77026 port 15728814 77026 nas_port_type Virtual 77026 remote_ip 5.5.5.163 77028 username forozande 77028 unique_id port 77028 terminate_cause User-Request 77028 bytes_out 125646 77028 bytes_in 227108 77028 station_ip 37.129.154.70 77028 port 15728826 77028 nas_port_type Virtual 77028 remote_ip 5.5.5.158 77029 username asadi 77029 unique_id port 77029 terminate_cause User-Request 77029 bytes_out 30186 77029 bytes_in 288122 77029 station_ip 113.203.121.74 77029 port 15728827 77029 nas_port_type Virtual 77029 remote_ip 5.5.5.162 77031 username iranmanesh 77031 unique_id port 76989 remote_ip 5.5.5.178 76992 username asadi 76992 unique_id port 76992 terminate_cause User-Request 76992 bytes_out 330682 76992 bytes_in 5267651 76992 station_ip 37.129.220.253 76992 port 15728786 76992 nas_port_type Virtual 76992 remote_ip 5.5.5.246 76997 username asadi 76997 unique_id port 76997 terminate_cause User-Request 76997 bytes_out 77470 76997 bytes_in 1280334 76997 station_ip 37.129.220.253 76997 port 15728791 76997 nas_port_type Virtual 76997 remote_ip 5.5.5.246 77004 username aminvpn 77004 unique_id port 77004 terminate_cause Lost-Carrier 77004 bytes_out 477513 77004 bytes_in 1952566 77004 station_ip 5.233.69.67 77004 port 15728797 77004 nas_port_type Virtual 77004 remote_ip 5.5.5.172 77008 username zoha 77008 unique_id port 77008 terminate_cause User-Request 77008 bytes_out 731443 77008 bytes_in 3885179 77008 station_ip 5.119.8.203 77008 port 15728801 77008 nas_port_type Virtual 77008 remote_ip 5.5.5.233 77013 username mahdavi 77013 unique_id port 77013 terminate_cause User-Request 77013 bytes_out 906923 77013 bytes_in 21538629 77013 station_ip 83.122.109.123 77013 port 15728810 77013 nas_port_type Virtual 77013 remote_ip 5.5.5.165 77017 username asadi 77017 unique_id port 77017 terminate_cause User-Request 77017 bytes_out 58854 77017 bytes_in 274969 77017 station_ip 113.203.121.74 77017 port 15728817 77017 nas_port_type Virtual 77017 remote_ip 5.5.5.162 77019 username amin.insta21 77019 unique_id port 77019 terminate_cause User-Request 77019 bytes_out 194486 77019 bytes_in 1049501 77019 station_ip 151.235.114.235 77019 port 15728816 77019 nas_port_type Virtual 77019 remote_ip 5.5.5.166 77020 username mahdavi 77020 unique_id port 77020 terminate_cause User-Request 77020 bytes_out 429158 77020 bytes_in 10448017 77020 station_ip 83.122.109.123 77020 port 15728819 77020 nas_port_type Virtual 77020 remote_ip 5.5.5.165 77021 username alirezazamani 77021 unique_id port 77021 terminate_cause Lost-Carrier 77021 bytes_out 248209 77021 bytes_in 1673011 77021 station_ip 5.119.15.123 77021 port 15728809 77021 nas_port_type Virtual 77021 remote_ip 5.5.5.164 77022 username mahdavi 77022 unique_id port 77022 terminate_cause User-Request 77022 bytes_out 1124911 77022 bytes_in 20850776 77022 station_ip 83.122.109.123 77022 port 15728820 77022 nas_port_type Virtual 77022 remote_ip 5.5.5.165 77027 username asadi 77027 unique_id port 77027 terminate_cause User-Request 77027 bytes_out 33902 77027 bytes_in 534984 77027 station_ip 113.203.121.74 77027 port 15728824 77027 nas_port_type Virtual 77027 remote_ip 5.5.5.162 77030 username forozande 77030 unique_id port 77030 terminate_cause User-Request 77030 bytes_out 2248 77030 bytes_in 12689 77030 station_ip 37.129.154.70 77030 port 15728828 77030 nas_port_type Virtual 77030 remote_ip 5.5.5.158 77034 username shahriyar 77034 unique_id port 77034 terminate_cause Lost-Carrier 77034 bytes_out 197384 77034 bytes_in 816414 77034 station_ip 46.225.214.133 77034 port 15728825 77034 nas_port_type Virtual 77034 remote_ip 5.5.5.159 77040 username alirezazamani 77040 unique_id port 77040 terminate_cause Lost-Carrier 77040 bytes_out 935856 77040 bytes_in 22022552 77040 station_ip 5.120.1.167 77040 port 15728822 77040 nas_port_type Virtual 77040 remote_ip 5.5.5.160 77046 username asadi 77046 unique_id port 77046 terminate_cause User-Request 77046 bytes_out 26736 77046 bytes_in 69058 77046 station_ip 113.203.87.249 77046 port 15728847 77046 nas_port_type Virtual 77046 remote_ip 5.5.5.151 77047 username shahnaz 77047 unique_id port 77047 terminate_cause User-Request 77047 bytes_out 0 77047 bytes_in 0 77047 station_ip 5.120.62.59 77000 bytes_in 3333011 77000 station_ip 5.119.242.237 77000 port 15728790 77000 nas_port_type Virtual 77000 remote_ip 5.5.5.174 77002 username soleymani 77002 unique_id port 77002 terminate_cause Lost-Carrier 77002 bytes_out 140075 77002 bytes_in 378186 77002 station_ip 5.119.47.159 77002 port 15728796 77002 nas_port_type Virtual 77002 remote_ip 5.5.5.173 77003 username ahmadi 77003 unique_id port 77003 terminate_cause User-Request 77003 bytes_out 81862 77003 bytes_in 884307 77003 station_ip 37.129.85.13 77003 port 15728799 77003 nas_port_type Virtual 77003 remote_ip 5.5.5.170 77005 username rashidi 77005 unique_id port 77005 terminate_cause Lost-Carrier 77005 bytes_out 10318538 77005 bytes_in 16931812 77005 station_ip 5.119.170.163 77005 port 15728782 77005 nas_port_type Virtual 77005 remote_ip 5.5.5.242 77010 username amin.insta21 77010 unique_id port 77010 terminate_cause Lost-Carrier 77010 bytes_out 2639793 77010 bytes_in 17794082 77010 station_ip 151.235.114.235 77010 port 15728794 77010 nas_port_type Virtual 77010 remote_ip 5.5.5.183 77012 username mahdavi 77012 unique_id port 77012 terminate_cause User-Request 77012 bytes_out 0 77012 bytes_in 0 77012 station_ip 83.122.109.123 77012 port 15728807 77012 nas_port_type Virtual 77012 remote_ip 5.5.5.165 77016 username zoha 77016 unique_id port 77016 terminate_cause User-Request 77016 bytes_out 293667 77016 bytes_in 1873698 77016 station_ip 5.119.8.203 77016 port 15728815 77016 nas_port_type Virtual 77016 remote_ip 5.5.5.233 77018 username mahdavi 77018 unique_id port 77018 terminate_cause User-Request 77018 bytes_out 625672 77018 bytes_in 15292404 77018 station_ip 83.122.109.123 77018 port 15728818 77018 nas_port_type Virtual 77018 remote_ip 5.5.5.165 77023 username forozande 77023 unique_id port 77023 terminate_cause User-Request 77023 bytes_out 114441 77023 bytes_in 1198323 77023 station_ip 37.129.201.70 77023 port 15728821 77023 nas_port_type Virtual 77023 remote_ip 5.5.5.161 77024 username mahdi 77024 unique_id port 77024 terminate_cause Lost-Carrier 77024 bytes_out 1270892 77024 bytes_in 29553878 77024 station_ip 5.120.28.130 77024 port 15728795 77024 nas_port_type Virtual 77024 remote_ip 5.5.5.195 77033 username asadi 77033 unique_id port 77033 terminate_cause User-Request 77033 bytes_out 25070 77033 bytes_in 118500 77033 station_ip 113.203.121.74 77033 port 15728831 77033 nas_port_type Virtual 77033 remote_ip 5.5.5.162 77036 username asadi 77036 unique_id port 77036 terminate_cause User-Request 77036 bytes_out 34339 77036 bytes_in 122325 77036 station_ip 113.203.121.74 77036 port 15728834 77036 nas_port_type Virtual 77036 remote_ip 5.5.5.162 77501 username alirezazamani 77501 unique_id port 77501 terminate_cause User-Request 77501 bytes_out 80192 77501 bytes_in 1024946 77501 station_ip 37.129.191.16 77501 port 15729017 77501 nas_port_type Virtual 77501 remote_ip 5.5.5.98 77038 username asadi 77038 unique_id port 77038 terminate_cause User-Request 77038 bytes_out 25079 77038 bytes_in 58319 77038 station_ip 113.203.121.74 77038 port 15728836 77038 nas_port_type Virtual 77038 remote_ip 5.5.5.162 77039 username soleymani 77039 unique_id port 77039 terminate_cause User-Request 77039 bytes_out 175813 77039 bytes_in 5081497 77039 station_ip 5.119.228.207 77039 port 15728835 77039 nas_port_type Virtual 77039 remote_ip 5.5.5.155 77042 username soleymani 77042 unique_id port 77042 terminate_cause User-Request 77042 bytes_out 0 77042 bytes_in 0 77042 station_ip 5.119.105.167 77042 port 15728838 77042 nas_port_type Virtual 77042 remote_ip 5.5.5.153 77045 username soleymani 77045 unique_id port 77045 terminate_cause Lost-Carrier 77031 terminate_cause User-Request 77031 bytes_out 48531 77031 bytes_in 443257 77031 station_ip 37.129.126.182 77031 port 15728829 77031 nas_port_type Virtual 77031 remote_ip 5.5.5.157 77032 username asadi 77032 unique_id port 77032 terminate_cause User-Request 77032 bytes_out 0 77032 bytes_in 0 77032 station_ip 113.203.121.74 77032 port 15728830 77032 nas_port_type Virtual 77035 username asadi 77035 unique_id port 77035 terminate_cause User-Request 77035 bytes_out 24009 77035 bytes_in 178133 77035 station_ip 113.203.121.74 77035 port 15728832 77035 nas_port_type Virtual 77035 remote_ip 5.5.5.162 77041 username forozande 77041 unique_id port 77041 terminate_cause User-Request 77041 bytes_out 32897 77041 bytes_in 37611 77041 station_ip 113.203.58.22 77041 port 15728837 77041 nas_port_type Virtual 77041 remote_ip 5.5.5.154 77043 username shahnaz 77043 unique_id port 77043 terminate_cause User-Request 77043 bytes_out 290235 77043 bytes_in 1341738 77043 station_ip 5.120.62.59 77043 port 15728840 77043 nas_port_type Virtual 77043 remote_ip 5.5.5.152 77044 username asadi 77044 unique_id port 77044 terminate_cause User-Request 77044 bytes_out 55530 77044 bytes_in 196118 77044 station_ip 113.203.87.249 77044 port 15728841 77044 nas_port_type Virtual 77044 remote_ip 5.5.5.151 77050 username asadi 77050 unique_id port 77050 terminate_cause User-Request 77050 bytes_out 20418 77050 bytes_in 335077 77050 station_ip 113.203.87.249 77050 port 15728852 77050 nas_port_type Virtual 77050 remote_ip 5.5.5.151 77052 username asadi 77052 unique_id port 77052 terminate_cause User-Request 77052 bytes_out 344710 77052 bytes_in 11456772 77052 station_ip 113.203.87.249 77052 port 15728856 77052 nas_port_type Virtual 77052 remote_ip 5.5.5.151 77055 username mahdavi 77055 unique_id port 77055 terminate_cause User-Request 77055 bytes_out 1098124 77055 bytes_in 20800030 77055 station_ip 83.122.202.105 77055 port 15728858 77055 nas_port_type Virtual 77055 remote_ip 5.5.5.147 77061 username mahdavi 77061 unique_id port 77061 terminate_cause User-Request 77061 bytes_out 356962 77061 bytes_in 6429147 77061 station_ip 83.122.202.105 77061 port 15728865 77061 nas_port_type Virtual 77061 remote_ip 5.5.5.147 81205 bytes_out 105403 81205 bytes_in 376318 81205 station_ip 5.119.186.227 81205 port 15728797 81205 nas_port_type Virtual 81205 remote_ip 5.5.5.227 81206 username aminvpn 81206 mac 81206 bytes_out 0 81206 bytes_in 0 81206 station_ip 5.119.30.76 81206 port 14 81206 unique_id port 81206 remote_ip 10.8.0.6 81208 username ahmadi 81208 unique_id port 81208 terminate_cause User-Request 81208 bytes_out 112638 77072 username alinezhad 77072 unique_id port 77072 terminate_cause User-Request 77072 bytes_out 1102229 77072 bytes_in 16262838 77072 station_ip 5.202.65.161 77072 port 15728798 77072 nas_port_type Virtual 77072 remote_ip 5.5.5.171 77502 username alirezazamani 77502 unique_id port 77502 terminate_cause User-Request 77502 bytes_out 61581 77502 bytes_in 905658 77502 station_ip 37.129.191.16 77502 port 15729018 77502 nas_port_type Virtual 77502 remote_ip 5.5.5.98 77074 username soleymani 77074 unique_id port 77074 terminate_cause Lost-Carrier 77074 bytes_out 122069 77074 bytes_in 465223 77074 station_ip 5.120.177.24 77074 port 15728875 77074 nas_port_type Virtual 77074 remote_ip 5.5.5.138 77079 username rashidi 77079 unique_id port 77079 terminate_cause Lost-Carrier 77079 bytes_out 5488309 77079 bytes_in 58047367 77079 station_ip 5.119.170.163 77079 port 15728870 77079 nas_port_type Virtual 77079 remote_ip 5.5.5.169 77080 username mahbobeh 77080 unique_id port 81208 bytes_in 367218 77045 bytes_out 168654 77045 bytes_in 209898 77045 station_ip 5.119.105.167 77045 port 15728839 77045 nas_port_type Virtual 77045 remote_ip 5.5.5.153 77049 username forozande 77049 unique_id port 77049 terminate_cause User-Request 77049 bytes_out 44561 77049 bytes_in 439460 77049 station_ip 37.129.59.151 77049 port 15728851 77049 nas_port_type Virtual 77049 remote_ip 5.5.5.150 77054 username mobina 77054 unique_id port 77054 terminate_cause Lost-Carrier 77054 bytes_out 66163 77054 bytes_in 438169 77054 station_ip 5.123.131.190 77054 port 15728853 77054 nas_port_type Virtual 77054 remote_ip 5.5.5.149 77056 username hamideh 77056 unique_id port 77056 terminate_cause Lost-Carrier 77056 bytes_out 601281 77056 bytes_in 5711031 77056 station_ip 5.120.43.184 77056 port 15728854 77056 nas_port_type Virtual 77056 remote_ip 5.5.5.148 77058 username soleymani 77058 unique_id port 77058 terminate_cause User-Request 77058 bytes_out 0 77058 bytes_in 0 77058 station_ip 5.119.33.6 77058 port 15728863 77058 nas_port_type Virtual 77058 remote_ip 5.5.5.144 77062 username mahdavi 77062 unique_id port 77062 terminate_cause User-Request 77062 bytes_out 814813 77062 bytes_in 18131039 77062 station_ip 83.122.202.105 77062 port 15728866 77062 nas_port_type Virtual 77062 remote_ip 5.5.5.147 77068 username alirezazamani 77068 unique_id port 77068 terminate_cause User-Request 77068 bytes_out 595484 77068 bytes_in 19447781 77068 station_ip 37.27.4.194 77068 port 15728869 77068 nas_port_type Virtual 77068 remote_ip 5.5.5.143 77069 username mobina 77069 unique_id port 77069 terminate_cause Lost-Carrier 77069 bytes_out 14135 77069 bytes_in 142789 77069 station_ip 5.123.252.173 77069 port 15728872 77069 nas_port_type Virtual 77069 remote_ip 5.5.5.141 77071 username mobina 77071 unique_id port 77071 terminate_cause Lost-Carrier 77071 bytes_out 86442 77071 bytes_in 517056 77071 station_ip 5.124.188.61 77071 port 15728874 77071 nas_port_type Virtual 77071 remote_ip 5.5.5.139 77075 username forozande 77075 unique_id port 77075 terminate_cause User-Request 77075 bytes_out 36995 77075 bytes_in 164283 77075 station_ip 83.122.4.75 77075 port 15728877 77075 nas_port_type Virtual 77075 remote_ip 5.5.5.136 77076 username soleymani 77076 unique_id port 77076 terminate_cause Lost-Carrier 77076 bytes_out 50863 77076 bytes_in 177208 77076 station_ip 5.119.122.23 77076 port 15728876 77076 nas_port_type Virtual 77076 remote_ip 5.5.5.137 77077 username forozande 77077 unique_id port 77077 terminate_cause User-Request 77077 bytes_out 27023 77077 bytes_in 88802 77077 station_ip 83.122.4.75 77077 port 15728879 77077 nas_port_type Virtual 77077 remote_ip 5.5.5.136 77078 username asadi 77078 unique_id port 77078 terminate_cause User-Request 77078 bytes_out 89948 77078 bytes_in 461059 77078 station_ip 113.203.26.118 77078 port 15728880 77078 nas_port_type Virtual 77078 remote_ip 5.5.5.134 77086 username asadi 77086 unique_id port 77086 terminate_cause User-Request 77086 bytes_out 3889 77086 bytes_in 18479 77086 station_ip 113.203.26.118 77086 port 15728888 77086 nas_port_type Virtual 77086 remote_ip 5.5.5.134 77088 username forozande 77088 unique_id port 77088 terminate_cause User-Request 77088 bytes_out 6023891 77088 bytes_in 206600 77088 station_ip 83.123.174.221 77088 port 15728889 77088 nas_port_type Virtual 77088 remote_ip 5.5.5.131 77090 username mobina 77090 unique_id port 77090 terminate_cause Lost-Carrier 77090 bytes_out 519141 77090 bytes_in 8647008 77090 station_ip 5.124.93.216 77090 port 15728887 77090 nas_port_type Virtual 77090 remote_ip 5.5.5.130 77092 username alinezhad 77092 unique_id port 77047 port 15728848 77047 nas_port_type Virtual 77047 remote_ip 5.5.5.152 77048 username asadi 77048 unique_id port 77048 terminate_cause User-Request 77048 bytes_out 29615 77048 bytes_in 107724 77048 station_ip 113.203.87.249 77048 port 15728849 77048 nas_port_type Virtual 77048 remote_ip 5.5.5.151 77051 username asadi 77051 unique_id port 77051 terminate_cause User-Request 77051 bytes_out 0 77051 bytes_in 0 77051 station_ip 113.203.87.249 77051 port 15728855 77051 nas_port_type Virtual 77051 remote_ip 5.5.5.151 77053 username mahdavi 77053 unique_id port 77053 terminate_cause User-Request 77053 bytes_out 1299297 77053 bytes_in 27983338 77053 station_ip 83.122.202.105 77053 port 15728857 77053 nas_port_type Virtual 77053 remote_ip 5.5.5.147 77057 username mahdavi 77057 unique_id port 77057 terminate_cause User-Request 77057 bytes_out 1357159 77057 bytes_in 27888641 77057 station_ip 83.122.202.105 77057 port 15728859 77057 nas_port_type Virtual 77057 remote_ip 5.5.5.147 77059 username mahdavi 77059 unique_id port 77059 terminate_cause User-Request 77059 bytes_out 666432 77059 bytes_in 14139122 77059 station_ip 83.122.202.105 77059 port 15728861 77059 nas_port_type Virtual 77059 remote_ip 5.5.5.147 77060 username alirezazamani 77060 kill_reason Maximum check online fails reached 77060 unique_id port 77060 bytes_out 513827 77060 bytes_in 12763694 77060 station_ip 37.27.5.61 77060 port 15728860 77060 nas_port_type Virtual 77060 remote_ip 5.5.5.146 77063 username mahdavi 77063 unique_id port 77063 terminate_cause User-Request 77063 bytes_out 774443 77063 bytes_in 20923910 77063 station_ip 83.122.202.105 77063 port 15728867 77063 nas_port_type Virtual 77063 remote_ip 5.5.5.147 77064 username mahdavi 77064 unique_id port 77064 terminate_cause User-Request 77064 bytes_out 1248861 77064 bytes_in 26784371 77064 station_ip 83.122.202.105 77064 port 15728868 77064 nas_port_type Virtual 77064 remote_ip 5.5.5.147 77065 username zoha 77065 unique_id port 77065 terminate_cause Lost-Carrier 77065 bytes_out 15088117 77065 bytes_in 645880421 77065 station_ip 5.119.8.203 77065 port 15728846 77065 nas_port_type Virtual 77065 remote_ip 5.5.5.233 77066 username soleymani 77066 unique_id port 77066 terminate_cause Lost-Carrier 77066 bytes_out 32540 77066 bytes_in 202514 77066 station_ip 5.119.33.6 77066 port 15728864 77066 nas_port_type Virtual 77066 remote_ip 5.5.5.144 77081 username amin.insta22 77081 unique_id port 77081 terminate_cause User-Request 77081 bytes_out 4590615 77081 bytes_in 6143676 77081 station_ip 31.56.158.45 77081 port 15728878 77081 nas_port_type Virtual 77081 remote_ip 5.5.5.135 77083 username forozande 77083 unique_id port 77083 terminate_cause User-Request 77083 bytes_out 69553 77083 bytes_in 502890 77083 station_ip 83.123.174.221 77083 port 15728883 77083 nas_port_type Virtual 77083 remote_ip 5.5.5.131 77084 username forozande 77084 unique_id port 77084 terminate_cause User-Request 77084 bytes_out 20129 77084 bytes_in 52334 77084 station_ip 83.123.174.221 77084 port 15728884 77084 nas_port_type Virtual 77084 remote_ip 5.5.5.131 77089 username forozande 77089 unique_id port 77089 terminate_cause User-Request 77089 bytes_out 176502 77089 bytes_in 5150637 77089 station_ip 83.123.174.221 77089 port 15728890 77089 nas_port_type Virtual 77089 remote_ip 5.5.5.131 77091 username forozande 77091 unique_id port 77091 terminate_cause User-Request 77091 bytes_out 705401 77091 bytes_in 416399 77091 station_ip 83.123.174.221 77091 port 15728892 77091 nas_port_type Virtual 77091 remote_ip 5.5.5.131 77093 username alirezazamani 77093 unique_id port 77093 terminate_cause Lost-Carrier 77093 bytes_out 6475760 77080 terminate_cause Lost-Carrier 77080 bytes_out 2527346 77080 bytes_in 32006971 77080 station_ip 37.129.11.60 77080 port 15728842 77080 nas_port_type Virtual 77080 remote_ip 5.5.5.204 77082 username soleymani 77082 unique_id port 77082 terminate_cause Lost-Carrier 77082 bytes_out 34205 77082 bytes_in 212477 77082 station_ip 5.119.214.82 77082 port 15728881 77082 nas_port_type Virtual 77082 remote_ip 5.5.5.133 77085 username asadi 77085 unique_id port 77085 terminate_cause User-Request 77085 bytes_out 11119 77085 bytes_in 32034 77085 station_ip 113.203.26.118 77085 port 15728885 77085 nas_port_type Virtual 77085 remote_ip 5.5.5.134 77087 username soleymani 77087 unique_id port 77087 terminate_cause Lost-Carrier 77087 bytes_out 159439 77087 bytes_in 551330 77087 station_ip 5.119.221.162 77087 port 15728882 77087 nas_port_type Virtual 77087 remote_ip 5.5.5.132 77094 username forozande 77094 unique_id port 77094 terminate_cause User-Request 77094 bytes_out 45461 77094 bytes_in 216957 77094 station_ip 83.123.174.221 77094 port 15728896 77094 nas_port_type Virtual 77094 remote_ip 5.5.5.131 77095 username forozande 77095 unique_id port 77095 terminate_cause User-Request 77095 bytes_out 9708 77095 bytes_in 20343 77095 station_ip 83.123.174.221 77095 port 15728897 77095 nas_port_type Virtual 77095 remote_ip 5.5.5.131 77096 username soleymani 77096 unique_id port 77096 terminate_cause Lost-Carrier 77096 bytes_out 62475 77096 bytes_in 206237 77096 station_ip 5.120.31.45 77096 port 15728893 77096 nas_port_type Virtual 77096 remote_ip 5.5.5.129 77101 username arabpour 77101 unique_id port 77101 terminate_cause Lost-Carrier 77101 bytes_out 510497 77101 bytes_in 14365507 77101 station_ip 5.217.111.33 77101 port 15728898 77101 nas_port_type Virtual 77101 remote_ip 5.5.5.126 77105 username forozande 77105 unique_id port 77105 terminate_cause User-Request 77105 bytes_out 33551 77105 bytes_in 599781 77105 station_ip 113.203.41.57 77105 port 15728908 77105 nas_port_type Virtual 77105 remote_ip 5.5.5.123 77106 username soleymani 77106 unique_id port 77106 terminate_cause Lost-Carrier 77106 bytes_out 11983 77106 bytes_in 149902 77106 station_ip 5.120.111.132 77106 port 15728907 77106 nas_port_type Virtual 77106 remote_ip 5.5.5.122 77107 username alinezhad 77107 unique_id port 77107 terminate_cause User-Request 77107 bytes_out 12386 77107 bytes_in 31592 77107 station_ip 5.202.65.161 77107 port 15728915 77107 nas_port_type Virtual 77107 remote_ip 5.5.5.171 77503 username mobina 77503 unique_id port 77503 terminate_cause Lost-Carrier 77503 bytes_out 70034 77503 bytes_in 211574 77503 station_ip 5.124.79.79 77503 port 15729019 77503 nas_port_type Virtual 77503 remote_ip 5.5.5.97 77117 username mobina 77117 unique_id port 77117 terminate_cause Lost-Carrier 77117 bytes_out 27489 77117 bytes_in 193091 77117 station_ip 5.124.125.246 77117 port 15728920 77117 nas_port_type Virtual 77117 remote_ip 5.5.5.118 77118 username forozande 77118 unique_id port 77118 terminate_cause User-Request 77118 bytes_out 26670 77118 bytes_in 48488 77118 station_ip 37.129.76.175 77118 port 15728927 77118 nas_port_type Virtual 77118 remote_ip 5.5.5.116 77123 username alinezhad 77123 unique_id port 77123 terminate_cause User-Request 77123 bytes_out 0 77123 bytes_in 0 77123 station_ip 5.202.65.161 77123 port 15728933 77123 nas_port_type Virtual 77123 remote_ip 5.5.5.171 77124 username alirezazamani 77124 unique_id port 77124 terminate_cause Lost-Carrier 77124 bytes_out 386583 77124 bytes_in 3479921 77124 station_ip 5.120.30.103 77124 port 15728918 77124 nas_port_type Virtual 77124 remote_ip 5.5.5.119 77128 username soleymani 77092 terminate_cause User-Request 77092 bytes_out 77489 77092 bytes_in 902375 77092 station_ip 5.202.65.161 77092 port 15728891 77092 nas_port_type Virtual 77092 remote_ip 5.5.5.171 77097 username asadi 77097 unique_id port 77097 terminate_cause User-Request 77097 bytes_out 133716 77097 bytes_in 3007978 77097 station_ip 113.203.26.118 77097 port 15728900 77097 nas_port_type Virtual 77097 remote_ip 5.5.5.134 77102 username zoha 77102 unique_id port 77102 terminate_cause Lost-Carrier 77102 bytes_out 276288 77102 bytes_in 1480483 77102 station_ip 5.119.8.203 77102 port 15728901 77102 nas_port_type Virtual 77102 remote_ip 5.5.5.233 77108 username alinezhad 77108 unique_id port 77108 terminate_cause User-Request 77108 bytes_out 95971 77108 bytes_in 1155470 77108 station_ip 5.202.65.161 77108 port 15728917 77108 nas_port_type Virtual 77108 remote_ip 5.5.5.171 77110 username alirezazamani 77110 unique_id port 77110 terminate_cause Lost-Carrier 77110 bytes_out 312453 77110 bytes_in 1581618 77110 station_ip 5.120.30.103 77110 port 15728913 77110 nas_port_type Virtual 77110 remote_ip 5.5.5.120 77111 username iranmanesh 77111 unique_id port 77111 terminate_cause User-Request 77111 bytes_out 28078 77111 bytes_in 264664 77111 station_ip 37.129.126.182 77111 port 15728923 77111 nas_port_type Virtual 77111 remote_ip 5.5.5.157 77113 username iranmanesh 77113 unique_id port 77113 terminate_cause User-Request 77113 bytes_out 54559 77113 bytes_in 536979 77113 station_ip 37.129.126.182 77113 port 15728924 77113 nas_port_type Virtual 77113 remote_ip 5.5.5.157 77114 username ahmadi 77114 unique_id port 77114 terminate_cause User-Request 77114 bytes_out 32121 77114 bytes_in 263237 77114 station_ip 37.129.231.206 77114 port 15728925 77114 nas_port_type Virtual 77114 remote_ip 5.5.5.117 77119 username forozande 77119 unique_id port 77119 terminate_cause User-Request 77119 bytes_out 12041 77119 bytes_in 19093 77119 station_ip 37.129.76.175 77119 port 15728928 77119 nas_port_type Virtual 77119 remote_ip 5.5.5.116 77120 username alinezhad 77120 unique_id port 77120 terminate_cause User-Request 77120 bytes_out 43316 77120 bytes_in 397377 77120 station_ip 5.202.65.161 77120 port 15728922 77120 nas_port_type Virtual 77120 remote_ip 5.5.5.171 77125 username hamideh 77125 unique_id port 77125 terminate_cause User-Request 77125 bytes_out 1135205 77125 bytes_in 14687507 77125 station_ip 5.119.29.6 77125 port 15728929 77125 nas_port_type Virtual 77125 remote_ip 5.5.5.115 77131 username forozande 77131 unique_id port 77131 terminate_cause User-Request 77131 bytes_out 14412 77131 bytes_in 35883 77131 station_ip 83.122.169.149 77131 port 15728941 77131 nas_port_type Virtual 77131 remote_ip 5.5.5.111 77133 username alinezhad 77133 unique_id port 77133 terminate_cause User-Request 77133 bytes_out 0 77133 bytes_in 0 77133 station_ip 5.202.65.161 77133 port 15728943 77133 nas_port_type Virtual 77133 remote_ip 5.5.5.171 77135 username asadi 77135 unique_id port 77135 terminate_cause User-Request 77135 bytes_out 190191 77135 bytes_in 3588718 77135 station_ip 113.203.26.118 77135 port 15728945 77135 nas_port_type Virtual 77135 remote_ip 5.5.5.134 77136 username hamideh 77136 kill_reason Maximum number of concurrent logins reached 77136 unique_id port 77136 bytes_out 0 77136 bytes_in 0 77136 station_ip 5.119.29.6 77136 port 15728946 77136 nas_port_type Virtual 77141 username mahdavi 77141 unique_id port 77141 terminate_cause User-Request 77141 bytes_out 848631 77141 bytes_in 16810059 77141 station_ip 83.122.254.165 77141 port 15728950 77141 nas_port_type Virtual 77141 remote_ip 5.5.5.108 77145 username reza 77145 unique_id port 77093 bytes_in 201055550 77093 station_ip 37.27.4.194 77093 port 15728886 77093 nas_port_type Virtual 77093 remote_ip 5.5.5.143 77098 username soleymani 77098 unique_id port 77098 terminate_cause Lost-Carrier 77098 bytes_out 220395 77098 bytes_in 1044212 77098 station_ip 5.120.117.217 77098 port 15728895 77098 nas_port_type Virtual 77098 remote_ip 5.5.5.127 77099 username dehghan 77099 unique_id port 77099 terminate_cause User-Request 77099 bytes_out 437681 77099 bytes_in 12386022 77099 station_ip 83.122.42.190 77099 port 15728902 77099 nas_port_type Virtual 77099 remote_ip 5.5.5.124 77100 username dehghan 77100 unique_id port 77100 terminate_cause User-Request 77100 bytes_out 161960 77100 bytes_in 3615475 77100 station_ip 83.122.42.190 77100 port 15728903 77100 nas_port_type Virtual 77100 remote_ip 5.5.5.124 77103 username iranmanesh 77103 unique_id port 77103 terminate_cause User-Request 77103 bytes_out 63590 77103 bytes_in 780370 77103 station_ip 37.129.126.182 77103 port 15728905 77103 nas_port_type Virtual 77103 remote_ip 5.5.5.157 77104 username forozande 77104 unique_id port 77104 terminate_cause User-Request 77104 bytes_out 20829 77104 bytes_in 59641 77104 station_ip 113.203.41.57 77104 port 15728906 77104 nas_port_type Virtual 77104 remote_ip 5.5.5.123 77109 username iranmanesh 77109 unique_id port 77109 terminate_cause User-Request 77109 bytes_out 30225 77109 bytes_in 282753 77109 station_ip 37.129.126.182 77109 port 15728921 77109 nas_port_type Virtual 77109 remote_ip 5.5.5.157 77115 username zoha 77115 unique_id port 77115 terminate_cause Lost-Carrier 77115 bytes_out 333352 77115 bytes_in 3766315 77115 station_ip 5.119.8.203 77115 port 15728919 77115 nas_port_type Virtual 77115 remote_ip 5.5.5.233 77116 username iranmanesh 77116 unique_id port 77116 terminate_cause User-Request 77116 bytes_out 29143 77116 bytes_in 238025 77116 station_ip 37.129.126.182 77116 port 15728926 77116 nas_port_type Virtual 77116 remote_ip 5.5.5.157 77121 username asadi 77121 unique_id port 77121 terminate_cause User-Request 77121 bytes_out 79663 77121 bytes_in 364233 77121 station_ip 113.203.26.118 77121 port 15728930 77121 nas_port_type Virtual 77121 remote_ip 5.5.5.134 77122 username soleymani 77122 unique_id port 77122 terminate_cause User-Request 77122 bytes_out 0 77122 bytes_in 0 77122 station_ip 5.119.203.130 77122 port 15728931 77122 nas_port_type Virtual 77122 remote_ip 5.5.5.114 77126 username alinezhad 77126 unique_id port 77126 terminate_cause User-Request 77126 bytes_out 0 77126 bytes_in 0 77126 station_ip 5.202.65.161 77126 port 15728934 77126 nas_port_type Virtual 77126 remote_ip 5.5.5.171 77127 username alinezhad 77127 unique_id port 77127 terminate_cause User-Request 77127 bytes_out 0 77127 bytes_in 0 77127 station_ip 5.202.65.161 77127 port 15728935 77127 nas_port_type Virtual 77127 remote_ip 5.5.5.171 77129 username reza 77129 unique_id port 77129 terminate_cause User-Request 77129 bytes_out 0 77129 bytes_in 0 77129 station_ip 83.123.30.43 77129 port 15728937 77129 nas_port_type Virtual 77129 remote_ip 5.5.5.112 77130 username soleymani 77130 unique_id port 77130 terminate_cause User-Request 77130 bytes_out 0 77130 bytes_in 0 77130 station_ip 5.120.6.188 77130 port 15728938 77130 nas_port_type Virtual 77130 remote_ip 5.5.5.113 77132 username soleymani 77132 unique_id port 77132 terminate_cause Lost-Carrier 77132 bytes_out 56302 77132 bytes_in 232435 77132 station_ip 5.119.203.130 77132 port 15728932 77132 nas_port_type Virtual 77132 remote_ip 5.5.5.114 77134 username soleymani 77134 unique_id port 77134 terminate_cause Lost-Carrier 77134 bytes_out 39077 77128 unique_id port 77128 terminate_cause User-Request 77128 bytes_out 0 77128 bytes_in 0 77128 station_ip 5.120.6.188 77128 port 15728936 77128 nas_port_type Virtual 77128 remote_ip 5.5.5.113 77137 username hamideh 77137 kill_reason Maximum number of concurrent logins reached 77137 unique_id port 77137 bytes_out 0 77137 bytes_in 0 77137 station_ip 5.119.29.6 77137 port 15728947 77137 nas_port_type Virtual 77142 username soleymani 77142 unique_id port 77142 terminate_cause Lost-Carrier 77142 bytes_out 27144 77142 bytes_in 176510 77142 station_ip 5.120.16.201 77142 port 15728949 77142 nas_port_type Virtual 77142 remote_ip 5.5.5.109 77146 username asadi 77146 unique_id port 77146 terminate_cause User-Request 77146 bytes_out 22112 77146 bytes_in 87814 77146 station_ip 113.203.26.118 77146 port 15728955 77146 nas_port_type Virtual 77146 remote_ip 5.5.5.134 77150 username alinezhad 77150 unique_id port 77150 terminate_cause User-Request 77150 bytes_out 0 77150 bytes_in 0 77150 station_ip 37.129.53.236 77150 port 15728960 77150 nas_port_type Virtual 77150 remote_ip 5.5.5.106 77151 username soleymani 77151 unique_id port 77151 terminate_cause Lost-Carrier 77151 bytes_out 136719 77151 bytes_in 1267793 77151 station_ip 5.120.151.126 77151 port 15728957 77151 nas_port_type Virtual 77151 remote_ip 5.5.5.105 77152 username shahnaz 77152 unique_id port 77152 terminate_cause User-Request 77152 bytes_out 145764 77152 bytes_in 2353421 77152 station_ip 5.120.144.130 77152 port 15728962 77152 nas_port_type Virtual 77152 remote_ip 5.5.5.104 77154 username soleymani 77154 unique_id port 77154 terminate_cause User-Request 77154 bytes_out 0 77154 bytes_in 0 77154 station_ip 5.120.39.195 77154 port 15728964 77154 nas_port_type Virtual 77154 remote_ip 5.5.5.103 77155 username amin.insta22 77155 unique_id port 77155 terminate_cause User-Request 77155 bytes_out 4737440 77155 bytes_in 110141200 77155 station_ip 5.233.79.240 77155 port 15728899 77155 nas_port_type Virtual 77155 remote_ip 5.5.5.125 77156 username soleymani 77156 unique_id port 77156 terminate_cause Lost-Carrier 77156 bytes_out 136092 77156 bytes_in 1603808 77156 station_ip 5.120.39.195 77156 port 15728965 77156 nas_port_type Virtual 77156 remote_ip 5.5.5.103 77162 username zoha 77162 unique_id port 77162 terminate_cause Lost-Carrier 77162 bytes_out 6922249 77162 bytes_in 80717840 77162 station_ip 5.119.8.203 77162 port 15728961 77162 nas_port_type Virtual 77162 remote_ip 5.5.5.233 77163 username mahbobeh 77163 unique_id port 77163 terminate_cause Lost-Carrier 77163 bytes_out 3628984 77163 bytes_in 55877221 77163 station_ip 37.129.11.60 77163 port 15728963 77163 nas_port_type Virtual 77163 remote_ip 5.5.5.204 77165 username alirezazamani 77165 unique_id port 77165 terminate_cause User-Request 77165 bytes_out 172050 77165 bytes_in 2465935 77165 station_ip 37.129.80.166 77165 port 15728975 77165 nas_port_type Virtual 77165 remote_ip 5.5.5.99 77166 username alirezazamani 77166 unique_id port 77166 terminate_cause User-Request 77166 bytes_out 0 77166 bytes_in 0 77166 station_ip 37.129.80.166 77166 port 15728976 77166 nas_port_type Virtual 77166 remote_ip 5.5.5.99 77175 username shahriyar 77175 unique_id port 77175 terminate_cause Admin-Reboot 77175 bytes_out 0 77175 bytes_in 0 77175 station_ip 5.202.60.29 77175 port 15728985 77175 nas_port_type Virtual 77175 remote_ip 5.5.5.94 77182 username forozande 77182 unique_id port 77182 terminate_cause User-Request 77182 bytes_out 182587 77182 bytes_in 247382 77182 station_ip 83.122.211.146 77182 port 15728650 77182 nas_port_type Virtual 77182 remote_ip 5.5.5.247 77185 username forozande 77134 bytes_in 206879 77134 station_ip 5.120.6.188 77134 port 15728940 77134 nas_port_type Virtual 77134 remote_ip 5.5.5.113 77138 username hamideh 77138 kill_reason Maximum number of concurrent logins reached 77138 unique_id port 77138 bytes_out 0 77138 bytes_in 0 77138 station_ip 5.119.29.6 77138 port 15728948 77138 nas_port_type Virtual 77139 username hamideh 77139 unique_id port 77139 terminate_cause Lost-Carrier 77139 bytes_out 76111 77139 bytes_in 860788 77139 station_ip 5.119.29.6 77139 port 15728942 77139 nas_port_type Virtual 77139 remote_ip 5.5.5.115 77140 username hamideh 77140 unique_id port 77140 terminate_cause Lost-Carrier 77140 bytes_out 19769 77140 bytes_in 147935 77140 station_ip 5.119.29.6 77140 port 15728944 77140 nas_port_type Virtual 77140 remote_ip 5.5.5.110 77143 username alinezhad 77143 unique_id port 77143 terminate_cause User-Request 77143 bytes_out 0 77143 bytes_in 0 77143 station_ip 5.202.65.161 77143 port 15728951 77143 nas_port_type Virtual 77143 remote_ip 5.5.5.171 77144 username ahmadipour 77144 kill_reason Maximum check online fails reached 77144 unique_id port 77144 bytes_out 563411 77144 bytes_in 11088706 77144 station_ip 83.122.88.230 77144 port 15728952 77144 nas_port_type Virtual 77144 remote_ip 5.5.5.107 77148 username ahmadi 77148 unique_id port 77148 terminate_cause User-Request 77148 bytes_out 146572 77148 bytes_in 1303647 77148 station_ip 37.129.231.206 77148 port 15728958 77148 nas_port_type Virtual 77148 remote_ip 5.5.5.117 77149 username shahnaz 77149 unique_id port 77149 terminate_cause User-Request 77149 bytes_out 598594 77149 bytes_in 7875273 77149 station_ip 5.120.144.130 77149 port 15728959 77149 nas_port_type Virtual 77149 remote_ip 5.5.5.104 81208 station_ip 83.123.29.26 81208 port 15728801 81208 nas_port_type Virtual 81208 remote_ip 5.5.5.172 81214 username aminvpn 81214 mac 81214 bytes_out 91679 81214 bytes_in 199546 81214 station_ip 5.119.30.76 77157 username alinezhad 77157 unique_id port 77157 terminate_cause User-Request 77157 bytes_out 0 77157 bytes_in 0 77157 station_ip 37.129.110.130 77157 port 15728966 77157 nas_port_type Virtual 77157 remote_ip 5.5.5.102 77159 username alinezhad 77159 unique_id port 77159 terminate_cause User-Request 77159 bytes_out 0 77159 bytes_in 0 77159 station_ip 37.129.110.130 77159 port 15728968 77159 nas_port_type Virtual 77159 remote_ip 5.5.5.102 77160 username amin.insta21 77160 unique_id port 77160 terminate_cause Lost-Carrier 77160 bytes_out 9192341 77160 bytes_in 70575205 77160 station_ip 151.235.105.11 77160 port 15728894 77160 nas_port_type Virtual 77160 remote_ip 5.5.5.128 77161 username alirezazamani 77161 unique_id port 77161 terminate_cause Lost-Carrier 77161 bytes_out 249501 77161 bytes_in 6422228 77161 station_ip 5.126.201.41 77161 port 15728970 77161 nas_port_type Virtual 77161 remote_ip 5.5.5.101 77167 username alirezazamani 77167 unique_id port 77167 terminate_cause User-Request 77167 bytes_out 315438 77167 bytes_in 13534609 77167 station_ip 37.129.80.166 77167 port 15728977 77167 nas_port_type Virtual 77167 remote_ip 5.5.5.99 77172 username alirezazamani 77172 unique_id port 77172 terminate_cause Lost-Carrier 77172 bytes_out 1034081 77172 bytes_in 25527676 77172 station_ip 37.27.4.194 77172 port 15728983 77172 nas_port_type Virtual 77172 remote_ip 5.5.5.143 77174 username mahbobeh 77174 unique_id port 77174 terminate_cause Admin-Reboot 77174 bytes_out 566697 77174 bytes_in 4482701 77174 station_ip 37.129.2.70 77174 port 15728980 77174 nas_port_type Virtual 77174 remote_ip 5.5.5.97 77186 username soleymani 77186 unique_id port 77186 terminate_cause Lost-Carrier 81214 port 14 77145 terminate_cause User-Request 77145 bytes_out 966008 77145 bytes_in 29814112 77145 station_ip 83.123.30.43 77145 port 15728939 77145 nas_port_type Virtual 77145 remote_ip 5.5.5.112 77147 username alinezhad 77147 unique_id port 77147 terminate_cause User-Request 77147 bytes_out 0 77147 bytes_in 0 77147 station_ip 37.129.53.236 77147 port 15728956 77147 nas_port_type Virtual 77147 remote_ip 5.5.5.106 77158 username alinezhad 77158 unique_id port 77158 terminate_cause User-Request 77158 bytes_out 0 77158 bytes_in 0 77158 station_ip 37.129.110.130 77158 port 15728967 77158 nas_port_type Virtual 77158 remote_ip 5.5.5.102 81209 bytes_out 920503 81209 bytes_in 10082264 81209 station_ip 113.203.36.149 81209 port 15728788 81209 nas_port_type Virtual 81209 remote_ip 5.5.5.219 81210 username aminvpn 81210 mac 81210 bytes_out 92221 77168 username pouria 77168 unique_id port 77168 terminate_cause Lost-Carrier 77168 bytes_out 2168798 77168 bytes_in 58933730 77168 station_ip 151.235.127.164 77168 port 15728974 77168 nas_port_type Virtual 77168 remote_ip 5.5.5.100 77504 username asadi 77504 unique_id port 77504 terminate_cause User-Request 77504 bytes_out 64930 77504 bytes_in 867735 77504 station_ip 37.129.90.175 77504 port 15729023 77504 nas_port_type Virtual 77504 remote_ip 5.5.5.96 77170 username mahbobeh 77170 unique_id port 77170 terminate_cause Lost-Carrier 77170 bytes_out 81342 77170 bytes_in 725200 77170 station_ip 37.129.11.60 77170 port 15728978 77170 nas_port_type Virtual 77170 remote_ip 5.5.5.204 77171 username mobina 77171 unique_id port 77171 terminate_cause Lost-Carrier 77171 bytes_out 112902 77171 bytes_in 240396 77171 station_ip 5.123.68.192 77171 port 15728982 77171 nas_port_type Virtual 77171 remote_ip 5.5.5.95 77173 username alirezazamani 77173 unique_id port 77173 terminate_cause Admin-Reboot 77173 bytes_out 276902 77173 bytes_in 1867731 77173 station_ip 5.120.30.103 77173 port 15728984 77173 nas_port_type Virtual 77173 remote_ip 5.5.5.119 77177 username alinezhad 77177 unique_id port 77177 terminate_cause User-Request 77177 bytes_out 0 77177 bytes_in 0 77177 station_ip 5.202.60.10 77177 port 15728640 77177 nas_port_type Virtual 77177 remote_ip 5.5.5.255 77184 username amin.insta21 77184 unique_id port 77184 terminate_cause Lost-Carrier 77184 bytes_out 330508 77184 bytes_in 2649825 77184 station_ip 151.235.105.11 77184 port 15728645 77184 nas_port_type Virtual 77184 remote_ip 5.5.5.251 81210 bytes_in 218211 81210 station_ip 5.119.30.76 81210 port 14 81210 unique_id port 81210 remote_ip 10.8.0.6 81211 username aminvpn 81211 mac 81211 bytes_out 0 81211 bytes_in 0 77195 username mahdavi 77195 unique_id port 77195 terminate_cause User-Request 77195 bytes_out 1094165 77195 bytes_in 24167135 77195 station_ip 113.203.49.55 77195 port 15728660 77195 nas_port_type Virtual 77195 remote_ip 5.5.5.244 77197 username mahdavi 77197 unique_id port 77197 terminate_cause Lost-Carrier 77197 bytes_out 767419 77197 bytes_in 18856493 77197 station_ip 113.203.49.55 77197 port 15728656 77197 nas_port_type Virtual 77197 remote_ip 5.5.5.245 77200 username reza 77200 unique_id port 77200 terminate_cause User-Request 77200 bytes_out 29010 77200 bytes_in 483306 77200 station_ip 83.122.111.5 77200 port 15728665 77200 nas_port_type Virtual 77200 remote_ip 5.5.5.241 77201 username soleymani 77201 kill_reason Maximum number of concurrent logins reached 77201 unique_id port 77201 bytes_out 0 77201 bytes_in 0 77201 station_ip 5.119.101.202 77201 port 15728670 77201 nas_port_type Virtual 77203 username soleymani 77513 username alinezhad 81211 station_ip 5.119.30.76 77505 username alirezazamani 77505 unique_id port 77505 terminate_cause Lost-Carrier 77505 bytes_out 273781 77505 bytes_in 3932279 77505 station_ip 5.119.192.22 77505 port 15729022 77505 nas_port_type Virtual 77505 remote_ip 5.5.5.151 77178 username alirezazamani 77178 unique_id port 77178 terminate_cause Lost-Carrier 77178 bytes_out 465900 77178 bytes_in 1665422 77178 station_ip 5.120.30.103 77178 port 15728641 77178 nas_port_type Virtual 77178 remote_ip 5.5.5.254 77179 username alirezazamani 77179 unique_id port 77179 terminate_cause Lost-Carrier 77179 bytes_out 517157 77179 bytes_in 16654054 77179 station_ip 5.120.30.103 77179 port 15728643 77179 nas_port_type Virtual 77179 remote_ip 5.5.5.252 77180 username soleymani 77180 unique_id port 77180 terminate_cause User-Request 77180 bytes_out 0 77180 bytes_in 0 77180 station_ip 5.119.152.237 77180 port 15728648 77180 nas_port_type Virtual 77180 remote_ip 5.5.5.248 77181 username asadi 77181 unique_id port 77181 terminate_cause User-Request 77181 bytes_out 192575 77181 bytes_in 6428188 77181 station_ip 83.123.252.197 77181 port 15728647 77181 nas_port_type Virtual 77181 remote_ip 5.5.5.249 77183 username forozande 77183 unique_id port 77183 terminate_cause User-Request 77183 bytes_out 31213 77183 bytes_in 362725 77183 station_ip 83.122.211.146 77183 port 15728652 77183 nas_port_type Virtual 77183 remote_ip 5.5.5.247 77187 username mahdavi 77187 unique_id port 77187 terminate_cause User-Request 77187 bytes_out 693739 77187 bytes_in 14058520 77187 station_ip 113.203.49.55 77187 port 15728654 77187 nas_port_type Virtual 77187 remote_ip 5.5.5.245 77191 username mahdavi 77191 unique_id port 77191 terminate_cause User-Request 77191 bytes_out 597206 77191 bytes_in 16066021 77191 station_ip 113.203.49.55 77191 port 15728657 77191 nas_port_type Virtual 77191 remote_ip 5.5.5.244 77193 username mahdavi 77193 unique_id port 77193 terminate_cause User-Request 77193 bytes_out 813172 77193 bytes_in 20217544 77193 station_ip 113.203.49.55 77193 port 15728659 77193 nas_port_type Virtual 77193 remote_ip 5.5.5.244 77198 username alinezhad 77198 unique_id port 77198 terminate_cause User-Request 77198 bytes_out 0 77198 bytes_in 0 77198 station_ip 5.202.60.10 77198 port 15728663 77198 nas_port_type Virtual 77198 remote_ip 5.5.5.255 77202 username soleymani 77202 kill_reason Maximum number of concurrent logins reached 77202 unique_id port 77202 bytes_out 0 77202 bytes_in 0 77202 station_ip 5.119.101.202 77202 port 15728671 77202 nas_port_type Virtual 77215 username ahmadi 77215 unique_id port 77215 terminate_cause User-Request 77215 bytes_out 17213 77215 bytes_in 83937 77215 station_ip 37.129.223.78 77215 port 15728682 77215 nas_port_type Virtual 77215 remote_ip 5.5.5.236 77221 username asadi 77221 unique_id port 77221 terminate_cause User-Request 77221 bytes_out 295941 77221 bytes_in 7541744 77221 station_ip 83.123.252.197 77221 port 15728690 77221 nas_port_type Virtual 77221 remote_ip 5.5.5.249 77222 username soleymani 77222 kill_reason Maximum number of concurrent logins reached 77222 unique_id port 77222 bytes_out 0 77222 bytes_in 0 77222 station_ip 5.119.91.146 77222 port 15728691 77222 nas_port_type Virtual 77227 username ahmadipour 77227 unique_id port 77227 terminate_cause User-Request 77227 bytes_out 104136 77227 bytes_in 1241363 77227 station_ip 83.122.22.62 77227 port 15728688 77227 nas_port_type Virtual 77227 remote_ip 5.5.5.234 77231 username forozande 77231 unique_id port 77231 terminate_cause User-Request 77231 bytes_out 73860 77231 bytes_in 1171541 77231 station_ip 37.129.127.204 77231 port 15728693 77231 nas_port_type Virtual 77231 remote_ip 5.5.5.231 77185 unique_id port 77185 terminate_cause User-Request 77185 bytes_out 11747 77185 bytes_in 25162 77185 station_ip 83.122.211.146 77185 port 15728653 77185 nas_port_type Virtual 77185 remote_ip 5.5.5.247 77192 username forozande 77192 unique_id port 77192 terminate_cause User-Request 77192 bytes_out 49152 77192 bytes_in 60392 77192 station_ip 37.129.108.158 77192 port 15728658 77192 nas_port_type Virtual 77192 remote_ip 5.5.5.243 77194 username hamideh 77194 unique_id port 77194 terminate_cause Lost-Carrier 77194 bytes_out 7260442 77194 bytes_in 225362893 77194 station_ip 5.119.29.6 77194 port 15728642 77194 nas_port_type Virtual 77194 remote_ip 5.5.5.253 77199 username alirezazamani 77199 unique_id port 77199 terminate_cause Lost-Carrier 77199 bytes_out 495758 77199 bytes_in 13494107 77199 station_ip 5.119.192.22 77199 port 15728661 77199 nas_port_type Virtual 77199 remote_ip 5.5.5.246 77205 username soleymani 77205 kill_reason Maximum number of concurrent logins reached 77205 unique_id port 77205 bytes_out 0 77205 bytes_in 0 77205 station_ip 5.119.101.202 77205 port 15728674 77205 nas_port_type Virtual 77207 username soleymani 77207 kill_reason Maximum number of concurrent logins reached 77207 unique_id port 77207 bytes_out 0 77207 bytes_in 0 77207 station_ip 5.119.101.202 77207 port 15728676 77207 nas_port_type Virtual 77209 username soleymani 77209 kill_reason Maximum number of concurrent logins reached 77209 unique_id port 77209 bytes_out 0 77209 bytes_in 0 77209 station_ip 5.119.101.202 77209 port 15728678 77209 nas_port_type Virtual 77210 username soleymani 77210 kill_reason Maximum number of concurrent logins reached 77210 unique_id port 77210 bytes_out 0 77210 bytes_in 0 77210 station_ip 5.119.101.202 77210 port 15728679 77210 nas_port_type Virtual 77214 username alirezazamani 77214 unique_id port 77214 terminate_cause Lost-Carrier 77214 bytes_out 77439 77214 bytes_in 1129653 77214 station_ip 5.119.192.22 77214 port 15728667 77214 nas_port_type Virtual 77214 remote_ip 5.5.5.246 77218 username forozande 77218 unique_id port 77218 terminate_cause User-Request 77218 bytes_out 56285 77218 bytes_in 1052181 77218 station_ip 83.122.199.74 77218 port 15728685 77218 nas_port_type Virtual 77218 remote_ip 5.5.5.235 77219 username ahmadipour 77219 unique_id port 77219 terminate_cause User-Request 77219 bytes_out 1132352 77219 bytes_in 25572508 77219 station_ip 83.122.22.62 77219 port 15728684 77219 nas_port_type Virtual 77219 remote_ip 5.5.5.234 77220 username soleymani 77220 unique_id port 77220 terminate_cause User-Request 77220 bytes_out 0 77220 bytes_in 0 77220 station_ip 5.120.83.121 77220 port 15728687 77220 nas_port_type Virtual 77220 remote_ip 5.5.5.232 77224 username soleymani 77224 kill_reason Maximum number of concurrent logins reached 77224 unique_id port 77224 bytes_out 0 77224 bytes_in 0 77224 station_ip 5.119.91.146 77224 port 15728694 77224 nas_port_type Virtual 77226 username soleymani 77226 kill_reason Maximum number of concurrent logins reached 77226 unique_id port 77226 bytes_out 0 77226 bytes_in 0 77226 station_ip 5.119.91.146 77226 port 15728696 77226 nas_port_type Virtual 77230 username soleymani 77230 kill_reason Maximum number of concurrent logins reached 77230 unique_id port 77230 bytes_out 0 77230 bytes_in 0 77230 station_ip 5.119.91.146 77230 port 15728699 77230 nas_port_type Virtual 77233 username soleymani 77233 kill_reason Maximum number of concurrent logins reached 77233 unique_id port 77233 bytes_out 0 77233 bytes_in 0 77233 station_ip 5.119.193.54 77233 port 15728702 77233 nas_port_type Virtual 77234 username soleymani 77234 kill_reason Maximum number of concurrent logins reached 77234 unique_id port 77234 bytes_out 0 77234 bytes_in 0 77234 station_ip 5.119.193.54 77186 bytes_out 677917 77186 bytes_in 16660739 77186 station_ip 5.119.152.237 77186 port 15728649 77186 nas_port_type Virtual 77186 remote_ip 5.5.5.248 77188 username alirezazamani 77188 unique_id port 77188 terminate_cause Lost-Carrier 77188 bytes_out 1029221 77188 bytes_in 13178759 77188 station_ip 5.119.192.22 77188 port 15728651 77188 nas_port_type Virtual 77188 remote_ip 5.5.5.246 77190 username mahdavi 77190 unique_id port 77190 terminate_cause User-Request 77190 bytes_out 875141 77190 bytes_in 21401964 77190 station_ip 113.203.49.55 77190 port 15728655 77190 nas_port_type Virtual 77190 remote_ip 5.5.5.245 77196 username mahdavi 77196 unique_id port 77196 terminate_cause User-Request 77196 bytes_out 798301 77196 bytes_in 19413392 77196 station_ip 113.203.49.55 77196 port 15728662 77196 nas_port_type Virtual 77196 remote_ip 5.5.5.244 77204 username soleymani 77204 kill_reason Maximum number of concurrent logins reached 77204 unique_id port 77204 bytes_out 0 77204 bytes_in 0 77204 station_ip 5.119.101.202 77204 port 15728673 77204 nas_port_type Virtual 77206 username soleymani 77206 kill_reason Maximum number of concurrent logins reached 77206 unique_id port 77206 bytes_out 0 77206 bytes_in 0 77206 station_ip 5.119.101.202 77206 port 15728675 77206 nas_port_type Virtual 77208 username soleymani 77208 kill_reason Maximum number of concurrent logins reached 77208 unique_id port 77208 bytes_out 0 77208 bytes_in 0 77208 station_ip 5.119.101.202 77208 port 15728677 77208 nas_port_type Virtual 77211 username soleymani 77211 kill_reason Maximum number of concurrent logins reached 77211 unique_id port 77211 bytes_out 0 77211 bytes_in 0 77211 station_ip 5.119.101.202 77211 port 15728680 77211 nas_port_type Virtual 77213 username alirezazamani 77213 unique_id port 77213 terminate_cause Lost-Carrier 77213 bytes_out 507358 77213 bytes_in 10763034 77213 station_ip 5.119.192.22 77213 port 15728664 77213 nas_port_type Virtual 77213 remote_ip 5.5.5.242 77217 username forozande 77217 unique_id port 77217 terminate_cause User-Request 77217 bytes_out 45162 77217 bytes_in 67244 77217 station_ip 83.122.199.74 77217 port 15728683 77217 nas_port_type Virtual 77217 remote_ip 5.5.5.235 77225 username soleymani 77225 kill_reason Maximum number of concurrent logins reached 77225 unique_id port 77225 bytes_out 0 77225 bytes_in 0 77225 station_ip 5.119.91.146 77225 port 15728695 77225 nas_port_type Virtual 77229 username soleymani 77229 kill_reason Maximum number of concurrent logins reached 77229 unique_id port 77229 bytes_out 0 77229 bytes_in 0 77229 station_ip 5.119.91.146 77229 port 15728698 77229 nas_port_type Virtual 77235 username soleymani 77235 kill_reason Maximum number of concurrent logins reached 77235 unique_id port 77235 bytes_out 0 77235 bytes_in 0 77235 station_ip 5.119.193.54 77235 port 15728704 77235 nas_port_type Virtual 77237 username soleymani 77237 kill_reason Maximum number of concurrent logins reached 77237 unique_id port 77237 bytes_out 0 77237 bytes_in 0 77237 station_ip 5.119.193.54 77237 port 15728706 77237 nas_port_type Virtual 77245 username mobina 77245 unique_id port 77245 terminate_cause User-Request 77245 bytes_out 73340 77245 bytes_in 173035 77245 station_ip 5.124.121.232 77245 port 15728712 77245 nas_port_type Virtual 77245 remote_ip 5.5.5.229 77250 username soleymani 77250 unique_id port 77250 terminate_cause Lost-Carrier 77250 bytes_out 159431 77250 bytes_in 587121 77250 station_ip 5.119.97.58 77250 port 15728716 77250 nas_port_type Virtual 77250 remote_ip 5.5.5.228 77260 username aminvpn 77260 unique_id port 77260 terminate_cause Lost-Carrier 77260 bytes_out 867967 77260 bytes_in 5927129 77260 station_ip 5.233.69.67 77260 port 15728715 77203 kill_reason Maximum number of concurrent logins reached 77203 unique_id port 77203 bytes_out 0 77203 bytes_in 0 77203 station_ip 5.119.101.202 77203 port 15728672 77203 nas_port_type Virtual 77212 username soleymani 77212 unique_id port 77212 terminate_cause Lost-Carrier 77212 bytes_out 209857 77212 bytes_in 459658 77212 station_ip 5.119.227.214 77212 port 15728666 77212 nas_port_type Virtual 77212 remote_ip 5.5.5.240 77216 username soleymani 77216 unique_id port 77216 terminate_cause Lost-Carrier 77216 bytes_out 130250 77216 bytes_in 357200 77216 station_ip 5.120.58.123 77216 port 15728668 77216 nas_port_type Virtual 77216 remote_ip 5.5.5.239 77223 username soleymani 77223 kill_reason Maximum number of concurrent logins reached 77223 unique_id port 77223 bytes_out 0 77223 bytes_in 0 77223 station_ip 5.119.91.146 77223 port 15728692 77223 nas_port_type Virtual 77228 username soleymani 77228 kill_reason Maximum number of concurrent logins reached 77228 unique_id port 77228 bytes_out 0 77228 bytes_in 0 77228 station_ip 5.119.91.146 77228 port 15728697 77228 nas_port_type Virtual 77232 username soleymani 77232 kill_reason Maximum number of concurrent logins reached 77232 unique_id port 77232 bytes_out 0 77232 bytes_in 0 77232 station_ip 5.119.91.146 77232 port 15728700 77232 nas_port_type Virtual 77240 username soleymani 77240 unique_id port 77240 terminate_cause Lost-Carrier 77240 bytes_out 178013 77240 bytes_in 1255408 77240 station_ip 5.119.101.202 77240 port 15728681 77240 nas_port_type Virtual 77240 remote_ip 5.5.5.237 77244 username alinezhad 77244 unique_id port 77244 terminate_cause User-Request 77244 bytes_out 0 77244 bytes_in 0 77244 station_ip 5.202.60.10 77244 port 15728711 77244 nas_port_type Virtual 77244 remote_ip 5.5.5.255 77246 username soleymani 77246 unique_id port 77246 terminate_cause Lost-Carrier 77246 bytes_out 214266 77246 bytes_in 969589 77246 station_ip 5.119.193.54 77246 port 15728709 77246 nas_port_type Virtual 77246 remote_ip 5.5.5.230 77248 username alirezazamani 77248 unique_id port 77248 terminate_cause Lost-Carrier 77248 bytes_out 1610862 77248 bytes_in 45327485 77248 station_ip 5.119.192.22 77248 port 15728710 77248 nas_port_type Virtual 77248 remote_ip 5.5.5.242 77507 username alirezazamani 77507 unique_id port 77507 terminate_cause Admin-Reboot 77507 bytes_out 903534 77507 bytes_in 30365293 77507 station_ip 5.119.192.22 77507 port 15729024 77507 nas_port_type Virtual 77507 remote_ip 5.5.5.95 77256 username dehghan 77256 unique_id port 77256 terminate_cause User-Request 77256 bytes_out 407229 77256 bytes_in 10605843 77256 station_ip 83.122.57.134 77256 port 15728725 77256 nas_port_type Virtual 77256 remote_ip 5.5.5.221 77258 username soleymani 77258 unique_id port 77258 terminate_cause Lost-Carrier 77258 bytes_out 264447 77258 bytes_in 1898208 77258 station_ip 5.119.89.31 77258 port 15728721 77258 nas_port_type Virtual 77258 remote_ip 5.5.5.224 77261 username hamideh 77261 unique_id port 77261 terminate_cause User-Request 77261 bytes_out 2851215 77261 bytes_in 69877027 77261 station_ip 5.119.29.6 77261 port 15728713 77261 nas_port_type Virtual 77261 remote_ip 5.5.5.253 77263 username soleymani 77263 unique_id port 77263 terminate_cause Lost-Carrier 77263 bytes_out 73724 77263 bytes_in 415416 77263 station_ip 5.119.114.129 77263 port 15728729 77263 nas_port_type Virtual 77263 remote_ip 5.5.5.220 77265 username alirezazamani 77265 unique_id port 77265 terminate_cause Lost-Carrier 77265 bytes_out 2381321 77265 bytes_in 66286868 77265 station_ip 94.241.178.166 77265 port 15728724 77265 nas_port_type Virtual 77265 remote_ip 5.5.5.222 81211 port 15 81211 unique_id port 81211 remote_ip 10.8.0.6 77234 port 15728703 77234 nas_port_type Virtual 77236 username soleymani 77236 kill_reason Maximum number of concurrent logins reached 77236 unique_id port 77236 bytes_out 0 77236 bytes_in 0 77236 station_ip 5.119.193.54 77236 port 15728705 77236 nas_port_type Virtual 77238 username soleymani 77238 kill_reason Maximum number of concurrent logins reached 77238 unique_id port 77238 bytes_out 0 77238 bytes_in 0 77238 station_ip 5.119.193.54 77238 port 15728707 77238 nas_port_type Virtual 77242 username soleymani 77242 unique_id port 77242 terminate_cause Lost-Carrier 77242 bytes_out 45203 77242 bytes_in 187256 77242 station_ip 5.120.83.121 77242 port 15728689 77242 nas_port_type Virtual 77242 remote_ip 5.5.5.232 77247 username soleymani 77247 unique_id port 77247 terminate_cause User-Request 77247 bytes_out 103330 77247 bytes_in 547127 77247 station_ip 5.119.97.58 77247 port 15728714 77247 nas_port_type Virtual 77247 remote_ip 5.5.5.228 77251 username soleymani 77251 unique_id port 77251 terminate_cause User-Request 77251 bytes_out 0 77251 bytes_in 0 77251 station_ip 5.119.89.31 77251 port 15728720 77251 nas_port_type Virtual 77251 remote_ip 5.5.5.224 77253 username alinezhad 77253 unique_id port 77253 terminate_cause User-Request 77253 bytes_out 8940 77253 bytes_in 23607 77253 station_ip 5.202.60.10 77253 port 15728723 77253 nas_port_type Virtual 77253 remote_ip 5.5.5.255 77254 username alirezazamani 77254 unique_id port 77254 terminate_cause Lost-Carrier 77254 bytes_out 1067558 77254 bytes_in 28855886 77254 station_ip 5.119.192.22 77254 port 15728717 77254 nas_port_type Virtual 77254 remote_ip 5.5.5.238 77257 username dehghan 77257 unique_id port 77257 terminate_cause User-Request 77257 bytes_out 319940 77257 bytes_in 8008708 77257 station_ip 83.122.57.134 77257 port 15728726 77257 nas_port_type Virtual 77257 remote_ip 5.5.5.221 77262 username mobina 77262 unique_id port 77262 terminate_cause Lost-Carrier 77262 bytes_out 509509 77262 bytes_in 8140195 77262 station_ip 5.124.121.232 77262 port 15728727 77262 nas_port_type Virtual 77262 remote_ip 5.5.5.229 77267 username alinezhad 77267 unique_id port 77267 terminate_cause User-Request 77267 bytes_out 0 77267 bytes_in 0 77267 station_ip 5.202.60.10 77267 port 15728736 77267 nas_port_type Virtual 77267 remote_ip 5.5.5.255 77269 username forozande 77269 unique_id port 77269 terminate_cause User-Request 77269 bytes_out 208036 77269 bytes_in 3705892 77269 station_ip 113.203.9.15 77269 port 15728738 77269 nas_port_type Virtual 77269 remote_ip 5.5.5.215 77278 username mobina 77278 unique_id port 77278 terminate_cause Lost-Carrier 77278 bytes_out 36043 77278 bytes_in 185674 77278 station_ip 5.123.122.95 77278 port 15728743 77278 nas_port_type Virtual 77278 remote_ip 5.5.5.211 77289 username soleymani 77289 unique_id port 77289 terminate_cause Lost-Carrier 77289 bytes_out 88550 77289 bytes_in 838440 77289 station_ip 5.120.121.51 77289 port 15728756 77289 nas_port_type Virtual 77289 remote_ip 5.5.5.200 77294 username alirezazamani 77294 kill_reason Maximum check online fails reached 77294 unique_id port 77294 bytes_out 0 77294 bytes_in 0 77294 station_ip 94.241.178.166 77294 port 15728763 77294 nas_port_type Virtual 77295 username soleymani 77295 unique_id port 77295 terminate_cause Lost-Carrier 77295 bytes_out 19328 77295 bytes_in 164724 77295 station_ip 5.119.143.84 77295 port 15728761 77295 nas_port_type Virtual 77295 remote_ip 5.5.5.198 77297 username alirezazamani 77297 unique_id port 77297 terminate_cause Lost-Carrier 77297 bytes_out 592586 77297 bytes_in 13942554 77297 station_ip 94.241.178.166 77297 port 15728764 77297 nas_port_type Virtual 77297 remote_ip 5.5.5.222 77239 username forozande 77239 unique_id port 77239 terminate_cause User-Request 77239 bytes_out 8954 77239 bytes_in 18133 77239 station_ip 37.129.127.204 77239 port 15728701 77239 nas_port_type Virtual 77239 remote_ip 5.5.5.231 77241 username soleymani 77241 unique_id port 77241 terminate_cause User-Request 77241 bytes_out 0 77241 bytes_in 0 77241 station_ip 5.119.193.54 77241 port 15728708 77241 nas_port_type Virtual 77241 remote_ip 5.5.5.230 77243 username alirezazamani 77243 unique_id port 77243 terminate_cause Lost-Carrier 77243 bytes_out 676811 77243 bytes_in 16568970 77243 station_ip 5.119.192.22 77243 port 15728669 77243 nas_port_type Virtual 77243 remote_ip 5.5.5.238 77249 username forozande 77249 unique_id port 77249 terminate_cause User-Request 77249 bytes_out 59753 77249 bytes_in 689711 77249 station_ip 83.123.217.106 77249 port 15728718 77249 nas_port_type Virtual 77249 remote_ip 5.5.5.226 77255 username mahbobeh 77255 unique_id port 77255 terminate_cause Lost-Carrier 77255 bytes_out 738540 77255 bytes_in 7545929 77255 station_ip 37.129.2.70 77255 port 15728686 77255 nas_port_type Virtual 77255 remote_ip 5.5.5.233 77259 username soleymani 77259 unique_id port 77259 terminate_cause User-Request 77259 bytes_out 101987 77259 bytes_in 355873 77259 station_ip 5.119.114.129 77259 port 15728728 77259 nas_port_type Virtual 77259 remote_ip 5.5.5.220 77271 username forozande 77271 unique_id port 77271 terminate_cause User-Request 77271 bytes_out 15646 77271 bytes_in 32103 77271 station_ip 83.122.242.52 77271 port 15728739 77271 nas_port_type Virtual 77271 remote_ip 5.5.5.213 77275 username soleymani 77275 unique_id port 77275 terminate_cause Lost-Carrier 77275 bytes_out 63045 77275 bytes_in 345090 77275 station_ip 5.120.103.177 77275 port 15728737 77275 nas_port_type Virtual 77275 remote_ip 5.5.5.214 77279 username alinezhad 77279 unique_id port 77279 terminate_cause User-Request 77279 bytes_out 0 77279 bytes_in 0 77279 station_ip 5.202.58.198 77279 port 15728748 77279 nas_port_type Virtual 77279 remote_ip 5.5.5.206 77280 username zoha 77280 unique_id port 77280 terminate_cause Lost-Carrier 77280 bytes_out 4897638 77280 bytes_in 57052294 77280 station_ip 5.119.8.203 77280 port 15728731 77280 nas_port_type Virtual 77280 remote_ip 5.5.5.218 77284 username ahmadi 77284 unique_id port 77284 terminate_cause User-Request 77284 bytes_out 156084 77284 bytes_in 2731622 77284 station_ip 83.123.253.52 77284 port 15728752 77284 nas_port_type Virtual 77284 remote_ip 5.5.5.203 77287 username soleymani 77287 unique_id port 77287 terminate_cause Lost-Carrier 77287 bytes_out 420516 77287 bytes_in 671371 77287 station_ip 5.119.63.133 77287 port 15728754 77287 nas_port_type Virtual 77287 remote_ip 5.5.5.201 77288 username asadi 77288 unique_id port 77288 terminate_cause User-Request 77288 bytes_out 24176 77288 bytes_in 181960 77288 station_ip 83.123.252.197 77288 port 15728758 77288 nas_port_type Virtual 77288 remote_ip 5.5.5.249 77296 username mobina 77296 unique_id port 77296 terminate_cause Lost-Carrier 77296 bytes_out 1012859 77296 bytes_in 18552592 77296 station_ip 5.124.161.36 77296 port 15728762 77296 nas_port_type Virtual 77296 remote_ip 5.5.5.197 77298 username alirezazamani 77298 unique_id port 77298 terminate_cause Lost-Carrier 77298 bytes_out 683364 77298 bytes_in 11887639 77298 station_ip 5.119.192.22 77298 port 15728768 77298 nas_port_type Virtual 77298 remote_ip 5.5.5.238 77300 username soleymani 77300 unique_id port 77300 terminate_cause Lost-Carrier 77300 bytes_out 39255 77300 bytes_in 227006 77300 station_ip 5.119.49.153 77300 port 15728771 77300 nas_port_type Virtual 77260 nas_port_type Virtual 77260 remote_ip 5.5.5.227 77264 username asadi 77264 unique_id port 77264 terminate_cause User-Request 77264 bytes_out 159345 77264 bytes_in 4369424 77264 station_ip 83.123.252.197 77264 port 15728732 77264 nas_port_type Virtual 77264 remote_ip 5.5.5.249 77266 username forozande 77266 unique_id port 77266 terminate_cause User-Request 77266 bytes_out 82628 77266 bytes_in 119880 77266 station_ip 113.203.9.15 77266 port 15728735 77266 nas_port_type Virtual 77266 remote_ip 5.5.5.215 77268 username alirezazamani 77268 unique_id port 77268 terminate_cause Lost-Carrier 77268 bytes_out 11118 77268 bytes_in 153781 77268 station_ip 37.27.34.49 77268 port 15728733 77268 nas_port_type Virtual 77268 remote_ip 5.5.5.217 77273 username forozande 77273 unique_id port 77273 terminate_cause User-Request 77273 bytes_out 12175 77273 bytes_in 23557 77273 station_ip 83.122.242.52 77273 port 15728741 77273 nas_port_type Virtual 77273 remote_ip 5.5.5.213 77276 username ahmadipour 77276 unique_id port 77276 terminate_cause Lost-Carrier 77276 bytes_out 567449 77276 bytes_in 3077045 77276 station_ip 83.122.10.106 77276 port 15728744 77276 nas_port_type Virtual 77276 remote_ip 5.5.5.210 77285 username amin.insta22 77285 unique_id port 77285 terminate_cause Lost-Carrier 77285 bytes_out 1330863 77285 bytes_in 37950052 77285 station_ip 31.56.155.182 77285 port 15728751 77285 nas_port_type Virtual 77285 remote_ip 5.5.5.204 77306 username asadi 77306 unique_id port 77306 terminate_cause User-Request 77306 bytes_out 27337 77306 bytes_in 79426 77306 station_ip 83.123.252.197 77306 port 15728784 77306 nas_port_type Virtual 77306 remote_ip 5.5.5.249 77312 username forozande 77312 unique_id port 77312 terminate_cause User-Request 77312 bytes_out 173340 77312 bytes_in 195870 77312 station_ip 37.129.207.98 77312 port 15728787 77312 nas_port_type Virtual 77312 remote_ip 5.5.5.190 77320 username asadi 77320 unique_id port 77320 terminate_cause User-Request 77320 bytes_out 35636 77320 bytes_in 193766 77320 station_ip 83.123.252.197 77320 port 15728798 77320 nas_port_type Virtual 77320 remote_ip 5.5.5.249 77323 username alirezazamani 77323 unique_id port 77323 terminate_cause Lost-Carrier 77323 bytes_out 117397 77323 bytes_in 1379859 77323 station_ip 94.241.178.166 77323 port 15728794 77323 nas_port_type Virtual 77323 remote_ip 5.5.5.222 77325 username forozande 77325 unique_id port 77325 terminate_cause User-Request 77325 bytes_out 53173 77325 bytes_in 66928 77325 station_ip 83.123.58.5 77325 port 15728802 77325 nas_port_type Virtual 77325 remote_ip 5.5.5.181 77329 username mahbobeh 77329 kill_reason Maximum check online fails reached 77329 unique_id port 77329 bytes_out 1466907 77329 bytes_in 19911877 77329 station_ip 37.129.68.18 77329 port 15728797 77329 nas_port_type Virtual 77329 remote_ip 5.5.5.185 77332 username pouria 77332 kill_reason Maximum check online fails reached 77332 unique_id port 77332 bytes_out 9580585 77332 bytes_in 336969069 77332 station_ip 151.235.117.210 77332 port 15728796 77332 nas_port_type Virtual 77332 remote_ip 5.5.5.186 77334 username forozande 77334 unique_id port 77334 terminate_cause User-Request 77334 bytes_out 34498 77334 bytes_in 217655 77334 station_ip 83.122.187.68 77334 port 15728815 77334 nas_port_type Virtual 77334 remote_ip 5.5.5.180 77336 username soleymani 77336 unique_id port 77336 terminate_cause Lost-Carrier 77336 bytes_out 32526 77336 bytes_in 175107 77336 station_ip 5.119.110.232 77336 port 15728817 77336 nas_port_type Virtual 77336 remote_ip 5.5.5.179 77339 username forozande 77339 unique_id port 77339 terminate_cause User-Request 77339 bytes_out 0 77339 bytes_in 0 81212 username soleymani 81212 unique_id port 81212 terminate_cause Lost-Carrier 81212 bytes_out 71088 81212 bytes_in 224959 81212 station_ip 5.120.32.97 81212 port 15728800 77272 username hamideh 77272 unique_id port 77272 terminate_cause Lost-Carrier 77272 bytes_out 2259671 77272 bytes_in 52192273 77272 station_ip 5.119.29.6 77272 port 15728730 77272 nas_port_type Virtual 77272 remote_ip 5.5.5.219 77274 username alirezazamani 77274 unique_id port 77274 terminate_cause Lost-Carrier 77274 bytes_out 437526 77274 bytes_in 11206735 77274 station_ip 37.27.11.254 77274 port 15728734 77274 nas_port_type Virtual 77274 remote_ip 5.5.5.216 77277 username alirezazamani 77277 unique_id port 77277 terminate_cause Lost-Carrier 77277 bytes_out 3261401 77277 bytes_in 73050991 77277 station_ip 37.27.2.150 77277 port 15728742 77277 nas_port_type Virtual 77277 remote_ip 5.5.5.212 77281 username asadi 77281 unique_id port 77281 terminate_cause User-Request 77281 bytes_out 255301 77281 bytes_in 7671199 77281 station_ip 83.123.252.197 77281 port 15728750 77281 nas_port_type Virtual 77281 remote_ip 5.5.5.249 77282 username soleymani 77282 unique_id port 77282 terminate_cause Lost-Carrier 77282 bytes_out 83149 77282 bytes_in 296696 77282 station_ip 5.120.118.12 77282 port 15728749 77282 nas_port_type Virtual 77282 remote_ip 5.5.5.205 77283 username alirezazamani 77283 unique_id port 77283 terminate_cause Lost-Carrier 77283 bytes_out 2812272 77283 bytes_in 85001209 77283 station_ip 37.27.8.15 77283 port 15728745 77283 nas_port_type Virtual 77283 remote_ip 5.5.5.209 77286 username asadi 77286 unique_id port 77286 terminate_cause User-Request 77286 bytes_out 144057 77286 bytes_in 3766425 77286 station_ip 83.123.252.197 77286 port 15728755 77286 nas_port_type Virtual 77286 remote_ip 5.5.5.249 77290 username aminvpn 77290 unique_id port 77290 terminate_cause User-Request 77290 bytes_out 257791 77290 bytes_in 1648853 77290 station_ip 5.233.69.67 77290 port 15728757 77290 nas_port_type Virtual 77290 remote_ip 5.5.5.227 77291 username alirezazamani 77291 unique_id port 77291 terminate_cause Lost-Carrier 77291 bytes_out 780976 77291 bytes_in 15707664 77291 station_ip 5.125.227.223 77291 port 15728747 77291 nas_port_type Virtual 77291 remote_ip 5.5.5.207 77292 username asadi 77292 unique_id port 77292 terminate_cause User-Request 77292 bytes_out 57795 77292 bytes_in 715177 77292 station_ip 83.123.252.197 77292 port 15728760 77292 nas_port_type Virtual 77292 remote_ip 5.5.5.249 77293 username soleymani 77293 unique_id port 77293 terminate_cause Lost-Carrier 77293 bytes_out 82020 77293 bytes_in 466967 77293 station_ip 5.120.87.108 77293 port 15728759 77293 nas_port_type Virtual 77293 remote_ip 5.5.5.199 77301 username alirezazamani 77301 unique_id port 77301 terminate_cause Lost-Carrier 77301 bytes_out 4560049 77301 bytes_in 143378707 77301 station_ip 37.27.51.26 77301 port 15728753 77301 nas_port_type Virtual 77301 remote_ip 5.5.5.202 77303 username asadi 77303 unique_id port 77303 terminate_cause User-Request 77303 bytes_out 17868 77303 bytes_in 68842 77303 station_ip 83.123.252.197 77303 port 15728783 77303 nas_port_type Virtual 77303 remote_ip 5.5.5.249 77307 username alinezhad 77307 unique_id port 77307 terminate_cause User-Request 77307 bytes_out 0 77307 bytes_in 0 77307 station_ip 5.202.58.198 77307 port 15728785 77307 nas_port_type Virtual 77307 remote_ip 5.5.5.206 77310 username soleymani 77310 unique_id port 77310 terminate_cause Lost-Carrier 77310 bytes_out 156265 77310 bytes_in 1105157 77310 station_ip 5.119.225.35 77310 port 15728779 77310 nas_port_type Virtual 77310 remote_ip 5.5.5.191 81212 nas_port_type Virtual 77508 username mahbobeh 77508 unique_id port 77508 terminate_cause Admin-Reboot 77508 bytes_out 23385 77508 bytes_in 314476 77508 station_ip 37.129.96.106 77508 port 15729021 77508 nas_port_type Virtual 77508 remote_ip 5.5.5.134 77308 username alirezazamani 77308 unique_id port 77308 terminate_cause Lost-Carrier 77308 bytes_out 1084735 77308 bytes_in 29934183 77308 station_ip 5.126.235.139 77308 port 15728772 77308 nas_port_type Virtual 77308 remote_ip 5.5.5.194 77309 username alirezazamani 77309 unique_id port 77309 terminate_cause Lost-Carrier 77309 bytes_out 90224 77309 bytes_in 471593 77309 station_ip 5.119.192.22 77309 port 15728778 77309 nas_port_type Virtual 77309 remote_ip 5.5.5.238 77311 username forozande 77311 unique_id port 77311 terminate_cause User-Request 77311 bytes_out 0 77311 bytes_in 0 77311 station_ip 37.129.207.98 77311 port 15728786 77311 nas_port_type Virtual 77311 remote_ip 5.5.5.190 77313 username aminvpn 77313 unique_id port 77313 terminate_cause Lost-Carrier 77313 bytes_out 216608 77313 bytes_in 3715451 77313 station_ip 5.233.69.67 77313 port 15728774 77313 nas_port_type Virtual 77313 remote_ip 5.5.5.227 77321 username soleymani 77321 unique_id port 77321 terminate_cause Lost-Carrier 77321 bytes_out 122656 77321 bytes_in 339426 77321 station_ip 5.119.40.66 77321 port 15728791 77321 nas_port_type Virtual 77321 remote_ip 5.5.5.187 81212 remote_ip 5.5.5.173 81213 username caferibar 81213 unique_id port 81213 terminate_cause Lost-Carrier 81213 bytes_out 1426618 81213 bytes_in 4814030 81213 station_ip 5.119.165.222 81213 port 15728781 81213 nas_port_type Virtual 77509 username ahmadipour 77509 unique_id port 77509 terminate_cause User-Request 77509 bytes_out 116603 77509 bytes_in 509406 77509 station_ip 37.129.169.210 77509 port 15728641 77509 nas_port_type Virtual 81213 remote_ip 5.5.5.184 77346 username asadi 77346 kill_reason Maximum check online fails reached 77346 unique_id port 77346 bytes_out 0 77346 bytes_in 0 77346 station_ip 83.123.252.197 77346 port 15728828 77346 nas_port_type Virtual 77349 username asadi 77349 unique_id port 77349 terminate_cause User-Request 77349 bytes_out 132633 77349 bytes_in 2213979 77349 station_ip 83.123.252.197 77349 port 15728832 77349 nas_port_type Virtual 77349 remote_ip 5.5.5.249 77355 username pouria 77355 unique_id port 77355 terminate_cause Lost-Carrier 77355 bytes_out 16765759 77355 bytes_in 589498579 77355 station_ip 5.119.71.208 77355 port 15728821 77355 nas_port_type Virtual 77355 remote_ip 5.5.5.176 77360 username zoha 77360 unique_id port 77360 terminate_cause Lost-Carrier 77360 bytes_out 4111788 77360 bytes_in 111040975 77360 station_ip 5.119.8.203 77360 port 15728840 77360 nas_port_type Virtual 77360 remote_ip 5.5.5.218 77362 username arabpour 77362 unique_id port 77362 terminate_cause User-Request 77362 bytes_out 319349 77362 bytes_in 7439175 77362 station_ip 83.122.223.242 77362 port 15728845 77362 nas_port_type Virtual 77362 remote_ip 5.5.5.166 77366 username reza 77366 unique_id port 77366 terminate_cause User-Request 77366 bytes_out 0 77366 bytes_in 0 77366 station_ip 83.123.208.43 77366 port 15728849 77366 nas_port_type Virtual 77366 remote_ip 5.5.5.164 77367 username reza 77367 unique_id port 77367 terminate_cause User-Request 77367 bytes_out 80916 77367 bytes_in 327799 77367 station_ip 83.123.208.43 77367 port 15728850 77367 nas_port_type Virtual 77367 remote_ip 5.5.5.164 77372 username forozande 77372 unique_id port 77372 terminate_cause User-Request 77372 bytes_out 45392 77372 bytes_in 192878 77372 station_ip 83.123.112.178 77372 port 15728855 77372 nas_port_type Virtual 77372 remote_ip 5.5.5.161 77300 remote_ip 5.5.5.195 77302 username asadi 77302 unique_id port 77302 terminate_cause User-Request 77302 bytes_out 136736 77302 bytes_in 3820048 77302 station_ip 83.123.252.197 77302 port 15728782 77302 nas_port_type Virtual 77302 remote_ip 5.5.5.249 77304 username alirezazamani 77304 unique_id port 77304 terminate_cause Lost-Carrier 77304 bytes_out 949615 77304 bytes_in 19318070 77304 station_ip 5.119.192.22 77304 port 15728770 77304 nas_port_type Virtual 77304 remote_ip 5.5.5.196 77305 username zoha 77305 unique_id port 77305 terminate_cause Lost-Carrier 77305 bytes_out 1179928 77305 bytes_in 5931906 77305 station_ip 5.119.8.203 77305 port 15728769 77305 nas_port_type Virtual 77305 remote_ip 5.5.5.218 77315 username forozande 77315 unique_id port 77315 terminate_cause User-Request 77315 bytes_out 77312 77315 bytes_in 82320 77315 station_ip 37.129.91.166 77315 port 15728789 77315 nas_port_type Virtual 77315 remote_ip 5.5.5.189 77317 username soleymani 77317 unique_id port 77317 terminate_cause Lost-Carrier 77317 bytes_out 69260 77317 bytes_in 211024 77317 station_ip 5.119.15.133 77317 port 15728790 77317 nas_port_type Virtual 77317 remote_ip 5.5.5.188 77509 remote_ip 5.5.5.254 77510 username hamideh 77510 unique_id port 77510 terminate_cause User-Request 77510 bytes_out 0 77510 bytes_in 0 77510 station_ip 5.119.71.225 77510 port 15728642 77510 nas_port_type Virtual 77331 username rashidi 77331 kill_reason Maximum check online fails reached 77331 unique_id port 77331 bytes_out 18719525 77331 bytes_in 207817795 77331 station_ip 5.119.24.155 77331 port 15728746 77331 nas_port_type Virtual 77331 remote_ip 5.5.5.208 77363 username asadi 77363 unique_id port 77363 terminate_cause User-Request 77363 bytes_out 3177 77363 bytes_in 17310 77363 station_ip 37.129.65.195 77363 port 15728846 77363 nas_port_type Virtual 77363 remote_ip 5.5.5.165 77370 username reza 77370 unique_id port 77370 terminate_cause User-Request 77370 bytes_out 57419 77370 bytes_in 1008217 77370 station_ip 83.123.208.43 77370 port 15728854 77370 nas_port_type Virtual 77370 remote_ip 5.5.5.164 77374 username forozande 77374 unique_id port 77374 terminate_cause User-Request 77374 bytes_out 0 77374 bytes_in 0 77374 station_ip 83.123.112.178 77374 port 15728856 77374 nas_port_type Virtual 77374 remote_ip 5.5.5.161 77376 username forozande 77376 unique_id port 77376 terminate_cause User-Request 77376 bytes_out 9583 77376 bytes_in 18738 77376 station_ip 83.123.112.178 77376 port 15728858 77376 nas_port_type Virtual 77376 remote_ip 5.5.5.161 77380 username asadi 77380 unique_id port 77380 terminate_cause User-Request 77380 bytes_out 51165 77380 bytes_in 410716 77380 station_ip 83.122.154.100 77380 port 15728863 77380 nas_port_type Virtual 77380 remote_ip 5.5.5.163 77384 username mahdavi 77384 unique_id port 77384 terminate_cause User-Request 77384 bytes_out 1081828 77384 bytes_in 23937269 77384 station_ip 83.122.225.89 77384 port 15728868 77384 nas_port_type Virtual 77384 remote_ip 5.5.5.157 77385 username forozande 77385 unique_id port 77385 terminate_cause User-Request 77385 bytes_out 26171 77385 bytes_in 110033 77385 station_ip 83.123.70.82 77385 port 15728869 77385 nas_port_type Virtual 77385 remote_ip 5.5.5.156 77388 username forozande 77388 unique_id port 77388 terminate_cause User-Request 77388 bytes_out 0 77388 bytes_in 0 77388 station_ip 83.123.70.82 77388 port 15728873 77388 nas_port_type Virtual 77388 remote_ip 5.5.5.156 77392 username mahdavi 77392 unique_id port 77392 terminate_cause User-Request 77392 bytes_out 653034 77392 bytes_in 13199727 77392 station_ip 83.122.177.73 77392 port 15728875 77314 username forozande 77314 unique_id port 77314 terminate_cause User-Request 77314 bytes_out 67317 77314 bytes_in 184297 77314 station_ip 37.129.91.166 77314 port 15728788 77314 nas_port_type Virtual 77314 remote_ip 5.5.5.189 77316 username asadi 77316 unique_id port 77316 terminate_cause User-Request 77316 bytes_out 66621 77316 bytes_in 1327377 77316 station_ip 83.123.252.197 77316 port 15728792 77316 nas_port_type Virtual 77316 remote_ip 5.5.5.249 77318 username asadi 77318 unique_id port 77318 terminate_cause User-Request 77318 bytes_out 29022 77318 bytes_in 102867 77318 station_ip 83.123.252.197 77318 port 15728793 77318 nas_port_type Virtual 77318 remote_ip 5.5.5.249 77319 username alirezazamani 77319 unique_id port 77319 terminate_cause User-Request 77319 bytes_out 5867592 77319 bytes_in 165199097 77319 station_ip 188.245.89.135 77319 port 15728777 77319 nas_port_type Virtual 77319 remote_ip 5.5.5.192 77322 username alirezazamani 77322 unique_id port 77322 terminate_cause User-Request 77322 bytes_out 836460 77322 bytes_in 30119791 77322 station_ip 5.119.192.22 77322 port 15728795 77322 nas_port_type Virtual 77322 remote_ip 5.5.5.196 77324 username ahmadi 77324 unique_id port 77324 terminate_cause User-Request 77324 bytes_out 123103 77324 bytes_in 685138 77324 station_ip 83.123.237.40 77324 port 15728800 77324 nas_port_type Virtual 77324 remote_ip 5.5.5.183 77326 username asadi 77326 unique_id port 77326 terminate_cause User-Request 77326 bytes_out 124563 77326 bytes_in 1758567 77326 station_ip 83.123.252.197 77326 port 15728803 77326 nas_port_type Virtual 77326 remote_ip 5.5.5.249 77328 username forozande 77328 unique_id port 77328 terminate_cause User-Request 77328 bytes_out 66740 77328 bytes_in 442315 77328 station_ip 83.123.58.5 77328 port 15728804 77328 nas_port_type Virtual 77328 remote_ip 5.5.5.181 77333 username mobina 77333 kill_reason Maximum check online fails reached 77333 unique_id port 77333 bytes_out 1211164 77333 bytes_in 12317203 77333 station_ip 5.123.37.166 77333 port 15728799 77333 nas_port_type Virtual 77333 remote_ip 5.5.5.184 77335 username soleymani 77335 unique_id port 77335 terminate_cause User-Request 77335 bytes_out 0 77335 bytes_in 0 77335 station_ip 5.119.110.232 77335 port 15728816 77335 nas_port_type Virtual 77335 remote_ip 5.5.5.179 77337 username shahriyar 77337 unique_id port 77337 terminate_cause User-Request 77337 bytes_out 0 77337 bytes_in 0 77337 station_ip 5.202.22.203 77337 port 15728822 77337 nas_port_type Virtual 77337 remote_ip 5.5.5.175 81214 unique_id port 81214 remote_ip 10.8.0.6 81216 username amirhosein 81216 unique_id port 81216 terminate_cause Lost-Carrier 81216 bytes_out 3360573 81216 bytes_in 64891803 81216 station_ip 5.119.19.196 81216 port 15728786 77340 username shahnaz 77340 unique_id port 77340 terminate_cause User-Request 77340 bytes_out 5254192 77340 bytes_in 130937855 77340 station_ip 5.120.125.122 77340 port 15728820 77340 nas_port_type Virtual 77340 remote_ip 5.5.5.177 77341 username asadi 77341 unique_id port 77341 terminate_cause User-Request 77341 bytes_out 192972 77341 bytes_in 4119995 77341 station_ip 83.123.252.197 77341 port 15728825 77341 nas_port_type Virtual 77341 remote_ip 5.5.5.249 77342 username soleymani 77342 unique_id port 77342 terminate_cause Lost-Carrier 77342 bytes_out 131745 77342 bytes_in 416250 77342 station_ip 5.119.205.229 77342 port 15728823 77342 nas_port_type Virtual 77342 remote_ip 5.5.5.174 77345 username zoha 77345 unique_id port 77345 terminate_cause Lost-Carrier 77345 bytes_out 165864 77345 bytes_in 797188 77345 station_ip 5.119.8.203 77345 port 15728826 77345 nas_port_type Virtual 77339 station_ip 83.123.135.253 77339 port 15728824 77339 nas_port_type Virtual 77339 remote_ip 5.5.5.173 77344 username asadi 77344 unique_id port 77344 terminate_cause User-Request 77344 bytes_out 99633 77344 bytes_in 1590792 77344 station_ip 83.123.252.197 77344 port 15728829 77344 nas_port_type Virtual 77344 remote_ip 5.5.5.249 77350 username asadi 77350 unique_id port 77350 terminate_cause User-Request 77350 bytes_out 35215 77350 bytes_in 190990 77350 station_ip 83.123.252.197 77350 port 15728833 77350 nas_port_type Virtual 77350 remote_ip 5.5.5.249 77353 username asadi 77353 unique_id port 77353 terminate_cause User-Request 77353 bytes_out 38332 77353 bytes_in 124497 77353 station_ip 83.123.252.197 77353 port 15728836 77353 nas_port_type Virtual 77353 remote_ip 5.5.5.249 77357 username asadi 77357 unique_id port 77357 terminate_cause User-Request 77357 bytes_out 27338 77357 bytes_in 107449 77357 station_ip 113.203.49.183 77357 port 15728839 77357 nas_port_type Virtual 77357 remote_ip 5.5.5.170 77358 username alinezhad 77358 unique_id port 77358 terminate_cause User-Request 77358 bytes_out 0 77358 bytes_in 0 77358 station_ip 5.202.58.198 77358 port 15728842 77358 nas_port_type Virtual 77358 remote_ip 5.5.5.206 77359 username soleymani 77359 unique_id port 77359 terminate_cause Lost-Carrier 77359 bytes_out 174557 77359 bytes_in 2737275 77359 station_ip 5.120.161.22 77359 port 15728841 77359 nas_port_type Virtual 77359 remote_ip 5.5.5.169 77364 username asadi 77364 unique_id port 77364 terminate_cause User-Request 77364 bytes_out 102534 77364 bytes_in 1107307 77364 station_ip 37.129.65.195 77364 port 15728847 77364 nas_port_type Virtual 77364 remote_ip 5.5.5.165 77368 username asadi 77368 unique_id port 77368 terminate_cause User-Request 77368 bytes_out 6932 77368 bytes_in 32020 77368 station_ip 83.122.154.100 77368 port 15728851 77368 nas_port_type Virtual 77368 remote_ip 5.5.5.163 77369 username ahmadi 77369 unique_id port 77369 terminate_cause User-Request 77369 bytes_out 174055 77369 bytes_in 3244861 77369 station_ip 83.123.225.168 77369 port 15728852 77369 nas_port_type Virtual 77369 remote_ip 5.5.5.168 77378 username forozande 77378 unique_id port 77378 terminate_cause User-Request 77378 bytes_out 32870 77378 bytes_in 35343 77378 station_ip 83.122.75.0 77378 port 15728861 77378 nas_port_type Virtual 77378 remote_ip 5.5.5.159 77381 username asadi 77381 unique_id port 77381 terminate_cause User-Request 77381 bytes_out 37437 77381 bytes_in 70685 77381 station_ip 83.122.154.100 77381 port 15728865 77381 nas_port_type Virtual 77381 remote_ip 5.5.5.163 77389 username soleymani 77389 unique_id port 77389 terminate_cause Lost-Carrier 77389 bytes_out 225801 77389 bytes_in 755296 77389 station_ip 5.119.88.192 77389 port 15728860 77389 nas_port_type Virtual 77389 remote_ip 5.5.5.160 77390 username forozande 77390 unique_id port 77390 terminate_cause User-Request 77390 bytes_out 6532 77390 bytes_in 27226 77390 station_ip 37.129.36.81 77390 port 15728874 77390 nas_port_type Virtual 77390 remote_ip 5.5.5.154 77410 username soleymani 77410 unique_id port 77410 terminate_cause Lost-Carrier 77410 bytes_out 60807 77410 bytes_in 319848 77410 station_ip 5.119.204.253 77410 port 15728895 77410 nas_port_type Virtual 77410 remote_ip 5.5.5.143 77415 username reza 77415 unique_id port 77415 terminate_cause User-Request 77415 bytes_out 38997 77415 bytes_in 271582 77415 station_ip 83.123.208.43 77415 port 15728907 77415 nas_port_type Virtual 77415 remote_ip 5.5.5.164 77416 username asadi 77416 unique_id port 77416 terminate_cause User-Request 77416 bytes_out 53703 77416 bytes_in 309691 77345 remote_ip 5.5.5.218 77347 username asadi 77347 unique_id port 77347 terminate_cause User-Request 77347 bytes_out 177599 77347 bytes_in 2841860 77347 station_ip 83.123.252.197 77347 port 15728830 77347 nas_port_type Virtual 77347 remote_ip 5.5.5.249 77348 username soleymani 77348 unique_id port 77348 terminate_cause User-Request 77348 bytes_out 280226 77348 bytes_in 4975906 77348 station_ip 5.119.216.80 77348 port 15728831 77348 nas_port_type Virtual 77348 remote_ip 5.5.5.171 77351 username asadi 77351 unique_id port 77351 terminate_cause User-Request 77351 bytes_out 18312 77351 bytes_in 72562 77351 station_ip 83.123.252.197 77351 port 15728834 77351 nas_port_type Virtual 77351 remote_ip 5.5.5.249 77352 username asadi 77352 unique_id port 77352 terminate_cause User-Request 77352 bytes_out 557124 77352 bytes_in 10838370 77352 station_ip 83.123.252.197 77352 port 15728835 77352 nas_port_type Virtual 77352 remote_ip 5.5.5.249 77354 username asadi 77354 unique_id port 77354 terminate_cause User-Request 77354 bytes_out 359859 77354 bytes_in 9129118 77354 station_ip 113.203.49.183 77354 port 15728837 77354 nas_port_type Virtual 77354 remote_ip 5.5.5.170 77356 username asadi 77356 unique_id port 77356 terminate_cause User-Request 77356 bytes_out 173031 77356 bytes_in 4486958 77356 station_ip 113.203.49.183 77356 port 15728838 77356 nas_port_type Virtual 77356 remote_ip 5.5.5.170 77361 username ahmadi 77361 unique_id port 77361 terminate_cause User-Request 77361 bytes_out 75488 77361 bytes_in 338760 77361 station_ip 83.123.225.168 77361 port 15728843 77361 nas_port_type Virtual 77361 remote_ip 5.5.5.168 77365 username reza 77365 unique_id port 77365 terminate_cause User-Request 77365 bytes_out 0 77365 bytes_in 0 77365 station_ip 83.123.208.43 77365 port 15728848 77365 nas_port_type Virtual 77365 remote_ip 5.5.5.164 77371 username soleymani 77371 unique_id port 77371 terminate_cause Lost-Carrier 77371 bytes_out 10964 77371 bytes_in 134377 77371 station_ip 5.120.169.226 77371 port 15728853 77371 nas_port_type Virtual 77371 remote_ip 5.5.5.162 77510 remote_ip 5.5.5.252 77511 username alinezhad 77511 unique_id port 77511 terminate_cause User-Request 77511 bytes_out 152832 77511 bytes_in 195023 77511 station_ip 83.122.115.8 77511 port 15728643 77511 nas_port_type Virtual 77375 username forozande 77375 unique_id port 77375 terminate_cause User-Request 77375 bytes_out 14587 77375 bytes_in 21525 77375 station_ip 83.123.112.178 77375 port 15728857 77375 nas_port_type Virtual 77375 remote_ip 5.5.5.161 77383 username mahdavi 77383 unique_id port 77383 terminate_cause User-Request 77383 bytes_out 737573 77383 bytes_in 15141452 77383 station_ip 83.122.225.89 77383 port 15728867 77383 nas_port_type Virtual 77383 remote_ip 5.5.5.157 77511 remote_ip 5.5.5.253 77512 username asadi 77512 unique_id port 77512 terminate_cause User-Request 77512 bytes_out 12830 77512 bytes_in 35974 77512 station_ip 113.203.68.27 77512 port 15728646 77512 nas_port_type Virtual 77387 username mahdavi 77387 unique_id port 77387 terminate_cause User-Request 77387 bytes_out 965668 77387 bytes_in 20585419 77387 station_ip 83.122.225.89 77387 port 15728872 77387 nas_port_type Virtual 77387 remote_ip 5.5.5.157 77391 username soleymani 77391 unique_id port 77391 terminate_cause Lost-Carrier 77391 bytes_out 100203 77391 bytes_in 560958 77391 station_ip 5.120.170.13 77391 port 15728870 77391 nas_port_type Virtual 77391 remote_ip 5.5.5.155 77394 username forozande 77394 unique_id port 77394 terminate_cause User-Request 77394 bytes_out 12172 77394 bytes_in 105120 77394 station_ip 37.129.62.146 77394 port 15728880 77377 username forozande 77377 unique_id port 77377 terminate_cause User-Request 77377 bytes_out 13296 77377 bytes_in 21287 77377 station_ip 83.123.112.178 77377 port 15728859 77377 nas_port_type Virtual 77377 remote_ip 5.5.5.161 77379 username forozande 77379 unique_id port 77379 terminate_cause User-Request 77379 bytes_out 13268 77379 bytes_in 21297 77379 station_ip 83.122.75.0 77379 port 15728862 77379 nas_port_type Virtual 77379 remote_ip 5.5.5.159 77382 username mahdavi 77382 unique_id port 77382 terminate_cause User-Request 77382 bytes_out 863745 77382 bytes_in 18365104 77382 station_ip 83.122.225.89 77382 port 15728866 77382 nas_port_type Virtual 77382 remote_ip 5.5.5.157 77397 username forozande 77397 unique_id port 77397 terminate_cause User-Request 77397 bytes_out 25630 77397 bytes_in 121310 77397 station_ip 83.122.12.226 77397 port 15728882 77397 nas_port_type Virtual 77397 remote_ip 5.5.5.149 77398 username ahmadi 77398 unique_id port 77398 terminate_cause User-Request 77398 bytes_out 24253 77398 bytes_in 164438 77398 station_ip 83.123.23.139 77398 port 15728883 77398 nas_port_type Virtual 77398 remote_ip 5.5.5.148 77402 username soleymani 77402 unique_id port 77402 terminate_cause Lost-Carrier 77402 bytes_out 58208 77402 bytes_in 240479 77402 station_ip 5.120.5.171 77402 port 15728885 77402 nas_port_type Virtual 77402 remote_ip 5.5.5.146 77403 username alirezazamani 77403 unique_id port 77403 terminate_cause Lost-Carrier 77403 bytes_out 412544 77403 bytes_in 9111482 77403 station_ip 5.119.192.22 77403 port 15728879 77403 nas_port_type Virtual 77403 remote_ip 5.5.5.151 77406 username forozande 77406 unique_id port 77406 terminate_cause User-Request 77406 bytes_out 29686 77406 bytes_in 94475 77406 station_ip 83.122.204.75 77406 port 15728892 77406 nas_port_type Virtual 77406 remote_ip 5.5.5.145 77408 username forozande 77408 unique_id port 77408 terminate_cause User-Request 77408 bytes_out 22733 77408 bytes_in 169467 77408 station_ip 83.122.204.75 77408 port 15728894 77408 nas_port_type Virtual 77408 remote_ip 5.5.5.145 77409 username zoha 77409 unique_id port 77409 terminate_cause Lost-Carrier 77409 bytes_out 2931395 77409 bytes_in 83154008 77409 station_ip 5.119.8.203 77409 port 15728887 77409 nas_port_type Virtual 77409 remote_ip 5.5.5.218 77411 username asadi 77411 unique_id port 77411 terminate_cause User-Request 77411 bytes_out 136685 77411 bytes_in 1308556 77411 station_ip 83.122.220.204 77411 port 15728896 77411 nas_port_type Virtual 77411 remote_ip 5.5.5.142 77413 username ahmadi 77413 unique_id port 77413 terminate_cause User-Request 77413 bytes_out 126606 77413 bytes_in 1379538 77413 station_ip 83.123.23.139 77413 port 15728906 77413 nas_port_type Virtual 77413 remote_ip 5.5.5.148 77414 username mahbobeh 77414 unique_id port 77414 terminate_cause Lost-Carrier 77414 bytes_out 191545 77414 bytes_in 349574 77414 station_ip 37.129.101.102 77414 port 15728897 77414 nas_port_type Virtual 77414 remote_ip 5.5.5.150 77420 username forozande 77420 unique_id port 77420 terminate_cause User-Request 77420 bytes_out 123707 77420 bytes_in 218251 77420 station_ip 83.122.42.186 77420 port 15728926 77420 nas_port_type Virtual 77420 remote_ip 5.5.5.137 77430 username zoha 77430 unique_id port 77430 terminate_cause Lost-Carrier 77430 bytes_out 1482683 77430 bytes_in 30988890 77430 station_ip 5.119.8.203 77430 port 15728932 77430 nas_port_type Virtual 77430 remote_ip 5.5.5.218 77433 username mobina 77433 unique_id port 77433 terminate_cause Lost-Carrier 77433 bytes_out 162550 77433 bytes_in 852763 77433 station_ip 5.123.239.98 77433 port 15728938 77433 nas_port_type Virtual 77392 nas_port_type Virtual 77392 remote_ip 5.5.5.153 77393 username forozande 77393 unique_id port 77393 terminate_cause User-Request 77393 bytes_out 231815 77393 bytes_in 204768 77393 station_ip 37.129.62.146 77393 port 15728878 77393 nas_port_type Virtual 77393 remote_ip 5.5.5.152 77395 username alirezazamani 77395 unique_id port 77395 terminate_cause Lost-Carrier 77395 bytes_out 461813 77395 bytes_in 14777600 77395 station_ip 5.119.192.22 77395 port 15728876 77395 nas_port_type Virtual 77395 remote_ip 5.5.5.196 77399 username forozande 77399 unique_id port 77399 terminate_cause User-Request 77399 bytes_out 13108 77399 bytes_in 31582 77399 station_ip 83.122.46.74 77399 port 15728884 77399 nas_port_type Virtual 77399 remote_ip 5.5.5.147 77400 username forozande 77400 unique_id port 77400 terminate_cause User-Request 77400 bytes_out 17360 77400 bytes_in 72262 77400 station_ip 83.122.204.75 77400 port 15728886 77400 nas_port_type Virtual 77400 remote_ip 5.5.5.145 77412 username mahbobeh 77412 unique_id port 77412 terminate_cause Lost-Carrier 77412 bytes_out 339756 77412 bytes_in 6575970 77412 station_ip 37.129.101.102 77412 port 15728881 77412 nas_port_type Virtual 77412 remote_ip 5.5.5.150 77418 username reza2742 77418 unique_id port 77418 terminate_cause User-Request 77418 bytes_out 183928 77418 bytes_in 518872 77418 station_ip 83.122.226.245 77418 port 15728917 77418 nas_port_type Virtual 77418 remote_ip 5.5.5.140 77421 username forozande 77421 unique_id port 77421 terminate_cause User-Request 77421 bytes_out 33944 77421 bytes_in 105836 77421 station_ip 83.122.42.186 77421 port 15728927 77421 nas_port_type Virtual 77421 remote_ip 5.5.5.137 77422 username arabpour 77422 unique_id port 77422 terminate_cause User-Request 77422 bytes_out 176865 77422 bytes_in 3527568 77422 station_ip 113.203.60.72 77422 port 15728930 77422 nas_port_type Virtual 77422 remote_ip 5.5.5.135 77423 username soleymani 77423 unique_id port 77423 terminate_cause Lost-Carrier 77423 bytes_out 1779894 77423 bytes_in 54894067 77423 station_ip 5.120.85.237 77423 port 15728918 77423 nas_port_type Virtual 77423 remote_ip 5.5.5.139 77426 username mobina 77426 unique_id port 77426 terminate_cause Lost-Carrier 77426 bytes_out 779737 77426 bytes_in 15150508 77426 station_ip 5.124.148.50 77426 port 15728928 77426 nas_port_type Virtual 77426 remote_ip 5.5.5.136 77428 username arabpour 77428 unique_id port 77428 terminate_cause User-Request 77428 bytes_out 313705 77428 bytes_in 9559670 77428 station_ip 83.122.106.112 77428 port 15728936 77428 nas_port_type Virtual 77428 remote_ip 5.5.5.132 77429 username ahmadipour 77429 unique_id port 77429 terminate_cause Lost-Carrier 77429 bytes_out 1131990 77429 bytes_in 15088313 77429 station_ip 37.129.237.198 77429 port 15728934 77429 nas_port_type Virtual 77429 remote_ip 5.5.5.133 77432 username forozande 77432 unique_id port 77432 terminate_cause User-Request 77432 bytes_out 29756 77432 bytes_in 140904 77432 station_ip 83.122.42.186 77432 port 15728939 77432 nas_port_type Virtual 77432 remote_ip 5.5.5.137 77450 username asadi 77450 unique_id port 77450 terminate_cause User-Request 77450 bytes_out 13685 77450 bytes_in 58958 77450 station_ip 83.122.220.204 77450 port 15728962 77450 nas_port_type Virtual 77450 remote_ip 5.5.5.142 77457 username asadi 77457 unique_id port 77457 terminate_cause User-Request 77457 bytes_out 99322 77457 bytes_in 1643462 77457 station_ip 83.122.220.204 77457 port 15728970 77457 nas_port_type Virtual 77457 remote_ip 5.5.5.142 77458 username mahdavi 77458 unique_id port 77458 terminate_cause User-Request 77458 bytes_out 642300 77458 bytes_in 13042259 77394 nas_port_type Virtual 77394 remote_ip 5.5.5.152 81216 nas_port_type Virtual 81216 remote_ip 5.5.5.181 81218 username aminvpn 81218 mac 81218 bytes_out 96525 81218 bytes_in 293388 81218 station_ip 5.119.30.76 81218 port 14 81218 unique_id port 77401 username forozande 77401 unique_id port 77401 terminate_cause User-Request 77401 bytes_out 11785 77401 bytes_in 26791 77401 station_ip 83.122.204.75 77401 port 15728888 77401 nas_port_type Virtual 77401 remote_ip 5.5.5.145 77404 username mobina 77404 unique_id port 77404 terminate_cause User-Request 77404 bytes_out 49337 77404 bytes_in 63852 77404 station_ip 5.123.30.101 77404 port 15728890 77404 nas_port_type Virtual 77404 remote_ip 5.5.5.144 77405 username forozande 77405 unique_id port 77405 terminate_cause User-Request 77405 bytes_out 0 77405 bytes_in 0 77405 station_ip 83.122.204.75 77405 port 15728891 77405 nas_port_type Virtual 77405 remote_ip 5.5.5.145 77407 username forozande 77407 unique_id port 77407 terminate_cause User-Request 77407 bytes_out 4108 77407 bytes_in 15101 77407 station_ip 83.122.204.75 77407 port 15728893 77407 nas_port_type Virtual 77407 remote_ip 5.5.5.145 77417 username soleymani 77417 unique_id port 77417 terminate_cause Lost-Carrier 77417 bytes_out 92985 77417 bytes_in 342797 77417 station_ip 5.119.86.252 77417 port 15728916 77417 nas_port_type Virtual 77417 remote_ip 5.5.5.141 77419 username dehghan 77419 unique_id port 77419 terminate_cause User-Request 77419 bytes_out 557436 77419 bytes_in 16419568 77419 station_ip 83.122.68.162 77419 port 15728925 77419 nas_port_type Virtual 77419 remote_ip 5.5.5.138 77424 username zoha 77424 unique_id port 77424 terminate_cause User-Request 77424 bytes_out 249855 77424 bytes_in 990279 77424 station_ip 5.119.8.203 77424 port 15728929 77424 nas_port_type Virtual 77424 remote_ip 5.5.5.218 81218 remote_ip 10.8.0.6 81220 username forozande 81220 unique_id port 81220 terminate_cause User-Request 81220 bytes_out 127380 81220 bytes_in 2254549 81220 station_ip 83.122.208.80 81220 port 15728803 81220 nas_port_type Virtual 77431 username soleymani 77431 unique_id port 77431 terminate_cause Lost-Carrier 77431 bytes_out 109960 77431 bytes_in 412000 77431 station_ip 5.119.33.56 77431 port 15728937 77431 nas_port_type Virtual 77431 remote_ip 5.5.5.131 77442 username forozande 77442 unique_id port 77442 terminate_cause User-Request 77442 bytes_out 26809 77442 bytes_in 96384 77442 station_ip 37.129.220.75 77442 port 15728950 77442 nas_port_type Virtual 77442 remote_ip 5.5.5.124 77443 username forozande 77443 unique_id port 77443 terminate_cause User-Request 77443 bytes_out 0 77443 bytes_in 0 77443 station_ip 37.129.220.75 77443 port 15728952 77443 nas_port_type Virtual 77443 remote_ip 5.5.5.124 77444 username reza2742 77444 unique_id port 77444 terminate_cause User-Request 77444 bytes_out 62 77444 bytes_in 194 77444 station_ip 37.129.74.151 77444 port 15728951 77444 nas_port_type Virtual 77444 remote_ip 5.5.5.123 77447 username forozande 77447 unique_id port 77447 terminate_cause User-Request 77447 bytes_out 34231 77447 bytes_in 359171 77447 station_ip 37.129.220.75 77447 port 15728955 77447 nas_port_type Virtual 77447 remote_ip 5.5.5.124 77449 username mahbobeh 77449 unique_id port 77449 terminate_cause Lost-Carrier 77449 bytes_out 954169 77449 bytes_in 11162779 77449 station_ip 37.129.96.106 77449 port 15728933 77449 nas_port_type Virtual 77449 remote_ip 5.5.5.134 77455 username mahdavi 77455 unique_id port 77455 terminate_cause User-Request 77455 bytes_out 332414 77455 bytes_in 5385774 77455 station_ip 83.122.199.77 81220 remote_ip 5.5.5.170 77416 station_ip 83.122.220.204 77416 port 15728915 77416 nas_port_type Virtual 77416 remote_ip 5.5.5.142 77427 username arabpour 77427 unique_id port 77427 terminate_cause User-Request 77427 bytes_out 423474 77427 bytes_in 11698430 77427 station_ip 83.122.106.112 77427 port 15728935 77427 nas_port_type Virtual 77427 remote_ip 5.5.5.132 77434 username forozande 77434 unique_id port 77434 terminate_cause User-Request 77434 bytes_out 14967 77434 bytes_in 42019 77434 station_ip 83.122.42.186 77434 port 15728940 77434 nas_port_type Virtual 77434 remote_ip 5.5.5.137 77435 username soleymani 77435 unique_id port 77435 terminate_cause Lost-Carrier 77435 bytes_out 45278 77435 bytes_in 223324 77435 station_ip 5.119.140.14 77435 port 15728941 77435 nas_port_type Virtual 77435 remote_ip 5.5.5.129 77438 username forozande 77438 unique_id port 77438 terminate_cause User-Request 77438 bytes_out 18969 77438 bytes_in 51440 77438 station_ip 37.129.220.75 77438 port 15728947 77438 nas_port_type Virtual 77438 remote_ip 5.5.5.124 77441 username soleymani 77441 unique_id port 77441 terminate_cause Lost-Carrier 77441 bytes_out 88665 77441 bytes_in 398672 77441 station_ip 5.119.28.74 77441 port 15728943 77441 nas_port_type Virtual 77441 remote_ip 5.5.5.127 77446 username soleymani 77446 unique_id port 77446 terminate_cause Lost-Carrier 77446 bytes_out 289277 77446 bytes_in 187724 77446 station_ip 5.119.108.211 77446 port 15728944 77446 nas_port_type Virtual 77446 remote_ip 5.5.5.126 77448 username forozande 77448 unique_id port 77448 terminate_cause User-Request 77448 bytes_out 16231 77448 bytes_in 53449 77448 station_ip 37.129.220.75 77448 port 15728956 77448 nas_port_type Virtual 77448 remote_ip 5.5.5.124 77451 username asadi 77451 unique_id port 77451 terminate_cause User-Request 77451 bytes_out 99177 77451 bytes_in 2624719 77451 station_ip 83.122.220.204 77451 port 15728964 77451 nas_port_type Virtual 77451 remote_ip 5.5.5.142 77452 username forozande 77452 unique_id port 77452 terminate_cause User-Request 77452 bytes_out 0 77452 bytes_in 0 77452 station_ip 83.123.63.205 77452 port 15728965 77452 nas_port_type Virtual 77452 remote_ip 5.5.5.119 77459 username forozande 77459 unique_id port 77459 terminate_cause User-Request 77459 bytes_out 0 77459 bytes_in 0 77459 station_ip 37.129.200.242 77459 port 15728972 77459 nas_port_type Virtual 77459 remote_ip 5.5.5.117 77461 username mahbobeh 77461 unique_id port 77461 terminate_cause Lost-Carrier 77461 bytes_out 263818 77461 bytes_in 3536703 77461 station_ip 37.129.96.106 77461 port 15728960 77461 nas_port_type Virtual 77461 remote_ip 5.5.5.134 77463 username alinezhad 77463 unique_id port 77463 terminate_cause Lost-Carrier 77463 bytes_out 2418266 77463 bytes_in 74900793 77463 station_ip 5.202.30.241 77463 port 15728961 77463 nas_port_type Virtual 77463 remote_ip 5.5.5.121 77480 username soleymani 77480 unique_id port 77480 terminate_cause Lost-Carrier 77480 bytes_out 152738 77480 bytes_in 6219010 77480 station_ip 5.120.65.123 77480 port 15728993 77480 nas_port_type Virtual 77480 remote_ip 5.5.5.107 77485 username ahmadi 77485 unique_id port 77485 terminate_cause User-Request 77485 bytes_out 0 77485 bytes_in 0 77485 station_ip 83.123.91.67 77485 port 15729000 77485 nas_port_type Virtual 77485 remote_ip 5.5.5.104 77488 username mobina 77488 unique_id port 77488 terminate_cause Lost-Carrier 77488 bytes_out 48367 77488 bytes_in 250770 77488 station_ip 5.123.193.85 77488 port 15728997 77488 nas_port_type Virtual 77488 remote_ip 5.5.5.105 77493 username alinezhad 77493 unique_id port 77493 terminate_cause User-Request 77493 bytes_out 0 77493 bytes_in 0 77433 remote_ip 5.5.5.130 77436 username mobina 77436 unique_id port 77436 terminate_cause Lost-Carrier 77436 bytes_out 85271 77436 bytes_in 1033221 77436 station_ip 5.124.103.92 77436 port 15728942 77436 nas_port_type Virtual 77436 remote_ip 5.5.5.128 77437 username reza2742 77437 unique_id port 77437 terminate_cause User-Request 77437 bytes_out 0 77437 bytes_in 0 77437 station_ip 83.122.238.74 77437 port 15728945 77437 nas_port_type Virtual 77437 remote_ip 5.5.5.125 77439 username forozande 77439 unique_id port 77439 terminate_cause User-Request 77439 bytes_out 0 77439 bytes_in 0 77439 station_ip 37.129.220.75 77439 port 15728948 77439 nas_port_type Virtual 77439 remote_ip 5.5.5.124 77440 username forozande 77440 unique_id port 77440 terminate_cause User-Request 77440 bytes_out 0 77440 bytes_in 0 77440 station_ip 37.129.220.75 77440 port 15728949 77440 nas_port_type Virtual 77440 remote_ip 5.5.5.124 77445 username forozande 77445 unique_id port 77445 terminate_cause User-Request 77445 bytes_out 48125 77445 bytes_in 606078 77445 station_ip 37.129.220.75 77445 port 15728953 77445 nas_port_type Virtual 77445 remote_ip 5.5.5.124 77453 username forozande 77453 unique_id port 77453 terminate_cause User-Request 77453 bytes_out 15858 77453 bytes_in 56976 77453 station_ip 83.123.63.205 77453 port 15728966 77453 nas_port_type Virtual 77453 remote_ip 5.5.5.119 77454 username forozande 77454 unique_id port 77454 terminate_cause User-Request 77454 bytes_out 113806 77454 bytes_in 429648 77454 station_ip 83.123.63.205 77454 port 15728967 77454 nas_port_type Virtual 77454 remote_ip 5.5.5.119 77456 username mahdavi 77456 unique_id port 77456 terminate_cause User-Request 77456 bytes_out 711830 77456 bytes_in 14485626 77456 station_ip 83.122.199.77 77456 port 15728969 77456 nas_port_type Virtual 77456 remote_ip 5.5.5.118 77467 username ahmadi 77467 unique_id port 77467 terminate_cause User-Request 77467 bytes_out 63319 77467 bytes_in 312850 77467 station_ip 83.123.48.27 77467 port 15728982 77467 nas_port_type Virtual 77467 remote_ip 5.5.5.112 77471 username alinezhad 77471 unique_id port 77471 terminate_cause User-Request 77471 bytes_out 988393 77471 bytes_in 12287925 77471 station_ip 5.202.22.37 77471 port 15728981 77471 nas_port_type Virtual 77471 remote_ip 5.5.5.113 77473 username soleymani 77473 unique_id port 77473 terminate_cause Lost-Carrier 77473 bytes_out 147372 77473 bytes_in 492990 77473 station_ip 5.120.39.128 77473 port 15728984 77473 nas_port_type Virtual 77473 remote_ip 5.5.5.111 77475 username asadi 77475 unique_id port 77475 terminate_cause User-Request 77475 bytes_out 173173 77475 bytes_in 4982661 77475 station_ip 83.122.220.204 77475 port 15728990 77475 nas_port_type Virtual 77475 remote_ip 5.5.5.142 81217 station_ip 5.120.136.140 81217 port 15728799 81217 nas_port_type Virtual 81217 remote_ip 5.5.5.244 81229 username alinezhad 81229 unique_id port 81229 terminate_cause User-Request 81229 bytes_out 0 81229 bytes_in 0 77479 username mobina 77479 unique_id port 77479 terminate_cause Lost-Carrier 77479 bytes_out 818322 77479 bytes_in 8766129 77479 station_ip 5.123.173.38 77479 port 15728963 77479 nas_port_type Virtual 77479 remote_ip 5.5.5.120 77483 username asadi 77483 unique_id port 77483 terminate_cause User-Request 77483 bytes_out 186743 77483 bytes_in 5102845 77483 station_ip 83.122.220.204 77483 port 15728998 77483 nas_port_type Virtual 77483 remote_ip 5.5.5.142 77487 username alinezhad 77487 unique_id port 77487 terminate_cause User-Request 77487 bytes_out 0 77487 bytes_in 0 77487 station_ip 5.202.6.2 77487 port 15729002 77487 nas_port_type Virtual 77455 port 15728968 77455 nas_port_type Virtual 77455 remote_ip 5.5.5.118 77464 username forozande 77464 unique_id port 77464 terminate_cause User-Request 77464 bytes_out 46162 77464 bytes_in 685431 77464 station_ip 83.123.112.58 77464 port 15728976 77464 nas_port_type Virtual 77464 remote_ip 5.5.5.116 77465 username iranmanesh 77465 unique_id port 77465 terminate_cause User-Request 77465 bytes_out 47941 77465 bytes_in 287951 77465 station_ip 83.122.209.46 77465 port 15728979 77465 nas_port_type Virtual 77465 remote_ip 5.5.5.114 77466 username iranmanesh 77466 unique_id port 77466 terminate_cause User-Request 77466 bytes_out 64934 77466 bytes_in 812919 77466 station_ip 83.122.209.46 77466 port 15728980 77466 nas_port_type Virtual 77466 remote_ip 5.5.5.114 77469 username mahdavi 77469 unique_id port 77469 terminate_cause User-Request 77469 bytes_out 885988 77469 bytes_in 19356354 77469 station_ip 83.122.199.77 77469 port 15728985 77469 nas_port_type Virtual 77469 remote_ip 5.5.5.118 77478 username iranmanesh 77478 unique_id port 77478 terminate_cause User-Request 77478 bytes_out 29551 77478 bytes_in 100196 77478 station_ip 83.122.209.46 77478 port 15728992 77478 nas_port_type Virtual 77478 remote_ip 5.5.5.114 77482 username reza 77482 unique_id port 77482 terminate_cause User-Request 77482 bytes_out 118763 77482 bytes_in 2951315 77482 station_ip 37.129.98.82 77482 port 15728996 77482 nas_port_type Virtual 77482 remote_ip 5.5.5.106 77486 username asadi 77486 unique_id port 77486 terminate_cause User-Request 77486 bytes_out 11860 77486 bytes_in 63678 77486 station_ip 83.122.220.204 77486 port 15728999 77486 nas_port_type Virtual 77486 remote_ip 5.5.5.142 77489 username alinezhad 77489 unique_id port 77489 terminate_cause User-Request 77489 bytes_out 0 77489 bytes_in 0 77489 station_ip 83.123.182.189 77489 port 15729004 77489 nas_port_type Virtual 77489 remote_ip 5.5.5.102 77490 username reza 77490 unique_id port 77490 terminate_cause User-Request 77490 bytes_out 31806 77490 bytes_in 71466 77490 station_ip 37.129.98.82 77490 port 15729005 77490 nas_port_type Virtual 77490 remote_ip 5.5.5.106 77492 username soleymani 77492 unique_id port 77492 terminate_cause Lost-Carrier 77492 bytes_out 221354 77492 bytes_in 448738 77492 station_ip 5.119.66.216 77492 port 15729008 77492 nas_port_type Virtual 77492 remote_ip 5.5.5.101 77495 username shahnaz 77495 unique_id port 77495 terminate_cause User-Request 77495 bytes_out 780872 77495 bytes_in 6979113 77495 station_ip 5.119.180.181 77495 port 15729009 77495 nas_port_type Virtual 77495 remote_ip 5.5.5.100 77497 username alirezazamani 77497 unique_id port 77497 terminate_cause Lost-Carrier 77497 bytes_out 774887 77497 bytes_in 19883346 77497 station_ip 5.119.192.22 77497 port 15729011 77497 nas_port_type Virtual 77497 remote_ip 5.5.5.151 77500 username mahbobeh 77500 unique_id port 77500 terminate_cause Lost-Carrier 77500 bytes_out 120711 77500 bytes_in 1444835 77500 station_ip 37.129.96.106 77500 port 15729012 77500 nas_port_type Virtual 77500 remote_ip 5.5.5.134 77512 remote_ip 5.5.5.249 77515 username shahnaz 77515 unique_id port 77515 terminate_cause User-Request 77515 bytes_out 584337 77515 bytes_in 10623317 77515 station_ip 5.119.143.46 77515 port 15728647 77515 nas_port_type Virtual 77515 remote_ip 5.5.5.248 77517 username mobina 77517 unique_id port 77517 terminate_cause Lost-Carrier 77517 bytes_out 1025747 77517 bytes_in 11882391 77517 station_ip 5.124.139.219 77517 port 15728640 77517 nas_port_type Virtual 77517 remote_ip 5.5.5.255 77519 username forozande 77519 unique_id port 77519 terminate_cause User-Request 77519 bytes_out 44424 77458 station_ip 83.122.199.77 77458 port 15728971 77458 nas_port_type Virtual 77458 remote_ip 5.5.5.118 77460 username mahdavi 77460 unique_id port 77460 terminate_cause User-Request 77460 bytes_out 456526 77460 bytes_in 9677428 77460 station_ip 83.122.199.77 77460 port 15728973 77460 nas_port_type Virtual 77460 remote_ip 5.5.5.118 77462 username forozande 77462 unique_id port 77462 terminate_cause User-Request 77462 bytes_out 138815 77462 bytes_in 2860450 77462 station_ip 83.123.112.58 77462 port 15728974 77462 nas_port_type Virtual 77462 remote_ip 5.5.5.116 77468 username alinezhad 77468 unique_id port 77468 terminate_cause Lost-Carrier 77468 bytes_out 87835 77468 bytes_in 380728 77468 station_ip 5.202.22.91 77468 port 15728978 77468 nas_port_type Virtual 77468 remote_ip 5.5.5.115 77470 username forozande 77470 unique_id port 77470 terminate_cause User-Request 77470 bytes_out 91558 77470 bytes_in 1563177 77470 station_ip 37.129.110.215 77470 port 15728986 77470 nas_port_type Virtual 77470 remote_ip 5.5.5.110 77472 username alinezhad 77472 unique_id port 77472 terminate_cause User-Request 77472 bytes_out 0 77472 bytes_in 0 77472 station_ip 5.202.22.37 77472 port 15728987 77472 nas_port_type Virtual 77472 remote_ip 5.5.5.113 77474 username forozande 77474 unique_id port 77474 terminate_cause User-Request 77474 bytes_out 105475 77474 bytes_in 957013 77474 station_ip 37.129.46.127 77474 port 15728989 77474 nas_port_type Virtual 77474 remote_ip 5.5.5.109 77476 username dehghan 77476 unique_id port 77476 terminate_cause User-Request 77476 bytes_out 347162 77476 bytes_in 9757679 77476 station_ip 83.122.64.178 77476 port 15728991 77476 nas_port_type Virtual 77476 remote_ip 5.5.5.108 77481 username alinezhad 77481 unique_id port 77481 terminate_cause User-Request 77481 bytes_out 190008 77481 bytes_in 740255 77481 station_ip 5.202.22.37 77481 port 15728988 77481 nas_port_type Virtual 77481 remote_ip 5.5.5.113 77484 username aminvpn 77484 unique_id port 77484 terminate_cause Lost-Carrier 77484 bytes_out 276481 77484 bytes_in 1717384 77484 station_ip 5.233.69.67 77484 port 15728995 77484 nas_port_type Virtual 77484 remote_ip 5.5.5.227 77496 username mahbobeh 77496 unique_id port 77496 terminate_cause Lost-Carrier 77496 bytes_out 1960646 77496 bytes_in 35178644 77496 station_ip 37.129.96.106 77496 port 15729003 77496 nas_port_type Virtual 77496 remote_ip 5.5.5.134 77513 unique_id port 77513 terminate_cause User-Request 77513 bytes_out 91215 77513 bytes_in 234365 77513 station_ip 5.202.24.228 77513 port 15728648 77513 nas_port_type Virtual 77513 remote_ip 5.5.5.247 77516 username soleymani 77516 unique_id port 77516 terminate_cause Lost-Carrier 77516 bytes_out 201775 77516 bytes_in 946968 77516 station_ip 5.119.219.116 77516 port 15728645 77516 nas_port_type Virtual 77516 remote_ip 5.5.5.250 77518 username soleymani 77518 unique_id port 77518 terminate_cause Lost-Carrier 77518 bytes_out 14864 77518 bytes_in 135589 77518 station_ip 5.119.161.204 77518 port 15728650 77518 nas_port_type Virtual 77518 remote_ip 5.5.5.245 77521 username alinezhad 77521 unique_id port 77521 terminate_cause User-Request 77521 bytes_out 0 77521 bytes_in 0 77521 station_ip 5.202.24.228 77521 port 15728654 77521 nas_port_type Virtual 77521 remote_ip 5.5.5.247 77534 username forozande 77534 unique_id port 77534 terminate_cause User-Request 77534 bytes_out 41005 77534 bytes_in 172922 77534 station_ip 83.122.156.203 77534 port 15728671 77534 nas_port_type Virtual 77534 remote_ip 5.5.5.233 77536 username forozande 77536 unique_id port 77536 terminate_cause User-Request 77536 bytes_out 29319 77536 bytes_in 684345 77487 remote_ip 5.5.5.103 77491 username reza 77491 unique_id port 77491 terminate_cause User-Request 77491 bytes_out 0 77491 bytes_in 0 77491 station_ip 37.129.98.82 77491 port 15729007 77491 nas_port_type Virtual 77491 remote_ip 5.5.5.106 77494 username zoha 77494 unique_id port 77494 terminate_cause Lost-Carrier 77494 bytes_out 710832 77494 bytes_in 6815795 77494 station_ip 5.119.8.203 77494 port 15729006 77494 nas_port_type Virtual 77494 remote_ip 5.5.5.218 77514 username reza 77514 unique_id port 77514 terminate_cause User-Request 77514 bytes_out 36188 77514 bytes_in 498432 77514 station_ip 37.129.131.84 77514 port 15728649 77514 nas_port_type Virtual 77514 remote_ip 5.5.5.246 77520 username ahmadi 77520 unique_id port 77520 terminate_cause User-Request 77520 bytes_out 119227 77520 bytes_in 1051933 77520 station_ip 83.123.46.71 77520 port 15728653 77520 nas_port_type Virtual 77520 remote_ip 5.5.5.242 77522 username forozande 77522 unique_id port 77522 terminate_cause User-Request 77522 bytes_out 39189 77522 bytes_in 253819 77522 station_ip 83.122.29.49 77522 port 15728655 77522 nas_port_type Virtual 77522 remote_ip 5.5.5.241 77532 username alirezazamani 77532 unique_id port 77532 terminate_cause Lost-Carrier 77532 bytes_out 663557 77532 bytes_in 18676533 77532 station_ip 5.120.138.197 77532 port 15728661 77532 nas_port_type Virtual 77532 remote_ip 5.5.5.251 77535 username soleymani 77535 unique_id port 77535 terminate_cause Lost-Carrier 77535 bytes_out 189271 77535 bytes_in 599633 77535 station_ip 5.119.210.146 77535 port 15728664 77535 nas_port_type Virtual 77535 remote_ip 5.5.5.238 77539 username soleymani 77539 unique_id port 77539 terminate_cause Lost-Carrier 77539 bytes_out 175775 77539 bytes_in 702442 77539 station_ip 5.119.172.6 77539 port 15728668 77539 nas_port_type Virtual 77539 remote_ip 5.5.5.234 77548 username soleymani 77548 kill_reason Maximum number of concurrent logins reached 77548 unique_id port 77548 bytes_out 0 77548 bytes_in 0 77548 station_ip 5.119.93.133 77548 port 15728687 77548 nas_port_type Virtual 77550 username soleymani 77550 kill_reason Maximum number of concurrent logins reached 77550 unique_id port 77550 bytes_out 0 77550 bytes_in 0 77550 station_ip 5.119.93.133 77550 port 15728689 77550 nas_port_type Virtual 77552 username soleymani 77552 kill_reason Maximum number of concurrent logins reached 77552 unique_id port 77552 bytes_out 0 77552 bytes_in 0 77552 station_ip 5.119.93.133 77552 port 15728692 77552 nas_port_type Virtual 77554 username soleymani 77554 kill_reason Maximum number of concurrent logins reached 77554 unique_id port 77554 bytes_out 0 77554 bytes_in 0 77554 station_ip 5.119.93.133 77554 port 15728694 77554 nas_port_type Virtual 77556 username soleymani 77556 kill_reason Maximum number of concurrent logins reached 77556 unique_id port 77556 bytes_out 0 77556 bytes_in 0 77556 station_ip 5.119.93.133 77556 port 15728696 77556 nas_port_type Virtual 77560 username reza 77560 unique_id port 77560 terminate_cause User-Request 77560 bytes_out 22617 77560 bytes_in 495959 77560 station_ip 83.123.46.165 77560 port 15728690 77560 nas_port_type Virtual 77560 remote_ip 5.5.5.232 77562 username soleymani 77562 unique_id port 77562 terminate_cause Lost-Carrier 77562 bytes_out 105299 77562 bytes_in 1036460 77562 station_ip 5.119.121.152 77562 port 15728682 77562 nas_port_type Virtual 77562 remote_ip 5.5.5.229 77569 username hamideh 77569 unique_id port 77569 terminate_cause Lost-Carrier 77569 bytes_out 134031 77569 bytes_in 2755665 77569 station_ip 5.119.71.225 77569 port 15728704 77569 nas_port_type Virtual 77569 remote_ip 5.5.5.252 77570 username alinezhad 77570 unique_id port 77493 station_ip 83.123.182.189 77493 port 15729010 77493 nas_port_type Virtual 77493 remote_ip 5.5.5.102 77498 username amin.insta22 77498 unique_id port 77498 terminate_cause User-Request 77498 bytes_out 20573124 77498 bytes_in 382841839 77498 station_ip 5.233.79.240 77498 port 15728954 77498 nas_port_type Virtual 77498 remote_ip 5.5.5.122 77499 username soleymani 77499 unique_id port 77499 terminate_cause Lost-Carrier 77499 bytes_out 200263 77499 bytes_in 1457097 77499 station_ip 5.119.233.40 77499 port 15729016 77499 nas_port_type Virtual 77499 remote_ip 5.5.5.99 77519 bytes_in 140249 77519 station_ip 83.122.147.70 77519 port 15728651 77519 nas_port_type Virtual 77519 remote_ip 5.5.5.244 77523 username alirezazamani 77523 unique_id port 77523 terminate_cause Lost-Carrier 77523 bytes_out 237877 77523 bytes_in 4593062 77523 station_ip 5.120.138.197 77523 port 15728644 77523 nas_port_type Virtual 77523 remote_ip 5.5.5.251 77524 username soleymani 77524 unique_id port 77524 terminate_cause Lost-Carrier 77524 bytes_out 776681 77524 bytes_in 653142 77524 station_ip 5.120.116.238 77524 port 15728652 77524 nas_port_type Virtual 77524 remote_ip 5.5.5.243 77526 username abdilahyar 77526 unique_id port 77526 terminate_cause User-Request 77526 bytes_out 0 77526 bytes_in 0 77526 station_ip 5.119.79.181 77526 port 15728659 77526 nas_port_type Virtual 77526 remote_ip 5.5.5.239 77530 username iranmanesh 77530 unique_id port 77530 terminate_cause User-Request 77530 bytes_out 301367 77530 bytes_in 448939 77530 station_ip 83.122.185.62 77530 port 15728666 77530 nas_port_type Virtual 77530 remote_ip 5.5.5.236 77531 username alinezhad 77531 unique_id port 77531 terminate_cause User-Request 77531 bytes_out 0 77531 bytes_in 0 77531 station_ip 5.202.24.228 77531 port 15728669 77531 nas_port_type Virtual 77531 remote_ip 5.5.5.247 77537 username reza 77537 unique_id port 77537 terminate_cause User-Request 77537 bytes_out 36 77537 bytes_in 340 77537 station_ip 83.123.46.165 77537 port 15728673 77537 nas_port_type Virtual 77537 remote_ip 5.5.5.232 77545 username asadi 77545 unique_id port 77545 terminate_cause User-Request 77545 bytes_out 89182 77545 bytes_in 3200795 77545 station_ip 113.203.68.27 77545 port 15728683 77545 nas_port_type Virtual 77545 remote_ip 5.5.5.249 77547 username soleymani 77547 kill_reason Maximum number of concurrent logins reached 77547 unique_id port 77547 bytes_out 0 77547 bytes_in 0 77547 station_ip 5.119.93.133 77547 port 15728685 77547 nas_port_type Virtual 77549 username soleymani 77549 kill_reason Maximum number of concurrent logins reached 77549 unique_id port 77549 bytes_out 0 77549 bytes_in 0 77549 station_ip 5.119.93.133 77549 port 15728688 77549 nas_port_type Virtual 77553 username soleymani 77553 kill_reason Maximum number of concurrent logins reached 77553 unique_id port 77553 bytes_out 0 77553 bytes_in 0 77553 station_ip 5.119.93.133 77553 port 15728693 77553 nas_port_type Virtual 77555 username soleymani 77555 kill_reason Maximum number of concurrent logins reached 77555 unique_id port 77555 bytes_out 0 77555 bytes_in 0 77555 station_ip 5.119.93.133 77555 port 15728695 77555 nas_port_type Virtual 77557 username soleymani 77557 kill_reason Maximum number of concurrent logins reached 77557 unique_id port 77557 bytes_out 0 77557 bytes_in 0 77557 station_ip 5.119.93.133 77557 port 15728697 77557 nas_port_type Virtual 77558 username soleymani 77558 unique_id port 77558 terminate_cause Lost-Carrier 77558 bytes_out 122373 77558 bytes_in 328544 77558 station_ip 5.119.183.12 77558 port 15728678 77558 nas_port_type Virtual 77558 remote_ip 5.5.5.230 77561 username forozande 77561 unique_id port 77561 terminate_cause User-Request 77525 username forozande 77525 unique_id port 77525 terminate_cause User-Request 77525 bytes_out 51334 77525 bytes_in 587979 77525 station_ip 83.122.29.49 77525 port 15728657 77525 nas_port_type Virtual 77525 remote_ip 5.5.5.241 77527 username soleymani 77527 unique_id port 77527 terminate_cause User-Request 77527 bytes_out 0 77527 bytes_in 0 77527 station_ip 5.119.210.146 77527 port 15728663 77527 nas_port_type Virtual 77527 remote_ip 5.5.5.238 77528 username alinezhad 77528 unique_id port 77528 terminate_cause User-Request 77528 bytes_out 29554 77528 bytes_in 47858 77528 station_ip 5.202.24.228 77528 port 15728662 77528 nas_port_type Virtual 77528 remote_ip 5.5.5.247 77529 username soleymani 77529 unique_id port 77529 terminate_cause Lost-Carrier 77529 bytes_out 162246 77529 bytes_in 396174 77529 station_ip 5.120.78.246 77529 port 15728656 77529 nas_port_type Virtual 77529 remote_ip 5.5.5.240 77533 username asadi 77533 unique_id port 77533 terminate_cause User-Request 77533 bytes_out 43403 77533 bytes_in 261595 77533 station_ip 113.203.68.27 77533 port 15728670 77533 nas_port_type Virtual 77533 remote_ip 5.5.5.249 77540 username forozande 77540 unique_id port 77540 terminate_cause User-Request 77540 bytes_out 73722 77540 bytes_in 500393 77540 station_ip 83.122.156.203 77540 port 15728676 77540 nas_port_type Virtual 77540 remote_ip 5.5.5.233 77541 username forozande 77541 unique_id port 77541 terminate_cause User-Request 77541 bytes_out 29249 77541 bytes_in 430559 77541 station_ip 83.122.156.203 77541 port 15728677 77541 nas_port_type Virtual 77541 remote_ip 5.5.5.233 77543 username soleymani 77543 unique_id port 77543 terminate_cause Lost-Carrier 77543 bytes_out 91983 77543 bytes_in 290901 77543 station_ip 5.119.230.121 77543 port 15728675 77543 nas_port_type Virtual 77543 remote_ip 5.5.5.231 77546 username soleymani 77546 kill_reason Maximum number of concurrent logins reached 77546 unique_id port 77546 bytes_out 0 77546 bytes_in 0 77546 station_ip 5.119.93.133 77546 port 15728684 77546 nas_port_type Virtual 77551 username soleymani 77551 kill_reason Maximum number of concurrent logins reached 77551 unique_id port 77551 bytes_out 0 77551 bytes_in 0 77551 station_ip 5.119.93.133 77551 port 15728691 77551 nas_port_type Virtual 77563 username forozande 77563 unique_id port 77563 terminate_cause User-Request 77563 bytes_out 12291 77563 bytes_in 25910 77563 station_ip 83.122.160.151 77563 port 15728699 77563 nas_port_type Virtual 77563 remote_ip 5.5.5.228 77565 username alinezhad 77565 unique_id port 77565 terminate_cause User-Request 77565 bytes_out 0 77565 bytes_in 0 77565 station_ip 5.202.24.228 77565 port 15728702 77565 nas_port_type Virtual 77565 remote_ip 5.5.5.247 77575 username goli 77575 unique_id port 77575 terminate_cause User-Request 77575 bytes_out 154525 77575 bytes_in 1952732 77575 station_ip 83.123.209.13 77575 port 15728713 77575 nas_port_type Virtual 77575 remote_ip 5.5.5.219 77577 username soleymani 77577 unique_id port 77577 terminate_cause Lost-Carrier 77577 bytes_out 58247 77577 bytes_in 183502 77577 station_ip 5.119.135.138 77577 port 15728710 77577 nas_port_type Virtual 77577 remote_ip 5.5.5.222 77578 username iranmanesh 77578 unique_id port 77578 terminate_cause User-Request 77578 bytes_out 53836 77578 bytes_in 411176 77578 station_ip 83.122.185.62 77578 port 15728714 77578 nas_port_type Virtual 77578 remote_ip 5.5.5.236 77579 username reza 77579 unique_id port 77579 terminate_cause User-Request 77579 bytes_out 21499 77579 bytes_in 263855 77579 station_ip 83.122.213.182 77579 port 15728715 77579 nas_port_type Virtual 77579 remote_ip 5.5.5.218 77581 username hamideh 77536 station_ip 83.122.156.203 77536 port 15728672 77536 nas_port_type Virtual 77536 remote_ip 5.5.5.233 77538 username reza 77538 unique_id port 77538 terminate_cause User-Request 77538 bytes_out 10369 77538 bytes_in 112874 77538 station_ip 83.123.46.165 77538 port 15728674 77538 nas_port_type Virtual 77538 remote_ip 5.5.5.232 77542 username asadi 77542 unique_id port 77542 terminate_cause User-Request 77542 bytes_out 114990 77542 bytes_in 4340566 77542 station_ip 113.203.68.27 77542 port 15728679 77542 nas_port_type Virtual 77542 remote_ip 5.5.5.249 77544 username alirezazamani 77544 unique_id port 77544 terminate_cause Lost-Carrier 77544 bytes_out 444714 77544 bytes_in 8896804 77544 station_ip 5.120.138.197 77544 port 15728667 77544 nas_port_type Virtual 77544 remote_ip 5.5.5.235 77559 username ahmadi 77559 unique_id port 77559 terminate_cause User-Request 77559 bytes_out 206932 77559 bytes_in 3864841 77559 station_ip 83.123.46.71 77559 port 15728686 77559 nas_port_type Virtual 77559 remote_ip 5.5.5.242 77566 username hamideh 77566 unique_id port 77566 terminate_cause Lost-Carrier 77566 bytes_out 6520602 77566 bytes_in 136075594 77566 station_ip 5.119.71.225 77566 port 15728658 77566 nas_port_type Virtual 77566 remote_ip 5.5.5.252 77567 username soleymani 77567 unique_id port 77567 terminate_cause Lost-Carrier 77567 bytes_out 114938 77567 bytes_in 549815 77567 station_ip 5.120.154.67 77567 port 15728700 77567 nas_port_type Virtual 77567 remote_ip 5.5.5.227 77568 username alinezhad 77568 unique_id port 77568 terminate_cause User-Request 77568 bytes_out 22262 77568 bytes_in 76302 77568 station_ip 5.202.24.228 77568 port 15728703 77568 nas_port_type Virtual 77568 remote_ip 5.5.5.247 77572 username alinezhad 77572 unique_id port 77572 terminate_cause User-Request 77572 bytes_out 43213 77572 bytes_in 407165 77572 station_ip 5.202.24.228 77572 port 15728709 77572 nas_port_type Virtual 77572 remote_ip 5.5.5.247 77582 username alinezhad 77582 unique_id port 77582 terminate_cause User-Request 77582 bytes_out 0 77582 bytes_in 0 77582 station_ip 5.202.24.228 77582 port 15728719 77582 nas_port_type Virtual 77582 remote_ip 5.5.5.247 77583 username asadi 77583 unique_id port 77583 terminate_cause User-Request 77583 bytes_out 20357 77583 bytes_in 65226 77583 station_ip 113.203.68.27 77583 port 15728721 77583 nas_port_type Virtual 77583 remote_ip 5.5.5.249 77585 username asadi 77585 unique_id port 77585 terminate_cause User-Request 77585 bytes_out 31730 77585 bytes_in 109206 77585 station_ip 113.203.68.27 77585 port 15728722 77585 nas_port_type Virtual 77585 remote_ip 5.5.5.249 77587 username alirezazamani 77587 unique_id port 77587 terminate_cause Lost-Carrier 77587 bytes_out 138720 77587 bytes_in 861724 77587 station_ip 5.120.138.197 77587 port 15728718 77587 nas_port_type Virtual 77587 remote_ip 5.5.5.235 77589 username zoha 77589 kill_reason Wrong password 77589 unique_id port 77589 bytes_out 0 77589 bytes_in 0 77589 station_ip 5.120.148.168 77589 port 15728725 77589 nas_port_type Virtual 77593 username alinezhad 77593 unique_id port 77593 terminate_cause User-Request 77593 bytes_out 0 77593 bytes_in 0 77593 station_ip 5.202.24.228 77593 port 15728729 77593 nas_port_type Virtual 77593 remote_ip 5.5.5.247 77596 username forozande 77596 unique_id port 77596 terminate_cause User-Request 77596 bytes_out 19944 77596 bytes_in 62691 77596 station_ip 83.122.100.96 77596 port 15728733 77596 nas_port_type Virtual 77596 remote_ip 5.5.5.213 77601 username soleymani 77601 unique_id port 77601 terminate_cause Lost-Carrier 77601 bytes_out 131804 77601 bytes_in 298724 77601 station_ip 5.120.49.83 77561 bytes_out 150264 77561 bytes_in 616343 77561 station_ip 83.122.160.151 77561 port 15728698 77561 nas_port_type Virtual 77561 remote_ip 5.5.5.228 77564 username forozande 77564 unique_id port 77564 terminate_cause User-Request 77564 bytes_out 9065 77564 bytes_in 36042 77564 station_ip 83.122.30.78 77564 port 15728701 77564 nas_port_type Virtual 77564 remote_ip 5.5.5.226 77571 username forozande 77571 unique_id port 77571 terminate_cause User-Request 77571 bytes_out 59531 77571 bytes_in 217807 77571 station_ip 113.203.117.20 77571 port 15728707 77571 nas_port_type Virtual 77571 remote_ip 5.5.5.224 77576 username soleymani 77576 unique_id port 77576 terminate_cause Lost-Carrier 77576 bytes_out 336344 77576 bytes_in 677552 77576 station_ip 5.120.117.163 77576 port 15728708 77576 nas_port_type Virtual 77576 remote_ip 5.5.5.223 77586 username forozande 77586 unique_id port 77586 terminate_cause User-Request 77586 bytes_out 83274 77586 bytes_in 609861 77586 station_ip 83.122.48.242 77586 port 15728723 77586 nas_port_type Virtual 77586 remote_ip 5.5.5.215 77591 username zoha 77591 kill_reason Wrong password 77591 unique_id port 77591 bytes_out 0 77591 bytes_in 0 77591 station_ip 5.120.148.168 77591 port 15728727 77591 nas_port_type Virtual 77592 username forozande 77592 unique_id port 77592 terminate_cause User-Request 77592 bytes_out 20256 77592 bytes_in 97549 77592 station_ip 83.122.100.96 77592 port 15728726 77592 nas_port_type Virtual 77592 remote_ip 5.5.5.213 77594 username asadi 77594 unique_id port 77594 terminate_cause User-Request 77594 bytes_out 63979 77594 bytes_in 452216 77594 station_ip 113.203.68.27 77594 port 15728730 77594 nas_port_type Virtual 77594 remote_ip 5.5.5.249 77600 username forozande 77600 unique_id port 77600 terminate_cause User-Request 77600 bytes_out 154100 77600 bytes_in 159823 77600 station_ip 83.123.171.223 77600 port 15728736 77600 nas_port_type Virtual 77600 remote_ip 5.5.5.210 77612 username soleymani 77612 unique_id port 77612 terminate_cause Lost-Carrier 77612 bytes_out 68016 77612 bytes_in 274448 77612 station_ip 5.120.125.118 77612 port 15728746 77612 nas_port_type Virtual 77612 remote_ip 5.5.5.203 77616 username asadi 77616 unique_id port 77616 terminate_cause User-Request 77616 bytes_out 48570 77616 bytes_in 221646 77616 station_ip 113.203.79.206 77616 port 15728753 77616 nas_port_type Virtual 77616 remote_ip 5.5.5.197 77617 username soleymani 77617 unique_id port 77617 terminate_cause Lost-Carrier 77617 bytes_out 77710 77617 bytes_in 311746 77617 station_ip 5.120.191.66 77617 port 15728754 77617 nas_port_type Virtual 77617 remote_ip 5.5.5.196 77618 username pouria 77618 unique_id port 77618 terminate_cause Lost-Carrier 77618 bytes_out 2503717 77618 bytes_in 77339995 77618 station_ip 5.119.224.115 77618 port 15728752 77618 nas_port_type Virtual 77618 remote_ip 5.5.5.198 77629 username alirezazamani 77629 unique_id port 77629 terminate_cause Lost-Carrier 77629 bytes_out 281173 77629 bytes_in 5469076 77629 station_ip 5.120.138.197 77629 port 15728766 77629 nas_port_type Virtual 77629 remote_ip 5.5.5.190 77631 username ahmadipour 77631 unique_id port 77631 terminate_cause User-Request 77631 bytes_out 3162887 77631 bytes_in 74699872 77631 station_ip 37.129.138.78 77631 port 15728772 77631 nas_port_type Virtual 77631 remote_ip 5.5.5.189 77634 username alirezazamani 77634 unique_id port 77634 terminate_cause Lost-Carrier 77634 bytes_out 1174430 77634 bytes_in 27650976 77634 station_ip 5.120.138.197 77634 port 15728771 77634 nas_port_type Virtual 77634 remote_ip 5.5.5.190 77637 username mahbobeh 77637 unique_id port 77637 terminate_cause Lost-Carrier 77570 terminate_cause User-Request 77570 bytes_out 0 77570 bytes_in 0 77570 station_ip 5.202.24.228 77570 port 15728705 77570 nas_port_type Virtual 77570 remote_ip 5.5.5.247 77573 username soleymani 77573 unique_id port 77573 terminate_cause Lost-Carrier 77573 bytes_out 465945 77573 bytes_in 473556 77573 station_ip 5.119.208.164 77573 port 15728706 77573 nas_port_type Virtual 77573 remote_ip 5.5.5.225 77574 username ahmadi 77574 unique_id port 77574 terminate_cause User-Request 77574 bytes_out 0 77574 bytes_in 0 77574 station_ip 37.129.181.80 77574 port 15728712 77574 nas_port_type Virtual 77574 remote_ip 5.5.5.220 77580 username mahbobeh 77580 unique_id port 77580 terminate_cause Lost-Carrier 77580 bytes_out 672981 77580 bytes_in 7713207 77580 station_ip 37.129.116.118 77580 port 15728711 77580 nas_port_type Virtual 77580 remote_ip 5.5.5.221 77584 username soleymani 77584 unique_id port 77584 terminate_cause Lost-Carrier 77584 bytes_out 43326 77584 bytes_in 222902 77584 station_ip 5.120.115.7 77584 port 15728720 77584 nas_port_type Virtual 77584 remote_ip 5.5.5.216 77588 username hamideh 77588 unique_id port 77588 terminate_cause Lost-Carrier 77588 bytes_out 2019646 77588 bytes_in 42386704 77588 station_ip 5.119.48.95 77588 port 15728717 77588 nas_port_type Virtual 77588 remote_ip 5.5.5.217 77590 username soleymani 77590 unique_id port 77590 terminate_cause User-Request 77590 bytes_out 77398 77590 bytes_in 254202 77590 station_ip 5.119.93.68 77590 port 15728724 77590 nas_port_type Virtual 77590 remote_ip 5.5.5.214 77599 username zoha 77599 unique_id port 77599 terminate_cause Lost-Carrier 77599 bytes_out 680878 77599 bytes_in 4536569 77599 station_ip 5.120.148.168 77599 port 15728728 77599 nas_port_type Virtual 77599 remote_ip 5.5.5.212 77606 username forozande 77606 unique_id port 77606 terminate_cause User-Request 77606 bytes_out 15936 77606 bytes_in 36143 77606 station_ip 83.123.239.107 77606 port 15728743 77606 nas_port_type Virtual 77606 remote_ip 5.5.5.205 77608 username mobina 77608 unique_id port 77608 terminate_cause Lost-Carrier 77608 bytes_out 1760530 77608 bytes_in 15529162 77608 station_ip 5.123.95.4 77608 port 15728665 77608 nas_port_type Virtual 77608 remote_ip 5.5.5.237 77609 username ahmadi 77609 unique_id port 77609 terminate_cause User-Request 77609 bytes_out 40501 77609 bytes_in 371981 77609 station_ip 37.129.131.252 77609 port 15728744 77609 nas_port_type Virtual 77609 remote_ip 5.5.5.204 77613 username forozande 77613 unique_id port 77613 terminate_cause User-Request 77613 bytes_out 71116 77613 bytes_in 285556 77613 station_ip 37.129.147.152 77613 port 15728749 77613 nas_port_type Virtual 77613 remote_ip 5.5.5.200 77615 username soleymani 77615 unique_id port 77615 terminate_cause Lost-Carrier 77615 bytes_out 19204 77615 bytes_in 140550 77615 station_ip 5.120.146.32 77615 port 15728748 77615 nas_port_type Virtual 77615 remote_ip 5.5.5.201 77619 username madadi 77619 unique_id port 77619 terminate_cause Lost-Carrier 77619 bytes_out 422689 77619 bytes_in 2466821 77619 station_ip 5.120.56.196 77619 port 15728747 77619 nas_port_type Virtual 77619 remote_ip 5.5.5.202 77621 username forozande 77621 unique_id port 77621 terminate_cause User-Request 77621 bytes_out 66298 77621 bytes_in 733621 77621 station_ip 37.129.99.83 77621 port 15728760 77621 nas_port_type Virtual 77621 remote_ip 5.5.5.195 77622 username mahbobeh 77622 unique_id port 77622 terminate_cause Lost-Carrier 77622 bytes_out 1120948 77622 bytes_in 1180424 77622 station_ip 83.122.69.0 77622 port 15728751 77622 nas_port_type Virtual 77622 remote_ip 5.5.5.199 77626 username alirezazamani 77581 unique_id port 77581 terminate_cause Lost-Carrier 77581 bytes_out 341471 77581 bytes_in 7163021 77581 station_ip 5.119.71.225 77581 port 15728716 77581 nas_port_type Virtual 77581 remote_ip 5.5.5.252 77595 username soleymani 77595 unique_id port 77595 terminate_cause User-Request 77595 bytes_out 0 77595 bytes_in 0 77595 station_ip 5.119.93.68 77595 port 15728731 77595 nas_port_type Virtual 77595 remote_ip 5.5.5.214 77597 username soleymani 77597 unique_id port 77597 terminate_cause Lost-Carrier 77597 bytes_out 85295 77597 bytes_in 291478 77597 station_ip 5.119.93.68 77597 port 15728732 77597 nas_port_type Virtual 77597 remote_ip 5.5.5.214 77598 username alinezhad 77598 unique_id port 77598 terminate_cause User-Request 77598 bytes_out 14500 77598 bytes_in 29465 77598 station_ip 5.202.24.228 77598 port 15728735 77598 nas_port_type Virtual 77598 remote_ip 5.5.5.247 77602 username alinezhad 77602 unique_id port 77602 terminate_cause User-Request 77602 bytes_out 0 77602 bytes_in 0 77602 station_ip 5.202.24.228 77602 port 15728738 77602 nas_port_type Virtual 77602 remote_ip 5.5.5.247 77604 username ahmadipour 77604 unique_id port 77604 terminate_cause Lost-Carrier 77604 bytes_out 112018 77604 bytes_in 1337913 77604 station_ip 37.129.140.186 77604 port 15728740 77604 nas_port_type Virtual 77604 remote_ip 5.5.5.207 77607 username soleymani 77607 unique_id port 77607 terminate_cause Lost-Carrier 77607 bytes_out 65890 77607 bytes_in 339719 77607 station_ip 5.119.185.36 77607 port 15728737 77607 nas_port_type Virtual 77607 remote_ip 5.5.5.209 77610 username madadi 77610 unique_id port 77610 terminate_cause Lost-Carrier 77610 bytes_out 128191 77610 bytes_in 500246 77610 station_ip 5.119.71.45 77610 port 15728742 77610 nas_port_type Virtual 77610 remote_ip 5.5.5.206 77611 username reza 77611 unique_id port 77611 terminate_cause User-Request 77611 bytes_out 27636 77611 bytes_in 298119 77611 station_ip 83.122.213.182 77611 port 15728745 77611 nas_port_type Virtual 77611 remote_ip 5.5.5.218 77614 username forozande 77614 unique_id port 77614 terminate_cause User-Request 77614 bytes_out 96239 77614 bytes_in 1557313 77614 station_ip 37.129.147.152 77614 port 15728750 77614 nas_port_type Virtual 77614 remote_ip 5.5.5.200 77624 username soleymani 77624 unique_id port 77624 terminate_cause Lost-Carrier 77624 bytes_out 460249 77624 bytes_in 633450 77624 station_ip 5.119.214.69 77624 port 15728762 77624 nas_port_type Virtual 77624 remote_ip 5.5.5.193 77625 username ahmad 77625 unique_id port 77625 terminate_cause User-Request 77625 bytes_out 466123 77625 bytes_in 3854329 77625 station_ip 86.57.121.225 77625 port 15728761 77625 nas_port_type Virtual 77625 remote_ip 5.5.5.194 77636 username forozande 77636 unique_id port 77636 terminate_cause User-Request 77636 bytes_out 71546 77636 bytes_in 281327 77636 station_ip 83.122.136.189 77636 port 15728778 77636 nas_port_type Virtual 77636 remote_ip 5.5.5.183 77642 username forozande 77642 unique_id port 77642 terminate_cause User-Request 77642 bytes_out 47622 77642 bytes_in 593255 77642 station_ip 83.123.222.200 77642 port 15728782 77642 nas_port_type Virtual 77642 remote_ip 5.5.5.180 77649 username soleymani 77649 unique_id port 77649 terminate_cause Lost-Carrier 77649 bytes_out 122713 77649 bytes_in 352058 77649 station_ip 5.119.131.79 77649 port 15728786 77649 nas_port_type Virtual 77649 remote_ip 5.5.5.176 77656 username mahdavi 77656 unique_id port 77656 terminate_cause User-Request 77656 bytes_out 512337 77656 bytes_in 4820754 77656 station_ip 113.203.21.103 77656 port 15728795 77656 nas_port_type Virtual 77656 remote_ip 5.5.5.170 77601 port 15728734 77601 nas_port_type Virtual 77601 remote_ip 5.5.5.211 77603 username forozande 77603 unique_id port 77603 terminate_cause User-Request 77603 bytes_out 22807 77603 bytes_in 69943 77603 station_ip 83.122.165.46 77603 port 15728739 77603 nas_port_type Virtual 77603 remote_ip 5.5.5.208 77605 username madadi 77605 unique_id port 77605 terminate_cause User-Request 77605 bytes_out 76695 77605 bytes_in 359544 77605 station_ip 5.119.71.45 77605 port 15728741 77605 nas_port_type Virtual 77605 remote_ip 5.5.5.206 77620 username alinezhad 77620 unique_id port 77620 terminate_cause User-Request 77620 bytes_out 26471 77620 bytes_in 215150 77620 station_ip 5.202.24.228 77620 port 15728755 77620 nas_port_type Virtual 77620 remote_ip 5.5.5.247 77623 username ahmadi 77623 unique_id port 77623 terminate_cause Lost-Carrier 77623 bytes_out 45843 77623 bytes_in 395262 77623 station_ip 37.129.131.252 77623 port 15728764 77623 nas_port_type Virtual 77623 remote_ip 5.5.5.204 77627 username alirezazamani 77627 unique_id port 77627 terminate_cause Lost-Carrier 77627 bytes_out 988468 77627 bytes_in 25519665 77627 station_ip 5.120.138.197 77627 port 15728759 77627 nas_port_type Virtual 77627 remote_ip 5.5.5.235 77630 username alirezazamani 77630 unique_id port 77630 terminate_cause Lost-Carrier 77630 bytes_out 255005 77630 bytes_in 4802827 77630 station_ip 5.120.138.197 77630 port 15728768 77630 nas_port_type Virtual 77630 remote_ip 5.5.5.251 77632 username soleymani 77632 unique_id port 77632 terminate_cause Lost-Carrier 77632 bytes_out 132722 77632 bytes_in 883700 77632 station_ip 5.119.1.39 77632 port 15728773 77632 nas_port_type Virtual 77632 remote_ip 5.5.5.188 77635 username madadi 77635 unique_id port 77635 terminate_cause Lost-Carrier 77635 bytes_out 118095 77635 bytes_in 812095 77635 station_ip 5.119.207.9 77635 port 15728775 77635 nas_port_type Virtual 77635 remote_ip 5.5.5.186 77643 username reza2742 77643 unique_id port 77643 terminate_cause User-Request 77643 bytes_out 240471 77643 bytes_in 2842682 77643 station_ip 83.122.171.137 77643 port 15728783 77643 nas_port_type Virtual 77643 remote_ip 5.5.5.179 77650 username forozande 77650 unique_id port 77650 terminate_cause User-Request 77650 bytes_out 91411 77650 bytes_in 462900 77650 station_ip 37.129.83.203 77650 port 15728790 77650 nas_port_type Virtual 77650 remote_ip 5.5.5.173 77651 username madadi 77651 unique_id port 77651 terminate_cause Lost-Carrier 77651 bytes_out 1276718 77651 bytes_in 14001428 77651 station_ip 5.119.65.51 77651 port 15728780 77651 nas_port_type Virtual 77651 remote_ip 5.5.5.181 77652 username mahbobeh 77652 unique_id port 77652 terminate_cause Lost-Carrier 77652 bytes_out 883045 77652 bytes_in 9357152 77652 station_ip 83.123.253.226 77652 port 15728791 77652 nas_port_type Virtual 77652 remote_ip 5.5.5.191 77655 username soleymani 77655 unique_id port 77655 terminate_cause Lost-Carrier 77655 bytes_out 45975 77655 bytes_in 160100 77655 station_ip 5.120.186.166 77655 port 15728794 77655 nas_port_type Virtual 77655 remote_ip 5.5.5.171 77658 username forozande 77658 unique_id port 77658 terminate_cause User-Request 77658 bytes_out 11903 77658 bytes_in 53440 77658 station_ip 83.122.179.222 77658 port 15728800 77658 nas_port_type Virtual 77658 remote_ip 5.5.5.166 77659 username ahmadi 77659 unique_id port 77659 terminate_cause User-Request 77659 bytes_out 115613 77659 bytes_in 1476474 77659 station_ip 83.122.74.159 77659 port 15728799 77659 nas_port_type Virtual 77659 remote_ip 5.5.5.167 77662 username alinezhad 77662 unique_id port 77662 terminate_cause User-Request 77662 bytes_out 0 77662 bytes_in 0 77626 unique_id port 77626 terminate_cause User-Request 77626 bytes_out 74974 77626 bytes_in 789700 77626 station_ip 5.120.138.197 77626 port 15728767 77626 nas_port_type Virtual 77626 remote_ip 5.5.5.251 77628 username alinezhad 77628 unique_id port 77628 terminate_cause User-Request 77628 bytes_out 0 77628 bytes_in 0 77628 station_ip 5.202.24.228 77628 port 15728769 77628 nas_port_type Virtual 77628 remote_ip 5.5.5.247 77633 username soleymani 77633 unique_id port 77633 terminate_cause Lost-Carrier 77633 bytes_out 136988 77633 bytes_in 699204 77633 station_ip 5.120.27.103 77633 port 15728774 77633 nas_port_type Virtual 77633 remote_ip 5.5.5.187 77638 username zoha 77638 unique_id port 77638 terminate_cause Lost-Carrier 77638 bytes_out 4491289 77638 bytes_in 60804792 77638 station_ip 5.120.148.168 77638 port 15728770 77638 nas_port_type Virtual 77638 remote_ip 5.5.5.212 77639 username mobina 77639 unique_id port 77639 terminate_cause Lost-Carrier 77639 bytes_out 753919 77639 bytes_in 11338555 77639 station_ip 5.124.141.113 77639 port 15728777 77639 nas_port_type Virtual 77639 remote_ip 5.5.5.184 77641 username alirezazamani 77641 unique_id port 77641 terminate_cause Lost-Carrier 77641 bytes_out 1058157 77641 bytes_in 30716630 77641 station_ip 5.120.138.197 77641 port 15728776 77641 nas_port_type Virtual 77641 remote_ip 5.5.5.185 77644 username rashidi 77644 unique_id port 77644 terminate_cause Lost-Carrier 77644 bytes_out 8150305 77644 bytes_in 64912882 77644 station_ip 5.120.7.249 77644 port 15728763 77644 nas_port_type Virtual 77644 remote_ip 5.5.5.192 77645 username aminvpn 77645 unique_id port 77645 terminate_cause Lost-Carrier 77645 bytes_out 3246307 77645 bytes_in 2695700 77645 station_ip 5.233.62.67 77645 port 15728779 77645 nas_port_type Virtual 77645 remote_ip 5.5.5.182 77646 username soleymani 77646 unique_id port 77646 terminate_cause Lost-Carrier 77646 bytes_out 64067 77646 bytes_in 381772 77646 station_ip 5.120.166.19 77646 port 15728784 77646 nas_port_type Virtual 77646 remote_ip 5.5.5.178 77648 username reza2742 77648 unique_id port 77648 terminate_cause User-Request 77648 bytes_out 80930 77648 bytes_in 63717 77648 station_ip 83.123.61.5 77648 port 15728789 77648 nas_port_type Virtual 77648 remote_ip 5.5.5.174 77653 username soleymani 77653 unique_id port 77653 terminate_cause Lost-Carrier 77653 bytes_out 154553 77653 bytes_in 367848 77653 station_ip 5.120.151.231 77653 port 15728792 77653 nas_port_type Virtual 77653 remote_ip 5.5.5.172 77660 username soleymani 77660 unique_id port 77660 terminate_cause Lost-Carrier 77660 bytes_out 72406 77660 bytes_in 768402 77660 station_ip 5.120.26.92 77660 port 15728798 77660 nas_port_type Virtual 77660 remote_ip 5.5.5.168 77664 username zoha 77664 unique_id port 77664 terminate_cause Lost-Carrier 77664 bytes_out 342624 77664 bytes_in 1917848 77664 station_ip 5.120.148.168 77664 port 15728803 77664 nas_port_type Virtual 77664 remote_ip 5.5.5.212 77665 username mobina 77665 unique_id port 77665 terminate_cause Lost-Carrier 77665 bytes_out 136070 77665 bytes_in 546427 77665 station_ip 5.123.4.148 77665 port 15728802 77665 nas_port_type Virtual 77665 remote_ip 5.5.5.165 77668 username madadi 77668 unique_id port 77668 terminate_cause Lost-Carrier 77668 bytes_out 15204 77668 bytes_in 141525 77668 station_ip 5.119.101.82 77668 port 15728806 77668 nas_port_type Virtual 77668 remote_ip 5.5.5.162 77675 username madadi 77675 unique_id port 77675 terminate_cause Lost-Carrier 77675 bytes_out 16428 77675 bytes_in 141006 77675 station_ip 5.119.201.252 77675 port 15728814 77675 nas_port_type Virtual 77675 remote_ip 5.5.5.159 77637 bytes_out 350122 77637 bytes_in 1227198 77637 station_ip 83.123.253.226 77637 port 15728765 77637 nas_port_type Virtual 77637 remote_ip 5.5.5.191 77640 username forozande 77640 unique_id port 77640 terminate_cause User-Request 77640 bytes_out 0 77640 bytes_in 0 77640 station_ip 83.123.222.200 77640 port 15728781 77640 nas_port_type Virtual 77640 remote_ip 5.5.5.180 77647 username iranmanesh 77647 unique_id port 77647 terminate_cause User-Request 77647 bytes_out 56935 77647 bytes_in 318895 77647 station_ip 83.122.185.62 77647 port 15728788 77647 nas_port_type Virtual 77647 remote_ip 5.5.5.236 77654 username mahdi 77654 unique_id port 77654 terminate_cause Lost-Carrier 77654 bytes_out 2772418 77654 bytes_in 36986632 77654 station_ip 5.120.26.8 77654 port 15728787 77654 nas_port_type Virtual 77654 remote_ip 5.5.5.175 77657 username alinezhad 77657 unique_id port 77657 terminate_cause User-Request 77657 bytes_out 0 77657 bytes_in 0 77657 station_ip 83.122.121.126 77657 port 15728796 77657 nas_port_type Virtual 77657 remote_ip 5.5.5.169 77666 username mahdi 77666 unique_id port 77666 terminate_cause Lost-Carrier 77666 bytes_out 1497564 77666 bytes_in 37908407 77666 station_ip 5.120.26.8 77666 port 15728797 77666 nas_port_type Virtual 77666 remote_ip 5.5.5.175 77667 username arabpour 77667 unique_id port 77667 terminate_cause User-Request 77667 bytes_out 284695 77667 bytes_in 6737935 77667 station_ip 37.129.194.165 77667 port 15728809 77667 nas_port_type Virtual 77667 remote_ip 5.5.5.160 77669 username alirezazamani 77669 unique_id port 77669 terminate_cause Lost-Carrier 77669 bytes_out 117721 77669 bytes_in 1957179 77669 station_ip 5.120.138.197 77669 port 15728807 77669 nas_port_type Virtual 77669 remote_ip 5.5.5.185 77671 username alinezhad 77671 unique_id port 77671 terminate_cause User-Request 77671 bytes_out 0 77671 bytes_in 0 77671 station_ip 113.203.37.18 77671 port 15728812 77671 nas_port_type Virtual 77671 remote_ip 5.5.5.158 77673 username madadi 77673 unique_id port 77673 terminate_cause User-Request 77673 bytes_out 185226 77673 bytes_in 868803 77673 station_ip 5.119.201.252 77673 port 15728813 77673 nas_port_type Virtual 77673 remote_ip 5.5.5.159 77680 username zoha 77680 unique_id port 77680 terminate_cause User-Request 77680 bytes_out 117723 77680 bytes_in 452243 77680 station_ip 5.120.148.168 77680 port 15728825 77680 nas_port_type Virtual 77680 remote_ip 5.5.5.212 77681 username soleymani 77681 unique_id port 77681 terminate_cause Lost-Carrier 77681 bytes_out 145792 77681 bytes_in 1108248 77681 station_ip 5.119.228.9 77681 port 15728821 77681 nas_port_type Virtual 77681 remote_ip 5.5.5.152 77683 username madadi 77683 unique_id port 77683 terminate_cause User-Request 77683 bytes_out 93619 77683 bytes_in 334062 77683 station_ip 5.120.180.157 77683 port 15728826 77683 nas_port_type Virtual 77683 remote_ip 5.5.5.149 77685 username soleymani 77685 unique_id port 77685 terminate_cause Lost-Carrier 77685 bytes_out 125490 77685 bytes_in 610580 77685 station_ip 5.119.206.241 77685 port 15728824 77685 nas_port_type Virtual 77685 remote_ip 5.5.5.150 77687 username soleymani 77687 unique_id port 77687 terminate_cause Lost-Carrier 77687 bytes_out 75602 77687 bytes_in 590619 77687 station_ip 5.120.54.211 77687 port 15728829 77687 nas_port_type Virtual 77687 remote_ip 5.5.5.147 77694 username iranmanesh 77694 unique_id port 77694 terminate_cause User-Request 77694 bytes_out 37299 77694 bytes_in 138377 77694 station_ip 83.122.185.62 77694 port 15728836 77694 nas_port_type Virtual 77694 remote_ip 5.5.5.236 77696 username alinezhad 77696 unique_id port 77661 username aminvpn 77661 unique_id port 77661 terminate_cause User-Request 77661 bytes_out 2826405 77661 bytes_in 100493451 77661 station_ip 5.233.62.67 77661 port 15728785 77661 nas_port_type Virtual 77661 remote_ip 5.5.5.177 77672 username alirezazamani 77672 unique_id port 77672 terminate_cause Lost-Carrier 77672 bytes_out 92134 77672 bytes_in 265206 77672 station_ip 5.120.138.197 77672 port 15728811 77672 nas_port_type Virtual 77672 remote_ip 5.5.5.185 77674 username alinezhad 77674 unique_id port 77674 terminate_cause User-Request 77674 bytes_out 0 77674 bytes_in 0 77674 station_ip 37.129.228.128 77674 port 15728816 77674 nas_port_type Virtual 77674 remote_ip 5.5.5.156 77677 username madadi 77677 unique_id port 77677 terminate_cause Lost-Carrier 77677 bytes_out 19558 77677 bytes_in 139298 77677 station_ip 5.119.253.40 77677 port 15728817 77677 nas_port_type Virtual 77677 remote_ip 5.5.5.155 77689 username ahmadipour 77689 unique_id port 77689 terminate_cause Lost-Carrier 77689 bytes_out 321172 77689 bytes_in 7335021 77689 station_ip 37.129.184.66 77689 port 15728832 77689 nas_port_type Virtual 77689 remote_ip 5.5.5.146 77691 username alinezhad 77691 unique_id port 77691 terminate_cause User-Request 77691 bytes_out 0 77691 bytes_in 0 77691 station_ip 83.123.25.79 77691 port 15728834 77691 nas_port_type Virtual 77691 remote_ip 5.5.5.145 77693 username mahbobeh 77693 unique_id port 77693 terminate_cause Lost-Carrier 77693 bytes_out 460279 77693 bytes_in 4813373 77693 station_ip 83.123.253.226 77693 port 15728822 77693 nas_port_type Virtual 77693 remote_ip 5.5.5.191 77698 username asadi 77698 unique_id port 77698 terminate_cause User-Request 77698 bytes_out 8542 77698 bytes_in 21973 77698 station_ip 37.129.96.10 77698 port 15728839 77698 nas_port_type Virtual 77698 remote_ip 5.5.5.148 77703 username asadi 77703 unique_id port 77703 terminate_cause User-Request 77703 bytes_out 9952 77703 bytes_in 19753 77703 station_ip 37.129.96.10 77703 port 15728846 77703 nas_port_type Virtual 77703 remote_ip 5.5.5.148 77707 username madadi 77707 unique_id port 77707 terminate_cause User-Request 77707 bytes_out 173149 77707 bytes_in 1324501 77707 station_ip 5.119.84.170 77707 port 15728843 77707 nas_port_type Virtual 77707 remote_ip 5.5.5.140 77713 username forozande 77713 unique_id port 77713 terminate_cause User-Request 77713 bytes_out 21396 77713 bytes_in 37754 77713 station_ip 83.122.93.89 77713 port 15728858 77713 nas_port_type Virtual 77713 remote_ip 5.5.5.136 77715 username soleymani 77715 unique_id port 77715 terminate_cause Lost-Carrier 77715 bytes_out 53952 77715 bytes_in 207480 77715 station_ip 5.119.87.203 77715 port 15728859 77715 nas_port_type Virtual 77715 remote_ip 5.5.5.135 77724 username madadi 77724 unique_id port 77724 terminate_cause Lost-Carrier 77724 bytes_out 45742 77724 bytes_in 178289 77724 station_ip 5.119.4.90 77724 port 15728871 77724 nas_port_type Virtual 77724 remote_ip 5.5.5.131 77726 username amin.insta22 77726 unique_id port 77726 terminate_cause User-Request 77726 bytes_out 8466471 77726 bytes_in 11506794 77726 station_ip 31.59.37.27 77726 port 15728842 77726 nas_port_type Virtual 77726 remote_ip 5.5.5.141 77728 username alirezazamani 77728 unique_id port 77728 terminate_cause Lost-Carrier 77728 bytes_out 281804 77728 bytes_in 3630456 77728 station_ip 5.119.176.2 77728 port 15728873 77728 nas_port_type Virtual 77728 remote_ip 5.5.5.153 77730 username alinezhad 77730 unique_id port 77730 terminate_cause User-Request 77730 bytes_out 17572 77730 bytes_in 36492 77730 station_ip 37.129.192.168 77730 port 15728880 77730 nas_port_type Virtual 77662 station_ip 37.129.12.85 77662 port 15728804 77662 nas_port_type Virtual 77662 remote_ip 5.5.5.164 77663 username alinezhad 77663 unique_id port 77663 terminate_cause User-Request 77663 bytes_out 0 77663 bytes_in 0 77663 station_ip 83.123.239.211 77663 port 15728805 77663 nas_port_type Virtual 77663 remote_ip 5.5.5.163 77670 username madadi 77670 unique_id port 77670 terminate_cause User-Request 77670 bytes_out 445236 77670 bytes_in 4638413 77670 station_ip 5.119.201.252 77670 port 15728810 77670 nas_port_type Virtual 77670 remote_ip 5.5.5.159 77676 username soleymani 77676 unique_id port 77676 terminate_cause Lost-Carrier 77676 bytes_out 67501 77676 bytes_in 226889 77676 station_ip 5.120.92.8 77676 port 15728815 77676 nas_port_type Virtual 77676 remote_ip 5.5.5.157 77679 username alinezhad 77679 unique_id port 77679 terminate_cause User-Request 77679 bytes_out 0 77679 bytes_in 0 77679 station_ip 37.129.2.84 77679 port 15728823 77679 nas_port_type Virtual 77679 remote_ip 5.5.5.151 77682 username asadi 77682 unique_id port 77682 terminate_cause User-Request 77682 bytes_out 165448 77682 bytes_in 2114848 77682 station_ip 37.129.96.10 77682 port 15728828 77682 nas_port_type Virtual 77682 remote_ip 5.5.5.148 77690 username asadi 77690 unique_id port 77690 terminate_cause User-Request 77690 bytes_out 15768 77690 bytes_in 39323 77690 station_ip 37.129.96.10 77690 port 15728833 77690 nas_port_type Virtual 77690 remote_ip 5.5.5.148 77695 username asadi 77695 unique_id port 77695 terminate_cause User-Request 77695 bytes_out 84939 77695 bytes_in 1015793 77695 station_ip 37.129.96.10 77695 port 15728837 77695 nas_port_type Virtual 77695 remote_ip 5.5.5.148 77697 username soleymani 77697 unique_id port 77697 terminate_cause Lost-Carrier 77697 bytes_out 70190 77697 bytes_in 228798 77697 station_ip 5.119.228.124 77697 port 15728835 77697 nas_port_type Virtual 77697 remote_ip 5.5.5.144 77702 username asadi 77702 unique_id port 77702 terminate_cause User-Request 77702 bytes_out 34722 77702 bytes_in 384943 77702 station_ip 37.129.96.10 77702 port 15728845 77702 nas_port_type Virtual 77702 remote_ip 5.5.5.148 77717 username forozande 77717 unique_id port 77717 terminate_cause User-Request 77717 bytes_out 22536 77717 bytes_in 48504 77717 station_ip 83.122.93.89 77717 port 15728866 77717 nas_port_type Virtual 77717 remote_ip 5.5.5.136 77719 username mahbobeh 77719 unique_id port 77719 terminate_cause Lost-Carrier 77719 bytes_out 302352 77719 bytes_in 4288588 77719 station_ip 83.123.253.226 77719 port 15728853 77719 nas_port_type Virtual 77719 remote_ip 5.5.5.191 77723 username mahbobeh 77723 unique_id port 77723 terminate_cause Lost-Carrier 77723 bytes_out 18766 77723 bytes_in 341171 77723 station_ip 83.123.253.226 77723 port 15728869 77723 nas_port_type Virtual 77723 remote_ip 5.5.5.191 77729 username soleymani 77729 unique_id port 77729 terminate_cause Lost-Carrier 77729 bytes_out 208 77729 bytes_in 60166 77729 station_ip 5.119.250.112 77729 port 15728877 77729 nas_port_type Virtual 77729 remote_ip 5.5.5.127 77731 username soleymani 77731 unique_id port 77731 terminate_cause Lost-Carrier 77731 bytes_out 99410 77731 bytes_in 447228 77731 station_ip 5.119.222.18 77731 port 15728878 77731 nas_port_type Virtual 77731 remote_ip 5.5.5.126 77750 username soleymani 77750 unique_id port 77750 terminate_cause Lost-Carrier 77750 bytes_out 47564 77750 bytes_in 225143 77750 station_ip 5.120.89.190 77750 port 15728899 77750 nas_port_type Virtual 77750 remote_ip 5.5.5.121 77752 username soleymani 77752 unique_id port 77752 terminate_cause User-Request 77752 bytes_out 0 77752 bytes_in 0 77678 username madadi 77678 unique_id port 77678 terminate_cause Lost-Carrier 77678 bytes_out 85660 77678 bytes_in 692582 77678 station_ip 5.119.253.40 77678 port 15728819 77678 nas_port_type Virtual 77678 remote_ip 5.5.5.154 77684 username zoha 77684 unique_id port 77684 terminate_cause Lost-Carrier 77684 bytes_out 28178 77684 bytes_in 294132 77684 station_ip 5.120.148.168 77684 port 15728827 77684 nas_port_type Virtual 77684 remote_ip 5.5.5.212 77686 username asadi 77686 unique_id port 77686 terminate_cause User-Request 77686 bytes_out 170408 77686 bytes_in 2713935 77686 station_ip 37.129.96.10 77686 port 15728830 77686 nas_port_type Virtual 77686 remote_ip 5.5.5.148 77688 username asadi 77688 unique_id port 77688 terminate_cause User-Request 77688 bytes_out 120004 77688 bytes_in 1677682 77688 station_ip 37.129.96.10 77688 port 15728831 77688 nas_port_type Virtual 77688 remote_ip 5.5.5.148 77692 username alirezazamani 77692 unique_id port 77692 terminate_cause Lost-Carrier 77692 bytes_out 874112 77692 bytes_in 15432872 77692 station_ip 5.119.176.2 77692 port 15728820 77692 nas_port_type Virtual 77692 remote_ip 5.5.5.153 77699 username asadi 77699 unique_id port 77699 terminate_cause User-Request 77699 bytes_out 26902 77699 bytes_in 80651 77699 station_ip 37.129.96.10 77699 port 15728841 77699 nas_port_type Virtual 77699 remote_ip 5.5.5.148 77700 username mobina 77700 unique_id port 77700 terminate_cause Lost-Carrier 77700 bytes_out 12179229 77700 bytes_in 344434330 77700 station_ip 5.124.74.181 77700 port 15728808 77700 nas_port_type Virtual 77700 remote_ip 5.5.5.161 77705 username majid 77705 unique_id port 77705 terminate_cause User-Request 77705 bytes_out 32539 77705 bytes_in 87098 77705 station_ip 83.122.98.63 77705 port 15728848 77705 nas_port_type Virtual 77705 remote_ip 5.5.5.138 77706 username majid 77706 unique_id port 77706 terminate_cause User-Request 77706 bytes_out 0 77706 bytes_in 0 77706 station_ip 83.122.98.63 77706 port 15728849 77706 nas_port_type Virtual 77706 remote_ip 5.5.5.138 77711 username asadi 77711 unique_id port 77711 terminate_cause User-Request 77711 bytes_out 45036 77711 bytes_in 259760 77711 station_ip 37.129.96.10 77711 port 15728854 77711 nas_port_type Virtual 77711 remote_ip 5.5.5.148 77712 username rashidi 77712 unique_id port 77712 terminate_cause Lost-Carrier 77712 bytes_out 13573562 77712 bytes_in 23121049 77712 station_ip 5.120.7.249 77712 port 15728818 77712 nas_port_type Virtual 77712 remote_ip 5.5.5.192 77718 username soleymani 77718 unique_id port 77718 terminate_cause User-Request 77718 bytes_out 0 77718 bytes_in 0 77718 station_ip 5.119.232.11 77718 port 15728867 77718 nas_port_type Virtual 77718 remote_ip 5.5.5.133 77721 username mobina 77721 unique_id port 77721 terminate_cause Lost-Carrier 77721 bytes_out 2329050 77721 bytes_in 41577868 77721 station_ip 5.123.77.200 77721 port 15728840 77721 nas_port_type Virtual 77721 remote_ip 5.5.5.142 77722 username soleymani 77722 unique_id port 77722 terminate_cause Lost-Carrier 77722 bytes_out 167954 77722 bytes_in 1085653 77722 station_ip 5.119.119.116 77722 port 15728870 77722 nas_port_type Virtual 77722 remote_ip 5.5.5.132 77725 username alinezhad 77725 unique_id port 77725 terminate_cause User-Request 77725 bytes_out 0 77725 bytes_in 0 77725 station_ip 83.122.25.170 77725 port 15728874 77725 nas_port_type Virtual 77725 remote_ip 5.5.5.129 77732 username asadi 77732 unique_id port 77732 terminate_cause User-Request 77732 bytes_out 18433 77732 bytes_in 71207 77732 station_ip 37.129.96.10 77732 port 15728881 77732 nas_port_type Virtual 77732 remote_ip 5.5.5.148 77696 terminate_cause User-Request 77696 bytes_out 0 77696 bytes_in 0 77696 station_ip 83.122.2.132 77696 port 15728838 77696 nas_port_type Virtual 77696 remote_ip 5.5.5.143 77701 username alinezhad 77701 unique_id port 77701 terminate_cause User-Request 77701 bytes_out 0 77701 bytes_in 0 77701 station_ip 83.122.38.159 77701 port 15728844 77701 nas_port_type Virtual 77701 remote_ip 5.5.5.139 77704 username majid 77704 unique_id port 77704 terminate_cause User-Request 77704 bytes_out 4604 77704 bytes_in 15270 77704 station_ip 83.122.98.63 77704 port 15728847 77704 nas_port_type Virtual 77704 remote_ip 5.5.5.138 77708 username majid 77708 unique_id port 77708 terminate_cause User-Request 77708 bytes_out 3286 77708 bytes_in 17341 77708 station_ip 83.122.98.63 77708 port 15728850 77708 nas_port_type Virtual 77708 remote_ip 5.5.5.138 77709 username reza 77709 unique_id port 77709 terminate_cause User-Request 77709 bytes_out 52004 77709 bytes_in 470953 77709 station_ip 83.123.133.89 77709 port 15728851 77709 nas_port_type Virtual 77709 remote_ip 5.5.5.137 77710 username reza 77710 unique_id port 77710 terminate_cause User-Request 77710 bytes_out 38756 77710 bytes_in 739323 77710 station_ip 83.123.133.89 77710 port 15728852 77710 nas_port_type Virtual 77710 remote_ip 5.5.5.137 77714 username asadi 77714 unique_id port 77714 terminate_cause User-Request 77714 bytes_out 33875 77714 bytes_in 76113 77714 station_ip 37.129.96.10 77714 port 15728860 77714 nas_port_type Virtual 77714 remote_ip 5.5.5.148 77716 username alinezhad 77716 unique_id port 77716 terminate_cause User-Request 77716 bytes_out 0 77716 bytes_in 0 77716 station_ip 113.203.2.159 77716 port 15728865 77716 nas_port_type Virtual 77716 remote_ip 5.5.5.134 77720 username soleymani 77720 unique_id port 77720 terminate_cause Lost-Carrier 77720 bytes_out 65798 77720 bytes_in 501228 77720 station_ip 5.119.232.11 77720 port 15728868 77720 nas_port_type Virtual 77720 remote_ip 5.5.5.133 77727 username asadi 77727 unique_id port 77727 terminate_cause User-Request 77727 bytes_out 43582 77727 bytes_in 134551 77727 station_ip 37.129.96.10 77727 port 15728879 77727 nas_port_type Virtual 77727 remote_ip 5.5.5.148 77734 username shahnaz 77734 unique_id port 77734 terminate_cause Lost-Carrier 77734 bytes_out 2546876 77734 bytes_in 39103143 77734 station_ip 5.120.117.80 77734 port 15728876 77734 nas_port_type Virtual 77734 remote_ip 5.5.5.128 77736 username asadi 77736 unique_id port 77736 terminate_cause User-Request 77736 bytes_out 21208 77736 bytes_in 110874 77736 station_ip 37.129.96.10 77736 port 15728887 77736 nas_port_type Virtual 77736 remote_ip 5.5.5.148 77738 username asadi 77738 unique_id port 77738 terminate_cause User-Request 77738 bytes_out 21300 77738 bytes_in 191620 77738 station_ip 37.129.96.10 77738 port 15728890 77738 nas_port_type Virtual 77738 remote_ip 5.5.5.148 77740 username soleymani 77740 unique_id port 77740 terminate_cause Lost-Carrier 77740 bytes_out 65594 77740 bytes_in 395990 77740 station_ip 5.119.115.132 77740 port 15728885 77740 nas_port_type Virtual 77740 remote_ip 5.5.5.123 77742 username asadi 77742 unique_id port 77742 terminate_cause User-Request 77742 bytes_out 23741 77742 bytes_in 71366 77742 station_ip 37.129.96.10 77742 port 15728892 77742 nas_port_type Virtual 77742 remote_ip 5.5.5.148 77746 username asadi 77746 unique_id port 77746 terminate_cause User-Request 77746 bytes_out 25728 77746 bytes_in 92338 77746 station_ip 37.129.96.10 77746 port 15728896 77746 nas_port_type Virtual 77746 remote_ip 5.5.5.148 77748 username forozande 77748 unique_id port 77748 terminate_cause User-Request 77730 remote_ip 5.5.5.125 77733 username alinezhad 77733 unique_id port 77733 terminate_cause User-Request 77733 bytes_out 0 77733 bytes_in 0 77733 station_ip 37.129.192.168 77733 port 15728882 77733 nas_port_type Virtual 77733 remote_ip 5.5.5.125 77735 username madadi 77735 unique_id port 77735 terminate_cause User-Request 77735 bytes_out 632967 77735 bytes_in 2888018 77735 station_ip 5.119.13.30 77735 port 15728872 77735 nas_port_type Virtual 77735 remote_ip 5.5.5.130 77744 username asadi 77744 unique_id port 77744 terminate_cause User-Request 77744 bytes_out 0 77744 bytes_in 0 77744 station_ip 37.129.96.10 77744 port 15728893 77744 nas_port_type Virtual 77744 remote_ip 5.5.5.148 77745 username asadi 77745 unique_id port 77745 terminate_cause User-Request 77745 bytes_out 36829 77745 bytes_in 297220 77745 station_ip 37.129.96.10 77745 port 15728894 77745 nas_port_type Virtual 77745 remote_ip 5.5.5.148 77749 username ahmadi 77749 unique_id port 77749 terminate_cause User-Request 77749 bytes_out 200596 77749 bytes_in 2626796 77749 station_ip 83.122.111.247 77749 port 15728900 77749 nas_port_type Virtual 77749 remote_ip 5.5.5.120 77761 username soleymani 77761 kill_reason Maximum number of concurrent logins reached 77761 unique_id port 77761 bytes_out 0 77761 bytes_in 0 77761 station_ip 5.119.164.83 77761 port 15728915 77761 nas_port_type Virtual 77763 username soleymani 77763 kill_reason Maximum number of concurrent logins reached 77763 unique_id port 77763 bytes_out 0 77763 bytes_in 0 77763 station_ip 5.119.221.62 77763 port 15728917 77763 nas_port_type Virtual 77771 username soleymani 77771 kill_reason Maximum number of concurrent logins reached 77771 unique_id port 77771 bytes_out 0 77771 bytes_in 0 77771 station_ip 5.119.119.132 77771 port 15728925 77771 nas_port_type Virtual 77775 username alirezazamani 77775 unique_id port 77775 terminate_cause User-Request 77775 bytes_out 0 77775 bytes_in 0 77775 station_ip 5.119.176.2 77775 port 15728930 77775 nas_port_type Virtual 77775 remote_ip 5.5.5.153 77782 username alirezazamani 77782 unique_id port 77782 terminate_cause User-Request 77782 bytes_out 0 77782 bytes_in 0 77782 station_ip 5.119.176.2 77782 port 15728938 77782 nas_port_type Virtual 77782 remote_ip 5.5.5.112 77787 username iranmanesh 77787 unique_id port 77787 terminate_cause User-Request 77787 bytes_out 148719 77787 bytes_in 2494823 77787 station_ip 83.122.185.62 77787 port 15728940 77787 nas_port_type Virtual 77787 remote_ip 5.5.5.236 77792 username alirezazamani 77792 unique_id port 77792 terminate_cause User-Request 77792 bytes_out 0 77792 bytes_in 0 77792 station_ip 5.119.176.2 77792 port 15728945 77792 nas_port_type Virtual 77792 remote_ip 5.5.5.110 77794 username alirezazamani 77794 unique_id port 77794 terminate_cause User-Request 77794 bytes_out 46916 77794 bytes_in 552931 77794 station_ip 5.119.176.2 77794 port 15728946 77794 nas_port_type Virtual 77794 remote_ip 5.5.5.110 77796 username forozande 77796 unique_id port 77796 terminate_cause User-Request 77796 bytes_out 0 77796 bytes_in 0 77796 station_ip 37.129.35.200 77796 port 15728948 77796 nas_port_type Virtual 77796 remote_ip 5.5.5.108 77798 username soleymani 77798 unique_id port 77798 terminate_cause User-Request 77798 bytes_out 0 77798 bytes_in 0 77798 station_ip 5.119.253.18 77798 port 15728952 77798 nas_port_type Virtual 77798 remote_ip 5.5.5.107 77804 username mahdavi 77804 unique_id port 77804 terminate_cause User-Request 77804 bytes_out 211213 77804 bytes_in 3903728 77804 station_ip 83.123.248.13 77804 port 15728957 77804 nas_port_type Virtual 77804 remote_ip 5.5.5.106 77807 username mahdavi 77737 username asadi 77737 unique_id port 77737 terminate_cause User-Request 77737 bytes_out 39240 77737 bytes_in 88870 77737 station_ip 37.129.96.10 77737 port 15728888 77737 nas_port_type Virtual 77737 remote_ip 5.5.5.148 77739 username madadi 77739 kill_reason Maximum check online fails reached 77739 unique_id port 77739 bytes_out 5386 77739 bytes_in 29161 77739 station_ip 5.119.13.30 77739 port 15728886 77739 nas_port_type Virtual 77739 remote_ip 5.5.5.130 77741 username asadi 77741 unique_id port 77741 terminate_cause User-Request 77741 bytes_out 25139 77741 bytes_in 265992 77741 station_ip 37.129.96.10 77741 port 15728891 77741 nas_port_type Virtual 77741 remote_ip 5.5.5.148 77743 username zoha 77743 unique_id port 77743 terminate_cause User-Request 77743 bytes_out 446455 77743 bytes_in 3022135 77743 station_ip 5.120.148.168 77743 port 15728875 77743 nas_port_type Virtual 77743 remote_ip 5.5.5.212 77747 username asadi 77747 unique_id port 77747 terminate_cause User-Request 77747 bytes_out 66853 77747 bytes_in 964998 77747 station_ip 37.129.96.10 77747 port 15728897 77747 nas_port_type Virtual 77747 remote_ip 5.5.5.148 77751 username forozande 77751 unique_id port 77751 terminate_cause User-Request 77751 bytes_out 10940 77751 bytes_in 29637 77751 station_ip 83.123.95.69 77751 port 15728901 77751 nas_port_type Virtual 77751 remote_ip 5.5.5.119 77754 username mobina 77754 unique_id port 77754 terminate_cause Lost-Carrier 77754 bytes_out 239790 77754 bytes_in 3875654 77754 station_ip 5.123.122.92 77754 port 15728903 77754 nas_port_type Virtual 77754 remote_ip 5.5.5.118 77757 username soleymani 77757 kill_reason Maximum number of concurrent logins reached 77757 unique_id port 77757 bytes_out 0 77757 bytes_in 0 77757 station_ip 5.119.93.249 77757 port 15728910 77757 nas_port_type Virtual 77759 username soleymani 77759 kill_reason Maximum number of concurrent logins reached 77759 unique_id port 77759 bytes_out 0 77759 bytes_in 0 77759 station_ip 5.119.164.83 77759 port 15728913 77759 nas_port_type Virtual 77764 username soleymani 77764 kill_reason Maximum number of concurrent logins reached 77764 unique_id port 77764 bytes_out 0 77764 bytes_in 0 77764 station_ip 5.119.221.62 77764 port 15728918 77764 nas_port_type Virtual 77766 username soleymani 77766 kill_reason Maximum number of concurrent logins reached 77766 unique_id port 77766 bytes_out 0 77766 bytes_in 0 77766 station_ip 5.119.221.62 77766 port 15728920 77766 nas_port_type Virtual 77767 username soleymani 77767 kill_reason Maximum number of concurrent logins reached 77767 unique_id port 77767 bytes_out 0 77767 bytes_in 0 77767 station_ip 5.119.124.197 77767 port 15728921 77767 nas_port_type Virtual 77769 username soleymani 77769 kill_reason Maximum number of concurrent logins reached 77769 unique_id port 77769 bytes_out 0 77769 bytes_in 0 77769 station_ip 5.119.124.197 77769 port 15728923 77769 nas_port_type Virtual 77772 username soleymani 77772 kill_reason Maximum number of concurrent logins reached 77772 unique_id port 77772 bytes_out 0 77772 bytes_in 0 77772 station_ip 5.119.119.132 77772 port 15728926 77772 nas_port_type Virtual 77776 username soleymani 77776 unique_id port 77776 terminate_cause Lost-Carrier 77776 bytes_out 34796 77776 bytes_in 187261 77776 station_ip 5.119.164.176 77776 port 15728908 77776 nas_port_type Virtual 77776 remote_ip 5.5.5.115 77780 username alirezazamani 77780 unique_id port 77780 terminate_cause User-Request 77780 bytes_out 0 77780 bytes_in 0 77780 station_ip 5.119.176.2 77780 port 15728935 77780 nas_port_type Virtual 77780 remote_ip 5.5.5.153 77783 username soleymani 77783 unique_id port 77783 terminate_cause Lost-Carrier 77783 bytes_out 52729 77783 bytes_in 490206 77748 bytes_out 47596 77748 bytes_in 354211 77748 station_ip 83.123.160.174 77748 port 15728898 77748 nas_port_type Virtual 77748 remote_ip 5.5.5.122 77753 username asadi 77753 unique_id port 77753 terminate_cause User-Request 77753 bytes_out 99591 77753 bytes_in 1763677 77753 station_ip 37.129.96.10 77753 port 15728907 77753 nas_port_type Virtual 77753 remote_ip 5.5.5.148 77755 username madadi 77755 unique_id port 77755 terminate_cause Lost-Carrier 77755 bytes_out 82929 77755 bytes_in 609843 77755 station_ip 5.119.130.219 77755 port 15728904 77755 nas_port_type Virtual 77755 remote_ip 5.5.5.117 77758 username soleymani 77758 kill_reason Maximum number of concurrent logins reached 77758 unique_id port 77758 bytes_out 0 77758 bytes_in 0 77758 station_ip 5.119.164.83 77758 port 15728912 77758 nas_port_type Virtual 77765 username soleymani 77765 kill_reason Maximum number of concurrent logins reached 77765 unique_id port 77765 bytes_out 0 77765 bytes_in 0 77765 station_ip 5.119.221.62 77765 port 15728919 77765 nas_port_type Virtual 77768 username soleymani 77768 kill_reason Maximum number of concurrent logins reached 77768 unique_id port 77768 bytes_out 0 77768 bytes_in 0 77768 station_ip 5.119.124.197 77768 port 15728922 77768 nas_port_type Virtual 77773 username soleymani 77773 kill_reason Maximum number of concurrent logins reached 77773 unique_id port 77773 bytes_out 0 77773 bytes_in 0 77773 station_ip 5.119.119.132 77773 port 15728927 77773 nas_port_type Virtual 77778 username alirezazamani 77778 unique_id port 77778 terminate_cause User-Request 77778 bytes_out 0 77778 bytes_in 0 77778 station_ip 5.119.176.2 77778 port 15728932 77778 nas_port_type Virtual 77778 remote_ip 5.5.5.153 77781 username alirezazamani 77781 unique_id port 77781 terminate_cause User-Request 77781 bytes_out 0 77781 bytes_in 0 77781 station_ip 5.119.176.2 77781 port 15728936 77781 nas_port_type Virtual 77781 remote_ip 5.5.5.153 77784 username mahbobeh 77784 unique_id port 77784 terminate_cause Lost-Carrier 77784 bytes_out 390313 77784 bytes_in 3769558 77784 station_ip 83.123.253.226 77784 port 15728895 77784 nas_port_type Virtual 77784 remote_ip 5.5.5.191 77785 username reza 77785 unique_id port 77785 terminate_cause User-Request 77785 bytes_out 44432 77785 bytes_in 599839 77785 station_ip 83.123.133.89 77785 port 15728933 77785 nas_port_type Virtual 77785 remote_ip 5.5.5.137 77786 username alirezazamani 77786 unique_id port 77786 terminate_cause User-Request 77786 bytes_out 625194 77786 bytes_in 19708299 77786 station_ip 5.119.176.2 77786 port 15728939 77786 nas_port_type Virtual 77786 remote_ip 5.5.5.112 77791 username alirezazamani 77791 unique_id port 77791 terminate_cause User-Request 77791 bytes_out 43255184 77791 bytes_in 82336247 77791 station_ip 31.57.142.127 77791 port 15728884 77791 nas_port_type Virtual 77791 remote_ip 5.5.5.124 77795 username alirezazamani 77795 unique_id port 77795 terminate_cause User-Request 77795 bytes_out 77434 77795 bytes_in 1320535 77795 station_ip 5.119.176.2 77795 port 15728944 77795 nas_port_type Virtual 77795 remote_ip 5.5.5.112 77797 username forozande 77797 unique_id port 77797 terminate_cause User-Request 77797 bytes_out 53602 77797 bytes_in 664654 77797 station_ip 37.129.35.200 77797 port 15728949 77797 nas_port_type Virtual 77797 remote_ip 5.5.5.108 77800 username alinezhad 77800 unique_id port 77800 terminate_cause User-Request 77800 bytes_out 19180 77800 bytes_in 121163 77800 station_ip 5.202.24.228 77800 port 15728954 77800 nas_port_type Virtual 77800 remote_ip 5.5.5.247 77805 username mahdavi 77805 unique_id port 77805 terminate_cause User-Request 77805 bytes_out 125973 77805 bytes_in 1428283 77752 station_ip 5.120.175.19 77752 port 15728905 77752 nas_port_type Virtual 77752 remote_ip 5.5.5.116 77756 username soleymani 77756 kill_reason Maximum number of concurrent logins reached 77756 unique_id port 77756 bytes_out 0 77756 bytes_in 0 77756 station_ip 5.119.93.249 77756 port 15728909 77756 nas_port_type Virtual 77760 username soleymani 77801 unique_id port 77760 kill_reason Maximum number of concurrent logins reached 77760 unique_id port 77760 bytes_out 0 77760 bytes_in 0 77760 station_ip 5.119.164.83 77760 port 15728914 77760 nas_port_type Virtual 77762 username soleymani 77762 kill_reason Maximum number of concurrent logins reached 77762 unique_id port 77762 bytes_out 0 77762 bytes_in 0 77762 station_ip 5.119.164.83 77762 port 15728916 77762 nas_port_type Virtual 77770 username soleymani 77770 kill_reason Maximum number of concurrent logins reached 77770 unique_id port 77770 bytes_out 0 77770 bytes_in 0 77770 station_ip 5.119.119.132 77770 port 15728924 77770 nas_port_type Virtual 77774 username soleymani 77774 unique_id port 77774 terminate_cause Lost-Carrier 77774 bytes_out 204210 77774 bytes_in 502269 77774 station_ip 5.120.175.19 77774 port 15728906 77774 nas_port_type Virtual 77774 remote_ip 5.5.5.116 77777 username alirezazamani 77777 unique_id port 77777 terminate_cause User-Request 77777 bytes_out 188918 77777 bytes_in 4759904 77777 station_ip 5.119.176.2 77777 port 15728931 77777 nas_port_type Virtual 77777 remote_ip 5.5.5.153 77779 username alirezazamani 77779 unique_id port 77779 terminate_cause User-Request 77779 bytes_out 0 77779 bytes_in 0 77779 station_ip 5.119.176.2 77779 port 15728934 77779 nas_port_type Virtual 77779 remote_ip 5.5.5.153 77788 username madadi 77788 unique_id port 77788 terminate_cause Lost-Carrier 77788 bytes_out 428824 77788 bytes_in 3583115 77788 station_ip 5.119.138.107 77788 port 15728929 77788 nas_port_type Virtual 77788 remote_ip 5.5.5.113 77789 username alirezazamani 77789 unique_id port 77789 terminate_cause Lost-Carrier 77789 bytes_out 360059 77789 bytes_in 7573235 77789 station_ip 5.119.176.2 77789 port 15728937 77789 nas_port_type Virtual 77789 remote_ip 5.5.5.153 77793 username alinezhad 77793 unique_id port 77793 terminate_cause User-Request 77793 bytes_out 47902 77793 bytes_in 512968 77793 station_ip 5.202.24.228 77793 port 15728911 77793 nas_port_type Virtual 77793 remote_ip 5.5.5.247 77799 username reza 77799 unique_id port 77799 terminate_cause User-Request 77799 bytes_out 43265 77799 bytes_in 801830 77799 station_ip 83.123.133.89 77799 port 15728943 77799 nas_port_type Virtual 77799 remote_ip 5.5.5.137 77802 username soleymani 77802 unique_id port 77802 terminate_cause Lost-Carrier 77802 bytes_out 200539 77802 bytes_in 884810 77802 station_ip 5.119.253.18 77802 port 15728953 77802 nas_port_type Virtual 77802 remote_ip 5.5.5.107 77803 username mahdavi 77803 unique_id port 77803 terminate_cause User-Request 77803 bytes_out 655420 77803 bytes_in 11867587 77803 station_ip 83.123.248.13 77803 port 15728955 77803 nas_port_type Virtual 77803 remote_ip 5.5.5.106 77806 username ahmadi 77806 unique_id port 77806 terminate_cause User-Request 77806 bytes_out 44135 77806 bytes_in 234855 77806 station_ip 83.122.111.247 77806 port 15728958 77806 nas_port_type Virtual 77806 remote_ip 5.5.5.120 77810 username mahdavi 77810 unique_id port 77810 terminate_cause User-Request 77810 bytes_out 46774 77810 bytes_in 672291 77810 station_ip 83.123.248.13 77810 port 15728963 77810 nas_port_type Virtual 77810 remote_ip 5.5.5.106 77814 username ahmadi 77814 unique_id port 77814 terminate_cause User-Request 77814 bytes_out 0 77814 bytes_in 0 77814 station_ip 83.122.111.247 77814 port 15728969 77783 station_ip 5.119.119.132 77783 port 15728928 77783 nas_port_type Virtual 77783 remote_ip 5.5.5.114 77790 username asadi 77790 unique_id port 77790 terminate_cause User-Request 77790 bytes_out 72492 77790 bytes_in 510635 77790 station_ip 37.129.96.10 77790 port 15728942 77790 nas_port_type Virtual 77790 remote_ip 5.5.5.148 77801 username soleymani 77801 terminate_cause Lost-Carrier 77801 bytes_out 94053 77801 bytes_in 339035 77801 station_ip 5.119.67.176 77801 port 15728947 77801 nas_port_type Virtual 77801 remote_ip 5.5.5.109 77808 username mahdavi 77808 unique_id port 77808 terminate_cause User-Request 77808 bytes_out 293952 77808 bytes_in 5695979 77808 station_ip 83.123.248.13 77808 port 15728961 77808 nas_port_type Virtual 77808 remote_ip 5.5.5.106 77817 username asadi 77817 unique_id port 77817 terminate_cause User-Request 77817 bytes_out 127750 77817 bytes_in 4196584 77817 station_ip 37.129.96.10 77817 port 15728972 77817 nas_port_type Virtual 77817 remote_ip 5.5.5.148 77822 username zoha 77822 unique_id port 77822 terminate_cause Lost-Carrier 77822 bytes_out 5971663 77822 bytes_in 104610524 77822 station_ip 5.120.148.168 77822 port 15728902 77822 nas_port_type Virtual 77822 remote_ip 5.5.5.212 77831 username alinezhad 77831 unique_id port 77831 terminate_cause User-Request 77831 bytes_out 0 77831 bytes_in 0 77831 station_ip 113.203.87.13 77831 port 15728981 77831 nas_port_type Virtual 77831 remote_ip 5.5.5.95 81219 bytes_out 0 81219 bytes_in 0 81219 station_ip 5.119.30.76 81219 port 15 81219 unique_id port 81219 remote_ip 10.8.0.6 81222 username aminvpn 81222 mac 81222 bytes_out 0 77840 username alirezazamani 77840 unique_id port 77840 terminate_cause Lost-Carrier 77840 bytes_out 485368 77840 bytes_in 3664859 77840 station_ip 5.120.3.161 77840 port 15728985 77840 nas_port_type Virtual 77840 remote_ip 5.5.5.92 77842 username pouria 77842 unique_id port 77842 terminate_cause Lost-Carrier 77842 bytes_out 7072700 77842 bytes_in 222968217 77842 station_ip 151.235.72.123 77842 port 15728987 77842 nas_port_type Virtual 77842 remote_ip 5.5.5.91 81222 bytes_in 0 81222 station_ip 5.119.30.76 81222 port 15 81222 unique_id port 81222 remote_ip 10.8.0.6 81225 username forozande 81225 unique_id port 81225 terminate_cause User-Request 81225 bytes_out 399278 77868 username amin.insta22 77868 unique_id port 77868 terminate_cause User-Request 77868 bytes_out 3012845 77868 bytes_in 27708469 77868 station_ip 31.59.37.27 77868 port 15728657 77868 nas_port_type Virtual 77868 remote_ip 5.5.5.244 77870 username soleymani 77870 unique_id port 77870 terminate_cause Lost-Carrier 77870 bytes_out 141369 77870 bytes_in 438847 77870 station_ip 5.120.10.138 77870 port 15728662 77870 nas_port_type Virtual 77870 remote_ip 5.5.5.241 77874 username ahmadi 77874 unique_id port 77874 terminate_cause User-Request 77874 bytes_out 48028 77874 bytes_in 757596 77874 station_ip 83.122.54.11 77874 port 15728669 77874 nas_port_type Virtual 77874 remote_ip 5.5.5.240 77876 username alinezhad 77876 unique_id port 77876 terminate_cause User-Request 77876 bytes_out 0 77876 bytes_in 0 77876 station_ip 5.202.22.209 77876 port 15728671 77876 nas_port_type Virtual 77876 remote_ip 5.5.5.243 77882 username alireza 77882 unique_id port 77882 terminate_cause User-Request 77882 bytes_out 526554 77882 bytes_in 9263394 77882 station_ip 5.120.191.203 77882 port 15728677 77882 nas_port_type Virtual 77882 remote_ip 5.5.5.233 77885 username soleymani 77885 unique_id port 77885 terminate_cause Lost-Carrier 77885 bytes_out 49666 81225 bytes_in 7174902 77805 station_ip 83.123.248.13 77805 port 15728959 77805 nas_port_type Virtual 77805 remote_ip 5.5.5.106 77812 username mobina 77812 unique_id port 77812 terminate_cause Lost-Carrier 77812 bytes_out 582238 77812 bytes_in 11703308 77812 station_ip 5.123.216.199 77812 port 15728956 77812 nas_port_type Virtual 77812 remote_ip 5.5.5.105 77813 username alinezhad 77813 unique_id port 77813 terminate_cause User-Request 77813 bytes_out 0 77813 bytes_in 0 77813 station_ip 5.202.24.228 77813 port 15728966 77813 nas_port_type Virtual 77813 remote_ip 5.5.5.247 77820 username alinezhad 77820 unique_id port 77820 terminate_cause User-Request 77820 bytes_out 0 77820 bytes_in 0 77820 station_ip 113.203.100.3 77820 port 15728974 77820 nas_port_type Virtual 77820 remote_ip 5.5.5.100 77825 username rashidi 77825 unique_id port 77825 terminate_cause User-Request 77825 bytes_out 8394890 77825 bytes_in 29116973 77825 station_ip 5.120.7.249 77825 port 15728971 77825 nas_port_type Virtual 77825 remote_ip 5.5.5.192 77827 username soleymani 77827 unique_id port 77827 terminate_cause Lost-Carrier 77827 bytes_out 17406 77827 bytes_in 132787 77827 station_ip 5.119.41.188 77827 port 15728978 77827 nas_port_type Virtual 77827 remote_ip 5.5.5.97 77828 username madadi 77828 unique_id port 77828 terminate_cause Lost-Carrier 77828 bytes_out 3078335 77828 bytes_in 17718046 77828 station_ip 5.119.64.139 77828 port 15728941 77828 nas_port_type Virtual 77828 remote_ip 5.5.5.111 77832 username shahnaz 77832 unique_id port 77832 terminate_cause User-Request 77832 bytes_out 64617 77832 bytes_in 515074 77832 station_ip 5.120.117.80 77832 port 15728982 77832 nas_port_type Virtual 77832 remote_ip 5.5.5.128 77838 username zamanialireza 77838 unique_id port 77838 terminate_cause User-Request 77838 bytes_out 1176357 77838 bytes_in 4801437 77838 station_ip 83.122.192.64 77838 port 15728991 77838 nas_port_type Virtual 77838 remote_ip 5.5.5.99 77841 username majid 77841 unique_id port 77841 terminate_cause User-Request 77841 bytes_out 30420 77841 bytes_in 144373 77841 station_ip 86.57.81.176 77841 port 15728992 77841 nas_port_type Virtual 77841 remote_ip 5.5.5.93 77843 username mobina 77843 unique_id port 77843 terminate_cause Lost-Carrier 77843 bytes_out 4765220 77843 bytes_in 110840389 77843 station_ip 5.124.29.204 77843 port 15728997 77843 nas_port_type Virtual 77843 remote_ip 5.5.5.90 77848 username mahdi 77848 unique_id port 77848 terminate_cause Admin-Reboot 77848 bytes_out 2375338 77848 bytes_in 58277809 77848 station_ip 5.120.26.8 77848 port 15728993 77848 nas_port_type Virtual 77848 remote_ip 5.5.5.175 77850 username alirezazamani 77850 unique_id port 77850 terminate_cause User-Request 77850 bytes_out 577872 77850 bytes_in 17768884 77850 station_ip 5.120.3.161 77850 port 15728640 77850 nas_port_type Virtual 77850 remote_ip 5.5.5.255 77851 username ahmadi 77851 unique_id port 77851 terminate_cause User-Request 77851 bytes_out 121962 77851 bytes_in 479347 77851 station_ip 83.122.98.87 77851 port 15728642 77851 nas_port_type Virtual 77851 remote_ip 5.5.5.253 77853 username madadi 77853 unique_id port 77853 terminate_cause Lost-Carrier 77853 bytes_out 112536 77853 bytes_in 1046865 77853 station_ip 5.120.48.255 77853 port 15728641 77853 nas_port_type Virtual 77853 remote_ip 5.5.5.254 77857 username forozande 77857 unique_id port 77857 terminate_cause User-Request 77857 bytes_out 34302 77857 bytes_in 41056 77857 station_ip 83.122.160.52 77857 port 15728649 77857 nas_port_type Virtual 77857 remote_ip 5.5.5.248 77861 username mahbobeh 77861 unique_id port 77861 terminate_cause Lost-Carrier 77861 bytes_out 143031 77807 unique_id port 77807 terminate_cause User-Request 77807 bytes_out 117738 77807 bytes_in 1603176 77807 station_ip 83.123.248.13 77807 port 15728960 77807 nas_port_type Virtual 77807 remote_ip 5.5.5.106 77809 username dehghan 77809 unique_id port 77809 terminate_cause User-Request 77809 bytes_out 332879 77809 bytes_in 7932697 77809 station_ip 83.123.123.248 77809 port 15728962 77809 nas_port_type Virtual 77809 remote_ip 5.5.5.104 77811 username mahdavi 77811 unique_id port 77811 terminate_cause User-Request 77811 bytes_out 790111 77811 bytes_in 16641866 77811 station_ip 83.123.248.13 77811 port 15728964 77811 nas_port_type Virtual 77811 remote_ip 5.5.5.106 77815 username ahmadipour 77815 unique_id port 77815 terminate_cause Lost-Carrier 77815 bytes_out 487909 77815 bytes_in 9588782 77815 station_ip 37.129.190.10 77815 port 15728970 77815 nas_port_type Virtual 77815 remote_ip 5.5.5.101 77819 username ahmad 77819 unique_id port 77819 terminate_cause User-Request 77819 bytes_out 570750 77819 bytes_in 10769420 77819 station_ip 86.57.121.225 77819 port 15728965 77819 nas_port_type Virtual 77819 remote_ip 5.5.5.194 77821 username zamanialireza 77821 unique_id port 77821 terminate_cause User-Request 77821 bytes_out 136089 77821 bytes_in 365425 77821 station_ip 83.122.192.64 77821 port 15728975 77821 nas_port_type Virtual 77821 remote_ip 5.5.5.99 77823 username alirezazamani 77823 unique_id port 77823 terminate_cause Lost-Carrier 77823 bytes_out 957763 77823 bytes_in 6391975 77823 station_ip 5.124.150.4 77823 port 15728967 77823 nas_port_type Virtual 77823 remote_ip 5.5.5.103 77824 username abdilahyar 77824 unique_id port 77824 terminate_cause Lost-Carrier 77824 bytes_out 18717985 77824 bytes_in 469651423 77824 station_ip 5.119.79.181 77824 port 15728660 77824 nas_port_type Virtual 77824 remote_ip 5.5.5.239 77826 username soleymani 77826 unique_id port 77826 terminate_cause Lost-Carrier 77826 bytes_out 603925 77826 bytes_in 3458136 77826 station_ip 5.119.212.192 77826 port 15728976 77826 nas_port_type Virtual 77826 remote_ip 5.5.5.98 77829 username madadi 77829 unique_id port 77829 terminate_cause Lost-Carrier 77829 bytes_out 32379 77829 bytes_in 140641 77829 station_ip 5.119.166.66 77829 port 15728979 77829 nas_port_type Virtual 77829 remote_ip 5.5.5.96 77834 username majid 77834 unique_id port 77834 terminate_cause User-Request 77834 bytes_out 154835 77834 bytes_in 1622112 77834 station_ip 86.57.81.176 77834 port 15728986 77834 nas_port_type Virtual 77834 remote_ip 5.5.5.93 77836 username zamanialireza 77836 unique_id port 77836 terminate_cause User-Request 77836 bytes_out 1578498 77836 bytes_in 4933343 77836 station_ip 83.122.192.64 77836 port 15728988 77836 nas_port_type Virtual 77836 remote_ip 5.5.5.99 77837 username zamanialireza 77837 unique_id port 77837 terminate_cause User-Request 77837 bytes_out 2144072 77837 bytes_in 4805096 77837 station_ip 83.122.192.64 77837 port 15728990 77837 nas_port_type Virtual 77837 remote_ip 5.5.5.99 77839 username zoha 77839 unique_id port 77839 terminate_cause Lost-Carrier 77839 bytes_out 6668467 77839 bytes_in 111996067 77839 station_ip 5.120.148.168 77839 port 15728977 77839 nas_port_type Virtual 77839 remote_ip 5.5.5.212 77844 username shahnaz 77844 unique_id port 77844 terminate_cause Lost-Carrier 77844 bytes_out 107164 77844 bytes_in 1073545 77844 station_ip 5.120.117.80 77844 port 15728998 77844 nas_port_type Virtual 77844 remote_ip 5.5.5.128 77845 username mobina 77845 unique_id port 77845 terminate_cause User-Request 77845 bytes_out 231856 77845 bytes_in 941654 77845 station_ip 5.124.89.208 77845 port 15729000 77814 nas_port_type Virtual 77814 remote_ip 5.5.5.120 77816 username soleymani 77816 unique_id port 77816 terminate_cause Lost-Carrier 77816 bytes_out 92503 77816 bytes_in 370828 77816 station_ip 5.120.107.9 77816 port 15728968 77816 nas_port_type Virtual 77816 remote_ip 5.5.5.102 77818 username asadi 77818 unique_id port 77818 terminate_cause User-Request 77818 bytes_out 51125 77818 bytes_in 177395 77818 station_ip 37.129.96.10 77818 port 15728973 77818 nas_port_type Virtual 77818 remote_ip 5.5.5.148 77830 username alinezhad 77830 unique_id port 77830 terminate_cause User-Request 77830 bytes_out 0 77830 bytes_in 0 77830 station_ip 113.203.87.13 77830 port 15728980 77830 nas_port_type Virtual 77830 remote_ip 5.5.5.95 77833 username majid 77833 unique_id port 77833 terminate_cause User-Request 77833 bytes_out 181123 77833 bytes_in 2282874 77833 station_ip 86.57.81.176 77833 port 15728984 77833 nas_port_type Virtual 77833 remote_ip 5.5.5.93 77845 nas_port_type Virtual 77845 remote_ip 5.5.5.89 77849 username alirezazamani 77849 unique_id port 77849 terminate_cause Admin-Reboot 77849 bytes_out 157744 77849 bytes_in 551548 77849 station_ip 5.120.3.161 77849 port 15729001 77849 nas_port_type Virtual 77849 remote_ip 5.5.5.88 77854 username mobina 77854 unique_id port 77854 terminate_cause User-Request 77854 bytes_out 0 77854 bytes_in 0 77854 station_ip 5.124.89.208 77854 port 15728645 77854 nas_port_type Virtual 77854 remote_ip 5.5.5.251 77855 username alirezazamani 77855 unique_id port 77855 terminate_cause Lost-Carrier 77855 bytes_out 439116 77855 bytes_in 13107474 77855 station_ip 5.120.3.161 77855 port 15728643 77855 nas_port_type Virtual 77855 remote_ip 5.5.5.255 77859 username madadi 77859 unique_id port 77859 terminate_cause Lost-Carrier 77859 bytes_out 192419 77859 bytes_in 1071913 77859 station_ip 5.119.188.93 77859 port 15728646 77859 nas_port_type Virtual 77859 remote_ip 5.5.5.250 77862 username forozande 77862 unique_id port 77862 terminate_cause User-Request 77862 bytes_out 228232 77862 bytes_in 2800322 77862 station_ip 83.122.160.52 77862 port 15728655 77862 nas_port_type Virtual 77862 remote_ip 5.5.5.248 77863 username alinezhad 77863 unique_id port 77863 terminate_cause User-Request 77863 bytes_out 0 77863 bytes_in 0 77863 station_ip 5.202.22.209 77863 port 15728658 77863 nas_port_type Virtual 77863 remote_ip 5.5.5.243 77867 username soleymani 77867 unique_id port 77867 terminate_cause Lost-Carrier 77867 bytes_out 354578 77867 bytes_in 1023834 77867 station_ip 5.119.207.101 77867 port 15728660 77867 nas_port_type Virtual 77867 remote_ip 5.5.5.242 77875 username soleymani 77875 unique_id port 77875 terminate_cause Lost-Carrier 77875 bytes_out 112338 77875 bytes_in 490831 77875 station_ip 5.120.78.99 77875 port 15728667 77875 nas_port_type Virtual 77875 remote_ip 5.5.5.236 77881 username alinezhad 77881 unique_id port 77881 terminate_cause User-Request 77881 bytes_out 0 77881 bytes_in 0 77881 station_ip 5.202.22.209 77881 port 15728676 77881 nas_port_type Virtual 77881 remote_ip 5.5.5.243 77889 username alirezazamani 77889 unique_id port 77889 terminate_cause User-Request 77889 bytes_out 201271 77889 bytes_in 741540 77889 station_ip 31.57.142.127 77889 port 15728685 77889 nas_port_type Virtual 77889 remote_ip 5.5.5.227 77898 username madadi 77898 unique_id port 77898 terminate_cause Lost-Carrier 77898 bytes_out 53105 77898 bytes_in 312654 77898 station_ip 5.119.120.58 77898 port 15728693 77898 nas_port_type Virtual 77898 remote_ip 5.5.5.222 77903 username mahdavi 77903 unique_id port 77903 terminate_cause User-Request 77903 bytes_out 135488 77847 username alirezazamani 77847 unique_id port 77847 terminate_cause Admin-Reboot 77847 bytes_out 111398 77847 bytes_in 763405 77847 station_ip 5.120.3.161 77847 port 15728999 77847 nas_port_type Virtual 77847 remote_ip 5.5.5.92 77852 username mahbobeh 77852 unique_id port 77852 terminate_cause Lost-Carrier 77852 bytes_out 301340 77852 bytes_in 5250361 77852 station_ip 83.123.253.226 77852 port 15728644 77852 nas_port_type Virtual 77852 remote_ip 5.5.5.252 77856 username forozande 77856 unique_id port 77856 terminate_cause User-Request 77856 bytes_out 120709 77856 bytes_in 725329 77856 station_ip 37.129.47.222 77856 port 15728648 77856 nas_port_type Virtual 77856 remote_ip 5.5.5.249 77858 username alinezhad 77858 unique_id port 77858 terminate_cause User-Request 77858 bytes_out 0 77858 bytes_in 0 77858 station_ip 83.122.72.24 77858 port 15728653 77858 nas_port_type Virtual 77858 remote_ip 5.5.5.247 77860 username ahmadi 77860 unique_id port 77860 terminate_cause User-Request 77860 bytes_out 16957 77860 bytes_in 73085 77860 station_ip 83.122.77.243 77860 port 15728654 77860 nas_port_type Virtual 77860 remote_ip 5.5.5.246 77864 username alinezhad 77864 unique_id port 77864 terminate_cause User-Request 77864 bytes_out 135645 77864 bytes_in 38498 77864 station_ip 5.202.22.209 77864 port 15728659 77864 nas_port_type Virtual 77864 remote_ip 5.5.5.243 77877 username alireza 77877 unique_id port 77877 terminate_cause User-Request 77877 bytes_out 0 77877 bytes_in 0 77877 station_ip 5.120.191.203 77877 port 15728673 77877 nas_port_type Virtual 77877 remote_ip 5.5.5.233 77878 username aminvpn 77878 unique_id port 77878 terminate_cause Lost-Carrier 77878 bytes_out 1328289 77878 bytes_in 12937961 77878 station_ip 5.119.198.84 77878 port 15728670 77878 nas_port_type Virtual 77878 remote_ip 5.5.5.235 77879 username alireza 77879 unique_id port 77879 terminate_cause User-Request 77879 bytes_out 2026574 77879 bytes_in 32590207 77879 station_ip 5.120.191.203 77879 port 15728675 77879 nas_port_type Virtual 77879 remote_ip 5.5.5.233 77884 username mahbobeh 77884 unique_id port 77884 terminate_cause Lost-Carrier 77884 bytes_out 140470 77884 bytes_in 121248 77884 station_ip 37.129.141.228 77884 port 15728678 77884 nas_port_type Virtual 77884 remote_ip 5.5.5.232 77888 username alirezazamani 77888 unique_id port 77888 terminate_cause User-Request 77888 bytes_out 401273 77888 bytes_in 6271319 77888 station_ip 31.57.142.127 77888 port 15728684 77888 nas_port_type Virtual 77888 remote_ip 5.5.5.227 77892 username alirezazamani 77892 unique_id port 77892 terminate_cause User-Request 77892 bytes_out 642931 77892 bytes_in 12118966 77892 station_ip 37.129.50.125 77892 port 15728688 77892 nas_port_type Virtual 77892 remote_ip 5.5.5.226 77899 username soleymani 77899 unique_id port 77899 terminate_cause Lost-Carrier 77899 bytes_out 130409 77899 bytes_in 1767591 77899 station_ip 5.119.121.221 77899 port 15728692 77899 nas_port_type Virtual 77899 remote_ip 5.5.5.223 77901 username mahdavi 77901 unique_id port 77901 terminate_cause User-Request 77901 bytes_out 575392 77901 bytes_in 10564823 77901 station_ip 83.122.249.39 77901 port 15728701 77901 nas_port_type Virtual 77901 remote_ip 5.5.5.215 77904 username arabpour 77904 unique_id port 77904 terminate_cause User-Request 77904 bytes_out 271388 77904 bytes_in 7263074 77904 station_ip 37.129.0.247 77904 port 15728704 77904 nas_port_type Virtual 77904 remote_ip 5.5.5.216 77908 username ahmadi 77908 unique_id port 77908 terminate_cause User-Request 77908 bytes_out 198490 77908 bytes_in 1852913 77908 station_ip 83.122.54.11 77908 port 15728706 77861 bytes_in 1165536 77861 station_ip 83.123.253.226 77861 port 15728647 77861 nas_port_type Virtual 77861 remote_ip 5.5.5.252 77865 username hamideh 77865 unique_id port 77865 terminate_cause Lost-Carrier 77865 bytes_out 255974 77865 bytes_in 716823 77865 station_ip 5.120.6.48 77865 port 15728656 77865 nas_port_type Virtual 77865 remote_ip 5.5.5.245 77866 username ahmadi 77866 unique_id port 77866 terminate_cause User-Request 77866 bytes_out 0 77866 bytes_in 0 77866 station_ip 83.122.54.11 77866 port 15728663 77866 nas_port_type Virtual 77866 remote_ip 5.5.5.240 77869 username madadi 77869 unique_id port 77869 terminate_cause Lost-Carrier 77869 bytes_out 143488 77869 bytes_in 526250 77869 station_ip 5.119.242.114 77869 port 15728664 77869 nas_port_type Virtual 77869 remote_ip 5.5.5.239 77871 username hamideh 77871 unique_id port 77871 terminate_cause Lost-Carrier 77871 bytes_out 537725 77871 bytes_in 9125076 77871 station_ip 5.120.6.48 77871 port 15728661 77871 nas_port_type Virtual 77871 remote_ip 5.5.5.245 77872 username soleymani 77872 unique_id port 77872 terminate_cause Lost-Carrier 77872 bytes_out 167394 77872 bytes_in 462605 77872 station_ip 5.119.228.123 77872 port 15728665 77872 nas_port_type Virtual 77872 remote_ip 5.5.5.238 77873 username alinezhad 77873 unique_id port 77873 terminate_cause User-Request 77873 bytes_out 0 77873 bytes_in 0 77873 station_ip 5.202.22.209 77873 port 15728668 77873 nas_port_type Virtual 77873 remote_ip 5.5.5.243 77880 username soleymani 77880 unique_id port 77880 terminate_cause Lost-Carrier 77880 bytes_out 113064 77880 bytes_in 353676 77880 station_ip 5.120.108.208 77880 port 15728672 77880 nas_port_type Virtual 77880 remote_ip 5.5.5.234 77883 username soleymani 77883 unique_id port 77883 terminate_cause User-Request 77883 bytes_out 0 77883 bytes_in 0 77883 station_ip 5.120.17.88 77883 port 15728680 77883 nas_port_type Virtual 77883 remote_ip 5.5.5.230 77886 username soleymani 77886 unique_id port 77886 terminate_cause Lost-Carrier 77886 bytes_out 24991 77886 bytes_in 150071 77886 station_ip 5.120.17.88 77886 port 15728681 77886 nas_port_type Virtual 77886 remote_ip 5.5.5.230 77890 username alirezazamani 77890 unique_id port 77890 terminate_cause User-Request 77890 bytes_out 0 77890 bytes_in 0 77890 station_ip 37.129.50.125 77890 port 15728687 77890 nas_port_type Virtual 77890 remote_ip 5.5.5.226 77894 username zamanialireza 77894 unique_id port 77894 terminate_cause User-Request 77894 bytes_out 2175562 77894 bytes_in 9125688 77894 station_ip 83.122.192.64 77894 port 15728694 77894 nas_port_type Virtual 77894 remote_ip 5.5.5.221 77895 username zamanialireza 77895 unique_id port 77895 terminate_cause User-Request 77895 bytes_out 2161240 77895 bytes_in 7721963 77895 station_ip 83.122.192.64 77895 port 15728696 77895 nas_port_type Virtual 77895 remote_ip 5.5.5.221 77897 username forozande 77897 unique_id port 77897 terminate_cause User-Request 77897 bytes_out 147698 77897 bytes_in 679721 77897 station_ip 83.123.36.50 77897 port 15728697 77897 nas_port_type Virtual 77897 remote_ip 5.5.5.219 77900 username arabpour 77900 unique_id port 77900 terminate_cause User-Request 77900 bytes_out 306696 77900 bytes_in 7041528 77900 station_ip 37.129.0.247 77900 port 15728700 77900 nas_port_type Virtual 77900 remote_ip 5.5.5.216 77902 username forozande 77902 unique_id port 77902 terminate_cause User-Request 77902 bytes_out 72777 77902 bytes_in 187639 77902 station_ip 83.123.222.7 77902 port 15728703 77902 nas_port_type Virtual 77902 remote_ip 5.5.5.214 77909 username forozande 77909 unique_id port 77909 terminate_cause User-Request 77885 bytes_in 249832 77885 station_ip 5.119.38.126 77885 port 15728679 77885 nas_port_type Virtual 77885 remote_ip 5.5.5.231 77887 username soleymani 77887 unique_id port 77887 terminate_cause Lost-Carrier 77887 bytes_out 32004 77887 bytes_in 192378 77887 station_ip 5.119.107.83 77887 port 15728682 77887 nas_port_type Virtual 77887 remote_ip 5.5.5.229 77891 username alinezhad 77891 unique_id port 77891 terminate_cause User-Request 77891 bytes_out 0 77891 bytes_in 0 77891 station_ip 5.202.22.209 77891 port 15728689 77891 nas_port_type Virtual 77891 remote_ip 5.5.5.243 77893 username hamideh 77893 unique_id port 77893 terminate_cause Lost-Carrier 77893 bytes_out 256741 77893 bytes_in 3116478 77893 station_ip 5.119.37.40 77893 port 15728683 77893 nas_port_type Virtual 77893 remote_ip 5.5.5.228 77896 username soleymani 77896 unique_id port 77896 terminate_cause Lost-Carrier 77896 bytes_out 279769 77896 bytes_in 193575 77896 station_ip 5.119.61.8 77896 port 15728690 77896 nas_port_type Virtual 77896 remote_ip 5.5.5.225 77905 username arabpour 77905 unique_id port 77905 terminate_cause User-Request 77905 bytes_out 246014 77905 bytes_in 6468488 77905 station_ip 37.129.0.247 77905 port 15728705 77905 nas_port_type Virtual 77905 remote_ip 5.5.5.216 77906 username alinezhad 77906 unique_id port 77906 terminate_cause User-Request 77906 bytes_out 0 77906 bytes_in 0 77906 station_ip 5.202.22.209 77906 port 15728707 77906 nas_port_type Virtual 77906 remote_ip 5.5.5.243 77907 username mahdavi 77907 unique_id port 77907 terminate_cause User-Request 77907 bytes_out 569951 77907 bytes_in 12075242 77907 station_ip 83.122.250.95 77907 port 15728708 77907 nas_port_type Virtual 77907 remote_ip 5.5.5.213 77913 username mahdavi 77913 unique_id port 77913 terminate_cause User-Request 77913 bytes_out 238237 77913 bytes_in 3161668 77913 station_ip 83.122.250.95 77913 port 15728716 77913 nas_port_type Virtual 77913 remote_ip 5.5.5.213 77915 username mahdavi 77915 unique_id port 77915 terminate_cause User-Request 77915 bytes_out 443161 77915 bytes_in 10927798 77915 station_ip 83.122.250.95 77915 port 15728718 77915 nas_port_type Virtual 77915 remote_ip 5.5.5.213 77926 username forozande 77926 unique_id port 77926 terminate_cause User-Request 77926 bytes_out 39193 77926 bytes_in 453279 77926 station_ip 83.122.132.250 77926 port 15728728 77926 nas_port_type Virtual 77926 remote_ip 5.5.5.204 77930 username soleymani 77930 unique_id port 77930 terminate_cause Lost-Carrier 77930 bytes_out 59647 77930 bytes_in 318257 77930 station_ip 5.119.144.24 77930 port 15728727 77930 nas_port_type Virtual 77930 remote_ip 5.5.5.205 77933 username rashidi 77933 unique_id port 77933 terminate_cause Lost-Carrier 77933 bytes_out 14422793 77933 bytes_in 26860697 77933 station_ip 5.119.233.68 77933 port 15728699 77933 nas_port_type Virtual 77933 remote_ip 5.5.5.217 77942 username mobina 77942 kill_reason Maximum check online fails reached 77942 unique_id port 77942 bytes_out 48548 77942 bytes_in 249511 77942 station_ip 5.124.24.126 77942 port 15728741 77942 nas_port_type Virtual 77942 remote_ip 5.5.5.195 77945 username madadi 77945 unique_id port 77945 terminate_cause Lost-Carrier 77945 bytes_out 276107 77945 bytes_in 892125 77945 station_ip 5.119.255.42 77945 port 15728733 77945 nas_port_type Virtual 77945 remote_ip 5.5.5.202 77953 username soleymani 77953 unique_id port 77953 terminate_cause Lost-Carrier 77953 bytes_out 188019 77953 bytes_in 587512 77953 station_ip 5.120.30.113 77953 port 15728747 77953 nas_port_type Virtual 77953 remote_ip 5.5.5.193 77954 username alinezhad 77954 unique_id port 77954 terminate_cause User-Request 77903 bytes_in 2543008 77903 station_ip 83.122.249.39 77903 port 15728702 77903 nas_port_type Virtual 77903 remote_ip 5.5.5.215 77912 username mahdavi 77912 unique_id port 77912 terminate_cause User-Request 77912 bytes_out 79854 77912 bytes_in 606822 77912 station_ip 83.122.250.95 77912 port 15728715 77912 nas_port_type Virtual 77912 remote_ip 5.5.5.213 77917 username soleymani 77917 unique_id port 77917 terminate_cause Lost-Carrier 77917 bytes_out 79648 77917 bytes_in 333246 77917 station_ip 5.119.111.237 77917 port 15728714 77917 nas_port_type Virtual 77917 remote_ip 5.5.5.210 77919 username ahmadipour 77919 unique_id port 77919 terminate_cause Lost-Carrier 77919 bytes_out 2272451 77919 bytes_in 40471982 77919 station_ip 83.123.230.242 77919 port 15728710 77919 nas_port_type Virtual 77919 remote_ip 5.5.5.212 77920 username madadi 77920 unique_id port 77920 terminate_cause Lost-Carrier 77920 bytes_out 1093003 77920 bytes_in 3371846 77920 station_ip 5.119.18.208 77920 port 15728695 77920 nas_port_type Virtual 77920 remote_ip 5.5.5.220 77923 username forozande 77923 unique_id port 77923 terminate_cause User-Request 77923 bytes_out 20851 77923 bytes_in 77481 77923 station_ip 83.123.222.7 77923 port 15728724 77923 nas_port_type Virtual 77923 remote_ip 5.5.5.214 77931 username amin.insta22 77931 unique_id port 77931 terminate_cause User-Request 77931 bytes_out 0 77931 bytes_in 0 77931 station_ip 5.233.79.240 77931 port 15728731 77931 nas_port_type Virtual 77931 remote_ip 5.5.5.203 77935 username madadi 77935 unique_id port 77935 terminate_cause Lost-Carrier 77935 bytes_out 171288 77935 bytes_in 719392 77935 station_ip 5.120.62.93 77935 port 15728722 77935 nas_port_type Virtual 77935 remote_ip 5.5.5.208 77940 username mobina 77940 unique_id port 77940 terminate_cause User-Request 77940 bytes_out 0 77940 bytes_in 0 77940 station_ip 5.53.38.23 77940 port 15728742 77940 nas_port_type Virtual 77940 remote_ip 5.5.5.201 77944 username alinezhad 77944 unique_id port 77944 terminate_cause User-Request 77944 bytes_out 0 77944 bytes_in 0 77944 station_ip 5.202.10.154 77944 port 15728744 77944 nas_port_type Virtual 77944 remote_ip 5.5.5.194 77946 username alirezazamani 77946 unique_id port 77946 terminate_cause User-Request 77946 bytes_out 0 77946 bytes_in 0 77946 station_ip 94.241.178.166 77946 port 15728745 77946 nas_port_type Virtual 77946 remote_ip 5.5.5.196 77948 username soleymani 77948 unique_id port 77948 terminate_cause Lost-Carrier 77948 bytes_out 65888 77948 bytes_in 392112 77948 station_ip 5.119.17.219 77948 port 15728738 77948 nas_port_type Virtual 77948 remote_ip 5.5.5.197 77958 username soleymani 77958 unique_id port 77958 terminate_cause Lost-Carrier 77958 bytes_out 71245 77958 bytes_in 246105 77958 station_ip 5.120.167.218 77958 port 15728759 77958 nas_port_type Virtual 77958 remote_ip 5.5.5.185 77967 username amin.insta22 77967 unique_id port 77967 terminate_cause Lost-Carrier 77967 bytes_out 2505108 77967 bytes_in 47686439 77967 station_ip 5.233.79.240 77967 port 15728732 77967 nas_port_type Virtual 77967 remote_ip 5.5.5.203 77971 username ahmadipour 77971 unique_id port 77971 terminate_cause Lost-Carrier 77971 bytes_out 321235 77971 bytes_in 5666155 77971 station_ip 37.129.35.213 77971 port 15728772 77971 nas_port_type Virtual 77971 remote_ip 5.5.5.191 77973 username alireza 77973 unique_id port 77973 terminate_cause User-Request 77973 bytes_out 204973 77973 bytes_in 4524628 77973 station_ip 5.119.51.95 77973 port 15728776 77973 nas_port_type Virtual 77973 remote_ip 5.5.5.184 77978 username asadi 77978 unique_id port 77978 terminate_cause User-Request 77978 bytes_out 85469 77908 nas_port_type Virtual 77908 remote_ip 5.5.5.240 77911 username mahdavi 77911 unique_id port 77911 terminate_cause User-Request 77911 bytes_out 22131 77911 bytes_in 28798 77911 station_ip 83.122.250.95 77911 port 15728713 77911 nas_port_type Virtual 77911 remote_ip 5.5.5.213 77918 username arabpour 77918 unique_id port 77918 terminate_cause User-Request 77918 bytes_out 175608 77918 bytes_in 4218507 77918 station_ip 37.129.0.247 77918 port 15728720 77918 nas_port_type Virtual 77918 remote_ip 5.5.5.216 77922 username soleymani 77922 unique_id port 77922 terminate_cause Lost-Carrier 77922 bytes_out 144122 77922 bytes_in 271949 77922 station_ip 5.119.108.60 77922 port 15728721 77922 nas_port_type Virtual 77922 remote_ip 5.5.5.209 81221 username aminvpn 81221 mac 81221 bytes_out 189172 81221 bytes_in 1516734 81221 station_ip 5.119.30.76 81221 port 14 81221 unique_id port 81221 remote_ip 10.8.0.6 81223 username forozande 77927 username forozande 77927 unique_id port 77927 terminate_cause User-Request 77927 bytes_out 45276 77927 bytes_in 97256 77927 station_ip 83.122.132.250 77927 port 15728729 77927 nas_port_type Virtual 77927 remote_ip 5.5.5.204 77929 username reza 77929 unique_id port 77929 terminate_cause User-Request 77929 bytes_out 217908 77929 bytes_in 5436177 77929 station_ip 83.122.159.4 77929 port 15728726 77929 nas_port_type Virtual 77929 remote_ip 5.5.5.206 77932 username mobina 77932 unique_id port 77932 terminate_cause Lost-Carrier 77932 bytes_out 2579611 77932 bytes_in 48968132 77932 station_ip 5.124.152.163 77932 port 15728666 77932 nas_port_type Virtual 77932 remote_ip 5.5.5.237 77934 username reza 77934 unique_id port 77934 terminate_cause User-Request 77934 bytes_out 12733 77934 bytes_in 137764 77934 station_ip 83.122.159.4 77934 port 15728730 77934 nas_port_type Virtual 77934 remote_ip 5.5.5.206 77936 username mobina 77936 unique_id port 77936 terminate_cause User-Request 77936 bytes_out 0 77936 bytes_in 0 77936 station_ip 5.53.38.23 77936 port 15728734 77936 nas_port_type Virtual 77936 remote_ip 5.5.5.201 77937 username dehghan 77937 unique_id port 77937 terminate_cause User-Request 77937 bytes_out 242342 77937 bytes_in 4419397 77937 station_ip 83.123.94.216 77937 port 15728735 77937 nas_port_type Virtual 77937 remote_ip 5.5.5.200 77939 username ahmadi 77939 unique_id port 77939 terminate_cause User-Request 77939 bytes_out 201077 77939 bytes_in 3609901 77939 station_ip 83.122.108.119 77939 port 15728736 77939 nas_port_type Virtual 77939 remote_ip 5.5.5.199 77947 username pouria 77947 unique_id port 77947 terminate_cause Lost-Carrier 77947 bytes_out 1384564 77947 bytes_in 31541222 77947 station_ip 151.235.71.54 77947 port 15728737 77947 nas_port_type Virtual 77947 remote_ip 5.5.5.198 77949 username alirezazamani 77949 unique_id port 77949 terminate_cause User-Request 77949 bytes_out 10110 77949 bytes_in 23236 77949 station_ip 83.122.31.237 77949 port 15728749 77949 nas_port_type Virtual 77949 remote_ip 5.5.5.192 77951 username alirezazamani 77951 unique_id port 77951 terminate_cause User-Request 77951 bytes_out 0 77951 bytes_in 0 77951 station_ip 94.241.178.166 77951 port 15728752 77951 nas_port_type Virtual 77951 remote_ip 5.5.5.196 77952 username alinezhad 77952 unique_id port 77952 terminate_cause User-Request 77952 bytes_out 29510 77952 bytes_in 126447 77952 station_ip 5.202.10.154 77952 port 15728748 77952 nas_port_type Virtual 77952 remote_ip 5.5.5.194 77955 username soleymani 77955 unique_id port 77955 terminate_cause Lost-Carrier 77955 bytes_out 81007 77955 bytes_in 307629 77955 station_ip 5.120.119.75 77909 bytes_out 31229 77909 bytes_in 217793 77909 station_ip 83.123.222.7 77909 port 15728709 77909 nas_port_type Virtual 77909 remote_ip 5.5.5.214 77910 username mahdavi 77910 unique_id port 77910 terminate_cause User-Request 77910 bytes_out 51094 77910 bytes_in 90191 77910 station_ip 83.122.250.95 77910 port 15728711 77910 nas_port_type Virtual 77910 remote_ip 5.5.5.213 77914 username mahdavi 77914 unique_id port 77914 terminate_cause User-Request 77914 bytes_out 88637 77914 bytes_in 570730 77914 station_ip 83.122.250.95 77914 port 15728717 77914 nas_port_type Virtual 77914 remote_ip 5.5.5.213 77916 username mahdavi 77916 unique_id port 77916 terminate_cause User-Request 77916 bytes_out 231380 77916 bytes_in 4944884 77916 station_ip 83.122.250.95 77916 port 15728719 77916 nas_port_type Virtual 77916 remote_ip 5.5.5.213 77921 username ahmad 77921 unique_id port 77921 terminate_cause User-Request 77921 bytes_out 1857165 77921 bytes_in 33851540 77921 station_ip 86.57.121.225 77921 port 15728698 77921 nas_port_type Virtual 77921 remote_ip 5.5.5.218 77925 username forozande 77925 unique_id port 77925 terminate_cause User-Request 77925 bytes_out 15931 77925 bytes_in 23466 77925 station_ip 83.123.222.7 77925 port 15728725 77925 nas_port_type Virtual 77925 remote_ip 5.5.5.214 77928 username alirezazamani 77928 unique_id port 77928 terminate_cause User-Request 77928 bytes_out 31035489 77928 bytes_in 390668479 77928 station_ip 31.57.142.127 77928 port 15728686 77928 nas_port_type Virtual 77928 remote_ip 5.5.5.227 77938 username zoha 77938 unique_id port 77938 terminate_cause User-Request 77938 bytes_out 1938041 77938 bytes_in 22799005 77938 station_ip 5.120.148.168 77938 port 15728712 77938 nas_port_type Virtual 77938 remote_ip 5.5.5.211 77941 username alirezazamani 77941 unique_id port 77941 terminate_cause User-Request 77941 bytes_out 228877 77941 bytes_in 1478462 77941 station_ip 94.241.178.166 77941 port 15728740 77941 nas_port_type Virtual 77941 remote_ip 5.5.5.196 77943 username alirezazamani 77943 unique_id port 77943 terminate_cause User-Request 77943 bytes_out 29515 77943 bytes_in 49527 77943 station_ip 94.241.178.166 77943 port 15728743 77943 nas_port_type Virtual 77943 remote_ip 5.5.5.196 77950 username alirezazamani 77950 unique_id port 77950 terminate_cause User-Request 77950 bytes_out 0 77950 bytes_in 0 77950 station_ip 94.241.178.166 77950 port 15728751 77950 nas_port_type Virtual 77950 remote_ip 5.5.5.196 77962 username ahmadipour 77962 unique_id port 77962 terminate_cause Lost-Carrier 77962 bytes_out 43648 77962 bytes_in 1037735 77962 station_ip 37.129.35.213 77962 port 15728750 77962 nas_port_type Virtual 77962 remote_ip 5.5.5.191 77968 username soleymani 77968 unique_id port 77968 terminate_cause Lost-Carrier 77968 bytes_out 241974 77968 bytes_in 317928 77968 station_ip 5.120.35.160 77968 port 15728769 77968 nas_port_type Virtual 77968 remote_ip 5.5.5.182 77981 username asadi 77981 unique_id port 77981 terminate_cause User-Request 77981 bytes_out 15988 77981 bytes_in 79899 77981 station_ip 83.122.13.137 77981 port 15728783 77981 nas_port_type Virtual 77981 remote_ip 5.5.5.176 77983 username mobina 77983 unique_id port 77983 terminate_cause Lost-Carrier 77983 bytes_out 403543 77983 bytes_in 2861005 77983 station_ip 5.124.13.161 77983 port 15728754 77983 nas_port_type Virtual 77983 remote_ip 5.5.5.189 77987 username asadi 77987 unique_id port 77987 terminate_cause User-Request 77987 bytes_out 25503 77987 bytes_in 165772 77987 station_ip 83.122.13.137 77987 port 15728787 77987 nas_port_type Virtual 77987 remote_ip 5.5.5.176 77988 username majid 77954 bytes_out 101703 77954 bytes_in 747256 77954 station_ip 5.202.26.221 77954 port 15728755 77954 nas_port_type Virtual 77954 remote_ip 5.5.5.188 77956 username soleymani 77956 unique_id port 77956 terminate_cause Lost-Carrier 77956 bytes_out 32354 77956 bytes_in 190486 77956 station_ip 5.119.72.191 77956 port 15728756 77956 nas_port_type Virtual 77956 remote_ip 5.5.5.187 81223 unique_id port 81223 terminate_cause User-Request 81223 bytes_out 29947 81223 bytes_in 142292 81223 station_ip 83.122.72.191 81223 port 15728806 81223 nas_port_type Virtual 81223 remote_ip 5.5.5.167 81227 username aminvpn 77963 username mahbobeh 77963 unique_id port 77963 terminate_cause Lost-Carrier 77963 bytes_out 31341572 77963 bytes_in 109779770 77963 station_ip 37.129.131.148 77963 port 15728723 77963 nas_port_type Virtual 77963 remote_ip 5.5.5.207 77965 username zoha 77965 unique_id port 77965 terminate_cause Lost-Carrier 77965 bytes_out 3617314 77965 bytes_in 106182049 77965 station_ip 5.120.148.168 77965 port 15728762 77965 nas_port_type Virtual 77965 remote_ip 5.5.5.211 77966 username pouria 77966 unique_id port 77966 terminate_cause Lost-Carrier 77966 bytes_out 24635474 77966 bytes_in 592674345 77966 station_ip 151.235.71.54 77966 port 15728746 77966 nas_port_type Virtual 77966 remote_ip 5.5.5.198 77969 username ahmadi 77969 unique_id port 77969 terminate_cause User-Request 77969 bytes_out 0 77969 bytes_in 0 77969 station_ip 83.122.64.87 77969 port 15728771 77969 nas_port_type Virtual 77969 remote_ip 5.5.5.181 77970 username alirezazamani 77970 unique_id port 77970 terminate_cause User-Request 77970 bytes_out 31169216 77970 bytes_in 80783301 77970 station_ip 31.57.142.127 77970 port 15728739 77970 nas_port_type Virtual 77970 remote_ip 5.5.5.227 77974 username soleymani 77974 unique_id port 77974 terminate_cause Lost-Carrier 77974 bytes_out 666686 77974 bytes_in 16870976 77974 station_ip 5.120.11.53 77974 port 15728774 77974 nas_port_type Virtual 77974 remote_ip 5.5.5.179 77975 username soleymani 77975 unique_id port 77975 terminate_cause Lost-Carrier 77975 bytes_out 130868 77975 bytes_in 965771 77975 station_ip 5.120.20.155 77975 port 15728775 77975 nas_port_type Virtual 77975 remote_ip 5.5.5.178 77977 username asadi 77977 unique_id port 77977 terminate_cause User-Request 77977 bytes_out 184952 77977 bytes_in 2776262 77977 station_ip 83.122.13.137 77977 port 15728780 77977 nas_port_type Virtual 77977 remote_ip 5.5.5.176 77979 username alireza 77979 unique_id port 77979 terminate_cause User-Request 77979 bytes_out 1063251 77979 bytes_in 37601877 77979 station_ip 5.119.51.95 77979 port 15728779 77979 nas_port_type Virtual 77979 remote_ip 5.5.5.177 77980 username asadi 77980 unique_id port 77980 terminate_cause User-Request 77980 bytes_out 20314 77980 bytes_in 112876 77980 station_ip 83.122.13.137 77980 port 15728782 77980 nas_port_type Virtual 77980 remote_ip 5.5.5.176 77985 username mahbobeh 77985 unique_id port 77985 terminate_cause Lost-Carrier 77985 bytes_out 6865468 77985 bytes_in 42820640 77985 station_ip 37.129.131.148 77985 port 15728778 77985 nas_port_type Virtual 77985 remote_ip 5.5.5.207 77995 username soleymani 77995 unique_id port 77995 terminate_cause Lost-Carrier 77995 bytes_out 247698 77995 bytes_in 159768 77995 station_ip 5.120.120.175 77995 port 15728797 77995 nas_port_type Virtual 77995 remote_ip 5.5.5.171 77996 username majid 77996 unique_id port 77996 terminate_cause Lost-Carrier 77996 bytes_out 615079 77996 bytes_in 12342937 77996 station_ip 46.225.208.76 77996 port 15728798 77996 nas_port_type Virtual 77996 remote_ip 5.5.5.170 77998 username asadi 81227 mac 77955 port 15728753 77955 nas_port_type Virtual 77955 remote_ip 5.5.5.190 77957 username alinezhad 77957 unique_id port 77957 terminate_cause User-Request 77957 bytes_out 10422 77957 bytes_in 25442 77957 station_ip 5.202.26.221 77957 port 15728760 77957 nas_port_type Virtual 77957 remote_ip 5.5.5.188 77959 username alireza 77959 unique_id port 77959 terminate_cause User-Request 77959 bytes_out 2018469 77959 bytes_in 55607795 77959 station_ip 5.119.51.95 77959 port 15728761 77959 nas_port_type Virtual 77959 remote_ip 5.5.5.184 77961 username madadi 77961 unique_id port 77961 terminate_cause Lost-Carrier 77961 bytes_out 577162 77961 bytes_in 2984037 77961 station_ip 5.120.37.181 77961 port 15728757 77961 nas_port_type Virtual 77961 remote_ip 5.5.5.186 77964 username madadi 77964 unique_id port 77964 terminate_cause Lost-Carrier 77964 bytes_out 86766 77964 bytes_in 794015 77964 station_ip 5.119.109.215 77964 port 15728766 77964 nas_port_type Virtual 77964 remote_ip 5.5.5.183 77972 username mahbobeh 77972 unique_id port 77972 terminate_cause Lost-Carrier 77972 bytes_out 2480124 77972 bytes_in 30194240 77972 station_ip 37.129.131.148 77972 port 15728768 77972 nas_port_type Virtual 77972 remote_ip 5.5.5.207 77976 username alireza 77976 unique_id port 77976 terminate_cause Lost-Carrier 77976 bytes_out 150865 77976 bytes_in 3433097 77976 station_ip 5.119.51.95 77976 port 15728777 77976 nas_port_type Virtual 77976 remote_ip 5.5.5.184 77992 username soleymani 77992 unique_id port 77992 terminate_cause User-Request 77992 bytes_out 0 77992 bytes_in 0 77992 station_ip 5.120.120.175 77992 port 15728795 77992 nas_port_type Virtual 77992 remote_ip 5.5.5.171 77994 username soleymani 77994 unique_id port 77994 terminate_cause Lost-Carrier 77994 bytes_out 337141 77994 bytes_in 280922 77994 station_ip 5.120.163.247 77994 port 15728792 77994 nas_port_type Virtual 77994 remote_ip 5.5.5.173 78001 username zamanialireza 78001 unique_id port 78001 terminate_cause User-Request 78001 bytes_out 1521340 78001 bytes_in 6502646 78001 station_ip 83.123.246.164 78001 port 15728802 78001 nas_port_type Virtual 78001 remote_ip 5.5.5.168 78008 username alirezazamani 78008 unique_id port 78008 terminate_cause User-Request 78008 bytes_out 153250 78008 bytes_in 340235 78008 station_ip 5.119.209.205 78008 port 15728808 78008 nas_port_type Virtual 78008 remote_ip 5.5.5.166 78013 username amin.insta22 78013 unique_id port 78013 terminate_cause User-Request 78013 bytes_out 27245043 78013 bytes_in 634476303 78013 station_ip 31.59.37.27 78013 port 15728773 78013 nas_port_type Virtual 78013 remote_ip 5.5.5.180 78019 username alinezhad 78019 unique_id port 78019 terminate_cause User-Request 78019 bytes_out 0 78019 bytes_in 0 78019 station_ip 5.202.25.230 78019 port 15728822 78019 nas_port_type Virtual 78019 remote_ip 5.5.5.161 78020 username soleymani 78020 unique_id port 78020 terminate_cause Lost-Carrier 78020 bytes_out 378045 78020 bytes_in 2978613 78020 station_ip 5.119.88.36 78020 port 15728815 78020 nas_port_type Virtual 78020 remote_ip 5.5.5.159 78023 username soleymani 78023 unique_id port 78023 terminate_cause Lost-Carrier 78023 bytes_out 18842 78023 bytes_in 152821 78023 station_ip 5.119.215.70 78023 port 15728821 78023 nas_port_type Virtual 78023 remote_ip 5.5.5.156 78025 username soleymani 78025 unique_id port 78025 terminate_cause Lost-Carrier 78025 bytes_out 25822 78025 bytes_in 172727 78025 station_ip 5.119.30.193 78025 port 15728825 78025 nas_port_type Virtual 78025 remote_ip 5.5.5.155 78027 username madadi 78027 unique_id port 78027 terminate_cause Lost-Carrier 78027 bytes_out 323499 78027 bytes_in 4749959 77978 bytes_in 900454 77978 station_ip 83.122.13.137 77978 port 15728781 77978 nas_port_type Virtual 77978 remote_ip 5.5.5.176 77982 username asadi 77982 unique_id port 77982 terminate_cause User-Request 77982 bytes_out 61959 77982 bytes_in 604582 77982 station_ip 83.122.13.137 77982 port 15728784 77982 nas_port_type Virtual 77982 remote_ip 5.5.5.176 77984 username asadi 77984 unique_id port 77984 terminate_cause User-Request 77984 bytes_out 53910 77984 bytes_in 643884 77984 station_ip 83.122.13.137 77984 port 15728785 77984 nas_port_type Virtual 77984 remote_ip 5.5.5.176 77986 username amin.insta22 77986 unique_id port 77986 terminate_cause User-Request 77986 bytes_out 9552916 77986 bytes_in 215185522 77986 station_ip 31.59.37.27 77986 port 15728770 77986 nas_port_type Virtual 77986 remote_ip 5.5.5.244 77989 username majid 77989 unique_id port 77989 terminate_cause User-Request 77989 bytes_out 32777 77989 bytes_in 82078 77989 station_ip 83.122.35.84 77989 port 15728789 77989 nas_port_type Virtual 77989 remote_ip 5.5.5.174 77993 username majid 77993 unique_id port 77993 terminate_cause User-Request 77993 bytes_out 17793 77993 bytes_in 66720 77993 station_ip 113.203.113.52 77993 port 15728796 77993 nas_port_type Virtual 77993 remote_ip 5.5.5.172 77997 username asadi 77997 unique_id port 77997 terminate_cause User-Request 77997 bytes_out 5891 77997 bytes_in 22526 77997 station_ip 83.122.13.137 77997 port 15728799 77997 nas_port_type Virtual 77997 remote_ip 5.5.5.176 78011 username forozande 78011 unique_id port 78011 terminate_cause User-Request 78011 bytes_out 26627 78011 bytes_in 228621 78011 station_ip 37.129.87.147 78011 port 15728812 78011 nas_port_type Virtual 78011 remote_ip 5.5.5.163 78017 username madadi 78017 unique_id port 78017 terminate_cause Lost-Carrier 78017 bytes_out 54165 78017 bytes_in 251918 78017 station_ip 5.119.51.106 78017 port 15728816 78017 nas_port_type Virtual 78017 remote_ip 5.5.5.158 78021 username madadi 78021 unique_id port 78021 terminate_cause Lost-Carrier 78021 bytes_out 13666 78021 bytes_in 126189 78021 station_ip 5.119.236.178 78021 port 15728819 78021 nas_port_type Virtual 78021 remote_ip 5.5.5.157 78029 username forozande 78029 unique_id port 78029 terminate_cause User-Request 78029 bytes_out 65700 78029 bytes_in 125847 78029 station_ip 37.129.200.20 78029 port 15728830 78029 nas_port_type Virtual 78029 remote_ip 5.5.5.152 78032 username asadi 78032 unique_id port 78032 terminate_cause User-Request 78032 bytes_out 157597 78032 bytes_in 1838797 78032 station_ip 37.129.212.0 78032 port 15728834 78032 nas_port_type Virtual 78032 remote_ip 5.5.5.164 78036 username asadi 78036 unique_id port 78036 terminate_cause User-Request 78036 bytes_out 285890 78036 bytes_in 4187581 78036 station_ip 37.129.212.0 78036 port 15728839 78036 nas_port_type Virtual 78036 remote_ip 5.5.5.164 78038 username ahmad 78038 unique_id port 78038 terminate_cause User-Request 78038 bytes_out 88913 78038 bytes_in 588155 78038 station_ip 86.57.121.225 78038 port 15728840 78038 nas_port_type Virtual 78038 remote_ip 5.5.5.218 78040 username alinezhad 78040 unique_id port 78040 terminate_cause User-Request 78040 bytes_out 0 78040 bytes_in 0 78040 station_ip 5.202.25.230 78040 port 15728841 78040 nas_port_type Virtual 78040 remote_ip 5.5.5.161 78047 username zamanialireza 78047 unique_id port 78047 terminate_cause User-Request 78047 bytes_out 0 78047 bytes_in 0 78047 station_ip 83.123.120.94 78047 port 15728848 78047 nas_port_type Virtual 78047 remote_ip 5.5.5.147 78050 username forozande 78050 unique_id port 78050 terminate_cause User-Request 78050 bytes_out 105394 77988 unique_id port 77988 terminate_cause User-Request 77988 bytes_out 21351 77988 bytes_in 159192 77988 station_ip 83.122.35.84 77988 port 15728788 77988 nas_port_type Virtual 77988 remote_ip 5.5.5.174 77990 username majid 77990 unique_id port 77990 terminate_cause User-Request 77990 bytes_out 385 77990 bytes_in 12202 77990 station_ip 83.122.35.84 77990 port 15728791 77990 nas_port_type Virtual 77990 remote_ip 5.5.5.174 77991 username majid 77991 unique_id port 77991 terminate_cause User-Request 77991 bytes_out 198 77991 bytes_in 11002 77991 station_ip 113.203.113.52 77991 port 15728793 77991 nas_port_type Virtual 77991 remote_ip 5.5.5.172 77999 username rashidi 77999 unique_id port 77999 terminate_cause User-Request 77999 bytes_out 5484989 77999 bytes_in 7143679 77999 station_ip 5.119.233.68 77999 port 15728794 77999 nas_port_type Virtual 77999 remote_ip 5.5.5.217 78002 username madadi 78002 unique_id port 78002 terminate_cause Lost-Carrier 78002 bytes_out 89821 78002 bytes_in 481279 78002 station_ip 5.120.123.11 78002 port 15728803 78002 nas_port_type Virtual 78002 remote_ip 5.5.5.167 78004 username alirezazamani 78004 unique_id port 78004 terminate_cause User-Request 78004 bytes_out 406293 78004 bytes_in 1041068 78004 station_ip 5.119.209.205 78004 port 15728804 78004 nas_port_type Virtual 78004 remote_ip 5.5.5.166 78005 username alirezazamani 78005 unique_id port 78005 terminate_cause User-Request 78005 bytes_out 0 78005 bytes_in 0 78005 station_ip 5.119.209.205 78005 port 15728807 78005 nas_port_type Virtual 78005 remote_ip 5.5.5.166 78006 username soleymani 78006 unique_id port 78006 terminate_cause Lost-Carrier 78006 bytes_out 26102 78006 bytes_in 165928 78006 station_ip 5.119.175.173 78006 port 15728805 78006 nas_port_type Virtual 78006 remote_ip 5.5.5.165 78009 username madadi 78009 unique_id port 78009 terminate_cause Lost-Carrier 78009 bytes_out 39268 78009 bytes_in 222073 78009 station_ip 5.120.107.208 78009 port 15728810 78009 nas_port_type Virtual 78009 remote_ip 5.5.5.162 78010 username alirezazamani 78010 unique_id port 78010 terminate_cause Lost-Carrier 78010 bytes_out 152689 78010 bytes_in 808695 78010 station_ip 5.119.209.205 78010 port 15728811 78010 nas_port_type Virtual 78010 remote_ip 5.5.5.166 78012 username alinezhad 78012 unique_id port 78012 terminate_cause User-Request 78012 bytes_out 0 78012 bytes_in 0 78012 station_ip 5.202.25.230 78012 port 15728813 78012 nas_port_type Virtual 78012 remote_ip 5.5.5.161 78014 username soleymani 78014 unique_id port 78014 terminate_cause Lost-Carrier 78014 bytes_out 365754 78014 bytes_in 1968848 78014 station_ip 5.119.236.56 78014 port 15728814 78014 nas_port_type Virtual 78014 remote_ip 5.5.5.160 78015 username asadi 78015 unique_id port 78015 terminate_cause User-Request 78015 bytes_out 92538 78015 bytes_in 1404546 78015 station_ip 37.129.212.0 78015 port 15728817 78015 nas_port_type Virtual 78015 remote_ip 5.5.5.164 78016 username asadi 78016 unique_id port 78016 terminate_cause User-Request 78016 bytes_out 32959 78016 bytes_in 168716 78016 station_ip 37.129.212.0 78016 port 15728818 78016 nas_port_type Virtual 78016 remote_ip 5.5.5.164 78024 username asadi 78024 unique_id port 78024 terminate_cause User-Request 78024 bytes_out 30798 78024 bytes_in 84968 78024 station_ip 37.129.212.0 78024 port 15728827 78024 nas_port_type Virtual 78024 remote_ip 5.5.5.164 78026 username asadi 78026 unique_id port 78026 terminate_cause User-Request 78026 bytes_out 35106 78026 bytes_in 109854 78026 station_ip 37.129.212.0 78026 port 15728828 78026 nas_port_type Virtual 78026 remote_ip 5.5.5.164 78028 username mobina 77998 unique_id port 77998 terminate_cause User-Request 77998 bytes_out 73695 77998 bytes_in 1219029 77998 station_ip 83.122.13.137 77998 port 15728801 77998 nas_port_type Virtual 77998 remote_ip 5.5.5.176 78000 username soleymani 78000 unique_id port 78000 terminate_cause Lost-Carrier 78000 bytes_out 58499 78000 bytes_in 267233 78000 station_ip 5.120.110.199 78000 port 15728800 78000 nas_port_type Virtual 78000 remote_ip 5.5.5.169 78003 username asadi 78003 unique_id port 78003 terminate_cause User-Request 78003 bytes_out 112629 78003 bytes_in 580515 78003 station_ip 37.129.212.0 78003 port 15728806 78003 nas_port_type Virtual 78003 remote_ip 5.5.5.164 78007 username forozande 78007 unique_id port 78007 terminate_cause User-Request 78007 bytes_out 48589 78007 bytes_in 62840 78007 station_ip 37.129.87.147 78007 port 15728809 78007 nas_port_type Virtual 78007 remote_ip 5.5.5.163 78018 username soleymani 78018 unique_id port 78018 terminate_cause User-Request 78018 bytes_out 0 78018 bytes_in 0 78018 station_ip 5.119.215.70 78018 port 15728820 78018 nas_port_type Virtual 78018 remote_ip 5.5.5.156 78022 username asadi 78022 unique_id port 78022 terminate_cause User-Request 78022 bytes_out 120477 78022 bytes_in 2241973 78022 station_ip 37.129.212.0 78022 port 15728824 78022 nas_port_type Virtual 78022 remote_ip 5.5.5.164 78037 username soleymani 78037 unique_id port 78037 terminate_cause Lost-Carrier 78037 bytes_out 79008 78037 bytes_in 329149 78037 station_ip 5.119.93.29 78037 port 15728832 78037 nas_port_type Virtual 78037 remote_ip 5.5.5.151 78039 username amin.insta22 78039 unique_id port 78039 terminate_cause Lost-Carrier 78039 bytes_out 8082232 78039 bytes_in 201642853 78039 station_ip 31.59.37.27 78039 port 15728790 78039 nas_port_type Virtual 78039 remote_ip 5.5.5.244 78041 username mobina 78041 unique_id port 78041 terminate_cause Lost-Carrier 78041 bytes_out 471627 78041 bytes_in 7702939 78041 station_ip 5.123.247.250 78041 port 15728835 78041 nas_port_type Virtual 78041 remote_ip 5.5.5.150 78044 username asadi 78044 unique_id port 78044 terminate_cause User-Request 78044 bytes_out 73139 78044 bytes_in 938796 78044 station_ip 37.129.212.0 78044 port 15728844 78044 nas_port_type Virtual 78044 remote_ip 5.5.5.164 78045 username asadi 78045 unique_id port 78045 terminate_cause User-Request 78045 bytes_out 128074 78045 bytes_in 2637265 78045 station_ip 37.129.212.0 78045 port 15728845 78045 nas_port_type Virtual 78045 remote_ip 5.5.5.164 78052 username madadi 78052 unique_id port 78052 terminate_cause Lost-Carrier 78052 bytes_out 81256 78052 bytes_in 391632 78052 station_ip 5.120.127.32 78052 port 15728853 78052 nas_port_type Virtual 78052 remote_ip 5.5.5.146 78057 username madadi 78057 unique_id port 78057 terminate_cause Lost-Carrier 78057 bytes_out 86499 78057 bytes_in 206051 78057 station_ip 5.119.6.73 78057 port 15728857 78057 nas_port_type Virtual 78057 remote_ip 5.5.5.143 81224 username reza 81224 unique_id port 81224 terminate_cause User-Request 81224 bytes_out 15770 81224 bytes_in 203233 81224 station_ip 83.123.16.96 81224 port 15728804 81224 nas_port_type Virtual 81224 remote_ip 5.5.5.169 78062 username asadi 78062 unique_id port 78062 terminate_cause User-Request 78062 bytes_out 93757 78062 bytes_in 1704303 78062 station_ip 37.129.212.0 78062 port 15728868 78062 nas_port_type Virtual 78062 remote_ip 5.5.5.164 78071 username zamanialireza 78071 unique_id port 78071 terminate_cause User-Request 78071 bytes_out 342496 78071 bytes_in 9271821 78071 station_ip 83.123.49.202 78071 port 15728877 78071 nas_port_type Virtual 78071 remote_ip 5.5.5.137 81226 username heydari 78027 station_ip 5.119.168.155 78027 port 15728826 78027 nas_port_type Virtual 78027 remote_ip 5.5.5.154 78030 username madadi 78030 unique_id port 78030 terminate_cause Lost-Carrier 78030 bytes_out 49200 78030 bytes_in 250568 78030 station_ip 5.120.172.218 78030 port 15728829 78030 nas_port_type Virtual 78030 remote_ip 5.5.5.153 78033 username asadi 78033 unique_id port 78033 terminate_cause User-Request 78033 bytes_out 63990 78033 bytes_in 1000026 78033 station_ip 37.129.212.0 78033 port 15728836 78033 nas_port_type Virtual 78033 remote_ip 5.5.5.164 78035 username forozande 78035 unique_id port 78035 terminate_cause User-Request 78035 bytes_out 63488 78035 bytes_in 319748 78035 station_ip 83.123.21.169 78035 port 15728838 78035 nas_port_type Virtual 78035 remote_ip 5.5.5.149 78042 username asadi 78042 unique_id port 78042 terminate_cause User-Request 78042 bytes_out 8825 78042 bytes_in 20570 78042 station_ip 37.129.212.0 78042 port 15728842 78042 nas_port_type Virtual 78042 remote_ip 5.5.5.164 78046 username zamanialireza 78046 kill_reason Wrong password 78046 unique_id port 78046 bytes_out 0 78046 bytes_in 0 78046 station_ip 83.123.120.94 78046 port 15728847 78046 nas_port_type Virtual 78048 username zamanialireza 78048 unique_id port 78048 terminate_cause User-Request 78048 bytes_out 69761 78048 bytes_in 923122 78048 station_ip 83.123.120.94 78048 port 15728851 78048 nas_port_type Virtual 78048 remote_ip 5.5.5.147 78049 username forozande 78049 unique_id port 78049 terminate_cause User-Request 78049 bytes_out 791873 78049 bytes_in 160200 78049 station_ip 83.123.105.96 78049 port 15728854 78049 nas_port_type Virtual 78049 remote_ip 5.5.5.145 78060 username alinezhad 78060 unique_id port 78060 terminate_cause User-Request 78060 bytes_out 0 78060 bytes_in 0 78060 station_ip 5.202.25.230 78060 port 15728865 78060 nas_port_type Virtual 78060 remote_ip 5.5.5.161 78061 username arabpour 78061 unique_id port 78061 terminate_cause User-Request 78061 bytes_out 0 78061 bytes_in 0 78061 station_ip 83.123.143.202 78061 port 15728867 78061 nas_port_type Virtual 78061 remote_ip 5.5.5.138 78064 username asadi 78064 unique_id port 78064 terminate_cause User-Request 78064 bytes_out 20398 78064 bytes_in 137203 78064 station_ip 37.129.212.0 78064 port 15728870 78064 nas_port_type Virtual 78064 remote_ip 5.5.5.164 78067 username asadi 78067 unique_id port 78067 terminate_cause User-Request 78067 bytes_out 25905 78067 bytes_in 110304 78067 station_ip 37.129.212.0 78067 port 15728872 78067 nas_port_type Virtual 78067 remote_ip 5.5.5.164 78068 username asadi 78068 unique_id port 78068 terminate_cause User-Request 78068 bytes_out 46074 78068 bytes_in 542720 78068 station_ip 37.129.212.0 78068 port 15728874 78068 nas_port_type Virtual 78068 remote_ip 5.5.5.164 78069 username zamanialireza 78069 unique_id port 78069 terminate_cause User-Request 78069 bytes_out 158321 78069 bytes_in 3499473 78069 station_ip 83.123.49.202 78069 port 15728875 78069 nas_port_type Virtual 78069 remote_ip 5.5.5.137 78080 username alinezhad 78080 unique_id port 78080 terminate_cause User-Request 78080 bytes_out 197991 78080 bytes_in 312394 78080 station_ip 5.202.25.230 78080 port 15728886 78080 nas_port_type Virtual 78080 remote_ip 5.5.5.161 78082 username alireza 78082 unique_id port 78082 terminate_cause User-Request 78082 bytes_out 27926791 78082 bytes_in 1024156058 78082 station_ip 5.119.51.95 78082 port 15728823 78082 nas_port_type Virtual 78082 remote_ip 5.5.5.177 78090 username pouria 78090 unique_id port 78090 terminate_cause User-Request 78090 bytes_out 4737110 78090 bytes_in 142465847 78090 station_ip 151.235.87.169 78028 unique_id port 78028 terminate_cause Lost-Carrier 78028 bytes_out 7956910 78028 bytes_in 155257190 78028 station_ip 5.124.178.154 78028 port 15728786 78028 nas_port_type Virtual 78028 remote_ip 5.5.5.175 78031 username alinezhad 78031 unique_id port 78031 terminate_cause User-Request 78031 bytes_out 0 78031 bytes_in 0 78031 station_ip 5.202.25.230 78031 port 15728831 78031 nas_port_type Virtual 78031 remote_ip 5.5.5.161 78034 username asadi 78034 unique_id port 78034 terminate_cause User-Request 78034 bytes_out 86774 78034 bytes_in 520049 78034 station_ip 37.129.212.0 78034 port 15728837 78034 nas_port_type Virtual 78034 remote_ip 5.5.5.164 78043 username alinezhad 78043 unique_id port 78043 terminate_cause User-Request 78043 bytes_out 0 78043 bytes_in 0 78043 station_ip 5.202.25.230 78043 port 15728843 78043 nas_port_type Virtual 78043 remote_ip 5.5.5.161 78051 username ahmad 78051 unique_id port 78051 terminate_cause User-Request 78051 bytes_out 474851 78051 bytes_in 4833452 78051 station_ip 86.57.121.225 78051 port 15728850 78051 nas_port_type Virtual 78051 remote_ip 5.5.5.218 78054 username forozande 78054 unique_id port 78054 terminate_cause User-Request 78054 bytes_out 34088 78054 bytes_in 419261 78054 station_ip 37.129.191.112 78054 port 15728859 78054 nas_port_type Virtual 78054 remote_ip 5.5.5.141 78056 username mobina 78056 unique_id port 78056 terminate_cause Lost-Carrier 78056 bytes_out 404017 78056 bytes_in 4771593 78056 station_ip 5.123.164.104 78056 port 15728856 78056 nas_port_type Virtual 78056 remote_ip 5.5.5.144 78059 username ahmadi 78059 unique_id port 78059 terminate_cause User-Request 78059 bytes_out 91414 78059 bytes_in 962395 78059 station_ip 83.122.89.127 78059 port 15728863 78059 nas_port_type Virtual 78059 remote_ip 5.5.5.140 78063 username asadi 78063 unique_id port 78063 terminate_cause User-Request 78063 bytes_out 11688 78063 bytes_in 98387 78063 station_ip 37.129.212.0 78063 port 15728869 78063 nas_port_type Virtual 78063 remote_ip 5.5.5.164 78070 username asadi 78070 unique_id port 78070 terminate_cause User-Request 78070 bytes_out 35847 78070 bytes_in 563845 78070 station_ip 37.129.212.0 78070 port 15728876 78070 nas_port_type Virtual 78070 remote_ip 5.5.5.164 78072 username asadi 78072 unique_id port 78072 terminate_cause User-Request 78072 bytes_out 29134 78072 bytes_in 66903 78072 station_ip 37.129.212.0 78072 port 15728878 78072 nas_port_type Virtual 78072 remote_ip 5.5.5.164 78079 username mahbobeh 78079 unique_id port 78079 terminate_cause Lost-Carrier 78079 bytes_out 4931749 78079 bytes_in 82863874 78079 station_ip 37.129.131.148 78079 port 15728833 78079 nas_port_type Virtual 78079 remote_ip 5.5.5.207 78081 username mobina 78081 unique_id port 78081 terminate_cause Lost-Carrier 78081 bytes_out 348765 78081 bytes_in 2889389 78081 station_ip 5.123.87.199 78081 port 15728885 78081 nas_port_type Virtual 78081 remote_ip 5.5.5.134 78085 username soleymani 78085 unique_id port 78085 terminate_cause Lost-Carrier 78085 bytes_out 137244 78085 bytes_in 493806 78085 station_ip 5.120.65.105 78085 port 15728887 78085 nas_port_type Virtual 78085 remote_ip 5.5.5.133 78099 username madadi 78099 unique_id port 78099 terminate_cause Lost-Carrier 78099 bytes_out 23996 78099 bytes_in 144708 78099 station_ip 5.119.44.109 78099 port 15728904 78099 nas_port_type Virtual 78099 remote_ip 5.5.5.122 78101 username mobina 78101 unique_id port 78101 terminate_cause Lost-Carrier 78101 bytes_out 6352453 78101 bytes_in 155917049 78101 station_ip 5.123.218.232 78101 port 15728905 78101 nas_port_type Virtual 78101 remote_ip 5.5.5.121 78104 username mobina 78050 bytes_in 2305955 78050 station_ip 83.123.105.96 78050 port 15728855 78050 nas_port_type Virtual 78050 remote_ip 5.5.5.145 78053 username mahdavi 78053 unique_id port 78053 terminate_cause User-Request 78053 bytes_out 98068 78053 bytes_in 268657 78053 station_ip 83.122.143.41 78053 port 15728858 78053 nas_port_type Virtual 78053 remote_ip 5.5.5.142 78055 username alinezhad 78055 unique_id port 78055 terminate_cause User-Request 78055 bytes_out 176535 78055 bytes_in 526423 78055 station_ip 5.202.25.230 78055 port 15728852 78055 nas_port_type Virtual 78055 remote_ip 5.5.5.161 78065 username asadi 78065 unique_id port 78065 terminate_cause User-Request 78065 bytes_out 20065 78065 bytes_in 121909 78065 station_ip 37.129.212.0 78065 port 15728871 78065 nas_port_type Virtual 78065 remote_ip 5.5.5.164 78066 username alinezhad 78066 unique_id port 78066 terminate_cause User-Request 78066 bytes_out 0 78066 bytes_in 0 78066 station_ip 5.202.25.230 78066 port 15728873 78066 nas_port_type Virtual 78066 remote_ip 5.5.5.161 78073 username asadi 78073 unique_id port 78073 terminate_cause User-Request 78073 bytes_out 22242 78073 bytes_in 142829 78073 station_ip 37.129.212.0 78073 port 15728879 78073 nas_port_type Virtual 78073 remote_ip 5.5.5.164 78074 username asadi 78074 unique_id port 78074 terminate_cause User-Request 78074 bytes_out 234972 78074 bytes_in 5420429 78074 station_ip 37.129.212.0 78074 port 15728882 78074 nas_port_type Virtual 78074 remote_ip 5.5.5.164 78076 username abdilahyar 78076 kill_reason Maximum check online fails reached 78076 unique_id port 78076 bytes_out 296969 78076 bytes_in 5064868 78076 station_ip 5.119.244.221 78076 port 15728881 78076 nas_port_type Virtual 78076 remote_ip 5.5.5.135 78086 username alinezhad 78086 unique_id port 78086 terminate_cause User-Request 78086 bytes_out 43615 78086 bytes_in 133295 78086 station_ip 83.122.93.202 78086 port 15728891 78086 nas_port_type Virtual 78086 remote_ip 5.5.5.130 78088 username soleymani 78088 unique_id port 78088 terminate_cause Lost-Carrier 78088 bytes_out 204173 78088 bytes_in 2014489 78088 station_ip 5.119.148.150 78088 port 15728889 78088 nas_port_type Virtual 78088 remote_ip 5.5.5.131 78089 username soleymani 78089 unique_id port 78089 terminate_cause Lost-Carrier 78089 bytes_out 33714 78089 bytes_in 275930 78089 station_ip 5.120.114.159 78089 port 15728892 78089 nas_port_type Virtual 78089 remote_ip 5.5.5.129 78091 username ahmadipour 78091 unique_id port 78091 terminate_cause Lost-Carrier 78091 bytes_out 813869 78091 bytes_in 16672994 78091 station_ip 37.129.140.165 78091 port 15728895 78091 nas_port_type Virtual 78091 remote_ip 5.5.5.127 78097 username alirezazamani 78097 unique_id port 78097 terminate_cause Lost-Carrier 78097 bytes_out 419286 78097 bytes_in 7944169 78097 station_ip 5.119.169.242 78097 port 15728903 78097 nas_port_type Virtual 78097 remote_ip 5.5.5.123 78100 username pouria 78100 unique_id port 78100 terminate_cause Lost-Carrier 78100 bytes_out 84301537 78100 bytes_in 3005789375 78100 station_ip 151.235.87.169 78100 port 15728896 78100 nas_port_type Virtual 78100 remote_ip 5.5.5.132 78102 username alinezhad 78102 unique_id port 78102 terminate_cause User-Request 78102 bytes_out 49674 78102 bytes_in 257103 78102 station_ip 83.122.223.227 78102 port 15728907 78102 nas_port_type Virtual 78102 remote_ip 5.5.5.119 81225 station_ip 83.122.72.191 81225 port 15728807 81225 nas_port_type Virtual 81225 remote_ip 5.5.5.167 81228 username aminvpn 81228 mac 81228 bytes_out 0 81228 bytes_in 0 81228 station_ip 5.119.30.76 78110 username asadi 78110 unique_id port 81228 port 15 78075 username asadi 78075 unique_id port 78075 terminate_cause User-Request 78075 bytes_out 62820 78075 bytes_in 601537 78075 station_ip 37.129.212.0 78075 port 15728883 78075 nas_port_type Virtual 78075 remote_ip 5.5.5.164 78077 username alinezhad 78077 unique_id port 78077 terminate_cause User-Request 78077 bytes_out 0 78077 bytes_in 0 78077 station_ip 5.202.25.230 78077 port 15728884 78077 nas_port_type Virtual 78077 remote_ip 5.5.5.161 78078 username soleymani 78078 unique_id port 78078 terminate_cause Lost-Carrier 78078 bytes_out 49830 78078 bytes_in 495006 78078 station_ip 5.119.83.23 78078 port 15728880 78078 nas_port_type Virtual 78078 remote_ip 5.5.5.136 78083 username aminvpn 78083 unique_id port 78083 terminate_cause User-Request 78083 bytes_out 8692028 78083 bytes_in 45803037 78083 station_ip 78.39.27.231 78083 port 15728846 78083 nas_port_type Virtual 78083 remote_ip 5.5.5.148 78084 username alinezhad 78084 unique_id port 78084 terminate_cause User-Request 78084 bytes_out 195668 78084 bytes_in 850614 78084 station_ip 83.122.93.202 78084 port 15728890 78084 nas_port_type Virtual 78084 remote_ip 5.5.5.130 78087 username reza 78087 unique_id port 78087 terminate_cause User-Request 78087 bytes_out 0 78087 bytes_in 0 78087 station_ip 83.122.23.91 78087 port 15728893 78087 nas_port_type Virtual 78087 remote_ip 5.5.5.128 78092 username reza 78092 unique_id port 78092 terminate_cause User-Request 78092 bytes_out 316635 78092 bytes_in 8383255 78092 station_ip 83.122.23.91 78092 port 15728894 78092 nas_port_type Virtual 78092 remote_ip 5.5.5.128 78093 username zoha 78093 kill_reason Maximum check online fails reached 78093 unique_id port 78093 bytes_out 297677 78093 bytes_in 3259710 78093 station_ip 5.119.101.69 78093 port 15728898 78093 nas_port_type Virtual 78093 remote_ip 5.5.5.125 78103 username arabpour 78103 unique_id port 78103 terminate_cause User-Request 78103 bytes_out 343260 78103 bytes_in 4967388 78103 station_ip 83.123.168.226 78103 port 15728908 78103 nas_port_type Virtual 78103 remote_ip 5.5.5.118 78111 username forozande 78111 unique_id port 78111 terminate_cause User-Request 78111 bytes_out 46124 78111 bytes_in 207465 78111 station_ip 83.122.175.135 78111 port 15728643 78111 nas_port_type Virtual 78111 remote_ip 5.5.5.252 78113 username asadi 78113 unique_id port 78113 terminate_cause User-Request 78113 bytes_out 52400 78113 bytes_in 290257 78113 station_ip 83.123.100.51 78113 port 15728678 78113 nas_port_type Virtual 78113 remote_ip 5.5.5.249 78116 username forozande 78116 unique_id port 78116 terminate_cause User-Request 78116 bytes_out 0 78116 bytes_in 0 78116 station_ip 83.123.224.26 78116 port 15728684 78116 nas_port_type Virtual 78116 remote_ip 5.5.5.250 78120 username asadi 78120 unique_id port 78120 terminate_cause User-Request 78120 bytes_out 145179 78120 bytes_in 2311399 78120 station_ip 83.123.100.51 78120 port 15728693 78120 nas_port_type Virtual 78120 remote_ip 5.5.5.249 78125 username ahmadi 78125 unique_id port 78125 terminate_cause User-Request 78125 bytes_out 0 78125 bytes_in 0 78125 station_ip 83.122.115.119 78125 port 15728697 78125 nas_port_type Virtual 78125 remote_ip 5.5.5.246 78130 username soleymani 78130 unique_id port 78130 terminate_cause Lost-Carrier 78130 bytes_out 505221 78130 bytes_in 2737304 78130 station_ip 5.119.135.98 78130 port 15728703 78130 nas_port_type Virtual 78130 remote_ip 5.5.5.243 78134 username ahmad 78134 unique_id port 78134 terminate_cause User-Request 78134 bytes_out 1455143 78134 bytes_in 42943572 78134 station_ip 86.57.121.225 78134 port 15728704 78134 nas_port_type Virtual 78090 port 15728888 78090 nas_port_type Virtual 78090 remote_ip 5.5.5.132 78094 username madadi 78094 unique_id port 78094 terminate_cause User-Request 78094 bytes_out 3500524 78094 bytes_in 9270846 78094 station_ip 5.119.169.63 78094 port 15728864 78094 nas_port_type Virtual 78094 remote_ip 5.5.5.139 78095 username alirezazamani 78095 unique_id port 78095 terminate_cause Lost-Carrier 78095 bytes_out 351660 78095 bytes_in 8272915 78095 station_ip 5.119.169.242 78095 port 15728902 78095 nas_port_type Virtual 78095 remote_ip 5.5.5.124 78096 username majid 78096 unique_id port 78096 terminate_cause User-Request 78096 bytes_out 24243642 78096 bytes_in 833761197 78096 station_ip 86.57.108.203 78096 port 15728897 78096 nas_port_type Virtual 78096 remote_ip 5.5.5.126 78098 username amin.insta22 78098 unique_id port 78098 terminate_cause User-Request 78098 bytes_out 27028028 78098 bytes_in 644354005 78098 station_ip 5.233.79.240 78098 port 15728849 78098 nas_port_type Virtual 78098 remote_ip 5.5.5.203 78104 unique_id port 78104 terminate_cause Lost-Carrier 78104 bytes_out 23837 78104 bytes_in 143575 78104 station_ip 5.124.43.237 78104 port 15728909 78104 nas_port_type Virtual 78104 remote_ip 5.5.5.117 78106 username mahbobeh 78106 unique_id port 78106 terminate_cause Admin-Reboot 78106 bytes_out 158128 78106 bytes_in 2393489 78106 station_ip 37.129.131.148 78106 port 15728911 78106 nas_port_type Virtual 78106 remote_ip 5.5.5.207 78108 username madadi 78108 unique_id port 78108 terminate_cause Lost-Carrier 78108 bytes_out 23168 78108 bytes_in 149281 78108 station_ip 5.120.15.24 78108 port 15728640 78108 nas_port_type Virtual 78108 remote_ip 5.5.5.255 78112 username forozande 78112 unique_id port 78112 terminate_cause User-Request 78112 bytes_out 75786 78112 bytes_in 600301 78112 station_ip 83.123.224.26 78112 port 15728676 78112 nas_port_type Virtual 78112 remote_ip 5.5.5.250 78114 username asadi 78114 unique_id port 78114 terminate_cause User-Request 78114 bytes_out 323819 78114 bytes_in 5360489 78114 station_ip 83.123.100.51 78114 port 15728679 78114 nas_port_type Virtual 78114 remote_ip 5.5.5.249 78115 username asadi 78115 unique_id port 78115 terminate_cause User-Request 78115 bytes_out 292539 78115 bytes_in 4393699 78115 station_ip 83.123.100.51 78115 port 15728683 78115 nas_port_type Virtual 78115 remote_ip 5.5.5.249 78122 username alireza 78122 unique_id port 78122 terminate_cause Lost-Carrier 78122 bytes_out 145877 78122 bytes_in 1332727 78122 station_ip 5.119.51.95 78122 port 15728688 78122 nas_port_type Virtual 78122 remote_ip 5.5.5.247 78124 username asadi 78124 unique_id port 78124 terminate_cause User-Request 78124 bytes_out 164315 78124 bytes_in 3836485 78124 station_ip 83.123.100.51 78124 port 15728696 78124 nas_port_type Virtual 78124 remote_ip 5.5.5.249 78129 username iranmanesh 78129 unique_id port 78129 terminate_cause User-Request 78129 bytes_out 32279 78129 bytes_in 280391 78129 station_ip 37.129.116.124 78129 port 15728701 78129 nas_port_type Virtual 78129 remote_ip 5.5.5.245 78132 username forozande 78132 unique_id port 78132 terminate_cause User-Request 78132 bytes_out 15160 78132 bytes_in 30479 78132 station_ip 37.129.3.102 78132 port 15728710 78132 nas_port_type Virtual 78132 remote_ip 5.5.5.241 78143 username forozande 78143 unique_id port 78143 terminate_cause User-Request 78143 bytes_out 7504 78143 bytes_in 18865 78143 station_ip 113.203.77.172 78143 port 15728720 78143 nas_port_type Virtual 78143 remote_ip 5.5.5.233 78145 username asadi 78145 unique_id port 78145 terminate_cause User-Request 78145 bytes_out 91048 78145 bytes_in 1152598 78105 username madadi 78105 unique_id port 78105 terminate_cause Lost-Carrier 78105 bytes_out 50378 78105 bytes_in 306772 78105 station_ip 5.120.17.244 78105 port 15728910 78105 nas_port_type Virtual 78105 remote_ip 5.5.5.116 78109 username ahmadi 78109 unique_id port 78109 terminate_cause User-Request 78109 bytes_out 69693 78109 bytes_in 586879 78109 station_ip 83.122.63.103 78109 port 15728641 78109 nas_port_type Virtual 78109 remote_ip 5.5.5.254 78117 username asadi 78117 unique_id port 78117 terminate_cause User-Request 78117 bytes_out 217344 78117 bytes_in 2402060 78117 station_ip 83.123.100.51 78117 port 15728685 78117 nas_port_type Virtual 78117 remote_ip 5.5.5.249 78118 username asadi 78118 unique_id port 78118 terminate_cause User-Request 78118 bytes_out 325904 78118 bytes_in 5084870 78118 station_ip 83.123.100.51 78118 port 15728687 78118 nas_port_type Virtual 78118 remote_ip 5.5.5.249 78119 username ahmadipour 78119 unique_id port 78119 terminate_cause Lost-Carrier 78119 bytes_out 43667 78119 bytes_in 412303 78119 station_ip 37.129.202.49 78119 port 15728686 78119 nas_port_type Virtual 78119 remote_ip 5.5.5.248 78123 username asadi 78123 unique_id port 78123 terminate_cause User-Request 78123 bytes_out 195905 78123 bytes_in 3257832 78123 station_ip 83.123.100.51 78123 port 15728695 78123 nas_port_type Virtual 78123 remote_ip 5.5.5.249 78126 username alireza 78126 unique_id port 78126 terminate_cause User-Request 78126 bytes_out 43267 78126 bytes_in 290317 78126 station_ip 5.119.51.95 78126 port 15728698 78126 nas_port_type Virtual 78126 remote_ip 5.5.5.247 78128 username iranmanesh 78128 unique_id port 78128 terminate_cause User-Request 78128 bytes_out 141764 78128 bytes_in 2675852 78128 station_ip 37.129.116.124 78128 port 15728700 78128 nas_port_type Virtual 78128 remote_ip 5.5.5.245 78131 username forozande 78131 unique_id port 78131 terminate_cause User-Request 78131 bytes_out 20094 78131 bytes_in 48266 78131 station_ip 37.129.3.102 78131 port 15728708 78131 nas_port_type Virtual 78131 remote_ip 5.5.5.241 78133 username shahriyar 78133 unique_id port 78133 terminate_cause Lost-Carrier 78133 bytes_out 11116141 78133 bytes_in 399856822 78133 station_ip 5.202.26.224 78133 port 15728668 78133 nas_port_type Virtual 78133 remote_ip 5.5.5.251 78136 username soleymani 78136 unique_id port 78136 terminate_cause Lost-Carrier 78136 bytes_out 227192 78136 bytes_in 673567 78136 station_ip 5.120.110.199 78136 port 15728709 78136 nas_port_type Virtual 78136 remote_ip 5.5.5.240 78139 username forozande 78139 unique_id port 78139 terminate_cause User-Request 78139 bytes_out 39321 78139 bytes_in 59813 78139 station_ip 83.123.5.217 78139 port 15728716 78139 nas_port_type Virtual 78139 remote_ip 5.5.5.236 78140 username soleymani 78140 unique_id port 78140 terminate_cause Lost-Carrier 78140 bytes_out 160323 78140 bytes_in 1117873 78140 station_ip 5.119.227.115 78140 port 15728714 78140 nas_port_type Virtual 78140 remote_ip 5.5.5.237 78144 username alirezazamani 78144 unique_id port 78144 terminate_cause Lost-Carrier 78144 bytes_out 1220229 78144 bytes_in 34574912 78144 station_ip 5.119.169.242 78144 port 15728715 78144 nas_port_type Virtual 78144 remote_ip 5.5.5.239 78151 username alirezazamani 78151 unique_id port 78151 terminate_cause User-Request 78151 bytes_out 100080 78151 bytes_in 2767550 78151 station_ip 5.119.169.242 78151 port 15728729 78151 nas_port_type Virtual 78151 remote_ip 5.5.5.235 78159 username soleymani 78159 unique_id port 78159 terminate_cause Lost-Carrier 78159 bytes_out 464677 78159 bytes_in 1005609 78159 station_ip 5.120.116.186 78159 port 15728734 78110 terminate_cause User-Request 78110 bytes_out 125854 78110 bytes_in 2251125 78110 station_ip 83.123.218.203 78110 port 15728642 78110 nas_port_type Virtual 78110 remote_ip 5.5.5.253 78121 username asadi 78121 unique_id port 78121 terminate_cause User-Request 78121 bytes_out 300413 78121 bytes_in 7115837 78121 station_ip 83.123.100.51 78121 port 15728694 78121 nas_port_type Virtual 78121 remote_ip 5.5.5.249 78127 username iranmanesh 78127 unique_id port 78127 terminate_cause User-Request 78127 bytes_out 95198 78127 bytes_in 735856 78127 station_ip 37.129.116.124 78127 port 15728699 78127 nas_port_type Virtual 78127 remote_ip 5.5.5.245 78141 username asadi 78141 unique_id port 78141 terminate_cause User-Request 78141 bytes_out 72567 78141 bytes_in 602586 78141 station_ip 83.123.100.51 78141 port 15728718 78141 nas_port_type Virtual 78141 remote_ip 5.5.5.249 78146 username alireza 78146 unique_id port 78146 terminate_cause User-Request 78146 bytes_out 1368130 78146 bytes_in 13843487 78146 station_ip 5.119.51.95 78146 port 15728721 78146 nas_port_type Virtual 78146 remote_ip 5.5.5.247 78148 username soleymani 78148 unique_id port 78148 terminate_cause Lost-Carrier 78148 bytes_out 108635 78148 bytes_in 1090408 78148 station_ip 5.119.201.93 78148 port 15728722 78148 nas_port_type Virtual 78148 remote_ip 5.5.5.232 78149 username alirezazamani 78149 unique_id port 78149 terminate_cause Lost-Carrier 78149 bytes_out 460395 78149 bytes_in 9152732 78149 station_ip 5.119.169.242 78149 port 15728717 78149 nas_port_type Virtual 78149 remote_ip 5.5.5.235 78150 username forozande 78150 unique_id port 78150 terminate_cause User-Request 78150 bytes_out 247125 78150 bytes_in 3363616 78150 station_ip 83.122.53.67 78150 port 15728728 78150 nas_port_type Virtual 78150 remote_ip 5.5.5.230 78153 username alirezazamani 78153 unique_id port 78153 terminate_cause Lost-Carrier 78153 bytes_out 759100 78153 bytes_in 21532699 78153 station_ip 5.119.169.242 78153 port 15728725 78153 nas_port_type Virtual 78153 remote_ip 5.5.5.239 78157 username asadi 78157 unique_id port 78157 terminate_cause User-Request 78157 bytes_out 30263 78157 bytes_in 153850 78157 station_ip 83.123.100.51 78157 port 15728738 78157 nas_port_type Virtual 78157 remote_ip 5.5.5.249 78169 username madadi 78169 unique_id port 78169 terminate_cause Lost-Carrier 78169 bytes_out 195794 78169 bytes_in 2445758 78169 station_ip 5.119.63.146 78169 port 15728747 78169 nas_port_type Virtual 78169 remote_ip 5.5.5.222 78173 username soleymani 78173 unique_id port 78173 terminate_cause Lost-Carrier 78173 bytes_out 274581 78173 bytes_in 1964860 78173 station_ip 5.119.227.127 78173 port 15728753 78173 nas_port_type Virtual 78173 remote_ip 5.5.5.218 78177 username zoha 78177 unique_id port 78177 terminate_cause User-Request 78177 bytes_out 1191059 78177 bytes_in 7399397 78177 station_ip 5.119.101.69 78177 port 15728749 78177 nas_port_type Virtual 78177 remote_ip 5.5.5.228 78181 username mobina 78181 unique_id port 78181 terminate_cause User-Request 78181 bytes_out 743287 78181 bytes_in 8713473 78181 station_ip 31.7.112.119 78181 port 15728760 78181 nas_port_type Virtual 78181 remote_ip 5.5.5.213 78190 username forozande 78190 unique_id port 78190 terminate_cause User-Request 78190 bytes_out 33129 78190 bytes_in 75167 78190 station_ip 83.122.162.2 78190 port 15728773 78190 nas_port_type Virtual 78190 remote_ip 5.5.5.208 78194 username forozande 78194 unique_id port 78194 terminate_cause User-Request 78194 bytes_out 12366 78194 bytes_in 41392 78194 station_ip 37.129.176.14 78194 port 15728777 78194 nas_port_type Virtual 78194 remote_ip 5.5.5.206 78134 remote_ip 5.5.5.242 78135 username asadi 78135 unique_id port 78135 terminate_cause User-Request 78135 bytes_out 70357 78135 bytes_in 517466 78135 station_ip 83.123.100.51 78135 port 15728712 78135 nas_port_type Virtual 78135 remote_ip 5.5.5.249 78137 username alirezazamani 78137 unique_id port 78137 terminate_cause Lost-Carrier 78137 bytes_out 239678 78137 bytes_in 1046304 78137 station_ip 5.119.169.242 78137 port 15728711 78137 nas_port_type Virtual 78137 remote_ip 5.5.5.239 78138 username soleymani 78138 unique_id port 78138 terminate_cause Lost-Carrier 78138 bytes_out 83414 78138 bytes_in 227037 78138 station_ip 5.119.129.175 78138 port 15728713 78138 nas_port_type Virtual 78138 remote_ip 5.5.5.238 78142 username forozande 78142 unique_id port 78142 terminate_cause User-Request 78142 bytes_out 14267 78142 bytes_in 37763 78142 station_ip 37.129.85.119 78142 port 15728719 78142 nas_port_type Virtual 78142 remote_ip 5.5.5.234 78154 username asadi 78154 unique_id port 78154 terminate_cause User-Request 78154 bytes_out 179772 78154 bytes_in 4180692 78154 station_ip 83.123.100.51 78154 port 15728733 78154 nas_port_type Virtual 78154 remote_ip 5.5.5.249 78155 username asadi 78155 unique_id port 78155 terminate_cause User-Request 78155 bytes_out 84740 78155 bytes_in 963127 78155 station_ip 83.123.100.51 78155 port 15728735 78155 nas_port_type Virtual 78155 remote_ip 5.5.5.249 78156 username asadi 78156 unique_id port 78156 terminate_cause User-Request 78156 bytes_out 34472 78156 bytes_in 89193 78156 station_ip 83.123.100.51 78156 port 15728736 78156 nas_port_type Virtual 78156 remote_ip 5.5.5.249 78161 username forozande 78161 unique_id port 78161 terminate_cause User-Request 78161 bytes_out 228972 78161 bytes_in 5476737 78161 station_ip 83.123.158.181 78161 port 15728741 78161 nas_port_type Virtual 78161 remote_ip 5.5.5.224 78163 username aminvpn 78163 unique_id port 78163 terminate_cause Lost-Carrier 78163 bytes_out 522342 78163 bytes_in 5709632 78163 station_ip 78.39.27.231 78163 port 15728739 78163 nas_port_type Virtual 78163 remote_ip 5.5.5.225 78166 username asadi 78166 unique_id port 78166 terminate_cause User-Request 78166 bytes_out 4312 78166 bytes_in 29957 78166 station_ip 83.123.100.51 78166 port 15728746 78166 nas_port_type Virtual 78166 remote_ip 5.5.5.249 78167 username hamideh 78167 unique_id port 78167 terminate_cause Lost-Carrier 78167 bytes_out 3590396 78167 bytes_in 72388557 78167 station_ip 5.120.178.248 78167 port 15728730 78167 nas_port_type Virtual 78167 remote_ip 5.5.5.229 78171 username soleymani 78171 unique_id port 78171 terminate_cause Lost-Carrier 78171 bytes_out 30751 78171 bytes_in 168626 78171 station_ip 5.119.73.253 78171 port 15728751 78171 nas_port_type Virtual 78171 remote_ip 5.5.5.220 78175 username forozande 78175 unique_id port 78175 terminate_cause User-Request 78175 bytes_out 280393 78175 bytes_in 125664 78175 station_ip 83.122.196.245 78175 port 15728757 78175 nas_port_type Virtual 78175 remote_ip 5.5.5.215 78179 username alirezazamani 78179 unique_id port 78179 terminate_cause User-Request 78179 bytes_out 67778 78179 bytes_in 271004 78179 station_ip 83.122.134.205 78179 port 15728763 78179 nas_port_type Virtual 78179 remote_ip 5.5.5.211 78183 username alirezazamani 78183 unique_id port 78183 terminate_cause User-Request 78183 bytes_out 14739 78183 bytes_in 32186 78183 station_ip 83.122.134.205 78183 port 15728765 78183 nas_port_type Virtual 78183 remote_ip 5.5.5.211 78188 username forozande 78188 unique_id port 78188 terminate_cause User-Request 78188 bytes_out 37970 78188 bytes_in 242751 78188 station_ip 83.122.162.2 78188 port 15728772 78145 station_ip 83.123.100.51 78145 port 15728723 78145 nas_port_type Virtual 78145 remote_ip 5.5.5.249 78147 username asadi 78147 unique_id port 78147 terminate_cause User-Request 78147 bytes_out 63704 78147 bytes_in 685897 78147 station_ip 83.123.100.51 78147 port 15728724 78147 nas_port_type Virtual 78147 remote_ip 5.5.5.249 78152 username soleymani 78152 unique_id port 78152 terminate_cause Lost-Carrier 78152 bytes_out 118912 78152 bytes_in 568740 78152 station_ip 5.119.0.244 78152 port 15728727 78152 nas_port_type Virtual 78152 remote_ip 5.5.5.231 78158 username zoha 78158 unique_id port 78158 terminate_cause Lost-Carrier 78158 bytes_out 1738712 78158 bytes_in 19166189 78158 station_ip 5.119.101.69 78158 port 15728732 78158 nas_port_type Virtual 78158 remote_ip 5.5.5.228 78160 username asadi 78160 unique_id port 78160 terminate_cause User-Request 78160 bytes_out 53720 78160 bytes_in 627372 78160 station_ip 83.123.100.51 78160 port 15728740 78160 nas_port_type Virtual 78160 remote_ip 5.5.5.249 78162 username reza 78162 unique_id port 78162 terminate_cause User-Request 78162 bytes_out 163709 78162 bytes_in 4504130 78162 station_ip 37.129.13.159 78162 port 15728737 78162 nas_port_type Virtual 78162 remote_ip 5.5.5.226 78165 username soleymani 78165 unique_id port 78165 terminate_cause Lost-Carrier 78165 bytes_out 85380 78165 bytes_in 543599 78165 station_ip 5.119.121.48 78165 port 15728745 78165 nas_port_type Virtual 78165 remote_ip 5.5.5.223 78168 username soleymani 78168 unique_id port 78168 terminate_cause Lost-Carrier 78168 bytes_out 28118 78168 bytes_in 191980 78168 station_ip 5.119.119.5 78168 port 15728748 78168 nas_port_type Virtual 78168 remote_ip 5.5.5.221 78170 username asadi 78170 unique_id port 78170 terminate_cause User-Request 78170 bytes_out 246762 78170 bytes_in 4792093 78170 station_ip 83.123.100.51 78170 port 15728750 78170 nas_port_type Virtual 78170 remote_ip 5.5.5.249 78176 username forozande 78176 unique_id port 78176 terminate_cause User-Request 78176 bytes_out 208558 78176 bytes_in 5182749 78176 station_ip 83.122.196.245 78176 port 15728758 78176 nas_port_type Virtual 78176 remote_ip 5.5.5.215 78178 username soleymani 78178 unique_id port 78178 terminate_cause Lost-Carrier 78178 bytes_out 94273 78178 bytes_in 364076 78178 station_ip 5.119.135.149 78178 port 15728759 78178 nas_port_type Virtual 78178 remote_ip 5.5.5.214 78184 username forozande 78184 unique_id port 78184 terminate_cause User-Request 78184 bytes_out 29873 78184 bytes_in 79141 78184 station_ip 37.129.71.106 78184 port 15728766 78184 nas_port_type Virtual 78184 remote_ip 5.5.5.210 78185 username forozande 78185 unique_id port 78185 terminate_cause User-Request 78185 bytes_out 0 78185 bytes_in 0 78185 station_ip 37.129.71.106 78185 port 15728768 78185 nas_port_type Virtual 78185 remote_ip 5.5.5.210 78186 username asadi 78186 unique_id port 78186 terminate_cause User-Request 78186 bytes_out 258705 78186 bytes_in 6090165 78186 station_ip 83.123.100.51 78186 port 15728767 78186 nas_port_type Virtual 78186 remote_ip 5.5.5.249 78189 username madadi 78189 unique_id port 78189 terminate_cause Lost-Carrier 78189 bytes_out 1531539 78189 bytes_in 13998148 78189 station_ip 5.119.119.5 78189 port 15728754 78189 nas_port_type Virtual 78189 remote_ip 5.5.5.217 78192 username alinezhad 78192 unique_id port 78192 terminate_cause User-Request 78192 bytes_out 48445 78192 bytes_in 477282 78192 station_ip 5.202.134.148 78192 port 15728774 78192 nas_port_type Virtual 78192 remote_ip 5.5.5.207 78196 username forozande 78196 unique_id port 78196 terminate_cause User-Request 78196 bytes_out 37022 78159 nas_port_type Virtual 78159 remote_ip 5.5.5.227 78164 username iranmanesh 78164 unique_id port 78164 terminate_cause User-Request 78164 bytes_out 34581 78164 bytes_in 201192 78164 station_ip 37.129.116.124 78164 port 15728744 78164 nas_port_type Virtual 78164 remote_ip 5.5.5.245 78172 username amir 78172 unique_id port 78172 terminate_cause User-Request 78172 bytes_out 390494 78172 bytes_in 4275399 78172 station_ip 46.225.208.76 78172 port 15728752 78172 nas_port_type Virtual 78172 remote_ip 5.5.5.219 78174 username forozande 78174 unique_id port 78174 terminate_cause User-Request 78174 bytes_out 150927 78174 bytes_in 1103108 78174 station_ip 83.122.196.245 78174 port 15728756 78174 nas_port_type Virtual 78174 remote_ip 5.5.5.215 78180 username alirezazamani 78180 unique_id port 78180 terminate_cause User-Request 78180 bytes_out 163693 78180 bytes_in 4226551 78180 station_ip 83.122.134.205 78180 port 15728764 78180 nas_port_type Virtual 78180 remote_ip 5.5.5.211 78182 username soleymani 78182 unique_id port 78182 terminate_cause Lost-Carrier 78182 bytes_out 405619 78182 bytes_in 233522 78182 station_ip 5.119.123.22 78182 port 15728761 78182 nas_port_type Virtual 78182 remote_ip 5.5.5.212 78187 username forozande 78187 unique_id port 78187 terminate_cause User-Request 78187 bytes_out 57683 78187 bytes_in 592957 78187 station_ip 37.129.71.106 78187 port 15728769 78187 nas_port_type Virtual 78187 remote_ip 5.5.5.210 78191 username forozande 78191 unique_id port 78191 terminate_cause User-Request 78191 bytes_out 24642 78191 bytes_in 454243 78191 station_ip 83.122.162.2 78191 port 15728775 78191 nas_port_type Virtual 78191 remote_ip 5.5.5.208 78205 username ahmadi 78205 unique_id port 78205 terminate_cause User-Request 78205 bytes_out 65175 78205 bytes_in 901752 78205 station_ip 83.122.48.38 78205 port 15728788 78205 nas_port_type Virtual 78205 remote_ip 5.5.5.200 78209 username shahriyar 78209 unique_id port 78209 terminate_cause User-Request 78209 bytes_out 3956610 78209 bytes_in 106134511 78209 station_ip 46.249.126.45 78209 port 15728785 78209 nas_port_type Virtual 78209 remote_ip 5.5.5.201 78214 username iranmanesh 78214 unique_id port 78214 terminate_cause User-Request 78214 bytes_out 30399 78214 bytes_in 91309 78214 station_ip 37.129.116.124 78214 port 15728796 78214 nas_port_type Virtual 78214 remote_ip 5.5.5.245 78218 username aminvpn 78218 unique_id port 78218 terminate_cause User-Request 78218 bytes_out 5650199 78218 bytes_in 101004031 78218 station_ip 5.119.227.138 78218 port 15728795 78218 nas_port_type Virtual 78218 remote_ip 5.5.5.195 78222 username forozande 78222 unique_id port 78222 terminate_cause User-Request 78222 bytes_out 123608 78222 bytes_in 528276 78222 station_ip 83.123.145.184 78222 port 15728805 78222 nas_port_type Virtual 78222 remote_ip 5.5.5.189 81226 unique_id port 81226 terminate_cause Lost-Carrier 81226 bytes_out 112254 81226 bytes_in 585403 81226 station_ip 5.119.174.61 81226 port 15728802 81226 nas_port_type Virtual 81226 remote_ip 5.5.5.171 81232 username aminvpn 78232 username forozande 78232 unique_id port 78232 terminate_cause User-Request 78232 bytes_out 56912 78232 bytes_in 943174 78232 station_ip 83.122.162.231 78232 port 15728816 78232 nas_port_type Virtual 78232 remote_ip 5.5.5.180 78233 username mobina 78233 unique_id port 78233 terminate_cause Lost-Carrier 78233 bytes_out 538055 78233 bytes_in 11376099 78233 station_ip 5.124.111.205 78233 port 15728812 78233 nas_port_type Virtual 78233 remote_ip 5.5.5.183 78236 username sobhan 78236 unique_id port 78236 terminate_cause Lost-Carrier 78236 bytes_out 1733700 78236 bytes_in 29701428 78188 nas_port_type Virtual 78188 remote_ip 5.5.5.208 78193 username amir 78193 unique_id port 78193 terminate_cause Lost-Carrier 78193 bytes_out 3758858 78193 bytes_in 34043457 78193 station_ip 46.225.213.38 78193 port 15728755 78193 nas_port_type Virtual 78193 remote_ip 5.5.5.216 78197 username mobina 78197 unique_id port 78197 terminate_cause Lost-Carrier 78197 bytes_out 6353342 78197 bytes_in 94732407 78197 station_ip 5.124.32.78 78197 port 15728702 78197 nas_port_type Virtual 78197 remote_ip 5.5.5.244 78201 username soleymani 78201 unique_id port 78201 terminate_cause Lost-Carrier 78201 bytes_out 133859 78201 bytes_in 1982312 78201 station_ip 5.119.67.155 78201 port 15728784 78201 nas_port_type Virtual 78201 remote_ip 5.5.5.202 78203 username forozande 78203 unique_id port 78203 terminate_cause User-Request 78203 bytes_out 76727 78203 bytes_in 508352 78203 station_ip 83.122.26.145 78203 port 15728786 78203 nas_port_type Virtual 78203 remote_ip 5.5.5.205 78208 username amir 78208 unique_id port 78208 terminate_cause Lost-Carrier 78208 bytes_out 10717312 78208 bytes_in 13503920 78208 station_ip 46.225.213.38 78208 port 15728776 78208 nas_port_type Virtual 78208 remote_ip 5.5.5.216 78210 username madadi 78210 unique_id port 78210 terminate_cause Lost-Carrier 78210 bytes_out 27133 78210 bytes_in 190606 78210 station_ip 5.120.7.218 78210 port 15728791 78210 nas_port_type Virtual 78210 remote_ip 5.5.5.198 78213 username zoha 78213 unique_id port 78213 terminate_cause Lost-Carrier 78213 bytes_out 515181 78213 bytes_in 4767574 78213 station_ip 5.119.101.69 78213 port 15728793 78213 nas_port_type Virtual 78213 remote_ip 5.5.5.228 78215 username iranmanesh 78215 unique_id port 78215 terminate_cause User-Request 78215 bytes_out 314659 78215 bytes_in 7115584 78215 station_ip 37.129.116.124 78215 port 15728798 78215 nas_port_type Virtual 78215 remote_ip 5.5.5.245 78217 username asadi 78217 unique_id port 78217 terminate_cause User-Request 78217 bytes_out 56097 78217 bytes_in 773071 78217 station_ip 37.129.37.16 78217 port 15728800 78217 nas_port_type Virtual 78217 remote_ip 5.5.5.193 78223 username forozande 78223 unique_id port 78223 terminate_cause User-Request 78223 bytes_out 47733 78223 bytes_in 337755 78223 station_ip 83.123.145.184 78223 port 15728807 78223 nas_port_type Virtual 78223 remote_ip 5.5.5.189 78228 username rashidi 78228 unique_id port 78228 terminate_cause User-Request 78228 bytes_out 21924323 78228 bytes_in 54663303 78228 station_ip 5.119.99.25 78228 port 15728783 78228 nas_port_type Virtual 78228 remote_ip 5.5.5.203 78239 username amir 78239 unique_id port 78239 terminate_cause User-Request 78239 bytes_out 5138854 78239 bytes_in 106558435 78239 station_ip 46.225.213.38 78239 port 15728797 78239 nas_port_type Virtual 78239 remote_ip 5.5.5.216 78240 username soleymani 78240 unique_id port 78240 terminate_cause Lost-Carrier 78240 bytes_out 14107 78240 bytes_in 145434 78240 station_ip 5.119.156.163 78240 port 15728820 78240 nas_port_type Virtual 78240 remote_ip 5.5.5.177 78243 username soleymani 78243 unique_id port 78243 terminate_cause Lost-Carrier 78243 bytes_out 62451 78243 bytes_in 349725 78243 station_ip 5.119.212.129 78243 port 15728824 78243 nas_port_type Virtual 78243 remote_ip 5.5.5.175 78249 username shahriyar 78249 unique_id port 78249 terminate_cause Lost-Carrier 78249 bytes_out 532642 78249 bytes_in 7881850 78249 station_ip 5.202.26.224 78249 port 15728821 78249 nas_port_type Virtual 78249 remote_ip 5.5.5.251 78254 username mobina 78254 unique_id port 78254 terminate_cause Lost-Carrier 78254 bytes_out 642743 78254 bytes_in 13112342 78195 username asadi 78195 unique_id port 78195 terminate_cause User-Request 78195 bytes_out 247766 78195 bytes_in 7235028 78195 station_ip 83.123.100.51 78195 port 15728778 78195 nas_port_type Virtual 78195 remote_ip 5.5.5.249 78199 username madadi 78199 unique_id port 78199 terminate_cause Lost-Carrier 78199 bytes_out 463834 78199 bytes_in 1367645 78199 station_ip 5.119.36.160 78199 port 15728771 78199 nas_port_type Virtual 78199 remote_ip 5.5.5.209 78206 username asadi 78206 unique_id port 78206 terminate_cause User-Request 78206 bytes_out 2611 78206 bytes_in 16523 78206 station_ip 83.123.100.51 78206 port 15728789 78206 nas_port_type Virtual 78206 remote_ip 5.5.5.249 78207 username forozande 78207 unique_id port 78207 terminate_cause User-Request 78207 bytes_out 29228 78207 bytes_in 101009 78207 station_ip 83.123.118.51 78207 port 15728790 78207 nas_port_type Virtual 78207 remote_ip 5.5.5.199 78216 username reza2742 78216 unique_id port 78216 terminate_cause User-Request 78216 bytes_out 364564 78216 bytes_in 711023 78216 station_ip 83.122.70.216 78216 port 15728799 78216 nas_port_type Virtual 78216 remote_ip 5.5.5.194 78220 username madadi 78220 unique_id port 78220 terminate_cause Lost-Carrier 78220 bytes_out 278013 78220 bytes_in 1602118 78220 station_ip 5.119.89.111 78220 port 15728794 78220 nas_port_type Virtual 78220 remote_ip 5.5.5.196 78229 username ahmadi 78229 unique_id port 78229 terminate_cause User-Request 78229 bytes_out 72491 78229 bytes_in 604342 78229 station_ip 83.122.150.2 78229 port 15728813 78229 nas_port_type Virtual 78229 remote_ip 5.5.5.182 78230 username madadi 78230 unique_id port 78230 terminate_cause Lost-Carrier 78230 bytes_out 55745 78230 bytes_in 222351 78230 station_ip 5.119.195.217 78230 port 15728810 78230 nas_port_type Virtual 78230 remote_ip 5.5.5.185 78234 username forozande 78234 unique_id port 78234 terminate_cause User-Request 78234 bytes_out 44098 78234 bytes_in 538588 78234 station_ip 83.122.162.231 78234 port 15728818 78234 nas_port_type Virtual 78234 remote_ip 5.5.5.180 78235 username rashidi 78235 unique_id port 78235 terminate_cause User-Request 78235 bytes_out 1375376 78235 bytes_in 25510673 78235 station_ip 5.119.99.25 78235 port 15728815 78235 nas_port_type Virtual 78235 remote_ip 5.5.5.203 78238 username soleymani 78238 unique_id port 78238 terminate_cause Lost-Carrier 78238 bytes_out 30019 78238 bytes_in 310158 78238 station_ip 5.119.252.232 78238 port 15728814 78238 nas_port_type Virtual 78238 remote_ip 5.5.5.181 78242 username mobina 78242 unique_id port 78242 terminate_cause Lost-Carrier 78242 bytes_out 116860 78242 bytes_in 1045750 78242 station_ip 5.123.179.15 78242 port 15728823 78242 nas_port_type Virtual 78242 remote_ip 5.5.5.176 78246 username soleymani 78246 unique_id port 78246 terminate_cause Lost-Carrier 78246 bytes_out 101266 78246 bytes_in 866933 78246 station_ip 5.120.33.24 78246 port 15728832 78246 nas_port_type Virtual 78246 remote_ip 5.5.5.173 78253 username madadi 78253 unique_id port 78253 terminate_cause Lost-Carrier 78253 bytes_out 26881 78253 bytes_in 132472 78253 station_ip 5.120.70.120 78253 port 15728839 78253 nas_port_type Virtual 78253 remote_ip 5.5.5.168 78258 username forozande 78258 unique_id port 78258 terminate_cause User-Request 78258 bytes_out 107706 78258 bytes_in 1042502 78258 station_ip 37.129.6.199 78258 port 15728847 78258 nas_port_type Virtual 78258 remote_ip 5.5.5.162 78259 username forozande 78259 unique_id port 78259 terminate_cause User-Request 78259 bytes_out 82651 78259 bytes_in 740703 78259 station_ip 83.122.82.150 78259 port 15728848 78259 nas_port_type Virtual 78196 bytes_in 50551 78196 station_ip 83.122.26.145 78196 port 15728779 78196 nas_port_type Virtual 78196 remote_ip 5.5.5.205 78198 username aminvpn 78198 unique_id port 78198 terminate_cause User-Request 78198 bytes_out 0 78198 bytes_in 0 78198 station_ip 78.39.27.231 78198 port 15728781 78198 nas_port_type Virtual 78198 remote_ip 5.5.5.225 78200 username mobina 78200 unique_id port 78200 terminate_cause Lost-Carrier 78200 bytes_out 329876 78200 bytes_in 4139109 78200 station_ip 5.124.35.66 78200 port 15728780 78200 nas_port_type Virtual 78200 remote_ip 5.5.5.204 78202 username aminvpn 78202 unique_id port 78202 terminate_cause Lost-Carrier 78202 bytes_out 601435 78202 bytes_in 11585477 78202 station_ip 78.39.27.231 78202 port 15728782 78202 nas_port_type Virtual 78202 remote_ip 5.5.5.225 78204 username forozande 78204 unique_id port 78204 terminate_cause User-Request 78204 bytes_out 16467 78204 bytes_in 72914 78204 station_ip 83.122.26.145 78204 port 15728787 78204 nas_port_type Virtual 78204 remote_ip 5.5.5.205 78211 username soleymani 78211 unique_id port 78211 terminate_cause Lost-Carrier 78211 bytes_out 162580 78211 bytes_in 561004 78211 station_ip 5.119.25.20 78211 port 15728792 78211 nas_port_type Virtual 78211 remote_ip 5.5.5.197 78212 username zoha 78212 unique_id port 78212 terminate_cause Lost-Carrier 78212 bytes_out 5083620 78212 bytes_in 36379964 78212 station_ip 5.119.101.69 78212 port 15728762 78212 nas_port_type Virtual 78212 remote_ip 5.5.5.228 78219 username aminvpn 78219 kill_reason Maximum check online fails reached 78219 unique_id port 78219 bytes_out 1275141 78219 bytes_in 29585068 78219 station_ip 5.119.227.138 78219 port 15728802 78219 nas_port_type Virtual 78219 remote_ip 5.5.5.195 78221 username madadi 78221 unique_id port 78221 terminate_cause Lost-Carrier 78221 bytes_out 50765 78221 bytes_in 216688 78221 station_ip 5.119.139.79 78221 port 15728801 78221 nas_port_type Virtual 78221 remote_ip 5.5.5.192 78224 username soleymani 78224 unique_id port 78224 terminate_cause Lost-Carrier 78224 bytes_out 33306 78224 bytes_in 194672 78224 station_ip 5.119.137.198 78224 port 15728804 78224 nas_port_type Virtual 78224 remote_ip 5.5.5.190 78225 username reza2742 78225 unique_id port 78225 terminate_cause User-Request 78225 bytes_out 100267 78225 bytes_in 1982795 78225 station_ip 37.129.11.233 78225 port 15728808 78225 nas_port_type Virtual 78225 remote_ip 5.5.5.187 78226 username forozande 78226 unique_id port 78226 terminate_cause User-Request 78226 bytes_out 0 78226 bytes_in 0 78226 station_ip 37.129.160.184 78226 port 15728809 78226 nas_port_type Virtual 78226 remote_ip 5.5.5.186 78227 username madadi 78227 unique_id port 78227 terminate_cause Lost-Carrier 78227 bytes_out 137963 78227 bytes_in 383089 78227 station_ip 5.119.128.35 78227 port 15728806 78227 nas_port_type Virtual 78227 remote_ip 5.5.5.188 78237 username madadi 78237 unique_id port 78237 terminate_cause Lost-Carrier 78237 bytes_out 45701 78237 bytes_in 245851 78237 station_ip 5.119.161.210 78237 port 15728817 78237 nas_port_type Virtual 78237 remote_ip 5.5.5.179 78244 username zoha 78244 kill_reason Maximum check online fails reached 78244 unique_id port 78244 bytes_out 240343 78244 bytes_in 2067359 78244 station_ip 5.119.101.69 78244 port 15728826 78244 nas_port_type Virtual 78244 remote_ip 5.5.5.228 78245 username alinezhad 78245 unique_id port 78245 terminate_cause User-Request 78245 bytes_out 0 78245 bytes_in 0 78245 station_ip 83.123.204.3 78245 port 15728831 78245 nas_port_type Virtual 78245 remote_ip 5.5.5.174 78247 username mahdi 78247 unique_id port 78247 terminate_cause User-Request 78236 station_ip 5.119.111.32 78236 port 15728811 78236 nas_port_type Virtual 78236 remote_ip 5.5.5.184 78241 username ahmadi 78241 unique_id port 78241 terminate_cause User-Request 78241 bytes_out 37533 78241 bytes_in 727098 78241 station_ip 83.122.150.2 78241 port 15728825 78241 nas_port_type Virtual 78241 remote_ip 5.5.5.182 78250 username mobina 78250 unique_id port 78250 terminate_cause Lost-Carrier 78250 bytes_out 104456 78250 bytes_in 456341 78250 station_ip 5.124.2.231 78250 port 15728833 78250 nas_port_type Virtual 78250 remote_ip 5.5.5.172 78251 username mahdi 78251 unique_id port 78251 terminate_cause Lost-Carrier 78251 bytes_out 172674 78251 bytes_in 565358 78251 station_ip 5.120.19.0 78251 port 15728835 78251 nas_port_type Virtual 78251 remote_ip 5.5.5.171 78255 username madadi 78255 unique_id port 78255 terminate_cause Lost-Carrier 78255 bytes_out 54781 78255 bytes_in 160105 78255 station_ip 5.120.153.4 78255 port 15728841 78255 nas_port_type Virtual 78255 remote_ip 5.5.5.166 78262 username madadi 78262 unique_id port 78262 terminate_cause Lost-Carrier 78262 bytes_out 191486 78262 bytes_in 756979 78262 station_ip 5.119.176.18 78262 port 15728845 78262 nas_port_type Virtual 78262 remote_ip 5.5.5.163 78270 username zoha 78270 unique_id port 78270 terminate_cause Lost-Carrier 78270 bytes_out 629760 78270 bytes_in 4993370 78270 station_ip 5.119.101.69 78270 port 15728855 78270 nas_port_type Virtual 78270 remote_ip 5.5.5.228 78272 username sobhan 78272 unique_id port 78272 terminate_cause User-Request 78272 bytes_out 1179826 78272 bytes_in 28755997 78272 station_ip 5.119.111.32 78272 port 15728859 78272 nas_port_type Virtual 78272 remote_ip 5.5.5.153 78275 username forozande 78275 unique_id port 78275 terminate_cause User-Request 78275 bytes_out 58218 78275 bytes_in 277565 78275 station_ip 83.122.203.190 78275 port 15728864 78275 nas_port_type Virtual 78275 remote_ip 5.5.5.150 81227 bytes_out 95506 81227 bytes_in 209908 81227 station_ip 5.119.30.76 81227 port 14 81227 unique_id port 81227 remote_ip 10.8.0.6 81237 username aminvpn 81237 mac 81237 bytes_out 0 78285 username avaanna 78285 unique_id port 78285 terminate_cause User-Request 78285 bytes_out 94791 78285 bytes_in 342268 78285 station_ip 37.129.104.63 78285 port 15728873 78285 nas_port_type Virtual 78285 remote_ip 5.5.5.146 78287 username alinezhad 78287 unique_id port 78287 terminate_cause NAS-Error 78287 bytes_out 106 78287 bytes_in 192 78287 station_ip 5.202.135.121 78287 port 15728875 78287 nas_port_type Virtual 78287 remote_ip 5.5.5.143 78289 username avaanna 78289 unique_id port 78289 terminate_cause User-Request 78289 bytes_out 57579 78289 bytes_in 641467 78289 station_ip 37.129.104.63 78289 port 15728876 78289 nas_port_type Virtual 78289 remote_ip 5.5.5.146 78290 username alinezhad 78290 unique_id port 78290 terminate_cause User-Request 78290 bytes_out 0 78290 bytes_in 0 78290 station_ip 37.129.173.128 78290 port 15728877 78290 nas_port_type Virtual 78290 remote_ip 5.5.5.142 78296 username asadi 78296 unique_id port 78296 terminate_cause User-Request 78296 bytes_out 8288 78296 bytes_in 20240 78296 station_ip 37.129.135.243 78296 port 15728884 78296 nas_port_type Virtual 78296 remote_ip 5.5.5.144 78297 username avaanna 78297 unique_id port 78297 terminate_cause User-Request 78297 bytes_out 77730 78297 bytes_in 1020564 78297 station_ip 37.129.104.63 78297 port 15728885 78297 nas_port_type Virtual 78297 remote_ip 5.5.5.146 78317 username forozande 78317 unique_id port 78317 terminate_cause User-Request 78317 bytes_out 86513 78317 bytes_in 111700 81237 bytes_in 0 78247 bytes_out 0 78247 bytes_in 0 78247 station_ip 5.120.19.0 78247 port 15728834 78247 nas_port_type Virtual 78247 remote_ip 5.5.5.171 78248 username madadi 78248 unique_id port 78248 terminate_cause Lost-Carrier 78248 bytes_out 505325 78248 bytes_in 1050183 78248 station_ip 5.119.191.140 78248 port 15728819 78248 nas_port_type Virtual 78248 remote_ip 5.5.5.178 78252 username madadi 78252 unique_id port 78252 terminate_cause Lost-Carrier 78252 bytes_out 15282 78252 bytes_in 127165 78252 station_ip 5.119.150.119 78252 port 15728837 78252 nas_port_type Virtual 78252 remote_ip 5.5.5.169 78256 username iranmanesh 78256 unique_id port 78256 terminate_cause User-Request 78256 bytes_out 57949 78256 bytes_in 335783 78256 station_ip 37.129.116.124 78256 port 15728843 78256 nas_port_type Virtual 78256 remote_ip 5.5.5.245 78269 username kazemi 78269 unique_id port 78269 terminate_cause Lost-Carrier 78269 bytes_out 34914 78269 bytes_in 479497 78269 station_ip 46.225.208.76 78269 port 15728857 78269 nas_port_type Virtual 78269 remote_ip 5.5.5.155 78273 username mobina 78273 unique_id port 78273 terminate_cause Lost-Carrier 78273 bytes_out 230313 78273 bytes_in 1743547 78273 station_ip 5.219.207.117 78273 port 15728858 78273 nas_port_type Virtual 78273 remote_ip 5.5.5.154 78277 username mahdi 78277 unique_id port 78277 terminate_cause Lost-Carrier 78277 bytes_out 3593225 78277 bytes_in 71765913 78277 station_ip 5.120.19.0 78277 port 15728836 78277 nas_port_type Virtual 78277 remote_ip 5.5.5.170 78286 username asadi 78286 unique_id port 78286 terminate_cause User-Request 78286 bytes_out 107001 78286 bytes_in 2339398 78286 station_ip 37.129.135.243 78286 port 15728874 78286 nas_port_type Virtual 78286 remote_ip 5.5.5.144 78294 username avaanna 78294 unique_id port 78294 terminate_cause User-Request 78294 bytes_out 27601 78294 bytes_in 65392 78294 station_ip 37.129.104.63 78294 port 15728882 78294 nas_port_type Virtual 78294 remote_ip 5.5.5.146 78300 username avaanna 78300 unique_id port 78300 terminate_cause User-Request 78300 bytes_out 184766 78300 bytes_in 5550321 78300 station_ip 37.129.104.63 78300 port 15728890 78300 nas_port_type Virtual 78300 remote_ip 5.5.5.146 78307 username forozande 78307 unique_id port 78307 terminate_cause User-Request 78307 bytes_out 60644 78307 bytes_in 403974 78307 station_ip 83.122.215.79 78307 port 15728896 78307 nas_port_type Virtual 78307 remote_ip 5.5.5.135 78309 username forozande 78309 unique_id port 78309 terminate_cause User-Request 78309 bytes_out 42539 78309 bytes_in 635448 78309 station_ip 83.122.215.79 78309 port 15728898 78309 nas_port_type Virtual 78309 remote_ip 5.5.5.135 78316 username mahbobeh 78316 unique_id port 78316 terminate_cause Lost-Carrier 78316 bytes_out 943499 78316 bytes_in 9892121 78316 station_ip 37.129.223.164 78316 port 15728905 78316 nas_port_type Virtual 78316 remote_ip 5.5.5.129 78322 username arabpour 78322 unique_id port 78322 terminate_cause User-Request 78322 bytes_out 0 78322 bytes_in 0 78322 station_ip 113.203.101.121 78322 port 15728914 78322 nas_port_type Virtual 78322 remote_ip 5.5.5.121 78324 username alinezhad 78324 unique_id port 78324 terminate_cause User-Request 78324 bytes_out 169376 78324 bytes_in 32798 78324 station_ip 37.129.117.141 78324 port 15728917 78324 nas_port_type Virtual 78324 remote_ip 5.5.5.119 78329 username alinezhad 78329 unique_id port 78329 terminate_cause User-Request 78329 bytes_out 7377 78329 bytes_in 15744 78329 station_ip 83.122.67.116 78329 port 15728922 78329 nas_port_type Virtual 78329 remote_ip 5.5.5.118 78330 username soleymani 78330 unique_id port 78254 station_ip 5.123.181.16 78254 port 15728840 78254 nas_port_type Virtual 78254 remote_ip 5.5.5.167 78257 username arabpour 78257 unique_id port 78257 terminate_cause User-Request 78257 bytes_out 284060 78257 bytes_in 5948809 78257 station_ip 37.129.129.236 78257 port 15728844 78257 nas_port_type Virtual 78257 remote_ip 5.5.5.164 78260 username forozande 78260 unique_id port 78260 terminate_cause User-Request 78260 bytes_out 30080 78260 bytes_in 175055 78260 station_ip 113.203.64.59 78260 port 15728850 78260 nas_port_type Virtual 78260 remote_ip 5.5.5.159 78263 username mobina 78263 unique_id port 78263 terminate_cause User-Request 78263 bytes_out 0 78263 bytes_in 0 78263 station_ip 5.123.16.251 78263 port 15728851 78263 nas_port_type Virtual 78263 remote_ip 5.5.5.158 78264 username kazemi 78264 unique_id port 78264 terminate_cause User-Request 78264 bytes_out 28593 78264 bytes_in 290466 78264 station_ip 113.203.47.158 78264 port 15728853 78264 nas_port_type Virtual 78264 remote_ip 5.5.5.156 78265 username kazemi 78265 unique_id port 78265 terminate_cause User-Request 78265 bytes_out 0 78265 bytes_in 0 78265 station_ip 46.225.208.76 78265 port 15728854 78265 nas_port_type Virtual 78265 remote_ip 5.5.5.155 78266 username kazemi 78266 unique_id port 78266 terminate_cause User-Request 78266 bytes_out 155276 78266 bytes_in 2747829 78266 station_ip 46.225.208.76 78266 port 15728856 78266 nas_port_type Virtual 78266 remote_ip 5.5.5.155 78267 username shahnaz 78267 unique_id port 78267 terminate_cause Lost-Carrier 78267 bytes_out 1903109 78267 bytes_in 23827210 78267 station_ip 5.119.36.248 78267 port 15728842 78267 nas_port_type Virtual 78267 remote_ip 5.5.5.165 78268 username soleymani 78268 unique_id port 78268 terminate_cause Lost-Carrier 78268 bytes_out 116569 78268 bytes_in 559887 78268 station_ip 5.119.232.72 78268 port 15728852 78268 nas_port_type Virtual 78268 remote_ip 5.5.5.157 78274 username mobina 78274 unique_id port 78274 terminate_cause Lost-Carrier 78274 bytes_out 1178551 78274 bytes_in 32458612 78274 station_ip 5.123.16.251 78274 port 15728860 78274 nas_port_type Virtual 78274 remote_ip 5.5.5.158 78279 username soleymani 78279 unique_id port 78279 terminate_cause Lost-Carrier 78279 bytes_out 209822 78279 bytes_in 1066773 78279 station_ip 5.119.170.92 78279 port 15728861 78279 nas_port_type Virtual 78279 remote_ip 5.5.5.152 78284 username alinezhad 78284 unique_id port 78284 terminate_cause User-Request 78284 bytes_out 0 78284 bytes_in 0 78284 station_ip 5.202.60.13 78284 port 15728871 78284 nas_port_type Virtual 78284 remote_ip 5.5.5.145 78291 username shahriyar 78291 unique_id port 78291 terminate_cause User-Request 78291 bytes_out 44244 78291 bytes_in 632339 78291 station_ip 5.202.26.224 78291 port 15728878 78291 nas_port_type Virtual 78291 remote_ip 5.5.5.251 78293 username asadi 78293 unique_id port 78293 terminate_cause User-Request 78293 bytes_out 19332 78293 bytes_in 31465 78293 station_ip 37.129.135.243 78293 port 15728880 78293 nas_port_type Virtual 78293 remote_ip 5.5.5.144 78299 username forozande 78299 unique_id port 78299 terminate_cause User-Request 78299 bytes_out 39733 78299 bytes_in 220348 78299 station_ip 37.129.19.14 78299 port 15728888 78299 nas_port_type Virtual 78299 remote_ip 5.5.5.140 78302 username madadi 78302 unique_id port 78302 terminate_cause Lost-Carrier 78302 bytes_out 41788 78302 bytes_in 169987 78302 station_ip 5.119.143.26 78302 port 15728881 78302 nas_port_type Virtual 78302 remote_ip 5.5.5.141 78310 username zoha 78310 unique_id port 78310 terminate_cause Lost-Carrier 78310 bytes_out 326823 78310 bytes_in 2002437 78259 remote_ip 5.5.5.161 78261 username soleymani 78261 unique_id port 78261 terminate_cause Lost-Carrier 78261 bytes_out 44297 78261 bytes_in 161641 78261 station_ip 5.119.1.93 78261 port 15728849 78261 nas_port_type Virtual 78261 remote_ip 5.5.5.160 78271 username sobhan 78271 unique_id port 78271 terminate_cause Lost-Carrier 78271 bytes_out 10188808 78271 bytes_in 240158754 78271 station_ip 5.119.111.32 78271 port 15728830 78271 nas_port_type Virtual 78271 remote_ip 5.5.5.184 78276 username forozande 78276 unique_id port 78276 terminate_cause User-Request 78276 bytes_out 12961 78276 bytes_in 40288 78276 station_ip 83.122.203.190 78276 port 15728867 78276 nas_port_type Virtual 78276 remote_ip 5.5.5.150 78278 username madadi 78278 unique_id port 78278 terminate_cause Lost-Carrier 78278 bytes_out 19789 78278 bytes_in 152279 78278 station_ip 5.120.102.159 78278 port 15728865 78278 nas_port_type Virtual 78278 remote_ip 5.5.5.149 78281 username sobhan 78281 unique_id port 78281 terminate_cause Lost-Carrier 78281 bytes_out 1799489 78281 bytes_in 32938728 78281 station_ip 5.119.111.32 78281 port 15728862 78281 nas_port_type Virtual 78281 remote_ip 5.5.5.153 78282 username forozande 78282 unique_id port 78282 terminate_cause User-Request 78282 bytes_out 65609 78282 bytes_in 215084 78282 station_ip 83.123.171.33 78282 port 15728869 78282 nas_port_type Virtual 78282 remote_ip 5.5.5.147 78283 username avaanna 78283 unique_id port 78283 terminate_cause User-Request 78283 bytes_out 109476 78283 bytes_in 890845 78283 station_ip 37.129.104.63 78283 port 15728870 78283 nas_port_type Virtual 78283 remote_ip 5.5.5.146 78288 username shahriyar 78288 unique_id port 78288 terminate_cause User-Request 78288 bytes_out 18841032 78288 bytes_in 464064249 78288 station_ip 5.202.26.224 78288 port 15728846 78288 nas_port_type Virtual 78288 remote_ip 5.5.5.251 78292 username asadi 78292 unique_id port 78292 terminate_cause User-Request 78292 bytes_out 29803 78292 bytes_in 194741 78292 station_ip 37.129.135.243 78292 port 15728879 78292 nas_port_type Virtual 78292 remote_ip 5.5.5.144 78295 username avaanna 78295 unique_id port 78295 terminate_cause User-Request 78295 bytes_out 45972 78295 bytes_in 453755 78295 station_ip 37.129.104.63 78295 port 15728883 78295 nas_port_type Virtual 78295 remote_ip 5.5.5.146 78298 username asadi 78298 unique_id port 78298 terminate_cause User-Request 78298 bytes_out 15135 78298 bytes_in 52409 78298 station_ip 37.129.135.243 78298 port 15728886 78298 nas_port_type Virtual 78298 remote_ip 5.5.5.144 78301 username zoha 78301 unique_id port 78301 terminate_cause Lost-Carrier 78301 bytes_out 1061220 78301 bytes_in 6702852 78301 station_ip 5.119.101.69 78301 port 15728868 78301 nas_port_type Virtual 78301 remote_ip 5.5.5.228 78303 username soleymani 78303 unique_id port 78303 terminate_cause Lost-Carrier 78303 bytes_out 63520 78303 bytes_in 339064 78303 station_ip 5.119.74.60 78303 port 15728889 78303 nas_port_type Virtual 78303 remote_ip 5.5.5.139 78304 username aminvpn 78304 unique_id port 78304 terminate_cause User-Request 78304 bytes_out 807330 78304 bytes_in 2984905 78304 station_ip 78.39.27.231 78304 port 15728891 78304 nas_port_type Virtual 78304 remote_ip 5.5.5.225 78305 username reza 78305 unique_id port 78305 terminate_cause User-Request 78305 bytes_out 16099 78305 bytes_in 239646 78305 station_ip 37.129.0.43 78305 port 15728893 78305 nas_port_type Virtual 78305 remote_ip 5.5.5.137 78306 username madadi 78306 unique_id port 78306 terminate_cause Lost-Carrier 78306 bytes_out 12455 78306 bytes_in 125391 78306 station_ip 5.119.55.158 78306 port 15728892 78306 nas_port_type Virtual 78306 remote_ip 5.5.5.138 78308 username alinezhad 78308 unique_id port 78308 terminate_cause User-Request 78308 bytes_out 0 78308 bytes_in 0 78308 station_ip 5.202.97.189 78308 port 15728897 78308 nas_port_type Virtual 78308 remote_ip 5.5.5.134 78311 username ahmadi 78311 unique_id port 78311 terminate_cause User-Request 78311 bytes_out 43471 78311 bytes_in 560874 78311 station_ip 83.122.215.110 78311 port 15728899 78311 nas_port_type Virtual 78311 remote_ip 5.5.5.133 78314 username madadi 78314 unique_id port 78314 terminate_cause Lost-Carrier 78314 bytes_out 55346 78314 bytes_in 261969 78314 station_ip 5.120.55.197 78314 port 15728903 78314 nas_port_type Virtual 78314 remote_ip 5.5.5.131 78318 username madadi 78318 unique_id port 78318 terminate_cause Lost-Carrier 78318 bytes_out 11175 78318 bytes_in 139408 78318 station_ip 5.119.98.253 78318 port 15728907 78318 nas_port_type Virtual 78318 remote_ip 5.5.5.128 78320 username madadi 78320 unique_id port 78320 terminate_cause Lost-Carrier 78320 bytes_out 3095 78320 bytes_in 115922 78320 station_ip 5.119.26.104 78320 port 15728912 78320 nas_port_type Virtual 78320 remote_ip 5.5.5.123 78326 username alinezhad 78326 unique_id port 78326 terminate_cause User-Request 78326 bytes_out 11350 78326 bytes_in 20378 78326 station_ip 83.122.67.116 78326 port 15728919 78326 nas_port_type Virtual 78326 remote_ip 5.5.5.118 78327 username forozande 78327 unique_id port 78327 terminate_cause User-Request 78327 bytes_out 21366 78327 bytes_in 37912 78327 station_ip 83.123.36.255 78327 port 15728920 78327 nas_port_type Virtual 78327 remote_ip 5.5.5.117 78339 username alinezhad 78339 unique_id port 78339 terminate_cause User-Request 78339 bytes_out 7992 78339 bytes_in 16521 78339 station_ip 83.122.67.116 78339 port 15728931 78339 nas_port_type Virtual 78339 remote_ip 5.5.5.118 78342 username soleymani 78342 unique_id port 78342 terminate_cause Lost-Carrier 78342 bytes_out 788457 78342 bytes_in 1735520 78342 station_ip 5.119.61.185 78342 port 15728925 78342 nas_port_type Virtual 78342 remote_ip 5.5.5.116 78348 username forozande 78348 unique_id port 78348 terminate_cause User-Request 78348 bytes_out 26092 78348 bytes_in 36372 78348 station_ip 37.129.90.101 78348 port 15728942 78348 nas_port_type Virtual 78348 remote_ip 5.5.5.112 78351 username iranmanesh 78351 unique_id port 78351 terminate_cause User-Request 78351 bytes_out 49603 78351 bytes_in 715496 78351 station_ip 37.129.116.124 78351 port 15728945 78351 nas_port_type Virtual 78351 remote_ip 5.5.5.245 78352 username ahmadi 78352 unique_id port 78352 terminate_cause User-Request 78352 bytes_out 0 78352 bytes_in 0 78352 station_ip 83.122.215.110 78352 port 15728946 78352 nas_port_type Virtual 78352 remote_ip 5.5.5.133 78353 username alinezhad 78353 unique_id port 78353 terminate_cause User-Request 78353 bytes_out 0 78353 bytes_in 0 78353 station_ip 113.203.108.133 78353 port 15728947 78353 nas_port_type Virtual 78353 remote_ip 5.5.5.111 78357 username alinezhad 78357 unique_id port 78357 terminate_cause User-Request 78357 bytes_out 0 78357 bytes_in 0 78357 station_ip 37.129.123.128 78357 port 15728955 78357 nas_port_type Virtual 78357 remote_ip 5.5.5.109 78360 username asadi 78360 unique_id port 78360 terminate_cause User-Request 78360 bytes_out 51820 78360 bytes_in 903353 78360 station_ip 37.129.135.243 78360 port 15728956 78360 nas_port_type Virtual 78360 remote_ip 5.5.5.144 78364 username alinezhad 78364 unique_id port 78364 terminate_cause User-Request 78364 bytes_out 0 78364 bytes_in 0 78364 station_ip 83.123.185.248 78364 port 15728960 78364 nas_port_type Virtual 78310 station_ip 5.119.101.69 78310 port 15728894 78310 nas_port_type Virtual 78310 remote_ip 5.5.5.228 78312 username madadi 78312 unique_id port 78312 terminate_cause Lost-Carrier 78312 bytes_out 11550 78312 bytes_in 125398 78312 station_ip 5.119.25.170 78312 port 15728900 78312 nas_port_type Virtual 78312 remote_ip 5.5.5.132 78313 username sobhan 78313 unique_id port 78313 terminate_cause Lost-Carrier 78313 bytes_out 948778 78313 bytes_in 11775883 78313 station_ip 2.183.240.220 78313 port 15728895 78313 nas_port_type Virtual 78313 remote_ip 5.5.5.136 78315 username avaanna 78315 unique_id port 78315 terminate_cause User-Request 78315 bytes_out 0 78315 bytes_in 0 78315 station_ip 83.122.95.169 78315 port 15728906 78315 nas_port_type Virtual 78315 remote_ip 5.5.5.127 78319 username forozande 78319 unique_id port 78319 terminate_cause User-Request 78319 bytes_out 52164 78319 bytes_in 765730 78319 station_ip 83.122.136.108 78319 port 15728911 78319 nas_port_type Virtual 78319 remote_ip 5.5.5.124 78321 username alinezhad 78321 unique_id port 78321 terminate_cause User-Request 78321 bytes_out 12119 78321 bytes_in 24748 78321 station_ip 83.122.226.46 78321 port 15728913 78321 nas_port_type Virtual 78321 remote_ip 5.5.5.122 78328 username alinezhad 78328 unique_id port 78328 terminate_cause User-Request 78328 bytes_out 8226 78328 bytes_in 16791 78328 station_ip 83.122.67.116 78328 port 15728921 78328 nas_port_type Virtual 78328 remote_ip 5.5.5.118 78334 username alinezhad 78334 unique_id port 78334 terminate_cause User-Request 78334 bytes_out 6840 78334 bytes_in 15507 78334 station_ip 83.122.67.116 78334 port 15728926 78334 nas_port_type Virtual 78334 remote_ip 5.5.5.118 78340 username forozande 78340 unique_id port 78340 terminate_cause User-Request 78340 bytes_out 62813 78340 bytes_in 612135 78340 station_ip 83.122.19.114 78340 port 15728932 78340 nas_port_type Virtual 78340 remote_ip 5.5.5.115 78341 username asadi 78341 unique_id port 78341 terminate_cause User-Request 78341 bytes_out 133063 78341 bytes_in 1339888 78341 station_ip 37.129.135.243 78341 port 15728933 78341 nas_port_type Virtual 78341 remote_ip 5.5.5.144 78344 username mahbobeh 78344 unique_id port 78344 terminate_cause Lost-Carrier 78344 bytes_out 5158863 78344 bytes_in 97991709 78344 station_ip 37.129.223.164 78344 port 15728910 78344 nas_port_type Virtual 78344 remote_ip 5.5.5.129 78345 username alinezhad 78345 unique_id port 78345 terminate_cause User-Request 78345 bytes_out 7161 78345 bytes_in 15246 78345 station_ip 83.122.67.116 78345 port 15728935 78345 nas_port_type Virtual 78345 remote_ip 5.5.5.118 78349 username forozande 78349 unique_id port 78349 terminate_cause User-Request 78349 bytes_out 16790 78349 bytes_in 149056 78349 station_ip 37.129.90.101 78349 port 15728943 78349 nas_port_type Virtual 78349 remote_ip 5.5.5.112 78354 username alinezhad 78354 unique_id port 78354 terminate_cause User-Request 78354 bytes_out 0 78354 bytes_in 0 78354 station_ip 113.203.108.133 78354 port 15728948 78354 nas_port_type Virtual 78354 remote_ip 5.5.5.111 78363 username soleymani 78363 unique_id port 78363 terminate_cause Lost-Carrier 78363 bytes_out 99118 78363 bytes_in 463341 78363 station_ip 5.119.12.252 78363 port 15728952 78363 nas_port_type Virtual 78363 remote_ip 5.5.5.110 78367 username alinezhad 78367 unique_id port 78367 terminate_cause User-Request 78367 bytes_out 44956 78367 bytes_in 575910 78367 station_ip 83.123.185.248 78367 port 15728962 78367 nas_port_type Virtual 78367 remote_ip 5.5.5.106 81228 unique_id port 81228 remote_ip 10.8.0.6 81230 username aminvpn 81230 mac 78317 station_ip 37.129.10.236 78317 port 15728909 78317 nas_port_type Virtual 78317 remote_ip 5.5.5.125 78323 username arabpour 78323 unique_id port 78323 terminate_cause User-Request 78323 bytes_out 398191 78323 bytes_in 11829353 78323 station_ip 113.203.101.121 78323 port 15728916 78323 nas_port_type Virtual 78323 remote_ip 5.5.5.121 78325 username alirezazamani 78325 unique_id port 78325 terminate_cause User-Request 78325 bytes_out 209686 78325 bytes_in 1427953 78325 station_ip 37.129.142.212 78325 port 15728915 78325 nas_port_type Virtual 78325 remote_ip 5.5.5.120 78335 username alinezhad 78335 unique_id port 78335 terminate_cause User-Request 78335 bytes_out 0 78335 bytes_in 0 78335 station_ip 83.122.67.116 78335 port 15728927 78335 nas_port_type Virtual 78335 remote_ip 5.5.5.118 78337 username alinezhad 78337 unique_id port 78337 terminate_cause User-Request 78337 bytes_out 0 78337 bytes_in 0 78337 station_ip 83.122.67.116 78337 port 15728929 78337 nas_port_type Virtual 78337 remote_ip 5.5.5.118 78346 username alinezhad 78346 unique_id port 78346 terminate_cause User-Request 78346 bytes_out 0 78346 bytes_in 0 78346 station_ip 83.122.67.116 78346 port 15728940 78346 nas_port_type Virtual 78346 remote_ip 5.5.5.118 78358 username mobina 78358 unique_id port 78358 terminate_cause Lost-Carrier 78358 bytes_out 1018621 78358 bytes_in 22075330 78358 station_ip 5.124.17.189 78358 port 15728904 78358 nas_port_type Virtual 78358 remote_ip 5.5.5.130 78361 username forozande 78361 unique_id port 78361 terminate_cause User-Request 78361 bytes_out 35790 78361 bytes_in 402853 78361 station_ip 83.122.147.139 78361 port 15728958 78361 nas_port_type Virtual 78361 remote_ip 5.5.5.107 78368 username zoha 78368 unique_id port 78368 terminate_cause Lost-Carrier 78368 bytes_out 2085334 78368 bytes_in 21140071 78368 station_ip 5.119.101.69 78368 port 15728949 78368 nas_port_type Virtual 78368 remote_ip 5.5.5.228 78373 username alinezhad 78373 unique_id port 78373 terminate_cause User-Request 78373 bytes_out 191543 78373 bytes_in 296026 78373 station_ip 83.123.52.173 78373 port 15728970 78373 nas_port_type Virtual 78373 remote_ip 5.5.5.100 78375 username asadi 78375 unique_id port 78375 terminate_cause User-Request 78375 bytes_out 54172 78375 bytes_in 191951 78375 station_ip 37.129.135.243 78375 port 15728973 78375 nas_port_type Virtual 78375 remote_ip 5.5.5.144 78379 username madadi 78379 unique_id port 78379 terminate_cause Lost-Carrier 78379 bytes_out 533240 78379 bytes_in 963323 78379 station_ip 5.120.3.190 78379 port 15728961 78379 nas_port_type Virtual 78379 remote_ip 5.5.5.105 78381 username asadi 78381 unique_id port 78381 terminate_cause User-Request 78381 bytes_out 37134 78381 bytes_in 193088 78381 station_ip 37.129.135.243 78381 port 15728977 78381 nas_port_type Virtual 78381 remote_ip 5.5.5.144 78383 username mobina 78383 unique_id port 78383 terminate_cause Lost-Carrier 78383 bytes_out 1357991 78383 bytes_in 15644179 78383 station_ip 5.123.154.198 78383 port 15728966 78383 nas_port_type Virtual 78383 remote_ip 5.5.5.102 78385 username asadi 78385 unique_id port 78385 terminate_cause User-Request 78385 bytes_out 68851 78385 bytes_in 281479 78385 station_ip 37.129.135.243 78385 port 15728982 78385 nas_port_type Virtual 78385 remote_ip 5.5.5.144 78396 username asadi 78396 unique_id port 78396 terminate_cause User-Request 78396 bytes_out 67285 78396 bytes_in 980978 78396 station_ip 83.123.225.82 78396 port 15728991 78396 nas_port_type Virtual 78396 remote_ip 5.5.5.90 78397 username asadi 78397 unique_id port 78397 terminate_cause User-Request 78397 bytes_out 95438 78330 terminate_cause User-Request 78330 bytes_out 0 78330 bytes_in 0 78330 station_ip 5.119.61.185 78330 port 15728923 78330 nas_port_type Virtual 78330 remote_ip 5.5.5.116 78331 username alinezhad 78331 unique_id port 78331 terminate_cause User-Request 78331 bytes_out 9150 78331 bytes_in 16349 78331 station_ip 83.122.67.116 78331 port 15728924 78331 nas_port_type Virtual 78331 remote_ip 5.5.5.118 78332 username zoha 78332 unique_id port 78332 terminate_cause User-Request 78332 bytes_out 757516 78332 bytes_in 5479679 78332 station_ip 5.119.101.69 78332 port 15728918 78332 nas_port_type Virtual 78332 remote_ip 5.5.5.228 78333 username sobhan 78333 unique_id port 78333 terminate_cause User-Request 78333 bytes_out 4750960 78333 bytes_in 84085543 78333 station_ip 5.233.56.13 78333 port 15728908 78333 nas_port_type Virtual 78333 remote_ip 5.5.5.126 78336 username alinezhad 78336 unique_id port 78336 terminate_cause User-Request 78336 bytes_out 14673 78336 bytes_in 18856 78336 station_ip 83.122.67.116 78336 port 15728928 78336 nas_port_type Virtual 78336 remote_ip 5.5.5.118 78338 username alinezhad 78338 unique_id port 78338 terminate_cause User-Request 78338 bytes_out 15621 78338 bytes_in 20825 78338 station_ip 83.122.67.116 78338 port 15728930 78338 nas_port_type Virtual 78338 remote_ip 5.5.5.118 78343 username alinezhad 78343 unique_id port 78343 terminate_cause User-Request 78343 bytes_out 0 78343 bytes_in 0 78343 station_ip 83.122.67.116 78343 port 15728934 78343 nas_port_type Virtual 78343 remote_ip 5.5.5.118 78347 username forozande 78347 unique_id port 78347 terminate_cause User-Request 78347 bytes_out 44 78347 bytes_in 148 78347 station_ip 83.122.255.116 78347 port 15728941 78347 nas_port_type Virtual 78347 remote_ip 5.5.5.113 78350 username iranmanesh 78350 unique_id port 78350 terminate_cause User-Request 78350 bytes_out 25292 78350 bytes_in 61679 78350 station_ip 37.129.116.124 78350 port 15728944 78350 nas_port_type Virtual 78350 remote_ip 5.5.5.245 78355 username avaanna 78355 unique_id port 78355 terminate_cause User-Request 78355 bytes_out 94958 78355 bytes_in 799016 78355 station_ip 83.122.95.169 78355 port 15728950 78355 nas_port_type Virtual 78355 remote_ip 5.5.5.127 78356 username aminvpn 78356 unique_id port 78356 terminate_cause Lost-Carrier 78356 bytes_out 4828963 78356 bytes_in 72342907 78356 station_ip 5.119.227.138 78356 port 15728902 78356 nas_port_type Virtual 78356 remote_ip 5.5.5.195 78359 username asadi 78359 unique_id port 78359 terminate_cause User-Request 78359 bytes_out 50872 78359 bytes_in 253139 78359 station_ip 37.129.135.243 78359 port 15728954 78359 nas_port_type Virtual 78359 remote_ip 5.5.5.144 78362 username asadi 78362 unique_id port 78362 terminate_cause User-Request 78362 bytes_out 34674 78362 bytes_in 150265 78362 station_ip 37.129.135.243 78362 port 15728959 78362 nas_port_type Virtual 78362 remote_ip 5.5.5.144 78365 username madadi 78365 unique_id port 78365 terminate_cause Lost-Carrier 78365 bytes_out 196982 78365 bytes_in 1008759 78365 station_ip 5.120.92.160 78365 port 15728936 78365 nas_port_type Virtual 78365 remote_ip 5.5.5.114 78370 username alinezhad 78370 unique_id port 78370 terminate_cause User-Request 78370 bytes_out 0 78370 bytes_in 0 78370 station_ip 83.123.185.248 78370 port 15728969 78370 nas_port_type Virtual 78370 remote_ip 5.5.5.106 78371 username soleymani 78371 unique_id port 78371 terminate_cause Lost-Carrier 78371 bytes_out 276259 78371 bytes_in 1676664 78371 station_ip 5.119.61.37 78371 port 15728965 78371 nas_port_type Virtual 78371 remote_ip 5.5.5.103 78380 username reza 78364 remote_ip 5.5.5.106 78366 username soleymani 78366 unique_id port 78366 terminate_cause User-Request 78366 bytes_out 0 78366 bytes_in 0 78366 station_ip 5.119.26.210 78366 port 15728963 78366 nas_port_type Virtual 78366 remote_ip 5.5.5.104 78369 username ahmad 78369 unique_id port 78369 terminate_cause User-Request 78369 bytes_out 615503 78369 bytes_in 7749242 78369 station_ip 86.57.121.225 78369 port 15728953 78369 nas_port_type Virtual 78369 remote_ip 5.5.5.242 78382 username reza2742 78382 unique_id port 78382 terminate_cause User-Request 78382 bytes_out 79646 78382 bytes_in 88269 78382 station_ip 37.129.78.148 78382 port 15728978 78382 nas_port_type Virtual 78382 remote_ip 5.5.5.97 78384 username reza2742 78384 unique_id port 78384 terminate_cause User-Request 78384 bytes_out 9960 78384 bytes_in 21319 78384 station_ip 37.129.78.148 78384 port 15728981 78384 nas_port_type Virtual 78384 remote_ip 5.5.5.97 78387 username reza 78387 unique_id port 78387 terminate_cause User-Request 78387 bytes_out 68903 78387 bytes_in 1691976 78387 station_ip 37.129.96.104 78387 port 15728980 78387 nas_port_type Virtual 78387 remote_ip 5.5.5.99 81229 station_ip 5.202.10.122 81229 port 15728809 81229 nas_port_type Virtual 81229 remote_ip 5.5.5.166 81231 username aminvpn 81231 mac 81231 bytes_out 0 81231 bytes_in 0 81231 station_ip 5.119.30.76 78392 username reza2742 78392 unique_id port 78392 terminate_cause User-Request 78392 bytes_out 346870 78392 bytes_in 8697167 78392 station_ip 83.123.17.82 78392 port 15728989 78392 nas_port_type Virtual 78392 remote_ip 5.5.5.91 78395 username majid 78395 unique_id port 78395 terminate_cause User-Request 78395 bytes_out 709225 78395 bytes_in 17738133 78395 station_ip 86.57.108.203 78395 port 15728987 78395 nas_port_type Virtual 78395 remote_ip 5.5.5.93 78398 username asadi 78398 unique_id port 78398 terminate_cause User-Request 78398 bytes_out 33389 78398 bytes_in 244418 78398 station_ip 83.123.225.82 78398 port 15728993 78398 nas_port_type Virtual 78398 remote_ip 5.5.5.90 78401 username shahnaz 78401 unique_id port 78401 terminate_cause User-Request 78401 bytes_out 113366 78401 bytes_in 1474295 78401 station_ip 5.119.36.248 78401 port 15728996 78401 nas_port_type Virtual 78401 remote_ip 5.5.5.165 78406 username asadi 78406 unique_id port 78406 terminate_cause User-Request 78406 bytes_out 33240 78406 bytes_in 128674 78406 station_ip 83.123.225.82 78406 port 15729001 78406 nas_port_type Virtual 78406 remote_ip 5.5.5.90 78408 username asadi 78408 unique_id port 78408 terminate_cause User-Request 78408 bytes_out 28822 78408 bytes_in 127519 78408 station_ip 83.123.225.82 78408 port 15729003 78408 nas_port_type Virtual 78408 remote_ip 5.5.5.90 81231 port 29 81231 unique_id port 81231 remote_ip 10.8.1.10 81233 username aminvpn 81233 mac 81233 bytes_out 0 81233 bytes_in 0 81233 station_ip 5.119.30.76 81233 port 29 78412 username asadi 78412 unique_id port 78412 terminate_cause User-Request 78412 bytes_out 137599 78412 bytes_in 2232681 78412 station_ip 83.123.225.82 78412 port 15729006 78412 nas_port_type Virtual 78412 remote_ip 5.5.5.90 78417 username asadi 78417 unique_id port 78417 terminate_cause User-Request 78417 bytes_out 44312 78417 bytes_in 100729 78417 station_ip 113.203.52.135 78417 port 15729026 78417 nas_port_type Virtual 78417 remote_ip 5.5.5.88 78422 username asadi 78422 unique_id port 78422 terminate_cause User-Request 78422 bytes_out 18681 78422 bytes_in 28489 78422 station_ip 113.203.52.135 78422 port 15729031 81233 unique_id port 81233 remote_ip 10.8.1.10 81230 bytes_out 238151 81230 bytes_in 252555 81230 station_ip 5.119.30.76 81230 port 14 81230 unique_id port 78374 username soleymani 78374 unique_id port 78374 terminate_cause Lost-Carrier 78374 bytes_out 317861 78374 bytes_in 2685654 78374 station_ip 5.119.42.110 78374 port 15728968 78374 nas_port_type Virtual 78374 remote_ip 5.5.5.101 78376 username reza2742 78376 unique_id port 78376 terminate_cause Lost-Carrier 78376 bytes_out 2291561 78376 bytes_in 28722626 78376 station_ip 46.225.214.142 78376 port 15728957 78376 nas_port_type Virtual 78376 remote_ip 5.5.5.108 78377 username ahmadi 78377 unique_id port 78377 terminate_cause User-Request 78377 bytes_out 27328 78377 bytes_in 152404 78377 station_ip 83.122.215.110 78377 port 15728974 78377 nas_port_type Virtual 78377 remote_ip 5.5.5.133 78378 username asadi 78378 unique_id port 78378 terminate_cause User-Request 78378 bytes_out 44482 78378 bytes_in 245338 78378 station_ip 37.129.135.243 78378 port 15728976 78378 nas_port_type Virtual 78378 remote_ip 5.5.5.144 78391 username mobina 78391 unique_id port 78391 terminate_cause Lost-Carrier 78391 bytes_out 34902 78391 bytes_in 173044 78391 station_ip 5.123.138.181 78391 port 15728986 78391 nas_port_type Virtual 78391 remote_ip 5.5.5.94 78393 username madadi 78393 unique_id port 78393 terminate_cause Lost-Carrier 78393 bytes_out 915563 78393 bytes_in 2865892 78393 station_ip 5.119.142.248 78393 port 15728975 78393 nas_port_type Virtual 78393 remote_ip 5.5.5.98 78394 username madadi 78394 unique_id port 78394 terminate_cause Lost-Carrier 78394 bytes_out 12757 78394 bytes_in 125158 78394 station_ip 5.120.87.189 78394 port 15728988 78394 nas_port_type Virtual 78394 remote_ip 5.5.5.92 78399 username asadi 78399 unique_id port 78399 terminate_cause User-Request 78399 bytes_out 464858 78399 bytes_in 7866602 78399 station_ip 83.123.225.82 78399 port 15728994 78399 nas_port_type Virtual 78399 remote_ip 5.5.5.90 78400 username asadi 78400 unique_id port 78400 terminate_cause User-Request 78400 bytes_out 381826 78400 bytes_in 6911062 78400 station_ip 83.123.225.82 78400 port 15728995 78400 nas_port_type Virtual 78400 remote_ip 5.5.5.90 78402 username asadi 78402 unique_id port 78402 terminate_cause User-Request 78402 bytes_out 459952 78402 bytes_in 11078418 78402 station_ip 83.123.225.82 78402 port 15728997 78402 nas_port_type Virtual 78402 remote_ip 5.5.5.90 78403 username asadi 78403 unique_id port 78403 terminate_cause User-Request 78403 bytes_out 112631 78403 bytes_in 431464 78403 station_ip 83.123.225.82 78403 port 15728998 78403 nas_port_type Virtual 78403 remote_ip 5.5.5.90 78407 username asadi 78407 unique_id port 78407 terminate_cause User-Request 78407 bytes_out 19507 78407 bytes_in 121480 78407 station_ip 83.123.225.82 78407 port 15729002 78407 nas_port_type Virtual 78407 remote_ip 5.5.5.90 78409 username asadi 78409 unique_id port 78409 terminate_cause User-Request 78409 bytes_out 15251 78409 bytes_in 23310 78409 station_ip 83.123.225.82 78409 port 15729004 78409 nas_port_type Virtual 78409 remote_ip 5.5.5.90 81230 remote_ip 10.8.0.6 81234 username madadi 81234 unique_id port 81234 terminate_cause Lost-Carrier 81234 bytes_out 5344890 81234 bytes_in 128464192 81234 station_ip 5.119.32.165 81234 port 15728794 81234 nas_port_type Virtual 78420 username asadi 78420 unique_id port 78420 terminate_cause User-Request 78420 bytes_out 49155 78420 bytes_in 426245 78420 station_ip 113.203.52.135 78420 port 15729029 78420 nas_port_type Virtual 78420 remote_ip 5.5.5.88 78424 username asadi 78424 unique_id port 78424 terminate_cause User-Request 78380 unique_id port 78380 terminate_cause User-Request 78380 bytes_out 317785 78380 bytes_in 6782815 78380 station_ip 37.129.96.104 78380 port 15728972 78380 nas_port_type Virtual 78380 remote_ip 5.5.5.99 78386 username abdilahyar 78386 unique_id port 78386 terminate_cause Lost-Carrier 78386 bytes_out 9074289 78386 bytes_in 18141866 78386 station_ip 5.119.244.221 78386 port 15728863 78386 nas_port_type Virtual 78386 remote_ip 5.5.5.151 78388 username asadi 78388 unique_id port 78388 terminate_cause User-Request 78388 bytes_out 41272 78388 bytes_in 92951 78388 station_ip 37.129.135.243 78388 port 15728983 78388 nas_port_type Virtual 78388 remote_ip 5.5.5.144 78390 username alirezazamani 78390 unique_id port 78390 terminate_cause Lost-Carrier 78390 bytes_out 200739 78390 bytes_in 3204388 78390 station_ip 5.126.231.121 78390 port 15728984 78390 nas_port_type Virtual 78390 remote_ip 5.5.5.95 78404 username asadi 78404 unique_id port 78404 terminate_cause User-Request 78404 bytes_out 35677 78404 bytes_in 245846 78404 station_ip 83.123.225.82 78404 port 15728999 78404 nas_port_type Virtual 78404 remote_ip 5.5.5.90 78410 username asadi 78410 unique_id port 78410 terminate_cause User-Request 78410 bytes_out 124221 78410 bytes_in 2380230 78410 station_ip 83.123.225.82 78410 port 15729005 78410 nas_port_type Virtual 78410 remote_ip 5.5.5.90 78416 username asadi 78416 unique_id port 78416 terminate_cause User-Request 78416 bytes_out 129708 78416 bytes_in 2527137 78416 station_ip 113.203.109.56 78416 port 15729025 78416 nas_port_type Virtual 78416 remote_ip 5.5.5.89 78419 username asadi 78419 unique_id port 78419 terminate_cause User-Request 78419 bytes_out 12132 78419 bytes_in 24917 78419 station_ip 113.203.52.135 78419 port 15729028 78419 nas_port_type Virtual 78419 remote_ip 5.5.5.88 78421 username asadi 78421 unique_id port 78421 terminate_cause User-Request 78421 bytes_out 2221 78421 bytes_in 14172 78421 station_ip 113.203.52.135 78421 port 15729030 78421 nas_port_type Virtual 78421 remote_ip 5.5.5.88 78423 username asadi 78423 unique_id port 78423 terminate_cause User-Request 78423 bytes_out 14821 78423 bytes_in 25813 78423 station_ip 113.203.52.135 78423 port 15729032 78423 nas_port_type Virtual 78423 remote_ip 5.5.5.88 78425 username asadi 78425 unique_id port 78425 terminate_cause User-Request 78425 bytes_out 39626 78425 bytes_in 154052 78425 station_ip 113.203.52.135 78425 port 15729034 78425 nas_port_type Virtual 78425 remote_ip 5.5.5.88 78427 username asadi 78427 unique_id port 78427 terminate_cause User-Request 78427 bytes_out 28295 78427 bytes_in 71437 78427 station_ip 113.203.52.135 78427 port 15729036 78427 nas_port_type Virtual 78427 remote_ip 5.5.5.88 78431 username asadi 78431 unique_id port 78431 terminate_cause User-Request 78431 bytes_out 142686 78431 bytes_in 3137700 78431 station_ip 113.203.52.135 78431 port 15729040 78431 nas_port_type Virtual 78431 remote_ip 5.5.5.88 78438 username alinezhad 78438 unique_id port 78438 terminate_cause User-Request 78438 bytes_out 177993 78438 bytes_in 602291 78438 station_ip 37.129.88.129 78438 port 15728647 78438 nas_port_type Virtual 78438 remote_ip 5.5.5.248 78443 username asadi 78443 unique_id port 78443 terminate_cause User-Request 78443 bytes_out 89910 78443 bytes_in 651465 78443 station_ip 83.123.218.124 78443 port 15728651 78443 nas_port_type Virtual 78443 remote_ip 5.5.5.253 78445 username asadi 78445 unique_id port 78445 terminate_cause User-Request 78445 bytes_out 40311 78445 bytes_in 351754 78445 station_ip 83.123.218.124 78445 port 15728653 78445 nas_port_type Virtual 78445 remote_ip 5.5.5.253 78397 bytes_in 1828951 78397 station_ip 83.123.225.82 78397 port 15728992 78397 nas_port_type Virtual 78397 remote_ip 5.5.5.90 78405 username asadi 78405 unique_id port 78405 terminate_cause User-Request 78405 bytes_out 35673 78405 bytes_in 147949 78405 station_ip 83.123.225.82 78405 port 15729000 78405 nas_port_type Virtual 78405 remote_ip 5.5.5.90 78413 username asadi 78413 unique_id port 78413 terminate_cause User-Request 78413 bytes_out 193906 78413 bytes_in 4308606 78413 station_ip 83.123.225.82 78413 port 15729007 78413 nas_port_type Virtual 78413 remote_ip 5.5.5.90 78415 username majid 78415 unique_id port 78415 terminate_cause User-Request 78415 bytes_out 10203991 78415 bytes_in 307828875 78415 station_ip 86.57.108.203 78415 port 15728990 78415 nas_port_type Virtual 78415 remote_ip 5.5.5.93 78418 username asadi 78418 unique_id port 78418 terminate_cause User-Request 78418 bytes_out 137525 78418 bytes_in 3371912 78418 station_ip 113.203.52.135 78418 port 15729027 78418 nas_port_type Virtual 78418 remote_ip 5.5.5.88 78426 username asadi 78426 unique_id port 78426 terminate_cause User-Request 78426 bytes_out 29431 78426 bytes_in 70871 78426 station_ip 113.203.52.135 78426 port 15729035 78426 nas_port_type Virtual 78426 remote_ip 5.5.5.88 78429 username asadi 78429 unique_id port 78429 terminate_cause User-Request 78429 bytes_out 38593 78429 bytes_in 115182 78429 station_ip 113.203.52.135 78429 port 15729038 78429 nas_port_type Virtual 78429 remote_ip 5.5.5.88 78430 username asadi 78430 unique_id port 78430 terminate_cause User-Request 78430 bytes_out 37300 78430 bytes_in 112435 78430 station_ip 113.203.52.135 78430 port 15729039 78430 nas_port_type Virtual 78430 remote_ip 5.5.5.88 78433 username soleymani 78433 unique_id port 78433 terminate_cause Lost-Carrier 78433 bytes_out 128387 78433 bytes_in 408971 78433 station_ip 5.119.211.51 78433 port 15729045 78433 nas_port_type Virtual 78433 remote_ip 5.5.5.86 78436 username forozande 78436 unique_id port 78436 terminate_cause User-Request 78436 bytes_out 176342 78436 bytes_in 1778561 78436 station_ip 83.123.15.223 78436 port 15728643 78436 nas_port_type Virtual 78436 remote_ip 5.5.5.252 78437 username soleymani 78437 unique_id port 78437 terminate_cause Lost-Carrier 78437 bytes_out 58171 78437 bytes_in 177262 78437 station_ip 5.119.134.154 78437 port 15728641 78437 nas_port_type Virtual 78437 remote_ip 5.5.5.254 78449 username asadi 78449 unique_id port 78449 terminate_cause User-Request 78449 bytes_out 218663 78449 bytes_in 3252957 78449 station_ip 83.123.218.124 78449 port 15728658 78449 nas_port_type Virtual 78449 remote_ip 5.5.5.253 78451 username asadi 78451 unique_id port 78451 terminate_cause User-Request 78451 bytes_out 219227 78451 bytes_in 3686318 78451 station_ip 83.123.218.124 78451 port 15728660 78451 nas_port_type Virtual 78451 remote_ip 5.5.5.253 78455 username soleymani 78455 unique_id port 78455 terminate_cause Lost-Carrier 78455 bytes_out 108072 78455 bytes_in 386522 78455 station_ip 5.120.144.121 78455 port 15728661 78455 nas_port_type Virtual 78455 remote_ip 5.5.5.241 78462 username forozande 78462 unique_id port 78462 terminate_cause User-Request 78462 bytes_out 85315 78462 bytes_in 736889 78462 station_ip 83.122.163.225 78462 port 15728669 78462 nas_port_type Virtual 78462 remote_ip 5.5.5.235 78463 username forozande 78463 unique_id port 78463 terminate_cause User-Request 78463 bytes_out 28893 78463 bytes_in 133292 78463 station_ip 83.122.163.225 78463 port 15728674 78463 nas_port_type Virtual 78463 remote_ip 5.5.5.235 78477 username asadi 78477 unique_id port 78422 nas_port_type Virtual 78422 remote_ip 5.5.5.88 78428 username asadi 78428 unique_id port 78428 terminate_cause User-Request 78428 bytes_out 17107 78428 bytes_in 73690 78428 station_ip 113.203.52.135 78428 port 15729037 78428 nas_port_type Virtual 78428 remote_ip 5.5.5.88 78434 username asadi 78434 unique_id port 78434 terminate_cause User-Request 78434 bytes_out 86709 78434 bytes_in 435671 78434 station_ip 83.123.218.124 78434 port 15728642 78434 nas_port_type Virtual 78434 remote_ip 5.5.5.253 78439 username madadi 78439 unique_id port 78439 terminate_cause Lost-Carrier 78439 bytes_out 46775 78439 bytes_in 442934 78439 station_ip 5.119.162.12 78439 port 15728644 78439 nas_port_type Virtual 78439 remote_ip 5.5.5.251 78441 username madadi 78441 unique_id port 78441 terminate_cause Lost-Carrier 78441 bytes_out 18072 78441 bytes_in 192042 78441 station_ip 5.119.163.96 78441 port 15728646 78441 nas_port_type Virtual 78441 remote_ip 5.5.5.249 78447 username asadi 78447 unique_id port 78447 terminate_cause User-Request 78447 bytes_out 188236 78447 bytes_in 2250374 78447 station_ip 83.123.218.124 78447 port 15728655 78447 nas_port_type Virtual 78447 remote_ip 5.5.5.253 78452 username soleymani 78452 unique_id port 78452 terminate_cause Lost-Carrier 78452 bytes_out 558760 78452 bytes_in 1672040 78452 station_ip 5.120.159.39 78452 port 15728650 78452 nas_port_type Virtual 78452 remote_ip 5.5.5.245 78454 username soleymani 78454 unique_id port 78454 terminate_cause Lost-Carrier 78454 bytes_out 160644 78454 bytes_in 806836 78454 station_ip 5.119.7.234 78454 port 15728657 78454 nas_port_type Virtual 78454 remote_ip 5.5.5.242 78456 username ahmadi 78456 unique_id port 78456 terminate_cause User-Request 78456 bytes_out 34881 78456 bytes_in 432164 78456 station_ip 83.122.131.122 78456 port 15728664 78456 nas_port_type Virtual 78456 remote_ip 5.5.5.238 78459 username ahmadi 78459 unique_id port 78459 terminate_cause User-Request 78459 bytes_out 0 78459 bytes_in 0 78459 station_ip 83.122.131.122 78459 port 15728667 78459 nas_port_type Virtual 78459 remote_ip 5.5.5.238 78460 username asadi 78460 unique_id port 78460 terminate_cause User-Request 78460 bytes_out 20895 78460 bytes_in 194487 78460 station_ip 83.123.218.124 78460 port 15728668 78460 nas_port_type Virtual 78460 remote_ip 5.5.5.253 78467 username asadi 78467 unique_id port 78467 terminate_cause User-Request 78467 bytes_out 63133 78467 bytes_in 387842 78467 station_ip 83.123.218.124 78467 port 15728679 78467 nas_port_type Virtual 78467 remote_ip 5.5.5.253 78469 username alinezhad 78469 unique_id port 78469 terminate_cause User-Request 78469 bytes_out 0 78469 bytes_in 0 78469 station_ip 5.202.6.157 78469 port 15728681 78469 nas_port_type Virtual 78469 remote_ip 5.5.5.230 78475 username alinezhad 78475 unique_id port 78475 terminate_cause User-Request 78475 bytes_out 0 78475 bytes_in 0 78475 station_ip 83.122.182.147 78475 port 15728687 78475 nas_port_type Virtual 78475 remote_ip 5.5.5.227 78476 username iranmanesh 78476 unique_id port 78476 terminate_cause User-Request 78476 bytes_out 38892 78476 bytes_in 245788 78476 station_ip 83.123.232.154 78476 port 15728688 78476 nas_port_type Virtual 78476 remote_ip 5.5.5.228 78482 username soleymani 78482 unique_id port 78482 terminate_cause Lost-Carrier 78482 bytes_out 267898 78482 bytes_in 814849 78482 station_ip 5.119.170.162 78482 port 15728680 78482 nas_port_type Virtual 78482 remote_ip 5.5.5.231 78484 username soleymani 78484 unique_id port 78484 terminate_cause User-Request 78484 bytes_out 0 78484 bytes_in 0 78484 station_ip 5.119.248.166 78484 port 15728695 78424 bytes_out 31560 78424 bytes_in 92974 78424 station_ip 113.203.52.135 78424 port 15729033 78424 nas_port_type Virtual 78424 remote_ip 5.5.5.88 78432 username mobina 78432 unique_id port 78432 terminate_cause Lost-Carrier 78432 bytes_out 2640957 78432 bytes_in 68244894 78432 station_ip 5.124.171.185 78432 port 15729044 78432 nas_port_type Virtual 78432 remote_ip 5.5.5.87 78435 username soleymani 78435 unique_id port 78435 terminate_cause Lost-Carrier 78435 bytes_out 48964 78435 bytes_in 226536 78435 station_ip 5.120.12.25 78435 port 15728640 78435 nas_port_type Virtual 78435 remote_ip 5.5.5.255 78440 username soleymani 78440 unique_id port 78440 terminate_cause Lost-Carrier 78440 bytes_out 2278258 78440 bytes_in 280001 78440 station_ip 5.120.6.41 78440 port 15728645 78440 nas_port_type Virtual 78440 remote_ip 5.5.5.250 78442 username shahnaz 78442 unique_id port 78442 terminate_cause User-Request 78442 bytes_out 30139 78442 bytes_in 92672 78442 station_ip 5.119.163.165 78442 port 15728649 78442 nas_port_type Virtual 78442 remote_ip 5.5.5.246 78444 username shahnaz 78444 unique_id port 78444 terminate_cause User-Request 78444 bytes_out 25347 78444 bytes_in 287325 78444 station_ip 5.119.163.165 78444 port 15728652 78444 nas_port_type Virtual 78444 remote_ip 5.5.5.246 78446 username soleymani 78446 unique_id port 78446 terminate_cause Lost-Carrier 78446 bytes_out 377815 78446 bytes_in 1362528 78446 station_ip 5.119.97.109 78446 port 15728648 78446 nas_port_type Virtual 78446 remote_ip 5.5.5.247 78448 username mobina 78448 unique_id port 78448 terminate_cause User-Request 78448 bytes_out 0 78448 bytes_in 0 78448 station_ip 5.123.248.70 78448 port 15728656 78448 nas_port_type Virtual 78448 remote_ip 5.5.5.243 78450 username forozande 78450 unique_id port 78450 terminate_cause User-Request 78450 bytes_out 62414 78450 bytes_in 862795 78450 station_ip 83.123.15.223 78450 port 15728659 78450 nas_port_type Virtual 78450 remote_ip 5.5.5.252 78453 username alireza 78453 unique_id port 78453 terminate_cause User-Request 78453 bytes_out 0 78453 bytes_in 0 78453 station_ip 5.119.51.95 78453 port 15728662 78453 nas_port_type Virtual 78453 remote_ip 5.5.5.240 78457 username soleymani 78457 unique_id port 78457 terminate_cause Lost-Carrier 78457 bytes_out 333899 78457 bytes_in 362173 78457 station_ip 5.119.207.185 78457 port 15728663 78457 nas_port_type Virtual 78457 remote_ip 5.5.5.239 78465 username soleymani 78465 unique_id port 78465 terminate_cause Lost-Carrier 78465 bytes_out 179553 78465 bytes_in 436328 78465 station_ip 5.120.56.76 78465 port 15728666 78465 nas_port_type Virtual 78465 remote_ip 5.5.5.236 78472 username asadi 78472 unique_id port 78472 terminate_cause User-Request 78472 bytes_out 30547 78472 bytes_in 181446 78472 station_ip 83.123.218.124 78472 port 15728683 78472 nas_port_type Virtual 78472 remote_ip 5.5.5.253 78473 username alinezhad 78473 unique_id port 78473 terminate_cause NAS-Error 78473 bytes_out 0 78473 bytes_in 342 78473 station_ip 5.202.6.157 78473 port 15728684 78473 nas_port_type Virtual 78473 remote_ip 5.5.5.230 78481 username iranmanesh 78481 unique_id port 78481 terminate_cause User-Request 78481 bytes_out 217728 78481 bytes_in 3146077 78481 station_ip 83.123.232.154 78481 port 15728690 78481 nas_port_type Virtual 78481 remote_ip 5.5.5.228 78483 username soleymani 78483 unique_id port 78483 terminate_cause User-Request 78483 bytes_out 0 78483 bytes_in 0 78483 station_ip 5.119.248.166 78483 port 15728694 78483 nas_port_type Virtual 78483 remote_ip 5.5.5.226 78485 username soleymani 78485 unique_id port 78485 terminate_cause User-Request 78458 username soleymani 78458 unique_id port 78458 terminate_cause Lost-Carrier 78458 bytes_out 180559 78458 bytes_in 344537 78458 station_ip 5.119.126.69 78458 port 15728665 78458 nas_port_type Virtual 78458 remote_ip 5.5.5.237 78461 username soleymani 78461 unique_id port 78461 terminate_cause User-Request 78461 bytes_out 0 78461 bytes_in 0 78461 station_ip 5.119.51.159 78461 port 15728670 78461 nas_port_type Virtual 78461 remote_ip 5.5.5.234 78464 username avaanna 78464 unique_id port 78464 terminate_cause User-Request 78464 bytes_out 336072 78464 bytes_in 5383762 78464 station_ip 83.122.54.46 78464 port 15728675 78464 nas_port_type Virtual 78464 remote_ip 5.5.5.233 78466 username avaanna 78466 unique_id port 78466 terminate_cause User-Request 78466 bytes_out 156405 78466 bytes_in 921144 78466 station_ip 83.122.54.46 78466 port 15728677 78466 nas_port_type Virtual 78466 remote_ip 5.5.5.233 78468 username soleymani 78468 unique_id port 78468 terminate_cause Lost-Carrier 78468 bytes_out 47645 78468 bytes_in 163427 78468 station_ip 5.119.51.159 78468 port 15728673 78468 nas_port_type Virtual 78468 remote_ip 5.5.5.234 78470 username asadi 78470 unique_id port 78470 terminate_cause User-Request 78470 bytes_out 26564 78470 bytes_in 98449 78470 station_ip 83.123.218.124 78470 port 15728682 78470 nas_port_type Virtual 78470 remote_ip 5.5.5.253 78471 username madadi 78471 unique_id port 78471 terminate_cause Lost-Carrier 78471 bytes_out 23141 78471 bytes_in 156918 78471 station_ip 5.119.225.86 78471 port 15728676 78471 nas_port_type Virtual 78471 remote_ip 5.5.5.232 78474 username iranmanesh 78474 unique_id port 78474 terminate_cause User-Request 78474 bytes_out 52957 78474 bytes_in 448711 78474 station_ip 83.123.232.154 78474 port 15728686 78474 nas_port_type Virtual 78474 remote_ip 5.5.5.228 78479 username soleymani 78479 kill_reason Maximum number of concurrent logins reached 78479 unique_id port 78479 bytes_out 0 78479 bytes_in 0 78479 station_ip 5.120.70.248 78479 port 15728692 78479 nas_port_type Virtual 78491 username arabpour 78491 unique_id port 78491 terminate_cause User-Request 78491 bytes_out 95243 78491 bytes_in 1280002 78491 station_ip 83.123.26.173 78491 port 15728703 78491 nas_port_type Virtual 78491 remote_ip 5.5.5.221 78493 username madadi 78493 unique_id port 78493 terminate_cause Lost-Carrier 78493 bytes_out 41212 78493 bytes_in 193433 78493 station_ip 5.119.47.254 78493 port 15728702 78493 nas_port_type Virtual 78493 remote_ip 5.5.5.222 78497 username alinezhad 78497 unique_id port 78497 terminate_cause User-Request 78497 bytes_out 0 78497 bytes_in 0 78497 station_ip 5.202.16.11 78497 port 15728712 78497 nas_port_type Virtual 78497 remote_ip 5.5.5.213 78504 username aminvpn 78504 unique_id port 78504 terminate_cause Lost-Carrier 78504 bytes_out 1566306 78504 bytes_in 6141615 78504 station_ip 78.39.27.231 78504 port 15728707 78504 nas_port_type Virtual 78504 remote_ip 5.5.5.217 78511 username soleymani 78511 unique_id port 78511 terminate_cause Lost-Carrier 78511 bytes_out 340136 78511 bytes_in 277828 78511 station_ip 5.120.148.235 78511 port 15728726 78511 nas_port_type Virtual 78511 remote_ip 5.5.5.204 78514 username dehghan 78514 unique_id port 78514 terminate_cause User-Request 78514 bytes_out 254115 78514 bytes_in 2669310 78514 station_ip 83.122.178.138 78514 port 15728730 78514 nas_port_type Virtual 78514 remote_ip 5.5.5.200 78523 username asadi 78523 unique_id port 78523 terminate_cause User-Request 78523 bytes_out 6555 78523 bytes_in 17036 78523 station_ip 83.123.218.124 78523 port 15728740 78523 nas_port_type Virtual 78523 remote_ip 5.5.5.253 78477 terminate_cause User-Request 78477 bytes_out 80462 78477 bytes_in 724526 78477 station_ip 83.123.218.124 78477 port 15728689 78477 nas_port_type Virtual 78477 remote_ip 5.5.5.253 78478 username soleymani 78478 kill_reason Maximum number of concurrent logins reached 78478 unique_id port 78478 bytes_out 0 78478 bytes_in 0 78478 station_ip 5.120.70.248 78478 port 15728691 78478 nas_port_type Virtual 78480 username soleymani 78480 kill_reason Maximum number of concurrent logins reached 78480 unique_id port 78480 bytes_out 0 78480 bytes_in 0 78480 station_ip 5.120.70.248 78480 port 15728693 78480 nas_port_type Virtual 78487 username soleymani 78487 unique_id port 78487 terminate_cause Lost-Carrier 78487 bytes_out 258635 78487 bytes_in 165596 78487 station_ip 5.119.248.166 78487 port 15728697 78487 nas_port_type Virtual 78487 remote_ip 5.5.5.226 78492 username alinezhad 78492 unique_id port 78492 terminate_cause User-Request 78492 bytes_out 0 78492 bytes_in 0 78492 station_ip 5.202.99.94 78492 port 15728704 78492 nas_port_type Virtual 78492 remote_ip 5.5.5.220 78494 username madadi 78494 unique_id port 78494 terminate_cause Lost-Carrier 78494 bytes_out 70009 78494 bytes_in 246010 78494 station_ip 5.119.126.255 78494 port 15728705 78494 nas_port_type Virtual 78494 remote_ip 5.5.5.219 78498 username madadi 78498 unique_id port 78498 terminate_cause Lost-Carrier 78498 bytes_out 517448 78498 bytes_in 15620788 78498 station_ip 5.120.129.96 78498 port 15728711 78498 nas_port_type Virtual 78498 remote_ip 5.5.5.214 78502 username soleymani 78502 unique_id port 78502 terminate_cause User-Request 78502 bytes_out 0 78502 bytes_in 0 78502 station_ip 5.119.13.125 78502 port 15728719 78502 nas_port_type Virtual 78502 remote_ip 5.5.5.208 78508 username ahmadi 78508 unique_id port 78508 terminate_cause User-Request 78508 bytes_out 0 78508 bytes_in 0 78508 station_ip 83.122.131.122 78508 port 15728723 78508 nas_port_type Virtual 78508 remote_ip 5.5.5.238 78513 username amir 78513 unique_id port 78513 terminate_cause Lost-Carrier 78513 bytes_out 3024765 78513 bytes_in 4308755 78513 station_ip 46.225.213.107 78513 port 15728714 78513 nas_port_type Virtual 78513 remote_ip 5.5.5.211 78516 username dehghan 78516 unique_id port 78516 terminate_cause User-Request 78516 bytes_out 138148 78516 bytes_in 2424396 78516 station_ip 83.122.178.138 78516 port 15728732 78516 nas_port_type Virtual 78516 remote_ip 5.5.5.200 78518 username forozande 78518 unique_id port 78518 terminate_cause User-Request 78518 bytes_out 18843 78518 bytes_in 62333 78518 station_ip 37.129.221.52 78518 port 15728735 78518 nas_port_type Virtual 78518 remote_ip 5.5.5.196 78520 username forozande 78520 unique_id port 78520 terminate_cause User-Request 78520 bytes_out 78027 78520 bytes_in 998651 78520 station_ip 83.123.182.64 78520 port 15728736 78520 nas_port_type Virtual 78520 remote_ip 5.5.5.195 78521 username asadi 78521 unique_id port 78521 terminate_cause User-Request 78521 bytes_out 89325 78521 bytes_in 555218 78521 station_ip 83.123.218.124 78521 port 15728737 78521 nas_port_type Virtual 78521 remote_ip 5.5.5.253 78525 username alinezhad 78525 unique_id port 78525 terminate_cause User-Request 78525 bytes_out 0 78525 bytes_in 0 78525 station_ip 5.202.16.11 78525 port 15728744 78525 nas_port_type Virtual 78525 remote_ip 5.5.5.213 78527 username madadi 78527 unique_id port 78527 terminate_cause Lost-Carrier 78527 bytes_out 2294 78527 bytes_in 115275 78527 station_ip 5.119.72.255 78527 port 15728741 78527 nas_port_type Virtual 78527 remote_ip 5.5.5.193 78532 username alirezazamani 78532 unique_id port 78532 terminate_cause User-Request 78484 nas_port_type Virtual 78484 remote_ip 5.5.5.226 78486 username soleymani 78486 unique_id port 78486 terminate_cause Lost-Carrier 78486 bytes_out 377881 78486 bytes_in 461066 78486 station_ip 5.120.163.20 78486 port 15728685 78486 nas_port_type Virtual 78486 remote_ip 5.5.5.229 78488 username mobina 78488 unique_id port 78488 terminate_cause Lost-Carrier 78488 bytes_out 36187 78488 bytes_in 179910 78488 station_ip 5.123.72.135 78488 port 15728698 78488 nas_port_type Virtual 78488 remote_ip 5.5.5.225 78490 username asadi 78490 unique_id port 78490 terminate_cause User-Request 78490 bytes_out 283509 78490 bytes_in 6205223 78490 station_ip 83.123.218.124 78490 port 15728701 78490 nas_port_type Virtual 78490 remote_ip 5.5.5.253 78496 username soleymani 78496 unique_id port 78496 terminate_cause Lost-Carrier 78496 bytes_out 193987 78496 bytes_in 951369 78496 station_ip 5.119.234.76 78496 port 15728708 78496 nas_port_type Virtual 78496 remote_ip 5.5.5.216 78500 username asadi 78500 unique_id port 78500 terminate_cause User-Request 78500 bytes_out 42278 78500 bytes_in 124814 78500 station_ip 83.123.218.124 78500 port 15728717 78500 nas_port_type Virtual 78500 remote_ip 5.5.5.253 78503 username mobina 78503 unique_id port 78503 terminate_cause Lost-Carrier 78503 bytes_out 255665 78503 bytes_in 3677993 78503 station_ip 5.123.87.165 78503 port 15728718 78503 nas_port_type Virtual 78503 remote_ip 5.5.5.209 78506 username hamideh 78506 unique_id port 78506 terminate_cause Lost-Carrier 78506 bytes_out 82807 78506 bytes_in 1131507 78506 station_ip 5.120.22.149 78506 port 15728721 78506 nas_port_type Virtual 78506 remote_ip 5.5.5.207 78507 username alinezhad 78507 unique_id port 78507 terminate_cause User-Request 78507 bytes_out 0 78507 bytes_in 0 78507 station_ip 5.202.16.11 78507 port 15728722 78507 nas_port_type Virtual 78507 remote_ip 5.5.5.213 78509 username sobhan 78509 unique_id port 78509 terminate_cause Lost-Carrier 78509 bytes_out 18383229 78509 bytes_in 68860656 78509 station_ip 31.59.37.27 78509 port 15728709 78509 nas_port_type Virtual 78509 remote_ip 5.5.5.215 78510 username soleymani 78510 unique_id port 78510 terminate_cause Lost-Carrier 78510 bytes_out 83337 78510 bytes_in 301709 78510 station_ip 5.120.148.235 78510 port 15728724 78510 nas_port_type Virtual 78510 remote_ip 5.5.5.206 78512 username forozande 78512 unique_id port 78512 terminate_cause User-Request 78512 bytes_out 52455 78512 bytes_in 215860 78512 station_ip 37.129.135.186 78512 port 15728727 78512 nas_port_type Virtual 78512 remote_ip 5.5.5.203 78515 username shahnaz 78515 unique_id port 78515 terminate_cause User-Request 78515 bytes_out 424649 78515 bytes_in 3423567 78515 station_ip 5.119.163.165 78515 port 15728710 78515 nas_port_type Virtual 78515 remote_ip 5.5.5.246 78519 username soleymani 78519 unique_id port 78519 terminate_cause Lost-Carrier 78519 bytes_out 45856 78519 bytes_in 526804 78519 station_ip 5.119.243.39 78519 port 15728733 78519 nas_port_type Virtual 78519 remote_ip 5.5.5.198 78524 username mobina 78524 unique_id port 78524 terminate_cause Lost-Carrier 78524 bytes_out 2099913 78524 bytes_in 43833689 78524 station_ip 5.124.190.243 78524 port 15728734 78524 nas_port_type Virtual 78524 remote_ip 5.5.5.197 78526 username soleymani 78526 unique_id port 78526 terminate_cause Lost-Carrier 78526 bytes_out 173371 78526 bytes_in 1228717 78526 station_ip 5.119.58.234 78526 port 15728738 78526 nas_port_type Virtual 78526 remote_ip 5.5.5.194 78529 username zoha 78529 unique_id port 78529 terminate_cause Lost-Carrier 78529 bytes_out 3850408 78529 bytes_in 15584877 78529 station_ip 5.119.0.236 78485 bytes_out 0 78485 bytes_in 0 78485 station_ip 5.119.248.166 78485 port 15728696 78485 nas_port_type Virtual 78485 remote_ip 5.5.5.226 78489 username mahbobeh 78489 unique_id port 78489 terminate_cause Lost-Carrier 78489 bytes_out 87863 78489 bytes_in 32802 78489 station_ip 37.129.238.148 78489 port 15728700 78489 nas_port_type Virtual 78489 remote_ip 5.5.5.223 78495 username soleymani 78495 unique_id port 78495 terminate_cause Lost-Carrier 78495 bytes_out 116988 78495 bytes_in 720440 78495 station_ip 5.119.165.89 78495 port 15728706 78495 nas_port_type Virtual 78495 remote_ip 5.5.5.218 78499 username asadi 78499 unique_id port 78499 terminate_cause User-Request 78499 bytes_out 128096 78499 bytes_in 1812861 78499 station_ip 83.123.218.124 78499 port 15728716 78499 nas_port_type Virtual 78499 remote_ip 5.5.5.253 78501 username madadi 78501 unique_id port 78501 terminate_cause Lost-Carrier 78501 bytes_out 25304 78501 bytes_in 146326 78501 station_ip 5.119.16.242 78501 port 15728715 78501 nas_port_type Virtual 78501 remote_ip 5.5.5.210 78505 username soleymani 78505 unique_id port 78505 terminate_cause Lost-Carrier 78505 bytes_out 94700 78505 bytes_in 378142 78505 station_ip 5.119.13.125 78505 port 15728720 78505 nas_port_type Virtual 78505 remote_ip 5.5.5.208 78517 username soleymani 78517 unique_id port 78517 terminate_cause Lost-Carrier 78517 bytes_out 167693 78517 bytes_in 554915 78517 station_ip 5.119.239.216 78517 port 15728729 78517 nas_port_type Virtual 78517 remote_ip 5.5.5.201 78522 username forozande 78522 unique_id port 78522 terminate_cause User-Request 78522 bytes_out 134496 78522 bytes_in 3833857 78522 station_ip 83.123.182.64 78522 port 15728739 78522 nas_port_type Virtual 78522 remote_ip 5.5.5.195 78528 username sobhan 78528 unique_id port 78528 terminate_cause Lost-Carrier 78528 bytes_out 5119122 78528 bytes_in 113624577 78528 station_ip 5.120.101.117 78528 port 15728731 78528 nas_port_type Virtual 78528 remote_ip 5.5.5.199 78530 username amin.insta22 78530 unique_id port 78530 terminate_cause Lost-Carrier 78530 bytes_out 430809 78530 bytes_in 3749362 78530 station_ip 31.59.37.27 78530 port 15728728 78530 nas_port_type Virtual 78530 remote_ip 5.5.5.202 78531 username forozande 78531 unique_id port 78531 terminate_cause User-Request 78531 bytes_out 188745 78531 bytes_in 4168773 78531 station_ip 83.123.24.201 78531 port 15728746 78531 nas_port_type Virtual 78531 remote_ip 5.5.5.189 78534 username amin.insta22 78534 unique_id port 78534 terminate_cause Lost-Carrier 78534 bytes_out 1166805 78534 bytes_in 18570491 78534 station_ip 5.120.58.98 78534 port 15728745 78534 nas_port_type Virtual 78534 remote_ip 5.5.5.190 78536 username soleymani 78536 unique_id port 78536 terminate_cause Lost-Carrier 78536 bytes_out 223317 78536 bytes_in 745212 78536 station_ip 5.120.124.115 78536 port 15728751 78536 nas_port_type Virtual 78536 remote_ip 5.5.5.185 78543 username alinezhad 78543 unique_id port 78543 terminate_cause User-Request 78543 bytes_out 0 78543 bytes_in 0 78543 station_ip 5.202.16.11 78543 port 15728762 78543 nas_port_type Virtual 78543 remote_ip 5.5.5.213 78555 username zoha 78555 unique_id port 78555 terminate_cause User-Request 78555 bytes_out 323688 78555 bytes_in 6910999 78555 station_ip 5.119.0.236 78555 port 15728773 78555 nas_port_type Virtual 78555 remote_ip 5.5.5.178 78559 username alinezhad 78559 unique_id port 78559 terminate_cause User-Request 78559 bytes_out 0 78559 bytes_in 0 78559 station_ip 5.202.97.98 78559 port 15728779 78559 nas_port_type Virtual 78559 remote_ip 5.5.5.173 78563 username alirezazamani 78563 unique_id port 78529 port 15728725 78529 nas_port_type Virtual 78529 remote_ip 5.5.5.205 78535 username asadi 78535 unique_id port 78535 terminate_cause User-Request 78535 bytes_out 191195 78535 bytes_in 4435754 78535 station_ip 83.123.218.124 78535 port 15728752 78535 nas_port_type Virtual 78535 remote_ip 5.5.5.253 78538 username forozande 78538 unique_id port 78538 terminate_cause User-Request 78538 bytes_out 57414 78538 bytes_in 324997 78538 station_ip 113.203.94.82 78538 port 15728757 78538 nas_port_type Virtual 78538 remote_ip 5.5.5.182 78540 username forozande 78540 unique_id port 78540 terminate_cause User-Request 78540 bytes_out 108531 78540 bytes_in 1131132 78540 station_ip 113.203.94.82 78540 port 15728758 78540 nas_port_type Virtual 78540 remote_ip 5.5.5.182 78542 username aminvpn 78542 unique_id port 78542 terminate_cause User-Request 78542 bytes_out 885830 78542 bytes_in 4156773 78542 station_ip 78.39.27.231 78542 port 15728753 78542 nas_port_type Virtual 78542 remote_ip 5.5.5.217 78545 username mahbobeh 78545 unique_id port 78545 terminate_cause Lost-Carrier 78545 bytes_out 663862 78545 bytes_in 13940753 78545 station_ip 83.123.90.71 78545 port 15728760 78545 nas_port_type Virtual 78545 remote_ip 5.5.5.181 78548 username asadi 78548 unique_id port 78548 terminate_cause User-Request 78548 bytes_out 144016 78548 bytes_in 2809892 78548 station_ip 83.123.218.124 78548 port 15728766 78548 nas_port_type Virtual 78548 remote_ip 5.5.5.253 78549 username asadi 78549 unique_id port 78549 terminate_cause User-Request 78549 bytes_out 176551 78549 bytes_in 4682152 78549 station_ip 83.123.218.124 78549 port 15728767 78549 nas_port_type Virtual 78549 remote_ip 5.5.5.253 78552 username soleymani 78552 unique_id port 78552 terminate_cause Lost-Carrier 78552 bytes_out 60261 78552 bytes_in 178310 78552 station_ip 5.120.125.210 78552 port 15728768 78552 nas_port_type Virtual 78552 remote_ip 5.5.5.179 78556 username zoha 78556 unique_id port 78556 terminate_cause Lost-Carrier 78556 bytes_out 870817 78556 bytes_in 8983223 78556 station_ip 5.119.0.236 78556 port 15728771 78556 nas_port_type Virtual 78556 remote_ip 5.5.5.205 78561 username soleymani 78561 unique_id port 78561 terminate_cause Lost-Carrier 78561 bytes_out 393446 78561 bytes_in 3343008 78561 station_ip 5.119.186.241 78561 port 15728775 78561 nas_port_type Virtual 78561 remote_ip 5.5.5.177 78562 username soleymani 78562 unique_id port 78562 terminate_cause Lost-Carrier 78562 bytes_out 140374 78562 bytes_in 334156 78562 station_ip 5.120.13.76 78562 port 15728778 78562 nas_port_type Virtual 78562 remote_ip 5.5.5.174 78564 username soleymani 78564 unique_id port 78564 terminate_cause Lost-Carrier 78564 bytes_out 62182 78564 bytes_in 493945 78564 station_ip 5.120.118.212 78564 port 15728781 78564 nas_port_type Virtual 78564 remote_ip 5.5.5.172 78570 username forozande 78570 unique_id port 78570 terminate_cause User-Request 78570 bytes_out 15272 78570 bytes_in 33431 78570 station_ip 37.129.72.135 78570 port 15728788 78570 nas_port_type Virtual 78570 remote_ip 5.5.5.170 78576 username madadi 78576 unique_id port 78576 terminate_cause Lost-Carrier 78576 bytes_out 739436 78576 bytes_in 13795488 78576 station_ip 5.120.112.39 78576 port 15728789 78576 nas_port_type Virtual 78576 remote_ip 5.5.5.167 78577 username ahmadi 78577 unique_id port 78577 terminate_cause User-Request 78577 bytes_out 94281 78577 bytes_in 267573 78577 station_ip 83.123.175.112 78577 port 15728791 78577 nas_port_type Virtual 78577 remote_ip 5.5.5.166 78579 username alinezhad 78579 unique_id port 78579 terminate_cause User-Request 78579 bytes_out 0 78532 bytes_out 11214214 78532 bytes_in 377289759 78532 station_ip 94.241.181.48 78532 port 15728699 78532 nas_port_type Virtual 78532 remote_ip 5.5.5.224 78544 username alirezazamani 78544 unique_id port 78544 terminate_cause Lost-Carrier 78544 bytes_out 111444555 78544 bytes_in 5233772154 78544 station_ip 31.57.130.101 78544 port 15728654 78544 nas_port_type Virtual 78544 remote_ip 5.5.5.244 78550 username zoha 78550 unique_id port 78550 terminate_cause User-Request 78550 bytes_out 0 78550 bytes_in 0 78550 station_ip 5.119.0.236 78550 port 15728769 78550 nas_port_type Virtual 78550 remote_ip 5.5.5.205 78554 username shahnaz 78554 unique_id port 78554 terminate_cause Lost-Carrier 78554 bytes_out 187098 78554 bytes_in 462412 78554 station_ip 5.119.163.165 78554 port 15728770 78554 nas_port_type Virtual 78554 remote_ip 5.5.5.246 78560 username mobina 78560 unique_id port 78560 terminate_cause Lost-Carrier 78560 bytes_out 392592 78560 bytes_in 10498802 78560 station_ip 5.123.149.82 78560 port 15728777 78560 nas_port_type Virtual 78560 remote_ip 5.5.5.175 78565 username forozande 78565 unique_id port 78565 terminate_cause User-Request 78565 bytes_out 69872 78565 bytes_in 798357 78565 station_ip 37.129.72.135 78565 port 15728784 78565 nas_port_type Virtual 78565 remote_ip 5.5.5.170 78566 username sobhan 78566 unique_id port 78566 terminate_cause Lost-Carrier 78566 bytes_out 9892077 78566 bytes_in 159461818 78566 station_ip 5.120.36.89 78566 port 15728749 78566 nas_port_type Virtual 78566 remote_ip 5.5.5.186 78569 username madadi 78569 unique_id port 78569 terminate_cause Lost-Carrier 78569 bytes_out 20028 78569 bytes_in 139309 78569 station_ip 5.119.25.22 78569 port 15728786 78569 nas_port_type Virtual 78569 remote_ip 5.5.5.168 78573 username mahdi 78573 unique_id port 78573 terminate_cause Lost-Carrier 78573 bytes_out 2149852 78573 bytes_in 48895972 78573 station_ip 5.120.19.0 78573 port 15728776 78573 nas_port_type Virtual 78573 remote_ip 5.5.5.176 78575 username mahbobeh 78575 unique_id port 78575 terminate_cause Lost-Carrier 78575 bytes_out 2884252 78575 bytes_in 45257240 78575 station_ip 83.123.90.71 78575 port 15728782 78575 nas_port_type Virtual 78575 remote_ip 5.5.5.181 78584 username mobina 78584 unique_id port 78584 terminate_cause Lost-Carrier 78584 bytes_out 811512 78584 bytes_in 16138361 78584 station_ip 5.124.133.106 78584 port 15728798 78584 nas_port_type Virtual 78584 remote_ip 5.5.5.162 78593 username soleymani 78593 unique_id port 78593 terminate_cause Lost-Carrier 78593 bytes_out 201396 78593 bytes_in 870079 78593 station_ip 5.119.180.157 78593 port 15728803 78593 nas_port_type Virtual 78593 remote_ip 5.5.5.157 78594 username forozande 78594 unique_id port 78594 terminate_cause User-Request 78594 bytes_out 42703 78594 bytes_in 187473 78594 station_ip 37.129.246.57 78594 port 15728813 78594 nas_port_type Virtual 78594 remote_ip 5.5.5.150 78599 username madadi 78599 unique_id port 78599 terminate_cause Lost-Carrier 78599 bytes_out 392760 78599 bytes_in 459323 78599 station_ip 5.120.93.161 78599 port 15728812 78599 nas_port_type Virtual 78599 remote_ip 5.5.5.151 78600 username soleymani 78600 unique_id port 78600 terminate_cause Lost-Carrier 78600 bytes_out 219887 78600 bytes_in 292287 78600 station_ip 5.120.73.109 78600 port 15728814 78600 nas_port_type Virtual 78600 remote_ip 5.5.5.149 78603 username reza2742 78603 unique_id port 78603 terminate_cause Lost-Carrier 78603 bytes_out 2323475 78603 bytes_in 40855856 78603 station_ip 46.225.214.142 78603 port 15728805 78603 nas_port_type Virtual 78603 remote_ip 5.5.5.155 78606 username soleymani 78606 unique_id port 78533 username reza2742 78533 unique_id port 78533 terminate_cause User-Request 78533 bytes_out 410021 78533 bytes_in 1543277 78533 station_ip 83.122.99.206 78533 port 15728747 78533 nas_port_type Virtual 78533 remote_ip 5.5.5.188 78537 username madadi 78537 unique_id port 78537 terminate_cause Lost-Carrier 78537 bytes_out 1401226 78537 bytes_in 3831083 78537 station_ip 5.120.156.84 78537 port 15728742 78537 nas_port_type Virtual 78537 remote_ip 5.5.5.192 78539 username ahmadi 78539 unique_id port 78539 terminate_cause User-Request 78539 bytes_out 20628 78539 bytes_in 129878 78539 station_ip 83.122.131.122 78539 port 15728755 78539 nas_port_type Virtual 78539 remote_ip 5.5.5.238 78541 username soleymani 78541 unique_id port 78541 terminate_cause Lost-Carrier 78541 bytes_out 59759 78541 bytes_in 354786 78541 station_ip 5.120.66.136 78541 port 15728756 78541 nas_port_type Virtual 78541 remote_ip 5.5.5.183 78546 username zoha 78546 unique_id port 78546 terminate_cause Lost-Carrier 78546 bytes_out 1440051 78546 bytes_in 6719628 78546 station_ip 5.119.0.236 78546 port 15728750 78546 nas_port_type Virtual 78546 remote_ip 5.5.5.205 78547 username alireza 78547 unique_id port 78547 terminate_cause Lost-Carrier 78547 bytes_out 1342591 78547 bytes_in 20686560 78547 station_ip 5.119.51.95 78547 port 15728759 78547 nas_port_type Virtual 78547 remote_ip 5.5.5.240 78551 username rashidi 78551 unique_id port 78551 terminate_cause User-Request 78551 bytes_out 7573122 78551 bytes_in 54041065 78551 station_ip 5.120.48.9 78551 port 15728748 78551 nas_port_type Virtual 78551 remote_ip 5.5.5.187 78553 username asadi 78553 unique_id port 78553 terminate_cause User-Request 78553 bytes_out 218272 78553 bytes_in 4623110 78553 station_ip 83.123.218.124 78553 port 15728772 78553 nas_port_type Virtual 78553 remote_ip 5.5.5.253 78557 username madadi 78557 unique_id port 78557 terminate_cause Lost-Carrier 78557 bytes_out 1020470 78557 bytes_in 2099502 78557 station_ip 5.119.34.69 78557 port 15728754 78557 nas_port_type Virtual 78557 remote_ip 5.5.5.184 81232 mac 81232 bytes_out 0 81232 bytes_in 0 81232 station_ip 5.119.30.76 81232 port 29 81232 unique_id port 81232 remote_ip 10.8.1.10 81239 username forozande 81239 unique_id port 78571 username zoha 78571 unique_id port 78571 terminate_cause Lost-Carrier 78571 bytes_out 2218317 78571 bytes_in 44416102 78571 station_ip 5.119.0.236 78571 port 15728780 78571 nas_port_type Virtual 78571 remote_ip 5.5.5.178 78574 username shahnaz 78574 unique_id port 78574 terminate_cause Lost-Carrier 78574 bytes_out 331707 78574 bytes_in 1757088 78574 station_ip 5.119.163.165 78574 port 15728787 78574 nas_port_type Virtual 78574 remote_ip 5.5.5.246 78581 username soleymani 78581 unique_id port 78581 terminate_cause Lost-Carrier 78581 bytes_out 92246 78581 bytes_in 835702 78581 station_ip 5.119.80.172 78581 port 15728795 78581 nas_port_type Virtual 78581 remote_ip 5.5.5.164 78583 username soleymani 78583 unique_id port 78583 terminate_cause Lost-Carrier 78583 bytes_out 63155 78583 bytes_in 503251 78583 station_ip 5.119.219.25 78583 port 15728796 78583 nas_port_type Virtual 78583 remote_ip 5.5.5.163 78585 username madadi 78585 unique_id port 78585 terminate_cause Lost-Carrier 78585 bytes_out 26465 78585 bytes_in 159681 78585 station_ip 5.120.140.136 78585 port 15728799 78585 nas_port_type Virtual 78585 remote_ip 5.5.5.161 78587 username soleymani 78587 unique_id port 78587 terminate_cause Lost-Carrier 78587 bytes_out 94785 78587 bytes_in 594626 78587 station_ip 5.119.3.98 78587 port 15728800 78587 nas_port_type Virtual 81239 terminate_cause User-Request 78563 terminate_cause User-Request 78563 bytes_out 53684627 78563 bytes_in 2671556181 78563 station_ip 31.57.130.101 78563 port 15728761 78563 nas_port_type Virtual 78563 remote_ip 5.5.5.180 78567 username soleymani 78567 unique_id port 78567 terminate_cause Lost-Carrier 78567 bytes_out 194340 78567 bytes_in 1558956 78567 station_ip 5.120.124.144 78567 port 15728783 78567 nas_port_type Virtual 78567 remote_ip 5.5.5.171 78568 username soleymani 78568 unique_id port 78568 terminate_cause Lost-Carrier 78568 bytes_out 43375 78568 bytes_in 158578 78568 station_ip 5.119.133.28 78568 port 15728785 78568 nas_port_type Virtual 78568 remote_ip 5.5.5.169 78572 username alinezhad 78572 unique_id port 78572 terminate_cause User-Request 78572 bytes_out 0 78572 bytes_in 0 78572 station_ip 5.202.97.98 78572 port 15728790 78572 nas_port_type Virtual 78572 remote_ip 5.5.5.173 78578 username mobina 78578 unique_id port 78578 terminate_cause Lost-Carrier 78578 bytes_out 117260 78578 bytes_in 652652 78578 station_ip 5.123.157.169 78578 port 15728792 78578 nas_port_type Virtual 78578 remote_ip 5.5.5.165 78580 username zoha 78580 unique_id port 78580 terminate_cause Lost-Carrier 78580 bytes_out 651833 78580 bytes_in 6411707 78580 station_ip 5.119.0.236 78580 port 15728793 78580 nas_port_type Virtual 78580 remote_ip 5.5.5.178 78582 username alinezhad 78582 unique_id port 78582 terminate_cause User-Request 78582 bytes_out 0 78582 bytes_in 0 78582 station_ip 5.202.97.98 78582 port 15728797 78582 nas_port_type Virtual 78582 remote_ip 5.5.5.173 78589 username iranmanesh 78589 unique_id port 78589 terminate_cause User-Request 78589 bytes_out 59438 78589 bytes_in 519413 78589 station_ip 83.123.232.154 78589 port 15728809 78589 nas_port_type Virtual 78589 remote_ip 5.5.5.228 78591 username hamideh 78591 unique_id port 78591 terminate_cause Lost-Carrier 78591 bytes_out 343948 78591 bytes_in 3585831 78591 station_ip 5.119.50.89 78591 port 15728806 78591 nas_port_type Virtual 78591 remote_ip 5.5.5.154 78596 username soleymani 78596 kill_reason Maximum number of concurrent logins reached 78596 unique_id port 78596 bytes_out 0 78596 bytes_in 0 78596 station_ip 5.120.115.113 78596 port 15728817 78596 nas_port_type Virtual 78597 username soleymani 78597 unique_id port 78597 terminate_cause Lost-Carrier 78597 bytes_out 418139 78597 bytes_in 557573 78597 station_ip 5.120.149.40 78597 port 15728808 78597 nas_port_type Virtual 78597 remote_ip 5.5.5.153 78619 username sobhan 78619 unique_id port 78619 terminate_cause Lost-Carrier 78619 bytes_out 1571005 78619 bytes_in 30495386 78619 station_ip 31.59.37.27 78619 port 15728833 78619 nas_port_type Virtual 78619 remote_ip 5.5.5.215 78622 username zoha 78622 unique_id port 78622 terminate_cause Lost-Carrier 78622 bytes_out 4460394 78622 bytes_in 65888976 78622 station_ip 5.119.0.236 78622 port 15728819 78622 nas_port_type Virtual 78622 remote_ip 5.5.5.178 78626 username soleymani 78626 unique_id port 78626 terminate_cause Lost-Carrier 78626 bytes_out 83691 78626 bytes_in 524626 78626 station_ip 5.119.51.168 78626 port 15728847 78626 nas_port_type Virtual 78626 remote_ip 5.5.5.135 81234 remote_ip 5.5.5.175 81236 username aminvpn 81236 mac 81236 bytes_out 0 81236 bytes_in 0 81236 station_ip 5.119.30.76 81236 port 29 81236 unique_id port 81236 remote_ip 10.8.1.10 78641 username amirhosein 78641 unique_id port 78641 terminate_cause Lost-Carrier 78641 bytes_out 4124770 78641 bytes_in 102575112 78641 station_ip 5.119.254.181 78641 port 15728849 78641 nas_port_type Virtual 78641 remote_ip 5.5.5.143 78647 username forozande 78647 unique_id port 81238 username aminvpn 78579 bytes_in 0 78579 station_ip 5.202.97.98 78579 port 15728794 78579 nas_port_type Virtual 78579 remote_ip 5.5.5.173 78586 username ahmadi 78586 unique_id port 78586 terminate_cause User-Request 78586 bytes_out 0 78586 bytes_in 0 78586 station_ip 83.123.215.60 78586 port 15728801 78586 nas_port_type Virtual 78586 remote_ip 5.5.5.159 78588 username mamal 78588 unique_id port 78588 terminate_cause User-Request 78588 bytes_out 568853 78588 bytes_in 9541300 78588 station_ip 37.129.21.241 78588 port 15728802 78588 nas_port_type Virtual 78588 remote_ip 5.5.5.158 78592 username forozande 78592 unique_id port 78592 terminate_cause User-Request 78592 bytes_out 30457 78592 bytes_in 179862 78592 station_ip 83.123.87.57 78592 port 15728811 78592 nas_port_type Virtual 78592 remote_ip 5.5.5.152 78595 username soleymani 78595 kill_reason Maximum number of concurrent logins reached 78595 unique_id port 78595 bytes_out 0 78595 bytes_in 0 78595 station_ip 5.120.115.113 78595 port 15728816 78595 nas_port_type Virtual 78598 username mobina 78598 unique_id port 78598 terminate_cause Lost-Carrier 78598 bytes_out 26089 78598 bytes_in 169519 78598 station_ip 5.123.244.147 78598 port 15728815 78598 nas_port_type Virtual 78598 remote_ip 5.5.5.148 78605 username amirhosein 78605 unique_id port 78605 terminate_cause User-Request 78605 bytes_out 0 78605 bytes_in 0 78605 station_ip 5.119.254.181 78605 port 15728826 78605 nas_port_type Virtual 78605 remote_ip 5.5.5.143 78607 username amirhosein 78607 unique_id port 78607 terminate_cause User-Request 78607 bytes_out 56159 78607 bytes_in 508992 78607 station_ip 5.119.254.181 78607 port 15728827 78607 nas_port_type Virtual 78607 remote_ip 5.5.5.143 78612 username ebrahimi 78612 unique_id port 78612 terminate_cause User-Request 78612 bytes_out 0 78612 bytes_in 0 78612 station_ip 46.225.209.96 78612 port 15728830 78612 nas_port_type Virtual 78612 remote_ip 5.5.5.142 78616 username alinezhad 78616 unique_id port 78616 terminate_cause User-Request 78616 bytes_out 0 78616 bytes_in 0 78616 station_ip 5.202.97.98 78616 port 15728836 78616 nas_port_type Virtual 78616 remote_ip 5.5.5.173 78617 username amirhosein 78617 unique_id port 78617 terminate_cause User-Request 78617 bytes_out 1345558 78617 bytes_in 26344982 78617 station_ip 5.119.254.181 78617 port 15728831 78617 nas_port_type Virtual 78617 remote_ip 5.5.5.143 78620 username forozande 78620 unique_id port 78620 terminate_cause User-Request 78620 bytes_out 38513 78620 bytes_in 223362 78620 station_ip 37.129.42.160 78620 port 15728843 78620 nas_port_type Virtual 78620 remote_ip 5.5.5.138 78621 username shahrooz 78621 unique_id port 78621 terminate_cause User-Request 78621 bytes_out 616486 78621 bytes_in 5027818 78621 station_ip 113.203.45.59 78621 port 15728844 78621 nas_port_type Virtual 78621 remote_ip 5.5.5.137 78625 username soleymani 78625 unique_id port 78625 terminate_cause Lost-Carrier 78625 bytes_out 1269015 78625 bytes_in 1329863 78625 station_ip 5.120.114.139 78625 port 15728838 78625 nas_port_type Virtual 78625 remote_ip 5.5.5.139 78627 username madadi 78627 unique_id port 78627 terminate_cause Lost-Carrier 78627 bytes_out 372087 78627 bytes_in 2656157 78627 station_ip 5.120.94.217 78627 port 15728845 78627 nas_port_type Virtual 78627 remote_ip 5.5.5.136 78637 username forozande 78637 unique_id port 78637 terminate_cause User-Request 78637 bytes_out 101806 78637 bytes_in 237910 78637 station_ip 83.123.129.235 78637 port 15728860 78637 nas_port_type Virtual 78637 remote_ip 5.5.5.129 78639 username asadi 78639 unique_id port 78639 terminate_cause User-Request 78639 bytes_out 183352 78587 remote_ip 5.5.5.160 78590 username alinezhad 78590 unique_id port 78590 terminate_cause User-Request 78590 bytes_out 0 78590 bytes_in 0 78590 station_ip 5.202.97.98 78590 port 15728810 78590 nas_port_type Virtual 78590 remote_ip 5.5.5.173 78601 username mamal 78601 unique_id port 78601 terminate_cause User-Request 78601 bytes_out 1424381 78601 bytes_in 25063544 78601 station_ip 37.129.21.241 78601 port 15728807 78601 nas_port_type Virtual 78601 remote_ip 5.5.5.158 78602 username soleymani 78602 unique_id port 78602 terminate_cause User-Request 78602 bytes_out 20776 78602 bytes_in 52941 78602 station_ip 5.120.142.65 78602 port 15728821 78602 nas_port_type Virtual 78602 remote_ip 5.5.5.147 78604 username amirhosein 78604 unique_id port 78604 terminate_cause User-Request 78604 bytes_out 27773 78604 bytes_in 240816 78604 station_ip 5.119.254.181 78604 port 15728825 78604 nas_port_type Virtual 78604 remote_ip 5.5.5.143 78609 username alinezhad 78609 unique_id port 78609 terminate_cause Lost-Carrier 78609 bytes_out 72855 78609 bytes_in 437094 78609 station_ip 5.202.97.98 78609 port 15728820 78609 nas_port_type Virtual 78609 remote_ip 5.5.5.173 78611 username mobina 78611 unique_id port 78611 terminate_cause Lost-Carrier 78611 bytes_out 600247 78611 bytes_in 9231726 78611 station_ip 5.123.140.95 78611 port 15728823 78611 nas_port_type Virtual 78611 remote_ip 5.5.5.145 78613 username ebrahimi 78613 unique_id port 78613 terminate_cause User-Request 78613 bytes_out 332220 78613 bytes_in 3708958 78613 station_ip 46.225.209.96 78613 port 15728832 78613 nas_port_type Virtual 78613 remote_ip 5.5.5.142 78624 username aminvpn 78624 unique_id port 78624 terminate_cause User-Request 78624 bytes_out 859527 78624 bytes_in 1943672 78624 station_ip 78.39.27.231 78624 port 15728835 78624 nas_port_type Virtual 78624 remote_ip 5.5.5.217 78628 username alinezhad 78628 unique_id port 78628 terminate_cause User-Request 78628 bytes_out 0 78628 bytes_in 0 78628 station_ip 5.202.97.98 78628 port 15728850 78628 nas_port_type Virtual 78628 remote_ip 5.5.5.173 78630 username ahmadi 78630 unique_id port 78630 terminate_cause User-Request 78630 bytes_out 35261 78630 bytes_in 180274 78630 station_ip 83.122.96.113 78630 port 15728852 78630 nas_port_type Virtual 78630 remote_ip 5.5.5.132 78635 username asadi 78635 unique_id port 78635 terminate_cause User-Request 78635 bytes_out 278442 78635 bytes_in 7658906 78635 station_ip 83.123.218.124 78635 port 15728858 78635 nas_port_type Virtual 78635 remote_ip 5.5.5.253 78644 username madadi 78644 unique_id port 78644 terminate_cause Lost-Carrier 78644 bytes_out 676916 78644 bytes_in 5908998 78644 station_ip 5.120.170.47 78644 port 15728861 78644 nas_port_type Virtual 78644 remote_ip 5.5.5.128 78648 username alinezhad 78648 unique_id port 78648 terminate_cause User-Request 78648 bytes_out 0 78648 bytes_in 0 78648 station_ip 5.202.97.98 78648 port 15728868 78648 nas_port_type Virtual 78648 remote_ip 5.5.5.173 78649 username alinezhad 78649 unique_id port 78649 terminate_cause User-Request 78649 bytes_out 0 78649 bytes_in 0 78649 station_ip 5.202.97.98 78649 port 15728871 78649 nas_port_type Virtual 78649 remote_ip 5.5.5.173 78651 username madadi 78651 unique_id port 78651 terminate_cause Lost-Carrier 78651 bytes_out 31735 78651 bytes_in 261242 78651 station_ip 5.119.240.19 78651 port 15728867 78651 nas_port_type Virtual 78651 remote_ip 5.5.5.125 78653 username ahmadi 78653 unique_id port 78653 terminate_cause User-Request 78653 bytes_out 0 78653 bytes_in 0 78653 station_ip 83.122.109.209 78653 port 15728875 78653 nas_port_type Virtual 78606 terminate_cause Lost-Carrier 78606 bytes_out 54614 78606 bytes_in 284921 78606 station_ip 5.120.11.10 78606 port 15728822 78606 nas_port_type Virtual 78606 remote_ip 5.5.5.146 78608 username soleymani 78608 unique_id port 78608 terminate_cause Lost-Carrier 78608 bytes_out 39264 78608 bytes_in 170882 78608 station_ip 5.119.4.239 78608 port 15728824 78608 nas_port_type Virtual 78608 remote_ip 5.5.5.144 78610 username ebrahimi 78610 unique_id port 78610 terminate_cause User-Request 78610 bytes_out 0 78610 bytes_in 0 78610 station_ip 46.225.209.96 78610 port 15728828 78610 nas_port_type Virtual 78610 remote_ip 5.5.5.142 78614 username soleymani 78614 unique_id port 78614 terminate_cause Lost-Carrier 78614 bytes_out 116726 78614 bytes_in 632390 78614 station_ip 5.120.124.15 78614 port 15728829 78614 nas_port_type Virtual 78614 remote_ip 5.5.5.141 78615 username forozande 78615 unique_id port 78615 terminate_cause User-Request 78615 bytes_out 83106 78615 bytes_in 123986 78615 station_ip 37.129.149.127 78615 port 15728834 78615 nas_port_type Virtual 78615 remote_ip 5.5.5.140 78618 username ebrahimi 78618 unique_id port 78618 terminate_cause User-Request 78618 bytes_out 0 78618 bytes_in 0 78618 station_ip 46.225.209.96 78618 port 15728837 78618 nas_port_type Virtual 78618 remote_ip 5.5.5.142 78623 username ebrahimi 78623 unique_id port 78623 terminate_cause Lost-Carrier 78623 bytes_out 61105 78623 bytes_in 1792473 78623 station_ip 46.225.209.96 78623 port 15728839 78623 nas_port_type Virtual 78623 remote_ip 5.5.5.142 78629 username mahbobeh 78629 unique_id port 78629 terminate_cause Lost-Carrier 78629 bytes_out 11425 78629 bytes_in 61728 78629 station_ip 83.123.8.227 78629 port 15728851 78629 nas_port_type Virtual 78629 remote_ip 5.5.5.133 78631 username shahrooz 78631 unique_id port 78631 terminate_cause Lost-Carrier 78631 bytes_out 2131071 78631 bytes_in 20988973 78631 station_ip 113.203.45.59 78631 port 15728846 78631 nas_port_type Virtual 78631 remote_ip 5.5.5.137 78632 username shahnaz 78632 unique_id port 78632 terminate_cause User-Request 78632 bytes_out 40128 78632 bytes_in 223808 78632 station_ip 5.119.163.165 78632 port 15728855 78632 nas_port_type Virtual 78632 remote_ip 5.5.5.246 78634 username alinezhad 78634 unique_id port 78634 terminate_cause User-Request 78634 bytes_out 0 78634 bytes_in 0 78634 station_ip 5.202.97.98 78634 port 15728857 78634 nas_port_type Virtual 78634 remote_ip 5.5.5.173 78636 username goli 78636 unique_id port 78636 terminate_cause User-Request 78636 bytes_out 158221 78636 bytes_in 5594290 78636 station_ip 83.123.140.54 78636 port 15728859 78636 nas_port_type Virtual 78636 remote_ip 5.5.5.130 78638 username aminvpn 78638 mac 78638 bytes_out 0 78638 bytes_in 0 78638 station_ip 78.39.27.231 78638 port 9 78638 unique_id port 78638 remote_ip 10.8.0.6 78640 username alinezhad 78640 unique_id port 78640 terminate_cause User-Request 78640 bytes_out 0 78640 bytes_in 0 78640 station_ip 5.202.97.98 78640 port 15728863 78640 nas_port_type Virtual 78640 remote_ip 5.5.5.173 78643 username alinezhad 78643 unique_id port 78643 terminate_cause User-Request 78643 bytes_out 0 78643 bytes_in 0 78643 station_ip 5.202.97.98 78643 port 15728866 78643 nas_port_type Virtual 78643 remote_ip 5.5.5.173 78645 username amirhosein 78645 unique_id port 78645 terminate_cause User-Request 78645 bytes_out 1130685 78645 bytes_in 33955616 78645 station_ip 5.119.254.181 78645 port 15728864 78645 nas_port_type Virtual 78645 remote_ip 5.5.5.127 78656 username alinezhad 78656 unique_id port 78656 terminate_cause User-Request 78656 bytes_out 0 78639 bytes_in 2839677 78639 station_ip 83.123.218.124 78639 port 15728862 78639 nas_port_type Virtual 78639 remote_ip 5.5.5.253 78642 username mobina 78642 unique_id port 78642 terminate_cause Lost-Carrier 78642 bytes_out 2154202 78642 bytes_in 42091005 78642 station_ip 5.123.246.168 78642 port 15728848 78642 nas_port_type Virtual 78642 remote_ip 5.5.5.134 78646 username madadi 78646 unique_id port 78646 terminate_cause Lost-Carrier 78646 bytes_out 51053 78646 bytes_in 165210 78646 station_ip 5.119.236.112 78646 port 15728865 78646 nas_port_type Virtual 78646 remote_ip 5.5.5.126 78650 username forozande 78650 unique_id port 78650 terminate_cause User-Request 78650 bytes_out 77251 78650 bytes_in 935914 78650 station_ip 37.129.48.95 78650 port 15728870 78650 nas_port_type Virtual 78650 remote_ip 5.5.5.124 78655 username alirezazamani 78655 unique_id port 78655 terminate_cause User-Request 78655 bytes_out 16874116 78655 bytes_in 69895715 78655 station_ip 31.57.129.150 78655 port 15728853 78655 nas_port_type Virtual 78655 remote_ip 5.5.5.131 78659 username avaanna 78659 unique_id port 78659 terminate_cause User-Request 78659 bytes_out 43304 78659 bytes_in 296064 78659 station_ip 83.122.58.201 78659 port 15728885 78659 nas_port_type Virtual 78659 remote_ip 5.5.5.118 78660 username soleymani 78660 unique_id port 78660 terminate_cause Lost-Carrier 78660 bytes_out 2678737 78660 bytes_in 89963068 78660 station_ip 5.119.45.6 78660 port 15728878 78660 nas_port_type Virtual 78660 remote_ip 5.5.5.121 78663 username amirhosein 78663 unique_id port 78663 terminate_cause Lost-Carrier 78663 bytes_out 1297603 78663 bytes_in 35606914 78663 station_ip 5.119.254.181 78663 port 15728882 78663 nas_port_type Virtual 78663 remote_ip 5.5.5.127 78670 username iranmanesh 78670 unique_id port 78670 terminate_cause User-Request 78670 bytes_out 21120 78670 bytes_in 51960 78670 station_ip 37.129.106.166 78670 port 15728895 78670 nas_port_type Virtual 78670 remote_ip 5.5.5.111 78675 username shahnaz 78675 unique_id port 78675 terminate_cause Lost-Carrier 78675 bytes_out 1463750 78675 bytes_in 20243991 78675 station_ip 5.119.163.165 78675 port 15728881 78675 nas_port_type Virtual 78675 remote_ip 5.5.5.246 78681 username abdilahyar 78681 unique_id port 78681 terminate_cause Lost-Carrier 78681 bytes_out 12328628 78681 bytes_in 223035049 78681 station_ip 5.120.9.66 78681 port 15728713 78681 nas_port_type Virtual 78681 remote_ip 5.5.5.212 78682 username alinezhad 78682 unique_id port 78682 terminate_cause User-Request 78682 bytes_out 0 78682 bytes_in 0 78682 station_ip 83.122.159.11 78682 port 15728908 78682 nas_port_type Virtual 78682 remote_ip 5.5.5.105 78688 username amirhosein 78688 unique_id port 78688 terminate_cause Lost-Carrier 78688 bytes_out 775131 78688 bytes_in 12189155 78688 station_ip 5.119.254.181 78688 port 15728907 78688 nas_port_type Virtual 78688 remote_ip 5.5.5.127 78693 username amirhosein 78693 unique_id port 78693 terminate_cause Lost-Carrier 78693 bytes_out 129572 78693 bytes_in 1503572 78693 station_ip 5.119.254.181 78693 port 15728917 78693 nas_port_type Virtual 78693 remote_ip 5.5.5.127 78697 username alinezhad 78697 unique_id port 78697 terminate_cause User-Request 78697 bytes_out 0 78697 bytes_in 0 78697 station_ip 83.122.73.52 78697 port 15728923 78697 nas_port_type Virtual 78697 remote_ip 5.5.5.102 78704 username asadi 78704 unique_id port 78704 terminate_cause User-Request 78704 bytes_out 60280 78704 bytes_in 963203 78704 station_ip 83.123.218.124 78704 port 15728928 78704 nas_port_type Virtual 78704 remote_ip 5.5.5.253 78706 username mahdavi 78706 unique_id port 78647 terminate_cause User-Request 78647 bytes_out 0 78647 bytes_in 0 78647 station_ip 37.129.48.95 78647 port 15728869 78647 nas_port_type Virtual 78647 remote_ip 5.5.5.124 78652 username ahmadi 78652 unique_id port 78652 terminate_cause User-Request 78652 bytes_out 103090 78652 bytes_in 547586 78652 station_ip 83.122.109.209 78652 port 15728874 78652 nas_port_type Virtual 78652 remote_ip 5.5.5.123 78662 username alinezhad 78662 unique_id port 78662 terminate_cause Lost-Carrier 78662 bytes_out 49572 78662 bytes_in 183652 78662 station_ip 5.202.60.126 78662 port 15728884 78662 nas_port_type Virtual 78662 remote_ip 5.5.5.119 78665 username amin.insta22 78665 unique_id port 78665 terminate_cause Lost-Carrier 78665 bytes_out 828770 78665 bytes_in 9317159 78665 station_ip 5.119.158.173 78665 port 15728886 78665 nas_port_type Virtual 78665 remote_ip 5.5.5.117 78667 username forozande 78667 unique_id port 78667 terminate_cause User-Request 78667 bytes_out 115663 78667 bytes_in 2729257 78667 station_ip 83.122.63.135 78667 port 15728893 78667 nas_port_type Virtual 78667 remote_ip 5.5.5.113 78671 username ahmadipour 78671 unique_id port 78671 terminate_cause Lost-Carrier 78671 bytes_out 6276548 78671 bytes_in 27131235 78671 station_ip 37.129.234.187 78671 port 15728887 78671 nas_port_type Virtual 78671 remote_ip 5.5.5.116 78672 username zoha 78672 unique_id port 78672 terminate_cause User-Request 78672 bytes_out 397829 78672 bytes_in 2679286 78672 station_ip 5.119.0.236 78672 port 15728873 78672 nas_port_type Virtual 78672 remote_ip 5.5.5.178 78674 username mobina 78674 unique_id port 78674 terminate_cause Lost-Carrier 78674 bytes_out 742885 78674 bytes_in 15382778 78674 station_ip 5.124.175.172 78674 port 15728897 78674 nas_port_type Virtual 78674 remote_ip 5.5.5.110 78677 username soleymani 78677 unique_id port 78677 terminate_cause Lost-Carrier 78677 bytes_out 34853 78677 bytes_in 269650 78677 station_ip 5.119.208.105 78677 port 15728901 78677 nas_port_type Virtual 78677 remote_ip 5.5.5.108 78679 username alinezhad 78679 unique_id port 78679 terminate_cause User-Request 78679 bytes_out 0 78679 bytes_in 0 78679 station_ip 83.122.124.197 78679 port 15728904 78679 nas_port_type Virtual 78679 remote_ip 5.5.5.107 78680 username zamanialireza 78680 unique_id port 78680 terminate_cause User-Request 78680 bytes_out 0 78680 bytes_in 0 78680 station_ip 94.183.213.166 78680 port 15728906 78680 nas_port_type Virtual 78680 remote_ip 5.5.5.106 78683 username asadi 78683 unique_id port 78683 terminate_cause User-Request 78683 bytes_out 249563 78683 bytes_in 4366984 78683 station_ip 83.123.218.124 78683 port 15728909 78683 nas_port_type Virtual 78683 remote_ip 5.5.5.253 78686 username reza 78686 unique_id port 78686 terminate_cause User-Request 78686 bytes_out 182738 78686 bytes_in 4917853 78686 station_ip 83.123.176.109 78686 port 15728911 78686 nas_port_type Virtual 78686 remote_ip 5.5.5.104 78689 username mahbobeh 78689 unique_id port 78689 terminate_cause Lost-Carrier 78689 bytes_out 166418 78689 bytes_in 2294174 78689 station_ip 83.123.8.227 78689 port 15728899 78689 nas_port_type Virtual 78689 remote_ip 5.5.5.133 78698 username madadi 78698 unique_id port 78698 terminate_cause Lost-Carrier 78698 bytes_out 2068031 78698 bytes_in 3583057 78698 station_ip 5.119.173.249 78698 port 15728889 78698 nas_port_type Virtual 78698 remote_ip 5.5.5.114 78699 username zamanialireza 78699 unique_id port 78699 terminate_cause Lost-Carrier 78699 bytes_out 35924379 78699 bytes_in 55891181 78699 station_ip 94.183.213.166 78699 port 15728910 78699 nas_port_type Virtual 78699 remote_ip 5.5.5.106 78653 remote_ip 5.5.5.123 78654 username forozande 78654 unique_id port 78654 terminate_cause User-Request 78654 bytes_out 172766 78654 bytes_in 3227642 78654 station_ip 83.123.184.108 78654 port 15728876 78654 nas_port_type Virtual 78654 remote_ip 5.5.5.122 78658 username ahmadi 78658 unique_id port 78658 terminate_cause User-Request 78658 bytes_out 518007 78658 bytes_in 5439698 78658 station_ip 83.122.109.209 78658 port 15728877 78658 nas_port_type Virtual 78658 remote_ip 5.5.5.123 78666 username mahbobeh 78666 unique_id port 78666 terminate_cause Lost-Carrier 78666 bytes_out 6279926 78666 bytes_in 109596620 78666 station_ip 83.123.8.227 78666 port 15728854 78666 nas_port_type Virtual 78666 remote_ip 5.5.5.133 78668 username alinezhad 78668 unique_id port 78668 terminate_cause User-Request 78668 bytes_out 55870 78668 bytes_in 141952 78668 station_ip 37.129.49.126 78668 port 15728894 78668 nas_port_type Virtual 78668 remote_ip 5.5.5.112 78669 username ahmadi 78669 unique_id port 78669 terminate_cause User-Request 78669 bytes_out 0 78669 bytes_in 0 78669 station_ip 83.122.109.209 78669 port 15728896 78669 nas_port_type Virtual 78669 remote_ip 5.5.5.123 78676 username ahmadi 78676 unique_id port 78676 terminate_cause User-Request 78676 bytes_out 0 78676 bytes_in 0 78676 station_ip 83.122.109.209 78676 port 15728902 78676 nas_port_type Virtual 78676 remote_ip 5.5.5.123 78684 username ahmadi 78684 unique_id port 78684 terminate_cause User-Request 78684 bytes_out 0 78684 bytes_in 0 78684 station_ip 83.122.109.209 78684 port 15728912 78684 nas_port_type Virtual 78684 remote_ip 5.5.5.123 78687 username rashidi 78687 unique_id port 78687 terminate_cause User-Request 78687 bytes_out 7911816 78687 bytes_in 18390280 78687 station_ip 5.120.48.9 78687 port 15728872 78687 nas_port_type Virtual 78687 remote_ip 5.5.5.187 78690 username mobina 78690 unique_id port 78690 terminate_cause Lost-Carrier 78690 bytes_out 67958 78690 bytes_in 250312 78690 station_ip 5.123.76.13 78690 port 15728916 78690 nas_port_type Virtual 78690 remote_ip 5.5.5.103 78692 username zoha 78692 unique_id port 78692 terminate_cause Lost-Carrier 78692 bytes_out 417748 78692 bytes_in 3141295 78692 station_ip 5.119.0.236 78692 port 15728914 78692 nas_port_type Virtual 78692 remote_ip 5.5.5.178 78694 username reza 78694 unique_id port 78694 terminate_cause User-Request 78694 bytes_out 140815 78694 bytes_in 3819746 78694 station_ip 83.123.176.109 78694 port 15728918 78694 nas_port_type Virtual 78694 remote_ip 5.5.5.104 78695 username reza 78695 unique_id port 78695 terminate_cause User-Request 78695 bytes_out 120 78695 bytes_in 12336 78695 station_ip 83.123.176.109 78695 port 15728921 78695 nas_port_type Virtual 78695 remote_ip 5.5.5.104 78696 username shahnaz 78696 unique_id port 78696 terminate_cause User-Request 78696 bytes_out 0 78696 bytes_in 0 78696 station_ip 5.119.163.165 78696 port 15728922 78696 nas_port_type Virtual 78696 remote_ip 5.5.5.246 78701 username reza 78701 unique_id port 78701 terminate_cause User-Request 78701 bytes_out 7564 78701 bytes_in 42684 78701 station_ip 83.123.176.109 78701 port 15728924 78701 nas_port_type Virtual 78701 remote_ip 5.5.5.104 78703 username mahdavi 78703 unique_id port 78703 terminate_cause User-Request 78703 bytes_out 260152 78703 bytes_in 2661943 78703 station_ip 37.129.12.142 78703 port 15728927 78703 nas_port_type Virtual 78703 remote_ip 5.5.5.99 78709 username mahdavi 78709 unique_id port 78709 terminate_cause User-Request 78709 bytes_out 169518 78709 bytes_in 751374 78709 station_ip 37.129.12.142 78709 port 15728933 78656 bytes_in 0 78656 station_ip 5.202.6.174 78656 port 15728879 78656 nas_port_type Virtual 78656 remote_ip 5.5.5.120 78657 username alinezhad 78657 unique_id port 78657 terminate_cause User-Request 78657 bytes_out 0 78657 bytes_in 0 78657 station_ip 5.202.6.174 78657 port 15728880 78657 nas_port_type Virtual 78657 remote_ip 5.5.5.120 78661 username mamal 78661 unique_id port 78661 terminate_cause User-Request 78661 bytes_out 316032 78661 bytes_in 3778754 78661 station_ip 37.129.0.149 78661 port 15728888 78661 nas_port_type Virtual 78661 remote_ip 5.5.5.115 78664 username forozande 78664 unique_id port 78664 terminate_cause User-Request 78664 bytes_out 265254 78664 bytes_in 83466 78664 station_ip 83.122.63.135 78664 port 15728890 78664 nas_port_type Virtual 78664 remote_ip 5.5.5.113 78673 username alinezhad 78673 unique_id port 78673 terminate_cause User-Request 78673 bytes_out 0 78673 bytes_in 0 78673 station_ip 83.122.94.173 78673 port 15728898 78673 nas_port_type Virtual 78673 remote_ip 5.5.5.109 78678 username iranmanesh 78678 unique_id port 78678 terminate_cause User-Request 78678 bytes_out 37119 78678 bytes_in 167799 78678 station_ip 37.129.106.166 78678 port 15728903 78678 nas_port_type Virtual 78678 remote_ip 5.5.5.111 78685 username alinezhad 78685 unique_id port 78685 terminate_cause User-Request 78685 bytes_out 0 78685 bytes_in 0 78685 station_ip 83.122.159.11 78685 port 15728913 78685 nas_port_type Virtual 78685 remote_ip 5.5.5.105 78691 username alinezhad 78691 unique_id port 78691 terminate_cause User-Request 78691 bytes_out 98986 78691 bytes_in 431655 78691 station_ip 83.122.73.52 78691 port 15728919 78691 nas_port_type Virtual 78691 remote_ip 5.5.5.102 78700 username aminvpn 78700 unique_id port 78700 terminate_cause Lost-Carrier 78700 bytes_out 3291166 78700 bytes_in 101778901 78700 station_ip 78.39.27.231 78700 port 15728915 78700 nas_port_type Virtual 78700 remote_ip 5.5.5.217 78705 username mahdavi 78705 unique_id port 78705 terminate_cause User-Request 78705 bytes_out 367379 78705 bytes_in 3318758 78705 station_ip 37.129.12.142 78705 port 15728929 78705 nas_port_type Virtual 78705 remote_ip 5.5.5.99 78710 username mahdavi 78710 unique_id port 78710 terminate_cause User-Request 78710 bytes_out 149346 78710 bytes_in 392688 78710 station_ip 37.129.12.142 78710 port 15728934 78710 nas_port_type Virtual 78710 remote_ip 5.5.5.99 78712 username mamal 78712 unique_id port 78712 terminate_cause User-Request 78712 bytes_out 13873357 78712 bytes_in 340427630 78712 station_ip 37.129.0.149 78712 port 15728925 78712 nas_port_type Virtual 78712 remote_ip 5.5.5.115 78718 username pouria 78718 unique_id port 78718 terminate_cause Lost-Carrier 78718 bytes_out 5640213 78718 bytes_in 187407208 78718 station_ip 151.235.94.104 78718 port 15728938 78718 nas_port_type Virtual 78718 remote_ip 5.5.5.98 78719 username sobhan 78719 unique_id port 78719 terminate_cause User-Request 78719 bytes_out 3386436 78719 bytes_in 67929864 78719 station_ip 5.119.169.158 78719 port 15728926 78719 nas_port_type Virtual 78719 remote_ip 5.5.5.100 78721 username pouria 78721 unique_id port 78721 terminate_cause Lost-Carrier 78721 bytes_out 8322630 78721 bytes_in 279365572 78721 station_ip 151.235.94.104 78721 port 15728942 78721 nas_port_type Virtual 78721 remote_ip 5.5.5.98 78728 username pouria 78728 unique_id port 78728 terminate_cause Lost-Carrier 78728 bytes_out 33880870 78728 bytes_in 1217274904 78728 station_ip 151.235.94.104 78728 port 15728944 78728 nas_port_type Virtual 78728 remote_ip 5.5.5.97 78734 username mahdavi 78734 unique_id port 78734 terminate_cause User-Request 78702 username mahdi 78702 unique_id port 78702 terminate_cause Lost-Carrier 78702 bytes_out 6078286 78702 bytes_in 90071037 78702 station_ip 5.120.19.0 78702 port 15728856 78702 nas_port_type Virtual 78702 remote_ip 5.5.5.176 78707 username mahdavi 78707 unique_id port 78707 terminate_cause User-Request 78707 bytes_out 230748 78707 bytes_in 6953882 78707 station_ip 37.129.12.142 78707 port 15728931 78707 nas_port_type Virtual 78707 remote_ip 5.5.5.99 78708 username mahdavi 78708 unique_id port 78708 terminate_cause User-Request 78708 bytes_out 316902 78708 bytes_in 1811955 78708 station_ip 37.129.12.142 78708 port 15728932 78708 nas_port_type Virtual 78708 remote_ip 5.5.5.99 78711 username mahdavi 78711 unique_id port 78711 terminate_cause User-Request 78711 bytes_out 211889 78711 bytes_in 1001132 78711 station_ip 37.129.12.142 78711 port 15728935 78711 nas_port_type Virtual 78711 remote_ip 5.5.5.99 78714 username madadi 78714 unique_id port 78714 terminate_cause Lost-Carrier 78714 bytes_out 966680 78714 bytes_in 2241027 78714 station_ip 5.120.97.29 78714 port 15728920 78714 nas_port_type Virtual 78714 remote_ip 5.5.5.101 78717 username avaanna 78717 unique_id port 78717 terminate_cause User-Request 78717 bytes_out 0 78717 bytes_in 0 78717 station_ip 83.122.58.201 78717 port 15728941 78717 nas_port_type Virtual 78717 remote_ip 5.5.5.118 81235 username ahmadi 81235 unique_id port 81235 terminate_cause User-Request 81235 bytes_out 0 81235 bytes_in 0 81235 station_ip 83.123.106.134 81235 port 15728814 81235 nas_port_type Virtual 81235 remote_ip 5.5.5.164 78729 username mahdavi 78729 unique_id port 78729 terminate_cause User-Request 78729 bytes_out 244454 78729 bytes_in 1035954 78729 station_ip 83.123.162.40 78729 port 15728951 78729 nas_port_type Virtual 78729 remote_ip 5.5.5.93 78731 username mahdavi 78731 unique_id port 78731 terminate_cause User-Request 78731 bytes_out 203657 78731 bytes_in 1717708 78731 station_ip 83.123.162.40 78731 port 15728953 78731 nas_port_type Virtual 78731 remote_ip 5.5.5.93 78740 username mahdavi 78740 unique_id port 78740 terminate_cause User-Request 78740 bytes_out 335588 78740 bytes_in 10961278 78740 station_ip 83.123.162.40 78740 port 15728961 78740 nas_port_type Virtual 78740 remote_ip 5.5.5.93 78742 username mahdavi 78742 unique_id port 78742 terminate_cause User-Request 78742 bytes_out 232110 78742 bytes_in 8363545 78742 station_ip 83.123.162.40 78742 port 15728963 78742 nas_port_type Virtual 78742 remote_ip 5.5.5.93 81249 username aminvpn 81249 mac 81249 bytes_out 0 81249 bytes_in 0 81249 station_ip 5.119.30.76 81249 port 14 81249 unique_id port 81249 remote_ip 10.8.0.6 81256 username forozande 78747 username mahdavi 78747 unique_id port 78747 terminate_cause User-Request 78747 bytes_out 181324 78747 bytes_in 1893942 78747 station_ip 83.123.100.250 78747 port 15728970 78747 nas_port_type Virtual 78747 remote_ip 5.5.5.90 78750 username mahdavi 78750 unique_id port 78750 terminate_cause User-Request 78750 bytes_out 151087 78750 bytes_in 1191481 78750 station_ip 83.123.21.62 78750 port 15728974 78750 nas_port_type Virtual 78750 remote_ip 5.5.5.89 78754 username mahdavi 78754 unique_id port 78754 terminate_cause User-Request 78754 bytes_out 155566 78754 bytes_in 700092 78754 station_ip 83.123.21.62 78754 port 15728640 78754 nas_port_type Virtual 78754 remote_ip 5.5.5.255 78759 username shahnaz 78759 unique_id port 78759 terminate_cause User-Request 78759 bytes_out 1302055 78759 bytes_in 10136736 78759 station_ip 5.119.246.38 78759 port 15728642 81256 unique_id port 78706 terminate_cause User-Request 78706 bytes_out 149872 78706 bytes_in 3666660 78706 station_ip 37.129.12.142 78706 port 15728930 78706 nas_port_type Virtual 78706 remote_ip 5.5.5.99 78715 username avaanna 78715 unique_id port 78715 terminate_cause User-Request 78715 bytes_out 192481 78715 bytes_in 88175 78715 station_ip 83.122.58.201 78715 port 15728939 78715 nas_port_type Virtual 78715 remote_ip 5.5.5.118 78716 username avaanna 78716 unique_id port 78716 terminate_cause User-Request 78716 bytes_out 195328 78716 bytes_in 3780843 78716 station_ip 83.122.58.201 78716 port 15728940 78716 nas_port_type Virtual 78716 remote_ip 5.5.5.118 78724 username shahrooz 78724 unique_id port 78724 terminate_cause Lost-Carrier 78724 bytes_out 2553015 78724 bytes_in 26549630 78724 station_ip 113.203.45.59 78724 port 15728936 78724 nas_port_type Virtual 78724 remote_ip 5.5.5.137 78725 username alinezhad 78725 unique_id port 78725 terminate_cause User-Request 78725 bytes_out 0 78725 bytes_in 0 78725 station_ip 113.203.6.26 78725 port 15728947 78725 nas_port_type Virtual 78725 remote_ip 5.5.5.95 78727 username alirezazamani 78727 unique_id port 78727 terminate_cause Lost-Carrier 78727 bytes_out 186963 78727 bytes_in 2953521 78727 station_ip 5.126.152.131 78727 port 15728949 78727 nas_port_type Virtual 78727 remote_ip 5.5.5.94 78730 username mahdavi 78730 unique_id port 78730 terminate_cause User-Request 78730 bytes_out 119648 78730 bytes_in 561511 78730 station_ip 83.123.162.40 78730 port 15728952 78730 nas_port_type Virtual 78730 remote_ip 5.5.5.93 78733 username mahdavi 78733 unique_id port 78733 terminate_cause User-Request 78733 bytes_out 241234 78733 bytes_in 1628168 78733 station_ip 83.123.162.40 78733 port 15728955 78733 nas_port_type Virtual 78733 remote_ip 5.5.5.93 78737 username mahdavi 78737 unique_id port 78737 terminate_cause User-Request 78737 bytes_out 175512 78737 bytes_in 1770423 78737 station_ip 83.123.162.40 78737 port 15728959 78737 nas_port_type Virtual 78737 remote_ip 5.5.5.93 78758 username forozande 78758 unique_id port 78758 terminate_cause User-Request 78758 bytes_out 358219 78758 bytes_in 1362052 78758 station_ip 37.129.149.211 78758 port 15728647 78758 nas_port_type Virtual 78758 remote_ip 5.5.5.249 78762 username sobhan 78762 unique_id port 78762 terminate_cause Lost-Carrier 78762 bytes_out 4039301 78762 bytes_in 120680481 78762 station_ip 5.119.169.158 78762 port 15728648 78762 nas_port_type Virtual 78762 remote_ip 5.5.5.248 78766 username soleymani 78766 unique_id port 78766 terminate_cause Lost-Carrier 78766 bytes_out 129703 78766 bytes_in 485122 78766 station_ip 5.119.251.110 78766 port 15728654 78766 nas_port_type Virtual 78766 remote_ip 5.5.5.242 78769 username soleymani 78769 unique_id port 78769 terminate_cause User-Request 78769 bytes_out 0 78769 bytes_in 0 78769 station_ip 5.119.83.52 78769 port 15728659 78769 nas_port_type Virtual 78769 remote_ip 5.5.5.238 78773 username madadi 78773 unique_id port 78773 terminate_cause Lost-Carrier 78773 bytes_out 33752 78773 bytes_in 168805 78773 station_ip 5.119.227.108 78773 port 15728662 78773 nas_port_type Virtual 78773 remote_ip 5.5.5.237 78775 username mobina 78775 unique_id port 78775 terminate_cause Lost-Carrier 78775 bytes_out 313416 78775 bytes_in 4662202 78775 station_ip 5.124.137.193 78775 port 15728663 78775 nas_port_type Virtual 78775 remote_ip 5.5.5.236 78776 username alinezhad 78776 unique_id port 78776 terminate_cause User-Request 78776 bytes_out 85582 78776 bytes_in 27238 78776 station_ip 5.202.9.238 78776 port 15728666 78776 nas_port_type Virtual 78776 remote_ip 5.5.5.241 78709 nas_port_type Virtual 78709 remote_ip 5.5.5.99 78713 username avaanna 78713 unique_id port 78713 terminate_cause User-Request 78713 bytes_out 66645 78713 bytes_in 677213 78713 station_ip 83.122.58.201 78713 port 15728937 78713 nas_port_type Virtual 78713 remote_ip 5.5.5.118 81237 station_ip 5.119.30.76 81237 port 29 81237 unique_id port 81237 remote_ip 10.8.1.10 81240 username forozande 81240 unique_id port 81240 terminate_cause User-Request 81240 bytes_out 15665 81240 bytes_in 40770 78723 username zamanialireza 78723 unique_id port 78723 terminate_cause User-Request 78723 bytes_out 0 78723 bytes_in 0 78723 station_ip 217.60.151.123 78723 port 15728946 78723 nas_port_type Virtual 78723 remote_ip 5.5.5.96 78726 username alinezhad 78726 unique_id port 78726 terminate_cause User-Request 78726 bytes_out 195300 78726 bytes_in 1777587 78726 station_ip 113.203.6.26 78726 port 15728948 78726 nas_port_type Virtual 78726 remote_ip 5.5.5.95 78732 username mahdavi 78732 unique_id port 78732 terminate_cause User-Request 78732 bytes_out 273813 78732 bytes_in 1739435 78732 station_ip 83.123.162.40 78732 port 15728954 78732 nas_port_type Virtual 78732 remote_ip 5.5.5.93 78735 username mahdavi 78735 unique_id port 78735 terminate_cause User-Request 78735 bytes_out 331469 78735 bytes_in 5537003 78735 station_ip 83.123.162.40 78735 port 15728958 78735 nas_port_type Virtual 78735 remote_ip 5.5.5.93 78736 username mobina 78736 unique_id port 78736 terminate_cause Lost-Carrier 78736 bytes_out 78752 78736 bytes_in 443929 78736 station_ip 5.123.19.91 78736 port 15728957 78736 nas_port_type Virtual 78736 remote_ip 5.5.5.92 78739 username zoha 78739 unique_id port 78739 terminate_cause Lost-Carrier 78739 bytes_out 1502789 78739 bytes_in 20126498 78739 station_ip 5.119.0.236 78739 port 15728950 78739 nas_port_type Virtual 78739 remote_ip 5.5.5.178 78741 username mahdavi 78741 unique_id port 78741 terminate_cause User-Request 78741 bytes_out 328778 78741 bytes_in 11112467 78741 station_ip 83.123.162.40 78741 port 15728962 78741 nas_port_type Virtual 78741 remote_ip 5.5.5.93 78743 username mahdavi 78743 unique_id port 78743 terminate_cause User-Request 78743 bytes_out 339731 78743 bytes_in 10185919 78743 station_ip 83.123.162.40 78743 port 15728964 78743 nas_port_type Virtual 78743 remote_ip 5.5.5.93 78745 username asadi 78745 unique_id port 78745 terminate_cause User-Request 78745 bytes_out 92324 78745 bytes_in 1057037 78745 station_ip 83.122.188.234 78745 port 15728968 78745 nas_port_type Virtual 78745 remote_ip 5.5.5.91 78746 username mahdavi 78746 unique_id port 78746 terminate_cause User-Request 78746 bytes_out 123559 78746 bytes_in 394525 78746 station_ip 83.123.100.250 78746 port 15728969 78746 nas_port_type Virtual 78746 remote_ip 5.5.5.90 78748 username mahdavi 78748 unique_id port 78748 terminate_cause User-Request 78748 bytes_out 158000 78748 bytes_in 1520805 78748 station_ip 83.123.100.250 78748 port 15728971 78748 nas_port_type Virtual 78748 remote_ip 5.5.5.90 78753 username mahbobeh 78753 unique_id port 78753 terminate_cause Admin-Reboot 78753 bytes_out 1246998 78753 bytes_in 21110493 78753 station_ip 83.123.8.227 78753 port 15728972 78753 nas_port_type Virtual 78753 remote_ip 5.5.5.133 78756 username madadi 78756 unique_id port 78756 terminate_cause Lost-Carrier 78756 bytes_out 78435 78756 bytes_in 646677 78756 station_ip 5.119.164.107 78756 port 15728644 78756 nas_port_type Virtual 78756 remote_ip 5.5.5.252 78757 username alinezhad 78757 unique_id port 78757 terminate_cause User-Request 78757 bytes_out 0 78757 bytes_in 0 81240 station_ip 37.129.243.34 78734 bytes_out 158492 78734 bytes_in 1878241 78734 station_ip 83.123.162.40 78734 port 15728956 78734 nas_port_type Virtual 78734 remote_ip 5.5.5.93 78738 username mahdavi 78738 unique_id port 78738 terminate_cause User-Request 78738 bytes_out 410007 78738 bytes_in 11839889 78738 station_ip 83.123.162.40 78738 port 15728960 78738 nas_port_type Virtual 78738 remote_ip 5.5.5.93 78749 username mahdavi 78749 unique_id port 78749 terminate_cause User-Request 78749 bytes_out 152090 78749 bytes_in 999292 78749 station_ip 83.123.21.62 78749 port 15728973 78749 nas_port_type Virtual 78749 remote_ip 5.5.5.89 78751 username mahdavi 78751 unique_id port 78751 terminate_cause User-Request 78751 bytes_out 217732 78751 bytes_in 1797961 78751 station_ip 83.123.21.62 78751 port 15728975 78751 nas_port_type Virtual 78751 remote_ip 5.5.5.89 78752 username mahdavi 78752 unique_id port 78752 terminate_cause User-Request 78752 bytes_out 179403 78752 bytes_in 2541886 78752 station_ip 83.123.21.62 78752 port 15728976 78752 nas_port_type Virtual 78752 remote_ip 5.5.5.89 78755 username mahdavi 78755 unique_id port 78755 terminate_cause User-Request 78755 bytes_out 184262 78755 bytes_in 1862212 78755 station_ip 83.123.21.62 78755 port 15728641 78755 nas_port_type Virtual 78755 remote_ip 5.5.5.255 78760 username mahbobeh 78760 unique_id port 78760 terminate_cause Lost-Carrier 78760 bytes_out 84590 78760 bytes_in 1050261 78760 station_ip 83.123.8.227 78760 port 15728643 78760 nas_port_type Virtual 78760 remote_ip 5.5.5.253 78761 username alinezhad 78761 unique_id port 78761 terminate_cause User-Request 78761 bytes_out 0 78761 bytes_in 0 78761 station_ip 83.123.166.183 78761 port 15728650 78761 nas_port_type Virtual 78761 remote_ip 5.5.5.246 78763 username ahmadi 78763 unique_id port 78763 terminate_cause User-Request 78763 bytes_out 20996 78763 bytes_in 175126 78763 station_ip 83.122.115.197 78763 port 15728652 78763 nas_port_type Virtual 78763 remote_ip 5.5.5.244 78768 username forozande 78768 unique_id port 78768 terminate_cause User-Request 78768 bytes_out 71230 78768 bytes_in 120547 78768 station_ip 83.122.158.152 78768 port 15728657 78768 nas_port_type Virtual 78768 remote_ip 5.5.5.239 78774 username alirezazamani 78774 unique_id port 78774 terminate_cause User-Request 78774 bytes_out 16405991 78774 bytes_in 391802965 78774 station_ip 31.57.143.114 78774 port 15728646 78774 nas_port_type Virtual 78774 remote_ip 5.5.5.250 78777 username soleymani 78777 unique_id port 78777 terminate_cause Lost-Carrier 78777 bytes_out 77478 78777 bytes_in 569184 78777 station_ip 5.119.46.203 78777 port 15728665 78777 nas_port_type Virtual 78777 remote_ip 5.5.5.234 78779 username forozande 78779 unique_id port 78779 terminate_cause User-Request 78779 bytes_out 52370 78779 bytes_in 629950 78779 station_ip 37.129.252.175 78779 port 15728669 78779 nas_port_type Virtual 78779 remote_ip 5.5.5.231 78788 username alinezhad 78788 unique_id port 78788 terminate_cause User-Request 78788 bytes_out 0 78788 bytes_in 0 78788 station_ip 5.202.9.238 78788 port 15728677 78788 nas_port_type Virtual 78788 remote_ip 5.5.5.241 78791 username pouria 78791 unique_id port 78791 terminate_cause User-Request 78791 bytes_out 0 78791 bytes_in 0 78791 station_ip 151.235.87.137 78791 port 15728683 78791 nas_port_type Virtual 78791 remote_ip 5.5.5.224 78792 username shahnaz 78792 unique_id port 78792 terminate_cause User-Request 78792 bytes_out 459825 78792 bytes_in 6737058 78792 station_ip 5.119.90.129 78792 port 15728679 78792 nas_port_type Virtual 78792 remote_ip 5.5.5.229 78794 username alinezhad 78794 unique_id port 78757 station_ip 113.203.68.15 78757 port 15728645 78757 nas_port_type Virtual 78757 remote_ip 5.5.5.251 78764 username alinezhad 78764 unique_id port 78764 terminate_cause User-Request 78764 bytes_out 0 78764 bytes_in 0 78764 station_ip 5.202.9.238 78764 port 15728655 78764 nas_port_type Virtual 78764 remote_ip 5.5.5.241 81238 mac 81238 bytes_out 0 81238 bytes_in 0 81238 station_ip 5.119.30.76 81238 port 14 81238 unique_id port 81238 remote_ip 10.8.0.6 81241 username mahbobeh 81241 unique_id port 78771 username madadi 78771 unique_id port 78771 terminate_cause Lost-Carrier 78771 bytes_out 1933441 78771 bytes_in 18144216 78771 station_ip 5.119.144.42 78771 port 15728651 78771 nas_port_type Virtual 78771 remote_ip 5.5.5.245 78772 username soleymani 78772 unique_id port 78772 terminate_cause Lost-Carrier 78772 bytes_out 478385 78772 bytes_in 1030504 78772 station_ip 5.119.83.52 78772 port 15728661 78772 nas_port_type Virtual 78772 remote_ip 5.5.5.238 78782 username alinezhad 78782 unique_id port 78782 terminate_cause User-Request 78782 bytes_out 0 78782 bytes_in 0 78782 station_ip 5.202.9.238 78782 port 15728672 78782 nas_port_type Virtual 78782 remote_ip 5.5.5.241 78787 username alinezhad 78787 unique_id port 78787 terminate_cause User-Request 78787 bytes_out 0 78787 bytes_in 0 78787 station_ip 5.202.9.238 78787 port 15728676 78787 nas_port_type Virtual 78787 remote_ip 5.5.5.241 78789 username soleymani 78789 unique_id port 78789 terminate_cause Lost-Carrier 78789 bytes_out 358867 78789 bytes_in 2569801 78789 station_ip 5.120.134.247 78789 port 15728675 78789 nas_port_type Virtual 78789 remote_ip 5.5.5.228 78793 username madadi 78793 unique_id port 78793 terminate_cause Lost-Carrier 78793 bytes_out 494986 78793 bytes_in 1645898 78793 station_ip 5.119.188.142 78793 port 15728670 78793 nas_port_type Virtual 78793 remote_ip 5.5.5.230 78799 username forozande 78799 unique_id port 78799 terminate_cause User-Request 78799 bytes_out 50730 78799 bytes_in 340405 78799 station_ip 83.122.20.24 78799 port 15728690 78799 nas_port_type Virtual 78799 remote_ip 5.5.5.221 78807 username pouria 78807 unique_id port 78807 terminate_cause Lost-Carrier 78807 bytes_out 20124128 78807 bytes_in 625519819 78807 station_ip 151.235.87.137 78807 port 15728684 78807 nas_port_type Virtual 78807 remote_ip 5.5.5.224 78808 username amirhosein 78808 unique_id port 78808 terminate_cause User-Request 78808 bytes_out 58877 78808 bytes_in 338704 78808 station_ip 5.119.254.181 78808 port 15728698 78808 nas_port_type Virtual 78808 remote_ip 5.5.5.235 78814 username alinezhad 78814 unique_id port 78814 terminate_cause User-Request 78814 bytes_out 0 78814 bytes_in 0 78814 station_ip 5.202.9.238 78814 port 15728704 78814 nas_port_type Virtual 78814 remote_ip 5.5.5.241 78816 username alirezazamani 78816 unique_id port 78816 terminate_cause Lost-Carrier 78816 bytes_out 283302 78816 bytes_in 3902641 78816 station_ip 5.120.95.105 78816 port 15728701 78816 nas_port_type Virtual 78816 remote_ip 5.5.5.223 78818 username alirezazamani 78818 unique_id port 78818 terminate_cause Lost-Carrier 78818 bytes_out 109758 78818 bytes_in 1480234 78818 station_ip 5.120.95.105 78818 port 15728705 78818 nas_port_type Virtual 78818 remote_ip 5.5.5.214 78820 username avaanna 78820 unique_id port 78820 terminate_cause User-Request 78820 bytes_out 64503 78820 bytes_in 458000 78820 station_ip 37.129.12.138 78820 port 15728713 78820 nas_port_type Virtual 78820 remote_ip 5.5.5.208 78826 username forozande 78826 unique_id port 78826 terminate_cause User-Request 78826 bytes_out 16064 81241 terminate_cause Lost-Carrier 78759 nas_port_type Virtual 78759 remote_ip 5.5.5.254 78765 username rashidi 78765 unique_id port 78765 terminate_cause Lost-Carrier 78765 bytes_out 5033186 78765 bytes_in 11898401 78765 station_ip 5.120.59.174 78765 port 15728649 78765 nas_port_type Virtual 78765 remote_ip 5.5.5.247 78770 username soleymani 78770 unique_id port 78770 terminate_cause User-Request 78770 bytes_out 0 78770 bytes_in 0 78770 station_ip 5.119.83.52 78770 port 15728660 78770 nas_port_type Virtual 78770 remote_ip 5.5.5.238 78778 username soleymani 78778 unique_id port 78778 terminate_cause Lost-Carrier 78778 bytes_out 70889 78778 bytes_in 419118 78778 station_ip 5.120.171.198 78778 port 15728667 78778 nas_port_type Virtual 78778 remote_ip 5.5.5.233 78780 username amirhosein 78780 unique_id port 78780 terminate_cause User-Request 78780 bytes_out 611553 78780 bytes_in 6023936 78780 station_ip 5.119.254.181 78780 port 15728664 78780 nas_port_type Virtual 78780 remote_ip 5.5.5.235 78785 username hamideh 78785 unique_id port 78785 terminate_cause Lost-Carrier 78785 bytes_out 5999 78785 bytes_in 135938 78785 station_ip 5.119.50.89 78785 port 15728671 78785 nas_port_type Virtual 78785 remote_ip 5.5.5.240 78786 username shahnaz 78786 unique_id port 78786 terminate_cause User-Request 78786 bytes_out 1310536 78786 bytes_in 30076950 78786 station_ip 5.119.90.129 78786 port 15728673 78786 nas_port_type Virtual 78786 remote_ip 5.5.5.229 78790 username soleymani 78790 unique_id port 78790 terminate_cause Lost-Carrier 78790 bytes_out 14797 78790 bytes_in 154750 78790 station_ip 5.120.54.54 78790 port 15728678 78790 nas_port_type Virtual 78790 remote_ip 5.5.5.227 78801 username alinezhad 78801 unique_id port 78801 terminate_cause User-Request 78801 bytes_out 0 78801 bytes_in 0 78801 station_ip 5.202.9.238 78801 port 15728691 78801 nas_port_type Virtual 78801 remote_ip 5.5.5.241 78802 username amirhosein 78802 unique_id port 78802 terminate_cause Lost-Carrier 78802 bytes_out 328356 78802 bytes_in 2406579 78802 station_ip 5.119.254.181 78802 port 15728685 78802 nas_port_type Virtual 78802 remote_ip 5.5.5.235 78803 username mahbobeh 78803 unique_id port 78803 terminate_cause Lost-Carrier 78803 bytes_out 184615 78803 bytes_in 1917573 78803 station_ip 83.123.8.227 78803 port 15728674 78803 nas_port_type Virtual 78803 remote_ip 5.5.5.253 78815 username forozande 78815 unique_id port 78815 terminate_cause User-Request 78815 bytes_out 16740 78815 bytes_in 74846 78815 station_ip 37.129.43.66 78815 port 15728706 78815 nas_port_type Virtual 78815 remote_ip 5.5.5.212 78824 username soleymani 78824 unique_id port 78824 terminate_cause Lost-Carrier 78824 bytes_out 122335 78824 bytes_in 269221 78824 station_ip 5.119.118.218 78824 port 15728709 78824 nas_port_type Virtual 78824 remote_ip 5.5.5.210 78827 username alirezazamani 78827 unique_id port 78827 terminate_cause Lost-Carrier 78827 bytes_out 125507 78827 bytes_in 542378 78827 station_ip 5.120.95.105 78827 port 15728708 78827 nas_port_type Virtual 78827 remote_ip 5.5.5.211 78828 username soleymani 78828 unique_id port 78828 terminate_cause Lost-Carrier 78828 bytes_out 42680 78828 bytes_in 176627 78828 station_ip 5.120.18.137 78828 port 15728716 78828 nas_port_type Virtual 78828 remote_ip 5.5.5.206 78829 username ahmadi 78829 unique_id port 78829 terminate_cause User-Request 78829 bytes_out 31612 78829 bytes_in 247420 78829 station_ip 83.122.50.5 78829 port 15728720 78829 nas_port_type Virtual 78829 remote_ip 5.5.5.203 78831 username soleymani 78831 unique_id port 78831 terminate_cause Lost-Carrier 78831 bytes_out 84483 78831 bytes_in 447512 78831 station_ip 5.119.171.165 78781 username hamideh 78781 unique_id port 78781 terminate_cause Lost-Carrier 78781 bytes_out 3430036 78781 bytes_in 65944395 78781 station_ip 5.119.50.89 78781 port 15728656 78781 nas_port_type Virtual 78781 remote_ip 5.5.5.240 81239 bytes_out 97073 81239 bytes_in 205059 81239 station_ip 37.129.243.34 81239 port 15728815 81239 nas_port_type Virtual 81239 remote_ip 5.5.5.163 81248 username soleymani 81248 unique_id port 81248 terminate_cause Lost-Carrier 78784 username mobina 78784 unique_id port 78784 terminate_cause Lost-Carrier 78784 bytes_out 48624 78784 bytes_in 358643 78784 station_ip 5.124.119.176 78784 port 15728668 78784 nas_port_type Virtual 78784 remote_ip 5.5.5.232 78795 username madadi 78795 unique_id port 78795 terminate_cause Lost-Carrier 78795 bytes_out 18185 78795 bytes_in 136474 78795 station_ip 5.119.19.198 78795 port 15728682 78795 nas_port_type Virtual 78795 remote_ip 5.5.5.225 78796 username alirezazamani 78796 unique_id port 78796 terminate_cause Lost-Carrier 78796 bytes_out 324990 78796 bytes_in 6715617 78796 station_ip 5.120.95.105 78796 port 15728687 78796 nas_port_type Virtual 78796 remote_ip 5.5.5.223 78805 username forozande 78805 unique_id port 78805 terminate_cause User-Request 78805 bytes_out 32947 78805 bytes_in 76555 78805 station_ip 37.129.106.2 78805 port 15728696 78805 nas_port_type Virtual 78805 remote_ip 5.5.5.217 78809 username aminvpn 78809 unique_id port 78809 terminate_cause User-Request 78809 bytes_out 946289 78809 bytes_in 6573914 78809 station_ip 78.39.27.231 78809 port 15728694 78809 nas_port_type Virtual 78809 remote_ip 5.5.5.219 78810 username mobina 78810 unique_id port 78810 terminate_cause Lost-Carrier 78810 bytes_out 2382372 78810 bytes_in 61055727 78810 station_ip 5.123.234.25 78810 port 15728692 78810 nas_port_type Virtual 78810 remote_ip 5.5.5.220 78821 username avaanna 78821 unique_id port 78821 terminate_cause User-Request 78821 bytes_out 49274 78821 bytes_in 658118 78821 station_ip 37.129.12.138 78821 port 15728714 78821 nas_port_type Virtual 78821 remote_ip 5.5.5.208 78823 username mamal 78823 unique_id port 78823 terminate_cause User-Request 78823 bytes_out 142722 78823 bytes_in 2826340 78823 station_ip 83.122.219.80 78823 port 15728715 78823 nas_port_type Virtual 78823 remote_ip 5.5.5.207 78825 username alinezhad 78825 unique_id port 78825 terminate_cause User-Request 78825 bytes_out 0 78825 bytes_in 0 78825 station_ip 5.202.9.238 78825 port 15728717 78825 nas_port_type Virtual 78825 remote_ip 5.5.5.241 78834 username ahmadipour 78834 unique_id port 78834 terminate_cause Lost-Carrier 78834 bytes_out 133621 78834 bytes_in 2339805 78834 station_ip 37.129.191.79 78834 port 15728726 78834 nas_port_type Virtual 78834 remote_ip 5.5.5.199 78843 username alinezhad 78843 unique_id port 78843 terminate_cause User-Request 78843 bytes_out 0 78843 bytes_in 0 78843 station_ip 5.202.9.238 78843 port 15728735 78843 nas_port_type Virtual 78843 remote_ip 5.5.5.241 78846 username mahdavi 78846 unique_id port 78846 terminate_cause User-Request 78846 bytes_out 554956 78846 bytes_in 9532177 78846 station_ip 37.129.138.62 78846 port 15728737 78846 nas_port_type Virtual 78846 remote_ip 5.5.5.197 78848 username mahdavi 78848 unique_id port 78848 terminate_cause User-Request 78848 bytes_out 423688 78848 bytes_in 7856763 78848 station_ip 37.129.138.62 78848 port 15728740 78848 nas_port_type Virtual 78848 remote_ip 5.5.5.197 78849 username mahdavi 78849 unique_id port 78849 terminate_cause User-Request 78849 bytes_out 522521 78849 bytes_in 15022015 78849 station_ip 37.129.138.62 78849 port 15728741 78849 nas_port_type Virtual 78794 terminate_cause User-Request 78794 bytes_out 0 78794 bytes_in 0 78794 station_ip 5.202.9.238 78794 port 15728686 78794 nas_port_type Virtual 78794 remote_ip 5.5.5.241 78797 username soleymani 78797 unique_id port 78797 terminate_cause Lost-Carrier 78797 bytes_out 29812 78797 bytes_in 165657 78797 station_ip 5.120.187.203 78797 port 15728688 78797 nas_port_type Virtual 78797 remote_ip 5.5.5.222 78798 username forozande 78798 unique_id port 78798 terminate_cause User-Request 78798 bytes_out 0 78798 bytes_in 0 78798 station_ip 83.122.20.24 78798 port 15728689 78798 nas_port_type Virtual 78798 remote_ip 5.5.5.221 78800 username ahmadipour 78800 unique_id port 78800 terminate_cause User-Request 78800 bytes_out 2672092 78800 bytes_in 55802421 78800 station_ip 37.129.136.3 78800 port 15728680 78800 nas_port_type Virtual 78800 remote_ip 5.5.5.226 78804 username ahmadi 78804 unique_id port 78804 terminate_cause User-Request 78804 bytes_out 47731 78804 bytes_in 506223 78804 station_ip 83.122.17.121 78804 port 15728695 78804 nas_port_type Virtual 78804 remote_ip 5.5.5.218 78806 username forozande 78806 unique_id port 78806 terminate_cause User-Request 78806 bytes_out 40510 78806 bytes_in 720778 78806 station_ip 37.129.106.2 78806 port 15728697 78806 nas_port_type Virtual 78806 remote_ip 5.5.5.217 78811 username alinezhad 78811 unique_id port 78811 terminate_cause User-Request 78811 bytes_out 0 78811 bytes_in 0 78811 station_ip 5.202.9.238 78811 port 15728700 78811 nas_port_type Virtual 78811 remote_ip 5.5.5.241 78812 username amirhosein 78812 unique_id port 78812 terminate_cause Lost-Carrier 78812 bytes_out 288399 78812 bytes_in 4242959 78812 station_ip 5.119.254.181 78812 port 15728699 78812 nas_port_type Virtual 78812 remote_ip 5.5.5.235 78813 username soleymani 78813 unique_id port 78813 terminate_cause Lost-Carrier 78813 bytes_out 169891 78813 bytes_in 502799 78813 station_ip 5.119.94.151 78813 port 15728702 78813 nas_port_type Virtual 78813 remote_ip 5.5.5.216 78817 username soleymani 78817 unique_id port 78817 terminate_cause Lost-Carrier 78817 bytes_out 192699 78817 bytes_in 535213 78817 station_ip 5.120.98.121 78817 port 15728703 78817 nas_port_type Virtual 78817 remote_ip 5.5.5.215 78819 username avaanna 78819 unique_id port 78819 terminate_cause User-Request 78819 bytes_out 0 78819 bytes_in 0 78819 station_ip 37.129.12.138 78819 port 15728711 78819 nas_port_type Virtual 78819 remote_ip 5.5.5.208 78822 username soleymani 78822 unique_id port 78822 terminate_cause Lost-Carrier 78822 bytes_out 346452 78822 bytes_in 6828218 78822 station_ip 5.120.66.253 78822 port 15728707 78822 nas_port_type Virtual 78822 remote_ip 5.5.5.213 78837 username alirezazamani 78837 unique_id port 78837 terminate_cause Lost-Carrier 78837 bytes_out 1105814 78837 bytes_in 44766816 78837 station_ip 5.120.95.105 78837 port 15728722 78837 nas_port_type Virtual 78837 remote_ip 5.5.5.211 78839 username forozande 78839 unique_id port 78839 terminate_cause User-Request 78839 bytes_out 86254 78839 bytes_in 712497 78839 station_ip 37.129.194.219 78839 port 15728730 78839 nas_port_type Virtual 78839 remote_ip 5.5.5.196 78840 username alirezazamani 78840 unique_id port 78840 terminate_cause User-Request 78840 bytes_out 36628700 78840 bytes_in 91121366 78840 station_ip 31.57.143.114 78840 port 15728693 78840 nas_port_type Virtual 78840 remote_ip 5.5.5.250 78842 username mahdavi 78842 unique_id port 78842 terminate_cause User-Request 78842 bytes_out 124019 78842 bytes_in 1667900 78842 station_ip 37.129.138.62 78842 port 15728733 78842 nas_port_type Virtual 78842 remote_ip 5.5.5.197 78845 username mahdavi 78826 bytes_in 45812 78826 station_ip 37.129.120.63 78826 port 15728718 78826 nas_port_type Virtual 78826 remote_ip 5.5.5.205 78830 username forozande 78830 unique_id port 78830 terminate_cause User-Request 78830 bytes_out 117518 78830 bytes_in 2664185 78830 station_ip 37.129.56.53 78830 port 15728721 78830 nas_port_type Virtual 78830 remote_ip 5.5.5.202 78832 username amirhosein 78832 unique_id port 78832 terminate_cause User-Request 78832 bytes_out 301673 78832 bytes_in 1613894 78832 station_ip 5.119.254.181 78832 port 15728725 78832 nas_port_type Virtual 78832 remote_ip 5.5.5.235 78835 username madadi 78835 unique_id port 78835 terminate_cause Lost-Carrier 78835 bytes_out 104027 78835 bytes_in 1518484 78835 station_ip 5.119.71.120 78835 port 15728724 78835 nas_port_type Virtual 78835 remote_ip 5.5.5.200 78841 username mahdavi 78841 unique_id port 78841 terminate_cause User-Request 78841 bytes_out 182738 78841 bytes_in 1417899 78841 station_ip 37.129.138.62 78841 port 15728731 78841 nas_port_type Virtual 78841 remote_ip 5.5.5.197 78847 username mahdavi 78847 unique_id port 78847 terminate_cause User-Request 78847 bytes_out 199019 78847 bytes_in 3630131 78847 station_ip 37.129.138.62 78847 port 15728738 78847 nas_port_type Virtual 78847 remote_ip 5.5.5.197 78851 username mahdavi 78851 unique_id port 78851 terminate_cause User-Request 78851 bytes_out 410197 78851 bytes_in 7008892 78851 station_ip 37.129.138.62 78851 port 15728742 78851 nas_port_type Virtual 78851 remote_ip 5.5.5.197 78855 username mahdavi 78855 unique_id port 78855 terminate_cause User-Request 78855 bytes_out 195061 78855 bytes_in 1069999 78855 station_ip 37.129.138.62 78855 port 15728747 78855 nas_port_type Virtual 78855 remote_ip 5.5.5.197 78856 username mahdavi 78856 unique_id port 78856 terminate_cause User-Request 78856 bytes_out 0 78856 bytes_in 0 78856 station_ip 37.129.138.62 78856 port 15728748 78856 nas_port_type Virtual 78856 remote_ip 5.5.5.197 78858 username alinezhad 78858 unique_id port 78858 terminate_cause User-Request 78858 bytes_out 0 78858 bytes_in 0 78858 station_ip 5.202.9.238 78858 port 15728751 78858 nas_port_type Virtual 78858 remote_ip 5.5.5.241 78861 username soleymani 78861 unique_id port 78861 terminate_cause Lost-Carrier 78861 bytes_out 1134908 78861 bytes_in 2715887 78861 station_ip 5.119.59.210 78861 port 15728752 78861 nas_port_type Virtual 78861 remote_ip 5.5.5.192 78867 username shahnaz 78867 unique_id port 78867 terminate_cause User-Request 78867 bytes_out 0 78867 bytes_in 0 78867 station_ip 5.119.21.9 78867 port 15728759 78867 nas_port_type Virtual 78867 remote_ip 5.5.5.188 78875 username madadi 78875 unique_id port 78875 terminate_cause Lost-Carrier 78875 bytes_out 85082 78875 bytes_in 1147794 78875 station_ip 5.119.171.249 78875 port 15728764 78875 nas_port_type Virtual 78875 remote_ip 5.5.5.184 78877 username iranmanesh 78877 unique_id port 78877 terminate_cause User-Request 78877 bytes_out 57434 78877 bytes_in 500828 78877 station_ip 37.129.244.157 78877 port 15728770 78877 nas_port_type Virtual 78877 remote_ip 5.5.5.183 81240 port 15728816 81240 nas_port_type Virtual 81240 remote_ip 5.5.5.163 81244 username forozande 81244 unique_id port 81244 terminate_cause User-Request 81244 bytes_out 14154 81244 bytes_in 39589 81244 station_ip 113.203.93.134 78899 username asadi 78899 unique_id port 78899 terminate_cause User-Request 78899 bytes_out 4493 78899 bytes_in 16607 78899 station_ip 83.122.218.204 78899 port 15728798 78899 nas_port_type Virtual 78899 remote_ip 5.5.5.176 78906 username asadi 78906 unique_id port 78906 terminate_cause User-Request 78831 port 15728723 78831 nas_port_type Virtual 78831 remote_ip 5.5.5.201 78833 username madadi 78833 unique_id port 78833 terminate_cause Lost-Carrier 78833 bytes_out 879813 78833 bytes_in 8235591 78833 station_ip 5.119.104.21 78833 port 15728712 78833 nas_port_type Virtual 78833 remote_ip 5.5.5.209 78836 username alinezhad 78836 unique_id port 78836 terminate_cause User-Request 78836 bytes_out 0 78836 bytes_in 0 78836 station_ip 5.202.9.238 78836 port 15728728 78836 nas_port_type Virtual 78836 remote_ip 5.5.5.241 78838 username mahdavi 78838 unique_id port 78838 terminate_cause User-Request 78838 bytes_out 106923 78838 bytes_in 293260 78838 station_ip 37.129.138.62 78838 port 15728729 78838 nas_port_type Virtual 78838 remote_ip 5.5.5.197 78844 username mahdavi 78844 unique_id port 78844 terminate_cause User-Request 78844 bytes_out 147984 78844 bytes_in 772766 78844 station_ip 37.129.138.62 78844 port 15728734 78844 nas_port_type Virtual 78844 remote_ip 5.5.5.197 81241 bytes_out 25091 81241 bytes_in 280648 81241 station_ip 113.203.36.149 81241 port 15728812 81241 nas_port_type Virtual 81241 remote_ip 5.5.5.219 81242 username aminvpn 81242 mac 81242 bytes_out 0 78860 username alinezhad 78860 unique_id port 78860 terminate_cause User-Request 78860 bytes_out 0 78860 bytes_in 0 78860 station_ip 5.202.9.238 78860 port 15728753 78860 nas_port_type Virtual 78860 remote_ip 5.5.5.241 78863 username madadi 78863 unique_id port 78863 terminate_cause Lost-Carrier 78863 bytes_out 957559 78863 bytes_in 4566115 78863 station_ip 5.119.158.116 78863 port 15728739 78863 nas_port_type Virtual 78863 remote_ip 5.5.5.195 78864 username forozande 78864 unique_id port 78864 terminate_cause User-Request 78864 bytes_out 81354 78864 bytes_in 263934 78864 station_ip 83.122.172.25 78864 port 15728756 78864 nas_port_type Virtual 78864 remote_ip 5.5.5.189 78868 username alinezhad 78868 unique_id port 78868 terminate_cause User-Request 78868 bytes_out 0 78868 bytes_in 0 78868 station_ip 5.202.9.238 78868 port 15728760 78868 nas_port_type Virtual 78868 remote_ip 5.5.5.241 78872 username madadi 78872 unique_id port 78872 terminate_cause Lost-Carrier 78872 bytes_out 297808 78872 bytes_in 776389 78872 station_ip 5.119.6.78 78872 port 15728755 78872 nas_port_type Virtual 78872 remote_ip 5.5.5.190 78873 username madadi 78873 unique_id port 78873 terminate_cause Lost-Carrier 78873 bytes_out 52070 78873 bytes_in 209328 78873 station_ip 5.120.134.30 78873 port 15728762 78873 nas_port_type Virtual 78873 remote_ip 5.5.5.186 78876 username iranmanesh 78876 unique_id port 78876 terminate_cause User-Request 78876 bytes_out 52463 78876 bytes_in 338128 78876 station_ip 37.129.244.157 78876 port 15728769 78876 nas_port_type Virtual 78876 remote_ip 5.5.5.183 78878 username alinezhad 78878 unique_id port 78878 terminate_cause User-Request 78878 bytes_out 13555 78878 bytes_in 27154 78878 station_ip 5.202.9.238 78878 port 15728774 78878 nas_port_type Virtual 78878 remote_ip 5.5.5.241 78879 username madadi 78879 unique_id port 78879 terminate_cause Lost-Carrier 78879 bytes_out 262499 78879 bytes_in 541604 78879 station_ip 5.119.217.187 78879 port 15728772 78879 nas_port_type Virtual 78879 remote_ip 5.5.5.182 78884 username alinezhad 78884 unique_id port 78884 terminate_cause User-Request 78884 bytes_out 0 78884 bytes_in 0 78884 station_ip 83.122.136.217 78884 port 15728779 78884 nas_port_type Virtual 78884 remote_ip 5.5.5.177 78885 username asadi 78885 unique_id port 78885 terminate_cause User-Request 78885 bytes_out 107131 78885 bytes_in 1496807 81242 bytes_in 0 78845 unique_id port 78845 terminate_cause User-Request 78845 bytes_out 119784 78845 bytes_in 673579 78845 station_ip 37.129.138.62 78845 port 15728736 78845 nas_port_type Virtual 78845 remote_ip 5.5.5.197 78852 username mahdavi 78852 unique_id port 78852 terminate_cause User-Request 78852 bytes_out 296307 78852 bytes_in 5406031 78852 station_ip 37.129.138.62 78852 port 15728743 78852 nas_port_type Virtual 78852 remote_ip 5.5.5.197 78853 username zoha 78853 unique_id port 78853 terminate_cause Lost-Carrier 78853 bytes_out 2357045 78853 bytes_in 23899198 78853 station_ip 5.119.0.236 78853 port 15728727 78853 nas_port_type Virtual 78853 remote_ip 5.5.5.198 78859 username zamanialireza 78859 unique_id port 78859 terminate_cause User-Request 78859 bytes_out 1759897 78859 bytes_in 35963158 78859 station_ip 5.119.213.57 78859 port 15728745 78859 nas_port_type Virtual 78859 remote_ip 5.5.5.194 78862 username asadi 78862 unique_id port 78862 terminate_cause User-Request 78862 bytes_out 93369 78862 bytes_in 1532321 78862 station_ip 37.129.169.225 78862 port 15728754 78862 nas_port_type Virtual 78862 remote_ip 5.5.5.191 78865 username shahnaz 78865 unique_id port 78865 terminate_cause User-Request 78865 bytes_out 0 78865 bytes_in 0 78865 station_ip 5.119.21.9 78865 port 15728757 78865 nas_port_type Virtual 78865 remote_ip 5.5.5.188 78866 username shahnaz 78866 unique_id port 78866 terminate_cause User-Request 78866 bytes_out 0 78866 bytes_in 0 78866 station_ip 5.119.21.9 78866 port 15728758 78866 nas_port_type Virtual 78866 remote_ip 5.5.5.188 78869 username forozande 78869 unique_id port 78869 terminate_cause User-Request 78869 bytes_out 0 78869 bytes_in 0 78869 station_ip 37.129.93.65 78869 port 15728761 78869 nas_port_type Virtual 78869 remote_ip 5.5.5.187 78870 username sobhan 78870 unique_id port 78870 terminate_cause Lost-Carrier 78870 bytes_out 13762055 78870 bytes_in 300619900 78870 station_ip 5.119.21.22 78870 port 15728719 78870 nas_port_type Virtual 78870 remote_ip 5.5.5.204 78881 username arabpour 78881 unique_id port 78881 terminate_cause Lost-Carrier 78881 bytes_out 487279 78881 bytes_in 9664662 78881 station_ip 5.215.171.110 78881 port 15728775 78881 nas_port_type Virtual 78881 remote_ip 5.5.5.181 78882 username mobina 78882 unique_id port 78882 terminate_cause Lost-Carrier 78882 bytes_out 3614106 78882 bytes_in 66009585 78882 station_ip 5.124.127.100 78882 port 15728750 78882 nas_port_type Virtual 78882 remote_ip 5.5.5.193 78886 username madadi 78886 unique_id port 78886 terminate_cause Lost-Carrier 78886 bytes_out 89472 78886 bytes_in 470547 78886 station_ip 5.119.203.39 78886 port 15728777 78886 nas_port_type Virtual 78886 remote_ip 5.5.5.179 78896 username asadi 78896 unique_id port 78896 terminate_cause User-Request 78896 bytes_out 28679 78896 bytes_in 92068 78896 station_ip 83.122.218.204 78896 port 15728797 78896 nas_port_type Virtual 78896 remote_ip 5.5.5.176 78898 username arabpour 78898 unique_id port 78898 terminate_cause Lost-Carrier 78898 bytes_out 440 78898 bytes_in 121968 78898 station_ip 5.215.171.110 78898 port 15728794 78898 nas_port_type Virtual 78898 remote_ip 5.5.5.181 78902 username asadi 78902 unique_id port 78902 terminate_cause User-Request 78902 bytes_out 10311 78902 bytes_in 45843 78902 station_ip 83.122.218.204 78902 port 15728803 78902 nas_port_type Virtual 78902 remote_ip 5.5.5.176 78904 username mobina 78904 unique_id port 78904 terminate_cause Lost-Carrier 78904 bytes_out 1181794 78904 bytes_in 27705297 78904 station_ip 5.123.22.11 78904 port 15728784 78904 nas_port_type Virtual 78904 remote_ip 5.5.5.173 78849 remote_ip 5.5.5.197 78854 username mahdavi 78854 unique_id port 78854 terminate_cause User-Request 78854 bytes_out 177339 78854 bytes_in 1974112 78854 station_ip 37.129.138.62 78854 port 15728746 78854 nas_port_type Virtual 78854 remote_ip 5.5.5.197 78857 username mahdavi 78857 unique_id port 78857 terminate_cause User-Request 78857 bytes_out 214105 78857 bytes_in 2844945 78857 station_ip 37.129.138.62 78857 port 15728749 78857 nas_port_type Virtual 78857 remote_ip 5.5.5.197 78871 username mahbobeh 78871 unique_id port 78871 terminate_cause Lost-Carrier 78871 bytes_out 8712709 78871 bytes_in 163857174 78871 station_ip 83.123.8.227 78871 port 15728732 78871 nas_port_type Virtual 78871 remote_ip 5.5.5.253 78874 username mahbobeh 78874 unique_id port 78874 terminate_cause Lost-Carrier 78874 bytes_out 30473 78874 bytes_in 199292 78874 station_ip 83.123.8.227 78874 port 15728765 78874 nas_port_type Virtual 78874 remote_ip 5.5.5.253 78880 username soleymani 78880 unique_id port 78880 terminate_cause Lost-Carrier 78880 bytes_out 104453 78880 bytes_in 347563 78880 station_ip 5.120.99.205 78880 port 15728776 78880 nas_port_type Virtual 78880 remote_ip 5.5.5.180 78888 username alirezazamani 78888 unique_id port 78888 terminate_cause Lost-Carrier 78888 bytes_out 979670 78888 bytes_in 30254732 78888 station_ip 5.119.114.102 78888 port 15728778 78888 nas_port_type Virtual 78888 remote_ip 5.5.5.178 78890 username asadi 78890 unique_id port 78890 terminate_cause User-Request 78890 bytes_out 26639 78890 bytes_in 65912 78890 station_ip 83.122.218.204 78890 port 15728787 78890 nas_port_type Virtual 78890 remote_ip 5.5.5.176 78891 username asadi 78891 unique_id port 78891 terminate_cause User-Request 78891 bytes_out 31706 78891 bytes_in 60317 78891 station_ip 83.122.218.204 78891 port 15728789 78891 nas_port_type Virtual 78891 remote_ip 5.5.5.176 78892 username asadi 78892 unique_id port 78892 terminate_cause User-Request 78892 bytes_out 40172 78892 bytes_in 548352 78892 station_ip 83.122.218.204 78892 port 15728790 78892 nas_port_type Virtual 78892 remote_ip 5.5.5.176 78895 username asadi 78895 unique_id port 78895 terminate_cause User-Request 78895 bytes_out 30828 78895 bytes_in 184259 78895 station_ip 83.122.218.204 78895 port 15728796 78895 nas_port_type Virtual 78895 remote_ip 5.5.5.176 78897 username shahrooz 78897 unique_id port 78897 terminate_cause Lost-Carrier 78897 bytes_out 760074 78897 bytes_in 7405725 78897 station_ip 113.203.45.59 78897 port 15728785 78897 nas_port_type Virtual 78897 remote_ip 5.5.5.172 78900 username alirezazamani 78900 unique_id port 78900 terminate_cause Lost-Carrier 78900 bytes_out 603991 78900 bytes_in 19660742 78900 station_ip 5.120.82.118 78900 port 15728788 78900 nas_port_type Virtual 78900 remote_ip 5.5.5.171 78903 username soleymani 78903 unique_id port 78903 terminate_cause User-Request 78903 bytes_out 85850 78903 bytes_in 361811 78903 station_ip 5.119.157.19 78903 port 15728801 78903 nas_port_type Virtual 78903 remote_ip 5.5.5.169 78909 username soleymani 78909 unique_id port 78909 terminate_cause Lost-Carrier 78909 bytes_out 28715 78909 bytes_in 140933 78909 station_ip 5.120.183.79 78909 port 15728804 78909 nas_port_type Virtual 78909 remote_ip 5.5.5.168 78913 username asadi 78913 unique_id port 78913 terminate_cause User-Request 78913 bytes_out 27426 78913 bytes_in 58627 78913 station_ip 83.122.218.204 78913 port 15728814 78913 nas_port_type Virtual 78913 remote_ip 5.5.5.176 78914 username asadi 78914 unique_id port 78914 terminate_cause User-Request 78914 bytes_out 42307 78914 bytes_in 92420 78914 station_ip 83.122.218.204 78914 port 15728816 78885 station_ip 83.122.218.204 78885 port 15728780 78885 nas_port_type Virtual 78885 remote_ip 5.5.5.176 78887 username alirezazamani 78887 unique_id port 78887 terminate_cause User-Request 78887 bytes_out 0 78887 bytes_in 0 78887 station_ip 5.119.114.102 78887 port 15728782 78887 nas_port_type Virtual 78887 remote_ip 5.5.5.175 78889 username asadi 78889 unique_id port 78889 terminate_cause User-Request 78889 bytes_out 32354 78889 bytes_in 315019 78889 station_ip 83.122.218.204 78889 port 15728786 78889 nas_port_type Virtual 78889 remote_ip 5.5.5.176 78893 username alirezazamani 78893 unique_id port 78893 terminate_cause Lost-Carrier 78893 bytes_out 744849 78893 bytes_in 11713972 78893 station_ip 5.120.82.118 78893 port 15728783 78893 nas_port_type Virtual 78893 remote_ip 5.5.5.174 78894 username asadi 78894 unique_id port 78894 terminate_cause User-Request 78894 bytes_out 18687 78894 bytes_in 74738 78894 station_ip 83.122.218.204 78894 port 15728795 78894 nas_port_type Virtual 78894 remote_ip 5.5.5.176 78901 username asadi 78901 unique_id port 78901 terminate_cause User-Request 78901 bytes_out 16438 78901 bytes_in 80591 78901 station_ip 83.122.218.204 78901 port 15728800 78901 nas_port_type Virtual 78901 remote_ip 5.5.5.176 78905 username asadi 78905 unique_id port 78905 terminate_cause User-Request 78905 bytes_out 42019 78905 bytes_in 227495 78905 station_ip 83.122.218.204 78905 port 15728805 78905 nas_port_type Virtual 78905 remote_ip 5.5.5.176 78917 username madadi 78917 unique_id port 78917 terminate_cause User-Request 78917 bytes_out 96361 78917 bytes_in 131803 78917 station_ip 5.119.65.57 78917 port 15728813 78917 nas_port_type Virtual 78917 remote_ip 5.5.5.170 78924 username madadi 78924 unique_id port 78924 terminate_cause User-Request 78924 bytes_out 14954 78924 bytes_in 18902 78924 station_ip 5.119.65.57 78924 port 15728826 78924 nas_port_type Virtual 78924 remote_ip 5.5.5.167 78925 username soleymani 78925 unique_id port 78925 terminate_cause Lost-Carrier 78925 bytes_out 50304 78925 bytes_in 344709 78925 station_ip 5.120.115.91 78925 port 15728818 78925 nas_port_type Virtual 78925 remote_ip 5.5.5.166 78926 username madadi 78926 unique_id port 78926 terminate_cause User-Request 78926 bytes_out 0 78926 bytes_in 0 78926 station_ip 5.119.65.57 78926 port 15728827 78926 nas_port_type Virtual 78926 remote_ip 5.5.5.167 78929 username aminvpn 78929 kill_reason Another user logged on this global unique id 78929 mac 78929 bytes_out 0 78929 bytes_in 0 78929 station_ip 5.120.154.73 78929 port 9 78929 unique_id port 78929 remote_ip 10.8.0.6 78930 username ahmadipour 78930 unique_id port 78930 terminate_cause Lost-Carrier 78930 bytes_out 6481546 78930 bytes_in 139664167 78930 station_ip 37.129.227.155 78930 port 15728821 78930 nas_port_type Virtual 78930 remote_ip 5.5.5.164 78933 username mobina 78933 unique_id port 78933 terminate_cause Lost-Carrier 78933 bytes_out 1097787 78933 bytes_in 14625867 78933 station_ip 5.124.69.27 78933 port 15728828 78933 nas_port_type Virtual 78933 remote_ip 5.5.5.161 78935 username asadi 78935 unique_id port 78935 terminate_cause User-Request 78935 bytes_out 144736 78935 bytes_in 4605059 78935 station_ip 83.123.56.150 78935 port 15728836 78935 nas_port_type Virtual 78935 remote_ip 5.5.5.163 78943 username forozande 78943 unique_id port 78943 terminate_cause User-Request 78943 bytes_out 152674 78943 bytes_in 863553 78943 station_ip 83.123.171.94 78943 port 15728845 78943 nas_port_type Virtual 78943 remote_ip 5.5.5.155 78945 username asadi 78945 unique_id port 78945 terminate_cause User-Request 78945 bytes_out 44960 78945 bytes_in 378491 78906 bytes_out 263642 78906 bytes_in 9081495 78906 station_ip 83.122.218.204 78906 port 15728807 78906 nas_port_type Virtual 78906 remote_ip 5.5.5.176 78908 username asadi 78908 unique_id port 78908 terminate_cause User-Request 78908 bytes_out 42063 78908 bytes_in 513344 78908 station_ip 83.122.218.204 78908 port 15728809 78908 nas_port_type Virtual 78908 remote_ip 5.5.5.176 78916 username madadi 78916 unique_id port 78916 terminate_cause Lost-Carrier 78916 bytes_out 79149 78916 bytes_in 255828 78916 station_ip 5.119.65.57 78916 port 15728806 78916 nas_port_type Virtual 78916 remote_ip 5.5.5.167 78919 username asadi 78919 unique_id port 78919 terminate_cause User-Request 78919 bytes_out 13668 78919 bytes_in 88006 78919 station_ip 83.122.218.204 78919 port 15728822 78919 nas_port_type Virtual 78919 remote_ip 5.5.5.176 81242 station_ip 5.119.30.76 81242 port 14 81242 unique_id port 81242 remote_ip 10.8.0.6 81243 username zoha 81243 unique_id port 81243 terminate_cause User-Request 81243 bytes_out 1254234 81243 bytes_in 4500559 78931 username madadi 78931 unique_id port 78931 terminate_cause User-Request 78931 bytes_out 177938 78931 bytes_in 267826 78931 station_ip 5.119.141.212 78931 port 15728829 78931 nas_port_type Virtual 78931 remote_ip 5.5.5.160 78934 username alirezazamani 78934 unique_id port 78934 terminate_cause Lost-Carrier 78934 bytes_out 1300230 78934 bytes_in 33137077 78934 station_ip 5.120.82.118 78934 port 15728819 78934 nas_port_type Virtual 78934 remote_ip 5.5.5.165 78939 username asadi 78939 unique_id port 78939 terminate_cause User-Request 78939 bytes_out 28558 78939 bytes_in 83558 78939 station_ip 83.123.56.150 78939 port 15728840 78939 nas_port_type Virtual 78939 remote_ip 5.5.5.163 78948 username alirezazamani 78948 unique_id port 78948 terminate_cause Lost-Carrier 78948 bytes_out 1175590 78948 bytes_in 33096669 78948 station_ip 5.120.82.118 78948 port 15728831 78948 nas_port_type Virtual 78948 remote_ip 5.5.5.171 78953 username asadi 78953 unique_id port 78953 terminate_cause User-Request 78953 bytes_out 19034 78953 bytes_in 118692 78953 station_ip 83.123.56.150 78953 port 15728857 78953 nas_port_type Virtual 78953 remote_ip 5.5.5.163 78979 username reza2742 78979 unique_id port 78979 terminate_cause User-Request 78979 bytes_out 306689 78979 bytes_in 6679024 78979 station_ip 83.122.89.18 78979 port 15728882 78979 nas_port_type Virtual 78979 remote_ip 5.5.5.137 78986 username zamanialireza 78986 unique_id port 78986 terminate_cause User-Request 78986 bytes_out 3040089 78986 bytes_in 57049817 78986 station_ip 94.183.213.166 78986 port 15728856 78986 nas_port_type Virtual 78986 remote_ip 5.5.5.152 78988 username alinezhad 78988 unique_id port 78988 terminate_cause User-Request 78988 bytes_out 0 78988 bytes_in 0 78988 station_ip 5.202.5.104 78988 port 15728892 78988 nas_port_type Virtual 78988 remote_ip 5.5.5.134 78990 username madadi 78990 unique_id port 78990 terminate_cause Lost-Carrier 78990 bytes_out 213298 78990 bytes_in 978519 78990 station_ip 5.119.151.200 78990 port 15728869 78990 nas_port_type Virtual 78990 remote_ip 5.5.5.143 78991 username reza2742 78991 unique_id port 78991 terminate_cause User-Request 78991 bytes_out 104930 78991 bytes_in 1185418 78991 station_ip 37.129.133.138 78991 port 15728895 78991 nas_port_type Virtual 78991 remote_ip 5.5.5.131 78995 username ahmadi 78995 unique_id port 78995 terminate_cause User-Request 78995 bytes_out 47221 78995 bytes_in 263090 78995 station_ip 83.122.50.5 78995 port 15728898 78995 nas_port_type Virtual 78995 remote_ip 5.5.5.203 78997 username soleymani 78997 unique_id port 78907 username soleymani 78907 unique_id port 78907 terminate_cause User-Request 78907 bytes_out 0 78907 bytes_in 0 78907 station_ip 5.120.115.91 78907 port 15728808 78907 nas_port_type Virtual 78907 remote_ip 5.5.5.166 78910 username madadi 78910 unique_id port 78910 terminate_cause Lost-Carrier 78910 bytes_out 177002 78910 bytes_in 413465 78910 station_ip 5.119.65.57 78910 port 15728799 78910 nas_port_type Virtual 78910 remote_ip 5.5.5.170 78911 username mahbobeh 78911 unique_id port 78911 terminate_cause Lost-Carrier 78911 bytes_out 154820 78911 bytes_in 1692899 78911 station_ip 83.123.8.227 78911 port 15728781 78911 nas_port_type Virtual 78911 remote_ip 5.5.5.253 78912 username soleymani 78912 unique_id port 78912 terminate_cause User-Request 78912 bytes_out 0 78912 bytes_in 0 78912 station_ip 5.120.115.91 78912 port 15728811 78912 nas_port_type Virtual 78912 remote_ip 5.5.5.166 78915 username asadi 78915 unique_id port 78915 terminate_cause User-Request 78915 bytes_out 22619 78915 bytes_in 46114 78915 station_ip 83.122.218.204 78915 port 15728817 78915 nas_port_type Virtual 78915 remote_ip 5.5.5.176 78918 username madadi 78918 unique_id port 78918 terminate_cause User-Request 78918 bytes_out 16230 78918 bytes_in 32818 78918 station_ip 5.119.65.57 78918 port 15728820 78918 nas_port_type Virtual 78918 remote_ip 5.5.5.167 78921 username madadi 78921 unique_id port 78921 terminate_cause User-Request 78921 bytes_out 4095 78921 bytes_in 14950 78921 station_ip 5.119.65.57 78921 port 15728824 78921 nas_port_type Virtual 78921 remote_ip 5.5.5.167 78922 username alinezhad 78922 unique_id port 78922 terminate_cause User-Request 78922 bytes_out 52210 78922 bytes_in 407411 78922 station_ip 37.129.76.246 78922 port 15728825 78922 nas_port_type Virtual 78922 remote_ip 5.5.5.162 78936 username alirezazamani 78936 unique_id port 78936 terminate_cause User-Request 78936 bytes_out 189488 78936 bytes_in 818721 78936 station_ip 37.129.239.92 78936 port 15728837 78936 nas_port_type Virtual 78936 remote_ip 5.5.5.158 78938 username soleymani 78938 unique_id port 78938 terminate_cause Lost-Carrier 78938 bytes_out 46055 78938 bytes_in 321012 78938 station_ip 5.119.32.77 78938 port 15728834 78938 nas_port_type Virtual 78938 remote_ip 5.5.5.159 78940 username asadi 78940 unique_id port 78940 terminate_cause User-Request 78940 bytes_out 28224 78940 bytes_in 172274 78940 station_ip 83.123.56.150 78940 port 15728841 78940 nas_port_type Virtual 78940 remote_ip 5.5.5.163 78941 username asadi 78941 unique_id port 78941 terminate_cause User-Request 78941 bytes_out 167943 78941 bytes_in 5080350 78941 station_ip 83.123.56.150 78941 port 15728842 78941 nas_port_type Virtual 78941 remote_ip 5.5.5.163 78944 username asadi 78944 unique_id port 78944 terminate_cause User-Request 78944 bytes_out 52081 78944 bytes_in 423507 78944 station_ip 83.123.56.150 78944 port 15728848 78944 nas_port_type Virtual 78944 remote_ip 5.5.5.163 78951 username asadi 78951 unique_id port 78951 terminate_cause User-Request 78951 bytes_out 17357 78951 bytes_in 118544 78951 station_ip 83.123.56.150 78951 port 15728855 78951 nas_port_type Virtual 78951 remote_ip 5.5.5.163 78955 username asadi 78955 unique_id port 78955 terminate_cause User-Request 78955 bytes_out 29075 78955 bytes_in 76887 78955 station_ip 83.123.56.150 78955 port 15728859 78955 nas_port_type Virtual 78955 remote_ip 5.5.5.163 78957 username alinezhad 78957 unique_id port 78957 terminate_cause User-Request 78957 bytes_out 0 78957 bytes_in 0 78957 station_ip 37.129.112.254 78957 port 15728860 78957 nas_port_type Virtual 78957 remote_ip 5.5.5.150 78914 nas_port_type Virtual 78914 remote_ip 5.5.5.176 78920 username asadi 78920 unique_id port 78920 terminate_cause User-Request 78920 bytes_out 64829 78920 bytes_in 205241 78920 station_ip 83.123.56.150 78920 port 15728823 78920 nas_port_type Virtual 78920 remote_ip 5.5.5.163 78923 username alirezazamani 78923 unique_id port 78923 terminate_cause Lost-Carrier 78923 bytes_out 2202635 78923 bytes_in 29192319 78923 station_ip 5.120.82.118 78923 port 15728802 78923 nas_port_type Virtual 78923 remote_ip 5.5.5.171 78928 username asadi 78928 unique_id port 78928 terminate_cause User-Request 78928 bytes_out 59982 78928 bytes_in 709938 78928 station_ip 83.123.56.150 78928 port 15728830 78928 nas_port_type Virtual 78928 remote_ip 5.5.5.163 78932 username madadi 78932 unique_id port 78932 terminate_cause User-Request 78932 bytes_out 22148 78932 bytes_in 27888 78932 station_ip 5.119.141.212 78932 port 15728833 78932 nas_port_type Virtual 78932 remote_ip 5.5.5.160 78937 username asadi 78937 unique_id port 78937 terminate_cause User-Request 78937 bytes_out 78870 78937 bytes_in 787689 78937 station_ip 83.123.56.150 78937 port 15728838 78937 nas_port_type Virtual 78937 remote_ip 5.5.5.163 78942 username forozande 78942 unique_id port 78942 terminate_cause User-Request 78942 bytes_out 0 78942 bytes_in 0 78942 station_ip 83.123.171.94 78942 port 15728844 78942 nas_port_type Virtual 78942 remote_ip 5.5.5.155 78946 username asadi 78946 unique_id port 78946 terminate_cause User-Request 78946 bytes_out 41327 78946 bytes_in 161101 78946 station_ip 83.123.56.150 78946 port 15728851 78946 nas_port_type Virtual 78946 remote_ip 5.5.5.163 78949 username asadi 78949 unique_id port 78949 terminate_cause User-Request 78949 bytes_out 4704 78949 bytes_in 25008 78949 station_ip 83.123.56.150 78949 port 15728853 78949 nas_port_type Virtual 78949 remote_ip 5.5.5.163 78950 username asadi 78950 unique_id port 78950 terminate_cause User-Request 78950 bytes_out 0 78950 bytes_in 0 78950 station_ip 83.123.56.150 78950 port 15728854 78950 nas_port_type Virtual 78950 remote_ip 5.5.5.163 78960 username avaanna 78960 unique_id port 78960 terminate_cause User-Request 78960 bytes_out 0 78960 bytes_in 0 78960 station_ip 83.123.171.137 78960 port 15728863 78960 nas_port_type Virtual 78960 remote_ip 5.5.5.149 78962 username mamal 78962 unique_id port 78962 terminate_cause User-Request 78962 bytes_out 156840 78962 bytes_in 2533842 78962 station_ip 83.122.36.126 78962 port 15728864 78962 nas_port_type Virtual 78962 remote_ip 5.5.5.148 78964 username madadi 78964 unique_id port 78964 terminate_cause Lost-Carrier 78964 bytes_out 282966 78964 bytes_in 737638 78964 station_ip 5.119.141.212 78964 port 15728835 78964 nas_port_type Virtual 78964 remote_ip 5.5.5.160 78965 username aminvpn 78965 kill_reason Another user logged on this global unique id 78965 mac 78965 bytes_out 0 78965 bytes_in 0 78965 station_ip 5.120.154.73 78965 port 9 78965 unique_id port 78968 username forozande 78968 unique_id port 78968 terminate_cause User-Request 78968 bytes_out 18191 78968 bytes_in 41288 78968 station_ip 37.129.203.227 78968 port 15728868 78968 nas_port_type Virtual 78968 remote_ip 5.5.5.144 78972 username zoha 78972 unique_id port 78972 terminate_cause Lost-Carrier 78972 bytes_out 427808 78972 bytes_in 3753693 78972 station_ip 5.119.0.236 78972 port 15728870 78972 nas_port_type Virtual 78972 remote_ip 5.5.5.198 78975 username alirezazamani 78975 unique_id port 78975 terminate_cause User-Request 78975 bytes_out 206292 78975 bytes_in 5586778 78975 station_ip 5.120.82.118 78975 port 15728879 78975 nas_port_type Virtual 78945 station_ip 83.123.56.150 78945 port 15728850 78945 nas_port_type Virtual 78945 remote_ip 5.5.5.163 78947 username asadi 78947 unique_id port 78947 terminate_cause User-Request 78947 bytes_out 48317 78947 bytes_in 147830 78947 station_ip 83.123.56.150 78947 port 15728852 78947 nas_port_type Virtual 78947 remote_ip 5.5.5.163 78952 username amirhosein 78952 unique_id port 78952 terminate_cause Lost-Carrier 78952 bytes_out 2035853 78952 bytes_in 58706854 78952 station_ip 5.120.146.205 78952 port 15728843 78952 nas_port_type Virtual 78952 remote_ip 5.5.5.156 78954 username alirezazamani 78954 unique_id port 78954 terminate_cause User-Request 78954 bytes_out 138949 78954 bytes_in 716816 78954 station_ip 37.129.168.101 78954 port 15728858 78954 nas_port_type Virtual 78954 remote_ip 5.5.5.151 78956 username mobina 78956 unique_id port 78956 terminate_cause Lost-Carrier 78956 bytes_out 239198 78956 bytes_in 1385467 78956 station_ip 5.123.252.93 78956 port 15728847 78956 nas_port_type Virtual 78956 remote_ip 5.5.5.154 78958 username asadi 78958 unique_id port 78958 terminate_cause User-Request 78958 bytes_out 2604 78958 bytes_in 13669 78958 station_ip 83.123.56.150 78958 port 15728861 78958 nas_port_type Virtual 78958 remote_ip 5.5.5.163 78971 username alinezhad 78971 unique_id port 78971 terminate_cause User-Request 78971 bytes_out 0 78971 bytes_in 0 78971 station_ip 5.202.23.152 78971 port 15728875 78971 nas_port_type Virtual 78971 remote_ip 5.5.5.145 78973 username mobina 78973 unique_id port 78973 terminate_cause Lost-Carrier 78973 bytes_out 513620 78973 bytes_in 13580390 78973 station_ip 5.123.26.186 78973 port 15728871 78973 nas_port_type Virtual 78973 remote_ip 5.5.5.142 78977 username soleymani 78977 unique_id port 78977 terminate_cause Lost-Carrier 78977 bytes_out 156366 78977 bytes_in 1271992 78977 station_ip 5.119.220.189 78977 port 15728876 78977 nas_port_type Virtual 78977 remote_ip 5.5.5.141 78978 username alirezazamani 78978 unique_id port 78978 terminate_cause Lost-Carrier 78978 bytes_out 559827 78978 bytes_in 10745644 78978 station_ip 5.120.82.118 78978 port 15728872 78978 nas_port_type Virtual 78978 remote_ip 5.5.5.165 78982 username alinezhad 78982 unique_id port 78982 terminate_cause User-Request 78982 bytes_out 0 78982 bytes_in 0 78982 station_ip 5.202.5.104 78982 port 15728885 78982 nas_port_type Virtual 78982 remote_ip 5.5.5.134 78985 username amirhosein 78985 unique_id port 78985 terminate_cause User-Request 78985 bytes_out 510986 78985 bytes_in 8582725 78985 station_ip 5.120.146.205 78985 port 15728874 78985 nas_port_type Virtual 78985 remote_ip 5.5.5.156 78992 username mahbobeh 78992 unique_id port 78992 terminate_cause Lost-Carrier 78992 bytes_out 766213 78992 bytes_in 10715304 78992 station_ip 83.123.8.227 78992 port 15728873 78992 nas_port_type Virtual 78992 remote_ip 5.5.5.253 78996 username reza2742 78996 unique_id port 78996 terminate_cause User-Request 78996 bytes_out 99696 78996 bytes_in 616313 78996 station_ip 83.123.22.163 78996 port 15728899 78996 nas_port_type Virtual 78996 remote_ip 5.5.5.128 78998 username reza 78998 unique_id port 78998 terminate_cause User-Request 78998 bytes_out 192670 78998 bytes_in 4368433 78998 station_ip 37.129.206.169 78998 port 15728897 78998 nas_port_type Virtual 78998 remote_ip 5.5.5.129 79001 username alirezazamani 79001 unique_id port 79001 terminate_cause User-Request 79001 bytes_out 82756 79001 bytes_in 122379 79001 station_ip 83.123.207.238 79001 port 15728904 79001 nas_port_type Virtual 79001 remote_ip 5.5.5.126 79002 username reza 79002 unique_id port 79002 terminate_cause User-Request 79002 bytes_out 7865 78959 username iranmanesh 78959 unique_id port 78959 terminate_cause User-Request 78959 bytes_out 30813 78959 bytes_in 68352 78959 station_ip 37.129.244.157 78959 port 15728862 78959 nas_port_type Virtual 78959 remote_ip 5.5.5.183 78961 username arabpour 78961 unique_id port 78961 terminate_cause Lost-Carrier 78961 bytes_out 361454 78961 bytes_in 6831430 78961 station_ip 95.64.81.92 78961 port 15728849 78961 nas_port_type Virtual 78961 remote_ip 5.5.5.153 78963 username alirezazamani 78963 unique_id port 78963 terminate_cause Lost-Carrier 78963 bytes_out 195948 78963 bytes_in 4580081 78963 station_ip 5.120.82.118 78963 port 15728846 78963 nas_port_type Virtual 78963 remote_ip 5.5.5.165 78966 username ahmad 78966 unique_id port 78966 terminate_cause User-Request 78966 bytes_out 1395768 78966 bytes_in 19184408 78966 station_ip 86.57.94.70 78966 port 15728839 78966 nas_port_type Virtual 78966 remote_ip 5.5.5.157 78967 username alinezhad 78967 unique_id port 78967 terminate_cause User-Request 78967 bytes_out 0 78967 bytes_in 0 78967 station_ip 5.202.23.152 78967 port 15728867 78967 nas_port_type Virtual 78967 remote_ip 5.5.5.145 78969 username mobina 78969 unique_id port 78969 terminate_cause Lost-Carrier 78969 bytes_out 15407 78969 bytes_in 140781 78969 station_ip 5.124.139.203 78969 port 15728866 78969 nas_port_type Virtual 78969 remote_ip 5.5.5.146 78970 username madadi 78970 unique_id port 78970 terminate_cause Lost-Carrier 78970 bytes_out 242700 78970 bytes_in 790531 78970 station_ip 5.119.62.124 78970 port 15728865 78970 nas_port_type Virtual 78970 remote_ip 5.5.5.147 78974 username alinezhad 78974 unique_id port 78974 terminate_cause User-Request 78974 bytes_out 0 78974 bytes_in 0 78974 station_ip 5.202.23.152 78974 port 15728877 78974 nas_port_type Virtual 78974 remote_ip 5.5.5.145 78981 username abdilahyar 78981 unique_id port 78981 terminate_cause Lost-Carrier 78981 bytes_out 829611 78981 bytes_in 11713037 78981 station_ip 5.119.198.214 78981 port 15728763 78981 nas_port_type Virtual 78981 remote_ip 5.5.5.185 78987 username soleymani 78987 unique_id port 78987 terminate_cause Lost-Carrier 78987 bytes_out 129121 78987 bytes_in 341751 78987 station_ip 5.119.200.196 78987 port 15728884 78987 nas_port_type Virtual 78987 remote_ip 5.5.5.135 78993 username soleymani 78993 unique_id port 78993 terminate_cause Lost-Carrier 78993 bytes_out 201809 78993 bytes_in 1332963 78993 station_ip 5.120.11.169 78993 port 15728893 78993 nas_port_type Virtual 78993 remote_ip 5.5.5.132 78994 username mobina 78994 unique_id port 78994 terminate_cause Lost-Carrier 78994 bytes_out 3900405 78994 bytes_in 65093057 78994 station_ip 5.124.169.241 78994 port 15728878 78994 nas_port_type Virtual 78994 remote_ip 5.5.5.140 79000 username alirezazamani 79000 unique_id port 79000 terminate_cause User-Request 79000 bytes_out 183345 79000 bytes_in 2649835 79000 station_ip 83.123.207.238 79000 port 15728903 79000 nas_port_type Virtual 79000 remote_ip 5.5.5.126 79005 username soleymani 79005 unique_id port 79005 terminate_cause Lost-Carrier 79005 bytes_out 153224 79005 bytes_in 1754978 79005 station_ip 5.119.69.33 79005 port 15728908 79005 nas_port_type Virtual 79005 remote_ip 5.5.5.124 79011 username zamanialireza 79011 unique_id port 79011 terminate_cause User-Request 79011 bytes_out 0 79011 bytes_in 0 79011 station_ip 113.203.101.205 79011 port 15728917 79011 nas_port_type Virtual 79011 remote_ip 5.5.5.123 79012 username zamanialireza 79012 unique_id port 79012 terminate_cause User-Request 79012 bytes_out 0 79012 bytes_in 0 79012 station_ip 113.203.101.205 79012 port 15728918 79012 nas_port_type Virtual 78975 remote_ip 5.5.5.139 78976 username aminvpn 78976 mac 78976 bytes_out 0 78976 bytes_in 0 78976 station_ip 5.120.154.73 78976 port 9 78976 unique_id port 78980 username alirezazamani 78980 unique_id port 78980 terminate_cause User-Request 78980 bytes_out 0 78980 bytes_in 0 78980 station_ip 5.119.71.238 78980 port 15728883 78980 nas_port_type Virtual 78980 remote_ip 5.5.5.136 78983 username soleymani 78983 unique_id port 78983 terminate_cause Lost-Carrier 78983 bytes_out 161471 78983 bytes_in 465018 78983 station_ip 5.119.3.30 78983 port 15728881 78983 nas_port_type Virtual 78983 remote_ip 5.5.5.138 78984 username alirezazamani 78984 unique_id port 78984 terminate_cause Lost-Carrier 78984 bytes_out 452850 78984 bytes_in 7091564 78984 station_ip 5.120.82.118 78984 port 15728880 78984 nas_port_type Virtual 78984 remote_ip 5.5.5.139 78989 username zamanialireza 78989 unique_id port 78989 terminate_cause User-Request 78989 bytes_out 544208 78989 bytes_in 7842353 78989 station_ip 89.32.97.253 78989 port 15728890 78989 nas_port_type Virtual 78989 remote_ip 5.5.5.133 79006 username reza 79006 unique_id port 79006 terminate_cause User-Request 79006 bytes_out 172356 79006 bytes_in 6178207 79006 station_ip 37.129.206.169 79006 port 15728909 79006 nas_port_type Virtual 79006 remote_ip 5.5.5.129 79016 username zamanialireza 79016 unique_id port 79016 terminate_cause User-Request 79016 bytes_out 545384 79016 bytes_in 12764054 79016 station_ip 89.32.97.253 79016 port 15728921 79016 nas_port_type Virtual 79016 remote_ip 5.5.5.133 79018 username amirhosein 79018 unique_id port 79018 terminate_cause User-Request 79018 bytes_out 158820 79018 bytes_in 1717897 79018 station_ip 5.120.146.205 79018 port 15728920 79018 nas_port_type Virtual 79018 remote_ip 5.5.5.156 81243 station_ip 5.120.136.140 81243 port 15728810 81243 nas_port_type Virtual 81243 remote_ip 5.5.5.244 81245 username forozande 81245 unique_id port 81245 terminate_cause User-Request 81245 bytes_out 37174 81245 bytes_in 306418 79029 username pouria 79029 unique_id port 79029 terminate_cause User-Request 79029 bytes_out 0 79029 bytes_in 0 79029 station_ip 151.235.70.217 79029 port 15728937 79029 nas_port_type Virtual 79029 remote_ip 5.5.5.118 81245 station_ip 83.122.68.172 81245 port 15728819 81245 nas_port_type Virtual 81245 remote_ip 5.5.5.160 81251 username forozande 81251 unique_id port 81251 terminate_cause User-Request 81251 bytes_out 176020 79035 username pouria 79035 kill_reason Maximum number of concurrent logins reached 79035 unique_id port 79035 bytes_out 0 79035 bytes_in 0 79035 station_ip 5.119.234.73 79035 port 15728943 79035 nas_port_type Virtual 79038 username pouria 79038 kill_reason Maximum number of concurrent logins reached 79038 unique_id port 79038 bytes_out 0 79038 bytes_in 0 79038 station_ip 5.119.234.73 79038 port 15728946 79038 nas_port_type Virtual 79040 username pouria 79040 kill_reason Maximum number of concurrent logins reached 79040 unique_id port 79040 bytes_out 0 79040 bytes_in 0 79040 station_ip 151.235.70.217 79040 port 15728948 79040 nas_port_type Virtual 79045 username pouria 79045 kill_reason Maximum number of concurrent logins reached 79045 unique_id port 79045 bytes_out 0 79045 bytes_in 0 79045 station_ip 151.235.70.217 79045 port 15728958 79045 nas_port_type Virtual 79048 username pouria 79048 unique_id port 79048 terminate_cause Lost-Carrier 79048 bytes_out 2619030 79048 bytes_in 57359752 79048 station_ip 151.235.70.217 79048 port 15728950 79048 nas_port_type Virtual 79048 remote_ip 5.5.5.116 79051 username alirezazamani 79051 unique_id port 79051 terminate_cause User-Request 79051 bytes_out 611252 78997 terminate_cause Lost-Carrier 78997 bytes_out 296316 78997 bytes_in 2167532 78997 station_ip 5.119.227.205 78997 port 15728896 78997 nas_port_type Virtual 78997 remote_ip 5.5.5.130 78999 username alinezhad 78999 unique_id port 78999 terminate_cause User-Request 78999 bytes_out 0 78999 bytes_in 0 78999 station_ip 5.202.5.104 78999 port 15728902 78999 nas_port_type Virtual 78999 remote_ip 5.5.5.134 79003 username zamanialireza 79003 unique_id port 79003 terminate_cause User-Request 79003 bytes_out 2146336 79003 bytes_in 33319434 79003 station_ip 89.32.97.253 79003 port 15728901 79003 nas_port_type Virtual 79003 remote_ip 5.5.5.133 79004 username mobina 79004 unique_id port 79004 terminate_cause Lost-Carrier 79004 bytes_out 2125536 79004 bytes_in 48682190 79004 station_ip 5.123.122.142 79004 port 15728905 79004 nas_port_type Virtual 79004 remote_ip 5.5.5.125 81244 port 15728818 81244 nas_port_type Virtual 81244 remote_ip 5.5.5.161 81246 username aminvpn 81246 mac 81246 bytes_out 0 81246 bytes_in 0 81246 station_ip 5.119.30.76 81246 port 14 79014 username zoha 79014 unique_id port 79014 terminate_cause Lost-Carrier 79014 bytes_out 17398470 79014 bytes_in 600701569 79014 station_ip 5.119.0.236 79014 port 15728894 79014 nas_port_type Virtual 79014 remote_ip 5.5.5.198 79021 username zoha 79021 unique_id port 79021 terminate_cause Lost-Carrier 79021 bytes_out 2934910 79021 bytes_in 108625769 79021 station_ip 5.119.0.236 79021 port 15728922 79021 nas_port_type Virtual 79021 remote_ip 5.5.5.198 79025 username alirezazamani 79025 unique_id port 79025 terminate_cause Lost-Carrier 79025 bytes_out 1572450 79025 bytes_in 37148573 79025 station_ip 5.120.72.125 79025 port 15728933 79025 nas_port_type Virtual 79025 remote_ip 5.5.5.121 81246 unique_id port 81246 remote_ip 10.8.0.6 81247 username aminvpn 81247 mac 81247 bytes_out 0 81247 bytes_in 0 81247 station_ip 5.119.30.76 81247 port 14 81247 unique_id port 79030 username alinezhad 79030 unique_id port 79030 terminate_cause User-Request 79030 bytes_out 0 79030 bytes_in 0 79030 station_ip 37.129.82.71 79030 port 15728939 79030 nas_port_type Virtual 79030 remote_ip 5.5.5.117 79033 username zamanialireza 79033 unique_id port 79033 terminate_cause User-Request 79033 bytes_out 10039716 79033 bytes_in 188207177 79033 station_ip 5.119.213.57 79033 port 15728912 79033 nas_port_type Virtual 79033 remote_ip 5.5.5.194 79042 username pouria 79042 unique_id port 79042 terminate_cause Lost-Carrier 79042 bytes_out 4992232 79042 bytes_in 60795308 79042 station_ip 151.235.70.217 79042 port 15728938 79042 nas_port_type Virtual 79042 remote_ip 5.5.5.118 79044 username madadi 79044 unique_id port 79044 terminate_cause Lost-Carrier 79044 bytes_out 4044295 79044 bytes_in 9117054 79044 station_ip 5.119.244.79 79044 port 15728900 79044 nas_port_type Virtual 79044 remote_ip 5.5.5.127 79047 username alirezazamani 79047 unique_id port 79047 terminate_cause Lost-Carrier 79047 bytes_out 511781 79047 bytes_in 8003974 79047 station_ip 5.120.82.118 79047 port 15728951 79047 nas_port_type Virtual 79047 remote_ip 5.5.5.139 79053 username zamanialireza 79053 unique_id port 79053 terminate_cause User-Request 79053 bytes_out 16538161 79053 bytes_in 320595261 79053 station_ip 5.119.213.57 79053 port 15728952 79053 nas_port_type Virtual 79053 remote_ip 5.5.5.194 79054 username pouria 79054 unique_id port 79054 terminate_cause Lost-Carrier 79054 bytes_out 69700492 79054 bytes_in 2596630946 79054 station_ip 151.235.70.217 79054 port 15728960 79054 nas_port_type Virtual 79054 remote_ip 5.5.5.116 81247 remote_ip 10.8.0.6 81252 username aminvpn 79002 bytes_in 51477 79002 station_ip 37.129.206.169 79002 port 15728906 79002 nas_port_type Virtual 79002 remote_ip 5.5.5.129 79007 username alinezhad 79007 unique_id port 79007 terminate_cause User-Request 79007 bytes_out 0 79007 bytes_in 0 79007 station_ip 5.202.5.104 79007 port 15728910 79007 nas_port_type Virtual 79007 remote_ip 5.5.5.134 79009 username alinezhad 79009 unique_id port 79009 terminate_cause User-Request 79009 bytes_out 0 79009 bytes_in 0 79009 station_ip 5.202.5.104 79009 port 15728916 79009 nas_port_type Virtual 79009 remote_ip 5.5.5.134 79010 username zamanialireza 79010 unique_id port 79010 terminate_cause Lost-Carrier 79010 bytes_out 5227289 79010 bytes_in 146556216 79010 station_ip 94.183.213.166 79010 port 15728891 79010 nas_port_type Virtual 79010 remote_ip 5.5.5.152 81248 bytes_out 111199 81248 bytes_in 952720 81248 station_ip 5.120.159.65 81248 port 15728817 81248 nas_port_type Virtual 81248 remote_ip 5.5.5.162 81250 username aminvpn 81250 mac 81250 bytes_out 0 79017 username zamanialireza 79017 unique_id port 79017 terminate_cause User-Request 79017 bytes_out 3430105 79017 bytes_in 75006112 79017 station_ip 89.32.97.253 79017 port 15728923 79017 nas_port_type Virtual 79017 remote_ip 5.5.5.133 79031 username alinezhad 79031 unique_id port 79031 terminate_cause User-Request 79031 bytes_out 0 79031 bytes_in 0 79031 station_ip 37.129.82.71 79031 port 15728940 79031 nas_port_type Virtual 79031 remote_ip 5.5.5.117 79037 username pouria 79037 kill_reason Maximum number of concurrent logins reached 79037 unique_id port 79037 bytes_out 0 79037 bytes_in 0 79037 station_ip 5.119.234.73 79037 port 15728945 79037 nas_port_type Virtual 79039 username pouria 79039 kill_reason Maximum number of concurrent logins reached 79039 unique_id port 79039 bytes_out 0 79039 bytes_in 0 79039 station_ip 151.235.70.217 79039 port 15728947 79039 nas_port_type Virtual 79043 username pouria 79043 unique_id port 79043 terminate_cause Lost-Carrier 79043 bytes_out 632239 79043 bytes_in 10603065 79043 station_ip 151.235.70.217 79043 port 15728941 79043 nas_port_type Virtual 79043 remote_ip 5.5.5.116 79050 username alirezazamani 79050 unique_id port 79050 terminate_cause Lost-Carrier 79050 bytes_out 607517 79050 bytes_in 9856555 79050 station_ip 5.120.82.118 79050 port 15728957 79050 nas_port_type Virtual 79050 remote_ip 5.5.5.114 79055 username mobina 79055 unique_id port 79055 terminate_cause Lost-Carrier 79055 bytes_out 59662 79055 bytes_in 294148 79055 station_ip 5.123.145.111 79055 port 15728963 79055 nas_port_type Virtual 79055 remote_ip 5.5.5.113 79057 username mobina 79057 unique_id port 79057 terminate_cause Lost-Carrier 79057 bytes_out 815627 79057 bytes_in 7516975 79057 station_ip 5.124.127.120 79057 port 15728964 79057 nas_port_type Virtual 79057 remote_ip 5.5.5.112 79058 username alinezhad 79058 unique_id port 79058 terminate_cause User-Request 79058 bytes_out 0 79058 bytes_in 0 79058 station_ip 37.129.27.176 79058 port 15728966 79058 nas_port_type Virtual 79058 remote_ip 5.5.5.110 79061 username alirezazamani 79061 unique_id port 79061 terminate_cause User-Request 79061 bytes_out 106259 79061 bytes_in 934282 79061 station_ip 5.120.82.118 79061 port 15728969 79061 nas_port_type Virtual 79061 remote_ip 5.5.5.139 79063 username asadi 79063 unique_id port 79063 terminate_cause User-Request 79063 bytes_out 174150 79063 bytes_in 2507865 79063 station_ip 83.123.78.40 79063 port 15728642 79063 nas_port_type Virtual 79063 remote_ip 5.5.5.253 79066 username alirezazamani 79066 unique_id port 79066 terminate_cause User-Request 79066 bytes_out 0 79066 bytes_in 0 79012 remote_ip 5.5.5.123 79013 username zamanialireza 79013 unique_id port 79013 terminate_cause User-Request 79013 bytes_out 31813 79013 bytes_in 33257 79013 station_ip 113.203.101.205 79013 port 15728919 79013 nas_port_type Virtual 79013 remote_ip 5.5.5.123 79019 username zamanialireza 79019 unique_id port 79019 terminate_cause User-Request 79019 bytes_out 0 79019 bytes_in 0 79019 station_ip 89.32.97.253 79019 port 15728927 79019 nas_port_type Virtual 79019 remote_ip 5.5.5.133 79020 username alirezazamani 79020 unique_id port 79020 terminate_cause User-Request 79020 bytes_out 1071180 79020 bytes_in 21031110 79020 station_ip 5.120.72.125 79020 port 15728929 79020 nas_port_type Virtual 79020 remote_ip 5.5.5.121 79022 username amin.insta22 79022 unique_id port 79022 terminate_cause Lost-Carrier 79022 bytes_out 615469 79022 bytes_in 14838402 79022 station_ip 5.119.99.6 79022 port 15728928 79022 nas_port_type Virtual 79022 remote_ip 5.5.5.122 79023 username zamanialireza 79023 unique_id port 79023 terminate_cause User-Request 79023 bytes_out 8240935 79023 bytes_in 175773725 79023 station_ip 89.32.97.253 79023 port 15728931 79023 nas_port_type Virtual 79023 remote_ip 5.5.5.133 79024 username alinezhad 79024 unique_id port 79024 terminate_cause User-Request 79024 bytes_out 0 79024 bytes_in 0 79024 station_ip 37.129.204.24 79024 port 15728934 79024 nas_port_type Virtual 79024 remote_ip 5.5.5.119 79026 username shahnaz 79026 unique_id port 79026 terminate_cause Lost-Carrier 79026 bytes_out 867126 79026 bytes_in 14060819 79026 station_ip 5.119.102.181 79026 port 15728930 79026 nas_port_type Virtual 79026 remote_ip 5.5.5.120 79034 username pouria 79034 kill_reason Maximum number of concurrent logins reached 79034 unique_id port 79034 bytes_out 0 79034 bytes_in 0 79034 station_ip 5.119.234.73 79034 port 15728942 79034 nas_port_type Virtual 79036 username pouria 79036 kill_reason Maximum number of concurrent logins reached 79036 unique_id port 79036 bytes_out 0 79036 bytes_in 0 79036 station_ip 5.119.234.73 79036 port 15728944 79036 nas_port_type Virtual 79041 username pouria 79041 kill_reason Maximum number of concurrent logins reached 79041 unique_id port 79041 bytes_out 0 79041 bytes_in 0 79041 station_ip 151.235.70.217 79041 port 15728949 79041 nas_port_type Virtual 79046 username pouria 79046 kill_reason Maximum number of concurrent logins reached 79046 unique_id port 79046 bytes_out 0 79046 bytes_in 0 79046 station_ip 151.235.70.217 79046 port 15728959 79046 nas_port_type Virtual 79049 username pouria 79049 unique_id port 79049 terminate_cause Lost-Carrier 79049 bytes_out 1499827 79049 bytes_in 35369824 79049 station_ip 5.119.234.73 79049 port 15728956 79049 nas_port_type Virtual 79049 remote_ip 5.5.5.115 79052 username alirezazamani 79052 unique_id port 79052 terminate_cause Lost-Carrier 79052 bytes_out 133200 79052 bytes_in 3914540 79052 station_ip 5.120.82.118 79052 port 15728962 79052 nas_port_type Virtual 79052 remote_ip 5.5.5.114 79056 username alinezhad 79056 unique_id port 79056 terminate_cause User-Request 79056 bytes_out 0 79056 bytes_in 0 79056 station_ip 83.123.23.133 79056 port 15728965 79056 nas_port_type Virtual 79056 remote_ip 5.5.5.111 79065 username alirezazamani 79065 unique_id port 79065 terminate_cause Lost-Carrier 79065 bytes_out 426330 79065 bytes_in 12230393 79065 station_ip 5.120.82.118 79065 port 15728641 79065 nas_port_type Virtual 79065 remote_ip 5.5.5.254 79068 username alinezhad 79068 unique_id port 79068 terminate_cause User-Request 79068 bytes_out 0 79068 bytes_in 0 79068 station_ip 5.202.26.34 79068 port 15728649 79068 nas_port_type Virtual 79068 remote_ip 5.5.5.249 79072 username arabpour 79051 bytes_in 18673365 79051 station_ip 5.120.82.118 79051 port 15728961 79051 nas_port_type Virtual 79051 remote_ip 5.5.5.139 79059 username alirezazamani 79059 unique_id port 79059 terminate_cause Lost-Carrier 79059 bytes_out 323512 79059 bytes_in 9669377 79059 station_ip 5.120.82.118 79059 port 15728967 79059 nas_port_type Virtual 79059 remote_ip 5.5.5.114 79060 username alirezazamani 79060 unique_id port 79060 terminate_cause Lost-Carrier 79060 bytes_out 124590 79060 bytes_in 3007894 79060 station_ip 5.120.82.118 79060 port 15728968 79060 nas_port_type Virtual 79060 remote_ip 5.5.5.109 79069 username alinezhad 79069 unique_id port 79069 terminate_cause User-Request 79069 bytes_out 0 79069 bytes_in 0 79069 station_ip 5.202.26.34 79069 port 15728650 79069 nas_port_type Virtual 79069 remote_ip 5.5.5.249 79075 username asadi 79075 unique_id port 79075 terminate_cause User-Request 79075 bytes_out 112100 79075 bytes_in 2307447 79075 station_ip 83.123.78.40 79075 port 15728657 79075 nas_port_type Virtual 79075 remote_ip 5.5.5.253 79077 username asadi 79077 unique_id port 79077 terminate_cause User-Request 79077 bytes_out 167197 79077 bytes_in 2341504 79077 station_ip 83.123.78.40 79077 port 15728660 79077 nas_port_type Virtual 79077 remote_ip 5.5.5.253 79080 username soleymani 79080 unique_id port 79080 terminate_cause Lost-Carrier 79080 bytes_out 197426 79080 bytes_in 629858 79080 station_ip 5.119.149.124 79080 port 15728655 79080 nas_port_type Virtual 79080 remote_ip 5.5.5.246 79083 username madadi 79083 unique_id port 79083 terminate_cause Lost-Carrier 79083 bytes_out 12424 79083 bytes_in 174477 79083 station_ip 5.119.93.218 79083 port 15728656 79083 nas_port_type Virtual 79083 remote_ip 5.5.5.245 79089 username asadi 79089 unique_id port 79089 terminate_cause User-Request 79089 bytes_out 272015 79089 bytes_in 5567580 79089 station_ip 83.123.78.40 79089 port 15728669 79089 nas_port_type Virtual 79089 remote_ip 5.5.5.253 79092 username forozande 79092 unique_id port 79092 terminate_cause User-Request 79092 bytes_out 338347 79092 bytes_in 2495049 79092 station_ip 37.129.246.253 79092 port 15728671 79092 nas_port_type Virtual 79092 remote_ip 5.5.5.239 79097 username alirezazamani 79097 unique_id port 79097 terminate_cause Lost-Carrier 79097 bytes_out 175525 79097 bytes_in 4951673 79097 station_ip 5.119.18.111 79097 port 15728675 79097 nas_port_type Virtual 79097 remote_ip 5.5.5.236 79100 username forozande 79100 unique_id port 79100 terminate_cause User-Request 79100 bytes_out 67398 79100 bytes_in 738650 79100 station_ip 37.129.246.253 79100 port 15728679 79100 nas_port_type Virtual 79100 remote_ip 5.5.5.239 79102 username alirezazamani 79102 unique_id port 79102 terminate_cause Lost-Carrier 79102 bytes_out 891164 79102 bytes_in 32829269 79102 station_ip 5.119.18.111 79102 port 15728678 79102 nas_port_type Virtual 79102 remote_ip 5.5.5.244 79103 username alirezazamani 79103 unique_id port 79103 terminate_cause Lost-Carrier 79103 bytes_out 409420 79103 bytes_in 11585585 79103 station_ip 5.119.18.111 79103 port 15728681 79103 nas_port_type Virtual 79103 remote_ip 5.5.5.236 79106 username soleymani 79106 unique_id port 79106 terminate_cause Lost-Carrier 79106 bytes_out 172926 79106 bytes_in 2078378 79106 station_ip 5.120.91.102 79106 port 15728682 79106 nas_port_type Virtual 79106 remote_ip 5.5.5.232 79111 username alinezhad 79111 unique_id port 79111 terminate_cause User-Request 79111 bytes_out 0 79111 bytes_in 0 79111 station_ip 5.202.26.34 79111 port 15728693 79111 nas_port_type Virtual 79111 remote_ip 5.5.5.249 79115 username aminvpn 79115 unique_id port 79062 username mahdavi 79062 unique_id port 79062 terminate_cause User-Request 79062 bytes_out 333241 79062 bytes_in 10462770 79062 station_ip 83.122.23.203 79062 port 15728640 79062 nas_port_type Virtual 79062 remote_ip 5.5.5.255 79064 username mahdavi 79064 unique_id port 79064 terminate_cause User-Request 79064 bytes_out 484891 79064 bytes_in 11356953 79064 station_ip 83.122.23.203 79064 port 15728643 79064 nas_port_type Virtual 79064 remote_ip 5.5.5.255 79067 username madadi 79067 unique_id port 79067 terminate_cause User-Request 79067 bytes_out 0 79067 bytes_in 0 79067 station_ip 5.119.137.146 79067 port 15728646 79067 nas_port_type Virtual 79067 remote_ip 5.5.5.251 79071 username alinezhad 79071 unique_id port 79071 terminate_cause User-Request 79071 bytes_out 0 79071 bytes_in 0 79071 station_ip 5.202.26.34 79071 port 15728652 79071 nas_port_type Virtual 79071 remote_ip 5.5.5.249 79074 username arabpour 79074 unique_id port 79074 terminate_cause Lost-Carrier 79074 bytes_out 62740 79074 bytes_in 521256 79074 station_ip 5.217.104.47 79074 port 15728653 79074 nas_port_type Virtual 79074 remote_ip 5.5.5.247 79082 username alirezazamani 79082 unique_id port 79082 terminate_cause User-Request 79082 bytes_out 114138 79082 bytes_in 329003 79082 station_ip 83.122.61.234 79082 port 15728666 79082 nas_port_type Virtual 79082 remote_ip 5.5.5.240 79087 username asadi 79087 unique_id port 79087 terminate_cause User-Request 79087 bytes_out 233142 79087 bytes_in 1582059 79087 station_ip 83.123.78.40 79087 port 15728668 79087 nas_port_type Virtual 79087 remote_ip 5.5.5.253 79093 username soleymani 79093 unique_id port 79093 terminate_cause Lost-Carrier 79093 bytes_out 64634 79093 bytes_in 439498 79093 station_ip 5.119.235.140 79093 port 15728672 79093 nas_port_type Virtual 79093 remote_ip 5.5.5.238 79099 username madadi 79099 unique_id port 79099 terminate_cause Lost-Carrier 79099 bytes_out 7422 79099 bytes_in 118565 79099 station_ip 5.120.123.113 79099 port 15728676 79099 nas_port_type Virtual 79099 remote_ip 5.5.5.235 79104 username alinezhad 79104 unique_id port 79104 terminate_cause User-Request 79104 bytes_out 0 79104 bytes_in 0 79104 station_ip 5.202.26.34 79104 port 15728685 79104 nas_port_type Virtual 79104 remote_ip 5.5.5.249 79108 username soleymani 79108 unique_id port 79108 terminate_cause Lost-Carrier 79108 bytes_out 110693 79108 bytes_in 354890 79108 station_ip 5.120.129.139 79108 port 15728684 79108 nas_port_type Virtual 79108 remote_ip 5.5.5.230 79112 username soleymani 79112 unique_id port 79112 terminate_cause Lost-Carrier 79112 bytes_out 119562 79112 bytes_in 290994 79112 station_ip 5.120.182.218 79112 port 15728688 79112 nas_port_type Virtual 79112 remote_ip 5.5.5.228 79116 username soleymani 79116 kill_reason Maximum number of concurrent logins reached 79116 unique_id port 79116 bytes_out 0 79116 bytes_in 0 79116 station_ip 5.120.182.73 79116 port 15728698 79116 nas_port_type Virtual 79118 username soleymani 79118 kill_reason Maximum number of concurrent logins reached 79118 unique_id port 79118 bytes_out 0 79118 bytes_in 0 79118 station_ip 5.120.182.73 79118 port 15728700 79118 nas_port_type Virtual 79120 username soleymani 79120 kill_reason Maximum number of concurrent logins reached 79120 unique_id port 79120 bytes_out 0 79120 bytes_in 0 79120 station_ip 5.119.194.129 79120 port 15728703 79120 nas_port_type Virtual 79122 username soleymani 79122 kill_reason Maximum number of concurrent logins reached 79122 unique_id port 79122 bytes_out 0 79122 bytes_in 0 79122 station_ip 5.119.194.129 79122 port 15728705 79122 nas_port_type Virtual 79123 username soleymani 79443 username zamanialireza 79066 station_ip 5.119.18.111 79066 port 15728644 79066 nas_port_type Virtual 79066 remote_ip 5.5.5.252 79070 username madadi 79070 unique_id port 79070 terminate_cause Lost-Carrier 79070 bytes_out 34986 79070 bytes_in 149567 79070 station_ip 5.119.137.146 79070 port 15728647 79070 nas_port_type Virtual 79070 remote_ip 5.5.5.251 79076 username alinezhad 79076 unique_id port 79076 terminate_cause User-Request 79076 bytes_out 0 79076 bytes_in 0 79076 station_ip 5.202.26.34 79076 port 15728659 79076 nas_port_type Virtual 79076 remote_ip 5.5.5.249 79078 username goli 79078 unique_id port 79078 terminate_cause User-Request 79078 bytes_out 83729 79078 bytes_in 597425 79078 station_ip 83.123.203.35 79078 port 15728661 79078 nas_port_type Virtual 79078 remote_ip 5.5.5.243 79081 username asadi 79081 unique_id port 79081 terminate_cause User-Request 79081 bytes_out 238407 79081 bytes_in 4627706 79081 station_ip 83.123.78.40 79081 port 15728664 79081 nas_port_type Virtual 79081 remote_ip 5.5.5.253 79084 username alirezazamani 79084 unique_id port 79084 terminate_cause Lost-Carrier 79084 bytes_out 194439 79084 bytes_in 3180784 79084 station_ip 5.119.18.111 79084 port 15728654 79084 nas_port_type Virtual 79084 remote_ip 5.5.5.252 79090 username alirezazamani 79090 unique_id port 79090 terminate_cause Lost-Carrier 79090 bytes_out 82126 79090 bytes_in 1570500 79090 station_ip 5.119.18.111 79090 port 15728662 79090 nas_port_type Virtual 79090 remote_ip 5.5.5.242 79095 username alirezazamani 79095 unique_id port 79095 terminate_cause Lost-Carrier 79095 bytes_out 789652 79095 bytes_in 9347435 79095 station_ip 5.119.18.111 79095 port 15728674 79095 nas_port_type Virtual 79095 remote_ip 5.5.5.242 79098 username reza 79098 unique_id port 79098 terminate_cause User-Request 79098 bytes_out 36045 79098 bytes_in 325390 79098 station_ip 37.129.10.245 79098 port 15728673 79098 nas_port_type Virtual 79098 remote_ip 5.5.5.237 79101 username avaanna 79101 unique_id port 79101 terminate_cause User-Request 79101 bytes_out 51402 79101 bytes_in 264244 79101 station_ip 113.203.47.47 79101 port 15728680 79101 nas_port_type Virtual 79101 remote_ip 5.5.5.233 79107 username iranmanesh 79107 unique_id port 79107 terminate_cause User-Request 79107 bytes_out 107606 79107 bytes_in 598651 79107 station_ip 37.129.130.221 79107 port 15728687 79107 nas_port_type Virtual 79107 remote_ip 5.5.5.229 79110 username ahmadi 79110 unique_id port 79110 terminate_cause User-Request 79110 bytes_out 18681 79110 bytes_in 201271 79110 station_ip 113.203.76.176 79110 port 15728691 79110 nas_port_type Virtual 79110 remote_ip 5.5.5.226 79113 username reza 79113 unique_id port 79113 terminate_cause User-Request 79113 bytes_out 0 79113 bytes_in 0 79113 station_ip 37.129.87.121 79113 port 15728695 79113 nas_port_type Virtual 79113 remote_ip 5.5.5.223 79114 username reza 79114 unique_id port 79114 terminate_cause User-Request 79114 bytes_out 3856 79114 bytes_in 16928 79114 station_ip 37.129.87.121 79114 port 15728696 79114 nas_port_type Virtual 79114 remote_ip 5.5.5.223 79119 username soleymani 79119 kill_reason Maximum number of concurrent logins reached 79119 unique_id port 79119 bytes_out 0 79119 bytes_in 0 79119 station_ip 5.120.182.73 79119 port 15728701 79119 nas_port_type Virtual 79126 username soleymani 79126 unique_id port 79126 terminate_cause Lost-Carrier 79126 bytes_out 174914 79126 bytes_in 453282 79126 station_ip 5.119.177.105 79126 port 15728692 79126 nas_port_type Virtual 79126 remote_ip 5.5.5.225 79135 username soleymani 79135 unique_id port 79135 terminate_cause User-Request 79135 bytes_out 0 79135 bytes_in 0 79072 unique_id port 79072 terminate_cause Lost-Carrier 79072 bytes_out 240700 79072 bytes_in 3570028 79072 station_ip 5.212.116.54 79072 port 15728651 79072 nas_port_type Virtual 79072 remote_ip 5.5.5.248 79073 username alirezazamani 79073 unique_id port 79073 terminate_cause Lost-Carrier 79073 bytes_out 3612179 79073 bytes_in 13908911 79073 station_ip 5.119.18.111 79073 port 15728645 79073 nas_port_type Virtual 79073 remote_ip 5.5.5.252 79079 username asadi 79079 unique_id port 79079 terminate_cause User-Request 79079 bytes_out 371502 79079 bytes_in 10554763 79079 station_ip 83.123.78.40 79079 port 15728663 79079 nas_port_type Virtual 79079 remote_ip 5.5.5.253 79085 username asadi 79085 unique_id port 79085 terminate_cause User-Request 79085 bytes_out 224207 79085 bytes_in 2685831 79085 station_ip 83.123.78.40 79085 port 15728667 79085 nas_port_type Virtual 79085 remote_ip 5.5.5.253 79086 username alirezazamani 79086 unique_id port 79086 terminate_cause Lost-Carrier 79086 bytes_out 116345 79086 bytes_in 4816025 79086 station_ip 5.119.18.111 79086 port 15728658 79086 nas_port_type Virtual 79086 remote_ip 5.5.5.244 79088 username mahbobeh 79088 unique_id port 79088 terminate_cause Lost-Carrier 79088 bytes_out 192193 79088 bytes_in 1988240 79088 station_ip 83.123.8.227 79088 port 15728648 79088 nas_port_type Virtual 79088 remote_ip 5.5.5.250 79091 username asadi 79091 unique_id port 79091 terminate_cause User-Request 79091 bytes_out 275699 79091 bytes_in 9150274 79091 station_ip 83.123.78.40 79091 port 15728670 79091 nas_port_type Virtual 79091 remote_ip 5.5.5.253 79094 username alirezazamani 79094 unique_id port 79094 terminate_cause Lost-Carrier 79094 bytes_out 685557 79094 bytes_in 18724602 79094 station_ip 5.119.18.111 79094 port 15728665 79094 nas_port_type Virtual 79094 remote_ip 5.5.5.241 79096 username ahmadi 79096 unique_id port 79096 terminate_cause User-Request 79096 bytes_out 73934 79096 bytes_in 1347632 79096 station_ip 83.122.56.197 79096 port 15728677 79096 nas_port_type Virtual 79096 remote_ip 5.5.5.234 79105 username forozande 79105 unique_id port 79105 terminate_cause User-Request 79105 bytes_out 70336 79105 bytes_in 1128241 79105 station_ip 37.129.246.253 79105 port 15728686 79105 nas_port_type Virtual 79105 remote_ip 5.5.5.239 79109 username alirezazamani 79109 unique_id port 79109 terminate_cause Lost-Carrier 79109 bytes_out 903847 79109 bytes_in 12849423 79109 station_ip 5.119.18.111 79109 port 15728683 79109 nas_port_type Virtual 79109 remote_ip 5.5.5.231 79124 username soleymani 79124 kill_reason Maximum number of concurrent logins reached 79124 unique_id port 79124 bytes_out 0 79124 bytes_in 0 79124 station_ip 5.119.191.238 79124 port 15728707 79124 nas_port_type Virtual 79130 username ahmadipour 79130 unique_id port 79130 terminate_cause Lost-Carrier 79130 bytes_out 915944 79130 bytes_in 6325473 79130 station_ip 83.122.193.40 79130 port 15728709 79130 nas_port_type Virtual 79130 remote_ip 5.5.5.219 79132 username madadi 79132 unique_id port 79132 terminate_cause Lost-Carrier 79132 bytes_out 42524 79132 bytes_in 169771 79132 station_ip 5.119.233.11 79132 port 15728712 79132 nas_port_type Virtual 79132 remote_ip 5.5.5.217 79134 username zamanialireza 79134 unique_id port 79134 terminate_cause User-Request 79134 bytes_out 2536677 79134 bytes_in 44322864 79134 station_ip 5.119.33.248 79134 port 15728708 79134 nas_port_type Virtual 79134 remote_ip 5.5.5.220 79140 username alirezazamani 79140 kill_reason Wrong password 79140 unique_id port 79140 bytes_out 0 79140 bytes_in 0 79140 station_ip 94.241.181.48 79140 port 15728723 79140 nas_port_type Virtual 79147 username forozande 79115 terminate_cause Lost-Carrier 79115 bytes_out 3583754 79115 bytes_in 39703776 79115 station_ip 5.119.182.149 79115 port 15728689 79115 nas_port_type Virtual 79115 remote_ip 5.5.5.227 79117 username soleymani 79117 kill_reason Maximum number of concurrent logins reached 79117 unique_id port 79117 bytes_out 0 79117 bytes_in 0 79117 station_ip 5.120.182.73 79117 port 15728699 79117 nas_port_type Virtual 79121 username soleymani 79121 kill_reason Maximum number of concurrent logins reached 79121 unique_id port 79121 bytes_out 0 79121 bytes_in 0 79121 station_ip 5.119.194.129 79121 port 15728704 79121 nas_port_type Virtual 79125 username soleymani 79125 kill_reason Maximum number of concurrent logins reached 79125 unique_id port 79125 bytes_out 0 79125 bytes_in 0 79125 station_ip 5.119.191.238 79125 port 15728710 79125 nas_port_type Virtual 79128 username soleymani 79128 unique_id port 79128 terminate_cause Lost-Carrier 79128 bytes_out 74209 79128 bytes_in 228880 79128 station_ip 5.119.149.28 79128 port 15728697 79128 nas_port_type Virtual 79128 remote_ip 5.5.5.222 79131 username alirezazamani 79131 unique_id port 79131 terminate_cause Lost-Carrier 79131 bytes_out 1222083 79131 bytes_in 11009305 79131 station_ip 5.119.18.111 79131 port 15728690 79131 nas_port_type Virtual 79131 remote_ip 5.5.5.231 79133 username alinezhad 79133 unique_id port 79133 terminate_cause User-Request 79133 bytes_out 0 79133 bytes_in 0 79133 station_ip 5.202.26.34 79133 port 15728715 79133 nas_port_type Virtual 79133 remote_ip 5.5.5.249 79136 username soleymani 79136 unique_id port 79136 terminate_cause Lost-Carrier 79136 bytes_out 299947 79136 bytes_in 440509 79136 station_ip 5.119.234.222 79136 port 15728714 79136 nas_port_type Virtual 79136 remote_ip 5.5.5.215 79144 username alirezazamani 79144 unique_id port 79144 terminate_cause Lost-Carrier 79144 bytes_out 96331 79144 bytes_in 1611736 79144 station_ip 94.241.181.48 79144 port 15728725 79144 nas_port_type Virtual 79144 remote_ip 5.5.5.209 79153 username madadi 79153 unique_id port 79153 terminate_cause Lost-Carrier 79153 bytes_out 308318 79153 bytes_in 1464172 79153 station_ip 5.120.150.66 79153 port 15728719 79153 nas_port_type Virtual 79153 remote_ip 5.5.5.212 79155 username soleymani 79155 unique_id port 79155 terminate_cause Lost-Carrier 79155 bytes_out 483166 79155 bytes_in 930955 79155 station_ip 5.119.27.95 79155 port 15728727 79155 nas_port_type Virtual 79155 remote_ip 5.5.5.208 79168 username forozande 79168 unique_id port 79168 terminate_cause User-Request 79168 bytes_out 594768 79168 bytes_in 18805996 79168 station_ip 83.123.20.151 79168 port 15728767 79168 nas_port_type Virtual 79168 remote_ip 5.5.5.193 79169 username soleymani 79169 unique_id port 79169 terminate_cause Lost-Carrier 79169 bytes_out 124030 79169 bytes_in 334077 79169 station_ip 5.120.73.6 79169 port 15728757 79169 nas_port_type Virtual 79169 remote_ip 5.5.5.201 81250 bytes_in 0 81250 station_ip 5.119.30.76 81250 port 14 81250 unique_id port 81250 remote_ip 10.8.0.6 81253 username zamanialireza 81253 unique_id port 81253 terminate_cause Lost-Carrier 81253 bytes_out 889477 79173 username alirezazamani 79173 unique_id port 79173 terminate_cause Lost-Carrier 79173 bytes_out 1135711 79173 bytes_in 569245 79173 station_ip 5.119.18.111 79173 port 15728754 79173 nas_port_type Virtual 79173 remote_ip 5.5.5.231 79176 username asadi 79176 unique_id port 79176 terminate_cause User-Request 79176 bytes_out 36046 79176 bytes_in 99747 79176 station_ip 113.203.16.33 79176 port 15728772 79176 nas_port_type Virtual 79176 remote_ip 5.5.5.197 79178 username aminvpn 79178 unique_id port 79178 terminate_cause User-Request 79123 kill_reason Maximum number of concurrent logins reached 79123 unique_id port 79123 bytes_out 0 79123 bytes_in 0 79123 station_ip 5.119.194.129 79123 port 15728706 79123 nas_port_type Virtual 79127 username soleymani 79127 unique_id port 79127 terminate_cause User-Request 79127 bytes_out 71606 79127 bytes_in 220052 79127 station_ip 5.119.191.238 79127 port 15728711 79127 nas_port_type Virtual 79127 remote_ip 5.5.5.218 79129 username forozande 79129 unique_id port 79129 terminate_cause User-Request 79129 bytes_out 43481 79129 bytes_in 67492 79129 station_ip 83.123.59.164 79129 port 15728713 79129 nas_port_type Virtual 79129 remote_ip 5.5.5.216 79139 username ahmadi 79139 unique_id port 79139 terminate_cause User-Request 79139 bytes_out 30770 79139 bytes_in 230175 79139 station_ip 113.203.61.176 79139 port 15728720 79139 nas_port_type Virtual 79139 remote_ip 5.5.5.211 79142 username soleymani 79142 unique_id port 79142 terminate_cause Lost-Carrier 79142 bytes_out 77043 79142 bytes_in 506380 79142 station_ip 5.119.62.240 79142 port 15728722 79142 nas_port_type Virtual 79142 remote_ip 5.5.5.213 79148 username forozande 79148 unique_id port 79148 terminate_cause User-Request 79148 bytes_out 173767 79148 bytes_in 2299216 79148 station_ip 83.122.41.66 79148 port 15728730 79148 nas_port_type Virtual 79148 remote_ip 5.5.5.207 79151 username hamideh 79151 unique_id port 79151 terminate_cause User-Request 79151 bytes_out 123398 79151 bytes_in 1443777 79151 station_ip 5.119.76.204 79151 port 15728734 79151 nas_port_type Virtual 79151 remote_ip 5.5.5.205 79156 username forozande 79156 unique_id port 79156 terminate_cause User-Request 79156 bytes_out 74221 79156 bytes_in 113127 79156 station_ip 83.122.159.211 79156 port 15728741 79156 nas_port_type Virtual 79156 remote_ip 5.5.5.202 79157 username soleymani 79157 unique_id port 79157 terminate_cause Lost-Carrier 79157 bytes_out 1502843 79157 bytes_in 413229 79157 station_ip 5.119.140.9 79157 port 15728737 79157 nas_port_type Virtual 79157 remote_ip 5.5.5.204 79162 username alinezhad 79162 unique_id port 79162 terminate_cause User-Request 79162 bytes_out 0 79162 bytes_in 0 79162 station_ip 5.202.26.34 79162 port 15728752 79162 nas_port_type Virtual 79162 remote_ip 5.5.5.249 79166 username asadi 79166 unique_id port 79166 terminate_cause User-Request 79166 bytes_out 22472 79166 bytes_in 100580 79166 station_ip 113.203.16.33 79166 port 15728765 79166 nas_port_type Virtual 79166 remote_ip 5.5.5.197 79167 username asadi 79167 unique_id port 79167 terminate_cause User-Request 79167 bytes_out 20728 79167 bytes_in 106720 79167 station_ip 113.203.16.33 79167 port 15728766 79167 nas_port_type Virtual 79167 remote_ip 5.5.5.197 79174 username alirezazamani 79174 unique_id port 79174 terminate_cause User-Request 79174 bytes_out 15505 79174 bytes_in 117846 79174 station_ip 113.203.120.240 79174 port 15728771 79174 nas_port_type Virtual 79174 remote_ip 5.5.5.191 79180 username asadi 79180 unique_id port 79180 terminate_cause User-Request 79180 bytes_out 62736 79180 bytes_in 784549 79180 station_ip 113.203.16.33 79180 port 15728776 79180 nas_port_type Virtual 79180 remote_ip 5.5.5.197 79181 username asadi 79181 unique_id port 79181 terminate_cause User-Request 79181 bytes_out 5795 79181 bytes_in 19671 79181 station_ip 113.203.16.33 79181 port 15728778 79181 nas_port_type Virtual 79181 remote_ip 5.5.5.197 79184 username alirezazamani 79184 unique_id port 79184 terminate_cause Lost-Carrier 79184 bytes_out 1112964 79184 bytes_in 6064072 79184 station_ip 5.119.18.111 79184 port 15728773 79184 nas_port_type Virtual 79184 remote_ip 5.5.5.231 79187 username shahnaz 79135 station_ip 5.119.62.240 79135 port 15728717 79135 nas_port_type Virtual 79135 remote_ip 5.5.5.213 79137 username soleymani 79137 unique_id port 79137 terminate_cause User-Request 79137 bytes_out 0 79137 bytes_in 0 79137 station_ip 5.119.62.240 79137 port 15728718 79137 nas_port_type Virtual 79137 remote_ip 5.5.5.213 79138 username zamanialireza 79138 unique_id port 79138 terminate_cause User-Request 79138 bytes_out 429558 79138 bytes_in 3739686 79138 station_ip 113.203.121.53 79138 port 15728721 79138 nas_port_type Virtual 79138 remote_ip 5.5.5.210 79141 username alirezazamani 79141 kill_reason Wrong password 79141 unique_id port 79141 bytes_out 0 79141 bytes_in 0 79141 station_ip 94.241.181.48 79141 port 15728724 79141 nas_port_type Virtual 79143 username asadi 79143 unique_id port 79143 terminate_cause User-Request 79143 bytes_out 57966 79143 bytes_in 364739 79143 station_ip 83.123.78.40 79143 port 15728726 79143 nas_port_type Virtual 79143 remote_ip 5.5.5.253 79145 username zoha 79145 unique_id port 79145 terminate_cause Lost-Carrier 79145 bytes_out 8006065 79145 bytes_in 268173708 79145 station_ip 5.119.0.236 79145 port 15728702 79145 nas_port_type Virtual 79145 remote_ip 5.5.5.221 79146 username alinezhad 79146 unique_id port 79146 terminate_cause User-Request 79146 bytes_out 0 79146 bytes_in 0 79146 station_ip 5.202.26.34 79146 port 15728728 79146 nas_port_type Virtual 79146 remote_ip 5.5.5.249 79154 username alirezazamani 79154 unique_id port 79154 terminate_cause Lost-Carrier 79154 bytes_out 104310 79154 bytes_in 1771080 79154 station_ip 94.241.181.48 79154 port 15728736 79154 nas_port_type Virtual 79154 remote_ip 5.5.5.209 79158 username forozande 79158 unique_id port 79158 terminate_cause User-Request 79158 bytes_out 10976 79158 bytes_in 48454 79158 station_ip 83.122.159.211 79158 port 15728746 79158 nas_port_type Virtual 79158 remote_ip 5.5.5.202 79159 username soleymani 79159 unique_id port 79159 terminate_cause Lost-Carrier 79159 bytes_out 197790 79159 bytes_in 1139382 79159 station_ip 5.119.184.70 79159 port 15728738 79159 nas_port_type Virtual 79159 remote_ip 5.5.5.203 79161 username hamideh 79161 unique_id port 79161 terminate_cause Lost-Carrier 79161 bytes_out 169635 79161 bytes_in 4521615 79161 station_ip 5.119.76.204 79161 port 15728748 79161 nas_port_type Virtual 79161 remote_ip 5.5.5.205 79163 username alinezhad 79163 unique_id port 79163 terminate_cause User-Request 79163 bytes_out 0 79163 bytes_in 0 79163 station_ip 113.203.85.36 79163 port 15728759 79163 nas_port_type Virtual 79163 remote_ip 5.5.5.198 79165 username asadi 79165 unique_id port 79165 terminate_cause User-Request 79165 bytes_out 34589 79165 bytes_in 206644 79165 station_ip 113.203.16.33 79165 port 15728761 79165 nas_port_type Virtual 79165 remote_ip 5.5.5.197 79170 username asadi 79170 unique_id port 79170 terminate_cause User-Request 79170 bytes_out 64793 79170 bytes_in 273222 79170 station_ip 113.203.16.33 79170 port 15728768 79170 nas_port_type Virtual 79170 remote_ip 5.5.5.197 79172 username asadi 79172 unique_id port 79172 terminate_cause User-Request 79172 bytes_out 39572 79172 bytes_in 180116 79172 station_ip 113.203.16.33 79172 port 15728770 79172 nas_port_type Virtual 79172 remote_ip 5.5.5.197 79185 username alirezazamani 79185 unique_id port 79185 terminate_cause User-Request 79185 bytes_out 98587 79185 bytes_in 273087 79185 station_ip 83.123.175.204 79185 port 15728780 79185 nas_port_type Virtual 79185 remote_ip 5.5.5.186 79195 username madadi 79195 unique_id port 79195 terminate_cause Lost-Carrier 79195 bytes_out 120543 79195 bytes_in 590890 79147 unique_id port 79147 terminate_cause User-Request 79147 bytes_out 240566 79147 bytes_in 182218 79147 station_ip 83.122.41.66 79147 port 15728729 79147 nas_port_type Virtual 79147 remote_ip 5.5.5.207 79149 username forozande 79149 unique_id port 79149 terminate_cause User-Request 79149 bytes_out 171421 79149 bytes_in 1677374 79149 station_ip 83.122.41.66 79149 port 15728731 79149 nas_port_type Virtual 79149 remote_ip 5.5.5.207 79150 username forozande 79150 unique_id port 79150 terminate_cause User-Request 79150 bytes_out 142430 79150 bytes_in 300018 79150 station_ip 83.122.41.66 79150 port 15728732 79150 nas_port_type Virtual 79150 remote_ip 5.5.5.207 79152 username forozande 79152 unique_id port 79152 terminate_cause User-Request 79152 bytes_out 155635 79152 bytes_in 1095547 79152 station_ip 83.122.41.66 79152 port 15728735 79152 nas_port_type Virtual 79152 remote_ip 5.5.5.207 79160 username soleymani 79160 unique_id port 79160 terminate_cause User-Request 79160 bytes_out 72282 79160 bytes_in 188897 79160 station_ip 5.120.73.6 79160 port 15728751 79160 nas_port_type Virtual 79160 remote_ip 5.5.5.201 79164 username asadi 79164 unique_id port 79164 terminate_cause User-Request 79164 bytes_out 101888 79164 bytes_in 323267 79164 station_ip 113.203.16.33 79164 port 15728760 79164 nas_port_type Virtual 79164 remote_ip 5.5.5.197 79175 username soleymani 79175 unique_id port 79175 terminate_cause Lost-Carrier 79175 bytes_out 71276 79175 bytes_in 197596 79175 station_ip 5.119.86.44 79175 port 15728762 79175 nas_port_type Virtual 79175 remote_ip 5.5.5.196 79177 username reza 79177 unique_id port 79177 terminate_cause User-Request 79177 bytes_out 101466 79177 bytes_in 901173 79177 station_ip 37.129.183.133 79177 port 15728769 79177 nas_port_type Virtual 79177 remote_ip 5.5.5.192 79182 username ahmadipour 79182 unique_id port 79182 terminate_cause User-Request 79182 bytes_out 428694 79182 bytes_in 6641441 79182 station_ip 37.129.98.168 79182 port 15728777 79182 nas_port_type Virtual 79182 remote_ip 5.5.5.188 79190 username soleymani 79190 unique_id port 79190 terminate_cause Lost-Carrier 79190 bytes_out 305774 79190 bytes_in 269444 79190 station_ip 5.120.31.16 79190 port 15728782 79190 nas_port_type Virtual 79190 remote_ip 5.5.5.184 79191 username soleymani 79191 unique_id port 79191 terminate_cause User-Request 79191 bytes_out 0 79191 bytes_in 0 79191 station_ip 5.119.108.141 79191 port 15728790 79191 nas_port_type Virtual 79191 remote_ip 5.5.5.177 79192 username alinezhad 79192 unique_id port 79192 terminate_cause User-Request 79192 bytes_out 0 79192 bytes_in 0 79192 station_ip 5.202.26.34 79192 port 15728792 79192 nas_port_type Virtual 79192 remote_ip 5.5.5.249 79194 username soleymani 79194 unique_id port 79194 terminate_cause Lost-Carrier 79194 bytes_out 271332 79194 bytes_in 2976475 79194 station_ip 5.120.137.212 79194 port 15728785 79194 nas_port_type Virtual 79194 remote_ip 5.5.5.182 79197 username alinezhad 79197 unique_id port 79197 terminate_cause User-Request 79197 bytes_out 0 79197 bytes_in 0 79197 station_ip 5.202.26.34 79197 port 15728796 79197 nas_port_type Virtual 79197 remote_ip 5.5.5.249 79200 username alinezhad 79200 unique_id port 79200 terminate_cause User-Request 79200 bytes_out 0 79200 bytes_in 0 79200 station_ip 5.202.26.34 79200 port 15728797 79200 nas_port_type Virtual 79200 remote_ip 5.5.5.249 79206 username alinezhad 79206 unique_id port 79206 terminate_cause User-Request 79206 bytes_out 85909 79206 bytes_in 394176 79206 station_ip 5.202.26.34 79206 port 15728800 79206 nas_port_type Virtual 79206 remote_ip 5.5.5.249 79178 bytes_out 21347216 79178 bytes_in 130736695 79178 station_ip 78.39.27.231 79178 port 15728755 79178 nas_port_type Virtual 79178 remote_ip 5.5.5.200 79179 username alirezazamani 79179 unique_id port 79179 terminate_cause Lost-Carrier 79179 bytes_out 607330 79179 bytes_in 599691 79179 station_ip 5.119.18.111 79179 port 15728763 79179 nas_port_type Virtual 79179 remote_ip 5.5.5.195 79183 username soleymani 79183 unique_id port 79183 terminate_cause Lost-Carrier 79183 bytes_out 401029 79183 bytes_in 938285 79183 station_ip 5.119.83.147 79183 port 15728774 79183 nas_port_type Virtual 79183 remote_ip 5.5.5.190 79186 username forozande 79186 unique_id port 79186 terminate_cause User-Request 79186 bytes_out 482661 79186 bytes_in 15014109 79186 station_ip 83.123.84.2 79186 port 15728781 79186 nas_port_type Virtual 79186 remote_ip 5.5.5.185 79188 username madadi 79188 unique_id port 79188 terminate_cause Lost-Carrier 79188 bytes_out 620475 79188 bytes_in 1044457 79188 station_ip 5.119.10.247 79188 port 15728758 79188 nas_port_type Virtual 79188 remote_ip 5.5.5.199 79189 username soleymani 79189 unique_id port 79189 terminate_cause User-Request 79189 bytes_out 0 79189 bytes_in 0 79189 station_ip 5.120.137.212 79189 port 15728784 79189 nas_port_type Virtual 79189 remote_ip 5.5.5.182 79198 username amirhosein 79198 unique_id port 79198 terminate_cause User-Request 79198 bytes_out 18952965 79198 bytes_in 65310646 79198 station_ip 5.119.113.132 79198 port 15728775 79198 nas_port_type Virtual 79198 remote_ip 5.5.5.189 79201 username reza 79201 unique_id port 79201 terminate_cause User-Request 79201 bytes_out 98111 79201 bytes_in 2498666 79201 station_ip 37.129.191.89 79201 port 15728794 79201 nas_port_type Virtual 79201 remote_ip 5.5.5.180 79207 username soleymani 79207 unique_id port 79207 terminate_cause Lost-Carrier 79207 bytes_out 91519 79207 bytes_in 250479 79207 station_ip 5.119.94.59 79207 port 15728801 79207 nas_port_type Virtual 79207 remote_ip 5.5.5.173 79208 username zamanialireza 79208 unique_id port 79208 terminate_cause User-Request 79208 bytes_out 18711116 79208 bytes_in 275207362 79208 station_ip 5.119.67.25 79208 port 15728788 79208 nas_port_type Virtual 79208 remote_ip 5.5.5.179 79209 username reza 79209 unique_id port 79209 terminate_cause User-Request 79209 bytes_out 10909 79209 bytes_in 64916 79209 station_ip 37.129.191.89 79209 port 15728805 79209 nas_port_type Virtual 79209 remote_ip 5.5.5.180 79214 username shahrooz 79214 unique_id port 79214 terminate_cause Lost-Carrier 79214 bytes_out 1651021 79214 bytes_in 17912159 79214 station_ip 37.129.46.204 79214 port 15728799 79214 nas_port_type Virtual 79214 remote_ip 5.5.5.174 79218 username alirezazamani 79218 unique_id port 79218 terminate_cause Lost-Carrier 79218 bytes_out 119787 79218 bytes_in 801587 79218 station_ip 5.119.18.111 79218 port 15728804 79218 nas_port_type Virtual 79218 remote_ip 5.5.5.195 79219 username reza 79219 unique_id port 79219 terminate_cause User-Request 79219 bytes_out 599973 79219 bytes_in 18028558 79219 station_ip 37.129.191.89 79219 port 15728811 79219 nas_port_type Virtual 79219 remote_ip 5.5.5.180 79225 username reza 79225 unique_id port 79225 terminate_cause User-Request 79225 bytes_out 17655 79225 bytes_in 91544 79225 station_ip 37.129.191.89 79225 port 15728819 79225 nas_port_type Virtual 79225 remote_ip 5.5.5.180 79232 username amin.insta22 79232 unique_id port 79232 terminate_cause Lost-Carrier 79232 bytes_out 3528215 79232 bytes_in 96869202 79232 station_ip 5.120.60.145 79232 port 15728812 79232 nas_port_type Virtual 79232 remote_ip 5.5.5.171 79234 username soleymani 79187 unique_id port 79187 terminate_cause User-Request 79187 bytes_out 188244 79187 bytes_in 1603307 79187 station_ip 5.119.7.162 79187 port 15728779 79187 nas_port_type Virtual 79187 remote_ip 5.5.5.187 79193 username reza 79193 unique_id port 79193 terminate_cause User-Request 79193 bytes_out 226115 79193 bytes_in 1743207 79193 station_ip 37.129.191.89 79193 port 15728787 79193 nas_port_type Virtual 79193 remote_ip 5.5.5.180 79196 username zamanialireza 79196 unique_id port 79196 terminate_cause Lost-Carrier 79196 bytes_out 627160 79196 bytes_in 8477664 79196 station_ip 5.119.213.57 79196 port 15728789 79196 nas_port_type Virtual 79196 remote_ip 5.5.5.178 79199 username soleymani 79199 unique_id port 79199 terminate_cause Lost-Carrier 79199 bytes_out 373155 79199 bytes_in 345659 79199 station_ip 5.119.108.141 79199 port 15728791 79199 nas_port_type Virtual 79199 remote_ip 5.5.5.177 79202 username soleymani 79202 unique_id port 79202 terminate_cause Lost-Carrier 79202 bytes_out 71458 79202 bytes_in 237881 79202 station_ip 5.119.91.100 79202 port 15728795 79202 nas_port_type Virtual 79202 remote_ip 5.5.5.175 79203 username aminvpn 79203 unique_id port 79203 terminate_cause Lost-Carrier 79203 bytes_out 587149 79203 bytes_in 7714731 79203 station_ip 5.119.72.116 79203 port 15728793 79203 nas_port_type Virtual 79203 remote_ip 5.5.5.176 79204 username alirezazamani 79204 unique_id port 79204 terminate_cause Lost-Carrier 79204 bytes_out 423576 79204 bytes_in 6451729 79204 station_ip 5.119.18.111 79204 port 15728798 79204 nas_port_type Virtual 79204 remote_ip 5.5.5.195 79230 username sobhan 79230 unique_id port 79230 terminate_cause Lost-Carrier 79230 bytes_out 3244736 79230 bytes_in 74641758 79230 station_ip 5.119.127.229 79230 port 15728818 79230 nas_port_type Virtual 79230 remote_ip 5.5.5.166 79233 username alinezhad 79233 unique_id port 79233 terminate_cause User-Request 79233 bytes_out 4383 79233 bytes_in 38345 79233 station_ip 5.202.26.34 79233 port 15728856 79233 nas_port_type Virtual 79233 remote_ip 5.5.5.249 79236 username alirezazamani 79236 unique_id port 79236 terminate_cause Lost-Carrier 79236 bytes_out 462635 79236 bytes_in 1416271 79236 station_ip 5.119.18.111 79236 port 15728857 79236 nas_port_type Virtual 79236 remote_ip 5.5.5.160 79243 username aminvpn 79243 mac 79243 bytes_out 0 79243 bytes_in 0 79243 station_ip 5.120.154.73 79243 port 9 79243 unique_id port 79243 remote_ip 10.8.0.6 79245 username zoha 79245 unique_id port 79245 terminate_cause Lost-Carrier 79245 bytes_out 7689729 79245 bytes_in 150180084 79245 station_ip 5.120.131.39 79245 port 15728786 79245 nas_port_type Virtual 79245 remote_ip 5.5.5.181 79248 username reza 79248 unique_id port 79248 terminate_cause User-Request 79248 bytes_out 18368 79248 bytes_in 144297 79248 station_ip 37.129.191.89 79248 port 15728868 79248 nas_port_type Virtual 79248 remote_ip 5.5.5.180 79252 username asadi 79252 unique_id port 79252 terminate_cause User-Request 79252 bytes_out 98063 79252 bytes_in 2497583 79252 station_ip 113.203.16.33 79252 port 15728874 79252 nas_port_type Virtual 79252 remote_ip 5.5.5.197 79253 username soleymani 79253 unique_id port 79253 terminate_cause Lost-Carrier 79253 bytes_out 339512 79253 bytes_in 770935 79253 station_ip 5.119.239.133 79253 port 15728869 79253 nas_port_type Virtual 79253 remote_ip 5.5.5.156 79254 username alinezhad 79254 unique_id port 79254 terminate_cause User-Request 79254 bytes_out 0 79254 bytes_in 0 79254 station_ip 5.202.59.157 79254 port 15728877 79254 nas_port_type Virtual 79254 remote_ip 5.5.5.151 79255 username alinezhad 79195 station_ip 5.120.101.82 79195 port 15728783 79195 nas_port_type Virtual 79195 remote_ip 5.5.5.183 79205 username asadi 79205 unique_id port 79205 terminate_cause User-Request 79205 bytes_out 54130 79205 bytes_in 307380 79205 station_ip 113.203.16.33 79205 port 15728802 79205 nas_port_type Virtual 79205 remote_ip 5.5.5.197 79210 username asadi 79210 unique_id port 79210 terminate_cause User-Request 79210 bytes_out 39625 79210 bytes_in 112335 79210 station_ip 113.203.16.33 79210 port 15728806 79210 nas_port_type Virtual 79210 remote_ip 5.5.5.197 79212 username zamanialireza 79212 unique_id port 79212 terminate_cause User-Request 79212 bytes_out 0 79212 bytes_in 0 79212 station_ip 5.119.213.57 79212 port 15728809 79212 nas_port_type Virtual 79212 remote_ip 5.5.5.178 79215 username amir 79215 unique_id port 79215 terminate_cause Lost-Carrier 79215 bytes_out 15954830 79215 bytes_in 289877927 79215 station_ip 46.225.214.231 79215 port 15728733 79215 nas_port_type Virtual 79215 remote_ip 5.5.5.206 79216 username soleymani 79216 unique_id port 79216 terminate_cause Lost-Carrier 79216 bytes_out 84391 79216 bytes_in 274797 79216 station_ip 5.119.255.36 79216 port 15728808 79216 nas_port_type Virtual 79216 remote_ip 5.5.5.172 79217 username alinezhad 79217 unique_id port 79217 terminate_cause User-Request 79217 bytes_out 0 79217 bytes_in 0 79217 station_ip 5.202.26.34 79217 port 15728815 79217 nas_port_type Virtual 79217 remote_ip 5.5.5.249 79221 username madadi 79221 unique_id port 79221 terminate_cause Lost-Carrier 79221 bytes_out 199986 79221 bytes_in 1266017 79221 station_ip 5.120.45.18 79221 port 15728813 79221 nas_port_type Virtual 79221 remote_ip 5.5.5.170 79224 username amirhosein 79224 unique_id port 79224 terminate_cause User-Request 79224 bytes_out 0 79224 bytes_in 0 79224 station_ip 5.119.113.132 79224 port 15728821 79224 nas_port_type Virtual 79224 remote_ip 5.5.5.189 79226 username arabpour 79226 unique_id port 79226 terminate_cause Lost-Carrier 79226 bytes_out 668629 79226 bytes_in 20611178 79226 station_ip 5.214.12.210 79226 port 15728817 79226 nas_port_type Virtual 79226 remote_ip 5.5.5.167 79227 username reza 79227 unique_id port 79227 terminate_cause User-Request 79227 bytes_out 5116 79227 bytes_in 29681 79227 station_ip 37.129.191.89 79227 port 15728823 79227 nas_port_type Virtual 79227 remote_ip 5.5.5.180 79229 username reza 79229 unique_id port 79229 terminate_cause User-Request 79229 bytes_out 10584 79229 bytes_in 49012 79229 station_ip 37.129.191.89 79229 port 15728848 79229 nas_port_type Virtual 79229 remote_ip 5.5.5.180 79231 username ahmadipour 79231 unique_id port 79231 terminate_cause Lost-Carrier 79231 bytes_out 12071482 79231 bytes_in 12916969 79231 station_ip 37.129.12.160 79231 port 15728847 79231 nas_port_type Virtual 79231 remote_ip 5.5.5.163 79235 username alirezazamani 79235 unique_id port 79235 terminate_cause Lost-Carrier 79235 bytes_out 370594 79235 bytes_in 4342406 79235 station_ip 5.119.18.111 79235 port 15728853 79235 nas_port_type Virtual 79235 remote_ip 5.5.5.195 79258 username alinezhad 79258 unique_id port 79258 terminate_cause User-Request 79258 bytes_out 0 79258 bytes_in 0 79258 station_ip 5.202.59.157 79258 port 15728880 79258 nas_port_type Virtual 79258 remote_ip 5.5.5.151 79260 username soleymani 79260 unique_id port 79260 terminate_cause Lost-Carrier 79260 bytes_out 97661 79260 bytes_in 244870 79260 station_ip 5.119.250.77 79260 port 15728875 79260 nas_port_type Virtual 79260 remote_ip 5.5.5.153 79264 username zamanialireza 79264 unique_id port 79264 terminate_cause User-Request 79264 bytes_out 937127 81251 bytes_in 610051 81251 station_ip 83.122.68.172 81251 port 15728820 81251 nas_port_type Virtual 81251 remote_ip 5.5.5.160 81255 username caferibar 81255 unique_id port 81255 terminate_cause User-Request 79213 username shahnaz 79213 unique_id port 79213 terminate_cause Lost-Carrier 79213 bytes_out 1271555 79213 bytes_in 30300085 79213 station_ip 5.119.7.162 79213 port 15728803 79213 nas_port_type Virtual 79213 remote_ip 5.5.5.187 79220 username soleymani 79220 unique_id port 79220 terminate_cause Lost-Carrier 79220 bytes_out 80049 79220 bytes_in 917128 79220 station_ip 5.119.47.173 79220 port 15728814 79220 nas_port_type Virtual 79220 remote_ip 5.5.5.169 79222 username amirhosein 79222 unique_id port 79222 terminate_cause Lost-Carrier 79222 bytes_out 1223225 79222 bytes_in 34911126 79222 station_ip 5.119.113.132 79222 port 15728810 79222 nas_port_type Virtual 79222 remote_ip 5.5.5.189 79223 username ahmadi 79223 unique_id port 79223 terminate_cause User-Request 79223 bytes_out 75933 79223 bytes_in 1272192 79223 station_ip 113.203.17.160 79223 port 15728820 79223 nas_port_type Virtual 79223 remote_ip 5.5.5.165 79228 username forozande 79228 unique_id port 79228 terminate_cause User-Request 79228 bytes_out 531951 79228 bytes_in 16514309 79228 station_ip 83.122.179.176 79228 port 15728846 79228 nas_port_type Virtual 79228 remote_ip 5.5.5.164 79239 username alinezhad 79239 unique_id port 79239 terminate_cause User-Request 79239 bytes_out 0 79239 bytes_in 0 79239 station_ip 5.202.26.34 79239 port 15728865 79239 nas_port_type Virtual 79239 remote_ip 5.5.5.249 79242 username alirezazamani 79242 unique_id port 79242 terminate_cause Lost-Carrier 79242 bytes_out 239396 79242 bytes_in 2970368 79242 station_ip 5.119.18.111 79242 port 15728858 79242 nas_port_type Virtual 79242 remote_ip 5.5.5.195 79244 username mobina 79244 unique_id port 79244 terminate_cause Lost-Carrier 79244 bytes_out 12132142 79244 bytes_in 257755968 79244 station_ip 5.123.134.32 79244 port 15728694 79244 nas_port_type Virtual 79244 remote_ip 5.5.5.224 79247 username shahrooz 79247 unique_id port 79247 terminate_cause Lost-Carrier 79247 bytes_out 875889 79247 bytes_in 2458832 79247 station_ip 37.129.46.204 79247 port 15728824 79247 nas_port_type Virtual 79247 remote_ip 5.5.5.174 79250 username reza 79250 unique_id port 79250 terminate_cause User-Request 79250 bytes_out 11911 79250 bytes_in 129865 79250 station_ip 37.129.191.89 79250 port 15728871 79250 nas_port_type Virtual 79250 remote_ip 5.5.5.180 79256 username alinezhad 79256 unique_id port 79256 terminate_cause User-Request 79256 bytes_out 0 79256 bytes_in 0 79256 station_ip 5.202.59.157 79256 port 15728879 79256 nas_port_type Virtual 79256 remote_ip 5.5.5.151 79261 username reza 79261 unique_id port 79261 terminate_cause User-Request 79261 bytes_out 32440 79261 bytes_in 481811 79261 station_ip 37.129.191.89 79261 port 15728886 79261 nas_port_type Virtual 79261 remote_ip 5.5.5.180 79262 username forozande 79262 unique_id port 79262 terminate_cause User-Request 79262 bytes_out 69313 79262 bytes_in 667934 79262 station_ip 113.203.121.96 79262 port 15728887 79262 nas_port_type Virtual 79262 remote_ip 5.5.5.149 79263 username alinezhad 79263 unique_id port 79263 terminate_cause User-Request 79263 bytes_out 0 79263 bytes_in 0 79263 station_ip 5.202.59.157 79263 port 15728889 79263 nas_port_type Virtual 79263 remote_ip 5.5.5.151 79281 username mahdi 79281 unique_id port 79281 terminate_cause Lost-Carrier 79281 bytes_out 5654043 79281 bytes_in 217624376 79281 station_ip 5.120.19.0 79281 port 15728854 79281 nas_port_type Virtual 79281 remote_ip 5.5.5.162 79234 unique_id port 79234 terminate_cause Lost-Carrier 79234 bytes_out 69215 79234 bytes_in 462671 79234 station_ip 5.119.137.134 79234 port 15728855 79234 nas_port_type Virtual 79234 remote_ip 5.5.5.161 79237 username forozande 79237 unique_id port 79237 terminate_cause User-Request 79237 bytes_out 461108 79237 bytes_in 13643710 79237 station_ip 83.123.125.198 79237 port 15728859 79237 nas_port_type Virtual 79237 remote_ip 5.5.5.159 79238 username forozande 79238 unique_id port 79238 terminate_cause User-Request 79238 bytes_out 278026 79238 bytes_in 3195248 79238 station_ip 83.123.125.198 79238 port 15728863 79238 nas_port_type Virtual 79238 remote_ip 5.5.5.159 79240 username alinezhad 79240 unique_id port 79240 terminate_cause User-Request 79240 bytes_out 0 79240 bytes_in 0 79240 station_ip 5.202.26.34 79240 port 15728867 79240 nas_port_type Virtual 79240 remote_ip 5.5.5.249 79241 username mobina 79241 unique_id port 79241 terminate_cause User-Request 79241 bytes_out 23279621 79241 bytes_in 29586636 79241 station_ip 5.219.223.180 79241 port 15728816 79241 nas_port_type Virtual 79241 remote_ip 5.5.5.168 79246 username amirhosein 79246 unique_id port 79246 terminate_cause User-Request 79246 bytes_out 7962624 79246 bytes_in 290789807 79246 station_ip 5.119.113.132 79246 port 15728822 79246 nas_port_type Virtual 79246 remote_ip 5.5.5.189 79249 username asadi 79249 unique_id port 79249 terminate_cause User-Request 79249 bytes_out 205021 79249 bytes_in 2190299 79249 station_ip 113.203.16.33 79249 port 15728870 79249 nas_port_type Virtual 79249 remote_ip 5.5.5.197 79251 username madadi 79251 unique_id port 79251 terminate_cause Lost-Carrier 79251 bytes_out 1546528 79251 bytes_in 10984313 79251 station_ip 5.120.57.14 79251 port 15728866 79251 nas_port_type Virtual 79251 remote_ip 5.5.5.157 79257 username mahbobeh 79257 unique_id port 79257 terminate_cause Lost-Carrier 79257 bytes_out 624326 79257 bytes_in 10216029 79257 station_ip 83.122.152.247 79257 port 15728864 79257 nas_port_type Virtual 79257 remote_ip 5.5.5.158 79259 username soleymani 79259 unique_id port 79259 terminate_cause Lost-Carrier 79259 bytes_out 132890 79259 bytes_in 344225 79259 station_ip 5.119.172.45 79259 port 15728873 79259 nas_port_type Virtual 79259 remote_ip 5.5.5.154 79266 username soleymani 79266 unique_id port 79266 terminate_cause Lost-Carrier 79266 bytes_out 887067 79266 bytes_in 563727 79266 station_ip 5.119.180.45 79266 port 15728885 79266 nas_port_type Virtual 79266 remote_ip 5.5.5.150 79269 username alirezazamani 79269 unique_id port 79269 terminate_cause User-Request 79269 bytes_out 681997 79269 bytes_in 11808725 79269 station_ip 5.119.203.156 79269 port 15728876 79269 nas_port_type Virtual 79269 remote_ip 5.5.5.152 79270 username forozande 79270 unique_id port 79270 terminate_cause User-Request 79270 bytes_out 16558 79270 bytes_in 62739 79270 station_ip 37.129.157.87 79270 port 15728895 79270 nas_port_type Virtual 79270 remote_ip 5.5.5.144 79272 username forozande 79272 unique_id port 79272 terminate_cause User-Request 79272 bytes_out 26664 79272 bytes_in 54980 79272 station_ip 37.129.157.87 79272 port 15728897 79272 nas_port_type Virtual 79272 remote_ip 5.5.5.144 79274 username forozande 79274 unique_id port 79274 terminate_cause User-Request 79274 bytes_out 14628 79274 bytes_in 47890 79274 station_ip 37.129.157.87 79274 port 15728900 79274 nas_port_type Virtual 79274 remote_ip 5.5.5.144 79286 username asadi 79286 unique_id port 79286 terminate_cause User-Request 79286 bytes_out 96567 79286 bytes_in 1356492 79286 station_ip 83.122.250.189 79286 port 15728914 79286 nas_port_type Virtual 79255 unique_id port 79255 terminate_cause User-Request 79255 bytes_out 0 79255 bytes_in 0 79255 station_ip 5.202.59.157 79255 port 15728878 79255 nas_port_type Virtual 79255 remote_ip 5.5.5.151 79265 username forozande 79265 unique_id port 79265 terminate_cause User-Request 79265 bytes_out 32747 79265 bytes_in 144321 79265 station_ip 37.129.4.27 79265 port 15728891 79265 nas_port_type Virtual 79265 remote_ip 5.5.5.146 79268 username shahnaz 79268 unique_id port 79268 terminate_cause User-Request 79268 bytes_out 1302002 79268 bytes_in 11306632 79268 station_ip 5.119.244.227 79268 port 15728890 79268 nas_port_type Virtual 79268 remote_ip 5.5.5.147 79273 username forozande 79273 unique_id port 79273 terminate_cause User-Request 79273 bytes_out 38856 79273 bytes_in 290511 79273 station_ip 37.129.157.87 79273 port 15728898 79273 nas_port_type Virtual 79273 remote_ip 5.5.5.144 79279 username ahmadipour 79279 unique_id port 79279 terminate_cause Lost-Carrier 79279 bytes_out 2143647 79279 bytes_in 47488651 79279 station_ip 37.129.11.180 79279 port 15728906 79279 nas_port_type Virtual 79279 remote_ip 5.5.5.138 81252 unique_id port 81252 terminate_cause Lost-Carrier 81252 bytes_out 16659297 81252 bytes_in 659524713 81252 station_ip 46.100.222.213 81252 port 15728796 81252 nas_port_type Virtual 81252 remote_ip 5.5.5.178 81254 username madadi 79285 username ahmadi 79285 unique_id port 79285 terminate_cause User-Request 79285 bytes_out 30854 79285 bytes_in 339363 79285 station_ip 113.203.42.164 79285 port 15728913 79285 nas_port_type Virtual 79285 remote_ip 5.5.5.143 79291 username amin.insta13 79291 unique_id port 79291 terminate_cause User-Request 79291 bytes_out 1534091 79291 bytes_in 9846019 79291 station_ip 46.100.222.160 79291 port 15728915 79291 nas_port_type Virtual 79291 remote_ip 5.5.5.132 79294 username shahrooz 79294 unique_id port 79294 terminate_cause Lost-Carrier 79294 bytes_out 259609 79294 bytes_in 2632481 79294 station_ip 37.129.46.204 79294 port 15728922 79294 nas_port_type Virtual 79294 remote_ip 5.5.5.174 79295 username aminvpn 79295 kill_reason Another user logged on this global unique id 79295 mac 79295 bytes_out 0 79295 bytes_in 0 79295 station_ip 5.120.154.73 79295 port 9 79295 unique_id port 79295 remote_ip 10.8.0.6 79297 username ahmad 79297 unique_id port 79297 terminate_cause User-Request 79297 bytes_out 1108497 79297 bytes_in 19707730 79297 station_ip 86.57.94.70 79297 port 15728911 79297 nas_port_type Virtual 79297 remote_ip 5.5.5.135 79303 username zamanialireza 79303 unique_id port 79303 terminate_cause User-Request 79303 bytes_out 0 79303 bytes_in 0 79303 station_ip 37.129.162.191 79303 port 15728928 79303 nas_port_type Virtual 79303 remote_ip 5.5.5.127 79306 username alirezazamani 79306 unique_id port 79306 terminate_cause Lost-Carrier 79306 bytes_out 396846 79306 bytes_in 12917529 79306 station_ip 5.119.18.111 79306 port 15728926 79306 nas_port_type Virtual 79306 remote_ip 5.5.5.160 79307 username asadi 79307 unique_id port 79307 terminate_cause User-Request 79307 bytes_out 117419 79307 bytes_in 2723301 79307 station_ip 83.122.250.189 79307 port 15728935 79307 nas_port_type Virtual 79307 remote_ip 5.5.5.133 79310 username ahmadipour 79310 unique_id port 79310 terminate_cause Lost-Carrier 79310 bytes_out 491994 79310 bytes_in 6733626 79310 station_ip 37.129.28.152 79310 port 15728937 79310 nas_port_type Virtual 79310 remote_ip 5.5.5.122 79311 username soleymani 79311 unique_id port 79311 terminate_cause Lost-Carrier 79311 bytes_out 110059 79311 bytes_in 391896 79311 station_ip 5.120.162.133 79311 port 15728934 79311 nas_port_type Virtual 79264 bytes_in 21830570 79264 station_ip 5.119.230.12 79264 port 15728888 79264 nas_port_type Virtual 79264 remote_ip 5.5.5.148 79267 username forozande 79267 unique_id port 79267 terminate_cause User-Request 79267 bytes_out 37879 79267 bytes_in 234284 79267 station_ip 37.129.4.27 79267 port 15728892 79267 nas_port_type Virtual 79267 remote_ip 5.5.5.146 79271 username ahmadi 79271 unique_id port 79271 terminate_cause User-Request 79271 bytes_out 78407 79271 bytes_in 839153 79271 station_ip 113.203.42.164 79271 port 15728896 79271 nas_port_type Virtual 79271 remote_ip 5.5.5.143 79275 username shahnaz 79275 unique_id port 79275 terminate_cause User-Request 79275 bytes_out 533385 79275 bytes_in 8972553 79275 station_ip 5.119.244.227 79275 port 15728893 79275 nas_port_type Virtual 79275 remote_ip 5.5.5.147 79276 username soleymani 79276 unique_id port 79276 terminate_cause Lost-Carrier 79276 bytes_out 226321 79276 bytes_in 1378243 79276 station_ip 5.119.214.27 79276 port 15728894 79276 nas_port_type Virtual 79276 remote_ip 5.5.5.145 79277 username soleymani 79277 unique_id port 79277 terminate_cause Lost-Carrier 79277 bytes_out 95054 79277 bytes_in 221740 79277 station_ip 5.119.66.38 79277 port 15728899 79277 nas_port_type Virtual 79277 remote_ip 5.5.5.142 79278 username madadi 79278 unique_id port 79278 terminate_cause Lost-Carrier 79278 bytes_out 577237 79278 bytes_in 1579332 79278 station_ip 5.120.106.185 79278 port 15728872 79278 nas_port_type Virtual 79278 remote_ip 5.5.5.155 79280 username madadi 79280 unique_id port 79280 terminate_cause Lost-Carrier 79280 bytes_out 19975 79280 bytes_in 143493 79280 station_ip 5.120.176.147 79280 port 15728905 79280 nas_port_type Virtual 79280 remote_ip 5.5.5.139 81253 bytes_in 5240615 81253 station_ip 5.134.186.158 81253 port 15728813 81253 nas_port_type Virtual 81253 remote_ip 5.5.5.193 81257 username aminvpn 81257 mac 81257 bytes_out 0 81257 bytes_in 0 79290 username asadi 79290 unique_id port 79290 terminate_cause User-Request 79290 bytes_out 9805 79290 bytes_in 33734 79290 station_ip 83.122.250.189 79290 port 15728919 79290 nas_port_type Virtual 79290 remote_ip 5.5.5.133 79302 username alirezazamani 79302 unique_id port 79302 terminate_cause Lost-Carrier 79302 bytes_out 405979 79302 bytes_in 8939743 79302 station_ip 5.119.18.111 79302 port 15728924 79302 nas_port_type Virtual 79302 remote_ip 5.5.5.130 79304 username zoha 79304 unique_id port 79304 terminate_cause Lost-Carrier 79304 bytes_out 5247086 79304 bytes_in 50547018 79304 station_ip 5.120.131.39 79304 port 15728909 79304 nas_port_type Virtual 79304 remote_ip 5.5.5.181 79308 username amin.insta22 79308 unique_id port 79308 terminate_cause Lost-Carrier 79308 bytes_out 2408 79308 bytes_in 125615 79308 station_ip 5.120.44.143 79308 port 15728931 79308 nas_port_type Virtual 79308 remote_ip 5.5.5.126 79318 username reza2742 79318 unique_id port 79318 terminate_cause User-Request 79318 bytes_out 534055 79318 bytes_in 4824882 79318 station_ip 83.123.109.99 79318 port 15728946 79318 nas_port_type Virtual 79318 remote_ip 5.5.5.116 79321 username amirhosein 79321 unique_id port 79321 terminate_cause Lost-Carrier 79321 bytes_out 630243 79321 bytes_in 10517114 79321 station_ip 5.119.113.132 79321 port 15728942 79321 nas_port_type Virtual 79321 remote_ip 5.5.5.189 79322 username soleymani 79322 unique_id port 79322 terminate_cause User-Request 79322 bytes_out 0 79322 bytes_in 0 79322 station_ip 5.119.163.157 79322 port 15728949 79322 nas_port_type Virtual 79322 remote_ip 5.5.5.114 79323 username ahmadi 79323 unique_id port 79323 terminate_cause User-Request 79283 username reza 79283 unique_id port 79283 terminate_cause User-Request 79283 bytes_out 1862 79283 bytes_in 24134 79283 station_ip 37.129.216.78 79283 port 15728910 79283 nas_port_type Virtual 79283 remote_ip 5.5.5.136 79287 username rashidi 79287 unique_id port 79287 terminate_cause User-Request 79287 bytes_out 5931591 79287 bytes_in 13654899 79287 station_ip 5.119.31.38 79287 port 15728903 79287 nas_port_type Virtual 79287 remote_ip 5.5.5.140 79289 username alirezazamani 79289 unique_id port 79289 terminate_cause User-Request 79289 bytes_out 450730 79289 bytes_in 626725 79289 station_ip 83.123.21.235 79289 port 15728918 79289 nas_port_type Virtual 79289 remote_ip 5.5.5.131 79293 username alirezazamani 79293 unique_id port 79293 terminate_cause User-Request 79293 bytes_out 188744 79293 bytes_in 3160900 79293 station_ip 83.123.21.235 79293 port 15728921 79293 nas_port_type Virtual 79293 remote_ip 5.5.5.131 79296 username aminvpn 79296 kill_reason Another user logged on this global unique id 79296 mac 79296 bytes_out 0 79296 bytes_in 0 79296 station_ip 5.120.154.73 79296 port 9 79296 unique_id port 79298 username alirezazamani 79298 unique_id port 79298 terminate_cause Lost-Carrier 79298 bytes_out 383371 79298 bytes_in 8803946 79298 station_ip 5.119.18.111 79298 port 15728923 79298 nas_port_type Virtual 79298 remote_ip 5.5.5.160 79299 username soleymani 79299 unique_id port 79299 terminate_cause Lost-Carrier 79299 bytes_out 98192 79299 bytes_in 320580 79299 station_ip 5.120.16.68 79299 port 15728925 79299 nas_port_type Virtual 79299 remote_ip 5.5.5.129 79301 username forozande 79301 unique_id port 79301 terminate_cause User-Request 79301 bytes_out 40509 79301 bytes_in 285086 79301 station_ip 113.203.22.20 79301 port 15728927 79301 nas_port_type Virtual 79301 remote_ip 5.5.5.128 79305 username aminvpn 79305 kill_reason Another user logged on this global unique id 79305 mac 79305 bytes_out 0 79305 bytes_in 0 79305 station_ip 5.120.154.73 79305 port 9 79305 unique_id port 79309 username alinezhad 79309 unique_id port 79309 terminate_cause User-Request 79309 bytes_out 51160 79309 bytes_in 302626 79309 station_ip 5.202.59.157 79309 port 15728930 79309 nas_port_type Virtual 79309 remote_ip 5.5.5.151 79312 username haniyeh 79312 unique_id port 79312 terminate_cause User-Request 79312 bytes_out 0 79312 bytes_in 0 79312 station_ip 46.225.209.96 79312 port 15728939 79312 nas_port_type Virtual 79312 remote_ip 5.5.5.120 79315 username haniyeh 79315 unique_id port 79315 terminate_cause User-Request 79315 bytes_out 547903 79315 bytes_in 110619 79315 station_ip 46.225.209.96 79315 port 15728944 79315 nas_port_type Virtual 79315 remote_ip 5.5.5.118 79329 username alirezazamani 79329 unique_id port 79329 terminate_cause User-Request 79329 bytes_out 1286 79329 bytes_in 11974 79329 station_ip 83.123.71.53 79329 port 15728957 79329 nas_port_type Virtual 79329 remote_ip 5.5.5.110 79331 username soleymani 79331 unique_id port 79331 terminate_cause Lost-Carrier 79331 bytes_out 39816 79331 bytes_in 222591 79331 station_ip 5.120.70.77 79331 port 15728955 79331 nas_port_type Virtual 79331 remote_ip 5.5.5.111 79333 username mobina 79333 unique_id port 79333 terminate_cause User-Request 79333 bytes_out 140723380 79333 bytes_in 16420466 79333 station_ip 80.191.145.244 79333 port 15728938 79333 nas_port_type Virtual 79333 remote_ip 5.5.5.121 79341 username asadi 79341 unique_id port 79341 terminate_cause User-Request 79341 bytes_out 0 79341 bytes_in 0 79341 station_ip 83.122.250.189 79341 port 15728974 79341 nas_port_type Virtual 79341 remote_ip 5.5.5.133 79343 username mobina 79286 remote_ip 5.5.5.133 79288 username shahrooz 79288 unique_id port 79288 terminate_cause User-Request 79288 bytes_out 218406 79288 bytes_in 1666728 79288 station_ip 37.129.46.204 79288 port 15728917 79288 nas_port_type Virtual 79288 remote_ip 5.5.5.174 79292 username alirezazamani 79292 unique_id port 79292 terminate_cause User-Request 79292 bytes_out 172031 79292 bytes_in 1668913 79292 station_ip 83.123.21.235 79292 port 15728920 79292 nas_port_type Virtual 79292 remote_ip 5.5.5.131 79300 username madadi 79300 unique_id port 79300 terminate_cause Lost-Carrier 79300 bytes_out 999871 79300 bytes_in 10466667 79300 station_ip 5.119.67.158 79300 port 15728912 79300 nas_port_type Virtual 79300 remote_ip 5.5.5.134 79313 username soleymani 79313 unique_id port 79313 terminate_cause Lost-Carrier 79313 bytes_out 111517 79313 bytes_in 584650 79313 station_ip 5.119.61.162 79313 port 15728936 79313 nas_port_type Virtual 79313 remote_ip 5.5.5.123 79314 username haniyeh 79314 unique_id port 79314 terminate_cause User-Request 79314 bytes_out 0 79314 bytes_in 0 79314 station_ip 46.225.209.96 79314 port 15728940 79314 nas_port_type Virtual 79314 remote_ip 5.5.5.120 79317 username haniyeh 79317 unique_id port 79317 terminate_cause Lost-Carrier 79317 bytes_out 330280 79317 bytes_in 17047707 79317 station_ip 46.225.209.96 79317 port 15728941 79317 nas_port_type Virtual 79317 remote_ip 5.5.5.120 79319 username madadi 79319 unique_id port 79319 terminate_cause Lost-Carrier 79319 bytes_out 11978 79319 bytes_in 135250 79319 station_ip 5.119.204.140 79319 port 15728943 79319 nas_port_type Virtual 79319 remote_ip 5.5.5.119 79334 username asadi 79334 unique_id port 79334 terminate_cause User-Request 79334 bytes_out 83129 79334 bytes_in 752279 79334 station_ip 83.122.250.189 79334 port 15728960 79334 nas_port_type Virtual 79334 remote_ip 5.5.5.133 79337 username arabpour 79337 unique_id port 79337 terminate_cause Lost-Carrier 79337 bytes_out 1215164 79337 bytes_in 39296663 79337 station_ip 5.213.125.244 79337 port 15728953 79337 nas_port_type Virtual 79337 remote_ip 5.5.5.112 79339 username alinezhad 79339 unique_id port 79339 terminate_cause User-Request 79339 bytes_out 0 79339 bytes_in 0 79339 station_ip 5.202.59.157 79339 port 15728970 79339 nas_port_type Virtual 79339 remote_ip 5.5.5.151 79344 username zamanialireza 79344 unique_id port 79344 terminate_cause User-Request 79344 bytes_out 5012580 79344 bytes_in 200831749 79344 station_ip 83.122.69.217 79344 port 15728973 79344 nas_port_type Virtual 79344 remote_ip 5.5.5.104 79358 username zamanialireza 79358 unique_id port 79358 terminate_cause Lost-Carrier 79358 bytes_out 4212922 79358 bytes_in 68372794 79358 station_ip 94.183.213.166 79358 port 15728954 79358 nas_port_type Virtual 79358 remote_ip 5.5.5.117 79361 username madadi 79361 unique_id port 79361 terminate_cause Lost-Carrier 79361 bytes_out 36224 79361 bytes_in 175274 79361 station_ip 5.120.140.108 79361 port 15728989 79361 nas_port_type Virtual 79361 remote_ip 5.5.5.95 79373 username aminvpn 79373 kill_reason Another user logged on this global unique id 79373 mac 79373 bytes_out 0 79373 bytes_in 0 79373 station_ip 5.120.154.73 79373 port 9 79373 unique_id port 79376 username forozande 79376 unique_id port 79376 terminate_cause User-Request 79376 bytes_out 52782 79376 bytes_in 391809 79376 station_ip 113.203.47.199 79376 port 15729005 79376 nas_port_type Virtual 79376 remote_ip 5.5.5.85 79381 username zamanialireza 79381 unique_id port 79381 terminate_cause Lost-Carrier 79381 bytes_out 2615178 79381 bytes_in 46306516 79381 station_ip 89.47.148.26 79381 port 15728965 79311 remote_ip 5.5.5.124 79316 username alirezazamani 79316 unique_id port 79316 terminate_cause Lost-Carrier 79316 bytes_out 348630 79316 bytes_in 1491133 79316 station_ip 5.119.18.111 79316 port 15728929 79316 nas_port_type Virtual 79316 remote_ip 5.5.5.130 79320 username alinezhad 79320 unique_id port 79320 terminate_cause User-Request 79320 bytes_out 0 79320 bytes_in 0 79320 station_ip 5.202.59.157 79320 port 15728947 79320 nas_port_type Virtual 79320 remote_ip 5.5.5.151 79324 username arabpour 79324 unique_id port 79324 terminate_cause User-Request 79324 bytes_out 0 79324 bytes_in 0 79324 station_ip 5.213.125.244 79324 port 15728952 79324 nas_port_type Virtual 79324 remote_ip 5.5.5.112 79326 username zamanialireza 79326 unique_id port 79326 terminate_cause User-Request 79326 bytes_out 14238000 79326 bytes_in 427255728 79326 station_ip 94.183.213.166 79326 port 15728945 79326 nas_port_type Virtual 79326 remote_ip 5.5.5.117 79327 username alirezazamani 79327 unique_id port 79327 terminate_cause User-Request 79327 bytes_out 467664 79327 bytes_in 4267889 79327 station_ip 5.119.203.156 79327 port 15728933 79327 nas_port_type Virtual 79327 remote_ip 5.5.5.152 79336 username mahbobeh 79336 unique_id port 79336 terminate_cause Lost-Carrier 79336 bytes_out 330776 79336 bytes_in 1351859 79336 station_ip 37.129.181.76 79336 port 15728948 79336 nas_port_type Virtual 79336 remote_ip 5.5.5.115 79338 username asadi 79338 unique_id port 79338 terminate_cause User-Request 79338 bytes_out 7030 79338 bytes_in 18634 79338 station_ip 83.122.250.189 79338 port 15728964 79338 nas_port_type Virtual 79338 remote_ip 5.5.5.133 79340 username soleymani 79340 unique_id port 79340 terminate_cause Lost-Carrier 79340 bytes_out 19611 79340 bytes_in 167642 79340 station_ip 5.119.86.189 79340 port 15728963 79340 nas_port_type Virtual 79340 remote_ip 5.5.5.106 79342 username alirezazamani 79342 unique_id port 79342 terminate_cause Lost-Carrier 79342 bytes_out 419811 79342 bytes_in 15713743 79342 station_ip 5.119.18.111 79342 port 15728969 79342 nas_port_type Virtual 79342 remote_ip 5.5.5.130 79345 username zamanialireza 79345 unique_id port 79345 terminate_cause User-Request 79345 bytes_out 37963 79345 bytes_in 95759 79345 station_ip 83.122.69.217 79345 port 15728975 79345 nas_port_type Virtual 79345 remote_ip 5.5.5.104 79348 username zamanialireza 79348 unique_id port 79348 terminate_cause User-Request 79348 bytes_out 542825 79348 bytes_in 9537864 79348 station_ip 31.56.158.246 79348 port 15728980 79348 nas_port_type Virtual 79348 remote_ip 5.5.5.101 79354 username mobina 79354 unique_id port 79354 terminate_cause Lost-Carrier 79354 bytes_out 1131280 79354 bytes_in 18731732 79354 station_ip 5.124.149.136 79354 port 15728982 79354 nas_port_type Virtual 79354 remote_ip 5.5.5.99 79357 username alirezazamani 79357 unique_id port 79357 terminate_cause User-Request 79357 bytes_out 5171267 79357 bytes_in 254944387 79357 station_ip 31.57.143.114 79357 port 15728978 79357 nas_port_type Virtual 79357 remote_ip 5.5.5.103 79359 username zamanialireza 79359 unique_id port 79359 terminate_cause User-Request 79359 bytes_out 6171134 79359 bytes_in 80831944 79359 station_ip 83.122.69.217 79359 port 15728977 79359 nas_port_type Virtual 79359 remote_ip 5.5.5.104 79362 username alinezhad 79362 unique_id port 79362 terminate_cause User-Request 79362 bytes_out 0 79362 bytes_in 0 79362 station_ip 5.202.59.157 79362 port 15728994 79362 nas_port_type Virtual 79362 remote_ip 5.5.5.151 79363 username ahmadi 79363 unique_id port 79363 terminate_cause User-Request 79363 bytes_out 126391 79363 bytes_in 1931127 79363 station_ip 113.203.61.152 79323 bytes_out 1374646 79323 bytes_in 387503 79323 station_ip 113.203.7.172 79323 port 15728951 79323 nas_port_type Virtual 79323 remote_ip 5.5.5.113 79325 username soleymani 79325 unique_id port 79325 terminate_cause Lost-Carrier 79325 bytes_out 280642 79325 bytes_in 1976057 79325 station_ip 5.119.163.157 79325 port 15728950 79325 nas_port_type Virtual 79325 remote_ip 5.5.5.114 79328 username asadi 79328 unique_id port 79328 terminate_cause User-Request 79328 bytes_out 119810 79328 bytes_in 1570525 79328 station_ip 83.122.250.189 79328 port 15728956 79328 nas_port_type Virtual 79328 remote_ip 5.5.5.133 79330 username alinezhad 79330 unique_id port 79330 terminate_cause User-Request 79330 bytes_out 0 79330 bytes_in 0 79330 station_ip 5.202.59.157 79330 port 15728959 79330 nas_port_type Virtual 79330 remote_ip 5.5.5.151 79332 username aminvpn 79332 kill_reason Another user logged on this global unique id 79332 mac 79332 bytes_out 0 79332 bytes_in 0 79332 station_ip 5.120.154.73 79332 port 9 79332 unique_id port 79335 username madadi 79335 unique_id port 79335 terminate_cause Lost-Carrier 79335 bytes_out 13410 79335 bytes_in 142054 79335 station_ip 5.120.162.200 79335 port 15728958 79335 nas_port_type Virtual 79335 remote_ip 5.5.5.109 79346 username asadi 79346 unique_id port 79346 terminate_cause User-Request 79346 bytes_out 44703 79346 bytes_in 156397 79346 station_ip 83.122.250.189 79346 port 15728976 79346 nas_port_type Virtual 79346 remote_ip 5.5.5.133 79347 username amin.insta22 79347 unique_id port 79347 terminate_cause Lost-Carrier 79347 bytes_out 3223087 79347 bytes_in 36362300 79347 station_ip 31.56.220.243 79347 port 15728932 79347 nas_port_type Virtual 79347 remote_ip 5.5.5.125 79349 username zamanialireza 79349 unique_id port 79349 terminate_cause Lost-Carrier 79349 bytes_out 82248 79349 bytes_in 1457291 79349 station_ip 5.120.37.146 79349 port 15728979 79349 nas_port_type Virtual 79349 remote_ip 5.5.5.102 79350 username alirezazamani 79350 unique_id port 79350 terminate_cause Lost-Carrier 79350 bytes_out 89961 79350 bytes_in 1230699 79350 station_ip 5.119.135.166 79350 port 15728981 79350 nas_port_type Virtual 79350 remote_ip 5.5.5.100 79352 username madadi 79352 unique_id port 79352 terminate_cause Lost-Carrier 79352 bytes_out 120925 79352 bytes_in 575400 79352 station_ip 5.120.80.130 79352 port 15728983 79352 nas_port_type Virtual 79352 remote_ip 5.5.5.98 79372 username aminvpn 79372 kill_reason Another user logged on this global unique id 79372 mac 79372 bytes_out 0 79372 bytes_in 0 79372 station_ip 5.120.154.73 79372 port 9 79372 unique_id port 79377 username ahmadi 79377 unique_id port 79377 terminate_cause User-Request 79377 bytes_out 0 79377 bytes_in 0 79377 station_ip 113.203.76.208 79377 port 15729006 79377 nas_port_type Virtual 79377 remote_ip 5.5.5.84 79379 username alinezhad 79379 unique_id port 79379 terminate_cause User-Request 79379 bytes_out 0 79379 bytes_in 0 79379 station_ip 5.202.59.157 79379 port 15729012 79379 nas_port_type Virtual 79379 remote_ip 5.5.5.151 79380 username alirezazamani 79380 unique_id port 79380 terminate_cause User-Request 79380 bytes_out 21049718 79380 bytes_in 66471217 79380 station_ip 31.57.143.114 79380 port 15728991 79380 nas_port_type Virtual 79380 remote_ip 5.5.5.103 79387 username hamideh 79387 unique_id port 79387 terminate_cause Lost-Carrier 79387 bytes_out 366843 79387 bytes_in 796452 79387 station_ip 5.120.125.33 79387 port 15729013 79387 nas_port_type Virtual 79387 remote_ip 5.5.5.80 79390 username alinezhad 79390 unique_id port 79390 terminate_cause User-Request 79390 bytes_out 8662 79343 unique_id port 79343 terminate_cause Lost-Carrier 79343 bytes_out 14972167 79343 bytes_in 374958244 79343 station_ip 5.124.36.175 79343 port 15728901 79343 nas_port_type Virtual 79343 remote_ip 5.5.5.141 79351 username alinezhad 79351 unique_id port 79351 terminate_cause User-Request 79351 bytes_out 0 79351 bytes_in 0 79351 station_ip 5.202.59.157 79351 port 15728985 79351 nas_port_type Virtual 79351 remote_ip 5.5.5.151 79353 username alirezazamani 79353 unique_id port 79353 terminate_cause User-Request 79353 bytes_out 19425 79353 bytes_in 25459 79353 station_ip 5.119.135.166 79353 port 15728987 79353 nas_port_type Virtual 79353 remote_ip 5.5.5.100 79355 username madadi 79355 unique_id port 79355 terminate_cause Lost-Carrier 79355 bytes_out 130522 79355 bytes_in 683474 79355 station_ip 5.119.54.224 79355 port 15728986 79355 nas_port_type Virtual 79355 remote_ip 5.5.5.96 79356 username alirezazamani 79356 unique_id port 79356 terminate_cause Lost-Carrier 79356 bytes_out 251536 79356 bytes_in 646331 79356 station_ip 5.119.135.166 79356 port 15728984 79356 nas_port_type Virtual 79356 remote_ip 5.5.5.97 79360 username ahmadipour 79360 unique_id port 79360 terminate_cause Lost-Carrier 79360 bytes_out 904770 79360 bytes_in 19267891 79360 station_ip 37.129.43.228 79360 port 15728990 79360 nas_port_type Virtual 79360 remote_ip 5.5.5.94 79364 username alirezazamani 79364 unique_id port 79364 terminate_cause Lost-Carrier 79364 bytes_out 252140 79364 bytes_in 6801650 79364 station_ip 5.119.135.166 79364 port 15728988 79364 nas_port_type Virtual 79364 remote_ip 5.5.5.100 79365 username madadi 79365 unique_id port 79365 terminate_cause Lost-Carrier 79365 bytes_out 9871 79365 bytes_in 131918 79365 station_ip 5.119.188.243 79365 port 15728993 79365 nas_port_type Virtual 79365 remote_ip 5.5.5.92 79366 username alinezhad 79366 unique_id port 79366 terminate_cause User-Request 79366 bytes_out 0 79366 bytes_in 0 79366 station_ip 5.202.59.157 79366 port 15728998 79366 nas_port_type Virtual 79366 remote_ip 5.5.5.151 79367 username zamanialireza 79367 unique_id port 79367 terminate_cause User-Request 79367 bytes_out 5152987 79367 bytes_in 14143550 79367 station_ip 83.122.48.209 79367 port 15728992 79367 nas_port_type Virtual 79367 remote_ip 5.5.5.93 79383 username reza 79383 unique_id port 79383 terminate_cause User-Request 79383 bytes_out 1344439 79383 bytes_in 1711011 79383 station_ip 37.129.75.171 79383 port 15729010 79383 nas_port_type Virtual 79383 remote_ip 5.5.5.90 79384 username iranmanesh 79384 unique_id port 79384 terminate_cause User-Request 79384 bytes_out 48221 79384 bytes_in 248569 79384 station_ip 83.123.131.22 79384 port 15729014 79384 nas_port_type Virtual 79384 remote_ip 5.5.5.79 79386 username alirezazamani 79386 unique_id port 79386 terminate_cause User-Request 79386 bytes_out 113157 79386 bytes_in 660858 79386 station_ip 37.129.198.174 79386 port 15729016 79386 nas_port_type Virtual 79386 remote_ip 5.5.5.78 79388 username iranmanesh 79388 unique_id port 79388 terminate_cause User-Request 79388 bytes_out 2112054 79388 bytes_in 133833 79388 station_ip 83.123.131.22 79388 port 15729017 79388 nas_port_type Virtual 79388 remote_ip 5.5.5.79 79395 username forozande 79395 unique_id port 79395 terminate_cause User-Request 79395 bytes_out 43640 79395 bytes_in 82627 79395 station_ip 83.123.75.1 79395 port 15729024 79395 nas_port_type Virtual 79395 remote_ip 5.5.5.74 79408 username alirezazamani 79408 unique_id port 79408 terminate_cause Lost-Carrier 79408 bytes_out 275969 79408 bytes_in 10078766 79408 station_ip 5.119.135.166 79408 port 15729033 79408 nas_port_type Virtual 79363 port 15728995 79363 nas_port_type Virtual 79363 remote_ip 5.5.5.91 79368 username soleymani 79368 unique_id port 79368 terminate_cause Lost-Carrier 79368 bytes_out 68136 79368 bytes_in 440544 79368 station_ip 5.119.87.219 79368 port 15728999 79368 nas_port_type Virtual 79368 remote_ip 5.5.5.89 79369 username mobina 79369 unique_id port 79369 terminate_cause Lost-Carrier 79369 bytes_out 1162955 79369 bytes_in 23416054 79369 station_ip 5.124.190.94 79369 port 15729001 79369 nas_port_type Virtual 79369 remote_ip 5.5.5.88 79370 username aminvpn 79370 kill_reason Another user logged on this global unique id 79370 mac 79370 bytes_out 0 79370 bytes_in 0 79370 station_ip 5.120.154.73 79370 port 9 79370 unique_id port 79371 username forozande 79371 unique_id port 79371 terminate_cause User-Request 79371 bytes_out 45147 79371 bytes_in 330289 79371 station_ip 37.129.107.32 79371 port 15729002 79371 nas_port_type Virtual 79371 remote_ip 5.5.5.87 79374 username alinezhad 79374 unique_id port 79374 terminate_cause User-Request 79374 bytes_out 200078 79374 bytes_in 790331 79374 station_ip 5.202.59.157 79374 port 15729000 79374 nas_port_type Virtual 79374 remote_ip 5.5.5.151 79375 username reza 79375 unique_id port 79375 terminate_cause User-Request 79375 bytes_out 77486 79375 bytes_in 2135290 79375 station_ip 37.129.75.171 79375 port 15728996 79375 nas_port_type Virtual 79375 remote_ip 5.5.5.90 79378 username aminvpn 79378 kill_reason Another user logged on this global unique id 79378 mac 79378 bytes_out 0 79378 bytes_in 0 79378 station_ip 5.120.154.73 79378 port 9 79378 unique_id port 79382 username ahmad 79382 unique_id port 79382 terminate_cause User-Request 79382 bytes_out 1654197 79382 bytes_in 14398430 79382 station_ip 86.57.94.70 79382 port 15728997 79382 nas_port_type Virtual 79382 remote_ip 5.5.5.135 79385 username asadi 79385 unique_id port 79385 terminate_cause User-Request 79385 bytes_out 54567 79385 bytes_in 257069 79385 station_ip 83.122.250.189 79385 port 15729015 79385 nas_port_type Virtual 79385 remote_ip 5.5.5.133 79391 username shahnaz 79391 unique_id port 79391 terminate_cause User-Request 79391 bytes_out 920833 79391 bytes_in 20008736 79391 station_ip 5.119.32.106 79391 port 15729011 79391 nas_port_type Virtual 79391 remote_ip 5.5.5.81 79392 username abdilahyar 79392 unique_id port 79392 terminate_cause Lost-Carrier 79392 bytes_out 2673317 79392 bytes_in 43920953 79392 station_ip 5.119.28.173 79392 port 15728961 79392 nas_port_type Virtual 79392 remote_ip 5.5.5.108 79394 username hamideh 79394 unique_id port 79394 terminate_cause Lost-Carrier 79394 bytes_out 14400 79394 bytes_in 139702 79394 station_ip 5.119.232.78 79394 port 15729019 79394 nas_port_type Virtual 79394 remote_ip 5.5.5.76 79397 username amirhosein 79397 unique_id port 79397 terminate_cause Lost-Carrier 79397 bytes_out 135714 79397 bytes_in 1479754 79397 station_ip 5.119.113.132 79397 port 15729009 79397 nas_port_type Virtual 79397 remote_ip 5.5.5.189 79400 username alirezazamani 79400 unique_id port 79400 terminate_cause Lost-Carrier 79400 bytes_out 613393 79400 bytes_in 3657074 79400 station_ip 5.119.135.166 79400 port 15729021 79400 nas_port_type Virtual 79400 remote_ip 5.5.5.97 79402 username ahmadi 79402 unique_id port 79402 terminate_cause User-Request 79402 bytes_out 0 79402 bytes_in 0 79402 station_ip 113.203.95.132 79402 port 15729030 79402 nas_port_type Virtual 79402 remote_ip 5.5.5.69 79407 username mobina 79407 unique_id port 79407 terminate_cause User-Request 79407 bytes_out 207502 79407 bytes_in 1566352 79407 station_ip 5.123.245.3 79407 port 15729034 79381 nas_port_type Virtual 79381 remote_ip 5.5.5.105 79389 username aminvpn 79389 mac 79389 bytes_out 0 79389 bytes_in 0 79389 station_ip 5.120.154.73 79389 port 9 79389 unique_id port 79393 username soleymani 79393 unique_id port 79393 terminate_cause Lost-Carrier 79393 bytes_out 89510 79393 bytes_in 226246 79393 station_ip 5.120.90.77 79393 port 15729018 79393 nas_port_type Virtual 79393 remote_ip 5.5.5.77 79396 username shahrooz 79396 unique_id port 79396 terminate_cause Lost-Carrier 79396 bytes_out 3613669 79396 bytes_in 49930361 79396 station_ip 37.129.46.204 79396 port 15729004 79396 nas_port_type Virtual 79396 remote_ip 5.5.5.174 79403 username ahmadi 79403 unique_id port 79403 terminate_cause User-Request 79403 bytes_out 10431 79403 bytes_in 31568 79403 station_ip 113.203.95.132 79403 port 15729032 79403 nas_port_type Virtual 79403 remote_ip 5.5.5.69 81254 unique_id port 81254 terminate_cause Lost-Carrier 81254 bytes_out 424864 81254 bytes_in 819227 81254 station_ip 5.120.168.204 81254 port 15728811 81254 nas_port_type Virtual 81254 remote_ip 5.5.5.165 81259 username aminvpn 79406 username alirezazamani 79406 unique_id port 79406 terminate_cause Lost-Carrier 79406 bytes_out 417724 79406 bytes_in 6343802 79406 station_ip 5.119.135.166 79406 port 15729026 79406 nas_port_type Virtual 79406 remote_ip 5.5.5.72 79409 username rashidi 79409 unique_id port 79409 terminate_cause User-Request 79409 bytes_out 4305396 79409 bytes_in 13064298 79409 station_ip 5.119.182.252 79409 port 15729025 79409 nas_port_type Virtual 79409 remote_ip 5.5.5.73 79410 username alinezhad 79410 unique_id port 79410 terminate_cause User-Request 79410 bytes_out 0 79410 bytes_in 0 79410 station_ip 83.122.45.220 79410 port 15729038 79410 nas_port_type Virtual 79410 remote_ip 5.5.5.64 79412 username soleymani 79412 unique_id port 79412 terminate_cause Lost-Carrier 79412 bytes_out 141761 79412 bytes_in 608369 79412 station_ip 5.119.164.170 79412 port 15729036 79412 nas_port_type Virtual 79412 remote_ip 5.5.5.66 79420 username mobina 79420 unique_id port 79420 terminate_cause Lost-Carrier 79420 bytes_out 263026 79420 bytes_in 4553347 79420 station_ip 5.123.245.3 79420 port 15729042 79420 nas_port_type Virtual 79420 remote_ip 5.5.5.68 79423 username soleymani 79423 unique_id port 79423 terminate_cause Lost-Carrier 79423 bytes_out 22776 79423 bytes_in 153883 79423 station_ip 5.120.5.230 79423 port 15729045 79423 nas_port_type Virtual 79423 remote_ip 5.5.5.60 79425 username soleymani 79425 unique_id port 79425 terminate_cause Lost-Carrier 79425 bytes_out 15899 79425 bytes_in 138392 79425 station_ip 5.119.67.6 79425 port 15729046 79425 nas_port_type Virtual 79425 remote_ip 5.5.5.59 79430 username zoha 79430 kill_reason Maximum number of concurrent logins reached 79430 unique_id port 79430 bytes_out 0 79430 bytes_in 0 79430 station_ip 5.120.177.28 79430 port 15729053 79430 nas_port_type Virtual 79432 username zoha 79432 unique_id port 79432 terminate_cause Lost-Carrier 79432 bytes_out 115330 79432 bytes_in 1456136 79432 station_ip 5.119.1.31 79432 port 15729049 79432 nas_port_type Virtual 79432 remote_ip 5.5.5.57 79434 username madadi 79434 unique_id port 79434 terminate_cause Lost-Carrier 79434 bytes_out 28173 79434 bytes_in 227370 79434 station_ip 5.120.101.205 79434 port 15729055 79434 nas_port_type Virtual 79434 remote_ip 5.5.5.55 79438 username alirezazamani 79438 unique_id port 79438 terminate_cause Lost-Carrier 79438 bytes_out 617423 79438 bytes_in 16242379 79438 station_ip 5.119.135.166 79438 port 15729058 79438 nas_port_type Virtual 79438 remote_ip 5.5.5.72 81259 mac 79390 bytes_in 17599 79390 station_ip 5.202.59.157 79390 port 15729020 79390 nas_port_type Virtual 79390 remote_ip 5.5.5.151 79398 username alinezhad 79398 unique_id port 79398 terminate_cause User-Request 79398 bytes_out 11778 79398 bytes_in 23331 79398 station_ip 37.129.198.126 79398 port 15729027 79398 nas_port_type Virtual 79398 remote_ip 5.5.5.71 79399 username zamanialireza 79399 unique_id port 79399 terminate_cause User-Request 79399 bytes_out 1573883 79399 bytes_in 46516465 79399 station_ip 37.137.22.169 79399 port 15729022 79399 nas_port_type Virtual 79399 remote_ip 5.5.5.75 79401 username mahbobeh 79401 unique_id port 79401 terminate_cause Lost-Carrier 79401 bytes_out 7055575 79401 bytes_in 112010682 79401 station_ip 37.129.194.84 79401 port 15729008 79401 nas_port_type Virtual 79401 remote_ip 5.5.5.82 79405 username aminvpn 79405 mac 79405 bytes_out 1265156 79405 bytes_in 4680716 79405 station_ip 5.120.154.73 79405 port 9 79405 unique_id port 79405 remote_ip 10.8.0.6 79415 username mobina 79415 unique_id port 79415 terminate_cause User-Request 79415 bytes_out 3127954 79415 bytes_in 49240203 79415 station_ip 151.234.166.5 79415 port 15729035 79415 nas_port_type Virtual 79415 remote_ip 5.5.5.67 79416 username zamanialireza 79416 unique_id port 79416 terminate_cause User-Request 79416 bytes_out 0 79416 bytes_in 0 79416 station_ip 37.129.224.27 79416 port 15729041 79416 nas_port_type Virtual 79416 remote_ip 5.5.5.62 79417 username zamanialireza 79417 unique_id port 79417 terminate_cause User-Request 79417 bytes_out 0 79417 bytes_in 0 79417 station_ip 83.122.48.209 79417 port 15729043 79417 nas_port_type Virtual 79417 remote_ip 5.5.5.93 79421 username alinezhad 79421 unique_id port 79421 terminate_cause User-Request 79421 bytes_out 0 79421 bytes_in 0 79421 station_ip 83.122.235.150 79421 port 15729044 79421 nas_port_type Virtual 79421 remote_ip 5.5.5.61 79428 username zoha 79428 kill_reason Maximum number of concurrent logins reached 79428 unique_id port 79428 bytes_out 0 79428 bytes_in 0 79428 station_ip 5.120.177.28 79428 port 15729051 79428 nas_port_type Virtual 81255 bytes_out 360704 81255 bytes_in 844141 81255 station_ip 5.119.247.154 81255 port 15728821 81255 nas_port_type Virtual 81255 remote_ip 5.5.5.159 81263 username forozande 81263 unique_id port 81263 terminate_cause User-Request 79439 username zamanialireza 79439 unique_id port 79439 terminate_cause User-Request 79439 bytes_out 3958759 79439 bytes_in 21584062 79439 station_ip 83.122.48.209 79439 port 15729061 79439 nas_port_type Virtual 79439 remote_ip 5.5.5.93 79443 unique_id port 79443 terminate_cause Lost-Carrier 79443 bytes_out 21556709 79443 bytes_in 562335198 79443 station_ip 5.119.230.12 79443 port 15729057 79443 nas_port_type Virtual 79443 remote_ip 5.5.5.148 79444 username shahrooz 79444 unique_id port 79444 terminate_cause Lost-Carrier 79444 bytes_out 18880608 79444 bytes_in 516906641 79444 station_ip 37.129.43.116 79444 port 15729063 79444 nas_port_type Virtual 79444 remote_ip 5.5.5.53 79445 username majid 79445 unique_id port 79445 terminate_cause User-Request 79445 bytes_out 8126649 79445 bytes_in 248033120 79445 station_ip 86.57.9.165 79445 port 15729064 79445 nas_port_type Virtual 79445 remote_ip 5.5.5.52 79451 username asadi 79451 unique_id port 79451 terminate_cause User-Request 79451 bytes_out 315812 79451 bytes_in 8424285 79451 station_ip 83.122.215.41 79451 port 15729072 79451 nas_port_type Virtual 79451 remote_ip 5.5.5.45 79453 username asadi 79453 unique_id port 79453 terminate_cause User-Request 79453 bytes_out 318030 79453 bytes_in 6974939 79453 station_ip 83.122.215.41 79407 nas_port_type Virtual 79407 remote_ip 5.5.5.68 79411 username mahdi 79411 unique_id port 79411 terminate_cause Lost-Carrier 79411 bytes_out 1355423 79411 bytes_in 38179385 79411 station_ip 5.120.136.90 79411 port 15729029 79411 nas_port_type Virtual 79411 remote_ip 5.5.5.70 79418 username soleymani 79418 unique_id port 79418 terminate_cause Lost-Carrier 79418 bytes_out 103648 79418 bytes_in 309349 79418 station_ip 5.119.244.135 79418 port 15729037 79418 nas_port_type Virtual 79418 remote_ip 5.5.5.65 79419 username shahnaz 79419 unique_id port 79419 terminate_cause User-Request 79419 bytes_out 3124119 79419 bytes_in 73538767 79419 station_ip 5.119.32.106 79419 port 15729028 79419 nas_port_type Virtual 79419 remote_ip 5.5.5.81 79424 username mahbobeh 79424 unique_id port 79424 terminate_cause Lost-Carrier 79424 bytes_out 901018 79424 bytes_in 12939527 79424 station_ip 37.129.194.84 79424 port 15729031 79424 nas_port_type Virtual 79424 remote_ip 5.5.5.82 79426 username madadi 79426 unique_id port 79426 terminate_cause Lost-Carrier 79426 bytes_out 2455110 79426 bytes_in 5246298 79426 station_ip 5.119.11.140 79426 port 15729007 79426 nas_port_type Virtual 79426 remote_ip 5.5.5.83 79435 username alirezazamani 79435 unique_id port 79435 terminate_cause Lost-Carrier 79435 bytes_out 9737480 79435 bytes_in 141692797 79435 station_ip 5.119.210.234 79435 port 15729047 79435 nas_port_type Virtual 79435 remote_ip 5.5.5.58 79436 username zoha 79436 unique_id port 79436 terminate_cause Lost-Carrier 79436 bytes_out 1004177 79436 bytes_in 9130637 79436 station_ip 5.120.177.28 79436 port 15729054 79436 nas_port_type Virtual 79436 remote_ip 5.5.5.56 79437 username zamanialireza 79437 unique_id port 79437 terminate_cause User-Request 79437 bytes_out 954095 79437 bytes_in 20876809 79437 station_ip 83.122.48.209 79437 port 15729060 79437 nas_port_type Virtual 79437 remote_ip 5.5.5.93 79442 username alirezazamani 79442 unique_id port 79442 terminate_cause Lost-Carrier 79442 bytes_out 508746 79442 bytes_in 8408853 79442 station_ip 5.119.135.166 79442 port 15729059 79442 nas_port_type Virtual 79442 remote_ip 5.5.5.54 79446 username mobina 79446 unique_id port 79446 terminate_cause Lost-Carrier 79446 bytes_out 135085 79446 bytes_in 626643 79446 station_ip 5.124.105.53 79446 port 15729065 79446 nas_port_type Virtual 79446 remote_ip 5.5.5.51 79447 username ahmadi 79447 unique_id port 79447 terminate_cause User-Request 79447 bytes_out 0 79447 bytes_in 0 79447 station_ip 113.203.4.100 79447 port 15729066 79447 nas_port_type Virtual 79447 remote_ip 5.5.5.50 79457 username asadi 79457 unique_id port 79457 terminate_cause User-Request 79457 bytes_out 218277 79457 bytes_in 4382911 79457 station_ip 83.122.215.41 79457 port 15728642 79457 nas_port_type Virtual 79457 remote_ip 5.5.5.255 79459 username alinezhad 79459 unique_id port 79459 terminate_cause User-Request 79459 bytes_out 0 79459 bytes_in 0 79459 station_ip 5.202.10.250 79459 port 15728649 79459 nas_port_type Virtual 79459 remote_ip 5.5.5.251 79461 username madadi 79461 unique_id port 79461 terminate_cause Lost-Carrier 79461 bytes_out 60526 79461 bytes_in 462351 79461 station_ip 5.119.94.159 79461 port 15728648 79461 nas_port_type Virtual 79461 remote_ip 5.5.5.252 79462 username madadi 79462 unique_id port 79462 terminate_cause Lost-Carrier 79462 bytes_out 102114 79462 bytes_in 344258 79462 station_ip 5.120.75.151 79462 port 15728651 79462 nas_port_type Virtual 79462 remote_ip 5.5.5.250 79464 username alinezhad 79464 unique_id port 79464 terminate_cause User-Request 79464 bytes_out 21127 79464 bytes_in 74317 79464 station_ip 5.202.10.250 79408 remote_ip 5.5.5.97 79413 username zamanialireza 79413 unique_id port 79413 terminate_cause Lost-Carrier 79413 bytes_out 746214 79413 bytes_in 13406828 79413 station_ip 94.183.213.166 79413 port 15729023 79413 nas_port_type Virtual 79413 remote_ip 5.5.5.117 79414 username zamanialireza 79414 unique_id port 79414 terminate_cause User-Request 79414 bytes_out 109569 79414 bytes_in 211581 79414 station_ip 37.129.224.27 79414 port 15729040 79414 nas_port_type Virtual 79414 remote_ip 5.5.5.62 79422 username soleymani 79422 unique_id port 79422 terminate_cause Lost-Carrier 79422 bytes_out 204360 79422 bytes_in 1753785 79422 station_ip 5.119.168.120 79422 port 15729039 79422 nas_port_type Virtual 79422 remote_ip 5.5.5.63 79427 username zoha 79427 kill_reason Maximum number of concurrent logins reached 79427 unique_id port 79427 bytes_out 0 79427 bytes_in 0 79427 station_ip 5.120.177.28 79427 port 15729050 79427 nas_port_type Virtual 79429 username zoha 79429 kill_reason Maximum number of concurrent logins reached 79429 unique_id port 79429 bytes_out 0 79429 bytes_in 0 79429 station_ip 5.120.177.28 79429 port 15729052 79429 nas_port_type Virtual 79431 username zoha 79431 unique_id port 79431 terminate_cause Lost-Carrier 79431 bytes_out 45274558 79431 bytes_in 90017510 79431 station_ip 5.119.1.31 79431 port 15729003 79431 nas_port_type Virtual 79431 remote_ip 5.5.5.86 79441 username amirhosein 79441 unique_id port 79441 terminate_cause Lost-Carrier 79441 bytes_out 9447529 79441 bytes_in 320374167 79441 station_ip 5.119.113.132 79441 port 15729056 79441 nas_port_type Virtual 79441 remote_ip 5.5.5.189 79448 username alirezazamani 79448 unique_id port 79448 terminate_cause User-Request 79448 bytes_out 231417 79448 bytes_in 1867102 79448 station_ip 83.123.89.55 79448 port 15729068 79448 nas_port_type Virtual 79448 remote_ip 5.5.5.48 79449 username alinezhad 79449 unique_id port 79449 terminate_cause User-Request 79449 bytes_out 78229 79449 bytes_in 370717 79449 station_ip 37.129.170.246 79449 port 15729069 79449 nas_port_type Virtual 79449 remote_ip 5.5.5.47 79452 username asadi 79452 unique_id port 79452 terminate_cause User-Request 79452 bytes_out 175432 79452 bytes_in 4144752 79452 station_ip 83.122.215.41 79452 port 15729073 79452 nas_port_type Virtual 79452 remote_ip 5.5.5.45 79455 username mobina 79455 unique_id port 79455 terminate_cause Admin-Reboot 79455 bytes_out 6593397 79455 bytes_in 281666619 79455 station_ip 5.123.103.241 79455 port 15729067 79455 nas_port_type Virtual 79455 remote_ip 5.5.5.49 79467 username forozande 79467 unique_id port 79467 terminate_cause User-Request 79467 bytes_out 28154 79467 bytes_in 152598 79467 station_ip 113.203.108.129 79467 port 15728657 79467 nas_port_type Virtual 79467 remote_ip 5.5.5.246 79469 username zamanialireza 79469 unique_id port 79469 terminate_cause User-Request 79469 bytes_out 405910 79469 bytes_in 5634515 79469 station_ip 5.119.60.144 79469 port 15728659 79469 nas_port_type Virtual 79469 remote_ip 5.5.5.248 79471 username alinezhad 79471 unique_id port 79471 terminate_cause User-Request 79471 bytes_out 0 79471 bytes_in 0 79471 station_ip 5.202.10.250 79471 port 15728663 79471 nas_port_type Virtual 79471 remote_ip 5.5.5.251 79475 username alirezazamani 79475 unique_id port 79475 terminate_cause User-Request 79475 bytes_out 136436 79475 bytes_in 329778 79475 station_ip 113.203.98.99 79475 port 15728669 79475 nas_port_type Virtual 79475 remote_ip 5.5.5.240 79479 username soleymani 79479 unique_id port 79479 terminate_cause Lost-Carrier 79479 bytes_out 237850 79479 bytes_in 727474 79479 station_ip 5.120.157.92 79479 port 15728665 79479 nas_port_type Virtual 79440 username zamanialireza 79440 kill_reason Maximum check online fails reached 79440 unique_id port 79440 bytes_out 3258971 79440 bytes_in 17894385 79440 station_ip 83.122.48.209 79440 port 15729062 79440 nas_port_type Virtual 79440 remote_ip 5.5.5.93 79450 username alinezhad 79450 unique_id port 79450 terminate_cause User-Request 79450 bytes_out 0 79450 bytes_in 0 79450 station_ip 5.202.10.250 79450 port 15729070 79450 nas_port_type Virtual 79450 remote_ip 5.5.5.46 79460 username asadi 79460 unique_id port 79460 terminate_cause User-Request 79460 bytes_out 166020 79460 bytes_in 1219185 79460 station_ip 83.122.215.41 79460 port 15728650 79460 nas_port_type Virtual 79460 remote_ip 5.5.5.255 79465 username forozande 79465 unique_id port 79465 terminate_cause User-Request 79465 bytes_out 109922 79465 bytes_in 192371 79465 station_ip 113.203.57.253 79465 port 15728656 79465 nas_port_type Virtual 79465 remote_ip 5.5.5.247 79472 username forozande 79472 unique_id port 79472 terminate_cause User-Request 79472 bytes_out 17459 79472 bytes_in 66392 79472 station_ip 37.129.85.244 79472 port 15728664 79472 nas_port_type Virtual 79472 remote_ip 5.5.5.244 79477 username soleymani 79477 kill_reason Maximum number of concurrent logins reached 79477 unique_id port 79477 bytes_out 0 79477 bytes_in 0 79477 station_ip 5.119.240.225 79477 port 15728671 79477 nas_port_type Virtual 79481 username madadi 79481 unique_id port 79481 terminate_cause Lost-Carrier 79481 bytes_out 21690 79481 bytes_in 138930 79481 station_ip 5.119.129.184 79481 port 15728666 79481 nas_port_type Virtual 79481 remote_ip 5.5.5.242 79493 username soleymani 79493 kill_reason Maximum number of concurrent logins reached 79493 unique_id port 79493 bytes_out 0 79493 bytes_in 0 79493 station_ip 5.120.179.66 79493 port 15728687 79493 nas_port_type Virtual 79499 username zoha 79499 unique_id port 79499 terminate_cause Lost-Carrier 79499 bytes_out 443084 79499 bytes_in 5336898 79499 station_ip 5.120.177.28 79499 port 15728691 79499 nas_port_type Virtual 79499 remote_ip 5.5.5.232 79501 username soleymani 79501 unique_id port 79501 terminate_cause Lost-Carrier 79501 bytes_out 135539 79501 bytes_in 363459 79501 station_ip 5.120.179.66 79501 port 15728690 79501 nas_port_type Virtual 79501 remote_ip 5.5.5.233 79505 username alinezhad 79505 unique_id port 79505 terminate_cause User-Request 79505 bytes_out 0 79505 bytes_in 0 79505 station_ip 37.129.155.138 79505 port 15728699 79505 nas_port_type Virtual 79505 remote_ip 5.5.5.227 79508 username iranmanesh 79508 unique_id port 79508 terminate_cause User-Request 79508 bytes_out 19191 79508 bytes_in 51497 79508 station_ip 83.123.240.110 79508 port 15728701 79508 nas_port_type Virtual 79508 remote_ip 5.5.5.228 79515 username madadi 79515 unique_id port 79515 terminate_cause Lost-Carrier 79515 bytes_out 20960 79515 bytes_in 153021 79515 station_ip 5.120.157.243 79515 port 15728706 79515 nas_port_type Virtual 79515 remote_ip 5.5.5.221 79518 username mahdi 79518 unique_id port 79518 terminate_cause Lost-Carrier 79518 bytes_out 650352 79518 bytes_in 14633258 79518 station_ip 5.120.136.90 79518 port 15728705 79518 nas_port_type Virtual 79518 remote_ip 5.5.5.222 79525 username alirezazamani 79525 unique_id port 79525 terminate_cause User-Request 79525 bytes_out 40710 79525 bytes_in 266865 79525 station_ip 37.129.117.102 79525 port 15728725 79525 nas_port_type Virtual 79525 remote_ip 5.5.5.209 79538 username soleymani 79538 unique_id port 79538 terminate_cause Lost-Carrier 79538 bytes_out 138783 79538 bytes_in 562015 79538 station_ip 5.120.131.198 79538 port 15728737 79538 nas_port_type Virtual 79538 remote_ip 5.5.5.199 79453 port 15729074 79453 nas_port_type Virtual 79453 remote_ip 5.5.5.45 79454 username mahbobeh 79454 unique_id port 79454 terminate_cause Admin-Reboot 79454 bytes_out 157785 79454 bytes_in 3812539 79454 station_ip 37.129.194.84 79454 port 15729071 79454 nas_port_type Virtual 79454 remote_ip 5.5.5.82 79456 username asadi 79456 unique_id port 79456 terminate_cause User-Request 79456 bytes_out 207872 79456 bytes_in 4102269 79456 station_ip 83.122.215.41 79456 port 15728640 79456 nas_port_type Virtual 79456 remote_ip 5.5.5.255 79458 username asadi 79458 unique_id port 79458 terminate_cause User-Request 79458 bytes_out 252514 79458 bytes_in 4050290 79458 station_ip 83.122.215.41 79458 port 15728643 79458 nas_port_type Virtual 79458 remote_ip 5.5.5.255 79463 username asadi 79463 unique_id port 79463 terminate_cause User-Request 79463 bytes_out 210969 79463 bytes_in 4002719 79463 station_ip 83.122.215.41 79463 port 15728654 79463 nas_port_type Virtual 79463 remote_ip 5.5.5.255 79474 username asadi 79474 unique_id port 79474 terminate_cause User-Request 79474 bytes_out 127904 79474 bytes_in 1566769 79474 station_ip 83.122.215.41 79474 port 15728668 79474 nas_port_type Virtual 79474 remote_ip 5.5.5.255 79476 username soleymani 79476 kill_reason Maximum number of concurrent logins reached 79476 unique_id port 79476 bytes_out 0 79476 bytes_in 0 79476 station_ip 5.119.240.225 79476 port 15728670 79476 nas_port_type Virtual 79478 username soleymani 79478 kill_reason Maximum number of concurrent logins reached 79478 unique_id port 79478 bytes_out 0 79478 bytes_in 0 79478 station_ip 5.119.240.225 79478 port 15728672 79478 nas_port_type Virtual 79482 username forozande 79482 unique_id port 79482 terminate_cause User-Request 79482 bytes_out 237534 79482 bytes_in 1140058 79482 station_ip 83.123.203.64 79482 port 15728675 79482 nas_port_type Virtual 79482 remote_ip 5.5.5.238 79484 username alinezhad 79484 unique_id port 79484 terminate_cause User-Request 79484 bytes_out 0 79484 bytes_in 0 79484 station_ip 5.202.10.250 79484 port 15728677 79484 nas_port_type Virtual 79484 remote_ip 5.5.5.251 79492 username soleymani 79492 kill_reason Maximum number of concurrent logins reached 79492 unique_id port 79492 bytes_out 0 79492 bytes_in 0 79492 station_ip 5.120.179.66 79492 port 15728686 79492 nas_port_type Virtual 79494 username soleymani 79494 kill_reason Maximum number of concurrent logins reached 79494 unique_id port 79494 bytes_out 0 79494 bytes_in 0 79494 station_ip 5.120.179.66 79494 port 15728688 79494 nas_port_type Virtual 79502 username soleymani 79502 unique_id port 79502 terminate_cause Lost-Carrier 79502 bytes_out 75671 79502 bytes_in 190825 79502 station_ip 5.120.19.143 79502 port 15728694 79502 nas_port_type Virtual 79502 remote_ip 5.5.5.230 79507 username reza 79507 unique_id port 79507 terminate_cause User-Request 79507 bytes_out 57068 79507 bytes_in 873706 79507 station_ip 37.129.70.69 79507 port 15728700 79507 nas_port_type Virtual 79507 remote_ip 5.5.5.225 79509 username forozande 79509 unique_id port 79509 terminate_cause User-Request 79509 bytes_out 15481 79509 bytes_in 42891 79509 station_ip 113.203.4.85 79509 port 15728702 79509 nas_port_type Virtual 79509 remote_ip 5.5.5.224 79510 username forozande 79510 unique_id port 79510 terminate_cause User-Request 79510 bytes_out 18083 79510 bytes_in 132454 79510 station_ip 83.123.55.152 79510 port 15728709 79510 nas_port_type Virtual 79510 remote_ip 5.5.5.218 79511 username alirezazamani 79511 unique_id port 79511 terminate_cause Lost-Carrier 79511 bytes_out 742591 79511 bytes_in 1208417 79511 station_ip 5.119.135.166 79511 port 15728703 79511 nas_port_type Virtual 79464 port 15728653 79464 nas_port_type Virtual 79464 remote_ip 5.5.5.251 79466 username arabpour 79466 unique_id port 79466 terminate_cause Lost-Carrier 79466 bytes_out 181422 79466 bytes_in 5380872 79466 station_ip 5.213.64.197 79466 port 15728652 79466 nas_port_type Virtual 79466 remote_ip 5.5.5.249 79468 username zamanialireza 79468 unique_id port 79468 terminate_cause User-Request 79468 bytes_out 4610477 79468 bytes_in 120362003 79468 station_ip 5.119.60.144 79468 port 15728655 79468 nas_port_type Virtual 79468 remote_ip 5.5.5.248 79470 username madadi 79470 unique_id port 79470 terminate_cause Lost-Carrier 79470 bytes_out 27105 79470 bytes_in 140561 79470 station_ip 5.120.183.182 79470 port 15728658 79470 nas_port_type Virtual 79470 remote_ip 5.5.5.245 79473 username zamanialireza 79473 unique_id port 79473 terminate_cause Lost-Carrier 79473 bytes_out 7768122 79473 bytes_in 277486906 79473 station_ip 5.119.60.144 79473 port 15728647 79473 nas_port_type Virtual 79473 remote_ip 5.5.5.253 79483 username soleymani 79483 unique_id port 79483 terminate_cause Lost-Carrier 79483 bytes_out 95679 79483 bytes_in 458896 79483 station_ip 5.120.67.47 79483 port 15728667 79483 nas_port_type Virtual 79483 remote_ip 5.5.5.241 79485 username mobina 79485 unique_id port 79485 terminate_cause User-Request 79485 bytes_out 15590973 79485 bytes_in 723321162 79485 station_ip 5.123.103.241 79485 port 15728641 79485 nas_port_type Virtual 79485 remote_ip 5.5.5.254 79487 username soleymani 79487 unique_id port 79487 terminate_cause Lost-Carrier 79487 bytes_out 259946 79487 bytes_in 797737 79487 station_ip 5.119.240.225 79487 port 15728673 79487 nas_port_type Virtual 79487 remote_ip 5.5.5.239 79488 username soleymani 79488 kill_reason Maximum number of concurrent logins reached 79488 unique_id port 79488 bytes_out 0 79488 bytes_in 0 79488 station_ip 5.119.33.34 79488 port 15728681 79488 nas_port_type Virtual 79490 username soleymani 79490 kill_reason Maximum number of concurrent logins reached 79490 unique_id port 79490 bytes_out 0 79490 bytes_in 0 79490 station_ip 5.119.33.34 79490 port 15728684 79490 nas_port_type Virtual 79500 username alirezazamani 79500 unique_id port 79500 terminate_cause Lost-Carrier 79500 bytes_out 216580 79500 bytes_in 2502287 79500 station_ip 5.119.135.166 79500 port 15728692 79500 nas_port_type Virtual 79500 remote_ip 5.5.5.231 79503 username iranmanesh 79503 unique_id port 79503 terminate_cause User-Request 79503 bytes_out 55029 79503 bytes_in 534713 79503 station_ip 83.123.240.110 79503 port 15728696 79503 nas_port_type Virtual 79503 remote_ip 5.5.5.228 79506 username alirezazamani 79506 unique_id port 79506 terminate_cause Lost-Carrier 79506 bytes_out 278598 79506 bytes_in 4513943 79506 station_ip 5.119.135.166 79506 port 15728695 79506 nas_port_type Virtual 79506 remote_ip 5.5.5.229 79513 username alirezazamani 79513 unique_id port 79513 terminate_cause User-Request 79513 bytes_out 52380 79513 bytes_in 214791 79513 station_ip 5.119.135.166 79513 port 15728710 79513 nas_port_type Virtual 79513 remote_ip 5.5.5.231 79519 username mahbobeh 79519 unique_id port 79519 terminate_cause Lost-Carrier 79519 bytes_out 71212 79519 bytes_in 56429 79519 station_ip 83.123.227.48 79519 port 15728719 79519 nas_port_type Virtual 79519 remote_ip 5.5.5.212 79520 username amin.insta13 79520 unique_id port 79520 terminate_cause User-Request 79520 bytes_out 1016214 79520 bytes_in 6723736 79520 station_ip 83.122.101.123 79520 port 15728720 79520 nas_port_type Virtual 79520 remote_ip 5.5.5.213 79523 username amin.insta13 79523 unique_id port 79523 terminate_cause User-Request 79523 bytes_out 301160 79523 bytes_in 3851139 79479 remote_ip 5.5.5.243 79480 username alinezhad 79480 unique_id port 79480 terminate_cause User-Request 79480 bytes_out 14656 79480 bytes_in 34447 79480 station_ip 5.202.10.250 79480 port 15728674 79480 nas_port_type Virtual 79480 remote_ip 5.5.5.251 79486 username asadi 79486 unique_id port 79486 terminate_cause User-Request 79486 bytes_out 149106 79486 bytes_in 1450360 79486 station_ip 83.122.215.41 79486 port 15728678 79486 nas_port_type Virtual 79486 remote_ip 5.5.5.255 79489 username soleymani 79489 kill_reason Maximum number of concurrent logins reached 79489 unique_id port 79489 bytes_out 0 79489 bytes_in 0 79489 station_ip 5.119.33.34 79489 port 15728683 79489 nas_port_type Virtual 79491 username soleymani 79491 kill_reason Maximum number of concurrent logins reached 79491 unique_id port 79491 bytes_out 0 79491 bytes_in 0 79491 station_ip 5.119.33.34 79491 port 15728685 79491 nas_port_type Virtual 79495 username soleymani 79495 unique_id port 79495 terminate_cause Lost-Carrier 79495 bytes_out 182826 79495 bytes_in 767518 79495 station_ip 5.120.100.41 79495 port 15728676 79495 nas_port_type Virtual 79495 remote_ip 5.5.5.237 79496 username soleymani 79496 unique_id port 79496 terminate_cause User-Request 79496 bytes_out 0 79496 bytes_in 0 79496 station_ip 5.120.179.66 79496 port 15728689 79496 nas_port_type Virtual 79496 remote_ip 5.5.5.233 79497 username soleymani 79497 unique_id port 79497 terminate_cause Lost-Carrier 79497 bytes_out 17142 79497 bytes_in 151938 79497 station_ip 5.119.58.113 79497 port 15728679 79497 nas_port_type Virtual 79497 remote_ip 5.5.5.236 79498 username madadi 79498 unique_id port 79498 terminate_cause Lost-Carrier 79498 bytes_out 14743 79498 bytes_in 129437 79498 station_ip 5.119.83.133 79498 port 15728680 79498 nas_port_type Virtual 79498 remote_ip 5.5.5.235 79504 username alinezhad 79504 unique_id port 79504 terminate_cause User-Request 79504 bytes_out 24479 79504 bytes_in 346848 79504 station_ip 37.129.155.138 79504 port 15728697 79504 nas_port_type Virtual 79504 remote_ip 5.5.5.227 79512 username alirezazamani 79512 unique_id port 79512 terminate_cause Lost-Carrier 79512 bytes_out 484134 79512 bytes_in 181257 79512 station_ip 5.119.135.166 79512 port 15728704 79512 nas_port_type Virtual 79512 remote_ip 5.5.5.223 79514 username soleymani 79514 unique_id port 79514 terminate_cause User-Request 79514 bytes_out 0 79514 bytes_in 0 79514 station_ip 5.119.67.16 79514 port 15728715 79514 nas_port_type Virtual 79514 remote_ip 5.5.5.215 79516 username soleymani 79516 unique_id port 79516 terminate_cause Lost-Carrier 79516 bytes_out 115933 79516 bytes_in 779009 79516 station_ip 5.120.86.0 79516 port 15728711 79516 nas_port_type Virtual 79516 remote_ip 5.5.5.217 79522 username mobina 79522 unique_id port 79522 terminate_cause Lost-Carrier 79522 bytes_out 11526087 79522 bytes_in 186647396 79522 station_ip 5.123.103.241 79522 port 15728693 79522 nas_port_type Virtual 79522 remote_ip 5.5.5.254 79524 username madadi 79524 unique_id port 79524 terminate_cause User-Request 79524 bytes_out 0 79524 bytes_in 0 79524 station_ip 5.119.213.248 79524 port 15728724 79524 nas_port_type Virtual 79524 remote_ip 5.5.5.210 79528 username alirezazamani 79528 unique_id port 79528 terminate_cause User-Request 79528 bytes_out 129928 79528 bytes_in 466748 79528 station_ip 37.129.117.102 79528 port 15728731 79528 nas_port_type Virtual 79528 remote_ip 5.5.5.209 79530 username hamideh 79530 unique_id port 79530 terminate_cause Lost-Carrier 79530 bytes_out 24867 79530 bytes_in 271401 79530 station_ip 5.119.232.78 79530 port 15728730 79530 nas_port_type Virtual 79530 remote_ip 5.5.5.204 79511 remote_ip 5.5.5.229 79517 username amin.insta13 79517 unique_id port 79517 terminate_cause User-Request 79517 bytes_out 986590 79517 bytes_in 3193640 79517 station_ip 83.122.101.123 79517 port 15728718 79517 nas_port_type Virtual 79517 remote_ip 5.5.5.213 79521 username amin.insta13 79521 unique_id port 79521 terminate_cause User-Request 79521 bytes_out 582800 79521 bytes_in 6688985 79521 station_ip 83.122.101.123 79521 port 15728721 79521 nas_port_type Virtual 79521 remote_ip 5.5.5.213 79526 username forozande 79526 unique_id port 79526 terminate_cause User-Request 79526 bytes_out 47797 79526 bytes_in 220969 79526 station_ip 113.203.117.209 79526 port 15728726 79526 nas_port_type Virtual 79526 remote_ip 5.5.5.208 79531 username rashidi 79531 unique_id port 79531 terminate_cause User-Request 79531 bytes_out 5918386 79531 bytes_in 13020849 79531 station_ip 5.120.163.149 79531 port 15728713 79531 nas_port_type Virtual 79531 remote_ip 5.5.5.216 79534 username alirezazamani 79534 unique_id port 79534 terminate_cause Lost-Carrier 79534 bytes_out 258437 79534 bytes_in 4585579 79534 station_ip 94.241.181.48 79534 port 15728717 79534 nas_port_type Virtual 79534 remote_ip 5.5.5.214 79537 username zamanialireza 79537 unique_id port 79537 terminate_cause User-Request 79537 bytes_out 10960385 79537 bytes_in 255601683 79537 station_ip 37.156.155.103 79537 port 15728733 79537 nas_port_type Virtual 79537 remote_ip 5.5.5.202 79545 username alinezhad 79545 unique_id port 79545 terminate_cause User-Request 79545 bytes_out 0 79545 bytes_in 0 79545 station_ip 83.123.63.231 79545 port 15728748 79545 nas_port_type Virtual 79545 remote_ip 5.5.5.190 79548 username alirezazamani 79548 unique_id port 79548 terminate_cause User-Request 79548 bytes_out 163687 79548 bytes_in 1008270 79548 station_ip 83.122.87.23 79548 port 15728750 79548 nas_port_type Virtual 79548 remote_ip 5.5.5.189 79553 username zamanialireza 79553 unique_id port 79553 terminate_cause User-Request 79553 bytes_out 673153 79553 bytes_in 122847 79553 station_ip 37.129.162.223 79553 port 15728759 79553 nas_port_type Virtual 79553 remote_ip 5.5.5.187 79555 username amirhosein 79555 unique_id port 79555 terminate_cause User-Request 79555 bytes_out 427368 79555 bytes_in 5522962 79555 station_ip 5.119.113.132 79555 port 15728760 79555 nas_port_type Virtual 79555 remote_ip 5.5.5.193 79558 username zamanialireza 79558 unique_id port 79558 terminate_cause User-Request 79558 bytes_out 0 79558 bytes_in 0 79558 station_ip 37.129.162.223 79558 port 15728763 79558 nas_port_type Virtual 79558 remote_ip 5.5.5.187 79569 username ahmad 79569 unique_id port 79569 terminate_cause User-Request 79569 bytes_out 1119414 79569 bytes_in 20193576 79569 station_ip 86.57.94.70 79569 port 15728766 79569 nas_port_type Virtual 79569 remote_ip 5.5.5.185 79571 username forozande 79571 unique_id port 79571 terminate_cause User-Request 79571 bytes_out 99509 79571 bytes_in 175733 79571 station_ip 83.122.213.27 79571 port 15728779 79571 nas_port_type Virtual 79571 remote_ip 5.5.5.177 79577 username forozande 79577 unique_id port 79577 terminate_cause User-Request 79577 bytes_out 38998 79577 bytes_in 224054 79577 station_ip 113.203.57.31 79577 port 15728785 79577 nas_port_type Virtual 79577 remote_ip 5.5.5.172 79586 username asadi 79586 unique_id port 79586 terminate_cause User-Request 79586 bytes_out 212752 79586 bytes_in 2521747 79586 station_ip 37.129.223.108 79586 port 15728791 79586 nas_port_type Virtual 79586 remote_ip 5.5.5.171 79589 username mobina 79589 unique_id port 79589 terminate_cause Lost-Carrier 79589 bytes_out 3421732 79589 bytes_in 63189931 79589 station_ip 5.123.81.231 79523 station_ip 83.122.101.123 79523 port 15728723 79523 nas_port_type Virtual 79523 remote_ip 5.5.5.213 79527 username hamideh 79527 unique_id port 79527 terminate_cause User-Request 79527 bytes_out 26972 79527 bytes_in 93089 79527 station_ip 5.119.232.78 79527 port 15728727 79527 nas_port_type Virtual 79527 remote_ip 5.5.5.207 79529 username alirezazamani 79529 unique_id port 79529 terminate_cause Lost-Carrier 79529 bytes_out 484325 79529 bytes_in 3132285 79529 station_ip 5.119.135.166 79529 port 15728716 79529 nas_port_type Virtual 79529 remote_ip 5.5.5.223 79532 username soleymani 79532 kill_reason Maximum check online fails reached 79532 unique_id port 79532 bytes_out 89967 79532 bytes_in 296990 79532 station_ip 5.120.46.116 79532 port 15728734 79532 nas_port_type Virtual 79532 remote_ip 5.5.5.201 79540 username ahmadi 79540 unique_id port 79540 terminate_cause User-Request 79540 bytes_out 28874 79540 bytes_in 188276 79540 station_ip 113.203.106.0 79540 port 15728744 79540 nas_port_type Virtual 79540 remote_ip 5.5.5.194 79543 username soleymani 79543 unique_id port 79543 terminate_cause Lost-Carrier 79543 bytes_out 316426 79543 bytes_in 289800 79543 station_ip 5.119.10.136 79543 port 15728741 79543 nas_port_type Virtual 79543 remote_ip 5.5.5.197 79544 username abdilahyar 79544 unique_id port 79544 terminate_cause Lost-Carrier 79544 bytes_out 455738 79544 bytes_in 1911076 79544 station_ip 5.119.191.163 79544 port 15728728 79544 nas_port_type Virtual 79544 remote_ip 5.5.5.206 79554 username madadi 79554 unique_id port 79554 terminate_cause User-Request 79554 bytes_out 0 79554 bytes_in 0 79554 station_ip 5.120.3.99 79554 port 15728761 79554 nas_port_type Virtual 79554 remote_ip 5.5.5.184 79559 username soleymani 79559 unique_id port 79559 terminate_cause Lost-Carrier 79559 bytes_out 50026 79559 bytes_in 322480 79559 station_ip 5.119.26.199 79559 port 15728757 79559 nas_port_type Virtual 79559 remote_ip 5.5.5.186 79562 username afarin 79562 unique_id port 79562 terminate_cause User-Request 79562 bytes_out 34833 79562 bytes_in 50023 79562 station_ip 37.129.15.7 79562 port 15728767 79562 nas_port_type Virtual 79562 remote_ip 5.5.5.183 79564 username rashidi 79564 unique_id port 79564 terminate_cause User-Request 79564 bytes_out 3936061 79564 bytes_in 9155684 79564 station_ip 5.120.163.149 79564 port 15728749 79564 nas_port_type Virtual 79564 remote_ip 5.5.5.216 79568 username alirezazamani 79568 unique_id port 79568 terminate_cause User-Request 79568 bytes_out 0 79568 bytes_in 0 79568 station_ip 94.241.178.64 79568 port 15728774 79568 nas_port_type Virtual 79568 remote_ip 5.5.5.188 79574 username soleymani 79574 unique_id port 79574 terminate_cause Lost-Carrier 79574 bytes_out 173202 79574 bytes_in 871625 79574 station_ip 5.119.236.126 79574 port 15728775 79574 nas_port_type Virtual 79574 remote_ip 5.5.5.178 79576 username soleymani 79576 unique_id port 79576 terminate_cause Lost-Carrier 79576 bytes_out 369708 79576 bytes_in 473669 79576 station_ip 5.120.185.181 79576 port 15728780 79576 nas_port_type Virtual 79576 remote_ip 5.5.5.176 79579 username forozande 79579 unique_id port 79579 terminate_cause User-Request 79579 bytes_out 66360 79579 bytes_in 885962 79579 station_ip 113.203.57.31 79579 port 15728786 79579 nas_port_type Virtual 79579 remote_ip 5.5.5.172 79582 username zoha 79582 unique_id port 79582 terminate_cause User-Request 79582 bytes_out 0 79582 bytes_in 0 79582 station_ip 5.120.177.28 79582 port 15728788 79582 nas_port_type Virtual 79582 remote_ip 5.5.5.232 79601 username zamanialireza 79601 unique_id port 79601 terminate_cause User-Request 79601 bytes_out 102688 79533 username soleymani 79533 unique_id port 79533 terminate_cause User-Request 79533 bytes_out 0 79533 bytes_in 0 79533 station_ip 5.120.131.198 79533 port 15728736 79533 nas_port_type Virtual 79533 remote_ip 5.5.5.199 79535 username soleymani 79535 unique_id port 79535 terminate_cause Lost-Carrier 79535 bytes_out 505363 79535 bytes_in 657642 79535 station_ip 5.120.54.198 79535 port 15728729 79535 nas_port_type Virtual 79535 remote_ip 5.5.5.205 79536 username shahnaz 79536 unique_id port 79536 terminate_cause User-Request 79536 bytes_out 4248519 79536 bytes_in 79863709 79536 station_ip 5.119.131.112 79536 port 15728732 79536 nas_port_type Virtual 79536 remote_ip 5.5.5.203 79541 username soleymani 79541 unique_id port 79541 terminate_cause Lost-Carrier 79541 bytes_out 89756 79541 bytes_in 365798 79541 station_ip 5.120.2.96 79541 port 15728739 79541 nas_port_type Virtual 79541 remote_ip 5.5.5.198 79549 username soleymani 79549 unique_id port 79549 terminate_cause Lost-Carrier 79549 bytes_out 126326 79549 bytes_in 334214 79549 station_ip 5.120.146.36 79549 port 15728746 79549 nas_port_type Virtual 79549 remote_ip 5.5.5.192 79550 username amirhosein 79550 unique_id port 79550 terminate_cause Lost-Carrier 79550 bytes_out 1764493 79550 bytes_in 28864859 79550 station_ip 5.119.113.132 79550 port 15728745 79550 nas_port_type Virtual 79550 remote_ip 5.5.5.193 79551 username zamanialireza 79551 unique_id port 79551 terminate_cause User-Request 79551 bytes_out 229276 79551 bytes_in 1504850 79551 station_ip 37.129.162.223 79551 port 15728754 79551 nas_port_type Virtual 79551 remote_ip 5.5.5.187 79552 username zamanialireza 79552 unique_id port 79552 terminate_cause User-Request 79552 bytes_out 0 79552 bytes_in 0 79552 station_ip 37.129.162.223 79552 port 15728756 79552 nas_port_type Virtual 79552 remote_ip 5.5.5.187 79561 username afarin 79561 unique_id port 79561 terminate_cause User-Request 79561 bytes_out 725092 79561 bytes_in 15576084 79561 station_ip 37.129.15.7 79561 port 15728765 79561 nas_port_type Virtual 79561 remote_ip 5.5.5.183 79563 username shahnaz 79563 unique_id port 79563 terminate_cause User-Request 79563 bytes_out 64913 79563 bytes_in 475667 79563 station_ip 5.119.131.112 79563 port 15728764 79563 nas_port_type Virtual 79563 remote_ip 5.5.5.203 79565 username mobina 79565 unique_id port 79565 terminate_cause Lost-Carrier 79565 bytes_out 8436336 79565 bytes_in 185361925 79565 station_ip 5.123.103.241 79565 port 15728707 79565 nas_port_type Virtual 79565 remote_ip 5.5.5.220 79567 username soleymani 79567 unique_id port 79567 terminate_cause Lost-Carrier 79567 bytes_out 182440 79567 bytes_in 538246 79567 station_ip 5.120.183.13 79567 port 15728771 79567 nas_port_type Virtual 79567 remote_ip 5.5.5.181 79573 username madadi 79573 unique_id port 79573 terminate_cause Lost-Carrier 79573 bytes_out 861992 79573 bytes_in 3582784 79573 station_ip 5.120.3.99 79573 port 15728762 79573 nas_port_type Virtual 79573 remote_ip 5.5.5.184 79578 username amir 79578 unique_id port 79578 terminate_cause Lost-Carrier 79578 bytes_out 50603815 79578 bytes_in 238566130 79578 station_ip 46.225.212.208 79578 port 15728698 79578 nas_port_type Virtual 79578 remote_ip 5.5.5.226 79580 username zoha 79580 unique_id port 79580 terminate_cause User-Request 79580 bytes_out 1462984 79580 bytes_in 9161695 79580 station_ip 5.120.177.28 79580 port 15728777 79580 nas_port_type Virtual 79580 remote_ip 5.5.5.232 79581 username alirezazamani 79581 unique_id port 79581 terminate_cause Lost-Carrier 79581 bytes_out 725320 79581 bytes_in 14820376 79581 station_ip 5.119.135.166 79581 port 15728778 79581 nas_port_type Virtual 79539 username zamanialireza 79539 unique_id port 79539 terminate_cause User-Request 79539 bytes_out 571753 79539 bytes_in 3332923 79539 station_ip 83.122.13.3 79539 port 15728743 79539 nas_port_type Virtual 79539 remote_ip 5.5.5.195 79542 username madadi 79542 unique_id port 79542 terminate_cause Lost-Carrier 79542 bytes_out 50083 79542 bytes_in 410533 79542 station_ip 5.120.76.164 79542 port 15728742 79542 nas_port_type Virtual 79542 remote_ip 5.5.5.196 79546 username zoha 79546 unique_id port 79546 terminate_cause Lost-Carrier 79546 bytes_out 1478474 79546 bytes_in 16819217 79546 station_ip 5.120.177.28 79546 port 15728740 79546 nas_port_type Virtual 79546 remote_ip 5.5.5.232 79547 username madadi 79547 unique_id port 79547 terminate_cause Lost-Carrier 79547 bytes_out 90474 79547 bytes_in 719788 79547 station_ip 5.119.198.41 79547 port 15728747 79547 nas_port_type Virtual 79547 remote_ip 5.5.5.191 79556 username alirezazamani 79556 unique_id port 79556 terminate_cause Lost-Carrier 79556 bytes_out 307464 79556 bytes_in 3006205 79556 station_ip 94.241.178.64 79556 port 15728751 79556 nas_port_type Virtual 79556 remote_ip 5.5.5.188 79557 username zoha 79557 unique_id port 79557 terminate_cause User-Request 79557 bytes_out 370922 79557 bytes_in 1641794 79557 station_ip 5.120.177.28 79557 port 15728753 79557 nas_port_type Virtual 79557 remote_ip 5.5.5.232 79560 username ahmad 79560 unique_id port 79560 terminate_cause User-Request 79560 bytes_out 510470 79560 bytes_in 5232333 79560 station_ip 86.57.94.70 79560 port 15728758 79560 nas_port_type Virtual 79560 remote_ip 5.5.5.185 79566 username alirezazamani 79566 unique_id port 79566 terminate_cause User-Request 79566 bytes_out 28206241 79566 bytes_in 78223680 79566 station_ip 31.57.129.65 79566 port 15728722 79566 nas_port_type Virtual 79566 remote_ip 5.5.5.211 79570 username iranmanesh 79570 unique_id port 79570 terminate_cause User-Request 79570 bytes_out 50465 79570 bytes_in 751224 79570 station_ip 83.123.240.110 79570 port 15728776 79570 nas_port_type Virtual 79570 remote_ip 5.5.5.228 79572 username soleymani 79572 unique_id port 79572 terminate_cause Lost-Carrier 79572 bytes_out 158141 79572 bytes_in 478498 79572 station_ip 5.119.26.124 79572 port 15728772 79572 nas_port_type Virtual 79572 remote_ip 5.5.5.180 79575 username ahmadi 79575 unique_id port 79575 terminate_cause User-Request 79575 bytes_out 29903 79575 bytes_in 354348 79575 station_ip 113.203.5.136 79575 port 15728783 79575 nas_port_type Virtual 79575 remote_ip 5.5.5.174 79583 username ahmadi 79583 unique_id port 79583 terminate_cause User-Request 79583 bytes_out 0 79583 bytes_in 0 79583 station_ip 113.203.5.136 79583 port 15728790 79583 nas_port_type Virtual 79583 remote_ip 5.5.5.174 79585 username rashidi 79585 unique_id port 79585 terminate_cause Lost-Carrier 79585 bytes_out 8910151 79585 bytes_in 188436473 79585 station_ip 5.120.163.149 79585 port 15728768 79585 nas_port_type Virtual 79585 remote_ip 5.5.5.216 79588 username shahnaz 79588 unique_id port 79588 terminate_cause Lost-Carrier 79588 bytes_out 1893157 79588 bytes_in 53318176 79588 station_ip 5.119.131.112 79588 port 15728787 79588 nas_port_type Virtual 79588 remote_ip 5.5.5.203 79591 username dehghan 79591 unique_id port 79591 terminate_cause User-Request 79591 bytes_out 203340 79591 bytes_in 5269325 79591 station_ip 37.129.27.7 79591 port 15728795 79591 nas_port_type Virtual 79591 remote_ip 5.5.5.169 79595 username mahdi 79595 unique_id port 79595 terminate_cause Lost-Carrier 79595 bytes_out 1389743 79595 bytes_in 31635260 79595 station_ip 5.120.136.90 79595 port 15728738 79595 nas_port_type Virtual 79581 remote_ip 5.5.5.223 81256 terminate_cause User-Request 81256 bytes_out 34729 81256 bytes_in 391432 81256 station_ip 37.129.43.55 81256 port 15728822 81256 nas_port_type Virtual 81256 remote_ip 5.5.5.158 81260 username aminvpn 81260 mac 79587 username dehghan 79587 unique_id port 79587 terminate_cause User-Request 79587 bytes_out 104539 79587 bytes_in 1221844 79587 station_ip 37.129.27.7 79587 port 15728793 79587 nas_port_type Virtual 79587 remote_ip 5.5.5.169 79590 username dehghan 79590 unique_id port 79590 terminate_cause User-Request 79590 bytes_out 107528 79590 bytes_in 1569576 79590 station_ip 37.129.27.7 79590 port 15728794 79590 nas_port_type Virtual 79590 remote_ip 5.5.5.169 79593 username madadi 79593 unique_id port 79593 terminate_cause Lost-Carrier 79593 bytes_out 168363 79593 bytes_in 444774 79593 station_ip 5.120.91.184 79593 port 15728792 79593 nas_port_type Virtual 79593 remote_ip 5.5.5.170 79596 username afarin 79596 unique_id port 79596 terminate_cause User-Request 79596 bytes_out 266503 79596 bytes_in 7688611 79596 station_ip 37.129.15.7 79596 port 15728798 79596 nas_port_type Virtual 79596 remote_ip 5.5.5.183 79597 username alinezhad 79597 unique_id port 79597 terminate_cause Lost-Carrier 79597 bytes_out 98025 79597 bytes_in 1222456 79597 station_ip 5.202.10.191 79597 port 15728773 79597 nas_port_type Virtual 79597 remote_ip 5.5.5.179 81260 bytes_out 0 81260 bytes_in 0 81260 station_ip 5.119.30.76 81260 port 29 81260 unique_id port 81260 remote_ip 10.8.1.10 81274 username asadi 81274 unique_id port 81274 terminate_cause User-Request 79602 username ahmadipour 79602 unique_id port 79602 terminate_cause Lost-Carrier 79602 bytes_out 3076578 79602 bytes_in 60909108 79602 station_ip 83.122.193.238 79602 port 15728801 79602 nas_port_type Virtual 79602 remote_ip 5.5.5.167 79604 username zoha 79604 unique_id port 79604 terminate_cause Lost-Carrier 79604 bytes_out 1752025 79604 bytes_in 4598833 79604 station_ip 5.120.142.156 79604 port 15728802 79604 nas_port_type Virtual 79604 remote_ip 5.5.5.165 79607 username mobina 79607 unique_id port 79607 terminate_cause Lost-Carrier 79607 bytes_out 1672417 79607 bytes_in 40088513 79607 station_ip 5.123.0.220 79607 port 15728796 79607 nas_port_type Virtual 79607 remote_ip 5.5.5.168 79608 username alirezazamani 79608 unique_id port 79608 terminate_cause User-Request 79608 bytes_out 3252520 79608 bytes_in 55111286 79608 station_ip 94.241.178.64 79608 port 15728797 79608 nas_port_type Virtual 79608 remote_ip 5.5.5.188 79614 username alinezhad 79614 unique_id port 79614 terminate_cause User-Request 79614 bytes_out 0 79614 bytes_in 0 79614 station_ip 37.129.56.50 79614 port 15728821 79614 nas_port_type Virtual 79614 remote_ip 5.5.5.153 79618 username alirezazamani 79618 unique_id port 79618 terminate_cause Lost-Carrier 79618 bytes_out 364652 79618 bytes_in 1332231 79618 station_ip 5.119.135.166 79618 port 15728817 79618 nas_port_type Virtual 79618 remote_ip 5.5.5.223 79619 username asadi 79619 unique_id port 79619 terminate_cause User-Request 79619 bytes_out 194937 79619 bytes_in 5646331 79619 station_ip 37.129.223.108 79619 port 15728824 79619 nas_port_type Virtual 79619 remote_ip 5.5.5.171 79621 username asadi 79621 unique_id port 79621 terminate_cause User-Request 79621 bytes_out 77012 79621 bytes_in 2456802 79621 station_ip 37.129.94.46 79621 port 15728825 79621 nas_port_type Virtual 79621 remote_ip 5.5.5.150 79622 username mahbobeh 79622 unique_id port 79622 terminate_cause Lost-Carrier 79622 bytes_out 1089212 79622 bytes_in 18100603 79622 station_ip 83.123.229.232 81274 bytes_out 43427 79589 port 15728782 79589 nas_port_type Virtual 79589 remote_ip 5.5.5.175 79592 username madadi 79592 unique_id port 79592 terminate_cause Lost-Carrier 79592 bytes_out 1537689 79592 bytes_in 10728551 79592 station_ip 5.119.92.159 79592 port 15728784 79592 nas_port_type Virtual 79592 remote_ip 5.5.5.173 79594 username zoha 79594 unique_id port 79594 terminate_cause Lost-Carrier 79594 bytes_out 1348834 79594 bytes_in 11998866 79594 station_ip 5.120.177.28 79594 port 15728789 79594 nas_port_type Virtual 79594 remote_ip 5.5.5.232 81257 station_ip 5.119.30.76 81257 port 29 81257 unique_id port 81257 remote_ip 10.8.1.10 81258 username aminvpn 81258 mac 81258 bytes_out 0 81258 bytes_in 0 81258 station_ip 5.119.30.76 79613 username amirhosein 79613 unique_id port 79613 terminate_cause User-Request 79613 bytes_out 15781522 79613 bytes_in 477621755 79613 station_ip 5.119.113.132 79613 port 15728769 79613 nas_port_type Virtual 79613 remote_ip 5.5.5.193 79615 username ahmadi 79615 unique_id port 79615 terminate_cause User-Request 79615 bytes_out 51245 79615 bytes_in 625669 79615 station_ip 113.203.20.132 79615 port 15728820 79615 nas_port_type Virtual 79615 remote_ip 5.5.5.154 79623 username alirezazamani 79623 unique_id port 79623 terminate_cause User-Request 79623 bytes_out 10456899 79623 bytes_in 276356461 79623 station_ip 94.241.178.64 79623 port 15728735 79623 nas_port_type Virtual 79623 remote_ip 5.5.5.200 79626 username alirezazamani 79626 unique_id port 79626 terminate_cause User-Request 79626 bytes_out 40668193 79626 bytes_in 103762296 79626 station_ip 31.57.129.65 79626 port 15728781 79626 nas_port_type Virtual 79626 remote_ip 5.5.5.211 79633 username madadi 79633 unique_id port 79633 terminate_cause Lost-Carrier 79633 bytes_out 452440 79633 bytes_in 1885848 79633 station_ip 5.119.66.28 79633 port 15728823 79633 nas_port_type Virtual 79633 remote_ip 5.5.5.151 79635 username soleymani 79635 unique_id port 79635 terminate_cause Lost-Carrier 79635 bytes_out 104260 79635 bytes_in 431047 79635 station_ip 5.119.91.179 79635 port 15728835 79635 nas_port_type Virtual 79635 remote_ip 5.5.5.146 79638 username soleymani 79638 unique_id port 79638 terminate_cause Lost-Carrier 79638 bytes_out 73096 79638 bytes_in 250718 79638 station_ip 5.119.186.48 79638 port 15728838 79638 nas_port_type Virtual 79638 remote_ip 5.5.5.144 79639 username asadi 79639 unique_id port 79639 terminate_cause User-Request 79639 bytes_out 56987 79639 bytes_in 408139 79639 station_ip 37.129.130.150 79639 port 15728842 79639 nas_port_type Virtual 79639 remote_ip 5.5.5.142 79641 username ebrahimi 79641 unique_id port 79641 terminate_cause User-Request 79641 bytes_out 0 79641 bytes_in 0 79641 station_ip 5.120.30.31 79641 port 15728845 79641 nas_port_type Virtual 79641 remote_ip 5.5.5.138 79645 username soleymani 79645 unique_id port 79645 terminate_cause Lost-Carrier 79645 bytes_out 85496 79645 bytes_in 398902 79645 station_ip 5.119.71.127 79645 port 15728844 79645 nas_port_type Virtual 79645 remote_ip 5.5.5.139 79657 username rashidi 79657 unique_id port 79657 terminate_cause Lost-Carrier 79657 bytes_out 1784979 79657 bytes_in 4805217 79657 station_ip 5.120.163.149 79657 port 15728855 79657 nas_port_type Virtual 79657 remote_ip 5.5.5.216 81258 port 29 81258 unique_id port 81258 remote_ip 10.8.1.10 81262 username aminvpn 81262 mac 81262 bytes_out 0 81262 bytes_in 0 81262 station_ip 5.119.30.76 81262 port 29 79665 username soleymani 79665 unique_id port 79665 terminate_cause User-Request 79665 bytes_out 0 79665 bytes_in 0 81262 unique_id port 81262 remote_ip 10.8.1.10 79595 remote_ip 5.5.5.222 79599 username shahriyar 79599 unique_id port 79599 terminate_cause User-Request 79599 bytes_out 4155224 79599 bytes_in 90259138 79599 station_ip 5.202.12.161 79599 port 15728682 79599 nas_port_type Virtual 79599 remote_ip 5.5.5.234 79603 username soleymani 79603 unique_id port 79603 terminate_cause Lost-Carrier 79603 bytes_out 191115 79603 bytes_in 629924 79603 station_ip 5.119.216.197 79603 port 15728804 79603 nas_port_type Virtual 79603 remote_ip 5.5.5.164 79606 username shahrooz 79606 unique_id port 79606 terminate_cause Lost-Carrier 79606 bytes_out 19044400 79606 bytes_in 419926276 79606 station_ip 37.129.43.116 79606 port 15728770 79606 nas_port_type Virtual 79606 remote_ip 5.5.5.182 79611 username avaanna 79611 unique_id port 79611 terminate_cause User-Request 79611 bytes_out 0 79611 bytes_in 0 79611 station_ip 83.122.94.40 79611 port 15728816 79611 nas_port_type Virtual 79611 remote_ip 5.5.5.155 79612 username madadi 79612 unique_id port 79612 terminate_cause Lost-Carrier 79612 bytes_out 15851 79612 bytes_in 126729 79612 station_ip 5.120.61.83 79612 port 15728814 79612 nas_port_type Virtual 79612 remote_ip 5.5.5.157 79617 username zamanialireza 79617 unique_id port 79617 terminate_cause User-Request 79617 bytes_out 3515940 79617 bytes_in 19170624 79617 station_ip 83.122.13.3 79617 port 15728818 79617 nas_port_type Virtual 79617 remote_ip 5.5.5.195 79625 username avaanna 79625 unique_id port 79625 terminate_cause User-Request 79625 bytes_out 0 79625 bytes_in 0 79625 station_ip 83.122.69.225 79625 port 15728830 79625 nas_port_type Virtual 79625 remote_ip 5.5.5.148 79628 username alirezazamani 79628 unique_id port 79628 terminate_cause Lost-Carrier 79628 bytes_out 571511 79628 bytes_in 4718829 79628 station_ip 5.119.135.166 79628 port 15728828 79628 nas_port_type Virtual 79628 remote_ip 5.5.5.223 79640 username shahnaz 79640 kill_reason Maximum check online fails reached 79640 unique_id port 79640 bytes_out 1543266 79640 bytes_in 22289106 79640 station_ip 5.119.157.159 79640 port 15728841 79640 nas_port_type Virtual 79640 remote_ip 5.5.5.141 79642 username soleymani 79642 unique_id port 79642 terminate_cause Lost-Carrier 79642 bytes_out 173786 79642 bytes_in 780544 79642 station_ip 5.120.5.96 79642 port 15728839 79642 nas_port_type Virtual 79642 remote_ip 5.5.5.143 79643 username forozande 79643 unique_id port 79643 terminate_cause User-Request 79643 bytes_out 48 79643 bytes_in 152 79643 station_ip 37.129.144.84 79643 port 15728847 79643 nas_port_type Virtual 79643 remote_ip 5.5.5.136 79648 username zamanialireza 79648 unique_id port 79648 terminate_cause User-Request 79648 bytes_out 0 79648 bytes_in 0 79648 station_ip 83.122.197.214 79648 port 15728849 79648 nas_port_type Virtual 79648 remote_ip 5.5.5.135 79658 username madadi 79658 unique_id port 79658 terminate_cause Lost-Carrier 79658 bytes_out 80030 79658 bytes_in 295346 79658 station_ip 5.119.136.171 79658 port 15728856 79658 nas_port_type Virtual 79658 remote_ip 5.5.5.132 79661 username madadi 79661 unique_id port 79661 terminate_cause Lost-Carrier 79661 bytes_out 12628 79661 bytes_in 132117 79661 station_ip 5.119.100.177 79661 port 15728863 79661 nas_port_type Virtual 79661 remote_ip 5.5.5.127 79666 username iranmanesh 79666 unique_id port 79666 terminate_cause User-Request 79666 bytes_out 0 79666 bytes_in 0 79666 station_ip 83.123.240.110 79666 port 15728874 79666 nas_port_type Virtual 79666 remote_ip 5.5.5.228 79672 username asadi 79672 unique_id port 79672 terminate_cause User-Request 79672 bytes_out 458657 79672 bytes_in 9315957 79672 station_ip 37.129.130.150 79672 port 15728881 79601 bytes_in 167249 79601 station_ip 37.129.138.3 79601 port 15728805 79601 nas_port_type Virtual 79601 remote_ip 5.5.5.163 79605 username madadi 79605 unique_id port 79605 terminate_cause Lost-Carrier 79605 bytes_out 69346 79605 bytes_in 379710 79605 station_ip 5.120.48.34 79605 port 15728809 79605 nas_port_type Virtual 79605 remote_ip 5.5.5.162 79609 username madadi 79609 unique_id port 79609 terminate_cause Lost-Carrier 79609 bytes_out 23161 79609 bytes_in 255037 79609 station_ip 5.119.196.132 79609 port 15728811 79609 nas_port_type Virtual 79609 remote_ip 5.5.5.160 79610 username soleymani 79610 unique_id port 79610 terminate_cause Lost-Carrier 79610 bytes_out 326985 79610 bytes_in 650578 79610 station_ip 5.119.4.111 79610 port 15728812 79610 nas_port_type Virtual 79610 remote_ip 5.5.5.159 79616 username madadi 79616 unique_id port 79616 terminate_cause Lost-Carrier 79616 bytes_out 386755 79616 bytes_in 3838798 79616 station_ip 5.119.167.33 79616 port 15728815 79616 nas_port_type Virtual 79616 remote_ip 5.5.5.156 79620 username madadi 79620 unique_id port 79620 terminate_cause Lost-Carrier 79620 bytes_out 18308 79620 bytes_in 268411 79620 station_ip 5.120.151.122 79620 port 15728822 79620 nas_port_type Virtual 79620 remote_ip 5.5.5.152 79627 username rashidi 79627 unique_id port 79627 terminate_cause User-Request 79627 bytes_out 7852949 79627 bytes_in 13941422 79627 station_ip 5.120.163.149 79627 port 15728819 79627 nas_port_type Virtual 79627 remote_ip 5.5.5.216 79629 username forozande 79629 unique_id port 79629 terminate_cause User-Request 79629 bytes_out 59084 79629 bytes_in 450124 79629 station_ip 83.122.227.202 79629 port 15728833 79629 nas_port_type Virtual 79629 remote_ip 5.5.5.147 79632 username madadi 79632 kill_reason Maximum check online fails reached 79632 unique_id port 79632 bytes_out 52641 79632 bytes_in 76370 79632 station_ip 5.119.93.235 79632 port 15728836 79632 nas_port_type Virtual 79632 remote_ip 5.5.5.145 79637 username asadi 79637 unique_id port 79637 terminate_cause User-Request 79637 bytes_out 51648 79637 bytes_in 293231 79637 station_ip 37.129.130.150 79637 port 15728840 79637 nas_port_type Virtual 79637 remote_ip 5.5.5.142 79644 username alinezhad 79644 unique_id port 79644 terminate_cause User-Request 79644 bytes_out 0 79644 bytes_in 0 79644 station_ip 5.202.10.191 79644 port 15728848 79644 nas_port_type Virtual 79644 remote_ip 5.5.5.179 79647 username madadi 79647 unique_id port 79647 terminate_cause Lost-Carrier 79647 bytes_out 115999 79647 bytes_in 491493 79647 station_ip 5.119.212.241 79647 port 15728843 79647 nas_port_type Virtual 79647 remote_ip 5.5.5.140 79649 username soleymani 79649 unique_id port 79649 terminate_cause Lost-Carrier 79649 bytes_out 179949 79649 bytes_in 547416 79649 station_ip 5.119.134.138 79649 port 15728846 79649 nas_port_type Virtual 79649 remote_ip 5.5.5.137 79653 username soleymani 79653 unique_id port 79653 terminate_cause Lost-Carrier 79653 bytes_out 68752 79653 bytes_in 338014 79653 station_ip 5.119.130.74 79653 port 15728853 79653 nas_port_type Virtual 79653 remote_ip 5.5.5.133 79654 username mahbobeh 79654 kill_reason Maximum check online fails reached 79654 unique_id port 79654 bytes_out 745918 79654 bytes_in 7252850 79654 station_ip 83.123.229.232 79654 port 15728854 79654 nas_port_type Virtual 79654 remote_ip 5.5.5.161 79655 username soleymani 79655 unique_id port 79655 terminate_cause Lost-Carrier 79655 bytes_out 51230 79655 bytes_in 183099 79655 station_ip 5.120.163.104 79655 port 15728858 79655 nas_port_type Virtual 79655 remote_ip 5.5.5.131 79659 username alinezhad 79659 unique_id port 79659 terminate_cause User-Request 79622 port 15728810 79622 nas_port_type Virtual 79622 remote_ip 5.5.5.161 79624 username alinezhad 79624 unique_id port 79624 terminate_cause User-Request 79624 bytes_out 0 79624 bytes_in 0 79624 station_ip 5.202.10.191 79624 port 15728831 79624 nas_port_type Virtual 79624 remote_ip 5.5.5.179 79630 username forozande 79630 unique_id port 79630 terminate_cause User-Request 79630 bytes_out 39673 79630 bytes_in 398559 79630 station_ip 83.122.227.202 79630 port 15728834 79630 nas_port_type Virtual 79630 remote_ip 5.5.5.147 79631 username amirhosein 79631 unique_id port 79631 terminate_cause Lost-Carrier 79631 bytes_out 740117 79631 bytes_in 10376802 79631 station_ip 5.119.113.132 79631 port 15728832 79631 nas_port_type Virtual 79631 remote_ip 5.5.5.193 79634 username alinezhad 79634 unique_id port 79634 terminate_cause User-Request 79634 bytes_out 47144 79634 bytes_in 105418 79634 station_ip 5.202.10.191 79634 port 15728837 79634 nas_port_type Virtual 79634 remote_ip 5.5.5.179 79636 username zoha 79636 unique_id port 79636 terminate_cause Lost-Carrier 79636 bytes_out 1663927 79636 bytes_in 11643568 79636 station_ip 5.119.189.39 79636 port 15728827 79636 nas_port_type Virtual 79636 remote_ip 5.5.5.149 79646 username mahbobeh 79646 unique_id port 79646 terminate_cause Lost-Carrier 79646 bytes_out 77666 79646 bytes_in 1306398 79646 station_ip 83.123.229.232 79646 port 15728826 79646 nas_port_type Virtual 79646 remote_ip 5.5.5.161 79650 username ebrahimi 79650 unique_id port 79650 terminate_cause User-Request 79650 bytes_out 0 79650 bytes_in 0 79650 station_ip 5.120.30.31 79650 port 15728851 79650 nas_port_type Virtual 79650 remote_ip 5.5.5.138 79651 username madadi 79651 unique_id port 79651 terminate_cause Lost-Carrier 79651 bytes_out 58708 79651 bytes_in 183111 79651 station_ip 5.119.16.34 79651 port 15728850 79651 nas_port_type Virtual 79651 remote_ip 5.5.5.134 79652 username alinezhad 79652 unique_id port 79652 terminate_cause User-Request 79652 bytes_out 0 79652 bytes_in 0 79652 station_ip 5.202.10.191 79652 port 15728857 79652 nas_port_type Virtual 79652 remote_ip 5.5.5.179 79656 username forozande 79656 unique_id port 79656 terminate_cause User-Request 79656 bytes_out 22533 79656 bytes_in 138660 79656 station_ip 37.129.58.114 79656 port 15728859 79656 nas_port_type Virtual 79656 remote_ip 5.5.5.130 79663 username soleymani 79663 unique_id port 79663 terminate_cause Lost-Carrier 79663 bytes_out 39960 79663 bytes_in 207261 79663 station_ip 5.119.56.6 79663 port 15728864 79663 nas_port_type Virtual 79663 remote_ip 5.5.5.126 79670 username iranmanesh 79670 unique_id port 79670 terminate_cause User-Request 79670 bytes_out 0 79670 bytes_in 0 79670 station_ip 83.123.240.110 79670 port 15728878 79670 nas_port_type Virtual 79670 remote_ip 5.5.5.228 79671 username iranmanesh 79671 unique_id port 79671 terminate_cause User-Request 79671 bytes_out 28076 79671 bytes_in 100176 79671 station_ip 83.123.240.110 79671 port 15728880 79671 nas_port_type Virtual 79671 remote_ip 5.5.5.228 79679 username alirezazamani 79679 unique_id port 79679 terminate_cause Lost-Carrier 79679 bytes_out 342298 79679 bytes_in 8732981 79679 station_ip 5.119.135.166 79679 port 15728879 79679 nas_port_type Virtual 79679 remote_ip 5.5.5.223 79684 username madadi 79684 unique_id port 79684 terminate_cause Lost-Carrier 79684 bytes_out 374242 79684 bytes_in 1058081 79684 station_ip 5.120.110.74 79684 port 15728869 79684 nas_port_type Virtual 79684 remote_ip 5.5.5.124 79686 username alirezazamani 79686 unique_id port 79686 terminate_cause Lost-Carrier 79686 bytes_out 761217 79686 bytes_in 21304321 79686 station_ip 5.119.135.166 79659 bytes_out 0 79659 bytes_in 0 79659 station_ip 5.202.10.191 79659 port 15728861 79659 nas_port_type Virtual 79659 remote_ip 5.5.5.179 79660 username alinezhad 79660 unique_id port 79660 terminate_cause User-Request 79660 bytes_out 0 79660 bytes_in 0 79660 station_ip 5.202.10.191 79660 port 15728865 79660 nas_port_type Virtual 79660 remote_ip 5.5.5.179 79662 username aminvpn 79662 unique_id port 79662 terminate_cause Lost-Carrier 79662 bytes_out 219782 79662 bytes_in 1369231 79662 station_ip 5.119.174.135 79662 port 15728860 79662 nas_port_type Virtual 79662 remote_ip 5.5.5.129 79667 username soleymani 79667 unique_id port 79667 terminate_cause Lost-Carrier 79667 bytes_out 208 79667 bytes_in 59826 79667 station_ip 5.119.238.207 79667 port 15728872 79667 nas_port_type Virtual 79667 remote_ip 5.5.5.123 79668 username iranmanesh 79668 unique_id port 79668 terminate_cause User-Request 79668 bytes_out 16730 79668 bytes_in 19297 79668 station_ip 83.123.240.110 79668 port 15728875 79668 nas_port_type Virtual 79668 remote_ip 5.5.5.228 79675 username hamideh 79675 unique_id port 79675 terminate_cause Lost-Carrier 79675 bytes_out 489726 79675 bytes_in 2746129 79675 station_ip 5.120.133.13 79675 port 15728877 79675 nas_port_type Virtual 79675 remote_ip 5.5.5.122 79677 username asadi 79677 unique_id port 79677 terminate_cause User-Request 79677 bytes_out 2208 79677 bytes_in 13441 79677 station_ip 37.129.130.150 79677 port 15728885 79677 nas_port_type Virtual 79677 remote_ip 5.5.5.142 79685 username zamanialireza 79685 unique_id port 79685 terminate_cause User-Request 79685 bytes_out 0 79685 bytes_in 0 79685 station_ip 94.183.213.166 79685 port 15728889 79685 nas_port_type Virtual 79685 remote_ip 5.5.5.120 79688 username hamideh 79688 unique_id port 79688 terminate_cause Lost-Carrier 79688 bytes_out 6819 79688 bytes_in 125094 79688 station_ip 5.120.133.13 79688 port 15728890 79688 nas_port_type Virtual 79688 remote_ip 5.5.5.122 79689 username zamanialireza 79689 unique_id port 79689 terminate_cause User-Request 79689 bytes_out 0 79689 bytes_in 0 79689 station_ip 83.122.155.58 79689 port 15728894 79689 nas_port_type Virtual 79689 remote_ip 5.5.5.117 79693 username pouria 79693 unique_id port 79693 terminate_cause Lost-Carrier 79693 bytes_out 35674632 79693 bytes_in 1148807188 79693 station_ip 151.235.76.41 79693 port 15728862 79693 nas_port_type Virtual 79693 remote_ip 5.5.5.128 79694 username forozande 79694 unique_id port 79694 terminate_cause User-Request 79694 bytes_out 221450 79694 bytes_in 494110 79694 station_ip 83.123.18.146 79694 port 15728899 79694 nas_port_type Virtual 79694 remote_ip 5.5.5.115 79696 username madadi 79696 kill_reason Maximum number of concurrent logins reached 79696 unique_id port 79696 bytes_out 0 79696 bytes_in 0 79696 station_ip 5.119.186.116 79696 port 15728902 79696 nas_port_type Virtual 79697 username madadi 79697 unique_id port 79697 terminate_cause Lost-Carrier 79697 bytes_out 47446 79697 bytes_in 177027 79697 station_ip 5.119.122.145 79697 port 15728898 79697 nas_port_type Virtual 79697 remote_ip 5.5.5.116 79701 username ahmadipour 79701 unique_id port 79701 terminate_cause Lost-Carrier 79701 bytes_out 545747 79701 bytes_in 10986825 79701 station_ip 83.122.186.126 79701 port 15728908 79701 nas_port_type Virtual 79701 remote_ip 5.5.5.112 79703 username rashidi 79703 unique_id port 79703 terminate_cause User-Request 79703 bytes_out 1268209 79703 bytes_in 3707104 79703 station_ip 5.120.163.149 79703 port 15728907 79703 nas_port_type Virtual 79703 remote_ip 5.5.5.216 79708 username alirezazamani 79708 unique_id port 79708 terminate_cause Lost-Carrier 79665 station_ip 5.119.238.207 79665 port 15728871 79665 nas_port_type Virtual 79665 remote_ip 5.5.5.123 79669 username asadi 79669 unique_id port 79669 terminate_cause User-Request 79669 bytes_out 220613 79669 bytes_in 1480941 79669 station_ip 37.129.130.150 79669 port 15728876 79669 nas_port_type Virtual 79669 remote_ip 5.5.5.142 79673 username iranmanesh 79673 unique_id port 79673 terminate_cause User-Request 79673 bytes_out 3951 79673 bytes_in 15835 79673 station_ip 83.123.240.110 79673 port 15728882 79673 nas_port_type Virtual 79673 remote_ip 5.5.5.228 79674 username alinezhad 79674 unique_id port 79674 terminate_cause User-Request 79674 bytes_out 84076 79674 bytes_in 365296 79674 station_ip 5.202.10.191 79674 port 15728870 79674 nas_port_type Virtual 79674 remote_ip 5.5.5.179 79681 username ahmadi 79681 unique_id port 79681 terminate_cause User-Request 79681 bytes_out 24117 79681 bytes_in 64387 79681 station_ip 113.203.20.132 79681 port 15728887 79681 nas_port_type Virtual 79681 remote_ip 5.5.5.154 79691 username alinezhad 79691 unique_id port 79691 terminate_cause User-Request 79691 bytes_out 0 79691 bytes_in 0 79691 station_ip 5.202.10.191 79691 port 15728896 79691 nas_port_type Virtual 79691 remote_ip 5.5.5.179 79704 username alirezazamani 79704 unique_id port 79704 terminate_cause User-Request 79704 bytes_out 115555 79704 bytes_in 925162 79704 station_ip 83.123.95.226 79704 port 15728913 79704 nas_port_type Virtual 79704 remote_ip 5.5.5.109 79706 username alirezazamani 79706 kill_reason Maximum check online fails reached 79706 unique_id port 79706 bytes_out 106341 79706 bytes_in 2970933 79706 station_ip 5.119.135.166 79706 port 15728912 79706 nas_port_type Virtual 79706 remote_ip 5.5.5.223 79709 username alirezazamani 79709 unique_id port 79709 terminate_cause Lost-Carrier 79709 bytes_out 171744 79709 bytes_in 3409165 79709 station_ip 5.119.135.166 79709 port 15728911 79709 nas_port_type Virtual 79709 remote_ip 5.5.5.110 79712 username mobina 79712 unique_id port 79712 terminate_cause Lost-Carrier 79712 bytes_out 5098392 79712 bytes_in 76939342 79712 station_ip 5.124.119.194 79712 port 15728813 79712 nas_port_type Virtual 79712 remote_ip 5.5.5.158 79715 username madadi 79715 kill_reason Maximum number of concurrent logins reached 79715 unique_id port 79715 bytes_out 0 79715 bytes_in 0 79715 station_ip 5.120.36.65 79715 port 15728922 79715 nas_port_type Virtual 79717 username madadi 79717 unique_id port 79717 terminate_cause Lost-Carrier 79717 bytes_out 52642 79717 bytes_in 211440 79717 station_ip 5.120.154.157 79717 port 15728920 79717 nas_port_type Virtual 79717 remote_ip 5.5.5.105 79718 username amirhosein 79718 unique_id port 79718 terminate_cause Lost-Carrier 79718 bytes_out 3664948 79718 bytes_in 67717448 79718 station_ip 5.119.113.132 79718 port 15728905 79718 nas_port_type Virtual 79718 remote_ip 5.5.5.193 79722 username soleymani 79722 unique_id port 79722 terminate_cause Lost-Carrier 79722 bytes_out 181373 79722 bytes_in 1023451 79722 station_ip 5.120.130.224 79722 port 15728921 79722 nas_port_type Virtual 79722 remote_ip 5.5.5.104 79725 username amin.insta22 79725 unique_id port 79725 terminate_cause Lost-Carrier 79725 bytes_out 1988280 79725 bytes_in 50589677 79725 station_ip 5.119.69.133 79725 port 15728924 79725 nas_port_type Virtual 79725 remote_ip 5.5.5.102 79729 username alinezhad 79729 unique_id port 79729 terminate_cause User-Request 79729 bytes_out 25873 79729 bytes_in 111662 79729 station_ip 5.202.12.239 79729 port 15728936 79729 nas_port_type Virtual 79729 remote_ip 5.5.5.94 79732 username aminvpn 79732 mac 79732 bytes_out 0 79732 bytes_in 0 79672 nas_port_type Virtual 79672 remote_ip 5.5.5.142 79676 username asadi 79676 unique_id port 79676 terminate_cause User-Request 79676 bytes_out 80860 79676 bytes_in 115751 79676 station_ip 37.129.130.150 79676 port 15728883 79676 nas_port_type Virtual 79676 remote_ip 5.5.5.142 79678 username iranmanesh 79678 unique_id port 79678 terminate_cause User-Request 79678 bytes_out 66166 79678 bytes_in 571388 79678 station_ip 83.123.240.110 79678 port 15728886 79678 nas_port_type Virtual 79678 remote_ip 5.5.5.228 79680 username zoha 79680 unique_id port 79680 terminate_cause Lost-Carrier 79680 bytes_out 892946 79680 bytes_in 3531581 79680 station_ip 5.119.189.39 79680 port 15728873 79680 nas_port_type Virtual 79680 remote_ip 5.5.5.149 81259 bytes_out 0 81259 bytes_in 0 81259 station_ip 5.119.30.76 81259 port 29 81259 unique_id port 81259 remote_ip 10.8.1.10 81261 username ahmadi 81261 unique_id port 81261 terminate_cause User-Request 79683 username alinezhad 79683 unique_id port 79683 terminate_cause User-Request 79683 bytes_out 0 79683 bytes_in 0 79683 station_ip 5.202.10.191 79683 port 15728888 79683 nas_port_type Virtual 79683 remote_ip 5.5.5.179 79687 username asadi 79687 unique_id port 79687 terminate_cause User-Request 79687 bytes_out 3707 79687 bytes_in 17608 79687 station_ip 37.129.130.150 79687 port 15728891 79687 nas_port_type Virtual 79687 remote_ip 5.5.5.142 79692 username madadi 79692 unique_id port 79692 terminate_cause Lost-Carrier 79692 bytes_out 1839227 79692 bytes_in 7776821 79692 station_ip 5.120.120.122 79692 port 15728892 79692 nas_port_type Virtual 79692 remote_ip 5.5.5.119 79699 username alinezhad 79699 unique_id port 79699 terminate_cause User-Request 79699 bytes_out 0 79699 bytes_in 0 79699 station_ip 5.202.10.191 79699 port 15728906 79699 nas_port_type Virtual 79699 remote_ip 5.5.5.179 79711 username hamideh 79711 unique_id port 79711 terminate_cause Lost-Carrier 79711 bytes_out 22014 79711 bytes_in 191977 79711 station_ip 5.120.133.13 79711 port 15728915 79711 nas_port_type Virtual 79711 remote_ip 5.5.5.122 79716 username madadi 79716 unique_id port 79716 terminate_cause Lost-Carrier 79716 bytes_out 75278 79716 bytes_in 232373 79716 station_ip 5.119.136.101 79716 port 15728918 79716 nas_port_type Virtual 79716 remote_ip 5.5.5.106 79724 username soleymani 79724 unique_id port 79724 terminate_cause Lost-Carrier 79724 bytes_out 26138 79724 bytes_in 155500 79724 station_ip 5.119.12.213 79724 port 15728927 79724 nas_port_type Virtual 79724 remote_ip 5.5.5.100 79726 username soleymani 79726 unique_id port 79726 terminate_cause Lost-Carrier 79726 bytes_out 18468 79726 bytes_in 157585 79726 station_ip 5.119.217.91 79726 port 15728930 79726 nas_port_type Virtual 79726 remote_ip 5.5.5.99 79728 username amirhosein 79728 unique_id port 79728 terminate_cause Lost-Carrier 79728 bytes_out 411186 79728 bytes_in 1086719 79728 station_ip 5.119.113.132 79728 port 15728933 79728 nas_port_type Virtual 79728 remote_ip 5.5.5.193 79733 username forozande 79733 unique_id port 79733 terminate_cause User-Request 79733 bytes_out 89424 79733 bytes_in 819604 79733 station_ip 113.203.99.144 79733 port 15728938 79733 nas_port_type Virtual 79733 remote_ip 5.5.5.92 79735 username forozande 79735 unique_id port 79735 terminate_cause User-Request 79735 bytes_out 100383 79735 bytes_in 1383567 79735 station_ip 113.203.99.144 79735 port 15728939 79735 nas_port_type Virtual 79735 remote_ip 5.5.5.92 79736 username aminvpn 79736 mac 79736 bytes_out 0 79736 bytes_in 0 79736 station_ip 5.120.154.73 79736 port 9 79736 unique_id port 81261 bytes_out 0 79686 port 15728884 79686 nas_port_type Virtual 79686 remote_ip 5.5.5.121 79690 username madadi 79690 kill_reason Maximum check online fails reached 79690 unique_id port 79690 bytes_out 28861 79690 bytes_in 75138 79690 station_ip 5.120.37.213 79690 port 15728893 79690 nas_port_type Virtual 79690 remote_ip 5.5.5.118 79695 username madadi 79695 kill_reason Maximum number of concurrent logins reached 79695 unique_id port 79695 bytes_out 0 79695 bytes_in 0 79695 station_ip 5.119.186.116 79695 port 15728901 79695 nas_port_type Virtual 79698 username amirhosein 79698 unique_id port 79698 terminate_cause Lost-Carrier 79698 bytes_out 984926 79698 bytes_in 22051891 79698 station_ip 5.119.113.132 79698 port 15728895 79698 nas_port_type Virtual 79698 remote_ip 5.5.5.193 79700 username madadi 79700 unique_id port 79700 terminate_cause Lost-Carrier 79700 bytes_out 27401 79700 bytes_in 172314 79700 station_ip 5.119.97.223 79700 port 15728900 79700 nas_port_type Virtual 79700 remote_ip 5.5.5.114 79702 username zoha 79702 unique_id port 79702 terminate_cause User-Request 79702 bytes_out 1291559 79702 bytes_in 8701670 79702 station_ip 5.119.189.39 79702 port 15728897 79702 nas_port_type Virtual 79702 remote_ip 5.5.5.149 79705 username soleymani 79705 unique_id port 79705 terminate_cause Lost-Carrier 79705 bytes_out 33022 79705 bytes_in 248748 79705 station_ip 5.119.53.242 79705 port 15728909 79705 nas_port_type Virtual 79705 remote_ip 5.5.5.111 79707 username alirezazamani 79707 unique_id port 79707 terminate_cause User-Request 79707 bytes_out 277688 79707 bytes_in 1953936 79707 station_ip 83.123.95.226 79707 port 15728914 79707 nas_port_type Virtual 79707 remote_ip 5.5.5.109 79714 username alirezazamani 79714 unique_id port 79714 terminate_cause Lost-Carrier 79714 bytes_out 1118401 79714 bytes_in 36730766 79714 station_ip 5.119.135.166 79714 port 15728916 79714 nas_port_type Virtual 79714 remote_ip 5.5.5.108 79720 username alirezazamani 79720 unique_id port 79720 terminate_cause Lost-Carrier 79720 bytes_out 581781 79720 bytes_in 14019345 79720 station_ip 5.119.135.166 79720 port 15728919 79720 nas_port_type Virtual 79720 remote_ip 5.5.5.110 79723 username alinezhad 79723 unique_id port 79723 terminate_cause User-Request 79723 bytes_out 0 79723 bytes_in 0 79723 station_ip 5.202.10.191 79723 port 15728928 79723 nas_port_type Virtual 79723 remote_ip 5.5.5.179 79727 username madadi 79727 unique_id port 79727 terminate_cause Lost-Carrier 79727 bytes_out 173021 79727 bytes_in 574777 79727 station_ip 5.120.36.65 79727 port 15728923 79727 nas_port_type Virtual 79727 remote_ip 5.5.5.103 79731 username aminvpn 79731 kill_reason Another user logged on this global unique id 79731 mac 79731 bytes_out 0 79731 bytes_in 0 79731 station_ip 5.120.154.73 79731 port 9 79731 unique_id port 79731 remote_ip 10.8.0.6 79739 username aminvpn 79739 mac 79739 bytes_out 0 79739 bytes_in 0 79739 station_ip 5.120.154.73 79739 port 9 79739 unique_id port 79739 remote_ip 10.8.0.6 79745 username aminvpn 79745 mac 79745 bytes_out 0 79745 bytes_in 0 79745 station_ip 5.120.154.73 79745 port 9 79745 unique_id port 79745 remote_ip 10.8.0.6 79751 username alirezazamani 79751 unique_id port 79751 terminate_cause User-Request 79751 bytes_out 0 79751 bytes_in 0 79751 station_ip 37.129.183.185 79751 port 15728951 79751 nas_port_type Virtual 79751 remote_ip 5.5.5.87 79756 username reza 79756 unique_id port 79756 terminate_cause User-Request 79756 bytes_out 99635 79756 bytes_in 2094370 79756 station_ip 83.122.109.101 79756 port 15728954 79756 nas_port_type Virtual 79756 remote_ip 5.5.5.84 79708 bytes_out 304161 79708 bytes_in 5478728 79708 station_ip 5.119.135.166 79708 port 15728904 79708 nas_port_type Virtual 79708 remote_ip 5.5.5.121 79710 username madadi 79710 unique_id port 79710 terminate_cause Lost-Carrier 79710 bytes_out 248891 79710 bytes_in 597000 79710 station_ip 5.119.186.116 79710 port 15728903 79710 nas_port_type Virtual 79710 remote_ip 5.5.5.113 79713 username hamideh 79713 unique_id port 79713 terminate_cause Lost-Carrier 79713 bytes_out 54513 79713 bytes_in 150781 79713 station_ip 5.120.133.13 79713 port 15728917 79713 nas_port_type Virtual 79713 remote_ip 5.5.5.107 79719 username forozande 79719 unique_id port 79719 terminate_cause User-Request 79719 bytes_out 72727 79719 bytes_in 152172 79719 station_ip 83.122.57.230 79719 port 15728926 79719 nas_port_type Virtual 79719 remote_ip 5.5.5.101 79721 username soleymani 79749 nas_port_type Virtual 79721 kill_reason Maximum number of concurrent logins reached 79721 unique_id port 79721 bytes_out 0 79721 bytes_in 0 79721 station_ip 5.119.217.91 79721 port 15728929 79721 nas_port_type Virtual 79730 username zamanialireza 79730 unique_id port 79730 terminate_cause User-Request 79730 bytes_out 135191 79730 bytes_in 524629 79730 station_ip 83.122.201.74 79730 port 15728937 79730 nas_port_type Virtual 79730 remote_ip 5.5.5.93 79737 username alinezhad 79737 unique_id port 79737 terminate_cause User-Request 79737 bytes_out 0 79737 bytes_in 0 79737 station_ip 5.202.26.147 79737 port 15728941 79737 nas_port_type Virtual 79737 remote_ip 5.5.5.90 79741 username amin.insta22 79741 unique_id port 79741 terminate_cause Lost-Carrier 79741 bytes_out 3038376 79741 bytes_in 34432929 79741 station_ip 5.119.38.183 79741 port 15728935 79741 nas_port_type Virtual 79741 remote_ip 5.5.5.95 79747 username alirezazamani 79747 unique_id port 79747 terminate_cause User-Request 79747 bytes_out 100437 79747 bytes_in 506732 79747 station_ip 37.129.183.185 79747 port 15728948 79747 nas_port_type Virtual 79747 remote_ip 5.5.5.87 79748 username alinezhad 79748 unique_id port 79748 terminate_cause User-Request 79748 bytes_out 24449 79748 bytes_in 62760 79748 station_ip 5.202.26.147 79748 port 15728946 79748 nas_port_type Virtual 79748 remote_ip 5.5.5.90 79752 username alirezazamani 79752 unique_id port 79752 terminate_cause User-Request 79752 bytes_out 0 79752 bytes_in 0 79752 station_ip 37.129.183.185 79752 port 15728952 79752 nas_port_type Virtual 79752 remote_ip 5.5.5.87 79757 username ahmadi 79757 unique_id port 79757 terminate_cause User-Request 79757 bytes_out 110822 79757 bytes_in 1258545 79757 station_ip 113.203.60.132 79757 port 15728949 79757 nas_port_type Virtual 79757 remote_ip 5.5.5.86 79762 username forozande 79762 unique_id port 79762 terminate_cause User-Request 79762 bytes_out 220540 79762 bytes_in 6496932 79762 station_ip 83.123.176.163 79762 port 15728963 79762 nas_port_type Virtual 79762 remote_ip 5.5.5.82 79764 username ahmad 79764 kill_reason Absolute expiration date has reached 79764 unique_id port 79764 bytes_out 0 79764 bytes_in 0 79764 station_ip 86.57.73.204 79764 port 15728965 79764 nas_port_type Virtual 79767 username madadi 79767 unique_id port 79767 terminate_cause Lost-Carrier 79767 bytes_out 82651 79767 bytes_in 246932 79767 station_ip 5.120.89.20 79767 port 15728957 79767 nas_port_type Virtual 79767 remote_ip 5.5.5.83 79770 username zamanialireza 79770 unique_id port 79770 terminate_cause User-Request 79770 bytes_out 2164209 79770 bytes_in 5889855 79770 station_ip 83.122.6.172 79770 port 15728958 79770 nas_port_type Virtual 79770 remote_ip 5.5.5.85 79775 username reza 79775 unique_id port 79775 terminate_cause User-Request 79732 station_ip 5.120.154.73 79732 port 9 79732 unique_id port 79734 username zamanialireza 79734 unique_id port 79734 terminate_cause Lost-Carrier 79734 bytes_out 1142248 79734 bytes_in 17956421 79734 station_ip 94.183.213.166 79734 port 15728925 79734 nas_port_type Virtual 79734 remote_ip 5.5.5.120 79738 username aminvpn 79738 mac 79738 bytes_out 0 79738 bytes_in 0 79738 station_ip 5.120.154.73 79738 port 9 79738 unique_id port 79738 remote_ip 10.8.0.6 79743 username alinezhad 79743 unique_id port 79743 terminate_cause User-Request 79743 bytes_out 31019 79743 bytes_in 260741 79743 station_ip 5.202.26.147 79743 port 15728944 79743 nas_port_type Virtual 79743 remote_ip 5.5.5.90 79749 username alirezazamani 79749 unique_id port 79749 terminate_cause User-Request 79749 bytes_out 0 79749 bytes_in 0 79749 station_ip 37.129.183.185 79749 port 15728950 79749 remote_ip 5.5.5.87 79750 username soleymani 79750 unique_id port 79750 terminate_cause Lost-Carrier 79750 bytes_out 49610 79750 bytes_in 353842 79750 station_ip 5.119.199.163 79750 port 15728945 79750 nas_port_type Virtual 79750 remote_ip 5.5.5.88 79753 username zamanialireza 79753 unique_id port 79753 terminate_cause User-Request 79753 bytes_out 61539 79753 bytes_in 132986 79753 station_ip 83.122.6.172 79753 port 15728953 79753 nas_port_type Virtual 79753 remote_ip 5.5.5.85 79755 username madadi 79755 unique_id port 79755 terminate_cause Lost-Carrier 79755 bytes_out 234403 79755 bytes_in 633628 79755 station_ip 5.119.144.44 79755 port 15728942 79755 nas_port_type Virtual 79755 remote_ip 5.5.5.89 79759 username ahmad 79759 kill_reason Absolute expiration date has reached 79759 unique_id port 79759 bytes_out 0 79759 bytes_in 0 79759 station_ip 86.57.73.204 79759 port 15728961 79759 nas_port_type Virtual 79761 username forozande 79761 unique_id port 79761 terminate_cause User-Request 79761 bytes_out 79134 79761 bytes_in 751980 79761 station_ip 83.123.176.163 79761 port 15728962 79761 nas_port_type Virtual 79761 remote_ip 5.5.5.82 79763 username hamideh 79763 unique_id port 79763 terminate_cause Lost-Carrier 79763 bytes_out 84890 79763 bytes_in 214773 79763 station_ip 5.120.133.13 79763 port 15728955 79763 nas_port_type Virtual 79763 remote_ip 5.5.5.107 79765 username forozande 79765 unique_id port 79765 terminate_cause User-Request 79765 bytes_out 224388 79765 bytes_in 6457712 79765 station_ip 83.123.176.163 79765 port 15728964 79765 nas_port_type Virtual 79765 remote_ip 5.5.5.82 79768 username aminvpn 79768 kill_reason Another user logged on this global unique id 79768 mac 79768 bytes_out 0 79768 bytes_in 0 79768 station_ip 5.120.154.73 79768 port 9 79768 unique_id port 79773 username reza 79773 unique_id port 79773 terminate_cause User-Request 79773 bytes_out 259337 79773 bytes_in 7201238 79773 station_ip 83.122.109.101 79773 port 15728967 79773 nas_port_type Virtual 79773 remote_ip 5.5.5.84 79779 username soleymani 79779 unique_id port 79779 terminate_cause Lost-Carrier 79779 bytes_out 307061 79779 bytes_in 2732981 79779 station_ip 5.119.60.46 79779 port 15728969 79779 nas_port_type Virtual 79779 remote_ip 5.5.5.81 79782 username forozande 79782 unique_id port 79782 terminate_cause User-Request 79782 bytes_out 349474 79782 bytes_in 7395506 79782 station_ip 37.129.235.112 79782 port 15728978 79782 nas_port_type Virtual 79782 remote_ip 5.5.5.78 79786 username ahmadipour 79786 unique_id port 79786 terminate_cause Lost-Carrier 79786 bytes_out 321773 79786 bytes_in 5849216 79786 station_ip 83.122.184.70 79786 port 15728980 79786 nas_port_type Virtual 79786 remote_ip 5.5.5.76 79736 remote_ip 10.8.0.6 79740 username madadi 79740 unique_id port 79740 terminate_cause Lost-Carrier 79740 bytes_out 1171044 79740 bytes_in 3006878 79740 station_ip 5.120.155.177 79740 port 15728934 79740 nas_port_type Virtual 79740 remote_ip 5.5.5.96 79742 username mamal 79742 unique_id port 79742 terminate_cause User-Request 79742 bytes_out 12126721 79742 bytes_in 331942156 79742 station_ip 83.122.214.16 79742 port 15728932 79742 nas_port_type Virtual 79742 remote_ip 5.5.5.97 79744 username mahbobeh 79744 unique_id port 79744 terminate_cause Lost-Carrier 79744 bytes_out 4576087 79744 bytes_in 80632067 79744 station_ip 83.123.245.52 79744 port 15728931 79744 nas_port_type Virtual 79744 remote_ip 5.5.5.98 79746 username amirhosein 79746 unique_id port 79746 terminate_cause Lost-Carrier 79746 bytes_out 149818 79746 bytes_in 827340 79746 station_ip 5.119.113.132 79746 port 15728943 79746 nas_port_type Virtual 79746 remote_ip 5.5.5.193 79754 username alinezhad 79754 unique_id port 79754 terminate_cause User-Request 79754 bytes_out 0 79754 bytes_in 0 79754 station_ip 5.202.26.147 79754 port 15728956 79754 nas_port_type Virtual 79754 remote_ip 5.5.5.90 79758 username ahmad 79758 kill_reason Absolute expiration date has reached 79758 unique_id port 79758 bytes_out 0 79758 bytes_in 0 79758 station_ip 86.57.73.204 79758 port 15728960 79758 nas_port_type Virtual 79771 username aminvpn 79771 kill_reason Another user logged on this global unique id 79771 mac 79771 bytes_out 0 79771 bytes_in 0 79771 station_ip 5.120.154.73 79771 port 9 79771 unique_id port 79772 username aminvpn 79772 kill_reason Another user logged on this global unique id 79772 mac 79772 bytes_out 0 79772 bytes_in 0 79772 station_ip 5.120.154.73 79772 port 9 79772 unique_id port 79774 username aminvpn 79774 kill_reason Another user logged on this global unique id 79774 mac 79774 bytes_out 0 79774 bytes_in 0 79774 station_ip 5.120.154.73 79774 port 9 79774 unique_id port 79776 username aminvpn 79776 kill_reason Another user logged on this global unique id 79776 mac 79776 bytes_out 0 79776 bytes_in 0 79776 station_ip 5.120.154.73 79776 port 9 79776 unique_id port 79777 username aminvpn 79777 kill_reason Another user logged on this global unique id 79777 mac 79777 bytes_out 0 79777 bytes_in 0 79777 station_ip 5.120.154.73 79777 port 9 79777 unique_id port 79778 username amirhosein 79778 unique_id port 79778 terminate_cause Lost-Carrier 79778 bytes_out 1107005 79778 bytes_in 33734057 79778 station_ip 5.119.113.132 79778 port 15728966 79778 nas_port_type Virtual 79778 remote_ip 5.5.5.193 79780 username madadi 79780 unique_id port 79780 terminate_cause Lost-Carrier 79780 bytes_out 214662 79780 bytes_in 645708 79780 station_ip 5.120.89.20 79780 port 15728968 79780 nas_port_type Virtual 79780 remote_ip 5.5.5.83 79781 username aminvpn 79781 mac 79781 bytes_out 0 79781 bytes_in 0 79781 station_ip 5.120.154.73 79781 port 9 79781 unique_id port 79783 username reza 79783 unique_id port 79783 terminate_cause User-Request 79783 bytes_out 128485 79783 bytes_in 3084229 79783 station_ip 83.122.109.101 79783 port 15728974 79783 nas_port_type Virtual 79783 remote_ip 5.5.5.84 79785 username mamal 79785 unique_id port 79785 terminate_cause User-Request 79785 bytes_out 7852722 79785 bytes_in 223156644 79785 station_ip 83.122.214.16 79785 port 15728975 79785 nas_port_type Virtual 79785 remote_ip 5.5.5.97 79791 username ahmadi 79791 unique_id port 79791 terminate_cause User-Request 79791 bytes_out 17086 79791 bytes_in 105468 79791 station_ip 113.203.60.132 79791 port 15728986 79760 username alinezhad 79760 unique_id port 79760 terminate_cause User-Request 79760 bytes_out 0 79760 bytes_in 0 79760 station_ip 5.202.26.147 79760 port 15728959 79760 nas_port_type Virtual 79760 remote_ip 5.5.5.90 79766 username aminvpn 79766 kill_reason Another user logged on this global unique id 79766 mac 79766 bytes_out 0 79766 bytes_in 0 79766 station_ip 5.120.154.73 79766 port 9 79766 unique_id port 79766 remote_ip 10.8.0.6 81261 bytes_in 0 81261 station_ip 83.123.22.222 81261 port 15728824 81261 nas_port_type Virtual 81261 remote_ip 5.5.5.157 81264 username forozande 81264 unique_id port 81264 terminate_cause User-Request 81264 bytes_out 0 79784 username alinezhad 79784 unique_id port 79784 terminate_cause User-Request 79784 bytes_out 10458 79784 bytes_in 16790 79784 station_ip 5.202.30.14 79784 port 15728979 79784 nas_port_type Virtual 79784 remote_ip 5.5.5.77 79787 username alirezazamani 79787 unique_id port 79787 terminate_cause User-Request 79787 bytes_out 237200 79787 bytes_in 1346895 79787 station_ip 37.129.183.185 79787 port 15728981 79787 nas_port_type Virtual 79787 remote_ip 5.5.5.87 79795 username zoha 79795 unique_id port 79795 terminate_cause User-Request 79795 bytes_out 3145515 79795 bytes_in 15740545 79795 station_ip 5.119.189.39 79795 port 15728947 79795 nas_port_type Virtual 79795 remote_ip 5.5.5.149 79798 username mamal 79798 unique_id port 79798 terminate_cause User-Request 79798 bytes_out 118291 79798 bytes_in 2241393 79798 station_ip 83.122.214.16 79798 port 15728993 79798 nas_port_type Virtual 79798 remote_ip 5.5.5.97 79802 username ahmadi 79802 unique_id port 79802 terminate_cause User-Request 79802 bytes_out 16321 79802 bytes_in 97291 79802 station_ip 113.203.60.132 79802 port 15729000 79802 nas_port_type Virtual 79802 remote_ip 5.5.5.86 79806 username soleymani 79806 kill_reason Maximum number of concurrent logins reached 79806 unique_id port 79806 bytes_out 0 79806 bytes_in 0 79806 station_ip 5.120.175.113 79806 port 15729006 79806 nas_port_type Virtual 79808 username alirezazamani 79808 unique_id port 79808 terminate_cause User-Request 79808 bytes_out 447358 79808 bytes_in 11472074 79808 station_ip 37.129.66.15 79808 port 15729003 79808 nas_port_type Virtual 79808 remote_ip 5.5.5.70 79810 username soleymani 79810 kill_reason Maximum number of concurrent logins reached 79810 unique_id port 79810 bytes_out 0 79810 bytes_in 0 79810 station_ip 5.120.175.113 79810 port 15729009 79810 nas_port_type Virtual 79814 username soleymani 79814 kill_reason Maximum number of concurrent logins reached 79814 unique_id port 79814 bytes_out 0 79814 bytes_in 0 79814 station_ip 5.120.102.81 79814 port 15729012 79814 nas_port_type Virtual 79816 username soleymani 79816 kill_reason Maximum number of concurrent logins reached 79816 unique_id port 79816 bytes_out 0 79816 bytes_in 0 79816 station_ip 5.120.102.81 79816 port 15729014 79816 nas_port_type Virtual 79818 username soleymani 79818 kill_reason Maximum number of concurrent logins reached 79818 unique_id port 79818 bytes_out 0 79818 bytes_in 0 79818 station_ip 5.120.102.81 79818 port 15729016 79818 nas_port_type Virtual 79825 username soleymani 79825 kill_reason Maximum number of concurrent logins reached 79825 unique_id port 79825 bytes_out 0 79825 bytes_in 0 79825 station_ip 5.119.82.235 79825 port 15729023 79825 nas_port_type Virtual 79827 username soleymani 79827 kill_reason Maximum number of concurrent logins reached 79827 unique_id port 79827 bytes_out 0 79827 bytes_in 0 79827 station_ip 5.119.82.235 79827 port 15729025 79827 nas_port_type Virtual 79829 username soleymani 79829 kill_reason Maximum number of concurrent logins reached 79829 unique_id port 79829 bytes_out 0 79775 bytes_out 3138 79775 bytes_in 15095 79775 station_ip 83.122.109.101 79775 port 15728972 79775 nas_port_type Virtual 79775 remote_ip 5.5.5.84 79790 username soleymani 79790 unique_id port 79790 terminate_cause Lost-Carrier 79790 bytes_out 211404 79790 bytes_in 693884 79790 station_ip 5.119.42.175 79790 port 15728983 79790 nas_port_type Virtual 79790 remote_ip 5.5.5.74 79793 username alinezhad 79793 unique_id port 79793 terminate_cause User-Request 79793 bytes_out 0 79793 bytes_in 0 79793 station_ip 5.202.15.244 79793 port 15728988 79793 nas_port_type Virtual 79793 remote_ip 5.5.5.73 79805 username soleymani 79805 kill_reason Maximum number of concurrent logins reached 79805 unique_id port 79805 bytes_out 0 79805 bytes_in 0 79805 station_ip 5.120.175.113 79805 port 15729005 79805 nas_port_type Virtual 79809 username soleymani 79809 kill_reason Maximum number of concurrent logins reached 79809 unique_id port 79809 bytes_out 0 79809 bytes_in 0 79809 station_ip 5.120.175.113 79809 port 15729008 79809 nas_port_type Virtual 79815 username soleymani 79815 kill_reason Maximum number of concurrent logins reached 79815 unique_id port 79815 bytes_out 0 79815 bytes_in 0 79815 station_ip 5.120.102.81 79815 port 15729013 79815 nas_port_type Virtual 79817 username soleymani 79817 kill_reason Maximum number of concurrent logins reached 79817 unique_id port 79817 bytes_out 0 79817 bytes_in 0 79817 station_ip 5.120.102.81 79817 port 15729015 79817 nas_port_type Virtual 79826 username soleymani 79826 kill_reason Maximum number of concurrent logins reached 79826 unique_id port 79826 bytes_out 0 79826 bytes_in 0 79826 station_ip 5.119.82.235 79826 port 15729024 79826 nas_port_type Virtual 79828 username soleymani 79828 kill_reason Maximum number of concurrent logins reached 79828 unique_id port 79828 bytes_out 0 79828 bytes_in 0 79828 station_ip 5.119.82.235 79828 port 15729026 79828 nas_port_type Virtual 79831 username soleymani 79831 kill_reason Maximum number of concurrent logins reached 79831 unique_id port 79831 bytes_out 0 79831 bytes_in 0 79831 station_ip 5.120.134.183 79831 port 15729029 79831 nas_port_type Virtual 81263 bytes_out 46292 81263 bytes_in 802348 81263 station_ip 37.129.43.55 81263 port 15728823 81263 nas_port_type Virtual 81263 remote_ip 5.5.5.158 81268 username aminvpn 81268 mac 81268 bytes_out 0 79841 username soleymani 79841 unique_id port 79841 terminate_cause Lost-Carrier 79841 bytes_out 108303 79841 bytes_in 720933 79841 station_ip 5.120.134.183 79841 port 15729030 79841 nas_port_type Virtual 79841 remote_ip 5.5.5.66 79842 username abdilahyar 79842 unique_id port 79842 terminate_cause Lost-Carrier 79842 bytes_out 853770 79842 bytes_in 9560626 79842 station_ip 5.119.191.163 79842 port 15728973 79842 nas_port_type Virtual 79842 remote_ip 5.5.5.206 79853 username asadi 79853 unique_id port 79853 terminate_cause User-Request 79853 bytes_out 85957 79853 bytes_in 907336 79853 station_ip 37.129.95.101 79853 port 15729054 79853 nas_port_type Virtual 79853 remote_ip 5.5.5.59 79855 username asadi 79855 unique_id port 79855 terminate_cause User-Request 79855 bytes_out 24918 79855 bytes_in 201460 79855 station_ip 37.129.95.101 79855 port 15729056 79855 nas_port_type Virtual 79855 remote_ip 5.5.5.59 79868 username zamanialireza 79868 unique_id port 79868 terminate_cause Lost-Carrier 79868 bytes_out 78151751 79868 bytes_in 455194094 79868 station_ip 5.120.76.92 79868 port 15729049 79868 nas_port_type Virtual 79868 remote_ip 5.5.5.61 79869 username asadi 79869 unique_id port 79869 terminate_cause User-Request 79869 bytes_out 6733 79869 bytes_in 23705 79869 station_ip 37.129.95.101 79869 port 15729068 81268 bytes_in 0 79788 username zamanialireza 79788 unique_id port 79788 terminate_cause User-Request 79788 bytes_out 6137515 79788 bytes_in 10742000 79788 station_ip 94.183.213.166 79788 port 15728977 79788 nas_port_type Virtual 79788 remote_ip 5.5.5.120 81264 bytes_in 0 81264 station_ip 37.129.43.55 81264 port 15728825 81264 nas_port_type Virtual 81264 remote_ip 5.5.5.158 81266 username madadi 81266 unique_id port 81266 terminate_cause Lost-Carrier 81266 bytes_out 105137 79794 username reza 79794 unique_id port 79794 terminate_cause User-Request 79794 bytes_out 495167 79794 bytes_in 2893989 79794 station_ip 83.122.109.101 79794 port 15728984 79794 nas_port_type Virtual 79794 remote_ip 5.5.5.84 79797 username mamal 79797 unique_id port 79797 terminate_cause User-Request 79797 bytes_out 2623680 79797 bytes_in 27387633 79797 station_ip 83.122.214.16 79797 port 15728989 79797 nas_port_type Virtual 79797 remote_ip 5.5.5.97 79800 username alirezazamani 79800 unique_id port 79800 terminate_cause User-Request 79800 bytes_out 470923 79800 bytes_in 6310075 79800 station_ip 37.129.66.15 79800 port 15728998 79800 nas_port_type Virtual 79800 remote_ip 5.5.5.70 79801 username alirezazamani 79801 unique_id port 79801 terminate_cause User-Request 79801 bytes_out 0 79801 bytes_in 0 79801 station_ip 5.119.163.210 79801 port 15729001 79801 nas_port_type Virtual 79801 remote_ip 5.5.5.68 79804 username zoha 79804 unique_id port 79804 terminate_cause Lost-Carrier 79804 bytes_out 433381 79804 bytes_in 3036777 79804 station_ip 5.119.189.39 79804 port 15728992 79804 nas_port_type Virtual 79804 remote_ip 5.5.5.72 79807 username soleymani 79807 kill_reason Maximum number of concurrent logins reached 79807 unique_id port 79807 bytes_out 0 79807 bytes_in 0 79807 station_ip 5.120.175.113 79807 port 15729007 79807 nas_port_type Virtual 79812 username soleymani 79812 kill_reason Maximum number of concurrent logins reached 79812 unique_id port 79812 bytes_out 0 79812 bytes_in 0 79812 station_ip 5.120.102.81 79812 port 15729010 79812 nas_port_type Virtual 79819 username soleymani 79819 kill_reason Maximum number of concurrent logins reached 79819 unique_id port 79819 bytes_out 0 79819 bytes_in 0 79819 station_ip 5.120.102.81 79819 port 15729017 79819 nas_port_type Virtual 79821 username soleymani 79821 kill_reason Maximum number of concurrent logins reached 79821 unique_id port 79821 bytes_out 0 79821 bytes_in 0 79821 station_ip 5.120.102.81 79821 port 15729019 79821 nas_port_type Virtual 79823 username soleymani 79823 kill_reason Maximum number of concurrent logins reached 79823 unique_id port 79823 bytes_out 0 79823 bytes_in 0 79823 station_ip 5.120.102.81 79823 port 15729021 79823 nas_port_type Virtual 79832 username soleymani 79832 unique_id port 79832 terminate_cause Lost-Carrier 79832 bytes_out 829872 79832 bytes_in 658380 79832 station_ip 5.119.171.205 79832 port 15728995 79832 nas_port_type Virtual 79832 remote_ip 5.5.5.71 79834 username reza 79834 unique_id port 79834 terminate_cause Lost-Carrier 79834 bytes_out 2255 79834 bytes_in 125522 79834 station_ip 83.122.109.101 79834 port 15728997 79834 nas_port_type Virtual 79834 remote_ip 5.5.5.84 79838 username shahnaz 79838 unique_id port 79838 terminate_cause Lost-Carrier 79838 bytes_out 2202497 79838 bytes_in 38567147 79838 station_ip 5.120.14.248 79838 port 15728976 79838 nas_port_type Virtual 79838 remote_ip 5.5.5.79 81266 bytes_in 217196 81266 station_ip 5.120.80.13 81266 port 15728826 81266 nas_port_type Virtual 81266 remote_ip 5.5.5.156 81269 username forozande 81269 unique_id port 81269 terminate_cause User-Request 81269 bytes_out 6336 79840 username zamanialireza 79840 unique_id port 81269 bytes_in 28965 79791 nas_port_type Virtual 79791 remote_ip 5.5.5.86 79792 username alinezhad 79792 unique_id port 79792 terminate_cause User-Request 79792 bytes_out 0 79792 bytes_in 0 79792 station_ip 5.202.15.244 79792 port 15728987 79792 nas_port_type Virtual 79792 remote_ip 5.5.5.73 79796 username zoha 79796 kill_reason Wrong password 79796 unique_id port 79796 bytes_out 0 79796 bytes_in 0 79796 station_ip 5.119.189.39 79796 port 15728991 79796 nas_port_type Virtual 79799 username zoha 79799 unique_id port 79799 terminate_cause Lost-Carrier 79799 bytes_out 183860 79799 bytes_in 1104403 79799 station_ip 5.119.189.39 79799 port 15728990 79799 nas_port_type Virtual 79799 remote_ip 5.5.5.149 79803 username alirezazamani 79803 unique_id port 79803 terminate_cause User-Request 79803 bytes_out 442029 79803 bytes_in 9313017 79803 station_ip 37.129.66.15 79803 port 15729002 79803 nas_port_type Virtual 79803 remote_ip 5.5.5.70 79811 username mobina 79811 unique_id port 79811 terminate_cause Lost-Carrier 79811 bytes_out 3657189 79811 bytes_in 59675171 79811 station_ip 5.124.27.102 79811 port 15728940 79811 nas_port_type Virtual 79811 remote_ip 5.5.5.91 79813 username soleymani 79813 kill_reason Maximum number of concurrent logins reached 79813 unique_id port 79813 bytes_out 0 79813 bytes_in 0 79813 station_ip 5.120.102.81 79813 port 15729011 79813 nas_port_type Virtual 79820 username soleymani 79820 kill_reason Maximum number of concurrent logins reached 79820 unique_id port 79820 bytes_out 0 79820 bytes_in 0 79820 station_ip 5.120.102.81 79820 port 15729018 79820 nas_port_type Virtual 79822 username soleymani 79822 kill_reason Maximum number of concurrent logins reached 79822 unique_id port 79822 bytes_out 0 79822 bytes_in 0 79822 station_ip 5.120.102.81 79822 port 15729020 79822 nas_port_type Virtual 79824 username soleymani 79824 kill_reason Maximum number of concurrent logins reached 79824 unique_id port 79824 bytes_out 0 79824 bytes_in 0 79824 station_ip 5.119.82.235 79824 port 15729022 79824 nas_port_type Virtual 79833 username hamideh 79833 unique_id port 79833 terminate_cause Lost-Carrier 79833 bytes_out 109277 79833 bytes_in 879901 79833 station_ip 5.120.133.13 79833 port 15728996 79833 nas_port_type Virtual 79833 remote_ip 5.5.5.107 79844 username goli 79844 unique_id port 79844 terminate_cause User-Request 79844 bytes_out 63803 79844 bytes_in 694846 79844 station_ip 113.203.36.28 79844 port 15729035 79844 nas_port_type Virtual 79844 remote_ip 5.5.5.64 79849 username alirezazamani 79849 unique_id port 79849 terminate_cause Lost-Carrier 79849 bytes_out 23523 79849 bytes_in 191013 79849 station_ip 5.119.135.166 79849 port 15729037 79849 nas_port_type Virtual 79849 remote_ip 5.5.5.63 79851 username zamanialireza 79851 unique_id port 79851 terminate_cause Lost-Carrier 79851 bytes_out 5547663 79851 bytes_in 188821577 79851 station_ip 5.119.230.12 79851 port 15729039 79851 nas_port_type Virtual 79851 remote_ip 5.5.5.62 79854 username asadi 79854 unique_id port 79854 terminate_cause User-Request 79854 bytes_out 56551 79854 bytes_in 800123 79854 station_ip 37.129.95.101 79854 port 15729055 79854 nas_port_type Virtual 79854 remote_ip 5.5.5.59 79856 username asadi 79856 unique_id port 79856 terminate_cause User-Request 79856 bytes_out 28663 79856 bytes_in 441362 79856 station_ip 37.129.95.101 79856 port 15729057 79856 nas_port_type Virtual 79856 remote_ip 5.5.5.59 79857 username asadi 79857 unique_id port 79857 terminate_cause User-Request 79857 bytes_out 38418 79857 bytes_in 145852 79857 station_ip 37.129.95.101 79857 port 15729058 79857 nas_port_type Virtual 79857 remote_ip 5.5.5.59 79859 username asadi 79859 unique_id port 79829 bytes_in 0 79829 station_ip 5.119.82.235 79829 port 15729027 79829 nas_port_type Virtual 79830 username soleymani 79830 kill_reason Maximum number of concurrent logins reached 79830 unique_id port 79830 bytes_out 0 79830 bytes_in 0 79830 station_ip 5.119.82.235 79830 port 15729028 79830 nas_port_type Virtual 79835 username soleymani 79835 unique_id port 79835 terminate_cause Lost-Carrier 79835 bytes_out 80165 79835 bytes_in 279554 79835 station_ip 5.120.59.17 79835 port 15728999 79835 nas_port_type Virtual 79835 remote_ip 5.5.5.69 79837 username reza 79837 unique_id port 79837 terminate_cause User-Request 79837 bytes_out 13342 79837 bytes_in 41718 79837 station_ip 83.122.109.101 79837 port 15729031 79837 nas_port_type Virtual 79837 remote_ip 5.5.5.84 79845 username alirezazamani 79845 unique_id port 79845 terminate_cause Lost-Carrier 79845 bytes_out 349570 79845 bytes_in 7934743 79845 station_ip 5.119.135.166 79845 port 15729033 79845 nas_port_type Virtual 79845 remote_ip 5.5.5.108 79846 username ebrahimi 79846 unique_id port 79846 terminate_cause Lost-Carrier 79846 bytes_out 27696982 79846 bytes_in 770640131 79846 station_ip 5.120.30.31 79846 port 15728852 79846 nas_port_type Virtual 79846 remote_ip 5.5.5.138 79847 username alirezazamani 79847 unique_id port 79847 terminate_cause Lost-Carrier 79847 bytes_out 191606 79847 bytes_in 2441587 79847 station_ip 5.119.135.166 79847 port 15729034 79847 nas_port_type Virtual 79847 remote_ip 5.5.5.65 79852 username alirezazamani 79852 unique_id port 79852 terminate_cause User-Request 79852 bytes_out 11288123 79852 bytes_in 34292850 79852 station_ip 31.57.129.65 79852 port 15729038 79852 nas_port_type Virtual 79852 remote_ip 5.5.5.211 79858 username mahdi 79858 unique_id port 79858 terminate_cause Lost-Carrier 79858 bytes_out 2737174 79858 bytes_in 70292255 79858 station_ip 5.120.136.90 79858 port 15728994 79858 nas_port_type Virtual 79858 remote_ip 5.5.5.222 79861 username asadi 79861 unique_id port 79861 terminate_cause User-Request 79861 bytes_out 25157 79861 bytes_in 127655 79861 station_ip 37.129.95.101 79861 port 15729061 79861 nas_port_type Virtual 79861 remote_ip 5.5.5.59 79863 username asadi 79863 unique_id port 79863 terminate_cause User-Request 79863 bytes_out 32045 79863 bytes_in 147751 79863 station_ip 37.129.95.101 79863 port 15729063 79863 nas_port_type Virtual 79863 remote_ip 5.5.5.59 79864 username asadi 79864 unique_id port 79864 terminate_cause User-Request 79864 bytes_out 27558 79864 bytes_in 175248 79864 station_ip 37.129.95.101 79864 port 15729064 79864 nas_port_type Virtual 79864 remote_ip 5.5.5.59 79867 username asadi 79867 unique_id port 79867 terminate_cause User-Request 79867 bytes_out 16857 79867 bytes_in 109572 79867 station_ip 37.129.95.101 79867 port 15729067 79867 nas_port_type Virtual 79867 remote_ip 5.5.5.59 79874 username zamanialireza 79874 unique_id port 79874 terminate_cause User-Request 79874 bytes_out 19606314 79874 bytes_in 471311460 79874 station_ip 37.153.180.43 79874 port 15729066 79874 nas_port_type Virtual 79874 remote_ip 5.5.5.58 79879 username asadi 79879 unique_id port 79879 terminate_cause User-Request 79879 bytes_out 88136 79879 bytes_in 336768 79879 station_ip 83.122.48.1 79879 port 15729077 79879 nas_port_type Virtual 79879 remote_ip 5.5.5.57 81265 username aminvpn 81265 mac 81265 bytes_out 0 81265 bytes_in 0 81265 station_ip 5.119.30.76 81265 port 14 81265 unique_id port 81265 remote_ip 10.8.0.6 81267 username forozande 79881 username asadi 79881 unique_id port 79881 terminate_cause User-Request 79881 bytes_out 43712 79881 bytes_in 87044 81267 unique_id port 79840 terminate_cause User-Request 79840 bytes_out 144190 79840 bytes_in 668670 79840 station_ip 94.183.213.166 79840 port 15729032 79840 nas_port_type Virtual 79840 remote_ip 5.5.5.120 79843 username rashidi 79843 unique_id port 79843 terminate_cause Lost-Carrier 79843 bytes_out 9070293 79843 bytes_in 122532303 79843 station_ip 5.119.139.225 79843 port 15728970 79843 nas_port_type Virtual 79843 remote_ip 5.5.5.80 79848 username alirezazamani 79848 unique_id port 79848 terminate_cause Lost-Carrier 79848 bytes_out 61279 79848 bytes_in 652008 79848 station_ip 5.119.135.166 79848 port 15729036 79848 nas_port_type Virtual 79848 remote_ip 5.5.5.108 79850 username madadi 79850 unique_id port 79850 terminate_cause Lost-Carrier 79850 bytes_out 3144703 79850 bytes_in 7248115 79850 station_ip 5.120.180.233 79850 port 15728982 79850 nas_port_type Virtual 79850 remote_ip 5.5.5.75 79859 terminate_cause User-Request 79859 bytes_out 31528 79859 bytes_in 141017 79859 station_ip 37.129.95.101 79859 port 15729059 79859 nas_port_type Virtual 79859 remote_ip 5.5.5.59 79866 username mahbobeh 79866 unique_id port 79866 terminate_cause Lost-Carrier 79866 bytes_out 2715244 79866 bytes_in 50693823 79866 station_ip 83.123.196.36 79866 port 15729053 79866 nas_port_type Virtual 79866 remote_ip 5.5.5.60 79878 username asadi 79878 unique_id port 79878 terminate_cause User-Request 79878 bytes_out 64266 79878 bytes_in 1032161 79878 station_ip 83.122.48.1 79878 port 15729076 79878 nas_port_type Virtual 79878 remote_ip 5.5.5.57 79883 username asadi 79883 unique_id port 79883 terminate_cause User-Request 79883 bytes_out 258205 79883 bytes_in 3536746 79883 station_ip 83.122.48.1 79883 port 15728642 79883 nas_port_type Virtual 79883 remote_ip 5.5.5.253 79884 username madadi 79884 unique_id port 79884 terminate_cause Lost-Carrier 79884 bytes_out 302857 79884 bytes_in 6758521 79884 station_ip 5.119.45.98 79884 port 15728640 79884 nas_port_type Virtual 79884 remote_ip 5.5.5.254 79885 username alinezhad 79885 unique_id port 79885 terminate_cause User-Request 79885 bytes_out 208805 79885 bytes_in 930831 79885 station_ip 83.123.164.158 79885 port 15728643 79885 nas_port_type Virtual 79885 remote_ip 5.5.5.252 79887 username ahmadi 79887 unique_id port 79887 terminate_cause User-Request 79887 bytes_out 60006 79887 bytes_in 727440 79887 station_ip 113.203.5.136 79887 port 15728647 79887 nas_port_type Virtual 79887 remote_ip 5.5.5.249 79895 username forozande 79895 unique_id port 79895 terminate_cause User-Request 79895 bytes_out 34904 79895 bytes_in 369140 79895 station_ip 37.129.22.74 79895 port 15728657 79895 nas_port_type Virtual 79895 remote_ip 5.5.5.241 79902 username ebrahimi 79902 unique_id port 79902 terminate_cause User-Request 79902 bytes_out 0 79902 bytes_in 0 79902 station_ip 5.119.132.35 79902 port 15728660 79902 nas_port_type Virtual 79902 remote_ip 5.5.5.238 79903 username asadi 79903 unique_id port 79903 terminate_cause User-Request 79903 bytes_out 146424 79903 bytes_in 2230584 79903 station_ip 83.122.48.1 79903 port 15728663 79903 nas_port_type Virtual 79903 remote_ip 5.5.5.253 79904 username aminvpn 79904 mac 79904 bytes_out 0 79904 bytes_in 0 79904 station_ip 5.120.154.73 79904 port 26 79904 unique_id port 79904 remote_ip 10.8.1.10 79906 username aminvpn 79906 mac 79906 bytes_out 0 79906 bytes_in 0 79906 station_ip 5.120.154.73 79906 port 9 79906 unique_id port 79906 remote_ip 10.8.0.6 79911 username aminvpn 79911 mac 79911 bytes_out 689840 79911 bytes_in 7028523 79911 station_ip 5.120.154.73 79911 port 9 79911 unique_id port 79860 username asadi 79860 unique_id port 79860 terminate_cause User-Request 79860 bytes_out 18785 79860 bytes_in 74265 79860 station_ip 37.129.95.101 79860 port 15729060 79860 nas_port_type Virtual 79860 remote_ip 5.5.5.59 79862 username asadi 79862 unique_id port 79862 terminate_cause User-Request 79862 bytes_out 43269 79862 bytes_in 672382 79862 station_ip 37.129.95.101 79862 port 15729062 79862 nas_port_type Virtual 79862 remote_ip 5.5.5.59 79865 username asadi 79865 unique_id port 79865 terminate_cause User-Request 79865 bytes_out 34958 79865 bytes_in 746641 79865 station_ip 37.129.95.101 79865 port 15729065 79865 nas_port_type Virtual 79865 remote_ip 5.5.5.59 79872 username asadi 79872 unique_id port 79872 terminate_cause User-Request 79872 bytes_out 40327 79872 bytes_in 477625 79872 station_ip 83.122.48.1 79872 port 15729071 79872 nas_port_type Virtual 79872 remote_ip 5.5.5.57 79876 username mobina 79876 unique_id port 79876 terminate_cause Lost-Carrier 79876 bytes_out 189318 79876 bytes_in 428132 79876 station_ip 5.124.99.4 79876 port 15729073 79876 nas_port_type Virtual 79876 remote_ip 5.5.5.56 79877 username asadi 79877 unique_id port 79877 terminate_cause User-Request 79877 bytes_out 530 79877 bytes_in 7890 79877 station_ip 83.122.48.1 79877 port 15729075 79877 nas_port_type Virtual 79877 remote_ip 5.5.5.57 79882 username mobina 79882 unique_id port 79882 terminate_cause Admin-Reboot 79882 bytes_out 1784060 79882 bytes_in 28942290 79882 station_ip 5.123.245.250 79882 port 15729079 79882 nas_port_type Virtual 79882 remote_ip 5.5.5.54 79886 username asadi 79886 unique_id port 79886 terminate_cause User-Request 79886 bytes_out 9970 79886 bytes_in 23688 79886 station_ip 83.122.48.1 79886 port 15728644 79886 nas_port_type Virtual 79886 remote_ip 5.5.5.253 79889 username madadi 79889 unique_id port 79889 terminate_cause Lost-Carrier 79889 bytes_out 38292 79889 bytes_in 148344 79889 station_ip 5.120.90.230 79889 port 15728646 79889 nas_port_type Virtual 79889 remote_ip 5.5.5.250 79890 username shahriyar 79890 unique_id port 79890 terminate_cause User-Request 79890 bytes_out 70518 79890 bytes_in 917551 79890 station_ip 113.203.108.163 79890 port 15728648 79890 nas_port_type Virtual 79890 remote_ip 5.5.5.248 79893 username forozande 79893 unique_id port 79893 terminate_cause User-Request 79893 bytes_out 35281 79893 bytes_in 336960 79893 station_ip 37.129.22.74 79893 port 15728655 79893 nas_port_type Virtual 79893 remote_ip 5.5.5.241 79894 username soleymani 79894 kill_reason Maximum number of concurrent logins reached 79894 unique_id port 79894 bytes_out 0 79894 bytes_in 0 79894 station_ip 5.120.38.193 79894 port 15728658 79894 nas_port_type Virtual 79898 username soleymani 79898 unique_id port 79898 terminate_cause Lost-Carrier 79898 bytes_out 182061 79898 bytes_in 573552 79898 station_ip 5.119.166.125 79898 port 15728654 79898 nas_port_type Virtual 79898 remote_ip 5.5.5.242 79901 username aminvpn 79901 mac 79901 bytes_out 1628 79901 bytes_in 4251 79901 station_ip 5.120.154.73 79901 port 9 79901 unique_id port 79901 remote_ip 10.8.0.6 79910 username madadi 79910 kill_reason Maximum check online fails reached 79910 unique_id port 79910 bytes_out 44801 79910 bytes_in 152429 79910 station_ip 5.120.141.106 79910 port 15728664 79910 nas_port_type Virtual 79910 remote_ip 5.5.5.236 79913 username forozande 79913 unique_id port 79913 terminate_cause User-Request 79913 bytes_out 89827 79913 bytes_in 1250915 79913 station_ip 113.203.48.213 79913 port 15728666 79913 nas_port_type Virtual 79913 remote_ip 5.5.5.235 79916 username alirezazamani 79916 unique_id port 79869 nas_port_type Virtual 79869 remote_ip 5.5.5.59 79870 username asadi 79870 unique_id port 79870 terminate_cause User-Request 79870 bytes_out 18074 79870 bytes_in 17136 79870 station_ip 37.129.95.101 79870 port 15729069 79870 nas_port_type Virtual 79870 remote_ip 5.5.5.59 79871 username asadi 79871 unique_id port 79871 terminate_cause User-Request 79871 bytes_out 44714 79871 bytes_in 251476 79871 station_ip 37.129.95.101 79871 port 15729070 79871 nas_port_type Virtual 79871 remote_ip 5.5.5.59 79873 username asadi 79873 unique_id port 79873 terminate_cause User-Request 79873 bytes_out 72070 79873 bytes_in 993036 79873 station_ip 83.122.48.1 79873 port 15729072 79873 nas_port_type Virtual 79873 remote_ip 5.5.5.57 79875 username asadi 79875 unique_id port 79875 terminate_cause User-Request 79875 bytes_out 97805 79875 bytes_in 1516935 79875 station_ip 83.122.48.1 79875 port 15729074 79875 nas_port_type Virtual 79875 remote_ip 5.5.5.57 79888 username madadi 79888 unique_id port 79888 terminate_cause Lost-Carrier 79888 bytes_out 55426 79888 bytes_in 232897 79888 station_ip 5.120.96.222 79888 port 15728645 79888 nas_port_type Virtual 79888 remote_ip 5.5.5.251 79892 username alinezhad 79892 unique_id port 79892 terminate_cause User-Request 79892 bytes_out 164513 79892 bytes_in 285083 79892 station_ip 83.123.122.130 79892 port 15728651 79892 nas_port_type Virtual 79892 remote_ip 5.5.5.245 79905 username aminvpn 79905 mac 79905 bytes_out 0 79905 bytes_in 0 79905 station_ip 5.120.154.73 79905 port 9 79905 unique_id port 79905 remote_ip 10.8.0.6 79914 username soleymani 79914 unique_id port 79914 terminate_cause Lost-Carrier 79914 bytes_out 357089 79914 bytes_in 723471 79914 station_ip 5.119.115.63 79914 port 15728662 79914 nas_port_type Virtual 79914 remote_ip 5.5.5.237 79919 username alirezazamani 79919 unique_id port 79919 terminate_cause Lost-Carrier 79919 bytes_out 967789 79919 bytes_in 23899735 79919 station_ip 5.119.135.166 79919 port 15728670 79919 nas_port_type Virtual 79919 remote_ip 5.5.5.231 79922 username asadi 79922 unique_id port 79922 terminate_cause User-Request 79922 bytes_out 0 79922 bytes_in 0 79922 station_ip 83.122.48.1 79922 port 15728679 79922 nas_port_type Virtual 79922 remote_ip 5.5.5.253 79932 username forozande 79932 unique_id port 79932 terminate_cause User-Request 79932 bytes_out 119934 79932 bytes_in 1596498 79932 station_ip 37.129.127.1 79932 port 15728688 79932 nas_port_type Virtual 79932 remote_ip 5.5.5.222 79938 username alirezazamani 79938 unique_id port 79938 terminate_cause Lost-Carrier 79938 bytes_out 253023 79938 bytes_in 6930884 79938 station_ip 5.119.135.166 79938 port 15728682 79938 nas_port_type Virtual 79938 remote_ip 5.5.5.227 79943 username alirezazamani 79943 unique_id port 79943 terminate_cause User-Request 79943 bytes_out 161334 79943 bytes_in 490178 79943 station_ip 83.122.214.194 79943 port 15728698 79943 nas_port_type Virtual 79943 remote_ip 5.5.5.214 79946 username ebrahimi 79946 unique_id port 79946 terminate_cause Lost-Carrier 79946 bytes_out 7776600 79946 bytes_in 142864487 79946 station_ip 5.119.132.35 79946 port 15728661 79946 nas_port_type Virtual 79946 remote_ip 5.5.5.238 79956 username soleymani 79956 unique_id port 79956 terminate_cause Lost-Carrier 79956 bytes_out 49092 79956 bytes_in 196625 79956 station_ip 5.120.153.43 79956 port 15728707 79956 nas_port_type Virtual 79956 remote_ip 5.5.5.206 79957 username alinezhad 79957 unique_id port 79957 terminate_cause User-Request 79957 bytes_out 0 79957 bytes_in 0 79957 station_ip 5.202.0.22 79957 port 15728713 79957 nas_port_type Virtual 79881 station_ip 83.122.48.1 79881 port 15729080 79881 nas_port_type Virtual 79881 remote_ip 5.5.5.57 79891 username forozande 79891 unique_id port 79891 terminate_cause User-Request 79891 bytes_out 78180 79891 bytes_in 1339125 79891 station_ip 83.122.113.74 79891 port 15728649 79891 nas_port_type Virtual 79891 remote_ip 5.5.5.247 79896 username madadi 79896 unique_id port 79896 terminate_cause Lost-Carrier 79896 bytes_out 258108 79896 bytes_in 752652 79896 station_ip 5.119.94.43 79896 port 15728652 79896 nas_port_type Virtual 79896 remote_ip 5.5.5.244 79897 username hamideh 79897 unique_id port 79897 terminate_cause Lost-Carrier 79897 bytes_out 16527 79897 bytes_in 154024 79897 station_ip 5.120.133.13 79897 port 15728653 79897 nas_port_type Virtual 79897 remote_ip 5.5.5.243 79899 username soleymani 79899 unique_id port 79899 terminate_cause Lost-Carrier 79899 bytes_out 23354 79899 bytes_in 141121 79899 station_ip 5.119.130.101 79899 port 15728656 79899 nas_port_type Virtual 79899 remote_ip 5.5.5.240 79900 username alinezhad 79900 unique_id port 79900 terminate_cause User-Request 79900 bytes_out 0 79900 bytes_in 0 79900 station_ip 83.122.105.60 79900 port 15728659 79900 nas_port_type Virtual 79900 remote_ip 5.5.5.239 79907 username aminvpn 79907 kill_reason Maximum check online fails reached 79907 mac 79907 bytes_out 0 79907 bytes_in 0 79907 station_ip 5.120.154.73 79907 port 26 79907 unique_id port 79908 username aminvpn 79908 mac 79908 bytes_out 0 79908 bytes_in 0 79908 station_ip 5.120.154.73 79908 port 9 79908 unique_id port 79908 remote_ip 10.8.0.6 79909 username zamanialireza 79909 unique_id port 79909 terminate_cause User-Request 79909 bytes_out 4091138 79909 bytes_in 67966158 79909 station_ip 5.120.110.170 79909 port 15728650 79909 nas_port_type Virtual 79909 remote_ip 5.5.5.246 79912 username forozande 79912 unique_id port 79912 terminate_cause User-Request 79912 bytes_out 41755 79912 bytes_in 411064 79912 station_ip 113.203.48.213 79912 port 15728665 79912 nas_port_type Virtual 79912 remote_ip 5.5.5.235 79920 username soleymani 79920 unique_id port 79920 terminate_cause Lost-Carrier 79920 bytes_out 112931 79920 bytes_in 492314 79920 station_ip 5.120.114.113 79920 port 15728672 79920 nas_port_type Virtual 79920 remote_ip 5.5.5.230 79926 username alinezhad 79926 unique_id port 79926 terminate_cause User-Request 79926 bytes_out 0 79926 bytes_in 0 79926 station_ip 113.203.47.44 79926 port 15728681 79926 nas_port_type Virtual 79926 remote_ip 5.5.5.226 79928 username alirezazamani 79928 unique_id port 79928 terminate_cause Lost-Carrier 79928 bytes_out 307859 79928 bytes_in 6870343 79928 station_ip 5.119.135.166 79928 port 15728680 79928 nas_port_type Virtual 79928 remote_ip 5.5.5.231 79929 username soleymani 79929 unique_id port 79929 terminate_cause User-Request 79929 bytes_out 0 79929 bytes_in 0 79929 station_ip 5.119.58.228 79929 port 15728685 79929 nas_port_type Virtual 79929 remote_ip 5.5.5.223 79930 username soleymani 79930 unique_id port 79930 terminate_cause User-Request 79930 bytes_out 0 79930 bytes_in 0 79930 station_ip 5.119.58.228 79930 port 15728686 79930 nas_port_type Virtual 79930 remote_ip 5.5.5.223 79931 username aminvpn 79931 kill_reason Another user logged on this global unique id 79931 mac 79931 bytes_out 0 79931 bytes_in 0 79931 station_ip 5.120.154.73 79931 port 9 79931 unique_id port 79931 remote_ip 10.8.0.6 79944 username alirezazamani 79944 unique_id port 79944 terminate_cause User-Request 79944 bytes_out 211354 79944 bytes_in 857014 79944 station_ip 83.122.214.194 79944 port 15728699 79944 nas_port_type Virtual 79911 remote_ip 10.8.0.6 79915 username soleymani 79915 unique_id port 79915 terminate_cause Lost-Carrier 79915 bytes_out 163194 79915 bytes_in 1487771 79915 station_ip 5.119.222.96 79915 port 15728667 79915 nas_port_type Virtual 79915 remote_ip 5.5.5.234 79917 username soleymani 79917 unique_id port 79917 terminate_cause Lost-Carrier 79917 bytes_out 183395 79917 bytes_in 420570 79917 station_ip 5.120.87.85 79917 port 15728669 79917 nas_port_type Virtual 79917 remote_ip 5.5.5.232 79921 username alirezazamani 79921 unique_id port 79921 terminate_cause Lost-Carrier 79921 bytes_out 236053 79921 bytes_in 5537948 79921 station_ip 5.119.135.166 79921 port 15728673 79921 nas_port_type Virtual 79921 remote_ip 5.5.5.233 79923 username alirezazamani 79923 unique_id port 79923 terminate_cause User-Request 79923 bytes_out 82597 79923 bytes_in 2539463 79923 station_ip 5.119.135.166 79923 port 15728678 79923 nas_port_type Virtual 79923 remote_ip 5.5.5.231 79925 username alirezazamani 79925 unique_id port 79925 terminate_cause Lost-Carrier 79925 bytes_out 155231 79925 bytes_in 3846782 79925 station_ip 5.119.135.166 79925 port 15728677 79925 nas_port_type Virtual 79925 remote_ip 5.5.5.227 79934 username soleymani 79934 unique_id port 79934 terminate_cause Lost-Carrier 79934 bytes_out 104908 79934 bytes_in 250222 79934 station_ip 5.120.35.48 79934 port 15728683 79934 nas_port_type Virtual 79934 remote_ip 5.5.5.225 79935 username pouria 79935 unique_id port 79935 terminate_cause Lost-Carrier 79935 bytes_out 6835842 79935 bytes_in 186820397 79935 station_ip 151.235.104.108 79935 port 15728676 79935 nas_port_type Virtual 79935 remote_ip 5.5.5.228 79937 username hamideh 79937 unique_id port 79937 terminate_cause Lost-Carrier 79937 bytes_out 24815 79937 bytes_in 172901 79937 station_ip 5.120.133.13 79937 port 15728690 79937 nas_port_type Virtual 79937 remote_ip 5.5.5.243 79939 username soleymani 79939 unique_id port 79939 terminate_cause Lost-Carrier 79939 bytes_out 142050 79939 bytes_in 550476 79939 station_ip 5.119.113.40 79939 port 15728691 79939 nas_port_type Virtual 79939 remote_ip 5.5.5.220 79941 username soleymani 79941 unique_id port 79941 terminate_cause Lost-Carrier 79941 bytes_out 70525 79941 bytes_in 228448 79941 station_ip 5.119.169.86 79941 port 15728693 79941 nas_port_type Virtual 79941 remote_ip 5.5.5.218 79947 username madadi 79947 unique_id port 79947 terminate_cause Lost-Carrier 79947 bytes_out 103004 79947 bytes_in 327405 79947 station_ip 5.119.206.167 79947 port 15728700 79947 nas_port_type Virtual 79947 remote_ip 5.5.5.213 79951 username amirhosein 79951 unique_id port 79951 terminate_cause Lost-Carrier 79951 bytes_out 3391706 79951 bytes_in 49509453 79951 station_ip 5.119.113.132 79951 port 15728689 79951 nas_port_type Virtual 79951 remote_ip 5.5.5.221 79960 username zamanialireza 79960 unique_id port 79960 terminate_cause User-Request 79960 bytes_out 0 79960 bytes_in 0 79960 station_ip 37.129.39.252 79960 port 15728715 79960 nas_port_type Virtual 79960 remote_ip 5.5.5.200 79963 username alirezazamani 79963 unique_id port 79963 terminate_cause Lost-Carrier 79963 bytes_out 363345 79963 bytes_in 5616066 79963 station_ip 5.119.135.166 79963 port 15728717 79963 nas_port_type Virtual 79963 remote_ip 5.5.5.227 79965 username soleymani 79965 unique_id port 79965 terminate_cause User-Request 79965 bytes_out 0 79965 bytes_in 0 79965 station_ip 5.120.120.96 79965 port 15728721 79965 nas_port_type Virtual 79965 remote_ip 5.5.5.197 79967 username caferibar 79967 unique_id port 79967 terminate_cause User-Request 79967 bytes_out 0 79967 bytes_in 0 79967 station_ip 5.119.1.217 79967 port 15728725 79916 terminate_cause Lost-Carrier 79916 bytes_out 471002 79916 bytes_in 7314286 79916 station_ip 5.119.135.166 79916 port 15728668 79916 nas_port_type Virtual 79916 remote_ip 5.5.5.233 79918 username alirezazamani 79918 unique_id port 79918 terminate_cause User-Request 79918 bytes_out 0 79918 bytes_in 0 79918 station_ip 5.119.135.166 79918 port 15728674 79918 nas_port_type Virtual 79918 remote_ip 5.5.5.229 79924 username alirezazamani 79924 unique_id port 79924 terminate_cause Lost-Carrier 79924 bytes_out 175452 79924 bytes_in 6144607 79924 station_ip 5.119.135.166 79924 port 15728675 79924 nas_port_type Virtual 79924 remote_ip 5.5.5.229 79927 username ahmadi 79927 unique_id port 79927 terminate_cause User-Request 79927 bytes_out 0 79927 bytes_in 0 79927 station_ip 113.203.85.168 79927 port 15728684 79927 nas_port_type Virtual 79927 remote_ip 5.5.5.224 79933 username aminvpn 79933 mac 79933 bytes_out 0 79933 bytes_in 0 79933 station_ip 5.120.154.73 79933 port 9 79933 unique_id port 79936 username soleymani 79936 unique_id port 79936 terminate_cause Lost-Carrier 79936 bytes_out 218271 79936 bytes_in 1713494 79936 station_ip 5.119.58.228 79936 port 15728687 79936 nas_port_type Virtual 79936 remote_ip 5.5.5.223 79940 username asadi 79940 unique_id port 79940 terminate_cause User-Request 79940 bytes_out 68055 79940 bytes_in 641598 79940 station_ip 83.122.48.1 79940 port 15728695 79940 nas_port_type Virtual 79940 remote_ip 5.5.5.253 79942 username alinezhad 79942 unique_id port 79942 terminate_cause User-Request 79942 bytes_out 0 79942 bytes_in 0 79942 station_ip 5.202.0.22 79942 port 15728697 79942 nas_port_type Virtual 79942 remote_ip 5.5.5.215 79945 username soleymani 79945 unique_id port 79945 terminate_cause Lost-Carrier 79945 bytes_out 168744 79945 bytes_in 684610 79945 station_ip 5.120.103.111 79945 port 15728696 79945 nas_port_type Virtual 79945 remote_ip 5.5.5.216 79950 username madadi 79950 unique_id port 79950 terminate_cause Lost-Carrier 79950 bytes_out 41028 79950 bytes_in 420777 79950 station_ip 5.120.185.205 79950 port 15728703 79950 nas_port_type Virtual 79950 remote_ip 5.5.5.210 79953 username amir 79953 unique_id port 79953 terminate_cause Lost-Carrier 79953 bytes_out 4305367 79953 bytes_in 59835181 79953 station_ip 46.225.209.126 79953 port 15728694 79953 nas_port_type Virtual 79953 remote_ip 5.5.5.217 79954 username caferibar 79954 unique_id port 79954 terminate_cause User-Request 79954 bytes_out 20676 79954 bytes_in 53319 79954 station_ip 37.129.33.229 79954 port 15728708 79954 nas_port_type Virtual 79954 remote_ip 5.5.5.205 79958 username forozande 79958 unique_id port 79958 terminate_cause User-Request 79958 bytes_out 136455 79958 bytes_in 1448816 79958 station_ip 113.203.60.27 79958 port 15728712 79958 nas_port_type Virtual 79958 remote_ip 5.5.5.202 79959 username alirezazamani 79959 unique_id port 79959 terminate_cause Lost-Carrier 79959 bytes_out 501260 79959 bytes_in 10392020 79959 station_ip 5.119.135.166 79959 port 15728710 79959 nas_port_type Virtual 79959 remote_ip 5.5.5.227 79968 username ahmadi 79968 unique_id port 79968 terminate_cause User-Request 79968 bytes_out 0 79968 bytes_in 0 79968 station_ip 113.203.20.144 79968 port 15728727 79968 nas_port_type Virtual 79968 remote_ip 5.5.5.195 79971 username ahmad 79971 kill_reason Absolute expiration date has reached 79971 unique_id port 79971 bytes_out 0 79971 bytes_in 0 79971 station_ip 86.57.73.204 79971 port 15728731 79971 nas_port_type Virtual 79977 username soleymani 79977 unique_id port 79977 terminate_cause Lost-Carrier 79977 bytes_out 62255 79977 bytes_in 237782 79944 remote_ip 5.5.5.214 79948 username soleymani 79948 unique_id port 79948 terminate_cause Lost-Carrier 79948 bytes_out 380847 79948 bytes_in 1232890 79948 station_ip 5.119.47.28 79948 port 15728701 79948 nas_port_type Virtual 79948 remote_ip 5.5.5.212 79949 username reza 79949 unique_id port 79949 terminate_cause User-Request 79949 bytes_out 67162 79949 bytes_in 1568143 79949 station_ip 83.123.134.110 79949 port 15728704 79949 nas_port_type Virtual 79949 remote_ip 5.5.5.209 79952 username soleymani 79952 unique_id port 79952 terminate_cause Lost-Carrier 79952 bytes_out 89534 79952 bytes_in 464739 79952 station_ip 5.120.27.47 79952 port 15728702 79952 nas_port_type Virtual 79952 remote_ip 5.5.5.211 79955 username soleymani 79955 unique_id port 79955 terminate_cause Lost-Carrier 79955 bytes_out 191437 79955 bytes_in 561169 79955 station_ip 5.120.140.179 79955 port 15728705 79955 nas_port_type Virtual 79955 remote_ip 5.5.5.208 79964 username asadi 79964 unique_id port 79964 terminate_cause User-Request 79964 bytes_out 170448 79964 bytes_in 5880310 79964 station_ip 83.122.48.1 79964 port 15728719 79964 nas_port_type Virtual 79964 remote_ip 5.5.5.253 79969 username mahbobeh 79969 unique_id port 79969 terminate_cause Lost-Carrier 79969 bytes_out 367226 79969 bytes_in 3239728 79969 station_ip 83.123.136.208 79969 port 15728716 79969 nas_port_type Virtual 79969 remote_ip 5.5.5.199 79972 username ahmad 79972 kill_reason Absolute expiration date has reached 79972 unique_id port 79972 bytes_out 0 79972 bytes_in 0 79972 station_ip 86.57.73.204 79972 port 15728732 79972 nas_port_type Virtual 79982 username madadi 79982 unique_id port 79982 terminate_cause Lost-Carrier 79982 bytes_out 203507 79982 bytes_in 550409 79982 station_ip 5.120.21.34 79982 port 15728738 79982 nas_port_type Virtual 79982 remote_ip 5.5.5.188 79991 username soleymani 79991 unique_id port 79991 terminate_cause Lost-Carrier 79991 bytes_out 270501 79991 bytes_in 501008 79991 station_ip 5.119.119.88 79991 port 15728747 79991 nas_port_type Virtual 79991 remote_ip 5.5.5.180 79992 username ahmadi 79992 unique_id port 79992 terminate_cause User-Request 79992 bytes_out 34548 79992 bytes_in 181638 79992 station_ip 113.203.112.204 79992 port 15728756 79992 nas_port_type Virtual 79992 remote_ip 5.5.5.179 79995 username kasra 79995 kill_reason Absolute expiration date has reached 79995 unique_id port 79995 bytes_out 0 79995 bytes_in 0 79995 station_ip 37.129.17.106 79995 port 15728761 79995 nas_port_type Virtual 79997 username kasra 79997 kill_reason Absolute expiration date has reached 79997 unique_id port 79997 bytes_out 0 79997 bytes_in 0 79997 station_ip 37.129.17.106 79997 port 15728763 79997 nas_port_type Virtual 80000 username mobina 80000 unique_id port 80000 terminate_cause Lost-Carrier 80000 bytes_out 37655 80000 bytes_in 245389 80000 station_ip 5.124.180.36 80000 port 15728760 80000 nas_port_type Virtual 80000 remote_ip 5.5.5.174 80001 username aminvpn 80001 unique_id port 80001 terminate_cause Lost-Carrier 80001 bytes_out 957969 80001 bytes_in 28499472 80001 station_ip 5.233.78.30 80001 port 15728759 80001 nas_port_type Virtual 80001 remote_ip 5.5.5.175 80004 username ahmadipour 80004 unique_id port 80004 terminate_cause Lost-Carrier 80004 bytes_out 3178696 80004 bytes_in 66571758 80004 station_ip 83.122.141.139 80004 port 15728765 80004 nas_port_type Virtual 80004 remote_ip 5.5.5.173 81267 terminate_cause User-Request 81267 bytes_out 68796 81267 bytes_in 594522 81267 station_ip 37.129.16.12 81267 port 15728827 81267 nas_port_type Virtual 81267 remote_ip 5.5.5.155 81270 username asadi 81270 unique_id port 81270 terminate_cause User-Request 79957 remote_ip 5.5.5.215 79961 username soleymani 79961 unique_id port 79961 terminate_cause Lost-Carrier 79961 bytes_out 69455 79961 bytes_in 827356 79961 station_ip 5.120.69.180 79961 port 15728714 79961 nas_port_type Virtual 79961 remote_ip 5.5.5.201 79962 username alirezazamani 79962 unique_id port 79962 terminate_cause Lost-Carrier 79962 bytes_out 405975 79962 bytes_in 8329967 79962 station_ip 5.119.135.166 79962 port 15728711 79962 nas_port_type Virtual 79962 remote_ip 5.5.5.203 79966 username soleymani 79966 unique_id port 79966 terminate_cause User-Request 79966 bytes_out 0 79966 bytes_in 0 79966 station_ip 5.120.120.96 79966 port 15728722 79966 nas_port_type Virtual 79966 remote_ip 5.5.5.197 79975 username caferibar 79975 unique_id port 79975 terminate_cause User-Request 79975 bytes_out 4414742 79975 bytes_in 116586756 79975 station_ip 94.183.213.166 79975 port 15728709 79975 nas_port_type Virtual 79975 remote_ip 5.5.5.204 79978 username zoha 79978 unique_id port 79978 terminate_cause User-Request 79978 bytes_out 1554090 79978 bytes_in 15640111 79978 station_ip 5.119.189.39 79978 port 15728734 79978 nas_port_type Virtual 79978 remote_ip 5.5.5.191 79981 username forozande 79981 unique_id port 79981 terminate_cause User-Request 79981 bytes_out 148086 79981 bytes_in 3735028 79981 station_ip 37.129.250.29 79981 port 15728740 79981 nas_port_type Virtual 79981 remote_ip 5.5.5.187 79984 username soleymani 79984 unique_id port 79984 terminate_cause Lost-Carrier 79984 bytes_out 70728 79984 bytes_in 225656 79984 station_ip 5.119.59.70 79984 port 15728741 79984 nas_port_type Virtual 79984 remote_ip 5.5.5.186 79986 username soleymani 79986 unique_id port 79986 terminate_cause Lost-Carrier 79986 bytes_out 93176 79986 bytes_in 374219 79986 station_ip 5.119.77.172 79986 port 15728744 79986 nas_port_type Virtual 79986 remote_ip 5.5.5.183 79987 username amin.insta22 79987 unique_id port 79987 terminate_cause Lost-Carrier 79987 bytes_out 47355 79987 bytes_in 349953 79987 station_ip 5.119.10.126 79987 port 15728746 79987 nas_port_type Virtual 79987 remote_ip 5.5.5.181 79988 username amirhosein 79988 unique_id port 79988 terminate_cause Lost-Carrier 79988 bytes_out 21054115 79988 bytes_in 54960601 79988 station_ip 5.119.113.132 79988 port 15728718 79988 nas_port_type Virtual 79988 remote_ip 5.5.5.221 79998 username alirezazamani 79998 unique_id port 79998 terminate_cause User-Request 79998 bytes_out 17221024 79998 bytes_in 68529847 79998 station_ip 31.57.141.211 79998 port 15728720 79998 nas_port_type Virtual 79998 remote_ip 5.5.5.198 80002 username alinezhad 80002 unique_id port 80002 terminate_cause User-Request 80002 bytes_out 0 80002 bytes_in 0 80002 station_ip 5.202.0.22 80002 port 15728769 80002 nas_port_type Virtual 80002 remote_ip 5.5.5.215 80003 username alinezhad 80003 unique_id port 80003 terminate_cause User-Request 80003 bytes_out 0 80003 bytes_in 0 80003 station_ip 5.202.0.22 80003 port 15728770 80003 nas_port_type Virtual 80003 remote_ip 5.5.5.215 80009 username amirhosein 80009 unique_id port 80009 terminate_cause Lost-Carrier 80009 bytes_out 429464 80009 bytes_in 1511823 80009 station_ip 5.119.113.132 80009 port 15728764 80009 nas_port_type Virtual 80009 remote_ip 5.5.5.221 80011 username alirezazamani 80011 unique_id port 80011 terminate_cause User-Request 80011 bytes_out 0 80011 bytes_in 0 80011 station_ip 94.241.178.64 80011 port 15728774 80011 nas_port_type Virtual 80011 remote_ip 5.5.5.178 80012 username kasra 80012 kill_reason Absolute expiration date has reached 80012 unique_id port 80012 bytes_out 0 80012 bytes_in 0 80012 station_ip 37.129.17.106 80012 port 15728776 79967 nas_port_type Virtual 79967 remote_ip 5.5.5.196 79970 username ahmad 79970 kill_reason Absolute expiration date has reached 79970 unique_id port 79970 bytes_out 0 79970 bytes_in 0 79970 station_ip 86.57.73.204 79970 port 15728728 79970 nas_port_type Virtual 79973 username soleymani 79973 unique_id port 79973 terminate_cause Lost-Carrier 79973 bytes_out 154290 79973 bytes_in 765728 79973 station_ip 5.120.120.96 79973 port 15728724 79973 nas_port_type Virtual 79973 remote_ip 5.5.5.197 79974 username caferibar 79974 unique_id port 79974 terminate_cause User-Request 79974 bytes_out 3446689 79974 bytes_in 17042827 79974 station_ip 5.119.1.217 79974 port 15728726 79974 nas_port_type Virtual 79974 remote_ip 5.5.5.196 79976 username hamideh 79976 unique_id port 79976 terminate_cause Lost-Carrier 79976 bytes_out 29081 79976 bytes_in 185303 79976 station_ip 5.119.214.88 79976 port 15728735 79976 nas_port_type Virtual 79976 remote_ip 5.5.5.192 79979 username alinezhad 79979 unique_id port 79979 terminate_cause User-Request 79979 bytes_out 0 79979 bytes_in 0 79979 station_ip 5.202.0.22 79979 port 15728739 79979 nas_port_type Virtual 79979 remote_ip 5.5.5.215 79980 username soleymani 79980 unique_id port 79980 terminate_cause Lost-Carrier 79980 bytes_out 42957 79980 bytes_in 317908 79980 station_ip 5.120.28.69 79980 port 15728737 79980 nas_port_type Virtual 79980 remote_ip 5.5.5.189 79983 username amir 79983 unique_id port 79983 terminate_cause Lost-Carrier 79983 bytes_out 5718466 79983 bytes_in 37944957 79983 station_ip 46.225.209.126 79983 port 15728723 79983 nas_port_type Virtual 79983 remote_ip 5.5.5.217 79985 username mahdi 79985 unique_id port 79985 terminate_cause Lost-Carrier 79985 bytes_out 2263833 79985 bytes_in 48143642 79985 station_ip 5.119.186.227 79985 port 15728706 79985 nas_port_type Virtual 79985 remote_ip 5.5.5.207 79989 username ahmadi 79989 unique_id port 79989 terminate_cause Lost-Carrier 79989 bytes_out 4550696 79989 bytes_in 75287996 79989 station_ip 113.203.112.204 79989 port 15728749 79989 nas_port_type Virtual 79989 remote_ip 5.5.5.179 79993 username aminvpn 79993 unique_id port 79993 terminate_cause User-Request 79993 bytes_out 0 79993 bytes_in 0 79993 station_ip 5.233.78.30 79993 port 15728758 79993 nas_port_type Virtual 79993 remote_ip 5.5.5.175 79994 username mobina 79994 unique_id port 79994 terminate_cause Lost-Carrier 79994 bytes_out 30007450 79994 bytes_in 1168059091 79994 station_ip 5.123.245.250 79994 port 15728641 79994 nas_port_type Virtual 79994 remote_ip 5.5.5.255 80006 username soleymani 80006 unique_id port 80006 terminate_cause Lost-Carrier 80006 bytes_out 166923 80006 bytes_in 893802 80006 station_ip 5.120.162.63 80006 port 15728766 80006 nas_port_type Virtual 80006 remote_ip 5.5.5.172 80007 username mobina 80007 kill_reason Maximum check online fails reached 80007 unique_id port 80007 bytes_out 166595 80007 bytes_in 1974617 80007 station_ip 5.123.11.66 80007 port 15728772 80007 nas_port_type Virtual 80007 remote_ip 5.5.5.168 80010 username alirezazamani 80010 unique_id port 80010 terminate_cause User-Request 80010 bytes_out 11083208 80010 bytes_in 136621626 80010 station_ip 94.241.178.64 80010 port 15728748 80010 nas_port_type Virtual 80010 remote_ip 5.5.5.178 80013 username soleymani 80013 unique_id port 80013 terminate_cause Lost-Carrier 80013 bytes_out 51606 80013 bytes_in 259822 80013 station_ip 5.120.18.25 80013 port 15728773 80013 nas_port_type Virtual 80013 remote_ip 5.5.5.167 80015 username rashidi 80015 unique_id port 80015 terminate_cause User-Request 80015 bytes_out 15797256 80015 bytes_in 191075367 80015 station_ip 5.119.187.252 80015 port 15728730 79977 station_ip 5.119.127.85 79977 port 15728736 79977 nas_port_type Virtual 79977 remote_ip 5.5.5.190 79990 username alinezhad 79990 unique_id port 79990 terminate_cause User-Request 79990 bytes_out 0 79990 bytes_in 0 79990 station_ip 5.202.0.22 79990 port 15728754 79990 nas_port_type Virtual 79990 remote_ip 5.5.5.215 79996 username kasra 79996 kill_reason Absolute expiration date has reached 79996 unique_id port 79996 bytes_out 0 79996 bytes_in 0 79996 station_ip 37.129.17.106 79996 port 15728762 79996 nas_port_type Virtual 79999 username amir 79999 unique_id port 79999 terminate_cause Lost-Carrier 79999 bytes_out 620744 79999 bytes_in 5162771 79999 station_ip 46.225.209.126 79999 port 15728757 79999 nas_port_type Virtual 79999 remote_ip 5.5.5.217 80025 username asadi 80025 unique_id port 80025 terminate_cause User-Request 80025 bytes_out 89634 80025 bytes_in 760741 80025 station_ip 83.122.121.72 80025 port 15728792 80025 nas_port_type Virtual 80025 remote_ip 5.5.5.158 80032 username soleymani 80032 unique_id port 80032 terminate_cause Lost-Carrier 80032 bytes_out 69548 80032 bytes_in 259915 80032 station_ip 5.119.175.187 80032 port 15728796 80032 nas_port_type Virtual 80032 remote_ip 5.5.5.156 80035 username soleymani 80035 unique_id port 80035 terminate_cause Lost-Carrier 80035 bytes_out 21703 80035 bytes_in 209241 80035 station_ip 5.119.14.105 80035 port 15728799 80035 nas_port_type Virtual 80035 remote_ip 5.5.5.155 80044 username madadi 80044 unique_id port 80044 terminate_cause Lost-Carrier 80044 bytes_out 11610 80044 bytes_in 122675 80044 station_ip 5.120.147.135 80044 port 15728808 80044 nas_port_type Virtual 80044 remote_ip 5.5.5.147 80045 username asadi 80045 unique_id port 80045 terminate_cause User-Request 80045 bytes_out 88780 80045 bytes_in 1424779 80045 station_ip 83.123.32.69 80045 port 15728809 80045 nas_port_type Virtual 80045 remote_ip 5.5.5.149 80047 username reza 80047 unique_id port 80047 terminate_cause User-Request 80047 bytes_out 17978 80047 bytes_in 76909 80047 station_ip 37.129.251.133 80047 port 15728813 80047 nas_port_type Virtual 80047 remote_ip 5.5.5.143 80050 username alirezazamani 80050 unique_id port 80050 terminate_cause User-Request 80050 bytes_out 171829236 80050 bytes_in 2840478987 80050 station_ip 78.39.157.2 80050 port 15728768 80050 nas_port_type Virtual 80050 remote_ip 5.5.5.170 80061 username forozande 80061 unique_id port 80061 terminate_cause User-Request 80061 bytes_out 128832 80061 bytes_in 1340195 80061 station_ip 37.129.108.214 80061 port 15728827 80061 nas_port_type Virtual 80061 remote_ip 5.5.5.132 80062 username amirhosein 80062 unique_id port 80062 terminate_cause Lost-Carrier 80062 bytes_out 1701642 80062 bytes_in 56620725 80062 station_ip 5.120.102.248 80062 port 15728819 80062 nas_port_type Virtual 80062 remote_ip 5.5.5.137 80064 username pouria 80064 unique_id port 80064 terminate_cause Lost-Carrier 80064 bytes_out 6425553 80064 bytes_in 254624536 80064 station_ip 5.119.93.17 80064 port 15728824 80064 nas_port_type Virtual 80064 remote_ip 5.5.5.134 80075 username pouria 80075 unique_id port 80075 terminate_cause Lost-Carrier 80075 bytes_out 1106469 80075 bytes_in 16708351 80075 station_ip 5.119.93.17 80075 port 15728838 80075 nas_port_type Virtual 80075 remote_ip 5.5.5.134 80096 username soleymani 80096 unique_id port 80096 terminate_cause Lost-Carrier 80096 bytes_out 31340 80096 bytes_in 180197 80096 station_ip 5.120.74.219 80096 port 15728857 80096 nas_port_type Virtual 80096 remote_ip 5.5.5.112 80097 username omidsafari 80097 unique_id port 80097 terminate_cause User-Request 80097 bytes_out 0 80097 bytes_in 0 80008 username alirezazamani 80008 unique_id port 80008 terminate_cause Lost-Carrier 80008 bytes_out 18405337 80008 bytes_in 16284103 80008 station_ip 5.120.130.177 80008 port 15728733 80008 nas_port_type Virtual 80008 remote_ip 5.5.5.193 80014 username alinezhad 80014 unique_id port 80014 terminate_cause User-Request 80014 bytes_out 17266 80014 bytes_in 41654 80014 station_ip 5.202.0.22 80014 port 15728780 80014 nas_port_type Virtual 80014 remote_ip 5.5.5.215 80020 username forozande 80020 unique_id port 80020 terminate_cause User-Request 80020 bytes_out 98938 80020 bytes_in 1768216 80020 station_ip 83.123.230.177 80020 port 15728787 80020 nas_port_type Virtual 80020 remote_ip 5.5.5.162 80022 username madadi 80022 kill_reason Maximum check online fails reached 80022 unique_id port 80022 bytes_out 27525 80022 bytes_in 66294 80022 station_ip 5.119.170.59 80022 port 15728789 80022 nas_port_type Virtual 80022 remote_ip 5.5.5.160 80024 username madadi 80024 unique_id port 80024 terminate_cause Lost-Carrier 80024 bytes_out 1369944 80024 bytes_in 3086664 80024 station_ip 5.119.91.143 80024 port 15728753 80024 nas_port_type Virtual 80024 remote_ip 5.5.5.177 80027 username asadi 80027 unique_id port 80027 terminate_cause User-Request 80027 bytes_out 49985 80027 bytes_in 251411 80027 station_ip 83.122.121.72 80027 port 15728794 80027 nas_port_type Virtual 80027 remote_ip 5.5.5.158 80034 username forozande 80034 unique_id port 80034 terminate_cause User-Request 80034 bytes_out 142391 80034 bytes_in 2159650 80034 station_ip 83.122.142.159 80034 port 15728801 80034 nas_port_type Virtual 80034 remote_ip 5.5.5.153 80036 username mobina 80036 unique_id port 80036 terminate_cause Lost-Carrier 80036 bytes_out 933134 80036 bytes_in 20645787 80036 station_ip 5.123.19.101 80036 port 15728800 80036 nas_port_type Virtual 80036 remote_ip 5.5.5.154 80039 username asadi 80039 unique_id port 80039 terminate_cause User-Request 80039 bytes_out 149321 80039 bytes_in 4258914 80039 station_ip 83.123.32.69 80039 port 15728806 80039 nas_port_type Virtual 80039 remote_ip 5.5.5.149 80046 username mobina 80046 unique_id port 80046 terminate_cause Lost-Carrier 80046 bytes_out 43413 80046 bytes_in 178498 80046 station_ip 5.124.66.19 80046 port 15728811 80046 nas_port_type Virtual 80046 remote_ip 5.5.5.145 80051 username madadi 80051 unique_id port 80051 terminate_cause Lost-Carrier 80051 bytes_out 36478 80051 bytes_in 173364 80051 station_ip 5.119.250.155 80051 port 15728814 80051 nas_port_type Virtual 80051 remote_ip 5.5.5.142 80057 username aminvpn 80057 unique_id port 80057 terminate_cause Lost-Carrier 80057 bytes_out 17792520 80057 bytes_in 718179529 80057 station_ip 2.183.244.184 80057 port 15728802 80057 nas_port_type Virtual 80057 remote_ip 5.5.5.169 80060 username rashidi 80060 unique_id port 80060 terminate_cause User-Request 80060 bytes_out 1551599 80060 bytes_in 33886023 80060 station_ip 5.119.187.252 80060 port 15728820 80060 nas_port_type Virtual 80060 remote_ip 5.5.5.194 80063 username mobina 80063 unique_id port 80063 terminate_cause Lost-Carrier 80063 bytes_out 29613 80063 bytes_in 250917 80063 station_ip 5.123.159.193 80063 port 15728825 80063 nas_port_type Virtual 80063 remote_ip 5.5.5.133 80066 username zoha 80066 unique_id port 80066 terminate_cause User-Request 80066 bytes_out 2923332 80066 bytes_in 17645959 80066 station_ip 5.119.189.39 80066 port 15728798 80066 nas_port_type Virtual 80066 remote_ip 5.5.5.191 80067 username alirezazamani 80067 unique_id port 80067 terminate_cause User-Request 80067 bytes_out 222608 80067 bytes_in 3129139 80067 station_ip 83.123.216.31 80067 port 15728830 80012 nas_port_type Virtual 81268 station_ip 5.119.30.76 81268 port 14 81268 unique_id port 81268 remote_ip 10.8.0.6 81273 username aminvpn 81273 mac 81273 bytes_out 0 81273 bytes_in 0 81273 station_ip 5.119.30.76 80021 username mobina 80021 unique_id port 80021 terminate_cause Lost-Carrier 80021 bytes_out 75350 80021 bytes_in 253179 80021 station_ip 5.124.53.238 80021 port 15728783 80021 nas_port_type Virtual 80021 remote_ip 5.5.5.165 80023 username soleymani 80023 unique_id port 80023 terminate_cause Lost-Carrier 80023 bytes_out 228425 80023 bytes_in 688770 80023 station_ip 5.120.4.233 80023 port 15728782 80023 nas_port_type Virtual 80023 remote_ip 5.5.5.166 80028 username aminvpn 80028 unique_id port 80028 terminate_cause Lost-Carrier 80028 bytes_out 2066760 80028 bytes_in 20945954 80028 station_ip 109.125.169.5 80028 port 15728786 80028 nas_port_type Virtual 80028 remote_ip 5.5.5.163 80029 username alirezazamani 80029 unique_id port 80029 terminate_cause User-Request 80029 bytes_out 37898366 80029 bytes_in 49982733 80029 station_ip 94.241.178.64 80029 port 15728775 80029 nas_port_type Virtual 80029 remote_ip 5.5.5.178 80031 username soleymani 80031 unique_id port 80031 terminate_cause Lost-Carrier 80031 bytes_out 366445 80031 bytes_in 638155 80031 station_ip 5.120.146.94 80031 port 15728795 80031 nas_port_type Virtual 80031 remote_ip 5.5.5.157 80037 username mahbobeh 80037 unique_id port 80037 terminate_cause Lost-Carrier 80037 bytes_out 1374952 80037 bytes_in 17041999 80037 station_ip 83.123.162.60 80037 port 15728791 80037 nas_port_type Virtual 80037 remote_ip 5.5.5.159 80038 username madadi 80038 unique_id port 80038 terminate_cause Lost-Carrier 80038 bytes_out 52548 80038 bytes_in 227128 80038 station_ip 5.119.138.32 80038 port 15728803 80038 nas_port_type Virtual 80038 remote_ip 5.5.5.152 80041 username caferibar 80041 unique_id port 80041 terminate_cause Lost-Carrier 80041 bytes_out 14477316 80041 bytes_in 291062378 80041 station_ip 31.59.41.175 80041 port 15728742 80041 nas_port_type Virtual 80041 remote_ip 5.5.5.185 80043 username soleymani 80043 unique_id port 80043 terminate_cause Lost-Carrier 80043 bytes_out 45686 80043 bytes_in 394637 80043 station_ip 5.120.78.111 80043 port 15728807 80043 nas_port_type Virtual 80043 remote_ip 5.5.5.148 80049 username alirezazamani 80049 unique_id port 80049 terminate_cause Lost-Carrier 80049 bytes_out 483736 80049 bytes_in 7032224 80049 station_ip 5.120.124.72 80049 port 15728810 80049 nas_port_type Virtual 80049 remote_ip 5.5.5.146 80052 username soleymani 80052 unique_id port 80052 terminate_cause User-Request 80052 bytes_out 0 80052 bytes_in 0 80052 station_ip 5.119.49.214 80052 port 15728817 80052 nas_port_type Virtual 80052 remote_ip 5.5.5.139 80053 username ahmadipour 80053 unique_id port 80053 terminate_cause Lost-Carrier 80053 bytes_out 555987 80053 bytes_in 11680100 80053 station_ip 83.122.240.203 80053 port 15728816 80053 nas_port_type Virtual 80053 remote_ip 5.5.5.140 80056 username alinezhad 80056 unique_id port 80056 terminate_cause User-Request 80056 bytes_out 0 80056 bytes_in 0 80056 station_ip 5.202.0.22 80056 port 15728823 80056 nas_port_type Virtual 80056 remote_ip 5.5.5.215 80058 username shahriyar 80058 unique_id port 80058 terminate_cause Lost-Carrier 80058 bytes_out 35788869 80058 bytes_in 794736846 80058 station_ip 5.202.14.24 80058 port 15728743 80058 nas_port_type Virtual 80058 remote_ip 5.5.5.184 80059 username shahnaz 80059 unique_id port 80059 terminate_cause User-Request 80059 bytes_out 4352014 80059 bytes_in 66327752 80059 station_ip 5.120.3.193 80059 port 15728755 81273 port 14 80015 nas_port_type Virtual 80015 remote_ip 5.5.5.194 80016 username alinezhad 80016 unique_id port 80016 terminate_cause User-Request 80016 bytes_out 24139 80016 bytes_in 306359 80016 station_ip 5.202.0.22 80016 port 15728781 80016 nas_port_type Virtual 80016 remote_ip 5.5.5.215 80018 username ahmadi 80018 unique_id port 80018 terminate_cause User-Request 80018 bytes_out 0 80018 bytes_in 0 80018 station_ip 83.123.144.220 80018 port 15728784 80018 nas_port_type Virtual 80018 remote_ip 5.5.5.164 80019 username alinezhad 80019 unique_id port 80019 terminate_cause User-Request 80019 bytes_out 7592 80019 bytes_in 16470 80019 station_ip 5.202.0.22 80019 port 15728785 80019 nas_port_type Virtual 80019 remote_ip 5.5.5.215 80026 username aminvpn 80026 unique_id port 80026 terminate_cause Lost-Carrier 80026 bytes_out 812297 80026 bytes_in 23172810 80026 station_ip 2.183.244.184 80026 port 15728771 80026 nas_port_type Virtual 80026 remote_ip 5.5.5.169 80030 username soleymani 80030 unique_id port 80030 terminate_cause Lost-Carrier 80030 bytes_out 430329 80030 bytes_in 501056 80030 station_ip 5.119.71.107 80030 port 15728788 80030 nas_port_type Virtual 80030 remote_ip 5.5.5.161 80033 username zoha 80033 kill_reason Wrong password 80033 unique_id port 80033 bytes_out 0 80033 bytes_in 0 80033 station_ip 5.119.189.39 80033 port 15728797 80033 nas_port_type Virtual 80040 username soleymani 80040 unique_id port 80040 terminate_cause Lost-Carrier 80040 bytes_out 111668 80040 bytes_in 1185799 80040 station_ip 5.119.132.209 80040 port 15728804 80040 nas_port_type Virtual 80040 remote_ip 5.5.5.151 80042 username zamanialireza 80042 unique_id port 80042 terminate_cause Lost-Carrier 80042 bytes_out 1529478 80042 bytes_in 41861870 80042 station_ip 37.27.5.137 80042 port 15728805 80042 nas_port_type Virtual 80042 remote_ip 5.5.5.150 80048 username madadi 80048 unique_id port 80048 terminate_cause Lost-Carrier 80048 bytes_out 103873 80048 bytes_in 625763 80048 station_ip 5.120.113.133 80048 port 15728812 80048 nas_port_type Virtual 80048 remote_ip 5.5.5.144 80054 username soleymani 80054 unique_id port 80054 terminate_cause Lost-Carrier 80054 bytes_out 242619 80054 bytes_in 1791346 80054 station_ip 5.119.152.134 80054 port 15728815 80054 nas_port_type Virtual 80054 remote_ip 5.5.5.141 80055 username asadi 80055 unique_id port 80055 terminate_cause User-Request 80055 bytes_out 264033 80055 bytes_in 6922136 80055 station_ip 113.203.105.209 80055 port 15728821 80055 nas_port_type Virtual 80055 remote_ip 5.5.5.136 80065 username madadi 80065 unique_id port 80065 terminate_cause Lost-Carrier 80065 bytes_out 87863 80065 bytes_in 573276 80065 station_ip 5.119.190.83 80065 port 15728818 80065 nas_port_type Virtual 80065 remote_ip 5.5.5.138 80068 username soleymani 80068 unique_id port 80068 terminate_cause User-Request 80068 bytes_out 0 80068 bytes_in 0 80068 station_ip 5.119.66.146 80068 port 15728831 80068 nas_port_type Virtual 80068 remote_ip 5.5.5.129 80070 username alirezazamani 80070 unique_id port 80070 terminate_cause Lost-Carrier 80070 bytes_out 21543052 80070 bytes_in 414870430 80070 station_ip 78.39.157.2 80070 port 15728829 80070 nas_port_type Virtual 80070 remote_ip 5.5.5.170 80072 username soleymani 80072 unique_id port 80072 terminate_cause Lost-Carrier 80072 bytes_out 155115 80072 bytes_in 1620434 80072 station_ip 5.120.171.253 80072 port 15728835 80072 nas_port_type Virtual 80072 remote_ip 5.5.5.126 80082 username alinezhad 80082 unique_id port 80082 terminate_cause User-Request 80082 bytes_out 13250 80082 bytes_in 39326 80082 station_ip 83.122.52.220 80082 port 15728846 80059 nas_port_type Virtual 80059 remote_ip 5.5.5.176 80073 username hamideh 80073 unique_id port 80073 terminate_cause Lost-Carrier 80073 bytes_out 369000 80073 bytes_in 831828 80073 station_ip 5.119.221.116 80073 port 15728836 80073 nas_port_type Virtual 80073 remote_ip 5.5.5.125 80074 username hamideh 80074 unique_id port 80074 terminate_cause Lost-Carrier 80074 bytes_out 43005 80074 bytes_in 152646 80074 station_ip 5.119.221.116 80074 port 15728839 80074 nas_port_type Virtual 80074 remote_ip 5.5.5.123 80083 username madadi 80083 unique_id port 80083 terminate_cause Lost-Carrier 80083 bytes_out 56197 80083 bytes_in 541671 80083 station_ip 5.119.19.203 80083 port 15728837 80083 nas_port_type Virtual 80083 remote_ip 5.5.5.124 80085 username reza 80085 unique_id port 80085 terminate_cause User-Request 80085 bytes_out 0 80085 bytes_in 0 80085 station_ip 37.129.251.133 80085 port 15728848 80085 nas_port_type Virtual 80085 remote_ip 5.5.5.143 80088 username aminvpn 80088 unique_id port 80088 terminate_cause User-Request 80088 bytes_out 9369802 80088 bytes_in 370867513 80088 station_ip 2.183.244.184 80088 port 15728843 80088 nas_port_type Virtual 80088 remote_ip 5.5.5.135 80091 username amin.insta01 80091 unique_id port 80091 terminate_cause Lost-Carrier 80091 bytes_out 1648129 80091 bytes_in 30346538 80091 station_ip 5.120.154.73 80091 port 15728842 80091 nas_port_type Virtual 80091 remote_ip 5.5.5.120 80092 username madadi 80092 unique_id port 80092 terminate_cause User-Request 80092 bytes_out 35245 80092 bytes_in 37392 80092 station_ip 5.119.74.61 80092 port 15728855 80092 nas_port_type Virtual 80092 remote_ip 5.5.5.114 80099 username omidsafari 80099 unique_id port 80099 terminate_cause User-Request 80099 bytes_out 0 80099 bytes_in 0 80099 station_ip 113.203.102.134 80099 port 15728862 80099 nas_port_type Virtual 80099 remote_ip 5.5.5.111 80100 username arabpour 80100 unique_id port 80100 terminate_cause User-Request 80100 bytes_out 292865 80100 bytes_in 3684805 80100 station_ip 83.122.16.202 80100 port 15728864 80100 nas_port_type Virtual 80100 remote_ip 5.5.5.110 80103 username amirhosein 80103 unique_id port 80103 terminate_cause Lost-Carrier 80103 bytes_out 692546 80103 bytes_in 7724866 80103 station_ip 5.120.102.248 80103 port 15728859 80103 nas_port_type Virtual 80103 remote_ip 5.5.5.137 80105 username amin.insta22 80105 unique_id port 80105 terminate_cause User-Request 80105 bytes_out 5642776 80105 bytes_in 11754904 80105 station_ip 31.56.220.243 80105 port 15728853 80105 nas_port_type Virtual 80105 remote_ip 5.5.5.116 80106 username madadi 80106 unique_id port 80106 terminate_cause Lost-Carrier 80106 bytes_out 43344 80106 bytes_in 404071 80106 station_ip 5.119.74.61 80106 port 15728858 80106 nas_port_type Virtual 80106 remote_ip 5.5.5.114 80111 username omidsafari 80111 unique_id port 80111 terminate_cause User-Request 80111 bytes_out 251360 80111 bytes_in 3911998 80111 station_ip 113.203.102.134 80111 port 15728875 80111 nas_port_type Virtual 80111 remote_ip 5.5.5.111 80117 username omidsafari 80117 unique_id port 80117 terminate_cause User-Request 80117 bytes_out 89608 80117 bytes_in 910632 80117 station_ip 113.203.102.134 80117 port 15728881 80117 nas_port_type Virtual 80117 remote_ip 5.5.5.111 80120 username ahmadi 80120 unique_id port 80120 terminate_cause User-Request 80120 bytes_out 25420 80120 bytes_in 144397 80120 station_ip 83.123.179.204 80120 port 15728885 80120 nas_port_type Virtual 80120 remote_ip 5.5.5.101 80131 username alirezazamani 80131 unique_id port 80131 terminate_cause User-Request 80131 bytes_out 8419085 80131 bytes_in 17118036 80131 station_ip 31.57.141.211 80067 nas_port_type Virtual 80067 remote_ip 5.5.5.130 80069 username forozande 80069 unique_id port 80069 terminate_cause User-Request 80069 bytes_out 76330 80069 bytes_in 263804 80069 station_ip 37.129.57.2 80069 port 15728833 80069 nas_port_type Virtual 80069 remote_ip 5.5.5.128 80071 username soleymani 80071 unique_id port 80071 terminate_cause Lost-Carrier 80071 bytes_out 129019 80071 bytes_in 621021 80071 station_ip 5.119.66.146 80071 port 15728832 80071 nas_port_type Virtual 80071 remote_ip 5.5.5.129 80076 username mobina 80076 unique_id port 80076 terminate_cause Lost-Carrier 80076 bytes_out 2586124 80076 bytes_in 44968206 80076 station_ip 5.123.183.43 80076 port 15728828 80076 nas_port_type Virtual 80076 remote_ip 5.5.5.131 80077 username alirezazamani 80077 unique_id port 80077 terminate_cause User-Request 80077 bytes_out 56246149 80077 bytes_in 1182134330 80077 station_ip 78.39.157.2 80077 port 15728834 80077 nas_port_type Virtual 80077 remote_ip 5.5.5.127 80078 username aminvpn 80078 unique_id port 80078 terminate_cause Lost-Carrier 80078 bytes_out 8749813 80078 bytes_in 338082884 80078 station_ip 2.183.244.184 80078 port 15728822 80078 nas_port_type Virtual 80078 remote_ip 5.5.5.135 80079 username soleymani 80079 unique_id port 80079 terminate_cause Lost-Carrier 80079 bytes_out 150690 80079 bytes_in 937816 80079 station_ip 5.119.23.216 80079 port 15728840 80079 nas_port_type Virtual 80079 remote_ip 5.5.5.122 80080 username soleymani 80080 unique_id port 80080 terminate_cause User-Request 80080 bytes_out 0 80080 bytes_in 0 80080 station_ip 5.119.213.193 80080 port 15728844 80080 nas_port_type Virtual 80080 remote_ip 5.5.5.119 80081 username soleymani 80081 unique_id port 80081 terminate_cause Lost-Carrier 80081 bytes_out 205146 80081 bytes_in 351072 80081 station_ip 5.119.107.31 80081 port 15728841 80081 nas_port_type Virtual 80081 remote_ip 5.5.5.121 80084 username soleymani 80084 unique_id port 80084 terminate_cause Lost-Carrier 80084 bytes_out 53684 80084 bytes_in 463786 80084 station_ip 5.119.213.193 80084 port 15728845 80084 nas_port_type Virtual 80084 remote_ip 5.5.5.119 80087 username reza 80087 unique_id port 80087 terminate_cause User-Request 80087 bytes_out 2288 80087 bytes_in 27889 80087 station_ip 37.129.251.133 80087 port 15728851 80087 nas_port_type Virtual 80087 remote_ip 5.5.5.143 80089 username pouria 80089 unique_id port 80089 terminate_cause Lost-Carrier 80089 bytes_out 1577727 80089 bytes_in 30970192 80089 station_ip 5.119.93.17 80089 port 15728849 80089 nas_port_type Virtual 80089 remote_ip 5.5.5.134 80093 username hamideh 80093 unique_id port 80093 terminate_cause Lost-Carrier 80093 bytes_out 20144 80093 bytes_in 144995 80093 station_ip 5.119.221.116 80093 port 15728854 80093 nas_port_type Virtual 80093 remote_ip 5.5.5.115 80095 username ahmadi 80095 unique_id port 80095 terminate_cause User-Request 80095 bytes_out 83029 80095 bytes_in 534941 80095 station_ip 83.123.200.40 80095 port 15728856 80095 nas_port_type Virtual 80095 remote_ip 5.5.5.113 80098 username omidsafari 80098 unique_id port 80098 terminate_cause User-Request 80098 bytes_out 0 80098 bytes_in 0 80098 station_ip 113.203.102.134 80098 port 15728861 80098 nas_port_type Virtual 80098 remote_ip 5.5.5.111 80102 username reza 80102 unique_id port 80102 terminate_cause User-Request 80102 bytes_out 32700 80102 bytes_in 506594 80102 station_ip 37.129.182.205 80102 port 15728866 80102 nas_port_type Virtual 80102 remote_ip 5.5.5.108 80108 username omidsafari 80108 unique_id port 80108 terminate_cause User-Request 80108 bytes_out 541021 80108 bytes_in 16773030 80108 station_ip 113.203.102.134 80082 nas_port_type Virtual 80082 remote_ip 5.5.5.118 80086 username reza 80086 unique_id port 80086 terminate_cause User-Request 80086 bytes_out 28839 80086 bytes_in 487113 80086 station_ip 37.129.251.133 80086 port 15728850 80086 nas_port_type Virtual 80086 remote_ip 5.5.5.143 80090 username hamideh 80090 unique_id port 80090 terminate_cause Lost-Carrier 80090 bytes_out 3341 80090 bytes_in 131481 80090 station_ip 5.119.221.116 80090 port 15728852 80090 nas_port_type Virtual 80090 remote_ip 5.5.5.123 80094 username mobina 80094 unique_id port 80094 terminate_cause Lost-Carrier 80094 bytes_out 2805915 80094 bytes_in 65450493 80094 station_ip 5.123.105.54 80094 port 15728847 80094 nas_port_type Virtual 80094 remote_ip 5.5.5.117 80101 username forozande 80101 unique_id port 80101 terminate_cause User-Request 80101 bytes_out 84492 80101 bytes_in 983051 80101 station_ip 83.123.27.43 80101 port 15728865 80101 nas_port_type Virtual 80101 remote_ip 5.5.5.109 80107 username madadi 80107 unique_id port 80107 terminate_cause Lost-Carrier 80107 bytes_out 21518 80107 bytes_in 125019 80107 station_ip 5.119.69.95 80107 port 15728867 80107 nas_port_type Virtual 80107 remote_ip 5.5.5.107 80109 username omidsafari 80109 unique_id port 80109 terminate_cause User-Request 80109 bytes_out 319182 80109 bytes_in 9059810 80109 station_ip 113.203.102.134 80109 port 15728874 80109 nas_port_type Virtual 80109 remote_ip 5.5.5.111 80114 username omidsafari 80114 unique_id port 80114 terminate_cause User-Request 80114 bytes_out 189588 80114 bytes_in 3555480 80114 station_ip 113.203.102.134 80114 port 15728877 80114 nas_port_type Virtual 80114 remote_ip 5.5.5.111 80116 username omidsafari 80116 unique_id port 80116 terminate_cause User-Request 80116 bytes_out 49613 80116 bytes_in 214195 80116 station_ip 113.203.102.134 80116 port 15728880 80116 nas_port_type Virtual 80116 remote_ip 5.5.5.111 80118 username alirezazamani 80118 unique_id port 80118 terminate_cause User-Request 80118 bytes_out 68450859 80118 bytes_in 1345555159 80118 station_ip 78.39.157.2 80118 port 15728869 80118 nas_port_type Virtual 80118 remote_ip 5.5.5.127 80121 username omidsafari 80121 unique_id port 80121 terminate_cause User-Request 80121 bytes_out 362389 80121 bytes_in 9368076 80121 station_ip 113.203.102.134 80121 port 15728886 80121 nas_port_type Virtual 80121 remote_ip 5.5.5.111 80123 username soleymani 80123 unique_id port 80123 terminate_cause Lost-Carrier 80123 bytes_out 71523 80123 bytes_in 321779 80123 station_ip 5.119.210.172 80123 port 15728883 80123 nas_port_type Virtual 80123 remote_ip 5.5.5.102 80135 username zamanialireza 80135 unique_id port 80135 terminate_cause User-Request 80135 bytes_out 174013 80135 bytes_in 4879024 80135 station_ip 83.123.151.205 80135 port 15728902 80135 nas_port_type Virtual 80135 remote_ip 5.5.5.95 80137 username amir 80137 unique_id port 80137 terminate_cause Lost-Carrier 80137 bytes_out 16738081 80137 bytes_in 45287391 80137 station_ip 46.225.213.247 80137 port 15728882 80137 nas_port_type Virtual 80137 remote_ip 5.5.5.103 80142 username soleymani 80142 unique_id port 80142 terminate_cause Lost-Carrier 80142 bytes_out 56919 80142 bytes_in 381705 80142 station_ip 5.120.136.6 80142 port 15728907 80142 nas_port_type Virtual 80142 remote_ip 5.5.5.92 80153 username alirezazamani 80153 kill_reason Relative expiration date has reached 80153 unique_id port 80153 bytes_out 0 80153 bytes_in 0 80153 station_ip 5.120.39.238 80153 port 15728917 80153 nas_port_type Virtual 80160 username ahmadi 80160 unique_id port 80160 terminate_cause User-Request 80160 bytes_out 34876 80160 bytes_in 238212 80160 station_ip 83.123.144.200 80097 station_ip 113.203.102.134 80097 port 15728860 80097 nas_port_type Virtual 80097 remote_ip 5.5.5.111 80104 username alirezazamani 80104 unique_id port 80104 terminate_cause User-Request 80104 bytes_out 25077854 80104 bytes_in 489934237 80104 station_ip 78.39.157.2 80104 port 15728863 80104 nas_port_type Virtual 80104 remote_ip 5.5.5.127 80119 username madadi 80119 unique_id port 80119 terminate_cause Lost-Carrier 80119 bytes_out 87524 80119 bytes_in 720986 80119 station_ip 5.120.147.117 80119 port 15728879 80119 nas_port_type Virtual 80119 remote_ip 5.5.5.104 80122 username omidsafari 80122 unique_id port 80122 terminate_cause User-Request 80122 bytes_out 217549 80122 bytes_in 5929143 80122 station_ip 113.203.102.134 80122 port 15728887 80122 nas_port_type Virtual 80122 remote_ip 5.5.5.111 80124 username omidsafari 80124 unique_id port 80124 terminate_cause User-Request 80124 bytes_out 431126 80124 bytes_in 12463760 80124 station_ip 113.203.102.134 80124 port 15728888 80124 nas_port_type Virtual 80124 remote_ip 5.5.5.111 80126 username omidsafari 80126 unique_id port 80126 terminate_cause User-Request 80126 bytes_out 44908 80126 bytes_in 489953 80126 station_ip 113.203.102.134 80126 port 15728891 80126 nas_port_type Virtual 80126 remote_ip 5.5.5.111 80129 username zamanialireza 80129 unique_id port 80129 terminate_cause Lost-Carrier 80129 bytes_out 33857 80129 bytes_in 164054 80129 station_ip 94.183.213.166 80129 port 15728893 80129 nas_port_type Virtual 80129 remote_ip 5.5.5.98 80130 username madadi 80130 unique_id port 80130 terminate_cause Lost-Carrier 80130 bytes_out 400216 80130 bytes_in 1497598 80130 station_ip 5.119.20.18 80130 port 15728889 80130 nas_port_type Virtual 80130 remote_ip 5.5.5.100 80139 username omidsafari 80139 unique_id port 80139 terminate_cause Lost-Carrier 80139 bytes_out 128427 80139 bytes_in 1663618 80139 station_ip 113.203.102.134 80139 port 15728903 80139 nas_port_type Virtual 80139 remote_ip 5.5.5.111 80144 username alinezhad 80144 unique_id port 80144 terminate_cause User-Request 80144 bytes_out 27803 80144 bytes_in 415323 80144 station_ip 5.202.4.182 80144 port 15728910 80144 nas_port_type Virtual 80144 remote_ip 5.5.5.89 80145 username alinezhad 80145 unique_id port 80145 terminate_cause Lost-Carrier 80145 bytes_out 74441 80145 bytes_in 535005 80145 station_ip 5.202.24.175 80145 port 15728908 80145 nas_port_type Virtual 80145 remote_ip 5.5.5.91 80150 username reza 80150 unique_id port 80150 terminate_cause User-Request 80150 bytes_out 111116 80150 bytes_in 2810770 80150 station_ip 83.123.144.173 80150 port 15728913 80150 nas_port_type Virtual 80150 remote_ip 5.5.5.90 80154 username alirezazamani 80154 kill_reason Relative expiration date has reached 80154 unique_id port 80154 bytes_out 0 80154 bytes_in 0 80154 station_ip 5.119.225.242 80154 port 15728919 80154 nas_port_type Virtual 80155 username hamideh 80155 unique_id port 80155 terminate_cause Lost-Carrier 80155 bytes_out 556260 80155 bytes_in 4164878 80155 station_ip 5.119.130.82 80155 port 15728914 80155 nas_port_type Virtual 80155 remote_ip 5.5.5.87 80156 username reza 80156 unique_id port 80156 terminate_cause User-Request 80156 bytes_out 17094 80156 bytes_in 585458 80156 station_ip 83.123.144.173 80156 port 15728920 80156 nas_port_type Virtual 80156 remote_ip 5.5.5.90 80170 username abdilahyar 80170 unique_id port 80170 terminate_cause Lost-Carrier 80170 bytes_out 5738194 80170 bytes_in 108801968 80170 station_ip 5.120.113.134 80170 port 15728692 80170 nas_port_type Virtual 80170 remote_ip 5.5.5.219 80173 username alinezhad 80173 unique_id port 80173 terminate_cause User-Request 80173 bytes_out 0 80108 port 15728871 80108 nas_port_type Virtual 80108 remote_ip 5.5.5.111 80110 username amirhosein 80110 unique_id port 80110 terminate_cause Lost-Carrier 80110 bytes_out 241956 80110 bytes_in 1307319 80110 station_ip 5.120.102.248 80110 port 15728868 80110 nas_port_type Virtual 80110 remote_ip 5.5.5.137 80112 username omidsafari 80112 unique_id port 80112 terminate_cause User-Request 80112 bytes_out 704182 80112 bytes_in 1696249 80112 station_ip 113.203.102.134 80112 port 15728876 80112 nas_port_type Virtual 80112 remote_ip 5.5.5.111 80113 username amirhosein 80113 unique_id port 80113 terminate_cause Lost-Carrier 80113 bytes_out 426045 80113 bytes_in 12117706 80113 station_ip 5.120.102.248 80113 port 15728870 80113 nas_port_type Virtual 80113 remote_ip 5.5.5.106 80115 username hamideh 80115 unique_id port 80115 terminate_cause Lost-Carrier 80115 bytes_out 55184 80115 bytes_in 361761 80115 station_ip 5.119.221.116 80115 port 15728873 80115 nas_port_type Virtual 80115 remote_ip 5.5.5.115 80125 username omidsafari 80125 unique_id port 80125 terminate_cause User-Request 80125 bytes_out 134347 80125 bytes_in 2944247 80125 station_ip 113.203.102.134 80125 port 15728890 80125 nas_port_type Virtual 80125 remote_ip 5.5.5.111 80127 username alinezhad 80127 unique_id port 80127 terminate_cause User-Request 80127 bytes_out 310 80127 bytes_in 20560 80127 station_ip 5.202.30.254 80127 port 15728892 80127 nas_port_type Virtual 80127 remote_ip 5.5.5.99 80128 username alinezhad 80128 unique_id port 80128 terminate_cause User-Request 80128 bytes_out 0 80128 bytes_in 0 80128 station_ip 5.202.30.254 80128 port 15728894 80128 nas_port_type Virtual 80128 remote_ip 5.5.5.99 80141 username alinezhad 80141 unique_id port 80141 terminate_cause Lost-Carrier 80141 bytes_out 59828 80141 bytes_in 295262 80141 station_ip 5.202.97.18 80141 port 15728905 80141 nas_port_type Virtual 80141 remote_ip 5.5.5.93 80146 username asadi 80146 unique_id port 80146 terminate_cause User-Request 80146 bytes_out 216062 80146 bytes_in 2867342 80146 station_ip 83.122.25.185 80146 port 15728911 80146 nas_port_type Virtual 80146 remote_ip 5.5.5.88 80151 username alinezhad 80151 unique_id port 80151 terminate_cause User-Request 80151 bytes_out 0 80151 bytes_in 0 80151 station_ip 5.202.4.182 80151 port 15728916 80151 nas_port_type Virtual 80151 remote_ip 5.5.5.89 80157 username forozande 80157 unique_id port 80157 terminate_cause User-Request 80157 bytes_out 110837 80157 bytes_in 1054179 80157 station_ip 37.129.42.42 80157 port 15728922 80157 nas_port_type Virtual 80157 remote_ip 5.5.5.85 80161 username zamanialireza 80161 unique_id port 80161 terminate_cause Lost-Carrier 80161 bytes_out 124335 80161 bytes_in 1551252 80161 station_ip 94.183.213.166 80161 port 15728921 80161 nas_port_type Virtual 80161 remote_ip 5.5.5.98 80162 username alinezhad 80162 unique_id port 80162 terminate_cause User-Request 80162 bytes_out 14672 80162 bytes_in 20982 80162 station_ip 5.202.4.182 80162 port 15728929 80162 nas_port_type Virtual 80162 remote_ip 5.5.5.89 80163 username hamideh 80163 unique_id port 80163 terminate_cause Lost-Carrier 80163 bytes_out 141899 80163 bytes_in 356221 80163 station_ip 5.119.130.82 80163 port 15728925 80163 nas_port_type Virtual 80163 remote_ip 5.5.5.87 80164 username alirezazamani 80164 kill_reason Relative expiration date has reached 80164 unique_id port 80164 bytes_out 0 80164 bytes_in 0 80164 station_ip 5.119.225.242 80164 port 15728933 80164 nas_port_type Virtual 80165 username alirezazamani 80165 kill_reason Relative expiration date has reached 80165 unique_id port 80165 bytes_out 0 80165 bytes_in 0 80131 port 15728878 80131 nas_port_type Virtual 80131 remote_ip 5.5.5.198 80132 username caferibar 80132 unique_id port 80132 terminate_cause User-Request 80132 bytes_out 0 80132 bytes_in 0 80132 station_ip 5.119.123.20 80132 port 15728899 80132 nas_port_type Virtual 80132 remote_ip 5.5.5.96 80133 username ahmad 80133 kill_reason Absolute expiration date has reached 80133 unique_id port 80133 bytes_out 0 80133 bytes_in 0 80133 station_ip 86.57.106.33 80133 port 15728901 80133 nas_port_type Virtual 80134 username zamanialireza 80134 unique_id port 80134 terminate_cause User-Request 80134 bytes_out 597785 80134 bytes_in 12956975 80134 station_ip 83.123.151.205 80134 port 15728900 80134 nas_port_type Virtual 80134 remote_ip 5.5.5.95 80136 username amirhosein 80136 unique_id port 80136 terminate_cause Lost-Carrier 80136 bytes_out 265105 80136 bytes_in 1495980 80136 station_ip 5.119.72.16 80136 port 15728898 80136 nas_port_type Virtual 80136 remote_ip 5.5.5.97 80138 username omidsafari 80138 unique_id port 80138 terminate_cause User-Request 80138 bytes_out 373416 80138 bytes_in 5180227 80138 station_ip 113.203.102.134 80138 port 15728904 80138 nas_port_type Virtual 80138 remote_ip 5.5.5.94 80140 username alirezazamani 80140 unique_id port 80140 terminate_cause User-Request 80140 bytes_out 99780283 80140 bytes_in 1992697642 80140 station_ip 78.39.157.2 80140 port 15728896 80140 nas_port_type Virtual 80140 remote_ip 5.5.5.127 80143 username mobina 80143 unique_id port 80143 terminate_cause Lost-Carrier 80143 bytes_out 7492255 80143 bytes_in 119594637 80143 station_ip 5.123.89.58 80143 port 15728872 80143 nas_port_type Virtual 80143 remote_ip 5.5.5.105 80147 username alinezhad 80147 unique_id port 80147 terminate_cause User-Request 80147 bytes_out 0 80147 bytes_in 0 80147 station_ip 5.202.4.182 80147 port 15728912 80147 nas_port_type Virtual 80147 remote_ip 5.5.5.89 80148 username reza 80148 unique_id port 80148 terminate_cause User-Request 80148 bytes_out 194520 80148 bytes_in 3402320 80148 station_ip 83.123.144.173 80148 port 15728909 80148 nas_port_type Virtual 80148 remote_ip 5.5.5.90 80149 username alirezazamani 80149 kill_reason Relative expiration date has reached, Maximum check online fails reached 80149 unique_id port 80149 bytes_out 6647459 80149 bytes_in 114620918 80149 station_ip 94.241.178.64 80149 port 15728884 80149 nas_port_type Virtual 80149 remote_ip 5.5.5.178 80152 username reza 80152 unique_id port 80152 terminate_cause User-Request 80152 bytes_out 18730 80152 bytes_in 120667 80152 station_ip 83.123.144.173 80152 port 15728915 80152 nas_port_type Virtual 80152 remote_ip 5.5.5.90 81269 station_ip 83.123.233.115 81269 port 15728829 81269 nas_port_type Virtual 81269 remote_ip 5.5.5.154 81275 username alinezhad 81275 unique_id port 81275 terminate_cause User-Request 81275 bytes_out 0 81275 bytes_in 0 80159 username ahmadipour 80159 unique_id port 80159 terminate_cause Lost-Carrier 80159 bytes_out 677109 80159 bytes_in 12455338 80159 station_ip 83.122.184.19 80159 port 15728924 80159 nas_port_type Virtual 80159 remote_ip 5.5.5.83 80172 username zamanialireza 80172 unique_id port 80172 terminate_cause User-Request 80172 bytes_out 0 80172 bytes_in 0 80172 station_ip 83.122.71.32 80172 port 15728940 80172 nas_port_type Virtual 80172 remote_ip 5.5.5.80 80174 username shahrooz 80174 unique_id port 80174 terminate_cause Lost-Carrier 80174 bytes_out 9317558 80174 bytes_in 227120596 80174 station_ip 83.122.151.183 80174 port 15728934 80174 nas_port_type Virtual 80174 remote_ip 5.5.5.81 80183 username zamanialireza 80183 unique_id port 80183 terminate_cause Lost-Carrier 80183 bytes_out 2245703 81275 station_ip 5.202.10.122 80160 port 15728923 80160 nas_port_type Virtual 80160 remote_ip 5.5.5.84 80166 username soleymani 80166 unique_id port 80166 terminate_cause Lost-Carrier 80166 bytes_out 263938 80166 bytes_in 1820078 80166 station_ip 5.120.157.191 80166 port 15728928 80166 nas_port_type Virtual 80166 remote_ip 5.5.5.82 80167 username amirhosein 80167 unique_id port 80167 terminate_cause Lost-Carrier 80167 bytes_out 1303952 80167 bytes_in 20731736 80167 station_ip 5.119.72.16 80167 port 15728926 80167 nas_port_type Virtual 80167 remote_ip 5.5.5.97 80168 username alirezazamani 80168 kill_reason Relative expiration date has reached 80168 unique_id port 80168 bytes_out 0 80168 bytes_in 0 80168 station_ip 5.119.225.242 80168 port 15728936 80168 nas_port_type Virtual 80169 username alinezhad 80169 unique_id port 80169 terminate_cause User-Request 80169 bytes_out 0 80169 bytes_in 0 80169 station_ip 5.202.4.182 80169 port 15728937 80169 nas_port_type Virtual 80169 remote_ip 5.5.5.89 80171 username madadi 80171 unique_id port 80171 terminate_cause Lost-Carrier 80171 bytes_out 1243451 80171 bytes_in 2853018 80171 station_ip 5.120.153.122 80171 port 15728918 80171 nas_port_type Virtual 80171 remote_ip 5.5.5.86 81270 bytes_out 250267 81270 bytes_in 4347317 81270 station_ip 83.122.195.71 81270 port 15728830 81270 nas_port_type Virtual 81270 remote_ip 5.5.5.153 81271 username aminvpn 81271 mac 81271 bytes_out 0 80178 username caferibar 80178 unique_id port 80178 terminate_cause Lost-Carrier 80178 bytes_out 1898522 80178 bytes_in 29061738 80178 station_ip 31.59.41.175 80178 port 15728942 80178 nas_port_type Virtual 80178 remote_ip 5.5.5.185 80183 bytes_in 40340999 80183 station_ip 5.120.127.121 80183 port 15728952 80183 nas_port_type Virtual 80183 remote_ip 5.5.5.77 80185 username zoha 80185 unique_id port 80185 terminate_cause Lost-Carrier 80185 bytes_out 176762 80185 bytes_in 736241 80185 station_ip 5.119.189.39 80185 port 15728955 80185 nas_port_type Virtual 80185 remote_ip 5.5.5.79 80189 username mobina 80189 kill_reason Relative expiration date has reached 80189 unique_id port 80189 bytes_out 0 80189 bytes_in 0 80189 station_ip 5.124.123.95 80189 port 15728959 80189 nas_port_type Virtual 80195 username goli 80195 unique_id port 80195 terminate_cause User-Request 80195 bytes_out 33220 80195 bytes_in 74328 80195 station_ip 83.123.116.23 80195 port 15728964 80195 nas_port_type Virtual 80195 remote_ip 5.5.5.74 80198 username alirezazamani 80198 kill_reason Relative expiration date has reached 80198 unique_id port 80198 bytes_out 0 80198 bytes_in 0 80198 station_ip 113.203.127.173 80198 port 15728641 80198 nas_port_type Virtual 80200 username avaanna 80200 unique_id port 80200 terminate_cause User-Request 80200 bytes_out 51137 80200 bytes_in 441208 80200 station_ip 83.123.117.12 80200 port 15728643 80200 nas_port_type Virtual 80200 remote_ip 5.5.5.253 80201 username forozande 80201 unique_id port 80201 terminate_cause User-Request 80201 bytes_out 75684 80201 bytes_in 1254134 80201 station_ip 113.203.65.132 80201 port 15728644 80201 nas_port_type Virtual 80201 remote_ip 5.5.5.254 80204 username alinezhad 80204 unique_id port 80204 terminate_cause User-Request 80204 bytes_out 0 80204 bytes_in 0 80204 station_ip 5.202.132.30 80204 port 15728648 80204 nas_port_type Virtual 80204 remote_ip 5.5.5.250 80210 username omidsafari 80210 unique_id port 80210 terminate_cause User-Request 80210 bytes_out 310252 80210 bytes_in 9322577 80210 station_ip 83.122.213.159 80210 port 15728652 80210 nas_port_type Virtual 80210 remote_ip 5.5.5.248 80212 username alirezazamani 80212 kill_reason Relative expiration date has reached 80165 station_ip 5.119.225.242 80165 port 15728935 80165 nas_port_type Virtual 80175 username zoha 80175 unique_id port 80175 terminate_cause Lost-Carrier 80175 bytes_out 3936345 80175 bytes_in 21594973 80175 station_ip 5.119.189.39 80175 port 15728906 80175 nas_port_type Virtual 80175 remote_ip 5.5.5.191 80179 username zoha 80179 unique_id port 80179 terminate_cause Lost-Carrier 80179 bytes_out 681598 80179 bytes_in 4278743 80179 station_ip 5.119.189.39 80179 port 15728943 80179 nas_port_type Virtual 80179 remote_ip 5.5.5.79 80184 username pouria 80184 unique_id port 80184 terminate_cause Lost-Carrier 80184 bytes_out 9636496 80184 bytes_in 308586089 80184 station_ip 151.235.89.63 80184 port 15728951 80184 nas_port_type Virtual 80184 remote_ip 5.5.5.76 80192 username alirezazamani 80192 kill_reason Relative expiration date has reached 80192 unique_id port 80192 bytes_out 0 80192 bytes_in 0 80192 station_ip 94.241.178.64 80192 port 15728961 80192 nas_port_type Virtual 80202 username asadi 80202 unique_id port 80202 terminate_cause User-Request 80202 bytes_out 207524 80202 bytes_in 3838299 80202 station_ip 83.122.27.82 80202 port 15728645 80202 nas_port_type Virtual 80202 remote_ip 5.5.5.252 80206 username madadi 80206 unique_id port 80206 terminate_cause Lost-Carrier 80206 bytes_out 404740 80206 bytes_in 1118405 80206 station_ip 5.120.9.197 80206 port 15728640 80206 nas_port_type Virtual 80206 remote_ip 5.5.5.255 80213 username alirezazamani 80213 kill_reason Relative expiration date has reached 80213 unique_id port 80213 bytes_out 0 80213 bytes_in 0 80213 station_ip 94.241.178.64 80213 port 15728656 80213 nas_port_type Virtual 80218 username ahmadi 80218 unique_id port 80218 terminate_cause Lost-Carrier 80218 bytes_out 137688 80218 bytes_in 246835 80218 station_ip 83.123.243.172 80218 port 15728662 80218 nas_port_type Virtual 80218 remote_ip 5.5.5.243 80224 username soleymani 80224 unique_id port 80224 terminate_cause Lost-Carrier 80224 bytes_out 565926 80224 bytes_in 2709947 80224 station_ip 5.119.161.222 80224 port 15728666 80224 nas_port_type Virtual 80224 remote_ip 5.5.5.240 80227 username shahrooz 80227 unique_id port 80227 terminate_cause User-Request 80227 bytes_out 0 80227 bytes_in 0 80227 station_ip 83.122.151.183 80227 port 15728672 80227 nas_port_type Virtual 80227 remote_ip 5.5.5.235 80231 username mobina 80231 kill_reason Relative expiration date has reached 80231 unique_id port 80231 bytes_out 0 80231 bytes_in 0 80231 station_ip 5.123.56.203 80231 port 15728676 80231 nas_port_type Virtual 80233 username soleymani 80233 unique_id port 80233 terminate_cause User-Request 80233 bytes_out 0 80233 bytes_in 0 80233 station_ip 5.120.133.149 80233 port 15728678 80233 nas_port_type Virtual 80233 remote_ip 5.5.5.231 80247 username aminvpn 80247 mac 80247 bytes_out 2183706 80247 bytes_in 36705121 80247 station_ip 5.120.183.82 80247 port 9 80247 unique_id port 80247 remote_ip 10.8.0.6 80248 username aminvpn 80248 mac 80248 bytes_out 0 80248 bytes_in 0 80248 station_ip 5.120.183.82 80248 port 9 80248 unique_id port 80248 remote_ip 10.8.0.6 80252 username soleymani 80252 kill_reason Maximum number of concurrent logins reached 80252 unique_id port 80252 bytes_out 0 80252 bytes_in 0 80252 station_ip 5.120.65.60 80252 port 15728697 80252 nas_port_type Virtual 80261 username soleymani 80261 kill_reason Maximum number of concurrent logins reached 80261 unique_id port 80261 bytes_out 0 80261 bytes_in 0 80261 station_ip 5.120.191.88 80261 port 15728705 80261 nas_port_type Virtual 80264 username soleymani 80264 unique_id port 80264 terminate_cause Lost-Carrier 80173 bytes_in 0 80173 station_ip 5.202.4.182 80173 port 15728941 80173 nas_port_type Virtual 80173 remote_ip 5.5.5.89 80176 username avaanna 80176 unique_id port 80176 terminate_cause User-Request 80176 bytes_out 81400 80176 bytes_in 319566 80176 station_ip 83.123.219.201 80176 port 15728945 80176 nas_port_type Virtual 80176 remote_ip 5.5.5.78 80180 username alirezazamani 80180 kill_reason Relative expiration date has reached 80180 unique_id port 80180 bytes_out 0 80180 bytes_in 0 80180 station_ip 5.119.225.242 80180 port 15728946 80180 nas_port_type Virtual 80181 username mahbobeh 80181 unique_id port 80181 terminate_cause Lost-Carrier 80181 bytes_out 8062984 80181 bytes_in 134097898 80181 station_ip 83.123.162.60 80181 port 15728939 80181 nas_port_type Virtual 80181 remote_ip 5.5.5.159 80182 username zamanialireza 80182 unique_id port 80182 terminate_cause User-Request 80182 bytes_out 6880990 80182 bytes_in 136816357 80182 station_ip 5.120.127.121 80182 port 15728950 80182 nas_port_type Virtual 80182 remote_ip 5.5.5.77 80186 username mobina 80186 kill_reason Relative expiration date has reached 80186 unique_id port 80186 bytes_out 0 80186 bytes_in 0 80186 station_ip 5.124.123.95 80186 port 15728957 80186 nas_port_type Virtual 80191 username amin.insta19 80191 unique_id port 80191 terminate_cause Lost-Carrier 80191 bytes_out 3078626 80191 bytes_in 35677696 80191 station_ip 5.119.156.94 80191 port 15728956 80191 nas_port_type Virtual 80191 remote_ip 5.5.5.75 80193 username alirezazamani 80193 kill_reason Relative expiration date has reached 80193 unique_id port 80193 bytes_out 0 80193 bytes_in 0 80193 station_ip 94.241.178.64 80193 port 15728962 80193 nas_port_type Virtual 80197 username mahbobeh 80197 unique_id port 80197 terminate_cause Admin-Reboot 80197 bytes_out 43664 80197 bytes_in 683057 80197 station_ip 83.123.162.60 80197 port 15728966 80197 nas_port_type Virtual 80197 remote_ip 5.5.5.159 80203 username alirezazamani 80203 kill_reason Relative expiration date has reached 80203 unique_id port 80203 bytes_out 0 80203 bytes_in 0 80203 station_ip 5.119.225.242 80203 port 15728646 80203 nas_port_type Virtual 80205 username omidsafari 80205 unique_id port 80205 terminate_cause User-Request 80205 bytes_out 136683 80205 bytes_in 1678699 80205 station_ip 113.203.102.134 80205 port 15728647 80205 nas_port_type Virtual 80205 remote_ip 5.5.5.251 80207 username omidsafari 80207 unique_id port 80207 terminate_cause User-Request 80207 bytes_out 49694 80207 bytes_in 480667 80207 station_ip 113.203.102.134 80207 port 15728650 80207 nas_port_type Virtual 80207 remote_ip 5.5.5.251 80211 username forozande 80211 unique_id port 80211 terminate_cause User-Request 80211 bytes_out 178993 80211 bytes_in 1897293 80211 station_ip 37.129.112.242 80211 port 15728653 80211 nas_port_type Virtual 80211 remote_ip 5.5.5.247 80222 username avaanna 80222 unique_id port 80222 terminate_cause User-Request 80222 bytes_out 218131 80222 bytes_in 672288 80222 station_ip 83.123.117.12 80222 port 15728665 80222 nas_port_type Virtual 80222 remote_ip 5.5.5.253 80234 username soleymani 80234 unique_id port 80234 terminate_cause User-Request 80234 bytes_out 0 80234 bytes_in 0 80234 station_ip 5.120.133.149 80234 port 15728679 80234 nas_port_type Virtual 80234 remote_ip 5.5.5.231 80242 username ahmadi 80242 unique_id port 80242 terminate_cause User-Request 80242 bytes_out 0 80242 bytes_in 0 80242 station_ip 83.123.178.192 80242 port 15728684 80242 nas_port_type Virtual 80242 remote_ip 5.5.5.229 80244 username zamanialireza 80244 unique_id port 80244 terminate_cause Lost-Carrier 80244 bytes_out 3271 80244 bytes_in 122353 80244 station_ip 151.238.253.60 80187 username mobina 80187 kill_reason Relative expiration date has reached 80187 unique_id port 80187 bytes_out 0 80187 bytes_in 0 80187 station_ip 5.124.123.95 80187 port 15728958 80187 nas_port_type Virtual 80188 username mahbobeh 80188 unique_id port 80188 terminate_cause Lost-Carrier 80188 bytes_out 3685319 80188 bytes_in 64719335 80188 station_ip 83.123.162.60 80188 port 15728953 80188 nas_port_type Virtual 80188 remote_ip 5.5.5.159 80190 username mobina 80190 kill_reason Relative expiration date has reached 80190 unique_id port 80190 bytes_out 0 80190 bytes_in 0 80190 station_ip 5.123.55.252 80190 port 15728960 80190 nas_port_type Virtual 80194 username alirezazamani 80194 kill_reason Relative expiration date has reached 80194 unique_id port 80194 bytes_out 0 80194 bytes_in 0 80194 station_ip 94.241.178.64 80194 port 15728963 80194 nas_port_type Virtual 80196 username madadi 80196 unique_id port 80196 terminate_cause Lost-Carrier 80196 bytes_out 71386 80196 bytes_in 302967 80196 station_ip 5.119.235.146 80196 port 15728965 80196 nas_port_type Virtual 80196 remote_ip 5.5.5.73 80199 username forozande 80199 unique_id port 80199 terminate_cause User-Request 80199 bytes_out 38514 80199 bytes_in 191447 80199 station_ip 113.203.65.132 80199 port 15728642 80199 nas_port_type Virtual 80199 remote_ip 5.5.5.254 80208 username madadi 80208 unique_id port 80208 terminate_cause Lost-Carrier 80208 bytes_out 94174 80208 bytes_in 305428 80208 station_ip 5.119.87.113 80208 port 15728649 80208 nas_port_type Virtual 80208 remote_ip 5.5.5.249 80209 username mobina 80209 kill_reason Relative expiration date has reached 80209 unique_id port 80209 bytes_out 0 80209 bytes_in 0 80209 station_ip 5.123.92.104 80209 port 15728651 80209 nas_port_type Virtual 80219 username madadi 80219 unique_id port 80219 terminate_cause Lost-Carrier 80219 bytes_out 13649 80219 bytes_in 129199 80219 station_ip 5.120.121.107 80219 port 15728660 80219 nas_port_type Virtual 80219 remote_ip 5.5.5.245 80223 username amin.insta22 80223 unique_id port 80223 terminate_cause User-Request 80223 bytes_out 10398729 80223 bytes_in 130045335 80223 station_ip 31.56.218.201 80223 port 15728661 80223 nas_port_type Virtual 80223 remote_ip 5.5.5.244 80225 username forozande 80225 unique_id port 80225 terminate_cause User-Request 80225 bytes_out 152651 80225 bytes_in 2978462 80225 station_ip 37.129.92.40 80225 port 15728670 80225 nas_port_type Virtual 80225 remote_ip 5.5.5.236 80226 username soleymani 80226 unique_id port 80226 terminate_cause Lost-Carrier 80226 bytes_out 55213 80226 bytes_in 252307 80226 station_ip 5.119.88.181 80226 port 15728668 80226 nas_port_type Virtual 80226 remote_ip 5.5.5.238 80228 username asadi 80228 unique_id port 80228 terminate_cause User-Request 80228 bytes_out 306079 80228 bytes_in 3922264 80228 station_ip 83.122.27.82 80228 port 15728671 80228 nas_port_type Virtual 80228 remote_ip 5.5.5.252 80230 username forozande 80230 unique_id port 80230 terminate_cause User-Request 80230 bytes_out 75258 80230 bytes_in 733596 80230 station_ip 83.123.237.37 80230 port 15728675 80230 nas_port_type Virtual 80230 remote_ip 5.5.5.233 80236 username alirezazamani 80236 kill_reason Relative expiration date has reached 80236 unique_id port 80236 bytes_out 0 80236 bytes_in 0 80236 station_ip 31.57.130.141 80236 port 15728682 80236 nas_port_type Virtual 80237 username zoha 80237 unique_id port 80237 terminate_cause Lost-Carrier 80237 bytes_out 240028 80237 bytes_in 1342545 80237 station_ip 5.119.189.39 80237 port 15728680 80237 nas_port_type Virtual 80237 remote_ip 5.5.5.239 80239 username alirezazamani 80239 kill_reason Relative expiration date has reached 80239 unique_id port 80212 unique_id port 80212 bytes_out 0 80212 bytes_in 0 80212 station_ip 94.241.178.64 80212 port 15728655 80212 nas_port_type Virtual 80214 username alirezazamani 80214 kill_reason Relative expiration date has reached 80214 unique_id port 80214 bytes_out 0 80214 bytes_in 0 80214 station_ip 94.241.178.64 80214 port 15728657 80214 nas_port_type Virtual 80215 username alinezhad 80215 unique_id port 80215 terminate_cause User-Request 80215 bytes_out 0 80215 bytes_in 0 80215 station_ip 5.202.132.30 80215 port 15728658 80215 nas_port_type Virtual 80215 remote_ip 5.5.5.250 80216 username alinezhad 80216 unique_id port 80216 terminate_cause User-Request 80216 bytes_out 17157 80216 bytes_in 55613 80216 station_ip 5.202.132.30 80216 port 15728659 80216 nas_port_type Virtual 80216 remote_ip 5.5.5.250 80217 username mahbobeh 80217 unique_id port 80217 terminate_cause Lost-Carrier 80217 bytes_out 12341709 80217 bytes_in 192297013 80217 station_ip 83.123.162.60 80217 port 15728654 80217 nas_port_type Virtual 80217 remote_ip 5.5.5.246 80220 username forozande 80220 unique_id port 80220 terminate_cause User-Request 80220 bytes_out 98398 80220 bytes_in 696486 80220 station_ip 83.122.207.76 80220 port 15728664 80220 nas_port_type Virtual 80220 remote_ip 5.5.5.241 80221 username soleymani 80221 unique_id port 80221 terminate_cause Lost-Carrier 80221 bytes_out 833203 80221 bytes_in 21510458 80221 station_ip 5.120.119.188 80221 port 15728663 80221 nas_port_type Virtual 80221 remote_ip 5.5.5.242 80229 username asadi 80229 unique_id port 80229 terminate_cause User-Request 80229 bytes_out 277797 80229 bytes_in 3248343 80229 station_ip 83.122.27.82 80229 port 15728673 80229 nas_port_type Virtual 80229 remote_ip 5.5.5.252 80232 username zoha 80232 unique_id port 80232 terminate_cause Lost-Carrier 80232 bytes_out 712330 80232 bytes_in 4141370 80232 station_ip 5.119.189.39 80232 port 15728667 80232 nas_port_type Virtual 80232 remote_ip 5.5.5.239 80235 username soleymani 80235 unique_id port 80235 terminate_cause Lost-Carrier 80235 bytes_out 123505 80235 bytes_in 868644 80235 station_ip 5.120.96.251 80235 port 15728677 80235 nas_port_type Virtual 80235 remote_ip 5.5.5.232 80238 username soleymani 80238 unique_id port 80238 terminate_cause Lost-Carrier 80238 bytes_out 27065 80238 bytes_in 166297 80238 station_ip 5.120.95.113 80238 port 15728681 80238 nas_port_type Virtual 80238 remote_ip 5.5.5.230 80241 username forozande 80241 unique_id port 80241 terminate_cause User-Request 80241 bytes_out 0 80241 bytes_in 0 80241 station_ip 113.203.73.248 80241 port 15728685 80241 nas_port_type Virtual 80241 remote_ip 5.5.5.228 80243 username zamanialireza 80243 unique_id port 80243 terminate_cause User-Request 80243 bytes_out 578633 80243 bytes_in 17468592 80243 station_ip 83.123.6.78 80243 port 15728688 80243 nas_port_type Virtual 80243 remote_ip 5.5.5.225 80249 username mahbobeh 80249 unique_id port 80249 terminate_cause Lost-Carrier 80249 bytes_out 115378 80249 bytes_in 646171 80249 station_ip 83.123.178.32 80249 port 15728689 80249 nas_port_type Virtual 80249 remote_ip 5.5.5.224 80251 username soleymani 80251 kill_reason Maximum number of concurrent logins reached 80251 unique_id port 80251 bytes_out 0 80251 bytes_in 0 80251 station_ip 5.120.65.60 80251 port 15728696 80251 nas_port_type Virtual 80253 username soleymani 80253 kill_reason Maximum number of concurrent logins reached 80253 unique_id port 80253 bytes_out 0 80253 bytes_in 0 80253 station_ip 5.120.65.60 80253 port 15728698 80253 nas_port_type Virtual 80256 username soleymani 80256 kill_reason Maximum number of concurrent logins reached 80256 unique_id port 80256 bytes_out 0 80239 bytes_out 0 80239 bytes_in 0 80239 station_ip 31.57.130.141 80239 port 15728683 80239 nas_port_type Virtual 80240 username hamideh 80240 unique_id port 80240 terminate_cause User-Request 80240 bytes_out 2459113 80240 bytes_in 57734525 80240 station_ip 5.119.130.82 80240 port 15728674 80240 nas_port_type Virtual 80240 remote_ip 5.5.5.234 80245 username soleymani 80245 unique_id port 80245 terminate_cause Lost-Carrier 80245 bytes_out 181275 80245 bytes_in 946204 80245 station_ip 5.120.87.13 80245 port 15728686 80245 nas_port_type Virtual 80245 remote_ip 5.5.5.227 80246 username zamanialireza 80246 unique_id port 80246 terminate_cause User-Request 80246 bytes_out 0 80246 bytes_in 0 80246 station_ip 83.122.25.216 80246 port 15728691 80246 nas_port_type Virtual 80246 remote_ip 5.5.5.222 80250 username soleymani 80250 kill_reason Maximum number of concurrent logins reached 80250 unique_id port 80250 bytes_out 0 80250 bytes_in 0 80250 station_ip 5.120.65.60 80250 port 15728695 80250 nas_port_type Virtual 80254 username soleymani 80254 kill_reason Maximum number of concurrent logins reached 80254 unique_id port 80254 bytes_out 0 80254 bytes_in 0 80254 station_ip 5.120.65.60 80254 port 15728699 80254 nas_port_type Virtual 80258 username soleymani 80258 kill_reason Maximum number of concurrent logins reached 80258 unique_id port 80258 bytes_out 0 80258 bytes_in 0 80258 station_ip 5.120.191.88 80258 port 15728702 80258 nas_port_type Virtual 80262 username soleymani 80262 kill_reason Maximum number of concurrent logins reached 80262 unique_id port 80262 bytes_out 0 80262 bytes_in 0 80262 station_ip 5.120.191.88 80262 port 15728706 80262 nas_port_type Virtual 81271 bytes_in 0 81271 station_ip 5.119.30.76 81271 port 14 81271 unique_id port 81271 remote_ip 10.8.0.6 81272 username mahbobeh 81272 unique_id port 81272 terminate_cause Lost-Carrier 81272 bytes_out 1155596 80268 username aminvpn 80268 mac 80268 bytes_out 0 80268 bytes_in 0 80268 station_ip 5.120.183.82 80268 port 9 80268 unique_id port 80268 remote_ip 10.8.0.6 80269 username soleymani 80269 kill_reason Maximum check online fails reached 80269 unique_id port 80269 bytes_out 70573 80269 bytes_in 214138 80269 station_ip 5.120.80.78 80269 port 15728711 80269 nas_port_type Virtual 80269 remote_ip 5.5.5.217 80272 username alirezazamani 80272 kill_reason Relative expiration date has reached 80272 unique_id port 80272 bytes_out 0 80272 bytes_in 0 80272 station_ip 94.241.178.64 80272 port 15728712 80272 nas_port_type Virtual 80274 username alirezazamani 80274 kill_reason Relative expiration date has reached 80274 unique_id port 80274 bytes_out 0 80274 bytes_in 0 80274 station_ip 94.241.178.64 80274 port 15728714 80274 nas_port_type Virtual 80275 username zamanialireza 80275 unique_id port 80275 terminate_cause User-Request 80275 bytes_out 233469 80275 bytes_in 9512286 80275 station_ip 113.203.40.69 80275 port 15728717 80275 nas_port_type Virtual 80275 remote_ip 5.5.5.214 80279 username reza 80279 unique_id port 80279 terminate_cause User-Request 80279 bytes_out 9750 80279 bytes_in 78099 80279 station_ip 83.122.119.220 80279 port 15728716 80279 nas_port_type Virtual 80279 remote_ip 5.5.5.215 80280 username aminvpn 80280 kill_reason Another user logged on this global unique id 80280 mac 80280 bytes_out 0 80280 bytes_in 0 80280 station_ip 5.120.183.82 80280 port 9 80280 unique_id port 80280 remote_ip 10.8.0.6 80281 username amirhosein 80281 unique_id port 80281 terminate_cause Lost-Carrier 80281 bytes_out 3792994 80281 bytes_in 48371141 80281 station_ip 5.119.72.16 80281 port 15728693 80281 nas_port_type Virtual 80281 remote_ip 5.5.5.221 80244 port 15728687 80244 nas_port_type Virtual 80244 remote_ip 5.5.5.226 80255 username soleymani 80255 kill_reason Maximum number of concurrent logins reached 80255 unique_id port 80255 bytes_out 0 80255 bytes_in 0 80255 station_ip 5.120.65.60 80255 port 15728700 80255 nas_port_type Virtual 80257 username aminvpn 80257 mac 80257 bytes_out 0 80257 bytes_in 0 80257 station_ip 5.120.183.82 80257 port 9 80257 unique_id port 80257 remote_ip 10.8.0.6 80259 username soleymani 80259 kill_reason Maximum number of concurrent logins reached 80259 unique_id port 80259 bytes_out 0 80259 bytes_in 0 80259 station_ip 5.120.191.88 80259 port 15728703 80259 nas_port_type Virtual 80263 username soleymani 80263 kill_reason Maximum number of concurrent logins reached 80263 unique_id port 80263 bytes_out 0 80263 bytes_in 0 80263 station_ip 5.120.191.88 80263 port 15728707 80263 nas_port_type Virtual 80265 username alinezhad 80265 unique_id port 80265 terminate_cause User-Request 80265 bytes_out 0 80265 bytes_in 0 80265 station_ip 5.202.132.30 80265 port 15728710 80265 nas_port_type Virtual 80265 remote_ip 5.5.5.250 80270 username soleymani 80270 unique_id port 80270 terminate_cause Lost-Carrier 80270 bytes_out 66708 80270 bytes_in 598796 80270 station_ip 5.119.127.33 80270 port 15728708 80270 nas_port_type Virtual 80270 remote_ip 5.5.5.219 80273 username alirezazamani 80273 kill_reason Relative expiration date has reached 80273 unique_id port 80273 bytes_out 0 80273 bytes_in 0 80273 station_ip 94.241.178.64 80273 port 15728713 80273 nas_port_type Virtual 80276 username zamanialireza 80276 unique_id port 80276 terminate_cause User-Request 80276 bytes_out 5833 80276 bytes_in 15540 80276 station_ip 113.203.40.69 80276 port 15728719 80276 nas_port_type Virtual 80276 remote_ip 5.5.5.214 80277 username zamanialireza 80277 unique_id port 80277 terminate_cause User-Request 80277 bytes_out 0 80277 bytes_in 0 80277 station_ip 113.203.40.69 80277 port 15728720 80277 nas_port_type Virtual 80277 remote_ip 5.5.5.214 80278 username zamanialireza 80278 unique_id port 80278 terminate_cause User-Request 80278 bytes_out 0 80278 bytes_in 0 80278 station_ip 113.203.40.69 80278 port 15728721 80278 nas_port_type Virtual 80278 remote_ip 5.5.5.214 80285 username amin.insta19 80285 unique_id port 80285 terminate_cause Lost-Carrier 80285 bytes_out 1028332 80285 bytes_in 6446278 80285 station_ip 5.119.86.137 80285 port 15728724 80285 nas_port_type Virtual 80285 remote_ip 5.5.5.213 80288 username soleymani 80288 unique_id port 80288 terminate_cause Lost-Carrier 80288 bytes_out 500570 80288 bytes_in 1461157 80288 station_ip 5.119.133.107 80288 port 15728729 80288 nas_port_type Virtual 80288 remote_ip 5.5.5.210 80302 username aminvpn 80302 mac 80302 bytes_out 0 80302 bytes_in 0 80302 station_ip 5.120.183.82 80302 port 9 80302 unique_id port 80302 remote_ip 10.8.0.6 80307 username kamali 80307 unique_id port 80307 terminate_cause User-Request 80307 bytes_out 156849 80307 bytes_in 1894469 80307 station_ip 113.203.39.230 80307 port 15728737 80307 nas_port_type Virtual 80307 remote_ip 5.5.5.206 80311 username aminvpn 80311 kill_reason Maximum check online fails reached 80311 mac 80311 bytes_out 0 80311 bytes_in 0 80311 station_ip 5.120.183.82 80311 port 9 80311 unique_id port 80319 username madadi 80319 unique_id port 80319 terminate_cause Lost-Carrier 80319 bytes_out 53453 80319 bytes_in 139026 80319 station_ip 5.120.151.95 80319 port 15728745 80319 nas_port_type Virtual 80319 remote_ip 5.5.5.202 80326 username amir 80326 unique_id port 80326 terminate_cause Lost-Carrier 80326 bytes_out 2834301 80256 bytes_in 0 80256 station_ip 5.120.191.88 80256 port 15728701 80256 nas_port_type Virtual 80260 username soleymani 80260 kill_reason Maximum number of concurrent logins reached 80260 unique_id port 80260 bytes_out 0 80260 bytes_in 0 80260 station_ip 5.120.191.88 80260 port 15728704 80260 nas_port_type Virtual 80282 username zamanialireza 80282 unique_id port 80282 terminate_cause User-Request 80282 bytes_out 174748 80282 bytes_in 7970723 80282 station_ip 113.203.40.69 80282 port 15728722 80282 nas_port_type Virtual 80282 remote_ip 5.5.5.214 80283 username ahmad 80283 kill_reason Absolute expiration date has reached 80283 unique_id port 80283 bytes_out 0 80283 bytes_in 0 80283 station_ip 86.57.106.33 80283 port 15728725 80283 nas_port_type Virtual 80284 username zamanialireza 80284 unique_id port 80284 terminate_cause User-Request 80284 bytes_out 498033 80284 bytes_in 10121252 80284 station_ip 113.203.40.69 80284 port 15728726 80284 nas_port_type Virtual 80284 remote_ip 5.5.5.214 80289 username asadi 80289 unique_id port 80289 terminate_cause User-Request 80289 bytes_out 280154 80289 bytes_in 5269185 80289 station_ip 83.122.27.82 80289 port 15728732 80289 nas_port_type Virtual 80289 remote_ip 5.5.5.252 80291 username aminvpn 80291 mac 80291 bytes_out 0 80291 bytes_in 0 80291 station_ip 5.120.183.82 80291 port 9 80291 unique_id port 80300 username aminvpn 80300 mac 80300 bytes_out 0 80300 bytes_in 0 80300 station_ip 5.120.183.82 80300 port 9 80300 unique_id port 80300 remote_ip 10.8.0.6 80310 username kamali 80310 unique_id port 80310 terminate_cause User-Request 80310 bytes_out 24196 80310 bytes_in 37463 80310 station_ip 113.203.39.230 80310 port 15728738 80310 nas_port_type Virtual 80310 remote_ip 5.5.5.206 80312 username soleymani 80312 unique_id port 80312 terminate_cause Lost-Carrier 80312 bytes_out 120126 80312 bytes_in 668859 80312 station_ip 5.119.177.81 80312 port 15728734 80312 nas_port_type Virtual 80312 remote_ip 5.5.5.208 80318 username zoha 80318 unique_id port 80318 terminate_cause User-Request 80318 bytes_out 321745 80318 bytes_in 1566020 80318 station_ip 5.119.189.39 80318 port 15728743 80318 nas_port_type Virtual 80318 remote_ip 5.5.5.239 80320 username ahmadipour 80320 unique_id port 80320 terminate_cause Lost-Carrier 80320 bytes_out 84403830 80320 bytes_in 15186820 80320 station_ip 113.203.79.135 80320 port 15728731 80320 nas_port_type Virtual 80320 remote_ip 5.5.5.209 80332 username alinezhad 80332 unique_id port 80332 terminate_cause User-Request 80332 bytes_out 0 80332 bytes_in 0 80332 station_ip 5.202.132.30 80332 port 15728761 80332 nas_port_type Virtual 80332 remote_ip 5.5.5.250 80336 username aminvpn 80336 unique_id port 80336 terminate_cause User-Request 80336 bytes_out 3562265 80336 bytes_in 174137915 80336 station_ip 5.120.183.82 80336 port 15728746 80336 nas_port_type Virtual 80336 remote_ip 5.5.5.201 80339 username aminvpn 80339 kill_reason Another user logged on this global unique id 80339 mac 80339 bytes_out 0 80339 bytes_in 0 80339 station_ip 5.120.183.82 80339 port 10 80339 unique_id port 80339 remote_ip 10.8.0.6 80345 username mahbobeh 80345 unique_id port 80345 terminate_cause Lost-Carrier 80345 bytes_out 197620 80345 bytes_in 1736205 80345 station_ip 83.123.219.220 80345 port 15728748 80345 nas_port_type Virtual 80345 remote_ip 5.5.5.212 80353 username ahmadipour 80353 unique_id port 80353 terminate_cause Lost-Carrier 80353 bytes_out 1136716 80353 bytes_in 14789003 80353 station_ip 113.203.20.131 80353 port 15728779 80353 nas_port_type Virtual 80353 remote_ip 5.5.5.188 80355 username mahdi 80264 bytes_out 200706 80264 bytes_in 1161292 80264 station_ip 5.120.50.46 80264 port 15728690 80264 nas_port_type Virtual 80264 remote_ip 5.5.5.223 80267 username soleymani 80267 unique_id port 80267 terminate_cause Lost-Carrier 80267 bytes_out 432 80267 bytes_in 122706 80267 station_ip 5.119.146.104 80267 port 15728694 80267 nas_port_type Virtual 80267 remote_ip 5.5.5.220 80271 username madadi 80271 unique_id port 80271 terminate_cause Lost-Carrier 80271 bytes_out 52797 80271 bytes_in 324844 80271 station_ip 5.119.81.114 80271 port 15728709 80271 nas_port_type Virtual 80271 remote_ip 5.5.5.218 80290 username reza 80290 unique_id port 80290 terminate_cause User-Request 80290 bytes_out 786854 80290 bytes_in 1232464 80290 station_ip 83.122.119.220 80290 port 15728730 80290 nas_port_type Virtual 80290 remote_ip 5.5.5.215 80292 username aminvpn 80292 mac 80292 bytes_out 0 80292 bytes_in 0 80292 station_ip 5.120.183.82 80292 port 10 80292 unique_id port 80292 remote_ip 10.8.0.6 80293 username aminvpn 80293 mac 80293 bytes_out 0 80293 bytes_in 0 80293 station_ip 5.120.183.82 80293 port 9 80293 unique_id port 80293 remote_ip 10.8.0.6 80295 username aminvpn 80295 mac 80295 bytes_out 0 80295 bytes_in 0 80295 station_ip 5.120.183.82 80295 port 9 80295 unique_id port 80295 remote_ip 10.8.0.6 80297 username aminvpn 80297 mac 80297 bytes_out 0 80297 bytes_in 0 80297 station_ip 5.120.183.82 80297 port 9 80297 unique_id port 80297 remote_ip 10.8.0.6 80299 username aminvpn 80299 mac 80299 bytes_out 0 80299 bytes_in 0 80299 station_ip 5.120.183.82 80299 port 10 80299 unique_id port 80299 remote_ip 10.8.0.6 80305 username aminvpn 80305 mac 80305 bytes_out 0 80305 bytes_in 0 80305 station_ip 5.120.183.82 80305 port 10 80305 unique_id port 80305 remote_ip 10.8.0.6 80314 username amin.insta19 80314 unique_id port 80314 terminate_cause Lost-Carrier 80314 bytes_out 10513997 80314 bytes_in 38568708 80314 station_ip 5.119.86.137 80314 port 15728733 80314 nas_port_type Virtual 80314 remote_ip 5.5.5.213 80317 username shahnaz 80317 unique_id port 80317 terminate_cause Lost-Carrier 80317 bytes_out 353197 80317 bytes_in 1838616 80317 station_ip 5.119.23.95 80317 port 15728742 80317 nas_port_type Virtual 80317 remote_ip 5.5.5.204 80321 username alinezhad 80321 unique_id port 80321 terminate_cause User-Request 80321 bytes_out 0 80321 bytes_in 0 80321 station_ip 5.202.132.30 80321 port 15728749 80321 nas_port_type Virtual 80321 remote_ip 5.5.5.250 80322 username shahnaz 80322 unique_id port 80322 terminate_cause Lost-Carrier 80322 bytes_out 817421 80322 bytes_in 227876 80322 station_ip 5.119.23.95 80322 port 15728747 80322 nas_port_type Virtual 80322 remote_ip 5.5.5.200 80324 username ahmadipour 80324 unique_id port 80324 terminate_cause Lost-Carrier 80324 bytes_out 127944 80324 bytes_in 1070048 80324 station_ip 113.203.79.135 80324 port 15728751 80324 nas_port_type Virtual 80324 remote_ip 5.5.5.209 80327 username soleymani 80327 unique_id port 80327 terminate_cause Lost-Carrier 80327 bytes_out 60576 80327 bytes_in 267851 80327 station_ip 5.120.166.190 80327 port 15728755 80327 nas_port_type Virtual 80327 remote_ip 5.5.5.197 80329 username madadi 80329 unique_id port 80329 terminate_cause Lost-Carrier 80329 bytes_out 13415 80329 bytes_in 139240 80329 station_ip 5.120.170.206 80329 port 15728756 80329 nas_port_type Virtual 80329 remote_ip 5.5.5.196 81272 bytes_in 19141697 81272 station_ip 113.203.36.149 81272 port 15728832 81272 nas_port_type Virtual 80286 username zoha 80286 unique_id port 80286 terminate_cause Lost-Carrier 80286 bytes_out 712282 80286 bytes_in 5334279 80286 station_ip 5.119.189.39 80286 port 15728723 80286 nas_port_type Virtual 80286 remote_ip 5.5.5.239 80287 username amir 80287 unique_id port 80287 terminate_cause Lost-Carrier 80287 bytes_out 510751 80287 bytes_in 3667661 80287 station_ip 46.225.232.26 80287 port 15728728 80287 nas_port_type Virtual 80287 remote_ip 5.5.5.211 80294 username aminvpn 80294 mac 80294 bytes_out 0 80294 bytes_in 0 80294 station_ip 5.120.183.82 80294 port 10 80294 unique_id port 80294 remote_ip 10.8.0.6 80296 username aminvpn 80296 mac 80296 bytes_out 0 80296 bytes_in 0 80296 station_ip 5.120.183.82 80296 port 10 80296 unique_id port 80296 remote_ip 10.8.0.6 80298 username forozande 80298 unique_id port 80298 terminate_cause User-Request 80298 bytes_out 0 80298 bytes_in 0 80298 station_ip 113.203.32.186 80298 port 15728735 80298 nas_port_type Virtual 80298 remote_ip 5.5.5.207 80301 username aminvpn 80301 mac 80301 bytes_out 0 80301 bytes_in 0 80301 station_ip 5.120.183.82 80301 port 10 80301 unique_id port 80301 remote_ip 10.8.0.6 80303 username aminvpn 80303 mac 80303 bytes_out 0 80303 bytes_in 0 80303 station_ip 5.120.183.82 80303 port 10 80303 unique_id port 80303 remote_ip 10.8.0.6 80304 username aminvpn 80304 mac 80304 bytes_out 0 80304 bytes_in 0 80304 station_ip 5.120.183.82 80304 port 9 80304 unique_id port 80304 remote_ip 10.8.0.6 80306 username mahbobeh 80306 unique_id port 80306 terminate_cause Lost-Carrier 80306 bytes_out 524833 80306 bytes_in 618334 80306 station_ip 83.123.219.220 80306 port 15728727 80306 nas_port_type Virtual 80306 remote_ip 5.5.5.212 80308 username aminvpn 80308 mac 80308 bytes_out 0 80308 bytes_in 0 80308 station_ip 5.120.183.82 80308 port 9 80308 unique_id port 80308 remote_ip 10.8.0.6 80309 username aminvpn 80309 mac 80309 bytes_out 0 80309 bytes_in 0 80309 station_ip 5.120.183.82 80309 port 10 80309 unique_id port 80309 remote_ip 10.8.0.6 80313 username rashidi 80313 unique_id port 80313 terminate_cause Lost-Carrier 80313 bytes_out 5456087 80313 bytes_in 31931576 80313 station_ip 5.120.108.130 80313 port 15728715 80313 nas_port_type Virtual 80313 remote_ip 5.5.5.216 80315 username madadi 80315 unique_id port 80315 terminate_cause Lost-Carrier 80315 bytes_out 345243 80315 bytes_in 5401797 80315 station_ip 5.120.44.64 80315 port 15728740 80315 nas_port_type Virtual 80315 remote_ip 5.5.5.205 80316 username abdilahyar 80316 unique_id port 80316 terminate_cause User-Request 80316 bytes_out 5044 80316 bytes_in 37557 80316 station_ip 5.120.59.228 80316 port 15728744 80316 nas_port_type Virtual 80316 remote_ip 5.5.5.203 80323 username forozande 80323 unique_id port 80323 terminate_cause User-Request 80323 bytes_out 107485 80323 bytes_in 1447241 80323 station_ip 113.203.32.186 80323 port 15728752 80323 nas_port_type Virtual 80323 remote_ip 5.5.5.207 80325 username kamali 80325 unique_id port 80325 terminate_cause User-Request 80325 bytes_out 130871 80325 bytes_in 1085586 80325 station_ip 83.122.164.237 80325 port 15728754 80325 nas_port_type Virtual 80325 remote_ip 5.5.5.198 80333 username amin.insta22 80333 unique_id port 80333 terminate_cause Lost-Carrier 80333 bytes_out 1207247 80333 bytes_in 18583933 80333 station_ip 5.120.122.246 80333 port 15728757 80333 nas_port_type Virtual 80333 remote_ip 5.5.5.195 80335 username ahmadi 80335 unique_id port 80326 bytes_in 38862424 80326 station_ip 46.225.232.26 80326 port 15728739 80326 nas_port_type Virtual 80326 remote_ip 5.5.5.211 80328 username zamanialireza 80328 unique_id port 80328 terminate_cause User-Request 80328 bytes_out 3030776 80328 bytes_in 2862303 80328 station_ip 83.122.78.79 80328 port 15728750 80328 nas_port_type Virtual 80328 remote_ip 5.5.5.199 80330 username soleymani 80330 unique_id port 80330 terminate_cause User-Request 80330 bytes_out 0 80330 bytes_in 0 80330 station_ip 5.119.146.43 80330 port 15728758 80330 nas_port_type Virtual 80330 remote_ip 5.5.5.194 80331 username soleymani 80331 unique_id port 80331 terminate_cause User-Request 80331 bytes_out 0 80331 bytes_in 0 80331 station_ip 5.119.146.43 80331 port 15728759 80331 nas_port_type Virtual 80331 remote_ip 5.5.5.194 80340 username soleymani 80340 unique_id port 80340 terminate_cause Lost-Carrier 80340 bytes_out 140736 80340 bytes_in 340347 80340 station_ip 5.119.146.43 80340 port 15728760 80340 nas_port_type Virtual 80340 remote_ip 5.5.5.194 80341 username alirezazamani 80341 kill_reason Relative expiration date has reached 80341 unique_id port 80341 bytes_out 0 80341 bytes_in 0 80341 station_ip 94.241.178.64 80341 port 15728770 80341 nas_port_type Virtual 80348 username alirezazamani 80348 kill_reason Relative expiration date has reached 80348 unique_id port 80348 bytes_out 0 80348 bytes_in 0 80348 station_ip 94.241.178.64 80348 port 15728776 80348 nas_port_type Virtual 80359 username amirhosein 80359 unique_id port 80359 terminate_cause Lost-Carrier 80359 bytes_out 876945 80359 bytes_in 6358130 80359 station_ip 5.119.72.16 80359 port 15728778 80359 nas_port_type Virtual 80359 remote_ip 5.5.5.221 80361 username alirezazamani 80361 kill_reason Relative expiration date has reached 80361 unique_id port 80361 bytes_out 0 80361 bytes_in 0 80361 station_ip 5.119.66.139 80361 port 15728785 80361 nas_port_type Virtual 80364 username soleymani 80364 unique_id port 80364 terminate_cause Lost-Carrier 80364 bytes_out 40519 80364 bytes_in 190878 80364 station_ip 5.119.84.105 80364 port 15728783 80364 nas_port_type Virtual 80364 remote_ip 5.5.5.185 80366 username madadi 80366 unique_id port 80366 terminate_cause Lost-Carrier 80366 bytes_out 1183199 80366 bytes_in 2448828 80366 station_ip 5.119.187.22 80366 port 15728765 80366 nas_port_type Virtual 80366 remote_ip 5.5.5.192 80371 username alirezazamani 80371 kill_reason Relative expiration date has reached 80371 unique_id port 80371 bytes_out 0 80371 bytes_in 0 80371 station_ip 78.39.157.2 80371 port 15728791 80371 nas_port_type Virtual 80391 username asadi 80391 unique_id port 80391 terminate_cause User-Request 80391 bytes_out 64732 80391 bytes_in 376306 80391 station_ip 37.129.102.155 80391 port 15728817 80391 nas_port_type Virtual 80391 remote_ip 5.5.5.175 80397 username reza2742 80397 unique_id port 80397 terminate_cause User-Request 80397 bytes_out 270662 80397 bytes_in 596165 80397 station_ip 37.129.123.195 80397 port 15728823 80397 nas_port_type Virtual 80397 remote_ip 5.5.5.169 80399 username soleymani 80399 unique_id port 80399 terminate_cause Lost-Carrier 80399 bytes_out 135781 80399 bytes_in 872832 80399 station_ip 5.119.195.64 80399 port 15728820 80399 nas_port_type Virtual 80399 remote_ip 5.5.5.172 80402 username alirezazamani 80402 kill_reason Relative expiration date has reached 80402 unique_id port 80402 bytes_out 0 80402 bytes_in 0 80402 station_ip 5.119.140.49 80402 port 15728827 80402 nas_port_type Virtual 80405 username madadi 80405 kill_reason Maximum check online fails reached 80405 unique_id port 80405 bytes_out 53913 80405 bytes_in 127989 80405 station_ip 5.119.74.223 80405 port 15728829 81272 remote_ip 5.5.5.219 81279 username aminvpn 81279 mac 81279 bytes_out 0 81279 bytes_in 0 80338 username forozande 80338 unique_id port 80338 terminate_cause User-Request 80338 bytes_out 35581 80338 bytes_in 518246 80338 station_ip 37.129.76.90 80338 port 15728767 80338 nas_port_type Virtual 80338 remote_ip 5.5.5.191 80343 username alirezazamani 80343 kill_reason Relative expiration date has reached 80343 unique_id port 80343 bytes_out 0 80343 bytes_in 0 80343 station_ip 94.241.178.64 80343 port 15728772 80343 nas_port_type Virtual 80347 username alirezazamani 80347 kill_reason Relative expiration date has reached 80347 unique_id port 80347 bytes_out 0 80347 bytes_in 0 80347 station_ip 94.241.178.64 80347 port 15728775 80347 nas_port_type Virtual 80350 username soleymani 80350 unique_id port 80350 terminate_cause Lost-Carrier 80350 bytes_out 62334 80350 bytes_in 230401 80350 station_ip 5.119.189.92 80350 port 15728774 80350 nas_port_type Virtual 80350 remote_ip 5.5.5.189 80354 username forozande 80354 unique_id port 80354 terminate_cause User-Request 80354 bytes_out 159355 80354 bytes_in 951956 80354 station_ip 83.122.136.251 80354 port 15728781 80354 nas_port_type Virtual 80354 remote_ip 5.5.5.186 80357 username aminvpn 80357 kill_reason Another user logged on this global unique id 80357 mac 80357 bytes_out 0 80357 bytes_in 0 80357 station_ip 5.120.183.82 80357 port 10 80357 unique_id port 80358 username aminvpn 80358 mac 80358 bytes_out 0 80358 bytes_in 0 80358 station_ip 5.120.183.82 80358 port 10 80358 unique_id port 80367 username zoha 80367 unique_id port 80367 terminate_cause User-Request 80367 bytes_out 3353978 80367 bytes_in 29790568 80367 station_ip 5.119.189.39 80367 port 15728768 80367 nas_port_type Virtual 80367 remote_ip 5.5.5.239 80369 username alirezazamani 80369 kill_reason Relative expiration date has reached 80369 unique_id port 80369 bytes_out 0 80369 bytes_in 0 80369 station_ip 78.39.157.2 80369 port 15728790 80369 nas_port_type Virtual 80373 username alirezazamani 80373 kill_reason Relative expiration date has reached 80373 unique_id port 80373 bytes_out 0 80373 bytes_in 0 80373 station_ip 78.39.157.2 80373 port 15728793 80373 nas_port_type Virtual 80377 username ahmadi 80377 unique_id port 80377 terminate_cause User-Request 80377 bytes_out 160400 80377 bytes_in 677196 80377 station_ip 83.123.63.186 80377 port 15728801 80377 nas_port_type Virtual 80377 remote_ip 5.5.5.182 80379 username mobina 80379 kill_reason Relative expiration date has reached 80379 unique_id port 80379 bytes_out 0 80379 bytes_in 0 80379 station_ip 5.123.244.11 80379 port 15728807 80379 nas_port_type Virtual 80381 username forozande 80381 unique_id port 80381 terminate_cause User-Request 80381 bytes_out 94181 80381 bytes_in 444671 80381 station_ip 37.129.83.135 80381 port 15728808 80381 nas_port_type Virtual 80381 remote_ip 5.5.5.179 80383 username alirezazamani 80383 kill_reason Relative expiration date has reached 80383 unique_id port 80383 bytes_out 0 80383 bytes_in 0 80383 station_ip 5.119.140.49 80383 port 15728811 80383 nas_port_type Virtual 80386 username soleymani 80386 unique_id port 80386 terminate_cause User-Request 80386 bytes_out 0 80386 bytes_in 0 80386 station_ip 5.119.167.81 80386 port 15728814 80386 nas_port_type Virtual 80386 remote_ip 5.5.5.177 80387 username soleymani 80387 unique_id port 80387 terminate_cause Lost-Carrier 80387 bytes_out 275674 80387 bytes_in 1245809 80387 station_ip 5.119.95.25 80387 port 15728809 80387 nas_port_type Virtual 80387 remote_ip 5.5.5.178 80390 username soleymani 80390 unique_id port 80390 terminate_cause Lost-Carrier 80335 terminate_cause User-Request 80335 bytes_out 44399 80335 bytes_in 321226 80335 station_ip 83.123.200.116 80335 port 15728762 80335 nas_port_type Virtual 80335 remote_ip 5.5.5.193 80337 username forozande 80337 unique_id port 80337 terminate_cause User-Request 80337 bytes_out 23779 80337 bytes_in 74124 80337 station_ip 37.129.76.90 80337 port 15728766 80337 nas_port_type Virtual 80337 remote_ip 5.5.5.191 80342 username alirezazamani 80342 kill_reason Relative expiration date has reached 80342 unique_id port 80342 bytes_out 0 80342 bytes_in 0 80342 station_ip 94.241.178.64 80342 port 15728771 80342 nas_port_type Virtual 80344 username shahnaz 80344 unique_id port 80344 terminate_cause Lost-Carrier 80344 bytes_out 320694 80344 bytes_in 4561592 80344 station_ip 5.119.23.95 80344 port 15728753 80344 nas_port_type Virtual 80344 remote_ip 5.5.5.200 80346 username aminvpn 80395 port 15728804 80346 kill_reason Another user logged on this global unique id 80346 mac 80346 bytes_out 0 80346 bytes_in 0 80346 station_ip 5.120.183.82 80346 port 10 80346 unique_id port 80349 username alirezazamani 80349 kill_reason Relative expiration date has reached 80349 unique_id port 80349 bytes_out 0 80349 bytes_in 0 80349 station_ip 94.241.178.64 80349 port 15728777 80349 nas_port_type Virtual 80351 username aminvpn 80351 kill_reason Another user logged on this global unique id 80351 mac 80351 bytes_out 0 80351 bytes_in 0 80351 station_ip 5.120.183.82 80351 port 10 80351 unique_id port 80352 username aminvpn 80352 kill_reason Another user logged on this global unique id 80352 mac 80352 bytes_out 0 80352 bytes_in 0 80352 station_ip 5.120.183.82 80352 port 10 80352 unique_id port 80356 username aminvpn 80356 kill_reason Another user logged on this global unique id 80356 mac 80356 bytes_out 0 80356 bytes_in 0 80356 station_ip 5.120.183.82 80356 port 10 80356 unique_id port 80360 username alirezazamani 80360 kill_reason Relative expiration date has reached 80360 unique_id port 80360 bytes_out 0 80360 bytes_in 0 80360 station_ip 5.119.66.139 80360 port 15728784 80360 nas_port_type Virtual 80363 username alirezazamani 80363 kill_reason Relative expiration date has reached 80363 unique_id port 80363 bytes_out 0 80363 bytes_in 0 80363 station_ip 5.119.66.139 80363 port 15728787 80363 nas_port_type Virtual 80365 username shahnaz 80365 unique_id port 80365 terminate_cause Lost-Carrier 80365 bytes_out 531409 80365 bytes_in 10851487 80365 station_ip 5.119.23.95 80365 port 15728782 80365 nas_port_type Virtual 80365 remote_ip 5.5.5.200 80370 username rashidi 80370 unique_id port 80370 terminate_cause User-Request 80370 bytes_out 22101950 80370 bytes_in 477066034 80370 station_ip 5.120.108.130 80370 port 15728741 80370 nas_port_type Virtual 80370 remote_ip 5.5.5.216 80374 username forozande 80374 unique_id port 80374 terminate_cause User-Request 80374 bytes_out 75268 80374 bytes_in 347113 80374 station_ip 83.122.83.220 80374 port 15728797 80374 nas_port_type Virtual 80374 remote_ip 5.5.5.183 80375 username madadi 80375 unique_id port 80375 terminate_cause Lost-Carrier 80375 bytes_out 409452 80375 bytes_in 1994632 80375 station_ip 5.120.6.36 80375 port 15728796 80375 nas_port_type Virtual 80375 remote_ip 5.5.5.184 80376 username zoha 80376 unique_id port 80376 terminate_cause Lost-Carrier 80376 bytes_out 817420 80376 bytes_in 8313965 80376 station_ip 5.119.189.39 80376 port 15728795 80376 nas_port_type Virtual 80376 remote_ip 5.5.5.239 80378 username alinezhad 80378 unique_id port 80378 terminate_cause User-Request 80378 bytes_out 0 80378 bytes_in 0 80378 station_ip 5.202.132.30 80378 port 15728802 80378 nas_port_type Virtual 80355 unique_id port 80355 terminate_cause Lost-Carrier 80355 bytes_out 1036736 80355 bytes_in 26001041 80355 station_ip 5.119.186.227 80355 port 15728773 80355 nas_port_type Virtual 80355 remote_ip 5.5.5.190 80362 username alirezazamani 80362 kill_reason Relative expiration date has reached 80362 unique_id port 80362 bytes_out 0 80362 bytes_in 0 80362 station_ip 5.119.66.139 80362 port 15728786 80362 nas_port_type Virtual 80368 username alirezazamani 80368 kill_reason Relative expiration date has reached 80368 unique_id port 80368 bytes_out 0 80368 bytes_in 0 80368 station_ip 78.39.157.2 80368 port 15728788 80368 nas_port_type Virtual 80372 username alirezazamani 80372 kill_reason Relative expiration date has reached 80372 unique_id port 80372 bytes_out 0 80372 bytes_in 0 80372 station_ip 78.39.157.2 80372 port 15728792 80372 nas_port_type Virtual 80382 username alirezazamani 80395 nas_port_type Virtual 80382 kill_reason Relative expiration date has reached 80382 unique_id port 80382 bytes_out 0 80382 bytes_in 0 80382 station_ip 5.119.140.49 80382 port 15728810 80382 nas_port_type Virtual 80384 username alirezazamani 80384 kill_reason Relative expiration date has reached 80384 unique_id port 80384 bytes_out 0 80384 bytes_in 0 80384 station_ip 5.119.140.49 80384 port 15728812 80384 nas_port_type Virtual 80385 username soleymani 80385 unique_id port 80385 terminate_cause User-Request 80385 bytes_out 0 80385 bytes_in 0 80385 station_ip 5.119.167.81 80385 port 15728813 80385 nas_port_type Virtual 80385 remote_ip 5.5.5.177 80389 username mahdi 80389 unique_id port 80389 terminate_cause Lost-Carrier 80389 bytes_out 1194914 80389 bytes_in 19424678 80389 station_ip 5.119.186.227 80389 port 15728780 80389 nas_port_type Virtual 80389 remote_ip 5.5.5.187 80394 username forozande 80394 unique_id port 80394 terminate_cause User-Request 80394 bytes_out 21802 80394 bytes_in 183866 80394 station_ip 83.122.73.22 80394 port 15728819 80394 nas_port_type Virtual 80394 remote_ip 5.5.5.173 80396 username amirhosein 80396 unique_id port 80396 terminate_cause Lost-Carrier 80396 bytes_out 8027006 80396 bytes_in 210164897 80396 station_ip 5.119.72.16 80396 port 15728789 80396 nas_port_type Virtual 80396 remote_ip 5.5.5.221 80404 username madadi 80404 unique_id port 80404 terminate_cause Lost-Carrier 80404 bytes_out 1194368 80404 bytes_in 2147046 80404 station_ip 5.120.118.187 80404 port 15728806 80404 nas_port_type Virtual 80404 remote_ip 5.5.5.180 80406 username hamideh 80406 unique_id port 80406 terminate_cause Lost-Carrier 80406 bytes_out 231588 80406 bytes_in 895965 80406 station_ip 5.119.130.82 80406 port 15728828 80406 nas_port_type Virtual 80406 remote_ip 5.5.5.234 80408 username alinezhad 80408 unique_id port 80408 terminate_cause User-Request 80408 bytes_out 23893 80408 bytes_in 55911 80408 station_ip 5.202.134.253 80408 port 15728833 80408 nas_port_type Virtual 80408 remote_ip 5.5.5.163 80409 username soleymani 80409 unique_id port 80409 terminate_cause Lost-Carrier 80409 bytes_out 83772 80409 bytes_in 616754 80409 station_ip 5.119.85.7 80409 port 15728830 80409 nas_port_type Virtual 80409 remote_ip 5.5.5.165 80414 username madadi 80414 unique_id port 80414 terminate_cause Lost-Carrier 80414 bytes_out 17369 80414 bytes_in 131350 80414 station_ip 5.119.97.92 80414 port 15728836 80414 nas_port_type Virtual 80414 remote_ip 5.5.5.162 80416 username mahdavi 80416 unique_id port 80416 terminate_cause User-Request 80416 bytes_out 146236 80416 bytes_in 490630 80416 station_ip 83.123.141.136 80416 port 15728842 80416 nas_port_type Virtual 80416 remote_ip 5.5.5.158 80419 username zamanialireza 80419 unique_id port 80419 terminate_cause Lost-Carrier 80419 bytes_out 736972 80378 remote_ip 5.5.5.250 80380 username madadi 80380 unique_id port 80380 terminate_cause Lost-Carrier 80380 bytes_out 124757 80380 bytes_in 1748970 80380 station_ip 5.120.2.34 80380 port 15728805 80380 nas_port_type Virtual 80380 remote_ip 5.5.5.181 81273 unique_id port 81273 remote_ip 10.8.0.6 81282 username zoha 81282 unique_id port 81282 terminate_cause User-Request 81282 bytes_out 365774 81282 bytes_in 2937306 81282 station_ip 5.119.248.245 81282 port 15728848 80392 username soleymani 80392 unique_id port 80392 terminate_cause Lost-Carrier 80392 bytes_out 102676 80392 bytes_in 428716 80392 station_ip 5.119.155.117 80392 port 15728816 80392 nas_port_type Virtual 80392 remote_ip 5.5.5.176 80395 username amin.insta22 80395 unique_id port 80395 terminate_cause Lost-Carrier 80395 bytes_out 900560 80395 bytes_in 6618119 80395 station_ip 31.56.218.201 80395 remote_ip 5.5.5.244 80398 username amin.insta19 80398 unique_id port 80398 terminate_cause Lost-Carrier 80398 bytes_out 121170 80398 bytes_in 1632178 80398 station_ip 5.120.75.29 80398 port 15728824 80398 nas_port_type Virtual 80398 remote_ip 5.5.5.168 80400 username amin.insta19 80400 unique_id port 80400 terminate_cause Lost-Carrier 80400 bytes_out 157767 80400 bytes_in 318437 80400 station_ip 5.119.36.100 80400 port 15728825 80400 nas_port_type Virtual 80400 remote_ip 5.5.5.167 80415 username mahdavi 80415 unique_id port 80415 terminate_cause User-Request 80415 bytes_out 116198 80415 bytes_in 782008 80415 station_ip 83.123.141.136 80415 port 15728841 80415 nas_port_type Virtual 80415 remote_ip 5.5.5.158 80430 username mahdavi 80430 unique_id port 80430 terminate_cause User-Request 80430 bytes_out 150446 80430 bytes_in 814646 80430 station_ip 83.123.141.136 80430 port 15728854 80430 nas_port_type Virtual 80430 remote_ip 5.5.5.158 80435 username mahdavi 80435 unique_id port 80435 terminate_cause User-Request 80435 bytes_out 224581 80435 bytes_in 1043360 80435 station_ip 83.123.141.136 80435 port 15728861 80435 nas_port_type Virtual 80435 remote_ip 5.5.5.158 80439 username mahdavi 80439 unique_id port 80439 terminate_cause User-Request 80439 bytes_out 249562 80439 bytes_in 832504 80439 station_ip 83.123.141.136 80439 port 15728867 80439 nas_port_type Virtual 80439 remote_ip 5.5.5.158 80446 username madadi 80446 unique_id port 80446 terminate_cause Lost-Carrier 80446 bytes_out 169673 80446 bytes_in 615045 80446 station_ip 5.119.197.99 80446 port 15728864 80446 nas_port_type Virtual 80446 remote_ip 5.5.5.151 80448 username alirezazamani 80448 kill_reason Relative expiration date has reached 80448 unique_id port 80448 bytes_out 0 80448 bytes_in 0 80448 station_ip 5.119.12.107 80448 port 15728876 80448 nas_port_type Virtual 80450 username mahdavi 80450 unique_id port 80450 terminate_cause User-Request 80450 bytes_out 230124 80450 bytes_in 3156057 80450 station_ip 83.123.141.136 80450 port 15728877 80450 nas_port_type Virtual 80450 remote_ip 5.5.5.158 80455 username alirezazamani 80455 kill_reason Relative expiration date has reached 80455 unique_id port 80455 bytes_out 0 80455 bytes_in 0 80455 station_ip 78.39.157.2 80455 port 15728884 80455 nas_port_type Virtual 80460 username zamanialireza 80460 unique_id port 80460 terminate_cause Lost-Carrier 80460 bytes_out 1490210 80460 bytes_in 32550569 80460 station_ip 94.183.213.166 80460 port 15728879 80460 nas_port_type Virtual 80460 remote_ip 5.5.5.161 80464 username kamali 80464 unique_id port 80464 terminate_cause User-Request 80464 bytes_out 31277 80464 bytes_in 78682 80464 station_ip 83.123.64.84 80464 port 15728892 81282 nas_port_type Virtual 80390 bytes_out 922214 80390 bytes_in 1289117 80390 station_ip 5.119.167.81 80390 port 15728815 80390 nas_port_type Virtual 80390 remote_ip 5.5.5.177 80393 username reza 80393 unique_id port 80393 terminate_cause User-Request 80393 bytes_out 16584 80393 bytes_in 116402 80393 station_ip 83.122.17.56 80393 port 15728818 80393 nas_port_type Virtual 80393 remote_ip 5.5.5.174 80401 username soleymani 80401 unique_id port 80401 terminate_cause Lost-Carrier 80401 bytes_out 162130 80401 bytes_in 1161879 80401 station_ip 5.120.153.150 80401 port 15728822 80401 nas_port_type Virtual 80401 remote_ip 5.5.5.170 80403 username asadi 80403 unique_id port 80403 terminate_cause User-Request 80403 bytes_out 58243 80403 bytes_in 527177 80403 station_ip 37.129.102.155 80403 port 15728826 80403 nas_port_type Virtual 80403 remote_ip 5.5.5.175 80407 username asadi 80407 unique_id port 80407 terminate_cause User-Request 80407 bytes_out 147943 80407 bytes_in 2651379 80407 station_ip 37.129.102.155 80407 port 15728832 80407 nas_port_type Virtual 80407 remote_ip 5.5.5.175 80410 username mobina 80410 kill_reason Relative expiration date has reached 80410 unique_id port 80410 bytes_out 0 80410 bytes_in 0 80410 station_ip 37.254.126.21 80410 port 15728834 80410 nas_port_type Virtual 80411 username madadi 80411 unique_id port 80411 terminate_cause Lost-Carrier 80411 bytes_out 148844 80411 bytes_in 1737101 80411 station_ip 5.120.37.46 80411 port 15728831 80411 nas_port_type Virtual 80411 remote_ip 5.5.5.164 80412 username rashidi 80412 unique_id port 80412 terminate_cause Lost-Carrier 80412 bytes_out 6090709 80412 bytes_in 28598131 80412 station_ip 5.120.108.130 80412 port 15728803 80412 nas_port_type Virtual 80412 remote_ip 5.5.5.216 80413 username mahbobeh 80413 unique_id port 80413 terminate_cause Lost-Carrier 80413 bytes_out 492379 80413 bytes_in 4934066 80413 station_ip 83.123.243.244 80413 port 15728821 80413 nas_port_type Virtual 80413 remote_ip 5.5.5.171 80418 username mahdavi 80418 unique_id port 80418 terminate_cause User-Request 80418 bytes_out 279162 80418 bytes_in 1394643 80418 station_ip 83.123.141.136 80418 port 15728843 80418 nas_port_type Virtual 80418 remote_ip 5.5.5.158 80420 username mahdavi 80420 unique_id port 80420 terminate_cause User-Request 80420 bytes_out 235990 80420 bytes_in 1910515 80420 station_ip 83.123.141.136 80420 port 15728844 80420 nas_port_type Virtual 80420 remote_ip 5.5.5.158 80421 username mahdavi 80421 unique_id port 80421 terminate_cause User-Request 80421 bytes_out 319357 80421 bytes_in 3956424 80421 station_ip 83.123.141.136 80421 port 15728845 80421 nas_port_type Virtual 80421 remote_ip 5.5.5.158 80424 username mahdavi 80424 unique_id port 80424 terminate_cause User-Request 80424 bytes_out 138075 80424 bytes_in 3179329 80424 station_ip 83.123.141.136 80424 port 15728847 80424 nas_port_type Virtual 80424 remote_ip 5.5.5.158 80427 username mahdavi 80427 unique_id port 80427 terminate_cause User-Request 80427 bytes_out 305226 80427 bytes_in 3619004 80427 station_ip 83.123.141.136 80427 port 15728852 80427 nas_port_type Virtual 80427 remote_ip 5.5.5.158 80434 username soleymani 80434 unique_id port 80434 terminate_cause Lost-Carrier 80434 bytes_out 47051 80434 bytes_in 259643 80434 station_ip 5.119.195.72 80434 port 15728850 80434 nas_port_type Virtual 80434 remote_ip 5.5.5.156 80438 username kamali 80438 unique_id port 80438 terminate_cause User-Request 80438 bytes_out 26923 80438 bytes_in 51198 80438 station_ip 83.123.64.84 80438 port 15728866 80438 nas_port_type Virtual 80438 remote_ip 5.5.5.152 80442 username kamali 80442 unique_id port 80405 nas_port_type Virtual 80405 remote_ip 5.5.5.166 80417 username hamideh 80417 unique_id port 80417 terminate_cause Lost-Carrier 80417 bytes_out 194047 80417 bytes_in 1179213 80417 station_ip 5.119.130.82 80417 port 15728837 80417 nas_port_type Virtual 80417 remote_ip 5.5.5.234 80423 username hamideh 80423 unique_id port 80423 terminate_cause Lost-Carrier 80423 bytes_out 13319 80423 bytes_in 136492 80423 station_ip 5.119.130.82 80423 port 15728840 80423 nas_port_type Virtual 80423 remote_ip 5.5.5.159 80425 username mahdavi 80425 unique_id port 80425 terminate_cause User-Request 80425 bytes_out 375176 80425 bytes_in 6857506 80425 station_ip 83.123.141.136 80425 port 15728849 80425 nas_port_type Virtual 80425 remote_ip 5.5.5.158 80426 username mahdavi 80426 unique_id port 80426 terminate_cause User-Request 80426 bytes_out 166665 80426 bytes_in 843284 80426 station_ip 83.123.141.136 80426 port 15728851 80426 nas_port_type Virtual 80426 remote_ip 5.5.5.158 80428 username mahdavi 80428 unique_id port 80428 terminate_cause User-Request 80428 bytes_out 227046 80428 bytes_in 1096566 80428 station_ip 83.123.141.136 80428 port 15728853 80428 nas_port_type Virtual 80428 remote_ip 5.5.5.158 80429 username madadi 80429 unique_id port 80429 terminate_cause Lost-Carrier 80429 bytes_out 34522 80429 bytes_in 182703 80429 station_ip 5.120.84.202 80429 port 15728846 80429 nas_port_type Virtual 80429 remote_ip 5.5.5.157 80432 username mahdavi 80432 unique_id port 80432 terminate_cause User-Request 80432 bytes_out 190505 80432 bytes_in 1605799 80432 station_ip 83.123.141.136 80432 port 15728857 80432 nas_port_type Virtual 80432 remote_ip 5.5.5.158 80433 username mahdavi 80433 unique_id port 80433 terminate_cause User-Request 80433 bytes_out 261203 80433 bytes_in 960295 80433 station_ip 83.123.141.136 80433 port 15728860 80433 nas_port_type Virtual 80433 remote_ip 5.5.5.158 80441 username mahdavi 80441 unique_id port 80441 terminate_cause User-Request 80441 bytes_out 187667 80441 bytes_in 1486479 80441 station_ip 83.123.141.136 80441 port 15728869 80441 nas_port_type Virtual 80441 remote_ip 5.5.5.158 80449 username hamideh 80449 unique_id port 80449 terminate_cause Lost-Carrier 80449 bytes_out 36586 80449 bytes_in 432923 80449 station_ip 5.119.130.82 80449 port 15728848 80449 nas_port_type Virtual 80449 remote_ip 5.5.5.159 80452 username kamali 80452 unique_id port 80452 terminate_cause User-Request 80452 bytes_out 10845 80452 bytes_in 28762 80452 station_ip 83.123.64.84 80452 port 15728880 80452 nas_port_type Virtual 80452 remote_ip 5.5.5.152 80461 username kamali 80461 unique_id port 80461 terminate_cause User-Request 80461 bytes_out 15744 80461 bytes_in 34321 80461 station_ip 83.123.64.84 80461 port 15728889 80461 nas_port_type Virtual 80461 remote_ip 5.5.5.152 80463 username kamali 80463 unique_id port 80463 terminate_cause User-Request 80463 bytes_out 129998 80463 bytes_in 919587 80463 station_ip 83.123.64.84 80463 port 15728891 80463 nas_port_type Virtual 80463 remote_ip 5.5.5.152 80472 username kamali 80472 unique_id port 80472 terminate_cause User-Request 80472 bytes_out 29708 80472 bytes_in 49527 80472 station_ip 83.123.64.84 80472 port 15728899 80472 nas_port_type Virtual 80472 remote_ip 5.5.5.152 80475 username zoha 80475 unique_id port 80475 terminate_cause Lost-Carrier 80475 bytes_out 1130798 80475 bytes_in 10889021 80475 station_ip 5.119.197.165 80475 port 15728881 80475 nas_port_type Virtual 80475 remote_ip 5.5.5.155 80477 username kamali 80477 unique_id port 80477 terminate_cause User-Request 80477 bytes_out 281358 80477 bytes_in 33510 80477 station_ip 83.123.64.84 80419 bytes_in 8985999 80419 station_ip 94.183.213.166 80419 port 15728838 80419 nas_port_type Virtual 80419 remote_ip 5.5.5.161 80422 username zamanialireza 80422 unique_id port 80422 terminate_cause User-Request 80422 bytes_out 658740 80422 bytes_in 13099129 80422 station_ip 89.34.44.248 80422 port 15728839 80422 nas_port_type Virtual 80422 remote_ip 5.5.5.160 80431 username mahdavi 80431 unique_id port 80431 terminate_cause User-Request 80431 bytes_out 214561 80431 bytes_in 992717 80431 station_ip 83.123.141.136 80431 port 15728855 80431 nas_port_type Virtual 80431 remote_ip 5.5.5.158 80436 username kamali 80436 unique_id port 80436 terminate_cause User-Request 80436 bytes_out 78705 80436 bytes_in 304722 80436 station_ip 83.123.64.84 80436 port 15728863 80436 nas_port_type Virtual 80436 remote_ip 5.5.5.152 80437 username mahdavi 80437 unique_id port 80437 terminate_cause User-Request 80437 bytes_out 164867 80437 bytes_in 1457488 80437 station_ip 83.123.141.136 80437 port 15728865 80437 nas_port_type Virtual 80437 remote_ip 5.5.5.158 80440 username kamali 80440 unique_id port 80440 terminate_cause User-Request 80440 bytes_out 19438 80440 bytes_in 32763 80440 station_ip 83.123.64.84 80440 port 15728868 80440 nas_port_type Virtual 80440 remote_ip 5.5.5.152 80444 username mahdavi 80444 unique_id port 80444 terminate_cause User-Request 80444 bytes_out 179283 80444 bytes_in 577222 80444 station_ip 83.123.141.136 80444 port 15728873 80444 nas_port_type Virtual 80444 remote_ip 5.5.5.158 80447 username mahdavi 80447 unique_id port 80447 terminate_cause User-Request 80447 bytes_out 240045 80447 bytes_in 1355980 80447 station_ip 83.123.141.136 80447 port 15728875 80447 nas_port_type Virtual 80447 remote_ip 5.5.5.158 80451 username kamali 80451 unique_id port 80451 terminate_cause User-Request 80451 bytes_out 29063 80451 bytes_in 85289 80451 station_ip 83.123.64.84 80451 port 15728878 80451 nas_port_type Virtual 80451 remote_ip 5.5.5.152 80454 username aminvpn 80454 unique_id port 80454 terminate_cause Lost-Carrier 80454 bytes_out 7310597 80454 bytes_in 135535824 80454 station_ip 5.120.85.206 80454 port 15728859 80454 nas_port_type Virtual 80454 remote_ip 5.5.5.154 80457 username alirezazamani 80457 kill_reason Relative expiration date has reached 80457 unique_id port 80457 bytes_out 0 80457 bytes_in 0 80457 station_ip 78.39.157.2 80457 port 15728886 80457 nas_port_type Virtual 80458 username madadi 80458 unique_id port 80458 terminate_cause Lost-Carrier 80458 bytes_out 21259 80458 bytes_in 162558 80458 station_ip 5.120.83.16 80458 port 15728883 80458 nas_port_type Virtual 80458 remote_ip 5.5.5.149 80462 username kamali 80462 unique_id port 80462 terminate_cause User-Request 80462 bytes_out 20493 80462 bytes_in 54879 80462 station_ip 83.123.64.84 80462 port 15728890 80462 nas_port_type Virtual 80462 remote_ip 5.5.5.152 80465 username kamali 80465 unique_id port 80465 terminate_cause User-Request 80465 bytes_out 21861 80465 bytes_in 30465 80465 station_ip 83.123.64.84 80465 port 15728893 80465 nas_port_type Virtual 80465 remote_ip 5.5.5.152 80466 username kamali 80466 unique_id port 80466 terminate_cause User-Request 80466 bytes_out 61105 80466 bytes_in 32278 80466 station_ip 83.123.64.84 80466 port 15728894 80466 nas_port_type Virtual 80466 remote_ip 5.5.5.152 80469 username kamali 80469 unique_id port 80469 terminate_cause User-Request 80469 bytes_out 54601 80469 bytes_in 35750 80469 station_ip 83.123.64.84 80469 port 15728897 80469 nas_port_type Virtual 80469 remote_ip 5.5.5.152 81274 bytes_in 123469 81274 station_ip 83.122.195.71 81274 port 15728833 81274 nas_port_type Virtual 80442 terminate_cause User-Request 80442 bytes_out 14045 80442 bytes_in 26248 80442 station_ip 83.123.64.84 80442 port 15728870 80442 nas_port_type Virtual 80442 remote_ip 5.5.5.152 80443 username mahdavi 80443 unique_id port 80443 terminate_cause User-Request 80443 bytes_out 199617 80443 bytes_in 585659 80443 station_ip 83.123.141.136 80443 port 15728871 80443 nas_port_type Virtual 80443 remote_ip 5.5.5.158 80445 username mahdavi 80445 unique_id port 80445 terminate_cause User-Request 80445 bytes_out 101076 80445 bytes_in 196145 80445 station_ip 83.123.141.136 80445 port 15728874 80445 nas_port_type Virtual 80445 remote_ip 5.5.5.158 80453 username zoha 80453 unique_id port 80453 terminate_cause User-Request 80453 bytes_out 804296 80453 bytes_in 3394189 80453 station_ip 5.119.197.165 80453 port 15728856 80453 nas_port_type Virtual 80453 remote_ip 5.5.5.155 80456 username alirezazamani 80456 kill_reason Relative expiration date has reached 80456 unique_id port 80456 bytes_out 0 80456 bytes_in 0 80456 station_ip 78.39.157.2 80456 port 15728885 80456 nas_port_type Virtual 80459 username kamali 80459 unique_id port 80459 terminate_cause User-Request 80459 bytes_out 34963 80459 bytes_in 79639 80459 station_ip 83.123.64.84 80459 port 15728888 80459 nas_port_type Virtual 80459 remote_ip 5.5.5.152 80467 username kamali 80467 unique_id port 80467 terminate_cause User-Request 80467 bytes_out 22668 80467 bytes_in 35927 80467 station_ip 83.123.64.84 80467 port 15728896 80467 nas_port_type Virtual 80467 remote_ip 5.5.5.152 80468 username amirhosein 80468 unique_id port 80468 terminate_cause Lost-Carrier 80468 bytes_out 2516195 80468 bytes_in 63970138 80468 station_ip 5.119.72.16 80468 port 15728872 80468 nas_port_type Virtual 80468 remote_ip 5.5.5.221 80470 username mahbobeh 80470 unique_id port 80470 terminate_cause Lost-Carrier 80470 bytes_out 250225 80470 bytes_in 1489454 80470 station_ip 83.123.243.244 80470 port 15728858 80470 nas_port_type Virtual 80470 remote_ip 5.5.5.171 80473 username kamali 80473 unique_id port 80473 terminate_cause User-Request 80473 bytes_out 12087 80473 bytes_in 31411 80473 station_ip 83.123.64.84 80473 port 15728900 80473 nas_port_type Virtual 80473 remote_ip 5.5.5.152 80476 username kamali 80476 unique_id port 80476 terminate_cause User-Request 80476 bytes_out 125262 80476 bytes_in 78326 80476 station_ip 83.123.64.84 80476 port 15728902 80476 nas_port_type Virtual 80476 remote_ip 5.5.5.152 81274 remote_ip 5.5.5.153 81276 username aminvpn 81276 unique_id port 81276 terminate_cause Lost-Carrier 81276 bytes_out 207082 81276 bytes_in 2197934 81276 station_ip 5.120.15.167 81276 port 15728835 80490 username soleymani 80490 unique_id port 80490 terminate_cause User-Request 80490 bytes_out 0 80490 bytes_in 0 80490 station_ip 5.120.137.67 80490 port 15728917 80490 nas_port_type Virtual 80490 remote_ip 5.5.5.143 80497 username mahbobeh 80497 unique_id port 80497 terminate_cause Lost-Carrier 80497 bytes_out 92901 80497 bytes_in 222590 80497 station_ip 83.123.207.44 80497 port 15728921 80497 nas_port_type Virtual 80497 remote_ip 5.5.5.141 80504 username aminvpn 80504 unique_id port 80504 terminate_cause Lost-Carrier 80504 bytes_out 2115986 80504 bytes_in 11984944 80504 station_ip 2.183.244.184 80504 port 15728913 80504 nas_port_type Virtual 80504 remote_ip 5.5.5.145 80506 username madadi 80506 unique_id port 80506 terminate_cause Lost-Carrier 80506 bytes_out 48532 80506 bytes_in 182479 80506 station_ip 5.119.200.155 80506 port 15728927 80506 nas_port_type Virtual 80506 remote_ip 5.5.5.135 80508 username reza2742 80508 unique_id port 80508 terminate_cause User-Request 80464 nas_port_type Virtual 80464 remote_ip 5.5.5.152 80471 username kamali 80471 unique_id port 80471 terminate_cause User-Request 80471 bytes_out 80227 80471 bytes_in 58162 80471 station_ip 83.123.64.84 80471 port 15728898 80471 nas_port_type Virtual 80471 remote_ip 5.5.5.152 80474 username kamali 80474 unique_id port 80474 terminate_cause User-Request 80474 bytes_out 8351 80474 bytes_in 21044 80474 station_ip 83.123.64.84 80474 port 15728901 80474 nas_port_type Virtual 80474 remote_ip 5.5.5.152 81275 port 15728836 81275 nas_port_type Virtual 81275 remote_ip 5.5.5.166 81277 username zoha 81277 unique_id port 81277 terminate_cause User-Request 81277 bytes_out 3263157 81277 bytes_in 64858173 81277 station_ip 5.120.136.140 81277 port 15728828 81277 nas_port_type Virtual 81277 remote_ip 5.5.5.244 81278 username caferibar 81278 unique_id port 81278 terminate_cause Lost-Carrier 81278 bytes_out 477904 80483 username mobina 80483 kill_reason Relative expiration date has reached 80483 unique_id port 80483 bytes_out 0 80483 bytes_in 0 80483 station_ip 5.123.207.20 80483 port 15728910 80483 nas_port_type Virtual 80484 username madadi 80484 kill_reason Maximum check online fails reached 80484 unique_id port 80484 bytes_out 64967 80484 bytes_in 196033 80484 station_ip 5.119.76.19 80484 port 15728909 80484 nas_port_type Virtual 80484 remote_ip 5.5.5.147 80485 username ahmadipour 80485 unique_id port 80485 terminate_cause Lost-Carrier 80485 bytes_out 816368 80485 bytes_in 17510642 80485 station_ip 113.203.23.15 80485 port 15728914 80485 nas_port_type Virtual 80485 remote_ip 5.5.5.144 80487 username shahrooz 80487 unique_id port 80487 terminate_cause Lost-Carrier 80487 bytes_out 238823 80487 bytes_in 1981254 80487 station_ip 83.122.163.183 80487 port 15728882 80487 nas_port_type Virtual 80487 remote_ip 5.5.5.150 80491 username hamideh 80491 unique_id port 80491 terminate_cause Lost-Carrier 80491 bytes_out 371366 80491 bytes_in 5856267 80491 station_ip 5.119.130.82 80491 port 15728911 80491 nas_port_type Virtual 80491 remote_ip 5.5.5.159 80493 username aminvpn 80493 kill_reason Another user logged on this global unique id 80493 mac 80493 bytes_out 0 80493 bytes_in 0 80493 station_ip 5.120.183.82 80493 port 10 80493 unique_id port 80493 remote_ip 10.8.0.6 80500 username hamideh 80500 unique_id port 80500 terminate_cause Lost-Carrier 80500 bytes_out 31372 80500 bytes_in 151396 80500 station_ip 5.119.130.82 80500 port 15728924 80500 nas_port_type Virtual 80500 remote_ip 5.5.5.138 80503 username soleymani 80503 unique_id port 80503 terminate_cause Lost-Carrier 80503 bytes_out 96747 80503 bytes_in 398961 80503 station_ip 5.119.197.29 80503 port 15728925 80503 nas_port_type Virtual 80503 remote_ip 5.5.5.137 80507 username afarin 80507 unique_id port 80507 terminate_cause Lost-Carrier 80507 bytes_out 2402891 80507 bytes_in 54637213 80507 station_ip 151.238.239.10 80507 port 15728919 80507 nas_port_type Virtual 80507 remote_ip 5.5.5.142 80514 username caferibar 80514 unique_id port 80514 terminate_cause User-Request 80514 bytes_out 83230 80514 bytes_in 399460 80514 station_ip 94.183.213.166 80514 port 15728935 80514 nas_port_type Virtual 80514 remote_ip 5.5.5.127 80515 username ahmadi 80515 unique_id port 80515 terminate_cause User-Request 80515 bytes_out 0 80515 bytes_in 0 80515 station_ip 83.123.64.182 80515 port 15728936 80515 nas_port_type Virtual 80515 remote_ip 5.5.5.126 80520 username goli 80520 kill_reason Relative expiration date has reached 80520 unique_id port 80520 bytes_out 0 80520 bytes_in 0 80520 station_ip 83.123.96.109 80520 port 15728939 80520 nas_port_type Virtual 80521 username goli 80477 port 15728903 80477 nas_port_type Virtual 80477 remote_ip 5.5.5.152 81276 nas_port_type Virtual 81276 remote_ip 5.5.5.152 81283 username ahmadipour 81283 unique_id port 81283 terminate_cause User-Request 81283 bytes_out 2583246 81283 bytes_in 50566845 81283 station_ip 113.203.127.147 80488 username kamali 80488 unique_id port 80488 terminate_cause User-Request 80488 bytes_out 90067 80488 bytes_in 107506 80488 station_ip 83.123.64.84 80488 port 15728915 80488 nas_port_type Virtual 80488 remote_ip 5.5.5.152 80495 username hamideh 80495 unique_id port 80495 terminate_cause User-Request 80495 bytes_out 459963 80495 bytes_in 1028526 80495 station_ip 5.119.130.82 80495 port 15728920 80495 nas_port_type Virtual 80495 remote_ip 5.5.5.159 80496 username aminvpn 80496 kill_reason Another user logged on this global unique id 80496 mac 80496 bytes_out 0 80496 bytes_in 0 80496 station_ip 5.120.183.82 80496 port 10 80496 unique_id port 80499 username soleymani 80499 unique_id port 80499 terminate_cause Lost-Carrier 80499 bytes_out 229496 80499 bytes_in 492597 80499 station_ip 5.120.124.53 80499 port 15728922 80499 nas_port_type Virtual 80499 remote_ip 5.5.5.140 80502 username aminvpn 80502 kill_reason Another user logged on this global unique id 80502 mac 80502 bytes_out 0 80502 bytes_in 0 80502 station_ip 5.120.183.82 80502 port 10 80502 unique_id port 80505 username aminvpn 80505 kill_reason Another user logged on this global unique id 80505 mac 80505 bytes_out 0 80505 bytes_in 0 80505 station_ip 5.120.183.82 80505 port 10 80505 unique_id port 80511 username forozande 80511 unique_id port 80511 terminate_cause User-Request 80511 bytes_out 145309 80511 bytes_in 1091913 80511 station_ip 83.123.82.102 80511 port 15728932 80511 nas_port_type Virtual 80511 remote_ip 5.5.5.130 80516 username soleymani 80516 unique_id port 80516 terminate_cause Lost-Carrier 80516 bytes_out 59753 80516 bytes_in 441842 80516 station_ip 5.120.45.135 80516 port 15728934 80516 nas_port_type Virtual 80516 remote_ip 5.5.5.128 80518 username aminvpn 80518 mac 80518 bytes_out 0 80518 bytes_in 0 80518 station_ip 5.120.183.82 80518 port 10 80518 unique_id port 80519 username goli 80519 kill_reason Relative expiration date has reached 80519 unique_id port 80519 bytes_out 0 80519 bytes_in 0 80519 station_ip 83.123.96.109 80519 port 15728938 80519 nas_port_type Virtual 80525 username aminvpn 80525 mac 80525 bytes_out 0 80525 bytes_in 0 80525 station_ip 5.120.183.82 80525 port 10 80525 unique_id port 80525 remote_ip 10.8.0.6 80530 username afarin 80530 unique_id port 80530 terminate_cause Lost-Carrier 80530 bytes_out 2733090 80530 bytes_in 70675504 80530 station_ip 151.238.239.10 80530 port 15728928 80530 nas_port_type Virtual 80530 remote_ip 5.5.5.134 80531 username aminvpn 80531 mac 80531 bytes_out 0 80531 bytes_in 0 80531 station_ip 5.120.183.82 80531 port 10 80531 unique_id port 80531 remote_ip 10.8.0.6 80532 username alirezazamani 80532 kill_reason Relative expiration date has reached 80532 unique_id port 80532 bytes_out 0 80532 bytes_in 0 80532 station_ip 5.119.67.99 80532 port 15728949 80532 nas_port_type Virtual 80533 username alirezazamani 80533 kill_reason Relative expiration date has reached 80533 unique_id port 80533 bytes_out 0 80533 bytes_in 0 80533 station_ip 37.129.89.90 80533 port 15728950 80533 nas_port_type Virtual 80537 username alinezhad 80537 unique_id port 80537 terminate_cause User-Request 80537 bytes_out 6733 80537 bytes_in 16503 80537 station_ip 5.202.134.253 80537 port 15728954 80537 nas_port_type Virtual 80537 remote_ip 5.5.5.163 81278 bytes_in 1016673 81278 station_ip 5.119.247.154 81278 port 15728834 81278 nas_port_type Virtual 80486 username afarin 80486 unique_id port 80486 terminate_cause Lost-Carrier 80486 bytes_out 1042413 80486 bytes_in 25166008 80486 station_ip 151.238.251.13 80486 port 15728862 80486 nas_port_type Virtual 80486 remote_ip 5.5.5.153 80489 username soleymani 80489 unique_id port 80489 terminate_cause User-Request 80489 bytes_out 0 80489 bytes_in 0 80489 station_ip 5.120.137.67 80489 port 15728916 80489 nas_port_type Virtual 80489 remote_ip 5.5.5.143 80492 username soleymani 80492 unique_id port 80492 terminate_cause Lost-Carrier 80492 bytes_out 199086 80492 bytes_in 1558261 80492 station_ip 5.119.190.109 80492 port 15728912 80492 nas_port_type Virtual 80492 remote_ip 5.5.5.146 80494 username soleymani 80494 unique_id port 80494 terminate_cause Lost-Carrier 80494 bytes_out 212396 80494 bytes_in 4086807 80494 station_ip 5.120.137.67 80494 port 15728918 80494 nas_port_type Virtual 80494 remote_ip 5.5.5.143 80498 username madadi 80498 unique_id port 80498 terminate_cause Lost-Carrier 80498 bytes_out 53699 80498 bytes_in 204293 80498 station_ip 5.119.179.80 80498 port 15728923 80498 nas_port_type Virtual 80498 remote_ip 5.5.5.139 80501 username forozande 80501 unique_id port 80501 terminate_cause User-Request 80501 bytes_out 337282 80501 bytes_in 1236320 80501 station_ip 37.129.204.192 80501 port 15728926 80501 nas_port_type Virtual 80501 remote_ip 5.5.5.136 80509 username caferibar 80509 unique_id port 80509 terminate_cause Lost-Carrier 80509 bytes_out 4451106 80509 bytes_in 79957206 80509 station_ip 5.119.57.179 80509 port 15728895 80509 nas_port_type Virtual 80509 remote_ip 5.5.5.148 80513 username shahnaz 80513 unique_id port 80513 terminate_cause User-Request 80513 bytes_out 1697485 80513 bytes_in 27062967 80513 station_ip 5.119.227.82 80513 port 15728931 80513 nas_port_type Virtual 80513 remote_ip 5.5.5.131 80523 username goli 80523 kill_reason Relative expiration date has reached 80523 unique_id port 80523 bytes_out 0 80523 bytes_in 0 80523 station_ip 83.123.151.36 80523 port 15728943 80523 nas_port_type Virtual 80528 username madadi 80528 unique_id port 80528 terminate_cause Lost-Carrier 80528 bytes_out 250194 80528 bytes_in 578680 80528 station_ip 5.119.49.36 80528 port 15728933 80528 nas_port_type Virtual 80528 remote_ip 5.5.5.129 80535 username alirezazamani 80535 kill_reason Relative expiration date has reached 80535 unique_id port 80535 bytes_out 0 80535 bytes_in 0 80535 station_ip 37.129.89.90 80535 port 15728952 80535 nas_port_type Virtual 80539 username forozande 80539 unique_id port 80539 terminate_cause User-Request 80539 bytes_out 70168 80539 bytes_in 323705 80539 station_ip 83.122.160.202 80539 port 15728957 80539 nas_port_type Virtual 80539 remote_ip 5.5.5.121 80551 username soleymani 80551 unique_id port 80551 terminate_cause Lost-Carrier 80551 bytes_out 145670 80551 bytes_in 736324 80551 station_ip 5.119.9.200 80551 port 15728960 80551 nas_port_type Virtual 80551 remote_ip 5.5.5.119 80557 username ahmad 80557 kill_reason Absolute expiration date has reached 80557 unique_id port 80557 bytes_out 0 80557 bytes_in 0 80557 station_ip 86.57.24.107 80557 port 15728968 80557 nas_port_type Virtual 80559 username aminvpn 80559 mac 80559 bytes_out 0 80559 bytes_in 0 80559 station_ip 5.120.183.82 80559 port 10 80559 unique_id port 80559 remote_ip 10.8.0.6 80567 username alirezazamani 80567 kill_reason Relative expiration date has reached 80567 unique_id port 80567 bytes_out 0 80567 bytes_in 0 80567 station_ip 5.119.50.207 80567 port 15728976 80567 nas_port_type Virtual 80508 bytes_out 324001 80508 bytes_in 7509111 80508 station_ip 37.129.196.196 80508 port 15728929 80508 nas_port_type Virtual 80508 remote_ip 5.5.5.133 80510 username kamali 80510 unique_id port 80510 terminate_cause User-Request 80510 bytes_out 221269 80510 bytes_in 2109822 80510 station_ip 83.123.9.76 80510 port 15728930 80510 nas_port_type Virtual 80510 remote_ip 5.5.5.132 80512 username aminvpn 80512 kill_reason Another user logged on this global unique id 80512 mac 80512 bytes_out 0 80512 bytes_in 0 80512 station_ip 5.120.183.82 80512 port 10 80512 unique_id port 80517 username alinezhad 80517 unique_id port 80517 terminate_cause User-Request 80517 bytes_out 0 80517 bytes_in 0 80517 station_ip 5.202.134.253 80517 port 15728937 80517 nas_port_type Virtual 80517 remote_ip 5.5.5.163 80522 username goli 80522 kill_reason Relative expiration date has reached 80522 unique_id port 80522 bytes_out 0 80522 bytes_in 0 80522 station_ip 83.123.96.109 80522 port 15728941 80522 nas_port_type Virtual 80524 username goli 80524 kill_reason Relative expiration date has reached 80524 unique_id port 80524 bytes_out 0 80524 bytes_in 0 80524 station_ip 83.123.151.36 80524 port 15728944 80524 nas_port_type Virtual 80526 username aminvpn 80526 mac 80526 bytes_out 0 80526 bytes_in 0 80526 station_ip 5.120.183.82 80526 port 10 80526 unique_id port 80526 remote_ip 10.8.0.6 80529 username soleymani 80529 unique_id port 80529 terminate_cause Lost-Carrier 80529 bytes_out 76963 80529 bytes_in 290944 80529 station_ip 5.119.239.141 80529 port 15728942 80529 nas_port_type Virtual 80529 remote_ip 5.5.5.125 80546 username alirezazamani 80546 kill_reason Relative expiration date has reached 80546 unique_id port 80546 bytes_out 0 80546 bytes_in 0 80546 station_ip 37.129.89.90 80546 port 15728962 80546 nas_port_type Virtual 80547 username soleymani 80547 unique_id port 80547 terminate_cause Lost-Carrier 80547 bytes_out 293631 80547 bytes_in 1251107 80547 station_ip 5.119.147.154 80547 port 15728953 80547 nas_port_type Virtual 80547 remote_ip 5.5.5.123 80548 username aminvpn 80548 mac 80548 bytes_out 0 80548 bytes_in 0 80548 station_ip 5.120.183.82 80548 port 10 80548 unique_id port 80548 remote_ip 10.8.0.6 80549 username aminvpn 80549 mac 80549 bytes_out 0 80549 bytes_in 0 80549 station_ip 5.120.183.82 80549 port 10 80549 unique_id port 80549 remote_ip 10.8.0.6 80550 username soleymani 80550 unique_id port 80550 terminate_cause User-Request 80550 bytes_out 0 80550 bytes_in 0 80550 station_ip 5.120.67.52 80550 port 15728963 80550 nas_port_type Virtual 80550 remote_ip 5.5.5.118 80556 username ahmad 80556 kill_reason Absolute expiration date has reached 80556 unique_id port 80556 bytes_out 0 80556 bytes_in 0 80556 station_ip 86.57.24.107 80556 port 15728967 80556 nas_port_type Virtual 80560 username soleymani 80560 unique_id port 80560 terminate_cause Lost-Carrier 80560 bytes_out 445850 80560 bytes_in 5155109 80560 station_ip 5.120.67.52 80560 port 15728964 80560 nas_port_type Virtual 80560 remote_ip 5.5.5.118 80561 username soleymani 80561 unique_id port 80561 terminate_cause Lost-Carrier 80561 bytes_out 24348 80561 bytes_in 187877 80561 station_ip 5.119.214.195 80561 port 15728969 80561 nas_port_type Virtual 80561 remote_ip 5.5.5.117 80562 username caferibar 80562 unique_id port 80562 terminate_cause User-Request 80562 bytes_out 0 80562 bytes_in 0 80562 station_ip 5.119.18.3 80562 port 15728970 80562 nas_port_type Virtual 80562 remote_ip 5.5.5.116 80569 username goli 80569 kill_reason Relative expiration date has reached 80569 unique_id port 80521 kill_reason Relative expiration date has reached 80521 unique_id port 80521 bytes_out 0 80521 bytes_in 0 80521 station_ip 83.123.96.109 80521 port 15728940 80521 nas_port_type Virtual 80527 username aminvpn 80527 mac 80527 bytes_out 0 80527 bytes_in 0 80527 station_ip 5.120.183.82 80527 port 10 80527 unique_id port 80527 remote_ip 10.8.0.6 80534 username alinezhad 80534 unique_id port 80534 terminate_cause User-Request 80534 bytes_out 20003 80534 bytes_in 79286 80534 station_ip 5.202.134.253 80534 port 15728948 80534 nas_port_type Virtual 80534 remote_ip 5.5.5.163 80536 username aminvpn 80536 mac 80536 bytes_out 0 80536 bytes_in 0 80536 station_ip 5.120.183.82 80536 port 10 80536 unique_id port 80536 remote_ip 10.8.0.6 80538 username soleymani 80538 unique_id port 80538 terminate_cause Lost-Carrier 80538 bytes_out 137901 80538 bytes_in 495625 80538 station_ip 5.120.169.152 80538 port 15728947 80538 nas_port_type Virtual 80538 remote_ip 5.5.5.124 80540 username aminvpn 80540 mac 80540 bytes_out 0 80540 bytes_in 0 80540 station_ip 5.120.183.82 80540 port 10 80540 unique_id port 80540 remote_ip 10.8.0.6 80543 username hamideh 80543 unique_id port 80543 terminate_cause Lost-Carrier 80543 bytes_out 226872 80543 bytes_in 362672 80543 station_ip 5.119.130.82 80543 port 15728955 80543 nas_port_type Virtual 80543 remote_ip 5.5.5.138 80544 username mobina 80544 kill_reason Relative expiration date has reached 80544 unique_id port 80544 bytes_out 0 80544 bytes_in 0 80544 station_ip 5.124.59.30 80544 port 15728961 80544 nas_port_type Virtual 80545 username shahnaz 80545 unique_id port 80545 terminate_cause Lost-Carrier 80545 bytes_out 1527475 80545 bytes_in 32615410 80545 station_ip 5.119.227.82 80545 port 15728951 80545 nas_port_type Virtual 80545 remote_ip 5.5.5.131 81278 remote_ip 5.5.5.159 81281 username mobina 81281 kill_reason Relative expiration date has reached 81281 unique_id port 81281 bytes_out 0 81281 bytes_in 0 81281 station_ip 5.219.200.96 81281 port 15728846 80555 username reza 80555 unique_id port 80555 terminate_cause User-Request 80555 bytes_out 534403 80555 bytes_in 15587786 80555 station_ip 83.122.36.188 80555 port 15728956 80555 nas_port_type Virtual 80555 remote_ip 5.5.5.122 80558 username mahbobeh 80558 unique_id port 80558 terminate_cause Lost-Carrier 80558 bytes_out 3167221 80558 bytes_in 49098226 80558 station_ip 83.123.207.44 80558 port 15728945 80558 nas_port_type Virtual 80558 remote_ip 5.5.5.141 80566 username alirezazamani 80566 kill_reason Relative expiration date has reached 80566 unique_id port 80566 bytes_out 0 80566 bytes_in 0 80566 station_ip 5.119.50.207 80566 port 15728975 80566 nas_port_type Virtual 80568 username aminvpn 80568 mac 80568 bytes_out 0 80568 bytes_in 0 80568 station_ip 5.120.183.82 80568 port 10 80568 unique_id port 80568 remote_ip 10.8.0.6 80571 username mahdavi 80571 unique_id port 80571 terminate_cause User-Request 80571 bytes_out 323419 80571 bytes_in 1667357 80571 station_ip 83.123.188.180 80571 port 15728978 80571 nas_port_type Virtual 80571 remote_ip 5.5.5.115 80572 username alinezhad 80572 unique_id port 80572 terminate_cause User-Request 80572 bytes_out 0 80572 bytes_in 0 80572 station_ip 5.202.134.253 80572 port 15728980 80572 nas_port_type Virtual 80572 remote_ip 5.5.5.163 80582 username aminvpn 80582 mac 80582 bytes_out 0 80582 bytes_in 0 80582 station_ip 5.120.183.82 80582 port 10 80582 unique_id port 80582 remote_ip 10.8.0.6 80592 username soleymani 80592 unique_id port 80592 terminate_cause Lost-Carrier 80541 username soleymani 80541 unique_id port 80541 terminate_cause User-Request 80541 bytes_out 0 80541 bytes_in 0 80541 station_ip 5.119.9.200 80541 port 15728959 80541 nas_port_type Virtual 80541 remote_ip 5.5.5.119 80542 username zamanialireza 80542 unique_id port 80542 terminate_cause Lost-Carrier 80542 bytes_out 710863 80542 bytes_in 2650907 80542 station_ip 94.183.213.166 80542 port 15728946 80542 nas_port_type Virtual 80542 remote_ip 5.5.5.161 80553 username alinezhad 80553 unique_id port 80553 terminate_cause User-Request 80553 bytes_out 0 80553 bytes_in 0 80553 station_ip 5.202.134.253 80553 port 15728966 80553 nas_port_type Virtual 80553 remote_ip 5.5.5.163 80554 username aminvpn 80554 mac 80554 bytes_out 0 80554 bytes_in 0 80554 station_ip 5.120.183.82 80554 port 10 80554 unique_id port 80554 remote_ip 10.8.0.6 80563 username aminvpn 80563 mac 80563 bytes_out 0 80563 bytes_in 0 80563 station_ip 5.120.183.82 80563 port 10 80563 unique_id port 80563 remote_ip 10.8.0.6 80564 username reza 80564 unique_id port 80564 terminate_cause User-Request 80564 bytes_out 5578 80564 bytes_in 30665 80564 station_ip 83.122.36.188 80564 port 15728973 80564 nas_port_type Virtual 80564 remote_ip 5.5.5.122 80565 username alirezazamani 80565 kill_reason Relative expiration date has reached 80565 unique_id port 80565 bytes_out 0 80565 bytes_in 0 80565 station_ip 5.119.50.207 80565 port 15728974 80565 nas_port_type Virtual 80574 username caferibar 80574 unique_id port 80574 terminate_cause Lost-Carrier 80574 bytes_out 703323 80574 bytes_in 2151278 80574 station_ip 5.119.18.3 80574 port 15728971 80574 nas_port_type Virtual 80574 remote_ip 5.5.5.116 80578 username aminvpn 80578 mac 80578 bytes_out 0 80578 bytes_in 0 80578 station_ip 5.120.183.82 80578 port 10 80578 unique_id port 80578 remote_ip 10.8.0.6 80580 username alinezhad 80580 unique_id port 80580 terminate_cause User-Request 80580 bytes_out 0 80580 bytes_in 0 80580 station_ip 5.202.134.253 80580 port 15728984 80580 nas_port_type Virtual 80580 remote_ip 5.5.5.163 80585 username aminvpn 80585 mac 80585 bytes_out 0 80585 bytes_in 0 80585 station_ip 5.120.183.82 80585 port 10 80585 unique_id port 80585 remote_ip 10.8.0.6 80586 username aminvpn 80586 mac 80586 bytes_out 0 80586 bytes_in 0 80586 station_ip 5.120.183.82 80586 port 10 80586 unique_id port 80586 remote_ip 10.8.0.6 80588 username soleymani 80588 unique_id port 80588 terminate_cause Lost-Carrier 80588 bytes_out 837083 80588 bytes_in 24643889 80588 station_ip 5.120.152.179 80588 port 15728986 80588 nas_port_type Virtual 80588 remote_ip 5.5.5.113 80591 username amirhosein 80591 unique_id port 80591 terminate_cause Lost-Carrier 80591 bytes_out 314456 80591 bytes_in 2246362 80591 station_ip 5.119.226.189 80591 port 15728988 80591 nas_port_type Virtual 80591 remote_ip 5.5.5.111 80598 username aminvpn 80598 mac 80598 bytes_out 0 80598 bytes_in 0 80598 station_ip 5.120.183.82 80598 port 10 80598 unique_id port 80598 remote_ip 10.8.0.6 80599 username aminvpn 80599 mac 80599 bytes_out 0 80599 bytes_in 0 80599 station_ip 5.120.183.82 80599 port 10 80599 unique_id port 80599 remote_ip 10.8.0.6 80600 username aminvpn 80600 mac 80600 bytes_out 0 80600 bytes_in 0 80600 station_ip 5.120.183.82 80600 port 10 80600 unique_id port 80600 remote_ip 10.8.0.6 80601 username ahmadipour 80601 unique_id port 80601 terminate_cause Lost-Carrier 80601 bytes_out 1985496 80601 bytes_in 44062478 80569 bytes_out 0 80569 bytes_in 0 80569 station_ip 83.122.150.40 80569 port 15728977 80569 nas_port_type Virtual 80570 username aminvpn 80570 mac 80570 bytes_out 0 80570 bytes_in 0 80570 station_ip 5.120.183.82 80570 port 10 80570 unique_id port 80570 remote_ip 10.8.0.6 80583 username alinezhad 80583 unique_id port 80583 terminate_cause User-Request 80583 bytes_out 0 80583 bytes_in 0 80583 station_ip 83.123.30.105 80583 port 15728987 80583 nas_port_type Virtual 80583 remote_ip 5.5.5.112 80593 username aminvpn 80593 mac 80593 bytes_out 0 80593 bytes_in 0 80593 station_ip 5.120.183.82 80593 port 10 80593 unique_id port 80593 remote_ip 10.8.0.6 80594 username aminvpn 80594 mac 80594 bytes_out 0 80594 bytes_in 0 80594 station_ip 5.120.183.82 80594 port 10 80594 unique_id port 80594 remote_ip 10.8.0.6 80596 username pouria 80596 unique_id port 80596 terminate_cause Lost-Carrier 80596 bytes_out 976382 80596 bytes_in 9979543 80596 station_ip 5.119.4.7 80596 port 15728991 80596 nas_port_type Virtual 80596 remote_ip 5.5.5.109 80603 username aminvpn 80603 mac 80603 bytes_out 0 80603 bytes_in 0 80603 station_ip 5.120.183.82 80603 port 10 80603 unique_id port 80603 remote_ip 10.8.0.6 80604 username aminvpn 80604 mac 80604 bytes_out 0 80604 bytes_in 0 80604 station_ip 5.120.183.82 80604 port 10 80604 unique_id port 80604 remote_ip 10.8.0.6 80605 username aminvpn 80605 mac 80605 bytes_out 0 80605 bytes_in 0 80605 station_ip 5.120.183.82 80605 port 10 80605 unique_id port 80605 remote_ip 10.8.0.6 80606 username caferibar 80606 unique_id port 80606 terminate_cause Lost-Carrier 80606 bytes_out 683250 80606 bytes_in 6471446 80606 station_ip 5.119.7.48 80606 port 15728997 80606 nas_port_type Virtual 80606 remote_ip 5.5.5.106 80612 username aminvpn 80612 mac 80612 bytes_out 0 80612 bytes_in 0 80612 station_ip 5.120.183.82 80612 port 10 80612 unique_id port 80612 remote_ip 10.8.0.6 80621 username aminvpn 80621 mac 80621 bytes_out 0 80621 bytes_in 0 80621 station_ip 5.120.183.82 80621 port 27 80621 unique_id port 80621 remote_ip 10.8.1.10 80622 username aminvpn 80622 mac 80622 bytes_out 0 80622 bytes_in 0 80622 station_ip 5.120.183.82 80622 port 27 80622 unique_id port 80622 remote_ip 10.8.1.10 80634 username aminvpn 80634 mac 80634 bytes_out 0 80634 bytes_in 0 80634 station_ip 5.120.183.82 80634 port 10 80634 unique_id port 80634 remote_ip 10.8.0.6 80635 username aminvpn 80635 mac 80635 bytes_out 0 80635 bytes_in 0 80635 station_ip 5.120.183.82 80635 port 27 80635 unique_id port 80635 remote_ip 10.8.1.10 80652 username aminvpn 80652 mac 80652 bytes_out 0 80652 bytes_in 0 80652 station_ip 5.120.183.82 80652 port 27 80652 unique_id port 80652 remote_ip 10.8.1.10 80663 username aminvpn 80663 mac 80663 bytes_out 0 80663 bytes_in 0 80663 station_ip 5.120.183.82 80663 port 28 80663 unique_id port 80663 remote_ip 10.8.1.10 80665 username aminvpn 80665 kill_reason Maximum check online fails reached 80665 mac 80665 bytes_out 0 80665 bytes_in 0 80665 station_ip 5.120.183.82 80665 port 28 80665 unique_id port 80673 username aminvpn 80673 mac 80673 bytes_out 0 80673 bytes_in 0 80673 station_ip 5.120.183.82 80673 port 12 80673 unique_id port 80673 remote_ip 10.8.0.6 80674 username aminvpn 80674 mac 80674 bytes_out 0 80674 bytes_in 0 80573 username mahdavi 80573 unique_id port 80573 terminate_cause User-Request 80573 bytes_out 292354 80573 bytes_in 1337169 80573 station_ip 83.123.188.180 80573 port 15728979 80573 nas_port_type Virtual 80573 remote_ip 5.5.5.115 80575 username zamanialireza 80575 unique_id port 80575 terminate_cause Lost-Carrier 80575 bytes_out 402535 80575 bytes_in 5744418 80575 station_ip 94.183.213.166 80575 port 15728972 80575 nas_port_type Virtual 80575 remote_ip 5.5.5.161 80576 username alirezazamani 80576 kill_reason Relative expiration date has reached 80576 unique_id port 80576 bytes_out 0 80576 bytes_in 0 80576 station_ip 37.129.89.90 80576 port 15728981 80576 nas_port_type Virtual 80577 username alirezazamani 80577 kill_reason Relative expiration date has reached 80577 unique_id port 80577 bytes_out 0 80577 bytes_in 0 80577 station_ip 37.129.89.90 80577 port 15728982 80577 nas_port_type Virtual 80579 username asadi 80579 unique_id port 80579 terminate_cause User-Request 80579 bytes_out 139323 80579 bytes_in 2390392 80579 station_ip 37.129.160.42 80579 port 15728983 80579 nas_port_type Virtual 80579 remote_ip 5.5.5.114 80581 username soleymani 80581 unique_id port 80581 terminate_cause User-Request 80581 bytes_out 0 80581 bytes_in 0 80581 station_ip 5.120.152.179 80581 port 15728985 80581 nas_port_type Virtual 80581 remote_ip 5.5.5.113 80584 username soleymani 80584 unique_id port 80584 terminate_cause User-Request 80584 bytes_out 0 80584 bytes_in 0 80584 station_ip 5.119.164.212 80584 port 15728989 80584 nas_port_type Virtual 80584 remote_ip 5.5.5.110 80587 username madadi 80587 unique_id port 80587 terminate_cause Lost-Carrier 80587 bytes_out 2073977 80587 bytes_in 5630390 80587 station_ip 5.120.157.9 80587 port 15728958 80587 nas_port_type Virtual 80587 remote_ip 5.5.5.120 80589 username aminvpn 80589 mac 80589 bytes_out 0 80589 bytes_in 0 80589 station_ip 5.120.183.82 80589 port 10 80589 unique_id port 80589 remote_ip 10.8.0.6 80590 username aminvpn 80590 mac 80590 bytes_out 0 80590 bytes_in 0 80590 station_ip 5.120.183.82 80590 port 10 80590 unique_id port 80590 remote_ip 10.8.0.6 81279 station_ip 5.119.30.76 81279 port 14 81279 unique_id port 81279 remote_ip 10.8.0.6 81280 username forozande 81280 unique_id port 81280 terminate_cause User-Request 81280 bytes_out 38738 80597 username ahmadi 80597 unique_id port 80597 terminate_cause User-Request 80597 bytes_out 46333 80597 bytes_in 611798 80597 station_ip 83.123.34.166 80597 port 15728993 80597 nas_port_type Virtual 80597 remote_ip 5.5.5.108 80608 username aminvpn 80608 mac 80608 bytes_out 0 80608 bytes_in 0 80608 station_ip 5.120.183.82 80608 port 10 80608 unique_id port 80608 remote_ip 10.8.0.6 80609 username aminvpn 80609 mac 80609 bytes_out 0 80609 bytes_in 0 80609 station_ip 5.120.183.82 80609 port 10 80609 unique_id port 80609 remote_ip 10.8.0.6 80610 username aminvpn 80610 mac 80610 bytes_out 0 80610 bytes_in 0 80610 station_ip 5.120.183.82 80610 port 10 80610 unique_id port 80610 remote_ip 10.8.0.6 80616 username aminvpn 80616 mac 80616 bytes_out 0 80616 bytes_in 0 80616 station_ip 5.120.183.82 80616 port 27 80616 unique_id port 80616 remote_ip 10.8.1.10 80617 username aminvpn 80617 mac 80617 bytes_out 0 80617 bytes_in 0 80617 station_ip 5.120.183.82 80617 port 27 80617 unique_id port 80617 remote_ip 10.8.1.10 80618 username aminvpn 80618 mac 80618 bytes_out 0 80618 bytes_in 0 80618 station_ip 5.120.183.82 80618 port 27 80592 bytes_out 48384 80592 bytes_in 217358 80592 station_ip 5.119.164.212 80592 port 15728990 80592 nas_port_type Virtual 80592 remote_ip 5.5.5.110 80602 username aminvpn 80602 mac 80602 bytes_out 0 80602 bytes_in 0 80602 station_ip 5.120.183.82 80602 port 10 80602 unique_id port 80602 remote_ip 10.8.0.6 80607 username aminvpn 80607 mac 80607 bytes_out 0 80607 bytes_in 0 80607 station_ip 5.120.183.82 80607 port 10 80607 unique_id port 80607 remote_ip 10.8.0.6 80613 username aminvpn 80613 mac 80613 bytes_out 0 80613 bytes_in 0 80613 station_ip 5.120.183.82 80613 port 10 80613 unique_id port 80613 remote_ip 10.8.0.6 80614 username aminvpn 80614 mac 80614 bytes_out 0 80614 bytes_in 0 80614 station_ip 5.120.183.82 80614 port 27 80614 unique_id port 80614 remote_ip 10.8.1.10 80615 username aminvpn 80615 mac 80615 bytes_out 0 80615 bytes_in 0 80615 station_ip 5.120.183.82 80615 port 27 80615 unique_id port 80615 remote_ip 10.8.1.10 80623 username aminvpn 80623 mac 80623 bytes_out 0 80623 bytes_in 0 80623 station_ip 5.120.183.82 80623 port 27 80623 unique_id port 80623 remote_ip 10.8.1.10 80624 username aminvpn 80624 mac 80624 bytes_out 0 80624 bytes_in 0 80624 station_ip 5.120.183.82 80624 port 27 80624 unique_id port 80624 remote_ip 10.8.1.10 80627 username aminvpn 80627 mac 80627 bytes_out 0 80627 bytes_in 0 80627 station_ip 5.120.183.82 80627 port 10 80627 unique_id port 80627 remote_ip 10.8.0.6 80628 username aminvpn 80628 mac 80628 bytes_out 0 80628 bytes_in 0 80628 station_ip 5.120.183.82 80628 port 10 80628 unique_id port 80628 remote_ip 10.8.0.6 80629 username aminvpn 80629 mac 80629 bytes_out 0 80629 bytes_in 0 80629 station_ip 5.120.183.82 80629 port 10 80629 unique_id port 80629 remote_ip 10.8.0.6 80630 username aminvpn 80630 mac 80630 bytes_out 0 80630 bytes_in 0 80630 station_ip 5.120.183.82 80630 port 10 80630 unique_id port 80630 remote_ip 10.8.0.6 80631 username aminvpn 80631 mac 80631 bytes_out 0 80631 bytes_in 0 80631 station_ip 5.120.183.82 80631 port 10 80631 unique_id port 80631 remote_ip 10.8.0.6 80636 username aminvpn 80636 mac 80636 bytes_out 0 80636 bytes_in 0 80636 station_ip 5.120.183.82 80636 port 27 80636 unique_id port 80636 remote_ip 10.8.1.10 80637 username aminvpn 80637 mac 80637 bytes_out 0 80637 bytes_in 0 80637 station_ip 5.120.183.82 80637 port 27 80637 unique_id port 80637 remote_ip 10.8.1.10 80640 username pouria 80640 unique_id port 80640 terminate_cause Lost-Carrier 80640 bytes_out 25469270 80640 bytes_in 913611913 80640 station_ip 151.235.93.18 80640 port 15729000 80640 nas_port_type Virtual 80640 remote_ip 5.5.5.103 80642 username aminvpn 80642 mac 80642 bytes_out 0 80642 bytes_in 0 80642 station_ip 5.120.183.82 80642 port 27 80642 unique_id port 80642 remote_ip 10.8.1.10 80647 username aminvpn 80647 mac 80647 bytes_out 0 80647 bytes_in 0 80647 station_ip 5.120.183.82 80647 port 27 80647 unique_id port 80647 remote_ip 10.8.1.10 80650 username afarin 80650 unique_id port 80650 terminate_cause Lost-Carrier 80650 bytes_out 847282 80650 bytes_in 14186210 80650 station_ip 151.238.244.14 80650 port 15728999 80650 nas_port_type Virtual 80650 remote_ip 5.5.5.104 80654 username aminvpn 80654 kill_reason Maximum check online fails reached 80654 mac 80654 bytes_out 0 80601 station_ip 113.203.116.23 80601 port 15728994 80601 nas_port_type Virtual 80601 remote_ip 5.5.5.107 80611 username mahdi 80611 unique_id port 80611 terminate_cause Lost-Carrier 80611 bytes_out 618145 80611 bytes_in 12284349 80611 station_ip 5.119.186.227 80611 port 15728996 80611 nas_port_type Virtual 80611 remote_ip 5.5.5.187 80619 username aminvpn 80619 mac 80619 bytes_out 0 80619 bytes_in 0 80619 station_ip 5.120.183.82 80619 port 27 80619 unique_id port 80619 remote_ip 10.8.1.10 80620 username aminvpn 80620 mac 80620 bytes_out 0 80620 bytes_in 0 80620 station_ip 5.120.183.82 80620 port 27 80620 unique_id port 80620 remote_ip 10.8.1.10 80638 username aminvpn 80638 mac 80638 bytes_out 0 80638 bytes_in 0 80638 station_ip 5.120.183.82 80638 port 27 80638 unique_id port 80638 remote_ip 10.8.1.10 80641 username amirhosein 80641 unique_id port 80641 terminate_cause Lost-Carrier 80641 bytes_out 317822 80641 bytes_in 5357151 80641 station_ip 5.119.134.165 80641 port 15729001 80641 nas_port_type Virtual 80641 remote_ip 5.5.5.102 80643 username aminvpn 80643 mac 80643 bytes_out 0 80643 bytes_in 0 80643 station_ip 5.120.183.82 80643 port 27 80643 unique_id port 80643 remote_ip 10.8.1.10 80644 username aminvpn 80644 mac 80644 bytes_out 0 80644 bytes_in 0 80644 station_ip 5.120.183.82 80644 port 27 80644 unique_id port 80644 remote_ip 10.8.1.10 80645 username aminvpn 80645 mac 80645 bytes_out 0 80645 bytes_in 0 80645 station_ip 5.120.183.82 80645 port 27 80645 unique_id port 80645 remote_ip 10.8.1.10 80648 username aminvpn 80648 mac 80648 bytes_out 0 80648 bytes_in 0 80648 station_ip 5.120.183.82 80648 port 10 80648 unique_id port 80648 remote_ip 10.8.0.6 80653 username aminvpn 80653 mac 80653 bytes_out 0 80653 bytes_in 0 80653 station_ip 5.120.183.82 80653 port 11 80653 unique_id port 80653 remote_ip 10.8.0.6 80658 username aminvpn 80658 mac 80658 bytes_out 0 80658 bytes_in 0 80658 station_ip 5.120.183.82 80658 port 11 80658 unique_id port 80658 remote_ip 10.8.0.6 80659 username aminvpn 80659 mac 80659 bytes_out 0 80659 bytes_in 0 80659 station_ip 5.120.183.82 80659 port 11 80659 unique_id port 80659 remote_ip 10.8.0.6 80660 username aminvpn 80660 mac 80660 bytes_out 0 80660 bytes_in 0 80660 station_ip 5.120.183.82 80660 port 11 80660 unique_id port 80660 remote_ip 10.8.0.6 80661 username aminvpn 80661 mac 80661 bytes_out 0 80661 bytes_in 0 80661 station_ip 5.120.183.82 80661 port 11 80661 unique_id port 80661 remote_ip 10.8.0.6 80662 username aminvpn 80662 kill_reason Maximum check online fails reached 80662 mac 80662 bytes_out 0 80662 bytes_in 0 80662 station_ip 5.120.183.82 80662 port 11 80662 unique_id port 80664 username alirezazamani 80664 kill_reason Relative expiration date has reached 80664 unique_id port 80664 bytes_out 0 80664 bytes_in 0 80664 station_ip 5.119.254.148 80664 port 15729004 80664 nas_port_type Virtual 80666 username alirezazamani 80666 kill_reason Relative expiration date has reached 80666 unique_id port 80666 bytes_out 0 80666 bytes_in 0 80666 station_ip 5.119.254.148 80666 port 15729005 80666 nas_port_type Virtual 80667 username alirezazamani 80667 kill_reason Relative expiration date has reached 80667 unique_id port 80667 bytes_out 0 80667 bytes_in 0 80667 station_ip 5.119.254.148 80667 port 15729006 80667 nas_port_type Virtual 80669 username aminvpn 80669 mac 80669 bytes_out 0 80618 unique_id port 80618 remote_ip 10.8.1.10 80625 username aminvpn 80625 mac 80625 bytes_out 0 80625 bytes_in 0 80625 station_ip 5.120.183.82 80625 port 27 80625 unique_id port 80625 remote_ip 10.8.1.10 80626 username aminvpn 80626 mac 80626 bytes_out 0 80626 bytes_in 0 80626 station_ip 5.120.183.82 80626 port 27 80626 unique_id port 80626 remote_ip 10.8.1.10 80632 username aminvpn 80632 mac 80632 bytes_out 0 80632 bytes_in 0 80632 station_ip 5.120.183.82 80632 port 10 80632 unique_id port 80632 remote_ip 10.8.0.6 80633 username aminvpn 80633 mac 80633 bytes_out 0 80633 bytes_in 0 80633 station_ip 5.120.183.82 80633 port 10 80633 unique_id port 80633 remote_ip 10.8.0.6 80639 username aminvpn 80639 mac 80639 bytes_out 0 80639 bytes_in 0 80639 station_ip 5.120.183.82 80639 port 27 80639 unique_id port 80639 remote_ip 10.8.1.10 80646 username zamanialireza 80646 unique_id port 80646 terminate_cause Lost-Carrier 80646 bytes_out 15165094 80646 bytes_in 284631125 80646 station_ip 5.120.127.121 80646 port 15728998 80646 nas_port_type Virtual 80646 remote_ip 5.5.5.105 80649 username aminvpn 80649 kill_reason Maximum check online fails reached 80649 mac 80649 bytes_out 0 80649 bytes_in 0 80649 station_ip 5.120.183.82 80649 port 10 80649 unique_id port 80651 username mobina 80651 kill_reason Relative expiration date has reached 80651 unique_id port 80651 bytes_out 0 80651 bytes_in 0 80651 station_ip 5.124.79.43 80651 port 15729003 80651 nas_port_type Virtual 80678 username mahbobeh 80678 unique_id port 80678 terminate_cause Admin-Reboot 80678 bytes_out 995183 80678 bytes_in 16152551 80678 station_ip 83.123.207.44 80678 port 15729008 80678 nas_port_type Virtual 80678 remote_ip 5.5.5.141 80683 username aminvpn 80683 mac 80683 bytes_out 0 80683 bytes_in 0 80683 station_ip 5.120.183.82 80683 port 12 80683 unique_id port 80683 remote_ip 10.8.0.6 80689 username aminvpn 80689 mac 80689 bytes_out 0 80689 bytes_in 0 80689 station_ip 5.120.183.82 80689 port 29 80689 unique_id port 80689 remote_ip 10.8.1.10 80690 username madadi 80690 unique_id port 80690 terminate_cause Lost-Carrier 80690 bytes_out 1827785 80690 bytes_in 974743 80690 station_ip 5.119.82.235 80690 port 15728641 80690 nas_port_type Virtual 80690 remote_ip 5.5.5.254 80695 username alirezazamani 80695 kill_reason Relative expiration date has reached 80695 unique_id port 80695 bytes_out 0 80695 bytes_in 0 80695 station_ip 31.57.129.161 80695 port 15728653 80695 nas_port_type Virtual 80696 username aminvpn 80696 mac 80696 bytes_out 0 80696 bytes_in 0 80696 station_ip 5.120.183.82 80696 port 29 80696 unique_id port 80696 remote_ip 10.8.1.10 80697 username aminvpn 80697 mac 80697 bytes_out 0 80697 bytes_in 0 80697 station_ip 5.120.183.82 80697 port 29 80697 unique_id port 80697 remote_ip 10.8.1.10 80706 username madadi 80706 unique_id port 80706 terminate_cause Lost-Carrier 80706 bytes_out 168631 80706 bytes_in 2112207 80706 station_ip 5.120.115.176 80706 port 15728657 80706 nas_port_type Virtual 80706 remote_ip 5.5.5.246 80709 username asadi 80709 unique_id port 80709 terminate_cause User-Request 80709 bytes_out 678934 80709 bytes_in 15884873 80709 station_ip 113.203.64.103 80709 port 15728665 80709 nas_port_type Virtual 80709 remote_ip 5.5.5.247 80713 username zamanialireza 80713 unique_id port 80713 terminate_cause User-Request 80713 bytes_out 6054727 80713 bytes_in 168422183 80713 station_ip 5.119.101.56 80713 port 15728654 80654 bytes_in 0 80654 station_ip 5.120.183.82 80654 port 27 80654 unique_id port 80655 username shahnaz 80655 unique_id port 80655 terminate_cause Lost-Carrier 80655 bytes_out 909455 80655 bytes_in 15007268 80655 station_ip 5.119.198.19 80655 port 15729002 80655 nas_port_type Virtual 80655 remote_ip 5.5.5.101 80656 username aminvpn 80656 mac 80656 bytes_out 0 80656 bytes_in 0 80656 station_ip 5.120.183.82 80656 port 11 80656 unique_id port 80656 remote_ip 10.8.0.6 80657 username aminvpn 80657 mac 80657 bytes_out 0 80657 bytes_in 0 80657 station_ip 5.120.183.82 80657 port 11 80657 unique_id port 80657 remote_ip 10.8.0.6 80668 username aminvpn 80668 mac 80668 bytes_out 0 80668 bytes_in 0 80668 station_ip 5.120.183.82 80668 port 12 80668 unique_id port 80668 remote_ip 10.8.0.6 80672 username soleymani 80672 unique_id port 80672 terminate_cause Lost-Carrier 80672 bytes_out 231410 80672 bytes_in 1179519 80672 station_ip 5.120.158.99 80672 port 15729007 80672 nas_port_type Virtual 80672 remote_ip 5.5.5.100 80675 username aminvpn 80675 mac 80675 bytes_out 0 80675 bytes_in 0 80675 station_ip 5.120.183.82 80675 port 12 80675 unique_id port 80675 remote_ip 10.8.0.6 80676 username aminvpn 80676 mac 80676 bytes_out 0 80676 bytes_in 0 80676 station_ip 5.120.183.82 80676 port 12 80676 unique_id port 80676 remote_ip 10.8.0.6 80693 username amirhosein 80693 unique_id port 80693 terminate_cause Lost-Carrier 80693 bytes_out 12617 80693 bytes_in 129725 80693 station_ip 5.120.28.160 80693 port 15728648 80693 nas_port_type Virtual 80693 remote_ip 5.5.5.252 80698 username soleymani 80698 unique_id port 80698 terminate_cause Lost-Carrier 80698 bytes_out 93814 80698 bytes_in 381120 80698 station_ip 5.119.108.93 80698 port 15728651 80698 nas_port_type Virtual 80698 remote_ip 5.5.5.249 80700 username aminvpn 80700 mac 80700 bytes_out 0 80700 bytes_in 0 80700 station_ip 5.120.183.82 80700 port 29 80700 unique_id port 80700 remote_ip 10.8.1.10 80705 username reza 80705 unique_id port 80705 terminate_cause User-Request 80705 bytes_out 16569 80705 bytes_in 99775 80705 station_ip 83.122.138.188 80705 port 15728658 80705 nas_port_type Virtual 80705 remote_ip 5.5.5.245 80708 username asadi 80708 unique_id port 80708 terminate_cause User-Request 80708 bytes_out 313275 80708 bytes_in 4948505 80708 station_ip 113.203.64.103 80708 port 15728663 80708 nas_port_type Virtual 80708 remote_ip 5.5.5.247 80711 username amirhosein 80711 unique_id port 80711 terminate_cause Lost-Carrier 80711 bytes_out 520323 80711 bytes_in 6745777 80711 station_ip 5.120.28.160 80711 port 15728655 80711 nas_port_type Virtual 80711 remote_ip 5.5.5.252 80717 username aminvpn 80717 mac 80717 bytes_out 0 80717 bytes_in 0 80717 station_ip 5.120.183.82 80717 port 13 80717 unique_id port 80717 remote_ip 10.8.0.6 80719 username mahdavi 80719 unique_id port 80719 terminate_cause User-Request 80719 bytes_out 365156 80719 bytes_in 11384765 80719 station_ip 83.122.75.11 80719 port 15728671 80719 nas_port_type Virtual 80719 remote_ip 5.5.5.241 80721 username aminvpn 80721 mac 80721 bytes_out 0 80721 bytes_in 0 80721 station_ip 5.120.183.82 80721 port 13 80721 unique_id port 80721 remote_ip 10.8.0.6 80725 username asadi 80725 unique_id port 80725 terminate_cause User-Request 80725 bytes_out 46117 80725 bytes_in 183761 80725 station_ip 113.203.64.103 80725 port 15728676 80725 nas_port_type Virtual 80725 remote_ip 5.5.5.247 80726 username madadi 80669 bytes_in 0 80669 station_ip 5.120.183.82 80669 port 12 80669 unique_id port 80669 remote_ip 10.8.0.6 80670 username aminvpn 80670 mac 80670 bytes_out 0 80670 bytes_in 0 80670 station_ip 5.120.183.82 80670 port 12 80670 unique_id port 80670 remote_ip 10.8.0.6 80671 username aminvpn 80671 mac 80671 bytes_out 0 80671 bytes_in 0 80671 station_ip 5.120.183.82 80671 port 12 80671 unique_id port 80671 remote_ip 10.8.0.6 80677 username aminvpn 80677 mac 80677 bytes_out 0 80677 bytes_in 0 80677 station_ip 5.120.183.82 80677 port 12 80677 unique_id port 80677 remote_ip 10.8.0.6 80679 username madadi 80679 unique_id port 80679 terminate_cause Admin-Reboot 80679 bytes_out 101907 80679 bytes_in 529287 80679 station_ip 5.119.187.199 80679 port 15729009 80679 nas_port_type Virtual 80679 remote_ip 5.5.5.99 80681 username alinezhad 80681 unique_id port 80681 terminate_cause User-Request 80681 bytes_out 0 80681 bytes_in 0 80681 station_ip 37.129.183.173 80681 port 15728640 80681 nas_port_type Virtual 80681 remote_ip 5.5.5.255 80684 username aminvpn 80684 mac 80684 bytes_out 0 80684 bytes_in 0 80684 station_ip 5.120.183.82 80684 port 12 80684 unique_id port 80684 remote_ip 10.8.0.6 80685 username amirhosein 80685 kill_reason Maximum check online fails reached 80685 unique_id port 80685 bytes_out 0 80685 bytes_in 0 80685 station_ip 5.120.28.160 80685 port 15728646 80685 nas_port_type Virtual 80685 remote_ip 5.5.5.252 80687 username aminvpn 80687 mac 80687 bytes_out 0 80687 bytes_in 0 80687 station_ip 5.120.183.82 80687 port 29 80687 unique_id port 80687 remote_ip 10.8.1.10 80688 username forozande 80688 unique_id port 80688 terminate_cause User-Request 80688 bytes_out 314224 80688 bytes_in 3862863 80688 station_ip 37.129.157.68 80688 port 15728647 80688 nas_port_type Virtual 80688 remote_ip 5.5.5.251 80692 username kamali 80692 unique_id port 80692 terminate_cause User-Request 80692 bytes_out 140466 80692 bytes_in 1062337 80692 station_ip 83.122.27.238 80692 port 15728652 80692 nas_port_type Virtual 80692 remote_ip 5.5.5.248 80701 username asadi 80701 unique_id port 80701 terminate_cause User-Request 80701 bytes_out 145731 80701 bytes_in 2411688 80701 station_ip 113.203.64.103 80701 port 15728656 80701 nas_port_type Virtual 80701 remote_ip 5.5.5.247 80703 username zamanialireza 80703 unique_id port 80703 terminate_cause User-Request 80703 bytes_out 0 80703 bytes_in 0 80703 station_ip 83.123.46.2 80703 port 15728659 80703 nas_port_type Virtual 80703 remote_ip 5.5.5.244 80707 username asadi 80707 unique_id port 80707 terminate_cause User-Request 80707 bytes_out 262201 80707 bytes_in 4398460 80707 station_ip 113.203.64.103 80707 port 15728662 80707 nas_port_type Virtual 80707 remote_ip 5.5.5.247 80712 username asadi 80712 unique_id port 80712 terminate_cause User-Request 80712 bytes_out 176925 80712 bytes_in 4508831 80712 station_ip 113.203.64.103 80712 port 15728666 80712 nas_port_type Virtual 80712 remote_ip 5.5.5.247 80714 username asadi 80714 unique_id port 80714 terminate_cause User-Request 80714 bytes_out 53265 80714 bytes_in 140031 80714 station_ip 113.203.64.103 80714 port 15728668 80714 nas_port_type Virtual 80714 remote_ip 5.5.5.247 80715 username reza 80715 unique_id port 80715 terminate_cause User-Request 80715 bytes_out 41756 80715 bytes_in 365330 80715 station_ip 83.122.138.188 80715 port 15728667 80715 nas_port_type Virtual 80715 remote_ip 5.5.5.245 80723 username ahmadi 80723 unique_id port 80723 terminate_cause User-Request 80723 bytes_out 659764 80674 station_ip 5.120.183.82 80674 port 12 80674 unique_id port 80674 remote_ip 10.8.0.6 80680 username aminvpn 80680 mac 80680 bytes_out 0 80680 bytes_in 0 80680 station_ip 5.120.183.82 80680 port 12 80680 unique_id port 80680 remote_ip 10.8.0.6 80682 username aminvpn 80682 mac 80682 bytes_out 0 80682 bytes_in 0 80682 station_ip 5.120.183.82 80682 port 12 80682 unique_id port 80682 remote_ip 10.8.0.6 80686 username aminvpn 80686 kill_reason Maximum check online fails reached 80686 mac 80686 bytes_out 0 80686 bytes_in 0 80686 station_ip 5.120.183.82 80686 port 12 80686 unique_id port 80691 username mobina 80691 kill_reason Relative expiration date has reached 80691 unique_id port 80691 bytes_out 0 80691 bytes_in 0 80691 station_ip 5.123.33.2 80691 port 15728650 80691 nas_port_type Virtual 80694 username madadi 80694 unique_id port 80694 terminate_cause Lost-Carrier 80694 bytes_out 31237 80694 bytes_in 182546 80694 station_ip 5.120.19.142 80694 port 15728649 80694 nas_port_type Virtual 80694 remote_ip 5.5.5.250 80699 username zamanialireza 80699 unique_id port 80699 terminate_cause User-Request 80699 bytes_out 4007278 80699 bytes_in 33464892 80699 station_ip 5.119.101.56 80699 port 15728642 80699 nas_port_type Virtual 80699 remote_ip 5.5.5.253 80702 username aminvpn 80702 mac 80702 bytes_out 0 80702 bytes_in 0 80702 station_ip 5.120.183.82 80702 port 29 80702 unique_id port 80702 remote_ip 10.8.1.10 80704 username asadi 80704 unique_id port 80704 terminate_cause User-Request 80704 bytes_out 111977 80704 bytes_in 2963052 80704 station_ip 113.203.64.103 80704 port 15728660 80704 nas_port_type Virtual 80704 remote_ip 5.5.5.247 80710 username aminvpn 80710 mac 80710 bytes_out 0 80710 bytes_in 0 80710 station_ip 5.120.183.82 80710 port 13 80710 unique_id port 80710 remote_ip 10.8.0.6 80716 username madadi 80716 unique_id port 80716 terminate_cause Lost-Carrier 80716 bytes_out 56301 80716 bytes_in 236876 80716 station_ip 5.119.208.173 80716 port 15728661 80716 nas_port_type Virtual 80716 remote_ip 5.5.5.243 80724 username forozande 80724 unique_id port 80724 terminate_cause User-Request 80724 bytes_out 53369 80724 bytes_in 371780 80724 station_ip 83.122.203.152 80724 port 15728674 80724 nas_port_type Virtual 80724 remote_ip 5.5.5.238 80727 username ahmadi 80727 unique_id port 80727 terminate_cause User-Request 80727 bytes_out 25429 80727 bytes_in 174666 80727 station_ip 83.123.62.226 80727 port 15728675 80727 nas_port_type Virtual 80727 remote_ip 5.5.5.239 80728 username aminvpn 80728 mac 80728 bytes_out 0 80728 bytes_in 0 80728 station_ip 5.120.183.82 80728 port 13 80728 unique_id port 80728 remote_ip 10.8.0.6 80739 username aminvpn 80739 mac 80739 bytes_out 0 80739 bytes_in 0 80739 station_ip 5.120.183.82 80739 port 13 80739 unique_id port 80739 remote_ip 10.8.0.6 80740 username soleymani 80740 unique_id port 80740 terminate_cause User-Request 80740 bytes_out 0 80740 bytes_in 0 80740 station_ip 5.119.85.214 80740 port 15728687 80740 nas_port_type Virtual 80740 remote_ip 5.5.5.233 80743 username forozande 80743 unique_id port 80743 terminate_cause User-Request 80743 bytes_out 52319 80743 bytes_in 599176 80743 station_ip 37.129.187.99 80743 port 15728690 80743 nas_port_type Virtual 80743 remote_ip 5.5.5.231 80756 username aminvpn 80756 kill_reason Maximum check online fails reached 80756 mac 80756 bytes_out 0 80756 bytes_in 0 80756 station_ip 5.120.183.82 80756 port 13 80756 unique_id port 80767 username forozande 80713 nas_port_type Virtual 80713 remote_ip 5.5.5.253 80718 username mahdavi 80718 unique_id port 80718 terminate_cause User-Request 80718 bytes_out 508053 80718 bytes_in 9646177 80718 station_ip 83.122.75.11 80718 port 15728670 80718 nas_port_type Virtual 80718 remote_ip 5.5.5.241 80720 username madadi 80720 unique_id port 80720 terminate_cause Lost-Carrier 80720 bytes_out 7101 80720 bytes_in 123816 80720 station_ip 5.120.51.35 80720 port 15728669 80720 nas_port_type Virtual 80720 remote_ip 5.5.5.242 80722 username aminvpn 80722 mac 80722 bytes_out 0 80722 bytes_in 0 80722 station_ip 5.120.183.82 80722 port 13 80722 unique_id port 80722 remote_ip 10.8.0.6 80729 username asadi 80729 unique_id port 80729 terminate_cause User-Request 80729 bytes_out 136074 80729 bytes_in 1466451 80729 station_ip 113.203.64.103 80729 port 15728677 80729 nas_port_type Virtual 80729 remote_ip 5.5.5.247 80730 username aminvpn 80730 unique_id port 80730 terminate_cause User-Request 80730 bytes_out 55463 80730 bytes_in 596493 80730 station_ip 37.129.8.234 80730 port 15728678 80730 nas_port_type Virtual 80730 remote_ip 5.5.5.237 80732 username aminvpn 80732 mac 80732 bytes_out 0 80732 bytes_in 0 80732 station_ip 5.120.183.82 80732 port 13 80732 unique_id port 80732 remote_ip 10.8.0.6 80733 username forozande 80733 unique_id port 80733 terminate_cause User-Request 80733 bytes_out 13493 80733 bytes_in 156064 80733 station_ip 83.122.220.40 80733 port 15728680 80733 nas_port_type Virtual 80733 remote_ip 5.5.5.236 80737 username alirezazamani 80737 kill_reason Relative expiration date has reached 80737 unique_id port 80737 bytes_out 0 80737 bytes_in 0 80737 station_ip 37.129.108.90 80737 port 15728684 80737 nas_port_type Virtual 80738 username aminvpn 80738 mac 80738 bytes_out 0 80738 bytes_in 0 80738 station_ip 5.120.183.82 80738 port 13 80738 unique_id port 80738 remote_ip 10.8.0.6 80741 username aminvpn 80741 mac 80741 bytes_out 0 80741 bytes_in 0 80741 station_ip 5.120.183.82 80741 port 29 80741 unique_id port 80741 remote_ip 10.8.1.10 80751 username ahmadipour 80751 unique_id port 80751 terminate_cause Lost-Carrier 80751 bytes_out 452424 80751 bytes_in 10112176 80751 station_ip 113.203.15.183 80751 port 15728695 80751 nas_port_type Virtual 80751 remote_ip 5.5.5.228 80753 username aminvpn 80753 mac 80753 bytes_out 0 80753 bytes_in 0 80753 station_ip 5.120.183.82 80753 port 29 80753 unique_id port 80753 remote_ip 10.8.1.10 80755 username aminvpn 80755 mac 80755 bytes_out 0 80755 bytes_in 0 80755 station_ip 5.120.183.82 80755 port 14 80755 unique_id port 80755 remote_ip 10.8.0.6 80758 username madadi 80758 unique_id port 80758 terminate_cause Lost-Carrier 80758 bytes_out 33827 80758 bytes_in 211988 80758 station_ip 5.119.85.116 80758 port 15728696 80758 nas_port_type Virtual 80758 remote_ip 5.5.5.227 80759 username aminvpn 80759 mac 80759 bytes_out 0 80759 bytes_in 0 80759 station_ip 5.120.183.82 80759 port 14 80759 unique_id port 80759 remote_ip 10.8.0.6 80760 username hamideh 80760 unique_id port 80760 terminate_cause Lost-Carrier 80760 bytes_out 9840 80760 bytes_in 150237 80760 station_ip 5.119.130.82 80760 port 15728699 80760 nas_port_type Virtual 80760 remote_ip 5.5.5.232 80761 username soleymani 80761 unique_id port 80761 terminate_cause Lost-Carrier 80761 bytes_out 584440 80761 bytes_in 837577 80761 station_ip 5.120.85.222 80761 port 15728700 80761 nas_port_type Virtual 80761 remote_ip 5.5.5.225 80769 username shokokian 80769 unique_id port 80723 bytes_in 13084417 80723 station_ip 83.123.62.226 80723 port 15728673 80723 nas_port_type Virtual 80723 remote_ip 5.5.5.239 80736 username alirezazamani 80736 kill_reason Relative expiration date has reached 80736 unique_id port 80736 bytes_out 0 80736 bytes_in 0 80736 station_ip 37.129.108.90 80736 port 15728683 80736 nas_port_type Virtual 80742 username amirhosein 80742 unique_id port 80742 terminate_cause Lost-Carrier 80742 bytes_out 26398 80742 bytes_in 171966 80742 station_ip 5.120.27.163 80742 port 15728685 80742 nas_port_type Virtual 80742 remote_ip 5.5.5.234 80745 username forozande 80745 unique_id port 80745 terminate_cause User-Request 80745 bytes_out 24339 80745 bytes_in 259425 80745 station_ip 37.129.187.99 80745 port 15728693 80745 nas_port_type Virtual 80745 remote_ip 5.5.5.231 80746 username hamideh 80746 unique_id port 80746 terminate_cause Lost-Carrier 80746 bytes_out 140623 80746 bytes_in 800636 80746 station_ip 5.119.130.82 80746 port 15728689 80746 nas_port_type Virtual 80746 remote_ip 5.5.5.232 80748 username aminvpn 80748 mac 80748 bytes_out 0 80748 bytes_in 0 80748 station_ip 5.120.183.82 80748 port 29 80748 unique_id port 80748 remote_ip 10.8.1.10 80749 username aminvpn 80749 mac 80749 bytes_out 0 80749 bytes_in 0 80749 station_ip 5.120.183.82 80749 port 29 80749 unique_id port 80749 remote_ip 10.8.1.10 80752 username soleymani 80752 unique_id port 80752 terminate_cause Lost-Carrier 80752 bytes_out 141407 80752 bytes_in 485360 80752 station_ip 5.120.130.140 80752 port 15728692 80752 nas_port_type Virtual 80752 remote_ip 5.5.5.230 80754 username aminvpn 80754 mac 80754 bytes_out 0 80754 bytes_in 0 80754 station_ip 5.120.183.82 80754 port 13 80754 unique_id port 80754 remote_ip 10.8.0.6 80763 username soleymani 80763 unique_id port 80763 terminate_cause Lost-Carrier 80763 bytes_out 296155 80763 bytes_in 211040 80763 station_ip 5.120.176.57 80763 port 15728701 80763 nas_port_type Virtual 80763 remote_ip 5.5.5.224 80766 username rashidi 80766 kill_reason Relative expiration date has reached 80766 unique_id port 80766 bytes_out 0 80766 bytes_in 0 80766 station_ip 5.119.226.192 80766 port 15728705 80766 nas_port_type Virtual 80776 username shokokian 80776 unique_id port 80776 terminate_cause User-Request 80776 bytes_out 17682 80776 bytes_in 26623 80776 station_ip 83.122.26.152 80776 port 15728720 80776 nas_port_type Virtual 80776 remote_ip 5.5.5.220 80778 username soleymani 80778 unique_id port 80778 terminate_cause Lost-Carrier 80778 bytes_out 70072 80778 bytes_in 436214 80778 station_ip 5.119.66.208 80778 port 15728711 80778 nas_port_type Virtual 80778 remote_ip 5.5.5.221 80783 username shokokian 80783 unique_id port 80783 terminate_cause User-Request 80783 bytes_out 17901 80783 bytes_in 49022 80783 station_ip 83.122.26.152 80783 port 15728725 80783 nas_port_type Virtual 80783 remote_ip 5.5.5.220 80784 username ahmadipour 80784 unique_id port 80784 terminate_cause Lost-Carrier 80784 bytes_out 1778854 80784 bytes_in 42554870 80784 station_ip 113.203.127.147 80784 port 15728706 80784 nas_port_type Virtual 80784 remote_ip 5.5.5.223 80785 username forozande 80785 unique_id port 80785 terminate_cause User-Request 80785 bytes_out 187674 80785 bytes_in 3568171 80785 station_ip 83.122.50.4 80785 port 15728728 80785 nas_port_type Virtual 80785 remote_ip 5.5.5.213 80788 username shahriyar 80788 unique_id port 80788 terminate_cause User-Request 80788 bytes_out 0 80788 bytes_in 0 80788 station_ip 46.249.126.45 80788 port 15728732 80788 nas_port_type Virtual 80788 remote_ip 5.5.5.210 80790 username shokokian 80726 unique_id port 80726 terminate_cause Lost-Carrier 80726 bytes_out 128154 80726 bytes_in 3029149 80726 station_ip 5.119.90.239 80726 port 15728672 80726 nas_port_type Virtual 80726 remote_ip 5.5.5.240 80731 username aminvpn 80731 unique_id port 80731 terminate_cause User-Request 80731 bytes_out 0 80731 bytes_in 0 80731 station_ip 37.129.8.234 80731 port 15728679 80731 nas_port_type Virtual 80731 remote_ip 5.5.5.237 80734 username asadi 80734 unique_id port 80734 terminate_cause User-Request 80734 bytes_out 274684 80734 bytes_in 7447570 80734 station_ip 113.203.64.103 80734 port 15728682 80734 nas_port_type Virtual 80734 remote_ip 5.5.5.247 80735 username aminvpn 80735 mac 80735 bytes_out 0 80735 bytes_in 0 80735 station_ip 5.120.183.82 80735 port 13 80735 unique_id port 80735 remote_ip 10.8.0.6 80744 username soleymani 80744 unique_id port 80744 terminate_cause User-Request 80744 bytes_out 0 80744 bytes_in 0 80744 station_ip 5.120.130.140 80744 port 15728691 80744 nas_port_type Virtual 80744 remote_ip 5.5.5.230 80747 username soleymani 80747 unique_id port 80747 terminate_cause Lost-Carrier 80747 bytes_out 203026 80747 bytes_in 678382 80747 station_ip 5.119.85.214 80747 port 15728688 80747 nas_port_type Virtual 80747 remote_ip 5.5.5.233 80750 username madadi 80750 unique_id port 80750 terminate_cause Lost-Carrier 80750 bytes_out 41525 80750 bytes_in 232942 80750 station_ip 5.119.168.75 80750 port 15728694 80750 nas_port_type Virtual 80750 remote_ip 5.5.5.229 80757 username asadi 80757 unique_id port 80757 terminate_cause User-Request 80757 bytes_out 90337 80757 bytes_in 866936 80757 station_ip 113.203.64.103 80757 port 15728697 80757 nas_port_type Virtual 80757 remote_ip 5.5.5.247 80762 username kamali 80762 unique_id port 80762 terminate_cause User-Request 80762 bytes_out 89890 80762 bytes_in 659794 80762 station_ip 83.122.27.238 80762 port 15728702 80762 nas_port_type Virtual 80762 remote_ip 5.5.5.248 80764 username alirezazamani 80764 kill_reason Relative expiration date has reached 80764 unique_id port 80764 bytes_out 0 80764 bytes_in 0 80764 station_ip 37.129.108.90 80764 port 15728703 80764 nas_port_type Virtual 80765 username rashidi 80765 kill_reason Relative expiration date has reached 80765 unique_id port 80765 bytes_out 0 80765 bytes_in 0 80765 station_ip 5.119.226.192 80765 port 15728704 80765 nas_port_type Virtual 80773 username asadi 80773 unique_id port 80773 terminate_cause User-Request 80773 bytes_out 91109 80773 bytes_in 1268912 80773 station_ip 37.129.184.169 80773 port 15728717 80773 nas_port_type Virtual 80773 remote_ip 5.5.5.217 80780 username shokokian 80780 unique_id port 80780 terminate_cause User-Request 80780 bytes_out 150428 80780 bytes_in 529407 80780 station_ip 83.122.26.152 80780 port 15728723 80780 nas_port_type Virtual 80780 remote_ip 5.5.5.220 80782 username soleymani 80782 unique_id port 80782 terminate_cause Lost-Carrier 80782 bytes_out 43757 80782 bytes_in 199277 80782 station_ip 5.119.210.81 80782 port 15728715 80782 nas_port_type Virtual 80782 remote_ip 5.5.5.218 80791 username madadi 80791 unique_id port 80791 terminate_cause Lost-Carrier 80791 bytes_out 156492 80791 bytes_in 690278 80791 station_ip 5.119.62.71 80791 port 15728731 80791 nas_port_type Virtual 80791 remote_ip 5.5.5.211 80794 username madadi 80794 unique_id port 80794 terminate_cause Lost-Carrier 80794 bytes_out 256700 80794 bytes_in 903398 80794 station_ip 5.120.153.13 80794 port 15728733 80794 nas_port_type Virtual 80794 remote_ip 5.5.5.209 80796 username aminvpn 80796 unique_id port 80796 terminate_cause User-Request 80796 bytes_out 740401 80767 unique_id port 80767 terminate_cause User-Request 80767 bytes_out 0 80767 bytes_in 0 80767 station_ip 83.122.14.59 80767 port 15728709 80767 nas_port_type Virtual 80767 remote_ip 5.5.5.222 80768 username forozande 80768 unique_id port 80768 terminate_cause User-Request 80768 bytes_out 0 80768 bytes_in 0 80768 station_ip 83.122.14.59 80768 port 15728710 80768 nas_port_type Virtual 80768 remote_ip 5.5.5.222 80771 username forozande 80771 unique_id port 80771 terminate_cause User-Request 80771 bytes_out 26865 80771 bytes_in 54185 80771 station_ip 37.129.65.251 80771 port 15728714 80771 nas_port_type Virtual 80771 remote_ip 5.5.5.219 80772 username shokokian 80772 unique_id port 80772 terminate_cause User-Request 80772 bytes_out 4961 80772 bytes_in 14479 80772 station_ip 83.122.26.152 80772 port 15728716 80772 nas_port_type Virtual 80772 remote_ip 5.5.5.220 80779 username forozande 80779 unique_id port 80779 terminate_cause User-Request 80779 bytes_out 9591 80779 bytes_in 20343 80779 station_ip 83.122.98.126 80779 port 15728722 80779 nas_port_type Virtual 80779 remote_ip 5.5.5.216 80781 username asadi 80781 unique_id port 80781 terminate_cause User-Request 80781 bytes_out 190748 80781 bytes_in 1872019 80781 station_ip 37.129.184.169 80781 port 15728724 80781 nas_port_type Virtual 80781 remote_ip 5.5.5.217 80786 username soleymani 80786 unique_id port 80786 terminate_cause User-Request 80786 bytes_out 0 80786 bytes_in 0 80786 station_ip 5.119.149.215 80786 port 15728729 80786 nas_port_type Virtual 80786 remote_ip 5.5.5.212 80787 username soleymani 80787 unique_id port 80787 terminate_cause Lost-Carrier 80787 bytes_out 492476 80787 bytes_in 559075 80787 station_ip 5.119.82.168 80787 port 15728727 80787 nas_port_type Virtual 80787 remote_ip 5.5.5.214 80789 username soleymani 80789 unique_id port 80789 terminate_cause Lost-Carrier 80789 bytes_out 106202 80789 bytes_in 819746 80789 station_ip 5.119.149.215 80789 port 15728730 80789 nas_port_type Virtual 80789 remote_ip 5.5.5.212 80793 username soleymani 80793 unique_id port 80793 terminate_cause Lost-Carrier 80793 bytes_out 353858 80793 bytes_in 474552 80793 station_ip 5.119.81.130 80793 port 15728737 80793 nas_port_type Virtual 80793 remote_ip 5.5.5.206 80799 username arabpour 80799 unique_id port 80799 terminate_cause User-Request 80799 bytes_out 206375 80799 bytes_in 4296335 80799 station_ip 37.129.146.190 80799 port 15728744 80799 nas_port_type Virtual 80799 remote_ip 5.5.5.199 80800 username soleymani 80800 unique_id port 80800 terminate_cause User-Request 80800 bytes_out 22006 80800 bytes_in 36554 80800 station_ip 5.120.81.104 80800 port 15728745 80800 nas_port_type Virtual 80800 remote_ip 5.5.5.198 80803 username soleymani 80803 unique_id port 80803 terminate_cause User-Request 80803 bytes_out 0 80803 bytes_in 0 80803 station_ip 5.120.81.104 80803 port 15728747 80803 nas_port_type Virtual 80803 remote_ip 5.5.5.198 80807 username aminvpn 80807 mac 80807 bytes_out 0 80807 bytes_in 0 80807 station_ip 83.123.102.184 80807 port 14 80807 unique_id port 80807 remote_ip 10.8.0.6 80808 username avaanna 80808 unique_id port 80808 terminate_cause User-Request 80808 bytes_out 4885479 80808 bytes_in 145829 80808 station_ip 83.123.202.249 80808 port 15728750 80808 nas_port_type Virtual 80808 remote_ip 5.5.5.197 80809 username avaanna 80809 unique_id port 80809 terminate_cause User-Request 80809 bytes_out 5896418 80809 bytes_in 1196027 80809 station_ip 83.123.202.249 80809 port 15728752 80809 nas_port_type Virtual 80809 remote_ip 5.5.5.197 80812 username aminvpn 80812 unique_id port 80769 terminate_cause User-Request 80769 bytes_out 24342 80769 bytes_in 57234 80769 station_ip 83.122.26.152 80769 port 15728712 80769 nas_port_type Virtual 80769 remote_ip 5.5.5.220 80770 username forozande 80770 unique_id port 80770 terminate_cause User-Request 80770 bytes_out 69576 80770 bytes_in 970299 80770 station_ip 37.129.65.251 80770 port 15728713 80770 nas_port_type Virtual 80770 remote_ip 5.5.5.219 80774 username forozande 80774 unique_id port 80774 terminate_cause User-Request 80774 bytes_out 8108 80774 bytes_in 38324 80774 station_ip 37.129.65.251 80774 port 15728718 80774 nas_port_type Virtual 80774 remote_ip 5.5.5.219 80775 username shokokian 80775 unique_id port 80775 terminate_cause User-Request 80775 bytes_out 0 80775 bytes_in 0 80775 station_ip 83.122.26.152 80775 port 15728719 80775 nas_port_type Virtual 80775 remote_ip 5.5.5.220 80777 username forozande 80777 unique_id port 80777 terminate_cause User-Request 80777 bytes_out 15212 80777 bytes_in 37174 80777 station_ip 83.122.98.126 80777 port 15728721 80777 nas_port_type Virtual 80777 remote_ip 5.5.5.216 80795 username soleymani 80795 unique_id port 80795 terminate_cause Lost-Carrier 80795 bytes_out 148668 80795 bytes_in 1283649 80795 station_ip 5.120.10.71 80795 port 15728739 80795 nas_port_type Virtual 80795 remote_ip 5.5.5.204 80802 username soleymani 80802 unique_id port 80802 terminate_cause User-Request 80802 bytes_out 0 80802 bytes_in 0 80802 station_ip 5.120.81.104 80802 port 15728746 80802 nas_port_type Virtual 80802 remote_ip 5.5.5.198 80805 username avaanna 80805 unique_id port 80805 terminate_cause User-Request 80805 bytes_out 50418 80805 bytes_in 292782 80805 station_ip 83.123.202.249 80805 port 15728749 80805 nas_port_type Virtual 80805 remote_ip 5.5.5.197 80810 username soleymani 80810 unique_id port 80810 terminate_cause Lost-Carrier 80810 bytes_out 140039 80810 bytes_in 418182 80810 station_ip 5.120.81.104 80810 port 15728748 80810 nas_port_type Virtual 80810 remote_ip 5.5.5.198 80815 username madadi 80815 unique_id port 80815 terminate_cause Lost-Carrier 80815 bytes_out 847823 80815 bytes_in 2098377 80815 station_ip 5.120.153.127 80815 port 15728741 80815 nas_port_type Virtual 80815 remote_ip 5.5.5.202 80833 username zoha 80833 unique_id port 80833 terminate_cause Lost-Carrier 80833 bytes_out 568 80833 bytes_in 120550 80833 station_ip 5.120.68.143 80833 port 15728773 80833 nas_port_type Virtual 80833 remote_ip 5.5.5.190 80835 username zamanialireza 80835 unique_id port 80835 terminate_cause User-Request 80835 bytes_out 73950 80835 bytes_in 113243 80835 station_ip 83.123.211.157 80835 port 15728778 80835 nas_port_type Virtual 80835 remote_ip 5.5.5.181 80838 username zamanialireza 80838 unique_id port 80838 terminate_cause User-Request 80838 bytes_out 32386 80838 bytes_in 36041 80838 station_ip 83.123.211.157 80838 port 15728779 80838 nas_port_type Virtual 80838 remote_ip 5.5.5.181 80839 username zamanialireza 80839 unique_id port 80839 terminate_cause User-Request 80839 bytes_out 58538 80839 bytes_in 255237 80839 station_ip 83.123.211.157 80839 port 15728780 80839 nas_port_type Virtual 80839 remote_ip 5.5.5.181 80849 username asadi 80849 unique_id port 80849 terminate_cause User-Request 80849 bytes_out 589878 80849 bytes_in 17788208 80849 station_ip 37.129.184.169 80849 port 15728788 80849 nas_port_type Virtual 80849 remote_ip 5.5.5.217 80852 username forozande 80852 unique_id port 80852 terminate_cause User-Request 80852 bytes_out 143043 80852 bytes_in 275137 80852 station_ip 83.123.120.83 80852 port 15728791 80852 nas_port_type Virtual 80852 remote_ip 5.5.5.178 80856 username aminvpn 80790 unique_id port 80790 terminate_cause User-Request 80790 bytes_out 240760 80790 bytes_in 1107451 80790 station_ip 83.122.26.152 80790 port 15728736 80790 nas_port_type Virtual 80790 remote_ip 5.5.5.220 80792 username aminvpn 80792 unique_id port 80792 terminate_cause Lost-Carrier 80792 bytes_out 2386327 80792 bytes_in 33980989 80792 station_ip 5.119.144.236 80792 port 15728735 80792 nas_port_type Virtual 80792 remote_ip 5.5.5.207 80797 username soleymani 80797 unique_id port 80797 terminate_cause Lost-Carrier 80797 bytes_out 158138 80797 bytes_in 515880 80797 station_ip 5.119.109.199 80797 port 15728742 80797 nas_port_type Virtual 80797 remote_ip 5.5.5.201 80804 username soleymani 80804 unique_id port 80804 terminate_cause Lost-Carrier 80804 bytes_out 150819 80804 bytes_in 520203 80804 station_ip 5.119.229.67 80804 port 15728743 80804 nas_port_type Virtual 80804 remote_ip 5.5.5.200 80806 username mahdi 80806 unique_id port 80806 terminate_cause Lost-Carrier 80806 bytes_out 3028800 80806 bytes_in 16187577 80806 station_ip 5.119.186.227 80806 port 15728726 80806 nas_port_type Virtual 80806 remote_ip 5.5.5.215 80813 username ahmadipour 80813 unique_id port 80813 terminate_cause Lost-Carrier 80813 bytes_out 420015 80813 bytes_in 7821617 80813 station_ip 113.203.74.139 80813 port 15728754 80813 nas_port_type Virtual 80813 remote_ip 5.5.5.196 80814 username shokokian 80814 unique_id port 80814 terminate_cause User-Request 80814 bytes_out 89810 80814 bytes_in 530346 80814 station_ip 31.56.223.68 80814 port 15728755 80814 nas_port_type Virtual 80814 remote_ip 5.5.5.195 80818 username forozande 80818 unique_id port 80818 terminate_cause User-Request 80818 bytes_out 392413 80818 bytes_in 4949513 80818 station_ip 83.123.158.255 80818 port 15728758 80818 nas_port_type Virtual 80818 remote_ip 5.5.5.192 80826 username zoha 80826 unique_id port 80826 terminate_cause Lost-Carrier 80826 bytes_out 547688 80826 bytes_in 3365275 80826 station_ip 5.120.68.143 80826 port 15728762 80826 nas_port_type Virtual 80826 remote_ip 5.5.5.190 80827 username madadi 80827 unique_id port 80827 terminate_cause Lost-Carrier 80827 bytes_out 85369 80827 bytes_in 300671 80827 station_ip 5.119.215.96 80827 port 15728768 80827 nas_port_type Virtual 80827 remote_ip 5.5.5.189 80840 username asadi 80840 unique_id port 80840 terminate_cause User-Request 80840 bytes_out 107962 80840 bytes_in 1795350 80840 station_ip 37.129.184.169 80840 port 15728781 80840 nas_port_type Virtual 80840 remote_ip 5.5.5.217 80843 username asadi 80843 unique_id port 80843 terminate_cause User-Request 80843 bytes_out 296883 80843 bytes_in 6054716 80843 station_ip 37.129.184.169 80843 port 15728784 80843 nas_port_type Virtual 80843 remote_ip 5.5.5.217 80847 username asadi 80847 unique_id port 80847 terminate_cause User-Request 80847 bytes_out 274514 80847 bytes_in 5971427 80847 station_ip 37.129.184.169 80847 port 15728787 80847 nas_port_type Virtual 80847 remote_ip 5.5.5.217 80853 username ebrahimi 80853 unique_id port 80853 terminate_cause User-Request 80853 bytes_out 0 80853 bytes_in 0 80853 station_ip 5.120.191.105 80853 port 15728793 80853 nas_port_type Virtual 80853 remote_ip 5.5.5.177 80861 username soleymani 80861 unique_id port 80861 terminate_cause Lost-Carrier 80861 bytes_out 79934 80861 bytes_in 398070 80861 station_ip 5.120.142.173 80861 port 15728798 80861 nas_port_type Virtual 80861 remote_ip 5.5.5.174 80870 username soleymani 80870 unique_id port 80870 terminate_cause Lost-Carrier 80870 bytes_out 43865 80870 bytes_in 199082 80870 station_ip 5.119.32.87 80870 port 15728810 80870 nas_port_type Virtual 80796 bytes_in 3083458 80796 station_ip 5.233.74.27 80796 port 15728734 80796 nas_port_type Virtual 80796 remote_ip 5.5.5.208 80798 username amirhosein 80798 unique_id port 80798 terminate_cause User-Request 80798 bytes_out 4431525 80798 bytes_in 105026042 80798 station_ip 5.119.220.147 80798 port 15728738 80798 nas_port_type Virtual 80798 remote_ip 5.5.5.205 80801 username caferibar 80801 unique_id port 80801 terminate_cause Lost-Carrier 80801 bytes_out 13795586 80801 bytes_in 225620491 80801 station_ip 5.119.18.43 80801 port 15728681 80801 nas_port_type Virtual 80801 remote_ip 5.5.5.235 80811 username amir 80811 unique_id port 80811 terminate_cause Lost-Carrier 80811 bytes_out 12434888 80811 bytes_in 102111251 80811 station_ip 46.225.213.63 80811 port 15728698 80811 nas_port_type Virtual 80811 remote_ip 5.5.5.226 80816 username amirhosein 80816 unique_id port 80816 terminate_cause User-Request 80816 bytes_out 373918 80816 bytes_in 833322 80816 station_ip 5.119.220.147 80816 port 15728751 80816 nas_port_type Virtual 80816 remote_ip 5.5.5.205 80817 username ahmadi 80817 unique_id port 80817 terminate_cause User-Request 80817 bytes_out 109583 80817 bytes_in 879537 80817 station_ip 83.123.87.246 80817 port 15728757 80817 nas_port_type Virtual 80817 remote_ip 5.5.5.193 80819 username soleymani 80819 unique_id port 80819 terminate_cause Lost-Carrier 80819 bytes_out 148222 80819 bytes_in 381974 80819 station_ip 5.120.17.211 80819 port 15728756 80819 nas_port_type Virtual 80819 remote_ip 5.5.5.194 80820 username aminvpn 80820 unique_id port 80820 terminate_cause Lost-Carrier 80820 bytes_out 7330340 80820 bytes_in 227616576 80820 station_ip 5.119.30.76 80820 port 15728740 80820 nas_port_type Virtual 80820 remote_ip 5.5.5.203 80823 username aminvpn 80823 unique_id port 80823 terminate_cause User-Request 80823 bytes_out 841504 80823 bytes_in 34574778 80823 station_ip 5.119.30.76 80823 port 15728760 80823 nas_port_type Virtual 80823 remote_ip 5.5.5.203 80824 username alirezazamani 80824 kill_reason Relative expiration date has reached 80824 unique_id port 80824 bytes_out 0 80824 bytes_in 0 80824 station_ip 78.39.157.2 80824 port 15728765 80824 nas_port_type Virtual 80825 username avaanna 80825 unique_id port 80825 terminate_cause User-Request 80825 bytes_out 2626003 80825 bytes_in 207839 80825 station_ip 83.123.202.249 80825 port 15728767 80825 nas_port_type Virtual 80825 remote_ip 5.5.5.197 80828 username aminvpn 80828 unique_id port 80828 terminate_cause User-Request 80828 bytes_out 65012 80828 bytes_in 416844 80828 station_ip 83.123.102.184 80828 port 15728771 80828 nas_port_type Virtual 80828 remote_ip 5.5.5.186 80829 username aminvpn 80829 unique_id port 80829 terminate_cause User-Request 80829 bytes_out 61783 80829 bytes_in 136677 80829 station_ip 83.123.102.184 80829 port 15728775 80829 nas_port_type Virtual 80829 remote_ip 5.5.5.186 80830 username caferibar 80830 unique_id port 80830 terminate_cause User-Request 80830 bytes_out 3456280 80830 bytes_in 124549896 80830 station_ip 151.238.225.203 80830 port 15728769 80830 nas_port_type Virtual 80830 remote_ip 5.5.5.188 80836 username zoha 80836 unique_id port 80836 terminate_cause Lost-Carrier 80836 bytes_out 809828 80836 bytes_in 7702658 80836 station_ip 5.120.67.20 80836 port 15728776 80836 nas_port_type Virtual 80836 remote_ip 5.5.5.183 80837 username aminvpn 80837 kill_reason Another user logged on this global unique id 80837 mac 80837 bytes_out 0 80837 bytes_in 0 80837 station_ip 5.119.30.76 80837 port 14 80837 unique_id port 80837 remote_ip 10.8.0.6 80841 username aminvpn 80841 kill_reason Another user logged on this global unique id 80841 mac 80812 terminate_cause User-Request 80812 bytes_out 235070 80812 bytes_in 1280705 80812 station_ip 5.233.74.27 80812 port 15728753 80812 nas_port_type Virtual 80812 remote_ip 5.5.5.208 80821 username aminvpn 80821 unique_id port 80821 terminate_cause User-Request 80821 bytes_out 156508 80821 bytes_in 1609029 80821 station_ip 5.233.74.27 80821 port 15728761 80821 nas_port_type Virtual 80821 remote_ip 5.5.5.208 80822 username madadi 80822 unique_id port 80822 terminate_cause Lost-Carrier 80822 bytes_out 34814 80822 bytes_in 190228 80822 station_ip 5.120.143.246 80822 port 15728759 80822 nas_port_type Virtual 80822 remote_ip 5.5.5.191 80831 username soleymani 80831 unique_id port 80831 terminate_cause Lost-Carrier 80831 bytes_out 198 80831 bytes_in 60564 80831 station_ip 5.119.32.152 80831 port 15728772 80831 nas_port_type Virtual 80831 remote_ip 5.5.5.185 80832 username alinezhad 80832 unique_id port 80832 terminate_cause User-Request 80832 bytes_out 44588 80832 bytes_in 386899 80832 station_ip 5.202.16.246 80832 port 15728777 80832 nas_port_type Virtual 80832 remote_ip 5.5.5.182 80834 username soleymani 80834 unique_id port 80834 terminate_cause Lost-Carrier 80834 bytes_out 162961 80834 bytes_in 409795 80834 station_ip 5.120.161.106 80834 port 15728774 80834 nas_port_type Virtual 80834 remote_ip 5.5.5.184 80844 username hamideh 80844 unique_id port 80844 terminate_cause Lost-Carrier 80844 bytes_out 86061 80844 bytes_in 381834 80844 station_ip 5.119.130.82 80844 port 15728782 80844 nas_port_type Virtual 80844 remote_ip 5.5.5.232 80848 username aminvpn 80848 kill_reason Another user logged on this global unique id 80848 mac 80848 bytes_out 0 80848 bytes_in 0 80848 station_ip 5.119.30.76 80848 port 14 80848 unique_id port 80850 username alirezazamani 80850 kill_reason Relative expiration date has reached 80850 unique_id port 80850 bytes_out 0 80850 bytes_in 0 80850 station_ip 83.123.85.7 80850 port 15728789 80850 nas_port_type Virtual 80851 username zoha 80851 unique_id port 80851 terminate_cause User-Request 80851 bytes_out 0 80851 bytes_in 0 80851 station_ip 5.120.67.20 80851 port 15728792 80851 nas_port_type Virtual 80851 remote_ip 5.5.5.183 80854 username aminvpn 80854 kill_reason Another user logged on this global unique id 80854 mac 80854 bytes_out 0 80854 bytes_in 0 80854 station_ip 5.119.30.76 80854 port 14 80854 unique_id port 80855 username asadi 80855 unique_id port 80855 terminate_cause User-Request 80855 bytes_out 89083 80855 bytes_in 1528821 80855 station_ip 37.129.184.169 80855 port 15728794 80855 nas_port_type Virtual 80855 remote_ip 5.5.5.217 80857 username madadi 80857 unique_id port 80857 terminate_cause Lost-Carrier 80857 bytes_out 870913 80857 bytes_in 5265152 80857 station_ip 5.119.3.10 80857 port 15728770 80857 nas_port_type Virtual 80857 remote_ip 5.5.5.187 80859 username soleymani 80859 unique_id port 80859 terminate_cause Lost-Carrier 80859 bytes_out 90864 80859 bytes_in 474008 80859 station_ip 5.119.229.86 80859 port 15728797 80859 nas_port_type Virtual 80859 remote_ip 5.5.5.175 80866 username ahmadi 80866 unique_id port 80866 terminate_cause Lost-Carrier 80866 bytes_out 3153285 80866 bytes_in 54452243 80866 station_ip 83.123.26.250 80866 port 15728803 80866 nas_port_type Virtual 80866 remote_ip 5.5.5.173 80874 username zamanialireza 80874 unique_id port 80874 terminate_cause Lost-Carrier 80874 bytes_out 977431 80874 bytes_in 17828990 80874 station_ip 94.183.213.166 80874 port 15728812 80874 nas_port_type Virtual 80874 remote_ip 5.5.5.167 80877 username zoha 80877 unique_id port 80877 terminate_cause User-Request 80877 bytes_out 531890 80841 bytes_out 0 80841 bytes_in 0 80841 station_ip 5.119.30.76 80841 port 14 80841 unique_id port 80842 username asadi 80842 unique_id port 80842 terminate_cause User-Request 80842 bytes_out 67307 80842 bytes_in 434911 80842 station_ip 37.129.184.169 80842 port 15728783 80842 nas_port_type Virtual 80842 remote_ip 5.5.5.217 80845 username aminvpn 80845 kill_reason Another user logged on this global unique id 80845 mac 80845 bytes_out 0 80845 bytes_in 0 80845 station_ip 5.119.30.76 80845 port 14 80845 unique_id port 80846 username asadi 80846 unique_id port 80846 terminate_cause User-Request 80846 bytes_out 814851 80846 bytes_in 23235495 80846 station_ip 37.129.184.169 80846 port 15728785 80846 nas_port_type Virtual 80846 remote_ip 5.5.5.217 80858 username madadi 80858 unique_id port 80858 terminate_cause Lost-Carrier 80858 bytes_out 13550 80858 bytes_in 126355 80858 station_ip 5.119.49.130 80858 port 15728796 80858 nas_port_type Virtual 80858 remote_ip 5.5.5.176 80864 username asadi 80864 unique_id port 80864 terminate_cause User-Request 80864 bytes_out 0 80864 bytes_in 0 80864 station_ip 37.129.184.169 80864 port 15728804 80864 nas_port_type Virtual 80864 remote_ip 5.5.5.217 80865 username forozande 80865 unique_id port 80865 terminate_cause User-Request 80865 bytes_out 76377 80865 bytes_in 263963 80865 station_ip 83.122.200.66 80865 port 15728805 80865 nas_port_type Virtual 80865 remote_ip 5.5.5.172 80867 username shahnaz 80867 unique_id port 80867 terminate_cause Lost-Carrier 80867 bytes_out 416064 80867 bytes_in 3617969 80867 station_ip 5.123.75.204 80867 port 15728786 80867 nas_port_type Virtual 80867 remote_ip 5.5.5.180 80875 username madadi 80875 unique_id port 80875 terminate_cause Lost-Carrier 80875 bytes_out 406888 80875 bytes_in 924974 80875 station_ip 5.119.118.165 80875 port 15728806 80875 nas_port_type Virtual 80875 remote_ip 5.5.5.171 80878 username soleymani 80878 unique_id port 80878 terminate_cause Lost-Carrier 80878 bytes_out 127963 80878 bytes_in 780442 80878 station_ip 5.120.19.201 80878 port 15728818 80878 nas_port_type Virtual 80878 remote_ip 5.5.5.163 80880 username aminvpn 80880 unique_id port 80880 terminate_cause Lost-Carrier 80880 bytes_out 293703 80880 bytes_in 3522237 80880 station_ip 5.120.59.202 80880 port 15728823 80880 nas_port_type Virtual 80880 remote_ip 5.5.5.160 80883 username zoha 80883 unique_id port 80883 terminate_cause User-Request 80883 bytes_out 477664 80883 bytes_in 2902864 80883 station_ip 5.120.67.20 80883 port 15728826 80883 nas_port_type Virtual 80883 remote_ip 5.5.5.158 80885 username zamanialireza 80885 unique_id port 80885 terminate_cause User-Request 80885 bytes_out 564209 80885 bytes_in 9701488 80885 station_ip 83.123.32.65 80885 port 15728830 80885 nas_port_type Virtual 80885 remote_ip 5.5.5.156 80890 username soleymani 80890 kill_reason Maximum number of concurrent logins reached 80890 unique_id port 80890 bytes_out 0 80890 bytes_in 0 80890 station_ip 5.119.241.161 80890 port 15728835 80890 nas_port_type Virtual 80896 username soleymani 80896 kill_reason Maximum number of concurrent logins reached 80896 unique_id port 80896 bytes_out 0 80896 bytes_in 0 80896 station_ip 5.120.43.128 80896 port 15728840 80896 nas_port_type Virtual 80898 username soleymani 80898 kill_reason Maximum number of concurrent logins reached 80898 unique_id port 80898 bytes_out 0 80898 bytes_in 0 80898 station_ip 5.120.43.128 80898 port 15728842 80898 nas_port_type Virtual 80908 username soleymani 80908 unique_id port 80908 terminate_cause NAS-Error 80908 bytes_out 0 80908 bytes_in 380 80908 station_ip 5.120.34.157 80908 port 15728845 80856 mac 80856 bytes_out 0 80856 bytes_in 0 80856 station_ip 5.119.30.76 80856 port 14 80856 unique_id port 80860 username zoha 80860 unique_id port 80860 terminate_cause Lost-Carrier 80860 bytes_out 719864 80860 bytes_in 4435075 80860 station_ip 5.120.67.20 80860 port 15728795 80860 nas_port_type Virtual 80860 remote_ip 5.5.5.183 80862 username zoha 80862 unique_id port 80862 terminate_cause User-Request 80862 bytes_out 403879 80862 bytes_in 2596761 80862 station_ip 5.120.67.20 80862 port 15728800 80862 nas_port_type Virtual 80862 remote_ip 5.5.5.183 80863 username mahbobeh 80863 unique_id port 80863 terminate_cause Lost-Carrier 80863 bytes_out 187023 80863 bytes_in 3641226 80863 station_ip 83.123.192.73 80863 port 15728790 80863 nas_port_type Virtual 80863 remote_ip 5.5.5.179 80868 username asadi 80868 unique_id port 80868 terminate_cause User-Request 80868 bytes_out 34099 80868 bytes_in 41189 80868 station_ip 37.129.184.169 80868 port 15728809 80868 nas_port_type Virtual 80868 remote_ip 5.5.5.217 80869 username hamideh 80869 unique_id port 80869 terminate_cause Lost-Carrier 80869 bytes_out 145720 80869 bytes_in 592451 80869 station_ip 5.119.130.82 80869 port 15728808 80869 nas_port_type Virtual 80869 remote_ip 5.5.5.232 80873 username caferibar 80873 unique_id port 80873 terminate_cause Lost-Carrier 80873 bytes_out 1714612 80873 bytes_in 37907837 80873 station_ip 5.119.77.118 80873 port 15728807 80873 nas_port_type Virtual 80873 remote_ip 5.5.5.170 80882 username asadi 80882 unique_id port 80882 terminate_cause User-Request 80882 bytes_out 52152 80882 bytes_in 124941 80882 station_ip 37.129.184.169 80882 port 15728828 80882 nas_port_type Virtual 80882 remote_ip 5.5.5.217 80887 username hamideh 80887 unique_id port 80887 terminate_cause Lost-Carrier 80887 bytes_out 68557 80887 bytes_in 271433 80887 station_ip 5.119.130.82 80887 port 15728827 80887 nas_port_type Virtual 80887 remote_ip 5.5.5.232 80889 username soleymani 80889 kill_reason Maximum number of concurrent logins reached 80889 unique_id port 80889 bytes_out 0 80889 bytes_in 0 80889 station_ip 5.119.241.161 80889 port 15728834 80889 nas_port_type Virtual 80891 username amirhosein 80891 unique_id port 80891 terminate_cause Lost-Carrier 80891 bytes_out 2428198 80891 bytes_in 59926577 80891 station_ip 5.119.220.147 80891 port 15728814 80891 nas_port_type Virtual 80891 remote_ip 5.5.5.205 80893 username soleymani 80893 kill_reason Maximum number of concurrent logins reached 80893 unique_id port 80893 bytes_out 0 80893 bytes_in 0 80893 station_ip 5.120.43.128 80893 port 15728837 80893 nas_port_type Virtual 80895 username soleymani 80895 kill_reason Maximum number of concurrent logins reached 80895 unique_id port 80895 bytes_out 0 80895 bytes_in 0 80895 station_ip 5.120.43.128 80895 port 15728839 80895 nas_port_type Virtual 80902 username soleymani 80902 kill_reason Maximum number of concurrent logins reached 80902 unique_id port 80902 bytes_out 0 80902 bytes_in 0 80902 station_ip 5.120.80.14 80902 port 15728848 80902 nas_port_type Virtual 80904 username soleymani 80904 kill_reason Maximum number of concurrent logins reached 80904 unique_id port 80904 bytes_out 0 80904 bytes_in 0 80904 station_ip 5.120.80.14 80904 port 15728850 80904 nas_port_type Virtual 80911 username kamali 80911 unique_id port 80911 terminate_cause Lost-Carrier 80911 bytes_out 2735594 80911 bytes_in 43751812 80911 station_ip 5.202.62.78 80911 port 15728822 80911 nas_port_type Virtual 80911 remote_ip 5.5.5.161 80912 username zoha 80912 unique_id port 80912 terminate_cause User-Request 80912 bytes_out 747378 80912 bytes_in 10968874 80912 station_ip 5.119.142.76 80870 remote_ip 5.5.5.169 80871 username soleymani 80871 unique_id port 80871 terminate_cause Lost-Carrier 80871 bytes_out 15666 80871 bytes_in 162452 80871 station_ip 5.120.78.200 80871 port 15728811 80871 nas_port_type Virtual 80871 remote_ip 5.5.5.168 80872 username zoha 80872 unique_id port 80872 terminate_cause Lost-Carrier 80872 bytes_out 1104447 80872 bytes_in 7011295 80872 station_ip 5.120.67.20 80872 port 15728802 80872 nas_port_type Virtual 80872 remote_ip 5.5.5.183 80876 username soleymani 80876 unique_id port 80876 terminate_cause Lost-Carrier 80876 bytes_out 133513 80876 bytes_in 1481335 80876 station_ip 5.120.166.73 80876 port 15728815 80876 nas_port_type Virtual 80876 remote_ip 5.5.5.165 80879 username alirezazamani 80879 kill_reason Relative expiration date has reached 80879 unique_id port 80879 bytes_out 0 80879 bytes_in 0 80879 station_ip 5.119.63.206 80879 port 15728825 80879 nas_port_type Virtual 80884 username caferibar 80884 unique_id port 80884 terminate_cause Lost-Carrier 80884 bytes_out 1044433 80884 bytes_in 3290835 80884 station_ip 5.120.109.237 80884 port 15728817 80884 nas_port_type Virtual 80884 remote_ip 5.5.5.164 80886 username madadi 80886 unique_id port 80886 terminate_cause Lost-Carrier 80886 bytes_out 380584 80886 bytes_in 6425190 80886 station_ip 5.120.73.38 80886 port 15728824 80886 nas_port_type Virtual 80886 remote_ip 5.5.5.159 80897 username soleymani 80897 kill_reason Maximum number of concurrent logins reached 80897 unique_id port 80897 bytes_out 0 80897 bytes_in 0 80897 station_ip 5.120.43.128 80897 port 15728841 80897 nas_port_type Virtual 80899 username soleymani 80899 kill_reason Maximum number of concurrent logins reached 80899 unique_id port 80899 bytes_out 0 80899 bytes_in 0 80899 station_ip 5.120.43.128 80899 port 15728843 80899 nas_port_type Virtual 80901 username soleymani 80901 kill_reason Maximum number of concurrent logins reached 80901 unique_id port 80901 bytes_out 0 80901 bytes_in 0 80901 station_ip 5.120.80.14 80901 port 15728847 80901 nas_port_type Virtual 80906 username soleymani 80906 kill_reason Maximum number of concurrent logins reached 80906 unique_id port 80906 bytes_out 0 80906 bytes_in 0 80906 station_ip 5.120.80.14 80906 port 15728852 80906 nas_port_type Virtual 80909 username soleymani 80909 unique_id port 80909 terminate_cause Lost-Carrier 80909 bytes_out 98985 80909 bytes_in 204600 80909 station_ip 5.119.22.225 80909 port 15728833 80909 nas_port_type Virtual 80909 remote_ip 5.5.5.154 80910 username reza 80910 unique_id port 80910 terminate_cause User-Request 80910 bytes_out 54339 80910 bytes_in 945799 80910 station_ip 83.122.118.203 80910 port 15728846 80910 nas_port_type Virtual 80910 remote_ip 5.5.5.151 80914 username shahnaz 80914 unique_id port 80914 terminate_cause Lost-Carrier 80914 bytes_out 2304487 80914 bytes_in 54967151 80914 station_ip 5.123.75.204 80914 port 15728819 80914 nas_port_type Virtual 80914 remote_ip 5.5.5.180 80917 username alirezazamani 80917 kill_reason Relative expiration date has reached 80917 unique_id port 80917 bytes_out 0 80917 bytes_in 0 80917 station_ip 5.119.30.168 80917 port 15728864 80917 nas_port_type Virtual 80924 username madadi 80924 unique_id port 80924 terminate_cause User-Request 80924 bytes_out 199600 80924 bytes_in 616994 80924 station_ip 5.120.70.181 80924 port 15728857 80924 nas_port_type Virtual 80924 remote_ip 5.5.5.149 80927 username zamanialireza 80927 unique_id port 80927 terminate_cause Lost-Carrier 80927 bytes_out 11150 80927 bytes_in 162145 80927 station_ip 94.183.213.166 80927 port 15728868 80927 nas_port_type Virtual 80927 remote_ip 5.5.5.166 80930 username avaanna 80930 unique_id port 80877 bytes_in 2762679 80877 station_ip 5.120.67.20 80877 port 15728816 80877 nas_port_type Virtual 80877 remote_ip 5.5.5.183 80881 username zoha 80881 unique_id port 80881 terminate_cause Lost-Carrier 80881 bytes_out 246606 80881 bytes_in 1560202 80881 station_ip 5.120.67.20 80881 port 15728821 80881 nas_port_type Virtual 80881 remote_ip 5.5.5.183 80888 username hamideh 80888 unique_id port 80888 terminate_cause Lost-Carrier 80888 bytes_out 25813 80888 bytes_in 139451 80888 station_ip 5.119.130.82 80888 port 15728831 80888 nas_port_type Virtual 80888 remote_ip 5.5.5.155 80892 username soleymani 80892 kill_reason Maximum number of concurrent logins reached 80892 unique_id port 80892 bytes_out 0 80892 bytes_in 0 80892 station_ip 5.120.43.128 80892 port 15728836 80892 nas_port_type Virtual 80894 username soleymani 80894 kill_reason Maximum number of concurrent logins reached 80894 unique_id port 80894 bytes_out 0 80894 bytes_in 0 80894 station_ip 5.120.43.128 80894 port 15728838 80894 nas_port_type Virtual 80900 username soleymani 80900 unique_id port 80900 terminate_cause Lost-Carrier 80900 bytes_out 224625 80900 bytes_in 1255522 80900 station_ip 5.120.134.45 80900 port 15728829 80900 nas_port_type Virtual 80900 remote_ip 5.5.5.157 80903 username soleymani 80903 kill_reason Maximum number of concurrent logins reached 80903 unique_id port 80903 bytes_out 0 80903 bytes_in 0 80903 station_ip 5.120.80.14 80903 port 15728849 80903 nas_port_type Virtual 80905 username soleymani 80905 kill_reason Maximum number of concurrent logins reached 80905 unique_id port 80905 bytes_out 0 80905 bytes_in 0 80905 station_ip 5.120.80.14 80905 port 15728851 80905 nas_port_type Virtual 80907 username zoha 80907 unique_id port 80907 terminate_cause Lost-Carrier 80907 bytes_out 526581 80907 bytes_in 4622495 80907 station_ip 5.120.67.20 80907 port 15728832 80907 nas_port_type Virtual 80907 remote_ip 5.5.5.158 80918 username soleymani 80918 unique_id port 80918 terminate_cause Lost-Carrier 80918 bytes_out 261453 80918 bytes_in 743353 80918 station_ip 5.119.202.192 80918 port 15728855 80918 nas_port_type Virtual 80918 remote_ip 5.5.5.150 80920 username zamanialireza 80920 unique_id port 80920 terminate_cause User-Request 80920 bytes_out 0 80920 bytes_in 0 80920 station_ip 37.129.66.62 80920 port 15728865 80920 nas_port_type Virtual 80920 remote_ip 5.5.5.145 80925 username kohestani 80925 unique_id port 80925 terminate_cause Lost-Carrier 80925 bytes_out 36619018 80925 bytes_in 370568168 80925 station_ip 5.119.28.173 80925 port 15728820 80925 nas_port_type Virtual 80925 remote_ip 5.5.5.162 80928 username amir 80928 unique_id port 80928 terminate_cause Lost-Carrier 80928 bytes_out 1277566 80928 bytes_in 20002705 80928 station_ip 46.225.213.63 80928 port 15728866 80928 nas_port_type Virtual 80928 remote_ip 5.5.5.226 80929 username soleymani 80929 unique_id port 80929 terminate_cause Lost-Carrier 80929 bytes_out 270085 80929 bytes_in 818368 80929 station_ip 5.120.76.157 80929 port 15728869 80929 nas_port_type Virtual 80929 remote_ip 5.5.5.143 80931 username amirhosein 80931 unique_id port 80931 terminate_cause Lost-Carrier 80931 bytes_out 2892544 80931 bytes_in 62020373 80931 station_ip 5.119.220.147 80931 port 15728860 80931 nas_port_type Virtual 80931 remote_ip 5.5.5.205 80936 username ahmadipour 80936 unique_id port 80936 terminate_cause User-Request 80936 bytes_out 1282823 80936 bytes_in 28642776 80936 station_ip 113.203.112.199 80936 port 15728878 80936 nas_port_type Virtual 80936 remote_ip 5.5.5.140 80938 username zamanialireza 80938 unique_id port 80938 terminate_cause Lost-Carrier 80938 bytes_out 7209341 80938 bytes_in 574062 80908 nas_port_type Virtual 80908 remote_ip 5.5.5.152 80913 username amirhosein 80913 unique_id port 80913 terminate_cause User-Request 80913 bytes_out 90165 80913 bytes_in 177416 80913 station_ip 5.119.220.147 80913 port 15728858 80913 nas_port_type Virtual 80913 remote_ip 5.5.5.205 80916 username alinezhad 80916 unique_id port 80916 terminate_cause User-Request 80916 bytes_out 36177 80916 bytes_in 413067 80916 station_ip 37.129.51.145 80916 port 15728862 80916 nas_port_type Virtual 80916 remote_ip 5.5.5.147 80921 username zoha 80921 unique_id port 80921 terminate_cause Lost-Carrier 80921 bytes_out 1453599 80921 bytes_in 33621746 80921 station_ip 5.119.142.76 80921 port 15728859 80921 nas_port_type Virtual 80921 remote_ip 5.5.5.153 80922 username zamanialireza 80922 unique_id port 80922 terminate_cause Lost-Carrier 80922 bytes_out 7675474 80922 bytes_in 211097943 80922 station_ip 94.183.213.166 80922 port 15728813 80922 nas_port_type Virtual 80922 remote_ip 5.5.5.166 80926 username avaanna 80926 unique_id port 80926 terminate_cause User-Request 80926 bytes_out 404307 80926 bytes_in 109396 80926 station_ip 83.123.202.249 80926 port 15728870 80926 nas_port_type Virtual 80926 remote_ip 5.5.5.197 80939 username alinezhad 80939 unique_id port 80939 terminate_cause User-Request 80939 bytes_out 15004 80939 bytes_in 25988 80939 station_ip 5.202.16.246 80939 port 15728880 80939 nas_port_type Virtual 80939 remote_ip 5.5.5.182 80945 username arman 80945 unique_id port 80945 terminate_cause User-Request 80945 bytes_out 523909 80945 bytes_in 942195 80945 station_ip 5.119.74.137 80945 port 15728887 80945 nas_port_type Virtual 80945 remote_ip 5.5.5.136 80946 username shahriyar 80946 unique_id port 80946 terminate_cause User-Request 80946 bytes_out 0 80946 bytes_in 0 80946 station_ip 83.122.197.106 80946 port 15728890 80946 nas_port_type Virtual 80946 remote_ip 5.5.5.133 80950 username zoha 80950 unique_id port 80950 terminate_cause User-Request 80950 bytes_out 2342560 80950 bytes_in 40553545 80950 station_ip 5.119.142.76 80950 port 15728881 80950 nas_port_type Virtual 80950 remote_ip 5.5.5.153 80953 username shokokian 80953 unique_id port 80953 terminate_cause User-Request 80953 bytes_out 967477 80953 bytes_in 8464218 80953 station_ip 31.59.38.78 80953 port 15728894 80953 nas_port_type Virtual 80953 remote_ip 5.5.5.130 80956 username soleymani 80956 unique_id port 80956 terminate_cause Lost-Carrier 80956 bytes_out 53567 80956 bytes_in 205758 80956 station_ip 5.119.115.140 80956 port 15728901 80956 nas_port_type Virtual 80956 remote_ip 5.5.5.125 80958 username zamanialireza 80958 unique_id port 80958 terminate_cause User-Request 80958 bytes_out 3470820 80958 bytes_in 33393878 80958 station_ip 89.34.33.177 80958 port 15728889 80958 nas_port_type Virtual 80958 remote_ip 5.5.5.134 80962 username caferibar 80962 unique_id port 80962 terminate_cause User-Request 80962 bytes_out 2803685 80962 bytes_in 54359337 80962 station_ip 5.120.132.149 80962 port 15728898 80962 nas_port_type Virtual 80962 remote_ip 5.5.5.127 80963 username caferibar 80963 unique_id port 80963 terminate_cause User-Request 80963 bytes_out 853759 80963 bytes_in 19559534 80963 station_ip 31.56.153.26 80963 port 15728906 80963 nas_port_type Virtual 80963 remote_ip 5.5.5.123 80972 username alirezazamani 80972 kill_reason Relative expiration date has reached 80972 unique_id port 80972 bytes_out 0 80972 bytes_in 0 80972 station_ip 37.156.154.117 80972 port 15728919 80972 nas_port_type Virtual 80976 username aminvpn 80976 mac 80976 bytes_out 249850 80976 bytes_in 3330529 80976 station_ip 5.119.30.76 80976 port 14 80976 unique_id port 80912 port 15728844 80912 nas_port_type Virtual 80912 remote_ip 5.5.5.153 80915 username mohammadaskari 80915 unique_id port 80915 terminate_cause User-Request 80915 bytes_out 0 80915 bytes_in 0 80915 station_ip 5.120.113.153 80915 port 15728861 80915 nas_port_type Virtual 80915 remote_ip 5.5.5.148 80919 username mohammadaskari 80919 unique_id port 80919 terminate_cause Lost-Carrier 80919 bytes_out 237641 80919 bytes_in 2437103 80919 station_ip 46.225.210.196 80919 port 15728863 80919 nas_port_type Virtual 80919 remote_ip 5.5.5.146 80923 username mahdavi 80923 unique_id port 80923 terminate_cause User-Request 80923 bytes_out 34768 80923 bytes_in 118641 80923 station_ip 113.203.24.71 80923 port 15728867 80923 nas_port_type Virtual 80923 remote_ip 5.5.5.144 80932 username reza 80932 unique_id port 80932 terminate_cause User-Request 80932 bytes_out 480142 80932 bytes_in 186664 80932 station_ip 83.122.118.203 80932 port 15728873 80932 nas_port_type Virtual 80932 remote_ip 5.5.5.151 80934 username soleymani 80934 unique_id port 80934 terminate_cause Lost-Carrier 80934 bytes_out 21266 80934 bytes_in 176716 80934 station_ip 5.119.161.142 80934 port 15728874 80934 nas_port_type Virtual 80934 remote_ip 5.5.5.142 80940 username madadi 80940 unique_id port 80940 terminate_cause Lost-Carrier 80940 bytes_out 236844 80940 bytes_in 1534716 80940 station_ip 5.120.70.181 80940 port 15728871 80940 nas_port_type Virtual 80940 remote_ip 5.5.5.149 80947 username zamanialireza 80947 unique_id port 80947 terminate_cause User-Request 80947 bytes_out 1460267 80947 bytes_in 21313360 80947 station_ip 37.129.66.62 80947 port 15728886 80947 nas_port_type Virtual 80947 remote_ip 5.5.5.145 80948 username arman 80948 unique_id port 80948 terminate_cause User-Request 80948 bytes_out 112225 80948 bytes_in 254044 80948 station_ip 5.119.74.137 80948 port 15728891 80948 nas_port_type Virtual 80948 remote_ip 5.5.5.136 80952 username forozande 80952 unique_id port 80952 terminate_cause User-Request 80952 bytes_out 95111 80952 bytes_in 1205229 80952 station_ip 37.129.158.101 80952 port 15728900 80952 nas_port_type Virtual 80952 remote_ip 5.5.5.128 80954 username mahbobeh 80954 unique_id port 80954 terminate_cause Lost-Carrier 80954 bytes_out 105155 80954 bytes_in 449879 80954 station_ip 83.123.193.101 80954 port 15728888 80954 nas_port_type Virtual 80954 remote_ip 5.5.5.135 80955 username soleymani 80955 unique_id port 80955 terminate_cause Lost-Carrier 80955 bytes_out 81805 80955 bytes_in 314451 80955 station_ip 5.120.143.87 80955 port 15728899 80955 nas_port_type Virtual 80955 remote_ip 5.5.5.126 80957 username shokokian 80957 unique_id port 80957 terminate_cause User-Request 80957 bytes_out 238092 80957 bytes_in 2023926 80957 station_ip 31.59.38.78 80957 port 15728902 80957 nas_port_type Virtual 80957 remote_ip 5.5.5.130 80960 username mahdi 80960 unique_id port 80960 terminate_cause Lost-Carrier 80960 bytes_out 333286 80960 bytes_in 6495396 80960 station_ip 5.119.186.227 80960 port 15728905 80960 nas_port_type Virtual 80960 remote_ip 5.5.5.215 80961 username zamanialireza 80961 unique_id port 80961 terminate_cause User-Request 80961 bytes_out 0 80961 bytes_in 0 80961 station_ip 37.129.66.62 80961 port 15728908 80961 nas_port_type Virtual 80961 remote_ip 5.5.5.145 80964 username forozande 80964 unique_id port 80964 terminate_cause User-Request 80964 bytes_out 21300 80964 bytes_in 59681 80964 station_ip 83.122.186.187 80964 port 15728912 80964 nas_port_type Virtual 80964 remote_ip 5.5.5.120 80967 username mrg 80967 unique_id port 80967 terminate_cause User-Request 80967 bytes_out 154197 80967 bytes_in 4170273 80930 terminate_cause User-Request 80930 bytes_out 0 80930 bytes_in 0 80930 station_ip 83.123.202.249 80930 port 15728872 80930 nas_port_type Virtual 80930 remote_ip 5.5.5.197 80933 username avaanna 80933 unique_id port 80933 terminate_cause User-Request 80933 bytes_out 271183 80933 bytes_in 121704 80933 station_ip 83.123.202.249 80933 port 15728875 80933 nas_port_type Virtual 80933 remote_ip 5.5.5.197 80935 username heydari 80935 unique_id port 80935 terminate_cause Lost-Carrier 80935 bytes_out 87057 80935 bytes_in 307622 80935 station_ip 5.120.47.89 80935 port 15728876 80935 nas_port_type Virtual 80935 remote_ip 5.5.5.141 80937 username mobina 80937 kill_reason Relative expiration date has reached 80937 unique_id port 80937 bytes_out 0 80937 bytes_in 0 80937 station_ip 5.123.241.192 80937 port 15728879 80937 nas_port_type Virtual 80942 username madadi 80942 unique_id port 80942 terminate_cause Lost-Carrier 80942 bytes_out 38872 80942 bytes_in 195183 80942 station_ip 5.120.109.172 80942 port 15728882 80942 nas_port_type Virtual 80942 remote_ip 5.5.5.139 80943 username soleymani 80943 unique_id port 80943 terminate_cause Lost-Carrier 80943 bytes_out 130475 80943 bytes_in 1569911 80943 station_ip 5.119.79.137 80943 port 15728883 80943 nas_port_type Virtual 80943 remote_ip 5.5.5.138 80944 username arman 80944 unique_id port 80944 terminate_cause User-Request 80944 bytes_out 0 80944 bytes_in 0 80944 station_ip 5.119.74.137 80944 port 15728885 80944 nas_port_type Virtual 80944 remote_ip 5.5.5.136 80951 username forozande 80951 unique_id port 80951 terminate_cause User-Request 80951 bytes_out 84360 80951 bytes_in 390426 80951 station_ip 37.129.158.101 80951 port 15728897 80951 nas_port_type Virtual 80951 remote_ip 5.5.5.128 80959 username shokokian 80959 unique_id port 80959 terminate_cause User-Request 80959 bytes_out 662377 80959 bytes_in 5297991 80959 station_ip 31.59.38.78 80959 port 15728904 80959 nas_port_type Virtual 80959 remote_ip 5.5.5.130 80965 username soleymani 80965 unique_id port 80965 terminate_cause Lost-Carrier 80965 bytes_out 97833 80965 bytes_in 385086 80965 station_ip 5.120.3.33 80965 port 15728909 80965 nas_port_type Virtual 80965 remote_ip 5.5.5.121 80966 username mrg 80966 unique_id port 80966 terminate_cause User-Request 80966 bytes_out 168869 80966 bytes_in 483545 80966 station_ip 46.225.214.146 80966 port 15728913 80966 nas_port_type Virtual 80966 remote_ip 5.5.5.119 80968 username ahmadipour 80968 unique_id port 80968 terminate_cause Lost-Carrier 80968 bytes_out 2538400 80968 bytes_in 42492370 80968 station_ip 113.203.59.143 80968 port 15728903 80968 nas_port_type Virtual 80968 remote_ip 5.5.5.124 80971 username aminvpn 80971 mac 80971 bytes_out 2719237 80971 bytes_in 36043656 80971 station_ip 5.119.30.76 80971 port 14 80971 unique_id port 80971 remote_ip 10.8.0.6 80973 username alirezazamani 80973 kill_reason Relative expiration date has reached 80973 unique_id port 80973 bytes_out 0 80973 bytes_in 0 80973 station_ip 37.156.154.117 80973 port 15728920 80973 nas_port_type Virtual 80975 username soleymani 80975 unique_id port 80975 terminate_cause Lost-Carrier 80975 bytes_out 164942 80975 bytes_in 1264999 80975 station_ip 5.120.130.24 80975 port 15728915 80975 nas_port_type Virtual 80975 remote_ip 5.5.5.118 80985 username amirhosein 80985 unique_id port 80985 terminate_cause Lost-Carrier 80985 bytes_out 4789497 80985 bytes_in 112775525 80985 station_ip 5.119.220.147 80985 port 15728895 80985 nas_port_type Virtual 80985 remote_ip 5.5.5.205 80987 username aminvpn 80987 unique_id port 80987 terminate_cause User-Request 80987 bytes_out 189795 80938 station_ip 94.183.213.166 80938 port 15728877 80938 nas_port_type Virtual 80938 remote_ip 5.5.5.166 80941 username asadi 80941 unique_id port 80941 terminate_cause User-Request 80941 bytes_out 338208 80941 bytes_in 10374962 80941 station_ip 83.122.184.27 80941 port 15728884 80941 nas_port_type Virtual 80941 remote_ip 5.5.5.137 80949 username zamanialireza 80949 unique_id port 80949 terminate_cause User-Request 80949 bytes_out 0 80949 bytes_in 0 80949 station_ip 83.123.216.109 80949 port 15728893 80949 nas_port_type Virtual 80949 remote_ip 5.5.5.131 80970 username hamideh 80970 unique_id port 80970 terminate_cause Lost-Carrier 80970 bytes_out 1179212 80970 bytes_in 18695097 80970 station_ip 5.119.85.224 80970 port 15728916 80970 nas_port_type Virtual 80970 remote_ip 5.5.5.117 80974 username madadi 80974 unique_id port 80974 terminate_cause Lost-Carrier 80974 bytes_out 2715849 80974 bytes_in 15075420 80974 station_ip 5.120.21.82 80974 port 15728896 80974 nas_port_type Virtual 80974 remote_ip 5.5.5.129 80979 username madadi 80979 unique_id port 80979 terminate_cause User-Request 80979 bytes_out 151353 80979 bytes_in 459720 80979 station_ip 5.119.21.101 80979 port 15728921 80979 nas_port_type Virtual 80979 remote_ip 5.5.5.114 80982 username hamideh 80982 unique_id port 80982 terminate_cause Lost-Carrier 80982 bytes_out 137686 80982 bytes_in 2083890 80982 station_ip 5.119.85.224 80982 port 15728922 80982 nas_port_type Virtual 80982 remote_ip 5.5.5.117 80989 username ahmadi 80989 unique_id port 80989 terminate_cause User-Request 80989 bytes_out 509062 80989 bytes_in 10530695 80989 station_ip 83.123.106.158 80989 port 15728930 80989 nas_port_type Virtual 80989 remote_ip 5.5.5.111 80997 username aminvpn 80997 kill_reason Another user logged on this global unique id 80997 mac 80997 bytes_out 0 80997 bytes_in 0 80997 station_ip 5.119.30.76 80997 port 14 80997 unique_id port 80998 username alinezhad 80998 unique_id port 80998 terminate_cause User-Request 80998 bytes_out 0 80998 bytes_in 0 80998 station_ip 5.202.16.246 80998 port 15728940 80998 nas_port_type Virtual 80998 remote_ip 5.5.5.182 81000 username aminvpn 81000 mac 81000 bytes_out 0 81000 bytes_in 0 81000 station_ip 5.119.30.76 81000 port 14 81000 unique_id port 81002 username hamideh 81002 unique_id port 81002 terminate_cause Lost-Carrier 81002 bytes_out 279302 81002 bytes_in 3884526 81002 station_ip 5.119.85.224 81002 port 15728937 81002 nas_port_type Virtual 81002 remote_ip 5.5.5.115 81003 username forozande 81003 unique_id port 81003 terminate_cause User-Request 81003 bytes_out 163495 81003 bytes_in 904467 81003 station_ip 37.129.29.103 81003 port 15728941 81003 nas_port_type Virtual 81003 remote_ip 5.5.5.106 81004 username alinezhad 81004 unique_id port 81004 terminate_cause User-Request 81004 bytes_out 0 81004 bytes_in 0 81004 station_ip 5.202.16.246 81004 port 15728943 81004 nas_port_type Virtual 81004 remote_ip 5.5.5.182 81016 username forozande 81016 unique_id port 81016 terminate_cause User-Request 81016 bytes_out 220837 81016 bytes_in 2329477 81016 station_ip 83.122.143.28 81016 port 15728955 81016 nas_port_type Virtual 81016 remote_ip 5.5.5.99 81017 username alinezhad 81017 unique_id port 81017 terminate_cause User-Request 81017 bytes_out 0 81017 bytes_in 0 81017 station_ip 5.202.16.246 81017 port 15728958 81017 nas_port_type Virtual 81017 remote_ip 5.5.5.182 81023 username sobhan 81023 unique_id port 81023 terminate_cause User-Request 81023 bytes_out 1874352 81023 bytes_in 38450802 81023 station_ip 5.119.10.25 81023 port 15728961 81023 nas_port_type Virtual 80967 station_ip 46.225.214.146 80967 port 15728914 80967 nas_port_type Virtual 80967 remote_ip 5.5.5.119 80969 username reza2742 80969 unique_id port 80969 terminate_cause User-Request 80969 bytes_out 462562 80969 bytes_in 11847321 80969 station_ip 37.129.173.71 80969 port 15728917 80969 nas_port_type Virtual 80969 remote_ip 5.5.5.116 80977 username hamideh 80977 unique_id port 80977 terminate_cause Lost-Carrier 80977 bytes_out 197186 80977 bytes_in 1368101 80977 station_ip 5.119.85.224 80977 port 15728918 80977 nas_port_type Virtual 80977 remote_ip 5.5.5.115 80978 username alinezhad 80978 unique_id port 80978 terminate_cause User-Request 80978 bytes_out 116282 80978 bytes_in 1140197 80978 station_ip 5.202.16.246 80978 port 15728923 80978 nas_port_type Virtual 80978 remote_ip 5.5.5.182 80981 username mahdi 80981 unique_id port 80981 terminate_cause Lost-Carrier 80981 bytes_out 362021 80981 bytes_in 7647795 80981 station_ip 5.119.186.227 80981 port 15728907 80981 nas_port_type Virtual 80981 remote_ip 5.5.5.122 80984 username aminvpn 80984 mac 80984 bytes_out 0 80984 bytes_in 0 80984 station_ip 5.119.30.76 80984 port 14 80984 unique_id port 80984 remote_ip 10.8.0.6 80992 username aminvpn 80992 unique_id port 80992 terminate_cause User-Request 80992 bytes_out 231091 80992 bytes_in 5069297 80992 station_ip 83.123.150.120 80992 port 15728934 80992 nas_port_type Virtual 80992 remote_ip 5.5.5.112 80994 username aminvpn 80994 kill_reason Another user logged on this global unique id 80994 mac 80994 bytes_out 0 80994 bytes_in 0 80994 station_ip 5.119.30.76 80994 port 14 80994 unique_id port 80995 username aminvpn 80995 kill_reason Another user logged on this global unique id 80995 mac 80995 bytes_out 0 80995 bytes_in 0 80995 station_ip 5.119.30.76 80995 port 14 80995 unique_id port 80996 username soleymani 80996 unique_id port 80996 terminate_cause Lost-Carrier 80996 bytes_out 53558 80996 bytes_in 182025 80996 station_ip 5.119.63.26 80996 port 15728932 80996 nas_port_type Virtual 80996 remote_ip 5.5.5.110 81006 username mahbobeh 81006 unique_id port 81006 terminate_cause Lost-Carrier 81006 bytes_out 1033269 81006 bytes_in 13736231 81006 station_ip 83.123.193.101 81006 port 15728924 81006 nas_port_type Virtual 81006 remote_ip 5.5.5.135 81007 username alinezhad 81007 unique_id port 81007 terminate_cause User-Request 81007 bytes_out 0 81007 bytes_in 0 81007 station_ip 5.202.16.246 81007 port 15728945 81007 nas_port_type Virtual 81007 remote_ip 5.5.5.182 81009 username alinezhad 81009 unique_id port 81009 terminate_cause User-Request 81009 bytes_out 0 81009 bytes_in 0 81009 station_ip 5.202.16.246 81009 port 15728949 81009 nas_port_type Virtual 81009 remote_ip 5.5.5.182 81011 username zamanialireza 81011 unique_id port 81011 terminate_cause User-Request 81011 bytes_out 1378788 81011 bytes_in 19052174 81011 station_ip 94.183.213.166 81011 port 15728947 81011 nas_port_type Virtual 81011 remote_ip 5.5.5.166 81012 username alinezhad 81012 unique_id port 81012 terminate_cause User-Request 81012 bytes_out 0 81012 bytes_in 0 81012 station_ip 5.202.16.246 81012 port 15728951 81012 nas_port_type Virtual 81012 remote_ip 5.5.5.182 81015 username heydari 81015 unique_id port 81015 terminate_cause Lost-Carrier 81015 bytes_out 1232256 81015 bytes_in 5054566 81015 station_ip 5.119.186.227 81015 port 15728892 81015 nas_port_type Virtual 81015 remote_ip 5.5.5.132 81018 username asadi 81018 unique_id port 81018 terminate_cause User-Request 81018 bytes_out 30069 81018 bytes_in 75274 81018 station_ip 83.122.184.27 81018 port 15728957 81018 nas_port_type Virtual 80976 remote_ip 10.8.0.6 80980 username zamanialireza 80980 unique_id port 80980 terminate_cause Lost-Carrier 80980 bytes_out 184614 80980 bytes_in 1305306 80980 station_ip 94.183.213.166 80980 port 15728911 80980 nas_port_type Virtual 80980 remote_ip 5.5.5.166 80983 username aminvpn 80983 mac 80983 bytes_out 0 80983 bytes_in 0 80983 station_ip 5.119.30.76 80983 port 14 80983 unique_id port 80983 remote_ip 10.8.0.6 80986 username alinezhad 80986 unique_id port 80986 terminate_cause User-Request 80986 bytes_out 42731 80986 bytes_in 184009 80986 station_ip 5.202.16.246 80986 port 15728927 80986 nas_port_type Virtual 80986 remote_ip 5.5.5.182 80991 username hamideh 80991 unique_id port 80991 terminate_cause Lost-Carrier 80991 bytes_out 66289 80991 bytes_in 246478 80991 station_ip 5.119.85.224 80991 port 15728928 80991 nas_port_type Virtual 80991 remote_ip 5.5.5.115 81001 username soleymani 81001 unique_id port 81001 terminate_cause Lost-Carrier 81001 bytes_out 150037 81001 bytes_in 454622 81001 station_ip 5.119.213.68 81001 port 15728936 81001 nas_port_type Virtual 81001 remote_ip 5.5.5.108 81005 username avaanna 81005 unique_id port 81005 terminate_cause User-Request 81005 bytes_out 839544 81005 bytes_in 950952 81005 station_ip 83.123.137.66 81005 port 15728942 81005 nas_port_type Virtual 81005 remote_ip 5.5.5.105 81008 username soleymani 81008 unique_id port 81008 terminate_cause Lost-Carrier 81008 bytes_out 25253 81008 bytes_in 191163 81008 station_ip 5.119.91.83 81008 port 15728944 81008 nas_port_type Virtual 81008 remote_ip 5.5.5.104 81013 username zoha 81013 unique_id port 81013 terminate_cause User-Request 81013 bytes_out 4385379 81013 bytes_in 59135248 81013 station_ip 5.119.142.76 81013 port 15728910 81013 nas_port_type Virtual 81013 remote_ip 5.5.5.153 81021 username soleymani 81021 unique_id port 81021 terminate_cause Lost-Carrier 81021 bytes_out 34922 81021 bytes_in 225301 81021 station_ip 5.120.19.225 81021 port 15728952 81021 nas_port_type Virtual 81021 remote_ip 5.5.5.101 81022 username amir 81022 unique_id port 81022 terminate_cause Lost-Carrier 81022 bytes_out 3485374 81022 bytes_in 46927880 81022 station_ip 46.225.208.245 81022 port 15728950 81022 nas_port_type Virtual 81022 remote_ip 5.5.5.102 81025 username soleymani 81025 unique_id port 81025 terminate_cause Lost-Carrier 81025 bytes_out 6384568 81025 bytes_in 619549 81025 station_ip 5.119.107.153 81025 port 15728960 81025 nas_port_type Virtual 81025 remote_ip 5.5.5.98 81029 username heydari 81029 unique_id port 81029 terminate_cause Lost-Carrier 81029 bytes_out 135561 81029 bytes_in 727964 81029 station_ip 5.119.186.227 81029 port 15728956 81029 nas_port_type Virtual 81029 remote_ip 5.5.5.132 81031 username madadi 81031 unique_id port 81031 terminate_cause Lost-Carrier 81031 bytes_out 26497 81031 bytes_in 145368 81031 station_ip 5.119.116.14 81031 port 15728966 81031 nas_port_type Virtual 81031 remote_ip 5.5.5.95 81036 username kamali 81036 unique_id port 81036 terminate_cause User-Request 81036 bytes_out 49876 81036 bytes_in 106020 81036 station_ip 83.122.66.174 81036 port 15728971 81036 nas_port_type Virtual 81036 remote_ip 5.5.5.91 81039 username madadi 81039 unique_id port 81039 terminate_cause Lost-Carrier 81039 bytes_out 1284787 81039 bytes_in 3117586 81039 station_ip 5.120.174.59 81039 port 15728968 81039 nas_port_type Virtual 81039 remote_ip 5.5.5.93 81040 username shahrooz 81040 unique_id port 81040 terminate_cause Lost-Carrier 81040 bytes_out 140174 81040 bytes_in 1113802 81040 station_ip 83.122.65.72 81040 port 15728974 81040 nas_port_type Virtual 81040 remote_ip 5.5.5.88 80987 bytes_in 4340506 80987 station_ip 83.123.150.120 80987 port 15728929 80987 nas_port_type Virtual 80987 remote_ip 5.5.5.112 80988 username aminvpn 80988 unique_id port 80988 terminate_cause User-Request 80988 bytes_out 157371 80988 bytes_in 3324823 80988 station_ip 83.123.150.120 80988 port 15728931 80988 nas_port_type Virtual 80988 remote_ip 5.5.5.112 80990 username aminvpn 80990 unique_id port 80990 terminate_cause User-Request 80990 bytes_out 45598 80990 bytes_in 656135 80990 station_ip 83.123.150.120 80990 port 15728933 80990 nas_port_type Virtual 80990 remote_ip 5.5.5.112 80993 username aminvpn 80993 kill_reason Another user logged on this global unique id 80993 mac 80993 bytes_out 0 80993 bytes_in 0 80993 station_ip 5.119.30.76 80993 port 14 80993 unique_id port 80993 remote_ip 10.8.0.6 80999 username madadi 80999 unique_id port 80999 terminate_cause Lost-Carrier 80999 bytes_out 267967 80999 bytes_in 637841 80999 station_ip 5.119.21.101 80999 port 15728926 80999 nas_port_type Virtual 80999 remote_ip 5.5.5.114 81010 username soleymani 81010 unique_id port 81010 terminate_cause Lost-Carrier 81010 bytes_out 71408 81010 bytes_in 192962 81010 station_ip 5.119.170.226 81010 port 15728946 81010 nas_port_type Virtual 81010 remote_ip 5.5.5.103 81014 username zamanialireza 81014 unique_id port 81014 terminate_cause User-Request 81014 bytes_out 4311894 81014 bytes_in 78116253 81014 station_ip 94.183.213.166 81014 port 15728925 81014 nas_port_type Virtual 81014 remote_ip 5.5.5.113 81019 username reza 81019 unique_id port 81019 terminate_cause User-Request 81019 bytes_out 47140 81019 bytes_in 922437 81019 station_ip 83.123.29.126 81019 port 15728953 81019 nas_port_type Virtual 81019 remote_ip 5.5.5.100 81024 username asadi 81024 unique_id port 81024 terminate_cause User-Request 81024 bytes_out 84844 81024 bytes_in 1567471 81024 station_ip 83.122.184.27 81024 port 15728962 81024 nas_port_type Virtual 81024 remote_ip 5.5.5.137 81027 username zoha 81027 kill_reason Wrong password 81027 unique_id port 81027 bytes_out 0 81027 bytes_in 0 81027 station_ip 5.119.142.76 81027 port 15728964 81027 nas_port_type Virtual 81028 username madadi 81028 unique_id port 81028 terminate_cause Lost-Carrier 81028 bytes_out 665421 81028 bytes_in 1888770 81028 station_ip 5.119.151.207 81028 port 15728938 81028 nas_port_type Virtual 81028 remote_ip 5.5.5.107 81032 username zoha 81032 unique_id port 81032 terminate_cause Lost-Carrier 81032 bytes_out 3191636 81032 bytes_in 64736113 81032 station_ip 5.119.142.76 81032 port 15728965 81032 nas_port_type Virtual 81032 remote_ip 5.5.5.153 81033 username caferibar 81033 unique_id port 81033 terminate_cause Lost-Carrier 81033 bytes_out 8602434 81033 bytes_in 85257163 81033 station_ip 5.120.132.149 81033 port 15728939 81033 nas_port_type Virtual 81033 remote_ip 5.5.5.127 81035 username mrg 81035 unique_id port 81035 terminate_cause Lost-Carrier 81035 bytes_out 6907182 81035 bytes_in 179312972 81035 station_ip 5.120.167.162 81035 port 15728967 81035 nas_port_type Virtual 81035 remote_ip 5.5.5.94 81037 username alinezhad 81037 unique_id port 81037 terminate_cause User-Request 81037 bytes_out 0 81037 bytes_in 0 81037 station_ip 113.203.32.150 81037 port 15728972 81037 nas_port_type Virtual 81037 remote_ip 5.5.5.90 81038 username reza 81038 unique_id port 81038 terminate_cause User-Request 81038 bytes_out 45484 81038 bytes_in 724388 81038 station_ip 83.123.58.162 81038 port 15728973 81038 nas_port_type Virtual 81038 remote_ip 5.5.5.89 81280 bytes_in 167267 81280 station_ip 113.203.34.25 81280 port 15728845 81280 nas_port_type Virtual 81018 remote_ip 5.5.5.137 81020 username abdilahyar 81020 unique_id port 81020 terminate_cause Lost-Carrier 81020 bytes_out 1556928 81020 bytes_in 8033448 81020 station_ip 5.120.79.238 81020 port 15728935 81020 nas_port_type Virtual 81020 remote_ip 5.5.5.109 81026 username reza2742 81026 unique_id port 81026 terminate_cause User-Request 81026 bytes_out 244008 81026 bytes_in 6543032 81026 station_ip 37.129.214.108 81026 port 15728963 81026 nas_port_type Virtual 81026 remote_ip 5.5.5.96 81280 remote_ip 5.5.5.149 81293 username zoha 81293 unique_id port 81293 terminate_cause User-Request 81293 bytes_out 1241790 81293 bytes_in 22306126 81293 station_ip 5.119.248.245 81293 port 15728854 81293 nas_port_type Virtual 81293 remote_ip 5.5.5.147 81294 username caferibar 81294 unique_id port 81294 terminate_cause User-Request 81294 bytes_out 444586 81294 bytes_in 2310666 81294 station_ip 94.183.213.166 81294 port 15728858 81294 nas_port_type Virtual 81294 remote_ip 5.5.5.145 81298 username caferibar 81298 unique_id port 81298 terminate_cause User-Request 81298 bytes_out 97394 81298 bytes_in 133200 81298 station_ip 94.183.213.166 81298 port 15728864 81298 nas_port_type Virtual 81298 remote_ip 5.5.5.145 81302 username amirabbas 81302 unique_id port 81302 terminate_cause User-Request 81302 bytes_out 0 81302 bytes_in 0 81302 station_ip 46.225.211.54 81302 port 15728871 81302 nas_port_type Virtual 81302 remote_ip 5.5.5.139 81303 username amirabbas 81303 unique_id port 81303 terminate_cause User-Request 81303 bytes_out 0 81303 bytes_in 0 81303 station_ip 46.225.211.54 81303 port 15728872 81303 nas_port_type Virtual 81303 remote_ip 5.5.5.139 81306 username forozande 81306 unique_id port 81306 terminate_cause User-Request 81306 bytes_out 50874 81306 bytes_in 110151 81306 station_ip 83.123.236.14 81306 port 15728877 81306 nas_port_type Virtual 81306 remote_ip 5.5.5.135 81309 username asadi 81309 unique_id port 81309 terminate_cause User-Request 81309 bytes_out 106573 81309 bytes_in 709207 81309 station_ip 83.122.195.71 81309 port 15728880 81309 nas_port_type Virtual 81309 remote_ip 5.5.5.153 81310 username caferibar 81310 unique_id port 81310 terminate_cause Lost-Carrier 81310 bytes_out 949553 81310 bytes_in 19118736 81310 station_ip 5.120.124.233 81310 port 15728873 81310 nas_port_type Virtual 81310 remote_ip 5.5.5.138 81311 username aminvpn 81311 unique_id port 81311 terminate_cause Lost-Carrier 81311 bytes_out 4554507 81311 bytes_in 77110812 81311 station_ip 46.100.222.213 81311 port 15728867 81311 nas_port_type Virtual 81311 remote_ip 5.5.5.141 81313 username ahmadipour 81313 unique_id port 81313 terminate_cause Lost-Carrier 81313 bytes_out 175205 81313 bytes_in 3596381 81313 station_ip 113.203.74.147 81313 port 15728882 81313 nas_port_type Virtual 81313 remote_ip 5.5.5.132 81318 username zamanialireza 81318 unique_id port 81318 terminate_cause Lost-Carrier 81318 bytes_out 154885 81318 bytes_in 726598 81318 station_ip 94.183.213.166 81318 port 15728884 81318 nas_port_type Virtual 81318 remote_ip 5.5.5.131 81319 username amirhosein 81319 unique_id port 81319 terminate_cause Lost-Carrier 81319 bytes_out 1297867 81319 bytes_in 503559 81319 station_ip 5.119.19.196 81319 port 15728886 81319 nas_port_type Virtual 81319 remote_ip 5.5.5.181 81321 username aminvpn 81321 mac 81321 bytes_out 857603 81321 bytes_in 3924074 81321 station_ip 46.100.222.213 81321 port 14 81321 unique_id port 81321 remote_ip 10.8.0.6 81329 username madadi 81329 unique_id port 81329 terminate_cause Lost-Carrier 81329 bytes_out 49030 81329 bytes_in 158980 81329 station_ip 5.120.154.9 81329 port 15728896 81023 remote_ip 5.5.5.97 81030 username mahbobeh 81030 unique_id port 81030 terminate_cause Lost-Carrier 81030 bytes_out 544519 81030 bytes_in 7463167 81030 station_ip 83.123.193.101 81030 port 15728948 81030 nas_port_type Virtual 81030 remote_ip 5.5.5.135 81034 username alinezhad 81034 unique_id port 81034 terminate_cause User-Request 81034 bytes_out 0 81034 bytes_in 0 81034 station_ip 83.122.182.58 81034 port 15728970 81034 nas_port_type Virtual 81034 remote_ip 5.5.5.92 81041 username zoha 81041 unique_id port 81041 terminate_cause Lost-Carrier 81041 bytes_out 6127488 81041 bytes_in 144453870 81041 station_ip 5.119.142.76 81041 port 15728977 81041 nas_port_type Virtual 81041 remote_ip 5.5.5.153 81281 nas_port_type Virtual 81284 username madadi 81284 unique_id port 81284 terminate_cause Lost-Carrier 81284 bytes_out 115976 81284 bytes_in 614173 81284 station_ip 5.119.37.37 81284 port 15728838 81284 nas_port_type Virtual 81284 remote_ip 5.5.5.151 81286 username caferibar 81286 unique_id port 81286 terminate_cause Lost-Carrier 81286 bytes_out 1028474 81286 bytes_in 17786030 81286 station_ip 5.119.76.103 81286 port 15728843 81286 nas_port_type Virtual 81286 remote_ip 5.5.5.150 81289 username forozande 81289 unique_id port 81289 terminate_cause User-Request 81289 bytes_out 203481 81289 bytes_in 3934617 81289 station_ip 37.129.244.163 81289 port 15728857 81289 nas_port_type Virtual 81289 remote_ip 5.5.5.146 81300 username mahdavi 81300 unique_id port 81300 terminate_cause User-Request 81300 bytes_out 268958 81300 bytes_in 1268827 81300 station_ip 83.123.150.202 81300 port 15728865 81300 nas_port_type Virtual 81300 remote_ip 5.5.5.142 81301 username amirabbas 81301 unique_id port 81301 terminate_cause User-Request 81301 bytes_out 0 81301 bytes_in 0 81301 station_ip 46.225.211.54 81301 port 15728870 81301 nas_port_type Virtual 81301 remote_ip 5.5.5.139 81307 username asadi 81307 unique_id port 81307 terminate_cause User-Request 81307 bytes_out 206694 81307 bytes_in 6061536 81307 station_ip 83.122.195.71 81307 port 15728879 81307 nas_port_type Virtual 81307 remote_ip 5.5.5.153 81322 username madadi 81322 unique_id port 81322 terminate_cause Lost-Carrier 81322 bytes_out 396114 81322 bytes_in 4063252 81322 station_ip 5.119.202.76 81322 port 15728868 81322 nas_port_type Virtual 81322 remote_ip 5.5.5.140 81324 username caferibar 81324 unique_id port 81324 terminate_cause Lost-Carrier 81324 bytes_out 454806 81324 bytes_in 1790584 81324 station_ip 5.119.212.107 81324 port 15728890 81324 nas_port_type Virtual 81324 remote_ip 5.5.5.128 81325 username arabpour 81325 unique_id port 81325 terminate_cause User-Request 81325 bytes_out 213488 81325 bytes_in 1078269 81325 station_ip 83.122.210.37 81325 port 15728893 81325 nas_port_type Virtual 81325 remote_ip 5.5.5.126 81332 username amirabbas 81332 unique_id port 81332 terminate_cause User-Request 81332 bytes_out 26876079 81332 bytes_in 713356990 81332 station_ip 31.56.157.55 81332 port 15728878 81332 nas_port_type Virtual 81332 remote_ip 5.5.5.134 81333 username aminvpn 81333 unique_id port 81333 terminate_cause Lost-Carrier 81333 bytes_out 98599 81333 bytes_in 439434 81333 station_ip 5.119.154.117 81333 port 15728903 81333 nas_port_type Virtual 81333 remote_ip 5.5.5.118 81341 username madadi 81341 unique_id port 81341 terminate_cause Lost-Carrier 81341 bytes_out 312117 81341 bytes_in 1360458 81341 station_ip 5.119.250.96 81341 port 15728911 81341 nas_port_type Virtual 81341 remote_ip 5.5.5.115 81347 username shahrooz 81347 unique_id port 81347 terminate_cause Lost-Carrier 81347 bytes_out 1958834 81347 bytes_in 41125594 81282 remote_ip 5.5.5.147 81285 username reza 81285 unique_id port 81285 terminate_cause User-Request 81285 bytes_out 24739 81285 bytes_in 665294 81285 station_ip 83.123.16.96 81285 port 15728850 81285 nas_port_type Virtual 81285 remote_ip 5.5.5.169 81287 username amirhosein 81287 unique_id port 81287 terminate_cause Lost-Carrier 81287 bytes_out 5315175 81287 bytes_in 80666814 81287 station_ip 5.119.19.196 81287 port 15728831 81287 nas_port_type Virtual 81287 remote_ip 5.5.5.181 81291 username amirhosein 81291 unique_id port 81291 terminate_cause Lost-Carrier 81291 bytes_out 99760 81291 bytes_in 271304 81291 station_ip 5.119.19.196 81291 port 15728855 81291 nas_port_type Virtual 81291 remote_ip 5.5.5.181 81295 username heydari 81295 unique_id port 81295 terminate_cause Lost-Carrier 81295 bytes_out 3761560 81295 bytes_in 135690880 81295 station_ip 5.119.174.61 81295 port 15728805 81295 nas_port_type Virtual 81295 remote_ip 5.5.5.168 81296 username madadi 81296 unique_id port 81296 terminate_cause Lost-Carrier 81296 bytes_out 32429 81296 bytes_in 157599 81296 station_ip 5.119.26.83 81296 port 15728861 81296 nas_port_type Virtual 81296 remote_ip 5.5.5.144 81297 username amirhosein 81297 unique_id port 81297 terminate_cause Lost-Carrier 81297 bytes_out 30611 81297 bytes_in 144994 81297 station_ip 5.119.19.196 81297 port 15728862 81297 nas_port_type Virtual 81297 remote_ip 5.5.5.181 81304 username asadi 81304 unique_id port 81304 terminate_cause User-Request 81304 bytes_out 209817 81304 bytes_in 3216216 81304 station_ip 83.122.195.71 81304 port 15728875 81304 nas_port_type Virtual 81304 remote_ip 5.5.5.153 81308 username amirhosein 81308 unique_id port 81308 terminate_cause Lost-Carrier 81308 bytes_out 1458712 81308 bytes_in 62696035 81308 station_ip 5.119.19.196 81308 port 15728869 81308 nas_port_type Virtual 81308 remote_ip 5.5.5.181 81312 username forozande 81312 unique_id port 81312 terminate_cause User-Request 81312 bytes_out 42086 81312 bytes_in 187865 81312 station_ip 37.129.69.18 81312 port 15728881 81312 nas_port_type Virtual 81312 remote_ip 5.5.5.133 81315 username forozande 81315 unique_id port 81315 terminate_cause User-Request 81315 bytes_out 49645 81315 bytes_in 244998 81315 station_ip 37.129.69.18 81315 port 15728885 81315 nas_port_type Virtual 81315 remote_ip 5.5.5.133 81316 username afarin 81316 unique_id port 81316 terminate_cause Lost-Carrier 81316 bytes_out 1242219 81316 bytes_in 16310124 81316 station_ip 31.56.156.139 81316 port 15728876 81316 nas_port_type Virtual 81316 remote_ip 5.5.5.136 81317 username zoha 81317 unique_id port 81317 terminate_cause Lost-Carrier 81317 bytes_out 1517361 81317 bytes_in 18083846 81317 station_ip 5.119.248.245 81317 port 15728866 81317 nas_port_type Virtual 81317 remote_ip 5.5.5.147 81320 username amirhosein 81320 unique_id port 81320 terminate_cause Lost-Carrier 81320 bytes_out 289853 81320 bytes_in 147536 81320 station_ip 5.119.19.196 81320 port 15728887 81320 nas_port_type Virtual 81320 remote_ip 5.5.5.130 81323 username ahmadipour 81323 unique_id port 81323 terminate_cause Lost-Carrier 81323 bytes_out 597670 81323 bytes_in 11846206 81323 station_ip 113.203.23.123 81323 port 15728889 81323 nas_port_type Virtual 81323 remote_ip 5.5.5.129 81327 username alirezazamani 81327 kill_reason Relative expiration date has reached 81327 unique_id port 81327 bytes_out 0 81327 bytes_in 0 81327 station_ip 37.156.48.115 81327 port 15728897 81327 nas_port_type Virtual 81335 username amirhosein 81335 unique_id port 81335 terminate_cause Lost-Carrier 81335 bytes_out 537572 81335 bytes_in 16267754 81335 station_ip 5.119.19.196 81335 port 15728888 81283 port 15728847 81283 nas_port_type Virtual 81283 remote_ip 5.5.5.148 81288 username asadi 81288 unique_id port 81288 terminate_cause User-Request 81288 bytes_out 121004 81288 bytes_in 1641443 81288 station_ip 83.122.195.71 81288 port 15728856 81288 nas_port_type Virtual 81288 remote_ip 5.5.5.153 81290 username asadi 81290 unique_id port 81290 terminate_cause User-Request 81290 bytes_out 387889 81290 bytes_in 8986196 81290 station_ip 83.122.195.71 81290 port 15728859 81290 nas_port_type Virtual 81290 remote_ip 5.5.5.153 81292 username asadi 81292 unique_id port 81292 terminate_cause User-Request 81292 bytes_out 251913 81292 bytes_in 2488404 81292 station_ip 83.122.195.71 81292 port 15728860 81292 nas_port_type Virtual 81292 remote_ip 5.5.5.153 81299 username reza 81299 unique_id port 81299 terminate_cause User-Request 81299 bytes_out 16100 81299 bytes_in 112880 81299 station_ip 83.123.38.156 81299 port 15728863 81299 nas_port_type Virtual 81299 remote_ip 5.5.5.143 81305 username ahmadi 81305 unique_id port 81305 terminate_cause User-Request 81305 bytes_out 46223 81305 bytes_in 162498 81305 station_ip 37.129.164.162 81305 port 15728874 81305 nas_port_type Virtual 81305 remote_ip 5.5.5.137 81314 username alinezhad 81314 unique_id port 81314 terminate_cause User-Request 81314 bytes_out 0 81314 bytes_in 0 81314 station_ip 5.202.10.122 81314 port 15728883 81314 nas_port_type Virtual 81314 remote_ip 5.5.5.166 81326 username mohammadaskari 81326 unique_id port 81326 terminate_cause User-Request 81326 bytes_out 40351 81326 bytes_in 106605 81326 station_ip 37.129.236.120 81326 port 15728894 81326 nas_port_type Virtual 81326 remote_ip 5.5.5.125 81328 username caferibar 81328 unique_id port 81328 terminate_cause User-Request 81328 bytes_out 0 81328 bytes_in 0 81328 station_ip 5.120.69.99 81328 port 15728900 81328 nas_port_type Virtual 81328 remote_ip 5.5.5.120 81330 username farhad 81330 unique_id port 81330 terminate_cause Lost-Carrier 81330 bytes_out 1949159 81330 bytes_in 24999447 81330 station_ip 5.120.27.253 81330 port 15728892 81330 nas_port_type Virtual 81330 remote_ip 5.5.5.127 81336 username madadi 81336 unique_id port 81336 terminate_cause Lost-Carrier 81336 bytes_out 209774 81336 bytes_in 4485513 81336 station_ip 5.119.135.34 81336 port 15728898 81336 nas_port_type Virtual 81336 remote_ip 5.5.5.122 81344 username reza2742 81344 unique_id port 81344 terminate_cause User-Request 81344 bytes_out 85734 81344 bytes_in 1311847 81344 station_ip 83.122.98.22 81344 port 15728924 81344 nas_port_type Virtual 81344 remote_ip 5.5.5.111 81346 username avaanna 81346 unique_id port 81346 terminate_cause User-Request 81346 bytes_out 48320 81346 bytes_in 559846 81346 station_ip 83.123.129.192 81346 port 15728927 81346 nas_port_type Virtual 81346 remote_ip 5.5.5.110 81353 username heydari 81353 unique_id port 81353 terminate_cause Lost-Carrier 81353 bytes_out 305750 81353 bytes_in 1547958 81353 station_ip 5.119.174.61 81353 port 15728908 81353 nas_port_type Virtual 81353 remote_ip 5.5.5.168 81355 username mohammadaskari 81355 unique_id port 81355 terminate_cause User-Request 81355 bytes_out 0 81355 bytes_in 0 81355 station_ip 113.203.116.40 81355 port 15728934 81355 nas_port_type Virtual 81355 remote_ip 5.5.5.108 81357 username forozande 81357 unique_id port 81357 terminate_cause User-Request 81357 bytes_out 0 81357 bytes_in 0 81357 station_ip 83.123.44.162 81357 port 15728937 81357 nas_port_type Virtual 81357 remote_ip 5.5.5.109 81360 username ahmadi 81360 unique_id port 81360 terminate_cause User-Request 81360 bytes_out 59273 81360 bytes_in 331697 81329 nas_port_type Virtual 81329 remote_ip 5.5.5.123 81331 username zamanialireza 81331 unique_id port 81331 terminate_cause User-Request 81331 bytes_out 236572 81331 bytes_in 3170383 81331 station_ip 83.122.90.4 81331 port 15728902 81331 nas_port_type Virtual 81331 remote_ip 5.5.5.119 81334 username alinezhad 81334 unique_id port 81334 terminate_cause User-Request 81334 bytes_out 0 81334 bytes_in 0 81334 station_ip 5.202.10.122 81334 port 15728904 81334 nas_port_type Virtual 81334 remote_ip 5.5.5.166 81339 username amirhosein 81339 unique_id port 81339 terminate_cause Lost-Carrier 81339 bytes_out 58055 81339 bytes_in 260851 81339 station_ip 5.119.19.196 81339 port 15728909 81339 nas_port_type Virtual 81339 remote_ip 5.5.5.130 81340 username asadi 81340 unique_id port 81340 terminate_cause User-Request 81340 bytes_out 18701 81340 bytes_in 45078 81340 station_ip 83.122.195.71 81340 port 15728914 81340 nas_port_type Virtual 81340 remote_ip 5.5.5.153 81342 username zoha 81342 unique_id port 81342 terminate_cause User-Request 81342 bytes_out 749881 81342 bytes_in 7053427 81342 station_ip 5.119.248.245 81342 port 15728907 81342 nas_port_type Virtual 81342 remote_ip 5.5.5.147 81349 username mahdi 81349 unique_id port 81349 terminate_cause Lost-Carrier 81349 bytes_out 9910601 81349 bytes_in 375614107 81349 station_ip 5.119.174.61 81349 port 15728895 81349 nas_port_type Virtual 81349 remote_ip 5.5.5.124 81350 username forozande 81350 unique_id port 81350 terminate_cause User-Request 81350 bytes_out 142777 81350 bytes_in 147555 81350 station_ip 83.123.44.162 81350 port 15728931 81350 nas_port_type Virtual 81350 remote_ip 5.5.5.109 81351 username amin.insta01 81351 unique_id port 81351 terminate_cause Lost-Carrier 81351 bytes_out 4048842 81351 bytes_in 65068936 81351 station_ip 5.119.9.140 81351 port 15728920 81351 nas_port_type Virtual 81351 remote_ip 5.5.5.112 81364 username amin.insta01 81364 unique_id port 81364 terminate_cause Lost-Carrier 81364 bytes_out 1136955 81364 bytes_in 29885933 81364 station_ip 5.119.30.179 81364 port 15728941 81364 nas_port_type Virtual 81364 remote_ip 5.5.5.105 81370 username alinezhad 81370 unique_id port 81370 terminate_cause User-Request 81370 bytes_out 7789 81370 bytes_in 17196 81370 station_ip 5.202.10.122 81370 port 15728949 81370 nas_port_type Virtual 81370 remote_ip 5.5.5.166 81375 username zamanialireza 81375 unique_id port 81375 terminate_cause User-Request 81375 bytes_out 720976 81375 bytes_in 16771401 81375 station_ip 83.122.90.4 81375 port 15728956 81375 nas_port_type Virtual 81375 remote_ip 5.5.5.119 81376 username alinezhad 81376 unique_id port 81376 terminate_cause User-Request 81376 bytes_out 15793 81376 bytes_in 67015 81376 station_ip 5.202.10.122 81376 port 15728958 81376 nas_port_type Virtual 81376 remote_ip 5.5.5.166 81378 username aminvpn 81378 unique_id port 81378 terminate_cause Lost-Carrier 81378 bytes_out 788920 81378 bytes_in 9786047 81378 station_ip 5.119.124.148 81378 port 15728957 81378 nas_port_type Virtual 81378 remote_ip 5.5.5.101 81379 username amirhosein 81379 unique_id port 81379 terminate_cause Lost-Carrier 81379 bytes_out 115399 81379 bytes_in 427974 81379 station_ip 5.119.19.196 81379 port 15728955 81379 nas_port_type Virtual 81379 remote_ip 5.5.5.103 81380 username heydari 81380 unique_id port 81380 terminate_cause Lost-Carrier 81380 bytes_out 232851 81380 bytes_in 1205897 81380 station_ip 37.27.11.237 81380 port 15728945 81380 nas_port_type Virtual 81380 remote_ip 5.5.5.104 81389 username aminvpn 81389 unique_id port 81389 terminate_cause User-Request 81389 bytes_out 1081021 81389 bytes_in 20492897 81335 nas_port_type Virtual 81335 remote_ip 5.5.5.181 81337 username arabpour 81337 unique_id port 81337 terminate_cause User-Request 81337 bytes_out 655351 81337 bytes_in 17223947 81337 station_ip 83.122.210.37 81337 port 15728910 81337 nas_port_type Virtual 81337 remote_ip 5.5.5.126 81338 username madadi 81338 unique_id port 81338 terminate_cause Lost-Carrier 81338 bytes_out 112897 81338 bytes_in 620323 81338 station_ip 5.120.187.57 81338 port 15728906 81338 nas_port_type Virtual 81338 remote_ip 5.5.5.116 81343 username mahbobeh 81343 unique_id port 81343 terminate_cause Lost-Carrier 81343 bytes_out 3098879 81343 bytes_in 61786186 81343 station_ip 113.203.55.65 81343 port 15728899 81343 nas_port_type Virtual 81343 remote_ip 5.5.5.121 81345 username avaanna 81345 unique_id port 81345 terminate_cause User-Request 81345 bytes_out 0 81345 bytes_in 0 81345 station_ip 83.123.129.192 81345 port 15728926 81345 nas_port_type Virtual 81345 remote_ip 5.5.5.110 81348 username amirhosein 81348 unique_id port 81348 terminate_cause Lost-Carrier 81348 bytes_out 85029 81348 bytes_in 292725 81348 station_ip 5.119.19.196 81348 port 15728923 81348 nas_port_type Virtual 81348 remote_ip 5.5.5.130 81352 username mohammadaskari 81352 unique_id port 81352 terminate_cause User-Request 81352 bytes_out 0 81352 bytes_in 0 81352 station_ip 113.203.116.40 81352 port 15728932 81352 nas_port_type Virtual 81352 remote_ip 5.5.5.108 81354 username amirhosein 81354 unique_id port 81354 terminate_cause Lost-Carrier 81354 bytes_out 16903 81354 bytes_in 139958 81354 station_ip 5.119.19.196 81354 port 15728930 81354 nas_port_type Virtual 81354 remote_ip 5.5.5.130 81356 username alinezhad 81356 unique_id port 81356 terminate_cause User-Request 81356 bytes_out 143530 81356 bytes_in 999788 81356 station_ip 5.202.10.122 81356 port 15728925 81356 nas_port_type Virtual 81356 remote_ip 5.5.5.166 81359 username amirhosein 81359 unique_id port 81359 terminate_cause Lost-Carrier 81359 bytes_out 28829 81359 bytes_in 160358 81359 station_ip 5.119.19.196 81359 port 15728935 81359 nas_port_type Virtual 81359 remote_ip 5.5.5.130 81365 username caferibar 81365 unique_id port 81365 terminate_cause User-Request 81365 bytes_out 8981730 81365 bytes_in 125929531 81365 station_ip 5.120.69.99 81365 port 15728901 81365 nas_port_type Virtual 81365 remote_ip 5.5.5.120 81367 username amirhosein 81367 unique_id port 81367 terminate_cause Lost-Carrier 81367 bytes_out 348353 81367 bytes_in 380678 81367 station_ip 5.119.19.196 81367 port 15728942 81367 nas_port_type Virtual 81367 remote_ip 5.5.5.130 81368 username alinezhad 81368 unique_id port 81368 terminate_cause User-Request 81368 bytes_out 0 81368 bytes_in 0 81368 station_ip 5.202.10.122 81368 port 15728948 81368 nas_port_type Virtual 81368 remote_ip 5.5.5.166 81369 username zamanialireza 81369 unique_id port 81369 terminate_cause User-Request 81369 bytes_out 23807593 81369 bytes_in 218548743 81369 station_ip 83.122.90.4 81369 port 15728913 81369 nas_port_type Virtual 81369 remote_ip 5.5.5.119 81372 username forozande 81372 unique_id port 81372 terminate_cause User-Request 81372 bytes_out 52801 81372 bytes_in 213704 81372 station_ip 83.123.178.29 81372 port 15728954 81372 nas_port_type Virtual 81372 remote_ip 5.5.5.102 81377 username mahbobeh 81377 unique_id port 81377 terminate_cause Lost-Carrier 81377 bytes_out 1139750 81377 bytes_in 15848625 81377 station_ip 113.203.55.65 81377 port 15728939 81377 nas_port_type Virtual 81377 remote_ip 5.5.5.121 81381 username ahmadi 81381 unique_id port 81381 terminate_cause User-Request 81381 bytes_out 0 81381 bytes_in 0 81381 station_ip 37.129.155.110 81347 station_ip 37.129.118.104 81347 port 15728905 81347 nas_port_type Virtual 81347 remote_ip 5.5.5.117 81358 username forozande 81358 unique_id port 81358 terminate_cause User-Request 81358 bytes_out 37824 81358 bytes_in 446530 81358 station_ip 83.123.44.162 81358 port 15728938 81358 nas_port_type Virtual 81358 remote_ip 5.5.5.109 81362 username reza 81362 unique_id port 81362 terminate_cause User-Request 81362 bytes_out 576804 81362 bytes_in 16973569 81362 station_ip 83.123.123.1 81362 port 15728936 81362 nas_port_type Virtual 81362 remote_ip 5.5.5.107 81363 username heydari 81363 unique_id port 81363 terminate_cause User-Request 81363 bytes_out 0 81363 bytes_in 0 81363 station_ip 37.27.11.237 81363 port 15728944 81363 nas_port_type Virtual 81363 remote_ip 5.5.5.104 81373 username reza 81373 unique_id port 81373 terminate_cause User-Request 81373 bytes_out 288508 81373 bytes_in 9336018 81373 station_ip 83.123.123.1 81373 port 15728951 81373 nas_port_type Virtual 81373 remote_ip 5.5.5.107 81382 username zamanialireza 81382 unique_id port 81382 terminate_cause Lost-Carrier 81382 bytes_out 35646721 81382 bytes_in 1497354563 81382 station_ip 94.183.213.166 81382 port 15728922 81382 nas_port_type Virtual 81382 remote_ip 5.5.5.131 81384 username amirhosein 81384 unique_id port 81384 terminate_cause Lost-Carrier 81384 bytes_out 36732 81384 bytes_in 177826 81384 station_ip 5.119.19.196 81384 port 15728965 81384 nas_port_type Virtual 81384 remote_ip 5.5.5.103 81385 username alinezhad 81385 unique_id port 81385 terminate_cause User-Request 81385 bytes_out 685293 81385 bytes_in 5742858 81385 station_ip 5.202.5.205 81385 port 15728964 81385 nas_port_type Virtual 81385 remote_ip 5.5.5.98 81391 username avaanna 81391 unique_id port 81391 terminate_cause User-Request 81391 bytes_out 59830 81391 bytes_in 219330 81391 station_ip 83.123.129.192 81391 port 15728973 81391 nas_port_type Virtual 81391 remote_ip 5.5.5.110 81393 username amirhosein 81393 unique_id port 81393 terminate_cause Lost-Carrier 81393 bytes_out 11838 81393 bytes_in 134044 81393 station_ip 5.119.19.196 81393 port 15728969 81393 nas_port_type Virtual 81393 remote_ip 5.5.5.103 81401 username heydari 81401 unique_id port 81401 terminate_cause Lost-Carrier 81401 bytes_out 872798 81401 bytes_in 5633742 81401 station_ip 37.27.17.119 81401 port 15728962 81401 nas_port_type Virtual 81401 remote_ip 5.5.5.100 81404 username alinezhad 81404 unique_id port 81404 terminate_cause User-Request 81404 bytes_out 141296 81404 bytes_in 474193 81404 station_ip 83.123.187.125 81404 port 15728983 81404 nas_port_type Virtual 81404 remote_ip 5.5.5.88 81406 username pouria 81406 unique_id port 81406 terminate_cause User-Request 81406 bytes_out 2524050 81406 bytes_in 62367949 81406 station_ip 151.235.121.253 81406 port 15728988 81406 nas_port_type Virtual 81406 remote_ip 5.5.5.87 81409 unique_id port 81409 terminate_cause Lost-Carrier 81409 bytes_out 17278734 81409 bytes_in 373297740 81409 station_ip 83.123.166.179 81409 port 15728978 81409 nas_port_type Virtual 81409 remote_ip 5.5.5.92 81412 username shahrooz 81412 unique_id port 81412 terminate_cause Lost-Carrier 81412 bytes_out 7403309 81412 bytes_in 147314886 81412 station_ip 83.123.166.179 81412 port 15728996 81412 nas_port_type Virtual 81412 remote_ip 5.5.5.92 81417 username forozande 81417 unique_id port 81417 terminate_cause User-Request 81417 bytes_out 59540 81417 bytes_in 877952 81417 station_ip 83.122.3.165 81417 port 15728641 81417 nas_port_type Virtual 81417 remote_ip 5.5.5.255 81420 username forozande 81420 unique_id port 81420 terminate_cause User-Request 81420 bytes_out 15234 81420 bytes_in 173638 81360 station_ip 37.129.206.118 81360 port 15728940 81360 nas_port_type Virtual 81360 remote_ip 5.5.5.106 81361 username ahmadi 81361 unique_id port 81361 terminate_cause User-Request 81361 bytes_out 40954 81361 bytes_in 914314 81361 station_ip 37.129.206.118 81361 port 15728943 81361 nas_port_type Virtual 81361 remote_ip 5.5.5.106 81366 username alinezhad 81366 unique_id port 81366 terminate_cause User-Request 81366 bytes_out 0 81366 bytes_in 0 81366 station_ip 5.202.10.122 81366 port 15728946 81366 nas_port_type Virtual 81366 remote_ip 5.5.5.166 81371 username amirhosein 81371 unique_id port 81371 terminate_cause Lost-Carrier 81371 bytes_out 64582 81371 bytes_in 349866 81371 station_ip 5.119.19.196 81371 port 15728947 81371 nas_port_type Virtual 81371 remote_ip 5.5.5.103 81374 username amirhosein 81374 unique_id port 81374 terminate_cause Lost-Carrier 81374 bytes_out 2709682 81374 bytes_in 488010 81374 station_ip 5.119.19.196 81374 port 15728950 81374 nas_port_type Virtual 81374 remote_ip 5.5.5.130 81383 username zoha 81383 unique_id port 81383 terminate_cause Lost-Carrier 81383 bytes_out 4064434 81383 bytes_in 53564005 81383 station_ip 5.119.248.245 81383 port 15728929 81383 nas_port_type Virtual 81383 remote_ip 5.5.5.147 81387 username pouria 81387 unique_id port 81387 terminate_cause Lost-Carrier 81387 bytes_out 1411304 81387 bytes_in 32804169 81387 station_ip 5.119.208.159 81387 port 15728966 81387 nas_port_type Virtual 81387 remote_ip 5.5.5.97 81390 username caferibar 81390 unique_id port 81390 terminate_cause User-Request 81390 bytes_out 36393 81390 bytes_in 123062 81390 station_ip 37.129.150.80 81390 port 15728972 81390 nas_port_type Virtual 81390 remote_ip 5.5.5.94 81392 username aminvpn 81392 unique_id port 81392 terminate_cause Lost-Carrier 81392 bytes_out 64270 81392 bytes_in 177963 81392 station_ip 46.100.222.213 81392 port 15728968 81392 nas_port_type Virtual 81392 remote_ip 5.5.5.178 81394 username asadi 81394 unique_id port 81394 terminate_cause User-Request 81394 bytes_out 136899 81394 bytes_in 1535633 81394 station_ip 83.122.195.71 81394 port 15728975 81394 nas_port_type Virtual 81394 remote_ip 5.5.5.153 81396 username shahrooz 81396 unique_id port 81396 terminate_cause Lost-Carrier 81396 bytes_out 122994 81396 bytes_in 1099995 81396 station_ip 37.129.118.104 81396 port 15728974 81396 nas_port_type Virtual 81396 remote_ip 5.5.5.117 81398 username soleymani 81398 unique_id port 81398 terminate_cause Lost-Carrier 81398 bytes_out 1597310 81398 bytes_in 36819850 81398 station_ip 5.125.144.104 81398 port 15728977 81398 nas_port_type Virtual 81398 remote_ip 5.5.5.93 81408 username zamanialireza 81408 unique_id port 81408 terminate_cause User-Request 81408 bytes_out 5018732 81408 bytes_in 87782767 81408 station_ip 37.156.56.157 81408 port 15728991 81408 nas_port_type Virtual 81408 remote_ip 5.5.5.90 81410 username zamanialireza 81410 unique_id port 81410 terminate_cause Lost-Carrier 81410 bytes_out 9881645 81410 bytes_in 146981676 81410 station_ip 37.156.56.157 81410 port 15728992 81410 nas_port_type Virtual 81410 remote_ip 5.5.5.90 81415 username afarin 81415 unique_id port 81415 terminate_cause Admin-Reboot 81415 bytes_out 13224852 81415 bytes_in 251582818 81415 station_ip 31.56.155.144 81415 port 15728979 81415 nas_port_type Virtual 81415 remote_ip 5.5.5.91 81418 username forozande 81418 unique_id port 81418 terminate_cause User-Request 81418 bytes_out 43991 81418 bytes_in 604335 81418 station_ip 83.122.3.165 81418 port 15728642 81418 nas_port_type Virtual 81418 remote_ip 5.5.5.255 81422 username forozande 81422 unique_id port 81422 terminate_cause User-Request 81381 port 15728963 81381 nas_port_type Virtual 81381 remote_ip 5.5.5.99 81386 username ahmadipour 81386 unique_id port 81386 terminate_cause Lost-Carrier 81386 bytes_out 840357 81386 bytes_in 14388036 81386 station_ip 113.203.8.147 81386 port 15728967 81386 nas_port_type Virtual 81386 remote_ip 5.5.5.96 81388 username caferibar 81388 unique_id port 81388 terminate_cause User-Request 81388 bytes_out 102792 81388 bytes_in 408264 81388 station_ip 37.129.150.80 81388 port 15728971 81388 nas_port_type Virtual 81388 remote_ip 5.5.5.94 81395 username asadi 81395 unique_id port 81395 terminate_cause User-Request 81395 bytes_out 104273 81395 bytes_in 1834223 81395 station_ip 83.122.195.71 81395 port 15728976 81395 nas_port_type Virtual 81395 remote_ip 5.5.5.153 81397 username farhad 81397 unique_id port 81397 terminate_cause Lost-Carrier 81397 bytes_out 37447014 81397 bytes_in 538265753 81397 station_ip 5.119.62.114 81397 port 15728912 81397 nas_port_type Virtual 81397 remote_ip 5.5.5.114 81399 username abdilahyar 81399 unique_id port 81399 terminate_cause Lost-Carrier 81399 bytes_out 871920 81399 bytes_in 18396707 81399 station_ip 5.119.235.221 81399 port 15728776 81399 nas_port_type Virtual 81399 remote_ip 5.5.5.187 81400 username amirhosein 81400 unique_id port 81400 terminate_cause Lost-Carrier 81400 bytes_out 51242 81400 bytes_in 169129 81400 station_ip 5.119.19.196 81400 port 15728980 81400 nas_port_type Virtual 81400 remote_ip 5.5.5.103 81403 username caferibar 81403 kill_reason Maximum check online fails reached 81403 unique_id port 81403 bytes_out 408314 81403 bytes_in 3690403 81403 station_ip 5.119.30.45 81403 port 15728982 81403 nas_port_type Virtual 81403 remote_ip 5.5.5.89 81405 username madadi 81405 unique_id port 81405 terminate_cause Lost-Carrier 81405 bytes_out 6907778 81405 bytes_in 21956330 81405 station_ip 5.119.211.199 81405 port 15728916 81405 nas_port_type Virtual 81405 remote_ip 5.5.5.113 81411 username majid 81411 unique_id port 81411 terminate_cause User-Request 81411 bytes_out 4489000 81411 bytes_in 85462226 81411 station_ip 86.57.113.124 81411 port 15728989 81411 nas_port_type Virtual 81411 remote_ip 5.5.5.86 81413 username madadi 81413 unique_id port 81413 terminate_cause Admin-Reboot 81413 bytes_out 59127 81413 bytes_in 226210 81413 station_ip 5.120.82.22 81413 port 15728997 81413 nas_port_type Virtual 81413 remote_ip 5.5.5.85 81416 username forozande 81416 unique_id port 81416 terminate_cause User-Request 81416 bytes_out 297818 81416 bytes_in 2136883 81416 station_ip 83.122.3.165 81416 port 15728640 81416 nas_port_type Virtual 81416 remote_ip 5.5.5.255 81421 username zamanialireza 81421 unique_id port 81421 terminate_cause User-Request 81421 bytes_out 0 81421 bytes_in 0 81421 station_ip 5.119.220.13 81421 port 15728645 81421 nas_port_type Virtual 81421 remote_ip 5.5.5.254 81423 username forozande 81423 unique_id port 81423 terminate_cause User-Request 81423 bytes_out 31198 81423 bytes_in 520784 81423 station_ip 83.122.3.165 81423 port 15728648 81423 nas_port_type Virtual 81423 remote_ip 5.5.5.255 81425 username forozande 81425 unique_id port 81425 terminate_cause User-Request 81425 bytes_out 52506 81425 bytes_in 794605 81425 station_ip 83.122.3.165 81425 port 15728650 81425 nas_port_type Virtual 81425 remote_ip 5.5.5.255 81426 username soleymani 81426 unique_id port 81426 terminate_cause Lost-Carrier 81426 bytes_out 137292 81426 bytes_in 733063 81426 station_ip 5.125.174.45 81426 port 15728652 81426 nas_port_type Virtual 81426 remote_ip 5.5.5.251 81429 username mobina 81429 kill_reason Relative expiration date has reached 81429 unique_id port 81429 bytes_out 0 81389 station_ip 46.100.222.213 81389 port 15728970 81389 nas_port_type Virtual 81389 remote_ip 5.5.5.95 81402 username zamanialireza 81402 unique_id port 81402 terminate_cause Lost-Carrier 81402 bytes_out 887601 81402 bytes_in 4349438 81402 station_ip 37.156.56.157 81402 port 15728981 81402 nas_port_type Virtual 81402 remote_ip 5.5.5.90 81407 username caferibar 81407 unique_id port 81407 terminate_cause Lost-Carrier 81407 bytes_out 734176 81407 bytes_in 10198032 81407 station_ip 5.119.30.45 81407 port 15728987 81407 nas_port_type Virtual 81407 remote_ip 5.5.5.89 81414 username pouria 81414 unique_id port 81414 terminate_cause Admin-Reboot 81414 bytes_out 75542571 81414 bytes_in 2100565076 81414 station_ip 151.235.121.253 81414 port 15728990 81414 nas_port_type Virtual 81414 remote_ip 5.5.5.87 81419 username forozande 81419 unique_id port 81419 terminate_cause User-Request 81419 bytes_out 39220 81419 bytes_in 492365 81419 station_ip 83.122.3.165 81419 port 15728643 81419 nas_port_type Virtual 81419 remote_ip 5.5.5.255 81427 username madadi 81427 unique_id port 81427 terminate_cause Lost-Carrier 81427 bytes_out 127458 81427 bytes_in 429071 81427 station_ip 5.119.243.165 81427 port 15728651 81427 nas_port_type Virtual 81427 remote_ip 5.5.5.252 81432 username madadi 81432 unique_id port 81432 terminate_cause Lost-Carrier 81432 bytes_out 18043 81432 bytes_in 151882 81432 station_ip 5.119.23.49 81432 port 15728656 81432 nas_port_type Virtual 81432 remote_ip 5.5.5.248 81433 username ahmadi 81433 unique_id port 81433 terminate_cause User-Request 81433 bytes_out 25182 81433 bytes_in 130370 81433 station_ip 37.129.140.174 81433 port 15728658 81433 nas_port_type Virtual 81433 remote_ip 5.5.5.246 81445 username farhad 81445 unique_id port 81445 terminate_cause Lost-Carrier 81445 bytes_out 474 81445 bytes_in 123022 81445 station_ip 5.119.157.90 81445 port 15728670 81445 nas_port_type Virtual 81445 remote_ip 5.5.5.239 81447 username ahmadipour 81447 unique_id port 81447 terminate_cause Lost-Carrier 81447 bytes_out 164956 81447 bytes_in 1774988 81447 station_ip 113.203.96.147 81447 port 15728678 81447 nas_port_type Virtual 81447 remote_ip 5.5.5.233 81448 username ahmadi 81448 unique_id port 81448 terminate_cause User-Request 81448 bytes_out 18243 81448 bytes_in 153968 81448 station_ip 37.129.140.174 81448 port 15728675 81448 nas_port_type Virtual 81448 remote_ip 5.5.5.246 81451 username madadi 81451 unique_id port 81451 terminate_cause Lost-Carrier 81451 bytes_out 189256 81451 bytes_in 184289 81451 station_ip 5.119.18.212 81451 port 15728680 81451 nas_port_type Virtual 81451 remote_ip 5.5.5.231 81455 username farhad 81455 unique_id port 81455 terminate_cause User-Request 81455 bytes_out 7111543 81455 bytes_in 117867273 81455 station_ip 5.119.143.169 81455 port 15728672 81455 nas_port_type Virtual 81455 remote_ip 5.5.5.238 81458 username mobina 81458 kill_reason Relative expiration date has reached 81458 unique_id port 81458 bytes_out 0 81458 bytes_in 0 81458 station_ip 5.123.137.67 81458 port 15728686 81458 nas_port_type Virtual 81464 username madadi 81464 unique_id port 81464 terminate_cause Lost-Carrier 81464 bytes_out 106185 81464 bytes_in 406322 81464 station_ip 5.119.224.2 81464 port 15728687 81464 nas_port_type Virtual 81464 remote_ip 5.5.5.227 81467 username madadi 81467 unique_id port 81467 terminate_cause Lost-Carrier 81467 bytes_out 180560 81467 bytes_in 454414 81467 station_ip 5.119.53.122 81467 port 15728696 81467 nas_port_type Virtual 81467 remote_ip 5.5.5.221 81468 username asadi 81468 unique_id port 81468 terminate_cause User-Request 81468 bytes_out 229962 81468 bytes_in 2100498 81420 station_ip 83.122.3.165 81420 port 15728644 81420 nas_port_type Virtual 81420 remote_ip 5.5.5.255 81428 username madadi 81428 unique_id port 81428 terminate_cause Lost-Carrier 81428 bytes_out 30090 81428 bytes_in 154821 81428 station_ip 5.120.76.88 81428 port 15728653 81428 nas_port_type Virtual 81428 remote_ip 5.5.5.250 81435 username madadi 81435 unique_id port 81435 terminate_cause Lost-Carrier 81435 bytes_out 34639 81435 bytes_in 187968 81435 station_ip 5.119.185.102 81435 port 15728659 81435 nas_port_type Virtual 81435 remote_ip 5.5.5.245 81439 username ahmadi 81439 unique_id port 81439 terminate_cause User-Request 81439 bytes_out 17667 81439 bytes_in 94545 81439 station_ip 37.129.140.174 81439 port 15728665 81439 nas_port_type Virtual 81439 remote_ip 5.5.5.246 81440 username ahmadi 81440 unique_id port 81440 terminate_cause User-Request 81440 bytes_out 67800 81440 bytes_in 516550 81440 station_ip 37.129.140.174 81440 port 15728668 81440 nas_port_type Virtual 81440 remote_ip 5.5.5.246 81446 username madadi 81446 unique_id port 81446 terminate_cause Lost-Carrier 81446 bytes_out 344249 81446 bytes_in 934351 81446 station_ip 5.119.172.67 81446 port 15728660 81446 nas_port_type Virtual 81446 remote_ip 5.5.5.244 81450 username madadi 81450 unique_id port 81450 terminate_cause Lost-Carrier 81450 bytes_out 22957 81450 bytes_in 188090 81450 station_ip 5.119.238.245 81450 port 15728677 81450 nas_port_type Virtual 81450 remote_ip 5.5.5.234 81452 username alinezhad 81452 unique_id port 81452 terminate_cause User-Request 81452 bytes_out 0 81452 bytes_in 0 81452 station_ip 5.202.6.130 81452 port 15728682 81452 nas_port_type Virtual 81452 remote_ip 5.5.5.241 81456 username farhad 81456 kill_reason Wrong password 81456 unique_id port 81456 bytes_out 0 81456 bytes_in 0 81456 station_ip 5.119.246.173 81456 port 15728684 81456 nas_port_type Virtual 81460 username shokokian 81460 unique_id port 81460 terminate_cause User-Request 81460 bytes_out 236304 81460 bytes_in 2795571 81460 station_ip 31.56.156.168 81460 port 15728690 81460 nas_port_type Virtual 81460 remote_ip 5.5.5.225 81463 username reza 81463 unique_id port 81463 terminate_cause User-Request 81463 bytes_out 44402 81463 bytes_in 748508 81463 station_ip 83.122.8.236 81463 port 15728694 81463 nas_port_type Virtual 81463 remote_ip 5.5.5.224 81466 username amirhosein 81466 unique_id port 81466 terminate_cause Lost-Carrier 81466 bytes_out 65063 81466 bytes_in 244894 81466 station_ip 5.120.1.79 81466 port 15728695 81466 nas_port_type Virtual 81466 remote_ip 5.5.5.222 81469 username ahmadi 81469 unique_id port 81469 terminate_cause User-Request 81469 bytes_out 0 81469 bytes_in 0 81469 station_ip 37.129.140.174 81469 port 15728701 81469 nas_port_type Virtual 81469 remote_ip 5.5.5.246 81474 username goli 81474 kill_reason Absolute expiration date has reached 81474 unique_id port 81474 bytes_out 0 81474 bytes_in 0 81474 station_ip 113.203.6.119 81474 port 15728706 81474 nas_port_type Virtual 81477 username amirhosein 81477 unique_id port 81477 terminate_cause Lost-Carrier 81477 bytes_out 16270 81477 bytes_in 131465 81477 station_ip 5.120.1.79 81477 port 15728707 81477 nas_port_type Virtual 81477 remote_ip 5.5.5.217 81485 username amirhosein 81485 unique_id port 81485 terminate_cause Lost-Carrier 81485 bytes_out 702202 81485 bytes_in 7839264 81485 station_ip 5.120.1.79 81485 port 15728709 81485 nas_port_type Virtual 81485 remote_ip 5.5.5.217 81486 username hamideh 81486 unique_id port 81486 terminate_cause Lost-Carrier 81486 bytes_out 28453 81486 bytes_in 233717 81486 station_ip 5.119.197.155 81486 port 15728713 81422 bytes_out 48941 81422 bytes_in 688800 81422 station_ip 83.122.3.165 81422 port 15728646 81422 nas_port_type Virtual 81422 remote_ip 5.5.5.255 81424 username forozande 81424 unique_id port 81424 terminate_cause User-Request 81424 bytes_out 32490 81424 bytes_in 405266 81424 station_ip 83.122.3.165 81424 port 15728649 81424 nas_port_type Virtual 81424 remote_ip 5.5.5.255 81434 username ahmadi 81434 unique_id port 81434 terminate_cause User-Request 81434 bytes_out 8806 81434 bytes_in 26389 81434 station_ip 37.129.140.174 81434 port 15728661 81434 nas_port_type Virtual 81434 remote_ip 5.5.5.246 81437 username forozande 81437 unique_id port 81437 terminate_cause User-Request 81437 bytes_out 107781 81437 bytes_in 1901143 81437 station_ip 83.122.180.21 81437 port 15728663 81437 nas_port_type Virtual 81437 remote_ip 5.5.5.242 81438 username ahmadi 81438 unique_id port 81438 terminate_cause User-Request 81438 bytes_out 0 81438 bytes_in 0 81438 station_ip 37.129.140.174 81438 port 15728664 81438 nas_port_type Virtual 81438 remote_ip 5.5.5.246 81454 username zoha 81454 unique_id port 81454 terminate_cause Lost-Carrier 81454 bytes_out 501514 81454 bytes_in 3785495 81454 station_ip 5.120.180.215 81454 port 15728681 81454 nas_port_type Virtual 81454 remote_ip 5.5.5.230 81465 username ahmadi 81465 unique_id port 81465 terminate_cause User-Request 81465 bytes_out 82478 81465 bytes_in 1010375 81465 station_ip 37.129.140.174 81465 port 15728691 81465 nas_port_type Virtual 81465 remote_ip 5.5.5.246 81473 username goli 81473 kill_reason Absolute expiration date has reached 81473 unique_id port 81473 bytes_out 0 81473 bytes_in 0 81473 station_ip 113.203.6.119 81473 port 15728705 81473 nas_port_type Virtual 81476 username asadi 81476 unique_id port 81476 terminate_cause User-Request 81476 bytes_out 189678 81476 bytes_in 1210686 81476 station_ip 83.122.171.88 81476 port 15728708 81476 nas_port_type Virtual 81476 remote_ip 5.5.5.218 81479 username ahmadi 81479 unique_id port 81479 terminate_cause User-Request 81479 bytes_out 12233 81479 bytes_in 117783 81479 station_ip 37.129.206.70 81479 port 15728711 81479 nas_port_type Virtual 81479 remote_ip 5.5.5.215 81482 username shahrooz 81482 unique_id port 81482 terminate_cause Lost-Carrier 81482 bytes_out 10431768 81482 bytes_in 225270382 81482 station_ip 83.123.166.179 81482 port 15728693 81482 nas_port_type Virtual 81482 remote_ip 5.5.5.223 81487 username heydari 81487 unique_id port 81487 terminate_cause Lost-Carrier 81487 bytes_out 325830 81487 bytes_in 1315237 81487 station_ip 37.27.20.139 81487 port 15728697 81487 nas_port_type Virtual 81487 remote_ip 5.5.5.220 81490 username heydari 81490 unique_id port 81490 terminate_cause Lost-Carrier 81490 bytes_out 11824 81490 bytes_in 185182 81490 station_ip 5.120.53.27 81490 port 15728718 81490 nas_port_type Virtual 81490 remote_ip 5.5.5.210 81509 username amin.insta01 81509 unique_id port 81509 terminate_cause Lost-Carrier 81509 bytes_out 1228378 81509 bytes_in 14746438 81509 station_ip 5.119.138.234 81509 port 15728737 81509 nas_port_type Virtual 81509 remote_ip 5.5.5.199 81513 username ahmadi 81513 unique_id port 81513 terminate_cause User-Request 81513 bytes_out 0 81513 bytes_in 0 81513 station_ip 37.129.206.70 81513 port 15728743 81513 nas_port_type Virtual 81513 remote_ip 5.5.5.215 81519 username heydari 81519 unique_id port 81519 terminate_cause User-Request 81519 bytes_out 0 81519 bytes_in 0 81519 station_ip 5.120.190.151 81519 port 15728747 81519 nas_port_type Virtual 81519 remote_ip 5.5.5.194 81522 username avaanna 81522 unique_id port 81522 terminate_cause User-Request 81429 bytes_in 0 81429 station_ip 5.123.80.254 81429 port 15728655 81429 nas_port_type Virtual 81430 username mahbobeh 81430 unique_id port 81430 terminate_cause Lost-Carrier 81430 bytes_out 7051933 81430 bytes_in 147900489 81430 station_ip 113.203.55.65 81430 port 15728647 81430 nas_port_type Virtual 81430 remote_ip 5.5.5.253 81431 username madadi 81431 unique_id port 81431 terminate_cause Lost-Carrier 81431 bytes_out 330834 81431 bytes_in 1125429 81431 station_ip 5.119.143.24 81431 port 15728654 81431 nas_port_type Virtual 81431 remote_ip 5.5.5.249 81436 username alinezhad 81436 unique_id port 81436 terminate_cause User-Request 81436 bytes_out 319418 81436 bytes_in 3299187 81436 station_ip 83.123.213.112 81436 port 15728662 81436 nas_port_type Virtual 81436 remote_ip 5.5.5.243 81441 username farhad 81441 unique_id port 81441 terminate_cause Lost-Carrier 81441 bytes_out 11825414 81441 bytes_in 51617941 81441 station_ip 5.119.248.9 81441 port 15728657 81441 nas_port_type Virtual 81441 remote_ip 5.5.5.247 81442 username farhad 81442 unique_id port 81442 terminate_cause User-Request 81442 bytes_out 0 81442 bytes_in 0 81442 station_ip 5.119.143.169 81442 port 15728671 81442 nas_port_type Virtual 81442 remote_ip 5.5.5.238 81443 username alinezhad 81443 unique_id port 81443 terminate_cause User-Request 81443 bytes_out 1086048 81443 bytes_in 14952142 81443 station_ip 5.202.6.130 81443 port 15728667 81443 nas_port_type Virtual 81443 remote_ip 5.5.5.241 81444 username zoha 81444 unique_id port 81444 terminate_cause Lost-Carrier 81444 bytes_out 196622 81444 bytes_in 1122716 81444 station_ip 5.119.248.245 81444 port 15728669 81444 nas_port_type Virtual 81444 remote_ip 5.5.5.240 81449 username amirhosein 81449 unique_id port 81449 terminate_cause Lost-Carrier 81449 bytes_out 58597 81449 bytes_in 427609 81449 station_ip 5.119.19.196 81449 port 15728674 81449 nas_port_type Virtual 81449 remote_ip 5.5.5.236 81453 username hamideh 81453 unique_id port 81453 terminate_cause Lost-Carrier 81453 bytes_out 2511127 81453 bytes_in 72725148 81453 station_ip 5.119.195.221 81453 port 15728676 81453 nas_port_type Virtual 81453 remote_ip 5.5.5.235 81457 username madadi 81457 unique_id port 81457 terminate_cause Lost-Carrier 81457 bytes_out 376343 81457 bytes_in 2028479 81457 station_ip 5.120.146.175 81457 port 15728683 81457 nas_port_type Virtual 81457 remote_ip 5.5.5.229 81459 username soleymani 81459 unique_id port 81459 terminate_cause User-Request 81459 bytes_out 0 81459 bytes_in 0 81459 station_ip 5.126.64.227 81459 port 15728688 81459 nas_port_type Virtual 81459 remote_ip 5.5.5.226 81461 username reza 81461 unique_id port 81461 terminate_cause User-Request 81461 bytes_out 0 81461 bytes_in 0 81461 station_ip 83.122.8.236 81461 port 15728692 81461 nas_port_type Virtual 81461 remote_ip 5.5.5.224 81462 username soleymani 81462 unique_id port 81462 terminate_cause Lost-Carrier 81462 bytes_out 532139 81462 bytes_in 242863 81462 station_ip 5.126.64.227 81462 port 15728689 81462 nas_port_type Virtual 81462 remote_ip 5.5.5.226 81471 username goli 81471 kill_reason Absolute expiration date has reached 81471 unique_id port 81471 bytes_out 0 81471 bytes_in 0 81471 station_ip 113.203.6.119 81471 port 15728703 81471 nas_port_type Virtual 81475 username amirhosein 81475 unique_id port 81475 terminate_cause Lost-Carrier 81475 bytes_out 88844 81475 bytes_in 777331 81475 station_ip 5.120.1.79 81475 port 15728699 81475 nas_port_type Virtual 81475 remote_ip 5.5.5.222 81478 username farhad 81478 unique_id port 81478 terminate_cause Lost-Carrier 81478 bytes_out 14526519 81478 bytes_in 315715203 81468 station_ip 83.122.171.88 81468 port 15728700 81468 nas_port_type Virtual 81468 remote_ip 5.5.5.218 81470 username goli 81470 kill_reason Absolute expiration date has reached 81470 unique_id port 81470 bytes_out 0 81470 bytes_in 0 81470 station_ip 113.203.6.119 81470 port 15728702 81470 nas_port_type Virtual 81472 username goli 81472 kill_reason Absolute expiration date has reached 81472 unique_id port 81472 bytes_out 0 81472 bytes_in 0 81472 station_ip 113.203.6.119 81472 port 15728704 81472 nas_port_type Virtual 81481 username hamideh 81481 unique_id port 81481 terminate_cause User-Request 81481 bytes_out 82537 81481 bytes_in 143195 81481 station_ip 5.119.197.155 81481 port 15728712 81481 nas_port_type Virtual 81481 remote_ip 5.5.5.214 81483 username amirabbas 81483 unique_id port 81483 terminate_cause User-Request 81483 bytes_out 49588160 81483 bytes_in 1295104704 81483 station_ip 31.56.157.55 81483 port 15728679 81483 nas_port_type Virtual 81483 remote_ip 5.5.5.232 81484 username madadi 81484 unique_id port 81484 terminate_cause Lost-Carrier 81484 bytes_out 614579 81484 bytes_in 2578657 81484 station_ip 5.119.53.200 81484 port 15728698 81484 nas_port_type Virtual 81484 remote_ip 5.5.5.219 81488 username madadi 81488 unique_id port 81488 terminate_cause Lost-Carrier 81488 bytes_out 21908 81488 bytes_in 137762 81488 station_ip 5.119.61.4 81488 port 15728716 81488 nas_port_type Virtual 81488 remote_ip 5.5.5.211 81492 username amirhosein 81492 unique_id port 81492 terminate_cause Lost-Carrier 81492 bytes_out 1427562 81492 bytes_in 13945978 81492 station_ip 5.120.1.79 81492 port 15728715 81492 nas_port_type Virtual 81492 remote_ip 5.5.5.212 81496 username zamanialireza 81496 unique_id port 81496 terminate_cause Lost-Carrier 81496 bytes_out 1823342 81496 bytes_in 38734844 81496 station_ip 89.47.76.57 81496 port 15728724 81496 nas_port_type Virtual 81496 remote_ip 5.5.5.207 81501 username goli 81501 kill_reason Absolute expiration date has reached 81501 unique_id port 81501 bytes_out 0 81501 bytes_in 0 81501 station_ip 113.203.46.183 81501 port 15728733 81501 nas_port_type Virtual 81504 username aminvpn 81504 kill_reason Another user logged on this global unique id 81504 mac 81504 bytes_out 0 81504 bytes_in 0 81504 station_ip 46.100.222.213 81504 port 14 81504 unique_id port 81504 remote_ip 10.8.0.6 81510 username heydari 81510 unique_id port 81510 terminate_cause Lost-Carrier 81510 bytes_out 529852 81510 bytes_in 3592233 81510 station_ip 37.27.50.237 81510 port 15728731 81510 nas_port_type Virtual 81510 remote_ip 5.5.5.202 81514 username ahmadipour 81514 unique_id port 81514 terminate_cause Lost-Carrier 81514 bytes_out 1217179 81514 bytes_in 18320060 81514 station_ip 113.203.8.195 81514 port 15728744 81514 nas_port_type Virtual 81514 remote_ip 5.5.5.213 81520 username madadi 81520 unique_id port 81520 terminate_cause User-Request 81520 bytes_out 1554548 81520 bytes_in 3447560 81520 station_ip 5.119.218.215 81520 port 15728736 81520 nas_port_type Virtual 81520 remote_ip 5.5.5.200 81526 username avaanna 81526 unique_id port 81526 terminate_cause User-Request 81526 bytes_out 27868 81526 bytes_in 116955 81526 station_ip 37.129.79.132 81526 port 15728756 81526 nas_port_type Virtual 81526 remote_ip 5.5.5.192 81528 username avaanna 81528 unique_id port 81528 terminate_cause User-Request 81528 bytes_out 60033 81528 bytes_in 377974 81528 station_ip 37.129.79.132 81528 port 15728758 81528 nas_port_type Virtual 81528 remote_ip 5.5.5.192 81531 username heydari 81531 unique_id port 81531 terminate_cause Lost-Carrier 81531 bytes_out 2217960 81531 bytes_in 49356750 81531 station_ip 37.27.22.130 81478 station_ip 5.119.246.173 81478 port 15728685 81478 nas_port_type Virtual 81478 remote_ip 5.5.5.228 81480 username sobhan 81480 unique_id port 81480 terminate_cause User-Request 81480 bytes_out 983973 81480 bytes_in 18135246 81480 station_ip 5.120.127.28 81480 port 15728710 81480 nas_port_type Virtual 81480 remote_ip 5.5.5.216 81489 username hamideh 81489 unique_id port 81489 terminate_cause Lost-Carrier 81489 bytes_out 335671 81489 bytes_in 5590567 81489 station_ip 5.119.197.155 81489 port 15728717 81489 nas_port_type Virtual 81489 remote_ip 5.5.5.214 81491 username asadi 81491 unique_id port 81491 terminate_cause User-Request 81491 bytes_out 163950 81491 bytes_in 2901659 81491 station_ip 83.122.171.88 81491 port 15728720 81491 nas_port_type Virtual 81491 remote_ip 5.5.5.218 81493 username hamideh 81493 unique_id port 81493 terminate_cause Lost-Carrier 81493 bytes_out 184120 81493 bytes_in 196892 81493 station_ip 5.119.197.155 81493 port 15728721 81493 nas_port_type Virtual 81493 remote_ip 5.5.5.214 81495 username amirhosein 81495 unique_id port 81495 terminate_cause Lost-Carrier 81495 bytes_out 14823 81495 bytes_in 133094 81495 station_ip 5.120.1.79 81495 port 15728723 81495 nas_port_type Virtual 81495 remote_ip 5.5.5.217 81497 username ahmadipour 81497 unique_id port 81497 terminate_cause Lost-Carrier 81497 bytes_out 1266932 81497 bytes_in 28190136 81497 station_ip 113.203.8.195 81497 port 15728714 81497 nas_port_type Virtual 81497 remote_ip 5.5.5.213 81499 username heydari 81499 unique_id port 81499 terminate_cause Lost-Carrier 81499 bytes_out 120572 81499 bytes_in 905921 81499 station_ip 188.245.90.31 81499 port 15728719 81499 nas_port_type Virtual 81499 remote_ip 5.5.5.209 81502 username goli 81502 kill_reason Absolute expiration date has reached 81502 unique_id port 81502 bytes_out 0 81502 bytes_in 0 81502 station_ip 113.203.46.183 81502 port 15728734 81502 nas_port_type Virtual 81503 username amirhosein 81503 unique_id port 81503 terminate_cause Lost-Carrier 81503 bytes_out 324160 81503 bytes_in 2224922 81503 station_ip 5.120.1.79 81503 port 15728728 81503 nas_port_type Virtual 81503 remote_ip 5.5.5.212 81506 username caferibar 81506 unique_id port 81506 terminate_cause User-Request 81506 bytes_out 5061951 81506 bytes_in 85690171 81506 station_ip 5.120.159.135 81506 port 15728722 81506 nas_port_type Virtual 81506 remote_ip 5.5.5.208 81508 username amirhosein 81508 unique_id port 81508 terminate_cause Lost-Carrier 81508 bytes_out 694733 81508 bytes_in 1304265 81508 station_ip 5.120.1.79 81508 port 15728732 81508 nas_port_type Virtual 81508 remote_ip 5.5.5.201 81517 username zamanialireza 81517 unique_id port 81517 terminate_cause User-Request 81517 bytes_out 0 81517 bytes_in 0 81517 station_ip 37.129.5.125 81517 port 15728746 81517 nas_port_type Virtual 81517 remote_ip 5.5.5.195 81521 username farhad 81521 unique_id port 81521 terminate_cause Lost-Carrier 81521 bytes_out 12337601 81521 bytes_in 274542927 81521 station_ip 5.120.55.168 81521 port 15728739 81521 nas_port_type Virtual 81521 remote_ip 5.5.5.198 81524 username madadi 81524 unique_id port 81524 terminate_cause User-Request 81524 bytes_out 0 81524 bytes_in 0 81524 station_ip 5.119.218.215 81524 port 15728752 81524 nas_port_type Virtual 81524 remote_ip 5.5.5.200 81525 username avaanna 81525 unique_id port 81525 terminate_cause User-Request 81525 bytes_out 0 81525 bytes_in 0 81525 station_ip 37.129.79.132 81525 port 15728754 81525 nas_port_type Virtual 81525 remote_ip 5.5.5.192 81529 username madadi 81529 unique_id port 81529 terminate_cause Lost-Carrier 81529 bytes_out 48809 81529 bytes_in 283151 81486 nas_port_type Virtual 81486 remote_ip 5.5.5.214 81494 username zamanialireza 81494 unique_id port 81494 terminate_cause User-Request 81494 bytes_out 1807767 81494 bytes_in 29844516 81494 station_ip 83.122.214.5 81494 port 15728725 81494 nas_port_type Virtual 81494 remote_ip 5.5.5.206 81498 username madadi 81498 unique_id port 81498 terminate_cause Lost-Carrier 81498 bytes_out 175658 81498 bytes_in 493105 81498 station_ip 5.119.101.3 81498 port 15728726 81498 nas_port_type Virtual 81498 remote_ip 5.5.5.205 81500 username zamanialireza 81500 unique_id port 81500 terminate_cause User-Request 81500 bytes_out 4016615 81500 bytes_in 129998610 81500 station_ip 89.34.42.201 81500 port 15728729 81500 nas_port_type Virtual 81500 remote_ip 5.5.5.204 81505 username asadi 81505 unique_id port 81505 terminate_cause User-Request 81505 bytes_out 241177 81505 bytes_in 5218871 81505 station_ip 83.122.171.88 81505 port 15728735 81505 nas_port_type Virtual 81505 remote_ip 5.5.5.218 81507 username amirabbas 81507 unique_id port 81507 terminate_cause User-Request 81507 bytes_out 14601655 81507 bytes_in 385361342 81507 station_ip 31.56.157.55 81507 port 15728727 81507 nas_port_type Virtual 81507 remote_ip 5.5.5.232 81511 username amirhosein 81511 unique_id port 81511 terminate_cause Lost-Carrier 81511 bytes_out 12890 81511 bytes_in 152062 81511 station_ip 5.120.1.79 81511 port 15728741 81511 nas_port_type Virtual 81511 remote_ip 5.5.5.201 81512 username amin.insta01 81512 unique_id port 81512 terminate_cause Lost-Carrier 81512 bytes_out 116977 81512 bytes_in 1552619 81512 station_ip 5.119.151.203 81512 port 15728740 81512 nas_port_type Virtual 81512 remote_ip 5.5.5.197 81515 username ahmadi 81515 unique_id port 81515 terminate_cause User-Request 81515 bytes_out 0 81515 bytes_in 0 81515 station_ip 37.129.206.70 81515 port 15728745 81515 nas_port_type Virtual 81515 remote_ip 5.5.5.215 81516 username zoha 81516 unique_id port 81516 terminate_cause Lost-Carrier 81516 bytes_out 851466 81516 bytes_in 5537392 81516 station_ip 5.119.252.141 81516 port 15728742 81516 nas_port_type Virtual 81516 remote_ip 5.5.5.196 81518 username amirabbas 81518 unique_id port 81518 terminate_cause User-Request 81518 bytes_out 25470914 81518 bytes_in 677202026 81518 station_ip 31.56.157.55 81518 port 15728738 81518 nas_port_type Virtual 81518 remote_ip 5.5.5.232 81523 username avaanna 81523 unique_id port 81523 terminate_cause User-Request 81523 bytes_out 92969 81523 bytes_in 171219 81523 station_ip 37.129.79.132 81523 port 15728751 81523 nas_port_type Virtual 81523 remote_ip 5.5.5.192 81530 username amirabbas 81530 unique_id port 81530 terminate_cause User-Request 81530 bytes_out 11737282 81530 bytes_in 322853313 81530 station_ip 31.56.157.55 81530 port 15728749 81530 nas_port_type Virtual 81530 remote_ip 5.5.5.232 81537 username madadi 81537 unique_id port 81537 terminate_cause Lost-Carrier 81537 bytes_out 15922 81537 bytes_in 136474 81537 station_ip 5.120.183.50 81537 port 15728765 81537 nas_port_type Virtual 81537 remote_ip 5.5.5.187 81540 username heydari 81540 unique_id port 81540 terminate_cause Lost-Carrier 81540 bytes_out 34865 81540 bytes_in 351028 81540 station_ip 37.27.13.247 81540 port 15728766 81540 nas_port_type Virtual 81540 remote_ip 5.5.5.186 81548 username farhad 81548 unique_id port 81548 terminate_cause User-Request 81548 bytes_out 4642990 81548 bytes_in 67573873 81548 station_ip 5.120.138.56 81548 port 15728773 81548 nas_port_type Virtual 81548 remote_ip 5.5.5.183 81554 username aminvpn 81554 mac 81554 bytes_out 0 81554 bytes_in 0 81554 station_ip 46.100.222.213 81554 port 14 81522 bytes_out 0 81522 bytes_in 0 81522 station_ip 37.129.79.132 81522 port 15728750 81522 nas_port_type Virtual 81522 remote_ip 5.5.5.192 81527 username avaanna 81527 unique_id port 81527 terminate_cause User-Request 81527 bytes_out 26868 81527 bytes_in 96592 81527 station_ip 37.129.79.132 81527 port 15728757 81527 nas_port_type Virtual 81527 remote_ip 5.5.5.192 81532 username madadi 81532 unique_id port 81532 terminate_cause Lost-Carrier 81532 bytes_out 12888 81532 bytes_in 146018 81532 station_ip 5.119.124.220 81532 port 15728759 81532 nas_port_type Virtual 81532 remote_ip 5.5.5.191 81533 username mahbobeh 81533 kill_reason Maximum check online fails reached 81533 unique_id port 81533 bytes_out 4150298 81533 bytes_in 57112572 81533 station_ip 113.203.109.125 81533 port 15728673 81533 nas_port_type Virtual 81533 remote_ip 5.5.5.237 81542 username alinezhad 81542 unique_id port 81542 terminate_cause User-Request 81542 bytes_out 202427 81542 bytes_in 689010 81542 station_ip 5.202.19.26 81542 port 15728774 81542 nas_port_type Virtual 81542 remote_ip 5.5.5.184 81543 username hamideh 81543 unique_id port 81543 terminate_cause Lost-Carrier 81543 bytes_out 113735 81543 bytes_in 170180 81543 station_ip 5.119.197.155 81543 port 15728775 81543 nas_port_type Virtual 81543 remote_ip 5.5.5.214 81544 username madadi 81544 unique_id port 81544 terminate_cause User-Request 81544 bytes_out 0 81544 bytes_in 0 81544 station_ip 5.120.122.219 81544 port 15728777 81544 nas_port_type Virtual 81544 remote_ip 5.5.5.181 81550 username amirhosein 81550 unique_id port 81550 terminate_cause Lost-Carrier 81550 bytes_out 88781 81550 bytes_in 236382 81550 station_ip 5.120.1.79 81550 port 15728779 81550 nas_port_type Virtual 81550 remote_ip 5.5.5.201 81553 username amirhosein 81553 unique_id port 81553 terminate_cause Lost-Carrier 81553 bytes_out 18478 81553 bytes_in 209200 81553 station_ip 5.120.1.79 81553 port 15728781 81553 nas_port_type Virtual 81553 remote_ip 5.5.5.189 81559 username alinezhad 81559 unique_id port 81559 terminate_cause User-Request 81559 bytes_out 196522 81559 bytes_in 4417792 81559 station_ip 5.202.19.26 81559 port 15728789 81559 nas_port_type Virtual 81559 remote_ip 5.5.5.184 81563 username farhad 81563 unique_id port 81563 terminate_cause User-Request 81563 bytes_out 0 81563 bytes_in 0 81563 station_ip 5.119.165.120 81563 port 15728792 81563 nas_port_type Virtual 81563 remote_ip 5.5.5.173 81564 username amirhosein 81564 unique_id port 81564 terminate_cause Lost-Carrier 81564 bytes_out 120907 81564 bytes_in 467742 81564 station_ip 5.120.1.79 81564 port 15728790 81564 nas_port_type Virtual 81564 remote_ip 5.5.5.179 81566 username hamideh 81566 unique_id port 81566 terminate_cause User-Request 81566 bytes_out 41912 81566 bytes_in 137636 81566 station_ip 5.119.197.155 81566 port 15728799 81566 nas_port_type Virtual 81566 remote_ip 5.5.5.214 81568 username amirhosein 81568 kill_reason Maximum number of concurrent logins reached 81568 unique_id port 81568 bytes_out 0 81568 bytes_in 0 81568 station_ip 5.120.1.79 81568 port 15728805 81568 nas_port_type Virtual 81572 username zamanialireza 81572 unique_id port 81572 terminate_cause User-Request 81572 bytes_out 939012 81572 bytes_in 26682258 81572 station_ip 83.123.163.224 81572 port 15728804 81572 nas_port_type Virtual 81572 remote_ip 5.5.5.167 81574 username zamanialireza 81574 unique_id port 81574 terminate_cause User-Request 81574 bytes_out 1241212 81574 bytes_in 48411816 81574 station_ip 83.122.253.78 81574 port 15728806 81574 nas_port_type Virtual 81574 remote_ip 5.5.5.166 81578 username amirhosein 81578 unique_id port 81578 terminate_cause Lost-Carrier 81529 station_ip 5.119.218.215 81529 port 15728753 81529 nas_port_type Virtual 81529 remote_ip 5.5.5.200 81534 username amirhosein 81534 unique_id port 81534 terminate_cause Lost-Carrier 81534 bytes_out 134657 81534 bytes_in 375008 81534 station_ip 5.120.1.79 81534 port 15728760 81534 nas_port_type Virtual 81534 remote_ip 5.5.5.201 81536 username forozande 81536 unique_id port 81536 terminate_cause User-Request 81536 bytes_out 435138 81536 bytes_in 1909655 81536 station_ip 37.129.70.158 81536 port 15728763 81536 nas_port_type Virtual 81536 remote_ip 5.5.5.188 81539 username alinezhad 81539 unique_id port 81539 terminate_cause User-Request 81539 bytes_out 206724 81539 bytes_in 2570753 81539 station_ip 5.202.19.26 81539 port 15728772 81539 nas_port_type Virtual 81539 remote_ip 5.5.5.184 81541 username madadi 81541 unique_id port 81541 terminate_cause Lost-Carrier 81541 bytes_out 61167 81541 bytes_in 238368 81541 station_ip 5.120.66.22 81541 port 15728771 81541 nas_port_type Virtual 81541 remote_ip 5.5.5.185 81547 username madadi 81547 unique_id port 81547 terminate_cause Lost-Carrier 81547 bytes_out 9103 81547 bytes_in 125846 81547 station_ip 5.120.122.219 81547 port 15728778 81547 nas_port_type Virtual 81547 remote_ip 5.5.5.181 81551 username forozande 81551 unique_id port 81551 terminate_cause User-Request 81551 bytes_out 27852 81551 bytes_in 63720 81551 station_ip 83.123.47.48 81551 port 15728783 81551 nas_port_type Virtual 81551 remote_ip 5.5.5.178 81560 username forozande 81560 unique_id port 81560 terminate_cause User-Request 81560 bytes_out 35142 81560 bytes_in 49834 81560 station_ip 83.122.150.128 81560 port 15728791 81560 nas_port_type Virtual 81560 remote_ip 5.5.5.174 81561 username farhad 81561 unique_id port 81561 terminate_cause User-Request 81561 bytes_out 3291371 81561 bytes_in 83019794 81561 station_ip 5.120.176.189 81561 port 15728788 81561 nas_port_type Virtual 81561 remote_ip 5.5.5.175 81565 username amirhosein 81565 unique_id port 81565 terminate_cause Lost-Carrier 81565 bytes_out 737057 81565 bytes_in 8401705 81565 station_ip 5.120.1.79 81565 port 15728795 81565 nas_port_type Virtual 81565 remote_ip 5.5.5.171 81567 username farhad 81567 unique_id port 81567 terminate_cause Lost-Carrier 81567 bytes_out 3431514 81567 bytes_in 38045140 81567 station_ip 5.119.165.120 81567 port 15728794 81567 nas_port_type Virtual 81567 remote_ip 5.5.5.173 81569 username amirhosein 81569 kill_reason Maximum number of concurrent logins reached 81569 unique_id port 81569 bytes_out 0 81569 bytes_in 0 81569 station_ip 5.120.1.79 81569 port 15728807 81569 nas_port_type Virtual 81580 username amirhosein 81580 unique_id port 81580 terminate_cause Lost-Carrier 81580 bytes_out 70915 81580 bytes_in 182603 81580 station_ip 5.120.1.79 81580 port 15728812 81580 nas_port_type Virtual 81580 remote_ip 5.5.5.168 81597 username forozande 81597 unique_id port 81597 terminate_cause User-Request 81597 bytes_out 246960 81597 bytes_in 3351518 81597 station_ip 83.123.45.40 81597 port 15728832 81597 nas_port_type Virtual 81597 remote_ip 5.5.5.157 81606 username amirhosein 81606 kill_reason Maximum number of concurrent logins reached 81606 unique_id port 81606 bytes_out 0 81606 bytes_in 0 81606 station_ip 5.120.1.79 81606 port 15728842 81606 nas_port_type Virtual 81608 username amirhosein 81608 kill_reason Maximum number of concurrent logins reached 81608 unique_id port 81608 bytes_out 0 81608 bytes_in 0 81608 station_ip 5.120.1.79 81608 port 15728844 81608 nas_port_type Virtual 81617 username hamideh 81617 unique_id port 81617 terminate_cause Lost-Carrier 81617 bytes_out 515678 81617 bytes_in 1346110 81617 station_ip 5.119.4.115 81531 port 15728748 81531 nas_port_type Virtual 81531 remote_ip 5.5.5.193 81535 username madadi 81535 unique_id port 81535 terminate_cause Lost-Carrier 81535 bytes_out 72030 81535 bytes_in 289029 81535 station_ip 5.120.171.127 81535 port 15728761 81535 nas_port_type Virtual 81535 remote_ip 5.5.5.190 81538 username hamideh 81538 unique_id port 81538 terminate_cause Lost-Carrier 81538 bytes_out 509379 81538 bytes_in 11733337 81538 station_ip 5.119.197.155 81538 port 15728770 81538 nas_port_type Virtual 81538 remote_ip 5.5.5.214 81545 username caferibar 81545 unique_id port 81545 terminate_cause Lost-Carrier 81545 bytes_out 9773780 81545 bytes_in 2668143 81545 station_ip 5.119.209.201 81545 port 15728776 81545 nas_port_type Virtual 81545 remote_ip 5.5.5.182 81546 username amirhosein 81546 unique_id port 81546 terminate_cause Lost-Carrier 81546 bytes_out 2048830 81546 bytes_in 29537387 81546 station_ip 5.120.1.79 81546 port 15728762 81546 nas_port_type Virtual 81546 remote_ip 5.5.5.189 81549 username aminvpn 81549 kill_reason Another user logged on this global unique id 81549 mac 81549 bytes_out 0 81549 bytes_in 0 81549 station_ip 46.100.222.213 81549 port 14 81549 unique_id port 81552 username ahmadipour 81552 unique_id port 81552 terminate_cause Lost-Carrier 81552 bytes_out 3604646 81552 bytes_in 41300372 81552 station_ip 113.203.74.147 81552 port 15728780 81552 nas_port_type Virtual 81552 remote_ip 5.5.5.180 81557 username ahmadi 81557 unique_id port 81557 terminate_cause User-Request 81557 bytes_out 0 81557 bytes_in 0 81557 station_ip 37.129.208.214 81557 port 15728787 81557 nas_port_type Virtual 81557 remote_ip 5.5.5.176 81570 username amirhosein 81570 kill_reason Maximum number of concurrent logins reached 81570 unique_id port 81570 bytes_out 0 81570 bytes_in 0 81570 station_ip 5.120.1.79 81570 port 15728808 81570 nas_port_type Virtual 81573 username alinezhad 81573 unique_id port 81573 terminate_cause User-Request 81573 bytes_out 0 81573 bytes_in 0 81573 station_ip 5.202.19.26 81573 port 15728809 81573 nas_port_type Virtual 81573 remote_ip 5.5.5.184 81576 username amirhosein 81576 unique_id port 81576 terminate_cause Lost-Carrier 81576 bytes_out 30273 81576 bytes_in 233517 81576 station_ip 5.120.1.79 81576 port 15728803 81576 nas_port_type Virtual 81576 remote_ip 5.5.5.168 81582 username mohammadaskari 81582 unique_id port 81582 terminate_cause User-Request 81582 bytes_out 191799 81582 bytes_in 1832521 81582 station_ip 83.123.76.74 81582 port 15728815 81582 nas_port_type Virtual 81582 remote_ip 5.5.5.164 81588 username kamali 81588 unique_id port 81588 terminate_cause User-Request 81588 bytes_out 26598 81588 bytes_in 140944 81588 station_ip 113.203.88.27 81588 port 15728821 81588 nas_port_type Virtual 81588 remote_ip 5.5.5.163 81591 username zoha 81591 kill_reason Relative expiration date has reached 81591 unique_id port 81591 bytes_out 0 81591 bytes_in 0 81591 station_ip 5.119.116.47 81591 port 15728825 81591 nas_port_type Virtual 81595 username amirhosein 81595 unique_id port 81595 terminate_cause Lost-Carrier 81595 bytes_out 7355 81595 bytes_in 140218 81595 station_ip 5.120.1.79 81595 port 15728829 81595 nas_port_type Virtual 81595 remote_ip 5.5.5.159 81596 username caferibar 81596 unique_id port 81596 terminate_cause User-Request 81596 bytes_out 964072 81596 bytes_in 8010161 81596 station_ip 5.120.24.254 81596 port 15728830 81596 nas_port_type Virtual 81596 remote_ip 5.5.5.158 81605 username alinezhad 81605 unique_id port 81605 terminate_cause User-Request 81605 bytes_out 0 81605 bytes_in 0 81605 station_ip 5.202.19.26 81605 port 15728839 81605 nas_port_type Virtual 81554 unique_id port 81555 username amirhosein 81555 unique_id port 81555 terminate_cause Lost-Carrier 81555 bytes_out 10829 81555 bytes_in 135051 81555 station_ip 5.120.1.79 81555 port 15728782 81555 nas_port_type Virtual 81555 remote_ip 5.5.5.179 81556 username amirhosein 81556 unique_id port 81556 terminate_cause Lost-Carrier 81556 bytes_out 303659 81556 bytes_in 260446 81556 station_ip 5.120.1.79 81556 port 15728784 81556 nas_port_type Virtual 81556 remote_ip 5.5.5.189 81558 username amirhosein 81558 unique_id port 81558 terminate_cause Lost-Carrier 81558 bytes_out 50794 81558 bytes_in 343959 81558 station_ip 5.120.1.79 81558 port 15728786 81558 nas_port_type Virtual 81558 remote_ip 5.5.5.179 81562 username heydari 81562 unique_id port 81562 terminate_cause Lost-Carrier 81562 bytes_out 106342 81562 bytes_in 733984 81562 station_ip 188.245.88.160 81562 port 15728785 81562 nas_port_type Virtual 81562 remote_ip 5.5.5.177 81571 username amirhosein 81571 unique_id port 81571 terminate_cause Lost-Carrier 81571 bytes_out 50217 81571 bytes_in 260236 81571 station_ip 5.120.1.79 81571 port 15728798 81571 nas_port_type Virtual 81571 remote_ip 5.5.5.171 81575 username hamideh 81575 unique_id port 81575 terminate_cause Lost-Carrier 81575 bytes_out 22952 81575 bytes_in 327633 81575 station_ip 5.119.197.155 81575 port 15728801 81575 nas_port_type Virtual 81575 remote_ip 5.5.5.169 81577 username ahmadi 81577 unique_id port 81577 terminate_cause User-Request 81577 bytes_out 28162 81577 bytes_in 225158 81577 station_ip 37.129.206.106 81577 port 15728811 81577 nas_port_type Virtual 81577 remote_ip 5.5.5.165 81579 username ahmadi 81579 unique_id port 81579 terminate_cause User-Request 81579 bytes_out 0 81579 bytes_in 0 81579 station_ip 37.129.206.106 81579 port 15728813 81579 nas_port_type Virtual 81579 remote_ip 5.5.5.165 81583 username mahbobeh 81583 unique_id port 81583 terminate_cause Lost-Carrier 81583 bytes_out 197396 81583 bytes_in 3565907 81583 station_ip 113.203.109.125 81583 port 15728796 81583 nas_port_type Virtual 81583 remote_ip 5.5.5.237 81584 username mobina 81584 kill_reason Relative expiration date has reached 81584 unique_id port 81584 bytes_out 0 81584 bytes_in 0 81584 station_ip 151.234.166.216 81584 port 15728816 81584 nas_port_type Virtual 81585 username kamali 81585 unique_id port 81585 terminate_cause User-Request 81585 bytes_out 166444 81585 bytes_in 1538159 81585 station_ip 113.203.88.27 81585 port 15728817 81585 nas_port_type Virtual 81585 remote_ip 5.5.5.163 81586 username kamali 81586 unique_id port 81586 terminate_cause User-Request 81586 bytes_out 55926 81586 bytes_in 127296 81586 station_ip 113.203.88.27 81586 port 15728820 81586 nas_port_type Virtual 81586 remote_ip 5.5.5.163 81592 username zoha 81592 kill_reason Relative expiration date has reached 81592 unique_id port 81592 bytes_out 0 81592 bytes_in 0 81592 station_ip 5.119.116.47 81592 port 15728826 81592 nas_port_type Virtual 81594 username zamanialireza 81594 kill_reason Maximum check online fails reached 81594 unique_id port 81594 bytes_out 2789629 81594 bytes_in 18035556 81594 station_ip 83.123.163.224 81594 port 15728831 81594 nas_port_type Virtual 81594 remote_ip 5.5.5.167 81598 username ahmadipour 81598 unique_id port 81598 terminate_cause Lost-Carrier 81598 bytes_out 1495926 81598 bytes_in 28213124 81598 station_ip 113.203.23.119 81598 port 15728828 81598 nas_port_type Virtual 81598 remote_ip 5.5.5.160 81599 username forozande 81599 unique_id port 81599 terminate_cause User-Request 81599 bytes_out 606124 81599 bytes_in 13986708 81599 station_ip 83.123.45.40 81599 port 15728834 81599 nas_port_type Virtual 81578 bytes_out 117314 81578 bytes_in 243142 81578 station_ip 5.120.1.79 81578 port 15728810 81578 nas_port_type Virtual 81578 remote_ip 5.5.5.171 81581 username asadi 81581 unique_id port 81581 terminate_cause User-Request 81581 bytes_out 311353 81581 bytes_in 8595770 81581 station_ip 83.122.171.88 81581 port 15728814 81581 nas_port_type Virtual 81581 remote_ip 5.5.5.218 81587 username madadi 81587 unique_id port 81587 terminate_cause Lost-Carrier 81587 bytes_out 75703 81587 bytes_in 492398 81587 station_ip 5.119.127.204 81587 port 15728818 81587 nas_port_type Virtual 81587 remote_ip 5.5.5.162 81589 username amirhosein 81589 unique_id port 81589 terminate_cause Lost-Carrier 81589 bytes_out 98447 81589 bytes_in 1339943 81589 station_ip 5.120.1.79 81589 port 15728822 81589 nas_port_type Virtual 81589 remote_ip 5.5.5.168 81590 username zamanialireza 81590 unique_id port 81590 terminate_cause User-Request 81590 bytes_out 398746 81590 bytes_in 1020995 81590 station_ip 83.123.163.224 81590 port 15728823 81590 nas_port_type Virtual 81590 remote_ip 5.5.5.167 81593 username amirhosein 81593 unique_id port 81593 terminate_cause Lost-Carrier 81593 bytes_out 19565 81593 bytes_in 151683 81593 station_ip 5.120.1.79 81593 port 15728827 81593 nas_port_type Virtual 81593 remote_ip 5.5.5.168 81600 username aminvpn 81600 unique_id port 81600 terminate_cause Lost-Carrier 81600 bytes_out 1955493 81600 bytes_in 30539416 81600 station_ip 46.100.222.213 81600 port 15728819 81600 nas_port_type Virtual 81600 remote_ip 5.5.5.161 81602 username mohammadaskari 81602 unique_id port 81602 terminate_cause User-Request 81602 bytes_out 162565 81602 bytes_in 1977000 81602 station_ip 83.123.76.74 81602 port 15728837 81602 nas_port_type Virtual 81602 remote_ip 5.5.5.164 81603 username amirhosein 81603 kill_reason Maximum number of concurrent logins reached 81603 unique_id port 81603 bytes_out 0 81603 bytes_in 0 81603 station_ip 5.120.1.79 81603 port 15728840 81603 nas_port_type Virtual 81610 username amirhosein 81610 kill_reason Maximum number of concurrent logins reached 81610 unique_id port 81610 bytes_out 0 81610 bytes_in 0 81610 station_ip 5.120.1.79 81610 port 15728846 81610 nas_port_type Virtual 81612 username amirhosein 81612 kill_reason Maximum number of concurrent logins reached 81612 unique_id port 81612 bytes_out 0 81612 bytes_in 0 81612 station_ip 5.120.1.79 81612 port 15728848 81612 nas_port_type Virtual 81615 username alirezazamani 81615 kill_reason Relative expiration date has reached 81615 unique_id port 81615 bytes_out 0 81615 bytes_in 0 81615 station_ip 113.203.26.35 81615 port 15728850 81615 nas_port_type Virtual 81621 username ahmadi 81621 unique_id port 81621 terminate_cause User-Request 81621 bytes_out 39197 81621 bytes_in 368350 81621 station_ip 37.129.150.210 81621 port 15728857 81621 nas_port_type Virtual 81621 remote_ip 5.5.5.151 81624 username amirabbas 81624 unique_id port 81624 terminate_cause User-Request 81624 bytes_out 53757032 81624 bytes_in 1540229317 81624 station_ip 31.56.157.55 81624 port 15728800 81624 nas_port_type Virtual 81624 remote_ip 5.5.5.232 81634 username farhad 81634 kill_reason Maximum check online fails reached 81634 unique_id port 81634 bytes_out 406597 81634 bytes_in 10721815 81634 station_ip 5.119.160.22 81634 port 15728866 81634 nas_port_type Virtual 81634 remote_ip 5.5.5.145 81637 username farhad 81637 unique_id port 81637 terminate_cause Lost-Carrier 81637 bytes_out 5562551 81637 bytes_in 70719804 81637 station_ip 5.120.153.231 81637 port 15728859 81637 nas_port_type Virtual 81637 remote_ip 5.5.5.150 81644 username mohammadaskari 81644 unique_id port 81644 terminate_cause User-Request 81644 bytes_out 39249 81599 remote_ip 5.5.5.157 81601 username forozande 81601 unique_id port 81601 terminate_cause User-Request 81601 bytes_out 315711 81601 bytes_in 7517889 81601 station_ip 83.123.45.40 81601 port 15728835 81601 nas_port_type Virtual 81601 remote_ip 5.5.5.157 81604 username amirhosein 81604 kill_reason Maximum number of concurrent logins reached 81604 unique_id port 81604 bytes_out 0 81604 bytes_in 0 81604 station_ip 5.120.1.79 81604 port 15728841 81604 nas_port_type Virtual 81611 username amirhosein 81611 kill_reason Maximum number of concurrent logins reached 81611 unique_id port 81611 bytes_out 0 81611 bytes_in 0 81611 station_ip 5.120.1.79 81611 port 15728847 81611 nas_port_type Virtual 81613 username amirhosein 81613 unique_id port 81613 terminate_cause Lost-Carrier 81613 bytes_out 20579 81613 bytes_in 142797 81613 station_ip 5.120.1.79 81613 port 15728836 81613 nas_port_type Virtual 81613 remote_ip 5.5.5.159 81614 username alirezazamani 81614 kill_reason Relative expiration date has reached 81614 unique_id port 81614 bytes_out 0 81614 bytes_in 0 81614 station_ip 113.203.26.35 81614 port 15728849 81614 nas_port_type Virtual 81616 username amirhosein 81616 unique_id port 81616 terminate_cause Lost-Carrier 81616 bytes_out 11596 81616 bytes_in 133133 81616 station_ip 5.120.1.79 81616 port 15728838 81616 nas_port_type Virtual 81616 remote_ip 5.5.5.156 81620 username hamideh 81620 unique_id port 81620 terminate_cause Lost-Carrier 81620 bytes_out 22440 81620 bytes_in 139350 81620 station_ip 5.119.4.115 81620 port 15728854 81620 nas_port_type Virtual 81620 remote_ip 5.5.5.153 81622 username ahmadipour 81622 unique_id port 81622 terminate_cause Lost-Carrier 81622 bytes_out 23120 81622 bytes_in 50878 81622 station_ip 113.203.22.179 81622 port 15728856 81622 nas_port_type Virtual 81622 remote_ip 5.5.5.152 81623 username amirhosein 81623 unique_id port 81623 terminate_cause Lost-Carrier 81623 bytes_out 71551 81623 bytes_in 198472 81623 station_ip 5.120.1.79 81623 port 15728855 81623 nas_port_type Virtual 81623 remote_ip 5.5.5.156 81625 username forozande 81625 unique_id port 81625 terminate_cause User-Request 81625 bytes_out 0 81625 bytes_in 0 81625 station_ip 83.123.90.143 81625 port 15728861 81625 nas_port_type Virtual 81625 remote_ip 5.5.5.149 81627 username heydari 81627 unique_id port 81627 terminate_cause Lost-Carrier 81627 bytes_out 1144126 81627 bytes_in 7446125 81627 station_ip 37.27.46.36 81627 port 15728797 81627 nas_port_type Virtual 81627 remote_ip 5.5.5.170 81630 username forozande 81630 unique_id port 81630 terminate_cause User-Request 81630 bytes_out 428292 81630 bytes_in 13371132 81630 station_ip 37.129.76.242 81630 port 15728864 81630 nas_port_type Virtual 81630 remote_ip 5.5.5.147 81632 username mohammadaskari 81632 unique_id port 81632 terminate_cause User-Request 81632 bytes_out 163846 81632 bytes_in 1403844 81632 station_ip 37.129.118.79 81632 port 15728865 81632 nas_port_type Virtual 81632 remote_ip 5.5.5.146 81633 username mohammadaskari 81633 unique_id port 81633 terminate_cause User-Request 81633 bytes_out 234850 81633 bytes_in 2784995 81633 station_ip 37.129.118.79 81633 port 15728867 81633 nas_port_type Virtual 81633 remote_ip 5.5.5.146 81635 username caferibar 81635 unique_id port 81635 terminate_cause User-Request 81635 bytes_out 7120535 81635 bytes_in 120852976 81635 station_ip 5.120.24.254 81635 port 15728858 81635 nas_port_type Virtual 81635 remote_ip 5.5.5.158 81636 username caferibar 81636 unique_id port 81636 terminate_cause User-Request 81636 bytes_out 0 81636 bytes_in 0 81636 station_ip 5.120.24.254 81636 port 15728868 81636 nas_port_type Virtual 81636 remote_ip 5.5.5.158 81605 remote_ip 5.5.5.184 81607 username amirhosein 81607 kill_reason Maximum number of concurrent logins reached 81607 unique_id port 81607 bytes_out 0 81607 bytes_in 0 81607 station_ip 5.120.1.79 81607 port 15728843 81607 nas_port_type Virtual 81609 username amirhosein 81609 kill_reason Maximum number of concurrent logins reached 81609 unique_id port 81609 bytes_out 0 81609 bytes_in 0 81609 station_ip 5.120.1.79 81609 port 15728845 81609 nas_port_type Virtual 81619 username mahbobeh 81619 unique_id port 81619 terminate_cause Lost-Carrier 81619 bytes_out 1596204 81619 bytes_in 30332951 81619 station_ip 113.203.109.125 81619 port 15728852 81619 nas_port_type Virtual 81619 remote_ip 5.5.5.237 81629 username aminvpn 81629 mac 81629 bytes_out 4320682 81629 bytes_in 25819389 81629 station_ip 46.100.222.213 81629 port 14 81629 unique_id port 81629 remote_ip 10.8.0.6 81631 username aminvpn 81631 unique_id port 81631 terminate_cause User-Request 81631 bytes_out 335488 81631 bytes_in 1513452 81631 station_ip 46.100.222.213 81631 port 15728862 81631 nas_port_type Virtual 81631 remote_ip 5.5.5.148 81640 username mohammadaskari 81640 unique_id port 81640 terminate_cause Lost-Carrier 81640 bytes_out 173576 81640 bytes_in 1938570 81640 station_ip 5.120.177.224 81640 port 15728871 81640 nas_port_type Virtual 81640 remote_ip 5.5.5.144 81643 username avaanna 81643 unique_id port 81643 terminate_cause User-Request 81643 bytes_out 47438 81643 bytes_in 204806 81643 station_ip 37.129.37.59 81643 port 15728876 81643 nas_port_type Virtual 81643 remote_ip 5.5.5.143 81649 username amin.insta01 81649 unique_id port 81649 terminate_cause User-Request 81649 bytes_out 682545 81649 bytes_in 10831893 81649 station_ip 5.120.18.204 81649 port 15728882 81649 nas_port_type Virtual 81649 remote_ip 5.5.5.137 81656 username amirhosein 81656 unique_id port 81656 terminate_cause Lost-Carrier 81656 bytes_out 64271 81656 bytes_in 727866 81656 station_ip 5.120.35.109 81656 port 15728889 81656 nas_port_type Virtual 81656 remote_ip 5.5.5.133 81664 username aminvpn 81664 kill_reason Another user logged on this global unique id 81664 mac 81664 bytes_out 0 81664 bytes_in 0 81664 station_ip 46.100.222.213 81664 port 29 81664 unique_id port 81664 remote_ip 10.8.1.10 81665 username forozande 81665 unique_id port 81665 terminate_cause User-Request 81665 bytes_out 0 81665 bytes_in 0 81665 station_ip 83.122.26.241 81665 port 15728899 81665 nas_port_type Virtual 81665 remote_ip 5.5.5.127 81666 username forozande 81666 unique_id port 81666 terminate_cause User-Request 81666 bytes_out 228773 81666 bytes_in 809952 81666 station_ip 83.122.26.241 81666 port 15728900 81666 nas_port_type Virtual 81666 remote_ip 5.5.5.127 81669 username alinezhad 81669 unique_id port 81669 terminate_cause User-Request 81669 bytes_out 63008 81669 bytes_in 432698 81669 station_ip 5.202.12.7 81669 port 15728902 81669 nas_port_type Virtual 81669 remote_ip 5.5.5.126 81674 username aminvpn 81674 mac 81674 bytes_out 0 81674 bytes_in 0 81674 station_ip 46.100.222.213 81674 port 14 81674 unique_id port 81674 remote_ip 10.8.0.6 81681 username alinezhad 81681 unique_id port 81681 terminate_cause User-Request 81681 bytes_out 58576 81681 bytes_in 284487 81681 station_ip 5.202.12.7 81681 port 15728907 81681 nas_port_type Virtual 81681 remote_ip 5.5.5.126 81684 username alinezhad 81684 unique_id port 81684 terminate_cause User-Request 81684 bytes_out 0 81684 bytes_in 0 81684 station_ip 5.202.12.7 81684 port 15728911 81684 nas_port_type Virtual 81684 remote_ip 5.5.5.126 81692 username caferibar 81692 unique_id port 81692 terminate_cause User-Request 81617 port 15728851 81617 nas_port_type Virtual 81617 remote_ip 5.5.5.155 81618 username caferibar 81618 unique_id port 81618 terminate_cause User-Request 81618 bytes_out 4090097 81618 bytes_in 83641807 81618 station_ip 5.120.24.254 81618 port 15728833 81618 nas_port_type Virtual 81618 remote_ip 5.5.5.158 81626 username amirhosein 81626 unique_id port 81626 terminate_cause Lost-Carrier 81626 bytes_out 11805 81626 bytes_in 138394 81626 station_ip 5.120.1.79 81626 port 15728860 81626 nas_port_type Virtual 81626 remote_ip 5.5.5.156 81628 username forozande 81628 unique_id port 81628 terminate_cause User-Request 81628 bytes_out 90430 81628 bytes_in 1589717 81628 station_ip 37.129.76.242 81628 port 15728863 81628 nas_port_type Virtual 81628 remote_ip 5.5.5.147 81638 username zoha 81638 kill_reason Relative expiration date has reached 81638 unique_id port 81638 bytes_out 0 81638 bytes_in 0 81638 station_ip 5.119.116.47 81638 port 15728870 81638 nas_port_type Virtual 81639 username avaanna 81639 unique_id port 81639 terminate_cause User-Request 81639 bytes_out 79392 81639 bytes_in 919658 81639 station_ip 37.129.37.59 81639 port 15728872 81639 nas_port_type Virtual 81639 remote_ip 5.5.5.143 81642 username mohammadaskari 81642 unique_id port 81642 terminate_cause User-Request 81642 bytes_out 80554 81642 bytes_in 723796 81642 station_ip 83.122.139.86 81642 port 15728875 81642 nas_port_type Virtual 81642 remote_ip 5.5.5.141 81646 username reza 81646 unique_id port 81646 terminate_cause User-Request 81646 bytes_out 138567 81646 bytes_in 1777539 81646 station_ip 37.129.34.119 81646 port 15728879 81646 nas_port_type Virtual 81646 remote_ip 5.5.5.139 81647 username aminvpn 81647 kill_reason Another user logged on this global unique id 81647 mac 81647 bytes_out 0 81647 bytes_in 0 81647 station_ip 46.100.222.213 81647 port 14 81647 unique_id port 81647 remote_ip 10.8.0.6 81652 username amirhosein 81652 unique_id port 81652 terminate_cause Lost-Carrier 81652 bytes_out 365061 81652 bytes_in 2311201 81652 station_ip 5.120.1.79 81652 port 15728881 81652 nas_port_type Virtual 81652 remote_ip 5.5.5.156 81655 username caferibar 81655 unique_id port 81655 terminate_cause User-Request 81655 bytes_out 4827959 81655 bytes_in 60950708 81655 station_ip 5.120.24.254 81655 port 15728869 81655 nas_port_type Virtual 81655 remote_ip 5.5.5.158 81658 username abdilahyar 81658 unique_id port 81658 terminate_cause Lost-Carrier 81658 bytes_out 1650691 81658 bytes_in 12126820 81658 station_ip 5.120.149.243 81658 port 15728730 81658 nas_port_type Virtual 81658 remote_ip 5.5.5.203 81659 username ahmadi 81659 unique_id port 81659 terminate_cause User-Request 81659 bytes_out 164637 81659 bytes_in 3377764 81659 station_ip 37.129.150.210 81659 port 15728895 81659 nas_port_type Virtual 81659 remote_ip 5.5.5.151 81662 username sobhan 81662 unique_id port 81662 terminate_cause Lost-Carrier 81662 bytes_out 2163709 81662 bytes_in 26444113 81662 station_ip 5.119.128.123 81662 port 15728877 81662 nas_port_type Virtual 81662 remote_ip 5.5.5.140 81663 username farhad 81663 unique_id port 81663 terminate_cause Lost-Carrier 81663 bytes_out 117041 81663 bytes_in 749594 81663 station_ip 5.119.76.246 81663 port 15728893 81663 nas_port_type Virtual 81663 remote_ip 5.5.5.131 81672 username heydari 81672 unique_id port 81672 terminate_cause Lost-Carrier 81672 bytes_out 225939 81672 bytes_in 1847711 81672 station_ip 37.27.38.12 81672 port 15728880 81672 nas_port_type Virtual 81672 remote_ip 5.5.5.138 81676 username alinezhad 81676 unique_id port 81676 terminate_cause User-Request 81676 bytes_out 16527 81676 bytes_in 101390 81676 station_ip 5.202.12.7 81641 username forozande 81641 unique_id port 81641 terminate_cause User-Request 81641 bytes_out 241310 81641 bytes_in 2053024 81641 station_ip 83.122.213.222 81641 port 15728874 81641 nas_port_type Virtual 81641 remote_ip 5.5.5.142 81645 username hamideh 81645 unique_id port 81645 terminate_cause Lost-Carrier 81645 bytes_out 389161 81645 bytes_in 5499555 81645 station_ip 5.119.4.115 81645 port 15728873 81645 nas_port_type Virtual 81645 remote_ip 5.5.5.153 81648 username zamanialireza 81648 unique_id port 81648 terminate_cause User-Request 81648 bytes_out 0 81648 bytes_in 0 81648 station_ip 83.123.163.224 81648 port 15728886 81648 nas_port_type Virtual 81648 remote_ip 5.5.5.167 81654 username zamanialireza 81654 unique_id port 81654 terminate_cause User-Request 81654 bytes_out 2058820 81654 bytes_in 2188045 81654 station_ip 83.123.163.224 81654 port 15728887 81654 nas_port_type Virtual 81654 remote_ip 5.5.5.167 81657 username caferibar 81657 unique_id port 81657 terminate_cause User-Request 81657 bytes_out 0 81657 bytes_in 0 81657 station_ip 5.120.24.254 81657 port 15728890 81657 nas_port_type Virtual 81657 remote_ip 5.5.5.158 81660 username amin.insta19 81660 unique_id port 81660 terminate_cause Lost-Carrier 81660 bytes_out 4834453 81660 bytes_in 64236059 81660 station_ip 83.122.24.183 81660 port 15728885 81660 nas_port_type Virtual 81660 remote_ip 5.5.5.135 81661 username amirabbas 81661 unique_id port 81661 terminate_cause Lost-Carrier 81661 bytes_out 62687 81661 bytes_in 549236 81661 station_ip 151.238.249.123 81661 port 15728892 81661 nas_port_type Virtual 81661 remote_ip 5.5.5.132 81668 username heydari 81668 unique_id port 81668 terminate_cause User-Request 81668 bytes_out 0 81668 bytes_in 0 81668 station_ip 37.27.38.12 81668 port 15728903 81668 nas_port_type Virtual 81668 remote_ip 5.5.5.125 81670 username aminvpn 81670 mac 81670 bytes_out 0 81670 bytes_in 0 81670 station_ip 46.100.222.213 81670 port 29 81670 unique_id port 81671 username aminvpn 81671 mac 81671 bytes_out 0 81671 bytes_in 0 81671 station_ip 46.100.222.213 81671 port 29 81671 unique_id port 81671 remote_ip 10.8.1.10 81675 username sobhan 81675 unique_id port 81675 terminate_cause User-Request 81675 bytes_out 267865 81675 bytes_in 856039 81675 station_ip 5.119.128.123 81675 port 15728901 81675 nas_port_type Virtual 81675 remote_ip 5.5.5.140 81677 username mobina 81677 kill_reason Relative expiration date has reached 81677 unique_id port 81677 bytes_out 0 81677 bytes_in 0 81677 station_ip 5.124.66.97 81677 port 15728908 81677 nas_port_type Virtual 81678 username aminvpn 81678 mac 81678 bytes_out 484858 81678 bytes_in 3591710 81678 station_ip 46.100.222.213 81678 port 14 81678 unique_id port 81678 remote_ip 10.8.0.6 81679 username aminvpn 81679 mac 81679 bytes_out 0 81679 bytes_in 0 81679 station_ip 46.100.222.213 81679 port 14 81679 unique_id port 81679 remote_ip 10.8.0.6 81682 username heydari 81682 unique_id port 81682 terminate_cause Lost-Carrier 81682 bytes_out 66168 81682 bytes_in 416711 81682 station_ip 37.27.38.12 81682 port 15728905 81682 nas_port_type Virtual 81682 remote_ip 5.5.5.125 81683 username ahmadi 81683 unique_id port 81683 terminate_cause User-Request 81683 bytes_out 26616 81683 bytes_in 400797 81683 station_ip 37.129.150.210 81683 port 15728909 81683 nas_port_type Virtual 81683 remote_ip 5.5.5.151 81685 username amin.insta01 81685 unique_id port 81685 terminate_cause Lost-Carrier 81685 bytes_out 2254563 81685 bytes_in 50847671 81685 station_ip 5.120.153.205 81685 port 15728896 81644 bytes_in 185255 81644 station_ip 83.122.139.86 81644 port 15728878 81644 nas_port_type Virtual 81644 remote_ip 5.5.5.141 81650 username kamali 81650 unique_id port 81650 terminate_cause User-Request 81650 bytes_out 88115 81650 bytes_in 463734 81650 station_ip 113.203.80.211 81650 port 15728888 81650 nas_port_type Virtual 81650 remote_ip 5.5.5.134 81651 username aminvpn 81651 mac 81651 bytes_out 0 81651 bytes_in 0 81651 station_ip 46.100.222.213 81651 port 14 81651 unique_id port 81653 username ahmadipour 81653 unique_id port 81653 terminate_cause Lost-Carrier 81653 bytes_out 24160902 81653 bytes_in 31104594 81653 station_ip 113.203.91.191 81653 port 15728884 81653 nas_port_type Virtual 81653 remote_ip 5.5.5.136 81667 username amirhosein 81667 unique_id port 81667 terminate_cause Lost-Carrier 81667 bytes_out 18611 81667 bytes_in 150545 81667 station_ip 5.120.35.109 81667 port 15728897 81667 nas_port_type Virtual 81667 remote_ip 5.5.5.133 81673 username aminvpn 81673 mac 81673 bytes_out 0 81673 bytes_in 0 81673 station_ip 46.100.222.213 81673 port 14 81673 unique_id port 81673 remote_ip 10.8.0.6 81688 username alinezhad 81688 unique_id port 81688 terminate_cause User-Request 81688 bytes_out 0 81688 bytes_in 0 81688 station_ip 5.202.12.7 81688 port 15728913 81688 nas_port_type Virtual 81688 remote_ip 5.5.5.126 81691 username pouria 81691 unique_id port 81691 terminate_cause User-Request 81691 bytes_out 0 81691 bytes_in 0 81691 station_ip 151.235.124.17 81691 port 15728917 81691 nas_port_type Virtual 81691 remote_ip 5.5.5.122 81699 username heydari 81699 unique_id port 81699 terminate_cause Lost-Carrier 81699 bytes_out 445101 81699 bytes_in 8357356 81699 station_ip 37.27.38.12 81699 port 15728910 81699 nas_port_type Virtual 81699 remote_ip 5.5.5.125 81706 username amirhosein 81706 unique_id port 81706 terminate_cause Lost-Carrier 81706 bytes_out 14614 81706 bytes_in 131210 81706 station_ip 5.120.65.82 81706 port 15728928 81706 nas_port_type Virtual 81706 remote_ip 5.5.5.116 81708 username amirabbas 81708 unique_id port 81708 terminate_cause User-Request 81708 bytes_out 38494570 81708 bytes_in 887169287 81708 station_ip 151.238.249.123 81708 port 15728894 81708 nas_port_type Virtual 81708 remote_ip 5.5.5.130 81710 username amirhosein 81710 unique_id port 81710 terminate_cause Lost-Carrier 81710 bytes_out 93974 81710 bytes_in 269493 81710 station_ip 5.119.5.42 81710 port 15728933 81710 nas_port_type Virtual 81710 remote_ip 5.5.5.114 81711 username amirhosein 81711 unique_id port 81711 terminate_cause User-Request 81711 bytes_out 127368 81711 bytes_in 225701 81711 station_ip 5.119.143.4 81711 port 15728936 81711 nas_port_type Virtual 81711 remote_ip 5.5.5.112 81723 username majid 81723 unique_id port 81723 terminate_cause User-Request 81723 bytes_out 6403657 81723 bytes_in 190393119 81723 station_ip 86.57.108.55 81723 port 15728935 81723 nas_port_type Virtual 81723 remote_ip 5.5.5.113 81726 username caferibar 81726 unique_id port 81726 terminate_cause Lost-Carrier 81726 bytes_out 406760 81726 bytes_in 6679632 81726 station_ip 5.120.24.254 81726 port 15728950 81726 nas_port_type Virtual 81726 remote_ip 5.5.5.158 81730 username alirezazamani 81730 kill_reason Relative expiration date has reached 81730 unique_id port 81730 bytes_out 0 81730 bytes_in 0 81730 station_ip 5.200.122.229 81730 port 15728956 81730 nas_port_type Virtual 81731 username mahbobeh 81731 unique_id port 81731 terminate_cause Admin-Reboot 81731 bytes_out 2797414 81731 bytes_in 58083941 81731 station_ip 113.203.26.173 81731 port 15728946 81731 nas_port_type Virtual 81676 port 15728906 81676 nas_port_type Virtual 81676 remote_ip 5.5.5.126 81680 username farhad 81680 unique_id port 81680 terminate_cause Lost-Carrier 81680 bytes_out 2234057 81680 bytes_in 16342177 81680 station_ip 5.119.148.77 81680 port 15728898 81680 nas_port_type Virtual 81680 remote_ip 5.5.5.128 81687 username zamanialireza 81687 unique_id port 81687 terminate_cause Lost-Carrier 81687 bytes_out 10776173 81687 bytes_in 93109255 81687 station_ip 94.183.213.166 81687 port 15728793 81687 nas_port_type Virtual 81687 remote_ip 5.5.5.172 81689 username asadi 81689 unique_id port 81689 terminate_cause User-Request 81689 bytes_out 129526 81689 bytes_in 1112743 81689 station_ip 83.122.171.88 81689 port 15728914 81689 nas_port_type Virtual 81689 remote_ip 5.5.5.218 81690 username forozande 81690 unique_id port 81690 terminate_cause User-Request 81690 bytes_out 40298 81690 bytes_in 141726 81690 station_ip 37.129.215.168 81690 port 15728916 81690 nas_port_type Virtual 81690 remote_ip 5.5.5.123 81697 username zamanialireza 81697 unique_id port 81697 terminate_cause User-Request 81697 bytes_out 0 81697 bytes_in 0 81697 station_ip 83.122.97.163 81697 port 15728923 81697 nas_port_type Virtual 81697 remote_ip 5.5.5.120 81701 username amirhosein 81701 kill_reason Maximum number of concurrent logins reached 81701 unique_id port 81701 bytes_out 0 81701 bytes_in 0 81701 station_ip 5.120.157.160 81701 port 15728930 81701 nas_port_type Virtual 81704 username madadi 81704 unique_id port 81704 terminate_cause Lost-Carrier 81704 bytes_out 5041127 81704 bytes_in 9056593 81704 station_ip 5.120.71.148 81704 port 15728853 81704 nas_port_type Virtual 81704 remote_ip 5.5.5.154 81712 username asadi 81712 unique_id port 81712 terminate_cause User-Request 81712 bytes_out 103849 81712 bytes_in 1353213 81712 station_ip 113.203.89.100 81712 port 15728940 81712 nas_port_type Virtual 81712 remote_ip 5.5.5.108 81716 username amin.insta01 81716 unique_id port 81716 terminate_cause Lost-Carrier 81716 bytes_out 516213 81716 bytes_in 4173966 81716 station_ip 5.119.240.230 81716 port 15728938 81716 nas_port_type Virtual 81716 remote_ip 5.5.5.110 81724 username amirhosein 81724 kill_reason Maximum check online fails reached 81724 unique_id port 81724 bytes_out 17125 81724 bytes_in 43503 81724 station_ip 5.119.169.236 81724 port 15728947 81724 nas_port_type Virtual 81724 remote_ip 5.5.5.107 81725 username caferibar 81725 unique_id port 81725 terminate_cause User-Request 81725 bytes_out 0 81725 bytes_in 0 81725 station_ip 5.120.24.254 81725 port 15728949 81725 nas_port_type Virtual 81725 remote_ip 5.5.5.158 81735 username forozande 81735 unique_id port 81735 terminate_cause User-Request 81735 bytes_out 185854 81735 bytes_in 1459461 81735 station_ip 37.129.11.20 81735 port 15728644 81735 nas_port_type Virtual 81735 remote_ip 5.5.5.252 81737 username madadi 81737 unique_id port 81737 terminate_cause Lost-Carrier 81737 bytes_out 180062 81737 bytes_in 1028576 81737 station_ip 5.120.95.212 81737 port 15728641 81737 nas_port_type Virtual 81737 remote_ip 5.5.5.254 81741 username asadi 81741 unique_id port 81741 terminate_cause User-Request 81741 bytes_out 209865 81741 bytes_in 3675831 81741 station_ip 37.129.158.75 81741 port 15728650 81741 nas_port_type Virtual 81741 remote_ip 5.5.5.248 81742 username ahmadipour 81742 unique_id port 81742 terminate_cause Lost-Carrier 81742 bytes_out 74754 81742 bytes_in 501852 81742 station_ip 113.203.61.223 81742 port 15728649 81742 nas_port_type Virtual 81742 remote_ip 5.5.5.249 81744 username ahmadi 81744 unique_id port 81744 terminate_cause User-Request 81744 bytes_out 0 81744 bytes_in 0 81685 nas_port_type Virtual 81685 remote_ip 5.5.5.129 81686 username amirhosein 81686 unique_id port 81686 terminate_cause Lost-Carrier 81686 bytes_out 19738 81686 bytes_in 144755 81686 station_ip 5.120.9.227 81686 port 15728912 81686 nas_port_type Virtual 81686 remote_ip 5.5.5.124 81693 username alinezhad 81693 unique_id port 81693 terminate_cause User-Request 81693 bytes_out 0 81693 bytes_in 0 81693 station_ip 5.202.12.7 81693 port 15728919 81693 nas_port_type Virtual 81693 remote_ip 5.5.5.126 81696 username asadi 81696 unique_id port 81696 terminate_cause User-Request 81696 bytes_out 141159 81696 bytes_in 1591065 81696 station_ip 83.122.171.88 81696 port 15728921 81696 nas_port_type Virtual 81696 remote_ip 5.5.5.218 81703 username amirhosein 81703 unique_id port 81703 terminate_cause Lost-Carrier 81703 bytes_out 742132 81703 bytes_in 3531217 81703 station_ip 5.119.237.105 81703 port 15728926 81703 nas_port_type Virtual 81703 remote_ip 5.5.5.118 81707 username caferibar 81707 unique_id port 81707 terminate_cause User-Request 81707 bytes_out 4195768 81707 bytes_in 89051236 81707 station_ip 5.120.24.254 81707 port 15728920 81707 nas_port_type Virtual 81707 remote_ip 5.5.5.158 81713 username heydari 81713 unique_id port 81713 terminate_cause Lost-Carrier 81713 bytes_out 210557 81713 bytes_in 1376282 81713 station_ip 5.119.174.61 81713 port 15728924 81713 nas_port_type Virtual 81713 remote_ip 5.5.5.119 81718 username heydari 81718 unique_id port 81718 terminate_cause Lost-Carrier 81718 bytes_out 79502 81718 bytes_in 503424 81718 station_ip 5.119.174.61 81718 port 15728942 81718 nas_port_type Virtual 81718 remote_ip 5.5.5.109 81720 username zamanialireza 81720 unique_id port 81720 terminate_cause User-Request 81720 bytes_out 436088 81720 bytes_in 4514303 81720 station_ip 37.153.180.76 81720 port 15728944 81720 nas_port_type Virtual 81720 remote_ip 5.5.5.106 81721 username amirhosein 81721 unique_id port 81721 terminate_cause Lost-Carrier 81721 bytes_out 982540 81721 bytes_in 14923077 81721 station_ip 5.119.169.236 81721 port 15728943 81721 nas_port_type Virtual 81721 remote_ip 5.5.5.107 81727 username asadi 81727 unique_id port 81727 terminate_cause User-Request 81727 bytes_out 202383 81727 bytes_in 5143486 81727 station_ip 83.122.34.76 81727 port 15728951 81727 nas_port_type Virtual 81727 remote_ip 5.5.5.103 81728 username afarin 81728 unique_id port 81728 terminate_cause Lost-Carrier 81728 bytes_out 1470732 81728 bytes_in 16203206 81728 station_ip 31.56.223.2 81728 port 15728929 81728 nas_port_type Virtual 81728 remote_ip 5.5.5.115 81729 username madadi 81729 unique_id port 81729 terminate_cause Lost-Carrier 81729 bytes_out 97129 81729 bytes_in 500654 81729 station_ip 5.119.157.97 81729 port 15728952 81729 nas_port_type Virtual 81729 remote_ip 5.5.5.102 81747 username alinezhad 81747 unique_id port 81747 terminate_cause User-Request 81747 bytes_out 0 81747 bytes_in 0 81747 station_ip 5.202.133.99 81747 port 15728657 81747 nas_port_type Virtual 81747 remote_ip 5.5.5.242 81749 username amin.insta01 81749 unique_id port 81749 terminate_cause Lost-Carrier 81749 bytes_out 61835 81749 bytes_in 424455 81749 station_ip 5.119.110.123 81749 port 15728656 81749 nas_port_type Virtual 81749 remote_ip 5.5.5.243 81750 username madadi 81750 unique_id port 81750 terminate_cause Lost-Carrier 81750 bytes_out 340155 81750 bytes_in 955819 81750 station_ip 5.120.152.8 81750 port 15728652 81750 nas_port_type Virtual 81750 remote_ip 5.5.5.246 81752 username soleymani 81752 unique_id port 81752 terminate_cause User-Request 81752 bytes_out 0 81752 bytes_in 0 81752 station_ip 5.126.246.114 81692 bytes_out 5901322 81692 bytes_in 95322194 81692 station_ip 5.120.24.254 81692 port 15728891 81692 nas_port_type Virtual 81692 remote_ip 5.5.5.158 81694 username amirhosein 81694 unique_id port 81694 terminate_cause Lost-Carrier 81694 bytes_out 259255 81694 bytes_in 2477904 81694 station_ip 5.120.9.227 81694 port 15728915 81694 nas_port_type Virtual 81694 remote_ip 5.5.5.124 81695 username pouria 81695 unique_id port 81695 terminate_cause Lost-Carrier 81695 bytes_out 855375 81695 bytes_in 9683563 81695 station_ip 151.235.124.17 81695 port 15728918 81695 nas_port_type Virtual 81695 remote_ip 5.5.5.122 81698 username alinezhad 81698 unique_id port 81698 terminate_cause User-Request 81698 bytes_out 0 81698 bytes_in 0 81698 station_ip 5.202.12.7 81698 port 15728925 81698 nas_port_type Virtual 81698 remote_ip 5.5.5.126 81700 username alinezhad 81700 unique_id port 81700 terminate_cause User-Request 81700 bytes_out 0 81700 bytes_in 0 81700 station_ip 83.123.250.14 81700 port 15728927 81700 nas_port_type Virtual 81700 remote_ip 5.5.5.117 81702 username amirhosein 81702 kill_reason Maximum number of concurrent logins reached 81702 unique_id port 81702 bytes_out 0 81702 bytes_in 0 81702 station_ip 5.120.157.160 81702 port 15728931 81702 nas_port_type Virtual 81705 username asadi 81705 unique_id port 81705 terminate_cause User-Request 81705 bytes_out 29276 81705 bytes_in 199323 81705 station_ip 83.122.171.88 81705 port 15728932 81705 nas_port_type Virtual 81705 remote_ip 5.5.5.218 81709 username majid 81709 unique_id port 81709 terminate_cause User-Request 81709 bytes_out 915093 81709 bytes_in 28590271 81709 station_ip 86.57.108.55 81709 port 15728934 81709 nas_port_type Virtual 81709 remote_ip 5.5.5.113 81714 username pouria 81714 unique_id port 81714 terminate_cause Lost-Carrier 81714 bytes_out 55403345 81714 bytes_in 2204911945 81714 station_ip 5.119.195.52 81714 port 15728922 81714 nas_port_type Virtual 81714 remote_ip 5.5.5.121 81715 username heydari 81715 unique_id port 81715 terminate_cause Lost-Carrier 81715 bytes_out 205327 81715 bytes_in 1720628 81715 station_ip 5.119.174.61 81715 port 15728939 81715 nas_port_type Virtual 81715 remote_ip 5.5.5.109 81717 username amirhosein 81717 unique_id port 81717 terminate_cause Lost-Carrier 81717 bytes_out 541733 81717 bytes_in 1840235 81717 station_ip 5.119.143.4 81717 port 15728941 81717 nas_port_type Virtual 81717 remote_ip 5.5.5.112 81719 username mahdi 81719 unique_id port 81719 terminate_cause Lost-Carrier 81719 bytes_out 4565851 81719 bytes_in 191260023 81719 station_ip 5.119.174.61 81719 port 15728937 81719 nas_port_type Virtual 81719 remote_ip 5.5.5.111 81722 username zamanialireza 81722 unique_id port 81722 terminate_cause Lost-Carrier 81722 bytes_out 2786774 81722 bytes_in 114580865 81722 station_ip 5.119.44.94 81722 port 15728945 81722 nas_port_type Virtual 81722 remote_ip 5.5.5.105 81731 remote_ip 5.5.5.104 81732 username soleymani 81732 unique_id port 81732 terminate_cause Lost-Carrier 81732 bytes_out 725876 81732 bytes_in 13825413 81732 station_ip 5.126.182.126 81732 port 15728640 81732 nas_port_type Virtual 81732 remote_ip 5.5.5.255 81736 username forozande 81736 unique_id port 81736 terminate_cause User-Request 81736 bytes_out 132437 81736 bytes_in 1146735 81736 station_ip 37.129.11.20 81736 port 15728646 81736 nas_port_type Virtual 81736 remote_ip 5.5.5.252 81740 username madadi 81740 unique_id port 81740 terminate_cause Lost-Carrier 81740 bytes_out 314557 81740 bytes_in 483216 81740 station_ip 5.119.96.91 81740 port 15728645 81740 nas_port_type Virtual 81740 remote_ip 5.5.5.251 81743 username alinezhad 81733 username soleymani 81733 unique_id port 81733 terminate_cause Lost-Carrier 81733 bytes_out 46455 81733 bytes_in 252698 81733 station_ip 5.125.234.206 81733 port 15728642 81733 nas_port_type Virtual 81733 remote_ip 5.5.5.253 81734 username forozande 81734 unique_id port 81734 terminate_cause User-Request 81734 bytes_out 165328 81734 bytes_in 953339 81734 station_ip 37.129.11.20 81734 port 15728643 81734 nas_port_type Virtual 81734 remote_ip 5.5.5.252 81738 username forozande 81738 unique_id port 81738 terminate_cause User-Request 81738 bytes_out 6155 81738 bytes_in 14110 81738 station_ip 37.129.11.20 81738 port 15728647 81738 nas_port_type Virtual 81738 remote_ip 5.5.5.252 81739 username forozande 81739 unique_id port 81739 terminate_cause User-Request 81739 bytes_out 63230 81739 bytes_in 444519 81739 station_ip 37.129.46.26 81739 port 15728648 81739 nas_port_type Virtual 81739 remote_ip 5.5.5.250 81748 username forozande 81748 unique_id port 81748 terminate_cause User-Request 81748 bytes_out 93712 81748 bytes_in 971478 81748 station_ip 37.129.212.248 81748 port 15728658 81748 nas_port_type Virtual 81748 remote_ip 5.5.5.241 81756 username forozande 81756 unique_id port 81756 terminate_cause User-Request 81756 bytes_out 173901 81756 bytes_in 947599 81756 station_ip 83.122.133.236 81756 port 15728666 81756 nas_port_type Virtual 81756 remote_ip 5.5.5.236 81759 username alinezhad 81759 unique_id port 81759 terminate_cause User-Request 81759 bytes_out 0 81759 bytes_in 0 81759 station_ip 5.202.133.99 81759 port 15728670 81759 nas_port_type Virtual 81759 remote_ip 5.5.5.242 81760 username hamideh 81760 unique_id port 81760 terminate_cause Lost-Carrier 81760 bytes_out 2264720 81760 bytes_in 53901874 81760 station_ip 5.120.105.188 81760 port 15728663 81760 nas_port_type Virtual 81760 remote_ip 5.5.5.238 81761 username soleymani 81761 unique_id port 81761 terminate_cause Lost-Carrier 81761 bytes_out 58130 81761 bytes_in 367160 81761 station_ip 5.126.20.57 81761 port 15728669 81761 nas_port_type Virtual 81761 remote_ip 5.5.5.235 81767 username hamideh 81767 unique_id port 81767 terminate_cause Lost-Carrier 81767 bytes_out 626926 81767 bytes_in 13766196 81767 station_ip 5.120.105.188 81767 port 15728675 81767 nas_port_type Virtual 81767 remote_ip 5.5.5.238 81770 username madadi 81770 unique_id port 81770 terminate_cause Lost-Carrier 81770 bytes_out 38411 81770 bytes_in 184531 81770 station_ip 5.119.174.98 81770 port 15728678 81770 nas_port_type Virtual 81770 remote_ip 5.5.5.232 81771 username ahmadipour 81771 unique_id port 81771 terminate_cause Lost-Carrier 81771 bytes_out 10411 81771 bytes_in 125318 81771 station_ip 37.129.195.114 81771 port 15728680 81771 nas_port_type Virtual 81771 remote_ip 5.5.5.230 81772 username forozande 81772 unique_id port 81772 terminate_cause User-Request 81772 bytes_out 250926 81772 bytes_in 394388 81772 station_ip 83.123.57.112 81772 port 15728681 81772 nas_port_type Virtual 81772 remote_ip 5.5.5.229 81773 username forozande 81773 unique_id port 81773 terminate_cause User-Request 81773 bytes_out 46845 81773 bytes_in 226857 81773 station_ip 113.203.38.152 81773 port 15728682 81773 nas_port_type Virtual 81773 remote_ip 5.5.5.228 81777 username soleymani 81777 unique_id port 81777 terminate_cause Lost-Carrier 81777 bytes_out 50191 81777 bytes_in 265581 81777 station_ip 5.126.26.25 81777 port 15728685 81777 nas_port_type Virtual 81777 remote_ip 5.5.5.227 81784 username madadi 81784 unique_id port 81784 terminate_cause Lost-Carrier 81784 bytes_out 34193 81784 bytes_in 166318 81784 station_ip 5.119.61.6 81784 port 15728690 81784 nas_port_type Virtual 81743 unique_id port 81743 terminate_cause User-Request 81743 bytes_out 0 81743 bytes_in 0 81743 station_ip 113.203.96.30 81743 port 15728651 81743 nas_port_type Virtual 81743 remote_ip 5.5.5.247 81745 username asadi 81745 unique_id port 81745 terminate_cause User-Request 81745 bytes_out 101984 81745 bytes_in 1542947 81745 station_ip 37.129.158.75 81745 port 15728654 81745 nas_port_type Virtual 81745 remote_ip 5.5.5.248 81755 username zamanialireza 81755 unique_id port 81755 terminate_cause User-Request 81755 bytes_out 214501 81755 bytes_in 1653193 81755 station_ip 83.122.221.245 81755 port 15728665 81755 nas_port_type Virtual 81755 remote_ip 5.5.5.237 81757 username soleymani 81757 unique_id port 81757 terminate_cause Lost-Carrier 81757 bytes_out 170984 81757 bytes_in 672807 81757 station_ip 5.126.246.114 81757 port 15728662 81757 nas_port_type Virtual 81757 remote_ip 5.5.5.239 81764 username forozande 81764 unique_id port 81764 terminate_cause User-Request 81764 bytes_out 43021 81764 bytes_in 432139 81764 station_ip 83.122.133.236 81764 port 15728674 81764 nas_port_type Virtual 81764 remote_ip 5.5.5.236 81768 username zamanialireza 81768 unique_id port 81768 terminate_cause User-Request 81768 bytes_out 0 81768 bytes_in 0 81768 station_ip 37.153.180.76 81768 port 15728679 81768 nas_port_type Virtual 81768 remote_ip 5.5.5.231 81774 username soleymani 81774 unique_id port 81774 terminate_cause User-Request 81774 bytes_out 0 81774 bytes_in 0 81774 station_ip 5.126.26.25 81774 port 15728684 81774 nas_port_type Virtual 81774 remote_ip 5.5.5.227 81776 username alinezhad 81776 unique_id port 81776 terminate_cause User-Request 81776 bytes_out 0 81776 bytes_in 0 81776 station_ip 5.202.133.99 81776 port 15728687 81776 nas_port_type Virtual 81776 remote_ip 5.5.5.242 81779 username hamideh 81779 unique_id port 81779 terminate_cause Lost-Carrier 81779 bytes_out 1385886 81779 bytes_in 43222024 81779 station_ip 5.120.105.188 81779 port 15728683 81779 nas_port_type Virtual 81779 remote_ip 5.5.5.238 81780 username alinezhad 81780 unique_id port 81780 terminate_cause User-Request 81780 bytes_out 0 81780 bytes_in 0 81780 station_ip 5.202.133.99 81780 port 15728691 81780 nas_port_type Virtual 81780 remote_ip 5.5.5.242 81782 username amirreza 81782 unique_id port 81782 terminate_cause User-Request 81782 bytes_out 0 81782 bytes_in 0 81782 station_ip 5.119.158.97 81782 port 15728693 81782 nas_port_type Virtual 81782 remote_ip 5.5.5.222 81786 username alirezazamani 81786 kill_reason Relative expiration date has reached 81786 unique_id port 81786 bytes_out 0 81786 bytes_in 0 81786 station_ip 83.123.80.159 81786 port 15728699 81786 nas_port_type Virtual 81791 username alinezhad 81791 unique_id port 81791 terminate_cause User-Request 81791 bytes_out 0 81791 bytes_in 0 81791 station_ip 5.202.133.99 81791 port 15728706 81791 nas_port_type Virtual 81791 remote_ip 5.5.5.242 81794 username alinezhad 81794 unique_id port 81794 terminate_cause User-Request 81794 bytes_out 0 81794 bytes_in 0 81794 station_ip 5.202.133.99 81794 port 15728708 81794 nas_port_type Virtual 81794 remote_ip 5.5.5.242 81797 username asadi 81797 unique_id port 81797 terminate_cause User-Request 81797 bytes_out 53134 81797 bytes_in 337831 81797 station_ip 37.129.158.75 81797 port 15728710 81797 nas_port_type Virtual 81797 remote_ip 5.5.5.248 81800 username asadi 81800 unique_id port 81800 terminate_cause User-Request 81800 bytes_out 8978 81800 bytes_in 22271 81800 station_ip 37.129.158.75 81800 port 15728715 81800 nas_port_type Virtual 81800 remote_ip 5.5.5.248 81803 username madadi 81803 unique_id port 81744 station_ip 37.129.129.58 81744 port 15728653 81744 nas_port_type Virtual 81744 remote_ip 5.5.5.245 81746 username forozande 81746 unique_id port 81746 terminate_cause User-Request 81746 bytes_out 148166 81746 bytes_in 1692709 81746 station_ip 37.129.223.226 81746 port 15728655 81746 nas_port_type Virtual 81746 remote_ip 5.5.5.244 81751 username alirezazamani 81751 kill_reason Relative expiration date has reached 81751 unique_id port 81751 bytes_out 0 81751 bytes_in 0 81751 station_ip 83.123.80.159 81751 port 15728660 81751 nas_port_type Virtual 81754 username soleymani 81754 unique_id port 81754 terminate_cause Lost-Carrier 81754 bytes_out 167453 81754 bytes_in 607224 81754 station_ip 5.126.223.29 81754 port 15728659 81754 nas_port_type Virtual 81754 remote_ip 5.5.5.240 81762 username forozande 81762 unique_id port 81762 terminate_cause User-Request 81762 bytes_out 55065 81762 bytes_in 355765 81762 station_ip 83.122.133.236 81762 port 15728671 81762 nas_port_type Virtual 81762 remote_ip 5.5.5.236 81766 username alinezhad 81766 unique_id port 81766 terminate_cause User-Request 81766 bytes_out 0 81766 bytes_in 0 81766 station_ip 5.202.133.99 81766 port 15728677 81766 nas_port_type Virtual 81766 remote_ip 5.5.5.242 81769 username soleymani 81769 unique_id port 81769 terminate_cause Lost-Carrier 81769 bytes_out 24827 81769 bytes_in 241910 81769 station_ip 5.125.69.221 81769 port 15728676 81769 nas_port_type Virtual 81769 remote_ip 5.5.5.233 81778 username forozande 81778 unique_id port 81778 terminate_cause User-Request 81778 bytes_out 34605 81778 bytes_in 304039 81778 station_ip 113.203.38.152 81778 port 15728688 81778 nas_port_type Virtual 81778 remote_ip 5.5.5.228 81788 username amirreza 81788 unique_id port 81788 terminate_cause Lost-Carrier 81788 bytes_out 104011 81788 bytes_in 506130 81788 station_ip 5.119.158.97 81788 port 15728695 81788 nas_port_type Virtual 81788 remote_ip 5.5.5.222 81789 username madadi 81789 unique_id port 81789 terminate_cause User-Request 81789 bytes_out 25648 81789 bytes_in 46824 81789 station_ip 5.119.66.47 81789 port 15728702 81789 nas_port_type Virtual 81789 remote_ip 5.5.5.218 81793 username reza 81793 unique_id port 81793 terminate_cause User-Request 81793 bytes_out 19225 81793 bytes_in 392791 81793 station_ip 83.123.41.43 81793 port 15728707 81793 nas_port_type Virtual 81793 remote_ip 5.5.5.216 81795 username madadi 81795 unique_id port 81795 terminate_cause Lost-Carrier 81795 bytes_out 18767 81795 bytes_in 155189 81795 station_ip 5.119.66.47 81795 port 15728705 81795 nas_port_type Virtual 81795 remote_ip 5.5.5.218 81796 username amin.insta01 81796 unique_id port 81796 terminate_cause Lost-Carrier 81796 bytes_out 445147 81796 bytes_in 6509782 81796 station_ip 5.119.38.40 81796 port 15728701 81796 nas_port_type Virtual 81796 remote_ip 5.5.5.219 81799 username zamanialireza 81799 unique_id port 81799 terminate_cause User-Request 81799 bytes_out 0 81799 bytes_in 0 81799 station_ip 37.153.180.76 81799 port 15728713 81799 nas_port_type Virtual 81799 remote_ip 5.5.5.231 81809 username aminvpn 81809 unique_id port 81809 terminate_cause Lost-Carrier 81809 bytes_out 3740536 81809 bytes_in 58610523 81809 station_ip 46.100.222.213 81809 port 15728717 81809 nas_port_type Virtual 81809 remote_ip 5.5.5.212 81813 username caferibar 81813 unique_id port 81813 terminate_cause User-Request 81813 bytes_out 135235 81813 bytes_in 1859077 81813 station_ip 37.129.196.145 81813 port 15728728 81813 nas_port_type Virtual 81813 remote_ip 5.5.5.206 81814 username caferibar 81814 unique_id port 81814 terminate_cause User-Request 81814 bytes_out 30790297 81752 port 15728661 81752 nas_port_type Virtual 81752 remote_ip 5.5.5.239 81753 username alinezhad 81753 unique_id port 81753 terminate_cause User-Request 81753 bytes_out 0 81753 bytes_in 0 81753 station_ip 5.202.133.99 81753 port 15728664 81753 nas_port_type Virtual 81753 remote_ip 5.5.5.242 81758 username soleymani 81758 unique_id port 81758 terminate_cause User-Request 81758 bytes_out 0 81758 bytes_in 0 81758 station_ip 5.126.20.57 81758 port 15728668 81758 nas_port_type Virtual 81758 remote_ip 5.5.5.235 81763 username forozande 81763 unique_id port 81763 terminate_cause User-Request 81763 bytes_out 18210 81763 bytes_in 100161 81763 station_ip 83.122.133.236 81763 port 15728673 81763 nas_port_type Virtual 81763 remote_ip 5.5.5.236 81765 username caferibar 81765 unique_id port 81765 terminate_cause User-Request 81765 bytes_out 3372256 81765 bytes_in 73195625 81765 station_ip 5.120.24.254 81765 port 15728672 81765 nas_port_type Virtual 81765 remote_ip 5.5.5.234 81775 username arabpour 81775 unique_id port 81775 terminate_cause User-Request 81775 bytes_out 904153 81775 bytes_in 11257063 81775 station_ip 93.110.178.227 81775 port 15728686 81775 nas_port_type Virtual 81775 remote_ip 5.5.5.226 81781 username avaanna 81781 unique_id port 81781 terminate_cause User-Request 81781 bytes_out 68911 81781 bytes_in 722608 81781 station_ip 83.123.25.223 81781 port 15728692 81781 nas_port_type Virtual 81781 remote_ip 5.5.5.223 81783 username asadi 81783 unique_id port 81783 terminate_cause User-Request 81783 bytes_out 77653 81783 bytes_in 335963 81783 station_ip 37.129.158.75 81783 port 15728694 81783 nas_port_type Virtual 81783 remote_ip 5.5.5.248 81790 username asadi 81790 unique_id port 81790 terminate_cause User-Request 81790 bytes_out 64329 81790 bytes_in 168832 81790 station_ip 37.129.158.75 81790 port 15728703 81790 nas_port_type Virtual 81790 remote_ip 5.5.5.248 81802 username caferibar 81802 unique_id port 81802 terminate_cause User-Request 81802 bytes_out 0 81802 bytes_in 0 81802 station_ip 5.120.24.254 81802 port 15728716 81802 nas_port_type Virtual 81802 remote_ip 5.5.5.234 81804 username amin.insta01 81804 unique_id port 81804 terminate_cause Lost-Carrier 81804 bytes_out 214134 81804 bytes_in 1964460 81804 station_ip 5.120.108.141 81804 port 15728711 81804 nas_port_type Virtual 81804 remote_ip 5.5.5.214 81811 username zoha 81811 kill_reason Relative expiration date has reached 81811 unique_id port 81811 bytes_out 0 81811 bytes_in 0 81811 station_ip 5.119.116.47 81811 port 15728727 81811 nas_port_type Virtual 81819 username alinezhad 81819 unique_id port 81819 terminate_cause User-Request 81819 bytes_out 0 81819 bytes_in 0 81819 station_ip 5.202.133.99 81819 port 15728738 81819 nas_port_type Virtual 81819 remote_ip 5.5.5.242 81822 username ahmadipour 81822 unique_id port 81822 terminate_cause User-Request 81822 bytes_out 1929770 81822 bytes_in 39219164 81822 station_ip 83.122.148.241 81822 port 15728737 81822 nas_port_type Virtual 81822 remote_ip 5.5.5.200 81829 username amir 81829 unique_id port 81829 terminate_cause Lost-Carrier 81829 bytes_out 396319 81829 bytes_in 4440533 81829 station_ip 46.225.209.145 81829 port 15728726 81829 nas_port_type Virtual 81829 remote_ip 5.5.5.207 81840 username mahdi 81840 kill_reason Relative expiration date has reached 81840 unique_id port 81840 bytes_out 0 81840 bytes_in 0 81840 station_ip 5.119.174.61 81840 port 15728763 81840 nas_port_type Virtual 81844 username amin.insta01 81844 unique_id port 81844 terminate_cause Lost-Carrier 81844 bytes_out 68605 81844 bytes_in 275418 81844 station_ip 5.119.92.1 81844 port 15728759 81784 remote_ip 5.5.5.224 81785 username zamanialireza 81785 unique_id port 81785 terminate_cause User-Request 81785 bytes_out 0 81785 bytes_in 0 81785 station_ip 83.122.95.223 81785 port 15728697 81785 nas_port_type Virtual 81785 remote_ip 5.5.5.221 81787 username alirezazamani 81787 kill_reason Relative expiration date has reached 81787 unique_id port 81787 bytes_out 0 81787 bytes_in 0 81787 station_ip 83.123.80.159 81787 port 15728700 81787 nas_port_type Virtual 81792 username aminvpn 81792 unique_id port 81792 terminate_cause Lost-Carrier 81792 bytes_out 972517 81792 bytes_in 6098617 81792 station_ip 5.120.154.253 81792 port 15728698 81792 nas_port_type Virtual 81792 remote_ip 5.5.5.220 81798 username asadi 81798 unique_id port 81798 terminate_cause User-Request 81798 bytes_out 38663 81798 bytes_in 316933 81798 station_ip 37.129.158.75 81798 port 15728712 81798 nas_port_type Virtual 81798 remote_ip 5.5.5.248 81801 username caferibar 81801 unique_id port 81801 terminate_cause User-Request 81801 bytes_out 5353856 81801 bytes_in 128024419 81801 station_ip 5.120.24.254 81801 port 15728696 81801 nas_port_type Virtual 81801 remote_ip 5.5.5.234 81805 username ahmadi 81805 unique_id port 81805 terminate_cause User-Request 81805 bytes_out 50931 81805 bytes_in 527196 81805 station_ip 37.129.181.170 81805 port 15728721 81805 nas_port_type Virtual 81805 remote_ip 5.5.5.210 81807 username amirreza 81807 unique_id port 81807 terminate_cause User-Request 81807 bytes_out 3333607 81807 bytes_in 120907437 81807 station_ip 5.119.158.97 81807 port 15728720 81807 nas_port_type Virtual 81807 remote_ip 5.5.5.222 81808 username amin.insta22 81808 unique_id port 81808 terminate_cause User-Request 81808 bytes_out 0 81808 bytes_in 0 81808 station_ip 31.56.217.147 81808 port 15728723 81808 nas_port_type Virtual 81808 remote_ip 5.5.5.208 81810 username alinezhad 81810 unique_id port 81810 terminate_cause User-Request 81810 bytes_out 0 81810 bytes_in 0 81810 station_ip 5.202.133.99 81810 port 15728725 81810 nas_port_type Virtual 81810 remote_ip 5.5.5.242 81812 username madadi 81812 unique_id port 81812 terminate_cause Lost-Carrier 81812 bytes_out 612986 81812 bytes_in 1495598 81812 station_ip 5.120.99.180 81812 port 15728722 81812 nas_port_type Virtual 81812 remote_ip 5.5.5.209 81823 username shahriyar 81823 unique_id port 81823 terminate_cause User-Request 81823 bytes_out 98293 81823 bytes_in 853195 81823 station_ip 37.129.76.175 81823 port 15728740 81823 nas_port_type Virtual 81823 remote_ip 5.5.5.199 81824 username zamanialireza 81824 unique_id port 81824 terminate_cause User-Request 81824 bytes_out 949303 81824 bytes_in 5519097 81824 station_ip 37.129.82.85 81824 port 15728741 81824 nas_port_type Virtual 81824 remote_ip 5.5.5.198 81831 username heydari 81831 unique_id port 81831 terminate_cause Lost-Carrier 81831 bytes_out 839338 81831 bytes_in 4009604 81831 station_ip 5.119.174.61 81831 port 15728704 81831 nas_port_type Virtual 81831 remote_ip 5.5.5.217 81834 username soleymani 81834 unique_id port 81834 terminate_cause User-Request 81834 bytes_out 0 81834 bytes_in 0 81834 station_ip 5.125.97.194 81834 port 15728755 81834 nas_port_type Virtual 81834 remote_ip 5.5.5.191 81835 username soleymani 81835 unique_id port 81835 terminate_cause NAS-Error 81835 bytes_out 0 81835 bytes_in 342 81835 station_ip 5.126.198.18 81835 port 15728754 81835 nas_port_type Virtual 81835 remote_ip 5.5.5.193 81837 username ahmadipour 81837 unique_id port 81837 terminate_cause Lost-Carrier 81837 bytes_out 1931933 81837 bytes_in 22352502 81837 station_ip 83.123.73.215 81837 port 15728752 81837 nas_port_type Virtual 81803 terminate_cause Lost-Carrier 81803 bytes_out 56519 81803 bytes_in 253881 81803 station_ip 5.119.105.155 81803 port 15728714 81803 nas_port_type Virtual 81803 remote_ip 5.5.5.213 81806 username madadi 81806 unique_id port 81806 terminate_cause Lost-Carrier 81806 bytes_out 41522 81806 bytes_in 176189 81806 station_ip 5.120.56.215 81806 port 15728719 81806 nas_port_type Virtual 81806 remote_ip 5.5.5.211 81816 username amirhosein 81816 unique_id port 81816 terminate_cause Lost-Carrier 81816 bytes_out 87826 81816 bytes_in 605183 81816 station_ip 5.120.3.16 81816 port 15728729 81816 nas_port_type Virtual 81816 remote_ip 5.5.5.205 81818 username amirhosein 81818 unique_id port 81818 terminate_cause Lost-Carrier 81818 bytes_out 18163 81818 bytes_in 135097 81818 station_ip 5.120.3.16 81818 port 15728732 81818 nas_port_type Virtual 81818 remote_ip 5.5.5.202 81826 username sobhan 81826 unique_id port 81826 terminate_cause User-Request 81826 bytes_out 2581091 81826 bytes_in 35374250 81826 station_ip 5.120.118.104 81826 port 15728709 81826 nas_port_type Virtual 81826 remote_ip 5.5.5.215 81833 username soleymani 81833 unique_id port 81833 terminate_cause User-Request 81833 bytes_out 0 81833 bytes_in 0 81833 station_ip 5.126.198.18 81833 port 15728753 81833 nas_port_type Virtual 81833 remote_ip 5.5.5.193 81838 username mahdi 81838 kill_reason Relative expiration date has reached 81838 unique_id port 81838 bytes_out 0 81838 bytes_in 0 81838 station_ip 5.119.174.61 81838 port 15728757 81838 nas_port_type Virtual 81841 username mahdi 81841 kill_reason Relative expiration date has reached 81841 unique_id port 81841 bytes_out 0 81841 bytes_in 0 81841 station_ip 5.119.174.61 81841 port 15728764 81841 nas_port_type Virtual 81849 username aminvpn 81849 unique_id port 81849 terminate_cause User-Request 81849 bytes_out 304173 81849 bytes_in 1153784 81849 station_ip 83.122.45.164 81849 port 15728773 81849 nas_port_type Virtual 81849 remote_ip 5.5.5.184 81857 username heydari 81857 unique_id port 81857 terminate_cause Lost-Carrier 81857 bytes_out 175534 81857 bytes_in 790646 81857 station_ip 5.119.174.61 81857 port 15728770 81857 nas_port_type Virtual 81857 remote_ip 5.5.5.217 81862 username sobhan 81862 unique_id port 81862 terminate_cause User-Request 81862 bytes_out 1713242 81862 bytes_in 25400630 81862 station_ip 5.120.118.104 81862 port 15728768 81862 nas_port_type Virtual 81862 remote_ip 5.5.5.215 81863 username kamali 81863 unique_id port 81863 terminate_cause User-Request 81863 bytes_out 114194 81863 bytes_in 938197 81863 station_ip 83.123.141.128 81863 port 15728792 81863 nas_port_type Virtual 81863 remote_ip 5.5.5.181 81870 username heydari 81870 unique_id port 81870 terminate_cause Lost-Carrier 81870 bytes_out 201435 81870 bytes_in 1222399 81870 station_ip 5.119.174.61 81870 port 15728789 81870 nas_port_type Virtual 81870 remote_ip 5.5.5.217 81873 username alinezhad 81873 unique_id port 81873 terminate_cause User-Request 81873 bytes_out 0 81873 bytes_in 0 81873 station_ip 83.123.108.200 81873 port 15728799 81873 nas_port_type Virtual 81873 remote_ip 5.5.5.177 81879 username madadi 81879 unique_id port 81879 terminate_cause Lost-Carrier 81879 bytes_out 22425 81879 bytes_in 137176 81879 station_ip 5.120.90.213 81879 port 15728801 81879 nas_port_type Virtual 81879 remote_ip 5.5.5.176 81882 username asadi 81882 unique_id port 81882 terminate_cause User-Request 81882 bytes_out 490107 81882 bytes_in 11467844 81882 station_ip 113.203.48.29 81882 port 15728807 81882 nas_port_type Virtual 81882 remote_ip 5.5.5.174 81884 username ahmadipour 81884 unique_id port 81884 terminate_cause Lost-Carrier 81814 bytes_in 701970503 81814 station_ip 5.120.24.254 81814 port 15728718 81814 nas_port_type Virtual 81814 remote_ip 5.5.5.234 81815 username reza 81815 unique_id port 81815 terminate_cause User-Request 81815 bytes_out 45330 81815 bytes_in 801377 81815 station_ip 83.123.81.63 81815 port 15728730 81815 nas_port_type Virtual 81815 remote_ip 5.5.5.204 81817 username reza2742 81817 unique_id port 81817 terminate_cause User-Request 81817 bytes_out 285570 81817 bytes_in 5558931 81817 station_ip 83.123.122.230 81817 port 15728736 81817 nas_port_type Virtual 81817 remote_ip 5.5.5.201 81820 username alinezhad 81820 unique_id port 81820 terminate_cause User-Request 81820 bytes_out 0 81820 bytes_in 0 81820 station_ip 5.202.133.99 81820 port 15728739 81820 nas_port_type Virtual 81820 remote_ip 5.5.5.242 81821 username amirabbas 81821 unique_id port 81821 terminate_cause User-Request 81821 bytes_out 24013290 81821 bytes_in 637989416 81821 station_ip 31.59.46.132 81821 port 15728689 81821 nas_port_type Virtual 81821 remote_ip 5.5.5.225 81825 username amin.insta22 81825 unique_id port 81825 terminate_cause Lost-Carrier 81825 bytes_out 1149200 81825 bytes_in 5960407 81825 station_ip 31.56.217.147 81825 port 15728724 81825 nas_port_type Virtual 81825 remote_ip 5.5.5.208 81827 username soleymani 81827 unique_id port 81827 terminate_cause Lost-Carrier 81827 bytes_out 316276 81827 bytes_in 12188094 81827 station_ip 5.126.241.46 81827 port 15728742 81827 nas_port_type Virtual 81827 remote_ip 5.5.5.197 81828 username ahmadi 81828 unique_id port 81828 terminate_cause User-Request 81828 bytes_out 16578 81828 bytes_in 71480 81828 station_ip 37.129.180.106 81828 port 15728744 81828 nas_port_type Virtual 81828 remote_ip 5.5.5.195 81830 username ahmadi 81830 unique_id port 81830 terminate_cause User-Request 81830 bytes_out 7946 81830 bytes_in 99662 81830 station_ip 37.129.180.106 81830 port 15728746 81830 nas_port_type Virtual 81830 remote_ip 5.5.5.195 81832 username soleymani 81832 unique_id port 81832 terminate_cause User-Request 81832 bytes_out 43461 81832 bytes_in 106579 81832 station_ip 5.126.198.18 81832 port 15728751 81832 nas_port_type Virtual 81832 remote_ip 5.5.5.193 81836 username amirhosein 81836 unique_id port 81836 terminate_cause Lost-Carrier 81836 bytes_out 1810004 81836 bytes_in 912560 81836 station_ip 5.120.3.16 81836 port 15728745 81836 nas_port_type Virtual 81836 remote_ip 5.5.5.202 81843 username madadi 81843 unique_id port 81843 terminate_cause Lost-Carrier 81843 bytes_out 3647617 81843 bytes_in 46322927 81843 station_ip 5.119.105.26 81843 port 15728731 81843 nas_port_type Virtual 81843 remote_ip 5.5.5.203 81845 username soleymani 81845 unique_id port 81845 terminate_cause Lost-Carrier 81845 bytes_out 315241 81845 bytes_in 565745 81845 station_ip 5.125.97.194 81845 port 15728756 81845 nas_port_type Virtual 81845 remote_ip 5.5.5.191 81848 username soleymani 81848 unique_id port 81848 terminate_cause Lost-Carrier 81848 bytes_out 441966 81848 bytes_in 654566 81848 station_ip 5.126.191.243 81848 port 15728762 81848 nas_port_type Virtual 81848 remote_ip 5.5.5.187 81851 username aminvpn 81851 unique_id port 81851 terminate_cause User-Request 81851 bytes_out 50549 81851 bytes_in 513149 81851 station_ip 83.122.45.164 81851 port 15728774 81851 nas_port_type Virtual 81851 remote_ip 5.5.5.184 81854 username aminvpn 81854 unique_id port 81854 terminate_cause User-Request 81854 bytes_out 399829 81854 bytes_in 8646664 81854 station_ip 83.122.45.164 81854 port 15728776 81854 nas_port_type Virtual 81854 remote_ip 5.5.5.184 81860 username soleymani 81860 unique_id port 81860 terminate_cause Lost-Carrier 81837 remote_ip 5.5.5.192 81839 username mahdi 81839 kill_reason Relative expiration date has reached 81839 unique_id port 81839 bytes_out 0 81839 bytes_in 0 81839 station_ip 5.119.174.61 81839 port 15728758 81839 nas_port_type Virtual 81842 username amin.insta01 81842 kill_reason Maximum number of concurrent logins reached 81842 unique_id port 81842 bytes_out 0 81842 bytes_in 0 81842 station_ip 5.120.139.50 81842 port 15728765 81842 nas_port_type Virtual 81847 username heydari 81847 unique_id port 81847 terminate_cause User-Request 81847 bytes_out 0 81847 bytes_in 0 81847 station_ip 5.119.174.61 81847 port 15728769 81847 nas_port_type Virtual 81847 remote_ip 5.5.5.217 81852 username aminvpn 81852 unique_id port 81852 terminate_cause User-Request 81852 bytes_out 158875 81852 bytes_in 2890488 81852 station_ip 83.122.45.164 81852 port 15728775 81852 nas_port_type Virtual 81852 remote_ip 5.5.5.184 81853 username amirhosein 81853 unique_id port 81853 terminate_cause Lost-Carrier 81853 bytes_out 34771 81853 bytes_in 183034 81853 station_ip 5.120.3.16 81853 port 15728772 81853 nas_port_type Virtual 81853 remote_ip 5.5.5.185 81856 username shahrooz 81856 unique_id port 81856 terminate_cause Lost-Carrier 81856 bytes_out 1125516 81856 bytes_in 10620876 81856 station_ip 37.129.217.74 81856 port 15728747 81856 nas_port_type Virtual 81856 remote_ip 5.5.5.194 81868 username amin.insta22 81868 unique_id port 81868 terminate_cause Lost-Carrier 81868 bytes_out 3292489 81868 bytes_in 55732539 81868 station_ip 5.233.63.243 81868 port 15728743 81868 nas_port_type Virtual 81868 remote_ip 5.5.5.196 81872 username amirhosein 81872 unique_id port 81872 terminate_cause Lost-Carrier 81872 bytes_out 789360 81872 bytes_in 2285360 81872 station_ip 5.120.3.16 81872 port 15728790 81872 nas_port_type Virtual 81872 remote_ip 5.5.5.185 81878 username asadi 81878 unique_id port 81878 terminate_cause User-Request 81878 bytes_out 366573 81878 bytes_in 6457147 81878 station_ip 113.203.48.29 81878 port 15728804 81878 nas_port_type Virtual 81878 remote_ip 5.5.5.174 81880 username asadi 81880 unique_id port 81880 terminate_cause User-Request 81880 bytes_out 284144 81880 bytes_in 6045877 81880 station_ip 113.203.48.29 81880 port 15728805 81880 nas_port_type Virtual 81880 remote_ip 5.5.5.174 81893 username zamanialireza 81893 unique_id port 81893 terminate_cause User-Request 81893 bytes_out 0 81893 bytes_in 0 81893 station_ip 94.183.213.166 81893 port 15728822 81893 nas_port_type Virtual 81893 remote_ip 5.5.5.169 81897 username soleymani 81897 unique_id port 81897 terminate_cause Lost-Carrier 81897 bytes_out 42981 81897 bytes_in 230966 81897 station_ip 5.125.40.242 81897 port 15728826 81897 nas_port_type Virtual 81897 remote_ip 5.5.5.167 81901 username madadi 81901 unique_id port 81901 terminate_cause Lost-Carrier 81901 bytes_out 21427 81901 bytes_in 138383 81901 station_ip 5.120.136.54 81901 port 15728828 81901 nas_port_type Virtual 81901 remote_ip 5.5.5.166 81903 username kamali 81903 unique_id port 81903 terminate_cause User-Request 81903 bytes_out 21805 81903 bytes_in 39142 81903 station_ip 83.123.141.128 81903 port 15728834 81903 nas_port_type Virtual 81903 remote_ip 5.5.5.181 81907 username madadi 81907 unique_id port 81907 terminate_cause Lost-Carrier 81907 bytes_out 18078 81907 bytes_in 266579 81907 station_ip 5.120.62.228 81907 port 15728831 81907 nas_port_type Virtual 81907 remote_ip 5.5.5.163 81909 username amirhosein 81909 unique_id port 81909 terminate_cause Lost-Carrier 81909 bytes_out 14521 81909 bytes_in 178603 81909 station_ip 5.120.3.16 81909 port 15728833 81909 nas_port_type Virtual 81909 remote_ip 5.5.5.185 81844 nas_port_type Virtual 81844 remote_ip 5.5.5.190 81846 username amin.insta01 81846 unique_id port 81846 terminate_cause Lost-Carrier 81846 bytes_out 145862 81846 bytes_in 1611518 81846 station_ip 5.119.8.102 81846 port 15728761 81846 nas_port_type Virtual 81846 remote_ip 5.5.5.188 81850 username amirhosein 81850 unique_id port 81850 terminate_cause Lost-Carrier 81850 bytes_out 172394 81850 bytes_in 335580 81850 station_ip 5.120.3.16 81850 port 15728767 81850 nas_port_type Virtual 81850 remote_ip 5.5.5.202 81855 username asadi 81855 unique_id port 81855 terminate_cause User-Request 81855 bytes_out 102656 81855 bytes_in 1140681 81855 station_ip 37.129.158.75 81855 port 15728777 81855 nas_port_type Virtual 81855 remote_ip 5.5.5.248 81858 username asadi 81858 unique_id port 81858 terminate_cause User-Request 81858 bytes_out 12244 81858 bytes_in 71793 81858 station_ip 37.129.158.75 81858 port 15728787 81858 nas_port_type Virtual 81858 remote_ip 5.5.5.248 81859 username amirhosein 81859 unique_id port 81859 terminate_cause Lost-Carrier 81859 bytes_out 7881 81859 bytes_in 128275 81859 station_ip 5.120.3.16 81859 port 15728778 81859 nas_port_type Virtual 81859 remote_ip 5.5.5.185 81865 username soleymani 81865 unique_id port 81865 terminate_cause User-Request 81865 bytes_out 0 81865 bytes_in 0 81865 station_ip 5.125.135.217 81865 port 15728795 81865 nas_port_type Virtual 81865 remote_ip 5.5.5.179 81866 username zamanialireza 81866 unique_id port 81866 terminate_cause User-Request 81866 bytes_out 108890 81866 bytes_in 405166 81866 station_ip 83.122.67.39 81866 port 15728794 81866 nas_port_type Virtual 81866 remote_ip 5.5.5.180 81869 username mamal 81869 unique_id port 81869 terminate_cause User-Request 81869 bytes_out 3164199 81869 bytes_in 96459093 81869 station_ip 37.129.97.10 81869 port 15728791 81869 nas_port_type Virtual 81869 remote_ip 5.5.5.182 81871 username soleymani 81871 unique_id port 81871 terminate_cause Lost-Carrier 81871 bytes_out 256399 81871 bytes_in 304079 81871 station_ip 5.125.135.217 81871 port 15728797 81871 nas_port_type Virtual 81871 remote_ip 5.5.5.179 81877 username asadi 81877 unique_id port 81877 terminate_cause User-Request 81877 bytes_out 55498 81877 bytes_in 213008 81877 station_ip 113.203.48.29 81877 port 15728803 81877 nas_port_type Virtual 81877 remote_ip 5.5.5.174 81881 username alinezhad 81881 unique_id port 81881 terminate_cause User-Request 81881 bytes_out 78721 81881 bytes_in 1052324 81881 station_ip 5.202.133.99 81881 port 15728806 81881 nas_port_type Virtual 81881 remote_ip 5.5.5.242 81883 username asadi 81883 unique_id port 81883 terminate_cause User-Request 81883 bytes_out 396875 81883 bytes_in 20039919 81883 station_ip 113.203.48.29 81883 port 15728809 81883 nas_port_type Virtual 81883 remote_ip 5.5.5.174 81885 username asadi 81885 unique_id port 81885 terminate_cause User-Request 81885 bytes_out 100899 81885 bytes_in 2047580 81885 station_ip 113.203.48.29 81885 port 15728812 81885 nas_port_type Virtual 81885 remote_ip 5.5.5.174 81888 username soleymani 81888 unique_id port 81888 terminate_cause Lost-Carrier 81888 bytes_out 36909 81888 bytes_in 218546 81888 station_ip 5.126.124.159 81888 port 15728811 81888 nas_port_type Virtual 81888 remote_ip 5.5.5.171 81892 username asadi 81892 unique_id port 81892 terminate_cause User-Request 81892 bytes_out 165122 81892 bytes_in 5190763 81892 station_ip 113.203.48.29 81892 port 15728819 81892 nas_port_type Virtual 81892 remote_ip 5.5.5.174 81896 username madadi 81896 unique_id port 81896 terminate_cause Lost-Carrier 81896 bytes_out 25720 81896 bytes_in 195558 81896 station_ip 5.120.46.68 81860 bytes_out 228952 81860 bytes_in 282967 81860 station_ip 5.125.31.197 81860 port 15728788 81860 nas_port_type Virtual 81860 remote_ip 5.5.5.183 81861 username caferibar 81861 unique_id port 81861 terminate_cause User-Request 81861 bytes_out 34374449 81861 bytes_in 1381256854 81861 station_ip 5.120.184.157 81861 port 15728771 81861 nas_port_type Virtual 81861 remote_ip 5.5.5.186 81864 username kamali 81864 unique_id port 81864 terminate_cause User-Request 81864 bytes_out 15620 81864 bytes_in 36944 81864 station_ip 83.123.141.128 81864 port 15728793 81864 nas_port_type Virtual 81864 remote_ip 5.5.5.181 81867 username zamanialireza 81867 unique_id port 81867 terminate_cause User-Request 81867 bytes_out 0 81867 bytes_in 0 81867 station_ip 83.122.67.39 81867 port 15728798 81867 nas_port_type Virtual 81867 remote_ip 5.5.5.180 81874 username aminvpn 81874 unique_id port 81874 terminate_cause Lost-Carrier 81874 bytes_out 3082760 81874 bytes_in 50719459 81874 station_ip 5.119.57.160 81874 port 15728796 81874 nas_port_type Virtual 81874 remote_ip 5.5.5.178 81875 username kamali 81875 unique_id port 81875 terminate_cause User-Request 81875 bytes_out 233844 81875 bytes_in 1664258 81875 station_ip 83.123.141.128 81875 port 15728800 81875 nas_port_type Virtual 81875 remote_ip 5.5.5.181 81876 username madadi 81876 unique_id port 81876 terminate_cause Lost-Carrier 81876 bytes_out 818838 81876 bytes_in 3256540 81876 station_ip 5.120.76.222 81876 port 15728760 81876 nas_port_type Virtual 81876 remote_ip 5.5.5.189 81886 username asadi 81886 unique_id port 81886 terminate_cause User-Request 81886 bytes_out 142900 81886 bytes_in 1588293 81886 station_ip 113.203.48.29 81886 port 15728813 81886 nas_port_type Virtual 81886 remote_ip 5.5.5.174 81887 username caferibar 81887 unique_id port 81887 terminate_cause User-Request 81887 bytes_out 280691 81887 bytes_in 2576586 81887 station_ip 5.120.184.157 81887 port 15728814 81887 nas_port_type Virtual 81887 remote_ip 5.5.5.186 81889 username asadi 81889 unique_id port 81889 terminate_cause User-Request 81889 bytes_out 347115 81889 bytes_in 12170033 81889 station_ip 113.203.48.29 81889 port 15728817 81889 nas_port_type Virtual 81889 remote_ip 5.5.5.174 81890 username madadi 81890 unique_id port 81890 terminate_cause Lost-Carrier 81890 bytes_out 64340 81890 bytes_in 314877 81890 station_ip 5.119.252.187 81890 port 15728818 81890 nas_port_type Virtual 81890 remote_ip 5.5.5.170 81895 username alirezazamani 81895 kill_reason Relative expiration date has reached 81895 unique_id port 81895 bytes_out 0 81895 bytes_in 0 81895 station_ip 5.119.126.155 81895 port 15728825 81895 nas_port_type Virtual 81898 username mahbobeh 81898 unique_id port 81898 terminate_cause Lost-Carrier 81898 bytes_out 1079474 81898 bytes_in 12397580 81898 station_ip 83.122.19.218 81898 port 15728808 81898 nas_port_type Virtual 81898 remote_ip 5.5.5.173 81914 username madadi 81914 unique_id port 81914 terminate_cause Lost-Carrier 81914 bytes_out 24519 81914 bytes_in 147405 81914 station_ip 5.120.154.18 81914 port 15728842 81914 nas_port_type Virtual 81914 remote_ip 5.5.5.159 81917 username arman 81917 unique_id port 81917 terminate_cause Lost-Carrier 81917 bytes_out 15415296 81917 bytes_in 468449130 81917 station_ip 5.119.123.166 81917 port 15728802 81917 nas_port_type Virtual 81917 remote_ip 5.5.5.175 81921 username mahbobeh 81921 unique_id port 81921 terminate_cause Lost-Carrier 81921 bytes_out 3788125 81921 bytes_in 89110029 81921 station_ip 83.122.19.218 81921 port 15728841 81921 nas_port_type Virtual 81921 remote_ip 5.5.5.173 81924 username alinezhad 81924 unique_id port 81884 bytes_out 534312 81884 bytes_in 11448237 81884 station_ip 83.123.65.31 81884 port 15728810 81884 nas_port_type Virtual 81884 remote_ip 5.5.5.172 81891 username zamanialireza 81891 unique_id port 81891 terminate_cause User-Request 81891 bytes_out 0 81891 bytes_in 0 81891 station_ip 94.183.213.166 81891 port 15728820 81891 nas_port_type Virtual 81891 remote_ip 5.5.5.169 81894 username alinezhad 81894 unique_id port 81894 terminate_cause User-Request 81894 bytes_out 0 81894 bytes_in 0 81894 station_ip 5.202.133.99 81894 port 15728823 81894 nas_port_type Virtual 81894 remote_ip 5.5.5.242 81899 username amirhosein 81899 unique_id port 81899 terminate_cause Lost-Carrier 81899 bytes_out 56677 81899 bytes_in 417678 81899 station_ip 5.120.3.16 81899 port 15728827 81899 nas_port_type Virtual 81899 remote_ip 5.5.5.185 81905 username asadi 81905 unique_id port 81905 terminate_cause User-Request 81905 bytes_out 181388 81905 bytes_in 3892748 81905 station_ip 113.203.48.29 81905 port 15728836 81905 nas_port_type Virtual 81905 remote_ip 5.5.5.174 81908 username caferibar 81908 unique_id port 81908 terminate_cause Lost-Carrier 81908 bytes_out 5181263 81908 bytes_in 88231839 81908 station_ip 5.120.184.157 81908 port 15728816 81908 nas_port_type Virtual 81908 remote_ip 5.5.5.186 81911 username madadi 81911 unique_id port 81911 terminate_cause Lost-Carrier 81911 bytes_out 174645 81911 bytes_in 242612 81911 station_ip 5.119.236.121 81911 port 15728835 81911 nas_port_type Virtual 81911 remote_ip 5.5.5.162 81915 username ahmadipour 81915 unique_id port 81915 terminate_cause Lost-Carrier 81915 bytes_out 2247111 81915 bytes_in 35542034 81915 station_ip 83.123.78.139 81915 port 15728844 81915 nas_port_type Virtual 81915 remote_ip 5.5.5.157 81916 username soleymani 81916 unique_id port 81916 terminate_cause Lost-Carrier 81916 bytes_out 20323 81916 bytes_in 164702 81916 station_ip 5.126.227.64 81916 port 15728845 81916 nas_port_type Virtual 81916 remote_ip 5.5.5.156 81919 username madadi 81919 unique_id port 81919 terminate_cause Lost-Carrier 81919 bytes_out 13526 81919 bytes_in 122937 81919 station_ip 5.120.170.64 81919 port 15728846 81919 nas_port_type Virtual 81919 remote_ip 5.5.5.155 81926 username zamanialireza 81926 unique_id port 81926 terminate_cause User-Request 81926 bytes_out 0 81926 bytes_in 0 81926 station_ip 83.122.66.59 81926 port 15728854 81926 nas_port_type Virtual 81926 remote_ip 5.5.5.150 81941 username madadi 81941 unique_id port 81941 terminate_cause Lost-Carrier 81941 bytes_out 113221 81941 bytes_in 336834 81941 station_ip 5.120.18.250 81941 port 15728869 81941 nas_port_type Virtual 81941 remote_ip 5.5.5.138 81943 username amirhosein 81943 unique_id port 81943 terminate_cause Lost-Carrier 81943 bytes_out 27127 81943 bytes_in 212029 81943 station_ip 5.120.3.16 81943 port 15728870 81943 nas_port_type Virtual 81943 remote_ip 5.5.5.165 81945 username amin.insta01 81945 unique_id port 81945 terminate_cause Lost-Carrier 81945 bytes_out 168878 81945 bytes_in 1436702 81945 station_ip 5.119.48.120 81945 port 15728872 81945 nas_port_type Virtual 81945 remote_ip 5.5.5.137 81948 username ksrkrgr 81948 unique_id port 81948 terminate_cause User-Request 81948 bytes_out 0 81948 bytes_in 0 81948 station_ip 94.176.8.253 81948 port 15728874 81948 nas_port_type Virtual 81948 remote_ip 5.5.5.136 81950 username ksrkrgr 81950 unique_id port 81950 terminate_cause User-Request 81950 bytes_out 0 81950 bytes_in 0 81950 station_ip 94.176.8.253 81950 port 15728877 81950 nas_port_type Virtual 81950 remote_ip 5.5.5.136 81952 username amirhosein 81952 unique_id port 81952 terminate_cause Lost-Carrier 81896 port 15728824 81896 nas_port_type Virtual 81896 remote_ip 5.5.5.168 81900 username zamanialireza 81900 unique_id port 81900 terminate_cause User-Request 81900 bytes_out 340234 81900 bytes_in 6022627 81900 station_ip 83.122.42.111 81900 port 15728830 81900 nas_port_type Virtual 81900 remote_ip 5.5.5.164 81902 username kamali 81902 unique_id port 81902 terminate_cause User-Request 81902 bytes_out 389346 81902 bytes_in 122852 81902 station_ip 83.123.141.128 81902 port 15728832 81902 nas_port_type Virtual 81902 remote_ip 5.5.5.181 81904 username aminvpn 81904 unique_id port 81904 terminate_cause Lost-Carrier 81904 bytes_out 4053583 81904 bytes_in 71801321 81904 station_ip 46.100.222.213 81904 port 15728821 81904 nas_port_type Virtual 81904 remote_ip 5.5.5.212 81906 username amirhosein 81906 unique_id port 81906 terminate_cause Lost-Carrier 81906 bytes_out 26191 81906 bytes_in 248854 81906 station_ip 5.120.3.16 81906 port 15728829 81906 nas_port_type Virtual 81906 remote_ip 5.5.5.165 81918 username farhad 81918 unique_id port 81918 terminate_cause Lost-Carrier 81918 bytes_out 21838249 81918 bytes_in 322174759 81918 station_ip 5.119.149.175 81918 port 15728838 81918 nas_port_type Virtual 81918 remote_ip 5.5.5.161 81920 username amirhosein 81920 unique_id port 81920 terminate_cause Lost-Carrier 81920 bytes_out 6129730 81920 bytes_in 54380802 81920 station_ip 5.120.3.16 81920 port 15728839 81920 nas_port_type Virtual 81920 remote_ip 5.5.5.165 81922 username aminvpn 81922 unique_id port 81922 terminate_cause User-Request 81922 bytes_out 356720 81922 bytes_in 1572304 81922 station_ip 46.100.222.213 81922 port 15728849 81922 nas_port_type Virtual 81922 remote_ip 5.5.5.152 81932 username heydari 81932 kill_reason Maximum check online fails reached 81932 unique_id port 81932 bytes_out 49380 81932 bytes_in 141864 81932 station_ip 5.120.91.114 81932 port 15728861 81932 nas_port_type Virtual 81932 remote_ip 5.5.5.144 81933 username mahbobeh 81933 unique_id port 81933 terminate_cause Lost-Carrier 81933 bytes_out 105754 81933 bytes_in 1435389 81933 station_ip 83.122.19.218 81933 port 15728850 81933 nas_port_type Virtual 81933 remote_ip 5.5.5.173 81934 username madadi 81934 unique_id port 81934 terminate_cause Lost-Carrier 81934 bytes_out 389541 81934 bytes_in 3876657 81934 station_ip 5.119.45.38 81934 port 15728857 81934 nas_port_type Virtual 81934 remote_ip 5.5.5.147 81936 username ahmadipour 81936 unique_id port 81936 terminate_cause Lost-Carrier 81936 bytes_out 431984 81936 bytes_in 9286621 81936 station_ip 83.123.10.151 81936 port 15728866 81936 nas_port_type Virtual 81936 remote_ip 5.5.5.141 81940 username madadi 81940 unique_id port 81940 terminate_cause Lost-Carrier 81940 bytes_out 30369 81940 bytes_in 143352 81940 station_ip 5.120.154.186 81940 port 15728868 81940 nas_port_type Virtual 81940 remote_ip 5.5.5.139 81942 username zamanialireza 81942 unique_id port 81942 terminate_cause User-Request 81942 bytes_out 818172 81942 bytes_in 3871036 81942 station_ip 94.183.213.166 81942 port 15728864 81942 nas_port_type Virtual 81942 remote_ip 5.5.5.169 81946 username ksrkrgr 81946 unique_id port 81946 terminate_cause User-Request 81946 bytes_out 0 81946 bytes_in 0 81946 station_ip 94.176.8.253 81946 port 15728873 81946 nas_port_type Virtual 81946 remote_ip 5.5.5.136 81956 username aminvpn 81956 mac 81956 bytes_out 0 81956 bytes_in 0 81956 station_ip 46.100.222.213 81956 port 29 81956 unique_id port 81956 remote_ip 10.8.1.10 81957 username aminvpn 81957 mac 81957 bytes_out 0 81957 bytes_in 0 81957 station_ip 46.100.222.213 81957 port 29 81957 unique_id port 81910 username mobina 81910 kill_reason Relative expiration date has reached 81910 unique_id port 81910 bytes_out 0 81910 bytes_in 0 81910 station_ip 5.117.45.28 81910 port 15728837 81910 nas_port_type Virtual 81912 username amin.insta01 81912 unique_id port 81912 terminate_cause Lost-Carrier 81912 bytes_out 315849 81912 bytes_in 10578732 81912 station_ip 5.119.198.57 81912 port 15728840 81912 nas_port_type Virtual 81912 remote_ip 5.5.5.160 81913 username zamanialireza 81913 unique_id port 81913 terminate_cause User-Request 81913 bytes_out 174797 81913 bytes_in 1187336 81913 station_ip 37.129.97.21 81913 port 15728843 81913 nas_port_type Virtual 81913 remote_ip 5.5.5.158 81923 username madadi 81923 unique_id port 81923 terminate_cause Lost-Carrier 81923 bytes_out 19687 81923 bytes_in 140185 81923 station_ip 5.120.63.112 81923 port 15728847 81923 nas_port_type Virtual 81923 remote_ip 5.5.5.154 81925 username amirhosein 81925 unique_id port 81925 terminate_cause Lost-Carrier 81925 bytes_out 8884 81925 bytes_in 132959 81925 station_ip 5.120.3.16 81925 port 15728851 81925 nas_port_type Virtual 81925 remote_ip 5.5.5.165 81927 username asadi 81927 unique_id port 81927 terminate_cause User-Request 81927 bytes_out 119317 81927 bytes_in 2260197 81927 station_ip 83.123.211.143 81927 port 15728855 81927 nas_port_type Virtual 81927 remote_ip 5.5.5.149 81937 username amirhosein 81937 unique_id port 81937 terminate_cause Lost-Carrier 81937 bytes_out 67965 81937 bytes_in 560834 81937 station_ip 5.120.3.16 81937 port 15728862 81937 nas_port_type Virtual 81937 remote_ip 5.5.5.165 81951 username ksrkrgr 81951 unique_id port 81951 terminate_cause User-Request 81951 bytes_out 133280 81951 bytes_in 511001 81951 station_ip 94.176.8.253 81951 port 15728878 81951 nas_port_type Virtual 81951 remote_ip 5.5.5.136 81954 username ahmadi 81954 unique_id port 81954 terminate_cause User-Request 81954 bytes_out 29214 81954 bytes_in 159890 81954 station_ip 37.129.151.139 81954 port 15728883 81954 nas_port_type Virtual 81954 remote_ip 5.5.5.145 81958 username amirabbas 81958 unique_id port 81958 terminate_cause User-Request 81958 bytes_out 575666 81958 bytes_in 6129090 81958 station_ip 151.238.239.151 81958 port 15728881 81958 nas_port_type Virtual 81958 remote_ip 5.5.5.134 81961 username amirhosein 81961 unique_id port 81961 terminate_cause Lost-Carrier 81961 bytes_out 29053 81961 bytes_in 156667 81961 station_ip 5.120.3.16 81961 port 15728882 81961 nas_port_type Virtual 81961 remote_ip 5.5.5.140 81963 username madadi 81963 unique_id port 81963 terminate_cause Lost-Carrier 81963 bytes_out 41447 81963 bytes_in 182683 81963 station_ip 5.119.113.146 81963 port 15728885 81963 nas_port_type Virtual 81963 remote_ip 5.5.5.133 81964 username amirhosein 81964 unique_id port 81964 terminate_cause Lost-Carrier 81964 bytes_out 39794 81964 bytes_in 381815 81964 station_ip 5.120.3.16 81964 port 15728890 81964 nas_port_type Virtual 81964 remote_ip 5.5.5.140 81968 username kamali 81968 unique_id port 81968 terminate_cause User-Request 81968 bytes_out 30875 81968 bytes_in 85862 81968 station_ip 83.123.141.128 81968 port 15728895 81968 nas_port_type Virtual 81968 remote_ip 5.5.5.181 81969 username kamali 81969 unique_id port 81969 terminate_cause User-Request 81969 bytes_out 25613 81969 bytes_in 41852 81969 station_ip 83.123.141.128 81969 port 15728896 81969 nas_port_type Virtual 81969 remote_ip 5.5.5.181 81971 username aminvpn 81971 mac 81971 bytes_out 825793 81971 bytes_in 7244839 81971 station_ip 46.100.222.213 81971 port 14 81971 unique_id port 81971 remote_ip 10.8.0.6 81974 username kamali 81974 unique_id port 81924 terminate_cause User-Request 81924 bytes_out 0 81924 bytes_in 0 81924 station_ip 5.202.133.99 81924 port 15728852 81924 nas_port_type Virtual 81924 remote_ip 5.5.5.242 81928 username madadi 81928 unique_id port 81928 terminate_cause Lost-Carrier 81928 bytes_out 74506 81928 bytes_in 383760 81928 station_ip 5.120.119.219 81928 port 15728853 81928 nas_port_type Virtual 81928 remote_ip 5.5.5.151 81929 username ahmadi 81929 unique_id port 81929 terminate_cause User-Request 81929 bytes_out 0 81929 bytes_in 0 81929 station_ip 37.129.151.139 81929 port 15728860 81929 nas_port_type Virtual 81929 remote_ip 5.5.5.145 81930 username amirhosein 81930 unique_id port 81930 terminate_cause Lost-Carrier 81930 bytes_out 59063 81930 bytes_in 536058 81930 station_ip 5.120.3.16 81930 port 15728858 81930 nas_port_type Virtual 81930 remote_ip 5.5.5.165 81931 username caferibar 81931 unique_id port 81931 terminate_cause Lost-Carrier 81931 bytes_out 278170 81931 bytes_in 1415936 81931 station_ip 5.119.151.100 81931 port 15728859 81931 nas_port_type Virtual 81931 remote_ip 5.5.5.146 81935 username madadi 81935 unique_id port 81935 terminate_cause Lost-Carrier 81935 bytes_out 4031 81935 bytes_in 133763 81935 station_ip 5.119.101.35 81935 port 15728863 81935 nas_port_type Virtual 81935 remote_ip 5.5.5.143 81938 username soleymani 81938 unique_id port 81938 terminate_cause Lost-Carrier 81938 bytes_out 87082 81938 bytes_in 436393 81938 station_ip 5.126.209.253 81938 port 15728865 81938 nas_port_type Virtual 81938 remote_ip 5.5.5.142 81939 username amirhosein 81939 unique_id port 81939 terminate_cause Lost-Carrier 81939 bytes_out 15439 81939 bytes_in 140002 81939 station_ip 5.120.3.16 81939 port 15728867 81939 nas_port_type Virtual 81939 remote_ip 5.5.5.140 81944 username amirhosein 81944 unique_id port 81944 terminate_cause Lost-Carrier 81944 bytes_out 17146 81944 bytes_in 137373 81944 station_ip 5.120.3.16 81944 port 15728871 81944 nas_port_type Virtual 81944 remote_ip 5.5.5.140 81947 username arman 81947 unique_id port 81947 terminate_cause Lost-Carrier 81947 bytes_out 1954523 81947 bytes_in 50615578 81947 station_ip 5.120.76.148 81947 port 15728856 81947 nas_port_type Virtual 81947 remote_ip 5.5.5.148 81949 username ksrkrgr 81949 unique_id port 81949 terminate_cause User-Request 81949 bytes_out 0 81949 bytes_in 0 81949 station_ip 94.176.8.253 81949 port 15728876 81949 nas_port_type Virtual 81949 remote_ip 5.5.5.136 81953 username alinezhad 81953 unique_id port 81953 terminate_cause User-Request 81953 bytes_out 46854 81953 bytes_in 563884 81953 station_ip 5.202.133.99 81953 port 15728880 81953 nas_port_type Virtual 81953 remote_ip 5.5.5.242 81955 username madadi 81955 unique_id port 81955 terminate_cause User-Request 81955 bytes_out 0 81955 bytes_in 0 81955 station_ip 5.119.113.146 81955 port 15728884 81955 nas_port_type Virtual 81955 remote_ip 5.5.5.133 81965 username aminvpn 81965 mac 81965 bytes_out 4786235 81965 bytes_in 47289266 81965 station_ip 46.100.222.213 81965 port 14 81965 unique_id port 81965 remote_ip 10.8.0.6 81972 username amirhosein 81972 unique_id port 81972 terminate_cause Lost-Carrier 81972 bytes_out 20249 81972 bytes_in 145885 81972 station_ip 5.120.3.16 81972 port 15728891 81972 nas_port_type Virtual 81972 remote_ip 5.5.5.140 81978 username alirezazamani 81978 kill_reason Relative expiration date has reached 81978 unique_id port 81978 bytes_out 0 81978 bytes_in 0 81978 station_ip 5.119.140.184 81978 port 15728904 81978 nas_port_type Virtual 81980 username amirhosein 81980 unique_id port 81980 terminate_cause Lost-Carrier 81980 bytes_out 5965376 81952 bytes_out 33834 81952 bytes_in 163679 81952 station_ip 5.120.3.16 81952 port 15728879 81952 nas_port_type Virtual 81952 remote_ip 5.5.5.140 81959 username ahmadi 81959 unique_id port 81959 terminate_cause User-Request 81959 bytes_out 25407 81959 bytes_in 137273 81959 station_ip 37.129.151.139 81959 port 15728887 81959 nas_port_type Virtual 81959 remote_ip 5.5.5.145 81962 username forozande 81962 unique_id port 81962 terminate_cause User-Request 81962 bytes_out 150249 81962 bytes_in 244006 81962 station_ip 113.203.9.166 81962 port 15728889 81962 nas_port_type Virtual 81962 remote_ip 5.5.5.131 81966 username caferibar 81966 unique_id port 81966 terminate_cause User-Request 81966 bytes_out 65585 81966 bytes_in 472024 81966 station_ip 113.203.51.7 81966 port 15728892 81966 nas_port_type Virtual 81966 remote_ip 5.5.5.130 81967 username kamali 81967 unique_id port 81967 terminate_cause User-Request 81967 bytes_out 189497 81967 bytes_in 1338115 81967 station_ip 83.123.141.128 81967 port 15728894 81967 nas_port_type Virtual 81967 remote_ip 5.5.5.181 81970 username kamali 81970 unique_id port 81970 terminate_cause User-Request 81970 bytes_out 23964 81970 bytes_in 40683 81970 station_ip 83.123.141.128 81970 port 15728898 81970 nas_port_type Virtual 81970 remote_ip 5.5.5.181 81973 username madadi 81973 unique_id port 81973 terminate_cause Lost-Carrier 81973 bytes_out 616564 81973 bytes_in 1741027 81973 station_ip 5.120.6.192 81973 port 15728886 81973 nas_port_type Virtual 81973 remote_ip 5.5.5.132 81975 username amir 81975 unique_id port 81975 terminate_cause Lost-Carrier 81975 bytes_out 1240022 81975 bytes_in 14776012 81975 station_ip 46.225.209.70 81975 port 15728875 81975 nas_port_type Virtual 81975 remote_ip 5.5.5.135 81977 username dehghan 81977 kill_reason Absolute expiration date has reached 81977 unique_id port 81977 bytes_out 0 81977 bytes_in 0 81977 station_ip 113.203.77.155 81977 port 15728902 81977 nas_port_type Virtual 81979 username zamanialireza 81979 unique_id port 81979 terminate_cause User-Request 81979 bytes_out 0 81979 bytes_in 0 81979 station_ip 94.183.213.166 81979 port 15728906 81979 nas_port_type Virtual 81979 remote_ip 5.5.5.169 81981 username farhad 81981 unique_id port 81981 terminate_cause Lost-Carrier 81981 bytes_out 54862194 81981 bytes_in 228126966 81981 station_ip 5.120.126.96 81981 port 15728848 81981 nas_port_type Virtual 81981 remote_ip 5.5.5.153 81983 username aminvpn 81983 kill_reason Another user logged on this global unique id 81983 mac 81983 bytes_out 0 81983 bytes_in 0 81983 station_ip 5.119.30.76 81983 port 14 81983 unique_id port 81983 remote_ip 10.8.0.6 81984 username alinezhad 81984 unique_id port 81984 terminate_cause User-Request 81984 bytes_out 103178 81984 bytes_in 511238 81984 station_ip 5.202.133.99 81984 port 15728897 81984 nas_port_type Virtual 81984 remote_ip 5.5.5.242 81987 username aminvpn 81987 kill_reason Another user logged on this global unique id 81987 mac 81987 bytes_out 0 81987 bytes_in 0 81987 station_ip 5.119.30.76 81987 port 14 81987 unique_id port 81990 username abdilahyar 81990 unique_id port 81990 terminate_cause Lost-Carrier 81990 bytes_out 1203230 81990 bytes_in 10774840 81990 station_ip 5.119.75.241 81990 port 15728910 81990 nas_port_type Virtual 81990 remote_ip 5.5.5.126 81993 username ahmadi 81993 unique_id port 81993 terminate_cause User-Request 81993 bytes_out 0 81993 bytes_in 0 81993 station_ip 37.129.182.199 81993 port 15728918 81993 nas_port_type Virtual 81993 remote_ip 5.5.5.124 81995 username aminvpn 81995 kill_reason Another user logged on this global unique id 81995 mac 81995 bytes_out 0 81957 remote_ip 10.8.1.10 81960 username forozande 81960 unique_id port 81960 terminate_cause User-Request 81960 bytes_out 260221 81960 bytes_in 1253321 81960 station_ip 113.203.9.166 81960 port 15728888 81960 nas_port_type Virtual 81960 remote_ip 5.5.5.131 81991 username aminvpn 81991 kill_reason Another user logged on this global unique id 81991 mac 81991 bytes_out 0 81991 bytes_in 0 81991 station_ip 5.119.30.76 81991 port 14 81991 unique_id port 81998 username amirabbas 81998 unique_id port 81998 terminate_cause User-Request 81998 bytes_out 2340994 81998 bytes_in 61257462 81998 station_ip 151.238.239.151 81998 port 15728912 81998 nas_port_type Virtual 81998 remote_ip 5.5.5.134 82001 username mahbobeh 82001 unique_id port 82001 terminate_cause Lost-Carrier 82001 bytes_out 88189 82001 bytes_in 1225248 82001 station_ip 83.122.19.218 82001 port 15728900 82001 nas_port_type Virtual 82001 remote_ip 5.5.5.173 82006 username aminvpn 82006 unique_id port 82006 terminate_cause Lost-Carrier 82006 bytes_out 186437 82006 bytes_in 860739 82006 station_ip 5.119.30.76 82006 port 15728928 82006 nas_port_type Virtual 82006 remote_ip 5.5.5.120 82012 username heydari 82012 unique_id port 82012 terminate_cause Lost-Carrier 82012 bytes_out 680557 82012 bytes_in 8144895 82012 station_ip 5.120.91.114 82012 port 15728913 82012 nas_port_type Virtual 82012 remote_ip 5.5.5.144 82013 username amin.insta01 82013 unique_id port 82013 terminate_cause Lost-Carrier 82013 bytes_out 699285 82013 bytes_in 17411138 82013 station_ip 5.119.6.186 82013 port 15728934 82013 nas_port_type Virtual 82013 remote_ip 5.5.5.117 82016 username caferibar 82016 unique_id port 82016 terminate_cause User-Request 82016 bytes_out 12864769 82016 bytes_in 438290140 82016 station_ip 5.120.184.157 82016 port 15728936 82016 nas_port_type Virtual 82016 remote_ip 5.5.5.186 82018 username farhad 82018 unique_id port 82018 terminate_cause Lost-Carrier 82018 bytes_out 18495374 82018 bytes_in 228856563 82018 station_ip 5.120.3.229 82018 port 15728909 82018 nas_port_type Virtual 82018 remote_ip 5.5.5.127 82024 username shahrooz 82024 unique_id port 82024 terminate_cause Lost-Carrier 82024 bytes_out 54890485 82024 bytes_in 1381288832 82024 station_ip 37.129.56.77 82024 port 15728938 82024 nas_port_type Virtual 82024 remote_ip 5.5.5.116 82030 username zamanialireza 82030 unique_id port 82030 terminate_cause User-Request 82030 bytes_out 201855611 82030 bytes_in 320788462 82030 station_ip 5.160.115.139 82030 port 15728949 82030 nas_port_type Virtual 82030 remote_ip 5.5.5.113 82033 username mahbobeh 82033 unique_id port 82033 terminate_cause Lost-Carrier 82033 bytes_out 377070 82033 bytes_in 7704359 82033 station_ip 83.122.19.218 82033 port 15728955 82033 nas_port_type Virtual 82033 remote_ip 5.5.5.173 82034 username caferibar 82034 unique_id port 82034 terminate_cause Lost-Carrier 82034 bytes_out 159202 82034 bytes_in 1628127 82034 station_ip 5.120.175.81 82034 port 15728957 82034 nas_port_type Virtual 82034 remote_ip 5.5.5.110 82035 username zamanialireza 82035 unique_id port 82035 terminate_cause User-Request 82035 bytes_out 142086 82035 bytes_in 458567 82035 station_ip 83.122.36.51 82035 port 15728958 82035 nas_port_type Virtual 82035 remote_ip 5.5.5.109 82038 username aminvpn 82038 mac 82038 bytes_out 0 82038 bytes_in 0 82038 station_ip 5.119.30.76 82038 port 14 82038 unique_id port 82039 username aminvpn 82039 mac 82039 bytes_out 0 82039 bytes_in 0 82039 station_ip 5.119.30.76 82039 port 14 82039 unique_id port 82039 remote_ip 10.8.0.6 82042 username aminvpn 82042 mac 82042 bytes_out 0 81974 terminate_cause User-Request 81974 bytes_out 24113 81974 bytes_in 52750 81974 station_ip 83.123.141.128 81974 port 15728899 81974 nas_port_type Virtual 81974 remote_ip 5.5.5.181 81976 username dehghan 81976 kill_reason Absolute expiration date has reached 81976 unique_id port 81976 bytes_out 0 81976 bytes_in 0 81976 station_ip 113.203.77.155 81976 port 15728901 81976 nas_port_type Virtual 81985 username madadi 81985 unique_id port 81985 terminate_cause Lost-Carrier 81985 bytes_out 37563 81985 bytes_in 262991 81985 station_ip 5.120.187.178 81985 port 15728911 81985 nas_port_type Virtual 81985 remote_ip 5.5.5.125 81988 username alinezhad 81988 unique_id port 81988 terminate_cause User-Request 81988 bytes_out 53850 81988 bytes_in 617615 81988 station_ip 5.202.133.99 81988 port 15728915 81988 nas_port_type Virtual 81988 remote_ip 5.5.5.242 81994 username forozande 81994 unique_id port 81994 terminate_cause User-Request 81994 bytes_out 146098 81994 bytes_in 557769 81994 station_ip 37.129.192.53 81994 port 15728919 81994 nas_port_type Virtual 81994 remote_ip 5.5.5.123 81996 username asadi 81996 unique_id port 81996 terminate_cause User-Request 81996 bytes_out 168977 81996 bytes_in 2813573 81996 station_ip 83.123.211.143 81996 port 15728921 81996 nas_port_type Virtual 81996 remote_ip 5.5.5.149 81999 username asadi 81999 unique_id port 81999 terminate_cause User-Request 81999 bytes_out 101189 81999 bytes_in 2093049 81999 station_ip 83.123.211.143 81999 port 15728923 81999 nas_port_type Virtual 81999 remote_ip 5.5.5.149 82003 username aminvpn 82003 mac 82003 bytes_out 0 82003 bytes_in 0 82003 station_ip 5.119.30.76 82003 port 14 82003 unique_id port 82004 username alinezhad 82004 unique_id port 82004 terminate_cause User-Request 82004 bytes_out 68659 82004 bytes_in 204429 82004 station_ip 5.202.133.99 82004 port 15728925 82004 nas_port_type Virtual 82004 remote_ip 5.5.5.242 82007 username ahmadi 82007 unique_id port 82007 terminate_cause User-Request 82007 bytes_out 13829 82007 bytes_in 56025 82007 station_ip 37.129.182.199 82007 port 15728929 82007 nas_port_type Virtual 82007 remote_ip 5.5.5.124 82008 username soleymani 82008 unique_id port 82008 terminate_cause Lost-Carrier 82008 bytes_out 78007 82008 bytes_in 490502 82008 station_ip 5.126.210.97 82008 port 15728927 82008 nas_port_type Virtual 82008 remote_ip 5.5.5.121 82011 username zamanialireza 82011 unique_id port 82011 terminate_cause User-Request 82011 bytes_out 2425278 82011 bytes_in 6783974 82011 station_ip 94.183.213.166 82011 port 15728932 82011 nas_port_type Virtual 82011 remote_ip 5.5.5.169 82021 username alinezhad 82021 unique_id port 82021 terminate_cause User-Request 82021 bytes_out 0 82021 bytes_in 0 82021 station_ip 37.129.253.99 82021 port 15728944 82021 nas_port_type Virtual 82021 remote_ip 5.5.5.119 82023 username caferibar 82023 unique_id port 82023 terminate_cause Lost-Carrier 82023 bytes_out 12366999 82023 bytes_in 400703012 82023 station_ip 31.59.38.80 82023 port 15728943 82023 nas_port_type Virtual 82023 remote_ip 5.5.5.114 82029 username pouria 82029 unique_id port 82029 terminate_cause Lost-Carrier 82029 bytes_out 598017 82029 bytes_in 13398805 82029 station_ip 151.235.121.231 82029 port 15728952 82029 nas_port_type Virtual 82029 remote_ip 5.5.5.112 82031 username pouria 82031 unique_id port 82031 terminate_cause Lost-Carrier 82031 bytes_out 84230241 82031 bytes_in 4204720834 82031 station_ip 5.120.112.194 82031 port 15728953 82031 nas_port_type Virtual 82031 remote_ip 5.5.5.111 82036 username aminvpn 82036 kill_reason Another user logged on this global unique id 82036 mac 82036 bytes_out 0 81980 bytes_in 741013 81980 station_ip 5.120.3.16 81980 port 15728893 81980 nas_port_type Virtual 81980 remote_ip 5.5.5.129 81982 username madadi 81982 unique_id port 81982 terminate_cause Lost-Carrier 81982 bytes_out 76540 81982 bytes_in 250850 81982 station_ip 5.119.33.204 81982 port 15728905 81982 nas_port_type Virtual 81982 remote_ip 5.5.5.128 81986 username ahmadi 81986 unique_id port 81986 terminate_cause User-Request 81986 bytes_out 58997 81986 bytes_in 1218057 81986 station_ip 37.129.182.199 81986 port 15728914 81986 nas_port_type Virtual 81986 remote_ip 5.5.5.124 81989 username amirhosein 81989 unique_id port 81989 terminate_cause Lost-Carrier 81989 bytes_out 66838 81989 bytes_in 321011 81989 station_ip 5.120.3.16 81989 port 15728916 81989 nas_port_type Virtual 81989 remote_ip 5.5.5.129 81992 username alinezhad 81992 unique_id port 81992 terminate_cause User-Request 81992 bytes_out 9492 81992 bytes_in 16990 81992 station_ip 5.202.133.99 81992 port 15728917 81992 nas_port_type Virtual 81992 remote_ip 5.5.5.242 81997 username alinezhad 81997 unique_id port 81997 terminate_cause User-Request 81997 bytes_out 0 81997 bytes_in 0 81997 station_ip 5.202.133.99 81997 port 15728922 81997 nas_port_type Virtual 81997 remote_ip 5.5.5.242 82002 username asadi 82002 unique_id port 82002 terminate_cause User-Request 82002 bytes_out 50086 82002 bytes_in 218997 82002 station_ip 83.123.211.143 82002 port 15728924 82002 nas_port_type Virtual 82002 remote_ip 5.5.5.149 82009 username alinezhad 82009 unique_id port 82009 terminate_cause User-Request 82009 bytes_out 0 82009 bytes_in 0 82009 station_ip 37.129.253.99 82009 port 15728931 82009 nas_port_type Virtual 82009 remote_ip 5.5.5.119 82010 username ahmadi 82010 unique_id port 82010 terminate_cause User-Request 82010 bytes_out 19177 82010 bytes_in 109843 82010 station_ip 37.129.177.99 82010 port 15728933 82010 nas_port_type Virtual 82010 remote_ip 5.5.5.118 82014 username mahbobeh 82014 unique_id port 82014 terminate_cause Lost-Carrier 82014 bytes_out 683993 82014 bytes_in 9414317 82014 station_ip 83.122.19.218 82014 port 15728930 82014 nas_port_type Virtual 82014 remote_ip 5.5.5.173 82019 username caferibar 82019 unique_id port 82019 terminate_cause User-Request 82019 bytes_out 0 82019 bytes_in 0 82019 station_ip 31.59.38.80 82019 port 15728941 82019 nas_port_type Virtual 82019 remote_ip 5.5.5.114 82020 username caferibar 82020 unique_id port 82020 terminate_cause User-Request 82020 bytes_out 0 82020 bytes_in 0 82020 station_ip 31.59.38.80 82020 port 15728942 82020 nas_port_type Virtual 82020 remote_ip 5.5.5.114 82022 username madadi 82022 unique_id port 82022 terminate_cause Lost-Carrier 82022 bytes_out 4441849 82022 bytes_in 45160512 82022 station_ip 5.119.232.114 82022 port 15728920 82022 nas_port_type Virtual 82022 remote_ip 5.5.5.122 82027 username heydari 82027 unique_id port 82027 terminate_cause Lost-Carrier 82027 bytes_out 210709 82027 bytes_in 1789700 82027 station_ip 5.120.91.114 82027 port 15728940 82027 nas_port_type Virtual 82027 remote_ip 5.5.5.144 82032 username caferibar 82032 unique_id port 82032 terminate_cause User-Request 82032 bytes_out 0 82032 bytes_in 0 82032 station_ip 5.120.175.81 82032 port 15728956 82032 nas_port_type Virtual 82032 remote_ip 5.5.5.110 82037 username aminvpn 82037 kill_reason Another user logged on this global unique id 82037 mac 82037 bytes_out 0 82037 bytes_in 0 82037 station_ip 5.119.30.76 82037 port 14 82037 unique_id port 82041 username aminvpn 82041 mac 82041 bytes_out 0 82041 bytes_in 0 82041 station_ip 5.119.30.76 82041 port 14 81995 bytes_in 0 81995 station_ip 5.119.30.76 81995 port 14 81995 unique_id port 82000 username aminvpn 82000 kill_reason Another user logged on this global unique id 82000 mac 82000 bytes_out 0 82000 bytes_in 0 82000 station_ip 5.119.30.76 82000 port 14 82000 unique_id port 82005 username asadi 82005 unique_id port 82005 terminate_cause User-Request 82005 bytes_out 193485 82005 bytes_in 4642610 82005 station_ip 83.123.211.143 82005 port 15728926 82005 nas_port_type Virtual 82005 remote_ip 5.5.5.149 82015 username amirabbas 82015 unique_id port 82015 terminate_cause User-Request 82015 bytes_out 8143484 82015 bytes_in 188618592 82015 station_ip 151.238.239.151 82015 port 15728937 82015 nas_port_type Virtual 82015 remote_ip 5.5.5.134 82017 username heydari 82017 unique_id port 82017 terminate_cause Lost-Carrier 82017 bytes_out 311984 82017 bytes_in 1491706 82017 station_ip 5.120.91.114 82017 port 15728935 82017 nas_port_type Virtual 82017 remote_ip 5.5.5.144 82025 username farhad 82025 unique_id port 82025 terminate_cause Lost-Carrier 82025 bytes_out 4943595 82025 bytes_in 23672420 82025 station_ip 5.119.203.255 82025 port 15728939 82025 nas_port_type Virtual 82025 remote_ip 5.5.5.115 82026 username pouria 82026 unique_id port 82026 terminate_cause Lost-Carrier 82026 bytes_out 2478198 82026 bytes_in 38194636 82026 station_ip 151.235.121.231 82026 port 15728950 82026 nas_port_type Virtual 82026 remote_ip 5.5.5.112 82028 username pouria 82028 unique_id port 82028 terminate_cause Lost-Carrier 82028 bytes_out 6727558 82028 bytes_in 287855751 82028 station_ip 5.120.112.194 82028 port 15728951 82028 nas_port_type Virtual 82028 remote_ip 5.5.5.111 82036 bytes_in 0 82036 station_ip 5.119.30.76 82036 port 14 82036 unique_id port 82036 remote_ip 10.8.0.6 82040 username aminvpn 82040 mac 82040 bytes_out 0 82040 bytes_in 0 82040 station_ip 5.119.30.76 82040 port 14 82040 unique_id port 82040 remote_ip 10.8.0.6 82044 username aminvpn 82044 mac 82044 bytes_out 0 82044 bytes_in 0 82044 station_ip 5.119.30.76 82044 port 14 82044 unique_id port 82044 remote_ip 10.8.0.6 82045 username aminvpn 82045 mac 82045 bytes_out 0 82045 bytes_in 0 82045 station_ip 5.119.30.76 82045 port 14 82045 unique_id port 82045 remote_ip 10.8.0.6 82050 username aminvpn 82050 mac 82050 bytes_out 0 82050 bytes_in 0 82050 station_ip 5.119.30.76 82050 port 14 82050 unique_id port 82050 remote_ip 10.8.0.6 82055 username ahmadi 82055 unique_id port 82055 terminate_cause User-Request 82055 bytes_out 267173 82055 bytes_in 765096 82055 station_ip 37.129.147.255 82055 port 15728960 82055 nas_port_type Virtual 82055 remote_ip 5.5.5.107 82056 username aminvpn 82056 mac 82056 bytes_out 0 82056 bytes_in 0 82056 station_ip 5.119.30.76 82056 port 14 82056 unique_id port 82056 remote_ip 10.8.0.6 82060 username aminvpn 82060 mac 82060 bytes_out 0 82060 bytes_in 0 82060 station_ip 5.119.30.76 82060 port 14 82060 unique_id port 82060 remote_ip 10.8.0.6 82063 username aminvpn 82063 mac 82063 bytes_out 0 82063 bytes_in 0 82063 station_ip 5.119.30.76 82063 port 14 82063 unique_id port 82063 remote_ip 10.8.0.6 82068 username aminvpn 82068 mac 82068 bytes_out 0 82068 bytes_in 0 82068 station_ip 5.119.30.76 82068 port 14 82068 unique_id port 82068 remote_ip 10.8.0.6 82072 username aminvpn 82072 mac 82072 bytes_out 0 82072 bytes_in 0 82072 station_ip 5.119.30.76 82072 port 14 82072 unique_id port 82041 unique_id port 82041 remote_ip 10.8.0.6 82053 username caferibar 82053 unique_id port 82053 terminate_cause Lost-Carrier 82053 bytes_out 148628 82053 bytes_in 653409 82053 station_ip 5.120.189.103 82053 port 15728959 82053 nas_port_type Virtual 82053 remote_ip 5.5.5.108 82058 username mobina 82058 kill_reason Relative expiration date has reached 82058 unique_id port 82058 bytes_out 0 82058 bytes_in 0 82058 station_ip 5.121.12.94 82058 port 15728961 82058 nas_port_type Virtual 82061 username aminvpn 82061 mac 82061 bytes_out 0 82061 bytes_in 0 82061 station_ip 5.119.30.76 82061 port 14 82061 unique_id port 82061 remote_ip 10.8.0.6 82064 username aminvpn 82064 mac 82064 bytes_out 0 82064 bytes_in 0 82064 station_ip 5.119.30.76 82064 port 14 82064 unique_id port 82064 remote_ip 10.8.0.6 82073 username aminvpn 82073 mac 82073 bytes_out 0 82073 bytes_in 0 82073 station_ip 5.119.30.76 82073 port 14 82073 unique_id port 82073 remote_ip 10.8.0.6 82076 username madadi 82076 unique_id port 82076 terminate_cause Admin-Reboot 82076 bytes_out 162338 82076 bytes_in 1457512 82076 station_ip 5.119.240.194 82076 port 15728963 82076 nas_port_type Virtual 82076 remote_ip 5.5.5.105 82077 username aminvpn 82077 mac 82077 bytes_out 0 82077 bytes_in 0 82077 station_ip 5.119.30.76 82077 port 14 82077 unique_id port 82077 remote_ip 10.8.0.6 82078 username aminvpn 82078 mac 82078 bytes_out 0 82078 bytes_in 0 82078 station_ip 5.119.30.76 82078 port 14 82078 unique_id port 82078 remote_ip 10.8.0.6 82079 username aminvpn 82079 mac 82079 bytes_out 0 82079 bytes_in 0 82079 station_ip 5.119.30.76 82079 port 14 82079 unique_id port 82079 remote_ip 10.8.0.6 82080 username aminvpn 82080 mac 82080 bytes_out 0 82080 bytes_in 0 82080 station_ip 5.119.30.76 82080 port 14 82080 unique_id port 82080 remote_ip 10.8.0.6 82081 username aminvpn 82081 mac 82081 bytes_out 0 82081 bytes_in 0 82081 station_ip 5.119.30.76 82081 port 14 82081 unique_id port 82081 remote_ip 10.8.0.6 82085 username aminvpn 82085 mac 82085 bytes_out 0 82085 bytes_in 0 82085 station_ip 5.119.30.76 82085 port 14 82085 unique_id port 82085 remote_ip 10.8.0.6 82087 username aminvpn 82087 mac 82087 bytes_out 0 82087 bytes_in 0 82087 station_ip 5.119.30.76 82087 port 14 82087 unique_id port 82087 remote_ip 10.8.0.6 82091 username aminvpn 82091 mac 82091 bytes_out 0 82091 bytes_in 0 82091 station_ip 5.119.30.76 82091 port 14 82091 unique_id port 82091 remote_ip 10.8.0.6 82095 username aminvpn 82095 mac 82095 bytes_out 0 82095 bytes_in 0 82095 station_ip 5.119.30.76 82095 port 29 82095 unique_id port 82095 remote_ip 10.8.1.10 82096 username aminvpn 82096 mac 82096 bytes_out 0 82096 bytes_in 0 82096 station_ip 5.119.30.76 82096 port 14 82096 unique_id port 82096 remote_ip 10.8.0.6 82097 username aminvpn 82097 mac 82097 bytes_out 0 82097 bytes_in 0 82097 station_ip 5.119.30.76 82097 port 14 82097 unique_id port 82097 remote_ip 10.8.0.6 82102 username aminvpn 82102 mac 82102 bytes_out 0 82102 bytes_in 0 82102 station_ip 5.119.30.76 82102 port 14 82102 unique_id port 82102 remote_ip 10.8.0.6 82103 username aminvpn 82103 mac 82103 bytes_out 0 82103 bytes_in 0 82103 station_ip 5.119.30.76 82103 port 14 82103 unique_id port 82103 remote_ip 10.8.0.6 82042 bytes_in 0 82042 station_ip 5.119.30.76 82042 port 14 82042 unique_id port 82042 remote_ip 10.8.0.6 82043 username aminvpn 82043 mac 82043 bytes_out 0 82043 bytes_in 0 82043 station_ip 5.119.30.76 82043 port 14 82043 unique_id port 82043 remote_ip 10.8.0.6 82049 username aminvpn 82049 mac 82049 bytes_out 0 82049 bytes_in 0 82049 station_ip 5.119.30.76 82049 port 14 82049 unique_id port 82049 remote_ip 10.8.0.6 82054 username aminvpn 82054 mac 82054 bytes_out 1687 82054 bytes_in 5401 82054 station_ip 5.119.30.76 82054 port 14 82054 unique_id port 82054 remote_ip 10.8.0.6 82059 username aminvpn 82059 mac 82059 bytes_out 0 82059 bytes_in 0 82059 station_ip 5.119.30.76 82059 port 14 82059 unique_id port 82059 remote_ip 10.8.0.6 82062 username aminvpn 82062 mac 82062 bytes_out 0 82062 bytes_in 0 82062 station_ip 5.119.30.76 82062 port 14 82062 unique_id port 82062 remote_ip 10.8.0.6 82067 username aminvpn 82067 mac 82067 bytes_out 0 82067 bytes_in 0 82067 station_ip 5.119.30.76 82067 port 14 82067 unique_id port 82067 remote_ip 10.8.0.6 82070 username madadi 82070 unique_id port 82070 terminate_cause Lost-Carrier 82070 bytes_out 36218 82070 bytes_in 158586 82070 station_ip 5.120.18.111 82070 port 15728962 82070 nas_port_type Virtual 82070 remote_ip 5.5.5.106 82071 username aminvpn 82071 mac 82071 bytes_out 0 82071 bytes_in 0 82071 station_ip 5.119.30.76 82071 port 14 82071 unique_id port 82071 remote_ip 10.8.0.6 82074 username aminvpn 82074 mac 82074 bytes_out 0 82074 bytes_in 0 82074 station_ip 5.119.30.76 82074 port 14 82074 unique_id port 82074 remote_ip 10.8.0.6 82075 username aminvpn 82075 mac 82075 bytes_out 0 82075 bytes_in 0 82075 station_ip 5.119.30.76 82075 port 14 82075 unique_id port 82075 remote_ip 10.8.0.6 82082 username aminvpn 82082 mac 82082 bytes_out 0 82082 bytes_in 0 82082 station_ip 5.119.30.76 82082 port 14 82082 unique_id port 82082 remote_ip 10.8.0.6 82086 username aminvpn 82086 mac 82086 bytes_out 0 82086 bytes_in 0 82086 station_ip 5.119.30.76 82086 port 14 82086 unique_id port 82086 remote_ip 10.8.0.6 82094 username alirezazamani 82094 kill_reason Relative expiration date has reached 82094 unique_id port 82094 bytes_out 0 82094 bytes_in 0 82094 station_ip 89.32.100.126 82094 port 15728643 82094 nas_port_type Virtual 82098 username aminvpn 82098 mac 82098 bytes_out 0 82098 bytes_in 0 82098 station_ip 5.119.30.76 82098 port 14 82098 unique_id port 82098 remote_ip 10.8.0.6 82105 username aminvpn 82105 mac 82105 bytes_out 0 82105 bytes_in 0 82105 station_ip 5.119.30.76 82105 port 14 82105 unique_id port 82105 remote_ip 10.8.0.6 82109 username amin.insta01 82109 unique_id port 82109 terminate_cause Lost-Carrier 82109 bytes_out 2005581 82109 bytes_in 40628912 82109 station_ip 5.120.118.61 82109 port 15728642 82109 nas_port_type Virtual 82109 remote_ip 5.5.5.253 82115 username aminvpn 82115 mac 82115 bytes_out 0 82115 bytes_in 0 82115 station_ip 5.119.30.76 82115 port 14 82115 unique_id port 82115 remote_ip 10.8.0.6 82116 username aminvpn 82116 mac 82116 bytes_out 0 82116 bytes_in 0 82116 station_ip 5.119.30.76 82116 port 14 82116 unique_id port 82116 remote_ip 10.8.0.6 82122 username aminvpn 82122 mac 82122 bytes_out 0 82122 bytes_in 0 82122 station_ip 5.119.30.76 82046 username aminvpn 82046 mac 82046 bytes_out 0 82046 bytes_in 0 82046 station_ip 5.119.30.76 82046 port 14 82046 unique_id port 82046 remote_ip 10.8.0.6 82047 username aminvpn 82047 mac 82047 bytes_out 0 82047 bytes_in 0 82047 station_ip 5.119.30.76 82047 port 14 82047 unique_id port 82047 remote_ip 10.8.0.6 82048 username aminvpn 82048 mac 82048 bytes_out 0 82048 bytes_in 0 82048 station_ip 5.119.30.76 82048 port 14 82048 unique_id port 82048 remote_ip 10.8.0.6 82051 username aminvpn 82051 mac 82051 bytes_out 0 82051 bytes_in 0 82051 station_ip 5.119.30.76 82051 port 14 82051 unique_id port 82051 remote_ip 10.8.0.6 82052 username aminvpn 82052 mac 82052 bytes_out 0 82052 bytes_in 0 82052 station_ip 5.119.30.76 82052 port 14 82052 unique_id port 82052 remote_ip 10.8.0.6 82057 username aminvpn 82057 mac 82057 bytes_out 0 82057 bytes_in 0 82057 station_ip 5.119.30.76 82057 port 14 82057 unique_id port 82057 remote_ip 10.8.0.6 82065 username aminvpn 82065 mac 82065 bytes_out 0 82065 bytes_in 0 82065 station_ip 5.119.30.76 82065 port 29 82065 unique_id port 82065 remote_ip 10.8.1.10 82066 username aminvpn 82066 mac 82066 bytes_out 0 82066 bytes_in 0 82066 station_ip 5.119.30.76 82066 port 14 82066 unique_id port 82066 remote_ip 10.8.0.6 82069 username aminvpn 82069 mac 82069 bytes_out 0 82069 bytes_in 0 82069 station_ip 5.119.30.76 82069 port 14 82069 unique_id port 82069 remote_ip 10.8.0.6 82084 username aminvpn 82084 mac 82084 bytes_out 0 82084 bytes_in 0 82084 station_ip 5.119.30.76 82084 port 14 82084 unique_id port 82084 remote_ip 10.8.0.6 82090 username aminvpn 82090 mac 82090 bytes_out 0 82090 bytes_in 0 82090 station_ip 5.119.30.76 82090 port 14 82090 unique_id port 82090 remote_ip 10.8.0.6 82099 username aminvpn 82099 mac 82099 bytes_out 0 82099 bytes_in 0 82099 station_ip 5.119.30.76 82099 port 14 82099 unique_id port 82099 remote_ip 10.8.0.6 82100 username aminvpn 82100 mac 82100 bytes_out 0 82100 bytes_in 0 82100 station_ip 5.119.30.76 82100 port 14 82100 unique_id port 82100 remote_ip 10.8.0.6 82101 username aminvpn 82101 mac 82101 bytes_out 0 82101 bytes_in 0 82101 station_ip 5.119.30.76 82101 port 14 82101 unique_id port 82101 remote_ip 10.8.0.6 82107 username aminvpn 82107 mac 82107 bytes_out 0 82107 bytes_in 0 82107 station_ip 5.119.30.76 82107 port 29 82107 unique_id port 82107 remote_ip 10.8.1.10 82108 username aminvpn 82108 mac 82108 bytes_out 0 82108 bytes_in 0 82108 station_ip 5.119.30.76 82108 port 29 82108 unique_id port 82108 remote_ip 10.8.1.10 82110 username aminvpn 82110 mac 82110 bytes_out 0 82110 bytes_in 0 82110 station_ip 5.119.30.76 82110 port 14 82110 unique_id port 82110 remote_ip 10.8.0.6 82113 username asadi 82113 unique_id port 82113 terminate_cause User-Request 82113 bytes_out 272725 82113 bytes_in 5125172 82113 station_ip 37.129.187.84 82113 port 15728648 82113 nas_port_type Virtual 82113 remote_ip 5.5.5.251 82125 username aminvpn 82125 mac 82125 bytes_out 0 82125 bytes_in 0 82125 station_ip 5.119.30.76 82125 port 14 82125 unique_id port 82125 remote_ip 10.8.0.6 82129 username aminvpn 82129 mac 82129 bytes_out 1628 82129 bytes_in 5142 82129 station_ip 5.119.30.76 82129 port 14 82072 remote_ip 10.8.0.6 82083 username aminvpn 82083 mac 82083 bytes_out 0 82083 bytes_in 0 82083 station_ip 5.119.30.76 82083 port 14 82083 unique_id port 82083 remote_ip 10.8.0.6 82088 username madadi 82088 unique_id port 82088 terminate_cause Lost-Carrier 82088 bytes_out 43038 82088 bytes_in 181523 82088 station_ip 5.119.240.194 82088 port 15728640 82088 nas_port_type Virtual 82088 remote_ip 5.5.5.255 82089 username aminvpn 82089 mac 82089 bytes_out 0 82089 bytes_in 0 82089 station_ip 5.119.30.76 82089 port 14 82089 unique_id port 82089 remote_ip 10.8.0.6 82092 username aminvpn 82092 mac 82092 bytes_out 0 82092 bytes_in 0 82092 station_ip 5.119.30.76 82092 port 29 82092 unique_id port 82092 remote_ip 10.8.1.10 82093 username aminvpn 82093 mac 82093 bytes_out 0 82093 bytes_in 0 82093 station_ip 5.119.30.76 82093 port 29 82093 unique_id port 82093 remote_ip 10.8.1.10 82106 username aminvpn 82106 mac 82106 bytes_out 0 82106 bytes_in 0 82106 station_ip 5.119.30.76 82106 port 14 82106 unique_id port 82106 remote_ip 10.8.0.6 82112 username aminvpn 82112 mac 82112 bytes_out 1628 82112 bytes_in 5089 82112 station_ip 5.119.30.76 82112 port 14 82112 unique_id port 82112 remote_ip 10.8.0.6 82117 username aminvpn 82117 mac 82117 bytes_out 0 82117 bytes_in 0 82117 station_ip 5.119.30.76 82117 port 14 82117 unique_id port 82117 remote_ip 10.8.0.6 82119 username aminvpn 82119 mac 82119 bytes_out 1694 82119 bytes_in 4314 82119 station_ip 5.119.30.76 82119 port 14 82119 unique_id port 82119 remote_ip 10.8.0.6 82120 username aminvpn 82120 mac 82120 bytes_out 1628 82120 bytes_in 5142 82120 station_ip 5.119.30.76 82120 port 14 82120 unique_id port 82120 remote_ip 10.8.0.6 82130 username madadi 82130 unique_id port 82130 terminate_cause Lost-Carrier 82130 bytes_out 1145280 82130 bytes_in 15165716 82130 station_ip 5.119.206.82 82130 port 15728641 82130 nas_port_type Virtual 82130 remote_ip 5.5.5.254 82133 username aminvpn 82133 mac 82133 bytes_out 0 82133 bytes_in 0 82133 station_ip 5.119.30.76 82133 port 14 82133 unique_id port 82133 remote_ip 10.8.0.6 82139 username forozande 82139 unique_id port 82139 terminate_cause User-Request 82139 bytes_out 38548 82139 bytes_in 363984 82139 station_ip 37.129.178.170 82139 port 15728656 82139 nas_port_type Virtual 82139 remote_ip 5.5.5.248 82153 username aminvpn 82153 mac 82153 bytes_out 0 82153 bytes_in 0 82153 station_ip 5.119.30.76 82153 port 14 82153 unique_id port 82153 remote_ip 10.8.0.6 82155 username aminvpn 82155 mac 82155 bytes_out 0 82155 bytes_in 0 82155 station_ip 5.119.30.76 82155 port 14 82155 unique_id port 82155 remote_ip 10.8.0.6 82159 username soleymani 82159 kill_reason Maximum check online fails reached 82159 unique_id port 82159 bytes_out 83801 82159 bytes_in 528262 82159 station_ip 5.125.193.15 82159 port 15728665 82159 nas_port_type Virtual 82159 remote_ip 5.5.5.240 82174 username aminvpn 82174 mac 82174 bytes_out 0 82174 bytes_in 0 82174 station_ip 5.119.30.76 82174 port 14 82174 unique_id port 82174 remote_ip 10.8.0.6 82175 username madadi 82175 unique_id port 82175 terminate_cause Lost-Carrier 82175 bytes_out 463840 82175 bytes_in 8664909 82175 station_ip 5.119.230.69 82175 port 15728667 82175 nas_port_type Virtual 82175 remote_ip 5.5.5.238 82176 username forozande 82176 unique_id port 82176 terminate_cause User-Request 82104 username aminvpn 82104 mac 82104 bytes_out 0 82104 bytes_in 0 82104 station_ip 5.119.30.76 82104 port 14 82104 unique_id port 82104 remote_ip 10.8.0.6 82111 username aminvpn 82111 mac 82111 bytes_out 0 82111 bytes_in 0 82111 station_ip 5.119.30.76 82111 port 14 82111 unique_id port 82111 remote_ip 10.8.0.6 82114 username aminvpn 82114 mac 82114 bytes_out 0 82114 bytes_in 0 82114 station_ip 5.119.30.76 82114 port 14 82114 unique_id port 82114 remote_ip 10.8.0.6 82118 username caferibar 82118 unique_id port 82118 terminate_cause User-Request 82118 bytes_out 2238184 82118 bytes_in 63429497 82118 station_ip 5.119.251.65 82118 port 15728644 82118 nas_port_type Virtual 82118 remote_ip 5.5.5.252 82121 username aminvpn 82121 mac 82121 bytes_out 0 82121 bytes_in 0 82121 station_ip 5.119.30.76 82121 port 29 82121 unique_id port 82121 remote_ip 10.8.1.10 82124 username soleymani 82124 unique_id port 82124 terminate_cause Lost-Carrier 82124 bytes_out 1398034 82124 bytes_in 34119970 82124 station_ip 5.125.0.194 82124 port 15728649 82124 nas_port_type Virtual 82124 remote_ip 5.5.5.250 82126 username aminvpn 82126 mac 82126 bytes_out 0 82126 bytes_in 0 82126 station_ip 5.119.30.76 82126 port 14 82126 unique_id port 82126 remote_ip 10.8.0.6 82127 username aminvpn 82127 mac 82127 bytes_out 0 82127 bytes_in 0 82127 station_ip 5.119.30.76 82127 port 14 82127 unique_id port 82127 remote_ip 10.8.0.6 82131 username forozande 82131 unique_id port 82131 terminate_cause User-Request 82131 bytes_out 186249 82131 bytes_in 1763341 82131 station_ip 37.129.178.170 82131 port 15728654 82131 nas_port_type Virtual 82131 remote_ip 5.5.5.248 82138 username aminvpn 82138 mac 82138 bytes_out 0 82138 bytes_in 0 82138 station_ip 5.119.30.76 82138 port 14 82138 unique_id port 82138 remote_ip 10.8.0.6 82140 username aminvpn 82140 mac 82140 bytes_out 0 82140 bytes_in 0 82140 station_ip 5.119.30.76 82140 port 14 82140 unique_id port 82140 remote_ip 10.8.0.6 82142 username forozande 82142 unique_id port 82142 terminate_cause User-Request 82142 bytes_out 33255 82142 bytes_in 196006 82142 station_ip 37.129.178.170 82142 port 15728659 82142 nas_port_type Virtual 82142 remote_ip 5.5.5.248 82144 username asadi 82144 unique_id port 82144 terminate_cause User-Request 82144 bytes_out 131177 82144 bytes_in 3621176 82144 station_ip 37.129.187.84 82144 port 15728660 82144 nas_port_type Virtual 82144 remote_ip 5.5.5.251 82145 username aminvpn 82145 mac 82145 bytes_out 0 82145 bytes_in 0 82145 station_ip 5.119.30.76 82145 port 29 82145 unique_id port 82145 remote_ip 10.8.1.10 82146 username aminvpn 82146 unique_id port 82146 terminate_cause Lost-Carrier 82146 bytes_out 2243260 82146 bytes_in 41706277 82146 station_ip 5.119.117.221 82146 port 15728655 82146 nas_port_type Virtual 82146 remote_ip 5.5.5.247 82147 username aminvpn 82147 mac 82147 bytes_out 0 82147 bytes_in 0 82147 station_ip 5.119.30.76 82147 port 14 82147 unique_id port 82147 remote_ip 10.8.0.6 82151 username madadi 82151 unique_id port 82151 terminate_cause Lost-Carrier 82151 bytes_out 18436 82151 bytes_in 178731 82151 station_ip 5.119.37.229 82151 port 15728658 82151 nas_port_type Virtual 82151 remote_ip 5.5.5.245 82161 username madadi 82161 unique_id port 82161 terminate_cause Lost-Carrier 82161 bytes_out 54279 82161 bytes_in 221583 82161 station_ip 5.119.75.94 82161 port 15728662 82161 nas_port_type Virtual 82122 port 29 82122 unique_id port 82122 remote_ip 10.8.1.10 82123 username hamideh 82123 unique_id port 82123 terminate_cause Lost-Carrier 82123 bytes_out 404789 82123 bytes_in 3187680 82123 station_ip 5.120.16.147 82123 port 15728651 82123 nas_port_type Virtual 82123 remote_ip 5.5.5.249 82128 username forozande 82128 unique_id port 82128 terminate_cause User-Request 82128 bytes_out 174989 82128 bytes_in 906342 82128 station_ip 37.129.178.170 82128 port 15728653 82128 nas_port_type Virtual 82128 remote_ip 5.5.5.248 82132 username aminvpn 82132 mac 82132 bytes_out 0 82132 bytes_in 0 82132 station_ip 5.119.30.76 82132 port 14 82132 unique_id port 82132 remote_ip 10.8.0.6 82137 username aminvpn 82137 mac 82137 bytes_out 0 82137 bytes_in 0 82137 station_ip 5.119.30.76 82137 port 14 82137 unique_id port 82137 remote_ip 10.8.0.6 82148 username aminvpn 82148 mac 82148 bytes_out 0 82148 bytes_in 0 82148 station_ip 5.119.30.76 82148 port 14 82148 unique_id port 82148 remote_ip 10.8.0.6 82152 username aminvpn 82152 mac 82152 bytes_out 1628 82152 bytes_in 5142 82152 station_ip 5.119.30.76 82152 port 14 82152 unique_id port 82152 remote_ip 10.8.0.6 82156 username shahriyar 82156 unique_id port 82156 terminate_cause User-Request 82156 bytes_out 314636 82156 bytes_in 8610509 82156 station_ip 37.129.127.19 82156 port 15728664 82156 nas_port_type Virtual 82156 remote_ip 5.5.5.241 82163 username hamideh 82163 unique_id port 82163 terminate_cause User-Request 82163 bytes_out 574679 82163 bytes_in 12105231 82163 station_ip 5.120.54.32 82163 port 15728663 82163 nas_port_type Virtual 82163 remote_ip 5.5.5.242 82166 username aminvpn 82166 mac 82166 bytes_out 0 82166 bytes_in 0 82166 station_ip 5.119.30.76 82166 port 14 82166 unique_id port 82166 remote_ip 10.8.0.6 82173 username aminvpn 82173 mac 82173 bytes_out 0 82173 bytes_in 0 82173 station_ip 5.119.30.76 82173 port 14 82173 unique_id port 82173 remote_ip 10.8.0.6 82191 username aminvpn 82191 mac 82191 bytes_out 0 82191 bytes_in 0 82191 station_ip 5.119.30.76 82191 port 14 82191 unique_id port 82191 remote_ip 10.8.0.6 82196 username forozande 82196 unique_id port 82196 terminate_cause User-Request 82196 bytes_out 26614 82196 bytes_in 85749 82196 station_ip 83.122.118.23 82196 port 15728676 82196 nas_port_type Virtual 82196 remote_ip 5.5.5.235 82197 username aminvpn 82197 mac 82197 bytes_out 0 82197 bytes_in 0 82197 station_ip 5.119.30.76 82197 port 14 82197 unique_id port 82197 remote_ip 10.8.0.6 82200 username aminvpn 82200 mac 82200 bytes_out 1628 82200 bytes_in 5142 82200 station_ip 5.119.30.76 82200 port 14 82200 unique_id port 82200 remote_ip 10.8.0.6 82203 username aminvpn 82203 mac 82203 bytes_out 0 82203 bytes_in 0 82203 station_ip 5.119.30.76 82203 port 14 82203 unique_id port 82203 remote_ip 10.8.0.6 82209 username aminvpn 82209 mac 82209 bytes_out 0 82209 bytes_in 0 82209 station_ip 5.119.30.76 82209 port 14 82209 unique_id port 82209 remote_ip 10.8.0.6 82211 username aminvpn 82211 mac 82211 bytes_out 0 82211 bytes_in 0 82211 station_ip 5.119.30.76 82211 port 14 82211 unique_id port 82211 remote_ip 10.8.0.6 82219 username hamideh 82219 unique_id port 82219 terminate_cause Lost-Carrier 82219 bytes_out 325220 82219 bytes_in 4547001 82219 station_ip 5.120.54.32 82219 port 15728681 82219 nas_port_type Virtual 82219 remote_ip 5.5.5.242 82129 unique_id port 82129 remote_ip 10.8.0.6 82134 username aminvpn 82134 mac 82134 bytes_out 0 82134 bytes_in 0 82134 station_ip 5.119.30.76 82134 port 14 82134 unique_id port 82134 remote_ip 10.8.0.6 82135 username aminvpn 82135 mac 82135 bytes_out 0 82135 bytes_in 0 82135 station_ip 5.119.30.76 82135 port 14 82135 unique_id port 82135 remote_ip 10.8.0.6 82136 username aminvpn 82136 mac 82136 bytes_out 0 82136 bytes_in 0 82136 station_ip 5.119.30.76 82136 port 14 82136 unique_id port 82136 remote_ip 10.8.0.6 82141 username alinezhad 82141 unique_id port 82141 terminate_cause User-Request 82141 bytes_out 292699 82141 bytes_in 1168272 82141 station_ip 83.122.15.77 82141 port 15728657 82141 nas_port_type Virtual 82141 remote_ip 5.5.5.246 82143 username aminvpn 82143 mac 82143 bytes_out 0 82143 bytes_in 0 82143 station_ip 5.119.30.76 82143 port 29 82143 unique_id port 82143 remote_ip 10.8.1.10 82149 username aminvpn 82149 mac 82149 bytes_out 0 82149 bytes_in 0 82149 station_ip 5.119.30.76 82149 port 14 82149 unique_id port 82149 remote_ip 10.8.0.6 82150 username aminvpn 82150 mac 82150 bytes_out 0 82150 bytes_in 0 82150 station_ip 5.119.30.76 82150 port 14 82150 unique_id port 82150 remote_ip 10.8.0.6 82154 username aminvpn 82154 mac 82154 bytes_out 0 82154 bytes_in 0 82154 station_ip 5.119.30.76 82154 port 14 82154 unique_id port 82154 remote_ip 10.8.0.6 82157 username aminvpn 82157 mac 82157 bytes_out 1628 82157 bytes_in 5142 82157 station_ip 5.119.30.76 82157 port 14 82157 unique_id port 82157 remote_ip 10.8.0.6 82158 username aminvpn 82158 mac 82158 bytes_out 0 82158 bytes_in 0 82158 station_ip 5.119.30.76 82158 port 14 82158 unique_id port 82158 remote_ip 10.8.0.6 82160 username aminvpn 82160 mac 82160 bytes_out 1628 82160 bytes_in 5142 82160 station_ip 5.119.30.76 82160 port 14 82160 unique_id port 82160 remote_ip 10.8.0.6 82164 username soleymani 82164 unique_id port 82164 terminate_cause Lost-Carrier 82164 bytes_out 2320311 82164 bytes_in 27676759 82164 station_ip 5.126.129.187 82164 port 15728661 82164 nas_port_type Virtual 82164 remote_ip 5.5.5.244 82165 username aminvpn 82165 mac 82165 bytes_out 0 82165 bytes_in 0 82165 station_ip 5.119.30.76 82165 port 14 82165 unique_id port 82165 remote_ip 10.8.0.6 82167 username aminvpn 82167 unique_id port 82167 terminate_cause User-Request 82167 bytes_out 0 82167 bytes_in 0 82167 station_ip 113.203.55.79 82167 port 15728668 82167 nas_port_type Virtual 82167 remote_ip 5.5.5.237 82169 username aminvpn 82169 unique_id port 82169 terminate_cause User-Request 82169 bytes_out 153690 82169 bytes_in 584606 82169 station_ip 113.203.55.79 82169 port 15728669 82169 nas_port_type Virtual 82169 remote_ip 5.5.5.237 82170 username aminvpn 82170 mac 82170 bytes_out 0 82170 bytes_in 0 82170 station_ip 5.119.30.76 82170 port 14 82170 unique_id port 82170 remote_ip 10.8.0.6 82177 username aminvpn 82177 mac 82177 bytes_out 0 82177 bytes_in 0 82177 station_ip 5.119.30.76 82177 port 14 82177 unique_id port 82177 remote_ip 10.8.0.6 82178 username forozande 82178 unique_id port 82178 terminate_cause User-Request 82178 bytes_out 35690 82178 bytes_in 110984 82178 station_ip 37.129.178.170 82178 port 15728671 82178 nas_port_type Virtual 82178 remote_ip 5.5.5.248 82183 username aminvpn 82183 mac 82183 bytes_out 0 82161 remote_ip 5.5.5.243 82162 username caferibar 82162 unique_id port 82162 terminate_cause User-Request 82162 bytes_out 11085115 82162 bytes_in 243378702 82162 station_ip 5.119.251.65 82162 port 15728652 82162 nas_port_type Virtual 82162 remote_ip 5.5.5.252 82168 username aminvpn 82168 mac 82168 bytes_out 0 82168 bytes_in 0 82168 station_ip 5.119.30.76 82168 port 14 82168 unique_id port 82168 remote_ip 10.8.0.6 82171 username aminvpn 82171 mac 82171 bytes_out 0 82171 bytes_in 0 82171 station_ip 5.119.30.76 82171 port 14 82171 unique_id port 82171 remote_ip 10.8.0.6 82172 username aminvpn 82172 mac 82172 bytes_out 0 82172 bytes_in 0 82172 station_ip 5.119.30.76 82172 port 14 82172 unique_id port 82172 remote_ip 10.8.0.6 82179 username aminvpn 82179 mac 82179 bytes_out 0 82179 bytes_in 0 82179 station_ip 5.119.30.76 82179 port 14 82179 unique_id port 82179 remote_ip 10.8.0.6 82184 username forozande 82184 unique_id port 82184 terminate_cause User-Request 82184 bytes_out 4225 82184 bytes_in 15278 82184 station_ip 37.129.178.170 82184 port 15728672 82184 nas_port_type Virtual 82184 remote_ip 5.5.5.248 82185 username aminvpn 82185 mac 82185 bytes_out 0 82185 bytes_in 0 82185 station_ip 5.119.30.76 82185 port 14 82185 unique_id port 82185 remote_ip 10.8.0.6 82188 username asadi 82188 unique_id port 82188 terminate_cause User-Request 82188 bytes_out 33588 82188 bytes_in 90898 82188 station_ip 37.129.187.84 82188 port 15728673 82188 nas_port_type Virtual 82188 remote_ip 5.5.5.251 82194 username aminvpn 82194 mac 82194 bytes_out 0 82194 bytes_in 0 82194 station_ip 5.119.30.76 82194 port 14 82194 unique_id port 82194 remote_ip 10.8.0.6 82195 username aminvpn 82195 mac 82195 bytes_out 0 82195 bytes_in 0 82195 station_ip 5.119.30.76 82195 port 14 82195 unique_id port 82195 remote_ip 10.8.0.6 82201 username hamideh 82201 unique_id port 82201 terminate_cause Lost-Carrier 82201 bytes_out 1860411 82201 bytes_in 52942051 82201 station_ip 5.120.54.32 82201 port 15728674 82201 nas_port_type Virtual 82201 remote_ip 5.5.5.242 82202 username madadi 82202 unique_id port 82202 terminate_cause Lost-Carrier 82202 bytes_out 63603 82202 bytes_in 190524 82202 station_ip 5.119.251.149 82202 port 15728675 82202 nas_port_type Virtual 82202 remote_ip 5.5.5.236 82205 username asadi 82205 unique_id port 82205 terminate_cause User-Request 82205 bytes_out 32197 82205 bytes_in 58954 82205 station_ip 37.129.187.84 82205 port 15728680 82205 nas_port_type Virtual 82205 remote_ip 5.5.5.251 82208 username aminvpn 82208 mac 82208 bytes_out 0 82208 bytes_in 0 82208 station_ip 5.119.30.76 82208 port 14 82208 unique_id port 82208 remote_ip 10.8.0.6 82214 username aminvpn 82214 mac 82214 bytes_out 0 82214 bytes_in 0 82214 station_ip 5.119.30.76 82214 port 14 82214 unique_id port 82214 remote_ip 10.8.0.6 82218 username aminvpn 82218 mac 82218 bytes_out 0 82218 bytes_in 0 82218 station_ip 5.119.30.76 82218 port 14 82218 unique_id port 82218 remote_ip 10.8.0.6 82223 username aminvpn 82223 mac 82223 bytes_out 0 82223 bytes_in 0 82223 station_ip 5.119.30.76 82223 port 14 82223 unique_id port 82223 remote_ip 10.8.0.6 82224 username aminvpn 82224 mac 82224 bytes_out 0 82224 bytes_in 0 82224 station_ip 5.119.30.76 82224 port 14 82224 unique_id port 82224 remote_ip 10.8.0.6 82226 username aminvpn 82226 mac 82226 bytes_out 0 82176 bytes_out 0 82176 bytes_in 0 82176 station_ip 37.129.178.170 82176 port 15728670 82176 nas_port_type Virtual 82176 remote_ip 5.5.5.248 82180 username aminvpn 82180 mac 82180 bytes_out 0 82180 bytes_in 0 82180 station_ip 5.119.30.76 82180 port 14 82180 unique_id port 82180 remote_ip 10.8.0.6 82181 username aminvpn 82181 mac 82181 bytes_out 0 82181 bytes_in 0 82181 station_ip 5.119.30.76 82181 port 14 82181 unique_id port 82181 remote_ip 10.8.0.6 82182 username aminvpn 82182 mac 82182 bytes_out 0 82182 bytes_in 0 82182 station_ip 5.119.30.76 82182 port 14 82182 unique_id port 82182 remote_ip 10.8.0.6 82186 username aminvpn 82186 mac 82186 bytes_out 1628 82186 bytes_in 5142 82186 station_ip 5.119.30.76 82186 port 14 82186 unique_id port 82186 remote_ip 10.8.0.6 82187 username ahmadipour 82187 unique_id port 82187 terminate_cause Lost-Carrier 82187 bytes_out 585655 82187 bytes_in 7265049 82187 station_ip 37.129.80.89 82187 port 15728666 82187 nas_port_type Virtual 82187 remote_ip 5.5.5.239 82189 username aminvpn 82189 mac 82189 bytes_out 0 82189 bytes_in 0 82189 station_ip 5.119.30.76 82189 port 14 82189 unique_id port 82189 remote_ip 10.8.0.6 82192 username aminvpn 82192 mac 82192 bytes_out 0 82192 bytes_in 0 82192 station_ip 5.119.30.76 82192 port 14 82192 unique_id port 82192 remote_ip 10.8.0.6 82198 username heydari 82198 unique_id port 82198 terminate_cause User-Request 82198 bytes_out 0 82198 bytes_in 0 82198 station_ip 5.120.109.176 82198 port 15728677 82198 nas_port_type Virtual 82198 remote_ip 5.5.5.234 82199 username aminvpn 82199 mac 82199 bytes_out 0 82199 bytes_in 0 82199 station_ip 5.119.30.76 82199 port 14 82199 unique_id port 82199 remote_ip 10.8.0.6 82206 username aminvpn 82206 mac 82206 bytes_out 1628 82206 bytes_in 5142 82206 station_ip 5.119.30.76 82206 port 14 82206 unique_id port 82206 remote_ip 10.8.0.6 82212 username aminvpn 82212 mac 82212 bytes_out 0 82212 bytes_in 0 82212 station_ip 5.119.30.76 82212 port 14 82212 unique_id port 82212 remote_ip 10.8.0.6 82220 username madadi 82220 unique_id port 82220 terminate_cause Lost-Carrier 82220 bytes_out 11698 82220 bytes_in 122737 82220 station_ip 5.120.12.143 82220 port 15728682 82220 nas_port_type Virtual 82220 remote_ip 5.5.5.232 82227 username aminvpn 82227 mac 82227 bytes_out 0 82227 bytes_in 0 82227 station_ip 5.119.30.76 82227 port 14 82227 unique_id port 82227 remote_ip 10.8.0.6 82231 username aminvpn 82231 mac 82231 bytes_out 0 82231 bytes_in 0 82231 station_ip 5.119.30.76 82231 port 14 82231 unique_id port 82231 remote_ip 10.8.0.6 82232 username aminvpn 82232 mac 82232 bytes_out 0 82232 bytes_in 0 82232 station_ip 5.119.30.76 82232 port 14 82232 unique_id port 82232 remote_ip 10.8.0.6 82238 username aminvpn 82238 mac 82238 bytes_out 0 82238 bytes_in 0 82238 station_ip 5.119.30.76 82238 port 14 82238 unique_id port 82238 remote_ip 10.8.0.6 82240 username aminvpn 82240 mac 82240 bytes_out 0 82240 bytes_in 0 82240 station_ip 5.119.30.76 82240 port 14 82240 unique_id port 82240 remote_ip 10.8.0.6 82241 username aminvpn 82241 mac 82241 bytes_out 0 82241 bytes_in 0 82241 station_ip 5.119.30.76 82241 port 14 82241 unique_id port 82241 remote_ip 10.8.0.6 82246 username aminvpn 82246 mac 82246 bytes_out 0 82183 bytes_in 0 82183 station_ip 5.119.30.76 82183 port 14 82183 unique_id port 82183 remote_ip 10.8.0.6 82190 username aminvpn 82190 mac 82190 bytes_out 0 82190 bytes_in 0 82190 station_ip 5.119.30.76 82190 port 14 82190 unique_id port 82190 remote_ip 10.8.0.6 82193 username aminvpn 82193 mac 82193 bytes_out 0 82193 bytes_in 0 82193 station_ip 5.119.30.76 82193 port 14 82193 unique_id port 82193 remote_ip 10.8.0.6 82204 username aminvpn 82204 mac 82204 bytes_out 0 82204 bytes_in 0 82204 station_ip 5.119.30.76 82204 port 14 82204 unique_id port 82204 remote_ip 10.8.0.6 82207 username aminvpn 82207 mac 82207 bytes_out 0 82207 bytes_in 0 82207 station_ip 5.119.30.76 82207 port 14 82207 unique_id port 82207 remote_ip 10.8.0.6 82210 username madadi 82210 unique_id port 82210 terminate_cause Lost-Carrier 82210 bytes_out 5269 82210 bytes_in 118938 82210 station_ip 5.119.230.112 82210 port 15728679 82210 nas_port_type Virtual 82210 remote_ip 5.5.5.233 82213 username aminvpn 82213 mac 82213 bytes_out 0 82213 bytes_in 0 82213 station_ip 5.119.30.76 82213 port 14 82213 unique_id port 82213 remote_ip 10.8.0.6 82215 username aminvpn 82215 mac 82215 bytes_out 0 82215 bytes_in 0 82215 station_ip 5.119.30.76 82215 port 14 82215 unique_id port 82215 remote_ip 10.8.0.6 82216 username aminvpn 82216 mac 82216 bytes_out 0 82216 bytes_in 0 82216 station_ip 5.119.30.76 82216 port 14 82216 unique_id port 82216 remote_ip 10.8.0.6 82217 username aminvpn 82217 mac 82217 bytes_out 0 82217 bytes_in 0 82217 station_ip 5.119.30.76 82217 port 14 82217 unique_id port 82217 remote_ip 10.8.0.6 82221 username aminvpn 82221 mac 82221 bytes_out 0 82221 bytes_in 0 82221 station_ip 5.119.30.76 82221 port 14 82221 unique_id port 82221 remote_ip 10.8.0.6 82222 username aminvpn 82222 mac 82222 bytes_out 0 82222 bytes_in 0 82222 station_ip 5.119.30.76 82222 port 14 82222 unique_id port 82222 remote_ip 10.8.0.6 82228 username aminvpn 82228 mac 82228 bytes_out 0 82228 bytes_in 0 82228 station_ip 5.119.30.76 82228 port 14 82228 unique_id port 82228 remote_ip 10.8.0.6 82229 username aminvpn 82229 mac 82229 bytes_out 0 82229 bytes_in 0 82229 station_ip 5.119.30.76 82229 port 14 82229 unique_id port 82229 remote_ip 10.8.0.6 82233 username aminvpn 82233 mac 82233 bytes_out 0 82233 bytes_in 0 82233 station_ip 5.119.30.76 82233 port 14 82233 unique_id port 82233 remote_ip 10.8.0.6 82234 username aminvpn 82234 mac 82234 bytes_out 0 82234 bytes_in 0 82234 station_ip 5.119.30.76 82234 port 14 82234 unique_id port 82234 remote_ip 10.8.0.6 82235 username aminvpn 82235 mac 82235 bytes_out 0 82235 bytes_in 0 82235 station_ip 5.119.30.76 82235 port 14 82235 unique_id port 82235 remote_ip 10.8.0.6 82236 username madadi 82236 unique_id port 82236 terminate_cause Lost-Carrier 82236 bytes_out 9424 82236 bytes_in 120383 82236 station_ip 5.120.165.190 82236 port 15728683 82236 nas_port_type Virtual 82236 remote_ip 5.5.5.231 82249 username asadi 82249 unique_id port 82249 terminate_cause User-Request 82249 bytes_out 163252 82249 bytes_in 3017464 82249 station_ip 37.129.43.78 82249 port 15728688 82249 nas_port_type Virtual 82249 remote_ip 5.5.5.227 82258 username aminvpn 82258 mac 82258 bytes_out 0 82258 bytes_in 0 82258 station_ip 5.119.30.76 82225 username aminvpn 82225 mac 82225 bytes_out 0 82225 bytes_in 0 82225 station_ip 5.119.30.76 82225 port 14 82225 unique_id port 82225 remote_ip 10.8.0.6 82230 username mobina 82230 kill_reason Relative expiration date has reached 82230 unique_id port 82230 bytes_out 0 82230 bytes_in 0 82230 station_ip 5.121.49.252 82230 port 15728685 82230 nas_port_type Virtual 82237 username aminvpn 82237 mac 82237 bytes_out 0 82237 bytes_in 0 82237 station_ip 5.119.30.76 82237 port 14 82237 unique_id port 82237 remote_ip 10.8.0.6 82239 username aminvpn 82239 mac 82239 bytes_out 0 82239 bytes_in 0 82239 station_ip 5.119.30.76 82239 port 14 82239 unique_id port 82239 remote_ip 10.8.0.6 82244 username aminvpn 82244 mac 82244 bytes_out 0 82244 bytes_in 0 82244 station_ip 5.119.30.76 82244 port 14 82244 unique_id port 82244 remote_ip 10.8.0.6 82245 username aminvpn 82245 mac 82245 bytes_out 0 82245 bytes_in 0 82245 station_ip 5.119.30.76 82245 port 14 82245 unique_id port 82245 remote_ip 10.8.0.6 82248 username soleymani 82248 unique_id port 82248 terminate_cause Lost-Carrier 82248 bytes_out 115026 82248 bytes_in 303075 82248 station_ip 5.125.25.84 82248 port 15728686 82248 nas_port_type Virtual 82248 remote_ip 5.5.5.229 82253 username amirhosein 82253 unique_id port 82253 terminate_cause Lost-Carrier 82253 bytes_out 39139 82253 bytes_in 209011 82253 station_ip 5.120.3.16 82253 port 15728689 82253 nas_port_type Virtual 82253 remote_ip 5.5.5.226 82255 username aminvpn 82255 mac 82255 bytes_out 0 82255 bytes_in 0 82255 station_ip 5.119.30.76 82255 port 14 82255 unique_id port 82255 remote_ip 10.8.0.6 82256 username aminvpn 82256 mac 82256 bytes_out 0 82256 bytes_in 0 82256 station_ip 5.119.30.76 82256 port 14 82256 unique_id port 82256 remote_ip 10.8.0.6 82259 username aminvpn 82259 mac 82259 bytes_out 0 82259 bytes_in 0 82259 station_ip 5.119.30.76 82259 port 14 82259 unique_id port 82259 remote_ip 10.8.0.6 82260 username aminvpn 82260 mac 82260 bytes_out 0 82260 bytes_in 0 82260 station_ip 5.119.30.76 82260 port 14 82260 unique_id port 82260 remote_ip 10.8.0.6 82267 username aminvpn 82267 mac 82267 bytes_out 0 82267 bytes_in 0 82267 station_ip 5.119.30.76 82267 port 14 82267 unique_id port 82267 remote_ip 10.8.0.6 82268 username aminvpn 82268 mac 82268 bytes_out 0 82268 bytes_in 0 82268 station_ip 5.119.30.76 82268 port 14 82268 unique_id port 82268 remote_ip 10.8.0.6 82272 username aminvpn 82272 mac 82272 bytes_out 0 82272 bytes_in 0 82272 station_ip 5.119.30.76 82272 port 14 82272 unique_id port 82272 remote_ip 10.8.0.6 82275 username aminvpn 82275 mac 82275 bytes_out 0 82275 bytes_in 0 82275 station_ip 5.119.30.76 82275 port 30 82275 unique_id port 82275 remote_ip 10.8.1.10 82276 username aminvpn 82276 mac 82276 bytes_out 0 82276 bytes_in 0 82276 station_ip 5.119.30.76 82276 port 30 82276 unique_id port 82276 remote_ip 10.8.1.10 82278 username asadi 82278 unique_id port 82278 terminate_cause User-Request 82278 bytes_out 56246 82278 bytes_in 418776 82278 station_ip 37.129.43.78 82278 port 15728704 82278 nas_port_type Virtual 82278 remote_ip 5.5.5.227 82280 username amirabbas 82280 unique_id port 82280 terminate_cause Lost-Carrier 82280 bytes_out 501715 82280 bytes_in 6228214 82280 station_ip 31.56.222.64 82280 port 15728701 82280 nas_port_type Virtual 82226 bytes_in 0 82226 station_ip 5.119.30.76 82226 port 14 82226 unique_id port 82226 remote_ip 10.8.0.6 82242 username aminvpn 82242 mac 82242 bytes_out 0 82242 bytes_in 0 82242 station_ip 5.119.30.76 82242 port 14 82242 unique_id port 82242 remote_ip 10.8.0.6 82243 username aminvpn 82243 mac 82243 bytes_out 0 82243 bytes_in 0 82243 station_ip 5.119.30.76 82243 port 14 82243 unique_id port 82243 remote_ip 10.8.0.6 82247 username abdilahyar 82247 unique_id port 82247 terminate_cause User-Request 82247 bytes_out 14874 82247 bytes_in 56104 82247 station_ip 5.120.119.249 82247 port 15728687 82247 nas_port_type Virtual 82247 remote_ip 5.5.5.228 82251 username aminvpn 82251 kill_reason Maximum check online fails reached 82251 mac 82251 bytes_out 0 82251 bytes_in 0 82251 station_ip 5.119.30.76 82251 port 29 82251 unique_id port 82254 username aminvpn 82254 mac 82254 bytes_out 0 82254 bytes_in 0 82254 station_ip 5.119.30.76 82254 port 14 82254 unique_id port 82254 remote_ip 10.8.0.6 82262 username asadi 82262 unique_id port 82262 terminate_cause User-Request 82262 bytes_out 23570 82262 bytes_in 82955 82262 station_ip 37.129.43.78 82262 port 15728692 82262 nas_port_type Virtual 82262 remote_ip 5.5.5.227 82266 username aminvpn 82266 mac 82266 bytes_out 0 82266 bytes_in 0 82266 station_ip 5.119.30.76 82266 port 14 82266 unique_id port 82266 remote_ip 10.8.0.6 82271 username aminvpn 82271 mac 82271 bytes_out 0 82271 bytes_in 0 82271 station_ip 5.119.30.76 82271 port 14 82271 unique_id port 82271 remote_ip 10.8.0.6 82273 username aminvpn 82273 mac 82273 bytes_out 1628 82273 bytes_in 5089 82273 station_ip 5.119.30.76 82273 port 14 82273 unique_id port 82273 remote_ip 10.8.0.6 82282 username asadi 82282 unique_id port 82282 terminate_cause User-Request 82282 bytes_out 30382 82282 bytes_in 100758 82282 station_ip 37.129.43.78 82282 port 15728709 82282 nas_port_type Virtual 82282 remote_ip 5.5.5.227 82283 username aminvpn 82283 mac 82283 bytes_out 0 82283 bytes_in 0 82283 station_ip 5.119.30.76 82283 port 14 82283 unique_id port 82283 remote_ip 10.8.0.6 82284 username aminvpn 82284 mac 82284 bytes_out 0 82284 bytes_in 0 82284 station_ip 5.119.30.76 82284 port 14 82284 unique_id port 82284 remote_ip 10.8.0.6 82290 username zamanialireza 82290 unique_id port 82290 terminate_cause Lost-Carrier 82290 bytes_out 1112089 82290 bytes_in 28605296 82290 station_ip 5.160.115.139 82290 port 15728702 82290 nas_port_type Virtual 82290 remote_ip 5.5.5.222 82298 username asadi 82298 unique_id port 82298 terminate_cause User-Request 82298 bytes_out 30612 82298 bytes_in 69546 82298 station_ip 113.203.44.131 82298 port 15728716 82298 nas_port_type Virtual 82298 remote_ip 5.5.5.218 82301 username aminvpn 82301 mac 82301 bytes_out 0 82301 bytes_in 0 82301 station_ip 5.119.30.76 82301 port 14 82301 unique_id port 82301 remote_ip 10.8.0.6 82310 username aminvpn 82310 mac 82310 bytes_out 0 82310 bytes_in 0 82310 station_ip 5.119.30.76 82310 port 14 82310 unique_id port 82310 remote_ip 10.8.0.6 82312 username asadi 82312 unique_id port 82312 terminate_cause User-Request 82312 bytes_out 15471 82312 bytes_in 102960 82312 station_ip 113.203.44.131 82312 port 15728724 82312 nas_port_type Virtual 82312 remote_ip 5.5.5.218 82313 username mamal 82313 unique_id port 82313 terminate_cause Lost-Carrier 82313 bytes_out 4108082 82313 bytes_in 98458752 82246 bytes_in 0 82246 station_ip 5.119.30.76 82246 port 14 82246 unique_id port 82246 remote_ip 10.8.0.6 82250 username aminvpn 82250 mac 82250 bytes_out 0 82250 bytes_in 0 82250 station_ip 5.119.30.76 82250 port 29 82250 unique_id port 82250 remote_ip 10.8.1.10 82252 username aminvpn 82252 mac 82252 bytes_out 0 82252 bytes_in 0 82252 station_ip 5.119.30.76 82252 port 30 82252 unique_id port 82252 remote_ip 10.8.1.10 82257 username asadi 82257 unique_id port 82257 terminate_cause User-Request 82257 bytes_out 181020 82257 bytes_in 1100780 82257 station_ip 37.129.43.78 82257 port 15728690 82257 nas_port_type Virtual 82257 remote_ip 5.5.5.227 82269 username asadi 82269 unique_id port 82269 terminate_cause User-Request 82269 bytes_out 39231 82269 bytes_in 225538 82269 station_ip 37.129.43.78 82269 port 15728695 82269 nas_port_type Virtual 82269 remote_ip 5.5.5.227 82274 username madadi 82274 unique_id port 82274 terminate_cause Lost-Carrier 82274 bytes_out 35645 82274 bytes_in 231320 82274 station_ip 5.119.192.214 82274 port 15728694 82274 nas_port_type Virtual 82274 remote_ip 5.5.5.225 82277 username forozande 82277 unique_id port 82277 terminate_cause User-Request 82277 bytes_out 33858 82277 bytes_in 413963 82277 station_ip 83.123.101.17 82277 port 15728703 82277 nas_port_type Virtual 82277 remote_ip 5.5.5.221 82279 username asadi 82279 unique_id port 82279 terminate_cause User-Request 82279 bytes_out 35723 82279 bytes_in 76074 82279 station_ip 37.129.43.78 82279 port 15728707 82279 nas_port_type Virtual 82279 remote_ip 5.5.5.227 82281 username asadi 82281 unique_id port 82281 terminate_cause User-Request 82281 bytes_out 39854 82281 bytes_in 86748 82281 station_ip 37.129.43.78 82281 port 15728708 82281 nas_port_type Virtual 82281 remote_ip 5.5.5.227 82286 username aminvpn 82286 mac 82286 bytes_out 0 82286 bytes_in 0 82286 station_ip 5.119.30.76 82286 port 14 82286 unique_id port 82286 remote_ip 10.8.0.6 82287 username aminvpn 82287 mac 82287 bytes_out 0 82287 bytes_in 0 82287 station_ip 5.119.30.76 82287 port 14 82287 unique_id port 82287 remote_ip 10.8.0.6 82288 username asadi 82288 unique_id port 82288 terminate_cause User-Request 82288 bytes_out 37446 82288 bytes_in 79670 82288 station_ip 37.129.43.78 82288 port 15728712 82288 nas_port_type Virtual 82288 remote_ip 5.5.5.227 82292 username aminvpn 82292 kill_reason Maximum check online fails reached 82292 mac 82292 bytes_out 0 82292 bytes_in 0 82292 station_ip 5.119.30.76 82292 port 30 82292 unique_id port 82294 username aminvpn 82294 mac 82294 bytes_out 0 82294 bytes_in 0 82294 station_ip 5.119.30.76 82294 port 14 82294 unique_id port 82294 remote_ip 10.8.0.6 82295 username aminvpn 82295 mac 82295 bytes_out 0 82295 bytes_in 0 82295 station_ip 5.119.30.76 82295 port 14 82295 unique_id port 82295 remote_ip 10.8.0.6 82306 username aminvpn 82306 mac 82306 bytes_out 0 82306 bytes_in 0 82306 station_ip 5.119.30.76 82306 port 14 82306 unique_id port 82306 remote_ip 10.8.0.6 82307 username alinezhad 82307 unique_id port 82307 terminate_cause User-Request 82307 bytes_out 619186 82307 bytes_in 5893091 82307 station_ip 5.202.30.47 82307 port 15728684 82307 nas_port_type Virtual 82307 remote_ip 5.5.5.230 82308 username aminvpn 82308 mac 82308 bytes_out 0 82308 bytes_in 0 82308 station_ip 5.119.30.76 82308 port 14 82308 unique_id port 82308 remote_ip 10.8.0.6 82314 username asadi 82314 unique_id port 82258 port 14 82258 unique_id port 82258 remote_ip 10.8.0.6 82261 username asadi 82261 unique_id port 82261 terminate_cause User-Request 82261 bytes_out 38059 82261 bytes_in 116121 82261 station_ip 37.129.43.78 82261 port 15728691 82261 nas_port_type Virtual 82261 remote_ip 5.5.5.227 82263 username alirezazamani 82263 kill_reason Relative expiration date has reached 82263 unique_id port 82263 bytes_out 0 82263 bytes_in 0 82263 station_ip 93.114.27.62 82263 port 15728693 82263 nas_port_type Virtual 82264 username aminvpn 82264 mac 82264 bytes_out 0 82264 bytes_in 0 82264 station_ip 5.119.30.76 82264 port 14 82264 unique_id port 82264 remote_ip 10.8.0.6 82265 username aminvpn 82265 mac 82265 bytes_out 0 82265 bytes_in 0 82265 station_ip 5.119.30.76 82265 port 14 82265 unique_id port 82265 remote_ip 10.8.0.6 82270 username forozande 82270 unique_id port 82270 terminate_cause User-Request 82270 bytes_out 45693 82270 bytes_in 280932 82270 station_ip 113.203.49.103 82270 port 15728698 82270 nas_port_type Virtual 82270 remote_ip 5.5.5.224 82285 username asadi 82285 unique_id port 82285 terminate_cause User-Request 82285 bytes_out 38517 82285 bytes_in 95064 82285 station_ip 37.129.43.78 82285 port 15728710 82285 nas_port_type Virtual 82285 remote_ip 5.5.5.227 82289 username aminvpn 82289 mac 82289 bytes_out 0 82289 bytes_in 0 82289 station_ip 5.119.30.76 82289 port 14 82289 unique_id port 82289 remote_ip 10.8.0.6 82296 username asadi 82296 unique_id port 82296 terminate_cause User-Request 82296 bytes_out 39420 82296 bytes_in 152378 82296 station_ip 113.203.44.131 82296 port 15728715 82296 nas_port_type Virtual 82296 remote_ip 5.5.5.218 82297 username aminvpn 82297 mac 82297 bytes_out 0 82297 bytes_in 0 82297 station_ip 5.119.30.76 82297 port 14 82297 unique_id port 82297 remote_ip 10.8.0.6 82302 username asadi 82302 unique_id port 82302 terminate_cause User-Request 82302 bytes_out 15972 82302 bytes_in 56262 82302 station_ip 113.203.44.131 82302 port 15728717 82302 nas_port_type Virtual 82302 remote_ip 5.5.5.218 82304 username asadi 82304 unique_id port 82304 terminate_cause User-Request 82304 bytes_out 103836 82304 bytes_in 1373393 82304 station_ip 113.203.44.131 82304 port 15728719 82304 nas_port_type Virtual 82304 remote_ip 5.5.5.218 82309 username asadi 82309 unique_id port 82309 terminate_cause User-Request 82309 bytes_out 37636 82309 bytes_in 209760 82309 station_ip 113.203.44.131 82309 port 15728721 82309 nas_port_type Virtual 82309 remote_ip 5.5.5.218 82315 username asadi 82315 unique_id port 82315 terminate_cause User-Request 82315 bytes_out 15898 82315 bytes_in 105066 82315 station_ip 113.203.44.131 82315 port 15728726 82315 nas_port_type Virtual 82315 remote_ip 5.5.5.218 82318 username aminvpn 82318 mac 82318 bytes_out 0 82318 bytes_in 0 82318 station_ip 5.119.30.76 82318 port 14 82318 unique_id port 82318 remote_ip 10.8.0.6 82326 username asadi 82326 unique_id port 82326 terminate_cause User-Request 82326 bytes_out 19558 82326 bytes_in 65982 82326 station_ip 83.122.32.3 82326 port 15728734 82326 nas_port_type Virtual 82326 remote_ip 5.5.5.216 82328 username aminvpn 82328 mac 82328 bytes_out 0 82328 bytes_in 0 82328 station_ip 5.119.30.76 82328 port 14 82328 unique_id port 82328 remote_ip 10.8.0.6 82342 username forozande 82342 unique_id port 82342 terminate_cause User-Request 82342 bytes_out 490431 82342 bytes_in 12673685 82342 station_ip 37.129.133.110 82342 port 15728742 82342 nas_port_type Virtual 82342 remote_ip 5.5.5.213 82280 remote_ip 5.5.5.223 82291 username asadi 82291 unique_id port 82291 terminate_cause User-Request 82291 bytes_out 52930 82291 bytes_in 490771 82291 station_ip 37.129.43.78 82291 port 15728713 82291 nas_port_type Virtual 82291 remote_ip 5.5.5.227 82293 username asadi 82293 unique_id port 82293 terminate_cause User-Request 82293 bytes_out 20517 82293 bytes_in 97040 82293 station_ip 37.129.43.78 82293 port 15728714 82293 nas_port_type Virtual 82293 remote_ip 5.5.5.227 82299 username aminvpn 82299 mac 82299 bytes_out 0 82299 bytes_in 0 82299 station_ip 5.119.30.76 82299 port 14 82299 unique_id port 82299 remote_ip 10.8.0.6 82300 username aminvpn 82300 mac 82300 bytes_out 0 82300 bytes_in 0 82300 station_ip 5.119.30.76 82300 port 14 82300 unique_id port 82300 remote_ip 10.8.0.6 82303 username asadi 82303 unique_id port 82303 terminate_cause User-Request 82303 bytes_out 28289 82303 bytes_in 174079 82303 station_ip 113.203.44.131 82303 port 15728718 82303 nas_port_type Virtual 82303 remote_ip 5.5.5.218 82305 username asadi 82305 unique_id port 82305 terminate_cause User-Request 82305 bytes_out 19707 82305 bytes_in 66848 82305 station_ip 113.203.44.131 82305 port 15728720 82305 nas_port_type Virtual 82305 remote_ip 5.5.5.218 82311 username asadi 82311 unique_id port 82311 terminate_cause User-Request 82311 bytes_out 38585 82311 bytes_in 285821 82311 station_ip 113.203.44.131 82311 port 15728723 82311 nas_port_type Virtual 82311 remote_ip 5.5.5.218 82320 username asadi 82320 unique_id port 82320 terminate_cause User-Request 82320 bytes_out 42734 82320 bytes_in 91785 82320 station_ip 83.122.32.3 82320 port 15728728 82320 nas_port_type Virtual 82320 remote_ip 5.5.5.216 82321 username heydari 82321 unique_id port 82321 terminate_cause Lost-Carrier 82321 bytes_out 655160 82321 bytes_in 3028637 82321 station_ip 5.120.109.176 82321 port 15728678 82321 nas_port_type Virtual 82321 remote_ip 5.5.5.234 82334 username asadi 82334 unique_id port 82334 terminate_cause User-Request 82334 bytes_out 17528 82334 bytes_in 60219 82334 station_ip 83.122.32.3 82334 port 15728737 82334 nas_port_type Virtual 82334 remote_ip 5.5.5.216 82339 username asadi 82339 unique_id port 82339 terminate_cause User-Request 82339 bytes_out 14876 82339 bytes_in 58413 82339 station_ip 83.122.32.3 82339 port 15728740 82339 nas_port_type Virtual 82339 remote_ip 5.5.5.216 82343 username aminvpn 82343 kill_reason Another user logged on this global unique id 82343 mac 82343 bytes_out 0 82343 bytes_in 0 82343 station_ip 5.119.30.76 82343 port 14 82343 unique_id port 82347 username asadi 82347 unique_id port 82347 terminate_cause User-Request 82347 bytes_out 65852 82347 bytes_in 1084799 82347 station_ip 83.122.32.3 82347 port 15728746 82347 nas_port_type Virtual 82347 remote_ip 5.5.5.216 82360 username aminvpn 82360 mac 82360 bytes_out 0 82360 bytes_in 0 82360 station_ip 5.119.30.76 82360 port 15 82360 unique_id port 82360 remote_ip 10.8.0.6 82361 username aminvpn 82361 mac 82361 bytes_out 0 82361 bytes_in 0 82361 station_ip 5.119.30.76 82361 port 14 82361 unique_id port 82361 remote_ip 10.8.0.6 82366 username aminvpn 82366 mac 82366 bytes_out 0 82366 bytes_in 0 82366 station_ip 5.119.30.76 82366 port 14 82366 unique_id port 82366 remote_ip 10.8.0.6 82379 username aminvpn 82379 mac 82379 bytes_out 0 82379 bytes_in 0 82379 station_ip 5.119.30.76 82379 port 14 82379 unique_id port 82379 remote_ip 10.8.0.6 82382 username aminvpn 82382 mac 82313 station_ip 83.122.93.228 82313 port 15728711 82313 nas_port_type Virtual 82313 remote_ip 5.5.5.219 82316 username aminvpn 82316 mac 82316 bytes_out 0 82316 bytes_in 0 82316 station_ip 5.119.30.76 82316 port 14 82316 unique_id port 82316 remote_ip 10.8.0.6 82319 username madadi 82319 unique_id port 82319 terminate_cause Lost-Carrier 82319 bytes_out 112116 82319 bytes_in 222148 82319 station_ip 5.120.54.187 82319 port 15728722 82319 nas_port_type Virtual 82319 remote_ip 5.5.5.217 82324 username amirabbas 82324 unique_id port 82324 terminate_cause User-Request 82324 bytes_out 5825407 82324 bytes_in 155181238 82324 station_ip 31.56.222.64 82324 port 15728706 82324 nas_port_type Virtual 82324 remote_ip 5.5.5.220 82325 username asadi 82325 unique_id port 82325 terminate_cause User-Request 82325 bytes_out 47296 82325 bytes_in 247546 82325 station_ip 83.122.32.3 82325 port 15728733 82325 nas_port_type Virtual 82325 remote_ip 5.5.5.216 82329 username asadi 82329 unique_id port 82329 terminate_cause User-Request 82329 bytes_out 18337 82329 bytes_in 62411 82329 station_ip 83.122.32.3 82329 port 15728735 82329 nas_port_type Virtual 82329 remote_ip 5.5.5.216 82330 username aminvpn 82330 mac 82330 bytes_out 0 82330 bytes_in 0 82330 station_ip 5.119.30.76 82330 port 14 82330 unique_id port 82330 remote_ip 10.8.0.6 82336 username madadi 82336 unique_id port 82336 terminate_cause Lost-Carrier 82336 bytes_out 7787 82336 bytes_in 130785 82336 station_ip 5.119.139.88 82336 port 15728732 82336 nas_port_type Virtual 82336 remote_ip 5.5.5.215 82338 username aminvpn 82338 unique_id port 82338 terminate_cause User-Request 82338 bytes_out 116795 82338 bytes_in 926078 82338 station_ip 5.233.55.250 82338 port 15728738 82338 nas_port_type Virtual 82338 remote_ip 5.5.5.214 82346 username mitra 82346 unique_id port 82346 terminate_cause User-Request 82346 bytes_out 704833 82346 bytes_in 42842151 82346 station_ip 46.225.214.119 82346 port 15728745 82346 nas_port_type Virtual 82346 remote_ip 5.5.5.211 82355 username aminvpn 82355 mac 82355 bytes_out 0 82355 bytes_in 0 82355 station_ip 5.119.30.76 82355 port 31 82355 unique_id port 82355 remote_ip 10.8.1.10 82357 username aminvpn 82357 mac 82357 bytes_out 0 82357 bytes_in 0 82357 station_ip 5.119.30.76 82357 port 14 82357 unique_id port 82357 remote_ip 10.8.0.6 82359 username aminvpn 82359 mac 82359 bytes_out 0 82359 bytes_in 0 82359 station_ip 5.119.30.76 82359 port 14 82359 unique_id port 82359 remote_ip 10.8.0.6 82372 username aminvpn 82372 mac 82372 bytes_out 0 82372 bytes_in 0 82372 station_ip 5.119.30.76 82372 port 15 82372 unique_id port 82372 remote_ip 10.8.0.6 82376 username aminvpn 82376 mac 82376 bytes_out 0 82376 bytes_in 0 82376 station_ip 5.119.30.76 82376 port 15 82376 unique_id port 82376 remote_ip 10.8.0.6 82381 username aminvpn 82381 mac 82381 bytes_out 0 82381 bytes_in 0 82381 station_ip 5.119.30.76 82381 port 14 82381 unique_id port 82381 remote_ip 10.8.0.6 82386 username madadi 82386 unique_id port 82386 terminate_cause Lost-Carrier 82386 bytes_out 171640 82386 bytes_in 616739 82386 station_ip 5.120.143.138 82386 port 15728747 82386 nas_port_type Virtual 82386 remote_ip 5.5.5.210 82388 username aminvpn 82388 mac 82388 bytes_out 0 82388 bytes_in 0 82388 station_ip 5.119.30.76 82388 port 15 82388 unique_id port 82388 remote_ip 10.8.0.6 82393 username heydari 82393 kill_reason Maximum check online fails reached 82314 terminate_cause User-Request 82314 bytes_out 37488 82314 bytes_in 481384 82314 station_ip 113.203.44.131 82314 port 15728725 82314 nas_port_type Virtual 82314 remote_ip 5.5.5.218 82317 username asadi 82317 unique_id port 82317 terminate_cause User-Request 82317 bytes_out 21241 82317 bytes_in 86550 82317 station_ip 83.122.32.3 82317 port 15728727 82317 nas_port_type Virtual 82317 remote_ip 5.5.5.216 82322 username aminvpn 82322 mac 82322 bytes_out 0 82322 bytes_in 0 82322 station_ip 5.119.30.76 82322 port 31 82322 unique_id port 82322 remote_ip 10.8.1.10 82323 username aminvpn 82323 mac 82323 bytes_out 0 82323 bytes_in 0 82323 station_ip 5.119.30.76 82323 port 31 82323 unique_id port 82323 remote_ip 10.8.1.10 82327 username aminvpn 82327 mac 82327 bytes_out 0 82327 bytes_in 0 82327 station_ip 5.119.30.76 82327 port 14 82327 unique_id port 82327 remote_ip 10.8.0.6 82331 username asadi 82331 unique_id port 82331 terminate_cause User-Request 82331 bytes_out 24394 82331 bytes_in 54537 82331 station_ip 83.122.32.3 82331 port 15728736 82331 nas_port_type Virtual 82331 remote_ip 5.5.5.216 82332 username aminvpn 82332 mac 82332 bytes_out 0 82332 bytes_in 0 82332 station_ip 5.119.30.76 82332 port 14 82332 unique_id port 82332 remote_ip 10.8.0.6 82333 username aminvpn 82333 mac 82333 bytes_out 0 82333 bytes_in 0 82333 station_ip 5.119.30.76 82333 port 14 82333 unique_id port 82333 remote_ip 10.8.0.6 82335 username aminvpn 82335 mac 82335 bytes_out 0 82335 bytes_in 0 82335 station_ip 5.119.30.76 82335 port 14 82335 unique_id port 82335 remote_ip 10.8.0.6 82337 username aminvpn 82337 mac 82337 bytes_out 0 82337 bytes_in 0 82337 station_ip 5.119.30.76 82337 port 14 82337 unique_id port 82337 remote_ip 10.8.0.6 82340 username aminvpn 82340 kill_reason Another user logged on this global unique id 82340 mac 82340 bytes_out 0 82340 bytes_in 0 82340 station_ip 5.119.30.76 82340 port 14 82340 unique_id port 82340 remote_ip 10.8.0.6 82341 username forozande 82341 unique_id port 82341 terminate_cause User-Request 82341 bytes_out 167533 82341 bytes_in 3646712 82341 station_ip 37.129.133.110 82341 port 15728741 82341 nas_port_type Virtual 82341 remote_ip 5.5.5.213 82344 username hamideh 82344 unique_id port 82344 terminate_cause Lost-Carrier 82344 bytes_out 12636 82344 bytes_in 154465 82344 station_ip 5.120.54.32 82344 port 15728739 82344 nas_port_type Virtual 82344 remote_ip 5.5.5.242 82345 username aminvpn 82345 mac 82345 bytes_out 0 82345 bytes_in 0 82345 station_ip 5.119.30.76 82345 port 14 82345 unique_id port 82348 username aminvpn 82348 mac 82348 bytes_out 0 82348 bytes_in 0 82348 station_ip 5.119.30.76 82348 port 14 82348 unique_id port 82348 remote_ip 10.8.0.6 82349 username aminvpn 82349 mac 82349 bytes_out 0 82349 bytes_in 0 82349 station_ip 5.119.30.76 82349 port 14 82349 unique_id port 82349 remote_ip 10.8.0.6 82352 username alirezazamani 82352 kill_reason Relative expiration date has reached 82352 unique_id port 82352 bytes_out 0 82352 bytes_in 0 82352 station_ip 5.120.94.132 82352 port 15728751 82352 nas_port_type Virtual 82354 username aminvpn 82354 mac 82354 bytes_out 0 82354 bytes_in 0 82354 station_ip 5.119.30.76 82354 port 31 82354 unique_id port 82354 remote_ip 10.8.1.10 82356 username aminvpn 82356 mac 82356 bytes_out 0 82356 bytes_in 0 82356 station_ip 5.119.30.76 82356 port 31 82350 username alinezhad 82350 unique_id port 82350 terminate_cause User-Request 82350 bytes_out 0 82350 bytes_in 0 82350 station_ip 5.202.30.47 82350 port 15728748 82350 nas_port_type Virtual 82350 remote_ip 5.5.5.230 82351 username asadi 82351 unique_id port 82351 terminate_cause User-Request 82351 bytes_out 38852 82351 bytes_in 67954 82351 station_ip 83.122.32.3 82351 port 15728749 82351 nas_port_type Virtual 82351 remote_ip 5.5.5.216 82353 username aminvpn 82353 mac 82353 bytes_out 0 82353 bytes_in 0 82353 station_ip 5.119.30.76 82353 port 31 82353 unique_id port 82353 remote_ip 10.8.1.10 82364 username aminvpn 82364 mac 82364 bytes_out 0 82364 bytes_in 0 82364 station_ip 5.119.30.76 82364 port 14 82364 unique_id port 82364 remote_ip 10.8.0.6 82365 username aminvpn 82365 mac 82365 bytes_out 0 82365 bytes_in 0 82365 station_ip 5.119.30.76 82365 port 14 82365 unique_id port 82365 remote_ip 10.8.0.6 82369 username aminvpn 82369 mac 82369 bytes_out 0 82369 bytes_in 0 82369 station_ip 5.119.30.76 82369 port 14 82369 unique_id port 82369 remote_ip 10.8.0.6 82370 username aminvpn 82370 mac 82370 bytes_out 0 82370 bytes_in 0 82370 station_ip 5.119.30.76 82370 port 14 82370 unique_id port 82370 remote_ip 10.8.0.6 82371 username aminvpn 82371 mac 82371 bytes_out 0 82371 bytes_in 0 82371 station_ip 5.119.30.76 82371 port 14 82371 unique_id port 82371 remote_ip 10.8.0.6 82374 username aminvpn 82374 mac 82374 bytes_out 0 82374 bytes_in 0 82374 station_ip 5.119.30.76 82374 port 15 82374 unique_id port 82374 remote_ip 10.8.0.6 82378 username aminvpn 82378 mac 82378 bytes_out 0 82378 bytes_in 0 82378 station_ip 5.119.30.76 82378 port 15 82378 unique_id port 82378 remote_ip 10.8.0.6 82380 username aminvpn 82380 mac 82380 bytes_out 0 82380 bytes_in 0 82380 station_ip 5.119.30.76 82380 port 15 82380 unique_id port 82380 remote_ip 10.8.0.6 82383 username forozande 82383 unique_id port 82383 terminate_cause User-Request 82383 bytes_out 44431 82383 bytes_in 216307 82383 station_ip 83.122.35.33 82383 port 15728754 82383 nas_port_type Virtual 82383 remote_ip 5.5.5.207 82385 username aminvpn 82385 mac 82385 bytes_out 0 82385 bytes_in 0 82385 station_ip 5.119.30.76 82385 port 15 82385 unique_id port 82385 remote_ip 10.8.0.6 82387 username aminvpn 82387 mac 82387 bytes_out 0 82387 bytes_in 0 82387 station_ip 5.119.30.76 82387 port 14 82387 unique_id port 82387 remote_ip 10.8.0.6 82390 username aminvpn 82390 mac 82390 bytes_out 0 82390 bytes_in 0 82390 station_ip 5.119.30.76 82390 port 15 82390 unique_id port 82390 remote_ip 10.8.0.6 82392 username alinezhad 82392 unique_id port 82392 terminate_cause User-Request 82392 bytes_out 17909 82392 bytes_in 30241 82392 station_ip 5.202.30.47 82392 port 15728758 82392 nas_port_type Virtual 82392 remote_ip 5.5.5.230 82403 username amin.insta01 82403 unique_id port 82403 terminate_cause Lost-Carrier 82403 bytes_out 1367324 82403 bytes_in 23572306 82403 station_ip 5.119.135.182 82403 port 15728757 82403 nas_port_type Virtual 82403 remote_ip 5.5.5.205 82409 username caferibar 82409 unique_id port 82409 terminate_cause Lost-Carrier 82409 bytes_out 2335235 82409 bytes_in 42950451 82409 station_ip 5.119.251.65 82409 port 15728756 82409 nas_port_type Virtual 82409 remote_ip 5.5.5.252 82412 username aminvpn 82412 mac 82412 bytes_out 0 82412 bytes_in 0 82356 unique_id port 82356 remote_ip 10.8.1.10 82358 username aminvpn 82358 mac 82358 bytes_out 0 82358 bytes_in 0 82358 station_ip 5.119.30.76 82358 port 15 82358 unique_id port 82358 remote_ip 10.8.0.6 82362 username aminvpn 82362 mac 82362 bytes_out 0 82362 bytes_in 0 82362 station_ip 5.119.30.76 82362 port 14 82362 unique_id port 82362 remote_ip 10.8.0.6 82363 username aminvpn 82363 mac 82363 bytes_out 0 82363 bytes_in 0 82363 station_ip 5.119.30.76 82363 port 15 82363 unique_id port 82363 remote_ip 10.8.0.6 82367 username aminvpn 82367 mac 82367 bytes_out 0 82367 bytes_in 0 82367 station_ip 5.119.30.76 82367 port 15 82367 unique_id port 82367 remote_ip 10.8.0.6 82368 username ahmadipour 82368 unique_id port 82368 terminate_cause Lost-Carrier 82368 bytes_out 233084 82368 bytes_in 3090693 82368 station_ip 83.123.207.166 82368 port 15728743 82368 nas_port_type Virtual 82368 remote_ip 5.5.5.212 82373 username aminvpn 82373 mac 82373 bytes_out 0 82373 bytes_in 0 82373 station_ip 5.119.30.76 82373 port 14 82373 unique_id port 82373 remote_ip 10.8.0.6 82375 username aminvpn 82375 mac 82375 bytes_out 0 82375 bytes_in 0 82375 station_ip 5.119.30.76 82375 port 14 82375 unique_id port 82375 remote_ip 10.8.0.6 82377 username aminvpn 82377 mac 82377 bytes_out 0 82377 bytes_in 0 82377 station_ip 5.119.30.76 82377 port 14 82377 unique_id port 82377 remote_ip 10.8.0.6 82389 username aminvpn 82389 mac 82389 bytes_out 0 82389 bytes_in 0 82389 station_ip 5.119.30.76 82389 port 14 82389 unique_id port 82389 remote_ip 10.8.0.6 82391 username aminvpn 82391 mac 82391 bytes_out 0 82391 bytes_in 0 82391 station_ip 5.119.30.76 82391 port 31 82391 unique_id port 82391 remote_ip 10.8.1.10 82397 username aminvpn 82397 mac 82397 bytes_out 0 82397 bytes_in 0 82397 station_ip 5.119.30.76 82397 port 15 82397 unique_id port 82397 remote_ip 10.8.0.6 82402 username alinezhad 82402 unique_id port 82402 terminate_cause User-Request 82402 bytes_out 33167 82402 bytes_in 148026 82402 station_ip 5.202.30.47 82402 port 15728760 82402 nas_port_type Virtual 82402 remote_ip 5.5.5.230 82406 username shahriyar 82406 unique_id port 82406 terminate_cause User-Request 82406 bytes_out 65727 82406 bytes_in 383334 82406 station_ip 83.122.140.209 82406 port 15728761 82406 nas_port_type Virtual 82406 remote_ip 5.5.5.203 82407 username aminvpn 82407 mac 82407 bytes_out 0 82407 bytes_in 0 82407 station_ip 5.119.30.76 82407 port 14 82407 unique_id port 82407 remote_ip 10.8.0.6 82411 username aminvpn 82411 mac 82411 bytes_out 0 82411 bytes_in 0 82411 station_ip 5.119.30.76 82411 port 14 82411 unique_id port 82411 remote_ip 10.8.0.6 82414 username aminvpn 82414 mac 82414 bytes_out 0 82414 bytes_in 0 82414 station_ip 5.119.30.76 82414 port 31 82414 unique_id port 82414 remote_ip 10.8.1.10 82415 username ksrkrgr 82415 unique_id port 82415 terminate_cause Lost-Carrier 82415 bytes_out 14390431 82415 bytes_in 432446390 82415 station_ip 78.39.25.101 82415 port 15728755 82415 nas_port_type Virtual 82415 remote_ip 5.5.5.206 82416 username alinezhad 82416 unique_id port 82416 terminate_cause User-Request 82416 bytes_out 0 82416 bytes_in 0 82416 station_ip 5.202.30.47 82416 port 15728766 82416 nas_port_type Virtual 82416 remote_ip 5.5.5.230 82427 username aminvpn 82427 mac 82427 bytes_out 0 82427 bytes_in 0 82382 bytes_out 0 82382 bytes_in 0 82382 station_ip 5.119.30.76 82382 port 15 82382 unique_id port 82382 remote_ip 10.8.0.6 82384 username aminvpn 82384 mac 82384 bytes_out 0 82384 bytes_in 0 82384 station_ip 5.119.30.76 82384 port 14 82384 unique_id port 82384 remote_ip 10.8.0.6 82394 username amirabbas 82394 kill_reason Maximum check online fails reached 82394 unique_id port 82394 bytes_out 11804055 82394 bytes_in 285056453 82394 station_ip 31.56.222.64 82394 port 15728744 82394 nas_port_type Virtual 82394 remote_ip 5.5.5.220 82396 username madadi 82396 unique_id port 82396 terminate_cause Lost-Carrier 82396 bytes_out 309639 82396 bytes_in 585839 82396 station_ip 5.119.222.122 82396 port 15728753 82396 nas_port_type Virtual 82396 remote_ip 5.5.5.208 82399 username aminvpn 82399 mac 82399 bytes_out 0 82399 bytes_in 0 82399 station_ip 5.119.30.76 82399 port 15 82399 unique_id port 82399 remote_ip 10.8.0.6 82401 username aminvpn 82401 mac 82401 bytes_out 0 82401 bytes_in 0 82401 station_ip 5.119.30.76 82401 port 15 82401 unique_id port 82401 remote_ip 10.8.0.6 82405 username aminvpn 82405 mac 82405 bytes_out 0 82405 bytes_in 0 82405 station_ip 5.119.30.76 82405 port 15 82405 unique_id port 82405 remote_ip 10.8.0.6 82422 username aminvpn 82422 mac 82422 bytes_out 0 82422 bytes_in 0 82422 station_ip 5.119.30.76 82422 port 14 82422 unique_id port 82422 remote_ip 10.8.0.6 82424 username aminvpn 82424 mac 82424 bytes_out 0 82424 bytes_in 0 82424 station_ip 5.119.30.76 82424 port 14 82424 unique_id port 82424 remote_ip 10.8.0.6 82425 username aminvpn 82425 mac 82425 bytes_out 0 82425 bytes_in 0 82425 station_ip 5.119.30.76 82425 port 14 82425 unique_id port 82425 remote_ip 10.8.0.6 82426 username aminvpn 82426 mac 82426 bytes_out 0 82426 bytes_in 0 82426 station_ip 5.119.30.76 82426 port 14 82426 unique_id port 82426 remote_ip 10.8.0.6 82436 username mahdi 82436 kill_reason Relative expiration date has reached 82436 unique_id port 82436 bytes_out 0 82436 bytes_in 0 82436 station_ip 5.120.109.176 82436 port 15728772 82436 nas_port_type Virtual 82445 username ahmadipour 82445 unique_id port 82445 terminate_cause Lost-Carrier 82445 bytes_out 3864770 82445 bytes_in 70662109 82445 station_ip 83.123.205.194 82445 port 15728771 82445 nas_port_type Virtual 82445 remote_ip 5.5.5.198 82446 username aminvpn 82446 mac 82446 bytes_out 0 82446 bytes_in 0 82446 station_ip 5.119.30.76 82446 port 14 82446 unique_id port 82446 remote_ip 10.8.0.6 82450 username aminvpn 82450 mac 82450 bytes_out 0 82450 bytes_in 0 82450 station_ip 5.119.30.76 82450 port 14 82450 unique_id port 82450 remote_ip 10.8.0.6 82460 username aminvpn 82460 mac 82460 bytes_out 0 82460 bytes_in 0 82460 station_ip 5.119.30.76 82460 port 14 82460 unique_id port 82460 remote_ip 10.8.0.6 82461 username aminvpn 82461 mac 82461 bytes_out 0 82461 bytes_in 0 82461 station_ip 5.119.30.76 82461 port 14 82461 unique_id port 82461 remote_ip 10.8.0.6 82465 username aminvpn 82465 mac 82465 bytes_out 0 82465 bytes_in 0 82465 station_ip 5.119.30.76 82465 port 14 82465 unique_id port 82465 remote_ip 10.8.0.6 82470 username aminvpn 82470 mac 82470 bytes_out 0 82470 bytes_in 0 82470 station_ip 5.119.30.76 82470 port 31 82470 unique_id port 82470 remote_ip 10.8.1.10 82480 username caferibar 82480 unique_id port 82393 unique_id port 82393 bytes_out 333357 82393 bytes_in 1455377 82393 station_ip 5.120.109.176 82393 port 15728750 82393 nas_port_type Virtual 82393 remote_ip 5.5.5.234 82395 username aminvpn 82395 mac 82395 bytes_out 0 82395 bytes_in 0 82395 station_ip 5.119.30.76 82395 port 14 82395 unique_id port 82395 remote_ip 10.8.0.6 82398 username aminvpn 82398 mac 82398 bytes_out 0 82398 bytes_in 0 82398 station_ip 5.119.30.76 82398 port 14 82398 unique_id port 82398 remote_ip 10.8.0.6 82400 username aminvpn 82400 mac 82400 bytes_out 0 82400 bytes_in 0 82400 station_ip 5.119.30.76 82400 port 14 82400 unique_id port 82400 remote_ip 10.8.0.6 82404 username aminvpn 82404 mac 82404 bytes_out 0 82404 bytes_in 0 82404 station_ip 5.119.30.76 82404 port 14 82404 unique_id port 82404 remote_ip 10.8.0.6 82408 username ahmadi 82408 unique_id port 82408 terminate_cause User-Request 82408 bytes_out 93592 82408 bytes_in 1771701 82408 station_ip 37.129.198.243 82408 port 15728762 82408 nas_port_type Virtual 82408 remote_ip 5.5.5.202 82410 username aminvpn 82410 mac 82410 bytes_out 0 82410 bytes_in 0 82410 station_ip 5.119.30.76 82410 port 14 82410 unique_id port 82410 remote_ip 10.8.0.6 82413 username aminvpn 82413 mac 82413 bytes_out 0 82413 bytes_in 0 82413 station_ip 5.119.30.76 82413 port 14 82413 unique_id port 82413 remote_ip 10.8.0.6 82417 username forozande 82417 unique_id port 82417 terminate_cause User-Request 82417 bytes_out 27140 82417 bytes_in 144992 82417 station_ip 83.123.17.242 82417 port 15728767 82417 nas_port_type Virtual 82417 remote_ip 5.5.5.199 82420 username aminvpn 82420 mac 82420 bytes_out 0 82420 bytes_in 0 82420 station_ip 5.119.30.76 82420 port 14 82420 unique_id port 82420 remote_ip 10.8.0.6 82421 username aminvpn 82421 mac 82421 bytes_out 0 82421 bytes_in 0 82421 station_ip 5.119.30.76 82421 port 14 82421 unique_id port 82421 remote_ip 10.8.0.6 82428 username hamideh 82428 unique_id port 82428 terminate_cause Lost-Carrier 82428 bytes_out 999186 82428 bytes_in 19968421 82428 station_ip 5.120.54.32 82428 port 15728764 82428 nas_port_type Virtual 82428 remote_ip 5.5.5.242 82429 username aminvpn 82429 mac 82429 bytes_out 0 82429 bytes_in 0 82429 station_ip 5.119.30.76 82429 port 14 82429 unique_id port 82429 remote_ip 10.8.0.6 82433 username aminvpn 82433 mac 82433 bytes_out 0 82433 bytes_in 0 82433 station_ip 5.119.30.76 82433 port 14 82433 unique_id port 82433 remote_ip 10.8.0.6 82444 username asadi 82444 unique_id port 82444 terminate_cause User-Request 82444 bytes_out 30825 82444 bytes_in 84455 82444 station_ip 37.129.103.13 82444 port 15728776 82444 nas_port_type Virtual 82444 remote_ip 5.5.5.197 82449 username aminvpn 82449 mac 82449 bytes_out 0 82449 bytes_in 0 82449 station_ip 5.119.30.76 82449 port 14 82449 unique_id port 82449 remote_ip 10.8.0.6 82452 username soleymani 82452 unique_id port 82452 terminate_cause Lost-Carrier 82452 bytes_out 158287 82452 bytes_in 709558 82452 station_ip 5.126.58.67 82452 port 15728777 82452 nas_port_type Virtual 82452 remote_ip 5.5.5.196 82455 username aminvpn 82455 mac 82455 bytes_out 0 82455 bytes_in 0 82455 station_ip 5.119.30.76 82455 port 14 82455 unique_id port 82455 remote_ip 10.8.0.6 82456 username aminvpn 82456 mac 82456 bytes_out 0 82456 bytes_in 0 82456 station_ip 5.119.30.76 82456 port 14 82412 station_ip 5.119.30.76 82412 port 14 82412 unique_id port 82412 remote_ip 10.8.0.6 82418 username caferibar 82418 unique_id port 82418 terminate_cause User-Request 82418 bytes_out 3497836 82418 bytes_in 86404893 82418 station_ip 31.59.38.80 82418 port 15728763 82418 nas_port_type Virtual 82418 remote_ip 5.5.5.201 82419 username aminvpn 82419 mac 82419 bytes_out 0 82419 bytes_in 0 82419 station_ip 5.119.30.76 82419 port 14 82419 unique_id port 82419 remote_ip 10.8.0.6 82423 username aminvpn 82423 mac 82423 bytes_out 0 82423 bytes_in 0 82423 station_ip 5.119.30.76 82423 port 14 82423 unique_id port 82423 remote_ip 10.8.0.6 82431 username aminvpn 82431 mac 82431 bytes_out 0 82431 bytes_in 0 82431 station_ip 5.119.30.76 82431 port 14 82431 unique_id port 82431 remote_ip 10.8.0.6 82435 username aminvpn 82435 mac 82435 bytes_out 0 82435 bytes_in 0 82435 station_ip 5.119.30.76 82435 port 14 82435 unique_id port 82435 remote_ip 10.8.0.6 82439 username asadi 82439 unique_id port 82439 terminate_cause User-Request 82439 bytes_out 71691 82439 bytes_in 470127 82439 station_ip 37.129.103.13 82439 port 15728773 82439 nas_port_type Virtual 82439 remote_ip 5.5.5.197 82447 username aminvpn 82447 mac 82447 bytes_out 0 82447 bytes_in 0 82447 station_ip 5.119.30.76 82447 port 14 82447 unique_id port 82447 remote_ip 10.8.0.6 82448 username aminvpn 82448 mac 82448 bytes_out 0 82448 bytes_in 0 82448 station_ip 5.119.30.76 82448 port 14 82448 unique_id port 82448 remote_ip 10.8.0.6 82451 username alinezhad 82451 unique_id port 82451 terminate_cause User-Request 82451 bytes_out 0 82451 bytes_in 0 82451 station_ip 5.202.30.47 82451 port 15728779 82451 nas_port_type Virtual 82451 remote_ip 5.5.5.230 82453 username aminvpn 82453 mac 82453 bytes_out 0 82453 bytes_in 0 82453 station_ip 5.119.30.76 82453 port 14 82453 unique_id port 82453 remote_ip 10.8.0.6 82454 username aminvpn 82454 mac 82454 bytes_out 0 82454 bytes_in 0 82454 station_ip 5.119.30.76 82454 port 14 82454 unique_id port 82454 remote_ip 10.8.0.6 82458 username aminvpn 82458 mac 82458 bytes_out 0 82458 bytes_in 0 82458 station_ip 5.119.30.76 82458 port 14 82458 unique_id port 82458 remote_ip 10.8.0.6 82462 username aminvpn 82462 mac 82462 bytes_out 0 82462 bytes_in 0 82462 station_ip 5.119.30.76 82462 port 14 82462 unique_id port 82462 remote_ip 10.8.0.6 82466 username aminvpn 82466 mac 82466 bytes_out 0 82466 bytes_in 0 82466 station_ip 5.119.30.76 82466 port 14 82466 unique_id port 82466 remote_ip 10.8.0.6 82468 username amirabbas 82468 unique_id port 82468 terminate_cause User-Request 82468 bytes_out 13673442 82468 bytes_in 333471694 82468 station_ip 31.56.222.64 82468 port 15728769 82468 nas_port_type Virtual 82468 remote_ip 5.5.5.220 82478 username madadi 82478 unique_id port 82478 terminate_cause Lost-Carrier 82478 bytes_out 1180440 82478 bytes_in 3083610 82478 station_ip 5.119.199.14 82478 port 15728765 82478 nas_port_type Virtual 82478 remote_ip 5.5.5.200 82482 username zamanialireza 82482 unique_id port 82482 terminate_cause User-Request 82482 bytes_out 0 82482 bytes_in 0 82482 station_ip 5.160.115.139 82482 port 15728793 82482 nas_port_type Virtual 82482 remote_ip 5.5.5.222 82485 username asadi 82485 unique_id port 82485 terminate_cause User-Request 82485 bytes_out 219140 82485 bytes_in 6906618 82485 station_ip 37.129.103.13 82485 port 15728794 82427 station_ip 5.119.30.76 82427 port 14 82427 unique_id port 82427 remote_ip 10.8.0.6 82430 username aminvpn 82430 mac 82430 bytes_out 0 82430 bytes_in 0 82430 station_ip 5.119.30.76 82430 port 14 82430 unique_id port 82430 remote_ip 10.8.0.6 82432 username aminvpn 82432 mac 82432 bytes_out 1628 82432 bytes_in 5142 82432 station_ip 5.119.30.76 82432 port 14 82432 unique_id port 82432 remote_ip 10.8.0.6 82434 username aminvpn 82434 mac 82434 bytes_out 0 82434 bytes_in 0 82434 station_ip 5.119.30.76 82434 port 14 82434 unique_id port 82434 remote_ip 10.8.0.6 82437 username aminvpn 82437 mac 82437 bytes_out 0 82437 bytes_in 0 82437 station_ip 5.119.30.76 82437 port 14 82437 unique_id port 82437 remote_ip 10.8.0.6 82438 username aminvpn 82438 mac 82438 bytes_out 0 82438 bytes_in 0 82438 station_ip 5.119.30.76 82438 port 14 82438 unique_id port 82438 remote_ip 10.8.0.6 82440 username asadi 82440 unique_id port 82440 terminate_cause User-Request 82440 bytes_out 41561 82440 bytes_in 75182 82440 station_ip 37.129.103.13 82440 port 15728775 82440 nas_port_type Virtual 82440 remote_ip 5.5.5.197 82441 username caferibar 82441 unique_id port 82441 terminate_cause User-Request 82441 bytes_out 5778701 82441 bytes_in 141526294 82441 station_ip 31.59.38.80 82441 port 15728768 82441 nas_port_type Virtual 82441 remote_ip 5.5.5.201 82442 username aminvpn 82442 mac 82442 bytes_out 0 82442 bytes_in 0 82442 station_ip 5.119.30.76 82442 port 14 82442 unique_id port 82442 remote_ip 10.8.0.6 82443 username aminvpn 82443 mac 82443 bytes_out 0 82443 bytes_in 0 82443 station_ip 5.119.30.76 82443 port 14 82443 unique_id port 82443 remote_ip 10.8.0.6 82457 username aminvpn 82457 mac 82457 bytes_out 0 82457 bytes_in 0 82457 station_ip 5.119.30.76 82457 port 14 82457 unique_id port 82457 remote_ip 10.8.0.6 82472 username hamideh 82472 unique_id port 82472 terminate_cause Lost-Carrier 82472 bytes_out 2486814 82472 bytes_in 70578162 82472 station_ip 5.120.54.32 82472 port 15728778 82472 nas_port_type Virtual 82472 remote_ip 5.5.5.242 82473 username ksrkrgr 82473 unique_id port 82473 terminate_cause User-Request 82473 bytes_out 0 82473 bytes_in 0 82473 station_ip 94.176.9.136 82473 port 15728783 82473 nas_port_type Virtual 82473 remote_ip 5.5.5.192 82474 username amin.insta01 82474 unique_id port 82474 terminate_cause Lost-Carrier 82474 bytes_out 413631 82474 bytes_in 4273347 82474 station_ip 5.120.184.243 82474 port 15728780 82474 nas_port_type Virtual 82474 remote_ip 5.5.5.195 82476 username reza 82476 unique_id port 82476 terminate_cause User-Request 82476 bytes_out 0 82476 bytes_in 0 82476 station_ip 83.123.138.162 82476 port 15728787 82476 nas_port_type Virtual 82476 remote_ip 5.5.5.190 82487 username amir 82487 unique_id port 82487 terminate_cause Lost-Carrier 82487 bytes_out 11527560 82487 bytes_in 139570530 82487 station_ip 46.225.208.249 82487 port 15728752 82487 nas_port_type Virtual 82487 remote_ip 5.5.5.209 82495 username asadi 82495 unique_id port 82495 terminate_cause User-Request 82495 bytes_out 49295 82495 bytes_in 734889 82495 station_ip 37.129.103.13 82495 port 15728800 82495 nas_port_type Virtual 82495 remote_ip 5.5.5.197 82499 username afarin 82499 unique_id port 82499 terminate_cause User-Request 82499 bytes_out 20087 82499 bytes_in 43693 82499 station_ip 83.123.58.165 82499 port 15728803 82499 nas_port_type Virtual 82499 remote_ip 5.5.5.183 82501 username afarin 82456 unique_id port 82456 remote_ip 10.8.0.6 82459 username aminvpn 82459 mac 82459 bytes_out 0 82459 bytes_in 0 82459 station_ip 5.119.30.76 82459 port 14 82459 unique_id port 82459 remote_ip 10.8.0.6 82463 username aminvpn 82463 mac 82463 bytes_out 0 82463 bytes_in 0 82463 station_ip 5.119.30.76 82463 port 14 82463 unique_id port 82463 remote_ip 10.8.0.6 82464 username aminvpn 82464 mac 82464 bytes_out 0 82464 bytes_in 0 82464 station_ip 5.119.30.76 82464 port 14 82464 unique_id port 82464 remote_ip 10.8.0.6 82467 username aminvpn 82467 mac 82467 bytes_out 0 82467 bytes_in 0 82467 station_ip 5.119.30.76 82467 port 14 82467 unique_id port 82467 remote_ip 10.8.0.6 82469 username heydari 82469 unique_id port 82469 terminate_cause Lost-Carrier 82469 bytes_out 365947 82469 bytes_in 1910486 82469 station_ip 5.120.109.176 82469 port 15728759 82469 nas_port_type Virtual 82469 remote_ip 5.5.5.204 82471 username caferibar 82471 unique_id port 82471 terminate_cause User-Request 82471 bytes_out 9861928 82471 bytes_in 313387881 82471 station_ip 5.119.251.65 82471 port 15728770 82471 nas_port_type Virtual 82471 remote_ip 5.5.5.252 82475 username asadi 82475 unique_id port 82475 terminate_cause User-Request 82475 bytes_out 84729 82475 bytes_in 1205977 82475 station_ip 37.129.103.13 82475 port 15728785 82475 nas_port_type Virtual 82475 remote_ip 5.5.5.197 82477 username reza 82477 unique_id port 82477 terminate_cause User-Request 82477 bytes_out 0 82477 bytes_in 0 82477 station_ip 83.123.138.162 82477 port 15728788 82477 nas_port_type Virtual 82477 remote_ip 5.5.5.190 82479 username madadi 82479 unique_id port 82479 terminate_cause Lost-Carrier 82479 bytes_out 60697 82479 bytes_in 161761 82479 station_ip 5.120.108.31 82479 port 15728786 82479 nas_port_type Virtual 82479 remote_ip 5.5.5.191 82481 username ahmadi 82481 unique_id port 82481 terminate_cause User-Request 82481 bytes_out 115126 82481 bytes_in 1092588 82481 station_ip 37.129.216.183 82481 port 15728790 82481 nas_port_type Virtual 82481 remote_ip 5.5.5.189 82483 username asadi 82483 unique_id port 82483 terminate_cause User-Request 82483 bytes_out 58473 82483 bytes_in 418144 82483 station_ip 37.129.103.13 82483 port 15728791 82483 nas_port_type Virtual 82483 remote_ip 5.5.5.197 82486 username amirhosein 82486 unique_id port 82486 terminate_cause Lost-Carrier 82486 bytes_out 206368 82486 bytes_in 373787 82486 station_ip 5.120.3.16 82486 port 15728792 82486 nas_port_type Virtual 82486 remote_ip 5.5.5.226 82491 username mahbobeh 82491 unique_id port 82491 terminate_cause Lost-Carrier 82491 bytes_out 157915 82491 bytes_in 1702264 82491 station_ip 113.203.125.28 82491 port 15728782 82491 nas_port_type Virtual 82491 remote_ip 5.5.5.193 82493 username ahmadi 82493 unique_id port 82493 terminate_cause User-Request 82493 bytes_out 0 82493 bytes_in 0 82493 station_ip 37.129.216.183 82493 port 15728798 82493 nas_port_type Virtual 82493 remote_ip 5.5.5.189 82494 username reza2742 82494 unique_id port 82494 terminate_cause User-Request 82494 bytes_out 177237 82494 bytes_in 1830385 82494 station_ip 83.122.221.200 82494 port 15728799 82494 nas_port_type Virtual 82494 remote_ip 5.5.5.186 82498 username madadi 82498 unique_id port 82498 terminate_cause Lost-Carrier 82498 bytes_out 64052 82498 bytes_in 181121 82498 station_ip 5.119.57.196 82498 port 15728797 82498 nas_port_type Virtual 82498 remote_ip 5.5.5.187 82503 username forozande 82503 unique_id port 82503 terminate_cause User-Request 82503 bytes_out 92170 82503 bytes_in 205267 82480 terminate_cause User-Request 82480 bytes_out 2697893 82480 bytes_in 88540440 82480 station_ip 5.119.251.65 82480 port 15728784 82480 nas_port_type Virtual 82480 remote_ip 5.5.5.252 82484 username heydari 82484 unique_id port 82484 terminate_cause Lost-Carrier 82484 bytes_out 11559 82484 bytes_in 142981 82484 station_ip 5.120.109.176 82484 port 15728789 82484 nas_port_type Virtual 82484 remote_ip 5.5.5.204 82489 username shahrooz 82489 unique_id port 82489 terminate_cause Lost-Carrier 82489 bytes_out 569348 82489 bytes_in 2076049 82489 station_ip 83.123.219.133 82489 port 15728781 82489 nas_port_type Virtual 82489 remote_ip 5.5.5.194 82490 username aminvpn 82490 mac 82490 bytes_out 0 82490 bytes_in 0 82490 station_ip 5.233.72.32 82490 port 14 82490 unique_id port 82490 remote_ip 10.8.0.6 82492 username alinezhad 82492 unique_id port 82492 terminate_cause User-Request 82492 bytes_out 0 82492 bytes_in 0 82492 station_ip 83.123.250.23 82492 port 15728796 82492 nas_port_type Virtual 82492 remote_ip 5.5.5.188 82497 username aminvpn 82497 mac 82497 bytes_out 0 82497 bytes_in 0 82497 station_ip 5.233.72.32 82497 port 31 82497 unique_id port 82497 remote_ip 10.8.1.10 82500 username soleymani 82500 unique_id port 82500 terminate_cause Lost-Carrier 82500 bytes_out 94621 82500 bytes_in 349339 82500 station_ip 5.126.233.62 82500 port 15728801 82500 nas_port_type Virtual 82500 remote_ip 5.5.5.185 82502 username madadi 82502 unique_id port 82502 terminate_cause Lost-Carrier 82502 bytes_out 7118 82502 bytes_in 124008 82502 station_ip 5.119.105.144 82502 port 15728802 82502 nas_port_type Virtual 82502 remote_ip 5.5.5.184 82504 username aminvpn 82504 mac 82504 bytes_out 0 82504 bytes_in 0 82504 station_ip 5.233.72.32 82504 port 14 82504 unique_id port 82504 remote_ip 10.8.0.6 82508 username amirabbas 82508 unique_id port 82508 terminate_cause User-Request 82508 bytes_out 15354173 82508 bytes_in 428396234 82508 station_ip 31.56.222.64 82508 port 15728804 82508 nas_port_type Virtual 82508 remote_ip 5.5.5.220 82509 username caferibar 82509 unique_id port 82509 terminate_cause User-Request 82509 bytes_out 0 82509 bytes_in 0 82509 station_ip 5.119.143.142 82509 port 15728811 82509 nas_port_type Virtual 82509 remote_ip 5.5.5.178 82511 username arabpour 82511 unique_id port 82511 terminate_cause User-Request 82511 bytes_out 1056823 82511 bytes_in 12044887 82511 station_ip 37.129.63.73 82511 port 15728813 82511 nas_port_type Virtual 82511 remote_ip 5.5.5.177 82518 username madadi 82518 unique_id port 82518 terminate_cause Lost-Carrier 82518 bytes_out 31019 82518 bytes_in 188277 82518 station_ip 5.119.4.75 82518 port 15728817 82518 nas_port_type Virtual 82518 remote_ip 5.5.5.176 82519 username caferibar 82519 unique_id port 82519 terminate_cause Lost-Carrier 82519 bytes_out 289571 82519 bytes_in 5937294 82519 station_ip 5.119.15.205 82519 port 15728818 82519 nas_port_type Virtual 82519 remote_ip 5.5.5.175 82524 username aminvpn 82524 mac 82524 bytes_out 0 82524 bytes_in 0 82524 station_ip 5.233.72.32 82524 port 15 82524 unique_id port 82524 remote_ip 10.8.0.6 82525 username aminvpn 82525 mac 82525 bytes_out 0 82525 bytes_in 0 82525 station_ip 5.233.72.32 82525 port 15 82525 unique_id port 82525 remote_ip 10.8.0.6 82528 username asadi 82528 unique_id port 82528 terminate_cause User-Request 82528 bytes_out 154125 82528 bytes_in 1032847 82528 station_ip 83.122.210.26 82528 port 15728830 82528 nas_port_type Virtual 82528 remote_ip 5.5.5.172 82531 username amirreza 82485 nas_port_type Virtual 82485 remote_ip 5.5.5.197 82488 username aminvpn 82488 mac 82488 bytes_out 0 82488 bytes_in 0 82488 station_ip 5.233.72.32 82488 port 14 82488 unique_id port 82488 remote_ip 10.8.0.6 82496 username caferibar 82496 unique_id port 82496 terminate_cause User-Request 82496 bytes_out 2539894 82496 bytes_in 57057331 82496 station_ip 5.119.251.65 82496 port 15728795 82496 nas_port_type Virtual 82496 remote_ip 5.5.5.252 82510 username arman 82510 unique_id port 82510 terminate_cause Lost-Carrier 82510 bytes_out 2156708 82510 bytes_in 37991020 82510 station_ip 5.120.102.64 82510 port 15728808 82510 nas_port_type Virtual 82510 remote_ip 5.5.5.181 82520 username forozande 82520 unique_id port 82520 terminate_cause User-Request 82520 bytes_out 81938 82520 bytes_in 369791 82520 station_ip 83.122.24.94 82520 port 15728822 82520 nas_port_type Virtual 82520 remote_ip 5.5.5.173 82522 username hamideh 82522 unique_id port 82522 terminate_cause Lost-Carrier 82522 bytes_out 24804 82522 bytes_in 174322 82522 station_ip 5.120.54.32 82522 port 15728821 82522 nas_port_type Virtual 82522 remote_ip 5.5.5.242 82527 username madadi 82527 unique_id port 82527 terminate_cause Lost-Carrier 82527 bytes_out 126425 82527 bytes_in 465872 82527 station_ip 5.119.237.143 82527 port 15728826 82527 nas_port_type Virtual 82527 remote_ip 5.5.5.171 82529 username madadi 82529 unique_id port 82529 terminate_cause Lost-Carrier 82529 bytes_out 38546 82529 bytes_in 193836 82529 station_ip 5.120.159.34 82529 port 15728828 82529 nas_port_type Virtual 82529 remote_ip 5.5.5.169 82540 username asadi 82540 unique_id port 82540 terminate_cause User-Request 82540 bytes_out 82441 82540 bytes_in 2208796 82540 station_ip 83.122.210.26 82540 port 15728840 82540 nas_port_type Virtual 82540 remote_ip 5.5.5.172 82552 username heydari 82552 unique_id port 82552 terminate_cause User-Request 82552 bytes_out 0 82552 bytes_in 0 82552 station_ip 5.120.109.176 82552 port 15728852 82552 nas_port_type Virtual 82552 remote_ip 5.5.5.204 82556 username aminvpn 82556 kill_reason Maximum check online fails reached 82556 mac 82556 bytes_out 0 82556 bytes_in 0 82556 station_ip 5.120.167.223 82556 port 31 82556 unique_id port 82557 username amirhosein 82557 unique_id port 82557 terminate_cause Lost-Carrier 82557 bytes_out 148770 82557 bytes_in 422642 82557 station_ip 5.119.204.220 82557 port 15728850 82557 nas_port_type Virtual 82557 remote_ip 5.5.5.156 82558 username amirhosein 82558 unique_id port 82558 terminate_cause Lost-Carrier 82558 bytes_out 177866 82558 bytes_in 5604050 82558 station_ip 5.119.204.220 82558 port 15728855 82558 nas_port_type Virtual 82558 remote_ip 5.5.5.154 82560 username aminvpn 82560 mac 82560 bytes_out 0 82560 bytes_in 0 82560 station_ip 5.120.167.223 82560 port 32 82560 unique_id port 82560 remote_ip 10.8.1.10 82566 username aminvpn 82566 mac 82566 bytes_out 0 82566 bytes_in 0 82566 station_ip 5.120.167.223 82566 port 32 82566 unique_id port 82566 remote_ip 10.8.1.10 82569 username aminvpn 82569 mac 82569 bytes_out 0 82569 bytes_in 0 82569 station_ip 5.120.167.223 82569 port 32 82569 unique_id port 82569 remote_ip 10.8.1.10 82576 username aminvpn 82576 mac 82576 bytes_out 0 82576 bytes_in 0 82576 station_ip 5.120.167.223 82576 port 32 82576 unique_id port 82576 remote_ip 10.8.1.10 82577 username aminvpn 82577 kill_reason Maximum check online fails reached 82577 mac 82577 bytes_out 0 82577 bytes_in 0 82577 station_ip 5.120.167.223 82577 port 32 82577 unique_id port 82501 unique_id port 82501 terminate_cause User-Request 82501 bytes_out 130950 82501 bytes_in 1938233 82501 station_ip 83.123.58.165 82501 port 15728805 82501 nas_port_type Virtual 82501 remote_ip 5.5.5.183 82505 username amirhosein 82505 unique_id port 82505 terminate_cause Lost-Carrier 82505 bytes_out 2598 82505 bytes_in 125901 82505 station_ip 5.120.3.16 82505 port 15728806 82505 nas_port_type Virtual 82505 remote_ip 5.5.5.226 82507 username aminvpn 82507 kill_reason Maximum check online fails reached 82507 mac 82507 bytes_out 0 82507 bytes_in 0 82507 station_ip 5.233.72.32 82507 port 14 82507 unique_id port 82512 username caferibar 82512 unique_id port 82512 terminate_cause Lost-Carrier 82512 bytes_out 77681 82512 bytes_in 344199 82512 station_ip 5.119.143.142 82512 port 15728812 82512 nas_port_type Virtual 82512 remote_ip 5.5.5.178 82513 username forozande 82513 unique_id port 82513 terminate_cause User-Request 82513 bytes_out 35513 82513 bytes_in 254760 82513 station_ip 83.123.181.138 82513 port 15728815 82513 nas_port_type Virtual 82513 remote_ip 5.5.5.180 82514 username amirabbas 82514 unique_id port 82514 terminate_cause User-Request 82514 bytes_out 497325 82514 bytes_in 13774701 82514 station_ip 31.56.222.64 82514 port 15728814 82514 nas_port_type Virtual 82514 remote_ip 5.5.5.220 82515 username mahbobeh 82515 kill_reason Maximum check online fails reached 82515 unique_id port 82515 bytes_out 131797 82515 bytes_in 256358 82515 station_ip 113.203.125.28 82515 port 15728816 82515 nas_port_type Virtual 82515 remote_ip 5.5.5.193 82523 username asadi 82523 unique_id port 82523 terminate_cause User-Request 82523 bytes_out 89101 82523 bytes_in 3379992 82523 station_ip 83.122.210.26 82523 port 15728824 82523 nas_port_type Virtual 82523 remote_ip 5.5.5.172 82526 username alinezhad 82526 unique_id port 82526 terminate_cause User-Request 82526 bytes_out 0 82526 bytes_in 0 82526 station_ip 5.202.135.115 82526 port 15728827 82526 nas_port_type Virtual 82526 remote_ip 5.5.5.170 82534 username forozande 82534 unique_id port 82534 terminate_cause User-Request 82534 bytes_out 75547 82534 bytes_in 599723 82534 station_ip 83.123.184.70 82534 port 15728833 82534 nas_port_type Virtual 82534 remote_ip 5.5.5.165 82536 username mahbobeh 82536 unique_id port 82536 terminate_cause Lost-Carrier 82536 bytes_out 100538 82536 bytes_in 2280375 82536 station_ip 113.203.125.28 82536 port 15728825 82536 nas_port_type Virtual 82536 remote_ip 5.5.5.193 82539 username avaanna 82539 unique_id port 82539 terminate_cause User-Request 82539 bytes_out 61674 82539 bytes_in 455668 82539 station_ip 113.203.51.103 82539 port 15728838 82539 nas_port_type Virtual 82539 remote_ip 5.5.5.161 82542 username madadi 82542 unique_id port 82542 terminate_cause Lost-Carrier 82542 bytes_out 542234 82542 bytes_in 1118761 82542 station_ip 5.119.82.238 82542 port 15728835 82542 nas_port_type Virtual 82542 remote_ip 5.5.5.164 82543 username aminvpn 82543 mac 82543 bytes_out 0 82543 bytes_in 0 82543 station_ip 5.120.167.223 82543 port 15 82543 unique_id port 82543 remote_ip 10.8.0.6 82544 username zamanialireza 82544 unique_id port 82544 terminate_cause Lost-Carrier 82544 bytes_out 20573633 82544 bytes_in 442982011 82544 station_ip 5.72.236.37 82544 port 15728839 82544 nas_port_type Virtual 82544 remote_ip 5.5.5.160 82545 username forozande 82545 unique_id port 82545 terminate_cause User-Request 82545 bytes_out 212713 82545 bytes_in 3388701 82545 station_ip 83.123.254.41 82545 port 15728845 82545 nas_port_type Virtual 82545 remote_ip 5.5.5.157 82548 username aminvpn 82548 mac 82548 bytes_out 0 82503 station_ip 83.123.181.138 82503 port 15728809 82503 nas_port_type Virtual 82503 remote_ip 5.5.5.180 82506 username amirhosein 82506 unique_id port 82506 terminate_cause Lost-Carrier 82506 bytes_out 1782 82506 bytes_in 124853 82506 station_ip 5.120.3.16 82506 port 15728807 82506 nas_port_type Virtual 82506 remote_ip 5.5.5.182 82516 username ksrkrgr 82516 unique_id port 82516 terminate_cause User-Request 82516 bytes_out 897769 82516 bytes_in 1024366 82516 station_ip 94.176.9.136 82516 port 15728820 82516 nas_port_type Virtual 82516 remote_ip 5.5.5.192 82517 username aminvpn 82517 mac 82517 bytes_out 0 82517 bytes_in 0 82517 station_ip 5.233.72.32 82517 port 31 82517 unique_id port 82517 remote_ip 10.8.1.10 82521 username asadi 82521 unique_id port 82521 terminate_cause User-Request 82521 bytes_out 11976 82521 bytes_in 36267 82521 station_ip 83.122.210.26 82521 port 15728823 82521 nas_port_type Virtual 82521 remote_ip 5.5.5.172 82530 username ahmadipour 82530 unique_id port 82530 terminate_cause Lost-Carrier 82530 bytes_out 1354764 82530 bytes_in 22075435 82530 station_ip 83.123.236.178 82530 port 15728829 82530 nas_port_type Virtual 82530 remote_ip 5.5.5.168 82538 username forozande 82538 unique_id port 82538 terminate_cause User-Request 82538 bytes_out 19385 82538 bytes_in 49547 82538 station_ip 83.122.160.43 82538 port 15728837 82538 nas_port_type Virtual 82538 remote_ip 5.5.5.162 82547 username aminvpn 82547 mac 82547 bytes_out 0 82547 bytes_in 0 82547 station_ip 5.120.167.223 82547 port 15 82547 unique_id port 82547 remote_ip 10.8.0.6 82549 username aminvpn 82549 mac 82549 bytes_out 0 82549 bytes_in 0 82549 station_ip 5.120.167.223 82549 port 15 82549 unique_id port 82549 remote_ip 10.8.0.6 82551 username aminvpn 82551 mac 82551 bytes_out 0 82551 bytes_in 0 82551 station_ip 5.120.167.223 82551 port 31 82551 unique_id port 82551 remote_ip 10.8.1.10 82553 username farhad 82553 unique_id port 82553 terminate_cause User-Request 82553 bytes_out 38765789 82553 bytes_in 546151075 82553 station_ip 5.119.150.87 82553 port 15728819 82553 nas_port_type Virtual 82553 remote_ip 5.5.5.174 82563 username aminvpn 82563 mac 82563 bytes_out 0 82563 bytes_in 0 82563 station_ip 5.120.167.223 82563 port 15 82563 unique_id port 82563 remote_ip 10.8.0.6 82564 username aminvpn 82564 mac 82564 bytes_out 0 82564 bytes_in 0 82564 station_ip 5.120.167.223 82564 port 15 82564 unique_id port 82564 remote_ip 10.8.0.6 82565 username ahmadipour 82565 unique_id port 82565 terminate_cause Lost-Carrier 82565 bytes_out 2365233 82565 bytes_in 50417227 82565 station_ip 83.123.238.130 82565 port 15728856 82565 nas_port_type Virtual 82565 remote_ip 5.5.5.153 82567 username zamanialireza 82567 unique_id port 82567 terminate_cause Lost-Carrier 82567 bytes_out 12785 82567 bytes_in 129335 82567 station_ip 94.183.213.166 82567 port 15728858 82567 nas_port_type Virtual 82567 remote_ip 5.5.5.151 82571 username aminvpn 82571 mac 82571 bytes_out 0 82571 bytes_in 0 82571 station_ip 5.120.167.223 82571 port 32 82571 unique_id port 82571 remote_ip 10.8.1.10 82573 username zamanialireza 82573 unique_id port 82573 terminate_cause Lost-Carrier 82573 bytes_out 10543756 82573 bytes_in 337325035 82573 station_ip 94.183.213.166 82573 port 15728860 82573 nas_port_type Virtual 82573 remote_ip 5.5.5.149 82581 username aminvpn 82581 mac 82581 bytes_out 0 82581 bytes_in 0 82581 station_ip 5.120.167.223 82581 port 15 82581 unique_id port 82581 remote_ip 10.8.0.6 82531 unique_id port 82531 terminate_cause User-Request 82531 bytes_out 1374374 82531 bytes_in 43412339 82531 station_ip 5.120.87.183 82531 port 15728831 82531 nas_port_type Virtual 82531 remote_ip 5.5.5.167 82532 username aminvpn 82532 mac 82532 bytes_out 0 82532 bytes_in 0 82532 station_ip 5.233.72.32 82532 port 15 82532 unique_id port 82532 remote_ip 10.8.0.6 82533 username zamanialireza 82533 unique_id port 82533 terminate_cause User-Request 82533 bytes_out 94675 82533 bytes_in 276607 82533 station_ip 37.129.37.176 82533 port 15728832 82533 nas_port_type Virtual 82533 remote_ip 5.5.5.166 82535 username asadi 82535 unique_id port 82535 terminate_cause User-Request 82535 bytes_out 558265 82535 bytes_in 13898103 82535 station_ip 83.122.210.26 82535 port 15728834 82535 nas_port_type Virtual 82535 remote_ip 5.5.5.172 82537 username arabpour 82537 unique_id port 82537 terminate_cause User-Request 82537 bytes_out 284368 82537 bytes_in 6703944 82537 station_ip 83.123.251.82 82537 port 15728836 82537 nas_port_type Virtual 82537 remote_ip 5.5.5.163 82541 username avaanna 82541 unique_id port 82541 terminate_cause User-Request 82541 bytes_out 190054 82541 bytes_in 2187058 82541 station_ip 113.203.51.103 82541 port 15728841 82541 nas_port_type Virtual 82541 remote_ip 5.5.5.161 82546 username aminvpn 82546 mac 82546 bytes_out 0 82546 bytes_in 0 82546 station_ip 5.120.167.223 82546 port 15 82546 unique_id port 82546 remote_ip 10.8.0.6 82559 username aminvpn 82559 mac 82559 bytes_out 0 82559 bytes_in 0 82559 station_ip 5.120.167.223 82559 port 32 82559 unique_id port 82559 remote_ip 10.8.1.10 82562 username aminvpn 82562 mac 82562 bytes_out 0 82562 bytes_in 0 82562 station_ip 5.120.167.223 82562 port 15 82562 unique_id port 82562 remote_ip 10.8.0.6 82570 username aminvpn 82570 mac 82570 bytes_out 0 82570 bytes_in 0 82570 station_ip 5.120.167.223 82570 port 32 82570 unique_id port 82570 remote_ip 10.8.1.10 82578 username aminvpn 82578 mac 82578 bytes_out 0 82578 bytes_in 0 82578 station_ip 5.120.167.223 82578 port 33 82578 unique_id port 82578 remote_ip 10.8.1.10 82580 username caferibar 82580 unique_id port 82580 terminate_cause User-Request 82580 bytes_out 5032423 82580 bytes_in 109421498 82580 station_ip 5.119.251.65 82580 port 15728853 82580 nas_port_type Virtual 82580 remote_ip 5.5.5.252 82583 username arabpour 82583 unique_id port 82583 terminate_cause User-Request 82583 bytes_out 636358 82583 bytes_in 19717933 82583 station_ip 83.122.125.99 82583 port 15728866 82583 nas_port_type Virtual 82583 remote_ip 5.5.5.147 82586 username rasoul 82586 unique_id port 82586 terminate_cause User-Request 82586 bytes_out 66641 82586 bytes_in 596031 82586 station_ip 113.203.93.54 82586 port 15728869 82586 nas_port_type Virtual 82586 remote_ip 5.5.5.144 82588 username asadi 82588 unique_id port 82588 terminate_cause User-Request 82588 bytes_out 60806 82588 bytes_in 325761 82588 station_ip 83.122.210.26 82588 port 15728871 82588 nas_port_type Virtual 82588 remote_ip 5.5.5.172 82592 username caferibar 82592 unique_id port 82592 terminate_cause Lost-Carrier 82592 bytes_out 1567979 82592 bytes_in 21080763 82592 station_ip 5.119.251.65 82592 port 15728865 82592 nas_port_type Virtual 82592 remote_ip 5.5.5.252 82593 username forozande 82593 unique_id port 82593 terminate_cause User-Request 82593 bytes_out 195681 82593 bytes_in 849209 82593 station_ip 83.122.220.47 82593 port 15728876 82593 nas_port_type Virtual 82593 remote_ip 5.5.5.140 82595 username alinezhad 82548 bytes_in 0 82548 station_ip 5.120.167.223 82548 port 15 82548 unique_id port 82548 remote_ip 10.8.0.6 82550 username caferibar 82550 unique_id port 82550 terminate_cause User-Request 82550 bytes_out 2828663 82550 bytes_in 75359569 82550 station_ip 5.119.251.65 82550 port 15728843 82550 nas_port_type Virtual 82550 remote_ip 5.5.5.252 82554 username ksrkrgr 82554 unique_id port 82554 terminate_cause User-Request 82554 bytes_out 2311511 82554 bytes_in 25500853 82554 station_ip 94.176.9.136 82554 port 15728851 82554 nas_port_type Virtual 82554 remote_ip 5.5.5.192 82555 username aminvpn 82555 mac 82555 bytes_out 0 82555 bytes_in 0 82555 station_ip 5.120.167.223 82555 port 31 82555 unique_id port 82555 remote_ip 10.8.1.10 82561 username forozande 82561 unique_id port 82561 terminate_cause User-Request 82561 bytes_out 37841 82561 bytes_in 345217 82561 station_ip 37.129.126.117 82561 port 15728857 82561 nas_port_type Virtual 82561 remote_ip 5.5.5.152 82568 username zamanialireza 82568 unique_id port 82568 terminate_cause Lost-Carrier 82568 bytes_out 53593 82568 bytes_in 164982 82568 station_ip 94.183.213.166 82568 port 15728859 82568 nas_port_type Virtual 82568 remote_ip 5.5.5.150 82572 username aminvpn 82572 mac 82572 bytes_out 0 82572 bytes_in 0 82572 station_ip 5.120.167.223 82572 port 32 82572 unique_id port 82572 remote_ip 10.8.1.10 82574 username amirhosein 82574 unique_id port 82574 terminate_cause Lost-Carrier 82574 bytes_out 946488 82574 bytes_in 26531168 82574 station_ip 5.119.204.220 82574 port 15728861 82574 nas_port_type Virtual 82574 remote_ip 5.5.5.154 82575 username arman 82575 unique_id port 82575 terminate_cause Lost-Carrier 82575 bytes_out 11874028 82575 bytes_in 296941889 82575 station_ip 5.120.122.255 82575 port 15728810 82575 nas_port_type Virtual 82575 remote_ip 5.5.5.179 82579 username shokokian 82579 unique_id port 82579 terminate_cause User-Request 82579 bytes_out 75597 82579 bytes_in 462051 82579 station_ip 31.59.33.72 82579 port 15728863 82579 nas_port_type Virtual 82579 remote_ip 5.5.5.148 82584 username ahmadi 82584 unique_id port 82584 terminate_cause User-Request 82584 bytes_out 51644 82584 bytes_in 271560 82584 station_ip 83.122.14.209 82584 port 15728868 82584 nas_port_type Virtual 82584 remote_ip 5.5.5.145 82589 username aminvpn 82589 mac 82589 bytes_out 0 82589 bytes_in 0 82589 station_ip 5.120.167.223 82589 port 15 82589 unique_id port 82589 remote_ip 10.8.0.6 82594 username soleymani 82594 unique_id port 82594 terminate_cause Lost-Carrier 82594 bytes_out 74645 82594 bytes_in 233409 82594 station_ip 5.126.66.32 82594 port 15728874 82594 nas_port_type Virtual 82594 remote_ip 5.5.5.142 82596 username caferibar 82596 unique_id port 82596 terminate_cause Lost-Carrier 82596 bytes_out 1777996 82596 bytes_in 43122334 82596 station_ip 5.119.18.90 82596 port 15728872 82596 nas_port_type Virtual 82596 remote_ip 5.5.5.143 82599 username alinezhad 82599 unique_id port 82599 terminate_cause User-Request 82599 bytes_out 48394 82599 bytes_in 144520 82599 station_ip 5.202.19.26 82599 port 15728884 82599 nas_port_type Virtual 82599 remote_ip 5.5.5.139 82601 username mahbobeh 82601 unique_id port 82601 terminate_cause Lost-Carrier 82601 bytes_out 2369839 82601 bytes_in 35830563 82601 station_ip 113.203.125.28 82601 port 15728864 82601 nas_port_type Virtual 82601 remote_ip 5.5.5.193 82604 username forozande 82604 unique_id port 82604 terminate_cause User-Request 82604 bytes_out 0 82604 bytes_in 0 82604 station_ip 83.122.34.143 82604 port 15728891 82604 nas_port_type Virtual 82604 remote_ip 5.5.5.131 82582 username aminvpn 82582 mac 82582 bytes_out 0 82582 bytes_in 0 82582 station_ip 5.120.167.223 82582 port 15 82582 unique_id port 82582 remote_ip 10.8.0.6 82585 username zamanialireza 82585 unique_id port 82585 terminate_cause Lost-Carrier 82585 bytes_out 1583369 82585 bytes_in 16989096 82585 station_ip 94.183.213.166 82585 port 15728842 82585 nas_port_type Virtual 82585 remote_ip 5.5.5.159 82591 username farhad 82591 unique_id port 82591 terminate_cause User-Request 82591 bytes_out 15594337 82591 bytes_in 124313712 82591 station_ip 5.119.249.232 82591 port 15728854 82591 nas_port_type Virtual 82591 remote_ip 5.5.5.155 82602 username alirezazamani 82602 kill_reason Relative expiration date has reached 82602 unique_id port 82602 bytes_out 0 82602 bytes_in 0 82602 station_ip 5.119.180.114 82602 port 15728889 82602 nas_port_type Virtual 82603 username aminvpn 82603 unique_id port 82603 terminate_cause User-Request 82603 bytes_out 5292926 82603 bytes_in 126768099 82603 station_ip 5.120.167.223 82603 port 15728844 82603 nas_port_type Virtual 82603 remote_ip 5.5.5.158 82619 username madadi 82619 unique_id port 82619 terminate_cause User-Request 82619 bytes_out 30401 82619 bytes_in 49958 82619 station_ip 5.119.10.26 82619 port 15728902 82619 nas_port_type Virtual 82619 remote_ip 5.5.5.127 82622 username ahmadi 82622 unique_id port 82622 terminate_cause User-Request 82622 bytes_out 95272 82622 bytes_in 480042 82622 station_ip 83.122.14.209 82622 port 15728904 82622 nas_port_type Virtual 82622 remote_ip 5.5.5.145 82624 username alinezhad 82624 unique_id port 82624 terminate_cause User-Request 82624 bytes_out 0 82624 bytes_in 0 82624 station_ip 5.202.19.26 82624 port 15728907 82624 nas_port_type Virtual 82624 remote_ip 5.5.5.139 82632 username aminvpn 82632 unique_id port 82632 terminate_cause User-Request 82632 bytes_out 20834 82632 bytes_in 81212 82632 station_ip 113.203.33.93 82632 port 15728916 82632 nas_port_type Virtual 82632 remote_ip 5.5.5.123 82637 username farhad 82637 unique_id port 82637 terminate_cause Lost-Carrier 82637 bytes_out 8899695 82637 bytes_in 161606532 82637 station_ip 5.120.86.86 82637 port 15728915 82637 nas_port_type Virtual 82637 remote_ip 5.5.5.122 82640 username madadi 82640 unique_id port 82640 terminate_cause Lost-Carrier 82640 bytes_out 152123 82640 bytes_in 2166412 82640 station_ip 5.119.80.36 82640 port 15728924 82640 nas_port_type Virtual 82640 remote_ip 5.5.5.120 82646 username zamanialireza 82646 unique_id port 82646 terminate_cause Lost-Carrier 82646 bytes_out 5298333 82646 bytes_in 154965684 82646 station_ip 5.160.115.139 82646 port 15728928 82646 nas_port_type Virtual 82646 remote_ip 5.5.5.222 82652 username shahrooz 82652 unique_id port 82652 terminate_cause Lost-Carrier 82652 bytes_out 175242 82652 bytes_in 2752716 82652 station_ip 113.203.5.65 82652 port 15728932 82652 nas_port_type Virtual 82652 remote_ip 5.5.5.115 82657 username amirhosein 82657 unique_id port 82657 terminate_cause Admin-Reboot 82657 bytes_out 0 82657 bytes_in 0 82657 station_ip 5.119.250.118 82657 port 15728946 82657 nas_port_type Virtual 82657 remote_ip 5.5.5.109 82666 username ahmadi 82666 unique_id port 82666 terminate_cause User-Request 82666 bytes_out 38317 82666 bytes_in 251985 82666 station_ip 83.122.92.133 82666 port 15728649 82666 nas_port_type Virtual 82666 remote_ip 5.5.5.247 82672 username aminvpn 82672 unique_id port 82672 terminate_cause User-Request 82672 bytes_out 67631 82672 bytes_in 75325 82672 station_ip 113.203.74.77 82672 port 15728655 82672 nas_port_type Virtual 82672 remote_ip 5.5.5.243 82678 username forozande 82678 unique_id port 82587 username arabpour 82587 unique_id port 82587 terminate_cause User-Request 82587 bytes_out 183731 82587 bytes_in 3667899 82587 station_ip 83.122.125.99 82587 port 15728870 82587 nas_port_type Virtual 82587 remote_ip 5.5.5.147 82590 username rasoul 82590 unique_id port 82590 terminate_cause Lost-Carrier 82590 bytes_out 13898 82590 bytes_in 269282 82590 station_ip 46.225.214.119 82590 port 15728867 82590 nas_port_type Virtual 82590 remote_ip 5.5.5.146 82600 username arabpour 82600 unique_id port 82600 terminate_cause User-Request 82600 bytes_out 482513 82600 bytes_in 14130929 82600 station_ip 113.203.56.56 82600 port 15728887 82600 nas_port_type Virtual 82600 remote_ip 5.5.5.134 82607 username reza 82607 unique_id port 82607 terminate_cause User-Request 82607 bytes_out 71338 82607 bytes_in 1251713 82607 station_ip 113.203.13.163 82607 port 15728892 82607 nas_port_type Virtual 82607 remote_ip 5.5.5.130 82612 username farhad 82612 unique_id port 82612 terminate_cause User-Request 82612 bytes_out 0 82612 bytes_in 0 82612 station_ip 5.119.88.183 82612 port 15728896 82612 nas_port_type Virtual 82612 remote_ip 5.5.5.129 82614 username farhad 82614 unique_id port 82614 terminate_cause Lost-Carrier 82614 bytes_out 21109785 82614 bytes_in 95040162 82614 station_ip 5.119.78.209 82614 port 15728875 82614 nas_port_type Virtual 82614 remote_ip 5.5.5.141 82616 username aminvpn 82616 kill_reason Another user logged on this global unique id 82616 mac 82616 bytes_out 0 82616 bytes_in 0 82616 station_ip 5.120.167.223 82616 port 15 82616 unique_id port 82616 remote_ip 10.8.0.6 82620 username madadi 82620 unique_id port 82620 terminate_cause Lost-Carrier 82620 bytes_out 65335 82620 bytes_in 189955 82620 station_ip 5.119.10.26 82620 port 15728900 82620 nas_port_type Virtual 82620 remote_ip 5.5.5.128 82626 username heydari 82626 unique_id port 82626 terminate_cause Lost-Carrier 82626 bytes_out 8672 82626 bytes_in 149205 82626 station_ip 5.119.7.146 82626 port 15728906 82626 nas_port_type Virtual 82626 remote_ip 5.5.5.125 82630 username asadi 82630 unique_id port 82630 terminate_cause User-Request 82630 bytes_out 246384 82630 bytes_in 3938174 82630 station_ip 83.122.210.26 82630 port 15728911 82630 nas_port_type Virtual 82630 remote_ip 5.5.5.172 82634 username ahmadi 82634 unique_id port 82634 terminate_cause User-Request 82634 bytes_out 44625 82634 bytes_in 119825 82634 station_ip 83.122.14.209 82634 port 15728917 82634 nas_port_type Virtual 82634 remote_ip 5.5.5.145 82644 username caferibar 82644 unique_id port 82644 terminate_cause User-Request 82644 bytes_out 1252274 82644 bytes_in 26761137 82644 station_ip 5.119.251.65 82644 port 15728929 82644 nas_port_type Virtual 82644 remote_ip 5.5.5.252 82645 username madadi 82645 unique_id port 82645 terminate_cause Lost-Carrier 82645 bytes_out 8932 82645 bytes_in 129280 82645 station_ip 5.119.33.220 82645 port 15728931 82645 nas_port_type Virtual 82645 remote_ip 5.5.5.116 82647 username madadi 82647 unique_id port 82647 terminate_cause Lost-Carrier 82647 bytes_out 20958 82647 bytes_in 138512 82647 station_ip 5.119.152.202 82647 port 15728935 82647 nas_port_type Virtual 82647 remote_ip 5.5.5.113 82648 username madadi 82648 unique_id port 82648 terminate_cause Lost-Carrier 82648 bytes_out 11014 82648 bytes_in 127818 82648 station_ip 5.120.65.25 82648 port 15728936 82648 nas_port_type Virtual 82648 remote_ip 5.5.5.112 82649 username madadi 82649 unique_id port 82649 terminate_cause User-Request 82649 bytes_out 0 82649 bytes_in 0 82649 station_ip 5.119.228.66 82649 port 15728937 82649 nas_port_type Virtual 82649 remote_ip 5.5.5.111 82595 unique_id port 82595 terminate_cause User-Request 82595 bytes_out 0 82595 bytes_in 0 82595 station_ip 5.202.19.26 82595 port 15728877 82595 nas_port_type Virtual 82595 remote_ip 5.5.5.139 82597 username aminvpn 82597 unique_id port 82597 terminate_cause Lost-Carrier 82597 bytes_out 198424 82597 bytes_in 1085467 82597 station_ip 5.119.141.241 82597 port 15728880 82597 nas_port_type Virtual 82597 remote_ip 5.5.5.138 82598 username aminvpn 82598 unique_id port 82598 terminate_cause User-Request 82598 bytes_out 556528 82598 bytes_in 3281618 82598 station_ip 5.233.72.32 82598 port 15728885 82598 nas_port_type Virtual 82598 remote_ip 5.5.5.136 82605 username hamideh 82605 unique_id port 82605 terminate_cause Lost-Carrier 82605 bytes_out 19808 82605 bytes_in 178788 82605 station_ip 5.120.168.8 82605 port 15728888 82605 nas_port_type Virtual 82605 remote_ip 5.5.5.133 82606 username caferibar 82606 unique_id port 82606 terminate_cause Lost-Carrier 82606 bytes_out 2500862 82606 bytes_in 33546150 82606 station_ip 5.119.247.248 82606 port 15728881 82606 nas_port_type Virtual 82606 remote_ip 5.5.5.137 82615 username madadi 82615 unique_id port 82615 terminate_cause User-Request 82615 bytes_out 662406 82615 bytes_in 6619574 82615 station_ip 5.119.10.26 82615 port 15728899 82615 nas_port_type Virtual 82615 remote_ip 5.5.5.128 82628 username alinezhad 82628 unique_id port 82628 terminate_cause User-Request 82628 bytes_out 182348 82628 bytes_in 2403049 82628 station_ip 5.202.19.26 82628 port 15728909 82628 nas_port_type Virtual 82628 remote_ip 5.5.5.139 82629 username aminvpn 82629 unique_id port 82629 terminate_cause User-Request 82629 bytes_out 316817 82629 bytes_in 191316 82629 station_ip 113.203.33.93 82629 port 15728910 82629 nas_port_type Virtual 82629 remote_ip 5.5.5.123 82631 username farhad 82631 unique_id port 82631 terminate_cause Lost-Carrier 82631 bytes_out 8857257 82631 bytes_in 105296792 82631 station_ip 5.119.88.183 82631 port 15728897 82631 nas_port_type Virtual 82631 remote_ip 5.5.5.129 82633 username amirabbas 82633 unique_id port 82633 terminate_cause User-Request 82633 bytes_out 10810669 82633 bytes_in 290170465 82633 station_ip 31.56.223.113 82633 port 15728908 82633 nas_port_type Virtual 82633 remote_ip 5.5.5.124 82635 username alinezhad 82635 unique_id port 82635 terminate_cause User-Request 82635 bytes_out 1082075 82635 bytes_in 20403532 82635 station_ip 5.202.19.26 82635 port 15728918 82635 nas_port_type Virtual 82635 remote_ip 5.5.5.139 82643 username heydari 82643 unique_id port 82643 terminate_cause User-Request 82643 bytes_out 30238090 82643 bytes_in 6433464 82643 station_ip 5.119.7.146 82643 port 15728920 82643 nas_port_type Virtual 82643 remote_ip 5.5.5.125 82651 username madadi 82651 unique_id port 82651 terminate_cause Lost-Carrier 82651 bytes_out 8401 82651 bytes_in 120030 82651 station_ip 5.119.228.66 82651 port 15728938 82651 nas_port_type Virtual 82651 remote_ip 5.5.5.111 82653 username madadi 82653 unique_id port 82653 terminate_cause Lost-Carrier 82653 bytes_out 41956 82653 bytes_in 157683 82653 station_ip 5.120.37.162 82653 port 15728942 82653 nas_port_type Virtual 82653 remote_ip 5.5.5.110 82654 username pouria 82654 unique_id port 82654 terminate_cause Admin-Reboot 82654 bytes_out 1592436 82654 bytes_in 19281875 82654 station_ip 5.120.30.166 82654 port 15728927 82654 nas_port_type Virtual 82654 remote_ip 5.5.5.117 82658 username madadi 82658 unique_id port 82658 terminate_cause Lost-Carrier 82658 bytes_out 53416 82658 bytes_in 190987 82658 station_ip 5.120.168.138 82658 port 15728641 82658 nas_port_type Virtual 82658 remote_ip 5.5.5.254 82608 username reza 82608 unique_id port 82608 terminate_cause User-Request 82608 bytes_out 15863 82608 bytes_in 168258 82608 station_ip 113.203.13.163 82608 port 15728893 82608 nas_port_type Virtual 82608 remote_ip 5.5.5.130 82609 username abdilahyar 82609 unique_id port 82609 terminate_cause Lost-Carrier 82609 bytes_out 756162 82609 bytes_in 8059481 82609 station_ip 5.120.119.249 82609 port 15728774 82609 nas_port_type Virtual 82609 remote_ip 5.5.5.228 82610 username zamanialireza 82610 unique_id port 82610 terminate_cause Lost-Carrier 82610 bytes_out 15511198 82610 bytes_in 513700597 82610 station_ip 94.183.213.166 82610 port 15728890 82610 nas_port_type Virtual 82610 remote_ip 5.5.5.132 82611 username zamanialireza 82611 unique_id port 82611 terminate_cause User-Request 82611 bytes_out 34096785 82611 bytes_in 188024996 82611 station_ip 83.123.50.225 82611 port 15728886 82611 nas_port_type Virtual 82611 remote_ip 5.5.5.135 82613 username reza 82613 unique_id port 82613 terminate_cause User-Request 82613 bytes_out 9984 82613 bytes_in 55820 82613 station_ip 113.203.13.163 82613 port 15728898 82613 nas_port_type Virtual 82613 remote_ip 5.5.5.130 82617 username madadi 82617 unique_id port 82617 terminate_cause User-Request 82617 bytes_out 93467 82617 bytes_in 118895 82617 station_ip 5.119.10.26 82617 port 15728901 82617 nas_port_type Virtual 82617 remote_ip 5.5.5.127 82618 username aminvpn 82618 kill_reason Another user logged on this global unique id 82618 mac 82618 bytes_out 0 82618 bytes_in 0 82618 station_ip 5.120.167.223 82618 port 15 82618 unique_id port 82621 username aminvpn 82621 mac 82621 bytes_out 0 82621 bytes_in 0 82621 station_ip 5.120.167.223 82621 port 15 82621 unique_id port 82623 username heydari 82623 unique_id port 82623 terminate_cause Lost-Carrier 82623 bytes_out 122611 82623 bytes_in 4329412 82623 station_ip 5.119.7.146 82623 port 15728903 82623 nas_port_type Virtual 82623 remote_ip 5.5.5.126 82625 username madadi 82625 unique_id port 82625 terminate_cause Lost-Carrier 82625 bytes_out 9578 82625 bytes_in 128192 82625 station_ip 5.119.10.26 82625 port 15728905 82625 nas_port_type Virtual 82625 remote_ip 5.5.5.127 82627 username zamanialireza 82627 unique_id port 82627 terminate_cause Lost-Carrier 82627 bytes_out 8392288 82627 bytes_in 161155066 82627 station_ip 94.183.213.166 82627 port 15728873 82627 nas_port_type Virtual 82627 remote_ip 5.5.5.149 82636 username heydari 82636 unique_id port 82636 terminate_cause Lost-Carrier 82636 bytes_out 152118 82636 bytes_in 688806 82636 station_ip 5.119.7.146 82636 port 15728919 82636 nas_port_type Virtual 82636 remote_ip 5.5.5.125 82638 username madadi 82638 unique_id port 82638 terminate_cause Lost-Carrier 82638 bytes_out 95783 82638 bytes_in 405566 82638 station_ip 5.120.36.157 82638 port 15728921 82638 nas_port_type Virtual 82638 remote_ip 5.5.5.121 82639 username madadi 82639 unique_id port 82639 terminate_cause User-Request 82639 bytes_out 0 82639 bytes_in 0 82639 station_ip 5.119.80.36 82639 port 15728922 82639 nas_port_type Virtual 82639 remote_ip 5.5.5.120 82641 username madadi 82641 unique_id port 82641 terminate_cause Lost-Carrier 82641 bytes_out 282351 82641 bytes_in 818685 82641 station_ip 5.120.142.172 82641 port 15728925 82641 nas_port_type Virtual 82641 remote_ip 5.5.5.119 82642 username pouria 82642 unique_id port 82642 terminate_cause Lost-Carrier 82642 bytes_out 145606 82642 bytes_in 1520218 82642 station_ip 151.235.109.97 82642 port 15728926 82642 nas_port_type Virtual 82642 remote_ip 5.5.5.118 82655 username arman 82655 unique_id port 82650 username caferibar 82650 unique_id port 82650 terminate_cause User-Request 82650 bytes_out 2513165 82650 bytes_in 48125453 82650 station_ip 5.119.251.65 82650 port 15728930 82650 nas_port_type Virtual 82650 remote_ip 5.5.5.252 82655 terminate_cause Admin-Reboot 82655 bytes_out 15059835 82655 bytes_in 379651639 82655 station_ip 5.120.172.174 82655 port 15728934 82655 nas_port_type Virtual 82655 remote_ip 5.5.5.114 82659 username amirhosein 82659 unique_id port 82659 terminate_cause Lost-Carrier 82659 bytes_out 160033 82659 bytes_in 3632895 82659 station_ip 5.120.79.159 82659 port 15728642 82659 nas_port_type Virtual 82659 remote_ip 5.5.5.253 82661 username aminvpn 82661 kill_reason Another user logged on this global unique id 82661 mac 82661 bytes_out 0 82661 bytes_in 0 82661 station_ip 5.120.167.223 82661 port 15 82661 unique_id port 82661 remote_ip 10.8.0.6 82663 username aminvpn 82663 mac 82663 bytes_out 0 82663 bytes_in 0 82663 station_ip 5.120.167.223 82663 port 15 82663 unique_id port 82664 username forozande 82664 unique_id port 82664 terminate_cause User-Request 82664 bytes_out 48131 82664 bytes_in 215654 82664 station_ip 37.129.114.45 82664 port 15728648 82664 nas_port_type Virtual 82664 remote_ip 5.5.5.248 82665 username madadi 82665 unique_id port 82665 terminate_cause User-Request 82665 bytes_out 153461 82665 bytes_in 370208 82665 station_ip 5.120.170.201 82665 port 15728646 82665 nas_port_type Virtual 82665 remote_ip 5.5.5.250 82673 username ahmadipour 82673 unique_id port 82673 terminate_cause Lost-Carrier 82673 bytes_out 776921 82673 bytes_in 13157899 82673 station_ip 83.123.233.186 82673 port 15728654 82673 nas_port_type Virtual 82673 remote_ip 5.5.5.244 82677 username zamanialireza 82677 unique_id port 82677 terminate_cause Lost-Carrier 82677 bytes_out 184754 82677 bytes_in 1907329 82677 station_ip 5.120.152.123 82677 port 15728658 82677 nas_port_type Virtual 82677 remote_ip 5.5.5.241 82680 username forozande 82680 unique_id port 82680 terminate_cause User-Request 82680 bytes_out 15533 82680 bytes_in 28687 82680 station_ip 83.123.216.47 82680 port 15728666 82680 nas_port_type Virtual 82680 remote_ip 5.5.5.236 82682 username zamanialireza 82682 unique_id port 82682 terminate_cause User-Request 82682 bytes_out 246854 82682 bytes_in 5437824 82682 station_ip 37.129.30.189 82682 port 15728668 82682 nas_port_type Virtual 82682 remote_ip 5.5.5.233 82694 username heydari 82694 unique_id port 82694 terminate_cause Lost-Carrier 82694 bytes_out 27316 82694 bytes_in 172036 82694 station_ip 5.119.215.115 82694 port 15728676 82694 nas_port_type Virtual 82694 remote_ip 5.5.5.227 82695 username asadi 82695 unique_id port 82695 terminate_cause User-Request 82695 bytes_out 76920 82695 bytes_in 568223 82695 station_ip 37.129.244.178 82695 port 15728679 82695 nas_port_type Virtual 82695 remote_ip 5.5.5.245 82696 username ahmadi 82696 unique_id port 82696 terminate_cause User-Request 82696 bytes_out 19918 82696 bytes_in 188341 82696 station_ip 83.122.95.137 82696 port 15728683 82696 nas_port_type Virtual 82696 remote_ip 5.5.5.232 82698 username caferibar 82698 unique_id port 82698 terminate_cause Lost-Carrier 82698 bytes_out 160413 82698 bytes_in 320203 82698 station_ip 5.120.55.235 82698 port 15728680 82698 nas_port_type Virtual 82698 remote_ip 5.5.5.225 82699 username forozande 82699 unique_id port 82699 terminate_cause User-Request 82699 bytes_out 64594 82699 bytes_in 376009 82699 station_ip 37.129.113.213 82699 port 15728684 82699 nas_port_type Virtual 82699 remote_ip 5.5.5.222 82700 username forozande 82700 unique_id port 82700 terminate_cause User-Request 82656 username heydari 82656 unique_id port 82656 terminate_cause Admin-Reboot 82656 bytes_out 160687651 82656 bytes_in 27352679 82656 station_ip 5.119.7.146 82656 port 15728933 82656 nas_port_type Virtual 82656 remote_ip 5.5.5.125 82660 username soleymani 82660 unique_id port 82660 terminate_cause Lost-Carrier 82660 bytes_out 111336 82660 bytes_in 331586 82660 station_ip 5.125.110.21 82660 port 15728644 82660 nas_port_type Virtual 82660 remote_ip 5.5.5.252 82667 username asadi 82667 unique_id port 82667 terminate_cause User-Request 82667 bytes_out 148689 82667 bytes_in 2348059 82667 station_ip 37.129.244.178 82667 port 15728652 82667 nas_port_type Virtual 82667 remote_ip 5.5.5.245 82668 username aminvpn 82668 unique_id port 82668 terminate_cause Lost-Carrier 82668 bytes_out 4072698 82668 bytes_in 49281425 82668 station_ip 5.120.167.223 82668 port 15728650 82668 nas_port_type Virtual 82668 remote_ip 5.5.5.246 82671 username heydari 82671 unique_id port 82671 terminate_cause Lost-Carrier 82671 bytes_out 91169 82671 bytes_in 531010 82671 station_ip 5.120.181.187 82671 port 15728647 82671 nas_port_type Virtual 82671 remote_ip 5.5.5.249 82674 username aminvpn 82674 unique_id port 82674 terminate_cause User-Request 82674 bytes_out 207419 82674 bytes_in 5958765 82674 station_ip 113.203.74.77 82674 port 15728657 82674 nas_port_type Virtual 82674 remote_ip 5.5.5.243 82675 username asadi 82675 unique_id port 82675 terminate_cause User-Request 82675 bytes_out 50784 82675 bytes_in 240646 82675 station_ip 37.129.244.178 82675 port 15728661 82675 nas_port_type Virtual 82675 remote_ip 5.5.5.245 82679 username zamanialireza 82679 unique_id port 82679 terminate_cause Lost-Carrier 82679 bytes_out 600258 82679 bytes_in 13353593 82679 station_ip 5.120.152.123 82679 port 15728659 82679 nas_port_type Virtual 82679 remote_ip 5.5.5.240 82683 username madadi 82683 unique_id port 82683 terminate_cause Lost-Carrier 82683 bytes_out 9511 82683 bytes_in 123452 82683 station_ip 5.120.188.154 82683 port 15728663 82683 nas_port_type Virtual 82683 remote_ip 5.5.5.237 82690 username caferibar 82690 unique_id port 82690 terminate_cause Lost-Carrier 82690 bytes_out 35710 82690 bytes_in 219121 82690 station_ip 5.120.143.32 82690 port 15728674 82690 nas_port_type Virtual 82690 remote_ip 5.5.5.229 82691 username madadi 82691 unique_id port 82691 terminate_cause User-Request 82691 bytes_out 444435 82691 bytes_in 945389 82691 station_ip 5.119.39.227 82691 port 15728667 82691 nas_port_type Virtual 82691 remote_ip 5.5.5.234 82692 username aminvpn 82692 unique_id port 82692 terminate_cause User-Request 82692 bytes_out 87484 82692 bytes_in 172908 82692 station_ip 113.203.74.77 82692 port 15728677 82692 nas_port_type Virtual 82692 remote_ip 5.5.5.243 82693 username caferibar 82693 unique_id port 82693 terminate_cause User-Request 82693 bytes_out 0 82693 bytes_in 0 82693 station_ip 5.120.95.247 82693 port 15728678 82693 nas_port_type Virtual 82693 remote_ip 5.5.5.226 82697 username amirabbas 82697 unique_id port 82697 terminate_cause User-Request 82697 bytes_out 8787582 82697 bytes_in 234146294 82697 station_ip 151.238.245.74 82697 port 15728660 82697 nas_port_type Virtual 82697 remote_ip 5.5.5.239 82703 username pouria 82703 unique_id port 82703 terminate_cause Lost-Carrier 82703 bytes_out 221140 82703 bytes_in 1747087 82703 station_ip 151.235.109.97 82703 port 15728685 82703 nas_port_type Virtual 82703 remote_ip 5.5.5.221 82705 username zamanialireza 82705 unique_id port 82705 terminate_cause User-Request 82705 bytes_out 235645 82705 bytes_in 2480777 82705 station_ip 37.129.74.13 82705 port 15728690 82662 username alinezhad 82662 unique_id port 82662 terminate_cause User-Request 82662 bytes_out 0 82662 bytes_in 0 82662 station_ip 5.202.19.26 82662 port 15728645 82662 nas_port_type Virtual 82662 remote_ip 5.5.5.251 82669 username asadi 82669 unique_id port 82669 terminate_cause User-Request 82669 bytes_out 49914 82669 bytes_in 132952 82669 station_ip 37.129.244.178 82669 port 15728653 82669 nas_port_type Virtual 82669 remote_ip 5.5.5.245 82670 username madadi 82670 unique_id port 82670 terminate_cause Lost-Carrier 82670 bytes_out 214186 82670 bytes_in 381080 82670 station_ip 5.120.170.201 82670 port 15728651 82670 nas_port_type Virtual 82670 remote_ip 5.5.5.250 82676 username madadi 82676 unique_id port 82676 terminate_cause Lost-Carrier 82676 bytes_out 81843 82676 bytes_in 245147 82676 station_ip 5.119.148.87 82676 port 15728656 82676 nas_port_type Virtual 82676 remote_ip 5.5.5.242 82684 username ahmadi 82684 unique_id port 82684 terminate_cause User-Request 82684 bytes_out 0 82684 bytes_in 0 82684 station_ip 83.122.95.137 82684 port 15728669 82684 nas_port_type Virtual 82684 remote_ip 5.5.5.232 82686 username forozande 82686 unique_id port 82686 terminate_cause User-Request 82686 bytes_out 17357 82686 bytes_in 128532 82686 station_ip 83.123.216.47 82686 port 15728671 82686 nas_port_type Virtual 82686 remote_ip 5.5.5.236 82689 username caferibar 82689 unique_id port 82689 terminate_cause Lost-Carrier 82689 bytes_out 817263 82689 bytes_in 9551623 82689 station_ip 5.119.100.40 82689 port 15728672 82689 nas_port_type Virtual 82689 remote_ip 5.5.5.231 82702 username arman 82702 unique_id port 82702 terminate_cause Lost-Carrier 82702 bytes_out 14895354 82702 bytes_in 137892114 82702 station_ip 5.120.172.174 82702 port 15728640 82702 nas_port_type Virtual 82702 remote_ip 5.5.5.255 82712 username forozande 82712 unique_id port 82712 terminate_cause User-Request 82712 bytes_out 59881 82712 bytes_in 303507 82712 station_ip 83.123.215.133 82712 port 15728699 82712 nas_port_type Virtual 82712 remote_ip 5.5.5.214 82721 username heydari 82721 unique_id port 82721 terminate_cause Lost-Carrier 82721 bytes_out 557335 82721 bytes_in 2311109 82721 station_ip 5.119.162.121 82721 port 15728681 82721 nas_port_type Virtual 82721 remote_ip 5.5.5.224 82724 username caferibar 82724 unique_id port 82724 terminate_cause User-Request 82724 bytes_out 133868 82724 bytes_in 499592 82724 station_ip 113.203.10.92 82724 port 15728709 82724 nas_port_type Virtual 82724 remote_ip 5.5.5.208 82734 username mobina 82734 kill_reason Relative expiration date has reached 82734 unique_id port 82734 bytes_out 0 82734 bytes_in 0 82734 station_ip 5.122.142.133 82734 port 15728717 82734 nas_port_type Virtual 82747 username zamanialireza 82747 unique_id port 82747 terminate_cause Lost-Carrier 82747 bytes_out 5783775 82747 bytes_in 172570507 82747 station_ip 5.160.115.139 82747 port 15728730 82747 nas_port_type Virtual 82747 remote_ip 5.5.5.205 82752 username alirezazamani 82752 kill_reason Relative expiration date has reached 82752 unique_id port 82752 bytes_out 0 82752 bytes_in 0 82752 station_ip 37.27.13.104 82752 port 15728741 82752 nas_port_type Virtual 82755 username alirezazamani 82755 kill_reason Relative expiration date has reached 82755 unique_id port 82755 bytes_out 0 82755 bytes_in 0 82755 station_ip 37.27.13.104 82755 port 15728744 82755 nas_port_type Virtual 82757 username amirhosein 82757 unique_id port 82757 terminate_cause Lost-Carrier 82757 bytes_out 5503922 82757 bytes_in 6023057 82757 station_ip 5.120.140.147 82757 port 15728738 82757 nas_port_type Virtual 82757 remote_ip 5.5.5.194 82758 username heydari 82678 terminate_cause User-Request 82678 bytes_out 25360 82678 bytes_in 82535 82678 station_ip 83.123.216.47 82678 port 15728664 82678 nas_port_type Virtual 82678 remote_ip 5.5.5.236 82681 username zamanialireza 82681 unique_id port 82681 terminate_cause User-Request 82681 bytes_out 4521116 82681 bytes_in 97323405 82681 station_ip 5.120.152.123 82681 port 15728662 82681 nas_port_type Virtual 82681 remote_ip 5.5.5.238 82685 username forozande 82685 unique_id port 82685 terminate_cause User-Request 82685 bytes_out 467483 82685 bytes_in 294095 82685 station_ip 83.123.216.47 82685 port 15728670 82685 nas_port_type Virtual 82685 remote_ip 5.5.5.236 82687 username caferibar 82687 unique_id port 82687 terminate_cause Lost-Carrier 82687 bytes_out 557100 82687 bytes_in 5950399 82687 station_ip 5.119.251.65 82687 port 15728665 82687 nas_port_type Virtual 82687 remote_ip 5.5.5.235 82688 username mahbobeh 82688 unique_id port 82688 terminate_cause Lost-Carrier 82688 bytes_out 799598 82688 bytes_in 15539189 82688 station_ip 113.203.125.28 82688 port 15728673 82688 nas_port_type Virtual 82688 remote_ip 5.5.5.230 82701 username madadi 82701 unique_id port 82701 terminate_cause Lost-Carrier 82701 bytes_out 14992 82701 bytes_in 133043 82701 station_ip 5.119.199.192 82701 port 15728682 82701 nas_port_type Virtual 82701 remote_ip 5.5.5.223 82704 username asadi 82704 unique_id port 82704 terminate_cause User-Request 82704 bytes_out 93256 82704 bytes_in 1241091 82704 station_ip 37.129.245.2 82704 port 15728689 82704 nas_port_type Virtual 82704 remote_ip 5.5.5.218 82710 username aminvpn 82710 unique_id port 82710 terminate_cause User-Request 82710 bytes_out 45530 82710 bytes_in 94617 82710 station_ip 113.203.74.77 82710 port 15728697 82710 nas_port_type Virtual 82710 remote_ip 5.5.5.243 82713 username pouria 82713 unique_id port 82713 terminate_cause Lost-Carrier 82713 bytes_out 18783238 82713 bytes_in 779191390 82713 station_ip 5.119.139.241 82713 port 15728687 82713 nas_port_type Virtual 82713 remote_ip 5.5.5.220 82714 username asadi 82714 unique_id port 82714 terminate_cause User-Request 82714 bytes_out 4191 82714 bytes_in 16950 82714 station_ip 37.129.245.2 82714 port 15728701 82714 nas_port_type Virtual 82714 remote_ip 5.5.5.218 82716 username forozande 82716 unique_id port 82716 terminate_cause User-Request 82716 bytes_out 33337 82716 bytes_in 127748 82716 station_ip 83.123.215.133 82716 port 15728702 82716 nas_port_type Virtual 82716 remote_ip 5.5.5.214 82718 username zamanialireza 82718 unique_id port 82718 terminate_cause User-Request 82718 bytes_out 9875993 82718 bytes_in 53585891 82718 station_ip 37.129.37.227 82718 port 15728700 82718 nas_port_type Virtual 82718 remote_ip 5.5.5.213 82735 username caferibar 82735 unique_id port 82735 terminate_cause User-Request 82735 bytes_out 193176 82735 bytes_in 4685840 82735 station_ip 113.203.36.134 82735 port 15728718 82735 nas_port_type Virtual 82735 remote_ip 5.5.5.204 82737 username caferibar 82737 unique_id port 82737 terminate_cause User-Request 82737 bytes_out 45790 82737 bytes_in 73385 82737 station_ip 113.203.36.134 82737 port 15728720 82737 nas_port_type Virtual 82737 remote_ip 5.5.5.204 82738 username ksrkrgr 82738 unique_id port 82738 terminate_cause User-Request 82738 bytes_out 93935 82738 bytes_in 133188 82738 station_ip 83.123.225.164 82738 port 15728721 82738 nas_port_type Virtual 82738 remote_ip 5.5.5.203 82740 username ahmadipour 82740 unique_id port 82740 terminate_cause Lost-Carrier 82740 bytes_out 1293726 82740 bytes_in 28568190 82740 station_ip 83.123.248.174 82740 port 15728722 82740 nas_port_type Virtual 82740 remote_ip 5.5.5.202 82700 bytes_out 495627 82700 bytes_in 95966 82700 station_ip 37.129.113.213 82700 port 15728686 82700 nas_port_type Virtual 82700 remote_ip 5.5.5.222 82706 username hamideh 82706 unique_id port 82706 terminate_cause Lost-Carrier 82706 bytes_out 7361723 82706 bytes_in 215907847 82706 station_ip 5.120.35.116 82706 port 15728675 82706 nas_port_type Virtual 82706 remote_ip 5.5.5.228 82707 username caferibar 82707 unique_id port 82707 terminate_cause User-Request 82707 bytes_out 981972 82707 bytes_in 12724555 82707 station_ip 5.119.26.28 82707 port 15728688 82707 nas_port_type Virtual 82707 remote_ip 5.5.5.219 82715 username madadi 82715 unique_id port 82715 terminate_cause Lost-Carrier 82715 bytes_out 198448 82715 bytes_in 595154 82715 station_ip 5.119.135.68 82715 port 15728693 82715 nas_port_type Virtual 82715 remote_ip 5.5.5.215 82720 username madadi 82720 unique_id port 82720 terminate_cause Lost-Carrier 82720 bytes_out 49676 82720 bytes_in 309643 82720 station_ip 5.119.1.45 82720 port 15728703 82720 nas_port_type Virtual 82720 remote_ip 5.5.5.212 82722 username forozande 82722 unique_id port 82722 terminate_cause User-Request 82722 bytes_out 154050 82722 bytes_in 44439 82722 station_ip 83.123.22.232 82722 port 15728706 82722 nas_port_type Virtual 82722 remote_ip 5.5.5.211 82725 username alinezhad 82725 unique_id port 82725 terminate_cause User-Request 82725 bytes_out 0 82725 bytes_in 0 82725 station_ip 5.202.19.26 82725 port 15728710 82725 nas_port_type Virtual 82725 remote_ip 5.5.5.251 82727 username caferibar 82727 unique_id port 82727 terminate_cause User-Request 82727 bytes_out 49503 82727 bytes_in 135863 82727 station_ip 37.129.42.124 82727 port 15728712 82727 nas_port_type Virtual 82727 remote_ip 5.5.5.207 82729 username aminvpn 82729 unique_id port 82729 terminate_cause User-Request 82729 bytes_out 57384 82729 bytes_in 700785 82729 station_ip 113.203.74.77 82729 port 15728714 82729 nas_port_type Virtual 82729 remote_ip 5.5.5.243 82733 username zamanialireza 82733 unique_id port 82733 terminate_cause User-Request 82733 bytes_out 0 82733 bytes_in 0 82733 station_ip 5.160.115.139 82733 port 15728716 82733 nas_port_type Virtual 82733 remote_ip 5.5.5.205 82741 username ksrkrgr 82741 unique_id port 82741 terminate_cause User-Request 82741 bytes_out 72819 82741 bytes_in 89332 82741 station_ip 83.123.225.164 82741 port 15728724 82741 nas_port_type Virtual 82741 remote_ip 5.5.5.203 82746 username alinezhad 82746 unique_id port 82746 terminate_cause User-Request 82746 bytes_out 109897 82746 bytes_in 728961 82746 station_ip 5.202.19.26 82746 port 15728728 82746 nas_port_type Virtual 82746 remote_ip 5.5.5.251 82748 username caferibar 82748 unique_id port 82748 terminate_cause User-Request 82748 bytes_out 133607 82748 bytes_in 368572 82748 station_ip 113.203.127.0 82748 port 15728735 82748 nas_port_type Virtual 82748 remote_ip 5.5.5.197 82754 username alirezazamani 82754 kill_reason Relative expiration date has reached 82754 unique_id port 82754 bytes_out 0 82754 bytes_in 0 82754 station_ip 37.27.13.104 82754 port 15728743 82754 nas_port_type Virtual 82756 username amin.insta01 82756 unique_id port 82756 terminate_cause Lost-Carrier 82756 bytes_out 1758579 82756 bytes_in 34036543 82756 station_ip 5.119.24.161 82756 port 15728736 82756 nas_port_type Virtual 82756 remote_ip 5.5.5.196 82761 username heydari 82761 unique_id port 82761 terminate_cause User-Request 82761 bytes_out 0 82761 bytes_in 0 82761 station_ip 83.123.206.77 82761 port 15728753 82761 nas_port_type Virtual 82761 remote_ip 5.5.5.192 82767 username farhad 82767 unique_id port 82767 terminate_cause Lost-Carrier 82705 nas_port_type Virtual 82705 remote_ip 5.5.5.217 82708 username asadi 82708 unique_id port 82708 terminate_cause User-Request 82708 bytes_out 5613 82708 bytes_in 18276 82708 station_ip 37.129.245.2 82708 port 15728695 82708 nas_port_type Virtual 82708 remote_ip 5.5.5.218 82709 username caferibar 82709 unique_id port 82709 terminate_cause Lost-Carrier 82709 bytes_out 38437 82709 bytes_in 234169 82709 station_ip 5.119.26.28 82709 port 15728696 82709 nas_port_type Virtual 82709 remote_ip 5.5.5.219 82711 username alinezhad 82711 unique_id port 82711 terminate_cause User-Request 82711 bytes_out 0 82711 bytes_in 0 82711 station_ip 5.202.19.26 82711 port 15728698 82711 nas_port_type Virtual 82711 remote_ip 5.5.5.251 82717 username alinezhad 82717 unique_id port 82717 terminate_cause User-Request 82717 bytes_out 0 82717 bytes_in 0 82717 station_ip 5.202.19.26 82717 port 15728704 82717 nas_port_type Virtual 82717 remote_ip 5.5.5.251 82719 username forozande 82719 unique_id port 82719 terminate_cause User-Request 82719 bytes_out 108709 82719 bytes_in 1206741 82719 station_ip 83.123.22.232 82719 port 15728705 82719 nas_port_type Virtual 82719 remote_ip 5.5.5.211 82723 username forozande 82723 unique_id port 82723 terminate_cause User-Request 82723 bytes_out 25540 82723 bytes_in 71473 82723 station_ip 37.129.32.191 82723 port 15728708 82723 nas_port_type Virtual 82723 remote_ip 5.5.5.209 82726 username asadi 82726 unique_id port 82726 terminate_cause User-Request 82726 bytes_out 68998 82726 bytes_in 1296667 82726 station_ip 37.129.245.2 82726 port 15728711 82726 nas_port_type Virtual 82726 remote_ip 5.5.5.218 82728 username caferibar 82728 unique_id port 82728 terminate_cause User-Request 82728 bytes_out 177429 82728 bytes_in 5282320 82728 station_ip 37.129.42.124 82728 port 15728713 82728 nas_port_type Virtual 82728 remote_ip 5.5.5.207 82730 username forozande 82730 unique_id port 82730 terminate_cause User-Request 82730 bytes_out 33861 82730 bytes_in 166138 82730 station_ip 113.203.104.51 82730 port 15728715 82730 nas_port_type Virtual 82730 remote_ip 5.5.5.206 82731 username amirabbas 82731 unique_id port 82731 terminate_cause User-Request 82731 bytes_out 19596129 82731 bytes_in 516553822 82731 station_ip 151.238.245.74 82731 port 15728692 82731 nas_port_type Virtual 82731 remote_ip 5.5.5.239 82732 username madadi 82732 unique_id port 82732 terminate_cause Lost-Carrier 82732 bytes_out 710791 82732 bytes_in 5019353 82732 station_ip 5.120.42.15 82732 port 15728707 82732 nas_port_type Virtual 82732 remote_ip 5.5.5.210 82736 username caferibar 82736 unique_id port 82736 terminate_cause User-Request 82736 bytes_out 58366 82736 bytes_in 508014 82736 station_ip 113.203.36.134 82736 port 15728719 82736 nas_port_type Virtual 82736 remote_ip 5.5.5.204 82739 username forozande 82739 unique_id port 82739 terminate_cause User-Request 82739 bytes_out 66053 82739 bytes_in 193705 82739 station_ip 37.129.186.220 82739 port 15728723 82739 nas_port_type Virtual 82739 remote_ip 5.5.5.201 82743 username ahmadi 82743 unique_id port 82743 terminate_cause User-Request 82743 bytes_out 34197 82743 bytes_in 250492 82743 station_ip 83.122.95.137 82743 port 15728729 82743 nas_port_type Virtual 82743 remote_ip 5.5.5.232 82744 username mahbobeh 82744 unique_id port 82744 terminate_cause Lost-Carrier 82744 bytes_out 1309436 82744 bytes_in 18506199 82744 station_ip 113.203.125.28 82744 port 15728694 82744 nas_port_type Virtual 82744 remote_ip 5.5.5.230 82745 username forozande 82745 unique_id port 82745 terminate_cause User-Request 82745 bytes_out 181301 82745 bytes_in 833950 82745 station_ip 83.123.219.66 82742 username caferibar 82742 unique_id port 82742 terminate_cause User-Request 82742 bytes_out 185590 82742 bytes_in 611856 82742 station_ip 37.129.99.146 82742 port 15728727 82742 nas_port_type Virtual 82742 remote_ip 5.5.5.199 82751 username alirezazamani 82751 kill_reason Relative expiration date has reached 82751 unique_id port 82751 bytes_out 0 82751 bytes_in 0 82751 station_ip 37.27.13.104 82751 port 15728740 82751 nas_port_type Virtual 82762 username heydari 82762 unique_id port 82762 terminate_cause User-Request 82762 bytes_out 0 82762 bytes_in 0 82762 station_ip 83.123.206.77 82762 port 15728754 82762 nas_port_type Virtual 82762 remote_ip 5.5.5.192 82763 username heydari 82763 unique_id port 82763 terminate_cause User-Request 82763 bytes_out 0 82763 bytes_in 0 82763 station_ip 83.123.206.77 82763 port 15728755 82763 nas_port_type Virtual 82763 remote_ip 5.5.5.192 82780 username ahmadipour 82780 unique_id port 82780 terminate_cause Lost-Carrier 82780 bytes_out 100450 82780 bytes_in 511235 82780 station_ip 83.123.136.150 82780 port 15728769 82780 nas_port_type Virtual 82780 remote_ip 5.5.5.185 82782 username farhad 82782 unique_id port 82782 terminate_cause User-Request 82782 bytes_out 0 82782 bytes_in 0 82782 station_ip 5.119.232.118 82782 port 15728770 82782 nas_port_type Virtual 82782 remote_ip 5.5.5.188 82788 username aminvpn 82788 unique_id port 82788 terminate_cause User-Request 82788 bytes_out 4821322 82788 bytes_in 55367610 82788 station_ip 5.233.72.32 82788 port 15728768 82788 nas_port_type Virtual 82788 remote_ip 5.5.5.191 82790 username amirhosein 82790 unique_id port 82790 terminate_cause Lost-Carrier 82790 bytes_out 254 82790 bytes_in 122528 82790 station_ip 5.119.87.130 82790 port 15728774 82790 nas_port_type Virtual 82790 remote_ip 5.5.5.183 82792 username alinezhad 82792 unique_id port 82792 terminate_cause Lost-Carrier 82792 bytes_out 39376 82792 bytes_in 218971 82792 station_ip 5.202.19.26 82792 port 15728778 82792 nas_port_type Virtual 82792 remote_ip 5.5.5.251 82804 username madadi 82804 unique_id port 82804 terminate_cause Lost-Carrier 82804 bytes_out 824650 82804 bytes_in 1579356 82804 station_ip 5.120.67.75 82804 port 15728782 82804 nas_port_type Virtual 82804 remote_ip 5.5.5.179 82818 username madadi 82818 unique_id port 82818 terminate_cause Lost-Carrier 82818 bytes_out 15212 82818 bytes_in 223239 82818 station_ip 5.120.73.60 82818 port 15728808 82818 nas_port_type Virtual 82818 remote_ip 5.5.5.164 82825 username alinezhad 82825 unique_id port 82825 terminate_cause User-Request 82825 bytes_out 8093 82825 bytes_in 15755 82825 station_ip 83.123.208.122 82825 port 15728816 82825 nas_port_type Virtual 82825 remote_ip 5.5.5.160 82828 username alinezhad 82828 unique_id port 82828 terminate_cause User-Request 82828 bytes_out 0 82828 bytes_in 0 82828 station_ip 37.129.15.229 82828 port 15728817 82828 nas_port_type Virtual 82828 remote_ip 5.5.5.159 82832 username soleymani 82832 unique_id port 82832 terminate_cause Lost-Carrier 82832 bytes_out 92028 82832 bytes_in 969365 82832 station_ip 5.126.164.21 82832 port 15728823 82832 nas_port_type Virtual 82832 remote_ip 5.5.5.157 82837 username madadi 82837 unique_id port 82837 terminate_cause Lost-Carrier 82837 bytes_out 21377 82837 bytes_in 154251 82837 station_ip 5.120.26.118 82837 port 15728830 82837 nas_port_type Virtual 82837 remote_ip 5.5.5.154 82838 username forozande 82838 unique_id port 82838 terminate_cause User-Request 82838 bytes_out 24953 82838 bytes_in 89386 82838 station_ip 37.129.112.236 82838 port 15728832 82838 nas_port_type Virtual 82838 remote_ip 5.5.5.152 82841 username aminvpn 82745 port 15728734 82745 nas_port_type Virtual 82745 remote_ip 5.5.5.198 82749 username amirabbas 82749 unique_id port 82749 terminate_cause User-Request 82749 bytes_out 11643072 82749 bytes_in 320592294 82749 station_ip 151.238.245.74 82749 port 15728726 82749 nas_port_type Virtual 82749 remote_ip 5.5.5.239 82750 username alirezazamani 82750 kill_reason Relative expiration date has reached 82750 unique_id port 82750 bytes_out 0 82750 bytes_in 0 82750 station_ip 37.27.13.104 82750 port 15728739 82750 nas_port_type Virtual 82753 username alirezazamani 82753 kill_reason Relative expiration date has reached 82753 unique_id port 82753 bytes_out 0 82753 bytes_in 0 82753 station_ip 37.27.13.104 82753 port 15728742 82753 nas_port_type Virtual 82759 username heydari 82759 unique_id port 82759 terminate_cause User-Request 82759 bytes_out 52609 82759 bytes_in 136693 82759 station_ip 83.123.206.77 82759 port 15728750 82759 nas_port_type Virtual 82759 remote_ip 5.5.5.192 82764 username heydari 82764 unique_id port 82764 terminate_cause User-Request 82764 bytes_out 0 82764 bytes_in 0 82764 station_ip 83.123.206.77 82764 port 15728756 82764 nas_port_type Virtual 82764 remote_ip 5.5.5.192 82766 username alinezhad 82766 unique_id port 82766 terminate_cause User-Request 82766 bytes_out 256035 82766 bytes_in 1185940 82766 station_ip 5.202.19.26 82766 port 15728747 82766 nas_port_type Virtual 82766 remote_ip 5.5.5.251 82773 username zamanialireza 82773 unique_id port 82773 terminate_cause User-Request 82773 bytes_out 36475132 82773 bytes_in 685023485 82773 station_ip 5.62.213.13 82773 port 15728745 82773 nas_port_type Virtual 82773 remote_ip 5.5.5.193 82774 username alinezhad 82774 unique_id port 82774 terminate_cause User-Request 82774 bytes_out 42835 82774 bytes_in 103228 82774 station_ip 5.202.19.26 82774 port 15728764 82774 nas_port_type Virtual 82774 remote_ip 5.5.5.251 82777 username asadi 82777 unique_id port 82777 terminate_cause User-Request 82777 bytes_out 384650 82777 bytes_in 11244059 82777 station_ip 37.129.245.2 82777 port 15728766 82777 nas_port_type Virtual 82777 remote_ip 5.5.5.218 82783 username farhad 82783 unique_id port 82783 terminate_cause User-Request 82783 bytes_out 0 82783 bytes_in 0 82783 station_ip 5.120.142.163 82783 port 15728771 82783 nas_port_type Virtual 82783 remote_ip 5.5.5.184 82786 username forozande 82786 unique_id port 82786 terminate_cause User-Request 82786 bytes_out 0 82786 bytes_in 0 82786 station_ip 83.123.165.197 82786 port 15728775 82786 nas_port_type Virtual 82786 remote_ip 5.5.5.182 82791 username zamanialireza 82791 unique_id port 82791 terminate_cause User-Request 82791 bytes_out 0 82791 bytes_in 0 82791 station_ip 37.129.74.13 82791 port 15728780 82791 nas_port_type Virtual 82791 remote_ip 5.5.5.217 82793 username amirabbas 82793 unique_id port 82793 terminate_cause User-Request 82793 bytes_out 3835600 82793 bytes_in 87636359 82793 station_ip 151.238.245.74 82793 port 15728779 82793 nas_port_type Virtual 82793 remote_ip 5.5.5.239 82796 username alinezhad 82796 unique_id port 82796 terminate_cause User-Request 82796 bytes_out 19403 82796 bytes_in 68766 82796 station_ip 37.129.158.120 82796 port 15728790 82796 nas_port_type Virtual 82796 remote_ip 5.5.5.177 82798 username farhad 82798 unique_id port 82798 terminate_cause Lost-Carrier 82798 bytes_out 5263854 82798 bytes_in 27389746 82798 station_ip 5.120.142.163 82798 port 15728773 82798 nas_port_type Virtual 82798 remote_ip 5.5.5.184 82805 username asadi 82805 unique_id port 82805 terminate_cause User-Request 82805 bytes_out 48555 82805 bytes_in 214202 82805 station_ip 37.129.245.2 82805 port 15728797 82758 unique_id port 82758 terminate_cause User-Request 82758 bytes_out 0 82758 bytes_in 0 82758 station_ip 83.123.206.77 82758 port 15728749 82758 nas_port_type Virtual 82758 remote_ip 5.5.5.192 82760 username heydari 82760 unique_id port 82760 terminate_cause User-Request 82760 bytes_out 0 82760 bytes_in 0 82760 station_ip 83.123.206.77 82760 port 15728752 82760 nas_port_type Virtual 82760 remote_ip 5.5.5.192 82765 username amin.insta01 82765 unique_id port 82765 terminate_cause Lost-Carrier 82765 bytes_out 149304 82765 bytes_in 1674745 82765 station_ip 5.119.24.161 82765 port 15728751 82765 nas_port_type Virtual 82765 remote_ip 5.5.5.196 82768 username aminvpn 82768 unique_id port 82768 terminate_cause User-Request 82768 bytes_out 0 82768 bytes_in 0 82768 station_ip 83.123.251.21 82768 port 15728759 82768 nas_port_type Virtual 82768 remote_ip 5.5.5.189 82771 username alirezazamani 82771 kill_reason Relative expiration date has reached 82771 unique_id port 82771 bytes_out 0 82771 bytes_in 0 82771 station_ip 37.129.64.115 82771 port 15728762 82771 nas_port_type Virtual 82775 username aminvpn 82775 unique_id port 82775 terminate_cause Lost-Carrier 82775 bytes_out 2693706 82775 bytes_in 36271359 82775 station_ip 5.233.72.32 82775 port 15728757 82775 nas_port_type Virtual 82775 remote_ip 5.5.5.191 82778 username reza 82778 unique_id port 82778 terminate_cause User-Request 82778 bytes_out 81742 82778 bytes_in 2168441 82778 station_ip 37.129.210.76 82778 port 15728765 82778 nas_port_type Virtual 82778 remote_ip 5.5.5.186 82794 username alinezhad 82794 unique_id port 82794 terminate_cause User-Request 82794 bytes_out 56537 82794 bytes_in 51550 82794 station_ip 37.129.158.120 82794 port 15728788 82794 nas_port_type Virtual 82794 remote_ip 5.5.5.177 82801 username sobhan 82801 unique_id port 82801 terminate_cause User-Request 82801 bytes_out 5847129 82801 bytes_in 197134199 82801 station_ip 5.119.230.220 82801 port 15728781 82801 nas_port_type Virtual 82801 remote_ip 5.5.5.180 82809 username alinezhad 82809 unique_id port 82809 terminate_cause User-Request 82809 bytes_out 0 82809 bytes_in 0 82809 station_ip 83.122.164.187 82809 port 15728802 82809 nas_port_type Virtual 82809 remote_ip 5.5.5.168 82811 username amirabbas 82811 unique_id port 82811 terminate_cause User-Request 82811 bytes_out 1849138 82811 bytes_in 43077142 82811 station_ip 151.238.245.74 82811 port 15728792 82811 nas_port_type Virtual 82811 remote_ip 5.5.5.239 82814 username soleymani 82814 unique_id port 82814 terminate_cause Lost-Carrier 82814 bytes_out 141892 82814 bytes_in 436966 82814 station_ip 5.126.243.127 82814 port 15728801 82814 nas_port_type Virtual 82814 remote_ip 5.5.5.169 82816 username alinezhad 82816 unique_id port 82816 terminate_cause User-Request 82816 bytes_out 0 82816 bytes_in 0 82816 station_ip 83.123.178.133 82816 port 15728807 82816 nas_port_type Virtual 82816 remote_ip 5.5.5.165 82817 username asadi 82817 unique_id port 82817 terminate_cause User-Request 82817 bytes_out 115189 82817 bytes_in 2816631 82817 station_ip 37.129.245.2 82817 port 15728809 82817 nas_port_type Virtual 82817 remote_ip 5.5.5.218 82821 username ahmadi 82821 unique_id port 82821 terminate_cause User-Request 82821 bytes_out 18280 82821 bytes_in 114843 82821 station_ip 83.122.53.145 82821 port 15728812 82821 nas_port_type Virtual 82821 remote_ip 5.5.5.162 82823 username alinezhad 82823 unique_id port 82823 terminate_cause User-Request 82823 bytes_out 12378 82823 bytes_in 19051 82823 station_ip 83.123.223.11 82823 port 15728814 82823 nas_port_type Virtual 82823 remote_ip 5.5.5.163 82826 username aminvpn 82767 bytes_out 9664851 82767 bytes_in 225022950 82767 station_ip 5.119.232.214 82767 port 15728737 82767 nas_port_type Virtual 82767 remote_ip 5.5.5.195 82769 username madadi 82769 unique_id port 82769 terminate_cause Lost-Carrier 82769 bytes_out 2744838 82769 bytes_in 15623867 82769 station_ip 5.120.83.8 82769 port 15728725 82769 nas_port_type Virtual 82769 remote_ip 5.5.5.200 82770 username madadi 82770 unique_id port 82770 terminate_cause Lost-Carrier 82770 bytes_out 125363 82770 bytes_in 263955 82770 station_ip 5.119.9.127 82770 port 15728758 82770 nas_port_type Virtual 82770 remote_ip 5.5.5.190 82772 username alinezhad 82772 unique_id port 82772 terminate_cause User-Request 82772 bytes_out 38793 82772 bytes_in 180721 82772 station_ip 5.202.19.26 82772 port 15728760 82772 nas_port_type Virtual 82772 remote_ip 5.5.5.251 82776 username amirabbas 82776 unique_id port 82776 terminate_cause User-Request 82776 bytes_out 19715765 82776 bytes_in 556758611 82776 station_ip 151.238.245.74 82776 port 15728748 82776 nas_port_type Virtual 82776 remote_ip 5.5.5.239 82779 username asadi 82779 unique_id port 82779 terminate_cause User-Request 82779 bytes_out 57468 82779 bytes_in 404304 82779 station_ip 37.129.245.2 82779 port 15728767 82779 nas_port_type Virtual 82779 remote_ip 5.5.5.218 82781 username farhad 82781 unique_id port 82781 terminate_cause User-Request 82781 bytes_out 10289525 82781 bytes_in 219543240 82781 station_ip 5.119.232.118 82781 port 15728761 82781 nas_port_type Virtual 82781 remote_ip 5.5.5.188 82784 username madadi 82784 unique_id port 82784 terminate_cause Lost-Carrier 82784 bytes_out 377110 82784 bytes_in 1339478 82784 station_ip 5.120.33.46 82784 port 15728763 82784 nas_port_type Virtual 82784 remote_ip 5.5.5.187 82785 username farhad 82785 unique_id port 82785 terminate_cause User-Request 82785 bytes_out 0 82785 bytes_in 0 82785 station_ip 5.120.142.163 82785 port 15728772 82785 nas_port_type Virtual 82785 remote_ip 5.5.5.184 82787 username forozande 82787 unique_id port 82787 terminate_cause User-Request 82787 bytes_out 186707 82787 bytes_in 1308808 82787 station_ip 83.123.165.197 82787 port 15728776 82787 nas_port_type Virtual 82787 remote_ip 5.5.5.182 82789 username ahmadi 82789 unique_id port 82789 terminate_cause User-Request 82789 bytes_out 22254 82789 bytes_in 115614 82789 station_ip 83.122.75.217 82789 port 15728777 82789 nas_port_type Virtual 82789 remote_ip 5.5.5.181 82795 username alinezhad 82795 unique_id port 82795 terminate_cause User-Request 82795 bytes_out 9323 82795 bytes_in 17651 82795 station_ip 37.129.158.120 82795 port 15728789 82795 nas_port_type Virtual 82795 remote_ip 5.5.5.177 82797 username amir 82797 unique_id port 82797 terminate_cause User-Request 82797 bytes_out 1623716 82797 bytes_in 31927346 82797 station_ip 46.225.232.84 82797 port 15728783 82797 nas_port_type Virtual 82797 remote_ip 5.5.5.178 82799 username amirabbas 82799 unique_id port 82799 terminate_cause User-Request 82799 bytes_out 11675907 82799 bytes_in 347269084 82799 station_ip 151.238.245.74 82799 port 15728787 82799 nas_port_type Virtual 82799 remote_ip 5.5.5.239 82800 username asadi 82800 unique_id port 82800 terminate_cause User-Request 82800 bytes_out 45554 82800 bytes_in 191459 82800 station_ip 37.129.245.2 82800 port 15728791 82800 nas_port_type Virtual 82800 remote_ip 5.5.5.218 82802 username forozande 82802 unique_id port 82802 terminate_cause User-Request 82802 bytes_out 180578 82802 bytes_in 2612243 82802 station_ip 37.129.188.144 82802 port 15728794 82802 nas_port_type Virtual 82802 remote_ip 5.5.5.175 82803 username abdilahyar 82803 unique_id port 82803 terminate_cause Lost-Carrier 82803 bytes_out 1981882 82803 bytes_in 5841136 82803 station_ip 5.120.137.160 82803 port 15728691 82803 nas_port_type Virtual 82803 remote_ip 5.5.5.216 82806 username afarin 82806 unique_id port 82806 terminate_cause Lost-Carrier 82806 bytes_out 642359 82806 bytes_in 2190028 82806 station_ip 151.238.239.155 82806 port 15728795 82806 nas_port_type Virtual 82806 remote_ip 5.5.5.174 82807 username arabpour 82807 unique_id port 82807 terminate_cause User-Request 82807 bytes_out 467140 82807 bytes_in 13506383 82807 station_ip 113.203.76.63 82807 port 15728800 82807 nas_port_type Virtual 82807 remote_ip 5.5.5.170 82812 username alinezhad 82812 unique_id port 82812 terminate_cause User-Request 82812 bytes_out 0 82812 bytes_in 0 82812 station_ip 37.129.161.192 82812 port 15728803 82812 nas_port_type Virtual 82812 remote_ip 5.5.5.167 82815 username asadi 82815 unique_id port 82815 terminate_cause User-Request 82815 bytes_out 79845 82815 bytes_in 697678 82815 station_ip 37.129.245.2 82815 port 15728806 82815 nas_port_type Virtual 82815 remote_ip 5.5.5.218 82824 username forozande 82824 unique_id port 82824 terminate_cause User-Request 82824 bytes_out 233733 82824 bytes_in 1350522 82824 station_ip 83.122.158.131 82824 port 15728815 82824 nas_port_type Virtual 82824 remote_ip 5.5.5.161 82835 username alinezhad 82835 unique_id port 82835 terminate_cause User-Request 82835 bytes_out 5601 82835 bytes_in 15729 82835 station_ip 83.122.144.41 82835 port 15728829 82835 nas_port_type Virtual 82835 remote_ip 5.5.5.155 82836 username farhad 82836 unique_id port 82836 terminate_cause Lost-Carrier 82836 bytes_out 28031434 82836 bytes_in 93650783 82836 station_ip 5.119.254.21 82836 port 15728793 82836 nas_port_type Virtual 82836 remote_ip 5.5.5.176 82843 username soleymani 82843 unique_id port 82843 terminate_cause Lost-Carrier 82843 bytes_out 29484 82843 bytes_in 175049 82843 station_ip 5.125.176.49 82843 port 15728836 82843 nas_port_type Virtual 82843 remote_ip 5.5.5.149 82844 username madadi 82844 unique_id port 82844 terminate_cause User-Request 82844 bytes_out 126019 82844 bytes_in 328564 82844 station_ip 5.120.118.167 82844 port 15728833 82844 nas_port_type Virtual 82844 remote_ip 5.5.5.151 82849 username mahdixz 82849 unique_id port 82849 terminate_cause User-Request 82849 bytes_out 1363812 82849 bytes_in 14001026 82849 station_ip 5.233.72.32 82849 port 15728843 82849 nas_port_type Virtual 82849 remote_ip 5.5.5.148 82854 username alinezhad 82854 unique_id port 82854 terminate_cause User-Request 82854 bytes_out 10555 82854 bytes_in 21338 82854 station_ip 5.202.19.80 82854 port 15728854 82854 nas_port_type Virtual 82854 remote_ip 5.5.5.146 82860 username alinezhad 82860 unique_id port 82860 terminate_cause User-Request 82860 bytes_out 131097 82860 bytes_in 730040 82860 station_ip 5.202.19.80 82860 port 15728856 82860 nas_port_type Virtual 82860 remote_ip 5.5.5.146 82861 username madadi 82861 unique_id port 82861 terminate_cause User-Request 82861 bytes_out 23367 82861 bytes_in 36562 82861 station_ip 5.119.228.215 82861 port 15728860 82861 nas_port_type Virtual 82861 remote_ip 5.5.5.139 82872 username mahbobeh 82872 unique_id port 82872 terminate_cause Lost-Carrier 82872 bytes_out 1064249 82872 bytes_in 19316977 82872 station_ip 113.203.125.28 82872 port 15728864 82872 nas_port_type Virtual 82872 remote_ip 5.5.5.230 82873 username forozande 82873 unique_id port 82873 terminate_cause User-Request 82873 bytes_out 145261 82873 bytes_in 435491 82873 station_ip 83.123.61.38 82873 port 15728871 82873 nas_port_type Virtual 82873 remote_ip 5.5.5.136 82874 username caferibar 82805 nas_port_type Virtual 82805 remote_ip 5.5.5.218 82808 username madadi 82808 unique_id port 82808 terminate_cause Lost-Carrier 82808 bytes_out 22379 82808 bytes_in 177376 82808 station_ip 5.119.222.202 82808 port 15728799 82808 nas_port_type Virtual 82808 remote_ip 5.5.5.171 82810 username soleymani 82810 unique_id port 82810 terminate_cause Lost-Carrier 82810 bytes_out 388236 82810 bytes_in 1420127 82810 station_ip 5.126.67.218 82810 port 15728798 82810 nas_port_type Virtual 82810 remote_ip 5.5.5.172 82813 username heydari 82813 unique_id port 82813 terminate_cause User-Request 82813 bytes_out 0 82813 bytes_in 0 82813 station_ip 83.123.206.77 82813 port 15728804 82813 nas_port_type Virtual 82813 remote_ip 5.5.5.192 82819 username caferibar 82819 unique_id port 82819 terminate_cause Lost-Carrier 82819 bytes_out 26725531 82819 bytes_in 469197645 82819 station_ip 5.119.251.65 82819 port 15728746 82819 nas_port_type Virtual 82819 remote_ip 5.5.5.235 82820 username alinezhad 82820 unique_id port 82820 terminate_cause User-Request 82820 bytes_out 26144 82820 bytes_in 18507 82820 station_ip 83.123.223.11 82820 port 15728811 82820 nas_port_type Virtual 82820 remote_ip 5.5.5.163 82822 username asadi 82822 unique_id port 82822 terminate_cause User-Request 82822 bytes_out 48009 82822 bytes_in 675588 82822 station_ip 37.129.245.2 82822 port 15728813 82822 nas_port_type Virtual 82822 remote_ip 5.5.5.218 82852 username farhad 82852 unique_id port 82852 terminate_cause User-Request 82852 bytes_out 0 82852 bytes_in 0 82852 station_ip 5.119.94.249 82852 port 15728851 82852 nas_port_type Virtual 82852 remote_ip 5.5.5.144 82856 username avaanna 82856 unique_id port 82856 terminate_cause User-Request 82856 bytes_out 46956 82856 bytes_in 507678 82856 station_ip 113.203.39.92 82856 port 15728857 82856 nas_port_type Virtual 82856 remote_ip 5.5.5.141 82858 username avaanna 82858 unique_id port 82858 terminate_cause User-Request 82858 bytes_out 115804 82858 bytes_in 1172106 82858 station_ip 113.203.39.92 82858 port 15728859 82858 nas_port_type Virtual 82858 remote_ip 5.5.5.141 82865 username mahdixz 82865 unique_id port 82865 terminate_cause Lost-Carrier 82865 bytes_out 747334 82865 bytes_in 6724433 82865 station_ip 5.233.72.32 82865 port 15728847 82865 nas_port_type Virtual 82865 remote_ip 5.5.5.148 82871 username farhad 82871 unique_id port 82871 terminate_cause Lost-Carrier 82871 bytes_out 5224930 82871 bytes_in 73853026 82871 station_ip 5.119.94.249 82871 port 15728852 82871 nas_port_type Virtual 82871 remote_ip 5.5.5.144 82878 username madadi 82878 unique_id port 82878 terminate_cause Lost-Carrier 82878 bytes_out 360034 82878 bytes_in 1192939 82878 station_ip 5.119.228.215 82878 port 15728870 82878 nas_port_type Virtual 82878 remote_ip 5.5.5.139 82888 username aminvpn 82888 unique_id port 82888 terminate_cause Lost-Carrier 82888 bytes_out 1841297 82888 bytes_in 14764303 82888 station_ip 5.233.72.32 82888 port 15728849 82888 nas_port_type Virtual 82888 remote_ip 5.5.5.145 82895 username forozande 82895 unique_id port 82895 terminate_cause User-Request 82895 bytes_out 52086 82895 bytes_in 361786 82895 station_ip 37.129.111.245 82895 port 15728894 82895 nas_port_type Virtual 82895 remote_ip 5.5.5.126 82899 username aminvpn 82899 unique_id port 82899 terminate_cause User-Request 82899 bytes_out 31879 82899 bytes_in 165310 82899 station_ip 83.123.251.21 82899 port 15728898 82899 nas_port_type Virtual 82899 remote_ip 5.5.5.189 82902 username caferibar 82902 unique_id port 82902 terminate_cause User-Request 82902 bytes_out 0 82902 bytes_in 0 82902 station_ip 5.119.251.65 82826 unique_id port 82826 terminate_cause Lost-Carrier 82826 bytes_out 766132 82826 bytes_in 8637766 82826 station_ip 5.233.72.32 82826 port 15728810 82826 nas_port_type Virtual 82826 remote_ip 5.5.5.191 82827 username amirabbas 82827 unique_id port 82827 terminate_cause Lost-Carrier 82827 bytes_out 4003300 82827 bytes_in 96049972 82827 station_ip 31.56.159.110 82827 port 15728805 82827 nas_port_type Virtual 82827 remote_ip 5.5.5.166 82829 username alinezhad 82829 unique_id port 82829 terminate_cause User-Request 82829 bytes_out 0 82829 bytes_in 0 82829 station_ip 83.122.176.25 82829 port 15728819 82829 nas_port_type Virtual 82829 remote_ip 5.5.5.158 82830 username zamanialireza 82830 unique_id port 82830 terminate_cause Lost-Carrier 82830 bytes_out 968268 82830 bytes_in 13972270 82830 station_ip 94.183.213.166 82830 port 15728796 82830 nas_port_type Virtual 82830 remote_ip 5.5.5.173 82831 username alinezhad 82831 unique_id port 82831 terminate_cause User-Request 82831 bytes_out 0 82831 bytes_in 0 82831 station_ip 83.123.67.253 82831 port 15728824 82831 nas_port_type Virtual 82831 remote_ip 5.5.5.156 82833 username heydari 82833 unique_id port 82833 terminate_cause User-Request 82833 bytes_out 0 82833 bytes_in 0 82833 station_ip 83.123.206.77 82833 port 15728826 82833 nas_port_type Virtual 82833 remote_ip 5.5.5.192 82834 username heydari 82834 unique_id port 82834 terminate_cause User-Request 82834 bytes_out 0 82834 bytes_in 0 82834 station_ip 83.123.206.77 82834 port 15728828 82834 nas_port_type Virtual 82834 remote_ip 5.5.5.192 82839 username ahmadipour 82839 unique_id port 13202 username shahrooz 13202 kill_reason Maximum check online fails reached 13202 bytes_out 0 13202 bytes_in 0 13202 port 932 13202 unique_id port 13203 username shahrooz 13203 kill_reason Maximum check online fails reached 13203 bytes_out 0 13203 bytes_in 0 13203 port 677 13203 unique_id port 82839 terminate_cause Lost-Carrier 82839 bytes_out 385110 82839 bytes_in 3716455 82839 station_ip 113.203.67.32 82839 port 15728835 82839 nas_port_type Virtual 82839 remote_ip 5.5.5.150 82840 username aminvpn 13205 username shahrooz 13205 kill_reason Maximum check online fails reached 13205 bytes_out 0 13205 bytes_in 0 13205 port 793 13205 unique_id port 13206 username shahrooz 13206 kill_reason Maximum check online fails reached 13206 bytes_out 0 13206 bytes_in 0 13206 port 570 13206 unique_id port 13208 username shahrooz 13208 kill_reason Maximum check online fails reached 13208 bytes_out 0 13208 bytes_in 0 13208 port 222 13208 unique_id port 13209 username shahrooz 13209 kill_reason Maximum check online fails reached 13209 bytes_out 0 13209 bytes_in 0 13209 port 907 13209 unique_id port 82840 unique_id port 82840 terminate_cause User-Request 82840 bytes_out 34093 82840 bytes_in 52390 82840 station_ip 83.123.251.21 82840 port 15728837 82840 nas_port_type Virtual 82840 remote_ip 5.5.5.189 82846 username mahdixz 82846 unique_id port 82846 terminate_cause User-Request 82846 bytes_out 4970 82846 bytes_in 22630 82846 station_ip 5.233.72.32 82846 port 15728842 82846 nas_port_type Virtual 82846 remote_ip 5.5.5.148 82848 username alinezhad 82848 unique_id port 82848 terminate_cause User-Request 82848 bytes_out 126038 82848 bytes_in 239294 82848 station_ip 5.202.19.80 82848 port 15728845 82848 nas_port_type Virtual 82848 remote_ip 5.5.5.146 82851 username aminvpn 82851 unique_id port 82851 terminate_cause Lost-Carrier 82851 bytes_out 403737 82851 bytes_in 3307297 82851 station_ip 5.119.15.86 82851 port 15728831 82851 nas_port_type Virtual 82851 remote_ip 5.5.5.153 82853 username alinezhad 82841 unique_id port 82841 terminate_cause User-Request 82841 bytes_out 41577 82841 bytes_in 166834 82841 station_ip 83.123.251.21 82841 port 15728838 82841 nas_port_type Virtual 82841 remote_ip 5.5.5.189 82842 username aminvpn 82842 unique_id port 82842 terminate_cause User-Request 82842 bytes_out 30170 82842 bytes_in 47575 82842 station_ip 83.123.251.21 82842 port 15728839 82842 nas_port_type Virtual 82842 remote_ip 5.5.5.189 82845 username aminvpn 82845 unique_id port 82845 terminate_cause User-Request 82845 bytes_out 20018 82845 bytes_in 41299 82845 station_ip 83.123.251.21 82845 port 15728841 82845 nas_port_type Virtual 82845 remote_ip 5.5.5.189 82847 username ahmadi 82847 unique_id port 82847 terminate_cause User-Request 82847 bytes_out 0 82847 bytes_in 0 82847 station_ip 83.122.53.145 82847 port 15728846 82847 nas_port_type Virtual 82847 remote_ip 5.5.5.162 82850 username aminvpn 82850 unique_id port 82850 terminate_cause User-Request 82850 bytes_out 0 82850 bytes_in 0 82850 station_ip 5.233.72.32 82850 port 15728848 82850 nas_port_type Virtual 82850 remote_ip 5.5.5.145 82855 username amirhosein 82855 kill_reason Maximum check online fails reached 82855 unique_id port 82855 bytes_out 130638 82855 bytes_in 271252 82855 station_ip 5.120.159.167 82855 port 15728855 82855 nas_port_type Virtual 82855 remote_ip 5.5.5.142 13201 username shahrooz 13201 kill_reason Maximum check online fails reached 13201 bytes_out 0 13201 bytes_in 0 13201 port 814 13201 unique_id port 13207 username shahrooz 13207 kill_reason Maximum check online fails reached 13207 bytes_out 0 13207 bytes_in 0 13207 port 949 13207 unique_id port 13211 username shahrooz 13211 kill_reason Maximum check online fails reached 13211 bytes_out 0 13211 bytes_in 0 13211 port 577 13211 unique_id port 13213 username shahrooz 13213 kill_reason Maximum check online fails reached 13213 bytes_out 0 13213 bytes_in 0 13213 port 33 13213 unique_id port 82857 username mahbobeh 82857 unique_id port 82857 terminate_cause Lost-Carrier 82857 bytes_out 2296515 82857 bytes_in 35344962 82857 station_ip 113.203.125.28 82857 port 15728834 82857 nas_port_type Virtual 82857 remote_ip 5.5.5.230 82859 username caferibar 82859 unique_id port 82859 terminate_cause Lost-Carrier 82859 bytes_out 1035531 82859 bytes_in 24927474 82859 station_ip 5.119.144.74 82859 port 15728853 82859 nas_port_type Virtual 82859 remote_ip 5.5.5.143 82863 username zamanialireza 82863 unique_id port 82863 terminate_cause User-Request 82863 bytes_out 1181097 82863 bytes_in 8785995 82863 station_ip 94.183.213.166 82863 port 15728840 82863 nas_port_type Virtual 82863 remote_ip 5.5.5.173 82867 username madadi 82867 unique_id port 82867 terminate_cause User-Request 82867 bytes_out 155033 82867 bytes_in 412666 82867 station_ip 5.119.228.215 82867 port 15728861 82867 nas_port_type Virtual 82867 remote_ip 5.5.5.139 82869 username alinezhad 82869 unique_id port 82869 terminate_cause User-Request 82869 bytes_out 0 82869 bytes_in 0 82869 station_ip 5.202.19.80 82869 port 15728868 82869 nas_port_type Virtual 82869 remote_ip 5.5.5.146 82870 username madadi 82870 unique_id port 82870 terminate_cause User-Request 82870 bytes_out 47475 82870 bytes_in 141186 82870 station_ip 5.119.228.215 82870 port 15728869 82870 nas_port_type Virtual 82870 remote_ip 5.5.5.139 82879 username forozande 82879 unique_id port 82879 terminate_cause User-Request 82879 bytes_out 293804 82879 bytes_in 1984768 82879 station_ip 83.122.206.251 82879 port 15728876 82879 nas_port_type Virtual 82879 remote_ip 5.5.5.134 82883 username alinezhad 82883 unique_id port 82883 terminate_cause User-Request 82853 unique_id port 82853 terminate_cause User-Request 82853 bytes_out 10099 82853 bytes_in 22828 82853 station_ip 5.202.19.80 82853 port 15728850 82853 nas_port_type Virtual 82853 remote_ip 5.5.5.146 82862 username caferibar 82862 unique_id port 82862 terminate_cause User-Request 82862 bytes_out 186769 82862 bytes_in 2226262 82862 station_ip 83.122.56.63 82862 port 15728862 82862 nas_port_type Virtual 82862 remote_ip 5.5.5.138 82864 username amirabbas 82864 unique_id port 82864 terminate_cause Lost-Carrier 82864 bytes_out 2963717 82864 bytes_in 68190173 82864 station_ip 31.56.155.239 82864 port 15728844 82864 nas_port_type Virtual 82864 remote_ip 5.5.5.147 82866 username alinezhad 82866 unique_id port 82866 terminate_cause User-Request 82866 bytes_out 48023 82866 bytes_in 73147 82866 station_ip 5.202.19.80 82866 port 15728863 82866 nas_port_type Virtual 82866 remote_ip 5.5.5.146 82868 username madadi 82868 unique_id port 82868 terminate_cause User-Request 82868 bytes_out 0 82868 bytes_in 0 82868 station_ip 5.119.228.215 82868 port 15728867 82868 nas_port_type Virtual 82868 remote_ip 5.5.5.139 82875 username ksrkrgr 82875 unique_id port 82875 terminate_cause User-Request 82875 bytes_out 65197 82875 bytes_in 48430 82875 station_ip 5.233.47.47 82875 port 15728873 82875 nas_port_type Virtual 82875 remote_ip 5.5.5.135 82876 username caferibar 82876 unique_id port 82876 terminate_cause User-Request 82876 bytes_out 163198 82876 bytes_in 1846874 82876 station_ip 83.122.56.63 82876 port 15728874 82876 nas_port_type Virtual 82876 remote_ip 5.5.5.138 82877 username amirreza 82877 unique_id port 82877 terminate_cause User-Request 82877 bytes_out 3314487 82877 bytes_in 71363731 82877 station_ip 5.120.87.183 82877 port 15728858 82877 nas_port_type Virtual 82877 remote_ip 5.5.5.140 82882 username amirabbas 82882 unique_id port 82882 terminate_cause User-Request 82882 bytes_out 201160 82882 bytes_in 2044283 82882 station_ip 151.238.237.211 82882 port 15728879 82882 nas_port_type Virtual 82882 remote_ip 5.5.5.132 82884 username madadi 82884 unique_id port 82884 terminate_cause Lost-Carrier 82884 bytes_out 128148 82884 bytes_in 425580 82884 station_ip 5.119.174.204 82884 port 15728877 82884 nas_port_type Virtual 82884 remote_ip 5.5.5.133 82889 username reza 82889 kill_reason Relative expiration date has reached 82889 unique_id port 82889 bytes_out 0 82889 bytes_in 0 82889 station_ip 83.122.246.42 82889 port 15728889 82889 nas_port_type Virtual 82891 username reza 82891 kill_reason Relative expiration date has reached 82891 unique_id port 82891 bytes_out 0 82891 bytes_in 0 82891 station_ip 83.122.246.42 82891 port 15728891 82891 nas_port_type Virtual 82893 username reza 82893 kill_reason Relative expiration date has reached 82893 unique_id port 82893 bytes_out 0 82893 bytes_in 0 82893 station_ip 83.122.246.42 82893 port 15728893 82893 nas_port_type Virtual 82903 username aminvpn 82903 unique_id port 82903 terminate_cause User-Request 82903 bytes_out 30085 82903 bytes_in 39090 82903 station_ip 83.123.251.21 82903 port 15728903 82903 nas_port_type Virtual 82903 remote_ip 5.5.5.189 82904 username forozande 82904 unique_id port 82904 terminate_cause User-Request 82904 bytes_out 51432 82904 bytes_in 560269 82904 station_ip 37.129.156.148 82904 port 15728904 82904 nas_port_type Virtual 82904 remote_ip 5.5.5.125 82906 username aminvpn 82906 kill_reason Another user logged on this global unique id 82906 mac 82906 bytes_out 0 82906 bytes_in 0 82906 station_ip 5.120.33.140 82906 port 15 82906 unique_id port 82906 remote_ip 10.8.0.6 82909 username aminvpn 82909 unique_id port 82874 unique_id port 82874 terminate_cause User-Request 82874 bytes_out 159993 82874 bytes_in 426862 82874 station_ip 83.122.56.63 82874 port 15728872 82874 nas_port_type Virtual 82874 remote_ip 5.5.5.138 82880 username alinezhad 82880 unique_id port 82880 terminate_cause User-Request 82880 bytes_out 61879 82880 bytes_in 313238 82880 station_ip 5.202.19.80 82880 port 15728875 82880 nas_port_type Virtual 82880 remote_ip 5.5.5.146 82881 username amirabbas 82881 unique_id port 82881 terminate_cause Lost-Carrier 82881 bytes_out 15690777 82881 bytes_in 457395859 82881 station_ip 31.56.159.24 82881 port 15728865 82881 nas_port_type Virtual 82881 remote_ip 5.5.5.137 82886 username ahmadi 82886 unique_id port 82886 terminate_cause User-Request 82886 bytes_out 148082 82886 bytes_in 3259782 82886 station_ip 83.122.84.125 82886 port 15728884 82886 nas_port_type Virtual 82886 remote_ip 5.5.5.128 82894 username amirhosein 82894 unique_id port 82894 terminate_cause Lost-Carrier 82894 bytes_out 85755 82894 bytes_in 1123183 82894 station_ip 5.119.27.247 82894 port 15728883 82894 nas_port_type Virtual 82894 remote_ip 5.5.5.129 82897 username forozande 82897 unique_id port 82897 terminate_cause User-Request 82897 bytes_out 199901 82897 bytes_in 96129 82897 station_ip 37.129.156.148 82897 port 15728896 82897 nas_port_type Virtual 82897 remote_ip 5.5.5.125 82898 username aminvpn 82898 unique_id port 82898 terminate_cause User-Request 82898 bytes_out 27041 82898 bytes_in 85415 82898 station_ip 83.123.251.21 82898 port 15728897 82898 nas_port_type Virtual 82898 remote_ip 5.5.5.189 82900 username aminvpn 82900 unique_id port 82900 terminate_cause User-Request 82900 bytes_out 60685 82900 bytes_in 102043 82900 station_ip 83.123.251.21 82900 port 15728900 82900 nas_port_type Virtual 82900 remote_ip 5.5.5.189 82901 username zamanialireza 82901 unique_id port 82901 terminate_cause User-Request 82901 bytes_out 0 82901 bytes_in 0 82901 station_ip 94.183.213.166 82901 port 15728902 82901 nas_port_type Virtual 82901 remote_ip 5.5.5.173 82905 username aminvpn 82905 unique_id port 82905 terminate_cause User-Request 82905 bytes_out 24807 82905 bytes_in 38830 82905 station_ip 83.123.251.21 82905 port 15728905 82905 nas_port_type Virtual 82905 remote_ip 5.5.5.189 82907 username aminvpn 82907 unique_id port 82907 terminate_cause User-Request 82907 bytes_out 48681 82907 bytes_in 178644 82907 station_ip 83.123.251.21 82907 port 15728906 82907 nas_port_type Virtual 82907 remote_ip 5.5.5.189 82908 username aminvpn 82908 unique_id port 82908 terminate_cause User-Request 82908 bytes_out 45312 82908 bytes_in 267207 82908 station_ip 83.123.251.21 82908 port 15728907 82908 nas_port_type Virtual 82908 remote_ip 5.5.5.189 82911 username aminvpn 82911 unique_id port 82911 terminate_cause User-Request 82911 bytes_out 75807 82911 bytes_in 539189 82911 station_ip 83.123.251.21 82911 port 15728910 82911 nas_port_type Virtual 82911 remote_ip 5.5.5.189 82922 username ksrkrgr 82922 unique_id port 82922 terminate_cause User-Request 82922 bytes_out 12393147 82922 bytes_in 46929715 82922 station_ip 5.233.47.47 82922 port 15728888 82922 nas_port_type Virtual 82922 remote_ip 5.5.5.135 82924 username caferibar 82924 kill_reason Maximum check online fails reached 82924 unique_id port 82924 bytes_out 489784 82924 bytes_in 7526712 82924 station_ip 5.119.251.65 82924 port 15728925 82924 nas_port_type Virtual 82924 remote_ip 5.5.5.235 82925 username amin.insta01 82925 unique_id port 82925 terminate_cause Lost-Carrier 82925 bytes_out 2472770 82925 bytes_in 24110561 82925 station_ip 5.120.33.140 82925 port 15728922 82925 nas_port_type Virtual 82883 bytes_out 26693 82883 bytes_in 165387 82883 station_ip 5.202.19.80 82883 port 15728878 82883 nas_port_type Virtual 82883 remote_ip 5.5.5.146 82885 username forozande 82885 unique_id port 82885 terminate_cause User-Request 82885 bytes_out 32209 82885 bytes_in 364439 82885 station_ip 37.129.91.211 82885 port 15728881 82885 nas_port_type Virtual 82885 remote_ip 5.5.5.130 82887 username farhad 82887 unique_id port 82887 terminate_cause User-Request 82887 bytes_out 0 82887 bytes_in 0 82887 station_ip 5.120.34.13 82887 port 15728885 82887 nas_port_type Virtual 82887 remote_ip 5.5.5.127 82890 username reza 82890 kill_reason Relative expiration date has reached 82890 unique_id port 82890 bytes_out 0 82890 bytes_in 0 82890 station_ip 83.122.246.42 82890 port 15728890 82890 nas_port_type Virtual 82892 username reza 82892 kill_reason Relative expiration date has reached 82892 unique_id port 82892 bytes_out 0 82892 bytes_in 0 82892 station_ip 83.122.246.42 82892 port 15728892 82892 nas_port_type Virtual 82896 username forozande 82896 unique_id port 82896 terminate_cause User-Request 82896 bytes_out 29734 82896 bytes_in 103468 82896 station_ip 37.129.156.148 82896 port 15728895 82896 nas_port_type Virtual 82896 remote_ip 5.5.5.125 82915 username reza 82915 kill_reason Relative expiration date has reached 82915 unique_id port 82915 bytes_out 0 82915 bytes_in 0 82915 station_ip 83.122.246.42 82915 port 15728921 82915 nas_port_type Virtual 82916 username zamanialireza 82916 unique_id port 82916 terminate_cause User-Request 82916 bytes_out 400002 82916 bytes_in 1418442 82916 station_ip 113.203.107.122 82916 port 15728919 82916 nas_port_type Virtual 82916 remote_ip 5.5.5.123 82919 username afarin 82919 unique_id port 82919 terminate_cause User-Request 82919 bytes_out 1173218 82919 bytes_in 18748510 82919 station_ip 31.56.157.21 82919 port 15728916 82919 nas_port_type Virtual 82919 remote_ip 5.5.5.124 82921 username reza 82921 kill_reason Relative expiration date has reached 82921 unique_id port 82921 bytes_out 0 82921 bytes_in 0 82921 station_ip 83.122.246.42 82921 port 15728923 82921 nas_port_type Virtual 82923 username alinezhad 82923 unique_id port 82923 terminate_cause User-Request 82923 bytes_out 28423 82923 bytes_in 65381 82923 station_ip 5.202.19.80 82923 port 15728924 82923 nas_port_type Virtual 82923 remote_ip 5.5.5.146 82926 username amirabbas 82926 unique_id port 82926 terminate_cause User-Request 82926 bytes_out 14381384 82926 bytes_in 345267086 82926 station_ip 151.238.237.211 82926 port 15728899 82926 nas_port_type Virtual 82926 remote_ip 5.5.5.132 82936 username amirhosein 82936 unique_id port 82936 terminate_cause Lost-Carrier 82936 bytes_out 88082 82936 bytes_in 409073 82936 station_ip 5.119.27.247 82936 port 15728931 82936 nas_port_type Virtual 82936 remote_ip 5.5.5.129 82937 username alinezhad 82937 unique_id port 82937 terminate_cause User-Request 82937 bytes_out 139136 82937 bytes_in 232107 82937 station_ip 37.129.171.23 82937 port 15728934 82937 nas_port_type Virtual 82937 remote_ip 5.5.5.117 82939 username zamanialireza 82939 unique_id port 82939 terminate_cause User-Request 82939 bytes_out 7955356 82939 bytes_in 145734753 82939 station_ip 5.160.113.132 82939 port 15728936 82939 nas_port_type Virtual 82939 remote_ip 5.5.5.115 82942 username aminvpn 82942 unique_id port 82942 terminate_cause User-Request 82942 bytes_out 159002 82942 bytes_in 390953 82942 station_ip 83.123.203.61 82942 port 15728939 82942 nas_port_type Virtual 82942 remote_ip 5.5.5.112 82943 username madadi 82943 unique_id port 82943 terminate_cause Lost-Carrier 82943 bytes_out 70204 82943 bytes_in 168984 82902 port 15728901 82902 nas_port_type Virtual 82902 remote_ip 5.5.5.235 82910 username ahmadi 82910 unique_id port 82910 terminate_cause User-Request 82910 bytes_out 0 82910 bytes_in 0 82910 station_ip 83.122.84.125 82910 port 15728911 82910 nas_port_type Virtual 82910 remote_ip 5.5.5.128 82912 username aminvpn 82912 unique_id port 82912 terminate_cause User-Request 82912 bytes_out 101250 82912 bytes_in 268419 82912 station_ip 83.123.251.21 82912 port 15728912 82912 nas_port_type Virtual 82912 remote_ip 5.5.5.189 82914 username aminvpn 82914 unique_id port 82914 terminate_cause User-Request 82914 bytes_out 20839 82914 bytes_in 33423 82914 station_ip 83.123.251.21 82914 port 15728918 82914 nas_port_type Virtual 82914 remote_ip 5.5.5.189 82917 username zamanialireza 82917 unique_id port 82917 terminate_cause User-Request 82917 bytes_out 243795 82917 bytes_in 1376500 82917 station_ip 113.203.107.122 82917 port 15728920 82917 nas_port_type Virtual 82917 remote_ip 5.5.5.122 82918 username caferibar 82918 unique_id port 82918 terminate_cause User-Request 82918 bytes_out 3468702 82918 bytes_in 78189252 82918 station_ip 5.119.251.65 82918 port 15728908 82918 nas_port_type Virtual 82918 remote_ip 5.5.5.235 82940 username majid 82940 unique_id port 82940 terminate_cause User-Request 82940 bytes_out 4664347 82940 bytes_in 109024102 82940 station_ip 86.57.0.233 82940 port 15728937 82940 nas_port_type Virtual 82940 remote_ip 5.5.5.114 82944 username hamideh 82944 unique_id port 82944 terminate_cause Lost-Carrier 82944 bytes_out 76669 82944 bytes_in 273367 82944 station_ip 5.120.26.8 82944 port 15728943 82944 nas_port_type Virtual 82944 remote_ip 5.5.5.110 82951 username alinezhad 82951 unique_id port 82951 terminate_cause User-Request 82951 bytes_out 60597 82951 bytes_in 1073361 82951 station_ip 83.122.39.28 82951 port 15728644 82951 nas_port_type Virtual 82951 remote_ip 5.5.5.251 82959 username asadi 82959 unique_id port 82959 terminate_cause User-Request 82959 bytes_out 181314 82959 bytes_in 5882046 82959 station_ip 37.129.116.150 82959 port 15728652 82959 nas_port_type Virtual 82959 remote_ip 5.5.5.255 82960 username asadi 82960 unique_id port 82960 terminate_cause User-Request 82960 bytes_out 477527 82960 bytes_in 10699445 82960 station_ip 37.129.116.150 82960 port 15728653 82960 nas_port_type Virtual 82960 remote_ip 5.5.5.255 82962 username asadi 82962 unique_id port 82962 terminate_cause User-Request 82962 bytes_out 478092 82962 bytes_in 11575755 82962 station_ip 37.129.116.150 82962 port 15728656 82962 nas_port_type Virtual 82962 remote_ip 5.5.5.255 82965 username soleymani 82965 unique_id port 82965 terminate_cause Lost-Carrier 82965 bytes_out 161778 82965 bytes_in 587740 82965 station_ip 5.123.153.188 82965 port 15728655 82965 nas_port_type Virtual 82965 remote_ip 5.5.5.244 82968 username amirabbas 82968 unique_id port 82968 terminate_cause User-Request 82968 bytes_out 4078840 82968 bytes_in 96764228 82968 station_ip 151.238.237.211 82968 port 15728659 82968 nas_port_type Virtual 82968 remote_ip 5.5.5.242 82969 username madadi 82969 unique_id port 82969 terminate_cause Lost-Carrier 82969 bytes_out 14945 82969 bytes_in 150010 82969 station_ip 5.119.0.236 82969 port 15728662 82969 nas_port_type Virtual 82969 remote_ip 5.5.5.240 82972 username madadi 82972 unique_id port 82972 terminate_cause Lost-Carrier 82972 bytes_out 17202 82972 bytes_in 124874 82972 station_ip 5.120.58.219 82972 port 15728664 82972 nas_port_type Virtual 82972 remote_ip 5.5.5.239 82978 username alinezhad 82978 unique_id port 82978 terminate_cause User-Request 82978 bytes_out 23004 82978 bytes_in 142982 82909 terminate_cause User-Request 82909 bytes_out 80773 82909 bytes_in 885308 82909 station_ip 83.123.251.21 82909 port 15728909 82909 nas_port_type Virtual 82909 remote_ip 5.5.5.189 82913 username aminvpn 82913 mac 82913 bytes_out 0 82913 bytes_in 0 82913 station_ip 5.120.33.140 82913 port 15 82913 unique_id port 82920 username alinezhad 82920 unique_id port 82920 terminate_cause User-Request 82920 bytes_out 323662 82920 bytes_in 1293771 82920 station_ip 5.202.19.80 82920 port 15728882 82920 nas_port_type Virtual 82920 remote_ip 5.5.5.146 82927 username mahdixz 82927 unique_id port 82927 terminate_cause User-Request 82927 bytes_out 4631111 82927 bytes_in 24851015 82927 station_ip 5.233.72.32 82927 port 15728917 82927 nas_port_type Virtual 82927 remote_ip 5.5.5.148 82928 username alinezhad 82928 unique_id port 82928 terminate_cause User-Request 82928 bytes_out 77588 82928 bytes_in 261747 82928 station_ip 5.202.19.80 82928 port 15728926 82928 nas_port_type Virtual 82928 remote_ip 5.5.5.146 82929 username heydari 82929 unique_id port 82929 terminate_cause User-Request 82929 bytes_out 0 82929 bytes_in 0 82929 station_ip 83.123.206.77 82929 port 15728927 82929 nas_port_type Virtual 82929 remote_ip 5.5.5.192 82933 username madadi 82933 unique_id port 82933 terminate_cause Lost-Carrier 82933 bytes_out 73772 82933 bytes_in 239367 82933 station_ip 5.119.112.139 82933 port 15728929 82933 nas_port_type Virtual 82933 remote_ip 5.5.5.119 82941 username alinezhad 82941 unique_id port 82941 terminate_cause User-Request 82941 bytes_out 0 82941 bytes_in 0 82941 station_ip 37.129.187.201 82941 port 15728938 82941 nas_port_type Virtual 82941 remote_ip 5.5.5.113 82950 username madadi 82950 unique_id port 82950 terminate_cause Lost-Carrier 82950 bytes_out 10669 82950 bytes_in 131072 82950 station_ip 5.120.128.145 82950 port 15728643 82950 nas_port_type Virtual 82950 remote_ip 5.5.5.252 82953 username arabpour 82953 unique_id port 82953 terminate_cause User-Request 82953 bytes_out 526141 82953 bytes_in 15830616 82953 station_ip 83.122.176.237 82953 port 15728646 82953 nas_port_type Virtual 82953 remote_ip 5.5.5.249 82963 username abdilahyar 82963 unique_id port 82963 terminate_cause User-Request 82963 bytes_out 0 82963 bytes_in 0 82963 station_ip 5.120.23.196 82963 port 15728660 82963 nas_port_type Virtual 82963 remote_ip 5.5.5.241 82964 username asadi 82964 unique_id port 82964 terminate_cause User-Request 82964 bytes_out 270899 82964 bytes_in 5681317 82964 station_ip 37.129.116.150 82964 port 15728658 82964 nas_port_type Virtual 82964 remote_ip 5.5.5.255 82967 username madadi 82967 unique_id port 82967 terminate_cause Lost-Carrier 82967 bytes_out 4196 82967 bytes_in 118219 82967 station_ip 5.119.212.32 82967 port 15728657 82967 nas_port_type Virtual 82967 remote_ip 5.5.5.243 82984 username madadi 82984 kill_reason Maximum number of concurrent logins reached 82984 unique_id port 82984 bytes_out 0 82984 bytes_in 0 82984 station_ip 5.119.4.69 82984 port 15728679 82984 nas_port_type Virtual 82990 username madadi 82990 unique_id port 82990 terminate_cause Lost-Carrier 82990 bytes_out 20241 82990 bytes_in 127978 82990 station_ip 5.119.224.160 82990 port 15728673 82990 nas_port_type Virtual 82990 remote_ip 5.5.5.235 83006 username madadi 83006 unique_id port 83006 terminate_cause Lost-Carrier 83006 bytes_out 382986 83006 bytes_in 905798 83006 station_ip 5.119.48.154 83006 port 15728685 83006 nas_port_type Virtual 83006 remote_ip 5.5.5.233 83013 username shojaei 83013 unique_id port 83013 terminate_cause Lost-Carrier 83013 bytes_out 80433 83013 bytes_in 2687420 82925 remote_ip 5.5.5.121 82930 username mahbobeh 82930 unique_id port 82930 terminate_cause Lost-Carrier 82930 bytes_out 2908438 82930 bytes_in 54273067 82930 station_ip 113.203.125.28 82930 port 15728913 82930 nas_port_type Virtual 82930 remote_ip 5.5.5.230 82931 username alinezhad 82931 unique_id port 82931 terminate_cause User-Request 82931 bytes_out 0 82931 bytes_in 0 82931 station_ip 83.123.64.77 82931 port 15728930 82931 nas_port_type Virtual 82931 remote_ip 5.5.5.118 82932 username madadi 82932 unique_id port 82932 terminate_cause Lost-Carrier 82932 bytes_out 2365106 82932 bytes_in 16930993 82932 station_ip 5.119.52.152 82932 port 15728880 82932 nas_port_type Virtual 82932 remote_ip 5.5.5.131 82934 username farhad 82934 unique_id port 82934 terminate_cause Lost-Carrier 82934 bytes_out 17785270 82934 bytes_in 248625986 82934 station_ip 5.120.34.13 82934 port 15728887 82934 nas_port_type Virtual 82934 remote_ip 5.5.5.127 82935 username mahdixz 82935 unique_id port 82935 terminate_cause User-Request 82935 bytes_out 2102376 82935 bytes_in 43725866 82935 station_ip 5.120.33.140 82935 port 15728928 82935 nas_port_type Virtual 82935 remote_ip 5.5.5.120 82938 username shahrooz 82938 unique_id port 82938 terminate_cause Lost-Carrier 82938 bytes_out 2021495 82938 bytes_in 55516387 82938 station_ip 83.122.121.217 82938 port 15728935 82938 nas_port_type Virtual 82938 remote_ip 5.5.5.116 82943 station_ip 5.119.122.244 82943 port 15728942 82943 nas_port_type Virtual 82943 remote_ip 5.5.5.111 82945 username mahbobeh 82945 unique_id port 82945 terminate_cause Admin-Reboot 82945 bytes_out 86489 82945 bytes_in 830091 82945 station_ip 113.203.125.28 82945 port 15728940 82945 nas_port_type Virtual 82945 remote_ip 5.5.5.230 82947 username alinezhad 82947 unique_id port 82947 terminate_cause User-Request 82947 bytes_out 0 82947 bytes_in 0 82947 station_ip 83.123.243.44 82947 port 15728641 82947 nas_port_type Virtual 82947 remote_ip 5.5.5.254 82949 username hamideh 82949 unique_id port 82949 terminate_cause Lost-Carrier 82949 bytes_out 285002 82949 bytes_in 2308125 82949 station_ip 5.120.26.8 82949 port 15728642 82949 nas_port_type Virtual 82949 remote_ip 5.5.5.253 82952 username arabpour 82952 unique_id port 82952 terminate_cause User-Request 82952 bytes_out 213413 82952 bytes_in 4315252 82952 station_ip 83.122.57.212 82952 port 15728645 82952 nas_port_type Virtual 82952 remote_ip 5.5.5.250 82958 username madadi 82958 unique_id port 82958 terminate_cause Lost-Carrier 82958 bytes_out 16468 82958 bytes_in 127440 82958 station_ip 5.119.213.64 82958 port 15728651 82958 nas_port_type Virtual 82958 remote_ip 5.5.5.246 82970 username asadi 82970 unique_id port 82970 terminate_cause User-Request 82970 bytes_out 83765 82970 bytes_in 1008895 82970 station_ip 37.129.116.150 82970 port 15728666 82970 nas_port_type Virtual 82970 remote_ip 5.5.5.255 82971 username ahmadi 82971 unique_id port 82971 terminate_cause User-Request 82971 bytes_out 47252 82971 bytes_in 200286 82971 station_ip 83.122.120.253 82971 port 15728667 82971 nas_port_type Virtual 82971 remote_ip 5.5.5.237 82973 username soleymani 82973 unique_id port 82973 terminate_cause Lost-Carrier 82973 bytes_out 33068 82973 bytes_in 211591 82973 station_ip 5.124.112.122 82973 port 15728665 82973 nas_port_type Virtual 82973 remote_ip 5.5.5.238 82974 username alinezhad 82974 unique_id port 82974 terminate_cause User-Request 82974 bytes_out 0 82974 bytes_in 0 82974 station_ip 5.202.97.138 82974 port 15728668 82974 nas_port_type Virtual 82974 remote_ip 5.5.5.245 82976 username asadi 82976 unique_id port 82976 terminate_cause User-Request 82946 username afarin 82946 unique_id port 82946 terminate_cause Admin-Reboot 82946 bytes_out 7649549 82946 bytes_in 78646682 82946 station_ip 31.56.157.21 82946 port 15728932 82946 nas_port_type Virtual 82946 remote_ip 5.5.5.124 82948 username asadi 82948 unique_id port 82948 terminate_cause User-Request 82948 bytes_out 119290 82948 bytes_in 978422 82948 station_ip 37.129.116.150 82948 port 15728640 82948 nas_port_type Virtual 82948 remote_ip 5.5.5.255 82954 username mobina 82954 kill_reason Relative expiration date has reached 82954 unique_id port 82954 bytes_out 0 82954 bytes_in 0 82954 station_ip 5.123.41.185 82954 port 15728647 82954 nas_port_type Virtual 82955 username forozande 82955 unique_id port 82955 terminate_cause User-Request 82955 bytes_out 253362 82955 bytes_in 1051652 82955 station_ip 83.123.216.180 82955 port 15728649 82955 nas_port_type Virtual 82955 remote_ip 5.5.5.247 82956 username madadi 82956 unique_id port 82956 terminate_cause User-Request 82956 bytes_out 0 82956 bytes_in 0 82956 station_ip 5.119.213.64 82956 port 15728650 82956 nas_port_type Virtual 82956 remote_ip 5.5.5.246 82957 username madadi 82957 unique_id port 82957 terminate_cause Lost-Carrier 82957 bytes_out 33939 82957 bytes_in 134419 82957 station_ip 5.119.4.236 82957 port 15728648 82957 nas_port_type Virtual 82957 remote_ip 5.5.5.248 82961 username alinezhad 82961 unique_id port 82961 terminate_cause User-Request 82961 bytes_out 14767 82961 bytes_in 28199 82961 station_ip 5.202.97.138 82961 port 15728654 82961 nas_port_type Virtual 82961 remote_ip 5.5.5.245 82966 username madadi 82966 kill_reason Maximum number of concurrent logins reached 82966 unique_id port 82966 bytes_out 0 82966 bytes_in 0 82966 station_ip 5.120.58.219 82966 port 15728663 82966 nas_port_type Virtual 82975 username abdilahyar 82975 unique_id port 82975 terminate_cause Lost-Carrier 82975 bytes_out 271295 82975 bytes_in 644422 82975 station_ip 5.120.23.196 82975 port 15728661 82975 nas_port_type Virtual 82975 remote_ip 5.5.5.241 82977 username asadi 82977 unique_id port 82977 terminate_cause User-Request 82977 bytes_out 24959 82977 bytes_in 97254 82977 station_ip 37.129.116.150 82977 port 15728672 82977 nas_port_type Virtual 82977 remote_ip 5.5.5.255 82979 username madadi 82979 kill_reason Maximum number of concurrent logins reached 82979 unique_id port 82979 bytes_out 0 82979 bytes_in 0 82979 station_ip 5.119.115.238 82979 port 15728674 82979 nas_port_type Virtual 82982 username madadi 82982 kill_reason Maximum number of concurrent logins reached 82982 unique_id port 82982 bytes_out 0 82982 bytes_in 0 82982 station_ip 5.119.115.238 82982 port 15728677 82982 nas_port_type Virtual 82986 username madadi 82986 kill_reason Maximum number of concurrent logins reached 82986 unique_id port 82986 bytes_out 0 82986 bytes_in 0 82986 station_ip 5.119.48.154 82986 port 15728681 82986 nas_port_type Virtual 82987 username madadi 82987 kill_reason Maximum number of concurrent logins reached 82987 unique_id port 82987 bytes_out 0 82987 bytes_in 0 82987 station_ip 5.119.48.154 82987 port 15728682 82987 nas_port_type Virtual 82989 username madadi 82989 kill_reason Maximum number of concurrent logins reached 82989 unique_id port 82989 bytes_out 0 82989 bytes_in 0 82989 station_ip 5.119.48.154 82989 port 15728684 82989 nas_port_type Virtual 82993 username alinezhad 82993 unique_id port 82993 terminate_cause User-Request 82993 bytes_out 0 82993 bytes_in 0 82993 station_ip 5.202.97.138 82993 port 15728688 82993 nas_port_type Virtual 82993 remote_ip 5.5.5.245 82999 username zamanialireza 82999 unique_id port 82999 terminate_cause User-Request 82999 bytes_out 108930 82999 bytes_in 392658 82976 bytes_out 6125 82976 bytes_in 24055 82976 station_ip 37.129.116.150 82976 port 15728670 82976 nas_port_type Virtual 82976 remote_ip 5.5.5.255 82991 username madadi 82991 unique_id port 82991 terminate_cause Lost-Carrier 82991 bytes_out 8279 82991 bytes_in 119930 82991 station_ip 5.119.4.69 82991 port 15728680 82991 nas_port_type Virtual 82991 remote_ip 5.5.5.234 82992 username forozande 82992 unique_id port 82992 terminate_cause User-Request 82992 bytes_out 61483 82992 bytes_in 233845 82992 station_ip 83.123.96.254 82992 port 15728686 82992 nas_port_type Virtual 82992 remote_ip 5.5.5.232 82996 username alinezhad 82996 unique_id port 82996 terminate_cause Lost-Carrier 82996 bytes_out 3672 82996 bytes_in 124444 82996 station_ip 5.202.97.138 82996 port 15728691 82996 nas_port_type Virtual 82996 remote_ip 5.5.5.245 82998 username alinezhad 82998 unique_id port 82998 terminate_cause User-Request 82998 bytes_out 7835 82998 bytes_in 16521 82998 station_ip 37.129.138.20 82998 port 15728696 82998 nas_port_type Virtual 82998 remote_ip 5.5.5.226 83001 username caferibar 83001 unique_id port 83001 terminate_cause User-Request 83001 bytes_out 67595 83001 bytes_in 188849 83001 station_ip 83.123.43.33 83001 port 15728699 83001 nas_port_type Virtual 83001 remote_ip 5.5.5.223 83002 username caferibar 83002 unique_id port 83002 terminate_cause Lost-Carrier 83002 bytes_out 430309 83002 bytes_in 9746596 83002 station_ip 5.134.140.233 83002 port 15728697 83002 nas_port_type Virtual 83002 remote_ip 5.5.5.225 83005 username caferibar 83005 unique_id port 83005 terminate_cause Lost-Carrier 83005 bytes_out 685737 83005 bytes_in 1688117 83005 station_ip 5.125.167.88 83005 port 15728702 83005 nas_port_type Virtual 83005 remote_ip 5.5.5.220 83012 username asadi 83012 unique_id port 83012 terminate_cause User-Request 83012 bytes_out 18218 83012 bytes_in 66234 83012 station_ip 37.129.116.150 83012 port 15728712 83012 nas_port_type Virtual 83012 remote_ip 5.5.5.255 83019 username alinezhad 83019 unique_id port 83019 terminate_cause User-Request 83019 bytes_out 0 83019 bytes_in 0 83019 station_ip 5.202.64.61 83019 port 15728716 83019 nas_port_type Virtual 83019 remote_ip 5.5.5.212 83022 username zamanialireza 83022 unique_id port 83022 terminate_cause Lost-Carrier 83022 bytes_out 7345424 83022 bytes_in 97638281 83022 station_ip 5.120.154.46 83022 port 15728687 83022 nas_port_type Virtual 83022 remote_ip 5.5.5.231 83026 username alinezhad 83026 unique_id port 83026 terminate_cause User-Request 83026 bytes_out 7351 83026 bytes_in 15032 83026 station_ip 5.202.64.61 83026 port 15728721 83026 nas_port_type Virtual 83026 remote_ip 5.5.5.212 83027 username shojaei 83027 unique_id port 83027 terminate_cause User-Request 83027 bytes_out 165608 83027 bytes_in 747658 83027 station_ip 37.129.148.35 83027 port 15728723 83027 nas_port_type Virtual 83027 remote_ip 5.5.5.210 83029 username aminvpn 83029 unique_id port 83029 terminate_cause User-Request 83029 bytes_out 628549 83029 bytes_in 8920694 83029 station_ip 5.119.68.114 83029 port 15728727 83029 nas_port_type Virtual 83029 remote_ip 5.5.5.209 83031 username shojaei 83031 unique_id port 83031 terminate_cause User-Request 83031 bytes_out 46544 83031 bytes_in 134230 83031 station_ip 37.129.148.35 83031 port 15728729 83031 nas_port_type Virtual 83031 remote_ip 5.5.5.210 83033 username mahdixz 83033 unique_id port 83033 terminate_cause Lost-Carrier 83033 bytes_out 23420 83033 bytes_in 321015 83033 station_ip 5.120.33.140 83033 port 15728730 83033 nas_port_type Virtual 83033 remote_ip 5.5.5.207 83035 username ahmadi 83035 unique_id port 82978 station_ip 5.202.97.138 82978 port 15728671 82978 nas_port_type Virtual 82978 remote_ip 5.5.5.245 82980 username madadi 82980 kill_reason Maximum number of concurrent logins reached 82980 unique_id port 82980 bytes_out 0 82980 bytes_in 0 82980 station_ip 5.119.115.238 82980 port 15728675 82980 nas_port_type Virtual 82981 username madadi 82981 kill_reason Maximum number of concurrent logins reached 82981 unique_id port 82981 bytes_out 0 82981 bytes_in 0 82981 station_ip 5.119.115.238 82981 port 15728676 82981 nas_port_type Virtual 82983 username madadi 82983 kill_reason Maximum number of concurrent logins reached 82983 unique_id port 82983 bytes_out 0 82983 bytes_in 0 82983 station_ip 5.119.115.238 82983 port 15728678 82983 nas_port_type Virtual 82985 username madadi 82985 unique_id port 82985 terminate_cause Lost-Carrier 82985 bytes_out 90151 82985 bytes_in 245626 82985 station_ip 5.120.15.250 82985 port 15728669 82985 nas_port_type Virtual 82985 remote_ip 5.5.5.236 82988 username madadi 82988 kill_reason Maximum number of concurrent logins reached 82988 unique_id port 82988 bytes_out 0 82988 bytes_in 0 82988 station_ip 5.119.48.154 82988 port 15728683 82988 nas_port_type Virtual 82994 username asadi 82994 unique_id port 82994 terminate_cause User-Request 82994 bytes_out 1038 82994 bytes_in 12456 82994 station_ip 37.129.116.150 82994 port 15728689 82994 nas_port_type Virtual 82994 remote_ip 5.5.5.255 82995 username asadi 82995 unique_id port 82995 terminate_cause User-Request 82995 bytes_out 174230 82995 bytes_in 1813895 82995 station_ip 37.129.116.150 82995 port 15728690 82995 nas_port_type Virtual 82995 remote_ip 5.5.5.255 82997 username heydari 82997 unique_id port 82997 terminate_cause Lost-Carrier 82997 bytes_out 129959 82997 bytes_in 966464 82997 station_ip 5.119.45.60 82997 port 15728692 82997 nas_port_type Virtual 82997 remote_ip 5.5.5.230 83000 username ahmadi 83000 unique_id port 83000 terminate_cause User-Request 83000 bytes_out 0 83000 bytes_in 0 83000 station_ip 83.122.33.213 83000 port 15728700 83000 nas_port_type Virtual 83000 remote_ip 5.5.5.222 83003 username caferibar 83003 unique_id port 83003 terminate_cause User-Request 83003 bytes_out 0 83003 bytes_in 0 83003 station_ip 83.123.43.33 83003 port 15728703 83003 nas_port_type Virtual 83003 remote_ip 5.5.5.223 83007 username caferibar 83007 unique_id port 83007 terminate_cause Lost-Carrier 83007 bytes_out 650413 83007 bytes_in 1255148 83007 station_ip 5.125.173.210 83007 port 15728695 83007 nas_port_type Virtual 83007 remote_ip 5.5.5.227 83008 username shojaei 83008 unique_id port 83008 terminate_cause User-Request 83008 bytes_out 0 83008 bytes_in 0 83008 station_ip 46.225.214.119 83008 port 15728707 83008 nas_port_type Virtual 83008 remote_ip 5.5.5.217 83011 username amin.insta01 83011 unique_id port 83011 terminate_cause Lost-Carrier 83011 bytes_out 7056203 83011 bytes_in 178397659 83011 station_ip 5.120.21.53 83011 port 15728693 83011 nas_port_type Virtual 83011 remote_ip 5.5.5.229 83016 username kamali 83016 unique_id port 83016 terminate_cause User-Request 83016 bytes_out 49562 83016 bytes_in 130004 83016 station_ip 83.123.93.229 83016 port 15728714 83016 nas_port_type Virtual 83016 remote_ip 5.5.5.213 83025 username heydari 83025 unique_id port 83025 terminate_cause User-Request 83025 bytes_out 254942 83025 bytes_in 1048291 83025 station_ip 5.119.243.183 83025 port 15728717 83025 nas_port_type Virtual 83025 remote_ip 5.5.5.211 83028 username forozande 83028 unique_id port 83028 terminate_cause User-Request 83028 bytes_out 165532 83028 bytes_in 906863 83028 station_ip 37.129.229.49 83028 port 15728728 82999 station_ip 83.122.218.197 82999 port 15728698 82999 nas_port_type Virtual 82999 remote_ip 5.5.5.224 83004 username caferibar 83004 unique_id port 83004 terminate_cause Lost-Carrier 83004 bytes_out 14827 83004 bytes_in 146412 83004 station_ip 5.134.128.38 83004 port 15728701 83004 nas_port_type Virtual 83004 remote_ip 5.5.5.221 83009 username caferibar 83009 unique_id port 83009 terminate_cause Lost-Carrier 83009 bytes_out 413019 83009 bytes_in 2583012 83009 station_ip 5.125.233.197 83009 port 15728705 83009 nas_port_type Virtual 83009 remote_ip 5.5.5.219 83010 username asadi 83010 unique_id port 83010 terminate_cause User-Request 83010 bytes_out 58110 83010 bytes_in 611781 83010 station_ip 37.129.116.150 83010 port 15728710 83010 nas_port_type Virtual 83010 remote_ip 5.5.5.255 83015 username pouria 83015 unique_id port 83015 terminate_cause Lost-Carrier 83015 bytes_out 8528405 83015 bytes_in 317355333 83015 station_ip 5.119.137.230 83015 port 15728706 83015 nas_port_type Virtual 83015 remote_ip 5.5.5.218 83017 username caferibar 83017 unique_id port 83017 terminate_cause Lost-Carrier 83017 bytes_out 1031219 83017 bytes_in 5493120 83017 station_ip 37.156.56.113 83017 port 15728709 83017 nas_port_type Virtual 83017 remote_ip 5.5.5.216 83018 username alinezhad 83018 unique_id port 83018 terminate_cause User-Request 83018 bytes_out 0 83018 bytes_in 0 83018 station_ip 5.202.64.61 83018 port 15728715 83018 nas_port_type Virtual 83018 remote_ip 5.5.5.212 83020 username caferibar 83020 unique_id port 83020 terminate_cause Lost-Carrier 83020 bytes_out 5871973 83020 bytes_in 101911832 83020 station_ip 5.119.251.65 83020 port 15728711 83020 nas_port_type Virtual 83020 remote_ip 5.5.5.215 83021 username alinezhad 83021 unique_id port 83021 terminate_cause User-Request 83021 bytes_out 0 83021 bytes_in 0 83021 station_ip 5.202.64.61 83021 port 15728718 83021 nas_port_type Virtual 83021 remote_ip 5.5.5.212 83024 username alinezhad 83024 unique_id port 83024 terminate_cause User-Request 83024 bytes_out 7588 83024 bytes_in 25110 83024 station_ip 5.202.64.61 83024 port 15728720 83024 nas_port_type Virtual 83024 remote_ip 5.5.5.212 83036 username aminvpn 83036 mac 83036 bytes_out 0 83036 bytes_in 0 83036 station_ip 5.119.68.114 83036 port 16 83036 unique_id port 83036 remote_ip 10.8.0.6 83038 username caferibar 83038 unique_id port 83038 terminate_cause Lost-Carrier 83038 bytes_out 130972 83038 bytes_in 645303 83038 station_ip 93.114.24.160 83038 port 15728734 83038 nas_port_type Virtual 83038 remote_ip 5.5.5.204 83039 username madadi 83039 unique_id port 83039 terminate_cause Lost-Carrier 83039 bytes_out 458525 83039 bytes_in 13219636 83039 station_ip 5.119.41.51 83039 port 15728735 83039 nas_port_type Virtual 83039 remote_ip 5.5.5.203 83043 username ahmadi 83043 unique_id port 83043 terminate_cause User-Request 83043 bytes_out 33267 83043 bytes_in 528264 83043 station_ip 83.122.33.213 83043 port 15728739 83043 nas_port_type Virtual 83043 remote_ip 5.5.5.222 83049 username soleymani 83049 unique_id port 83049 terminate_cause Lost-Carrier 83049 bytes_out 97477 83049 bytes_in 260809 83049 station_ip 5.126.109.51 83049 port 15728745 83049 nas_port_type Virtual 83049 remote_ip 5.5.5.197 83055 username soleymani 83055 unique_id port 83055 terminate_cause Lost-Carrier 83055 bytes_out 97325 83055 bytes_in 346524 83055 station_ip 5.125.187.170 83055 port 15728751 83055 nas_port_type Virtual 83055 remote_ip 5.5.5.195 83056 username asadi 83056 unique_id port 83056 terminate_cause User-Request 83056 bytes_out 21284 83056 bytes_in 79745 83056 station_ip 83.123.63.27 83013 station_ip 46.225.214.119 83013 port 15728708 83013 nas_port_type Virtual 83013 remote_ip 5.5.5.217 83014 username alinezhad 83014 unique_id port 83014 terminate_cause User-Request 83014 bytes_out 0 83014 bytes_in 0 83014 station_ip 5.202.29.23 83014 port 15728713 83014 nas_port_type Virtual 83014 remote_ip 5.5.5.214 83023 username asadi 83023 unique_id port 83023 terminate_cause User-Request 83023 bytes_out 299719 83023 bytes_in 8438404 83023 station_ip 37.129.116.150 83023 port 15728719 83023 nas_port_type Virtual 83023 remote_ip 5.5.5.255 83030 username aminvpn 83030 mac 83030 bytes_out 0 83030 bytes_in 0 83030 station_ip 5.119.68.114 83030 port 15 83030 unique_id port 83030 remote_ip 10.8.0.6 83044 username alinezhad 83044 unique_id port 83044 terminate_cause User-Request 83044 bytes_out 0 83044 bytes_in 0 83044 station_ip 5.202.64.61 83044 port 15728741 83044 nas_port_type Virtual 83044 remote_ip 5.5.5.212 83046 username asadi 83046 unique_id port 83046 terminate_cause User-Request 83046 bytes_out 170194 83046 bytes_in 2310331 83046 station_ip 83.123.63.27 83046 port 15728746 83046 nas_port_type Virtual 83046 remote_ip 5.5.5.196 83050 username asadi 83050 unique_id port 83050 terminate_cause User-Request 83050 bytes_out 42219 83050 bytes_in 648947 83050 station_ip 83.123.63.27 83050 port 15728748 83050 nas_port_type Virtual 83050 remote_ip 5.5.5.196 83053 username amir 83053 unique_id port 83053 terminate_cause Lost-Carrier 83053 bytes_out 3689830 83053 bytes_in 47816767 83053 station_ip 46.225.208.34 83053 port 15728737 83053 nas_port_type Virtual 83053 remote_ip 5.5.5.201 83054 username aminvpn 83054 mac 83054 bytes_out 0 83054 bytes_in 0 83054 station_ip 5.119.68.114 83054 port 33 83054 unique_id port 83054 remote_ip 10.8.1.10 83062 username forozande 83062 unique_id port 83062 terminate_cause User-Request 83062 bytes_out 209159 83062 bytes_in 1348611 83062 station_ip 83.123.90.111 83062 port 15728758 83062 nas_port_type Virtual 83062 remote_ip 5.5.5.192 83063 username amin.insta13 83063 mac 83063 bytes_out 2431382 83063 bytes_in 7075160 83063 station_ip 83.122.152.72 83063 port 16 83063 unique_id port 83063 remote_ip 10.8.0.18 83065 username madadi 83065 unique_id port 83065 terminate_cause Lost-Carrier 83065 bytes_out 60432 83065 bytes_in 237037 83065 station_ip 5.119.52.135 83065 port 15728755 83065 nas_port_type Virtual 83065 remote_ip 5.5.5.194 83067 username heydari 83067 kill_reason Maximum number of concurrent logins reached 83067 unique_id port 83067 bytes_out 0 83067 bytes_in 0 83067 station_ip 5.119.238.219 83067 port 15728765 83067 nas_port_type Virtual 83071 username heydari 83071 unique_id port 83071 terminate_cause NAS-Error 83071 bytes_out 0 83071 bytes_in 342 83071 station_ip 37.27.2.112 83071 port 15728763 83071 nas_port_type Virtual 83071 remote_ip 5.5.5.188 83073 username caferibar 83073 unique_id port 83073 terminate_cause Lost-Carrier 83073 bytes_out 448645 83073 bytes_in 6458361 83073 station_ip 5.125.250.243 83073 port 15728760 83073 nas_port_type Virtual 83073 remote_ip 5.5.5.190 83081 username asadi 83081 unique_id port 83081 terminate_cause User-Request 83081 bytes_out 36119 83081 bytes_in 117712 83081 station_ip 83.122.26.186 83081 port 15728774 83081 nas_port_type Virtual 83081 remote_ip 5.5.5.185 83089 username alinezhad 83089 unique_id port 83089 terminate_cause User-Request 83089 bytes_out 0 83089 bytes_in 0 83089 station_ip 5.202.64.61 83089 port 15728779 83089 nas_port_type Virtual 83089 remote_ip 5.5.5.212 83091 username asadi 83091 unique_id port 83028 nas_port_type Virtual 83028 remote_ip 5.5.5.208 83032 username aminvpn 83032 unique_id port 83032 terminate_cause User-Request 83032 bytes_out 0 83032 bytes_in 0 83032 station_ip 5.233.72.32 83032 port 15728732 83032 nas_port_type Virtual 83032 remote_ip 5.5.5.205 83034 username madadi 83034 unique_id port 83034 terminate_cause Lost-Carrier 83034 bytes_out 36593 83034 bytes_in 272253 83034 station_ip 5.119.253.176 83034 port 15728731 83034 nas_port_type Virtual 83034 remote_ip 5.5.5.206 83041 username aminvpn 83041 kill_reason Another user logged on this global unique id 83041 mac 83041 bytes_out 0 83041 bytes_in 0 83041 station_ip 5.119.68.114 83041 port 33 83041 unique_id port 83041 remote_ip 10.8.1.10 83045 username alinezhad 83045 unique_id port 83045 terminate_cause User-Request 83045 bytes_out 8150 83045 bytes_in 16349 83045 station_ip 5.202.64.61 83045 port 15728743 83045 nas_port_type Virtual 83045 remote_ip 5.5.5.212 83047 username soleymani 83047 unique_id port 83047 terminate_cause Lost-Carrier 83047 bytes_out 207766 83047 bytes_in 838888 83047 station_ip 5.125.243.139 83047 port 15728744 83047 nas_port_type Virtual 83047 remote_ip 5.5.5.198 83048 username alinezhad 83048 unique_id port 83048 terminate_cause User-Request 83048 bytes_out 0 83048 bytes_in 0 83048 station_ip 5.202.64.61 83048 port 15728747 83048 nas_port_type Virtual 83048 remote_ip 5.5.5.212 83052 username asadi 83052 unique_id port 83052 terminate_cause User-Request 83052 bytes_out 61213 83052 bytes_in 258544 83052 station_ip 83.123.63.27 83052 port 15728750 83052 nas_port_type Virtual 83052 remote_ip 5.5.5.196 83059 username madadi 83059 unique_id port 83059 terminate_cause Lost-Carrier 83059 bytes_out 1518567 83059 bytes_in 14056375 83059 station_ip 5.119.72.0 83059 port 15728738 83059 nas_port_type Virtual 83059 remote_ip 5.5.5.200 83072 username arman 83072 unique_id port 83072 terminate_cause Lost-Carrier 83072 bytes_out 2881394 83072 bytes_in 16914693 83072 station_ip 5.119.85.239 83072 port 15728694 83072 nas_port_type Virtual 83072 remote_ip 5.5.5.228 83076 username alinezhad 83076 unique_id port 83076 terminate_cause User-Request 83076 bytes_out 0 83076 bytes_in 0 83076 station_ip 5.202.64.61 83076 port 15728771 83076 nas_port_type Virtual 83076 remote_ip 5.5.5.212 83078 username asadi 83078 unique_id port 83078 terminate_cause User-Request 83078 bytes_out 87569 83078 bytes_in 1101115 83078 station_ip 83.122.26.186 83078 port 15728773 83078 nas_port_type Virtual 83078 remote_ip 5.5.5.185 83084 username caferibar 83084 unique_id port 83084 terminate_cause Lost-Carrier 83084 bytes_out 9610245 83084 bytes_in 221588596 83084 station_ip 5.119.251.65 83084 port 15728740 83084 nas_port_type Virtual 83084 remote_ip 5.5.5.215 83086 username shokokian 83086 unique_id port 83086 terminate_cause User-Request 83086 bytes_out 68912 83086 bytes_in 388019 83086 station_ip 151.238.225.42 83086 port 15728776 83086 nas_port_type Virtual 83086 remote_ip 5.5.5.184 83088 username alinezhad 83088 unique_id port 83088 terminate_cause User-Request 83088 bytes_out 0 83088 bytes_in 0 83088 station_ip 5.202.64.61 83088 port 15728778 83088 nas_port_type Virtual 83088 remote_ip 5.5.5.212 83106 username forozande 83106 unique_id port 83106 terminate_cause User-Request 83106 bytes_out 53288 83106 bytes_in 146868 83106 station_ip 83.123.177.197 83106 port 15728798 83106 nas_port_type Virtual 83106 remote_ip 5.5.5.176 83111 username ahmadi 83111 unique_id port 83111 terminate_cause User-Request 83111 bytes_out 26146 83111 bytes_in 101039 83111 station_ip 83.122.33.213 83111 port 15728806 83035 terminate_cause User-Request 83035 bytes_out 22200 83035 bytes_in 139021 83035 station_ip 83.122.33.213 83035 port 15728733 83035 nas_port_type Virtual 83035 remote_ip 5.5.5.222 83037 username aminvpn 83037 mac 83037 bytes_out 0 83037 bytes_in 0 83037 station_ip 5.119.68.114 83037 port 33 83037 unique_id port 83037 remote_ip 10.8.1.10 83040 username pouria 83040 unique_id port 83040 terminate_cause Lost-Carrier 83040 bytes_out 3338922 83040 bytes_in 118638422 83040 station_ip 5.119.9.137 83040 port 15728736 83040 nas_port_type Virtual 83040 remote_ip 5.5.5.202 83042 username aminvpn 83042 mac 83042 bytes_out 0 83042 bytes_in 0 83042 station_ip 5.119.68.114 83042 port 33 83042 unique_id port 83051 username asadi 83051 unique_id port 83051 terminate_cause User-Request 83051 bytes_out 40583 83051 bytes_in 386520 83051 station_ip 83.123.63.27 83051 port 15728749 83051 nas_port_type Virtual 83051 remote_ip 5.5.5.196 83058 username amir 83058 unique_id port 83058 terminate_cause Lost-Carrier 83058 bytes_out 55905 83058 bytes_in 421895 83058 station_ip 46.225.208.34 83058 port 15728752 83058 nas_port_type Virtual 83058 remote_ip 5.5.5.201 83060 username asadi 83060 unique_id port 83060 terminate_cause User-Request 83060 bytes_out 72333 83060 bytes_in 452967 83060 station_ip 83.123.63.27 83060 port 15728756 83060 nas_port_type Virtual 83060 remote_ip 5.5.5.196 83061 username kamali 83061 unique_id port 83061 terminate_cause User-Request 83061 bytes_out 49340 83061 bytes_in 445460 83061 station_ip 113.203.17.59 83061 port 15728757 83061 nas_port_type Virtual 83061 remote_ip 5.5.5.193 83066 username heydari 83066 kill_reason Maximum number of concurrent logins reached 83066 unique_id port 83066 bytes_out 0 83066 bytes_in 0 83066 station_ip 5.119.238.219 83066 port 15728764 83066 nas_port_type Virtual 83068 username heydari 83068 kill_reason Maximum number of concurrent logins reached 83068 unique_id port 83068 bytes_out 0 83068 bytes_in 0 83068 station_ip 5.119.238.219 83068 port 15728766 83068 nas_port_type Virtual 83069 username heydari 83069 kill_reason Maximum number of concurrent logins reached 83069 unique_id port 83069 bytes_out 0 83069 bytes_in 0 83069 station_ip 37.27.2.112 83069 port 15728767 83069 nas_port_type Virtual 83074 username ahmadi 83074 unique_id port 83074 terminate_cause User-Request 83074 bytes_out 36074 83074 bytes_in 265095 83074 station_ip 83.122.33.213 83074 port 15728770 83074 nas_port_type Virtual 83074 remote_ip 5.5.5.222 83077 username madadi 83077 unique_id port 83077 terminate_cause Lost-Carrier 83077 bytes_out 19452 83077 bytes_in 137746 83077 station_ip 5.119.139.159 83077 port 15728769 83077 nas_port_type Virtual 83077 remote_ip 5.5.5.187 83079 username zamanialireza 83079 unique_id port 83079 terminate_cause User-Request 83079 bytes_out 67306938 83079 bytes_in 446110565 83079 station_ip 113.203.2.189 83079 port 15728762 83079 nas_port_type Virtual 83079 remote_ip 5.5.5.189 83080 username ahmadipour 83080 unique_id port 83080 terminate_cause Lost-Carrier 83080 bytes_out 2715281 83080 bytes_in 53749419 83080 station_ip 113.203.125.33 83080 port 15728772 83080 nas_port_type Virtual 83080 remote_ip 5.5.5.186 83085 username amin.insta13 83085 mac 83085 bytes_out 813080 83085 bytes_in 3770224 83085 station_ip 83.123.159.117 83085 port 16 83085 unique_id port 83085 remote_ip 10.8.0.18 83087 username aminvpn 83087 unique_id port 83087 terminate_cause User-Request 83087 bytes_out 224901 83087 bytes_in 572220 83087 station_ip 113.203.86.239 83087 port 15728777 83087 nas_port_type Virtual 83087 remote_ip 5.5.5.183 83056 port 15728753 83056 nas_port_type Virtual 83056 remote_ip 5.5.5.196 83057 username asadi 83057 unique_id port 83057 terminate_cause User-Request 83057 bytes_out 44788 83057 bytes_in 143131 83057 station_ip 83.123.63.27 83057 port 15728754 83057 nas_port_type Virtual 83057 remote_ip 5.5.5.196 83064 username alinezhad 83064 unique_id port 83064 terminate_cause User-Request 83064 bytes_out 0 83064 bytes_in 0 83064 station_ip 5.202.64.61 83064 port 15728761 83064 nas_port_type Virtual 83064 remote_ip 5.5.5.212 83070 username heydari 83070 unique_id port 83070 terminate_cause Lost-Carrier 83070 bytes_out 779394 83070 bytes_in 10845253 83070 station_ip 37.27.47.255 83070 port 15728742 83070 nas_port_type Virtual 83070 remote_ip 5.5.5.199 83075 username caferibar 83075 unique_id port 83075 terminate_cause Lost-Carrier 83075 bytes_out 1061138 83075 bytes_in 9499114 83075 station_ip 5.134.130.56 83075 port 15728759 83075 nas_port_type Virtual 83075 remote_ip 5.5.5.191 83082 username heydari 83082 kill_reason Maximum check online fails reached 83082 unique_id port 83082 bytes_out 174013 83082 bytes_in 751426 83082 station_ip 37.27.2.112 83082 port 15728768 83082 nas_port_type Virtual 83082 remote_ip 5.5.5.188 83083 username asadi 83083 unique_id port 83083 terminate_cause User-Request 83083 bytes_out 23333 83083 bytes_in 58143 83083 station_ip 83.122.26.186 83083 port 15728775 83083 nas_port_type Virtual 83083 remote_ip 5.5.5.185 83090 username amirabbas 83090 unique_id port 83090 terminate_cause User-Request 83090 bytes_out 42295288 83090 bytes_in 1021344587 83090 station_ip 151.238.237.211 83090 port 15728724 83090 nas_port_type Virtual 83090 remote_ip 5.5.5.242 83092 username asadi 83092 unique_id port 83092 terminate_cause User-Request 83092 bytes_out 80515 83092 bytes_in 194543 83092 station_ip 83.122.26.186 83092 port 15728783 83092 nas_port_type Virtual 83092 remote_ip 5.5.5.185 83098 username asadi 83098 unique_id port 83098 terminate_cause User-Request 83098 bytes_out 152866 83098 bytes_in 3917670 83098 station_ip 83.123.86.2 83098 port 15728790 83098 nas_port_type Virtual 83098 remote_ip 5.5.5.179 83102 username amin.insta13 83102 mac 83102 bytes_out 1123035 83102 bytes_in 5658151 83102 station_ip 83.122.237.144 83102 port 15 83102 unique_id port 83102 remote_ip 10.8.0.18 83105 username amin.insta01 83105 kill_reason Relative expiration date has reached 83105 unique_id port 83105 bytes_out 0 83105 bytes_in 0 83105 station_ip 5.119.52.109 83105 port 15728799 83105 nas_port_type Virtual 83109 username mahdixz 83109 unique_id port 83109 terminate_cause Lost-Carrier 83109 bytes_out 486395 83109 bytes_in 4164978 83109 station_ip 5.120.33.140 83109 port 15728802 83109 nas_port_type Virtual 83109 remote_ip 5.5.5.207 83115 username alinezhad 83115 unique_id port 83115 terminate_cause User-Request 83115 bytes_out 0 83115 bytes_in 0 83115 station_ip 37.129.124.239 83115 port 15728811 83115 nas_port_type Virtual 83115 remote_ip 5.5.5.171 83117 username soleymani 83117 unique_id port 83117 terminate_cause Lost-Carrier 83117 bytes_out 110665 83117 bytes_in 907840 83117 station_ip 5.126.49.215 83117 port 15728808 83117 nas_port_type Virtual 83117 remote_ip 5.5.5.172 83119 username soleymani 83119 unique_id port 83119 terminate_cause Lost-Carrier 83119 bytes_out 43313 83119 bytes_in 179393 83119 station_ip 5.126.226.33 83119 port 15728813 83119 nas_port_type Virtual 83119 remote_ip 5.5.5.170 83124 username forozande 83124 unique_id port 83124 terminate_cause User-Request 83124 bytes_out 174416 83124 bytes_in 1078601 83124 station_ip 83.123.235.1 83124 port 15728819 83091 terminate_cause User-Request 83091 bytes_out 24808 83091 bytes_in 30379 83091 station_ip 83.122.26.186 83091 port 15728782 83091 nas_port_type Virtual 83091 remote_ip 5.5.5.185 83095 username reza 83095 kill_reason Relative expiration date has reached 83095 unique_id port 83095 bytes_out 0 83095 bytes_in 0 83095 station_ip 37.129.143.174 83095 port 15728784 83095 nas_port_type Virtual 83096 username alinezhad 83096 unique_id port 83096 terminate_cause User-Request 83096 bytes_out 0 83096 bytes_in 0 83096 station_ip 83.122.233.226 83096 port 15728786 83096 nas_port_type Virtual 83096 remote_ip 5.5.5.180 83097 username aminvpn 83097 unique_id port 83097 terminate_cause User-Request 83097 bytes_out 156217 83097 bytes_in 2081762 83097 station_ip 5.120.24.245 83097 port 15728789 83097 nas_port_type Virtual 83097 remote_ip 5.5.5.182 83100 username kamali 83100 unique_id port 83100 terminate_cause User-Request 83100 bytes_out 21525 83100 bytes_in 49709 83100 station_ip 113.203.17.59 83100 port 15728793 83100 nas_port_type Virtual 83100 remote_ip 5.5.5.193 83101 username aminvpn 83101 unique_id port 83101 terminate_cause User-Request 83101 bytes_out 148514 83101 bytes_in 1904017 83101 station_ip 5.120.24.245 83101 port 15728796 83101 nas_port_type Virtual 83101 remote_ip 5.5.5.182 83104 username amin.insta01 83104 kill_reason Relative expiration date has reached 83104 unique_id port 83104 bytes_out 0 83104 bytes_in 0 83104 station_ip 5.119.52.109 83104 port 15728797 83104 nas_port_type Virtual 83107 username asadi 83107 unique_id port 83107 terminate_cause User-Request 83107 bytes_out 60764 83107 bytes_in 407229 83107 station_ip 83.123.86.2 83107 port 15728801 83107 nas_port_type Virtual 83107 remote_ip 5.5.5.179 83118 username mahdixz 83118 unique_id port 83118 terminate_cause User-Request 83118 bytes_out 8336118 83118 bytes_in 180480038 83118 station_ip 5.233.72.32 83118 port 15728803 83118 nas_port_type Virtual 83118 remote_ip 5.5.5.174 83120 username alinezhad 83120 unique_id port 83120 terminate_cause User-Request 83120 bytes_out 27305 83120 bytes_in 34480 83120 station_ip 83.122.181.17 83120 port 15728814 83120 nas_port_type Virtual 83120 remote_ip 5.5.5.169 83121 username amir 83121 unique_id port 83121 terminate_cause Lost-Carrier 83121 bytes_out 6828548 83121 bytes_in 144044848 83121 station_ip 46.225.212.154 83121 port 15728792 83121 nas_port_type Virtual 83121 remote_ip 5.5.5.178 83122 username asadi 83122 unique_id port 83122 terminate_cause User-Request 83122 bytes_out 98284 83122 bytes_in 153478 83122 station_ip 83.123.86.2 83122 port 15728817 83122 nas_port_type Virtual 83122 remote_ip 5.5.5.179 83125 username madadi 83125 unique_id port 83125 terminate_cause Lost-Carrier 83125 bytes_out 91030 83125 bytes_in 195096 83125 station_ip 5.119.9.15 83125 port 15728815 83125 nas_port_type Virtual 83125 remote_ip 5.5.5.168 83137 username aminvpn 83137 mac 83137 bytes_out 0 83137 bytes_in 0 83137 station_ip 5.119.68.114 83137 port 16 83137 unique_id port 83137 remote_ip 10.8.0.6 83142 username aminvpn 83142 mac 83142 bytes_out 0 83142 bytes_in 0 83142 station_ip 5.119.24.153 83142 port 17 83142 unique_id port 83142 remote_ip 10.8.0.6 83148 username alinezhad 83148 unique_id port 83148 terminate_cause User-Request 83148 bytes_out 42429 83148 bytes_in 172887 83148 station_ip 113.203.24.38 83148 port 15728839 83148 nas_port_type Virtual 83148 remote_ip 5.5.5.151 83151 username asadi 83151 unique_id port 83151 terminate_cause User-Request 83151 bytes_out 55885 83151 bytes_in 270650 83151 station_ip 83.123.86.2 83151 port 15728841 83093 username aminvpn 83093 unique_id port 83093 terminate_cause Lost-Carrier 83093 bytes_out 218766 83093 bytes_in 2189832 83093 station_ip 5.120.24.245 83093 port 15728781 83093 nas_port_type Virtual 83093 remote_ip 5.5.5.182 83094 username aminvpn 83094 mac 83094 bytes_out 4745950 83094 bytes_in 36989634 83094 station_ip 5.119.68.114 83094 port 15 83094 unique_id port 83094 remote_ip 10.8.0.6 83099 username asadi 83099 unique_id port 83099 terminate_cause User-Request 83099 bytes_out 42585 83099 bytes_in 92901 83099 station_ip 83.123.86.2 83099 port 15728791 83099 nas_port_type Virtual 83099 remote_ip 5.5.5.179 83103 username mahdixz 83103 unique_id port 83103 terminate_cause Lost-Carrier 83103 bytes_out 743853 83103 bytes_in 15117205 83103 station_ip 5.120.33.140 83103 port 15728794 83103 nas_port_type Virtual 83103 remote_ip 5.5.5.207 83108 username reza 83108 kill_reason Relative expiration date has reached 83108 unique_id port 83108 bytes_out 0 83108 bytes_in 0 83108 station_ip 113.203.71.146 83108 port 15728804 83108 nas_port_type Virtual 83110 username asadi 83110 unique_id port 83110 terminate_cause User-Request 83110 bytes_out 64698 83110 bytes_in 823467 83110 station_ip 83.123.86.2 83110 port 15728805 83110 nas_port_type Virtual 83110 remote_ip 5.5.5.179 83112 username farhad 83112 unique_id port 83112 terminate_cause Lost-Carrier 83112 bytes_out 14017460 83112 bytes_in 339289506 83112 station_ip 5.119.228.48 83112 port 15728785 83112 nas_port_type Virtual 83112 remote_ip 5.5.5.181 83114 username mobina 83114 kill_reason Relative expiration date has reached 83114 unique_id port 83114 bytes_out 0 83114 bytes_in 0 83114 station_ip 78.39.15.153 83114 port 15728810 83114 nas_port_type Virtual 83123 username alinezhad 83123 unique_id port 83123 terminate_cause User-Request 83123 bytes_out 0 83123 bytes_in 0 83123 station_ip 83.123.129.146 83123 port 15728818 83123 nas_port_type Virtual 83123 remote_ip 5.5.5.166 83128 username aminvpn 83128 mac 83128 bytes_out 5470 83128 bytes_in 9611 83128 station_ip 5.119.68.114 83128 port 16 83128 unique_id port 83128 remote_ip 10.8.0.6 83134 username forozande 83134 unique_id port 83134 terminate_cause User-Request 83134 bytes_out 187119 83134 bytes_in 1547761 83134 station_ip 83.122.28.103 83134 port 15728828 83134 nas_port_type Virtual 83134 remote_ip 5.5.5.160 83138 username amirreza 83138 unique_id port 83138 terminate_cause User-Request 83138 bytes_out 610867 83138 bytes_in 22070748 83138 station_ip 5.120.88.153 83138 port 15728831 83138 nas_port_type Virtual 83138 remote_ip 5.5.5.158 83139 username aminvpn 83139 kill_reason Maximum check online fails reached 83139 mac 83139 bytes_out 0 83139 bytes_in 0 83139 station_ip 5.119.68.114 83139 port 16 83139 unique_id port 83140 username amin.insta22 83140 kill_reason Maximum check online fails reached 83140 unique_id port 83140 bytes_out 0 83140 bytes_in 0 83140 station_ip 31.56.156.48 83140 port 15728832 83140 nas_port_type Virtual 83149 username caferibar 83149 unique_id port 83149 terminate_cause Lost-Carrier 83149 bytes_out 203449 83149 bytes_in 1147398 83149 station_ip 5.125.250.243 83149 port 15728824 83149 nas_port_type Virtual 83149 remote_ip 5.5.5.190 83152 username aminvpn 83152 mac 83152 bytes_out 0 83152 bytes_in 0 83152 station_ip 5.120.94.122 83152 port 33 83152 unique_id port 83152 remote_ip 10.8.1.10 83153 username aminvpn 83153 mac 83153 bytes_out 6971 83153 bytes_in 11675 83153 station_ip 5.120.94.122 83153 port 33 83153 unique_id port 83153 remote_ip 10.8.1.10 83156 username amin.insta22 83111 nas_port_type Virtual 83111 remote_ip 5.5.5.222 83113 username mobina 83113 kill_reason Relative expiration date has reached 83113 unique_id port 83113 bytes_out 0 83113 bytes_in 0 83113 station_ip 78.39.15.153 83113 port 15728809 83113 nas_port_type Virtual 83116 username asadi 83116 unique_id port 83116 terminate_cause User-Request 83116 bytes_out 36091 83116 bytes_in 499879 83116 station_ip 83.123.86.2 83116 port 15728812 83116 nas_port_type Virtual 83116 remote_ip 5.5.5.179 83126 username afarin 83126 unique_id port 83126 terminate_cause User-Request 83126 bytes_out 65399 83126 bytes_in 378509 83126 station_ip 83.122.10.245 83126 port 15728820 83126 nas_port_type Virtual 83126 remote_ip 5.5.5.164 83130 username mahbobeh 83130 unique_id port 83130 terminate_cause Lost-Carrier 83130 bytes_out 2469267 83130 bytes_in 36538523 83130 station_ip 83.123.32.200 83130 port 15728795 83130 nas_port_type Virtual 83130 remote_ip 5.5.5.177 83141 username forozande 83141 unique_id port 83141 terminate_cause User-Request 83141 bytes_out 20985 83141 bytes_in 112904 83141 station_ip 83.123.63.221 83141 port 15728835 83141 nas_port_type Virtual 83141 remote_ip 5.5.5.155 83145 username amin.insta22 83145 unique_id port 83145 terminate_cause Lost-Carrier 83145 bytes_out 506597 83145 bytes_in 3159855 83145 station_ip 31.56.156.48 83145 port 15728833 83145 nas_port_type Virtual 83145 remote_ip 5.5.5.157 83150 username alinezhad 83150 unique_id port 83150 terminate_cause User-Request 83150 bytes_out 12859 83150 bytes_in 23878 83150 station_ip 113.203.24.38 83150 port 15728840 83150 nas_port_type Virtual 83150 remote_ip 5.5.5.151 83155 username mahbobeh 83155 unique_id port 83155 terminate_cause Lost-Carrier 83155 bytes_out 70989 83155 bytes_in 948714 83155 station_ip 83.123.32.200 83155 port 15728830 83155 nas_port_type Virtual 83155 remote_ip 5.5.5.177 83157 username asadi 83157 unique_id port 83157 terminate_cause User-Request 83157 bytes_out 409907 83157 bytes_in 12090831 83157 station_ip 83.123.86.2 83157 port 15728843 83157 nas_port_type Virtual 83157 remote_ip 5.5.5.179 83158 username zamanialireza 83158 unique_id port 83158 terminate_cause Lost-Carrier 83158 bytes_out 6402892 83158 bytes_in 83343036 83158 station_ip 94.183.213.166 83158 port 15728807 83158 nas_port_type Virtual 83158 remote_ip 5.5.5.173 83160 username alinezhad 83160 unique_id port 83160 terminate_cause User-Request 83160 bytes_out 0 83160 bytes_in 0 83160 station_ip 83.123.137.162 83160 port 15728845 83160 nas_port_type Virtual 83160 remote_ip 5.5.5.149 83161 username aminvpn 83161 mac 83161 bytes_out 819113 83161 bytes_in 7624084 83161 station_ip 5.120.94.122 83161 port 33 83161 unique_id port 83161 remote_ip 10.8.1.10 83163 username mahdixz 83163 unique_id port 83163 terminate_cause User-Request 83163 bytes_out 0 83163 bytes_in 0 83163 station_ip 5.233.72.32 83163 port 15728848 83163 nas_port_type Virtual 83163 remote_ip 5.5.5.174 83164 username aminvpn 83164 unique_id port 83164 terminate_cause User-Request 83164 bytes_out 97252 83164 bytes_in 678460 83164 station_ip 5.233.72.32 83164 port 15728849 83164 nas_port_type Virtual 83164 remote_ip 5.5.5.205 83166 username amin.insta13 83166 kill_reason Relative expiration date has reached 83166 mac 83166 bytes_out 12086380 83166 bytes_in 11870925 83166 station_ip 37.129.17.89 83166 port 15 83166 unique_id port 83166 remote_ip 10.8.0.18 83170 username aminvpn 83170 mac 83170 bytes_out 0 83170 bytes_in 0 83170 station_ip 5.120.94.122 83170 port 33 83170 unique_id port 83170 remote_ip 10.8.1.10 83175 username alinezhad 83124 nas_port_type Virtual 83124 remote_ip 5.5.5.165 83127 username aminvpn 83127 mac 83127 bytes_out 2980472 83127 bytes_in 44219920 83127 station_ip 5.119.68.114 83127 port 15 83127 unique_id port 83127 remote_ip 10.8.0.6 83129 username arabpour 83129 unique_id port 83129 terminate_cause User-Request 83129 bytes_out 152577 83129 bytes_in 1193183 83129 station_ip 37.129.149.234 83129 port 15728821 83129 nas_port_type Virtual 83129 remote_ip 5.5.5.163 83131 username farhad 83131 unique_id port 83131 terminate_cause User-Request 83131 bytes_out 0 83131 bytes_in 0 83131 station_ip 5.119.248.213 83131 port 15728823 83131 nas_port_type Virtual 83131 remote_ip 5.5.5.162 83132 username aminvpn 83132 mac 83132 bytes_out 0 83132 bytes_in 0 83132 station_ip 5.119.68.114 83132 port 15 83132 unique_id port 83132 remote_ip 10.8.0.6 83133 username arabpour 83133 unique_id port 83133 terminate_cause User-Request 83133 bytes_out 161094 83133 bytes_in 3881431 83133 station_ip 83.122.35.237 83133 port 15728827 83133 nas_port_type Virtual 83133 remote_ip 5.5.5.161 83135 username madadi 83135 unique_id port 83135 terminate_cause Lost-Carrier 83135 bytes_out 10852 83135 bytes_in 126824 83135 station_ip 5.120.66.35 83135 port 15728829 83135 nas_port_type Virtual 83135 remote_ip 5.5.5.159 83136 username caferibar 83136 unique_id port 83136 terminate_cause Lost-Carrier 83136 bytes_out 6432809 83136 bytes_in 176826839 83136 station_ip 5.119.106.26 83136 port 15728816 83136 nas_port_type Virtual 83136 remote_ip 5.5.5.167 83143 username madadi 83143 unique_id port 83143 terminate_cause User-Request 83143 bytes_out 94221 83143 bytes_in 138048 83143 station_ip 5.119.13.36 83143 port 15728834 83143 nas_port_type Virtual 83143 remote_ip 5.5.5.156 83144 username arabpour 83144 unique_id port 83144 terminate_cause User-Request 83144 bytes_out 0 83144 bytes_in 0 83144 station_ip 83.122.175.163 83144 port 15728837 83144 nas_port_type Virtual 83144 remote_ip 5.5.5.153 83146 username ahmadipour 83146 unique_id port 83146 terminate_cause Lost-Carrier 83146 bytes_out 84140336 83146 bytes_in 36921014 83146 station_ip 113.203.75.73 83146 port 15728836 83146 nas_port_type Virtual 83146 remote_ip 5.5.5.154 83147 username ahmadi 83147 unique_id port 83147 terminate_cause User-Request 83147 bytes_out 0 83147 bytes_in 0 83147 station_ip 83.122.83.137 83147 port 15728838 83147 nas_port_type Virtual 83147 remote_ip 5.5.5.152 83159 username alinezhad 83159 unique_id port 83159 terminate_cause User-Request 83159 bytes_out 0 83159 bytes_in 0 83159 station_ip 83.123.36.49 83159 port 15728844 83159 nas_port_type Virtual 83159 remote_ip 5.5.5.150 83171 username jamali 83171 unique_id port 83171 terminate_cause User-Request 83171 bytes_out 413011 83171 bytes_in 3550289 83171 station_ip 5.120.170.31 83171 port 15728851 83171 nas_port_type Virtual 83171 remote_ip 5.5.5.147 83172 username jamali 83172 unique_id port 83172 terminate_cause User-Request 83172 bytes_out 0 83172 bytes_in 0 83172 station_ip 5.120.170.31 83172 port 15728852 83172 nas_port_type Virtual 83172 remote_ip 5.5.5.147 83187 username zamanialireza 83187 unique_id port 83187 terminate_cause User-Request 83187 bytes_out 179173 83187 bytes_in 2709890 83187 station_ip 37.129.71.146 83187 port 15728871 83187 nas_port_type Virtual 83187 remote_ip 5.5.5.139 83198 username arabpour 83198 unique_id port 83198 terminate_cause User-Request 83198 bytes_out 346405 83198 bytes_in 10831813 83198 station_ip 113.203.97.28 83198 port 15728880 83198 nas_port_type Virtual 83198 remote_ip 5.5.5.137 83208 username shirin 83151 nas_port_type Virtual 83151 remote_ip 5.5.5.179 83154 username farhad 83154 unique_id port 83154 terminate_cause Lost-Carrier 83154 bytes_out 7497358 83154 bytes_in 115615458 83154 station_ip 5.119.248.213 83154 port 15728825 83154 nas_port_type Virtual 83154 remote_ip 5.5.5.162 83162 username mahbobeh 83162 unique_id port 83162 terminate_cause Lost-Carrier 83162 bytes_out 33536 83162 bytes_in 389046 83162 station_ip 83.123.32.200 83162 port 15728846 83162 nas_port_type Virtual 83162 remote_ip 5.5.5.177 83165 username amin.insta13 83165 kill_reason Relative expiration date has reached 83165 mac 83165 bytes_out 0 83165 bytes_in 0 83165 station_ip 37.129.17.89 83165 port 17 83165 unique_id port 83167 username aminvpn 83167 mac 83167 bytes_out 0 83167 bytes_in 0 83167 station_ip 5.120.94.122 83167 port 33 83167 unique_id port 83167 remote_ip 10.8.1.10 83173 username forozande 83173 unique_id port 83173 terminate_cause User-Request 83173 bytes_out 0 83173 bytes_in 0 83173 station_ip 83.122.227.157 83173 port 15728856 83173 nas_port_type Virtual 83173 remote_ip 5.5.5.146 83176 username caferibar 83176 unique_id port 83176 terminate_cause User-Request 83176 bytes_out 0 83176 bytes_in 0 83176 station_ip 5.126.178.111 83176 port 15728862 83176 nas_port_type Virtual 83176 remote_ip 5.5.5.141 83177 username alirezazamani 83177 kill_reason Relative expiration date has reached 83177 unique_id port 83177 bytes_out 0 83177 bytes_in 0 83177 station_ip 5.126.178.111 83177 port 15728863 83177 nas_port_type Virtual 83186 username asadi 83186 unique_id port 83186 terminate_cause User-Request 83186 bytes_out 0 83186 bytes_in 0 83186 station_ip 83.123.86.2 83186 port 15728869 83186 nas_port_type Virtual 83186 remote_ip 5.5.5.179 83190 username goli 83190 kill_reason Absolute expiration date has reached 83190 unique_id port 83190 bytes_out 0 83190 bytes_in 0 83190 station_ip 113.203.106.98 83190 port 15728874 83190 nas_port_type Virtual 83192 username aminvpn 83192 mac 83192 bytes_out 585129 83192 bytes_in 5751291 83192 station_ip 5.120.94.122 83192 port 33 83192 unique_id port 83192 remote_ip 10.8.1.10 83197 username arabpour 83197 unique_id port 83197 terminate_cause User-Request 83197 bytes_out 0 83197 bytes_in 0 83197 station_ip 113.203.97.28 83197 port 15728879 83197 nas_port_type Virtual 83197 remote_ip 5.5.5.137 83203 username asadi 83203 unique_id port 83203 terminate_cause User-Request 83203 bytes_out 37165 83203 bytes_in 418837 83203 station_ip 83.123.86.2 83203 port 15728886 83203 nas_port_type Virtual 83203 remote_ip 5.5.5.179 83205 username ahmadi 83205 unique_id port 83205 terminate_cause Lost-Carrier 83205 bytes_out 37685 83205 bytes_in 209294 83205 station_ip 37.129.182.146 83205 port 15728887 83205 nas_port_type Virtual 83205 remote_ip 5.5.5.134 83210 username shirin 83210 unique_id port 83210 terminate_cause User-Request 83210 bytes_out 19203 83210 bytes_in 25410 83210 station_ip 83.122.75.205 83210 port 15728894 83210 nas_port_type Virtual 83210 remote_ip 5.5.5.131 83214 username amin.insta13 83214 kill_reason Relative expiration date has reached 83214 mac 83214 bytes_out 0 83214 bytes_in 0 83214 station_ip 83.123.163.149 83214 port 15 83214 unique_id port 83220 username amin.insta13 83220 kill_reason Relative expiration date has reached 83220 mac 83220 bytes_out 0 83220 bytes_in 0 83220 station_ip 83.123.163.149 83220 port 15 83220 unique_id port 83223 username shirin 83223 unique_id port 83223 terminate_cause User-Request 83223 bytes_out 413479 83223 bytes_in 11717310 83223 station_ip 83.122.75.205 83156 unique_id port 83156 terminate_cause Lost-Carrier 83156 bytes_out 95972 83156 bytes_in 657237 83156 station_ip 31.56.156.48 83156 port 15728842 83156 nas_port_type Virtual 83156 remote_ip 5.5.5.157 83168 username madadi 83168 unique_id port 83168 terminate_cause User-Request 83168 bytes_out 224315 83168 bytes_in 343451 83168 station_ip 5.120.132.180 83168 port 15728847 83168 nas_port_type Virtual 83168 remote_ip 5.5.5.148 83169 username mahbobeh 83169 unique_id port 83169 terminate_cause Lost-Carrier 83169 bytes_out 19631 83169 bytes_in 196906 83169 station_ip 83.123.32.200 83169 port 15728850 83169 nas_port_type Virtual 83169 remote_ip 5.5.5.177 83174 username forozande 83174 unique_id port 83174 terminate_cause User-Request 83174 bytes_out 33125 83174 bytes_in 335207 83174 station_ip 83.122.227.157 83174 port 15728857 83174 nas_port_type Virtual 83174 remote_ip 5.5.5.146 83179 username arman 83179 unique_id port 83179 terminate_cause Lost-Carrier 83179 bytes_out 15404655 83179 bytes_in 112369373 83179 station_ip 5.120.101.253 83179 port 15728800 83179 nas_port_type Virtual 83179 remote_ip 5.5.5.175 83181 username caferibar 83181 unique_id port 83181 terminate_cause Lost-Carrier 83181 bytes_out 172309 83181 bytes_in 1437797 83181 station_ip 5.200.116.68 83181 port 15728858 83181 nas_port_type Virtual 83181 remote_ip 5.5.5.145 83182 username soleymani 83182 unique_id port 83182 terminate_cause Lost-Carrier 83182 bytes_out 115982 83182 bytes_in 845354 83182 station_ip 5.125.249.87 83182 port 15728860 83182 nas_port_type Virtual 83182 remote_ip 5.5.5.143 83185 username asadi 83185 unique_id port 83185 terminate_cause User-Request 83185 bytes_out 254193 83185 bytes_in 2966347 83185 station_ip 83.123.86.2 83185 port 15728868 83185 nas_port_type Virtual 83185 remote_ip 5.5.5.179 83189 username asadi 83189 unique_id port 83189 terminate_cause User-Request 83189 bytes_out 21745 83189 bytes_in 569951 83189 station_ip 83.123.86.2 83189 port 15728873 83189 nas_port_type Virtual 83189 remote_ip 5.5.5.179 83191 username jamali 83191 unique_id port 83191 terminate_cause Lost-Carrier 83191 bytes_out 2507293 83191 bytes_in 64561088 83191 station_ip 5.120.170.31 83191 port 15728867 83191 nas_port_type Virtual 83191 remote_ip 5.5.5.147 83193 username asadi 83193 unique_id port 83193 terminate_cause User-Request 83193 bytes_out 124141 83193 bytes_in 3397167 83193 station_ip 83.123.86.2 83193 port 15728875 83193 nas_port_type Virtual 83193 remote_ip 5.5.5.179 83199 username asadi 83199 unique_id port 83199 terminate_cause User-Request 83199 bytes_out 81362 83199 bytes_in 527799 83199 station_ip 83.123.86.2 83199 port 15728881 83199 nas_port_type Virtual 83199 remote_ip 5.5.5.179 83201 username mahdavi 83201 unique_id port 83201 terminate_cause User-Request 83201 bytes_out 76147 83201 bytes_in 816719 83201 station_ip 83.123.136.173 83201 port 15728884 83201 nas_port_type Virtual 83201 remote_ip 5.5.5.135 83204 username alinezhad 83204 unique_id port 83204 terminate_cause User-Request 83204 bytes_out 10131 83204 bytes_in 17753 83204 station_ip 5.202.19.242 83204 port 15728888 83204 nas_port_type Virtual 83204 remote_ip 5.5.5.144 83207 username asadi 83207 unique_id port 83207 terminate_cause User-Request 83207 bytes_out 59898 83207 bytes_in 1173357 83207 station_ip 83.123.86.2 83207 port 15728891 83207 nas_port_type Virtual 83207 remote_ip 5.5.5.179 83211 username caferibar 83211 unique_id port 83211 terminate_cause Lost-Carrier 83211 bytes_out 703085 83211 bytes_in 15920172 83211 station_ip 5.126.178.111 83211 port 15728882 83211 nas_port_type Virtual 83211 remote_ip 5.5.5.141 83175 unique_id port 83175 terminate_cause User-Request 83175 bytes_out 17510 83175 bytes_in 34928 83175 station_ip 5.202.19.242 83175 port 15728859 83175 nas_port_type Virtual 83175 remote_ip 5.5.5.144 83178 username aminvpn 83178 unique_id port 83178 terminate_cause User-Request 83178 bytes_out 889526 83178 bytes_in 7029954 83178 station_ip 5.233.72.32 83178 port 15728853 83178 nas_port_type Virtual 83178 remote_ip 5.5.5.205 83180 username caferibar 83180 unique_id port 83180 terminate_cause User-Request 83180 bytes_out 543782 83180 bytes_in 1195658 83180 station_ip 5.126.178.111 83180 port 15728864 83180 nas_port_type Virtual 83180 remote_ip 5.5.5.141 83183 username caferibar 83183 unique_id port 83183 terminate_cause Lost-Carrier 83183 bytes_out 8944 83183 bytes_in 121560 83183 station_ip 5.125.89.72 83183 port 15728861 83183 nas_port_type Virtual 83183 remote_ip 5.5.5.142 83184 username amirabbas 83184 unique_id port 83184 terminate_cause User-Request 83184 bytes_out 53142031 83184 bytes_in 1545120380 83184 station_ip 151.238.237.211 83184 port 15728826 83184 nas_port_type Virtual 83184 remote_ip 5.5.5.242 83188 username asadi 83188 unique_id port 83188 terminate_cause User-Request 83188 bytes_out 0 83188 bytes_in 0 83188 station_ip 83.123.86.2 83188 port 15728872 83188 nas_port_type Virtual 83188 remote_ip 5.5.5.179 83194 username asadi 83194 unique_id port 83194 terminate_cause User-Request 83194 bytes_out 150379 83194 bytes_in 1780183 83194 station_ip 83.123.86.2 83194 port 15728877 83194 nas_port_type Virtual 83194 remote_ip 5.5.5.179 83195 username arabpour 83195 unique_id port 83195 terminate_cause User-Request 83195 bytes_out 0 83195 bytes_in 0 83195 station_ip 113.203.97.28 83195 port 15728878 83195 nas_port_type Virtual 83195 remote_ip 5.5.5.137 83196 username madadi 83196 unique_id port 83196 terminate_cause Lost-Carrier 83196 bytes_out 291865 83196 bytes_in 549038 83196 station_ip 5.119.226.184 83196 port 15728865 83196 nas_port_type Virtual 83196 remote_ip 5.5.5.140 83200 username zamanialireza 83200 unique_id port 83200 terminate_cause User-Request 83200 bytes_out 107355 83200 bytes_in 385271 83200 station_ip 83.122.206.153 83200 port 15728883 83200 nas_port_type Virtual 83200 remote_ip 5.5.5.136 83202 username zamanialireza 83202 unique_id port 83202 terminate_cause User-Request 83202 bytes_out 82408 83202 bytes_in 908677 83202 station_ip 83.122.206.153 83202 port 15728885 83202 nas_port_type Virtual 83202 remote_ip 5.5.5.136 83206 username ahmadi 83206 unique_id port 83206 terminate_cause User-Request 83206 bytes_out 0 83206 bytes_in 0 83206 station_ip 37.129.182.146 83206 port 15728889 83206 nas_port_type Virtual 83206 remote_ip 5.5.5.134 83209 username amin.insta13 83209 kill_reason Relative expiration date has reached 83209 mac 83209 bytes_out 0 83209 bytes_in 0 83209 station_ip 83.123.163.149 83209 port 15 83209 unique_id port 83212 username amin.insta13 83212 kill_reason Relative expiration date has reached 83212 mac 83212 bytes_out 0 83212 bytes_in 0 83212 station_ip 83.123.163.149 83212 port 15 83212 unique_id port 83217 username aminvpn 83217 unique_id port 83217 terminate_cause User-Request 83217 bytes_out 38641 83217 bytes_in 54705 83217 station_ip 113.203.27.95 83217 port 15728896 83217 nas_port_type Virtual 83217 remote_ip 5.5.5.129 83219 username aminvpn 83219 unique_id port 83219 terminate_cause User-Request 83219 bytes_out 99986 83219 bytes_in 804248 83219 station_ip 113.203.27.95 83219 port 15728897 83219 nas_port_type Virtual 83219 remote_ip 5.5.5.129 83231 username mahdixz 83231 unique_id port 83208 unique_id port 83208 terminate_cause User-Request 83208 bytes_out 82923 83208 bytes_in 495513 83208 station_ip 83.122.75.205 83208 port 15728893 83208 nas_port_type Virtual 83208 remote_ip 5.5.5.131 83213 username amin.insta13 83213 kill_reason Relative expiration date has reached 83213 mac 83213 bytes_out 0 83213 bytes_in 0 83213 station_ip 83.123.163.149 83213 port 15 83213 unique_id port 83222 username ahmadipour 83222 unique_id port 83222 terminate_cause Lost-Carrier 83222 bytes_out 265134 83222 bytes_in 5318996 83222 station_ip 113.203.4.57 83222 port 15728898 83222 nas_port_type Virtual 83222 remote_ip 5.5.5.128 83238 username arabpour 83238 unique_id port 83238 terminate_cause User-Request 83238 bytes_out 0 83238 bytes_in 0 83238 station_ip 113.203.97.28 83238 port 15728917 83238 nas_port_type Virtual 83238 remote_ip 5.5.5.137 83239 username asadi 83239 unique_id port 83239 terminate_cause User-Request 83239 bytes_out 53188 83239 bytes_in 256946 83239 station_ip 83.123.86.2 83239 port 15728915 83239 nas_port_type Virtual 83239 remote_ip 5.5.5.179 83243 username shirin 83243 unique_id port 83243 terminate_cause User-Request 83243 bytes_out 43092 83243 bytes_in 620820 83243 station_ip 83.122.63.250 83243 port 15728922 83243 nas_port_type Virtual 83243 remote_ip 5.5.5.126 83250 username mahdixz 83250 unique_id port 83250 terminate_cause User-Request 83250 bytes_out 207930 83250 bytes_in 859268 83250 station_ip 151.235.84.173 83250 port 15728929 83250 nas_port_type Virtual 83250 remote_ip 5.5.5.132 83254 username aminvpn 83254 unique_id port 83254 terminate_cause User-Request 83254 bytes_out 119365 83254 bytes_in 2752752 83254 station_ip 37.129.239.175 83254 port 15728935 83254 nas_port_type Virtual 83254 remote_ip 5.5.5.120 83258 username shirin 83258 unique_id port 83258 terminate_cause User-Request 83258 bytes_out 170184 83258 bytes_in 3701284 83258 station_ip 83.123.94.161 83258 port 15728944 83258 nas_port_type Virtual 83258 remote_ip 5.5.5.118 83261 username avaanna 83261 unique_id port 83261 terminate_cause User-Request 83261 bytes_out 50538 83261 bytes_in 217910 83261 station_ip 113.203.12.64 83261 port 15728946 83261 nas_port_type Virtual 83261 remote_ip 5.5.5.117 83264 username alinezhad 83264 unique_id port 83264 terminate_cause User-Request 83264 bytes_out 1433862 83264 bytes_in 7622883 83264 station_ip 5.202.19.242 83264 port 15728920 83264 nas_port_type Virtual 83264 remote_ip 5.5.5.144 83268 username alinezhad 83268 unique_id port 83268 terminate_cause User-Request 83268 bytes_out 204592 83268 bytes_in 1051492 83268 station_ip 5.202.19.242 83268 port 15728949 83268 nas_port_type Virtual 83268 remote_ip 5.5.5.144 83271 username shirin 83271 unique_id port 83271 terminate_cause User-Request 83271 bytes_out 418882 83271 bytes_in 12838661 83271 station_ip 83.123.94.161 83271 port 15728954 83271 nas_port_type Virtual 83271 remote_ip 5.5.5.118 83286 username aminvpn 83286 mac 83286 bytes_out 0 83286 bytes_in 0 83286 station_ip 5.120.94.122 83286 port 15 83286 unique_id port 83286 remote_ip 10.8.0.6 83288 username caferibar 83288 unique_id port 83288 terminate_cause User-Request 83288 bytes_out 501576 83288 bytes_in 2741044 83288 station_ip 5.119.106.26 83288 port 15728968 83288 nas_port_type Virtual 83288 remote_ip 5.5.5.167 83295 username caferibar 83295 unique_id port 83295 terminate_cause Lost-Carrier 83295 bytes_out 1151396 83295 bytes_in 1328294 83295 station_ip 89.47.77.181 83295 port 15728979 83295 nas_port_type Virtual 83295 remote_ip 5.5.5.104 83299 username farhad 83299 unique_id port 83299 terminate_cause Lost-Carrier 83215 username mahdixz 83215 unique_id port 83215 terminate_cause Lost-Carrier 83215 bytes_out 66929 83215 bytes_in 433291 83215 station_ip 151.235.84.173 83215 port 15728892 83215 nas_port_type Virtual 83215 remote_ip 5.5.5.132 83216 username caferibar 83216 unique_id port 83216 terminate_cause Lost-Carrier 83216 bytes_out 519483 83216 bytes_in 14687830 83216 station_ip 5.126.178.111 83216 port 15728890 83216 nas_port_type Virtual 83216 remote_ip 5.5.5.133 83218 username aminvpn 83218 mac 83218 bytes_out 4904548 83218 bytes_in 28255861 83218 station_ip 5.120.94.122 83218 port 33 83218 unique_id port 83218 remote_ip 10.8.1.10 83221 username soleymani 83221 unique_id port 83221 terminate_cause Lost-Carrier 83221 bytes_out 26015 83221 bytes_in 198301 83221 station_ip 5.125.49.135 83221 port 15728895 83221 nas_port_type Virtual 83221 remote_ip 5.5.5.130 83224 username asadi 83224 unique_id port 83224 terminate_cause User-Request 83224 bytes_out 150149 83224 bytes_in 1317911 83224 station_ip 83.123.86.2 83224 port 15728900 83224 nas_port_type Virtual 83224 remote_ip 5.5.5.179 83225 username farhad 83225 unique_id port 83225 terminate_cause User-Request 83225 bytes_out 0 83225 bytes_in 0 83225 station_ip 5.120.101.200 83225 port 15728901 83225 nas_port_type Virtual 83225 remote_ip 5.5.5.127 83226 username farhad 83226 unique_id port 83226 terminate_cause User-Request 83226 bytes_out 0 83226 bytes_in 0 83226 station_ip 5.120.101.200 83226 port 15728903 83226 nas_port_type Virtual 83226 remote_ip 5.5.5.127 83227 username farhad 83227 unique_id port 83227 terminate_cause User-Request 83227 bytes_out 0 83227 bytes_in 0 83227 station_ip 5.120.101.200 83227 port 15728905 83227 nas_port_type Virtual 83227 remote_ip 5.5.5.127 83230 username asadi 83230 unique_id port 83230 terminate_cause User-Request 83230 bytes_out 278871 83230 bytes_in 4329734 83230 station_ip 83.123.86.2 83230 port 15728907 83230 nas_port_type Virtual 83230 remote_ip 5.5.5.179 83234 username arabpour 83234 unique_id port 83234 terminate_cause User-Request 83234 bytes_out 486534 83234 bytes_in 13765703 83234 station_ip 113.203.97.28 83234 port 15728911 83234 nas_port_type Virtual 83234 remote_ip 5.5.5.137 83240 username shirin 83240 unique_id port 83240 terminate_cause User-Request 83240 bytes_out 170039 83240 bytes_in 3408094 83240 station_ip 83.122.63.250 83240 port 15728916 83240 nas_port_type Virtual 83240 remote_ip 5.5.5.126 83241 username arabpour 83241 unique_id port 83241 terminate_cause User-Request 83241 bytes_out 336739 83241 bytes_in 10133764 83241 station_ip 113.203.97.28 83241 port 15728918 83241 nas_port_type Virtual 83241 remote_ip 5.5.5.137 83245 username shirin 83245 unique_id port 83245 terminate_cause User-Request 83245 bytes_out 301436 83245 bytes_in 8125548 83245 station_ip 83.122.63.250 83245 port 15728924 83245 nas_port_type Virtual 83245 remote_ip 5.5.5.126 83252 username aminvpn 83252 unique_id port 83252 terminate_cause User-Request 83252 bytes_out 137172 83252 bytes_in 2837890 83252 station_ip 37.129.239.175 83252 port 15728934 83252 nas_port_type Virtual 83252 remote_ip 5.5.5.120 83260 username avaanna 83260 unique_id port 83260 terminate_cause User-Request 83260 bytes_out 89343 83260 bytes_in 663227 83260 station_ip 113.203.12.64 83260 port 15728945 83260 nas_port_type Virtual 83260 remote_ip 5.5.5.117 83265 username avaanna 83265 unique_id port 83265 terminate_cause User-Request 83265 bytes_out 0 83265 bytes_in 0 83265 station_ip 113.203.12.64 83265 port 15728948 83265 nas_port_type Virtual 83265 remote_ip 5.5.5.117 83269 username shirin 83223 port 15728899 83223 nas_port_type Virtual 83223 remote_ip 5.5.5.131 83228 username asadi 83228 unique_id port 83228 terminate_cause User-Request 83228 bytes_out 226180 83228 bytes_in 2678204 83228 station_ip 83.123.86.2 83228 port 15728904 83228 nas_port_type Virtual 83228 remote_ip 5.5.5.179 83229 username arabpour 83229 unique_id port 83229 terminate_cause User-Request 83229 bytes_out 405117 83229 bytes_in 10028077 83229 station_ip 113.203.97.28 83229 port 15728906 83229 nas_port_type Virtual 83229 remote_ip 5.5.5.137 83232 username asadi 83232 unique_id port 83232 terminate_cause User-Request 83232 bytes_out 138684 83232 bytes_in 3726255 83232 station_ip 83.123.86.2 83232 port 15728909 83232 nas_port_type Virtual 83232 remote_ip 5.5.5.179 83236 username shirin 83236 unique_id port 83236 terminate_cause User-Request 83236 bytes_out 429944 83236 bytes_in 11587867 83236 station_ip 83.122.63.250 83236 port 15728912 83236 nas_port_type Virtual 83236 remote_ip 5.5.5.126 83244 username asadi 83244 unique_id port 83244 terminate_cause User-Request 83244 bytes_out 156429 83244 bytes_in 2758562 83244 station_ip 83.123.86.2 83244 port 15728923 83244 nas_port_type Virtual 83244 remote_ip 5.5.5.179 83247 username aminvpn 83247 unique_id port 83247 terminate_cause User-Request 83247 bytes_out 44850 83247 bytes_in 77321 83247 station_ip 113.203.39.35 83247 port 15728926 83247 nas_port_type Virtual 83247 remote_ip 5.5.5.125 83248 username madadi 83248 unique_id port 83248 terminate_cause Lost-Carrier 83248 bytes_out 17716 83248 bytes_in 151580 83248 station_ip 5.119.70.220 83248 port 15728927 83248 nas_port_type Virtual 83248 remote_ip 5.5.5.124 83251 username aminvpn 83251 unique_id port 83251 terminate_cause User-Request 83251 bytes_out 172861 83251 bytes_in 2329761 83251 station_ip 37.129.239.175 83251 port 15728933 83251 nas_port_type Virtual 83251 remote_ip 5.5.5.120 83253 username aminvpn 83253 unique_id port 83253 terminate_cause Lost-Carrier 83253 bytes_out 1832212 83253 bytes_in 30886274 83253 station_ip 5.233.72.32 83253 port 15728930 83253 nas_port_type Virtual 83253 remote_ip 5.5.5.205 83256 username amirabbas 83256 unique_id port 83256 terminate_cause User-Request 83256 bytes_out 36680263 83256 bytes_in 911298031 83256 station_ip 151.238.237.211 83256 port 15728870 83256 nas_port_type Virtual 83256 remote_ip 5.5.5.242 83263 username forozande 83263 unique_id port 83263 terminate_cause User-Request 83263 bytes_out 268779 83263 bytes_in 914114 83263 station_ip 37.129.38.126 83263 port 15728947 83263 nas_port_type Virtual 83263 remote_ip 5.5.5.116 83267 username avaanna 83267 unique_id port 83267 terminate_cause User-Request 83267 bytes_out 0 83267 bytes_in 0 83267 station_ip 113.203.12.64 83267 port 15728951 83267 nas_port_type Virtual 83267 remote_ip 5.5.5.117 83274 username majid 83274 unique_id port 83274 terminate_cause User-Request 83274 bytes_out 5452417 83274 bytes_in 155425786 83274 station_ip 86.57.77.209 83274 port 15728932 83274 nas_port_type Virtual 83274 remote_ip 5.5.5.121 83275 username madadi 83275 unique_id port 83275 terminate_cause User-Request 83275 bytes_out 472240 83275 bytes_in 698093 83275 station_ip 5.119.99.158 83275 port 15728943 83275 nas_port_type Virtual 83275 remote_ip 5.5.5.119 83280 username heydari 83280 unique_id port 83280 terminate_cause Lost-Carrier 83280 bytes_out 363872 83280 bytes_in 2067525 83280 station_ip 5.119.104.213 83280 port 15728931 83280 nas_port_type Virtual 83280 remote_ip 5.5.5.122 83282 username farhad 83282 unique_id port 83282 terminate_cause User-Request 83282 bytes_out 110947143 83282 bytes_in 394850748 83231 terminate_cause User-Request 83231 bytes_out 545009 83231 bytes_in 4176426 83231 station_ip 151.235.84.173 83231 port 15728902 83231 nas_port_type Virtual 83231 remote_ip 5.5.5.132 83233 username asadi 83233 unique_id port 83233 terminate_cause User-Request 83233 bytes_out 343517 83233 bytes_in 5518305 83233 station_ip 83.123.86.2 83233 port 15728910 83233 nas_port_type Virtual 83233 remote_ip 5.5.5.179 83235 username alinezhad 83235 unique_id port 83235 terminate_cause User-Request 83235 bytes_out 0 83235 bytes_in 0 83235 station_ip 5.202.19.242 83235 port 15728913 83235 nas_port_type Virtual 83235 remote_ip 5.5.5.144 83237 username asadi 83237 unique_id port 83237 terminate_cause User-Request 83237 bytes_out 44699 83237 bytes_in 1206732 83237 station_ip 83.123.86.2 83237 port 15728914 83237 nas_port_type Virtual 83237 remote_ip 5.5.5.179 83242 username asadi 83242 unique_id port 83242 terminate_cause User-Request 83242 bytes_out 201237 83242 bytes_in 4286360 83242 station_ip 83.123.86.2 83242 port 15728919 83242 nas_port_type Virtual 83242 remote_ip 5.5.5.179 83246 username asadi 83246 unique_id port 83246 terminate_cause User-Request 83246 bytes_out 12622 83246 bytes_in 217654 83246 station_ip 83.123.86.2 83246 port 15728925 83246 nas_port_type Virtual 83246 remote_ip 5.5.5.179 83249 username zamanialireza 83249 unique_id port 83249 terminate_cause User-Request 83249 bytes_out 1195310 83249 bytes_in 9383702 83249 station_ip 94.183.213.166 83249 port 15728866 83249 nas_port_type Virtual 83249 remote_ip 5.5.5.173 83255 username aminvpn 83255 unique_id port 83255 terminate_cause User-Request 83255 bytes_out 192367 83255 bytes_in 5104690 83255 station_ip 37.129.239.175 83255 port 15728936 83255 nas_port_type Virtual 83255 remote_ip 5.5.5.120 83257 username jamali 83257 unique_id port 83257 terminate_cause Lost-Carrier 83257 bytes_out 6802427 83257 bytes_in 176343471 83257 station_ip 5.119.75.189 83257 port 15728928 83257 nas_port_type Virtual 83257 remote_ip 5.5.5.123 83259 username mahbobeh 83259 unique_id port 83259 terminate_cause Lost-Carrier 83259 bytes_out 698959 83259 bytes_in 10034836 83259 station_ip 83.123.32.200 83259 port 15728921 83259 nas_port_type Virtual 83259 remote_ip 5.5.5.177 83262 username caferibar 83262 unique_id port 83262 terminate_cause Lost-Carrier 83262 bytes_out 303047 83262 bytes_in 5453654 83262 station_ip 5.126.178.111 83262 port 15728937 83262 nas_port_type Virtual 83262 remote_ip 5.5.5.133 83266 username ahmadi 83266 unique_id port 83266 terminate_cause User-Request 83266 bytes_out 0 83266 bytes_in 0 83266 station_ip 37.129.189.246 83266 port 15728950 83266 nas_port_type Virtual 83266 remote_ip 5.5.5.115 83270 username forozande 83270 unique_id port 83270 terminate_cause User-Request 83270 bytes_out 44718 83270 bytes_in 407970 83270 station_ip 37.129.237.185 83270 port 15728953 83270 nas_port_type Virtual 83270 remote_ip 5.5.5.114 83272 username avaanna 83272 unique_id port 83272 terminate_cause User-Request 83272 bytes_out 126130 83272 bytes_in 1934770 83272 station_ip 113.203.12.64 83272 port 15728955 83272 nas_port_type Virtual 83272 remote_ip 5.5.5.117 83277 username shojaei 83277 unique_id port 83277 terminate_cause User-Request 83277 bytes_out 499928 83277 bytes_in 12322672 83277 station_ip 113.203.95.218 83277 port 15728958 83277 nas_port_type Virtual 83277 remote_ip 5.5.5.112 83278 username shojaei 83278 unique_id port 83278 terminate_cause User-Request 83278 bytes_out 1078624 83278 bytes_in 30727066 83278 station_ip 113.203.95.218 83278 port 15728961 83278 nas_port_type Virtual 83278 remote_ip 5.5.5.112 83269 unique_id port 83269 terminate_cause User-Request 83269 bytes_out 6871 83269 bytes_in 22333 83269 station_ip 83.123.94.161 83269 port 15728952 83269 nas_port_type Virtual 83269 remote_ip 5.5.5.118 83273 username avaanna 83273 unique_id port 83273 terminate_cause User-Request 83273 bytes_out 63817 83273 bytes_in 1064159 83273 station_ip 113.203.12.64 83273 port 15728956 83273 nas_port_type Virtual 83273 remote_ip 5.5.5.117 83276 username zamanialireza 83276 unique_id port 83276 terminate_cause User-Request 83276 bytes_out 1361173 83276 bytes_in 32744412 83276 station_ip 37.44.57.90 83276 port 15728957 83276 nas_port_type Virtual 83276 remote_ip 5.5.5.113 83281 username aminvpn 83281 unique_id port 83281 terminate_cause User-Request 83281 bytes_out 185907 83281 bytes_in 820085 83281 station_ip 113.203.59.235 83281 port 15728962 83281 nas_port_type Virtual 83281 remote_ip 5.5.5.111 83284 username farhad 83284 unique_id port 83284 terminate_cause User-Request 83284 bytes_out 0 83284 bytes_in 0 83284 station_ip 5.119.220.205 83284 port 15728965 83284 nas_port_type Virtual 83284 remote_ip 5.5.5.110 83285 username heydari 83285 unique_id port 83285 terminate_cause Lost-Carrier 83285 bytes_out 113546 83285 bytes_in 540583 83285 station_ip 5.119.104.213 83285 port 15728963 83285 nas_port_type Virtual 83285 remote_ip 5.5.5.122 83291 username mahdixz 83291 unique_id port 83291 terminate_cause User-Request 83291 bytes_out 2195201 83291 bytes_in 35429334 83291 station_ip 151.235.84.173 83291 port 15728973 83291 nas_port_type Virtual 83291 remote_ip 5.5.5.132 83292 username caferibar 83292 unique_id port 83292 terminate_cause User-Request 83292 bytes_out 5842208 83292 bytes_in 70370351 83292 station_ip 5.119.106.26 83292 port 15728970 83292 nas_port_type Virtual 83292 remote_ip 5.5.5.167 83298 username caferibar 83298 unique_id port 83298 terminate_cause User-Request 83298 bytes_out 84832724 83298 bytes_in 80744460 83298 station_ip 5.119.106.26 83298 port 15728975 83298 nas_port_type Virtual 83298 remote_ip 5.5.5.167 83299 bytes_out 40946357 83299 bytes_in 615364284 83299 station_ip 5.119.220.205 83299 port 15728966 83299 nas_port_type Virtual 83299 remote_ip 5.5.5.110 83301 username afarin 83301 unique_id port 83301 terminate_cause Lost-Carrier 83301 bytes_out 7019353 83301 bytes_in 145992488 83301 station_ip 31.59.42.231 83301 port 15728971 83301 nas_port_type Virtual 83301 remote_ip 5.5.5.107 83308 username aminvpn 83308 mac 83308 bytes_out 0 83308 bytes_in 0 83308 station_ip 5.120.94.122 83308 port 15 83308 unique_id port 83308 remote_ip 10.8.0.6 83311 username farhad 83311 unique_id port 83311 terminate_cause Admin-Reboot 83311 bytes_out 0 83311 bytes_in 0 83311 station_ip 5.120.8.10 83311 port 15728987 83311 nas_port_type Virtual 83311 remote_ip 5.5.5.100 83315 username farhad 83315 unique_id port 83315 terminate_cause Lost-Carrier 83315 bytes_out 2202905 83315 bytes_in 32606460 83315 station_ip 5.120.8.10 83315 port 15728641 83315 nas_port_type Virtual 83315 remote_ip 5.5.5.255 83316 username soleymani 83316 unique_id port 83316 terminate_cause Lost-Carrier 83316 bytes_out 523805 83316 bytes_in 14914689 83316 station_ip 5.125.178.146 83316 port 15728643 83316 nas_port_type Virtual 83316 remote_ip 5.5.5.253 83326 username asadi 83326 unique_id port 83326 terminate_cause User-Request 83326 bytes_out 177133 83326 bytes_in 4264318 83326 station_ip 83.122.238.35 83326 port 15728654 83326 nas_port_type Virtual 83326 remote_ip 5.5.5.248 83330 username asadi 83330 unique_id port 83330 terminate_cause User-Request 83330 bytes_out 70068 83330 bytes_in 318945 83279 username mahdixz 83279 unique_id port 83279 terminate_cause User-Request 83279 bytes_out 1662126 83279 bytes_in 35456935 83279 station_ip 151.235.84.173 83279 port 15728959 83279 nas_port_type Virtual 83279 remote_ip 5.5.5.132 83287 username heydari 83287 unique_id port 83287 terminate_cause Lost-Carrier 83287 bytes_out 63715 83287 bytes_in 363796 83287 station_ip 5.119.104.213 83287 port 15728967 83287 nas_port_type Virtual 83287 remote_ip 5.5.5.109 83293 username mahdixz 83293 unique_id port 83293 terminate_cause Lost-Carrier 83293 bytes_out 1070676 83293 bytes_in 14352804 83293 station_ip 151.235.84.173 83293 port 15728974 83293 nas_port_type Virtual 83293 remote_ip 5.5.5.132 83294 username caferibar 83294 unique_id port 83294 terminate_cause User-Request 83294 bytes_out 0 83294 bytes_in 0 83294 station_ip 89.47.77.181 83294 port 15728978 83294 nas_port_type Virtual 83294 remote_ip 5.5.5.104 83296 username caferibar 83296 unique_id port 83296 terminate_cause Lost-Carrier 83296 bytes_out 517045 83296 bytes_in 8660946 83296 station_ip 5.126.250.236 83296 port 15728977 83296 nas_port_type Virtual 83296 remote_ip 5.5.5.105 83300 username ahmadi 83300 unique_id port 83300 terminate_cause User-Request 83300 bytes_out 0 83300 bytes_in 0 83300 station_ip 37.129.144.190 83300 port 15728981 83300 nas_port_type Virtual 83300 remote_ip 5.5.5.102 83302 username aminvpn 83302 kill_reason Another user logged on this global unique id 83302 mac 83302 bytes_out 0 83302 bytes_in 0 83302 station_ip 5.120.94.122 83302 port 15 83302 unique_id port 83302 remote_ip 10.8.0.6 83305 username aminvpn 83305 kill_reason Another user logged on this global unique id 83305 mac 83305 bytes_out 0 83305 bytes_in 0 83305 station_ip 5.120.94.122 83305 port 15 83305 unique_id port 83307 username aminvpn 83307 mac 83307 bytes_out 0 83307 bytes_in 0 83307 station_ip 5.120.94.122 83307 port 15 83307 unique_id port 83313 username pouria 83313 unique_id port 83313 terminate_cause Admin-Reboot 83313 bytes_out 21042487 83313 bytes_in 937509304 83313 station_ip 5.119.215.55 83313 port 15728980 83313 nas_port_type Virtual 83313 remote_ip 5.5.5.103 83318 username madadi 83318 unique_id port 83318 terminate_cause Lost-Carrier 83318 bytes_out 391994 83318 bytes_in 954944 83318 station_ip 5.119.111.251 83318 port 15728642 83318 nas_port_type Virtual 83318 remote_ip 5.5.5.254 83321 username asadi 83321 unique_id port 83321 terminate_cause User-Request 83321 bytes_out 38392 83321 bytes_in 112593 83321 station_ip 83.122.238.35 83321 port 15728648 83321 nas_port_type Virtual 83321 remote_ip 5.5.5.248 83325 username forozande 83325 unique_id port 83325 terminate_cause User-Request 83325 bytes_out 54135 83325 bytes_in 509431 83325 station_ip 83.123.8.22 83325 port 15728651 83325 nas_port_type Virtual 83325 remote_ip 5.5.5.245 83328 username madadi 83328 unique_id port 83328 terminate_cause Lost-Carrier 83328 bytes_out 58981 83328 bytes_in 209541 83328 station_ip 5.119.210.128 83328 port 15728653 83328 nas_port_type Virtual 83328 remote_ip 5.5.5.243 83334 username asadi 83334 unique_id port 83334 terminate_cause User-Request 83334 bytes_out 438688 83334 bytes_in 8845655 83334 station_ip 83.122.238.35 83334 port 15728663 83334 nas_port_type Virtual 83334 remote_ip 5.5.5.248 83336 username asadi 83336 unique_id port 83336 terminate_cause User-Request 83336 bytes_out 22242 83336 bytes_in 25595 83336 station_ip 83.122.238.35 83336 port 15728665 83336 nas_port_type Virtual 83336 remote_ip 5.5.5.248 83346 username forozande 83346 unique_id port 83346 terminate_cause User-Request 83282 station_ip 5.120.101.200 83282 port 15728908 83282 nas_port_type Virtual 83282 remote_ip 5.5.5.127 83283 username alinezhad 83283 unique_id port 83283 terminate_cause User-Request 83283 bytes_out 0 83283 bytes_in 0 83283 station_ip 5.202.19.242 83283 port 15728964 83283 nas_port_type Virtual 83283 remote_ip 5.5.5.144 83289 username alinezhad 83289 unique_id port 83289 terminate_cause User-Request 83289 bytes_out 0 83289 bytes_in 0 83289 station_ip 37.129.255.71 83289 port 15728969 83289 nas_port_type Virtual 83289 remote_ip 5.5.5.108 83290 username madadi 83290 unique_id port 83290 terminate_cause Lost-Carrier 83290 bytes_out 1102372 83290 bytes_in 3275501 83290 station_ip 5.119.99.158 83290 port 15728960 83290 nas_port_type Virtual 83290 remote_ip 5.5.5.119 83297 username jamali 83297 unique_id port 83297 terminate_cause Lost-Carrier 83297 bytes_out 16272197 83297 bytes_in 296321369 83297 station_ip 5.119.255.126 83297 port 15728972 83297 nas_port_type Virtual 83297 remote_ip 5.5.5.106 83303 username aminvpn 83303 mac 83303 bytes_out 0 83303 bytes_in 0 83303 station_ip 5.120.94.122 83303 port 15 83303 unique_id port 83304 username aminvpn 83304 kill_reason Another user logged on this global unique id 83304 mac 83304 bytes_out 0 83304 bytes_in 0 83304 station_ip 5.120.94.122 83304 port 15 83304 unique_id port 83304 remote_ip 10.8.0.6 83310 username asadi 83310 unique_id port 83310 terminate_cause User-Request 83310 bytes_out 90879 83310 bytes_in 811840 83310 station_ip 83.123.217.9 83310 port 15728986 83310 nas_port_type Virtual 83310 remote_ip 5.5.5.101 83312 username amin.insta22 83312 unique_id port 83312 terminate_cause Admin-Reboot 83312 bytes_out 35958198 83312 bytes_in 901768475 83312 station_ip 78.39.29.189 83312 port 15728876 83312 nas_port_type Virtual 83312 remote_ip 5.5.5.138 83317 username forozande 83317 unique_id port 83317 terminate_cause User-Request 83317 bytes_out 127410 83317 bytes_in 481548 83317 station_ip 37.129.196.0 83317 port 15728645 83317 nas_port_type Virtual 83317 remote_ip 5.5.5.251 83320 username alinezhad 83320 unique_id port 83320 terminate_cause User-Request 83320 bytes_out 219288 83320 bytes_in 1140688 83320 station_ip 37.129.12.186 83320 port 15728647 83320 nas_port_type Virtual 83320 remote_ip 5.5.5.249 83322 username madadi 83322 unique_id port 83322 terminate_cause Lost-Carrier 83322 bytes_out 38284 83322 bytes_in 162748 83322 station_ip 5.119.35.60 83322 port 15728646 83322 nas_port_type Virtual 83322 remote_ip 5.5.5.250 83323 username alinezhad 83323 unique_id port 83323 terminate_cause User-Request 83323 bytes_out 24758 83323 bytes_in 129821 83323 station_ip 37.129.41.82 83323 port 15728649 83323 nas_port_type Virtual 83323 remote_ip 5.5.5.247 83327 username alinezhad 83327 unique_id port 83327 terminate_cause User-Request 83327 bytes_out 43855 83327 bytes_in 56655 83327 station_ip 37.129.102.229 83327 port 15728655 83327 nas_port_type Virtual 83327 remote_ip 5.5.5.242 83332 username amin.insta22 83332 unique_id port 83332 terminate_cause Lost-Carrier 83332 bytes_out 11303507 83332 bytes_in 347374675 83332 station_ip 5.233.61.53 83332 port 15728652 83332 nas_port_type Virtual 83332 remote_ip 5.5.5.244 83337 username asadi 83337 unique_id port 83337 terminate_cause User-Request 83337 bytes_out 36630 83337 bytes_in 285524 83337 station_ip 83.122.238.35 83337 port 15728666 83337 nas_port_type Virtual 83337 remote_ip 5.5.5.248 83339 username amin.insta01 83339 kill_reason Relative expiration date has reached 83339 unique_id port 83339 bytes_out 0 83339 bytes_in 0 83339 station_ip 5.119.58.124 83339 port 15728667 83306 username aminvpn 83306 kill_reason Another user logged on this global unique id 83306 mac 83306 bytes_out 0 83306 bytes_in 0 83306 station_ip 5.120.94.122 83306 port 15 83306 unique_id port 83309 username mahbobeh 83309 unique_id port 83309 terminate_cause Lost-Carrier 83309 bytes_out 74146 83309 bytes_in 908480 83309 station_ip 83.123.32.200 83309 port 15728982 83309 nas_port_type Virtual 83309 remote_ip 5.5.5.177 83314 username farhad 83314 unique_id port 83314 terminate_cause User-Request 83314 bytes_out 0 83314 bytes_in 0 83314 station_ip 5.120.8.10 83314 port 15728640 83314 nas_port_type Virtual 83314 remote_ip 5.5.5.255 83319 username farhad 83319 unique_id port 83319 terminate_cause Lost-Carrier 83319 bytes_out 1928195 83319 bytes_in 46326362 83319 station_ip 5.120.68.217 83319 port 15728644 83319 nas_port_type Virtual 83319 remote_ip 5.5.5.252 83324 username ahmadi 83324 unique_id port 83324 terminate_cause User-Request 83324 bytes_out 0 83324 bytes_in 0 83324 station_ip 37.129.160.170 83324 port 15728650 83324 nas_port_type Virtual 83324 remote_ip 5.5.5.246 83329 username asadi 83329 unique_id port 83329 terminate_cause User-Request 83329 bytes_out 304059 83329 bytes_in 4885452 83329 station_ip 83.122.238.35 83329 port 15728659 83329 nas_port_type Virtual 83329 remote_ip 5.5.5.248 83333 username asadi 83333 unique_id port 83333 terminate_cause User-Request 83333 bytes_out 224241 83333 bytes_in 3210324 83333 station_ip 83.122.238.35 83333 port 15728662 83333 nas_port_type Virtual 83333 remote_ip 5.5.5.248 83335 username asadi 83335 unique_id port 83335 terminate_cause User-Request 83335 bytes_out 151725 83335 bytes_in 1619144 83335 station_ip 83.122.238.35 83335 port 15728664 83335 nas_port_type Virtual 83335 remote_ip 5.5.5.248 83338 username madadi 83338 unique_id port 83338 terminate_cause Lost-Carrier 83338 bytes_out 3883273 83338 bytes_in 195319962 83338 station_ip 5.120.175.38 83338 port 15728656 83338 nas_port_type Virtual 83338 remote_ip 5.5.5.241 83340 username amin.insta01 83340 kill_reason Relative expiration date has reached 83340 unique_id port 83340 bytes_out 0 83340 bytes_in 0 83340 station_ip 5.119.58.124 83340 port 15728668 83340 nas_port_type Virtual 83343 username asadi 83343 unique_id port 83343 terminate_cause User-Request 83343 bytes_out 49287 83343 bytes_in 670205 83343 station_ip 83.122.238.35 83343 port 15728672 83343 nas_port_type Virtual 83343 remote_ip 5.5.5.248 83347 username asadi 83347 unique_id port 83347 terminate_cause User-Request 83347 bytes_out 135595 83347 bytes_in 1641564 83347 station_ip 83.122.238.35 83347 port 15728678 83347 nas_port_type Virtual 83347 remote_ip 5.5.5.248 83348 username forozande 83348 unique_id port 83348 terminate_cause User-Request 83348 bytes_out 57702 83348 bytes_in 685061 83348 station_ip 37.129.41.241 83348 port 15728679 83348 nas_port_type Virtual 83348 remote_ip 5.5.5.235 83351 username alinezhad 83351 unique_id port 83351 terminate_cause User-Request 83351 bytes_out 0 83351 bytes_in 0 83351 station_ip 5.202.99.29 83351 port 15728682 83351 nas_port_type Virtual 83351 remote_ip 5.5.5.231 83355 username asadi 83355 unique_id port 83355 terminate_cause User-Request 83355 bytes_out 23427 83355 bytes_in 86339 83355 station_ip 83.122.238.35 83355 port 15728686 83355 nas_port_type Virtual 83355 remote_ip 5.5.5.248 83356 username alinezhad 83356 unique_id port 83356 terminate_cause User-Request 83356 bytes_out 0 83356 bytes_in 0 83356 station_ip 5.202.99.29 83356 port 15728687 83356 nas_port_type Virtual 83356 remote_ip 5.5.5.231 83360 username asadi 83360 unique_id port 83330 station_ip 83.122.238.35 83330 port 15728660 83330 nas_port_type Virtual 83330 remote_ip 5.5.5.248 83331 username aminvpn 83331 unique_id port 83331 terminate_cause User-Request 83331 bytes_out 162738 83331 bytes_in 235048 83331 station_ip 113.203.100.199 83331 port 15728661 83331 nas_port_type Virtual 83331 remote_ip 5.5.5.238 83345 username forozande 83345 unique_id port 83345 terminate_cause User-Request 83345 bytes_out 47936 83345 bytes_in 113668 83345 station_ip 37.129.41.241 83345 port 15728675 83345 nas_port_type Virtual 83345 remote_ip 5.5.5.235 83358 username shirin 83358 unique_id port 83358 terminate_cause User-Request 83358 bytes_out 263091 83358 bytes_in 7592333 83358 station_ip 37.129.94.216 83358 port 15728688 83358 nas_port_type Virtual 83358 remote_ip 5.5.5.228 83362 username caferibar 83362 unique_id port 83362 terminate_cause Lost-Carrier 83362 bytes_out 991120 83362 bytes_in 17272189 83362 station_ip 5.120.180.146 83362 port 15728669 83362 nas_port_type Virtual 83362 remote_ip 5.5.5.237 83363 username alinezhad 83363 unique_id port 83363 terminate_cause User-Request 83363 bytes_out 0 83363 bytes_in 0 83363 station_ip 5.202.99.29 83363 port 15728691 83363 nas_port_type Virtual 83363 remote_ip 5.5.5.231 83365 username mahdixz 83365 unique_id port 83365 terminate_cause User-Request 83365 bytes_out 0 83365 bytes_in 0 83365 station_ip 151.235.84.173 83365 port 15728694 83365 nas_port_type Virtual 83365 remote_ip 5.5.5.227 83370 username asadi 83370 unique_id port 83370 terminate_cause User-Request 83370 bytes_out 120761 83370 bytes_in 2177457 83370 station_ip 83.122.238.35 83370 port 15728700 83370 nas_port_type Virtual 83370 remote_ip 5.5.5.248 83372 username asadi 83372 unique_id port 83372 terminate_cause User-Request 83372 bytes_out 23476 83372 bytes_in 79764 83372 station_ip 83.122.238.35 83372 port 15728702 83372 nas_port_type Virtual 83372 remote_ip 5.5.5.248 83374 username forozande 83374 unique_id port 83374 terminate_cause User-Request 83374 bytes_out 90107 83374 bytes_in 299590 83374 station_ip 83.123.221.157 83374 port 15728705 83374 nas_port_type Virtual 83374 remote_ip 5.5.5.223 83380 username heydari 83380 unique_id port 83380 terminate_cause Lost-Carrier 83380 bytes_out 389188 83380 bytes_in 2299398 83380 station_ip 5.119.104.213 83380 port 15728657 83380 nas_port_type Virtual 83380 remote_ip 5.5.5.240 83386 username forozande 83386 unique_id port 83386 terminate_cause User-Request 83386 bytes_out 32427 83386 bytes_in 468882 83386 station_ip 113.203.25.189 83386 port 15728718 83386 nas_port_type Virtual 83386 remote_ip 5.5.5.220 83402 username asadi 83402 unique_id port 83402 terminate_cause User-Request 83402 bytes_out 19882 83402 bytes_in 65412 83402 station_ip 83.122.238.35 83402 port 15728736 83402 nas_port_type Virtual 83402 remote_ip 5.5.5.248 83403 username ksrkrgr 83403 unique_id port 83403 terminate_cause User-Request 83403 bytes_out 2163538 83403 bytes_in 7404909 83403 station_ip 151.234.21.21 83403 port 15728734 83403 nas_port_type Virtual 83403 remote_ip 5.5.5.213 83409 username alinezhad 83409 unique_id port 83409 terminate_cause User-Request 83409 bytes_out 0 83409 bytes_in 0 83409 station_ip 5.202.99.29 83409 port 15728745 83409 nas_port_type Virtual 83409 remote_ip 5.5.5.231 83412 username amin.insta13 83412 kill_reason Relative expiration date has reached 83412 mac 83412 bytes_out 0 83412 bytes_in 0 83412 station_ip 37.129.148.113 83412 port 15 83412 unique_id port 83417 username zamanialireza 83417 unique_id port 83417 terminate_cause User-Request 83417 bytes_out 1283039 83417 bytes_in 9664587 83339 nas_port_type Virtual 83341 username ahmadi 83341 unique_id port 83341 terminate_cause User-Request 83341 bytes_out 0 83341 bytes_in 0 83341 station_ip 37.129.160.170 83341 port 15728670 83341 nas_port_type Virtual 83341 remote_ip 5.5.5.246 83342 username asadi 83342 unique_id port 83342 terminate_cause User-Request 83342 bytes_out 72561 83342 bytes_in 272374 83342 station_ip 83.122.238.35 83342 port 15728671 83342 nas_port_type Virtual 83342 remote_ip 5.5.5.248 83344 username asadi 83344 unique_id port 83344 terminate_cause User-Request 83344 bytes_out 161043 83344 bytes_in 3595522 83344 station_ip 83.122.238.35 83344 port 15728673 83344 nas_port_type Virtual 83344 remote_ip 5.5.5.248 83352 username soleymani 83352 unique_id port 83352 terminate_cause Lost-Carrier 83352 bytes_out 109891 83352 bytes_in 503872 83352 station_ip 5.126.19.223 83352 port 15728680 83352 nas_port_type Virtual 83352 remote_ip 5.5.5.233 83353 username hamideh 83353 unique_id port 83353 terminate_cause Lost-Carrier 83353 bytes_out 331132 83353 bytes_in 6660327 83353 station_ip 5.119.109.248 83353 port 15728683 83353 nas_port_type Virtual 83353 remote_ip 5.5.5.230 83364 username mahdixz 83364 unique_id port 83364 terminate_cause User-Request 83364 bytes_out 0 83364 bytes_in 0 83364 station_ip 151.235.84.173 83364 port 15728692 83364 nas_port_type Virtual 83364 remote_ip 5.5.5.227 83366 username forozande 83366 unique_id port 83366 terminate_cause User-Request 83366 bytes_out 0 83366 bytes_in 0 83366 station_ip 83.122.22.238 83366 port 15728693 83366 nas_port_type Virtual 83366 remote_ip 5.5.5.226 83368 username alinezhad 83368 unique_id port 83368 terminate_cause User-Request 83368 bytes_out 0 83368 bytes_in 0 83368 station_ip 5.202.99.29 83368 port 15728699 83368 nas_port_type Virtual 83368 remote_ip 5.5.5.231 83375 username madadi 83375 unique_id port 83375 terminate_cause Lost-Carrier 83375 bytes_out 19678 83375 bytes_in 159504 83375 station_ip 5.119.121.111 83375 port 15728703 83375 nas_port_type Virtual 83375 remote_ip 5.5.5.224 83377 username amin.insta01 83377 kill_reason Relative expiration date has reached 83377 unique_id port 83377 bytes_out 0 83377 bytes_in 0 83377 station_ip 5.119.39.37 83377 port 15728706 83377 nas_port_type Virtual 83378 username mahdixz 83378 unique_id port 83378 terminate_cause User-Request 83378 bytes_out 0 83378 bytes_in 0 83378 station_ip 151.235.84.173 83378 port 15728707 83378 nas_port_type Virtual 83378 remote_ip 5.5.5.227 83379 username asadi 83379 unique_id port 83379 terminate_cause User-Request 83379 bytes_out 0 83379 bytes_in 0 83379 station_ip 83.122.238.35 83379 port 15728712 83379 nas_port_type Virtual 83379 remote_ip 5.5.5.248 83382 username madadi 83382 unique_id port 83382 terminate_cause NAS-Error 83382 bytes_out 0 83382 bytes_in 342 83382 station_ip 5.119.133.99 83382 port 15728713 83382 nas_port_type Virtual 83382 remote_ip 5.5.5.222 83383 username alinezhad 83383 unique_id port 83383 terminate_cause User-Request 83383 bytes_out 0 83383 bytes_in 0 83383 station_ip 5.202.99.29 83383 port 15728716 83383 nas_port_type Virtual 83383 remote_ip 5.5.5.231 83387 username forozande 83387 unique_id port 83387 terminate_cause User-Request 83387 bytes_out 0 83387 bytes_in 0 83387 station_ip 83.123.161.33 83387 port 15728719 83387 nas_port_type Virtual 83387 remote_ip 5.5.5.219 83389 username ahmadi 83389 unique_id port 83389 terminate_cause User-Request 83389 bytes_out 185337 83389 bytes_in 441249 83389 station_ip 37.129.134.146 83389 port 15728720 83389 nas_port_type Virtual 83389 remote_ip 5.5.5.218 83346 bytes_out 52119 83346 bytes_in 378413 83346 station_ip 37.129.41.241 83346 port 15728677 83346 nas_port_type Virtual 83346 remote_ip 5.5.5.235 83349 username madadi 83349 unique_id port 83349 terminate_cause Lost-Carrier 83349 bytes_out 14546 83349 bytes_in 135103 83349 station_ip 5.119.25.181 83349 port 15728674 83349 nas_port_type Virtual 83349 remote_ip 5.5.5.236 83350 username madadi 83350 unique_id port 83350 terminate_cause Lost-Carrier 83350 bytes_out 11519 83350 bytes_in 125882 83350 station_ip 5.120.122.20 83350 port 15728676 83350 nas_port_type Virtual 83350 remote_ip 5.5.5.234 83354 username asadi 83354 unique_id port 83354 terminate_cause User-Request 83354 bytes_out 55916 83354 bytes_in 150450 83354 station_ip 83.122.238.35 83354 port 15728685 83354 nas_port_type Virtual 83354 remote_ip 5.5.5.248 83357 username soleymani 83357 unique_id port 83357 terminate_cause Lost-Carrier 83357 bytes_out 158151 83357 bytes_in 1864039 83357 station_ip 5.125.245.107 83357 port 15728684 83357 nas_port_type Virtual 83357 remote_ip 5.5.5.229 83359 username shirin 83359 unique_id port 83359 terminate_cause User-Request 83359 bytes_out 51826 83359 bytes_in 815206 83359 station_ip 37.129.94.216 83359 port 15728689 83359 nas_port_type Virtual 83359 remote_ip 5.5.5.228 83361 username pouria 83361 unique_id port 83361 terminate_cause Lost-Carrier 83361 bytes_out 7081032 83361 bytes_in 282942037 83361 station_ip 5.119.215.55 83361 port 15728681 83361 nas_port_type Virtual 83361 remote_ip 5.5.5.232 83367 username forozande 83367 unique_id port 83367 terminate_cause User-Request 83367 bytes_out 73208 83367 bytes_in 941193 83367 station_ip 83.122.22.238 83367 port 15728696 83367 nas_port_type Virtual 83367 remote_ip 5.5.5.226 83369 username asadi 83369 unique_id port 83369 terminate_cause User-Request 83369 bytes_out 393204 83369 bytes_in 4993301 83369 station_ip 83.122.238.35 83369 port 15728698 83369 nas_port_type Virtual 83369 remote_ip 5.5.5.248 83381 username arman 83381 unique_id port 83381 terminate_cause Lost-Carrier 83381 bytes_out 2874467 83381 bytes_in 20621508 83381 station_ip 5.120.19.116 83381 port 15728658 83381 nas_port_type Virtual 83381 remote_ip 5.5.5.239 83384 username forozande 83384 unique_id port 83384 terminate_cause User-Request 83384 bytes_out 62034 83384 bytes_in 435664 83384 station_ip 113.203.25.189 83384 port 15728715 83384 nas_port_type Virtual 83384 remote_ip 5.5.5.220 83388 username amirreza 83388 unique_id port 83388 terminate_cause Lost-Carrier 83388 bytes_out 741181 83388 bytes_in 14567887 83388 station_ip 5.120.88.153 83388 port 15728714 83388 nas_port_type Virtual 83388 remote_ip 5.5.5.221 83392 username mahdixz 83392 unique_id port 83392 terminate_cause User-Request 83392 bytes_out 0 83392 bytes_in 0 83392 station_ip 151.235.84.173 83392 port 15728724 83392 nas_port_type Virtual 83392 remote_ip 5.5.5.227 83398 username mahdixz 83398 unique_id port 83398 terminate_cause Lost-Carrier 83398 bytes_out 1708890 83398 bytes_in 27693547 83398 station_ip 151.235.84.173 83398 port 15728728 83398 nas_port_type Virtual 83398 remote_ip 5.5.5.227 83401 username jamali 83401 unique_id port 83401 terminate_cause Lost-Carrier 83401 bytes_out 1820834 83401 bytes_in 29246199 83401 station_ip 5.119.55.95 83401 port 15728730 83401 nas_port_type Virtual 83401 remote_ip 5.5.5.216 83405 username asadi 83405 unique_id port 83405 terminate_cause User-Request 83405 bytes_out 11634 83405 bytes_in 23836 83405 station_ip 83.122.238.35 83405 port 15728742 83405 nas_port_type Virtual 83405 remote_ip 5.5.5.248 83406 username madadi 83406 unique_id port 83360 terminate_cause User-Request 83360 bytes_out 196528 83360 bytes_in 2029197 83360 station_ip 83.122.238.35 83360 port 15728690 83360 nas_port_type Virtual 83360 remote_ip 5.5.5.248 83371 username asadi 83371 unique_id port 83371 terminate_cause User-Request 83371 bytes_out 105724 83371 bytes_in 1805084 83371 station_ip 83.122.238.35 83371 port 15728701 83371 nas_port_type Virtual 83371 remote_ip 5.5.5.248 83373 username forozande 83373 unique_id port 83373 terminate_cause User-Request 83373 bytes_out 0 83373 bytes_in 0 83373 station_ip 83.123.221.157 83373 port 15728704 83373 nas_port_type Virtual 83373 remote_ip 5.5.5.223 83376 username mahdixz 83376 unique_id port 83376 terminate_cause User-Request 83376 bytes_out 387099 83376 bytes_in 2937020 83376 station_ip 151.235.84.173 83376 port 15728695 83376 nas_port_type Virtual 83376 remote_ip 5.5.5.227 83385 username forozande 83385 unique_id port 83385 terminate_cause User-Request 83385 bytes_out 0 83385 bytes_in 0 83385 station_ip 113.203.25.189 83385 port 15728717 83385 nas_port_type Virtual 83385 remote_ip 5.5.5.220 83393 username mahdixz 83393 unique_id port 83393 terminate_cause User-Request 83393 bytes_out 0 83393 bytes_in 0 83393 station_ip 151.235.84.173 83393 port 15728726 83393 nas_port_type Virtual 83393 remote_ip 5.5.5.227 83396 username soleymani 83396 unique_id port 83396 terminate_cause Lost-Carrier 83396 bytes_out 112749 83396 bytes_in 517525 83396 station_ip 5.125.87.69 83396 port 15728732 83396 nas_port_type Virtual 83396 remote_ip 5.5.5.215 83413 username shahriyar 83413 unique_id port 83413 terminate_cause Lost-Carrier 83413 bytes_out 3928610 83413 bytes_in 48686650 83413 station_ip 5.202.97.200 83413 port 15728697 83413 nas_port_type Virtual 83413 remote_ip 5.5.5.225 83419 username amin.insta22 83419 kill_reason Relative expiration date has reached 83419 unique_id port 83419 bytes_out 0 83419 bytes_in 0 83419 station_ip 5.233.61.53 83419 port 15728751 83419 nas_port_type Virtual 83427 username amin.insta22 83427 kill_reason Relative expiration date has reached 83427 unique_id port 83427 bytes_out 0 83427 bytes_in 0 83427 station_ip 5.233.61.53 83427 port 15728759 83427 nas_port_type Virtual 83428 username amin.insta22 83428 kill_reason Relative expiration date has reached 83428 unique_id port 83428 bytes_out 0 83428 bytes_in 0 83428 station_ip 5.233.61.53 83428 port 15728760 83428 nas_port_type Virtual 83432 username forozande 83432 unique_id port 83432 terminate_cause User-Request 83432 bytes_out 81075 83432 bytes_in 224978 83432 station_ip 83.123.108.184 83432 port 15728764 83432 nas_port_type Virtual 83432 remote_ip 5.5.5.200 83435 username caferibar 83435 unique_id port 83435 terminate_cause User-Request 83435 bytes_out 622391 83435 bytes_in 7954367 83435 station_ip 5.120.180.146 83435 port 15728768 83435 nas_port_type Virtual 83435 remote_ip 5.5.5.237 83437 username aminvpn 83437 unique_id port 83437 terminate_cause User-Request 83437 bytes_out 4710 83437 bytes_in 11808 83437 station_ip 113.203.100.199 83437 port 15728770 83437 nas_port_type Virtual 83437 remote_ip 5.5.5.238 83438 username aminvpn 83438 unique_id port 83438 terminate_cause User-Request 83438 bytes_out 227248 83438 bytes_in 4996923 83438 station_ip 113.203.100.199 83438 port 15728771 83438 nas_port_type Virtual 83438 remote_ip 5.5.5.238 83439 username aminvpn 83439 unique_id port 83439 terminate_cause User-Request 83439 bytes_out 66508 83439 bytes_in 439611 83439 station_ip 113.203.100.199 83439 port 15728773 83439 nas_port_type Virtual 83439 remote_ip 5.5.5.238 83441 username aminvpn 83441 unique_id port 83390 username amin.insta01 83390 kill_reason Relative expiration date has reached 83390 unique_id port 83390 bytes_out 0 83390 bytes_in 0 83390 station_ip 5.120.8.8 83390 port 15728721 83390 nas_port_type Virtual 83391 username alinezhad 83391 unique_id port 83391 terminate_cause User-Request 83391 bytes_out 0 83391 bytes_in 0 83391 station_ip 5.202.99.29 83391 port 15728723 83391 nas_port_type Virtual 83391 remote_ip 5.5.5.231 83394 username alinezhad 83394 unique_id port 83394 terminate_cause User-Request 83394 bytes_out 0 83394 bytes_in 0 83394 station_ip 5.202.99.29 83394 port 15728729 83394 nas_port_type Virtual 83394 remote_ip 5.5.5.231 83395 username soleymani 83395 unique_id port 83395 terminate_cause User-Request 83395 bytes_out 0 83395 bytes_in 0 83395 station_ip 5.125.87.69 83395 port 15728731 83395 nas_port_type Virtual 83395 remote_ip 5.5.5.215 83397 username mahdixz 83397 unique_id port 83397 terminate_cause User-Request 83397 bytes_out 748073 83397 bytes_in 9184380 83397 station_ip 151.235.84.173 83397 port 15728733 83397 nas_port_type Virtual 83397 remote_ip 5.5.5.214 83399 username madadi 83399 unique_id port 83399 terminate_cause Lost-Carrier 83399 bytes_out 442206 83399 bytes_in 743892 83399 station_ip 5.119.141.111 83399 port 15728722 83399 nas_port_type Virtual 83399 remote_ip 5.5.5.217 83400 username asadi 83400 unique_id port 83400 terminate_cause User-Request 83400 bytes_out 100636 83400 bytes_in 3551818 83400 station_ip 83.122.238.35 83400 port 15728735 83400 nas_port_type Virtual 83400 remote_ip 5.5.5.248 83404 username alinezhad 83404 unique_id port 83404 terminate_cause User-Request 83404 bytes_out 0 83404 bytes_in 0 83404 station_ip 5.202.99.29 83404 port 15728739 83404 nas_port_type Virtual 83404 remote_ip 5.5.5.231 83407 username forozande 83407 unique_id port 83407 terminate_cause User-Request 83407 bytes_out 0 83407 bytes_in 0 83407 station_ip 83.122.127.16 83407 port 15728743 83407 nas_port_type Virtual 83407 remote_ip 5.5.5.208 83410 username caferibar 83410 unique_id port 83410 terminate_cause Lost-Carrier 83410 bytes_out 1806918 83410 bytes_in 6998521 83410 station_ip 5.134.164.16 83410 port 15728737 83410 nas_port_type Virtual 83410 remote_ip 5.5.5.212 83411 username amin.insta13 83411 kill_reason Relative expiration date has reached 83411 mac 83411 bytes_out 0 83411 bytes_in 0 83411 station_ip 37.129.148.113 83411 port 15 83411 unique_id port 83415 username alinezhad 83415 unique_id port 83415 terminate_cause User-Request 83415 bytes_out 0 83415 bytes_in 0 83415 station_ip 5.202.99.29 83415 port 15728748 83415 nas_port_type Virtual 83415 remote_ip 5.5.5.231 83420 username amin.insta22 83420 kill_reason Relative expiration date has reached 83420 unique_id port 83420 bytes_out 0 83420 bytes_in 0 83420 station_ip 5.233.61.53 83420 port 15728752 83420 nas_port_type Virtual 83422 username alinezhad 83422 unique_id port 83422 terminate_cause User-Request 83422 bytes_out 0 83422 bytes_in 0 83422 station_ip 5.202.99.29 83422 port 15728753 83422 nas_port_type Virtual 83422 remote_ip 5.5.5.231 83426 username amin.insta22 83426 kill_reason Relative expiration date has reached 83426 unique_id port 83426 bytes_out 0 83426 bytes_in 0 83426 station_ip 5.233.61.53 83426 port 15728758 83426 nas_port_type Virtual 83429 username aminvpn 83429 unique_id port 83429 terminate_cause User-Request 83429 bytes_out 0 83429 bytes_in 0 83429 station_ip 5.160.114.41 83429 port 15728761 83429 nas_port_type Virtual 83429 remote_ip 5.5.5.201 83431 username madadi 83431 unique_id port 83431 terminate_cause Lost-Carrier 83431 bytes_out 18929 83406 terminate_cause Lost-Carrier 83406 bytes_out 19548 83406 bytes_in 127750 83406 station_ip 5.120.95.91 83406 port 15728740 83406 nas_port_type Virtual 83406 remote_ip 5.5.5.210 83408 username forozande 83408 unique_id port 83408 terminate_cause User-Request 83408 bytes_out 255244 83408 bytes_in 3355708 83408 station_ip 83.122.127.16 83408 port 15728744 83408 nas_port_type Virtual 83408 remote_ip 5.5.5.208 83414 username zamanialireza 83414 unique_id port 83414 terminate_cause Lost-Carrier 83414 bytes_out 2084367 83414 bytes_in 50703505 83414 station_ip 5.160.112.51 83414 port 15728738 83414 nas_port_type Virtual 83414 remote_ip 5.5.5.211 83416 username alinezhad 83416 unique_id port 83416 terminate_cause User-Request 83416 bytes_out 0 83416 bytes_in 0 83416 station_ip 5.202.99.29 83416 port 15728749 83416 nas_port_type Virtual 83416 remote_ip 5.5.5.231 83423 username ahmadi 83423 unique_id port 83423 terminate_cause User-Request 83423 bytes_out 0 83423 bytes_in 0 83423 station_ip 37.129.229.194 83423 port 15728755 83423 nas_port_type Virtual 83423 remote_ip 5.5.5.204 83424 username arabpour 83424 unique_id port 83424 terminate_cause User-Request 83424 bytes_out 409829 83424 bytes_in 11266487 83424 station_ip 83.123.68.244 83424 port 15728754 83424 nas_port_type Virtual 83424 remote_ip 5.5.5.205 83434 username arabpour 83434 unique_id port 83434 terminate_cause User-Request 83434 bytes_out 318266 83434 bytes_in 7855904 83434 station_ip 83.122.41.133 83434 port 15728767 83434 nas_port_type Virtual 83434 remote_ip 5.5.5.198 83450 username amir 83450 unique_id port 83450 terminate_cause Lost-Carrier 83450 bytes_out 5328953 83450 bytes_in 81514455 83450 station_ip 46.225.212.139 83450 port 15728747 83450 nas_port_type Virtual 83450 remote_ip 5.5.5.206 83467 username madadi 83467 unique_id port 83467 terminate_cause Lost-Carrier 83467 bytes_out 33447 83467 bytes_in 144015 83467 station_ip 5.119.15.183 83467 port 15728798 83467 nas_port_type Virtual 83467 remote_ip 5.5.5.188 83470 username madadi 83470 unique_id port 83470 terminate_cause Lost-Carrier 83470 bytes_out 260133 83470 bytes_in 5129028 83470 station_ip 5.120.80.106 83470 port 15728799 83470 nas_port_type Virtual 83470 remote_ip 5.5.5.187 83471 username amin.insta22 83471 kill_reason Relative expiration date has reached 83471 unique_id port 83471 bytes_out 0 83471 bytes_in 0 83471 station_ip 5.233.61.53 83471 port 15728804 83471 nas_port_type Virtual 83473 username madadi 83473 unique_id port 83473 terminate_cause Lost-Carrier 83473 bytes_out 35456 83473 bytes_in 269353 83473 station_ip 5.120.12.110 83473 port 15728803 83473 nas_port_type Virtual 83473 remote_ip 5.5.5.185 83478 username kamali 83478 unique_id port 83478 terminate_cause User-Request 83478 bytes_out 0 83478 bytes_in 0 83478 station_ip 37.129.229.165 83478 port 15728810 83478 nas_port_type Virtual 83478 remote_ip 5.5.5.181 83479 username shojaei 83479 unique_id port 83479 terminate_cause User-Request 83479 bytes_out 495510 83479 bytes_in 10852709 83479 station_ip 113.203.117.48 83479 port 15728809 83479 nas_port_type Virtual 83479 remote_ip 5.5.5.182 83482 username madadi 83482 unique_id port 83482 terminate_cause Lost-Carrier 83482 bytes_out 19810 83482 bytes_in 130258 83482 station_ip 5.120.34.16 83482 port 15728807 83482 nas_port_type Virtual 83482 remote_ip 5.5.5.183 83494 username caferibar 83494 unique_id port 83494 terminate_cause User-Request 83494 bytes_out 482892 83494 bytes_in 2808728 83494 station_ip 94.183.213.166 83494 port 15728828 83494 nas_port_type Virtual 83494 remote_ip 5.5.5.172 83497 username khalili 83497 unique_id port 83417 station_ip 5.160.112.51 83417 port 15728746 83417 nas_port_type Virtual 83417 remote_ip 5.5.5.207 83418 username amin.insta22 83418 kill_reason Relative expiration date has reached 83418 unique_id port 83418 bytes_out 0 83418 bytes_in 0 83418 station_ip 5.233.61.53 83418 port 15728750 83418 nas_port_type Virtual 83421 username madadi 83421 unique_id port 83421 terminate_cause Lost-Carrier 83421 bytes_out 597338 83421 bytes_in 3976572 83421 station_ip 5.119.171.102 83421 port 15728741 83421 nas_port_type Virtual 83421 remote_ip 5.5.5.209 83425 username aminvpn 83425 kill_reason Another user logged on this global unique id 83425 mac 83425 bytes_out 0 83425 bytes_in 0 83425 station_ip 5.120.151.202 83425 port 33 83425 unique_id port 83425 remote_ip 10.8.1.10 83430 username aminvpn 83430 mac 83430 bytes_out 0 83430 bytes_in 0 83430 station_ip 5.120.151.202 83430 port 33 83430 unique_id port 83433 username forozande 83433 unique_id port 83433 terminate_cause User-Request 83433 bytes_out 70056 83433 bytes_in 447742 83433 station_ip 83.123.108.184 83433 port 15728766 83433 nas_port_type Virtual 83433 remote_ip 5.5.5.200 83442 username arabpour 83442 unique_id port 83442 terminate_cause User-Request 83442 bytes_out 229018 83442 bytes_in 4639869 83442 station_ip 83.122.41.133 83442 port 15728779 83442 nas_port_type Virtual 83442 remote_ip 5.5.5.198 83444 username zamanialireza 83444 unique_id port 83444 terminate_cause User-Request 83444 bytes_out 2981031 83444 bytes_in 107354496 83444 station_ip 37.129.178.105 83444 port 15728774 83444 nas_port_type Virtual 83444 remote_ip 5.5.5.196 83446 username aminvpn 83446 unique_id port 83446 terminate_cause Lost-Carrier 83446 bytes_out 9955107 83446 bytes_in 53247339 83446 station_ip 5.160.114.41 83446 port 15728762 83446 nas_port_type Virtual 83446 remote_ip 5.5.5.201 83448 username aminvpn 83448 unique_id port 83448 terminate_cause User-Request 83448 bytes_out 0 83448 bytes_in 0 83448 station_ip 113.203.100.199 83448 port 15728783 83448 nas_port_type Virtual 83448 remote_ip 5.5.5.238 83449 username aminvpn 83449 unique_id port 83449 terminate_cause User-Request 83449 bytes_out 86653 83449 bytes_in 151124 83449 station_ip 113.203.100.199 83449 port 15728784 83449 nas_port_type Virtual 83449 remote_ip 5.5.5.238 83451 username zamanialireza 83451 unique_id port 83451 terminate_cause User-Request 83451 bytes_out 1394160 83451 bytes_in 44635053 83451 station_ip 83.123.69.54 83451 port 15728782 83451 nas_port_type Virtual 83451 remote_ip 5.5.5.194 83457 username arabpour 83457 unique_id port 83457 terminate_cause User-Request 83457 bytes_out 239708 83457 bytes_in 4756089 83457 station_ip 83.122.209.14 83457 port 15728789 83457 nas_port_type Virtual 83457 remote_ip 5.5.5.193 83461 username caferibar 83461 unique_id port 83461 terminate_cause User-Request 83461 bytes_out 369546050 83461 bytes_in 152385138 83461 station_ip 5.120.180.146 83461 port 15728769 83461 nas_port_type Virtual 83461 remote_ip 5.5.5.237 83466 username mahdixz 83466 unique_id port 83466 terminate_cause Lost-Carrier 83466 bytes_out 2866503 83466 bytes_in 98144804 83466 station_ip 151.235.84.173 83466 port 15728793 83466 nas_port_type Virtual 83466 remote_ip 5.5.5.214 83472 username soleymani 83472 unique_id port 83472 terminate_cause Lost-Carrier 83472 bytes_out 164146 83472 bytes_in 1318524 83472 station_ip 5.126.167.46 83472 port 15728802 83472 nas_port_type Virtual 83472 remote_ip 5.5.5.186 83475 username zamanialireza 83475 unique_id port 83475 terminate_cause Lost-Carrier 83475 bytes_out 2611280 83475 bytes_in 40910159 83475 station_ip 31.56.114.192 83431 bytes_in 138624 83431 station_ip 5.120.24.210 83431 port 15728757 83431 nas_port_type Virtual 83431 remote_ip 5.5.5.202 83436 username madadi 83436 unique_id port 83436 terminate_cause Lost-Carrier 83436 bytes_out 244200 83436 bytes_in 1946468 83436 station_ip 5.119.237.6 83436 port 15728765 83436 nas_port_type Virtual 83436 remote_ip 5.5.5.199 83440 username aminvpn 83440 unique_id port 83440 terminate_cause User-Request 83440 bytes_out 286682 83440 bytes_in 2045933 83440 station_ip 113.203.100.199 83440 port 15728776 83440 nas_port_type Virtual 83440 remote_ip 5.5.5.238 83447 username hamideh 83447 unique_id port 83447 terminate_cause Lost-Carrier 83447 bytes_out 27370 83447 bytes_in 218777 83447 station_ip 5.119.109.248 83447 port 15728775 83447 nas_port_type Virtual 83447 remote_ip 5.5.5.230 83453 username arabpour 83453 unique_id port 83453 terminate_cause User-Request 83453 bytes_out 251027 83453 bytes_in 5126148 83453 station_ip 83.122.209.14 83453 port 15728785 83453 nas_port_type Virtual 83453 remote_ip 5.5.5.193 83454 username shirin 83454 unique_id port 83454 terminate_cause User-Request 83454 bytes_out 0 83454 bytes_in 0 83454 station_ip 113.203.42.130 83454 port 15728786 83454 nas_port_type Virtual 83454 remote_ip 5.5.5.192 83458 username shirin 83458 unique_id port 83458 terminate_cause User-Request 83458 bytes_out 153191 83458 bytes_in 3649379 83458 station_ip 113.203.42.130 83458 port 15728790 83458 nas_port_type Virtual 83458 remote_ip 5.5.5.192 83459 username shirin 83459 unique_id port 83459 terminate_cause User-Request 83459 bytes_out 132673 83459 bytes_in 2901007 83459 station_ip 113.203.42.130 83459 port 15728791 83459 nas_port_type Virtual 83459 remote_ip 5.5.5.192 83460 username mahdixz 83460 unique_id port 83460 terminate_cause User-Request 83460 bytes_out 626116 83460 bytes_in 6201033 83460 station_ip 151.235.84.173 83460 port 15728792 83460 nas_port_type Virtual 83460 remote_ip 5.5.5.214 83462 username forozande 83462 unique_id port 83462 terminate_cause User-Request 83462 bytes_out 0 83462 bytes_in 0 83462 station_ip 83.123.140.111 83462 port 15728795 83462 nas_port_type Virtual 83462 remote_ip 5.5.5.190 83464 username forozande 83464 unique_id port 83464 terminate_cause User-Request 83464 bytes_out 0 83464 bytes_in 0 83464 station_ip 83.123.140.111 83464 port 15728796 83464 nas_port_type Virtual 83464 remote_ip 5.5.5.190 83465 username ahmadi 83465 unique_id port 83465 terminate_cause User-Request 83465 bytes_out 0 83465 bytes_in 0 83465 station_ip 37.129.203.178 83465 port 15728797 83465 nas_port_type Virtual 83465 remote_ip 5.5.5.189 83468 username aminvpn 83468 unique_id port 83468 terminate_cause User-Request 83468 bytes_out 29919 83468 bytes_in 68332 83468 station_ip 113.203.100.199 83468 port 15728800 83468 nas_port_type Virtual 83468 remote_ip 5.5.5.238 83474 username asadi 83474 unique_id port 83474 terminate_cause User-Request 83474 bytes_out 50624 83474 bytes_in 290396 83474 station_ip 83.122.238.35 83474 port 15728806 83474 nas_port_type Virtual 83474 remote_ip 5.5.5.248 83476 username soleymani 83476 unique_id port 83476 terminate_cause Lost-Carrier 83476 bytes_out 79175 83476 bytes_in 367459 83476 station_ip 5.126.136.12 83476 port 15728805 83476 nas_port_type Virtual 83476 remote_ip 5.5.5.184 83481 username asadi 83481 unique_id port 83481 terminate_cause User-Request 83481 bytes_out 468108 83481 bytes_in 7752042 83481 station_ip 83.122.238.35 83481 port 15728812 83481 nas_port_type Virtual 83481 remote_ip 5.5.5.248 83483 username alinezhad 83483 unique_id port 83483 terminate_cause User-Request 83441 terminate_cause User-Request 83441 bytes_out 179675 83441 bytes_in 66540 83441 station_ip 113.203.100.199 83441 port 15728778 83441 nas_port_type Virtual 83441 remote_ip 5.5.5.238 83443 username aminvpn 83443 unique_id port 83443 terminate_cause User-Request 83443 bytes_out 33480 83443 bytes_in 46103 83443 station_ip 113.203.100.199 83443 port 15728780 83443 nas_port_type Virtual 83443 remote_ip 5.5.5.238 83445 username arabpour 83445 unique_id port 83445 terminate_cause User-Request 83445 bytes_out 182015 83445 bytes_in 4549903 83445 station_ip 83.122.41.133 83445 port 15728781 83445 nas_port_type Virtual 83445 remote_ip 5.5.5.198 83452 username aminvpn 83452 unique_id port 83452 terminate_cause Lost-Carrier 83452 bytes_out 194041 83452 bytes_in 1104452 83452 station_ip 5.233.72.32 83452 port 15728777 83452 nas_port_type Virtual 83452 remote_ip 5.5.5.195 83455 username shirin 83455 unique_id port 83455 terminate_cause User-Request 83455 bytes_out 147776 83455 bytes_in 3178257 83455 station_ip 113.203.42.130 83455 port 15728787 83455 nas_port_type Virtual 83455 remote_ip 5.5.5.192 83456 username shirin 83456 unique_id port 83456 terminate_cause User-Request 83456 bytes_out 101541 83456 bytes_in 2211609 83456 station_ip 113.203.42.130 83456 port 15728788 83456 nas_port_type Virtual 83456 remote_ip 5.5.5.192 83463 username heydari 83463 unique_id port 83463 terminate_cause Lost-Carrier 83463 bytes_out 378691 83463 bytes_in 2209992 83463 station_ip 5.119.104.213 83463 port 15728763 83463 nas_port_type Virtual 83463 remote_ip 5.5.5.240 83469 username alinezhad 83469 unique_id port 83469 terminate_cause User-Request 83469 bytes_out 48540 83469 bytes_in 469553 83469 station_ip 5.202.99.29 83469 port 15728801 83469 nas_port_type Virtual 83469 remote_ip 5.5.5.231 83480 username kamali 83480 unique_id port 83480 terminate_cause User-Request 83480 bytes_out 69887 83480 bytes_in 377814 83480 station_ip 37.129.229.165 83480 port 15728811 83480 nas_port_type Virtual 83480 remote_ip 5.5.5.181 83484 username mahbobeh 83484 unique_id port 83484 terminate_cause Lost-Carrier 83484 bytes_out 2249048 83484 bytes_in 23945452 83484 station_ip 83.123.40.92 83484 port 15728772 83484 nas_port_type Virtual 83484 remote_ip 5.5.5.197 83487 username forozande 83487 unique_id port 83487 terminate_cause User-Request 83487 bytes_out 52843 83487 bytes_in 114505 83487 station_ip 37.129.11.115 83487 port 15728817 83487 nas_port_type Virtual 83487 remote_ip 5.5.5.178 83492 username zamanialireza 83492 unique_id port 83492 terminate_cause User-Request 83492 bytes_out 0 83492 bytes_in 0 83492 station_ip 94.183.213.166 83492 port 15728832 83492 nas_port_type Virtual 83492 remote_ip 5.5.5.169 83493 username caferibar 83493 unique_id port 83493 terminate_cause User-Request 83493 bytes_out 0 83493 bytes_in 0 83493 station_ip 94.183.213.166 83493 port 15728833 83493 nas_port_type Virtual 83493 remote_ip 5.5.5.168 83500 username madadi 83500 kill_reason Maximum number of concurrent logins reached 83500 unique_id port 83500 bytes_out 0 83500 bytes_in 0 83500 station_ip 5.119.38.192 83500 port 15728842 83500 nas_port_type Virtual 83502 username madadi 83502 unique_id port 83502 terminate_cause Lost-Carrier 83502 bytes_out 128455 83502 bytes_in 2338794 83502 station_ip 5.119.135.70 83502 port 15728839 83502 nas_port_type Virtual 83502 remote_ip 5.5.5.164 83503 username asadi 83503 unique_id port 83503 terminate_cause User-Request 83503 bytes_out 22221 83503 bytes_in 306354 83503 station_ip 83.123.44.253 83503 port 15728843 83503 nas_port_type Virtual 83503 remote_ip 5.5.5.163 83505 username farhad 83505 unique_id port 83475 port 15728794 83475 nas_port_type Virtual 83475 remote_ip 5.5.5.191 83477 username shojaei 83477 unique_id port 83477 terminate_cause User-Request 83477 bytes_out 35816 83477 bytes_in 266505 83477 station_ip 113.203.117.48 83477 port 15728808 83477 nas_port_type Virtual 83477 remote_ip 5.5.5.182 83485 username madadi 83485 kill_reason Maximum check online fails reached 83485 unique_id port 83485 bytes_out 8132 83485 bytes_in 31703 83485 station_ip 5.119.128.199 83485 port 15728815 83485 nas_port_type Virtual 83485 remote_ip 5.5.5.180 83488 username alinezhad 83488 unique_id port 83488 terminate_cause User-Request 83488 bytes_out 130316 83488 bytes_in 1703220 83488 station_ip 5.202.99.29 83488 port 15728814 83488 nas_port_type Virtual 83488 remote_ip 5.5.5.231 83495 username madadi 83495 unique_id port 83495 terminate_cause Lost-Carrier 83495 bytes_out 17775 83495 bytes_in 137115 83495 station_ip 5.120.72.151 83495 port 15728831 83495 nas_port_type Virtual 83495 remote_ip 5.5.5.170 83496 username arabpour 83496 unique_id port 83496 terminate_cause User-Request 83496 bytes_out 166915 83496 bytes_in 2959992 83496 station_ip 37.129.133.94 83496 port 15728836 83496 nas_port_type Virtual 83496 remote_ip 5.5.5.167 83501 username madadi 83501 unique_id port 83501 terminate_cause Lost-Carrier 83501 bytes_out 27737 83501 bytes_in 136758 83501 station_ip 5.119.249.35 83501 port 15728838 83501 nas_port_type Virtual 83501 remote_ip 5.5.5.165 83504 username mahbobeh 83504 unique_id port 83504 terminate_cause Lost-Carrier 83504 bytes_out 233015 83504 bytes_in 3123068 83504 station_ip 83.123.40.92 83504 port 15728827 83504 nas_port_type Virtual 83504 remote_ip 5.5.5.197 83510 username shojaei 83510 unique_id port 83510 terminate_cause User-Request 83510 bytes_out 289158 83510 bytes_in 7625722 83510 station_ip 113.203.117.48 83510 port 15728849 83510 nas_port_type Virtual 83510 remote_ip 5.5.5.182 83518 username asadi 83518 unique_id port 83518 terminate_cause User-Request 83518 bytes_out 63157 83518 bytes_in 398164 83518 station_ip 83.123.44.253 83518 port 15728855 83518 nas_port_type Virtual 83518 remote_ip 5.5.5.163 83520 username asadi 83520 unique_id port 83520 terminate_cause User-Request 83520 bytes_out 30461 83520 bytes_in 170000 83520 station_ip 83.123.44.253 83520 port 15728857 83520 nas_port_type Virtual 83520 remote_ip 5.5.5.163 83521 username asadi 83521 unique_id port 83521 terminate_cause User-Request 83521 bytes_out 20947 83521 bytes_in 105110 83521 station_ip 83.123.44.253 83521 port 15728858 83521 nas_port_type Virtual 83521 remote_ip 5.5.5.163 83526 username shojaei 83526 unique_id port 83526 terminate_cause User-Request 83526 bytes_out 28315 83526 bytes_in 27822 83526 station_ip 113.203.117.48 83526 port 15728863 83526 nas_port_type Virtual 83526 remote_ip 5.5.5.182 83528 username asadi 83528 unique_id port 83528 terminate_cause User-Request 83528 bytes_out 52588 83528 bytes_in 199441 83528 station_ip 83.123.44.253 83528 port 15728866 83528 nas_port_type Virtual 83528 remote_ip 5.5.5.163 83532 username asadi 83532 unique_id port 83532 terminate_cause User-Request 83532 bytes_out 30697 83532 bytes_in 113597 83532 station_ip 83.123.44.253 83532 port 15728869 83532 nas_port_type Virtual 83532 remote_ip 5.5.5.163 83535 username asadi 83535 unique_id port 83535 terminate_cause User-Request 83535 bytes_out 26328 83535 bytes_in 129653 83535 station_ip 83.123.44.253 83535 port 15728873 83535 nas_port_type Virtual 83535 remote_ip 5.5.5.163 83537 username madadi 83537 unique_id port 83537 terminate_cause User-Request 83537 bytes_out 56680 83537 bytes_in 129425 83483 bytes_out 67288 83483 bytes_in 1112677 83483 station_ip 5.202.99.29 83483 port 15728813 83483 nas_port_type Virtual 83483 remote_ip 5.5.5.231 83486 username farhad 83486 unique_id port 83486 terminate_cause User-Request 83486 bytes_out 0 83486 bytes_in 0 83486 station_ip 5.120.156.201 83486 port 15728816 83486 nas_port_type Virtual 83486 remote_ip 5.5.5.179 83489 username madadi 83489 unique_id port 83489 terminate_cause Lost-Carrier 83489 bytes_out 18455 83489 bytes_in 136449 83489 station_ip 5.119.243.68 83489 port 15728819 83489 nas_port_type Virtual 83489 remote_ip 5.5.5.177 83490 username madadi 83490 unique_id port 83490 terminate_cause Lost-Carrier 83490 bytes_out 11472 83490 bytes_in 121972 83490 station_ip 5.120.95.232 83490 port 15728823 83490 nas_port_type Virtual 83490 remote_ip 5.5.5.173 83491 username ahmadi 83491 unique_id port 83491 terminate_cause User-Request 83491 bytes_out 0 83491 bytes_in 0 83491 station_ip 37.129.135.154 83491 port 15728829 83491 nas_port_type Virtual 83491 remote_ip 5.5.5.171 83499 username madadi 83499 kill_reason Maximum number of concurrent logins reached 83499 unique_id port 83499 bytes_out 0 83499 bytes_in 0 83499 station_ip 5.119.38.192 83499 port 15728841 83499 nas_port_type Virtual 83508 username abdilahyar 83508 unique_id port 83508 terminate_cause Lost-Carrier 83508 bytes_out 1349892 83508 bytes_in 4987947 83508 station_ip 5.119.96.142 83508 port 15728756 83508 nas_port_type Virtual 83508 remote_ip 5.5.5.203 83511 username soleymani 83511 unique_id port 83511 terminate_cause Lost-Carrier 83511 bytes_out 79081 83511 bytes_in 276272 83511 station_ip 5.125.219.147 83511 port 15728847 83511 nas_port_type Virtual 83511 remote_ip 5.5.5.159 83512 username shirin 83512 unique_id port 83512 terminate_cause User-Request 83512 bytes_out 375750 83512 bytes_in 10866132 83512 station_ip 83.123.248.36 83512 port 15728850 83512 nas_port_type Virtual 83512 remote_ip 5.5.5.157 83515 username amin.insta01 83515 kill_reason Relative expiration date has reached 83515 unique_id port 83515 bytes_out 0 83515 bytes_in 0 83515 station_ip 5.120.190.153 83515 port 15728852 83515 nas_port_type Virtual 83522 username shojaei 83522 unique_id port 83522 terminate_cause User-Request 83522 bytes_out 58282 83522 bytes_in 930396 83522 station_ip 113.203.117.48 83522 port 15728859 83522 nas_port_type Virtual 83522 remote_ip 5.5.5.182 83527 username asadi 83527 unique_id port 83527 terminate_cause User-Request 83527 bytes_out 19223 83527 bytes_in 109360 83527 station_ip 83.123.44.253 83527 port 15728865 83527 nas_port_type Virtual 83527 remote_ip 5.5.5.163 83530 username asadi 83530 unique_id port 83530 terminate_cause User-Request 83530 bytes_out 9584 83530 bytes_in 40137 83530 station_ip 83.123.44.253 83530 port 15728868 83530 nas_port_type Virtual 83530 remote_ip 5.5.5.163 83531 username amir 83531 unique_id port 83531 terminate_cause Lost-Carrier 83531 bytes_out 9936492 83531 bytes_in 190317162 83531 station_ip 46.225.212.139 83531 port 15728830 83531 nas_port_type Virtual 83531 remote_ip 5.5.5.206 83534 username farhad 83534 unique_id port 83534 terminate_cause Lost-Carrier 83534 bytes_out 6847465 83534 bytes_in 87063934 83534 station_ip 5.120.131.67 83534 port 15728851 83534 nas_port_type Virtual 83534 remote_ip 5.5.5.156 83536 username zamanialireza 83536 unique_id port 83536 terminate_cause User-Request 83536 bytes_out 619449 83536 bytes_in 10103871 83536 station_ip 94.183.213.166 83536 port 15728864 83536 nas_port_type Virtual 83536 remote_ip 5.5.5.169 83538 username asadi 83538 unique_id port 83538 terminate_cause User-Request 83538 bytes_out 20483 83497 terminate_cause User-Request 83497 bytes_out 3982878 83497 bytes_in 63953578 83497 station_ip 5.120.175.150 83497 port 15728837 83497 nas_port_type Virtual 83497 remote_ip 5.5.5.166 83498 username khalili 83498 unique_id port 83498 terminate_cause User-Request 83498 bytes_out 0 83498 bytes_in 0 83498 station_ip 5.120.175.150 83498 port 15728840 83498 nas_port_type Virtual 83498 remote_ip 5.5.5.166 83506 username madadi 83506 unique_id port 83506 terminate_cause Lost-Carrier 83506 bytes_out 33466 83506 bytes_in 146801 83506 station_ip 5.119.116.61 83506 port 15728844 83506 nas_port_type Virtual 83506 remote_ip 5.5.5.162 83513 username farhad 83513 unique_id port 83513 terminate_cause User-Request 83513 bytes_out 1810774 83513 bytes_in 11032002 83513 station_ip 5.119.89.113 83513 port 15728845 83513 nas_port_type Virtual 83513 remote_ip 5.5.5.161 83516 username forozande 83516 unique_id port 83516 terminate_cause User-Request 83516 bytes_out 28592 83516 bytes_in 69875 83516 station_ip 113.203.14.16 83516 port 15728853 83516 nas_port_type Virtual 83516 remote_ip 5.5.5.155 83519 username shojaei 83519 unique_id port 83519 terminate_cause User-Request 83519 bytes_out 78420 83519 bytes_in 31271 83519 station_ip 113.203.117.48 83519 port 15728856 83519 nas_port_type Virtual 83519 remote_ip 5.5.5.182 83524 username shojaei 83524 unique_id port 83524 terminate_cause User-Request 83524 bytes_out 14790 83524 bytes_in 27525 83524 station_ip 113.203.117.48 83524 port 15728861 83524 nas_port_type Virtual 83524 remote_ip 5.5.5.182 83525 username asadi 83525 unique_id port 83525 terminate_cause User-Request 83525 bytes_out 32386 83525 bytes_in 233498 83525 station_ip 83.123.44.253 83525 port 15728862 83525 nas_port_type Virtual 83525 remote_ip 5.5.5.163 83529 username asadi 83529 unique_id port 83529 terminate_cause User-Request 83529 bytes_out 24142 83529 bytes_in 119746 83529 station_ip 83.123.44.253 83529 port 15728867 83529 nas_port_type Virtual 83529 remote_ip 5.5.5.163 83533 username arman 83533 unique_id port 83533 terminate_cause Lost-Carrier 83533 bytes_out 4997035 83533 bytes_in 28718938 83533 station_ip 5.119.161.12 83533 port 15728821 83533 nas_port_type Virtual 83533 remote_ip 5.5.5.175 83542 username asadi 83542 unique_id port 83542 terminate_cause User-Request 83542 bytes_out 4975 83542 bytes_in 16568 83542 station_ip 83.123.44.253 83542 port 15728879 83542 nas_port_type Virtual 83542 remote_ip 5.5.5.163 83543 username aminvpn 83543 unique_id port 83543 terminate_cause User-Request 83543 bytes_out 102661 83543 bytes_in 476296 83543 station_ip 83.123.181.87 83543 port 15728880 83543 nas_port_type Virtual 83543 remote_ip 5.5.5.151 83544 username asadi 83544 unique_id port 83544 terminate_cause User-Request 83544 bytes_out 0 83544 bytes_in 0 83544 station_ip 83.123.44.253 83544 port 15728881 83544 nas_port_type Virtual 83544 remote_ip 5.5.5.163 83545 username asadi 83545 unique_id port 83545 terminate_cause User-Request 83545 bytes_out 19442 83545 bytes_in 139881 83545 station_ip 83.123.44.253 83545 port 15728882 83545 nas_port_type Virtual 83545 remote_ip 5.5.5.163 83556 username madadi 83556 unique_id port 83556 terminate_cause Lost-Carrier 83556 bytes_out 409643 83556 bytes_in 3699345 83556 station_ip 5.119.6.227 83556 port 15728891 83556 nas_port_type Virtual 83556 remote_ip 5.5.5.148 83559 username zamanialireza 83559 unique_id port 83559 terminate_cause User-Request 83559 bytes_out 0 83559 bytes_in 0 83559 station_ip 31.56.114.192 83559 port 15728901 83559 nas_port_type Virtual 83559 remote_ip 5.5.5.145 83564 username caferibar 83564 unique_id port 83505 terminate_cause Lost-Carrier 83505 bytes_out 10709324 83505 bytes_in 157433531 83505 station_ip 5.120.156.201 83505 port 15728818 83505 nas_port_type Virtual 83505 remote_ip 5.5.5.179 83507 username aminvpn 83507 unique_id port 83507 terminate_cause Lost-Carrier 83507 bytes_out 3967932 83507 bytes_in 270381979 83507 station_ip 5.120.151.202 83507 port 15728820 83507 nas_port_type Virtual 83507 remote_ip 5.5.5.176 83509 username heydarizadeh 83509 unique_id port 83509 terminate_cause Lost-Carrier 83509 bytes_out 177980 83509 bytes_in 2627973 83509 station_ip 46.225.213.109 83509 port 15728846 83509 nas_port_type Virtual 83509 remote_ip 5.5.5.160 83514 username madadi 83514 unique_id port 83514 terminate_cause Lost-Carrier 83514 bytes_out 26123 83514 bytes_in 144524 83514 station_ip 5.120.6.78 83514 port 15728848 83514 nas_port_type Virtual 83514 remote_ip 5.5.5.158 83517 username shojaei 83517 unique_id port 83517 terminate_cause User-Request 83517 bytes_out 22578 83517 bytes_in 43780 83517 station_ip 113.203.117.48 83517 port 15728854 83517 nas_port_type Virtual 83517 remote_ip 5.5.5.182 83523 username asadi 83523 unique_id port 83523 terminate_cause User-Request 83523 bytes_out 37482 83523 bytes_in 188089 83523 station_ip 83.123.44.253 83523 port 15728860 83523 nas_port_type Virtual 83523 remote_ip 5.5.5.163 83546 username asadi 83546 unique_id port 83546 terminate_cause User-Request 83546 bytes_out 25151 83546 bytes_in 98301 83546 station_ip 83.123.44.253 83546 port 15728884 83546 nas_port_type Virtual 83546 remote_ip 5.5.5.163 83547 username madadi 83547 unique_id port 83547 terminate_cause Lost-Carrier 83547 bytes_out 29271 83547 bytes_in 134755 83547 station_ip 5.120.64.106 83547 port 15728883 83547 nas_port_type Virtual 83547 remote_ip 5.5.5.153 83550 username zamanialireza 83550 unique_id port 83550 terminate_cause User-Request 83550 bytes_out 111056 83550 bytes_in 155846 83550 station_ip 83.122.158.46 83550 port 15728886 83550 nas_port_type Virtual 83550 remote_ip 5.5.5.150 83553 username caferibar 83553 unique_id port 83553 terminate_cause User-Request 83553 bytes_out 59869567 83553 bytes_in 2317335934 83553 station_ip 5.120.180.146 83553 port 15728870 83553 nas_port_type Virtual 83553 remote_ip 5.5.5.237 83557 username zamanialireza 83557 unique_id port 83557 terminate_cause Lost-Carrier 83557 bytes_out 132828 83557 bytes_in 1583372 83557 station_ip 31.56.114.192 83557 port 15728894 83557 nas_port_type Virtual 83557 remote_ip 5.5.5.191 83558 username zamanialireza 83558 unique_id port 83558 terminate_cause User-Request 83558 bytes_out 1655018 83558 bytes_in 11659687 83558 station_ip 31.56.114.192 83558 port 15728897 83558 nas_port_type Virtual 83558 remote_ip 5.5.5.145 83563 username caferibar 83563 unique_id port 83563 terminate_cause Lost-Carrier 83563 bytes_out 1035833 83563 bytes_in 1455280 83563 station_ip 5.134.180.112 83563 port 15728893 83563 nas_port_type Virtual 83563 remote_ip 5.5.5.147 83566 username zamanialireza 83566 unique_id port 83566 terminate_cause User-Request 83566 bytes_out 437174 83566 bytes_in 2343500 83566 station_ip 113.203.119.15 83566 port 15728907 83566 nas_port_type Virtual 83566 remote_ip 5.5.5.140 83568 username zamanialireza 83568 unique_id port 83568 terminate_cause Lost-Carrier 83568 bytes_out 374296 83568 bytes_in 1099927 83568 station_ip 31.56.114.192 83568 port 15728903 83568 nas_port_type Virtual 83568 remote_ip 5.5.5.145 83573 username mahbobeh 83573 unique_id port 83573 terminate_cause Lost-Carrier 83573 bytes_out 1297513 83573 bytes_in 17218283 83573 station_ip 83.123.40.92 83573 port 15728892 83573 nas_port_type Virtual 83573 remote_ip 5.5.5.197 83537 station_ip 5.120.64.106 83537 port 15728872 83537 nas_port_type Virtual 83537 remote_ip 5.5.5.153 83541 username asadi 83541 unique_id port 83541 terminate_cause User-Request 83541 bytes_out 34161 83541 bytes_in 247635 83541 station_ip 83.123.44.253 83541 port 15728877 83541 nas_port_type Virtual 83541 remote_ip 5.5.5.163 83551 username zamanialireza 83551 unique_id port 83551 terminate_cause User-Request 83551 bytes_out 31611 83551 bytes_in 34399 83551 station_ip 83.122.158.46 83551 port 15728889 83551 nas_port_type Virtual 83551 remote_ip 5.5.5.150 83552 username amirabbas 83552 unique_id port 83552 terminate_cause User-Request 83552 bytes_out 70399536 83552 bytes_in 1916046944 83552 station_ip 151.238.237.211 83552 port 15728822 83552 nas_port_type Virtual 83552 remote_ip 5.5.5.174 83555 username jamali 83555 unique_id port 83555 terminate_cause Lost-Carrier 83555 bytes_out 799385 83555 bytes_in 12589464 83555 station_ip 5.119.55.95 83555 port 15728890 83555 nas_port_type Virtual 83555 remote_ip 5.5.5.216 83560 username asadi 83560 unique_id port 83560 terminate_cause User-Request 83560 bytes_out 60205 83560 bytes_in 408171 83560 station_ip 83.123.44.253 83560 port 15728902 83560 nas_port_type Virtual 83560 remote_ip 5.5.5.163 83562 username aminvpn 83562 unique_id port 83562 terminate_cause User-Request 83562 bytes_out 12367809 83562 bytes_in 55215325 83562 station_ip 83.123.181.87 83562 port 15728878 83562 nas_port_type Virtual 83562 remote_ip 5.5.5.152 83565 username asadi 83565 unique_id port 83565 terminate_cause User-Request 83565 bytes_out 26300 83565 bytes_in 79475 83565 station_ip 83.123.44.253 83565 port 15728906 83565 nas_port_type Virtual 83565 remote_ip 5.5.5.163 83569 username caferibar 83569 unique_id port 83569 terminate_cause User-Request 83569 bytes_out 2098528 83569 bytes_in 36519927 83569 station_ip 5.120.180.146 83569 port 15728904 83569 nas_port_type Virtual 83569 remote_ip 5.5.5.237 83571 username madadi 83571 unique_id port 83571 terminate_cause Lost-Carrier 83571 bytes_out 485381 83571 bytes_in 998479 83571 station_ip 5.120.128.7 83571 port 15728896 83571 nas_port_type Virtual 83571 remote_ip 5.5.5.146 83580 username alinezhad 83580 unique_id port 83580 terminate_cause User-Request 83580 bytes_out 34379 83580 bytes_in 156236 83580 station_ip 5.202.99.29 83580 port 15728919 83580 nas_port_type Virtual 83580 remote_ip 5.5.5.231 83584 username soleymani 83584 unique_id port 83584 terminate_cause Lost-Carrier 83584 bytes_out 122879 83584 bytes_in 396244 83584 station_ip 5.125.218.234 83584 port 15728915 83584 nas_port_type Virtual 83584 remote_ip 5.5.5.135 83588 username aminvpn 83588 mac 83588 bytes_out 0 83588 bytes_in 0 83588 station_ip 37.129.39.240 83588 port 17 83588 unique_id port 83588 remote_ip 10.8.0.6 83600 username alinezhad 83600 unique_id port 83600 terminate_cause User-Request 83600 bytes_out 8546 83600 bytes_in 23484 83600 station_ip 5.202.99.29 83600 port 15728933 83600 nas_port_type Virtual 83600 remote_ip 5.5.5.231 83602 username alinezhad 83602 unique_id port 83602 terminate_cause User-Request 83602 bytes_out 0 83602 bytes_in 0 83602 station_ip 5.202.99.29 83602 port 15728935 83602 nas_port_type Virtual 83602 remote_ip 5.5.5.231 83604 username caferibar 83604 unique_id port 83604 terminate_cause Lost-Carrier 83604 bytes_out 427052 83604 bytes_in 3886717 83604 station_ip 37.137.14.16 83604 port 15728930 83604 nas_port_type Virtual 83604 remote_ip 5.5.5.130 83606 username mahdixz 83606 unique_id port 83606 terminate_cause User-Request 83606 bytes_out 80310 83606 bytes_in 371453 83606 station_ip 151.235.117.114 83538 bytes_in 61577 83538 station_ip 83.123.44.253 83538 port 15728874 83538 nas_port_type Virtual 83538 remote_ip 5.5.5.163 83539 username asadi 83539 unique_id port 83539 terminate_cause User-Request 83539 bytes_out 20932 83539 bytes_in 68156 83539 station_ip 83.123.44.253 83539 port 15728876 83539 nas_port_type Virtual 83539 remote_ip 5.5.5.163 83540 username madadi 83540 unique_id port 83540 terminate_cause User-Request 83540 bytes_out 28874 83540 bytes_in 41558 83540 station_ip 5.120.64.106 83540 port 15728875 83540 nas_port_type Virtual 83540 remote_ip 5.5.5.153 83548 username farhad 83548 unique_id port 83548 terminate_cause Lost-Carrier 83548 bytes_out 3376139 83548 bytes_in 48227754 83548 station_ip 5.119.30.57 83548 port 15728871 83548 nas_port_type Virtual 83548 remote_ip 5.5.5.154 83549 username mobina 83549 kill_reason Relative expiration date has reached 83549 unique_id port 83549 bytes_out 0 83549 bytes_in 0 83549 station_ip 5.124.168.179 83549 port 15728885 83549 nas_port_type Virtual 83554 username mahdixz 83554 unique_id port 83554 terminate_cause User-Request 83554 bytes_out 563871 83554 bytes_in 1702142 83554 station_ip 151.235.80.88 83554 port 15728888 83554 nas_port_type Virtual 83554 remote_ip 5.5.5.149 83561 username shahriyar 83561 unique_id port 83561 terminate_cause Lost-Carrier 83561 bytes_out 1729 83561 bytes_in 120580 83561 station_ip 46.249.126.45 83561 port 15728898 83561 nas_port_type Virtual 83561 remote_ip 5.5.5.144 83570 username caferibar 83570 unique_id port 83570 terminate_cause Lost-Carrier 83570 bytes_out 326812 83570 bytes_in 4447144 83570 station_ip 5.200.102.87 83570 port 15728905 83570 nas_port_type Virtual 83570 remote_ip 5.5.5.141 83572 username madadi 83572 unique_id port 83572 terminate_cause Lost-Carrier 83572 bytes_out 53825 83572 bytes_in 218835 83572 station_ip 5.119.21.64 83572 port 15728909 83572 nas_port_type Virtual 83572 remote_ip 5.5.5.138 83575 username madadi 83575 unique_id port 83575 terminate_cause Lost-Carrier 83575 bytes_out 11963 83575 bytes_in 126143 83575 station_ip 5.119.184.44 83575 port 15728912 83575 nas_port_type Virtual 83575 remote_ip 5.5.5.136 83590 username aminvpn 83590 mac 83590 bytes_out 0 83590 bytes_in 0 83590 station_ip 37.129.39.240 83590 port 17 83590 unique_id port 83590 remote_ip 10.8.0.6 83591 username aminvpn 83591 mac 83591 bytes_out 0 83591 bytes_in 0 83591 station_ip 5.120.151.202 83591 port 15 83591 unique_id port 83591 remote_ip 10.8.0.6 83595 username zamanialireza 83595 unique_id port 83595 terminate_cause User-Request 83595 bytes_out 23912198 83595 bytes_in 345779097 83595 station_ip 37.129.15.13 83595 port 15728911 83595 nas_port_type Virtual 83595 remote_ip 5.5.5.137 83599 username alinezhad 83599 unique_id port 83599 terminate_cause User-Request 83599 bytes_out 0 83599 bytes_in 0 83599 station_ip 5.202.99.29 83599 port 15728932 83599 nas_port_type Virtual 83599 remote_ip 5.5.5.231 83601 username abdilahyar 83601 unique_id port 83601 terminate_cause Lost-Carrier 83601 bytes_out 757345 83601 bytes_in 18702832 83601 station_ip 5.119.85.136 83601 port 15728929 83601 nas_port_type Virtual 83601 remote_ip 5.5.5.131 83605 username alinezhad 83605 unique_id port 83605 terminate_cause User-Request 83605 bytes_out 0 83605 bytes_in 0 83605 station_ip 5.202.99.29 83605 port 15728938 83605 nas_port_type Virtual 83605 remote_ip 5.5.5.231 83609 username soleymani 83609 unique_id port 83609 terminate_cause User-Request 83609 bytes_out 0 83609 bytes_in 0 83609 station_ip 5.126.56.126 83609 port 15728941 83609 nas_port_type Virtual 83564 terminate_cause Lost-Carrier 83564 bytes_out 296967 83564 bytes_in 3468747 83564 station_ip 93.114.24.238 83564 port 15728900 83564 nas_port_type Virtual 83564 remote_ip 5.5.5.142 83567 username ahmadipour 83567 unique_id port 83567 terminate_cause Lost-Carrier 83567 bytes_out 2265246 83567 bytes_in 51537225 83567 station_ip 113.203.84.221 83567 port 15728899 83567 nas_port_type Virtual 83567 remote_ip 5.5.5.143 83574 username shojaei 83574 unique_id port 83574 terminate_cause User-Request 83574 bytes_out 403192 83574 bytes_in 8438234 83574 station_ip 113.203.117.48 83574 port 15728913 83574 nas_port_type Virtual 83574 remote_ip 5.5.5.182 83579 username caferibar 83579 unique_id port 83579 terminate_cause User-Request 83579 bytes_out 6492 83579 bytes_in 17887 83579 station_ip 83.123.234.34 83579 port 15728918 83579 nas_port_type Virtual 83579 remote_ip 5.5.5.134 83581 username caferibar 83581 unique_id port 83581 terminate_cause User-Request 83581 bytes_out 80094 83581 bytes_in 101292 83581 station_ip 83.123.234.34 83581 port 15728920 83581 nas_port_type Virtual 83581 remote_ip 5.5.5.134 83582 username ahmadi 83582 unique_id port 83582 terminate_cause User-Request 83582 bytes_out 0 83582 bytes_in 0 83582 station_ip 37.129.84.37 83582 port 15728921 83582 nas_port_type Virtual 83582 remote_ip 5.5.5.133 83583 username caferibar 83583 unique_id port 83583 terminate_cause User-Request 83583 bytes_out 57383 83583 bytes_in 69363 83583 station_ip 83.123.234.34 83583 port 15728922 83583 nas_port_type Virtual 83583 remote_ip 5.5.5.134 83585 username aminvpn 83585 unique_id port 83585 terminate_cause User-Request 83585 bytes_out 93298 83585 bytes_in 571769 83585 station_ip 37.129.39.240 83585 port 15728923 83585 nas_port_type Virtual 83585 remote_ip 5.5.5.132 83586 username aminvpn 83586 unique_id port 83586 terminate_cause User-Request 83586 bytes_out 53007 83586 bytes_in 123242 83586 station_ip 37.129.39.240 83586 port 15728924 83586 nas_port_type Virtual 83586 remote_ip 5.5.5.132 83587 username aminvpn 83587 mac 83587 bytes_out 0 83587 bytes_in 0 83587 station_ip 5.120.151.202 83587 port 15 83587 unique_id port 83587 remote_ip 10.8.0.6 83589 username aminvpn 83589 mac 83589 bytes_out 0 83589 bytes_in 0 83589 station_ip 5.120.151.202 83589 port 15 83589 unique_id port 83589 remote_ip 10.8.0.6 83593 username aminvpn 83593 mac 83593 bytes_out 0 83593 bytes_in 0 83593 station_ip 5.120.151.202 83593 port 15 83593 unique_id port 83593 remote_ip 10.8.0.6 83596 username alinezhad 83596 unique_id port 83596 terminate_cause User-Request 83596 bytes_out 96224 83596 bytes_in 386060 83596 station_ip 5.202.99.29 83596 port 15728925 83596 nas_port_type Virtual 83596 remote_ip 5.5.5.231 83597 username aminvpn 83597 mac 83597 bytes_out 0 83597 bytes_in 0 83597 station_ip 5.120.151.202 83597 port 33 83597 unique_id port 83597 remote_ip 10.8.1.10 83598 username mamal 83598 unique_id port 83598 terminate_cause User-Request 83598 bytes_out 343449 83598 bytes_in 4346732 83598 station_ip 83.122.104.129 83598 port 15728931 83598 nas_port_type Virtual 83598 remote_ip 5.5.5.129 83603 username mahdixz 83603 unique_id port 83603 terminate_cause User-Request 83603 bytes_out 453749 83603 bytes_in 194157 83603 station_ip 151.235.117.114 83603 port 15728936 83603 nas_port_type Virtual 83603 remote_ip 5.5.5.128 83608 username zamanialireza 83608 unique_id port 83608 terminate_cause User-Request 83608 bytes_out 3174015 83608 bytes_in 27330071 83608 station_ip 31.56.114.192 83608 port 15728908 83608 nas_port_type Virtual 83576 username shojaei 83576 unique_id port 83576 terminate_cause User-Request 83576 bytes_out 372958 83576 bytes_in 8561792 83576 station_ip 113.203.117.48 83576 port 15728914 83576 nas_port_type Virtual 83576 remote_ip 5.5.5.182 83577 username caferibar 83577 unique_id port 83577 terminate_cause User-Request 83577 bytes_out 0 83577 bytes_in 0 83577 station_ip 83.123.234.34 83577 port 15728916 83577 nas_port_type Virtual 83577 remote_ip 5.5.5.134 83578 username caferibar 83578 unique_id port 83578 terminate_cause User-Request 83578 bytes_out 0 83578 bytes_in 0 83578 station_ip 83.123.234.34 83578 port 15728917 83578 nas_port_type Virtual 83578 remote_ip 5.5.5.134 83592 username aminvpn 83592 mac 83592 bytes_out 0 83592 bytes_in 0 83592 station_ip 37.129.39.240 83592 port 17 83592 unique_id port 83592 remote_ip 10.8.0.6 83594 username shojaei 83594 unique_id port 83594 terminate_cause User-Request 83594 bytes_out 759756 83594 bytes_in 18722434 83594 station_ip 113.203.117.48 83594 port 15728928 83594 nas_port_type Virtual 83594 remote_ip 5.5.5.182 83618 username alinezhad 83618 unique_id port 83618 terminate_cause User-Request 83618 bytes_out 0 83618 bytes_in 0 83618 station_ip 5.202.99.29 83618 port 15728951 83618 nas_port_type Virtual 83618 remote_ip 5.5.5.231 83625 username alinezhad 83625 unique_id port 83625 terminate_cause User-Request 83625 bytes_out 0 83625 bytes_in 0 83625 station_ip 5.202.99.29 83625 port 15728957 83625 nas_port_type Virtual 83625 remote_ip 5.5.5.231 83627 username alinezhad 83627 unique_id port 83627 terminate_cause User-Request 83627 bytes_out 0 83627 bytes_in 0 83627 station_ip 5.202.99.29 83627 port 15728959 83627 nas_port_type Virtual 83627 remote_ip 5.5.5.231 83634 username aminvpn 83634 unique_id port 83634 terminate_cause User-Request 83634 bytes_out 796143 83634 bytes_in 10027523 83634 station_ip 83.123.181.87 83634 port 15728953 83634 nas_port_type Virtual 83634 remote_ip 5.5.5.151 83637 username alinezhad 83637 unique_id port 83637 terminate_cause User-Request 83637 bytes_out 0 83637 bytes_in 0 83637 station_ip 5.202.99.29 83637 port 15728969 83637 nas_port_type Virtual 83637 remote_ip 5.5.5.231 83638 username heydari 83638 unique_id port 83638 terminate_cause Lost-Carrier 83638 bytes_out 3094048 83638 bytes_in 3666479 83638 station_ip 5.119.104.213 83638 port 15728934 83638 nas_port_type Virtual 83638 remote_ip 5.5.5.240 83643 username ahmadi 83643 unique_id port 83643 terminate_cause User-Request 83643 bytes_out 117960 83643 bytes_in 539427 83643 station_ip 37.129.71.205 83643 port 15728972 83643 nas_port_type Virtual 83643 remote_ip 5.5.5.115 83645 username alinezhad 83645 unique_id port 83645 terminate_cause User-Request 83645 bytes_out 13532 83645 bytes_in 18201 83645 station_ip 37.129.252.203 83645 port 15728975 83645 nas_port_type Virtual 83645 remote_ip 5.5.5.114 83647 username alinezhad 83647 unique_id port 83647 terminate_cause User-Request 83647 bytes_out 0 83647 bytes_in 0 83647 station_ip 37.129.252.203 83647 port 15728981 83647 nas_port_type Virtual 83647 remote_ip 5.5.5.114 83648 username soleymani 83648 kill_reason Maximum number of concurrent logins reached 83648 unique_id port 83648 bytes_out 0 83648 bytes_in 0 83648 station_ip 5.126.42.112 83648 port 15728985 83648 nas_port_type Virtual 83650 username khalili 83650 unique_id port 83650 terminate_cause Lost-Carrier 83650 bytes_out 6693896 83650 bytes_in 184546117 83650 station_ip 5.120.175.150 83650 port 15728910 83650 nas_port_type Virtual 83650 remote_ip 5.5.5.166 83652 username asadi 83652 unique_id port 83606 port 15728937 83606 nas_port_type Virtual 83606 remote_ip 5.5.5.128 83607 username aminvpn 83607 mac 83607 bytes_out 2192568 83607 bytes_in 11164581 83607 station_ip 37.129.39.240 83607 port 17 83607 unique_id port 83607 remote_ip 10.8.0.6 83614 username mahdixz 83614 unique_id port 83614 terminate_cause Lost-Carrier 83614 bytes_out 563909 83614 bytes_in 5216475 83614 station_ip 151.235.117.114 83614 port 15728939 83614 nas_port_type Virtual 83614 remote_ip 5.5.5.128 83619 username farhad 83619 unique_id port 83619 terminate_cause Lost-Carrier 83619 bytes_out 1670459 83619 bytes_in 22868491 83619 station_ip 5.119.79.147 83619 port 15728942 83619 nas_port_type Virtual 83619 remote_ip 5.5.5.126 83621 username soleymani 83621 unique_id port 83621 terminate_cause Lost-Carrier 83621 bytes_out 379963 83621 bytes_in 2605921 83621 station_ip 5.126.56.126 83621 port 15728945 83621 nas_port_type Virtual 83621 remote_ip 5.5.5.123 83628 username aminvpn 83628 unique_id port 83628 terminate_cause User-Request 83628 bytes_out 87274 83628 bytes_in 51216 83628 station_ip 83.123.181.87 83628 port 15728960 83628 nas_port_type Virtual 83628 remote_ip 5.5.5.118 83629 username aminvpn 83629 unique_id port 83629 terminate_cause User-Request 83629 bytes_out 23027 83629 bytes_in 144536 83629 station_ip 83.123.181.87 83629 port 15728961 83629 nas_port_type Virtual 83629 remote_ip 5.5.5.118 83631 username aminvpn 83631 unique_id port 83631 terminate_cause User-Request 83631 bytes_out 60153 83631 bytes_in 320255 83631 station_ip 83.123.181.87 83631 port 15728963 83631 nas_port_type Virtual 83631 remote_ip 5.5.5.118 83636 username aminvpn 83636 unique_id port 83636 terminate_cause User-Request 83636 bytes_out 28838 83636 bytes_in 24638 83636 station_ip 83.123.181.87 83636 port 15728967 83636 nas_port_type Virtual 83636 remote_ip 5.5.5.118 83639 username mahdixz 83639 unique_id port 83639 terminate_cause User-Request 83639 bytes_out 263292 83639 bytes_in 1004360 83639 station_ip 151.235.117.114 83639 port 15728970 83639 nas_port_type Virtual 83639 remote_ip 5.5.5.122 83646 username aminvpn 83646 unique_id port 83646 terminate_cause User-Request 83646 bytes_out 0 83646 bytes_in 0 83646 station_ip 83.123.181.87 83646 port 15728978 83646 nas_port_type Virtual 83646 remote_ip 5.5.5.118 83649 username soleymani 83649 unique_id port 83649 terminate_cause Lost-Carrier 83649 bytes_out 85082 83649 bytes_in 453545 83649 station_ip 5.125.79.175 83649 port 15728977 83649 nas_port_type Virtual 83649 remote_ip 5.5.5.113 83653 username alinezhad 83653 unique_id port 83653 terminate_cause User-Request 83653 bytes_out 0 83653 bytes_in 0 83653 station_ip 37.129.252.203 83653 port 15728989 83653 nas_port_type Virtual 83653 remote_ip 5.5.5.114 83656 username soleymani 83656 unique_id port 83656 terminate_cause Lost-Carrier 83656 bytes_out 316506 83656 bytes_in 2763892 83656 station_ip 5.126.42.112 83656 port 15728986 83656 nas_port_type Virtual 83656 remote_ip 5.5.5.111 83657 username alinezhad 83657 unique_id port 83657 terminate_cause User-Request 83657 bytes_out 0 83657 bytes_in 0 83657 station_ip 83.123.176.200 83657 port 15728996 83657 nas_port_type Virtual 83657 remote_ip 5.5.5.105 83659 username soleymani 83659 kill_reason Maximum number of concurrent logins reached 83659 unique_id port 83659 bytes_out 0 83659 bytes_in 0 83659 station_ip 5.125.10.67 83659 port 15728998 83659 nas_port_type Virtual 83661 username soleymani 83661 kill_reason Maximum number of concurrent logins reached 83661 unique_id port 83661 bytes_out 0 83661 bytes_in 0 83661 station_ip 5.125.10.67 83661 port 15729000 83608 remote_ip 5.5.5.139 83610 username ahmadi 83610 unique_id port 83610 terminate_cause User-Request 83610 bytes_out 0 83610 bytes_in 0 83610 station_ip 37.129.36.57 83610 port 15728943 83610 nas_port_type Virtual 83610 remote_ip 5.5.5.124 83612 username kamali 83612 unique_id port 83612 terminate_cause User-Request 83612 bytes_out 46372 83612 bytes_in 221062 83612 station_ip 37.129.229.165 83612 port 15728948 83612 nas_port_type Virtual 83612 remote_ip 5.5.5.181 83616 username mahdixz 83616 unique_id port 83616 terminate_cause Lost-Carrier 83616 bytes_out 557599 83616 bytes_in 969622 83616 station_ip 151.235.117.114 83616 port 15728946 83616 nas_port_type Virtual 83616 remote_ip 5.5.5.122 83620 username forozande 83620 unique_id port 83620 terminate_cause User-Request 83620 bytes_out 42587 83620 bytes_in 182489 83620 station_ip 83.122.195.70 83620 port 15728952 83620 nas_port_type Virtual 83620 remote_ip 5.5.5.119 83623 username forozande 83623 unique_id port 83623 terminate_cause User-Request 83623 bytes_out 0 83623 bytes_in 0 83623 station_ip 83.122.195.70 83623 port 15728956 83623 nas_port_type Virtual 83623 remote_ip 5.5.5.119 83624 username aminvpn 83624 unique_id port 83624 terminate_cause User-Request 83624 bytes_out 109896 83624 bytes_in 696396 83624 station_ip 83.123.181.87 83624 port 15728955 83624 nas_port_type Virtual 83624 remote_ip 5.5.5.118 83626 username forozande 83626 unique_id port 83626 terminate_cause User-Request 83626 bytes_out 164111 83626 bytes_in 4005389 83626 station_ip 83.122.195.70 83626 port 15728958 83626 nas_port_type Virtual 83626 remote_ip 5.5.5.119 83630 username alinezhad 83630 unique_id port 83630 terminate_cause User-Request 83630 bytes_out 0 83630 bytes_in 0 83630 station_ip 5.202.99.29 83630 port 15728962 83630 nas_port_type Virtual 83630 remote_ip 5.5.5.231 83633 username alinezhad 83633 unique_id port 83633 terminate_cause User-Request 83633 bytes_out 0 83633 bytes_in 0 83633 station_ip 5.202.99.29 83633 port 15728965 83633 nas_port_type Virtual 83633 remote_ip 5.5.5.231 83635 username amirabbas 83635 unique_id port 83635 terminate_cause User-Request 83635 bytes_out 17014152 83635 bytes_in 414193413 83635 station_ip 151.238.237.211 83635 port 15728927 83635 nas_port_type Virtual 83635 remote_ip 5.5.5.174 83641 username aminvpn 83641 mac 83641 bytes_out 0 83641 bytes_in 0 83641 station_ip 37.129.39.240 83641 port 15 83641 unique_id port 83641 remote_ip 10.8.0.6 83642 username aminvpn 83642 unique_id port 83642 terminate_cause User-Request 83642 bytes_out 47817 83642 bytes_in 534549 83642 station_ip 83.123.181.87 83642 port 15728973 83642 nas_port_type Virtual 83642 remote_ip 5.5.5.118 83654 username caferibar 83654 unique_id port 83654 terminate_cause User-Request 83654 bytes_out 7227009 83654 bytes_in 184999074 83654 station_ip 5.120.180.146 83654 port 15728964 83654 nas_port_type Virtual 83654 remote_ip 5.5.5.237 83658 username soleymani 83658 kill_reason Maximum number of concurrent logins reached 83658 unique_id port 83658 bytes_out 0 83658 bytes_in 0 83658 station_ip 5.125.10.67 83658 port 15728997 83658 nas_port_type Virtual 83660 username soleymani 83660 kill_reason Maximum number of concurrent logins reached 83660 unique_id port 83660 bytes_out 0 83660 bytes_in 0 83660 station_ip 5.125.10.67 83660 port 15728999 83660 nas_port_type Virtual 83663 username soleymani 83663 kill_reason Maximum number of concurrent logins reached 83663 unique_id port 83663 bytes_out 0 83663 bytes_in 0 83663 station_ip 5.125.10.67 83663 port 15729002 83663 nas_port_type Virtual 83669 username soleymani 83669 unique_id port 83609 remote_ip 5.5.5.125 83611 username forozande 83611 unique_id port 83611 terminate_cause User-Request 83611 bytes_out 193031 83611 bytes_in 741461 83611 station_ip 83.122.124.14 83611 port 15728947 83611 nas_port_type Virtual 83611 remote_ip 5.5.5.121 83613 username soleymani 83613 unique_id port 83613 terminate_cause Lost-Carrier 83613 bytes_out 35751 83613 bytes_in 229887 83613 station_ip 5.126.56.126 83613 port 15728944 83613 nas_port_type Virtual 83613 remote_ip 5.5.5.125 83615 username mahbobeh 83615 unique_id port 83615 terminate_cause Lost-Carrier 83615 bytes_out 872847 83615 bytes_in 13898284 83615 station_ip 83.123.40.92 83615 port 15728926 83615 nas_port_type Virtual 83615 remote_ip 5.5.5.197 83617 username alinezhad 83617 unique_id port 83617 terminate_cause User-Request 83617 bytes_out 48495 83617 bytes_in 99123 83617 station_ip 5.202.99.29 83617 port 15728949 83617 nas_port_type Virtual 83617 remote_ip 5.5.5.231 83622 username forozande 83622 unique_id port 83622 terminate_cause User-Request 83622 bytes_out 5412 83622 bytes_in 14493 83622 station_ip 83.122.195.70 83622 port 15728954 83622 nas_port_type Virtual 83622 remote_ip 5.5.5.119 83632 username farhad 83632 unique_id port 83632 terminate_cause User-Request 83632 bytes_out 1657117 83632 bytes_in 5759063 83632 station_ip 5.119.189.25 83632 port 15728950 83632 nas_port_type Virtual 83632 remote_ip 5.5.5.120 83640 username aminvpn 83640 unique_id port 83640 terminate_cause User-Request 83640 bytes_out 11726 83640 bytes_in 22953 83640 station_ip 83.123.181.87 83640 port 15728971 83640 nas_port_type Virtual 83640 remote_ip 5.5.5.118 83644 username alinezhad 83644 unique_id port 83644 terminate_cause User-Request 83644 bytes_out 43589 83644 bytes_in 65821 83644 station_ip 37.129.252.203 83644 port 15728974 83644 nas_port_type Virtual 83644 remote_ip 5.5.5.114 83651 username soleymani 83651 unique_id port 83651 terminate_cause Lost-Carrier 83651 bytes_out 43366 83651 bytes_in 535284 83651 station_ip 5.126.202.155 83651 port 15728980 83651 nas_port_type Virtual 83651 remote_ip 5.5.5.112 83655 username caferibar 83655 unique_id port 83655 terminate_cause User-Request 83655 bytes_out 0 83655 bytes_in 0 83655 station_ip 5.120.180.146 83655 port 15728993 83655 nas_port_type Virtual 83655 remote_ip 5.5.5.237 83666 username caferibar 83666 unique_id port 83666 terminate_cause User-Request 83666 bytes_out 4271614 83666 bytes_in 91384613 83666 station_ip 31.56.154.200 83666 port 15728992 83666 nas_port_type Virtual 83666 remote_ip 5.5.5.107 83676 username aminvpn 83676 unique_id port 83676 terminate_cause User-Request 83676 bytes_out 42577 83676 bytes_in 60869 83676 station_ip 83.123.181.87 83676 port 15729014 83676 nas_port_type Virtual 83676 remote_ip 5.5.5.118 83677 username alirezazamani 83677 kill_reason Relative expiration date has reached 83677 unique_id port 83677 bytes_out 0 83677 bytes_in 0 83677 station_ip 83.123.253.32 83677 port 15729016 83677 nas_port_type Virtual 83679 username aminvpn 83679 unique_id port 83679 terminate_cause User-Request 83679 bytes_out 14799 83679 bytes_in 23471 83679 station_ip 83.123.181.87 83679 port 15729015 83679 nas_port_type Virtual 83679 remote_ip 5.5.5.118 83682 username aminvpn 83682 unique_id port 83682 terminate_cause User-Request 83682 bytes_out 14772 83682 bytes_in 20341 83682 station_ip 83.123.181.87 83682 port 15729018 83682 nas_port_type Virtual 83682 remote_ip 5.5.5.118 83688 username caferibar 83688 unique_id port 83688 terminate_cause User-Request 83688 bytes_out 6127458 83688 bytes_in 157766234 83688 station_ip 5.120.180.146 83688 port 15728994 83688 nas_port_type Virtual 83652 terminate_cause User-Request 83652 bytes_out 176304 83652 bytes_in 3819137 83652 station_ip 37.129.13.224 83652 port 15728988 83652 nas_port_type Virtual 83652 remote_ip 5.5.5.109 83664 username soleymani 83664 unique_id port 83664 terminate_cause Lost-Carrier 83664 bytes_out 162542 83664 bytes_in 593228 83664 station_ip 5.126.236.115 83664 port 15728991 83664 nas_port_type Virtual 83664 remote_ip 5.5.5.108 83667 username aminvpn 83667 unique_id port 83667 terminate_cause User-Request 83667 bytes_out 110481 83667 bytes_in 862962 83667 station_ip 83.123.181.87 83667 port 15729008 83667 nas_port_type Virtual 83667 remote_ip 5.5.5.118 83671 username aminvpn 83671 unique_id port 83671 terminate_cause User-Request 83671 bytes_out 40879 83671 bytes_in 251376 83671 station_ip 83.123.181.87 83671 port 15729011 83671 nas_port_type Virtual 83671 remote_ip 5.5.5.118 83672 username aminvpn 83672 unique_id port 83672 terminate_cause User-Request 83672 bytes_out 27832 83672 bytes_in 94614 83672 station_ip 83.123.181.87 83672 port 15729012 83672 nas_port_type Virtual 83672 remote_ip 5.5.5.118 83674 username soleymani 83674 unique_id port 83674 terminate_cause Lost-Carrier 83674 bytes_out 129632 83674 bytes_in 496146 83674 station_ip 5.125.50.98 83674 port 15729005 83674 nas_port_type Virtual 83674 remote_ip 5.5.5.103 83678 username alirezazamani 83678 kill_reason Relative expiration date has reached 83678 unique_id port 83678 bytes_out 0 83678 bytes_in 0 83678 station_ip 83.123.253.32 83678 port 15729017 83678 nas_port_type Virtual 83685 username madadi 83685 unique_id port 83685 terminate_cause Lost-Carrier 83685 bytes_out 1987441 83685 bytes_in 4276239 83685 station_ip 5.119.134.107 83685 port 15728940 83685 nas_port_type Virtual 83685 remote_ip 5.5.5.127 83687 username aminvpn 83687 unique_id port 83687 terminate_cause User-Request 83687 bytes_out 37586 83687 bytes_in 80561 83687 station_ip 83.123.181.87 83687 port 15729021 83687 nas_port_type Virtual 83687 remote_ip 5.5.5.116 83689 username aminvpn 83689 unique_id port 83689 terminate_cause User-Request 83689 bytes_out 72257 83689 bytes_in 131504 83689 station_ip 83.123.181.87 83689 port 15729022 83689 nas_port_type Virtual 83689 remote_ip 5.5.5.116 83691 username heydari 83691 unique_id port 83691 terminate_cause User-Request 83691 bytes_out 54082 83691 bytes_in 151131 83691 station_ip 5.119.104.213 83691 port 15729023 83691 nas_port_type Virtual 83691 remote_ip 5.5.5.240 83692 username zamanialireza 83692 unique_id port 83692 terminate_cause User-Request 83692 bytes_out 777109 83692 bytes_in 4351671 83692 station_ip 5.160.112.51 83692 port 15729026 83692 nas_port_type Virtual 83692 remote_ip 5.5.5.207 83697 username afarin 83697 unique_id port 83697 terminate_cause Lost-Carrier 83697 bytes_out 420202 83697 bytes_in 3433433 83697 station_ip 151.238.234.84 83697 port 15729025 83697 nas_port_type Virtual 83697 remote_ip 5.5.5.102 83699 username amirabbas 83699 unique_id port 83699 terminate_cause User-Request 83699 bytes_out 35083486 83699 bytes_in 908491309 83699 station_ip 31.56.112.104 83699 port 15729030 83699 nas_port_type Virtual 83699 remote_ip 5.5.5.101 83703 username zamanialireza 83703 unique_id port 83703 terminate_cause User-Request 83703 bytes_out 298362 83703 bytes_in 9429806 83703 station_ip 5.160.112.51 83703 port 15729035 83703 nas_port_type Virtual 83703 remote_ip 5.5.5.207 83704 username caferibar 83704 unique_id port 83704 terminate_cause Lost-Carrier 83704 bytes_out 461406 83704 bytes_in 10865856 83704 station_ip 5.126.139.51 83704 port 15729036 83704 nas_port_type Virtual 83704 remote_ip 5.5.5.98 83711 username majid 83661 nas_port_type Virtual 83662 username soleymani 83662 kill_reason Maximum number of concurrent logins reached 83662 unique_id port 83662 bytes_out 0 83662 bytes_in 0 83662 station_ip 5.125.10.67 83662 port 15729001 83662 nas_port_type Virtual 83665 username soleymani 83665 unique_id port 83665 terminate_cause Lost-Carrier 83665 bytes_out 131065 83665 bytes_in 500195 83665 station_ip 5.125.181.110 83665 port 15728995 83665 nas_port_type Virtual 83665 remote_ip 5.5.5.106 83668 username aminvpn 83668 unique_id port 83668 terminate_cause User-Request 83668 bytes_out 36881 83668 bytes_in 309762 83668 station_ip 83.123.181.87 83668 port 15729009 83668 nas_port_type Virtual 83668 remote_ip 5.5.5.118 83670 username aminvpn 83670 unique_id port 83670 terminate_cause User-Request 83670 bytes_out 38610 83670 bytes_in 129730 83670 station_ip 83.123.181.87 83670 port 15729010 83670 nas_port_type Virtual 83670 remote_ip 5.5.5.118 83673 username aminvpn 83673 unique_id port 83673 terminate_cause User-Request 83673 bytes_out 49442 83673 bytes_in 158928 83673 station_ip 83.123.181.87 83673 port 15729013 83673 nas_port_type Virtual 83673 remote_ip 5.5.5.118 83675 username mahdixz 83675 unique_id port 83675 terminate_cause Lost-Carrier 83675 bytes_out 1062170 83675 bytes_in 6707603 83675 station_ip 151.235.117.114 83675 port 15729004 83675 nas_port_type Virtual 83675 remote_ip 5.5.5.122 83680 username heydarizadeh 83680 unique_id port 83680 terminate_cause Lost-Carrier 83680 bytes_out 2764201 83680 bytes_in 70599238 83680 station_ip 5.119.104.213 83680 port 15728987 83680 nas_port_type Virtual 83680 remote_ip 5.5.5.110 83681 username heydari 83681 unique_id port 83681 terminate_cause Lost-Carrier 83681 bytes_out 25496336 83681 bytes_in 5368638 83681 station_ip 5.119.104.213 83681 port 15728976 83681 nas_port_type Virtual 83681 remote_ip 5.5.5.240 83686 username alinezhad 83686 unique_id port 83686 terminate_cause User-Request 83686 bytes_out 0 83686 bytes_in 0 83686 station_ip 83.123.176.200 83686 port 15729020 83686 nas_port_type Virtual 83686 remote_ip 5.5.5.105 83705 username caferibar 83705 unique_id port 83705 terminate_cause Lost-Carrier 83705 bytes_out 70028 83705 bytes_in 1100515 83705 station_ip 5.126.139.51 83705 port 15729037 83705 nas_port_type Virtual 83705 remote_ip 5.5.5.97 83707 username aminvpn 83707 mac 83707 bytes_out 478401 83707 bytes_in 3829044 83707 station_ip 37.129.13.212 83707 port 15 83707 unique_id port 83707 remote_ip 10.8.0.6 83708 username ahmadi 83708 unique_id port 83708 terminate_cause User-Request 83708 bytes_out 0 83708 bytes_in 0 83708 station_ip 37.129.94.205 83708 port 15729041 83708 nas_port_type Virtual 83708 remote_ip 5.5.5.93 83713 username pouria 83713 unique_id port 83713 terminate_cause Admin-Reboot 83713 bytes_out 8228002 83713 bytes_in 324234019 83713 station_ip 5.119.157.66 83713 port 15729034 83713 nas_port_type Virtual 83713 remote_ip 5.5.5.99 83718 username forozande 83718 unique_id port 83718 terminate_cause User-Request 83718 bytes_out 148055 83718 bytes_in 655181 83718 station_ip 37.129.221.141 83718 port 15728644 83718 nas_port_type Virtual 83718 remote_ip 5.5.5.251 83719 username madadi 83719 unique_id port 83719 terminate_cause Lost-Carrier 83719 bytes_out 454913 83719 bytes_in 1587547 83719 station_ip 5.119.77.53 83719 port 15728643 83719 nas_port_type Virtual 83719 remote_ip 5.5.5.252 83721 username soleymani 83721 kill_reason Maximum number of concurrent logins reached 83721 unique_id port 83721 bytes_out 0 83721 bytes_in 0 83721 station_ip 5.126.106.59 83721 port 15728650 83721 nas_port_type Virtual 83725 username soleymani 83669 terminate_cause Lost-Carrier 83669 bytes_out 138100 83669 bytes_in 518498 83669 station_ip 5.125.10.67 83669 port 15729003 83669 nas_port_type Virtual 83669 remote_ip 5.5.5.104 83683 username aminvpn 83683 unique_id port 83683 terminate_cause User-Request 83683 bytes_out 26294919 83683 bytes_in 710926105 83683 station_ip 83.123.181.87 83683 port 15728968 83683 nas_port_type Virtual 83683 remote_ip 5.5.5.116 83684 username heydari 83684 unique_id port 83684 terminate_cause User-Request 83684 bytes_out 0 83684 bytes_in 0 83684 station_ip 5.119.104.213 83684 port 15729019 83684 nas_port_type Virtual 83684 remote_ip 5.5.5.240 83693 username zamanialireza 83693 unique_id port 83693 terminate_cause User-Request 83693 bytes_out 1371046 83693 bytes_in 3533807 83693 station_ip 5.160.112.51 83693 port 15729027 83693 nas_port_type Virtual 83693 remote_ip 5.5.5.207 83695 username amirabbas 83695 unique_id port 83695 terminate_cause Lost-Carrier 83695 bytes_out 56638122 83695 bytes_in 1207139096 83695 station_ip 151.238.237.211 83695 port 15728990 83695 nas_port_type Virtual 83695 remote_ip 5.5.5.174 83701 username farhad 83701 unique_id port 83701 terminate_cause Lost-Carrier 83701 bytes_out 26716252 83701 bytes_in 171184547 83701 station_ip 5.119.239.206 83701 port 15728966 83701 nas_port_type Virtual 83701 remote_ip 5.5.5.117 83702 username caferibar 83702 unique_id port 83702 terminate_cause User-Request 83702 bytes_out 602754 83702 bytes_in 8549874 83702 station_ip 89.47.74.20 83702 port 15729033 83702 nas_port_type Virtual 83702 remote_ip 5.5.5.100 83706 username asadi 83706 unique_id port 83706 terminate_cause User-Request 83706 bytes_out 151147 83706 bytes_in 1520225 83706 station_ip 113.203.86.179 83706 port 15729038 83706 nas_port_type Virtual 83706 remote_ip 5.5.5.96 83709 username aminvpn 83709 unique_id port 83709 terminate_cause User-Request 83709 bytes_out 8823419 83709 bytes_in 45569719 83709 station_ip 37.129.24.205 83709 port 15729040 83709 nas_port_type Virtual 83709 remote_ip 5.5.5.94 83714 username mahbobeh 83714 unique_id port 83714 terminate_cause Admin-Reboot 83714 bytes_out 4235981 83714 bytes_in 89202642 83714 station_ip 83.123.40.92 83714 port 15729043 83714 nas_port_type Virtual 83714 remote_ip 5.5.5.197 83715 username majid 83715 unique_id port 83715 terminate_cause User-Request 83715 bytes_out 798176 83715 bytes_in 21617280 83715 station_ip 86.57.19.103 83715 port 15728641 83715 nas_port_type Virtual 83715 remote_ip 5.5.5.254 83717 username farhad 83717 unique_id port 83717 terminate_cause Lost-Carrier 83717 bytes_out 4543814 83717 bytes_in 61681978 83717 station_ip 5.119.46.58 83717 port 15728640 83717 nas_port_type Virtual 83717 remote_ip 5.5.5.255 83726 username asadi 83726 unique_id port 83726 terminate_cause User-Request 83726 bytes_out 124932 83726 bytes_in 663080 83726 station_ip 83.122.157.121 83726 port 15728648 83726 nas_port_type Virtual 83726 remote_ip 5.5.5.247 83728 username soleymani 83728 kill_reason Maximum number of concurrent logins reached 83728 unique_id port 83728 bytes_out 0 83728 bytes_in 0 83728 station_ip 5.126.106.59 83728 port 15728655 83728 nas_port_type Virtual 83730 username soleymani 83730 kill_reason Maximum number of concurrent logins reached 83730 unique_id port 83730 bytes_out 0 83730 bytes_in 0 83730 station_ip 5.126.106.59 83730 port 15728657 83730 nas_port_type Virtual 83737 username soleymani 83737 kill_reason Maximum number of concurrent logins reached 83737 unique_id port 83737 bytes_out 0 83737 bytes_in 0 83737 station_ip 5.125.188.57 83737 port 15728664 83737 nas_port_type Virtual 83739 username forozande 83739 unique_id port 83688 remote_ip 5.5.5.237 83690 username aminvpn 83690 unique_id port 83690 terminate_cause User-Request 83690 bytes_out 0 83690 bytes_in 0 83690 station_ip 83.123.181.87 83690 port 15729024 83690 nas_port_type Virtual 83690 remote_ip 5.5.5.116 83694 username zamanialireza 83694 unique_id port 83694 terminate_cause User-Request 83694 bytes_out 0 83694 bytes_in 0 83694 station_ip 5.160.112.51 83694 port 15729028 83694 nas_port_type Virtual 83694 remote_ip 5.5.5.207 83696 username kamali 83696 unique_id port 83696 terminate_cause User-Request 83696 bytes_out 734402 83696 bytes_in 8261924 83696 station_ip 37.129.229.165 83696 port 15729031 83696 nas_port_type Virtual 83696 remote_ip 5.5.5.181 83698 username afarin 83698 unique_id port 83698 terminate_cause User-Request 83698 bytes_out 210421 83698 bytes_in 1186238 83698 station_ip 151.238.234.84 83698 port 15729032 83698 nas_port_type Virtual 83698 remote_ip 5.5.5.102 83700 username zamanialireza 83700 unique_id port 83700 terminate_cause User-Request 83700 bytes_out 9671800 83700 bytes_in 232601443 83700 station_ip 5.160.112.51 83700 port 15729029 83700 nas_port_type Virtual 83700 remote_ip 5.5.5.207 83710 username shojaei 83710 unique_id port 83710 terminate_cause User-Request 83710 bytes_out 117675 83710 bytes_in 236559 83710 station_ip 113.203.86.0 83710 port 15729044 83710 nas_port_type Virtual 83710 remote_ip 5.5.5.92 83712 username khalili 83712 unique_id port 83712 terminate_cause Admin-Reboot 83712 bytes_out 2095884 83712 bytes_in 84301225 83712 station_ip 5.120.175.150 83712 port 15729042 83712 nas_port_type Virtual 83712 remote_ip 5.5.5.166 83722 username soleymani 83722 kill_reason Maximum number of concurrent logins reached 83722 unique_id port 83722 bytes_out 0 83722 bytes_in 0 83722 station_ip 5.126.106.59 83722 port 15728651 83722 nas_port_type Virtual 83724 username soleymani 83724 kill_reason Maximum number of concurrent logins reached 83724 unique_id port 83724 bytes_out 0 83724 bytes_in 0 83724 station_ip 5.126.106.59 83724 port 15728652 83724 nas_port_type Virtual 83732 username soleymani 83732 kill_reason Maximum number of concurrent logins reached 83732 unique_id port 83732 bytes_out 0 83732 bytes_in 0 83732 station_ip 5.126.106.59 83732 port 15728659 83732 nas_port_type Virtual 83734 username soleymani 83734 kill_reason Maximum number of concurrent logins reached 83734 unique_id port 83734 bytes_out 0 83734 bytes_in 0 83734 station_ip 5.125.188.57 83734 port 15728661 83734 nas_port_type Virtual 83746 username amin.insta01 83746 kill_reason Relative expiration date has reached 83746 unique_id port 83746 bytes_out 0 83746 bytes_in 0 83746 station_ip 5.120.51.210 83746 port 15728672 83746 nas_port_type Virtual 83751 username asadi 83751 unique_id port 83751 terminate_cause User-Request 83751 bytes_out 51663 83751 bytes_in 490936 83751 station_ip 83.122.157.121 83751 port 15728677 83751 nas_port_type Virtual 83751 remote_ip 5.5.5.247 83754 username madadi 83754 unique_id port 83754 terminate_cause Lost-Carrier 83754 bytes_out 84210 83754 bytes_in 589433 83754 station_ip 5.119.206.173 83754 port 15728678 83754 nas_port_type Virtual 83754 remote_ip 5.5.5.242 83755 username aminvpn 83755 unique_id port 83755 terminate_cause User-Request 83755 bytes_out 258747 83755 bytes_in 7363892 83755 station_ip 37.129.91.253 83755 port 15728683 83755 nas_port_type Virtual 83755 remote_ip 5.5.5.243 83760 username soleymani 83760 unique_id port 83760 terminate_cause User-Request 83760 bytes_out 180211 83760 bytes_in 923068 83760 station_ip 5.125.108.67 83760 port 15728685 83760 nas_port_type Virtual 83760 remote_ip 5.5.5.238 83762 username forozande 83762 unique_id port 83711 unique_id port 83711 terminate_cause Admin-Reboot 83711 bytes_out 1857640 83711 bytes_in 36207078 83711 station_ip 86.57.19.103 83711 port 15729039 83711 nas_port_type Virtual 83711 remote_ip 5.5.5.95 83716 username alinezhad 83716 unique_id port 83716 terminate_cause User-Request 83716 bytes_out 0 83716 bytes_in 0 83716 station_ip 83.122.96.110 83716 port 15728642 83716 nas_port_type Virtual 83716 remote_ip 5.5.5.253 83720 username alinezhad 83720 unique_id port 83720 terminate_cause User-Request 83720 bytes_out 0 83720 bytes_in 0 83720 station_ip 5.202.62.21 83720 port 15728646 83720 nas_port_type Virtual 83720 remote_ip 5.5.5.249 83723 username alinezhad 83723 unique_id port 83723 terminate_cause User-Request 83723 bytes_out 0 83723 bytes_in 0 83723 station_ip 5.202.62.21 83723 port 15728649 83723 nas_port_type Virtual 83723 remote_ip 5.5.5.249 83727 username soleymani 83727 kill_reason Maximum number of concurrent logins reached 83727 unique_id port 83727 bytes_out 0 83727 bytes_in 0 83727 station_ip 5.126.106.59 83727 port 15728654 83727 nas_port_type Virtual 83729 username soleymani 83729 kill_reason Maximum number of concurrent logins reached 83729 unique_id port 83729 bytes_out 0 83729 bytes_in 0 83729 station_ip 5.126.106.59 83729 port 15728656 83729 nas_port_type Virtual 83736 username soleymani 83736 kill_reason Maximum number of concurrent logins reached 83736 unique_id port 83736 bytes_out 0 83736 bytes_in 0 83736 station_ip 5.125.188.57 83736 port 15728663 83736 nas_port_type Virtual 83738 username soleymani 83738 kill_reason Maximum number of concurrent logins reached 83738 unique_id port 83738 bytes_out 0 83738 bytes_in 0 83738 station_ip 5.125.188.57 83738 port 15728665 83738 nas_port_type Virtual 83743 username soleymani 83743 kill_reason Maximum check online fails reached 83743 unique_id port 83743 bytes_out 58934 83743 bytes_in 251080 83743 station_ip 5.126.161.166 83743 port 15728668 83743 nas_port_type Virtual 83743 remote_ip 5.5.5.245 83745 username asadi 83745 unique_id port 83745 terminate_cause User-Request 83745 bytes_out 28667 83745 bytes_in 68707 83745 station_ip 83.122.157.121 83745 port 15728671 83745 nas_port_type Virtual 83745 remote_ip 5.5.5.247 83750 username asadi 83750 unique_id port 83750 terminate_cause User-Request 83750 bytes_out 61308 83750 bytes_in 580063 83750 station_ip 83.122.157.121 83750 port 15728676 83750 nas_port_type Virtual 83750 remote_ip 5.5.5.247 83753 username forozande 83753 unique_id port 83753 terminate_cause User-Request 83753 bytes_out 59234 83753 bytes_in 197588 83753 station_ip 83.122.64.254 83753 port 15728680 83753 nas_port_type Virtual 83753 remote_ip 5.5.5.241 83772 username forozande 83772 unique_id port 83772 terminate_cause User-Request 83772 bytes_out 28267 83772 bytes_in 89522 83772 station_ip 83.122.166.169 83772 port 15728701 83772 nas_port_type Virtual 83772 remote_ip 5.5.5.227 83778 username forozande 83778 unique_id port 83778 terminate_cause User-Request 83778 bytes_out 34619 83778 bytes_in 71775 83778 station_ip 83.122.139.31 83778 port 15728710 83778 nas_port_type Virtual 83778 remote_ip 5.5.5.226 83783 username kamali 83783 unique_id port 83783 terminate_cause User-Request 83783 bytes_out 74590 83783 bytes_in 161154 83783 station_ip 113.203.32.51 83783 port 15728715 83783 nas_port_type Virtual 83783 remote_ip 5.5.5.224 83789 username kamali 83789 unique_id port 83789 terminate_cause User-Request 83789 bytes_out 27751 83789 bytes_in 129725 83789 station_ip 113.203.32.51 83789 port 15728721 83789 nas_port_type Virtual 83789 remote_ip 5.5.5.224 83792 username kamali 83792 unique_id port 83792 terminate_cause User-Request 83792 bytes_out 37374 83725 kill_reason Maximum number of concurrent logins reached 83725 unique_id port 83725 bytes_out 0 83725 bytes_in 0 83725 station_ip 5.126.106.59 83725 port 15728653 83725 nas_port_type Virtual 83731 username soleymani 83731 kill_reason Maximum number of concurrent logins reached 83731 unique_id port 83731 bytes_out 0 83731 bytes_in 0 83731 station_ip 5.126.106.59 83731 port 15728658 83731 nas_port_type Virtual 83733 username soleymani 83733 kill_reason Maximum number of concurrent logins reached 83733 unique_id port 83733 bytes_out 0 83733 bytes_in 0 83733 station_ip 5.125.188.57 83733 port 15728660 83733 nas_port_type Virtual 83735 username soleymani 83735 kill_reason Maximum number of concurrent logins reached 83735 unique_id port 83735 bytes_out 0 83735 bytes_in 0 83735 station_ip 5.125.188.57 83735 port 15728662 83735 nas_port_type Virtual 83740 username soleymani 83740 unique_id port 83740 terminate_cause Lost-Carrier 83740 bytes_out 279331 83740 bytes_in 758891 83740 station_ip 5.126.254.6 83740 port 15728645 83740 nas_port_type Virtual 83740 remote_ip 5.5.5.250 83741 username soleymani 83741 unique_id port 83741 terminate_cause Lost-Carrier 83741 bytes_out 117765 83741 bytes_in 744888 83741 station_ip 5.126.60.66 83741 port 15728647 83741 nas_port_type Virtual 83741 remote_ip 5.5.5.248 83748 username aminvpn 83748 unique_id port 83748 terminate_cause User-Request 83748 bytes_out 193224 83748 bytes_in 2425567 83748 station_ip 37.129.91.253 83748 port 15728674 83748 nas_port_type Virtual 83748 remote_ip 5.5.5.243 83756 username madadi 83756 unique_id port 83756 terminate_cause Lost-Carrier 83756 bytes_out 22842 83756 bytes_in 163131 83756 station_ip 5.119.61.75 83756 port 15728681 83756 nas_port_type Virtual 83756 remote_ip 5.5.5.240 83759 username madadi 83759 unique_id port 83759 terminate_cause Lost-Carrier 83759 bytes_out 28768 83759 bytes_in 139541 83759 station_ip 5.120.115.105 83759 port 15728686 83759 nas_port_type Virtual 83759 remote_ip 5.5.5.237 83764 username forozande 83764 unique_id port 83764 terminate_cause User-Request 83764 bytes_out 33308 83764 bytes_in 112397 83764 station_ip 83.123.122.41 83764 port 15728693 83764 nas_port_type Virtual 83764 remote_ip 5.5.5.231 83768 username aminvpn 83768 unique_id port 83768 terminate_cause User-Request 83768 bytes_out 50378 83768 bytes_in 622879 83768 station_ip 37.129.91.253 83768 port 15728698 83768 nas_port_type Virtual 83768 remote_ip 5.5.5.243 83770 username aminvpn 83770 unique_id port 83770 terminate_cause User-Request 83770 bytes_out 69490 83770 bytes_in 806712 83770 station_ip 37.129.91.253 83770 port 15728699 83770 nas_port_type Virtual 83770 remote_ip 5.5.5.243 83775 username forozande 83775 unique_id port 83775 terminate_cause User-Request 83775 bytes_out 47584 83775 bytes_in 405596 83775 station_ip 83.122.166.169 83775 port 15728704 83775 nas_port_type Virtual 83775 remote_ip 5.5.5.227 83776 username alinezhad 83776 unique_id port 83776 terminate_cause User-Request 83776 bytes_out 0 83776 bytes_in 0 83776 station_ip 5.202.62.21 83776 port 15728706 83776 nas_port_type Virtual 83776 remote_ip 5.5.5.249 83784 username kamali 83784 unique_id port 83784 terminate_cause User-Request 83784 bytes_out 48529 83784 bytes_in 445123 83784 station_ip 113.203.32.51 83784 port 15728716 83784 nas_port_type Virtual 83784 remote_ip 5.5.5.224 83785 username forozande 83785 unique_id port 83785 terminate_cause User-Request 83785 bytes_out 30713 83785 bytes_in 37572 83785 station_ip 83.122.107.158 83785 port 15728717 83785 nas_port_type Virtual 83785 remote_ip 5.5.5.223 83787 username kamali 83787 unique_id port 83787 terminate_cause User-Request 83739 terminate_cause User-Request 83739 bytes_out 364331 83739 bytes_in 83658 83739 station_ip 37.129.221.141 83739 port 15728666 83739 nas_port_type Virtual 83739 remote_ip 5.5.5.251 83742 username forozande 83742 unique_id port 83742 terminate_cause User-Request 83742 bytes_out 110984 83742 bytes_in 421804 83742 station_ip 83.122.202.107 83742 port 15728669 83742 nas_port_type Virtual 83742 remote_ip 5.5.5.244 83744 username forozande 83744 unique_id port 83744 terminate_cause User-Request 83744 bytes_out 76204 83744 bytes_in 100574 83744 station_ip 83.122.202.107 83744 port 15728670 83744 nas_port_type Virtual 83744 remote_ip 5.5.5.244 83747 username asadi 83747 unique_id port 83747 terminate_cause User-Request 83747 bytes_out 30327 83747 bytes_in 77699 83747 station_ip 83.122.157.121 83747 port 15728673 83747 nas_port_type Virtual 83747 remote_ip 5.5.5.247 83749 username alinezhad 83749 unique_id port 83749 terminate_cause User-Request 83749 bytes_out 0 83749 bytes_in 0 83749 station_ip 5.202.62.21 83749 port 15728675 83749 nas_port_type Virtual 83749 remote_ip 5.5.5.249 83752 username asadi 83752 unique_id port 83752 terminate_cause User-Request 83752 bytes_out 33007 83752 bytes_in 125706 83752 station_ip 83.122.157.121 83752 port 15728679 83752 nas_port_type Virtual 83752 remote_ip 5.5.5.247 83757 username aminvpn 83757 unique_id port 83757 terminate_cause User-Request 83757 bytes_out 32569 83757 bytes_in 104420 83757 station_ip 37.129.91.253 83757 port 15728684 83757 nas_port_type Virtual 83757 remote_ip 5.5.5.243 83758 username alinezhad 83758 unique_id port 83758 terminate_cause User-Request 83758 bytes_out 0 83758 bytes_in 0 83758 station_ip 5.202.62.21 83758 port 15728687 83758 nas_port_type Virtual 83758 remote_ip 5.5.5.249 83761 username forozande 83761 unique_id port 83761 terminate_cause User-Request 83761 bytes_out 17406 83761 bytes_in 94173 83761 station_ip 83.123.22.115 83761 port 15728689 83761 nas_port_type Virtual 83761 remote_ip 5.5.5.235 83766 username hamideh 83766 unique_id port 83766 terminate_cause Lost-Carrier 83766 bytes_out 3414206 83766 bytes_in 66207622 83766 station_ip 5.119.164.187 83766 port 15728682 83766 nas_port_type Virtual 83766 remote_ip 5.5.5.239 83777 username forozande 83777 unique_id port 83777 terminate_cause User-Request 83777 bytes_out 48383 83777 bytes_in 394213 83777 station_ip 83.122.166.169 83777 port 15728705 83777 nas_port_type Virtual 83777 remote_ip 5.5.5.227 83779 username asadi 83779 unique_id port 83779 terminate_cause User-Request 83779 bytes_out 78949 83779 bytes_in 660724 83779 station_ip 83.122.157.121 83779 port 15728711 83779 nas_port_type Virtual 83779 remote_ip 5.5.5.247 83780 username pouria 83780 unique_id port 83780 terminate_cause Lost-Carrier 83780 bytes_out 11000368 83780 bytes_in 382148659 83780 station_ip 5.119.157.66 83780 port 15728692 83780 nas_port_type Virtual 83780 remote_ip 5.5.5.232 83781 username kamali 83781 unique_id port 83781 terminate_cause User-Request 83781 bytes_out 77782 83781 bytes_in 481121 83781 station_ip 113.203.32.51 83781 port 15728713 83781 nas_port_type Virtual 83781 remote_ip 5.5.5.224 83797 username asadi 83797 unique_id port 83797 terminate_cause User-Request 83797 bytes_out 26490 83797 bytes_in 134723 83797 station_ip 83.122.157.121 83797 port 15728729 83797 nas_port_type Virtual 83797 remote_ip 5.5.5.247 83799 username asadi 83799 unique_id port 83799 terminate_cause User-Request 83799 bytes_out 115976 83799 bytes_in 2282476 83799 station_ip 83.122.157.121 83799 port 15728733 83799 nas_port_type Virtual 83799 remote_ip 5.5.5.247 83801 username arman 83762 terminate_cause User-Request 83762 bytes_out 45530 83762 bytes_in 493304 83762 station_ip 83.123.44.110 83762 port 15728690 83762 nas_port_type Virtual 83762 remote_ip 5.5.5.234 83763 username madadi 83763 unique_id port 83763 terminate_cause Lost-Carrier 83763 bytes_out 47062 83763 bytes_in 192681 83763 station_ip 5.120.26.5 83763 port 15728688 83763 nas_port_type Virtual 83763 remote_ip 5.5.5.236 83765 username forozande 83765 unique_id port 83765 terminate_cause User-Request 83765 bytes_out 13300 83765 bytes_in 38862 83765 station_ip 83.123.122.41 83765 port 15728695 83765 nas_port_type Virtual 83765 remote_ip 5.5.5.231 83767 username aminvpn 83767 unique_id port 83767 terminate_cause User-Request 83767 bytes_out 124138 83767 bytes_in 1674629 83767 station_ip 37.129.91.253 83767 port 15728697 83767 nas_port_type Virtual 83767 remote_ip 5.5.5.243 83769 username madadi 83769 unique_id port 83769 terminate_cause Lost-Carrier 83769 bytes_out 12396 83769 bytes_in 126083 83769 station_ip 5.119.71.110 83769 port 15728696 83769 nas_port_type Virtual 83769 remote_ip 5.5.5.229 83771 username mahdixz 83771 unique_id port 83771 terminate_cause User-Request 83771 bytes_out 1109902 83771 bytes_in 23093381 83771 station_ip 151.235.104.195 83771 port 15728694 83771 nas_port_type Virtual 83771 remote_ip 5.5.5.230 83773 username forozande 83773 unique_id port 83773 terminate_cause User-Request 83773 bytes_out 17476 83773 bytes_in 50503 83773 station_ip 83.122.166.169 83773 port 15728702 83773 nas_port_type Virtual 83773 remote_ip 5.5.5.227 83774 username asadi 83774 unique_id port 83774 terminate_cause User-Request 83774 bytes_out 51990 83774 bytes_in 133507 83774 station_ip 83.122.157.121 83774 port 15728703 83774 nas_port_type Virtual 83774 remote_ip 5.5.5.247 83782 username asadi 83782 unique_id port 83782 terminate_cause User-Request 83782 bytes_out 61837 83782 bytes_in 249157 83782 station_ip 83.122.157.121 83782 port 15728714 83782 nas_port_type Virtual 83782 remote_ip 5.5.5.247 83786 username kamali 83786 unique_id port 83786 terminate_cause User-Request 83786 bytes_out 45703 83786 bytes_in 352822 83786 station_ip 113.203.32.51 83786 port 15728718 83786 nas_port_type Virtual 83786 remote_ip 5.5.5.224 83788 username kamali 83788 unique_id port 83788 terminate_cause User-Request 83788 bytes_out 36400 83788 bytes_in 169968 83788 station_ip 113.203.32.51 83788 port 15728720 83788 nas_port_type Virtual 83788 remote_ip 5.5.5.224 83791 username kamali 83791 unique_id port 83791 terminate_cause User-Request 83791 bytes_out 23907 83791 bytes_in 35202 83791 station_ip 113.203.32.51 83791 port 15728723 83791 nas_port_type Virtual 83791 remote_ip 5.5.5.224 83794 username asadi 83794 unique_id port 83794 terminate_cause User-Request 83794 bytes_out 28060 83794 bytes_in 135412 83794 station_ip 83.122.157.121 83794 port 15728727 83794 nas_port_type Virtual 83794 remote_ip 5.5.5.247 83798 username asadi 83798 unique_id port 83798 terminate_cause User-Request 83798 bytes_out 17890 83798 bytes_in 134440 83798 station_ip 83.122.157.121 83798 port 15728730 83798 nas_port_type Virtual 83798 remote_ip 5.5.5.247 83800 username ksrkrgr 83800 unique_id port 83800 terminate_cause User-Request 83800 bytes_out 2183458 83800 bytes_in 62564268 83800 station_ip 151.234.21.21 83800 port 15728732 83800 nas_port_type Virtual 83800 remote_ip 5.5.5.219 83803 username ksrkrgr 83803 unique_id port 83803 terminate_cause User-Request 83803 bytes_out 2667836 83803 bytes_in 5483422 83803 station_ip 151.234.21.21 83803 port 15728731 83803 nas_port_type Virtual 83803 remote_ip 5.5.5.220 83804 username aminvpn 83787 bytes_out 51632 83787 bytes_in 210847 83787 station_ip 113.203.32.51 83787 port 15728719 83787 nas_port_type Virtual 83787 remote_ip 5.5.5.224 83790 username kamali 83790 unique_id port 83790 terminate_cause User-Request 83790 bytes_out 37971 83790 bytes_in 44972 83790 station_ip 113.203.32.51 83790 port 15728722 83790 nas_port_type Virtual 83790 remote_ip 5.5.5.224 83793 username kamali 83793 unique_id port 83793 terminate_cause User-Request 83793 bytes_out 33819 83793 bytes_in 48986 83793 station_ip 113.203.32.51 83793 port 15728726 83793 nas_port_type Virtual 83793 remote_ip 5.5.5.224 83795 username forozande 83795 unique_id port 83795 terminate_cause User-Request 83795 bytes_out 18661 83795 bytes_in 111166 83795 station_ip 37.129.206.238 83795 port 15728728 83795 nas_port_type Virtual 83795 remote_ip 5.5.5.221 83802 username aminvpn 83802 mac 83802 bytes_out 615598 83802 bytes_in 700260 83802 station_ip 37.129.83.52 83802 port 15 83802 unique_id port 83802 remote_ip 10.8.0.6 85199 username caferibar 85199 unique_id port 85199 terminate_cause User-Request 85199 bytes_out 0 85199 bytes_in 342 85199 station_ip 5.72.238.78 85199 port 15728918 85199 nas_port_type Virtual 85199 remote_ip 5.5.5.114 83811 username madadi 83811 unique_id port 83811 terminate_cause Lost-Carrier 83811 bytes_out 40041 83811 bytes_in 200131 83811 station_ip 5.119.211.100 83811 port 15728736 83811 nas_port_type Virtual 83811 remote_ip 5.5.5.217 83820 username soleymani 83820 unique_id port 83820 terminate_cause Lost-Carrier 83820 bytes_out 105460 83820 bytes_in 435815 83820 station_ip 5.126.143.190 83820 port 15728747 83820 nas_port_type Virtual 83820 remote_ip 5.5.5.208 83823 username madadi 83823 unique_id port 83823 terminate_cause Lost-Carrier 83823 bytes_out 114806 83823 bytes_in 367330 83823 station_ip 5.119.73.237 83823 port 15728748 83823 nas_port_type Virtual 83823 remote_ip 5.5.5.207 83824 username forozande 83824 unique_id port 83824 terminate_cause User-Request 83824 bytes_out 42981 83824 bytes_in 506835 83824 station_ip 83.122.228.222 83824 port 15728754 83824 nas_port_type Virtual 83824 remote_ip 5.5.5.204 83825 username asadi 83825 unique_id port 83825 terminate_cause User-Request 83825 bytes_out 61962 83825 bytes_in 710810 83825 station_ip 83.122.157.121 83825 port 15728757 83825 nas_port_type Virtual 83825 remote_ip 5.5.5.247 83830 username alinezhad 83830 unique_id port 83830 terminate_cause User-Request 83830 bytes_out 0 83830 bytes_in 0 83830 station_ip 5.202.62.21 83830 port 15728761 83830 nas_port_type Virtual 83830 remote_ip 5.5.5.249 83832 username zamanialireza 83832 unique_id port 83832 terminate_cause User-Request 83832 bytes_out 0 83832 bytes_in 0 83832 station_ip 83.122.138.46 83832 port 15728764 83832 nas_port_type Virtual 83832 remote_ip 5.5.5.200 83835 username asadi 83835 unique_id port 83835 terminate_cause User-Request 83835 bytes_out 47840 83835 bytes_in 213623 83835 station_ip 83.122.157.121 83835 port 15728766 83835 nas_port_type Virtual 83835 remote_ip 5.5.5.247 83842 username alinezhad 83842 unique_id port 83842 terminate_cause User-Request 83842 bytes_out 0 83842 bytes_in 0 83842 station_ip 5.202.62.21 83842 port 15728773 83842 nas_port_type Virtual 83842 remote_ip 5.5.5.249 83845 username asadi 83845 unique_id port 83845 terminate_cause User-Request 83845 bytes_out 19990 83845 bytes_in 83807 83845 station_ip 83.122.157.121 83845 port 15728777 83845 nas_port_type Virtual 83845 remote_ip 5.5.5.247 83866 username soleymani 83866 unique_id port 83866 terminate_cause User-Request 83866 bytes_out 0 83866 bytes_in 0 83792 bytes_in 64600 83792 station_ip 113.203.32.51 83792 port 15728725 83792 nas_port_type Virtual 83792 remote_ip 5.5.5.224 83796 username mahbobeh 83796 unique_id port 83796 terminate_cause Lost-Carrier 83796 bytes_out 70452 83796 bytes_in 325396 83796 station_ip 83.123.40.92 83796 port 15728712 83796 nas_port_type Virtual 83796 remote_ip 5.5.5.225 83806 username heydarizadeh 83806 unique_id port 83806 terminate_cause Lost-Carrier 83806 bytes_out 4572035 83806 bytes_in 168540359 83806 station_ip 5.119.37.96 83806 port 15728724 83806 nas_port_type Virtual 83806 remote_ip 5.5.5.222 83807 username forozande 83807 unique_id port 83807 terminate_cause User-Request 83807 bytes_out 41027 83807 bytes_in 230669 83807 station_ip 83.123.128.108 83807 port 15728738 83807 nas_port_type Virtual 83807 remote_ip 5.5.5.215 83813 username ahmadipour 83813 unique_id port 83813 terminate_cause Lost-Carrier 83813 bytes_out 1453563 83813 bytes_in 30561174 83813 station_ip 113.203.80.105 83813 port 15728739 83813 nas_port_type Virtual 83813 remote_ip 5.5.5.214 83815 username avaanna 83815 unique_id port 83815 terminate_cause User-Request 83815 bytes_out 233215 83815 bytes_in 374094 83815 station_ip 83.122.247.119 83815 port 15728743 83815 nas_port_type Virtual 83815 remote_ip 5.5.5.212 85200 username amirabbas 85200 unique_id port 85200 terminate_cause User-Request 85200 bytes_out 150794652 85200 bytes_in 4142444563 85200 station_ip 151.238.241.47 85200 port 15728898 85200 nas_port_type Virtual 85200 remote_ip 5.5.5.124 85208 username asadi 85208 unique_id port 85208 terminate_cause User-Request 85208 bytes_out 188989 85208 bytes_in 2517571 85208 station_ip 37.129.232.60 85208 port 15728641 85208 nas_port_type Virtual 85208 remote_ip 5.5.5.254 83827 username jamali 83827 unique_id port 83827 terminate_cause Lost-Carrier 83827 bytes_out 1246404 83827 bytes_in 27236184 83827 station_ip 5.119.58.5 83827 port 15728751 83827 nas_port_type Virtual 83827 remote_ip 5.5.5.206 83828 username madadi 83828 unique_id port 83828 terminate_cause Lost-Carrier 83828 bytes_out 9828 83828 bytes_in 124213 83828 station_ip 5.120.35.170 83828 port 15728755 83828 nas_port_type Virtual 83828 remote_ip 5.5.5.203 83831 username asadi 83831 unique_id port 83831 terminate_cause User-Request 83831 bytes_out 50175 83831 bytes_in 109795 83831 station_ip 83.122.157.121 83831 port 15728762 83831 nas_port_type Virtual 83831 remote_ip 5.5.5.247 83834 username asadi 83834 unique_id port 83834 terminate_cause User-Request 83834 bytes_out 34775 83834 bytes_in 106384 83834 station_ip 83.122.157.121 83834 port 15728765 83834 nas_port_type Virtual 83834 remote_ip 5.5.5.247 83837 username asadi 83837 unique_id port 83837 terminate_cause User-Request 83837 bytes_out 49000 83837 bytes_in 365253 83837 station_ip 83.122.157.121 83837 port 15728770 83837 nas_port_type Virtual 83837 remote_ip 5.5.5.247 83839 username ahmadi 83839 unique_id port 83839 terminate_cause User-Request 83839 bytes_out 52206 83839 bytes_in 577813 83839 station_ip 37.129.14.217 83839 port 15728769 83839 nas_port_type Virtual 83839 remote_ip 5.5.5.198 83840 username amin.insta22 83840 kill_reason Relative expiration date has reached 83840 unique_id port 83840 bytes_out 0 83840 bytes_in 0 83840 station_ip 5.233.61.53 83840 port 15728771 83840 nas_port_type Virtual 83844 username asadi 83844 unique_id port 83844 terminate_cause User-Request 83844 bytes_out 21446 83844 bytes_in 89924 83844 station_ip 83.122.157.121 83844 port 15728776 83844 nas_port_type Virtual 83844 remote_ip 5.5.5.247 83849 username aminvpn 83849 mac 83849 bytes_out 0 83849 bytes_in 0 83801 unique_id port 83801 terminate_cause Lost-Carrier 83801 bytes_out 3146821 83801 bytes_in 16148089 83801 station_ip 5.119.214.201 83801 port 15728667 83801 nas_port_type Virtual 83801 remote_ip 5.5.5.246 83805 username caferibar 83805 unique_id port 83805 terminate_cause User-Request 83805 bytes_out 0 83805 bytes_in 0 83805 station_ip 94.183.213.166 83805 port 15728735 83805 nas_port_type Virtual 83805 remote_ip 5.5.5.218 83808 username alinezhad 83808 unique_id port 83808 terminate_cause User-Request 83808 bytes_out 0 83808 bytes_in 0 83808 station_ip 5.202.62.21 83808 port 15728740 83808 nas_port_type Virtual 83808 remote_ip 5.5.5.249 85201 username caferibar 85201 unique_id port 85201 terminate_cause User-Request 85201 bytes_out 269405 85201 bytes_in 3678635 85201 station_ip 5.72.238.78 85201 port 15728919 85201 nas_port_type Virtual 85201 remote_ip 5.5.5.114 85204 username mahbobeh 85204 unique_id port 85204 terminate_cause Admin-Reboot 85204 bytes_out 413530 85204 bytes_in 5792766 85204 station_ip 83.122.56.200 85204 port 15728921 85204 nas_port_type Virtual 85204 remote_ip 5.5.5.112 83821 username shojaei 83821 unique_id port 83821 terminate_cause User-Request 83821 bytes_out 827653 83821 bytes_in 16601960 83821 station_ip 113.203.86.0 83821 port 15728752 83821 nas_port_type Virtual 83821 remote_ip 5.5.5.205 83822 username forozande 83822 unique_id port 83822 terminate_cause User-Request 83822 bytes_out 49632 83822 bytes_in 569485 83822 station_ip 83.122.228.222 83822 port 15728753 83822 nas_port_type Virtual 83822 remote_ip 5.5.5.204 83833 username asadi 83833 unique_id port 83833 terminate_cause User-Request 83833 bytes_out 18508 83833 bytes_in 34437 83833 station_ip 83.122.157.121 83833 port 15728763 83833 nas_port_type Virtual 83833 remote_ip 5.5.5.247 83841 username amin.insta22 83841 kill_reason Relative expiration date has reached 83841 unique_id port 83841 bytes_out 0 83841 bytes_in 0 83841 station_ip 5.233.61.53 83841 port 15728772 83841 nas_port_type Virtual 83843 username alinezhad 83843 unique_id port 83843 terminate_cause User-Request 83843 bytes_out 0 83843 bytes_in 0 83843 station_ip 5.202.62.21 83843 port 15728774 83843 nas_port_type Virtual 83843 remote_ip 5.5.5.249 83847 username asadi 83847 unique_id port 83847 terminate_cause User-Request 83847 bytes_out 36446 83847 bytes_in 93470 83847 station_ip 83.122.157.121 83847 port 15728779 83847 nas_port_type Virtual 83847 remote_ip 5.5.5.247 83848 username aminvpn 83848 mac 83848 bytes_out 1957417 83848 bytes_in 29701066 83848 station_ip 37.129.1.64 83848 port 15 83848 unique_id port 83848 remote_ip 10.8.0.6 83851 username aminvpn 83851 mac 83851 bytes_out 0 83851 bytes_in 0 83851 station_ip 5.120.151.202 83851 port 17 83851 unique_id port 83851 remote_ip 10.8.0.6 83860 username aminvpn 83860 mac 83860 bytes_out 0 83860 bytes_in 0 83860 station_ip 37.129.1.64 83860 port 15 83860 unique_id port 83860 remote_ip 10.8.0.6 83861 username aminvpn 83861 mac 83861 bytes_out 0 83861 bytes_in 0 83861 station_ip 5.120.151.202 83861 port 17 83861 unique_id port 83861 remote_ip 10.8.0.6 83863 username aminvpn 83863 mac 83863 bytes_out 0 83863 bytes_in 0 83863 station_ip 5.120.151.202 83863 port 17 83863 unique_id port 83863 remote_ip 10.8.0.6 83865 username aminvpn 83865 mac 83865 bytes_out 0 83865 bytes_in 0 83865 station_ip 37.129.1.64 83865 port 15 83865 unique_id port 83865 remote_ip 10.8.0.6 83869 username asadi 83869 unique_id port 83869 terminate_cause User-Request 83804 unique_id port 83804 terminate_cause User-Request 83804 bytes_out 119561 83804 bytes_in 123512 83804 station_ip 37.129.91.253 83804 port 15728734 83804 nas_port_type Virtual 83804 remote_ip 5.5.5.243 85202 username ahmadi 85202 unique_id port 85202 terminate_cause User-Request 85202 bytes_out 67900 85202 bytes_in 388211 85202 station_ip 83.123.235.242 85202 port 15728920 85202 nas_port_type Virtual 85202 remote_ip 5.5.5.113 83812 username madadi 83812 unique_id port 83812 terminate_cause Lost-Carrier 83812 bytes_out 12841 83812 bytes_in 125005 83812 station_ip 5.119.201.1 83812 port 15728737 83812 nas_port_type Virtual 83812 remote_ip 5.5.5.216 85205 username pouria 85205 unique_id port 85205 terminate_cause Admin-Reboot 85205 bytes_out 24381942 85205 bytes_in 908557220 85205 station_ip 151.235.110.255 85205 port 15728916 85205 nas_port_type Virtual 85205 remote_ip 5.5.5.116 83826 username asadi 83826 unique_id port 83826 terminate_cause User-Request 83826 bytes_out 7606 83826 bytes_in 26397 83826 station_ip 83.122.157.121 83826 port 15728758 83826 nas_port_type Virtual 83826 remote_ip 5.5.5.247 83829 username alinezhad 83829 unique_id port 83829 terminate_cause User-Request 83829 bytes_out 0 83829 bytes_in 0 83829 station_ip 5.202.62.21 83829 port 15728759 83829 nas_port_type Virtual 83829 remote_ip 5.5.5.249 83836 username asadi 83836 unique_id port 83836 terminate_cause User-Request 83836 bytes_out 20806 83836 bytes_in 92694 83836 station_ip 83.122.157.121 83836 port 15728768 83836 nas_port_type Virtual 83836 remote_ip 5.5.5.247 83838 username amir 83838 unique_id port 83838 terminate_cause Lost-Carrier 83838 bytes_out 59043 83838 bytes_in 96764 83838 station_ip 46.225.210.120 83838 port 15728767 83838 nas_port_type Virtual 83838 remote_ip 5.5.5.199 83846 username asadi 83846 unique_id port 83846 terminate_cause User-Request 83846 bytes_out 32420 83846 bytes_in 86398 83846 station_ip 83.122.157.121 83846 port 15728778 83846 nas_port_type Virtual 83846 remote_ip 5.5.5.247 83850 username aminvpn 83850 mac 83850 bytes_out 0 83850 bytes_in 0 83850 station_ip 37.129.1.64 83850 port 15 83850 unique_id port 83850 remote_ip 10.8.0.6 83853 username heydari 83853 unique_id port 83853 terminate_cause Lost-Carrier 83853 bytes_out 13502619 83853 bytes_in 56101007 83853 station_ip 5.119.37.96 83853 port 15728691 83853 nas_port_type Virtual 83853 remote_ip 5.5.5.233 83854 username asadi 83854 unique_id port 83854 terminate_cause User-Request 83854 bytes_out 35632 83854 bytes_in 129416 83854 station_ip 83.122.157.121 83854 port 15728780 83854 nas_port_type Virtual 83854 remote_ip 5.5.5.247 83856 username aminvpn 83856 mac 83856 bytes_out 0 83856 bytes_in 0 83856 station_ip 5.120.151.202 83856 port 17 83856 unique_id port 83856 remote_ip 10.8.0.6 83858 username aminvpn 83858 mac 83858 bytes_out 0 83858 bytes_in 0 83858 station_ip 5.120.151.202 83858 port 17 83858 unique_id port 83858 remote_ip 10.8.0.6 83864 username asadi 83864 unique_id port 83864 terminate_cause User-Request 83864 bytes_out 28022 83864 bytes_in 62763 83864 station_ip 83.122.157.121 83864 port 15728784 83864 nas_port_type Virtual 83864 remote_ip 5.5.5.247 83867 username aminvpn 83867 mac 83867 bytes_out 0 83867 bytes_in 0 83867 station_ip 5.120.151.202 83867 port 17 83867 unique_id port 83867 remote_ip 10.8.0.6 83870 username afarin 83870 unique_id port 83870 terminate_cause Lost-Carrier 83870 bytes_out 482977 83870 bytes_in 1530898 83870 station_ip 31.59.36.43 83870 port 15728756 83870 nas_port_type Virtual 83849 station_ip 5.120.151.202 83849 port 17 83849 unique_id port 83849 remote_ip 10.8.0.6 83852 username aminvpn 83852 mac 83852 bytes_out 0 83852 bytes_in 0 83852 station_ip 37.129.1.64 83852 port 15 83852 unique_id port 83852 remote_ip 10.8.0.6 83855 username forozande 83855 unique_id port 83855 terminate_cause User-Request 83855 bytes_out 70778 83855 bytes_in 429300 83855 station_ip 37.129.93.43 83855 port 15728781 83855 nas_port_type Virtual 83855 remote_ip 5.5.5.196 83857 username aminvpn 83857 mac 83857 bytes_out 0 83857 bytes_in 0 83857 station_ip 37.129.1.64 83857 port 15 83857 unique_id port 83857 remote_ip 10.8.0.6 83859 username asadi 83859 unique_id port 83859 terminate_cause User-Request 83859 bytes_out 24654 83859 bytes_in 53454 83859 station_ip 83.122.157.121 83859 port 15728783 83859 nas_port_type Virtual 83859 remote_ip 5.5.5.247 83862 username aminvpn 83862 mac 83862 bytes_out 0 83862 bytes_in 0 83862 station_ip 37.129.1.64 83862 port 15 83862 unique_id port 83862 remote_ip 10.8.0.6 83874 username aminvpn 83874 mac 83874 bytes_out 0 83874 bytes_in 0 83874 station_ip 5.120.151.202 83874 port 17 83874 unique_id port 83874 remote_ip 10.8.0.6 83877 username aminvpn 83877 mac 83877 bytes_out 0 83877 bytes_in 0 83877 station_ip 37.129.1.64 83877 port 15 83877 unique_id port 83877 remote_ip 10.8.0.6 83883 username ahmadipour 83883 unique_id port 83883 terminate_cause Lost-Carrier 83883 bytes_out 510422 83883 bytes_in 10690912 83883 station_ip 113.203.90.65 83883 port 15728789 83883 nas_port_type Virtual 83883 remote_ip 5.5.5.194 83889 username aminvpn 83889 mac 83889 bytes_out 0 83889 bytes_in 0 83889 station_ip 5.120.151.202 83889 port 17 83889 unique_id port 83889 remote_ip 10.8.0.6 83893 username aminvpn 83893 mac 83893 bytes_out 5682 83893 bytes_in 15065 83893 station_ip 5.120.151.202 83893 port 17 83893 unique_id port 83893 remote_ip 10.8.0.6 83897 username aminvpn 83897 mac 83897 bytes_out 0 83897 bytes_in 0 83897 station_ip 37.129.1.64 83897 port 15 83897 unique_id port 83897 remote_ip 10.8.0.6 83899 username asadi 83899 unique_id port 83899 terminate_cause User-Request 83899 bytes_out 17505 83899 bytes_in 82098 83899 station_ip 83.122.157.121 83899 port 15728800 83899 nas_port_type Virtual 83899 remote_ip 5.5.5.247 83904 username aminvpn 83904 mac 83904 bytes_out 0 83904 bytes_in 0 83904 station_ip 5.119.191.3 83904 port 17 83904 unique_id port 83904 remote_ip 10.8.0.6 83911 username aminvpn 83911 unique_id port 83911 terminate_cause User-Request 83911 bytes_out 874379 83911 bytes_in 242469 83911 station_ip 37.129.253.200 83911 port 15728806 83911 nas_port_type Virtual 83911 remote_ip 5.5.5.191 83914 username asadi 83914 unique_id port 83914 terminate_cause User-Request 83914 bytes_out 34428 83914 bytes_in 180845 83914 station_ip 83.122.157.121 83914 port 15728808 83914 nas_port_type Virtual 83914 remote_ip 5.5.5.247 83920 username asadi 83920 unique_id port 83920 terminate_cause User-Request 83920 bytes_out 17661 83920 bytes_in 18302 83920 station_ip 83.122.157.121 83920 port 15728812 83920 nas_port_type Virtual 83920 remote_ip 5.5.5.247 83923 username aminvpn 83923 mac 83923 bytes_out 0 83923 bytes_in 0 83923 station_ip 37.129.1.64 83923 port 15 83923 unique_id port 83923 remote_ip 10.8.0.6 83924 username aminvpn 83924 mac 83924 bytes_out 0 83924 bytes_in 0 83924 station_ip 5.119.191.3 83866 station_ip 5.125.64.76 83866 port 15728785 83866 nas_port_type Virtual 83866 remote_ip 5.5.5.195 83868 username aminvpn 83868 mac 83868 bytes_out 0 83868 bytes_in 0 83868 station_ip 37.129.1.64 83868 port 15 83868 unique_id port 83868 remote_ip 10.8.0.6 83871 username aminvpn 83871 mac 83871 bytes_out 0 83871 bytes_in 0 83871 station_ip 5.120.151.202 83871 port 17 83871 unique_id port 83871 remote_ip 10.8.0.6 83876 username aminvpn 83876 mac 83876 bytes_out 0 83876 bytes_in 0 83876 station_ip 5.120.151.202 83876 port 17 83876 unique_id port 83876 remote_ip 10.8.0.6 83878 username aminvpn 83878 mac 83878 bytes_out 0 83878 bytes_in 0 83878 station_ip 5.120.151.202 83878 port 17 83878 unique_id port 83878 remote_ip 10.8.0.6 83879 username aminvpn 83879 mac 83879 bytes_out 38025 83879 bytes_in 46899 83879 station_ip 37.129.1.64 83879 port 15 83879 unique_id port 83879 remote_ip 10.8.0.6 83880 username aminvpn 83880 mac 83880 bytes_out 0 83880 bytes_in 0 83880 station_ip 5.120.151.202 83880 port 17 83880 unique_id port 83880 remote_ip 10.8.0.6 83885 username aminvpn 83885 mac 83885 bytes_out 0 83885 bytes_in 0 83885 station_ip 5.120.151.202 83885 port 17 83885 unique_id port 83885 remote_ip 10.8.0.6 83894 username aminvpn 83894 mac 83894 bytes_out 0 83894 bytes_in 0 83894 station_ip 37.129.1.64 83894 port 15 83894 unique_id port 83894 remote_ip 10.8.0.6 83896 username aminvpn 83896 mac 83896 bytes_out 0 83896 bytes_in 0 83896 station_ip 5.120.151.202 83896 port 17 83896 unique_id port 83896 remote_ip 10.8.0.6 83903 username aminvpn 83903 mac 83903 bytes_out 0 83903 bytes_in 0 83903 station_ip 37.129.1.64 83903 port 15 83903 unique_id port 83903 remote_ip 10.8.0.6 83905 username caferibar 83905 unique_id port 83905 terminate_cause Lost-Carrier 83905 bytes_out 205013 83905 bytes_in 506109 83905 station_ip 5.62.198.73 83905 port 15728795 83905 nas_port_type Virtual 83905 remote_ip 5.5.5.190 83907 username asadi 83907 unique_id port 83907 terminate_cause User-Request 83907 bytes_out 38924 83907 bytes_in 119874 83907 station_ip 83.122.157.121 83907 port 15728803 83907 nas_port_type Virtual 83907 remote_ip 5.5.5.247 83912 username asadi 83912 unique_id port 83912 terminate_cause User-Request 83912 bytes_out 0 83912 bytes_in 0 83912 station_ip 83.122.157.121 83912 port 15728807 83912 nas_port_type Virtual 83912 remote_ip 5.5.5.247 83918 username aminvpn 83918 mac 83918 bytes_out 0 83918 bytes_in 0 83918 station_ip 37.129.1.64 83918 port 15 83918 unique_id port 83918 remote_ip 10.8.0.6 83925 username soleymani 83925 unique_id port 83925 terminate_cause Lost-Carrier 83925 bytes_out 149791 83925 bytes_in 526604 83925 station_ip 5.126.202.105 83925 port 15728804 83925 nas_port_type Virtual 83925 remote_ip 5.5.5.188 83928 username asadi 83928 unique_id port 83928 terminate_cause User-Request 83928 bytes_out 26323 83928 bytes_in 107933 83928 station_ip 37.129.144.25 83928 port 15728814 83928 nas_port_type Virtual 83928 remote_ip 5.5.5.186 83937 username madadi 83937 unique_id port 83937 terminate_cause Lost-Carrier 83937 bytes_out 830942 83937 bytes_in 1580648 83937 station_ip 5.119.72.217 83937 port 15728775 83937 nas_port_type Virtual 83937 remote_ip 5.5.5.197 83943 username amirabbas 83943 unique_id port 83943 terminate_cause Lost-Carrier 83943 bytes_out 13124 83943 bytes_in 138697 83943 station_ip 31.56.112.104 83869 bytes_out 24625 83869 bytes_in 35654 83869 station_ip 83.122.157.121 83869 port 15728786 83869 nas_port_type Virtual 83869 remote_ip 5.5.5.247 83873 username alinezhad 83873 unique_id port 83873 terminate_cause User-Request 83873 bytes_out 11301 83873 bytes_in 17971 83873 station_ip 5.202.62.21 83873 port 15728788 83873 nas_port_type Virtual 83873 remote_ip 5.5.5.249 83875 username aminvpn 83875 mac 83875 bytes_out 0 83875 bytes_in 0 83875 station_ip 37.129.1.64 83875 port 15 83875 unique_id port 83875 remote_ip 10.8.0.6 83881 username aminvpn 83881 mac 83881 bytes_out 0 83881 bytes_in 0 83881 station_ip 37.129.1.64 83881 port 15 83881 unique_id port 83881 remote_ip 10.8.0.6 83882 username soleymani 83882 unique_id port 83882 terminate_cause Lost-Carrier 83882 bytes_out 152718 83882 bytes_in 4006041 83882 station_ip 5.125.64.76 83882 port 15728787 83882 nas_port_type Virtual 83882 remote_ip 5.5.5.195 83886 username aminvpn 83886 unique_id port 83886 terminate_cause User-Request 83886 bytes_out 0 83886 bytes_in 0 83886 station_ip 37.129.253.200 83886 port 15728793 83886 nas_port_type Virtual 83886 remote_ip 5.5.5.191 83888 username aminvpn 83888 mac 83888 bytes_out 0 83888 bytes_in 0 83888 station_ip 37.129.1.64 83888 port 15 83888 unique_id port 83888 remote_ip 10.8.0.6 83890 username caferibar 83890 unique_id port 83890 terminate_cause User-Request 83890 bytes_out 5636671 83890 bytes_in 110555557 83890 station_ip 5.120.180.146 83890 port 15728760 83890 nas_port_type Virtual 83890 remote_ip 5.5.5.201 83892 username asadi 83892 unique_id port 83892 terminate_cause User-Request 83892 bytes_out 14947 83892 bytes_in 47926 83892 station_ip 83.122.157.121 83892 port 15728796 83892 nas_port_type Virtual 83892 remote_ip 5.5.5.247 83895 username asadi 83895 unique_id port 83895 terminate_cause User-Request 83895 bytes_out 34866 83895 bytes_in 101485 83895 station_ip 83.122.157.121 83895 port 15728797 83895 nas_port_type Virtual 83895 remote_ip 5.5.5.247 83898 username aminvpn 83898 mac 83898 bytes_out 0 83898 bytes_in 0 83898 station_ip 5.120.151.202 83898 port 17 83898 unique_id port 83898 remote_ip 10.8.0.6 83900 username aminvpn 83900 mac 83900 bytes_out 0 83900 bytes_in 0 83900 station_ip 37.129.1.64 83900 port 15 83900 unique_id port 83900 remote_ip 10.8.0.6 83901 username aminvpn 83901 mac 83901 bytes_out 0 83901 bytes_in 0 83901 station_ip 5.119.191.3 83901 port 17 83901 unique_id port 83901 remote_ip 10.8.0.6 83906 username asadi 83906 unique_id port 83906 terminate_cause User-Request 83906 bytes_out 12854 83906 bytes_in 17452 83906 station_ip 83.122.157.121 83906 port 15728802 83906 nas_port_type Virtual 83906 remote_ip 5.5.5.247 83909 username aminvpn 83909 mac 83909 bytes_out 0 83909 bytes_in 0 83909 station_ip 5.119.191.3 83909 port 17 83909 unique_id port 83909 remote_ip 10.8.0.6 83915 username aminvpn 83915 mac 83915 bytes_out 0 83915 bytes_in 0 83915 station_ip 5.119.191.3 83915 port 17 83915 unique_id port 83915 remote_ip 10.8.0.6 83917 username aminvpn 83917 mac 83917 bytes_out 0 83917 bytes_in 0 83917 station_ip 5.119.191.3 83917 port 17 83917 unique_id port 83917 remote_ip 10.8.0.6 83922 username aminvpn 83922 mac 83922 bytes_out 0 83922 bytes_in 0 83922 station_ip 5.119.191.3 83922 port 17 83922 unique_id port 83922 remote_ip 10.8.0.6 83926 username asadi 83926 unique_id port 83926 terminate_cause User-Request 83870 remote_ip 5.5.5.202 83872 username aminvpn 83872 mac 83872 bytes_out 0 83872 bytes_in 0 83872 station_ip 37.129.1.64 83872 port 15 83872 unique_id port 83872 remote_ip 10.8.0.6 83884 username zamanialireza 83884 unique_id port 83884 terminate_cause User-Request 83884 bytes_out 0 83884 bytes_in 0 83884 station_ip 86.57.109.149 83884 port 15728792 83884 nas_port_type Virtual 83884 remote_ip 5.5.5.192 83887 username aminvpn 83887 unique_id port 83887 terminate_cause User-Request 83887 bytes_out 22375 83887 bytes_in 35109 83887 station_ip 37.129.253.200 83887 port 15728794 83887 nas_port_type Virtual 83887 remote_ip 5.5.5.191 83891 username aminvpn 83891 mac 83891 bytes_out 0 83891 bytes_in 0 83891 station_ip 37.129.1.64 83891 port 15 83891 unique_id port 83891 remote_ip 10.8.0.6 83902 username asadi 83902 unique_id port 83902 terminate_cause User-Request 83902 bytes_out 441 83902 bytes_in 13270 83902 station_ip 83.122.157.121 83902 port 15728801 83902 nas_port_type Virtual 83902 remote_ip 5.5.5.247 83908 username aminvpn 83908 mac 83908 bytes_out 0 83908 bytes_in 0 83908 station_ip 37.129.1.64 83908 port 15 83908 unique_id port 83908 remote_ip 10.8.0.6 83910 username asadi 83910 unique_id port 83910 terminate_cause User-Request 83910 bytes_out 40078 83910 bytes_in 191641 83910 station_ip 83.122.157.121 83910 port 15728805 83910 nas_port_type Virtual 83910 remote_ip 5.5.5.247 83913 username aminvpn 83913 mac 83913 bytes_out 0 83913 bytes_in 0 83913 station_ip 37.129.1.64 83913 port 15 83913 unique_id port 83913 remote_ip 10.8.0.6 83916 username aminvpn 83916 mac 83916 bytes_out 0 83916 bytes_in 0 83916 station_ip 37.129.1.64 83916 port 15 83916 unique_id port 83916 remote_ip 10.8.0.6 83919 username aminvpn 83919 mac 83919 bytes_out 0 83919 bytes_in 0 83919 station_ip 5.119.191.3 83919 port 17 83919 unique_id port 83919 remote_ip 10.8.0.6 83921 username aminvpn 83921 mac 83921 bytes_out 0 83921 bytes_in 0 83921 station_ip 37.129.1.64 83921 port 15 83921 unique_id port 83921 remote_ip 10.8.0.6 83931 username soleymani 83931 unique_id port 83931 terminate_cause Lost-Carrier 83931 bytes_out 38165 83931 bytes_in 193367 83931 station_ip 5.126.250.154 83931 port 15728815 83931 nas_port_type Virtual 83931 remote_ip 5.5.5.185 83932 username caferibar 83932 unique_id port 83932 terminate_cause User-Request 83932 bytes_out 4538874 83932 bytes_in 110373395 83932 station_ip 5.120.180.146 83932 port 15728809 83932 nas_port_type Virtual 83932 remote_ip 5.5.5.201 83935 username caferibar 83935 unique_id port 83935 terminate_cause User-Request 83935 bytes_out 1563501 83935 bytes_in 4313308 83935 station_ip 37.129.9.86 83935 port 15728818 83935 nas_port_type Virtual 83935 remote_ip 5.5.5.183 83936 username caferibar 83936 unique_id port 83936 terminate_cause Lost-Carrier 83936 bytes_out 1271449 83936 bytes_in 15613388 83936 station_ip 5.200.97.195 83936 port 15728799 83936 nas_port_type Virtual 83936 remote_ip 5.5.5.189 83938 username asadi 83938 unique_id port 83938 terminate_cause User-Request 83938 bytes_out 15516 83938 bytes_in 79351 83938 station_ip 37.129.144.25 83938 port 15728822 83938 nas_port_type Virtual 83938 remote_ip 5.5.5.186 83940 username caferibar 83940 unique_id port 83940 terminate_cause User-Request 83940 bytes_out 143747 83940 bytes_in 1748350 83940 station_ip 37.129.9.86 83940 port 15728823 83940 nas_port_type Virtual 83940 remote_ip 5.5.5.183 83944 username jamali 83944 unique_id port 83924 port 17 83924 unique_id port 83924 remote_ip 10.8.0.6 83930 username soleymani 83930 unique_id port 83930 terminate_cause Lost-Carrier 83930 bytes_out 151820 83930 bytes_in 408496 83930 station_ip 5.126.254.252 83930 port 15728811 83930 nas_port_type Virtual 83930 remote_ip 5.5.5.187 83939 username aminvpn 83939 kill_reason Another user logged on this global unique id 83939 mac 83939 bytes_out 0 83939 bytes_in 0 83939 station_ip 5.119.191.3 83939 port 17 83939 unique_id port 83939 remote_ip 10.8.0.6 83942 username aminvpn 83942 kill_reason Another user logged on this global unique id 83942 mac 83942 bytes_out 0 83942 bytes_in 0 83942 station_ip 5.119.191.3 83942 port 17 83942 unique_id port 83949 username aminvpn 83949 unique_id port 83949 terminate_cause User-Request 83949 bytes_out 390914 83949 bytes_in 11619411 83949 station_ip 37.129.75.80 83949 port 15728828 83949 nas_port_type Virtual 83949 remote_ip 5.5.5.179 83952 username alinezhad 83952 unique_id port 83952 terminate_cause User-Request 83952 bytes_out 0 83952 bytes_in 0 83952 station_ip 5.202.62.21 83952 port 15728831 83952 nas_port_type Virtual 83952 remote_ip 5.5.5.249 83960 username soleymani 83960 unique_id port 83960 terminate_cause Lost-Carrier 83960 bytes_out 29840 83960 bytes_in 187497 83960 station_ip 5.125.38.9 83960 port 15728838 83960 nas_port_type Virtual 83960 remote_ip 5.5.5.176 83962 username forozande 83962 unique_id port 83962 terminate_cause User-Request 83962 bytes_out 48029 83962 bytes_in 182100 83962 station_ip 83.122.139.240 83962 port 15728843 83962 nas_port_type Virtual 83962 remote_ip 5.5.5.174 83965 username alinezhad 83965 unique_id port 83965 terminate_cause User-Request 83965 bytes_out 0 83965 bytes_in 0 83965 station_ip 5.202.62.21 83965 port 15728846 83965 nas_port_type Virtual 83965 remote_ip 5.5.5.249 83969 username ahmadipour 83969 unique_id port 83969 terminate_cause User-Request 83969 bytes_out 504677 83969 bytes_in 9671446 83969 station_ip 113.203.18.101 83969 port 15728850 83969 nas_port_type Virtual 83969 remote_ip 5.5.5.170 83978 username madadi 83978 unique_id port 83978 terminate_cause Lost-Carrier 83978 bytes_out 25887 83978 bytes_in 141825 83978 station_ip 5.119.103.51 83978 port 15728855 83978 nas_port_type Virtual 83978 remote_ip 5.5.5.167 83980 username sadegh 83980 unique_id port 83980 terminate_cause User-Request 83980 bytes_out 15040515 83980 bytes_in 1200813560 83980 station_ip 5.119.160.12 83980 port 15728844 83980 nas_port_type Virtual 83980 remote_ip 5.5.5.173 83994 username mobina 83994 kill_reason Relative expiration date has reached 83994 unique_id port 83994 bytes_out 0 83994 bytes_in 0 83994 station_ip 5.124.128.96 83994 port 15728872 83994 nas_port_type Virtual 83999 username madadi 83999 unique_id port 83999 terminate_cause User-Request 83999 bytes_out 0 83999 bytes_in 0 83999 station_ip 5.119.147.118 83999 port 15728876 83999 nas_port_type Virtual 83999 remote_ip 5.5.5.159 84011 username mahdixz 84011 unique_id port 84011 terminate_cause User-Request 84011 bytes_out 133399 84011 bytes_in 838160 84011 station_ip 151.235.104.195 84011 port 15728890 84011 nas_port_type Virtual 84011 remote_ip 5.5.5.230 84016 username caferibar 84016 unique_id port 84016 terminate_cause User-Request 84016 bytes_out 1347621 84016 bytes_in 26580374 84016 station_ip 5.120.180.146 84016 port 15728892 84016 nas_port_type Virtual 84016 remote_ip 5.5.5.201 84018 username amirreza 84018 unique_id port 84018 terminate_cause Lost-Carrier 84018 bytes_out 2175107 84018 bytes_in 92201458 84018 station_ip 5.120.161.64 84018 port 15728893 84018 nas_port_type Virtual 83926 bytes_out 44110 83926 bytes_in 57429 83926 station_ip 37.129.144.25 83926 port 15728813 83926 nas_port_type Virtual 83926 remote_ip 5.5.5.186 83927 username aminvpn 83927 mac 83927 bytes_out 0 83927 bytes_in 0 83927 station_ip 37.129.1.64 83927 port 15 83927 unique_id port 83927 remote_ip 10.8.0.6 83929 username asadi 83929 unique_id port 83929 terminate_cause User-Request 83929 bytes_out 35560 83929 bytes_in 183967 83929 station_ip 37.129.144.25 83929 port 15728817 83929 nas_port_type Virtual 83929 remote_ip 5.5.5.186 83933 username amirabbas 83933 unique_id port 83933 terminate_cause User-Request 83933 bytes_out 117277360 83933 bytes_in 3180486514 83933 station_ip 31.56.112.104 83933 port 15728700 83933 nas_port_type Virtual 83933 remote_ip 5.5.5.228 83934 username zamanialireza 83934 unique_id port 83934 terminate_cause User-Request 83934 bytes_out 32616529 83934 bytes_in 1503590568 83934 station_ip 37.129.23.46 83934 port 15728791 83934 nas_port_type Virtual 83934 remote_ip 5.5.5.193 83941 username caferibar 83941 unique_id port 83941 terminate_cause Lost-Carrier 83941 bytes_out 319402 83941 bytes_in 3590276 83941 station_ip 5.120.180.146 83941 port 15728820 83941 nas_port_type Virtual 83941 remote_ip 5.5.5.201 83946 username aminvpn 83946 mac 83946 bytes_out 0 83946 bytes_in 0 83946 station_ip 5.119.191.3 83946 port 17 83946 unique_id port 83948 username heydari 83948 unique_id port 83948 terminate_cause Lost-Carrier 83948 bytes_out 772531 83948 bytes_in 4192412 83948 station_ip 5.119.37.96 83948 port 15728782 83948 nas_port_type Virtual 83948 remote_ip 5.5.5.233 83950 username zamanialireza 83950 unique_id port 83950 terminate_cause User-Request 83950 bytes_out 3128968 83950 bytes_in 40688800 83950 station_ip 89.47.134.254 83950 port 15728826 83950 nas_port_type Virtual 83950 remote_ip 5.5.5.180 83951 username zamanialireza 83951 unique_id port 83951 terminate_cause User-Request 83951 bytes_out 0 83951 bytes_in 0 83951 station_ip 89.47.134.254 83951 port 15728830 83951 nas_port_type Virtual 83951 remote_ip 5.5.5.180 83958 username soleymani 83958 unique_id port 83958 terminate_cause User-Request 83958 bytes_out 0 83958 bytes_in 0 83958 station_ip 5.125.38.9 83958 port 15728837 83958 nas_port_type Virtual 83958 remote_ip 5.5.5.176 83973 username mahbobeh 83973 unique_id port 83973 terminate_cause Lost-Carrier 83973 bytes_out 1304215 83973 bytes_in 16163710 83973 station_ip 83.122.160.93 83973 port 15728836 83973 nas_port_type Virtual 83973 remote_ip 5.5.5.177 83977 username zamanialireza 83977 unique_id port 83977 terminate_cause User-Request 83977 bytes_out 24252430 83977 bytes_in 517280024 83977 station_ip 89.47.134.254 83977 port 15728851 83977 nas_port_type Virtual 83977 remote_ip 5.5.5.180 83983 username asadi 83983 unique_id port 83983 terminate_cause User-Request 83983 bytes_out 41012 83983 bytes_in 808218 83983 station_ip 83.122.158.68 83983 port 15728860 83983 nas_port_type Virtual 83983 remote_ip 5.5.5.165 83985 username asadi 83985 unique_id port 83985 terminate_cause User-Request 83985 bytes_out 36336 83985 bytes_in 74629 83985 station_ip 83.122.158.68 83985 port 15728865 83985 nas_port_type Virtual 83985 remote_ip 5.5.5.165 83991 username aminvpn 83991 mac 83991 bytes_out 743921 83991 bytes_in 2821715 83991 station_ip 5.119.226.3 83991 port 15 83991 unique_id port 83991 remote_ip 10.8.0.6 83993 username forozande 83993 unique_id port 83993 terminate_cause User-Request 83993 bytes_out 13101 83993 bytes_in 37298 83993 station_ip 113.203.15.181 83993 port 15728871 83993 nas_port_type Virtual 83943 port 15728821 83943 nas_port_type Virtual 83943 remote_ip 5.5.5.228 83945 username zamanialireza 83945 unique_id port 83945 terminate_cause User-Request 83945 bytes_out 0 83945 bytes_in 0 83945 station_ip 89.47.134.254 83945 port 15728825 83945 nas_port_type Virtual 83945 remote_ip 5.5.5.180 83953 username aminvpn 83953 unique_id port 83953 terminate_cause User-Request 83953 bytes_out 549435 83953 bytes_in 4391787 83953 station_ip 37.129.75.80 83953 port 15728829 83953 nas_port_type Virtual 83953 remote_ip 5.5.5.179 83957 username caferibar 83957 unique_id port 83957 terminate_cause User-Request 83957 bytes_out 98692 83957 bytes_in 1305042 83957 station_ip 37.129.9.86 83957 port 15728835 83957 nas_port_type Virtual 83957 remote_ip 5.5.5.183 83963 username sadegh 83963 unique_id port 83963 terminate_cause Lost-Carrier 83963 bytes_out 13888400 83963 bytes_in 518377017 83963 station_ip 5.119.160.12 83963 port 15728819 83963 nas_port_type Virtual 83963 remote_ip 5.5.5.182 83966 username heydari 83966 unique_id port 83966 terminate_cause Lost-Carrier 83966 bytes_out 225361 83966 bytes_in 1185366 83966 station_ip 5.119.37.96 83966 port 15728827 83966 nas_port_type Virtual 83966 remote_ip 5.5.5.233 83967 username zamanialireza 83967 unique_id port 83967 terminate_cause User-Request 83967 bytes_out 10945833 83967 bytes_in 194342172 83967 station_ip 89.47.134.254 83967 port 15728840 83967 nas_port_type Virtual 83967 remote_ip 5.5.5.180 83974 username madadi 83974 unique_id port 83974 terminate_cause Lost-Carrier 83974 bytes_out 28134 83974 bytes_in 137959 83974 station_ip 5.119.12.202 83974 port 15728852 83974 nas_port_type Virtual 83974 remote_ip 5.5.5.169 83975 username mahdixz 83975 unique_id port 83975 terminate_cause User-Request 83975 bytes_out 302687 83975 bytes_in 2978982 83975 station_ip 151.235.104.195 83975 port 15728854 83975 nas_port_type Virtual 83975 remote_ip 5.5.5.230 83976 username madadi 83976 unique_id port 83976 terminate_cause Lost-Carrier 83976 bytes_out 179375 83976 bytes_in 160661 83976 station_ip 5.119.82.176 83976 port 15728853 83976 nas_port_type Virtual 83976 remote_ip 5.5.5.168 83979 username mahdixz 83979 unique_id port 83979 terminate_cause User-Request 83979 bytes_out 650790 83979 bytes_in 969554 83979 station_ip 151.235.104.195 83979 port 15728856 83979 nas_port_type Virtual 83979 remote_ip 5.5.5.230 83982 username madadi 83982 unique_id port 83982 terminate_cause Lost-Carrier 83982 bytes_out 173956 83982 bytes_in 355569 83982 station_ip 5.120.90.147 83982 port 15728857 83982 nas_port_type Virtual 83982 remote_ip 5.5.5.166 83986 username asadi 83986 unique_id port 83986 terminate_cause User-Request 83986 bytes_out 34868 83986 bytes_in 75551 83986 station_ip 83.122.158.68 83986 port 15728866 83986 nas_port_type Virtual 83986 remote_ip 5.5.5.165 83987 username madadi 83987 unique_id port 83987 terminate_cause Lost-Carrier 83987 bytes_out 13371 83987 bytes_in 133749 83987 station_ip 5.120.31.41 83987 port 15728861 83987 nas_port_type Virtual 83987 remote_ip 5.5.5.164 83997 username mahdixz 83997 unique_id port 83997 terminate_cause User-Request 83997 bytes_out 243915 83997 bytes_in 2993473 83997 station_ip 151.235.104.195 83997 port 15728874 83997 nas_port_type Virtual 83997 remote_ip 5.5.5.230 84000 username ahmadi 84000 unique_id port 84000 terminate_cause User-Request 84000 bytes_out 0 84000 bytes_in 0 84000 station_ip 83.123.97.53 84000 port 15728878 84000 nas_port_type Virtual 84000 remote_ip 5.5.5.158 84002 username soleymani 84002 unique_id port 84002 terminate_cause Lost-Carrier 84002 bytes_out 59249 84002 bytes_in 407518 83944 terminate_cause User-Request 83944 bytes_out 3362972 83944 bytes_in 69709980 83944 station_ip 5.119.58.5 83944 port 15728798 83944 nas_port_type Virtual 83944 remote_ip 5.5.5.206 83947 username soleymani 83947 unique_id port 83947 terminate_cause Lost-Carrier 83947 bytes_out 100648 83947 bytes_in 506336 83947 station_ip 5.126.102.112 83947 port 15728824 83947 nas_port_type Virtual 83947 remote_ip 5.5.5.181 83954 username alinezhad 83954 unique_id port 83954 terminate_cause User-Request 83954 bytes_out 14082 83954 bytes_in 19897 83954 station_ip 5.202.62.21 83954 port 15728832 83954 nas_port_type Virtual 83954 remote_ip 5.5.5.249 83955 username ahmadi 83955 unique_id port 83955 terminate_cause User-Request 83955 bytes_out 22391 83955 bytes_in 126665 83955 station_ip 83.123.86.141 83955 port 15728833 83955 nas_port_type Virtual 83955 remote_ip 5.5.5.178 83956 username caferibar 83956 unique_id port 83956 terminate_cause User-Request 83956 bytes_out 356278 83956 bytes_in 3715857 83956 station_ip 37.129.9.86 83956 port 15728834 83956 nas_port_type Virtual 83956 remote_ip 5.5.5.183 83959 username caferibar 83959 unique_id port 83959 terminate_cause User-Request 83959 bytes_out 262429 83959 bytes_in 3775194 83959 station_ip 37.129.9.86 83959 port 15728839 83959 nas_port_type Virtual 83959 remote_ip 5.5.5.183 83961 username mahdixz 83961 unique_id port 83961 terminate_cause User-Request 83961 bytes_out 402136 83961 bytes_in 2389972 83961 station_ip 151.235.104.195 83961 port 15728841 83961 nas_port_type Virtual 83961 remote_ip 5.5.5.230 83964 username mahdixz 83964 unique_id port 83964 terminate_cause User-Request 83964 bytes_out 229856 83964 bytes_in 2529896 83964 station_ip 151.235.104.195 83964 port 15728845 83964 nas_port_type Virtual 83964 remote_ip 5.5.5.230 83968 username madadi 83968 unique_id port 83968 terminate_cause Lost-Carrier 83968 bytes_out 73867 83968 bytes_in 412838 83968 station_ip 5.120.122.119 83968 port 15728847 83968 nas_port_type Virtual 83968 remote_ip 5.5.5.172 83970 username madadi 83970 unique_id port 83970 terminate_cause Lost-Carrier 83970 bytes_out 111975 83970 bytes_in 2920529 83970 station_ip 5.120.11.146 83970 port 15728848 83970 nas_port_type Virtual 83970 remote_ip 5.5.5.171 83971 username farhad 83971 unique_id port 83971 terminate_cause Lost-Carrier 83971 bytes_out 23177162 83971 bytes_in 300799819 83971 station_ip 5.119.42.140 83971 port 15728816 83971 nas_port_type Virtual 83971 remote_ip 5.5.5.184 83972 username mahdixz 83972 unique_id port 83972 terminate_cause User-Request 83972 bytes_out 648198 83972 bytes_in 3589285 83972 station_ip 151.235.104.195 83972 port 15728849 83972 nas_port_type Virtual 83972 remote_ip 5.5.5.230 83981 username asadi 83981 unique_id port 83981 terminate_cause User-Request 83981 bytes_out 150329 83981 bytes_in 1950038 83981 station_ip 83.122.158.68 83981 port 15728859 83981 nas_port_type Virtual 83981 remote_ip 5.5.5.165 83984 username asadi 83984 unique_id port 83984 terminate_cause User-Request 83984 bytes_out 20302 83984 bytes_in 64508 83984 station_ip 83.122.158.68 83984 port 15728864 83984 nas_port_type Virtual 83984 remote_ip 5.5.5.165 83988 username aminvpn 83988 unique_id port 83988 terminate_cause Lost-Carrier 83988 bytes_out 157272 83988 bytes_in 1051460 83988 station_ip 2.183.244.11 83988 port 15728862 83988 nas_port_type Virtual 83988 remote_ip 5.5.5.163 83989 username asadi 83989 unique_id port 83989 terminate_cause User-Request 83989 bytes_out 135878 83989 bytes_in 2936310 83989 station_ip 83.122.158.68 83989 port 15728867 83989 nas_port_type Virtual 83989 remote_ip 5.5.5.165 83990 username aminvpn 83990 unique_id port 83990 terminate_cause User-Request 83990 bytes_out 621745 83990 bytes_in 15451735 83990 station_ip 37.129.75.80 83990 port 15728869 83990 nas_port_type Virtual 83990 remote_ip 5.5.5.179 83992 username madadi 83992 unique_id port 83992 terminate_cause Lost-Carrier 83992 bytes_out 9794 83992 bytes_in 137213 83992 station_ip 5.120.41.170 83992 port 15728868 83992 nas_port_type Virtual 83992 remote_ip 5.5.5.162 83998 username madadi 83998 unique_id port 83998 terminate_cause User-Request 83998 bytes_out 78368 83998 bytes_in 123397 83998 station_ip 5.119.147.118 83998 port 15728875 83998 nas_port_type Virtual 83998 remote_ip 5.5.5.159 84001 username arabpour 84001 unique_id port 84001 terminate_cause User-Request 84001 bytes_out 633660 84001 bytes_in 15986229 84001 station_ip 83.122.124.247 84001 port 15728881 84001 nas_port_type Virtual 84001 remote_ip 5.5.5.155 84003 username arabpour 84003 unique_id port 84003 terminate_cause User-Request 84003 bytes_out 116397 84003 bytes_in 2066436 84003 station_ip 83.122.124.247 84003 port 15728884 84003 nas_port_type Virtual 84003 remote_ip 5.5.5.155 84007 username heydari 84007 unique_id port 84007 terminate_cause Lost-Carrier 84007 bytes_out 503754 84007 bytes_in 1979899 84007 station_ip 5.119.37.96 84007 port 15728863 84007 nas_port_type Virtual 84007 remote_ip 5.5.5.233 84015 username alinezhad 84015 unique_id port 84015 terminate_cause User-Request 84015 bytes_out 0 84015 bytes_in 0 84015 station_ip 5.202.19.124 84015 port 15728891 84015 nas_port_type Virtual 84015 remote_ip 5.5.5.151 84023 username ahmadi 84023 unique_id port 84023 terminate_cause User-Request 84023 bytes_out 0 84023 bytes_in 0 84023 station_ip 83.123.97.53 84023 port 15728901 84023 nas_port_type Virtual 84023 remote_ip 5.5.5.158 84030 username aminvpn 84030 mac 84030 bytes_out 0 84030 bytes_in 0 84030 station_ip 109.125.169.56 84030 port 15 84030 unique_id port 84030 remote_ip 10.8.0.6 84031 username aminvpn 84031 mac 84031 bytes_out 0 84031 bytes_in 0 84031 station_ip 109.125.169.56 84031 port 15 84031 unique_id port 84031 remote_ip 10.8.0.6 85203 username zamanialireza 85203 unique_id port 85203 terminate_cause User-Request 85203 bytes_out 902137 85203 bytes_in 24286793 85203 station_ip 5.119.190.123 85203 port 15728922 85203 nas_port_type Virtual 84035 username caferibar 84035 unique_id port 84035 terminate_cause User-Request 84035 bytes_out 405302 84035 bytes_in 5339657 84035 station_ip 5.120.180.146 84035 port 15728913 84035 nas_port_type Virtual 84035 remote_ip 5.5.5.201 84040 username khalili 84040 unique_id port 84040 terminate_cause Lost-Carrier 84040 bytes_out 2422905 84040 bytes_in 40048105 84040 station_ip 5.120.153.230 84040 port 15728905 84040 nas_port_type Virtual 84040 remote_ip 5.5.5.146 84043 username madadi 84043 unique_id port 84043 terminate_cause Lost-Carrier 84043 bytes_out 26673 84043 bytes_in 135043 84043 station_ip 5.120.166.208 84043 port 15728920 84043 nas_port_type Virtual 84043 remote_ip 5.5.5.140 84044 username forozande 84044 unique_id port 84044 terminate_cause User-Request 84044 bytes_out 58617 84044 bytes_in 728172 84044 station_ip 83.122.173.13 84044 port 15728924 84044 nas_port_type Virtual 84044 remote_ip 5.5.5.138 84052 username farhad 84052 unique_id port 84052 terminate_cause User-Request 84052 bytes_out 0 84052 bytes_in 0 84052 station_ip 5.119.105.12 84052 port 15728928 84052 nas_port_type Virtual 84052 remote_ip 5.5.5.136 84058 username shojaei 84058 unique_id port 84058 terminate_cause User-Request 83993 remote_ip 5.5.5.161 83995 username alinezhad 83995 unique_id port 83995 terminate_cause User-Request 83995 bytes_out 0 83995 bytes_in 0 83995 station_ip 83.122.116.98 83995 port 15728873 83995 nas_port_type Virtual 83995 remote_ip 5.5.5.160 83996 username aminvpn 83996 unique_id port 83996 terminate_cause User-Request 83996 bytes_out 2532553 83996 bytes_in 133604167 83996 station_ip 37.129.75.80 83996 port 15728870 83996 nas_port_type Virtual 83996 remote_ip 5.5.5.179 84005 username madadi 84005 unique_id port 84005 terminate_cause Lost-Carrier 84005 bytes_out 14290 84005 bytes_in 129013 84005 station_ip 5.119.97.212 84005 port 15728883 84005 nas_port_type Virtual 84005 remote_ip 5.5.5.153 84006 username arabpour 84006 unique_id port 84006 terminate_cause User-Request 84006 bytes_out 418889 84006 bytes_in 9867213 84006 station_ip 83.122.192.97 84006 port 15728886 84006 nas_port_type Virtual 84006 remote_ip 5.5.5.152 84008 username zamanialireza 84008 unique_id port 84008 terminate_cause User-Request 84008 bytes_out 2436216 84008 bytes_in 59909352 84008 station_ip 94.183.213.166 84008 port 15728882 84008 nas_port_type Virtual 84008 remote_ip 5.5.5.154 84012 username caferibar 84012 unique_id port 84012 terminate_cause Lost-Carrier 84012 bytes_out 4497832 84012 bytes_in 100989246 84012 station_ip 31.56.158.237 84012 port 15728880 84012 nas_port_type Virtual 84012 remote_ip 5.5.5.156 84014 username arman 84014 unique_id port 84014 terminate_cause Lost-Carrier 84014 bytes_out 7955038 84014 bytes_in 186631037 84014 station_ip 5.119.216.186 84014 port 15728842 84014 nas_port_type Virtual 84014 remote_ip 5.5.5.175 84019 username mahdixz 84019 unique_id port 84019 terminate_cause User-Request 84019 bytes_out 54913 84019 bytes_in 247780 84019 station_ip 83.122.154.12 84019 port 15728895 84019 nas_port_type Virtual 84019 remote_ip 5.5.5.149 84021 username mahbobeh 84021 unique_id port 84021 terminate_cause Lost-Carrier 84021 bytes_out 91474 84021 bytes_in 771584 84021 station_ip 83.122.160.93 84021 port 15728887 84021 nas_port_type Virtual 84021 remote_ip 5.5.5.177 84024 username arman 84024 unique_id port 84024 terminate_cause User-Request 84024 bytes_out 0 84024 bytes_in 0 84024 station_ip 5.119.40.152 84024 port 15728902 84024 nas_port_type Virtual 84024 remote_ip 5.5.5.147 84028 username aminvpn 84028 mac 84028 bytes_out 0 84028 bytes_in 0 84028 station_ip 109.125.169.56 84028 port 15 84028 unique_id port 84028 remote_ip 10.8.0.6 85203 remote_ip 5.5.5.126 85206 username aminvpn 85206 unique_id port 85206 terminate_cause Admin-Reboot 85206 bytes_out 880439 85206 bytes_in 28900269 85206 station_ip 5.160.113.129 85206 port 15728923 85206 nas_port_type Virtual 84036 username aminvpn 84036 mac 84036 bytes_out 0 84036 bytes_in 0 84036 station_ip 109.125.169.56 84036 port 15 84036 unique_id port 84036 remote_ip 10.8.0.6 84038 username madadi 84038 unique_id port 84038 terminate_cause Lost-Carrier 84038 bytes_out 28612 84038 bytes_in 157025 84038 station_ip 5.120.173.144 84038 port 15728914 84038 nas_port_type Virtual 84038 remote_ip 5.5.5.142 84039 username caferibar 84039 unique_id port 84039 terminate_cause User-Request 84039 bytes_out 467068 84039 bytes_in 1369531 84039 station_ip 5.120.180.146 84039 port 15728919 84039 nas_port_type Virtual 84039 remote_ip 5.5.5.201 84047 username zamanialireza 84047 unique_id port 84047 terminate_cause User-Request 84047 bytes_out 3686801 84047 bytes_in 88060212 84047 station_ip 94.183.213.166 84047 port 15728909 84047 nas_port_type Virtual 84047 remote_ip 5.5.5.154 84055 username mobina 84002 station_ip 5.125.150.247 84002 port 15728879 84002 nas_port_type Virtual 84002 remote_ip 5.5.5.157 84004 username madadi 84004 unique_id port 84004 terminate_cause Lost-Carrier 84004 bytes_out 310645 84004 bytes_in 2495907 84004 station_ip 5.119.147.118 84004 port 15728877 84004 nas_port_type Virtual 84004 remote_ip 5.5.5.159 84009 username mahdixz 84009 unique_id port 84009 terminate_cause User-Request 84009 bytes_out 344286 84009 bytes_in 2298215 84009 station_ip 151.235.104.195 84009 port 15728888 84009 nas_port_type Virtual 84009 remote_ip 5.5.5.230 84010 username asadi 84010 unique_id port 84010 terminate_cause User-Request 84010 bytes_out 193977 84010 bytes_in 4777834 84010 station_ip 83.122.158.68 84010 port 15728889 84010 nas_port_type Virtual 84010 remote_ip 5.5.5.165 84013 username caferibar 84013 unique_id port 84013 terminate_cause User-Request 84013 bytes_out 17294426 84013 bytes_in 534051237 84013 station_ip 5.120.180.146 84013 port 15728885 84013 nas_port_type Virtual 84013 remote_ip 5.5.5.201 84017 username reza 84017 kill_reason Relative expiration date has reached 84017 unique_id port 84017 bytes_out 0 84017 bytes_in 0 84017 station_ip 37.129.149.174 84017 port 15728894 84017 nas_port_type Virtual 84020 username mahdixz 84020 unique_id port 84020 terminate_cause User-Request 84020 bytes_out 0 84020 bytes_in 0 84020 station_ip 83.122.154.12 84020 port 15728896 84020 nas_port_type Virtual 84020 remote_ip 5.5.5.149 84026 username aminvpn 84026 mac 84026 bytes_out 774003 84026 bytes_in 10772523 84026 station_ip 109.125.169.56 84026 port 15 84026 unique_id port 84026 remote_ip 10.8.0.6 84029 username arabpour 84029 unique_id port 84029 terminate_cause User-Request 84029 bytes_out 257245 84029 bytes_in 6574280 84029 station_ip 83.122.55.135 84029 port 15728907 84029 nas_port_type Virtual 84029 remote_ip 5.5.5.145 84034 username forozande 84034 unique_id port 84034 terminate_cause User-Request 84034 bytes_out 58041 84034 bytes_in 174507 84034 station_ip 83.122.74.112 84034 port 15728915 84034 nas_port_type Virtual 84034 remote_ip 5.5.5.141 84041 username alinezhad 84041 unique_id port 84041 terminate_cause User-Request 84041 bytes_out 0 84041 bytes_in 0 84041 station_ip 5.202.19.124 84041 port 15728922 84041 nas_port_type Virtual 84041 remote_ip 5.5.5.151 84045 username aminvpn 84045 mac 84045 bytes_out 0 84045 bytes_in 0 84045 station_ip 109.125.169.56 84045 port 15 84045 unique_id port 84045 remote_ip 10.8.0.6 84046 username jamali 84046 unique_id port 84046 terminate_cause Lost-Carrier 84046 bytes_out 1470587 84046 bytes_in 26825262 84046 station_ip 5.119.58.5 84046 port 15728908 84046 nas_port_type Virtual 84046 remote_ip 5.5.5.206 84050 username zamanialireza 84050 unique_id port 84050 terminate_cause User-Request 84050 bytes_out 457561 84050 bytes_in 2925967 84050 station_ip 83.123.136.194 84050 port 15728925 84050 nas_port_type Virtual 84050 remote_ip 5.5.5.137 84051 username aminvpn 84051 mac 84051 bytes_out 0 84051 bytes_in 0 84051 station_ip 109.125.169.56 84051 port 15 84051 unique_id port 84051 remote_ip 10.8.0.6 84060 username asadi 84060 unique_id port 84060 terminate_cause User-Request 84060 bytes_out 240138 84060 bytes_in 5047055 84060 station_ip 83.122.158.68 84060 port 15728934 84060 nas_port_type Virtual 84060 remote_ip 5.5.5.165 84065 username alinezhad 84065 unique_id port 84065 terminate_cause User-Request 84065 bytes_out 89996 84065 bytes_in 747871 84065 station_ip 5.202.19.124 84065 port 15728938 84065 nas_port_type Virtual 84065 remote_ip 5.5.5.151 84018 remote_ip 5.5.5.150 84022 username mahdixz 84022 unique_id port 84022 terminate_cause User-Request 84022 bytes_out 355007 84022 bytes_in 7476882 84022 station_ip 83.122.154.12 84022 port 15728897 84022 nas_port_type Virtual 84022 remote_ip 5.5.5.149 84025 username soleymani 84025 unique_id port 84025 terminate_cause Lost-Carrier 84025 bytes_out 45839 84025 bytes_in 242593 84025 station_ip 5.126.95.173 84025 port 15728900 84025 nas_port_type Virtual 84025 remote_ip 5.5.5.148 84027 username arabpour 84027 unique_id port 84027 terminate_cause User-Request 84027 bytes_out 0 84027 bytes_in 0 84027 station_ip 83.122.55.135 84027 port 15728906 84027 nas_port_type Virtual 84027 remote_ip 5.5.5.145 84037 username soleymani 84037 unique_id port 84037 terminate_cause Lost-Carrier 84037 bytes_out 67477 84037 bytes_in 450388 84037 station_ip 5.125.220.164 84037 port 15728911 84037 nas_port_type Virtual 84037 remote_ip 5.5.5.143 84042 username aminvpn 84042 mac 84042 bytes_out 0 84042 bytes_in 0 84042 station_ip 109.125.169.56 84042 port 15 84042 unique_id port 84042 remote_ip 10.8.0.6 84048 username aminvpn 84048 mac 84048 bytes_out 0 84048 bytes_in 0 84048 station_ip 109.125.169.56 84048 port 15 84048 unique_id port 84048 remote_ip 10.8.0.6 84049 username alinezhad 84049 unique_id port 84049 terminate_cause User-Request 84049 bytes_out 0 84049 bytes_in 0 84049 station_ip 5.202.19.124 84049 port 15728926 84049 nas_port_type Virtual 84049 remote_ip 5.5.5.151 84053 username aminvpn 84053 mac 84053 bytes_out 0 84053 bytes_in 0 84053 station_ip 109.125.169.56 84053 port 15 84053 unique_id port 84053 remote_ip 10.8.0.6 84054 username alinezhad 84054 unique_id port 84054 terminate_cause User-Request 84054 bytes_out 0 84054 bytes_in 0 84054 station_ip 5.202.19.124 84054 port 15728930 84054 nas_port_type Virtual 84054 remote_ip 5.5.5.151 84056 username shojaei 84056 unique_id port 84056 terminate_cause User-Request 84056 bytes_out 35934 84056 bytes_in 159901 84056 station_ip 83.123.20.254 84056 port 15728931 84056 nas_port_type Virtual 84056 remote_ip 5.5.5.135 84069 username aminvpn 84069 mac 84069 bytes_out 0 84069 bytes_in 0 84069 station_ip 109.125.169.56 84069 port 17 84069 unique_id port 84069 remote_ip 10.8.0.6 84076 username alinezhad 84076 unique_id port 84076 terminate_cause User-Request 84076 bytes_out 0 84076 bytes_in 0 84076 station_ip 5.202.19.124 84076 port 15728948 84076 nas_port_type Virtual 84076 remote_ip 5.5.5.151 84079 username arabpour 84079 unique_id port 84079 terminate_cause User-Request 84079 bytes_out 390727 84079 bytes_in 8728511 84079 station_ip 37.129.251.154 84079 port 15728949 84079 nas_port_type Virtual 84079 remote_ip 5.5.5.131 84083 username arabpour 84083 unique_id port 84083 terminate_cause User-Request 84083 bytes_out 195052 84083 bytes_in 5038277 84083 station_ip 37.129.251.154 84083 port 15728951 84083 nas_port_type Virtual 84083 remote_ip 5.5.5.131 84098 username asadi 84098 unique_id port 84098 terminate_cause User-Request 84098 bytes_out 194226 84098 bytes_in 2385167 84098 station_ip 83.122.200.142 84098 port 15728961 84098 nas_port_type Virtual 84098 remote_ip 5.5.5.126 84100 username forozande 84100 unique_id port 84100 terminate_cause User-Request 84100 bytes_out 26931 84100 bytes_in 190260 84100 station_ip 83.122.175.167 84100 port 15728963 84100 nas_port_type Virtual 84100 remote_ip 5.5.5.127 84102 username forozande 84102 unique_id port 84102 terminate_cause User-Request 84102 bytes_out 59741 84102 bytes_in 887928 84055 kill_reason Relative expiration date has reached 84055 unique_id port 84055 bytes_out 0 84055 bytes_in 0 84055 station_ip 5.124.38.74 84055 port 15728932 84055 nas_port_type Virtual 84057 username aminvpn 84057 mac 84057 bytes_out 0 84057 bytes_in 0 84057 station_ip 109.125.169.56 84057 port 15 84057 unique_id port 84057 remote_ip 10.8.0.6 84062 username aminvpn 84062 mac 84062 bytes_out 0 84062 bytes_in 0 84062 station_ip 109.125.169.56 84062 port 15 84062 unique_id port 84062 remote_ip 10.8.0.6 84064 username zamanialireza 84064 unique_id port 84064 terminate_cause User-Request 84064 bytes_out 910051 84064 bytes_in 2158354 84064 station_ip 113.203.71.195 84064 port 15728935 84064 nas_port_type Virtual 84064 remote_ip 5.5.5.134 84071 username aminvpn 84071 mac 84071 bytes_out 0 84071 bytes_in 0 84071 station_ip 109.125.169.56 84071 port 15 84071 unique_id port 84071 remote_ip 10.8.0.6 84074 username aminvpn 84074 unique_id port 84074 terminate_cause User-Request 84074 bytes_out 33621 84074 bytes_in 82783 84074 station_ip 37.129.75.80 84074 port 15728946 84074 nas_port_type Virtual 84074 remote_ip 5.5.5.179 84080 username alinezhad 84080 unique_id port 84080 terminate_cause User-Request 84080 bytes_out 0 84080 bytes_in 0 84080 station_ip 5.202.19.124 84080 port 15728950 84080 nas_port_type Virtual 84080 remote_ip 5.5.5.151 84085 username aminvpn 84085 mac 84085 bytes_out 0 84085 bytes_in 0 84085 station_ip 109.125.169.56 84085 port 17 84085 unique_id port 84085 remote_ip 10.8.0.6 84086 username farhad 84086 unique_id port 84086 terminate_cause Lost-Carrier 84086 bytes_out 1258920 84086 bytes_in 8945582 84086 station_ip 5.120.170.220 84086 port 15728947 84086 nas_port_type Virtual 84086 remote_ip 5.5.5.132 84087 username forozande 84087 unique_id port 84087 terminate_cause User-Request 84087 bytes_out 138480 84087 bytes_in 327741 84087 station_ip 83.123.32.8 84087 port 15728955 84087 nas_port_type Virtual 84087 remote_ip 5.5.5.128 84091 username forozande 84091 unique_id port 84091 terminate_cause User-Request 84091 bytes_out 36294 84091 bytes_in 294000 84091 station_ip 83.122.175.167 84091 port 15728957 84091 nas_port_type Virtual 84091 remote_ip 5.5.5.127 84094 username aminvpn 84094 mac 84094 bytes_out 13818 84094 bytes_in 17772 84094 station_ip 5.119.64.56 84094 port 15 84094 unique_id port 84094 remote_ip 10.8.0.6 84109 username aminvpn 84109 mac 84109 bytes_out 0 84109 bytes_in 0 84109 station_ip 5.119.64.56 84109 port 33 84109 unique_id port 84109 remote_ip 10.8.1.10 84111 username zamanialireza 84111 unique_id port 84111 terminate_cause User-Request 84111 bytes_out 2148206 84111 bytes_in 32940090 84111 station_ip 94.183.213.166 84111 port 15728964 84111 nas_port_type Virtual 84111 remote_ip 5.5.5.154 84123 username aminvpn 84123 unique_id port 84123 terminate_cause User-Request 84123 bytes_out 93736 84123 bytes_in 1060420 84123 station_ip 37.129.92.156 84123 port 15728976 84123 nas_port_type Virtual 84123 remote_ip 5.5.5.122 84132 username alinezhad 84132 unique_id port 84132 terminate_cause User-Request 84132 bytes_out 0 84132 bytes_in 0 84132 station_ip 5.202.19.124 84132 port 15728986 84132 nas_port_type Virtual 84132 remote_ip 5.5.5.151 84147 username asadi 84147 unique_id port 84147 terminate_cause User-Request 84147 bytes_out 249725 84147 bytes_in 4464113 84147 station_ip 37.129.198.7 84147 port 15728991 84147 nas_port_type Virtual 84147 remote_ip 5.5.5.119 84150 username asadi 84150 unique_id port 84058 bytes_out 132540 84058 bytes_in 5203777 84058 station_ip 83.123.20.254 84058 port 15728933 84058 nas_port_type Virtual 84058 remote_ip 5.5.5.135 84059 username aminvpn 84059 mac 84059 bytes_out 0 84059 bytes_in 0 84059 station_ip 109.125.169.56 84059 port 15 84059 unique_id port 84059 remote_ip 10.8.0.6 84061 username soleymani 84061 unique_id port 84061 terminate_cause User-Request 84061 bytes_out 0 84061 bytes_in 0 84061 station_ip 5.126.126.172 84061 port 15728936 84061 nas_port_type Virtual 84061 remote_ip 5.5.5.133 84063 username aminvpn 84063 mac 84063 bytes_out 0 84063 bytes_in 0 84063 station_ip 109.125.169.56 84063 port 17 84063 unique_id port 84063 remote_ip 10.8.0.6 84066 username aminvpn 84066 unique_id port 84066 terminate_cause User-Request 84066 bytes_out 128935 84066 bytes_in 794762 84066 station_ip 37.129.75.80 84066 port 15728939 84066 nas_port_type Virtual 84066 remote_ip 5.5.5.179 84068 username aminvpn 84068 mac 84068 bytes_out 240814 84068 bytes_in 833388 84068 station_ip 109.125.169.56 84068 port 15 84068 unique_id port 84068 remote_ip 10.8.0.6 84072 username aminvpn 84072 unique_id port 84072 terminate_cause User-Request 84072 bytes_out 102415 84072 bytes_in 1270391 84072 station_ip 37.129.75.80 84072 port 15728941 84072 nas_port_type Virtual 84072 remote_ip 5.5.5.179 84075 username aminvpn 84075 mac 84075 bytes_out 0 84075 bytes_in 0 84075 station_ip 109.125.169.56 84075 port 15 84075 unique_id port 84075 remote_ip 10.8.0.6 84077 username farhad 84077 unique_id port 84077 terminate_cause Lost-Carrier 84077 bytes_out 6855096 84077 bytes_in 115292449 84077 station_ip 5.119.105.12 84077 port 15728929 84077 nas_port_type Virtual 84077 remote_ip 5.5.5.136 84081 username aminvpn 84081 mac 84081 bytes_out 0 84081 bytes_in 0 84081 station_ip 109.125.169.56 84081 port 15 84081 unique_id port 84081 remote_ip 10.8.0.6 84082 username aminvpn 84082 mac 84082 bytes_out 0 84082 bytes_in 0 84082 station_ip 109.125.169.56 84082 port 33 84082 unique_id port 84082 remote_ip 10.8.1.10 84090 username aminvpn 84090 mac 84090 bytes_out 0 84090 bytes_in 0 84090 station_ip 5.119.64.56 84090 port 17 84090 unique_id port 84090 remote_ip 10.8.0.6 84092 username asadi 84092 unique_id port 84092 terminate_cause User-Request 84092 bytes_out 155282 84092 bytes_in 3410563 84092 station_ip 83.122.158.68 84092 port 15728958 84092 nas_port_type Virtual 84092 remote_ip 5.5.5.165 84095 username forozande 84095 unique_id port 84095 terminate_cause User-Request 84095 bytes_out 41671 84095 bytes_in 181463 84095 station_ip 83.122.175.167 84095 port 15728959 84095 nas_port_type Virtual 84095 remote_ip 5.5.5.127 84097 username ksrkrgr 84097 unique_id port 84097 terminate_cause User-Request 84097 bytes_out 5700965 84097 bytes_in 8900263 84097 station_ip 151.234.21.21 84097 port 15728927 84097 nas_port_type Virtual 84097 remote_ip 5.5.5.219 84101 username aminvpn 84101 mac 84101 bytes_out 0 84101 bytes_in 0 84101 station_ip 5.119.64.56 84101 port 33 84101 unique_id port 84101 remote_ip 10.8.1.10 84104 username aminvpn 84104 unique_id port 84104 terminate_cause User-Request 84104 bytes_out 247352 84104 bytes_in 7886062 84104 station_ip 37.129.28.56 84104 port 15728968 84104 nas_port_type Virtual 84104 remote_ip 5.5.5.124 84107 username sadegh 84107 unique_id port 84107 terminate_cause User-Request 84107 bytes_out 17374067 84107 bytes_in 484993434 84107 station_ip 5.119.111.220 84107 port 15728952 84067 username soleymani 84067 unique_id port 84067 terminate_cause Lost-Carrier 84067 bytes_out 56391 84067 bytes_in 392646 84067 station_ip 5.126.126.172 84067 port 15728937 84067 nas_port_type Virtual 84067 remote_ip 5.5.5.133 84070 username aminvpn 84070 unique_id port 84070 terminate_cause User-Request 84070 bytes_out 61044 84070 bytes_in 147457 84070 station_ip 37.129.75.80 84070 port 15728940 84070 nas_port_type Virtual 84070 remote_ip 5.5.5.179 84073 username aminvpn 84073 unique_id port 84073 terminate_cause User-Request 84073 bytes_out 511691 84073 bytes_in 2588734 84073 station_ip 37.129.75.80 84073 port 15728944 84073 nas_port_type Virtual 84073 remote_ip 5.5.5.179 84078 username heydari 84078 unique_id port 84078 terminate_cause Lost-Carrier 84078 bytes_out 235713 84078 bytes_in 2778388 84078 station_ip 5.119.37.96 84078 port 15728923 84078 nas_port_type Virtual 84078 remote_ip 5.5.5.233 84084 username aminvpn 84084 mac 84084 bytes_out 11314 84084 bytes_in 12875 84084 station_ip 109.125.169.56 84084 port 15 84084 unique_id port 84084 remote_ip 10.8.0.6 84088 username shojaei 84088 unique_id port 84088 terminate_cause User-Request 84088 bytes_out 156720 84088 bytes_in 2256983 84088 station_ip 83.123.20.254 84088 port 15728956 84088 nas_port_type Virtual 84088 remote_ip 5.5.5.135 84089 username aminvpn 84089 mac 84089 bytes_out 314153 84089 bytes_in 230171 84089 station_ip 5.119.64.56 84089 port 15 84089 unique_id port 84089 remote_ip 10.8.0.6 84093 username alinezhad 84093 unique_id port 84093 terminate_cause User-Request 84093 bytes_out 0 84093 bytes_in 0 84093 station_ip 5.202.19.124 84093 port 15728960 84093 nas_port_type Virtual 84093 remote_ip 5.5.5.151 84096 username amirabbas 84096 unique_id port 84096 terminate_cause User-Request 84096 bytes_out 100739464 84096 bytes_in 2877120915 84096 station_ip 31.56.112.104 84096 port 15728858 84096 nas_port_type Virtual 84096 remote_ip 5.5.5.228 84099 username forozande 84099 unique_id port 84099 terminate_cause User-Request 84099 bytes_out 60203 84099 bytes_in 1058906 84099 station_ip 83.122.175.167 84099 port 15728962 84099 nas_port_type Virtual 84099 remote_ip 5.5.5.127 84103 username alinezhad 84103 unique_id port 84103 terminate_cause User-Request 84103 bytes_out 0 84103 bytes_in 0 84103 station_ip 5.202.19.124 84103 port 15728969 84103 nas_port_type Virtual 84103 remote_ip 5.5.5.151 84105 username aminvpn 84105 mac 84105 bytes_out 1217406 84105 bytes_in 5704700 84105 station_ip 37.129.51.8 84105 port 15 84105 unique_id port 84105 remote_ip 10.8.0.6 84106 username aminvpn 84106 mac 84106 bytes_out 0 84106 bytes_in 0 84106 station_ip 5.119.64.56 84106 port 33 84106 unique_id port 84106 remote_ip 10.8.1.10 84110 username aminvpn 84110 mac 84110 bytes_out 0 84110 bytes_in 0 84110 station_ip 5.119.64.56 84110 port 15 84110 unique_id port 84110 remote_ip 10.8.0.6 84114 username aminvpn 84114 mac 84114 bytes_out 0 84114 bytes_in 0 84114 station_ip 5.119.64.56 84114 port 15 84114 unique_id port 84114 remote_ip 10.8.0.6 84115 username aminvpn 84115 mac 84115 bytes_out 0 84115 bytes_in 0 84115 station_ip 5.119.64.56 84115 port 15 84115 unique_id port 84115 remote_ip 10.8.0.6 84116 username aminvpn 84116 mac 84116 bytes_out 0 84116 bytes_in 0 84116 station_ip 5.119.64.56 84116 port 15 84116 unique_id port 84116 remote_ip 10.8.0.6 84117 username aminvpn 84117 mac 84117 bytes_out 0 84117 bytes_in 0 84117 station_ip 5.119.64.56 84102 station_ip 83.122.175.167 84102 port 15728965 84102 nas_port_type Virtual 84102 remote_ip 5.5.5.127 84108 username soleymani 84108 unique_id port 84108 terminate_cause Lost-Carrier 84108 bytes_out 136081 84108 bytes_in 566704 84108 station_ip 5.126.72.42 84108 port 15728967 84108 nas_port_type Virtual 84108 remote_ip 5.5.5.125 84113 username heydari 84113 unique_id port 84113 terminate_cause Lost-Carrier 84113 bytes_out 1170063 84113 bytes_in 2753780 84113 station_ip 5.119.37.96 84113 port 15728954 84113 nas_port_type Virtual 84113 remote_ip 5.5.5.233 84121 username aminvpn 84121 unique_id port 84121 terminate_cause User-Request 84121 bytes_out 197120 84121 bytes_in 4281246 84121 station_ip 37.129.92.156 84121 port 15728975 84121 nas_port_type Virtual 84121 remote_ip 5.5.5.122 84129 username aminvpn 84129 mac 84129 bytes_out 0 84129 bytes_in 0 84129 station_ip 5.119.64.56 84129 port 15 84129 unique_id port 84129 remote_ip 10.8.0.6 84130 username aminvpn 84130 mac 84130 bytes_out 0 84130 bytes_in 0 84130 station_ip 5.119.64.56 84130 port 15 84130 unique_id port 84130 remote_ip 10.8.0.6 84134 username aminvpn 84134 mac 84134 bytes_out 0 84134 bytes_in 0 84134 station_ip 5.119.64.56 84134 port 33 84134 unique_id port 84134 remote_ip 10.8.1.10 84135 username aminvpn 84135 mac 84135 bytes_out 0 84135 bytes_in 0 84135 station_ip 5.119.64.56 84135 port 33 84135 unique_id port 84135 remote_ip 10.8.1.10 84136 username aminvpn 84136 mac 84136 bytes_out 0 84136 bytes_in 0 84136 station_ip 5.119.64.56 84136 port 33 84136 unique_id port 84136 remote_ip 10.8.1.10 84148 username madadi 84148 unique_id port 84148 terminate_cause Lost-Carrier 84148 bytes_out 47792 84148 bytes_in 144207 84148 station_ip 5.119.55.127 84148 port 15728989 84148 nas_port_type Virtual 84148 remote_ip 5.5.5.120 84151 username aminvpn 84151 mac 84151 bytes_out 0 84151 bytes_in 0 84151 station_ip 5.119.64.56 84151 port 17 84151 unique_id port 84151 remote_ip 10.8.0.6 84152 username asadi 84152 unique_id port 84152 terminate_cause User-Request 84152 bytes_out 281013 84152 bytes_in 3446065 84152 station_ip 37.129.198.7 84152 port 15728994 84152 nas_port_type Virtual 84152 remote_ip 5.5.5.119 84155 username aminvpn 84155 mac 84155 bytes_out 0 84155 bytes_in 0 84155 station_ip 5.119.64.56 84155 port 17 84155 unique_id port 84155 remote_ip 10.8.0.6 84161 username aminvpn 84161 mac 84161 bytes_out 0 84161 bytes_in 0 84161 station_ip 5.119.64.56 84161 port 17 84161 unique_id port 84161 remote_ip 10.8.0.6 84163 username aminvpn 84163 mac 84163 bytes_out 0 84163 bytes_in 0 84163 station_ip 5.119.64.56 84163 port 17 84163 unique_id port 84163 remote_ip 10.8.0.6 84164 username mahbobeh 84164 unique_id port 84164 terminate_cause Lost-Carrier 84164 bytes_out 806164 84164 bytes_in 7038398 84164 station_ip 83.122.160.93 84164 port 15728988 84164 nas_port_type Virtual 84164 remote_ip 5.5.5.177 84168 username aminvpn 84168 mac 84168 bytes_out 0 84168 bytes_in 0 84168 station_ip 5.119.64.56 84168 port 18 84168 unique_id port 84168 remote_ip 10.8.0.6 84169 username aminvpn 84169 mac 84169 bytes_out 0 84169 bytes_in 0 84169 station_ip 5.119.64.56 84169 port 18 84169 unique_id port 84169 remote_ip 10.8.0.6 84170 username aminvpn 84170 mac 84170 bytes_out 0 84170 bytes_in 0 84170 station_ip 5.119.64.56 84170 port 18 84170 unique_id port 84107 nas_port_type Virtual 84107 remote_ip 5.5.5.130 84112 username caferibar 84112 unique_id port 84112 terminate_cause User-Request 84112 bytes_out 1875871 84112 bytes_in 15960269 84112 station_ip 5.120.180.146 84112 port 15728966 84112 nas_port_type Virtual 84112 remote_ip 5.5.5.201 84119 username aminvpn 84119 unique_id port 84119 terminate_cause User-Request 84119 bytes_out 264002 84119 bytes_in 5462632 84119 station_ip 37.129.92.156 84119 port 15728973 84119 nas_port_type Virtual 84119 remote_ip 5.5.5.122 84124 username aminvpn 84124 unique_id port 84124 terminate_cause User-Request 84124 bytes_out 214036 84124 bytes_in 6919681 84124 station_ip 37.129.92.156 84124 port 15728978 84124 nas_port_type Virtual 84124 remote_ip 5.5.5.122 84125 username shojaei 84125 unique_id port 84125 terminate_cause User-Request 84125 bytes_out 191178 84125 bytes_in 2313862 84125 station_ip 83.123.20.254 84125 port 15728979 84125 nas_port_type Virtual 84125 remote_ip 5.5.5.135 84126 username aminvpn 84126 mac 84126 bytes_out 0 84126 bytes_in 0 84126 station_ip 5.119.64.56 84126 port 15 84126 unique_id port 84126 remote_ip 10.8.0.6 84139 username aminvpn 84139 mac 84139 bytes_out 0 84139 bytes_in 0 84139 station_ip 5.119.64.56 84139 port 33 84139 unique_id port 84139 remote_ip 10.8.1.10 84140 username aminvpn 84140 mac 84140 bytes_out 0 84140 bytes_in 0 84140 station_ip 5.119.64.56 84140 port 33 84140 unique_id port 84140 remote_ip 10.8.1.10 84141 username aminvpn 84141 mac 84141 bytes_out 0 84141 bytes_in 0 84141 station_ip 5.119.64.56 84141 port 33 84141 unique_id port 84141 remote_ip 10.8.1.10 84143 username aminvpn 84143 mac 84143 bytes_out 0 84143 bytes_in 0 84143 station_ip 5.119.64.56 84143 port 33 84143 unique_id port 84143 remote_ip 10.8.1.10 84144 username aminvpn 84144 mac 84144 bytes_out 0 84144 bytes_in 0 84144 station_ip 5.119.64.56 84144 port 33 84144 unique_id port 84144 remote_ip 10.8.1.10 84149 username afarin 84149 unique_id port 84149 terminate_cause User-Request 84149 bytes_out 83973 84149 bytes_in 822272 84149 station_ip 113.203.50.245 84149 port 15728992 84149 nas_port_type Virtual 84149 remote_ip 5.5.5.121 84154 username aminvpn 84154 mac 84154 bytes_out 0 84154 bytes_in 0 84154 station_ip 5.119.64.56 84154 port 17 84154 unique_id port 84154 remote_ip 10.8.0.6 84157 username asadi 84157 unique_id port 84157 terminate_cause User-Request 84157 bytes_out 54695 84157 bytes_in 266950 84157 station_ip 37.129.198.7 84157 port 15728998 84157 nas_port_type Virtual 84157 remote_ip 5.5.5.119 84165 username aminvpn 84165 kill_reason Maximum check online fails reached 84165 mac 84165 bytes_out 0 84165 bytes_in 0 84165 station_ip 5.119.64.56 84165 port 17 84165 unique_id port 84166 username aminvpn 84166 mac 84166 bytes_out 0 84166 bytes_in 0 84166 station_ip 5.119.64.56 84166 port 18 84166 unique_id port 84166 remote_ip 10.8.0.6 84176 username aminvpn 84176 mac 84176 bytes_out 0 84176 bytes_in 0 84176 station_ip 5.119.64.56 84176 port 33 84176 unique_id port 84176 remote_ip 10.8.1.10 84177 username mahdixz 84177 unique_id port 84177 terminate_cause User-Request 84177 bytes_out 7540484 84177 bytes_in 212847115 84177 station_ip 5.120.178.49 84177 port 15729002 84177 nas_port_type Virtual 84177 remote_ip 5.5.5.116 84182 username mahdixz 84182 unique_id port 84182 terminate_cause User-Request 84182 bytes_out 0 84182 bytes_in 0 84182 station_ip 5.120.178.49 84117 port 15 84117 unique_id port 84117 remote_ip 10.8.0.6 84118 username alinezhad 84118 unique_id port 84118 terminate_cause User-Request 84118 bytes_out 0 84118 bytes_in 0 84118 station_ip 5.202.19.124 84118 port 15728974 84118 nas_port_type Virtual 84118 remote_ip 5.5.5.151 84120 username ahmadi 84120 unique_id port 84120 terminate_cause User-Request 84120 bytes_out 70277 84120 bytes_in 238319 84120 station_ip 83.122.164.10 84120 port 15728972 84120 nas_port_type Virtual 84120 remote_ip 5.5.5.123 84122 username alinezhad 84122 unique_id port 84122 terminate_cause User-Request 84122 bytes_out 0 84122 bytes_in 0 84122 station_ip 5.202.19.124 84122 port 15728977 84122 nas_port_type Virtual 84122 remote_ip 5.5.5.151 84127 username alinezhad 84127 unique_id port 84127 terminate_cause User-Request 84127 bytes_out 0 84127 bytes_in 0 84127 station_ip 5.202.19.124 84127 port 15728983 84127 nas_port_type Virtual 84127 remote_ip 5.5.5.151 84128 username mahbobeh 84128 kill_reason Maximum check online fails reached 84128 unique_id port 84128 bytes_out 603400 84128 bytes_in 5080909 84128 station_ip 83.122.160.93 84128 port 15728970 84128 nas_port_type Virtual 84128 remote_ip 5.5.5.177 84131 username alinezhad 84131 unique_id port 84131 terminate_cause User-Request 84131 bytes_out 258115 84131 bytes_in 565896 84131 station_ip 5.202.19.124 84131 port 15728984 84131 nas_port_type Virtual 84131 remote_ip 5.5.5.151 84133 username aminvpn 84133 kill_reason Maximum check online fails reached 84133 mac 84133 bytes_out 0 84133 bytes_in 0 84133 station_ip 5.119.64.56 84133 port 15 84133 unique_id port 84137 username aminvpn 84137 mac 84137 bytes_out 0 84137 bytes_in 0 84137 station_ip 5.119.64.56 84137 port 33 84137 unique_id port 84137 remote_ip 10.8.1.10 84138 username aminvpn 84138 mac 84138 bytes_out 0 84138 bytes_in 0 84138 station_ip 5.119.64.56 84138 port 33 84138 unique_id port 84138 remote_ip 10.8.1.10 84142 username afarin 84142 unique_id port 84142 terminate_cause User-Request 84142 bytes_out 158821 84142 bytes_in 2777755 84142 station_ip 113.203.50.245 84142 port 15728987 84142 nas_port_type Virtual 84142 remote_ip 5.5.5.121 84145 username madadi 84145 unique_id port 84145 terminate_cause Lost-Carrier 84145 bytes_out 8248818 84145 bytes_in 142722984 84145 station_ip 5.120.163.28 84145 port 15728921 84145 nas_port_type Virtual 84145 remote_ip 5.5.5.139 84146 username aminvpn 84146 mac 84146 bytes_out 0 84146 bytes_in 0 84146 station_ip 5.119.64.56 84146 port 17 84146 unique_id port 84146 remote_ip 10.8.0.6 84156 username asadi 84156 unique_id port 84156 terminate_cause User-Request 84156 bytes_out 0 84156 bytes_in 0 84156 station_ip 37.129.198.7 84156 port 15728997 84156 nas_port_type Virtual 84156 remote_ip 5.5.5.119 84158 username amirabbas 84158 unique_id port 84158 terminate_cause User-Request 84158 bytes_out 76722145 84158 bytes_in 2002399543 84158 station_ip 31.56.112.104 84158 port 15728971 84158 nas_port_type Virtual 84158 remote_ip 5.5.5.228 84159 username farhad 84159 unique_id port 84159 terminate_cause Lost-Carrier 84159 bytes_out 25441106 84159 bytes_in 188711483 84159 station_ip 5.120.29.159 84159 port 15728953 84159 nas_port_type Virtual 84159 remote_ip 5.5.5.129 84162 username caferibar 84162 unique_id port 84162 terminate_cause User-Request 84162 bytes_out 2160146 84162 bytes_in 33850635 84162 station_ip 5.120.180.146 84162 port 15728990 84162 nas_port_type Virtual 84162 remote_ip 5.5.5.201 84171 username aminvpn 84171 mac 84171 bytes_out 0 84171 bytes_in 0 84150 terminate_cause User-Request 84150 bytes_out 94378 84150 bytes_in 2081615 84150 station_ip 37.129.198.7 84150 port 15728993 84150 nas_port_type Virtual 84150 remote_ip 5.5.5.119 84153 username asadi 84153 unique_id port 84153 terminate_cause User-Request 84153 bytes_out 210797 84153 bytes_in 2140451 84153 station_ip 37.129.198.7 84153 port 15728996 84153 nas_port_type Virtual 84153 remote_ip 5.5.5.119 84160 username aminvpn 84160 mac 84160 bytes_out 0 84160 bytes_in 0 84160 station_ip 5.119.64.56 84160 port 17 84160 unique_id port 84160 remote_ip 10.8.0.6 84167 username amirabbas 84167 unique_id port 84167 terminate_cause User-Request 84167 bytes_out 4853416 84167 bytes_in 103284159 84167 station_ip 31.56.112.104 84167 port 15728999 84167 nas_port_type Virtual 84167 remote_ip 5.5.5.228 84172 username mahdixz 84172 unique_id port 84172 terminate_cause User-Request 84172 bytes_out 0 84172 bytes_in 0 84172 station_ip 5.120.178.49 84172 port 15729001 84172 nas_port_type Virtual 84172 remote_ip 5.5.5.116 84175 username zamanialireza 84175 unique_id port 84175 terminate_cause User-Request 84175 bytes_out 12950498 84175 bytes_in 300488654 84175 station_ip 5.160.112.51 84175 port 15729000 84175 nas_port_type Virtual 84175 remote_ip 5.5.5.117 84180 username mahdixz 84180 unique_id port 84180 terminate_cause User-Request 84180 bytes_out 0 84180 bytes_in 0 84180 station_ip 5.120.178.49 84180 port 15729004 84180 nas_port_type Virtual 84180 remote_ip 5.5.5.116 84181 username aminvpn 84181 mac 84181 bytes_out 0 84181 bytes_in 0 84181 station_ip 5.119.64.56 84181 port 33 84181 unique_id port 84181 remote_ip 10.8.1.10 84183 username mahdixz 84183 unique_id port 84183 terminate_cause User-Request 84183 bytes_out 0 84183 bytes_in 0 84183 station_ip 5.120.172.142 84183 port 15729006 84183 nas_port_type Virtual 84183 remote_ip 5.5.5.114 84184 username aminvpn 84184 mac 84184 bytes_out 0 84184 bytes_in 0 84184 station_ip 5.119.64.56 84184 port 18 84184 unique_id port 84184 remote_ip 10.8.0.6 84185 username aminvpn 84185 mac 84185 bytes_out 0 84185 bytes_in 0 84185 station_ip 5.119.64.56 84185 port 18 84185 unique_id port 84185 remote_ip 10.8.0.6 84193 username mahdixz 84193 kill_reason Maximum number of concurrent logins reached 84193 unique_id port 84193 bytes_out 0 84193 bytes_in 0 84193 station_ip 5.120.83.122 84193 port 15729014 84193 nas_port_type Virtual 84196 username mahdixz 84196 kill_reason Maximum number of concurrent logins reached 84196 unique_id port 84196 bytes_out 0 84196 bytes_in 0 84196 station_ip 5.120.83.122 84196 port 15729017 84196 nas_port_type Virtual 84198 username mahdixz 84198 kill_reason Maximum number of concurrent logins reached 84198 unique_id port 84198 bytes_out 0 84198 bytes_in 0 84198 station_ip 5.119.153.15 84198 port 15729019 84198 nas_port_type Virtual 84201 username mahdixz 84201 kill_reason Maximum number of concurrent logins reached 84201 unique_id port 84201 bytes_out 0 84201 bytes_in 0 84201 station_ip 5.119.34.92 84201 port 15729022 84201 nas_port_type Virtual 84787 username aminvpn 84787 mac 84787 bytes_out 0 84787 bytes_in 0 84787 station_ip 5.119.64.56 84787 port 19 84787 unique_id port 84787 remote_ip 10.8.0.6 84788 username aminvpn 84788 mac 84788 bytes_out 0 84788 bytes_in 0 84788 station_ip 5.119.64.56 84788 port 19 84788 unique_id port 84788 remote_ip 10.8.0.6 84801 username aminvpn 84801 mac 84801 bytes_out 0 84801 bytes_in 0 84801 station_ip 5.119.64.56 84801 port 19 84801 unique_id port 84170 remote_ip 10.8.0.6 84173 username aminvpn 84173 mac 84173 bytes_out 0 84173 bytes_in 0 84173 station_ip 5.119.64.56 84173 port 33 84173 unique_id port 84173 remote_ip 10.8.1.10 84178 username mahdixz 84178 unique_id port 84178 terminate_cause User-Request 84178 bytes_out 0 84178 bytes_in 0 84178 station_ip 5.120.178.49 84178 port 15729003 84178 nas_port_type Virtual 84178 remote_ip 5.5.5.116 84179 username aminvpn 84179 mac 84179 bytes_out 0 84179 bytes_in 0 84179 station_ip 5.119.64.56 84179 port 33 84179 unique_id port 84179 remote_ip 10.8.1.10 84186 username mahdixz 84186 unique_id port 84186 terminate_cause Lost-Carrier 84186 bytes_out 391323 84186 bytes_in 7740087 84186 station_ip 5.119.92.85 84186 port 15729007 84186 nas_port_type Virtual 84186 remote_ip 5.5.5.113 84188 username mahdixz 84188 unique_id port 84188 terminate_cause Lost-Carrier 84188 bytes_out 194445 84188 bytes_in 8169821 84188 station_ip 5.120.113.58 84188 port 15729008 84188 nas_port_type Virtual 84188 remote_ip 5.5.5.112 84192 username mahdixz 84192 kill_reason Maximum number of concurrent logins reached 84192 unique_id port 84192 bytes_out 0 84192 bytes_in 0 84192 station_ip 5.120.83.122 84192 port 15729013 84192 nas_port_type Virtual 84197 username mahdixz 84197 kill_reason Maximum number of concurrent logins reached 84197 unique_id port 84197 bytes_out 0 84197 bytes_in 0 84197 station_ip 5.119.153.15 84197 port 15729018 84197 nas_port_type Virtual 84200 username mahdixz 84200 kill_reason Maximum number of concurrent logins reached 84200 unique_id port 84200 bytes_out 0 84200 bytes_in 0 84200 station_ip 5.119.34.92 84200 port 15729021 84200 nas_port_type Virtual 84202 username mahdixz 84202 kill_reason Maximum number of concurrent logins reached 84202 unique_id port 84202 bytes_out 0 84202 bytes_in 0 84202 station_ip 151.235.104.195 84202 port 15729023 84202 nas_port_type Virtual 84205 username mahdixz 84205 kill_reason Maximum number of concurrent logins reached 84205 unique_id port 84205 bytes_out 0 84205 bytes_in 0 84205 station_ip 5.119.159.245 84205 port 15729025 84205 nas_port_type Virtual 84211 username afarin 84211 unique_id port 84211 terminate_cause User-Request 84211 bytes_out 0 84211 bytes_in 0 84211 station_ip 151.238.247.201 84211 port 15729028 84211 nas_port_type Virtual 84211 remote_ip 5.5.5.118 84218 username aminvpn 84218 mac 84218 bytes_out 0 84218 bytes_in 0 84218 station_ip 5.119.64.56 84218 port 18 84218 unique_id port 84218 remote_ip 10.8.0.6 84220 username aminvpn 84220 mac 84220 bytes_out 0 84220 bytes_in 0 84220 station_ip 5.119.64.56 84220 port 18 84220 unique_id port 84220 remote_ip 10.8.0.6 84225 username aminvpn 84225 mac 84225 bytes_out 0 84225 bytes_in 0 84225 station_ip 5.119.64.56 84225 port 18 84225 unique_id port 84225 remote_ip 10.8.0.6 84227 username aminvpn 84227 mac 84227 bytes_out 0 84227 bytes_in 0 84227 station_ip 5.119.64.56 84227 port 33 84227 unique_id port 84227 remote_ip 10.8.1.10 84228 username aminvpn 84228 mac 84228 bytes_out 0 84228 bytes_in 0 84228 station_ip 5.119.64.56 84228 port 33 84228 unique_id port 84228 remote_ip 10.8.1.10 84237 username zamanialireza 84237 unique_id port 84237 terminate_cause User-Request 84237 bytes_out 0 84237 bytes_in 0 84237 station_ip 83.122.223.10 84237 port 15729034 84237 nas_port_type Virtual 84237 remote_ip 5.5.5.105 84240 username aminvpn 84240 mac 84240 bytes_out 0 84240 bytes_in 0 84240 station_ip 5.119.64.56 84240 port 18 84240 unique_id port 84171 station_ip 5.119.64.56 84171 port 18 84171 unique_id port 84171 remote_ip 10.8.0.6 84174 username heydari 84174 unique_id port 84174 terminate_cause Lost-Carrier 84174 bytes_out 173197 84174 bytes_in 2203636 84174 station_ip 5.119.37.96 84174 port 15728985 84174 nas_port_type Virtual 84174 remote_ip 5.5.5.233 84189 username aminvpn 84189 mac 84189 bytes_out 0 84189 bytes_in 0 84189 station_ip 5.119.64.56 84189 port 18 84189 unique_id port 84189 remote_ip 10.8.0.6 84190 username aminvpn 84190 mac 84190 bytes_out 0 84190 bytes_in 0 84190 station_ip 5.119.64.56 84190 port 18 84190 unique_id port 84190 remote_ip 10.8.0.6 84191 username aminvpn 84191 mac 84191 bytes_out 0 84191 bytes_in 0 84191 station_ip 5.119.64.56 84191 port 18 84191 unique_id port 84191 remote_ip 10.8.0.6 84194 username mahdixz 84194 kill_reason Maximum number of concurrent logins reached 84194 unique_id port 84194 bytes_out 0 84194 bytes_in 0 84194 station_ip 5.120.83.122 84194 port 15729015 84194 nas_port_type Virtual 84203 username mahdixz 84203 kill_reason Maximum number of concurrent logins reached 84203 unique_id port 84203 bytes_out 0 84203 bytes_in 0 84203 station_ip 151.235.104.195 84203 port 15729024 84203 nas_port_type Virtual 84206 username aminvpn 84206 mac 84206 bytes_out 0 84206 bytes_in 0 84206 station_ip 5.119.64.56 84206 port 18 84206 unique_id port 84206 remote_ip 10.8.0.6 84207 username aminvpn 84207 mac 84207 bytes_out 0 84207 bytes_in 0 84207 station_ip 5.119.64.56 84207 port 18 84207 unique_id port 84207 remote_ip 10.8.0.6 84209 username mahdixz 84209 kill_reason Maximum number of concurrent logins reached 84209 unique_id port 84209 bytes_out 0 84209 bytes_in 0 84209 station_ip 151.235.104.195 84209 port 15729027 84209 nas_port_type Virtual 84212 username mahdixz 84212 unique_id port 84212 terminate_cause Lost-Carrier 84212 bytes_out 127685 84212 bytes_in 970429 84212 station_ip 151.235.104.195 84212 port 15729020 84212 nas_port_type Virtual 84212 remote_ip 5.5.5.230 84213 username aminvpn 84213 mac 84213 bytes_out 0 84213 bytes_in 0 84213 station_ip 5.119.64.56 84213 port 18 84213 unique_id port 84213 remote_ip 10.8.0.6 84215 username aminvpn 84215 mac 84215 bytes_out 0 84215 bytes_in 0 84215 station_ip 5.119.64.56 84215 port 18 84215 unique_id port 84215 remote_ip 10.8.0.6 84216 username aminvpn 84216 mac 84216 bytes_out 0 84216 bytes_in 0 84216 station_ip 5.119.64.56 84216 port 18 84216 unique_id port 84216 remote_ip 10.8.0.6 84222 username aminvpn 84222 mac 84222 bytes_out 0 84222 bytes_in 0 84222 station_ip 5.119.64.56 84222 port 18 84222 unique_id port 84222 remote_ip 10.8.0.6 84223 username aminvpn 84223 mac 84223 bytes_out 0 84223 bytes_in 0 84223 station_ip 5.119.64.56 84223 port 18 84223 unique_id port 84223 remote_ip 10.8.0.6 84229 username aminvpn 84229 mac 84229 bytes_out 0 84229 bytes_in 0 84229 station_ip 5.119.64.56 84229 port 33 84229 unique_id port 84229 remote_ip 10.8.1.10 84230 username aminvpn 84230 mac 84230 bytes_out 0 84230 bytes_in 0 84230 station_ip 5.119.64.56 84230 port 33 84230 unique_id port 84230 remote_ip 10.8.1.10 84231 username aminvpn 84231 mac 84231 bytes_out 0 84231 bytes_in 0 84231 station_ip 5.119.64.56 84231 port 33 84231 unique_id port 84231 remote_ip 10.8.1.10 84234 username ahmadipour 84234 unique_id port 84234 terminate_cause Lost-Carrier 84182 port 15729005 84182 nas_port_type Virtual 84182 remote_ip 5.5.5.115 84187 username mahdixz 84187 kill_reason Maximum number of concurrent logins reached 84187 unique_id port 84187 bytes_out 0 84187 bytes_in 0 84187 station_ip 5.120.165.22 84187 port 15729010 84187 nas_port_type Virtual 84195 username mahdixz 84195 kill_reason Maximum number of concurrent logins reached 84195 unique_id port 84195 bytes_out 0 84195 bytes_in 0 84195 station_ip 5.120.83.122 84195 port 15729016 84195 nas_port_type Virtual 84199 username mahdixz 84199 unique_id port 84199 terminate_cause Lost-Carrier 84199 bytes_out 1792 84199 bytes_in 122675 84199 station_ip 5.119.192.68 84199 port 15729009 84199 nas_port_type Virtual 84199 remote_ip 5.5.5.111 84204 username aminvpn 84204 mac 84204 bytes_out 0 84204 bytes_in 0 84204 station_ip 5.119.64.56 84204 port 18 84204 unique_id port 84204 remote_ip 10.8.0.6 84208 username mahdixz 84208 unique_id port 84208 terminate_cause Lost-Carrier 84208 bytes_out 518525 84208 bytes_in 7809617 84208 station_ip 5.119.178.42 84208 port 15729012 84208 nas_port_type Virtual 84208 remote_ip 5.5.5.110 84210 username afarin 84210 unique_id port 84210 terminate_cause Lost-Carrier 84210 bytes_out 7982478 84210 bytes_in 142038927 84210 station_ip 151.238.247.201 84210 port 15728995 84210 nas_port_type Virtual 84210 remote_ip 5.5.5.118 84217 username mahdixz 84217 unique_id port 84217 terminate_cause User-Request 84217 bytes_out 1183900 84217 bytes_in 19755605 84217 station_ip 151.235.104.195 84217 port 15729029 84217 nas_port_type Virtual 84217 remote_ip 5.5.5.230 84219 username aminvpn 84219 mac 84219 bytes_out 0 84219 bytes_in 0 84219 station_ip 5.119.64.56 84219 port 18 84219 unique_id port 84219 remote_ip 10.8.0.6 84239 username aminvpn 84239 mac 84239 bytes_out 0 84239 bytes_in 0 84239 station_ip 5.119.64.56 84239 port 34 84239 unique_id port 84239 remote_ip 10.8.1.10 84247 username aminvpn 84247 mac 84247 bytes_out 0 84247 bytes_in 0 84247 station_ip 5.119.64.56 84247 port 18 84247 unique_id port 84247 remote_ip 10.8.0.6 84248 username aminvpn 84248 mac 84248 bytes_out 0 84248 bytes_in 0 84248 station_ip 5.119.64.56 84248 port 18 84248 unique_id port 84248 remote_ip 10.8.0.6 84249 username aminvpn 84249 mac 84249 bytes_out 0 84249 bytes_in 0 84249 station_ip 5.119.64.56 84249 port 18 84249 unique_id port 84249 remote_ip 10.8.0.6 84251 username zamanialireza 84251 unique_id port 84251 terminate_cause Lost-Carrier 84251 bytes_out 1065439 84251 bytes_in 7315708 84251 station_ip 37.137.30.14 84251 port 15729037 84251 nas_port_type Virtual 84251 remote_ip 5.5.5.104 84257 username aminvpn 84257 mac 84257 bytes_out 0 84257 bytes_in 0 84257 station_ip 5.119.64.56 84257 port 18 84257 unique_id port 84257 remote_ip 10.8.0.6 84258 username aminvpn 84258 mac 84258 bytes_out 0 84258 bytes_in 0 84258 station_ip 5.119.64.56 84258 port 18 84258 unique_id port 84258 remote_ip 10.8.0.6 84259 username aminvpn 84259 mac 84259 bytes_out 0 84259 bytes_in 0 84259 station_ip 5.119.64.56 84259 port 18 84259 unique_id port 84259 remote_ip 10.8.0.6 84260 username aminvpn 84260 mac 84260 bytes_out 0 84260 bytes_in 0 84260 station_ip 5.119.64.56 84260 port 18 84260 unique_id port 84260 remote_ip 10.8.0.6 84267 username aminvpn 84267 mac 84267 bytes_out 0 84267 bytes_in 0 84267 station_ip 5.119.64.56 84267 port 18 84267 unique_id port 84214 username mahdixz 84214 unique_id port 84214 terminate_cause Lost-Carrier 84214 bytes_out 272143 84214 bytes_in 4346443 84214 station_ip 5.119.159.245 84214 port 15729026 84214 nas_port_type Virtual 84214 remote_ip 5.5.5.109 84221 username afarin 84221 unique_id port 84221 terminate_cause User-Request 84221 bytes_out 827961 84221 bytes_in 18845823 84221 station_ip 151.238.247.201 84221 port 15729031 84221 nas_port_type Virtual 84221 remote_ip 5.5.5.118 84224 username aminvpn 84224 mac 84224 bytes_out 0 84224 bytes_in 0 84224 station_ip 5.119.64.56 84224 port 18 84224 unique_id port 84224 remote_ip 10.8.0.6 84226 username aminvpn 84226 mac 84226 bytes_out 0 84226 bytes_in 0 84226 station_ip 5.119.64.56 84226 port 33 84226 unique_id port 84226 remote_ip 10.8.1.10 84232 username aminvpn 84232 mac 84232 bytes_out 0 84232 bytes_in 0 84232 station_ip 5.119.64.56 84232 port 33 84232 unique_id port 84232 remote_ip 10.8.1.10 84233 username aminvpn 84233 mac 84233 bytes_out 0 84233 bytes_in 0 84233 station_ip 5.119.64.56 84233 port 33 84233 unique_id port 84233 remote_ip 10.8.1.10 84236 username aminvpn 84236 unique_id port 84236 terminate_cause User-Request 84236 bytes_out 184531 84236 bytes_in 726098 84236 station_ip 37.129.124.220 84236 port 15729033 84236 nas_port_type Virtual 84236 remote_ip 5.5.5.106 84243 username aminvpn 84243 mac 84243 bytes_out 0 84243 bytes_in 0 84243 station_ip 5.119.64.56 84243 port 18 84243 unique_id port 84243 remote_ip 10.8.0.6 84244 username aminvpn 84244 mac 84244 bytes_out 0 84244 bytes_in 0 84244 station_ip 5.119.64.56 84244 port 18 84244 unique_id port 84244 remote_ip 10.8.0.6 84245 username aminvpn 84245 mac 84245 bytes_out 0 84245 bytes_in 0 84245 station_ip 5.119.64.56 84245 port 18 84245 unique_id port 84245 remote_ip 10.8.0.6 84253 username aminvpn 84253 mac 84253 bytes_out 0 84253 bytes_in 0 84253 station_ip 5.119.64.56 84253 port 18 84253 unique_id port 84253 remote_ip 10.8.0.6 84255 username aminvpn 84255 mac 84255 bytes_out 0 84255 bytes_in 0 84255 station_ip 5.119.64.56 84255 port 18 84255 unique_id port 84255 remote_ip 10.8.0.6 84256 username aminvpn 84256 mac 84256 bytes_out 0 84256 bytes_in 0 84256 station_ip 5.119.64.56 84256 port 18 84256 unique_id port 84256 remote_ip 10.8.0.6 84264 username soleymani 84264 unique_id port 84264 terminate_cause Lost-Carrier 84264 bytes_out 152677 84264 bytes_in 425851 84264 station_ip 5.125.241.195 84264 port 15728640 84264 nas_port_type Virtual 84264 remote_ip 5.5.5.255 84265 username aminvpn 84265 mac 84265 bytes_out 0 84265 bytes_in 0 84265 station_ip 5.119.64.56 84265 port 18 84265 unique_id port 84265 remote_ip 10.8.0.6 84266 username aminvpn 84266 mac 84266 bytes_out 0 84266 bytes_in 0 84266 station_ip 5.119.64.56 84266 port 18 84266 unique_id port 84266 remote_ip 10.8.0.6 84278 username aminvpn 84278 unique_id port 84278 terminate_cause User-Request 84278 bytes_out 164779 84278 bytes_in 2937285 84278 station_ip 37.129.46.204 84278 port 15728648 84278 nas_port_type Virtual 84278 remote_ip 5.5.5.253 84282 username aminvpn 84282 unique_id port 84282 terminate_cause User-Request 84282 bytes_out 196550 84282 bytes_in 3236509 84282 station_ip 37.129.46.204 84282 port 15728652 84282 nas_port_type Virtual 84282 remote_ip 5.5.5.253 84303 username aminvpn 84303 mac 84303 bytes_out 0 84234 bytes_out 7876283 84234 bytes_in 27097269 84234 station_ip 83.123.187.252 84234 port 15729032 84234 nas_port_type Virtual 84234 remote_ip 5.5.5.107 84235 username jamali 84235 unique_id port 84235 terminate_cause User-Request 84235 bytes_out 1656927 84235 bytes_in 23471399 84235 station_ip 5.120.95.15 84235 port 15729030 84235 nas_port_type Virtual 84235 remote_ip 5.5.5.108 84238 username aminvpn 84238 kill_reason Maximum check online fails reached 84238 mac 84238 bytes_out 0 84238 bytes_in 0 84238 station_ip 5.119.64.56 84238 port 33 84238 unique_id port 84241 username zamanialireza 84241 unique_id port 84241 terminate_cause User-Request 84241 bytes_out 26168205 84241 bytes_in 577013058 84241 station_ip 37.137.30.14 84241 port 15729035 84241 nas_port_type Virtual 84241 remote_ip 5.5.5.104 84246 username zamanialireza 84246 unique_id port 84246 terminate_cause User-Request 84246 bytes_out 28347834 84246 bytes_in 697398944 84246 station_ip 37.137.30.14 84246 port 15729036 84246 nas_port_type Virtual 84246 remote_ip 5.5.5.104 84252 username aminvpn 84252 mac 84252 bytes_out 0 84252 bytes_in 0 84252 station_ip 5.119.64.56 84252 port 18 84252 unique_id port 84252 remote_ip 10.8.0.6 84254 username shojaei 84254 unique_id port 84254 terminate_cause User-Request 84254 bytes_out 8420 84254 bytes_in 22119 84254 station_ip 83.123.20.254 84254 port 15729038 84254 nas_port_type Virtual 84254 remote_ip 5.5.5.135 84261 username aminvpn 84261 mac 84261 bytes_out 0 84261 bytes_in 0 84261 station_ip 5.119.64.56 84261 port 18 84261 unique_id port 84261 remote_ip 10.8.0.6 84269 username aminvpn 84269 unique_id port 84269 terminate_cause User-Request 84269 bytes_out 385091 84269 bytes_in 28653760 84269 station_ip 37.129.46.204 84269 port 15728642 84269 nas_port_type Virtual 84269 remote_ip 5.5.5.253 84270 username aminvpn 84270 unique_id port 84270 terminate_cause User-Request 84270 bytes_out 534641 84270 bytes_in 16463225 84270 station_ip 37.129.46.204 84270 port 15728643 84270 nas_port_type Virtual 84270 remote_ip 5.5.5.253 84272 username shojaei 84272 unique_id port 84272 terminate_cause User-Request 84272 bytes_out 7400 84272 bytes_in 18099 84272 station_ip 83.123.119.118 84272 port 15728645 84272 nas_port_type Virtual 84272 remote_ip 5.5.5.252 84277 username aminvpn 84277 unique_id port 84277 terminate_cause User-Request 84277 bytes_out 264507 84277 bytes_in 8817271 84277 station_ip 37.129.46.204 84277 port 15728647 84277 nas_port_type Virtual 84277 remote_ip 5.5.5.253 84280 username aminvpn 84280 unique_id port 84280 terminate_cause User-Request 84280 bytes_out 160610 84280 bytes_in 3837496 84280 station_ip 37.129.46.204 84280 port 15728650 84280 nas_port_type Virtual 84280 remote_ip 5.5.5.253 84283 username aminvpn 84283 unique_id port 84283 terminate_cause User-Request 84283 bytes_out 164638 84283 bytes_in 2644950 84283 station_ip 37.129.46.204 84283 port 15728653 84283 nas_port_type Virtual 84283 remote_ip 5.5.5.253 84293 username asadi 84293 unique_id port 84293 terminate_cause User-Request 84293 bytes_out 226399 84293 bytes_in 2190196 84293 station_ip 83.122.220.235 84293 port 15728659 84293 nas_port_type Virtual 84293 remote_ip 5.5.5.246 84296 username aminvpn 84296 mac 84296 bytes_out 0 84296 bytes_in 0 84296 station_ip 5.119.64.56 84296 port 18 84296 unique_id port 84296 remote_ip 10.8.0.6 84297 username aminvpn 84297 mac 84297 bytes_out 0 84297 bytes_in 0 84297 station_ip 5.119.64.56 84297 port 18 84297 unique_id port 84297 remote_ip 10.8.0.6 84299 username forozande 84240 remote_ip 10.8.0.6 84242 username aminvpn 84242 mac 84242 bytes_out 0 84242 bytes_in 0 84242 station_ip 5.119.64.56 84242 port 18 84242 unique_id port 84242 remote_ip 10.8.0.6 84250 username aminvpn 84250 mac 84250 bytes_out 0 84250 bytes_in 0 84250 station_ip 5.119.64.56 84250 port 18 84250 unique_id port 84250 remote_ip 10.8.0.6 84262 username aminvpn 84262 mac 84262 bytes_out 0 84262 bytes_in 0 84262 station_ip 5.119.64.56 84262 port 18 84262 unique_id port 84262 remote_ip 10.8.0.6 84263 username aminvpn 84263 mac 84263 bytes_out 0 84263 bytes_in 0 84263 station_ip 5.119.64.56 84263 port 18 84263 unique_id port 84263 remote_ip 10.8.0.6 84268 username alinezhad 84268 unique_id port 84268 terminate_cause User-Request 84268 bytes_out 0 84268 bytes_in 0 84268 station_ip 37.129.83.209 84268 port 15728641 84268 nas_port_type Virtual 84268 remote_ip 5.5.5.254 84281 username aminvpn 84281 unique_id port 84281 terminate_cause User-Request 84281 bytes_out 200965 84281 bytes_in 9427999 84281 station_ip 37.129.46.204 84281 port 15728651 84281 nas_port_type Virtual 84281 remote_ip 5.5.5.253 84285 username aminvpn 84285 mac 84285 bytes_out 0 84285 bytes_in 0 84285 station_ip 5.119.64.56 84285 port 18 84285 unique_id port 84285 remote_ip 10.8.0.6 84286 username aminvpn 84286 mac 84286 bytes_out 0 84286 bytes_in 0 84286 station_ip 5.119.64.56 84286 port 18 84286 unique_id port 84286 remote_ip 10.8.0.6 84287 username aminvpn 84287 mac 84287 bytes_out 0 84287 bytes_in 0 84287 station_ip 5.119.64.56 84287 port 18 84287 unique_id port 84287 remote_ip 10.8.0.6 84289 username aminvpn 84289 mac 84289 bytes_out 0 84289 bytes_in 0 84289 station_ip 5.119.64.56 84289 port 18 84289 unique_id port 84289 remote_ip 10.8.0.6 84291 username aminvpn 84291 mac 84291 bytes_out 0 84291 bytes_in 0 84291 station_ip 5.119.64.56 84291 port 18 84291 unique_id port 84291 remote_ip 10.8.0.6 84292 username asadi 84292 unique_id port 84292 terminate_cause User-Request 84292 bytes_out 0 84292 bytes_in 0 84292 station_ip 83.122.220.235 84292 port 15728658 84292 nas_port_type Virtual 84292 remote_ip 5.5.5.246 84294 username aminvpn 84294 mac 84294 bytes_out 0 84294 bytes_in 0 84294 station_ip 5.119.64.56 84294 port 18 84294 unique_id port 84294 remote_ip 10.8.0.6 84295 username aminvpn 84295 mac 84295 bytes_out 0 84295 bytes_in 0 84295 station_ip 5.119.64.56 84295 port 18 84295 unique_id port 84295 remote_ip 10.8.0.6 84298 username forozande 84298 unique_id port 84298 terminate_cause User-Request 84298 bytes_out 173761 84298 bytes_in 1479429 84298 station_ip 83.123.150.0 84298 port 15728660 84298 nas_port_type Virtual 84298 remote_ip 5.5.5.245 84300 username forozande 84300 unique_id port 84300 terminate_cause User-Request 84300 bytes_out 74974 84300 bytes_in 1629276 84300 station_ip 83.123.150.0 84300 port 15728662 84300 nas_port_type Virtual 84300 remote_ip 5.5.5.245 84311 username aminvpn 84311 unique_id port 84311 terminate_cause User-Request 84311 bytes_out 216233 84311 bytes_in 3185571 84311 station_ip 37.129.22.244 84311 port 15728665 84311 nas_port_type Virtual 84311 remote_ip 5.5.5.242 84313 username madadi 84313 unique_id port 84313 terminate_cause Lost-Carrier 84313 bytes_out 855911 84313 bytes_in 1730743 84313 station_ip 5.119.73.190 84313 port 15728657 84313 nas_port_type Virtual 84313 remote_ip 5.5.5.247 84267 remote_ip 10.8.0.6 84271 username aminvpn 84271 unique_id port 84271 terminate_cause User-Request 84271 bytes_out 422462 84271 bytes_in 15002350 84271 station_ip 37.129.46.204 84271 port 15728644 84271 nas_port_type Virtual 84271 remote_ip 5.5.5.253 84273 username aminvpn 84273 mac 84273 bytes_out 0 84273 bytes_in 0 84273 station_ip 5.119.64.56 84273 port 18 84273 unique_id port 84273 remote_ip 10.8.0.6 84274 username aminvpn 84274 mac 84274 bytes_out 0 84274 bytes_in 0 84274 station_ip 5.119.64.56 84274 port 18 84274 unique_id port 84274 remote_ip 10.8.0.6 84275 username aminvpn 84275 mac 84275 bytes_out 0 84275 bytes_in 0 84275 station_ip 5.119.64.56 84275 port 18 84275 unique_id port 84275 remote_ip 10.8.0.6 84276 username aminvpn 84276 mac 84276 bytes_out 0 84276 bytes_in 0 84276 station_ip 5.119.64.56 84276 port 18 84276 unique_id port 84276 remote_ip 10.8.0.6 84279 username aminvpn 84279 mac 84279 bytes_out 0 84279 bytes_in 0 84279 station_ip 5.119.64.56 84279 port 18 84279 unique_id port 84279 remote_ip 10.8.0.6 84284 username aminvpn 84284 unique_id port 84284 terminate_cause User-Request 84284 bytes_out 96197 84284 bytes_in 818118 84284 station_ip 37.129.46.204 84284 port 15728655 84284 nas_port_type Virtual 84284 remote_ip 5.5.5.253 84288 username madadi 84288 unique_id port 84288 terminate_cause Lost-Carrier 84288 bytes_out 21255 84288 bytes_in 141232 84288 station_ip 5.119.33.69 84288 port 15728654 84288 nas_port_type Virtual 84288 remote_ip 5.5.5.249 84290 username madadi 84290 unique_id port 84290 terminate_cause Lost-Carrier 84290 bytes_out 15437 84290 bytes_in 130604 84290 station_ip 5.119.167.76 84290 port 15728656 84290 nas_port_type Virtual 84290 remote_ip 5.5.5.248 84304 username hamideh 84304 unique_id port 84304 terminate_cause Lost-Carrier 84304 bytes_out 7161076 84304 bytes_in 167854995 84304 station_ip 5.120.64.31 84304 port 15728646 84304 nas_port_type Virtual 84304 remote_ip 5.5.5.251 84305 username aminvpn 84305 mac 84305 bytes_out 0 84305 bytes_in 0 84305 station_ip 5.119.64.56 84305 port 34 84305 unique_id port 84305 remote_ip 10.8.1.10 84306 username aminvpn 84306 mac 84306 bytes_out 0 84306 bytes_in 0 84306 station_ip 5.119.64.56 84306 port 34 84306 unique_id port 84306 remote_ip 10.8.1.10 84307 username forozande 84307 unique_id port 84307 terminate_cause User-Request 84307 bytes_out 63897 84307 bytes_in 366833 84307 station_ip 83.123.193.241 84307 port 15728663 84307 nas_port_type Virtual 84307 remote_ip 5.5.5.244 84310 username aminvpn 84310 mac 84310 bytes_out 0 84310 bytes_in 0 84310 station_ip 5.119.64.56 84310 port 19 84310 unique_id port 84310 remote_ip 10.8.0.6 84314 username aminvpn 84314 mac 84314 bytes_out 0 84314 bytes_in 0 84314 station_ip 37.129.48.100 84314 port 18 84314 unique_id port 84314 remote_ip 10.8.0.6 84316 username aminvpn 84316 unique_id port 84316 terminate_cause User-Request 84316 bytes_out 2142765 84316 bytes_in 43168340 84316 station_ip 37.129.22.244 84316 port 15728664 84316 nas_port_type Virtual 84316 remote_ip 5.5.5.243 84318 username alirezazamani 84318 kill_reason Relative expiration date has reached 84318 unique_id port 84318 bytes_out 0 84318 bytes_in 0 84318 station_ip 5.134.179.185 84318 port 15728670 84318 nas_port_type Virtual 84320 username aminvpn 84320 mac 84320 bytes_out 32319 84320 bytes_in 45762 84320 station_ip 37.129.48.100 84320 port 18 84320 unique_id port 84299 unique_id port 84299 terminate_cause User-Request 84299 bytes_out 22486 84299 bytes_in 24088 84299 station_ip 83.123.150.0 84299 port 15728661 84299 nas_port_type Virtual 84299 remote_ip 5.5.5.245 84301 username aminvpn 84301 mac 84301 bytes_out 0 84301 bytes_in 0 84301 station_ip 5.119.64.56 84301 port 18 84301 unique_id port 84301 remote_ip 10.8.0.6 84302 username aminvpn 84302 mac 84302 bytes_out 0 84302 bytes_in 0 84302 station_ip 5.119.64.56 84302 port 18 84302 unique_id port 84302 remote_ip 10.8.0.6 84308 username aminvpn 84308 mac 84308 bytes_out 0 84308 bytes_in 0 84308 station_ip 5.119.64.56 84308 port 34 84308 unique_id port 84308 remote_ip 10.8.1.10 84317 username caferibar 84317 unique_id port 84317 terminate_cause User-Request 84317 bytes_out 0 84317 bytes_in 0 84317 station_ip 5.134.179.185 84317 port 15728669 84317 nas_port_type Virtual 84317 remote_ip 5.5.5.239 84333 username aminvpn 84333 mac 84333 bytes_out 0 84333 bytes_in 0 84333 station_ip 5.119.64.56 84333 port 20 84333 unique_id port 84333 remote_ip 10.8.0.6 84337 username aminvpn 84337 mac 84337 bytes_out 0 84337 bytes_in 0 84337 station_ip 5.119.64.56 84337 port 20 84337 unique_id port 84337 remote_ip 10.8.0.6 84345 username aminvpn 84345 mac 84345 bytes_out 0 84345 bytes_in 0 84345 station_ip 37.129.48.100 84345 port 34 84345 unique_id port 84345 remote_ip 10.8.1.10 84351 username amirabbas 84351 unique_id port 84351 terminate_cause Lost-Carrier 84351 bytes_out 31230490 84351 bytes_in 910546749 84351 station_ip 31.56.112.104 84351 port 15728667 84351 nas_port_type Virtual 84351 remote_ip 5.5.5.240 84355 username madadi 84355 unique_id port 84355 terminate_cause User-Request 84355 bytes_out 0 84355 bytes_in 0 84355 station_ip 5.119.71.96 84355 port 15728684 84355 nas_port_type Virtual 84355 remote_ip 5.5.5.229 84359 username mahdavi 84359 unique_id port 84359 terminate_cause User-Request 84359 bytes_out 210443 84359 bytes_in 1748710 84359 station_ip 83.123.231.170 84359 port 15728690 84359 nas_port_type Virtual 84359 remote_ip 5.5.5.227 84365 username caferibar 84365 unique_id port 84365 terminate_cause User-Request 84365 bytes_out 2411220 84365 bytes_in 57684155 84365 station_ip 5.119.72.22 84365 port 15728692 84365 nas_port_type Virtual 84365 remote_ip 5.5.5.224 84366 username farhad 84366 kill_reason Wrong password 84366 unique_id port 84366 bytes_out 0 84366 bytes_in 0 84366 station_ip 5.119.30.202 84366 port 15728698 84366 nas_port_type Virtual 84379 username aminvpn 84379 mac 84379 bytes_out 0 84379 bytes_in 0 84379 station_ip 5.119.64.56 84379 port 19 84379 unique_id port 84379 remote_ip 10.8.0.6 84380 username aminvpn 84380 mac 84380 bytes_out 0 84380 bytes_in 0 84380 station_ip 5.119.64.56 84380 port 19 84380 unique_id port 84380 remote_ip 10.8.0.6 84381 username aminvpn 84381 mac 84381 bytes_out 0 84381 bytes_in 0 84381 station_ip 5.119.64.56 84381 port 19 84381 unique_id port 84381 remote_ip 10.8.0.6 84382 username aminvpn 84382 mac 84382 bytes_out 0 84382 bytes_in 0 84382 station_ip 5.119.64.56 84382 port 19 84382 unique_id port 84382 remote_ip 10.8.0.6 84388 username soleymani 84388 unique_id port 84388 terminate_cause Lost-Carrier 84388 bytes_out 71550 84388 bytes_in 298934 84388 station_ip 5.126.22.126 84388 port 15728708 84388 nas_port_type Virtual 84388 remote_ip 5.5.5.213 84390 username heydarizadeh 84390 unique_id port 84303 bytes_in 0 84303 station_ip 5.119.64.56 84303 port 18 84303 unique_id port 84303 remote_ip 10.8.0.6 84309 username aminvpn 84309 mac 84309 bytes_out 0 84309 bytes_in 0 84309 station_ip 37.129.48.100 84309 port 18 84309 unique_id port 84309 remote_ip 10.8.0.6 84312 username ahmadi 84312 unique_id port 84312 terminate_cause User-Request 84312 bytes_out 0 84312 bytes_in 0 84312 station_ip 83.122.237.138 84312 port 15728666 84312 nas_port_type Virtual 84312 remote_ip 5.5.5.241 84321 username aminvpn 84321 mac 84321 bytes_out 0 84321 bytes_in 0 84321 station_ip 37.129.48.100 84321 port 19 84321 unique_id port 84321 remote_ip 10.8.0.6 84324 username amin.insta22 84324 kill_reason Relative expiration date has reached 84324 unique_id port 84324 bytes_out 0 84324 bytes_in 0 84324 station_ip 5.233.61.53 84324 port 15728674 84324 nas_port_type Virtual 84326 username aminvpn 84326 mac 84326 bytes_out 80441 84326 bytes_in 55452 84326 station_ip 37.129.48.100 84326 port 18 84326 unique_id port 84326 remote_ip 10.8.0.6 84335 username farhad 84335 unique_id port 84335 terminate_cause User-Request 84335 bytes_out 2516672 84335 bytes_in 37855205 84335 station_ip 5.120.68.18 84335 port 15728671 84335 nas_port_type Virtual 84335 remote_ip 5.5.5.238 84341 username farhad 84341 unique_id port 84341 terminate_cause Lost-Carrier 84341 bytes_out 833197 84341 bytes_in 11261118 84341 station_ip 5.119.28.87 84341 port 15728677 84341 nas_port_type Virtual 84341 remote_ip 5.5.5.234 84347 username aminvpn 84347 mac 84347 bytes_out 0 84347 bytes_in 0 84347 station_ip 5.119.64.56 84347 port 19 84347 unique_id port 84347 remote_ip 10.8.0.6 84348 username aminvpn 84348 mac 84348 bytes_out 0 84348 bytes_in 0 84348 station_ip 5.119.64.56 84348 port 19 84348 unique_id port 84348 remote_ip 10.8.0.6 84349 username aminvpn 84349 mac 84349 bytes_out 0 84349 bytes_in 0 84349 station_ip 5.119.64.56 84349 port 19 84349 unique_id port 84349 remote_ip 10.8.0.6 84350 username aminvpn 84350 mac 84350 bytes_out 0 84350 bytes_in 0 84350 station_ip 5.119.64.56 84350 port 19 84350 unique_id port 84350 remote_ip 10.8.0.6 84352 username jamali 84352 unique_id port 84352 terminate_cause Lost-Carrier 84352 bytes_out 629215 84352 bytes_in 5706737 84352 station_ip 5.120.95.15 84352 port 15728679 84352 nas_port_type Virtual 84352 remote_ip 5.5.5.232 84354 username madadi 84354 unique_id port 84354 terminate_cause Lost-Carrier 84354 bytes_out 61442 84354 bytes_in 223087 84354 station_ip 5.120.91.254 84354 port 15728682 84354 nas_port_type Virtual 84354 remote_ip 5.5.5.231 84356 username mahdavi 84356 unique_id port 84356 terminate_cause User-Request 84356 bytes_out 32980 84356 bytes_in 80533 84356 station_ip 83.123.231.170 84356 port 15728687 84356 nas_port_type Virtual 84356 remote_ip 5.5.5.227 84361 username madadi 84361 unique_id port 84361 terminate_cause Lost-Carrier 84361 bytes_out 21467 84361 bytes_in 153065 84361 station_ip 5.119.71.96 84361 port 15728685 84361 nas_port_type Virtual 84361 remote_ip 5.5.5.229 84362 username mahdavi 84362 unique_id port 84362 terminate_cause User-Request 84362 bytes_out 555871 84362 bytes_in 922882 84362 station_ip 83.123.231.170 84362 port 15728693 84362 nas_port_type Virtual 84362 remote_ip 5.5.5.227 84371 username madadi 84371 unique_id port 84371 terminate_cause Lost-Carrier 84371 bytes_out 19949 84371 bytes_in 138774 84371 station_ip 5.120.119.92 84371 port 15728696 84371 nas_port_type Virtual 84315 username aminvpn 84315 mac 84315 bytes_out 0 84315 bytes_in 0 84315 station_ip 5.119.64.56 84315 port 19 84315 unique_id port 84315 remote_ip 10.8.0.6 84319 username aminvpn 84319 unique_id port 84319 terminate_cause User-Request 84319 bytes_out 48993 84319 bytes_in 178174 84319 station_ip 37.129.22.244 84319 port 15728668 84319 nas_port_type Virtual 84319 remote_ip 5.5.5.242 84323 username majid 84323 unique_id port 84323 terminate_cause User-Request 84323 bytes_out 8397772 84323 bytes_in 259776852 84323 station_ip 86.57.70.191 84323 port 15728649 84323 nas_port_type Virtual 84323 remote_ip 5.5.5.250 84325 username amin.insta22 84325 kill_reason Relative expiration date has reached 84325 unique_id port 84325 bytes_out 0 84325 bytes_in 0 84325 station_ip 5.233.61.53 84325 port 15728675 84325 nas_port_type Virtual 84327 username aminvpn 84327 mac 84327 bytes_out 0 84327 bytes_in 0 84327 station_ip 5.119.64.56 84327 port 19 84327 unique_id port 84327 remote_ip 10.8.0.6 84328 username aminvpn 84328 mac 84328 bytes_out 0 84328 bytes_in 0 84328 station_ip 5.119.64.56 84328 port 18 84328 unique_id port 84328 remote_ip 10.8.0.6 84329 username aminvpn 84329 mac 84329 bytes_out 0 84329 bytes_in 0 84329 station_ip 5.119.64.56 84329 port 18 84329 unique_id port 84329 remote_ip 10.8.0.6 84330 username aminvpn 84330 mac 84330 bytes_out 0 84330 bytes_in 0 84330 station_ip 5.119.64.56 84330 port 18 84330 unique_id port 84330 remote_ip 10.8.0.6 84331 username aminvpn 84331 kill_reason Maximum check online fails reached 84331 mac 84331 bytes_out 0 84331 bytes_in 0 84331 station_ip 5.119.64.56 84331 port 18 84331 unique_id port 84332 username aminvpn 84332 mac 84332 bytes_out 37457 84332 bytes_in 83375 84332 station_ip 37.129.48.100 84332 port 19 84332 unique_id port 84332 remote_ip 10.8.0.6 84334 username soleymani 84334 unique_id port 84334 terminate_cause Lost-Carrier 84334 bytes_out 1612180 84334 bytes_in 14401661 84334 station_ip 5.125.96.225 84334 port 15728673 84334 nas_port_type Virtual 84334 remote_ip 5.5.5.236 84336 username aminvpn 84336 mac 84336 bytes_out 0 84336 bytes_in 0 84336 station_ip 37.129.48.100 84336 port 19 84336 unique_id port 84336 remote_ip 10.8.0.6 84338 username madadi 84338 unique_id port 84338 terminate_cause Lost-Carrier 84338 bytes_out 25799 84338 bytes_in 157456 84338 station_ip 5.120.181.144 84338 port 15728676 84338 nas_port_type Virtual 84338 remote_ip 5.5.5.235 84340 username aminvpn 84340 mac 84340 bytes_out 0 84340 bytes_in 0 84340 station_ip 5.119.64.56 84340 port 20 84340 unique_id port 84340 remote_ip 10.8.0.6 84344 username aminvpn 84344 mac 84344 bytes_out 0 84344 bytes_in 0 84344 station_ip 5.119.64.56 84344 port 20 84344 unique_id port 84344 remote_ip 10.8.0.6 84346 username aminvpn 84346 mac 84346 bytes_out 0 84346 bytes_in 0 84346 station_ip 5.119.64.56 84346 port 19 84346 unique_id port 84346 remote_ip 10.8.0.6 84360 username madadi 84360 kill_reason Maximum number of concurrent logins reached 84360 unique_id port 84360 bytes_out 0 84360 bytes_in 0 84360 station_ip 5.119.49.32 84360 port 15728691 84360 nas_port_type Virtual 84363 username madadi 84363 unique_id port 84363 terminate_cause Lost-Carrier 84363 bytes_out 15080 84363 bytes_in 159980 84363 station_ip 5.120.160.139 84363 port 15728688 84363 nas_port_type Virtual 84363 remote_ip 5.5.5.226 84364 username aminvpn 84364 mac 84364 bytes_out 0 84320 remote_ip 10.8.0.6 84322 username aminvpn 84322 mac 84322 bytes_out 0 84322 bytes_in 0 84322 station_ip 5.119.64.56 84322 port 18 84322 unique_id port 84322 remote_ip 10.8.0.6 84339 username aminvpn 84339 mac 84339 bytes_out 0 84339 bytes_in 0 84339 station_ip 37.129.48.100 84339 port 19 84339 unique_id port 84339 remote_ip 10.8.0.6 84342 username madadi 84342 unique_id port 84342 terminate_cause Lost-Carrier 84342 bytes_out 9463 84342 bytes_in 138565 84342 station_ip 5.119.38.167 84342 port 15728678 84342 nas_port_type Virtual 84342 remote_ip 5.5.5.233 84343 username aminvpn 84343 mac 84343 bytes_out 0 84343 bytes_in 0 84343 station_ip 37.129.48.100 84343 port 19 84343 unique_id port 84343 remote_ip 10.8.0.6 84353 username aminvpn 84353 mac 84353 bytes_out 0 84353 bytes_in 0 84353 station_ip 5.119.64.56 84353 port 19 84353 unique_id port 84353 remote_ip 10.8.0.6 84357 username forozande 84357 unique_id port 84357 terminate_cause User-Request 84357 bytes_out 61560 84357 bytes_in 250284 84357 station_ip 37.129.30.171 84357 port 15728689 84357 nas_port_type Virtual 84357 remote_ip 5.5.5.225 84358 username aminvpn 84358 mac 84358 bytes_out 0 84358 bytes_in 0 84358 station_ip 5.119.64.56 84358 port 19 84358 unique_id port 84358 remote_ip 10.8.0.6 84367 username madadi 84367 unique_id port 84367 terminate_cause Lost-Carrier 84367 bytes_out 7978 84367 bytes_in 119350 84367 station_ip 5.119.49.32 84367 port 15728694 84367 nas_port_type Virtual 84367 remote_ip 5.5.5.223 84369 username farhad 84369 unique_id port 84369 terminate_cause User-Request 84369 bytes_out 350038 84369 bytes_in 1875905 84369 station_ip 5.119.30.202 84369 port 15728699 84369 nas_port_type Virtual 84369 remote_ip 5.5.5.220 84374 username madadi 84374 unique_id port 84374 terminate_cause Lost-Carrier 84374 bytes_out 18220 84374 bytes_in 188833 84374 station_ip 5.119.93.180 84374 port 15728701 84374 nas_port_type Virtual 84374 remote_ip 5.5.5.219 84385 username heydari 84385 unique_id port 84385 terminate_cause Lost-Carrier 84385 bytes_out 463020 84385 bytes_in 2874339 84385 station_ip 5.119.26.143 84385 port 15728672 84385 nas_port_type Virtual 84385 remote_ip 5.5.5.237 84392 username heydari 84392 unique_id port 84392 terminate_cause Lost-Carrier 84392 bytes_out 11676 84392 bytes_in 260302 84392 station_ip 5.119.26.143 84392 port 15728707 84392 nas_port_type Virtual 84392 remote_ip 5.5.5.237 84395 username asadi 84395 unique_id port 84395 terminate_cause User-Request 84395 bytes_out 84746 84395 bytes_in 672510 84395 station_ip 83.122.214.100 84395 port 15728715 84395 nas_port_type Virtual 84395 remote_ip 5.5.5.212 84398 username aminvpn 84398 unique_id port 84398 terminate_cause User-Request 84398 bytes_out 377770 84398 bytes_in 3293287 84398 station_ip 37.129.22.244 84398 port 15728717 84398 nas_port_type Virtual 84398 remote_ip 5.5.5.242 84400 username ahmadi 84400 unique_id port 84400 terminate_cause User-Request 84400 bytes_out 0 84400 bytes_in 0 84400 station_ip 83.122.172.194 84400 port 15728718 84400 nas_port_type Virtual 84400 remote_ip 5.5.5.209 84401 username aminvpn 84401 mac 84401 bytes_out 0 84401 bytes_in 0 84401 station_ip 5.119.64.56 84401 port 19 84401 unique_id port 84401 remote_ip 10.8.0.6 84403 username arabpour 84403 unique_id port 84403 terminate_cause User-Request 84403 bytes_out 141410 84403 bytes_in 1946487 84403 station_ip 83.122.238.194 84403 port 15728721 84403 nas_port_type Virtual 84403 remote_ip 5.5.5.206 84364 bytes_in 0 84364 station_ip 5.119.64.56 84364 port 19 84364 unique_id port 84364 remote_ip 10.8.0.6 84368 username aminvpn 84368 unique_id port 84368 terminate_cause User-Request 84368 bytes_out 681845 84368 bytes_in 22140737 84368 station_ip 37.129.22.244 84368 port 15728697 84368 nas_port_type Virtual 84368 remote_ip 5.5.5.242 84370 username shahriyar 84370 unique_id port 84370 terminate_cause Lost-Carrier 84370 bytes_out 359492 84370 bytes_in 8396661 84370 station_ip 5.202.97.200 84370 port 15728686 84370 nas_port_type Virtual 84370 remote_ip 5.5.5.228 84375 username aminvpn 84375 mac 84375 bytes_out 0 84375 bytes_in 0 84375 station_ip 5.119.64.56 84375 port 19 84375 unique_id port 84375 remote_ip 10.8.0.6 84376 username aminvpn 84376 mac 84376 bytes_out 0 84376 bytes_in 0 84376 station_ip 5.119.64.56 84376 port 19 84376 unique_id port 84376 remote_ip 10.8.0.6 84377 username aminvpn 84377 mac 84377 bytes_out 0 84377 bytes_in 0 84377 station_ip 5.119.64.56 84377 port 19 84377 unique_id port 84377 remote_ip 10.8.0.6 84378 username aminvpn 84378 mac 84378 bytes_out 0 84378 bytes_in 0 84378 station_ip 5.119.64.56 84378 port 19 84378 unique_id port 84378 remote_ip 10.8.0.6 84383 username ahmadi 84383 unique_id port 84383 terminate_cause User-Request 84383 bytes_out 0 84383 bytes_in 0 84383 station_ip 83.122.166.250 84383 port 15728705 84383 nas_port_type Virtual 84383 remote_ip 5.5.5.215 84393 username aminvpn 84393 mac 84393 bytes_out 0 84393 bytes_in 0 84393 station_ip 5.119.64.56 84393 port 34 84393 unique_id port 84393 remote_ip 10.8.1.10 84396 username mahbobeh 84396 unique_id port 84396 terminate_cause Lost-Carrier 84396 bytes_out 207402 84396 bytes_in 5199673 84396 station_ip 83.122.160.93 84396 port 15728712 84396 nas_port_type Virtual 84396 remote_ip 5.5.5.222 84402 username aminvpn 84402 mac 84402 bytes_out 0 84402 bytes_in 0 84402 station_ip 5.119.64.56 84402 port 19 84402 unique_id port 84402 remote_ip 10.8.0.6 84406 username arabpour 84406 unique_id port 84406 terminate_cause User-Request 84406 bytes_out 182799 84406 bytes_in 4760940 84406 station_ip 83.122.238.194 84406 port 15728723 84406 nas_port_type Virtual 84406 remote_ip 5.5.5.206 84409 username madadi 84409 unique_id port 84409 terminate_cause Lost-Carrier 84409 bytes_out 1490547 84409 bytes_in 7516682 84409 station_ip 5.119.243.30 84409 port 15728704 84409 nas_port_type Virtual 84409 remote_ip 5.5.5.216 84410 username aminvpn 84410 mac 84410 bytes_out 0 84410 bytes_in 0 84410 station_ip 5.119.64.56 84410 port 19 84410 unique_id port 84410 remote_ip 10.8.0.6 84411 username aminvpn 84411 unique_id port 84411 terminate_cause User-Request 84411 bytes_out 189957 84411 bytes_in 726408 84411 station_ip 37.129.22.244 84411 port 15728725 84411 nas_port_type Virtual 84411 remote_ip 5.5.5.242 84413 username forozande 84413 unique_id port 84413 terminate_cause User-Request 84413 bytes_out 43530 84413 bytes_in 385819 84413 station_ip 83.122.75.239 84413 port 15728727 84413 nas_port_type Virtual 84413 remote_ip 5.5.5.203 84421 username aminvpn 84421 mac 84421 bytes_out 0 84421 bytes_in 0 84421 station_ip 5.119.64.56 84421 port 19 84421 unique_id port 84421 remote_ip 10.8.0.6 84430 username aminvpn 84430 unique_id port 84430 terminate_cause User-Request 84430 bytes_out 142360 84430 bytes_in 347368 84430 station_ip 37.129.104.196 84430 port 15728739 84430 nas_port_type Virtual 84430 remote_ip 5.5.5.201 84371 remote_ip 5.5.5.221 84372 username aminvpn 84372 mac 84372 bytes_out 0 84372 bytes_in 0 84372 station_ip 5.119.64.56 84372 port 19 84372 unique_id port 84372 remote_ip 10.8.0.6 84373 username ksrkrgr 84373 unique_id port 84373 terminate_cause User-Request 84373 bytes_out 4062477 84373 bytes_in 91066331 84373 station_ip 2.183.129.22 84373 port 15728683 84373 nas_port_type Virtual 84373 remote_ip 5.5.5.230 84384 username aminvpn 84384 mac 84384 bytes_out 0 84384 bytes_in 0 84384 station_ip 5.119.64.56 84384 port 19 84384 unique_id port 84384 remote_ip 10.8.0.6 84386 username asadi 84386 unique_id port 84386 terminate_cause User-Request 84386 bytes_out 201233 84386 bytes_in 4450144 84386 station_ip 83.122.214.100 84386 port 15728709 84386 nas_port_type Virtual 84386 remote_ip 5.5.5.212 84387 username aminvpn 84387 mac 84387 bytes_out 0 84387 bytes_in 0 84387 station_ip 5.119.64.56 84387 port 34 84387 unique_id port 84387 remote_ip 10.8.1.10 84389 username mahbobeh 84389 unique_id port 84389 terminate_cause Lost-Carrier 84389 bytes_out 367719 84389 bytes_in 7126984 84389 station_ip 83.122.160.93 84389 port 15728695 84389 nas_port_type Virtual 84389 remote_ip 5.5.5.222 84391 username caferibar 84391 unique_id port 84391 terminate_cause User-Request 84391 bytes_out 6718491 84391 bytes_in 69167043 84391 station_ip 5.119.72.22 84391 port 15728700 84391 nas_port_type Virtual 84391 remote_ip 5.5.5.224 84394 username asadi 84394 unique_id port 84394 terminate_cause User-Request 84394 bytes_out 95034 84394 bytes_in 1087729 84394 station_ip 83.122.214.100 84394 port 15728711 84394 nas_port_type Virtual 84394 remote_ip 5.5.5.212 84399 username aminvpn 84399 mac 84399 bytes_out 0 84399 bytes_in 0 84399 station_ip 5.119.64.56 84399 port 19 84399 unique_id port 84399 remote_ip 10.8.0.6 84405 username amirabbas 84405 unique_id port 84405 terminate_cause User-Request 84405 bytes_out 36998590 84405 bytes_in 1082058036 84405 station_ip 151.238.227.193 84405 port 15728706 84405 nas_port_type Virtual 84405 remote_ip 5.5.5.214 84415 username hamideh 84415 unique_id port 84415 terminate_cause User-Request 84415 bytes_out 270877 84415 bytes_in 369087 84415 station_ip 5.120.4.71 84415 port 15728726 84415 nas_port_type Virtual 84415 remote_ip 5.5.5.204 84418 username sobhan 84418 unique_id port 84418 terminate_cause User-Request 84418 bytes_out 310456 84418 bytes_in 1721426 84418 station_ip 5.120.161.198 84418 port 15728729 84418 nas_port_type Virtual 84418 remote_ip 5.5.5.202 84420 username asadi 84420 unique_id port 84420 terminate_cause User-Request 84420 bytes_out 110695 84420 bytes_in 1736594 84420 station_ip 83.122.214.100 84420 port 15728733 84420 nas_port_type Virtual 84420 remote_ip 5.5.5.212 84425 username majid 84425 unique_id port 84425 terminate_cause User-Request 84425 bytes_out 8768394 84425 bytes_in 209701851 84425 station_ip 86.57.21.202 84425 port 15728710 84425 nas_port_type Virtual 84425 remote_ip 5.5.5.211 84427 username madadi 84427 unique_id port 84427 terminate_cause Lost-Carrier 84427 bytes_out 17603 84427 bytes_in 135946 84427 station_ip 5.119.51.86 84427 port 15728732 84427 nas_port_type Virtual 84427 remote_ip 5.5.5.200 84428 username aminvpn 84428 mac 84428 bytes_out 0 84428 bytes_in 0 84428 station_ip 5.119.64.56 84428 port 19 84428 unique_id port 84428 remote_ip 10.8.0.6 84429 username mahdixz 84429 unique_id port 84429 terminate_cause User-Request 84429 bytes_out 216897 84429 bytes_in 6567788 84429 station_ip 151.235.110.224 84429 port 15728737 84390 terminate_cause Lost-Carrier 84390 bytes_out 1594445 84390 bytes_in 57233431 84390 station_ip 5.119.26.143 84390 port 15728702 84390 nas_port_type Virtual 84390 remote_ip 5.5.5.218 84397 username aminvpn 84397 mac 84397 bytes_out 0 84397 bytes_in 0 84397 station_ip 5.119.64.56 84397 port 19 84397 unique_id port 84397 remote_ip 10.8.0.6 84404 username arabpour 84404 unique_id port 84404 terminate_cause User-Request 84404 bytes_out 0 84404 bytes_in 0 84404 station_ip 83.122.238.194 84404 port 15728722 84404 nas_port_type Virtual 84404 remote_ip 5.5.5.206 84407 username caferibar 84407 unique_id port 84407 terminate_cause Lost-Carrier 84407 bytes_out 180179 84407 bytes_in 896834 84407 station_ip 5.134.143.145 84407 port 15728719 84407 nas_port_type Virtual 84407 remote_ip 5.5.5.208 84414 username aminvpn 84414 mac 84414 bytes_out 0 84414 bytes_in 0 84414 station_ip 5.119.64.56 84414 port 19 84414 unique_id port 84414 remote_ip 10.8.0.6 84422 username asadi 84422 unique_id port 84422 terminate_cause User-Request 84422 bytes_out 41769 84422 bytes_in 68350 84422 station_ip 83.122.214.100 84422 port 15728734 84422 nas_port_type Virtual 84422 remote_ip 5.5.5.212 84424 username aminvpn 84424 mac 84424 bytes_out 0 84424 bytes_in 0 84424 station_ip 5.119.64.56 84424 port 19 84424 unique_id port 84424 remote_ip 10.8.0.6 84426 username aminvpn 84426 unique_id port 84426 terminate_cause User-Request 84426 bytes_out 2041350 84426 bytes_in 16321168 84426 station_ip 37.129.104.196 84426 port 15728730 84426 nas_port_type Virtual 84426 remote_ip 5.5.5.201 84431 username heydari 84431 unique_id port 84431 terminate_cause Lost-Carrier 84431 bytes_out 506715 84431 bytes_in 14849041 84431 station_ip 5.119.237.169 84431 port 15728716 84431 nas_port_type Virtual 84431 remote_ip 5.5.5.210 84434 username madadi 84434 unique_id port 84434 terminate_cause Lost-Carrier 84434 bytes_out 175485 84434 bytes_in 346389 84434 station_ip 5.119.141.212 84434 port 15728735 84434 nas_port_type Virtual 84434 remote_ip 5.5.5.199 84443 username aminvpn 84443 mac 84443 bytes_out 0 84443 bytes_in 0 84443 station_ip 83.122.224.40 84443 port 19 84443 unique_id port 84443 remote_ip 10.8.0.6 84446 username forozande 84446 unique_id port 84446 terminate_cause User-Request 84446 bytes_out 99450 84446 bytes_in 1587906 84446 station_ip 113.203.41.159 84446 port 15728748 84446 nas_port_type Virtual 84446 remote_ip 5.5.5.192 84449 username aminvpn 84449 mac 84449 bytes_out 0 84449 bytes_in 0 84449 station_ip 5.119.64.56 84449 port 20 84449 unique_id port 84449 remote_ip 10.8.0.6 84451 username aminvpn 84451 mac 84451 bytes_out 0 84451 bytes_in 0 84451 station_ip 5.119.64.56 84451 port 20 84451 unique_id port 84451 remote_ip 10.8.0.6 84452 username aminvpn 84452 mac 84452 bytes_out 0 84452 bytes_in 0 84452 station_ip 5.119.64.56 84452 port 19 84452 unique_id port 84452 remote_ip 10.8.0.6 84453 username aminvpn 84453 mac 84453 bytes_out 0 84453 bytes_in 0 84453 station_ip 5.119.64.56 84453 port 19 84453 unique_id port 84453 remote_ip 10.8.0.6 84459 username aminvpn 84459 mac 84459 bytes_out 228447 84459 bytes_in 449417 84459 station_ip 83.122.224.40 84459 port 19 84459 unique_id port 84459 remote_ip 10.8.0.6 84465 username forozande 84465 unique_id port 84465 terminate_cause User-Request 84465 bytes_out 121634 84465 bytes_in 629817 84465 station_ip 37.129.166.124 84465 port 15728756 84465 nas_port_type Virtual 84408 username aminvpn 84408 mac 84408 bytes_out 0 84408 bytes_in 0 84408 station_ip 5.119.64.56 84408 port 19 84408 unique_id port 84408 remote_ip 10.8.0.6 84412 username caferibar 84412 unique_id port 84412 terminate_cause User-Request 84412 bytes_out 7709152 84412 bytes_in 181894907 84412 station_ip 5.119.72.22 84412 port 15728714 84412 nas_port_type Virtual 84412 remote_ip 5.5.5.224 84416 username caferibar 84416 unique_id port 84416 terminate_cause User-Request 84416 bytes_out 1129525 84416 bytes_in 20844042 84416 station_ip 5.125.204.61 84416 port 15728720 84416 nas_port_type Virtual 84416 remote_ip 5.5.5.207 84417 username aminvpn 84417 mac 84417 bytes_out 0 84417 bytes_in 0 84417 station_ip 5.119.64.56 84417 port 19 84417 unique_id port 84417 remote_ip 10.8.0.6 84419 username ahmadi 84419 unique_id port 84419 terminate_cause User-Request 84419 bytes_out 0 84419 bytes_in 0 84419 station_ip 83.122.172.194 84419 port 15728731 84419 nas_port_type Virtual 84419 remote_ip 5.5.5.209 84423 username aminvpn 84423 mac 84423 bytes_out 0 84423 bytes_in 0 84423 station_ip 5.119.64.56 84423 port 19 84423 unique_id port 84423 remote_ip 10.8.0.6 84439 username alinezhad 84439 unique_id port 84439 terminate_cause User-Request 84439 bytes_out 54736 84439 bytes_in 553983 84439 station_ip 5.202.64.24 84439 port 15728742 84439 nas_port_type Virtual 84439 remote_ip 5.5.5.194 84440 username aminvpn 84440 mac 84440 bytes_out 515443 84440 bytes_in 5304249 84440 station_ip 83.122.224.40 84440 port 19 84440 unique_id port 84440 remote_ip 10.8.0.6 84447 username forozande 84447 unique_id port 84447 terminate_cause User-Request 84447 bytes_out 8603 84447 bytes_in 49548 84447 station_ip 113.203.41.159 84447 port 15728749 84447 nas_port_type Virtual 84447 remote_ip 5.5.5.192 84455 username aminvpn 84455 mac 84455 bytes_out 0 84455 bytes_in 0 84455 station_ip 5.119.64.56 84455 port 20 84455 unique_id port 84455 remote_ip 10.8.0.6 84458 username madadi 84458 unique_id port 84458 terminate_cause Lost-Carrier 84458 bytes_out 399511 84458 bytes_in 692005 84458 station_ip 5.119.199.78 84458 port 15728741 84458 nas_port_type Virtual 84458 remote_ip 5.5.5.195 84460 username madadi 84460 unique_id port 84460 terminate_cause Lost-Carrier 84460 bytes_out 111559 84460 bytes_in 278991 84460 station_ip 5.119.59.221 84460 port 15728750 84460 nas_port_type Virtual 84460 remote_ip 5.5.5.191 84462 username madadi 84462 unique_id port 84462 terminate_cause Lost-Carrier 84462 bytes_out 99562 84462 bytes_in 1023992 84462 station_ip 5.119.76.124 84462 port 15728751 84462 nas_port_type Virtual 84462 remote_ip 5.5.5.190 84468 username aminvpn 84468 mac 84468 bytes_out 0 84468 bytes_in 0 84468 station_ip 5.119.64.56 84468 port 19 84468 unique_id port 84468 remote_ip 10.8.0.6 84470 username mahdixz 84470 unique_id port 84470 terminate_cause User-Request 84470 bytes_out 3207980 84470 bytes_in 75261664 84470 station_ip 151.235.118.203 84470 port 15728754 84470 nas_port_type Virtual 84470 remote_ip 5.5.5.187 84474 username aminvpn 84474 mac 84474 bytes_out 0 84474 bytes_in 0 84474 station_ip 5.119.64.56 84474 port 19 84474 unique_id port 84474 remote_ip 10.8.0.6 84475 username aminvpn 84475 mac 84475 bytes_out 0 84475 bytes_in 0 84475 station_ip 5.119.64.56 84475 port 19 84475 unique_id port 84475 remote_ip 10.8.0.6 84482 username aminvpn 84482 mac 84482 bytes_out 0 84482 bytes_in 0 84482 station_ip 5.120.108.213 84429 nas_port_type Virtual 84429 remote_ip 5.5.5.197 84432 username aminvpn 84432 mac 84432 bytes_out 0 84432 bytes_in 0 84432 station_ip 5.119.64.56 84432 port 19 84432 unique_id port 84432 remote_ip 10.8.0.6 84433 username aminvpn 84433 mac 84433 bytes_out 0 84433 bytes_in 0 84433 station_ip 5.119.64.56 84433 port 19 84433 unique_id port 84433 remote_ip 10.8.0.6 84435 username mahdixz 84435 unique_id port 84435 terminate_cause User-Request 84435 bytes_out 402990 84435 bytes_in 2512995 84435 station_ip 151.235.110.224 84435 port 15728740 84435 nas_port_type Virtual 84435 remote_ip 5.5.5.197 84437 username aminvpn 84437 mac 84437 bytes_out 0 84437 bytes_in 0 84437 station_ip 5.119.64.56 84437 port 19 84437 unique_id port 84437 remote_ip 10.8.0.6 84438 username caferibar 84438 unique_id port 84438 terminate_cause User-Request 84438 bytes_out 2664214 84438 bytes_in 37325373 84438 station_ip 5.119.72.22 84438 port 15728728 84438 nas_port_type Virtual 84438 remote_ip 5.5.5.224 84444 username aminvpn 84444 mac 84444 bytes_out 0 84444 bytes_in 0 84444 station_ip 5.119.64.56 84444 port 20 84444 unique_id port 84444 remote_ip 10.8.0.6 84445 username forozande 84445 unique_id port 84445 terminate_cause User-Request 84445 bytes_out 130737 84445 bytes_in 1614958 84445 station_ip 113.203.41.159 84445 port 15728747 84445 nas_port_type Virtual 84445 remote_ip 5.5.5.192 84454 username aminvpn 84454 mac 84454 bytes_out 0 84454 bytes_in 0 84454 station_ip 83.122.224.40 84454 port 19 84454 unique_id port 84454 remote_ip 10.8.0.6 84461 username aminvpn 84461 mac 84461 bytes_out 0 84461 bytes_in 0 84461 station_ip 5.119.64.56 84461 port 19 84461 unique_id port 84461 remote_ip 10.8.0.6 84464 username forozande 84464 unique_id port 84464 terminate_cause User-Request 84464 bytes_out 161799 84464 bytes_in 1734156 84464 station_ip 37.129.166.124 84464 port 15728755 84464 nas_port_type Virtual 84464 remote_ip 5.5.5.186 84471 username aminvpn 84471 mac 84471 bytes_out 0 84471 bytes_in 0 84471 station_ip 5.119.64.56 84471 port 19 84471 unique_id port 84471 remote_ip 10.8.0.6 84472 username aminvpn 84472 mac 84472 bytes_out 0 84472 bytes_in 0 84472 station_ip 5.119.64.56 84472 port 19 84472 unique_id port 84472 remote_ip 10.8.0.6 84473 username aminvpn 84473 mac 84473 bytes_out 0 84473 bytes_in 0 84473 station_ip 5.119.64.56 84473 port 19 84473 unique_id port 84473 remote_ip 10.8.0.6 84478 username aminvpn 84478 mac 84478 bytes_out 0 84478 bytes_in 0 84478 station_ip 5.119.64.56 84478 port 19 84478 unique_id port 84478 remote_ip 10.8.0.6 84479 username aminvpn 84479 mac 84479 bytes_out 0 84479 bytes_in 0 84479 station_ip 5.119.64.56 84479 port 19 84479 unique_id port 84479 remote_ip 10.8.0.6 84484 username soleymani 84484 unique_id port 84484 terminate_cause Lost-Carrier 84484 bytes_out 580165 84484 bytes_in 15230607 84484 station_ip 5.117.32.59 84484 port 15728760 84484 nas_port_type Virtual 84484 remote_ip 5.5.5.183 84491 username aminvpn 84491 mac 84491 bytes_out 0 84491 bytes_in 0 84491 station_ip 83.122.143.172 84491 port 19 84491 unique_id port 84491 remote_ip 10.8.0.6 84496 username caferibar 84496 unique_id port 84496 terminate_cause User-Request 84496 bytes_out 162197 84496 bytes_in 341053 84496 station_ip 94.183.213.166 84496 port 15728765 84496 nas_port_type Virtual 84496 remote_ip 5.5.5.181 84436 username mahbobeh 84436 unique_id port 84436 terminate_cause Lost-Carrier 84436 bytes_out 1068181 84436 bytes_in 15109212 84436 station_ip 83.122.153.217 84436 port 15728724 84436 nas_port_type Virtual 84436 remote_ip 5.5.5.205 84441 username aminvpn 84441 mac 84441 bytes_out 0 84441 bytes_in 0 84441 station_ip 5.119.64.56 84441 port 20 84441 unique_id port 84441 remote_ip 10.8.0.6 84442 username zamanialireza 84442 unique_id port 84442 terminate_cause User-Request 84442 bytes_out 147665 84442 bytes_in 867024 84442 station_ip 37.129.57.26 84442 port 15728744 84442 nas_port_type Virtual 84442 remote_ip 5.5.5.193 84448 username aminvpn 84448 mac 84448 bytes_out 0 84448 bytes_in 0 84448 station_ip 83.122.224.40 84448 port 19 84448 unique_id port 84448 remote_ip 10.8.0.6 84450 username aminvpn 84450 mac 84450 bytes_out 0 84450 bytes_in 0 84450 station_ip 83.122.224.40 84450 port 19 84450 unique_id port 84450 remote_ip 10.8.0.6 84456 username aminvpn 84456 mac 84456 bytes_out 0 84456 bytes_in 0 84456 station_ip 5.119.64.56 84456 port 19 84456 unique_id port 84456 remote_ip 10.8.0.6 84457 username farhad 84457 unique_id port 84457 terminate_cause Lost-Carrier 84457 bytes_out 24425318 84457 bytes_in 323429305 84457 station_ip 5.119.106.89 84457 port 15728703 84457 nas_port_type Virtual 84457 remote_ip 5.5.5.217 84463 username aminvpn 84463 mac 84463 bytes_out 0 84463 bytes_in 0 84463 station_ip 5.119.64.56 84463 port 19 84463 unique_id port 84463 remote_ip 10.8.0.6 84466 username forozande 84466 unique_id port 84466 terminate_cause User-Request 84466 bytes_out 188865 84466 bytes_in 2476114 84466 station_ip 37.129.166.124 84466 port 15728757 84466 nas_port_type Virtual 84466 remote_ip 5.5.5.186 84480 username aminvpn 84480 mac 84480 bytes_out 0 84480 bytes_in 0 84480 station_ip 5.119.64.56 84480 port 19 84480 unique_id port 84480 remote_ip 10.8.0.6 84481 username aminvpn 84481 mac 84481 bytes_out 0 84481 bytes_in 0 84481 station_ip 5.119.64.56 84481 port 19 84481 unique_id port 84481 remote_ip 10.8.0.6 84489 username aminvpn 84489 mac 84489 bytes_out 0 84489 bytes_in 0 84489 station_ip 83.122.143.172 84489 port 19 84489 unique_id port 84489 remote_ip 10.8.0.6 84506 username arabpour 84506 unique_id port 84506 terminate_cause User-Request 84506 bytes_out 271037 84506 bytes_in 7005200 84506 station_ip 83.122.114.202 84506 port 15728778 84506 nas_port_type Virtual 84506 remote_ip 5.5.5.174 84509 username madadi 84509 unique_id port 84509 terminate_cause Lost-Carrier 84509 bytes_out 24551 84509 bytes_in 140877 84509 station_ip 5.119.163.77 84509 port 15728777 84509 nas_port_type Virtual 84509 remote_ip 5.5.5.172 84510 username aminvpn 84510 mac 84510 bytes_out 0 84510 bytes_in 0 84510 station_ip 83.122.64.60 84510 port 34 84510 unique_id port 84510 remote_ip 10.8.1.10 84511 username aminvpn 84511 mac 84511 bytes_out 0 84511 bytes_in 0 84511 station_ip 5.119.64.56 84511 port 19 84511 unique_id port 84511 remote_ip 10.8.0.6 84512 username aminvpn 84512 mac 84512 bytes_out 0 84512 bytes_in 0 84512 station_ip 5.119.64.56 84512 port 19 84512 unique_id port 84512 remote_ip 10.8.0.6 84521 username aminvpn 84521 mac 84521 bytes_out 0 84521 bytes_in 0 84521 station_ip 5.119.64.56 84521 port 19 84521 unique_id port 84521 remote_ip 10.8.0.6 84523 username forozande 84523 unique_id port 84465 remote_ip 5.5.5.186 84467 username caferibar 84467 unique_id port 84467 terminate_cause User-Request 84467 bytes_out 2024 84467 bytes_in 13471 84467 station_ip 37.129.126.141 84467 port 15728758 84467 nas_port_type Virtual 84467 remote_ip 5.5.5.185 84469 username caferibar 84469 unique_id port 84469 terminate_cause Lost-Carrier 84469 bytes_out 110602 84469 bytes_in 628451 84469 station_ip 5.62.214.29 84469 port 15728753 84469 nas_port_type Virtual 84469 remote_ip 5.5.5.188 84476 username shojaei 84476 unique_id port 84476 terminate_cause User-Request 84476 bytes_out 428358 84476 bytes_in 454265 84476 station_ip 83.122.146.228 84476 port 15728759 84476 nas_port_type Virtual 84476 remote_ip 5.5.5.184 84477 username amirabbas 84477 unique_id port 84477 terminate_cause User-Request 84477 bytes_out 74348865 84477 bytes_in 2016151244 84477 station_ip 151.238.227.193 84477 port 15728743 84477 nas_port_type Virtual 84477 remote_ip 5.5.5.214 84483 username aminvpn 84483 mac 84483 bytes_out 0 84483 bytes_in 0 84483 station_ip 5.119.64.56 84483 port 20 84483 unique_id port 84483 remote_ip 10.8.0.6 84485 username kamali 84485 unique_id port 84485 terminate_cause Lost-Carrier 84485 bytes_out 780089 84485 bytes_in 19071529 84485 station_ip 151.238.234.148 84485 port 15728761 84485 nas_port_type Virtual 84485 remote_ip 5.5.5.182 84486 username aminvpn 84486 mac 84486 bytes_out 0 84486 bytes_in 0 84486 station_ip 5.120.108.213 84486 port 19 84486 unique_id port 84486 remote_ip 10.8.0.6 84487 username sadegh 84487 unique_id port 84487 terminate_cause Lost-Carrier 84487 bytes_out 6473867 84487 bytes_in 178226155 84487 station_ip 5.202.58.200 84487 port 15728736 84487 nas_port_type Virtual 84487 remote_ip 5.5.5.198 84493 username aminvpn 84493 mac 84493 bytes_out 0 84493 bytes_in 0 84493 station_ip 5.120.108.213 84493 port 20 84493 unique_id port 84493 remote_ip 10.8.0.6 84495 username aminvpn 84495 mac 84495 bytes_out 0 84495 bytes_in 0 84495 station_ip 5.119.64.56 84495 port 20 84495 unique_id port 84495 remote_ip 10.8.0.6 84497 username caferibar 84497 unique_id port 84497 terminate_cause Lost-Carrier 84497 bytes_out 117471 84497 bytes_in 646835 84497 station_ip 94.24.103.93 84497 port 15728766 84497 nas_port_type Virtual 84497 remote_ip 5.5.5.180 84498 username aminvpn 84498 mac 84498 bytes_out 0 84498 bytes_in 0 84498 station_ip 83.122.143.172 84498 port 19 84498 unique_id port 84498 remote_ip 10.8.0.6 84501 username arabpour 84501 unique_id port 84501 terminate_cause User-Request 84501 bytes_out 128094 84501 bytes_in 1920706 84501 station_ip 83.122.114.202 84501 port 15728775 84501 nas_port_type Virtual 84501 remote_ip 5.5.5.174 84504 username aminvpn 84504 mac 84504 bytes_out 51975 84504 bytes_in 52793 84504 station_ip 83.122.143.172 84504 port 34 84504 unique_id port 84504 remote_ip 10.8.1.10 84508 username aminvpn 84508 mac 84508 bytes_out 0 84508 bytes_in 0 84508 station_ip 5.119.64.56 84508 port 19 84508 unique_id port 84508 remote_ip 10.8.0.6 84515 username aminvpn 84515 mac 84515 bytes_out 0 84515 bytes_in 0 84515 station_ip 5.119.64.56 84515 port 19 84515 unique_id port 84515 remote_ip 10.8.0.6 84522 username mahdixz 84522 unique_id port 84522 terminate_cause User-Request 84522 bytes_out 314592 84522 bytes_in 7928651 84522 station_ip 83.122.46.242 84522 port 15728791 84522 nas_port_type Virtual 84522 remote_ip 5.5.5.167 84524 username alinezhad 84524 unique_id port 84524 terminate_cause User-Request 84482 port 19 84482 unique_id port 84482 remote_ip 10.8.0.6 84488 username aminvpn 84488 mac 84488 bytes_out 0 84488 bytes_in 0 84488 station_ip 5.119.64.56 84488 port 19 84488 unique_id port 84488 remote_ip 10.8.0.6 84490 username aminvpn 84490 mac 84490 bytes_out 0 84490 bytes_in 0 84490 station_ip 5.120.108.213 84490 port 20 84490 unique_id port 84490 remote_ip 10.8.0.6 84492 username amirabbas 84492 unique_id port 84492 terminate_cause User-Request 84492 bytes_out 14034741 84492 bytes_in 368871948 84492 station_ip 151.238.227.193 84492 port 15728762 84492 nas_port_type Virtual 84492 remote_ip 5.5.5.214 84494 username aminvpn 84494 mac 84494 bytes_out 0 84494 bytes_in 0 84494 station_ip 83.122.143.172 84494 port 19 84494 unique_id port 84494 remote_ip 10.8.0.6 84502 username aminvpn 84502 mac 84502 bytes_out 100166 84502 bytes_in 131336 84502 station_ip 83.122.143.172 84502 port 19 84502 unique_id port 84502 remote_ip 10.8.0.6 84505 username madadi 84505 unique_id port 84505 terminate_cause Lost-Carrier 84505 bytes_out 1288671 84505 bytes_in 2141301 84505 station_ip 5.120.19.181 84505 port 15728752 84505 nas_port_type Virtual 84505 remote_ip 5.5.5.189 84507 username zamanialireza 84507 unique_id port 84507 terminate_cause Lost-Carrier 84507 bytes_out 32575 84507 bytes_in 255615 84507 station_ip 37.137.2.111 84507 port 15728776 84507 nas_port_type Virtual 84507 remote_ip 5.5.5.173 84513 username madadi 84513 unique_id port 84513 terminate_cause Lost-Carrier 84513 bytes_out 14699 84513 bytes_in 123645 84513 station_ip 5.119.183.86 84513 port 15728779 84513 nas_port_type Virtual 84513 remote_ip 5.5.5.171 84514 username soleymani 84514 unique_id port 84514 terminate_cause Lost-Carrier 84514 bytes_out 181615 84514 bytes_in 1023822 84514 station_ip 5.115.210.228 84514 port 15728780 84514 nas_port_type Virtual 84514 remote_ip 5.5.5.170 84517 username heydarizadeh 84517 unique_id port 84517 terminate_cause Lost-Carrier 84517 bytes_out 12693609 84517 bytes_in 550363687 84517 station_ip 5.119.237.169 84517 port 15728738 84517 nas_port_type Virtual 84517 remote_ip 5.5.5.196 84519 username mahdixz 84519 unique_id port 84519 terminate_cause User-Request 84519 bytes_out 360074 84519 bytes_in 4832017 84519 station_ip 151.235.118.203 84519 port 15728788 84519 nas_port_type Virtual 84519 remote_ip 5.5.5.187 84520 username madadi 84520 unique_id port 84520 terminate_cause Lost-Carrier 84520 bytes_out 19573 84520 bytes_in 141459 84520 station_ip 5.119.85.7 84520 port 15728785 84520 nas_port_type Virtual 84520 remote_ip 5.5.5.168 84527 username asadi 84527 unique_id port 84527 terminate_cause User-Request 84527 bytes_out 191477 84527 bytes_in 2734225 84527 station_ip 37.129.40.133 84527 port 15728796 84527 nas_port_type Virtual 84527 remote_ip 5.5.5.165 84528 username zamanialireza 84528 unique_id port 84528 terminate_cause User-Request 84528 bytes_out 0 84528 bytes_in 0 84528 station_ip 37.137.2.111 84528 port 15728798 84528 nas_port_type Virtual 84528 remote_ip 5.5.5.164 84530 username aminvpn 84530 mac 84530 bytes_out 0 84530 bytes_in 0 84530 station_ip 5.119.64.56 84530 port 19 84530 unique_id port 84530 remote_ip 10.8.0.6 84531 username aminvpn 84531 mac 84531 bytes_out 0 84531 bytes_in 0 84531 station_ip 5.119.64.56 84531 port 19 84531 unique_id port 84531 remote_ip 10.8.0.6 84532 username aminvpn 84532 mac 84532 bytes_out 0 84532 bytes_in 0 84532 station_ip 5.119.64.56 84532 port 19 84532 unique_id port 84532 remote_ip 10.8.0.6 84499 username aminvpn 84499 mac 84499 bytes_out 0 84499 bytes_in 0 84499 station_ip 5.119.64.56 84499 port 20 84499 unique_id port 84499 remote_ip 10.8.0.6 84500 username ahmadi 84500 unique_id port 84500 terminate_cause User-Request 84500 bytes_out 75835 84500 bytes_in 1183492 84500 station_ip 83.123.16.39 84500 port 15728771 84500 nas_port_type Virtual 84500 remote_ip 5.5.5.177 84503 username aminvpn 84503 mac 84503 bytes_out 0 84503 bytes_in 0 84503 station_ip 5.119.64.56 84503 port 20 84503 unique_id port 84503 remote_ip 10.8.0.6 84516 username aminvpn 84516 mac 84516 bytes_out 0 84516 bytes_in 0 84516 station_ip 5.119.64.56 84516 port 19 84516 unique_id port 84516 remote_ip 10.8.0.6 84518 username mahdixz 84518 unique_id port 84518 terminate_cause User-Request 84518 bytes_out 3318993 84518 bytes_in 23040503 84518 station_ip 151.235.118.203 84518 port 15728764 84518 nas_port_type Virtual 84518 remote_ip 5.5.5.187 84526 username forozande 84526 unique_id port 84526 terminate_cause User-Request 84526 bytes_out 25801 84526 bytes_in 220259 84526 station_ip 83.122.191.233 84526 port 15728797 84526 nas_port_type Virtual 84526 remote_ip 5.5.5.166 84529 username mahdixz 84529 unique_id port 84529 terminate_cause Lost-Carrier 84529 bytes_out 760405 84529 bytes_in 32561591 84529 station_ip 151.235.118.203 84529 port 15728789 84529 nas_port_type Virtual 84529 remote_ip 5.5.5.187 84538 username aminvpn 84538 mac 84538 bytes_out 0 84538 bytes_in 0 84538 station_ip 5.119.64.56 84538 port 19 84538 unique_id port 84538 remote_ip 10.8.0.6 84539 username aminvpn 84539 mac 84539 bytes_out 0 84539 bytes_in 0 84539 station_ip 5.119.64.56 84539 port 19 84539 unique_id port 84539 remote_ip 10.8.0.6 84548 username aminvpn 84548 mac 84548 bytes_out 0 84548 bytes_in 0 84548 station_ip 5.119.64.56 84548 port 19 84548 unique_id port 84548 remote_ip 10.8.0.6 84549 username aminvpn 84549 mac 84549 bytes_out 0 84549 bytes_in 0 84549 station_ip 5.119.64.56 84549 port 19 84549 unique_id port 84549 remote_ip 10.8.0.6 84550 username aminvpn 84550 mac 84550 bytes_out 0 84550 bytes_in 0 84550 station_ip 5.119.64.56 84550 port 19 84550 unique_id port 84550 remote_ip 10.8.0.6 84553 username asadi 84553 unique_id port 84553 terminate_cause User-Request 84553 bytes_out 16695 84553 bytes_in 66801 84553 station_ip 37.129.40.133 84553 port 15728808 84553 nas_port_type Virtual 84553 remote_ip 5.5.5.165 84561 username ahmadi 84561 unique_id port 84561 terminate_cause User-Request 84561 bytes_out 30988 84561 bytes_in 152500 84561 station_ip 83.123.16.39 84561 port 15728813 84561 nas_port_type Virtual 84561 remote_ip 5.5.5.177 84564 username madadi 84564 unique_id port 84564 terminate_cause Lost-Carrier 84564 bytes_out 12207 84564 bytes_in 131402 84564 station_ip 5.119.7.35 84564 port 15728812 84564 nas_port_type Virtual 84564 remote_ip 5.5.5.156 84567 username aminvpn 84567 unique_id port 84567 terminate_cause User-Request 84567 bytes_out 252449 84567 bytes_in 830339 84567 station_ip 37.129.213.185 84567 port 15728818 84567 nas_port_type Virtual 84567 remote_ip 5.5.5.153 84590 username aminvpn 84590 mac 84590 bytes_out 0 84590 bytes_in 0 84590 station_ip 5.119.64.56 84590 port 20 84590 unique_id port 84590 remote_ip 10.8.0.6 84599 username aminvpn 84599 mac 84599 bytes_out 0 84599 bytes_in 0 84599 station_ip 5.119.64.56 84599 port 20 84599 unique_id port 84523 terminate_cause User-Request 84523 bytes_out 103703 84523 bytes_in 1105856 84523 station_ip 83.122.191.233 84523 port 15728792 84523 nas_port_type Virtual 84523 remote_ip 5.5.5.166 84540 username hamideh 84540 unique_id port 84540 terminate_cause Lost-Carrier 84540 bytes_out 77834 84540 bytes_in 329938 84540 station_ip 5.120.97.237 84540 port 15728799 84540 nas_port_type Virtual 84540 remote_ip 5.5.5.163 84542 username aminvpn 84542 mac 84542 bytes_out 0 84542 bytes_in 0 84542 station_ip 5.119.64.56 84542 port 19 84542 unique_id port 84542 remote_ip 10.8.0.6 84543 username soleymani 84543 unique_id port 84543 terminate_cause Lost-Carrier 84543 bytes_out 73426 84543 bytes_in 255468 84543 station_ip 5.114.26.31 84543 port 15728801 84543 nas_port_type Virtual 84543 remote_ip 5.5.5.162 84546 username mahbobeh 84546 unique_id port 84546 terminate_cause Lost-Carrier 84546 bytes_out 325951 84546 bytes_in 4637307 84546 station_ip 83.122.240.25 84546 port 15728781 84546 nas_port_type Virtual 84546 remote_ip 5.5.5.169 84554 username aminvpn 84554 mac 84554 bytes_out 0 84554 bytes_in 0 84554 station_ip 5.119.64.56 84554 port 19 84554 unique_id port 84554 remote_ip 10.8.0.6 84555 username aminvpn 84555 mac 84555 bytes_out 0 84555 bytes_in 0 84555 station_ip 5.119.64.56 84555 port 19 84555 unique_id port 84555 remote_ip 10.8.0.6 84560 username hamideh 84560 unique_id port 84560 terminate_cause Lost-Carrier 84560 bytes_out 67586 84560 bytes_in 267577 84560 station_ip 5.120.97.237 84560 port 15728811 84560 nas_port_type Virtual 84560 remote_ip 5.5.5.163 84566 username hamideh 84566 kill_reason Relative expiration date has reached 84566 bytes_out 60724 84566 nas_port_type Virtual 84566 station_ip 5.120.97.237 84566 port 15728815 84566 terminate_cause Lost-Carrier 84566 bytes_in 166327 84566 unique_id port 84566 remote_ip 5.5.5.163 84568 username aminvpn 84568 mac 84568 bytes_out 0 84568 bytes_in 0 84568 station_ip 5.119.64.56 84568 port 19 84568 unique_id port 84568 remote_ip 10.8.0.6 84569 username aminvpn 84569 unique_id port 84569 terminate_cause User-Request 84569 bytes_out 81092 84569 bytes_in 179259 84569 station_ip 37.129.213.185 84569 port 15728819 84569 nas_port_type Virtual 84569 remote_ip 5.5.5.153 84570 username asadi 84570 unique_id port 84570 terminate_cause User-Request 84570 bytes_out 46976 84570 bytes_in 133880 84570 station_ip 37.129.40.133 84570 port 15728820 84570 nas_port_type Virtual 84570 remote_ip 5.5.5.165 84573 username forozande 84573 unique_id port 84573 terminate_cause User-Request 84573 bytes_out 69621 84573 bytes_in 953939 84573 station_ip 37.129.177.209 84573 port 15728823 84573 nas_port_type Virtual 84573 remote_ip 5.5.5.152 84580 username forozande 84580 unique_id port 84580 terminate_cause User-Request 84580 bytes_out 21263 84580 bytes_in 31487 84580 station_ip 37.129.177.209 84580 port 15728827 84580 nas_port_type Virtual 84580 remote_ip 5.5.5.152 84586 username aminvpn 84586 unique_id port 84586 terminate_cause User-Request 84586 bytes_out 178093 84586 bytes_in 584100 84586 station_ip 37.129.213.185 84586 port 15728831 84586 nas_port_type Virtual 84586 remote_ip 5.5.5.153 84589 username forozande 84589 unique_id port 84589 terminate_cause User-Request 84589 bytes_out 0 84589 bytes_in 0 84589 station_ip 83.122.130.168 84589 port 15728833 84589 nas_port_type Virtual 84589 remote_ip 5.5.5.151 84592 username aminvpn 84592 mac 84592 bytes_out 0 84592 bytes_in 0 84592 station_ip 5.119.122.168 84592 port 19 84592 unique_id port 84592 remote_ip 10.8.0.6 84524 bytes_out 40100 84524 bytes_in 396728 84524 station_ip 5.202.64.24 84524 port 15728793 84524 nas_port_type Virtual 84524 remote_ip 5.5.5.194 84525 username mahdixz 84525 unique_id port 84525 terminate_cause User-Request 84525 bytes_out 806098 84525 bytes_in 22872829 84525 station_ip 83.122.46.242 84525 port 15728794 84525 nas_port_type Virtual 84525 remote_ip 5.5.5.167 84533 username zamanialireza 84533 unique_id port 84533 terminate_cause Lost-Carrier 84533 bytes_out 134515 84533 bytes_in 3249866 84533 station_ip 37.137.2.111 84533 port 15728795 84533 nas_port_type Virtual 84533 remote_ip 5.5.5.173 84534 username caferibar 84534 unique_id port 84534 terminate_cause Lost-Carrier 84534 bytes_out 2858166 84534 bytes_in 52571456 84534 station_ip 5.200.107.84 84534 port 15728768 84534 nas_port_type Virtual 84534 remote_ip 5.5.5.179 84537 username sadegh 84537 unique_id port 84537 terminate_cause User-Request 84537 bytes_out 0 84537 bytes_in 0 84537 station_ip 94.183.213.166 84537 port 15728802 84537 nas_port_type Virtual 84537 remote_ip 5.5.5.161 84547 username asadi 84547 unique_id port 84547 terminate_cause User-Request 84547 bytes_out 33465 84547 bytes_in 114454 84547 station_ip 37.129.40.133 84547 port 15728806 84547 nas_port_type Virtual 84547 remote_ip 5.5.5.165 84551 username farhad 84551 unique_id port 84551 terminate_cause Lost-Carrier 84551 bytes_out 15581683 84551 bytes_in 252206519 84551 station_ip 5.120.159.206 84551 port 15728773 84551 nas_port_type Virtual 84551 remote_ip 5.5.5.176 84556 username aminvpn 84556 mac 84556 bytes_out 0 84556 bytes_in 0 84556 station_ip 5.119.64.56 84556 port 19 84556 unique_id port 84556 remote_ip 10.8.0.6 84558 username aminvpn 84558 mac 84558 bytes_out 0 84558 bytes_in 0 84558 station_ip 5.119.64.56 84558 port 19 84558 unique_id port 84558 remote_ip 10.8.0.6 84559 username aminvpn 84559 mac 84559 bytes_out 0 84559 bytes_in 0 84559 station_ip 5.119.64.56 84559 port 19 84559 unique_id port 84559 remote_ip 10.8.0.6 84562 username aminvpn 84562 mac 84562 bytes_out 0 84562 bytes_in 0 84562 station_ip 5.119.64.56 84562 port 34 84562 unique_id port 84562 remote_ip 10.8.1.10 84563 username aminvpn 84563 mac 84563 bytes_out 0 84563 bytes_in 0 84563 station_ip 5.119.64.56 84563 port 34 84563 unique_id port 84563 remote_ip 10.8.1.10 84571 username aminvpn 84571 unique_id port 84571 terminate_cause User-Request 84571 bytes_out 35344 84571 bytes_in 41768 84571 station_ip 37.129.213.185 84571 port 15728821 84571 nas_port_type Virtual 84571 remote_ip 5.5.5.153 84575 username aminvpn 84575 mac 84575 bytes_out 0 84575 bytes_in 0 84575 station_ip 5.119.64.56 84575 port 19 84575 unique_id port 84575 remote_ip 10.8.0.6 84578 username forozande 84578 unique_id port 84578 terminate_cause User-Request 84578 bytes_out 20383 84578 bytes_in 30112 84578 station_ip 37.129.177.209 84578 port 15728826 84578 nas_port_type Virtual 84578 remote_ip 5.5.5.152 84581 username forozande 84581 unique_id port 84581 terminate_cause User-Request 84581 bytes_out 17298 84581 bytes_in 22291 84581 station_ip 37.129.177.209 84581 port 15728828 84581 nas_port_type Virtual 84581 remote_ip 5.5.5.152 84583 username zamanialireza 84583 unique_id port 84583 terminate_cause User-Request 84583 bytes_out 14985500 84583 bytes_in 418709885 84583 station_ip 94.183.213.166 84583 port 15728817 84583 nas_port_type Virtual 84583 remote_ip 5.5.5.154 84584 username aminvpn 84584 unique_id port 84584 terminate_cause User-Request 84584 bytes_out 109414 84535 username shahrooz 84535 unique_id port 84535 terminate_cause Lost-Carrier 84535 bytes_out 2440265 84535 bytes_in 47249926 84535 station_ip 83.122.213.186 84535 port 15728774 84535 nas_port_type Virtual 84535 remote_ip 5.5.5.175 84536 username heydari 84536 unique_id port 84536 terminate_cause Lost-Carrier 84536 bytes_out 323297 84536 bytes_in 2087660 84536 station_ip 5.119.237.169 84536 port 15728763 84536 nas_port_type Virtual 84536 remote_ip 5.5.5.210 84541 username aminvpn 84541 mac 84541 bytes_out 0 84541 bytes_in 0 84541 station_ip 37.129.79.255 84541 port 34 84541 unique_id port 84541 remote_ip 10.8.1.10 84544 username asadi 84544 unique_id port 84544 terminate_cause User-Request 84544 bytes_out 30307 84544 bytes_in 86417 84544 station_ip 37.129.40.133 84544 port 15728804 84544 nas_port_type Virtual 84544 remote_ip 5.5.5.165 84545 username madadi 84545 unique_id port 84545 terminate_cause Lost-Carrier 84545 bytes_out 15186 84545 bytes_in 131789 84545 station_ip 5.119.17.47 84545 port 15728803 84545 nas_port_type Virtual 84545 remote_ip 5.5.5.160 84552 username madadi 84552 unique_id port 84552 terminate_cause Lost-Carrier 84552 bytes_out 53259 84552 bytes_in 143945 84552 station_ip 5.120.63.133 84552 port 15728805 84552 nas_port_type Virtual 84552 remote_ip 5.5.5.159 84557 username sobhan 84557 unique_id port 84557 terminate_cause Lost-Carrier 84557 bytes_out 2621107 84557 bytes_in 36005085 84557 station_ip 5.120.73.153 84557 port 15728770 84557 nas_port_type Virtual 84557 remote_ip 5.5.5.178 84565 username mahdixz 84565 unique_id port 84565 terminate_cause Lost-Carrier 84565 bytes_out 528766 84565 bytes_in 12832416 84565 station_ip 151.235.118.203 84565 port 15728814 84565 nas_port_type Virtual 84565 remote_ip 5.5.5.187 84572 username asadi 84572 unique_id port 84572 terminate_cause User-Request 84572 bytes_out 530579 84572 bytes_in 18609160 84572 station_ip 37.129.40.133 84572 port 15728822 84572 nas_port_type Virtual 84572 remote_ip 5.5.5.165 84574 username forozande 84574 unique_id port 84574 terminate_cause User-Request 84574 bytes_out 15993 84574 bytes_in 23386 84574 station_ip 37.129.177.209 84574 port 15728824 84574 nas_port_type Virtual 84574 remote_ip 5.5.5.152 84576 username aminvpn 84576 mac 84576 bytes_out 0 84576 bytes_in 0 84576 station_ip 5.119.64.56 84576 port 19 84576 unique_id port 84576 remote_ip 10.8.0.6 84577 username aminvpn 84577 unique_id port 84577 terminate_cause User-Request 84577 bytes_out 309490 84577 bytes_in 1142532 84577 station_ip 37.129.213.185 84577 port 15728825 84577 nas_port_type Virtual 84577 remote_ip 5.5.5.153 84579 username madadi 84579 unique_id port 84579 terminate_cause User-Request 84579 bytes_out 51670 84579 bytes_in 227659 84579 station_ip 5.119.99.149 84579 port 15728816 84579 nas_port_type Virtual 84579 remote_ip 5.5.5.155 84582 username mahbobeh 84582 unique_id port 84582 terminate_cause Lost-Carrier 84582 bytes_out 49753 84582 bytes_in 961581 84582 station_ip 83.122.240.25 84582 port 15728809 84582 nas_port_type Virtual 84582 remote_ip 5.5.5.169 84585 username forozande 84585 unique_id port 84585 terminate_cause User-Request 84585 bytes_out 71028 84585 bytes_in 886477 84585 station_ip 37.129.177.209 84585 port 15728830 84585 nas_port_type Virtual 84585 remote_ip 5.5.5.152 84588 username aminvpn 84588 mac 84588 bytes_out 443980 84588 bytes_in 1827537 84588 station_ip 5.119.122.168 84588 port 19 84588 unique_id port 84588 remote_ip 10.8.0.6 84595 username forozande 84595 unique_id port 84595 terminate_cause User-Request 84595 bytes_out 2538 84584 bytes_in 1746920 84584 station_ip 37.129.213.185 84584 port 15728829 84584 nas_port_type Virtual 84584 remote_ip 5.5.5.153 84587 username caferibar 84587 unique_id port 84587 terminate_cause User-Request 84587 bytes_out 0 84587 bytes_in 0 84587 station_ip 94.183.213.166 84587 port 15728832 84587 nas_port_type Virtual 84587 remote_ip 5.5.5.181 84591 username caferibar 84591 unique_id port 84591 terminate_cause User-Request 84591 bytes_out 0 84591 bytes_in 0 84591 station_ip 94.24.83.221 84591 port 15728836 84591 nas_port_type Virtual 84591 remote_ip 5.5.5.150 84593 username aminvpn 84593 mac 84593 bytes_out 0 84593 bytes_in 0 84593 station_ip 5.119.64.56 84593 port 20 84593 unique_id port 84593 remote_ip 10.8.0.6 84598 username aminvpn 84598 mac 84598 bytes_out 34558 84598 bytes_in 32590 84598 station_ip 5.119.122.168 84598 port 19 84598 unique_id port 84598 remote_ip 10.8.0.6 84604 username ahmadi 84604 unique_id port 84604 terminate_cause User-Request 84604 bytes_out 42746 84604 bytes_in 647068 84604 station_ip 83.123.69.51 84604 port 15728848 84604 nas_port_type Virtual 84604 remote_ip 5.5.5.146 84605 username caferibar 84605 unique_id port 84605 terminate_cause User-Request 84605 bytes_out 934406 84605 bytes_in 14192662 84605 station_ip 83.122.109.47 84605 port 15728844 84605 nas_port_type Virtual 84605 remote_ip 5.5.5.147 84611 username madadi 84611 unique_id port 84611 terminate_cause Lost-Carrier 84611 bytes_out 300664 84611 bytes_in 143244 84611 station_ip 5.120.27.114 84611 port 15728853 84611 nas_port_type Virtual 84611 remote_ip 5.5.5.145 84613 username aminvpn 84613 unique_id port 84613 terminate_cause User-Request 84613 bytes_out 28074 84613 bytes_in 39580 84613 station_ip 37.129.213.185 84613 port 15728865 84613 nas_port_type Virtual 84613 remote_ip 5.5.5.153 84624 username zamanialireza 84624 unique_id port 84624 terminate_cause User-Request 84624 bytes_out 1920630 84624 bytes_in 30211470 84624 station_ip 94.183.213.166 84624 port 15728857 84624 nas_port_type Virtual 84624 remote_ip 5.5.5.141 84626 username aminvpn 84626 mac 84626 bytes_out 0 84626 bytes_in 0 84626 station_ip 5.119.64.56 84626 port 34 84626 unique_id port 84626 remote_ip 10.8.1.10 84629 username ahmadi 84629 unique_id port 84629 terminate_cause User-Request 84629 bytes_out 0 84629 bytes_in 0 84629 station_ip 83.123.69.51 84629 port 15728870 84629 nas_port_type Virtual 84629 remote_ip 5.5.5.146 84632 username aminvpn 84632 mac 84632 bytes_out 0 84632 bytes_in 0 84632 station_ip 5.119.64.56 84632 port 20 84632 unique_id port 84632 remote_ip 10.8.0.6 84648 username heydari 84648 unique_id port 84648 terminate_cause Lost-Carrier 84648 bytes_out 606530 84648 bytes_in 10277844 84648 station_ip 5.119.237.169 84648 port 15728840 84648 nas_port_type Virtual 84648 remote_ip 5.5.5.210 84651 username aminvpn 84651 mac 84651 bytes_out 0 84651 bytes_in 0 84651 station_ip 5.119.64.56 84651 port 19 84651 unique_id port 84651 remote_ip 10.8.0.6 84652 username aminvpn 84652 mac 84652 bytes_out 0 84652 bytes_in 0 84652 station_ip 5.119.64.56 84652 port 19 84652 unique_id port 84652 remote_ip 10.8.0.6 84653 username aminvpn 84653 mac 84653 bytes_out 0 84653 bytes_in 0 84653 station_ip 5.119.64.56 84653 port 19 84653 unique_id port 84653 remote_ip 10.8.0.6 84655 username aminvpn 84655 mac 84655 bytes_out 0 84655 bytes_in 0 84655 station_ip 5.119.64.56 84655 port 19 84655 unique_id port 84655 remote_ip 10.8.0.6 84594 username forozande 84594 unique_id port 84594 terminate_cause User-Request 84594 bytes_out 26191 84594 bytes_in 37464 84594 station_ip 83.122.130.168 84594 port 15728835 84594 nas_port_type Virtual 84594 remote_ip 5.5.5.151 84596 username asadi 84596 unique_id port 84596 terminate_cause User-Request 84596 bytes_out 30905 84596 bytes_in 147136 84596 station_ip 37.129.40.133 84596 port 15728839 84596 nas_port_type Virtual 84596 remote_ip 5.5.5.165 84602 username aminvpn 84602 mac 84602 bytes_out 0 84602 bytes_in 0 84602 station_ip 5.119.64.56 84602 port 19 84602 unique_id port 84602 remote_ip 10.8.0.6 84607 username ahmadipour 84607 unique_id port 84607 terminate_cause Lost-Carrier 84607 bytes_out 2328090 84607 bytes_in 46109967 84607 station_ip 37.129.98.242 84607 port 15728854 84607 nas_port_type Virtual 84607 remote_ip 5.5.5.144 84609 username forozande 84609 unique_id port 84609 terminate_cause User-Request 84609 bytes_out 32728 84609 bytes_in 458543 84609 station_ip 37.129.117.146 84609 port 15728859 84609 nas_port_type Virtual 84609 remote_ip 5.5.5.140 84610 username aminvpn 84610 unique_id port 84610 terminate_cause User-Request 84610 bytes_out 52196 84610 bytes_in 155432 84610 station_ip 37.129.213.185 84610 port 15728861 84610 nas_port_type Virtual 84610 remote_ip 5.5.5.153 84615 username soleymani 84615 unique_id port 84615 terminate_cause Lost-Carrier 84615 bytes_out 50936 84615 bytes_in 271494 84615 station_ip 5.114.143.164 84615 port 15728855 84615 nas_port_type Virtual 84615 remote_ip 5.5.5.143 84617 username caferibar 84617 unique_id port 84617 terminate_cause Lost-Carrier 84617 bytes_out 68627 84617 bytes_in 254333 84617 station_ip 5.72.229.253 84617 port 15728856 84617 nas_port_type Virtual 84617 remote_ip 5.5.5.142 84620 username hamideh 84620 kill_reason Relative expiration date has reached 84620 unique_id port 84620 bytes_out 0 84620 bytes_in 0 84620 station_ip 5.120.97.237 84620 port 15728866 84620 nas_port_type Virtual 84622 username aminvpn 84622 mac 84622 bytes_out 0 84622 bytes_in 0 84622 station_ip 5.119.64.56 84622 port 34 84622 unique_id port 84622 remote_ip 10.8.1.10 84625 username aminvpn 84625 unique_id port 84625 terminate_cause User-Request 84625 bytes_out 113458 84625 bytes_in 314249 84625 station_ip 37.129.213.185 84625 port 15728868 84625 nas_port_type Virtual 84625 remote_ip 5.5.5.153 84627 username aminvpn 84627 mac 84627 bytes_out 0 84627 bytes_in 0 84627 station_ip 5.119.64.56 84627 port 34 84627 unique_id port 84627 remote_ip 10.8.1.10 84637 username arabpour 84637 unique_id port 84637 terminate_cause User-Request 84637 bytes_out 370286 84637 bytes_in 10662055 84637 station_ip 83.123.25.188 84637 port 15728876 84637 nas_port_type Virtual 84637 remote_ip 5.5.5.130 84638 username madadi 84638 unique_id port 84638 terminate_cause Lost-Carrier 84638 bytes_out 29912 84638 bytes_in 140324 84638 station_ip 5.119.243.186 84638 port 15728874 84638 nas_port_type Virtual 84638 remote_ip 5.5.5.132 84640 username asadi 84640 unique_id port 84640 terminate_cause User-Request 84640 bytes_out 91609 84640 bytes_in 1863817 84640 station_ip 37.129.40.133 84640 port 15728880 84640 nas_port_type Virtual 84640 remote_ip 5.5.5.165 84641 username aminvpn 84641 mac 84641 bytes_out 0 84641 bytes_in 0 84641 station_ip 5.119.64.56 84641 port 19 84641 unique_id port 84641 remote_ip 10.8.0.6 84642 username aminvpn 84642 mac 84642 bytes_out 0 84642 bytes_in 0 84642 station_ip 5.119.64.56 84642 port 19 84642 unique_id port 84642 remote_ip 10.8.0.6 84595 bytes_in 18555 84595 station_ip 83.122.130.168 84595 port 15728838 84595 nas_port_type Virtual 84595 remote_ip 5.5.5.151 84597 username madadi 84597 unique_id port 84597 terminate_cause Lost-Carrier 84597 bytes_out 17207 84597 bytes_in 130750 84597 station_ip 5.119.99.149 84597 port 15728834 84597 nas_port_type Virtual 84597 remote_ip 5.5.5.155 84600 username caferibar 84600 unique_id port 84600 terminate_cause Lost-Carrier 84600 bytes_out 127614 84600 bytes_in 689603 84600 station_ip 94.24.83.221 84600 port 15728837 84600 nas_port_type Virtual 84600 remote_ip 5.5.5.150 84601 username forozande 84601 unique_id port 84601 terminate_cause User-Request 84601 bytes_out 15017 84601 bytes_in 43577 84601 station_ip 37.129.215.110 84601 port 15728841 84601 nas_port_type Virtual 84601 remote_ip 5.5.5.149 84603 username caferibar 84603 unique_id port 84603 terminate_cause User-Request 84603 bytes_out 0 84603 bytes_in 0 84603 station_ip 83.123.151.41 84603 port 15728843 84603 nas_port_type Virtual 84603 remote_ip 5.5.5.148 84608 username aminvpn 84608 unique_id port 84608 terminate_cause User-Request 84608 bytes_out 54426 84608 bytes_in 322190 84608 station_ip 37.129.213.185 84608 port 15728858 84608 nas_port_type Virtual 84608 remote_ip 5.5.5.153 84612 username aminvpn 84612 unique_id port 84612 terminate_cause User-Request 84612 bytes_out 77636 84612 bytes_in 131440 84612 station_ip 37.129.213.185 84612 port 15728863 84612 nas_port_type Virtual 84612 remote_ip 5.5.5.153 84614 username aminvpn 84614 mac 84614 bytes_out 0 84614 bytes_in 0 84614 station_ip 5.119.64.56 84614 port 34 84614 unique_id port 84614 remote_ip 10.8.1.10 84616 username aminvpn 84616 mac 84616 bytes_out 0 84616 bytes_in 0 84616 station_ip 5.119.64.56 84616 port 34 84616 unique_id port 84616 remote_ip 10.8.1.10 84618 username madadi 84618 unique_id port 84618 terminate_cause Lost-Carrier 84618 bytes_out 10930 84618 bytes_in 165488 84618 station_ip 5.120.189.243 84618 port 15728860 84618 nas_port_type Virtual 84618 remote_ip 5.5.5.139 84619 username caferibar 84619 unique_id port 84619 terminate_cause Lost-Carrier 84619 bytes_out 101357 84619 bytes_in 492630 84619 station_ip 37.156.63.192 84619 port 15728862 84619 nas_port_type Virtual 84619 remote_ip 5.5.5.138 84621 username madadi 84621 unique_id port 84621 terminate_cause Lost-Carrier 84621 bytes_out 79816 84621 bytes_in 167747 84621 station_ip 5.119.42.95 84621 port 15728864 84621 nas_port_type Virtual 84621 remote_ip 5.5.5.137 84623 username aminvpn 84623 mac 84623 bytes_out 0 84623 bytes_in 0 84623 station_ip 5.119.64.56 84623 port 34 84623 unique_id port 84623 remote_ip 10.8.1.10 84628 username madadi 84628 unique_id port 84628 terminate_cause Lost-Carrier 84628 bytes_out 132998 84628 bytes_in 545880 84628 station_ip 5.119.221.182 84628 port 15728867 84628 nas_port_type Virtual 84628 remote_ip 5.5.5.136 84630 username aminvpn 84630 mac 84630 bytes_out 0 84630 bytes_in 0 84630 station_ip 5.119.64.56 84630 port 34 84630 unique_id port 84630 remote_ip 10.8.1.10 84631 username aminvpn 84631 mac 84631 bytes_out 0 84631 bytes_in 0 84631 station_ip 5.119.122.168 84631 port 19 84631 unique_id port 84631 remote_ip 10.8.0.6 84633 username sadegh 84633 kill_reason Maximum check online fails reached 84633 unique_id port 84633 bytes_out 1229388 84633 bytes_in 15804963 84633 station_ip 5.120.160.245 84633 port 15728872 84633 nas_port_type Virtual 84633 remote_ip 5.5.5.134 84634 username aminvpn 84634 unique_id port 84634 terminate_cause User-Request 84599 remote_ip 10.8.0.6 84606 username sobhan 84606 unique_id port 84606 terminate_cause Lost-Carrier 84606 bytes_out 10345303 84606 bytes_in 212784970 84606 station_ip 151.238.253.229 84606 port 15728810 84606 nas_port_type Virtual 84606 remote_ip 5.5.5.157 84635 username forozande 84635 unique_id port 84635 terminate_cause User-Request 84635 bytes_out 74041 84635 bytes_in 604440 84635 station_ip 37.129.116.225 84635 port 15728875 84635 nas_port_type Virtual 84635 remote_ip 5.5.5.131 84639 username aminvpn 84639 mac 84639 bytes_out 0 84639 bytes_in 0 84639 station_ip 5.119.64.56 84639 port 19 84639 unique_id port 84639 remote_ip 10.8.0.6 84644 username madadi 84644 unique_id port 84644 terminate_cause Lost-Carrier 84644 bytes_out 10093 84644 bytes_in 121662 84644 station_ip 5.119.127.9 84644 port 15728881 84644 nas_port_type Virtual 84644 remote_ip 5.5.5.127 84647 username aminvpn 84647 mac 84647 bytes_out 0 84647 bytes_in 0 84647 station_ip 5.119.64.56 84647 port 19 84647 unique_id port 84647 remote_ip 10.8.0.6 84649 username aminvpn 84649 mac 84649 bytes_out 622180 84649 bytes_in 4870711 84649 station_ip 83.123.148.1 84649 port 34 84649 unique_id port 84649 remote_ip 10.8.1.10 84654 username aminvpn 84654 mac 84654 bytes_out 0 84654 bytes_in 0 84654 station_ip 5.119.64.56 84654 port 19 84654 unique_id port 84654 remote_ip 10.8.0.6 84658 username amirreza 84658 kill_reason Wrong password 84658 unique_id port 84658 bytes_out 0 84658 bytes_in 0 84658 station_ip 5.120.161.64 84658 port 15728888 84658 nas_port_type Virtual 84660 username amirreza 84660 kill_reason Wrong password 84660 unique_id port 84660 bytes_out 0 84660 bytes_in 0 84660 station_ip 5.120.161.64 84660 port 15728890 84660 nas_port_type Virtual 84661 username zamanialireza 84661 unique_id port 84661 terminate_cause User-Request 84661 bytes_out 18590082 84661 bytes_in 935302821 84661 station_ip 94.183.213.166 84661 port 15728883 84661 nas_port_type Virtual 84661 remote_ip 5.5.5.141 84663 username heydari 84663 unique_id port 84663 terminate_cause Lost-Carrier 84663 bytes_out 15442 84663 bytes_in 269974 84663 station_ip 5.119.237.169 84663 port 15728884 84663 nas_port_type Virtual 84663 remote_ip 5.5.5.210 84667 username aminvpn 84667 mac 84667 bytes_out 0 84667 bytes_in 0 84667 station_ip 5.119.64.56 84667 port 19 84667 unique_id port 84667 remote_ip 10.8.0.6 84669 username amirreza 84669 kill_reason Wrong password 84669 unique_id port 84669 bytes_out 0 84669 bytes_in 0 84669 station_ip 5.120.161.64 84669 port 15728895 84669 nas_port_type Virtual 84672 username farhad 84672 unique_id port 84672 terminate_cause User-Request 84672 bytes_out 2354462 84672 bytes_in 58832308 84672 station_ip 5.119.142.133 84672 port 15728894 84672 nas_port_type Virtual 84672 remote_ip 5.5.5.120 84673 username aminvpn 84673 mac 84673 bytes_out 0 84673 bytes_in 0 84673 station_ip 5.119.64.56 84673 port 19 84673 unique_id port 84673 remote_ip 10.8.0.6 84676 username aminvpn 84676 mac 84676 bytes_out 0 84676 bytes_in 0 84676 station_ip 5.119.122.168 84676 port 35 84676 unique_id port 84676 remote_ip 10.8.1.10 84678 username aminvpn 84678 mac 84678 bytes_out 0 84678 bytes_in 0 84678 station_ip 83.123.239.69 84678 port 34 84678 unique_id port 84678 remote_ip 10.8.1.10 84690 username aminvpn 84690 mac 84690 bytes_out 0 84690 bytes_in 0 84690 station_ip 83.123.239.69 84690 port 34 84690 unique_id port 84690 remote_ip 10.8.1.10 84634 bytes_out 1360926 84634 bytes_in 15870520 84634 station_ip 2.183.253.14 84634 port 15728873 84634 nas_port_type Virtual 84634 remote_ip 5.5.5.133 84636 username aminvpn 84636 mac 84636 bytes_out 0 84636 bytes_in 0 84636 station_ip 5.119.122.168 84636 port 19 84636 unique_id port 84636 remote_ip 10.8.0.6 84645 username caferibar 84645 unique_id port 84645 terminate_cause Lost-Carrier 84645 bytes_out 224398 84645 bytes_in 930826 84645 station_ip 37.153.180.235 84645 port 15728882 84645 nas_port_type Virtual 84645 remote_ip 5.5.5.126 84656 username aminvpn 84656 mac 84656 bytes_out 0 84656 bytes_in 0 84656 station_ip 5.119.64.56 84656 port 19 84656 unique_id port 84656 remote_ip 10.8.0.6 84666 username farhad 84666 unique_id port 84666 terminate_cause User-Request 84666 bytes_out 2880893 84666 bytes_in 65771565 84666 station_ip 5.119.210.88 84666 port 15728891 84666 nas_port_type Virtual 84666 remote_ip 5.5.5.123 84674 username madadi 84674 unique_id port 84674 terminate_cause Lost-Carrier 84674 bytes_out 55901 84674 bytes_in 166619 84674 station_ip 5.119.214.88 84674 port 15728897 84674 nas_port_type Virtual 84674 remote_ip 5.5.5.119 84680 username aminvpn 84680 mac 84680 bytes_out 0 84680 bytes_in 0 84680 station_ip 83.123.239.69 84680 port 34 84680 unique_id port 84680 remote_ip 10.8.1.10 84682 username aminvpn 84682 mac 84682 bytes_out 0 84682 bytes_in 0 84682 station_ip 83.123.239.69 84682 port 34 84682 unique_id port 84682 remote_ip 10.8.1.10 84685 username aminvpn 84685 mac 84685 bytes_out 0 84685 bytes_in 0 84685 station_ip 5.119.122.168 84685 port 35 84685 unique_id port 84685 remote_ip 10.8.1.10 84687 username aminvpn 84687 mac 84687 bytes_out 0 84687 bytes_in 0 84687 station_ip 5.119.122.168 84687 port 35 84687 unique_id port 84687 remote_ip 10.8.1.10 84689 username aminvpn 84689 mac 84689 bytes_out 0 84689 bytes_in 0 84689 station_ip 5.119.122.168 84689 port 35 84689 unique_id port 84689 remote_ip 10.8.1.10 84691 username zamanialireza 84691 unique_id port 84691 terminate_cause User-Request 84691 bytes_out 16869461 84691 bytes_in 434531200 84691 station_ip 94.183.213.166 84691 port 15728887 84691 nas_port_type Virtual 84691 remote_ip 5.5.5.124 84696 username aminvpn 84696 mac 84696 bytes_out 0 84696 bytes_in 0 84696 station_ip 5.119.122.168 84696 port 35 84696 unique_id port 84696 remote_ip 10.8.1.10 84698 username aminvpn 84698 mac 84698 bytes_out 0 84698 bytes_in 0 84698 station_ip 5.119.122.168 84698 port 35 84698 unique_id port 84698 remote_ip 10.8.1.10 84700 username aminvpn 84700 mac 84700 bytes_out 0 84700 bytes_in 0 84700 station_ip 5.119.122.168 84700 port 35 84700 unique_id port 84700 remote_ip 10.8.1.10 84707 username aminvpn 84707 unique_id port 84707 terminate_cause User-Request 84707 bytes_out 250601 84707 bytes_in 4879282 84707 station_ip 37.129.213.185 84707 port 15728903 84707 nas_port_type Virtual 84707 remote_ip 5.5.5.153 84710 username aminvpn 84710 unique_id port 84710 terminate_cause User-Request 84710 bytes_out 87848 84710 bytes_in 904864 84710 station_ip 37.129.213.185 84710 port 15728906 84710 nas_port_type Virtual 84710 remote_ip 5.5.5.153 84713 username aminvpn 84713 mac 84713 bytes_out 0 84713 bytes_in 0 84713 station_ip 5.119.64.56 84713 port 34 84713 unique_id port 84713 remote_ip 10.8.1.10 84724 username aminvpn 84724 unique_id port 84724 terminate_cause User-Request 84643 username madadi 84643 unique_id port 84643 terminate_cause Lost-Carrier 84643 bytes_out 6534 84643 bytes_in 119205 84643 station_ip 5.120.3.143 84643 port 15728878 84643 nas_port_type Virtual 84643 remote_ip 5.5.5.129 84646 username sadegh 84646 unique_id port 84646 terminate_cause Lost-Carrier 84646 bytes_out 2962398 84646 bytes_in 51762110 84646 station_ip 5.119.72.22 84646 port 15728869 84646 nas_port_type Virtual 84646 remote_ip 5.5.5.135 84650 username zamanialireza 84650 unique_id port 84650 terminate_cause User-Request 84650 bytes_out 14353943 84650 bytes_in 350626796 84650 station_ip 94.183.213.166 84650 port 15728852 84650 nas_port_type Virtual 84650 remote_ip 5.5.5.154 84657 username aminvpn 84657 unique_id port 84657 terminate_cause User-Request 84657 bytes_out 109381 84657 bytes_in 712147 84657 station_ip 2.183.253.14 84657 port 15728885 84657 nas_port_type Virtual 84657 remote_ip 5.5.5.133 84659 username amirreza 84659 kill_reason Wrong password 84659 unique_id port 84659 bytes_out 0 84659 bytes_in 0 84659 station_ip 5.120.161.64 84659 port 15728889 84659 nas_port_type Virtual 84664 username amirabbas 84664 unique_id port 84664 terminate_cause User-Request 84664 bytes_out 83719637 84664 bytes_in 2694895085 84664 station_ip 31.59.47.42 84664 port 15728807 84664 nas_port_type Virtual 84664 remote_ip 5.5.5.158 84665 username alinezhad 84665 unique_id port 84665 terminate_cause User-Request 84665 bytes_out 0 84665 bytes_in 0 84665 station_ip 83.123.36.96 84665 port 15728892 84665 nas_port_type Virtual 84665 remote_ip 5.5.5.122 84668 username madadi 84668 unique_id port 84668 terminate_cause Lost-Carrier 84668 bytes_out 17753 84668 bytes_in 151914 84668 station_ip 5.119.13.41 84668 port 15728893 84668 nas_port_type Virtual 84668 remote_ip 5.5.5.121 84675 username aminvpn 84675 mac 84675 bytes_out 2880224 84675 bytes_in 5874508 84675 station_ip 83.123.239.69 84675 port 34 84675 unique_id port 84675 remote_ip 10.8.1.10 84677 username amin.insta13 84677 kill_reason Relative expiration date has reached 84677 mac 84677 bytes_out 0 84677 bytes_in 0 84677 station_ip 83.123.208.157 84677 port 19 84677 unique_id port 84693 username aminvpn 84693 mac 84693 bytes_out 0 84693 bytes_in 0 84693 station_ip 5.119.64.56 84693 port 34 84693 unique_id port 84693 remote_ip 10.8.1.10 84701 username aminvpn 84701 mac 84701 bytes_out 0 84701 bytes_in 0 84701 station_ip 5.119.122.168 84701 port 19 84701 unique_id port 84701 remote_ip 10.8.0.6 84704 username asadi 84704 unique_id port 84704 terminate_cause User-Request 84704 bytes_out 244479 84704 bytes_in 3572401 84704 station_ip 37.129.40.133 84704 port 15728901 84704 nas_port_type Virtual 84704 remote_ip 5.5.5.165 84705 username aminvpn 84705 mac 84705 bytes_out 0 84705 bytes_in 0 84705 station_ip 5.119.64.56 84705 port 34 84705 unique_id port 84705 remote_ip 10.8.1.10 84709 username asadi 84709 unique_id port 84709 terminate_cause User-Request 84709 bytes_out 145639 84709 bytes_in 5432711 84709 station_ip 37.129.40.133 84709 port 15728905 84709 nas_port_type Virtual 84709 remote_ip 5.5.5.165 84711 username aminvpn 84711 unique_id port 84711 terminate_cause User-Request 84711 bytes_out 32926 84711 bytes_in 36070 84711 station_ip 37.129.213.185 84711 port 15728907 84711 nas_port_type Virtual 84711 remote_ip 5.5.5.153 84717 username mahbobeh 84717 unique_id port 84717 terminate_cause Lost-Carrier 84717 bytes_out 1993792 84717 bytes_in 3688913 84717 station_ip 83.122.240.25 84717 port 15728896 84717 nas_port_type Virtual 84662 username aminvpn 84662 mac 84662 bytes_out 0 84662 bytes_in 0 84662 station_ip 5.119.64.56 84662 port 19 84662 unique_id port 84662 remote_ip 10.8.0.6 84670 username aminvpn 84670 mac 84670 bytes_out 0 84670 bytes_in 0 84670 station_ip 5.119.64.56 84670 port 19 84670 unique_id port 84670 remote_ip 10.8.0.6 84671 username aminvpn 84671 mac 84671 bytes_out 0 84671 bytes_in 0 84671 station_ip 5.119.64.56 84671 port 19 84671 unique_id port 84671 remote_ip 10.8.0.6 84679 username aminvpn 84679 mac 84679 bytes_out 0 84679 bytes_in 0 84679 station_ip 5.119.122.168 84679 port 35 84679 unique_id port 84679 remote_ip 10.8.1.10 84681 username aminvpn 84681 mac 84681 bytes_out 0 84681 bytes_in 0 84681 station_ip 5.119.122.168 84681 port 35 84681 unique_id port 84681 remote_ip 10.8.1.10 84683 username aminvpn 84683 mac 84683 bytes_out 0 84683 bytes_in 0 84683 station_ip 5.119.122.168 84683 port 35 84683 unique_id port 84683 remote_ip 10.8.1.10 84684 username aminvpn 84684 mac 84684 bytes_out 0 84684 bytes_in 0 84684 station_ip 83.123.239.69 84684 port 34 84684 unique_id port 84684 remote_ip 10.8.1.10 84686 username aminvpn 84686 mac 84686 bytes_out 0 84686 bytes_in 0 84686 station_ip 83.123.239.69 84686 port 34 84686 unique_id port 84686 remote_ip 10.8.1.10 84688 username aminvpn 84688 mac 84688 bytes_out 0 84688 bytes_in 0 84688 station_ip 83.123.239.69 84688 port 34 84688 unique_id port 84688 remote_ip 10.8.1.10 84695 username aminvpn 84695 mac 84695 bytes_out 0 84695 bytes_in 0 84695 station_ip 5.119.64.56 84695 port 34 84695 unique_id port 84695 remote_ip 10.8.1.10 84697 username aminvpn 84697 mac 84697 bytes_out 0 84697 bytes_in 0 84697 station_ip 5.119.64.56 84697 port 34 84697 unique_id port 84697 remote_ip 10.8.1.10 84702 username soleymani 84702 unique_id port 84702 terminate_cause Lost-Carrier 84702 bytes_out 481624 84702 bytes_in 4111593 84702 station_ip 5.123.227.60 84702 port 15728898 84702 nas_port_type Virtual 84702 remote_ip 5.5.5.118 84708 username aminvpn 84708 unique_id port 84708 terminate_cause User-Request 84708 bytes_out 38688 84708 bytes_in 51909 84708 station_ip 37.129.213.185 84708 port 15728904 84708 nas_port_type Virtual 84708 remote_ip 5.5.5.153 84714 username aminvpn 84714 kill_reason Maximum check online fails reached 84714 mac 84714 bytes_out 0 84714 bytes_in 0 84714 station_ip 5.119.64.56 84714 port 34 84714 unique_id port 84718 username forozande 84718 unique_id port 84718 terminate_cause User-Request 84718 bytes_out 286727 84718 bytes_in 1496738 84718 station_ip 37.129.167.31 84718 port 15728909 84718 nas_port_type Virtual 84718 remote_ip 5.5.5.115 84719 username aminvpn 84719 mac 84719 bytes_out 0 84719 bytes_in 0 84719 station_ip 5.119.64.56 84719 port 19 84719 unique_id port 84719 remote_ip 10.8.0.6 84720 username ahmadi 84720 unique_id port 84720 terminate_cause User-Request 84720 bytes_out 0 84720 bytes_in 0 84720 station_ip 83.123.69.51 84720 port 15728913 84720 nas_port_type Virtual 84720 remote_ip 5.5.5.146 84721 username aminvpn 84721 mac 84721 bytes_out 0 84721 bytes_in 0 84721 station_ip 5.119.64.56 84721 port 19 84721 unique_id port 84721 remote_ip 10.8.0.6 84722 username aminvpn 84722 unique_id port 84722 terminate_cause User-Request 84722 bytes_out 0 84722 bytes_in 0 84722 station_ip 37.129.213.185 84692 username aminvpn 84692 mac 84692 bytes_out 0 84692 bytes_in 0 84692 station_ip 5.119.122.168 84692 port 35 84692 unique_id port 84692 remote_ip 10.8.1.10 84694 username aminvpn 84694 mac 84694 bytes_out 0 84694 bytes_in 0 84694 station_ip 5.119.122.168 84694 port 35 84694 unique_id port 84694 remote_ip 10.8.1.10 84699 username aminvpn 84699 mac 84699 bytes_out 0 84699 bytes_in 0 84699 station_ip 5.119.64.56 84699 port 34 84699 unique_id port 84699 remote_ip 10.8.1.10 84703 username aminvpn 84703 mac 84703 bytes_out 0 84703 bytes_in 0 84703 station_ip 5.119.64.56 84703 port 34 84703 unique_id port 84703 remote_ip 10.8.1.10 84706 username mobina 84706 kill_reason Relative expiration date has reached 84706 unique_id port 84706 bytes_out 0 84706 bytes_in 0 84706 station_ip 5.123.247.127 84706 port 15728902 84706 nas_port_type Virtual 84712 username aminvpn 84712 mac 84712 bytes_out 0 84712 bytes_in 0 84712 station_ip 5.119.64.56 84712 port 34 84712 unique_id port 84712 remote_ip 10.8.1.10 84715 username aminvpn 84715 mac 84715 bytes_out 0 84715 bytes_in 0 84715 station_ip 5.119.64.56 84715 port 35 84715 unique_id port 84715 remote_ip 10.8.1.10 84716 username aminvpn 84716 mac 84716 bytes_out 0 84716 bytes_in 0 84716 station_ip 5.119.64.56 84716 port 35 84716 unique_id port 84716 remote_ip 10.8.1.10 84723 username alinezhad 84723 unique_id port 84723 terminate_cause User-Request 84723 bytes_out 147653 84723 bytes_in 323355 84723 station_ip 5.202.58.49 84723 port 15728910 84723 nas_port_type Virtual 84723 remote_ip 5.5.5.114 84725 username alinezhad 84725 unique_id port 84725 terminate_cause User-Request 84725 bytes_out 0 84725 bytes_in 0 84725 station_ip 5.202.58.49 84725 port 15728916 84725 nas_port_type Virtual 84725 remote_ip 5.5.5.114 84729 username alinezhad 84729 unique_id port 84729 terminate_cause User-Request 84729 bytes_out 0 84729 bytes_in 0 84729 station_ip 5.202.58.49 84729 port 15728921 84729 nas_port_type Virtual 84729 remote_ip 5.5.5.114 84730 username aminvpn 84730 mac 84730 bytes_out 0 84730 bytes_in 0 84730 station_ip 5.119.64.56 84730 port 19 84730 unique_id port 84730 remote_ip 10.8.0.6 84731 username mahdixz 84731 unique_id port 84731 terminate_cause User-Request 84731 bytes_out 0 84731 bytes_in 0 84731 station_ip 5.119.70.100 84731 port 15728922 84731 nas_port_type Virtual 84731 remote_ip 5.5.5.112 84735 username alinezhad 84735 unique_id port 84735 terminate_cause User-Request 84735 bytes_out 0 84735 bytes_in 0 84735 station_ip 5.202.58.49 84735 port 15728925 84735 nas_port_type Virtual 84735 remote_ip 5.5.5.114 84748 username mahbobeh 84748 unique_id port 84748 terminate_cause Lost-Carrier 84748 bytes_out 2810677 84748 bytes_in 38413398 84748 station_ip 83.122.240.25 84748 port 15728920 84748 nas_port_type Virtual 84748 remote_ip 5.5.5.169 84757 username aminvpn 84757 mac 84757 bytes_out 0 84757 bytes_in 0 84757 station_ip 5.119.64.56 84757 port 19 84757 unique_id port 84757 remote_ip 10.8.0.6 84758 username aminvpn 84758 mac 84758 bytes_out 0 84758 bytes_in 0 84758 station_ip 5.119.64.56 84758 port 19 84758 unique_id port 84758 remote_ip 10.8.0.6 84759 username aminvpn 84759 mac 84759 bytes_out 0 84759 bytes_in 0 84759 station_ip 5.119.64.56 84759 port 19 84759 unique_id port 84759 remote_ip 10.8.0.6 84761 username madadi 84761 unique_id port 84761 terminate_cause Lost-Carrier 84717 remote_ip 5.5.5.169 84727 username aminvpn 84727 mac 84727 bytes_out 0 84727 bytes_in 0 84727 station_ip 5.119.64.56 84727 port 19 84727 unique_id port 84727 remote_ip 10.8.0.6 84733 username aminvpn 84733 mac 84733 bytes_out 0 84733 bytes_in 0 84733 station_ip 5.119.64.56 84733 port 19 84733 unique_id port 84733 remote_ip 10.8.0.6 84740 username caferibar 84740 unique_id port 84740 terminate_cause Lost-Carrier 84740 bytes_out 227308 84740 bytes_in 1458094 84740 station_ip 37.44.60.81 84740 port 15728928 84740 nas_port_type Virtual 84740 remote_ip 5.5.5.109 84743 username aminvpn 84743 mac 84743 bytes_out 0 84743 bytes_in 0 84743 station_ip 5.119.64.56 84743 port 19 84743 unique_id port 84743 remote_ip 10.8.0.6 84752 username aminvpn 84752 mac 84752 bytes_out 0 84752 bytes_in 0 84752 station_ip 5.119.64.56 84752 port 19 84752 unique_id port 84752 remote_ip 10.8.0.6 84753 username caferibar 84753 unique_id port 84753 terminate_cause User-Request 84753 bytes_out 14575039 84753 bytes_in 497753777 84753 station_ip 5.119.72.22 84753 port 15728923 84753 nas_port_type Virtual 84753 remote_ip 5.5.5.224 84765 username madadi 84765 unique_id port 84765 terminate_cause Lost-Carrier 84765 bytes_out 56574 84765 bytes_in 213704 84765 station_ip 5.119.36.45 84765 port 15728938 84765 nas_port_type Virtual 84765 remote_ip 5.5.5.105 84767 username aminvpn 84767 mac 84767 bytes_out 0 84767 bytes_in 0 84767 station_ip 5.119.64.56 84767 port 19 84767 unique_id port 84767 remote_ip 10.8.0.6 84769 username amirabbas 84769 unique_id port 84769 terminate_cause User-Request 84769 bytes_out 90892260 84769 bytes_in 2823319940 84769 station_ip 31.59.47.42 84769 port 15728908 84769 nas_port_type Virtual 84769 remote_ip 5.5.5.158 84772 username aminvpn 84772 mac 84772 bytes_out 0 84772 bytes_in 0 84772 station_ip 5.119.64.56 84772 port 19 84772 unique_id port 84772 remote_ip 10.8.0.6 84773 username aminvpn 84773 mac 84773 bytes_out 0 84773 bytes_in 0 84773 station_ip 5.119.64.56 84773 port 19 84773 unique_id port 84773 remote_ip 10.8.0.6 84789 username aminvpn 84789 mac 84789 bytes_out 0 84789 bytes_in 0 84789 station_ip 5.119.64.56 84789 port 19 84789 unique_id port 84789 remote_ip 10.8.0.6 84790 username aminvpn 84790 mac 84790 bytes_out 0 84790 bytes_in 0 84790 station_ip 5.119.64.56 84790 port 19 84790 unique_id port 84790 remote_ip 10.8.0.6 84791 username aminvpn 84791 mac 84791 bytes_out 0 84791 bytes_in 0 84791 station_ip 5.119.64.56 84791 port 19 84791 unique_id port 84791 remote_ip 10.8.0.6 84792 username aminvpn 84792 mac 84792 bytes_out 0 84792 bytes_in 0 84792 station_ip 5.119.64.56 84792 port 19 84792 unique_id port 84792 remote_ip 10.8.0.6 84794 username aminvpn 84794 mac 84794 bytes_out 0 84794 bytes_in 0 84794 station_ip 5.119.136.82 84794 port 19 84794 unique_id port 84794 remote_ip 10.8.0.6 84797 username aminvpn 84797 mac 84797 bytes_out 0 84797 bytes_in 0 84797 station_ip 5.119.64.56 84797 port 19 84797 unique_id port 84797 remote_ip 10.8.0.6 84798 username aminvpn 84798 mac 84798 bytes_out 0 84798 bytes_in 0 84798 station_ip 5.119.64.56 84798 port 19 84798 unique_id port 84798 remote_ip 10.8.0.6 84804 username aminvpn 84804 mac 84804 bytes_out 0 84804 bytes_in 0 84804 station_ip 5.119.64.56 84804 port 19 84722 port 15728914 84722 nas_port_type Virtual 84722 remote_ip 5.5.5.153 84728 username aminvpn 84728 mac 84728 bytes_out 0 84728 bytes_in 0 84728 station_ip 5.119.64.56 84728 port 19 84728 unique_id port 84728 remote_ip 10.8.0.6 84732 username heydari 84732 unique_id port 84732 terminate_cause Lost-Carrier 84732 bytes_out 189009 84732 bytes_in 754648 84732 station_ip 5.119.237.169 84732 port 15728919 84732 nas_port_type Virtual 84732 remote_ip 5.5.5.210 84734 username alinezhad 84734 unique_id port 84734 terminate_cause User-Request 84734 bytes_out 0 84734 bytes_in 0 84734 station_ip 5.202.58.49 84734 port 15728924 84734 nas_port_type Virtual 84734 remote_ip 5.5.5.114 84737 username zamanialireza 84737 unique_id port 84737 terminate_cause User-Request 84737 bytes_out 75520942 84737 bytes_in 261895151 84737 station_ip 83.122.118.27 84737 port 15728912 84737 nas_port_type Virtual 84737 remote_ip 5.5.5.113 84738 username aminvpn 84738 mac 84738 bytes_out 0 84738 bytes_in 0 84738 station_ip 5.119.64.56 84738 port 19 84738 unique_id port 84738 remote_ip 10.8.0.6 84739 username aminvpn 84739 mac 84739 bytes_out 0 84739 bytes_in 0 84739 station_ip 5.119.64.56 84739 port 19 84739 unique_id port 84739 remote_ip 10.8.0.6 84745 username asadi 84745 unique_id port 84745 terminate_cause User-Request 84745 bytes_out 149449 84745 bytes_in 3389437 84745 station_ip 37.129.40.133 84745 port 15728931 84745 nas_port_type Virtual 84745 remote_ip 5.5.5.165 84749 username aminvpn 84749 mac 84749 bytes_out 0 84749 bytes_in 0 84749 station_ip 5.119.64.56 84749 port 19 84749 unique_id port 84749 remote_ip 10.8.0.6 84751 username mahdixz 84751 unique_id port 84751 terminate_cause User-Request 84751 bytes_out 3890598 84751 bytes_in 61554284 84751 station_ip 151.235.118.203 84751 port 15728932 84751 nas_port_type Virtual 84751 remote_ip 5.5.5.187 84754 username alinezhad 84754 unique_id port 84754 terminate_cause User-Request 84754 bytes_out 0 84754 bytes_in 0 84754 station_ip 113.203.35.219 84754 port 15728936 84754 nas_port_type Virtual 84754 remote_ip 5.5.5.107 84755 username aminvpn 84755 mac 84755 bytes_out 0 84755 bytes_in 0 84755 station_ip 5.119.64.56 84755 port 19 84755 unique_id port 84755 remote_ip 10.8.0.6 84756 username aminvpn 84756 mac 84756 bytes_out 0 84756 bytes_in 0 84756 station_ip 5.119.64.56 84756 port 19 84756 unique_id port 84756 remote_ip 10.8.0.6 84760 username khalili 84760 unique_id port 84760 terminate_cause Lost-Carrier 84760 bytes_out 1502034 84760 bytes_in 16155070 84760 station_ip 5.120.109.50 84760 port 15728926 84760 nas_port_type Virtual 84760 remote_ip 5.5.5.111 84762 username aminvpn 84762 mac 84762 bytes_out 0 84762 bytes_in 0 84762 station_ip 5.119.64.56 84762 port 19 84762 unique_id port 84762 remote_ip 10.8.0.6 84763 username aminvpn 84763 mac 84763 bytes_out 0 84763 bytes_in 0 84763 station_ip 5.119.64.56 84763 port 19 84763 unique_id port 84763 remote_ip 10.8.0.6 84768 username aminvpn 84768 mac 84768 bytes_out 0 84768 bytes_in 0 84768 station_ip 5.119.64.56 84768 port 19 84768 unique_id port 84768 remote_ip 10.8.0.6 84770 username aminvpn 84770 mac 84770 bytes_out 0 84770 bytes_in 0 84770 station_ip 5.119.64.56 84770 port 19 84770 unique_id port 84770 remote_ip 10.8.0.6 84774 username aminvpn 84774 mac 84774 bytes_out 0 84774 bytes_in 0 84774 station_ip 5.119.64.56 84774 port 19 84724 bytes_out 2008 84724 bytes_in 21456 84724 station_ip 37.129.213.185 84724 port 15728915 84724 nas_port_type Virtual 84724 remote_ip 5.5.5.153 84726 username aminvpn 84726 unique_id port 84726 terminate_cause User-Request 84726 bytes_out 209180 84726 bytes_in 572843 84726 station_ip 37.129.213.185 84726 port 15728918 84726 nas_port_type Virtual 84726 remote_ip 5.5.5.153 84736 username aminvpn 84736 unique_id port 84736 terminate_cause User-Request 84736 bytes_out 75010 84736 bytes_in 352973 84736 station_ip 37.129.201.213 84736 port 15728927 84736 nas_port_type Virtual 84736 remote_ip 5.5.5.110 84741 username afarin 84741 unique_id port 84741 terminate_cause Lost-Carrier 84741 bytes_out 1688509 84741 bytes_in 11208822 84741 station_ip 31.56.155.80 84741 port 15728879 84741 nas_port_type Virtual 84741 remote_ip 5.5.5.128 84742 username zamanialireza 84742 unique_id port 84742 terminate_cause User-Request 84742 bytes_out 0 84742 bytes_in 0 84742 station_ip 94.183.213.166 84742 port 15728929 84742 nas_port_type Virtual 84742 remote_ip 5.5.5.124 84744 username alinezhad 84744 unique_id port 84744 terminate_cause User-Request 84744 bytes_out 0 84744 bytes_in 0 84744 station_ip 5.202.58.49 84744 port 15728930 84744 nas_port_type Virtual 84744 remote_ip 5.5.5.114 84746 username aminvpn 84746 mac 84746 bytes_out 0 84746 bytes_in 0 84746 station_ip 5.119.64.56 84746 port 19 84746 unique_id port 84746 remote_ip 10.8.0.6 84747 username sadegh 84747 unique_id port 84747 terminate_cause User-Request 84747 bytes_out 47702598 84747 bytes_in 917436044 84747 station_ip 5.119.82.25 84747 port 15728886 84747 nas_port_type Virtual 84747 remote_ip 5.5.5.125 84750 username zamanialireza 84750 unique_id port 84750 terminate_cause User-Request 84750 bytes_out 0 84750 bytes_in 0 84750 station_ip 94.183.213.166 84750 port 15728933 84750 nas_port_type Virtual 84750 remote_ip 5.5.5.124 84771 username caferibar 84771 unique_id port 84771 terminate_cause User-Request 84771 bytes_out 4116759 84771 bytes_in 98837251 84771 station_ip 31.59.39.67 84771 port 15728941 84771 nas_port_type Virtual 84771 remote_ip 5.5.5.103 84780 username shahrooz 84780 unique_id port 84780 terminate_cause Lost-Carrier 84780 bytes_out 11520166 84780 bytes_in 281112529 84780 station_ip 83.122.183.246 84780 port 15728937 84780 nas_port_type Virtual 84780 remote_ip 5.5.5.106 84781 username aminvpn 84781 mac 84781 bytes_out 0 84781 bytes_in 0 84781 station_ip 5.119.64.56 84781 port 19 84781 unique_id port 84781 remote_ip 10.8.0.6 84782 username aminvpn 84782 mac 84782 bytes_out 0 84782 bytes_in 0 84782 station_ip 5.119.64.56 84782 port 19 84782 unique_id port 84782 remote_ip 10.8.0.6 84786 username pouria 84786 unique_id port 84786 terminate_cause Lost-Carrier 84786 bytes_out 13094661 84786 bytes_in 375398123 84786 station_ip 5.120.172.239 84786 port 15728943 84786 nas_port_type Virtual 84786 remote_ip 5.5.5.101 84793 username zamanialireza 84793 unique_id port 84793 terminate_cause User-Request 84793 bytes_out 18780731 84793 bytes_in 388734981 84793 station_ip 5.160.115.3 84793 port 15728942 84793 nas_port_type Virtual 84793 remote_ip 5.5.5.102 84795 username aminvpn 84795 mac 84795 bytes_out 14690 84795 bytes_in 27224 84795 station_ip 5.119.64.56 84795 port 19 84795 unique_id port 84795 remote_ip 10.8.0.6 84817 username zamanialireza 84817 unique_id port 84817 terminate_cause User-Request 84817 bytes_out 0 84817 bytes_in 0 84817 station_ip 83.123.93.252 84817 port 15728950 84817 nas_port_type Virtual 84817 remote_ip 5.5.5.99 84761 bytes_out 2741609 84761 bytes_in 6079950 84761 station_ip 5.119.182.251 84761 port 15728900 84761 nas_port_type Virtual 84761 remote_ip 5.5.5.116 84764 username afarin 84764 unique_id port 84764 terminate_cause User-Request 84764 bytes_out 92658 84764 bytes_in 736763 84764 station_ip 113.203.17.229 84764 port 15728940 84764 nas_port_type Virtual 84764 remote_ip 5.5.5.104 84766 username caferibar 84766 unique_id port 84766 terminate_cause Lost-Carrier 84766 bytes_out 1566798 84766 bytes_in 23757315 84766 station_ip 89.32.99.217 84766 port 15728934 84766 nas_port_type Virtual 84766 remote_ip 5.5.5.108 84796 username heydarizadeh 84796 unique_id port 84796 terminate_cause Lost-Carrier 84796 bytes_out 11394630 84796 bytes_in 517190977 84796 station_ip 5.119.237.169 84796 port 15728911 84796 nas_port_type Virtual 84796 remote_ip 5.5.5.196 84799 username aminvpn 84799 mac 84799 bytes_out 0 84799 bytes_in 0 84799 station_ip 5.119.64.56 84799 port 19 84799 unique_id port 84799 remote_ip 10.8.0.6 84800 username aminvpn 84800 mac 84800 bytes_out 0 84800 bytes_in 0 84800 station_ip 5.119.64.56 84800 port 19 84800 unique_id port 84800 remote_ip 10.8.0.6 84811 username aminvpn 84811 mac 84811 bytes_out 0 84811 bytes_in 0 84811 station_ip 5.119.64.56 84811 port 19 84811 unique_id port 84811 remote_ip 10.8.0.6 84812 username aminvpn 84812 mac 84812 bytes_out 0 84812 bytes_in 0 84812 station_ip 5.119.64.56 84812 port 19 84812 unique_id port 84812 remote_ip 10.8.0.6 84813 username aminvpn 84813 mac 84813 bytes_out 0 84813 bytes_in 0 84813 station_ip 5.119.64.56 84813 port 19 84813 unique_id port 84813 remote_ip 10.8.0.6 84814 username aminvpn 84814 mac 84814 bytes_out 0 84814 bytes_in 0 84814 station_ip 5.119.64.56 84814 port 19 84814 unique_id port 84814 remote_ip 10.8.0.6 84815 username aminvpn 84815 mac 84815 bytes_out 0 84815 bytes_in 0 84815 station_ip 5.119.64.56 84815 port 19 84815 unique_id port 84815 remote_ip 10.8.0.6 84823 username aminvpn 84823 mac 84823 bytes_out 0 84823 bytes_in 0 84823 station_ip 5.119.64.56 84823 port 19 84823 unique_id port 84827 username madadi 84827 unique_id port 84827 terminate_cause Admin-Reboot 84827 bytes_out 31820 84827 bytes_in 90549 84827 station_ip 5.119.242.74 84827 port 15728952 84827 nas_port_type Virtual 84827 remote_ip 5.5.5.97 84832 username madadi 84832 unique_id port 84832 terminate_cause Lost-Carrier 84832 bytes_out 578707 84832 bytes_in 3721592 84832 station_ip 5.119.140.254 84832 port 15728644 84832 nas_port_type Virtual 84832 remote_ip 5.5.5.251 84834 username asadi 84834 unique_id port 84834 terminate_cause User-Request 84834 bytes_out 228987 84834 bytes_in 3858022 84834 station_ip 83.123.189.34 84834 port 15728648 84834 nas_port_type Virtual 84834 remote_ip 5.5.5.248 84835 username forozande 84835 unique_id port 84835 terminate_cause User-Request 84835 bytes_out 292342 84835 bytes_in 6117766 84835 station_ip 113.203.34.241 84835 port 15728651 84835 nas_port_type Virtual 84835 remote_ip 5.5.5.247 84838 username asadi 84838 unique_id port 84838 terminate_cause User-Request 84838 bytes_out 263155 84838 bytes_in 3057287 84838 station_ip 83.123.189.34 84838 port 15728658 84838 nas_port_type Virtual 84838 remote_ip 5.5.5.248 84841 username aminvpn 84841 mac 84841 bytes_out 0 84841 bytes_in 0 84841 station_ip 83.123.220.73 84841 port 19 84841 unique_id port 84841 remote_ip 10.8.0.6 84846 username asadi 84774 unique_id port 84774 remote_ip 10.8.0.6 84775 username khalili 84775 unique_id port 84775 terminate_cause Lost-Carrier 84775 bytes_out 317231 84775 bytes_in 3873844 84775 station_ip 5.120.109.50 84775 port 15728939 84775 nas_port_type Virtual 84775 remote_ip 5.5.5.111 84776 username aminvpn 84776 mac 84776 bytes_out 0 84776 bytes_in 0 84776 station_ip 5.119.64.56 84776 port 19 84776 unique_id port 84776 remote_ip 10.8.0.6 84777 username aminvpn 84777 mac 84777 bytes_out 0 84777 bytes_in 0 84777 station_ip 5.119.64.56 84777 port 19 84777 unique_id port 84777 remote_ip 10.8.0.6 84778 username aminvpn 84778 mac 84778 bytes_out 0 84778 bytes_in 0 84778 station_ip 5.119.64.56 84778 port 19 84778 unique_id port 84778 remote_ip 10.8.0.6 84779 username aminvpn 84779 mac 84779 bytes_out 0 84779 bytes_in 0 84779 station_ip 5.119.64.56 84779 port 19 84779 unique_id port 84779 remote_ip 10.8.0.6 84783 username farhad 84783 unique_id port 84783 terminate_cause Lost-Carrier 84783 bytes_out 36990051 84783 bytes_in 369516618 84783 station_ip 5.119.207.60 84783 port 15728899 84783 nas_port_type Virtual 84783 remote_ip 5.5.5.117 84784 username aminvpn 84784 mac 84784 bytes_out 0 84784 bytes_in 0 84784 station_ip 5.119.64.56 84784 port 19 84784 unique_id port 84784 remote_ip 10.8.0.6 84785 username aminvpn 84785 mac 84785 bytes_out 0 84785 bytes_in 0 84785 station_ip 5.119.64.56 84785 port 19 84785 unique_id port 84785 remote_ip 10.8.0.6 84801 remote_ip 10.8.0.6 84802 username aminvpn 84802 mac 84802 bytes_out 0 84802 bytes_in 0 84802 station_ip 5.119.64.56 84802 port 19 84802 unique_id port 84802 remote_ip 10.8.0.6 84803 username aminvpn 84803 mac 84803 bytes_out 0 84803 bytes_in 0 84803 station_ip 5.119.64.56 84803 port 19 84803 unique_id port 84803 remote_ip 10.8.0.6 84806 username aminvpn 84806 unique_id port 84806 terminate_cause User-Request 84806 bytes_out 149283 84806 bytes_in 733100 84806 station_ip 37.129.145.189 84806 port 15728947 84806 nas_port_type Virtual 84806 remote_ip 5.5.5.100 84816 username zamanialireza 84816 unique_id port 84816 terminate_cause User-Request 84816 bytes_out 189412 84816 bytes_in 1093915 84816 station_ip 83.123.93.252 84816 port 15728949 84816 nas_port_type Virtual 84816 remote_ip 5.5.5.99 84822 username aminvpn 84822 unique_id port 84822 terminate_cause User-Request 84822 bytes_out 53154 84822 bytes_in 79410 84822 station_ip 37.129.232.21 84822 port 15728951 84822 nas_port_type Virtual 84822 remote_ip 5.5.5.98 84826 username aminvpn 84826 unique_id port 84826 terminate_cause Admin-Reboot 84826 bytes_out 0 84826 bytes_in 0 84826 station_ip 37.129.232.21 84826 port 15728953 84826 nas_port_type Virtual 84826 remote_ip 5.5.5.98 84828 username madadi 84828 unique_id port 84828 terminate_cause Lost-Carrier 84828 bytes_out 20815 84828 bytes_in 136464 84828 station_ip 5.119.229.213 84828 port 15728640 84828 nas_port_type Virtual 84828 remote_ip 5.5.5.255 84830 username farhad 84830 unique_id port 84830 terminate_cause Lost-Carrier 84830 bytes_out 1882711 84830 bytes_in 42912986 84830 station_ip 5.120.87.232 84830 port 15728641 84830 nas_port_type Virtual 84830 remote_ip 5.5.5.254 84833 username alinezhad 84833 unique_id port 84833 terminate_cause User-Request 84833 bytes_out 0 84833 bytes_in 0 84833 station_ip 113.203.46.43 84833 port 15728645 84833 nas_port_type Virtual 84833 remote_ip 5.5.5.250 84839 username asadi 84839 unique_id port 84804 unique_id port 84804 remote_ip 10.8.0.6 84805 username aminvpn 84805 mac 84805 bytes_out 0 84805 bytes_in 0 84805 station_ip 5.119.64.56 84805 port 19 84805 unique_id port 84805 remote_ip 10.8.0.6 84807 username aminvpn 84807 mac 84807 bytes_out 0 84807 bytes_in 0 84807 station_ip 5.119.64.56 84807 port 19 84807 unique_id port 84807 remote_ip 10.8.0.6 84808 username aminvpn 84808 mac 84808 bytes_out 0 84808 bytes_in 0 84808 station_ip 5.119.64.56 84808 port 19 84808 unique_id port 84808 remote_ip 10.8.0.6 84809 username aminvpn 84809 mac 84809 bytes_out 0 84809 bytes_in 0 84809 station_ip 5.119.64.56 84809 port 19 84809 unique_id port 84809 remote_ip 10.8.0.6 84810 username aminvpn 84810 mac 84810 bytes_out 0 84810 bytes_in 0 84810 station_ip 5.119.64.56 84810 port 19 84810 unique_id port 84810 remote_ip 10.8.0.6 84819 username aminvpn 84819 mac 84819 bytes_out 0 84819 bytes_in 0 84819 station_ip 5.119.64.56 84819 port 20 84819 unique_id port 84819 remote_ip 10.8.0.6 84820 username aminvpn 84820 mac 84820 bytes_out 0 84820 bytes_in 0 84820 station_ip 5.119.64.56 84820 port 19 84820 unique_id port 84820 remote_ip 10.8.0.6 84836 username ahmadi 84836 unique_id port 84836 terminate_cause User-Request 84836 bytes_out 29262 84836 bytes_in 143528 84836 station_ip 83.123.80.47 84836 port 15728652 84836 nas_port_type Virtual 84836 remote_ip 5.5.5.246 84840 username asadi 84840 unique_id port 84840 terminate_cause User-Request 84840 bytes_out 231534 84840 bytes_in 13443298 84840 station_ip 83.123.189.34 84840 port 15728660 84840 nas_port_type Virtual 84840 remote_ip 5.5.5.248 84851 username abdilahyar 84851 unique_id port 84851 terminate_cause Lost-Carrier 84851 bytes_out 2182722 84851 bytes_in 62658294 84851 station_ip 5.119.166.191 84851 port 15728646 84851 nas_port_type Virtual 84851 remote_ip 5.5.5.249 84852 username madadi 84852 unique_id port 84852 terminate_cause Lost-Carrier 84852 bytes_out 13107 84852 bytes_in 129938 84852 station_ip 5.119.4.181 84852 port 15728667 84852 nas_port_type Virtual 84852 remote_ip 5.5.5.242 84853 username arman 84853 unique_id port 84853 terminate_cause Lost-Carrier 84853 bytes_out 884490 84853 bytes_in 17216065 84853 station_ip 5.120.27.167 84853 port 15728669 84853 nas_port_type Virtual 84853 remote_ip 5.5.5.241 84858 username soleymani 84858 kill_reason Maximum check online fails reached 84858 unique_id port 84858 bytes_out 312080 84858 bytes_in 4522297 84858 station_ip 5.123.169.167 84858 port 15728675 84858 nas_port_type Virtual 84858 remote_ip 5.5.5.235 84868 username mahdixz 84868 unique_id port 84868 terminate_cause User-Request 84868 bytes_out 279445 84868 bytes_in 6353879 84868 station_ip 83.122.25.80 84868 port 15728687 84868 nas_port_type Virtual 84868 remote_ip 5.5.5.230 84870 username mahdixz 84870 unique_id port 84870 terminate_cause User-Request 84870 bytes_out 115146 84870 bytes_in 5951315 84870 station_ip 83.122.25.80 84870 port 15728689 84870 nas_port_type Virtual 84870 remote_ip 5.5.5.230 84875 username mobina 84875 kill_reason Relative expiration date has reached 84875 unique_id port 84875 bytes_out 0 84875 bytes_in 0 84875 station_ip 5.219.194.21 84875 port 15728694 84875 nas_port_type Virtual 84877 username aminvpn 84877 unique_id port 84877 terminate_cause User-Request 84877 bytes_out 88597 84877 bytes_in 494546 84877 station_ip 83.122.89.99 84877 port 15728696 84877 nas_port_type Virtual 84877 remote_ip 5.5.5.252 84880 username forozande 84880 unique_id port 84818 username aminvpn 84818 mac 84818 bytes_out 0 84818 bytes_in 0 84818 station_ip 5.119.64.56 84818 port 19 84818 unique_id port 84818 remote_ip 10.8.0.6 84821 username aminvpn 84821 kill_reason Another user logged on this global unique id 84821 mac 84821 bytes_out 0 84821 bytes_in 0 84821 station_ip 5.119.64.56 84821 port 19 84821 unique_id port 84821 remote_ip 10.8.0.6 84824 username aminvpn 84824 mac 84824 bytes_out 0 84824 bytes_in 0 84824 station_ip 5.119.64.56 84824 port 20 84824 unique_id port 84824 remote_ip 10.8.0.6 84825 username mahbobeh 84825 unique_id port 84825 terminate_cause Lost-Carrier 84825 bytes_out 4458122 84825 bytes_in 92249379 84825 station_ip 83.122.240.25 84825 port 15728948 84825 nas_port_type Virtual 84825 remote_ip 5.5.5.169 84829 username aminvpn 84829 unique_id port 84829 terminate_cause User-Request 84829 bytes_out 49429 84829 bytes_in 207646 84829 station_ip 83.122.89.99 84829 port 15728643 84829 nas_port_type Virtual 84829 remote_ip 5.5.5.252 84831 username madadi 84831 unique_id port 84831 terminate_cause Lost-Carrier 84831 bytes_out 193614 84831 bytes_in 356638 84831 station_ip 5.120.129.168 84831 port 15728642 84831 nas_port_type Virtual 84831 remote_ip 5.5.5.253 84837 username madadi 84837 unique_id port 84837 terminate_cause Lost-Carrier 84837 bytes_out 23442 84837 bytes_in 128018 84837 station_ip 5.119.73.192 84837 port 15728653 84837 nas_port_type Virtual 84837 remote_ip 5.5.5.245 84845 username madadi 84845 unique_id port 84845 terminate_cause Lost-Carrier 84845 bytes_out 656654 84845 bytes_in 838576 84845 station_ip 5.120.173.219 84845 port 15728654 84845 nas_port_type Virtual 84845 remote_ip 5.5.5.244 84848 username asadi 84848 unique_id port 84848 terminate_cause User-Request 84848 bytes_out 132873 84848 bytes_in 3297762 84848 station_ip 83.123.189.34 84848 port 15728665 84848 nas_port_type Virtual 84848 remote_ip 5.5.5.248 84857 username zamanialireza 84857 unique_id port 84857 terminate_cause User-Request 84857 bytes_out 1190762 84857 bytes_in 22166743 84857 station_ip 83.123.5.127 84857 port 15728674 84857 nas_port_type Virtual 84857 remote_ip 5.5.5.236 84860 username madadi 84860 kill_reason Maximum check online fails reached 84860 unique_id port 84860 bytes_out 52163 84860 bytes_in 70998 84860 station_ip 5.120.54.146 84860 port 15728679 84860 nas_port_type Virtual 84860 remote_ip 5.5.5.232 84861 username madadi 84861 unique_id port 84861 terminate_cause Lost-Carrier 84861 bytes_out 8763 84861 bytes_in 120686 84861 station_ip 5.119.11.208 84861 port 15728678 84861 nas_port_type Virtual 84861 remote_ip 5.5.5.233 84864 username mahdixz 84864 unique_id port 84864 terminate_cause User-Request 84864 bytes_out 252129 84864 bytes_in 1444465 84864 station_ip 83.122.25.80 84864 port 15728682 84864 nas_port_type Virtual 84864 remote_ip 5.5.5.230 84866 username caferibar 84866 unique_id port 84866 terminate_cause Lost-Carrier 84866 bytes_out 6978886 84866 bytes_in 184858368 84866 station_ip 5.119.72.22 84866 port 15728671 84866 nas_port_type Virtual 84866 remote_ip 5.5.5.239 84872 username aminvpn 84872 mac 84872 bytes_out 1751190 84872 bytes_in 10014839 84872 station_ip 5.119.67.203 84872 port 35 84872 unique_id port 84872 remote_ip 10.8.1.10 84884 username asadi 84884 unique_id port 84884 terminate_cause User-Request 84884 bytes_out 86999 84884 bytes_in 748930 84884 station_ip 83.122.195.254 84884 port 15728703 84884 nas_port_type Virtual 84884 remote_ip 5.5.5.219 84887 username amir 84887 unique_id port 84887 terminate_cause Lost-Carrier 84887 bytes_out 1382407 84839 terminate_cause User-Request 84839 bytes_out 326929 84839 bytes_in 10343040 84839 station_ip 83.123.189.34 84839 port 15728659 84839 nas_port_type Virtual 84839 remote_ip 5.5.5.248 84842 username alinezhad 84842 unique_id port 84842 terminate_cause User-Request 84842 bytes_out 0 84842 bytes_in 0 84842 station_ip 83.123.130.224 84842 port 15728661 84842 nas_port_type Virtual 84842 remote_ip 5.5.5.243 84843 username aminvpn 84843 mac 84843 bytes_out 0 84843 bytes_in 0 84843 station_ip 83.123.220.73 84843 port 19 84843 unique_id port 84843 remote_ip 10.8.0.6 84844 username asadi 84844 unique_id port 84844 terminate_cause User-Request 84844 bytes_out 234266 84844 bytes_in 3356141 84844 station_ip 83.123.189.34 84844 port 15728662 84844 nas_port_type Virtual 84844 remote_ip 5.5.5.248 84847 username asadi 84847 unique_id port 84847 terminate_cause User-Request 84847 bytes_out 154797 84847 bytes_in 4160385 84847 station_ip 83.123.189.34 84847 port 15728664 84847 nas_port_type Virtual 84847 remote_ip 5.5.5.248 84849 username asadi 84849 unique_id port 84849 terminate_cause User-Request 84849 bytes_out 146097 84849 bytes_in 4096407 84849 station_ip 83.123.189.34 84849 port 15728666 84849 nas_port_type Virtual 84849 remote_ip 5.5.5.248 84854 username forozande 84854 unique_id port 84854 terminate_cause User-Request 84854 bytes_out 93197 84854 bytes_in 400389 84854 station_ip 37.129.73.124 84854 port 15728670 84854 nas_port_type Virtual 84854 remote_ip 5.5.5.240 84855 username ahmadipour 84855 unique_id port 84855 terminate_cause Lost-Carrier 84855 bytes_out 908440 84855 bytes_in 17917774 84855 station_ip 37.129.21.130 84855 port 15728672 84855 nas_port_type Virtual 84855 remote_ip 5.5.5.238 84856 username ahmadipour 84856 unique_id port 84856 terminate_cause Lost-Carrier 84856 bytes_out 21270 84856 bytes_in 215035 84856 station_ip 83.122.159.139 84856 port 15728673 84856 nas_port_type Virtual 84856 remote_ip 5.5.5.237 84862 username alinezhad 84862 unique_id port 84862 terminate_cause User-Request 84862 bytes_out 0 84862 bytes_in 0 84862 station_ip 5.202.2.62 84862 port 15728680 84862 nas_port_type Virtual 84862 remote_ip 5.5.5.231 84863 username aminvpn 84863 unique_id port 84863 terminate_cause User-Request 84863 bytes_out 516021 84863 bytes_in 12297037 84863 station_ip 83.122.89.99 84863 port 15728681 84863 nas_port_type Virtual 84863 remote_ip 5.5.5.252 84865 username mahdixz 84865 unique_id port 84865 terminate_cause User-Request 84865 bytes_out 140735 84865 bytes_in 3686830 84865 station_ip 83.122.25.80 84865 port 15728684 84865 nas_port_type Virtual 84865 remote_ip 5.5.5.230 84871 username mahdixz 84871 unique_id port 84871 terminate_cause User-Request 84871 bytes_out 259753 84871 bytes_in 8740513 84871 station_ip 83.122.25.80 84871 port 15728690 84871 nas_port_type Virtual 84871 remote_ip 5.5.5.230 84873 username sadegh 84873 unique_id port 84873 terminate_cause User-Request 84873 bytes_out 2556197 84873 bytes_in 43351405 84873 station_ip 5.119.82.25 84873 port 15728691 84873 nas_port_type Virtual 84873 remote_ip 5.5.5.227 84876 username madadi 84876 unique_id port 84876 terminate_cause Lost-Carrier 84876 bytes_out 40580 84876 bytes_in 213107 84876 station_ip 5.119.210.35 84876 port 15728692 84876 nas_port_type Virtual 84876 remote_ip 5.5.5.226 84878 username forozande 84878 unique_id port 84878 terminate_cause User-Request 84878 bytes_out 79546 84878 bytes_in 296179 84878 station_ip 83.123.194.78 84878 port 15728697 84878 nas_port_type Virtual 84878 remote_ip 5.5.5.223 84879 username amir 84879 unique_id port 84846 unique_id port 84846 terminate_cause User-Request 84846 bytes_out 72869 84846 bytes_in 1308847 84846 station_ip 83.123.189.34 84846 port 15728663 84846 nas_port_type Virtual 84846 remote_ip 5.5.5.248 84850 username asadi 84850 unique_id port 84850 terminate_cause User-Request 84850 bytes_out 57580 84850 bytes_in 667317 84850 station_ip 83.123.189.34 84850 port 15728668 84850 nas_port_type Virtual 84850 remote_ip 5.5.5.248 84859 username madadi 84859 unique_id port 84859 terminate_cause Lost-Carrier 84859 bytes_out 21788 84859 bytes_in 150088 84859 station_ip 5.119.154.109 84859 port 15728676 84859 nas_port_type Virtual 84859 remote_ip 5.5.5.234 84867 username mahdixz 84867 unique_id port 84867 terminate_cause User-Request 84867 bytes_out 66824 84867 bytes_in 109123 84867 station_ip 83.122.25.80 84867 port 15728686 84867 nas_port_type Virtual 84867 remote_ip 5.5.5.230 84869 username aminvpn 84869 unique_id port 84869 terminate_cause User-Request 84869 bytes_out 267465 84869 bytes_in 2107933 84869 station_ip 83.122.89.99 84869 port 15728688 84869 nas_port_type Virtual 84869 remote_ip 5.5.5.252 84874 username pouria 84874 kill_reason Maximum check online fails reached 84874 unique_id port 84874 bytes_out 6416308 84874 bytes_in 241899405 84874 station_ip 5.120.172.239 84874 port 15728683 84874 nas_port_type Virtual 84874 remote_ip 5.5.5.229 84881 username forozande 84881 unique_id port 84881 terminate_cause User-Request 84881 bytes_out 64627 84881 bytes_in 828831 84881 station_ip 83.123.194.78 84881 port 15728699 84881 nas_port_type Virtual 84881 remote_ip 5.5.5.223 84882 username ahmadipour 84882 unique_id port 84882 terminate_cause Lost-Carrier 84882 bytes_out 270843 84882 bytes_in 4278125 84882 station_ip 83.122.161.242 84882 port 15728700 84882 nas_port_type Virtual 84882 remote_ip 5.5.5.222 84894 username alirezazamani 84894 kill_reason Relative expiration date has reached 84894 unique_id port 84894 bytes_out 0 84894 bytes_in 0 84894 station_ip 31.57.131.216 84894 port 15728716 84894 nas_port_type Virtual 84899 username alinezhad 84899 unique_id port 84899 terminate_cause User-Request 84899 bytes_out 0 84899 bytes_in 0 84899 station_ip 5.202.2.62 84899 port 15728722 84899 nas_port_type Virtual 84899 remote_ip 5.5.5.231 84902 username mahdixz 84902 kill_reason Maximum number of concurrent logins reached 84902 unique_id port 84902 bytes_out 0 84902 bytes_in 0 84902 station_ip 151.235.86.156 84902 port 15728727 84902 nas_port_type Virtual 84904 username madadi 84904 unique_id port 84904 terminate_cause Lost-Carrier 84904 bytes_out 87476 84904 bytes_in 236462 84904 station_ip 5.120.48.110 84904 port 15728711 84904 nas_port_type Virtual 84904 remote_ip 5.5.5.212 84906 username mahdixz 84906 unique_id port 84906 terminate_cause User-Request 84906 bytes_out 256408 84906 bytes_in 2219327 84906 station_ip 151.235.86.156 84906 port 15728728 84906 nas_port_type Virtual 84906 remote_ip 5.5.5.206 84907 username mahdixz 84907 unique_id port 84907 terminate_cause Lost-Carrier 84907 bytes_out 277159 84907 bytes_in 6421829 84907 station_ip 151.235.86.156 84907 port 15728723 84907 nas_port_type Virtual 84907 remote_ip 5.5.5.208 84911 username caferibar 84911 unique_id port 84911 terminate_cause User-Request 84911 bytes_out 2650267 84911 bytes_in 49420630 84911 station_ip 5.119.72.22 84911 port 15728714 84911 nas_port_type Virtual 84911 remote_ip 5.5.5.239 84915 username kamali 84915 unique_id port 84915 terminate_cause User-Request 84915 bytes_out 66297 84915 bytes_in 272144 84915 station_ip 83.122.192.53 84915 port 15728739 84915 nas_port_type Virtual 84915 remote_ip 5.5.5.202 84919 username aminvpn 84879 terminate_cause Lost-Carrier 84879 bytes_out 2623861 84879 bytes_in 36320695 84879 station_ip 46.225.209.122 84879 port 15728685 84879 nas_port_type Virtual 84879 remote_ip 5.5.5.228 84883 username madadi 84883 unique_id port 84883 terminate_cause Lost-Carrier 84883 bytes_out 64919 84883 bytes_in 349859 84883 station_ip 5.119.225.122 84883 port 15728695 84883 nas_port_type Virtual 84883 remote_ip 5.5.5.224 84895 username forozande 84895 unique_id port 84895 terminate_cause User-Request 84895 bytes_out 21377 84895 bytes_in 90410 84895 station_ip 83.122.111.137 84895 port 15728717 84895 nas_port_type Virtual 84895 remote_ip 5.5.5.211 84903 username mahdixz 84903 unique_id port 84903 terminate_cause User-Request 84903 bytes_out 123198 84903 bytes_in 2690292 84903 station_ip 83.123.19.132 84903 port 15728725 84903 nas_port_type Virtual 84903 remote_ip 5.5.5.207 84908 username afarin 84908 unique_id port 84908 terminate_cause User-Request 84908 bytes_out 62636 84908 bytes_in 472635 84908 station_ip 83.123.142.107 84908 port 15728730 84908 nas_port_type Virtual 84908 remote_ip 5.5.5.204 84909 username forozande 84909 unique_id port 84909 terminate_cause User-Request 84909 bytes_out 21592 84909 bytes_in 30981 84909 station_ip 83.122.111.137 84909 port 15728731 84909 nas_port_type Virtual 84909 remote_ip 5.5.5.211 84914 username kamali 84914 unique_id port 84914 terminate_cause User-Request 84914 bytes_out 130526 84914 bytes_in 921933 84914 station_ip 83.122.192.53 84914 port 15728737 84914 nas_port_type Virtual 84914 remote_ip 5.5.5.202 84917 username caferibar 84917 unique_id port 84917 terminate_cause User-Request 84917 bytes_out 5374071 84917 bytes_in 109985692 84917 station_ip 5.119.72.22 84917 port 15728735 84917 nas_port_type Virtual 84917 remote_ip 5.5.5.239 84932 username aminvpn 84932 mac 84932 bytes_out 0 84932 bytes_in 0 84932 station_ip 83.122.100.131 84932 port 20 84932 unique_id port 84932 remote_ip 10.8.0.6 84934 username aminvpn 84934 mac 84934 bytes_out 0 84934 bytes_in 0 84934 station_ip 83.123.220.73 84934 port 20 84934 unique_id port 84934 remote_ip 10.8.0.6 84939 username aminvpn 84939 mac 84939 bytes_out 0 84939 bytes_in 0 84939 station_ip 83.123.220.73 84939 port 20 84939 unique_id port 84939 remote_ip 10.8.0.6 84940 username aminvpn 84940 mac 84940 bytes_out 0 84940 bytes_in 0 84940 station_ip 83.122.100.131 84940 port 19 84940 unique_id port 84940 remote_ip 10.8.0.6 84951 username aminvpn 84951 mac 84951 bytes_out 0 84951 bytes_in 0 84951 station_ip 83.123.0.245 84951 port 19 84951 unique_id port 84951 remote_ip 10.8.0.6 84957 username caferibar 84957 unique_id port 84957 terminate_cause User-Request 84957 bytes_out 7341635 84957 bytes_in 66993210 84957 station_ip 5.119.72.22 84957 port 15728740 84957 nas_port_type Virtual 84957 remote_ip 5.5.5.239 84960 username aminvpn 84960 mac 84960 bytes_out 0 84960 bytes_in 0 84960 station_ip 83.123.0.245 84960 port 19 84960 unique_id port 84960 remote_ip 10.8.0.6 84964 username aminvpn 84964 mac 84964 bytes_out 64857 84964 bytes_in 82438 84964 station_ip 83.123.0.245 84964 port 19 84964 unique_id port 84964 remote_ip 10.8.0.6 84966 username aminvpn 84966 mac 84966 bytes_out 0 84966 bytes_in 0 84966 station_ip 83.123.220.73 84966 port 20 84966 unique_id port 84966 remote_ip 10.8.0.6 84973 username aminvpn 84973 mac 84973 bytes_out 0 84973 bytes_in 0 84973 station_ip 83.123.220.73 84973 port 20 84973 unique_id port 84880 terminate_cause User-Request 84880 bytes_out 41402 84880 bytes_in 475507 84880 station_ip 83.123.194.78 84880 port 15728698 84880 nas_port_type Virtual 84880 remote_ip 5.5.5.223 84885 username arman 84885 unique_id port 84885 terminate_cause User-Request 84885 bytes_out 0 84885 bytes_in 0 84885 station_ip 5.119.193.31 84885 port 15728704 84885 nas_port_type Virtual 84885 remote_ip 5.5.5.218 84886 username madadi 84886 unique_id port 84886 terminate_cause Lost-Carrier 84886 bytes_out 25672 84886 bytes_in 131662 84886 station_ip 5.119.180.196 84886 port 15728701 84886 nas_port_type Virtual 84886 remote_ip 5.5.5.221 84888 username forozande 84888 unique_id port 84888 terminate_cause User-Request 84888 bytes_out 126166 84888 bytes_in 288874 84888 station_ip 83.123.235.88 84888 port 15728707 84888 nas_port_type Virtual 84888 remote_ip 5.5.5.216 84889 username madadi 84889 unique_id port 84889 terminate_cause Lost-Carrier 84889 bytes_out 43261 84889 bytes_in 153615 84889 station_ip 5.119.0.124 84889 port 15728706 84889 nas_port_type Virtual 84889 remote_ip 5.5.5.217 84890 username mahdixz 84890 unique_id port 84890 terminate_cause User-Request 84890 bytes_out 354396 84890 bytes_in 2712327 84890 station_ip 83.122.243.74 84890 port 15728710 84890 nas_port_type Virtual 84890 remote_ip 5.5.5.213 84891 username mahdixz 84891 unique_id port 84891 terminate_cause User-Request 84891 bytes_out 0 84891 bytes_in 0 84891 station_ip 83.122.243.74 84891 port 15728712 84891 nas_port_type Virtual 84891 remote_ip 5.5.5.213 84892 username mahdixz 84892 unique_id port 84892 terminate_cause User-Request 84892 bytes_out 300291 84892 bytes_in 1682413 84892 station_ip 83.122.243.74 84892 port 15728713 84892 nas_port_type Virtual 84892 remote_ip 5.5.5.213 84910 username mahdixz 84910 unique_id port 84910 terminate_cause User-Request 84910 bytes_out 56308 84910 bytes_in 278969 84910 station_ip 151.235.86.156 84910 port 15728732 84910 nas_port_type Virtual 84910 remote_ip 5.5.5.206 84912 username forozande 84912 unique_id port 84912 terminate_cause User-Request 84912 bytes_out 4359 84912 bytes_in 18153 84912 station_ip 83.122.111.137 84912 port 15728733 84912 nas_port_type Virtual 84912 remote_ip 5.5.5.211 84922 username forozande 84922 unique_id port 84922 terminate_cause User-Request 84922 bytes_out 534 84922 bytes_in 12158 84922 station_ip 37.129.62.44 84922 port 15728744 84922 nas_port_type Virtual 84922 remote_ip 5.5.5.200 84925 username madadi 84925 unique_id port 84925 terminate_cause Lost-Carrier 84925 bytes_out 315256 84925 bytes_in 3299985 84925 station_ip 5.120.63.24 84925 port 15728745 84925 nas_port_type Virtual 84925 remote_ip 5.5.5.199 84930 username aminvpn 84930 mac 84930 bytes_out 0 84930 bytes_in 0 84930 station_ip 83.122.100.131 84930 port 20 84930 unique_id port 84930 remote_ip 10.8.0.6 84935 username aminvpn 84935 mac 84935 bytes_out 0 84935 bytes_in 0 84935 station_ip 83.122.100.131 84935 port 19 84935 unique_id port 84935 remote_ip 10.8.0.6 84937 username amir 84937 unique_id port 84937 terminate_cause Lost-Carrier 84937 bytes_out 6320212 84937 bytes_in 97444394 84937 station_ip 46.225.208.185 84937 port 15728738 84937 nas_port_type Virtual 84937 remote_ip 5.5.5.201 84938 username aminvpn 84938 mac 84938 bytes_out 0 84938 bytes_in 0 84938 station_ip 83.122.100.131 84938 port 19 84938 unique_id port 84938 remote_ip 10.8.0.6 84941 username aminvpn 84941 mac 84941 bytes_out 0 84941 bytes_in 0 84941 station_ip 83.123.220.73 84941 port 20 84941 unique_id port 84887 bytes_in 20855267 84887 station_ip 46.225.209.83 84887 port 15728702 84887 nas_port_type Virtual 84887 remote_ip 5.5.5.220 84893 username mahdixz 84893 unique_id port 84893 terminate_cause User-Request 84893 bytes_out 303790 84893 bytes_in 4951942 84893 station_ip 83.122.243.74 84893 port 15728715 84893 nas_port_type Virtual 84893 remote_ip 5.5.5.213 84896 username kamali 84896 unique_id port 84896 terminate_cause User-Request 84896 bytes_out 15520 84896 bytes_in 44431 84896 station_ip 37.129.34.87 84896 port 15728718 84896 nas_port_type Virtual 84896 remote_ip 5.5.5.210 84897 username asadi 84897 unique_id port 84897 terminate_cause User-Request 84897 bytes_out 100783 84897 bytes_in 2026227 84897 station_ip 83.122.195.254 84897 port 15728719 84897 nas_port_type Virtual 84897 remote_ip 5.5.5.219 84898 username forozande 84898 unique_id port 84898 terminate_cause User-Request 84898 bytes_out 19818 84898 bytes_in 208397 84898 station_ip 83.122.111.137 84898 port 15728721 84898 nas_port_type Virtual 84898 remote_ip 5.5.5.211 84900 username forozande 84900 unique_id port 84900 terminate_cause User-Request 84900 bytes_out 50083 84900 bytes_in 425426 84900 station_ip 83.122.111.137 84900 port 15728724 84900 nas_port_type Virtual 84900 remote_ip 5.5.5.211 84901 username mahdixz 84901 kill_reason Maximum number of concurrent logins reached 84901 unique_id port 84901 bytes_out 0 84901 bytes_in 0 84901 station_ip 151.235.86.156 84901 port 15728726 84901 nas_port_type Virtual 84905 username ahmadi 84905 unique_id port 84905 terminate_cause User-Request 84905 bytes_out 138202 84905 bytes_in 2827277 84905 station_ip 83.123.15.255 84905 port 15728729 84905 nas_port_type Virtual 84905 remote_ip 5.5.5.205 84913 username mahdixz 84913 unique_id port 84913 terminate_cause Lost-Carrier 84913 bytes_out 161132 84913 bytes_in 1003802 84913 station_ip 151.235.86.156 84913 port 15728734 84913 nas_port_type Virtual 84913 remote_ip 5.5.5.206 84916 username madadi 84916 unique_id port 84916 terminate_cause Lost-Carrier 84916 bytes_out 633244 84916 bytes_in 999872 84916 station_ip 5.120.95.17 84916 port 15728720 84916 nas_port_type Virtual 84916 remote_ip 5.5.5.209 84918 username alinezhad 84918 unique_id port 84918 terminate_cause User-Request 84918 bytes_out 0 84918 bytes_in 0 84918 station_ip 5.202.2.62 84918 port 15728741 84918 nas_port_type Virtual 84918 remote_ip 5.5.5.231 84920 username forozande 84920 unique_id port 84920 terminate_cause User-Request 84920 bytes_out 32329 84920 bytes_in 335196 84920 station_ip 37.129.62.44 84920 port 15728742 84920 nas_port_type Virtual 84920 remote_ip 5.5.5.200 84921 username forozande 84921 unique_id port 84921 terminate_cause User-Request 84921 bytes_out 26448 84921 bytes_in 83273 84921 station_ip 37.129.62.44 84921 port 15728743 84921 nas_port_type Virtual 84921 remote_ip 5.5.5.200 84928 username ahmadi 84928 unique_id port 84928 terminate_cause User-Request 84928 bytes_out 27883 84928 bytes_in 172454 84928 station_ip 83.123.15.255 84928 port 15728750 84928 nas_port_type Virtual 84928 remote_ip 5.5.5.205 84933 username aminvpn 84933 mac 84933 bytes_out 0 84933 bytes_in 0 84933 station_ip 83.122.100.131 84933 port 19 84933 unique_id port 84933 remote_ip 10.8.0.6 84936 username aminvpn 84936 mac 84936 bytes_out 0 84936 bytes_in 0 84936 station_ip 83.123.220.73 84936 port 20 84936 unique_id port 84936 remote_ip 10.8.0.6 84942 username aminvpn 84942 mac 84942 bytes_out 0 84942 bytes_in 0 84942 station_ip 83.122.100.131 84942 port 19 84942 unique_id port 84942 remote_ip 10.8.0.6 84919 mac 84919 bytes_out 0 84919 bytes_in 0 84919 station_ip 83.123.220.73 84919 port 20 84919 unique_id port 84919 remote_ip 10.8.0.6 84923 username aminvpn 84923 mac 84923 bytes_out 0 84923 bytes_in 0 84923 station_ip 5.119.67.203 84923 port 35 84923 unique_id port 84923 remote_ip 10.8.1.10 84924 username aminvpn 84924 unique_id port 84924 terminate_cause User-Request 84924 bytes_out 180579 84924 bytes_in 851147 84924 station_ip 83.122.100.131 84924 port 15728747 84924 nas_port_type Virtual 84924 remote_ip 5.5.5.197 84926 username arman 84926 unique_id port 84926 terminate_cause Lost-Carrier 84926 bytes_out 1408527 84926 bytes_in 34488025 84926 station_ip 5.119.193.31 84926 port 15728705 84926 nas_port_type Virtual 84926 remote_ip 5.5.5.218 84927 username aminvpn 84927 unique_id port 84927 terminate_cause User-Request 84927 bytes_out 68516 84927 bytes_in 237775 84927 station_ip 83.122.100.131 84927 port 15728749 84927 nas_port_type Virtual 84927 remote_ip 5.5.5.197 84929 username aminvpn 84929 mac 84929 bytes_out 0 84929 bytes_in 0 84929 station_ip 83.123.220.73 84929 port 19 84929 unique_id port 84929 remote_ip 10.8.0.6 84931 username aminvpn 84931 mac 84931 bytes_out 0 84931 bytes_in 0 84931 station_ip 83.123.220.73 84931 port 19 84931 unique_id port 84931 remote_ip 10.8.0.6 84943 username aminvpn 84943 mac 84943 bytes_out 0 84943 bytes_in 0 84943 station_ip 83.123.220.73 84943 port 20 84943 unique_id port 84943 remote_ip 10.8.0.6 84946 username aminvpn 84946 mac 84946 bytes_out 0 84946 bytes_in 0 84946 station_ip 83.122.100.131 84946 port 19 84946 unique_id port 84946 remote_ip 10.8.0.6 84947 username aminvpn 84947 mac 84947 bytes_out 0 84947 bytes_in 0 84947 station_ip 83.123.220.73 84947 port 20 84947 unique_id port 84947 remote_ip 10.8.0.6 84952 username aminvpn 84952 mac 84952 bytes_out 0 84952 bytes_in 0 84952 station_ip 83.123.220.73 84952 port 20 84952 unique_id port 84952 remote_ip 10.8.0.6 84956 username aminvpn 84956 mac 84956 bytes_out 0 84956 bytes_in 0 84956 station_ip 83.123.220.73 84956 port 20 84956 unique_id port 84956 remote_ip 10.8.0.6 84958 username aminvpn 84958 mac 84958 bytes_out 0 84958 bytes_in 0 84958 station_ip 83.123.0.245 84958 port 19 84958 unique_id port 84958 remote_ip 10.8.0.6 84961 username aminvpn 84961 mac 84961 bytes_out 0 84961 bytes_in 0 84961 station_ip 83.123.220.73 84961 port 20 84961 unique_id port 84961 remote_ip 10.8.0.6 84962 username aminvpn 84962 mac 84962 bytes_out 0 84962 bytes_in 0 84962 station_ip 83.123.0.245 84962 port 19 84962 unique_id port 84962 remote_ip 10.8.0.6 84968 username alinezhad 84968 unique_id port 84968 terminate_cause User-Request 84968 bytes_out 0 84968 bytes_in 0 84968 station_ip 5.202.2.62 84968 port 15728757 84968 nas_port_type Virtual 84968 remote_ip 5.5.5.231 84969 username sobhan 84969 unique_id port 84969 terminate_cause Lost-Carrier 84969 bytes_out 2328088 84969 bytes_in 48031806 84969 station_ip 5.120.39.194 84969 port 15728752 84969 nas_port_type Virtual 84969 remote_ip 5.5.5.196 84971 username alinezhad 84971 unique_id port 84971 terminate_cause User-Request 84971 bytes_out 0 84971 bytes_in 0 84971 station_ip 5.202.2.62 84971 port 15728758 84971 nas_port_type Virtual 84971 remote_ip 5.5.5.231 84980 username aminvpn 84980 mac 84980 bytes_out 0 84980 bytes_in 0 84941 remote_ip 10.8.0.6 84944 username aminvpn 84944 mac 84944 bytes_out 0 84944 bytes_in 0 84944 station_ip 83.122.100.131 84944 port 19 84944 unique_id port 84944 remote_ip 10.8.0.6 84948 username aminvpn 84948 mac 84948 bytes_out 89610 84948 bytes_in 127456 84948 station_ip 83.123.0.245 84948 port 19 84948 unique_id port 84948 remote_ip 10.8.0.6 84950 username mahdixz 84950 unique_id port 84950 terminate_cause User-Request 84950 bytes_out 1739676 84950 bytes_in 26649697 84950 station_ip 151.235.86.156 84950 port 15728751 84950 nas_port_type Virtual 84950 remote_ip 5.5.5.206 84953 username aminvpn 84953 mac 84953 bytes_out 71648 84953 bytes_in 104606 84953 station_ip 83.123.0.245 84953 port 19 84953 unique_id port 84953 remote_ip 10.8.0.6 84954 username aminvpn 84954 mac 84954 bytes_out 0 84954 bytes_in 0 84954 station_ip 83.123.220.73 84954 port 20 84954 unique_id port 84954 remote_ip 10.8.0.6 84963 username aminvpn 84963 mac 84963 bytes_out 0 84963 bytes_in 0 84963 station_ip 83.123.220.73 84963 port 20 84963 unique_id port 84963 remote_ip 10.8.0.6 84967 username aminvpn 84967 mac 84967 bytes_out 0 84967 bytes_in 0 84967 station_ip 83.123.0.245 84967 port 19 84967 unique_id port 84967 remote_ip 10.8.0.6 84970 username aminvpn 84970 mac 84970 bytes_out 0 84970 bytes_in 0 84970 station_ip 83.123.220.73 84970 port 20 84970 unique_id port 84970 remote_ip 10.8.0.6 84975 username aminvpn 84975 mac 84975 bytes_out 0 84975 bytes_in 0 84975 station_ip 83.123.0.245 84975 port 19 84975 unique_id port 84975 remote_ip 10.8.0.6 84978 username aminvpn 84978 mac 84978 bytes_out 0 84978 bytes_in 0 84978 station_ip 83.123.220.73 84978 port 20 84978 unique_id port 84978 remote_ip 10.8.0.6 84983 username alinezhad 84983 unique_id port 84983 terminate_cause User-Request 84983 bytes_out 0 84983 bytes_in 0 84983 station_ip 5.202.2.62 84983 port 15728761 84983 nas_port_type Virtual 84983 remote_ip 5.5.5.231 84985 username aminvpn 84985 mac 84985 bytes_out 0 84985 bytes_in 0 84985 station_ip 83.123.0.245 84985 port 19 84985 unique_id port 84985 remote_ip 10.8.0.6 84992 username aminvpn 84992 mac 84992 bytes_out 0 84992 bytes_in 0 84992 station_ip 83.123.0.245 84992 port 19 84992 unique_id port 84992 remote_ip 10.8.0.6 84993 username aminvpn 84993 mac 84993 bytes_out 0 84993 bytes_in 0 84993 station_ip 83.123.220.73 84993 port 20 84993 unique_id port 84993 remote_ip 10.8.0.6 84996 username aminvpn 84996 mac 84996 bytes_out 0 84996 bytes_in 0 84996 station_ip 83.123.0.245 84996 port 19 84996 unique_id port 84996 remote_ip 10.8.0.6 84997 username zamanialireza 84997 unique_id port 84997 terminate_cause User-Request 84997 bytes_out 0 84997 bytes_in 0 84997 station_ip 5.160.115.236 84997 port 15728764 84997 nas_port_type Virtual 84997 remote_ip 5.5.5.190 84999 username heydari 84999 unique_id port 84999 terminate_cause Lost-Carrier 84999 bytes_out 1108321 84999 bytes_in 6253467 84999 station_ip 5.119.107.40 84999 port 15728708 84999 nas_port_type Virtual 84999 remote_ip 5.5.5.215 85012 username forozande 85012 unique_id port 85012 terminate_cause User-Request 85012 bytes_out 39835 85012 bytes_in 73519 85012 station_ip 83.123.141.146 85012 port 15728768 85012 nas_port_type Virtual 85012 remote_ip 5.5.5.188 85016 username heydarizadeh 85016 unique_id port 85016 terminate_cause Lost-Carrier 84945 username aminvpn 84945 mac 84945 bytes_out 0 84945 bytes_in 0 84945 station_ip 83.123.220.73 84945 port 20 84945 unique_id port 84945 remote_ip 10.8.0.6 84949 username aminvpn 84949 mac 84949 bytes_out 0 84949 bytes_in 0 84949 station_ip 83.123.220.73 84949 port 20 84949 unique_id port 84949 remote_ip 10.8.0.6 84955 username aminvpn 84955 mac 84955 bytes_out 0 84955 bytes_in 0 84955 station_ip 83.123.0.245 84955 port 19 84955 unique_id port 84955 remote_ip 10.8.0.6 84959 username aminvpn 84959 mac 84959 bytes_out 0 84959 bytes_in 0 84959 station_ip 83.123.220.73 84959 port 20 84959 unique_id port 84959 remote_ip 10.8.0.6 84965 username caferibar 84965 kill_reason Maximum check online fails reached 84965 unique_id port 84965 bytes_out 1367293 84965 bytes_in 37873618 84965 station_ip 5.119.72.22 84965 port 15728755 84965 nas_port_type Virtual 84965 remote_ip 5.5.5.239 84972 username aminvpn 84972 mac 84972 bytes_out 0 84972 bytes_in 0 84972 station_ip 83.123.0.245 84972 port 19 84972 unique_id port 84972 remote_ip 10.8.0.6 84976 username aminvpn 84976 mac 84976 bytes_out 0 84976 bytes_in 0 84976 station_ip 83.123.220.73 84976 port 20 84976 unique_id port 84976 remote_ip 10.8.0.6 84979 username aminvpn 84979 mac 84979 bytes_out 0 84979 bytes_in 0 84979 station_ip 83.123.0.245 84979 port 19 84979 unique_id port 84979 remote_ip 10.8.0.6 84982 username aminvpn 84982 mac 84982 bytes_out 66037 84982 bytes_in 95310 84982 station_ip 83.123.0.245 84982 port 19 84982 unique_id port 84982 remote_ip 10.8.0.6 84984 username aminvpn 84984 mac 84984 bytes_out 0 84984 bytes_in 0 84984 station_ip 83.123.220.73 84984 port 20 84984 unique_id port 84984 remote_ip 10.8.0.6 84987 username aminvpn 84987 mac 84987 bytes_out 0 84987 bytes_in 0 84987 station_ip 83.123.220.73 84987 port 20 84987 unique_id port 84987 remote_ip 10.8.0.6 84990 username aminvpn 84990 mac 84990 bytes_out 0 84990 bytes_in 0 84990 station_ip 83.123.0.245 84990 port 19 84990 unique_id port 84990 remote_ip 10.8.0.6 85002 username aminvpn 85002 mac 85002 bytes_out 0 85002 bytes_in 0 85002 station_ip 83.123.0.245 85002 port 19 85002 unique_id port 85002 remote_ip 10.8.0.6 85003 username aminvpn 85003 mac 85003 bytes_out 0 85003 bytes_in 0 85003 station_ip 83.123.220.73 85003 port 20 85003 unique_id port 85003 remote_ip 10.8.0.6 85006 username aminvpn 85006 mac 85006 bytes_out 0 85006 bytes_in 0 85006 station_ip 83.123.0.245 85006 port 19 85006 unique_id port 85006 remote_ip 10.8.0.6 85008 username jamali 85008 unique_id port 85008 terminate_cause User-Request 85008 bytes_out 19280760 85008 bytes_in 512979450 85008 station_ip 5.119.146.104 85008 port 15728746 85008 nas_port_type Virtual 85008 remote_ip 5.5.5.198 85011 username asadi 85011 unique_id port 85011 terminate_cause User-Request 85011 bytes_out 331838 85011 bytes_in 10475256 85011 station_ip 83.122.40.160 85011 port 15728767 85011 nas_port_type Virtual 85011 remote_ip 5.5.5.189 85021 username aminvpn 85021 mac 85021 bytes_out 0 85021 bytes_in 0 85021 station_ip 83.123.0.245 85021 port 19 85021 unique_id port 85021 remote_ip 10.8.0.6 85024 username madadi 85024 unique_id port 85024 terminate_cause Lost-Carrier 85024 bytes_out 14984 85024 bytes_in 130234 85024 station_ip 5.120.114.49 85024 port 15728773 85024 nas_port_type Virtual 84973 remote_ip 10.8.0.6 84974 username arabpour 84974 unique_id port 84974 terminate_cause User-Request 84974 bytes_out 463505 84974 bytes_in 11812415 84974 station_ip 113.203.118.153 84974 port 15728759 84974 nas_port_type Virtual 84974 remote_ip 5.5.5.193 84977 username aminvpn 84977 mac 84977 bytes_out 0 84977 bytes_in 0 84977 station_ip 83.123.0.245 84977 port 19 84977 unique_id port 84977 remote_ip 10.8.0.6 84988 username aminvpn 84988 mac 84988 bytes_out 0 84988 bytes_in 0 84988 station_ip 83.123.0.245 84988 port 19 84988 unique_id port 84988 remote_ip 10.8.0.6 84991 username aminvpn 84991 mac 84991 bytes_out 0 84991 bytes_in 0 84991 station_ip 83.123.220.73 84991 port 20 84991 unique_id port 84991 remote_ip 10.8.0.6 84994 username aminvpn 84994 mac 84994 bytes_out 0 84994 bytes_in 0 84994 station_ip 83.123.0.245 84994 port 19 84994 unique_id port 84994 remote_ip 10.8.0.6 84998 username aminvpn 84998 mac 84998 bytes_out 0 84998 bytes_in 0 84998 station_ip 83.123.220.73 84998 port 20 84998 unique_id port 84998 remote_ip 10.8.0.6 85000 username aminvpn 85000 mac 85000 bytes_out 0 85000 bytes_in 0 85000 station_ip 83.123.0.245 85000 port 19 85000 unique_id port 85000 remote_ip 10.8.0.6 85004 username aminvpn 85004 mac 85004 bytes_out 0 85004 bytes_in 0 85004 station_ip 83.123.0.245 85004 port 19 85004 unique_id port 85004 remote_ip 10.8.0.6 85007 username aminvpn 85007 mac 85007 bytes_out 0 85007 bytes_in 0 85007 station_ip 83.123.220.73 85007 port 20 85007 unique_id port 85007 remote_ip 10.8.0.6 85009 username asadi 85009 unique_id port 85009 terminate_cause User-Request 85009 bytes_out 186062 85009 bytes_in 5769408 85009 station_ip 83.122.40.160 85009 port 15728765 85009 nas_port_type Virtual 85009 remote_ip 5.5.5.189 85010 username forozande 85010 unique_id port 85010 terminate_cause User-Request 85010 bytes_out 0 85010 bytes_in 0 85010 station_ip 83.123.141.146 85010 port 15728766 85010 nas_port_type Virtual 85010 remote_ip 5.5.5.188 85013 username asadi 85013 unique_id port 85013 terminate_cause User-Request 85013 bytes_out 242700 85013 bytes_in 6102861 85013 station_ip 83.122.40.160 85013 port 15728769 85013 nas_port_type Virtual 85013 remote_ip 5.5.5.189 85017 username aminvpn 85017 unique_id port 85017 terminate_cause Lost-Carrier 85017 bytes_out 4366120 85017 bytes_in 55673543 85017 station_ip 5.160.113.48 85017 port 15728753 85017 nas_port_type Virtual 85017 remote_ip 5.5.5.195 85023 username madadi 85023 unique_id port 85023 terminate_cause Lost-Carrier 85023 bytes_out 1419135 85023 bytes_in 1827543 85023 station_ip 5.119.79.58 85023 port 15728762 85023 nas_port_type Virtual 85023 remote_ip 5.5.5.191 85026 username asadi 85026 unique_id port 85026 terminate_cause User-Request 85026 bytes_out 515831 85026 bytes_in 19092949 85026 station_ip 83.122.40.160 85026 port 15728779 85026 nas_port_type Virtual 85026 remote_ip 5.5.5.189 85030 username asadi 85030 unique_id port 85030 terminate_cause User-Request 85030 bytes_out 116141 85030 bytes_in 2168394 85030 station_ip 83.122.40.160 85030 port 15728783 85030 nas_port_type Virtual 85030 remote_ip 5.5.5.189 85031 username heydari 85031 unique_id port 85031 terminate_cause Lost-Carrier 85031 bytes_out 102694 85031 bytes_in 690238 85031 station_ip 5.119.107.40 85031 port 15728778 85031 nas_port_type Virtual 85031 remote_ip 5.5.5.215 85037 username mahbobeh 85037 unique_id port 85037 terminate_cause Lost-Carrier 84980 station_ip 83.123.220.73 84980 port 20 84980 unique_id port 84980 remote_ip 10.8.0.6 84981 username alinezhad 84981 unique_id port 84981 terminate_cause User-Request 84981 bytes_out 0 84981 bytes_in 0 84981 station_ip 5.202.2.62 84981 port 15728760 84981 nas_port_type Virtual 84981 remote_ip 5.5.5.231 84986 username madadi 84986 unique_id port 84986 terminate_cause Lost-Carrier 84986 bytes_out 433448 84986 bytes_in 2804393 84986 station_ip 5.119.229.209 84986 port 15728756 84986 nas_port_type Virtual 84986 remote_ip 5.5.5.194 84989 username aminvpn 84989 mac 84989 bytes_out 0 84989 bytes_in 0 84989 station_ip 83.123.220.73 84989 port 20 84989 unique_id port 84989 remote_ip 10.8.0.6 84995 username aminvpn 84995 mac 84995 bytes_out 0 84995 bytes_in 0 84995 station_ip 83.123.220.73 84995 port 20 84995 unique_id port 84995 remote_ip 10.8.0.6 85001 username aminvpn 85001 mac 85001 bytes_out 0 85001 bytes_in 0 85001 station_ip 83.123.220.73 85001 port 20 85001 unique_id port 85001 remote_ip 10.8.0.6 85005 username aminvpn 85005 mac 85005 bytes_out 0 85005 bytes_in 0 85005 station_ip 83.123.220.73 85005 port 20 85005 unique_id port 85005 remote_ip 10.8.0.6 85014 username forozande 85014 unique_id port 85014 terminate_cause User-Request 85014 bytes_out 15884 85014 bytes_in 35016 85014 station_ip 83.122.119.192 85014 port 15728771 85014 nas_port_type Virtual 85014 remote_ip 5.5.5.186 85015 username ahmadipour 85015 unique_id port 85015 terminate_cause Lost-Carrier 85015 bytes_out 272269 85015 bytes_in 4934169 85015 station_ip 37.129.127.181 85015 port 15728770 85015 nas_port_type Virtual 85015 remote_ip 5.5.5.187 85019 username amirabbas 85019 unique_id port 85019 terminate_cause User-Request 85019 bytes_out 132081740 85019 bytes_in 3637906955 85019 station_ip 31.59.47.42 85019 port 15728693 85019 nas_port_type Virtual 85019 remote_ip 5.5.5.225 85020 username sobhan 85020 unique_id port 85020 terminate_cause Lost-Carrier 85020 bytes_out 4783329 85020 bytes_in 114438968 85020 station_ip 5.119.220.89 85020 port 15728772 85020 nas_port_type Virtual 85020 remote_ip 5.5.5.185 85029 username forozande 85029 unique_id port 85029 terminate_cause User-Request 85029 bytes_out 55784 85029 bytes_in 131355 85029 station_ip 113.203.8.39 85029 port 15728782 85029 nas_port_type Virtual 85029 remote_ip 5.5.5.179 85033 username ksrkrgr 85033 unique_id port 85033 terminate_cause User-Request 85033 bytes_out 6016094 85033 bytes_in 25236274 85033 station_ip 94.176.14.96 85033 port 15728775 85033 nas_port_type Virtual 85033 remote_ip 5.5.5.183 85036 username ksrkrgr 85036 unique_id port 85036 terminate_cause User-Request 85036 bytes_out 2215511 85036 bytes_in 46124484 85036 station_ip 94.176.14.96 85036 port 15728788 85036 nas_port_type Virtual 85036 remote_ip 5.5.5.183 85041 username zamanialireza 85041 unique_id port 85041 terminate_cause User-Request 85041 bytes_out 0 85041 bytes_in 0 85041 station_ip 83.123.93.252 85041 port 15728794 85041 nas_port_type Virtual 85041 remote_ip 5.5.5.174 85206 remote_ip 5.5.5.111 85213 username forozande 85213 unique_id port 85213 terminate_cause User-Request 85213 bytes_out 0 85213 bytes_in 0 85213 station_ip 83.122.30.105 85213 port 15728648 85213 nas_port_type Virtual 85213 remote_ip 5.5.5.252 85215 username asadi 85215 unique_id port 85215 terminate_cause User-Request 85215 bytes_out 354254 85215 bytes_in 10097926 85215 station_ip 37.129.232.60 85215 port 15728650 85215 nas_port_type Virtual 85047 username afarin 85047 unique_id port 85016 bytes_out 6158882 85016 bytes_in 231650196 85016 station_ip 5.119.107.40 85016 port 15728709 85016 nas_port_type Virtual 85016 remote_ip 5.5.5.214 85018 username amir 85018 unique_id port 85018 terminate_cause Lost-Carrier 85018 bytes_out 13802988 85018 bytes_in 25881341 85018 station_ip 46.225.208.141 85018 port 15728763 85018 nas_port_type Virtual 85018 remote_ip 5.5.5.192 85022 username ksrkrgr 85022 unique_id port 85022 terminate_cause User-Request 85022 bytes_out 0 85022 bytes_in 0 85022 station_ip 94.176.14.96 85022 port 15728774 85022 nas_port_type Virtual 85022 remote_ip 5.5.5.183 85025 username ahmadi 85025 unique_id port 85025 terminate_cause User-Request 85025 bytes_out 95928 85025 bytes_in 1714430 85025 station_ip 37.129.137.216 85025 port 15728777 85025 nas_port_type Virtual 85025 remote_ip 5.5.5.181 85027 username soleymani 85027 unique_id port 85027 terminate_cause Lost-Carrier 85027 bytes_out 461554 85027 bytes_in 14862555 85027 station_ip 5.124.191.237 85027 port 15728776 85027 nas_port_type Virtual 85027 remote_ip 5.5.5.182 85028 username alinezhad 85028 unique_id port 85028 terminate_cause User-Request 85028 bytes_out 0 85028 bytes_in 0 85028 station_ip 5.202.2.62 85028 port 15728781 85028 nas_port_type Virtual 85028 remote_ip 5.5.5.231 85034 username arabpour 85034 unique_id port 85034 terminate_cause User-Request 85034 bytes_out 516497 85034 bytes_in 16841704 85034 station_ip 83.122.237.221 85034 port 15728787 85034 nas_port_type Virtual 85034 remote_ip 5.5.5.176 85040 username forozande 85040 unique_id port 85040 terminate_cause User-Request 85040 bytes_out 16444 85040 bytes_in 102770 85040 station_ip 37.129.251.111 85040 port 15728793 85040 nas_port_type Virtual 85040 remote_ip 5.5.5.175 85042 username forozande 85042 unique_id port 85042 terminate_cause User-Request 85042 bytes_out 23053 85042 bytes_in 271502 85042 station_ip 37.129.251.111 85042 port 15728795 85042 nas_port_type Virtual 85042 remote_ip 5.5.5.175 85207 username alinezhad 85207 unique_id port 85207 terminate_cause User-Request 85207 bytes_out 324916 85207 bytes_in 1178995 85207 station_ip 83.122.58.208 85207 port 15728640 85207 nas_port_type Virtual 85207 remote_ip 5.5.5.255 85052 username madadi 85052 unique_id port 85052 terminate_cause Lost-Carrier 85052 bytes_out 1303584 85052 bytes_in 2675749 85052 station_ip 5.119.201.214 85052 port 15728784 85052 nas_port_type Virtual 85052 remote_ip 5.5.5.178 85209 username forozande 85209 unique_id port 85209 terminate_cause User-Request 85209 bytes_out 150032 85209 bytes_in 304318 85209 station_ip 83.122.30.105 85209 port 15728643 85209 nas_port_type Virtual 85209 remote_ip 5.5.5.252 85061 username farhad 85061 unique_id port 85061 terminate_cause Lost-Carrier 85061 bytes_out 11127521 85061 bytes_in 87564918 85061 station_ip 5.119.217.244 85061 port 15728785 85061 nas_port_type Virtual 85061 remote_ip 5.5.5.177 85065 username forozande 85065 unique_id port 85065 terminate_cause User-Request 85065 bytes_out 21484 85065 bytes_in 76083 85065 station_ip 83.123.112.83 85065 port 15728825 85065 nas_port_type Virtual 85065 remote_ip 5.5.5.160 85069 username forozande 85069 unique_id port 85069 terminate_cause User-Request 85069 bytes_out 17947 85069 bytes_in 223868 85069 station_ip 83.123.215.247 85069 port 15728827 85069 nas_port_type Virtual 85069 remote_ip 5.5.5.159 85070 username madadi 85070 unique_id port 85070 terminate_cause Lost-Carrier 85070 bytes_out 23491 85070 bytes_in 136150 85070 station_ip 5.120.48.152 85070 port 15728821 85070 nas_port_type Virtual 85070 remote_ip 5.5.5.162 85073 username asadi 85073 unique_id port 85024 remote_ip 5.5.5.184 85032 username hamideh 85032 kill_reason Relative expiration date has reached 85032 unique_id port 85032 bytes_out 0 85032 bytes_in 0 85032 station_ip 5.119.169.230 85032 port 15728786 85032 nas_port_type Virtual 85035 username alinezhad 85035 unique_id port 85035 terminate_cause User-Request 85035 bytes_out 0 85035 bytes_in 0 85035 station_ip 5.202.2.62 85035 port 15728790 85035 nas_port_type Virtual 85035 remote_ip 5.5.5.231 85038 username aminvpn 85038 mac 85038 bytes_out 743214 85038 bytes_in 2512668 85038 station_ip 83.123.235.25 85038 port 19 85038 unique_id port 85038 remote_ip 10.8.0.6 85043 username alinezhad 85043 unique_id port 85043 terminate_cause User-Request 85043 bytes_out 0 85043 bytes_in 0 85043 station_ip 5.202.2.62 85043 port 15728798 85043 nas_port_type Virtual 85043 remote_ip 5.5.5.231 85210 username mobina 85210 kill_reason Relative expiration date has reached 85210 unique_id port 85210 bytes_out 0 85210 bytes_in 0 85210 station_ip 5.124.79.133 85210 port 15728647 85210 nas_port_type Virtual 85214 username forozande 85214 unique_id port 85214 terminate_cause User-Request 85214 bytes_out 38485 85214 bytes_in 504049 85214 station_ip 83.122.30.105 85214 port 15728649 85214 nas_port_type Virtual 85214 remote_ip 5.5.5.252 85223 username forozande 85223 unique_id port 85223 terminate_cause User-Request 85223 bytes_out 27762 85223 bytes_in 49895 85223 station_ip 113.203.59.110 85223 port 15728656 85223 nas_port_type Virtual 85223 remote_ip 5.5.5.250 85225 username asadi 85058 username forozande 85058 unique_id port 85058 terminate_cause User-Request 85058 bytes_out 108313 85058 bytes_in 289086 85058 station_ip 37.129.145.62 85058 port 15728815 85058 nas_port_type Virtual 85058 remote_ip 5.5.5.166 85059 username aminvpn 85059 mac 85059 bytes_out 0 85059 bytes_in 0 85059 station_ip 5.120.80.124 85059 port 35 85059 unique_id port 85059 remote_ip 10.8.1.10 85063 username ahmadipour 85063 unique_id port 85063 terminate_cause Lost-Carrier 85063 bytes_out 273795 85063 bytes_in 6256158 85063 station_ip 37.129.72.189 85063 port 15728819 85063 nas_port_type Virtual 85063 remote_ip 5.5.5.163 85064 username zamanialireza 85064 unique_id port 85064 terminate_cause User-Request 85064 bytes_out 0 85064 bytes_in 0 85064 station_ip 94.183.213.166 85064 port 15728822 85064 nas_port_type Virtual 85064 remote_ip 5.5.5.161 85068 username zamanialireza 85068 unique_id port 85068 terminate_cause Lost-Carrier 85068 bytes_out 3675042 85068 bytes_in 99150759 85068 station_ip 94.183.213.166 85068 port 15728802 85068 nas_port_type Virtual 85068 remote_ip 5.5.5.170 85071 username aminvpn 85071 mac 85071 bytes_out 422242 85071 bytes_in 1900966 85071 station_ip 5.120.80.124 85071 port 35 85071 unique_id port 85071 remote_ip 10.8.1.10 85074 username madadi 85074 unique_id port 85074 terminate_cause Lost-Carrier 85074 bytes_out 17946 85074 bytes_in 132980 85074 station_ip 5.119.159.252 85074 port 15728828 85074 nas_port_type Virtual 85074 remote_ip 5.5.5.158 85077 username arman 85077 unique_id port 85077 terminate_cause User-Request 85077 bytes_out 0 85077 bytes_in 0 85077 station_ip 5.119.111.20 85077 port 15728832 85077 nas_port_type Virtual 85077 remote_ip 5.5.5.156 85080 username asadi 85080 unique_id port 85080 terminate_cause User-Request 85080 bytes_out 80816 85080 bytes_in 879172 85080 station_ip 83.122.40.160 85080 port 15728834 85080 nas_port_type Virtual 85080 remote_ip 5.5.5.189 85084 username asadi 85084 unique_id port 85084 terminate_cause User-Request 85084 bytes_out 93223 85037 bytes_out 5996066 85037 bytes_in 114760452 85037 station_ip 83.122.111.116 85037 port 15728780 85037 nas_port_type Virtual 85037 remote_ip 5.5.5.180 85039 username forozande 85039 unique_id port 85039 terminate_cause User-Request 85039 bytes_out 53138 85039 bytes_in 409289 85039 station_ip 37.129.251.111 85039 port 15728792 85039 nas_port_type Virtual 85039 remote_ip 5.5.5.175 85057 username mahbobeh 85057 unique_id port 85057 terminate_cause Lost-Carrier 85057 bytes_out 402174 85057 bytes_in 7698684 85057 station_ip 83.122.111.116 85057 port 15728791 85057 nas_port_type Virtual 85057 remote_ip 5.5.5.180 85062 username asadi 85062 unique_id port 85062 terminate_cause User-Request 85062 bytes_out 24540 85062 bytes_in 80282 85062 station_ip 83.122.40.160 85062 port 15728820 85062 nas_port_type Virtual 85062 remote_ip 5.5.5.189 85067 username zamanialireza 85067 unique_id port 85067 terminate_cause User-Request 85067 bytes_out 549592 85067 bytes_in 20773443 85067 station_ip 94.183.213.166 85067 port 15728823 85067 nas_port_type Virtual 85067 remote_ip 5.5.5.161 85072 username amir 85072 unique_id port 85072 terminate_cause Lost-Carrier 85072 bytes_out 2956552 85072 bytes_in 34917637 85072 station_ip 46.225.213.67 85072 port 15728810 85072 nas_port_type Virtual 85072 remote_ip 5.5.5.167 85083 username ksrkrgr 85083 unique_id port 85083 terminate_cause User-Request 85083 bytes_out 173216 85083 bytes_in 771140 85083 station_ip 94.176.14.96 85083 port 15728839 85083 nas_port_type Virtual 85083 remote_ip 5.5.5.183 85099 username ksrkrgr 85099 unique_id port 85099 terminate_cause User-Request 85099 bytes_out 898826 85099 bytes_in 2704194 85099 station_ip 94.176.14.96 85099 port 15728855 85099 nas_port_type Virtual 85099 remote_ip 5.5.5.183 85100 username aminvpn 85100 mac 85100 bytes_out 0 85100 bytes_in 0 85100 station_ip 37.129.242.159 85100 port 19 85100 unique_id port 85100 remote_ip 10.8.0.6 85102 username madadi 85102 unique_id port 85102 terminate_cause Lost-Carrier 85102 bytes_out 77914 85102 bytes_in 199311 85102 station_ip 5.119.209.26 85102 port 15728858 85102 nas_port_type Virtual 85102 remote_ip 5.5.5.143 85109 username arabpour 85109 unique_id port 85109 terminate_cause User-Request 85109 bytes_out 0 85109 bytes_in 0 85109 station_ip 83.122.239.11 85109 port 15728865 85109 nas_port_type Virtual 85109 remote_ip 5.5.5.140 85114 username aminvpn 85114 mac 85114 bytes_out 0 85114 bytes_in 0 85114 station_ip 37.129.242.159 85114 port 19 85114 unique_id port 85114 remote_ip 10.8.0.6 85120 username aminvpn 85120 mac 85120 bytes_out 0 85120 bytes_in 0 85120 station_ip 37.129.242.159 85120 port 19 85120 unique_id port 85120 remote_ip 10.8.0.6 85122 username aminvpn 85122 mac 85122 bytes_out 0 85122 bytes_in 0 85122 station_ip 83.123.156.89 85122 port 20 85122 unique_id port 85122 remote_ip 10.8.0.6 85128 username aminvpn 85128 mac 85128 bytes_out 0 85128 bytes_in 0 85128 station_ip 37.129.242.159 85128 port 20 85128 unique_id port 85128 remote_ip 10.8.0.6 85139 username aminvpn 85139 mac 85139 bytes_out 0 85139 bytes_in 0 85139 station_ip 5.119.64.56 85139 port 19 85139 unique_id port 85139 remote_ip 10.8.0.6 85146 username aminvpn 85146 mac 85146 bytes_out 0 85146 bytes_in 0 85146 station_ip 83.123.156.89 85146 port 20 85146 unique_id port 85146 remote_ip 10.8.0.6 85148 username aminvpn 85148 unique_id port 85148 terminate_cause Lost-Carrier 85148 bytes_out 433661 85148 bytes_in 7434950 85047 terminate_cause Lost-Carrier 85047 bytes_out 1407197 85047 bytes_in 35920444 85047 station_ip 31.56.112.125 85047 port 15728796 85047 nas_port_type Virtual 85047 remote_ip 5.5.5.173 85211 username asadi 85211 unique_id port 85211 terminate_cause User-Request 85211 bytes_out 493055 85211 bytes_in 8964463 85211 station_ip 37.129.232.60 85211 port 15728645 85211 nas_port_type Virtual 85211 remote_ip 5.5.5.254 85049 username asadi 85049 unique_id port 85049 terminate_cause User-Request 85049 bytes_out 183059 85049 bytes_in 4937850 85049 station_ip 83.122.40.160 85049 port 15728805 85049 nas_port_type Virtual 85049 remote_ip 5.5.5.189 85219 username caferibar 85219 unique_id port 85219 terminate_cause Lost-Carrier 85219 bytes_out 1276849 85219 bytes_in 20813173 85219 station_ip 5.119.159.171 85219 port 15728642 85219 nas_port_type Virtual 85219 remote_ip 5.5.5.253 85221 username goli 85221 kill_reason Absolute expiration date has reached 85221 unique_id port 85221 bytes_out 0 85221 bytes_in 0 85221 station_ip 83.122.11.38 85221 port 15728654 85221 nas_port_type Virtual 85056 username caferibar 85056 unique_id port 85056 terminate_cause User-Request 85056 bytes_out 9263196 85056 bytes_in 227091546 85056 station_ip 5.119.72.22 85056 port 15728797 85056 nas_port_type Virtual 85056 remote_ip 5.5.5.239 85066 username soleymani 85066 unique_id port 85066 terminate_cause Lost-Carrier 85066 bytes_out 207160 85066 bytes_in 1699730 85066 station_ip 5.123.18.40 85066 port 15728818 85066 nas_port_type Virtual 85066 remote_ip 5.5.5.164 85076 username amirabbas 85076 unique_id port 85076 terminate_cause Lost-Carrier 85076 bytes_out 45364760 85076 bytes_in 1305276054 85076 station_ip 31.59.47.42 85076 port 15728789 85076 nas_port_type Virtual 85076 remote_ip 5.5.5.225 85081 username madadi 85081 unique_id port 85081 terminate_cause Lost-Carrier 85081 bytes_out 11505 85081 bytes_in 134554 85081 station_ip 5.119.71.212 85081 port 15728836 85081 nas_port_type Virtual 85081 remote_ip 5.5.5.154 85085 username arabpour 85085 unique_id port 85085 terminate_cause User-Request 85085 bytes_out 31207 85085 bytes_in 264675 85085 station_ip 83.123.19.219 85085 port 15728842 85085 nas_port_type Virtual 85085 remote_ip 5.5.5.150 85087 username forozande 85087 unique_id port 85087 terminate_cause User-Request 85087 bytes_out 59212 85087 bytes_in 139841 85087 station_ip 83.123.113.173 85087 port 15728846 85087 nas_port_type Virtual 85087 remote_ip 5.5.5.149 85088 username mahdixz 85088 unique_id port 85088 terminate_cause User-Request 85088 bytes_out 184695 85088 bytes_in 1238529 85088 station_ip 151.235.97.255 85088 port 15728847 85088 nas_port_type Virtual 85088 remote_ip 5.5.5.148 85091 username soleymani 85091 unique_id port 85091 terminate_cause Lost-Carrier 85091 bytes_out 381047 85091 bytes_in 4231562 85091 station_ip 5.124.181.23 85091 port 15728849 85091 nas_port_type Virtual 85091 remote_ip 5.5.5.147 85093 username zamanialireza 85093 unique_id port 85093 terminate_cause User-Request 85093 bytes_out 189288 85093 bytes_in 1755031 85093 station_ip 5.134.138.138 85093 port 15728852 85093 nas_port_type Virtual 85093 remote_ip 5.5.5.153 85095 username mahdixz 85095 unique_id port 85095 terminate_cause User-Request 85095 bytes_out 1473171 85095 bytes_in 9311814 85095 station_ip 151.235.97.255 85095 port 15728848 85095 nas_port_type Virtual 85095 remote_ip 5.5.5.148 85096 username zamanialireza 85096 unique_id port 85096 terminate_cause User-Request 85096 bytes_out 292729 85096 bytes_in 7407893 85096 station_ip 94.183.213.166 85096 port 15728856 85096 nas_port_type Virtual 85096 remote_ip 5.5.5.161 85073 terminate_cause User-Request 85073 bytes_out 297744 85073 bytes_in 11144567 85073 station_ip 83.122.40.160 85073 port 15728829 85073 nas_port_type Virtual 85073 remote_ip 5.5.5.189 85075 username caferibar 85075 unique_id port 85075 terminate_cause User-Request 85075 bytes_out 16435095 85075 bytes_in 320418919 85075 station_ip 5.119.72.22 85075 port 15728814 85075 nas_port_type Virtual 85075 remote_ip 5.5.5.239 85078 username arman 85078 unique_id port 85078 terminate_cause User-Request 85078 bytes_out 0 85078 bytes_in 0 85078 station_ip 5.119.111.20 85078 port 15728833 85078 nas_port_type Virtual 85078 remote_ip 5.5.5.156 85079 username alinezhad 85079 unique_id port 85079 terminate_cause User-Request 85079 bytes_out 0 85079 bytes_in 0 85079 station_ip 83.122.238.128 85079 port 15728835 85079 nas_port_type Virtual 85079 remote_ip 5.5.5.155 85082 username arabpour 85082 unique_id port 85082 terminate_cause User-Request 85082 bytes_out 368180 85082 bytes_in 11098026 85082 station_ip 37.129.6.4 85082 port 15728838 85082 nas_port_type Virtual 85082 remote_ip 5.5.5.152 85089 username zamanialireza 85089 unique_id port 85089 terminate_cause User-Request 85089 bytes_out 14612617 85089 bytes_in 311129311 85089 station_ip 5.134.138.138 85089 port 15728837 85089 nas_port_type Virtual 85089 remote_ip 5.5.5.153 85090 username forozande 85090 unique_id port 85090 terminate_cause User-Request 85090 bytes_out 137777 85090 bytes_in 953196 85090 station_ip 83.122.124.113 85090 port 15728851 85090 nas_port_type Virtual 85090 remote_ip 5.5.5.145 85104 username heydari 85104 unique_id port 85104 terminate_cause Lost-Carrier 85104 bytes_out 902761 85104 bytes_in 15637505 85104 station_ip 5.119.107.40 85104 port 15728830 85104 nas_port_type Virtual 85104 remote_ip 5.5.5.215 85107 username amirabbas 85107 unique_id port 85107 terminate_cause User-Request 85107 bytes_out 16470226 85107 bytes_in 425551927 85107 station_ip 151.238.224.14 85107 port 15728831 85107 nas_port_type Virtual 85107 remote_ip 5.5.5.157 85111 username mahbobeh 85111 unique_id port 85111 terminate_cause Lost-Carrier 85111 bytes_out 1712277 85111 bytes_in 33929072 85111 station_ip 83.122.111.116 85111 port 15728857 85111 nas_port_type Virtual 85111 remote_ip 5.5.5.180 85113 username aminvpn 85113 mac 85113 bytes_out 0 85113 bytes_in 0 85113 station_ip 83.123.156.89 85113 port 20 85113 unique_id port 85113 remote_ip 10.8.0.6 85123 username aminvpn 85123 mac 85123 bytes_out 0 85123 bytes_in 0 85123 station_ip 5.119.64.56 85123 port 19 85123 unique_id port 85123 remote_ip 10.8.0.6 85126 username aminvpn 85126 mac 85126 bytes_out 0 85126 bytes_in 0 85126 station_ip 83.123.156.89 85126 port 20 85126 unique_id port 85126 remote_ip 10.8.0.6 85127 username aminvpn 85127 mac 85127 bytes_out 0 85127 bytes_in 0 85127 station_ip 5.119.64.56 85127 port 19 85127 unique_id port 85127 remote_ip 10.8.0.6 85129 username aminvpn 85129 mac 85129 bytes_out 0 85129 bytes_in 0 85129 station_ip 83.123.156.89 85129 port 19 85129 unique_id port 85129 remote_ip 10.8.0.6 85133 username aminvpn 85133 mac 85133 bytes_out 0 85133 bytes_in 0 85133 station_ip 5.119.64.56 85133 port 19 85133 unique_id port 85133 remote_ip 10.8.0.6 85138 username aminvpn 85138 mac 85138 bytes_out 0 85138 bytes_in 0 85138 station_ip 83.123.156.89 85138 port 20 85138 unique_id port 85138 remote_ip 10.8.0.6 85140 username aminvpn 85140 unique_id port 85140 terminate_cause Lost-Carrier 85140 bytes_out 676665 85084 bytes_in 778696 85084 station_ip 83.122.40.160 85084 port 15728841 85084 nas_port_type Virtual 85084 remote_ip 5.5.5.189 85086 username madadi 85086 unique_id port 85086 terminate_cause Lost-Carrier 85086 bytes_out 9387 85086 bytes_in 120829 85086 station_ip 5.119.174.34 85086 port 15728840 85086 nas_port_type Virtual 85086 remote_ip 5.5.5.151 85092 username madadi 85092 unique_id port 85092 terminate_cause Lost-Carrier 85092 bytes_out 9318 85092 bytes_in 122696 85092 station_ip 5.119.75.226 85092 port 15728850 85092 nas_port_type Virtual 85092 remote_ip 5.5.5.146 85094 username aminvpn 85094 mac 85094 bytes_out 0 85094 bytes_in 0 85094 station_ip 83.123.235.25 85094 port 19 85094 unique_id port 85094 remote_ip 10.8.0.6 85097 username madadi 85097 unique_id port 85097 terminate_cause Lost-Carrier 85097 bytes_out 5671 85097 bytes_in 119076 85097 station_ip 5.119.133.220 85097 port 15728854 85097 nas_port_type Virtual 85097 remote_ip 5.5.5.144 85103 username aminvpn 85103 mac 85103 bytes_out 62995 85103 bytes_in 749451 85103 station_ip 5.119.64.56 85103 port 35 85103 unique_id port 85103 remote_ip 10.8.1.10 85108 username caferibar 85108 unique_id port 85108 terminate_cause Lost-Carrier 85108 bytes_out 1074984 85108 bytes_in 8596080 85108 station_ip 93.114.27.175 85108 port 15728859 85108 nas_port_type Virtual 85108 remote_ip 5.5.5.142 85110 username khalili 85110 unique_id port 85110 terminate_cause Lost-Carrier 85110 bytes_out 9159102 85110 bytes_in 166478216 85110 station_ip 5.119.86.202 85110 port 15728736 85110 nas_port_type Virtual 85110 remote_ip 5.5.5.203 85116 username aminvpn 85116 mac 85116 bytes_out 0 85116 bytes_in 0 85116 station_ip 37.129.242.159 85116 port 19 85116 unique_id port 85116 remote_ip 10.8.0.6 85119 username aminvpn 85119 mac 85119 bytes_out 0 85119 bytes_in 0 85119 station_ip 83.123.156.89 85119 port 20 85119 unique_id port 85119 remote_ip 10.8.0.6 85121 username ahmadipour 85121 unique_id port 85121 terminate_cause Lost-Carrier 85121 bytes_out 4042426 85121 bytes_in 70430435 85121 station_ip 37.129.18.145 85121 port 15728866 85121 nas_port_type Virtual 85121 remote_ip 5.5.5.139 85124 username aminvpn 85124 mac 85124 bytes_out 0 85124 bytes_in 0 85124 station_ip 83.123.156.89 85124 port 20 85124 unique_id port 85124 remote_ip 10.8.0.6 85130 username aminvpn 85130 mac 85130 bytes_out 0 85130 bytes_in 0 85130 station_ip 5.119.64.56 85130 port 20 85130 unique_id port 85130 remote_ip 10.8.0.6 85132 username aminvpn 85132 mac 85132 bytes_out 0 85132 bytes_in 0 85132 station_ip 83.123.156.89 85132 port 20 85132 unique_id port 85132 remote_ip 10.8.0.6 85134 username aminvpn 85134 mac 85134 bytes_out 0 85134 bytes_in 0 85134 station_ip 37.129.242.159 85134 port 20 85134 unique_id port 85134 remote_ip 10.8.0.6 85136 username aminvpn 85136 mac 85136 bytes_out 0 85136 bytes_in 0 85136 station_ip 5.119.64.56 85136 port 20 85136 unique_id port 85136 remote_ip 10.8.0.6 85141 username aminvpn 85141 mac 85141 bytes_out 0 85141 bytes_in 0 85141 station_ip 83.123.156.89 85141 port 20 85141 unique_id port 85141 remote_ip 10.8.0.6 85145 username aminvpn 85145 mac 85145 bytes_out 0 85145 bytes_in 0 85145 station_ip 37.129.242.159 85145 port 19 85145 unique_id port 85145 remote_ip 10.8.0.6 85149 username aminvpn 85149 mac 85149 bytes_out 35595 85149 bytes_in 59466 85149 station_ip 5.120.169.83 85098 username farhad 85098 unique_id port 85098 terminate_cause Lost-Carrier 85098 bytes_out 15795701 85098 bytes_in 248287000 85098 station_ip 5.120.130.66 85098 port 15728816 85098 nas_port_type Virtual 85098 remote_ip 5.5.5.165 85101 username aminvpn 85101 mac 85101 bytes_out 0 85101 bytes_in 0 85101 station_ip 5.119.64.56 85101 port 20 85101 unique_id port 85101 remote_ip 10.8.0.6 85105 username ahmadi 85105 unique_id port 85105 terminate_cause User-Request 85105 bytes_out 65645 85105 bytes_in 542502 85105 station_ip 83.123.209.90 85105 port 15728860 85105 nas_port_type Virtual 85105 remote_ip 5.5.5.141 85106 username arabpour 85106 unique_id port 85106 terminate_cause User-Request 85106 bytes_out 0 85106 bytes_in 0 85106 station_ip 83.122.239.11 85106 port 15728863 85106 nas_port_type Virtual 85106 remote_ip 5.5.5.140 85112 username aminvpn 85112 mac 85112 bytes_out 0 85112 bytes_in 0 85112 station_ip 37.129.242.159 85112 port 19 85112 unique_id port 85112 remote_ip 10.8.0.6 85115 username aminvpn 85115 mac 85115 bytes_out 0 85115 bytes_in 0 85115 station_ip 83.123.156.89 85115 port 20 85115 unique_id port 85115 remote_ip 10.8.0.6 85117 username aminvpn 85117 mac 85117 bytes_out 0 85117 bytes_in 0 85117 station_ip 83.123.156.89 85117 port 20 85117 unique_id port 85117 remote_ip 10.8.0.6 85118 username aminvpn 85118 mac 85118 bytes_out 0 85118 bytes_in 0 85118 station_ip 37.129.242.159 85118 port 19 85118 unique_id port 85118 remote_ip 10.8.0.6 85125 username aminvpn 85125 mac 85125 bytes_out 0 85125 bytes_in 0 85125 station_ip 5.119.64.56 85125 port 19 85125 unique_id port 85125 remote_ip 10.8.0.6 85131 username aminvpn 85131 mac 85131 bytes_out 0 85131 bytes_in 0 85131 station_ip 37.129.242.159 85131 port 19 85131 unique_id port 85131 remote_ip 10.8.0.6 85135 username aminvpn 85135 mac 85135 bytes_out 0 85135 bytes_in 0 85135 station_ip 83.123.156.89 85135 port 19 85135 unique_id port 85135 remote_ip 10.8.0.6 85137 username aminvpn 85137 mac 85137 bytes_out 0 85137 bytes_in 0 85137 station_ip 37.129.242.159 85137 port 19 85137 unique_id port 85137 remote_ip 10.8.0.6 85142 username aminvpn 85142 mac 85142 bytes_out 0 85142 bytes_in 0 85142 station_ip 37.129.242.159 85142 port 19 85142 unique_id port 85142 remote_ip 10.8.0.6 85144 username mahdixz 85144 unique_id port 85144 terminate_cause User-Request 85144 bytes_out 65378 85144 bytes_in 203213 85144 station_ip 151.235.97.255 85144 port 15728872 85144 nas_port_type Virtual 85144 remote_ip 5.5.5.148 85151 username forozande 85151 unique_id port 85151 terminate_cause User-Request 85151 bytes_out 172893 85151 bytes_in 2240038 85151 station_ip 83.123.108.145 85151 port 15728874 85151 nas_port_type Virtual 85151 remote_ip 5.5.5.134 85153 username madadi 85153 unique_id port 85153 terminate_cause Lost-Carrier 85153 bytes_out 319718 85153 bytes_in 911294 85153 station_ip 5.119.118.17 85153 port 15728868 85153 nas_port_type Virtual 85153 remote_ip 5.5.5.138 85155 username mahdavi 85155 unique_id port 85155 terminate_cause User-Request 85155 bytes_out 37109 85155 bytes_in 61307 85155 station_ip 83.123.45.186 85155 port 15728879 85155 nas_port_type Virtual 85155 remote_ip 5.5.5.131 85158 username alinezhad 85158 unique_id port 85158 terminate_cause User-Request 85158 bytes_out 158865 85158 bytes_in 674403 85158 station_ip 5.202.96.143 85158 port 15728882 85158 nas_port_type Virtual 85140 bytes_in 9109059 85140 station_ip 5.119.64.56 85140 port 15728870 85140 nas_port_type Virtual 85140 remote_ip 5.5.5.137 85143 username aminvpn 85143 mac 85143 bytes_out 0 85143 bytes_in 0 85143 station_ip 83.123.156.89 85143 port 20 85143 unique_id port 85143 remote_ip 10.8.0.6 85147 username aminvpn 85147 mac 85147 bytes_out 0 85147 bytes_in 0 85147 station_ip 37.129.242.159 85147 port 19 85147 unique_id port 85147 remote_ip 10.8.0.6 85150 username arabpour 85150 unique_id port 85150 terminate_cause User-Request 85150 bytes_out 527037 85150 bytes_in 15641865 85150 station_ip 83.123.74.23 85150 port 15728873 85150 nas_port_type Virtual 85150 remote_ip 5.5.5.135 85157 username asadi 85157 unique_id port 85157 terminate_cause User-Request 85157 bytes_out 239135 85157 bytes_in 3969408 85157 station_ip 83.122.40.160 85157 port 15728881 85157 nas_port_type Virtual 85157 remote_ip 5.5.5.189 85160 username mahbobeh 85160 unique_id port 85160 terminate_cause Lost-Carrier 85160 bytes_out 1416707 85160 bytes_in 16922453 85160 station_ip 83.122.111.116 85160 port 15728867 85160 nas_port_type Virtual 85160 remote_ip 5.5.5.180 85170 username alinezhad 85170 unique_id port 85170 terminate_cause User-Request 85170 bytes_out 0 85170 bytes_in 0 85170 station_ip 5.202.96.143 85170 port 15728892 85170 nas_port_type Virtual 85170 remote_ip 5.5.5.130 85173 username zamanialireza 85173 unique_id port 85173 terminate_cause User-Request 85173 bytes_out 0 85173 bytes_in 0 85173 station_ip 37.129.187.223 85173 port 15728894 85173 nas_port_type Virtual 85173 remote_ip 5.5.5.128 85174 username caferibar 85174 unique_id port 85174 terminate_cause User-Request 85174 bytes_out 7197045 85174 bytes_in 178706595 85174 station_ip 5.119.72.22 85174 port 15728886 85174 nas_port_type Virtual 85174 remote_ip 5.5.5.239 85184 username zamanialireza 85184 unique_id port 85184 terminate_cause User-Request 85184 bytes_out 0 85184 bytes_in 0 85184 station_ip 94.183.213.166 85184 port 15728905 85184 nas_port_type Virtual 85184 remote_ip 5.5.5.161 85189 username mahdixz 85189 unique_id port 85189 terminate_cause User-Request 85189 bytes_out 0 85189 bytes_in 0 85189 station_ip 151.235.109.104 85189 port 15728909 85189 nas_port_type Virtual 85189 remote_ip 5.5.5.121 85192 username caferibar 85192 unique_id port 85192 terminate_cause Lost-Carrier 85192 bytes_out 3182831 85192 bytes_in 114568612 85192 station_ip 31.59.39.67 85192 port 15728910 85192 nas_port_type Virtual 85192 remote_ip 5.5.5.120 85197 username afarin 85197 unique_id port 85197 terminate_cause User-Request 85197 bytes_out 637034 85197 bytes_in 9911052 85197 station_ip 151.238.240.87 85197 port 15728915 85197 nas_port_type Virtual 85197 remote_ip 5.5.5.117 85212 username forozande 85212 unique_id port 85212 terminate_cause User-Request 85212 bytes_out 0 85212 bytes_in 0 85212 station_ip 83.122.30.105 85212 port 15728646 85212 nas_port_type Virtual 85212 remote_ip 5.5.5.252 85216 username madadi 85216 unique_id port 85216 terminate_cause Lost-Carrier 85216 bytes_out 211176 85216 bytes_in 728003 85216 station_ip 5.119.253.103 85216 port 15728644 85216 nas_port_type Virtual 85216 remote_ip 5.5.5.251 85217 username asadi 85217 unique_id port 85217 terminate_cause User-Request 85217 bytes_out 103852 85217 bytes_in 1083379 85217 station_ip 37.129.232.60 85217 port 15728651 85217 nas_port_type Virtual 85217 remote_ip 5.5.5.254 85218 username forozande 85218 unique_id port 85218 terminate_cause User-Request 85218 bytes_out 16565 85218 bytes_in 31450 85218 station_ip 113.203.59.110 85218 port 15728652 85148 station_ip 5.119.150.126 85148 port 15728871 85148 nas_port_type Virtual 85148 remote_ip 5.5.5.136 85152 username forozande 85152 unique_id port 85152 terminate_cause User-Request 85152 bytes_out 385858 85152 bytes_in 1093733 85152 station_ip 83.123.108.145 85152 port 15728875 85152 nas_port_type Virtual 85152 remote_ip 5.5.5.134 85159 username caferibar 85159 unique_id port 85159 terminate_cause User-Request 85159 bytes_out 5169682 85159 bytes_in 131187296 85159 station_ip 5.119.72.22 85159 port 15728869 85159 nas_port_type Virtual 85159 remote_ip 5.5.5.239 85162 username aminvpn 85162 kill_reason Another user logged on this global unique id 85162 mac 85162 bytes_out 0 85162 bytes_in 0 85162 station_ip 83.123.156.89 85162 port 20 85162 unique_id port 85165 username abdilahyar 85165 unique_id port 85165 terminate_cause Lost-Carrier 85165 bytes_out 3252300 85165 bytes_in 91176278 85165 station_ip 5.120.157.181 85165 port 15728876 85165 nas_port_type Virtual 85165 remote_ip 5.5.5.133 85188 username caferibar 85188 unique_id port 85188 terminate_cause User-Request 85188 bytes_out 5200911 85188 bytes_in 90313942 85188 station_ip 5.119.72.22 85188 port 15728902 85188 nas_port_type Virtual 85188 remote_ip 5.5.5.239 85190 username madadi 85190 unique_id port 85190 terminate_cause Lost-Carrier 85190 bytes_out 3709578 85190 bytes_in 11379250 85190 station_ip 5.119.53.140 85190 port 15728884 85190 nas_port_type Virtual 85190 remote_ip 5.5.5.129 85196 username farhad 85196 unique_id port 85196 terminate_cause Lost-Carrier 85196 bytes_out 36867181 85196 bytes_in 613228366 85196 station_ip 5.120.58.82 85196 port 15728877 85196 nas_port_type Virtual 85196 remote_ip 5.5.5.132 85198 username zamanialireza 85198 unique_id port 85198 terminate_cause User-Request 85198 bytes_out 312450 85198 bytes_in 2982763 85198 station_ip 5.160.113.28 85198 port 15728917 85198 nas_port_type Virtual 85198 remote_ip 5.5.5.115 85215 remote_ip 5.5.5.254 85220 username khalili 85220 unique_id port 85220 terminate_cause User-Request 85220 bytes_out 448982 85220 bytes_in 14077083 85220 station_ip 5.119.86.202 85220 port 15728653 85220 nas_port_type Virtual 85220 remote_ip 5.5.5.249 85226 username alinezhad 85226 unique_id port 85226 terminate_cause User-Request 85226 bytes_out 0 85226 bytes_in 0 85226 station_ip 83.122.86.14 85226 port 15728659 85226 nas_port_type Virtual 85226 remote_ip 5.5.5.247 85228 username forozande 85228 unique_id port 85228 terminate_cause User-Request 85228 bytes_out 48164 85228 bytes_in 551560 85228 station_ip 37.129.226.124 85228 port 15728661 85228 nas_port_type Virtual 85228 remote_ip 5.5.5.246 85229 username forozande 85229 unique_id port 85229 terminate_cause User-Request 85229 bytes_out 134019 85229 bytes_in 154018 85229 station_ip 37.129.226.124 85229 port 15728663 85229 nas_port_type Virtual 85229 remote_ip 5.5.5.246 85230 username zamanialireza 85230 unique_id port 85230 terminate_cause User-Request 85230 bytes_out 6642258 85230 bytes_in 204541180 85230 station_ip 5.119.190.123 85230 port 15728662 85230 nas_port_type Virtual 85230 remote_ip 5.5.5.245 85238 username caferibar 85238 unique_id port 85238 terminate_cause Lost-Carrier 85238 bytes_out 571677 85238 bytes_in 1808425 85238 station_ip 5.120.15.6 85238 port 15728669 85238 nas_port_type Virtual 85238 remote_ip 5.5.5.243 85242 username zamanialireza 85242 unique_id port 85242 terminate_cause User-Request 85242 bytes_out 8295101 85242 bytes_in 203992266 85242 station_ip 5.119.190.123 85242 port 15728675 85242 nas_port_type Virtual 85242 remote_ip 5.5.5.245 85243 username aminvpn 85243 mac 85243 bytes_out 0 85149 port 35 85149 unique_id port 85149 remote_ip 10.8.1.10 85154 username mahdavi 85154 unique_id port 85154 terminate_cause User-Request 85154 bytes_out 137977 85154 bytes_in 5483509 85154 station_ip 83.123.45.186 85154 port 15728878 85154 nas_port_type Virtual 85154 remote_ip 5.5.5.131 85156 username mahdavi 85156 unique_id port 85156 terminate_cause User-Request 85156 bytes_out 155803 85156 bytes_in 859984 85156 station_ip 83.123.45.186 85156 port 15728880 85156 nas_port_type Virtual 85156 remote_ip 5.5.5.131 85161 username aminvpn 85161 kill_reason Another user logged on this global unique id 85161 mac 85161 bytes_out 0 85161 bytes_in 0 85161 station_ip 83.123.156.89 85161 port 20 85161 unique_id port 85161 remote_ip 10.8.0.6 85163 username alinezhad 85163 unique_id port 85163 terminate_cause User-Request 85163 bytes_out 0 85163 bytes_in 0 85163 station_ip 5.202.96.143 85163 port 15728885 85163 nas_port_type Virtual 85163 remote_ip 5.5.5.130 85164 username aminvpn 85164 mac 85164 bytes_out 0 85164 bytes_in 0 85164 station_ip 83.123.156.89 85164 port 20 85164 unique_id port 85167 username alinezhad 85167 unique_id port 85167 terminate_cause User-Request 85167 bytes_out 0 85167 bytes_in 0 85167 station_ip 5.202.96.143 85167 port 15728889 85167 nas_port_type Virtual 85167 remote_ip 5.5.5.130 85168 username alinezhad 85168 unique_id port 85168 terminate_cause User-Request 85168 bytes_out 0 85168 bytes_in 0 85168 station_ip 5.202.96.143 85168 port 15728890 85168 nas_port_type Virtual 85168 remote_ip 5.5.5.130 85169 username ahmadi 85169 unique_id port 85169 terminate_cause User-Request 85169 bytes_out 66456 85169 bytes_in 1311958 85169 station_ip 83.123.209.90 85169 port 15728888 85169 nas_port_type Virtual 85169 remote_ip 5.5.5.141 85175 username heydarizadeh 85175 unique_id port 85175 terminate_cause Lost-Carrier 85175 bytes_out 21930400 85175 bytes_in 1072710406 85175 station_ip 5.119.107.40 85175 port 15728883 85175 nas_port_type Virtual 85175 remote_ip 5.5.5.214 85177 username caferibar 85177 unique_id port 85177 terminate_cause User-Request 85177 bytes_out 1681642 85177 bytes_in 46851894 85177 station_ip 83.122.3.4 85177 port 15728897 85177 nas_port_type Virtual 85177 remote_ip 5.5.5.125 85179 username asadi 85179 unique_id port 85179 terminate_cause User-Request 85179 bytes_out 216656 85179 bytes_in 4625344 85179 station_ip 83.122.40.160 85179 port 15728899 85179 nas_port_type Virtual 85179 remote_ip 5.5.5.189 85183 username heydari 85183 unique_id port 85183 terminate_cause User-Request 85183 bytes_out 20475 85183 bytes_in 50461 85183 station_ip 83.123.30.53 85183 port 15728904 85183 nas_port_type Virtual 85183 remote_ip 5.5.5.123 85185 username heydari 85185 unique_id port 85185 terminate_cause User-Request 85185 bytes_out 0 85185 bytes_in 0 85185 station_ip 37.27.9.145 85185 port 15728907 85185 nas_port_type Virtual 85185 remote_ip 5.5.5.122 85186 username zamanialireza 85186 unique_id port 85186 terminate_cause Lost-Carrier 85186 bytes_out 387995 85186 bytes_in 12051925 85186 station_ip 94.183.213.166 85186 port 15728906 85186 nas_port_type Virtual 85186 remote_ip 5.5.5.161 85191 username alinezhad 85191 unique_id port 85191 terminate_cause User-Request 85191 bytes_out 0 85191 bytes_in 0 85191 station_ip 83.122.178.247 85191 port 15728911 85191 nas_port_type Virtual 85191 remote_ip 5.5.5.119 85194 username afarin 85194 unique_id port 85194 terminate_cause User-Request 85194 bytes_out 0 85194 bytes_in 0 85194 station_ip 113.203.86.138 85194 port 15728913 85194 nas_port_type Virtual 85194 remote_ip 5.5.5.118 85158 remote_ip 5.5.5.130 85166 username alinezhad 85166 unique_id port 85166 terminate_cause User-Request 85166 bytes_out 0 85166 bytes_in 0 85166 station_ip 5.202.96.143 85166 port 15728887 85166 nas_port_type Virtual 85166 remote_ip 5.5.5.130 85171 username zamanialireza 85171 unique_id port 85171 terminate_cause User-Request 85171 bytes_out 0 85171 bytes_in 0 85171 station_ip 37.129.187.223 85171 port 15728891 85171 nas_port_type Virtual 85171 remote_ip 5.5.5.128 85172 username alinezhad 85172 unique_id port 85172 terminate_cause User-Request 85172 bytes_out 90354 85172 bytes_in 673336 85172 station_ip 5.202.96.143 85172 port 15728893 85172 nas_port_type Virtual 85172 remote_ip 5.5.5.130 85176 username zamanialireza 85176 unique_id port 85176 terminate_cause User-Request 85176 bytes_out 126981 85176 bytes_in 1713146 85176 station_ip 5.119.190.123 85176 port 15728896 85176 nas_port_type Virtual 85176 remote_ip 5.5.5.126 85178 username aminvpn 85178 unique_id port 85178 terminate_cause Lost-Carrier 85178 bytes_out 133474 85178 bytes_in 1596595 85178 station_ip 5.119.150.126 85178 port 15728895 85178 nas_port_type Virtual 85178 remote_ip 5.5.5.127 85180 username aminvpn 85180 mac 85180 bytes_out 85404 85180 bytes_in 221187 85180 station_ip 83.123.85.209 85180 port 19 85180 unique_id port 85180 remote_ip 10.8.0.6 85181 username heydari 85181 unique_id port 85181 terminate_cause User-Request 85181 bytes_out 40733 85181 bytes_in 145117 85181 station_ip 83.123.30.53 85181 port 15728900 85181 nas_port_type Virtual 85181 remote_ip 5.5.5.123 85182 username heydari 85182 unique_id port 85182 terminate_cause User-Request 85182 bytes_out 6756 85182 bytes_in 21338 85182 station_ip 83.123.30.53 85182 port 15728903 85182 nas_port_type Virtual 85182 remote_ip 5.5.5.123 85187 username heydari 85187 unique_id port 85187 terminate_cause Lost-Carrier 85187 bytes_out 942 85187 bytes_in 123962 85187 station_ip 37.27.9.145 85187 port 15728908 85187 nas_port_type Virtual 85187 remote_ip 5.5.5.122 85193 username afarin 85193 unique_id port 85193 terminate_cause User-Request 85193 bytes_out 229924 85193 bytes_in 5419024 85193 station_ip 113.203.86.138 85193 port 15728912 85193 nas_port_type Virtual 85193 remote_ip 5.5.5.118 85218 nas_port_type Virtual 85218 remote_ip 5.5.5.250 85227 username forozande 85227 unique_id port 85227 terminate_cause User-Request 85227 bytes_out 125219 85227 bytes_in 1637398 85227 station_ip 37.129.226.124 85227 port 15728660 85227 nas_port_type Virtual 85227 remote_ip 5.5.5.246 85232 username caferibar 85232 unique_id port 85232 terminate_cause User-Request 85232 bytes_out 0 85232 bytes_in 0 85232 station_ip 5.120.15.6 85232 port 15728666 85232 nas_port_type Virtual 85232 remote_ip 5.5.5.243 85234 username aminvpn 85234 mac 85234 bytes_out 1817234 85234 bytes_in 7985137 85234 station_ip 5.119.146.147 85234 port 35 85234 unique_id port 85234 remote_ip 10.8.1.10 85236 username soleymani 85236 unique_id port 85236 terminate_cause Lost-Carrier 85236 bytes_out 153800 85236 bytes_in 417343 85236 station_ip 5.124.32.226 85236 port 15728667 85236 nas_port_type Virtual 85236 remote_ip 5.5.5.242 85239 username forozande 85239 unique_id port 85239 terminate_cause User-Request 85239 bytes_out 19608 85239 bytes_in 26720 85239 station_ip 83.122.196.47 85239 port 15728673 85239 nas_port_type Virtual 85239 remote_ip 5.5.5.240 85240 username aminvpn 85240 mac 85240 bytes_out 431640 85240 bytes_in 1425427 85240 station_ip 5.120.132.103 85240 port 36 85240 unique_id port 85240 remote_ip 10.8.1.10 85244 username soleymani 85195 username afarin 85195 unique_id port 85195 terminate_cause User-Request 85195 bytes_out 0 85195 bytes_in 0 85195 station_ip 151.238.240.87 85195 port 15728914 85195 nas_port_type Virtual 85195 remote_ip 5.5.5.117 85222 username forozande 85222 unique_id port 85222 terminate_cause User-Request 85222 bytes_out 27984 85222 bytes_in 196989 85222 station_ip 113.203.59.110 85222 port 15728655 85222 nas_port_type Virtual 85222 remote_ip 5.5.5.250 85224 username soleymani 85224 unique_id port 85224 terminate_cause User-Request 85224 bytes_out 682284 85224 bytes_in 16528885 85224 station_ip 5.124.75.190 85224 port 15728657 85224 nas_port_type Virtual 85224 remote_ip 5.5.5.248 85235 username forozande 85235 unique_id port 85235 terminate_cause User-Request 85235 bytes_out 9392 85235 bytes_in 21071 85235 station_ip 37.129.226.124 85235 port 15728670 85235 nas_port_type Virtual 85235 remote_ip 5.5.5.246 85246 username aminvpn 85246 mac 85246 bytes_out 302375 85246 bytes_in 1035731 85246 station_ip 37.129.134.176 85246 port 35 85246 unique_id port 85246 remote_ip 10.8.1.10 85247 username alinezhad 85247 unique_id port 85247 terminate_cause User-Request 85247 bytes_out 0 85247 bytes_in 0 85247 station_ip 5.202.135.113 85247 port 15728683 85247 nas_port_type Virtual 85247 remote_ip 5.5.5.232 85248 username soleymani 85248 unique_id port 85248 terminate_cause Lost-Carrier 85248 bytes_out 303662 85248 bytes_in 7341393 85248 station_ip 5.119.213.68 85248 port 15728680 85248 nas_port_type Virtual 85248 remote_ip 5.5.5.235 85251 username amir 85251 unique_id port 85251 terminate_cause Lost-Carrier 85251 bytes_out 2844706 85251 bytes_in 43617620 85251 station_ip 46.225.232.106 85251 port 15728677 85251 nas_port_type Virtual 85251 remote_ip 5.5.5.238 85255 username aminvpn 85255 mac 85255 bytes_out 29742 85255 bytes_in 130327 85255 station_ip 37.129.134.176 85255 port 35 85255 unique_id port 85255 remote_ip 10.8.1.10 85262 username avaanna 85262 unique_id port 85262 terminate_cause User-Request 85262 bytes_out 0 85262 bytes_in 0 85262 station_ip 185.144.64.42 85262 port 15728689 85262 nas_port_type Virtual 85262 remote_ip 5.5.5.228 85265 username forozande 85265 unique_id port 85265 terminate_cause User-Request 85265 bytes_out 59245 85265 bytes_in 148510 85265 station_ip 37.129.106.43 85265 port 15728694 85265 nas_port_type Virtual 85265 remote_ip 5.5.5.226 85269 username aminvpn 85269 mac 85269 bytes_out 121937 85269 bytes_in 159335 85269 station_ip 37.129.134.176 85269 port 35 85269 unique_id port 85269 remote_ip 10.8.1.10 85270 username aminvpn 85270 mac 85270 bytes_out 0 85270 bytes_in 0 85270 station_ip 37.129.134.176 85270 port 35 85270 unique_id port 85270 remote_ip 10.8.1.10 85274 username ksrkrgr 85274 unique_id port 85274 terminate_cause User-Request 85274 bytes_out 0 85274 bytes_in 0 85274 station_ip 2.183.129.73 85274 port 15728704 85274 nas_port_type Virtual 85274 remote_ip 5.5.5.221 85281 username madadi 85281 unique_id port 85281 terminate_cause Lost-Carrier 85281 bytes_out 674 85281 bytes_in 108346 85281 station_ip 5.119.190.66 85281 port 15728697 85281 nas_port_type Virtual 85281 remote_ip 5.5.5.225 85283 username zamanialireza 85283 unique_id port 85283 terminate_cause User-Request 85283 bytes_out 0 85283 bytes_in 0 85283 station_ip 5.119.131.98 85283 port 15728708 85283 nas_port_type Virtual 85283 remote_ip 5.5.5.222 85289 username zamanialireza 85289 unique_id port 85289 terminate_cause Lost-Carrier 85289 bytes_out 125864 85289 bytes_in 488445 85289 station_ip 5.119.131.98 85225 unique_id port 85225 terminate_cause User-Request 85225 bytes_out 168679 85225 bytes_in 5131167 85225 station_ip 37.129.232.60 85225 port 15728658 85225 nas_port_type Virtual 85225 remote_ip 5.5.5.254 85231 username forozande 85231 unique_id port 85231 terminate_cause User-Request 85231 bytes_out 25423 85231 bytes_in 249501 85231 station_ip 37.129.226.124 85231 port 15728665 85231 nas_port_type Virtual 85231 remote_ip 5.5.5.246 85233 username forozande 85233 unique_id port 85233 terminate_cause User-Request 85233 bytes_out 8873 85233 bytes_in 15709 85233 station_ip 37.129.226.124 85233 port 15728668 85233 nas_port_type Virtual 85233 remote_ip 5.5.5.246 85237 username zamanialireza 85237 unique_id port 85237 terminate_cause User-Request 85237 bytes_out 2864965 85237 bytes_in 62580346 85237 station_ip 5.119.190.123 85237 port 15728672 85237 nas_port_type Virtual 85237 remote_ip 5.5.5.245 85241 username forozande 85241 unique_id port 85241 terminate_cause User-Request 85241 bytes_out 53107 85241 bytes_in 185652 85241 station_ip 113.203.71.149 85241 port 15728676 85241 nas_port_type Virtual 85241 remote_ip 5.5.5.239 85249 username madadi 85249 unique_id port 85249 terminate_cause Lost-Carrier 85249 bytes_out 69653 85249 bytes_in 183400 85249 station_ip 5.119.242.143 85249 port 15728681 85249 nas_port_type Virtual 85249 remote_ip 5.5.5.234 85252 username aminvpn 85252 mac 85252 bytes_out 92402 85252 bytes_in 244167 85252 station_ip 37.129.134.176 85252 port 35 85252 unique_id port 85252 remote_ip 10.8.1.10 85253 username jamali 85253 unique_id port 85253 terminate_cause Lost-Carrier 85253 bytes_out 3331394 85253 bytes_in 56751864 85253 station_ip 5.119.146.104 85253 port 15728664 85253 nas_port_type Virtual 85253 remote_ip 5.5.5.244 85260 username aminvpn 85260 mac 85260 bytes_out 0 85260 bytes_in 0 85260 station_ip 37.129.134.176 85260 port 35 85260 unique_id port 85260 remote_ip 10.8.1.10 85261 username caferibar 85261 unique_id port 85261 terminate_cause Lost-Carrier 85261 bytes_out 1965988 85261 bytes_in 22709007 85261 station_ip 5.120.40.171 85261 port 15728685 85261 nas_port_type Virtual 85261 remote_ip 5.5.5.230 85272 username ksrkrgr 85272 unique_id port 85272 terminate_cause User-Request 85272 bytes_out 0 85272 bytes_in 0 85272 station_ip 83.123.240.231 85272 port 15728699 85272 nas_port_type Virtual 85272 remote_ip 5.5.5.223 85279 username zamanialireza 85279 unique_id port 85279 terminate_cause User-Request 85279 bytes_out 463859 85279 bytes_in 2674693 85279 station_ip 5.119.131.98 85279 port 15728701 85279 nas_port_type Virtual 85279 remote_ip 5.5.5.222 85284 username madadi 85284 unique_id port 85284 terminate_cause Lost-Carrier 85284 bytes_out 18693 85284 bytes_in 181641 85284 station_ip 5.120.73.109 85284 port 15728698 85284 nas_port_type Virtual 85284 remote_ip 5.5.5.224 85288 username zamanialireza 85288 unique_id port 85288 terminate_cause User-Request 85288 bytes_out 0 85288 bytes_in 0 85288 station_ip 83.122.113.254 85288 port 15728715 85288 nas_port_type Virtual 85288 remote_ip 5.5.5.219 85297 username mahdixz 85297 unique_id port 85297 terminate_cause User-Request 85297 bytes_out 117607 85297 bytes_in 349987 85297 station_ip 151.235.109.104 85297 port 15728728 85297 nas_port_type Virtual 85297 remote_ip 5.5.5.217 85300 username alinezhad 85300 unique_id port 85300 terminate_cause User-Request 85300 bytes_out 0 85300 bytes_in 0 85300 station_ip 5.202.135.113 85300 port 15728730 85300 nas_port_type Virtual 85300 remote_ip 5.5.5.232 85303 username heydari 85303 kill_reason Maximum check online fails reached 85303 unique_id port 85243 bytes_in 0 85243 station_ip 83.123.85.37 85243 port 19 85243 unique_id port 85243 remote_ip 10.8.0.6 85250 username aminvpn 85250 mac 85250 bytes_out 0 85250 bytes_in 0 85250 station_ip 37.129.134.176 85250 port 35 85250 unique_id port 85250 remote_ip 10.8.1.10 85254 username aminvpn 85254 mac 85254 bytes_out 37448 85254 bytes_in 40770 85254 station_ip 37.129.134.176 85254 port 35 85254 unique_id port 85254 remote_ip 10.8.1.10 85256 username aminvpn 85256 mac 85256 bytes_out 0 85256 bytes_in 0 85256 station_ip 37.129.134.176 85256 port 35 85256 unique_id port 85256 remote_ip 10.8.1.10 85257 username pouria 85257 unique_id port 85257 terminate_cause Lost-Carrier 85257 bytes_out 45619316 85257 bytes_in 1685502538 85257 station_ip 151.235.110.255 85257 port 15728671 85257 nas_port_type Virtual 85257 remote_ip 5.5.5.241 85263 username forozande 85263 unique_id port 85263 terminate_cause User-Request 85263 bytes_out 0 85263 bytes_in 0 85263 station_ip 37.129.106.43 85263 port 15728693 85263 nas_port_type Virtual 85263 remote_ip 5.5.5.226 85264 username aminvpn 85264 mac 85264 bytes_out 0 85264 bytes_in 0 85264 station_ip 37.129.134.176 85264 port 35 85264 unique_id port 85264 remote_ip 10.8.1.10 85267 username mamal 85267 unique_id port 85267 terminate_cause User-Request 85267 bytes_out 2612014 85267 bytes_in 48938241 85267 station_ip 83.122.129.245 85267 port 15728688 85267 nas_port_type Virtual 85267 remote_ip 5.5.5.229 85268 username madadi 85268 unique_id port 85268 terminate_cause Lost-Carrier 85268 bytes_out 41861 85268 bytes_in 285202 85268 station_ip 5.119.141.57 85268 port 15728691 85268 nas_port_type Virtual 85268 remote_ip 5.5.5.227 85273 username ksrkrgr 85273 unique_id port 85273 terminate_cause User-Request 85273 bytes_out 0 85273 bytes_in 0 85273 station_ip 2.183.129.73 85273 port 15728702 85273 nas_port_type Virtual 85273 remote_ip 5.5.5.221 85275 username aminvpn 85275 mac 85275 bytes_out 29921 85275 bytes_in 26968 85275 station_ip 37.129.134.176 85275 port 35 85275 unique_id port 85275 remote_ip 10.8.1.10 85277 username madadi 85277 kill_reason Maximum number of concurrent logins reached 85277 unique_id port 85277 bytes_out 0 85277 bytes_in 0 85277 station_ip 5.119.188.208 85277 port 15728706 85277 nas_port_type Virtual 85280 username asadi 85280 unique_id port 85280 terminate_cause Lost-Carrier 85280 bytes_out 13492 85280 bytes_in 134901 85280 station_ip 37.129.232.60 85280 port 15728696 85280 nas_port_type Virtual 85280 remote_ip 5.5.5.254 85282 username madadi 85282 kill_reason Maximum number of concurrent logins reached 85282 unique_id port 85282 bytes_out 0 85282 bytes_in 0 85282 station_ip 5.119.188.208 85282 port 15728709 85282 nas_port_type Virtual 85285 username madadi 85285 kill_reason Maximum check online fails reached 85285 unique_id port 85285 bytes_out 0 85285 bytes_in 0 85285 station_ip 5.119.188.208 85285 port 15728707 85285 nas_port_type Virtual 85286 username zamanialireza 85286 unique_id port 85286 terminate_cause User-Request 85286 bytes_out 2168 85286 bytes_in 738 85286 station_ip 83.122.113.254 85286 port 15728714 85286 nas_port_type Virtual 85286 remote_ip 5.5.5.219 85290 username aminvpn 85290 mac 85290 bytes_out 0 85290 bytes_in 0 85290 station_ip 37.129.134.176 85290 port 35 85290 unique_id port 85290 remote_ip 10.8.1.10 85291 username zamanialireza 85291 unique_id port 85291 terminate_cause User-Request 85291 bytes_out 141005 85291 bytes_in 160843 85291 station_ip 83.122.113.254 85291 port 15728718 85244 unique_id port 85244 terminate_cause Lost-Carrier 85244 bytes_out 52203 85244 bytes_in 357070 85244 station_ip 5.123.208.107 85244 port 15728678 85244 nas_port_type Virtual 85244 remote_ip 5.5.5.237 85245 username caferibar 85245 unique_id port 85245 terminate_cause User-Request 85245 bytes_out 887080 85245 bytes_in 16981761 85245 station_ip 5.120.184.180 85245 port 15728679 85245 nas_port_type Virtual 85245 remote_ip 5.5.5.236 85258 username asadi 85258 unique_id port 85258 terminate_cause User-Request 85258 bytes_out 65051 85258 bytes_in 393741 85258 station_ip 37.129.232.60 85258 port 15728686 85258 nas_port_type Virtual 85258 remote_ip 5.5.5.254 85259 username aminvpn 85259 mac 85259 bytes_out 271580 85259 bytes_in 539268 85259 station_ip 37.129.134.176 85259 port 35 85259 unique_id port 85259 remote_ip 10.8.1.10 85266 username forozande 85266 unique_id port 85266 terminate_cause User-Request 85266 bytes_out 26349 85266 bytes_in 106667 85266 station_ip 37.129.106.43 85266 port 15728695 85266 nas_port_type Virtual 85266 remote_ip 5.5.5.226 85271 username avaanna 85271 unique_id port 85271 terminate_cause Lost-Carrier 85271 bytes_out 1398 85271 bytes_in 179420 85271 station_ip 185.144.64.42 85271 port 15728690 85271 nas_port_type Virtual 85271 remote_ip 5.5.5.228 85276 username madadi 85276 kill_reason Maximum number of concurrent logins reached 85276 unique_id port 85276 bytes_out 0 85276 bytes_in 0 85276 station_ip 5.119.188.208 85276 port 15728705 85276 nas_port_type Virtual 85278 username aminvpn 85278 mac 85278 bytes_out 22201 85278 bytes_in 24662 85278 station_ip 37.129.134.176 85278 port 35 85278 unique_id port 85278 remote_ip 10.8.1.10 85287 username aminvpn 85287 mac 85287 bytes_out 34408 85287 bytes_in 35302 85287 station_ip 37.129.134.176 85287 port 35 85287 unique_id port 85287 remote_ip 10.8.1.10 85292 username aminvpn 85292 mac 85292 bytes_out 0 85292 bytes_in 0 85292 station_ip 37.129.134.176 85292 port 35 85292 unique_id port 85292 remote_ip 10.8.1.10 85296 username aminvpn 85296 mac 85296 bytes_out 0 85296 bytes_in 0 85296 station_ip 37.129.134.176 85296 port 36 85296 unique_id port 85296 remote_ip 10.8.1.10 85305 username aminvpn 85305 mac 85305 bytes_out 122935 85305 bytes_in 280245 85305 station_ip 37.129.134.176 85305 port 35 85305 unique_id port 85305 remote_ip 10.8.1.10 85306 username heydari 85306 unique_id port 85306 terminate_cause User-Request 85306 bytes_out 0 85306 bytes_in 0 85306 station_ip 83.123.45.13 85306 port 15728735 85306 nas_port_type Virtual 85306 remote_ip 5.5.5.215 85324 username shahnaz 85324 unique_id port 85324 terminate_cause User-Request 85324 bytes_out 128799 85324 bytes_in 1242067 85324 station_ip 5.123.88.38 85324 port 15728751 85324 nas_port_type Virtual 85324 remote_ip 5.5.5.220 85328 username ahmadipour 85328 unique_id port 85328 terminate_cause User-Request 85328 bytes_out 143094 85328 bytes_in 2802852 85328 station_ip 83.122.17.221 85328 port 15728757 85328 nas_port_type Virtual 85328 remote_ip 5.5.5.206 85332 username madadi 85332 unique_id port 85332 terminate_cause Lost-Carrier 85332 bytes_out 52642 85332 bytes_in 159499 85332 station_ip 5.119.81.93 85332 port 15728758 85332 nas_port_type Virtual 85332 remote_ip 5.5.5.205 85333 username khalili 85333 unique_id port 85333 terminate_cause User-Request 85333 bytes_out 8705122 85333 bytes_in 28703312 85333 station_ip 5.119.86.202 85333 port 15728674 85333 nas_port_type Virtual 85333 remote_ip 5.5.5.249 85334 username khalili 85334 unique_id port 85289 port 15728710 85289 nas_port_type Virtual 85289 remote_ip 5.5.5.222 85293 username madadi 85293 unique_id port 85293 terminate_cause User-Request 85293 bytes_out 505456 85293 bytes_in 4538056 85293 station_ip 5.120.94.234 85293 port 15728716 85293 nas_port_type Virtual 85293 remote_ip 5.5.5.218 85294 username ksrkrgr 85294 unique_id port 85294 terminate_cause Lost-Carrier 85294 bytes_out 380742 85294 bytes_in 968889 85294 station_ip 2.183.129.73 85294 port 15728717 85294 nas_port_type Virtual 85294 remote_ip 5.5.5.221 85295 username zamanialireza 85295 unique_id port 85295 terminate_cause User-Request 85295 bytes_out 2631922 85295 bytes_in 13305807 85295 station_ip 5.119.131.98 85295 port 15728725 85295 nas_port_type Virtual 85295 remote_ip 5.5.5.222 85298 username aminvpn 85298 mac 85298 bytes_out 0 85298 bytes_in 0 85298 station_ip 37.129.134.176 85298 port 35 85298 unique_id port 85298 remote_ip 10.8.1.10 85302 username heydari 85302 unique_id port 85302 terminate_cause User-Request 85302 bytes_out 0 85302 bytes_in 0 85302 station_ip 83.123.45.13 85302 port 15728733 85302 nas_port_type Virtual 85302 remote_ip 5.5.5.215 85304 username heydari 85304 unique_id port 85304 terminate_cause User-Request 85304 bytes_out 0 85304 bytes_in 0 85304 station_ip 83.123.45.13 85304 port 15728734 85304 nas_port_type Virtual 85304 remote_ip 5.5.5.215 85313 username aminvpn 85313 mac 85313 bytes_out 0 85313 bytes_in 0 85313 station_ip 37.129.134.176 85313 port 35 85313 unique_id port 85313 remote_ip 10.8.1.10 85314 username heydari 85314 unique_id port 85314 terminate_cause User-Request 85314 bytes_out 0 85314 bytes_in 0 85314 station_ip 83.123.45.13 85314 port 15728740 85314 nas_port_type Virtual 85314 remote_ip 5.5.5.215 85316 username ahmadipour 85316 unique_id port 85316 terminate_cause Lost-Carrier 85316 bytes_out 237900 85316 bytes_in 3045277 85316 station_ip 83.122.115.169 85316 port 15728743 85316 nas_port_type Virtual 85316 remote_ip 5.5.5.212 85319 username heydari 85319 unique_id port 85319 terminate_cause Lost-Carrier 85319 bytes_out 27009 85319 bytes_in 188918 85319 station_ip 83.123.45.13 85319 port 15728741 85319 nas_port_type Virtual 85319 remote_ip 5.5.5.215 85325 username heydari 85325 unique_id port 85325 terminate_cause Lost-Carrier 85325 bytes_out 126791 85325 bytes_in 584707 85325 station_ip 37.27.0.22 85325 port 15728744 85325 nas_port_type Virtual 85325 remote_ip 5.5.5.211 85330 username zamanialireza 85330 unique_id port 85330 terminate_cause User-Request 85330 bytes_out 6567673 85330 bytes_in 99076341 85330 station_ip 5.119.134.214 85330 port 15728745 85330 nas_port_type Virtual 85330 remote_ip 5.5.5.210 85335 username heydari 85335 unique_id port 85335 terminate_cause User-Request 85335 bytes_out 0 85335 bytes_in 0 85335 station_ip 37.27.39.32 85335 port 15728765 85335 nas_port_type Virtual 85335 remote_ip 5.5.5.201 85344 username zamanialireza 85344 unique_id port 85344 terminate_cause User-Request 85344 bytes_out 303089 85344 bytes_in 1725700 85344 station_ip 5.119.178.28 85344 port 15728772 85344 nas_port_type Virtual 85344 remote_ip 5.5.5.199 85348 username caferibar 85348 unique_id port 85348 terminate_cause User-Request 85348 bytes_out 159578 85348 bytes_in 3352691 85348 station_ip 113.203.111.146 85348 port 15728775 85348 nas_port_type Virtual 85348 remote_ip 5.5.5.197 85356 username aminvpn 85356 kill_reason Another user logged on this global unique id 85356 mac 85356 bytes_out 0 85356 bytes_in 0 85356 station_ip 37.129.134.176 85356 port 35 85356 unique_id port 85358 username madadi 85291 nas_port_type Virtual 85291 remote_ip 5.5.5.219 85299 username ahmadi 85299 unique_id port 85299 terminate_cause User-Request 85299 bytes_out 0 85299 bytes_in 0 85299 station_ip 83.123.43.48 85299 port 15728729 85299 nas_port_type Virtual 85299 remote_ip 5.5.5.216 85301 username alinezhad 85301 unique_id port 85301 terminate_cause User-Request 85301 bytes_out 316 85301 bytes_in 10300 85301 station_ip 5.202.135.113 85301 port 15728731 85301 nas_port_type Virtual 85301 remote_ip 5.5.5.232 85309 username aminvpn 85309 mac 85309 bytes_out 0 85309 bytes_in 0 85309 station_ip 37.129.134.176 85309 port 35 85309 unique_id port 85309 remote_ip 10.8.1.10 85311 username heydari 85311 unique_id port 85311 terminate_cause User-Request 85311 bytes_out 60505 85311 bytes_in 219856 85311 station_ip 83.123.45.13 85311 port 15728737 85311 nas_port_type Virtual 85311 remote_ip 5.5.5.215 85312 username heydari 85312 unique_id port 85312 terminate_cause User-Request 85312 bytes_out 0 85312 bytes_in 0 85312 station_ip 83.123.45.13 85312 port 15728739 85312 nas_port_type Virtual 85312 remote_ip 5.5.5.215 85318 username shahnaz 85318 unique_id port 85318 terminate_cause Lost-Carrier 85318 bytes_out 146403 85318 bytes_in 1283541 85318 station_ip 5.123.88.38 85318 port 15728712 85318 nas_port_type Virtual 85318 remote_ip 5.5.5.220 85320 username aminvpn 85320 mac 85320 bytes_out 75827 85320 bytes_in 93900 85320 station_ip 37.129.134.176 85320 port 35 85320 unique_id port 85320 remote_ip 10.8.1.10 85321 username aminvpn 85321 mac 85321 bytes_out 0 85321 bytes_in 0 85321 station_ip 37.129.134.176 85321 port 35 85321 unique_id port 85321 remote_ip 10.8.1.10 85322 username shahnaz 85322 unique_id port 85322 terminate_cause User-Request 85322 bytes_out 0 85322 bytes_in 0 85322 station_ip 5.123.88.38 85322 port 15728749 85322 nas_port_type Virtual 85322 remote_ip 5.5.5.220 85323 username shahnaz 85323 unique_id port 85323 terminate_cause User-Request 85323 bytes_out 0 85323 bytes_in 0 85323 station_ip 5.123.88.38 85323 port 15728750 85323 nas_port_type Virtual 85323 remote_ip 5.5.5.220 85342 username zamanialireza 85342 unique_id port 85342 terminate_cause User-Request 85342 bytes_out 1127986 85342 bytes_in 29959807 85342 station_ip 5.119.178.28 85342 port 15728770 85342 nas_port_type Virtual 85342 remote_ip 5.5.5.199 85346 username aminvpn 85346 kill_reason Another user logged on this global unique id 85346 mac 85346 bytes_out 0 85346 bytes_in 0 85346 station_ip 37.129.134.176 85346 port 35 85346 unique_id port 85346 remote_ip 10.8.1.10 85347 username caferibar 85347 unique_id port 85347 terminate_cause User-Request 85347 bytes_out 128642 85347 bytes_in 458871 85347 station_ip 113.203.111.146 85347 port 15728774 85347 nas_port_type Virtual 85347 remote_ip 5.5.5.197 85354 username caferibar 85354 unique_id port 85354 terminate_cause User-Request 85354 bytes_out 0 85354 bytes_in 0 85354 station_ip 113.203.111.146 85354 port 15728779 85354 nas_port_type Virtual 85354 remote_ip 5.5.5.197 85361 username aminvpn 85361 mac 85361 bytes_out 0 85361 bytes_in 0 85361 station_ip 5.119.150.126 85361 port 20 85361 unique_id port 85361 remote_ip 10.8.0.6 85364 username aminvpn 85364 mac 85364 bytes_out 0 85364 bytes_in 0 85364 station_ip 83.123.93.9 85364 port 19 85364 unique_id port 85364 remote_ip 10.8.0.6 85366 username soleymani 85366 unique_id port 85366 terminate_cause Lost-Carrier 85366 bytes_out 127748 85366 bytes_in 947996 85366 station_ip 5.119.68.163 85366 port 15728782 85303 bytes_out 0 85303 bytes_in 0 85303 station_ip 83.123.45.13 85303 port 15728732 85303 nas_port_type Virtual 85307 username heydari 85307 unique_id port 85307 terminate_cause User-Request 85307 bytes_out 7345 85307 bytes_in 63104 85307 station_ip 83.123.45.13 85307 port 15728736 85307 nas_port_type Virtual 85307 remote_ip 5.5.5.215 85308 username arman 85308 unique_id port 85308 terminate_cause Lost-Carrier 85308 bytes_out 5330635 85308 bytes_in 24472123 85308 station_ip 5.119.96.8 85308 port 15728684 85308 nas_port_type Virtual 85308 remote_ip 5.5.5.231 85310 username ksrkrgr 85310 unique_id port 85310 terminate_cause User-Request 85310 bytes_out 0 85310 bytes_in 0 85310 station_ip 83.123.240.255 85310 port 15728738 85310 nas_port_type Virtual 85310 remote_ip 5.5.5.214 85315 username heydari 85315 unique_id port 85315 terminate_cause User-Request 85315 bytes_out 38355 85315 bytes_in 99745 85315 station_ip 83.123.45.13 85315 port 15728742 85315 nas_port_type Virtual 85315 remote_ip 5.5.5.213 85317 username aminvpn 85317 mac 85317 bytes_out 147226 85317 bytes_in 163433 85317 station_ip 37.129.134.176 85317 port 35 85317 unique_id port 85317 remote_ip 10.8.1.10 85326 username alinezhad 85326 unique_id port 85326 terminate_cause User-Request 85326 bytes_out 0 85326 bytes_in 0 85326 station_ip 5.202.135.113 85326 port 15728753 85326 nas_port_type Virtual 85326 remote_ip 5.5.5.232 85327 username alinezhad 85327 unique_id port 85327 terminate_cause User-Request 85327 bytes_out 0 85327 bytes_in 0 85327 station_ip 5.202.135.113 85327 port 15728754 85327 nas_port_type Virtual 85327 remote_ip 5.5.5.232 85329 username ksrkrgr 85329 unique_id port 85329 terminate_cause User-Request 85329 bytes_out 816651 85329 bytes_in 9052119 85329 station_ip 2.184.11.165 85329 port 15728752 85329 nas_port_type Virtual 85329 remote_ip 5.5.5.209 85331 username ahmadi 85331 unique_id port 85331 terminate_cause User-Request 85331 bytes_out 80647 85331 bytes_in 1224421 85331 station_ip 83.122.47.141 85331 port 15728760 85331 nas_port_type Virtual 85331 remote_ip 5.5.5.204 85336 username amin.insta22 85336 kill_reason Relative expiration date has reached 85336 unique_id port 85336 bytes_out 0 85336 bytes_in 0 85336 station_ip 86.57.70.211 85336 port 15728766 85336 nas_port_type Virtual 85338 username shahrooz 85338 unique_id port 85338 terminate_cause User-Request 85338 bytes_out 6548561 85338 bytes_in 97445932 85338 station_ip 83.122.146.194 85338 port 15728755 85338 nas_port_type Virtual 85338 remote_ip 5.5.5.208 85339 username ksrkrgr 85339 unique_id port 85339 terminate_cause User-Request 85339 bytes_out 7791338 85339 bytes_in 11402352 85339 station_ip 2.184.11.165 85339 port 15728756 85339 nas_port_type Virtual 85339 remote_ip 5.5.5.207 85340 username soleymani 85340 unique_id port 85340 terminate_cause Lost-Carrier 85340 bytes_out 242976 85340 bytes_in 752668 85340 station_ip 5.120.141.182 85340 port 15728762 85340 nas_port_type Virtual 85340 remote_ip 5.5.5.202 85341 username zamanialireza 85341 unique_id port 85341 terminate_cause User-Request 85341 bytes_out 1803808 85341 bytes_in 28090626 85341 station_ip 5.119.178.28 85341 port 15728769 85341 nas_port_type Virtual 85341 remote_ip 5.5.5.199 85343 username zamanialireza 85343 unique_id port 85343 terminate_cause User-Request 85343 bytes_out 0 85343 bytes_in 0 85343 station_ip 5.119.178.28 85343 port 15728771 85343 nas_port_type Virtual 85343 remote_ip 5.5.5.199 85345 username alinezhad 85345 unique_id port 85345 terminate_cause User-Request 85345 bytes_out 0 85345 bytes_in 0 85345 station_ip 113.203.91.230 85334 terminate_cause User-Request 85334 bytes_out 0 85334 bytes_in 0 85334 station_ip 5.119.86.202 85334 port 15728763 85334 nas_port_type Virtual 85334 remote_ip 5.5.5.249 85337 username forozande 85337 unique_id port 85337 terminate_cause User-Request 85337 bytes_out 75315 85337 bytes_in 774644 85337 station_ip 83.123.126.122 85337 port 15728768 85337 nas_port_type Virtual 85337 remote_ip 5.5.5.200 85349 username forozande 85349 unique_id port 85349 terminate_cause User-Request 85349 bytes_out 143644 85349 bytes_in 534899 85349 station_ip 83.122.244.7 85349 port 15728776 85349 nas_port_type Virtual 85349 remote_ip 5.5.5.196 85352 username zamanialireza 85352 unique_id port 85352 terminate_cause User-Request 85352 bytes_out 28196699 85352 bytes_in 473945338 85352 station_ip 5.119.131.98 85352 port 15728759 85352 nas_port_type Virtual 85352 remote_ip 5.5.5.222 85353 username aminvpn 85353 kill_reason Another user logged on this global unique id 85353 mac 85353 bytes_out 0 85353 bytes_in 0 85353 station_ip 37.129.134.176 85353 port 35 85353 unique_id port 85357 username aminvpn 85357 kill_reason Another user logged on this global unique id 85357 mac 85357 bytes_out 0 85357 bytes_in 0 85357 station_ip 83.123.93.9 85357 port 19 85357 unique_id port 85357 remote_ip 10.8.0.6 85362 username aminvpn 85362 mac 85362 bytes_out 0 85362 bytes_in 0 85362 station_ip 83.123.93.9 85362 port 19 85362 unique_id port 85362 remote_ip 10.8.0.6 85363 username aminvpn 85363 mac 85363 bytes_out 0 85363 bytes_in 0 85363 station_ip 5.119.150.126 85363 port 20 85363 unique_id port 85363 remote_ip 10.8.0.6 85367 username aminvpn 85367 mac 85367 bytes_out 0 85367 bytes_in 0 85367 station_ip 83.123.93.9 85367 port 19 85367 unique_id port 85367 remote_ip 10.8.0.6 85376 username heydari 85376 unique_id port 85376 terminate_cause User-Request 85376 bytes_out 23760 85376 bytes_in 88308 85376 station_ip 83.123.10.57 85376 port 15728787 85376 nas_port_type Virtual 85376 remote_ip 5.5.5.190 85378 username aminvpn 85378 mac 85378 bytes_out 0 85378 bytes_in 0 85378 station_ip 5.119.150.126 85378 port 20 85378 unique_id port 85378 remote_ip 10.8.0.6 85381 username aminvpn 85381 mac 85381 bytes_out 0 85381 bytes_in 0 85381 station_ip 5.119.150.126 85381 port 20 85381 unique_id port 85381 remote_ip 10.8.0.6 85384 username aminvpn 85384 mac 85384 bytes_out 0 85384 bytes_in 0 85384 station_ip 83.123.93.9 85384 port 19 85384 unique_id port 85384 remote_ip 10.8.0.6 85388 username sadegh 85388 unique_id port 85388 terminate_cause User-Request 85388 bytes_out 2957110 85388 bytes_in 22066824 85388 station_ip 5.119.156.134 85388 port 15728784 85388 nas_port_type Virtual 85388 remote_ip 5.5.5.192 85389 username asadi 85389 unique_id port 85389 terminate_cause User-Request 85389 bytes_out 0 85389 bytes_in 0 85389 station_ip 37.129.232.60 85389 port 15728791 85389 nas_port_type Virtual 85389 remote_ip 5.5.5.254 85397 username arabpour 85397 unique_id port 85397 terminate_cause User-Request 85397 bytes_out 243890 85397 bytes_in 8312687 85397 station_ip 83.122.37.236 85397 port 15728799 85397 nas_port_type Virtual 85397 remote_ip 5.5.5.185 85398 username jamali 85398 unique_id port 85398 terminate_cause User-Request 85398 bytes_out 874183 85398 bytes_in 11498610 85398 station_ip 5.119.146.104 85398 port 15728785 85398 nas_port_type Virtual 85398 remote_ip 5.5.5.244 85400 username arabpour 85400 unique_id port 85400 terminate_cause User-Request 85400 bytes_out 197453 85345 port 15728773 85345 nas_port_type Virtual 85345 remote_ip 5.5.5.198 85350 username caferibar 85350 unique_id port 85350 terminate_cause User-Request 85350 bytes_out 56854 85350 bytes_in 657160 85350 station_ip 113.203.111.146 85350 port 15728777 85350 nas_port_type Virtual 85350 remote_ip 5.5.5.197 85351 username heydari 85351 unique_id port 85351 terminate_cause Lost-Carrier 85351 bytes_out 81040 85351 bytes_in 955797 85351 station_ip 37.27.39.32 85351 port 15728767 85351 nas_port_type Virtual 85351 remote_ip 5.5.5.201 85355 username caferibar 85355 unique_id port 85355 terminate_cause User-Request 85355 bytes_out 0 85355 bytes_in 0 85355 station_ip 113.203.111.146 85355 port 15728780 85355 nas_port_type Virtual 85355 remote_ip 5.5.5.197 85359 username forozande 85359 unique_id port 85359 terminate_cause User-Request 85359 bytes_out 64483 85359 bytes_in 390707 85359 station_ip 37.129.119.105 85359 port 15728783 85359 nas_port_type Virtual 85359 remote_ip 5.5.5.193 85365 username aminvpn 85365 mac 85365 bytes_out 0 85365 bytes_in 0 85365 station_ip 5.119.150.126 85365 port 20 85365 unique_id port 85365 remote_ip 10.8.0.6 85369 username aminvpn 85369 mac 85369 bytes_out 0 85369 bytes_in 0 85369 station_ip 83.123.93.9 85369 port 19 85369 unique_id port 85369 remote_ip 10.8.0.6 85374 username aminvpn 85374 mac 85374 bytes_out 0 85374 bytes_in 0 85374 station_ip 5.119.150.126 85374 port 20 85374 unique_id port 85374 remote_ip 10.8.0.6 85380 username aminvpn 85380 mac 85380 bytes_out 0 85380 bytes_in 0 85380 station_ip 37.129.134.176 85380 port 35 85380 unique_id port 85385 username aminvpn 85385 mac 85385 bytes_out 0 85385 bytes_in 0 85385 station_ip 5.119.150.126 85385 port 20 85385 unique_id port 85385 remote_ip 10.8.0.6 85387 username forozande 85387 unique_id port 85387 terminate_cause User-Request 85387 bytes_out 62754 85387 bytes_in 624934 85387 station_ip 113.203.76.90 85387 port 15728790 85387 nas_port_type Virtual 85387 remote_ip 5.5.5.187 85390 username asadi 85390 unique_id port 85390 terminate_cause User-Request 85390 bytes_out 103534 85390 bytes_in 1115845 85390 station_ip 37.129.232.60 85390 port 15728792 85390 nas_port_type Virtual 85390 remote_ip 5.5.5.254 85393 username heydari 85393 unique_id port 85393 terminate_cause User-Request 85393 bytes_out 15598 85393 bytes_in 25174 85393 station_ip 83.123.10.57 85393 port 15728795 85393 nas_port_type Virtual 85393 remote_ip 5.5.5.190 85394 username arabpour 85394 unique_id port 85394 terminate_cause User-Request 85394 bytes_out 0 85394 bytes_in 0 85394 station_ip 83.122.37.236 85394 port 15728796 85394 nas_port_type Virtual 85394 remote_ip 5.5.5.185 85403 username aminvpn 85403 unique_id port 85403 terminate_cause User-Request 85403 bytes_out 2075225 85403 bytes_in 17585117 85403 station_ip 37.129.134.176 85403 port 15728794 85403 nas_port_type Virtual 85403 remote_ip 5.5.5.186 85412 username aminvpn 85412 mac 85412 bytes_out 0 85412 bytes_in 0 85412 station_ip 5.119.150.126 85412 port 36 85412 unique_id port 85412 remote_ip 10.8.1.10 85417 username aminvpn 85417 mac 85417 bytes_out 0 85417 bytes_in 0 85417 station_ip 37.129.134.176 85417 port 35 85417 unique_id port 85417 remote_ip 10.8.1.10 85419 username aminvpn 85419 mac 85419 bytes_out 0 85419 bytes_in 0 85419 station_ip 37.129.134.176 85419 port 35 85419 unique_id port 85419 remote_ip 10.8.1.10 85422 username aminvpn 85422 mac 85422 bytes_out 0 85358 unique_id port 85358 terminate_cause Lost-Carrier 85358 bytes_out 1219899 85358 bytes_in 2760541 85358 station_ip 5.119.255.22 85358 port 15728761 85358 nas_port_type Virtual 85358 remote_ip 5.5.5.203 85360 username aminvpn 85360 mac 85360 bytes_out 0 85360 bytes_in 0 85360 station_ip 83.123.93.9 85360 port 19 85360 unique_id port 85368 username aminvpn 85368 mac 85368 bytes_out 0 85368 bytes_in 0 85368 station_ip 5.119.150.126 85368 port 20 85368 unique_id port 85368 remote_ip 10.8.0.6 85370 username aminvpn 85370 mac 85370 bytes_out 0 85370 bytes_in 0 85370 station_ip 5.119.150.126 85370 port 20 85370 unique_id port 85370 remote_ip 10.8.0.6 85373 username aminvpn 85373 mac 85373 bytes_out 0 85373 bytes_in 0 85373 station_ip 83.123.93.9 85373 port 19 85373 unique_id port 85373 remote_ip 10.8.0.6 85377 username aminvpn 85377 mac 85377 bytes_out 0 85377 bytes_in 0 85377 station_ip 83.123.93.9 85377 port 19 85377 unique_id port 85377 remote_ip 10.8.0.6 85379 username aminvpn 85379 mac 85379 bytes_out 0 85379 bytes_in 0 85379 station_ip 83.123.93.9 85379 port 19 85379 unique_id port 85379 remote_ip 10.8.0.6 85386 username soleymani 85386 unique_id port 85386 terminate_cause Lost-Carrier 85386 bytes_out 40410 85386 bytes_in 252154 85386 station_ip 5.120.160.39 85386 port 15728788 85386 nas_port_type Virtual 85386 remote_ip 5.5.5.189 85391 username heydari 85391 unique_id port 85391 terminate_cause User-Request 85391 bytes_out 41160 85391 bytes_in 110381 85391 station_ip 83.123.10.57 85391 port 15728793 85391 nas_port_type Virtual 85391 remote_ip 5.5.5.190 85401 username arabpour 85401 unique_id port 85401 terminate_cause User-Request 85401 bytes_out 20150 85401 bytes_in 45347 85401 station_ip 83.122.37.236 85401 port 15728803 85401 nas_port_type Virtual 85401 remote_ip 5.5.5.185 85404 username aminvpn 85404 mac 85404 bytes_out 0 85404 bytes_in 0 85404 station_ip 37.129.134.176 85404 port 35 85404 unique_id port 85404 remote_ip 10.8.1.10 85405 username arabpour 85405 unique_id port 85405 terminate_cause User-Request 85405 bytes_out 157450 85405 bytes_in 3853180 85405 station_ip 83.122.37.236 85405 port 15728808 85405 nas_port_type Virtual 85405 remote_ip 5.5.5.185 85408 username forozande 85408 unique_id port 85408 terminate_cause User-Request 85408 bytes_out 193433 85408 bytes_in 627290 85408 station_ip 83.122.13.55 85408 port 15728812 85408 nas_port_type Virtual 85408 remote_ip 5.5.5.177 85410 username aminvpn 85410 mac 85410 bytes_out 306041 85410 bytes_in 583433 85410 station_ip 83.123.93.9 85410 port 19 85410 unique_id port 85410 remote_ip 10.8.0.6 85413 username aminvpn 85413 mac 85413 bytes_out 0 85413 bytes_in 0 85413 station_ip 37.129.134.176 85413 port 35 85413 unique_id port 85413 remote_ip 10.8.1.10 85416 username aminvpn 85416 mac 85416 bytes_out 0 85416 bytes_in 0 85416 station_ip 5.119.150.126 85416 port 36 85416 unique_id port 85416 remote_ip 10.8.1.10 85418 username aminvpn 85418 mac 85418 bytes_out 0 85418 bytes_in 0 85418 station_ip 5.119.150.126 85418 port 36 85418 unique_id port 85418 remote_ip 10.8.1.10 85420 username aminvpn 85420 mac 85420 bytes_out 0 85420 bytes_in 0 85420 station_ip 5.119.150.126 85420 port 36 85420 unique_id port 85420 remote_ip 10.8.1.10 85421 username aminvpn 85421 mac 85421 bytes_out 0 85421 bytes_in 0 85421 station_ip 37.129.134.176 85366 nas_port_type Virtual 85366 remote_ip 5.5.5.194 85371 username aminvpn 85371 mac 85371 bytes_out 0 85371 bytes_in 0 85371 station_ip 83.123.93.9 85371 port 19 85371 unique_id port 85371 remote_ip 10.8.0.6 85372 username aminvpn 85372 mac 85372 bytes_out 0 85372 bytes_in 0 85372 station_ip 5.119.150.126 85372 port 20 85372 unique_id port 85372 remote_ip 10.8.0.6 85375 username alinezhad 85375 unique_id port 85375 terminate_cause User-Request 85375 bytes_out 0 85375 bytes_in 0 85375 station_ip 37.129.236.53 85375 port 15728786 85375 nas_port_type Virtual 85375 remote_ip 5.5.5.191 85382 username aminvpn 85382 mac 85382 bytes_out 0 85382 bytes_in 0 85382 station_ip 83.123.93.9 85382 port 19 85382 unique_id port 85382 remote_ip 10.8.0.6 85383 username aminvpn 85383 mac 85383 bytes_out 0 85383 bytes_in 0 85383 station_ip 5.119.150.126 85383 port 20 85383 unique_id port 85383 remote_ip 10.8.0.6 85392 username aminvpn 85392 unique_id port 85392 terminate_cause Lost-Carrier 85392 bytes_out 759890 85392 bytes_in 3350207 85392 station_ip 5.119.150.126 85392 port 15728789 85392 nas_port_type Virtual 85392 remote_ip 5.5.5.188 85395 username zamanialireza 85395 unique_id port 85395 terminate_cause User-Request 85395 bytes_out 0 85395 bytes_in 0 85395 station_ip 5.160.112.149 85395 port 15728797 85395 nas_port_type Virtual 85395 remote_ip 5.5.5.184 85396 username alinezhad 85396 unique_id port 85396 terminate_cause User-Request 85396 bytes_out 0 85396 bytes_in 0 85396 station_ip 83.122.153.3 85396 port 15728798 85396 nas_port_type Virtual 85396 remote_ip 5.5.5.183 85399 username ahmadi 85399 unique_id port 85399 terminate_cause User-Request 85399 bytes_out 40214 85399 bytes_in 512000 85399 station_ip 83.122.166.253 85399 port 15728800 85399 nas_port_type Virtual 85399 remote_ip 5.5.5.182 85402 username madadi 85402 unique_id port 85402 terminate_cause Lost-Carrier 85402 bytes_out 32712 85402 bytes_in 160825 85402 station_ip 5.120.181.73 85402 port 15728801 85402 nas_port_type Virtual 85402 remote_ip 5.5.5.181 85406 username aminvpn 85406 unique_id port 85406 terminate_cause User-Request 85406 bytes_out 1689066 85406 bytes_in 15649110 85406 station_ip 37.129.134.176 85406 port 15728806 85406 nas_port_type Virtual 85406 remote_ip 5.5.5.186 85409 username madadi 85409 unique_id port 85409 terminate_cause Lost-Carrier 85409 bytes_out 269377 85409 bytes_in 6353812 85409 station_ip 5.119.230.129 85409 port 15728809 85409 nas_port_type Virtual 85409 remote_ip 5.5.5.179 85411 username aminvpn 85411 mac 85411 bytes_out 0 85411 bytes_in 0 85411 station_ip 37.129.134.176 85411 port 35 85411 unique_id port 85411 remote_ip 10.8.1.10 85414 username aminvpn 85414 mac 85414 bytes_out 0 85414 bytes_in 0 85414 station_ip 5.119.150.126 85414 port 36 85414 unique_id port 85414 remote_ip 10.8.1.10 85425 username khalili 85425 unique_id port 85425 terminate_cause User-Request 85425 bytes_out 9787174 85425 bytes_in 27075645 85425 station_ip 5.119.86.202 85425 port 15728764 85425 nas_port_type Virtual 85425 remote_ip 5.5.5.249 85438 username madadi 85438 unique_id port 85438 terminate_cause Lost-Carrier 85438 bytes_out 117572 85438 bytes_in 322929 85438 station_ip 5.119.228.101 85438 port 15728816 85438 nas_port_type Virtual 85438 remote_ip 5.5.5.173 85444 username zamanialireza 85444 unique_id port 85444 terminate_cause User-Request 85444 bytes_out 14134423 85444 bytes_in 77840503 85444 station_ip 5.119.131.98 85444 port 15728823 85444 nas_port_type Virtual 85400 bytes_in 5238632 85400 station_ip 83.122.37.236 85400 port 15728802 85400 nas_port_type Virtual 85400 remote_ip 5.5.5.185 85407 username caferibar 85407 unique_id port 85407 terminate_cause User-Request 85407 bytes_out 3478165 85407 bytes_in 65085647 85407 station_ip 31.59.39.67 85407 port 15728804 85407 nas_port_type Virtual 85407 remote_ip 5.5.5.180 85415 username aminvpn 85415 mac 85415 bytes_out 0 85415 bytes_in 0 85415 station_ip 37.129.134.176 85415 port 35 85415 unique_id port 85415 remote_ip 10.8.1.10 85426 username aminvpn 85426 mac 85426 bytes_out 0 85426 bytes_in 0 85426 station_ip 83.123.93.9 85426 port 20 85426 unique_id port 85426 remote_ip 10.8.0.6 85434 username aminvpn 85434 mac 85434 bytes_out 3979928 85434 bytes_in 30424571 85434 station_ip 37.129.134.176 85434 port 35 85434 unique_id port 85434 remote_ip 10.8.1.10 85435 username zamanialireza 85435 unique_id port 85435 terminate_cause User-Request 85435 bytes_out 65720358 85435 bytes_in 1116063193 85435 station_ip 5.119.131.98 85435 port 15728805 85435 nas_port_type Virtual 85435 remote_ip 5.5.5.222 85437 username amirabbas 85437 unique_id port 85437 terminate_cause User-Request 85437 bytes_out 72970268 85437 bytes_in 2121984681 85437 station_ip 151.238.237.28 85437 port 15728781 85437 nas_port_type Virtual 85437 remote_ip 5.5.5.195 85443 username forozande 85443 unique_id port 85443 terminate_cause User-Request 85443 bytes_out 455663 85443 bytes_in 14439908 85443 station_ip 37.129.168.241 85443 port 15728828 85443 nas_port_type Virtual 85443 remote_ip 5.5.5.168 85446 username zamanialireza 85446 unique_id port 85446 terminate_cause User-Request 85446 bytes_out 2009448 85446 bytes_in 56836790 85446 station_ip 5.119.131.98 85446 port 15728829 85446 nas_port_type Virtual 85446 remote_ip 5.5.5.169 85449 username asadi 85449 unique_id port 85449 terminate_cause User-Request 85449 bytes_out 22264 85449 bytes_in 150934 85449 station_ip 83.123.56.143 85449 port 15728833 85449 nas_port_type Virtual 85449 remote_ip 5.5.5.167 85451 username soleymani 85451 unique_id port 85451 terminate_cause Lost-Carrier 85451 bytes_out 129233 85451 bytes_in 641620 85451 station_ip 5.119.230.48 85451 port 15728832 85451 nas_port_type Virtual 85451 remote_ip 5.5.5.164 85458 username aminvpn 85458 unique_id port 85458 terminate_cause Lost-Carrier 85458 bytes_out 3218630 85458 bytes_in 55677330 85458 station_ip 5.119.150.126 85458 port 15728822 85458 nas_port_type Virtual 85458 remote_ip 5.5.5.188 85459 username forozande 85459 unique_id port 85459 terminate_cause User-Request 85459 bytes_out 18313 85459 bytes_in 54446 85459 station_ip 83.123.177.112 85459 port 15728850 85459 nas_port_type Virtual 85459 remote_ip 5.5.5.153 85461 username shahnaz 85461 unique_id port 85461 terminate_cause User-Request 85461 bytes_out 1673929 85461 bytes_in 17119969 85461 station_ip 5.124.183.226 85461 port 15728849 85461 nas_port_type Virtual 85461 remote_ip 5.5.5.154 85466 username forozande 85466 unique_id port 85466 terminate_cause User-Request 85466 bytes_out 13706 85466 bytes_in 32851 85466 station_ip 83.122.145.246 85466 port 15728856 85466 nas_port_type Virtual 85466 remote_ip 5.5.5.151 85470 username ahmadipour 85470 unique_id port 85470 terminate_cause Lost-Carrier 85470 bytes_out 1434221 85470 bytes_in 24660820 85470 station_ip 83.122.115.169 85470 port 15728858 85470 nas_port_type Virtual 85470 remote_ip 5.5.5.212 85473 username jamali 85473 unique_id port 85473 terminate_cause Lost-Carrier 85473 bytes_out 3905254 85473 bytes_in 135838876 85473 station_ip 5.119.146.104 85473 port 15728846 85421 port 35 85421 unique_id port 85421 remote_ip 10.8.1.10 85423 username amir 85423 unique_id port 85423 terminate_cause User-Request 85423 bytes_out 12310835 85423 bytes_in 31370170 85423 station_ip 46.225.232.106 85423 port 15728811 85423 nas_port_type Virtual 85423 remote_ip 5.5.5.238 85428 username ahmadipour 85428 unique_id port 85428 terminate_cause Lost-Carrier 85428 bytes_out 1438202 85428 bytes_in 28969674 85428 station_ip 83.122.119.209 85428 port 15728815 85428 nas_port_type Virtual 85428 remote_ip 5.5.5.174 85433 username alinezhad 85433 unique_id port 85433 terminate_cause User-Request 85433 bytes_out 0 85433 bytes_in 0 85433 station_ip 5.202.63.53 85433 port 15728821 85433 nas_port_type Virtual 85433 remote_ip 5.5.5.170 85436 username mobina 85436 kill_reason Relative expiration date has reached 85436 unique_id port 85436 bytes_out 0 85436 bytes_in 0 85436 station_ip 5.123.119.201 85436 port 15728824 85436 nas_port_type Virtual 85439 username forozande 85439 unique_id port 85439 terminate_cause User-Request 85439 bytes_out 303198 85439 bytes_in 9564259 85439 station_ip 37.129.168.241 85439 port 15728825 85439 nas_port_type Virtual 85439 remote_ip 5.5.5.168 85442 username asadi 85442 unique_id port 85442 terminate_cause User-Request 85442 bytes_out 220455 85442 bytes_in 3190047 85442 station_ip 83.123.56.143 85442 port 15728827 85442 nas_port_type Virtual 85442 remote_ip 5.5.5.167 85453 username madadi 85453 unique_id port 85453 terminate_cause Lost-Carrier 85453 bytes_out 198632 85453 bytes_in 1762546 85453 station_ip 5.120.116.164 85453 port 15728836 85453 nas_port_type Virtual 85453 remote_ip 5.5.5.163 85456 username aminvpn 85456 mac 85456 bytes_out 0 85456 bytes_in 0 85456 station_ip 37.129.134.176 85456 port 35 85456 unique_id port 85456 remote_ip 10.8.1.10 85457 username jamali 85457 unique_id port 85457 terminate_cause Lost-Carrier 85457 bytes_out 633187 85457 bytes_in 8916466 85457 station_ip 5.119.146.104 85457 port 15728837 85457 nas_port_type Virtual 85457 remote_ip 5.5.5.244 85464 username forozande 85464 unique_id port 85464 terminate_cause User-Request 85464 bytes_out 31481 85464 bytes_in 60053 85464 station_ip 83.122.145.246 85464 port 15728854 85464 nas_port_type Virtual 85464 remote_ip 5.5.5.151 85468 username mohammadi 85468 unique_id port 85468 terminate_cause User-Request 85468 bytes_out 66321 85468 bytes_in 327172 85468 station_ip 37.129.22.58 85468 port 15728859 85468 nas_port_type Virtual 85468 remote_ip 5.5.5.150 85472 username alinezhad 85472 unique_id port 85472 terminate_cause User-Request 85472 bytes_out 0 85472 bytes_in 0 85472 station_ip 37.129.226.80 85472 port 15728862 85472 nas_port_type Virtual 85472 remote_ip 5.5.5.149 85478 username afarin 85478 unique_id port 85478 terminate_cause Lost-Carrier 85478 bytes_out 909263 85478 bytes_in 13948069 85478 station_ip 31.56.112.234 85478 port 15728839 85478 nas_port_type Virtual 85478 remote_ip 5.5.5.161 85482 username caferibar 85482 unique_id port 85482 terminate_cause Lost-Carrier 85482 bytes_out 2287819 85482 bytes_in 28504273 85482 station_ip 89.32.98.116 85482 port 15728847 85482 nas_port_type Virtual 85482 remote_ip 5.5.5.156 85485 username asadi 85485 unique_id port 85485 terminate_cause User-Request 85485 bytes_out 116456 85485 bytes_in 2237549 85485 station_ip 83.123.56.143 85485 port 15728866 85485 nas_port_type Virtual 85485 remote_ip 5.5.5.167 85486 username asadi 85486 unique_id port 85486 terminate_cause User-Request 85486 bytes_out 119647 85486 bytes_in 2613739 85486 station_ip 83.123.56.143 85486 port 15728867 85422 bytes_in 0 85422 station_ip 5.119.150.126 85422 port 36 85422 unique_id port 85422 remote_ip 10.8.1.10 85424 username forozande 85424 unique_id port 85424 terminate_cause User-Request 85424 bytes_out 143458 85424 bytes_in 149619 85424 station_ip 83.123.110.248 85424 port 15728814 85424 nas_port_type Virtual 85424 remote_ip 5.5.5.175 85427 username ksrkrgr 85427 unique_id port 85427 terminate_cause User-Request 85427 bytes_out 172460 85427 bytes_in 984622 85427 station_ip 151.234.22.18 85427 port 15728813 85427 nas_port_type Virtual 85427 remote_ip 5.5.5.176 85429 username aminvpn 85429 mac 85429 bytes_out 0 85429 bytes_in 0 85429 station_ip 83.123.93.9 85429 port 19 85429 unique_id port 85429 remote_ip 10.8.0.6 85430 username aminvpn 85430 unique_id port 85430 terminate_cause Lost-Carrier 85430 bytes_out 5711687 85430 bytes_in 112562946 85430 station_ip 5.119.150.126 85430 port 15728807 85430 nas_port_type Virtual 85430 remote_ip 5.5.5.188 85431 username caferibar 85431 kill_reason Wrong password 85431 unique_id port 85431 bytes_out 0 85431 bytes_in 0 85431 station_ip 37.129.133.190 85431 port 15728818 85431 nas_port_type Virtual 85432 username caferibar 85432 kill_reason Wrong password 85432 unique_id port 85432 bytes_out 0 85432 bytes_in 0 85432 station_ip 37.129.133.190 85432 port 15728819 85432 nas_port_type Virtual 85440 username caferibar 85440 unique_id port 85440 terminate_cause User-Request 85440 bytes_out 6112190 85440 bytes_in 191336643 85440 station_ip 37.129.133.190 85440 port 15728820 85440 nas_port_type Virtual 85440 remote_ip 5.5.5.171 85441 username forozande 85441 unique_id port 85441 terminate_cause User-Request 85441 bytes_out 384648 85441 bytes_in 13323172 85441 station_ip 37.129.168.241 85441 port 15728826 85441 nas_port_type Virtual 85441 remote_ip 5.5.5.168 85445 username forozande 85445 unique_id port 85445 terminate_cause User-Request 85445 bytes_out 439645 85445 bytes_in 13672105 85445 station_ip 83.123.228.83 85445 port 15728830 85445 nas_port_type Virtual 85445 remote_ip 5.5.5.166 85447 username zamanialireza 85447 unique_id port 85447 terminate_cause User-Request 85447 bytes_out 14694137 85447 bytes_in 717136415 85447 station_ip 94.183.213.166 85447 port 15728817 85447 nas_port_type Virtual 85447 remote_ip 5.5.5.172 85448 username madadi 85448 unique_id port 85448 terminate_cause Lost-Carrier 85448 bytes_out 181559 85448 bytes_in 484191 85448 station_ip 5.120.138.98 85448 port 15728831 85448 nas_port_type Virtual 85448 remote_ip 5.5.5.165 85450 username forozande 85450 unique_id port 85450 terminate_cause User-Request 85450 bytes_out 227931 85450 bytes_in 6455135 85450 station_ip 37.129.10.67 85450 port 15728838 85450 nas_port_type Virtual 85450 remote_ip 5.5.5.162 85454 username asadi 85454 unique_id port 85454 terminate_cause User-Request 85454 bytes_out 6334 85454 bytes_in 22562 85454 station_ip 83.123.56.143 85454 port 15728841 85454 nas_port_type Virtual 85454 remote_ip 5.5.5.167 85463 username ksrkrgr 85463 kill_reason Maximum check online fails reached 85463 unique_id port 85463 bytes_out 692372 85463 bytes_in 11421517 85463 station_ip 151.234.22.18 85463 port 15728853 85463 nas_port_type Virtual 85463 remote_ip 5.5.5.176 85465 username forozande 85465 unique_id port 85465 terminate_cause User-Request 85465 bytes_out 2273 85465 bytes_in 12512 85465 station_ip 83.122.145.246 85465 port 15728855 85465 nas_port_type Virtual 85465 remote_ip 5.5.5.151 85469 username mohammadi 85469 unique_id port 85469 terminate_cause User-Request 85469 bytes_out 26272 85469 bytes_in 39289 85469 station_ip 37.129.22.58 85469 port 15728860 85444 remote_ip 5.5.5.169 85452 username ahmadi 85452 unique_id port 85452 terminate_cause User-Request 85452 bytes_out 0 85452 bytes_in 0 85452 station_ip 37.129.68.167 85452 port 15728840 85452 nas_port_type Virtual 85452 remote_ip 5.5.5.160 85455 username farhad 85455 unique_id port 85455 terminate_cause User-Request 85455 bytes_out 0 85455 bytes_in 0 85455 station_ip 5.119.9.193 85455 port 15728843 85455 nas_port_type Virtual 85455 remote_ip 5.5.5.158 85460 username forozande 85460 unique_id port 85460 terminate_cause User-Request 85460 bytes_out 7380 85460 bytes_in 67506 85460 station_ip 83.123.177.112 85460 port 15728852 85460 nas_port_type Virtual 85460 remote_ip 5.5.5.153 85462 username farhad 85462 unique_id port 85462 terminate_cause User-Request 85462 bytes_out 7631697 85462 bytes_in 241828736 85462 station_ip 5.119.9.193 85462 port 15728844 85462 nas_port_type Virtual 85462 remote_ip 5.5.5.158 85467 username forozande 85467 unique_id port 85467 terminate_cause User-Request 85467 bytes_out 142556 85467 bytes_in 811070 85467 station_ip 83.122.145.246 85467 port 15728857 85467 nas_port_type Virtual 85467 remote_ip 5.5.5.151 85474 username pouria 85474 unique_id port 85474 terminate_cause Lost-Carrier 85474 bytes_out 3450285 85474 bytes_in 114903843 85474 station_ip 151.235.110.255 85474 port 15728861 85474 nas_port_type Virtual 85474 remote_ip 5.5.5.241 85475 username madadi 85475 unique_id port 85475 terminate_cause Lost-Carrier 85475 bytes_out 8717 85475 bytes_in 125571 85475 station_ip 5.119.196.81 85475 port 15728863 85475 nas_port_type Virtual 85475 remote_ip 5.5.5.148 85476 username aminvpn 85476 mac 85476 bytes_out 0 85476 bytes_in 0 85476 station_ip 37.129.173.100 85476 port 35 85476 unique_id port 85476 remote_ip 10.8.1.10 85488 username alinezhad 85488 unique_id port 85488 terminate_cause User-Request 85488 bytes_out 0 85488 bytes_in 0 85488 station_ip 5.202.63.53 85488 port 15728870 85488 nas_port_type Virtual 85488 remote_ip 5.5.5.170 85497 username jamali 85497 unique_id port 85497 terminate_cause Lost-Carrier 85497 bytes_out 192860 85497 bytes_in 639368 85497 station_ip 5.119.146.104 85497 port 15728874 85497 nas_port_type Virtual 85497 remote_ip 5.5.5.157 85498 username alinezhad 85498 unique_id port 85498 terminate_cause User-Request 85498 bytes_out 0 85498 bytes_in 0 85498 station_ip 5.202.63.53 85498 port 15728878 85498 nas_port_type Virtual 85498 remote_ip 5.5.5.170 85503 username ksrkrgr 85503 unique_id port 85503 terminate_cause User-Request 85503 bytes_out 6889593 85503 bytes_in 9165119 85503 station_ip 151.234.22.18 85503 port 15728879 85503 nas_port_type Virtual 85503 remote_ip 5.5.5.147 85505 username asadi 85505 unique_id port 85505 terminate_cause User-Request 85505 bytes_out 96382 85505 bytes_in 1788004 85505 station_ip 83.123.56.143 85505 port 15728890 85505 nas_port_type Virtual 85505 remote_ip 5.5.5.167 85509 username aminvpn 85509 mac 85509 bytes_out 0 85509 bytes_in 0 85509 station_ip 37.129.228.96 85509 port 35 85509 unique_id port 85509 remote_ip 10.8.1.10 85515 username amin.insta22 85515 kill_reason Relative expiration date has reached 85515 unique_id port 85515 bytes_out 0 85515 bytes_in 0 85515 station_ip 2.183.250.112 85515 port 15728897 85515 nas_port_type Virtual 85516 username aminvpn 85516 mac 85516 bytes_out 747407 85516 bytes_in 592416 85516 station_ip 37.129.228.96 85516 port 35 85516 unique_id port 85516 remote_ip 10.8.1.10 85518 username aminvpn 85518 mac 85518 bytes_out 52657 85518 bytes_in 72195 85518 station_ip 37.129.228.96 85469 nas_port_type Virtual 85469 remote_ip 5.5.5.150 85471 username madadi 85471 unique_id port 85471 terminate_cause Lost-Carrier 85471 bytes_out 101602 85471 bytes_in 436758 85471 station_ip 5.120.150.126 85471 port 15728851 85471 nas_port_type Virtual 85471 remote_ip 5.5.5.152 85479 username arman 85479 unique_id port 85479 terminate_cause Lost-Carrier 85479 bytes_out 5758388 85479 bytes_in 48598564 85479 station_ip 5.119.12.21 85479 port 15728810 85479 nas_port_type Virtual 85479 remote_ip 5.5.5.178 85483 username amirabbas 85483 unique_id port 85483 terminate_cause User-Request 85483 bytes_out 13124428 85483 bytes_in 348707432 85483 station_ip 151.238.237.28 85483 port 15728845 85483 nas_port_type Virtual 85483 remote_ip 5.5.5.195 85487 username asadi 85487 unique_id port 85487 terminate_cause User-Request 85487 bytes_out 98668 85487 bytes_in 1915787 85487 station_ip 83.123.56.143 85487 port 15728868 85487 nas_port_type Virtual 85487 remote_ip 5.5.5.167 85501 username forozande 85501 unique_id port 85501 terminate_cause User-Request 85501 bytes_out 0 85501 bytes_in 0 85501 station_ip 83.122.155.184 85501 port 15728887 85501 nas_port_type Virtual 85501 remote_ip 5.5.5.139 85511 username forozande 85511 unique_id port 85511 terminate_cause User-Request 85511 bytes_out 207948 85511 bytes_in 2735213 85511 station_ip 83.123.167.177 85511 port 15728893 85511 nas_port_type Virtual 85511 remote_ip 5.5.5.136 85517 username aminvpn 85517 kill_reason Another user logged on this global unique id 85517 mac 85517 bytes_out 0 85517 bytes_in 0 85517 station_ip 83.123.36.25 85517 port 19 85517 unique_id port 85517 remote_ip 10.8.0.6 85526 username amir 85526 unique_id port 85526 terminate_cause Lost-Carrier 85526 bytes_out 3312169 85526 bytes_in 50666752 85526 station_ip 46.225.232.106 85526 port 15728886 85526 nas_port_type Virtual 85526 remote_ip 5.5.5.238 85530 username madadi 85530 unique_id port 85530 terminate_cause Lost-Carrier 85530 bytes_out 19936 85530 bytes_in 145612 85530 station_ip 5.120.125.39 85530 port 15728902 85530 nas_port_type Virtual 85530 remote_ip 5.5.5.133 85535 username forozande 85535 unique_id port 85535 terminate_cause User-Request 85535 bytes_out 38485 85535 bytes_in 309337 85535 station_ip 83.123.245.90 85535 port 15728908 85535 nas_port_type Virtual 85535 remote_ip 5.5.5.135 85537 username forozande 85537 unique_id port 85537 terminate_cause User-Request 85537 bytes_out 25361 85537 bytes_in 166213 85537 station_ip 83.123.245.90 85537 port 15728910 85537 nas_port_type Virtual 85537 remote_ip 5.5.5.135 85541 username forozande 85541 unique_id port 85541 terminate_cause User-Request 85541 bytes_out 26646 85541 bytes_in 156170 85541 station_ip 37.129.149.216 85541 port 15728915 85541 nas_port_type Virtual 85541 remote_ip 5.5.5.126 85543 username forozande 85543 unique_id port 85543 terminate_cause User-Request 85543 bytes_out 403334 85543 bytes_in 12810318 85543 station_ip 37.129.149.216 85543 port 15728917 85543 nas_port_type Virtual 85543 remote_ip 5.5.5.126 85547 username forozande 85547 unique_id port 85547 terminate_cause User-Request 85547 bytes_out 336637 85547 bytes_in 10736226 85547 station_ip 37.129.149.216 85547 port 15728922 85547 nas_port_type Virtual 85547 remote_ip 5.5.5.126 85552 username madadi 85552 unique_id port 85552 terminate_cause Lost-Carrier 85552 bytes_out 36957 85552 bytes_in 155451 85552 station_ip 5.119.73.7 85552 port 15728926 85552 nas_port_type Virtual 85552 remote_ip 5.5.5.124 85555 username amirabbas 85555 unique_id port 85555 terminate_cause User-Request 85555 bytes_out 266108 85555 bytes_in 1577958 85473 nas_port_type Virtual 85473 remote_ip 5.5.5.157 85477 username aminvpn 85477 mac 85477 bytes_out 0 85477 bytes_in 0 85477 station_ip 37.129.173.100 85477 port 35 85477 unique_id port 85477 remote_ip 10.8.1.10 85480 username aminvpn 85480 mac 85480 bytes_out 1666684 85480 bytes_in 4275710 85480 station_ip 83.123.36.25 85480 port 19 85480 unique_id port 85480 remote_ip 10.8.0.6 85481 username kamali 85481 unique_id port 85481 terminate_cause Lost-Carrier 85481 bytes_out 2511081 85481 bytes_in 42269393 85481 station_ip 5.202.96.106 85481 port 15728842 85481 nas_port_type Virtual 85481 remote_ip 5.5.5.159 85484 username ksrkrgr 85484 unique_id port 85484 terminate_cause User-Request 85484 bytes_out 746410 85484 bytes_in 4372256 85484 station_ip 151.234.22.18 85484 port 15728865 85484 nas_port_type Virtual 85484 remote_ip 5.5.5.147 85489 username asadi 85489 unique_id port 85489 terminate_cause User-Request 85489 bytes_out 8010 85489 bytes_in 27268 85489 station_ip 83.123.56.143 85489 port 15728871 85489 nas_port_type Virtual 85489 remote_ip 5.5.5.167 85490 username asadi 85490 unique_id port 85490 terminate_cause User-Request 85490 bytes_out 32348 85490 bytes_in 69094 85490 station_ip 83.123.56.143 85490 port 15728872 85490 nas_port_type Virtual 85490 remote_ip 5.5.5.167 85491 username zamanialireza 85491 unique_id port 85491 terminate_cause User-Request 85491 bytes_out 160657 85491 bytes_in 744766 85491 station_ip 94.183.213.166 85491 port 15728869 85491 nas_port_type Virtual 85491 remote_ip 5.5.5.172 85493 username ksrkrgr 85493 unique_id port 85493 terminate_cause User-Request 85493 bytes_out 7965852 85493 bytes_in 12261753 85493 station_ip 151.234.22.18 85493 port 15728864 85493 nas_port_type Virtual 85493 remote_ip 5.5.5.176 85494 username arabpour 85494 unique_id port 85494 terminate_cause User-Request 85494 bytes_out 185778 85494 bytes_in 3611122 85494 station_ip 83.123.104.59 85494 port 15728875 85494 nas_port_type Virtual 85494 remote_ip 5.5.5.145 85495 username shojaei 85495 unique_id port 85495 terminate_cause User-Request 85495 bytes_out 6312 85495 bytes_in 20411 85495 station_ip 83.123.42.249 85495 port 15728877 85495 nas_port_type Virtual 85495 remote_ip 5.5.5.143 85499 username alinezhad 85499 unique_id port 85499 terminate_cause User-Request 85499 bytes_out 39775 85499 bytes_in 528381 85499 station_ip 5.202.63.53 85499 port 15728881 85499 nas_port_type Virtual 85499 remote_ip 5.5.5.170 85502 username tahani 85502 kill_reason Relative expiration date has reached 85502 unique_id port 85502 bytes_out 0 85502 bytes_in 0 85502 station_ip 37.129.47.58 85502 port 15728888 85502 nas_port_type Virtual 85504 username aminvpn 85504 unique_id port 85504 terminate_cause User-Request 85504 bytes_out 2695370 85504 bytes_in 19492532 85504 station_ip 37.129.228.96 85504 port 15728885 85504 nas_port_type Virtual 85504 remote_ip 5.5.5.140 85507 username aminvpn 85507 mac 85507 bytes_out 0 85507 bytes_in 0 85507 station_ip 37.129.228.96 85507 port 35 85507 unique_id port 85507 remote_ip 10.8.1.10 85508 username ahmadi 85508 unique_id port 85508 terminate_cause User-Request 85508 bytes_out 30636 85508 bytes_in 240395 85508 station_ip 37.129.227.138 85508 port 15728891 85508 nas_port_type Virtual 85508 remote_ip 5.5.5.138 85510 username alinezhad 85510 unique_id port 85510 terminate_cause User-Request 85510 bytes_out 0 85510 bytes_in 0 85510 station_ip 37.129.197.60 85510 port 15728892 85510 nas_port_type Virtual 85510 remote_ip 5.5.5.137 85514 username shojaei 85514 unique_id port 85486 nas_port_type Virtual 85486 remote_ip 5.5.5.167 85492 username forozande 85492 unique_id port 85492 terminate_cause User-Request 85492 bytes_out 223285 85492 bytes_in 1880158 85492 station_ip 83.122.44.30 85492 port 15728873 85492 nas_port_type Virtual 85492 remote_ip 5.5.5.146 85496 username madadi 85496 unique_id port 85496 terminate_cause Lost-Carrier 85496 bytes_out 147164 85496 bytes_in 892250 85496 station_ip 5.120.97.164 85496 port 15728876 85496 nas_port_type Virtual 85496 remote_ip 5.5.5.144 85500 username aminvpn 85500 mac 85500 bytes_out 0 85500 bytes_in 0 85500 station_ip 37.129.228.96 85500 port 35 85500 unique_id port 85500 remote_ip 10.8.1.10 85506 username aminvpn 85506 unique_id port 85506 terminate_cause User-Request 85506 bytes_out 601253 85506 bytes_in 2139400 85506 station_ip 37.129.228.96 85506 port 15728889 85506 nas_port_type Virtual 85506 remote_ip 5.5.5.140 85512 username shojaei 85512 unique_id port 85512 terminate_cause User-Request 85512 bytes_out 0 85512 bytes_in 0 85512 station_ip 83.123.42.249 85512 port 15728894 85512 nas_port_type Virtual 85512 remote_ip 5.5.5.143 85513 username forozande 85513 unique_id port 85513 terminate_cause User-Request 85513 bytes_out 62277 85513 bytes_in 254217 85513 station_ip 83.123.245.90 85513 port 15728895 85513 nas_port_type Virtual 85513 remote_ip 5.5.5.135 85531 username aminvpn 85531 mac 85531 bytes_out 0 85531 bytes_in 0 85531 station_ip 83.123.36.25 85531 port 19 85531 unique_id port 85533 username ahmadi 85533 unique_id port 85533 terminate_cause User-Request 85533 bytes_out 0 85533 bytes_in 0 85533 station_ip 37.129.227.138 85533 port 15728907 85533 nas_port_type Virtual 85533 remote_ip 5.5.5.138 85536 username arabpour 85536 unique_id port 85536 terminate_cause User-Request 85536 bytes_out 352137 85536 bytes_in 9702701 85536 station_ip 37.129.16.240 85536 port 15728909 85536 nas_port_type Virtual 85536 remote_ip 5.5.5.129 85538 username madadi 85538 unique_id port 85538 terminate_cause Lost-Carrier 85538 bytes_out 17417 85538 bytes_in 130635 85538 station_ip 5.119.236.35 85538 port 15728906 85538 nas_port_type Virtual 85538 remote_ip 5.5.5.130 85540 username forozande 85540 unique_id port 85540 terminate_cause User-Request 85540 bytes_out 58042 85540 bytes_in 658267 85540 station_ip 37.129.149.216 85540 port 15728914 85540 nas_port_type Virtual 85540 remote_ip 5.5.5.126 85542 username forozande 85542 unique_id port 85542 terminate_cause User-Request 85542 bytes_out 36426 85542 bytes_in 170238 85542 station_ip 37.129.149.216 85542 port 15728916 85542 nas_port_type Virtual 85542 remote_ip 5.5.5.126 85544 username forozande 85544 unique_id port 85544 terminate_cause User-Request 85544 bytes_out 365461 85544 bytes_in 11694838 85544 station_ip 37.129.149.216 85544 port 15728918 85544 nas_port_type Virtual 85544 remote_ip 5.5.5.126 85545 username forozande 85545 unique_id port 85545 terminate_cause User-Request 85545 bytes_out 252 85545 bytes_in 13872 85545 station_ip 37.129.149.216 85545 port 15728920 85545 nas_port_type Virtual 85545 remote_ip 5.5.5.126 85553 username ksrkrgr 85553 unique_id port 85553 terminate_cause User-Request 85553 bytes_out 5343161 85553 bytes_in 8323478 85553 station_ip 151.234.22.18 85553 port 15728921 85553 nas_port_type Virtual 85553 remote_ip 5.5.5.147 85559 username mahbobeh 85559 unique_id port 85559 terminate_cause Lost-Carrier 85559 bytes_out 983165 85559 bytes_in 19086336 85559 station_ip 83.122.29.252 85559 port 15728919 85559 nas_port_type Virtual 85559 remote_ip 5.5.5.125 85565 username asadi 85514 terminate_cause User-Request 85514 bytes_out 0 85514 bytes_in 0 85514 station_ip 83.123.42.249 85514 port 15728896 85514 nas_port_type Virtual 85514 remote_ip 5.5.5.143 85520 username aminvpn 85520 unique_id port 85520 terminate_cause User-Request 85520 bytes_out 1092826 85520 bytes_in 4032372 85520 station_ip 37.129.228.96 85520 port 15728898 85520 nas_port_type Virtual 85520 remote_ip 5.5.5.140 85522 username aminvpn 85522 mac 85522 bytes_out 0 85522 bytes_in 0 85522 station_ip 37.129.228.96 85522 port 35 85522 unique_id port 85522 remote_ip 10.8.1.10 85524 username heydari 85524 unique_id port 85524 terminate_cause Lost-Carrier 85524 bytes_out 1751701 85524 bytes_in 12255729 85524 station_ip 5.120.82.132 85524 port 15728848 85524 nas_port_type Virtual 85524 remote_ip 5.5.5.155 85527 username aminvpn 85527 unique_id port 85527 terminate_cause Lost-Carrier 85527 bytes_out 328717 85527 bytes_in 2120162 85527 station_ip 2.183.251.251 85527 port 15728899 85527 nas_port_type Virtual 85527 remote_ip 5.5.5.134 85529 username asadi 85529 unique_id port 85529 terminate_cause User-Request 85529 bytes_out 42672 85529 bytes_in 114972 85529 station_ip 83.123.56.143 85529 port 15728904 85529 nas_port_type Virtual 85529 remote_ip 5.5.5.167 85532 username heydari 85532 unique_id port 85532 terminate_cause Lost-Carrier 85532 bytes_out 301478 85532 bytes_in 1443202 85532 station_ip 5.120.82.132 85532 port 15728901 85532 nas_port_type Virtual 85532 remote_ip 5.5.5.155 85534 username abdilahyar 85534 unique_id port 85534 terminate_cause Lost-Carrier 85534 bytes_out 2826590 85534 bytes_in 80305267 85534 station_ip 5.119.12.96 85534 port 15728682 85534 nas_port_type Virtual 85534 remote_ip 5.5.5.233 85546 username alinezhad 85546 unique_id port 85546 terminate_cause User-Request 85546 bytes_out 0 85546 bytes_in 0 85546 station_ip 5.202.19.26 85546 port 15728923 85546 nas_port_type Virtual 85546 remote_ip 5.5.5.132 85548 username forozande 85548 unique_id port 85548 terminate_cause User-Request 85548 bytes_out 309633 85548 bytes_in 10012255 85548 station_ip 37.129.149.216 85548 port 15728924 85548 nas_port_type Virtual 85548 remote_ip 5.5.5.126 85549 username caferibar 85549 unique_id port 85549 terminate_cause Lost-Carrier 85549 bytes_out 620671 85549 bytes_in 8632008 85549 station_ip 89.34.33.204 85549 port 15728912 85549 nas_port_type Virtual 85549 remote_ip 5.5.5.127 85550 username heydari 85550 unique_id port 85550 terminate_cause Lost-Carrier 85550 bytes_out 149350 85550 bytes_in 1030117 85550 station_ip 5.120.82.132 85550 port 15728905 85550 nas_port_type Virtual 85550 remote_ip 5.5.5.131 85554 username madadi 85554 unique_id port 85554 terminate_cause Lost-Carrier 85554 bytes_out 26446 85554 bytes_in 135478 85554 station_ip 5.119.230.193 85554 port 15728928 85554 nas_port_type Virtual 85554 remote_ip 5.5.5.123 85556 username zamanialireza 85556 unique_id port 85556 terminate_cause User-Request 85556 bytes_out 635871 85556 bytes_in 12694693 85556 station_ip 94.183.213.166 85556 port 15728930 85556 nas_port_type Virtual 85556 remote_ip 5.5.5.172 85557 username mahdixz 85557 unique_id port 85557 terminate_cause User-Request 85557 bytes_out 1496338 85557 bytes_in 14048849 85557 station_ip 151.235.109.104 85557 port 15728929 85557 nas_port_type Virtual 85557 remote_ip 5.5.5.217 85563 username asadi 85563 unique_id port 85563 terminate_cause User-Request 85563 bytes_out 195528 85563 bytes_in 6558315 85563 station_ip 83.122.153.140 85563 port 15728938 85563 nas_port_type Virtual 85563 remote_ip 5.5.5.120 85571 username mahdixz 85571 unique_id port 85518 port 35 85518 unique_id port 85518 remote_ip 10.8.1.10 85519 username zamanialireza 85519 unique_id port 85519 terminate_cause User-Request 85519 bytes_out 6463672 85519 bytes_in 108285217 85519 station_ip 94.183.213.166 85519 port 15728880 85519 nas_port_type Virtual 85519 remote_ip 5.5.5.172 85521 username aminvpn 85521 mac 85521 bytes_out 214049 85521 bytes_in 436252 85521 station_ip 37.129.228.96 85521 port 35 85521 unique_id port 85521 remote_ip 10.8.1.10 85523 username aminvpn 85523 mac 85523 bytes_out 0 85523 bytes_in 0 85523 station_ip 37.129.228.96 85523 port 35 85523 unique_id port 85523 remote_ip 10.8.1.10 85525 username heydari 85525 unique_id port 85525 terminate_cause User-Request 85525 bytes_out 0 85525 bytes_in 0 85525 station_ip 5.120.82.132 85525 port 15728900 85525 nas_port_type Virtual 85525 remote_ip 5.5.5.155 85528 username alinezhad 85528 unique_id port 85528 terminate_cause User-Request 85528 bytes_out 28680 85528 bytes_in 140535 85528 station_ip 5.202.19.26 85528 port 15728903 85528 nas_port_type Virtual 85528 remote_ip 5.5.5.132 85539 username ahmadi 85539 unique_id port 85539 terminate_cause User-Request 85539 bytes_out 2172156 85539 bytes_in 14315777 85539 station_ip 37.129.227.138 85539 port 15728913 85539 nas_port_type Virtual 85539 remote_ip 5.5.5.138 85551 username aminvpn 85551 unique_id port 85551 terminate_cause Lost-Carrier 85551 bytes_out 2381723 85551 bytes_in 22117501 85551 station_ip 2.183.251.251 85551 port 15728911 85551 nas_port_type Virtual 85551 remote_ip 5.5.5.128 85558 username zamanialireza 85558 unique_id port 85558 terminate_cause User-Request 85558 bytes_out 0 85558 bytes_in 0 85558 station_ip 94.183.213.166 85558 port 15728932 85558 nas_port_type Virtual 85558 remote_ip 5.5.5.172 85560 username zamanialireza 85560 unique_id port 85560 terminate_cause User-Request 85560 bytes_out 271574 85560 bytes_in 6633486 85560 station_ip 94.183.213.166 85560 port 15728933 85560 nas_port_type Virtual 85560 remote_ip 5.5.5.172 85564 username asadi 85564 unique_id port 85564 terminate_cause User-Request 85564 bytes_out 34620 85564 bytes_in 76238 85564 station_ip 83.122.153.140 85564 port 15728939 85564 nas_port_type Virtual 85564 remote_ip 5.5.5.120 85567 username asadi 85567 unique_id port 85567 terminate_cause User-Request 85567 bytes_out 22330 85567 bytes_in 72439 85567 station_ip 83.122.153.140 85567 port 15728945 85567 nas_port_type Virtual 85567 remote_ip 5.5.5.120 85569 username farhad 85569 unique_id port 85569 terminate_cause Lost-Carrier 85569 bytes_out 30990561 85569 bytes_in 473708965 85569 station_ip 5.119.147.114 85569 port 15728884 85569 nas_port_type Virtual 85569 remote_ip 5.5.5.141 85572 username asadi 85572 unique_id port 85572 terminate_cause User-Request 85572 bytes_out 19271 85572 bytes_in 65006 85572 station_ip 83.122.153.140 85572 port 15728948 85572 nas_port_type Virtual 85572 remote_ip 5.5.5.120 85574 username asadi 85574 unique_id port 85574 terminate_cause User-Request 85574 bytes_out 195689 85574 bytes_in 2101952 85574 station_ip 83.122.153.140 85574 port 15728951 85574 nas_port_type Virtual 85574 remote_ip 5.5.5.120 85576 username afarin 85576 unique_id port 85576 terminate_cause User-Request 85576 bytes_out 664005 85576 bytes_in 16365265 85576 station_ip 151.238.228.25 85576 port 15728954 85576 nas_port_type Virtual 85576 remote_ip 5.5.5.117 85587 username caferibar 85587 unique_id port 85587 terminate_cause Lost-Carrier 85587 bytes_out 2264103 85587 bytes_in 35937782 85587 station_ip 93.114.24.133 85587 port 15728935 85587 nas_port_type Virtual 85555 station_ip 151.238.237.28 85555 port 15728925 85555 nas_port_type Virtual 85555 remote_ip 5.5.5.195 85561 username alinezhad 85561 unique_id port 85561 terminate_cause User-Request 85561 bytes_out 0 85561 bytes_in 0 85561 station_ip 5.202.19.26 85561 port 15728934 85561 nas_port_type Virtual 85561 remote_ip 5.5.5.132 85562 username asadi 85562 unique_id port 85562 terminate_cause User-Request 85562 bytes_out 275804 85562 bytes_in 4142064 85562 station_ip 83.122.153.140 85562 port 15728937 85562 nas_port_type Virtual 85562 remote_ip 5.5.5.120 85566 username asadi 85566 unique_id port 85566 terminate_cause User-Request 85566 bytes_out 19480 85566 bytes_in 70626 85566 station_ip 83.122.153.140 85566 port 15728942 85566 nas_port_type Virtual 85566 remote_ip 5.5.5.120 85568 username asadi 85568 unique_id port 85568 terminate_cause User-Request 85568 bytes_out 8832 85568 bytes_in 33537 85568 station_ip 83.122.153.140 85568 port 15728946 85568 nas_port_type Virtual 85568 remote_ip 5.5.5.120 85573 username asadi 85573 unique_id port 85573 terminate_cause User-Request 85573 bytes_out 26089 85573 bytes_in 148516 85573 station_ip 83.122.153.140 85573 port 15728949 85573 nas_port_type Virtual 85573 remote_ip 5.5.5.120 85577 username shahnaz 85577 unique_id port 85577 terminate_cause User-Request 85577 bytes_out 2136611 85577 bytes_in 33844635 85577 station_ip 5.119.209.48 85577 port 15728953 85577 nas_port_type Virtual 85577 remote_ip 5.5.5.118 85581 username farhad 85581 unique_id port 85581 terminate_cause Lost-Carrier 85581 bytes_out 5050554 85581 bytes_in 56111274 85581 station_ip 5.120.187.33 85581 port 15728943 85581 nas_port_type Virtual 85581 remote_ip 5.5.5.119 85589 username heydari 85589 unique_id port 85589 terminate_cause Lost-Carrier 85589 bytes_out 354228 85589 bytes_in 4647858 85589 station_ip 5.120.82.132 85589 port 15728927 85589 nas_port_type Virtual 85589 remote_ip 5.5.5.131 85590 username khalili 85590 unique_id port 85590 terminate_cause Lost-Carrier 85590 bytes_out 3985735 85590 bytes_in 141303351 85590 station_ip 5.119.183.41 85590 port 15728958 85590 nas_port_type Virtual 85590 remote_ip 5.5.5.114 85601 username madadi 85601 unique_id port 85601 terminate_cause Lost-Carrier 85601 bytes_out 354742 85601 bytes_in 3375281 85601 station_ip 5.119.21.96 85601 port 15728643 85601 nas_port_type Virtual 85601 remote_ip 5.5.5.252 85604 username forozande 85604 unique_id port 85604 terminate_cause User-Request 85604 bytes_out 19242 85604 bytes_in 136683 85604 station_ip 83.122.216.88 85604 port 15728648 85604 nas_port_type Virtual 85604 remote_ip 5.5.5.250 85605 username madadi 85605 unique_id port 85605 terminate_cause Lost-Carrier 85605 bytes_out 125358 85605 bytes_in 1006936 85605 station_ip 5.120.39.129 85605 port 15728644 85605 nas_port_type Virtual 85605 remote_ip 5.5.5.251 85608 username madadi 85608 unique_id port 85608 terminate_cause Lost-Carrier 85608 bytes_out 8939 85608 bytes_in 124211 85608 station_ip 5.119.14.39 85608 port 15728649 85608 nas_port_type Virtual 85608 remote_ip 5.5.5.247 85618 username zamanialireza 85618 unique_id port 85618 terminate_cause User-Request 85618 bytes_out 0 85618 bytes_in 0 85618 station_ip 83.123.208.223 85618 port 15728664 85618 nas_port_type Virtual 85618 remote_ip 5.5.5.253 85627 username mahbobeh 85627 unique_id port 85627 terminate_cause Lost-Carrier 85627 bytes_out 1180210 85627 bytes_in 143632 85627 station_ip 83.122.29.252 85627 port 15728671 85627 nas_port_type Virtual 85627 remote_ip 5.5.5.235 85631 username alinezhad 85631 unique_id port 85631 terminate_cause User-Request 85631 bytes_out 42407 85565 unique_id port 85565 terminate_cause User-Request 85565 bytes_out 27368 85565 bytes_in 61845 85565 station_ip 83.122.153.140 85565 port 15728941 85565 nas_port_type Virtual 85565 remote_ip 5.5.5.120 85570 username aminvpn 85570 mac 85570 bytes_out 0 85570 bytes_in 0 85570 station_ip 37.129.219.4 85570 port 19 85570 unique_id port 85570 remote_ip 10.8.0.6 85578 username zamanialireza 85578 unique_id port 85578 terminate_cause User-Request 85578 bytes_out 235788 85578 bytes_in 1013838 85578 station_ip 5.160.113.95 85578 port 15728956 85578 nas_port_type Virtual 85578 remote_ip 5.5.5.115 85580 username amirabbas 85580 unique_id port 85580 terminate_cause User-Request 85580 bytes_out 28112783 85580 bytes_in 691920806 85580 station_ip 151.238.237.28 85580 port 15728944 85580 nas_port_type Virtual 85580 remote_ip 5.5.5.195 85582 username alinezhad 85582 unique_id port 85582 terminate_cause User-Request 85582 bytes_out 646592 85582 bytes_in 2446933 85582 station_ip 5.202.19.26 85582 port 15728959 85582 nas_port_type Virtual 85582 remote_ip 5.5.5.132 85583 username zamanialireza 85583 unique_id port 85583 terminate_cause User-Request 85583 bytes_out 752593 85583 bytes_in 21221302 85583 station_ip 5.160.113.95 85583 port 15728960 85583 nas_port_type Virtual 85583 remote_ip 5.5.5.115 85585 username madadi 85585 unique_id port 85585 terminate_cause Lost-Carrier 85585 bytes_out 2559339 85585 bytes_in 9739138 85585 station_ip 5.119.38.126 85585 port 15728931 85585 nas_port_type Virtual 85585 remote_ip 5.5.5.122 85591 username alinezhad 85591 unique_id port 85591 terminate_cause User-Request 85591 bytes_out 234274 85591 bytes_in 1356493 85591 station_ip 5.202.19.26 85591 port 15728963 85591 nas_port_type Virtual 85591 remote_ip 5.5.5.132 85593 username aminvpn 85593 mac 85593 bytes_out 0 85593 bytes_in 0 85593 station_ip 37.129.252.40 85593 port 19 85593 unique_id port 85593 remote_ip 10.8.0.6 85596 username caferibar 85596 unique_id port 85596 terminate_cause Admin-Reboot 85596 bytes_out 129162087 85596 bytes_in 823640695 85596 station_ip 5.119.72.22 85596 port 15728882 85596 nas_port_type Virtual 85596 remote_ip 5.5.5.142 85600 username zamanialireza 85600 unique_id port 85600 terminate_cause User-Request 85600 bytes_out 759221 85600 bytes_in 26567200 85600 station_ip 83.123.208.223 85600 port 15728642 85600 nas_port_type Virtual 85600 remote_ip 5.5.5.253 85610 username soleymani 85610 unique_id port 85610 terminate_cause Lost-Carrier 85610 bytes_out 75147 85610 bytes_in 297607 85610 station_ip 5.119.111.253 85610 port 15728651 85610 nas_port_type Virtual 85610 remote_ip 5.5.5.245 85611 username forozande 85611 unique_id port 85611 terminate_cause User-Request 85611 bytes_out 16625 85611 bytes_in 226295 85611 station_ip 37.129.107.87 85611 port 15728655 85611 nas_port_type Virtual 85611 remote_ip 5.5.5.241 85613 username madadi 85613 unique_id port 85613 terminate_cause Lost-Carrier 85613 bytes_out 20351 85613 bytes_in 141922 85613 station_ip 5.119.155.179 85613 port 15728654 85613 nas_port_type Virtual 85613 remote_ip 5.5.5.242 85614 username zamanialireza 85614 unique_id port 85614 terminate_cause User-Request 85614 bytes_out 194348 85614 bytes_in 897217 85614 station_ip 83.123.208.223 85614 port 15728657 85614 nas_port_type Virtual 85614 remote_ip 5.5.5.253 85622 username asadi 85622 unique_id port 85622 terminate_cause User-Request 85622 bytes_out 204493 85622 bytes_in 1917911 85622 station_ip 113.203.81.18 85622 port 15728669 85622 nas_port_type Virtual 85622 remote_ip 5.5.5.243 85636 username pouria 85636 unique_id port 85571 terminate_cause User-Request 85571 bytes_out 2821461 85571 bytes_in 870629 85571 station_ip 151.235.109.104 85571 port 15728947 85571 nas_port_type Virtual 85571 remote_ip 5.5.5.217 85575 username asadi 85575 unique_id port 85575 terminate_cause User-Request 85575 bytes_out 20985 85575 bytes_in 60799 85575 station_ip 83.122.153.140 85575 port 15728952 85575 nas_port_type Virtual 85575 remote_ip 5.5.5.120 85579 username alinezhad 85579 unique_id port 85579 terminate_cause User-Request 85579 bytes_out 0 85579 bytes_in 0 85579 station_ip 5.202.19.26 85579 port 15728957 85579 nas_port_type Virtual 85579 remote_ip 5.5.5.132 85584 username caferibar 85584 unique_id port 85584 terminate_cause Lost-Carrier 85584 bytes_out 9546761 85584 bytes_in 293253932 85584 station_ip 31.59.39.67 85584 port 15728940 85584 nas_port_type Virtual 85584 remote_ip 5.5.5.180 85586 username shahrooz 85586 unique_id port 85586 terminate_cause Lost-Carrier 85586 bytes_out 190897 85586 bytes_in 1297979 85586 station_ip 83.122.120.99 85586 port 15728955 85586 nas_port_type Virtual 85586 remote_ip 5.5.5.116 85592 username shojaei 85592 unique_id port 85592 terminate_cause User-Request 85592 bytes_out 10474 85592 bytes_in 75414 85592 station_ip 83.123.42.249 85592 port 15728964 85592 nas_port_type Virtual 85592 remote_ip 5.5.5.143 85594 username alinezhad 85594 unique_id port 85594 terminate_cause User-Request 85594 bytes_out 12565 85594 bytes_in 29307 85594 station_ip 5.202.19.26 85594 port 15728965 85594 nas_port_type Virtual 85594 remote_ip 5.5.5.132 85595 username asadi 85595 unique_id port 85595 terminate_cause User-Request 85595 bytes_out 126948 85595 bytes_in 683456 85595 station_ip 113.203.81.18 85595 port 15728967 85595 nas_port_type Virtual 85595 remote_ip 5.5.5.112 85598 username abdilahyar 85598 unique_id port 85598 terminate_cause Admin-Reboot 85598 bytes_out 876614 85598 bytes_in 19917271 85598 station_ip 5.120.44.117 85598 port 15728968 85598 nas_port_type Virtual 85598 remote_ip 5.5.5.111 85599 username madadi 85599 unique_id port 85599 terminate_cause Lost-Carrier 85599 bytes_out 26616 85599 bytes_in 146389 85599 station_ip 5.120.90.180 85599 port 15728640 85599 nas_port_type Virtual 85599 remote_ip 5.5.5.255 85603 username alinezhad 85603 unique_id port 85603 terminate_cause User-Request 85603 bytes_out 0 85603 bytes_in 0 85603 station_ip 5.202.19.26 85603 port 15728647 85603 nas_port_type Virtual 85603 remote_ip 5.5.5.248 85609 username soleymani 85609 unique_id port 85609 terminate_cause Lost-Carrier 85609 bytes_out 98779 85609 bytes_in 460317 85609 station_ip 5.120.21.124 85609 port 15728650 85609 nas_port_type Virtual 85609 remote_ip 5.5.5.246 85612 username asadi 85612 unique_id port 85612 terminate_cause User-Request 85612 bytes_out 327415 85612 bytes_in 11403905 85612 station_ip 113.203.81.18 85612 port 15728656 85612 nas_port_type Virtual 85612 remote_ip 5.5.5.243 85616 username zamanialireza 85616 unique_id port 85616 terminate_cause User-Request 85616 bytes_out 338396 85616 bytes_in 475633 85616 station_ip 83.123.208.223 85616 port 15728661 85616 nas_port_type Virtual 85616 remote_ip 5.5.5.253 85619 username asadi 85619 unique_id port 85619 terminate_cause User-Request 85619 bytes_out 145803 85619 bytes_in 1195654 85619 station_ip 113.203.81.18 85619 port 15728666 85619 nas_port_type Virtual 85619 remote_ip 5.5.5.243 85620 username asadi 85620 unique_id port 85620 terminate_cause User-Request 85620 bytes_out 130064 85620 bytes_in 1177025 85620 station_ip 113.203.81.18 85620 port 15728667 85620 nas_port_type Virtual 85620 remote_ip 5.5.5.243 85623 username aminvpn 85587 remote_ip 5.5.5.121 85588 username majid 85588 unique_id port 85588 terminate_cause User-Request 85588 bytes_out 6646864 85588 bytes_in 197719338 85588 station_ip 86.57.11.238 85588 port 15728961 85588 nas_port_type Virtual 85588 remote_ip 5.5.5.113 85597 username mahbobeh 85597 unique_id port 85597 terminate_cause Admin-Reboot 85597 bytes_out 46973 85597 bytes_in 459659 85597 station_ip 83.122.29.252 85597 port 15728966 85597 nas_port_type Virtual 85597 remote_ip 5.5.5.125 85602 username forozande 85602 unique_id port 85602 terminate_cause User-Request 85602 bytes_out 268827 85602 bytes_in 1749343 85602 station_ip 83.122.216.88 85602 port 15728645 85602 nas_port_type Virtual 85602 remote_ip 5.5.5.250 85606 username ahmadi 85606 unique_id port 85606 terminate_cause User-Request 85606 bytes_out 10884 85606 bytes_in 61961 85606 station_ip 37.129.187.170 85606 port 15728652 85606 nas_port_type Virtual 85606 remote_ip 5.5.5.244 85607 username asadi 85607 unique_id port 85607 terminate_cause User-Request 85607 bytes_out 67323 85607 bytes_in 1398497 85607 station_ip 113.203.81.18 85607 port 15728653 85607 nas_port_type Virtual 85607 remote_ip 5.5.5.243 85615 username forozande 85615 unique_id port 85615 terminate_cause User-Request 85615 bytes_out 0 85615 bytes_in 0 85615 station_ip 113.203.90.93 85615 port 15728662 85615 nas_port_type Virtual 85615 remote_ip 5.5.5.237 85617 username forozande 85617 unique_id port 85617 terminate_cause User-Request 85617 bytes_out 95096 85617 bytes_in 846692 85617 station_ip 113.203.90.93 85617 port 15728663 85617 nas_port_type Virtual 85617 remote_ip 5.5.5.237 85621 username zamanialireza 85621 unique_id port 85621 terminate_cause User-Request 85621 bytes_out 0 85621 bytes_in 0 85621 station_ip 83.123.208.223 85621 port 15728668 85621 nas_port_type Virtual 85621 remote_ip 5.5.5.253 85624 username madadi 85624 unique_id port 85624 terminate_cause Lost-Carrier 85624 bytes_out 7492 85624 bytes_in 122897 85624 station_ip 5.120.72.161 85624 port 15728660 85624 nas_port_type Virtual 85624 remote_ip 5.5.5.238 85626 username asadi 85626 unique_id port 85626 terminate_cause User-Request 85626 bytes_out 246148 85626 bytes_in 10623380 85626 station_ip 113.203.81.18 85626 port 15728672 85626 nas_port_type Virtual 85626 remote_ip 5.5.5.243 85628 username soleymani 85628 unique_id port 85628 terminate_cause Lost-Carrier 85628 bytes_out 70569 85628 bytes_in 424242 85628 station_ip 5.120.179.39 85628 port 15728665 85628 nas_port_type Virtual 85628 remote_ip 5.5.5.236 85629 username asadi 85629 unique_id port 85629 terminate_cause User-Request 85629 bytes_out 217125 85629 bytes_in 1558657 85629 station_ip 113.203.81.18 85629 port 15728675 85629 nas_port_type Virtual 85629 remote_ip 5.5.5.243 85630 username asadi 85630 unique_id port 85630 terminate_cause User-Request 85630 bytes_out 208076 85630 bytes_in 1749739 85630 station_ip 113.203.81.18 85630 port 15728677 85630 nas_port_type Virtual 85630 remote_ip 5.5.5.243 85633 username aminvpn 85633 unique_id port 85633 terminate_cause User-Request 85633 bytes_out 592755 85633 bytes_in 4049444 85633 station_ip 2.183.251.251 85633 port 15728673 85633 nas_port_type Virtual 85633 remote_ip 5.5.5.239 85638 username soleymani 85638 unique_id port 85638 terminate_cause Lost-Carrier 85638 bytes_out 171334 85638 bytes_in 927078 85638 station_ip 5.120.51.160 85638 port 15728679 85638 nas_port_type Virtual 85638 remote_ip 5.5.5.232 85639 username soleymani 85639 unique_id port 85639 terminate_cause Lost-Carrier 85639 bytes_out 29436 85639 bytes_in 173392 85639 station_ip 5.120.111.137 85639 port 15728683 85623 unique_id port 85623 terminate_cause Lost-Carrier 85623 bytes_out 237113 85623 bytes_in 3913563 85623 station_ip 2.183.251.251 85623 port 15728659 85623 nas_port_type Virtual 85623 remote_ip 5.5.5.239 85625 username asadi 85625 unique_id port 85625 terminate_cause User-Request 85625 bytes_out 222103 85625 bytes_in 2921722 85625 station_ip 113.203.81.18 85625 port 15728670 85625 nas_port_type Virtual 85625 remote_ip 5.5.5.243 85632 username madadi 85632 unique_id port 85632 terminate_cause Lost-Carrier 85632 bytes_out 14413 85632 bytes_in 134845 85632 station_ip 5.119.221.62 85632 port 15728676 85632 nas_port_type Virtual 85632 remote_ip 5.5.5.233 85635 username ahmadi 85635 unique_id port 85635 terminate_cause User-Request 85635 bytes_out 29403 85635 bytes_in 223407 85635 station_ip 37.129.146.146 85635 port 15728681 85635 nas_port_type Virtual 85635 remote_ip 5.5.5.230 85637 username zamanialireza 85637 unique_id port 85637 terminate_cause User-Request 85637 bytes_out 587768 85637 bytes_in 12295984 85637 station_ip 83.122.191.155 85637 port 15728684 85637 nas_port_type Virtual 85637 remote_ip 5.5.5.227 85642 username aminvpn 85642 kill_reason Maximum check online fails reached 85642 unique_id port 85642 bytes_out 2438706 85642 bytes_in 2972307 85642 station_ip 37.129.245.80 85642 port 15728686 85642 nas_port_type Virtual 85642 remote_ip 5.5.5.225 85645 username zamanialireza 85645 unique_id port 85645 terminate_cause User-Request 85645 bytes_out 5465016 85645 bytes_in 115633606 85645 station_ip 37.156.51.53 85645 port 15728685 85645 nas_port_type Virtual 85645 remote_ip 5.5.5.226 85648 username amirabbas 85648 unique_id port 85648 terminate_cause User-Request 85648 bytes_out 50493427 85648 bytes_in 1355923245 85648 station_ip 151.238.237.28 85648 port 15728674 85648 nas_port_type Virtual 85648 remote_ip 5.5.5.234 85650 username madadi 85650 unique_id port 85650 terminate_cause User-Request 85650 bytes_out 17217 85650 bytes_in 47907 85650 station_ip 5.119.88.50 85650 port 15728697 85650 nas_port_type Virtual 85650 remote_ip 5.5.5.220 85659 username aminvpn 85659 mac 85659 bytes_out 0 85659 bytes_in 0 85659 station_ip 37.129.160.89 85659 port 20 85659 unique_id port 85659 remote_ip 10.8.0.6 85665 username aminvpn 85665 mac 85665 bytes_out 0 85665 bytes_in 0 85665 station_ip 37.129.160.89 85665 port 20 85665 unique_id port 85665 remote_ip 10.8.0.6 85670 username aminvpn 85670 mac 85670 bytes_out 0 85670 bytes_in 0 85670 station_ip 37.129.160.89 85670 port 20 85670 unique_id port 85670 remote_ip 10.8.0.6 85673 username aminvpn 85673 mac 85673 bytes_out 0 85673 bytes_in 0 85673 station_ip 37.129.245.80 85673 port 19 85673 unique_id port 85673 remote_ip 10.8.0.6 85676 username aminvpn 85676 mac 85676 bytes_out 0 85676 bytes_in 0 85676 station_ip 37.129.160.89 85676 port 20 85676 unique_id port 85676 remote_ip 10.8.0.6 85689 username aminvpn 85689 mac 85689 bytes_out 0 85689 bytes_in 0 85689 station_ip 37.129.160.89 85689 port 20 85689 unique_id port 85689 remote_ip 10.8.0.6 85693 username aminvpn 85693 mac 85693 bytes_out 0 85693 bytes_in 0 85693 station_ip 37.129.245.80 85693 port 19 85693 unique_id port 85693 remote_ip 10.8.0.6 85694 username aminvpn 85694 mac 85694 bytes_out 0 85694 bytes_in 0 85694 station_ip 37.129.160.89 85694 port 20 85694 unique_id port 85694 remote_ip 10.8.0.6 85700 username aminvpn 85700 mac 85700 bytes_out 0 85700 bytes_in 0 85700 station_ip 37.129.160.89 85631 bytes_in 504373 85631 station_ip 5.202.19.26 85631 port 15728678 85631 nas_port_type Virtual 85631 remote_ip 5.5.5.248 85634 username aminvpn 85634 mac 85634 bytes_out 1264079 85634 bytes_in 4801144 85634 station_ip 37.129.42.202 85634 port 19 85634 unique_id port 85634 remote_ip 10.8.0.6 85644 username asadi 85644 unique_id port 85644 terminate_cause User-Request 85644 bytes_out 2767 85644 bytes_in 13617 85644 station_ip 113.203.81.18 85644 port 15728690 85644 nas_port_type Virtual 85644 remote_ip 5.5.5.243 85646 username ksrkrgr 85646 unique_id port 85646 terminate_cause User-Request 85646 bytes_out 439783 85646 bytes_in 1432952 85646 station_ip 151.235.65.143 85646 port 15728689 85646 nas_port_type Virtual 85646 remote_ip 5.5.5.240 85654 username aminvpn 85654 mac 85654 bytes_out 0 85654 bytes_in 0 85654 station_ip 37.129.160.89 85654 port 20 85654 unique_id port 85654 remote_ip 10.8.0.6 85658 username aminvpn 85658 mac 85658 bytes_out 0 85658 bytes_in 0 85658 station_ip 37.129.245.80 85658 port 19 85658 unique_id port 85658 remote_ip 10.8.0.6 85664 username aminvpn 85664 mac 85664 bytes_out 0 85664 bytes_in 0 85664 station_ip 37.129.245.80 85664 port 19 85664 unique_id port 85664 remote_ip 10.8.0.6 85671 username aminvpn 85671 mac 85671 bytes_out 0 85671 bytes_in 0 85671 station_ip 37.129.245.80 85671 port 19 85671 unique_id port 85671 remote_ip 10.8.0.6 85672 username aminvpn 85672 mac 85672 bytes_out 0 85672 bytes_in 0 85672 station_ip 37.129.160.89 85672 port 20 85672 unique_id port 85672 remote_ip 10.8.0.6 85677 username aminvpn 85677 mac 85677 bytes_out 0 85677 bytes_in 0 85677 station_ip 37.129.245.80 85677 port 19 85677 unique_id port 85677 remote_ip 10.8.0.6 85679 username pouria 85679 unique_id port 85679 terminate_cause Lost-Carrier 85679 bytes_out 15333311 85679 bytes_in 526024112 85679 station_ip 151.235.120.145 85679 port 15728691 85679 nas_port_type Virtual 85679 remote_ip 5.5.5.222 85683 username aminvpn 85683 mac 85683 bytes_out 0 85683 bytes_in 0 85683 station_ip 37.129.160.89 85683 port 20 85683 unique_id port 85683 remote_ip 10.8.0.6 85688 username aminvpn 85688 mac 85688 bytes_out 0 85688 bytes_in 0 85688 station_ip 37.129.245.80 85688 port 19 85688 unique_id port 85688 remote_ip 10.8.0.6 85696 username aminvpn 85696 unique_id port 85696 terminate_cause User-Request 85696 bytes_out 56267 85696 bytes_in 190593 85696 station_ip 2.183.251.251 85696 port 15728706 85696 nas_port_type Virtual 85696 remote_ip 5.5.5.239 85698 username asadi 85698 unique_id port 85698 terminate_cause User-Request 85698 bytes_out 199901 85698 bytes_in 3638395 85698 station_ip 83.122.176.120 85698 port 15728707 85698 nas_port_type Virtual 85698 remote_ip 5.5.5.215 85699 username aminvpn 85699 mac 85699 bytes_out 0 85699 bytes_in 0 85699 station_ip 37.129.245.80 85699 port 19 85699 unique_id port 85699 remote_ip 10.8.0.6 85704 username aminvpn 85704 mac 85704 bytes_out 0 85704 bytes_in 0 85704 station_ip 37.129.245.80 85704 port 19 85704 unique_id port 85704 remote_ip 10.8.0.6 85709 username aminvpn 85709 mac 85709 bytes_out 0 85709 bytes_in 0 85709 station_ip 37.129.160.89 85709 port 20 85709 unique_id port 85709 remote_ip 10.8.0.6 85711 username aminvpn 85711 mac 85711 bytes_out 0 85711 bytes_in 0 85711 station_ip 37.129.245.80 85711 port 19 85711 unique_id port 85636 terminate_cause Lost-Carrier 85636 bytes_out 972930 85636 bytes_in 25276282 85636 station_ip 5.120.49.161 85636 port 15728680 85636 nas_port_type Virtual 85636 remote_ip 5.5.5.231 85640 username aminvpn 85640 mac 85640 bytes_out 0 85640 bytes_in 0 85640 station_ip 37.129.245.80 85640 port 35 85640 unique_id port 85640 remote_ip 10.8.1.10 85643 username shahnaz 85643 unique_id port 85643 terminate_cause User-Request 85643 bytes_out 1295704 85643 bytes_in 14244563 85643 station_ip 5.119.12.171 85643 port 15728687 85643 nas_port_type Virtual 85643 remote_ip 5.5.5.224 85649 username aminvpn 85649 unique_id port 85649 terminate_cause Lost-Carrier 85649 bytes_out 1310014 85649 bytes_in 16326079 85649 station_ip 5.120.132.131 85649 port 15728695 85649 nas_port_type Virtual 85649 remote_ip 5.5.5.221 85651 username shojaei 85651 unique_id port 85651 terminate_cause User-Request 85651 bytes_out 42845 85651 bytes_in 687521 85651 station_ip 83.123.42.249 85651 port 15728699 85651 nas_port_type Virtual 85651 remote_ip 5.5.5.219 85653 username aminvpn 85653 mac 85653 bytes_out 0 85653 bytes_in 0 85653 station_ip 37.129.245.80 85653 port 19 85653 unique_id port 85653 remote_ip 10.8.0.6 85655 username aminvpn 85655 mac 85655 bytes_out 0 85655 bytes_in 0 85655 station_ip 37.129.245.80 85655 port 19 85655 unique_id port 85655 remote_ip 10.8.0.6 85657 username aminvpn 85657 mac 85657 bytes_out 0 85657 bytes_in 0 85657 station_ip 37.129.160.89 85657 port 20 85657 unique_id port 85657 remote_ip 10.8.0.6 85660 username aminvpn 85660 mac 85660 bytes_out 0 85660 bytes_in 0 85660 station_ip 37.129.245.80 85660 port 19 85660 unique_id port 85660 remote_ip 10.8.0.6 85663 username aminvpn 85663 mac 85663 bytes_out 0 85663 bytes_in 0 85663 station_ip 37.129.160.89 85663 port 20 85663 unique_id port 85663 remote_ip 10.8.0.6 85666 username aminvpn 85666 mac 85666 bytes_out 0 85666 bytes_in 0 85666 station_ip 37.129.245.80 85666 port 19 85666 unique_id port 85666 remote_ip 10.8.0.6 85668 username ksrkrgr 85668 unique_id port 85668 terminate_cause User-Request 85668 bytes_out 393996 85668 bytes_in 844215 85668 station_ip 151.235.65.143 85668 port 15728696 85668 nas_port_type Virtual 85668 remote_ip 5.5.5.240 85674 username aminvpn 85674 mac 85674 bytes_out 0 85674 bytes_in 0 85674 station_ip 37.129.160.89 85674 port 20 85674 unique_id port 85674 remote_ip 10.8.0.6 85682 username aminvpn 85682 mac 85682 bytes_out 0 85682 bytes_in 0 85682 station_ip 37.129.245.80 85682 port 19 85682 unique_id port 85682 remote_ip 10.8.0.6 85685 username aminvpn 85685 mac 85685 bytes_out 0 85685 bytes_in 0 85685 station_ip 37.129.160.89 85685 port 20 85685 unique_id port 85685 remote_ip 10.8.0.6 85687 username aminvpn 85687 mac 85687 bytes_out 0 85687 bytes_in 0 85687 station_ip 37.129.160.89 85687 port 20 85687 unique_id port 85687 remote_ip 10.8.0.6 85691 username aminvpn 85691 mac 85691 bytes_out 0 85691 bytes_in 0 85691 station_ip 37.129.245.80 85691 port 19 85691 unique_id port 85691 remote_ip 10.8.0.6 85701 username aminvpn 85701 mac 85701 bytes_out 0 85701 bytes_in 0 85701 station_ip 37.129.245.80 85701 port 19 85701 unique_id port 85701 remote_ip 10.8.0.6 85703 username jamali 85703 unique_id port 85703 terminate_cause Lost-Carrier 85703 bytes_out 412540 85703 bytes_in 9017955 85639 nas_port_type Virtual 85639 remote_ip 5.5.5.228 85641 username ksrkrgr 85641 unique_id port 85641 terminate_cause User-Request 85641 bytes_out 9914670 85641 bytes_in 260948301 85641 station_ip 151.235.65.143 85641 port 15728658 85641 nas_port_type Virtual 85641 remote_ip 5.5.5.240 85647 username soleymani 85647 unique_id port 85647 terminate_cause Lost-Carrier 85647 bytes_out 79155 85647 bytes_in 437440 85647 station_ip 5.119.235.27 85647 port 15728688 85647 nas_port_type Virtual 85647 remote_ip 5.5.5.223 85652 username alinezhad 85652 unique_id port 85652 terminate_cause User-Request 85652 bytes_out 0 85652 bytes_in 0 85652 station_ip 5.202.19.26 85652 port 15728700 85652 nas_port_type Virtual 85652 remote_ip 5.5.5.248 85656 username shojaei 85656 unique_id port 85656 terminate_cause User-Request 85656 bytes_out 0 85656 bytes_in 0 85656 station_ip 83.123.42.249 85656 port 15728701 85656 nas_port_type Virtual 85656 remote_ip 5.5.5.219 85661 username aminvpn 85661 mac 85661 bytes_out 0 85661 bytes_in 0 85661 station_ip 37.129.160.89 85661 port 20 85661 unique_id port 85661 remote_ip 10.8.0.6 85662 username aminvpn 85662 mac 85662 bytes_out 0 85662 bytes_in 0 85662 station_ip 37.129.245.80 85662 port 19 85662 unique_id port 85662 remote_ip 10.8.0.6 85667 username aminvpn 85667 mac 85667 bytes_out 0 85667 bytes_in 0 85667 station_ip 37.129.160.89 85667 port 20 85667 unique_id port 85667 remote_ip 10.8.0.6 85669 username aminvpn 85669 mac 85669 bytes_out 0 85669 bytes_in 0 85669 station_ip 37.129.245.80 85669 port 19 85669 unique_id port 85669 remote_ip 10.8.0.6 85675 username aminvpn 85675 mac 85675 bytes_out 0 85675 bytes_in 0 85675 station_ip 37.129.245.80 85675 port 19 85675 unique_id port 85675 remote_ip 10.8.0.6 85678 username aminvpn 85678 mac 85678 bytes_out 0 85678 bytes_in 0 85678 station_ip 37.129.160.89 85678 port 20 85678 unique_id port 85678 remote_ip 10.8.0.6 85680 username aminvpn 85680 mac 85680 bytes_out 39106 85680 bytes_in 66454 85680 station_ip 37.129.245.80 85680 port 19 85680 unique_id port 85680 remote_ip 10.8.0.6 85681 username aminvpn 85681 mac 85681 bytes_out 0 85681 bytes_in 0 85681 station_ip 37.129.160.89 85681 port 20 85681 unique_id port 85681 remote_ip 10.8.0.6 85684 username aminvpn 85684 mac 85684 bytes_out 0 85684 bytes_in 0 85684 station_ip 37.129.245.80 85684 port 19 85684 unique_id port 85684 remote_ip 10.8.0.6 85686 username aminvpn 85686 mac 85686 bytes_out 0 85686 bytes_in 0 85686 station_ip 37.129.245.80 85686 port 19 85686 unique_id port 85686 remote_ip 10.8.0.6 85690 username zamanialireza 85690 unique_id port 85690 terminate_cause User-Request 85690 bytes_out 0 85690 bytes_in 0 85690 station_ip 5.160.115.108 85690 port 15728705 85690 nas_port_type Virtual 85690 remote_ip 5.5.5.216 85692 username aminvpn 85692 mac 85692 bytes_out 0 85692 bytes_in 0 85692 station_ip 37.129.160.89 85692 port 20 85692 unique_id port 85692 remote_ip 10.8.0.6 85695 username aminvpn 85695 mac 85695 bytes_out 0 85695 bytes_in 0 85695 station_ip 37.129.245.80 85695 port 19 85695 unique_id port 85695 remote_ip 10.8.0.6 85697 username aminvpn 85697 mac 85697 bytes_out 0 85697 bytes_in 0 85697 station_ip 37.129.160.89 85697 port 20 85697 unique_id port 85697 remote_ip 10.8.0.6 85702 username aminvpn 85702 mac 85702 bytes_out 0 85700 port 20 85700 unique_id port 85700 remote_ip 10.8.0.6 85705 username aminvpn 85705 mac 85705 bytes_out 0 85705 bytes_in 0 85705 station_ip 37.129.160.89 85705 port 20 85705 unique_id port 85705 remote_ip 10.8.0.6 85708 username aminvpn 85708 mac 85708 bytes_out 0 85708 bytes_in 0 85708 station_ip 37.129.245.80 85708 port 19 85708 unique_id port 85708 remote_ip 10.8.0.6 85710 username zamanialireza 85710 unique_id port 85710 terminate_cause User-Request 85710 bytes_out 131507 85710 bytes_in 343521 85710 station_ip 83.123.12.181 85710 port 15728708 85710 nas_port_type Virtual 85710 remote_ip 5.5.5.214 85717 username aminvpn 85717 mac 85717 bytes_out 0 85717 bytes_in 0 85717 station_ip 37.129.245.80 85717 port 19 85717 unique_id port 85717 remote_ip 10.8.0.6 85723 username aminvpn 85723 mac 85723 bytes_out 0 85723 bytes_in 0 85723 station_ip 37.129.245.80 85723 port 19 85723 unique_id port 85723 remote_ip 10.8.0.6 85730 username aminvpn 85730 mac 85730 bytes_out 0 85730 bytes_in 0 85730 station_ip 37.129.245.80 85730 port 19 85730 unique_id port 85730 remote_ip 10.8.0.6 85733 username aminvpn 85733 mac 85733 bytes_out 0 85733 bytes_in 0 85733 station_ip 37.129.160.89 85733 port 20 85733 unique_id port 85733 remote_ip 10.8.0.6 85734 username amirabbas 85734 unique_id port 85734 terminate_cause User-Request 85734 bytes_out 1273135 85734 bytes_in 21381371 85734 station_ip 151.238.237.28 85734 port 15728698 85734 nas_port_type Virtual 85734 remote_ip 5.5.5.234 85737 username aminvpn 85737 mac 85737 bytes_out 0 85737 bytes_in 0 85737 station_ip 37.129.245.80 85737 port 19 85737 unique_id port 85737 remote_ip 10.8.0.6 85742 username aminvpn 85742 mac 85742 bytes_out 0 85742 bytes_in 0 85742 station_ip 37.129.160.89 85742 port 20 85742 unique_id port 85742 remote_ip 10.8.0.6 85752 username madadi 85752 unique_id port 85752 terminate_cause Lost-Carrier 85752 bytes_out 32476 85752 bytes_in 149740 85752 station_ip 5.119.83.162 85752 port 15728719 85752 nas_port_type Virtual 85752 remote_ip 5.5.5.209 85773 username aminvpn 85773 mac 85773 bytes_out 0 85773 bytes_in 0 85773 station_ip 37.129.160.89 85773 port 36 85773 unique_id port 85773 remote_ip 10.8.1.10 85775 username aminvpn 85775 mac 85775 bytes_out 0 85775 bytes_in 0 85775 station_ip 37.129.160.89 85775 port 36 85775 unique_id port 85775 remote_ip 10.8.1.10 85782 username aminvpn 85782 mac 85782 bytes_out 0 85782 bytes_in 0 85782 station_ip 37.129.245.80 85782 port 35 85782 unique_id port 85782 remote_ip 10.8.1.10 85784 username aminvpn 85784 mac 85784 bytes_out 0 85784 bytes_in 0 85784 station_ip 37.129.245.80 85784 port 35 85784 unique_id port 85784 remote_ip 10.8.1.10 85791 username forozande 85791 unique_id port 85791 terminate_cause User-Request 85791 bytes_out 167737 85791 bytes_in 1439035 85791 station_ip 37.129.134.116 85791 port 15728744 85791 nas_port_type Virtual 85791 remote_ip 5.5.5.197 85793 username alinezhad 85793 unique_id port 85793 terminate_cause User-Request 85793 bytes_out 0 85793 bytes_in 0 85793 station_ip 5.202.19.26 85793 port 15728747 85793 nas_port_type Virtual 85793 remote_ip 5.5.5.248 85801 username aminvpn 85801 mac 85801 bytes_out 0 85801 bytes_in 0 85801 station_ip 37.129.245.80 85801 port 20 85801 unique_id port 85801 remote_ip 10.8.0.6 85802 username heydarizadeh 85702 bytes_in 0 85702 station_ip 37.129.160.89 85702 port 20 85702 unique_id port 85702 remote_ip 10.8.0.6 85707 username aminvpn 85707 mac 85707 bytes_out 0 85707 bytes_in 0 85707 station_ip 37.129.160.89 85707 port 20 85707 unique_id port 85707 remote_ip 10.8.0.6 85715 username zamanialireza 85715 unique_id port 85715 terminate_cause User-Request 85715 bytes_out 0 85715 bytes_in 0 85715 station_ip 83.123.12.181 85715 port 15728710 85715 nas_port_type Virtual 85715 remote_ip 5.5.5.214 85718 username zamanialireza 85718 unique_id port 85718 terminate_cause User-Request 85718 bytes_out 345148 85718 bytes_in 2002559 85718 station_ip 83.123.12.181 85718 port 15728711 85718 nas_port_type Virtual 85718 remote_ip 5.5.5.214 85719 username aminvpn 85719 mac 85719 bytes_out 0 85719 bytes_in 0 85719 station_ip 37.129.160.89 85719 port 20 85719 unique_id port 85719 remote_ip 10.8.0.6 85721 username zamanialireza 85721 unique_id port 85721 terminate_cause User-Request 85721 bytes_out 195450 85721 bytes_in 5081749 85721 station_ip 83.123.12.181 85721 port 15728713 85721 nas_port_type Virtual 85721 remote_ip 5.5.5.214 85727 username aminvpn 85727 mac 85727 bytes_out 0 85727 bytes_in 0 85727 station_ip 37.129.160.89 85727 port 20 85727 unique_id port 85727 remote_ip 10.8.0.6 85729 username aminvpn 85729 mac 85729 bytes_out 0 85729 bytes_in 0 85729 station_ip 37.129.160.89 85729 port 20 85729 unique_id port 85729 remote_ip 10.8.0.6 85732 username aminvpn 85732 mac 85732 bytes_out 0 85732 bytes_in 0 85732 station_ip 37.129.245.80 85732 port 19 85732 unique_id port 85732 remote_ip 10.8.0.6 85736 username aminvpn 85736 mac 85736 bytes_out 0 85736 bytes_in 0 85736 station_ip 37.129.160.89 85736 port 20 85736 unique_id port 85736 remote_ip 10.8.0.6 85739 username aminvpn 85739 mac 85739 bytes_out 0 85739 bytes_in 0 85739 station_ip 37.129.245.80 85739 port 19 85739 unique_id port 85739 remote_ip 10.8.0.6 85743 username shojaei 85743 unique_id port 85743 terminate_cause User-Request 85743 bytes_out 72271 85743 bytes_in 421977 85743 station_ip 37.129.173.127 85743 port 15728717 85743 nas_port_type Virtual 85743 remote_ip 5.5.5.210 85746 username aminvpn 85746 mac 85746 bytes_out 0 85746 bytes_in 0 85746 station_ip 37.129.245.80 85746 port 19 85746 unique_id port 85746 remote_ip 10.8.0.6 85753 username asadi 85753 unique_id port 85753 terminate_cause User-Request 85753 bytes_out 213099 85753 bytes_in 4052740 85753 station_ip 83.122.176.120 85753 port 15728722 85753 nas_port_type Virtual 85753 remote_ip 5.5.5.215 85756 username madadi 85756 unique_id port 85756 terminate_cause Lost-Carrier 85756 bytes_out 6020 85756 bytes_in 120249 85756 station_ip 5.120.100.174 85756 port 15728723 85756 nas_port_type Virtual 85756 remote_ip 5.5.5.208 85759 username shojaei 85759 unique_id port 85759 terminate_cause User-Request 85759 bytes_out 43875 85759 bytes_in 333218 85759 station_ip 37.129.173.127 85759 port 15728728 85759 nas_port_type Virtual 85759 remote_ip 5.5.5.210 85761 username shojaei 85761 unique_id port 85761 terminate_cause User-Request 85761 bytes_out 41052 85761 bytes_in 450038 85761 station_ip 37.129.173.127 85761 port 15728730 85761 nas_port_type Virtual 85761 remote_ip 5.5.5.210 85762 username aminvpn 85762 mac 85762 bytes_out 0 85762 bytes_in 0 85762 station_ip 37.129.245.80 85762 port 35 85762 unique_id port 85765 username shahnaz 85765 unique_id port 85703 station_ip 5.119.146.104 85703 port 15728702 85703 nas_port_type Virtual 85703 remote_ip 5.5.5.218 85706 username aminvpn 85706 mac 85706 bytes_out 0 85706 bytes_in 0 85706 station_ip 37.129.245.80 85706 port 19 85706 unique_id port 85706 remote_ip 10.8.0.6 85712 username shahrooz 85712 unique_id port 85712 terminate_cause Lost-Carrier 85712 bytes_out 715741 85712 bytes_in 7229391 85712 station_ip 83.122.120.99 85712 port 15728704 85712 nas_port_type Virtual 85712 remote_ip 5.5.5.217 85714 username aminvpn 85714 mac 85714 bytes_out 0 85714 bytes_in 0 85714 station_ip 37.129.245.80 85714 port 19 85714 unique_id port 85714 remote_ip 10.8.0.6 85725 username aminvpn 85725 unique_id port 85725 terminate_cause User-Request 85725 bytes_out 327352 85725 bytes_in 705816 85725 station_ip 2.183.251.251 85725 port 15728712 85725 nas_port_type Virtual 85725 remote_ip 5.5.5.239 85728 username aminvpn 85728 mac 85728 bytes_out 0 85728 bytes_in 0 85728 station_ip 37.129.245.80 85728 port 19 85728 unique_id port 85728 remote_ip 10.8.0.6 85731 username aminvpn 85731 mac 85731 bytes_out 0 85731 bytes_in 0 85731 station_ip 37.129.160.89 85731 port 20 85731 unique_id port 85731 remote_ip 10.8.0.6 85735 username aminvpn 85735 mac 85735 bytes_out 0 85735 bytes_in 0 85735 station_ip 37.129.245.80 85735 port 19 85735 unique_id port 85735 remote_ip 10.8.0.6 85740 username aminvpn 85740 mac 85740 bytes_out 0 85740 bytes_in 0 85740 station_ip 37.129.160.89 85740 port 20 85740 unique_id port 85740 remote_ip 10.8.0.6 85744 username aminvpn 85744 mac 85744 bytes_out 0 85744 bytes_in 0 85744 station_ip 37.129.245.80 85744 port 19 85744 unique_id port 85744 remote_ip 10.8.0.6 85750 username shahnaz 85750 unique_id port 85750 terminate_cause Lost-Carrier 85750 bytes_out 811472 85750 bytes_in 14479415 85750 station_ip 5.120.42.77 85750 port 15728715 85750 nas_port_type Virtual 85750 remote_ip 5.5.5.212 85754 username ksrkrgr 85754 unique_id port 85754 terminate_cause User-Request 85754 bytes_out 6495407 85754 bytes_in 12262596 85754 station_ip 151.235.65.143 85754 port 15728714 85754 nas_port_type Virtual 85754 remote_ip 5.5.5.240 85757 username aminvpn 85757 kill_reason Another user logged on this global unique id 85757 mac 85757 bytes_out 0 85757 bytes_in 0 85757 station_ip 37.129.245.80 85757 port 35 85757 unique_id port 85757 remote_ip 10.8.1.10 85758 username heydari 85758 unique_id port 85758 terminate_cause Lost-Carrier 85758 bytes_out 126906 85758 bytes_in 629428 85758 station_ip 5.120.82.132 85758 port 15728720 85758 nas_port_type Virtual 85758 remote_ip 5.5.5.229 85767 username aminvpn 85767 unique_id port 85767 terminate_cause User-Request 85767 bytes_out 18833155 85767 bytes_in 174282295 85767 station_ip 5.119.205.196 85767 port 15728735 85767 nas_port_type Virtual 85767 remote_ip 5.5.5.203 85769 username aminvpn 85769 mac 85769 bytes_out 0 85769 bytes_in 0 85769 station_ip 37.129.160.89 85769 port 36 85769 unique_id port 85769 remote_ip 10.8.1.10 85771 username aminvpn 85771 mac 85771 bytes_out 0 85771 bytes_in 0 85771 station_ip 37.129.160.89 85771 port 36 85771 unique_id port 85771 remote_ip 10.8.1.10 85778 username aminvpn 85778 mac 85778 bytes_out 0 85778 bytes_in 0 85778 station_ip 37.129.245.80 85778 port 35 85778 unique_id port 85778 remote_ip 10.8.1.10 85780 username aminvpn 85780 mac 85780 bytes_out 0 85780 bytes_in 0 85711 remote_ip 10.8.0.6 85713 username aminvpn 85713 mac 85713 bytes_out 0 85713 bytes_in 0 85713 station_ip 37.129.160.89 85713 port 20 85713 unique_id port 85713 remote_ip 10.8.0.6 85716 username aminvpn 85716 mac 85716 bytes_out 0 85716 bytes_in 0 85716 station_ip 37.129.160.89 85716 port 20 85716 unique_id port 85716 remote_ip 10.8.0.6 85720 username zamanialireza 85720 unique_id port 85720 terminate_cause User-Request 85720 bytes_out 206067 85720 bytes_in 1406821 85720 station_ip 5.200.115.145 85720 port 15728709 85720 nas_port_type Virtual 85720 remote_ip 5.5.5.213 85722 username madadi 85722 unique_id port 85722 terminate_cause Lost-Carrier 85722 bytes_out 33689 85722 bytes_in 194372 85722 station_ip 5.119.88.50 85722 port 15728703 85722 nas_port_type Virtual 85722 remote_ip 5.5.5.220 85724 username aminvpn 85724 mac 85724 bytes_out 0 85724 bytes_in 0 85724 station_ip 37.129.160.89 85724 port 20 85724 unique_id port 85724 remote_ip 10.8.0.6 85726 username aminvpn 85726 mac 85726 bytes_out 0 85726 bytes_in 0 85726 station_ip 37.129.245.80 85726 port 19 85726 unique_id port 85726 remote_ip 10.8.0.6 85738 username aminvpn 85738 mac 85738 bytes_out 0 85738 bytes_in 0 85738 station_ip 37.129.160.89 85738 port 20 85738 unique_id port 85738 remote_ip 10.8.0.6 85741 username aminvpn 85741 mac 85741 bytes_out 0 85741 bytes_in 0 85741 station_ip 37.129.245.80 85741 port 19 85741 unique_id port 85741 remote_ip 10.8.0.6 85745 username aminvpn 85745 mac 85745 bytes_out 0 85745 bytes_in 0 85745 station_ip 37.129.160.89 85745 port 20 85745 unique_id port 85745 remote_ip 10.8.0.6 85747 username aminvpn 85747 kill_reason Maximum check online fails reached 85747 mac 85747 bytes_out 0 85747 bytes_in 0 85747 station_ip 37.129.245.80 85747 port 19 85747 unique_id port 85748 username madadi 85748 unique_id port 85748 terminate_cause Lost-Carrier 85748 bytes_out 20073 85748 bytes_in 146084 85748 station_ip 5.120.171.226 85748 port 15728716 85748 nas_port_type Virtual 85748 remote_ip 5.5.5.211 85749 username aminvpn 85749 mac 85749 bytes_out 54886 85749 bytes_in 68754 85749 station_ip 37.129.245.80 85749 port 35 85749 unique_id port 85749 remote_ip 10.8.1.10 85751 username heydari 85751 unique_id port 85751 terminate_cause Lost-Carrier 85751 bytes_out 250581 85751 bytes_in 2235215 85751 station_ip 5.120.82.132 85751 port 15728682 85751 nas_port_type Virtual 85751 remote_ip 5.5.5.229 85755 username shokokian 85755 unique_id port 85755 terminate_cause User-Request 85755 bytes_out 78896 85755 bytes_in 397718 85755 station_ip 31.56.219.7 85755 port 15728724 85755 nas_port_type Virtual 85755 remote_ip 5.5.5.207 85760 username madadi 85760 unique_id port 85760 terminate_cause Lost-Carrier 85760 bytes_out 23033 85760 bytes_in 132501 85760 station_ip 5.120.18.36 85760 port 15728726 85760 nas_port_type Virtual 85760 remote_ip 5.5.5.206 85763 username aminvpn 85763 mac 85763 bytes_out 69640 85763 bytes_in 136467 85763 station_ip 37.129.245.80 85763 port 35 85763 unique_id port 85763 remote_ip 10.8.1.10 85764 username forozande 85764 unique_id port 85764 terminate_cause User-Request 85764 bytes_out 176129 85764 bytes_in 2560921 85764 station_ip 83.122.75.223 85764 port 15728737 85764 nas_port_type Virtual 85764 remote_ip 5.5.5.202 85772 username aminvpn 85772 mac 85772 bytes_out 0 85772 bytes_in 0 85772 station_ip 37.129.245.80 85772 port 35 85772 unique_id port 85765 terminate_cause User-Request 85765 bytes_out 1192957 85765 bytes_in 22713992 85765 station_ip 5.120.42.77 85765 port 15728721 85765 nas_port_type Virtual 85765 remote_ip 5.5.5.212 85766 username aminvpn 85766 mac 85766 bytes_out 0 85766 bytes_in 0 85766 station_ip 37.129.160.89 85766 port 20 85766 unique_id port 85766 remote_ip 10.8.0.6 85768 username aminvpn 85768 mac 85768 bytes_out 2527416 85768 bytes_in 11050608 85768 station_ip 37.129.245.80 85768 port 35 85768 unique_id port 85768 remote_ip 10.8.1.10 85770 username aminvpn 85770 mac 85770 bytes_out 0 85770 bytes_in 0 85770 station_ip 37.129.245.80 85770 port 35 85770 unique_id port 85770 remote_ip 10.8.1.10 85777 username aminvpn 85777 mac 85777 bytes_out 0 85777 bytes_in 0 85777 station_ip 37.129.160.89 85777 port 36 85777 unique_id port 85777 remote_ip 10.8.1.10 85779 username aminvpn 85779 mac 85779 bytes_out 0 85779 bytes_in 0 85779 station_ip 37.129.160.89 85779 port 36 85779 unique_id port 85779 remote_ip 10.8.1.10 85781 username aminvpn 85781 mac 85781 bytes_out 0 85781 bytes_in 0 85781 station_ip 37.129.160.89 85781 port 36 85781 unique_id port 85781 remote_ip 10.8.1.10 85785 username aminvpn 85785 mac 85785 bytes_out 0 85785 bytes_in 0 85785 station_ip 37.129.160.89 85785 port 36 85785 unique_id port 85785 remote_ip 10.8.1.10 85789 username ahmadi 85789 unique_id port 85789 terminate_cause User-Request 85789 bytes_out 0 85789 bytes_in 0 85789 station_ip 37.129.240.130 85789 port 15728743 85789 nas_port_type Virtual 85789 remote_ip 5.5.5.198 85792 username alinezhad 85792 unique_id port 85792 terminate_cause User-Request 85792 bytes_out 608541 85792 bytes_in 9379555 85792 station_ip 5.202.19.26 85792 port 15728718 85792 nas_port_type Virtual 85792 remote_ip 5.5.5.248 85795 username aminvpn 85795 mac 85795 bytes_out 0 85795 bytes_in 0 85795 station_ip 37.129.160.89 85795 port 21 85795 unique_id port 85795 remote_ip 10.8.0.6 85796 username aminvpn 85796 mac 85796 bytes_out 0 85796 bytes_in 0 85796 station_ip 37.129.245.80 85796 port 20 85796 unique_id port 85796 remote_ip 10.8.0.6 85800 username aminvpn 85800 mac 85800 bytes_out 0 85800 bytes_in 0 85800 station_ip 37.129.160.89 85800 port 21 85800 unique_id port 85800 remote_ip 10.8.0.6 85804 username aminvpn 85804 mac 85804 bytes_out 0 85804 bytes_in 0 85804 station_ip 37.129.245.80 85804 port 20 85804 unique_id port 85804 remote_ip 10.8.0.6 85806 username aminvpn 85806 mac 85806 bytes_out 0 85806 bytes_in 0 85806 station_ip 37.129.245.80 85806 port 20 85806 unique_id port 85806 remote_ip 10.8.0.6 85811 username aminvpn 85811 mac 85811 bytes_out 0 85811 bytes_in 0 85811 station_ip 37.129.245.80 85811 port 20 85811 unique_id port 85811 remote_ip 10.8.0.6 85813 username aminvpn 85813 mac 85813 bytes_out 0 85813 bytes_in 0 85813 station_ip 37.129.160.89 85813 port 21 85813 unique_id port 85813 remote_ip 10.8.0.6 85816 username aminvpn 85816 mac 85816 bytes_out 0 85816 bytes_in 0 85816 station_ip 37.129.245.80 85816 port 20 85816 unique_id port 85816 remote_ip 10.8.0.6 85822 username aminvpn 85822 mac 85822 bytes_out 0 85822 bytes_in 0 85822 station_ip 37.129.160.89 85822 port 21 85822 unique_id port 85822 remote_ip 10.8.0.6 85824 username soleymani 85824 unique_id port 85772 remote_ip 10.8.1.10 85774 username aminvpn 85774 mac 85774 bytes_out 0 85774 bytes_in 0 85774 station_ip 37.129.245.80 85774 port 35 85774 unique_id port 85774 remote_ip 10.8.1.10 85776 username aminvpn 85776 mac 85776 bytes_out 0 85776 bytes_in 0 85776 station_ip 37.129.245.80 85776 port 35 85776 unique_id port 85776 remote_ip 10.8.1.10 85783 username aminvpn 85783 mac 85783 bytes_out 0 85783 bytes_in 0 85783 station_ip 37.129.160.89 85783 port 36 85783 unique_id port 85783 remote_ip 10.8.1.10 85786 username ksrkrgr 85786 unique_id port 85786 terminate_cause User-Request 85786 bytes_out 819605 85786 bytes_in 7534616 85786 station_ip 151.235.65.143 85786 port 15728739 85786 nas_port_type Virtual 85786 remote_ip 5.5.5.240 85788 username heydari 85788 unique_id port 85788 terminate_cause Lost-Carrier 85788 bytes_out 2504474 85788 bytes_in 1563537 85788 station_ip 5.120.82.132 85788 port 15728727 85788 nas_port_type Virtual 85788 remote_ip 5.5.5.205 85798 username aminvpn 85798 mac 85798 bytes_out 0 85798 bytes_in 0 85798 station_ip 37.129.245.80 85798 port 20 85798 unique_id port 85798 remote_ip 10.8.0.6 85807 username aminvpn 85807 mac 85807 bytes_out 0 85807 bytes_in 0 85807 station_ip 37.129.245.80 85807 port 20 85807 unique_id port 85807 remote_ip 10.8.0.6 85808 username aminvpn 85808 mac 85808 bytes_out 0 85808 bytes_in 0 85808 station_ip 37.129.160.89 85808 port 21 85808 unique_id port 85808 remote_ip 10.8.0.6 85815 username aminvpn 85815 mac 85815 bytes_out 0 85815 bytes_in 0 85815 station_ip 37.129.160.89 85815 port 21 85815 unique_id port 85815 remote_ip 10.8.0.6 85818 username aminvpn 85818 mac 85818 bytes_out 0 85818 bytes_in 0 85818 station_ip 37.129.245.80 85818 port 20 85818 unique_id port 85818 remote_ip 10.8.0.6 85832 username aminvpn 85832 mac 85832 bytes_out 0 85832 bytes_in 0 85832 station_ip 37.129.160.89 85832 port 21 85832 unique_id port 85832 remote_ip 10.8.0.6 85833 username aminvpn 85833 mac 85833 bytes_out 0 85833 bytes_in 0 85833 station_ip 37.129.245.80 85833 port 20 85833 unique_id port 85833 remote_ip 10.8.0.6 85838 username aminvpn 85838 mac 85838 bytes_out 0 85838 bytes_in 0 85838 station_ip 37.129.245.80 85838 port 20 85838 unique_id port 85838 remote_ip 10.8.0.6 85843 username aminvpn 85843 mac 85843 bytes_out 0 85843 bytes_in 0 85843 station_ip 37.129.245.80 85843 port 20 85843 unique_id port 85843 remote_ip 10.8.0.6 85854 username aminvpn 85854 mac 85854 bytes_out 0 85854 bytes_in 0 85854 station_ip 37.129.245.80 85854 port 20 85854 unique_id port 85854 remote_ip 10.8.0.6 85857 username aminvpn 85857 mac 85857 bytes_out 0 85857 bytes_in 0 85857 station_ip 37.129.160.89 85857 port 21 85857 unique_id port 85857 remote_ip 10.8.0.6 85860 username aminvpn 85860 mac 85860 bytes_out 0 85860 bytes_in 0 85860 station_ip 37.129.245.80 85860 port 20 85860 unique_id port 85860 remote_ip 10.8.0.6 85866 username aminvpn 85866 mac 85866 bytes_out 0 85866 bytes_in 0 85866 station_ip 37.129.160.89 85866 port 21 85866 unique_id port 85866 remote_ip 10.8.0.6 85869 username aminvpn 85869 mac 85869 bytes_out 0 85869 bytes_in 0 85869 station_ip 37.129.245.80 85869 port 20 85869 unique_id port 85869 remote_ip 10.8.0.6 85874 username aminvpn 85780 station_ip 37.129.245.80 85780 port 35 85780 unique_id port 85780 remote_ip 10.8.1.10 85787 username jamali 85787 unique_id port 85787 terminate_cause Lost-Carrier 85787 bytes_out 2344204 85787 bytes_in 45636305 85787 station_ip 5.119.146.104 85787 port 15728725 85787 nas_port_type Virtual 85787 remote_ip 5.5.5.218 85790 username heydarizadeh 85790 unique_id port 85790 terminate_cause User-Request 85790 bytes_out 568 85790 bytes_in 22436 85790 station_ip 5.119.162.176 85790 port 15728742 85790 nas_port_type Virtual 85790 remote_ip 5.5.5.199 85794 username aminvpn 85794 mac 85794 bytes_out 2548016 85794 bytes_in 9424636 85794 station_ip 37.129.245.80 85794 port 20 85794 unique_id port 85794 remote_ip 10.8.0.6 85797 username aminvpn 85797 mac 85797 bytes_out 0 85797 bytes_in 0 85797 station_ip 37.129.160.89 85797 port 21 85797 unique_id port 85797 remote_ip 10.8.0.6 85799 username caferibar 85799 unique_id port 85799 terminate_cause Lost-Carrier 85799 bytes_out 4731836 85799 bytes_in 98063106 85799 station_ip 5.119.5.99 85799 port 15728729 85799 nas_port_type Virtual 85799 remote_ip 5.5.5.204 85803 username aminvpn 85803 mac 85803 bytes_out 0 85803 bytes_in 0 85803 station_ip 37.129.160.89 85803 port 21 85803 unique_id port 85803 remote_ip 10.8.0.6 85805 username aminvpn 85805 mac 85805 bytes_out 0 85805 bytes_in 0 85805 station_ip 37.129.160.89 85805 port 21 85805 unique_id port 85805 remote_ip 10.8.0.6 85810 username aminvpn 85810 mac 85810 bytes_out 0 85810 bytes_in 0 85810 station_ip 37.129.160.89 85810 port 21 85810 unique_id port 85810 remote_ip 10.8.0.6 85812 username sobhan 85812 unique_id port 85812 terminate_cause User-Request 85812 bytes_out 4867155 85812 bytes_in 124982010 85812 station_ip 5.119.213.14 85812 port 15728741 85812 nas_port_type Virtual 85812 remote_ip 5.5.5.200 85814 username aminvpn 85814 mac 85814 bytes_out 0 85814 bytes_in 0 85814 station_ip 37.129.245.80 85814 port 20 85814 unique_id port 85814 remote_ip 10.8.0.6 85817 username aminvpn 85817 mac 85817 bytes_out 0 85817 bytes_in 0 85817 station_ip 37.129.160.89 85817 port 21 85817 unique_id port 85817 remote_ip 10.8.0.6 85819 username aminvpn 85819 mac 85819 bytes_out 0 85819 bytes_in 0 85819 station_ip 37.129.160.89 85819 port 21 85819 unique_id port 85819 remote_ip 10.8.0.6 85821 username aminvpn 85821 mac 85821 bytes_out 0 85821 bytes_in 0 85821 station_ip 37.129.245.80 85821 port 20 85821 unique_id port 85821 remote_ip 10.8.0.6 85826 username aminvpn 85826 mac 85826 bytes_out 0 85826 bytes_in 0 85826 station_ip 37.129.245.80 85826 port 20 85826 unique_id port 85826 remote_ip 10.8.0.6 85829 username heydarizadeh 85829 kill_reason Maximum number of concurrent logins reached 85829 unique_id port 85829 bytes_out 0 85829 bytes_in 0 85829 station_ip 5.119.91.205 85829 port 15728754 85829 nas_port_type Virtual 85831 username heydarizadeh 85831 kill_reason Maximum number of concurrent logins reached 85831 unique_id port 85831 bytes_out 0 85831 bytes_in 0 85831 station_ip 5.119.91.205 85831 port 15728756 85831 nas_port_type Virtual 85834 username heydarizadeh 85834 unique_id port 85834 terminate_cause Lost-Carrier 85834 bytes_out 25852 85834 bytes_in 192718 85834 station_ip 5.119.138.251 85834 port 15728750 85834 nas_port_type Virtual 85834 remote_ip 5.5.5.194 85836 username aminvpn 85836 mac 85836 bytes_out 0 85836 bytes_in 0 85836 station_ip 37.129.245.80 85802 unique_id port 85802 terminate_cause Lost-Carrier 85802 bytes_out 697431 85802 bytes_in 21811386 85802 station_ip 5.119.162.176 85802 port 15728745 85802 nas_port_type Virtual 85802 remote_ip 5.5.5.199 85809 username aminvpn 85809 mac 85809 bytes_out 0 85809 bytes_in 0 85809 station_ip 37.129.245.80 85809 port 20 85809 unique_id port 85809 remote_ip 10.8.0.6 85820 username zamanialireza 85820 unique_id port 85820 terminate_cause User-Request 85820 bytes_out 173639 85820 bytes_in 1566694 85820 station_ip 83.123.57.125 85820 port 15728749 85820 nas_port_type Virtual 85820 remote_ip 5.5.5.195 85823 username aminvpn 85823 mac 85823 bytes_out 0 85823 bytes_in 0 85823 station_ip 37.129.245.80 85823 port 20 85823 unique_id port 85823 remote_ip 10.8.0.6 85825 username aminvpn 85825 mac 85825 bytes_out 56457 85825 bytes_in 103133 85825 station_ip 37.129.160.89 85825 port 21 85825 unique_id port 85825 remote_ip 10.8.0.6 85828 username heydarizadeh 85828 kill_reason Maximum number of concurrent logins reached 85828 unique_id port 85828 bytes_out 0 85828 bytes_in 0 85828 station_ip 5.119.91.205 85828 port 15728753 85828 nas_port_type Virtual 85851 username shahnaz 85851 unique_id port 85851 terminate_cause User-Request 85851 bytes_out 27136 85851 bytes_in 62792 85851 station_ip 5.119.164.127 85851 port 15728768 85851 nas_port_type Virtual 85851 remote_ip 5.5.5.189 85856 username aminvpn 85856 mac 85856 bytes_out 0 85856 bytes_in 0 85856 station_ip 37.129.245.80 85856 port 20 85856 unique_id port 85856 remote_ip 10.8.0.6 85859 username aminvpn 85859 mac 85859 bytes_out 0 85859 bytes_in 0 85859 station_ip 37.129.160.89 85859 port 21 85859 unique_id port 85859 remote_ip 10.8.0.6 85863 username aminvpn 85863 mac 85863 bytes_out 0 85863 bytes_in 0 85863 station_ip 37.129.160.89 85863 port 21 85863 unique_id port 85863 remote_ip 10.8.0.6 85865 username aminvpn 85865 mac 85865 bytes_out 0 85865 bytes_in 0 85865 station_ip 37.129.245.80 85865 port 20 85865 unique_id port 85865 remote_ip 10.8.0.6 85870 username aminvpn 85870 mac 85870 bytes_out 0 85870 bytes_in 0 85870 station_ip 37.129.160.89 85870 port 21 85870 unique_id port 85870 remote_ip 10.8.0.6 85873 username aminvpn 85873 mac 85873 bytes_out 0 85873 bytes_in 0 85873 station_ip 37.129.160.89 85873 port 21 85873 unique_id port 85873 remote_ip 10.8.0.6 85880 username aminvpn 85880 mac 85880 bytes_out 12911 85880 bytes_in 15385 85880 station_ip 37.129.245.80 85880 port 20 85880 unique_id port 85880 remote_ip 10.8.0.6 85882 username aminvpn 85882 mac 85882 bytes_out 0 85882 bytes_in 0 85882 station_ip 37.129.245.80 85882 port 20 85882 unique_id port 85882 remote_ip 10.8.0.6 85885 username aminvpn 85885 mac 85885 bytes_out 0 85885 bytes_in 0 85885 station_ip 37.129.160.89 85885 port 21 85885 unique_id port 85885 remote_ip 10.8.0.6 85889 username aminvpn 85889 mac 85889 bytes_out 0 85889 bytes_in 0 85889 station_ip 37.129.160.89 85889 port 21 85889 unique_id port 85889 remote_ip 10.8.0.6 85891 username amirabbas 85891 unique_id port 85891 terminate_cause User-Request 85891 bytes_out 1506153 85891 bytes_in 36352509 85891 station_ip 151.238.237.28 85891 port 15728771 85891 nas_port_type Virtual 85891 remote_ip 5.5.5.234 85895 username aminvpn 85895 mac 85895 bytes_out 0 85895 bytes_in 0 85895 station_ip 37.129.245.80 85895 port 20 85824 terminate_cause Lost-Carrier 85824 bytes_out 258757 85824 bytes_in 803402 85824 station_ip 5.119.30.23 85824 port 15728748 85824 nas_port_type Virtual 85824 remote_ip 5.5.5.196 85827 username heydarizadeh 85827 kill_reason Maximum number of concurrent logins reached 85827 unique_id port 85827 bytes_out 0 85827 bytes_in 0 85827 station_ip 5.119.91.205 85827 port 15728752 85827 nas_port_type Virtual 85830 username heydarizadeh 85830 kill_reason Maximum number of concurrent logins reached 85830 unique_id port 85830 bytes_out 0 85830 bytes_in 0 85830 station_ip 5.119.91.205 85830 port 15728755 85830 nas_port_type Virtual 85835 username aminvpn 85835 mac 85835 bytes_out 0 85835 bytes_in 0 85835 station_ip 37.129.160.89 85835 port 21 85835 unique_id port 85835 remote_ip 10.8.0.6 85840 username aminvpn 85840 mac 85840 bytes_out 0 85840 bytes_in 0 85840 station_ip 37.129.160.89 85840 port 21 85840 unique_id port 85840 remote_ip 10.8.0.6 85841 username aminvpn 85841 mac 85841 bytes_out 0 85841 bytes_in 0 85841 station_ip 37.129.245.80 85841 port 20 85841 unique_id port 85841 remote_ip 10.8.0.6 85844 username zamanialireza 85844 unique_id port 85844 terminate_cause User-Request 85844 bytes_out 0 85844 bytes_in 0 85844 station_ip 37.129.34.225 85844 port 15728758 85844 nas_port_type Virtual 85844 remote_ip 5.5.5.191 85846 username mahdixz 85846 unique_id port 85846 terminate_cause User-Request 85846 bytes_out 748596 85846 bytes_in 4865581 85846 station_ip 151.235.82.71 85846 port 15728757 85846 nas_port_type Virtual 85846 remote_ip 5.5.5.192 85847 username shahnaz 85847 unique_id port 85847 terminate_cause User-Request 85847 bytes_out 1184303 85847 bytes_in 13254236 85847 station_ip 5.120.42.77 85847 port 15728746 85847 nas_port_type Virtual 85847 remote_ip 5.5.5.212 85848 username alinezhad 85848 unique_id port 85848 terminate_cause User-Request 85848 bytes_out 0 85848 bytes_in 0 85848 station_ip 5.202.19.26 85848 port 15728767 85848 nas_port_type Virtual 85848 remote_ip 5.5.5.248 85850 username ksrkrgr 85850 unique_id port 85850 terminate_cause User-Request 85850 bytes_out 21936981 85850 bytes_in 33254944 85850 station_ip 151.235.65.143 85850 port 15728740 85850 nas_port_type Virtual 85850 remote_ip 5.5.5.240 85853 username aminvpn 85853 mac 85853 bytes_out 0 85853 bytes_in 0 85853 station_ip 37.129.160.89 85853 port 21 85853 unique_id port 85853 remote_ip 10.8.0.6 85855 username aminvpn 85855 mac 85855 bytes_out 0 85855 bytes_in 0 85855 station_ip 37.129.160.89 85855 port 21 85855 unique_id port 85855 remote_ip 10.8.0.6 85858 username aminvpn 85858 mac 85858 bytes_out 0 85858 bytes_in 0 85858 station_ip 37.129.245.80 85858 port 20 85858 unique_id port 85858 remote_ip 10.8.0.6 85862 username aminvpn 85862 mac 85862 bytes_out 0 85862 bytes_in 0 85862 station_ip 37.129.245.80 85862 port 20 85862 unique_id port 85862 remote_ip 10.8.0.6 85864 username shahnaz 85864 unique_id port 85864 terminate_cause User-Request 85864 bytes_out 1221927 85864 bytes_in 19886842 85864 station_ip 5.119.164.127 85864 port 15728769 85864 nas_port_type Virtual 85864 remote_ip 5.5.5.189 85867 username aminvpn 85867 mac 85867 bytes_out 0 85867 bytes_in 0 85867 station_ip 37.129.245.80 85867 port 20 85867 unique_id port 85867 remote_ip 10.8.0.6 85872 username aminvpn 85872 mac 85872 bytes_out 0 85872 bytes_in 0 85872 station_ip 37.129.245.80 85872 port 20 85872 unique_id port 85872 remote_ip 10.8.0.6 85836 port 20 85836 unique_id port 85836 remote_ip 10.8.0.6 85837 username aminvpn 85837 mac 85837 bytes_out 15086 85837 bytes_in 16648 85837 station_ip 37.129.160.89 85837 port 21 85837 unique_id port 85837 remote_ip 10.8.0.6 85839 username heydarizadeh 85839 unique_id port 85839 terminate_cause Lost-Carrier 85839 bytes_out 17547 85839 bytes_in 300425 85839 station_ip 5.119.167.16 85839 port 15728751 85839 nas_port_type Virtual 85839 remote_ip 5.5.5.193 85842 username aminvpn 85842 mac 85842 bytes_out 0 85842 bytes_in 0 85842 station_ip 37.129.160.89 85842 port 21 85842 unique_id port 85842 remote_ip 10.8.0.6 85845 username madadi 85845 unique_id port 85845 terminate_cause Lost-Carrier 85845 bytes_out 1719467 85845 bytes_in 12489897 85845 station_ip 5.120.64.138 85845 port 15728738 85845 nas_port_type Virtual 85845 remote_ip 5.5.5.201 85849 username ahmadipour 85849 unique_id port 85849 terminate_cause Lost-Carrier 85849 bytes_out 1534038 85849 bytes_in 31114521 85849 station_ip 37.129.60.101 85849 port 15728766 85849 nas_port_type Virtual 85849 remote_ip 5.5.5.190 85852 username aminvpn 85852 mac 85852 bytes_out 1115323 85852 bytes_in 7390219 85852 station_ip 37.129.245.80 85852 port 35 85852 unique_id port 85852 remote_ip 10.8.1.10 85861 username aminvpn 85861 mac 85861 bytes_out 0 85861 bytes_in 0 85861 station_ip 37.129.160.89 85861 port 21 85861 unique_id port 85861 remote_ip 10.8.0.6 85868 username aminvpn 85868 mac 85868 bytes_out 0 85868 bytes_in 0 85868 station_ip 37.129.160.89 85868 port 21 85868 unique_id port 85868 remote_ip 10.8.0.6 85871 username khalili 85871 unique_id port 85871 terminate_cause Lost-Carrier 85871 bytes_out 909029 85871 bytes_in 8308228 85871 station_ip 5.119.183.41 85871 port 15728646 85871 nas_port_type Virtual 85871 remote_ip 5.5.5.249 85876 username aminvpn 85876 mac 85876 bytes_out 0 85876 bytes_in 0 85876 station_ip 37.129.245.80 85876 port 20 85876 unique_id port 85876 remote_ip 10.8.0.6 85879 username aminvpn 85879 mac 85879 bytes_out 0 85879 bytes_in 0 85879 station_ip 37.129.160.89 85879 port 21 85879 unique_id port 85879 remote_ip 10.8.0.6 85883 username aminvpn 85883 mac 85883 bytes_out 0 85883 bytes_in 0 85883 station_ip 37.129.160.89 85883 port 21 85883 unique_id port 85883 remote_ip 10.8.0.6 85890 username aminvpn 85890 mac 85890 bytes_out 0 85890 bytes_in 0 85890 station_ip 37.129.245.80 85890 port 20 85890 unique_id port 85890 remote_ip 10.8.0.6 85898 username aminvpn 85898 mac 85898 bytes_out 0 85898 bytes_in 0 85898 station_ip 37.129.160.89 85898 port 21 85898 unique_id port 85898 remote_ip 10.8.0.6 85899 username aminvpn 85899 mac 85899 bytes_out 19038 85899 bytes_in 22598 85899 station_ip 37.129.245.80 85899 port 20 85899 unique_id port 85899 remote_ip 10.8.0.6 85902 username aminvpn 85902 mac 85902 bytes_out 0 85902 bytes_in 0 85902 station_ip 37.129.160.89 85902 port 21 85902 unique_id port 85902 remote_ip 10.8.0.6 85910 username aminvpn 85910 mac 85910 bytes_out 0 85910 bytes_in 0 85910 station_ip 37.129.245.80 85910 port 20 85910 unique_id port 85910 remote_ip 10.8.0.6 85912 username zamanialireza 85912 unique_id port 85912 terminate_cause User-Request 85912 bytes_out 0 85912 bytes_in 0 85912 station_ip 83.122.157.207 85912 port 15728774 85912 nas_port_type Virtual 85912 remote_ip 5.5.5.187 85920 username aminvpn 85874 mac 85874 bytes_out 0 85874 bytes_in 0 85874 station_ip 37.129.245.80 85874 port 20 85874 unique_id port 85874 remote_ip 10.8.0.6 85877 username aminvpn 85877 mac 85877 bytes_out 0 85877 bytes_in 0 85877 station_ip 37.129.160.89 85877 port 21 85877 unique_id port 85877 remote_ip 10.8.0.6 85881 username aminvpn 85881 mac 85881 bytes_out 0 85881 bytes_in 0 85881 station_ip 37.129.160.89 85881 port 21 85881 unique_id port 85881 remote_ip 10.8.0.6 85886 username aminvpn 85886 mac 85886 bytes_out 0 85886 bytes_in 0 85886 station_ip 37.129.245.80 85886 port 20 85886 unique_id port 85886 remote_ip 10.8.0.6 85887 username aminvpn 85887 mac 85887 bytes_out 0 85887 bytes_in 0 85887 station_ip 37.129.160.89 85887 port 21 85887 unique_id port 85887 remote_ip 10.8.0.6 85888 username aminvpn 85888 mac 85888 bytes_out 16071 85888 bytes_in 14993 85888 station_ip 37.129.245.80 85888 port 20 85888 unique_id port 85888 remote_ip 10.8.0.6 85892 username aminvpn 85892 mac 85892 bytes_out 0 85892 bytes_in 0 85892 station_ip 37.129.160.89 85892 port 21 85892 unique_id port 85892 remote_ip 10.8.0.6 85896 username aminvpn 85896 mac 85896 bytes_out 0 85896 bytes_in 0 85896 station_ip 37.129.160.89 85896 port 21 85896 unique_id port 85896 remote_ip 10.8.0.6 85900 username aminvpn 85900 mac 85900 bytes_out 0 85900 bytes_in 0 85900 station_ip 37.129.160.89 85900 port 21 85900 unique_id port 85900 remote_ip 10.8.0.6 85903 username aminvpn 85903 mac 85903 bytes_out 12369 85903 bytes_in 10141 85903 station_ip 37.129.245.80 85903 port 20 85903 unique_id port 85903 remote_ip 10.8.0.6 85905 username aminvpn 85905 mac 85905 bytes_out 0 85905 bytes_in 0 85905 station_ip 37.129.245.80 85905 port 20 85905 unique_id port 85905 remote_ip 10.8.0.6 85907 username alinezhad 85907 unique_id port 85907 terminate_cause User-Request 85907 bytes_out 30655 85907 bytes_in 129029 85907 station_ip 5.202.19.26 85907 port 15728773 85907 nas_port_type Virtual 85907 remote_ip 5.5.5.248 85908 username aminvpn 85908 mac 85908 bytes_out 0 85908 bytes_in 0 85908 station_ip 37.129.245.80 85908 port 20 85908 unique_id port 85908 remote_ip 10.8.0.6 85911 username aminvpn 85911 mac 85911 bytes_out 0 85911 bytes_in 0 85911 station_ip 37.129.160.89 85911 port 21 85911 unique_id port 85911 remote_ip 10.8.0.6 85914 username aminvpn 85914 mac 85914 bytes_out 14882 85914 bytes_in 15905 85914 station_ip 37.129.160.89 85914 port 21 85914 unique_id port 85914 remote_ip 10.8.0.6 85915 username aminvpn 85915 mac 85915 bytes_out 0 85915 bytes_in 0 85915 station_ip 37.129.245.80 85915 port 20 85915 unique_id port 85915 remote_ip 10.8.0.6 85916 username aminvpn 85916 mac 85916 bytes_out 0 85916 bytes_in 0 85916 station_ip 37.129.160.89 85916 port 21 85916 unique_id port 85916 remote_ip 10.8.0.6 85926 username ahmadi 85926 unique_id port 85926 terminate_cause User-Request 85926 bytes_out 32739 85926 bytes_in 252364 85926 station_ip 37.129.204.182 85926 port 15728779 85926 nas_port_type Virtual 85926 remote_ip 5.5.5.184 85930 username aminvpn 85930 mac 85930 bytes_out 0 85930 bytes_in 0 85930 station_ip 37.129.245.80 85930 port 20 85930 unique_id port 85930 remote_ip 10.8.0.6 85937 username aminvpn 85937 mac 85937 bytes_out 0 85875 username aminvpn 85875 mac 85875 bytes_out 0 85875 bytes_in 0 85875 station_ip 37.129.160.89 85875 port 21 85875 unique_id port 85875 remote_ip 10.8.0.6 85878 username aminvpn 85878 mac 85878 bytes_out 0 85878 bytes_in 0 85878 station_ip 37.129.245.80 85878 port 20 85878 unique_id port 85878 remote_ip 10.8.0.6 85884 username aminvpn 85884 mac 85884 bytes_out 0 85884 bytes_in 0 85884 station_ip 37.129.245.80 85884 port 20 85884 unique_id port 85884 remote_ip 10.8.0.6 85893 username aminvpn 85893 mac 85893 bytes_out 0 85893 bytes_in 0 85893 station_ip 37.129.245.80 85893 port 20 85893 unique_id port 85893 remote_ip 10.8.0.6 85894 username aminvpn 85894 mac 85894 bytes_out 0 85894 bytes_in 0 85894 station_ip 37.129.160.89 85894 port 21 85894 unique_id port 85894 remote_ip 10.8.0.6 85897 username aminvpn 85897 mac 85897 bytes_out 0 85897 bytes_in 0 85897 station_ip 37.129.245.80 85897 port 20 85897 unique_id port 85897 remote_ip 10.8.0.6 85906 username aminvpn 85906 mac 85906 bytes_out 0 85906 bytes_in 0 85906 station_ip 37.129.160.89 85906 port 21 85906 unique_id port 85906 remote_ip 10.8.0.6 85913 username aminvpn 85913 mac 85913 bytes_out 0 85913 bytes_in 0 85913 station_ip 37.129.245.80 85913 port 20 85913 unique_id port 85913 remote_ip 10.8.0.6 85918 username aminvpn 85918 mac 85918 bytes_out 0 85918 bytes_in 0 85918 station_ip 37.129.160.89 85918 port 21 85918 unique_id port 85918 remote_ip 10.8.0.6 85919 username aminvpn 85919 mac 85919 bytes_out 0 85919 bytes_in 0 85919 station_ip 37.129.245.80 85919 port 20 85919 unique_id port 85919 remote_ip 10.8.0.6 85921 username aminvpn 85921 mac 85921 bytes_out 0 85921 bytes_in 0 85921 station_ip 37.129.245.80 85921 port 20 85921 unique_id port 85921 remote_ip 10.8.0.6 85924 username aminvpn 85924 mac 85924 bytes_out 0 85924 bytes_in 0 85924 station_ip 37.129.160.89 85924 port 21 85924 unique_id port 85924 remote_ip 10.8.0.6 85928 username aminvpn 85928 mac 85928 bytes_out 25859 85928 bytes_in 24910 85928 station_ip 37.129.245.80 85928 port 20 85928 unique_id port 85928 remote_ip 10.8.0.6 85932 username aminvpn 85932 mac 85932 bytes_out 0 85932 bytes_in 0 85932 station_ip 37.129.160.89 85932 port 21 85932 unique_id port 85932 remote_ip 10.8.0.6 85933 username aminvpn 85933 mac 85933 bytes_out 0 85933 bytes_in 0 85933 station_ip 37.129.245.80 85933 port 20 85933 unique_id port 85933 remote_ip 10.8.0.6 85935 username heydari 85935 unique_id port 85935 terminate_cause Lost-Carrier 85935 bytes_out 21437 85935 bytes_in 174661 85935 station_ip 5.120.82.132 85935 port 15728778 85935 nas_port_type Virtual 85935 remote_ip 5.5.5.205 85938 username aminvpn 85938 mac 85938 bytes_out 0 85938 bytes_in 0 85938 station_ip 37.129.245.80 85938 port 20 85938 unique_id port 85938 remote_ip 10.8.0.6 85944 username aminvpn 85944 mac 85944 bytes_out 0 85944 bytes_in 0 85944 station_ip 37.129.245.80 85944 port 20 85944 unique_id port 85944 remote_ip 10.8.0.6 85957 username aminvpn 85957 unique_id port 85957 terminate_cause Lost-Carrier 85957 bytes_out 47686845 85957 bytes_in 675930000 85957 station_ip 5.120.88.188 85957 port 15728770 85957 nas_port_type Virtual 85957 remote_ip 5.5.5.188 85965 username aminvpn 85965 mac 85895 unique_id port 85895 remote_ip 10.8.0.6 85901 username aminvpn 85901 mac 85901 bytes_out 0 85901 bytes_in 0 85901 station_ip 37.129.245.80 85901 port 20 85901 unique_id port 85901 remote_ip 10.8.0.6 85904 username aminvpn 85904 mac 85904 bytes_out 0 85904 bytes_in 0 85904 station_ip 37.129.160.89 85904 port 21 85904 unique_id port 85904 remote_ip 10.8.0.6 85909 username aminvpn 85909 mac 85909 bytes_out 0 85909 bytes_in 0 85909 station_ip 37.129.160.89 85909 port 21 85909 unique_id port 85909 remote_ip 10.8.0.6 85917 username aminvpn 85917 mac 85917 bytes_out 0 85917 bytes_in 0 85917 station_ip 37.129.245.80 85917 port 20 85917 unique_id port 85917 remote_ip 10.8.0.6 85922 username aminvpn 85922 mac 85922 bytes_out 0 85922 bytes_in 0 85922 station_ip 37.129.160.89 85922 port 21 85922 unique_id port 85922 remote_ip 10.8.0.6 85927 username aminvpn 85927 mac 85927 bytes_out 0 85927 bytes_in 0 85927 station_ip 37.129.160.89 85927 port 21 85927 unique_id port 85927 remote_ip 10.8.0.6 85934 username aminvpn 85934 mac 85934 bytes_out 0 85934 bytes_in 0 85934 station_ip 37.129.160.89 85934 port 21 85934 unique_id port 85934 remote_ip 10.8.0.6 85939 username aminvpn 85939 mac 85939 bytes_out 0 85939 bytes_in 0 85939 station_ip 37.129.160.89 85939 port 21 85939 unique_id port 85939 remote_ip 10.8.0.6 85942 username aminvpn 85942 mac 85942 bytes_out 0 85942 bytes_in 0 85942 station_ip 37.129.245.80 85942 port 20 85942 unique_id port 85942 remote_ip 10.8.0.6 85948 username aminvpn 85948 mac 85948 bytes_out 0 85948 bytes_in 0 85948 station_ip 37.129.160.89 85948 port 21 85948 unique_id port 85948 remote_ip 10.8.0.6 85951 username aminvpn 85951 mac 85951 bytes_out 0 85951 bytes_in 0 85951 station_ip 37.129.245.80 85951 port 20 85951 unique_id port 85951 remote_ip 10.8.0.6 85954 username aminvpn 85954 mac 85954 bytes_out 0 85954 bytes_in 0 85954 station_ip 37.129.160.89 85954 port 21 85954 unique_id port 85954 remote_ip 10.8.0.6 85959 username madadi 85959 unique_id port 85959 terminate_cause Lost-Carrier 85959 bytes_out 44152 85959 bytes_in 146239 85959 station_ip 5.119.113.184 85959 port 15728780 85959 nas_port_type Virtual 85959 remote_ip 5.5.5.183 85961 username shahnaz 85961 unique_id port 85961 terminate_cause User-Request 85961 bytes_out 1272794 85961 bytes_in 21555291 85961 station_ip 5.119.109.176 85961 port 15728782 85961 nas_port_type Virtual 85961 remote_ip 5.5.5.181 85962 username aminvpn 85962 mac 85962 bytes_out 21829 85962 bytes_in 28053 85962 station_ip 37.129.245.80 85962 port 20 85962 unique_id port 85962 remote_ip 10.8.0.6 85966 username aminvpn 85966 mac 85966 bytes_out 0 85966 bytes_in 0 85966 station_ip 37.129.245.80 85966 port 20 85966 unique_id port 85966 remote_ip 10.8.0.6 85973 username aminvpn 85973 mac 85973 bytes_out 0 85973 bytes_in 0 85973 station_ip 37.129.245.80 85973 port 20 85973 unique_id port 85973 remote_ip 10.8.0.6 85974 username aminvpn 85974 mac 85974 bytes_out 0 85974 bytes_in 0 85974 station_ip 37.129.160.89 85974 port 21 85974 unique_id port 85974 remote_ip 10.8.0.6 85977 username aminvpn 85977 mac 85977 bytes_out 0 85977 bytes_in 0 85977 station_ip 37.129.245.80 85977 port 20 85977 unique_id port 85977 remote_ip 10.8.0.6 85920 mac 85920 bytes_out 0 85920 bytes_in 0 85920 station_ip 37.129.160.89 85920 port 21 85920 unique_id port 85920 remote_ip 10.8.0.6 85923 username aminvpn 85923 mac 85923 bytes_out 0 85923 bytes_in 0 85923 station_ip 37.129.245.80 85923 port 20 85923 unique_id port 85923 remote_ip 10.8.0.6 85925 username aminvpn 85925 mac 85925 bytes_out 0 85925 bytes_in 0 85925 station_ip 37.129.245.80 85925 port 20 85925 unique_id port 85925 remote_ip 10.8.0.6 85929 username aminvpn 85929 mac 85929 bytes_out 0 85929 bytes_in 0 85929 station_ip 37.129.160.89 85929 port 21 85929 unique_id port 85929 remote_ip 10.8.0.6 85931 username madadi 85931 unique_id port 85931 terminate_cause Lost-Carrier 85931 bytes_out 64588 85931 bytes_in 201274 85931 station_ip 5.119.255.209 85931 port 15728777 85931 nas_port_type Virtual 85931 remote_ip 5.5.5.185 85936 username aminvpn 85936 mac 85936 bytes_out 0 85936 bytes_in 0 85936 station_ip 37.129.245.80 85936 port 20 85936 unique_id port 85936 remote_ip 10.8.0.6 85946 username aminvpn 85946 unique_id port 85946 terminate_cause User-Request 85946 bytes_out 5064493 85946 bytes_in 66577008 85946 station_ip 37.129.245.80 85946 port 15728775 85946 nas_port_type Virtual 85946 remote_ip 5.5.5.225 85952 username aminvpn 85952 mac 85952 bytes_out 0 85952 bytes_in 0 85952 station_ip 37.129.160.89 85952 port 21 85952 unique_id port 85952 remote_ip 10.8.0.6 85955 username aminvpn 85955 mac 85955 bytes_out 0 85955 bytes_in 0 85955 station_ip 37.129.245.80 85955 port 20 85955 unique_id port 85955 remote_ip 10.8.0.6 85958 username aminvpn 85958 mac 85958 bytes_out 28593 85958 bytes_in 31632 85958 station_ip 37.129.245.80 85958 port 20 85958 unique_id port 85958 remote_ip 10.8.0.6 85960 username aminvpn 85960 mac 85960 bytes_out 0 85960 bytes_in 0 85960 station_ip 37.129.160.89 85960 port 21 85960 unique_id port 85960 remote_ip 10.8.0.6 85963 username aminvpn 85963 mac 85963 bytes_out 0 85963 bytes_in 0 85963 station_ip 37.129.160.89 85963 port 21 85963 unique_id port 85963 remote_ip 10.8.0.6 85964 username aminvpn 85964 mac 85964 bytes_out 39752 85964 bytes_in 40735 85964 station_ip 37.129.245.80 85964 port 20 85964 unique_id port 85964 remote_ip 10.8.0.6 85971 username aminvpn 85971 mac 85971 bytes_out 0 85971 bytes_in 0 85971 station_ip 37.129.245.80 85971 port 20 85971 unique_id port 85971 remote_ip 10.8.0.6 85980 username aminvpn 85980 mac 85980 bytes_out 0 85980 bytes_in 0 85980 station_ip 37.129.160.89 85980 port 21 85980 unique_id port 85980 remote_ip 10.8.0.6 85981 username aminvpn 85981 mac 85981 bytes_out 0 85981 bytes_in 0 85981 station_ip 37.129.245.80 85981 port 20 85981 unique_id port 85981 remote_ip 10.8.0.6 85984 username aminvpn 85984 mac 85984 bytes_out 0 85984 bytes_in 0 85984 station_ip 37.129.160.89 85984 port 21 85984 unique_id port 85984 remote_ip 10.8.0.6 85992 username aminvpn 85992 mac 85992 bytes_out 0 85992 bytes_in 0 85992 station_ip 37.129.160.89 85992 port 21 85992 unique_id port 85992 remote_ip 10.8.0.6 85995 username aminvpn 85995 mac 85995 bytes_out 0 85995 bytes_in 0 85995 station_ip 37.129.245.80 85995 port 20 85995 unique_id port 85995 remote_ip 10.8.0.6 85997 username aminvpn 85997 mac 85997 bytes_out 0 85937 bytes_in 0 85937 station_ip 37.129.160.89 85937 port 21 85937 unique_id port 85937 remote_ip 10.8.0.6 85940 username aminvpn 85940 mac 85940 bytes_out 0 85940 bytes_in 0 85940 station_ip 37.129.245.80 85940 port 20 85940 unique_id port 85940 remote_ip 10.8.0.6 85941 username aminvpn 85941 mac 85941 bytes_out 0 85941 bytes_in 0 85941 station_ip 37.129.160.89 85941 port 21 85941 unique_id port 85941 remote_ip 10.8.0.6 85943 username aminvpn 85943 mac 85943 bytes_out 0 85943 bytes_in 0 85943 station_ip 37.129.160.89 85943 port 21 85943 unique_id port 85943 remote_ip 10.8.0.6 85945 username aminvpn 85945 mac 85945 bytes_out 0 85945 bytes_in 0 85945 station_ip 37.129.160.89 85945 port 21 85945 unique_id port 85945 remote_ip 10.8.0.6 85947 username aminvpn 85947 mac 85947 bytes_out 45909 85947 bytes_in 61676 85947 station_ip 37.129.245.80 85947 port 20 85947 unique_id port 85947 remote_ip 10.8.0.6 85949 username aminvpn 85949 mac 85949 bytes_out 0 85949 bytes_in 0 85949 station_ip 37.129.245.80 85949 port 20 85949 unique_id port 85949 remote_ip 10.8.0.6 85950 username aminvpn 85950 mac 85950 bytes_out 0 85950 bytes_in 0 85950 station_ip 37.129.160.89 85950 port 21 85950 unique_id port 85950 remote_ip 10.8.0.6 85953 username aminvpn 85953 mac 85953 bytes_out 0 85953 bytes_in 0 85953 station_ip 37.129.245.80 85953 port 20 85953 unique_id port 85953 remote_ip 10.8.0.6 85956 username aminvpn 85956 mac 85956 bytes_out 0 85956 bytes_in 0 85956 station_ip 37.129.160.89 85956 port 21 85956 unique_id port 85956 remote_ip 10.8.0.6 85967 username aminvpn 85967 mac 85967 bytes_out 0 85967 bytes_in 0 85967 station_ip 37.129.160.89 85967 port 21 85967 unique_id port 85967 remote_ip 10.8.0.6 85969 username soleymani 85969 unique_id port 85969 terminate_cause Lost-Carrier 85969 bytes_out 241776 85969 bytes_in 4312832 85969 station_ip 5.119.204.234 85969 port 15728781 85969 nas_port_type Virtual 85969 remote_ip 5.5.5.182 85972 username aminvpn 85972 mac 85972 bytes_out 0 85972 bytes_in 0 85972 station_ip 37.129.160.89 85972 port 21 85972 unique_id port 85972 remote_ip 10.8.0.6 85975 username aminvpn 85975 mac 85975 bytes_out 0 85975 bytes_in 0 85975 station_ip 37.129.245.80 85975 port 20 85975 unique_id port 85975 remote_ip 10.8.0.6 85978 username aminvpn 85978 mac 85978 bytes_out 0 85978 bytes_in 0 85978 station_ip 37.129.160.89 85978 port 21 85978 unique_id port 85978 remote_ip 10.8.0.6 85987 username aminvpn 85987 mac 85987 bytes_out 0 85987 bytes_in 0 85987 station_ip 37.129.245.80 85987 port 20 85987 unique_id port 85987 remote_ip 10.8.0.6 85990 username aminvpn 85990 mac 85990 bytes_out 0 85990 bytes_in 0 85990 station_ip 37.129.160.89 85990 port 21 85990 unique_id port 85990 remote_ip 10.8.0.6 85993 username aminvpn 85993 mac 85993 bytes_out 0 85993 bytes_in 0 85993 station_ip 37.129.245.80 85993 port 20 85993 unique_id port 85993 remote_ip 10.8.0.6 85999 username aminvpn 85999 mac 85999 bytes_out 0 85999 bytes_in 0 85999 station_ip 37.129.245.80 85999 port 20 85999 unique_id port 85999 remote_ip 10.8.0.6 86001 username aminvpn 86001 mac 86001 bytes_out 0 86001 bytes_in 0 86001 station_ip 37.129.245.80 86001 port 20 86001 unique_id port 85965 bytes_out 0 85965 bytes_in 0 85965 station_ip 37.129.160.89 85965 port 21 85965 unique_id port 85965 remote_ip 10.8.0.6 85968 username aminvpn 85968 mac 85968 bytes_out 0 85968 bytes_in 0 85968 station_ip 37.129.245.80 85968 port 20 85968 unique_id port 85968 remote_ip 10.8.0.6 85970 username aminvpn 85970 mac 85970 bytes_out 0 85970 bytes_in 0 85970 station_ip 37.129.160.89 85970 port 21 85970 unique_id port 85970 remote_ip 10.8.0.6 85976 username aminvpn 85976 mac 85976 bytes_out 0 85976 bytes_in 0 85976 station_ip 37.129.160.89 85976 port 21 85976 unique_id port 85976 remote_ip 10.8.0.6 85979 username aminvpn 85979 mac 85979 bytes_out 0 85979 bytes_in 0 85979 station_ip 37.129.245.80 85979 port 20 85979 unique_id port 85979 remote_ip 10.8.0.6 85982 username aminvpn 85982 mac 85982 bytes_out 0 85982 bytes_in 0 85982 station_ip 37.129.160.89 85982 port 21 85982 unique_id port 85982 remote_ip 10.8.0.6 85985 username aminvpn 85985 mac 85985 bytes_out 0 85985 bytes_in 0 85985 station_ip 37.129.245.80 85985 port 20 85985 unique_id port 85985 remote_ip 10.8.0.6 85988 username aminvpn 85988 mac 85988 bytes_out 0 85988 bytes_in 0 85988 station_ip 37.129.160.89 85988 port 21 85988 unique_id port 85988 remote_ip 10.8.0.6 85991 username aminvpn 85991 mac 85991 bytes_out 0 85991 bytes_in 0 85991 station_ip 37.129.245.80 85991 port 20 85991 unique_id port 85991 remote_ip 10.8.0.6 85996 username aminvpn 85996 mac 85996 bytes_out 0 85996 bytes_in 0 85996 station_ip 37.129.160.89 85996 port 21 85996 unique_id port 85996 remote_ip 10.8.0.6 86000 username aminvpn 86000 mac 86000 bytes_out 0 86000 bytes_in 0 86000 station_ip 37.129.160.89 86000 port 21 86000 unique_id port 86000 remote_ip 10.8.0.6 86002 username aminvpn 86002 mac 86002 bytes_out 0 86002 bytes_in 0 86002 station_ip 37.129.160.89 86002 port 21 86002 unique_id port 86002 remote_ip 10.8.0.6 86005 username aminvpn 86005 mac 86005 bytes_out 0 86005 bytes_in 0 86005 station_ip 37.129.245.80 86005 port 20 86005 unique_id port 86005 remote_ip 10.8.0.6 86010 username aminvpn 86010 mac 86010 bytes_out 0 86010 bytes_in 0 86010 station_ip 37.129.245.80 86010 port 20 86010 unique_id port 86010 remote_ip 10.8.0.6 86013 username aminvpn 86013 mac 86013 bytes_out 0 86013 bytes_in 0 86013 station_ip 37.129.160.89 86013 port 21 86013 unique_id port 86013 remote_ip 10.8.0.6 86015 username aminvpn 86015 mac 86015 bytes_out 0 86015 bytes_in 0 86015 station_ip 37.129.245.80 86015 port 20 86015 unique_id port 86015 remote_ip 10.8.0.6 86019 username ahmadi 86019 unique_id port 86019 terminate_cause User-Request 86019 bytes_out 0 86019 bytes_in 0 86019 station_ip 37.129.204.182 86019 port 15728790 86019 nas_port_type Virtual 86019 remote_ip 5.5.5.184 86031 username aminvpn 86031 mac 86031 bytes_out 0 86031 bytes_in 0 86031 station_ip 37.129.245.80 86031 port 20 86031 unique_id port 86031 remote_ip 10.8.0.6 86032 username aminvpn 86032 mac 86032 bytes_out 0 86032 bytes_in 0 86032 station_ip 37.129.160.89 86032 port 21 86032 unique_id port 86032 remote_ip 10.8.0.6 86035 username aminvpn 86035 mac 86035 bytes_out 0 86035 bytes_in 0 86035 station_ip 37.129.245.80 86035 port 20 85983 username aminvpn 85983 mac 85983 bytes_out 0 85983 bytes_in 0 85983 station_ip 37.129.245.80 85983 port 20 85983 unique_id port 85983 remote_ip 10.8.0.6 85986 username aminvpn 85986 mac 85986 bytes_out 0 85986 bytes_in 0 85986 station_ip 37.129.160.89 85986 port 21 85986 unique_id port 85986 remote_ip 10.8.0.6 85989 username aminvpn 85989 mac 85989 bytes_out 0 85989 bytes_in 0 85989 station_ip 37.129.245.80 85989 port 20 85989 unique_id port 85989 remote_ip 10.8.0.6 85994 username aminvpn 85994 mac 85994 bytes_out 0 85994 bytes_in 0 85994 station_ip 37.129.160.89 85994 port 21 85994 unique_id port 85994 remote_ip 10.8.0.6 86003 username aminvpn 86003 mac 86003 bytes_out 0 86003 bytes_in 0 86003 station_ip 37.129.245.80 86003 port 20 86003 unique_id port 86003 remote_ip 10.8.0.6 86008 username aminvpn 86008 mac 86008 bytes_out 0 86008 bytes_in 0 86008 station_ip 37.129.245.80 86008 port 20 86008 unique_id port 86008 remote_ip 10.8.0.6 86011 username aminvpn 86011 mac 86011 bytes_out 0 86011 bytes_in 0 86011 station_ip 37.129.160.89 86011 port 21 86011 unique_id port 86011 remote_ip 10.8.0.6 86016 username aminvpn 86016 mac 86016 bytes_out 0 86016 bytes_in 0 86016 station_ip 37.129.160.89 86016 port 21 86016 unique_id port 86016 remote_ip 10.8.0.6 86018 username aminvpn 86018 mac 86018 bytes_out 0 86018 bytes_in 0 86018 station_ip 37.129.160.89 86018 port 21 86018 unique_id port 86018 remote_ip 10.8.0.6 86023 username aminvpn 86023 mac 86023 bytes_out 0 86023 bytes_in 0 86023 station_ip 37.129.160.89 86023 port 21 86023 unique_id port 86023 remote_ip 10.8.0.6 86024 username aminvpn 86024 mac 86024 bytes_out 0 86024 bytes_in 0 86024 station_ip 37.129.245.80 86024 port 20 86024 unique_id port 86024 remote_ip 10.8.0.6 86027 username aminvpn 86027 mac 86027 bytes_out 0 86027 bytes_in 0 86027 station_ip 37.129.160.89 86027 port 21 86027 unique_id port 86027 remote_ip 10.8.0.6 86029 username aminvpn 86029 mac 86029 bytes_out 0 86029 bytes_in 0 86029 station_ip 37.129.245.80 86029 port 20 86029 unique_id port 86029 remote_ip 10.8.0.6 86033 username aminvpn 86033 mac 86033 bytes_out 0 86033 bytes_in 0 86033 station_ip 37.129.245.80 86033 port 20 86033 unique_id port 86033 remote_ip 10.8.0.6 86036 username aminvpn 86036 mac 86036 bytes_out 0 86036 bytes_in 0 86036 station_ip 37.129.160.89 86036 port 21 86036 unique_id port 86036 remote_ip 10.8.0.6 86039 username aminvpn 86039 mac 86039 bytes_out 0 86039 bytes_in 0 86039 station_ip 37.129.245.80 86039 port 20 86039 unique_id port 86039 remote_ip 10.8.0.6 86044 username alinezhad 86044 unique_id port 86044 terminate_cause User-Request 86044 bytes_out 201871 86044 bytes_in 6912994 86044 station_ip 5.202.19.26 86044 port 15728792 86044 nas_port_type Virtual 86044 remote_ip 5.5.5.248 86047 username aminvpn 86047 mac 86047 bytes_out 0 86047 bytes_in 0 86047 station_ip 37.129.245.80 86047 port 20 86047 unique_id port 86047 remote_ip 10.8.0.6 86051 username mahdixz 86051 unique_id port 86051 terminate_cause User-Request 86051 bytes_out 1901510 86051 bytes_in 116482627 86051 station_ip 151.235.82.71 86051 port 15728791 86051 nas_port_type Virtual 86051 remote_ip 5.5.5.192 86058 username rashidi 86226 username madadi 85997 bytes_in 0 85997 station_ip 37.129.245.80 85997 port 20 85997 unique_id port 85997 remote_ip 10.8.0.6 85998 username aminvpn 85998 mac 85998 bytes_out 0 85998 bytes_in 0 85998 station_ip 37.129.160.89 85998 port 21 85998 unique_id port 85998 remote_ip 10.8.0.6 86006 username aminvpn 86006 mac 86006 bytes_out 0 86006 bytes_in 0 86006 station_ip 37.129.160.89 86006 port 21 86006 unique_id port 86006 remote_ip 10.8.0.6 86009 username aminvpn 86009 mac 86009 bytes_out 0 86009 bytes_in 0 86009 station_ip 37.129.160.89 86009 port 21 86009 unique_id port 86009 remote_ip 10.8.0.6 86012 username aminvpn 86012 mac 86012 bytes_out 0 86012 bytes_in 0 86012 station_ip 37.129.245.80 86012 port 20 86012 unique_id port 86012 remote_ip 10.8.0.6 86021 username caferibar 86021 unique_id port 86021 terminate_cause User-Request 86021 bytes_out 1848184 86021 bytes_in 71388820 86021 station_ip 31.59.39.67 86021 port 15728787 86021 nas_port_type Virtual 86021 remote_ip 5.5.5.178 86025 username aminvpn 86025 mac 86025 bytes_out 0 86025 bytes_in 0 86025 station_ip 37.129.160.89 86025 port 21 86025 unique_id port 86025 remote_ip 10.8.0.6 86030 username aminvpn 86030 mac 86030 bytes_out 0 86030 bytes_in 0 86030 station_ip 37.129.160.89 86030 port 21 86030 unique_id port 86030 remote_ip 10.8.0.6 86041 username ksrkrgr 86041 unique_id port 86041 terminate_cause User-Request 86041 bytes_out 0 86041 bytes_in 0 86041 station_ip 151.235.65.143 86041 port 15728793 86041 nas_port_type Virtual 86041 remote_ip 5.5.5.240 86043 username aminvpn 86043 mac 86043 bytes_out 0 86043 bytes_in 0 86043 station_ip 37.129.160.89 86043 port 21 86043 unique_id port 86043 remote_ip 10.8.0.6 86050 username aminvpn 86050 mac 86050 bytes_out 0 86050 bytes_in 0 86050 station_ip 37.129.160.89 86050 port 21 86050 unique_id port 86050 remote_ip 10.8.0.6 86052 username aminvpn 86052 mac 86052 bytes_out 0 86052 bytes_in 0 86052 station_ip 37.129.245.80 86052 port 20 86052 unique_id port 86052 remote_ip 10.8.0.6 86055 username aminvpn 86055 mac 86055 bytes_out 0 86055 bytes_in 0 86055 station_ip 37.129.160.89 86055 port 21 86055 unique_id port 86055 remote_ip 10.8.0.6 86064 username aminvpn 86064 mac 86064 bytes_out 0 86064 bytes_in 0 86064 station_ip 37.129.160.89 86064 port 21 86064 unique_id port 86064 remote_ip 10.8.0.6 86067 username aminvpn 86067 mac 86067 bytes_out 0 86067 bytes_in 0 86067 station_ip 37.129.245.80 86067 port 20 86067 unique_id port 86067 remote_ip 10.8.0.6 86068 username aminvpn 86068 mac 86068 bytes_out 0 86068 bytes_in 0 86068 station_ip 37.129.160.89 86068 port 21 86068 unique_id port 86068 remote_ip 10.8.0.6 86071 username aminvpn 86071 mac 86071 bytes_out 0 86071 bytes_in 0 86071 station_ip 37.129.245.80 86071 port 20 86071 unique_id port 86071 remote_ip 10.8.0.6 86074 username aminvpn 86074 mac 86074 bytes_out 0 86074 bytes_in 0 86074 station_ip 37.129.160.89 86074 port 21 86074 unique_id port 86074 remote_ip 10.8.0.6 86079 username aminvpn 86079 mac 86079 bytes_out 0 86079 bytes_in 0 86079 station_ip 37.129.160.89 86079 port 21 86079 unique_id port 86079 remote_ip 10.8.0.6 86081 username aminvpn 86081 mac 86081 bytes_out 0 86081 bytes_in 0 86081 station_ip 37.129.160.89 86001 remote_ip 10.8.0.6 86004 username aminvpn 86004 mac 86004 bytes_out 0 86004 bytes_in 0 86004 station_ip 37.129.160.89 86004 port 21 86004 unique_id port 86004 remote_ip 10.8.0.6 86007 username madadi 86007 unique_id port 86007 terminate_cause Lost-Carrier 86007 bytes_out 29268 86007 bytes_in 164945 86007 station_ip 5.119.238.78 86007 port 15728784 86007 nas_port_type Virtual 86007 remote_ip 5.5.5.180 86014 username mahbobeh 86014 unique_id port 86014 terminate_cause Lost-Carrier 86014 bytes_out 1275264 86014 bytes_in 11655414 86014 station_ip 83.122.102.252 86014 port 15728776 86014 nas_port_type Virtual 86014 remote_ip 5.5.5.186 86017 username aminvpn 86017 mac 86017 bytes_out 0 86017 bytes_in 0 86017 station_ip 37.129.245.80 86017 port 20 86017 unique_id port 86017 remote_ip 10.8.0.6 86020 username mahdixz 86020 unique_id port 86020 terminate_cause User-Request 86020 bytes_out 457347 86020 bytes_in 11192615 86020 station_ip 151.235.82.71 86020 port 15728788 86020 nas_port_type Virtual 86020 remote_ip 5.5.5.192 86022 username aminvpn 86022 mac 86022 bytes_out 0 86022 bytes_in 0 86022 station_ip 37.129.245.80 86022 port 20 86022 unique_id port 86022 remote_ip 10.8.0.6 86026 username aminvpn 86026 mac 86026 bytes_out 0 86026 bytes_in 0 86026 station_ip 37.129.245.80 86026 port 20 86026 unique_id port 86026 remote_ip 10.8.0.6 86028 username ksrkrgr 86028 unique_id port 86028 terminate_cause User-Request 86028 bytes_out 7710444 86028 bytes_in 8532358 86028 station_ip 151.235.65.143 86028 port 15728783 86028 nas_port_type Virtual 86028 remote_ip 5.5.5.240 86034 username aminvpn 86034 mac 86034 bytes_out 0 86034 bytes_in 0 86034 station_ip 37.129.160.89 86034 port 21 86034 unique_id port 86034 remote_ip 10.8.0.6 86037 username aminvpn 86037 mac 86037 bytes_out 0 86037 bytes_in 0 86037 station_ip 37.129.245.80 86037 port 20 86037 unique_id port 86037 remote_ip 10.8.0.6 86040 username aminvpn 86040 mac 86040 bytes_out 0 86040 bytes_in 0 86040 station_ip 37.129.160.89 86040 port 21 86040 unique_id port 86040 remote_ip 10.8.0.6 86045 username aminvpn 86045 mac 86045 bytes_out 0 86045 bytes_in 0 86045 station_ip 37.129.245.80 86045 port 20 86045 unique_id port 86045 remote_ip 10.8.0.6 86053 username aminvpn 86053 mac 86053 bytes_out 0 86053 bytes_in 0 86053 station_ip 37.129.160.89 86053 port 21 86053 unique_id port 86053 remote_ip 10.8.0.6 86056 username aminvpn 86056 mac 86056 bytes_out 0 86056 bytes_in 0 86056 station_ip 37.129.245.80 86056 port 20 86056 unique_id port 86056 remote_ip 10.8.0.6 86057 username aminvpn 86057 mac 86057 bytes_out 0 86057 bytes_in 0 86057 station_ip 37.129.160.89 86057 port 21 86057 unique_id port 86057 remote_ip 10.8.0.6 86059 username aminvpn 86059 mac 86059 bytes_out 0 86059 bytes_in 0 86059 station_ip 37.129.245.80 86059 port 20 86059 unique_id port 86059 remote_ip 10.8.0.6 86062 username aminvpn 86062 mac 86062 bytes_out 0 86062 bytes_in 0 86062 station_ip 37.129.160.89 86062 port 21 86062 unique_id port 86062 remote_ip 10.8.0.6 86069 username aminvpn 86069 mac 86069 bytes_out 0 86069 bytes_in 0 86069 station_ip 37.129.245.80 86069 port 20 86069 unique_id port 86069 remote_ip 10.8.0.6 86076 username aminvpn 86076 mac 86076 bytes_out 0 86076 bytes_in 0 86076 station_ip 37.129.245.80 86035 unique_id port 86035 remote_ip 10.8.0.6 86038 username aminvpn 86038 mac 86038 bytes_out 0 86038 bytes_in 0 86038 station_ip 37.129.160.89 86038 port 21 86038 unique_id port 86038 remote_ip 10.8.0.6 86042 username aminvpn 86042 mac 86042 bytes_out 0 86042 bytes_in 0 86042 station_ip 37.129.245.80 86042 port 20 86042 unique_id port 86042 remote_ip 10.8.0.6 86046 username aminvpn 86046 mac 86046 bytes_out 0 86046 bytes_in 0 86046 station_ip 37.129.160.89 86046 port 21 86046 unique_id port 86046 remote_ip 10.8.0.6 86048 username aminvpn 86048 mac 86048 bytes_out 0 86048 bytes_in 0 86048 station_ip 37.129.160.89 86048 port 21 86048 unique_id port 86048 remote_ip 10.8.0.6 86049 username aminvpn 86049 mac 86049 bytes_out 0 86049 bytes_in 0 86049 station_ip 37.129.245.80 86049 port 20 86049 unique_id port 86049 remote_ip 10.8.0.6 86054 username aminvpn 86054 mac 86054 bytes_out 28519 86054 bytes_in 27269 86054 station_ip 37.129.245.80 86054 port 20 86054 unique_id port 86054 remote_ip 10.8.0.6 86060 username aminvpn 86060 mac 86060 bytes_out 0 86060 bytes_in 0 86060 station_ip 37.129.160.89 86060 port 21 86060 unique_id port 86060 remote_ip 10.8.0.6 86063 username aminvpn 86063 mac 86063 bytes_out 0 86063 bytes_in 0 86063 station_ip 37.129.245.80 86063 port 20 86063 unique_id port 86063 remote_ip 10.8.0.6 86066 username ksrkrgr 86066 unique_id port 86066 terminate_cause User-Request 86066 bytes_out 2138781 86066 bytes_in 44416864 86066 station_ip 151.235.65.143 86066 port 15728794 86066 nas_port_type Virtual 86066 remote_ip 5.5.5.240 86072 username aminvpn 86072 mac 86072 bytes_out 0 86072 bytes_in 0 86072 station_ip 37.129.160.89 86072 port 21 86072 unique_id port 86072 remote_ip 10.8.0.6 86078 username aminvpn 86078 mac 86078 bytes_out 0 86078 bytes_in 0 86078 station_ip 37.129.245.80 86078 port 20 86078 unique_id port 86078 remote_ip 10.8.0.6 86082 username aminvpn 86082 unique_id port 86082 terminate_cause User-Request 86082 bytes_out 1980621 86082 bytes_in 31395036 86082 station_ip 37.129.245.80 86082 port 15728786 86082 nas_port_type Virtual 86082 remote_ip 5.5.5.225 86087 username zamanialireza 86087 unique_id port 86087 terminate_cause User-Request 86087 bytes_out 4685171 86087 bytes_in 41572179 86087 station_ip 5.119.253.183 86087 port 15728785 86087 nas_port_type Virtual 86087 remote_ip 5.5.5.179 86093 username arabpour 86093 unique_id port 86093 terminate_cause User-Request 86093 bytes_out 511211 86093 bytes_in 14434176 86093 station_ip 37.129.117.205 86093 port 15728801 86093 nas_port_type Virtual 86093 remote_ip 5.5.5.174 86094 username asadi 86094 unique_id port 86094 terminate_cause User-Request 86094 bytes_out 59070 86094 bytes_in 234919 86094 station_ip 83.122.239.11 86094 port 15728802 86094 nas_port_type Virtual 86094 remote_ip 5.5.5.175 86096 username aminvpn 86096 unique_id port 86096 terminate_cause User-Request 86096 bytes_out 136931 86096 bytes_in 573888 86096 station_ip 5.119.63.226 86096 port 15728805 86096 nas_port_type Virtual 86096 remote_ip 5.5.5.171 86100 username alinezhad 86100 unique_id port 86100 terminate_cause User-Request 86100 bytes_out 21142 86100 bytes_in 147521 86100 station_ip 5.202.19.26 86100 port 15728808 86100 nas_port_type Virtual 86100 remote_ip 5.5.5.248 86104 username asadi 86104 unique_id port 86104 terminate_cause User-Request 86104 bytes_out 54881 86104 bytes_in 496075 86058 kill_reason Relative expiration date has reached 86058 unique_id port 86058 bytes_out 0 86058 bytes_in 0 86058 station_ip 86.57.28.134 86058 port 15728796 86058 nas_port_type Virtual 86061 username aminvpn 86061 mac 86061 bytes_out 0 86061 bytes_in 0 86061 station_ip 37.129.245.80 86061 port 20 86061 unique_id port 86061 remote_ip 10.8.0.6 86065 username shahnaz 86065 unique_id port 86065 terminate_cause User-Request 86065 bytes_out 0 86065 bytes_in 0 86065 station_ip 5.119.109.176 86065 port 15728797 86065 nas_port_type Virtual 86065 remote_ip 5.5.5.181 86070 username aminvpn 86070 mac 86070 bytes_out 0 86070 bytes_in 0 86070 station_ip 37.129.160.89 86070 port 21 86070 unique_id port 86070 remote_ip 10.8.0.6 86073 username aminvpn 86073 mac 86073 bytes_out 0 86073 bytes_in 0 86073 station_ip 37.129.245.80 86073 port 20 86073 unique_id port 86073 remote_ip 10.8.0.6 86075 username madadi 86075 unique_id port 86075 terminate_cause Lost-Carrier 86075 bytes_out 185128 86075 bytes_in 818299 86075 station_ip 5.120.175.142 86075 port 15728795 86075 nas_port_type Virtual 86075 remote_ip 5.5.5.177 86085 username aminvpn 86085 mac 86085 bytes_out 0 86085 bytes_in 0 86085 station_ip 37.129.245.80 86085 port 20 86085 unique_id port 86085 remote_ip 10.8.0.6 86086 username aminvpn 86086 mac 86086 bytes_out 0 86086 bytes_in 0 86086 station_ip 37.129.160.89 86086 port 21 86086 unique_id port 86086 remote_ip 10.8.0.6 86090 username asadi 86090 unique_id port 86090 terminate_cause User-Request 86090 bytes_out 157107 86090 bytes_in 2394016 86090 station_ip 83.122.239.11 86090 port 15728799 86090 nas_port_type Virtual 86090 remote_ip 5.5.5.175 86097 username soleymani 86097 unique_id port 86097 terminate_cause Lost-Carrier 86097 bytes_out 146015 86097 bytes_in 1445906 86097 station_ip 5.120.97.229 86097 port 15728803 86097 nas_port_type Virtual 86097 remote_ip 5.5.5.173 86098 username arman 86098 unique_id port 86098 terminate_cause Lost-Carrier 86098 bytes_out 1387070 86098 bytes_in 24712431 86098 station_ip 5.120.183.15 86098 port 15728806 86098 nas_port_type Virtual 86098 remote_ip 5.5.5.170 86099 username heydari 86099 unique_id port 86099 terminate_cause Lost-Carrier 86099 bytes_out 290517 86099 bytes_in 3424992 86099 station_ip 37.27.18.66 86099 port 15728804 86099 nas_port_type Virtual 86099 remote_ip 5.5.5.172 86101 username aminvpn 86101 mac 86101 bytes_out 1469309 86101 bytes_in 13936572 86101 station_ip 37.129.160.89 86101 port 35 86101 unique_id port 86101 remote_ip 10.8.1.10 86102 username mahdixz 86102 unique_id port 86102 terminate_cause Lost-Carrier 86102 bytes_out 1149549 86102 bytes_in 27964011 86102 station_ip 151.235.82.71 86102 port 15728809 86102 nas_port_type Virtual 86102 remote_ip 5.5.5.192 86103 username mahdixz 86103 unique_id port 86103 terminate_cause User-Request 86103 bytes_out 1955208 86103 bytes_in 34073092 86103 station_ip 151.235.82.71 86103 port 15728812 86103 nas_port_type Virtual 86103 remote_ip 5.5.5.169 86107 username amirabbas 86107 unique_id port 86107 terminate_cause User-Request 86107 bytes_out 48786843 86107 bytes_in 1347076917 86107 station_ip 151.238.237.28 86107 port 15728772 86107 nas_port_type Virtual 86107 remote_ip 5.5.5.234 86112 username zamanialireza 86112 unique_id port 86112 terminate_cause User-Request 86112 bytes_out 142729 86112 bytes_in 593456 86112 station_ip 94.183.213.166 86112 port 15728819 86112 nas_port_type Virtual 86112 remote_ip 5.5.5.165 86120 username soleymani 86120 unique_id port 86076 port 20 86076 unique_id port 86076 remote_ip 10.8.0.6 86077 username aminvpn 86077 mac 86077 bytes_out 0 86077 bytes_in 0 86077 station_ip 37.129.160.89 86077 port 21 86077 unique_id port 86077 remote_ip 10.8.0.6 86080 username aminvpn 86080 mac 86080 bytes_out 0 86080 bytes_in 0 86080 station_ip 37.129.245.80 86080 port 20 86080 unique_id port 86080 remote_ip 10.8.0.6 86084 username aminvpn 86084 mac 86084 bytes_out 0 86084 bytes_in 0 86084 station_ip 37.129.160.89 86084 port 21 86084 unique_id port 86084 remote_ip 10.8.0.6 86089 username aminvpn 86089 kill_reason Maximum check online fails reached 86089 mac 86089 bytes_out 0 86089 bytes_in 0 86089 station_ip 37.129.160.89 86089 port 20 86089 unique_id port 86091 username aminvpn 86091 mac 86091 bytes_out 0 86091 bytes_in 0 86091 station_ip 5.119.63.226 86091 port 21 86091 unique_id port 86091 remote_ip 10.8.0.6 86106 username aminvpn 86106 mac 86106 bytes_out 0 86106 bytes_in 0 86106 station_ip 37.129.171.201 86106 port 35 86106 unique_id port 86106 remote_ip 10.8.1.10 86111 username shahnaz 86111 unique_id port 86111 terminate_cause Lost-Carrier 86111 bytes_out 706110 86111 bytes_in 8147372 86111 station_ip 5.119.109.176 86111 port 15728815 86111 nas_port_type Virtual 86111 remote_ip 5.5.5.181 86113 username madadi 86113 unique_id port 86113 terminate_cause Lost-Carrier 86113 bytes_out 44629 86113 bytes_in 155407 86113 station_ip 5.120.185.192 86113 port 15728820 86113 nas_port_type Virtual 86113 remote_ip 5.5.5.164 86114 username caferibar 86114 unique_id port 86114 terminate_cause User-Request 86114 bytes_out 2877087 86114 bytes_in 20370010 86114 station_ip 5.119.38.151 86114 port 15728821 86114 nas_port_type Virtual 86114 remote_ip 5.5.5.163 86118 username arman 86118 unique_id port 86118 terminate_cause Lost-Carrier 86118 bytes_out 2294057 86118 bytes_in 34280499 86118 station_ip 5.119.132.201 86118 port 15728817 86118 nas_port_type Virtual 86118 remote_ip 5.5.5.167 86121 username mahdixz 86121 unique_id port 86121 terminate_cause User-Request 86121 bytes_out 432952 86121 bytes_in 7614400 86121 station_ip 151.235.82.71 86121 port 15728823 86121 nas_port_type Virtual 86121 remote_ip 5.5.5.169 86124 username madadi 86124 unique_id port 86124 terminate_cause Lost-Carrier 86124 bytes_out 10341 86124 bytes_in 126233 86124 station_ip 5.119.42.68 86124 port 15728828 86124 nas_port_type Virtual 86124 remote_ip 5.5.5.160 86125 username zamanialireza 86125 unique_id port 86125 terminate_cause User-Request 86125 bytes_out 108205 86125 bytes_in 344386 86125 station_ip 83.123.88.57 86125 port 15728831 86125 nas_port_type Virtual 86125 remote_ip 5.5.5.159 86127 username zamanialireza 86127 unique_id port 86127 terminate_cause User-Request 86127 bytes_out 2050283 86127 bytes_in 5778551 86127 station_ip 5.119.253.183 86127 port 15728811 86127 nas_port_type Virtual 86127 remote_ip 5.5.5.179 86132 username zamanialireza 86132 unique_id port 86132 terminate_cause User-Request 86132 bytes_out 184697 86132 bytes_in 509953 86132 station_ip 83.123.104.45 86132 port 15728840 86132 nas_port_type Virtual 86132 remote_ip 5.5.5.155 86136 username madadi 86136 unique_id port 86136 terminate_cause Lost-Carrier 86136 bytes_out 192980 86136 bytes_in 1464002 86136 station_ip 5.119.94.0 86136 port 15728842 86136 nas_port_type Virtual 86136 remote_ip 5.5.5.153 86138 username arabpour 86138 unique_id port 86138 terminate_cause User-Request 86138 bytes_out 317562 86138 bytes_in 8559068 86138 station_ip 83.122.199.40 86081 port 21 86081 unique_id port 86081 remote_ip 10.8.0.6 86083 username aminvpn 86083 mac 86083 bytes_out 0 86083 bytes_in 0 86083 station_ip 37.129.245.80 86083 port 20 86083 unique_id port 86083 remote_ip 10.8.0.6 86088 username aminvpn 86088 mac 86088 bytes_out 0 86088 bytes_in 0 86088 station_ip 37.129.245.80 86088 port 20 86088 unique_id port 86088 remote_ip 10.8.0.6 86092 username asadi 86092 unique_id port 86092 terminate_cause User-Request 86092 bytes_out 141174 86092 bytes_in 1382671 86092 station_ip 83.122.239.11 86092 port 15728800 86092 nas_port_type Virtual 86092 remote_ip 5.5.5.175 86095 username mahbobeh 86095 unique_id port 86095 terminate_cause Lost-Carrier 86095 bytes_out 2443152 86095 bytes_in 40328954 86095 station_ip 83.122.102.252 86095 port 15728789 86095 nas_port_type Virtual 86095 remote_ip 5.5.5.186 86105 username arman 86105 unique_id port 86105 terminate_cause User-Request 86105 bytes_out 0 86105 bytes_in 0 86105 station_ip 5.119.132.201 86105 port 15728816 86105 nas_port_type Virtual 86105 remote_ip 5.5.5.167 86108 username madadi 86108 kill_reason Maximum number of concurrent logins reached 86108 unique_id port 86108 bytes_out 0 86108 bytes_in 0 86108 station_ip 5.119.42.68 86108 port 15728822 86108 nas_port_type Virtual 86115 username ahmadipour 86115 unique_id port 86115 terminate_cause User-Request 86115 bytes_out 16527617 86115 bytes_in 9259634 86115 station_ip 37.129.112.109 86115 port 15728813 86115 nas_port_type Virtual 86115 remote_ip 5.5.5.168 86126 username mahbobeh 86126 unique_id port 86126 terminate_cause Lost-Carrier 86126 bytes_out 871179 86126 bytes_in 1692718 86126 station_ip 83.122.102.252 86126 port 15728829 86126 nas_port_type Virtual 86126 remote_ip 5.5.5.186 86128 username caferibar 86128 unique_id port 86128 terminate_cause Lost-Carrier 86128 bytes_out 1644023 86128 bytes_in 48975581 86128 station_ip 5.119.120.201 86128 port 15728832 86128 nas_port_type Virtual 86128 remote_ip 5.5.5.158 86129 username sadegh 86129 unique_id port 86129 terminate_cause Lost-Carrier 86129 bytes_out 2861984 86129 bytes_in 75731637 86129 station_ip 5.119.163.167 86129 port 15728833 86129 nas_port_type Virtual 86129 remote_ip 5.5.5.157 86133 username heydari 86133 unique_id port 86133 terminate_cause Lost-Carrier 86133 bytes_out 450111 86133 bytes_in 3575022 86133 station_ip 5.120.82.132 86133 port 15728810 86133 nas_port_type Virtual 86133 remote_ip 5.5.5.205 86144 username arabpour 86144 unique_id port 86144 terminate_cause User-Request 86144 bytes_out 602566 86144 bytes_in 17947704 86144 station_ip 83.122.206.136 86144 port 15728853 86144 nas_port_type Virtual 86144 remote_ip 5.5.5.145 86145 username afarin 86145 unique_id port 86145 terminate_cause User-Request 86145 bytes_out 235910 86145 bytes_in 800222 86145 station_ip 31.56.220.234 86145 port 15728854 86145 nas_port_type Virtual 86145 remote_ip 5.5.5.144 86162 username alinezhad 86162 unique_id port 86162 terminate_cause User-Request 86162 bytes_out 40538 86162 bytes_in 249090 86162 station_ip 5.202.9.66 86162 port 15728873 86162 nas_port_type Virtual 86162 remote_ip 5.5.5.146 86163 username amirabbas 86163 unique_id port 86163 terminate_cause User-Request 86163 bytes_out 666744 86163 bytes_in 8688413 86163 station_ip 151.238.237.28 86163 port 15728851 86163 nas_port_type Virtual 86163 remote_ip 5.5.5.234 86165 username soleymani 86165 unique_id port 86165 terminate_cause Lost-Carrier 86165 bytes_out 52461 86165 bytes_in 448806 86165 station_ip 5.119.137.55 86165 port 15728872 86165 nas_port_type Virtual 86165 remote_ip 5.5.5.135 86104 station_ip 83.122.239.11 86104 port 15728814 86104 nas_port_type Virtual 86104 remote_ip 5.5.5.175 86109 username madadi 86109 unique_id port 86109 terminate_cause Lost-Carrier 86109 bytes_out 146177 86109 bytes_in 729849 86109 station_ip 5.119.53.23 86109 port 15728818 86109 nas_port_type Virtual 86109 remote_ip 5.5.5.166 86110 username mahbobeh 86110 unique_id port 86110 terminate_cause Lost-Carrier 86110 bytes_out 943004 86110 bytes_in 5317307 86110 station_ip 83.122.102.252 86110 port 15728807 86110 nas_port_type Virtual 86110 remote_ip 5.5.5.186 86116 username aminvpn 86116 kill_reason Another user logged on this global unique id 86116 mac 86116 bytes_out 0 86116 bytes_in 0 86116 station_ip 5.120.84.25 86116 port 21 86116 unique_id port 86116 remote_ip 10.8.0.6 86117 username caferibar 86117 unique_id port 86117 terminate_cause User-Request 86117 bytes_out 0 86117 bytes_in 0 86117 station_ip 5.119.40.185 86117 port 15728824 86117 nas_port_type Virtual 86117 remote_ip 5.5.5.162 86119 username aminvpn 86119 kill_reason Another user logged on this global unique id 86119 mac 86119 bytes_out 0 86119 bytes_in 0 86119 station_ip 5.120.84.25 86119 port 21 86119 unique_id port 86123 username farhad 86123 unique_id port 86123 terminate_cause Lost-Carrier 86123 bytes_out 19106346 86123 bytes_in 389701626 86123 station_ip 5.120.152.95 86123 port 15728798 86123 nas_port_type Virtual 86123 remote_ip 5.5.5.176 86131 username zamanialireza 86131 unique_id port 86131 terminate_cause User-Request 86131 bytes_out 693783 86131 bytes_in 5541880 86131 station_ip 5.119.253.183 86131 port 15728834 86131 nas_port_type Virtual 86131 remote_ip 5.5.5.179 86135 username aminvpn 86135 mac 86135 bytes_out 0 86135 bytes_in 0 86135 station_ip 5.120.84.25 86135 port 21 86135 unique_id port 86141 username forozande 86141 unique_id port 86141 terminate_cause User-Request 86141 bytes_out 77701 86141 bytes_in 1241910 86141 station_ip 83.123.130.39 86141 port 15728850 86141 nas_port_type Virtual 86141 remote_ip 5.5.5.148 86146 username caferibar 86146 unique_id port 86146 terminate_cause Lost-Carrier 86146 bytes_out 1535707 86146 bytes_in 11245785 86146 station_ip 5.119.58.11 86146 port 15728849 86146 nas_port_type Virtual 86146 remote_ip 5.5.5.147 86147 username zamanialireza 86147 unique_id port 86147 terminate_cause Lost-Carrier 86147 bytes_out 2632908 86147 bytes_in 54875432 86147 station_ip 5.62.221.201 86147 port 15728843 86147 nas_port_type Virtual 86147 remote_ip 5.5.5.152 86148 username forozande 86148 unique_id port 86148 terminate_cause User-Request 86148 bytes_out 52855 86148 bytes_in 336379 86148 station_ip 83.123.133.206 86148 port 15728858 86148 nas_port_type Virtual 86148 remote_ip 5.5.5.142 86149 username heydari 86149 unique_id port 86149 terminate_cause Lost-Carrier 86149 bytes_out 19796 86149 bytes_in 189255 86149 station_ip 5.120.82.132 86149 port 15728857 86149 nas_port_type Virtual 86149 remote_ip 5.5.5.205 86151 username farhad 86151 unique_id port 86151 terminate_cause User-Request 86151 bytes_out 0 86151 bytes_in 0 86151 station_ip 5.120.63.222 86151 port 15728861 86151 nas_port_type Virtual 86151 remote_ip 5.5.5.140 86153 username farhad 86153 unique_id port 86153 terminate_cause Lost-Carrier 86153 bytes_out 7433744 86153 bytes_in 145397507 86153 station_ip 5.119.247.113 86153 port 15728844 86153 nas_port_type Virtual 86153 remote_ip 5.5.5.151 86154 username arabpour 86154 unique_id port 86154 terminate_cause User-Request 86154 bytes_out 289249 86154 bytes_in 7134809 86154 station_ip 83.122.63.83 86154 port 15728864 86154 nas_port_type Virtual 86120 terminate_cause Lost-Carrier 86120 bytes_out 68784 86120 bytes_in 307376 86120 station_ip 5.120.111.95 86120 port 15728826 86120 nas_port_type Virtual 86120 remote_ip 5.5.5.161 86122 username caferibar 86122 unique_id port 86122 terminate_cause Lost-Carrier 86122 bytes_out 1535491 86122 bytes_in 39566040 86122 station_ip 5.119.40.185 86122 port 15728825 86122 nas_port_type Virtual 86122 remote_ip 5.5.5.162 86130 username sadegh 86130 unique_id port 86130 terminate_cause User-Request 86130 bytes_out 0 86130 bytes_in 0 86130 station_ip 5.202.19.197 86130 port 15728835 86130 nas_port_type Virtual 86130 remote_ip 5.5.5.156 86134 username ahmadi 86134 unique_id port 86134 terminate_cause User-Request 86134 bytes_out 43277 86134 bytes_in 317314 86134 station_ip 37.129.204.182 86134 port 15728845 86134 nas_port_type Virtual 86134 remote_ip 5.5.5.184 86137 username caferibar 86137 unique_id port 86137 terminate_cause Lost-Carrier 86137 bytes_out 571294 86137 bytes_in 9553984 86137 station_ip 5.134.150.141 86137 port 15728841 86137 nas_port_type Virtual 86137 remote_ip 5.5.5.154 86140 username caferibar 86140 unique_id port 86140 terminate_cause Lost-Carrier 86140 bytes_out 834763 86140 bytes_in 14188194 86140 station_ip 5.119.43.70 86140 port 15728847 86140 nas_port_type Virtual 86140 remote_ip 5.5.5.149 86150 username ahmadi 86150 unique_id port 86150 terminate_cause Lost-Carrier 86150 bytes_out 0 86150 bytes_in 0 86150 station_ip 37.129.204.182 86150 port 15728860 86150 nas_port_type Virtual 86150 remote_ip 5.5.5.184 86152 username farhad 86152 unique_id port 86152 terminate_cause User-Request 86152 bytes_out 0 86152 bytes_in 0 86152 station_ip 5.120.63.222 86152 port 15728862 86152 nas_port_type Virtual 86152 remote_ip 5.5.5.140 86156 username afarin 86156 unique_id port 86156 terminate_cause User-Request 86156 bytes_out 1248970 86156 bytes_in 13009731 86156 station_ip 31.56.220.234 86156 port 15728867 86156 nas_port_type Virtual 86156 remote_ip 5.5.5.144 86157 username mahdixz 86157 unique_id port 86157 terminate_cause Lost-Carrier 86157 bytes_out 2521136 86157 bytes_in 91031746 86157 station_ip 151.235.82.71 86157 port 15728855 86157 nas_port_type Virtual 86157 remote_ip 5.5.5.169 86161 username sadegh 86161 unique_id port 86161 terminate_cause Lost-Carrier 86161 bytes_out 42310099 86161 bytes_in 753811654 86161 station_ip 5.202.19.197 86161 port 15728836 86161 nas_port_type Virtual 86161 remote_ip 5.5.5.156 86174 username alinezhad 86174 unique_id port 86174 terminate_cause User-Request 86174 bytes_out 0 86174 bytes_in 0 86174 station_ip 37.129.210.121 86174 port 15728881 86174 nas_port_type Virtual 86174 remote_ip 5.5.5.132 86175 username abdilahyar 86175 unique_id port 86175 terminate_cause Lost-Carrier 86175 bytes_out 7567347 86175 bytes_in 138104289 86175 station_ip 5.120.44.117 86175 port 15728641 86175 nas_port_type Virtual 86175 remote_ip 5.5.5.254 86183 username alinezhad 86183 unique_id port 86183 terminate_cause User-Request 86183 bytes_out 0 86183 bytes_in 0 86183 station_ip 5.202.62.248 86183 port 15728888 86183 nas_port_type Virtual 86183 remote_ip 5.5.5.130 86186 username alinezhad 86186 unique_id port 86186 terminate_cause User-Request 86186 bytes_out 0 86186 bytes_in 0 86186 station_ip 5.202.62.248 86186 port 15728891 86186 nas_port_type Virtual 86186 remote_ip 5.5.5.130 86189 username madadi 86189 unique_id port 86189 terminate_cause User-Request 86189 bytes_out 20762 86189 bytes_in 51598 86189 station_ip 5.120.152.72 86189 port 15728894 86189 nas_port_type Virtual 86189 remote_ip 5.5.5.126 86191 username madadi 86191 unique_id port 86138 port 15728846 86138 nas_port_type Virtual 86138 remote_ip 5.5.5.150 86139 username forozande 86139 unique_id port 86139 terminate_cause User-Request 86139 bytes_out 81598 86139 bytes_in 354301 86139 station_ip 83.123.130.39 86139 port 15728848 86139 nas_port_type Virtual 86139 remote_ip 5.5.5.148 86142 username amirabbas 86142 unique_id port 86142 terminate_cause User-Request 86142 bytes_out 47491929 86142 bytes_in 1320930852 86142 station_ip 151.238.237.28 86142 port 15728830 86142 nas_port_type Virtual 86142 remote_ip 5.5.5.234 86143 username alinezhad 86143 unique_id port 86143 terminate_cause User-Request 86143 bytes_out 46459 86143 bytes_in 538765 86143 station_ip 5.202.9.66 86143 port 15728852 86143 nas_port_type Virtual 86143 remote_ip 5.5.5.146 86155 username ksrkrgr 86155 unique_id port 86155 terminate_cause User-Request 86155 bytes_out 567188 86155 bytes_in 1249888 86155 station_ip 151.235.65.143 86155 port 15728866 86155 nas_port_type Virtual 86155 remote_ip 5.5.5.240 86159 username mahdixz 86159 unique_id port 86159 terminate_cause User-Request 86159 bytes_out 0 86159 bytes_in 0 86159 station_ip 151.235.82.71 86159 port 15728871 86159 nas_port_type Virtual 86159 remote_ip 5.5.5.169 86164 username asadi 86164 unique_id port 86164 terminate_cause User-Request 86164 bytes_out 212475 86164 bytes_in 3402264 86164 station_ip 83.122.239.11 86164 port 15728874 86164 nas_port_type Virtual 86164 remote_ip 5.5.5.175 86168 username shahnaz 86168 unique_id port 86168 terminate_cause User-Request 86168 bytes_out 46067 86168 bytes_in 258561 86168 station_ip 5.119.249.132 86168 port 15728876 86168 nas_port_type Virtual 86168 remote_ip 5.5.5.134 86177 username zamanialireza 86177 unique_id port 86177 terminate_cause User-Request 86177 bytes_out 202483 86177 bytes_in 4671189 86177 station_ip 37.129.52.215 86177 port 15728882 86177 nas_port_type Virtual 86177 remote_ip 5.5.5.131 86179 username aminvpn 86179 unique_id port 86179 terminate_cause User-Request 86179 bytes_out 1610658 86179 bytes_in 20248800 86179 station_ip 5.120.84.25 86179 port 15728870 86179 nas_port_type Virtual 86179 remote_ip 5.5.5.136 86180 username zamanialireza 86180 unique_id port 86180 terminate_cause User-Request 86180 bytes_out 56953 86180 bytes_in 92179 86180 station_ip 37.129.52.215 86180 port 15728884 86180 nas_port_type Virtual 86180 remote_ip 5.5.5.131 86182 username zamanialireza 86182 unique_id port 86182 terminate_cause User-Request 86182 bytes_out 297544 86182 bytes_in 955276 86182 station_ip 37.129.52.215 86182 port 15728886 86182 nas_port_type Virtual 86182 remote_ip 5.5.5.131 86194 username ahmadipour 86194 unique_id port 86194 terminate_cause Lost-Carrier 86194 bytes_out 73774 86194 bytes_in 56129 86194 station_ip 37.129.121.129 86194 port 15728900 86194 nas_port_type Virtual 86194 remote_ip 5.5.5.125 86196 username heydari 86196 unique_id port 86196 terminate_cause Lost-Carrier 86196 bytes_out 13654636 86196 bytes_in 14194753 86196 station_ip 5.120.82.132 86196 port 15728859 86196 nas_port_type Virtual 86196 remote_ip 5.5.5.141 86197 username aminvpn 86197 kill_reason Another user logged on this global unique id 86197 mac 86197 bytes_out 0 86197 bytes_in 0 86197 station_ip 5.120.143.57 86197 port 22 86197 unique_id port 86197 remote_ip 10.8.0.6 86202 username asadi 86202 unique_id port 86202 terminate_cause User-Request 86202 bytes_out 149145 86202 bytes_in 2841262 86202 station_ip 83.122.239.11 86202 port 15728908 86202 nas_port_type Virtual 86202 remote_ip 5.5.5.175 86203 username madadi 86203 unique_id port 86203 terminate_cause Lost-Carrier 86203 bytes_out 22675 86154 remote_ip 5.5.5.139 86158 username soleymani 86158 unique_id port 86158 terminate_cause Lost-Carrier 86158 bytes_out 164718 86158 bytes_in 423496 86158 station_ip 5.119.243.134 86158 port 15728869 86158 nas_port_type Virtual 86158 remote_ip 5.5.5.137 86160 username madadi 86160 unique_id port 86160 terminate_cause Lost-Carrier 86160 bytes_out 662322 86160 bytes_in 2073908 86160 station_ip 5.119.231.188 86160 port 15728856 86160 nas_port_type Virtual 86160 remote_ip 5.5.5.143 86167 username shahrooz 86167 unique_id port 86167 terminate_cause Lost-Carrier 86167 bytes_out 12325694 86167 bytes_in 59004574 86167 station_ip 83.122.2.221 86167 port 15728865 86167 nas_port_type Virtual 86167 remote_ip 5.5.5.138 86170 username arabpour 86170 unique_id port 86170 terminate_cause User-Request 86170 bytes_out 361166 86170 bytes_in 10110359 86170 station_ip 37.129.191.184 86170 port 15728878 86170 nas_port_type Virtual 86170 remote_ip 5.5.5.133 86173 username asadi 86173 unique_id port 86173 terminate_cause User-Request 86173 bytes_out 168085 86173 bytes_in 2439495 86173 station_ip 83.122.239.11 86173 port 15728880 86173 nas_port_type Virtual 86173 remote_ip 5.5.5.175 86176 username asadi 86176 unique_id port 86176 terminate_cause User-Request 86176 bytes_out 86841 86176 bytes_in 798400 86176 station_ip 83.122.239.11 86176 port 15728883 86176 nas_port_type Virtual 86176 remote_ip 5.5.5.175 86178 username aminvpn 86178 mac 86178 bytes_out 2268371 86178 bytes_in 8047106 86178 station_ip 5.120.84.25 86178 port 21 86178 unique_id port 86178 remote_ip 10.8.0.6 86181 username alinezhad 86181 unique_id port 86181 terminate_cause User-Request 86181 bytes_out 0 86181 bytes_in 0 86181 station_ip 5.202.62.248 86181 port 15728887 86181 nas_port_type Virtual 86181 remote_ip 5.5.5.130 86184 username alinezhad 86184 unique_id port 86184 terminate_cause User-Request 86184 bytes_out 0 86184 bytes_in 0 86184 station_ip 5.202.62.248 86184 port 15728889 86184 nas_port_type Virtual 86184 remote_ip 5.5.5.130 86188 username aminvpn 86188 mac 86188 bytes_out 0 86188 bytes_in 0 86188 station_ip 83.123.92.90 86188 port 21 86188 unique_id port 86188 remote_ip 10.8.0.6 86192 username asadi 86192 unique_id port 86192 terminate_cause User-Request 86192 bytes_out 21540 86192 bytes_in 43216 86192 station_ip 83.122.239.11 86192 port 15728898 86192 nas_port_type Virtual 86192 remote_ip 5.5.5.175 86195 username alinezhad 86195 unique_id port 86195 terminate_cause User-Request 86195 bytes_out 0 86195 bytes_in 0 86195 station_ip 37.129.104.117 86195 port 15728902 86195 nas_port_type Virtual 86195 remote_ip 5.5.5.123 86200 username madadi 86200 unique_id port 86200 terminate_cause Lost-Carrier 86200 bytes_out 60841 86200 bytes_in 157657 86200 station_ip 5.120.139.192 86200 port 15728904 86200 nas_port_type Virtual 86200 remote_ip 5.5.5.122 86201 username aminvpn 86201 kill_reason Maximum check online fails reached 86201 mac 86201 bytes_out 0 86201 bytes_in 0 86201 station_ip 5.120.143.57 86201 port 22 86201 unique_id port 86217 username aminvpn 86217 mac 86217 bytes_out 236468 86217 bytes_in 1592771 86217 station_ip 83.122.214.128 86217 port 21 86217 unique_id port 86217 remote_ip 10.8.0.6 86226 unique_id port 86226 terminate_cause Lost-Carrier 86226 bytes_out 3021368 86226 bytes_in 5384158 86226 station_ip 5.120.33.45 86226 port 15728910 86226 nas_port_type Virtual 86226 remote_ip 5.5.5.118 86231 username madadi 86231 unique_id port 86231 terminate_cause Admin-Reboot 86231 bytes_out 50264 86231 bytes_in 102243 86231 station_ip 5.120.121.46 86166 username alinezhad 86166 unique_id port 86166 terminate_cause User-Request 86166 bytes_out 17974 86166 bytes_in 45420 86166 station_ip 5.202.9.66 86166 port 15728875 86166 nas_port_type Virtual 86166 remote_ip 5.5.5.146 86169 username ksrkrgr 86169 unique_id port 86169 terminate_cause User-Request 86169 bytes_out 9958857 86169 bytes_in 15085991 86169 station_ip 151.235.65.143 86169 port 15728868 86169 nas_port_type Virtual 86169 remote_ip 5.5.5.240 86171 username shahnaz 86171 unique_id port 86171 terminate_cause User-Request 86171 bytes_out 190157 86171 bytes_in 3066078 86171 station_ip 5.119.249.132 86171 port 15728879 86171 nas_port_type Virtual 86171 remote_ip 5.5.5.134 86172 username alinezhad 86172 unique_id port 86172 terminate_cause Lost-Carrier 86172 bytes_out 102262 86172 bytes_in 892865 86172 station_ip 5.202.9.66 86172 port 15728877 86172 nas_port_type Virtual 86172 remote_ip 5.5.5.146 86185 username sadegh 86185 unique_id port 86185 terminate_cause User-Request 86185 bytes_out 862846 86185 bytes_in 14769870 86185 station_ip 5.119.211.45 86185 port 15728890 86185 nas_port_type Virtual 86185 remote_ip 5.5.5.129 86187 username ahmadi 86187 unique_id port 86187 terminate_cause User-Request 86187 bytes_out 56238 86187 bytes_in 205802 86187 station_ip 37.129.170.174 86187 port 15728892 86187 nas_port_type Virtual 86187 remote_ip 5.5.5.128 86190 username madadi 86190 unique_id port 86190 terminate_cause User-Request 86190 bytes_out 0 86190 bytes_in 0 86190 station_ip 5.120.152.72 86190 port 15728895 86190 nas_port_type Virtual 86190 remote_ip 5.5.5.126 86198 username soleymani 86198 unique_id port 86198 terminate_cause Lost-Carrier 86198 bytes_out 42654 86198 bytes_in 248379 86198 station_ip 5.119.186.207 86198 port 15728901 86198 nas_port_type Virtual 86198 remote_ip 5.5.5.124 86199 username farhad 86199 unique_id port 86199 terminate_cause Lost-Carrier 86199 bytes_out 20336555 86199 bytes_in 231338838 86199 station_ip 5.120.63.222 86199 port 15728863 86199 nas_port_type Virtual 86199 remote_ip 5.5.5.140 86210 username alinezhad 86210 unique_id port 86210 terminate_cause User-Request 86210 bytes_out 0 86210 bytes_in 0 86210 station_ip 37.129.219.145 86210 port 15728915 86210 nas_port_type Virtual 86210 remote_ip 5.5.5.117 86214 username aminvpn 86214 mac 86214 bytes_out 0 86214 bytes_in 0 86214 station_ip 5.120.143.57 86214 port 22 86214 unique_id port 86214 remote_ip 10.8.0.6 86219 username shahrooz 86219 unique_id port 86219 terminate_cause User-Request 86219 bytes_out 12577422 86219 bytes_in 349893471 86219 station_ip 83.122.2.221 86219 port 15728916 86219 nas_port_type Virtual 86219 remote_ip 5.5.5.138 86224 username caferibar 86224 unique_id port 86224 terminate_cause User-Request 86224 bytes_out 3222615 86224 bytes_in 66682687 86224 station_ip 31.59.39.67 86224 port 15728919 86224 nas_port_type Virtual 86224 remote_ip 5.5.5.178 86227 username zamanialireza 86227 unique_id port 86227 terminate_cause User-Request 86227 bytes_out 1801719 86227 bytes_in 75981175 86227 station_ip 94.24.87.148 86227 port 15728924 86227 nas_port_type Virtual 86227 remote_ip 5.5.5.109 86230 username pouria 86230 unique_id port 86230 terminate_cause Admin-Reboot 86230 bytes_out 18856277 86230 bytes_in 625757727 86230 station_ip 151.235.125.49 86230 port 15728923 86230 nas_port_type Virtual 86230 remote_ip 5.5.5.110 86235 username alinezhad 86235 unique_id port 86235 terminate_cause User-Request 86235 bytes_out 8135 86235 bytes_in 15058 86235 station_ip 37.129.205.136 86235 port 15728642 86235 nas_port_type Virtual 86235 remote_ip 5.5.5.253 86237 username shokokian 86191 terminate_cause Lost-Carrier 86191 bytes_out 15180 86191 bytes_in 123789 86191 station_ip 5.120.152.72 86191 port 15728897 86191 nas_port_type Virtual 86191 remote_ip 5.5.5.126 86193 username asadi 86193 unique_id port 86193 terminate_cause User-Request 86193 bytes_out 64988 86193 bytes_in 768321 86193 station_ip 83.122.239.11 86193 port 15728899 86193 nas_port_type Virtual 86193 remote_ip 5.5.5.175 86204 username zamanialireza 86204 unique_id port 86204 terminate_cause User-Request 86204 bytes_out 302695 86204 bytes_in 1300672 86204 station_ip 94.24.93.7 86204 port 15728907 86204 nas_port_type Virtual 86204 remote_ip 5.5.5.120 86207 username sobhan 86207 unique_id port 86207 terminate_cause Lost-Carrier 86207 bytes_out 18566600 86207 bytes_in 442123336 86207 station_ip 5.119.66.186 86207 port 15728893 86207 nas_port_type Virtual 86207 remote_ip 5.5.5.127 86208 username heydari 86208 unique_id port 86208 terminate_cause Lost-Carrier 86208 bytes_out 190998 86208 bytes_in 845021 86208 station_ip 5.120.82.132 86208 port 15728909 86208 nas_port_type Virtual 86208 remote_ip 5.5.5.119 86212 username aminvpn 86212 mac 86212 bytes_out 0 86212 bytes_in 0 86212 station_ip 5.120.143.57 86212 port 22 86212 unique_id port 86212 remote_ip 10.8.0.6 86213 username aminvpn 86213 mac 86213 bytes_out 170457 86213 bytes_in 1543249 86213 station_ip 83.122.214.128 86213 port 21 86213 unique_id port 86213 remote_ip 10.8.0.6 86216 username aminvpn 86216 mac 86216 bytes_out 0 86216 bytes_in 0 86216 station_ip 5.120.143.57 86216 port 22 86216 unique_id port 86216 remote_ip 10.8.0.6 86220 username zamanialireza 86220 unique_id port 86220 terminate_cause Lost-Carrier 86220 bytes_out 142020 86220 bytes_in 483118 86220 station_ip 5.160.114.56 86220 port 15728918 86220 nas_port_type Virtual 86220 remote_ip 5.5.5.113 86225 username caferibar 86225 unique_id port 86225 terminate_cause Lost-Carrier 86225 bytes_out 978298 86225 bytes_in 15355628 86225 station_ip 5.119.71.133 86225 port 15728922 86225 nas_port_type Virtual 86225 remote_ip 5.5.5.111 86228 username zamanialireza 86228 unique_id port 86228 terminate_cause User-Request 86228 bytes_out 11941006 86228 bytes_in 253228750 86228 station_ip 94.24.87.148 86228 port 15728925 86228 nas_port_type Virtual 86228 remote_ip 5.5.5.109 86229 username afarin 86229 unique_id port 86229 terminate_cause Admin-Reboot 86229 bytes_out 6066939 86229 bytes_in 115547718 86229 station_ip 31.56.220.234 86229 port 15728917 86229 nas_port_type Virtual 86229 remote_ip 5.5.5.144 86232 username alinezhad 86232 unique_id port 86232 terminate_cause User-Request 86232 bytes_out 0 86232 bytes_in 0 86232 station_ip 113.203.25.36 86232 port 15728640 86232 nas_port_type Virtual 86232 remote_ip 5.5.5.255 86238 username ahmadi 86238 unique_id port 86238 terminate_cause User-Request 86238 bytes_out 0 86238 bytes_in 0 86238 station_ip 37.129.169.162 86238 port 15728644 86238 nas_port_type Virtual 86238 remote_ip 5.5.5.252 86248 username caferibar 86248 unique_id port 86248 terminate_cause User-Request 86248 bytes_out 0 86248 bytes_in 0 86248 station_ip 5.119.210.83 86248 port 15728657 86248 nas_port_type Virtual 86248 remote_ip 5.5.5.242 86249 username shahnaz 86249 unique_id port 86249 terminate_cause User-Request 86249 bytes_out 15970035 86249 bytes_in 2371494 86249 station_ip 5.119.50.117 86249 port 15728656 86249 nas_port_type Virtual 86249 remote_ip 5.5.5.243 86251 username forozande 86251 unique_id port 86251 terminate_cause User-Request 86251 bytes_out 138358 86251 bytes_in 314664 86251 station_ip 83.122.40.163 86203 bytes_in 140482 86203 station_ip 5.120.99.181 86203 port 15728905 86203 nas_port_type Virtual 86203 remote_ip 5.5.5.121 86205 username heydari 86205 unique_id port 86205 terminate_cause Lost-Carrier 86205 bytes_out 1119 86205 bytes_in 122353 86205 station_ip 5.120.82.132 86205 port 15728906 86205 nas_port_type Virtual 86205 remote_ip 5.5.5.141 86206 username alinezhad 86206 unique_id port 86206 terminate_cause User-Request 86206 bytes_out 0 86206 bytes_in 0 86206 station_ip 37.129.219.145 86206 port 15728911 86206 nas_port_type Virtual 86206 remote_ip 5.5.5.117 86209 username shokokian 86209 unique_id port 86209 terminate_cause User-Request 86209 bytes_out 513027 86209 bytes_in 3108748 86209 station_ip 83.123.184.184 86209 port 15728914 86209 nas_port_type Virtual 86209 remote_ip 5.5.5.114 86211 username aminvpn 86211 mac 86211 bytes_out 136668 86211 bytes_in 514547 86211 station_ip 83.122.214.128 86211 port 21 86211 unique_id port 86211 remote_ip 10.8.0.6 86215 username aminvpn 86215 mac 86215 bytes_out 442911 86215 bytes_in 3595018 86215 station_ip 83.122.214.128 86215 port 21 86215 unique_id port 86215 remote_ip 10.8.0.6 86218 username mahbobeh 86218 unique_id port 86218 terminate_cause Lost-Carrier 86218 bytes_out 21165559 86218 bytes_in 411009738 86218 station_ip 83.122.134.177 86218 port 15728912 86218 nas_port_type Virtual 86218 remote_ip 5.5.5.116 86221 username caferibar 86221 unique_id port 86221 terminate_cause User-Request 86221 bytes_out 0 86221 bytes_in 0 86221 station_ip 5.119.71.133 86221 port 15728921 86221 nas_port_type Virtual 86221 remote_ip 5.5.5.111 86222 username zamanialireza 86222 unique_id port 86222 terminate_cause Lost-Carrier 86222 bytes_out 1140264 86222 bytes_in 14706355 86222 station_ip 5.160.114.56 86222 port 15728920 86222 nas_port_type Virtual 86222 remote_ip 5.5.5.112 86223 username majid 86223 unique_id port 86223 terminate_cause User-Request 86223 bytes_out 6568436 86223 bytes_in 159806928 86223 station_ip 86.57.5.6 86223 port 15728913 86223 nas_port_type Virtual 86223 remote_ip 5.5.5.115 86231 port 15728926 86231 nas_port_type Virtual 86231 remote_ip 5.5.5.108 86234 username shokokian 86234 unique_id port 86234 terminate_cause User-Request 86234 bytes_out 297320 86234 bytes_in 1391968 86234 station_ip 83.123.164.172 86234 port 15728641 86234 nas_port_type Virtual 86234 remote_ip 5.5.5.254 86240 username aminvpn 86240 mac 86240 bytes_out 0 86240 bytes_in 0 86240 station_ip 83.122.199.8 86240 port 21 86240 unique_id port 86240 remote_ip 10.8.0.6 86241 username aminvpn 86241 mac 86241 bytes_out 0 86241 bytes_in 0 86241 station_ip 83.122.199.8 86241 port 22 86241 unique_id port 86241 remote_ip 10.8.0.6 86246 username soleymani 86246 unique_id port 86246 terminate_cause Lost-Carrier 86246 bytes_out 182041 86246 bytes_in 1228122 86246 station_ip 5.119.43.29 86246 port 15728649 86246 nas_port_type Virtual 86246 remote_ip 5.5.5.247 86247 username alinezhad 86247 unique_id port 86247 terminate_cause User-Request 86247 bytes_out 0 86247 bytes_in 0 86247 station_ip 83.122.97.226 86247 port 15728654 86247 nas_port_type Virtual 86247 remote_ip 5.5.5.244 86254 username madadi 86254 unique_id port 86254 terminate_cause Lost-Carrier 86254 bytes_out 20491 86254 bytes_in 137619 86254 station_ip 5.119.192.132 86254 port 15728659 86254 nas_port_type Virtual 86254 remote_ip 5.5.5.241 86260 username aminvpn 86260 mac 86260 bytes_out 0 86260 bytes_in 0 86260 station_ip 37.129.10.4 86260 port 21 86260 unique_id port 86260 remote_ip 10.8.0.6 86233 username aminvpn 86233 mac 86233 bytes_out 0 86233 bytes_in 0 86233 station_ip 5.120.143.57 86233 port 21 86233 unique_id port 86233 remote_ip 10.8.0.6 86236 username aminvpn 86236 mac 86236 bytes_out 0 86236 bytes_in 0 86236 station_ip 83.122.199.8 86236 port 21 86236 unique_id port 86236 remote_ip 10.8.0.6 86239 username asadi 86239 unique_id port 86239 terminate_cause User-Request 86239 bytes_out 164827 86239 bytes_in 2001299 86239 station_ip 37.129.13.123 86239 port 15728645 86239 nas_port_type Virtual 86239 remote_ip 5.5.5.251 86242 username zamanialireza 86242 unique_id port 86242 terminate_cause User-Request 86242 bytes_out 11078767 86242 bytes_in 225087786 86242 station_ip 5.119.54.95 86242 port 15728646 86242 nas_port_type Virtual 86242 remote_ip 5.5.5.250 86244 username heydari 86244 unique_id port 86244 terminate_cause User-Request 86244 bytes_out 0 86244 bytes_in 0 86244 station_ip 5.120.103.40 86244 port 15728651 86244 nas_port_type Virtual 86244 remote_ip 5.5.5.246 86250 username zamanialireza 86250 unique_id port 86250 terminate_cause User-Request 86250 bytes_out 8484384 86250 bytes_in 144436490 86250 station_ip 5.119.54.95 86250 port 15728653 86250 nas_port_type Virtual 86250 remote_ip 5.5.5.250 86255 username caferibar 86255 unique_id port 86255 terminate_cause Lost-Carrier 86255 bytes_out 903006 86255 bytes_in 17213024 86255 station_ip 5.119.210.83 86255 port 15728658 86255 nas_port_type Virtual 86255 remote_ip 5.5.5.242 86257 username asadi 86257 unique_id port 86257 terminate_cause User-Request 86257 bytes_out 81721 86257 bytes_in 862571 86257 station_ip 37.129.13.123 86257 port 15728666 86257 nas_port_type Virtual 86257 remote_ip 5.5.5.251 86263 username heydari 86263 unique_id port 86263 terminate_cause Lost-Carrier 86263 bytes_out 228515 86263 bytes_in 2559308 86263 station_ip 5.120.103.40 86263 port 15728655 86263 nas_port_type Virtual 86263 remote_ip 5.5.5.246 86268 username ksrkrgr 86268 unique_id port 86268 terminate_cause User-Request 86268 bytes_out 46795 86268 bytes_in 97788 86268 station_ip 83.122.85.32 86268 port 15728678 86268 nas_port_type Virtual 86268 remote_ip 5.5.5.227 86269 username ksrkrgr 86269 unique_id port 86269 terminate_cause Lost-Carrier 86269 bytes_out 43394 86269 bytes_in 178712 86269 station_ip 2.184.6.91 86269 port 15728677 86269 nas_port_type Virtual 86269 remote_ip 5.5.5.228 86271 username mahbobeh 86271 unique_id port 86271 terminate_cause Lost-Carrier 86271 bytes_out 1024347 86271 bytes_in 16340262 86271 station_ip 83.122.134.177 86271 port 15728664 86271 nas_port_type Virtual 86271 remote_ip 5.5.5.237 86273 username aminvpn 86273 unique_id port 86273 terminate_cause User-Request 86273 bytes_out 9395044 86273 bytes_in 219768786 86273 station_ip 151.238.245.24 86273 port 15728674 86273 nas_port_type Virtual 86273 remote_ip 5.5.5.230 86276 username ksrkrgr 86276 kill_reason Maximum number of concurrent logins reached 86276 unique_id port 86276 bytes_out 0 86276 bytes_in 0 86276 station_ip 83.122.85.32 86276 port 15728688 86276 nas_port_type Virtual 86278 username madadi 86278 unique_id port 86278 terminate_cause Lost-Carrier 86278 bytes_out 40293 86278 bytes_in 157002 86278 station_ip 5.119.5.245 86278 port 15728683 86278 nas_port_type Virtual 86278 remote_ip 5.5.5.224 86280 username mahbobeh 86280 unique_id port 86280 terminate_cause Lost-Carrier 86280 bytes_out 356365 86280 bytes_in 6800954 86280 station_ip 83.122.134.177 86280 port 15728682 86280 nas_port_type Virtual 86280 remote_ip 5.5.5.237 86283 username ahmadipour 86283 unique_id port 86283 terminate_cause Lost-Carrier 86237 unique_id port 86237 terminate_cause User-Request 86237 bytes_out 111013 86237 bytes_in 1676504 86237 station_ip 83.123.164.172 86237 port 15728643 86237 nas_port_type Virtual 86237 remote_ip 5.5.5.254 86243 username zamanialireza 86243 unique_id port 86243 terminate_cause User-Request 86243 bytes_out 1032308 86243 bytes_in 6366270 86243 station_ip 5.119.54.95 86243 port 15728650 86243 nas_port_type Virtual 86243 remote_ip 5.5.5.250 86245 username alinezhad 86245 unique_id port 86245 terminate_cause User-Request 86245 bytes_out 0 86245 bytes_in 0 86245 station_ip 37.129.38.207 86245 port 15728652 86245 nas_port_type Virtual 86245 remote_ip 5.5.5.245 86252 username alinezhad 86252 unique_id port 86252 terminate_cause User-Request 86252 bytes_out 0 86252 bytes_in 0 86252 station_ip 37.129.90.184 86252 port 15728662 86252 nas_port_type Virtual 86252 remote_ip 5.5.5.239 86253 username ahmadi 86253 unique_id port 86253 terminate_cause Lost-Carrier 86253 bytes_out 23767 86253 bytes_in 292549 86253 station_ip 37.129.169.162 86253 port 15728661 86253 nas_port_type Virtual 86253 remote_ip 5.5.5.252 86259 username aminvpn 86259 unique_id port 86259 terminate_cause User-Request 86259 bytes_out 8753121 86259 bytes_in 168907387 86259 station_ip 37.129.10.4 86259 port 15728648 86259 nas_port_type Virtual 86259 remote_ip 5.5.5.248 86261 username madadi 86261 unique_id port 86261 terminate_cause Lost-Carrier 86261 bytes_out 60710 86261 bytes_in 153392 86261 station_ip 5.120.134.196 86261 port 15728665 86261 nas_port_type Virtual 86261 remote_ip 5.5.5.236 86265 username caferibar 86265 unique_id port 86265 terminate_cause User-Request 86265 bytes_out 346275 86265 bytes_in 1153110 86265 station_ip 5.119.138.22 86265 port 15728670 86265 nas_port_type Virtual 86265 remote_ip 5.5.5.234 86266 username alinezhad 86266 unique_id port 86266 terminate_cause User-Request 86266 bytes_out 0 86266 bytes_in 0 86266 station_ip 5.202.19.222 86266 port 15728675 86266 nas_port_type Virtual 86266 remote_ip 5.5.5.229 86275 username ksrkrgr 86275 kill_reason Maximum number of concurrent logins reached 86275 unique_id port 86275 bytes_out 0 86275 bytes_in 0 86275 station_ip 83.122.85.32 86275 port 15728687 86275 nas_port_type Virtual 86292 username mahdixz 86292 unique_id port 86292 terminate_cause User-Request 86292 bytes_out 524641 86292 bytes_in 13189567 86292 station_ip 83.123.4.16 86292 port 15728703 86292 nas_port_type Virtual 86292 remote_ip 5.5.5.214 86294 username asadi 86294 unique_id port 86294 terminate_cause User-Request 86294 bytes_out 56347 86294 bytes_in 200721 86294 station_ip 37.129.13.123 86294 port 15728705 86294 nas_port_type Virtual 86294 remote_ip 5.5.5.251 86305 username sadegh 86305 unique_id port 86305 terminate_cause Lost-Carrier 86305 bytes_out 45142174 86305 bytes_in 861990784 86305 station_ip 5.119.211.45 86305 port 15728671 86305 nas_port_type Virtual 86305 remote_ip 5.5.5.233 86307 username zamanialireza 86307 unique_id port 86307 terminate_cause User-Request 86307 bytes_out 4173755 86307 bytes_in 26539046 86307 station_ip 5.160.113.109 86307 port 15728701 86307 nas_port_type Virtual 86307 remote_ip 5.5.5.215 86309 username ksrkrgr 86309 unique_id port 86309 terminate_cause User-Request 86309 bytes_out 4262722 86309 bytes_in 5658075 86309 station_ip 2.184.6.91 86309 port 15728711 86309 nas_port_type Virtual 86309 remote_ip 5.5.5.226 86316 username forozande 86316 unique_id port 86316 terminate_cause User-Request 86316 bytes_out 170465 86316 bytes_in 4598822 86316 station_ip 113.203.125.74 86316 port 15728724 86316 nas_port_type Virtual 86316 remote_ip 5.5.5.205 86251 port 15728660 86251 nas_port_type Virtual 86251 remote_ip 5.5.5.240 86256 username madadi 86256 unique_id port 86256 terminate_cause Lost-Carrier 86256 bytes_out 23222 86256 bytes_in 136339 86256 station_ip 5.120.140.94 86256 port 15728663 86256 nas_port_type Virtual 86256 remote_ip 5.5.5.238 86258 username asadi 86258 unique_id port 86258 terminate_cause User-Request 86258 bytes_out 7540 86258 bytes_in 19669 86258 station_ip 37.129.13.123 86258 port 15728667 86258 nas_port_type Virtual 86258 remote_ip 5.5.5.251 86262 username caferibar 86262 unique_id port 86262 terminate_cause User-Request 86262 bytes_out 0 86262 bytes_in 0 86262 station_ip 5.119.138.22 86262 port 15728669 86262 nas_port_type Virtual 86262 remote_ip 5.5.5.234 86272 username alinezhad 86272 unique_id port 86272 terminate_cause User-Request 86272 bytes_out 0 86272 bytes_in 0 86272 station_ip 5.202.19.222 86272 port 15728681 86272 nas_port_type Virtual 86272 remote_ip 5.5.5.229 86274 username ksrkrgr 86274 unique_id port 86274 terminate_cause User-Request 86274 bytes_out 0 86274 bytes_in 0 86274 station_ip 2.184.6.91 86274 port 15728685 86274 nas_port_type Virtual 86274 remote_ip 5.5.5.228 86282 username mahdixz 86282 unique_id port 86282 terminate_cause User-Request 86282 bytes_out 539928 86282 bytes_in 10005125 86282 station_ip 151.235.82.71 86282 port 15728691 86282 nas_port_type Virtual 86282 remote_ip 5.5.5.222 86287 username madadi 86287 unique_id port 86287 terminate_cause Lost-Carrier 86287 bytes_out 9638 86287 bytes_in 124314 86287 station_ip 5.120.73.143 86287 port 15728695 86287 nas_port_type Virtual 86287 remote_ip 5.5.5.219 86288 username forozande 86288 unique_id port 86288 terminate_cause User-Request 86288 bytes_out 5769 86288 bytes_in 32960 86288 station_ip 83.123.122.61 86288 port 15728697 86288 nas_port_type Virtual 86288 remote_ip 5.5.5.218 86291 username forozande 86291 unique_id port 86291 terminate_cause User-Request 86291 bytes_out 0 86291 bytes_in 0 86291 station_ip 37.129.169.252 86291 port 15728702 86291 nas_port_type Virtual 86291 remote_ip 5.5.5.216 86297 username ksrkrgr 86297 unique_id port 86297 terminate_cause User-Request 86297 bytes_out 0 86297 bytes_in 0 86297 station_ip 2.184.6.91 86297 port 15728708 86297 nas_port_type Virtual 86297 remote_ip 5.5.5.226 86301 username aminvpn 86301 unique_id port 86301 terminate_cause Lost-Carrier 86301 bytes_out 1805036 86301 bytes_in 16963679 86301 station_ip 5.120.99.29 86301 port 15728706 86301 nas_port_type Virtual 86301 remote_ip 5.5.5.213 86302 username aminvpn 86302 unique_id port 86302 terminate_cause Lost-Carrier 86302 bytes_out 805947 86302 bytes_in 22132706 86302 station_ip 2.183.251.251 86302 port 15728710 86302 nas_port_type Virtual 86302 remote_ip 5.5.5.212 86304 username ahmadi 86304 unique_id port 86304 terminate_cause User-Request 86304 bytes_out 33652 86304 bytes_in 226053 86304 station_ip 83.122.88.99 86304 port 15728716 86304 nas_port_type Virtual 86304 remote_ip 5.5.5.208 86308 username aminvpn 86308 mac 86308 bytes_out 2427583 86308 bytes_in 23308162 86308 station_ip 83.122.192.36 86308 port 21 86308 unique_id port 86308 remote_ip 10.8.0.6 86310 username aminvpn 86310 unique_id port 86310 terminate_cause User-Request 86310 bytes_out 660542 86310 bytes_in 489199 86310 station_ip 83.122.186.41 86310 port 15728717 86310 nas_port_type Virtual 86310 remote_ip 5.5.5.207 86312 username forozande 86312 unique_id port 86312 terminate_cause User-Request 86312 bytes_out 22822 86312 bytes_in 57249 86312 station_ip 113.203.125.74 86312 port 15728720 86312 nas_port_type Virtual 86264 username caferibar 86264 unique_id port 86264 terminate_cause Lost-Carrier 86264 bytes_out 28148 86264 bytes_in 163283 86264 station_ip 5.119.59.254 86264 port 15728668 86264 nas_port_type Virtual 86264 remote_ip 5.5.5.235 86267 username madadi 86267 unique_id port 86267 terminate_cause Lost-Carrier 86267 bytes_out 37719 86267 bytes_in 147767 86267 station_ip 5.120.92.228 86267 port 15728672 86267 nas_port_type Virtual 86267 remote_ip 5.5.5.232 86270 username caferibar 86270 unique_id port 86270 terminate_cause User-Request 86270 bytes_out 141480 86270 bytes_in 484136 86270 station_ip 83.122.196.206 86270 port 15728680 86270 nas_port_type Virtual 86270 remote_ip 5.5.5.225 86277 username ksrkrgr 86277 unique_id port 86277 terminate_cause User-Request 86277 bytes_out 4119818 86277 bytes_in 67897598 86277 station_ip 2.184.6.91 86277 port 15728679 86277 nas_port_type Virtual 86277 remote_ip 5.5.5.226 86279 username zamanialireza 86279 unique_id port 86279 terminate_cause User-Request 86279 bytes_out 844650 86279 bytes_in 16232999 86279 station_ip 83.122.132.131 86279 port 15728689 86279 nas_port_type Virtual 86279 remote_ip 5.5.5.223 86281 username ksrkrgr 86281 unique_id port 86281 terminate_cause Lost-Carrier 86281 bytes_out 289915 86281 bytes_in 3392026 86281 station_ip 2.184.6.91 86281 port 15728686 86281 nas_port_type Virtual 86281 remote_ip 5.5.5.228 86284 username aminvpn 86284 unique_id port 86284 terminate_cause User-Request 86284 bytes_out 1226257 86284 bytes_in 3482015 86284 station_ip 151.238.245.24 86284 port 15728684 86284 nas_port_type Virtual 86284 remote_ip 5.5.5.230 86286 username forozande 86286 unique_id port 86286 terminate_cause User-Request 86286 bytes_out 49957 86286 bytes_in 180892 86286 station_ip 83.123.122.61 86286 port 15728696 86286 nas_port_type Virtual 86286 remote_ip 5.5.5.218 86289 username asadi 86289 unique_id port 86289 terminate_cause User-Request 86289 bytes_out 79212 86289 bytes_in 180122 86289 station_ip 37.129.13.123 86289 port 15728698 86289 nas_port_type Virtual 86289 remote_ip 5.5.5.251 86293 username mahdixz 86293 unique_id port 86293 terminate_cause User-Request 86293 bytes_out 511552 86293 bytes_in 12685504 86293 station_ip 83.123.4.16 86293 port 15728704 86293 nas_port_type Virtual 86293 remote_ip 5.5.5.214 86298 username caferibar 86298 unique_id port 86298 terminate_cause User-Request 86298 bytes_out 0 86298 bytes_in 0 86298 station_ip 89.32.99.187 86298 port 15728713 86298 nas_port_type Virtual 86298 remote_ip 5.5.5.210 86299 username madadi 86299 unique_id port 86299 terminate_cause Lost-Carrier 86299 bytes_out 68630 86299 bytes_in 254761 86299 station_ip 5.120.91.133 86299 port 15728699 86299 nas_port_type Virtual 86299 remote_ip 5.5.5.217 86314 username forozande 86314 unique_id port 86314 terminate_cause User-Request 86314 bytes_out 220 86314 bytes_in 11357 86314 station_ip 113.203.125.74 86314 port 15728721 86314 nas_port_type Virtual 86314 remote_ip 5.5.5.205 86315 username forozande 86315 unique_id port 86315 terminate_cause User-Request 86315 bytes_out 394 86315 bytes_in 8026 86315 station_ip 113.203.125.74 86315 port 15728722 86315 nas_port_type Virtual 86315 remote_ip 5.5.5.205 86317 username forozande 86317 unique_id port 86317 terminate_cause User-Request 86317 bytes_out 13695 86317 bytes_in 35086 86317 station_ip 113.203.125.74 86317 port 15728725 86317 nas_port_type Virtual 86317 remote_ip 5.5.5.205 86319 username forozande 86319 unique_id port 86319 terminate_cause User-Request 86319 bytes_out 0 86319 bytes_in 0 86319 station_ip 113.203.125.74 86319 port 15728727 86319 nas_port_type Virtual 86283 bytes_out 6966159 86283 bytes_in 22471455 86283 station_ip 37.129.52.157 86283 port 15728673 86283 nas_port_type Virtual 86283 remote_ip 5.5.5.231 86285 username ksrkrgr 86285 unique_id port 86285 terminate_cause User-Request 86285 bytes_out 2178810 86285 bytes_in 25990474 86285 station_ip 2.184.6.91 86285 port 15728690 86285 nas_port_type Virtual 86285 remote_ip 5.5.5.226 86290 username forozande 86290 unique_id port 86290 terminate_cause User-Request 86290 bytes_out 23155 86290 bytes_in 30175 86290 station_ip 37.129.169.252 86290 port 15728700 86290 nas_port_type Virtual 86290 remote_ip 5.5.5.216 86295 username mahdixz 86295 unique_id port 86295 terminate_cause User-Request 86295 bytes_out 22755 86295 bytes_in 149000 86295 station_ip 83.123.4.16 86295 port 15728707 86295 nas_port_type Virtual 86295 remote_ip 5.5.5.214 86296 username aminvpn 86296 unique_id port 86296 terminate_cause User-Request 86296 bytes_out 0 86296 bytes_in 0 86296 station_ip 2.183.251.251 86296 port 15728709 86296 nas_port_type Virtual 86296 remote_ip 5.5.5.212 86300 username jamali 86300 unique_id port 86300 terminate_cause User-Request 86300 bytes_out 794470 86300 bytes_in 11786813 86300 station_ip 5.119.222.160 86300 port 15728693 86300 nas_port_type Virtual 86300 remote_ip 5.5.5.221 86303 username caferibar 86303 unique_id port 86303 terminate_cause Lost-Carrier 86303 bytes_out 71279 86303 bytes_in 434736 86303 station_ip 5.119.176.37 86303 port 15728712 86303 nas_port_type Virtual 86303 remote_ip 5.5.5.211 86306 username heydari 86306 unique_id port 86306 terminate_cause Lost-Carrier 86306 bytes_out 13644414 86306 bytes_in 3972484 86306 station_ip 5.120.103.40 86306 port 15728692 86306 nas_port_type Virtual 86306 remote_ip 5.5.5.246 86311 username alinezhad 86311 unique_id port 86311 terminate_cause User-Request 86311 bytes_out 0 86311 bytes_in 0 86311 station_ip 5.202.19.222 86311 port 15728719 86311 nas_port_type Virtual 86311 remote_ip 5.5.5.229 86313 username soleymani 86313 unique_id port 86313 terminate_cause Lost-Carrier 86313 bytes_out 38716 86313 bytes_in 245171 86313 station_ip 5.119.225.149 86313 port 15728718 86313 nas_port_type Virtual 86313 remote_ip 5.5.5.206 86318 username shahnaz 86318 unique_id port 86318 terminate_cause Lost-Carrier 86318 bytes_out 280392 86318 bytes_in 1816147 86318 station_ip 5.119.50.117 86318 port 15728714 86318 nas_port_type Virtual 86318 remote_ip 5.5.5.243 86320 username forozande 86320 kill_reason Maximum check online fails reached 86320 unique_id port 86320 bytes_out 0 86320 bytes_in 0 86320 station_ip 113.203.125.74 86320 port 15728726 86320 nas_port_type Virtual 86322 username forozande 86322 unique_id port 86322 terminate_cause User-Request 86322 bytes_out 139945 86322 bytes_in 2638940 86322 station_ip 113.203.125.74 86322 port 15728729 86322 nas_port_type Virtual 86322 remote_ip 5.5.5.205 86325 username forozande 86325 unique_id port 86325 terminate_cause User-Request 86325 bytes_out 88753 86325 bytes_in 2053809 86325 station_ip 113.203.125.74 86325 port 15728732 86325 nas_port_type Virtual 86325 remote_ip 5.5.5.205 86332 username madadi 86332 unique_id port 86332 terminate_cause User-Request 86332 bytes_out 81147 86332 bytes_in 221310 86332 station_ip 5.120.142.172 86332 port 15728738 86332 nas_port_type Virtual 86332 remote_ip 5.5.5.200 86344 username forozande 86344 unique_id port 86344 terminate_cause User-Request 86344 bytes_out 16471 86344 bytes_in 33882 86344 station_ip 37.129.83.92 86344 port 15728759 86344 nas_port_type Virtual 86344 remote_ip 5.5.5.193 86348 username afarin 86348 unique_id port 86348 terminate_cause Lost-Carrier 86312 remote_ip 5.5.5.205 86329 username soleymani 86329 unique_id port 86329 terminate_cause Lost-Carrier 86329 bytes_out 127812 86329 bytes_in 345481 86329 station_ip 5.119.45.15 86329 port 15728733 86329 nas_port_type Virtual 86329 remote_ip 5.5.5.204 86334 username afarin 86334 unique_id port 86334 terminate_cause Lost-Carrier 86334 bytes_out 1659344 86334 bytes_in 34143592 86334 station_ip 151.238.232.146 86334 port 15728737 86334 nas_port_type Virtual 86334 remote_ip 5.5.5.201 86336 username madadi 86336 unique_id port 86336 terminate_cause User-Request 86336 bytes_out 49653 86336 bytes_in 116744 86336 station_ip 5.120.142.172 86336 port 15728745 86336 nas_port_type Virtual 86336 remote_ip 5.5.5.200 86342 username forozande 86342 unique_id port 86342 terminate_cause User-Request 86342 bytes_out 186472 86342 bytes_in 872888 86342 station_ip 37.129.83.92 86342 port 15728758 86342 nas_port_type Virtual 86342 remote_ip 5.5.5.193 86343 username caferibar 86343 unique_id port 86343 terminate_cause User-Request 86343 bytes_out 2710848 86343 bytes_in 7603743 86343 station_ip 5.119.210.252 86343 port 15728734 86343 nas_port_type Virtual 86343 remote_ip 5.5.5.202 86345 username heydari 86345 unique_id port 86345 terminate_cause Lost-Carrier 86345 bytes_out 477284 86345 bytes_in 8695226 86345 station_ip 5.120.103.40 86345 port 15728715 86345 nas_port_type Virtual 86345 remote_ip 5.5.5.209 86346 username shahrooz 86346 unique_id port 86346 terminate_cause Lost-Carrier 86346 bytes_out 3154235 86346 bytes_in 56023990 86346 station_ip 83.122.2.221 86346 port 15728741 86346 nas_port_type Virtual 86346 remote_ip 5.5.5.220 86356 username forozande 86356 unique_id port 86356 terminate_cause User-Request 86356 bytes_out 118392 86356 bytes_in 219235 86356 station_ip 83.123.204.107 86356 port 15728770 86356 nas_port_type Virtual 86356 remote_ip 5.5.5.187 86357 username forozande 86357 unique_id port 86357 terminate_cause User-Request 86357 bytes_out 0 86357 bytes_in 0 86357 station_ip 83.123.204.107 86357 port 15728771 86357 nas_port_type Virtual 86357 remote_ip 5.5.5.187 86363 username forozande 86363 unique_id port 86363 terminate_cause User-Request 86363 bytes_out 0 86363 bytes_in 0 86363 station_ip 83.123.204.107 86363 port 15728777 86363 nas_port_type Virtual 86363 remote_ip 5.5.5.187 86365 username forozande 86365 unique_id port 86365 terminate_cause User-Request 86365 bytes_out 0 86365 bytes_in 0 86365 station_ip 83.123.204.107 86365 port 15728779 86365 nas_port_type Virtual 86365 remote_ip 5.5.5.187 86367 username shojaei 86367 unique_id port 86367 terminate_cause User-Request 86367 bytes_out 4714 86367 bytes_in 20511 86367 station_ip 37.129.22.240 86367 port 15728781 86367 nas_port_type Virtual 86367 remote_ip 5.5.5.186 86388 username forozande 86388 unique_id port 86388 terminate_cause User-Request 86388 bytes_out 312 86388 bytes_in 10024 86388 station_ip 83.122.148.27 86388 port 15728798 86388 nas_port_type Virtual 86388 remote_ip 5.5.5.183 86397 username arabpour 86397 unique_id port 86397 terminate_cause User-Request 86397 bytes_out 0 86397 bytes_in 0 86397 station_ip 37.129.67.100 86397 port 15728812 86397 nas_port_type Virtual 86397 remote_ip 5.5.5.179 86398 username arabpour 86398 unique_id port 86398 terminate_cause User-Request 86398 bytes_out 0 86398 bytes_in 0 86398 station_ip 37.129.67.100 86398 port 15728814 86398 nas_port_type Virtual 86398 remote_ip 5.5.5.179 86400 username arabpour 86400 unique_id port 86400 terminate_cause User-Request 86400 bytes_out 97837 86400 bytes_in 379459 86400 station_ip 37.129.67.100 86400 port 15728815 86319 remote_ip 5.5.5.205 86321 username forozande 86321 unique_id port 86321 terminate_cause User-Request 86321 bytes_out 165101 86321 bytes_in 5219180 86321 station_ip 113.203.125.74 86321 port 15728728 86321 nas_port_type Virtual 86321 remote_ip 5.5.5.205 86323 username asadi 86323 unique_id port 86323 terminate_cause User-Request 86323 bytes_out 284693 86323 bytes_in 3687338 86323 station_ip 37.129.13.123 86323 port 15728730 86323 nas_port_type Virtual 86323 remote_ip 5.5.5.251 86324 username forozande 86324 unique_id port 86324 terminate_cause User-Request 86324 bytes_out 0 86324 bytes_in 0 86324 station_ip 113.203.125.74 86324 port 15728731 86324 nas_port_type Virtual 86324 remote_ip 5.5.5.205 86326 username zamanialireza 86326 unique_id port 86326 terminate_cause User-Request 86326 bytes_out 103844 86326 bytes_in 531051 86326 station_ip 37.129.42.214 86326 port 15728735 86326 nas_port_type Virtual 86326 remote_ip 5.5.5.203 86327 username asadi 86327 unique_id port 86327 terminate_cause User-Request 86327 bytes_out 194035 86327 bytes_in 4406709 86327 station_ip 37.129.13.123 86327 port 15728736 86327 nas_port_type Virtual 86327 remote_ip 5.5.5.251 86330 username shokokian 86330 unique_id port 86330 terminate_cause User-Request 86330 bytes_out 75128 86330 bytes_in 860585 86330 station_ip 83.122.105.27 86330 port 15728739 86330 nas_port_type Virtual 86330 remote_ip 5.5.5.199 86331 username ahmadi 86331 unique_id port 86331 terminate_cause User-Request 86331 bytes_out 0 86331 bytes_in 0 86331 station_ip 83.122.99.203 86331 port 15728744 86331 nas_port_type Virtual 86331 remote_ip 5.5.5.196 86333 username heydarizadeh 86333 unique_id port 86333 terminate_cause Lost-Carrier 86333 bytes_out 2016200 86333 bytes_in 68443000 86333 station_ip 5.119.53.126 86333 port 15728740 86333 nas_port_type Virtual 86333 remote_ip 5.5.5.198 86338 username alinezhad 86338 unique_id port 86338 terminate_cause User-Request 86338 bytes_out 17760 86338 bytes_in 72847 86338 station_ip 5.202.19.222 86338 port 15728748 86338 nas_port_type Virtual 86338 remote_ip 5.5.5.229 86339 username mahbobeh 86339 unique_id port 86339 terminate_cause Lost-Carrier 86339 bytes_out 691275 86339 bytes_in 6260813 86339 station_ip 83.122.134.177 86339 port 15728723 86339 nas_port_type Virtual 86339 remote_ip 5.5.5.237 86351 username alinezhad 86351 unique_id port 86351 terminate_cause User-Request 86351 bytes_out 0 86351 bytes_in 0 86351 station_ip 5.202.19.222 86351 port 15728766 86351 nas_port_type Virtual 86351 remote_ip 5.5.5.229 86354 username afarin 86354 unique_id port 86354 terminate_cause User-Request 86354 bytes_out 1218276 86354 bytes_in 13530945 86354 station_ip 151.238.230.86 86354 port 15728760 86354 nas_port_type Virtual 86354 remote_ip 5.5.5.192 86355 username aminvpn 86355 unique_id port 86355 terminate_cause User-Request 86355 bytes_out 97491 86355 bytes_in 315238 86355 station_ip 5.160.114.250 86355 port 15728768 86355 nas_port_type Virtual 86355 remote_ip 5.5.5.188 86360 username shahnaz 86360 unique_id port 86360 terminate_cause User-Request 86360 bytes_out 4199386 86360 bytes_in 76702185 86360 station_ip 5.119.50.117 86360 port 15728752 86360 nas_port_type Virtual 86360 remote_ip 5.5.5.243 86361 username forozande 86361 unique_id port 86361 terminate_cause User-Request 86361 bytes_out 230 86361 bytes_in 11549 86361 station_ip 83.123.204.107 86361 port 15728775 86361 nas_port_type Virtual 86361 remote_ip 5.5.5.187 86364 username forozande 86364 unique_id port 86364 terminate_cause User-Request 86364 bytes_out 0 86364 bytes_in 0 86364 station_ip 83.123.204.107 86364 port 15728778 86328 username shahrooz 86328 unique_id port 86328 terminate_cause Lost-Carrier 86328 bytes_out 17661616 86328 bytes_in 382236886 86328 station_ip 83.122.2.221 86328 port 15728694 86328 nas_port_type Virtual 86328 remote_ip 5.5.5.220 86335 username alinezhad 86335 unique_id port 86335 terminate_cause User-Request 86335 bytes_out 476486 86335 bytes_in 7174647 86335 station_ip 5.202.19.222 86335 port 15728742 86335 nas_port_type Virtual 86335 remote_ip 5.5.5.229 86337 username alinezhad 86337 unique_id port 86337 terminate_cause User-Request 86337 bytes_out 0 86337 bytes_in 0 86337 station_ip 5.202.19.222 86337 port 15728747 86337 nas_port_type Virtual 86337 remote_ip 5.5.5.229 86340 username alinezhad 86340 unique_id port 86340 terminate_cause User-Request 86340 bytes_out 30862 86340 bytes_in 458497 86340 station_ip 5.202.19.222 86340 port 15728750 86340 nas_port_type Virtual 86340 remote_ip 5.5.5.229 86341 username alinezhad 86341 unique_id port 86341 terminate_cause User-Request 86341 bytes_out 0 86341 bytes_in 0 86341 station_ip 5.202.19.222 86341 port 15728753 86341 nas_port_type Virtual 86341 remote_ip 5.5.5.229 86347 username forozande 86347 unique_id port 86347 terminate_cause User-Request 86347 bytes_out 39239 86347 bytes_in 324784 86347 station_ip 37.129.83.92 86347 port 15728761 86347 nas_port_type Virtual 86347 remote_ip 5.5.5.193 86349 username forozande 86349 unique_id port 86349 terminate_cause User-Request 86349 bytes_out 0 86349 bytes_in 0 86349 station_ip 37.129.83.92 86349 port 15728762 86349 nas_port_type Virtual 86349 remote_ip 5.5.5.193 86350 username heydarizadeh 86350 unique_id port 86350 terminate_cause Lost-Carrier 86350 bytes_out 485763 86350 bytes_in 7558961 86350 station_ip 5.119.177.36 86350 port 15728751 86350 nas_port_type Virtual 86350 remote_ip 5.5.5.194 86352 username zamanialireza 86352 unique_id port 86352 terminate_cause User-Request 86352 bytes_out 1047504 86352 bytes_in 1598455 86352 station_ip 37.129.144.100 86352 port 15728763 86352 nas_port_type Virtual 86352 remote_ip 5.5.5.191 86353 username aminvpn 86353 unique_id port 86353 terminate_cause Lost-Carrier 86353 bytes_out 402612 86353 bytes_in 6954044 86353 station_ip 5.119.225.87 86353 port 15728767 86353 nas_port_type Virtual 86353 remote_ip 5.5.5.189 86358 username forozande 86358 unique_id port 86358 terminate_cause User-Request 86358 bytes_out 323 86358 bytes_in 11808 86358 station_ip 83.123.204.107 86358 port 15728772 86358 nas_port_type Virtual 86358 remote_ip 5.5.5.187 86366 username forozande 86366 unique_id port 86366 terminate_cause User-Request 86366 bytes_out 9768 86366 bytes_in 19529 86366 station_ip 83.123.204.107 86366 port 15728780 86366 nas_port_type Virtual 86366 remote_ip 5.5.5.187 86369 username forozande 86369 unique_id port 86369 terminate_cause User-Request 86369 bytes_out 39234 86369 bytes_in 742743 86369 station_ip 83.123.204.107 86369 port 15728782 86369 nas_port_type Virtual 86369 remote_ip 5.5.5.187 86371 username amirabbas 86371 unique_id port 86371 terminate_cause User-Request 86371 bytes_out 14009726 86371 bytes_in 320383715 86371 station_ip 31.56.222.139 86371 port 15728764 86371 nas_port_type Virtual 86371 remote_ip 5.5.5.190 86372 username alinezhad 86372 unique_id port 86372 terminate_cause User-Request 86372 bytes_out 0 86372 bytes_in 0 86372 station_ip 5.202.19.222 86372 port 15728784 86372 nas_port_type Virtual 86372 remote_ip 5.5.5.229 86375 username aminvpn 86375 mac 86375 bytes_out 0 86375 bytes_in 0 86375 station_ip 83.122.192.36 86375 port 21 86375 unique_id port 86375 remote_ip 10.8.0.6 86377 username aminvpn 86348 bytes_out 1648012 86348 bytes_in 18990763 86348 station_ip 151.238.234.224 86348 port 15728746 86348 nas_port_type Virtual 86348 remote_ip 5.5.5.195 86359 username forozande 86359 unique_id port 86359 terminate_cause User-Request 86359 bytes_out 27535 86359 bytes_in 137987 86359 station_ip 83.123.204.107 86359 port 15728774 86359 nas_port_type Virtual 86359 remote_ip 5.5.5.187 86362 username forozande 86362 unique_id port 86362 terminate_cause User-Request 86362 bytes_out 22815 86362 bytes_in 57853 86362 station_ip 83.123.204.107 86362 port 15728776 86362 nas_port_type Virtual 86362 remote_ip 5.5.5.187 86370 username mahbobeh 86370 unique_id port 86370 terminate_cause Lost-Carrier 86370 bytes_out 7786201 86370 bytes_in 142955123 86370 station_ip 83.122.134.177 86370 port 15728754 86370 nas_port_type Virtual 86370 remote_ip 5.5.5.237 86374 username caferibar 86374 unique_id port 86374 terminate_cause User-Request 86374 bytes_out 272689 86374 bytes_in 578791 86374 station_ip 5.119.210.252 86374 port 15728783 86374 nas_port_type Virtual 86374 remote_ip 5.5.5.202 86376 username sadegh 86376 unique_id port 86376 terminate_cause User-Request 86376 bytes_out 30956994 86376 bytes_in 557133694 86376 station_ip 5.119.96.249 86376 port 15728743 86376 nas_port_type Virtual 86376 remote_ip 5.5.5.197 86380 username alinezhad 86380 unique_id port 86380 terminate_cause User-Request 86380 bytes_out 0 86380 bytes_in 0 86380 station_ip 5.202.19.222 86380 port 15728789 86380 nas_port_type Virtual 86380 remote_ip 5.5.5.229 86384 username forozande 86384 unique_id port 86384 terminate_cause User-Request 86384 bytes_out 90762 86384 bytes_in 173536 86384 station_ip 83.122.148.27 86384 port 15728794 86384 nas_port_type Virtual 86384 remote_ip 5.5.5.183 86386 username forozande 86386 unique_id port 86386 terminate_cause User-Request 86386 bytes_out 252 86386 bytes_in 11516 86386 station_ip 83.122.148.27 86386 port 15728795 86386 nas_port_type Virtual 86386 remote_ip 5.5.5.183 86391 username forozande 86391 unique_id port 86391 terminate_cause User-Request 86391 bytes_out 48921 86391 bytes_in 282541 86391 station_ip 83.122.148.27 86391 port 15728803 86391 nas_port_type Virtual 86391 remote_ip 5.5.5.183 86392 username forozande 86392 unique_id port 86392 terminate_cause User-Request 86392 bytes_out 0 86392 bytes_in 0 86392 station_ip 83.122.148.27 86392 port 15728804 86392 nas_port_type Virtual 86392 remote_ip 5.5.5.183 86396 username forozande 86396 unique_id port 86396 terminate_cause User-Request 86396 bytes_out 14549 86396 bytes_in 44129 86396 station_ip 83.122.148.27 86396 port 15728811 86396 nas_port_type Virtual 86396 remote_ip 5.5.5.183 86412 username asadi 86412 unique_id port 86412 terminate_cause User-Request 86412 bytes_out 384369 86412 bytes_in 11094308 86412 station_ip 37.129.78.21 86412 port 15728823 86412 nas_port_type Virtual 86412 remote_ip 5.5.5.176 86416 username soleymani 86416 unique_id port 86416 terminate_cause Lost-Carrier 86416 bytes_out 32064 86416 bytes_in 211312 86416 station_ip 5.119.48.5 86416 port 15728827 86416 nas_port_type Virtual 86416 remote_ip 5.5.5.172 86420 username forozande 86420 unique_id port 86420 terminate_cause User-Request 86420 bytes_out 31257 86420 bytes_in 33688 86420 station_ip 83.122.149.250 86420 port 15728832 86420 nas_port_type Virtual 86420 remote_ip 5.5.5.169 86428 username aminvpn 86428 unique_id port 86428 terminate_cause User-Request 86428 bytes_out 748654 86428 bytes_in 7918457 86428 station_ip 83.122.207.153 86428 port 15728828 86428 nas_port_type Virtual 86428 remote_ip 5.5.5.171 86430 username aminvpn 86430 mac 86364 nas_port_type Virtual 86364 remote_ip 5.5.5.187 86368 username madadi 86368 unique_id port 86368 terminate_cause Lost-Carrier 86368 bytes_out 382440 86368 bytes_in 1250875 86368 station_ip 5.120.142.172 86368 port 15728749 86368 nas_port_type Virtual 86368 remote_ip 5.5.5.200 86373 username ksrkrgr 86373 unique_id port 86373 terminate_cause User-Request 86373 bytes_out 4995707 86373 bytes_in 11651641 86373 station_ip 2.184.6.91 86373 port 15728765 86373 nas_port_type Virtual 86373 remote_ip 5.5.5.226 86383 username forozande 86383 unique_id port 86383 terminate_cause User-Request 86383 bytes_out 0 86383 bytes_in 0 86383 station_ip 83.122.148.27 86383 port 15728793 86383 nas_port_type Virtual 86383 remote_ip 5.5.5.183 86387 username forozande 86387 unique_id port 86387 terminate_cause User-Request 86387 bytes_out 0 86387 bytes_in 0 86387 station_ip 83.122.148.27 86387 port 15728797 86387 nas_port_type Virtual 86387 remote_ip 5.5.5.183 86389 username forozande 86389 unique_id port 86389 terminate_cause User-Request 86389 bytes_out 13115 86389 bytes_in 31619 86389 station_ip 83.122.148.27 86389 port 15728800 86389 nas_port_type Virtual 86389 remote_ip 5.5.5.183 86390 username forozande 86390 unique_id port 86390 terminate_cause User-Request 86390 bytes_out 0 86390 bytes_in 0 86390 station_ip 83.122.148.27 86390 port 15728801 86390 nas_port_type Virtual 86390 remote_ip 5.5.5.183 86393 username forozande 86393 unique_id port 86393 terminate_cause User-Request 86393 bytes_out 26505 86393 bytes_in 59429 86393 station_ip 83.122.148.27 86393 port 15728808 86393 nas_port_type Virtual 86393 remote_ip 5.5.5.183 86399 username shahrooz 86399 unique_id port 86399 terminate_cause Lost-Carrier 86399 bytes_out 61891 86399 bytes_in 955234 86399 station_ip 83.122.2.221 86399 port 15728813 86399 nas_port_type Virtual 86399 remote_ip 5.5.5.220 86401 username madadi 86401 unique_id port 86401 terminate_cause Lost-Carrier 86401 bytes_out 118161 86401 bytes_in 199137 86401 station_ip 5.120.183.22 86401 port 15728805 86401 nas_port_type Virtual 86401 remote_ip 5.5.5.181 86402 username mahbobeh 86402 unique_id port 86402 terminate_cause Lost-Carrier 86402 bytes_out 8950776 86402 bytes_in 176467337 86402 station_ip 83.122.134.177 86402 port 15728785 86402 nas_port_type Virtual 86402 remote_ip 5.5.5.237 86404 username forozande 86404 unique_id port 86404 terminate_cause User-Request 86404 bytes_out 30691 86404 bytes_in 27253 86404 station_ip 83.123.141.251 86404 port 15728818 86404 nas_port_type Virtual 86404 remote_ip 5.5.5.177 86405 username sadegh 86405 unique_id port 86405 terminate_cause User-Request 86405 bytes_out 15414397 86405 bytes_in 367466169 86405 station_ip 5.119.96.249 86405 port 15728792 86405 nas_port_type Virtual 86405 remote_ip 5.5.5.197 86406 username forozande 86406 unique_id port 86406 terminate_cause User-Request 86406 bytes_out 18516 86406 bytes_in 25879 86406 station_ip 83.123.141.251 86406 port 15728819 86406 nas_port_type Virtual 86406 remote_ip 5.5.5.177 86410 username forozande 86410 unique_id port 86410 terminate_cause User-Request 86410 bytes_out 24104 86410 bytes_in 70237 86410 station_ip 83.123.121.29 86410 port 15728822 86410 nas_port_type Virtual 86410 remote_ip 5.5.5.174 86413 username aminvpn 86413 mac 86413 bytes_out 462811 86413 bytes_in 2176958 86413 station_ip 83.122.198.249 86413 port 21 86413 unique_id port 86413 remote_ip 10.8.0.6 86419 username asadi 86419 unique_id port 86419 terminate_cause User-Request 86419 bytes_out 169605 86419 bytes_in 6582128 86419 station_ip 37.129.78.21 86419 port 15728831 86377 mac 86377 bytes_out 0 86377 bytes_in 0 86377 station_ip 83.122.192.36 86377 port 22 86377 unique_id port 86377 remote_ip 10.8.0.6 86378 username shahnaz 86378 unique_id port 86378 terminate_cause User-Request 86378 bytes_out 2700508 86378 bytes_in 8687288 86378 station_ip 5.119.50.117 86378 port 15728787 86378 nas_port_type Virtual 86378 remote_ip 5.5.5.243 86379 username zamanialireza 86379 unique_id port 86379 terminate_cause User-Request 86379 bytes_out 0 86379 bytes_in 0 86379 station_ip 37.129.144.100 86379 port 15728788 86379 nas_port_type Virtual 86379 remote_ip 5.5.5.191 86381 username amirabbas 86381 unique_id port 86381 terminate_cause User-Request 86381 bytes_out 7866431 86381 bytes_in 214091755 86381 station_ip 31.56.222.139 86381 port 15728786 86381 nas_port_type Virtual 86381 remote_ip 5.5.5.190 86382 username caferibar 86382 unique_id port 86382 terminate_cause Lost-Carrier 86382 bytes_out 2515626 86382 bytes_in 50090195 86382 station_ip 5.119.183.48 86382 port 15728790 86382 nas_port_type Virtual 86382 remote_ip 5.5.5.185 86385 username soleymani 86385 unique_id port 86385 terminate_cause Lost-Carrier 86385 bytes_out 99169 86385 bytes_in 848250 86385 station_ip 5.119.209.147 86385 port 15728791 86385 nas_port_type Virtual 86385 remote_ip 5.5.5.184 86394 username ahmadi 86394 unique_id port 86394 terminate_cause User-Request 86394 bytes_out 32531 86394 bytes_in 123579 86394 station_ip 83.122.80.215 86394 port 15728807 86394 nas_port_type Virtual 86394 remote_ip 5.5.5.180 86395 username ahmadi 86395 unique_id port 86395 terminate_cause User-Request 86395 bytes_out 383763 86395 bytes_in 110178 86395 station_ip 83.122.80.215 86395 port 15728810 86395 nas_port_type Virtual 86395 remote_ip 5.5.5.180 86407 username asadi 86407 unique_id port 86407 terminate_cause User-Request 86407 bytes_out 257013 86407 bytes_in 5347801 86407 station_ip 37.129.78.21 86407 port 15728820 86407 nas_port_type Virtual 86407 remote_ip 5.5.5.176 86408 username madadi 86408 unique_id port 86408 terminate_cause Lost-Carrier 86408 bytes_out 132928 86408 bytes_in 265970 86408 station_ip 5.120.59.199 86408 port 15728816 86408 nas_port_type Virtual 86408 remote_ip 5.5.5.178 86411 username amin.insta01 86411 kill_reason Relative expiration date has reached 86411 unique_id port 86411 bytes_out 0 86411 bytes_in 0 86411 station_ip 5.119.129.21 86411 port 15728824 86411 nas_port_type Virtual 86415 username abdilahyar 86415 unique_id port 86415 terminate_cause Lost-Carrier 86415 bytes_out 49998012 86415 bytes_in 150871427 86415 station_ip 5.120.136.245 86415 port 15728647 86415 nas_port_type Virtual 86415 remote_ip 5.5.5.249 86418 username asadi 86418 unique_id port 86418 terminate_cause User-Request 86418 bytes_out 58311 86418 bytes_in 532919 86418 station_ip 37.129.78.21 86418 port 15728830 86418 nas_port_type Virtual 86418 remote_ip 5.5.5.176 86423 username forozande 86423 unique_id port 86423 terminate_cause User-Request 86423 bytes_out 4277 86423 bytes_in 19345 86423 station_ip 83.122.138.147 86423 port 15728835 86423 nas_port_type Virtual 86423 remote_ip 5.5.5.167 86425 username asadi 86425 unique_id port 86425 terminate_cause User-Request 86425 bytes_out 38512 86425 bytes_in 251752 86425 station_ip 37.129.78.21 86425 port 15728838 86425 nas_port_type Virtual 86425 remote_ip 5.5.5.176 86433 username forozande 86433 unique_id port 86433 terminate_cause User-Request 86433 bytes_out 58885 86433 bytes_in 773276 86433 station_ip 37.129.32.61 86433 port 15728841 86433 nas_port_type Virtual 86433 remote_ip 5.5.5.165 86439 username caferibar 86439 unique_id port 86400 nas_port_type Virtual 86400 remote_ip 5.5.5.179 86403 username forozande 86403 unique_id port 86403 terminate_cause User-Request 86403 bytes_out 31651 86403 bytes_in 67259 86403 station_ip 83.123.141.251 86403 port 15728817 86403 nas_port_type Virtual 86403 remote_ip 5.5.5.177 86409 username zamanialireza 86409 unique_id port 86409 terminate_cause User-Request 86409 bytes_out 105578 86409 bytes_in 318546 86409 station_ip 83.122.127.156 86409 port 15728821 86409 nas_port_type Virtual 86409 remote_ip 5.5.5.175 86414 username shojaei 86414 unique_id port 86414 terminate_cause User-Request 86414 bytes_out 17148 86414 bytes_in 37683 86414 station_ip 37.129.91.131 86414 port 15728826 86414 nas_port_type Virtual 86414 remote_ip 5.5.5.173 86417 username forozande 86417 unique_id port 86417 terminate_cause User-Request 86417 bytes_out 74417 86417 bytes_in 697114 86417 station_ip 83.123.132.215 86417 port 15728829 86417 nas_port_type Virtual 86417 remote_ip 5.5.5.170 86422 username asadi 86422 unique_id port 86422 terminate_cause User-Request 86422 bytes_out 163556 86422 bytes_in 4932538 86422 station_ip 37.129.78.21 86422 port 15728834 86422 nas_port_type Virtual 86422 remote_ip 5.5.5.176 86426 username heydari 86426 unique_id port 86426 terminate_cause Lost-Carrier 86426 bytes_out 880933 86426 bytes_in 11123404 86426 station_ip 5.120.103.40 86426 port 15728769 86426 nas_port_type Virtual 86426 remote_ip 5.5.5.209 86429 username asadi 86429 unique_id port 86429 terminate_cause User-Request 86429 bytes_out 17591 86429 bytes_in 59431 86429 station_ip 37.129.78.21 86429 port 15728839 86429 nas_port_type Virtual 86429 remote_ip 5.5.5.176 86434 username mahbobeh 86434 unique_id port 86434 terminate_cause Lost-Carrier 86434 bytes_out 158673 86434 bytes_in 1790427 86434 station_ip 83.122.134.177 86434 port 15728825 86434 nas_port_type Virtual 86434 remote_ip 5.5.5.237 86438 username caferibar 86438 unique_id port 86438 terminate_cause User-Request 86438 bytes_out 0 86438 bytes_in 0 86438 station_ip 5.120.42.140 86438 port 15728844 86438 nas_port_type Virtual 86438 remote_ip 5.5.5.163 86444 username forozande 86444 unique_id port 86444 terminate_cause User-Request 86444 bytes_out 22629 86444 bytes_in 266094 86444 station_ip 83.122.132.206 86444 port 15728852 86444 nas_port_type Virtual 86444 remote_ip 5.5.5.161 86446 username heydari 86446 unique_id port 86446 terminate_cause Lost-Carrier 86446 bytes_out 171332 86446 bytes_in 814427 86446 station_ip 5.120.103.40 86446 port 15728847 86446 nas_port_type Virtual 86446 remote_ip 5.5.5.209 86450 username caferibar 86450 unique_id port 86450 terminate_cause User-Request 86450 bytes_out 12226110 86450 bytes_in 421001723 86450 station_ip 5.120.56.230 86450 port 15728861 86450 nas_port_type Virtual 86450 remote_ip 5.5.5.158 86455 username asadi 86455 unique_id port 86455 terminate_cause User-Request 86455 bytes_out 52835 86455 bytes_in 126122 86455 station_ip 37.129.78.21 86455 port 15728870 86455 nas_port_type Virtual 86455 remote_ip 5.5.5.176 86457 username asadi 86457 unique_id port 86457 terminate_cause User-Request 86457 bytes_out 0 86457 bytes_in 0 86457 station_ip 37.129.78.21 86457 port 15728872 86457 nas_port_type Virtual 86457 remote_ip 5.5.5.176 86462 username asadi 86462 unique_id port 86462 terminate_cause User-Request 86462 bytes_out 126552 86462 bytes_in 6234963 86462 station_ip 37.129.157.240 86462 port 15728876 86462 nas_port_type Virtual 86462 remote_ip 5.5.5.153 86465 username asadi 86465 unique_id port 86465 terminate_cause User-Request 86465 bytes_out 281077 86465 bytes_in 3566649 86465 station_ip 37.129.157.240 86419 nas_port_type Virtual 86419 remote_ip 5.5.5.176 86421 username ksrkrgr 86421 unique_id port 86421 terminate_cause User-Request 86421 bytes_out 16852 86421 bytes_in 52372 86421 station_ip 83.122.8.76 86421 port 15728833 86421 nas_port_type Virtual 86421 remote_ip 5.5.5.168 86424 username asadi 86424 unique_id port 86424 terminate_cause User-Request 86424 bytes_out 87057 86424 bytes_in 947961 86424 station_ip 37.129.78.21 86424 port 15728837 86424 nas_port_type Virtual 86424 remote_ip 5.5.5.176 86427 username aminvpn 86427 mac 86427 bytes_out 0 86427 bytes_in 0 86427 station_ip 83.122.207.153 86427 port 21 86427 unique_id port 86427 remote_ip 10.8.0.6 86431 username farhad 86431 unique_id port 86431 terminate_cause Lost-Carrier 86431 bytes_out 12422577 86431 bytes_in 196132741 86431 station_ip 5.120.97.220 86431 port 15728799 86431 nas_port_type Virtual 86431 remote_ip 5.5.5.182 86436 username aminvpn 86436 unique_id port 86436 terminate_cause Lost-Carrier 86436 bytes_out 200921 86436 bytes_in 1430898 86436 station_ip 5.119.194.136 86436 port 15728843 86436 nas_port_type Virtual 86436 remote_ip 5.5.5.164 86441 username forozande 86441 unique_id port 86441 terminate_cause User-Request 86441 bytes_out 29470 86441 bytes_in 105565 86441 station_ip 83.122.132.206 86441 port 15728850 86441 nas_port_type Virtual 86441 remote_ip 5.5.5.161 86445 username shahrooz 86445 unique_id port 86445 terminate_cause Lost-Carrier 86445 bytes_out 1325148 86445 bytes_in 38623269 86445 station_ip 83.122.2.221 86445 port 15728851 86445 nas_port_type Virtual 86445 remote_ip 5.5.5.220 86448 username madadi 86448 unique_id port 86448 terminate_cause Lost-Carrier 86448 bytes_out 1072282 86448 bytes_in 900730 86448 station_ip 5.119.134.180 86448 port 15728854 86448 nas_port_type Virtual 86448 remote_ip 5.5.5.160 86451 username soleymani 86451 unique_id port 86451 terminate_cause Lost-Carrier 86451 bytes_out 56729 86451 bytes_in 457530 86451 station_ip 5.119.103.218 86451 port 15728865 86451 nas_port_type Virtual 86451 remote_ip 5.5.5.155 86453 username asadi 86453 unique_id port 86453 terminate_cause User-Request 86453 bytes_out 108772 86453 bytes_in 2291771 86453 station_ip 37.129.78.21 86453 port 15728868 86453 nas_port_type Virtual 86453 remote_ip 5.5.5.176 86458 username asadi 86458 unique_id port 86458 terminate_cause User-Request 86458 bytes_out 67404 86458 bytes_in 699790 86458 station_ip 37.129.78.21 86458 port 15728873 86458 nas_port_type Virtual 86458 remote_ip 5.5.5.176 86464 username alinezhad 86464 unique_id port 86464 terminate_cause User-Request 86464 bytes_out 13303988 86464 bytes_in 2010545 86464 station_ip 5.202.19.222 86464 port 15728849 86464 nas_port_type Virtual 86464 remote_ip 5.5.5.229 86468 username aminvpn 86468 mac 86468 bytes_out 0 86468 bytes_in 0 86468 station_ip 151.238.252.211 86468 port 21 86468 unique_id port 86468 remote_ip 10.8.0.6 86472 username aminvpn 86472 mac 86472 bytes_out 0 86472 bytes_in 0 86472 station_ip 83.122.189.120 86472 port 22 86472 unique_id port 86472 remote_ip 10.8.0.6 86473 username aminvpn 86473 mac 86473 bytes_out 0 86473 bytes_in 0 86473 station_ip 83.122.242.103 86473 port 21 86473 unique_id port 86473 remote_ip 10.8.0.6 86479 username asadi 86479 unique_id port 86479 terminate_cause User-Request 86479 bytes_out 43195 86479 bytes_in 173617 86479 station_ip 83.122.154.249 86479 port 15728886 86479 nas_port_type Virtual 86479 remote_ip 5.5.5.152 86482 username aminvpn 86482 mac 86482 bytes_out 0 86482 bytes_in 0 86482 station_ip 83.122.242.103 86430 bytes_out 0 86430 bytes_in 0 86430 station_ip 83.122.207.153 86430 port 21 86430 unique_id port 86430 remote_ip 10.8.0.6 86432 username caferibar 86432 unique_id port 86432 terminate_cause User-Request 86432 bytes_out 915727 86432 bytes_in 12311357 86432 station_ip 5.200.127.21 86432 port 15728836 86432 nas_port_type Virtual 86432 remote_ip 5.5.5.166 86435 username asadi 86435 unique_id port 86435 terminate_cause User-Request 86435 bytes_out 87809 86435 bytes_in 1467948 86435 station_ip 37.129.78.21 86435 port 15728842 86435 nas_port_type Virtual 86435 remote_ip 5.5.5.176 86437 username amirabbas 86437 unique_id port 86437 terminate_cause User-Request 86437 bytes_out 4989616 86437 bytes_in 109207042 86437 station_ip 31.56.222.139 86437 port 15728840 86437 nas_port_type Virtual 86437 remote_ip 5.5.5.190 86447 username zamanialireza 86447 unique_id port 86447 terminate_cause User-Request 86447 bytes_out 0 86447 bytes_in 0 86447 station_ip 94.183.213.166 86447 port 15728863 86447 nas_port_type Virtual 86447 remote_ip 5.5.5.156 86449 username asadi 86449 unique_id port 86449 terminate_cause User-Request 86449 bytes_out 110003 86449 bytes_in 420056 86449 station_ip 37.129.78.21 86449 port 15728866 86449 nas_port_type Virtual 86449 remote_ip 5.5.5.176 86452 username aminvpn 86452 unique_id port 86452 terminate_cause Lost-Carrier 86452 bytes_out 1267321 86452 bytes_in 13097219 86452 station_ip 5.119.58.237 86452 port 15728862 86452 nas_port_type Virtual 86452 remote_ip 5.5.5.157 86454 username asadi 86454 unique_id port 86454 terminate_cause User-Request 86454 bytes_out 48655 86454 bytes_in 162236 86454 station_ip 37.129.78.21 86454 port 15728869 86454 nas_port_type Virtual 86454 remote_ip 5.5.5.176 86456 username asadi 86456 unique_id port 86456 terminate_cause User-Request 86456 bytes_out 41501 86456 bytes_in 218645 86456 station_ip 37.129.78.21 86456 port 15728871 86456 nas_port_type Virtual 86456 remote_ip 5.5.5.176 86459 username asadi 86459 unique_id port 86459 terminate_cause User-Request 86459 bytes_out 25577 86459 bytes_in 63614 86459 station_ip 37.129.78.21 86459 port 15728874 86459 nas_port_type Virtual 86459 remote_ip 5.5.5.176 86461 username caferibar 86461 unique_id port 86461 terminate_cause Lost-Carrier 86461 bytes_out 1247305 86461 bytes_in 47137737 86461 station_ip 31.57.131.11 86461 port 15728867 86461 nas_port_type Virtual 86461 remote_ip 5.5.5.154 86469 username aminvpn 86469 mac 86469 bytes_out 0 86469 bytes_in 0 86469 station_ip 83.122.189.120 86469 port 22 86469 unique_id port 86469 remote_ip 10.8.0.6 86474 username aminvpn 86474 mac 86474 bytes_out 0 86474 bytes_in 0 86474 station_ip 83.122.189.120 86474 port 22 86474 unique_id port 86474 remote_ip 10.8.0.6 86477 username aminvpn 86477 mac 86477 bytes_out 0 86477 bytes_in 0 86477 station_ip 83.122.242.103 86477 port 21 86477 unique_id port 86477 remote_ip 10.8.0.6 86481 username aminvpn 86481 mac 86481 bytes_out 0 86481 bytes_in 0 86481 station_ip 83.122.189.120 86481 port 22 86481 unique_id port 86481 remote_ip 10.8.0.6 86483 username asadi 86483 unique_id port 86483 terminate_cause User-Request 86483 bytes_out 31482 86483 bytes_in 70151 86483 station_ip 83.122.154.249 86483 port 15728888 86483 nas_port_type Virtual 86483 remote_ip 5.5.5.152 86486 username asadi 86486 unique_id port 86486 terminate_cause User-Request 86486 bytes_out 12153 86486 bytes_in 43944 86486 station_ip 83.122.154.249 86486 port 15728891 86486 nas_port_type Virtual 86486 remote_ip 5.5.5.152 86496 username khalili 86439 terminate_cause User-Request 86439 bytes_out 90941 86439 bytes_in 306097 86439 station_ip 5.120.42.140 86439 port 15728845 86439 nas_port_type Virtual 86439 remote_ip 5.5.5.163 86440 username alinezhad 86440 unique_id port 86440 terminate_cause User-Request 86440 bytes_out 0 86440 bytes_in 0 86440 station_ip 5.202.19.222 86440 port 15728846 86440 nas_port_type Virtual 86440 remote_ip 5.5.5.229 86442 username madadi 86442 unique_id port 86442 terminate_cause Lost-Carrier 86442 bytes_out 21928 86442 bytes_in 142026 86442 station_ip 5.119.113.18 86442 port 15728848 86442 nas_port_type Virtual 86442 remote_ip 5.5.5.162 86443 username amin.insta19 86443 kill_reason Relative expiration date has reached 86443 unique_id port 86443 bytes_out 0 86443 bytes_in 0 86443 station_ip 83.122.208.1 86443 port 15728853 86443 nas_port_type Virtual 86460 username asadi 86460 unique_id port 86460 terminate_cause User-Request 86460 bytes_out 18268 86460 bytes_in 59836 86460 station_ip 37.129.78.21 86460 port 15728875 86460 nas_port_type Virtual 86460 remote_ip 5.5.5.176 86463 username asadi 86463 unique_id port 86463 terminate_cause User-Request 86463 bytes_out 53600 86463 bytes_in 86803 86463 station_ip 37.129.157.240 86463 port 15728877 86463 nas_port_type Virtual 86463 remote_ip 5.5.5.153 86466 username asadi 86466 unique_id port 86466 terminate_cause User-Request 86466 bytes_out 0 86466 bytes_in 0 86466 station_ip 37.129.157.240 86466 port 15728880 86466 nas_port_type Virtual 86466 remote_ip 5.5.5.153 86467 username asadi 86467 unique_id port 86467 terminate_cause User-Request 86467 bytes_out 28368 86467 bytes_in 68839 86467 station_ip 37.129.157.240 86467 port 15728881 86467 nas_port_type Virtual 86467 remote_ip 5.5.5.153 86471 username aminvpn 86471 mac 86471 bytes_out 0 86471 bytes_in 0 86471 station_ip 83.122.242.103 86471 port 21 86471 unique_id port 86471 remote_ip 10.8.0.6 86475 username aminvpn 86475 mac 86475 bytes_out 0 86475 bytes_in 0 86475 station_ip 83.122.242.103 86475 port 21 86475 unique_id port 86475 remote_ip 10.8.0.6 86493 username soleymani 86493 unique_id port 86493 terminate_cause Lost-Carrier 86493 bytes_out 68770 86493 bytes_in 202178 86493 station_ip 5.120.143.41 86493 port 15728896 86493 nas_port_type Virtual 86493 remote_ip 5.5.5.148 86503 username shahnaz 86503 unique_id port 86503 terminate_cause User-Request 86503 bytes_out 3168567 86503 bytes_in 68742873 86503 station_ip 5.119.50.117 86503 port 15728898 86503 nas_port_type Virtual 86503 remote_ip 5.5.5.243 86504 username mahdixz 86504 unique_id port 86504 terminate_cause Lost-Carrier 86504 bytes_out 1635774 86504 bytes_in 9109897 86504 station_ip 151.235.82.71 86504 port 15728907 86504 nas_port_type Virtual 86504 remote_ip 5.5.5.222 86505 username aminvpn 86505 mac 86505 bytes_out 0 86505 bytes_in 0 86505 station_ip 83.122.167.11 86505 port 21 86505 unique_id port 86505 remote_ip 10.8.0.6 86507 username asadi 86507 unique_id port 86507 terminate_cause User-Request 86507 bytes_out 110879 86507 bytes_in 3154581 86507 station_ip 83.122.154.249 86507 port 15728909 86507 nas_port_type Virtual 86507 remote_ip 5.5.5.152 86509 username asadi 86509 unique_id port 86509 terminate_cause User-Request 86509 bytes_out 110165 86509 bytes_in 2105060 86509 station_ip 83.122.154.249 86509 port 15728912 86509 nas_port_type Virtual 86509 remote_ip 5.5.5.152 86511 username kamali 86511 unique_id port 86511 terminate_cause User-Request 86511 bytes_out 58367 86511 bytes_in 141046 86511 station_ip 83.122.253.250 86511 port 15728913 86511 nas_port_type Virtual 86465 port 15728879 86465 nas_port_type Virtual 86465 remote_ip 5.5.5.153 86470 username asadi 86470 unique_id port 86470 terminate_cause User-Request 86470 bytes_out 106724 86470 bytes_in 1263511 86470 station_ip 37.129.157.240 86470 port 15728882 86470 nas_port_type Virtual 86470 remote_ip 5.5.5.153 86476 username aminvpn 86476 mac 86476 bytes_out 0 86476 bytes_in 0 86476 station_ip 83.122.189.120 86476 port 22 86476 unique_id port 86476 remote_ip 10.8.0.6 86478 username asadi 86478 unique_id port 86478 terminate_cause User-Request 86478 bytes_out 52737 86478 bytes_in 425648 86478 station_ip 37.129.157.240 86478 port 15728883 86478 nas_port_type Virtual 86478 remote_ip 5.5.5.153 86480 username asadi 86480 unique_id port 86480 terminate_cause User-Request 86480 bytes_out 29145 86480 bytes_in 30906 86480 station_ip 83.122.154.249 86480 port 15728887 86480 nas_port_type Virtual 86480 remote_ip 5.5.5.152 86484 username heydari 86484 unique_id port 86484 terminate_cause Lost-Carrier 86484 bytes_out 71457 86484 bytes_in 291925 86484 station_ip 5.120.103.40 86484 port 15728885 86484 nas_port_type Virtual 86484 remote_ip 5.5.5.209 86487 username madadi 86487 unique_id port 86487 terminate_cause Lost-Carrier 86487 bytes_out 23427 86487 bytes_in 146230 86487 station_ip 5.119.138.252 86487 port 15728889 86487 nas_port_type Virtual 86487 remote_ip 5.5.5.151 86489 username aminvpn 86489 mac 86489 bytes_out 0 86489 bytes_in 0 86489 station_ip 83.122.167.11 86489 port 21 86489 unique_id port 86489 remote_ip 10.8.0.6 86495 username mahbobeh 86495 unique_id port 86495 terminate_cause Lost-Carrier 86495 bytes_out 539581 86495 bytes_in 12759222 86495 station_ip 83.122.134.177 86495 port 15728860 86495 nas_port_type Virtual 86495 remote_ip 5.5.5.237 86497 username arabpour 86497 unique_id port 86497 terminate_cause Lost-Carrier 86497 bytes_out 757883 86497 bytes_in 21458901 86497 station_ip 95.64.87.49 86497 port 15728897 86497 nas_port_type Virtual 86497 remote_ip 5.5.5.147 86527 username asadi 86527 unique_id port 86527 terminate_cause User-Request 86527 bytes_out 147901 86527 bytes_in 4026965 86527 station_ip 83.123.3.239 86527 port 15728936 86527 nas_port_type Virtual 86527 remote_ip 5.5.5.135 86530 username madadi 86530 unique_id port 86530 terminate_cause User-Request 86530 bytes_out 0 86530 bytes_in 0 86530 station_ip 5.119.221.0 86530 port 15728939 86530 nas_port_type Virtual 86530 remote_ip 5.5.5.133 86532 username afarin 86532 unique_id port 86532 terminate_cause User-Request 86532 bytes_out 516834 86532 bytes_in 10050863 86532 station_ip 31.56.152.157 86532 port 15728943 86532 nas_port_type Virtual 86532 remote_ip 5.5.5.131 86537 username caferibar 86537 unique_id port 86537 terminate_cause Lost-Carrier 86537 bytes_out 4344285 86537 bytes_in 158290622 86537 station_ip 5.120.124.94 86537 port 15728937 86537 nas_port_type Virtual 86537 remote_ip 5.5.5.134 86541 username amirabbas 86541 unique_id port 86541 terminate_cause User-Request 86541 bytes_out 42034892 86541 bytes_in 1302203286 86541 station_ip 31.56.222.139 86541 port 15728923 86541 nas_port_type Virtual 86541 remote_ip 5.5.5.190 86548 username aminvpn 86548 mac 86548 bytes_out 0 86548 bytes_in 0 86548 station_ip 83.122.189.120 86548 port 21 86548 unique_id port 86548 remote_ip 10.8.0.6 86551 username caferibar 86551 unique_id port 86551 terminate_cause Lost-Carrier 86551 bytes_out 9607806 86551 bytes_in 287011643 86551 station_ip 5.120.124.94 86551 port 15728950 86551 nas_port_type Virtual 86551 remote_ip 5.5.5.130 86552 username zamanialireza 86482 port 21 86482 unique_id port 86482 remote_ip 10.8.0.6 86485 username aminvpn 86485 mac 86485 bytes_out 949241 86485 bytes_in 12347886 86485 station_ip 83.122.189.120 86485 port 22 86485 unique_id port 86485 remote_ip 10.8.0.6 86488 username caferibar 86488 unique_id port 86488 terminate_cause User-Request 86488 bytes_out 689465 86488 bytes_in 2066284 86488 station_ip 5.120.56.230 86488 port 15728884 86488 nas_port_type Virtual 86488 remote_ip 5.5.5.158 86490 username madadi 86490 unique_id port 86490 terminate_cause Lost-Carrier 86490 bytes_out 37636 86490 bytes_in 142869 86490 station_ip 5.119.145.9 86490 port 15728895 86490 nas_port_type Virtual 86490 remote_ip 5.5.5.149 86491 username alinezhad 86491 unique_id port 86491 terminate_cause User-Request 86491 bytes_out 13232233 86491 bytes_in 10353240 86491 station_ip 5.202.19.222 86491 port 15728878 86491 nas_port_type Virtual 86491 remote_ip 5.5.5.229 86492 username shahrooz 86492 unique_id port 86492 terminate_cause Lost-Carrier 86492 bytes_out 5118 86492 bytes_in 19655 86492 station_ip 37.129.97.198 86492 port 15728900 86492 nas_port_type Virtual 86492 remote_ip 5.5.5.145 86494 username ahmadi 86494 unique_id port 86494 terminate_cause User-Request 86494 bytes_out 0 86494 bytes_in 0 86494 station_ip 83.122.80.215 86494 port 15728901 86494 nas_port_type Virtual 86494 remote_ip 5.5.5.180 86498 username aminvpn 86498 kill_reason Another user logged on this global unique id 86498 mac 86498 bytes_out 0 86498 bytes_in 0 86498 station_ip 83.122.167.11 86498 port 21 86498 unique_id port 86498 remote_ip 10.8.0.6 86502 username aminvpn 86502 unique_id port 86502 terminate_cause Lost-Carrier 86502 bytes_out 2710138 86502 bytes_in 43267439 86502 station_ip 5.119.11.212 86502 port 15728899 86502 nas_port_type Virtual 86502 remote_ip 5.5.5.146 86506 username ksrkrgr 86506 unique_id port 86506 terminate_cause User-Request 86506 bytes_out 4202868 86506 bytes_in 12790884 86506 station_ip 2.184.6.91 86506 port 15728905 86506 nas_port_type Virtual 86506 remote_ip 5.5.5.226 86512 username alinezhad 86512 unique_id port 86512 terminate_cause User-Request 86512 bytes_out 281747 86512 bytes_in 815778 86512 station_ip 5.202.19.26 86512 port 15728911 86512 nas_port_type Virtual 86512 remote_ip 5.5.5.141 86515 username caferibar 86515 unique_id port 86515 terminate_cause Lost-Carrier 86515 bytes_out 427228 86515 bytes_in 1363217 86515 station_ip 5.119.61.111 86515 port 15728921 86515 nas_port_type Virtual 86515 remote_ip 5.5.5.138 86517 username heydari 86517 unique_id port 86517 terminate_cause Lost-Carrier 86517 bytes_out 499573 86517 bytes_in 8875305 86517 station_ip 5.120.103.40 86517 port 15728902 86517 nas_port_type Virtual 86517 remote_ip 5.5.5.209 86520 username alinezhad 86520 unique_id port 86520 terminate_cause User-Request 86520 bytes_out 54028 86520 bytes_in 225695 86520 station_ip 5.202.19.26 86520 port 15728929 86520 nas_port_type Virtual 86520 remote_ip 5.5.5.141 86528 username ahmadi 86528 unique_id port 86528 terminate_cause User-Request 86528 bytes_out 59226 86528 bytes_in 323911 86528 station_ip 83.122.80.215 86528 port 15728935 86528 nas_port_type Virtual 86528 remote_ip 5.5.5.180 86531 username forozande 86531 unique_id port 86531 terminate_cause User-Request 86531 bytes_out 479537 86531 bytes_in 3490709 86531 station_ip 83.123.214.148 86531 port 15728946 86531 nas_port_type Virtual 86531 remote_ip 5.5.5.128 86534 username caferibar 86534 unique_id port 86534 terminate_cause User-Request 86534 bytes_out 353484 86534 bytes_in 1387073 86534 station_ip 5.120.124.94 86534 port 15728944 86496 unique_id port 86496 terminate_cause Lost-Carrier 86496 bytes_out 11090973 86496 bytes_in 30260333 86496 station_ip 5.119.183.41 86496 port 15728890 86496 nas_port_type Virtual 86496 remote_ip 5.5.5.150 86499 username aminvpn 86499 mac 86499 bytes_out 0 86499 bytes_in 0 86499 station_ip 83.122.167.11 86499 port 21 86499 unique_id port 86500 username ahmadipour 86500 unique_id port 86500 terminate_cause Lost-Carrier 86500 bytes_out 895292 86500 bytes_in 17617307 86500 station_ip 113.203.33.33 86500 port 15728908 86500 nas_port_type Virtual 86500 remote_ip 5.5.5.142 86501 username madadi 86501 unique_id port 86501 terminate_cause Lost-Carrier 86501 bytes_out 26891 86501 bytes_in 151294 86501 station_ip 5.120.70.76 86501 port 15728906 86501 nas_port_type Virtual 86501 remote_ip 5.5.5.143 86508 username asadi 86508 unique_id port 86508 terminate_cause User-Request 86508 bytes_out 199813 86508 bytes_in 3877440 86508 station_ip 83.122.154.249 86508 port 15728910 86508 nas_port_type Virtual 86508 remote_ip 5.5.5.152 86510 username mahbobeh 86510 unique_id port 86510 terminate_cause Lost-Carrier 86510 bytes_out 785346 86510 bytes_in 7916420 86510 station_ip 83.122.134.177 86510 port 15728903 86510 nas_port_type Virtual 86510 remote_ip 5.5.5.237 86514 username kamali 86514 unique_id port 86514 terminate_cause User-Request 86514 bytes_out 306631 86514 bytes_in 65906 86514 station_ip 83.122.253.250 86514 port 15728916 86514 nas_port_type Virtual 86514 remote_ip 5.5.5.140 86516 username aminvpn 86516 unique_id port 86516 terminate_cause Lost-Carrier 86516 bytes_out 1407648 86516 bytes_in 36187061 86516 station_ip 5.119.0.91 86516 port 15728920 86516 nas_port_type Virtual 86516 remote_ip 5.5.5.139 86518 username alinezhad 86518 unique_id port 86518 terminate_cause User-Request 86518 bytes_out 0 86518 bytes_in 0 86518 station_ip 5.202.19.26 86518 port 15728927 86518 nas_port_type Virtual 86518 remote_ip 5.5.5.141 86523 username alinezhad 86523 unique_id port 86523 terminate_cause User-Request 86523 bytes_out 0 86523 bytes_in 0 86523 station_ip 5.202.19.26 86523 port 15728934 86523 nas_port_type Virtual 86523 remote_ip 5.5.5.141 86526 username mahbobeh 86526 unique_id port 86526 terminate_cause Lost-Carrier 86526 bytes_out 7796146 86526 bytes_in 161659009 86526 station_ip 83.122.134.177 86526 port 15728915 86526 nas_port_type Virtual 86526 remote_ip 5.5.5.237 86529 username majid 86529 unique_id port 86529 terminate_cause User-Request 86529 bytes_out 422844 86529 bytes_in 4874538 86529 station_ip 86.57.108.135 86529 port 15728922 86529 nas_port_type Virtual 86529 remote_ip 5.5.5.137 86533 username forozande 86533 unique_id port 86533 terminate_cause User-Request 86533 bytes_out 146292 86533 bytes_in 1912631 86533 station_ip 83.123.125.210 86533 port 15728947 86533 nas_port_type Virtual 86533 remote_ip 5.5.5.127 86535 username forozande 86535 unique_id port 86535 terminate_cause User-Request 86535 bytes_out 23167 86535 bytes_in 80535 86535 station_ip 83.122.82.181 86535 port 15728948 86535 nas_port_type Virtual 86535 remote_ip 5.5.5.126 86540 username madadi 86540 unique_id port 86540 terminate_cause Lost-Carrier 86540 bytes_out 22425 86540 bytes_in 133646 86540 station_ip 5.119.102.230 86540 port 15728949 86540 nas_port_type Virtual 86540 remote_ip 5.5.5.125 86544 username zamanialireza 86544 unique_id port 86544 terminate_cause User-Request 86544 bytes_out 0 86544 bytes_in 0 86544 station_ip 83.123.46.213 86544 port 15728954 86544 nas_port_type Virtual 86544 remote_ip 5.5.5.121 86547 username zamanialireza 86547 unique_id port 86511 remote_ip 5.5.5.140 86513 username kamali 86513 unique_id port 86513 terminate_cause User-Request 86513 bytes_out 212893 86513 bytes_in 4454958 86513 station_ip 83.122.253.250 86513 port 15728914 86513 nas_port_type Virtual 86513 remote_ip 5.5.5.140 86519 username alinezhad 86519 unique_id port 86519 terminate_cause User-Request 86519 bytes_out 50364 86519 bytes_in 154728 86519 station_ip 5.202.19.26 86519 port 15728928 86519 nas_port_type Virtual 86519 remote_ip 5.5.5.141 86521 username kamali 86521 unique_id port 86521 terminate_cause User-Request 86521 bytes_out 42843 86521 bytes_in 57846 86521 station_ip 83.122.253.250 86521 port 15728930 86521 nas_port_type Virtual 86521 remote_ip 5.5.5.140 86522 username alinezhad 86522 unique_id port 86522 terminate_cause User-Request 86522 bytes_out 0 86522 bytes_in 0 86522 station_ip 5.202.19.26 86522 port 15728931 86522 nas_port_type Virtual 86522 remote_ip 5.5.5.141 86524 username madadi 86524 unique_id port 86524 terminate_cause Lost-Carrier 86524 bytes_out 8773 86524 bytes_in 138155 86524 station_ip 5.119.58.141 86524 port 15728933 86524 nas_port_type Virtual 86524 remote_ip 5.5.5.136 86525 username aminvpn 86525 unique_id port 86525 terminate_cause User-Request 86525 bytes_out 3987174 86525 bytes_in 67030107 86525 station_ip 83.122.167.11 86525 port 15728904 86525 nas_port_type Virtual 86525 remote_ip 5.5.5.144 86538 username madadi 86538 unique_id port 86538 terminate_cause Lost-Carrier 86538 bytes_out 71095 86538 bytes_in 360968 86538 station_ip 5.119.221.0 86538 port 15728940 86538 nas_port_type Virtual 86538 remote_ip 5.5.5.133 86543 username ahmadipour 86543 unique_id port 86543 terminate_cause Lost-Carrier 86543 bytes_out 1477219 86543 bytes_in 35367277 86543 station_ip 113.203.87.237 86543 port 15728953 86543 nas_port_type Virtual 86543 remote_ip 5.5.5.122 86545 username mamal 86545 unique_id port 86545 terminate_cause User-Request 86545 bytes_out 6502210 86545 bytes_in 196210851 86545 station_ip 113.203.88.184 86545 port 15728942 86545 nas_port_type Virtual 86545 remote_ip 5.5.5.132 86556 username shahnaz 86556 unique_id port 86556 terminate_cause User-Request 86556 bytes_out 44964 86556 bytes_in 238683 86556 station_ip 5.119.50.117 86556 port 15728961 86556 nas_port_type Virtual 86556 remote_ip 5.5.5.243 86559 username madadi 86559 unique_id port 86559 terminate_cause Lost-Carrier 86559 bytes_out 346979 86559 bytes_in 1221224 86559 station_ip 5.119.82.167 86559 port 15728964 86559 nas_port_type Virtual 86559 remote_ip 5.5.5.118 86560 username aminvpn 86560 unique_id port 86560 terminate_cause Lost-Carrier 86560 bytes_out 1444872 86560 bytes_in 22845641 86560 station_ip 5.119.11.212 86560 port 15728963 86560 nas_port_type Virtual 86560 remote_ip 5.5.5.146 86563 username heydarizadeh 86563 unique_id port 86563 terminate_cause Lost-Carrier 86563 bytes_out 1022136 86563 bytes_in 27878632 86563 station_ip 5.120.171.133 86563 port 15728967 86563 nas_port_type Virtual 86563 remote_ip 5.5.5.115 86565 username zamanialireza 86565 unique_id port 86565 terminate_cause User-Request 86565 bytes_out 0 86565 bytes_in 0 86565 station_ip 5.160.115.225 86565 port 15728971 86565 nas_port_type Virtual 86565 remote_ip 5.5.5.114 86574 username majid 86574 unique_id port 86574 terminate_cause User-Request 86574 bytes_out 4825716 86574 bytes_in 138545937 86574 station_ip 86.57.16.121 86574 port 15728966 86574 nas_port_type Virtual 86574 remote_ip 5.5.5.116 86575 username afarin 86575 unique_id port 86575 terminate_cause User-Request 86575 bytes_out 614749 86575 bytes_in 14593959 86575 station_ip 151.238.247.21 86575 port 15728982 86534 nas_port_type Virtual 86534 remote_ip 5.5.5.130 86536 username zamanialireza 86536 unique_id port 86536 terminate_cause User-Request 86536 bytes_out 0 86536 bytes_in 0 86536 station_ip 83.122.90.200 86536 port 15728951 86536 nas_port_type Virtual 86536 remote_ip 5.5.5.124 86539 username forozande 86539 unique_id port 86539 terminate_cause User-Request 86539 bytes_out 65401 86539 bytes_in 1165364 86539 station_ip 37.129.184.249 86539 port 15728952 86539 nas_port_type Virtual 86539 remote_ip 5.5.5.123 86542 username caferibar 86542 unique_id port 86542 terminate_cause User-Request 86542 bytes_out 2883049 86542 bytes_in 49479441 86542 station_ip 31.59.39.67 86542 port 15728945 86542 nas_port_type Virtual 86542 remote_ip 5.5.5.129 86546 username shojaei 86546 unique_id port 86546 terminate_cause User-Request 86546 bytes_out 460475 86546 bytes_in 21119674 86546 station_ip 113.203.55.200 86546 port 15728955 86546 nas_port_type Virtual 86546 remote_ip 5.5.5.120 86550 username soleymani 86550 unique_id port 86550 terminate_cause User-Request 86550 bytes_out 138230 86550 bytes_in 268994 86550 station_ip 5.119.83.181 86550 port 15728957 86550 nas_port_type Virtual 86550 remote_ip 5.5.5.119 86554 username farhad 86554 unique_id port 86554 terminate_cause Lost-Carrier 86554 bytes_out 42434286 86554 bytes_in 558739286 86554 station_ip 5.119.88.85 86554 port 15728859 86554 nas_port_type Virtual 86554 remote_ip 5.5.5.159 86555 username alinezhad 86555 unique_id port 86555 terminate_cause User-Request 86555 bytes_out 0 86555 bytes_in 0 86555 station_ip 5.202.19.26 86555 port 15728962 86555 nas_port_type Virtual 86555 remote_ip 5.5.5.141 86562 username zamanialireza 86562 unique_id port 86562 terminate_cause User-Request 86562 bytes_out 218635 86562 bytes_in 5566743 86562 station_ip 5.160.115.225 86562 port 15728968 86562 nas_port_type Virtual 86562 remote_ip 5.5.5.114 86568 username heydarizadeh 86568 unique_id port 86568 terminate_cause User-Request 86568 bytes_out 80010 86568 bytes_in 946144 86568 station_ip 5.120.184.241 86568 port 15728977 86568 nas_port_type Virtual 86568 remote_ip 5.5.5.111 86569 username heydarizadeh 86569 unique_id port 86569 terminate_cause Lost-Carrier 86569 bytes_out 116 86569 bytes_in 61118 86569 station_ip 5.119.131.36 86569 port 15728976 86569 nas_port_type Virtual 86569 remote_ip 5.5.5.112 86571 username zamanialireza 86571 unique_id port 86571 terminate_cause User-Request 86571 bytes_out 1172478 86571 bytes_in 10240140 86571 station_ip 83.123.46.213 86571 port 15728978 86571 nas_port_type Virtual 86571 remote_ip 5.5.5.121 86576 username pouria 86576 unique_id port 86576 terminate_cause Lost-Carrier 86576 bytes_out 5414149 86576 bytes_in 197058166 86576 station_ip 151.235.118.53 86576 port 15728983 86576 nas_port_type Virtual 86576 remote_ip 5.5.5.108 86577 username shahrooz 86577 unique_id port 86577 terminate_cause Lost-Carrier 86577 bytes_out 2358479 86577 bytes_in 31834424 86577 station_ip 83.122.103.70 86577 port 15728979 86577 nas_port_type Virtual 86577 remote_ip 5.5.5.110 86579 username caferibar 86579 unique_id port 86579 terminate_cause User-Request 86579 bytes_out 41404 86579 bytes_in 188597 86579 station_ip 5.123.21.222 86579 port 15728985 86579 nas_port_type Virtual 86579 remote_ip 5.5.5.106 86582 username asadi 86582 unique_id port 86582 terminate_cause User-Request 86582 bytes_out 194192 86582 bytes_in 2598140 86582 station_ip 83.123.213.20 86582 port 15728989 86582 nas_port_type Virtual 86582 remote_ip 5.5.5.104 86583 username aminvpn 86583 unique_id port 86583 terminate_cause Lost-Carrier 86583 bytes_out 13265884 86583 bytes_in 272751993 86547 terminate_cause User-Request 86547 bytes_out 15886056 86547 bytes_in 442277020 86547 station_ip 5.119.54.95 86547 port 15728941 86547 nas_port_type Virtual 86547 remote_ip 5.5.5.250 86549 username asadi 86549 unique_id port 86549 terminate_cause User-Request 86549 bytes_out 57827 86549 bytes_in 217463 86549 station_ip 83.123.3.239 86549 port 15728956 86549 nas_port_type Virtual 86549 remote_ip 5.5.5.135 86561 username aminvpn 86561 unique_id port 86561 terminate_cause User-Request 86561 bytes_out 5113250 86561 bytes_in 42791479 86561 station_ip 83.122.167.11 86561 port 15728960 86561 nas_port_type Virtual 86561 remote_ip 5.5.5.144 86570 username aminvpn 86570 mac 86570 bytes_out 3318244 86570 bytes_in 8335647 86570 station_ip 83.122.167.11 86570 port 21 86570 unique_id port 86570 remote_ip 10.8.0.6 86578 username heydari 86578 unique_id port 86578 terminate_cause Lost-Carrier 86578 bytes_out 3543373 86578 bytes_in 6676597 86578 station_ip 5.120.103.40 86578 port 15728932 86578 nas_port_type Virtual 86578 remote_ip 5.5.5.209 86580 username majid 86580 unique_id port 86580 terminate_cause User-Request 86580 bytes_out 13113803 86580 bytes_in 477679118 86580 station_ip 86.57.31.187 86580 port 15728984 86580 nas_port_type Virtual 86580 remote_ip 5.5.5.107 86585 username aminvpn 86585 unique_id port 86585 terminate_cause Lost-Carrier 86585 bytes_out 570211 86585 bytes_in 22772713 86585 station_ip 5.160.112.69 86585 port 15728991 86585 nas_port_type Virtual 86585 remote_ip 5.5.5.103 86586 username asadi 86586 unique_id port 86586 terminate_cause User-Request 86586 bytes_out 64648 86586 bytes_in 1098665 86586 station_ip 83.123.213.20 86586 port 15728992 86586 nas_port_type Virtual 86586 remote_ip 5.5.5.104 86592 username asadi 86592 unique_id port 86592 terminate_cause User-Request 86592 bytes_out 180469 86592 bytes_in 2110932 86592 station_ip 83.123.213.20 86592 port 15728645 86592 nas_port_type Virtual 86592 remote_ip 5.5.5.251 86597 username forozande 86597 unique_id port 86597 terminate_cause User-Request 86597 bytes_out 550000 86597 bytes_in 15054502 86597 station_ip 83.123.186.245 86597 port 15728653 86597 nas_port_type Virtual 86597 remote_ip 5.5.5.248 86599 username madadi 86599 unique_id port 86599 terminate_cause User-Request 86599 bytes_out 0 86599 bytes_in 0 86599 station_ip 5.120.61.9 86599 port 15728656 86599 nas_port_type Virtual 86599 remote_ip 5.5.5.246 86602 username arabpour 86602 kill_reason Maximum number of concurrent logins reached 86602 unique_id port 86602 bytes_out 0 86602 bytes_in 0 86602 station_ip 5.214.110.216 86602 port 15728663 86602 nas_port_type Virtual 86604 username arabpour 86604 kill_reason Maximum number of concurrent logins reached 86604 unique_id port 86604 bytes_out 0 86604 bytes_in 0 86604 station_ip 5.214.110.216 86604 port 15728665 86604 nas_port_type Virtual 86606 username arabpour 86606 kill_reason Maximum number of concurrent logins reached 86606 unique_id port 86606 bytes_out 0 86606 bytes_in 0 86606 station_ip 5.214.110.216 86606 port 15728667 86606 nas_port_type Virtual 86611 username arabpour 86611 kill_reason Maximum number of concurrent logins reached 86611 unique_id port 86611 bytes_out 0 86611 bytes_in 0 86611 station_ip 5.217.26.47 86611 port 15728672 86611 nas_port_type Virtual 86612 username arabpour 86612 kill_reason Maximum number of concurrent logins reached 86612 unique_id port 86612 bytes_out 0 86612 bytes_in 0 86612 station_ip 5.217.26.47 86612 port 15728673 86612 nas_port_type Virtual 86617 username arabpour 86617 unique_id port 86617 terminate_cause Lost-Carrier 86617 bytes_out 700294 86617 bytes_in 25051484 86617 station_ip 5.214.110.216 86552 unique_id port 86552 terminate_cause Lost-Carrier 86552 bytes_out 16199895 86552 bytes_in 359811831 86552 station_ip 94.183.213.166 86552 port 15728864 86552 nas_port_type Virtual 86552 remote_ip 5.5.5.156 86553 username shahnaz 86553 unique_id port 86553 terminate_cause Lost-Carrier 86553 bytes_out 383487 86553 bytes_in 3524367 86553 station_ip 5.119.50.117 86553 port 15728958 86553 nas_port_type Virtual 86553 remote_ip 5.5.5.243 86557 username afarin 86557 unique_id port 86557 terminate_cause User-Request 86557 bytes_out 714366 86557 bytes_in 13807740 86557 station_ip 151.238.247.21 86557 port 15728965 86557 nas_port_type Virtual 86557 remote_ip 5.5.5.117 86558 username jamali 86558 unique_id port 86558 terminate_cause User-Request 86558 bytes_out 2702265 86558 bytes_in 64781038 86558 station_ip 5.119.222.160 86558 port 15728959 86558 nas_port_type Virtual 86558 remote_ip 5.5.5.221 86564 username zamanialireza 86564 unique_id port 86564 terminate_cause User-Request 86564 bytes_out 0 86564 bytes_in 0 86564 station_ip 5.160.115.225 86564 port 15728970 86564 nas_port_type Virtual 86564 remote_ip 5.5.5.114 86566 username heydarizadeh 86566 unique_id port 86566 terminate_cause Lost-Carrier 86566 bytes_out 317756 86566 bytes_in 7792818 86566 station_ip 5.119.195.9 86566 port 15728969 86566 nas_port_type Virtual 86566 remote_ip 5.5.5.113 86567 username heydarizadeh 86567 unique_id port 86567 terminate_cause Lost-Carrier 86567 bytes_out 120511 86567 bytes_in 2179034 86567 station_ip 5.119.131.36 86567 port 15728974 86567 nas_port_type Virtual 86567 remote_ip 5.5.5.112 86572 username madadi 86572 unique_id port 86572 terminate_cause Lost-Carrier 86572 bytes_out 9430 86572 bytes_in 121278 86572 station_ip 5.119.141.52 86572 port 15728980 86572 nas_port_type Virtual 86572 remote_ip 5.5.5.109 86573 username zamanialireza 86573 unique_id port 86573 terminate_cause User-Request 86573 bytes_out 8469391 86573 bytes_in 159951160 86573 station_ip 83.123.46.213 86573 port 15728981 86573 nas_port_type Virtual 86573 remote_ip 5.5.5.121 86581 username shahnaz 86581 unique_id port 86581 terminate_cause User-Request 86581 bytes_out 33508 86581 bytes_in 85331 86581 station_ip 5.119.61.86 86581 port 15728987 86581 nas_port_type Virtual 86581 remote_ip 5.5.5.105 86594 username alinezhad 86594 unique_id port 86594 terminate_cause User-Request 86594 bytes_out 538563 86594 bytes_in 13334097 86594 station_ip 5.202.19.26 86594 port 15728646 86594 nas_port_type Virtual 86594 remote_ip 5.5.5.250 86607 username arabpour 86607 kill_reason Maximum number of concurrent logins reached 86607 unique_id port 86607 bytes_out 0 86607 bytes_in 0 86607 station_ip 5.214.110.216 86607 port 15728668 86607 nas_port_type Virtual 86609 username arabpour 86609 kill_reason Maximum number of concurrent logins reached 86609 unique_id port 86609 bytes_out 0 86609 bytes_in 0 86609 station_ip 5.217.26.47 86609 port 15728670 86609 nas_port_type Virtual 86623 username ahmadi 86623 unique_id port 86623 terminate_cause User-Request 86623 bytes_out 130477 86623 bytes_in 349493 86623 station_ip 83.122.108.203 86623 port 15728683 86623 nas_port_type Virtual 86623 remote_ip 5.5.5.241 86628 username forozande 86628 unique_id port 86628 terminate_cause User-Request 86628 bytes_out 34591 86628 bytes_in 118397 86628 station_ip 113.203.28.53 86628 port 15728686 86628 nas_port_type Virtual 86628 remote_ip 5.5.5.239 86635 username soleymani 86635 unique_id port 86635 terminate_cause Lost-Carrier 86635 bytes_out 507613 86635 bytes_in 13102632 86635 station_ip 5.120.103.2 86635 port 15728687 86635 nas_port_type Virtual 86635 remote_ip 5.5.5.240 86575 nas_port_type Virtual 86575 remote_ip 5.5.5.117 86583 station_ip 5.119.11.212 86583 port 15728986 86583 nas_port_type Virtual 86583 remote_ip 5.5.5.146 86584 username aminvpn 86584 mac 86584 bytes_out 1432013 86584 bytes_in 15394717 86584 station_ip 83.122.149.111 86584 port 21 86584 unique_id port 86584 remote_ip 10.8.0.6 86588 username mahbobeh 86588 unique_id port 86588 terminate_cause Admin-Reboot 86588 bytes_out 83469 86588 bytes_in 749546 86588 station_ip 83.122.134.177 86588 port 15728988 86588 nas_port_type Virtual 86588 remote_ip 5.5.5.237 86589 username aminvpn 86589 unique_id port 86589 terminate_cause Lost-Carrier 86589 bytes_out 1191141 86589 bytes_in 19319584 86589 station_ip 5.119.11.212 86589 port 15728640 86589 nas_port_type Virtual 86589 remote_ip 5.5.5.255 86593 username madadi 86593 unique_id port 86593 terminate_cause Lost-Carrier 86593 bytes_out 46484 86593 bytes_in 153919 86593 station_ip 5.119.57.224 86593 port 15728643 86593 nas_port_type Virtual 86593 remote_ip 5.5.5.252 86598 username arabpour 86598 unique_id port 86598 terminate_cause User-Request 86598 bytes_out 0 86598 bytes_in 0 86598 station_ip 5.214.110.216 86598 port 15728654 86598 nas_port_type Virtual 86598 remote_ip 5.5.5.247 86600 username arabpour 86600 kill_reason Maximum number of concurrent logins reached 86600 unique_id port 86600 bytes_out 0 86600 bytes_in 0 86600 station_ip 5.214.110.216 86600 port 15728662 86600 nas_port_type Virtual 86608 username arabpour 86608 kill_reason Maximum number of concurrent logins reached 86608 unique_id port 86608 bytes_out 0 86608 bytes_in 0 86608 station_ip 5.214.110.216 86608 port 15728669 86608 nas_port_type Virtual 86610 username arabpour 86610 kill_reason Maximum number of concurrent logins reached 86610 unique_id port 86610 bytes_out 0 86610 bytes_in 0 86610 station_ip 5.217.26.47 86610 port 15728671 86610 nas_port_type Virtual 86614 username arabpour 86614 kill_reason Maximum number of concurrent logins reached 86614 unique_id port 86614 bytes_out 0 86614 bytes_in 0 86614 station_ip 5.217.26.47 86614 port 15728675 86614 nas_port_type Virtual 86620 username forozande 86620 unique_id port 86620 terminate_cause User-Request 86620 bytes_out 35225 86620 bytes_in 246159 86620 station_ip 83.123.186.245 86620 port 15728682 86620 nas_port_type Virtual 86620 remote_ip 5.5.5.248 86625 username soleymani 86625 unique_id port 86625 terminate_cause User-Request 86625 bytes_out 61713 86625 bytes_in 124282 86625 station_ip 5.120.103.2 86625 port 15728684 86625 nas_port_type Virtual 86625 remote_ip 5.5.5.240 86629 username shahnaz 86629 unique_id port 86629 terminate_cause User-Request 86629 bytes_out 1411751 86629 bytes_in 33435444 86629 station_ip 5.119.61.86 86629 port 15728679 86629 nas_port_type Virtual 86629 remote_ip 5.5.5.243 86630 username asadi 86630 unique_id port 86630 terminate_cause User-Request 86630 bytes_out 155153 86630 bytes_in 3775663 86630 station_ip 83.122.178.165 86630 port 15728688 86630 nas_port_type Virtual 86630 remote_ip 5.5.5.238 86638 username heydari 86638 unique_id port 86638 terminate_cause Lost-Carrier 86638 bytes_out 255135 86638 bytes_in 4505529 86638 station_ip 5.119.11.246 86638 port 15728678 86638 nas_port_type Virtual 86638 remote_ip 5.5.5.244 86639 username forozande 86639 unique_id port 86639 terminate_cause User-Request 86639 bytes_out 62168 86639 bytes_in 936609 86639 station_ip 37.129.3.25 86639 port 15728697 86639 nas_port_type Virtual 86639 remote_ip 5.5.5.230 86641 username madadi 86641 unique_id port 86641 terminate_cause Lost-Carrier 86641 bytes_out 262494 86641 bytes_in 1861505 86641 station_ip 5.119.49.65 86641 port 15728694 86587 username aminvpn 86587 unique_id port 86587 terminate_cause Admin-Reboot 86587 bytes_out 6039547 86587 bytes_in 68661382 86587 station_ip 5.119.11.212 86587 port 15728990 86587 nas_port_type Virtual 86587 remote_ip 5.5.5.146 86590 username asadi 86590 unique_id port 86590 terminate_cause User-Request 86590 bytes_out 72279 86590 bytes_in 568815 86590 station_ip 83.123.213.20 86590 port 15728644 86590 nas_port_type Virtual 86590 remote_ip 5.5.5.251 86591 username caferibar 86591 unique_id port 86591 terminate_cause Lost-Carrier 86591 bytes_out 385665 86591 bytes_in 7392076 86591 station_ip 5.113.140.102 86591 port 15728642 86591 nas_port_type Virtual 86591 remote_ip 5.5.5.253 86595 username arabpour 86595 unique_id port 86595 terminate_cause User-Request 86595 bytes_out 0 86595 bytes_in 0 86595 station_ip 5.212.70.74 86595 port 15728647 86595 nas_port_type Virtual 86595 remote_ip 5.5.5.249 86596 username arabpour 86596 unique_id port 86596 terminate_cause User-Request 86596 bytes_out 0 86596 bytes_in 0 86596 station_ip 5.212.70.74 86596 port 15728648 86596 nas_port_type Virtual 86596 remote_ip 5.5.5.249 86601 username alinezhad 86601 unique_id port 86601 terminate_cause User-Request 86601 bytes_out 0 86601 bytes_in 0 86601 station_ip 5.202.19.26 86601 port 15728661 86601 nas_port_type Virtual 86601 remote_ip 5.5.5.250 86603 username arabpour 86603 kill_reason Maximum number of concurrent logins reached 86603 unique_id port 86603 bytes_out 0 86603 bytes_in 0 86603 station_ip 5.214.110.216 86603 port 15728664 86603 nas_port_type Virtual 86605 username arabpour 86605 kill_reason Maximum number of concurrent logins reached 86605 unique_id port 86605 bytes_out 0 86605 bytes_in 0 86605 station_ip 5.214.110.216 86605 port 15728666 86605 nas_port_type Virtual 86613 username arabpour 86613 kill_reason Maximum number of concurrent logins reached 86613 unique_id port 86613 bytes_out 0 86613 bytes_in 0 86613 station_ip 5.217.26.47 86613 port 15728674 86613 nas_port_type Virtual 86615 username arabpour 86615 unique_id port 86615 terminate_cause Lost-Carrier 86615 bytes_out 1061784 86615 bytes_in 33908993 86615 station_ip 5.212.70.74 86615 port 15728649 86615 nas_port_type Virtual 86615 remote_ip 5.5.5.249 86616 username mahbobeh 86616 unique_id port 86616 terminate_cause Lost-Carrier 86616 bytes_out 114358 86616 bytes_in 1028488 86616 station_ip 83.122.134.177 86616 port 15728641 86616 nas_port_type Virtual 86616 remote_ip 5.5.5.254 86619 username forozande 86619 unique_id port 86619 terminate_cause User-Request 86619 bytes_out 0 86619 bytes_in 0 86619 station_ip 83.123.186.245 86619 port 15728681 86619 nas_port_type Virtual 86619 remote_ip 5.5.5.248 86622 username soleymani 86622 unique_id port 86622 terminate_cause Lost-Carrier 86622 bytes_out 198664 86622 bytes_in 1841243 86622 station_ip 5.119.92.64 86622 port 15728680 86622 nas_port_type Virtual 86622 remote_ip 5.5.5.242 86624 username aminvpn 86624 mac 86624 bytes_out 0 86624 bytes_in 0 86624 station_ip 83.122.203.24 86624 port 21 86624 unique_id port 86624 remote_ip 10.8.0.6 86626 username arabpour 86626 unique_id port 86626 terminate_cause User-Request 86626 bytes_out 176570 86626 bytes_in 1235532 86626 station_ip 5.217.26.47 86626 port 15728676 86626 nas_port_type Virtual 86626 remote_ip 5.5.5.245 86627 username soleymani 86627 unique_id port 86627 terminate_cause User-Request 86627 bytes_out 0 86627 bytes_in 0 86627 station_ip 5.120.103.2 86627 port 15728685 86627 nas_port_type Virtual 86627 remote_ip 5.5.5.240 86631 username alinezhad 86631 unique_id port 86631 terminate_cause User-Request 86631 bytes_out 0 86617 port 15728655 86617 nas_port_type Virtual 86617 remote_ip 5.5.5.247 86618 username madadi 86618 unique_id port 86618 terminate_cause Lost-Carrier 86618 bytes_out 14949 86618 bytes_in 127678 86618 station_ip 5.120.61.9 86618 port 15728660 86618 nas_port_type Virtual 86618 remote_ip 5.5.5.246 86621 username mahbobeh 86621 unique_id port 86621 terminate_cause Lost-Carrier 86621 bytes_out 105848 86621 bytes_in 595494 86621 station_ip 83.122.134.177 86621 port 15728677 86621 nas_port_type Virtual 86621 remote_ip 5.5.5.254 86632 username forozande 86632 unique_id port 86632 terminate_cause User-Request 86632 bytes_out 86550 86632 bytes_in 716748 86632 station_ip 83.122.248.174 86632 port 15728689 86632 nas_port_type Virtual 86632 remote_ip 5.5.5.237 86634 username aminvpn 86634 mac 86634 bytes_out 0 86634 bytes_in 0 86634 station_ip 83.122.202.179 86634 port 21 86634 unique_id port 86634 remote_ip 10.8.0.6 86640 username soleymani 86640 unique_id port 86640 terminate_cause Lost-Carrier 86640 bytes_out 210394 86640 bytes_in 415234 86640 station_ip 5.120.21.5 86640 port 15728692 86640 nas_port_type Virtual 86640 remote_ip 5.5.5.235 86645 username soleymani 86645 unique_id port 86645 terminate_cause Lost-Carrier 86645 bytes_out 91451 86645 bytes_in 438897 86645 station_ip 5.120.43.101 86645 port 15728699 86645 nas_port_type Virtual 86645 remote_ip 5.5.5.229 86647 username forozande 86647 unique_id port 86647 terminate_cause User-Request 86647 bytes_out 2290 86647 bytes_in 13630 86647 station_ip 83.123.182.180 86647 port 15728703 86647 nas_port_type Virtual 86647 remote_ip 5.5.5.227 86650 username soleymani 86650 unique_id port 86650 terminate_cause Lost-Carrier 86650 bytes_out 14509 86650 bytes_in 149085 86650 station_ip 5.120.160.39 86650 port 15728701 86650 nas_port_type Virtual 86650 remote_ip 5.5.5.228 86653 username alinezhad 86653 unique_id port 86653 terminate_cause User-Request 86653 bytes_out 29426 86653 bytes_in 151197 86653 station_ip 5.202.61.11 86653 port 15728711 86653 nas_port_type Virtual 86653 remote_ip 5.5.5.222 86654 username mahdixz 86654 unique_id port 86654 terminate_cause User-Request 86654 bytes_out 2931630 86654 bytes_in 76605326 86654 station_ip 151.235.123.225 86654 port 15728708 86654 nas_port_type Virtual 86654 remote_ip 5.5.5.224 86658 username caferibar 86658 unique_id port 86658 terminate_cause Lost-Carrier 86658 bytes_out 1162674 86658 bytes_in 47139225 86658 station_ip 5.113.234.148 86658 port 15728710 86658 nas_port_type Virtual 86658 remote_ip 5.5.5.225 86663 username aminvpn 86663 mac 86663 bytes_out 0 86663 bytes_in 0 86663 station_ip 83.122.202.179 86663 port 21 86663 unique_id port 86663 remote_ip 10.8.0.6 86667 username aminvpn 86667 mac 86667 bytes_out 49315 86667 bytes_in 72233 86667 station_ip 83.122.202.179 86667 port 21 86667 unique_id port 86667 remote_ip 10.8.0.6 86668 username caferibar 86668 unique_id port 86668 terminate_cause Lost-Carrier 86668 bytes_out 33608 86668 bytes_in 256108 86668 station_ip 5.113.91.115 86668 port 15728717 86668 nas_port_type Virtual 86668 remote_ip 5.5.5.218 86669 username aminvpn 86669 mac 86669 bytes_out 38959 86669 bytes_in 86814 86669 station_ip 83.122.203.24 86669 port 21 86669 unique_id port 86669 remote_ip 10.8.0.6 86672 username aminvpn 86672 mac 86672 bytes_out 0 86672 bytes_in 0 86672 station_ip 83.122.202.179 86672 port 22 86672 unique_id port 86672 remote_ip 10.8.0.6 86676 username aminvpn 86676 mac 86676 bytes_out 0 86676 bytes_in 0 86676 station_ip 83.122.203.24 86631 bytes_in 0 86631 station_ip 5.202.19.26 86631 port 15728690 86631 nas_port_type Virtual 86631 remote_ip 5.5.5.250 86633 username aminvpn 86633 mac 86633 bytes_out 0 86633 bytes_in 0 86633 station_ip 83.122.203.24 86633 port 22 86633 unique_id port 86633 remote_ip 10.8.0.6 86636 username forozande 86636 unique_id port 86636 terminate_cause User-Request 86636 bytes_out 41197 86636 bytes_in 392811 86636 station_ip 83.123.148.193 86636 port 15728693 86636 nas_port_type Virtual 86636 remote_ip 5.5.5.234 86637 username madadi 86637 unique_id port 86637 terminate_cause Lost-Carrier 86637 bytes_out 50876 86637 bytes_in 157886 86637 station_ip 5.119.56.63 86637 port 15728691 86637 nas_port_type Virtual 86637 remote_ip 5.5.5.236 86659 username caferibar 86659 unique_id port 86659 terminate_cause Lost-Carrier 86659 bytes_out 1236621 86659 bytes_in 6083718 86659 station_ip 5.113.234.148 86659 port 15728709 86659 nas_port_type Virtual 86659 remote_ip 5.5.5.223 86664 username aminvpn 86664 mac 86664 bytes_out 0 86664 bytes_in 0 86664 station_ip 83.122.203.24 86664 port 22 86664 unique_id port 86664 remote_ip 10.8.0.6 86666 username aminvpn 86666 unique_id port 86666 terminate_cause User-Request 86666 bytes_out 1357388 86666 bytes_in 16822678 86666 station_ip 83.122.202.179 86666 port 15728718 86666 nas_port_type Virtual 86666 remote_ip 5.5.5.217 86671 username forozande 86671 unique_id port 86671 terminate_cause User-Request 86671 bytes_out 284612 86671 bytes_in 1352357 86671 station_ip 113.203.54.187 86671 port 15728722 86671 nas_port_type Virtual 86671 remote_ip 5.5.5.214 86675 username forozande 86675 unique_id port 86675 terminate_cause User-Request 86675 bytes_out 5495 86675 bytes_in 19436 86675 station_ip 113.203.54.187 86675 port 15728723 86675 nas_port_type Virtual 86675 remote_ip 5.5.5.214 86681 username shokokian 86681 unique_id port 86681 terminate_cause User-Request 86681 bytes_out 0 86681 bytes_in 0 86681 station_ip 31.56.221.213 86681 port 15728725 86681 nas_port_type Virtual 86681 remote_ip 5.5.5.212 86684 username aminvpn 86684 mac 86684 bytes_out 0 86684 bytes_in 0 86684 station_ip 83.122.203.24 86684 port 21 86684 unique_id port 86684 remote_ip 10.8.0.6 86686 username aminvpn 86686 mac 86686 bytes_out 0 86686 bytes_in 0 86686 station_ip 83.122.203.24 86686 port 21 86686 unique_id port 86686 remote_ip 10.8.0.6 86687 username aminvpn 86687 mac 86687 bytes_out 0 86687 bytes_in 0 86687 station_ip 83.122.202.179 86687 port 22 86687 unique_id port 86687 remote_ip 10.8.0.6 86688 username forozande 86688 unique_id port 86688 terminate_cause User-Request 86688 bytes_out 59431 86688 bytes_in 449875 86688 station_ip 37.129.200.179 86688 port 15728727 86688 nas_port_type Virtual 86688 remote_ip 5.5.5.211 86690 username alinezhad 86690 unique_id port 86690 terminate_cause User-Request 86690 bytes_out 0 86690 bytes_in 0 86690 station_ip 5.202.61.11 86690 port 15728728 86690 nas_port_type Virtual 86690 remote_ip 5.5.5.222 86693 username forozande 86693 unique_id port 86693 terminate_cause User-Request 86693 bytes_out 50697 86693 bytes_in 252558 86693 station_ip 37.129.200.179 86693 port 15728729 86693 nas_port_type Virtual 86693 remote_ip 5.5.5.211 86696 username forozande 86696 unique_id port 86696 terminate_cause User-Request 86696 bytes_out 59382 86696 bytes_in 770656 86696 station_ip 37.129.200.179 86696 port 15728732 86696 nas_port_type Virtual 86696 remote_ip 5.5.5.211 86698 username alinezhad 86698 unique_id port 86698 terminate_cause User-Request 86641 nas_port_type Virtual 86641 remote_ip 5.5.5.233 86648 username aminvpn 86648 mac 86648 bytes_out 0 86648 bytes_in 0 86648 station_ip 83.122.203.24 86648 port 21 86648 unique_id port 86648 remote_ip 10.8.0.6 86652 username caferibar 86652 unique_id port 86652 terminate_cause User-Request 86652 bytes_out 539487 86652 bytes_in 10379591 86652 station_ip 5.113.234.148 86652 port 15728707 86652 nas_port_type Virtual 86652 remote_ip 5.5.5.225 86656 username mahdixz 86656 unique_id port 86656 terminate_cause User-Request 86656 bytes_out 279269 86656 bytes_in 313886 86656 station_ip 151.235.123.225 86656 port 15728713 86656 nas_port_type Virtual 86656 remote_ip 5.5.5.224 86657 username ksrkrgr 86657 unique_id port 86657 terminate_cause User-Request 86657 bytes_out 458846 86657 bytes_in 7617970 86657 station_ip 85.185.171.99 86657 port 15728716 86657 nas_port_type Virtual 86657 remote_ip 5.5.5.219 86661 username aminvpn 86661 mac 86661 bytes_out 0 86661 bytes_in 0 86661 station_ip 83.122.202.179 86661 port 21 86661 unique_id port 86661 remote_ip 10.8.0.6 86662 username aminvpn 86662 mac 86662 bytes_out 0 86662 bytes_in 0 86662 station_ip 83.122.203.24 86662 port 22 86662 unique_id port 86662 remote_ip 10.8.0.6 86665 username soleymani 86665 unique_id port 86665 terminate_cause Lost-Carrier 86665 bytes_out 150644 86665 bytes_in 631732 86665 station_ip 5.120.3.30 86665 port 15728715 86665 nas_port_type Virtual 86665 remote_ip 5.5.5.220 86670 username soleymani 86670 unique_id port 86670 terminate_cause Lost-Carrier 86670 bytes_out 52438 86670 bytes_in 254171 86670 station_ip 5.119.3.86 86670 port 15728719 86670 nas_port_type Virtual 86670 remote_ip 5.5.5.216 86674 username aminvpn 86674 mac 86674 bytes_out 0 86674 bytes_in 0 86674 station_ip 83.122.202.179 86674 port 22 86674 unique_id port 86674 remote_ip 10.8.0.6 86680 username aminvpn 86680 mac 86680 bytes_out 0 86680 bytes_in 0 86680 station_ip 83.122.202.179 86680 port 22 86680 unique_id port 86680 remote_ip 10.8.0.6 86682 username aminvpn 86682 mac 86682 bytes_out 0 86682 bytes_in 0 86682 station_ip 83.122.203.24 86682 port 21 86682 unique_id port 86682 remote_ip 10.8.0.6 86685 username aminvpn 86685 mac 86685 bytes_out 0 86685 bytes_in 0 86685 station_ip 83.122.202.179 86685 port 22 86685 unique_id port 86685 remote_ip 10.8.0.6 86697 username aminvpn 86697 mac 86697 bytes_out 0 86697 bytes_in 0 86697 station_ip 83.122.203.24 86697 port 21 86697 unique_id port 86697 remote_ip 10.8.0.6 86702 username aminvpn 86702 mac 86702 bytes_out 0 86702 bytes_in 0 86702 station_ip 83.122.203.24 86702 port 21 86702 unique_id port 86702 remote_ip 10.8.0.6 86705 username aminvpn 86705 mac 86705 bytes_out 0 86705 bytes_in 0 86705 station_ip 83.122.203.24 86705 port 22 86705 unique_id port 86705 remote_ip 10.8.0.6 86712 username shokokian 86712 unique_id port 86712 terminate_cause Lost-Carrier 86712 bytes_out 253948 86712 bytes_in 5089523 86712 station_ip 31.56.221.213 86712 port 15728730 86712 nas_port_type Virtual 86712 remote_ip 5.5.5.212 86715 username madadi 86715 unique_id port 86715 terminate_cause Lost-Carrier 86715 bytes_out 35608 86715 bytes_in 175696 86715 station_ip 5.119.212.98 86715 port 15728734 86715 nas_port_type Virtual 86715 remote_ip 5.5.5.210 86717 username forozande 86717 unique_id port 86717 terminate_cause User-Request 86717 bytes_out 15499 86717 bytes_in 25204 86642 username forozande 86642 unique_id port 86642 terminate_cause User-Request 86642 bytes_out 6158 86642 bytes_in 18313 86642 station_ip 37.129.3.25 86642 port 15728698 86642 nas_port_type Virtual 86642 remote_ip 5.5.5.230 86643 username soleymani 86643 unique_id port 86643 terminate_cause Lost-Carrier 86643 bytes_out 184282 86643 bytes_in 962919 86643 station_ip 5.120.28.201 86643 port 15728696 86643 nas_port_type Virtual 86643 remote_ip 5.5.5.231 86644 username soleymani 86644 unique_id port 86644 terminate_cause User-Request 86644 bytes_out 0 86644 bytes_in 0 86644 station_ip 5.120.160.39 86644 port 15728700 86644 nas_port_type Virtual 86644 remote_ip 5.5.5.228 86646 username forozande 86646 unique_id port 86646 terminate_cause User-Request 86646 bytes_out 27857 86646 bytes_in 188163 86646 station_ip 83.123.182.180 86646 port 15728702 86646 nas_port_type Virtual 86646 remote_ip 5.5.5.227 86649 username caferibar 86649 unique_id port 86649 terminate_cause User-Request 86649 bytes_out 0 86649 bytes_in 0 86649 station_ip 5.113.234.148 86649 port 15728706 86649 nas_port_type Virtual 86649 remote_ip 5.5.5.225 86651 username aminvpn 86651 unique_id port 86651 terminate_cause Lost-Carrier 86651 bytes_out 618761 86651 bytes_in 11739898 86651 station_ip 5.119.139.76 86651 port 15728704 86651 nas_port_type Virtual 86651 remote_ip 5.5.5.226 86655 username soleymani 86655 unique_id port 86655 terminate_cause User-Request 86655 bytes_out 0 86655 bytes_in 0 86655 station_ip 5.120.3.30 86655 port 15728714 86655 nas_port_type Virtual 86655 remote_ip 5.5.5.220 86660 username aminvpn 86660 mac 86660 bytes_out 0 86660 bytes_in 0 86660 station_ip 83.122.203.24 86660 port 22 86660 unique_id port 86660 remote_ip 10.8.0.6 86673 username aminvpn 86673 mac 86673 bytes_out 0 86673 bytes_in 0 86673 station_ip 83.122.203.24 86673 port 21 86673 unique_id port 86673 remote_ip 10.8.0.6 86677 username aminvpn 86677 mac 86677 bytes_out 0 86677 bytes_in 0 86677 station_ip 83.122.202.179 86677 port 22 86677 unique_id port 86677 remote_ip 10.8.0.6 86679 username aminvpn 86679 mac 86679 bytes_out 0 86679 bytes_in 0 86679 station_ip 83.122.203.24 86679 port 21 86679 unique_id port 86679 remote_ip 10.8.0.6 86701 username aminvpn 86701 mac 86701 bytes_out 61399 86701 bytes_in 84791 86701 station_ip 83.122.202.179 86701 port 22 86701 unique_id port 86701 remote_ip 10.8.0.6 86706 username aminvpn 86706 mac 86706 bytes_out 0 86706 bytes_in 0 86706 station_ip 83.122.202.179 86706 port 21 86706 unique_id port 86706 remote_ip 10.8.0.6 86707 username aminvpn 86707 mac 86707 bytes_out 0 86707 bytes_in 0 86707 station_ip 83.122.203.24 86707 port 22 86707 unique_id port 86707 remote_ip 10.8.0.6 86711 username forozande 86711 unique_id port 86711 terminate_cause User-Request 86711 bytes_out 26834 86711 bytes_in 215795 86711 station_ip 37.129.200.179 86711 port 15728737 86711 nas_port_type Virtual 86711 remote_ip 5.5.5.211 86713 username aminvpn 86713 mac 86713 bytes_out 0 86713 bytes_in 0 86713 station_ip 83.122.203.24 86713 port 22 86713 unique_id port 86713 remote_ip 10.8.0.6 86716 username asadi 86716 unique_id port 86716 terminate_cause User-Request 86716 bytes_out 148061 86716 bytes_in 2396401 86716 station_ip 83.122.178.165 86716 port 15728738 86716 nas_port_type Virtual 86716 remote_ip 5.5.5.238 86721 username aminvpn 86721 unique_id port 86721 terminate_cause User-Request 86721 bytes_out 1044657 86676 port 21 86676 unique_id port 86676 remote_ip 10.8.0.6 86678 username aminvpn 86678 unique_id port 86678 terminate_cause User-Request 86678 bytes_out 564279 86678 bytes_in 8317588 86678 station_ip 83.122.202.179 86678 port 15728721 86678 nas_port_type Virtual 86678 remote_ip 5.5.5.217 86683 username aminvpn 86683 mac 86683 bytes_out 0 86683 bytes_in 0 86683 station_ip 83.122.202.179 86683 port 22 86683 unique_id port 86683 remote_ip 10.8.0.6 86689 username aminvpn 86689 mac 86689 bytes_out 0 86689 bytes_in 0 86689 station_ip 83.122.203.24 86689 port 21 86689 unique_id port 86689 remote_ip 10.8.0.6 86691 username aminvpn 86691 mac 86691 bytes_out 0 86691 bytes_in 0 86691 station_ip 83.122.202.179 86691 port 22 86691 unique_id port 86691 remote_ip 10.8.0.6 86692 username aminvpn 86692 unique_id port 86692 terminate_cause User-Request 86692 bytes_out 284364 86692 bytes_in 1635111 86692 station_ip 83.122.202.179 86692 port 15728726 86692 nas_port_type Virtual 86692 remote_ip 5.5.5.217 86694 username aminvpn 86694 mac 86694 bytes_out 35990 86694 bytes_in 62725 86694 station_ip 83.122.203.24 86694 port 21 86694 unique_id port 86694 remote_ip 10.8.0.6 86695 username aminvpn 86695 mac 86695 bytes_out 80640 86695 bytes_in 103988 86695 station_ip 83.122.202.179 86695 port 22 86695 unique_id port 86695 remote_ip 10.8.0.6 86700 username forozande 86700 unique_id port 86700 terminate_cause User-Request 86700 bytes_out 36815 86700 bytes_in 126221 86700 station_ip 37.129.200.179 86700 port 15728735 86700 nas_port_type Virtual 86700 remote_ip 5.5.5.211 86709 username aminvpn 86709 mac 86709 bytes_out 0 86709 bytes_in 0 86709 station_ip 83.122.203.24 86709 port 22 86709 unique_id port 86709 remote_ip 10.8.0.6 86714 username aminvpn 86714 unique_id port 86714 terminate_cause User-Request 86714 bytes_out 898155 86714 bytes_in 14373350 86714 station_ip 83.122.202.179 86714 port 15728733 86714 nas_port_type Virtual 86714 remote_ip 5.5.5.217 86719 username ahmadipour 86719 unique_id port 86719 terminate_cause Lost-Carrier 86719 bytes_out 209408 86719 bytes_in 1640157 86719 station_ip 113.203.40.109 86719 port 15728712 86719 nas_port_type Virtual 86719 remote_ip 5.5.5.221 86722 username aminvpn 86722 mac 86722 bytes_out 1686774 86722 bytes_in 9437031 86722 station_ip 83.122.202.179 86722 port 35 86722 unique_id port 86722 remote_ip 10.8.1.10 86725 username aminvpn 86725 mac 86725 bytes_out 44483 86725 bytes_in 66045 86725 station_ip 83.122.202.179 86725 port 35 86725 unique_id port 86725 remote_ip 10.8.1.10 86727 username aminvpn 86727 mac 86727 bytes_out 0 86727 bytes_in 0 86727 station_ip 83.122.202.179 86727 port 35 86727 unique_id port 86727 remote_ip 10.8.1.10 86728 username soleymani 86728 unique_id port 86728 terminate_cause Lost-Carrier 86728 bytes_out 192037 86728 bytes_in 587964 86728 station_ip 5.119.169.197 86728 port 15728743 86728 nas_port_type Virtual 86728 remote_ip 5.5.5.208 86737 username forozande 86737 unique_id port 86737 terminate_cause User-Request 86737 bytes_out 71507 86737 bytes_in 297515 86737 station_ip 83.123.32.190 86737 port 15728775 86737 nas_port_type Virtual 86737 remote_ip 5.5.5.205 86740 username aminvpn 86740 mac 86740 bytes_out 726776 86740 bytes_in 2567005 86740 station_ip 83.122.202.179 86740 port 35 86740 unique_id port 86740 remote_ip 10.8.1.10 86741 username forozande 86741 unique_id port 86741 terminate_cause User-Request 86698 bytes_out 12145 86698 bytes_in 48281 86698 station_ip 5.202.61.11 86698 port 15728731 86698 nas_port_type Virtual 86698 remote_ip 5.5.5.222 86699 username alinezhad 86699 unique_id port 86699 terminate_cause User-Request 86699 bytes_out 0 86699 bytes_in 0 86699 station_ip 5.202.61.11 86699 port 15728736 86699 nas_port_type Virtual 86699 remote_ip 5.5.5.222 86703 username aminvpn 86703 mac 86703 bytes_out 0 86703 bytes_in 0 86703 station_ip 83.122.202.179 86703 port 22 86703 unique_id port 86703 remote_ip 10.8.0.6 86704 username aminvpn 86704 mac 86704 bytes_out 0 86704 bytes_in 0 86704 station_ip 83.122.202.179 86704 port 21 86704 unique_id port 86704 remote_ip 10.8.0.6 86708 username aminvpn 86708 mac 86708 bytes_out 0 86708 bytes_in 0 86708 station_ip 83.122.202.179 86708 port 21 86708 unique_id port 86708 remote_ip 10.8.0.6 86710 username aminvpn 86710 mac 86710 bytes_out 0 86710 bytes_in 0 86710 station_ip 83.122.202.179 86710 port 21 86710 unique_id port 86710 remote_ip 10.8.0.6 86724 username aminvpn 86724 mac 86724 bytes_out 0 86724 bytes_in 0 86724 station_ip 83.122.202.179 86724 port 35 86724 unique_id port 86724 remote_ip 10.8.1.10 86729 username amir 86729 unique_id port 86729 terminate_cause Lost-Carrier 86729 bytes_out 3272814 86729 bytes_in 44324932 86729 station_ip 46.225.232.170 86729 port 15728720 86729 nas_port_type Virtual 86729 remote_ip 5.5.5.215 86734 username aminvpn 86734 mac 86734 bytes_out 0 86734 bytes_in 0 86734 station_ip 83.122.203.24 86734 port 21 86734 unique_id port 86734 remote_ip 10.8.0.6 86736 username aminvpn 86736 mac 86736 bytes_out 34264 86736 bytes_in 59394 86736 station_ip 83.122.202.179 86736 port 22 86736 unique_id port 86736 remote_ip 10.8.0.6 86744 username soleymani 86744 unique_id port 86744 terminate_cause User-Request 86744 bytes_out 0 86744 bytes_in 0 86744 station_ip 5.119.23.227 86744 port 15728781 86744 nas_port_type Virtual 86744 remote_ip 5.5.5.201 86751 username ksrkrgr 86751 unique_id port 86751 terminate_cause User-Request 86751 bytes_out 101857 86751 bytes_in 216749 86751 station_ip 85.185.171.99 86751 port 15728787 86751 nas_port_type Virtual 86751 remote_ip 5.5.5.219 86752 username amirabbas 86752 unique_id port 86752 terminate_cause Lost-Carrier 86752 bytes_out 47813487 86752 bytes_in 1415308773 86752 station_ip 31.56.218.47 86752 port 15728724 86752 nas_port_type Virtual 86752 remote_ip 5.5.5.213 86755 username madadi 86755 unique_id port 86755 terminate_cause Lost-Carrier 86755 bytes_out 19324 86755 bytes_in 136551 86755 station_ip 5.119.215.174 86755 port 15728788 86755 nas_port_type Virtual 86755 remote_ip 5.5.5.200 86757 username avaanna 86757 unique_id port 86757 terminate_cause User-Request 86757 bytes_out 88790 86757 bytes_in 926910 86757 station_ip 37.129.254.32 86757 port 15728796 86757 nas_port_type Virtual 86757 remote_ip 5.5.5.207 86759 username avaanna 86759 unique_id port 86759 terminate_cause User-Request 86759 bytes_out 45819 86759 bytes_in 356115 86759 station_ip 37.129.254.32 86759 port 15728799 86759 nas_port_type Virtual 86759 remote_ip 5.5.5.207 86760 username soleymani 86760 unique_id port 86760 terminate_cause Lost-Carrier 86760 bytes_out 53628 86760 bytes_in 259176 86760 station_ip 5.119.207.242 86760 port 15728794 86760 nas_port_type Virtual 86760 remote_ip 5.5.5.198 86762 username mahdixz 86762 unique_id port 86762 terminate_cause User-Request 86762 bytes_out 280487 86762 bytes_in 2643710 86762 station_ip 151.235.123.225 86717 station_ip 37.129.200.179 86717 port 15728739 86717 nas_port_type Virtual 86717 remote_ip 5.5.5.211 86718 username aminvpn 86718 mac 86718 bytes_out 0 86718 bytes_in 0 86718 station_ip 83.122.202.179 86718 port 21 86718 unique_id port 86718 remote_ip 10.8.0.6 86720 username forozande 86720 unique_id port 86720 terminate_cause User-Request 86720 bytes_out 12287 86720 bytes_in 21537 86720 station_ip 37.129.155.206 86720 port 15728741 86720 nas_port_type Virtual 86720 remote_ip 5.5.5.209 86726 username avaanna 86726 unique_id port 86726 terminate_cause User-Request 86726 bytes_out 1778305 86726 bytes_in 325383 86726 station_ip 37.129.254.32 86726 port 15728764 86726 nas_port_type Virtual 86726 remote_ip 5.5.5.207 86731 username aminvpn 86731 mac 86731 bytes_out 0 86731 bytes_in 0 86731 station_ip 83.122.202.179 86731 port 35 86731 unique_id port 86731 remote_ip 10.8.1.10 86735 username aminvpn 86735 unique_id port 86735 terminate_cause User-Request 86735 bytes_out 163167 86735 bytes_in 973321 86735 station_ip 83.122.202.179 86735 port 15728772 86735 nas_port_type Virtual 86735 remote_ip 5.5.5.217 86738 username kamali 86738 unique_id port 86738 terminate_cause User-Request 86738 bytes_out 354725 86738 bytes_in 7336108 86738 station_ip 37.129.233.92 86738 port 15728776 86738 nas_port_type Virtual 86738 remote_ip 5.5.5.204 86739 username forozande 86739 unique_id port 86739 terminate_cause User-Request 86739 bytes_out 43326 86739 bytes_in 203260 86739 station_ip 37.129.202.47 86739 port 15728777 86739 nas_port_type Virtual 86739 remote_ip 5.5.5.203 86742 username soleymani 86742 unique_id port 86742 terminate_cause User-Request 86742 bytes_out 0 86742 bytes_in 0 86742 station_ip 5.119.23.227 86742 port 15728779 86742 nas_port_type Virtual 86742 remote_ip 5.5.5.201 86743 username soleymani 86743 unique_id port 86743 terminate_cause User-Request 86743 bytes_out 0 86743 bytes_in 0 86743 station_ip 5.119.23.227 86743 port 15728780 86743 nas_port_type Virtual 86743 remote_ip 5.5.5.201 86749 username avaanna 86749 unique_id port 86749 terminate_cause User-Request 86749 bytes_out 84933 86749 bytes_in 1639230 86749 station_ip 37.129.254.32 86749 port 15728789 86749 nas_port_type Virtual 86749 remote_ip 5.5.5.207 86753 username avaanna 86753 unique_id port 86753 terminate_cause User-Request 86753 bytes_out 40896 86753 bytes_in 109238 86753 station_ip 37.129.254.32 86753 port 15728792 86753 nas_port_type Virtual 86753 remote_ip 5.5.5.207 86754 username asadi 86754 unique_id port 86754 terminate_cause User-Request 86754 bytes_out 23608 86754 bytes_in 143647 86754 station_ip 83.122.178.165 86754 port 15728793 86754 nas_port_type Virtual 86754 remote_ip 5.5.5.238 86758 username avaanna 86758 unique_id port 86758 terminate_cause User-Request 86758 bytes_out 22110 86758 bytes_in 150154 86758 station_ip 37.129.254.32 86758 port 15728797 86758 nas_port_type Virtual 86758 remote_ip 5.5.5.207 86767 username afarin 86767 unique_id port 86767 terminate_cause User-Request 86767 bytes_out 0 86767 bytes_in 0 86767 station_ip 83.123.172.184 86767 port 15728806 86767 nas_port_type Virtual 86767 remote_ip 5.5.5.194 86768 username soleymani 86768 unique_id port 86768 terminate_cause Lost-Carrier 86768 bytes_out 110556 86768 bytes_in 331266 86768 station_ip 5.119.82.186 86768 port 15728804 86768 nas_port_type Virtual 86768 remote_ip 5.5.5.196 86770 username caferibar 86770 unique_id port 86770 terminate_cause User-Request 86770 bytes_out 0 86770 bytes_in 0 86770 station_ip 5.121.139.249 86770 port 15728809 86770 nas_port_type Virtual 86721 bytes_in 4002609 86721 station_ip 83.122.202.179 86721 port 15728740 86721 nas_port_type Virtual 86721 remote_ip 5.5.5.217 86723 username aminvpn 86723 mac 86723 bytes_out 0 86723 bytes_in 0 86723 station_ip 83.122.202.179 86723 port 35 86723 unique_id port 86723 remote_ip 10.8.1.10 86730 username aminvpn 86730 unique_id port 86730 terminate_cause User-Request 86730 bytes_out 432508 86730 bytes_in 1803191 86730 station_ip 83.122.202.179 86730 port 15728766 86730 nas_port_type Virtual 86730 remote_ip 5.5.5.217 86732 username aminvpn 86732 mac 86732 bytes_out 243914 86732 bytes_in 713256 86732 station_ip 83.122.203.24 86732 port 21 86732 unique_id port 86732 remote_ip 10.8.0.6 86733 username aminvpn 86733 mac 86733 bytes_out 0 86733 bytes_in 0 86733 station_ip 83.122.202.179 86733 port 22 86733 unique_id port 86733 remote_ip 10.8.0.6 86745 username aminvpn 86745 mac 86745 bytes_out 0 86745 bytes_in 0 86745 station_ip 83.122.203.24 86745 port 21 86745 unique_id port 86745 remote_ip 10.8.0.6 86747 username soleymani 86747 unique_id port 86747 terminate_cause Lost-Carrier 86747 bytes_out 252796 86747 bytes_in 201028 86747 station_ip 5.119.23.227 86747 port 15728782 86747 nas_port_type Virtual 86747 remote_ip 5.5.5.201 86750 username avaanna 86750 unique_id port 86750 terminate_cause User-Request 86750 bytes_out 91265 86750 bytes_in 2154157 86750 station_ip 37.129.254.32 86750 port 15728790 86750 nas_port_type Virtual 86750 remote_ip 5.5.5.207 86763 username madadi 86763 unique_id port 86763 terminate_cause Lost-Carrier 86763 bytes_out 43169 86763 bytes_in 205834 86763 station_ip 5.119.153.230 86763 port 15728791 86763 nas_port_type Virtual 86763 remote_ip 5.5.5.199 86769 username ahmadipour 86769 unique_id port 86769 terminate_cause Lost-Carrier 86769 bytes_out 302590 86769 bytes_in 3906081 86769 station_ip 83.122.7.39 86769 port 15728807 86769 nas_port_type Virtual 86769 remote_ip 5.5.5.193 86778 username forozande 86778 unique_id port 86778 terminate_cause User-Request 86778 bytes_out 36097 86778 bytes_in 445279 86778 station_ip 83.122.136.228 86778 port 15728815 86778 nas_port_type Virtual 86778 remote_ip 5.5.5.189 86780 username forozande 86780 unique_id port 86780 terminate_cause User-Request 86780 bytes_out 7578 86780 bytes_in 15715 86780 station_ip 83.122.136.228 86780 port 15728818 86780 nas_port_type Virtual 86780 remote_ip 5.5.5.189 86781 username asadi 86781 unique_id port 86781 terminate_cause User-Request 86781 bytes_out 192862 86781 bytes_in 3421051 86781 station_ip 83.122.178.165 86781 port 15728822 86781 nas_port_type Virtual 86781 remote_ip 5.5.5.238 86785 username aminvpn 86785 unique_id port 86785 terminate_cause Lost-Carrier 86785 bytes_out 2384203 86785 bytes_in 41650420 86785 station_ip 5.119.128.115 86785 port 15728817 86785 nas_port_type Virtual 86785 remote_ip 5.5.5.188 86786 username forozande 86786 unique_id port 86786 terminate_cause User-Request 86786 bytes_out 108424 86786 bytes_in 2082778 86786 station_ip 83.122.209.151 86786 port 15728825 86786 nas_port_type Virtual 86786 remote_ip 5.5.5.183 86787 username madadi 86787 unique_id port 86787 terminate_cause Lost-Carrier 86787 bytes_out 84130 86787 bytes_in 947189 86787 station_ip 5.120.57.22 86787 port 15728824 86787 nas_port_type Virtual 86787 remote_ip 5.5.5.184 86792 username zamanialireza 86792 unique_id port 86792 terminate_cause User-Request 86792 bytes_out 404460 86792 bytes_in 6983951 86792 station_ip 83.122.54.96 86792 port 15728831 86792 nas_port_type Virtual 86792 remote_ip 5.5.5.181 86741 bytes_out 70952 86741 bytes_in 193472 86741 station_ip 83.123.160.9 86741 port 15728778 86741 nas_port_type Virtual 86741 remote_ip 5.5.5.202 86746 username ksrkrgr 86746 unique_id port 86746 terminate_cause User-Request 86746 bytes_out 3044419 86746 bytes_in 32563836 86746 station_ip 85.185.171.99 86746 port 15728742 86746 nas_port_type Virtual 86746 remote_ip 5.5.5.219 86748 username alinezhad 86748 unique_id port 86748 terminate_cause User-Request 86748 bytes_out 60901 86748 bytes_in 856103 86748 station_ip 5.202.61.11 86748 port 15728784 86748 nas_port_type Virtual 86748 remote_ip 5.5.5.222 86756 username avaanna 86756 unique_id port 86756 terminate_cause User-Request 86756 bytes_out 54321 86756 bytes_in 446124 86756 station_ip 37.129.254.32 86756 port 15728795 86756 nas_port_type Virtual 86756 remote_ip 5.5.5.207 86761 username forozande 86761 unique_id port 86761 terminate_cause User-Request 86761 bytes_out 190392 86761 bytes_in 859672 86761 station_ip 83.123.139.167 86761 port 15728800 86761 nas_port_type Virtual 86761 remote_ip 5.5.5.197 86766 username alinezhad 86766 unique_id port 86766 terminate_cause User-Request 86766 bytes_out 0 86766 bytes_in 0 86766 station_ip 5.202.61.11 86766 port 15728803 86766 nas_port_type Virtual 86766 remote_ip 5.5.5.222 86773 username forozande 86773 unique_id port 86773 terminate_cause User-Request 86773 bytes_out 26021 86773 bytes_in 112569 86773 station_ip 83.122.136.228 86773 port 15728812 86773 nas_port_type Virtual 86773 remote_ip 5.5.5.189 86775 username forozande 86775 unique_id port 86775 terminate_cause User-Request 86775 bytes_out 125859 86775 bytes_in 1562128 86775 station_ip 83.122.136.228 86775 port 15728813 86775 nas_port_type Virtual 86775 remote_ip 5.5.5.189 86783 username madadi 86783 unique_id port 86783 terminate_cause Lost-Carrier 86783 bytes_out 27587 86783 bytes_in 149803 86783 station_ip 5.120.89.223 86783 port 15728819 86783 nas_port_type Virtual 86783 remote_ip 5.5.5.187 86788 username alinezhad 86788 unique_id port 86788 terminate_cause User-Request 86788 bytes_out 76145 86788 bytes_in 896031 86788 station_ip 5.202.61.11 86788 port 15728826 86788 nas_port_type Virtual 86788 remote_ip 5.5.5.222 86790 username forozande 86790 unique_id port 86790 terminate_cause User-Request 86790 bytes_out 46526 86790 bytes_in 166383 86790 station_ip 83.123.237.156 86790 port 15728829 86790 nas_port_type Virtual 86790 remote_ip 5.5.5.182 86791 username forozande 86791 unique_id port 86791 terminate_cause User-Request 86791 bytes_out 24972 86791 bytes_in 124388 86791 station_ip 83.123.237.156 86791 port 15728830 86791 nas_port_type Virtual 86791 remote_ip 5.5.5.182 86795 username alinezhad 86795 unique_id port 86795 terminate_cause User-Request 86795 bytes_out 0 86795 bytes_in 0 86795 station_ip 5.202.61.11 86795 port 15728833 86795 nas_port_type Virtual 86795 remote_ip 5.5.5.222 86800 username amir 86800 unique_id port 86800 terminate_cause Lost-Carrier 86800 bytes_out 16964057 86800 bytes_in 191661576 86800 station_ip 46.225.232.170 86800 port 15728783 86800 nas_port_type Virtual 86800 remote_ip 5.5.5.215 86801 username khalili 86801 unique_id port 86801 terminate_cause Lost-Carrier 86801 bytes_out 6141110 86801 bytes_in 58082893 86801 station_ip 5.119.198.217 86801 port 15728695 86801 nas_port_type Virtual 86801 remote_ip 5.5.5.232 86803 username ksrkrgr 86803 unique_id port 86803 terminate_cause User-Request 86803 bytes_out 0 86803 bytes_in 0 86803 station_ip 85.185.171.99 86803 port 15728839 86803 nas_port_type Virtual 86803 remote_ip 5.5.5.176 86807 username soleymani 86807 unique_id port 86762 port 15728798 86762 nas_port_type Virtual 86762 remote_ip 5.5.5.224 86764 username forozande 86764 unique_id port 86764 terminate_cause User-Request 86764 bytes_out 10225 86764 bytes_in 32996 86764 station_ip 83.123.139.167 86764 port 15728801 86764 nas_port_type Virtual 86764 remote_ip 5.5.5.197 86765 username forozande 86765 unique_id port 86765 terminate_cause User-Request 86765 bytes_out 27511 86765 bytes_in 178314 86765 station_ip 83.123.139.167 86765 port 15728802 86765 nas_port_type Virtual 86765 remote_ip 5.5.5.197 86772 username shahnaz 86772 unique_id port 86772 terminate_cause User-Request 86772 bytes_out 4031428 86772 bytes_in 76004592 86772 station_ip 5.119.161.126 86772 port 15728765 86772 nas_port_type Virtual 86772 remote_ip 5.5.5.206 86776 username caferibar 86776 unique_id port 86776 terminate_cause Lost-Carrier 86776 bytes_out 2065170 86776 bytes_in 72663062 86776 station_ip 151.238.235.184 86776 port 15728805 86776 nas_port_type Virtual 86776 remote_ip 5.5.5.195 86779 username forozande 86779 unique_id port 86779 terminate_cause User-Request 86779 bytes_out 17722 86779 bytes_in 37055 86779 station_ip 83.122.136.228 86779 port 15728816 86779 nas_port_type Virtual 86779 remote_ip 5.5.5.189 86782 username alinezhad 86782 unique_id port 86782 terminate_cause User-Request 86782 bytes_out 0 86782 bytes_in 0 86782 station_ip 5.202.61.11 86782 port 15728823 86782 nas_port_type Virtual 86782 remote_ip 5.5.5.222 86784 username aminvpn 86784 unique_id port 86784 terminate_cause User-Request 86784 bytes_out 1510955 86784 bytes_in 37615459 86784 station_ip 46.100.222.218 86784 port 15728821 86784 nas_port_type Virtual 86784 remote_ip 5.5.5.185 86793 username aminvpn 86793 mac 86793 bytes_out 2459371 86793 bytes_in 25571613 86793 station_ip 83.123.125.230 86793 port 21 86793 unique_id port 86793 remote_ip 10.8.0.6 86796 username heydari 86796 unique_id port 86796 terminate_cause Lost-Carrier 86796 bytes_out 201268553 86796 bytes_in 37911190 86796 station_ip 5.119.11.246 86796 port 15728705 86796 nas_port_type Virtual 86796 remote_ip 5.5.5.244 86798 username zamanialireza 86798 unique_id port 86798 terminate_cause User-Request 86798 bytes_out 149915 86798 bytes_in 1067648 86798 station_ip 5.160.115.84 86798 port 15728834 86798 nas_port_type Virtual 86798 remote_ip 5.5.5.180 86805 username ksrkrgr 86805 unique_id port 86805 terminate_cause Lost-Carrier 86805 bytes_out 3776941 86805 bytes_in 5867892 86805 station_ip 85.185.171.99 86805 port 15728828 86805 nas_port_type Virtual 86805 remote_ip 5.5.5.219 86813 username aminvpn 86813 mac 86813 bytes_out 0 86813 bytes_in 0 86813 station_ip 83.122.202.179 86813 port 21 86813 unique_id port 86813 remote_ip 10.8.0.6 86821 username zamanialireza 86821 unique_id port 86821 terminate_cause User-Request 86821 bytes_out 18851096 86821 bytes_in 454178514 86821 station_ip 5.62.199.247 86821 port 15728848 86821 nas_port_type Virtual 86821 remote_ip 5.5.5.169 86824 username shokokian 86824 unique_id port 86824 terminate_cause Lost-Carrier 86824 bytes_out 1365064 86824 bytes_in 32385571 86824 station_ip 31.56.219.135 86824 port 15728846 86824 nas_port_type Virtual 86824 remote_ip 5.5.5.171 86828 username ahmadi 86828 unique_id port 86828 terminate_cause User-Request 86828 bytes_out 89990 86828 bytes_in 491987 86828 station_ip 83.122.22.211 86828 port 15728861 86828 nas_port_type Virtual 86828 remote_ip 5.5.5.163 86831 username madadi 86831 unique_id port 86831 terminate_cause Lost-Carrier 86831 bytes_out 171206 86831 bytes_in 472140 86831 station_ip 5.119.110.42 86831 port 15728852 86831 nas_port_type Virtual 86770 remote_ip 5.5.5.191 86771 username alinezhad 86771 unique_id port 86771 terminate_cause User-Request 86771 bytes_out 12517 86771 bytes_in 33109 86771 station_ip 5.202.61.11 86771 port 15728810 86771 nas_port_type Virtual 86771 remote_ip 5.5.5.222 86774 username shahrooz 86774 unique_id port 86774 terminate_cause Lost-Carrier 86774 bytes_out 83767 86774 bytes_in 757619 86774 station_ip 83.122.55.210 86774 port 15728811 86774 nas_port_type Virtual 86774 remote_ip 5.5.5.190 86777 username forozande 86777 unique_id port 86777 terminate_cause User-Request 86777 bytes_out 46775 86777 bytes_in 733661 86777 station_ip 83.122.136.228 86777 port 15728814 86777 nas_port_type Virtual 86777 remote_ip 5.5.5.189 86789 username amirabbas 86789 unique_id port 86789 terminate_cause User-Request 86789 bytes_out 4659782 86789 bytes_in 62273255 86789 station_ip 151.238.235.148 86789 port 15728808 86789 nas_port_type Virtual 86789 remote_ip 5.5.5.192 86797 username aminvpn 86797 unique_id port 86797 terminate_cause Lost-Carrier 86797 bytes_out 4243676 86797 bytes_in 66464854 86797 station_ip 46.100.222.218 86797 port 15728827 86797 nas_port_type Virtual 86797 remote_ip 5.5.5.185 86809 username amirabbas 86809 unique_id port 86809 terminate_cause User-Request 86809 bytes_out 8268473 86809 bytes_in 245611837 86809 station_ip 151.238.235.148 86809 port 15728836 86809 nas_port_type Virtual 86809 remote_ip 5.5.5.192 86812 username zamanialireza 86812 unique_id port 86812 terminate_cause User-Request 86812 bytes_out 173984 86812 bytes_in 2461787 86812 station_ip 83.122.35.132 86812 port 15728844 86812 nas_port_type Virtual 86812 remote_ip 5.5.5.173 86814 username forozande 86814 unique_id port 86814 terminate_cause User-Request 86814 bytes_out 39390 86814 bytes_in 45185 86814 station_ip 83.122.96.199 86814 port 15728845 86814 nas_port_type Virtual 86814 remote_ip 5.5.5.172 86817 username soleymani 86817 unique_id port 86817 terminate_cause Lost-Carrier 86817 bytes_out 32308 86817 bytes_in 208276 86817 station_ip 5.120.109.32 86817 port 15728847 86817 nas_port_type Virtual 86817 remote_ip 5.5.5.170 86818 username forozande 86818 unique_id port 86818 terminate_cause User-Request 86818 bytes_out 42284 86818 bytes_in 360040 86818 station_ip 83.122.96.199 86818 port 15728851 86818 nas_port_type Virtual 86818 remote_ip 5.5.5.172 86826 username khalili 86826 kill_reason Maximum check online fails reached 86826 unique_id port 86826 bytes_out 1819890 86826 bytes_in 17472952 86826 station_ip 5.119.198.217 86826 port 15728854 86826 nas_port_type Virtual 86826 remote_ip 5.5.5.232 86840 username alinezhad 86840 unique_id port 86840 terminate_cause User-Request 86840 bytes_out 299185 86840 bytes_in 3960298 86840 station_ip 5.202.61.11 86840 port 15728868 86840 nas_port_type Virtual 86840 remote_ip 5.5.5.222 86847 username kamali 86847 unique_id port 86847 terminate_cause User-Request 86847 bytes_out 113940 86847 bytes_in 104133 86847 station_ip 83.123.114.157 86847 port 15728876 86847 nas_port_type Virtual 86847 remote_ip 5.5.5.156 86852 username soleymani 86852 unique_id port 86852 terminate_cause Lost-Carrier 86852 bytes_out 92425 86852 bytes_in 355772 86852 station_ip 5.119.112.155 86852 port 15728877 86852 nas_port_type Virtual 86852 remote_ip 5.5.5.155 86854 username soleymani 86854 unique_id port 86854 terminate_cause Lost-Carrier 86854 bytes_out 59590 86854 bytes_in 798150 86854 station_ip 5.120.102.9 86854 port 15728881 86854 nas_port_type Virtual 86854 remote_ip 5.5.5.153 86855 username ahmadipour 86855 unique_id port 86855 terminate_cause Lost-Carrier 86855 bytes_out 11930 86855 bytes_in 87477 86855 station_ip 83.122.17.115 86794 username zamanialireza 86794 unique_id port 86794 terminate_cause User-Request 86794 bytes_out 92868 86794 bytes_in 109670 86794 station_ip 83.122.54.96 86794 port 15728832 86794 nas_port_type Virtual 86794 remote_ip 5.5.5.181 86799 username ahmadipour 86799 unique_id port 86799 terminate_cause Lost-Carrier 86799 bytes_out 21387566 86799 bytes_in 989952 86799 station_ip 83.122.118.11 86799 port 15728837 86799 nas_port_type Virtual 86799 remote_ip 5.5.5.178 86802 username shahrooz 86802 unique_id port 86802 terminate_cause Lost-Carrier 86802 bytes_out 3567929 86802 bytes_in 51039250 86802 station_ip 37.129.198.252 86802 port 15728820 86802 nas_port_type Virtual 86802 remote_ip 5.5.5.186 86804 username soleymani 86804 unique_id port 86804 terminate_cause Lost-Carrier 86804 bytes_out 196876 86804 bytes_in 1105340 86804 station_ip 5.120.162.116 86804 port 15728835 86804 nas_port_type Virtual 86804 remote_ip 5.5.5.179 86806 username aminvpn 86806 mac 86806 bytes_out 717795 86806 bytes_in 10325290 86806 station_ip 83.122.202.179 86806 port 21 86806 unique_id port 86806 remote_ip 10.8.0.6 86810 username forozande 86810 unique_id port 86810 terminate_cause User-Request 86810 bytes_out 81766 86810 bytes_in 56386 86810 station_ip 83.123.183.10 86810 port 15728842 86810 nas_port_type Virtual 86810 remote_ip 5.5.5.174 86815 username aminvpn 86815 mac 86815 bytes_out 123746 86815 bytes_in 368913 86815 station_ip 83.122.202.179 86815 port 21 86815 unique_id port 86815 remote_ip 10.8.0.6 86816 username forozande 86816 unique_id port 86816 terminate_cause User-Request 86816 bytes_out 17643 86816 bytes_in 64465 86816 station_ip 83.122.96.199 86816 port 15728850 86816 nas_port_type Virtual 86816 remote_ip 5.5.5.172 86819 username forozande 86819 unique_id port 86819 terminate_cause User-Request 86819 bytes_out 297613 86819 bytes_in 5164204 86819 station_ip 83.122.96.199 86819 port 15728853 86819 nas_port_type Virtual 86819 remote_ip 5.5.5.172 86820 username aminvpn 86820 mac 86820 bytes_out 112758 86820 bytes_in 50740 86820 station_ip 83.122.202.179 86820 port 21 86820 unique_id port 86820 remote_ip 10.8.0.6 86822 username ahmadipour 86822 unique_id port 86822 terminate_cause Lost-Carrier 86822 bytes_out 45678 86822 bytes_in 338397 86822 station_ip 83.122.35.3 86822 port 15728857 86822 nas_port_type Virtual 86822 remote_ip 5.5.5.166 86825 username mahbobeh 86825 unique_id port 86825 terminate_cause Lost-Carrier 86825 bytes_out 1489246 86825 bytes_in 21015552 86825 station_ip 113.203.24.99 86825 port 15728840 86825 nas_port_type Virtual 86825 remote_ip 5.5.5.175 86829 username aminvpn 86829 unique_id port 86829 terminate_cause User-Request 86829 bytes_out 148299 86829 bytes_in 521082 86829 station_ip 37.129.23.56 86829 port 15728859 86829 nas_port_type Virtual 86829 remote_ip 5.5.5.164 86833 username heydari 86833 unique_id port 86833 terminate_cause Lost-Carrier 86833 bytes_out 49156 86833 bytes_in 557384 86833 station_ip 5.119.11.246 86833 port 15728849 86833 nas_port_type Virtual 86833 remote_ip 5.5.5.244 86838 username ksrkrgr 86838 unique_id port 86838 terminate_cause User-Request 86838 bytes_out 776931 86838 bytes_in 16374604 86838 station_ip 85.185.171.99 86838 port 15728866 86838 nas_port_type Virtual 86838 remote_ip 5.5.5.176 86843 username alinezhad 86843 unique_id port 86843 terminate_cause User-Request 86843 bytes_out 43127 86843 bytes_in 520700 86843 station_ip 5.202.61.11 86843 port 15728873 86843 nas_port_type Virtual 86843 remote_ip 5.5.5.222 86846 username kamali 86846 unique_id port 86846 terminate_cause User-Request 86807 terminate_cause Lost-Carrier 86807 bytes_out 20596 86807 bytes_in 150494 86807 station_ip 5.119.246.23 86807 port 15728838 86807 nas_port_type Virtual 86807 remote_ip 5.5.5.177 86808 username forozande 86808 unique_id port 86808 terminate_cause User-Request 86808 bytes_out 333666 86808 bytes_in 9360394 86808 station_ip 83.123.183.10 86808 port 15728841 86808 nas_port_type Virtual 86808 remote_ip 5.5.5.174 86811 username forozande 86811 unique_id port 86811 terminate_cause User-Request 86811 bytes_out 118518 86811 bytes_in 1504469 86811 station_ip 83.123.183.10 86811 port 15728843 86811 nas_port_type Virtual 86811 remote_ip 5.5.5.174 86823 username aminvpn 86823 unique_id port 86823 terminate_cause User-Request 86823 bytes_out 1391663 86823 bytes_in 18188768 86823 station_ip 37.129.23.56 86823 port 15728855 86823 nas_port_type Virtual 86823 remote_ip 5.5.5.167 86827 username forozande 86827 unique_id port 86827 terminate_cause User-Request 86827 bytes_out 44281 86827 bytes_in 348756 86827 station_ip 83.123.201.246 86827 port 15728862 86827 nas_port_type Virtual 86827 remote_ip 5.5.5.162 86830 username aminvpn 86830 mac 86830 bytes_out 462537 86830 bytes_in 123859 86830 station_ip 37.129.23.56 86830 port 22 86830 unique_id port 86830 remote_ip 10.8.0.6 86834 username alinezhad 86834 unique_id port 86834 terminate_cause User-Request 86834 bytes_out 0 86834 bytes_in 0 86834 station_ip 5.202.61.11 86834 port 15728865 86834 nas_port_type Virtual 86834 remote_ip 5.5.5.222 86836 username zamanialireza 86836 unique_id port 86836 terminate_cause User-Request 86836 bytes_out 4649123 86836 bytes_in 188856591 86836 station_ip 5.62.199.247 86836 port 15728860 86836 nas_port_type Virtual 86836 remote_ip 5.5.5.169 86837 username aminvpn 86837 kill_reason Another user logged on this global unique id 86837 mac 86837 bytes_out 0 86837 bytes_in 0 86837 station_ip 5.119.116.75 86837 port 21 86837 unique_id port 86841 username forozande 86841 unique_id port 86841 terminate_cause User-Request 86841 bytes_out 60335 86841 bytes_in 238103 86841 station_ip 83.123.207.172 86841 port 15728870 86841 nas_port_type Virtual 86841 remote_ip 5.5.5.159 86844 username heydari 86844 unique_id port 86844 terminate_cause Lost-Carrier 86844 bytes_out 28790 86844 bytes_in 292968 86844 station_ip 5.119.11.246 86844 port 15728869 86844 nas_port_type Virtual 86844 remote_ip 5.5.5.244 86845 username mahbobeh 86845 unique_id port 86845 terminate_cause Lost-Carrier 86845 bytes_out 112851 86845 bytes_in 1255108 86845 station_ip 113.203.24.99 86845 port 15728863 86845 nas_port_type Virtual 86845 remote_ip 5.5.5.175 86849 username ahmadipour 86849 unique_id port 86849 terminate_cause Lost-Carrier 86849 bytes_out 21491 86849 bytes_in 741952 86849 station_ip 83.122.17.115 86849 port 15728864 86849 nas_port_type Virtual 86849 remote_ip 5.5.5.161 86850 username shahnaz 86850 unique_id port 86850 terminate_cause User-Request 86850 bytes_out 542412 86850 bytes_in 8803969 86850 station_ip 5.119.161.126 86850 port 15728875 86850 nas_port_type Virtual 86850 remote_ip 5.5.5.206 86851 username zamanialireza 86851 unique_id port 86851 terminate_cause User-Request 86851 bytes_out 280443 86851 bytes_in 6024625 86851 station_ip 83.122.14.156 86851 port 15728880 86851 nas_port_type Virtual 86851 remote_ip 5.5.5.154 86860 username mahbobeh 86860 unique_id port 86860 terminate_cause Lost-Carrier 86860 bytes_out 1301605 86860 bytes_in 19249223 86860 station_ip 113.203.24.99 86860 port 15728883 86860 nas_port_type Virtual 86860 remote_ip 5.5.5.175 86868 username afarin 86868 unique_id port 86868 terminate_cause User-Request 86831 remote_ip 5.5.5.168 86832 username ksrkrgr 86832 unique_id port 86832 terminate_cause Lost-Carrier 86832 bytes_out 1744766 86832 bytes_in 31494560 86832 station_ip 85.185.171.99 86832 port 15728856 86832 nas_port_type Virtual 86832 remote_ip 5.5.5.176 86835 username aminvpn 86835 kill_reason Another user logged on this global unique id 86835 mac 86835 bytes_out 0 86835 bytes_in 0 86835 station_ip 5.119.116.75 86835 port 21 86835 unique_id port 86835 remote_ip 10.8.0.6 86839 username aminvpn 86839 kill_reason Another user logged on this global unique id 86839 mac 86839 bytes_out 0 86839 bytes_in 0 86839 station_ip 5.119.116.75 86839 port 21 86839 unique_id port 86842 username aminvpn 86842 kill_reason Another user logged on this global unique id 86842 mac 86842 bytes_out 0 86842 bytes_in 0 86842 station_ip 5.119.116.75 86842 port 21 86842 unique_id port 86856 username madadi 86856 unique_id port 86856 terminate_cause Lost-Carrier 86856 bytes_out 187701 86856 bytes_in 689557 86856 station_ip 5.120.85.52 86856 port 15728872 86856 nas_port_type Virtual 86856 remote_ip 5.5.5.157 86857 username ahmadipour 86857 unique_id port 86857 terminate_cause Lost-Carrier 86857 bytes_out 23826 86857 bytes_in 212663 86857 station_ip 83.122.17.115 86857 port 15728886 86857 nas_port_type Virtual 86857 remote_ip 5.5.5.152 86859 username farhad 86859 unique_id port 86859 terminate_cause Lost-Carrier 86859 bytes_out 8429245 86859 bytes_in 172384736 86859 station_ip 5.119.187.199 86859 port 15728871 86859 nas_port_type Virtual 86859 remote_ip 5.5.5.158 86862 username forozande 86862 unique_id port 86862 terminate_cause User-Request 86862 bytes_out 34049 86862 bytes_in 97778 86862 station_ip 83.123.198.233 86862 port 15728890 86862 nas_port_type Virtual 86862 remote_ip 5.5.5.149 86863 username afarin 86863 unique_id port 86863 terminate_cause User-Request 86863 bytes_out 0 86863 bytes_in 0 86863 station_ip 83.123.172.184 86863 port 15728891 86863 nas_port_type Virtual 86863 remote_ip 5.5.5.194 86865 username farhad 86865 unique_id port 86865 terminate_cause Lost-Carrier 86865 bytes_out 7401590 86865 bytes_in 302510674 86865 station_ip 5.119.212.142 86865 port 15728889 86865 nas_port_type Virtual 86865 remote_ip 5.5.5.150 86866 username madadi 86866 unique_id port 86866 terminate_cause Lost-Carrier 86866 bytes_out 78203 86866 bytes_in 357565 86866 station_ip 5.119.173.80 86866 port 15728887 86866 nas_port_type Virtual 86866 remote_ip 5.5.5.151 86867 username ahmadipour 86867 unique_id port 86867 terminate_cause Lost-Carrier 86867 bytes_out 10117 86867 bytes_in 48855 86867 station_ip 83.122.56.79 86867 port 15728893 86867 nas_port_type Virtual 86867 remote_ip 5.5.5.148 86871 username aminvpn 86871 kill_reason Another user logged on this global unique id 86871 mac 86871 bytes_out 0 86871 bytes_in 0 86871 station_ip 5.119.116.75 86871 port 21 86871 unique_id port 86877 username alinezhad 86877 unique_id port 86877 terminate_cause User-Request 86877 bytes_out 316977 86877 bytes_in 1814802 86877 station_ip 5.202.61.11 86877 port 15728885 86877 nas_port_type Virtual 86877 remote_ip 5.5.5.222 86880 username alirezazamani 86880 kill_reason Relative expiration date has reached 86880 unique_id port 86880 bytes_out 0 86880 bytes_in 0 86880 station_ip 78.39.157.2 86880 port 15728904 86880 nas_port_type Virtual 86889 username asadi 86889 unique_id port 86889 terminate_cause User-Request 86889 bytes_out 165267 86889 bytes_in 3229174 86889 station_ip 37.129.77.166 86889 port 15728915 86889 nas_port_type Virtual 86889 remote_ip 5.5.5.138 86891 username forozande 86891 unique_id port 86846 bytes_out 60823 86846 bytes_in 99303 86846 station_ip 83.123.114.157 86846 port 15728874 86846 nas_port_type Virtual 86846 remote_ip 5.5.5.156 86848 username kamali 86848 unique_id port 86848 terminate_cause User-Request 86848 bytes_out 1980222 86848 bytes_in 47641517 86848 station_ip 83.123.114.157 86848 port 15728878 86848 nas_port_type Virtual 86848 remote_ip 5.5.5.156 86853 username ahmadi 86853 unique_id port 86853 terminate_cause User-Request 86853 bytes_out 0 86853 bytes_in 0 86853 station_ip 83.122.22.211 86853 port 15728882 86853 nas_port_type Virtual 86853 remote_ip 5.5.5.163 86858 username aminvpn 86858 kill_reason Another user logged on this global unique id 86858 mac 86858 bytes_out 0 86858 bytes_in 0 86858 station_ip 5.119.116.75 86858 port 21 86858 unique_id port 86864 username heydari 86864 unique_id port 86864 terminate_cause Lost-Carrier 86864 bytes_out 208734 86864 bytes_in 2395766 86864 station_ip 5.119.11.246 86864 port 15728879 86864 nas_port_type Virtual 86864 remote_ip 5.5.5.244 86872 username afarin 86872 unique_id port 86872 terminate_cause User-Request 86872 bytes_out 9657717 86872 bytes_in 199136 86872 station_ip 83.123.172.184 86872 port 15728899 86872 nas_port_type Virtual 86872 remote_ip 5.5.5.194 86874 username afarin 86874 unique_id port 86874 terminate_cause User-Request 86874 bytes_out 15109 86874 bytes_in 44767 86874 station_ip 83.123.172.184 86874 port 15728901 86874 nas_port_type Virtual 86874 remote_ip 5.5.5.194 86879 username alirezazamani 86879 kill_reason Relative expiration date has reached 86879 unique_id port 86879 bytes_out 0 86879 bytes_in 0 86879 station_ip 78.39.157.2 86879 port 15728903 86879 nas_port_type Virtual 86882 username heydari 86882 unique_id port 86882 terminate_cause Lost-Carrier 86882 bytes_out 314192 86882 bytes_in 4984860 86882 station_ip 5.119.11.246 86882 port 15728892 86882 nas_port_type Virtual 86882 remote_ip 5.5.5.244 86885 username forozande 86885 unique_id port 86885 terminate_cause User-Request 86885 bytes_out 173377 86885 bytes_in 5080844 86885 station_ip 83.122.207.196 86885 port 15728908 86885 nas_port_type Virtual 86885 remote_ip 5.5.5.141 86887 username alinezhad 86887 unique_id port 86887 terminate_cause User-Request 86887 bytes_out 0 86887 bytes_in 0 86887 station_ip 5.202.61.11 86887 port 15728910 86887 nas_port_type Virtual 86887 remote_ip 5.5.5.222 86892 username madadi 86892 unique_id port 86892 terminate_cause Lost-Carrier 86892 bytes_out 79916 86892 bytes_in 2147113 86892 station_ip 5.120.34.169 86892 port 15728914 86892 nas_port_type Virtual 86892 remote_ip 5.5.5.139 86894 username avaanna 86894 unique_id port 86894 terminate_cause User-Request 86894 bytes_out 11694 86894 bytes_in 35712 86894 station_ip 37.129.29.13 86894 port 15728921 86894 nas_port_type Virtual 86894 remote_ip 5.5.5.135 86903 username forozande 86903 unique_id port 86903 terminate_cause User-Request 86903 bytes_out 9823 86903 bytes_in 58262 86903 station_ip 83.123.178.45 86903 port 15728931 86903 nas_port_type Virtual 86903 remote_ip 5.5.5.128 86905 username madadi 86905 unique_id port 86905 terminate_cause Lost-Carrier 86905 bytes_out 12829 86905 bytes_in 122230 86905 station_ip 5.120.1.202 86905 port 15728930 86905 nas_port_type Virtual 86905 remote_ip 5.5.5.129 86911 username mahdixz 86911 unique_id port 86911 terminate_cause User-Request 86911 bytes_out 438463 86911 bytes_in 5995318 86911 station_ip 151.235.123.225 86911 port 15728936 86911 nas_port_type Virtual 86911 remote_ip 5.5.5.224 86918 username caferibar 86918 unique_id port 86918 terminate_cause User-Request 86918 bytes_out 0 86855 port 15728884 86855 nas_port_type Virtual 86855 remote_ip 5.5.5.161 86861 username ahmadi 86861 unique_id port 86861 terminate_cause User-Request 86861 bytes_out 1600734 86861 bytes_in 1516581 86861 station_ip 83.122.22.211 86861 port 15728888 86861 nas_port_type Virtual 86861 remote_ip 5.5.5.163 86870 username afarin 86870 unique_id port 86870 terminate_cause User-Request 86870 bytes_out 684174 86870 bytes_in 6202580 86870 station_ip 83.123.172.184 86870 port 15728898 86870 nas_port_type Virtual 86870 remote_ip 5.5.5.194 86873 username farhad 86873 kill_reason Maximum check online fails reached 86873 unique_id port 86873 bytes_out 440059 86873 bytes_in 4165508 86873 station_ip 5.119.10.200 86873 port 15728900 86873 nas_port_type Virtual 86873 remote_ip 5.5.5.144 86875 username madadi 86875 unique_id port 86875 terminate_cause Lost-Carrier 86875 bytes_out 456135 86875 bytes_in 6543274 86875 station_ip 5.120.150.97 86875 port 15728895 86875 nas_port_type Virtual 86875 remote_ip 5.5.5.147 86876 username caferibar 86876 unique_id port 86876 terminate_cause NAS-Error 86876 bytes_out 62 86876 bytes_in 148 86876 station_ip 5.122.52.195 86876 port 15728902 86876 nas_port_type Virtual 86876 remote_ip 5.5.5.143 86878 username soleymani 86878 unique_id port 86878 terminate_cause Lost-Carrier 86878 bytes_out 106226 86878 bytes_in 479967 86878 station_ip 5.119.34.162 86878 port 15728897 86878 nas_port_type Virtual 86878 remote_ip 5.5.5.145 86883 username zamanialireza 86883 unique_id port 86883 terminate_cause User-Request 86883 bytes_out 3146170 86883 bytes_in 13217604 86883 station_ip 83.122.133.64 86883 port 15728906 86883 nas_port_type Virtual 86883 remote_ip 5.5.5.142 86884 username forozande 86884 unique_id port 86884 terminate_cause User-Request 86884 bytes_out 39151 86884 bytes_in 72306 86884 station_ip 83.122.207.196 86884 port 15728907 86884 nas_port_type Virtual 86884 remote_ip 5.5.5.141 86886 username forozande 86886 unique_id port 86886 terminate_cause User-Request 86886 bytes_out 244940 86886 bytes_in 4081176 86886 station_ip 83.122.207.196 86886 port 15728909 86886 nas_port_type Virtual 86886 remote_ip 5.5.5.141 86888 username aminvpn 86888 mac 86888 bytes_out 0 86888 bytes_in 0 86888 station_ip 5.119.116.75 86888 port 21 86888 unique_id port 86890 username forozande 86890 unique_id port 86890 terminate_cause User-Request 86890 bytes_out 40636 86890 bytes_in 62618 86890 station_ip 83.122.196.140 86890 port 15728916 86890 nas_port_type Virtual 86890 remote_ip 5.5.5.137 86900 username avaanna 86900 unique_id port 86900 terminate_cause User-Request 86900 bytes_out 16555 86900 bytes_in 53407 86900 station_ip 83.122.118.39 86900 port 15728928 86900 nas_port_type Virtual 86900 remote_ip 5.5.5.131 86901 username madadi 86901 unique_id port 86901 terminate_cause Lost-Carrier 86901 bytes_out 465532 86901 bytes_in 19559063 86901 station_ip 5.119.97.212 86901 port 15728926 86901 nas_port_type Virtual 86901 remote_ip 5.5.5.132 86904 username aminvpn 86904 unique_id port 86904 terminate_cause Lost-Carrier 86904 bytes_out 1563277 86904 bytes_in 30929165 86904 station_ip 5.120.174.220 86904 port 15728929 86904 nas_port_type Virtual 86904 remote_ip 5.5.5.130 86908 username alinezhad 86908 unique_id port 86908 terminate_cause User-Request 86908 bytes_out 0 86908 bytes_in 0 86908 station_ip 5.202.61.11 86908 port 15728934 86908 nas_port_type Virtual 86908 remote_ip 5.5.5.222 86915 username ahmadipour 86915 unique_id port 86915 terminate_cause Lost-Carrier 86915 bytes_out 134952 86915 bytes_in 2500711 86915 station_ip 37.129.120.230 86915 port 15728941 86868 bytes_out 55251 86868 bytes_in 352735 86868 station_ip 83.123.172.184 86868 port 15728894 86868 nas_port_type Virtual 86868 remote_ip 5.5.5.194 86869 username ahmadipour 86869 unique_id port 86869 terminate_cause Lost-Carrier 86869 bytes_out 18819 86869 bytes_in 109295 86869 station_ip 83.122.14.239 86869 port 15728896 86869 nas_port_type Virtual 86869 remote_ip 5.5.5.146 86881 username alirezazamani 86881 kill_reason Relative expiration date has reached 86881 unique_id port 86881 bytes_out 0 86881 bytes_in 0 86881 station_ip 78.39.157.2 86881 port 15728905 86881 nas_port_type Virtual 86895 username avaanna 86895 unique_id port 86895 terminate_cause User-Request 86895 bytes_out 28119 86895 bytes_in 171965 86895 station_ip 37.129.29.13 86895 port 15728922 86895 nas_port_type Virtual 86895 remote_ip 5.5.5.135 86896 username arabpour 86896 unique_id port 86896 terminate_cause Lost-Carrier 86896 bytes_out 274904 86896 bytes_in 5930056 86896 station_ip 5.217.241.204 86896 port 15728917 86896 nas_port_type Virtual 86896 remote_ip 5.5.5.136 86906 username arman 86906 unique_id port 86906 terminate_cause Lost-Carrier 86906 bytes_out 17700997 86906 bytes_in 119874617 86906 station_ip 5.120.32.20 86906 port 15728858 86906 nas_port_type Virtual 86906 remote_ip 5.5.5.165 86910 username afarin 86910 unique_id port 86910 terminate_cause User-Request 86910 bytes_out 4316333 86910 bytes_in 367034 86910 station_ip 83.123.172.184 86910 port 15728935 86910 nas_port_type Virtual 86910 remote_ip 5.5.5.194 86920 username ahmadi 86920 unique_id port 86920 terminate_cause User-Request 86920 bytes_out 101217 86920 bytes_in 634687 86920 station_ip 83.123.153.46 86920 port 15728947 86920 nas_port_type Virtual 86920 remote_ip 5.5.5.119 86922 username madadi 86922 unique_id port 86922 terminate_cause Lost-Carrier 86922 bytes_out 512593 86922 bytes_in 1323607 86922 station_ip 5.120.70.182 86922 port 15728939 86922 nas_port_type Virtual 86922 remote_ip 5.5.5.123 86924 username forozande 86924 unique_id port 86924 terminate_cause User-Request 86924 bytes_out 48739 86924 bytes_in 121120 86924 station_ip 37.129.45.69 86924 port 15728949 86924 nas_port_type Virtual 86924 remote_ip 5.5.5.118 86931 username alinezhad 86931 unique_id port 86931 terminate_cause User-Request 86931 bytes_out 88921 86931 bytes_in 326289 86931 station_ip 5.202.61.11 86931 port 15728955 86931 nas_port_type Virtual 86931 remote_ip 5.5.5.222 86936 username aminvpn 86936 mac 86936 bytes_out 0 86936 bytes_in 0 86936 station_ip 113.203.82.215 86936 port 22 86936 unique_id port 86936 remote_ip 10.8.0.6 86942 username aminvpn 86942 mac 86942 bytes_out 0 86942 bytes_in 0 86942 station_ip 37.129.251.177 86942 port 21 86942 unique_id port 86942 remote_ip 10.8.0.6 86945 username aminvpn 86945 mac 86945 bytes_out 0 86945 bytes_in 0 86945 station_ip 113.203.82.215 86945 port 22 86945 unique_id port 86945 remote_ip 10.8.0.6 86949 username aminvpn 86949 mac 86949 bytes_out 0 86949 bytes_in 0 86949 station_ip 113.203.82.215 86949 port 22 86949 unique_id port 86949 remote_ip 10.8.0.6 86952 username aminvpn 86952 mac 86952 bytes_out 0 86952 bytes_in 0 86952 station_ip 37.129.251.177 86952 port 21 86952 unique_id port 86952 remote_ip 10.8.0.6 86958 username aminvpn 86958 mac 86958 bytes_out 0 86958 bytes_in 0 86958 station_ip 37.129.251.177 86958 port 21 86958 unique_id port 86958 remote_ip 10.8.0.6 86962 username forozande 86962 unique_id port 86962 terminate_cause User-Request 86962 bytes_out 34561 86962 bytes_in 102296 86891 terminate_cause User-Request 86891 bytes_out 23775 86891 bytes_in 51646 86891 station_ip 83.122.196.140 86891 port 15728918 86891 nas_port_type Virtual 86891 remote_ip 5.5.5.137 86893 username avaanna 86893 unique_id port 86893 terminate_cause User-Request 86893 bytes_out 0 86893 bytes_in 0 86893 station_ip 37.129.29.13 86893 port 15728919 86893 nas_port_type Virtual 86893 remote_ip 5.5.5.135 86897 username ahmadi 86897 unique_id port 86897 terminate_cause User-Request 86897 bytes_out 988298 86897 bytes_in 3886365 86897 station_ip 83.122.22.211 86897 port 15728923 86897 nas_port_type Virtual 86897 remote_ip 5.5.5.163 86898 username forozande 86898 unique_id port 86898 terminate_cause User-Request 86898 bytes_out 42359 86898 bytes_in 94238 86898 station_ip 83.122.138.62 86898 port 15728924 86898 nas_port_type Virtual 86898 remote_ip 5.5.5.133 86899 username asadi 86899 unique_id port 86899 terminate_cause User-Request 86899 bytes_out 96911 86899 bytes_in 1056949 86899 station_ip 37.129.77.166 86899 port 15728927 86899 nas_port_type Virtual 86899 remote_ip 5.5.5.138 86902 username aminvpn 86902 unique_id port 86902 terminate_cause Lost-Carrier 86902 bytes_out 6404091 86902 bytes_in 203742274 86902 station_ip 31.59.44.168 86902 port 15728911 86902 nas_port_type Virtual 86902 remote_ip 5.5.5.140 86907 username caferibar 86907 unique_id port 86907 terminate_cause Lost-Carrier 86907 bytes_out 245273 86907 bytes_in 1911766 86907 station_ip 5.121.240.230 86907 port 15728932 86907 nas_port_type Virtual 86907 remote_ip 5.5.5.127 86909 username madadi 86909 unique_id port 86909 terminate_cause Lost-Carrier 86909 bytes_out 7924 86909 bytes_in 119707 86909 station_ip 5.119.47.67 86909 port 15728933 86909 nas_port_type Virtual 86909 remote_ip 5.5.5.126 86912 username forozande 86912 unique_id port 86912 terminate_cause User-Request 86912 bytes_out 46474 86912 bytes_in 153989 86912 station_ip 83.123.79.226 86912 port 15728937 86912 nas_port_type Virtual 86912 remote_ip 5.5.5.125 86913 username madadi 86913 unique_id port 86913 terminate_cause Lost-Carrier 86913 bytes_out 10098 86913 bytes_in 122021 86913 station_ip 5.120.134.50 86913 port 15728938 86913 nas_port_type Virtual 86913 remote_ip 5.5.5.124 86914 username aminvpn 86914 unique_id port 86914 terminate_cause User-Request 86914 bytes_out 10584482 86914 bytes_in 110861968 86914 station_ip 5.119.116.75 86914 port 15728867 86914 nas_port_type Virtual 86914 remote_ip 5.5.5.160 86917 username caferibar 86917 unique_id port 86917 terminate_cause User-Request 86917 bytes_out 0 86917 bytes_in 0 86917 station_ip 5.122.242.57 86917 port 15728943 86917 nas_port_type Virtual 86917 remote_ip 5.5.5.120 86923 username mahdixz 86923 unique_id port 86923 terminate_cause User-Request 86923 bytes_out 1600102 86923 bytes_in 37197289 86923 station_ip 151.235.123.225 86923 port 15728948 86923 nas_port_type Virtual 86923 remote_ip 5.5.5.224 86926 username aminvpn 86926 unique_id port 86926 terminate_cause Lost-Carrier 86926 bytes_out 991 86926 bytes_in 125934 86926 station_ip 77.237.186.188 86926 port 15728952 86926 nas_port_type Virtual 86926 remote_ip 5.5.5.116 86932 username forozande 86932 unique_id port 86932 terminate_cause User-Request 86932 bytes_out 107061 86932 bytes_in 194260 86932 station_ip 37.129.129.161 86932 port 15728959 86932 nas_port_type Virtual 86932 remote_ip 5.5.5.111 86935 username alinezhad 86935 unique_id port 86935 terminate_cause User-Request 86935 bytes_out 0 86935 bytes_in 0 86935 station_ip 5.202.61.11 86935 port 15728962 86935 nas_port_type Virtual 86935 remote_ip 5.5.5.222 86939 username aminvpn 86939 mac 86915 nas_port_type Virtual 86915 remote_ip 5.5.5.121 86916 username ahmadipour 86916 unique_id port 86916 terminate_cause Lost-Carrier 86916 bytes_out 6362 86916 bytes_in 15839 86916 station_ip 37.129.120.230 86916 port 15728942 86916 nas_port_type Virtual 86916 remote_ip 5.5.5.121 86921 username caferibar 86921 unique_id port 86921 terminate_cause Lost-Carrier 86921 bytes_out 1049893 86921 bytes_in 15575875 86921 station_ip 5.122.242.57 86921 port 15728945 86921 nas_port_type Virtual 86921 remote_ip 5.5.5.120 86925 username amirabbas 86925 unique_id port 86925 terminate_cause Lost-Carrier 86925 bytes_out 42386661 86925 bytes_in 1211373741 86925 station_ip 31.59.38.182 86925 port 15728920 86925 nas_port_type Virtual 86925 remote_ip 5.5.5.134 86928 username forozande 86928 unique_id port 86928 terminate_cause User-Request 86928 bytes_out 154014 86928 bytes_in 1270193 86928 station_ip 37.129.220.32 86928 port 15728954 86928 nas_port_type Virtual 86928 remote_ip 5.5.5.115 86934 username aminvpn 86934 mac 86934 bytes_out 1995361 86934 bytes_in 11522602 86934 station_ip 37.129.251.177 86934 port 21 86934 unique_id port 86934 remote_ip 10.8.0.6 86938 username aminvpn 86938 mac 86938 bytes_out 0 86938 bytes_in 0 86938 station_ip 113.203.82.215 86938 port 22 86938 unique_id port 86938 remote_ip 10.8.0.6 86940 username aminvpn 86940 mac 86940 bytes_out 0 86940 bytes_in 0 86940 station_ip 113.203.82.215 86940 port 22 86940 unique_id port 86940 remote_ip 10.8.0.6 86944 username aminvpn 86944 mac 86944 bytes_out 0 86944 bytes_in 0 86944 station_ip 37.129.251.177 86944 port 21 86944 unique_id port 86944 remote_ip 10.8.0.6 86947 username aminvpn 86947 mac 86947 bytes_out 0 86947 bytes_in 0 86947 station_ip 113.203.82.215 86947 port 22 86947 unique_id port 86947 remote_ip 10.8.0.6 86951 username aminvpn 86951 mac 86951 bytes_out 0 86951 bytes_in 0 86951 station_ip 113.203.82.215 86951 port 22 86951 unique_id port 86951 remote_ip 10.8.0.6 86954 username aminvpn 86954 mac 86954 bytes_out 0 86954 bytes_in 0 86954 station_ip 37.129.251.177 86954 port 21 86954 unique_id port 86954 remote_ip 10.8.0.6 86960 username aminvpn 86960 mac 86960 bytes_out 0 86960 bytes_in 0 86960 station_ip 37.129.251.177 86960 port 21 86960 unique_id port 86960 remote_ip 10.8.0.6 86963 username aminvpn 86963 mac 86963 bytes_out 0 86963 bytes_in 0 86963 station_ip 37.129.251.177 86963 port 21 86963 unique_id port 86963 remote_ip 10.8.0.6 86967 username aminvpn 86967 unique_id port 86967 terminate_cause Lost-Carrier 86967 bytes_out 202373 86967 bytes_in 1383417 86967 station_ip 77.237.186.188 86967 port 15728964 86967 nas_port_type Virtual 86967 remote_ip 5.5.5.116 86969 username madadi 86969 unique_id port 86969 terminate_cause Lost-Carrier 86969 bytes_out 304130 86969 bytes_in 1986689 86969 station_ip 5.120.41.240 86969 port 15728963 86969 nas_port_type Virtual 86969 remote_ip 5.5.5.110 86972 username alinezhad 86972 unique_id port 86972 terminate_cause User-Request 86972 bytes_out 0 86972 bytes_in 0 86972 station_ip 5.202.61.11 86972 port 15728968 86972 nas_port_type Virtual 86972 remote_ip 5.5.5.222 86974 username aminvpn 86974 mac 86974 bytes_out 0 86974 bytes_in 0 86974 station_ip 37.129.251.177 86974 port 22 86974 unique_id port 86974 remote_ip 10.8.0.6 86976 username forozande 86976 unique_id port 86976 terminate_cause User-Request 86976 bytes_out 52207 86976 bytes_in 537709 86918 bytes_in 0 86918 station_ip 5.122.242.57 86918 port 15728944 86918 nas_port_type Virtual 86918 remote_ip 5.5.5.120 86919 username alinezhad 86919 unique_id port 86919 terminate_cause User-Request 86919 bytes_out 0 86919 bytes_in 0 86919 station_ip 5.202.61.11 86919 port 15728946 86919 nas_port_type Virtual 86919 remote_ip 5.5.5.222 86927 username amirabbas 86927 unique_id port 86927 terminate_cause User-Request 86927 bytes_out 6455168 86927 bytes_in 191562464 86927 station_ip 31.56.152.137 86927 port 15728950 86927 nas_port_type Virtual 86927 remote_ip 5.5.5.117 86929 username shahnaz 86929 unique_id port 86929 terminate_cause User-Request 86929 bytes_out 6583125 86929 bytes_in 100702767 86929 station_ip 5.119.87.8 86929 port 15728940 86929 nas_port_type Virtual 86929 remote_ip 5.5.5.122 86930 username mahdixz 86930 unique_id port 86930 terminate_cause User-Request 86930 bytes_out 1709869 86930 bytes_in 52959192 86930 station_ip 151.235.123.225 86930 port 15728953 86930 nas_port_type Virtual 86930 remote_ip 5.5.5.224 86933 username forozande 86933 unique_id port 86933 terminate_cause User-Request 86933 bytes_out 17266 86933 bytes_in 28429 86933 station_ip 37.129.129.161 86933 port 15728961 86933 nas_port_type Virtual 86933 remote_ip 5.5.5.111 86937 username aminvpn 86937 mac 86937 bytes_out 0 86937 bytes_in 0 86937 station_ip 37.129.251.177 86937 port 21 86937 unique_id port 86937 remote_ip 10.8.0.6 86943 username aminvpn 86943 mac 86943 bytes_out 0 86943 bytes_in 0 86943 station_ip 113.203.82.215 86943 port 22 86943 unique_id port 86943 remote_ip 10.8.0.6 86948 username aminvpn 86948 mac 86948 bytes_out 0 86948 bytes_in 0 86948 station_ip 37.129.251.177 86948 port 21 86948 unique_id port 86948 remote_ip 10.8.0.6 86950 username aminvpn 86950 mac 86950 bytes_out 0 86950 bytes_in 0 86950 station_ip 37.129.251.177 86950 port 21 86950 unique_id port 86950 remote_ip 10.8.0.6 86955 username aminvpn 86955 mac 86955 bytes_out 0 86955 bytes_in 0 86955 station_ip 113.203.82.215 86955 port 22 86955 unique_id port 86955 remote_ip 10.8.0.6 86959 username aminvpn 86959 mac 86959 bytes_out 0 86959 bytes_in 0 86959 station_ip 113.203.82.215 86959 port 22 86959 unique_id port 86959 remote_ip 10.8.0.6 86965 username aminvpn 86965 mac 86965 bytes_out 0 86965 bytes_in 0 86965 station_ip 37.129.251.177 86965 port 21 86965 unique_id port 86965 remote_ip 10.8.0.6 86968 username aminvpn 86968 mac 86968 bytes_out 0 86968 bytes_in 0 86968 station_ip 113.203.82.215 86968 port 21 86968 unique_id port 86968 remote_ip 10.8.0.6 86970 username aminvpn 86970 mac 86970 bytes_out 0 86970 bytes_in 0 86970 station_ip 37.129.251.177 86970 port 22 86970 unique_id port 86970 remote_ip 10.8.0.6 86973 username aminvpn 86973 mac 86973 bytes_out 0 86973 bytes_in 0 86973 station_ip 113.203.82.215 86973 port 21 86973 unique_id port 86973 remote_ip 10.8.0.6 86977 username aminvpn 86977 mac 86977 bytes_out 0 86977 bytes_in 0 86977 station_ip 37.129.251.177 86977 port 22 86977 unique_id port 86977 remote_ip 10.8.0.6 86980 username aminvpn 86980 mac 86980 bytes_out 0 86980 bytes_in 0 86980 station_ip 113.203.82.215 86980 port 21 86980 unique_id port 86980 remote_ip 10.8.0.6 86985 username caferibar 86985 unique_id port 86985 terminate_cause User-Request 86985 bytes_out 0 86985 bytes_in 0 86985 station_ip 37.137.41.99 86939 bytes_out 0 86939 bytes_in 0 86939 station_ip 37.129.251.177 86939 port 21 86939 unique_id port 86939 remote_ip 10.8.0.6 86941 username madadi 86941 unique_id port 86941 terminate_cause Lost-Carrier 86941 bytes_out 132024 86941 bytes_in 316307 86941 station_ip 5.119.109.137 86941 port 15728957 86941 nas_port_type Virtual 86941 remote_ip 5.5.5.113 86946 username aminvpn 86946 mac 86946 bytes_out 0 86946 bytes_in 0 86946 station_ip 37.129.251.177 86946 port 21 86946 unique_id port 86946 remote_ip 10.8.0.6 86953 username aminvpn 86953 mac 86953 bytes_out 0 86953 bytes_in 0 86953 station_ip 113.203.82.215 86953 port 22 86953 unique_id port 86953 remote_ip 10.8.0.6 86956 username aminvpn 86956 mac 86956 bytes_out 0 86956 bytes_in 0 86956 station_ip 37.129.251.177 86956 port 21 86956 unique_id port 86956 remote_ip 10.8.0.6 86957 username aminvpn 86957 mac 86957 bytes_out 0 86957 bytes_in 0 86957 station_ip 113.203.82.215 86957 port 22 86957 unique_id port 86957 remote_ip 10.8.0.6 86961 username aminvpn 86961 mac 86961 bytes_out 0 86961 bytes_in 0 86961 station_ip 113.203.82.215 86961 port 22 86961 unique_id port 86961 remote_ip 10.8.0.6 86978 username aminvpn 86978 mac 86978 bytes_out 0 86978 bytes_in 0 86978 station_ip 113.203.82.215 86978 port 21 86978 unique_id port 86978 remote_ip 10.8.0.6 86983 username forozande 86983 unique_id port 86983 terminate_cause User-Request 86983 bytes_out 29303 86983 bytes_in 203910 86983 station_ip 37.129.129.161 86983 port 15728970 86983 nas_port_type Virtual 86983 remote_ip 5.5.5.111 86991 username soleymani 86991 unique_id port 86991 terminate_cause User-Request 86991 bytes_out 0 86991 bytes_in 0 86991 station_ip 5.120.78.31 86991 port 15728975 86991 nas_port_type Virtual 86991 remote_ip 5.5.5.106 86993 username soleymani 86993 unique_id port 86993 terminate_cause User-Request 86993 bytes_out 0 86993 bytes_in 0 86993 station_ip 5.120.78.31 86993 port 15728976 86993 nas_port_type Virtual 86993 remote_ip 5.5.5.106 86997 username caferibar 86997 unique_id port 86997 terminate_cause User-Request 86997 bytes_out 1818905 86997 bytes_in 39854356 86997 station_ip 37.156.60.98 86997 port 15728973 86997 nas_port_type Virtual 86997 remote_ip 5.5.5.107 86998 username caferibar 86998 unique_id port 86998 terminate_cause User-Request 86998 bytes_out 0 86998 bytes_in 0 86998 station_ip 37.156.60.98 86998 port 15728983 86998 nas_port_type Virtual 86998 remote_ip 5.5.5.107 87001 username mahbobeh 87001 unique_id port 87001 terminate_cause Lost-Carrier 87001 bytes_out 926572 87001 bytes_in 8174556 87001 station_ip 113.203.24.99 87001 port 15728951 87001 nas_port_type Virtual 87001 remote_ip 5.5.5.175 87004 username zamanialireza 87004 unique_id port 87004 terminate_cause User-Request 87004 bytes_out 11875305 87004 bytes_in 273874823 87004 station_ip 5.134.144.68 87004 port 15728980 87004 nas_port_type Virtual 87004 remote_ip 5.5.5.105 87005 username mahbobeh 87005 unique_id port 87005 terminate_cause User-Request 87005 bytes_out 0 87005 bytes_in 0 87005 station_ip 113.203.24.99 87005 port 15728987 87005 nas_port_type Virtual 87005 remote_ip 5.5.5.175 87006 username heydari 87006 unique_id port 87006 terminate_cause User-Request 87006 bytes_out 171308 87006 bytes_in 649612 87006 station_ip 5.119.11.246 87006 port 15728986 87006 nas_port_type Virtual 87006 remote_ip 5.5.5.244 87012 username aminvpn 87012 mac 87012 bytes_out 2259217 87012 bytes_in 9136363 87012 station_ip 37.129.251.177 86962 station_ip 37.129.129.161 86962 port 15728966 86962 nas_port_type Virtual 86962 remote_ip 5.5.5.111 86964 username aminvpn 86964 mac 86964 bytes_out 0 86964 bytes_in 0 86964 station_ip 113.203.82.215 86964 port 22 86964 unique_id port 86964 remote_ip 10.8.0.6 86966 username aminvpn 86966 mac 86966 bytes_out 0 86966 bytes_in 0 86966 station_ip 113.203.82.215 86966 port 22 86966 unique_id port 86966 remote_ip 10.8.0.6 86971 username forozande 86971 unique_id port 86971 terminate_cause User-Request 86971 bytes_out 58161 86971 bytes_in 805125 86971 station_ip 37.129.129.161 86971 port 15728967 86971 nas_port_type Virtual 86971 remote_ip 5.5.5.111 86975 username aminvpn 86975 mac 86975 bytes_out 0 86975 bytes_in 0 86975 station_ip 113.203.82.215 86975 port 21 86975 unique_id port 86975 remote_ip 10.8.0.6 86979 username aminvpn 86979 mac 86979 bytes_out 0 86979 bytes_in 0 86979 station_ip 37.129.251.177 86979 port 22 86979 unique_id port 86979 remote_ip 10.8.0.6 86982 username aminvpn 86982 mac 86982 bytes_out 0 86982 bytes_in 0 86982 station_ip 113.203.82.215 86982 port 21 86982 unique_id port 86982 remote_ip 10.8.0.6 86984 username forozande 86984 unique_id port 86984 terminate_cause User-Request 86984 bytes_out 241996 86984 bytes_in 2015117 86984 station_ip 37.129.129.161 86984 port 15728971 86984 nas_port_type Virtual 86984 remote_ip 5.5.5.111 86988 username zamanialireza 86988 unique_id port 86988 terminate_cause User-Request 86988 bytes_out 2776801 86988 bytes_in 80795779 86988 station_ip 94.183.213.166 86988 port 15728958 86988 nas_port_type Virtual 86988 remote_ip 5.5.5.112 86992 username heydari 86992 unique_id port 86992 terminate_cause Lost-Carrier 86992 bytes_out 1581467 86992 bytes_in 33484403 86992 station_ip 5.119.11.246 86992 port 15728925 86992 nas_port_type Virtual 86992 remote_ip 5.5.5.244 87010 username alinezhad 87010 unique_id port 87010 terminate_cause User-Request 87010 bytes_out 0 87010 bytes_in 0 87010 station_ip 5.202.61.11 87010 port 15728992 87010 nas_port_type Virtual 87010 remote_ip 5.5.5.222 87011 username ahmadipour 87011 unique_id port 87011 terminate_cause Lost-Carrier 87011 bytes_out 73187 87011 bytes_in 655590 87011 station_ip 37.129.56.106 87011 port 15728993 87011 nas_port_type Virtual 87011 remote_ip 5.5.5.100 87015 username mahbobeh 87015 unique_id port 87015 terminate_cause Lost-Carrier 87015 bytes_out 322025 87015 bytes_in 2477384 87015 station_ip 113.203.24.99 87015 port 15728988 87015 nas_port_type Virtual 87015 remote_ip 5.5.5.175 87028 username zamanialireza 87028 unique_id port 87028 terminate_cause User-Request 87028 bytes_out 885950 87028 bytes_in 17806353 87028 station_ip 5.160.115.209 87028 port 15729009 87028 nas_port_type Virtual 87028 remote_ip 5.5.5.90 87037 username kamali 87037 unique_id port 87037 terminate_cause User-Request 87037 bytes_out 403109 87037 bytes_in 9848359 87037 station_ip 37.129.169.54 87037 port 15728644 87037 nas_port_type Virtual 87037 remote_ip 5.5.5.252 87039 username madadi 87039 unique_id port 87039 terminate_cause Lost-Carrier 87039 bytes_out 58879 87039 bytes_in 180129 87039 station_ip 5.119.25.141 87039 port 15728646 87039 nas_port_type Virtual 87039 remote_ip 5.5.5.251 87042 username madadi 87042 unique_id port 87042 terminate_cause Lost-Carrier 87042 bytes_out 50144 87042 bytes_in 210448 87042 station_ip 5.119.196.222 87042 port 15728648 87042 nas_port_type Virtual 87042 remote_ip 5.5.5.249 87044 username madadi 87044 unique_id port 87044 terminate_cause Lost-Carrier 86976 station_ip 37.129.129.161 86976 port 15728969 86976 nas_port_type Virtual 86976 remote_ip 5.5.5.111 86981 username aminvpn 86981 mac 86981 bytes_out 0 86981 bytes_in 0 86981 station_ip 37.129.251.177 86981 port 22 86981 unique_id port 86981 remote_ip 10.8.0.6 86986 username soleymani 86986 unique_id port 86986 terminate_cause Lost-Carrier 86986 bytes_out 127088 86986 bytes_in 424463 86986 station_ip 5.120.36.249 86986 port 15728965 86986 nas_port_type Virtual 86986 remote_ip 5.5.5.109 86990 username aminvpn 86990 mac 86990 bytes_out 0 86990 bytes_in 0 86990 station_ip 113.203.19.231 86990 port 21 86990 unique_id port 86990 remote_ip 10.8.0.6 86994 username heydari 86994 unique_id port 86994 terminate_cause User-Request 86994 bytes_out 11055 86994 bytes_in 56037 86994 station_ip 5.119.11.246 86994 port 15728979 86994 nas_port_type Virtual 86994 remote_ip 5.5.5.244 86995 username arabpour 86995 unique_id port 86995 terminate_cause User-Request 86995 bytes_out 14544 86995 bytes_in 68731 86995 station_ip 5.216.103.4 86995 port 15728981 86995 nas_port_type Virtual 86995 remote_ip 5.5.5.104 86996 username khalili 86996 unique_id port 86996 terminate_cause User-Request 86996 bytes_out 2642669 86996 bytes_in 71528483 86996 station_ip 5.119.198.217 86996 port 15728977 86996 nas_port_type Virtual 86996 remote_ip 5.5.5.232 86999 username aminvpn 86999 unique_id port 86999 terminate_cause Lost-Carrier 86999 bytes_out 1011573 86999 bytes_in 6758576 86999 station_ip 77.237.186.188 86999 port 15728978 86999 nas_port_type Virtual 86999 remote_ip 5.5.5.116 87000 username alinezhad 87000 unique_id port 87000 terminate_cause User-Request 87000 bytes_out 0 87000 bytes_in 0 87000 station_ip 5.202.61.11 87000 port 15728984 87000 nas_port_type Virtual 87000 remote_ip 5.5.5.222 87007 username heydari 87007 unique_id port 87007 terminate_cause User-Request 87007 bytes_out 22725 87007 bytes_in 60404 87007 station_ip 5.119.11.246 87007 port 15728989 87007 nas_port_type Virtual 87007 remote_ip 5.5.5.244 87008 username ksrkrgr 87008 unique_id port 87008 terminate_cause User-Request 87008 bytes_out 27919231 87008 bytes_in 131505241 87008 station_ip 85.185.171.99 87008 port 15728960 87008 nas_port_type Virtual 87008 remote_ip 5.5.5.176 87017 username alinezhad 87017 unique_id port 87017 terminate_cause User-Request 87017 bytes_out 0 87017 bytes_in 0 87017 station_ip 37.129.1.194 87017 port 15728998 87017 nas_port_type Virtual 87017 remote_ip 5.5.5.97 87019 username ahmadipour 87019 unique_id port 87019 terminate_cause Lost-Carrier 87019 bytes_out 438817 87019 bytes_in 6425260 87019 station_ip 37.129.83.14 87019 port 15729000 87019 nas_port_type Virtual 87019 remote_ip 5.5.5.96 87022 username zamanialireza 87022 unique_id port 87022 terminate_cause Lost-Carrier 87022 bytes_out 152799 87022 bytes_in 406850 87022 station_ip 5.160.114.62 87022 port 15729001 87022 nas_port_type Virtual 87022 remote_ip 5.5.5.95 87025 username madadi 87025 unique_id port 87025 terminate_cause Lost-Carrier 87025 bytes_out 4008827 87025 bytes_in 17896436 87025 station_ip 5.119.159.28 87025 port 15728995 87025 nas_port_type Virtual 87025 remote_ip 5.5.5.99 87026 username madadi 87026 unique_id port 87026 terminate_cause Lost-Carrier 87026 bytes_out 33934 87026 bytes_in 150227 87026 station_ip 5.119.12.218 87026 port 15729007 87026 nas_port_type Virtual 87026 remote_ip 5.5.5.92 87029 username heydari 87029 unique_id port 87029 terminate_cause User-Request 87029 bytes_out 111377 87029 bytes_in 332182 87029 station_ip 5.119.11.246 87029 port 15729010 87029 nas_port_type Virtual 86985 port 15728972 86985 nas_port_type Virtual 86985 remote_ip 5.5.5.108 86987 username forozande 86987 unique_id port 86987 terminate_cause User-Request 86987 bytes_out 25176 86987 bytes_in 156164 86987 station_ip 37.129.129.161 86987 port 15728974 86987 nas_port_type Virtual 86987 remote_ip 5.5.5.111 86989 username aminvpn 86989 mac 86989 bytes_out 0 86989 bytes_in 0 86989 station_ip 37.129.251.177 86989 port 22 86989 unique_id port 86989 remote_ip 10.8.0.6 87002 username asadi 87002 unique_id port 87002 terminate_cause User-Request 87002 bytes_out 0 87002 bytes_in 0 87002 station_ip 37.129.87.1 87002 port 15728985 87002 nas_port_type Virtual 87002 remote_ip 5.5.5.102 87003 username madadi 87003 unique_id port 87003 terminate_cause Lost-Carrier 87003 bytes_out 261596 87003 bytes_in 1522250 87003 station_ip 5.120.68.170 87003 port 15728982 87003 nas_port_type Virtual 87003 remote_ip 5.5.5.103 87009 username alinezhad 87009 unique_id port 87009 terminate_cause User-Request 87009 bytes_out 10980 87009 bytes_in 25210 87009 station_ip 5.202.61.11 87009 port 15728990 87009 nas_port_type Virtual 87009 remote_ip 5.5.5.222 87014 username alinezhad 87014 unique_id port 87014 terminate_cause User-Request 87014 bytes_out 49962 87014 bytes_in 769551 87014 station_ip 37.129.1.194 87014 port 15728997 87014 nas_port_type Virtual 87014 remote_ip 5.5.5.97 87020 username mahdixz 87020 unique_id port 87020 terminate_cause User-Request 87020 bytes_out 732583 87020 bytes_in 3694301 87020 station_ip 151.235.123.225 87020 port 15728999 87020 nas_port_type Virtual 87020 remote_ip 5.5.5.224 87021 username farhad 87021 unique_id port 87021 terminate_cause Lost-Carrier 87021 bytes_out 31349855 87021 bytes_in 538468914 87021 station_ip 5.119.130.49 87021 port 15728956 87021 nas_port_type Virtual 87021 remote_ip 5.5.5.114 87023 username afarin 87023 unique_id port 87023 terminate_cause User-Request 87023 bytes_out 1437852 87023 bytes_in 38288983 87023 station_ip 31.56.155.158 87023 port 15729005 87023 nas_port_type Virtual 87023 remote_ip 5.5.5.94 87024 username zamanialireza 87024 unique_id port 87024 terminate_cause Lost-Carrier 87024 bytes_out 1069568 87024 bytes_in 10494901 87024 station_ip 5.160.115.168 87024 port 15729006 87024 nas_port_type Virtual 87024 remote_ip 5.5.5.93 87027 username madadi 87027 unique_id port 87027 terminate_cause Lost-Carrier 87027 bytes_out 64573 87027 bytes_in 176701 87027 station_ip 5.119.177.10 87027 port 15729008 87027 nas_port_type Virtual 87027 remote_ip 5.5.5.91 87029 remote_ip 5.5.5.244 87031 username aminvpn 87031 mac 87031 bytes_out 0 87031 bytes_in 0 87031 station_ip 37.129.255.93 87031 port 22 87031 unique_id port 87031 remote_ip 10.8.0.6 87033 username aminvpn 87033 mac 87033 bytes_out 0 87033 bytes_in 0 87033 station_ip 37.129.255.93 87033 port 22 87033 unique_id port 87033 remote_ip 10.8.0.6 87036 username asadi 87036 unique_id port 87036 terminate_cause User-Request 87036 bytes_out 186263 87036 bytes_in 6730217 87036 station_ip 37.129.16.12 87036 port 15728642 87036 nas_port_type Virtual 87036 remote_ip 5.5.5.254 87040 username caferibar 87040 unique_id port 87040 terminate_cause User-Request 87040 bytes_out 4356055 87040 bytes_in 117089299 87040 station_ip 37.27.3.57 87040 port 15728640 87040 nas_port_type Virtual 87040 remote_ip 5.5.5.255 87051 username asadi 87051 unique_id port 87051 terminate_cause User-Request 87051 bytes_out 766919 87051 bytes_in 42178273 87051 station_ip 37.129.16.12 87051 port 15728659 87051 nas_port_type Virtual 87051 remote_ip 5.5.5.254 87056 username aminvpn 87012 port 22 87012 unique_id port 87012 remote_ip 10.8.0.6 87013 username aminvpn 87013 unique_id port 87013 terminate_cause Lost-Carrier 87013 bytes_out 1076861 87013 bytes_in 139563836 87013 station_ip 5.119.1.160 87013 port 15728996 87013 nas_port_type Virtual 87013 remote_ip 5.5.5.98 87016 username shahrooz 87016 unique_id port 87016 terminate_cause Lost-Carrier 87016 bytes_out 4923609 87016 bytes_in 81825734 87016 station_ip 83.122.134.245 87016 port 15728991 87016 nas_port_type Virtual 87016 remote_ip 5.5.5.101 87018 username caferibar 87018 unique_id port 87018 terminate_cause Lost-Carrier 87018 bytes_out 6226345 87018 bytes_in 197211525 87018 station_ip 151.238.235.184 87018 port 15728994 87018 nas_port_type Virtual 87018 remote_ip 5.5.5.195 87030 username aminvpn 87030 mac 87030 bytes_out 0 87030 bytes_in 0 87030 station_ip 113.203.67.255 87030 port 21 87030 unique_id port 87030 remote_ip 10.8.0.6 87032 username aminvpn 87032 mac 87032 bytes_out 0 87032 bytes_in 0 87032 station_ip 113.203.67.255 87032 port 21 87032 unique_id port 87032 remote_ip 10.8.0.6 87038 username kamali 87038 unique_id port 87038 terminate_cause User-Request 87038 bytes_out 234063 87038 bytes_in 5622895 87038 station_ip 37.129.169.54 87038 port 15728645 87038 nas_port_type Virtual 87038 remote_ip 5.5.5.252 87043 username alinezhad 87043 unique_id port 87043 terminate_cause User-Request 87043 bytes_out 0 87043 bytes_in 0 87043 station_ip 83.122.172.192 87043 port 15728652 87043 nas_port_type Virtual 87043 remote_ip 5.5.5.245 87046 username zamanialireza 87046 unique_id port 87046 terminate_cause Lost-Carrier 87046 bytes_out 212408 87046 bytes_in 3135643 87046 station_ip 5.119.78.28 87046 port 15728650 87046 nas_port_type Virtual 87046 remote_ip 5.5.5.247 87048 username forozande 87048 unique_id port 87048 terminate_cause User-Request 87048 bytes_out 176742 87048 bytes_in 939753 87048 station_ip 83.123.216.148 87048 port 15728655 87048 nas_port_type Virtual 87048 remote_ip 5.5.5.243 87052 username forozande 87052 unique_id port 87052 terminate_cause User-Request 87052 bytes_out 23265 87052 bytes_in 148006 87052 station_ip 83.123.216.148 87052 port 15728660 87052 nas_port_type Virtual 87052 remote_ip 5.5.5.243 87054 username forozande 87054 unique_id port 87054 terminate_cause User-Request 87054 bytes_out 46953 87054 bytes_in 280018 87054 station_ip 83.122.47.27 87054 port 15728664 87054 nas_port_type Virtual 87054 remote_ip 5.5.5.240 87057 username arman 87057 unique_id port 87057 terminate_cause Lost-Carrier 87057 bytes_out 2024631 87057 bytes_in 14931102 87057 station_ip 5.120.37.128 87057 port 15728658 87057 nas_port_type Virtual 87057 remote_ip 5.5.5.242 87058 username zamanialireza 87058 unique_id port 87058 terminate_cause User-Request 87058 bytes_out 769582 87058 bytes_in 7993334 87058 station_ip 5.119.78.28 87058 port 15728665 87058 nas_port_type Virtual 87058 remote_ip 5.5.5.239 87060 username forozande 87060 unique_id port 87060 terminate_cause User-Request 87060 bytes_out 9073 87060 bytes_in 15812 87060 station_ip 83.122.47.27 87060 port 15728669 87060 nas_port_type Virtual 87060 remote_ip 5.5.5.240 87061 username zamanialireza 87061 unique_id port 87061 terminate_cause Lost-Carrier 87061 bytes_out 255824 87061 bytes_in 931982 87061 station_ip 5.119.78.28 87061 port 15728663 87061 nas_port_type Virtual 87061 remote_ip 5.5.5.246 87064 username aminvpn 87064 mac 87064 bytes_out 770584 87064 bytes_in 4702432 87064 station_ip 113.203.105.163 87064 port 21 87064 unique_id port 87064 remote_ip 10.8.0.6 87065 username forozande 87034 username asadi 87034 unique_id port 87034 terminate_cause User-Request 87034 bytes_out 188938 87034 bytes_in 3076969 87034 station_ip 37.129.16.12 87034 port 15728641 87034 nas_port_type Virtual 87034 remote_ip 5.5.5.254 87035 username aminvpn 87035 mac 87035 bytes_out 458493 87035 bytes_in 846846 87035 station_ip 113.203.67.255 87035 port 21 87035 unique_id port 87035 remote_ip 10.8.0.6 87041 username ahmadipour 87041 kill_reason Maximum check online fails reached 87041 unique_id port 87041 bytes_out 33877 87041 bytes_in 237862 87041 station_ip 113.203.84.199 87041 port 15728647 87041 nas_port_type Virtual 87041 remote_ip 5.5.5.250 87045 username asadi 87045 unique_id port 87045 terminate_cause User-Request 87045 bytes_out 255513 87045 bytes_in 4189000 87045 station_ip 37.129.16.12 87045 port 15728653 87045 nas_port_type Virtual 87045 remote_ip 5.5.5.254 87049 username asadi 87049 unique_id port 87049 terminate_cause User-Request 87049 bytes_out 196456 87049 bytes_in 2270995 87049 station_ip 37.129.16.12 87049 port 15728656 87049 nas_port_type Virtual 87049 remote_ip 5.5.5.254 87055 username alinezhad 87055 unique_id port 87055 terminate_cause User-Request 87055 bytes_out 0 87055 bytes_in 0 87055 station_ip 37.129.8.234 87055 port 15728666 87055 nas_port_type Virtual 87055 remote_ip 5.5.5.238 87062 username forozande 87062 unique_id port 87062 terminate_cause User-Request 87062 bytes_out 534769 87062 bytes_in 18788297 87062 station_ip 83.122.47.27 87062 port 15728670 87062 nas_port_type Virtual 87062 remote_ip 5.5.5.240 87069 username aminvpn 87069 mac 87069 bytes_out 0 87069 bytes_in 0 87069 station_ip 113.203.105.163 87069 port 21 87069 unique_id port 87069 remote_ip 10.8.0.6 87081 username soleymani 87081 unique_id port 87081 terminate_cause Lost-Carrier 87081 bytes_out 167874 87081 bytes_in 771586 87081 station_ip 5.119.50.103 87081 port 15728677 87081 nas_port_type Virtual 87081 remote_ip 5.5.5.232 87091 username aminvpn 87091 mac 87091 bytes_out 0 87091 bytes_in 0 87091 station_ip 5.119.1.160 87091 port 22 87091 unique_id port 87091 remote_ip 10.8.0.6 87096 username aminvpn 87096 mac 87096 bytes_out 0 87096 bytes_in 0 87096 station_ip 113.203.105.163 87096 port 21 87096 unique_id port 87096 remote_ip 10.8.0.6 87102 username aminvpn 87102 mac 87102 bytes_out 0 87102 bytes_in 0 87102 station_ip 113.203.105.163 87102 port 21 87102 unique_id port 87102 remote_ip 10.8.0.6 87109 username aminvpn 87109 mac 87109 bytes_out 0 87109 bytes_in 0 87109 station_ip 5.119.1.160 87109 port 22 87109 unique_id port 87109 remote_ip 10.8.0.6 87113 username aminvpn 87113 mac 87113 bytes_out 0 87113 bytes_in 0 87113 station_ip 5.119.1.160 87113 port 22 87113 unique_id port 87113 remote_ip 10.8.0.6 87114 username aminvpn 87114 mac 87114 bytes_out 0 87114 bytes_in 0 87114 station_ip 113.203.105.163 87114 port 21 87114 unique_id port 87114 remote_ip 10.8.0.6 87118 username forozande 87118 unique_id port 87118 terminate_cause User-Request 87118 bytes_out 31554 87118 bytes_in 146832 87118 station_ip 37.129.29.209 87118 port 15728697 87118 nas_port_type Virtual 87118 remote_ip 5.5.5.231 87119 username zamanialireza 87119 unique_id port 87119 terminate_cause User-Request 87119 bytes_out 352916 87119 bytes_in 7002674 87119 station_ip 83.122.37.232 87119 port 15728698 87119 nas_port_type Virtual 87119 remote_ip 5.5.5.223 87120 username alinezhad 87120 unique_id port 87120 terminate_cause User-Request 87120 bytes_out 0 87044 bytes_out 29211 87044 bytes_in 140766 87044 station_ip 5.119.36.131 87044 port 15728649 87044 nas_port_type Virtual 87044 remote_ip 5.5.5.248 87047 username alinezhad 87047 unique_id port 87047 terminate_cause User-Request 87047 bytes_out 0 87047 bytes_in 0 87047 station_ip 83.123.135.240 87047 port 15728654 87047 nas_port_type Virtual 87047 remote_ip 5.5.5.244 87050 username mahbobeh 87050 unique_id port 87050 terminate_cause Lost-Carrier 87050 bytes_out 2792154 87050 bytes_in 52882101 87050 station_ip 113.203.24.99 87050 port 15728643 87050 nas_port_type Virtual 87050 remote_ip 5.5.5.253 87053 username zamanialireza 87053 unique_id port 87053 terminate_cause User-Request 87053 bytes_out 22700898 87053 bytes_in 646678352 87053 station_ip 5.119.78.28 87053 port 15728651 87053 nas_port_type Virtual 87053 remote_ip 5.5.5.246 87059 username alinezhad 87059 unique_id port 87059 terminate_cause User-Request 87059 bytes_out 0 87059 bytes_in 0 87059 station_ip 83.122.164.63 87059 port 15728668 87059 nas_port_type Virtual 87059 remote_ip 5.5.5.236 87076 username soleymani 87076 kill_reason Maximum number of concurrent logins reached 87076 unique_id port 87076 bytes_out 0 87076 bytes_in 0 87076 station_ip 5.119.106.26 87076 port 15728683 87076 nas_port_type Virtual 87078 username soleymani 87078 kill_reason Maximum number of concurrent logins reached 87078 unique_id port 87078 bytes_out 0 87078 bytes_in 0 87078 station_ip 5.119.106.26 87078 port 15728685 87078 nas_port_type Virtual 87082 username forozande 87082 unique_id port 87082 terminate_cause User-Request 87082 bytes_out 27455 87082 bytes_in 297801 87082 station_ip 37.129.29.209 87082 port 15728688 87082 nas_port_type Virtual 87082 remote_ip 5.5.5.231 87083 username madadi 87083 unique_id port 87083 terminate_cause Lost-Carrier 87083 bytes_out 162770 87083 bytes_in 341656 87083 station_ip 5.119.50.153 87083 port 15728679 87083 nas_port_type Virtual 87083 remote_ip 5.5.5.230 87087 username aminvpn 87087 mac 87087 bytes_out 764653 87087 bytes_in 9932927 87087 station_ip 5.119.1.160 87087 port 22 87087 unique_id port 87087 remote_ip 10.8.0.6 87088 username aminvpn 87088 mac 87088 bytes_out 0 87088 bytes_in 0 87088 station_ip 113.203.105.163 87088 port 21 87088 unique_id port 87088 remote_ip 10.8.0.6 87093 username aminvpn 87093 mac 87093 bytes_out 0 87093 bytes_in 0 87093 station_ip 5.119.1.160 87093 port 22 87093 unique_id port 87093 remote_ip 10.8.0.6 87098 username aminvpn 87098 mac 87098 bytes_out 0 87098 bytes_in 0 87098 station_ip 113.203.105.163 87098 port 21 87098 unique_id port 87098 remote_ip 10.8.0.6 87099 username aminvpn 87099 mac 87099 bytes_out 0 87099 bytes_in 0 87099 station_ip 5.119.1.160 87099 port 22 87099 unique_id port 87099 remote_ip 10.8.0.6 87106 username aminvpn 87106 mac 87106 bytes_out 0 87106 bytes_in 0 87106 station_ip 5.119.1.160 87106 port 22 87106 unique_id port 87106 remote_ip 10.8.0.6 87112 username aminvpn 87112 mac 87112 bytes_out 0 87112 bytes_in 0 87112 station_ip 113.203.105.163 87112 port 21 87112 unique_id port 87112 remote_ip 10.8.0.6 87124 username soleymani 87124 unique_id port 87124 terminate_cause Lost-Carrier 87124 bytes_out 85123 87124 bytes_in 611117 87124 station_ip 5.120.133.173 87124 port 15728696 87124 nas_port_type Virtual 87124 remote_ip 5.5.5.224 87125 username aminvpn 87125 mac 87125 bytes_out 337489 87125 bytes_in 1532240 87125 station_ip 113.203.105.163 87125 port 22 87125 unique_id port 87125 remote_ip 10.8.0.6 87056 mac 87056 bytes_out 0 87056 bytes_in 0 87056 station_ip 113.203.105.163 87056 port 21 87056 unique_id port 87056 remote_ip 10.8.0.6 87063 username soleymani 87063 unique_id port 87063 terminate_cause Lost-Carrier 87063 bytes_out 887533 87063 bytes_in 664868 87063 station_ip 5.119.190.251 87063 port 15728662 87063 nas_port_type Virtual 87063 remote_ip 5.5.5.241 87066 username soleymani 87066 unique_id port 87066 terminate_cause Lost-Carrier 87066 bytes_out 83026 87066 bytes_in 185448 87066 station_ip 5.120.137.184 87066 port 15728667 87066 nas_port_type Virtual 87066 remote_ip 5.5.5.237 87067 username forozande 87067 unique_id port 87067 terminate_cause User-Request 87067 bytes_out 20009 87067 bytes_in 95117 87067 station_ip 83.122.47.27 87067 port 15728672 87067 nas_port_type Virtual 87067 remote_ip 5.5.5.240 87068 username madadi 87068 unique_id port 87068 terminate_cause Lost-Carrier 87068 bytes_out 15912 87068 bytes_in 131854 87068 station_ip 5.119.118.13 87068 port 15728673 87068 nas_port_type Virtual 87068 remote_ip 5.5.5.235 87071 username avaanna 87071 unique_id port 87071 terminate_cause User-Request 87071 bytes_out 30024 87071 bytes_in 182087 87071 station_ip 83.122.235.125 87071 port 15728675 87071 nas_port_type Virtual 87071 remote_ip 5.5.5.234 87073 username mahbobeh 87073 unique_id port 87073 terminate_cause Lost-Carrier 87073 bytes_out 1453504 87073 bytes_in 13756165 87073 station_ip 113.203.24.99 87073 port 15728661 87073 nas_port_type Virtual 87073 remote_ip 5.5.5.253 87080 username forozande 87080 unique_id port 87080 terminate_cause User-Request 87080 bytes_out 46831 87080 bytes_in 661941 87080 station_ip 37.129.29.209 87080 port 15728686 87080 nas_port_type Virtual 87080 remote_ip 5.5.5.231 87090 username aminvpn 87090 mac 87090 bytes_out 0 87090 bytes_in 0 87090 station_ip 113.203.105.163 87090 port 21 87090 unique_id port 87090 remote_ip 10.8.0.6 87095 username mobina 87095 kill_reason Relative expiration date has reached 87095 unique_id port 87095 bytes_out 0 87095 bytes_in 0 87095 station_ip 5.219.215.72 87095 port 15728691 87095 nas_port_type Virtual 87101 username aminvpn 87101 mac 87101 bytes_out 0 87101 bytes_in 0 87101 station_ip 5.119.1.160 87101 port 22 87101 unique_id port 87101 remote_ip 10.8.0.6 87103 username aminvpn 87103 mac 87103 bytes_out 0 87103 bytes_in 0 87103 station_ip 5.119.1.160 87103 port 22 87103 unique_id port 87103 remote_ip 10.8.0.6 87105 username aminvpn 87105 mac 87105 bytes_out 0 87105 bytes_in 0 87105 station_ip 113.203.105.163 87105 port 21 87105 unique_id port 87105 remote_ip 10.8.0.6 87108 username soleymani 87108 unique_id port 87108 terminate_cause Lost-Carrier 87108 bytes_out 249684 87108 bytes_in 1220931 87108 station_ip 5.119.106.26 87108 port 15728687 87108 nas_port_type Virtual 87108 remote_ip 5.5.5.227 87111 username aminvpn 87111 mac 87111 bytes_out 0 87111 bytes_in 0 87111 station_ip 5.119.1.160 87111 port 22 87111 unique_id port 87111 remote_ip 10.8.0.6 87116 username alirezazamani 87116 kill_reason Relative expiration date has reached 87116 unique_id port 87116 bytes_out 0 87116 bytes_in 0 87116 station_ip 37.27.27.5 87116 port 15728694 87116 nas_port_type Virtual 87127 username aminvpn 87127 mac 87127 bytes_out 0 87127 bytes_in 0 87127 station_ip 113.203.105.163 87127 port 21 87127 unique_id port 87127 remote_ip 10.8.0.6 87130 username afarin 87130 unique_id port 87130 terminate_cause User-Request 87130 bytes_out 222634 87130 bytes_in 4357019 87065 unique_id port 87065 terminate_cause User-Request 87065 bytes_out 0 87065 bytes_in 0 87065 station_ip 83.122.47.27 87065 port 15728671 87065 nas_port_type Virtual 87065 remote_ip 5.5.5.240 87070 username avaanna 87070 unique_id port 87070 terminate_cause User-Request 87070 bytes_out 0 87070 bytes_in 0 87070 station_ip 83.122.235.125 87070 port 15728674 87070 nas_port_type Virtual 87070 remote_ip 5.5.5.234 87072 username zamanialireza 87072 unique_id port 87072 terminate_cause User-Request 87072 bytes_out 783398 87072 bytes_in 18195488 87072 station_ip 37.129.208.170 87072 port 15728676 87072 nas_port_type Virtual 87072 remote_ip 5.5.5.233 87074 username forozande 87074 unique_id port 87074 terminate_cause User-Request 87074 bytes_out 104115 87074 bytes_in 874363 87074 station_ip 37.129.29.209 87074 port 15728678 87074 nas_port_type Virtual 87074 remote_ip 5.5.5.231 87075 username soleymani 87075 kill_reason Maximum number of concurrent logins reached 87075 unique_id port 87075 bytes_out 0 87075 bytes_in 0 87075 station_ip 5.119.106.26 87075 port 15728682 87075 nas_port_type Virtual 87077 username soleymani 87077 kill_reason Maximum number of concurrent logins reached 87077 unique_id port 87077 bytes_out 0 87077 bytes_in 0 87077 station_ip 5.119.106.26 87077 port 15728684 87077 nas_port_type Virtual 87079 username soleymani 87079 unique_id port 87079 terminate_cause NAS-Error 87079 bytes_out 0 87079 bytes_in 342 87079 station_ip 5.120.72.202 87079 port 15728681 87079 nas_port_type Virtual 87079 remote_ip 5.5.5.228 87084 username aminvpn 87084 mac 87084 bytes_out 494117 87084 bytes_in 10141025 87084 station_ip 113.203.105.163 87084 port 21 87084 unique_id port 87084 remote_ip 10.8.0.6 87085 username forozande 87085 unique_id port 87085 terminate_cause User-Request 87085 bytes_out 26504 87085 bytes_in 77847 87085 station_ip 37.129.29.209 87085 port 15728689 87085 nas_port_type Virtual 87085 remote_ip 5.5.5.231 87086 username aminvpn 87086 mac 87086 bytes_out 60281 87086 bytes_in 153177 87086 station_ip 113.203.105.163 87086 port 21 87086 unique_id port 87086 remote_ip 10.8.0.6 87089 username aminvpn 87089 mac 87089 bytes_out 0 87089 bytes_in 0 87089 station_ip 5.119.1.160 87089 port 22 87089 unique_id port 87089 remote_ip 10.8.0.6 87092 username aminvpn 87092 mac 87092 bytes_out 0 87092 bytes_in 0 87092 station_ip 113.203.105.163 87092 port 21 87092 unique_id port 87092 remote_ip 10.8.0.6 87094 username mobina 87094 kill_reason Relative expiration date has reached 87094 unique_id port 87094 bytes_out 0 87094 bytes_in 0 87094 station_ip 5.219.215.72 87094 port 15728690 87094 nas_port_type Virtual 87097 username aminvpn 87097 mac 87097 bytes_out 0 87097 bytes_in 0 87097 station_ip 5.119.1.160 87097 port 22 87097 unique_id port 87097 remote_ip 10.8.0.6 87100 username aminvpn 87100 mac 87100 bytes_out 0 87100 bytes_in 0 87100 station_ip 113.203.105.163 87100 port 21 87100 unique_id port 87100 remote_ip 10.8.0.6 87104 username alinezhad 87104 unique_id port 87104 terminate_cause User-Request 87104 bytes_out 0 87104 bytes_in 0 87104 station_ip 5.202.60.209 87104 port 15728692 87104 nas_port_type Virtual 87104 remote_ip 5.5.5.226 87107 username aminvpn 87107 mac 87107 bytes_out 0 87107 bytes_in 0 87107 station_ip 113.203.105.163 87107 port 21 87107 unique_id port 87107 remote_ip 10.8.0.6 87110 username aminvpn 87110 mac 87110 bytes_out 0 87110 bytes_in 0 87110 station_ip 113.203.105.163 87110 port 21 87110 unique_id port 87110 remote_ip 10.8.0.6 87115 username alirezazamani 87115 kill_reason Relative expiration date has reached 87115 unique_id port 87115 bytes_out 0 87115 bytes_in 0 87115 station_ip 37.27.27.5 87115 port 15728693 87115 nas_port_type Virtual 87117 username aminvpn 87117 mac 87117 bytes_out 67098 87117 bytes_in 88049 87117 station_ip 113.203.105.163 87117 port 21 87117 unique_id port 87117 remote_ip 10.8.0.6 87122 username aminvpn 87122 mac 87122 bytes_out 0 87122 bytes_in 0 87122 station_ip 113.203.105.163 87122 port 21 87122 unique_id port 87122 remote_ip 10.8.0.6 87128 username forozande 87128 unique_id port 87128 terminate_cause User-Request 87128 bytes_out 21480 87128 bytes_in 52445 87128 station_ip 83.123.52.240 87128 port 15728703 87128 nas_port_type Virtual 87128 remote_ip 5.5.5.220 87132 username asadi 87132 unique_id port 87132 terminate_cause User-Request 87132 bytes_out 37955 87132 bytes_in 140191 87132 station_ip 83.122.37.51 87132 port 15728707 87132 nas_port_type Virtual 87132 remote_ip 5.5.5.222 87133 username heydari 87133 unique_id port 87133 terminate_cause Lost-Carrier 87133 bytes_out 45670 87133 bytes_in 345170 87133 station_ip 5.119.11.246 87133 port 15728706 87133 nas_port_type Virtual 87133 remote_ip 5.5.5.218 87140 username soleymani 87140 kill_reason Relative expiration date has reached 87140 unique_id port 87140 bytes_out 0 87140 bytes_in 0 87140 station_ip 5.120.30.149 87140 port 15728717 87140 nas_port_type Virtual 87142 username soleymani 87142 kill_reason Relative expiration date has reached 87142 unique_id port 87142 bytes_out 0 87142 bytes_in 0 87142 station_ip 5.119.19.204 87142 port 15728719 87142 nas_port_type Virtual 87149 username soleymani 87149 kill_reason Relative expiration date has reached 87149 unique_id port 87149 bytes_out 0 87149 bytes_in 0 87149 station_ip 5.119.19.204 87149 port 15728726 87149 nas_port_type Virtual 87151 username soleymani 87151 kill_reason Relative expiration date has reached 87151 unique_id port 87151 bytes_out 0 87151 bytes_in 0 87151 station_ip 5.119.219.231 87151 port 15728728 87151 nas_port_type Virtual 87152 username aminvpn 87152 mac 87152 bytes_out 0 87152 bytes_in 0 87152 station_ip 113.203.105.163 87152 port 21 87152 unique_id port 87152 remote_ip 10.8.0.6 87155 username soleymani 87155 kill_reason Relative expiration date has reached 87155 unique_id port 87155 bytes_out 0 87155 bytes_in 0 87155 station_ip 5.120.60.224 87155 port 15728733 87155 nas_port_type Virtual 87157 username soleymani 87157 kill_reason Relative expiration date has reached 87157 bytes_out 19729 87157 nas_port_type Virtual 87157 station_ip 5.119.45.64 87157 port 15728712 87157 terminate_cause Lost-Carrier 87157 bytes_in 220656 87157 unique_id port 87157 remote_ip 5.5.5.215 87159 username mrg 87159 unique_id port 87159 terminate_cause Lost-Carrier 87159 bytes_out 557258 87159 bytes_in 15858041 87159 station_ip 5.119.165.137 87159 port 15728713 87159 nas_port_type Virtual 87159 remote_ip 5.5.5.214 87161 username caferibar 87161 unique_id port 87161 terminate_cause User-Request 87161 bytes_out 2527929 87161 bytes_in 59056531 87161 station_ip 37.27.3.57 87161 port 15728709 87161 nas_port_type Virtual 87161 remote_ip 5.5.5.255 87163 username forozande 87163 unique_id port 87163 terminate_cause User-Request 87163 bytes_out 82760 87163 bytes_in 671087 87163 station_ip 113.203.32.212 87163 port 15728736 87163 nas_port_type Virtual 87163 remote_ip 5.5.5.211 87164 username alinezhad 87164 unique_id port 87164 terminate_cause User-Request 87164 bytes_out 57254 87164 bytes_in 851875 87164 station_ip 5.202.60.209 87164 port 15728739 87120 bytes_in 0 87120 station_ip 5.202.60.209 87120 port 15728699 87120 nas_port_type Virtual 87120 remote_ip 5.5.5.226 87121 username zamanialireza 87121 unique_id port 87121 terminate_cause User-Request 87121 bytes_out 252793 87121 bytes_in 318104 87121 station_ip 83.122.37.232 87121 port 15728700 87121 nas_port_type Virtual 87121 remote_ip 5.5.5.223 87123 username asadi 87123 unique_id port 87123 terminate_cause User-Request 87123 bytes_out 61005 87123 bytes_in 568845 87123 station_ip 83.122.37.51 87123 port 15728701 87123 nas_port_type Virtual 87123 remote_ip 5.5.5.222 87129 username forozande 87129 unique_id port 87129 terminate_cause User-Request 87129 bytes_out 43679 87129 bytes_in 76799 87129 station_ip 83.123.52.240 87129 port 15728704 87129 nas_port_type Virtual 87129 remote_ip 5.5.5.220 87135 username aminvpn 87135 mac 87135 bytes_out 225144 87135 bytes_in 527302 87135 station_ip 113.203.105.163 87135 port 21 87135 unique_id port 87135 remote_ip 10.8.0.6 87137 username soleymani 87137 kill_reason Relative expiration date has reached 87137 unique_id port 87137 bytes_out 0 87137 bytes_in 0 87137 station_ip 5.120.30.149 87137 port 15728714 87137 nas_port_type Virtual 87139 username soleymani 87139 kill_reason Relative expiration date has reached 87139 unique_id port 87139 bytes_out 0 87139 bytes_in 0 87139 station_ip 5.120.30.149 87139 port 15728716 87139 nas_port_type Virtual 87144 username soleymani 87144 kill_reason Relative expiration date has reached 87144 unique_id port 87144 bytes_out 0 87144 bytes_in 0 87144 station_ip 5.119.19.204 87144 port 15728721 87144 nas_port_type Virtual 87146 username soleymani 87146 kill_reason Relative expiration date has reached 87146 unique_id port 87146 bytes_out 0 87146 bytes_in 0 87146 station_ip 5.119.19.204 87146 port 15728723 87146 nas_port_type Virtual 87148 username soleymani 87148 kill_reason Relative expiration date has reached 87148 unique_id port 87148 bytes_out 0 87148 bytes_in 0 87148 station_ip 5.119.19.204 87148 port 15728725 87148 nas_port_type Virtual 87153 username soleymani 87153 kill_reason Relative expiration date has reached 87153 unique_id port 87153 bytes_out 0 87153 bytes_in 0 87153 station_ip 5.119.219.231 87153 port 15728731 87153 nas_port_type Virtual 87158 username zamanialireza 87158 unique_id port 87158 terminate_cause User-Request 87158 bytes_out 252475 87158 bytes_in 1430952 87158 station_ip 5.160.115.100 87158 port 15728729 87158 nas_port_type Virtual 87158 remote_ip 5.5.5.213 87160 username alinezhad 87160 unique_id port 87160 terminate_cause User-Request 87160 bytes_out 0 87160 bytes_in 0 87160 station_ip 5.202.60.209 87160 port 15728735 87160 nas_port_type Virtual 87160 remote_ip 5.5.5.226 87162 username aminvpn 87162 mac 87162 bytes_out 136409 87162 bytes_in 210195 87162 station_ip 113.203.105.163 87162 port 21 87162 unique_id port 87162 remote_ip 10.8.0.6 87168 username mahdixz 87168 unique_id port 87168 terminate_cause Lost-Carrier 87168 bytes_out 3647994 87168 bytes_in 8882810 87168 station_ip 151.235.93.199 87168 port 15728737 87168 nas_port_type Virtual 87168 remote_ip 5.5.5.210 87170 username aminvpn 87170 mac 87170 bytes_out 0 87170 bytes_in 0 87170 station_ip 113.203.105.163 87170 port 21 87170 unique_id port 87170 remote_ip 10.8.0.6 87171 username caferibar 87171 unique_id port 87171 terminate_cause User-Request 87171 bytes_out 2744977 87171 bytes_in 127178330 87171 station_ip 37.27.3.57 87171 port 15728738 87171 nas_port_type Virtual 87171 remote_ip 5.5.5.255 87179 username forozande 87179 unique_id port 87179 terminate_cause User-Request 87179 bytes_out 10571 87126 username forozande 87126 unique_id port 87126 terminate_cause User-Request 87126 bytes_out 30607 87126 bytes_in 100794 87126 station_ip 83.122.5.54 87126 port 15728702 87126 nas_port_type Virtual 87126 remote_ip 5.5.5.221 87131 username majid 87131 unique_id port 87131 terminate_cause User-Request 87131 bytes_out 1284876 87131 bytes_in 23868525 87131 station_ip 86.57.112.234 87131 port 15728680 87131 nas_port_type Virtual 87131 remote_ip 5.5.5.229 87134 username afarin 87134 unique_id port 87134 terminate_cause User-Request 87134 bytes_out 360599 87134 bytes_in 9195507 87134 station_ip 83.123.124.88 87134 port 15728710 87134 nas_port_type Virtual 87134 remote_ip 5.5.5.219 87141 username soleymani 87141 kill_reason Relative expiration date has reached 87141 unique_id port 87141 bytes_out 0 87141 bytes_in 0 87141 station_ip 5.120.30.149 87141 port 15728718 87141 nas_port_type Virtual 87150 username soleymani 87150 kill_reason Relative expiration date has reached 87150 unique_id port 87150 bytes_out 0 87150 bytes_in 0 87150 station_ip 5.119.219.231 87150 port 15728727 87150 nas_port_type Virtual 87154 username soleymani 87154 kill_reason Relative expiration date has reached 87154 unique_id port 87154 bytes_out 0 87154 bytes_in 0 87154 station_ip 5.120.60.224 87154 port 15728732 87154 nas_port_type Virtual 87156 username soleymani 87156 kill_reason Relative expiration date has reached 87156 unique_id port 87156 bytes_out 0 87156 bytes_in 0 87156 station_ip 5.120.60.224 87156 port 15728734 87156 nas_port_type Virtual 87167 username pouria 87167 kill_reason Relative expiration date has reached 87167 unique_id port 87167 bytes_out 0 87167 bytes_in 0 87167 station_ip 5.119.11.240 87167 port 15728743 87167 nas_port_type Virtual 87175 username amir 87175 unique_id port 87175 terminate_cause Lost-Carrier 87175 bytes_out 68567 87175 bytes_in 969725 87175 station_ip 46.225.211.39 87175 port 15728730 87175 nas_port_type Virtual 87175 remote_ip 5.5.5.212 87177 username forozande 87177 unique_id port 87177 terminate_cause User-Request 87177 bytes_out 39685 87177 bytes_in 325601 87177 station_ip 83.123.206.194 87177 port 15728755 87177 nas_port_type Virtual 87177 remote_ip 5.5.5.202 87181 username jamali 87181 unique_id port 87181 terminate_cause Lost-Carrier 87181 bytes_out 1117121 87181 bytes_in 16491525 87181 station_ip 5.119.140.225 87181 port 15728754 87181 nas_port_type Virtual 87181 remote_ip 5.5.5.203 87184 username madadi 87184 unique_id port 87184 terminate_cause Lost-Carrier 87184 bytes_out 158990 87184 bytes_in 1069792 87184 station_ip 5.120.86.175 87184 port 15728749 87184 nas_port_type Virtual 87184 remote_ip 5.5.5.204 87189 username forozande 87189 unique_id port 87189 terminate_cause User-Request 87189 bytes_out 53672 87189 bytes_in 98905 87189 station_ip 83.123.127.172 87189 port 15728769 87189 nas_port_type Virtual 87189 remote_ip 5.5.5.193 87191 username forozande 87191 unique_id port 87191 terminate_cause User-Request 87191 bytes_out 103839 87191 bytes_in 3083544 87191 station_ip 83.123.127.172 87191 port 15728772 87191 nas_port_type Virtual 87191 remote_ip 5.5.5.193 87197 username ahmadi 87197 unique_id port 87197 terminate_cause User-Request 87197 bytes_out 106840 87197 bytes_in 896553 87197 station_ip 83.123.179.14 87197 port 15728775 87197 nas_port_type Virtual 87197 remote_ip 5.5.5.192 87199 username forozande 87199 unique_id port 87199 terminate_cause User-Request 87199 bytes_out 372750 87199 bytes_in 12365480 87199 station_ip 83.122.208.189 87199 port 15728779 87199 nas_port_type Virtual 87199 remote_ip 5.5.5.190 87207 username zamanialireza 87207 unique_id port 87207 terminate_cause User-Request 87130 station_ip 83.123.124.88 87130 port 15728705 87130 nas_port_type Virtual 87130 remote_ip 5.5.5.219 87136 username soleymani 87136 unique_id port 87136 terminate_cause Lost-Carrier 87136 bytes_out 54403 87136 bytes_in 221133 87136 station_ip 5.120.107.177 87136 port 15728708 87136 nas_port_type Virtual 87136 remote_ip 5.5.5.217 87138 username soleymani 87138 kill_reason Relative expiration date has reached 87138 unique_id port 87138 bytes_out 0 87138 bytes_in 0 87138 station_ip 5.120.30.149 87138 port 15728715 87138 nas_port_type Virtual 87143 username soleymani 87143 kill_reason Relative expiration date has reached 87143 unique_id port 87143 bytes_out 0 87143 bytes_in 0 87143 station_ip 5.119.19.204 87143 port 15728720 87143 nas_port_type Virtual 87145 username soleymani 87145 kill_reason Relative expiration date has reached 87145 unique_id port 87145 bytes_out 0 87145 bytes_in 0 87145 station_ip 5.119.19.204 87145 port 15728722 87145 nas_port_type Virtual 87147 username soleymani 87147 kill_reason Relative expiration date has reached 87147 unique_id port 87147 bytes_out 0 87147 bytes_in 0 87147 station_ip 5.119.19.204 87147 port 15728724 87147 nas_port_type Virtual 87165 username zamanialireza 87165 unique_id port 87165 terminate_cause User-Request 87165 bytes_out 308143 87165 bytes_in 1270334 87165 station_ip 37.129.208.170 87165 port 15728740 87165 nas_port_type Virtual 87165 remote_ip 5.5.5.233 87169 username forozande 87169 unique_id port 87169 terminate_cause User-Request 87169 bytes_out 0 87169 bytes_in 0 87169 station_ip 83.122.20.207 87169 port 15728744 87169 nas_port_type Virtual 87169 remote_ip 5.5.5.207 87173 username madadi 87173 unique_id port 87173 terminate_cause User-Request 87173 bytes_out 0 87173 bytes_in 0 87173 station_ip 5.120.86.175 87173 port 15728748 87173 nas_port_type Virtual 87173 remote_ip 5.5.5.204 87176 username ksrkrgr 87176 kill_reason Maximum check online fails reached 87176 unique_id port 87176 bytes_out 5741531 87176 bytes_in 23634128 87176 station_ip 94.176.15.195 87176 port 15728745 87176 nas_port_type Virtual 87176 remote_ip 5.5.5.206 87178 username forozande 87178 unique_id port 87178 terminate_cause User-Request 87178 bytes_out 275456 87178 bytes_in 3165584 87178 station_ip 83.123.206.194 87178 port 15728756 87178 nas_port_type Virtual 87178 remote_ip 5.5.5.202 87183 username forozande 87183 unique_id port 87183 terminate_cause User-Request 87183 bytes_out 22703 87183 bytes_in 84866 87183 station_ip 37.129.142.65 87183 port 15728760 87183 nas_port_type Virtual 87183 remote_ip 5.5.5.201 87187 username shahnaz 87187 unique_id port 87187 terminate_cause User-Request 87187 bytes_out 0 87187 bytes_in 0 87187 station_ip 5.119.87.29 87187 port 15728768 87187 nas_port_type Virtual 87187 remote_ip 5.5.5.194 87192 username aminvpn 87192 mac 87192 bytes_out 1000652 87192 bytes_in 11126779 87192 station_ip 83.122.180.252 87192 port 21 87192 unique_id port 87192 remote_ip 10.8.0.6 87194 username forozande 87194 unique_id port 87194 terminate_cause User-Request 87194 bytes_out 188332 87194 bytes_in 6017225 87194 station_ip 83.123.127.172 87194 port 15728773 87194 nas_port_type Virtual 87194 remote_ip 5.5.5.193 87200 username alinezhad 87200 unique_id port 87200 terminate_cause User-Request 87200 bytes_out 0 87200 bytes_in 0 87200 station_ip 5.202.60.209 87200 port 15728781 87200 nas_port_type Virtual 87200 remote_ip 5.5.5.226 87203 username forozande 87203 unique_id port 87203 terminate_cause User-Request 87203 bytes_out 461425 87203 bytes_in 14007666 87203 station_ip 83.122.208.189 87203 port 15728784 87203 nas_port_type Virtual 87203 remote_ip 5.5.5.190 87164 nas_port_type Virtual 87164 remote_ip 5.5.5.226 87166 username forozande 87166 unique_id port 87166 terminate_cause User-Request 87166 bytes_out 58465 87166 bytes_in 255988 87166 station_ip 37.129.140.64 87166 port 15728742 87166 nas_port_type Virtual 87166 remote_ip 5.5.5.208 87172 username amirabbas 87172 unique_id port 87172 terminate_cause User-Request 87172 bytes_out 356261 87172 bytes_in 3653045 87172 station_ip 31.56.156.228 87172 port 15728741 87172 nas_port_type Virtual 87172 remote_ip 5.5.5.209 87174 username arman 87174 unique_id port 87174 terminate_cause Lost-Carrier 87174 bytes_out 8312645 87174 bytes_in 63084225 87174 station_ip 5.119.242.66 87174 port 15728695 87174 nas_port_type Virtual 87174 remote_ip 5.5.5.225 87182 username forozande 87182 unique_id port 87182 terminate_cause User-Request 87182 bytes_out 26470 87182 bytes_in 205358 87182 station_ip 37.129.142.65 87182 port 15728759 87182 nas_port_type Virtual 87182 remote_ip 5.5.5.201 87186 username caferibar 87186 unique_id port 87186 terminate_cause User-Request 87186 bytes_out 192703 87186 bytes_in 1647900 87186 station_ip 94.183.213.166 87186 port 15728765 87186 nas_port_type Virtual 87186 remote_ip 5.5.5.197 87188 username zamanialireza 87188 unique_id port 87188 terminate_cause Lost-Carrier 87188 bytes_out 235181 87188 bytes_in 820255 87188 station_ip 94.183.213.166 87188 port 15728764 87188 nas_port_type Virtual 87188 remote_ip 5.5.5.198 87190 username forozande 87190 unique_id port 87190 terminate_cause User-Request 87190 bytes_out 33267 87190 bytes_in 322886 87190 station_ip 83.123.127.172 87190 port 15728771 87190 nas_port_type Virtual 87190 remote_ip 5.5.5.193 87193 username zamanialireza 87193 unique_id port 87193 terminate_cause Lost-Carrier 87193 bytes_out 367769 87193 bytes_in 5223477 87193 station_ip 94.183.213.166 87193 port 15728767 87193 nas_port_type Virtual 87193 remote_ip 5.5.5.195 87195 username forozande 87195 unique_id port 87195 terminate_cause User-Request 87195 bytes_out 444084 87195 bytes_in 14352324 87195 station_ip 83.122.208.189 87195 port 15728777 87195 nas_port_type Virtual 87195 remote_ip 5.5.5.190 87198 username forozande 87198 unique_id port 87198 terminate_cause User-Request 87198 bytes_out 420038 87198 bytes_in 15392445 87198 station_ip 83.122.208.189 87198 port 15728778 87198 nas_port_type Virtual 87198 remote_ip 5.5.5.190 87202 username forozande 87202 unique_id port 87202 terminate_cause User-Request 87202 bytes_out 0 87202 bytes_in 0 87202 station_ip 83.122.208.189 87202 port 15728783 87202 nas_port_type Virtual 87202 remote_ip 5.5.5.190 87204 username madadi 87204 unique_id port 87204 terminate_cause Lost-Carrier 87204 bytes_out 290442 87204 bytes_in 1055954 87204 station_ip 5.120.60.126 87204 port 15728776 87204 nas_port_type Virtual 87204 remote_ip 5.5.5.191 87208 username asadi 87208 unique_id port 87208 terminate_cause User-Request 87208 bytes_out 108434 87208 bytes_in 1133868 87208 station_ip 83.123.204.96 87208 port 15728790 87208 nas_port_type Virtual 87208 remote_ip 5.5.5.184 87215 username ahmadipour 87215 unique_id port 87215 terminate_cause Lost-Carrier 87215 bytes_out 305219 87215 bytes_in 5658124 87215 station_ip 37.129.22.22 87215 port 15728795 87215 nas_port_type Virtual 87215 remote_ip 5.5.5.182 87219 username madadi 87219 unique_id port 87219 terminate_cause Lost-Carrier 87219 bytes_out 15596 87219 bytes_in 149574 87219 station_ip 5.120.186.98 87219 port 15728796 87219 nas_port_type Virtual 87219 remote_ip 5.5.5.181 87227 username aminvpn 87227 mac 87227 bytes_out 0 87227 bytes_in 0 87227 station_ip 5.119.139.8 87227 port 21 87179 bytes_in 80209 87179 station_ip 83.123.206.194 87179 port 15728757 87179 nas_port_type Virtual 87179 remote_ip 5.5.5.202 87180 username forozande 87180 unique_id port 87180 terminate_cause User-Request 87180 bytes_out 20275 87180 bytes_in 38302 87180 station_ip 37.129.142.65 87180 port 15728758 87180 nas_port_type Virtual 87180 remote_ip 5.5.5.201 87185 username alinezhad 87185 unique_id port 87185 terminate_cause User-Request 87185 bytes_out 0 87185 bytes_in 0 87185 station_ip 5.202.60.209 87185 port 15728762 87185 nas_port_type Virtual 87185 remote_ip 5.5.5.226 87196 username madadi 87196 unique_id port 87196 terminate_cause Lost-Carrier 87196 bytes_out 1485010 87196 bytes_in 2615261 87196 station_ip 5.119.120.39 87196 port 15728766 87196 nas_port_type Virtual 87196 remote_ip 5.5.5.196 87201 username forozande 87201 unique_id port 87201 terminate_cause User-Request 87201 bytes_out 422322 87201 bytes_in 13858713 87201 station_ip 83.122.208.189 87201 port 15728780 87201 nas_port_type Virtual 87201 remote_ip 5.5.5.190 87205 username forozande 87205 unique_id port 87205 terminate_cause User-Request 87205 bytes_out 536442 87205 bytes_in 17771413 87205 station_ip 83.122.208.189 87205 port 15728785 87205 nas_port_type Virtual 87205 remote_ip 5.5.5.190 87206 username madadi 87206 unique_id port 87206 terminate_cause Lost-Carrier 87206 bytes_out 178794 87206 bytes_in 1273790 87206 station_ip 5.120.98.111 87206 port 15728782 87206 nas_port_type Virtual 87206 remote_ip 5.5.5.189 87210 username asadi 87210 unique_id port 87210 terminate_cause User-Request 87210 bytes_out 237709 87210 bytes_in 3556641 87210 station_ip 83.123.204.96 87210 port 15728791 87210 nas_port_type Virtual 87210 remote_ip 5.5.5.184 87212 username forozande 87212 unique_id port 87212 terminate_cause User-Request 87212 bytes_out 59188 87212 bytes_in 243426 87212 station_ip 37.129.47.176 87212 port 15728793 87212 nas_port_type Virtual 87212 remote_ip 5.5.5.183 87217 username heydari 87217 unique_id port 87217 terminate_cause Lost-Carrier 87217 bytes_out 628708 87217 bytes_in 3978871 87217 station_ip 5.119.11.246 87217 port 15728746 87217 nas_port_type Virtual 87217 remote_ip 5.5.5.218 87218 username forozande 87218 unique_id port 87218 terminate_cause User-Request 87218 bytes_out 23786 87218 bytes_in 172897 87218 station_ip 37.129.47.176 87218 port 15728797 87218 nas_port_type Virtual 87218 remote_ip 5.5.5.183 87221 username zamanialireza 87221 unique_id port 87221 terminate_cause User-Request 87221 bytes_out 224698330 87221 bytes_in 298435699 87221 station_ip 37.129.26.104 87221 port 15728747 87221 nas_port_type Virtual 87221 remote_ip 5.5.5.205 87222 username shahriyar 87222 unique_id port 87222 terminate_cause Lost-Carrier 87222 bytes_out 14528976 87222 bytes_in 446070222 87222 station_ip 5.202.11.4 87222 port 15728711 87222 nas_port_type Virtual 87222 remote_ip 5.5.5.216 87223 username mahbobeh 87223 unique_id port 87223 terminate_cause Lost-Carrier 87223 bytes_out 335716 87223 bytes_in 8580463 87223 station_ip 113.203.101.103 87223 port 15728798 87223 nas_port_type Virtual 87223 remote_ip 5.5.5.188 87235 username aminvpn 87235 mac 87235 bytes_out 0 87235 bytes_in 0 87235 station_ip 5.119.139.8 87235 port 21 87235 unique_id port 87235 remote_ip 10.8.0.6 87245 username aminvpn 87245 mac 87245 bytes_out 0 87245 bytes_in 0 87245 station_ip 83.122.201.212 87245 port 22 87245 unique_id port 87245 remote_ip 10.8.0.6 87247 username aminvpn 87247 mac 87247 bytes_out 0 87247 bytes_in 0 87247 station_ip 83.122.201.212 87247 port 22 87247 unique_id port 87207 bytes_out 0 87207 bytes_in 0 87207 station_ip 5.160.113.254 87207 port 15728789 87207 nas_port_type Virtual 87207 remote_ip 5.5.5.185 87214 username amirabbas 87214 unique_id port 87214 terminate_cause User-Request 87214 bytes_out 32692034 87214 bytes_in 780359421 87214 station_ip 31.56.156.228 87214 port 15728774 87214 nas_port_type Virtual 87214 remote_ip 5.5.5.209 87220 username mahbobeh 87220 unique_id port 87220 terminate_cause Lost-Carrier 87220 bytes_out 457705 87220 bytes_in 8905601 87220 station_ip 113.203.101.103 87220 port 15728786 87220 nas_port_type Virtual 87220 remote_ip 5.5.5.188 87224 username aminvpn 87224 mac 87224 bytes_out 0 87224 bytes_in 0 87224 station_ip 5.119.139.8 87224 port 21 87224 unique_id port 87224 remote_ip 10.8.0.6 87226 username aminvpn 87226 mac 87226 bytes_out 0 87226 bytes_in 0 87226 station_ip 83.122.201.212 87226 port 22 87226 unique_id port 87226 remote_ip 10.8.0.6 87229 username aminvpn 87229 mac 87229 bytes_out 0 87229 bytes_in 0 87229 station_ip 5.119.139.8 87229 port 21 87229 unique_id port 87229 remote_ip 10.8.0.6 87232 username aminvpn 87232 mac 87232 bytes_out 0 87232 bytes_in 0 87232 station_ip 83.122.201.212 87232 port 22 87232 unique_id port 87232 remote_ip 10.8.0.6 87239 username forozande 87239 unique_id port 87239 terminate_cause User-Request 87239 bytes_out 40126 87239 bytes_in 652927 87239 station_ip 37.129.148.63 87239 port 15728802 87239 nas_port_type Virtual 87239 remote_ip 5.5.5.180 87242 username aminvpn 87242 mac 87242 bytes_out 0 87242 bytes_in 0 87242 station_ip 5.119.139.8 87242 port 21 87242 unique_id port 87242 remote_ip 10.8.0.6 87244 username aminvpn 87244 mac 87244 bytes_out 0 87244 bytes_in 0 87244 station_ip 5.119.139.8 87244 port 21 87244 unique_id port 87244 remote_ip 10.8.0.6 87246 username aminvpn 87246 mac 87246 bytes_out 0 87246 bytes_in 0 87246 station_ip 5.119.139.8 87246 port 21 87246 unique_id port 87246 remote_ip 10.8.0.6 87249 username asadi 87249 unique_id port 87249 terminate_cause User-Request 87249 bytes_out 463535 87249 bytes_in 25182711 87249 station_ip 83.123.204.96 87249 port 15728804 87249 nas_port_type Virtual 87249 remote_ip 5.5.5.184 87251 username forozande 87251 unique_id port 87251 terminate_cause User-Request 87251 bytes_out 20153 87251 bytes_in 37894 87251 station_ip 37.129.148.63 87251 port 15728805 87251 nas_port_type Virtual 87251 remote_ip 5.5.5.180 87256 username alinezhad 87256 unique_id port 87256 terminate_cause User-Request 87256 bytes_out 0 87256 bytes_in 0 87256 station_ip 5.202.60.209 87256 port 15728808 87256 nas_port_type Virtual 87256 remote_ip 5.5.5.226 87260 username asadi 87260 unique_id port 87260 terminate_cause User-Request 87260 bytes_out 34127 87260 bytes_in 490793 87260 station_ip 83.123.204.96 87260 port 15728812 87260 nas_port_type Virtual 87260 remote_ip 5.5.5.184 87267 username asadi 87267 unique_id port 87267 terminate_cause User-Request 87267 bytes_out 202167 87267 bytes_in 4677014 87267 station_ip 83.123.204.96 87267 port 15728819 87267 nas_port_type Virtual 87267 remote_ip 5.5.5.184 87268 username asadi 87268 unique_id port 87268 terminate_cause User-Request 87268 bytes_out 250662 87268 bytes_in 5024289 87268 station_ip 83.123.204.96 87268 port 15728820 87268 nas_port_type Virtual 87268 remote_ip 5.5.5.184 87272 username asadi 87272 unique_id port 87272 terminate_cause User-Request 87272 bytes_out 282213 87272 bytes_in 10448378 87272 station_ip 83.123.204.96 87209 username madadi 87209 unique_id port 87209 terminate_cause Lost-Carrier 87209 bytes_out 18022 87209 bytes_in 126576 87209 station_ip 5.119.254.17 87209 port 15728787 87209 nas_port_type Virtual 87209 remote_ip 5.5.5.187 87211 username asadi 87211 unique_id port 87211 terminate_cause User-Request 87211 bytes_out 515885 87211 bytes_in 17044732 87211 station_ip 83.123.204.96 87211 port 15728792 87211 nas_port_type Virtual 87211 remote_ip 5.5.5.184 87213 username asadi 87213 unique_id port 87213 terminate_cause User-Request 87213 bytes_out 245364 87213 bytes_in 10197498 87213 station_ip 83.123.204.96 87213 port 15728794 87213 nas_port_type Virtual 87213 remote_ip 5.5.5.184 87216 username madadi 87216 unique_id port 87216 terminate_cause Lost-Carrier 87216 bytes_out 105031 87216 bytes_in 459694 87216 station_ip 5.119.65.208 87216 port 15728788 87216 nas_port_type Virtual 87216 remote_ip 5.5.5.186 87225 username forozande 87225 unique_id port 87225 terminate_cause User-Request 87225 bytes_out 45709 87225 bytes_in 312279 87225 station_ip 37.129.148.63 87225 port 15728800 87225 nas_port_type Virtual 87225 remote_ip 5.5.5.180 87228 username aminvpn 87228 mac 87228 bytes_out 0 87228 bytes_in 0 87228 station_ip 83.122.201.212 87228 port 22 87228 unique_id port 87228 remote_ip 10.8.0.6 87231 username aminvpn 87231 mac 87231 bytes_out 0 87231 bytes_in 0 87231 station_ip 5.119.139.8 87231 port 21 87231 unique_id port 87231 remote_ip 10.8.0.6 87234 username aminvpn 87234 mac 87234 bytes_out 0 87234 bytes_in 0 87234 station_ip 83.122.201.212 87234 port 22 87234 unique_id port 87234 remote_ip 10.8.0.6 87237 username aminvpn 87237 mac 87237 bytes_out 0 87237 bytes_in 0 87237 station_ip 5.119.139.8 87237 port 21 87237 unique_id port 87237 remote_ip 10.8.0.6 87263 username alinezhad 87263 unique_id port 87263 terminate_cause User-Request 87263 bytes_out 169690 87263 bytes_in 4960023 87263 station_ip 5.202.60.209 87263 port 15728813 87263 nas_port_type Virtual 87263 remote_ip 5.5.5.226 87264 username soleymani 87264 kill_reason Relative expiration date has reached 87264 unique_id port 87264 bytes_out 0 87264 bytes_in 0 87264 station_ip 5.120.114.238 87264 port 15728816 87264 nas_port_type Virtual 87270 username madadi 87270 unique_id port 87270 terminate_cause Lost-Carrier 87270 bytes_out 299556 87270 bytes_in 1445189 87270 station_ip 5.119.94.148 87270 port 15728815 87270 nas_port_type Virtual 87270 remote_ip 5.5.5.178 87271 username ksrkrgr 87271 unique_id port 87271 terminate_cause User-Request 87271 bytes_out 0 87271 bytes_in 0 87271 station_ip 94.176.15.195 87271 port 15728825 87271 nas_port_type Virtual 87271 remote_ip 5.5.5.206 87274 username mahbobeh 87274 unique_id port 87274 terminate_cause Lost-Carrier 87274 bytes_out 54936 87274 bytes_in 877601 87274 station_ip 113.203.101.103 87274 port 15728799 87274 nas_port_type Virtual 87274 remote_ip 5.5.5.188 87286 username forozande 87286 unique_id port 87286 terminate_cause User-Request 87286 bytes_out 47116 87286 bytes_in 110602 87286 station_ip 83.122.40.227 87286 port 15728840 87286 nas_port_type Virtual 87286 remote_ip 5.5.5.168 87296 username forozande 87296 unique_id port 87296 terminate_cause User-Request 87296 bytes_out 0 87296 bytes_in 0 87296 station_ip 113.203.4.51 87296 port 15728850 87296 nas_port_type Virtual 87296 remote_ip 5.5.5.167 87302 username afarin 87302 unique_id port 87302 terminate_cause User-Request 87302 bytes_out 31442 87302 bytes_in 93579 87302 station_ip 83.123.124.88 87302 port 15728858 87227 unique_id port 87227 remote_ip 10.8.0.6 87230 username aminvpn 87230 mac 87230 bytes_out 0 87230 bytes_in 0 87230 station_ip 83.122.201.212 87230 port 22 87230 unique_id port 87230 remote_ip 10.8.0.6 87233 username aminvpn 87233 mac 87233 bytes_out 0 87233 bytes_in 0 87233 station_ip 5.119.139.8 87233 port 21 87233 unique_id port 87233 remote_ip 10.8.0.6 87236 username aminvpn 87236 mac 87236 bytes_out 0 87236 bytes_in 0 87236 station_ip 83.122.201.212 87236 port 22 87236 unique_id port 87236 remote_ip 10.8.0.6 87238 username aminvpn 87238 mac 87238 bytes_out 0 87238 bytes_in 0 87238 station_ip 83.122.201.212 87238 port 22 87238 unique_id port 87238 remote_ip 10.8.0.6 87240 username aminvpn 87240 mac 87240 bytes_out 0 87240 bytes_in 0 87240 station_ip 5.119.139.8 87240 port 21 87240 unique_id port 87240 remote_ip 10.8.0.6 87241 username aminvpn 87241 mac 87241 bytes_out 0 87241 bytes_in 0 87241 station_ip 83.122.201.212 87241 port 22 87241 unique_id port 87241 remote_ip 10.8.0.6 87243 username aminvpn 87243 mac 87243 bytes_out 0 87243 bytes_in 0 87243 station_ip 83.122.201.212 87243 port 22 87243 unique_id port 87243 remote_ip 10.8.0.6 87250 username aminvpn 87250 mac 87250 bytes_out 0 87250 bytes_in 0 87250 station_ip 5.119.139.8 87250 port 21 87250 unique_id port 87250 remote_ip 10.8.0.6 87252 username aminvpn 87252 mac 87252 bytes_out 0 87252 bytes_in 0 87252 station_ip 83.122.201.212 87252 port 22 87252 unique_id port 87252 remote_ip 10.8.0.6 87254 username forozande 87254 unique_id port 87254 terminate_cause User-Request 87254 bytes_out 214348 87254 bytes_in 6379841 87254 station_ip 37.129.148.63 87254 port 15728806 87254 nas_port_type Virtual 87254 remote_ip 5.5.5.180 87257 username asadi 87257 unique_id port 87257 terminate_cause User-Request 87257 bytes_out 209037 87257 bytes_in 2422864 87257 station_ip 83.123.204.96 87257 port 15728809 87257 nas_port_type Virtual 87257 remote_ip 5.5.5.184 87258 username asadi 87258 unique_id port 87258 terminate_cause User-Request 87258 bytes_out 177089 87258 bytes_in 1999060 87258 station_ip 83.123.204.96 87258 port 15728810 87258 nas_port_type Virtual 87258 remote_ip 5.5.5.184 87261 username aminvpn 87261 mac 87261 bytes_out 0 87261 bytes_in 0 87261 station_ip 83.122.201.212 87261 port 22 87261 unique_id port 87261 remote_ip 10.8.0.6 87262 username asadi 87262 unique_id port 87262 terminate_cause User-Request 87262 bytes_out 387462 87262 bytes_in 8397787 87262 station_ip 83.123.204.96 87262 port 15728814 87262 nas_port_type Virtual 87262 remote_ip 5.5.5.184 87265 username ahmadi 87265 unique_id port 87265 terminate_cause User-Request 87265 bytes_out 34166 87265 bytes_in 292399 87265 station_ip 83.123.222.6 87265 port 15728817 87265 nas_port_type Virtual 87265 remote_ip 5.5.5.177 87269 username asadi 87269 unique_id port 87269 terminate_cause User-Request 87269 bytes_out 486800 87269 bytes_in 18437250 87269 station_ip 83.123.204.96 87269 port 15728823 87269 nas_port_type Virtual 87269 remote_ip 5.5.5.184 87273 username asadi 87273 unique_id port 87273 terminate_cause User-Request 87273 bytes_out 371142 87273 bytes_in 8995166 87273 station_ip 83.123.204.96 87273 port 15728827 87273 nas_port_type Virtual 87273 remote_ip 5.5.5.184 87282 username madadi 87282 unique_id port 87282 terminate_cause Lost-Carrier 87282 bytes_out 109437 87282 bytes_in 323196 87282 station_ip 5.120.130.204 87247 remote_ip 10.8.0.6 87248 username amirabbas 87248 unique_id port 87248 terminate_cause User-Request 87248 bytes_out 232490 87248 bytes_in 1122270 87248 station_ip 31.56.156.228 87248 port 15728803 87248 nas_port_type Virtual 87248 remote_ip 5.5.5.209 87253 username aminvpn 87253 mac 87253 bytes_out 0 87253 bytes_in 0 87253 station_ip 5.119.139.8 87253 port 21 87253 unique_id port 87253 remote_ip 10.8.0.6 87255 username asadi 87255 unique_id port 87255 terminate_cause User-Request 87255 bytes_out 186328 87255 bytes_in 3000541 87255 station_ip 83.123.204.96 87255 port 15728807 87255 nas_port_type Virtual 87255 remote_ip 5.5.5.184 87259 username heydari 87259 unique_id port 87259 terminate_cause User-Request 87259 bytes_out 228813 87259 bytes_in 752683 87259 station_ip 5.119.11.246 87259 port 15728801 87259 nas_port_type Virtual 87259 remote_ip 5.5.5.218 87266 username ksrkrgr 87266 unique_id port 87266 terminate_cause User-Request 87266 bytes_out 0 87266 bytes_in 0 87266 station_ip 94.176.15.195 87266 port 15728818 87266 nas_port_type Virtual 87266 remote_ip 5.5.5.206 87275 username asadi 87275 unique_id port 87275 terminate_cause User-Request 87275 bytes_out 314881 87275 bytes_in 10551235 87275 station_ip 83.123.204.96 87275 port 15728828 87275 nas_port_type Virtual 87275 remote_ip 5.5.5.184 87279 username arman 87279 unique_id port 87279 terminate_cause Lost-Carrier 87279 bytes_out 1305773 87279 bytes_in 44710989 87279 station_ip 5.119.224.184 87279 port 15728824 87279 nas_port_type Virtual 87279 remote_ip 5.5.5.174 87281 username alinezhad 87281 unique_id port 87281 terminate_cause User-Request 87281 bytes_out 0 87281 bytes_in 0 87281 station_ip 5.202.60.209 87281 port 15728835 87281 nas_port_type Virtual 87281 remote_ip 5.5.5.226 87284 username ksrkrgr 87284 unique_id port 87284 terminate_cause User-Request 87284 bytes_out 76257 87284 bytes_in 100560 87284 station_ip 37.129.81.119 87284 port 15728837 87284 nas_port_type Virtual 87284 remote_ip 5.5.5.169 87285 username ksrkrgr 87285 unique_id port 87285 terminate_cause User-Request 87285 bytes_out 14664 87285 bytes_in 27975 87285 station_ip 37.129.81.119 87285 port 15728838 87285 nas_port_type Virtual 87285 remote_ip 5.5.5.169 87289 username forozande 87289 unique_id port 87289 terminate_cause User-Request 87289 bytes_out 44706 87289 bytes_in 371185 87289 station_ip 113.203.4.51 87289 port 15728842 87289 nas_port_type Virtual 87289 remote_ip 5.5.5.167 87290 username forozande 87290 unique_id port 87290 terminate_cause User-Request 87290 bytes_out 62467 87290 bytes_in 828339 87290 station_ip 113.203.4.51 87290 port 15728843 87290 nas_port_type Virtual 87290 remote_ip 5.5.5.167 87293 username forozande 87293 unique_id port 87293 terminate_cause User-Request 87293 bytes_out 39221 87293 bytes_in 390352 87293 station_ip 113.203.4.51 87293 port 15728846 87293 nas_port_type Virtual 87293 remote_ip 5.5.5.167 87294 username asadi 87294 unique_id port 87294 terminate_cause User-Request 87294 bytes_out 22549 87294 bytes_in 39046 87294 station_ip 83.123.204.96 87294 port 15728847 87294 nas_port_type Virtual 87294 remote_ip 5.5.5.184 87298 username forozande 87298 unique_id port 87298 terminate_cause User-Request 87298 bytes_out 9895 87298 bytes_in 26207 87298 station_ip 113.203.4.51 87298 port 15728854 87298 nas_port_type Virtual 87298 remote_ip 5.5.5.167 87303 username mahdixz 87303 unique_id port 87303 terminate_cause User-Request 87303 bytes_out 2780468 87303 bytes_in 144162982 87303 station_ip 151.235.93.199 87303 port 15728849 87303 nas_port_type Virtual 87303 remote_ip 5.5.5.210 87272 port 15728826 87272 nas_port_type Virtual 87272 remote_ip 5.5.5.184 87276 username madadi 87276 unique_id port 87276 terminate_cause Lost-Carrier 87276 bytes_out 77623 87276 bytes_in 282685 87276 station_ip 5.119.185.106 87276 port 15728822 87276 nas_port_type Virtual 87276 remote_ip 5.5.5.175 87277 username asadi 87277 unique_id port 87277 terminate_cause User-Request 87277 bytes_out 196055 87277 bytes_in 4497543 87277 station_ip 83.123.204.96 87277 port 15728829 87277 nas_port_type Virtual 87277 remote_ip 5.5.5.184 87278 username aminvpn 87278 kill_reason Maximum check online fails reached 87278 unique_id port 87278 bytes_out 650142 87278 bytes_in 5708276 87278 station_ip 5.119.139.8 87278 port 15728821 87278 nas_port_type Virtual 87278 remote_ip 5.5.5.176 87280 username madadi 87280 unique_id port 87280 terminate_cause User-Request 87280 bytes_out 16431 87280 bytes_in 24488 87280 station_ip 5.119.218.223 87280 port 15728833 87280 nas_port_type Virtual 87280 remote_ip 5.5.5.171 87283 username forozande 87283 unique_id port 87283 terminate_cause User-Request 87283 bytes_out 102460 87283 bytes_in 1042485 87283 station_ip 83.123.52.115 87283 port 15728836 87283 nas_port_type Virtual 87283 remote_ip 5.5.5.170 87287 username alinezhad 87287 unique_id port 87287 terminate_cause User-Request 87287 bytes_out 0 87287 bytes_in 0 87287 station_ip 5.202.60.209 87287 port 15728841 87287 nas_port_type Virtual 87287 remote_ip 5.5.5.226 87288 username ksrkrgr 87288 unique_id port 87288 terminate_cause User-Request 87288 bytes_out 1663667 87288 bytes_in 36279897 87288 station_ip 94.176.15.195 87288 port 15728839 87288 nas_port_type Virtual 87288 remote_ip 5.5.5.206 87291 username forozande 87291 unique_id port 87291 terminate_cause User-Request 87291 bytes_out 48442 87291 bytes_in 948866 87291 station_ip 113.203.4.51 87291 port 15728844 87291 nas_port_type Virtual 87291 remote_ip 5.5.5.167 87292 username forozande 87292 unique_id port 87292 terminate_cause User-Request 87292 bytes_out 53322 87292 bytes_in 400839 87292 station_ip 113.203.4.51 87292 port 15728845 87292 nas_port_type Virtual 87292 remote_ip 5.5.5.167 87295 username forozande 87295 unique_id port 87295 terminate_cause User-Request 87295 bytes_out 427912 87295 bytes_in 317509 87295 station_ip 113.203.4.51 87295 port 15728848 87295 nas_port_type Virtual 87295 remote_ip 5.5.5.167 87297 username forozande 87297 unique_id port 87297 terminate_cause User-Request 87297 bytes_out 8035 87297 bytes_in 22308 87297 station_ip 113.203.4.51 87297 port 15728851 87297 nas_port_type Virtual 87297 remote_ip 5.5.5.167 87307 username forozande 87307 unique_id port 87307 terminate_cause User-Request 87307 bytes_out 35939 87307 bytes_in 157168 87307 station_ip 37.129.87.6 87307 port 15728861 87307 nas_port_type Virtual 87307 remote_ip 5.5.5.162 87308 username shahnaz 87308 unique_id port 87308 terminate_cause User-Request 87308 bytes_out 6038739 87308 bytes_in 132584009 87308 station_ip 5.119.87.29 87308 port 15728770 87308 nas_port_type Virtual 87308 remote_ip 5.5.5.194 87311 username aminvpn 87311 unique_id port 87311 terminate_cause User-Request 87311 bytes_out 3791381 87311 bytes_in 43783845 87311 station_ip 5.119.139.8 87311 port 15728811 87311 nas_port_type Virtual 87311 remote_ip 5.5.5.179 87321 username shahriyar 87321 unique_id port 87321 terminate_cause Lost-Carrier 87321 bytes_out 15774350 87321 bytes_in 878566034 87321 station_ip 5.202.11.4 87321 port 15728830 87321 nas_port_type Virtual 87321 remote_ip 5.5.5.216 87322 username alinezhad 87322 unique_id port 87322 terminate_cause User-Request 87322 bytes_out 0 87322 bytes_in 0 87282 port 15728831 87282 nas_port_type Virtual 87282 remote_ip 5.5.5.173 87299 username zamanialireza 87299 unique_id port 87299 terminate_cause User-Request 87299 bytes_out 102643 87299 bytes_in 348008 87299 station_ip 37.129.213.222 87299 port 15728855 87299 nas_port_type Virtual 87299 remote_ip 5.5.5.165 87300 username afarin 87300 unique_id port 87300 terminate_cause User-Request 87300 bytes_out 11098539 87300 bytes_in 1139749 87300 station_ip 83.123.124.88 87300 port 15728856 87300 nas_port_type Virtual 87300 remote_ip 5.5.5.219 87301 username zamanialireza 87301 unique_id port 87301 terminate_cause User-Request 87301 bytes_out 169328 87301 bytes_in 1866727 87301 station_ip 37.129.213.222 87301 port 15728857 87301 nas_port_type Virtual 87301 remote_ip 5.5.5.165 87305 username forozande 87305 unique_id port 87305 terminate_cause User-Request 87305 bytes_out 26888 87305 bytes_in 259340 87305 station_ip 113.203.48.22 87305 port 15728860 87305 nas_port_type Virtual 87305 remote_ip 5.5.5.163 87310 username forozande 87310 unique_id port 87310 terminate_cause User-Request 87310 bytes_out 98618 87310 bytes_in 1966117 87310 station_ip 37.129.87.6 87310 port 15728863 87310 nas_port_type Virtual 87310 remote_ip 5.5.5.162 87312 username forozande 87312 unique_id port 87312 terminate_cause User-Request 87312 bytes_out 72137 87312 bytes_in 1180033 87312 station_ip 37.129.87.6 87312 port 15728864 87312 nas_port_type Virtual 87312 remote_ip 5.5.5.162 87316 username caferibar 87316 unique_id port 87316 terminate_cause User-Request 87316 bytes_out 2346188 87316 bytes_in 62112072 87316 station_ip 151.238.235.184 87316 port 15728865 87316 nas_port_type Virtual 87316 remote_ip 5.5.5.161 87317 username forozande 87317 unique_id port 87317 terminate_cause User-Request 87317 bytes_out 90313 87317 bytes_in 1045699 87317 station_ip 113.203.101.209 87317 port 15728869 87317 nas_port_type Virtual 87317 remote_ip 5.5.5.158 87319 username shokokian 87319 unique_id port 87319 terminate_cause Lost-Carrier 87319 bytes_out 3583562 87319 bytes_in 41742994 87319 station_ip 151.238.246.134 87319 port 15728761 87319 nas_port_type Virtual 87319 remote_ip 5.5.5.200 87324 username madadi 87324 unique_id port 87324 terminate_cause Lost-Carrier 87324 bytes_out 26413 87324 bytes_in 148360 87324 station_ip 5.119.166.143 87324 port 15728881 87324 nas_port_type Virtual 87324 remote_ip 5.5.5.157 87327 username sadegh 87327 unique_id port 87327 terminate_cause User-Request 87327 bytes_out 17888774 87327 bytes_in 351731855 87327 station_ip 5.119.81.19 87327 port 15728867 87327 nas_port_type Virtual 87327 remote_ip 5.5.5.160 87328 username madadi 87328 unique_id port 87328 terminate_cause Lost-Carrier 87328 bytes_out 26063 87328 bytes_in 161607 87328 station_ip 5.120.95.232 87328 port 15728883 87328 nas_port_type Virtual 87328 remote_ip 5.5.5.156 87331 username forozande 87331 unique_id port 87331 terminate_cause User-Request 87331 bytes_out 39831 87331 bytes_in 496599 87331 station_ip 83.122.180.164 87331 port 15728887 87331 nas_port_type Virtual 87331 remote_ip 5.5.5.154 87336 username forozande 87336 unique_id port 87336 terminate_cause User-Request 87336 bytes_out 5578 87336 bytes_in 19849 87336 station_ip 83.122.180.164 87336 port 15728896 87336 nas_port_type Virtual 87336 remote_ip 5.5.5.154 87338 username forozande 87338 unique_id port 87338 terminate_cause User-Request 87338 bytes_out 14206 87338 bytes_in 56179 87338 station_ip 37.129.162.189 87338 port 15728898 87338 nas_port_type Virtual 87338 remote_ip 5.5.5.153 87340 username forozande 87340 unique_id port 87340 terminate_cause User-Request 87340 bytes_out 36463 87340 bytes_in 217914 87302 nas_port_type Virtual 87302 remote_ip 5.5.5.219 87304 username madadi 87304 unique_id port 87304 terminate_cause Lost-Carrier 87304 bytes_out 1497860 87304 bytes_in 7950891 87304 station_ip 5.119.218.223 87304 port 15728834 87304 nas_port_type Virtual 87304 remote_ip 5.5.5.171 87306 username madadi 87306 unique_id port 87306 terminate_cause Lost-Carrier 87306 bytes_out 45503 87306 bytes_in 183277 87306 station_ip 5.119.178.169 87306 port 15728859 87306 nas_port_type Virtual 87306 remote_ip 5.5.5.164 87314 username forozande 87314 unique_id port 87314 terminate_cause User-Request 87314 bytes_out 30186 87314 bytes_in 254132 87314 station_ip 37.129.87.6 87314 port 15728866 87314 nas_port_type Virtual 87314 remote_ip 5.5.5.162 87315 username farhad 87315 unique_id port 87315 terminate_cause User-Request 87315 bytes_out 11596375 87315 bytes_in 349248131 87315 station_ip 5.119.156.254 87315 port 15728853 87315 nas_port_type Virtual 87315 remote_ip 5.5.5.166 87318 username forozande 87318 unique_id port 87318 terminate_cause User-Request 87318 bytes_out 40250 87318 bytes_in 623714 87318 station_ip 113.203.101.209 87318 port 15728872 87318 nas_port_type Virtual 87318 remote_ip 5.5.5.158 87320 username forozande 87320 unique_id port 87320 terminate_cause User-Request 87320 bytes_out 31663 87320 bytes_in 543680 87320 station_ip 113.203.101.209 87320 port 15728873 87320 nas_port_type Virtual 87320 remote_ip 5.5.5.158 87323 username aminvpn 87323 mac 87323 bytes_out 729629 87323 bytes_in 7579302 87323 station_ip 83.122.100.9 87323 port 21 87323 unique_id port 87323 remote_ip 10.8.0.6 87326 username shahnaz 87326 unique_id port 87326 terminate_cause Lost-Carrier 87326 bytes_out 24589 87326 bytes_in 291841 87326 station_ip 5.119.87.29 87326 port 15728882 87326 nas_port_type Virtual 87326 remote_ip 5.5.5.194 87330 username alinezhad 87330 unique_id port 87330 terminate_cause User-Request 87330 bytes_out 0 87330 bytes_in 0 87330 station_ip 5.202.60.209 87330 port 15728886 87330 nas_port_type Virtual 87330 remote_ip 5.5.5.226 87333 username forozande 87333 unique_id port 87333 terminate_cause User-Request 87333 bytes_out 13492 87333 bytes_in 30407 87333 station_ip 83.122.180.164 87333 port 15728889 87333 nas_port_type Virtual 87333 remote_ip 5.5.5.154 87337 username alinezhad 87337 unique_id port 87337 terminate_cause User-Request 87337 bytes_out 0 87337 bytes_in 0 87337 station_ip 5.202.60.209 87337 port 15728897 87337 nas_port_type Virtual 87337 remote_ip 5.5.5.226 87345 username aminvpn 87345 mac 87345 bytes_out 0 87345 bytes_in 0 87345 station_ip 83.122.129.120 87345 port 35 87345 unique_id port 87345 remote_ip 10.8.1.10 87346 username shokokian 87346 unique_id port 87346 terminate_cause Lost-Carrier 87346 bytes_out 316433 87346 bytes_in 2592775 87346 station_ip 151.238.253.128 87346 port 15728904 87346 nas_port_type Virtual 87346 remote_ip 5.5.5.151 87348 username mahbobeh 87348 unique_id port 87348 terminate_cause Lost-Carrier 87348 bytes_out 1939898 87348 bytes_in 34065251 87348 station_ip 113.203.101.103 87348 port 15728852 87348 nas_port_type Virtual 87348 remote_ip 5.5.5.188 87352 username arman 87352 unique_id port 87352 terminate_cause Lost-Carrier 87352 bytes_out 12677575 87352 bytes_in 201322122 87352 station_ip 5.120.21.8 87352 port 15728832 87352 nas_port_type Virtual 87352 remote_ip 5.5.5.172 87354 username heydari 87354 unique_id port 87354 terminate_cause Lost-Carrier 87354 bytes_out 396684 87354 bytes_in 9755468 87354 station_ip 5.119.11.246 87354 port 15728880 87354 nas_port_type Virtual 87354 remote_ip 5.5.5.218 87367 username forozande 87309 username forozande 87309 unique_id port 87309 terminate_cause User-Request 87309 bytes_out 76023 87309 bytes_in 1294498 87309 station_ip 37.129.87.6 87309 port 15728862 87309 nas_port_type Virtual 87309 remote_ip 5.5.5.162 87313 username abdilahyar 87313 unique_id port 87313 terminate_cause Lost-Carrier 87313 bytes_out 225281 87313 bytes_in 4239794 87313 station_ip 5.119.255.64 87313 port 15728763 87313 nas_port_type Virtual 87313 remote_ip 5.5.5.199 87325 username alinezhad 87325 unique_id port 87325 terminate_cause User-Request 87325 bytes_out 0 87325 bytes_in 0 87325 station_ip 5.202.60.209 87325 port 15728884 87325 nas_port_type Virtual 87325 remote_ip 5.5.5.226 87335 username forozande 87335 unique_id port 87335 terminate_cause User-Request 87335 bytes_out 29430 87335 bytes_in 210730 87335 station_ip 83.122.180.164 87335 port 15728892 87335 nas_port_type Virtual 87335 remote_ip 5.5.5.154 87339 username forozande 87339 unique_id port 87339 terminate_cause User-Request 87339 bytes_out 26495 87339 bytes_in 154634 87339 station_ip 37.129.162.189 87339 port 15728899 87339 nas_port_type Virtual 87339 remote_ip 5.5.5.153 87341 username forozande 87341 unique_id port 87341 terminate_cause User-Request 87341 bytes_out 0 87341 bytes_in 0 87341 station_ip 37.129.162.189 87341 port 15728902 87341 nas_port_type Virtual 87341 remote_ip 5.5.5.153 87342 username forozande 87342 unique_id port 87342 terminate_cause User-Request 87342 bytes_out 20458 87342 bytes_in 57284 87342 station_ip 83.123.118.109 87342 port 15728905 87342 nas_port_type Virtual 87342 remote_ip 5.5.5.150 87344 username aminvpn 87344 mac 87344 bytes_out 83185 87344 bytes_in 181491 87344 station_ip 83.122.129.120 87344 port 21 87344 unique_id port 87344 remote_ip 10.8.0.6 87349 username amirabbas 87349 unique_id port 87349 terminate_cause User-Request 87349 bytes_out 29337844 87349 bytes_in 711796353 87349 station_ip 31.56.156.228 87349 port 15728901 87349 nas_port_type Virtual 87349 remote_ip 5.5.5.209 87355 username alinezhad 87355 unique_id port 87355 terminate_cause User-Request 87355 bytes_out 0 87355 bytes_in 0 87355 station_ip 5.202.60.56 87355 port 15728914 87355 nas_port_type Virtual 87355 remote_ip 5.5.5.143 87362 username forozande 87362 unique_id port 87362 terminate_cause User-Request 87362 bytes_out 27305 87362 bytes_in 88483 87362 station_ip 83.123.253.214 87362 port 15728920 87362 nas_port_type Virtual 87362 remote_ip 5.5.5.139 87366 username alinezhad 87366 unique_id port 87366 terminate_cause User-Request 87366 bytes_out 0 87366 bytes_in 0 87366 station_ip 5.202.9.210 87366 port 15728928 87366 nas_port_type Virtual 87366 remote_ip 5.5.5.136 87374 username madadi 87374 unique_id port 87374 terminate_cause Lost-Carrier 87374 bytes_out 239008 87374 bytes_in 714278 87374 station_ip 5.119.153.188 87374 port 15728919 87374 nas_port_type Virtual 87374 remote_ip 5.5.5.140 87377 username ahmadipour 87377 unique_id port 87377 terminate_cause Lost-Carrier 87377 bytes_out 262250 87377 bytes_in 3628413 87377 station_ip 83.122.119.129 87377 port 15728938 87377 nas_port_type Virtual 87377 remote_ip 5.5.5.149 87380 username heydarizadeh 87380 unique_id port 87380 terminate_cause User-Request 87380 bytes_out 0 87380 bytes_in 0 87380 station_ip 5.120.135.247 87380 port 15728942 87380 nas_port_type Virtual 87380 remote_ip 5.5.5.133 87381 username aminvpn 87381 kill_reason Another user logged on this global unique id 87381 mac 87381 bytes_out 0 87381 bytes_in 0 87381 station_ip 83.122.129.120 87381 port 21 87381 unique_id port 87381 remote_ip 10.8.0.6 87382 username alinezhad 87322 station_ip 5.202.60.209 87322 port 15728878 87322 nas_port_type Virtual 87322 remote_ip 5.5.5.226 87329 username forozande 87329 unique_id port 87329 terminate_cause User-Request 87329 bytes_out 23014 87329 bytes_in 88782 87329 station_ip 83.123.127.71 87329 port 15728885 87329 nas_port_type Virtual 87329 remote_ip 5.5.5.155 87332 username forozande 87332 unique_id port 87332 terminate_cause User-Request 87332 bytes_out 0 87332 bytes_in 0 87332 station_ip 83.122.180.164 87332 port 15728888 87332 nas_port_type Virtual 87332 remote_ip 5.5.5.154 87334 username forozande 87334 unique_id port 87334 terminate_cause User-Request 87334 bytes_out 9292 87334 bytes_in 24745 87334 station_ip 83.122.180.164 87334 port 15728890 87334 nas_port_type Virtual 87334 remote_ip 5.5.5.154 87347 username farhad 87347 unique_id port 87347 terminate_cause Lost-Carrier 87347 bytes_out 16004436 87347 bytes_in 155216726 87347 station_ip 5.119.4.43 87347 port 15728868 87347 nas_port_type Virtual 87347 remote_ip 5.5.5.159 87351 username sobhan 87351 unique_id port 87351 terminate_cause Lost-Carrier 87351 bytes_out 1719479 87351 bytes_in 981165 87351 station_ip 31.59.47.190 87351 port 15728907 87351 nas_port_type Virtual 87351 remote_ip 5.5.5.148 87357 username alinezhad 87357 unique_id port 87357 terminate_cause User-Request 87357 bytes_out 0 87357 bytes_in 0 87357 station_ip 5.202.60.56 87357 port 15728915 87357 nas_port_type Virtual 87357 remote_ip 5.5.5.143 87359 username ahmadi 87359 unique_id port 87359 terminate_cause User-Request 87359 bytes_out 32561 87359 bytes_in 334878 87359 station_ip 83.123.199.213 87359 port 15728918 87359 nas_port_type Virtual 87359 remote_ip 5.5.5.141 87361 username madadi 87361 unique_id port 87361 terminate_cause Lost-Carrier 87361 bytes_out 40485 87361 bytes_in 158512 87361 station_ip 5.119.212.237 87361 port 15728912 87361 nas_port_type Virtual 87361 remote_ip 5.5.5.145 87363 username arabpour 87363 unique_id port 87363 terminate_cause User-Request 87363 bytes_out 461748 87363 bytes_in 11321372 87363 station_ip 83.123.207.43 87363 port 15728923 87363 nas_port_type Virtual 87363 remote_ip 5.5.5.138 87364 username forozande 87364 unique_id port 87364 terminate_cause User-Request 87364 bytes_out 37899 87364 bytes_in 113836 87364 station_ip 113.203.108.87 87364 port 15728924 87364 nas_port_type Virtual 87364 remote_ip 5.5.5.137 87368 username forozande 87368 unique_id port 87368 terminate_cause User-Request 87368 bytes_out 21473 87368 bytes_in 41344 87368 station_ip 113.203.108.87 87368 port 15728929 87368 nas_port_type Virtual 87368 remote_ip 5.5.5.137 87373 username forozande 87373 unique_id port 87373 terminate_cause User-Request 87373 bytes_out 14572 87373 bytes_in 26060 87373 station_ip 113.203.108.87 87373 port 15728936 87373 nas_port_type Virtual 87373 remote_ip 5.5.5.137 87397 username mahdixz 87397 unique_id port 87397 terminate_cause Lost-Carrier 87397 bytes_out 2607348 87397 bytes_in 48001619 87397 station_ip 151.235.93.199 87397 port 15728941 87397 nas_port_type Virtual 87397 remote_ip 5.5.5.210 87399 username madadi 87399 unique_id port 87399 terminate_cause User-Request 87399 bytes_out 138203 87399 bytes_in 516233 87399 station_ip 5.119.118.225 87399 port 15728954 87399 nas_port_type Virtual 87399 remote_ip 5.5.5.129 87404 username shahnaz 87404 unique_id port 87404 terminate_cause User-Request 87404 bytes_out 9184062 87404 bytes_in 54754468 87404 station_ip 5.119.87.29 87404 port 15728922 87404 nas_port_type Virtual 87404 remote_ip 5.5.5.194 87411 username alinezhad 87411 unique_id port 87411 terminate_cause User-Request 87411 bytes_out 0 87411 bytes_in 0 87340 station_ip 37.129.162.189 87340 port 15728900 87340 nas_port_type Virtual 87340 remote_ip 5.5.5.153 87343 username madadi 87343 unique_id port 87343 terminate_cause Lost-Carrier 87343 bytes_out 16859 87343 bytes_in 132795 87343 station_ip 5.119.222.38 87343 port 15728903 87343 nas_port_type Virtual 87343 remote_ip 5.5.5.152 87350 username madadi 87350 unique_id port 87350 terminate_cause Lost-Carrier 87350 bytes_out 386642 87350 bytes_in 5000212 87350 station_ip 5.119.225.131 87350 port 15728908 87350 nas_port_type Virtual 87350 remote_ip 5.5.5.147 87353 username mahdixz 87353 unique_id port 87353 terminate_cause User-Request 87353 bytes_out 696575 87353 bytes_in 10126755 87353 station_ip 151.235.93.199 87353 port 15728910 87353 nas_port_type Virtual 87353 remote_ip 5.5.5.210 87356 username forozande 87356 unique_id port 87356 terminate_cause User-Request 87356 bytes_out 45315 87356 bytes_in 136584 87356 station_ip 83.122.195.190 87356 port 15728913 87356 nas_port_type Virtual 87356 remote_ip 5.5.5.144 87358 username ahmadipour 87358 unique_id port 87358 terminate_cause Lost-Carrier 87358 bytes_out 133859 87358 bytes_in 2916219 87358 station_ip 83.122.119.129 87358 port 15728906 87358 nas_port_type Virtual 87358 remote_ip 5.5.5.149 87360 username madadi 87360 unique_id port 87360 terminate_cause Lost-Carrier 87360 bytes_out 78119 87360 bytes_in 271202 87360 station_ip 5.119.247.212 87360 port 15728911 87360 nas_port_type Virtual 87360 remote_ip 5.5.5.146 87365 username forozande 87365 unique_id port 87365 terminate_cause User-Request 87365 bytes_out 16597 87365 bytes_in 71349 87365 station_ip 113.203.108.87 87365 port 15728925 87365 nas_port_type Virtual 87365 remote_ip 5.5.5.137 87370 username forozande 87370 unique_id port 87370 terminate_cause User-Request 87370 bytes_out 0 87370 bytes_in 0 87370 station_ip 113.203.108.87 87370 port 15728931 87370 nas_port_type Virtual 87370 remote_ip 5.5.5.137 87376 username forozande 87376 unique_id port 87376 terminate_cause User-Request 87376 bytes_out 18322 87376 bytes_in 34984 87376 station_ip 113.203.108.87 87376 port 15728939 87376 nas_port_type Virtual 87376 remote_ip 5.5.5.137 87379 username aminvpn 87379 mac 87379 bytes_out 1835504 87379 bytes_in 30131998 87379 station_ip 5.119.139.8 87379 port 35 87379 unique_id port 87379 remote_ip 10.8.1.10 87383 username heydarizadeh 87383 unique_id port 87383 terminate_cause Lost-Carrier 87383 bytes_out 960704 87383 bytes_in 28632201 87383 station_ip 5.120.17.120 87383 port 15728935 87383 nas_port_type Virtual 87383 remote_ip 5.5.5.134 87385 username heydarizadeh 87385 kill_reason Maximum number of concurrent logins reached 87385 unique_id port 87385 bytes_out 0 87385 bytes_in 0 87385 station_ip 5.119.189.154 87385 port 15728946 87385 nas_port_type Virtual 87387 username amirabbas 87387 unique_id port 87387 terminate_cause User-Request 87387 bytes_out 73254415 87387 bytes_in 1836555635 87387 station_ip 31.56.156.228 87387 port 15728909 87387 nas_port_type Virtual 87387 remote_ip 5.5.5.209 87389 username heydarizadeh 87389 unique_id port 87389 terminate_cause Lost-Carrier 87389 bytes_out 4149821 87389 bytes_in 141893975 87389 station_ip 5.120.135.247 87389 port 15728943 87389 nas_port_type Virtual 87389 remote_ip 5.5.5.133 87392 username kamali 87392 unique_id port 87392 terminate_cause User-Request 87392 bytes_out 797896 87392 bytes_in 236819 87392 station_ip 83.123.92.119 87392 port 15728950 87392 nas_port_type Virtual 87392 remote_ip 5.5.5.130 87394 username kamali 87394 unique_id port 87394 terminate_cause User-Request 87394 bytes_out 7848 87394 bytes_in 26087 87394 station_ip 83.123.92.119 87367 unique_id port 87367 terminate_cause User-Request 87367 bytes_out 113996 87367 bytes_in 55423 87367 station_ip 113.203.108.87 87367 port 15728926 87367 nas_port_type Virtual 87367 remote_ip 5.5.5.137 87369 username forozande 87369 unique_id port 87369 terminate_cause User-Request 87369 bytes_out 15581 87369 bytes_in 29533 87369 station_ip 113.203.108.87 87369 port 15728930 87369 nas_port_type Virtual 87369 remote_ip 5.5.5.137 87371 username forozande 87371 unique_id port 87371 terminate_cause User-Request 87371 bytes_out 18627 87371 bytes_in 58610 87371 station_ip 113.203.108.87 87371 port 15728933 87371 nas_port_type Virtual 87371 remote_ip 5.5.5.137 87372 username forozande 87372 unique_id port 87372 terminate_cause User-Request 87372 bytes_out 8664 87372 bytes_in 40450 87372 station_ip 113.203.108.87 87372 port 15728934 87372 nas_port_type Virtual 87372 remote_ip 5.5.5.137 87375 username forozande 87375 unique_id port 87375 terminate_cause User-Request 87375 bytes_out 18332 87375 bytes_in 103983 87375 station_ip 113.203.108.87 87375 port 15728937 87375 nas_port_type Virtual 87375 remote_ip 5.5.5.137 87378 username forozande 87378 unique_id port 87378 terminate_cause User-Request 87378 bytes_out 17182 87378 bytes_in 101068 87378 station_ip 113.203.108.87 87378 port 15728940 87378 nas_port_type Virtual 87378 remote_ip 5.5.5.137 87386 username heydarizadeh 87386 kill_reason Maximum number of concurrent logins reached 87386 unique_id port 87386 bytes_out 0 87386 bytes_in 0 87386 station_ip 5.119.189.154 87386 port 15728947 87386 nas_port_type Virtual 87390 username heydarizadeh 87390 unique_id port 87390 terminate_cause Lost-Carrier 87390 bytes_out 266711 87390 bytes_in 6532883 87390 station_ip 5.119.217.246 87390 port 15728945 87390 nas_port_type Virtual 87390 remote_ip 5.5.5.132 87391 username zamanialireza 87391 unique_id port 87391 terminate_cause User-Request 87391 bytes_out 6930977 87391 bytes_in 11686970 87391 station_ip 113.203.24.98 87391 port 15728949 87391 nas_port_type Virtual 87391 remote_ip 5.5.5.131 87396 username madadi 87396 unique_id port 87396 terminate_cause Lost-Carrier 87396 bytes_out 528141 87396 bytes_in 3551468 87396 station_ip 5.120.130.108 87396 port 15728932 87396 nas_port_type Virtual 87396 remote_ip 5.5.5.135 87405 username madadi 87405 unique_id port 87405 terminate_cause User-Request 87405 bytes_out 6852 87405 bytes_in 18901 87405 station_ip 5.119.118.225 87405 port 15728961 87405 nas_port_type Virtual 87405 remote_ip 5.5.5.129 87406 username alinezhad 87406 unique_id port 87406 terminate_cause User-Request 87406 bytes_out 219715 87406 bytes_in 632530 87406 station_ip 5.202.9.210 87406 port 15728955 87406 nas_port_type Virtual 87406 remote_ip 5.5.5.136 87407 username madadi 87407 unique_id port 87407 terminate_cause User-Request 87407 bytes_out 116416 87407 bytes_in 254987 87407 station_ip 5.119.118.225 87407 port 15728962 87407 nas_port_type Virtual 87407 remote_ip 5.5.5.129 87413 username aminvpn 87413 unique_id port 87413 terminate_cause User-Request 87413 bytes_out 1217710 87413 bytes_in 8369344 87413 station_ip 5.119.106.197 87413 port 15728967 87413 nas_port_type Virtual 87413 remote_ip 5.5.5.125 87418 username mahdixz 87418 unique_id port 87418 terminate_cause User-Request 87418 bytes_out 969173 87418 bytes_in 23596336 87418 station_ip 151.235.77.67 87418 port 15728973 87418 nas_port_type Virtual 87418 remote_ip 5.5.5.127 87420 username ahmadi 87420 unique_id port 87420 terminate_cause User-Request 87420 bytes_out 0 87420 bytes_in 0 87420 station_ip 83.123.175.129 87420 port 15728974 87420 nas_port_type Virtual 87420 remote_ip 5.5.5.128 87382 unique_id port 87382 terminate_cause User-Request 87382 bytes_out 0 87382 bytes_in 0 87382 station_ip 5.202.9.210 87382 port 15728944 87382 nas_port_type Virtual 87382 remote_ip 5.5.5.136 87384 username mahbobeh 87384 unique_id port 87384 terminate_cause Lost-Carrier 87384 bytes_out 1190914 87384 bytes_in 7601979 87384 station_ip 113.203.101.103 87384 port 15728916 87384 nas_port_type Virtual 87384 remote_ip 5.5.5.188 87388 username forozande 87388 unique_id port 87388 terminate_cause User-Request 87388 bytes_out 23713 87388 bytes_in 77487 87388 station_ip 113.203.108.87 87388 port 15728948 87388 nas_port_type Virtual 87388 remote_ip 5.5.5.137 87393 username kamali 87393 unique_id port 87393 terminate_cause User-Request 87393 bytes_out 272946 87393 bytes_in 82627 87393 station_ip 83.123.92.119 87393 port 15728951 87393 nas_port_type Virtual 87393 remote_ip 5.5.5.130 87395 username aminvpn 87395 mac 87395 bytes_out 0 87395 bytes_in 0 87395 station_ip 83.122.129.120 87395 port 21 87395 unique_id port 87398 username ahmadi 87398 unique_id port 87398 terminate_cause User-Request 87398 bytes_out 63225 87398 bytes_in 468276 87398 station_ip 83.123.175.129 87398 port 15728956 87398 nas_port_type Virtual 87398 remote_ip 5.5.5.128 87402 username kamali 87402 unique_id port 87402 terminate_cause User-Request 87402 bytes_out 0 87402 bytes_in 0 87402 station_ip 83.123.92.119 87402 port 15728958 87402 nas_port_type Virtual 87402 remote_ip 5.5.5.130 87409 username alinezhad 87409 unique_id port 87409 terminate_cause User-Request 87409 bytes_out 13778 87409 bytes_in 25174 87409 station_ip 5.202.9.210 87409 port 15728964 87409 nas_port_type Virtual 87409 remote_ip 5.5.5.136 87410 username alinezhad 87410 unique_id port 87410 terminate_cause User-Request 87410 bytes_out 0 87410 bytes_in 0 87410 station_ip 113.203.42.49 87410 port 15728966 87410 nas_port_type Virtual 87410 remote_ip 5.5.5.126 87412 username forozande 87412 unique_id port 87412 terminate_cause User-Request 87412 bytes_out 149942 87412 bytes_in 266727 87412 station_ip 37.129.136.44 87412 port 15728970 87412 nas_port_type Virtual 87412 remote_ip 5.5.5.123 87415 username forozande 87415 unique_id port 87415 terminate_cause User-Request 87415 bytes_out 40849 87415 bytes_in 595814 87415 station_ip 37.129.136.44 87415 port 15728972 87415 nas_port_type Virtual 87415 remote_ip 5.5.5.123 87417 username mahdixz 87417 unique_id port 87417 terminate_cause User-Request 87417 bytes_out 1424451 87417 bytes_in 31027499 87417 station_ip 151.235.77.67 87417 port 15728965 87417 nas_port_type Virtual 87417 remote_ip 5.5.5.127 87426 username mahdixz 87426 unique_id port 87426 terminate_cause User-Request 87426 bytes_out 127357 87426 bytes_in 1287143 87426 station_ip 37.129.27.239 87426 port 15728980 87426 nas_port_type Virtual 87426 remote_ip 5.5.5.121 87430 username mahdixz 87430 unique_id port 87430 terminate_cause User-Request 87430 bytes_out 965149 87430 bytes_in 8329337 87430 station_ip 83.122.5.156 87430 port 15728986 87430 nas_port_type Virtual 87430 remote_ip 5.5.5.118 87433 username mahdixz 87433 unique_id port 87433 terminate_cause User-Request 87433 bytes_out 0 87433 bytes_in 0 87433 station_ip 83.122.5.156 87433 port 15728989 87433 nas_port_type Virtual 87433 remote_ip 5.5.5.118 87442 username aminvpn 87442 unique_id port 87442 terminate_cause Lost-Carrier 87442 bytes_out 2067859 87442 bytes_in 40423742 87442 station_ip 5.119.106.197 87442 port 15728984 87442 nas_port_type Virtual 87442 remote_ip 5.5.5.120 87443 username madadi 87443 unique_id port 87443 terminate_cause User-Request 87394 port 15728952 87394 nas_port_type Virtual 87394 remote_ip 5.5.5.130 87400 username madadi 87400 unique_id port 87400 terminate_cause User-Request 87400 bytes_out 0 87400 bytes_in 0 87400 station_ip 5.119.118.225 87400 port 15728957 87400 nas_port_type Virtual 87400 remote_ip 5.5.5.129 87401 username madadi 87401 unique_id port 87401 terminate_cause User-Request 87401 bytes_out 0 87401 bytes_in 0 87401 station_ip 5.119.118.225 87401 port 15728959 87401 nas_port_type Virtual 87401 remote_ip 5.5.5.129 87403 username madadi 87403 unique_id port 87403 terminate_cause User-Request 87403 bytes_out 45969 87403 bytes_in 49271 87403 station_ip 5.119.118.225 87403 port 15728960 87403 nas_port_type Virtual 87403 remote_ip 5.5.5.129 87408 username mahdixz 87408 unique_id port 87408 terminate_cause Lost-Carrier 87408 bytes_out 641719 87408 bytes_in 15927700 87408 station_ip 151.235.77.67 87408 port 15728963 87408 nas_port_type Virtual 87408 remote_ip 5.5.5.127 87416 username heydari 87416 unique_id port 87416 terminate_cause User-Request 87416 bytes_out 758522 87416 bytes_in 5195219 87416 station_ip 5.119.11.246 87416 port 15728921 87416 nas_port_type Virtual 87416 remote_ip 5.5.5.218 87425 username mahdixz 87425 unique_id port 87425 terminate_cause User-Request 87425 bytes_out 196737 87425 bytes_in 2218451 87425 station_ip 37.129.27.239 87425 port 15728979 87425 nas_port_type Virtual 87425 remote_ip 5.5.5.121 87432 username mahdixz 87432 unique_id port 87432 terminate_cause User-Request 87432 bytes_out 555328 87432 bytes_in 10185826 87432 station_ip 83.122.5.156 87432 port 15728988 87432 nas_port_type Virtual 87432 remote_ip 5.5.5.118 87436 username mahdixz 87436 unique_id port 87436 terminate_cause User-Request 87436 bytes_out 387170 87436 bytes_in 5561111 87436 station_ip 83.122.5.156 87436 port 15728992 87436 nas_port_type Virtual 87436 remote_ip 5.5.5.118 87440 username mahdixz 87440 unique_id port 87440 terminate_cause User-Request 87440 bytes_out 559208 87440 bytes_in 15017908 87440 station_ip 83.122.151.55 87440 port 15728997 87440 nas_port_type Virtual 87440 remote_ip 5.5.5.115 87446 username madadi 87446 unique_id port 87446 terminate_cause User-Request 87446 bytes_out 0 87446 bytes_in 0 87446 station_ip 5.120.121.51 87446 port 15729002 87446 nas_port_type Virtual 87446 remote_ip 5.5.5.114 87448 username madadi 87448 unique_id port 87448 terminate_cause User-Request 87448 bytes_out 0 87448 bytes_in 0 87448 station_ip 5.119.114.102 87448 port 15729005 87448 nas_port_type Virtual 87448 remote_ip 5.5.5.113 87450 username madadi 87450 unique_id port 87450 terminate_cause User-Request 87450 bytes_out 0 87450 bytes_in 0 87450 station_ip 5.120.184.23 87450 port 15729007 87450 nas_port_type Virtual 87450 remote_ip 5.5.5.111 87453 username zamanialireza 87453 unique_id port 87453 terminate_cause Lost-Carrier 87453 bytes_out 23218479 87453 bytes_in 606614259 87453 station_ip 94.183.213.166 87453 port 15728876 87453 nas_port_type Virtual 87453 remote_ip 5.5.5.195 87459 username avaanna 87459 unique_id port 87459 terminate_cause User-Request 87459 bytes_out 23874 87459 bytes_in 114862 87459 station_ip 37.129.115.199 87459 port 15729014 87459 nas_port_type Virtual 87459 remote_ip 5.5.5.108 87465 username farhad 87465 unique_id port 87465 terminate_cause Lost-Carrier 87465 bytes_out 34481830 87465 bytes_in 411646268 87465 station_ip 5.120.31.93 87465 port 15728917 87465 nas_port_type Virtual 87465 remote_ip 5.5.5.142 87472 username caferibar 87472 unique_id port 87472 terminate_cause Lost-Carrier 87472 bytes_out 53894 87472 bytes_in 762395 87411 station_ip 113.203.42.49 87411 port 15728969 87411 nas_port_type Virtual 87411 remote_ip 5.5.5.126 87414 username forozande 87414 unique_id port 87414 terminate_cause User-Request 87414 bytes_out 26067 87414 bytes_in 87902 87414 station_ip 37.129.136.44 87414 port 15728971 87414 nas_port_type Virtual 87414 remote_ip 5.5.5.123 87419 username aminvpn 87419 mac 87419 bytes_out 2930020 87419 bytes_in 11198796 87419 station_ip 83.122.236.204 87419 port 21 87419 unique_id port 87419 remote_ip 10.8.0.6 87421 username madadi 87421 unique_id port 87421 terminate_cause Lost-Carrier 87421 bytes_out 86435 87421 bytes_in 457342 87421 station_ip 5.119.245.19 87421 port 15728968 87421 nas_port_type Virtual 87421 remote_ip 5.5.5.124 87424 username mahdixz 87424 unique_id port 87424 terminate_cause User-Request 87424 bytes_out 353545 87424 bytes_in 5338042 87424 station_ip 37.129.27.239 87424 port 15728978 87424 nas_port_type Virtual 87424 remote_ip 5.5.5.121 87428 username asadi 87428 unique_id port 87428 terminate_cause User-Request 87428 bytes_out 148015 87428 bytes_in 1863752 87428 station_ip 37.129.144.36 87428 port 15728983 87428 nas_port_type Virtual 87428 remote_ip 5.5.5.119 87435 username mahdixz 87435 unique_id port 87435 terminate_cause User-Request 87435 bytes_out 449492 87435 bytes_in 4312303 87435 station_ip 83.122.5.156 87435 port 15728990 87435 nas_port_type Virtual 87435 remote_ip 5.5.5.118 87437 username mahdixz 87437 unique_id port 87437 terminate_cause User-Request 87437 bytes_out 541956 87437 bytes_in 9363150 87437 station_ip 83.122.151.55 87437 port 15728995 87437 nas_port_type Virtual 87437 remote_ip 5.5.5.115 87438 username mahdixz 87438 unique_id port 87438 terminate_cause User-Request 87438 bytes_out 223031 87438 bytes_in 4390568 87438 station_ip 83.122.151.55 87438 port 15728996 87438 nas_port_type Virtual 87438 remote_ip 5.5.5.115 87439 username heydari 87439 unique_id port 87439 terminate_cause User-Request 87439 bytes_out 179292 87439 bytes_in 703887 87439 station_ip 5.119.11.246 87439 port 15728977 87439 nas_port_type Virtual 87439 remote_ip 5.5.5.218 87441 username mahdixz 87441 unique_id port 87441 terminate_cause Lost-Carrier 87441 bytes_out 351404 87441 bytes_in 10513366 87441 station_ip 151.235.80.161 87441 port 15728993 87441 nas_port_type Virtual 87441 remote_ip 5.5.5.116 87444 username madadi 87444 unique_id port 87444 terminate_cause User-Request 87444 bytes_out 0 87444 bytes_in 0 87444 station_ip 5.120.121.51 87444 port 15729000 87444 nas_port_type Virtual 87444 remote_ip 5.5.5.114 87445 username madadi 87445 unique_id port 87445 terminate_cause User-Request 87445 bytes_out 0 87445 bytes_in 0 87445 station_ip 5.120.121.51 87445 port 15729001 87445 nas_port_type Virtual 87445 remote_ip 5.5.5.114 87447 username madadi 87447 unique_id port 87447 terminate_cause User-Request 87447 bytes_out 0 87447 bytes_in 0 87447 station_ip 5.119.114.102 87447 port 15729004 87447 nas_port_type Virtual 87447 remote_ip 5.5.5.113 87452 username shahnaz 87452 unique_id port 87452 terminate_cause User-Request 87452 bytes_out 1850954 87452 bytes_in 48462561 87452 station_ip 5.119.87.29 87452 port 15728994 87452 nas_port_type Virtual 87452 remote_ip 5.5.5.194 87455 username shahnaz 87455 unique_id port 87455 terminate_cause Lost-Carrier 87455 bytes_out 848399 87455 bytes_in 20679105 87455 station_ip 5.119.87.29 87455 port 15729009 87455 nas_port_type Virtual 87455 remote_ip 5.5.5.194 87456 username avaanna 87456 unique_id port 87456 terminate_cause User-Request 87456 bytes_out 70249 87456 bytes_in 544769 87456 station_ip 37.129.115.199 87422 username forozande 87422 unique_id port 87422 terminate_cause User-Request 87422 bytes_out 49836 87422 bytes_in 263721 87422 station_ip 37.129.85.136 87422 port 15728975 87422 nas_port_type Virtual 87422 remote_ip 5.5.5.122 87423 username forozande 87423 unique_id port 87423 terminate_cause User-Request 87423 bytes_out 42191 87423 bytes_in 198703 87423 station_ip 37.129.85.136 87423 port 15728976 87423 nas_port_type Virtual 87423 remote_ip 5.5.5.122 87427 username mahdixz 87427 unique_id port 87427 terminate_cause User-Request 87427 bytes_out 171308 87427 bytes_in 1104293 87427 station_ip 37.129.27.239 87427 port 15728982 87427 nas_port_type Virtual 87427 remote_ip 5.5.5.121 87429 username mahdixz 87429 unique_id port 87429 terminate_cause User-Request 87429 bytes_out 258334 87429 bytes_in 2749475 87429 station_ip 83.122.5.156 87429 port 15728985 87429 nas_port_type Virtual 87429 remote_ip 5.5.5.118 87431 username mahdixz 87431 unique_id port 87431 terminate_cause User-Request 87431 bytes_out 141140 87431 bytes_in 804485 87431 station_ip 83.122.5.156 87431 port 15728987 87431 nas_port_type Virtual 87431 remote_ip 5.5.5.118 87434 username alinezhad 87434 unique_id port 87434 terminate_cause User-Request 87434 bytes_out 0 87434 bytes_in 0 87434 station_ip 37.129.63.37 87434 port 15728991 87434 nas_port_type Virtual 87434 remote_ip 5.5.5.117 87451 username heydari 87451 unique_id port 87451 terminate_cause User-Request 87451 bytes_out 9328 87451 bytes_in 86589 87451 station_ip 5.119.11.246 87451 port 15728998 87451 nas_port_type Virtual 87451 remote_ip 5.5.5.218 87467 username zamanialireza 87467 unique_id port 87467 terminate_cause User-Request 87467 bytes_out 1587419 87467 bytes_in 34935369 87467 station_ip 5.160.112.2 87467 port 15729024 87467 nas_port_type Virtual 87467 remote_ip 5.5.5.104 87469 username asadi 87469 unique_id port 87469 terminate_cause User-Request 87469 bytes_out 36756 87469 bytes_in 140490 87469 station_ip 37.129.144.36 87469 port 15729031 87469 nas_port_type Virtual 87469 remote_ip 5.5.5.119 87471 username caferibar 87471 unique_id port 87471 terminate_cause Lost-Carrier 87471 bytes_out 20574351 87471 bytes_in 832958519 87471 station_ip 151.238.225.203 87471 port 15729018 87471 nas_port_type Virtual 87471 remote_ip 5.5.5.105 87473 username madadi 87473 unique_id port 87473 terminate_cause Lost-Carrier 87473 bytes_out 1167141 87473 bytes_in 3042878 87473 station_ip 5.120.153.183 87473 port 15729008 87473 nas_port_type Virtual 87473 remote_ip 5.5.5.110 87475 username avaanna 87475 unique_id port 87475 terminate_cause User-Request 87475 bytes_out 14960 87475 bytes_in 34821 87475 station_ip 113.203.55.193 87475 port 15729036 87475 nas_port_type Virtual 87475 remote_ip 5.5.5.98 87481 username ksrkrgr 87481 unique_id port 87481 terminate_cause User-Request 87481 bytes_out 65931 87481 bytes_in 1014510 87481 station_ip 83.122.183.97 87481 port 15729039 87481 nas_port_type Virtual 87481 remote_ip 5.5.5.97 87484 username khalili 87484 unique_id port 87484 terminate_cause Lost-Carrier 87484 bytes_out 2576901 87484 bytes_in 108064968 87484 station_ip 5.119.100.190 87484 port 15729016 87484 nas_port_type Virtual 87484 remote_ip 5.5.5.107 87485 username madadi 87485 unique_id port 87485 terminate_cause Lost-Carrier 87485 bytes_out 30958 87485 bytes_in 489917 87485 station_ip 5.119.22.11 87485 port 15729042 87485 nas_port_type Virtual 87485 remote_ip 5.5.5.96 87486 username mahdixz 87486 unique_id port 87486 terminate_cause Lost-Carrier 87486 bytes_out 49653572 87486 bytes_in 1253512331 87486 station_ip 5.119.133.93 87486 port 15729043 87486 nas_port_type Virtual 87443 bytes_out 0 87443 bytes_in 0 87443 station_ip 5.120.121.51 87443 port 15728999 87443 nas_port_type Virtual 87443 remote_ip 5.5.5.114 87449 username asadi 87449 unique_id port 87449 terminate_cause User-Request 87449 bytes_out 98057 87449 bytes_in 1159043 87449 station_ip 37.129.144.36 87449 port 15729003 87449 nas_port_type Virtual 87449 remote_ip 5.5.5.119 87454 username aminvpn 87454 unique_id port 87454 terminate_cause Lost-Carrier 87454 bytes_out 951271 87454 bytes_in 9492073 87454 station_ip 5.233.74.25 87454 port 15729006 87454 nas_port_type Virtual 87454 remote_ip 5.5.5.112 87457 username heydari 87457 unique_id port 87457 terminate_cause User-Request 87457 bytes_out 0 87457 bytes_in 0 87457 station_ip 5.119.11.246 87457 port 15729012 87457 nas_port_type Virtual 87457 remote_ip 5.5.5.218 87463 username avaanna 87463 unique_id port 87463 terminate_cause User-Request 87463 bytes_out 20116 87463 bytes_in 36596 87463 station_ip 83.122.87.139 87463 port 15729020 87463 nas_port_type Virtual 87463 remote_ip 5.5.5.106 87477 username amirabbas 87477 unique_id port 87477 terminate_cause User-Request 87477 bytes_out 52887977 87477 bytes_in 1316331521 87477 station_ip 151.238.233.200 87477 port 15729010 87477 nas_port_type Virtual 87477 remote_ip 5.5.5.109 87480 username caferibar 87480 unique_id port 87480 terminate_cause User-Request 87480 bytes_out 3107774 87480 bytes_in 57426280 87480 station_ip 151.238.225.203 87480 port 15729034 87480 nas_port_type Virtual 87480 remote_ip 5.5.5.99 87483 username shahrooz 87483 unique_id port 87483 terminate_cause Lost-Carrier 87483 bytes_out 128965 87483 bytes_in 1017986 87483 station_ip 37.129.30.229 87483 port 15729033 87483 nas_port_type Virtual 87483 remote_ip 5.5.5.100 87488 username mahdixz 87488 unique_id port 87488 terminate_cause Lost-Carrier 87488 bytes_out 2437 87488 bytes_in 129774 87488 station_ip 5.120.138.39 87488 port 15729044 87488 nas_port_type Virtual 87488 remote_ip 5.5.5.94 87489 username mahdixz 87489 unique_id port 87489 terminate_cause Lost-Carrier 87489 bytes_out 115394 87489 bytes_in 4801745 87489 station_ip 5.119.49.13 87489 port 15729045 87489 nas_port_type Virtual 87489 remote_ip 5.5.5.93 87492 username asadi 87492 unique_id port 87492 terminate_cause User-Request 87492 bytes_out 92552 87492 bytes_in 901353 87492 station_ip 83.123.175.158 87492 port 15729047 87492 nas_port_type Virtual 87492 remote_ip 5.5.5.91 87497 username asadi 87497 unique_id port 87497 terminate_cause User-Request 87497 bytes_out 223715 87497 bytes_in 12462943 87497 station_ip 83.123.175.158 87497 port 15729052 87497 nas_port_type Virtual 87497 remote_ip 5.5.5.91 87498 username mahbobeh 87498 unique_id port 87498 terminate_cause Admin-Reboot 87498 bytes_out 0 87498 bytes_in 0 87498 station_ip 113.203.101.103 87498 port 15729053 87498 nas_port_type Virtual 87498 remote_ip 5.5.5.188 87500 username alinezhad 87500 unique_id port 87500 terminate_cause User-Request 87500 bytes_out 96579 87500 bytes_in 188502 87500 station_ip 83.123.26.78 87500 port 15728641 87500 nas_port_type Virtual 87500 remote_ip 5.5.5.254 87503 username aminvpn 87503 mac 87503 bytes_out 4019317 87503 bytes_in 36254140 87503 station_ip 83.123.113.4 87503 port 35 87503 unique_id port 87503 remote_ip 10.8.1.10 87507 username madadi 87507 unique_id port 87507 terminate_cause Lost-Carrier 87507 bytes_out 299020 87507 bytes_in 5523015 87507 station_ip 5.120.45.239 87507 port 15728644 87507 nas_port_type Virtual 87507 remote_ip 5.5.5.253 87512 username madadi 87512 unique_id port 87512 terminate_cause User-Request 87512 bytes_out 0 87456 port 15729011 87456 nas_port_type Virtual 87456 remote_ip 5.5.5.108 87458 username avaanna 87458 unique_id port 87458 terminate_cause User-Request 87458 bytes_out 0 87458 bytes_in 0 87458 station_ip 37.129.115.199 87458 port 15729013 87458 nas_port_type Virtual 87458 remote_ip 5.5.5.108 87460 username avaanna 87460 unique_id port 87460 terminate_cause User-Request 87460 bytes_out 97288 87460 bytes_in 1838422 87460 station_ip 37.129.115.199 87460 port 15729015 87460 nas_port_type Virtual 87460 remote_ip 5.5.5.108 87461 username avaanna 87461 unique_id port 87461 terminate_cause User-Request 87461 bytes_out 72314 87461 bytes_in 932263 87461 station_ip 83.122.87.139 87461 port 15729017 87461 nas_port_type Virtual 87461 remote_ip 5.5.5.106 87462 username avaanna 87462 unique_id port 87462 terminate_cause User-Request 87462 bytes_out 51758 87462 bytes_in 483803 87462 station_ip 83.122.87.139 87462 port 15729019 87462 nas_port_type Virtual 87462 remote_ip 5.5.5.106 87464 username avaanna 87464 unique_id port 87464 terminate_cause User-Request 87464 bytes_out 15920 87464 bytes_in 94817 87464 station_ip 83.122.87.139 87464 port 15729021 87464 nas_port_type Virtual 87464 remote_ip 5.5.5.106 87466 username avaanna 87466 unique_id port 87466 terminate_cause User-Request 87466 bytes_out 0 87466 bytes_in 0 87466 station_ip 83.122.87.139 87466 port 15729022 87466 nas_port_type Virtual 87466 remote_ip 5.5.5.106 87468 username avaanna 87468 unique_id port 87468 terminate_cause User-Request 87468 bytes_out 76560 87468 bytes_in 239887 87468 station_ip 83.123.104.181 87468 port 15729030 87468 nas_port_type Virtual 87468 remote_ip 5.5.5.102 87470 username heydari 87470 unique_id port 87470 terminate_cause User-Request 87470 bytes_out 363448 87470 bytes_in 1416888 87470 station_ip 5.119.11.246 87470 port 15729025 87470 nas_port_type Virtual 87470 remote_ip 5.5.5.218 87476 username caferibar 87476 unique_id port 87476 terminate_cause Lost-Carrier 87476 bytes_out 5857211 87476 bytes_in 116752924 87476 station_ip 151.238.235.184 87476 port 15729023 87476 nas_port_type Virtual 87476 remote_ip 5.5.5.161 87478 username ksrkrgr 87478 unique_id port 87478 terminate_cause User-Request 87478 bytes_out 356210 87478 bytes_in 2443476 87478 station_ip 83.122.183.97 87478 port 15729037 87478 nas_port_type Virtual 87478 remote_ip 5.5.5.97 87479 username ksrkrgr 87479 unique_id port 87479 terminate_cause User-Request 87479 bytes_out 275415 87479 bytes_in 1318782 87479 station_ip 83.122.183.97 87479 port 15729038 87479 nas_port_type Virtual 87479 remote_ip 5.5.5.97 87490 username majid 87490 unique_id port 87490 terminate_cause User-Request 87490 bytes_out 25698234 87490 bytes_in 918864060 87490 station_ip 86.57.127.72 87490 port 15729029 87490 nas_port_type Virtual 87490 remote_ip 5.5.5.103 87491 username madadi 87491 unique_id port 87491 terminate_cause Lost-Carrier 87491 bytes_out 15346 87491 bytes_in 134221 87491 station_ip 5.120.190.231 87491 port 15729046 87491 nas_port_type Virtual 87491 remote_ip 5.5.5.92 87494 username asadi 87494 unique_id port 87494 terminate_cause User-Request 87494 bytes_out 217090 87494 bytes_in 2134573 87494 station_ip 83.123.175.158 87494 port 15729049 87494 nas_port_type Virtual 87494 remote_ip 5.5.5.91 87496 username avaanna 87496 unique_id port 87496 terminate_cause User-Request 87496 bytes_out 0 87496 bytes_in 0 87496 station_ip 83.122.218.38 87496 port 15729051 87496 nas_port_type Virtual 87496 remote_ip 5.5.5.90 87502 username madadi 87502 unique_id port 87502 terminate_cause User-Request 87502 bytes_out 0 87502 bytes_in 0 87472 station_ip 217.60.147.78 87472 port 15729032 87472 nas_port_type Virtual 87472 remote_ip 5.5.5.101 87474 username pouria 87474 kill_reason Relative expiration date has reached 87474 unique_id port 87474 bytes_out 0 87474 bytes_in 0 87474 station_ip 151.235.120.96 87474 port 15729035 87474 nas_port_type Virtual 87482 username ksrkrgr 87482 unique_id port 87482 terminate_cause User-Request 87482 bytes_out 289721 87482 bytes_in 9415547 87482 station_ip 83.122.183.97 87482 port 15729041 87482 nas_port_type Virtual 87482 remote_ip 5.5.5.97 87493 username asadi 87493 unique_id port 87493 terminate_cause User-Request 87493 bytes_out 410623 87493 bytes_in 14023053 87493 station_ip 83.123.175.158 87493 port 15729048 87493 nas_port_type Virtual 87493 remote_ip 5.5.5.91 87495 username asadi 87495 unique_id port 87495 terminate_cause User-Request 87495 bytes_out 273003 87495 bytes_in 3389679 87495 station_ip 83.123.175.158 87495 port 15729050 87495 nas_port_type Virtual 87495 remote_ip 5.5.5.91 87504 username forozande 87504 unique_id port 87504 terminate_cause User-Request 87504 bytes_out 78049 87504 bytes_in 404995 87504 station_ip 83.123.241.214 87504 port 15728645 87504 nas_port_type Virtual 87504 remote_ip 5.5.5.252 87506 username madadi 87506 unique_id port 87506 terminate_cause User-Request 87506 bytes_out 0 87506 bytes_in 0 87506 station_ip 5.120.65.68 87506 port 15728648 87506 nas_port_type Virtual 87506 remote_ip 5.5.5.250 87508 username arabpour 87508 unique_id port 87508 terminate_cause User-Request 87508 bytes_out 261157 87508 bytes_in 6034465 87508 station_ip 83.123.7.40 87508 port 15728650 87508 nas_port_type Virtual 87508 remote_ip 5.5.5.249 87509 username madadi 87509 unique_id port 87509 terminate_cause User-Request 87509 bytes_out 0 87509 bytes_in 0 87509 station_ip 5.120.188.84 87509 port 15728651 87509 nas_port_type Virtual 87509 remote_ip 5.5.5.248 87513 username madadi 87513 unique_id port 87513 terminate_cause Lost-Carrier 87513 bytes_out 164735 87513 bytes_in 177914 87513 station_ip 5.120.65.68 87513 port 15728649 87513 nas_port_type Virtual 87513 remote_ip 5.5.5.250 87521 username zamanialireza 87521 unique_id port 87521 terminate_cause User-Request 87521 bytes_out 0 87521 bytes_in 0 87521 station_ip 5.160.114.104 87521 port 15728665 87521 nas_port_type Virtual 87521 remote_ip 5.5.5.246 87522 username zamanialireza 87522 unique_id port 87522 terminate_cause User-Request 87522 bytes_out 0 87522 bytes_in 0 87522 station_ip 5.160.114.104 87522 port 15728666 87522 nas_port_type Virtual 87522 remote_ip 5.5.5.246 87525 username heydari 87525 unique_id port 87525 terminate_cause User-Request 87525 bytes_out 63188 87525 bytes_in 218991 87525 station_ip 5.119.11.246 87525 port 15728670 87525 nas_port_type Virtual 87525 remote_ip 5.5.5.251 87528 username madadi 87528 unique_id port 87528 terminate_cause Lost-Carrier 87528 bytes_out 31054 87528 bytes_in 182576 87528 station_ip 5.120.162.251 87528 port 15728672 87528 nas_port_type Virtual 87528 remote_ip 5.5.5.237 87534 username alinezhad 87534 unique_id port 87534 terminate_cause User-Request 87534 bytes_out 0 87534 bytes_in 0 87534 station_ip 5.202.64.239 87534 port 15728677 87534 nas_port_type Virtual 87534 remote_ip 5.5.5.243 87536 username aminvpn 87536 mac 87536 bytes_out 0 87536 bytes_in 0 87536 station_ip 83.122.208.220 87536 port 36 87536 unique_id port 87536 remote_ip 10.8.1.10 87538 username aminvpn 87538 mac 87538 bytes_out 0 87538 bytes_in 0 87538 station_ip 83.122.208.220 87538 port 36 87538 unique_id port 87538 remote_ip 10.8.1.10 87486 remote_ip 5.5.5.95 87487 username caferibar 87487 unique_id port 87487 terminate_cause Lost-Carrier 87487 bytes_out 104014938 87487 bytes_in 226238108 87487 station_ip 151.238.225.203 87487 port 15729040 87487 nas_port_type Virtual 87487 remote_ip 5.5.5.99 87499 username mahbobeh 87499 kill_reason Maximum check online fails reached 87499 unique_id port 87499 bytes_out 508467 87499 bytes_in 9515782 87499 station_ip 113.203.101.103 87499 port 15728640 87499 nas_port_type Virtual 87499 remote_ip 5.5.5.255 87501 username madadi 87501 unique_id port 87501 terminate_cause User-Request 87501 bytes_out 0 87501 bytes_in 0 87501 station_ip 5.120.45.239 87501 port 15728642 87501 nas_port_type Virtual 87501 remote_ip 5.5.5.253 87510 username madadi 87510 unique_id port 87510 terminate_cause User-Request 87510 bytes_out 0 87510 bytes_in 0 87510 station_ip 5.120.188.84 87510 port 15728652 87510 nas_port_type Virtual 87510 remote_ip 5.5.5.248 87518 username zamanialireza 87518 unique_id port 87518 terminate_cause Lost-Carrier 87518 bytes_out 1982315 87518 bytes_in 38463529 87518 station_ip 5.160.114.104 87518 port 15728658 87518 nas_port_type Virtual 87518 remote_ip 5.5.5.246 87520 username mahbobeh 87520 unique_id port 87520 terminate_cause Lost-Carrier 87520 bytes_out 64794 87520 bytes_in 1144855 87520 station_ip 113.203.101.103 87520 port 15728646 87520 nas_port_type Virtual 87520 remote_ip 5.5.5.255 87523 username madadi 87523 unique_id port 87523 terminate_cause Lost-Carrier 87523 bytes_out 986580 87523 bytes_in 1878425 87523 station_ip 5.119.11.144 87523 port 15728657 87523 nas_port_type Virtual 87523 remote_ip 5.5.5.247 87530 username aminvpn 87530 mac 87530 bytes_out 1507479 87530 bytes_in 9422765 87530 station_ip 83.123.16.228 87530 port 35 87530 unique_id port 87530 remote_ip 10.8.1.10 87535 username aminvpn 87535 mac 87535 bytes_out 0 87535 bytes_in 0 87535 station_ip 83.123.16.228 87535 port 35 87535 unique_id port 87535 remote_ip 10.8.1.10 87537 username aminvpn 87537 mac 87537 bytes_out 0 87537 bytes_in 0 87537 station_ip 83.123.16.228 87537 port 35 87537 unique_id port 87537 remote_ip 10.8.1.10 87539 username aminvpn 87539 mac 87539 bytes_out 0 87539 bytes_in 0 87539 station_ip 83.123.16.228 87539 port 35 87539 unique_id port 87539 remote_ip 10.8.1.10 87549 username amirabbas 87549 unique_id port 87549 terminate_cause User-Request 87549 bytes_out 4895672 87549 bytes_in 136653490 87549 station_ip 151.238.245.147 87549 port 15728680 87549 nas_port_type Virtual 87549 remote_ip 5.5.5.231 87550 username zamanialireza 87550 unique_id port 87550 terminate_cause User-Request 87550 bytes_out 405947 87550 bytes_in 240661 87550 station_ip 37.129.50.147 87550 port 15728681 87550 nas_port_type Virtual 87550 remote_ip 5.5.5.230 87556 username ahmadipour 87556 unique_id port 87556 terminate_cause Lost-Carrier 87556 bytes_out 134944 87556 bytes_in 1404282 87556 station_ip 83.122.31.221 87556 port 15728685 87556 nas_port_type Virtual 87556 remote_ip 5.5.5.228 87562 username aminvpn 87562 mac 87562 bytes_out 0 87562 bytes_in 0 87562 station_ip 83.123.61.192 87562 port 36 87562 unique_id port 87562 remote_ip 10.8.1.10 87564 username aminvpn 87564 mac 87564 bytes_out 0 87564 bytes_in 0 87564 station_ip 83.123.61.192 87564 port 36 87564 unique_id port 87564 remote_ip 10.8.1.10 87566 username aminvpn 87566 mac 87566 bytes_out 0 87566 bytes_in 0 87566 station_ip 83.123.61.192 87566 port 36 87566 unique_id port 87566 remote_ip 10.8.1.10 87502 station_ip 5.120.45.239 87502 port 15728643 87502 nas_port_type Virtual 87502 remote_ip 5.5.5.253 87505 username heydari 87505 unique_id port 87505 terminate_cause User-Request 87505 bytes_out 77558 87505 bytes_in 778352 87505 station_ip 5.119.11.246 87505 port 15728647 87505 nas_port_type Virtual 87505 remote_ip 5.5.5.251 87511 username madadi 87511 unique_id port 87511 terminate_cause User-Request 87511 bytes_out 0 87511 bytes_in 0 87511 station_ip 5.120.188.84 87511 port 15728653 87511 nas_port_type Virtual 87511 remote_ip 5.5.5.248 87514 username madadi 87514 unique_id port 87514 terminate_cause Lost-Carrier 87514 bytes_out 13422 87514 bytes_in 126661 87514 station_ip 5.120.188.84 87514 port 15728656 87514 nas_port_type Virtual 87514 remote_ip 5.5.5.248 87516 username ahmadipour 87516 unique_id port 87516 terminate_cause Lost-Carrier 87516 bytes_out 450906 87516 bytes_in 8986803 87516 station_ip 37.129.154.30 87516 port 15728660 87516 nas_port_type Virtual 87516 remote_ip 5.5.5.244 87519 username forozande 87519 unique_id port 87519 terminate_cause User-Request 87519 bytes_out 88681 87519 bytes_in 2588841 87519 station_ip 83.123.75.235 87519 port 15728664 87519 nas_port_type Virtual 87519 remote_ip 5.5.5.240 87524 username forozande 87524 unique_id port 87524 terminate_cause User-Request 87524 bytes_out 90004 87524 bytes_in 1698010 87524 station_ip 83.122.8.13 87524 port 15728668 87524 nas_port_type Virtual 87524 remote_ip 5.5.5.239 87532 username aminvpn 87532 mac 87532 bytes_out 0 87532 bytes_in 0 87532 station_ip 83.123.16.228 87532 port 35 87532 unique_id port 87532 remote_ip 10.8.1.10 87542 username aminvpn 87542 mac 87542 bytes_out 0 87542 bytes_in 0 87542 station_ip 83.123.16.228 87542 port 35 87542 unique_id port 87542 remote_ip 10.8.1.10 87544 username aminvpn 87544 mac 87544 bytes_out 0 87544 bytes_in 0 87544 station_ip 83.123.16.228 87544 port 35 87544 unique_id port 87544 remote_ip 10.8.1.10 87546 username aminvpn 87546 mac 87546 bytes_out 0 87546 bytes_in 0 87546 station_ip 83.123.16.228 87546 port 35 87546 unique_id port 87546 remote_ip 10.8.1.10 87552 username ahmadipour 87552 unique_id port 87552 terminate_cause Lost-Carrier 87552 bytes_out 841194 87552 bytes_in 11688706 87552 station_ip 83.122.180.236 87552 port 15728679 87552 nas_port_type Virtual 87552 remote_ip 5.5.5.232 87553 username alinezhad 87553 unique_id port 87553 terminate_cause User-Request 87553 bytes_out 0 87553 bytes_in 0 87553 station_ip 5.202.64.239 87553 port 15728684 87553 nas_port_type Virtual 87553 remote_ip 5.5.5.243 87558 username aminvpn 87558 mac 87558 bytes_out 0 87558 bytes_in 0 87558 station_ip 83.123.61.192 87558 port 36 87558 unique_id port 87558 remote_ip 10.8.1.10 87560 username aminvpn 87560 mac 87560 bytes_out 0 87560 bytes_in 0 87560 station_ip 83.123.61.192 87560 port 36 87560 unique_id port 87560 remote_ip 10.8.1.10 87567 username aminvpn 87567 mac 87567 bytes_out 0 87567 bytes_in 0 87567 station_ip 83.122.208.220 87567 port 35 87567 unique_id port 87567 remote_ip 10.8.1.10 87569 username aminvpn 87569 mac 87569 bytes_out 0 87569 bytes_in 0 87569 station_ip 83.122.208.220 87569 port 35 87569 unique_id port 87569 remote_ip 10.8.1.10 87572 username forozande 87572 unique_id port 87572 terminate_cause User-Request 87572 bytes_out 30471 87572 bytes_in 47707 87572 station_ip 83.122.18.63 87572 port 15728691 87572 nas_port_type Virtual 87572 remote_ip 5.5.5.223 87578 username avaanna 87512 bytes_in 0 87512 station_ip 5.120.188.84 87512 port 15728655 87512 nas_port_type Virtual 87512 remote_ip 5.5.5.248 87515 username alinezhad 87515 unique_id port 87515 terminate_cause User-Request 87515 bytes_out 0 87515 bytes_in 0 87515 station_ip 5.202.64.239 87515 port 15728661 87515 nas_port_type Virtual 87515 remote_ip 5.5.5.243 87517 username forozande 87517 unique_id port 87517 terminate_cause User-Request 87517 bytes_out 56136 87517 bytes_in 514788 87517 station_ip 83.122.106.77 87517 port 15728662 87517 nas_port_type Virtual 87517 remote_ip 5.5.5.242 87526 username forozande 87526 unique_id port 87526 terminate_cause User-Request 87526 bytes_out 170519 87526 bytes_in 4435362 87526 station_ip 83.123.41.136 87526 port 15728673 87526 nas_port_type Virtual 87526 remote_ip 5.5.5.236 87527 username sadegh 87527 unique_id port 87527 terminate_cause User-Request 87527 bytes_out 76103 87527 bytes_in 237167 87527 station_ip 5.119.81.19 87527 port 15728674 87527 nas_port_type Virtual 87527 remote_ip 5.5.5.235 87529 username aminvpn 87529 mac 87529 bytes_out 0 87529 bytes_in 0 87529 station_ip 83.122.208.220 87529 port 21 87529 unique_id port 87529 remote_ip 10.8.0.6 87531 username aminvpn 87531 mac 87531 bytes_out 0 87531 bytes_in 0 87531 station_ip 83.122.208.220 87531 port 36 87531 unique_id port 87531 remote_ip 10.8.1.10 87533 username aminvpn 87533 mac 87533 bytes_out 0 87533 bytes_in 0 87533 station_ip 83.122.208.220 87533 port 36 87533 unique_id port 87533 remote_ip 10.8.1.10 87543 username aminvpn 87543 mac 87543 bytes_out 0 87543 bytes_in 0 87543 station_ip 83.122.208.220 87543 port 36 87543 unique_id port 87543 remote_ip 10.8.1.10 87545 username aminvpn 87545 mac 87545 bytes_out 0 87545 bytes_in 0 87545 station_ip 83.122.208.220 87545 port 36 87545 unique_id port 87545 remote_ip 10.8.1.10 87547 username aminvpn 87547 mac 87547 bytes_out 0 87547 bytes_in 0 87547 station_ip 83.122.208.220 87547 port 36 87547 unique_id port 87547 remote_ip 10.8.1.10 87551 username farhad 87551 unique_id port 87551 terminate_cause Lost-Carrier 87551 bytes_out 8681045 87551 bytes_in 178934907 87551 station_ip 5.120.124.123 87551 port 15728669 87551 nas_port_type Virtual 87551 remote_ip 5.5.5.238 87554 username zamanialireza 87554 unique_id port 87554 terminate_cause User-Request 87554 bytes_out 355267 87554 bytes_in 3255495 87554 station_ip 37.129.50.147 87554 port 15728683 87554 nas_port_type Virtual 87554 remote_ip 5.5.5.230 87557 username aminvpn 87557 mac 87557 bytes_out 3801522 87557 bytes_in 41666285 87557 station_ip 83.122.208.220 87557 port 35 87557 unique_id port 87557 remote_ip 10.8.1.10 87559 username aminvpn 87559 mac 87559 bytes_out 0 87559 bytes_in 0 87559 station_ip 83.122.208.220 87559 port 35 87559 unique_id port 87559 remote_ip 10.8.1.10 87568 username aminvpn 87568 mac 87568 bytes_out 0 87568 bytes_in 0 87568 station_ip 83.123.61.192 87568 port 36 87568 unique_id port 87568 remote_ip 10.8.1.10 87573 username heydari 87573 kill_reason Maximum check online fails reached 87573 unique_id port 87573 bytes_out 62081 87573 bytes_in 244809 87573 station_ip 5.119.11.246 87573 port 15728689 87573 nas_port_type Virtual 87573 remote_ip 5.5.5.251 87577 username aminvpn 87577 mac 87577 bytes_out 960739 87577 bytes_in 5517438 87577 station_ip 83.123.61.192 87577 port 36 87577 unique_id port 87577 remote_ip 10.8.1.10 87580 username shokokian 87580 unique_id port 87540 username aminvpn 87540 mac 87540 bytes_out 0 87540 bytes_in 0 87540 station_ip 83.122.208.220 87540 port 36 87540 unique_id port 87540 remote_ip 10.8.1.10 87541 username forozande 87541 unique_id port 87541 terminate_cause User-Request 87541 bytes_out 30707 87541 bytes_in 317684 87541 station_ip 83.123.210.180 87541 port 15728678 87541 nas_port_type Virtual 87541 remote_ip 5.5.5.233 87548 username aminvpn 87548 mac 87548 bytes_out 0 87548 bytes_in 0 87548 station_ip 83.123.16.228 87548 port 35 87548 unique_id port 87548 remote_ip 10.8.1.10 87555 username madadi 87555 unique_id port 87555 terminate_cause Lost-Carrier 87555 bytes_out 53481 87555 bytes_in 347874 87555 station_ip 5.120.59.26 87555 port 15728682 87555 nas_port_type Virtual 87555 remote_ip 5.5.5.229 87561 username aminvpn 87561 mac 87561 bytes_out 0 87561 bytes_in 0 87561 station_ip 83.122.208.220 87561 port 35 87561 unique_id port 87561 remote_ip 10.8.1.10 87563 username aminvpn 87563 mac 87563 bytes_out 0 87563 bytes_in 0 87563 station_ip 83.122.208.220 87563 port 35 87563 unique_id port 87563 remote_ip 10.8.1.10 87565 username aminvpn 87565 mac 87565 bytes_out 0 87565 bytes_in 0 87565 station_ip 83.122.208.220 87565 port 35 87565 unique_id port 87565 remote_ip 10.8.1.10 87571 username alinezhad 87571 unique_id port 87571 terminate_cause User-Request 87571 bytes_out 0 87571 bytes_in 0 87571 station_ip 5.202.64.239 87571 port 15728692 87571 nas_port_type Virtual 87571 remote_ip 5.5.5.243 87574 username madadi 87574 unique_id port 87574 terminate_cause Lost-Carrier 87574 bytes_out 31416 87574 bytes_in 163964 87574 station_ip 5.119.225.58 87574 port 15728687 87574 nas_port_type Virtual 87574 remote_ip 5.5.5.226 87575 username zamanialireza 87575 unique_id port 87575 terminate_cause User-Request 87575 bytes_out 6691900 87575 bytes_in 130463608 87575 station_ip 5.119.78.28 87575 port 15728675 87575 nas_port_type Virtual 87575 remote_ip 5.5.5.234 87579 username alinezhad 87579 unique_id port 87579 terminate_cause User-Request 87579 bytes_out 0 87579 bytes_in 0 87579 station_ip 5.202.64.239 87579 port 15728694 87579 nas_port_type Virtual 87579 remote_ip 5.5.5.243 87581 username avaanna 87581 unique_id port 87581 terminate_cause User-Request 87581 bytes_out 51007 87581 bytes_in 123445 87581 station_ip 37.129.144.49 87581 port 15728695 87581 nas_port_type Virtual 87581 remote_ip 5.5.5.222 87585 username goli 87585 kill_reason Absolute expiration date has reached 87585 unique_id port 87585 bytes_out 0 87585 bytes_in 0 87585 station_ip 83.122.254.116 87585 port 15728701 87585 nas_port_type Virtual 87587 username aminvpn 87587 mac 87587 bytes_out 3012258 87587 bytes_in 34450117 87587 station_ip 83.123.61.192 87587 port 35 87587 unique_id port 87587 remote_ip 10.8.1.10 87590 username aminvpn 87590 mac 87590 bytes_out 109399 87590 bytes_in 307460 87590 station_ip 83.123.21.248 87590 port 35 87590 unique_id port 87590 remote_ip 10.8.1.10 87591 username aminvpn 87591 mac 87591 bytes_out 0 87591 bytes_in 0 87591 station_ip 83.123.21.248 87591 port 35 87591 unique_id port 87591 remote_ip 10.8.1.10 87607 username madadi 87607 unique_id port 87607 terminate_cause Lost-Carrier 87607 bytes_out 340932 87607 bytes_in 660619 87607 station_ip 5.119.96.107 87607 port 15728710 87607 nas_port_type Virtual 87607 remote_ip 5.5.5.215 87610 username forozande 87610 unique_id port 87610 terminate_cause User-Request 87610 bytes_out 45309 87610 bytes_in 188857 87570 username mahbobeh 87570 unique_id port 87570 terminate_cause Lost-Carrier 87570 bytes_out 98703 87570 bytes_in 1064761 87570 station_ip 113.203.101.103 87570 port 15728671 87570 nas_port_type Virtual 87570 remote_ip 5.5.5.255 87576 username ahmadipour 87576 unique_id port 87576 terminate_cause Lost-Carrier 87576 bytes_out 6498446 87576 bytes_in 1865592 87576 station_ip 83.123.96.153 87576 port 15728690 87576 nas_port_type Virtual 87576 remote_ip 5.5.5.224 87589 username alinezhad 87589 unique_id port 87589 terminate_cause User-Request 87589 bytes_out 76296 87589 bytes_in 313026 87589 station_ip 5.202.64.239 87589 port 15728699 87589 nas_port_type Virtual 87589 remote_ip 5.5.5.243 87592 username avaanna 87592 unique_id port 87592 terminate_cause User-Request 87592 bytes_out 61507 87592 bytes_in 463833 87592 station_ip 37.129.144.49 87592 port 15728704 87592 nas_port_type Virtual 87592 remote_ip 5.5.5.222 87597 username forozande 87597 unique_id port 87597 terminate_cause User-Request 87597 bytes_out 0 87597 bytes_in 0 87597 station_ip 83.122.76.179 87597 port 15728707 87597 nas_port_type Virtual 87597 remote_ip 5.5.5.216 87598 username madadi 87598 unique_id port 87598 terminate_cause User-Request 87598 bytes_out 0 87598 bytes_in 0 87598 station_ip 5.119.96.107 87598 port 15728709 87598 nas_port_type Virtual 87598 remote_ip 5.5.5.215 87601 username forozande 87601 unique_id port 87601 terminate_cause User-Request 87601 bytes_out 49098 87601 bytes_in 837386 87601 station_ip 83.122.76.179 87601 port 15728712 87601 nas_port_type Virtual 87601 remote_ip 5.5.5.216 87612 username forozande 87612 unique_id port 87612 terminate_cause User-Request 87612 bytes_out 0 87612 bytes_in 0 87612 station_ip 37.129.39.31 87612 port 15728722 87612 nas_port_type Virtual 87612 remote_ip 5.5.5.212 87614 username forozande 87614 unique_id port 87614 terminate_cause User-Request 87614 bytes_out 28797 87614 bytes_in 88951 87614 station_ip 37.129.39.31 87614 port 15728725 87614 nas_port_type Virtual 87614 remote_ip 5.5.5.212 87616 username ahmadipour 87616 unique_id port 87616 terminate_cause Lost-Carrier 87616 bytes_out 1358869 87616 bytes_in 1203399 87616 station_ip 83.122.42.89 87616 port 15728727 87616 nas_port_type Virtual 87616 remote_ip 5.5.5.211 87621 username forozande 87621 unique_id port 87621 terminate_cause User-Request 87621 bytes_out 97908 87621 bytes_in 405151 87621 station_ip 83.122.43.95 87621 port 15728733 87621 nas_port_type Virtual 87621 remote_ip 5.5.5.209 87631 username forozande 87631 unique_id port 87631 terminate_cause User-Request 87631 bytes_out 163126 87631 bytes_in 757393 87631 station_ip 83.122.190.145 87631 port 15728742 87631 nas_port_type Virtual 87631 remote_ip 5.5.5.206 87635 username alinezhad 87635 unique_id port 87635 terminate_cause User-Request 87635 bytes_out 0 87635 bytes_in 0 87635 station_ip 5.202.7.103 87635 port 15728746 87635 nas_port_type Virtual 87635 remote_ip 5.5.5.202 87637 username caferibar 87637 unique_id port 87637 terminate_cause User-Request 87637 bytes_out 300420 87637 bytes_in 1314657 87637 station_ip 5.62.196.39 87637 port 15728745 87637 nas_port_type Virtual 87637 remote_ip 5.5.5.203 87646 username forozande 87646 unique_id port 87646 terminate_cause User-Request 87646 bytes_out 53291 87646 bytes_in 339073 87646 station_ip 83.122.79.75 87646 port 15728752 87646 nas_port_type Virtual 87646 remote_ip 5.5.5.198 87648 username aminvpn 87648 mac 87648 bytes_out 78339 87648 bytes_in 116541 87648 station_ip 83.123.66.4 87648 port 21 87648 unique_id port 87648 remote_ip 10.8.0.6 87650 username ksrkrgr 87650 unique_id port 87578 unique_id port 87578 terminate_cause User-Request 87578 bytes_out 99169 87578 bytes_in 322922 87578 station_ip 37.129.144.49 87578 port 15728693 87578 nas_port_type Virtual 87578 remote_ip 5.5.5.222 87584 username shahnaz 87584 unique_id port 87584 terminate_cause User-Request 87584 bytes_out 309120 87584 bytes_in 4191618 87584 station_ip 5.120.58.27 87584 port 15728663 87584 nas_port_type Virtual 87584 remote_ip 5.5.5.241 87586 username zamanialireza 87586 unique_id port 87586 terminate_cause Lost-Carrier 87586 bytes_out 415832 87586 bytes_in 2809239 87586 station_ip 5.160.114.104 87586 port 15728667 87586 nas_port_type Virtual 87586 remote_ip 5.5.5.246 87594 username madadi 87594 unique_id port 87594 terminate_cause Lost-Carrier 87594 bytes_out 297031 87594 bytes_in 642867 87594 station_ip 5.120.98.92 87594 port 15728700 87594 nas_port_type Virtual 87594 remote_ip 5.5.5.220 87595 username aminvpn 87595 mac 87595 bytes_out 56282 87595 bytes_in 81221 87595 station_ip 83.123.21.248 87595 port 21 87595 unique_id port 87595 remote_ip 10.8.0.6 87596 username madadi 87596 unique_id port 87596 terminate_cause Lost-Carrier 87596 bytes_out 167664 87596 bytes_in 1301675 87596 station_ip 5.120.64.226 87596 port 15728703 87596 nas_port_type Virtual 87596 remote_ip 5.5.5.219 87599 username forozande 87599 unique_id port 87599 terminate_cause User-Request 87599 bytes_out 75924 87599 bytes_in 1113342 87599 station_ip 83.122.76.179 87599 port 15728708 87599 nas_port_type Virtual 87599 remote_ip 5.5.5.216 87600 username forozande 87600 unique_id port 87600 terminate_cause User-Request 87600 bytes_out 0 87600 bytes_in 0 87600 station_ip 83.122.76.179 87600 port 15728711 87600 nas_port_type Virtual 87600 remote_ip 5.5.5.216 87602 username madadi 87602 unique_id port 87602 terminate_cause Lost-Carrier 87602 bytes_out 62090 87602 bytes_in 194419 87602 station_ip 5.119.94.23 87602 port 15728706 87602 nas_port_type Virtual 87602 remote_ip 5.5.5.217 87603 username mahdixz 87603 unique_id port 87603 terminate_cause User-Request 87603 bytes_out 86440 87603 bytes_in 585412 87603 station_ip 151.235.93.14 87603 port 15728714 87603 nas_port_type Virtual 87603 remote_ip 5.5.5.214 87605 username forozande 87605 unique_id port 87605 terminate_cause User-Request 87605 bytes_out 0 87605 bytes_in 0 87605 station_ip 37.129.39.31 87605 port 15728716 87605 nas_port_type Virtual 87605 remote_ip 5.5.5.212 87608 username forozande 87608 unique_id port 87608 terminate_cause User-Request 87608 bytes_out 46423 87608 bytes_in 386397 87608 station_ip 37.129.39.31 87608 port 15728718 87608 nas_port_type Virtual 87608 remote_ip 5.5.5.212 87611 username forozande 87611 unique_id port 87611 terminate_cause User-Request 87611 bytes_out 0 87611 bytes_in 0 87611 station_ip 37.129.39.31 87611 port 15728721 87611 nas_port_type Virtual 87611 remote_ip 5.5.5.212 87613 username forozande 87613 unique_id port 87613 terminate_cause User-Request 87613 bytes_out 261882 87613 bytes_in 373305 87613 station_ip 37.129.39.31 87613 port 15728724 87613 nas_port_type Virtual 87613 remote_ip 5.5.5.212 87618 username mahdixz 87618 unique_id port 87618 terminate_cause User-Request 87618 bytes_out 206574 87618 bytes_in 313234 87618 station_ip 151.235.93.14 87618 port 15728730 87618 nas_port_type Virtual 87618 remote_ip 5.5.5.214 87623 username sadegh 87623 unique_id port 87623 terminate_cause User-Request 87623 bytes_out 12078054 87623 bytes_in 206380938 87623 station_ip 5.119.81.19 87623 port 15728676 87623 nas_port_type Virtual 87623 remote_ip 5.5.5.235 87625 username aminvpn 87625 mac 87580 terminate_cause Lost-Carrier 87580 bytes_out 617310 87580 bytes_in 5510911 87580 station_ip 31.59.35.149 87580 port 15728688 87580 nas_port_type Virtual 87580 remote_ip 5.5.5.225 87582 username forozande 87582 unique_id port 87582 terminate_cause User-Request 87582 bytes_out 96267 87582 bytes_in 380824 87582 station_ip 37.129.141.65 87582 port 15728696 87582 nas_port_type Virtual 87582 remote_ip 5.5.5.221 87583 username forozande 87583 unique_id port 87583 terminate_cause User-Request 87583 bytes_out 35979 87583 bytes_in 290957 87583 station_ip 37.129.141.65 87583 port 15728698 87583 nas_port_type Virtual 87583 remote_ip 5.5.5.221 87588 username avaanna 87588 unique_id port 87588 terminate_cause User-Request 87588 bytes_out 30194 87588 bytes_in 70470 87588 station_ip 37.129.144.49 87588 port 15728702 87588 nas_port_type Virtual 87588 remote_ip 5.5.5.222 87593 username arabpour 87593 unique_id port 87593 terminate_cause User-Request 87593 bytes_out 183706 87593 bytes_in 1154791 87593 station_ip 83.122.28.12 87593 port 15728705 87593 nas_port_type Virtual 87593 remote_ip 5.5.5.218 87604 username zamanialireza 87604 unique_id port 87604 terminate_cause User-Request 87604 bytes_out 6811179 87604 bytes_in 11444032 87604 station_ip 113.203.1.175 87604 port 15728715 87604 nas_port_type Virtual 87604 remote_ip 5.5.5.213 87606 username forozande 87606 unique_id port 87606 terminate_cause User-Request 87606 bytes_out 46134 87606 bytes_in 631119 87606 station_ip 37.129.39.31 87606 port 15728717 87606 nas_port_type Virtual 87606 remote_ip 5.5.5.212 87609 username ahmadipour 87609 unique_id port 87609 terminate_cause User-Request 87609 bytes_out 39770 87609 bytes_in 35902 87609 station_ip 83.122.42.89 87609 port 15728719 87609 nas_port_type Virtual 87609 remote_ip 5.5.5.211 87615 username forozande 87615 unique_id port 87615 terminate_cause User-Request 87615 bytes_out 21651 87615 bytes_in 63204 87615 station_ip 37.129.39.31 87615 port 15728726 87615 nas_port_type Virtual 87615 remote_ip 5.5.5.212 87617 username mahdixz 87617 unique_id port 87617 terminate_cause User-Request 87617 bytes_out 0 87617 bytes_in 0 87617 station_ip 151.235.93.14 87617 port 15728729 87617 nas_port_type Virtual 87617 remote_ip 5.5.5.214 87619 username mahdixz 87619 unique_id port 87619 terminate_cause User-Request 87619 bytes_out 0 87619 bytes_in 0 87619 station_ip 151.235.93.14 87619 port 15728732 87619 nas_port_type Virtual 87619 remote_ip 5.5.5.214 87620 username forozande 87620 unique_id port 87620 terminate_cause User-Request 87620 bytes_out 0 87620 bytes_in 0 87620 station_ip 83.122.43.95 87620 port 15728731 87620 nas_port_type Virtual 87620 remote_ip 5.5.5.209 87622 username zamanialireza 87622 unique_id port 87622 terminate_cause Lost-Carrier 87622 bytes_out 52139 87622 bytes_in 337514 87622 station_ip 5.160.115.91 87622 port 15728734 87622 nas_port_type Virtual 87622 remote_ip 5.5.5.208 87624 username aminvpn 87624 mac 87624 bytes_out 0 87624 bytes_in 0 87624 station_ip 83.123.21.224 87624 port 21 87624 unique_id port 87624 remote_ip 10.8.0.6 87626 username alinezhad 87626 unique_id port 87626 terminate_cause User-Request 87626 bytes_out 0 87626 bytes_in 0 87626 station_ip 5.202.64.239 87626 port 15728735 87626 nas_port_type Virtual 87626 remote_ip 5.5.5.243 87629 username heydari 87629 unique_id port 87629 terminate_cause User-Request 87629 bytes_out 0 87629 bytes_in 0 87629 station_ip 5.119.11.246 87629 port 15728739 87629 nas_port_type Virtual 87629 remote_ip 5.5.5.251 87630 username heydari 87630 unique_id port 87630 terminate_cause User-Request 87630 bytes_out 0 87610 station_ip 37.129.39.31 87610 port 15728720 87610 nas_port_type Virtual 87610 remote_ip 5.5.5.212 87633 username heydari 87633 unique_id port 87633 terminate_cause Lost-Carrier 87633 bytes_out 144629 87633 bytes_in 820336 87633 station_ip 5.119.11.246 87633 port 15728741 87633 nas_port_type Virtual 87633 remote_ip 5.5.5.251 87640 username aminvpn 87640 mac 87640 bytes_out 0 87640 bytes_in 0 87640 station_ip 5.119.106.197 87640 port 21 87640 unique_id port 87640 remote_ip 10.8.0.6 87643 username ahmadi 87643 unique_id port 87643 terminate_cause User-Request 87643 bytes_out 0 87643 bytes_in 0 87643 station_ip 83.123.188.173 87643 port 15728750 87643 nas_port_type Virtual 87643 remote_ip 5.5.5.200 87647 username alinezhad 87647 unique_id port 87647 terminate_cause User-Request 87647 bytes_out 0 87647 bytes_in 0 87647 station_ip 5.202.7.103 87647 port 15728753 87647 nas_port_type Virtual 87647 remote_ip 5.5.5.202 87655 username mahbobeh 87655 unique_id port 87655 terminate_cause Lost-Carrier 87655 bytes_out 505127 87655 bytes_in 4754329 87655 station_ip 113.203.101.103 87655 port 15728749 87655 nas_port_type Virtual 87655 remote_ip 5.5.5.255 87658 username forozande 87658 unique_id port 87658 terminate_cause User-Request 87658 bytes_out 0 87658 bytes_in 0 87658 station_ip 113.203.37.163 87658 port 15728762 87658 nas_port_type Virtual 87658 remote_ip 5.5.5.192 87659 username forozande 87659 unique_id port 87659 terminate_cause User-Request 87659 bytes_out 0 87659 bytes_in 0 87659 station_ip 113.203.37.163 87659 port 15728763 87659 nas_port_type Virtual 87659 remote_ip 5.5.5.192 87666 username heydari 87666 unique_id port 87666 terminate_cause User-Request 87666 bytes_out 117490 87666 bytes_in 952404 87666 station_ip 5.119.11.246 87666 port 15728768 87666 nas_port_type Virtual 87666 remote_ip 5.5.5.251 87671 username forozande 87671 unique_id port 87671 terminate_cause User-Request 87671 bytes_out 0 87671 bytes_in 0 87671 station_ip 83.123.142.62 87671 port 15728774 87671 nas_port_type Virtual 87671 remote_ip 5.5.5.186 87674 username aminvpn 87674 mac 87674 bytes_out 0 87674 bytes_in 0 87674 station_ip 83.122.152.148 87674 port 22 87674 unique_id port 87674 remote_ip 10.8.0.6 87676 username forozande 87676 unique_id port 87676 terminate_cause User-Request 87676 bytes_out 36888 87676 bytes_in 59753 87676 station_ip 83.123.142.62 87676 port 15728776 87676 nas_port_type Virtual 87676 remote_ip 5.5.5.186 87679 username aminvpn 87679 mac 87679 bytes_out 0 87679 bytes_in 0 87679 station_ip 83.122.152.148 87679 port 22 87679 unique_id port 87679 remote_ip 10.8.0.6 87683 username ahmadi 87683 unique_id port 87683 terminate_cause User-Request 87683 bytes_out 0 87683 bytes_in 0 87683 station_ip 83.122.115.140 87683 port 15728777 87683 nas_port_type Virtual 87683 remote_ip 5.5.5.185 87686 username aminvpn 87686 mac 87686 bytes_out 0 87686 bytes_in 0 87686 station_ip 83.122.152.148 87686 port 22 87686 unique_id port 87686 remote_ip 10.8.0.6 87689 username aminvpn 87689 mac 87689 bytes_out 0 87689 bytes_in 0 87689 station_ip 83.122.207.122 87689 port 21 87689 unique_id port 87689 remote_ip 10.8.0.6 87692 username aminvpn 87692 mac 87692 bytes_out 0 87692 bytes_in 0 87692 station_ip 83.122.152.148 87692 port 22 87692 unique_id port 87692 remote_ip 10.8.0.6 87699 username aminvpn 87699 mac 87699 bytes_out 0 87699 bytes_in 0 87699 station_ip 83.122.207.122 87699 port 21 87699 unique_id port 87625 bytes_out 127438 87625 bytes_in 274479 87625 station_ip 83.123.21.224 87625 port 21 87625 unique_id port 87625 remote_ip 10.8.0.6 87627 username heydari 87627 unique_id port 87627 terminate_cause User-Request 87627 bytes_out 0 87627 bytes_in 0 87627 station_ip 5.119.11.246 87627 port 15728737 87627 nas_port_type Virtual 87627 remote_ip 5.5.5.251 87628 username heydari 87628 unique_id port 87628 terminate_cause User-Request 87628 bytes_out 0 87628 bytes_in 0 87628 station_ip 5.119.11.246 87628 port 15728738 87628 nas_port_type Virtual 87628 remote_ip 5.5.5.251 87639 username aminvpn 87639 mac 87639 bytes_out 0 87639 bytes_in 0 87639 station_ip 83.123.66.4 87639 port 22 87639 unique_id port 87639 remote_ip 10.8.0.6 87641 username aminvpn 87641 mac 87641 bytes_out 0 87641 bytes_in 0 87641 station_ip 83.123.66.4 87641 port 22 87641 unique_id port 87641 remote_ip 10.8.0.6 87645 username aminvpn 87645 mac 87645 bytes_out 0 87645 bytes_in 0 87645 station_ip 83.123.66.4 87645 port 21 87645 unique_id port 87645 remote_ip 10.8.0.6 87651 username ksrkrgr 87651 unique_id port 87651 terminate_cause User-Request 87651 bytes_out 228881 87651 bytes_in 1640983 87651 station_ip 94.176.15.195 87651 port 15728755 87651 nas_port_type Virtual 87651 remote_ip 5.5.5.201 87654 username caferibar 87654 unique_id port 87654 terminate_cause User-Request 87654 bytes_out 915757 87654 bytes_in 33416182 87654 station_ip 151.238.235.184 87654 port 15728758 87654 nas_port_type Virtual 87654 remote_ip 5.5.5.195 87662 username madadi 87662 unique_id port 87662 terminate_cause Lost-Carrier 87662 bytes_out 22337 87662 bytes_in 132295 87662 station_ip 5.119.208.111 87662 port 15728760 87662 nas_port_type Virtual 87662 remote_ip 5.5.5.193 87663 username madadi 87663 unique_id port 87663 terminate_cause Lost-Carrier 87663 bytes_out 16151 87663 bytes_in 140819 87663 station_ip 5.119.72.175 87663 port 15728766 87663 nas_port_type Virtual 87663 remote_ip 5.5.5.190 87668 username shokokian 87668 unique_id port 87668 terminate_cause Lost-Carrier 87668 bytes_out 1291267 87668 bytes_in 24725821 87668 station_ip 31.56.155.55 87668 port 15728751 87668 nas_port_type Virtual 87668 remote_ip 5.5.5.199 87672 username aminvpn 87672 mac 87672 bytes_out 285042 87672 bytes_in 508033 87672 station_ip 83.122.207.122 87672 port 21 87672 unique_id port 87672 remote_ip 10.8.0.6 87681 username aminvpn 87681 mac 87681 bytes_out 0 87681 bytes_in 0 87681 station_ip 83.122.152.148 87681 port 22 87681 unique_id port 87681 remote_ip 10.8.0.6 87685 username aminvpn 87685 mac 87685 bytes_out 0 87685 bytes_in 0 87685 station_ip 83.122.207.122 87685 port 21 87685 unique_id port 87685 remote_ip 10.8.0.6 87691 username aminvpn 87691 mac 87691 bytes_out 0 87691 bytes_in 0 87691 station_ip 83.122.207.122 87691 port 21 87691 unique_id port 87691 remote_ip 10.8.0.6 87695 username aminvpn 87695 mac 87695 bytes_out 0 87695 bytes_in 0 87695 station_ip 83.122.207.122 87695 port 21 87695 unique_id port 87695 remote_ip 10.8.0.6 87698 username aminvpn 87698 mac 87698 bytes_out 0 87698 bytes_in 0 87698 station_ip 83.122.152.148 87698 port 22 87698 unique_id port 87698 remote_ip 10.8.0.6 87701 username aminvpn 87701 mac 87701 bytes_out 0 87701 bytes_in 0 87701 station_ip 83.122.207.122 87701 port 21 87701 unique_id port 87701 remote_ip 10.8.0.6 87704 username aminvpn 87704 mac 87704 bytes_out 0 87630 bytes_in 0 87630 station_ip 5.119.11.246 87630 port 15728740 87630 nas_port_type Virtual 87630 remote_ip 5.5.5.251 87632 username shokokian 87632 unique_id port 87632 terminate_cause Lost-Carrier 87632 bytes_out 123470 87632 bytes_in 1146916 87632 station_ip 31.56.114.174 87632 port 15728736 87632 nas_port_type Virtual 87632 remote_ip 5.5.5.207 87634 username forozande 87634 unique_id port 87634 terminate_cause User-Request 87634 bytes_out 49073 87634 bytes_in 568309 87634 station_ip 37.129.91.171 87634 port 15728743 87634 nas_port_type Virtual 87634 remote_ip 5.5.5.205 87636 username alinezhad 87636 unique_id port 87636 terminate_cause User-Request 87636 bytes_out 0 87636 bytes_in 0 87636 station_ip 5.202.7.103 87636 port 15728747 87636 nas_port_type Virtual 87636 remote_ip 5.5.5.202 87638 username aminvpn 87638 mac 87638 bytes_out 0 87638 bytes_in 0 87638 station_ip 5.119.106.197 87638 port 21 87638 unique_id port 87638 remote_ip 10.8.0.6 87642 username aminvpn 87642 mac 87642 bytes_out 0 87642 bytes_in 0 87642 station_ip 5.119.106.197 87642 port 21 87642 unique_id port 87642 remote_ip 10.8.0.6 87644 username sobhan 87644 unique_id port 87644 terminate_cause User-Request 87644 bytes_out 1562670 87644 bytes_in 4116629 87644 station_ip 5.120.57.5 87644 port 15728744 87644 nas_port_type Virtual 87644 remote_ip 5.5.5.204 87649 username zamanialireza 87649 unique_id port 87649 terminate_cause User-Request 87649 bytes_out 488292 87649 bytes_in 4822307 87649 station_ip 5.160.112.80 87649 port 15728754 87649 nas_port_type Virtual 87649 remote_ip 5.5.5.197 87652 username madadi 87652 unique_id port 87652 terminate_cause Lost-Carrier 87652 bytes_out 3043796 87652 bytes_in 18641025 87652 station_ip 5.119.220.235 87652 port 15728728 87652 nas_port_type Virtual 87652 remote_ip 5.5.5.210 87653 username arabpour 87653 unique_id port 87653 terminate_cause User-Request 87653 bytes_out 89715 87653 bytes_in 1237608 87653 station_ip 83.122.76.232 87653 port 15728757 87653 nas_port_type Virtual 87653 remote_ip 5.5.5.196 87656 username madadi 87656 unique_id port 87656 terminate_cause Lost-Carrier 87656 bytes_out 32796 87656 bytes_in 407797 87656 station_ip 5.120.146.41 87656 port 15728759 87656 nas_port_type Virtual 87656 remote_ip 5.5.5.194 87660 username forozande 87660 unique_id port 87660 terminate_cause User-Request 87660 bytes_out 0 87660 bytes_in 0 87660 station_ip 113.203.37.163 87660 port 15728764 87660 nas_port_type Virtual 87660 remote_ip 5.5.5.192 87665 username arabpour 87665 unique_id port 87665 terminate_cause User-Request 87665 bytes_out 621080 87665 bytes_in 21658797 87665 station_ip 83.122.183.129 87665 port 15728767 87665 nas_port_type Virtual 87665 remote_ip 5.5.5.189 87669 username aminvpn 87669 unique_id port 87669 terminate_cause Lost-Carrier 87669 bytes_out 1510760 87669 bytes_in 7787375 87669 station_ip 5.119.106.197 87669 port 15728686 87669 nas_port_type Virtual 87669 remote_ip 5.5.5.227 87670 username alinezhad 87670 unique_id port 87670 terminate_cause User-Request 87670 bytes_out 0 87670 bytes_in 0 87670 station_ip 5.202.7.103 87670 port 15728773 87670 nas_port_type Virtual 87670 remote_ip 5.5.5.202 87673 username forozande 87673 unique_id port 87673 terminate_cause User-Request 87673 bytes_out 0 87673 bytes_in 0 87673 station_ip 83.123.142.62 87673 port 15728775 87673 nas_port_type Virtual 87673 remote_ip 5.5.5.186 87675 username aminvpn 87675 mac 87675 bytes_out 0 87675 bytes_in 0 87675 station_ip 83.122.207.122 87675 port 21 87675 unique_id port 87675 remote_ip 10.8.0.6 87650 terminate_cause User-Request 87650 bytes_out 5340763 87650 bytes_in 105143652 87650 station_ip 94.176.15.195 87650 port 15728748 87650 nas_port_type Virtual 87650 remote_ip 5.5.5.201 87657 username forozande 87657 unique_id port 87657 terminate_cause User-Request 87657 bytes_out 0 87657 bytes_in 0 87657 station_ip 113.203.37.163 87657 port 15728761 87657 nas_port_type Virtual 87657 remote_ip 5.5.5.192 87661 username ahmadipour 87661 unique_id port 87661 terminate_cause Lost-Carrier 87661 bytes_out 220846 87661 bytes_in 3199601 87661 station_ip 37.129.251.168 87661 port 15728765 87661 nas_port_type Virtual 87661 remote_ip 5.5.5.191 87664 username ksrkrgr 87664 unique_id port 87664 terminate_cause User-Request 87664 bytes_out 10707334 87664 bytes_in 240085575 87664 station_ip 94.176.15.195 87664 port 15728756 87664 nas_port_type Virtual 87664 remote_ip 5.5.5.201 87667 username afarin 87667 unique_id port 87667 terminate_cause User-Request 87667 bytes_out 800449 87667 bytes_in 10993125 87667 station_ip 31.56.113.235 87667 port 15728769 87667 nas_port_type Virtual 87667 remote_ip 5.5.5.188 87677 username aminvpn 87677 mac 87677 bytes_out 0 87677 bytes_in 0 87677 station_ip 83.122.152.148 87677 port 22 87677 unique_id port 87677 remote_ip 10.8.0.6 87678 username aminvpn 87678 mac 87678 bytes_out 0 87678 bytes_in 0 87678 station_ip 83.122.207.122 87678 port 21 87678 unique_id port 87678 remote_ip 10.8.0.6 87684 username aminvpn 87684 mac 87684 bytes_out 0 87684 bytes_in 0 87684 station_ip 83.122.152.148 87684 port 22 87684 unique_id port 87684 remote_ip 10.8.0.6 87687 username aminvpn 87687 mac 87687 bytes_out 0 87687 bytes_in 0 87687 station_ip 83.122.207.122 87687 port 21 87687 unique_id port 87687 remote_ip 10.8.0.6 87688 username aminvpn 87688 mac 87688 bytes_out 0 87688 bytes_in 0 87688 station_ip 83.122.152.148 87688 port 22 87688 unique_id port 87688 remote_ip 10.8.0.6 87694 username aminvpn 87694 mac 87694 bytes_out 0 87694 bytes_in 0 87694 station_ip 83.122.152.148 87694 port 22 87694 unique_id port 87694 remote_ip 10.8.0.6 87700 username aminvpn 87700 mac 87700 bytes_out 0 87700 bytes_in 0 87700 station_ip 83.122.152.148 87700 port 22 87700 unique_id port 87700 remote_ip 10.8.0.6 87703 username aminvpn 87703 mac 87703 bytes_out 0 87703 bytes_in 0 87703 station_ip 83.122.207.122 87703 port 21 87703 unique_id port 87703 remote_ip 10.8.0.6 87707 username aminvpn 87707 mac 87707 bytes_out 0 87707 bytes_in 0 87707 station_ip 83.122.207.122 87707 port 21 87707 unique_id port 87707 remote_ip 10.8.0.6 87712 username aminvpn 87712 mac 87712 bytes_out 0 87712 bytes_in 0 87712 station_ip 83.122.152.148 87712 port 22 87712 unique_id port 87712 remote_ip 10.8.0.6 87716 username aminvpn 87716 mac 87716 bytes_out 0 87716 bytes_in 0 87716 station_ip 83.122.152.148 87716 port 22 87716 unique_id port 87716 remote_ip 10.8.0.6 87723 username aminvpn 87723 mac 87723 bytes_out 0 87723 bytes_in 0 87723 station_ip 83.122.152.148 87723 port 22 87723 unique_id port 87723 remote_ip 10.8.0.6 87729 username aminvpn 87729 mac 87729 bytes_out 0 87729 bytes_in 0 87729 station_ip 83.122.152.148 87729 port 22 87729 unique_id port 87729 remote_ip 10.8.0.6 87732 username aminvpn 87732 mac 87732 bytes_out 0 87732 bytes_in 0 87732 station_ip 83.122.207.122 87732 port 21 87680 username aminvpn 87680 mac 87680 bytes_out 0 87680 bytes_in 0 87680 station_ip 83.122.207.122 87680 port 21 87680 unique_id port 87680 remote_ip 10.8.0.6 87682 username aminvpn 87682 mac 87682 bytes_out 0 87682 bytes_in 0 87682 station_ip 83.122.207.122 87682 port 21 87682 unique_id port 87682 remote_ip 10.8.0.6 87690 username aminvpn 87690 mac 87690 bytes_out 0 87690 bytes_in 0 87690 station_ip 83.122.152.148 87690 port 22 87690 unique_id port 87690 remote_ip 10.8.0.6 87693 username aminvpn 87693 mac 87693 bytes_out 0 87693 bytes_in 0 87693 station_ip 83.122.207.122 87693 port 21 87693 unique_id port 87693 remote_ip 10.8.0.6 87696 username aminvpn 87696 mac 87696 bytes_out 0 87696 bytes_in 0 87696 station_ip 83.122.152.148 87696 port 22 87696 unique_id port 87696 remote_ip 10.8.0.6 87697 username aminvpn 87697 mac 87697 bytes_out 0 87697 bytes_in 0 87697 station_ip 83.122.207.122 87697 port 21 87697 unique_id port 87697 remote_ip 10.8.0.6 87705 username aminvpn 87705 mac 87705 bytes_out 0 87705 bytes_in 0 87705 station_ip 83.122.207.122 87705 port 21 87705 unique_id port 87705 remote_ip 10.8.0.6 87706 username aminvpn 87706 mac 87706 bytes_out 0 87706 bytes_in 0 87706 station_ip 83.122.152.148 87706 port 22 87706 unique_id port 87706 remote_ip 10.8.0.6 87709 username aminvpn 87709 mac 87709 bytes_out 0 87709 bytes_in 0 87709 station_ip 83.122.207.122 87709 port 21 87709 unique_id port 87709 remote_ip 10.8.0.6 87714 username aminvpn 87714 mac 87714 bytes_out 0 87714 bytes_in 0 87714 station_ip 83.122.152.148 87714 port 22 87714 unique_id port 87714 remote_ip 10.8.0.6 87715 username aminvpn 87715 mac 87715 bytes_out 0 87715 bytes_in 0 87715 station_ip 83.122.207.122 87715 port 21 87715 unique_id port 87715 remote_ip 10.8.0.6 87718 username aminvpn 87718 mac 87718 bytes_out 0 87718 bytes_in 0 87718 station_ip 83.122.152.148 87718 port 22 87718 unique_id port 87718 remote_ip 10.8.0.6 87722 username aminvpn 87722 mac 87722 bytes_out 0 87722 bytes_in 0 87722 station_ip 83.122.207.122 87722 port 21 87722 unique_id port 87722 remote_ip 10.8.0.6 87726 username aminvpn 87726 mac 87726 bytes_out 0 87726 bytes_in 0 87726 station_ip 83.122.207.122 87726 port 21 87726 unique_id port 87726 remote_ip 10.8.0.6 87731 username aminvpn 87731 mac 87731 bytes_out 0 87731 bytes_in 0 87731 station_ip 83.122.152.148 87731 port 22 87731 unique_id port 87731 remote_ip 10.8.0.6 87735 username aminvpn 87735 mac 87735 bytes_out 0 87735 bytes_in 0 87735 station_ip 83.122.152.148 87735 port 22 87735 unique_id port 87735 remote_ip 10.8.0.6 87744 username aminvpn 87744 mac 87744 bytes_out 0 87744 bytes_in 0 87744 station_ip 83.122.207.122 87744 port 21 87744 unique_id port 87744 remote_ip 10.8.0.6 87747 username aminvpn 87747 mac 87747 bytes_out 0 87747 bytes_in 0 87747 station_ip 83.122.152.148 87747 port 22 87747 unique_id port 87747 remote_ip 10.8.0.6 87752 username aminvpn 87752 mac 87752 bytes_out 0 87752 bytes_in 0 87752 station_ip 83.122.152.148 87752 port 21 87752 unique_id port 87752 remote_ip 10.8.0.6 87757 username aminvpn 87757 mac 87757 bytes_out 0 87757 bytes_in 0 87757 station_ip 83.122.207.122 87757 port 22 87699 remote_ip 10.8.0.6 87702 username aminvpn 87702 mac 87702 bytes_out 0 87702 bytes_in 0 87702 station_ip 83.122.152.148 87702 port 22 87702 unique_id port 87702 remote_ip 10.8.0.6 87708 username aminvpn 87708 mac 87708 bytes_out 0 87708 bytes_in 0 87708 station_ip 83.122.152.148 87708 port 22 87708 unique_id port 87708 remote_ip 10.8.0.6 87711 username aminvpn 87711 mac 87711 bytes_out 0 87711 bytes_in 0 87711 station_ip 83.122.207.122 87711 port 21 87711 unique_id port 87711 remote_ip 10.8.0.6 87717 username aminvpn 87717 mac 87717 bytes_out 0 87717 bytes_in 0 87717 station_ip 83.122.207.122 87717 port 21 87717 unique_id port 87717 remote_ip 10.8.0.6 87720 username aminvpn 87720 mac 87720 bytes_out 0 87720 bytes_in 0 87720 station_ip 83.122.152.148 87720 port 22 87720 unique_id port 87720 remote_ip 10.8.0.6 87724 username aminvpn 87724 mac 87724 bytes_out 0 87724 bytes_in 0 87724 station_ip 83.122.207.122 87724 port 21 87724 unique_id port 87724 remote_ip 10.8.0.6 87725 username aminvpn 87725 mac 87725 bytes_out 0 87725 bytes_in 0 87725 station_ip 83.122.152.148 87725 port 22 87725 unique_id port 87725 remote_ip 10.8.0.6 87728 username aminvpn 87728 mac 87728 bytes_out 0 87728 bytes_in 0 87728 station_ip 83.122.207.122 87728 port 21 87728 unique_id port 87728 remote_ip 10.8.0.6 87734 username aminvpn 87734 mac 87734 bytes_out 0 87734 bytes_in 0 87734 station_ip 83.122.207.122 87734 port 21 87734 unique_id port 87734 remote_ip 10.8.0.6 87737 username aminvpn 87737 mac 87737 bytes_out 0 87737 bytes_in 0 87737 station_ip 83.122.152.148 87737 port 22 87737 unique_id port 87737 remote_ip 10.8.0.6 87740 username aminvpn 87740 mac 87740 bytes_out 0 87740 bytes_in 0 87740 station_ip 83.122.207.122 87740 port 21 87740 unique_id port 87740 remote_ip 10.8.0.6 87743 username aminvpn 87743 mac 87743 bytes_out 0 87743 bytes_in 0 87743 station_ip 83.122.152.148 87743 port 22 87743 unique_id port 87743 remote_ip 10.8.0.6 87746 username aminvpn 87746 mac 87746 bytes_out 0 87746 bytes_in 0 87746 station_ip 83.122.207.122 87746 port 21 87746 unique_id port 87746 remote_ip 10.8.0.6 87748 username aminvpn 87748 mac 87748 bytes_out 0 87748 bytes_in 0 87748 station_ip 83.122.207.122 87748 port 21 87748 unique_id port 87748 remote_ip 10.8.0.6 87751 username aminvpn 87751 mac 87751 bytes_out 0 87751 bytes_in 0 87751 station_ip 83.122.207.122 87751 port 22 87751 unique_id port 87751 remote_ip 10.8.0.6 87754 username aminvpn 87754 mac 87754 bytes_out 0 87754 bytes_in 0 87754 station_ip 83.122.152.148 87754 port 21 87754 unique_id port 87754 remote_ip 10.8.0.6 87759 username aminvpn 87759 mac 87759 bytes_out 0 87759 bytes_in 0 87759 station_ip 83.122.207.122 87759 port 22 87759 unique_id port 87759 remote_ip 10.8.0.6 87763 username asadi 87763 unique_id port 87763 terminate_cause User-Request 87763 bytes_out 100719 87763 bytes_in 974937 87763 station_ip 37.129.193.123 87763 port 15728779 87763 nas_port_type Virtual 87763 remote_ip 5.5.5.183 87768 username aminvpn 87768 mac 87768 bytes_out 0 87768 bytes_in 0 87768 station_ip 83.122.152.148 87768 port 21 87768 unique_id port 87768 remote_ip 10.8.0.6 87769 username asadi 87769 unique_id port 87769 terminate_cause User-Request 87704 bytes_in 0 87704 station_ip 83.122.152.148 87704 port 22 87704 unique_id port 87704 remote_ip 10.8.0.6 87710 username aminvpn 87710 mac 87710 bytes_out 0 87710 bytes_in 0 87710 station_ip 83.122.152.148 87710 port 22 87710 unique_id port 87710 remote_ip 10.8.0.6 87713 username aminvpn 87713 mac 87713 bytes_out 0 87713 bytes_in 0 87713 station_ip 83.122.207.122 87713 port 21 87713 unique_id port 87713 remote_ip 10.8.0.6 87719 username aminvpn 87719 mac 87719 bytes_out 0 87719 bytes_in 0 87719 station_ip 83.122.207.122 87719 port 21 87719 unique_id port 87719 remote_ip 10.8.0.6 87721 username sadegh 87721 unique_id port 87721 terminate_cause User-Request 87721 bytes_out 4496406 87721 bytes_in 63038371 87721 station_ip 5.119.81.19 87721 port 15728772 87721 nas_port_type Virtual 87721 remote_ip 5.5.5.235 87727 username aminvpn 87727 mac 87727 bytes_out 0 87727 bytes_in 0 87727 station_ip 83.122.152.148 87727 port 22 87727 unique_id port 87727 remote_ip 10.8.0.6 87730 username aminvpn 87730 mac 87730 bytes_out 0 87730 bytes_in 0 87730 station_ip 83.122.207.122 87730 port 21 87730 unique_id port 87730 remote_ip 10.8.0.6 87736 username aminvpn 87736 mac 87736 bytes_out 0 87736 bytes_in 0 87736 station_ip 83.122.207.122 87736 port 21 87736 unique_id port 87736 remote_ip 10.8.0.6 87739 username aminvpn 87739 mac 87739 bytes_out 0 87739 bytes_in 0 87739 station_ip 83.122.152.148 87739 port 22 87739 unique_id port 87739 remote_ip 10.8.0.6 87745 username aminvpn 87745 mac 87745 bytes_out 0 87745 bytes_in 0 87745 station_ip 83.122.152.148 87745 port 22 87745 unique_id port 87745 remote_ip 10.8.0.6 87749 username aminvpn 87749 mac 87749 bytes_out 74951 87749 bytes_in 76839 87749 station_ip 83.122.152.148 87749 port 21 87749 unique_id port 87749 remote_ip 10.8.0.6 87753 username aminvpn 87753 mac 87753 bytes_out 0 87753 bytes_in 0 87753 station_ip 83.122.207.122 87753 port 22 87753 unique_id port 87753 remote_ip 10.8.0.6 87756 username aminvpn 87756 mac 87756 bytes_out 0 87756 bytes_in 0 87756 station_ip 83.122.152.148 87756 port 21 87756 unique_id port 87756 remote_ip 10.8.0.6 87765 username aminvpn 87765 mac 87765 bytes_out 0 87765 bytes_in 0 87765 station_ip 83.122.207.122 87765 port 22 87765 unique_id port 87765 remote_ip 10.8.0.6 87772 username avaanna 87772 unique_id port 87772 terminate_cause User-Request 87772 bytes_out 0 87772 bytes_in 0 87772 station_ip 83.123.246.144 87772 port 15728786 87772 nas_port_type Virtual 87772 remote_ip 5.5.5.180 87778 username alinezhad 87778 unique_id port 87778 terminate_cause User-Request 87778 bytes_out 0 87778 bytes_in 0 87778 station_ip 5.202.7.103 87778 port 15728789 87778 nas_port_type Virtual 87778 remote_ip 5.5.5.202 87781 username forozande 87781 unique_id port 87781 terminate_cause User-Request 87781 bytes_out 22731 87781 bytes_in 58548 87781 station_ip 83.122.189.14 87781 port 15728792 87781 nas_port_type Virtual 87781 remote_ip 5.5.5.179 87782 username forozande 87782 unique_id port 87782 terminate_cause User-Request 87782 bytes_out 0 87782 bytes_in 0 87782 station_ip 83.122.189.14 87782 port 15728793 87782 nas_port_type Virtual 87782 remote_ip 5.5.5.179 87784 username aminvpn 87784 mac 87784 bytes_out 78279 87784 bytes_in 169872 87784 station_ip 83.122.207.122 87784 port 21 87784 unique_id port 87784 remote_ip 10.8.0.6 87732 unique_id port 87732 remote_ip 10.8.0.6 87733 username aminvpn 87733 mac 87733 bytes_out 0 87733 bytes_in 0 87733 station_ip 83.122.152.148 87733 port 22 87733 unique_id port 87733 remote_ip 10.8.0.6 87738 username aminvpn 87738 mac 87738 bytes_out 0 87738 bytes_in 0 87738 station_ip 83.122.207.122 87738 port 21 87738 unique_id port 87738 remote_ip 10.8.0.6 87741 username aminvpn 87741 mac 87741 bytes_out 0 87741 bytes_in 0 87741 station_ip 83.122.152.148 87741 port 22 87741 unique_id port 87741 remote_ip 10.8.0.6 87742 username aminvpn 87742 mac 87742 bytes_out 0 87742 bytes_in 0 87742 station_ip 83.122.207.122 87742 port 21 87742 unique_id port 87742 remote_ip 10.8.0.6 87750 username aminvpn 87750 mac 87750 bytes_out 0 87750 bytes_in 0 87750 station_ip 83.122.152.148 87750 port 21 87750 unique_id port 87750 remote_ip 10.8.0.6 87755 username aminvpn 87755 mac 87755 bytes_out 0 87755 bytes_in 0 87755 station_ip 83.122.207.122 87755 port 22 87755 unique_id port 87755 remote_ip 10.8.0.6 87758 username aminvpn 87758 mac 87758 bytes_out 0 87758 bytes_in 0 87758 station_ip 83.122.152.148 87758 port 21 87758 unique_id port 87758 remote_ip 10.8.0.6 87761 username aminvpn 87761 mac 87761 bytes_out 0 87761 bytes_in 0 87761 station_ip 83.122.207.122 87761 port 22 87761 unique_id port 87761 remote_ip 10.8.0.6 87764 username aminvpn 87764 mac 87764 bytes_out 0 87764 bytes_in 0 87764 station_ip 83.122.152.148 87764 port 21 87764 unique_id port 87764 remote_ip 10.8.0.6 87767 username aminvpn 87767 mac 87767 bytes_out 0 87767 bytes_in 0 87767 station_ip 83.122.207.122 87767 port 22 87767 unique_id port 87767 remote_ip 10.8.0.6 87770 username asadi 87770 unique_id port 87770 terminate_cause User-Request 87770 bytes_out 51793 87770 bytes_in 219132 87770 station_ip 37.129.193.123 87770 port 15728781 87770 nas_port_type Virtual 87770 remote_ip 5.5.5.183 87774 username caferibar 87774 unique_id port 87774 terminate_cause Lost-Carrier 87774 bytes_out 471727 87774 bytes_in 1851948 87774 station_ip 5.122.79.204 87774 port 15728785 87774 nas_port_type Virtual 87774 remote_ip 5.5.5.181 87775 username forozande 87775 unique_id port 87775 terminate_cause User-Request 87775 bytes_out 18598 87775 bytes_in 44494 87775 station_ip 83.122.189.14 87775 port 15728787 87775 nas_port_type Virtual 87775 remote_ip 5.5.5.179 87780 username aminvpn 87780 mac 87780 bytes_out 201378 87780 bytes_in 245739 87780 station_ip 83.122.207.122 87780 port 22 87780 unique_id port 87780 remote_ip 10.8.0.6 87783 username forozande 87783 unique_id port 87783 terminate_cause User-Request 87783 bytes_out 0 87783 bytes_in 0 87783 station_ip 83.122.189.14 87783 port 15728794 87783 nas_port_type Virtual 87783 remote_ip 5.5.5.179 87785 username forozande 87785 unique_id port 87785 terminate_cause User-Request 87785 bytes_out 22044 87785 bytes_in 43985 87785 station_ip 83.122.189.14 87785 port 15728795 87785 nas_port_type Virtual 87785 remote_ip 5.5.5.179 87791 username madadi 87791 unique_id port 87791 terminate_cause Lost-Carrier 87791 bytes_out 39679 87791 bytes_in 233129 87791 station_ip 5.120.2.99 87791 port 15728796 87791 nas_port_type Virtual 87791 remote_ip 5.5.5.178 87796 username forozande 87796 unique_id port 87796 terminate_cause User-Request 87796 bytes_out 0 87796 bytes_in 0 87796 station_ip 83.122.164.125 87796 port 15728808 87796 nas_port_type Virtual 87757 unique_id port 87757 remote_ip 10.8.0.6 87760 username aminvpn 87760 mac 87760 bytes_out 0 87760 bytes_in 0 87760 station_ip 83.122.152.148 87760 port 21 87760 unique_id port 87760 remote_ip 10.8.0.6 87762 username aminvpn 87762 unique_id port 87762 terminate_cause User-Request 87762 bytes_out 30189762 87762 bytes_in 1356710647 87762 station_ip 5.119.106.197 87762 port 15728659 87762 nas_port_type Virtual 87762 remote_ip 5.5.5.245 87766 username aminvpn 87766 mac 87766 bytes_out 0 87766 bytes_in 0 87766 station_ip 83.122.152.148 87766 port 21 87766 unique_id port 87766 remote_ip 10.8.0.6 87773 username madadi 87773 unique_id port 87773 terminate_cause Lost-Carrier 87773 bytes_out 1194738 87773 bytes_in 3148706 87773 station_ip 5.120.17.194 87773 port 15728771 87773 nas_port_type Virtual 87773 remote_ip 5.5.5.187 87777 username forozande 87777 unique_id port 87777 terminate_cause User-Request 87777 bytes_out 0 87777 bytes_in 0 87777 station_ip 83.122.189.14 87777 port 15728790 87777 nas_port_type Virtual 87777 remote_ip 5.5.5.179 87779 username forozande 87779 unique_id port 87779 terminate_cause User-Request 87779 bytes_out 29542 87779 bytes_in 363681 87779 station_ip 83.122.189.14 87779 port 15728791 87779 nas_port_type Virtual 87779 remote_ip 5.5.5.179 87786 username zamanialireza 87786 unique_id port 87786 terminate_cause User-Request 87786 bytes_out 0 87786 bytes_in 0 87786 station_ip 83.122.67.94 87786 port 15728797 87786 nas_port_type Virtual 87786 remote_ip 5.5.5.177 87787 username asadi 87787 unique_id port 87787 terminate_cause User-Request 87787 bytes_out 202270 87787 bytes_in 1839592 87787 station_ip 37.129.193.123 87787 port 15728799 87787 nas_port_type Virtual 87787 remote_ip 5.5.5.183 87789 username mahdixz 87789 unique_id port 87789 terminate_cause User-Request 87789 bytes_out 347238 87789 bytes_in 1892247 87789 station_ip 151.235.99.206 87789 port 15728800 87789 nas_port_type Virtual 87789 remote_ip 5.5.5.175 87792 username mohammadi 87792 unique_id port 87792 terminate_cause User-Request 87792 bytes_out 223535 87792 bytes_in 932446 87792 station_ip 83.122.194.109 87792 port 15728803 87792 nas_port_type Virtual 87792 remote_ip 5.5.5.173 87794 username farhad 87794 unique_id port 87794 terminate_cause User-Request 87794 bytes_out 0 87794 bytes_in 0 87794 station_ip 5.120.21.3 87794 port 15728807 87794 nas_port_type Virtual 87794 remote_ip 5.5.5.171 87804 username forozande 87804 unique_id port 87804 terminate_cause User-Request 87804 bytes_out 53789 87804 bytes_in 636790 87804 station_ip 83.122.164.125 87804 port 15728816 87804 nas_port_type Virtual 87804 remote_ip 5.5.5.174 87809 username aminvpn 87809 unique_id port 87809 terminate_cause User-Request 87809 bytes_out 3560044 87809 bytes_in 50190329 87809 station_ip 83.122.207.122 87809 port 15728778 87809 nas_port_type Virtual 87809 remote_ip 5.5.5.184 87810 username shokokian 87810 unique_id port 87810 terminate_cause User-Request 87810 bytes_out 0 87810 bytes_in 0 87810 station_ip 31.56.155.55 87810 port 15728831 87810 nas_port_type Virtual 87810 remote_ip 5.5.5.199 87814 username caferibar 87814 unique_id port 87814 terminate_cause User-Request 87814 bytes_out 133511 87814 bytes_in 225094 87814 station_ip 151.238.250.170 87814 port 15728834 87814 nas_port_type Virtual 87814 remote_ip 5.5.5.168 87816 username asadi 87816 unique_id port 87816 terminate_cause User-Request 87816 bytes_out 137992 87816 bytes_in 701048 87816 station_ip 37.129.193.123 87816 port 15728838 87816 nas_port_type Virtual 87816 remote_ip 5.5.5.183 87818 username shahnaz 87769 bytes_out 41701 87769 bytes_in 229937 87769 station_ip 37.129.193.123 87769 port 15728780 87769 nas_port_type Virtual 87769 remote_ip 5.5.5.183 87771 username asadi 87771 unique_id port 87771 terminate_cause User-Request 87771 bytes_out 24058 87771 bytes_in 27487 87771 station_ip 37.129.193.123 87771 port 15728783 87771 nas_port_type Virtual 87771 remote_ip 5.5.5.183 87776 username forozande 87776 unique_id port 87776 terminate_cause User-Request 87776 bytes_out 51755 87776 bytes_in 389401 87776 station_ip 83.122.189.14 87776 port 15728788 87776 nas_port_type Virtual 87776 remote_ip 5.5.5.179 87790 username forozande 87790 unique_id port 87790 terminate_cause User-Request 87790 bytes_out 13308 87790 bytes_in 32473 87790 station_ip 83.122.164.125 87790 port 15728802 87790 nas_port_type Virtual 87790 remote_ip 5.5.5.174 87793 username farhad 87793 unique_id port 87793 terminate_cause User-Request 87793 bytes_out 0 87793 bytes_in 0 87793 station_ip 5.120.21.3 87793 port 15728806 87793 nas_port_type Virtual 87793 remote_ip 5.5.5.171 87795 username forozande 87795 unique_id port 87795 terminate_cause User-Request 87795 bytes_out 33826 87795 bytes_in 331038 87795 station_ip 83.122.164.125 87795 port 15728805 87795 nas_port_type Virtual 87795 remote_ip 5.5.5.174 87797 username farhad 87797 unique_id port 87797 terminate_cause Lost-Carrier 87797 bytes_out 8046954 87797 bytes_in 124901183 87797 station_ip 5.120.34.42 87797 port 15728782 87797 nas_port_type Virtual 87797 remote_ip 5.5.5.182 87800 username forozande 87800 unique_id port 87800 terminate_cause User-Request 87800 bytes_out 0 87800 bytes_in 0 87800 station_ip 83.122.164.125 87800 port 15728811 87800 nas_port_type Virtual 87800 remote_ip 5.5.5.174 87801 username mohammadi 87801 unique_id port 87801 terminate_cause User-Request 87801 bytes_out 0 87801 bytes_in 0 87801 station_ip 83.122.194.109 87801 port 15728812 87801 nas_port_type Virtual 87801 remote_ip 5.5.5.173 87802 username mohammadi 87802 unique_id port 87802 terminate_cause User-Request 87802 bytes_out 0 87802 bytes_in 0 87802 station_ip 83.122.194.109 87802 port 15728814 87802 nas_port_type Virtual 87802 remote_ip 5.5.5.173 87807 username asadi 87807 unique_id port 87807 terminate_cause User-Request 87807 bytes_out 188128 87807 bytes_in 2914379 87807 station_ip 37.129.193.123 87807 port 15728824 87807 nas_port_type Virtual 87807 remote_ip 5.5.5.183 87808 username forozande 87808 unique_id port 87808 terminate_cause User-Request 87808 bytes_out 0 87808 bytes_in 0 87808 station_ip 83.123.131.0 87808 port 15728827 87808 nas_port_type Virtual 87808 remote_ip 5.5.5.169 87812 username shahnaz 87812 unique_id port 87812 terminate_cause Lost-Carrier 87812 bytes_out 1501259 87812 bytes_in 12366608 87812 station_ip 5.120.58.27 87812 port 15728770 87812 nas_port_type Virtual 87812 remote_ip 5.5.5.241 87819 username zamanialireza 87819 unique_id port 87819 terminate_cause User-Request 87819 bytes_out 0 87819 bytes_in 0 87819 station_ip 83.123.80.77 87819 port 15728844 87819 nas_port_type Virtual 87819 remote_ip 5.5.5.163 87820 username aminvpn 87820 mac 87820 bytes_out 0 87820 bytes_in 0 87820 station_ip 113.203.76.120 87820 port 36 87820 unique_id port 87820 remote_ip 10.8.1.10 87824 username afarin 87824 unique_id port 87824 terminate_cause Lost-Carrier 87824 bytes_out 1024094 87824 bytes_in 12254588 87824 station_ip 31.56.217.137 87824 port 15728841 87824 nas_port_type Virtual 87824 remote_ip 5.5.5.164 87829 username aminvpn 87829 mac 87829 bytes_out 0 87829 bytes_in 0 87829 station_ip 83.123.235.139 87829 port 21 87788 username forozande 87788 unique_id port 87788 terminate_cause User-Request 87788 bytes_out 0 87788 bytes_in 0 87788 station_ip 83.122.164.125 87788 port 15728801 87788 nas_port_type Virtual 87788 remote_ip 5.5.5.174 87798 username caferibar 87798 unique_id port 87798 terminate_cause Lost-Carrier 87798 bytes_out 685512 87798 bytes_in 6498307 87798 station_ip 5.122.128.221 87798 port 15728798 87798 nas_port_type Virtual 87798 remote_ip 5.5.5.176 87803 username forozande 87803 unique_id port 87803 terminate_cause User-Request 87803 bytes_out 56992 87803 bytes_in 442137 87803 station_ip 83.122.164.125 87803 port 15728813 87803 nas_port_type Virtual 87803 remote_ip 5.5.5.174 87806 username zamanialireza 87806 unique_id port 87806 terminate_cause User-Request 87806 bytes_out 5203477 87806 bytes_in 163532188 87806 station_ip 94.183.213.166 87806 port 15728804 87806 nas_port_type Virtual 87806 remote_ip 5.5.5.172 87811 username mahbobeh 87811 unique_id port 87811 terminate_cause Lost-Carrier 87811 bytes_out 416325 87811 bytes_in 7212105 87811 station_ip 113.203.120.19 87811 port 15728815 87811 nas_port_type Virtual 87811 remote_ip 5.5.5.170 87813 username asadi 87813 unique_id port 87813 terminate_cause Lost-Carrier 87813 bytes_out 114407 87813 bytes_in 1579209 87813 station_ip 37.129.193.123 87813 port 15728830 87813 nas_port_type Virtual 87813 remote_ip 5.5.5.183 87821 username aminvpn 87821 mac 87821 bytes_out 22957 87821 bytes_in 26501 87821 station_ip 83.123.235.139 87821 port 21 87821 unique_id port 87821 remote_ip 10.8.0.6 87826 username arabpour 87826 unique_id port 87826 terminate_cause User-Request 87826 bytes_out 266639 87826 bytes_in 6334069 87826 station_ip 37.129.133.158 87826 port 15728848 87826 nas_port_type Virtual 87826 remote_ip 5.5.5.162 87827 username alinezhad 87827 unique_id port 87827 terminate_cause User-Request 87827 bytes_out 0 87827 bytes_in 0 87827 station_ip 5.202.7.103 87827 port 15728849 87827 nas_port_type Virtual 87827 remote_ip 5.5.5.202 87834 username aminvpn 87834 mac 87834 bytes_out 0 87834 bytes_in 0 87834 station_ip 83.122.207.122 87834 port 22 87834 unique_id port 87834 remote_ip 10.8.0.6 87836 username aminvpn 87836 mac 87836 bytes_out 0 87836 bytes_in 0 87836 station_ip 83.123.235.139 87836 port 21 87836 unique_id port 87836 remote_ip 10.8.0.6 87838 username aminvpn 87838 mac 87838 bytes_out 0 87838 bytes_in 0 87838 station_ip 83.122.212.234 87838 port 21 87838 unique_id port 87838 remote_ip 10.8.0.6 87840 username aminvpn 87840 mac 87840 bytes_out 0 87840 bytes_in 0 87840 station_ip 83.122.207.122 87840 port 21 87840 unique_id port 87840 remote_ip 10.8.0.6 87842 username aminvpn 87842 mac 87842 bytes_out 0 87842 bytes_in 0 87842 station_ip 83.123.235.139 87842 port 21 87842 unique_id port 87842 remote_ip 10.8.0.6 87843 username arabpour 87843 unique_id port 87843 terminate_cause User-Request 87843 bytes_out 799204 87843 bytes_in 24869016 87843 station_ip 37.129.133.158 87843 port 15728854 87843 nas_port_type Virtual 87843 remote_ip 5.5.5.162 87847 username aminvpn 87847 mac 87847 bytes_out 0 87847 bytes_in 0 87847 station_ip 83.122.207.122 87847 port 21 87847 unique_id port 87847 remote_ip 10.8.0.6 87849 username aminvpn 87849 mac 87849 bytes_out 0 87849 bytes_in 0 87849 station_ip 83.123.235.139 87849 port 21 87849 unique_id port 87849 remote_ip 10.8.0.6 87854 username aminvpn 87854 mac 87854 bytes_out 0 87854 bytes_in 0 87796 remote_ip 5.5.5.174 87799 username forozande 87799 unique_id port 87799 terminate_cause User-Request 87799 bytes_out 0 87799 bytes_in 0 87799 station_ip 83.122.164.125 87799 port 15728809 87799 nas_port_type Virtual 87799 remote_ip 5.5.5.174 87805 username heydari 87805 unique_id port 87805 terminate_cause User-Request 87805 bytes_out 107915 87805 bytes_in 611892 87805 station_ip 5.119.11.246 87805 port 15728818 87805 nas_port_type Virtual 87805 remote_ip 5.5.5.251 87815 username madadi 87815 unique_id port 87815 terminate_cause Lost-Carrier 87815 bytes_out 54139 87815 bytes_in 176697 87815 station_ip 5.119.251.80 87815 port 15728835 87815 nas_port_type Virtual 87815 remote_ip 5.5.5.167 87817 username aminvpn 87817 mac 87817 bytes_out 0 87817 bytes_in 0 87817 station_ip 113.203.76.120 87817 port 35 87817 unique_id port 87817 remote_ip 10.8.1.10 87828 username forozande 87828 unique_id port 87828 terminate_cause User-Request 87828 bytes_out 10732 87828 bytes_in 23591 87828 station_ip 113.203.123.14 87828 port 15728850 87828 nas_port_type Virtual 87828 remote_ip 5.5.5.160 87835 username alinezhad 87835 unique_id port 87835 terminate_cause User-Request 87835 bytes_out 0 87835 bytes_in 0 87835 station_ip 5.202.7.103 87835 port 15728853 87835 nas_port_type Virtual 87835 remote_ip 5.5.5.202 87844 username aminvpn 87844 mac 87844 bytes_out 0 87844 bytes_in 0 87844 station_ip 83.122.207.122 87844 port 22 87844 unique_id port 87844 remote_ip 10.8.0.6 87851 username aminvpn 87851 mac 87851 bytes_out 0 87851 bytes_in 0 87851 station_ip 83.122.212.234 87851 port 21 87851 unique_id port 87851 remote_ip 10.8.0.6 87853 username aminvpn 87853 mac 87853 bytes_out 0 87853 bytes_in 0 87853 station_ip 83.122.207.122 87853 port 21 87853 unique_id port 87853 remote_ip 10.8.0.6 87856 username aminvpn 87856 mac 87856 bytes_out 0 87856 bytes_in 0 87856 station_ip 83.122.212.234 87856 port 22 87856 unique_id port 87856 remote_ip 10.8.0.6 87865 username aminvpn 87865 mac 87865 bytes_out 0 87865 bytes_in 0 87865 station_ip 83.122.207.122 87865 port 21 87865 unique_id port 87865 remote_ip 10.8.0.6 87868 username aminvpn 87868 mac 87868 bytes_out 0 87868 bytes_in 0 87868 station_ip 83.123.118.48 87868 port 22 87868 unique_id port 87868 remote_ip 10.8.0.6 87871 username aminvpn 87871 mac 87871 bytes_out 0 87871 bytes_in 0 87871 station_ip 83.122.207.122 87871 port 21 87871 unique_id port 87871 remote_ip 10.8.0.6 87876 username aminvpn 87876 mac 87876 bytes_out 0 87876 bytes_in 0 87876 station_ip 83.122.207.122 87876 port 21 87876 unique_id port 87876 remote_ip 10.8.0.6 87879 username aminvpn 87879 mac 87879 bytes_out 0 87879 bytes_in 0 87879 station_ip 83.123.118.48 87879 port 22 87879 unique_id port 87879 remote_ip 10.8.0.6 87887 username aminvpn 87887 mac 87887 bytes_out 0 87887 bytes_in 0 87887 station_ip 83.122.207.122 87887 port 21 87887 unique_id port 87887 remote_ip 10.8.0.6 87890 username aminvpn 87890 mac 87890 bytes_out 0 87890 bytes_in 0 87890 station_ip 83.123.118.48 87890 port 22 87890 unique_id port 87890 remote_ip 10.8.0.6 87892 username alinezhad 87892 unique_id port 87892 terminate_cause User-Request 87892 bytes_out 0 87892 bytes_in 0 87892 station_ip 5.202.7.103 87892 port 15728860 87892 nas_port_type Virtual 87892 remote_ip 5.5.5.202 87897 username aminvpn 87897 mac 87818 unique_id port 87818 terminate_cause User-Request 87818 bytes_out 0 87818 bytes_in 0 87818 station_ip 5.120.58.27 87818 port 15728843 87818 nas_port_type Virtual 87818 remote_ip 5.5.5.241 87822 username arabpour 87822 unique_id port 87822 terminate_cause User-Request 87822 bytes_out 0 87822 bytes_in 0 87822 station_ip 37.129.133.158 87822 port 15728845 87822 nas_port_type Virtual 87822 remote_ip 5.5.5.162 87823 username arabpour 87823 unique_id port 87823 terminate_cause User-Request 87823 bytes_out 135353 87823 bytes_in 4210269 87823 station_ip 37.129.133.158 87823 port 15728846 87823 nas_port_type Virtual 87823 remote_ip 5.5.5.162 87825 username zamanialireza 87825 unique_id port 87825 terminate_cause User-Request 87825 bytes_out 301911 87825 bytes_in 1846021 87825 station_ip 37.129.59.147 87825 port 15728847 87825 nas_port_type Virtual 87825 remote_ip 5.5.5.161 87831 username arabpour 87831 unique_id port 87831 terminate_cause User-Request 87831 bytes_out 397519 87831 bytes_in 11664890 87831 station_ip 37.129.133.158 87831 port 15728852 87831 nas_port_type Virtual 87831 remote_ip 5.5.5.162 87832 username aminvpn 87832 mac 87832 bytes_out 0 87832 bytes_in 0 87832 station_ip 83.123.235.139 87832 port 21 87832 unique_id port 87832 remote_ip 10.8.0.6 87837 username aminvpn 87837 mac 87837 bytes_out 0 87837 bytes_in 0 87837 station_ip 83.122.207.122 87837 port 22 87837 unique_id port 87837 remote_ip 10.8.0.6 87841 username aminvpn 87841 mac 87841 bytes_out 0 87841 bytes_in 0 87841 station_ip 83.122.212.234 87841 port 22 87841 unique_id port 87841 remote_ip 10.8.0.6 87846 username aminvpn 87846 mac 87846 bytes_out 0 87846 bytes_in 0 87846 station_ip 83.123.235.139 87846 port 22 87846 unique_id port 87846 remote_ip 10.8.0.6 87848 username aminvpn 87848 mac 87848 bytes_out 0 87848 bytes_in 0 87848 station_ip 83.122.212.234 87848 port 22 87848 unique_id port 87848 remote_ip 10.8.0.6 87859 username aminvpn 87859 mac 87859 bytes_out 0 87859 bytes_in 0 87859 station_ip 83.122.207.122 87859 port 21 87859 unique_id port 87859 remote_ip 10.8.0.6 87861 username aminvpn 87861 mac 87861 bytes_out 0 87861 bytes_in 0 87861 station_ip 83.122.207.122 87861 port 21 87861 unique_id port 87861 remote_ip 10.8.0.6 87867 username aminvpn 87867 mac 87867 bytes_out 0 87867 bytes_in 0 87867 station_ip 83.122.207.122 87867 port 21 87867 unique_id port 87867 remote_ip 10.8.0.6 87870 username aminvpn 87870 mac 87870 bytes_out 0 87870 bytes_in 0 87870 station_ip 83.123.118.48 87870 port 22 87870 unique_id port 87870 remote_ip 10.8.0.6 87874 username aminvpn 87874 mac 87874 bytes_out 0 87874 bytes_in 0 87874 station_ip 83.123.118.48 87874 port 22 87874 unique_id port 87874 remote_ip 10.8.0.6 87878 username aminvpn 87878 mac 87878 bytes_out 0 87878 bytes_in 0 87878 station_ip 83.122.207.122 87878 port 21 87878 unique_id port 87878 remote_ip 10.8.0.6 87881 username aminvpn 87881 mac 87881 bytes_out 0 87881 bytes_in 0 87881 station_ip 83.123.118.48 87881 port 22 87881 unique_id port 87881 remote_ip 10.8.0.6 87882 username aminvpn 87882 mac 87882 bytes_out 0 87882 bytes_in 0 87882 station_ip 83.122.207.122 87882 port 21 87882 unique_id port 87882 remote_ip 10.8.0.6 87884 username caferibar 87884 unique_id port 87884 terminate_cause Lost-Carrier 87884 bytes_out 1759793 87884 bytes_in 10809131 87829 unique_id port 87829 remote_ip 10.8.0.6 87830 username ahmadi 87830 unique_id port 87830 terminate_cause User-Request 87830 bytes_out 0 87830 bytes_in 0 87830 station_ip 83.122.236.104 87830 port 15728851 87830 nas_port_type Virtual 87830 remote_ip 5.5.5.159 87833 username heydari 87833 unique_id port 87833 terminate_cause User-Request 87833 bytes_out 643910 87833 bytes_in 10641333 87833 station_ip 5.119.11.246 87833 port 15728840 87833 nas_port_type Virtual 87833 remote_ip 5.5.5.251 87839 username aminvpn 87839 mac 87839 bytes_out 0 87839 bytes_in 0 87839 station_ip 83.123.235.139 87839 port 22 87839 unique_id port 87839 remote_ip 10.8.0.6 87845 username aminvpn 87845 mac 87845 bytes_out 0 87845 bytes_in 0 87845 station_ip 83.122.212.234 87845 port 21 87845 unique_id port 87845 remote_ip 10.8.0.6 87850 username aminvpn 87850 mac 87850 bytes_out 0 87850 bytes_in 0 87850 station_ip 83.122.207.122 87850 port 22 87850 unique_id port 87850 remote_ip 10.8.0.6 87852 username aminvpn 87852 mac 87852 bytes_out 0 87852 bytes_in 0 87852 station_ip 83.123.235.139 87852 port 22 87852 unique_id port 87852 remote_ip 10.8.0.6 87855 username aminvpn 87855 mac 87855 bytes_out 0 87855 bytes_in 0 87855 station_ip 83.122.207.122 87855 port 21 87855 unique_id port 87855 remote_ip 10.8.0.6 87857 username aminvpn 87857 mac 87857 bytes_out 0 87857 bytes_in 0 87857 station_ip 83.122.207.122 87857 port 21 87857 unique_id port 87857 remote_ip 10.8.0.6 87858 username madadi 87858 unique_id port 87858 terminate_cause Lost-Carrier 87858 bytes_out 1115889 87858 bytes_in 2148453 87858 station_ip 5.120.33.49 87858 port 15728839 87858 nas_port_type Virtual 87858 remote_ip 5.5.5.165 87863 username aminvpn 87863 mac 87863 bytes_out 0 87863 bytes_in 0 87863 station_ip 83.122.207.122 87863 port 21 87863 unique_id port 87863 remote_ip 10.8.0.6 87864 username aminvpn 87864 mac 87864 bytes_out 0 87864 bytes_in 0 87864 station_ip 83.123.118.48 87864 port 22 87864 unique_id port 87864 remote_ip 10.8.0.6 87872 username aminvpn 87872 mac 87872 bytes_out 0 87872 bytes_in 0 87872 station_ip 83.123.118.48 87872 port 22 87872 unique_id port 87872 remote_ip 10.8.0.6 87873 username aminvpn 87873 mac 87873 bytes_out 0 87873 bytes_in 0 87873 station_ip 83.122.207.122 87873 port 21 87873 unique_id port 87873 remote_ip 10.8.0.6 87875 username heydari 87875 unique_id port 87875 terminate_cause User-Request 87875 bytes_out 451924 87875 bytes_in 5533805 87875 station_ip 5.119.11.246 87875 port 15728856 87875 nas_port_type Virtual 87875 remote_ip 5.5.5.251 87886 username aminvpn 87886 mac 87886 bytes_out 0 87886 bytes_in 0 87886 station_ip 83.123.118.48 87886 port 22 87886 unique_id port 87886 remote_ip 10.8.0.6 87893 username aminvpn 87893 mac 87893 bytes_out 0 87893 bytes_in 0 87893 station_ip 83.123.118.48 87893 port 22 87893 unique_id port 87893 remote_ip 10.8.0.6 87894 username aminvpn 87894 mac 87894 bytes_out 0 87894 bytes_in 0 87894 station_ip 83.122.207.122 87894 port 21 87894 unique_id port 87894 remote_ip 10.8.0.6 87898 username ahmadipour 87898 unique_id port 87898 terminate_cause Lost-Carrier 87898 bytes_out 540238 87898 bytes_in 9774746 87898 station_ip 37.129.165.24 87898 port 15728859 87898 nas_port_type Virtual 87898 remote_ip 5.5.5.157 87900 username aminvpn 87900 mac 87854 station_ip 83.122.212.234 87854 port 22 87854 unique_id port 87854 remote_ip 10.8.0.6 87860 username aminvpn 87860 mac 87860 bytes_out 0 87860 bytes_in 0 87860 station_ip 83.123.118.48 87860 port 22 87860 unique_id port 87860 remote_ip 10.8.0.6 87862 username aminvpn 87862 mac 87862 bytes_out 0 87862 bytes_in 0 87862 station_ip 83.123.118.48 87862 port 22 87862 unique_id port 87862 remote_ip 10.8.0.6 87866 username aminvpn 87866 mac 87866 bytes_out 0 87866 bytes_in 0 87866 station_ip 83.123.118.48 87866 port 22 87866 unique_id port 87866 remote_ip 10.8.0.6 87869 username aminvpn 87869 mac 87869 bytes_out 0 87869 bytes_in 0 87869 station_ip 83.122.207.122 87869 port 21 87869 unique_id port 87869 remote_ip 10.8.0.6 87877 username aminvpn 87877 mac 87877 bytes_out 0 87877 bytes_in 0 87877 station_ip 83.123.118.48 87877 port 22 87877 unique_id port 87877 remote_ip 10.8.0.6 87880 username aminvpn 87880 mac 87880 bytes_out 0 87880 bytes_in 0 87880 station_ip 83.122.207.122 87880 port 21 87880 unique_id port 87880 remote_ip 10.8.0.6 87883 username aminvpn 87883 mac 87883 bytes_out 0 87883 bytes_in 0 87883 station_ip 83.123.118.48 87883 port 22 87883 unique_id port 87883 remote_ip 10.8.0.6 87885 username aminvpn 87885 mac 87885 bytes_out 0 87885 bytes_in 0 87885 station_ip 83.122.207.122 87885 port 21 87885 unique_id port 87885 remote_ip 10.8.0.6 87888 username aminvpn 87888 mac 87888 bytes_out 0 87888 bytes_in 0 87888 station_ip 83.123.118.48 87888 port 22 87888 unique_id port 87888 remote_ip 10.8.0.6 87891 username aminvpn 87891 mac 87891 bytes_out 0 87891 bytes_in 0 87891 station_ip 83.122.207.122 87891 port 21 87891 unique_id port 87891 remote_ip 10.8.0.6 87895 username caferibar 87895 unique_id port 87895 terminate_cause Lost-Carrier 87895 bytes_out 2491530 87895 bytes_in 18751763 87895 station_ip 151.238.250.170 87895 port 15728837 87895 nas_port_type Virtual 87895 remote_ip 5.5.5.168 87899 username aminvpn 87899 unique_id port 87899 terminate_cause User-Request 87899 bytes_out 1042816 87899 bytes_in 18464720 87899 station_ip 83.122.207.122 87899 port 15728857 87899 nas_port_type Virtual 87899 remote_ip 5.5.5.184 87908 username aminvpn 87908 mac 87908 bytes_out 0 87908 bytes_in 0 87908 station_ip 83.122.207.122 87908 port 21 87908 unique_id port 87908 remote_ip 10.8.0.6 87912 username aminvpn 87912 mac 87912 bytes_out 0 87912 bytes_in 0 87912 station_ip 83.123.118.48 87912 port 22 87912 unique_id port 87912 remote_ip 10.8.0.6 87913 username aminvpn 87913 mac 87913 bytes_out 0 87913 bytes_in 0 87913 station_ip 83.122.207.122 87913 port 21 87913 unique_id port 87913 remote_ip 10.8.0.6 87942 username aminvpn 87942 mac 87942 bytes_out 0 87942 bytes_in 0 87942 station_ip 83.122.207.122 87942 port 21 87942 unique_id port 87942 remote_ip 10.8.0.6 87945 username aminvpn 87945 mac 87945 bytes_out 10975 87945 bytes_in 13620 87945 station_ip 83.123.118.48 87945 port 22 87945 unique_id port 87945 remote_ip 10.8.0.6 87947 username aminvpn 87947 mac 87947 bytes_out 4008 87947 bytes_in 5743 87947 station_ip 83.122.207.122 87947 port 21 87947 unique_id port 87947 remote_ip 10.8.0.6 87948 username aminvpn 87948 mac 87948 bytes_out 23862 87948 bytes_in 41094 87948 station_ip 83.123.118.48 87884 station_ip 89.32.106.131 87884 port 15728836 87884 nas_port_type Virtual 87884 remote_ip 5.5.5.166 87889 username aminvpn 87889 mac 87889 bytes_out 0 87889 bytes_in 0 87889 station_ip 83.122.207.122 87889 port 21 87889 unique_id port 87889 remote_ip 10.8.0.6 87896 username aminvpn 87896 mac 87896 bytes_out 0 87896 bytes_in 0 87896 station_ip 83.123.118.48 87896 port 22 87896 unique_id port 87896 remote_ip 10.8.0.6 87901 username aminvpn 87901 mac 87901 bytes_out 0 87901 bytes_in 0 87901 station_ip 83.122.207.122 87901 port 21 87901 unique_id port 87901 remote_ip 10.8.0.6 87902 username aminvpn 87902 mac 87902 bytes_out 0 87902 bytes_in 0 87902 station_ip 83.123.118.48 87902 port 22 87902 unique_id port 87902 remote_ip 10.8.0.6 87905 username aminvpn 87905 mac 87905 bytes_out 0 87905 bytes_in 0 87905 station_ip 83.122.207.122 87905 port 21 87905 unique_id port 87905 remote_ip 10.8.0.6 87909 username aminvpn 87909 mac 87909 bytes_out 0 87909 bytes_in 0 87909 station_ip 83.123.118.48 87909 port 22 87909 unique_id port 87909 remote_ip 10.8.0.6 87911 username aminvpn 87911 unique_id port 87911 terminate_cause User-Request 87911 bytes_out 9347162 87911 bytes_in 243340524 87911 station_ip 83.122.207.122 87911 port 15728862 87911 nas_port_type Virtual 87911 remote_ip 5.5.5.184 87914 username aminvpn 87914 mac 87914 bytes_out 0 87914 bytes_in 0 87914 station_ip 83.123.118.48 87914 port 22 87914 unique_id port 87914 remote_ip 10.8.0.6 87924 username ahmadipour 87924 unique_id port 87924 terminate_cause Lost-Carrier 87924 bytes_out 13831764 87924 bytes_in 1985142 87924 station_ip 37.129.165.24 87924 port 15728864 87924 nas_port_type Virtual 87924 remote_ip 5.5.5.157 87931 username aminvpn 87931 mac 87931 bytes_out 0 87931 bytes_in 0 87931 station_ip 83.122.207.122 87931 port 21 87931 unique_id port 87931 remote_ip 10.8.0.6 87936 username forozande 87936 unique_id port 87936 terminate_cause User-Request 87936 bytes_out 82200 87936 bytes_in 966035 87936 station_ip 83.123.218.114 87936 port 15728868 87936 nas_port_type Virtual 87936 remote_ip 5.5.5.155 87939 username aminvpn 87939 mac 87939 bytes_out 17964 87939 bytes_in 52213 87939 station_ip 83.123.118.48 87939 port 22 87939 unique_id port 87939 remote_ip 10.8.0.6 87940 username aminvpn 87940 mac 87940 bytes_out 0 87940 bytes_in 0 87940 station_ip 83.122.207.122 87940 port 21 87940 unique_id port 87940 remote_ip 10.8.0.6 87943 username aminvpn 87943 mac 87943 bytes_out 47738 87943 bytes_in 42574 87943 station_ip 83.123.118.48 87943 port 22 87943 unique_id port 87943 remote_ip 10.8.0.6 87946 username madadi 87946 unique_id port 87946 terminate_cause Lost-Carrier 87946 bytes_out 272598 87946 bytes_in 1207164 87946 station_ip 5.119.236.117 87946 port 15728869 87946 nas_port_type Virtual 87946 remote_ip 5.5.5.153 87955 username aminvpn 87955 mac 87955 bytes_out 0 87955 bytes_in 0 87955 station_ip 83.123.118.48 87955 port 22 87955 unique_id port 87955 remote_ip 10.8.0.6 87959 username aminvpn 87959 mac 87959 bytes_out 0 87959 bytes_in 0 87959 station_ip 83.123.118.48 87959 port 22 87959 unique_id port 87959 remote_ip 10.8.0.6 87962 username aminvpn 87962 mac 87962 bytes_out 0 87962 bytes_in 0 87962 station_ip 83.122.129.206 87962 port 21 87962 unique_id port 87962 remote_ip 10.8.0.6 87964 username ahmadipour 87897 bytes_out 0 87897 bytes_in 0 87897 station_ip 83.122.207.122 87897 port 21 87897 unique_id port 87897 remote_ip 10.8.0.6 87903 username aminvpn 87903 mac 87903 bytes_out 0 87903 bytes_in 0 87903 station_ip 83.122.207.122 87903 port 21 87903 unique_id port 87903 remote_ip 10.8.0.6 87907 username aminvpn 87907 mac 87907 bytes_out 0 87907 bytes_in 0 87907 station_ip 83.123.118.48 87907 port 22 87907 unique_id port 87907 remote_ip 10.8.0.6 87910 username aminvpn 87910 mac 87910 bytes_out 0 87910 bytes_in 0 87910 station_ip 83.122.207.122 87910 port 21 87910 unique_id port 87910 remote_ip 10.8.0.6 87915 username aminvpn 87915 mac 87915 bytes_out 0 87915 bytes_in 0 87915 station_ip 83.122.207.122 87915 port 21 87915 unique_id port 87915 remote_ip 10.8.0.6 87918 username aminvpn 87918 mac 87918 bytes_out 0 87918 bytes_in 0 87918 station_ip 83.123.118.48 87918 port 22 87918 unique_id port 87918 remote_ip 10.8.0.6 87920 username caferibar 87920 unique_id port 87920 terminate_cause User-Request 87920 bytes_out 86898 87920 bytes_in 397477 87920 station_ip 151.238.250.170 87920 port 15728863 87920 nas_port_type Virtual 87920 remote_ip 5.5.5.168 87922 username aminvpn 87922 mac 87922 bytes_out 0 87922 bytes_in 0 87922 station_ip 83.122.207.122 87922 port 21 87922 unique_id port 87922 remote_ip 10.8.0.6 87923 username aminvpn 87923 mac 87923 bytes_out 0 87923 bytes_in 0 87923 station_ip 83.123.118.48 87923 port 22 87923 unique_id port 87923 remote_ip 10.8.0.6 87925 username aminvpn 87925 mac 87925 bytes_out 0 87925 bytes_in 0 87925 station_ip 83.122.207.122 87925 port 21 87925 unique_id port 87925 remote_ip 10.8.0.6 87927 username aminvpn 87927 mac 87927 bytes_out 0 87927 bytes_in 0 87927 station_ip 83.122.207.122 87927 port 21 87927 unique_id port 87927 remote_ip 10.8.0.6 87929 username forozande 87929 unique_id port 87929 terminate_cause User-Request 87929 bytes_out 1134 87929 bytes_in 11808 87929 station_ip 83.123.218.114 87929 port 15728865 87929 nas_port_type Virtual 87929 remote_ip 5.5.5.155 87932 username aminvpn 87932 mac 87932 bytes_out 0 87932 bytes_in 0 87932 station_ip 83.123.118.48 87932 port 22 87932 unique_id port 87932 remote_ip 10.8.0.6 87935 username aminvpn 87935 mac 87935 bytes_out 0 87935 bytes_in 0 87935 station_ip 83.122.207.122 87935 port 21 87935 unique_id port 87935 remote_ip 10.8.0.6 87937 username aminvpn 87937 mac 87937 bytes_out 0 87937 bytes_in 0 87937 station_ip 83.123.118.48 87937 port 22 87937 unique_id port 87937 remote_ip 10.8.0.6 87941 username aminvpn 87941 mac 87941 bytes_out 10064 87941 bytes_in 12334 87941 station_ip 83.123.118.48 87941 port 22 87941 unique_id port 87941 remote_ip 10.8.0.6 87944 username aminvpn 87944 mac 87944 bytes_out 0 87944 bytes_in 0 87944 station_ip 83.122.207.122 87944 port 21 87944 unique_id port 87944 remote_ip 10.8.0.6 87950 username aminvpn 87950 mac 87950 bytes_out 0 87950 bytes_in 0 87950 station_ip 83.123.118.48 87950 port 22 87950 unique_id port 87950 remote_ip 10.8.0.6 87952 username caferibar 87952 unique_id port 87952 terminate_cause Lost-Carrier 87952 bytes_out 1582837 87952 bytes_in 16475626 87952 station_ip 5.121.229.215 87952 port 15728867 87952 nas_port_type Virtual 87952 remote_ip 5.5.5.154 87957 username aminvpn 87957 mac 87900 bytes_out 0 87900 bytes_in 0 87900 station_ip 83.123.118.48 87900 port 22 87900 unique_id port 87900 remote_ip 10.8.0.6 87904 username aminvpn 87904 mac 87904 bytes_out 0 87904 bytes_in 0 87904 station_ip 83.123.118.48 87904 port 22 87904 unique_id port 87904 remote_ip 10.8.0.6 87906 username shokokian 87906 unique_id port 87906 terminate_cause Lost-Carrier 87906 bytes_out 118173 87906 bytes_in 1086591 87906 station_ip 31.56.155.55 87906 port 15728855 87906 nas_port_type Virtual 87906 remote_ip 5.5.5.199 87916 username aminvpn 87916 mac 87916 bytes_out 0 87916 bytes_in 0 87916 station_ip 83.123.118.48 87916 port 22 87916 unique_id port 87916 remote_ip 10.8.0.6 87917 username aminvpn 87917 mac 87917 bytes_out 0 87917 bytes_in 0 87917 station_ip 83.122.207.122 87917 port 21 87917 unique_id port 87917 remote_ip 10.8.0.6 87919 username aminvpn 87919 mac 87919 bytes_out 0 87919 bytes_in 0 87919 station_ip 83.122.207.122 87919 port 21 87919 unique_id port 87919 remote_ip 10.8.0.6 87921 username aminvpn 87921 mac 87921 bytes_out 0 87921 bytes_in 0 87921 station_ip 83.123.118.48 87921 port 22 87921 unique_id port 87921 remote_ip 10.8.0.6 87926 username aminvpn 87926 mac 87926 bytes_out 0 87926 bytes_in 0 87926 station_ip 83.123.118.48 87926 port 22 87926 unique_id port 87926 remote_ip 10.8.0.6 87928 username caferibar 87928 unique_id port 87928 terminate_cause User-Request 87928 bytes_out 0 87928 bytes_in 0 87928 station_ip 5.121.229.215 87928 port 15728866 87928 nas_port_type Virtual 87928 remote_ip 5.5.5.154 87930 username aminvpn 87930 mac 87930 bytes_out 0 87930 bytes_in 0 87930 station_ip 83.123.118.48 87930 port 22 87930 unique_id port 87930 remote_ip 10.8.0.6 87933 username aminvpn 87933 mac 87933 bytes_out 0 87933 bytes_in 0 87933 station_ip 83.122.207.122 87933 port 21 87933 unique_id port 87933 remote_ip 10.8.0.6 87934 username aminvpn 87934 mac 87934 bytes_out 0 87934 bytes_in 0 87934 station_ip 83.123.118.48 87934 port 22 87934 unique_id port 87934 remote_ip 10.8.0.6 87938 username aminvpn 87938 mac 87938 bytes_out 0 87938 bytes_in 0 87938 station_ip 83.122.207.122 87938 port 21 87938 unique_id port 87938 remote_ip 10.8.0.6 87949 username aminvpn 87949 mac 87949 bytes_out 0 87949 bytes_in 0 87949 station_ip 83.122.207.122 87949 port 21 87949 unique_id port 87949 remote_ip 10.8.0.6 87954 username aminvpn 87954 mac 87954 bytes_out 0 87954 bytes_in 0 87954 station_ip 83.122.207.122 87954 port 21 87954 unique_id port 87954 remote_ip 10.8.0.6 87958 username aminvpn 87958 mac 87958 bytes_out 0 87958 bytes_in 0 87958 station_ip 83.122.129.206 87958 port 21 87958 unique_id port 87958 remote_ip 10.8.0.6 87961 username aminvpn 87961 mac 87961 bytes_out 0 87961 bytes_in 0 87961 station_ip 83.123.118.48 87961 port 22 87961 unique_id port 87961 remote_ip 10.8.0.6 87965 username alinezhad 87965 unique_id port 87965 terminate_cause User-Request 87965 bytes_out 0 87965 bytes_in 0 87965 station_ip 5.202.7.103 87965 port 15728875 87965 nas_port_type Virtual 87965 remote_ip 5.5.5.202 87969 username caferibar 87969 unique_id port 87969 terminate_cause Lost-Carrier 87969 bytes_out 1882136 87969 bytes_in 38954511 87969 station_ip 89.32.102.243 87969 port 15728861 87969 nas_port_type Virtual 87969 remote_ip 5.5.5.156 87948 port 22 87948 unique_id port 87948 remote_ip 10.8.0.6 87951 username aminvpn 87951 mac 87951 bytes_out 0 87951 bytes_in 0 87951 station_ip 83.122.207.122 87951 port 21 87951 unique_id port 87951 remote_ip 10.8.0.6 87953 username aminvpn 87953 mac 87953 bytes_out 0 87953 bytes_in 0 87953 station_ip 83.123.118.48 87953 port 22 87953 unique_id port 87953 remote_ip 10.8.0.6 87956 username aminvpn 87956 mac 87956 bytes_out 0 87956 bytes_in 0 87956 station_ip 83.122.129.206 87956 port 21 87956 unique_id port 87956 remote_ip 10.8.0.6 87963 username forozande 87963 unique_id port 87963 terminate_cause User-Request 87963 bytes_out 35894 87963 bytes_in 222089 87963 station_ip 83.123.181.174 87963 port 15728874 87963 nas_port_type Virtual 87963 remote_ip 5.5.5.149 87968 username caferibar 87968 unique_id port 87968 terminate_cause User-Request 87968 bytes_out 310154 87968 bytes_in 6428403 87968 station_ip 151.238.250.170 87968 port 15728871 87968 nas_port_type Virtual 87968 remote_ip 5.5.5.168 87971 username aminvpn 87971 mac 87971 bytes_out 0 87971 bytes_in 0 87971 station_ip 83.122.238.69 87971 port 22 87971 unique_id port 87971 remote_ip 10.8.0.6 87973 username aminvpn 87973 mac 87973 bytes_out 9700 87973 bytes_in 14283 87973 station_ip 83.122.238.69 87973 port 22 87973 unique_id port 87973 remote_ip 10.8.0.6 87978 username aminvpn 87978 mac 87978 bytes_out 0 87978 bytes_in 0 87978 station_ip 83.123.118.48 87978 port 21 87978 unique_id port 87978 remote_ip 10.8.0.6 87994 username alinezhad 87994 unique_id port 87994 terminate_cause User-Request 87994 bytes_out 0 87994 bytes_in 0 87994 station_ip 5.202.7.103 87994 port 15728893 87994 nas_port_type Virtual 87994 remote_ip 5.5.5.202 87997 username madadi 87997 unique_id port 87997 terminate_cause Lost-Carrier 87997 bytes_out 241455 87997 bytes_in 1366562 87997 station_ip 5.119.252.11 87997 port 15728879 87997 nas_port_type Virtual 87997 remote_ip 5.5.5.148 88005 username farhad 88005 unique_id port 88005 terminate_cause User-Request 88005 bytes_out 0 88005 bytes_in 0 88005 station_ip 5.119.108.90 88005 port 15728904 88005 nas_port_type Virtual 88005 remote_ip 5.5.5.142 88009 username madadi 88009 unique_id port 88009 terminate_cause Lost-Carrier 88009 bytes_out 169903 88009 bytes_in 350314 88009 station_ip 5.120.160.171 88009 port 15728890 88009 nas_port_type Virtual 88009 remote_ip 5.5.5.146 88018 username aminvpn 88018 mac 88018 bytes_out 0 88018 bytes_in 0 88018 station_ip 83.123.118.48 88018 port 35 88018 unique_id port 88018 remote_ip 10.8.1.10 88021 username aminvpn 88021 mac 88021 bytes_out 224238 88021 bytes_in 864128 88021 station_ip 83.123.235.139 88021 port 21 88021 unique_id port 88021 remote_ip 10.8.0.6 88023 username asadi 88023 unique_id port 88023 terminate_cause User-Request 88023 bytes_out 34990 88023 bytes_in 117217 88023 station_ip 37.129.193.123 88023 port 15728922 88023 nas_port_type Virtual 88023 remote_ip 5.5.5.183 88025 username madadi 88025 unique_id port 88025 terminate_cause Lost-Carrier 88025 bytes_out 1061194 88025 bytes_in 6911119 88025 station_ip 5.119.35.228 88025 port 15728915 88025 nas_port_type Virtual 88025 remote_ip 5.5.5.140 88027 username mammad 88027 unique_id port 88027 terminate_cause Lost-Carrier 88027 bytes_out 426063 88027 bytes_in 9995077 88027 station_ip 78.39.26.94 88027 port 15728926 88027 nas_port_type Virtual 88027 remote_ip 5.5.5.134 88033 username alinezhad 88033 unique_id port 87957 bytes_out 21000 87957 bytes_in 17702 87957 station_ip 83.123.118.48 87957 port 22 87957 unique_id port 87957 remote_ip 10.8.0.6 87960 username aminvpn 87960 mac 87960 bytes_out 0 87960 bytes_in 0 87960 station_ip 83.122.129.206 87960 port 21 87960 unique_id port 87960 remote_ip 10.8.0.6 87966 username aminvpn 87966 mac 87966 bytes_out 0 87966 bytes_in 0 87966 station_ip 83.123.118.48 87966 port 22 87966 unique_id port 87966 remote_ip 10.8.0.6 87970 username aminvpn 87970 mac 87970 bytes_out 2284 87970 bytes_in 8217 87970 station_ip 83.123.118.48 87970 port 21 87970 unique_id port 87970 remote_ip 10.8.0.6 87974 username aminvpn 87974 mac 87974 bytes_out 0 87974 bytes_in 0 87974 station_ip 83.123.118.48 87974 port 21 87974 unique_id port 87974 remote_ip 10.8.0.6 87975 username zamanialireza 87975 unique_id port 87975 terminate_cause User-Request 87975 bytes_out 727521 87975 bytes_in 13840237 87975 station_ip 5.62.216.200 87975 port 15728870 87975 nas_port_type Virtual 87975 remote_ip 5.5.5.152 87977 username aminvpn 87977 mac 87977 bytes_out 29850 87977 bytes_in 29000 87977 station_ip 83.122.238.69 87977 port 22 87977 unique_id port 87977 remote_ip 10.8.0.6 87984 username forozande 87984 unique_id port 87984 terminate_cause User-Request 87984 bytes_out 53819 87984 bytes_in 558060 87984 station_ip 83.123.181.174 87984 port 15728884 87984 nas_port_type Virtual 87984 remote_ip 5.5.5.149 87985 username heydari 87985 unique_id port 87985 terminate_cause User-Request 87985 bytes_out 268362 87985 bytes_in 8074671 87985 station_ip 5.119.11.246 87985 port 15728883 87985 nas_port_type Virtual 87985 remote_ip 5.5.5.251 87988 username caferibar 87988 kill_reason Maximum check online fails reached 87988 unique_id port 87988 bytes_out 601135 87988 bytes_in 688202 87988 station_ip 151.238.250.170 87988 port 15728877 87988 nas_port_type Virtual 87988 remote_ip 5.5.5.168 87991 username asadi 87991 unique_id port 87991 terminate_cause User-Request 87991 bytes_out 56944 87991 bytes_in 554019 87991 station_ip 37.129.193.123 87991 port 15728889 87991 nas_port_type Virtual 87991 remote_ip 5.5.5.183 87995 username mammad 87995 unique_id port 87995 terminate_cause User-Request 87995 bytes_out 148035 87995 bytes_in 747867 87995 station_ip 83.122.238.69 87995 port 15728892 87995 nas_port_type Virtual 87995 remote_ip 5.5.5.147 87996 username farhad 87996 kill_reason Wrong password 87996 unique_id port 87996 bytes_out 0 87996 bytes_in 0 87996 station_ip 5.119.165.105 87996 port 15728894 87996 nas_port_type Virtual 88000 username farhad 88000 unique_id port 88000 terminate_cause User-Request 88000 bytes_out 0 88000 bytes_in 0 88000 station_ip 5.119.165.105 88000 port 15728899 88000 nas_port_type Virtual 88000 remote_ip 5.5.5.145 88001 username farhad 88001 unique_id port 88001 terminate_cause User-Request 88001 bytes_out 0 88001 bytes_in 0 88001 station_ip 5.119.165.105 88001 port 15728900 88001 nas_port_type Virtual 88001 remote_ip 5.5.5.145 88003 username ahmadipour 88003 unique_id port 88003 terminate_cause Lost-Carrier 88003 bytes_out 12393 88003 bytes_in 30892 88003 station_ip 5.120.35.8 88003 port 15728901 88003 nas_port_type Virtual 88003 remote_ip 5.5.5.144 88006 username farhad 88006 unique_id port 88006 terminate_cause User-Request 88006 bytes_out 0 88006 bytes_in 0 88006 station_ip 5.119.108.90 88006 port 15728905 88006 nas_port_type Virtual 88006 remote_ip 5.5.5.142 88007 username farhad 88007 unique_id port 88007 terminate_cause User-Request 88007 bytes_out 0 87964 unique_id port 87964 terminate_cause Lost-Carrier 87964 bytes_out 940911 87964 bytes_in 6311677 87964 station_ip 37.129.161.32 87964 port 15728872 87964 nas_port_type Virtual 87964 remote_ip 5.5.5.151 87967 username aminvpn 87967 mac 87967 bytes_out 0 87967 bytes_in 0 87967 station_ip 83.122.238.69 87967 port 21 87967 unique_id port 87967 remote_ip 10.8.0.6 87972 username aminvpn 87972 mac 87972 bytes_out 0 87972 bytes_in 0 87972 station_ip 83.123.118.48 87972 port 21 87972 unique_id port 87972 remote_ip 10.8.0.6 87980 username aminvpn 87980 mac 87980 bytes_out 0 87980 bytes_in 0 87980 station_ip 83.123.118.48 87980 port 21 87980 unique_id port 87980 remote_ip 10.8.0.6 87982 username forozande 87982 unique_id port 87982 terminate_cause User-Request 87982 bytes_out 77053 87982 bytes_in 1392681 87982 station_ip 83.123.181.174 87982 port 15728881 87982 nas_port_type Virtual 87982 remote_ip 5.5.5.149 87983 username forozande 87983 unique_id port 87983 terminate_cause User-Request 87983 bytes_out 144079 87983 bytes_in 4455354 87983 station_ip 83.123.181.174 87983 port 15728882 87983 nas_port_type Virtual 87983 remote_ip 5.5.5.149 87986 username zamanialireza 87986 unique_id port 87986 terminate_cause User-Request 87986 bytes_out 0 87986 bytes_in 0 87986 station_ip 94.183.213.166 87986 port 15728887 87986 nas_port_type Virtual 87986 remote_ip 5.5.5.172 87989 username aminvpn 87989 mac 87989 bytes_out 0 87989 bytes_in 0 87989 station_ip 83.122.238.69 87989 port 22 87989 unique_id port 87989 remote_ip 10.8.0.6 87990 username ksrkrgr 87990 unique_id port 87990 terminate_cause User-Request 87990 bytes_out 1167172 87990 bytes_in 14862711 87990 station_ip 94.176.15.195 87990 port 15728885 87990 nas_port_type Virtual 87990 remote_ip 5.5.5.201 87992 username mammad 87992 unique_id port 87992 terminate_cause User-Request 87992 bytes_out 233439 87992 bytes_in 2574068 87992 station_ip 83.122.238.69 87992 port 15728888 87992 nas_port_type Virtual 87992 remote_ip 5.5.5.147 88002 username asadi 88002 unique_id port 88002 terminate_cause User-Request 88002 bytes_out 101891 88002 bytes_in 2136193 88002 station_ip 37.129.193.123 88002 port 15728898 88002 nas_port_type Virtual 88002 remote_ip 5.5.5.183 88010 username farhad 88010 unique_id port 88010 terminate_cause User-Request 88010 bytes_out 0 88010 bytes_in 0 88010 station_ip 5.119.108.90 88010 port 15728912 88010 nas_port_type Virtual 88010 remote_ip 5.5.5.142 88013 username farhad 88013 unique_id port 88013 terminate_cause Lost-Carrier 88013 bytes_out 182 88013 bytes_in 122527 88013 station_ip 5.119.108.90 88013 port 15728913 88013 nas_port_type Virtual 88013 remote_ip 5.5.5.142 88016 username mahbobeh 88016 unique_id port 88016 terminate_cause Lost-Carrier 88016 bytes_out 579008 88016 bytes_in 4029946 88016 station_ip 113.203.47.187 88016 port 15728858 88016 nas_port_type Virtual 88016 remote_ip 5.5.5.158 88019 username shahnaz 88019 unique_id port 88019 terminate_cause User-Request 88019 bytes_out 1185219 88019 bytes_in 38190875 88019 station_ip 5.120.58.27 88019 port 15728918 88019 nas_port_type Virtual 88019 remote_ip 5.5.5.241 88022 username asadi 88022 unique_id port 88022 terminate_cause User-Request 88022 bytes_out 59961 88022 bytes_in 807102 88022 station_ip 37.129.193.123 88022 port 15728921 88022 nas_port_type Virtual 88022 remote_ip 5.5.5.183 88026 username madadi 88026 unique_id port 88026 terminate_cause Lost-Carrier 88026 bytes_out 85283 88026 bytes_in 381381 88026 station_ip 5.120.66.184 88026 port 15728925 87976 username forozande 87976 unique_id port 87976 terminate_cause User-Request 87976 bytes_out 64754 87976 bytes_in 579091 87976 station_ip 83.123.181.174 87976 port 15728878 87976 nas_port_type Virtual 87976 remote_ip 5.5.5.149 87979 username aminvpn 87979 mac 87979 bytes_out 0 87979 bytes_in 0 87979 station_ip 83.122.238.69 87979 port 22 87979 unique_id port 87979 remote_ip 10.8.0.6 87981 username asadi 87981 unique_id port 87981 terminate_cause User-Request 87981 bytes_out 65582 87981 bytes_in 764687 87981 station_ip 37.129.193.123 87981 port 15728880 87981 nas_port_type Virtual 87981 remote_ip 5.5.5.183 87987 username asadi 87987 unique_id port 87987 terminate_cause User-Request 87987 bytes_out 176261 87987 bytes_in 4177736 87987 station_ip 37.129.193.123 87987 port 15728886 87987 nas_port_type Virtual 87987 remote_ip 5.5.5.183 87993 username mammad 87993 unique_id port 87993 terminate_cause User-Request 87993 bytes_out 14648 87993 bytes_in 29298 87993 station_ip 83.122.238.69 87993 port 15728891 87993 nas_port_type Virtual 87993 remote_ip 5.5.5.147 87998 username farhad 87998 kill_reason Wrong password 87998 unique_id port 87998 bytes_out 0 87998 bytes_in 0 87998 station_ip 5.119.165.105 87998 port 15728896 87998 nas_port_type Virtual 87999 username caferibar 87999 unique_id port 87999 terminate_cause User-Request 87999 bytes_out 0 87999 bytes_in 0 87999 station_ip 151.238.250.170 87999 port 15728897 87999 nas_port_type Virtual 87999 remote_ip 5.5.5.168 88004 username asadi 88004 unique_id port 88004 terminate_cause User-Request 88004 bytes_out 299289 88004 bytes_in 8735875 88004 station_ip 37.129.193.123 88004 port 15728903 88004 nas_port_type Virtual 88004 remote_ip 5.5.5.183 88008 username farhad 88008 unique_id port 88008 terminate_cause User-Request 88008 bytes_out 0 88008 bytes_in 0 88008 station_ip 5.119.108.90 88008 port 15728908 88008 nas_port_type Virtual 88008 remote_ip 5.5.5.142 88011 username madadi 88011 unique_id port 88011 terminate_cause Lost-Carrier 88011 bytes_out 29011 88011 bytes_in 184822 88011 station_ip 5.120.163.93 88011 port 15728902 88011 nas_port_type Virtual 88011 remote_ip 5.5.5.143 88012 username ahmadi 88012 unique_id port 88012 terminate_cause User-Request 88012 bytes_out 48927 88012 bytes_in 837192 88012 station_ip 83.122.191.108 88012 port 15728916 88012 nas_port_type Virtual 88012 remote_ip 5.5.5.139 88014 username ahmadipour 88014 unique_id port 88014 terminate_cause Lost-Carrier 88014 bytes_out 44298 88014 bytes_in 40671 88014 station_ip 37.129.204.12 88014 port 15728917 88014 nas_port_type Virtual 88014 remote_ip 5.5.5.138 88017 username jamali 88017 unique_id port 88017 terminate_cause Lost-Carrier 88017 bytes_out 25803074 88017 bytes_in 289609470 88017 station_ip 5.119.94.172 88017 port 15728873 88017 nas_port_type Virtual 88017 remote_ip 5.5.5.150 88020 username shokokian 88020 unique_id port 88020 terminate_cause Lost-Carrier 88020 bytes_out 101751 88020 bytes_in 570513 88020 station_ip 31.56.223.158 88020 port 15728920 88020 nas_port_type Virtual 88020 remote_ip 5.5.5.137 88032 username aminvpn 88032 unique_id port 88032 terminate_cause Lost-Carrier 88032 bytes_out 3052314 88032 bytes_in 69244321 88032 station_ip 5.119.186.98 88032 port 15728931 88032 nas_port_type Virtual 88032 remote_ip 5.5.5.130 88034 username mammad 88034 unique_id port 88034 terminate_cause User-Request 88034 bytes_out 9422748 88034 bytes_in 184495993 88034 station_ip 5.233.65.129 88034 port 15728929 88034 nas_port_type Virtual 88034 remote_ip 5.5.5.131 88038 username caferibar 88038 unique_id port 88007 bytes_in 0 88007 station_ip 5.119.108.90 88007 port 15728906 88007 nas_port_type Virtual 88007 remote_ip 5.5.5.142 88015 username alinezhad 88015 unique_id port 88015 terminate_cause User-Request 88015 bytes_out 0 88015 bytes_in 0 88015 station_ip 5.202.7.103 88015 port 15728919 88015 nas_port_type Virtual 88015 remote_ip 5.5.5.202 88024 username alinezhad 88024 unique_id port 88024 terminate_cause User-Request 88024 bytes_out 0 88024 bytes_in 0 88024 station_ip 83.122.202.147 88024 port 15728923 88024 nas_port_type Virtual 88024 remote_ip 5.5.5.136 88028 username madadi 88028 unique_id port 88028 terminate_cause Lost-Carrier 88028 bytes_out 73902 88028 bytes_in 443838 88028 station_ip 5.119.231.83 88028 port 15728927 88028 nas_port_type Virtual 88028 remote_ip 5.5.5.133 88029 username mammad 88029 unique_id port 88029 terminate_cause Lost-Carrier 88029 bytes_out 919766 88029 bytes_in 9186144 88029 station_ip 78.39.27.250 88029 port 15728928 88029 nas_port_type Virtual 88029 remote_ip 5.5.5.132 88030 username alinezhad 88030 unique_id port 88030 terminate_cause User-Request 88030 bytes_out 0 88030 bytes_in 0 88030 station_ip 83.122.202.147 88030 port 15728930 88030 nas_port_type Virtual 88030 remote_ip 5.5.5.136 88036 username madadi 88036 unique_id port 88036 terminate_cause Lost-Carrier 88036 bytes_out 243471 88036 bytes_in 575096 88036 station_ip 5.119.78.8 88036 port 15728935 88036 nas_port_type Virtual 88036 remote_ip 5.5.5.127 88042 username zamanialireza 88042 unique_id port 88042 terminate_cause Lost-Carrier 88042 bytes_out 254507 88042 bytes_in 3056337 88042 station_ip 5.160.114.11 88042 port 15728941 88042 nas_port_type Virtual 88042 remote_ip 5.5.5.123 88044 username farhad 88044 unique_id port 88044 terminate_cause Lost-Carrier 88044 bytes_out 6079994 88044 bytes_in 101033683 88044 station_ip 5.119.83.8 88044 port 15728939 88044 nas_port_type Virtual 88044 remote_ip 5.5.5.124 88050 username mahbobeh 88050 unique_id port 88050 terminate_cause Lost-Carrier 88050 bytes_out 5303476 88050 bytes_in 79378228 88050 station_ip 113.203.47.187 88050 port 15728924 88050 nas_port_type Virtual 88050 remote_ip 5.5.5.158 88051 username majid 88051 unique_id port 88051 terminate_cause User-Request 88051 bytes_out 5004044 88051 bytes_in 155773973 88051 station_ip 86.57.75.109 88051 port 15728949 88051 nas_port_type Virtual 88051 remote_ip 5.5.5.118 88056 username mahbobeh 88056 unique_id port 88056 terminate_cause Admin-Reboot 88056 bytes_out 1618946 88056 bytes_in 31278969 88056 station_ip 113.203.47.187 88056 port 15728950 88056 nas_port_type Virtual 88056 remote_ip 5.5.5.158 88057 username alinezhad 88057 unique_id port 88057 terminate_cause User-Request 88057 bytes_out 0 88057 bytes_in 0 88057 station_ip 83.122.203.37 88057 port 15728641 88057 nas_port_type Virtual 88057 remote_ip 5.5.5.254 88061 username asadi 88061 unique_id port 88061 terminate_cause User-Request 88061 bytes_out 289997 88061 bytes_in 14050117 88061 station_ip 83.122.100.204 88061 port 15728645 88061 nas_port_type Virtual 88061 remote_ip 5.5.5.253 88064 username asadi 88064 unique_id port 88064 terminate_cause User-Request 88064 bytes_out 250013 88064 bytes_in 7363420 88064 station_ip 83.122.100.204 88064 port 15728648 88064 nas_port_type Virtual 88064 remote_ip 5.5.5.253 88069 username asadi 88069 unique_id port 88069 terminate_cause User-Request 88069 bytes_out 131660 88069 bytes_in 3623480 88069 station_ip 83.122.100.204 88069 port 15728653 88069 nas_port_type Virtual 88069 remote_ip 5.5.5.253 88072 username forozande 88072 unique_id port 88072 terminate_cause User-Request 88026 nas_port_type Virtual 88026 remote_ip 5.5.5.135 88031 username farhad 88031 unique_id port 88031 terminate_cause Lost-Carrier 88031 bytes_out 11748765 88031 bytes_in 222803781 88031 station_ip 5.119.181.95 88031 port 15728914 88031 nas_port_type Virtual 88031 remote_ip 5.5.5.141 88037 username mammad 88037 unique_id port 88037 terminate_cause User-Request 88037 bytes_out 5210935 88037 bytes_in 140856015 88037 station_ip 5.233.65.129 88037 port 15728936 88037 nas_port_type Virtual 88037 remote_ip 5.5.5.131 88039 username farhad 88039 unique_id port 88039 terminate_cause User-Request 88039 bytes_out 3878093 88039 bytes_in 74299604 88039 station_ip 5.119.220.60 88039 port 15728937 88039 nas_port_type Virtual 88039 remote_ip 5.5.5.126 88045 username caferibar 88045 unique_id port 88045 terminate_cause Lost-Carrier 88045 bytes_out 2321935 88045 bytes_in 59679473 88045 station_ip 5.134.143.253 88045 port 15728943 88045 nas_port_type Virtual 88045 remote_ip 5.5.5.121 88046 username caferibar 88046 unique_id port 88046 terminate_cause Lost-Carrier 88046 bytes_out 251235 88046 bytes_in 4044761 88046 station_ip 5.134.159.217 88046 port 15728945 88046 nas_port_type Virtual 88046 remote_ip 5.5.5.119 88049 username heydari 88049 unique_id port 88049 terminate_cause User-Request 88049 bytes_out 391402 88049 bytes_in 4720576 88049 station_ip 5.119.11.246 88049 port 15728895 88049 nas_port_type Virtual 88049 remote_ip 5.5.5.251 88052 username alinezhad 88052 unique_id port 88052 terminate_cause User-Request 88052 bytes_out 0 88052 bytes_in 0 88052 station_ip 83.123.187.88 88052 port 15728954 88052 nas_port_type Virtual 88052 remote_ip 5.5.5.117 88058 username asadi 88058 unique_id port 88058 terminate_cause User-Request 88058 bytes_out 206437 88058 bytes_in 1821919 88058 station_ip 83.122.100.204 88058 port 15728642 88058 nas_port_type Virtual 88058 remote_ip 5.5.5.253 88059 username asadi 88059 unique_id port 88059 terminate_cause User-Request 88059 bytes_out 332146 88059 bytes_in 11824437 88059 station_ip 83.122.100.204 88059 port 15728643 88059 nas_port_type Virtual 88059 remote_ip 5.5.5.253 88066 username asadi 88066 unique_id port 88066 terminate_cause User-Request 88066 bytes_out 197090 88066 bytes_in 3149589 88066 station_ip 83.122.100.204 88066 port 15728650 88066 nas_port_type Virtual 88066 remote_ip 5.5.5.253 88071 username shokokian 88071 unique_id port 88071 terminate_cause User-Request 88071 bytes_out 53268 88071 bytes_in 145224 88071 station_ip 31.56.115.194 88071 port 15728656 88071 nas_port_type Virtual 88071 remote_ip 5.5.5.247 88075 username asadi 88075 unique_id port 88075 terminate_cause User-Request 88075 bytes_out 29526 88075 bytes_in 317759 88075 station_ip 83.122.100.204 88075 port 15728661 88075 nas_port_type Virtual 88075 remote_ip 5.5.5.253 88078 username ahmadipour 88078 unique_id port 88078 terminate_cause Lost-Carrier 88078 bytes_out 765408 88078 bytes_in 8839824 88078 station_ip 37.129.157.224 88078 port 15728654 88078 nas_port_type Virtual 88078 remote_ip 5.5.5.248 88084 username musanejad 88084 unique_id port 88084 terminate_cause Lost-Carrier 88084 bytes_out 170168 88084 bytes_in 1662518 88084 station_ip 5.119.35.98 88084 port 15728667 88084 nas_port_type Virtual 88084 remote_ip 5.5.5.239 88085 username madadi 88085 unique_id port 88085 terminate_cause Lost-Carrier 88085 bytes_out 109051 88085 bytes_in 918875 88085 station_ip 5.119.243.235 88085 port 15728668 88085 nas_port_type Virtual 88085 remote_ip 5.5.5.238 88087 username musanejad 88087 unique_id port 88087 terminate_cause User-Request 88087 bytes_out 0 88087 bytes_in 0 88033 terminate_cause User-Request 88033 bytes_out 177402 88033 bytes_in 510124 88033 station_ip 37.129.131.43 88033 port 15728933 88033 nas_port_type Virtual 88033 remote_ip 5.5.5.129 88035 username sobhan 88035 unique_id port 88035 terminate_cause User-Request 88035 bytes_out 1463420 88035 bytes_in 29664220 88035 station_ip 5.119.188.179 88035 port 15728934 88035 nas_port_type Virtual 88035 remote_ip 5.5.5.128 88043 username zamanialireza 88043 unique_id port 88043 terminate_cause User-Request 88043 bytes_out 6980075 88043 bytes_in 169895161 88043 station_ip 5.160.114.11 88043 port 15728942 88043 nas_port_type Virtual 88043 remote_ip 5.5.5.122 88048 username farhad 88048 unique_id port 88048 terminate_cause Lost-Carrier 88048 bytes_out 10463057 88048 bytes_in 27404986 88048 station_ip 5.119.93.81 88048 port 15728944 88048 nas_port_type Virtual 88048 remote_ip 5.5.5.120 88053 username asadi 88053 unique_id port 88053 terminate_cause User-Request 88053 bytes_out 144238 88053 bytes_in 2257962 88053 station_ip 83.122.100.204 88053 port 15728955 88053 nas_port_type Virtual 88053 remote_ip 5.5.5.116 88055 username ahmadi 88055 unique_id port 88055 terminate_cause User-Request 88055 bytes_out 0 88055 bytes_in 0 88055 station_ip 83.122.171.176 88055 port 15728957 88055 nas_port_type Virtual 88055 remote_ip 5.5.5.115 88060 username alinezhad 88060 unique_id port 88060 terminate_cause User-Request 88060 bytes_out 20383 88060 bytes_in 38718 88060 station_ip 37.129.13.200 88060 port 15728644 88060 nas_port_type Virtual 88060 remote_ip 5.5.5.252 88067 username forozande 88067 unique_id port 88067 terminate_cause User-Request 88067 bytes_out 67763 88067 bytes_in 312795 88067 station_ip 37.129.86.141 88067 port 15728651 88067 nas_port_type Virtual 88067 remote_ip 5.5.5.250 88070 username shokokian 88070 unique_id port 88070 terminate_cause User-Request 88070 bytes_out 0 88070 bytes_in 0 88070 station_ip 31.56.115.194 88070 port 15728655 88070 nas_port_type Virtual 88070 remote_ip 5.5.5.247 88077 username aminvpn 88077 mac 88077 bytes_out 0 88077 bytes_in 0 88077 station_ip 37.129.119.122 88077 port 21 88077 unique_id port 88077 remote_ip 10.8.0.6 88081 username sobhan 88081 unique_id port 88081 terminate_cause User-Request 88081 bytes_out 2520475 88081 bytes_in 6896327 88081 station_ip 31.59.45.15 88081 port 15728659 88081 nas_port_type Virtual 88081 remote_ip 5.5.5.244 88086 username aminvpn 88086 mac 88086 bytes_out 0 88086 bytes_in 0 88086 station_ip 37.129.119.122 88086 port 35 88086 unique_id port 88086 remote_ip 10.8.1.10 88088 username aminvpn 88088 mac 88088 bytes_out 27655 88088 bytes_in 36105 88088 station_ip 37.129.119.122 88088 port 35 88088 unique_id port 88088 remote_ip 10.8.1.10 88092 username musanejad 88092 unique_id port 88092 terminate_cause User-Request 88092 bytes_out 606835 88092 bytes_in 5352918 88092 station_ip 5.120.84.48 88092 port 15728673 88092 nas_port_type Virtual 88092 remote_ip 5.5.5.235 88094 username madadi 88094 unique_id port 88094 terminate_cause Lost-Carrier 88094 bytes_out 163473 88094 bytes_in 473738 88094 station_ip 5.119.154.57 88094 port 15728676 88094 nas_port_type Virtual 88094 remote_ip 5.5.5.232 88095 username avaanna 88095 unique_id port 88095 terminate_cause User-Request 88095 bytes_out 49948 88095 bytes_in 666828 88095 station_ip 113.203.121.100 88095 port 15728679 88095 nas_port_type Virtual 88095 remote_ip 5.5.5.240 88098 username avaanna 88098 unique_id port 88098 terminate_cause User-Request 88098 bytes_out 105732 88098 bytes_in 2787411 88098 station_ip 113.203.121.100 88038 terminate_cause Lost-Carrier 88038 bytes_out 11180513 88038 bytes_in 202167769 88038 station_ip 151.238.250.170 88038 port 15728932 88038 nas_port_type Virtual 88038 remote_ip 5.5.5.168 88040 username mammad 88040 unique_id port 88040 terminate_cause User-Request 88040 bytes_out 293935 88040 bytes_in 5803672 88040 station_ip 5.233.65.129 88040 port 15728940 88040 nas_port_type Virtual 88040 remote_ip 5.5.5.131 88041 username zamanialireza 88041 unique_id port 88041 terminate_cause Lost-Carrier 88041 bytes_out 566667 88041 bytes_in 7651561 88041 station_ip 5.160.115.41 88041 port 15728938 88041 nas_port_type Virtual 88041 remote_ip 5.5.5.125 88047 username mammad 88047 unique_id port 88047 terminate_cause User-Request 88047 bytes_out 730117 88047 bytes_in 12137985 88047 station_ip 5.233.65.129 88047 port 15728948 88047 nas_port_type Virtual 88047 remote_ip 5.5.5.131 88054 username asadi 88054 unique_id port 88054 terminate_cause User-Request 88054 bytes_out 223086 88054 bytes_in 3173554 88054 station_ip 83.122.100.204 88054 port 15728956 88054 nas_port_type Virtual 88054 remote_ip 5.5.5.116 88062 username forozande 88062 unique_id port 88062 terminate_cause User-Request 88062 bytes_out 196812 88062 bytes_in 427795 88062 station_ip 83.123.210.128 88062 port 15728646 88062 nas_port_type Virtual 88062 remote_ip 5.5.5.251 88063 username asadi 88063 unique_id port 88063 terminate_cause User-Request 88063 bytes_out 266139 88063 bytes_in 5772184 88063 station_ip 83.122.100.204 88063 port 15728647 88063 nas_port_type Virtual 88063 remote_ip 5.5.5.253 88065 username asadi 88065 unique_id port 88065 terminate_cause User-Request 88065 bytes_out 348859 88065 bytes_in 9367669 88065 station_ip 83.122.100.204 88065 port 15728649 88065 nas_port_type Virtual 88065 remote_ip 5.5.5.253 88068 username alinezhad 88068 unique_id port 88068 terminate_cause User-Request 88068 bytes_out 0 88068 bytes_in 0 88068 station_ip 83.122.181.36 88068 port 15728652 88068 nas_port_type Virtual 88068 remote_ip 5.5.5.249 88073 username madadi 88073 unique_id port 88073 terminate_cause Lost-Carrier 88073 bytes_out 1088787 88073 bytes_in 3223438 88073 station_ip 5.119.84.63 88073 port 15728640 88073 nas_port_type Virtual 88073 remote_ip 5.5.5.255 88083 username forozande 88083 unique_id port 88083 terminate_cause User-Request 88083 bytes_out 137917 88083 bytes_in 345194 88083 station_ip 37.129.85.214 88083 port 15728670 88083 nas_port_type Virtual 88083 remote_ip 5.5.5.236 88090 username ahmadipour 88090 unique_id port 88090 terminate_cause Lost-Carrier 88090 bytes_out 245003 88090 bytes_in 3641730 88090 station_ip 37.129.157.224 88090 port 15728664 88090 nas_port_type Virtual 88090 remote_ip 5.5.5.248 88101 username aminvpn 88101 mac 88101 bytes_out 0 88101 bytes_in 0 88101 station_ip 83.123.70.199 88101 port 21 88101 unique_id port 88101 remote_ip 10.8.0.6 88108 username aminvpn 88108 mac 88108 bytes_out 0 88108 bytes_in 0 88108 station_ip 83.123.70.199 88108 port 21 88108 unique_id port 88108 remote_ip 10.8.0.6 88109 username aminvpn 88109 mac 88109 bytes_out 0 88109 bytes_in 0 88109 station_ip 37.129.119.122 88109 port 22 88109 unique_id port 88109 remote_ip 10.8.0.6 88112 username aminvpn 88112 mac 88112 bytes_out 0 88112 bytes_in 0 88112 station_ip 83.123.70.199 88112 port 21 88112 unique_id port 88112 remote_ip 10.8.0.6 88117 username aminvpn 88117 mac 88117 bytes_out 0 88117 bytes_in 0 88117 station_ip 37.129.119.122 88117 port 22 88117 unique_id port 88117 remote_ip 10.8.0.6 88072 bytes_out 62302 88072 bytes_in 326998 88072 station_ip 83.123.104.248 88072 port 15728658 88072 nas_port_type Virtual 88072 remote_ip 5.5.5.245 88074 username madadi 88074 unique_id port 88074 terminate_cause Lost-Carrier 88074 bytes_out 13939 88074 bytes_in 131248 88074 station_ip 5.119.10.152 88074 port 15728657 88074 nas_port_type Virtual 88074 remote_ip 5.5.5.246 88076 username heydari 88076 unique_id port 88076 terminate_cause User-Request 88076 bytes_out 269874 88076 bytes_in 1434314 88076 station_ip 5.119.11.246 88076 port 15728660 88076 nas_port_type Virtual 88076 remote_ip 5.5.5.243 88079 username avaanna 88079 unique_id port 88079 terminate_cause User-Request 88079 bytes_out 36120 88079 bytes_in 204421 88079 station_ip 113.203.121.100 88079 port 15728665 88079 nas_port_type Virtual 88079 remote_ip 5.5.5.240 88080 username musanejad 88080 unique_id port 88080 terminate_cause User-Request 88080 bytes_out 0 88080 bytes_in 0 88080 station_ip 5.119.35.98 88080 port 15728666 88080 nas_port_type Virtual 88080 remote_ip 5.5.5.239 88082 username aminvpn 88082 unique_id port 88082 terminate_cause User-Request 88082 bytes_out 127127 88082 bytes_in 796477 88082 station_ip 5.119.106.197 88082 port 15728669 88082 nas_port_type Virtual 88082 remote_ip 5.5.5.237 88089 username alinezhad 88089 unique_id port 88089 terminate_cause User-Request 88089 bytes_out 16004 88089 bytes_in 35230 88089 station_ip 83.123.55.54 88089 port 15728674 88089 nas_port_type Virtual 88089 remote_ip 5.5.5.234 88091 username shahnaz 88091 unique_id port 88091 terminate_cause Lost-Carrier 88091 bytes_out 445890 88091 bytes_in 4932276 88091 station_ip 5.120.58.27 88091 port 15728663 88091 nas_port_type Virtual 88091 remote_ip 5.5.5.241 88096 username avaanna 88096 unique_id port 88096 terminate_cause User-Request 88096 bytes_out 131354 88096 bytes_in 2984554 88096 station_ip 113.203.121.100 88096 port 15728680 88096 nas_port_type Virtual 88096 remote_ip 5.5.5.240 88104 username aminvpn 88104 mac 88104 bytes_out 0 88104 bytes_in 0 88104 station_ip 37.129.119.122 88104 port 22 88104 unique_id port 88104 remote_ip 10.8.0.6 88106 username zamanialireza 88106 unique_id port 88106 terminate_cause User-Request 88106 bytes_out 247127 88106 bytes_in 1020678 88106 station_ip 83.123.112.5 88106 port 15728685 88106 nas_port_type Virtual 88106 remote_ip 5.5.5.228 88110 username aminvpn 88110 mac 88110 bytes_out 0 88110 bytes_in 0 88110 station_ip 83.123.70.199 88110 port 21 88110 unique_id port 88110 remote_ip 10.8.0.6 88114 username aminvpn 88114 mac 88114 bytes_out 0 88114 bytes_in 0 88114 station_ip 37.129.119.122 88114 port 22 88114 unique_id port 88114 remote_ip 10.8.0.6 88116 username aminvpn 88116 mac 88116 bytes_out 0 88116 bytes_in 0 88116 station_ip 83.123.70.199 88116 port 21 88116 unique_id port 88116 remote_ip 10.8.0.6 88121 username aminvpn 88121 mac 88121 bytes_out 0 88121 bytes_in 0 88121 station_ip 83.123.70.199 88121 port 21 88121 unique_id port 88121 remote_ip 10.8.0.6 88123 username aminvpn 88123 mac 88123 bytes_out 0 88123 bytes_in 0 88123 station_ip 37.129.119.122 88123 port 22 88123 unique_id port 88123 remote_ip 10.8.0.6 88135 username aminvpn 88135 mac 88135 bytes_out 347067 88135 bytes_in 949886 88135 station_ip 37.129.119.122 88135 port 36 88135 unique_id port 88135 remote_ip 10.8.1.10 88137 username aminvpn 88137 mac 88137 bytes_out 96988 88137 bytes_in 101203 88137 station_ip 83.123.70.199 88137 port 21 88087 station_ip 5.120.84.48 88087 port 15728671 88087 nas_port_type Virtual 88087 remote_ip 5.5.5.235 88093 username madadi 88093 unique_id port 88093 terminate_cause Lost-Carrier 88093 bytes_out 20616 88093 bytes_in 151071 88093 station_ip 5.119.50.197 88093 port 15728675 88093 nas_port_type Virtual 88093 remote_ip 5.5.5.233 88097 username forozande 88097 unique_id port 88097 terminate_cause User-Request 88097 bytes_out 74052 88097 bytes_in 620349 88097 station_ip 83.122.69.143 88097 port 15728681 88097 nas_port_type Virtual 88097 remote_ip 5.5.5.230 88103 username aminvpn 88103 mac 88103 bytes_out 0 88103 bytes_in 0 88103 station_ip 83.123.70.199 88103 port 21 88103 unique_id port 88103 remote_ip 10.8.0.6 88111 username aminvpn 88111 mac 88111 bytes_out 0 88111 bytes_in 0 88111 station_ip 37.129.119.122 88111 port 22 88111 unique_id port 88111 remote_ip 10.8.0.6 88113 username zamanialireza 88113 unique_id port 88113 terminate_cause User-Request 88113 bytes_out 335676 88113 bytes_in 9969439 88113 station_ip 5.160.115.130 88113 port 15728686 88113 nas_port_type Virtual 88113 remote_ip 5.5.5.227 88115 username aminvpn 88115 unique_id port 88115 terminate_cause User-Request 88115 bytes_out 13612372 88115 bytes_in 26606854 88115 station_ip 83.123.70.199 88115 port 15728684 88115 nas_port_type Virtual 88115 remote_ip 5.5.5.229 88128 username aminvpn 88128 mac 88128 bytes_out 264682 88128 bytes_in 418297 88128 station_ip 83.123.70.199 88128 port 21 88128 unique_id port 88128 remote_ip 10.8.0.6 88130 username aminvpn 88130 mac 88130 bytes_out 0 88130 bytes_in 0 88130 station_ip 83.123.70.199 88130 port 21 88130 unique_id port 88130 remote_ip 10.8.0.6 88138 username aminvpn 88138 mac 88138 bytes_out 58015 88138 bytes_in 176388 88138 station_ip 37.129.119.122 88138 port 35 88138 unique_id port 88138 remote_ip 10.8.1.10 88149 username aminvpn 88149 mac 88149 bytes_out 0 88149 bytes_in 0 88149 station_ip 37.129.119.122 88149 port 22 88149 unique_id port 88149 remote_ip 10.8.0.6 88152 username mammad 88152 unique_id port 88152 terminate_cause User-Request 88152 bytes_out 2000650 88152 bytes_in 29643352 88152 station_ip 5.233.65.129 88152 port 15728687 88152 nas_port_type Virtual 88152 remote_ip 5.5.5.226 88158 username aminvpn 88158 mac 88158 bytes_out 196295 88158 bytes_in 355520 88158 station_ip 83.123.70.199 88158 port 21 88158 unique_id port 88158 remote_ip 10.8.0.6 88161 username aminvpn 88161 mac 88161 bytes_out 0 88161 bytes_in 0 88161 station_ip 83.123.70.199 88161 port 21 88161 unique_id port 88161 remote_ip 10.8.0.6 88165 username aminvpn 88165 mac 88165 bytes_out 0 88165 bytes_in 0 88165 station_ip 37.129.119.122 88165 port 22 88165 unique_id port 88165 remote_ip 10.8.0.6 88171 username aminvpn 88171 mac 88171 bytes_out 0 88171 bytes_in 0 88171 station_ip 37.129.119.122 88171 port 22 88171 unique_id port 88171 remote_ip 10.8.0.6 88174 username aminvpn 88174 mac 88174 bytes_out 0 88174 bytes_in 0 88174 station_ip 83.123.70.199 88174 port 21 88174 unique_id port 88174 remote_ip 10.8.0.6 88178 username aminvpn 88178 mac 88178 bytes_out 0 88178 bytes_in 0 88178 station_ip 37.129.119.122 88178 port 22 88178 unique_id port 88178 remote_ip 10.8.0.6 88179 username aminvpn 88179 mac 88179 bytes_out 0 88179 bytes_in 0 88179 station_ip 83.123.70.199 88179 port 21 88179 unique_id port 88098 port 15728682 88098 nas_port_type Virtual 88098 remote_ip 5.5.5.240 88099 username forozande 88099 unique_id port 88099 terminate_cause User-Request 88099 bytes_out 6594 88099 bytes_in 25003 88099 station_ip 83.122.69.143 88099 port 15728683 88099 nas_port_type Virtual 88099 remote_ip 5.5.5.230 88100 username aminvpn 88100 unique_id port 88100 terminate_cause Lost-Carrier 88100 bytes_out 3702569 88100 bytes_in 66026257 88100 station_ip 5.119.19.62 88100 port 15728678 88100 nas_port_type Virtual 88100 remote_ip 5.5.5.231 88102 username aminvpn 88102 mac 88102 bytes_out 0 88102 bytes_in 0 88102 station_ip 37.129.119.122 88102 port 22 88102 unique_id port 88102 remote_ip 10.8.0.6 88105 username aminvpn 88105 mac 88105 bytes_out 0 88105 bytes_in 0 88105 station_ip 83.123.70.199 88105 port 21 88105 unique_id port 88105 remote_ip 10.8.0.6 88107 username aminvpn 88107 mac 88107 bytes_out 0 88107 bytes_in 0 88107 station_ip 37.129.119.122 88107 port 22 88107 unique_id port 88107 remote_ip 10.8.0.6 88118 username aminvpn 88118 mac 88118 bytes_out 0 88118 bytes_in 0 88118 station_ip 83.123.70.199 88118 port 21 88118 unique_id port 88118 remote_ip 10.8.0.6 88120 username aminvpn 88120 mac 88120 bytes_out 0 88120 bytes_in 0 88120 station_ip 37.129.119.122 88120 port 22 88120 unique_id port 88120 remote_ip 10.8.0.6 88126 username aminvpn 88126 mac 88126 bytes_out 0 88126 bytes_in 0 88126 station_ip 83.123.70.199 88126 port 21 88126 unique_id port 88126 remote_ip 10.8.0.6 88133 username madadi 88133 unique_id port 88133 terminate_cause Lost-Carrier 88133 bytes_out 33273 88133 bytes_in 206851 88133 station_ip 5.119.238.88 88133 port 15728689 88133 nas_port_type Virtual 88133 remote_ip 5.5.5.224 88134 username aminvpn 88134 mac 88134 bytes_out 0 88134 bytes_in 0 88134 station_ip 83.123.70.199 88134 port 21 88134 unique_id port 88134 remote_ip 10.8.0.6 88142 username aminvpn 88142 mac 88142 bytes_out 0 88142 bytes_in 0 88142 station_ip 83.123.70.199 88142 port 21 88142 unique_id port 88142 remote_ip 10.8.0.6 88143 username aminvpn 88143 unique_id port 88143 terminate_cause User-Request 88143 bytes_out 137895 88143 bytes_in 481012 88143 station_ip 83.123.70.199 88143 port 15728694 88143 nas_port_type Virtual 88143 remote_ip 5.5.5.229 88154 username aminvpn 88154 mac 88154 bytes_out 0 88154 bytes_in 0 88154 station_ip 37.129.119.122 88154 port 22 88154 unique_id port 88154 remote_ip 10.8.0.6 88156 username aminvpn 88156 mac 88156 bytes_out 0 88156 bytes_in 0 88156 station_ip 37.129.119.122 88156 port 22 88156 unique_id port 88156 remote_ip 10.8.0.6 88164 username aminvpn 88164 mac 88164 bytes_out 0 88164 bytes_in 0 88164 station_ip 83.123.70.199 88164 port 21 88164 unique_id port 88164 remote_ip 10.8.0.6 88167 username aminvpn 88167 mac 88167 bytes_out 0 88167 bytes_in 0 88167 station_ip 37.129.119.122 88167 port 22 88167 unique_id port 88167 remote_ip 10.8.0.6 88173 username aminvpn 88173 mac 88173 bytes_out 0 88173 bytes_in 0 88173 station_ip 37.129.119.122 88173 port 22 88173 unique_id port 88173 remote_ip 10.8.0.6 88175 username aminvpn 88175 unique_id port 88175 terminate_cause Lost-Carrier 88175 bytes_out 564070 88175 bytes_in 7849371 88175 station_ip 5.119.19.62 88175 port 15728701 88175 nas_port_type Virtual 88175 remote_ip 5.5.5.231 88183 username aminvpn 88119 username aminvpn 88119 mac 88119 bytes_out 0 88119 bytes_in 0 88119 station_ip 83.123.70.199 88119 port 21 88119 unique_id port 88119 remote_ip 10.8.0.6 88122 username aminvpn 88122 mac 88122 bytes_out 0 88122 bytes_in 0 88122 station_ip 83.123.70.199 88122 port 21 88122 unique_id port 88122 remote_ip 10.8.0.6 88124 username aminvpn 88124 mac 88124 bytes_out 0 88124 bytes_in 0 88124 station_ip 83.123.70.199 88124 port 21 88124 unique_id port 88124 remote_ip 10.8.0.6 88125 username aminvpn 88125 mac 88125 bytes_out 0 88125 bytes_in 0 88125 station_ip 83.123.70.199 88125 port 21 88125 unique_id port 88125 remote_ip 10.8.0.6 88127 username aminvpn 88127 mac 88127 bytes_out 0 88127 bytes_in 0 88127 station_ip 83.123.70.199 88127 port 21 88127 unique_id port 88127 remote_ip 10.8.0.6 88129 username aminvpn 88129 mac 88129 bytes_out 0 88129 bytes_in 0 88129 station_ip 37.129.119.122 88129 port 35 88129 unique_id port 88129 remote_ip 10.8.1.10 88131 username aminvpn 88131 mac 88131 bytes_out 0 88131 bytes_in 0 88131 station_ip 83.123.70.199 88131 port 21 88131 unique_id port 88131 remote_ip 10.8.0.6 88132 username forozande 88132 unique_id port 88132 terminate_cause User-Request 88132 bytes_out 56269 88132 bytes_in 648539 88132 station_ip 83.122.248.152 88132 port 15728691 88132 nas_port_type Virtual 88132 remote_ip 5.5.5.222 88136 username aminvpn 88136 mac 88136 bytes_out 0 88136 bytes_in 0 88136 station_ip 83.123.70.199 88136 port 21 88136 unique_id port 88136 remote_ip 10.8.0.6 88140 username aminvpn 88140 mac 88140 bytes_out 0 88140 bytes_in 0 88140 station_ip 37.129.119.122 88140 port 22 88140 unique_id port 88140 remote_ip 10.8.0.6 88141 username madadi 88141 unique_id port 88141 terminate_cause Lost-Carrier 88141 bytes_out 32219 88141 bytes_in 192375 88141 station_ip 5.120.169.225 88141 port 15728690 88141 nas_port_type Virtual 88141 remote_ip 5.5.5.223 88144 username forozande 88144 unique_id port 88144 terminate_cause User-Request 88144 bytes_out 24441 88144 bytes_in 166513 88144 station_ip 83.122.55.6 88144 port 15728697 88144 nas_port_type Virtual 88144 remote_ip 5.5.5.220 88146 username jamali 88146 unique_id port 88146 terminate_cause Lost-Carrier 88146 bytes_out 8292858 88146 bytes_in 126873441 88146 station_ip 5.119.94.172 88146 port 15728688 88146 nas_port_type Virtual 88146 remote_ip 5.5.5.225 88148 username zamanialireza 88148 unique_id port 88148 terminate_cause User-Request 88148 bytes_out 10814431 88148 bytes_in 14155394 88148 station_ip 83.122.150.95 88148 port 15728695 88148 nas_port_type Virtual 88148 remote_ip 5.5.5.219 88150 username aminvpn 88150 mac 88150 bytes_out 0 88150 bytes_in 0 88150 station_ip 83.123.70.199 88150 port 21 88150 unique_id port 88150 remote_ip 10.8.0.6 88151 username aminvpn 88151 mac 88151 bytes_out 0 88151 bytes_in 0 88151 station_ip 37.129.119.122 88151 port 22 88151 unique_id port 88151 remote_ip 10.8.0.6 88155 username aminvpn 88155 mac 88155 bytes_out 0 88155 bytes_in 0 88155 station_ip 83.123.70.199 88155 port 21 88155 unique_id port 88155 remote_ip 10.8.0.6 88157 username shojaei 88157 unique_id port 88157 terminate_cause User-Request 88157 bytes_out 0 88157 bytes_in 0 88157 station_ip 83.123.113.87 88157 port 15728700 88157 nas_port_type Virtual 88157 remote_ip 5.5.5.215 88159 username aminvpn 88159 mac 88159 bytes_out 0 88137 unique_id port 88137 remote_ip 10.8.0.6 88139 username forozande 88139 unique_id port 88139 terminate_cause User-Request 88139 bytes_out 33902 88139 bytes_in 295062 88139 station_ip 83.122.55.6 88139 port 15728693 88139 nas_port_type Virtual 88139 remote_ip 5.5.5.220 88145 username aminvpn 88145 mac 88145 bytes_out 0 88145 bytes_in 0 88145 station_ip 37.129.119.122 88145 port 22 88145 unique_id port 88145 remote_ip 10.8.0.6 88147 username aminvpn 88147 mac 88147 bytes_out 0 88147 bytes_in 0 88147 station_ip 83.123.70.199 88147 port 21 88147 unique_id port 88147 remote_ip 10.8.0.6 88153 username aminvpn 88153 mac 88153 bytes_out 0 88153 bytes_in 0 88153 station_ip 83.123.70.199 88153 port 21 88153 unique_id port 88153 remote_ip 10.8.0.6 88160 username madadi 88160 unique_id port 88160 terminate_cause Lost-Carrier 88160 bytes_out 223574 88160 bytes_in 1971984 88160 station_ip 5.119.176.49 88160 port 15728696 88160 nas_port_type Virtual 88160 remote_ip 5.5.5.218 88162 username aminvpn 88162 mac 88162 bytes_out 0 88162 bytes_in 0 88162 station_ip 37.129.119.122 88162 port 22 88162 unique_id port 88162 remote_ip 10.8.0.6 88166 username aminvpn 88166 mac 88166 bytes_out 0 88166 bytes_in 0 88166 station_ip 83.123.70.199 88166 port 21 88166 unique_id port 88166 remote_ip 10.8.0.6 88169 username aminvpn 88169 mac 88169 bytes_out 0 88169 bytes_in 0 88169 station_ip 37.129.119.122 88169 port 22 88169 unique_id port 88169 remote_ip 10.8.0.6 88170 username aminvpn 88170 mac 88170 bytes_out 0 88170 bytes_in 0 88170 station_ip 83.123.70.199 88170 port 21 88170 unique_id port 88170 remote_ip 10.8.0.6 88172 username aminvpn 88172 mac 88172 bytes_out 0 88172 bytes_in 0 88172 station_ip 83.123.70.199 88172 port 21 88172 unique_id port 88172 remote_ip 10.8.0.6 88177 username aminvpn 88177 mac 88177 bytes_out 0 88177 bytes_in 0 88177 station_ip 83.123.70.199 88177 port 21 88177 unique_id port 88177 remote_ip 10.8.0.6 88180 username madadi 88180 unique_id port 88180 terminate_cause Lost-Carrier 88180 bytes_out 24061 88180 bytes_in 144211 88180 station_ip 5.120.162.237 88180 port 15728703 88180 nas_port_type Virtual 88180 remote_ip 5.5.5.214 88182 username aminvpn 88182 mac 88182 bytes_out 0 88182 bytes_in 0 88182 station_ip 83.123.70.199 88182 port 21 88182 unique_id port 88182 remote_ip 10.8.0.6 88185 username aminvpn 88185 mac 88185 bytes_out 0 88185 bytes_in 0 88185 station_ip 37.129.119.122 88185 port 22 88185 unique_id port 88185 remote_ip 10.8.0.6 88199 username aminvpn 88199 mac 88199 bytes_out 0 88199 bytes_in 0 88199 station_ip 83.123.70.199 88199 port 21 88199 unique_id port 88199 remote_ip 10.8.0.6 88202 username aminvpn 88202 mac 88202 bytes_out 0 88202 bytes_in 0 88202 station_ip 37.129.119.122 88202 port 22 88202 unique_id port 88202 remote_ip 10.8.0.6 88214 username aminvpn 88214 mac 88214 bytes_out 0 88214 bytes_in 0 88214 station_ip 37.129.119.122 88214 port 22 88214 unique_id port 88214 remote_ip 10.8.0.6 88217 username aminvpn 88217 mac 88217 bytes_out 0 88217 bytes_in 0 88217 station_ip 83.123.70.199 88217 port 21 88217 unique_id port 88217 remote_ip 10.8.0.6 88224 username aminvpn 88224 mac 88224 bytes_out 0 88224 bytes_in 0 88224 station_ip 83.123.70.199 88224 port 21 88159 bytes_in 0 88159 station_ip 37.129.119.122 88159 port 22 88159 unique_id port 88159 remote_ip 10.8.0.6 88163 username mahdixz 88163 unique_id port 88163 terminate_cause User-Request 88163 bytes_out 793163 88163 bytes_in 5028706 88163 station_ip 151.235.99.206 88163 port 15728692 88163 nas_port_type Virtual 88163 remote_ip 5.5.5.221 88168 username aminvpn 88168 mac 88168 bytes_out 0 88168 bytes_in 0 88168 station_ip 83.123.70.199 88168 port 21 88168 unique_id port 88168 remote_ip 10.8.0.6 88176 username aminvpn 88176 mac 88176 bytes_out 0 88176 bytes_in 0 88176 station_ip 37.129.119.122 88176 port 22 88176 unique_id port 88176 remote_ip 10.8.0.6 88184 username aminvpn 88184 mac 88184 bytes_out 0 88184 bytes_in 0 88184 station_ip 83.123.70.199 88184 port 21 88184 unique_id port 88184 remote_ip 10.8.0.6 88187 username aminvpn 88187 mac 88187 bytes_out 0 88187 bytes_in 0 88187 station_ip 37.129.119.122 88187 port 22 88187 unique_id port 88187 remote_ip 10.8.0.6 88188 username aminvpn 88188 mac 88188 bytes_out 0 88188 bytes_in 0 88188 station_ip 83.123.70.199 88188 port 21 88188 unique_id port 88188 remote_ip 10.8.0.6 88190 username alinezhad 88190 unique_id port 88190 terminate_cause User-Request 88190 bytes_out 61317 88190 bytes_in 924389 88190 station_ip 113.203.98.141 88190 port 15728705 88190 nas_port_type Virtual 88190 remote_ip 5.5.5.213 88192 username aminvpn 88192 mac 88192 bytes_out 0 88192 bytes_in 0 88192 station_ip 37.129.119.122 88192 port 22 88192 unique_id port 88192 remote_ip 10.8.0.6 88195 username aminvpn 88195 mac 88195 bytes_out 0 88195 bytes_in 0 88195 station_ip 83.123.70.199 88195 port 21 88195 unique_id port 88195 remote_ip 10.8.0.6 88206 username aminvpn 88206 mac 88206 bytes_out 95842 88206 bytes_in 206374 88206 station_ip 83.123.70.199 88206 port 21 88206 unique_id port 88206 remote_ip 10.8.0.6 88209 username aminvpn 88209 mac 88209 bytes_out 0 88209 bytes_in 0 88209 station_ip 37.129.119.122 88209 port 22 88209 unique_id port 88209 remote_ip 10.8.0.6 88211 username aminvpn 88211 mac 88211 bytes_out 0 88211 bytes_in 0 88211 station_ip 37.129.119.122 88211 port 22 88211 unique_id port 88211 remote_ip 10.8.0.6 88216 username aminvpn 88216 mac 88216 bytes_out 0 88216 bytes_in 0 88216 station_ip 37.129.119.122 88216 port 22 88216 unique_id port 88216 remote_ip 10.8.0.6 88218 username madadi 88218 unique_id port 88218 terminate_cause Lost-Carrier 88218 bytes_out 68511 88218 bytes_in 202677 88218 station_ip 5.120.95.68 88218 port 15728706 88218 nas_port_type Virtual 88218 remote_ip 5.5.5.212 88221 username aminvpn 88221 mac 88221 bytes_out 0 88221 bytes_in 0 88221 station_ip 37.129.119.122 88221 port 22 88221 unique_id port 88221 remote_ip 10.8.0.6 88229 username aminvpn 88229 mac 88229 bytes_out 0 88229 bytes_in 0 88229 station_ip 37.129.119.122 88229 port 22 88229 unique_id port 88229 remote_ip 10.8.0.6 88231 username aminvpn 88231 mac 88231 bytes_out 0 88231 bytes_in 0 88231 station_ip 83.123.70.199 88231 port 21 88231 unique_id port 88231 remote_ip 10.8.0.6 88233 username aminvpn 88233 mac 88233 bytes_out 0 88233 bytes_in 0 88233 station_ip 83.123.70.199 88233 port 21 88233 unique_id port 88233 remote_ip 10.8.0.6 88235 username ahmadi 88235 unique_id port 88235 terminate_cause User-Request 88179 remote_ip 10.8.0.6 88181 username aminvpn 88181 mac 88181 bytes_out 0 88181 bytes_in 0 88181 station_ip 37.129.119.122 88181 port 22 88181 unique_id port 88181 remote_ip 10.8.0.6 88191 username aminvpn 88191 mac 88191 bytes_out 0 88191 bytes_in 0 88191 station_ip 83.123.70.199 88191 port 21 88191 unique_id port 88191 remote_ip 10.8.0.6 88194 username aminvpn 88194 mac 88194 bytes_out 0 88194 bytes_in 0 88194 station_ip 37.129.119.122 88194 port 22 88194 unique_id port 88194 remote_ip 10.8.0.6 88198 username aminvpn 88198 mac 88198 bytes_out 0 88198 bytes_in 0 88198 station_ip 37.129.119.122 88198 port 22 88198 unique_id port 88198 remote_ip 10.8.0.6 88201 username aminvpn 88201 mac 88201 bytes_out 0 88201 bytes_in 0 88201 station_ip 83.123.70.199 88201 port 21 88201 unique_id port 88201 remote_ip 10.8.0.6 88205 username aminvpn 88205 mac 88205 bytes_out 167771 88205 bytes_in 1331778 88205 station_ip 37.129.119.122 88205 port 35 88205 unique_id port 88205 remote_ip 10.8.1.10 88208 username aminvpn 88208 mac 88208 bytes_out 0 88208 bytes_in 0 88208 station_ip 83.123.70.199 88208 port 21 88208 unique_id port 88208 remote_ip 10.8.0.6 88213 username forozande 88213 unique_id port 88213 terminate_cause User-Request 88213 bytes_out 208759 88213 bytes_in 1918160 88213 station_ip 113.203.113.138 88213 port 15728707 88213 nas_port_type Virtual 88213 remote_ip 5.5.5.211 88220 username aminvpn 88220 mac 88220 bytes_out 0 88220 bytes_in 0 88220 station_ip 83.123.70.199 88220 port 21 88220 unique_id port 88220 remote_ip 10.8.0.6 88240 username aminvpn 88240 mac 88240 bytes_out 0 88240 bytes_in 0 88240 station_ip 37.129.119.122 88240 port 22 88240 unique_id port 88240 remote_ip 10.8.0.6 88242 username aminvpn 88242 mac 88242 bytes_out 0 88242 bytes_in 0 88242 station_ip 37.129.119.122 88242 port 22 88242 unique_id port 88242 remote_ip 10.8.0.6 88244 username aminvpn 88244 mac 88244 bytes_out 0 88244 bytes_in 0 88244 station_ip 83.123.70.199 88244 port 21 88244 unique_id port 88244 remote_ip 10.8.0.6 88249 username forozande 88249 unique_id port 88249 terminate_cause User-Request 88249 bytes_out 74466 88249 bytes_in 863277 88249 station_ip 37.129.73.26 88249 port 15728715 88249 nas_port_type Virtual 88249 remote_ip 5.5.5.208 88252 username aminvpn 88252 mac 88252 bytes_out 0 88252 bytes_in 0 88252 station_ip 83.123.70.199 88252 port 21 88252 unique_id port 88252 remote_ip 10.8.0.6 88254 username aminvpn 88254 mac 88254 bytes_out 0 88254 bytes_in 0 88254 station_ip 37.129.119.122 88254 port 22 88254 unique_id port 88254 remote_ip 10.8.0.6 88257 username aminvpn 88257 unique_id port 88257 terminate_cause User-Request 88257 bytes_out 2681962 88257 bytes_in 45152235 88257 station_ip 83.123.70.199 88257 port 15728702 88257 nas_port_type Virtual 88257 remote_ip 5.5.5.229 88261 username aminvpn 88261 mac 88261 bytes_out 0 88261 bytes_in 0 88261 station_ip 37.129.119.122 88261 port 22 88261 unique_id port 88261 remote_ip 10.8.0.6 88263 username musanejad 88263 unique_id port 88263 terminate_cause User-Request 88263 bytes_out 0 88263 bytes_in 0 88263 station_ip 5.120.190.233 88263 port 15728719 88263 nas_port_type Virtual 88263 remote_ip 5.5.5.205 88275 username aminvpn 88275 mac 88275 bytes_out 0 88275 bytes_in 0 88275 station_ip 83.123.70.199 88183 mac 88183 bytes_out 0 88183 bytes_in 0 88183 station_ip 37.129.119.122 88183 port 22 88183 unique_id port 88183 remote_ip 10.8.0.6 88186 username aminvpn 88186 mac 88186 bytes_out 0 88186 bytes_in 0 88186 station_ip 83.123.70.199 88186 port 21 88186 unique_id port 88186 remote_ip 10.8.0.6 88189 username aminvpn 88189 mac 88189 bytes_out 0 88189 bytes_in 0 88189 station_ip 37.129.119.122 88189 port 22 88189 unique_id port 88189 remote_ip 10.8.0.6 88193 username aminvpn 88193 mac 88193 bytes_out 0 88193 bytes_in 0 88193 station_ip 83.123.70.199 88193 port 21 88193 unique_id port 88193 remote_ip 10.8.0.6 88196 username aminvpn 88196 mac 88196 bytes_out 0 88196 bytes_in 0 88196 station_ip 37.129.119.122 88196 port 22 88196 unique_id port 88196 remote_ip 10.8.0.6 88197 username aminvpn 88197 mac 88197 bytes_out 0 88197 bytes_in 0 88197 station_ip 83.123.70.199 88197 port 21 88197 unique_id port 88197 remote_ip 10.8.0.6 88200 username aminvpn 88200 mac 88200 bytes_out 0 88200 bytes_in 0 88200 station_ip 37.129.119.122 88200 port 22 88200 unique_id port 88200 remote_ip 10.8.0.6 88203 username aminvpn 88203 mac 88203 bytes_out 0 88203 bytes_in 0 88203 station_ip 83.123.70.199 88203 port 21 88203 unique_id port 88203 remote_ip 10.8.0.6 88204 username aminvpn 88204 mac 88204 bytes_out 0 88204 bytes_in 0 88204 station_ip 37.129.119.122 88204 port 22 88204 unique_id port 88204 remote_ip 10.8.0.6 88207 username aminvpn 88207 mac 88207 bytes_out 0 88207 bytes_in 0 88207 station_ip 37.129.119.122 88207 port 22 88207 unique_id port 88207 remote_ip 10.8.0.6 88210 username aminvpn 88210 mac 88210 bytes_out 0 88210 bytes_in 0 88210 station_ip 83.123.70.199 88210 port 21 88210 unique_id port 88210 remote_ip 10.8.0.6 88212 username aminvpn 88212 mac 88212 bytes_out 0 88212 bytes_in 0 88212 station_ip 83.123.70.199 88212 port 21 88212 unique_id port 88212 remote_ip 10.8.0.6 88215 username aminvpn 88215 mac 88215 bytes_out 0 88215 bytes_in 0 88215 station_ip 83.123.70.199 88215 port 21 88215 unique_id port 88215 remote_ip 10.8.0.6 88219 username aminvpn 88219 mac 88219 bytes_out 0 88219 bytes_in 0 88219 station_ip 37.129.119.122 88219 port 22 88219 unique_id port 88219 remote_ip 10.8.0.6 88222 username aminvpn 88222 mac 88222 bytes_out 0 88222 bytes_in 0 88222 station_ip 83.123.70.199 88222 port 21 88222 unique_id port 88222 remote_ip 10.8.0.6 88223 username aminvpn 88223 mac 88223 bytes_out 0 88223 bytes_in 0 88223 station_ip 37.129.119.122 88223 port 22 88223 unique_id port 88223 remote_ip 10.8.0.6 88225 username aminvpn 88225 mac 88225 bytes_out 0 88225 bytes_in 0 88225 station_ip 37.129.119.122 88225 port 22 88225 unique_id port 88225 remote_ip 10.8.0.6 88227 username aminvpn 88227 mac 88227 bytes_out 0 88227 bytes_in 0 88227 station_ip 83.123.70.199 88227 port 21 88227 unique_id port 88227 remote_ip 10.8.0.6 88228 username ahmadipour 88228 unique_id port 88228 terminate_cause User-Request 88228 bytes_out 87279 88228 bytes_in 332683 88228 station_ip 37.129.150.125 88228 port 15728708 88228 nas_port_type Virtual 88228 remote_ip 5.5.5.210 88230 username amirabbas 88230 unique_id port 88230 terminate_cause User-Request 88230 bytes_out 29143963 88230 bytes_in 560648207 88224 unique_id port 88224 remote_ip 10.8.0.6 88226 username arman 88226 unique_id port 88226 terminate_cause Lost-Carrier 88226 bytes_out 5379476 88226 bytes_in 98931175 88226 station_ip 5.120.176.15 88226 port 15728699 88226 nas_port_type Virtual 88226 remote_ip 5.5.5.216 88234 username aminvpn 88234 mac 88234 bytes_out 0 88234 bytes_in 0 88234 station_ip 83.123.70.199 88234 port 21 88234 unique_id port 88234 remote_ip 10.8.0.6 88241 username aminvpn 88241 mac 88241 bytes_out 0 88241 bytes_in 0 88241 station_ip 83.123.70.199 88241 port 21 88241 unique_id port 88241 remote_ip 10.8.0.6 88246 username aminvpn 88246 mac 88246 bytes_out 0 88246 bytes_in 0 88246 station_ip 37.129.119.122 88246 port 22 88246 unique_id port 88246 remote_ip 10.8.0.6 88262 username aminvpn 88262 mac 88262 bytes_out 0 88262 bytes_in 0 88262 station_ip 83.123.70.199 88262 port 21 88262 unique_id port 88262 remote_ip 10.8.0.6 88268 username aminvpn 88268 mac 88268 bytes_out 0 88268 bytes_in 0 88268 station_ip 37.129.119.122 88268 port 22 88268 unique_id port 88268 remote_ip 10.8.0.6 88271 username aminvpn 88271 mac 88271 bytes_out 0 88271 bytes_in 0 88271 station_ip 83.123.70.199 88271 port 21 88271 unique_id port 88271 remote_ip 10.8.0.6 88272 username aminvpn 88272 mac 88272 bytes_out 0 88272 bytes_in 0 88272 station_ip 37.129.119.122 88272 port 22 88272 unique_id port 88272 remote_ip 10.8.0.6 88279 username asadi 88279 unique_id port 88279 terminate_cause User-Request 88279 bytes_out 354417 88279 bytes_in 8800680 88279 station_ip 113.203.52.12 88279 port 15728722 88279 nas_port_type Virtual 88279 remote_ip 5.5.5.203 88283 username aminvpn 88283 mac 88283 bytes_out 0 88283 bytes_in 0 88283 station_ip 37.129.119.122 88283 port 22 88283 unique_id port 88283 remote_ip 10.8.0.6 88287 username aminvpn 88287 mac 88287 bytes_out 0 88287 bytes_in 0 88287 station_ip 83.123.70.199 88287 port 21 88287 unique_id port 88287 remote_ip 10.8.0.6 88289 username aminvpn 88289 mac 88289 bytes_out 1149920 88289 bytes_in 9726905 88289 station_ip 83.123.70.199 88289 port 21 88289 unique_id port 88289 remote_ip 10.8.0.6 88293 username forozande 88293 unique_id port 88293 terminate_cause User-Request 88293 bytes_out 42944 88293 bytes_in 287254 88293 station_ip 113.203.68.210 88293 port 15728725 88293 nas_port_type Virtual 88293 remote_ip 5.5.5.201 88296 username heydarizadeh 88296 unique_id port 88296 terminate_cause User-Request 88296 bytes_out 0 88296 bytes_in 0 88296 station_ip 5.119.175.122 88296 port 15728730 88296 nas_port_type Virtual 88296 remote_ip 5.5.5.200 88299 username forozande 88299 unique_id port 88299 terminate_cause User-Request 88299 bytes_out 37669 88299 bytes_in 382536 88299 station_ip 83.123.238.137 88299 port 15728736 88299 nas_port_type Virtual 88299 remote_ip 5.5.5.196 88302 username heydarizadeh 88302 unique_id port 88302 terminate_cause Lost-Carrier 88302 bytes_out 2118979 88302 bytes_in 89850179 88302 station_ip 5.119.175.122 88302 port 15728731 88302 nas_port_type Virtual 88302 remote_ip 5.5.5.200 88304 username musanejad 88304 unique_id port 88304 terminate_cause Lost-Carrier 88304 bytes_out 3900855 88304 bytes_in 27546183 88304 station_ip 5.120.190.233 88304 port 15728721 88304 nas_port_type Virtual 88304 remote_ip 5.5.5.204 88312 username aminvpn 88312 mac 88312 bytes_out 0 88312 bytes_in 0 88312 station_ip 37.129.157.91 88312 port 22 88230 station_ip 31.56.156.248 88230 port 15728698 88230 nas_port_type Virtual 88230 remote_ip 5.5.5.217 88232 username aminvpn 88232 mac 88232 bytes_out 0 88232 bytes_in 0 88232 station_ip 37.129.119.122 88232 port 22 88232 unique_id port 88232 remote_ip 10.8.0.6 88236 username aminvpn 88236 mac 88236 bytes_out 0 88236 bytes_in 0 88236 station_ip 37.129.119.122 88236 port 22 88236 unique_id port 88236 remote_ip 10.8.0.6 88237 username aminvpn 88237 mac 88237 bytes_out 0 88237 bytes_in 0 88237 station_ip 83.123.70.199 88237 port 21 88237 unique_id port 88237 remote_ip 10.8.0.6 88239 username aminvpn 88239 mac 88239 bytes_out 0 88239 bytes_in 0 88239 station_ip 83.123.70.199 88239 port 21 88239 unique_id port 88239 remote_ip 10.8.0.6 88245 username shahnaz 88245 unique_id port 88245 terminate_cause User-Request 88245 bytes_out 3570162 88245 bytes_in 83855375 88245 station_ip 5.120.58.27 88245 port 15728704 88245 nas_port_type Virtual 88245 remote_ip 5.5.5.241 88247 username aminvpn 88247 mac 88247 bytes_out 0 88247 bytes_in 0 88247 station_ip 83.123.70.199 88247 port 21 88247 unique_id port 88247 remote_ip 10.8.0.6 88251 username aminvpn 88251 mac 88251 bytes_out 0 88251 bytes_in 0 88251 station_ip 37.129.119.122 88251 port 22 88251 unique_id port 88251 remote_ip 10.8.0.6 88255 username aminvpn 88255 mac 88255 bytes_out 0 88255 bytes_in 0 88255 station_ip 83.123.70.199 88255 port 21 88255 unique_id port 88255 remote_ip 10.8.0.6 88259 username ahmadipour 88259 unique_id port 88259 terminate_cause Lost-Carrier 88259 bytes_out 43456 88259 bytes_in 136537 88259 station_ip 5.119.87.155 88259 port 15728717 88259 nas_port_type Virtual 88259 remote_ip 5.5.5.206 88264 username aminvpn 88264 mac 88264 bytes_out 0 88264 bytes_in 0 88264 station_ip 37.129.119.122 88264 port 22 88264 unique_id port 88264 remote_ip 10.8.0.6 88266 username aminvpn 88266 mac 88266 bytes_out 0 88266 bytes_in 0 88266 station_ip 37.129.119.122 88266 port 22 88266 unique_id port 88266 remote_ip 10.8.0.6 88269 username aminvpn 88269 mac 88269 bytes_out 0 88269 bytes_in 0 88269 station_ip 83.123.70.199 88269 port 21 88269 unique_id port 88269 remote_ip 10.8.0.6 88273 username aminvpn 88273 mac 88273 bytes_out 0 88273 bytes_in 0 88273 station_ip 83.123.70.199 88273 port 21 88273 unique_id port 88273 remote_ip 10.8.0.6 88276 username aminvpn 88276 mac 88276 bytes_out 0 88276 bytes_in 0 88276 station_ip 37.129.119.122 88276 port 22 88276 unique_id port 88276 remote_ip 10.8.0.6 88278 username aminvpn 88278 mac 88278 bytes_out 0 88278 bytes_in 0 88278 station_ip 37.129.119.122 88278 port 22 88278 unique_id port 88278 remote_ip 10.8.0.6 88280 username aminvpn 88280 mac 88280 bytes_out 0 88280 bytes_in 0 88280 station_ip 83.123.70.199 88280 port 21 88280 unique_id port 88280 remote_ip 10.8.0.6 88285 username aminvpn 88285 mac 88285 bytes_out 0 88285 bytes_in 0 88285 station_ip 83.123.70.199 88285 port 21 88285 unique_id port 88285 remote_ip 10.8.0.6 88288 username aminvpn 88288 mac 88288 bytes_out 0 88288 bytes_in 0 88288 station_ip 37.129.119.122 88288 port 22 88288 unique_id port 88288 remote_ip 10.8.0.6 88294 username aminvpn 88294 mac 88294 bytes_out 0 88294 bytes_in 0 88294 station_ip 37.129.157.91 88294 port 21 88235 bytes_out 50177 88235 bytes_in 347219 88235 station_ip 83.123.116.165 88235 port 15728709 88235 nas_port_type Virtual 88235 remote_ip 5.5.5.209 88238 username aminvpn 88238 mac 88238 bytes_out 0 88238 bytes_in 0 88238 station_ip 37.129.119.122 88238 port 22 88238 unique_id port 88238 remote_ip 10.8.0.6 88243 username forozande 88243 unique_id port 88243 terminate_cause User-Request 88243 bytes_out 47818 88243 bytes_in 372321 88243 station_ip 37.129.73.26 88243 port 15728713 88243 nas_port_type Virtual 88243 remote_ip 5.5.5.208 88248 username aminvpn 88248 mac 88248 bytes_out 0 88248 bytes_in 0 88248 station_ip 37.129.119.122 88248 port 22 88248 unique_id port 88248 remote_ip 10.8.0.6 88250 username aminvpn 88250 mac 88250 bytes_out 0 88250 bytes_in 0 88250 station_ip 83.123.70.199 88250 port 21 88250 unique_id port 88250 remote_ip 10.8.0.6 88253 username forozande 88253 unique_id port 88253 terminate_cause User-Request 88253 bytes_out 143896 88253 bytes_in 1569377 88253 station_ip 37.129.73.26 88253 port 15728716 88253 nas_port_type Virtual 88253 remote_ip 5.5.5.208 88256 username aminvpn 88256 mac 88256 bytes_out 0 88256 bytes_in 0 88256 station_ip 37.129.119.122 88256 port 22 88256 unique_id port 88256 remote_ip 10.8.0.6 88258 username musanejad 88258 unique_id port 88258 terminate_cause Lost-Carrier 88258 bytes_out 6164387 88258 bytes_in 95901904 88258 station_ip 5.120.84.48 88258 port 15728677 88258 nas_port_type Virtual 88258 remote_ip 5.5.5.235 88260 username aminvpn 88260 mac 88260 bytes_out 454162 88260 bytes_in 2609717 88260 station_ip 83.123.70.199 88260 port 21 88260 unique_id port 88260 remote_ip 10.8.0.6 88265 username aminvpn 88265 mac 88265 bytes_out 0 88265 bytes_in 0 88265 station_ip 83.123.70.199 88265 port 21 88265 unique_id port 88265 remote_ip 10.8.0.6 88267 username aminvpn 88267 mac 88267 bytes_out 0 88267 bytes_in 0 88267 station_ip 83.123.70.199 88267 port 21 88267 unique_id port 88267 remote_ip 10.8.0.6 88270 username aminvpn 88270 mac 88270 bytes_out 0 88270 bytes_in 0 88270 station_ip 37.129.119.122 88270 port 22 88270 unique_id port 88270 remote_ip 10.8.0.6 88274 username aminvpn 88274 mac 88274 bytes_out 0 88274 bytes_in 0 88274 station_ip 37.129.119.122 88274 port 22 88274 unique_id port 88274 remote_ip 10.8.0.6 88286 username aminvpn 88286 mac 88286 bytes_out 0 88286 bytes_in 0 88286 station_ip 37.129.119.122 88286 port 22 88286 unique_id port 88286 remote_ip 10.8.0.6 88292 username forozande 88292 unique_id port 88292 terminate_cause User-Request 88292 bytes_out 26697 88292 bytes_in 105834 88292 station_ip 113.203.68.210 88292 port 15728724 88292 nas_port_type Virtual 88292 remote_ip 5.5.5.201 88295 username heydarizadeh 88295 unique_id port 88295 terminate_cause User-Request 88295 bytes_out 0 88295 bytes_in 0 88295 station_ip 5.119.175.122 88295 port 15728727 88295 nas_port_type Virtual 88295 remote_ip 5.5.5.200 88300 username forozande 88300 unique_id port 88300 terminate_cause User-Request 88300 bytes_out 23923 88300 bytes_in 275670 88300 station_ip 83.123.238.137 88300 port 15728737 88300 nas_port_type Virtual 88300 remote_ip 5.5.5.196 88305 username amirabbas 88305 unique_id port 88305 terminate_cause User-Request 88305 bytes_out 34681458 88305 bytes_in 796377232 88305 station_ip 31.56.156.248 88305 port 15728718 88305 nas_port_type Virtual 88305 remote_ip 5.5.5.217 88307 username aminvpn 88307 mac 88275 port 21 88275 unique_id port 88275 remote_ip 10.8.0.6 88277 username aminvpn 88277 mac 88277 bytes_out 0 88277 bytes_in 0 88277 station_ip 83.123.70.199 88277 port 21 88277 unique_id port 88277 remote_ip 10.8.0.6 88281 username aminvpn 88281 mac 88281 bytes_out 0 88281 bytes_in 0 88281 station_ip 37.129.119.122 88281 port 22 88281 unique_id port 88281 remote_ip 10.8.0.6 88282 username aminvpn 88282 mac 88282 bytes_out 0 88282 bytes_in 0 88282 station_ip 83.123.70.199 88282 port 21 88282 unique_id port 88282 remote_ip 10.8.0.6 88284 username musanejad 88284 unique_id port 88284 terminate_cause Lost-Carrier 88284 bytes_out 122263 88284 bytes_in 840212 88284 station_ip 5.120.190.233 88284 port 15728720 88284 nas_port_type Virtual 88284 remote_ip 5.5.5.205 88290 username alinezhad 88290 unique_id port 88290 terminate_cause User-Request 88290 bytes_out 95485 88290 bytes_in 434817 88290 station_ip 5.202.2.67 88290 port 15728723 88290 nas_port_type Virtual 88290 remote_ip 5.5.5.202 88291 username heydari 88291 unique_id port 88291 terminate_cause User-Request 88291 bytes_out 1393812 88291 bytes_in 7559991 88291 station_ip 5.119.11.246 88291 port 15728672 88291 nas_port_type Virtual 88291 remote_ip 5.5.5.243 88298 username forozande 88298 unique_id port 88298 terminate_cause User-Request 88298 bytes_out 23115 88298 bytes_in 248117 88298 station_ip 83.123.238.137 88298 port 15728735 88298 nas_port_type Virtual 88298 remote_ip 5.5.5.196 88306 username aminvpn 88306 mac 88306 bytes_out 0 88306 bytes_in 0 88306 station_ip 37.129.157.91 88306 port 22 88306 unique_id port 88306 remote_ip 10.8.0.6 88308 username aminvpn 88308 mac 88308 bytes_out 0 88308 bytes_in 0 88308 station_ip 37.129.157.91 88308 port 22 88308 unique_id port 88308 remote_ip 10.8.0.6 88311 username aminvpn 88311 mac 88311 bytes_out 0 88311 bytes_in 0 88311 station_ip 83.122.53.141 88311 port 21 88311 unique_id port 88311 remote_ip 10.8.0.6 88317 username aminvpn 88317 mac 88317 bytes_out 0 88317 bytes_in 0 88317 station_ip 37.129.157.91 88317 port 21 88317 unique_id port 88317 remote_ip 10.8.0.6 88319 username aminvpn 88319 mac 88319 bytes_out 0 88319 bytes_in 0 88319 station_ip 83.122.53.141 88319 port 21 88319 unique_id port 88319 remote_ip 10.8.0.6 88324 username aminvpn 88324 mac 88324 bytes_out 0 88324 bytes_in 0 88324 station_ip 37.129.157.91 88324 port 22 88324 unique_id port 88324 remote_ip 10.8.0.6 88326 username aminvpn 88326 mac 88326 bytes_out 0 88326 bytes_in 0 88326 station_ip 83.123.70.199 88326 port 22 88326 unique_id port 88326 remote_ip 10.8.0.6 88340 username aminvpn 88340 mac 88340 bytes_out 0 88340 bytes_in 0 88340 station_ip 83.122.53.141 88340 port 21 88340 unique_id port 88340 remote_ip 10.8.0.6 88341 username aminvpn 88341 mac 88341 bytes_out 0 88341 bytes_in 0 88341 station_ip 83.123.70.199 88341 port 22 88341 unique_id port 88341 remote_ip 10.8.0.6 88345 username aminvpn 88345 mac 88345 bytes_out 0 88345 bytes_in 0 88345 station_ip 83.122.53.141 88345 port 21 88345 unique_id port 88345 remote_ip 10.8.0.6 88347 username aminvpn 88347 mac 88347 bytes_out 0 88347 bytes_in 0 88347 station_ip 83.123.70.199 88347 port 22 88347 unique_id port 88347 remote_ip 10.8.0.6 88349 username aminvpn 88349 mac 88349 bytes_out 0 88349 bytes_in 0 88294 unique_id port 88294 remote_ip 10.8.0.6 88297 username forozande 88297 unique_id port 88297 terminate_cause User-Request 88297 bytes_out 82087 88297 bytes_in 443031 88297 station_ip 83.123.238.137 88297 port 15728733 88297 nas_port_type Virtual 88297 remote_ip 5.5.5.196 88301 username khalili 88301 unique_id port 88301 terminate_cause Lost-Carrier 88301 bytes_out 10114565 88301 bytes_in 275298612 88301 station_ip 5.120.103.23 88301 port 15728662 88301 nas_port_type Virtual 88301 remote_ip 5.5.5.242 88303 username forozande 88303 unique_id port 88303 terminate_cause User-Request 88303 bytes_out 20296 88303 bytes_in 80834 88303 station_ip 83.123.238.137 88303 port 15728738 88303 nas_port_type Virtual 88303 remote_ip 5.5.5.196 88310 username mammad 88310 unique_id port 88310 terminate_cause User-Request 88310 bytes_out 2838497 88310 bytes_in 57952722 88310 station_ip 5.233.65.129 88310 port 15728726 88310 nas_port_type Virtual 88310 remote_ip 5.5.5.226 88316 username aminvpn 88316 mac 88316 bytes_out 0 88316 bytes_in 0 88316 station_ip 83.122.53.141 88316 port 22 88316 unique_id port 88316 remote_ip 10.8.0.6 88318 username aminvpn 88318 mac 88318 bytes_out 0 88318 bytes_in 0 88318 station_ip 83.123.70.199 88318 port 22 88318 unique_id port 88318 remote_ip 10.8.0.6 88325 username aminvpn 88325 mac 88325 bytes_out 0 88325 bytes_in 0 88325 station_ip 83.122.53.141 88325 port 21 88325 unique_id port 88325 remote_ip 10.8.0.6 88336 username aminvpn 88336 mac 88336 bytes_out 0 88336 bytes_in 0 88336 station_ip 83.123.70.199 88336 port 22 88336 unique_id port 88336 remote_ip 10.8.0.6 88337 username aminvpn 88337 mac 88337 bytes_out 0 88337 bytes_in 0 88337 station_ip 83.122.53.141 88337 port 21 88337 unique_id port 88337 remote_ip 10.8.0.6 88339 username aminvpn 88339 mac 88339 bytes_out 0 88339 bytes_in 0 88339 station_ip 83.123.70.199 88339 port 22 88339 unique_id port 88339 remote_ip 10.8.0.6 88342 username aminvpn 88342 mac 88342 bytes_out 0 88342 bytes_in 0 88342 station_ip 83.122.53.141 88342 port 21 88342 unique_id port 88342 remote_ip 10.8.0.6 88344 username heydari 88344 unique_id port 88344 terminate_cause User-Request 88344 bytes_out 35318 88344 bytes_in 100124 88344 station_ip 5.119.51.158 88344 port 15728743 88344 nas_port_type Virtual 88344 remote_ip 5.5.5.193 88350 username aminvpn 88350 mac 88350 bytes_out 0 88350 bytes_in 0 88350 station_ip 83.123.70.199 88350 port 22 88350 unique_id port 88350 remote_ip 10.8.0.6 88355 username mahdixz 88355 unique_id port 88355 terminate_cause User-Request 88355 bytes_out 581179 88355 bytes_in 13798539 88355 station_ip 151.235.99.206 88355 port 15728744 88355 nas_port_type Virtual 88355 remote_ip 5.5.5.221 88360 username mahdixz 88360 unique_id port 88360 terminate_cause User-Request 88360 bytes_out 379735 88360 bytes_in 253523 88360 station_ip 151.235.99.206 88360 port 15728750 88360 nas_port_type Virtual 88360 remote_ip 5.5.5.221 88361 username aminvpn 88361 mac 88361 bytes_out 0 88361 bytes_in 0 88361 station_ip 83.123.70.199 88361 port 21 88361 unique_id port 88361 remote_ip 10.8.0.6 88368 username afarin 88368 unique_id port 88368 terminate_cause Lost-Carrier 88368 bytes_out 13902393 88368 bytes_in 143668260 88368 station_ip 151.238.244.156 88368 port 15728728 88368 nas_port_type Virtual 88368 remote_ip 5.5.5.199 88374 username asadi 88374 unique_id port 88374 terminate_cause User-Request 88374 bytes_out 240660 88307 bytes_out 0 88307 bytes_in 0 88307 station_ip 83.122.53.141 88307 port 21 88307 unique_id port 88307 remote_ip 10.8.0.6 88309 username forozande 88309 unique_id port 88309 terminate_cause User-Request 88309 bytes_out 26454 88309 bytes_in 257536 88309 station_ip 83.123.238.137 88309 port 15728739 88309 nas_port_type Virtual 88309 remote_ip 5.5.5.196 88313 username aminvpn 88313 mac 88313 bytes_out 0 88313 bytes_in 0 88313 station_ip 83.122.53.141 88313 port 21 88313 unique_id port 88313 remote_ip 10.8.0.6 88314 username aminvpn 88314 mac 88314 bytes_out 0 88314 bytes_in 0 88314 station_ip 37.129.157.91 88314 port 22 88314 unique_id port 88314 remote_ip 10.8.0.6 88321 username aminvpn 88321 mac 88321 bytes_out 0 88321 bytes_in 0 88321 station_ip 83.123.70.199 88321 port 21 88321 unique_id port 88321 remote_ip 10.8.0.6 88323 username aminvpn 88323 mac 88323 bytes_out 0 88323 bytes_in 0 88323 station_ip 83.123.70.199 88323 port 21 88323 unique_id port 88323 remote_ip 10.8.0.6 88328 username aminvpn 88328 mac 88328 bytes_out 0 88328 bytes_in 0 88328 station_ip 83.122.53.141 88328 port 22 88328 unique_id port 88328 remote_ip 10.8.0.6 88330 username aminvpn 88330 mac 88330 bytes_out 0 88330 bytes_in 0 88330 station_ip 37.129.157.91 88330 port 22 88330 unique_id port 88330 remote_ip 10.8.0.6 88331 username aminvpn 88331 mac 88331 bytes_out 0 88331 bytes_in 0 88331 station_ip 83.122.53.141 88331 port 21 88331 unique_id port 88331 remote_ip 10.8.0.6 88333 username aminvpn 88333 mac 88333 bytes_out 0 88333 bytes_in 0 88333 station_ip 83.122.53.141 88333 port 21 88333 unique_id port 88333 remote_ip 10.8.0.6 88335 username aminvpn 88335 mac 88335 bytes_out 0 88335 bytes_in 0 88335 station_ip 83.122.53.141 88335 port 21 88335 unique_id port 88335 remote_ip 10.8.0.6 88343 username aminvpn 88343 mac 88343 bytes_out 0 88343 bytes_in 0 88343 station_ip 83.123.70.199 88343 port 22 88343 unique_id port 88343 remote_ip 10.8.0.6 88346 username mammad 88346 unique_id port 88346 terminate_cause User-Request 88346 bytes_out 617705 88346 bytes_in 5279968 88346 station_ip 5.233.65.129 88346 port 15728740 88346 nas_port_type Virtual 88346 remote_ip 5.5.5.226 88348 username heydari 88348 unique_id port 88348 terminate_cause Lost-Carrier 88348 bytes_out 275985 88348 bytes_in 3795273 88348 station_ip 5.119.11.246 88348 port 15728734 88348 nas_port_type Virtual 88348 remote_ip 5.5.5.243 88351 username aminvpn 88351 mac 88351 bytes_out 0 88351 bytes_in 0 88351 station_ip 83.122.53.141 88351 port 21 88351 unique_id port 88351 remote_ip 10.8.0.6 88354 username asadi 88354 unique_id port 88354 terminate_cause User-Request 88354 bytes_out 69209 88354 bytes_in 190555 88354 station_ip 37.129.144.62 88354 port 15728746 88354 nas_port_type Virtual 88354 remote_ip 5.5.5.191 88359 username forozande 88359 unique_id port 88359 terminate_cause User-Request 88359 bytes_out 16082 88359 bytes_in 171915 88359 station_ip 83.123.225.206 88359 port 15728749 88359 nas_port_type Virtual 88359 remote_ip 5.5.5.190 88365 username forozande 88365 unique_id port 88365 terminate_cause User-Request 88365 bytes_out 52099 88365 bytes_in 140528 88365 station_ip 37.129.188.149 88365 port 15728754 88365 nas_port_type Virtual 88365 remote_ip 5.5.5.188 88373 username aminvpn 88373 mac 88373 bytes_out 412445 88373 bytes_in 1092148 88312 unique_id port 88312 remote_ip 10.8.0.6 88315 username aminvpn 88315 mac 88315 bytes_out 0 88315 bytes_in 0 88315 station_ip 83.123.70.199 88315 port 21 88315 unique_id port 88315 remote_ip 10.8.0.6 88320 username aminvpn 88320 mac 88320 bytes_out 0 88320 bytes_in 0 88320 station_ip 37.129.157.91 88320 port 22 88320 unique_id port 88320 remote_ip 10.8.0.6 88322 username aminvpn 88322 mac 88322 bytes_out 0 88322 bytes_in 0 88322 station_ip 83.122.53.141 88322 port 22 88322 unique_id port 88322 remote_ip 10.8.0.6 88327 username aminvpn 88327 mac 88327 bytes_out 0 88327 bytes_in 0 88327 station_ip 37.129.157.91 88327 port 21 88327 unique_id port 88327 remote_ip 10.8.0.6 88329 username aminvpn 88329 mac 88329 bytes_out 0 88329 bytes_in 0 88329 station_ip 83.123.70.199 88329 port 21 88329 unique_id port 88329 remote_ip 10.8.0.6 88332 username aminvpn 88332 mac 88332 bytes_out 0 88332 bytes_in 0 88332 station_ip 83.123.70.199 88332 port 22 88332 unique_id port 88332 remote_ip 10.8.0.6 88334 username aminvpn 88334 mac 88334 bytes_out 0 88334 bytes_in 0 88334 station_ip 83.123.70.199 88334 port 22 88334 unique_id port 88334 remote_ip 10.8.0.6 88338 username forozande 88338 unique_id port 88338 terminate_cause User-Request 88338 bytes_out 71428 88338 bytes_in 221088 88338 station_ip 83.123.251.63 88338 port 15728742 88338 nas_port_type Virtual 88338 remote_ip 5.5.5.194 88352 username aminvpn 88352 mac 88352 bytes_out 0 88352 bytes_in 0 88352 station_ip 83.123.70.199 88352 port 22 88352 unique_id port 88352 remote_ip 10.8.0.6 88357 username forozande 88357 unique_id port 88357 terminate_cause User-Request 88357 bytes_out 36987 88357 bytes_in 101259 88357 station_ip 83.123.225.206 88357 port 15728747 88357 nas_port_type Virtual 88357 remote_ip 5.5.5.190 88363 username heydarizadeh 88363 unique_id port 88363 terminate_cause Lost-Carrier 88363 bytes_out 380275 88363 bytes_in 9522437 88363 station_ip 5.119.158.14 88363 port 15728748 88363 nas_port_type Virtual 88363 remote_ip 5.5.5.192 88366 username forozande 88366 unique_id port 88366 terminate_cause User-Request 88366 bytes_out 18475 88366 bytes_in 261789 88366 station_ip 37.129.188.149 88366 port 15728755 88366 nas_port_type Virtual 88366 remote_ip 5.5.5.188 88370 username alinezhad 88370 unique_id port 88370 terminate_cause User-Request 88370 bytes_out 113368 88370 bytes_in 1482203 88370 station_ip 5.202.2.67 88370 port 15728759 88370 nas_port_type Virtual 88370 remote_ip 5.5.5.202 88376 username alinezhad 88376 unique_id port 88376 terminate_cause User-Request 88376 bytes_out 0 88376 bytes_in 0 88376 station_ip 5.202.2.67 88376 port 15728764 88376 nas_port_type Virtual 88376 remote_ip 5.5.5.202 88378 username asadi 88378 unique_id port 88378 terminate_cause User-Request 88378 bytes_out 302234 88378 bytes_in 4308976 88378 station_ip 37.129.144.62 88378 port 15728765 88378 nas_port_type Virtual 88378 remote_ip 5.5.5.191 88382 username asadi 88382 unique_id port 88382 terminate_cause User-Request 88382 bytes_out 250437 88382 bytes_in 3916405 88382 station_ip 37.129.144.62 88382 port 15728770 88382 nas_port_type Virtual 88382 remote_ip 5.5.5.191 88384 username asadi 88384 unique_id port 88384 terminate_cause User-Request 88384 bytes_out 296845 88384 bytes_in 10604787 88384 station_ip 37.129.144.62 88384 port 15728773 88384 nas_port_type Virtual 88384 remote_ip 5.5.5.191 88387 username shahnaz 88387 unique_id port 88349 station_ip 83.122.53.141 88349 port 21 88349 unique_id port 88349 remote_ip 10.8.0.6 88353 username aminvpn 88353 mac 88353 bytes_out 0 88353 bytes_in 0 88353 station_ip 83.122.53.141 88353 port 21 88353 unique_id port 88353 remote_ip 10.8.0.6 88356 username heydarizadeh 88356 unique_id port 88356 terminate_cause User-Request 88356 bytes_out 44616 88356 bytes_in 226561 88356 station_ip 5.119.158.14 88356 port 15728745 88356 nas_port_type Virtual 88356 remote_ip 5.5.5.192 88358 username heydarizadeh 88358 unique_id port 88358 terminate_cause Lost-Carrier 88358 bytes_out 370076 88358 bytes_in 5009676 88358 station_ip 5.119.51.158 88358 port 15728741 88358 nas_port_type Virtual 88358 remote_ip 5.5.5.195 88362 username alinezhad 88362 unique_id port 88362 terminate_cause User-Request 88362 bytes_out 0 88362 bytes_in 0 88362 station_ip 5.202.2.67 88362 port 15728753 88362 nas_port_type Virtual 88362 remote_ip 5.5.5.202 88364 username heydari 88364 kill_reason Maximum check online fails reached 88364 unique_id port 88364 bytes_out 42126 88364 bytes_in 360107 88364 station_ip 5.119.11.246 88364 port 15728752 88364 nas_port_type Virtual 88364 remote_ip 5.5.5.243 88367 username heydarizadeh 88367 unique_id port 88367 terminate_cause Lost-Carrier 88367 bytes_out 447811 88367 bytes_in 10555453 88367 station_ip 5.120.58.119 88367 port 15728751 88367 nas_port_type Virtual 88367 remote_ip 5.5.5.189 88369 username madadi 88369 unique_id port 88369 terminate_cause Lost-Carrier 88369 bytes_out 3598956 88369 bytes_in 7747816 88369 station_ip 5.120.169.168 88369 port 15728714 88369 nas_port_type Virtual 88369 remote_ip 5.5.5.207 88371 username forozande 88371 unique_id port 88371 terminate_cause User-Request 88371 bytes_out 53454 88371 bytes_in 439025 88371 station_ip 83.123.176.219 88371 port 15728760 88371 nas_port_type Virtual 88371 remote_ip 5.5.5.186 88372 username forozande 88372 unique_id port 88372 terminate_cause User-Request 88372 bytes_out 82313 88372 bytes_in 1356998 88372 station_ip 83.123.176.219 88372 port 15728761 88372 nas_port_type Virtual 88372 remote_ip 5.5.5.186 88381 username alinezhad 88381 unique_id port 88381 terminate_cause User-Request 88381 bytes_out 0 88381 bytes_in 0 88381 station_ip 5.202.2.67 88381 port 15728769 88381 nas_port_type Virtual 88381 remote_ip 5.5.5.202 88385 username zamanialireza 88385 unique_id port 88385 terminate_cause Lost-Carrier 88385 bytes_out 775112 88385 bytes_in 16553326 88385 station_ip 5.160.114.28 88385 port 15728766 88385 nas_port_type Virtual 88385 remote_ip 5.5.5.185 88390 username mammad 88390 unique_id port 88390 terminate_cause User-Request 88390 bytes_out 358302 88390 bytes_in 9461310 88390 station_ip 5.233.65.129 88390 port 15728777 88390 nas_port_type Virtual 88390 remote_ip 5.5.5.226 88396 username forozande 88396 unique_id port 88396 terminate_cause User-Request 88396 bytes_out 49852 88396 bytes_in 244818 88396 station_ip 37.129.104.188 88396 port 15728783 88396 nas_port_type Virtual 88396 remote_ip 5.5.5.180 88398 username aminvpn 88398 mac 88398 bytes_out 124783 88398 bytes_in 384341 88398 station_ip 37.129.157.91 88398 port 21 88398 unique_id port 88398 remote_ip 10.8.0.6 88406 username amir 88406 unique_id port 88406 terminate_cause Lost-Carrier 88406 bytes_out 751417 88406 bytes_in 7698688 88406 station_ip 46.225.232.168 88406 port 15728790 88406 nas_port_type Virtual 88406 remote_ip 5.5.5.173 88410 username amirabbas 88410 unique_id port 88410 terminate_cause User-Request 88410 bytes_out 112013954 88410 bytes_in 2642057495 88410 station_ip 31.56.156.248 88410 port 15728776 88373 station_ip 83.123.53.111 88373 port 21 88373 unique_id port 88373 remote_ip 10.8.0.6 88383 username asadi 88383 unique_id port 88383 terminate_cause User-Request 88383 bytes_out 286322 88383 bytes_in 6436689 88383 station_ip 37.129.144.62 88383 port 15728771 88383 nas_port_type Virtual 88383 remote_ip 5.5.5.191 88389 username asadi 88389 unique_id port 88389 terminate_cause User-Request 88389 bytes_out 124565 88389 bytes_in 1649341 88389 station_ip 37.129.144.62 88389 port 15728775 88389 nas_port_type Virtual 88389 remote_ip 5.5.5.191 88391 username shokokian 88391 unique_id port 88391 terminate_cause Lost-Carrier 88391 bytes_out 1218602 88391 bytes_in 29594005 88391 station_ip 151.238.245.199 88391 port 15728729 88391 nas_port_type Virtual 88391 remote_ip 5.5.5.198 88399 username madadi 88399 unique_id port 88399 terminate_cause Lost-Carrier 88399 bytes_out 585522 88399 bytes_in 1240261 88399 station_ip 5.119.123.1 88399 port 15728784 88399 nas_port_type Virtual 88399 remote_ip 5.5.5.179 88412 username madadi 88412 unique_id port 88412 terminate_cause Lost-Carrier 88412 bytes_out 779781 88412 bytes_in 25715106 88412 station_ip 5.119.19.9 88412 port 15728795 88412 nas_port_type Virtual 88412 remote_ip 5.5.5.169 88415 username arman 88415 unique_id port 88415 terminate_cause Lost-Carrier 88415 bytes_out 12214073 88415 bytes_in 204007673 88415 station_ip 5.119.40.97 88415 port 15728772 88415 nas_port_type Virtual 88415 remote_ip 5.5.5.183 88419 username madadi 88419 unique_id port 88419 terminate_cause Lost-Carrier 88419 bytes_out 66990 88419 bytes_in 318650 88419 station_ip 5.119.145.223 88419 port 15728807 88419 nas_port_type Virtual 88419 remote_ip 5.5.5.164 88423 username aminvpn 88423 mac 88423 bytes_out 0 88423 bytes_in 0 88423 station_ip 83.123.72.35 88423 port 21 88423 unique_id port 88423 remote_ip 10.8.0.6 88425 username aminvpn 88425 mac 88425 bytes_out 0 88425 bytes_in 0 88425 station_ip 83.123.72.35 88425 port 21 88425 unique_id port 88425 remote_ip 10.8.0.6 88427 username aminvpn 88427 unique_id port 88427 terminate_cause User-Request 88427 bytes_out 3361408 88427 bytes_in 25523256 88427 station_ip 83.123.72.35 88427 port 15728796 88427 nas_port_type Virtual 88427 remote_ip 5.5.5.174 88430 username asadi 88430 unique_id port 88430 terminate_cause User-Request 88430 bytes_out 151608 88430 bytes_in 6931435 88430 station_ip 37.129.17.190 88430 port 15728812 88430 nas_port_type Virtual 88430 remote_ip 5.5.5.159 88432 username aminvpn 88432 unique_id port 88432 terminate_cause User-Request 88432 bytes_out 2656832 88432 bytes_in 24152671 88432 station_ip 5.119.2.19 88432 port 15728808 88432 nas_port_type Virtual 88432 remote_ip 5.5.5.163 88439 username arman 88439 unique_id port 88439 terminate_cause Lost-Carrier 88439 bytes_out 45662 88439 bytes_in 237450 88439 station_ip 5.120.151.87 88439 port 15728818 88439 nas_port_type Virtual 88439 remote_ip 5.5.5.154 88444 username mammad 88444 unique_id port 88444 terminate_cause User-Request 88444 bytes_out 353184 88444 bytes_in 5133882 88444 station_ip 5.233.56.169 88444 port 15728822 88444 nas_port_type Virtual 88444 remote_ip 5.5.5.151 88449 username aminvpn 88449 mac 88449 bytes_out 0 88449 bytes_in 0 88449 station_ip 83.122.99.156 88449 port 22 88449 unique_id port 88449 remote_ip 10.8.0.6 88450 username aminvpn 88450 mac 88450 bytes_out 0 88450 bytes_in 0 88450 station_ip 37.129.224.104 88450 port 21 88450 unique_id port 88450 remote_ip 10.8.0.6 88453 username aminvpn 88453 mac 88453 bytes_out 0 88374 bytes_in 3392660 88374 station_ip 37.129.144.62 88374 port 15728762 88374 nas_port_type Virtual 88374 remote_ip 5.5.5.191 88375 username heydarizadeh 88375 unique_id port 88375 terminate_cause Lost-Carrier 88375 bytes_out 446844 88375 bytes_in 4699513 88375 station_ip 5.120.167.197 88375 port 15728757 88375 nas_port_type Virtual 88375 remote_ip 5.5.5.187 88377 username asadi 88377 unique_id port 88377 terminate_cause User-Request 88377 bytes_out 202559 88377 bytes_in 4307024 88377 station_ip 37.129.144.62 88377 port 15728763 88377 nas_port_type Virtual 88377 remote_ip 5.5.5.191 88379 username asadi 88379 unique_id port 88379 terminate_cause User-Request 88379 bytes_out 281563 88379 bytes_in 4951870 88379 station_ip 37.129.144.62 88379 port 15728767 88379 nas_port_type Virtual 88379 remote_ip 5.5.5.191 88380 username ahmadi 88380 unique_id port 88380 terminate_cause User-Request 88380 bytes_out 31924 88380 bytes_in 354511 88380 station_ip 83.123.112.205 88380 port 15728768 88380 nas_port_type Virtual 88380 remote_ip 5.5.5.184 88386 username asadi 88386 unique_id port 88386 terminate_cause User-Request 88386 bytes_out 221237 88386 bytes_in 4011740 88386 station_ip 37.129.144.62 88386 port 15728774 88386 nas_port_type Virtual 88386 remote_ip 5.5.5.191 88394 username forozande 88394 unique_id port 88394 terminate_cause User-Request 88394 bytes_out 49602 88394 bytes_in 364385 88394 station_ip 83.122.214.233 88394 port 15728781 88394 nas_port_type Virtual 88394 remote_ip 5.5.5.182 88395 username mammad 88395 unique_id port 88395 terminate_cause User-Request 88395 bytes_out 589242 88395 bytes_in 5788585 88395 station_ip 5.233.65.129 88395 port 15728780 88395 nas_port_type Virtual 88395 remote_ip 5.5.5.226 88397 username ahmadipour 88397 unique_id port 88397 terminate_cause Lost-Carrier 88397 bytes_out 459227 88397 bytes_in 3255105 88397 station_ip 83.123.172.133 88397 port 15728782 88397 nas_port_type Virtual 88397 remote_ip 5.5.5.181 88400 username madadi 88400 unique_id port 88400 terminate_cause Lost-Carrier 88400 bytes_out 19191 88400 bytes_in 138095 88400 station_ip 5.119.234.56 88400 port 15728787 88400 nas_port_type Virtual 88400 remote_ip 5.5.5.176 88401 username aminvpn 88401 unique_id port 88401 terminate_cause User-Request 88401 bytes_out 539004 88401 bytes_in 4562857 88401 station_ip 83.123.72.35 88401 port 15728789 88401 nas_port_type Virtual 88401 remote_ip 5.5.5.174 88405 username aminvpn 88405 unique_id port 88405 terminate_cause User-Request 88405 bytes_out 868196 88405 bytes_in 6996190 88405 station_ip 5.119.100.159 88405 port 15728788 88405 nas_port_type Virtual 88405 remote_ip 5.5.5.175 88407 username alinezhad 88407 unique_id port 88407 terminate_cause User-Request 88407 bytes_out 0 88407 bytes_in 0 88407 station_ip 5.202.2.67 88407 port 15728794 88407 nas_port_type Virtual 88407 remote_ip 5.5.5.202 88422 username aminvpn 88422 mac 88422 bytes_out 0 88422 bytes_in 0 88422 station_ip 37.129.224.104 88422 port 22 88422 unique_id port 88422 remote_ip 10.8.0.6 88428 username aminvpn 88428 mac 88428 bytes_out 0 88428 bytes_in 0 88428 station_ip 83.123.72.35 88428 port 21 88428 unique_id port 88428 remote_ip 10.8.0.6 88429 username aminvpn 88429 mac 88429 bytes_out 60357 88429 bytes_in 93027 88429 station_ip 37.129.224.104 88429 port 22 88429 unique_id port 88429 remote_ip 10.8.0.6 88434 username mahbobeh 88434 unique_id port 88434 terminate_cause Lost-Carrier 88434 bytes_out 582275 88434 bytes_in 7960149 88434 station_ip 37.129.212.60 88434 port 15728811 88434 nas_port_type Virtual 88387 terminate_cause Lost-Carrier 88387 bytes_out 1610856 88387 bytes_in 34789483 88387 station_ip 5.120.58.27 88387 port 15728758 88387 nas_port_type Virtual 88387 remote_ip 5.5.5.241 88388 username aminvpn 88388 unique_id port 88388 terminate_cause Lost-Carrier 88388 bytes_out 11899845 88388 bytes_in 251355626 88388 station_ip 5.119.106.197 88388 port 15728732 88388 nas_port_type Virtual 88388 remote_ip 5.5.5.197 88392 username forozande 88392 unique_id port 88392 terminate_cause User-Request 88392 bytes_out 42181 88392 bytes_in 243940 88392 station_ip 83.122.214.233 88392 port 15728778 88392 nas_port_type Virtual 88392 remote_ip 5.5.5.182 88393 username forozande 88393 unique_id port 88393 terminate_cause User-Request 88393 bytes_out 183452 88393 bytes_in 4169275 88393 station_ip 83.122.214.233 88393 port 15728779 88393 nas_port_type Virtual 88393 remote_ip 5.5.5.182 88402 username caferibar 88402 unique_id port 88402 terminate_cause Lost-Carrier 88402 bytes_out 5537379 88402 bytes_in 20590686 88402 station_ip 5.122.121.217 88402 port 15728791 88402 nas_port_type Virtual 88402 remote_ip 5.5.5.172 88403 username ksrkrgr 88403 unique_id port 88403 terminate_cause User-Request 88403 bytes_out 32211343 88403 bytes_in 977157605 88403 station_ip 5.233.80.100 88403 port 15728786 88403 nas_port_type Virtual 88403 remote_ip 5.5.5.177 88404 username forozande 88404 unique_id port 88404 terminate_cause User-Request 88404 bytes_out 93551 88404 bytes_in 1235321 88404 station_ip 83.122.96.21 88404 port 15728792 88404 nas_port_type Virtual 88404 remote_ip 5.5.5.171 88408 username farhad 88408 unique_id port 88408 terminate_cause Lost-Carrier 88408 bytes_out 10160586 88408 bytes_in 190896523 88408 station_ip 5.119.239.189 88408 port 15728785 88408 nas_port_type Virtual 88408 remote_ip 5.5.5.178 88409 username farhad 88409 unique_id port 88409 terminate_cause Lost-Carrier 88409 bytes_out 2642645 88409 bytes_in 50806215 88409 station_ip 5.120.3.100 88409 port 15728793 88409 nas_port_type Virtual 88409 remote_ip 5.5.5.170 88418 username caferibar 88418 unique_id port 88418 terminate_cause User-Request 88418 bytes_out 66884 88418 bytes_in 336066 88418 station_ip 217.60.147.130 88418 port 15728805 88418 nas_port_type Virtual 88418 remote_ip 5.5.5.165 88421 username aminvpn 88421 mac 88421 bytes_out 1231748 88421 bytes_in 9696399 88421 station_ip 83.123.72.35 88421 port 21 88421 unique_id port 88421 remote_ip 10.8.0.6 88424 username aminvpn 88424 mac 88424 bytes_out 0 88424 bytes_in 0 88424 station_ip 37.129.224.104 88424 port 22 88424 unique_id port 88424 remote_ip 10.8.0.6 88426 username aminvpn 88426 mac 88426 bytes_out 0 88426 bytes_in 0 88426 station_ip 37.129.224.104 88426 port 22 88426 unique_id port 88426 remote_ip 10.8.0.6 88431 username caferibar 88431 unique_id port 88431 terminate_cause Lost-Carrier 88431 bytes_out 784928 88431 bytes_in 9842419 88431 station_ip 5.122.62.215 88431 port 15728810 88431 nas_port_type Virtual 88431 remote_ip 5.5.5.161 88435 username farhad 88435 unique_id port 88435 terminate_cause Lost-Carrier 88435 bytes_out 2818185 88435 bytes_in 51866148 88435 station_ip 5.120.138.164 88435 port 15728814 88435 nas_port_type Virtual 88435 remote_ip 5.5.5.158 88436 username forozande 88436 unique_id port 88436 terminate_cause User-Request 88436 bytes_out 252570 88436 bytes_in 4231227 88436 station_ip 37.129.126.251 88436 port 15728816 88436 nas_port_type Virtual 88436 remote_ip 5.5.5.156 88438 username arman 88438 unique_id port 88438 terminate_cause Lost-Carrier 88438 bytes_out 2157939 88438 bytes_in 14746101 88410 nas_port_type Virtual 88410 remote_ip 5.5.5.217 88411 username forozande 88411 unique_id port 88411 terminate_cause User-Request 88411 bytes_out 68633 88411 bytes_in 604335 88411 station_ip 37.129.104.160 88411 port 15728800 88411 nas_port_type Virtual 88411 remote_ip 5.5.5.167 88413 username avaanna 88413 unique_id port 88413 terminate_cause User-Request 88413 bytes_out 0 88413 bytes_in 0 88413 station_ip 83.123.58.158 88413 port 15728804 88413 nas_port_type Virtual 88413 remote_ip 5.5.5.166 88414 username aminvpn 88414 unique_id port 88414 terminate_cause Lost-Carrier 88414 bytes_out 6848337 88414 bytes_in 36639444 88414 station_ip 5.119.100.159 88414 port 15728799 88414 nas_port_type Virtual 88414 remote_ip 5.5.5.175 88416 username amirabbas 88416 unique_id port 88416 terminate_cause User-Request 88416 bytes_out 1253131 88416 bytes_in 16217100 88416 station_ip 31.56.156.248 88416 port 15728803 88416 nas_port_type Virtual 88416 remote_ip 5.5.5.217 88417 username farhad 88417 unique_id port 88417 terminate_cause Lost-Carrier 88417 bytes_out 2699882 88417 bytes_in 29080690 88417 station_ip 5.119.187.39 88417 port 15728798 88417 nas_port_type Virtual 88417 remote_ip 5.5.5.168 88420 username ksrkrgr 88420 unique_id port 88420 terminate_cause User-Request 88420 bytes_out 19734673 88420 bytes_in 669674049 88420 station_ip 5.233.80.100 88420 port 15728797 88420 nas_port_type Virtual 88420 remote_ip 5.5.5.177 88433 username ksrkrgr 88433 unique_id port 88433 terminate_cause User-Request 88433 bytes_out 742957 88433 bytes_in 14117404 88433 station_ip 5.233.80.100 88433 port 15728813 88433 nas_port_type Virtual 88433 remote_ip 5.5.5.177 88437 username zamanialireza 88437 unique_id port 88437 terminate_cause User-Request 88437 bytes_out 0 88437 bytes_in 0 88437 station_ip 37.129.42.19 88437 port 15728817 88437 nas_port_type Virtual 88437 remote_ip 5.5.5.155 88441 username forozande 88441 unique_id port 88441 terminate_cause User-Request 88441 bytes_out 188726 88441 bytes_in 1319469 88441 station_ip 113.203.107.189 88441 port 15728823 88441 nas_port_type Virtual 88441 remote_ip 5.5.5.150 88448 username aminvpn 88448 mac 88448 bytes_out 0 88448 bytes_in 0 88448 station_ip 37.129.224.104 88448 port 21 88448 unique_id port 88448 remote_ip 10.8.0.6 88455 username aminvpn 88455 mac 88455 bytes_out 0 88455 bytes_in 0 88455 station_ip 83.122.99.156 88455 port 22 88455 unique_id port 88455 remote_ip 10.8.0.6 88458 username aminvpn 88458 mac 88458 bytes_out 0 88458 bytes_in 0 88458 station_ip 37.129.224.104 88458 port 21 88458 unique_id port 88458 remote_ip 10.8.0.6 88459 username aminvpn 88459 mac 88459 bytes_out 0 88459 bytes_in 0 88459 station_ip 83.122.99.156 88459 port 22 88459 unique_id port 88459 remote_ip 10.8.0.6 88465 username aminvpn 88465 mac 88465 bytes_out 0 88465 bytes_in 0 88465 station_ip 37.129.224.104 88465 port 21 88465 unique_id port 88465 remote_ip 10.8.0.6 88474 username aminvpn 88474 mac 88474 bytes_out 0 88474 bytes_in 0 88474 station_ip 83.122.99.156 88474 port 22 88474 unique_id port 88474 remote_ip 10.8.0.6 88476 username aminvpn 88476 mac 88476 bytes_out 0 88476 bytes_in 0 88476 station_ip 37.129.224.104 88476 port 21 88476 unique_id port 88476 remote_ip 10.8.0.6 88478 username aminvpn 88478 mac 88478 bytes_out 0 88478 bytes_in 0 88478 station_ip 37.129.224.104 88478 port 21 88478 unique_id port 88478 remote_ip 10.8.0.6 88484 username aminvpn 88484 mac 88434 remote_ip 5.5.5.160 88442 username alinezhad 88442 unique_id port 88442 terminate_cause User-Request 88442 bytes_out 0 88442 bytes_in 0 88442 station_ip 5.202.62.88 88442 port 15728824 88442 nas_port_type Virtual 88442 remote_ip 5.5.5.149 88445 username mammad 88445 unique_id port 88445 terminate_cause Lost-Carrier 88445 bytes_out 440985 88445 bytes_in 6472945 88445 station_ip 5.233.72.2 88445 port 15728815 88445 nas_port_type Virtual 88445 remote_ip 5.5.5.157 88447 username aminvpn 88447 mac 88447 bytes_out 0 88447 bytes_in 0 88447 station_ip 83.122.99.156 88447 port 22 88447 unique_id port 88447 remote_ip 10.8.0.6 88451 username aminvpn 88451 mac 88451 bytes_out 0 88451 bytes_in 0 88451 station_ip 83.122.99.156 88451 port 22 88451 unique_id port 88451 remote_ip 10.8.0.6 88452 username aminvpn 88452 mac 88452 bytes_out 0 88452 bytes_in 0 88452 station_ip 37.129.224.104 88452 port 21 88452 unique_id port 88452 remote_ip 10.8.0.6 88461 username aminvpn 88461 mac 88461 bytes_out 0 88461 bytes_in 0 88461 station_ip 83.122.99.156 88461 port 22 88461 unique_id port 88461 remote_ip 10.8.0.6 88463 username madadi 88463 unique_id port 88463 terminate_cause Lost-Carrier 88463 bytes_out 126100 88463 bytes_in 2296935 88463 station_ip 5.119.252.56 88463 port 15728825 88463 nas_port_type Virtual 88463 remote_ip 5.5.5.148 88466 username aminvpn 88466 mac 88466 bytes_out 0 88466 bytes_in 0 88466 station_ip 83.122.99.156 88466 port 22 88466 unique_id port 88466 remote_ip 10.8.0.6 88469 username aminvpn 88469 mac 88469 bytes_out 0 88469 bytes_in 0 88469 station_ip 83.122.99.156 88469 port 22 88469 unique_id port 88469 remote_ip 10.8.0.6 88475 username amirabbas 88475 unique_id port 88475 terminate_cause User-Request 88475 bytes_out 13908934 88475 bytes_in 322325228 88475 station_ip 31.56.156.248 88475 port 15728806 88475 nas_port_type Virtual 88475 remote_ip 5.5.5.217 88477 username aminvpn 88477 mac 88477 bytes_out 0 88477 bytes_in 0 88477 station_ip 83.122.99.156 88477 port 22 88477 unique_id port 88477 remote_ip 10.8.0.6 88480 username aminvpn 88480 mac 88480 bytes_out 0 88480 bytes_in 0 88480 station_ip 37.129.224.104 88480 port 21 88480 unique_id port 88480 remote_ip 10.8.0.6 88481 username aminvpn 88481 mac 88481 bytes_out 0 88481 bytes_in 0 88481 station_ip 83.122.99.156 88481 port 22 88481 unique_id port 88481 remote_ip 10.8.0.6 88487 username aminvpn 88487 mac 88487 bytes_out 0 88487 bytes_in 0 88487 station_ip 83.122.99.156 88487 port 22 88487 unique_id port 88487 remote_ip 10.8.0.6 88489 username aminvpn 88489 mac 88489 bytes_out 0 88489 bytes_in 0 88489 station_ip 37.129.224.104 88489 port 21 88489 unique_id port 88489 remote_ip 10.8.0.6 88492 username aminvpn 88492 mac 88492 bytes_out 0 88492 bytes_in 0 88492 station_ip 83.122.99.156 88492 port 22 88492 unique_id port 88492 remote_ip 10.8.0.6 88494 username aminvpn 88494 mac 88494 bytes_out 0 88494 bytes_in 0 88494 station_ip 83.122.99.156 88494 port 22 88494 unique_id port 88494 remote_ip 10.8.0.6 88497 username aminvpn 88497 mac 88497 bytes_out 0 88497 bytes_in 0 88497 station_ip 37.129.224.104 88497 port 21 88497 unique_id port 88497 remote_ip 10.8.0.6 88499 username aminvpn 88499 mac 88499 bytes_out 0 88499 bytes_in 0 88499 station_ip 37.129.224.104 88438 station_ip 5.120.98.42 88438 port 15728809 88438 nas_port_type Virtual 88438 remote_ip 5.5.5.162 88440 username ahmadi 88440 unique_id port 88440 terminate_cause User-Request 88440 bytes_out 65906 88440 bytes_in 930368 88440 station_ip 37.129.88.141 88440 port 15728821 88440 nas_port_type Virtual 88440 remote_ip 5.5.5.152 88443 username madadi 88443 unique_id port 88443 terminate_cause Lost-Carrier 88443 bytes_out 477512 88443 bytes_in 2201661 88443 station_ip 5.120.126.143 88443 port 15728820 88443 nas_port_type Virtual 88443 remote_ip 5.5.5.153 88446 username aminvpn 88446 mac 88446 bytes_out 0 88446 bytes_in 0 88446 station_ip 37.129.224.104 88446 port 21 88446 unique_id port 88446 remote_ip 10.8.0.6 88454 username aminvpn 88454 mac 88454 bytes_out 0 88454 bytes_in 0 88454 station_ip 37.129.224.104 88454 port 21 88454 unique_id port 88454 remote_ip 10.8.0.6 88457 username aminvpn 88457 mac 88457 bytes_out 0 88457 bytes_in 0 88457 station_ip 83.122.99.156 88457 port 22 88457 unique_id port 88457 remote_ip 10.8.0.6 88460 username aminvpn 88460 mac 88460 bytes_out 0 88460 bytes_in 0 88460 station_ip 37.129.224.104 88460 port 21 88460 unique_id port 88460 remote_ip 10.8.0.6 88468 username aminvpn 88468 mac 88468 bytes_out 0 88468 bytes_in 0 88468 station_ip 37.129.224.104 88468 port 21 88468 unique_id port 88468 remote_ip 10.8.0.6 88473 username aminvpn 88473 mac 88473 bytes_out 0 88473 bytes_in 0 88473 station_ip 37.129.224.104 88473 port 21 88473 unique_id port 88473 remote_ip 10.8.0.6 88483 username aminvpn 88483 mac 88483 bytes_out 0 88483 bytes_in 0 88483 station_ip 83.122.99.156 88483 port 22 88483 unique_id port 88483 remote_ip 10.8.0.6 88488 username madadi 88488 unique_id port 88488 terminate_cause Lost-Carrier 88488 bytes_out 107279 88488 bytes_in 1163253 88488 station_ip 5.120.1.138 88488 port 15728829 88488 nas_port_type Virtual 88488 remote_ip 5.5.5.145 88496 username aminvpn 88496 mac 88496 bytes_out 0 88496 bytes_in 0 88496 station_ip 83.122.99.156 88496 port 22 88496 unique_id port 88496 remote_ip 10.8.0.6 88501 username aminvpn 88501 mac 88501 bytes_out 0 88501 bytes_in 0 88501 station_ip 83.122.99.156 88501 port 22 88501 unique_id port 88501 remote_ip 10.8.0.6 88504 username aminvpn 88504 mac 88504 bytes_out 0 88504 bytes_in 0 88504 station_ip 37.129.224.104 88504 port 21 88504 unique_id port 88504 remote_ip 10.8.0.6 88506 username madadi 88506 unique_id port 88506 terminate_cause Lost-Carrier 88506 bytes_out 18583 88506 bytes_in 135926 88506 station_ip 5.119.206.63 88506 port 15728832 88506 nas_port_type Virtual 88506 remote_ip 5.5.5.144 88514 username aminvpn 88514 mac 88514 bytes_out 0 88514 bytes_in 0 88514 station_ip 37.129.224.104 88514 port 21 88514 unique_id port 88514 remote_ip 10.8.0.6 88517 username aminvpn 88517 mac 88517 bytes_out 0 88517 bytes_in 0 88517 station_ip 83.122.99.156 88517 port 22 88517 unique_id port 88517 remote_ip 10.8.0.6 88520 username aminvpn 88520 mac 88520 bytes_out 0 88520 bytes_in 0 88520 station_ip 37.129.224.104 88520 port 21 88520 unique_id port 88520 remote_ip 10.8.0.6 88521 username aminvpn 88521 mac 88521 bytes_out 0 88521 bytes_in 0 88521 station_ip 83.122.99.156 88521 port 22 88521 unique_id port 88521 remote_ip 10.8.0.6 88525 username aminvpn 88525 mac 88453 bytes_in 0 88453 station_ip 83.122.99.156 88453 port 22 88453 unique_id port 88453 remote_ip 10.8.0.6 88456 username aminvpn 88456 mac 88456 bytes_out 0 88456 bytes_in 0 88456 station_ip 37.129.224.104 88456 port 21 88456 unique_id port 88456 remote_ip 10.8.0.6 88462 username aminvpn 88462 mac 88462 bytes_out 0 88462 bytes_in 0 88462 station_ip 37.129.224.104 88462 port 21 88462 unique_id port 88462 remote_ip 10.8.0.6 88464 username aminvpn 88464 mac 88464 bytes_out 0 88464 bytes_in 0 88464 station_ip 83.122.99.156 88464 port 22 88464 unique_id port 88464 remote_ip 10.8.0.6 88467 username forozande 88467 unique_id port 88467 terminate_cause User-Request 88467 bytes_out 19369 88467 bytes_in 69421 88467 station_ip 83.122.173.30 88467 port 15728828 88467 nas_port_type Virtual 88467 remote_ip 5.5.5.146 88470 username forozande 88470 unique_id port 88470 terminate_cause User-Request 88470 bytes_out 48691 88470 bytes_in 489796 88470 station_ip 83.122.173.30 88470 port 15728830 88470 nas_port_type Virtual 88470 remote_ip 5.5.5.146 88471 username aminvpn 88471 mac 88471 bytes_out 0 88471 bytes_in 0 88471 station_ip 37.129.224.104 88471 port 21 88471 unique_id port 88471 remote_ip 10.8.0.6 88472 username aminvpn 88472 mac 88472 bytes_out 0 88472 bytes_in 0 88472 station_ip 83.122.99.156 88472 port 22 88472 unique_id port 88472 remote_ip 10.8.0.6 88479 username aminvpn 88479 mac 88479 bytes_out 0 88479 bytes_in 0 88479 station_ip 83.122.99.156 88479 port 22 88479 unique_id port 88479 remote_ip 10.8.0.6 88482 username aminvpn 88482 mac 88482 bytes_out 0 88482 bytes_in 0 88482 station_ip 37.129.224.104 88482 port 21 88482 unique_id port 88482 remote_ip 10.8.0.6 88485 username aminvpn 88485 mac 88485 bytes_out 0 88485 bytes_in 0 88485 station_ip 83.122.99.156 88485 port 22 88485 unique_id port 88485 remote_ip 10.8.0.6 88486 username aminvpn 88486 mac 88486 bytes_out 0 88486 bytes_in 0 88486 station_ip 37.129.224.104 88486 port 21 88486 unique_id port 88486 remote_ip 10.8.0.6 88490 username aminvpn 88490 mac 88490 bytes_out 0 88490 bytes_in 0 88490 station_ip 83.122.99.156 88490 port 22 88490 unique_id port 88490 remote_ip 10.8.0.6 88491 username aminvpn 88491 mac 88491 bytes_out 0 88491 bytes_in 0 88491 station_ip 37.129.224.104 88491 port 21 88491 unique_id port 88491 remote_ip 10.8.0.6 88503 username aminvpn 88503 mac 88503 bytes_out 0 88503 bytes_in 0 88503 station_ip 83.122.99.156 88503 port 22 88503 unique_id port 88503 remote_ip 10.8.0.6 88508 username aminvpn 88508 mac 88508 bytes_out 0 88508 bytes_in 0 88508 station_ip 83.122.99.156 88508 port 22 88508 unique_id port 88508 remote_ip 10.8.0.6 88510 username aminvpn 88510 mac 88510 bytes_out 0 88510 bytes_in 0 88510 station_ip 37.129.224.104 88510 port 21 88510 unique_id port 88510 remote_ip 10.8.0.6 88513 username aminvpn 88513 mac 88513 bytes_out 0 88513 bytes_in 0 88513 station_ip 83.122.99.156 88513 port 22 88513 unique_id port 88513 remote_ip 10.8.0.6 88516 username aminvpn 88516 mac 88516 bytes_out 0 88516 bytes_in 0 88516 station_ip 37.129.224.104 88516 port 21 88516 unique_id port 88516 remote_ip 10.8.0.6 88519 username aminvpn 88519 mac 88519 bytes_out 0 88519 bytes_in 0 88519 station_ip 83.122.99.156 88484 bytes_out 0 88484 bytes_in 0 88484 station_ip 37.129.224.104 88484 port 21 88484 unique_id port 88484 remote_ip 10.8.0.6 88493 username aminvpn 88493 mac 88493 bytes_out 0 88493 bytes_in 0 88493 station_ip 37.129.224.104 88493 port 21 88493 unique_id port 88493 remote_ip 10.8.0.6 88495 username aminvpn 88495 mac 88495 bytes_out 0 88495 bytes_in 0 88495 station_ip 37.129.224.104 88495 port 21 88495 unique_id port 88495 remote_ip 10.8.0.6 88498 username aminvpn 88498 mac 88498 bytes_out 0 88498 bytes_in 0 88498 station_ip 83.122.99.156 88498 port 22 88498 unique_id port 88498 remote_ip 10.8.0.6 88500 username forozande 88500 unique_id port 88500 terminate_cause User-Request 88500 bytes_out 290613 88500 bytes_in 7432168 88500 station_ip 37.129.136.211 88500 port 15728834 88500 nas_port_type Virtual 88500 remote_ip 5.5.5.142 88502 username aminvpn 88502 mac 88502 bytes_out 0 88502 bytes_in 0 88502 station_ip 37.129.224.104 88502 port 21 88502 unique_id port 88502 remote_ip 10.8.0.6 88509 username aminvpn 88509 unique_id port 88509 terminate_cause User-Request 88509 bytes_out 5640643 88509 bytes_in 3005376 88509 station_ip 83.122.99.156 88509 port 15728826 88509 nas_port_type Virtual 88509 remote_ip 5.5.5.147 88518 username aminvpn 88518 mac 88518 bytes_out 0 88518 bytes_in 0 88518 station_ip 37.129.224.104 88518 port 21 88518 unique_id port 88518 remote_ip 10.8.0.6 88522 username madadi 88522 unique_id port 88522 terminate_cause Lost-Carrier 88522 bytes_out 39155 88522 bytes_in 162667 88522 station_ip 5.120.84.218 88522 port 15728835 88522 nas_port_type Virtual 88522 remote_ip 5.5.5.141 88526 username aminvpn 88526 mac 88526 bytes_out 0 88526 bytes_in 0 88526 station_ip 83.122.99.156 88526 port 22 88526 unique_id port 88526 remote_ip 10.8.0.6 88532 username aminvpn 88532 mac 88532 bytes_out 0 88532 bytes_in 0 88532 station_ip 37.129.224.104 88532 port 21 88532 unique_id port 88532 remote_ip 10.8.0.6 88535 username kamali 88535 unique_id port 88535 terminate_cause User-Request 88535 bytes_out 203103 88535 bytes_in 198809 88535 station_ip 83.123.153.142 88535 port 15728840 88535 nas_port_type Virtual 88535 remote_ip 5.5.5.138 88546 username caferibar 88546 unique_id port 88546 terminate_cause Lost-Carrier 88546 bytes_out 705069 88546 bytes_in 8356216 88546 station_ip 5.121.239.152 88546 port 15728851 88546 nas_port_type Virtual 88546 remote_ip 5.5.5.134 88548 username aminvpn 88548 mac 88548 bytes_out 463754 88548 bytes_in 633288 88548 station_ip 83.122.99.156 88548 port 22 88548 unique_id port 88548 remote_ip 10.8.0.6 88550 username aminvpn 88550 mac 88550 bytes_out 0 88550 bytes_in 0 88550 station_ip 83.122.99.156 88550 port 22 88550 unique_id port 88550 remote_ip 10.8.0.6 88552 username aminvpn 88552 mac 88552 bytes_out 23935 88552 bytes_in 17625 88552 station_ip 83.123.170.14 88552 port 21 88552 unique_id port 88552 remote_ip 10.8.0.6 88555 username forozande 88555 unique_id port 88555 terminate_cause User-Request 88555 bytes_out 17426 88555 bytes_in 120328 88555 station_ip 113.203.118.91 88555 port 15728865 88555 nas_port_type Virtual 88555 remote_ip 5.5.5.128 88561 username bcboard 88561 unique_id port 88561 terminate_cause User-Request 88561 bytes_out 901333 88561 bytes_in 8254764 88561 station_ip 83.123.138.146 88561 port 15728853 88561 nas_port_type Virtual 88561 remote_ip 5.5.5.132 88571 username alinezhad 88571 unique_id port 88499 port 21 88499 unique_id port 88499 remote_ip 10.8.0.6 88505 username aminvpn 88505 mac 88505 bytes_out 0 88505 bytes_in 0 88505 station_ip 83.122.99.156 88505 port 22 88505 unique_id port 88505 remote_ip 10.8.0.6 88507 username aminvpn 88507 mac 88507 bytes_out 0 88507 bytes_in 0 88507 station_ip 37.129.224.104 88507 port 21 88507 unique_id port 88507 remote_ip 10.8.0.6 88511 username aminvpn 88511 mac 88511 bytes_out 0 88511 bytes_in 0 88511 station_ip 83.122.99.156 88511 port 22 88511 unique_id port 88511 remote_ip 10.8.0.6 88512 username aminvpn 88512 mac 88512 bytes_out 0 88512 bytes_in 0 88512 station_ip 37.129.224.104 88512 port 21 88512 unique_id port 88512 remote_ip 10.8.0.6 88515 username aminvpn 88515 mac 88515 bytes_out 0 88515 bytes_in 0 88515 station_ip 83.122.99.156 88515 port 22 88515 unique_id port 88515 remote_ip 10.8.0.6 88528 username aminvpn 88528 mac 88528 bytes_out 0 88528 bytes_in 0 88528 station_ip 37.129.224.104 88528 port 21 88528 unique_id port 88528 remote_ip 10.8.0.6 88541 username madadi 88541 unique_id port 88541 terminate_cause Lost-Carrier 88541 bytes_out 127586 88541 bytes_in 345235 88541 station_ip 5.120.31.83 88541 port 15728843 88541 nas_port_type Virtual 88541 remote_ip 5.5.5.136 88549 username aminvpn 88549 mac 88549 bytes_out 81751 88549 bytes_in 289178 88549 station_ip 83.123.170.14 88549 port 21 88549 unique_id port 88549 remote_ip 10.8.0.6 88562 username alinezhad 88562 unique_id port 88562 terminate_cause User-Request 88562 bytes_out 0 88562 bytes_in 0 88562 station_ip 5.202.62.88 88562 port 15728868 88562 nas_port_type Virtual 88562 remote_ip 5.5.5.149 88568 username alinezhad 88568 unique_id port 88568 terminate_cause User-Request 88568 bytes_out 0 88568 bytes_in 0 88568 station_ip 5.202.62.88 88568 port 15728875 88568 nas_port_type Virtual 88568 remote_ip 5.5.5.149 88578 username alinezhad 88578 unique_id port 88578 terminate_cause User-Request 88578 bytes_out 0 88578 bytes_in 0 88578 station_ip 83.123.97.251 88578 port 15728878 88578 nas_port_type Virtual 88578 remote_ip 5.5.5.123 88579 username alinezhad 88579 unique_id port 88579 terminate_cause User-Request 88579 bytes_out 16353 88579 bytes_in 17228 88579 station_ip 83.123.97.251 88579 port 15728882 88579 nas_port_type Virtual 88579 remote_ip 5.5.5.123 88580 username farhad 88580 unique_id port 88580 terminate_cause Lost-Carrier 88580 bytes_out 18083712 88580 bytes_in 140076542 88580 station_ip 5.120.6.232 88580 port 15728874 88580 nas_port_type Virtual 88580 remote_ip 5.5.5.125 88581 username ahmadipour 88581 unique_id port 88581 terminate_cause Lost-Carrier 88581 bytes_out 711059 88581 bytes_in 3401642 88581 station_ip 83.123.197.133 88581 port 15728881 88581 nas_port_type Virtual 88581 remote_ip 5.5.5.121 88586 username caferibar 88586 unique_id port 88586 terminate_cause Lost-Carrier 88586 bytes_out 819966 88586 bytes_in 22095938 88586 station_ip 5.134.146.129 88586 port 15728886 88586 nas_port_type Virtual 88586 remote_ip 5.5.5.120 88592 username mahbobeh 88592 unique_id port 88592 terminate_cause Lost-Carrier 88592 bytes_out 918262 88592 bytes_in 18930144 88592 station_ip 37.129.212.60 88592 port 15728831 88592 nas_port_type Virtual 88592 remote_ip 5.5.5.160 88594 username aminvpn 88594 mac 88594 bytes_out 1013710 88594 bytes_in 13505135 88594 station_ip 5.119.106.197 88594 port 21 88594 unique_id port 88594 remote_ip 10.8.0.6 88598 username alinezhad 88519 port 22 88519 unique_id port 88519 remote_ip 10.8.0.6 88523 username aminvpn 88523 mac 88523 bytes_out 0 88523 bytes_in 0 88523 station_ip 37.129.224.104 88523 port 21 88523 unique_id port 88523 remote_ip 10.8.0.6 88524 username aminvpn 88524 mac 88524 bytes_out 0 88524 bytes_in 0 88524 station_ip 83.122.99.156 88524 port 22 88524 unique_id port 88524 remote_ip 10.8.0.6 88527 username heydari 88527 unique_id port 88527 terminate_cause User-Request 88527 bytes_out 181685 88527 bytes_in 836056 88527 station_ip 5.120.10.63 88527 port 15728833 88527 nas_port_type Virtual 88527 remote_ip 5.5.5.143 88529 username aminvpn 88529 mac 88529 bytes_out 0 88529 bytes_in 0 88529 station_ip 83.122.99.156 88529 port 22 88529 unique_id port 88529 remote_ip 10.8.0.6 88534 username madadi 88534 unique_id port 88534 terminate_cause Lost-Carrier 88534 bytes_out 20117 88534 bytes_in 144394 88534 station_ip 5.119.207.29 88534 port 15728836 88534 nas_port_type Virtual 88534 remote_ip 5.5.5.140 88538 username asadi 88538 unique_id port 88538 terminate_cause User-Request 88538 bytes_out 95372 88538 bytes_in 975050 88538 station_ip 37.129.17.190 88538 port 15728844 88538 nas_port_type Virtual 88538 remote_ip 5.5.5.159 88539 username farhad 88539 unique_id port 88539 terminate_cause User-Request 88539 bytes_out 0 88539 bytes_in 0 88539 station_ip 5.119.103.182 88539 port 15728845 88539 nas_port_type Virtual 88539 remote_ip 5.5.5.135 88544 username aminvpn 88544 unique_id port 88544 terminate_cause User-Request 88544 bytes_out 5190007 88544 bytes_in 835641 88544 station_ip 83.122.99.156 88544 port 15728852 88544 nas_port_type Virtual 88544 remote_ip 5.5.5.147 88554 username forozande 88554 unique_id port 88554 terminate_cause User-Request 88554 bytes_out 66367 88554 bytes_in 648409 88554 station_ip 113.203.118.91 88554 port 15728864 88554 nas_port_type Virtual 88554 remote_ip 5.5.5.128 88557 username mammad 88557 unique_id port 88557 terminate_cause User-Request 88557 bytes_out 461482 88557 bytes_in 4078980 88557 station_ip 46.100.218.208 88557 port 15728859 88557 nas_port_type Virtual 88557 remote_ip 5.5.5.129 88558 username aminvpn 88558 mac 88558 bytes_out 40646 88558 bytes_in 118104 88558 station_ip 83.123.170.14 88558 port 35 88558 unique_id port 88558 remote_ip 10.8.1.10 88559 username alinezhad 88559 unique_id port 88559 terminate_cause User-Request 88559 bytes_out 0 88559 bytes_in 0 88559 station_ip 5.202.62.88 88559 port 15728866 88559 nas_port_type Virtual 88559 remote_ip 5.5.5.149 88560 username aminvpn 88560 unique_id port 88560 terminate_cause Lost-Carrier 88560 bytes_out 3037876 88560 bytes_in 11831589 88560 station_ip 5.119.106.197 88560 port 15728827 88560 nas_port_type Virtual 88560 remote_ip 5.5.5.197 88565 username asadi 88565 unique_id port 88565 terminate_cause User-Request 88565 bytes_out 10455 88565 bytes_in 24354 88565 station_ip 37.129.17.190 88565 port 15728871 88565 nas_port_type Virtual 88565 remote_ip 5.5.5.159 88566 username aminvpn 88566 mac 88566 bytes_out 1677506 88566 bytes_in 25066921 88566 station_ip 83.122.99.156 88566 port 22 88566 unique_id port 88566 remote_ip 10.8.0.6 88569 username aminvpn 88569 kill_reason Another user logged on this global unique id 88569 mac 88569 bytes_out 0 88569 bytes_in 0 88569 station_ip 83.122.99.156 88569 port 21 88569 unique_id port 88569 remote_ip 10.8.0.6 88582 username mammad 88582 unique_id port 88582 terminate_cause User-Request 88582 bytes_out 2275195 88582 bytes_in 55376521 88525 bytes_out 0 88525 bytes_in 0 88525 station_ip 37.129.224.104 88525 port 21 88525 unique_id port 88525 remote_ip 10.8.0.6 88530 username aminvpn 88530 mac 88530 bytes_out 0 88530 bytes_in 0 88530 station_ip 37.129.224.104 88530 port 21 88530 unique_id port 88530 remote_ip 10.8.0.6 88531 username aminvpn 88531 mac 88531 bytes_out 0 88531 bytes_in 0 88531 station_ip 83.122.99.156 88531 port 22 88531 unique_id port 88531 remote_ip 10.8.0.6 88533 username kamali 88533 unique_id port 88533 terminate_cause User-Request 88533 bytes_out 500533 88533 bytes_in 221721 88533 station_ip 83.123.153.142 88533 port 15728839 88533 nas_port_type Virtual 88533 remote_ip 5.5.5.138 88536 username madadi 88536 unique_id port 88536 terminate_cause Lost-Carrier 88536 bytes_out 43886 88536 bytes_in 189780 88536 station_ip 5.119.3.93 88536 port 15728837 88536 nas_port_type Virtual 88536 remote_ip 5.5.5.139 88537 username madadi 88537 unique_id port 88537 terminate_cause Lost-Carrier 88537 bytes_out 93421 88537 bytes_in 246229 88537 station_ip 5.119.60.44 88537 port 15728841 88537 nas_port_type Virtual 88537 remote_ip 5.5.5.137 88540 username caferibar 88540 unique_id port 88540 terminate_cause User-Request 88540 bytes_out 0 88540 bytes_in 0 88540 station_ip 5.121.239.152 88540 port 15728848 88540 nas_port_type Virtual 88540 remote_ip 5.5.5.134 88542 username alinezhad 88542 unique_id port 88542 terminate_cause User-Request 88542 bytes_out 62906 88542 bytes_in 452338 88542 station_ip 5.202.62.88 88542 port 15728850 88542 nas_port_type Virtual 88542 remote_ip 5.5.5.149 88543 username khalili 88543 unique_id port 88543 terminate_cause User-Request 88543 bytes_out 7559842 88543 bytes_in 13872045 88543 station_ip 5.120.103.23 88543 port 15728819 88543 nas_port_type Virtual 88543 remote_ip 5.5.5.242 88545 username forozande 88545 unique_id port 88545 terminate_cause User-Request 88545 bytes_out 264921 88545 bytes_in 2028993 88545 station_ip 83.123.192.45 88545 port 15728855 88545 nas_port_type Virtual 88545 remote_ip 5.5.5.131 88547 username madadi 88547 unique_id port 88547 terminate_cause Lost-Carrier 88547 bytes_out 507847 88547 bytes_in 6968508 88547 station_ip 5.120.156.140 88547 port 15728849 88547 nas_port_type Virtual 88547 remote_ip 5.5.5.133 88551 username heydari 88551 unique_id port 88551 terminate_cause User-Request 88551 bytes_out 40412 88551 bytes_in 147897 88551 station_ip 5.119.11.246 88551 port 15728857 88551 nas_port_type Virtual 88551 remote_ip 5.5.5.243 88553 username zamanialireza 88553 unique_id port 88553 terminate_cause User-Request 88553 bytes_out 331209 88553 bytes_in 1301803 88553 station_ip 37.129.84.53 88553 port 15728856 88553 nas_port_type Virtual 88553 remote_ip 5.5.5.130 88556 username aminvpn 88556 unique_id port 88556 terminate_cause User-Request 88556 bytes_out 5504566 88556 bytes_in 71346397 88556 station_ip 5.119.106.197 88556 port 15728838 88556 nas_port_type Virtual 88556 remote_ip 5.5.5.237 88563 username alinezhad 88563 unique_id port 88563 terminate_cause User-Request 88563 bytes_out 0 88563 bytes_in 0 88563 station_ip 5.202.62.88 88563 port 15728869 88563 nas_port_type Virtual 88563 remote_ip 5.5.5.149 88564 username alinezhad 88564 unique_id port 88564 terminate_cause User-Request 88564 bytes_out 0 88564 bytes_in 0 88564 station_ip 5.202.62.88 88564 port 15728872 88564 nas_port_type Virtual 88564 remote_ip 5.5.5.149 88567 username farhad 88567 unique_id port 88567 terminate_cause Lost-Carrier 88567 bytes_out 20744113 88567 bytes_in 291632018 88567 station_ip 5.119.103.182 88567 port 15728846 88567 nas_port_type Virtual 88567 remote_ip 5.5.5.135 88570 username aminvpn 88570 kill_reason Another user logged on this global unique id 88570 mac 88570 bytes_out 0 88570 bytes_in 0 88570 station_ip 83.122.99.156 88570 port 21 88570 unique_id port 88574 username musanejad 88574 unique_id port 88574 terminate_cause Lost-Carrier 88574 bytes_out 3056305 88574 bytes_in 27925053 88574 station_ip 5.119.215.206 88574 port 15728867 88574 nas_port_type Virtual 88574 remote_ip 5.5.5.127 88576 username bcboard 88576 unique_id port 88576 terminate_cause User-Request 88576 bytes_out 992555 88576 bytes_in 5678561 88576 station_ip 37.129.190.91 88576 port 15728876 88576 nas_port_type Virtual 88576 remote_ip 5.5.5.124 88583 username caferibar 88583 unique_id port 88583 terminate_cause Lost-Carrier 88583 bytes_out 8581447 88583 bytes_in 142709728 88583 station_ip 5.121.126.0 88583 port 15728880 88583 nas_port_type Virtual 88583 remote_ip 5.5.5.122 88587 username ahmadipour 88587 unique_id port 88587 terminate_cause Lost-Carrier 88587 bytes_out 785090 88587 bytes_in 7704180 88587 station_ip 83.123.227.197 88587 port 15728890 88587 nas_port_type Virtual 88587 remote_ip 5.5.5.116 88588 username caferibar 88588 unique_id port 88588 terminate_cause Lost-Carrier 88588 bytes_out 1683483 88588 bytes_in 50975670 88588 station_ip 5.134.164.34 88588 port 15728888 88588 nas_port_type Virtual 88588 remote_ip 5.5.5.118 88593 username musanejad 88593 unique_id port 88593 terminate_cause Lost-Carrier 88593 bytes_out 1936258 88593 bytes_in 17809335 88593 station_ip 5.120.176.222 88593 port 15728899 88593 nas_port_type Virtual 88593 remote_ip 5.5.5.114 88599 username aminvpn 88599 mac 88599 bytes_out 0 88599 bytes_in 0 88599 station_ip 83.122.116.200 88599 port 21 88599 unique_id port 88599 remote_ip 10.8.0.6 88601 username aminvpn 88601 mac 88601 bytes_out 0 88601 bytes_in 0 88601 station_ip 83.122.116.200 88601 port 21 88601 unique_id port 88601 remote_ip 10.8.0.6 88604 username aminvpn 88604 mac 88604 bytes_out 0 88604 bytes_in 0 88604 station_ip 37.129.129.72 88604 port 22 88604 unique_id port 88604 remote_ip 10.8.0.6 88611 username aminvpn 88611 mac 88611 bytes_out 0 88611 bytes_in 0 88611 station_ip 83.122.116.200 88611 port 21 88611 unique_id port 88611 remote_ip 10.8.0.6 88616 username madadi 88616 unique_id port 88616 terminate_cause Lost-Carrier 88616 bytes_out 53992 88616 bytes_in 222840 88616 station_ip 5.120.0.74 88616 port 15728644 88616 nas_port_type Virtual 88616 remote_ip 5.5.5.251 88622 username aminvpn 88622 mac 88622 bytes_out 0 88622 bytes_in 0 88622 station_ip 83.122.116.200 88622 port 21 88622 unique_id port 88622 remote_ip 10.8.0.6 88627 username aminvpn 88627 mac 88627 bytes_out 91431 88627 bytes_in 185481 88627 station_ip 37.129.129.72 88627 port 22 88627 unique_id port 88627 remote_ip 10.8.0.6 88629 username madadi 88629 unique_id port 88629 terminate_cause Lost-Carrier 88629 bytes_out 11319 88629 bytes_in 131826 88629 station_ip 5.120.83.253 88629 port 15728648 88629 nas_port_type Virtual 88629 remote_ip 5.5.5.248 88631 username aminvpn 88631 mac 88631 bytes_out 0 88631 bytes_in 0 88631 station_ip 83.122.116.200 88631 port 21 88631 unique_id port 88631 remote_ip 10.8.0.6 88644 username aminvpn 88644 mac 88644 bytes_out 0 88644 bytes_in 0 88644 station_ip 83.122.116.200 88644 port 21 88644 unique_id port 88644 remote_ip 10.8.0.6 88650 username aminvpn 88650 mac 88571 terminate_cause User-Request 88571 bytes_out 0 88571 bytes_in 0 88571 station_ip 83.123.97.251 88571 port 15728877 88571 nas_port_type Virtual 88571 remote_ip 5.5.5.123 88572 username aminvpn 88572 mac 88572 bytes_out 0 88572 bytes_in 0 88572 station_ip 83.122.99.156 88572 port 21 88572 unique_id port 88573 username heydari 88573 unique_id port 88573 terminate_cause User-Request 88573 bytes_out 541818 88573 bytes_in 5666861 88573 station_ip 5.119.11.246 88573 port 15728873 88573 nas_port_type Virtual 88573 remote_ip 5.5.5.243 88575 username madadi 88575 unique_id port 88575 terminate_cause Lost-Carrier 88575 bytes_out 1013882 88575 bytes_in 2535098 88575 station_ip 5.120.62.51 88575 port 15728870 88575 nas_port_type Virtual 88575 remote_ip 5.5.5.126 88577 username khalili 88577 unique_id port 88577 terminate_cause Lost-Carrier 88577 bytes_out 5309432 88577 bytes_in 113017854 88577 station_ip 5.120.103.23 88577 port 15728854 88577 nas_port_type Virtual 88577 remote_ip 5.5.5.242 88584 username mammad 88584 unique_id port 88584 terminate_cause User-Request 88584 bytes_out 954267 88584 bytes_in 24824231 88584 station_ip 46.100.218.208 88584 port 15728884 88584 nas_port_type Virtual 88584 remote_ip 5.5.5.129 88590 username zamanialireza 88590 unique_id port 88590 terminate_cause User-Request 88590 bytes_out 1353176 88590 bytes_in 22101693 88590 station_ip 5.160.114.28 88590 port 15728895 88590 nas_port_type Virtual 88590 remote_ip 5.5.5.185 88595 username ahmadi 88595 unique_id port 88595 terminate_cause User-Request 88595 bytes_out 67509 88595 bytes_in 903847 88595 station_ip 37.129.6.161 88595 port 15728901 88595 nas_port_type Virtual 88595 remote_ip 5.5.5.112 88596 username musanejad 88596 kill_reason Maximum check online fails reached 88596 unique_id port 88596 bytes_out 1698683 88596 bytes_in 29335495 88596 station_ip 5.120.176.39 88596 port 15728900 88596 nas_port_type Virtual 88596 remote_ip 5.5.5.113 88597 username mahbobeh 88597 unique_id port 88597 terminate_cause Admin-Reboot 88597 bytes_out 269754 88597 bytes_in 3970285 88597 station_ip 83.122.143.160 88597 port 15728902 88597 nas_port_type Virtual 88597 remote_ip 5.5.5.111 88602 username aminvpn 88602 mac 88602 bytes_out 0 88602 bytes_in 0 88602 station_ip 37.129.129.72 88602 port 22 88602 unique_id port 88602 remote_ip 10.8.0.6 88608 username asadi 88608 unique_id port 88608 terminate_cause User-Request 88608 bytes_out 237669 88608 bytes_in 5831966 88608 station_ip 83.123.231.118 88608 port 15728645 88608 nas_port_type Virtual 88608 remote_ip 5.5.5.250 88609 username asadi 88609 unique_id port 88609 terminate_cause User-Request 88609 bytes_out 62786 88609 bytes_in 287628 88609 station_ip 83.123.231.118 88609 port 15728646 88609 nas_port_type Virtual 88609 remote_ip 5.5.5.250 88612 username aminvpn 88612 mac 88612 bytes_out 0 88612 bytes_in 0 88612 station_ip 37.129.129.72 88612 port 22 88612 unique_id port 88612 remote_ip 10.8.0.6 88613 username aminvpn 88613 mac 88613 bytes_out 0 88613 bytes_in 0 88613 station_ip 83.122.116.200 88613 port 21 88613 unique_id port 88613 remote_ip 10.8.0.6 88615 username aminvpn 88615 mac 88615 bytes_out 0 88615 bytes_in 0 88615 station_ip 83.122.116.200 88615 port 21 88615 unique_id port 88615 remote_ip 10.8.0.6 88620 username aminvpn 88620 mac 88620 bytes_out 0 88620 bytes_in 0 88620 station_ip 83.122.116.200 88620 port 21 88620 unique_id port 88620 remote_ip 10.8.0.6 88623 username aminvpn 88623 mac 88623 bytes_out 0 88623 bytes_in 0 88582 station_ip 46.100.218.208 88582 port 15728883 88582 nas_port_type Virtual 88582 remote_ip 5.5.5.129 88585 username ahmadipour 88585 unique_id port 88585 terminate_cause Lost-Carrier 88585 bytes_out 1515213 88585 bytes_in 2589509 88585 station_ip 83.123.218.197 88585 port 15728887 88585 nas_port_type Virtual 88585 remote_ip 5.5.5.119 88589 username bcboard 88589 unique_id port 88589 terminate_cause User-Request 88589 bytes_out 372819 88589 bytes_in 4135234 88589 station_ip 113.203.21.248 88589 port 15728894 88589 nas_port_type Virtual 88589 remote_ip 5.5.5.115 88591 username majid 88591 unique_id port 88591 terminate_cause User-Request 88591 bytes_out 3278635 88591 bytes_in 80876392 88591 station_ip 86.57.48.101 88591 port 15728889 88591 nas_port_type Virtual 88591 remote_ip 5.5.5.117 88598 unique_id port 88598 terminate_cause User-Request 88598 bytes_out 0 88598 bytes_in 0 88598 station_ip 113.203.55.42 88598 port 15728642 88598 nas_port_type Virtual 88598 remote_ip 5.5.5.253 88600 username aminvpn 88600 mac 88600 bytes_out 118070 88600 bytes_in 409995 88600 station_ip 37.129.129.72 88600 port 22 88600 unique_id port 88600 remote_ip 10.8.0.6 88603 username aminvpn 88603 mac 88603 bytes_out 0 88603 bytes_in 0 88603 station_ip 83.122.116.200 88603 port 21 88603 unique_id port 88603 remote_ip 10.8.0.6 88607 username aminvpn 88607 mac 88607 bytes_out 0 88607 bytes_in 0 88607 station_ip 83.122.116.200 88607 port 21 88607 unique_id port 88607 remote_ip 10.8.0.6 88610 username aminvpn 88610 mac 88610 bytes_out 1010017 88610 bytes_in 19840763 88610 station_ip 37.129.129.72 88610 port 22 88610 unique_id port 88610 remote_ip 10.8.0.6 88614 username aminvpn 88614 mac 88614 bytes_out 0 88614 bytes_in 0 88614 station_ip 37.129.129.72 88614 port 22 88614 unique_id port 88614 remote_ip 10.8.0.6 88618 username aminvpn 88618 mac 88618 bytes_out 0 88618 bytes_in 0 88618 station_ip 83.122.116.200 88618 port 21 88618 unique_id port 88618 remote_ip 10.8.0.6 88619 username aminvpn 88619 mac 88619 bytes_out 0 88619 bytes_in 0 88619 station_ip 37.129.129.72 88619 port 22 88619 unique_id port 88619 remote_ip 10.8.0.6 88624 username aminvpn 88624 mac 88624 bytes_out 0 88624 bytes_in 0 88624 station_ip 83.122.116.200 88624 port 21 88624 unique_id port 88624 remote_ip 10.8.0.6 88625 username aminvpn 88625 mac 88625 bytes_out 11127 88625 bytes_in 10836 88625 station_ip 37.129.129.72 88625 port 22 88625 unique_id port 88625 remote_ip 10.8.0.6 88626 username aminvpn 88626 mac 88626 bytes_out 0 88626 bytes_in 0 88626 station_ip 83.122.116.200 88626 port 21 88626 unique_id port 88626 remote_ip 10.8.0.6 88630 username aminvpn 88630 mac 88630 bytes_out 0 88630 bytes_in 0 88630 station_ip 37.129.129.72 88630 port 22 88630 unique_id port 88630 remote_ip 10.8.0.6 88632 username aminvpn 88632 mac 88632 bytes_out 0 88632 bytes_in 0 88632 station_ip 37.129.129.72 88632 port 22 88632 unique_id port 88632 remote_ip 10.8.0.6 88636 username aminvpn 88636 mac 88636 bytes_out 0 88636 bytes_in 0 88636 station_ip 37.129.129.72 88636 port 22 88636 unique_id port 88636 remote_ip 10.8.0.6 88641 username madadi 88641 unique_id port 88641 terminate_cause Lost-Carrier 88641 bytes_out 6768 88641 bytes_in 124313 88641 station_ip 5.120.64.197 88641 port 15728652 88641 nas_port_type Virtual 88641 remote_ip 5.5.5.247 88605 username aminvpn 88605 mac 88605 bytes_out 0 88605 bytes_in 0 88605 station_ip 83.122.116.200 88605 port 21 88605 unique_id port 88605 remote_ip 10.8.0.6 88606 username aminvpn 88606 mac 88606 bytes_out 0 88606 bytes_in 0 88606 station_ip 37.129.129.72 88606 port 22 88606 unique_id port 88606 remote_ip 10.8.0.6 88617 username aminvpn 88617 mac 88617 bytes_out 0 88617 bytes_in 0 88617 station_ip 37.129.129.72 88617 port 22 88617 unique_id port 88617 remote_ip 10.8.0.6 88621 username aminvpn 88621 mac 88621 bytes_out 0 88621 bytes_in 0 88621 station_ip 37.129.129.72 88621 port 22 88621 unique_id port 88621 remote_ip 10.8.0.6 88635 username aminvpn 88635 mac 88635 bytes_out 322656 88635 bytes_in 2336670 88635 station_ip 83.122.116.200 88635 port 21 88635 unique_id port 88635 remote_ip 10.8.0.6 88637 username aminvpn 88637 mac 88637 bytes_out 0 88637 bytes_in 0 88637 station_ip 83.122.116.200 88637 port 21 88637 unique_id port 88637 remote_ip 10.8.0.6 88639 username aminvpn 88639 mac 88639 bytes_out 0 88639 bytes_in 0 88639 station_ip 37.129.129.72 88639 port 22 88639 unique_id port 88639 remote_ip 10.8.0.6 88643 username aminvpn 88643 mac 88643 bytes_out 0 88643 bytes_in 0 88643 station_ip 37.129.129.72 88643 port 22 88643 unique_id port 88643 remote_ip 10.8.0.6 88647 username aminvpn 88647 mac 88647 bytes_out 0 88647 bytes_in 0 88647 station_ip 37.129.129.72 88647 port 22 88647 unique_id port 88647 remote_ip 10.8.0.6 88655 username aminvpn 88655 mac 88655 bytes_out 87572 88655 bytes_in 134753 88655 station_ip 83.122.116.200 88655 port 21 88655 unique_id port 88655 remote_ip 10.8.0.6 88658 username aminvpn 88658 mac 88658 bytes_out 0 88658 bytes_in 0 88658 station_ip 83.122.116.200 88658 port 21 88658 unique_id port 88658 remote_ip 10.8.0.6 88660 username aminvpn 88660 mac 88660 bytes_out 41328 88660 bytes_in 63775 88660 station_ip 83.122.116.200 88660 port 21 88660 unique_id port 88660 remote_ip 10.8.0.6 88667 username aminvpn 88667 mac 88667 bytes_out 0 88667 bytes_in 0 88667 station_ip 83.122.116.200 88667 port 21 88667 unique_id port 88667 remote_ip 10.8.0.6 88677 username forozande 88677 unique_id port 88677 terminate_cause User-Request 88677 bytes_out 36158 88677 bytes_in 397171 88677 station_ip 83.123.6.39 88677 port 15728664 88677 nas_port_type Virtual 88677 remote_ip 5.5.5.240 88684 username forozande 88684 unique_id port 88684 terminate_cause User-Request 88684 bytes_out 29785 88684 bytes_in 272158 88684 station_ip 83.123.63.163 88684 port 15728672 88684 nas_port_type Virtual 88684 remote_ip 5.5.5.238 88697 username avaanna 88697 unique_id port 88697 terminate_cause User-Request 88697 bytes_out 14245 88697 bytes_in 42310 88697 station_ip 37.129.105.131 88697 port 15728687 88697 nas_port_type Virtual 88697 remote_ip 5.5.5.232 88707 username aminvpn 88707 mac 88707 bytes_out 0 88707 bytes_in 0 88707 station_ip 37.129.163.206 88707 port 22 88707 unique_id port 88707 remote_ip 10.8.0.6 88710 username aminvpn 88710 mac 88710 bytes_out 0 88710 bytes_in 0 88710 station_ip 37.129.129.72 88710 port 21 88710 unique_id port 88710 remote_ip 10.8.0.6 88711 username aminvpn 88711 mac 88711 bytes_out 0 88711 bytes_in 0 88711 station_ip 37.129.163.206 88711 port 22 88711 unique_id port 88711 remote_ip 10.8.0.6 88623 station_ip 37.129.129.72 88623 port 22 88623 unique_id port 88623 remote_ip 10.8.0.6 88628 username aminvpn 88628 mac 88628 bytes_out 0 88628 bytes_in 0 88628 station_ip 83.122.116.200 88628 port 21 88628 unique_id port 88628 remote_ip 10.8.0.6 88633 username forozande 88633 unique_id port 88633 terminate_cause User-Request 88633 bytes_out 294474 88633 bytes_in 4769598 88633 station_ip 37.129.84.188 88633 port 15728653 88633 nas_port_type Virtual 88633 remote_ip 5.5.5.246 88634 username musanejad 88634 unique_id port 88634 terminate_cause Lost-Carrier 88634 bytes_out 972192 88634 bytes_in 14831783 88634 station_ip 5.119.20.220 88634 port 15728643 88634 nas_port_type Virtual 88634 remote_ip 5.5.5.252 88638 username alinezhad 88638 unique_id port 88638 terminate_cause User-Request 88638 bytes_out 0 88638 bytes_in 0 88638 station_ip 113.203.55.42 88638 port 15728654 88638 nas_port_type Virtual 88638 remote_ip 5.5.5.253 88640 username caferibar 88640 unique_id port 88640 terminate_cause Lost-Carrier 88640 bytes_out 971769 88640 bytes_in 11732551 88640 station_ip 92.114.77.41 88640 port 15728647 88640 nas_port_type Virtual 88640 remote_ip 5.5.5.249 88642 username aminvpn 88642 mac 88642 bytes_out 56436 88642 bytes_in 88172 88642 station_ip 83.122.116.200 88642 port 21 88642 unique_id port 88642 remote_ip 10.8.0.6 88645 username aminvpn 88645 mac 88645 bytes_out 0 88645 bytes_in 0 88645 station_ip 37.129.129.72 88645 port 22 88645 unique_id port 88645 remote_ip 10.8.0.6 88648 username aminvpn 88648 mac 88648 bytes_out 0 88648 bytes_in 0 88648 station_ip 83.122.116.200 88648 port 21 88648 unique_id port 88648 remote_ip 10.8.0.6 88649 username aminvpn 88649 mac 88649 bytes_out 0 88649 bytes_in 0 88649 station_ip 37.129.129.72 88649 port 22 88649 unique_id port 88649 remote_ip 10.8.0.6 88656 username aminvpn 88656 mac 88656 bytes_out 0 88656 bytes_in 0 88656 station_ip 83.122.116.200 88656 port 21 88656 unique_id port 88656 remote_ip 10.8.0.6 88657 username aminvpn 88657 mac 88657 bytes_out 0 88657 bytes_in 0 88657 station_ip 37.129.129.72 88657 port 22 88657 unique_id port 88657 remote_ip 10.8.0.6 88663 username aminvpn 88663 mac 88663 bytes_out 0 88663 bytes_in 0 88663 station_ip 83.122.116.200 88663 port 21 88663 unique_id port 88663 remote_ip 10.8.0.6 88664 username aminvpn 88664 mac 88664 bytes_out 0 88664 bytes_in 0 88664 station_ip 37.129.129.72 88664 port 22 88664 unique_id port 88664 remote_ip 10.8.0.6 88666 username aminvpn 88666 mac 88666 bytes_out 0 88666 bytes_in 0 88666 station_ip 37.129.129.72 88666 port 22 88666 unique_id port 88666 remote_ip 10.8.0.6 88669 username aminvpn 88669 mac 88669 bytes_out 0 88669 bytes_in 0 88669 station_ip 83.122.116.200 88669 port 21 88669 unique_id port 88669 remote_ip 10.8.0.6 88672 username aminvpn 88672 mac 88672 bytes_out 34430 88672 bytes_in 50524 88672 station_ip 83.122.116.200 88672 port 21 88672 unique_id port 88672 remote_ip 10.8.0.6 88673 username alinezhad 88673 unique_id port 88673 terminate_cause User-Request 88673 bytes_out 0 88673 bytes_in 0 88673 station_ip 113.203.55.42 88673 port 15728660 88673 nas_port_type Virtual 88673 remote_ip 5.5.5.253 88674 username asadi 88674 unique_id port 88674 terminate_cause User-Request 88674 bytes_out 304952 88674 bytes_in 10679210 88674 station_ip 83.123.231.118 88674 port 15728661 88646 username aminvpn 88646 mac 88646 bytes_out 51186 88646 bytes_in 81316 88646 station_ip 83.122.116.200 88646 port 21 88646 unique_id port 88646 remote_ip 10.8.0.6 88651 username aminvpn 88651 mac 88651 bytes_out 0 88651 bytes_in 0 88651 station_ip 37.129.129.72 88651 port 22 88651 unique_id port 88651 remote_ip 10.8.0.6 88653 username mahbobeh 88653 unique_id port 88653 terminate_cause Lost-Carrier 88653 bytes_out 2199895 88653 bytes_in 52289661 88653 station_ip 83.122.143.160 88653 port 15728641 88653 nas_port_type Virtual 88653 remote_ip 5.5.5.254 88659 username aminvpn 88659 mac 88659 bytes_out 0 88659 bytes_in 0 88659 station_ip 37.129.129.72 88659 port 22 88659 unique_id port 88659 remote_ip 10.8.0.6 88661 username aminvpn 88661 mac 88661 bytes_out 0 88661 bytes_in 0 88661 station_ip 37.129.129.72 88661 port 22 88661 unique_id port 88661 remote_ip 10.8.0.6 88668 username aminvpn 88668 mac 88668 bytes_out 4224 88668 bytes_in 18504 88668 station_ip 37.129.129.72 88668 port 22 88668 unique_id port 88668 remote_ip 10.8.0.6 88670 username zamanialireza 88670 unique_id port 88670 terminate_cause User-Request 88670 bytes_out 0 88670 bytes_in 0 88670 station_ip 113.203.99.145 88670 port 15728659 88670 nas_port_type Virtual 88670 remote_ip 5.5.5.241 88671 username aminvpn 88671 mac 88671 bytes_out 8094 88671 bytes_in 8645 88671 station_ip 37.129.129.72 88671 port 22 88671 unique_id port 88671 remote_ip 10.8.0.6 88679 username bcboard 88679 unique_id port 88679 terminate_cause User-Request 88679 bytes_out 109092 88679 bytes_in 442112 88679 station_ip 83.123.145.159 88679 port 15728666 88679 nas_port_type Virtual 88679 remote_ip 5.5.5.239 88681 username bcboard 88681 unique_id port 88681 terminate_cause User-Request 88681 bytes_out 139000 88681 bytes_in 3330764 88681 station_ip 83.123.145.159 88681 port 15728667 88681 nas_port_type Virtual 88681 remote_ip 5.5.5.239 88689 username forozande 88689 unique_id port 88689 terminate_cause User-Request 88689 bytes_out 26174 88689 bytes_in 112764 88689 station_ip 83.123.63.163 88689 port 15728676 88689 nas_port_type Virtual 88689 remote_ip 5.5.5.238 88691 username forozande 88691 unique_id port 88691 terminate_cause User-Request 88691 bytes_out 6111 88691 bytes_in 15431 88691 station_ip 37.129.37.197 88691 port 15728681 88691 nas_port_type Virtual 88691 remote_ip 5.5.5.233 88693 username zamanialireza 88693 unique_id port 88693 terminate_cause User-Request 88693 bytes_out 0 88693 bytes_in 0 88693 station_ip 113.203.99.145 88693 port 15728683 88693 nas_port_type Virtual 88693 remote_ip 5.5.5.241 88696 username asadi 88696 unique_id port 88696 terminate_cause User-Request 88696 bytes_out 147427 88696 bytes_in 1216393 88696 station_ip 83.123.231.118 88696 port 15728686 88696 nas_port_type Virtual 88696 remote_ip 5.5.5.250 88701 username forozande 88701 unique_id port 88701 terminate_cause User-Request 88701 bytes_out 71391 88701 bytes_in 1394365 88701 station_ip 83.122.192.81 88701 port 15728691 88701 nas_port_type Virtual 88701 remote_ip 5.5.5.230 88705 username aminvpn 88705 mac 88705 bytes_out 0 88705 bytes_in 0 88705 station_ip 37.129.87.214 88705 port 22 88705 unique_id port 88705 remote_ip 10.8.0.6 88706 username aminvpn 88706 mac 88706 bytes_out 0 88706 bytes_in 0 88706 station_ip 37.129.129.72 88706 port 21 88706 unique_id port 88706 remote_ip 10.8.0.6 88709 username aminvpn 88709 mac 88709 bytes_out 0 88709 bytes_in 0 88650 bytes_out 0 88650 bytes_in 0 88650 station_ip 83.122.116.200 88650 port 21 88650 unique_id port 88650 remote_ip 10.8.0.6 88652 username madadi 88652 unique_id port 88652 terminate_cause Lost-Carrier 88652 bytes_out 11711 88652 bytes_in 131899 88652 station_ip 5.119.22.248 88652 port 15728655 88652 nas_port_type Virtual 88652 remote_ip 5.5.5.245 88654 username zamanialireza 88654 unique_id port 88654 terminate_cause User-Request 88654 bytes_out 0 88654 bytes_in 0 88654 station_ip 5.119.78.28 88654 port 15728656 88654 nas_port_type Virtual 88654 remote_ip 5.5.5.244 88662 username bcboard 88662 unique_id port 88662 terminate_cause User-Request 88662 bytes_out 347210 88662 bytes_in 147784 88662 station_ip 83.123.80.215 88662 port 15728657 88662 nas_port_type Virtual 88662 remote_ip 5.5.5.243 88665 username aminvpn 88665 mac 88665 bytes_out 0 88665 bytes_in 0 88665 station_ip 83.122.116.200 88665 port 21 88665 unique_id port 88665 remote_ip 10.8.0.6 88675 username ahmadipour 88675 unique_id port 88675 terminate_cause Lost-Carrier 88675 bytes_out 8448917 88675 bytes_in 686257 88675 station_ip 83.123.193.21 88675 port 15728658 88675 nas_port_type Virtual 88675 remote_ip 5.5.5.242 88676 username zamanialireza 88676 unique_id port 88676 terminate_cause User-Request 88676 bytes_out 469413 88676 bytes_in 1095917 88676 station_ip 113.203.99.145 88676 port 15728663 88676 nas_port_type Virtual 88676 remote_ip 5.5.5.241 88678 username bcboard 88678 kill_reason Wrong password 88678 unique_id port 88678 bytes_out 0 88678 bytes_in 0 88678 station_ip 83.123.145.159 88678 port 15728665 88678 nas_port_type Virtual 88682 username forozande 88682 unique_id port 88682 terminate_cause User-Request 88682 bytes_out 24886 88682 bytes_in 105289 88682 station_ip 83.123.63.163 88682 port 15728668 88682 nas_port_type Virtual 88682 remote_ip 5.5.5.238 88686 username zamanialireza 88686 unique_id port 88686 terminate_cause User-Request 88686 bytes_out 5233024 88686 bytes_in 132523549 88686 station_ip 5.119.78.28 88686 port 15728662 88686 nas_port_type Virtual 88686 remote_ip 5.5.5.244 88687 username forozande 88687 unique_id port 88687 terminate_cause User-Request 88687 bytes_out 9575 88687 bytes_in 39813 88687 station_ip 83.123.63.163 88687 port 15728674 88687 nas_port_type Virtual 88687 remote_ip 5.5.5.238 88692 username asadi 88692 unique_id port 88692 terminate_cause User-Request 88692 bytes_out 5828 88692 bytes_in 21790 88692 station_ip 83.123.231.118 88692 port 15728682 88692 nas_port_type Virtual 88692 remote_ip 5.5.5.250 88694 username forozande 88694 unique_id port 88694 terminate_cause User-Request 88694 bytes_out 47555 88694 bytes_in 804215 88694 station_ip 37.129.37.197 88694 port 15728684 88694 nas_port_type Virtual 88694 remote_ip 5.5.5.233 88703 username aminvpn 88703 mac 88703 bytes_out 0 88703 bytes_in 0 88703 station_ip 37.129.87.214 88703 port 22 88703 unique_id port 88703 remote_ip 10.8.0.6 88704 username aminvpn 88704 mac 88704 bytes_out 0 88704 bytes_in 0 88704 station_ip 37.129.129.72 88704 port 21 88704 unique_id port 88704 remote_ip 10.8.0.6 88708 username aminvpn 88708 mac 88708 bytes_out 0 88708 bytes_in 0 88708 station_ip 37.129.129.72 88708 port 21 88708 unique_id port 88708 remote_ip 10.8.0.6 88714 username aminvpn 88714 mac 88714 bytes_out 0 88714 bytes_in 0 88714 station_ip 37.129.129.72 88714 port 21 88714 unique_id port 88714 remote_ip 10.8.0.6 88719 username aminvpn 88719 mac 88719 bytes_out 0 88719 bytes_in 0 88674 nas_port_type Virtual 88674 remote_ip 5.5.5.250 88680 username caferibar 88680 unique_id port 88680 terminate_cause Lost-Carrier 88680 bytes_out 7471190 88680 bytes_in 136429878 88680 station_ip 37.27.8.76 88680 port 15728640 88680 nas_port_type Virtual 88680 remote_ip 5.5.5.255 88683 username forozande 88683 unique_id port 88683 terminate_cause User-Request 88683 bytes_out 23173 88683 bytes_in 162629 88683 station_ip 83.123.63.163 88683 port 15728669 88683 nas_port_type Virtual 88683 remote_ip 5.5.5.238 88685 username forozande 88685 unique_id port 88685 terminate_cause User-Request 88685 bytes_out 10927 88685 bytes_in 28893 88685 station_ip 83.123.63.163 88685 port 15728673 88685 nas_port_type Virtual 88685 remote_ip 5.5.5.238 88688 username caferibar 88688 unique_id port 88688 terminate_cause Lost-Carrier 88688 bytes_out 92105 88688 bytes_in 434516 88688 station_ip 37.153.179.62 88688 port 15728671 88688 nas_port_type Virtual 88688 remote_ip 5.5.5.236 88690 username heydari 88690 unique_id port 88690 terminate_cause User-Request 88690 bytes_out 59688 88690 bytes_in 101772 88690 station_ip 5.119.11.246 88690 port 15728677 88690 nas_port_type Virtual 88690 remote_ip 5.5.5.234 88695 username avaanna 88695 unique_id port 88695 terminate_cause User-Request 88695 bytes_out 79937 88695 bytes_in 332582 88695 station_ip 37.129.105.131 88695 port 15728685 88695 nas_port_type Virtual 88695 remote_ip 5.5.5.232 88698 username asadi 88698 unique_id port 88698 terminate_cause User-Request 88698 bytes_out 187183 88698 bytes_in 3670123 88698 station_ip 83.123.231.118 88698 port 15728688 88698 nas_port_type Virtual 88698 remote_ip 5.5.5.250 88699 username caferibar 88699 unique_id port 88699 terminate_cause User-Request 88699 bytes_out 173776 88699 bytes_in 1890416 88699 station_ip 5.122.35.15 88699 port 15728689 88699 nas_port_type Virtual 88699 remote_ip 5.5.5.231 88700 username forozande 88700 unique_id port 88700 terminate_cause User-Request 88700 bytes_out 72022 88700 bytes_in 519346 88700 station_ip 83.122.192.81 88700 port 15728690 88700 nas_port_type Virtual 88700 remote_ip 5.5.5.230 88702 username aminvpn 88702 mac 88702 bytes_out 0 88702 bytes_in 0 88702 station_ip 37.129.129.72 88702 port 21 88702 unique_id port 88702 remote_ip 10.8.0.6 88715 username forozande 88715 unique_id port 88715 terminate_cause User-Request 88715 bytes_out 82209 88715 bytes_in 519096 88715 station_ip 83.123.44.59 88715 port 15728693 88715 nas_port_type Virtual 88715 remote_ip 5.5.5.228 88720 username aminvpn 88720 mac 88720 bytes_out 0 88720 bytes_in 0 88720 station_ip 37.129.129.72 88720 port 21 88720 unique_id port 88720 remote_ip 10.8.0.6 88721 username aminvpn 88721 unique_id port 88721 terminate_cause Lost-Carrier 88721 bytes_out 58931 88721 bytes_in 504886 88721 station_ip 5.119.180.119 88721 port 15728692 88721 nas_port_type Virtual 88721 remote_ip 5.5.5.229 88724 username aminvpn 88724 mac 88724 bytes_out 0 88724 bytes_in 0 88724 station_ip 37.129.163.206 88724 port 22 88724 unique_id port 88724 remote_ip 10.8.0.6 88725 username aminvpn 88725 mac 88725 bytes_out 0 88725 bytes_in 0 88725 station_ip 37.129.129.72 88725 port 21 88725 unique_id port 88725 remote_ip 10.8.0.6 88727 username aminvpn 88727 mac 88727 bytes_out 0 88727 bytes_in 0 88727 station_ip 37.129.163.206 88727 port 22 88727 unique_id port 88727 remote_ip 10.8.0.6 88729 username aminvpn 88729 mac 88729 bytes_out 0 88729 bytes_in 0 88729 station_ip 37.129.129.72 88729 port 21 88729 unique_id port 88709 station_ip 37.129.163.206 88709 port 22 88709 unique_id port 88709 remote_ip 10.8.0.6 88712 username aminvpn 88712 mac 88712 bytes_out 0 88712 bytes_in 0 88712 station_ip 37.129.129.72 88712 port 21 88712 unique_id port 88712 remote_ip 10.8.0.6 88716 username alinezhad 88716 unique_id port 88716 terminate_cause User-Request 88716 bytes_out 0 88716 bytes_in 0 88716 station_ip 5.202.97.36 88716 port 15728694 88716 nas_port_type Virtual 88716 remote_ip 5.5.5.227 88717 username aminvpn 88717 mac 88717 bytes_out 0 88717 bytes_in 0 88717 station_ip 37.129.163.206 88717 port 22 88717 unique_id port 88717 remote_ip 10.8.0.6 88723 username aminvpn 88723 mac 88723 bytes_out 0 88723 bytes_in 0 88723 station_ip 37.129.129.72 88723 port 21 88723 unique_id port 88723 remote_ip 10.8.0.6 88732 username aminvpn 88732 mac 88732 bytes_out 0 88732 bytes_in 0 88732 station_ip 37.129.163.206 88732 port 22 88732 unique_id port 88732 remote_ip 10.8.0.6 88736 username alinezhad 88736 unique_id port 88736 terminate_cause User-Request 88736 bytes_out 0 88736 bytes_in 0 88736 station_ip 5.202.97.36 88736 port 15728698 88736 nas_port_type Virtual 88736 remote_ip 5.5.5.227 88737 username aminvpn 88737 mac 88737 bytes_out 4649 88737 bytes_in 14182 88737 station_ip 37.129.163.206 88737 port 22 88737 unique_id port 88737 remote_ip 10.8.0.6 88747 username forozande 88747 unique_id port 88747 terminate_cause User-Request 88747 bytes_out 45220 88747 bytes_in 384131 88747 station_ip 83.122.173.100 88747 port 15728705 88747 nas_port_type Virtual 88747 remote_ip 5.5.5.223 88748 username majid 88748 unique_id port 88748 terminate_cause User-Request 88748 bytes_out 0 88748 bytes_in 0 88748 station_ip 86.57.48.101 88748 port 15728706 88748 nas_port_type Virtual 88748 remote_ip 5.5.5.222 88751 username zamanialireza 88751 unique_id port 88751 terminate_cause User-Request 88751 bytes_out 1443729 88751 bytes_in 15336217 88751 station_ip 5.119.78.28 88751 port 15728704 88751 nas_port_type Virtual 88751 remote_ip 5.5.5.244 88768 username aminvpn 88768 mac 88768 bytes_out 1863557 88768 bytes_in 6685805 88768 station_ip 37.129.93.142 88768 port 21 88768 unique_id port 88768 remote_ip 10.8.0.6 88769 username heydari 88769 unique_id port 88769 terminate_cause User-Request 88769 bytes_out 119164 88769 bytes_in 430850 88769 station_ip 5.119.11.246 88769 port 15728724 88769 nas_port_type Virtual 88769 remote_ip 5.5.5.234 88780 username caferibar 88780 unique_id port 88780 terminate_cause User-Request 88780 bytes_out 787090 88780 bytes_in 13970960 88780 station_ip 94.241.171.67 88780 port 15728731 88780 nas_port_type Virtual 88780 remote_ip 5.5.5.237 88785 username alinezhad 88785 unique_id port 88785 terminate_cause User-Request 88785 bytes_out 0 88785 bytes_in 0 88785 station_ip 5.202.97.36 88785 port 15728736 88785 nas_port_type Virtual 88785 remote_ip 5.5.5.227 88791 username asadi 88791 unique_id port 88791 terminate_cause User-Request 88791 bytes_out 8410 88791 bytes_in 19506 88791 station_ip 83.123.231.118 88791 port 15728742 88791 nas_port_type Virtual 88791 remote_ip 5.5.5.250 88792 username asadi 88792 unique_id port 88792 terminate_cause User-Request 88792 bytes_out 25895 88792 bytes_in 149800 88792 station_ip 83.123.231.118 88792 port 15728743 88792 nas_port_type Virtual 88792 remote_ip 5.5.5.250 88799 username asadi 88799 unique_id port 88799 terminate_cause User-Request 88799 bytes_out 56226 88799 bytes_in 747173 88799 station_ip 83.123.231.118 88713 username aminvpn 88713 mac 88713 bytes_out 29606 88713 bytes_in 31666 88713 station_ip 37.129.163.206 88713 port 22 88713 unique_id port 88713 remote_ip 10.8.0.6 88718 username aminvpn 88718 mac 88718 bytes_out 0 88718 bytes_in 0 88718 station_ip 37.129.129.72 88718 port 21 88718 unique_id port 88718 remote_ip 10.8.0.6 88722 username aminvpn 88722 mac 88722 bytes_out 32838 88722 bytes_in 41612 88722 station_ip 37.129.163.206 88722 port 22 88722 unique_id port 88722 remote_ip 10.8.0.6 88728 username forozande 88728 unique_id port 88728 terminate_cause User-Request 88728 bytes_out 57795 88728 bytes_in 621704 88728 station_ip 37.129.5.142 88728 port 15728697 88728 nas_port_type Virtual 88728 remote_ip 5.5.5.226 88733 username aminvpn 88733 mac 88733 bytes_out 0 88733 bytes_in 0 88733 station_ip 37.129.129.72 88733 port 21 88733 unique_id port 88733 remote_ip 10.8.0.6 88738 username aminvpn 88738 mac 88738 bytes_out 0 88738 bytes_in 0 88738 station_ip 37.129.129.72 88738 port 21 88738 unique_id port 88738 remote_ip 10.8.0.6 88739 username zamanialireza 88739 unique_id port 88739 terminate_cause User-Request 88739 bytes_out 1446260 88739 bytes_in 6590457 88739 station_ip 113.203.99.145 88739 port 15728695 88739 nas_port_type Virtual 88739 remote_ip 5.5.5.241 88742 username aminvpn 88742 mac 88742 bytes_out 0 88742 bytes_in 0 88742 station_ip 37.129.163.206 88742 port 22 88742 unique_id port 88742 remote_ip 10.8.0.6 88743 username aminvpn 88743 mac 88743 bytes_out 5168 88743 bytes_in 8651 88743 station_ip 37.129.129.72 88743 port 21 88743 unique_id port 88743 remote_ip 10.8.0.6 88749 username forozande 88749 unique_id port 88749 terminate_cause User-Request 88749 bytes_out 46638 88749 bytes_in 198733 88749 station_ip 37.129.139.85 88749 port 15728707 88749 nas_port_type Virtual 88749 remote_ip 5.5.5.221 88752 username forozande 88752 unique_id port 88752 terminate_cause User-Request 88752 bytes_out 40113 88752 bytes_in 88993 88752 station_ip 37.129.123.234 88752 port 15728709 88752 nas_port_type Virtual 88752 remote_ip 5.5.5.220 88753 username alinezhad 88753 unique_id port 88753 terminate_cause User-Request 88753 bytes_out 0 88753 bytes_in 0 88753 station_ip 5.202.97.36 88753 port 15728711 88753 nas_port_type Virtual 88753 remote_ip 5.5.5.227 88755 username aminvpn 88755 mac 88755 bytes_out 0 88755 bytes_in 0 88755 station_ip 37.129.87.214 88755 port 35 88755 unique_id port 88755 remote_ip 10.8.1.10 88760 username aminvpn 88760 unique_id port 88760 terminate_cause User-Request 88760 bytes_out 2582741 88760 bytes_in 35765831 88760 station_ip 37.129.163.206 88760 port 15728714 88760 nas_port_type Virtual 88760 remote_ip 5.5.5.218 88761 username ahmadipour 88761 unique_id port 88761 terminate_cause User-Request 88761 bytes_out 0 88761 bytes_in 0 88761 station_ip 83.123.122.141 88761 port 15728717 88761 nas_port_type Virtual 88761 remote_ip 5.5.5.216 88763 username aminvpn 88763 unique_id port 88763 terminate_cause User-Request 88763 bytes_out 808084 88763 bytes_in 10919755 88763 station_ip 37.129.163.206 88763 port 15728718 88763 nas_port_type Virtual 88763 remote_ip 5.5.5.218 88772 username madadi 88772 unique_id port 88772 terminate_cause Lost-Carrier 88772 bytes_out 35709 88772 bytes_in 229653 88772 station_ip 5.120.18.133 88772 port 15728725 88772 nas_port_type Virtual 88772 remote_ip 5.5.5.212 88775 username aminvpn 88775 mac 88775 bytes_out 361943 88775 bytes_in 557455 88719 station_ip 37.129.163.206 88719 port 22 88719 unique_id port 88719 remote_ip 10.8.0.6 88726 username asadi 88726 unique_id port 88726 terminate_cause User-Request 88726 bytes_out 58306 88726 bytes_in 98010 88726 station_ip 83.123.231.118 88726 port 15728696 88726 nas_port_type Virtual 88726 remote_ip 5.5.5.250 88730 username aminvpn 88730 mac 88730 bytes_out 0 88730 bytes_in 0 88730 station_ip 37.129.163.206 88730 port 22 88730 unique_id port 88730 remote_ip 10.8.0.6 88731 username aminvpn 88731 mac 88731 bytes_out 0 88731 bytes_in 0 88731 station_ip 37.129.129.72 88731 port 21 88731 unique_id port 88731 remote_ip 10.8.0.6 88740 username asadi 88740 unique_id port 88740 terminate_cause User-Request 88740 bytes_out 93624 88740 bytes_in 419704 88740 station_ip 83.123.231.118 88740 port 15728700 88740 nas_port_type Virtual 88740 remote_ip 5.5.5.250 88745 username caferibar 88745 unique_id port 88745 terminate_cause Lost-Carrier 88745 bytes_out 210563 88745 bytes_in 1530861 88745 station_ip 5.122.35.15 88745 port 15728703 88745 nas_port_type Virtual 88745 remote_ip 5.5.5.231 88746 username aminvpn 88746 mac 88746 bytes_out 0 88746 bytes_in 0 88746 station_ip 37.129.163.206 88746 port 21 88746 unique_id port 88746 remote_ip 10.8.0.6 88754 username asadi 88754 unique_id port 88754 terminate_cause User-Request 88754 bytes_out 121595 88754 bytes_in 648759 88754 station_ip 83.123.231.118 88754 port 15728710 88754 nas_port_type Virtual 88754 remote_ip 5.5.5.250 88756 username aminvpn 88756 kill_reason Maximum check online fails reached 88756 mac 88756 bytes_out 0 88756 bytes_in 0 88756 station_ip 37.129.93.142 88756 port 22 88756 unique_id port 88757 username aminvpn 88757 mac 88757 bytes_out 0 88757 bytes_in 0 88757 station_ip 37.129.163.206 88757 port 21 88757 unique_id port 88757 remote_ip 10.8.0.6 88758 username heydari 88758 unique_id port 88758 terminate_cause User-Request 88758 bytes_out 171703 88758 bytes_in 790474 88758 station_ip 5.119.11.246 88758 port 15728713 88758 nas_port_type Virtual 88758 remote_ip 5.5.5.234 88759 username caferibar 88759 unique_id port 88759 terminate_cause Lost-Carrier 88759 bytes_out 3852953 88759 bytes_in 60162471 88759 station_ip 94.241.171.67 88759 port 15728670 88759 nas_port_type Virtual 88759 remote_ip 5.5.5.237 88764 username avaanna 88764 unique_id port 88764 terminate_cause User-Request 88764 bytes_out 35579 88764 bytes_in 189145 88764 station_ip 37.129.105.131 88764 port 15728720 88764 nas_port_type Virtual 88764 remote_ip 5.5.5.232 88766 username alinezhad 88766 unique_id port 88766 terminate_cause User-Request 88766 bytes_out 139080 88766 bytes_in 1256550 88766 station_ip 5.202.97.36 88766 port 15728716 88766 nas_port_type Virtual 88766 remote_ip 5.5.5.227 88770 username caferibar 88770 unique_id port 88770 terminate_cause Lost-Carrier 88770 bytes_out 1354885 88770 bytes_in 23409228 88770 station_ip 5.121.54.151 88770 port 15728723 88770 nas_port_type Virtual 88770 remote_ip 5.5.5.213 88773 username khalili 88773 kill_reason Maximum check online fails reached 88773 unique_id port 88773 bytes_out 228564 88773 bytes_in 1995343 88773 station_ip 5.120.46.62 88773 port 15728726 88773 nas_port_type Virtual 88773 remote_ip 5.5.5.211 88776 username arman 88776 unique_id port 88776 terminate_cause Lost-Carrier 88776 bytes_out 23091229 88776 bytes_in 120751832 88776 station_ip 5.119.211.47 88776 port 15728699 88776 nas_port_type Virtual 88776 remote_ip 5.5.5.225 88781 username asadi 88781 unique_id port 88781 terminate_cause User-Request 88729 remote_ip 10.8.0.6 88734 username aminvpn 88734 mac 88734 bytes_out 0 88734 bytes_in 0 88734 station_ip 37.129.163.206 88734 port 22 88734 unique_id port 88734 remote_ip 10.8.0.6 88735 username aminvpn 88735 mac 88735 bytes_out 0 88735 bytes_in 0 88735 station_ip 37.129.129.72 88735 port 21 88735 unique_id port 88735 remote_ip 10.8.0.6 88741 username asadi 88741 unique_id port 88741 terminate_cause User-Request 88741 bytes_out 76607 88741 bytes_in 71080 88741 station_ip 83.123.231.118 88741 port 15728701 88741 nas_port_type Virtual 88741 remote_ip 5.5.5.250 88744 username jamali 88744 unique_id port 88744 terminate_cause User-Request 88744 bytes_out 777705 88744 bytes_in 22965647 88744 station_ip 83.123.220.186 88744 port 15728702 88744 nas_port_type Virtual 88744 remote_ip 5.5.5.224 88750 username zamanialireza 88750 unique_id port 88750 terminate_cause User-Request 88750 bytes_out 214290 88750 bytes_in 923893 88750 station_ip 113.203.99.145 88750 port 15728708 88750 nas_port_type Virtual 88750 remote_ip 5.5.5.241 88762 username avaanna 88762 unique_id port 88762 terminate_cause User-Request 88762 bytes_out 70241 88762 bytes_in 972353 88762 station_ip 37.129.105.131 88762 port 15728719 88762 nas_port_type Virtual 88762 remote_ip 5.5.5.232 88765 username caferibar 88765 unique_id port 88765 terminate_cause Lost-Carrier 88765 bytes_out 467073 88765 bytes_in 7988858 88765 station_ip 37.156.58.204 88765 port 15728715 88765 nas_port_type Virtual 88765 remote_ip 5.5.5.217 88767 username mahbobeh 88767 unique_id port 88767 terminate_cause Lost-Carrier 88767 bytes_out 133420 88767 bytes_in 729623 88767 station_ip 83.123.41.228 88767 port 15728712 88767 nas_port_type Virtual 88767 remote_ip 5.5.5.219 88771 username mammad 88771 unique_id port 88771 terminate_cause User-Request 88771 bytes_out 1060676 88771 bytes_in 16975161 88771 station_ip 2.183.245.208 88771 port 15728722 88771 nas_port_type Virtual 88771 remote_ip 5.5.5.214 88774 username amir 88774 unique_id port 88774 terminate_cause User-Request 88774 bytes_out 0 88774 bytes_in 0 88774 station_ip 46.225.209.195 88774 port 15728727 88774 nas_port_type Virtual 88774 remote_ip 5.5.5.210 88779 username aminvpn 88779 unique_id port 88779 terminate_cause Lost-Carrier 88779 bytes_out 1098691 88779 bytes_in 9769469 88779 station_ip 5.119.206.99 88779 port 15728729 88779 nas_port_type Virtual 88779 remote_ip 5.5.5.208 88784 username alinezhad 88784 unique_id port 88784 terminate_cause User-Request 88784 bytes_out 0 88784 bytes_in 0 88784 station_ip 5.202.97.36 88784 port 15728735 88784 nas_port_type Virtual 88784 remote_ip 5.5.5.227 88787 username mahdixz 88787 unique_id port 88787 terminate_cause Lost-Carrier 88787 bytes_out 2420597 88787 bytes_in 18167377 88787 station_ip 151.235.89.54 88787 port 15728728 88787 nas_port_type Virtual 88787 remote_ip 5.5.5.209 88788 username asadi 88788 unique_id port 88788 terminate_cause User-Request 88788 bytes_out 28181 88788 bytes_in 136853 88788 station_ip 83.123.231.118 88788 port 15728738 88788 nas_port_type Virtual 88788 remote_ip 5.5.5.250 88795 username forozande 88795 unique_id port 88795 terminate_cause User-Request 88795 bytes_out 25158 88795 bytes_in 72541 88795 station_ip 83.122.60.159 88795 port 15728745 88795 nas_port_type Virtual 88795 remote_ip 5.5.5.205 88796 username forozande 88796 unique_id port 88796 terminate_cause User-Request 88796 bytes_out 31101 88796 bytes_in 147457 88796 station_ip 83.122.88.227 88796 port 15728747 88796 nas_port_type Virtual 88796 remote_ip 5.5.5.203 88800 username alinezhad 88775 station_ip 37.129.93.142 88775 port 21 88775 unique_id port 88775 remote_ip 10.8.0.6 88777 username asadi 88777 unique_id port 88777 terminate_cause User-Request 88777 bytes_out 178435 88777 bytes_in 3803689 88777 station_ip 83.123.231.118 88777 port 15728730 88777 nas_port_type Virtual 88777 remote_ip 5.5.5.250 88778 username caferibar 88778 unique_id port 88778 terminate_cause Lost-Carrier 88778 bytes_out 2759894 88778 bytes_in 52522849 88778 station_ip 89.32.99.151 88778 port 15728721 88778 nas_port_type Virtual 88778 remote_ip 5.5.5.215 88782 username sobhan 88782 unique_id port 88782 terminate_cause Lost-Carrier 88782 bytes_out 4867039 88782 bytes_in 63014570 88782 station_ip 5.120.1.213 88782 port 15728675 88782 nas_port_type Virtual 88782 remote_ip 5.5.5.235 88790 username ahmadi 88790 unique_id port 88790 terminate_cause User-Request 88790 bytes_out 593457 88790 bytes_in 10149999 88790 station_ip 37.129.124.49 88790 port 15728740 88790 nas_port_type Virtual 88790 remote_ip 5.5.5.207 88793 username forozande 88793 unique_id port 88793 terminate_cause User-Request 88793 bytes_out 90032 88793 bytes_in 660510 88793 station_ip 83.122.60.159 88793 port 15728744 88793 nas_port_type Virtual 88793 remote_ip 5.5.5.205 88794 username madadi 88794 unique_id port 88794 terminate_cause Lost-Carrier 88794 bytes_out 22466 88794 bytes_in 142774 88794 station_ip 5.119.61.176 88794 port 15728741 88794 nas_port_type Virtual 88794 remote_ip 5.5.5.206 88798 username zamanialireza 88798 unique_id port 88798 terminate_cause User-Request 88798 bytes_out 412067 88798 bytes_in 1147080 88798 station_ip 113.203.19.137 88798 port 15728750 88798 nas_port_type Virtual 88798 remote_ip 5.5.5.201 88802 username heydari 88802 unique_id port 88802 terminate_cause User-Request 88802 bytes_out 334878 88802 bytes_in 1740170 88802 station_ip 5.119.11.246 88802 port 15728734 88802 nas_port_type Virtual 88802 remote_ip 5.5.5.234 88804 username asadi 88804 unique_id port 88804 terminate_cause User-Request 88804 bytes_out 332592 88804 bytes_in 5170682 88804 station_ip 83.123.231.118 88804 port 15728755 88804 nas_port_type Virtual 88804 remote_ip 5.5.5.250 88807 username asadi 88807 unique_id port 88807 terminate_cause User-Request 88807 bytes_out 322989 88807 bytes_in 5268675 88807 station_ip 83.123.231.118 88807 port 15728756 88807 nas_port_type Virtual 88807 remote_ip 5.5.5.250 88813 username aminvpn 88813 mac 88813 bytes_out 155955 88813 bytes_in 530090 88813 station_ip 37.129.21.183 88813 port 21 88813 unique_id port 88813 remote_ip 10.8.0.6 88815 username ahmadipour 88815 unique_id port 88815 terminate_cause User-Request 88815 bytes_out 1350594 88815 bytes_in 26949055 88815 station_ip 83.123.37.137 88815 port 15728762 88815 nas_port_type Virtual 88815 remote_ip 5.5.5.196 88820 username forozande 88820 unique_id port 88820 terminate_cause User-Request 88820 bytes_out 98777 88820 bytes_in 2567046 88820 station_ip 37.129.55.123 88820 port 15728768 88820 nas_port_type Virtual 88820 remote_ip 5.5.5.197 88821 username asadi 88821 unique_id port 88821 terminate_cause User-Request 88821 bytes_out 140747 88821 bytes_in 1416233 88821 station_ip 83.123.231.118 88821 port 15728770 88821 nas_port_type Virtual 88821 remote_ip 5.5.5.250 88823 username madadi 88823 unique_id port 88823 terminate_cause Lost-Carrier 88823 bytes_out 105141 88823 bytes_in 1056870 88823 station_ip 5.119.56.43 88823 port 15728769 88823 nas_port_type Virtual 88823 remote_ip 5.5.5.195 88832 username amirabbas 88832 unique_id port 88832 terminate_cause User-Request 88832 bytes_out 16301642 88832 bytes_in 380200898 88781 bytes_out 75707 88781 bytes_in 957694 88781 station_ip 83.123.231.118 88781 port 15728732 88781 nas_port_type Virtual 88781 remote_ip 5.5.5.250 88783 username asadi 88783 unique_id port 88783 terminate_cause User-Request 88783 bytes_out 97973 88783 bytes_in 863774 88783 station_ip 83.123.231.118 88783 port 15728733 88783 nas_port_type Virtual 88783 remote_ip 5.5.5.250 88786 username mammad 88786 kill_reason Maximum check online fails reached 88786 unique_id port 88786 bytes_out 160650 88786 bytes_in 1776035 88786 station_ip 2.183.245.208 88786 port 15728737 88786 nas_port_type Virtual 88786 remote_ip 5.5.5.214 88789 username asadi 88789 unique_id port 88789 terminate_cause User-Request 88789 bytes_out 53531 88789 bytes_in 452565 88789 station_ip 83.123.231.118 88789 port 15728739 88789 nas_port_type Virtual 88789 remote_ip 5.5.5.250 88797 username forozande 88797 unique_id port 88797 terminate_cause User-Request 88797 bytes_out 130 88797 bytes_in 11570 88797 station_ip 83.122.88.227 88797 port 15728749 88797 nas_port_type Virtual 88797 remote_ip 5.5.5.203 88803 username asadi 88803 unique_id port 88803 terminate_cause User-Request 88803 bytes_out 155900 88803 bytes_in 1040606 88803 station_ip 83.123.231.118 88803 port 15728754 88803 nas_port_type Virtual 88803 remote_ip 5.5.5.250 88808 username forozande 88808 unique_id port 88808 terminate_cause User-Request 88808 bytes_out 204510 88808 bytes_in 2923161 88808 station_ip 113.203.95.181 88808 port 15728758 88808 nas_port_type Virtual 88808 remote_ip 5.5.5.198 88809 username asadi 88809 unique_id port 88809 terminate_cause User-Request 88809 bytes_out 55688 88809 bytes_in 564026 88809 station_ip 83.123.231.118 88809 port 15728759 88809 nas_port_type Virtual 88809 remote_ip 5.5.5.250 88811 username asadi 88811 unique_id port 88811 terminate_cause User-Request 88811 bytes_out 149333 88811 bytes_in 1189360 88811 station_ip 83.123.231.118 88811 port 15728761 88811 nas_port_type Virtual 88811 remote_ip 5.5.5.250 88814 username caferibar 88814 unique_id port 88814 terminate_cause Lost-Carrier 88814 bytes_out 4932736 88814 bytes_in 40972465 88814 station_ip 151.238.250.170 88814 port 15728746 88814 nas_port_type Virtual 88814 remote_ip 5.5.5.204 88817 username mammad 88817 unique_id port 88817 terminate_cause User-Request 88817 bytes_out 432390 88817 bytes_in 4432404 88817 station_ip 2.183.245.208 88817 port 15728764 88817 nas_port_type Virtual 88817 remote_ip 5.5.5.214 88827 username alinezhad 88827 unique_id port 88827 terminate_cause User-Request 88827 bytes_out 0 88827 bytes_in 0 88827 station_ip 83.122.63.114 88827 port 15728776 88827 nas_port_type Virtual 88827 remote_ip 5.5.5.191 88829 username forozande 88829 unique_id port 88829 terminate_cause User-Request 88829 bytes_out 18634 88829 bytes_in 48485 88829 station_ip 37.129.186.51 88829 port 15728779 88829 nas_port_type Virtual 88829 remote_ip 5.5.5.190 88831 username asadi 88831 unique_id port 88831 terminate_cause User-Request 88831 bytes_out 44145 88831 bytes_in 666389 88831 station_ip 83.123.231.118 88831 port 15728785 88831 nas_port_type Virtual 88831 remote_ip 5.5.5.250 88834 username forozande 88834 unique_id port 88834 terminate_cause User-Request 88834 bytes_out 0 88834 bytes_in 0 88834 station_ip 83.122.79.218 88834 port 15728788 88834 nas_port_type Virtual 88834 remote_ip 5.5.5.186 88836 username forozande 88836 unique_id port 88836 terminate_cause User-Request 88836 bytes_out 56069 88836 bytes_in 654897 88836 station_ip 83.122.79.218 88836 port 15728790 88836 nas_port_type Virtual 88836 remote_ip 5.5.5.186 88839 username mahbobeh 88839 unique_id port 88799 port 15728751 88799 nas_port_type Virtual 88799 remote_ip 5.5.5.250 88801 username asadi 88801 unique_id port 88801 terminate_cause User-Request 88801 bytes_out 16068 88801 bytes_in 28730 88801 station_ip 83.123.231.118 88801 port 15728753 88801 nas_port_type Virtual 88801 remote_ip 5.5.5.250 88806 username caferibar 88806 unique_id port 88806 terminate_cause Lost-Carrier 88806 bytes_out 428384 88806 bytes_in 9523881 88806 station_ip 5.122.192.110 88806 port 15728748 88806 nas_port_type Virtual 88806 remote_ip 5.5.5.202 88810 username forozande 88810 unique_id port 88810 terminate_cause User-Request 88810 bytes_out 47412 88810 bytes_in 586222 88810 station_ip 37.129.55.123 88810 port 15728760 88810 nas_port_type Virtual 88810 remote_ip 5.5.5.197 88816 username forozande 88816 unique_id port 88816 terminate_cause User-Request 88816 bytes_out 60747 88816 bytes_in 734458 88816 station_ip 37.129.55.123 88816 port 15728766 88816 nas_port_type Virtual 88816 remote_ip 5.5.5.197 88818 username forozande 88818 unique_id port 88818 terminate_cause User-Request 88818 bytes_out 25391 88818 bytes_in 190601 88818 station_ip 37.129.55.123 88818 port 15728767 88818 nas_port_type Virtual 88818 remote_ip 5.5.5.197 88819 username aminvpn 88819 unique_id port 88819 terminate_cause Lost-Carrier 88819 bytes_out 2397914 88819 bytes_in 9073375 88819 station_ip 5.119.106.197 88819 port 15728757 88819 nas_port_type Virtual 88819 remote_ip 5.5.5.199 88822 username heydari 88822 unique_id port 88822 terminate_cause User-Request 88822 bytes_out 46390 88822 bytes_in 373174 88822 station_ip 37.27.17.165 88822 port 15728771 88822 nas_port_type Virtual 88822 remote_ip 5.5.5.194 88826 username forozande 88826 unique_id port 88826 terminate_cause User-Request 88826 bytes_out 40584 88826 bytes_in 369464 88826 station_ip 37.129.164.250 88826 port 15728775 88826 nas_port_type Virtual 88826 remote_ip 5.5.5.192 88833 username mammad 88833 unique_id port 88833 terminate_cause User-Request 88833 bytes_out 572091 88833 bytes_in 4153311 88833 station_ip 2.183.245.208 88833 port 15728786 88833 nas_port_type Virtual 88833 remote_ip 5.5.5.214 88835 username forozande 88835 unique_id port 88835 terminate_cause User-Request 88835 bytes_out 53867 88835 bytes_in 515248 88835 station_ip 83.122.79.218 88835 port 15728789 88835 nas_port_type Virtual 88835 remote_ip 5.5.5.186 88837 username ahmadi 88837 unique_id port 88837 terminate_cause User-Request 88837 bytes_out 29400 88837 bytes_in 219961 88837 station_ip 83.122.234.173 88837 port 15728793 88837 nas_port_type Virtual 88837 remote_ip 5.5.5.183 88841 username madadi 88841 unique_id port 88841 terminate_cause Lost-Carrier 88841 bytes_out 213650 88841 bytes_in 488640 88841 station_ip 5.119.211.226 88841 port 15728798 88841 nas_port_type Virtual 88841 remote_ip 5.5.5.181 88846 username heydarizadeh 88846 unique_id port 88846 terminate_cause Lost-Carrier 88846 bytes_out 283177 88846 bytes_in 2003855 88846 station_ip 5.120.130.176 88846 port 15728800 88846 nas_port_type Virtual 88846 remote_ip 5.5.5.180 88849 username arman 88849 unique_id port 88849 terminate_cause User-Request 88849 bytes_out 396393 88849 bytes_in 4514477 88849 station_ip 83.122.196.243 88849 port 15728807 88849 nas_port_type Virtual 88849 remote_ip 5.5.5.174 88862 username mammad 88862 unique_id port 88862 terminate_cause Lost-Carrier 88862 bytes_out 718315 88862 bytes_in 15346495 88862 station_ip 5.233.62.93 88862 port 15728813 88862 nas_port_type Virtual 88862 remote_ip 5.5.5.171 88863 username arman 88863 unique_id port 88863 terminate_cause User-Request 88863 bytes_out 73682 88863 bytes_in 243483 88800 unique_id port 88800 terminate_cause User-Request 88800 bytes_out 0 88800 bytes_in 0 88800 station_ip 83.122.143.60 88800 port 15728752 88800 nas_port_type Virtual 88800 remote_ip 5.5.5.200 88805 username aminvpn 88805 mac 88805 bytes_out 89030 88805 bytes_in 348684 88805 station_ip 37.129.93.142 88805 port 21 88805 unique_id port 88805 remote_ip 10.8.0.6 88812 username asadi 88812 unique_id port 88812 terminate_cause User-Request 88812 bytes_out 303374 88812 bytes_in 6060463 88812 station_ip 83.123.231.118 88812 port 15728763 88812 nas_port_type Virtual 88812 remote_ip 5.5.5.250 88824 username forozande 88824 unique_id port 88824 terminate_cause User-Request 88824 bytes_out 28874 88824 bytes_in 177492 88824 station_ip 37.129.55.123 88824 port 15728772 88824 nas_port_type Virtual 88824 remote_ip 5.5.5.197 88825 username forozande 88825 unique_id port 88825 terminate_cause User-Request 88825 bytes_out 25702 88825 bytes_in 64237 88825 station_ip 37.129.164.250 88825 port 15728774 88825 nas_port_type Virtual 88825 remote_ip 5.5.5.192 88828 username amir 88828 unique_id port 88828 terminate_cause User-Request 88828 bytes_out 7430770 88828 bytes_in 14368741 88828 station_ip 46.225.209.195 88828 port 15728765 88828 nas_port_type Virtual 88828 remote_ip 5.5.5.210 88830 username arabpour 88830 unique_id port 88830 terminate_cause User-Request 88830 bytes_out 387781 88830 bytes_in 7221557 88830 station_ip 89.196.154.0 88830 port 15728780 88830 nas_port_type Virtual 88830 remote_ip 5.5.5.189 88845 username amirabbas 88845 unique_id port 88845 terminate_cause User-Request 88845 bytes_out 38516153 88845 bytes_in 844819869 88845 station_ip 31.56.156.248 88845 port 15728787 88845 nas_port_type Virtual 88845 remote_ip 5.5.5.188 88847 username ahmadipour 88847 unique_id port 88847 terminate_cause Lost-Carrier 88847 bytes_out 88432911 88847 bytes_in 31451581 88847 station_ip 83.123.59.85 88847 port 15728794 88847 nas_port_type Virtual 88847 remote_ip 5.5.5.182 88848 username alinezhad 88848 unique_id port 88848 terminate_cause User-Request 88848 bytes_out 0 88848 bytes_in 0 88848 station_ip 113.203.2.172 88848 port 15728804 88848 nas_port_type Virtual 88848 remote_ip 5.5.5.177 88851 username arman 88851 unique_id port 88851 terminate_cause User-Request 88851 bytes_out 0 88851 bytes_in 0 88851 station_ip 83.122.196.243 88851 port 15728810 88851 nas_port_type Virtual 88851 remote_ip 5.5.5.174 88853 username forozande 88853 unique_id port 88853 terminate_cause User-Request 88853 bytes_out 182234 88853 bytes_in 1217667 88853 station_ip 113.203.76.152 88853 port 15728812 88853 nas_port_type Virtual 88853 remote_ip 5.5.5.172 88857 username arman 88857 unique_id port 88857 terminate_cause User-Request 88857 bytes_out 190720 88857 bytes_in 3400965 88857 station_ip 83.122.196.243 88857 port 15728817 88857 nas_port_type Virtual 88857 remote_ip 5.5.5.174 88860 username heydarizadeh 88860 unique_id port 88860 terminate_cause Lost-Carrier 88860 bytes_out 802662 88860 bytes_in 19707949 88860 station_ip 5.119.118.55 88860 port 15728809 88860 nas_port_type Virtual 88860 remote_ip 5.5.5.173 88867 username caferibar 88867 unique_id port 88867 terminate_cause User-Request 88867 bytes_out 311649 88867 bytes_in 2592274 88867 station_ip 89.32.102.60 88867 port 15728822 88867 nas_port_type Virtual 88867 remote_ip 5.5.5.168 88870 username forozande 88870 unique_id port 88870 terminate_cause User-Request 88870 bytes_out 101128 88870 bytes_in 905925 88870 station_ip 83.123.153.7 88870 port 15728832 88870 nas_port_type Virtual 88870 remote_ip 5.5.5.164 88874 username madadi 88832 station_ip 31.56.156.248 88832 port 15728783 88832 nas_port_type Virtual 88832 remote_ip 5.5.5.188 88838 username madadi 88838 unique_id port 88838 terminate_cause Lost-Carrier 88838 bytes_out 29384 88838 bytes_in 197304 88838 station_ip 5.119.11.125 88838 port 15728792 88838 nas_port_type Virtual 88838 remote_ip 5.5.5.184 88842 username aminvpn 88842 unique_id port 88842 terminate_cause User-Request 88842 bytes_out 3082953 88842 bytes_in 47249432 88842 station_ip 5.119.106.197 88842 port 15728773 88842 nas_port_type Virtual 88842 remote_ip 5.5.5.193 88850 username arman 88850 unique_id port 88850 terminate_cause User-Request 88850 bytes_out 68987 88850 bytes_in 154265 88850 station_ip 83.122.196.243 88850 port 15728808 88850 nas_port_type Virtual 88850 remote_ip 5.5.5.174 88855 username arman 88855 unique_id port 88855 terminate_cause User-Request 88855 bytes_out 91850 88855 bytes_in 1144997 88855 station_ip 83.122.196.243 88855 port 15728815 88855 nas_port_type Virtual 88855 remote_ip 5.5.5.174 88859 username arman 88859 unique_id port 88859 terminate_cause User-Request 88859 bytes_out 50957 88859 bytes_in 131655 88859 station_ip 83.122.196.243 88859 port 15728819 88859 nas_port_type Virtual 88859 remote_ip 5.5.5.174 88864 username ahmadi 88864 unique_id port 88864 terminate_cause User-Request 88864 bytes_out 0 88864 bytes_in 0 88864 station_ip 83.122.182.53 88864 port 15728826 88864 nas_port_type Virtual 88864 remote_ip 5.5.5.169 88865 username arman 88865 unique_id port 88865 terminate_cause User-Request 88865 bytes_out 0 88865 bytes_in 0 88865 station_ip 83.122.196.243 88865 port 15728827 88865 nas_port_type Virtual 88865 remote_ip 5.5.5.174 88872 username forozande 88872 unique_id port 88872 terminate_cause User-Request 88872 bytes_out 25619 88872 bytes_in 187677 88872 station_ip 83.123.153.7 88872 port 15728834 88872 nas_port_type Virtual 88872 remote_ip 5.5.5.164 88873 username forozande 88873 unique_id port 88873 terminate_cause User-Request 88873 bytes_out 9933 88873 bytes_in 23347 88873 station_ip 83.123.153.7 88873 port 15728835 88873 nas_port_type Virtual 88873 remote_ip 5.5.5.164 88876 username forozande 88876 unique_id port 88876 terminate_cause User-Request 88876 bytes_out 10068 88876 bytes_in 25074 88876 station_ip 83.122.188.235 88876 port 15728838 88876 nas_port_type Virtual 88876 remote_ip 5.5.5.162 88879 username arman 88879 unique_id port 88879 terminate_cause User-Request 88879 bytes_out 37918 88879 bytes_in 288485 88879 station_ip 83.122.196.243 88879 port 15728840 88879 nas_port_type Virtual 88879 remote_ip 5.5.5.174 88889 username arman 88889 unique_id port 88889 terminate_cause User-Request 88889 bytes_out 35617 88889 bytes_in 86387 88889 station_ip 83.122.196.243 88889 port 15728850 88889 nas_port_type Virtual 88889 remote_ip 5.5.5.174 88891 username arman 88891 unique_id port 88891 terminate_cause User-Request 88891 bytes_out 38731 88891 bytes_in 407864 88891 station_ip 83.122.196.243 88891 port 15728851 88891 nas_port_type Virtual 88891 remote_ip 5.5.5.174 88893 username madadi 88893 unique_id port 88893 terminate_cause Lost-Carrier 88893 bytes_out 34165 88893 bytes_in 146770 88893 station_ip 5.119.141.23 88893 port 15728852 88893 nas_port_type Virtual 88893 remote_ip 5.5.5.157 88894 username farhad 88894 kill_reason Wrong password 88894 unique_id port 88894 bytes_out 0 88894 bytes_in 0 88894 station_ip 5.120.106.137 88894 port 15728854 88894 nas_port_type Virtual 88897 username mahbobeh 88897 unique_id port 88897 terminate_cause Lost-Carrier 88897 bytes_out 1150901 88897 bytes_in 18381505 88897 station_ip 37.129.220.129 88839 terminate_cause Lost-Carrier 88839 bytes_out 455049 88839 bytes_in 7134818 88839 station_ip 83.123.124.236 88839 port 15728784 88839 nas_port_type Virtual 88839 remote_ip 5.5.5.187 88840 username arman 88840 unique_id port 88840 terminate_cause Lost-Carrier 88840 bytes_out 1033244 88840 bytes_in 18317231 88840 station_ip 5.120.189.42 88840 port 15728791 88840 nas_port_type Virtual 88840 remote_ip 5.5.5.185 88843 username musanejad 88843 unique_id port 88843 terminate_cause Lost-Carrier 88843 bytes_out 412442 88843 bytes_in 4074919 88843 station_ip 5.119.148.166 88843 port 15728802 88843 nas_port_type Virtual 88843 remote_ip 5.5.5.179 88844 username heydari 88844 unique_id port 88844 terminate_cause User-Request 88844 bytes_out 28801 88844 bytes_in 139831 88844 station_ip 37.129.176.151 88844 port 15728803 88844 nas_port_type Virtual 88844 remote_ip 5.5.5.178 88852 username arman 88852 unique_id port 88852 terminate_cause User-Request 88852 bytes_out 75484 88852 bytes_in 356958 88852 station_ip 83.122.196.243 88852 port 15728811 88852 nas_port_type Virtual 88852 remote_ip 5.5.5.174 88854 username forozande 88854 unique_id port 88854 terminate_cause User-Request 88854 bytes_out 57601 88854 bytes_in 471753 88854 station_ip 113.203.76.152 88854 port 15728814 88854 nas_port_type Virtual 88854 remote_ip 5.5.5.172 88856 username caferibar 88856 unique_id port 88856 terminate_cause Lost-Carrier 88856 bytes_out 1612354 88856 bytes_in 16612812 88856 station_ip 5.117.182.132 88856 port 15728806 88856 nas_port_type Virtual 88856 remote_ip 5.5.5.175 88858 username ahmadi 88858 unique_id port 88858 terminate_cause User-Request 88858 bytes_out 18220 88858 bytes_in 65893 88858 station_ip 83.122.182.53 88858 port 15728818 88858 nas_port_type Virtual 88858 remote_ip 5.5.5.169 88861 username asadi 88861 unique_id port 88861 terminate_cause User-Request 88861 bytes_out 149297 88861 bytes_in 3382410 88861 station_ip 83.123.231.118 88861 port 15728820 88861 nas_port_type Virtual 88861 remote_ip 5.5.5.250 88866 username forozande 88866 unique_id port 88866 terminate_cause User-Request 88866 bytes_out 30431 88866 bytes_in 145337 88866 station_ip 83.122.107.163 88866 port 15728828 88866 nas_port_type Virtual 88866 remote_ip 5.5.5.166 88875 username arman 88875 unique_id port 88875 terminate_cause User-Request 88875 bytes_out 422233 88875 bytes_in 12206873 88875 station_ip 83.122.196.243 88875 port 15728837 88875 nas_port_type Virtual 88875 remote_ip 5.5.5.174 88878 username arman 88878 unique_id port 88878 terminate_cause User-Request 88878 bytes_out 39697 88878 bytes_in 148226 88878 station_ip 83.122.196.243 88878 port 15728839 88878 nas_port_type Virtual 88878 remote_ip 5.5.5.174 88881 username arman 88881 unique_id port 88881 terminate_cause User-Request 88881 bytes_out 39881 88881 bytes_in 122753 88881 station_ip 83.122.196.243 88881 port 15728843 88881 nas_port_type Virtual 88881 remote_ip 5.5.5.174 88882 username forozande 88882 unique_id port 88882 terminate_cause User-Request 88882 bytes_out 25846 88882 bytes_in 80131 88882 station_ip 83.122.153.138 88882 port 15728844 88882 nas_port_type Virtual 88882 remote_ip 5.5.5.159 88884 username heydari 88884 unique_id port 88884 terminate_cause Lost-Carrier 88884 bytes_out 552532 88884 bytes_in 6599557 88884 station_ip 37.27.20.84 88884 port 15728805 88884 nas_port_type Virtual 88884 remote_ip 5.5.5.176 88886 username arman 88886 unique_id port 88886 terminate_cause User-Request 88886 bytes_out 0 88886 bytes_in 0 88886 station_ip 83.122.196.243 88886 port 15728848 88886 nas_port_type Virtual 88886 remote_ip 5.5.5.174 88863 station_ip 83.122.196.243 88863 port 15728824 88863 nas_port_type Virtual 88863 remote_ip 5.5.5.174 88868 username amirabbas 88868 unique_id port 88868 terminate_cause Lost-Carrier 88868 bytes_out 13086 88868 bytes_in 150818 88868 station_ip 31.56.156.248 88868 port 15728823 88868 nas_port_type Virtual 88868 remote_ip 5.5.5.188 88869 username forozande 88869 unique_id port 88869 terminate_cause User-Request 88869 bytes_out 13893 88869 bytes_in 41183 88869 station_ip 83.122.107.163 88869 port 15728830 88869 nas_port_type Virtual 88869 remote_ip 5.5.5.166 88871 username forozande 88871 unique_id port 88871 terminate_cause User-Request 88871 bytes_out 13152 88871 bytes_in 62690 88871 station_ip 83.123.153.7 88871 port 15728833 88871 nas_port_type Virtual 88871 remote_ip 5.5.5.164 88880 username forozande 88880 unique_id port 88880 terminate_cause User-Request 88880 bytes_out 33107 88880 bytes_in 118858 88880 station_ip 37.129.16.137 88880 port 15728841 88880 nas_port_type Virtual 88880 remote_ip 5.5.5.161 88883 username arman 88883 unique_id port 88883 terminate_cause User-Request 88883 bytes_out 44944 88883 bytes_in 161143 88883 station_ip 83.122.196.243 88883 port 15728845 88883 nas_port_type Virtual 88883 remote_ip 5.5.5.174 88885 username arman 88885 unique_id port 88885 terminate_cause User-Request 88885 bytes_out 32851 88885 bytes_in 192422 88885 station_ip 83.122.196.243 88885 port 15728847 88885 nas_port_type Virtual 88885 remote_ip 5.5.5.174 88895 username arman 88895 unique_id port 88895 terminate_cause User-Request 88895 bytes_out 183451 88895 bytes_in 4203182 88895 station_ip 83.122.196.243 88895 port 15728855 88895 nas_port_type Virtual 88895 remote_ip 5.5.5.174 88898 username khalili 88898 unique_id port 88898 terminate_cause Lost-Carrier 88898 bytes_out 160614 88898 bytes_in 2331904 88898 station_ip 5.120.46.62 88898 port 15728821 88898 nas_port_type Virtual 88898 remote_ip 5.5.5.211 88902 username amirabbas 88902 unique_id port 88902 terminate_cause User-Request 88902 bytes_out 23704530 88902 bytes_in 550972597 88902 station_ip 31.56.156.248 88902 port 15728825 88902 nas_port_type Virtual 88902 remote_ip 5.5.5.167 88904 username forozande 88904 unique_id port 88904 terminate_cause User-Request 88904 bytes_out 22206 88904 bytes_in 60966 88904 station_ip 37.129.35.56 88904 port 15728862 88904 nas_port_type Virtual 88904 remote_ip 5.5.5.152 88907 username madadi 88907 unique_id port 88907 terminate_cause Lost-Carrier 88907 bytes_out 61433 88907 bytes_in 262799 88907 station_ip 5.119.111.240 88907 port 15728864 88907 nas_port_type Virtual 88907 remote_ip 5.5.5.151 88915 username zamanialireza 88915 unique_id port 88915 terminate_cause User-Request 88915 bytes_out 277914 88915 bytes_in 1025317 88915 station_ip 113.203.8.101 88915 port 15728873 88915 nas_port_type Virtual 88915 remote_ip 5.5.5.145 88918 username arman 88918 unique_id port 88918 terminate_cause Lost-Carrier 88918 bytes_out 5796962 88918 bytes_in 124633525 88918 station_ip 5.119.17.93 88918 port 15728867 88918 nas_port_type Virtual 88918 remote_ip 5.5.5.149 88920 username mahdixz 88920 unique_id port 88920 terminate_cause User-Request 88920 bytes_out 175019 88920 bytes_in 751001 88920 station_ip 151.235.89.54 88920 port 15728878 88920 nas_port_type Virtual 88920 remote_ip 5.5.5.209 88922 username aminvpn 88922 mac 88922 bytes_out 3389237 88922 bytes_in 49397475 88922 station_ip 83.122.107.108 88922 port 21 88922 unique_id port 88922 remote_ip 10.8.0.6 88924 username aminvpn 88924 mac 88924 bytes_out 0 88924 bytes_in 0 88924 station_ip 5.160.115.244 88924 port 23 88874 unique_id port 88874 terminate_cause Lost-Carrier 88874 bytes_out 296149 88874 bytes_in 2946338 88874 station_ip 5.120.75.134 88874 port 15728831 88874 nas_port_type Virtual 88874 remote_ip 5.5.5.165 88877 username ahmadipour 88877 unique_id port 88877 terminate_cause Lost-Carrier 88877 bytes_out 351593 88877 bytes_in 902026 88877 station_ip 83.123.86.253 88877 port 15728836 88877 nas_port_type Virtual 88877 remote_ip 5.5.5.163 88888 username arman 88888 unique_id port 88888 terminate_cause User-Request 88888 bytes_out 82659 88888 bytes_in 1177584 88888 station_ip 83.122.196.243 88888 port 15728849 88888 nas_port_type Virtual 88888 remote_ip 5.5.5.174 88890 username madadi 88890 unique_id port 88890 terminate_cause Lost-Carrier 88890 bytes_out 103329 88890 bytes_in 687024 88890 station_ip 5.120.179.113 88890 port 15728842 88890 nas_port_type Virtual 88890 remote_ip 5.5.5.160 88892 username madadi 88892 unique_id port 88892 terminate_cause Lost-Carrier 88892 bytes_out 90160 88892 bytes_in 208796 88892 station_ip 5.120.21.32 88892 port 15728846 88892 nas_port_type Virtual 88892 remote_ip 5.5.5.158 88901 username arman 88901 unique_id port 88901 terminate_cause User-Request 88901 bytes_out 119704 88901 bytes_in 1819209 88901 station_ip 83.122.196.243 88901 port 15728859 88901 nas_port_type Virtual 88901 remote_ip 5.5.5.174 88906 username madadi 88906 unique_id port 88906 terminate_cause Lost-Carrier 88906 bytes_out 11400 88906 bytes_in 126631 88906 station_ip 5.119.154.219 88906 port 15728861 88906 nas_port_type Virtual 88906 remote_ip 5.5.5.153 88908 username heydari 88908 unique_id port 88908 terminate_cause User-Request 88908 bytes_out 16146083 88908 bytes_in 9976822 88908 station_ip 37.27.6.39 88908 port 15728866 88908 nas_port_type Virtual 88908 remote_ip 5.5.5.156 88909 username madadi 88909 unique_id port 88909 terminate_cause Lost-Carrier 88909 bytes_out 140283 88909 bytes_in 1527862 88909 station_ip 5.119.193.255 88909 port 15728865 88909 nas_port_type Virtual 88909 remote_ip 5.5.5.150 88916 username mahdixz 88916 unique_id port 88916 terminate_cause User-Request 88916 bytes_out 0 88916 bytes_in 0 88916 station_ip 151.235.89.54 88916 port 15728875 88916 nas_port_type Virtual 88916 remote_ip 5.5.5.209 88933 username heydari 88933 unique_id port 88933 terminate_cause User-Request 88933 bytes_out 45397 88933 bytes_in 326575 88933 station_ip 37.129.241.207 88933 port 15728885 88933 nas_port_type Virtual 88933 remote_ip 5.5.5.142 88934 username aminvpn 88934 mac 88934 bytes_out 0 88934 bytes_in 0 88934 station_ip 5.160.115.244 88934 port 21 88934 unique_id port 88934 remote_ip 10.8.0.6 88936 username caferibar 88936 unique_id port 88936 terminate_cause Lost-Carrier 88936 bytes_out 1343313 88936 bytes_in 18494423 88936 station_ip 5.113.233.1 88936 port 15728882 88936 nas_port_type Virtual 88936 remote_ip 5.5.5.139 88941 username aminvpn 88941 mac 88941 bytes_out 1458820 88941 bytes_in 17851193 88941 station_ip 5.160.115.244 88941 port 23 88941 unique_id port 88941 remote_ip 10.8.0.6 88942 username aminvpn 88942 mac 88942 bytes_out 0 88942 bytes_in 0 88942 station_ip 5.160.115.244 88942 port 21 88942 unique_id port 88942 remote_ip 10.8.0.6 88949 username heydari 88949 unique_id port 88949 terminate_cause User-Request 88949 bytes_out 15597 88949 bytes_in 47602 88949 station_ip 37.129.241.207 88949 port 15728893 88949 nas_port_type Virtual 88949 remote_ip 5.5.5.142 88956 username aminvpn 88956 mac 88956 bytes_out 0 88956 bytes_in 0 88956 station_ip 83.122.107.108 88887 username caferibar 88887 unique_id port 88887 terminate_cause User-Request 88887 bytes_out 2705367 88887 bytes_in 48499407 88887 station_ip 89.32.102.60 88887 port 15728829 88887 nas_port_type Virtual 88887 remote_ip 5.5.5.168 88896 username asadi 88896 unique_id port 88896 terminate_cause User-Request 88896 bytes_out 47730 88896 bytes_in 202124 88896 station_ip 83.123.231.118 88896 port 15728857 88896 nas_port_type Virtual 88896 remote_ip 5.5.5.250 88899 username arman 88899 unique_id port 88899 terminate_cause User-Request 88899 bytes_out 173631 88899 bytes_in 4272827 88899 station_ip 83.122.196.243 88899 port 15728858 88899 nas_port_type Virtual 88899 remote_ip 5.5.5.174 88900 username heydari 88900 unique_id port 88900 terminate_cause User-Request 88900 bytes_out 125226 88900 bytes_in 599277 88900 station_ip 37.27.6.39 88900 port 15728853 88900 nas_port_type Virtual 88900 remote_ip 5.5.5.156 88905 username arman 88905 unique_id port 88905 terminate_cause User-Request 88905 bytes_out 170735 88905 bytes_in 3454482 88905 station_ip 83.122.196.243 88905 port 15728863 88905 nas_port_type Virtual 88905 remote_ip 5.5.5.174 88910 username forozande 88910 unique_id port 88910 terminate_cause User-Request 88910 bytes_out 25230 88910 bytes_in 92493 88910 station_ip 83.123.86.159 88910 port 15728870 88910 nas_port_type Virtual 88910 remote_ip 5.5.5.147 88911 username mahdixz 88911 unique_id port 88911 terminate_cause User-Request 88911 bytes_out 853253 88911 bytes_in 20479045 88911 station_ip 151.235.89.54 88911 port 15728868 88911 nas_port_type Virtual 88911 remote_ip 5.5.5.209 88914 username madadi 88914 unique_id port 88914 terminate_cause Lost-Carrier 88914 bytes_out 1287078 88914 bytes_in 13768380 88914 station_ip 5.120.150.79 88914 port 15728869 88914 nas_port_type Virtual 88914 remote_ip 5.5.5.148 88917 username heydari 88917 unique_id port 88917 terminate_cause User-Request 88917 bytes_out 33130 88917 bytes_in 78012 88917 station_ip 37.129.241.207 88917 port 15728877 88917 nas_port_type Virtual 88917 remote_ip 5.5.5.142 88919 username mammad 88919 unique_id port 88919 terminate_cause User-Request 88919 bytes_out 234324 88919 bytes_in 2158905 88919 station_ip 5.233.72.29 88919 port 15728876 88919 nas_port_type Virtual 88919 remote_ip 5.5.5.143 88923 username caferibar 88923 unique_id port 88923 terminate_cause Lost-Carrier 88923 bytes_out 36765161 88923 bytes_in 22234290 88923 station_ip 5.113.156.8 88923 port 15728874 88923 nas_port_type Virtual 88923 remote_ip 5.5.5.144 88935 username heydari 88935 unique_id port 88935 terminate_cause User-Request 88935 bytes_out 6916 88935 bytes_in 17246 88935 station_ip 37.129.241.207 88935 port 15728886 88935 nas_port_type Virtual 88935 remote_ip 5.5.5.142 88943 username aminvpn 88943 mac 88943 bytes_out 0 88943 bytes_in 0 88943 station_ip 5.160.115.244 88943 port 21 88943 unique_id port 88943 remote_ip 10.8.0.6 88950 username aminvpn 88950 mac 88950 bytes_out 0 88950 bytes_in 0 88950 station_ip 113.203.17.218 88950 port 21 88950 unique_id port 88950 remote_ip 10.8.0.6 88957 username aminvpn 88957 mac 88957 bytes_out 0 88957 bytes_in 0 88957 station_ip 113.203.17.218 88957 port 21 88957 unique_id port 88957 remote_ip 10.8.0.6 88962 username aminvpn 88962 mac 88962 bytes_out 0 88962 bytes_in 0 88962 station_ip 83.122.107.108 88962 port 23 88962 unique_id port 88962 remote_ip 10.8.0.6 88965 username aminvpn 88965 mac 88965 bytes_out 0 88965 bytes_in 0 88965 station_ip 113.203.17.218 88965 port 21 88897 port 15728816 88897 nas_port_type Virtual 88897 remote_ip 5.5.5.170 88903 username forozande 88903 unique_id port 88903 terminate_cause User-Request 88903 bytes_out 68614 88903 bytes_in 498572 88903 station_ip 83.122.6.124 88903 port 15728860 88903 nas_port_type Virtual 88903 remote_ip 5.5.5.154 88912 username ahmadipour 88912 unique_id port 88912 terminate_cause Lost-Carrier 88912 bytes_out 149919 88912 bytes_in 1670891 88912 station_ip 83.123.48.93 88912 port 15728871 88912 nas_port_type Virtual 88912 remote_ip 5.5.5.146 88913 username heydari 88913 unique_id port 88913 terminate_cause Lost-Carrier 88913 bytes_out 35458 88913 bytes_in 198834 88913 station_ip 37.27.6.39 88913 port 15728872 88913 nas_port_type Virtual 88913 remote_ip 5.5.5.156 88921 username mamal 88921 unique_id port 88921 terminate_cause User-Request 88921 bytes_out 6597910 88921 bytes_in 185124018 88921 station_ip 113.203.10.78 88921 port 15728880 88921 nas_port_type Virtual 88921 remote_ip 5.5.5.141 88925 username aminvpn 88925 mac 88925 bytes_out 0 88925 bytes_in 0 88925 station_ip 83.122.107.108 88925 port 21 88925 unique_id port 88925 remote_ip 10.8.0.6 88927 username aminvpn 88927 mac 88927 bytes_out 0 88927 bytes_in 0 88927 station_ip 83.122.107.108 88927 port 21 88927 unique_id port 88927 remote_ip 10.8.0.6 88929 username aminvpn 88929 mac 88929 bytes_out 0 88929 bytes_in 0 88929 station_ip 5.160.115.244 88929 port 23 88929 unique_id port 88929 remote_ip 10.8.0.6 88931 username heydari 88931 unique_id port 88931 terminate_cause User-Request 88931 bytes_out 16074 88931 bytes_in 70729 88931 station_ip 37.129.241.207 88931 port 15728884 88931 nas_port_type Virtual 88931 remote_ip 5.5.5.142 88932 username aminvpn 88932 mac 88932 bytes_out 0 88932 bytes_in 0 88932 station_ip 5.160.115.244 88932 port 23 88932 unique_id port 88932 remote_ip 10.8.0.6 88938 username aminvpn 88938 mac 88938 bytes_out 0 88938 bytes_in 0 88938 station_ip 5.160.115.244 88938 port 21 88938 unique_id port 88938 remote_ip 10.8.0.6 88940 username forozande 88940 unique_id port 88940 terminate_cause User-Request 88940 bytes_out 62563 88940 bytes_in 1212441 88940 station_ip 83.122.23.150 88940 port 15728890 88940 nas_port_type Virtual 88940 remote_ip 5.5.5.137 88944 username aminvpn 88944 mac 88944 bytes_out 0 88944 bytes_in 0 88944 station_ip 113.203.17.218 88944 port 21 88944 unique_id port 88944 remote_ip 10.8.0.6 88946 username aminvpn 88946 mac 88946 bytes_out 0 88946 bytes_in 0 88946 station_ip 83.122.107.108 88946 port 23 88946 unique_id port 88946 remote_ip 10.8.0.6 88948 username aminvpn 88948 mac 88948 bytes_out 0 88948 bytes_in 0 88948 station_ip 83.122.107.108 88948 port 23 88948 unique_id port 88948 remote_ip 10.8.0.6 88951 username bcboard 88951 unique_id port 88951 terminate_cause User-Request 88951 bytes_out 1397970 88951 bytes_in 11834616 88951 station_ip 83.122.76.24 88951 port 15728881 88951 nas_port_type Virtual 88951 remote_ip 5.5.5.140 88953 username aminvpn 88953 mac 88953 bytes_out 0 88953 bytes_in 0 88953 station_ip 113.203.17.218 88953 port 21 88953 unique_id port 88953 remote_ip 10.8.0.6 88954 username aminvpn 88954 mac 88954 bytes_out 0 88954 bytes_in 0 88954 station_ip 83.122.107.108 88954 port 23 88954 unique_id port 88954 remote_ip 10.8.0.6 88960 username alinezhad 88960 unique_id port 88960 terminate_cause User-Request 88960 bytes_out 0 88960 bytes_in 0 88924 unique_id port 88924 remote_ip 10.8.0.6 88926 username aminvpn 88926 mac 88926 bytes_out 0 88926 bytes_in 0 88926 station_ip 5.160.115.244 88926 port 23 88926 unique_id port 88926 remote_ip 10.8.0.6 88928 username afarin 88928 unique_id port 88928 terminate_cause User-Request 88928 bytes_out 366009 88928 bytes_in 8329782 88928 station_ip 83.123.231.73 88928 port 15728883 88928 nas_port_type Virtual 88928 remote_ip 5.5.5.138 88930 username aminvpn 88930 mac 88930 bytes_out 0 88930 bytes_in 0 88930 station_ip 83.122.107.108 88930 port 21 88930 unique_id port 88930 remote_ip 10.8.0.6 88937 username forozande 88937 unique_id port 88937 terminate_cause User-Request 88937 bytes_out 88159 88937 bytes_in 679706 88937 station_ip 83.122.23.150 88937 port 15728887 88937 nas_port_type Virtual 88937 remote_ip 5.5.5.137 88939 username forozande 88939 unique_id port 88939 terminate_cause User-Request 88939 bytes_out 66160 88939 bytes_in 880118 88939 station_ip 83.122.23.150 88939 port 15728889 88939 nas_port_type Virtual 88939 remote_ip 5.5.5.137 88945 username heydari 88945 unique_id port 88945 terminate_cause User-Request 88945 bytes_out 14123 88945 bytes_in 39838 88945 station_ip 37.129.241.207 88945 port 15728892 88945 nas_port_type Virtual 88945 remote_ip 5.5.5.142 88947 username aminvpn 88947 mac 88947 bytes_out 0 88947 bytes_in 0 88947 station_ip 113.203.17.218 88947 port 21 88947 unique_id port 88947 remote_ip 10.8.0.6 88952 username aminvpn 88952 mac 88952 bytes_out 0 88952 bytes_in 0 88952 station_ip 83.122.107.108 88952 port 23 88952 unique_id port 88952 remote_ip 10.8.0.6 88955 username aminvpn 88955 mac 88955 bytes_out 0 88955 bytes_in 0 88955 station_ip 113.203.17.218 88955 port 21 88955 unique_id port 88955 remote_ip 10.8.0.6 88958 username aminvpn 88958 mac 88958 bytes_out 0 88958 bytes_in 0 88958 station_ip 83.122.107.108 88958 port 23 88958 unique_id port 88958 remote_ip 10.8.0.6 88959 username aminvpn 88959 mac 88959 bytes_out 0 88959 bytes_in 0 88959 station_ip 113.203.17.218 88959 port 21 88959 unique_id port 88959 remote_ip 10.8.0.6 88963 username aminvpn 88963 mac 88963 bytes_out 0 88963 bytes_in 0 88963 station_ip 113.203.17.218 88963 port 21 88963 unique_id port 88963 remote_ip 10.8.0.6 88968 username aminvpn 88968 mac 88968 bytes_out 0 88968 bytes_in 0 88968 station_ip 113.203.17.218 88968 port 21 88968 unique_id port 88968 remote_ip 10.8.0.6 88970 username aminvpn 88970 mac 88970 bytes_out 0 88970 bytes_in 0 88970 station_ip 113.203.17.218 88970 port 21 88970 unique_id port 88970 remote_ip 10.8.0.6 88975 username aminvpn 88975 mac 88975 bytes_out 0 88975 bytes_in 0 88975 station_ip 113.203.17.218 88975 port 21 88975 unique_id port 88975 remote_ip 10.8.0.6 88977 username aminvpn 88977 mac 88977 bytes_out 0 88977 bytes_in 0 88977 station_ip 113.203.17.218 88977 port 21 88977 unique_id port 88977 remote_ip 10.8.0.6 88980 username heydari 88980 unique_id port 88980 terminate_cause User-Request 88980 bytes_out 53595 88980 bytes_in 506841 88980 station_ip 37.129.241.207 88980 port 15728901 88980 nas_port_type Virtual 88980 remote_ip 5.5.5.142 88982 username mammad 88982 unique_id port 88982 terminate_cause Lost-Carrier 88982 bytes_out 360346 88982 bytes_in 2682423 88982 station_ip 46.100.220.11 88982 port 15728895 88982 nas_port_type Virtual 88982 remote_ip 5.5.5.135 88956 port 23 88956 unique_id port 88956 remote_ip 10.8.0.6 88961 username arabpour 88961 unique_id port 88961 terminate_cause User-Request 88961 bytes_out 390231 88961 bytes_in 9775410 88961 station_ip 89.198.148.209 88961 port 15728897 88961 nas_port_type Virtual 88961 remote_ip 5.5.5.133 88966 username aminvpn 88966 mac 88966 bytes_out 0 88966 bytes_in 0 88966 station_ip 83.122.107.108 88966 port 23 88966 unique_id port 88966 remote_ip 10.8.0.6 88981 username aminvpn 88981 mac 88981 bytes_out 62326 88981 bytes_in 179401 88981 station_ip 113.203.17.218 88981 port 21 88981 unique_id port 88981 remote_ip 10.8.0.6 88987 username aminvpn 88987 mac 88987 bytes_out 0 88987 bytes_in 0 88987 station_ip 83.122.107.108 88987 port 23 88987 unique_id port 88987 remote_ip 10.8.0.6 88990 username aminvpn 88990 mac 88990 bytes_out 0 88990 bytes_in 0 88990 station_ip 113.203.17.218 88990 port 21 88990 unique_id port 88990 remote_ip 10.8.0.6 88991 username aminvpn 88991 mac 88991 bytes_out 0 88991 bytes_in 0 88991 station_ip 83.122.107.108 88991 port 23 88991 unique_id port 88991 remote_ip 10.8.0.6 89003 username aminvpn 89003 mac 89003 bytes_out 0 89003 bytes_in 0 89003 station_ip 83.122.107.108 89003 port 23 89003 unique_id port 89003 remote_ip 10.8.0.6 89005 username madadi 89005 unique_id port 89005 terminate_cause Lost-Carrier 89005 bytes_out 936283 89005 bytes_in 4657739 89005 station_ip 5.120.30.62 89005 port 15728888 89005 nas_port_type Virtual 89005 remote_ip 5.5.5.136 89008 username aminvpn 89008 mac 89008 bytes_out 0 89008 bytes_in 0 89008 station_ip 83.122.107.108 89008 port 23 89008 unique_id port 89008 remote_ip 10.8.0.6 89016 username aminvpn 89016 mac 89016 bytes_out 0 89016 bytes_in 0 89016 station_ip 113.203.17.218 89016 port 21 89016 unique_id port 89016 remote_ip 10.8.0.6 89018 username aminvpn 89018 mac 89018 bytes_out 0 89018 bytes_in 0 89018 station_ip 83.122.107.108 89018 port 23 89018 unique_id port 89018 remote_ip 10.8.0.6 89022 username forozande 89022 unique_id port 89022 terminate_cause User-Request 89022 bytes_out 155798 89022 bytes_in 4518751 89022 station_ip 37.129.93.164 89022 port 15728906 89022 nas_port_type Virtual 89022 remote_ip 5.5.5.129 89028 username aminvpn 89028 mac 89028 bytes_out 0 89028 bytes_in 0 89028 station_ip 113.203.17.218 89028 port 21 89028 unique_id port 89028 remote_ip 10.8.0.6 89032 username aminvpn 89032 mac 89032 bytes_out 0 89032 bytes_in 0 89032 station_ip 113.203.17.218 89032 port 21 89032 unique_id port 89032 remote_ip 10.8.0.6 89040 username aminvpn 89040 mac 89040 bytes_out 0 89040 bytes_in 0 89040 station_ip 113.203.17.218 89040 port 21 89040 unique_id port 89040 remote_ip 10.8.0.6 89049 username aminvpn 89049 mac 89049 bytes_out 0 89049 bytes_in 0 89049 station_ip 113.203.17.218 89049 port 21 89049 unique_id port 89049 remote_ip 10.8.0.6 89052 username mahbobeh 89052 unique_id port 89052 terminate_cause Lost-Carrier 89052 bytes_out 386742 89052 bytes_in 4851808 89052 station_ip 37.129.220.129 89052 port 15728891 89052 nas_port_type Virtual 89052 remote_ip 5.5.5.170 89057 username aminvpn 89057 mac 89057 bytes_out 0 89057 bytes_in 0 89057 station_ip 37.129.234.64 89057 port 23 89057 unique_id port 89057 remote_ip 10.8.0.6 89059 username aminvpn 89059 mac 89059 bytes_out 0 88960 station_ip 5.214.244.210 88960 port 15728896 88960 nas_port_type Virtual 88960 remote_ip 5.5.5.134 88964 username aminvpn 88964 mac 88964 bytes_out 0 88964 bytes_in 0 88964 station_ip 83.122.107.108 88964 port 23 88964 unique_id port 88964 remote_ip 10.8.0.6 88969 username aminvpn 88969 mac 88969 bytes_out 0 88969 bytes_in 0 88969 station_ip 83.122.107.108 88969 port 23 88969 unique_id port 88969 remote_ip 10.8.0.6 88972 username heydari 88972 unique_id port 88972 terminate_cause User-Request 88972 bytes_out 16393 88972 bytes_in 51188 88972 station_ip 37.129.241.207 88972 port 15728900 88972 nas_port_type Virtual 88972 remote_ip 5.5.5.142 88974 username mammad 88974 unique_id port 88974 terminate_cause User-Request 88974 bytes_out 73332 88974 bytes_in 407590 88974 station_ip 5.233.59.56 88974 port 15728899 88974 nas_port_type Virtual 88974 remote_ip 5.5.5.132 88979 username aminvpn 88979 mac 88979 bytes_out 0 88979 bytes_in 0 88979 station_ip 5.160.115.244 88979 port 35 88979 unique_id port 88979 remote_ip 10.8.1.10 88984 username aminvpn 88984 mac 88984 bytes_out 0 88984 bytes_in 0 88984 station_ip 113.203.17.218 88984 port 21 88984 unique_id port 88984 remote_ip 10.8.0.6 88985 username aminvpn 88985 mac 88985 bytes_out 0 88985 bytes_in 0 88985 station_ip 83.122.107.108 88985 port 23 88985 unique_id port 88985 remote_ip 10.8.0.6 88988 username aminvpn 88988 mac 88988 bytes_out 0 88988 bytes_in 0 88988 station_ip 113.203.17.218 88988 port 21 88988 unique_id port 88988 remote_ip 10.8.0.6 88997 username aminvpn 88997 mac 88997 bytes_out 0 88997 bytes_in 0 88997 station_ip 83.122.107.108 88997 port 23 88997 unique_id port 88997 remote_ip 10.8.0.6 89000 username aminvpn 89000 mac 89000 bytes_out 0 89000 bytes_in 0 89000 station_ip 113.203.17.218 89000 port 21 89000 unique_id port 89000 remote_ip 10.8.0.6 89001 username aminvpn 89001 mac 89001 bytes_out 0 89001 bytes_in 0 89001 station_ip 83.122.107.108 89001 port 23 89001 unique_id port 89001 remote_ip 10.8.0.6 89004 username aminvpn 89004 mac 89004 bytes_out 0 89004 bytes_in 0 89004 station_ip 113.203.17.218 89004 port 21 89004 unique_id port 89004 remote_ip 10.8.0.6 89006 username aminvpn 89006 mac 89006 bytes_out 0 89006 bytes_in 0 89006 station_ip 83.122.107.108 89006 port 23 89006 unique_id port 89006 remote_ip 10.8.0.6 89013 username aminvpn 89013 mac 89013 bytes_out 0 89013 bytes_in 0 89013 station_ip 113.203.17.218 89013 port 21 89013 unique_id port 89013 remote_ip 10.8.0.6 89021 username mahdixz 89021 unique_id port 89021 terminate_cause User-Request 89021 bytes_out 169321 89021 bytes_in 3349957 89021 station_ip 151.235.89.54 89021 port 15728905 89021 nas_port_type Virtual 89021 remote_ip 5.5.5.209 89029 username aminvpn 89029 mac 89029 bytes_out 0 89029 bytes_in 0 89029 station_ip 83.122.107.108 89029 port 23 89029 unique_id port 89029 remote_ip 10.8.0.6 89030 username aminvpn 89030 mac 89030 bytes_out 0 89030 bytes_in 0 89030 station_ip 113.203.17.218 89030 port 21 89030 unique_id port 89030 remote_ip 10.8.0.6 89035 username aminvpn 89035 mac 89035 bytes_out 0 89035 bytes_in 0 89035 station_ip 83.122.107.108 89035 port 23 89035 unique_id port 89035 remote_ip 10.8.0.6 89038 username aminvpn 89038 mac 89038 bytes_out 0 89038 bytes_in 0 88965 unique_id port 88965 remote_ip 10.8.0.6 88967 username heydari 88967 unique_id port 88967 terminate_cause User-Request 88967 bytes_out 37230 88967 bytes_in 87892 88967 station_ip 37.129.241.207 88967 port 15728898 88967 nas_port_type Virtual 88967 remote_ip 5.5.5.142 88971 username mahdixz 88971 unique_id port 88971 terminate_cause Lost-Carrier 88971 bytes_out 436442 88971 bytes_in 6231518 88971 station_ip 151.235.89.54 88971 port 15728894 88971 nas_port_type Virtual 88971 remote_ip 5.5.5.209 88973 username aminvpn 88973 mac 88973 bytes_out 0 88973 bytes_in 0 88973 station_ip 83.122.107.108 88973 port 23 88973 unique_id port 88973 remote_ip 10.8.0.6 88976 username aminvpn 88976 mac 88976 bytes_out 84692 88976 bytes_in 186846 88976 station_ip 83.122.107.108 88976 port 23 88976 unique_id port 88976 remote_ip 10.8.0.6 88978 username aminvpn 88978 mac 88978 bytes_out 0 88978 bytes_in 0 88978 station_ip 83.122.107.108 88978 port 23 88978 unique_id port 88978 remote_ip 10.8.0.6 88993 username ahmadi 88993 unique_id port 88993 terminate_cause User-Request 88993 bytes_out 0 88993 bytes_in 0 88993 station_ip 83.122.139.17 88993 port 15728903 88993 nas_port_type Virtual 88993 remote_ip 5.5.5.130 88995 username farhad 88995 unique_id port 88995 terminate_cause Lost-Carrier 88995 bytes_out 67176374 88995 bytes_in 288346198 88995 station_ip 5.120.106.137 88995 port 15728856 88995 nas_port_type Virtual 88995 remote_ip 5.5.5.155 88998 username aminvpn 88998 mac 88998 bytes_out 0 88998 bytes_in 0 88998 station_ip 113.203.17.218 88998 port 21 88998 unique_id port 88998 remote_ip 10.8.0.6 89002 username aminvpn 89002 mac 89002 bytes_out 0 89002 bytes_in 0 89002 station_ip 113.203.17.218 89002 port 21 89002 unique_id port 89002 remote_ip 10.8.0.6 89009 username aminvpn 89009 mac 89009 bytes_out 0 89009 bytes_in 0 89009 station_ip 113.203.17.218 89009 port 21 89009 unique_id port 89009 remote_ip 10.8.0.6 89010 username aminvpn 89010 mac 89010 bytes_out 0 89010 bytes_in 0 89010 station_ip 83.122.107.108 89010 port 23 89010 unique_id port 89010 remote_ip 10.8.0.6 89015 username aminvpn 89015 mac 89015 bytes_out 0 89015 bytes_in 0 89015 station_ip 5.160.115.244 89015 port 35 89015 unique_id port 89015 remote_ip 10.8.1.10 89017 username forozande 89017 unique_id port 89017 terminate_cause User-Request 89017 bytes_out 118265 89017 bytes_in 479126 89017 station_ip 37.129.93.164 89017 port 15728904 89017 nas_port_type Virtual 89017 remote_ip 5.5.5.129 89019 username aminvpn 89019 mac 89019 bytes_out 0 89019 bytes_in 0 89019 station_ip 113.203.17.218 89019 port 21 89019 unique_id port 89019 remote_ip 10.8.0.6 89023 username aminvpn 89023 mac 89023 bytes_out 0 89023 bytes_in 0 89023 station_ip 113.203.17.218 89023 port 21 89023 unique_id port 89023 remote_ip 10.8.0.6 89025 username aminvpn 89025 mac 89025 bytes_out 0 89025 bytes_in 0 89025 station_ip 113.203.17.218 89025 port 21 89025 unique_id port 89025 remote_ip 10.8.0.6 89027 username avaanna 89027 unique_id port 89027 terminate_cause User-Request 89027 bytes_out 60000 89027 bytes_in 364590 89027 station_ip 83.123.21.137 89027 port 15728908 89027 nas_port_type Virtual 89027 remote_ip 5.5.5.127 89033 username aminvpn 89033 mac 89033 bytes_out 0 89033 bytes_in 0 89033 station_ip 83.122.107.108 89033 port 23 89033 unique_id port 89033 remote_ip 10.8.0.6 88983 username aminvpn 88983 mac 88983 bytes_out 0 88983 bytes_in 0 88983 station_ip 83.122.107.108 88983 port 23 88983 unique_id port 88983 remote_ip 10.8.0.6 88986 username aminvpn 88986 mac 88986 bytes_out 0 88986 bytes_in 0 88986 station_ip 113.203.17.218 88986 port 21 88986 unique_id port 88986 remote_ip 10.8.0.6 88989 username aminvpn 88989 mac 88989 bytes_out 0 88989 bytes_in 0 88989 station_ip 83.122.107.108 88989 port 23 88989 unique_id port 88989 remote_ip 10.8.0.6 88992 username aminvpn 88992 mac 88992 bytes_out 0 88992 bytes_in 0 88992 station_ip 113.203.17.218 88992 port 21 88992 unique_id port 88992 remote_ip 10.8.0.6 88994 username aminvpn 88994 mac 88994 bytes_out 0 88994 bytes_in 0 88994 station_ip 83.122.107.108 88994 port 23 88994 unique_id port 88994 remote_ip 10.8.0.6 88996 username aminvpn 88996 mac 88996 bytes_out 0 88996 bytes_in 0 88996 station_ip 113.203.17.218 88996 port 21 88996 unique_id port 88996 remote_ip 10.8.0.6 88999 username aminvpn 88999 mac 88999 bytes_out 0 88999 bytes_in 0 88999 station_ip 83.122.107.108 88999 port 23 88999 unique_id port 88999 remote_ip 10.8.0.6 89007 username aminvpn 89007 mac 89007 bytes_out 0 89007 bytes_in 0 89007 station_ip 113.203.17.218 89007 port 21 89007 unique_id port 89007 remote_ip 10.8.0.6 89011 username aminvpn 89011 mac 89011 bytes_out 0 89011 bytes_in 0 89011 station_ip 113.203.17.218 89011 port 21 89011 unique_id port 89011 remote_ip 10.8.0.6 89012 username aminvpn 89012 mac 89012 bytes_out 146178 89012 bytes_in 200762 89012 station_ip 83.122.107.108 89012 port 23 89012 unique_id port 89012 remote_ip 10.8.0.6 89014 username aminvpn 89014 mac 89014 bytes_out 0 89014 bytes_in 0 89014 station_ip 83.122.107.108 89014 port 23 89014 unique_id port 89014 remote_ip 10.8.0.6 89020 username aminvpn 89020 mac 89020 bytes_out 0 89020 bytes_in 0 89020 station_ip 83.122.107.108 89020 port 23 89020 unique_id port 89020 remote_ip 10.8.0.6 89024 username aminvpn 89024 mac 89024 bytes_out 0 89024 bytes_in 0 89024 station_ip 83.122.107.108 89024 port 23 89024 unique_id port 89024 remote_ip 10.8.0.6 89026 username aminvpn 89026 mac 89026 bytes_out 0 89026 bytes_in 0 89026 station_ip 83.122.107.108 89026 port 23 89026 unique_id port 89026 remote_ip 10.8.0.6 89031 username aminvpn 89031 mac 89031 bytes_out 0 89031 bytes_in 0 89031 station_ip 83.122.107.108 89031 port 23 89031 unique_id port 89031 remote_ip 10.8.0.6 89034 username aminvpn 89034 mac 89034 bytes_out 0 89034 bytes_in 0 89034 station_ip 113.203.17.218 89034 port 21 89034 unique_id port 89034 remote_ip 10.8.0.6 89037 username aminvpn 89037 mac 89037 bytes_out 0 89037 bytes_in 0 89037 station_ip 83.122.107.108 89037 port 23 89037 unique_id port 89037 remote_ip 10.8.0.6 89043 username aminvpn 89043 mac 89043 bytes_out 0 89043 bytes_in 0 89043 station_ip 83.122.107.108 89043 port 23 89043 unique_id port 89043 remote_ip 10.8.0.6 89045 username aminvpn 89045 mac 89045 bytes_out 0 89045 bytes_in 0 89045 station_ip 83.122.107.108 89045 port 23 89045 unique_id port 89045 remote_ip 10.8.0.6 89047 username aminvpn 89047 mac 89047 bytes_out 0 89047 bytes_in 0 89047 station_ip 83.122.107.108 89047 port 23 89036 username aminvpn 89036 mac 89036 bytes_out 0 89036 bytes_in 0 89036 station_ip 113.203.17.218 89036 port 21 89036 unique_id port 89036 remote_ip 10.8.0.6 89042 username aminvpn 89042 mac 89042 bytes_out 0 89042 bytes_in 0 89042 station_ip 113.203.17.218 89042 port 21 89042 unique_id port 89042 remote_ip 10.8.0.6 89048 username ahmadi 89048 unique_id port 89048 terminate_cause User-Request 89048 bytes_out 0 89048 bytes_in 0 89048 station_ip 83.122.168.62 89048 port 15728911 89048 nas_port_type Virtual 89048 remote_ip 5.5.5.124 89053 username aminvpn 89053 mac 89053 bytes_out 0 89053 bytes_in 0 89053 station_ip 83.122.107.108 89053 port 23 89053 unique_id port 89053 remote_ip 10.8.0.6 89058 username aminvpn 89058 mac 89058 bytes_out 0 89058 bytes_in 0 89058 station_ip 113.203.17.218 89058 port 21 89058 unique_id port 89058 remote_ip 10.8.0.6 89063 username aminvpn 89063 mac 89063 bytes_out 0 89063 bytes_in 0 89063 station_ip 37.129.234.64 89063 port 23 89063 unique_id port 89063 remote_ip 10.8.0.6 89067 username aminvpn 89067 mac 89067 bytes_out 0 89067 bytes_in 0 89067 station_ip 113.203.17.218 89067 port 21 89067 unique_id port 89067 remote_ip 10.8.0.6 89069 username aminvpn 89069 mac 89069 bytes_out 0 89069 bytes_in 0 89069 station_ip 37.129.234.64 89069 port 21 89069 unique_id port 89069 remote_ip 10.8.0.6 89071 username heydari 89071 unique_id port 89071 terminate_cause User-Request 89071 bytes_out 12482 89071 bytes_in 57152 89071 station_ip 37.129.241.207 89071 port 15728912 89071 nas_port_type Virtual 89071 remote_ip 5.5.5.142 89075 username heydari 89075 unique_id port 89075 terminate_cause User-Request 89075 bytes_out 23965 89075 bytes_in 43694 89075 station_ip 37.129.241.207 89075 port 15728913 89075 nas_port_type Virtual 89075 remote_ip 5.5.5.142 89079 username aminvpn 89079 mac 89079 bytes_out 0 89079 bytes_in 0 89079 station_ip 113.203.17.218 89079 port 21 89079 unique_id port 89079 remote_ip 10.8.0.6 89080 username aminvpn 89080 mac 89080 bytes_out 0 89080 bytes_in 0 89080 station_ip 83.122.107.108 89080 port 23 89080 unique_id port 89080 remote_ip 10.8.0.6 89083 username aminvpn 89083 mac 89083 bytes_out 0 89083 bytes_in 0 89083 station_ip 113.203.17.218 89083 port 21 89083 unique_id port 89083 remote_ip 10.8.0.6 89086 username aminvpn 89086 mac 89086 bytes_out 0 89086 bytes_in 0 89086 station_ip 83.122.107.108 89086 port 23 89086 unique_id port 89086 remote_ip 10.8.0.6 89089 username aminvpn 89089 mac 89089 bytes_out 0 89089 bytes_in 0 89089 station_ip 113.203.17.218 89089 port 21 89089 unique_id port 89089 remote_ip 10.8.0.6 89093 username heydari 89093 unique_id port 89093 terminate_cause User-Request 89093 bytes_out 0 89093 bytes_in 0 89093 station_ip 37.129.241.207 89093 port 15728918 89093 nas_port_type Virtual 89093 remote_ip 5.5.5.142 89096 username aminvpn 89096 mac 89096 bytes_out 0 89096 bytes_in 0 89096 station_ip 113.203.17.218 89096 port 21 89096 unique_id port 89096 remote_ip 10.8.0.6 89097 username aminvpn 89097 mac 89097 bytes_out 175473 89097 bytes_in 823421 89097 station_ip 83.122.107.108 89097 port 23 89097 unique_id port 89097 remote_ip 10.8.0.6 89100 username aminvpn 89100 mac 89100 bytes_out 0 89100 bytes_in 0 89100 station_ip 113.203.17.218 89100 port 21 89100 unique_id port 89038 station_ip 113.203.17.218 89038 port 21 89038 unique_id port 89038 remote_ip 10.8.0.6 89039 username aminvpn 89039 mac 89039 bytes_out 0 89039 bytes_in 0 89039 station_ip 83.122.107.108 89039 port 23 89039 unique_id port 89039 remote_ip 10.8.0.6 89041 username aminvpn 89041 mac 89041 bytes_out 16303 89041 bytes_in 15758 89041 station_ip 83.122.107.108 89041 port 23 89041 unique_id port 89041 remote_ip 10.8.0.6 89044 username aminvpn 89044 mac 89044 bytes_out 0 89044 bytes_in 0 89044 station_ip 113.203.17.218 89044 port 21 89044 unique_id port 89044 remote_ip 10.8.0.6 89046 username aminvpn 89046 mac 89046 bytes_out 0 89046 bytes_in 0 89046 station_ip 113.203.17.218 89046 port 21 89046 unique_id port 89046 remote_ip 10.8.0.6 89050 username aminvpn 89050 mac 89050 bytes_out 0 89050 bytes_in 0 89050 station_ip 83.122.107.108 89050 port 23 89050 unique_id port 89050 remote_ip 10.8.0.6 89051 username aminvpn 89051 mac 89051 bytes_out 0 89051 bytes_in 0 89051 station_ip 113.203.17.218 89051 port 21 89051 unique_id port 89051 remote_ip 10.8.0.6 89055 username aminvpn 89055 mac 89055 bytes_out 0 89055 bytes_in 0 89055 station_ip 37.129.234.64 89055 port 23 89055 unique_id port 89055 remote_ip 10.8.0.6 89060 username aminvpn 89060 mac 89060 bytes_out 0 89060 bytes_in 0 89060 station_ip 37.129.234.64 89060 port 21 89060 unique_id port 89060 remote_ip 10.8.0.6 89062 username aminvpn 89062 mac 89062 bytes_out 0 89062 bytes_in 0 89062 station_ip 113.203.17.218 89062 port 21 89062 unique_id port 89062 remote_ip 10.8.0.6 89076 username aminvpn 89076 mac 89076 bytes_out 0 89076 bytes_in 0 89076 station_ip 83.122.107.108 89076 port 23 89076 unique_id port 89076 remote_ip 10.8.0.6 89078 username aminvpn 89078 mac 89078 bytes_out 0 89078 bytes_in 0 89078 station_ip 83.122.107.108 89078 port 23 89078 unique_id port 89078 remote_ip 10.8.0.6 89082 username aminvpn 89082 mac 89082 bytes_out 0 89082 bytes_in 0 89082 station_ip 83.122.107.108 89082 port 23 89082 unique_id port 89082 remote_ip 10.8.0.6 89085 username aminvpn 89085 mac 89085 bytes_out 0 89085 bytes_in 0 89085 station_ip 113.203.17.218 89085 port 21 89085 unique_id port 89085 remote_ip 10.8.0.6 89095 username aminvpn 89095 mac 89095 bytes_out 0 89095 bytes_in 0 89095 station_ip 83.122.107.108 89095 port 23 89095 unique_id port 89095 remote_ip 10.8.0.6 89099 username aminvpn 89099 mac 89099 bytes_out 0 89099 bytes_in 0 89099 station_ip 83.122.107.108 89099 port 23 89099 unique_id port 89099 remote_ip 10.8.0.6 89104 username alinezhad 89104 unique_id port 89104 terminate_cause User-Request 89104 bytes_out 0 89104 bytes_in 0 89104 station_ip 5.212.69.29 89104 port 15728924 89104 nas_port_type Virtual 89104 remote_ip 5.5.5.123 89107 username caferibar 89107 unique_id port 89107 terminate_cause User-Request 89107 bytes_out 0 89107 bytes_in 0 89107 station_ip 151.238.250.170 89107 port 15728927 89107 nas_port_type Virtual 89107 remote_ip 5.5.5.204 89111 username caferibar 89111 unique_id port 89111 terminate_cause User-Request 89111 bytes_out 0 89111 bytes_in 0 89111 station_ip 151.238.250.170 89111 port 15728934 89111 nas_port_type Virtual 89111 remote_ip 5.5.5.204 89113 username aminvpn 89113 unique_id port 89113 terminate_cause Lost-Carrier 89113 bytes_out 10995094 89047 unique_id port 89047 remote_ip 10.8.0.6 89054 username aminvpn 89054 mac 89054 bytes_out 0 89054 bytes_in 0 89054 station_ip 113.203.17.218 89054 port 21 89054 unique_id port 89054 remote_ip 10.8.0.6 89056 username aminvpn 89056 mac 89056 bytes_out 0 89056 bytes_in 0 89056 station_ip 83.122.107.108 89056 port 21 89056 unique_id port 89056 remote_ip 10.8.0.6 89061 username aminvpn 89061 mac 89061 bytes_out 0 89061 bytes_in 0 89061 station_ip 83.122.107.108 89061 port 23 89061 unique_id port 89061 remote_ip 10.8.0.6 89065 username madadi 89065 unique_id port 89065 terminate_cause User-Request 89065 bytes_out 721750 89065 bytes_in 5597724 89065 station_ip 5.120.187.192 89065 port 15728910 89065 nas_port_type Virtual 89065 remote_ip 5.5.5.125 89066 username aminvpn 89066 mac 89066 bytes_out 0 89066 bytes_in 0 89066 station_ip 37.129.234.64 89066 port 23 89066 unique_id port 89066 remote_ip 10.8.0.6 89070 username aminvpn 89070 mac 89070 bytes_out 0 89070 bytes_in 0 89070 station_ip 113.203.17.218 89070 port 23 89070 unique_id port 89070 remote_ip 10.8.0.6 89073 username aminvpn 89073 mac 89073 bytes_out 0 89073 bytes_in 0 89073 station_ip 37.129.234.64 89073 port 23 89073 unique_id port 89073 remote_ip 10.8.0.6 89077 username aminvpn 89077 mac 89077 bytes_out 0 89077 bytes_in 0 89077 station_ip 113.203.17.218 89077 port 21 89077 unique_id port 89077 remote_ip 10.8.0.6 89090 username aminvpn 89090 mac 89090 bytes_out 0 89090 bytes_in 0 89090 station_ip 83.122.107.108 89090 port 23 89090 unique_id port 89090 remote_ip 10.8.0.6 89092 username aminvpn 89092 mac 89092 bytes_out 0 89092 bytes_in 0 89092 station_ip 83.122.107.108 89092 port 23 89092 unique_id port 89092 remote_ip 10.8.0.6 89094 username aminvpn 89094 mac 89094 bytes_out 0 89094 bytes_in 0 89094 station_ip 113.203.17.218 89094 port 21 89094 unique_id port 89094 remote_ip 10.8.0.6 89098 username aminvpn 89098 mac 89098 bytes_out 0 89098 bytes_in 0 89098 station_ip 113.203.17.218 89098 port 21 89098 unique_id port 89098 remote_ip 10.8.0.6 89101 username aminvpn 89101 mac 89101 bytes_out 0 89101 bytes_in 0 89101 station_ip 83.122.107.108 89101 port 23 89101 unique_id port 89101 remote_ip 10.8.0.6 89102 username zamanialireza 89102 unique_id port 89102 terminate_cause User-Request 89102 bytes_out 630428 89102 bytes_in 10486516 89102 station_ip 94.183.213.166 89102 port 15728909 89102 nas_port_type Virtual 89102 remote_ip 5.5.5.126 89109 username caferibar 89109 unique_id port 89109 terminate_cause User-Request 89109 bytes_out 0 89109 bytes_in 0 89109 station_ip 151.238.250.170 89109 port 15728929 89109 nas_port_type Virtual 89109 remote_ip 5.5.5.204 89114 username caferibar 89114 unique_id port 89114 terminate_cause User-Request 89114 bytes_out 0 89114 bytes_in 0 89114 station_ip 5.124.12.37 89114 port 15728935 89114 nas_port_type Virtual 89114 remote_ip 5.5.5.119 89116 username ahmadi 89116 unique_id port 89116 terminate_cause User-Request 89116 bytes_out 0 89116 bytes_in 0 89116 station_ip 83.122.236.74 89116 port 15728936 89116 nas_port_type Virtual 89116 remote_ip 5.5.5.118 89123 username sobhan 89123 unique_id port 89123 terminate_cause User-Request 89123 bytes_out 9822942 89123 bytes_in 264977178 89123 station_ip 5.119.78.221 89123 port 15728932 89123 nas_port_type Virtual 89123 remote_ip 5.5.5.121 89126 username madadi 89059 bytes_in 0 89059 station_ip 83.122.107.108 89059 port 23 89059 unique_id port 89059 remote_ip 10.8.0.6 89064 username aminvpn 89064 mac 89064 bytes_out 0 89064 bytes_in 0 89064 station_ip 83.122.107.108 89064 port 21 89064 unique_id port 89064 remote_ip 10.8.0.6 89068 username aminvpn 89068 mac 89068 bytes_out 0 89068 bytes_in 0 89068 station_ip 83.122.107.108 89068 port 23 89068 unique_id port 89068 remote_ip 10.8.0.6 89072 username aminvpn 89072 mac 89072 bytes_out 0 89072 bytes_in 0 89072 station_ip 83.122.107.108 89072 port 21 89072 unique_id port 89072 remote_ip 10.8.0.6 89074 username aminvpn 89074 mac 89074 bytes_out 0 89074 bytes_in 0 89074 station_ip 113.203.17.218 89074 port 21 89074 unique_id port 89074 remote_ip 10.8.0.6 89081 username aminvpn 89081 mac 89081 bytes_out 0 89081 bytes_in 0 89081 station_ip 113.203.17.218 89081 port 21 89081 unique_id port 89081 remote_ip 10.8.0.6 89084 username aminvpn 89084 mac 89084 bytes_out 0 89084 bytes_in 0 89084 station_ip 83.122.107.108 89084 port 23 89084 unique_id port 89084 remote_ip 10.8.0.6 89087 username aminvpn 89087 mac 89087 bytes_out 0 89087 bytes_in 0 89087 station_ip 113.203.17.218 89087 port 21 89087 unique_id port 89087 remote_ip 10.8.0.6 89088 username aminvpn 89088 mac 89088 bytes_out 0 89088 bytes_in 0 89088 station_ip 83.122.107.108 89088 port 23 89088 unique_id port 89088 remote_ip 10.8.0.6 89091 username aminvpn 89091 mac 89091 bytes_out 0 89091 bytes_in 0 89091 station_ip 113.203.17.218 89091 port 21 89091 unique_id port 89091 remote_ip 10.8.0.6 89103 username aminvpn 89103 kill_reason Maximum check online fails reached 89103 mac 89103 bytes_out 1109451 89103 bytes_in 3377571 89103 station_ip 113.203.17.218 89103 port 21 89103 unique_id port 89103 remote_ip 10.8.0.6 89105 username alinezhad 89105 unique_id port 89105 terminate_cause User-Request 89105 bytes_out 105149 89105 bytes_in 461956 89105 station_ip 5.212.69.29 89105 port 15728925 89105 nas_port_type Virtual 89105 remote_ip 5.5.5.123 89108 username caferibar 89108 unique_id port 89108 terminate_cause User-Request 89108 bytes_out 0 89108 bytes_in 0 89108 station_ip 151.238.250.170 89108 port 15728928 89108 nas_port_type Virtual 89108 remote_ip 5.5.5.204 89124 username bcboard 89124 unique_id port 89124 terminate_cause User-Request 89124 bytes_out 174539 89124 bytes_in 827448 89124 station_ip 83.122.187.202 89124 port 15728943 89124 nas_port_type Virtual 89124 remote_ip 5.5.5.115 89125 username aminvpn 89125 mac 89125 bytes_out 0 89125 bytes_in 0 89125 station_ip 83.122.1.100 89125 port 21 89125 unique_id port 89125 remote_ip 10.8.0.6 89127 username bcboard 89127 unique_id port 89127 terminate_cause User-Request 89127 bytes_out 0 89127 bytes_in 0 89127 station_ip 83.122.187.202 89127 port 15728945 89127 nas_port_type Virtual 89127 remote_ip 5.5.5.115 89128 username farhad 89128 unique_id port 89128 terminate_cause Lost-Carrier 89128 bytes_out 1960768 89128 bytes_in 27622550 89128 station_ip 5.119.23.145 89128 port 15728941 89128 nas_port_type Virtual 89128 remote_ip 5.5.5.116 89133 username bcboard 89133 unique_id port 89133 terminate_cause User-Request 89133 bytes_out 13886092 89133 bytes_in 466416188 89133 station_ip 83.122.187.202 89133 port 15728951 89133 nas_port_type Virtual 89133 remote_ip 5.5.5.115 89134 username mammad 89134 unique_id port 89134 terminate_cause User-Request 89100 remote_ip 10.8.0.6 89106 username caferibar 89106 unique_id port 89106 terminate_cause User-Request 89106 bytes_out 0 89106 bytes_in 0 89106 station_ip 151.238.250.170 89106 port 15728926 89106 nas_port_type Virtual 89106 remote_ip 5.5.5.204 89110 username zamanialireza 89110 unique_id port 89110 terminate_cause User-Request 89110 bytes_out 0 89110 bytes_in 0 89110 station_ip 94.183.213.166 89110 port 15728930 89110 nas_port_type Virtual 89110 remote_ip 5.5.5.126 89112 username caferibar 89112 unique_id port 89112 terminate_cause Lost-Carrier 89112 bytes_out 692208 89112 bytes_in 14339917 89112 station_ip 5.123.196.154 89112 port 15728931 89112 nas_port_type Virtual 89112 remote_ip 5.5.5.122 89117 username farhad 89117 unique_id port 89117 terminate_cause Lost-Carrier 89117 bytes_out 15543160 89117 bytes_in 223304189 89117 station_ip 5.120.153.229 89117 port 15728902 89117 nas_port_type Virtual 89117 remote_ip 5.5.5.131 89118 username amir 89118 unique_id port 89118 terminate_cause User-Request 89118 bytes_out 633737 89118 bytes_in 3556855 89118 station_ip 46.225.209.195 89118 port 15728937 89118 nas_port_type Virtual 89118 remote_ip 5.5.5.210 89119 username madadi 89119 unique_id port 89119 terminate_cause User-Request 89119 bytes_out 0 89119 bytes_in 0 89119 station_ip 5.120.73.112 89119 port 15728938 89119 nas_port_type Virtual 89119 remote_ip 5.5.5.117 89122 username heydari 89122 unique_id port 89122 terminate_cause User-Request 89122 bytes_out 21628 89122 bytes_in 104782 89122 station_ip 37.129.241.207 89122 port 15728942 89122 nas_port_type Virtual 89122 remote_ip 5.5.5.142 89135 username bcboard 89135 unique_id port 89135 terminate_cause User-Request 89135 bytes_out 69131 89135 bytes_in 385276 89135 station_ip 83.122.103.225 89135 port 15728957 89135 nas_port_type Virtual 89135 remote_ip 5.5.5.110 89137 username caferibar 89137 unique_id port 89137 terminate_cause Lost-Carrier 89137 bytes_out 1645584 89137 bytes_in 10990828 89137 station_ip 5.62.240.72 89137 port 15728954 89137 nas_port_type Virtual 89137 remote_ip 5.5.5.112 89139 username madadi 89139 unique_id port 89139 terminate_cause Lost-Carrier 89139 bytes_out 16908 89139 bytes_in 140219 89139 station_ip 5.119.227.146 89139 port 15728959 89139 nas_port_type Virtual 89139 remote_ip 5.5.5.109 89143 username majid 89143 unique_id port 89143 terminate_cause User-Request 89143 bytes_out 3207134 89143 bytes_in 76430338 89143 station_ip 86.57.53.71 89143 port 15728955 89143 nas_port_type Virtual 89143 remote_ip 5.5.5.111 89147 username mahdixz 89147 kill_reason Maximum number of concurrent logins reached 89147 unique_id port 89147 bytes_out 0 89147 bytes_in 0 89147 station_ip 5.119.146.182 89147 port 15728968 89147 nas_port_type Virtual 89149 username mahdixz 89149 kill_reason Maximum number of concurrent logins reached 89149 unique_id port 89149 bytes_out 0 89149 bytes_in 0 89149 station_ip 5.119.139.223 89149 port 15728970 89149 nas_port_type Virtual 89151 username mahdixz 89151 kill_reason Maximum number of concurrent logins reached 89151 unique_id port 89151 bytes_out 0 89151 bytes_in 0 89151 station_ip 5.119.139.223 89151 port 15728972 89151 nas_port_type Virtual 89159 username mahdixz 89159 unique_id port 89159 terminate_cause User-Request 89159 bytes_out 0 89159 bytes_in 0 89159 station_ip 151.235.89.54 89159 port 15728980 89159 nas_port_type Virtual 89159 remote_ip 5.5.5.209 89161 username afarin 89161 unique_id port 89161 terminate_cause User-Request 89161 bytes_out 0 89161 bytes_in 0 89161 station_ip 31.56.153.7 89161 port 15728982 89161 nas_port_type Virtual 89161 remote_ip 5.5.5.103 89162 username afarin 89113 bytes_in 93711886 89113 station_ip 5.160.115.244 89113 port 15728907 89113 nas_port_type Virtual 89113 remote_ip 5.5.5.128 89115 username mammad 89115 unique_id port 89115 terminate_cause User-Request 89115 bytes_out 1132638 89115 bytes_in 26548502 89115 station_ip 46.100.217.32 89115 port 15728933 89115 nas_port_type Virtual 89115 remote_ip 5.5.5.120 89120 username madadi 89120 unique_id port 89120 terminate_cause Lost-Carrier 89120 bytes_out 2566776 89120 bytes_in 10173746 89120 station_ip 5.120.187.192 89120 port 15728914 89120 nas_port_type Virtual 89120 remote_ip 5.5.5.125 89121 username heydari 89121 unique_id port 89121 terminate_cause User-Request 89121 bytes_out 34046 89121 bytes_in 106234 89121 station_ip 37.129.241.207 89121 port 15728940 89121 nas_port_type Virtual 89121 remote_ip 5.5.5.142 89130 username bcboard 89130 unique_id port 89130 terminate_cause User-Request 89130 bytes_out 191353 89130 bytes_in 1376646 89130 station_ip 83.122.187.202 89130 port 15728949 89130 nas_port_type Virtual 89130 remote_ip 5.5.5.115 89132 username madadi 89132 unique_id port 89132 terminate_cause Lost-Carrier 89132 bytes_out 261343 89132 bytes_in 1197380 89132 station_ip 5.120.141.42 89132 port 15728952 89132 nas_port_type Virtual 89132 remote_ip 5.5.5.114 89138 username shahrooz 89138 unique_id port 89138 terminate_cause Lost-Carrier 89138 bytes_out 169375 89138 bytes_in 1670606 89138 station_ip 83.123.50.93 89138 port 15728953 89138 nas_port_type Virtual 89138 remote_ip 5.5.5.113 89142 username jamali 89142 unique_id port 89142 terminate_cause User-Request 89142 bytes_out 153790 89142 bytes_in 1680048 89142 station_ip 83.122.151.182 89142 port 15728963 89142 nas_port_type Virtual 89142 remote_ip 5.5.5.106 89144 username bcboard 89144 unique_id port 89144 terminate_cause User-Request 89144 bytes_out 134278 89144 bytes_in 645354 89144 station_ip 83.122.30.106 89144 port 15728961 89144 nas_port_type Virtual 89144 remote_ip 5.5.5.107 89146 username mahdixz 89146 kill_reason Maximum number of concurrent logins reached 89146 unique_id port 89146 bytes_out 0 89146 bytes_in 0 89146 station_ip 5.119.146.182 89146 port 15728967 89146 nas_port_type Virtual 89153 username mahdixz 89153 kill_reason Maximum number of concurrent logins reached 89153 unique_id port 89153 bytes_out 0 89153 bytes_in 0 89153 station_ip 5.119.146.63 89153 port 15728975 89153 nas_port_type Virtual 89154 username mahdixz 89154 kill_reason Maximum number of concurrent logins reached 89154 unique_id port 89154 bytes_out 0 89154 bytes_in 0 89154 station_ip 5.119.146.63 89154 port 15728976 89154 nas_port_type Virtual 89157 username mahdixz 89157 unique_id port 89157 terminate_cause Lost-Carrier 89157 bytes_out 2731602 89157 bytes_in 123753595 89157 station_ip 151.235.89.54 89157 port 15728965 89157 nas_port_type Virtual 89157 remote_ip 5.5.5.209 89158 username mahdixz 89158 unique_id port 89158 terminate_cause Lost-Carrier 89158 bytes_out 2333 89158 bytes_in 130855 89158 station_ip 5.120.91.131 89158 port 15728966 89158 nas_port_type Virtual 89158 remote_ip 5.5.5.105 89165 username mahdixz 89165 kill_reason Maximum number of concurrent logins reached 89165 unique_id port 89165 bytes_out 0 89165 bytes_in 0 89165 station_ip 151.235.89.54 89165 port 15728988 89165 nas_port_type Virtual 89167 username mahdixz 89167 kill_reason Maximum number of concurrent logins reached 89167 unique_id port 89167 bytes_out 0 89167 bytes_in 0 89167 station_ip 151.235.89.54 89167 port 15728990 89167 nas_port_type Virtual 89174 username mahdixz 89174 unique_id port 89174 terminate_cause User-Request 89174 bytes_out 2062393 89174 bytes_in 55212744 89174 station_ip 83.123.22.18 89126 unique_id port 89126 terminate_cause Lost-Carrier 89126 bytes_out 138893 89126 bytes_in 1034547 89126 station_ip 5.120.73.112 89126 port 15728939 89126 nas_port_type Virtual 89126 remote_ip 5.5.5.117 89129 username ahmadi 89129 unique_id port 89129 terminate_cause User-Request 89129 bytes_out 220050 89129 bytes_in 2986236 89129 station_ip 83.122.236.74 89129 port 15728944 89129 nas_port_type Virtual 89129 remote_ip 5.5.5.118 89131 username bcboard 89131 unique_id port 89131 terminate_cause User-Request 89131 bytes_out 32942 89131 bytes_in 193264 89131 station_ip 83.122.187.202 89131 port 15728950 89131 nas_port_type Virtual 89131 remote_ip 5.5.5.115 89141 username jamali 89141 unique_id port 89141 terminate_cause User-Request 89141 bytes_out 119435 89141 bytes_in 1547776 89141 station_ip 83.122.151.182 89141 port 15728962 89141 nas_port_type Virtual 89141 remote_ip 5.5.5.106 89145 username mammad 89145 unique_id port 89145 terminate_cause User-Request 89145 bytes_out 339252 89145 bytes_in 942092 89145 station_ip 46.100.217.32 89145 port 15728964 89145 nas_port_type Virtual 89145 remote_ip 5.5.5.120 89155 username mahdixz 89155 kill_reason Maximum number of concurrent logins reached 89155 unique_id port 89155 bytes_out 0 89155 bytes_in 0 89155 station_ip 5.119.146.63 89155 port 15728977 89155 nas_port_type Virtual 89156 username mahdixz 89156 kill_reason Maximum number of concurrent logins reached 89156 unique_id port 89156 bytes_out 0 89156 bytes_in 0 89156 station_ip 5.119.171.184 89156 port 15728978 89156 nas_port_type Virtual 89160 username mahdixz 89160 unique_id port 89160 terminate_cause User-Request 89160 bytes_out 5287896 89160 bytes_in 139201778 89160 station_ip 151.235.89.54 89160 port 15728981 89160 nas_port_type Virtual 89160 remote_ip 5.5.5.209 89164 username mahdixz 89164 kill_reason Maximum number of concurrent logins reached 89164 unique_id port 89164 bytes_out 0 89164 bytes_in 0 89164 station_ip 151.235.89.54 89164 port 15728987 89164 nas_port_type Virtual 89166 username mahdixz 89166 kill_reason Maximum number of concurrent logins reached 89166 unique_id port 89166 bytes_out 0 89166 bytes_in 0 89166 station_ip 151.235.89.54 89166 port 15728989 89166 nas_port_type Virtual 89173 username mahdixz 89173 unique_id port 89173 terminate_cause User-Request 89173 bytes_out 365489 89173 bytes_in 3015156 89173 station_ip 83.123.22.18 89173 port 15728995 89173 nas_port_type Virtual 89173 remote_ip 5.5.5.101 89175 username bcboard 89175 unique_id port 89175 terminate_cause User-Request 89175 bytes_out 664245 89175 bytes_in 3943137 89175 station_ip 37.129.29.164 89175 port 15728997 89175 nas_port_type Virtual 89175 remote_ip 5.5.5.100 89178 username alinezhad 89178 unique_id port 89178 terminate_cause User-Request 89178 bytes_out 230197 89178 bytes_in 774231 89178 station_ip 5.213.159.240 89178 port 15729005 89178 nas_port_type Virtual 89178 remote_ip 5.5.5.97 89181 username asadi 89181 unique_id port 89181 terminate_cause User-Request 89181 bytes_out 113724 89181 bytes_in 1462908 89181 station_ip 83.123.183.229 89181 port 15728640 89181 nas_port_type Virtual 89181 remote_ip 5.5.5.255 89184 username aminvpn 89184 mac 89184 bytes_out 0 89184 bytes_in 0 89184 station_ip 37.129.188.92 89184 port 21 89184 unique_id port 89184 remote_ip 10.8.0.6 89185 username aminvpn 89185 mac 89185 bytes_out 0 89185 bytes_in 0 89185 station_ip 83.123.15.61 89185 port 23 89185 unique_id port 89185 remote_ip 10.8.0.6 89188 username forozande 89188 unique_id port 89188 terminate_cause User-Request 89188 bytes_out 0 89188 bytes_in 0 89188 station_ip 83.123.67.56 89134 bytes_out 256158 89134 bytes_in 2083422 89134 station_ip 46.100.217.32 89134 port 15728956 89134 nas_port_type Virtual 89134 remote_ip 5.5.5.120 89136 username bcboard 89136 unique_id port 89136 terminate_cause User-Request 89136 bytes_out 125241 89136 bytes_in 145490 89136 station_ip 83.122.103.225 89136 port 15728958 89136 nas_port_type Virtual 89136 remote_ip 5.5.5.110 89140 username madadi 89140 unique_id port 89140 terminate_cause Lost-Carrier 89140 bytes_out 20989 89140 bytes_in 130745 89140 station_ip 5.120.130.252 89140 port 15728960 89140 nas_port_type Virtual 89140 remote_ip 5.5.5.108 89148 username mahdixz 89148 kill_reason Maximum number of concurrent logins reached 89148 unique_id port 89148 bytes_out 0 89148 bytes_in 0 89148 station_ip 5.119.146.182 89148 port 15728969 89148 nas_port_type Virtual 89150 username mahdixz 89150 kill_reason Maximum number of concurrent logins reached 89150 unique_id port 89150 bytes_out 0 89150 bytes_in 0 89150 station_ip 5.119.139.223 89150 port 15728971 89150 nas_port_type Virtual 89152 username mahdixz 89152 kill_reason Maximum number of concurrent logins reached 89152 unique_id port 89152 bytes_out 0 89152 bytes_in 0 89152 station_ip 151.235.89.54 89152 port 15728973 89152 nas_port_type Virtual 89169 username mahdixz 89169 kill_reason Maximum number of concurrent logins reached 89169 unique_id port 89169 bytes_out 0 89169 bytes_in 0 89169 station_ip 151.235.89.54 89169 port 15728992 89169 nas_port_type Virtual 89172 username mahdixz 89172 unique_id port 89172 terminate_cause Lost-Carrier 89172 bytes_out 90507146 89172 bytes_in 2078089051 89172 station_ip 5.119.171.184 89172 port 15728979 89172 nas_port_type Virtual 89172 remote_ip 5.5.5.104 89176 username zamanialireza 89176 kill_reason Maximum check online fails reached 89176 unique_id port 89176 bytes_out 417932 89176 bytes_in 13086216 89176 station_ip 5.160.115.245 89176 port 15728998 89176 nas_port_type Virtual 89176 remote_ip 5.5.5.99 89179 username mahbobeh 89179 unique_id port 89179 terminate_cause Admin-Reboot 89179 bytes_out 744925 89179 bytes_in 11673432 89179 station_ip 37.129.220.129 89179 port 15729003 89179 nas_port_type Virtual 89179 remote_ip 5.5.5.170 89183 username aminvpn 89183 mac 89183 bytes_out 0 89183 bytes_in 0 89183 station_ip 83.123.15.61 89183 port 23 89183 unique_id port 89183 remote_ip 10.8.0.6 89186 username aminvpn 89186 mac 89186 bytes_out 0 89186 bytes_in 0 89186 station_ip 37.129.188.92 89186 port 21 89186 unique_id port 89186 remote_ip 10.8.0.6 89189 username aminvpn 89189 mac 89189 bytes_out 0 89189 bytes_in 0 89189 station_ip 37.129.188.92 89189 port 23 89189 unique_id port 89189 remote_ip 10.8.0.6 89192 username aminvpn 89192 mac 89192 bytes_out 0 89192 bytes_in 0 89192 station_ip 83.123.15.61 89192 port 21 89192 unique_id port 89192 remote_ip 10.8.0.6 89199 username forozande 89199 unique_id port 89199 terminate_cause User-Request 89199 bytes_out 54124 89199 bytes_in 401518 89199 station_ip 83.122.6.0 89199 port 15728642 89199 nas_port_type Virtual 89199 remote_ip 5.5.5.253 89204 username madadi 89204 unique_id port 89204 terminate_cause Lost-Carrier 89204 bytes_out 13625 89204 bytes_in 137839 89204 station_ip 5.119.50.226 89204 port 15728646 89204 nas_port_type Virtual 89204 remote_ip 5.5.5.251 89219 username forozande 89219 unique_id port 89219 terminate_cause User-Request 89219 bytes_out 40439 89219 bytes_in 198964 89219 station_ip 83.123.61.111 89219 port 15728664 89219 nas_port_type Virtual 89219 remote_ip 5.5.5.240 89221 username forozande 89221 unique_id port 89162 unique_id port 89162 terminate_cause User-Request 89162 bytes_out 154147 89162 bytes_in 2226573 89162 station_ip 31.56.153.7 89162 port 15728983 89162 nas_port_type Virtual 89162 remote_ip 5.5.5.103 89163 username mahdixz 89163 kill_reason Maximum number of concurrent logins reached 89163 unique_id port 89163 bytes_out 0 89163 bytes_in 0 89163 station_ip 5.119.90.82 89163 port 15728985 89163 nas_port_type Virtual 89168 username mahdixz 89168 kill_reason Maximum number of concurrent logins reached 89168 unique_id port 89168 bytes_out 0 89168 bytes_in 0 89168 station_ip 151.235.89.54 89168 port 15728991 89168 nas_port_type Virtual 89170 username mahdixz 89170 kill_reason Maximum number of concurrent logins reached 89170 unique_id port 89170 bytes_out 0 89170 bytes_in 0 89170 station_ip 5.119.205.249 89170 port 15728993 89170 nas_port_type Virtual 89171 username mahdixz 89171 unique_id port 89171 terminate_cause Lost-Carrier 89171 bytes_out 164044 89171 bytes_in 896123 89171 station_ip 5.119.171.184 89171 port 15728984 89171 nas_port_type Virtual 89171 remote_ip 5.5.5.102 89177 username arabpour 89177 unique_id port 89177 terminate_cause User-Request 89177 bytes_out 0 89177 bytes_in 0 89177 station_ip 46.51.125.85 89177 port 15729002 89177 nas_port_type Virtual 89177 remote_ip 5.5.5.98 89190 username aminvpn 89190 mac 89190 bytes_out 0 89190 bytes_in 0 89190 station_ip 83.123.15.61 89190 port 21 89190 unique_id port 89190 remote_ip 10.8.0.6 89196 username aminvpn 89196 mac 89196 bytes_out 0 89196 bytes_in 0 89196 station_ip 83.123.15.61 89196 port 21 89196 unique_id port 89196 remote_ip 10.8.0.6 89200 username forozande 89200 unique_id port 89200 terminate_cause User-Request 89200 bytes_out 38899 89200 bytes_in 650985 89200 station_ip 83.122.6.0 89200 port 15728643 89200 nas_port_type Virtual 89200 remote_ip 5.5.5.253 89208 username arman 89208 unique_id port 89208 terminate_cause User-Request 89208 bytes_out 0 89208 bytes_in 0 89208 station_ip 5.119.158.94 89208 port 15728652 89208 nas_port_type Virtual 89208 remote_ip 5.5.5.245 89213 username caferibar 89213 unique_id port 89213 terminate_cause User-Request 89213 bytes_out 196200 89213 bytes_in 1088253 89213 station_ip 94.241.181.120 89213 port 15728656 89213 nas_port_type Virtual 89213 remote_ip 5.5.5.248 89214 username asadi 89214 unique_id port 89214 terminate_cause User-Request 89214 bytes_out 40988 89214 bytes_in 272581 89214 station_ip 37.129.229.58 89214 port 15728662 89214 nas_port_type Virtual 89214 remote_ip 5.5.5.250 89215 username madadi 89215 unique_id port 89215 terminate_cause Lost-Carrier 89215 bytes_out 3451 89215 bytes_in 118293 89215 station_ip 5.119.204.137 89215 port 15728658 89215 nas_port_type Virtual 89215 remote_ip 5.5.5.244 89217 username madadi 89217 unique_id port 89217 terminate_cause Lost-Carrier 89217 bytes_out 162138 89217 bytes_in 1706118 89217 station_ip 5.119.38.65 89217 port 15728659 89217 nas_port_type Virtual 89217 remote_ip 5.5.5.243 89220 username ahmadipour 89220 unique_id port 89220 terminate_cause User-Request 89220 bytes_out 11246237 89220 bytes_in 35922368 89220 station_ip 83.123.75.73 89220 port 15728660 89220 nas_port_type Virtual 89220 remote_ip 5.5.5.242 89222 username aminvpn 89222 mac 89222 bytes_out 24824 89222 bytes_in 96481 89222 station_ip 83.123.125.203 89222 port 21 89222 unique_id port 89222 remote_ip 10.8.0.6 89223 username aminvpn 89223 mac 89223 bytes_out 0 89223 bytes_in 0 89223 station_ip 37.129.188.92 89223 port 23 89223 unique_id port 89223 remote_ip 10.8.0.6 89226 username aminvpn 89174 port 15728996 89174 nas_port_type Virtual 89174 remote_ip 5.5.5.101 89180 username khalili 89180 unique_id port 89180 terminate_cause Admin-Reboot 89180 bytes_out 3085873 89180 bytes_in 108396133 89180 station_ip 5.120.46.62 89180 port 15729004 89180 nas_port_type Virtual 89180 remote_ip 5.5.5.211 89182 username aminvpn 89182 mac 89182 bytes_out 1682527 89182 bytes_in 43494793 89182 station_ip 37.129.188.92 89182 port 21 89182 unique_id port 89182 remote_ip 10.8.0.6 89187 username aminvpn 89187 mac 89187 bytes_out 131333 89187 bytes_in 336291 89187 station_ip 83.123.15.61 89187 port 21 89187 unique_id port 89187 remote_ip 10.8.0.6 89191 username aminvpn 89191 mac 89191 bytes_out 0 89191 bytes_in 0 89191 station_ip 37.129.188.92 89191 port 23 89191 unique_id port 89191 remote_ip 10.8.0.6 89195 username aminvpn 89195 mac 89195 bytes_out 0 89195 bytes_in 0 89195 station_ip 37.129.188.92 89195 port 23 89195 unique_id port 89195 remote_ip 10.8.0.6 89201 username forozande 89201 unique_id port 89201 terminate_cause User-Request 89201 bytes_out 170243 89201 bytes_in 4821220 89201 station_ip 83.122.6.0 89201 port 15728644 89201 nas_port_type Virtual 89201 remote_ip 5.5.5.253 89205 username alinezhad 89205 unique_id port 89205 terminate_cause User-Request 89205 bytes_out 0 89205 bytes_in 0 89205 station_ip 37.156.142.13 89205 port 15728648 89205 nas_port_type Virtual 89205 remote_ip 5.5.5.249 89207 username ahmadi 89207 unique_id port 89207 terminate_cause User-Request 89207 bytes_out 42650 89207 bytes_in 98442 89207 station_ip 83.122.142.66 89207 port 15728651 89207 nas_port_type Virtual 89207 remote_ip 5.5.5.246 89211 username caferibar 89211 unique_id port 89211 terminate_cause User-Request 89211 bytes_out 8605557 89211 bytes_in 667964 89211 station_ip 94.241.181.120 89211 port 15728653 89211 nas_port_type Virtual 89211 remote_ip 5.5.5.248 89218 username asadi 89218 unique_id port 89218 terminate_cause User-Request 89218 bytes_out 26539 89218 bytes_in 67455 89218 station_ip 37.129.229.58 89218 port 15728663 89218 nas_port_type Virtual 89218 remote_ip 5.5.5.250 89224 username aminvpn 89224 mac 89224 bytes_out 0 89224 bytes_in 0 89224 station_ip 83.123.125.203 89224 port 21 89224 unique_id port 89224 remote_ip 10.8.0.6 89227 username aminvpn 89227 mac 89227 bytes_out 0 89227 bytes_in 0 89227 station_ip 37.129.188.92 89227 port 23 89227 unique_id port 89227 remote_ip 10.8.0.6 89230 username aminvpn 89230 mac 89230 bytes_out 0 89230 bytes_in 0 89230 station_ip 83.123.125.203 89230 port 21 89230 unique_id port 89230 remote_ip 10.8.0.6 89231 username aminvpn 89231 mac 89231 bytes_out 0 89231 bytes_in 0 89231 station_ip 37.129.188.92 89231 port 23 89231 unique_id port 89231 remote_ip 10.8.0.6 89235 username aminvpn 89235 mac 89235 bytes_out 0 89235 bytes_in 0 89235 station_ip 83.123.125.203 89235 port 21 89235 unique_id port 89235 remote_ip 10.8.0.6 89248 username aminvpn 89248 mac 89248 bytes_out 0 89248 bytes_in 0 89248 station_ip 37.129.188.92 89248 port 23 89248 unique_id port 89248 remote_ip 10.8.0.6 89253 username aminvpn 89253 mac 89253 bytes_out 0 89253 bytes_in 0 89253 station_ip 37.129.188.92 89253 port 23 89253 unique_id port 89253 remote_ip 10.8.0.6 89260 username aminvpn 89260 mac 89260 bytes_out 0 89260 bytes_in 0 89260 station_ip 37.129.188.92 89260 port 23 89260 unique_id port 89188 port 15728641 89188 nas_port_type Virtual 89188 remote_ip 5.5.5.254 89193 username aminvpn 89193 mac 89193 bytes_out 0 89193 bytes_in 0 89193 station_ip 37.129.188.92 89193 port 23 89193 unique_id port 89193 remote_ip 10.8.0.6 89194 username aminvpn 89194 mac 89194 bytes_out 0 89194 bytes_in 0 89194 station_ip 83.123.15.61 89194 port 21 89194 unique_id port 89194 remote_ip 10.8.0.6 89197 username aminvpn 89197 mac 89197 bytes_out 0 89197 bytes_in 0 89197 station_ip 37.129.188.92 89197 port 23 89197 unique_id port 89197 remote_ip 10.8.0.6 89198 username aminvpn 89198 mac 89198 bytes_out 0 89198 bytes_in 0 89198 station_ip 83.123.15.61 89198 port 21 89198 unique_id port 89198 remote_ip 10.8.0.6 89202 username madadi 89202 unique_id port 89202 terminate_cause Lost-Carrier 89202 bytes_out 117729 89202 bytes_in 336197 89202 station_ip 5.120.31.89 89202 port 15728645 89202 nas_port_type Virtual 89202 remote_ip 5.5.5.252 89203 username asadi 89203 unique_id port 89203 terminate_cause User-Request 89203 bytes_out 0 89203 bytes_in 0 89203 station_ip 37.129.229.58 89203 port 15728647 89203 nas_port_type Virtual 89203 remote_ip 5.5.5.250 89206 username forozande 89206 unique_id port 89206 terminate_cause User-Request 89206 bytes_out 98597 89206 bytes_in 553473 89206 station_ip 37.129.224.179 89206 port 15728650 89206 nas_port_type Virtual 89206 remote_ip 5.5.5.247 89209 username caferibar 89209 unique_id port 89209 terminate_cause User-Request 89209 bytes_out 1478038 89209 bytes_in 17446746 89209 station_ip 94.241.181.120 89209 port 15728649 89209 nas_port_type Virtual 89209 remote_ip 5.5.5.248 89210 username aminvpn 89210 mac 89210 bytes_out 558554 89210 bytes_in 1990740 89210 station_ip 113.203.96.173 89210 port 21 89210 unique_id port 89210 remote_ip 10.8.0.6 89212 username caferibar 89212 unique_id port 89212 terminate_cause User-Request 89212 bytes_out 284018 89212 bytes_in 6697703 89212 station_ip 94.241.181.120 89212 port 15728654 89212 nas_port_type Virtual 89212 remote_ip 5.5.5.248 89216 username aminvpn 89216 mac 89216 bytes_out 0 89216 bytes_in 0 89216 station_ip 83.123.125.203 89216 port 21 89216 unique_id port 89216 remote_ip 10.8.0.6 89229 username aminvpn 89229 mac 89229 bytes_out 0 89229 bytes_in 0 89229 station_ip 37.129.188.92 89229 port 23 89229 unique_id port 89229 remote_ip 10.8.0.6 89232 username aminvpn 89232 unique_id port 89232 terminate_cause Lost-Carrier 89232 bytes_out 189724 89232 bytes_in 1441275 89232 station_ip 46.100.223.208 89232 port 15728667 89232 nas_port_type Virtual 89232 remote_ip 5.5.5.238 89238 username aminvpn 89238 mac 89238 bytes_out 30316 89238 bytes_in 53160 89238 station_ip 37.129.188.92 89238 port 23 89238 unique_id port 89238 remote_ip 10.8.0.6 89239 username aminvpn 89239 mac 89239 bytes_out 0 89239 bytes_in 0 89239 station_ip 83.123.125.203 89239 port 21 89239 unique_id port 89239 remote_ip 10.8.0.6 89240 username aminvpn 89240 mac 89240 bytes_out 36164 89240 bytes_in 57728 89240 station_ip 37.129.188.92 89240 port 23 89240 unique_id port 89240 remote_ip 10.8.0.6 89243 username aminvpn 89243 mac 89243 bytes_out 0 89243 bytes_in 0 89243 station_ip 83.123.125.203 89243 port 21 89243 unique_id port 89243 remote_ip 10.8.0.6 89244 username aminvpn 89244 mac 89244 bytes_out 0 89244 bytes_in 0 89244 station_ip 37.129.188.92 89244 port 23 89244 unique_id port 89221 terminate_cause User-Request 89221 bytes_out 507670 89221 bytes_in 17859706 89221 station_ip 83.123.61.111 89221 port 15728666 89221 nas_port_type Virtual 89221 remote_ip 5.5.5.240 89225 username aminvpn 89225 mac 89225 bytes_out 0 89225 bytes_in 0 89225 station_ip 37.129.188.92 89225 port 23 89225 unique_id port 89225 remote_ip 10.8.0.6 89228 username aminvpn 89228 mac 89228 bytes_out 0 89228 bytes_in 0 89228 station_ip 83.123.125.203 89228 port 21 89228 unique_id port 89228 remote_ip 10.8.0.6 89233 username aminvpn 89233 mac 89233 bytes_out 0 89233 bytes_in 0 89233 station_ip 83.123.125.203 89233 port 21 89233 unique_id port 89233 remote_ip 10.8.0.6 89236 username aminvpn 89236 mac 89236 bytes_out 0 89236 bytes_in 0 89236 station_ip 37.129.188.92 89236 port 23 89236 unique_id port 89236 remote_ip 10.8.0.6 89241 username aminvpn 89241 mac 89241 bytes_out 0 89241 bytes_in 0 89241 station_ip 83.123.125.203 89241 port 21 89241 unique_id port 89241 remote_ip 10.8.0.6 89245 username aminvpn 89245 mac 89245 bytes_out 0 89245 bytes_in 0 89245 station_ip 83.123.125.203 89245 port 21 89245 unique_id port 89245 remote_ip 10.8.0.6 89254 username aminvpn 89254 mac 89254 bytes_out 0 89254 bytes_in 0 89254 station_ip 83.123.125.203 89254 port 21 89254 unique_id port 89254 remote_ip 10.8.0.6 89256 username caferibar 89256 unique_id port 89256 terminate_cause Lost-Carrier 89256 bytes_out 856878 89256 bytes_in 6215176 89256 station_ip 5.119.208.194 89256 port 15728661 89256 nas_port_type Virtual 89256 remote_ip 5.5.5.241 89258 username aminvpn 89258 mac 89258 bytes_out 0 89258 bytes_in 0 89258 station_ip 37.129.188.92 89258 port 23 89258 unique_id port 89258 remote_ip 10.8.0.6 89262 username amirabbas 89262 unique_id port 89262 terminate_cause User-Request 89262 bytes_out 6400342 89262 bytes_in 184976728 89262 station_ip 31.56.156.38 89262 port 15728670 89262 nas_port_type Virtual 89262 remote_ip 5.5.5.235 89269 username mammad 89269 unique_id port 89269 terminate_cause User-Request 89269 bytes_out 822194 89269 bytes_in 10608043 89269 station_ip 5.233.79.243 89269 port 15728674 89269 nas_port_type Virtual 89269 remote_ip 5.5.5.232 89271 username aminvpn 89271 mac 89271 bytes_out 294841 89271 bytes_in 422403 89271 station_ip 37.129.188.92 89271 port 21 89271 unique_id port 89271 remote_ip 10.8.0.6 89273 username caferibar 89273 unique_id port 89273 terminate_cause User-Request 89273 bytes_out 0 89273 bytes_in 0 89273 station_ip 89.47.147.239 89273 port 15728678 89273 nas_port_type Virtual 89273 remote_ip 5.5.5.230 89277 username forozande 89277 unique_id port 89277 terminate_cause User-Request 89277 bytes_out 46964 89277 bytes_in 292557 89277 station_ip 83.123.61.111 89277 port 15728683 89277 nas_port_type Virtual 89277 remote_ip 5.5.5.240 89279 username caferibar 89279 unique_id port 89279 terminate_cause Lost-Carrier 89279 bytes_out 1120341 89279 bytes_in 10977831 89279 station_ip 5.62.209.40 89279 port 15728682 89279 nas_port_type Virtual 89279 remote_ip 5.5.5.228 89280 username asadi 89280 unique_id port 89280 terminate_cause User-Request 89280 bytes_out 155934 89280 bytes_in 1882969 89280 station_ip 37.129.229.58 89280 port 15728687 89280 nas_port_type Virtual 89280 remote_ip 5.5.5.250 89292 username caferibar 89292 unique_id port 89292 terminate_cause User-Request 89292 bytes_out 0 89292 bytes_in 0 89292 station_ip 89.47.130.92 89292 port 15728695 89226 mac 89226 bytes_out 0 89226 bytes_in 0 89226 station_ip 83.123.125.203 89226 port 21 89226 unique_id port 89226 remote_ip 10.8.0.6 89234 username aminvpn 89234 mac 89234 bytes_out 0 89234 bytes_in 0 89234 station_ip 37.129.188.92 89234 port 23 89234 unique_id port 89234 remote_ip 10.8.0.6 89237 username aminvpn 89237 mac 89237 bytes_out 0 89237 bytes_in 0 89237 station_ip 83.123.125.203 89237 port 21 89237 unique_id port 89237 remote_ip 10.8.0.6 89242 username aminvpn 89242 mac 89242 bytes_out 42465 89242 bytes_in 68766 89242 station_ip 37.129.188.92 89242 port 23 89242 unique_id port 89242 remote_ip 10.8.0.6 89246 username aminvpn 89246 mac 89246 bytes_out 42746 89246 bytes_in 60592 89246 station_ip 37.129.188.92 89246 port 23 89246 unique_id port 89246 remote_ip 10.8.0.6 89249 username aminvpn 89249 mac 89249 bytes_out 0 89249 bytes_in 0 89249 station_ip 83.123.125.203 89249 port 21 89249 unique_id port 89249 remote_ip 10.8.0.6 89251 username alinezhad 89251 unique_id port 89251 terminate_cause NAS-Error 89251 bytes_out 90 89251 bytes_in 168 89251 station_ip 95.64.99.174 89251 port 15728668 89251 nas_port_type Virtual 89251 remote_ip 5.5.5.237 89252 username aminvpn 89252 mac 89252 bytes_out 0 89252 bytes_in 0 89252 station_ip 83.123.125.203 89252 port 21 89252 unique_id port 89252 remote_ip 10.8.0.6 89261 username aminvpn 89261 mac 89261 bytes_out 0 89261 bytes_in 0 89261 station_ip 83.123.125.203 89261 port 21 89261 unique_id port 89261 remote_ip 10.8.0.6 89264 username aminvpn 89264 mac 89264 bytes_out 95325 89264 bytes_in 118268 89264 station_ip 37.129.188.92 89264 port 23 89264 unique_id port 89264 remote_ip 10.8.0.6 89266 username avaanna 89266 unique_id port 89266 terminate_cause User-Request 89266 bytes_out 50716 89266 bytes_in 210130 89266 station_ip 37.129.87.156 89266 port 15728672 89266 nas_port_type Virtual 89266 remote_ip 5.5.5.233 89270 username aminvpn 89270 unique_id port 89270 terminate_cause User-Request 89270 bytes_out 1096047 89270 bytes_in 20462560 89270 station_ip 37.129.188.92 89270 port 15728675 89270 nas_port_type Virtual 89270 remote_ip 5.5.5.236 89275 username caferibar 89275 unique_id port 89275 terminate_cause Lost-Carrier 89275 bytes_out 595966 89275 bytes_in 8316451 89275 station_ip 93.114.21.107 89275 port 15728671 89275 nas_port_type Virtual 89275 remote_ip 5.5.5.234 89276 username caferibar 89276 unique_id port 89276 terminate_cause Lost-Carrier 89276 bytes_out 242170 89276 bytes_in 7954561 89276 station_ip 89.47.147.239 89276 port 15728679 89276 nas_port_type Virtual 89276 remote_ip 5.5.5.230 89283 username asadi 89283 unique_id port 89283 terminate_cause User-Request 89283 bytes_out 32834 89283 bytes_in 81102 89283 station_ip 37.129.229.58 89283 port 15728691 89283 nas_port_type Virtual 89283 remote_ip 5.5.5.250 89284 username aminvpn 89284 mac 89284 bytes_out 486710 89284 bytes_in 1290878 89284 station_ip 83.123.125.203 89284 port 35 89284 unique_id port 89284 remote_ip 10.8.1.10 89286 username asadi 89286 unique_id port 89286 terminate_cause User-Request 89286 bytes_out 269562 89286 bytes_in 4253975 89286 station_ip 37.129.229.58 89286 port 15728693 89286 nas_port_type Virtual 89286 remote_ip 5.5.5.250 89288 username aminvpn 89288 mac 89288 bytes_out 0 89288 bytes_in 0 89288 station_ip 37.129.188.92 89288 port 21 89288 unique_id port 89288 remote_ip 10.8.0.6 89244 remote_ip 10.8.0.6 89247 username aminvpn 89247 mac 89247 bytes_out 0 89247 bytes_in 0 89247 station_ip 83.123.125.203 89247 port 21 89247 unique_id port 89247 remote_ip 10.8.0.6 89250 username aminvpn 89250 mac 89250 bytes_out 0 89250 bytes_in 0 89250 station_ip 37.129.188.92 89250 port 23 89250 unique_id port 89250 remote_ip 10.8.0.6 89255 username aminvpn 89255 mac 89255 bytes_out 0 89255 bytes_in 0 89255 station_ip 37.129.188.92 89255 port 23 89255 unique_id port 89255 remote_ip 10.8.0.6 89257 username aminvpn 89257 mac 89257 bytes_out 0 89257 bytes_in 0 89257 station_ip 83.123.125.203 89257 port 21 89257 unique_id port 89257 remote_ip 10.8.0.6 89259 username aminvpn 89259 mac 89259 bytes_out 0 89259 bytes_in 0 89259 station_ip 83.123.125.203 89259 port 21 89259 unique_id port 89259 remote_ip 10.8.0.6 89263 username aminvpn 89263 unique_id port 89263 terminate_cause User-Request 89263 bytes_out 771726 89263 bytes_in 6877271 89263 station_ip 37.129.188.92 89263 port 15728669 89263 nas_port_type Virtual 89263 remote_ip 5.5.5.236 89265 username alinezhad 89265 unique_id port 89265 terminate_cause User-Request 89265 bytes_out 0 89265 bytes_in 0 89265 station_ip 37.156.142.13 89265 port 15728673 89265 nas_port_type Virtual 89265 remote_ip 5.5.5.249 89281 username jamali 89281 unique_id port 89281 terminate_cause User-Request 89281 bytes_out 74838 89281 bytes_in 1156470 89281 station_ip 83.122.151.182 89281 port 15728688 89281 nas_port_type Virtual 89281 remote_ip 5.5.5.225 89282 username madadi 89282 unique_id port 89282 terminate_cause Lost-Carrier 89282 bytes_out 336109 89282 bytes_in 1457732 89282 station_ip 5.120.151.164 89282 port 15728686 89282 nas_port_type Virtual 89282 remote_ip 5.5.5.226 89289 username aminvpn 89289 mac 89289 bytes_out 0 89289 bytes_in 0 89289 station_ip 83.123.125.203 89289 port 23 89289 unique_id port 89289 remote_ip 10.8.0.6 89295 username asadi 89295 unique_id port 89295 terminate_cause User-Request 89295 bytes_out 336425 89295 bytes_in 7129915 89295 station_ip 37.129.229.58 89295 port 15728696 89295 nas_port_type Virtual 89295 remote_ip 5.5.5.250 89299 username aminvpn 89299 mac 89299 bytes_out 0 89299 bytes_in 0 89299 station_ip 83.123.125.203 89299 port 23 89299 unique_id port 89299 remote_ip 10.8.0.6 89301 username asadi 89301 unique_id port 89301 terminate_cause User-Request 89301 bytes_out 440315 89301 bytes_in 11222734 89301 station_ip 37.129.229.58 89301 port 15728698 89301 nas_port_type Virtual 89301 remote_ip 5.5.5.250 89306 username aminvpn 89306 mac 89306 bytes_out 0 89306 bytes_in 0 89306 station_ip 83.123.125.203 89306 port 23 89306 unique_id port 89306 remote_ip 10.8.0.6 89308 username aminvpn 89308 mac 89308 bytes_out 0 89308 bytes_in 0 89308 station_ip 37.129.188.92 89308 port 21 89308 unique_id port 89308 remote_ip 10.8.0.6 89311 username aminvpn 89311 mac 89311 bytes_out 55151 89311 bytes_in 81995 89311 station_ip 37.129.188.92 89311 port 21 89311 unique_id port 89311 remote_ip 10.8.0.6 89315 username aminvpn 89315 unique_id port 89315 terminate_cause User-Request 89315 bytes_out 7795963 89315 bytes_in 241180190 89315 station_ip 37.129.188.92 89315 port 15728692 89315 nas_port_type Virtual 89315 remote_ip 5.5.5.236 89316 username aminvpn 89316 mac 89316 bytes_out 0 89316 bytes_in 0 89316 station_ip 37.129.188.92 89316 port 21 89316 unique_id port 89260 remote_ip 10.8.0.6 89267 username caferibar 89267 unique_id port 89267 terminate_cause Lost-Carrier 89267 bytes_out 2106800 89267 bytes_in 20850086 89267 station_ip 94.241.181.120 89267 port 15728657 89267 nas_port_type Virtual 89267 remote_ip 5.5.5.248 89268 username asadi 89268 unique_id port 89268 terminate_cause User-Request 89268 bytes_out 139322 89268 bytes_in 3617047 89268 station_ip 37.129.229.58 89268 port 15728676 89268 nas_port_type Virtual 89268 remote_ip 5.5.5.250 89272 username aminvpn 89272 mac 89272 bytes_out 12222 89272 bytes_in 7041 89272 station_ip 37.129.188.92 89272 port 21 89272 unique_id port 89272 remote_ip 10.8.0.6 89274 username alinezhad 89274 unique_id port 89274 terminate_cause User-Request 89274 bytes_out 37079 89274 bytes_in 393605 89274 station_ip 37.156.142.13 89274 port 15728680 89274 nas_port_type Virtual 89274 remote_ip 5.5.5.249 89278 username khalili 89278 unique_id port 89278 terminate_cause Lost-Carrier 89278 bytes_out 4837283 89278 bytes_in 33420959 89278 station_ip 5.120.46.62 89278 port 15728665 89278 nas_port_type Virtual 89278 remote_ip 5.5.5.239 89285 username aminvpn 89285 mac 89285 bytes_out 0 89285 bytes_in 0 89285 station_ip 37.129.188.92 89285 port 21 89285 unique_id port 89285 remote_ip 10.8.0.6 89287 username aminvpn 89287 mac 89287 bytes_out 0 89287 bytes_in 0 89287 station_ip 83.123.125.203 89287 port 23 89287 unique_id port 89287 remote_ip 10.8.0.6 89290 username caferibar 89290 unique_id port 89290 terminate_cause Lost-Carrier 89290 bytes_out 1178 89290 bytes_in 122318 89290 station_ip 37.153.178.96 89290 port 15728689 89290 nas_port_type Virtual 89290 remote_ip 5.5.5.224 89304 username aminvpn 89304 mac 89304 bytes_out 0 89304 bytes_in 0 89304 station_ip 83.123.125.203 89304 port 23 89304 unique_id port 89304 remote_ip 10.8.0.6 89309 username aminvpn 89309 mac 89309 bytes_out 0 89309 bytes_in 0 89309 station_ip 83.123.125.203 89309 port 23 89309 unique_id port 89309 remote_ip 10.8.0.6 89313 username forozande 89313 unique_id port 89313 terminate_cause User-Request 89313 bytes_out 102888 89313 bytes_in 823817 89313 station_ip 37.129.53.14 89313 port 15728699 89313 nas_port_type Virtual 89313 remote_ip 5.5.5.221 89320 username jamali 89320 unique_id port 89320 terminate_cause User-Request 89320 bytes_out 200850 89320 bytes_in 2199761 89320 station_ip 83.123.191.101 89320 port 15728703 89320 nas_port_type Virtual 89320 remote_ip 5.5.5.220 89325 username aminvpn 89325 mac 89325 bytes_out 791653 89325 bytes_in 3917275 89325 station_ip 37.129.188.92 89325 port 35 89325 unique_id port 89325 remote_ip 10.8.1.10 89329 username majid 89329 unique_id port 89329 terminate_cause User-Request 89329 bytes_out 13772814 89329 bytes_in 466198645 89329 station_ip 86.57.57.178 89329 port 15728681 89329 nas_port_type Virtual 89329 remote_ip 5.5.5.229 89338 username zamanialireza 89338 unique_id port 89338 terminate_cause User-Request 89338 bytes_out 0 89338 bytes_in 0 89338 station_ip 113.203.11.81 89338 port 15728717 89338 nas_port_type Virtual 89338 remote_ip 5.5.5.214 89339 username mahdixz 89339 unique_id port 89339 terminate_cause User-Request 89339 bytes_out 465858 89339 bytes_in 1398372 89339 station_ip 151.235.89.54 89339 port 15728716 89339 nas_port_type Virtual 89339 remote_ip 5.5.5.215 89340 username asadi 89340 unique_id port 89340 terminate_cause User-Request 89340 bytes_out 177448 89340 bytes_in 3299807 89340 station_ip 37.129.229.58 89340 port 15728720 89340 nas_port_type Virtual 89291 username aminvpn 89291 mac 89291 bytes_out 47478 89291 bytes_in 68177 89291 station_ip 37.129.188.92 89291 port 21 89291 unique_id port 89291 remote_ip 10.8.0.6 89294 username aminvpn 89294 mac 89294 bytes_out 0 89294 bytes_in 0 89294 station_ip 83.123.125.203 89294 port 23 89294 unique_id port 89294 remote_ip 10.8.0.6 89298 username aminvpn 89298 mac 89298 bytes_out 0 89298 bytes_in 0 89298 station_ip 37.129.188.92 89298 port 21 89298 unique_id port 89298 remote_ip 10.8.0.6 89300 username caferibar 89300 unique_id port 89300 terminate_cause Lost-Carrier 89300 bytes_out 1079235 89300 bytes_in 41341284 89300 station_ip 5.200.121.11 89300 port 15728690 89300 nas_port_type Virtual 89300 remote_ip 5.5.5.223 89303 username aminvpn 89303 mac 89303 bytes_out 64131 89303 bytes_in 97029 89303 station_ip 37.129.188.92 89303 port 21 89303 unique_id port 89303 remote_ip 10.8.0.6 89314 username aminvpn 89314 mac 89314 bytes_out 0 89314 bytes_in 0 89314 station_ip 37.129.188.92 89314 port 21 89314 unique_id port 89314 remote_ip 10.8.0.6 89322 username aminvpn 89322 mac 89322 bytes_out 0 89322 bytes_in 0 89322 station_ip 37.129.188.92 89322 port 35 89322 unique_id port 89322 remote_ip 10.8.1.10 89326 username mahbobeh 89326 unique_id port 89326 terminate_cause Lost-Carrier 89326 bytes_out 73762 89326 bytes_in 362156 89326 station_ip 37.129.254.237 89326 port 15728708 89326 nas_port_type Virtual 89326 remote_ip 5.5.5.219 89330 username aminvpn 89330 mac 89330 bytes_out 135074 89330 bytes_in 241953 89330 station_ip 83.123.125.203 89330 port 21 89330 unique_id port 89330 remote_ip 10.8.0.6 89334 username aminvpn 89334 unique_id port 89334 terminate_cause User-Request 89334 bytes_out 2525366 89334 bytes_in 31168148 89334 station_ip 37.129.188.92 89334 port 15728707 89334 nas_port_type Virtual 89334 remote_ip 5.5.5.236 89337 username arman 89337 unique_id port 89337 terminate_cause Lost-Carrier 89337 bytes_out 14300098 89337 bytes_in 216016487 89337 station_ip 5.119.158.94 89337 port 15728655 89337 nas_port_type Virtual 89337 remote_ip 5.5.5.245 89342 username mahdixz 89342 unique_id port 89342 terminate_cause User-Request 89342 bytes_out 228716 89342 bytes_in 1570453 89342 station_ip 151.235.89.54 89342 port 15728719 89342 nas_port_type Virtual 89342 remote_ip 5.5.5.215 89344 username asadi 89344 unique_id port 89344 terminate_cause User-Request 89344 bytes_out 22167 89344 bytes_in 99202 89344 station_ip 37.129.229.58 89344 port 15728723 89344 nas_port_type Virtual 89344 remote_ip 5.5.5.250 89349 username madadi 89349 unique_id port 89349 terminate_cause Lost-Carrier 89349 bytes_out 339152 89349 bytes_in 716144 89349 station_ip 5.119.226.43 89349 port 15728725 89349 nas_port_type Virtual 89349 remote_ip 5.5.5.210 89352 username forozande 89352 unique_id port 89352 terminate_cause User-Request 89352 bytes_out 69461 89352 bytes_in 775852 89352 station_ip 83.123.124.195 89352 port 15728732 89352 nas_port_type Virtual 89352 remote_ip 5.5.5.206 89355 username aminvpn 89355 mac 89355 bytes_out 0 89355 bytes_in 0 89355 station_ip 37.129.133.222 89355 port 21 89355 unique_id port 89355 remote_ip 10.8.0.6 89356 username aminvpn 89356 mac 89356 bytes_out 0 89356 bytes_in 0 89356 station_ip 83.122.187.242 89356 port 23 89356 unique_id port 89356 remote_ip 10.8.0.6 89361 username ahmadipour 89361 unique_id port 89361 terminate_cause Lost-Carrier 89361 bytes_out 152010 89361 bytes_in 2631797 89292 nas_port_type Virtual 89292 remote_ip 5.5.5.222 89293 username alinezhad 89293 unique_id port 89293 terminate_cause User-Request 89293 bytes_out 0 89293 bytes_in 0 89293 station_ip 37.156.142.13 89293 port 15728694 89293 nas_port_type Virtual 89293 remote_ip 5.5.5.249 89296 username aminvpn 89296 mac 89296 bytes_out 0 89296 bytes_in 0 89296 station_ip 37.129.188.92 89296 port 21 89296 unique_id port 89296 remote_ip 10.8.0.6 89297 username aminvpn 89297 mac 89297 bytes_out 21831 89297 bytes_in 106149 89297 station_ip 83.123.125.203 89297 port 23 89297 unique_id port 89297 remote_ip 10.8.0.6 89302 username shahrooz 89302 unique_id port 89302 terminate_cause Lost-Carrier 89302 bytes_out 5119462 89302 bytes_in 135777447 89302 station_ip 83.123.50.93 89302 port 15728677 89302 nas_port_type Virtual 89302 remote_ip 5.5.5.231 89305 username aminvpn 89305 mac 89305 bytes_out 81975 89305 bytes_in 223478 89305 station_ip 37.129.188.92 89305 port 21 89305 unique_id port 89305 remote_ip 10.8.0.6 89307 username caferibar 89307 unique_id port 89307 terminate_cause User-Request 89307 bytes_out 4814287 89307 bytes_in 223675889 89307 station_ip 89.47.130.92 89307 port 15728697 89307 nas_port_type Virtual 89307 remote_ip 5.5.5.222 89310 username zamanialireza 89310 unique_id port 89310 terminate_cause User-Request 89310 bytes_out 2337575 89310 bytes_in 20740065 89310 station_ip 113.203.36.97 89310 port 15728684 89310 nas_port_type Virtual 89310 remote_ip 5.5.5.227 89312 username aminvpn 89312 mac 89312 bytes_out 0 89312 bytes_in 0 89312 station_ip 83.123.125.203 89312 port 23 89312 unique_id port 89312 remote_ip 10.8.0.6 89317 username forozande 89317 unique_id port 89317 terminate_cause User-Request 89317 bytes_out 60261 89317 bytes_in 959608 89317 station_ip 37.129.53.14 89317 port 15728700 89317 nas_port_type Virtual 89317 remote_ip 5.5.5.221 89319 username alinezhad 89319 unique_id port 89319 terminate_cause User-Request 89319 bytes_out 0 89319 bytes_in 0 89319 station_ip 37.156.142.13 89319 port 15728704 89319 nas_port_type Virtual 89319 remote_ip 5.5.5.249 89324 username shahrooz 89324 unique_id port 89324 terminate_cause User-Request 89324 bytes_out 38535 89324 bytes_in 17237 89324 station_ip 83.123.16.57 89324 port 15728710 89324 nas_port_type Virtual 89324 remote_ip 5.5.5.217 89327 username caferibar 89327 unique_id port 89327 terminate_cause Lost-Carrier 89327 bytes_out 670977 89327 bytes_in 8305594 89327 station_ip 94.241.181.120 89327 port 15728706 89327 nas_port_type Virtual 89327 remote_ip 5.5.5.248 89331 username caferibar 89331 unique_id port 89331 terminate_cause Lost-Carrier 89331 bytes_out 1628575 89331 bytes_in 58374047 89331 station_ip 89.47.130.92 89331 port 15728705 89331 nas_port_type Virtual 89331 remote_ip 5.5.5.222 89336 username madadi 89336 unique_id port 89336 terminate_cause Lost-Carrier 89336 bytes_out 152146 89336 bytes_in 792712 89336 station_ip 5.119.213.91 89336 port 15728713 89336 nas_port_type Virtual 89336 remote_ip 5.5.5.216 89341 username asadi 89341 unique_id port 89341 terminate_cause User-Request 89341 bytes_out 56097 89341 bytes_in 832311 89341 station_ip 37.129.229.58 89341 port 15728721 89341 nas_port_type Virtual 89341 remote_ip 5.5.5.250 89343 username aminvpn 89343 unique_id port 89343 terminate_cause Lost-Carrier 89343 bytes_out 830085 89343 bytes_in 1261362 89343 station_ip 5.119.195.19 89343 port 15728718 89343 nas_port_type Virtual 89343 remote_ip 5.5.5.213 89345 username forozande 89345 unique_id port 89345 terminate_cause User-Request 89345 bytes_out 119039 89316 remote_ip 10.8.0.6 89318 username asadi 89318 unique_id port 89318 terminate_cause User-Request 89318 bytes_out 156910 89318 bytes_in 2018884 89318 station_ip 37.129.229.58 89318 port 15728701 89318 nas_port_type Virtual 89318 remote_ip 5.5.5.250 89321 username aminvpn 89321 unique_id port 89321 terminate_cause User-Request 89321 bytes_out 1033650 89321 bytes_in 20551803 89321 station_ip 37.129.188.92 89321 port 15728702 89321 nas_port_type Virtual 89321 remote_ip 5.5.5.236 89323 username forozande 89323 unique_id port 89323 terminate_cause User-Request 89323 bytes_out 92211 89323 bytes_in 2043887 89323 station_ip 37.129.244.172 89323 port 15728709 89323 nas_port_type Virtual 89323 remote_ip 5.5.5.218 89328 username alinezhad 89328 unique_id port 89328 terminate_cause User-Request 89328 bytes_out 0 89328 bytes_in 0 89328 station_ip 37.156.142.13 89328 port 15728712 89328 nas_port_type Virtual 89328 remote_ip 5.5.5.249 89332 username mahbobeh 89332 unique_id port 89332 terminate_cause Lost-Carrier 89332 bytes_out 5616 89332 bytes_in 42822 89332 station_ip 37.129.254.237 89332 port 15728714 89332 nas_port_type Virtual 89332 remote_ip 5.5.5.219 89333 username aminvpn 89333 mac 89333 bytes_out 0 89333 bytes_in 0 89333 station_ip 37.129.188.92 89333 port 35 89333 unique_id port 89333 remote_ip 10.8.1.10 89335 username alinezhad 89335 unique_id port 89335 terminate_cause User-Request 89335 bytes_out 0 89335 bytes_in 0 89335 station_ip 37.156.142.13 89335 port 15728715 89335 nas_port_type Virtual 89335 remote_ip 5.5.5.249 89347 username asadi 89347 unique_id port 89347 terminate_cause User-Request 89347 bytes_out 48783 89347 bytes_in 494912 89347 station_ip 37.129.229.58 89347 port 15728726 89347 nas_port_type Virtual 89347 remote_ip 5.5.5.250 89351 username kamali 89351 unique_id port 89351 terminate_cause User-Request 89351 bytes_out 42109 89351 bytes_in 43250 89351 station_ip 83.123.124.145 89351 port 15728731 89351 nas_port_type Virtual 89351 remote_ip 5.5.5.208 89353 username aminvpn 89353 mac 89353 bytes_out 10504230 89353 bytes_in 865224 89353 station_ip 37.129.133.222 89353 port 21 89353 unique_id port 89353 remote_ip 10.8.0.6 89362 username forozande 89362 unique_id port 89362 terminate_cause User-Request 89362 bytes_out 21243 89362 bytes_in 92583 89362 station_ip 83.122.230.146 89362 port 15728735 89362 nas_port_type Virtual 89362 remote_ip 5.5.5.204 89364 username asadi 89364 unique_id port 89364 terminate_cause User-Request 89364 bytes_out 122653 89364 bytes_in 2850628 89364 station_ip 37.129.229.58 89364 port 15728737 89364 nas_port_type Virtual 89364 remote_ip 5.5.5.250 89371 username forozande 89371 unique_id port 89371 terminate_cause User-Request 89371 bytes_out 0 89371 bytes_in 0 89371 station_ip 37.129.88.212 89371 port 15728748 89371 nas_port_type Virtual 89371 remote_ip 5.5.5.199 89375 username asadi 89375 unique_id port 89375 terminate_cause User-Request 89375 bytes_out 39400 89375 bytes_in 92630 89375 station_ip 37.129.229.58 89375 port 15728751 89375 nas_port_type Virtual 89375 remote_ip 5.5.5.250 89381 username aminvpn 89381 mac 89381 bytes_out 0 89381 bytes_in 0 89381 station_ip 37.129.42.168 89381 port 21 89381 unique_id port 89381 remote_ip 10.8.0.6 89383 username aminvpn 89383 mac 89383 bytes_out 0 89383 bytes_in 0 89383 station_ip 37.129.133.222 89383 port 23 89383 unique_id port 89383 remote_ip 10.8.0.6 89385 username forozande 89385 unique_id port 89385 terminate_cause User-Request 89385 bytes_out 54469 89385 bytes_in 324976 89340 remote_ip 5.5.5.250 89348 username kamali 89348 unique_id port 89348 terminate_cause User-Request 89348 bytes_out 75827 89348 bytes_in 180812 89348 station_ip 83.123.124.145 89348 port 15728728 89348 nas_port_type Virtual 89348 remote_ip 5.5.5.208 89350 username asadi 89350 unique_id port 89350 terminate_cause User-Request 89350 bytes_out 16429 89350 bytes_in 79477 89350 station_ip 37.129.229.58 89350 port 15728730 89350 nas_port_type Virtual 89350 remote_ip 5.5.5.250 89354 username aminvpn 89354 mac 89354 bytes_out 0 89354 bytes_in 0 89354 station_ip 83.122.187.242 89354 port 23 89354 unique_id port 89354 remote_ip 10.8.0.6 89358 username aminvpn 89358 mac 89358 bytes_out 0 89358 bytes_in 0 89358 station_ip 83.122.180.167 89358 port 35 89358 unique_id port 89358 remote_ip 10.8.1.10 89360 username zamanialireza 89360 unique_id port 89360 terminate_cause User-Request 89360 bytes_out 242140 89360 bytes_in 3141194 89360 station_ip 5.160.115.245 89360 port 15728733 89360 nas_port_type Virtual 89360 remote_ip 5.5.5.205 89366 username ahmadi 89366 unique_id port 89366 terminate_cause User-Request 89366 bytes_out 40593 89366 bytes_in 251962 89366 station_ip 83.122.207.50 89366 port 15728741 89366 nas_port_type Virtual 89366 remote_ip 5.5.5.203 89367 username aminvpn 89367 mac 89367 bytes_out 0 89367 bytes_in 0 89367 station_ip 37.129.133.222 89367 port 21 89367 unique_id port 89367 remote_ip 10.8.0.6 89370 username khalili 89370 unique_id port 89370 terminate_cause Lost-Carrier 89370 bytes_out 4307559 89370 bytes_in 14214859 89370 station_ip 5.120.46.62 89370 port 15728711 89370 nas_port_type Virtual 89370 remote_ip 5.5.5.239 89374 username aminvpn 89374 mac 89374 bytes_out 0 89374 bytes_in 0 89374 station_ip 37.129.133.222 89374 port 21 89374 unique_id port 89374 remote_ip 10.8.0.6 89377 username aminvpn 89377 mac 89377 bytes_out 7612 89377 bytes_in 11158 89377 station_ip 37.129.133.222 89377 port 23 89377 unique_id port 89377 remote_ip 10.8.0.6 89379 username asadi 89379 unique_id port 89379 terminate_cause User-Request 89379 bytes_out 8602 89379 bytes_in 21954 89379 station_ip 37.129.229.58 89379 port 15728753 89379 nas_port_type Virtual 89379 remote_ip 5.5.5.250 89382 username mammad 89382 kill_reason Maximum check online fails reached 89382 unique_id port 89382 bytes_out 1507690 89382 bytes_in 17486575 89382 station_ip 5.233.57.57 89382 port 15728746 89382 nas_port_type Virtual 89382 remote_ip 5.5.5.201 89392 username aminvpn 89392 mac 89392 bytes_out 0 89392 bytes_in 0 89392 station_ip 37.129.42.168 89392 port 23 89392 unique_id port 89392 remote_ip 10.8.0.6 89400 username aminvpn 89400 mac 89400 bytes_out 0 89400 bytes_in 0 89400 station_ip 37.129.42.168 89400 port 23 89400 unique_id port 89400 remote_ip 10.8.0.6 89403 username caferibar 89403 unique_id port 89403 terminate_cause Lost-Carrier 89403 bytes_out 1100392 89403 bytes_in 36150614 89403 station_ip 5.134.187.69 89403 port 15728745 89403 nas_port_type Virtual 89403 remote_ip 5.5.5.202 89405 username aminvpn 89405 mac 89405 bytes_out 0 89405 bytes_in 0 89405 station_ip 37.129.42.168 89405 port 23 89405 unique_id port 89405 remote_ip 10.8.0.6 89407 username aminvpn 89407 mac 89407 bytes_out 0 89407 bytes_in 0 89407 station_ip 37.129.42.168 89407 port 23 89407 unique_id port 89407 remote_ip 10.8.0.6 89411 username zamanialireza 89411 unique_id port 89411 terminate_cause User-Request 89411 bytes_out 2156212 89345 bytes_in 101311 89345 station_ip 83.122.195.189 89345 port 15728724 89345 nas_port_type Virtual 89345 remote_ip 5.5.5.211 89346 username sobhan 89346 unique_id port 89346 terminate_cause User-Request 89346 bytes_out 851775 89346 bytes_in 14092763 89346 station_ip 5.119.169.80 89346 port 15728722 89346 nas_port_type Virtual 89346 remote_ip 5.5.5.212 89357 username aminvpn 89357 mac 89357 bytes_out 0 89357 bytes_in 0 89357 station_ip 37.129.133.222 89357 port 21 89357 unique_id port 89357 remote_ip 10.8.0.6 89359 username aminvpn 89359 mac 89359 bytes_out 0 89359 bytes_in 0 89359 station_ip 83.122.187.242 89359 port 23 89359 unique_id port 89359 remote_ip 10.8.0.6 89365 username asadi 89365 unique_id port 89365 terminate_cause User-Request 89365 bytes_out 305298 89365 bytes_in 11318997 89365 station_ip 37.129.229.58 89365 port 15728740 89365 nas_port_type Virtual 89365 remote_ip 5.5.5.250 89368 username forozande 89368 unique_id port 89368 terminate_cause User-Request 89368 bytes_out 86496 89368 bytes_in 1103102 89368 station_ip 83.122.230.146 89368 port 15728743 89368 nas_port_type Virtual 89368 remote_ip 5.5.5.204 89373 username caferibar 89373 unique_id port 89373 terminate_cause Lost-Carrier 89373 bytes_out 1416199 89373 bytes_in 33580112 89373 station_ip 5.200.125.89 89373 port 15728727 89373 nas_port_type Virtual 89373 remote_ip 5.5.5.209 89376 username afarin 89376 unique_id port 89376 terminate_cause User-Request 89376 bytes_out 100132 89376 bytes_in 861802 89376 station_ip 31.56.153.7 89376 port 15728752 89376 nas_port_type Virtual 89376 remote_ip 5.5.5.198 89378 username aminvpn 89378 mac 89378 bytes_out 0 89378 bytes_in 0 89378 station_ip 37.129.42.168 89378 port 21 89378 unique_id port 89378 remote_ip 10.8.0.6 89380 username aminvpn 89380 mac 89380 bytes_out 0 89380 bytes_in 0 89380 station_ip 37.129.133.222 89380 port 23 89380 unique_id port 89380 remote_ip 10.8.0.6 89386 username ahmadipour 89386 unique_id port 89386 terminate_cause Lost-Carrier 89386 bytes_out 19303708 89386 bytes_in 1599723 89386 station_ip 37.129.79.118 89386 port 15728734 89386 nas_port_type Virtual 89386 remote_ip 5.5.5.207 89389 username aminvpn 89389 mac 89389 bytes_out 0 89389 bytes_in 0 89389 station_ip 37.129.133.222 89389 port 21 89389 unique_id port 89389 remote_ip 10.8.0.6 89395 username aminvpn 89395 mac 89395 bytes_out 0 89395 bytes_in 0 89395 station_ip 37.129.133.222 89395 port 21 89395 unique_id port 89395 remote_ip 10.8.0.6 89408 username aminvpn 89408 mac 89408 bytes_out 0 89408 bytes_in 0 89408 station_ip 37.129.133.222 89408 port 21 89408 unique_id port 89408 remote_ip 10.8.0.6 89410 username madadi 89410 unique_id port 89410 terminate_cause Lost-Carrier 89410 bytes_out 78437 89410 bytes_in 315020 89410 station_ip 5.120.44.126 89410 port 15728758 89410 nas_port_type Virtual 89410 remote_ip 5.5.5.193 89418 username asadi 89418 unique_id port 89418 terminate_cause User-Request 89418 bytes_out 24314 89418 bytes_in 62021 89418 station_ip 37.129.229.58 89418 port 15728764 89418 nas_port_type Virtual 89418 remote_ip 5.5.5.250 89425 username asadi 89425 unique_id port 89425 terminate_cause User-Request 89425 bytes_out 332150 89425 bytes_in 14346908 89425 station_ip 37.129.229.58 89425 port 15728771 89425 nas_port_type Virtual 89425 remote_ip 5.5.5.250 89432 username arman 89432 unique_id port 89432 terminate_cause User-Request 89432 bytes_out 0 89432 bytes_in 0 89432 station_ip 5.119.197.84 89432 port 15728779 89361 station_ip 37.129.79.118 89361 port 15728729 89361 nas_port_type Virtual 89361 remote_ip 5.5.5.207 89363 username forozande 89363 unique_id port 89363 terminate_cause User-Request 89363 bytes_out 60240 89363 bytes_in 1014255 89363 station_ip 83.122.230.146 89363 port 15728736 89363 nas_port_type Virtual 89363 remote_ip 5.5.5.204 89369 username asadi 89369 unique_id port 89369 terminate_cause User-Request 89369 bytes_out 99351 89369 bytes_in 1615297 89369 station_ip 37.129.229.58 89369 port 15728744 89369 nas_port_type Virtual 89369 remote_ip 5.5.5.250 89372 username asadi 89372 unique_id port 89372 terminate_cause User-Request 89372 bytes_out 47594 89372 bytes_in 614799 89372 station_ip 37.129.229.58 89372 port 15728750 89372 nas_port_type Virtual 89372 remote_ip 5.5.5.250 89384 username aminvpn 89384 mac 89384 bytes_out 0 89384 bytes_in 0 89384 station_ip 37.129.42.168 89384 port 21 89384 unique_id port 89384 remote_ip 10.8.0.6 89387 username aminvpn 89387 mac 89387 bytes_out 93815 89387 bytes_in 418450 89387 station_ip 37.129.133.222 89387 port 21 89387 unique_id port 89387 remote_ip 10.8.0.6 89390 username aminvpn 89390 mac 89390 bytes_out 0 89390 bytes_in 0 89390 station_ip 37.129.42.168 89390 port 23 89390 unique_id port 89390 remote_ip 10.8.0.6 89396 username aminvpn 89396 mac 89396 bytes_out 0 89396 bytes_in 0 89396 station_ip 37.129.42.168 89396 port 23 89396 unique_id port 89396 remote_ip 10.8.0.6 89398 username aminvpn 89398 mac 89398 bytes_out 0 89398 bytes_in 0 89398 station_ip 37.129.42.168 89398 port 23 89398 unique_id port 89398 remote_ip 10.8.0.6 89401 username aminvpn 89401 mac 89401 bytes_out 0 89401 bytes_in 0 89401 station_ip 37.129.133.222 89401 port 21 89401 unique_id port 89401 remote_ip 10.8.0.6 89402 username aminvpn 89402 mac 89402 bytes_out 0 89402 bytes_in 0 89402 station_ip 37.129.42.168 89402 port 23 89402 unique_id port 89402 remote_ip 10.8.0.6 89406 username aminvpn 89406 mac 89406 bytes_out 0 89406 bytes_in 0 89406 station_ip 37.129.133.222 89406 port 21 89406 unique_id port 89406 remote_ip 10.8.0.6 89412 username caferibar 89412 unique_id port 89412 terminate_cause User-Request 89412 bytes_out 0 89412 bytes_in 0 89412 station_ip 89.47.139.252 89412 port 15728761 89412 nas_port_type Virtual 89412 remote_ip 5.5.5.191 89413 username caferibar 89413 unique_id port 89413 terminate_cause User-Request 89413 bytes_out 10941 89413 bytes_in 32430 89413 station_ip 89.47.139.252 89413 port 15728762 89413 nas_port_type Virtual 89413 remote_ip 5.5.5.191 89417 username asadi 89417 unique_id port 89417 terminate_cause User-Request 89417 bytes_out 140066 89417 bytes_in 1770711 89417 station_ip 37.129.229.58 89417 port 15728763 89417 nas_port_type Virtual 89417 remote_ip 5.5.5.250 89420 username asadi 89420 unique_id port 89420 terminate_cause User-Request 89420 bytes_out 83334 89420 bytes_in 688105 89420 station_ip 37.129.229.58 89420 port 15728765 89420 nas_port_type Virtual 89420 remote_ip 5.5.5.250 89422 username alinezhad 89422 unique_id port 89422 terminate_cause User-Request 89422 bytes_out 0 89422 bytes_in 0 89422 station_ip 5.214.199.144 89422 port 15728769 89422 nas_port_type Virtual 89422 remote_ip 5.5.5.190 89424 username asadi 89424 unique_id port 89424 terminate_cause User-Request 89424 bytes_out 38185 89424 bytes_in 203495 89424 station_ip 37.129.229.58 89424 port 15728770 89424 nas_port_type Virtual 89424 remote_ip 5.5.5.250 89385 station_ip 83.122.86.129 89385 port 15728755 89385 nas_port_type Virtual 89385 remote_ip 5.5.5.196 89388 username aminvpn 89388 mac 89388 bytes_out 0 89388 bytes_in 0 89388 station_ip 37.129.42.168 89388 port 23 89388 unique_id port 89388 remote_ip 10.8.0.6 89391 username aminvpn 89391 mac 89391 bytes_out 0 89391 bytes_in 0 89391 station_ip 37.129.133.222 89391 port 21 89391 unique_id port 89391 remote_ip 10.8.0.6 89393 username aminvpn 89393 mac 89393 bytes_out 0 89393 bytes_in 0 89393 station_ip 37.129.133.222 89393 port 21 89393 unique_id port 89393 remote_ip 10.8.0.6 89394 username aminvpn 89394 mac 89394 bytes_out 0 89394 bytes_in 0 89394 station_ip 37.129.42.168 89394 port 23 89394 unique_id port 89394 remote_ip 10.8.0.6 89397 username aminvpn 89397 mac 89397 bytes_out 0 89397 bytes_in 0 89397 station_ip 37.129.133.222 89397 port 21 89397 unique_id port 89397 remote_ip 10.8.0.6 89399 username aminvpn 89399 mac 89399 bytes_out 0 89399 bytes_in 0 89399 station_ip 37.129.133.222 89399 port 21 89399 unique_id port 89399 remote_ip 10.8.0.6 89404 username aminvpn 89404 mac 89404 bytes_out 0 89404 bytes_in 0 89404 station_ip 37.129.133.222 89404 port 21 89404 unique_id port 89404 remote_ip 10.8.0.6 89409 username aminvpn 89409 mac 89409 bytes_out 0 89409 bytes_in 0 89409 station_ip 37.129.42.168 89409 port 23 89409 unique_id port 89409 remote_ip 10.8.0.6 89414 username aminvpn 89414 mac 89414 bytes_out 0 89414 bytes_in 0 89414 station_ip 37.129.133.222 89414 port 21 89414 unique_id port 89414 remote_ip 10.8.0.6 89415 username caferibar 89415 unique_id port 89415 terminate_cause Lost-Carrier 89415 bytes_out 283308 89415 bytes_in 5246478 89415 station_ip 5.72.149.209 89415 port 15728757 89415 nas_port_type Virtual 89415 remote_ip 5.5.5.194 89416 username ahmadipour 89416 unique_id port 89416 terminate_cause Lost-Carrier 89416 bytes_out 2975636 89416 bytes_in 62774335 89416 station_ip 37.129.79.118 89416 port 15728759 89416 nas_port_type Virtual 89416 remote_ip 5.5.5.207 89419 username bcboard 89419 unique_id port 89419 terminate_cause User-Request 89419 bytes_out 2628357 89419 bytes_in 38239347 89419 station_ip 113.203.101.115 89419 port 15728756 89419 nas_port_type Virtual 89419 remote_ip 5.5.5.195 89431 username aminvpn 89431 mac 89431 bytes_out 0 89431 bytes_in 0 89431 station_ip 83.123.11.33 89431 port 35 89431 unique_id port 89431 remote_ip 10.8.1.10 89435 username aminvpn 89435 mac 89435 bytes_out 610352 89435 bytes_in 1793832 89435 station_ip 83.123.11.33 89435 port 21 89435 unique_id port 89435 remote_ip 10.8.0.6 89439 username mahbobeh 89439 unique_id port 89439 terminate_cause Lost-Carrier 89439 bytes_out 714009 89439 bytes_in 6153194 89439 station_ip 37.129.190.85 89439 port 15728754 89439 nas_port_type Virtual 89439 remote_ip 5.5.5.197 89444 username asadi 89444 unique_id port 89444 terminate_cause User-Request 89444 bytes_out 94752 89444 bytes_in 851093 89444 station_ip 37.129.229.58 89444 port 15728788 89444 nas_port_type Virtual 89444 remote_ip 5.5.5.250 89445 username bcboard 89445 unique_id port 89445 terminate_cause User-Request 89445 bytes_out 393573 89445 bytes_in 18564636 89445 station_ip 113.203.101.115 89445 port 15728792 89445 nas_port_type Virtual 89445 remote_ip 5.5.5.195 89448 username aminvpn 89448 mac 89448 bytes_out 0 89448 bytes_in 0 89448 station_ip 83.123.11.33 89411 bytes_in 3588269 89411 station_ip 37.129.124.164 89411 port 15728760 89411 nas_port_type Virtual 89411 remote_ip 5.5.5.192 89421 username asadi 89421 unique_id port 89421 terminate_cause User-Request 89421 bytes_out 65773 89421 bytes_in 888544 89421 station_ip 37.129.229.58 89421 port 15728768 89421 nas_port_type Virtual 89421 remote_ip 5.5.5.250 89423 username aminvpn 89423 unique_id port 89423 terminate_cause Lost-Carrier 89423 bytes_out 1231000 89423 bytes_in 4087707 89423 station_ip 5.119.106.197 89423 port 15728747 89423 nas_port_type Virtual 89423 remote_ip 5.5.5.200 89426 username asadi 89426 unique_id port 89426 terminate_cause User-Request 89426 bytes_out 26721 89426 bytes_in 130014 89426 station_ip 37.129.229.58 89426 port 15728775 89426 nas_port_type Virtual 89426 remote_ip 5.5.5.250 89427 username aminvpn 89427 mac 89427 bytes_out 284938 89427 bytes_in 484213 89427 station_ip 83.123.11.33 89427 port 21 89427 unique_id port 89427 remote_ip 10.8.0.6 89429 username aminvpn 89429 mac 89429 bytes_out 40062 89429 bytes_in 131850 89429 station_ip 83.123.11.33 89429 port 21 89429 unique_id port 89429 remote_ip 10.8.0.6 89430 username madadi 89430 unique_id port 89430 terminate_cause Lost-Carrier 89430 bytes_out 96901 89430 bytes_in 408945 89430 station_ip 5.119.153.127 89430 port 15728778 89430 nas_port_type Virtual 89430 remote_ip 5.5.5.188 89437 username caferibar 89437 unique_id port 89437 terminate_cause Lost-Carrier 89437 bytes_out 332156 89437 bytes_in 3297109 89437 station_ip 5.120.21.235 89437 port 15728783 89437 nas_port_type Virtual 89437 remote_ip 5.5.5.186 89438 username asadi 89438 unique_id port 89438 terminate_cause User-Request 89438 bytes_out 91666 89438 bytes_in 1172933 89438 station_ip 37.129.229.58 89438 port 15728785 89438 nas_port_type Virtual 89438 remote_ip 5.5.5.250 89442 username shahrooz 89442 unique_id port 89442 terminate_cause Lost-Carrier 89442 bytes_out 2178707 89442 bytes_in 28628300 89442 station_ip 83.123.16.57 89442 port 15728776 89442 nas_port_type Virtual 89442 remote_ip 5.5.5.217 89447 username aminvpn 89447 unique_id port 89447 terminate_cause User-Request 89447 bytes_out 91521 89447 bytes_in 498251 89447 station_ip 83.123.11.33 89447 port 15728796 89447 nas_port_type Virtual 89447 remote_ip 5.5.5.182 89455 username asadi 89455 unique_id port 89455 terminate_cause User-Request 89455 bytes_out 23999 89455 bytes_in 57678 89455 station_ip 37.129.229.58 89455 port 15728804 89455 nas_port_type Virtual 89455 remote_ip 5.5.5.250 89458 username aminvpn 89458 unique_id port 89458 terminate_cause User-Request 89458 bytes_out 1571113 89458 bytes_in 45925431 89458 station_ip 83.123.11.33 89458 port 15728799 89458 nas_port_type Virtual 89458 remote_ip 5.5.5.182 89459 username asadi 89459 unique_id port 89459 terminate_cause User-Request 89459 bytes_out 74154 89459 bytes_in 121468 89459 station_ip 37.129.229.58 89459 port 15728807 89459 nas_port_type Virtual 89459 remote_ip 5.5.5.250 89462 username kamali 89462 unique_id port 89462 terminate_cause User-Request 89462 bytes_out 51321 89462 bytes_in 106721 89462 station_ip 37.129.158.114 89462 port 15728810 89462 nas_port_type Virtual 89462 remote_ip 5.5.5.180 89465 username asadi 89465 unique_id port 89465 terminate_cause User-Request 89465 bytes_out 48756 89465 bytes_in 570560 89465 station_ip 37.129.229.58 89465 port 15728814 89465 nas_port_type Virtual 89465 remote_ip 5.5.5.250 89468 username caferibar 89468 unique_id port 89468 terminate_cause Lost-Carrier 89468 bytes_out 1290734 89468 bytes_in 28858097 89468 station_ip 5.119.86.47 89428 username forozande 89428 unique_id port 89428 terminate_cause User-Request 89428 bytes_out 104579 89428 bytes_in 304013 89428 station_ip 83.122.175.113 89428 port 15728777 89428 nas_port_type Virtual 89428 remote_ip 5.5.5.189 89433 username arman 89433 unique_id port 89433 terminate_cause User-Request 89433 bytes_out 0 89433 bytes_in 0 89433 station_ip 5.119.197.84 89433 port 15728780 89433 nas_port_type Virtual 89433 remote_ip 5.5.5.187 89436 username bcboard 89436 unique_id port 89436 terminate_cause User-Request 89436 bytes_out 3715992 89436 bytes_in 93024081 89436 station_ip 113.203.101.115 89436 port 15728767 89436 nas_port_type Virtual 89436 remote_ip 5.5.5.195 89440 username caferibar 89440 unique_id port 89440 terminate_cause User-Request 89440 bytes_out 0 89440 bytes_in 0 89440 station_ip 89.47.79.91 89440 port 15728787 89440 nas_port_type Virtual 89440 remote_ip 5.5.5.184 89441 username mammad 89441 unique_id port 89441 terminate_cause User-Request 89441 bytes_out 5864805 89441 bytes_in 8977370 89441 station_ip 5.233.57.57 89441 port 15728784 89441 nas_port_type Virtual 89441 remote_ip 5.5.5.201 89443 username ahmadipour 89443 kill_reason Maximum check online fails reached 89443 unique_id port 89443 bytes_out 1451763 89443 bytes_in 31377146 89443 station_ip 37.129.20.6 89443 port 15728786 89443 nas_port_type Virtual 89443 remote_ip 5.5.5.185 89450 username asadi 89450 unique_id port 89450 terminate_cause User-Request 89450 bytes_out 90301 89450 bytes_in 1966667 89450 station_ip 37.129.229.58 89450 port 15728798 89450 nas_port_type Virtual 89450 remote_ip 5.5.5.250 89451 username aminvpn 89451 mac 89451 bytes_out 0 89451 bytes_in 0 89451 station_ip 37.129.107.128 89451 port 21 89451 unique_id port 89451 remote_ip 10.8.0.6 89453 username heydari 89453 unique_id port 89453 terminate_cause Lost-Carrier 89453 bytes_out 185726 89453 bytes_in 346156 89453 station_ip 5.120.156.209 89453 port 15728797 89453 nas_port_type Virtual 89453 remote_ip 5.5.5.181 89454 username kamali 89454 unique_id port 89454 terminate_cause User-Request 89454 bytes_out 210111 89454 bytes_in 1090368 89454 station_ip 37.129.158.114 89454 port 15728802 89454 nas_port_type Virtual 89454 remote_ip 5.5.5.180 89466 username jamali 89466 unique_id port 89466 terminate_cause User-Request 89466 bytes_out 4708158 89466 bytes_in 5721940 89466 station_ip 83.123.191.101 89466 port 15728815 89466 nas_port_type Virtual 89466 remote_ip 5.5.5.220 89472 username asadi 89472 kill_reason Maximum check online fails reached 89472 unique_id port 89472 bytes_out 0 89472 bytes_in 0 89472 station_ip 37.129.229.58 89472 port 15728819 89472 nas_port_type Virtual 89476 username jamali 89476 unique_id port 89476 terminate_cause User-Request 89476 bytes_out 111081 89476 bytes_in 1628456 89476 station_ip 83.123.191.101 89476 port 15728821 89476 nas_port_type Virtual 89476 remote_ip 5.5.5.220 89480 username forozande 89480 unique_id port 89480 terminate_cause User-Request 89480 bytes_out 48561 89480 bytes_in 556649 89480 station_ip 83.123.3.18 89480 port 15728825 89480 nas_port_type Virtual 89480 remote_ip 5.5.5.172 89482 username forozande 89482 unique_id port 89482 terminate_cause User-Request 89482 bytes_out 22808 89482 bytes_in 43134 89482 station_ip 83.123.3.18 89482 port 15728827 89482 nas_port_type Virtual 89482 remote_ip 5.5.5.172 89484 username forozande 89484 unique_id port 89484 terminate_cause User-Request 89484 bytes_out 36374 89484 bytes_in 190944 89484 station_ip 83.123.3.18 89484 port 15728830 89484 nas_port_type Virtual 89484 remote_ip 5.5.5.172 89485 username asadi 89485 unique_id port 89432 nas_port_type Virtual 89432 remote_ip 5.5.5.187 89434 username caferibar 89434 unique_id port 89434 terminate_cause User-Request 89434 bytes_out 0 89434 bytes_in 0 89434 station_ip 5.120.21.235 89434 port 15728782 89434 nas_port_type Virtual 89434 remote_ip 5.5.5.186 89446 username asadi 89446 unique_id port 89446 terminate_cause User-Request 89446 bytes_out 47311 89446 bytes_in 348810 89446 station_ip 37.129.229.58 89446 port 15728794 89446 nas_port_type Virtual 89446 remote_ip 5.5.5.250 89449 username ahmadi 89449 unique_id port 89449 terminate_cause User-Request 89449 bytes_out 52327 89449 bytes_in 231361 89449 station_ip 113.203.116.192 89449 port 15728795 89449 nas_port_type Virtual 89449 remote_ip 5.5.5.183 89460 username khalili 89460 unique_id port 89460 terminate_cause Lost-Carrier 89460 bytes_out 990393 89460 bytes_in 10065866 89460 station_ip 5.120.46.62 89460 port 15728749 89460 nas_port_type Virtual 89460 remote_ip 5.5.5.239 89464 username forozande 89464 unique_id port 89464 terminate_cause User-Request 89464 bytes_out 41873 89464 bytes_in 228531 89464 station_ip 83.122.33.97 89464 port 15728812 89464 nas_port_type Virtual 89464 remote_ip 5.5.5.177 89467 username aminvpn 89467 mac 89467 bytes_out 1985848 89467 bytes_in 30488263 89467 station_ip 83.123.11.33 89467 port 35 89467 unique_id port 89467 remote_ip 10.8.1.10 89470 username ahmadipour 89470 unique_id port 89470 terminate_cause Lost-Carrier 89470 bytes_out 122373 89470 bytes_in 836994 89470 station_ip 37.129.47.90 89470 port 15728809 89470 nas_port_type Virtual 89470 remote_ip 5.5.5.178 89474 username mahbobeh 89474 unique_id port 89474 terminate_cause Lost-Carrier 89474 bytes_out 1428877 89474 bytes_in 30387518 89474 station_ip 37.129.190.85 89474 port 15728803 89474 nas_port_type Virtual 89474 remote_ip 5.5.5.197 89477 username asadi 89477 unique_id port 89477 terminate_cause User-Request 89477 bytes_out 56477 89477 bytes_in 843937 89477 station_ip 37.129.229.58 89477 port 15728823 89477 nas_port_type Virtual 89477 remote_ip 5.5.5.250 89478 username amirabbas 89478 unique_id port 89478 terminate_cause User-Request 89478 bytes_out 31701090 89478 bytes_in 982861680 89478 station_ip 31.56.156.38 89478 port 15728806 89478 nas_port_type Virtual 89478 remote_ip 5.5.5.235 89481 username forozande 89481 unique_id port 89481 terminate_cause User-Request 89481 bytes_out 11611 89481 bytes_in 39311 89481 station_ip 83.123.3.18 89481 port 15728826 89481 nas_port_type Virtual 89481 remote_ip 5.5.5.172 89483 username forozande 89483 unique_id port 89483 terminate_cause User-Request 89483 bytes_out 21325 89483 bytes_in 40426 89483 station_ip 83.123.3.18 89483 port 15728828 89483 nas_port_type Virtual 89483 remote_ip 5.5.5.172 89489 username caferibar 89489 unique_id port 89489 terminate_cause Lost-Carrier 89489 bytes_out 87510 89489 bytes_in 592784 89489 station_ip 5.119.85.219 89489 port 15728836 89489 nas_port_type Virtual 89489 remote_ip 5.5.5.168 89496 username asadi 89496 unique_id port 89496 terminate_cause User-Request 89496 bytes_out 48793 89496 bytes_in 514761 89496 station_ip 37.129.229.58 89496 port 15728842 89496 nas_port_type Virtual 89496 remote_ip 5.5.5.250 89503 username aminvpn 89503 mac 89503 bytes_out 0 89503 bytes_in 0 89503 station_ip 83.123.11.33 89503 port 21 89503 unique_id port 89503 remote_ip 10.8.0.6 89508 username asadi 89508 unique_id port 89508 terminate_cause User-Request 89508 bytes_out 43907 89508 bytes_in 246499 89508 station_ip 37.129.229.58 89508 port 15728847 89508 nas_port_type Virtual 89508 remote_ip 5.5.5.250 89509 username kamali 89448 port 35 89448 unique_id port 89448 remote_ip 10.8.1.10 89452 username kamali 89452 unique_id port 89452 terminate_cause User-Request 89452 bytes_out 69027 89452 bytes_in 150202 89452 station_ip 37.129.158.114 89452 port 15728801 89452 nas_port_type Virtual 89452 remote_ip 5.5.5.180 89456 username mammad 89456 unique_id port 89456 terminate_cause User-Request 89456 bytes_out 449961 89456 bytes_in 2761415 89456 station_ip 5.233.57.57 89456 port 15728800 89456 nas_port_type Virtual 89456 remote_ip 5.5.5.201 89457 username amirabbas 89457 unique_id port 89457 terminate_cause User-Request 89457 bytes_out 3414249 89457 bytes_in 78359649 89457 station_ip 31.56.156.38 89457 port 15728793 89457 nas_port_type Virtual 89457 remote_ip 5.5.5.235 89461 username asadi 89461 unique_id port 89461 terminate_cause User-Request 89461 bytes_out 43150 89461 bytes_in 226778 89461 station_ip 37.129.229.58 89461 port 15728808 89461 nas_port_type Virtual 89461 remote_ip 5.5.5.250 89463 username jamali 89463 unique_id port 89463 terminate_cause User-Request 89463 bytes_out 1022345 89463 bytes_in 2368204 89463 station_ip 83.123.191.101 89463 port 15728811 89463 nas_port_type Virtual 89463 remote_ip 5.5.5.220 89487 username aminvpn 89487 unique_id port 89487 terminate_cause Lost-Carrier 89487 bytes_out 423213 89487 bytes_in 7635382 89487 station_ip 5.119.94.184 89487 port 15728829 89487 nas_port_type Virtual 89487 remote_ip 5.5.5.171 89492 username arman 89492 unique_id port 89492 terminate_cause Lost-Carrier 89492 bytes_out 18056343 89492 bytes_in 306261524 89492 station_ip 5.119.197.84 89492 port 15728781 89492 nas_port_type Virtual 89492 remote_ip 5.5.5.187 89500 username asadi 89500 unique_id port 89500 terminate_cause User-Request 89500 bytes_out 45443 89500 bytes_in 122378 89500 station_ip 37.129.229.58 89500 port 15728846 89500 nas_port_type Virtual 89500 remote_ip 5.5.5.250 89504 username mahbobeh 89504 unique_id port 89504 terminate_cause Lost-Carrier 89504 bytes_out 163710 89504 bytes_in 1388427 89504 station_ip 37.129.237.229 89504 port 15728834 89504 nas_port_type Virtual 89504 remote_ip 5.5.5.169 89510 username aminvpn 89510 unique_id port 89510 terminate_cause Lost-Carrier 89510 bytes_out 4275423 89510 bytes_in 96248855 89510 station_ip 5.119.106.197 89510 port 15728822 89510 nas_port_type Virtual 89510 remote_ip 5.5.5.173 89514 username kamali 89514 unique_id port 89514 terminate_cause User-Request 89514 bytes_out 600182 89514 bytes_in 105201 89514 station_ip 37.129.158.114 89514 port 15728858 89514 nas_port_type Virtual 89514 remote_ip 5.5.5.180 89517 username aminvpn 89517 mac 89517 bytes_out 0 89517 bytes_in 0 89517 station_ip 83.123.11.33 89517 port 21 89517 unique_id port 89517 remote_ip 10.8.0.6 89520 username kamali 89520 unique_id port 89520 terminate_cause User-Request 89520 bytes_out 209500 89520 bytes_in 1247225 89520 station_ip 37.129.158.114 89520 port 15728862 89520 nas_port_type Virtual 89520 remote_ip 5.5.5.180 89524 username forozande 89524 unique_id port 89524 terminate_cause User-Request 89524 bytes_out 35442 89524 bytes_in 66120 89524 station_ip 83.122.24.180 89524 port 15728867 89524 nas_port_type Virtual 89524 remote_ip 5.5.5.160 89526 username aminvpn 89526 mac 89526 bytes_out 0 89526 bytes_in 0 89526 station_ip 37.129.44.178 89526 port 21 89526 unique_id port 89526 remote_ip 10.8.0.6 89535 username ahmadi 89535 unique_id port 89535 terminate_cause User-Request 89535 bytes_out 38079 89535 bytes_in 482398 89535 station_ip 113.203.83.220 89535 port 15728869 89535 nas_port_type Virtual 89535 remote_ip 5.5.5.158 89468 port 15728813 89468 nas_port_type Virtual 89468 remote_ip 5.5.5.176 89469 username asadi 89469 kill_reason Maximum check online fails reached 89469 unique_id port 89469 bytes_out 0 89469 bytes_in 0 89469 station_ip 37.129.229.58 89469 port 15728817 89469 nas_port_type Virtual 89471 username ksrkrgr 89471 unique_id port 89471 terminate_cause Lost-Carrier 89471 bytes_out 9482019 89471 bytes_in 249603764 89471 station_ip 85.185.172.97 89471 port 15728805 89471 nas_port_type Virtual 89471 remote_ip 5.5.5.179 89473 username alinezhad 89473 unique_id port 89473 terminate_cause User-Request 89473 bytes_out 78709 89473 bytes_in 720003 89473 station_ip 5.216.207.250 89473 port 15728818 89473 nas_port_type Virtual 89473 remote_ip 5.5.5.174 89475 username asadi 89475 unique_id port 89475 terminate_cause User-Request 89475 bytes_out 32440 89475 bytes_in 131200 89475 station_ip 37.129.229.58 89475 port 15728820 89475 nas_port_type Virtual 89475 remote_ip 5.5.5.250 89479 username forozande 89479 unique_id port 89479 terminate_cause User-Request 89479 bytes_out 46927 89479 bytes_in 378267 89479 station_ip 83.123.3.18 89479 port 15728824 89479 nas_port_type Virtual 89479 remote_ip 5.5.5.172 89486 username forozande 89486 unique_id port 89486 terminate_cause User-Request 89486 bytes_out 17310 89486 bytes_in 30250 89486 station_ip 83.123.3.18 89486 port 15728832 89486 nas_port_type Virtual 89486 remote_ip 5.5.5.172 89488 username asadi 89488 unique_id port 89488 terminate_cause User-Request 89488 bytes_out 28158 89488 bytes_in 131113 89488 station_ip 37.129.229.58 89488 port 15728835 89488 nas_port_type Virtual 89488 remote_ip 5.5.5.250 89491 username forozande 89491 unique_id port 89491 terminate_cause User-Request 89491 bytes_out 28109 89491 bytes_in 108852 89491 station_ip 113.203.17.136 89491 port 15728838 89491 nas_port_type Virtual 89491 remote_ip 5.5.5.166 89493 username kamali 89493 unique_id port 89493 terminate_cause User-Request 89493 bytes_out 35567 89493 bytes_in 77061 89493 station_ip 37.129.158.114 89493 port 15728839 89493 nas_port_type Virtual 89493 remote_ip 5.5.5.180 89497 username jamali 89497 unique_id port 89497 terminate_cause User-Request 89497 bytes_out 68999 89497 bytes_in 1012265 89497 station_ip 83.123.191.101 89497 port 15728843 89497 nas_port_type Virtual 89497 remote_ip 5.5.5.220 89499 username madadi 89499 unique_id port 89499 terminate_cause Lost-Carrier 89499 bytes_out 6583 89499 bytes_in 130317 89499 station_ip 5.119.114.63 89499 port 15728844 89499 nas_port_type Virtual 89499 remote_ip 5.5.5.163 89502 username aminvpn 89502 mac 89502 bytes_out 0 89502 bytes_in 0 89502 station_ip 113.203.50.184 89502 port 23 89502 unique_id port 89502 remote_ip 10.8.0.6 89506 username aminvpn 89506 mac 89506 bytes_out 0 89506 bytes_in 0 89506 station_ip 83.123.11.33 89506 port 21 89506 unique_id port 89506 remote_ip 10.8.0.6 89521 username kamali 89521 unique_id port 89521 terminate_cause User-Request 89521 bytes_out 236399 89521 bytes_in 2392866 89521 station_ip 37.129.158.114 89521 port 15728863 89521 nas_port_type Virtual 89521 remote_ip 5.5.5.180 89523 username asadi 89523 unique_id port 89523 terminate_cause User-Request 89523 bytes_out 65840 89523 bytes_in 1752117 89523 station_ip 37.129.229.58 89523 port 15728866 89523 nas_port_type Virtual 89523 remote_ip 5.5.5.250 89527 username aminvpn 89527 mac 89527 bytes_out 0 89527 bytes_in 0 89527 station_ip 83.123.11.33 89527 port 23 89527 unique_id port 89527 remote_ip 10.8.0.6 89530 username aminvpn 89530 mac 89530 bytes_out 0 89485 terminate_cause User-Request 89485 bytes_out 124891 89485 bytes_in 5220020 89485 station_ip 37.129.229.58 89485 port 15728831 89485 nas_port_type Virtual 89485 remote_ip 5.5.5.250 89490 username madadi 89490 unique_id port 89490 terminate_cause Lost-Carrier 89490 bytes_out 407938 89490 bytes_in 3730722 89490 station_ip 5.119.133.122 89490 port 15728833 89490 nas_port_type Virtual 89490 remote_ip 5.5.5.170 89494 username forozande 89494 unique_id port 89494 terminate_cause User-Request 89494 bytes_out 56460 89494 bytes_in 275536 89494 station_ip 113.203.108.214 89494 port 15728840 89494 nas_port_type Virtual 89494 remote_ip 5.5.5.165 89495 username forozande 89495 unique_id port 89495 terminate_cause User-Request 89495 bytes_out 11073 89495 bytes_in 23950 89495 station_ip 37.129.5.64 89495 port 15728841 89495 nas_port_type Virtual 89495 remote_ip 5.5.5.164 89498 username asadi 89498 unique_id port 89498 terminate_cause User-Request 89498 bytes_out 10923 89498 bytes_in 39372 89498 station_ip 37.129.229.58 89498 port 15728845 89498 nas_port_type Virtual 89498 remote_ip 5.5.5.250 89501 username aminvpn 89501 mac 89501 bytes_out 369614 89501 bytes_in 502678 89501 station_ip 83.123.11.33 89501 port 21 89501 unique_id port 89501 remote_ip 10.8.0.6 89505 username aminvpn 89505 mac 89505 bytes_out 158420 89505 bytes_in 1551969 89505 station_ip 113.203.50.184 89505 port 23 89505 unique_id port 89505 remote_ip 10.8.0.6 89507 username aminvpn 89507 mac 89507 bytes_out 0 89507 bytes_in 0 89507 station_ip 113.203.50.184 89507 port 23 89507 unique_id port 89507 remote_ip 10.8.0.6 89513 username kamali 89513 unique_id port 89513 terminate_cause User-Request 89513 bytes_out 390459 89513 bytes_in 11407321 89513 station_ip 37.129.158.114 89513 port 15728855 89513 nas_port_type Virtual 89513 remote_ip 5.5.5.180 89515 username kamali 89515 unique_id port 89515 terminate_cause User-Request 89515 bytes_out 606479 89515 bytes_in 123534 89515 station_ip 37.129.158.114 89515 port 15728859 89515 nas_port_type Virtual 89515 remote_ip 5.5.5.180 89516 username asadi 89516 unique_id port 89516 terminate_cause User-Request 89516 bytes_out 144171 89516 bytes_in 3446035 89516 station_ip 37.129.229.58 89516 port 15728860 89516 nas_port_type Virtual 89516 remote_ip 5.5.5.250 89518 username kamali 89518 unique_id port 89518 terminate_cause User-Request 89518 bytes_out 369676 89518 bytes_in 606144 89518 station_ip 37.129.158.114 89518 port 15728861 89518 nas_port_type Virtual 89518 remote_ip 5.5.5.180 89525 username aminvpn 89525 mac 89525 bytes_out 225752 89525 bytes_in 1163124 89525 station_ip 83.123.11.33 89525 port 23 89525 unique_id port 89525 remote_ip 10.8.0.6 89528 username aminvpn 89528 mac 89528 bytes_out 0 89528 bytes_in 0 89528 station_ip 37.129.44.178 89528 port 21 89528 unique_id port 89528 remote_ip 10.8.0.6 89529 username aminvpn 89529 mac 89529 bytes_out 0 89529 bytes_in 0 89529 station_ip 83.123.11.33 89529 port 23 89529 unique_id port 89529 remote_ip 10.8.0.6 89531 username aminvpn 89531 mac 89531 bytes_out 0 89531 bytes_in 0 89531 station_ip 37.129.88.107 89531 port 23 89531 unique_id port 89531 remote_ip 10.8.0.6 89533 username aminvpn 89533 mac 89533 bytes_out 0 89533 bytes_in 0 89533 station_ip 37.129.44.178 89533 port 23 89533 unique_id port 89533 remote_ip 10.8.0.6 89537 username aminvpn 89537 mac 89537 bytes_out 0 89537 bytes_in 0 89537 station_ip 37.129.44.178 89537 port 21 89509 unique_id port 89509 terminate_cause User-Request 89509 bytes_out 46604 89509 bytes_in 119987 89509 station_ip 37.129.158.114 89509 port 15728850 89509 nas_port_type Virtual 89509 remote_ip 5.5.5.180 89511 username kamali 89511 unique_id port 89511 terminate_cause User-Request 89511 bytes_out 417953 89511 bytes_in 20618010 89511 station_ip 37.129.158.114 89511 port 15728851 89511 nas_port_type Virtual 89511 remote_ip 5.5.5.180 89512 username kamali 89512 unique_id port 89512 terminate_cause User-Request 89512 bytes_out 1073152 89512 bytes_in 47860600 89512 station_ip 37.129.158.114 89512 port 15728854 89512 nas_port_type Virtual 89512 remote_ip 5.5.5.180 89519 username farhad 89519 unique_id port 89519 terminate_cause Lost-Carrier 89519 bytes_out 16622388 89519 bytes_in 362073979 89519 station_ip 5.119.157.81 89519 port 15728837 89519 nas_port_type Virtual 89519 remote_ip 5.5.5.167 89522 username asadi 89522 unique_id port 89522 terminate_cause User-Request 89522 bytes_out 894 89522 bytes_in 12456 89522 station_ip 37.129.229.58 89522 port 15728864 89522 nas_port_type Virtual 89522 remote_ip 5.5.5.250 89539 username aminvpn 89539 mac 89539 bytes_out 0 89539 bytes_in 0 89539 station_ip 83.123.11.33 89539 port 21 89539 unique_id port 89539 remote_ip 10.8.0.6 89545 username aminvpn 89545 mac 89545 bytes_out 0 89545 bytes_in 0 89545 station_ip 83.123.11.33 89545 port 21 89545 unique_id port 89545 remote_ip 10.8.0.6 89549 username aminvpn 89549 mac 89549 bytes_out 0 89549 bytes_in 0 89549 station_ip 37.129.88.107 89549 port 23 89549 unique_id port 89549 remote_ip 10.8.0.6 89558 username aminvpn 89558 mac 89558 bytes_out 0 89558 bytes_in 0 89558 station_ip 83.123.11.33 89558 port 23 89558 unique_id port 89558 remote_ip 10.8.0.6 89564 username aminvpn 89564 mac 89564 bytes_out 0 89564 bytes_in 0 89564 station_ip 37.129.44.178 89564 port 21 89564 unique_id port 89564 remote_ip 10.8.0.6 89567 username forozande 89567 unique_id port 89567 terminate_cause User-Request 89567 bytes_out 22688 89567 bytes_in 152650 89567 station_ip 83.122.24.180 89567 port 15728876 89567 nas_port_type Virtual 89567 remote_ip 5.5.5.160 89578 username aminvpn 89578 mac 89578 bytes_out 0 89578 bytes_in 0 89578 station_ip 37.129.44.178 89578 port 21 89578 unique_id port 89578 remote_ip 10.8.0.6 89582 username aminvpn 89582 mac 89582 bytes_out 23430 89582 bytes_in 50757 89582 station_ip 37.129.44.178 89582 port 21 89582 unique_id port 89582 remote_ip 10.8.0.6 89586 username arabpour 89586 unique_id port 89586 terminate_cause User-Request 89586 bytes_out 0 89586 bytes_in 0 89586 station_ip 172.80.234.209 89586 port 15728881 89586 nas_port_type Virtual 89586 remote_ip 5.5.5.154 89592 username heydari 89592 unique_id port 89592 terminate_cause User-Request 89592 bytes_out 666022 89592 bytes_in 4636691 89592 station_ip 5.119.11.246 89592 port 15728816 89592 nas_port_type Virtual 89592 remote_ip 5.5.5.175 89596 username mahdixz 89596 unique_id port 89596 terminate_cause Lost-Carrier 89596 bytes_out 756376 89596 bytes_in 4417286 89596 station_ip 151.235.104.45 89596 port 15728888 89596 nas_port_type Virtual 89596 remote_ip 5.5.5.149 89602 username jamali 89602 unique_id port 89602 terminate_cause User-Request 89602 bytes_out 257886 89602 bytes_in 4194172 89602 station_ip 83.123.211.237 89602 port 15728896 89602 nas_port_type Virtual 89602 remote_ip 5.5.5.143 89608 username aminvpn 89608 mac 89608 bytes_out 0 89608 bytes_in 0 89530 bytes_in 0 89530 station_ip 37.129.44.178 89530 port 21 89530 unique_id port 89530 remote_ip 10.8.0.6 89532 username aminvpn 89532 mac 89532 bytes_out 0 89532 bytes_in 0 89532 station_ip 83.123.11.33 89532 port 21 89532 unique_id port 89532 remote_ip 10.8.0.6 89534 username aminvpn 89534 mac 89534 bytes_out 0 89534 bytes_in 0 89534 station_ip 37.129.88.107 89534 port 21 89534 unique_id port 89534 remote_ip 10.8.0.6 89536 username aminvpn 89536 mac 89536 bytes_out 0 89536 bytes_in 0 89536 station_ip 83.123.11.33 89536 port 23 89536 unique_id port 89536 remote_ip 10.8.0.6 89538 username aminvpn 89538 mac 89538 bytes_out 0 89538 bytes_in 0 89538 station_ip 37.129.88.107 89538 port 23 89538 unique_id port 89538 remote_ip 10.8.0.6 89541 username aminvpn 89541 mac 89541 bytes_out 0 89541 bytes_in 0 89541 station_ip 83.123.11.33 89541 port 21 89541 unique_id port 89541 remote_ip 10.8.0.6 89548 username aminvpn 89548 mac 89548 bytes_out 0 89548 bytes_in 0 89548 station_ip 83.123.11.33 89548 port 21 89548 unique_id port 89548 remote_ip 10.8.0.6 89550 username aminvpn 89550 mac 89550 bytes_out 0 89550 bytes_in 0 89550 station_ip 37.129.44.178 89550 port 21 89550 unique_id port 89550 remote_ip 10.8.0.6 89551 username aminvpn 89551 mac 89551 bytes_out 0 89551 bytes_in 0 89551 station_ip 37.129.88.107 89551 port 23 89551 unique_id port 89551 remote_ip 10.8.0.6 89553 username aminvpn 89553 mac 89553 bytes_out 0 89553 bytes_in 0 89553 station_ip 37.129.44.178 89553 port 23 89553 unique_id port 89553 remote_ip 10.8.0.6 89574 username aminvpn 89574 mac 89574 bytes_out 107804 89574 bytes_in 153154 89574 station_ip 37.129.44.178 89574 port 21 89574 unique_id port 89574 remote_ip 10.8.0.6 89577 username aminvpn 89577 mac 89577 bytes_out 0 89577 bytes_in 0 89577 station_ip 83.123.11.33 89577 port 23 89577 unique_id port 89577 remote_ip 10.8.0.6 89579 username madadi 89579 unique_id port 89579 terminate_cause Lost-Carrier 89579 bytes_out 129086 89579 bytes_in 186405 89579 station_ip 5.120.36.10 89579 port 15728878 89579 nas_port_type Virtual 89579 remote_ip 5.5.5.155 89583 username aminvpn 89583 mac 89583 bytes_out 0 89583 bytes_in 0 89583 station_ip 83.123.11.33 89583 port 23 89583 unique_id port 89583 remote_ip 10.8.0.6 89593 username ahmadipour 89593 unique_id port 89593 terminate_cause Lost-Carrier 89593 bytes_out 1212631 89593 bytes_in 24284833 89593 station_ip 83.123.69.252 89593 port 15728868 89593 nas_port_type Virtual 89593 remote_ip 5.5.5.159 89598 username zamanialireza 89598 unique_id port 89598 terminate_cause Lost-Carrier 89598 bytes_out 1364797 89598 bytes_in 12009740 89598 station_ip 94.183.213.166 89598 port 15728865 89598 nas_port_type Virtual 89598 remote_ip 5.5.5.161 89600 username forozande 89600 unique_id port 89600 terminate_cause User-Request 89600 bytes_out 35090 89600 bytes_in 90430 89600 station_ip 37.129.168.229 89600 port 15728894 89600 nas_port_type Virtual 89600 remote_ip 5.5.5.144 89609 username aminvpn 89609 unique_id port 89609 terminate_cause User-Request 89609 bytes_out 5241263 89609 bytes_in 189034100 89609 station_ip 5.119.106.197 89609 port 15728849 89609 nas_port_type Virtual 89609 remote_ip 5.5.5.162 89612 username farhad 89612 unique_id port 89612 terminate_cause User-Request 89612 bytes_out 6635557 89612 bytes_in 66170036 89612 station_ip 5.119.238.229 89537 unique_id port 89537 remote_ip 10.8.0.6 89540 username aminvpn 89540 mac 89540 bytes_out 0 89540 bytes_in 0 89540 station_ip 37.129.88.107 89540 port 23 89540 unique_id port 89540 remote_ip 10.8.0.6 89542 username aminvpn 89542 mac 89542 bytes_out 0 89542 bytes_in 0 89542 station_ip 37.129.44.178 89542 port 23 89542 unique_id port 89542 remote_ip 10.8.0.6 89543 username aminvpn 89543 mac 89543 bytes_out 49603 89543 bytes_in 75988 89543 station_ip 37.129.88.107 89543 port 21 89543 unique_id port 89543 remote_ip 10.8.0.6 89547 username asadi 89547 unique_id port 89547 terminate_cause User-Request 89547 bytes_out 146388 89547 bytes_in 7293796 89547 station_ip 37.129.229.58 89547 port 15728870 89547 nas_port_type Virtual 89547 remote_ip 5.5.5.250 89552 username aminvpn 89552 mac 89552 bytes_out 0 89552 bytes_in 0 89552 station_ip 83.123.11.33 89552 port 21 89552 unique_id port 89552 remote_ip 10.8.0.6 89554 username aminvpn 89554 mac 89554 bytes_out 0 89554 bytes_in 0 89554 station_ip 37.129.88.107 89554 port 21 89554 unique_id port 89554 remote_ip 10.8.0.6 89556 username forozande 89556 unique_id port 89556 terminate_cause User-Request 89556 bytes_out 36529 89556 bytes_in 127296 89556 station_ip 83.122.24.180 89556 port 15728873 89556 nas_port_type Virtual 89556 remote_ip 5.5.5.160 89560 username aminvpn 89560 mac 89560 bytes_out 0 89560 bytes_in 0 89560 station_ip 37.129.88.107 89560 port 23 89560 unique_id port 89560 remote_ip 10.8.0.6 89563 username forozande 89563 unique_id port 89563 terminate_cause User-Request 89563 bytes_out 14482 89563 bytes_in 39848 89563 station_ip 83.122.24.180 89563 port 15728874 89563 nas_port_type Virtual 89563 remote_ip 5.5.5.160 89568 username aminvpn 89568 mac 89568 bytes_out 4240 89568 bytes_in 14832 89568 station_ip 83.123.11.33 89568 port 23 89568 unique_id port 89568 remote_ip 10.8.0.6 89569 username madadi 89569 unique_id port 89569 terminate_cause Lost-Carrier 89569 bytes_out 153932 89569 bytes_in 972628 89569 station_ip 5.119.62.124 89569 port 15728871 89569 nas_port_type Virtual 89569 remote_ip 5.5.5.157 89580 username aminvpn 89580 mac 89580 bytes_out 0 89580 bytes_in 0 89580 station_ip 83.123.11.33 89580 port 23 89580 unique_id port 89580 remote_ip 10.8.0.6 89584 username aminvpn 89584 mac 89584 bytes_out 71936 89584 bytes_in 97811 89584 station_ip 37.129.44.178 89584 port 21 89584 unique_id port 89584 remote_ip 10.8.0.6 89585 username arabpour 89585 unique_id port 89585 terminate_cause User-Request 89585 bytes_out 0 89585 bytes_in 0 89585 station_ip 172.80.234.209 89585 port 15728880 89585 nas_port_type Virtual 89585 remote_ip 5.5.5.154 89589 username ksrkrgr 89589 unique_id port 89589 terminate_cause User-Request 89589 bytes_out 9567585 89589 bytes_in 274689137 89589 station_ip 85.185.172.97 89589 port 15728879 89589 nas_port_type Virtual 89589 remote_ip 5.5.5.179 89590 username madadi 89590 unique_id port 89590 terminate_cause Lost-Carrier 89590 bytes_out 45823 89590 bytes_in 314024 89590 station_ip 5.120.133.154 89590 port 15728885 89590 nas_port_type Virtual 89590 remote_ip 5.5.5.150 89594 username mahdixz 89594 unique_id port 89594 terminate_cause Lost-Carrier 89594 bytes_out 414885 89594 bytes_in 1799952 89594 station_ip 151.235.104.45 89594 port 15728884 89594 nas_port_type Virtual 89594 remote_ip 5.5.5.151 89595 username mammad 89595 unique_id port 89595 terminate_cause User-Request 89595 bytes_out 956783 89544 username aminvpn 89544 mac 89544 bytes_out 0 89544 bytes_in 0 89544 station_ip 37.129.44.178 89544 port 23 89544 unique_id port 89544 remote_ip 10.8.0.6 89546 username aminvpn 89546 mac 89546 bytes_out 46103 89546 bytes_in 65853 89546 station_ip 37.129.88.107 89546 port 23 89546 unique_id port 89546 remote_ip 10.8.0.6 89555 username aminvpn 89555 mac 89555 bytes_out 0 89555 bytes_in 0 89555 station_ip 83.123.11.33 89555 port 23 89555 unique_id port 89555 remote_ip 10.8.0.6 89557 username aminvpn 89557 mac 89557 bytes_out 0 89557 bytes_in 0 89557 station_ip 37.129.88.107 89557 port 21 89557 unique_id port 89557 remote_ip 10.8.0.6 89559 username aminvpn 89559 mac 89559 bytes_out 0 89559 bytes_in 0 89559 station_ip 37.129.44.178 89559 port 21 89559 unique_id port 89559 remote_ip 10.8.0.6 89561 username aminvpn 89561 mac 89561 bytes_out 0 89561 bytes_in 0 89561 station_ip 37.129.44.178 89561 port 21 89561 unique_id port 89561 remote_ip 10.8.0.6 89562 username aminvpn 89562 mac 89562 bytes_out 0 89562 bytes_in 0 89562 station_ip 83.123.11.33 89562 port 23 89562 unique_id port 89562 remote_ip 10.8.0.6 89565 username forozande 89565 unique_id port 89565 terminate_cause User-Request 89565 bytes_out 0 89565 bytes_in 0 89565 station_ip 83.122.24.180 89565 port 15728875 89565 nas_port_type Virtual 89565 remote_ip 5.5.5.160 89566 username amirabbas 89566 unique_id port 89566 terminate_cause User-Request 89566 bytes_out 2441906 89566 bytes_in 65843128 89566 station_ip 31.56.156.38 89566 port 15728872 89566 nas_port_type Virtual 89566 remote_ip 5.5.5.235 89570 username aminvpn 89570 mac 89570 bytes_out 23435 89570 bytes_in 76497 89570 station_ip 37.129.44.178 89570 port 21 89570 unique_id port 89570 remote_ip 10.8.0.6 89571 username aminvpn 89571 mac 89571 bytes_out 18466 89571 bytes_in 14672 89571 station_ip 83.123.11.33 89571 port 23 89571 unique_id port 89571 remote_ip 10.8.0.6 89572 username aminvpn 89572 mac 89572 bytes_out 0 89572 bytes_in 0 89572 station_ip 37.129.44.178 89572 port 21 89572 unique_id port 89572 remote_ip 10.8.0.6 89573 username aminvpn 89573 mac 89573 bytes_out 0 89573 bytes_in 0 89573 station_ip 83.123.11.33 89573 port 23 89573 unique_id port 89573 remote_ip 10.8.0.6 89575 username aminvpn 89575 mac 89575 bytes_out 4350 89575 bytes_in 10532 89575 station_ip 83.123.11.33 89575 port 23 89575 unique_id port 89575 remote_ip 10.8.0.6 89576 username aminvpn 89576 mac 89576 bytes_out 74905 89576 bytes_in 131061 89576 station_ip 37.129.44.178 89576 port 21 89576 unique_id port 89576 remote_ip 10.8.0.6 89581 username caferibar 89581 unique_id port 89581 terminate_cause Lost-Carrier 89581 bytes_out 667763 89581 bytes_in 7963493 89581 station_ip 37.153.177.186 89581 port 15728877 89581 nas_port_type Virtual 89581 remote_ip 5.5.5.156 89587 username forozande 89587 unique_id port 89587 terminate_cause User-Request 89587 bytes_out 210970 89587 bytes_in 539862 89587 station_ip 83.122.181.119 89587 port 15728883 89587 nas_port_type Virtual 89587 remote_ip 5.5.5.152 89588 username ksrkrgr 89588 unique_id port 89588 terminate_cause User-Request 89588 bytes_out 619912 89588 bytes_in 4828517 89588 station_ip 85.185.172.97 89588 port 15728882 89588 nas_port_type Virtual 89588 remote_ip 5.5.5.153 89591 username mahdixz 89591 unique_id port 89591 terminate_cause User-Request 89591 bytes_out 0 89591 bytes_in 0 89591 station_ip 151.235.104.45 89591 port 15728887 89591 nas_port_type Virtual 89591 remote_ip 5.5.5.149 89597 username kamali 89597 unique_id port 89597 terminate_cause User-Request 89597 bytes_out 504708 89597 bytes_in 1227629 89597 station_ip 37.129.244.80 89597 port 15728892 89597 nas_port_type Virtual 89597 remote_ip 5.5.5.145 89604 username aminvpn 89604 mac 89604 bytes_out 0 89604 bytes_in 0 89604 station_ip 83.123.85.138 89604 port 21 89604 unique_id port 89604 remote_ip 10.8.0.6 89610 username musanejad 89610 unique_id port 89610 terminate_cause Lost-Carrier 89610 bytes_out 4894341 89610 bytes_in 49695411 89610 station_ip 5.120.150.83 89610 port 15728891 89610 nas_port_type Virtual 89610 remote_ip 5.5.5.146 89616 username caferibar 89616 unique_id port 89616 terminate_cause Lost-Carrier 89616 bytes_out 519504 89616 bytes_in 2457764 89616 station_ip 5.134.170.209 89616 port 15728903 89616 nas_port_type Virtual 89616 remote_ip 5.5.5.140 89622 username forozande 89622 unique_id port 89622 terminate_cause User-Request 89622 bytes_out 0 89622 bytes_in 0 89622 station_ip 37.129.29.252 89622 port 15728918 89622 nas_port_type Virtual 89622 remote_ip 5.5.5.135 89628 username ahmadipour 89628 unique_id port 89628 terminate_cause Lost-Carrier 89628 bytes_out 494878 89628 bytes_in 809671 89628 station_ip 83.123.86.208 89628 port 15728925 89628 nas_port_type Virtual 89628 remote_ip 5.5.5.132 89632 username caferibar 89632 unique_id port 89632 terminate_cause Lost-Carrier 89632 bytes_out 12632516 89632 bytes_in 470259303 89632 station_ip 89.47.132.208 89632 port 15728920 89632 nas_port_type Virtual 89632 remote_ip 5.5.5.134 89634 username alinezhad 89634 unique_id port 89634 terminate_cause User-Request 89634 bytes_out 41644 89634 bytes_in 79677 89634 station_ip 5.215.146.248 89634 port 15728929 89634 nas_port_type Virtual 89634 remote_ip 5.5.5.131 89639 username farhad 89639 unique_id port 89639 terminate_cause User-Request 89639 bytes_out 45249254 89639 bytes_in 88396227 89639 station_ip 5.119.238.229 89639 port 15728922 89639 nas_port_type Virtual 89639 remote_ip 5.5.5.142 89641 username zamanialireza 89641 unique_id port 89641 terminate_cause Lost-Carrier 89641 bytes_out 5892553 89641 bytes_in 240357323 89641 station_ip 94.24.97.19 89641 port 15728912 89641 nas_port_type Virtual 89641 remote_ip 5.5.5.138 89645 username aminvpn 89645 mac 89645 bytes_out 3144607 89645 bytes_in 11262235 89645 station_ip 83.123.13.6 89645 port 21 89645 unique_id port 89645 remote_ip 10.8.0.6 89649 username madadi 89649 unique_id port 89649 terminate_cause Lost-Carrier 89649 bytes_out 2399942 89649 bytes_in 5903851 89649 station_ip 5.119.173.0 89649 port 15728901 89649 nas_port_type Virtual 89649 remote_ip 5.5.5.148 89651 username mahdixz 89651 unique_id port 89651 terminate_cause User-Request 89651 bytes_out 3879626 89651 bytes_in 23531673 89651 station_ip 151.235.104.45 89651 port 15728938 89651 nas_port_type Virtual 89651 remote_ip 5.5.5.149 89653 username asadi 89653 unique_id port 89653 terminate_cause User-Request 89653 bytes_out 159222 89653 bytes_in 3038354 89653 station_ip 83.123.56.38 89653 port 15728947 89653 nas_port_type Virtual 89653 remote_ip 5.5.5.124 89655 username asadi 89655 unique_id port 89655 terminate_cause User-Request 89655 bytes_out 75967 89655 bytes_in 668336 89655 station_ip 83.123.56.38 89655 port 15728950 89655 nas_port_type Virtual 89655 remote_ip 5.5.5.124 89660 username musanejad 89660 unique_id port 89660 terminate_cause Lost-Carrier 89660 bytes_out 1693237 89660 bytes_in 15087559 89595 bytes_in 5971486 89595 station_ip 78.39.29.39 89595 port 15728890 89595 nas_port_type Virtual 89595 remote_ip 5.5.5.147 89599 username forozande 89599 unique_id port 89599 terminate_cause User-Request 89599 bytes_out 67532 89599 bytes_in 90951 89599 station_ip 37.129.168.229 89599 port 15728893 89599 nas_port_type Virtual 89599 remote_ip 5.5.5.144 89601 username ahmadi 89601 unique_id port 89601 terminate_cause User-Request 89601 bytes_out 70436 89601 bytes_in 1420970 89601 station_ip 113.203.83.220 89601 port 15728895 89601 nas_port_type Virtual 89601 remote_ip 5.5.5.158 89603 username arabpour 89603 unique_id port 89603 terminate_cause User-Request 89603 bytes_out 417307 89603 bytes_in 13907459 89603 station_ip 5.208.143.47 89603 port 15728899 89603 nas_port_type Virtual 89603 remote_ip 5.5.5.141 89605 username madadi 89605 unique_id port 89605 terminate_cause User-Request 89605 bytes_out 1421548 89605 bytes_in 22855023 89605 station_ip 5.119.173.0 89605 port 15728889 89605 nas_port_type Virtual 89605 remote_ip 5.5.5.148 89606 username asadi 89606 unique_id port 89606 terminate_cause User-Request 89606 bytes_out 210138 89606 bytes_in 6038980 89606 station_ip 37.129.229.58 89606 port 15728900 89606 nas_port_type Virtual 89606 remote_ip 5.5.5.250 89607 username aminvpn 89607 mac 89607 bytes_out 0 89607 bytes_in 0 89607 station_ip 83.123.85.138 89607 port 21 89607 unique_id port 89607 remote_ip 10.8.0.6 89613 username heydari 89613 unique_id port 89613 terminate_cause User-Request 89613 bytes_out 307424 89613 bytes_in 10029873 89613 station_ip 5.119.11.246 89613 port 15728908 89613 nas_port_type Virtual 89613 remote_ip 5.5.5.175 89623 username forozande 89623 unique_id port 89623 terminate_cause User-Request 89623 bytes_out 115336 89623 bytes_in 936672 89623 station_ip 37.129.29.252 89623 port 15728919 89623 nas_port_type Virtual 89623 remote_ip 5.5.5.135 89626 username caferibar 89626 unique_id port 89626 terminate_cause Lost-Carrier 89626 bytes_out 85353 89626 bytes_in 452995 89626 station_ip 37.153.186.3 89626 port 15728915 89626 nas_port_type Virtual 89626 remote_ip 5.5.5.136 89627 username forozande 89627 unique_id port 89627 terminate_cause User-Request 89627 bytes_out 47533 89627 bytes_in 251593 89627 station_ip 83.122.39.14 89627 port 15728923 89627 nas_port_type Virtual 89627 remote_ip 5.5.5.133 89629 username jamali 89629 unique_id port 89629 terminate_cause User-Request 89629 bytes_out 101339 89629 bytes_in 1454733 89629 station_ip 83.123.211.237 89629 port 15728926 89629 nas_port_type Virtual 89629 remote_ip 5.5.5.143 89631 username ahmadi 89631 unique_id port 89631 terminate_cause User-Request 89631 bytes_out 55437 89631 bytes_in 343533 89631 station_ip 113.203.83.220 89631 port 15728927 89631 nas_port_type Virtual 89631 remote_ip 5.5.5.158 89633 username heydari 89633 unique_id port 89633 terminate_cause User-Request 89633 bytes_out 149557 89633 bytes_in 577894 89633 station_ip 5.119.11.246 89633 port 15728928 89633 nas_port_type Virtual 89633 remote_ip 5.5.5.175 89635 username asadi 89635 unique_id port 89635 terminate_cause User-Request 89635 bytes_out 152852 89635 bytes_in 2013915 89635 station_ip 37.129.229.58 89635 port 15728930 89635 nas_port_type Virtual 89635 remote_ip 5.5.5.250 89638 username jamali 89638 unique_id port 89638 terminate_cause User-Request 89638 bytes_out 293019 89638 bytes_in 5952792 89638 station_ip 83.123.211.237 89638 port 15728933 89638 nas_port_type Virtual 89638 remote_ip 5.5.5.143 89644 username caferibar 89644 unique_id port 89644 terminate_cause User-Request 89644 bytes_out 167596 89608 station_ip 83.123.85.138 89608 port 23 89608 unique_id port 89608 remote_ip 10.8.0.6 89611 username heydari 89611 unique_id port 89611 terminate_cause User-Request 89611 bytes_out 368625 89611 bytes_in 6412020 89611 station_ip 5.119.11.246 89611 port 15728897 89611 nas_port_type Virtual 89611 remote_ip 5.5.5.175 89614 username avaanna 89614 unique_id port 89614 terminate_cause User-Request 89614 bytes_out 0 89614 bytes_in 0 89614 station_ip 113.203.83.211 89614 port 15728910 89614 nas_port_type Virtual 89614 remote_ip 5.5.5.139 89618 username caferibar 89618 unique_id port 89618 terminate_cause Lost-Carrier 89618 bytes_out 274604 89618 bytes_in 2966622 89618 station_ip 5.119.13.188 89618 port 15728913 89618 nas_port_type Virtual 89618 remote_ip 5.5.5.137 89624 username farhad 89624 unique_id port 89624 terminate_cause User-Request 89624 bytes_out 30340628 89624 bytes_in 47670737 89624 station_ip 5.119.238.229 89624 port 15728909 89624 nas_port_type Virtual 89624 remote_ip 5.5.5.142 89625 username farhad 89625 unique_id port 89625 terminate_cause User-Request 89625 bytes_out 0 89625 bytes_in 0 89625 station_ip 5.119.238.229 89625 port 15728921 89625 nas_port_type Virtual 89625 remote_ip 5.5.5.142 89630 username heydari 89630 unique_id port 89630 terminate_cause User-Request 89630 bytes_out 63366 89630 bytes_in 353943 89630 station_ip 5.119.11.246 89630 port 15728924 89630 nas_port_type Virtual 89630 remote_ip 5.5.5.175 89636 username asadi 89636 unique_id port 89636 terminate_cause User-Request 89636 bytes_out 74402 89636 bytes_in 711431 89636 station_ip 37.129.229.58 89636 port 15728931 89636 nas_port_type Virtual 89636 remote_ip 5.5.5.250 89637 username ahmadipour 89637 unique_id port 89637 terminate_cause Lost-Carrier 89637 bytes_out 589898 89637 bytes_in 5223679 89637 station_ip 83.123.123.232 89637 port 15728932 89637 nas_port_type Virtual 89637 remote_ip 5.5.5.130 89642 username zamanialireza 89642 unique_id port 89642 terminate_cause User-Request 89642 bytes_out 183891 89642 bytes_in 5573017 89642 station_ip 94.24.97.19 89642 port 15728936 89642 nas_port_type Virtual 89642 remote_ip 5.5.5.128 89647 username caferibar 89647 unique_id port 89647 terminate_cause Lost-Carrier 89647 bytes_out 637387 89647 bytes_in 14025000 89647 station_ip 37.137.26.90 89647 port 15728939 89647 nas_port_type Virtual 89647 remote_ip 5.5.5.129 89650 username musanejad 89650 unique_id port 89650 terminate_cause Lost-Carrier 89650 bytes_out 1145008 89650 bytes_in 28867850 89650 station_ip 5.119.167.109 89650 port 15728945 89650 nas_port_type Virtual 89650 remote_ip 5.5.5.126 89652 username farhad 89652 unique_id port 89652 terminate_cause Lost-Carrier 89652 bytes_out 53780737 89652 bytes_in 182275232 89652 station_ip 5.119.238.229 89652 port 15728935 89652 nas_port_type Virtual 89652 remote_ip 5.5.5.142 89658 username asadi 89658 unique_id port 89658 terminate_cause User-Request 89658 bytes_out 39871 89658 bytes_in 210511 89658 station_ip 83.123.56.38 89658 port 15728954 89658 nas_port_type Virtual 89658 remote_ip 5.5.5.124 89666 username musanejad 89666 unique_id port 89666 terminate_cause Lost-Carrier 89666 bytes_out 2013642 89666 bytes_in 13310887 89666 station_ip 5.120.174.132 89666 port 15728959 89666 nas_port_type Virtual 89666 remote_ip 5.5.5.117 89668 username mahbobeh 89668 unique_id port 89668 terminate_cause Lost-Carrier 89668 bytes_out 5722980 89668 bytes_in 95418345 89668 station_ip 37.129.237.229 89668 port 15728848 89668 nas_port_type Virtual 89668 remote_ip 5.5.5.169 89672 username caferibar 89672 unique_id port 89672 terminate_cause Admin-Reboot 89612 port 15728898 89612 nas_port_type Virtual 89612 remote_ip 5.5.5.142 89615 username avaanna 89615 unique_id port 89615 terminate_cause User-Request 89615 bytes_out 13372 89615 bytes_in 36828 89615 station_ip 113.203.83.211 89615 port 15728911 89615 nas_port_type Virtual 89615 remote_ip 5.5.5.139 89617 username mammad 89617 unique_id port 89617 terminate_cause User-Request 89617 bytes_out 1758354 89617 bytes_in 8986178 89617 station_ip 78.39.29.39 89617 port 15728907 89617 nas_port_type Virtual 89617 remote_ip 5.5.5.147 89619 username asadi 89619 unique_id port 89619 terminate_cause User-Request 89619 bytes_out 66611 89619 bytes_in 437148 89619 station_ip 37.129.229.58 89619 port 15728914 89619 nas_port_type Virtual 89619 remote_ip 5.5.5.250 89620 username forozande 89620 unique_id port 89620 terminate_cause User-Request 89620 bytes_out 230 89620 bytes_in 10626 89620 station_ip 37.129.168.229 89620 port 15728916 89620 nas_port_type Virtual 89620 remote_ip 5.5.5.144 89621 username forozande 89621 unique_id port 89621 terminate_cause User-Request 89621 bytes_out 0 89621 bytes_in 0 89621 station_ip 37.129.29.252 89621 port 15728917 89621 nas_port_type Virtual 89621 remote_ip 5.5.5.135 89640 username amirabbas 89640 unique_id port 89640 terminate_cause User-Request 89640 bytes_out 56566580 89640 bytes_in 1178346687 89640 station_ip 31.56.156.38 89640 port 15728902 89640 nas_port_type Virtual 89640 remote_ip 5.5.5.235 89643 username caferibar 89643 unique_id port 89643 terminate_cause User-Request 89643 bytes_out 743141 89643 bytes_in 15221987 89643 station_ip 37.137.26.90 89643 port 15728934 89643 nas_port_type Virtual 89643 remote_ip 5.5.5.129 89648 username aminvpn 89648 mac 89648 bytes_out 228864 89648 bytes_in 738581 89648 station_ip 113.203.13.183 89648 port 21 89648 unique_id port 89648 remote_ip 10.8.0.6 89654 username afarin 89654 unique_id port 89654 terminate_cause User-Request 89654 bytes_out 0 89654 bytes_in 0 89654 station_ip 151.238.240.205 89654 port 15728949 89654 nas_port_type Virtual 89654 remote_ip 5.5.5.122 89656 username asadi 89656 unique_id port 89656 terminate_cause User-Request 89656 bytes_out 189490 89656 bytes_in 3341612 89656 station_ip 83.123.56.38 89656 port 15728952 89656 nas_port_type Virtual 89656 remote_ip 5.5.5.124 89659 username afarin 89659 unique_id port 89659 terminate_cause Lost-Carrier 89659 bytes_out 423586 89659 bytes_in 2805545 89659 station_ip 151.238.240.205 89659 port 15728951 89659 nas_port_type Virtual 89659 remote_ip 5.5.5.122 89663 username musanejad 89663 unique_id port 89663 terminate_cause Lost-Carrier 89663 bytes_out 1557260 89663 bytes_in 13736692 89663 station_ip 5.120.78.167 89663 port 15728957 89663 nas_port_type Virtual 89663 remote_ip 5.5.5.119 89667 username zamanialireza 89667 unique_id port 89667 terminate_cause Lost-Carrier 89667 bytes_out 4687595 89667 bytes_in 132925012 89667 station_ip 5.160.115.245 89667 port 15728960 89667 nas_port_type Virtual 89667 remote_ip 5.5.5.205 89676 username asadi 89676 unique_id port 89676 terminate_cause User-Request 89676 bytes_out 79726 89676 bytes_in 1975781 89676 station_ip 113.203.49.24 89676 port 15728643 89676 nas_port_type Virtual 89676 remote_ip 5.5.5.253 89677 username asadi 89677 unique_id port 89677 terminate_cause User-Request 89677 bytes_out 153348 89677 bytes_in 1676183 89677 station_ip 113.203.49.24 89677 port 15728644 89677 nas_port_type Virtual 89677 remote_ip 5.5.5.253 89683 username bcboard 89683 unique_id port 89683 terminate_cause User-Request 89683 bytes_out 160130 89683 bytes_in 2016457 89683 station_ip 113.203.37.137 89644 bytes_in 2841196 89644 station_ip 37.137.26.90 89644 port 15728937 89644 nas_port_type Virtual 89644 remote_ip 5.5.5.129 89646 username afarin 89646 unique_id port 89646 terminate_cause User-Request 89646 bytes_out 286611 89646 bytes_in 3876893 89646 station_ip 83.123.86.56 89646 port 15728944 89646 nas_port_type Virtual 89646 remote_ip 5.5.5.127 89657 username asadi 89657 unique_id port 89657 terminate_cause User-Request 89657 bytes_out 76908 89657 bytes_in 226168 89657 station_ip 83.123.56.38 89657 port 15728953 89657 nas_port_type Virtual 89657 remote_ip 5.5.5.124 89661 username majid 89661 unique_id port 89661 terminate_cause User-Request 89661 bytes_out 9797802 89661 bytes_in 303044444 89661 station_ip 86.57.54.152 89661 port 15728948 89661 nas_port_type Virtual 89661 remote_ip 5.5.5.123 89664 username mammad 89664 unique_id port 89664 terminate_cause User-Request 89664 bytes_out 15929407 89664 bytes_in 275151326 89664 station_ip 78.39.29.39 89664 port 15728943 89664 nas_port_type Virtual 89664 remote_ip 5.5.5.147 89669 username ahmadi 89669 unique_id port 89669 terminate_cause User-Request 89669 bytes_out 45226 89669 bytes_in 322712 89669 station_ip 113.203.101.188 89669 port 15728961 89669 nas_port_type Virtual 89669 remote_ip 5.5.5.116 89670 username caferibar 89670 unique_id port 89670 terminate_cause Lost-Carrier 89670 bytes_out 655359 89670 bytes_in 6988107 89670 station_ip 94.24.16.220 89670 port 15728962 89670 nas_port_type Virtual 89670 remote_ip 5.5.5.115 89671 username mahbobeh 89671 unique_id port 89671 terminate_cause Admin-Reboot 89671 bytes_out 19365 89671 bytes_in 413314 89671 station_ip 37.129.237.229 89671 port 15728963 89671 nas_port_type Virtual 89671 remote_ip 5.5.5.169 89673 username forozande 89673 unique_id port 89673 terminate_cause User-Request 89673 bytes_out 578952 89673 bytes_in 18278786 89673 station_ip 83.122.109.92 89673 port 15728640 89673 nas_port_type Virtual 89673 remote_ip 5.5.5.255 89678 username asadi 89678 unique_id port 89678 terminate_cause User-Request 89678 bytes_out 64775 89678 bytes_in 586655 89678 station_ip 113.203.49.24 89678 port 15728645 89678 nas_port_type Virtual 89678 remote_ip 5.5.5.253 89680 username bcboard 89680 unique_id port 89680 terminate_cause User-Request 89680 bytes_out 172267 89680 bytes_in 2458497 89680 station_ip 113.203.37.137 89680 port 15728648 89680 nas_port_type Virtual 89680 remote_ip 5.5.5.252 89684 username bcboard 89684 unique_id port 89684 terminate_cause User-Request 89684 bytes_out 123307 89684 bytes_in 650905 89684 station_ip 113.203.37.137 89684 port 15728653 89684 nas_port_type Virtual 89684 remote_ip 5.5.5.252 89686 username bcboard 89686 unique_id port 89686 terminate_cause User-Request 89686 bytes_out 87905 89686 bytes_in 2054883 89686 station_ip 113.203.37.137 89686 port 15728656 89686 nas_port_type Virtual 89686 remote_ip 5.5.5.252 89689 username alinezhad 89689 unique_id port 89689 terminate_cause User-Request 89689 bytes_out 433163 89689 bytes_in 15831411 89689 station_ip 5.216.177.70 89689 port 15728658 89689 nas_port_type Virtual 89689 remote_ip 5.5.5.248 89691 username alinezhad 89691 unique_id port 89691 terminate_cause User-Request 89691 bytes_out 625436 89691 bytes_in 24880090 89691 station_ip 5.216.177.70 89691 port 15728660 89691 nas_port_type Virtual 89691 remote_ip 5.5.5.248 89693 username bcboard 89693 unique_id port 89693 terminate_cause User-Request 89693 bytes_out 142417 89693 bytes_in 625537 89693 station_ip 113.203.37.137 89693 port 15728662 89693 nas_port_type Virtual 89693 remote_ip 5.5.5.252 89699 username asadi 89699 unique_id port 89660 station_ip 5.119.22.171 89660 port 15728955 89660 nas_port_type Virtual 89660 remote_ip 5.5.5.121 89662 username amirabbas 89662 unique_id port 89662 terminate_cause User-Request 89662 bytes_out 6714754 89662 bytes_in 78921851 89662 station_ip 31.59.34.174 89662 port 15728956 89662 nas_port_type Virtual 89662 remote_ip 5.5.5.120 89665 username caferibar 89665 unique_id port 89665 terminate_cause Lost-Carrier 89665 bytes_out 260010 89665 bytes_in 4401890 89665 station_ip 37.137.5.52 89665 port 15728958 89665 nas_port_type Virtual 89665 remote_ip 5.5.5.118 89672 bytes_out 104128895 89672 bytes_in 339285386 89672 station_ip 5.119.142.62 89672 port 15728946 89672 nas_port_type Virtual 89672 remote_ip 5.5.5.125 89681 username bcboard 89681 unique_id port 89681 terminate_cause User-Request 89681 bytes_out 0 89681 bytes_in 0 89681 station_ip 113.203.37.137 89681 port 15728649 89681 nas_port_type Virtual 89681 remote_ip 5.5.5.252 89690 username madadi 89690 unique_id port 89690 terminate_cause Lost-Carrier 89690 bytes_out 44478 89690 bytes_in 281274 89690 station_ip 5.120.156.171 89690 port 15728652 89690 nas_port_type Virtual 89690 remote_ip 5.5.5.250 89694 username bcboard 89694 unique_id port 89694 terminate_cause User-Request 89694 bytes_out 0 89694 bytes_in 0 89694 station_ip 113.203.37.137 89694 port 15728663 89694 nas_port_type Virtual 89694 remote_ip 5.5.5.252 89697 username bcboard 89697 unique_id port 89697 terminate_cause User-Request 89697 bytes_out 127041 89697 bytes_in 1209911 89697 station_ip 113.203.37.137 89697 port 15728666 89697 nas_port_type Virtual 89697 remote_ip 5.5.5.252 89702 username aminvpn 89702 mac 89702 bytes_out 384419 89702 bytes_in 685817 89702 station_ip 113.203.80.147 89702 port 35 89702 unique_id port 89702 remote_ip 10.8.1.10 89710 username asadi 89710 unique_id port 89710 terminate_cause User-Request 89710 bytes_out 70477 89710 bytes_in 345324 89710 station_ip 113.203.49.24 89710 port 15728677 89710 nas_port_type Virtual 89710 remote_ip 5.5.5.253 89715 username zamanialireza 89715 unique_id port 89715 terminate_cause User-Request 89715 bytes_out 891207 89715 bytes_in 6115091 89715 station_ip 31.59.42.43 89715 port 15728681 89715 nas_port_type Virtual 89715 remote_ip 5.5.5.243 89717 username asadi 89717 unique_id port 89717 terminate_cause User-Request 89717 bytes_out 48964 89717 bytes_in 109893 89717 station_ip 113.203.49.24 89717 port 15728684 89717 nas_port_type Virtual 89717 remote_ip 5.5.5.253 89724 username aminvpn 89724 mac 89724 bytes_out 0 89724 bytes_in 0 89724 station_ip 113.203.80.147 89724 port 35 89724 unique_id port 89724 remote_ip 10.8.1.10 89726 username asadi 89726 unique_id port 89726 terminate_cause User-Request 89726 bytes_out 34741 89726 bytes_in 184290 89726 station_ip 113.203.49.24 89726 port 15728690 89726 nas_port_type Virtual 89726 remote_ip 5.5.5.253 89731 username mammad 89731 unique_id port 89731 terminate_cause User-Request 89731 bytes_out 1200002 89731 bytes_in 8362923 89731 station_ip 78.39.29.39 89731 port 15728697 89731 nas_port_type Virtual 89731 remote_ip 5.5.5.238 89733 username arabpour 89733 unique_id port 89733 terminate_cause User-Request 89733 bytes_out 0 89733 bytes_in 0 89733 station_ip 172.80.239.44 89733 port 15728700 89733 nas_port_type Virtual 89733 remote_ip 5.5.5.236 89735 username aminvpn 89735 unique_id port 89735 terminate_cause Lost-Carrier 89735 bytes_out 99727 89735 bytes_in 403079 89735 station_ip 5.120.19.145 89735 port 15728702 89735 nas_port_type Virtual 89735 remote_ip 5.5.5.235 89736 username aminvpn 89736 mac 89674 username forozande 89674 unique_id port 89674 terminate_cause User-Request 89674 bytes_out 27231 89674 bytes_in 50593 89674 station_ip 83.122.109.92 89674 port 15728641 89674 nas_port_type Virtual 89674 remote_ip 5.5.5.255 89675 username ahmadipour 89675 unique_id port 89675 terminate_cause Lost-Carrier 89675 bytes_out 283306 89675 bytes_in 5265059 89675 station_ip 83.123.64.20 89675 port 15728642 89675 nas_port_type Virtual 89675 remote_ip 5.5.5.254 89679 username asadi 89679 unique_id port 89679 terminate_cause User-Request 89679 bytes_out 45398 89679 bytes_in 185819 89679 station_ip 113.203.49.24 89679 port 15728646 89679 nas_port_type Virtual 89679 remote_ip 5.5.5.253 89682 username kamali 89682 unique_id port 89682 terminate_cause User-Request 89682 bytes_out 50230 89682 bytes_in 86436 89682 station_ip 37.129.135.120 89682 port 15728650 89682 nas_port_type Virtual 89682 remote_ip 5.5.5.251 89685 username bcboard 89685 unique_id port 89685 terminate_cause User-Request 89685 bytes_out 88860 89685 bytes_in 2480629 89685 station_ip 113.203.37.137 89685 port 15728655 89685 nas_port_type Virtual 89685 remote_ip 5.5.5.252 89687 username bcboard 89687 unique_id port 89687 terminate_cause User-Request 89687 bytes_out 64997 89687 bytes_in 276622 89687 station_ip 113.203.37.137 89687 port 15728657 89687 nas_port_type Virtual 89687 remote_ip 5.5.5.252 89692 username bcboard 89692 unique_id port 89692 terminate_cause User-Request 89692 bytes_out 192433 89692 bytes_in 1878090 89692 station_ip 113.203.37.137 89692 port 15728661 89692 nas_port_type Virtual 89692 remote_ip 5.5.5.252 89696 username bcboard 89696 unique_id port 89696 terminate_cause User-Request 89696 bytes_out 131242 89696 bytes_in 1146611 89696 station_ip 113.203.37.137 89696 port 15728665 89696 nas_port_type Virtual 89696 remote_ip 5.5.5.252 89703 username asadi 89703 unique_id port 89703 terminate_cause User-Request 89703 bytes_out 34530 89703 bytes_in 333221 89703 station_ip 113.203.49.24 89703 port 15728672 89703 nas_port_type Virtual 89703 remote_ip 5.5.5.253 89711 username asadi 89711 unique_id port 89711 terminate_cause User-Request 89711 bytes_out 69787 89711 bytes_in 723243 89711 station_ip 113.203.49.24 89711 port 15728678 89711 nas_port_type Virtual 89711 remote_ip 5.5.5.253 89719 username asadi 89719 unique_id port 89719 terminate_cause User-Request 89719 bytes_out 26402 89719 bytes_in 54630 89719 station_ip 113.203.49.24 89719 port 15728685 89719 nas_port_type Virtual 89719 remote_ip 5.5.5.253 89721 username asadi 89721 unique_id port 89721 terminate_cause User-Request 89721 bytes_out 35027 89721 bytes_in 81208 89721 station_ip 113.203.49.24 89721 port 15728686 89721 nas_port_type Virtual 89721 remote_ip 5.5.5.253 89729 username amirabbas 89729 unique_id port 89729 terminate_cause User-Request 89729 bytes_out 7206834 89729 bytes_in 214509329 89729 station_ip 31.59.34.174 89729 port 15728691 89729 nas_port_type Virtual 89729 remote_ip 5.5.5.241 89732 username mahbobeh 89732 unique_id port 89732 terminate_cause Lost-Carrier 89732 bytes_out 236294 89732 bytes_in 2562635 89732 station_ip 37.129.244.237 89732 port 15728689 89732 nas_port_type Virtual 89732 remote_ip 5.5.5.242 89734 username arabpour 89734 unique_id port 89734 terminate_cause User-Request 89734 bytes_out 549707 89734 bytes_in 16923698 89734 station_ip 172.80.239.44 89734 port 15728701 89734 nas_port_type Virtual 89734 remote_ip 5.5.5.236 89745 username mahdavi 89745 kill_reason Relative expiration date has reached 89745 unique_id port 89745 bytes_out 0 89745 bytes_in 0 89745 station_ip 83.122.73.79 89745 port 15728716 89683 port 15728651 89683 nas_port_type Virtual 89683 remote_ip 5.5.5.252 89688 username bcboard 89688 unique_id port 89688 terminate_cause User-Request 89688 bytes_out 38385 89688 bytes_in 69851 89688 station_ip 113.203.37.137 89688 port 15728659 89688 nas_port_type Virtual 89688 remote_ip 5.5.5.252 89695 username bcboard 89695 unique_id port 89695 terminate_cause User-Request 89695 bytes_out 161006 89695 bytes_in 1637049 89695 station_ip 113.203.37.137 89695 port 15728664 89695 nas_port_type Virtual 89695 remote_ip 5.5.5.252 89698 username bcboard 89698 unique_id port 89698 terminate_cause User-Request 89698 bytes_out 174573 89698 bytes_in 1790406 89698 station_ip 113.203.37.137 89698 port 15728667 89698 nas_port_type Virtual 89698 remote_ip 5.5.5.252 89700 username madadi 89700 unique_id port 89700 terminate_cause Lost-Carrier 89700 bytes_out 62590 89700 bytes_in 182955 89700 station_ip 5.120.155.147 89700 port 15728668 89700 nas_port_type Virtual 89700 remote_ip 5.5.5.247 89704 username bcboard 89704 unique_id port 89704 terminate_cause User-Request 89704 bytes_out 387543 89704 bytes_in 6770540 89704 station_ip 37.129.3.48 89704 port 15728673 89704 nas_port_type Virtual 89704 remote_ip 5.5.5.244 89706 username madadi 89706 unique_id port 89706 terminate_cause Lost-Carrier 89706 bytes_out 51297 89706 bytes_in 179663 89706 station_ip 5.119.192.57 89706 port 15728671 89706 nas_port_type Virtual 89706 remote_ip 5.5.5.245 89708 username aminvpn 89708 mac 89708 bytes_out 31036 89708 bytes_in 65098 89708 station_ip 113.203.80.147 89708 port 35 89708 unique_id port 89708 remote_ip 10.8.1.10 89713 username asadi 89713 unique_id port 89713 terminate_cause User-Request 89713 bytes_out 59264 89713 bytes_in 781929 89713 station_ip 113.203.49.24 89713 port 15728680 89713 nas_port_type Virtual 89713 remote_ip 5.5.5.253 89716 username asadi 89716 unique_id port 89716 terminate_cause User-Request 89716 bytes_out 25081 89716 bytes_in 55320 89716 station_ip 113.203.49.24 89716 port 15728683 89716 nas_port_type Virtual 89716 remote_ip 5.5.5.253 89720 username aminvpn 89720 mac 89720 bytes_out 53784 89720 bytes_in 118593 89720 station_ip 113.203.80.147 89720 port 21 89720 unique_id port 89720 remote_ip 10.8.0.6 89722 username asadi 89722 unique_id port 89722 terminate_cause User-Request 89722 bytes_out 48323 89722 bytes_in 156921 89722 station_ip 113.203.49.24 89722 port 15728687 89722 nas_port_type Virtual 89722 remote_ip 5.5.5.253 89723 username asadi 89723 unique_id port 89723 terminate_cause User-Request 89723 bytes_out 4675 89723 bytes_in 17510 89723 station_ip 113.203.49.24 89723 port 15728688 89723 nas_port_type Virtual 89723 remote_ip 5.5.5.253 89739 username aminvpn 89739 mac 89739 bytes_out 0 89739 bytes_in 0 89739 station_ip 83.122.125.146 89739 port 21 89739 unique_id port 89739 remote_ip 10.8.0.6 89741 username shahnaz 89741 kill_reason Relative expiration date has reached 89741 unique_id port 89741 bytes_out 0 89741 bytes_in 0 89741 station_ip 5.120.109.184 89741 port 15728712 89741 nas_port_type Virtual 89743 username zamanialireza 89743 unique_id port 89743 terminate_cause User-Request 89743 bytes_out 0 89743 bytes_in 0 89743 station_ip 113.203.89.97 89743 port 15728713 89743 nas_port_type Virtual 89743 remote_ip 5.5.5.232 89744 username aminvpn 89744 unique_id port 89744 terminate_cause Lost-Carrier 89744 bytes_out 3566901 89744 bytes_in 57109877 89744 station_ip 5.120.96.8 89744 port 15728703 89744 nas_port_type Virtual 89744 remote_ip 5.5.5.234 89748 username shahnaz 89748 kill_reason Relative expiration date has reached 89699 terminate_cause User-Request 89699 bytes_out 9626 89699 bytes_in 34784 89699 station_ip 113.203.49.24 89699 port 15728669 89699 nas_port_type Virtual 89699 remote_ip 5.5.5.253 89701 username alinezhad 89701 unique_id port 89701 terminate_cause User-Request 89701 bytes_out 0 89701 bytes_in 0 89701 station_ip 95.64.21.101 89701 port 15728670 89701 nas_port_type Virtual 89701 remote_ip 5.5.5.246 89705 username asadi 89705 unique_id port 89705 terminate_cause User-Request 89705 bytes_out 101394 89705 bytes_in 203837 89705 station_ip 113.203.49.24 89705 port 15728674 89705 nas_port_type Virtual 89705 remote_ip 5.5.5.253 89707 username asadi 89707 unique_id port 89707 terminate_cause User-Request 89707 bytes_out 5882 89707 bytes_in 19202 89707 station_ip 113.203.49.24 89707 port 15728675 89707 nas_port_type Virtual 89707 remote_ip 5.5.5.253 89709 username asadi 89709 unique_id port 89709 terminate_cause User-Request 89709 bytes_out 5464 89709 bytes_in 18258 89709 station_ip 113.203.49.24 89709 port 15728676 89709 nas_port_type Virtual 89709 remote_ip 5.5.5.253 89712 username asadi 89712 unique_id port 89712 terminate_cause User-Request 89712 bytes_out 42002 89712 bytes_in 189928 89712 station_ip 113.203.49.24 89712 port 15728679 89712 nas_port_type Virtual 89712 remote_ip 5.5.5.253 89714 username asadi 89714 unique_id port 89714 terminate_cause User-Request 89714 bytes_out 29921 89714 bytes_in 214816 89714 station_ip 113.203.49.24 89714 port 15728682 89714 nas_port_type Virtual 89714 remote_ip 5.5.5.253 89718 username aminvpn 89718 mac 89718 bytes_out 0 89718 bytes_in 0 89718 station_ip 113.203.80.147 89718 port 21 89718 unique_id port 89718 remote_ip 10.8.0.6 89725 username aminvpn 89725 mac 89725 bytes_out 3742 89725 bytes_in 5323 89725 station_ip 113.203.80.147 89725 port 21 89725 unique_id port 89725 remote_ip 10.8.0.6 89727 username aminvpn 89727 mac 89727 bytes_out 0 89727 bytes_in 0 89727 station_ip 113.203.80.147 89727 port 21 89727 unique_id port 89727 remote_ip 10.8.0.6 89728 username ahmadipour 89728 unique_id port 89728 terminate_cause Lost-Carrier 89728 bytes_out 31822250 89728 bytes_in 10014553 89728 station_ip 83.123.75.152 89728 port 15728696 89728 nas_port_type Virtual 89728 remote_ip 5.5.5.239 89730 username aminvpn 89730 unique_id port 89730 terminate_cause User-Request 89730 bytes_out 755947 89730 bytes_in 18371623 89730 station_ip 83.122.125.146 89730 port 15728698 89730 nas_port_type Virtual 89730 remote_ip 5.5.5.237 89737 username ahmadipour 89737 unique_id port 89737 terminate_cause Lost-Carrier 89737 bytes_out 57082 89737 bytes_in 54247 89737 station_ip 83.123.75.152 89737 port 15728705 89737 nas_port_type Virtual 89737 remote_ip 5.5.5.239 89738 username aminvpn 89738 mac 89738 bytes_out 0 89738 bytes_in 0 89738 station_ip 83.122.125.146 89738 port 21 89738 unique_id port 89738 remote_ip 10.8.0.6 89742 username madadi 89742 unique_id port 89742 terminate_cause Lost-Carrier 89742 bytes_out 52941 89742 bytes_in 315837 89742 station_ip 5.119.72.215 89742 port 15728710 89742 nas_port_type Virtual 89742 remote_ip 5.5.5.233 89746 username mahdavi 89746 kill_reason Relative expiration date has reached 89746 unique_id port 89746 bytes_out 0 89746 bytes_in 0 89746 station_ip 83.122.73.79 89746 port 15728717 89746 nas_port_type Virtual 89747 username ahmadipour 89747 unique_id port 89747 terminate_cause User-Request 89747 bytes_out 0 89747 bytes_in 0 89747 station_ip 83.123.46.208 89747 port 15728719 89747 nas_port_type Virtual 89747 remote_ip 5.5.5.228 89736 bytes_out 0 89736 bytes_in 0 89736 station_ip 83.123.116.178 89736 port 21 89736 unique_id port 89736 remote_ip 10.8.0.6 89740 username shahnaz 89740 kill_reason Relative expiration date has reached 89740 unique_id port 89740 bytes_out 0 89740 bytes_in 0 89740 station_ip 5.120.109.184 89740 port 15728711 89740 nas_port_type Virtual 89750 username aminvpn 89750 unique_id port 89750 terminate_cause Lost-Carrier 89750 bytes_out 6579491 89750 bytes_in 123608267 89750 station_ip 5.120.141.168 89750 port 15728714 89750 nas_port_type Virtual 89750 remote_ip 5.5.5.231 89751 username arman 89751 unique_id port 89751 terminate_cause Lost-Carrier 89751 bytes_out 9778081 89751 bytes_in 129414190 89751 station_ip 5.119.232.173 89751 port 15728692 89751 nas_port_type Virtual 89751 remote_ip 5.5.5.240 89754 username caferibar 89754 unique_id port 89754 terminate_cause User-Request 89754 bytes_out 250571 89754 bytes_in 2567080 89754 station_ip 83.123.75.221 89754 port 15728726 89754 nas_port_type Virtual 89754 remote_ip 5.5.5.222 89761 username ahmadi 89761 unique_id port 89761 terminate_cause User-Request 89761 bytes_out 17675 89761 bytes_in 85411 89761 station_ip 113.203.101.188 89761 port 15728731 89761 nas_port_type Virtual 89761 remote_ip 5.5.5.218 89767 username zamanialireza 89767 unique_id port 89767 terminate_cause User-Request 89767 bytes_out 8349419 89767 bytes_in 46403743 89767 station_ip 37.129.20.106 89767 port 15728735 89767 nas_port_type Virtual 89767 remote_ip 5.5.5.215 89768 username asadi 89768 unique_id port 89768 terminate_cause User-Request 89768 bytes_out 248530 89768 bytes_in 3337422 89768 station_ip 113.203.70.20 89768 port 15728738 89768 nas_port_type Virtual 89768 remote_ip 5.5.5.213 89774 username caferibar 89774 unique_id port 89774 terminate_cause User-Request 89774 bytes_out 27540 89774 bytes_in 77297 89774 station_ip 83.122.123.91 89774 port 15728747 89774 nas_port_type Virtual 89774 remote_ip 5.5.5.212 89790 username zamanialireza 89790 unique_id port 89790 terminate_cause Lost-Carrier 89790 bytes_out 2603718 89790 bytes_in 96387810 89790 station_ip 5.119.252.56 89790 port 15728763 89790 nas_port_type Virtual 89790 remote_ip 5.5.5.203 89793 username ahmadipour 89793 unique_id port 89793 terminate_cause Lost-Carrier 89793 bytes_out 86867074 89793 bytes_in 47796538 89793 station_ip 83.123.47.144 89793 port 15728762 89793 nas_port_type Virtual 89793 remote_ip 5.5.5.204 89797 username forozande 89797 unique_id port 89797 terminate_cause User-Request 89797 bytes_out 128819 89797 bytes_in 1360516 89797 station_ip 83.123.187.47 89797 port 15728770 89797 nas_port_type Virtual 89797 remote_ip 5.5.5.209 89798 username forozande 89798 unique_id port 89798 terminate_cause User-Request 89798 bytes_out 115017 89798 bytes_in 131093 89798 station_ip 83.123.187.47 89798 port 15728771 89798 nas_port_type Virtual 89798 remote_ip 5.5.5.209 89804 username forozande 89804 unique_id port 89804 terminate_cause User-Request 89804 bytes_out 11659 89804 bytes_in 30645 89804 station_ip 83.123.187.47 89804 port 15728778 89804 nas_port_type Virtual 89804 remote_ip 5.5.5.209 89806 username forozande 89806 unique_id port 89806 terminate_cause User-Request 89806 bytes_out 87381 89806 bytes_in 393339 89806 station_ip 83.123.187.47 89806 port 15728780 89806 nas_port_type Virtual 89806 remote_ip 5.5.5.209 89807 username forozande 89807 unique_id port 89807 terminate_cause User-Request 89807 bytes_out 18269 89807 bytes_in 118083 89807 station_ip 37.129.206.39 89807 port 15728781 89807 nas_port_type Virtual 89807 remote_ip 5.5.5.199 89809 username heydari 89809 unique_id port 89745 nas_port_type Virtual 89749 username caferibar 89749 unique_id port 89749 terminate_cause User-Request 89749 bytes_out 247193 89749 bytes_in 1829440 89749 station_ip 37.27.11.111 89749 port 15728720 89749 nas_port_type Virtual 89749 remote_ip 5.5.5.227 89756 username ksrkrgr 89756 unique_id port 89756 terminate_cause User-Request 89756 bytes_out 1193524 89756 bytes_in 15048889 89756 station_ip 2.184.5.128 89756 port 15728727 89756 nas_port_type Virtual 89756 remote_ip 5.5.5.221 89763 username mahbobeh 89763 unique_id port 89763 terminate_cause Lost-Carrier 89763 bytes_out 100086 89763 bytes_in 120344 89763 station_ip 37.129.244.237 89763 port 15728733 89763 nas_port_type Virtual 89763 remote_ip 5.5.5.242 89765 username aminvpn 89765 mac 89765 bytes_out 934582 89765 bytes_in 3176135 89765 station_ip 83.123.116.178 89765 port 21 89765 unique_id port 89765 remote_ip 10.8.0.6 89769 username zamanialireza 89769 unique_id port 89769 terminate_cause User-Request 89769 bytes_out 0 89769 bytes_in 0 89769 station_ip 37.129.20.106 89769 port 15728739 89769 nas_port_type Virtual 89769 remote_ip 5.5.5.215 89771 username jamali 89771 unique_id port 89771 terminate_cause User-Request 89771 bytes_out 131753 89771 bytes_in 1252690 89771 station_ip 83.123.251.145 89771 port 15728744 89771 nas_port_type Virtual 89771 remote_ip 5.5.5.211 89773 username caferibar 89773 unique_id port 89773 terminate_cause User-Request 89773 bytes_out 37834 89773 bytes_in 655029 89773 station_ip 89.47.157.74 89773 port 15728745 89773 nas_port_type Virtual 89773 remote_ip 5.5.5.210 89776 username zamanialireza 89776 unique_id port 89776 terminate_cause User-Request 89776 bytes_out 0 89776 bytes_in 0 89776 station_ip 37.129.20.106 89776 port 15728752 89776 nas_port_type Virtual 89776 remote_ip 5.5.5.215 89782 username caferibar 89782 kill_reason Maximum check online fails reached 89782 unique_id port 89782 bytes_out 72180 89782 bytes_in 825273 89782 station_ip 89.41.220.17 89782 port 15728756 89782 nas_port_type Virtual 89782 remote_ip 5.5.5.207 89783 username caferibar 89783 unique_id port 89783 terminate_cause Lost-Carrier 89783 bytes_out 160473 89783 bytes_in 3915347 89783 station_ip 89.47.157.74 89783 port 15728755 89783 nas_port_type Virtual 89783 remote_ip 5.5.5.210 89786 username alinezhad 89786 unique_id port 89786 terminate_cause User-Request 89786 bytes_out 0 89786 bytes_in 0 89786 station_ip 5.215.228.35 89786 port 15728760 89786 nas_port_type Virtual 89786 remote_ip 5.5.5.205 89794 username asadi 89794 unique_id port 89794 terminate_cause User-Request 89794 bytes_out 32269 89794 bytes_in 276486 89794 station_ip 113.203.70.20 89794 port 15728767 89794 nas_port_type Virtual 89794 remote_ip 5.5.5.213 89799 username jamali 89799 unique_id port 89799 terminate_cause User-Request 89799 bytes_out 192501 89799 bytes_in 3001855 89799 station_ip 83.122.8.188 89799 port 15728772 89799 nas_port_type Virtual 89799 remote_ip 5.5.5.201 89816 username forozande 89816 unique_id port 89816 terminate_cause User-Request 89816 bytes_out 12947 89816 bytes_in 36816 89816 station_ip 83.123.12.149 89816 port 15728788 89816 nas_port_type Virtual 89816 remote_ip 5.5.5.196 89817 username forozande 89817 unique_id port 89817 terminate_cause User-Request 89817 bytes_out 21168 89817 bytes_in 123876 89817 station_ip 83.123.12.149 89817 port 15728789 89817 nas_port_type Virtual 89817 remote_ip 5.5.5.196 89818 username musanejad 89818 unique_id port 89818 terminate_cause User-Request 89818 bytes_out 1546904 89818 bytes_in 11665711 89818 station_ip 5.119.45.243 89818 port 15728776 89818 nas_port_type Virtual 89748 unique_id port 89748 bytes_out 0 89748 bytes_in 0 89748 station_ip 5.120.109.184 89748 port 15728721 89748 nas_port_type Virtual 89752 username heydari 89752 unique_id port 89752 terminate_cause User-Request 89752 bytes_out 364711 89752 bytes_in 1586975 89752 station_ip 5.119.11.246 89752 port 15728722 89752 nas_port_type Virtual 89752 remote_ip 5.5.5.226 89758 username forozande 89758 unique_id port 89758 terminate_cause User-Request 89758 bytes_out 24821 89758 bytes_in 44072 89758 station_ip 83.122.253.27 89758 port 15728729 89758 nas_port_type Virtual 89758 remote_ip 5.5.5.219 89759 username caferibar 89759 unique_id port 89759 terminate_cause Lost-Carrier 89759 bytes_out 1692337 89759 bytes_in 39552386 89759 station_ip 5.200.125.209 89759 port 15728724 89759 nas_port_type Virtual 89759 remote_ip 5.5.5.224 89760 username caferibar 89760 unique_id port 89760 terminate_cause Lost-Carrier 89760 bytes_out 3750328 89760 bytes_in 85556884 89760 station_ip 94.24.16.17 89760 port 15728715 89760 nas_port_type Virtual 89760 remote_ip 5.5.5.230 89762 username zamanialireza 89762 unique_id port 89762 terminate_cause User-Request 89762 bytes_out 0 89762 bytes_in 0 89762 station_ip 37.129.186.212 89762 port 15728732 89762 nas_port_type Virtual 89762 remote_ip 5.5.5.217 89764 username alinezhad 89764 unique_id port 89764 terminate_cause User-Request 89764 bytes_out 116313 89764 bytes_in 272060 89764 station_ip 5.216.162.13 89764 port 15728734 89764 nas_port_type Virtual 89764 remote_ip 5.5.5.216 89770 username caferibar 89770 unique_id port 89770 terminate_cause User-Request 89770 bytes_out 99679 89770 bytes_in 448060 89770 station_ip 83.122.123.91 89770 port 15728740 89770 nas_port_type Virtual 89770 remote_ip 5.5.5.212 89775 username forozande 89775 unique_id port 89775 terminate_cause User-Request 89775 bytes_out 107985 89775 bytes_in 176076 89775 station_ip 83.123.187.47 89775 port 15728749 89775 nas_port_type Virtual 89775 remote_ip 5.5.5.209 89777 username jamali 89777 unique_id port 89777 terminate_cause User-Request 89777 bytes_out 525670 89777 bytes_in 13939299 89777 station_ip 83.123.251.145 89777 port 15728750 89777 nas_port_type Virtual 89777 remote_ip 5.5.5.211 89784 username caferibar 89784 unique_id port 89784 terminate_cause Lost-Carrier 89784 bytes_out 931566 89784 bytes_in 16653451 89784 station_ip 89.47.157.74 89784 port 15728751 89784 nas_port_type Virtual 89784 remote_ip 5.5.5.208 89785 username forozande 89785 unique_id port 89785 terminate_cause User-Request 89785 bytes_out 76867 89785 bytes_in 1462530 89785 station_ip 83.123.187.47 89785 port 15728759 89785 nas_port_type Virtual 89785 remote_ip 5.5.5.209 89787 username alinezhad 89787 unique_id port 89787 terminate_cause User-Request 89787 bytes_out 0 89787 bytes_in 0 89787 station_ip 5.215.228.35 89787 port 15728761 89787 nas_port_type Virtual 89787 remote_ip 5.5.5.205 89788 username forozande 89788 unique_id port 89788 terminate_cause User-Request 89788 bytes_out 65829 89788 bytes_in 700564 89788 station_ip 83.123.187.47 89788 port 15728764 89788 nas_port_type Virtual 89788 remote_ip 5.5.5.209 89791 username caferibar 89791 unique_id port 89791 terminate_cause Lost-Carrier 89791 bytes_out 2470835 89791 bytes_in 44284858 89791 station_ip 89.41.220.17 89791 port 15728758 89791 nas_port_type Virtual 89791 remote_ip 5.5.5.206 89792 username asadi 89792 unique_id port 89792 terminate_cause User-Request 89792 bytes_out 426106 89792 bytes_in 14946460 89792 station_ip 113.203.70.20 89792 port 15728766 89792 nas_port_type Virtual 89792 remote_ip 5.5.5.213 89795 username forozande 89795 unique_id port 89753 username forozande 89753 unique_id port 89753 terminate_cause User-Request 89753 bytes_out 134048 89753 bytes_in 623768 89753 station_ip 37.129.223.142 89753 port 15728725 89753 nas_port_type Virtual 89753 remote_ip 5.5.5.223 89755 username madadi 89755 unique_id port 89755 terminate_cause Lost-Carrier 89755 bytes_out 404235 89755 bytes_in 2789323 89755 station_ip 5.120.148.75 89755 port 15728723 89755 nas_port_type Virtual 89755 remote_ip 5.5.5.225 89757 username amirabbas 89757 unique_id port 89757 terminate_cause Lost-Carrier 89757 bytes_out 47883299 89757 bytes_in 1435521867 89757 station_ip 31.59.34.174 89757 port 15728699 89757 nas_port_type Virtual 89757 remote_ip 5.5.5.241 89766 username mammad 89766 unique_id port 89766 terminate_cause User-Request 89766 bytes_out 3139677 89766 bytes_in 28178104 89766 station_ip 78.39.29.39 89766 port 15728730 89766 nas_port_type Virtual 89766 remote_ip 5.5.5.238 89772 username caferibar 89772 unique_id port 89772 terminate_cause User-Request 89772 bytes_out 38754 89772 bytes_in 114943 89772 station_ip 83.122.123.91 89772 port 15728746 89772 nas_port_type Virtual 89772 remote_ip 5.5.5.212 89778 username amir 89778 unique_id port 89778 terminate_cause Lost-Carrier 89778 bytes_out 4373285 89778 bytes_in 32549345 89778 station_ip 46.225.213.211 89778 port 15728718 89778 nas_port_type Virtual 89778 remote_ip 5.5.5.229 89779 username caferibar 89779 unique_id port 89779 terminate_cause Lost-Carrier 89779 bytes_out 526003 89779 bytes_in 18900175 89779 station_ip 94.24.16.17 89779 port 15728736 89779 nas_port_type Virtual 89779 remote_ip 5.5.5.230 89780 username caferibar 89780 unique_id port 89780 terminate_cause User-Request 89780 bytes_out 276075 89780 bytes_in 7587074 89780 station_ip 89.47.157.74 89780 port 15728748 89780 nas_port_type Virtual 89780 remote_ip 5.5.5.210 89781 username amirabbas 89781 unique_id port 89781 terminate_cause User-Request 89781 bytes_out 741047 89781 bytes_in 9734238 89781 station_ip 31.56.153.144 89781 port 15728737 89781 nas_port_type Virtual 89781 remote_ip 5.5.5.214 89789 username aminvpn 89789 mac 89789 bytes_out 0 89789 bytes_in 0 89789 station_ip 83.123.116.178 89789 port 21 89789 unique_id port 89789 remote_ip 10.8.0.6 89796 username mammad 89796 unique_id port 89796 terminate_cause User-Request 89796 bytes_out 3099865 89796 bytes_in 21887653 89796 station_ip 78.39.29.39 89796 port 15728765 89796 nas_port_type Virtual 89796 remote_ip 5.5.5.238 89801 username forozande 89801 unique_id port 89801 terminate_cause User-Request 89801 bytes_out 26432 89801 bytes_in 68600 89801 station_ip 83.123.187.47 89801 port 15728775 89801 nas_port_type Virtual 89801 remote_ip 5.5.5.209 89803 username amirabbas 89803 unique_id port 89803 terminate_cause User-Request 89803 bytes_out 18027714 89803 bytes_in 395501598 89803 station_ip 31.56.153.144 89803 port 15728757 89803 nas_port_type Virtual 89803 remote_ip 5.5.5.214 89808 username forozande 89808 unique_id port 89808 terminate_cause User-Request 89808 bytes_out 62852 89808 bytes_in 1909445 89808 station_ip 37.129.206.39 89808 port 15728782 89808 nas_port_type Virtual 89808 remote_ip 5.5.5.199 89811 username madadi 89811 unique_id port 89811 terminate_cause Lost-Carrier 89811 bytes_out 999816 89811 bytes_in 12931806 89811 station_ip 5.119.250.27 89811 port 15728769 89811 nas_port_type Virtual 89811 remote_ip 5.5.5.202 89812 username forozande 89812 unique_id port 89812 terminate_cause User-Request 89812 bytes_out 35479 89812 bytes_in 508971 89812 station_ip 83.122.179.20 89812 port 15728785 89812 nas_port_type Virtual 89812 remote_ip 5.5.5.197 89795 terminate_cause User-Request 89795 bytes_out 89833 89795 bytes_in 913098 89795 station_ip 83.123.187.47 89795 port 15728768 89795 nas_port_type Virtual 89795 remote_ip 5.5.5.209 89800 username musanejad 89800 unique_id port 89800 terminate_cause User-Request 89800 bytes_out 0 89800 bytes_in 0 89800 station_ip 5.119.45.243 89800 port 15728774 89800 nas_port_type Virtual 89800 remote_ip 5.5.5.200 89802 username forozande 89802 unique_id port 89802 terminate_cause User-Request 89802 bytes_out 23796 89802 bytes_in 39513 89802 station_ip 83.123.187.47 89802 port 15728777 89802 nas_port_type Virtual 89802 remote_ip 5.5.5.209 89805 username forozande 89805 unique_id port 89805 terminate_cause User-Request 89805 bytes_out 41497 89805 bytes_in 174829 89805 station_ip 83.123.187.47 89805 port 15728779 89805 nas_port_type Virtual 89805 remote_ip 5.5.5.209 89813 username ksrkrgr 89813 unique_id port 89813 terminate_cause User-Request 89813 bytes_out 1117464 89813 bytes_in 208476 89813 station_ip 2.184.5.128 89813 port 15728786 89813 nas_port_type Virtual 89813 remote_ip 5.5.5.221 89814 username forozande 89814 unique_id port 89814 terminate_cause User-Request 89814 bytes_out 54401 89814 bytes_in 138180 89814 station_ip 83.123.12.149 89814 port 15728787 89814 nas_port_type Virtual 89814 remote_ip 5.5.5.196 89819 username kamali 89819 unique_id port 89819 terminate_cause User-Request 89819 bytes_out 88245 89819 bytes_in 141286 89819 station_ip 83.123.45.85 89819 port 15728791 89819 nas_port_type Virtual 89819 remote_ip 5.5.5.195 89820 username shahnaz 89820 kill_reason Relative expiration date has reached 89820 unique_id port 89820 bytes_out 0 89820 bytes_in 0 89820 station_ip 5.120.16.102 89820 port 15728794 89820 nas_port_type Virtual 89823 username asadi 89823 unique_id port 89823 terminate_cause User-Request 89823 bytes_out 239717 89823 bytes_in 7153269 89823 station_ip 83.122.87.219 89823 port 15728795 89823 nas_port_type Virtual 89823 remote_ip 5.5.5.193 89827 username caferibar 89827 unique_id port 89827 terminate_cause User-Request 89827 bytes_out 245927 89827 bytes_in 2116627 89827 station_ip 83.122.116.160 89827 port 15728800 89827 nas_port_type Virtual 89827 remote_ip 5.5.5.191 89836 username forozande 89836 unique_id port 89836 terminate_cause User-Request 89836 bytes_out 15488 89836 bytes_in 26574 89836 station_ip 83.123.192.182 89836 port 15728808 89836 nas_port_type Virtual 89836 remote_ip 5.5.5.186 89839 username ahmadi 89839 unique_id port 89839 terminate_cause User-Request 89839 bytes_out 93919 89839 bytes_in 608017 89839 station_ip 37.129.81.219 89839 port 15728810 89839 nas_port_type Virtual 89839 remote_ip 5.5.5.184 89841 username forozande 89841 unique_id port 89841 terminate_cause User-Request 89841 bytes_out 13819 89841 bytes_in 23358 89841 station_ip 83.123.192.182 89841 port 15728814 89841 nas_port_type Virtual 89841 remote_ip 5.5.5.186 89845 username forozande 89845 unique_id port 89845 terminate_cause User-Request 89845 bytes_out 7995 89845 bytes_in 31104 89845 station_ip 83.123.192.182 89845 port 15728817 89845 nas_port_type Virtual 89845 remote_ip 5.5.5.186 89850 username asadi 89850 unique_id port 89850 terminate_cause User-Request 89850 bytes_out 415712 89850 bytes_in 8816376 89850 station_ip 83.122.198.208 89850 port 15728821 89850 nas_port_type Virtual 89850 remote_ip 5.5.5.181 89853 username asadi 89853 unique_id port 89853 terminate_cause User-Request 89853 bytes_out 264240 89853 bytes_in 12516327 89853 station_ip 83.122.198.208 89853 port 15728822 89853 nas_port_type Virtual 89853 remote_ip 5.5.5.181 89862 username caferibar 89862 unique_id port 89809 terminate_cause User-Request 89809 bytes_out 321379 89809 bytes_in 3356869 89809 station_ip 5.119.11.246 89809 port 15728773 89809 nas_port_type Virtual 89809 remote_ip 5.5.5.226 89810 username forozande 89810 unique_id port 89810 terminate_cause User-Request 89810 bytes_out 15842 89810 bytes_in 60851 89810 station_ip 37.129.206.39 89810 port 15728784 89810 nas_port_type Virtual 89810 remote_ip 5.5.5.199 89815 username aminvpn 89815 mac 89815 bytes_out 0 89815 bytes_in 0 89815 station_ip 83.123.116.178 89815 port 23 89815 unique_id port 89815 remote_ip 10.8.0.6 89822 username asadi 89822 unique_id port 89822 terminate_cause User-Request 89822 bytes_out 47643 89822 bytes_in 1053877 89822 station_ip 83.122.87.219 89822 port 15728793 89822 nas_port_type Virtual 89822 remote_ip 5.5.5.193 89824 username asadi 89824 unique_id port 89824 terminate_cause User-Request 89824 bytes_out 268917 89824 bytes_in 9066457 89824 station_ip 83.122.87.219 89824 port 15728796 89824 nas_port_type Virtual 89824 remote_ip 5.5.5.193 89844 username forozande 89844 unique_id port 89844 terminate_cause User-Request 89844 bytes_out 94987 89844 bytes_in 381129 89844 station_ip 83.123.192.182 89844 port 15728816 89844 nas_port_type Virtual 89844 remote_ip 5.5.5.186 89848 username asadi 89848 unique_id port 89848 terminate_cause User-Request 89848 bytes_out 257976 89848 bytes_in 3187052 89848 station_ip 83.122.198.208 89848 port 15728819 89848 nas_port_type Virtual 89848 remote_ip 5.5.5.181 89851 username arman 89851 unique_id port 89851 terminate_cause Lost-Carrier 89851 bytes_out 6276461 89851 bytes_in 177980146 89851 station_ip 5.119.197.212 89851 port 15728799 89851 nas_port_type Virtual 89851 remote_ip 5.5.5.190 89855 username caferibar 89855 unique_id port 89855 terminate_cause Lost-Carrier 89855 bytes_out 6828245 89855 bytes_in 112134770 89855 station_ip 5.119.142.62 89855 port 15728728 89855 nas_port_type Virtual 89855 remote_ip 5.5.5.220 89859 username alemzadeh 89859 unique_id port 89859 terminate_cause User-Request 89859 bytes_out 0 89859 bytes_in 0 89859 station_ip 83.122.223.7 89859 port 15728829 89859 nas_port_type Virtual 89859 remote_ip 5.5.5.176 89872 username heydarizadeh 89872 unique_id port 89872 terminate_cause Lost-Carrier 89872 bytes_out 1736619 89872 bytes_in 49093622 89872 station_ip 5.119.195.180 89872 port 15728843 89872 nas_port_type Virtual 89872 remote_ip 5.5.5.169 89874 username caferibar 89874 unique_id port 89874 terminate_cause Lost-Carrier 89874 bytes_out 545514 89874 bytes_in 6362058 89874 station_ip 5.120.66.93 89874 port 15728846 89874 nas_port_type Virtual 89874 remote_ip 5.5.5.167 89879 username ahmadi 89879 unique_id port 89879 terminate_cause User-Request 89879 bytes_out 132078 89879 bytes_in 2307453 89879 station_ip 37.129.75.79 89879 port 15728851 89879 nas_port_type Virtual 89879 remote_ip 5.5.5.163 89882 username madadi 89882 unique_id port 89882 terminate_cause Lost-Carrier 89882 bytes_out 764671 89882 bytes_in 3635019 89882 station_ip 5.119.28.66 89882 port 15728848 89882 nas_port_type Virtual 89882 remote_ip 5.5.5.165 89884 username heydarizadeh 89884 unique_id port 89884 terminate_cause Lost-Carrier 89884 bytes_out 489018 89884 bytes_in 10293138 89884 station_ip 5.119.49.21 89884 port 15728854 89884 nas_port_type Virtual 89884 remote_ip 5.5.5.161 89885 username forozande 89885 unique_id port 89885 terminate_cause User-Request 89885 bytes_out 25387 89885 bytes_in 246606 89885 station_ip 37.129.33.145 89885 port 15728858 89885 nas_port_type Virtual 89885 remote_ip 5.5.5.158 89891 username ahmadipour 89891 unique_id port 89818 remote_ip 5.5.5.200 89829 username arabpour 89829 unique_id port 89829 terminate_cause User-Request 89829 bytes_out 0 89829 bytes_in 0 89829 station_ip 188.229.65.118 89829 port 15728801 89829 nas_port_type Virtual 89829 remote_ip 5.5.5.189 89830 username asadi 89830 unique_id port 89830 terminate_cause User-Request 89830 bytes_out 49119 89830 bytes_in 427431 89830 station_ip 83.122.87.219 89830 port 15728802 89830 nas_port_type Virtual 89830 remote_ip 5.5.5.193 89834 username forozande 89834 unique_id port 89834 terminate_cause User-Request 89834 bytes_out 39410 89834 bytes_in 69548 89834 station_ip 83.123.192.182 89834 port 15728806 89834 nas_port_type Virtual 89834 remote_ip 5.5.5.186 89835 username madadi 89835 unique_id port 89835 terminate_cause Lost-Carrier 89835 bytes_out 20572 89835 bytes_in 130867 89835 station_ip 5.119.235.141 89835 port 15728805 89835 nas_port_type Virtual 89835 remote_ip 5.5.5.187 89838 username ahmadipour 89838 unique_id port 89838 terminate_cause Lost-Carrier 89838 bytes_out 1525213 89838 bytes_in 36373388 89838 station_ip 83.123.13.24 89838 port 15728807 89838 nas_port_type Virtual 89838 remote_ip 5.5.5.185 89847 username asadi 89847 unique_id port 89847 terminate_cause User-Request 89847 bytes_out 15501 89847 bytes_in 61809 89847 station_ip 83.122.87.219 89847 port 15728818 89847 nas_port_type Virtual 89847 remote_ip 5.5.5.193 89852 username arabpour 89852 unique_id port 89852 terminate_cause User-Request 89852 bytes_out 0 89852 bytes_in 0 89852 station_ip 204.18.251.97 89852 port 15728823 89852 nas_port_type Virtual 89852 remote_ip 5.5.5.179 89856 username amirabbas 89856 unique_id port 89856 terminate_cause User-Request 89856 bytes_out 2730998 89856 bytes_in 64579901 89856 station_ip 31.56.153.144 89856 port 15728811 89856 nas_port_type Virtual 89856 remote_ip 5.5.5.214 89860 username alemzadeh 89860 unique_id port 89860 terminate_cause User-Request 89860 bytes_out 144263 89860 bytes_in 1812515 89860 station_ip 83.122.223.7 89860 port 15728830 89860 nas_port_type Virtual 89860 remote_ip 5.5.5.176 89864 username caferibar 89864 unique_id port 89864 terminate_cause User-Request 89864 bytes_out 1951414 89864 bytes_in 1167511 89864 station_ip 37.156.59.46 89864 port 15728833 89864 nas_port_type Virtual 89864 remote_ip 5.5.5.174 89868 username arabpour 89868 unique_id port 89868 terminate_cause User-Request 89868 bytes_out 361655 89868 bytes_in 12079014 89868 station_ip 204.18.251.97 89868 port 15728840 89868 nas_port_type Virtual 89868 remote_ip 5.5.5.179 89869 username mahbobeh 89869 unique_id port 89869 terminate_cause Lost-Carrier 89869 bytes_out 861362 89869 bytes_in 1413104 89869 station_ip 83.122.4.52 89869 port 15728824 89869 nas_port_type Virtual 89869 remote_ip 5.5.5.198 89870 username sobhan 89870 unique_id port 89870 terminate_cause Lost-Carrier 89870 bytes_out 979173 89870 bytes_in 8392190 89870 station_ip 5.119.53.243 89870 port 15728841 89870 nas_port_type Virtual 89870 remote_ip 5.5.5.171 89877 username caferibar 89877 unique_id port 89877 terminate_cause User-Request 89877 bytes_out 113402 89877 bytes_in 919825 89877 station_ip 37.156.59.46 89877 port 15728837 89877 nas_port_type Virtual 89877 remote_ip 5.5.5.174 89881 username mahdixz 89881 unique_id port 89881 terminate_cause Lost-Carrier 89881 bytes_out 457175 89881 bytes_in 3722286 89881 station_ip 151.235.104.45 89881 port 15728852 89881 nas_port_type Virtual 89881 remote_ip 5.5.5.162 89886 username asadi 89886 unique_id port 89886 terminate_cause User-Request 89886 bytes_out 115783 89886 bytes_in 2932730 89886 station_ip 83.122.198.208 89886 port 15728859 89821 username forozande 89821 unique_id port 89821 terminate_cause User-Request 89821 bytes_out 34097 89821 bytes_in 199290 89821 station_ip 83.122.236.87 89821 port 15728792 89821 nas_port_type Virtual 89821 remote_ip 5.5.5.194 89825 username forozande 89825 unique_id port 89825 terminate_cause User-Request 89825 bytes_out 17792 89825 bytes_in 30754 89825 station_ip 37.129.208.122 89825 port 15728797 89825 nas_port_type Virtual 89825 remote_ip 5.5.5.192 89826 username caferibar 89826 unique_id port 89826 terminate_cause User-Request 89826 bytes_out 0 89826 bytes_in 0 89826 station_ip 83.122.116.160 89826 port 15728798 89826 nas_port_type Virtual 89826 remote_ip 5.5.5.191 89828 username mammad 89828 unique_id port 89828 terminate_cause User-Request 89828 bytes_out 1412271 89828 bytes_in 11648677 89828 station_ip 78.39.29.39 89828 port 15728790 89828 nas_port_type Virtual 89828 remote_ip 5.5.5.238 89831 username khalili 89831 unique_id port 89831 terminate_cause Lost-Carrier 89831 bytes_out 20538032 89831 bytes_in 132323232 89831 station_ip 5.119.224.103 89831 port 15728654 89831 nas_port_type Virtual 89831 remote_ip 5.5.5.249 89832 username asadi 89832 unique_id port 89832 terminate_cause User-Request 89832 bytes_out 23869 89832 bytes_in 67012 89832 station_ip 83.122.87.219 89832 port 15728803 89832 nas_port_type Virtual 89832 remote_ip 5.5.5.193 89833 username forozande 89833 unique_id port 89833 terminate_cause User-Request 89833 bytes_out 15521 89833 bytes_in 33874 89833 station_ip 83.123.171.128 89833 port 15728804 89833 nas_port_type Virtual 89833 remote_ip 5.5.5.188 89837 username forozande 89837 unique_id port 89837 terminate_cause User-Request 89837 bytes_out 13338 89837 bytes_in 24125 89837 station_ip 83.123.192.182 89837 port 15728809 89837 nas_port_type Virtual 89837 remote_ip 5.5.5.186 89840 username forozande 89840 unique_id port 89840 terminate_cause User-Request 89840 bytes_out 7254 89840 bytes_in 20607 89840 station_ip 83.123.192.182 89840 port 15728812 89840 nas_port_type Virtual 89840 remote_ip 5.5.5.186 89842 username caferibar 89842 unique_id port 89842 terminate_cause User-Request 89842 bytes_out 59786 89842 bytes_in 876291 89842 station_ip 37.129.74.14 89842 port 15728813 89842 nas_port_type Virtual 89842 remote_ip 5.5.5.183 89843 username arabpour 89843 unique_id port 89843 terminate_cause User-Request 89843 bytes_out 0 89843 bytes_in 0 89843 station_ip 89.199.140.214 89843 port 15728815 89843 nas_port_type Virtual 89843 remote_ip 5.5.5.182 89846 username aminvpn 89846 mac 89846 bytes_out 0 89846 bytes_in 0 89846 station_ip 83.123.153.64 89846 port 21 89846 unique_id port 89846 remote_ip 10.8.0.6 89849 username forozande 89849 unique_id port 89849 terminate_cause User-Request 89849 bytes_out 21413 89849 bytes_in 69382 89849 station_ip 113.203.55.185 89849 port 15728820 89849 nas_port_type Virtual 89849 remote_ip 5.5.5.180 89854 username mahbobeh 89854 unique_id port 89854 terminate_cause Lost-Carrier 89854 bytes_out 1631526 89854 bytes_in 25428721 89854 station_ip 83.122.4.52 89854 port 15728783 89854 nas_port_type Virtual 89854 remote_ip 5.5.5.198 89857 username asadi 89857 unique_id port 89857 terminate_cause User-Request 89857 bytes_out 142861 89857 bytes_in 3340843 89857 station_ip 83.122.198.208 89857 port 15728826 89857 nas_port_type Virtual 89857 remote_ip 5.5.5.181 89858 username forozande 89858 unique_id port 89858 terminate_cause User-Request 89858 bytes_out 140988 89858 bytes_in 3014374 89858 station_ip 83.123.89.186 89858 port 15728828 89858 nas_port_type Virtual 89858 remote_ip 5.5.5.177 89861 username mammad 89861 unique_id port 89861 terminate_cause User-Request 89861 bytes_out 865526 89861 bytes_in 3786554 89861 station_ip 78.39.29.39 89861 port 15728827 89861 nas_port_type Virtual 89861 remote_ip 5.5.5.238 89865 username arabpour 89865 unique_id port 89865 terminate_cause User-Request 89865 bytes_out 417744 89865 bytes_in 11847083 89865 station_ip 204.18.251.97 89865 port 15728836 89865 nas_port_type Virtual 89865 remote_ip 5.5.5.179 89866 username forozande 89866 unique_id port 89866 terminate_cause User-Request 89866 bytes_out 53201 89866 bytes_in 137519 89866 station_ip 83.122.185.254 89866 port 15728839 89866 nas_port_type Virtual 89866 remote_ip 5.5.5.172 89867 username aminvpn 89867 unique_id port 89867 terminate_cause Lost-Carrier 89867 bytes_out 282879 89867 bytes_in 4576708 89867 station_ip 5.119.63.248 89867 port 15728838 89867 nas_port_type Virtual 89867 remote_ip 5.5.5.173 89875 username madadi 89875 unique_id port 89875 terminate_cause Lost-Carrier 89875 bytes_out 354026 89875 bytes_in 3166307 89875 station_ip 5.120.137.10 89875 port 15728845 89875 nas_port_type Virtual 89875 remote_ip 5.5.5.168 89876 username alinezhad 89876 unique_id port 89876 terminate_cause User-Request 89876 bytes_out 42448 89876 bytes_in 261530 89876 station_ip 83.123.68.159 89876 port 15728849 89876 nas_port_type Virtual 89876 remote_ip 5.5.5.164 89883 username heydari 89883 unique_id port 89883 terminate_cause User-Request 89883 bytes_out 176080 89883 bytes_in 776189 89883 station_ip 5.119.11.246 89883 port 15728853 89883 nas_port_type Virtual 89883 remote_ip 5.5.5.226 89888 username farhad 89888 unique_id port 89888 terminate_cause Lost-Carrier 89888 bytes_out 115263151 89888 bytes_in 377397457 89888 station_ip 5.120.37.23 89888 port 15728825 89888 nas_port_type Virtual 89888 remote_ip 5.5.5.178 89890 username forozande 89890 unique_id port 89890 terminate_cause User-Request 89890 bytes_out 31444 89890 bytes_in 178814 89890 station_ip 37.129.149.245 89890 port 15728864 89890 nas_port_type Virtual 89890 remote_ip 5.5.5.153 89893 username mammad 89893 unique_id port 89893 terminate_cause User-Request 89893 bytes_out 3130276 89893 bytes_in 47883634 89893 station_ip 78.39.29.39 89893 port 15728855 89893 nas_port_type Virtual 89893 remote_ip 5.5.5.238 89897 username heydarizadeh 89897 unique_id port 89897 terminate_cause Lost-Carrier 89897 bytes_out 415878 89897 bytes_in 6199973 89897 station_ip 5.120.101.64 89897 port 15728857 89897 nas_port_type Virtual 89897 remote_ip 5.5.5.159 89899 username caferibar 89899 unique_id port 89899 terminate_cause User-Request 89899 bytes_out 16403 89899 bytes_in 192606 89899 station_ip 83.122.44.96 89899 port 15728871 89899 nas_port_type Virtual 89899 remote_ip 5.5.5.151 89903 username zamanialireza 89903 unique_id port 89903 terminate_cause User-Request 89903 bytes_out 298 89903 bytes_in 144262 89903 station_ip 94.183.213.166 89903 port 15728873 89903 nas_port_type Virtual 89903 remote_ip 5.5.5.150 89910 username shokokian 89910 kill_reason Maximum check online fails reached 89910 unique_id port 89910 bytes_out 804898 89910 bytes_in 13347775 89910 station_ip 151.238.230.169 89910 port 15728876 89910 nas_port_type Virtual 89910 remote_ip 5.5.5.147 89912 username aminvpn 89912 mac 89912 bytes_out 0 89912 bytes_in 0 89912 station_ip 5.233.70.139 89912 port 21 89912 unique_id port 89912 remote_ip 10.8.0.6 89915 username aminvpn 89915 mac 89915 bytes_out 0 89915 bytes_in 0 89915 station_ip 83.123.164.72 89915 port 21 89915 unique_id port 89915 remote_ip 10.8.0.6 89918 username aminvpn 89918 mac 89918 bytes_out 0 89862 terminate_cause User-Request 89862 bytes_out 0 89862 bytes_in 0 89862 station_ip 37.156.59.46 89862 port 15728832 89862 nas_port_type Virtual 89862 remote_ip 5.5.5.174 89863 username jamali 89863 unique_id port 89863 terminate_cause User-Request 89863 bytes_out 142341 89863 bytes_in 1451770 89863 station_ip 83.122.8.188 89863 port 15728834 89863 nas_port_type Virtual 89863 remote_ip 5.5.5.201 89871 username ksrkrgr 89871 unique_id port 89871 terminate_cause User-Request 89871 bytes_out 3370691 89871 bytes_in 72783063 89871 station_ip 2.184.5.128 89871 port 15728844 89871 nas_port_type Virtual 89871 remote_ip 5.5.5.221 89873 username ahmadipour 89873 unique_id port 89873 terminate_cause Lost-Carrier 89873 bytes_out 551293 89873 bytes_in 10459057 89873 station_ip 83.123.113.128 89873 port 15728847 89873 nas_port_type Virtual 89873 remote_ip 5.5.5.166 89878 username forozande 89878 unique_id port 89878 terminate_cause User-Request 89878 bytes_out 124193 89878 bytes_in 2635940 89878 station_ip 83.122.185.254 89878 port 15728850 89878 nas_port_type Virtual 89878 remote_ip 5.5.5.172 89880 username caferibar 89880 unique_id port 89880 terminate_cause User-Request 89880 bytes_out 27333 89880 bytes_in 459241 89880 station_ip 113.203.95.132 89880 port 15728856 89880 nas_port_type Virtual 89880 remote_ip 5.5.5.160 89887 username alinezhad 89887 unique_id port 89887 terminate_cause User-Request 89887 bytes_out 0 89887 bytes_in 0 89887 station_ip 83.122.48.51 89887 port 15728860 89887 nas_port_type Virtual 89887 remote_ip 5.5.5.157 89900 username aminvpn 89900 mac 89900 bytes_out 308446 89900 bytes_in 818636 89900 station_ip 113.203.96.71 89900 port 21 89900 unique_id port 89900 remote_ip 10.8.0.6 89904 username alinezhad 89904 unique_id port 89904 terminate_cause User-Request 89904 bytes_out 31069 89904 bytes_in 279278 89904 station_ip 83.123.17.223 89904 port 15728875 89904 nas_port_type Virtual 89904 remote_ip 5.5.5.148 89908 username aminvpn 89908 mac 89908 bytes_out 0 89908 bytes_in 0 89908 station_ip 83.123.34.253 89908 port 35 89908 unique_id port 89908 remote_ip 10.8.1.10 89924 username aminvpn 89924 mac 89924 bytes_out 0 89924 bytes_in 0 89924 station_ip 83.123.164.72 89924 port 23 89924 unique_id port 89924 remote_ip 10.8.0.6 89931 username aminvpn 89931 mac 89931 bytes_out 0 89931 bytes_in 0 89931 station_ip 37.129.15.4 89931 port 21 89931 unique_id port 89931 remote_ip 10.8.0.6 89941 username aminvpn 89941 mac 89941 bytes_out 0 89941 bytes_in 0 89941 station_ip 5.119.183.153 89941 port 21 89941 unique_id port 89941 remote_ip 10.8.0.6 89948 username aminvpn 89948 mac 89948 bytes_out 0 89948 bytes_in 0 89948 station_ip 83.123.164.72 89948 port 23 89948 unique_id port 89948 remote_ip 10.8.0.6 89958 username aminvpn 89958 mac 89958 bytes_out 0 89958 bytes_in 0 89958 station_ip 37.129.15.4 89958 port 23 89958 unique_id port 89958 remote_ip 10.8.0.6 89972 username aminvpn 89972 mac 89972 bytes_out 0 89972 bytes_in 0 89972 station_ip 83.123.164.72 89972 port 21 89972 unique_id port 89972 remote_ip 10.8.0.6 89978 username aminvpn 89978 mac 89978 bytes_out 0 89978 bytes_in 0 89978 station_ip 83.123.164.72 89978 port 21 89978 unique_id port 89978 remote_ip 10.8.0.6 89982 username aminvpn 89982 mac 89982 bytes_out 0 89982 bytes_in 0 89982 station_ip 83.123.164.72 89982 port 21 89982 unique_id port 89982 remote_ip 10.8.0.6 89985 username aminvpn 89886 nas_port_type Virtual 89886 remote_ip 5.5.5.181 89889 username caferibar 89889 unique_id port 89889 terminate_cause User-Request 89889 bytes_out 47249 89889 bytes_in 637547 89889 station_ip 83.123.148.34 89889 port 15728863 89889 nas_port_type Virtual 89889 remote_ip 5.5.5.154 89892 username forozande 89892 unique_id port 89892 terminate_cause User-Request 89892 bytes_out 37932 89892 bytes_in 680193 89892 station_ip 37.129.149.245 89892 port 15728866 89892 nas_port_type Virtual 89892 remote_ip 5.5.5.153 89894 username forozande 89894 unique_id port 89894 terminate_cause User-Request 89894 bytes_out 59645 89894 bytes_in 711098 89894 station_ip 37.129.149.245 89894 port 15728867 89894 nas_port_type Virtual 89894 remote_ip 5.5.5.153 89895 username caferibar 89895 unique_id port 89895 terminate_cause User-Request 89895 bytes_out 842649 89895 bytes_in 7412566 89895 station_ip 5.119.142.62 89895 port 15728868 89895 nas_port_type Virtual 89895 remote_ip 5.5.5.220 89898 username caferibar 89898 unique_id port 89898 terminate_cause User-Request 89898 bytes_out 0 89898 bytes_in 0 89898 station_ip 83.122.44.96 89898 port 15728870 89898 nas_port_type Virtual 89898 remote_ip 5.5.5.151 89905 username sobhan 89905 unique_id port 89905 terminate_cause User-Request 89905 bytes_out 6251585 89905 bytes_in 83071920 89905 station_ip 31.56.112.142 89905 port 15728861 89905 nas_port_type Virtual 89905 remote_ip 5.5.5.156 89906 username arman 89906 unique_id port 89906 terminate_cause Lost-Carrier 89906 bytes_out 15846537 89906 bytes_in 168635091 89906 station_ip 5.119.91.53 89906 port 15728831 89906 nas_port_type Virtual 89906 remote_ip 5.5.5.175 89909 username forozande 89909 unique_id port 89909 terminate_cause User-Request 89909 bytes_out 80512 89909 bytes_in 678506 89909 station_ip 37.129.239.122 89909 port 15728879 89909 nas_port_type Virtual 89909 remote_ip 5.5.5.146 89913 username aminvpn 89913 unique_id port 89913 terminate_cause User-Request 89913 bytes_out 969937 89913 bytes_in 7173263 89913 station_ip 5.119.190.148 89913 port 15728842 89913 nas_port_type Virtual 89913 remote_ip 5.5.5.170 89916 username aminvpn 89916 mac 89916 bytes_out 0 89916 bytes_in 0 89916 station_ip 5.119.183.153 89916 port 23 89916 unique_id port 89916 remote_ip 10.8.0.6 89919 username aminvpn 89919 mac 89919 bytes_out 0 89919 bytes_in 0 89919 station_ip 83.123.164.72 89919 port 21 89919 unique_id port 89919 remote_ip 10.8.0.6 89920 username aminvpn 89920 mac 89920 bytes_out 0 89920 bytes_in 0 89920 station_ip 5.119.183.153 89920 port 23 89920 unique_id port 89920 remote_ip 10.8.0.6 89922 username aminvpn 89922 mac 89922 bytes_out 0 89922 bytes_in 0 89922 station_ip 37.129.15.4 89922 port 23 89922 unique_id port 89922 remote_ip 10.8.0.6 89927 username aminvpn 89927 mac 89927 bytes_out 0 89927 bytes_in 0 89927 station_ip 83.123.164.72 89927 port 21 89927 unique_id port 89927 remote_ip 10.8.0.6 89929 username aminvpn 89929 mac 89929 bytes_out 0 89929 bytes_in 0 89929 station_ip 5.119.183.153 89929 port 21 89929 unique_id port 89929 remote_ip 10.8.0.6 89934 username aminvpn 89934 mac 89934 bytes_out 0 89934 bytes_in 0 89934 station_ip 37.129.15.4 89934 port 23 89934 unique_id port 89934 remote_ip 10.8.0.6 89936 username aminvpn 89936 mac 89936 bytes_out 0 89936 bytes_in 0 89936 station_ip 83.123.164.72 89936 port 23 89936 unique_id port 89936 remote_ip 10.8.0.6 89937 username aminvpn 89937 mac 89937 bytes_out 0 89891 terminate_cause Lost-Carrier 89891 bytes_out 259859 89891 bytes_in 4888523 89891 station_ip 83.123.16.240 89891 port 15728862 89891 nas_port_type Virtual 89891 remote_ip 5.5.5.155 89896 username caferibar 89896 unique_id port 89896 terminate_cause User-Request 89896 bytes_out 103489 89896 bytes_in 1088888 89896 station_ip 37.156.59.46 89896 port 15728869 89896 nas_port_type Virtual 89896 remote_ip 5.5.5.174 89901 username asadi 89901 unique_id port 89901 terminate_cause User-Request 89901 bytes_out 79275 89901 bytes_in 1068314 89901 station_ip 83.122.198.208 89901 port 15728872 89901 nas_port_type Virtual 89901 remote_ip 5.5.5.181 89902 username avaanna 89902 unique_id port 89902 terminate_cause User-Request 89902 bytes_out 118197 89902 bytes_in 507870 89902 station_ip 83.123.65.126 89902 port 15728874 89902 nas_port_type Virtual 89902 remote_ip 5.5.5.149 89907 username amirabbas 89907 unique_id port 89907 terminate_cause User-Request 89907 bytes_out 44804726 89907 bytes_in 942600003 89907 station_ip 31.56.153.144 89907 port 15728835 89907 nas_port_type Virtual 89907 remote_ip 5.5.5.214 89911 username aminvpn 89911 mac 89911 bytes_out 317319 89911 bytes_in 1656669 89911 station_ip 83.123.34.253 89911 port 35 89911 unique_id port 89911 remote_ip 10.8.1.10 89914 username aminvpn 89914 mac 89914 bytes_out 0 89914 bytes_in 0 89914 station_ip 5.119.183.153 89914 port 23 89914 unique_id port 89914 remote_ip 10.8.0.6 89917 username aminvpn 89917 mac 89917 bytes_out 0 89917 bytes_in 0 89917 station_ip 83.123.164.72 89917 port 21 89917 unique_id port 89917 remote_ip 10.8.0.6 89923 username aminvpn 89923 mac 89923 bytes_out 0 89923 bytes_in 0 89923 station_ip 5.119.183.153 89923 port 21 89923 unique_id port 89923 remote_ip 10.8.0.6 89925 username aminvpn 89925 mac 89925 bytes_out 0 89925 bytes_in 0 89925 station_ip 37.129.15.4 89925 port 21 89925 unique_id port 89925 remote_ip 10.8.0.6 89930 username aminvpn 89930 mac 89930 bytes_out 0 89930 bytes_in 0 89930 station_ip 83.123.164.72 89930 port 23 89930 unique_id port 89930 remote_ip 10.8.0.6 89932 username aminvpn 89932 mac 89932 bytes_out 0 89932 bytes_in 0 89932 station_ip 5.119.183.153 89932 port 23 89932 unique_id port 89932 remote_ip 10.8.0.6 89940 username aminvpn 89940 mac 89940 bytes_out 0 89940 bytes_in 0 89940 station_ip 37.129.15.4 89940 port 23 89940 unique_id port 89940 remote_ip 10.8.0.6 89942 username aminvpn 89942 mac 89942 bytes_out 0 89942 bytes_in 0 89942 station_ip 83.123.164.72 89942 port 23 89942 unique_id port 89942 remote_ip 10.8.0.6 89947 username aminvpn 89947 mac 89947 bytes_out 0 89947 bytes_in 0 89947 station_ip 5.119.183.153 89947 port 21 89947 unique_id port 89947 remote_ip 10.8.0.6 89949 username aminvpn 89949 mac 89949 bytes_out 0 89949 bytes_in 0 89949 station_ip 37.129.15.4 89949 port 21 89949 unique_id port 89949 remote_ip 10.8.0.6 89957 username aminvpn 89957 mac 89957 bytes_out 0 89957 bytes_in 0 89957 station_ip 83.123.164.72 89957 port 21 89957 unique_id port 89957 remote_ip 10.8.0.6 89959 username aminvpn 89959 mac 89959 bytes_out 0 89959 bytes_in 0 89959 station_ip 5.119.183.153 89959 port 21 89959 unique_id port 89959 remote_ip 10.8.0.6 89968 username aminvpn 89968 unique_id port 89968 terminate_cause User-Request 89968 bytes_out 128235 89968 bytes_in 671437 89918 bytes_in 0 89918 station_ip 5.119.183.153 89918 port 23 89918 unique_id port 89918 remote_ip 10.8.0.6 89921 username aminvpn 89921 mac 89921 bytes_out 0 89921 bytes_in 0 89921 station_ip 83.123.164.72 89921 port 21 89921 unique_id port 89921 remote_ip 10.8.0.6 89926 username aminvpn 89926 mac 89926 bytes_out 0 89926 bytes_in 0 89926 station_ip 5.119.183.153 89926 port 23 89926 unique_id port 89926 remote_ip 10.8.0.6 89928 username aminvpn 89928 mac 89928 bytes_out 0 89928 bytes_in 0 89928 station_ip 37.129.15.4 89928 port 23 89928 unique_id port 89928 remote_ip 10.8.0.6 89933 username aminvpn 89933 mac 89933 bytes_out 0 89933 bytes_in 0 89933 station_ip 83.123.164.72 89933 port 21 89933 unique_id port 89933 remote_ip 10.8.0.6 89935 username aminvpn 89935 mac 89935 bytes_out 0 89935 bytes_in 0 89935 station_ip 5.119.183.153 89935 port 21 89935 unique_id port 89935 remote_ip 10.8.0.6 89938 username aminvpn 89938 mac 89938 bytes_out 0 89938 bytes_in 0 89938 station_ip 5.119.183.153 89938 port 23 89938 unique_id port 89938 remote_ip 10.8.0.6 89943 username aminvpn 89943 mac 89943 bytes_out 0 89943 bytes_in 0 89943 station_ip 37.129.15.4 89943 port 21 89943 unique_id port 89943 remote_ip 10.8.0.6 89945 username aminvpn 89945 mac 89945 bytes_out 0 89945 bytes_in 0 89945 station_ip 83.123.164.72 89945 port 21 89945 unique_id port 89945 remote_ip 10.8.0.6 89950 username aminvpn 89950 mac 89950 bytes_out 0 89950 bytes_in 0 89950 station_ip 5.119.183.153 89950 port 23 89950 unique_id port 89950 remote_ip 10.8.0.6 89952 username aminvpn 89952 mac 89952 bytes_out 0 89952 bytes_in 0 89952 station_ip 37.129.15.4 89952 port 23 89952 unique_id port 89952 remote_ip 10.8.0.6 89953 username aminvpn 89953 mac 89953 bytes_out 0 89953 bytes_in 0 89953 station_ip 5.119.183.153 89953 port 21 89953 unique_id port 89953 remote_ip 10.8.0.6 89955 username aminvpn 89955 mac 89955 bytes_out 0 89955 bytes_in 0 89955 station_ip 37.129.15.4 89955 port 21 89955 unique_id port 89955 remote_ip 10.8.0.6 89960 username aminvpn 89960 mac 89960 bytes_out 0 89960 bytes_in 0 89960 station_ip 83.123.164.72 89960 port 23 89960 unique_id port 89960 remote_ip 10.8.0.6 89962 username aminvpn 89962 mac 89962 bytes_out 0 89962 bytes_in 0 89962 station_ip 5.119.183.153 89962 port 23 89962 unique_id port 89962 remote_ip 10.8.0.6 89963 username aminvpn 89963 mac 89963 bytes_out 0 89963 bytes_in 0 89963 station_ip 83.123.164.72 89963 port 21 89963 unique_id port 89963 remote_ip 10.8.0.6 89967 username aminvpn 89967 mac 89967 bytes_out 0 89967 bytes_in 0 89967 station_ip 83.123.164.72 89967 port 21 89967 unique_id port 89967 remote_ip 10.8.0.6 89969 username aminvpn 89969 mac 89969 bytes_out 0 89969 bytes_in 0 89969 station_ip 5.119.183.153 89969 port 23 89969 unique_id port 89969 remote_ip 10.8.0.6 89971 username aminvpn 89971 mac 89971 bytes_out 0 89971 bytes_in 0 89971 station_ip 5.119.183.153 89971 port 23 89971 unique_id port 89971 remote_ip 10.8.0.6 89974 username aminvpn 89974 mac 89974 bytes_out 0 89974 bytes_in 0 89974 station_ip 83.123.164.72 89974 port 21 89974 unique_id port 89974 remote_ip 10.8.0.6 89981 username aminvpn 89937 bytes_in 0 89937 station_ip 37.129.15.4 89937 port 21 89937 unique_id port 89937 remote_ip 10.8.0.6 89939 username aminvpn 89939 mac 89939 bytes_out 0 89939 bytes_in 0 89939 station_ip 83.123.164.72 89939 port 21 89939 unique_id port 89939 remote_ip 10.8.0.6 89944 username aminvpn 89944 mac 89944 bytes_out 0 89944 bytes_in 0 89944 station_ip 5.119.183.153 89944 port 23 89944 unique_id port 89944 remote_ip 10.8.0.6 89946 username aminvpn 89946 mac 89946 bytes_out 0 89946 bytes_in 0 89946 station_ip 37.129.15.4 89946 port 23 89946 unique_id port 89946 remote_ip 10.8.0.6 89951 username aminvpn 89951 mac 89951 bytes_out 0 89951 bytes_in 0 89951 station_ip 83.123.164.72 89951 port 21 89951 unique_id port 89951 remote_ip 10.8.0.6 89954 username aminvpn 89954 mac 89954 bytes_out 0 89954 bytes_in 0 89954 station_ip 83.123.164.72 89954 port 23 89954 unique_id port 89954 remote_ip 10.8.0.6 89956 username aminvpn 89956 mac 89956 bytes_out 0 89956 bytes_in 0 89956 station_ip 5.119.183.153 89956 port 23 89956 unique_id port 89956 remote_ip 10.8.0.6 89961 username aminvpn 89961 mac 89961 bytes_out 0 89961 bytes_in 0 89961 station_ip 37.129.15.4 89961 port 21 89961 unique_id port 89961 remote_ip 10.8.0.6 89964 username aminvpn 89964 mac 89964 bytes_out 0 89964 bytes_in 0 89964 station_ip 5.119.183.153 89964 port 23 89964 unique_id port 89964 remote_ip 10.8.0.6 89965 username aminvpn 89965 mac 89965 bytes_out 0 89965 bytes_in 0 89965 station_ip 83.123.164.72 89965 port 21 89965 unique_id port 89965 remote_ip 10.8.0.6 89966 username aminvpn 89966 mac 89966 bytes_out 0 89966 bytes_in 0 89966 station_ip 5.119.183.153 89966 port 23 89966 unique_id port 89966 remote_ip 10.8.0.6 89970 username aminvpn 89970 mac 89970 bytes_out 0 89970 bytes_in 0 89970 station_ip 83.123.164.72 89970 port 21 89970 unique_id port 89970 remote_ip 10.8.0.6 89975 username aminvpn 89975 mac 89975 bytes_out 0 89975 bytes_in 0 89975 station_ip 5.119.183.153 89975 port 23 89975 unique_id port 89975 remote_ip 10.8.0.6 89976 username aminvpn 89976 mac 89976 bytes_out 0 89976 bytes_in 0 89976 station_ip 83.123.164.72 89976 port 21 89976 unique_id port 89976 remote_ip 10.8.0.6 89979 username aminvpn 89979 mac 89979 bytes_out 0 89979 bytes_in 0 89979 station_ip 5.119.183.153 89979 port 23 89979 unique_id port 89979 remote_ip 10.8.0.6 89989 username asadi 89989 unique_id port 89989 terminate_cause User-Request 89989 bytes_out 297651 89989 bytes_in 7118600 89989 station_ip 83.123.45.9 89989 port 15728887 89989 nas_port_type Virtual 89989 remote_ip 5.5.5.139 89993 username asadi 89993 unique_id port 89993 terminate_cause User-Request 89993 bytes_out 21814 89993 bytes_in 47683 89993 station_ip 83.123.45.9 89993 port 15728892 89993 nas_port_type Virtual 89993 remote_ip 5.5.5.139 89994 username caferibar 89994 unique_id port 89994 terminate_cause User-Request 89994 bytes_out 10778425 89994 bytes_in 9686314 89994 station_ip 37.156.59.46 89994 port 15728888 89994 nas_port_type Virtual 89994 remote_ip 5.5.5.174 89998 username afarin 89998 unique_id port 89998 terminate_cause User-Request 89998 bytes_out 88571 89998 bytes_in 446470 89998 station_ip 83.122.128.198 89998 port 15728896 89998 nas_port_type Virtual 89998 remote_ip 5.5.5.132 90000 username asadi 90000 unique_id port 89968 station_ip 5.233.70.139 89968 port 15728880 89968 nas_port_type Virtual 89968 remote_ip 5.5.5.145 89973 username aminvpn 89973 mac 89973 bytes_out 0 89973 bytes_in 0 89973 station_ip 5.119.183.153 89973 port 23 89973 unique_id port 89973 remote_ip 10.8.0.6 89977 username aminvpn 89977 mac 89977 bytes_out 0 89977 bytes_in 0 89977 station_ip 5.119.183.153 89977 port 23 89977 unique_id port 89977 remote_ip 10.8.0.6 89980 username aminvpn 89980 mac 89980 bytes_out 0 89980 bytes_in 0 89980 station_ip 83.123.164.72 89980 port 21 89980 unique_id port 89980 remote_ip 10.8.0.6 89983 username aminvpn 89983 mac 89983 bytes_out 0 89983 bytes_in 0 89983 station_ip 5.119.183.153 89983 port 23 89983 unique_id port 89983 remote_ip 10.8.0.6 89984 username mahdixz 89984 unique_id port 89984 terminate_cause User-Request 89984 bytes_out 743982 89984 bytes_in 60478951 89984 station_ip 151.235.104.45 89984 port 15728882 89984 nas_port_type Virtual 89984 remote_ip 5.5.5.144 89988 username aminvpn 89988 mac 89988 bytes_out 0 89988 bytes_in 0 89988 station_ip 83.123.164.72 89988 port 23 89988 unique_id port 89988 remote_ip 10.8.0.6 89997 username shokokian 89997 unique_id port 89997 terminate_cause User-Request 89997 bytes_out 166359 89997 bytes_in 1577237 89997 station_ip 151.238.230.169 89997 port 15728893 89997 nas_port_type Virtual 89997 remote_ip 5.5.5.135 90005 username zamanialireza 90005 unique_id port 90005 terminate_cause Lost-Carrier 90005 bytes_out 7542114 90005 bytes_in 127591989 90005 station_ip 94.183.213.166 90005 port 15728865 90005 nas_port_type Virtual 90005 remote_ip 5.5.5.152 90006 username alinezhad 90006 unique_id port 90006 terminate_cause User-Request 90006 bytes_out 0 90006 bytes_in 0 90006 station_ip 5.202.26.239 90006 port 15728903 90006 nas_port_type Virtual 90006 remote_ip 5.5.5.131 90010 username alinezhad 90010 unique_id port 90010 terminate_cause User-Request 90010 bytes_out 0 90010 bytes_in 0 90010 station_ip 5.202.26.239 90010 port 15728913 90010 nas_port_type Virtual 90010 remote_ip 5.5.5.131 90014 username aminvpn 90014 mac 90014 bytes_out 0 90014 bytes_in 0 90014 station_ip 83.123.164.72 90014 port 21 90014 unique_id port 90014 remote_ip 10.8.0.6 90016 username forozande 90016 unique_id port 90016 terminate_cause User-Request 90016 bytes_out 0 90016 bytes_in 0 90016 station_ip 83.122.124.103 90016 port 15728918 90016 nas_port_type Virtual 90016 remote_ip 5.5.5.120 90017 username forozande 90017 unique_id port 90017 terminate_cause User-Request 90017 bytes_out 104530 90017 bytes_in 1225374 90017 station_ip 83.122.124.103 90017 port 15728919 90017 nas_port_type Virtual 90017 remote_ip 5.5.5.120 90019 username aminvpn 90019 mac 90019 bytes_out 0 90019 bytes_in 0 90019 station_ip 37.129.5.112 90019 port 21 90019 unique_id port 90019 remote_ip 10.8.0.6 90021 username amirabbas 90021 unique_id port 90021 terminate_cause User-Request 90021 bytes_out 28300799 90021 bytes_in 617512791 90021 station_ip 31.56.153.144 90021 port 15728878 90021 nas_port_type Virtual 90021 remote_ip 5.5.5.214 90029 username ahmadipour 90029 unique_id port 90029 terminate_cause Lost-Carrier 90029 bytes_out 60761 90029 bytes_in 80402 90029 station_ip 83.123.15.4 90029 port 15728925 90029 nas_port_type Virtual 90029 remote_ip 5.5.5.118 90031 username asadi 90031 unique_id port 90031 terminate_cause User-Request 90031 bytes_out 17809 90031 bytes_in 137879 90031 station_ip 83.123.45.9 90031 port 15728929 89981 mac 89981 bytes_out 0 89981 bytes_in 0 89981 station_ip 5.119.183.153 89981 port 23 89981 unique_id port 89981 remote_ip 10.8.0.6 89986 username caferibar 89986 unique_id port 89986 terminate_cause User-Request 89986 bytes_out 25923 89986 bytes_in 228492 89986 station_ip 37.129.55.61 89986 port 15728885 89986 nas_port_type Virtual 89986 remote_ip 5.5.5.141 89990 username zamanialireza 89990 unique_id port 89990 terminate_cause Lost-Carrier 89990 bytes_out 1779896 89990 bytes_in 71265012 89990 station_ip 5.119.231.46 89990 port 15728889 89990 nas_port_type Virtual 89990 remote_ip 5.5.5.138 89991 username forozande 89991 unique_id port 89991 terminate_cause User-Request 89991 bytes_out 32513 89991 bytes_in 92653 89991 station_ip 83.122.168.242 89991 port 15728890 89991 nas_port_type Virtual 89991 remote_ip 5.5.5.137 89995 username mahbobeh 89995 unique_id port 89995 terminate_cause Lost-Carrier 89995 bytes_out 1210398 89995 bytes_in 16233590 89995 station_ip 83.122.4.52 89995 port 15728877 89995 nas_port_type Virtual 89995 remote_ip 5.5.5.198 89996 username avaanna 89996 unique_id port 89996 terminate_cause User-Request 89996 bytes_out 0 89996 bytes_in 0 89996 station_ip 83.122.115.158 89996 port 15728894 89996 nas_port_type Virtual 89996 remote_ip 5.5.5.134 90002 username forozande 90002 unique_id port 90002 terminate_cause User-Request 90002 bytes_out 22145 90002 bytes_in 52293 90002 station_ip 83.122.199.115 90002 port 15728900 90002 nas_port_type Virtual 90002 remote_ip 5.5.5.130 90003 username alinezhad 90003 unique_id port 90003 terminate_cause User-Request 90003 bytes_out 55929 90003 bytes_in 109075 90003 station_ip 5.202.26.239 90003 port 15728898 90003 nas_port_type Virtual 90003 remote_ip 5.5.5.131 90004 username caferibar 90004 unique_id port 90004 terminate_cause User-Request 90004 bytes_out 342257 90004 bytes_in 170800 90004 station_ip 37.137.27.95 90004 port 15728902 90004 nas_port_type Virtual 90004 remote_ip 5.5.5.128 90012 username aminvpn 90012 unique_id port 90012 terminate_cause User-Request 90012 bytes_out 1535848 90012 bytes_in 18168077 90012 station_ip 5.119.183.153 90012 port 15728883 90012 nas_port_type Virtual 90012 remote_ip 5.5.5.143 90023 username caferibar 90023 unique_id port 90023 terminate_cause User-Request 90023 bytes_out 2902246 90023 bytes_in 32672827 90023 station_ip 5.119.142.62 90023 port 15728920 90023 nas_port_type Virtual 90023 remote_ip 5.5.5.220 90025 username alinezhad 90025 unique_id port 90025 terminate_cause User-Request 90025 bytes_out 0 90025 bytes_in 0 90025 station_ip 5.202.26.239 90025 port 15728922 90025 nas_port_type Virtual 90025 remote_ip 5.5.5.131 90026 username sadegh 90026 unique_id port 90026 terminate_cause User-Request 90026 bytes_out 22282369 90026 bytes_in 467971623 90026 station_ip 5.119.235.167 90026 port 15728910 90026 nas_port_type Virtual 90026 remote_ip 5.5.5.127 90030 username alinezhad 90030 unique_id port 90030 terminate_cause User-Request 90030 bytes_out 0 90030 bytes_in 0 90030 station_ip 5.202.26.239 90030 port 15728927 90030 nas_port_type Virtual 90030 remote_ip 5.5.5.131 90048 username mammad 90048 unique_id port 90048 terminate_cause Lost-Carrier 90048 bytes_out 193680 90048 bytes_in 3356404 90048 station_ip 79.127.14.227 90048 port 15728948 90048 nas_port_type Virtual 90048 remote_ip 5.5.5.125 90051 username musanejad 90051 unique_id port 90051 terminate_cause Lost-Carrier 90051 bytes_out 994155 90051 bytes_in 8484274 90051 station_ip 5.120.71.227 90051 port 15728945 90051 nas_port_type Virtual 90051 remote_ip 5.5.5.105 90057 username mammad 90057 unique_id port 89985 mac 89985 bytes_out 184249 89985 bytes_in 273756 89985 station_ip 83.123.164.72 89985 port 21 89985 unique_id port 89985 remote_ip 10.8.0.6 89987 username ahmadipour 89987 unique_id port 89987 terminate_cause Lost-Carrier 89987 bytes_out 116044 89987 bytes_in 2281565 89987 station_ip 83.123.90.176 89987 port 15728884 89987 nas_port_type Virtual 89987 remote_ip 5.5.5.142 89992 username alemzadeh 89992 unique_id port 89992 terminate_cause User-Request 89992 bytes_out 852630 89992 bytes_in 11215307 89992 station_ip 5.120.113.119 89992 port 15728891 89992 nas_port_type Virtual 89992 remote_ip 5.5.5.136 89999 username aminvpn 89999 mac 89999 bytes_out 909004 89999 bytes_in 2767557 89999 station_ip 37.129.15.4 89999 port 35 89999 unique_id port 89999 remote_ip 10.8.1.10 90001 username forozande 90001 unique_id port 90001 terminate_cause User-Request 90001 bytes_out 36890 90001 bytes_in 283490 90001 station_ip 83.122.199.115 90001 port 15728899 90001 nas_port_type Virtual 90001 remote_ip 5.5.5.130 90009 username caferibar 90009 unique_id port 90009 terminate_cause User-Request 90009 bytes_out 45363 90009 bytes_in 875964 90009 station_ip 83.123.230.221 90009 port 15728911 90009 nas_port_type Virtual 90009 remote_ip 5.5.5.126 90011 username kamali 90011 unique_id port 90011 terminate_cause User-Request 90011 bytes_out 158630 90011 bytes_in 302419 90011 station_ip 83.123.67.233 90011 port 15728914 90011 nas_port_type Virtual 90011 remote_ip 5.5.5.124 90018 username farhad 90018 unique_id port 90018 terminate_cause Lost-Carrier 90018 bytes_out 38090069 90018 bytes_in 185024715 90018 station_ip 5.120.51.91 90018 port 15728895 90018 nas_port_type Virtual 90018 remote_ip 5.5.5.133 90024 username mammad 90024 unique_id port 90024 terminate_cause Lost-Carrier 90024 bytes_out 1156631 90024 bytes_in 19817839 90024 station_ip 79.127.14.227 90024 port 15728912 90024 nas_port_type Virtual 90024 remote_ip 5.5.5.125 90028 username asadi 90028 unique_id port 90028 terminate_cause User-Request 90028 bytes_out 151434 90028 bytes_in 1463359 90028 station_ip 83.123.45.9 90028 port 15728924 90028 nas_port_type Virtual 90028 remote_ip 5.5.5.139 90037 username shahrooz 90037 unique_id port 90037 terminate_cause Lost-Carrier 90037 bytes_out 154316 90037 bytes_in 3197210 90037 station_ip 83.123.45.8 90037 port 15728934 90037 nas_port_type Virtual 90037 remote_ip 5.5.5.114 90040 username aminvpn 90040 mac 90040 bytes_out 0 90040 bytes_in 0 90040 station_ip 83.122.206.79 90040 port 21 90040 unique_id port 90040 remote_ip 10.8.0.6 90044 username mammad 90044 unique_id port 90044 terminate_cause User-Request 90044 bytes_out 3869566 90044 bytes_in 89737047 90044 station_ip 78.39.29.39 90044 port 15728937 90044 nas_port_type Virtual 90044 remote_ip 5.5.5.238 90045 username caferibar 90045 unique_id port 90045 terminate_cause Lost-Carrier 90045 bytes_out 525908 90045 bytes_in 10599706 90045 station_ip 188.208.167.96 90045 port 15728940 90045 nas_port_type Virtual 90045 remote_ip 5.5.5.110 90046 username zamanialireza 90046 unique_id port 90046 terminate_cause Lost-Carrier 90046 bytes_out 1351418 90046 bytes_in 26173496 90046 station_ip 5.160.114.228 90046 port 15728942 90046 nas_port_type Virtual 90046 remote_ip 5.5.5.108 90050 username caferibar 90050 unique_id port 90050 terminate_cause Lost-Carrier 90050 bytes_out 659565 90050 bytes_in 17504089 90050 station_ip 89.34.55.198 90050 port 15728947 90050 nas_port_type Virtual 90050 remote_ip 5.5.5.107 90053 username caferibar 90053 unique_id port 90053 terminate_cause Lost-Carrier 90053 bytes_out 405117 90000 terminate_cause User-Request 90000 bytes_out 148267 90000 bytes_in 3660325 90000 station_ip 83.123.45.9 90000 port 15728897 90000 nas_port_type Virtual 90000 remote_ip 5.5.5.139 90007 username alinezhad 90007 unique_id port 90007 terminate_cause User-Request 90007 bytes_out 34151 90007 bytes_in 480509 90007 station_ip 5.202.26.239 90007 port 15728904 90007 nas_port_type Virtual 90007 remote_ip 5.5.5.131 90008 username caferibar 90008 unique_id port 90008 terminate_cause Lost-Carrier 90008 bytes_out 82272 90008 bytes_in 176074 90008 station_ip 5.134.181.46 90008 port 15728901 90008 nas_port_type Virtual 90008 remote_ip 5.5.5.129 90013 username mahdixz 90013 unique_id port 90013 terminate_cause User-Request 90013 bytes_out 16170849 90013 bytes_in 85731941 90013 station_ip 151.235.104.45 90013 port 15728881 90013 nas_port_type Virtual 90013 remote_ip 5.5.5.162 90015 username heydarizadeh 90015 unique_id port 90015 terminate_cause User-Request 90015 bytes_out 0 90015 bytes_in 0 90015 station_ip 5.120.71.191 90015 port 15728917 90015 nas_port_type Virtual 90015 remote_ip 5.5.5.121 90020 username ahmadi 90020 unique_id port 90020 terminate_cause User-Request 90020 bytes_out 71806 90020 bytes_in 224379 90020 station_ip 37.129.11.235 90020 port 15728921 90020 nas_port_type Virtual 90020 remote_ip 5.5.5.119 90022 username bcboard 90022 unique_id port 90022 terminate_cause User-Request 90022 bytes_out 70131 90022 bytes_in 163344 90022 station_ip 83.123.193.228 90022 port 15728916 90022 nas_port_type Virtual 90022 remote_ip 5.5.5.122 90027 username mammad 90027 unique_id port 90027 terminate_cause User-Request 90027 bytes_out 861421 90027 bytes_in 7870153 90027 station_ip 79.127.14.227 90027 port 15728923 90027 nas_port_type Virtual 90027 remote_ip 5.5.5.125 90034 username madadi 90034 unique_id port 90034 terminate_cause Lost-Carrier 90034 bytes_out 64342 90034 bytes_in 285027 90034 station_ip 5.119.154.173 90034 port 15728930 90034 nas_port_type Virtual 90034 remote_ip 5.5.5.117 90042 username mammad 90042 unique_id port 90042 terminate_cause User-Request 90042 bytes_out 755374 90042 bytes_in 4352527 90042 station_ip 5.120.113.142 90042 port 15728935 90042 nas_port_type Virtual 90042 remote_ip 5.5.5.113 90047 username caferibar 90047 unique_id port 90047 terminate_cause User-Request 90047 bytes_out 528437 90047 bytes_in 13305591 90047 station_ip 89.34.55.198 90047 port 15728943 90047 nas_port_type Virtual 90047 remote_ip 5.5.5.107 90049 username caferibar 90049 unique_id port 90049 terminate_cause Lost-Carrier 90049 bytes_out 383096 90049 bytes_in 1947537 90049 station_ip 89.34.55.198 90049 port 15728949 90049 nas_port_type Virtual 90049 remote_ip 5.5.5.103 90063 username asadi 90063 unique_id port 90063 terminate_cause User-Request 90063 bytes_out 233599 90063 bytes_in 10274445 90063 station_ip 83.123.143.3 90063 port 15728958 90063 nas_port_type Virtual 90063 remote_ip 5.5.5.100 90072 username caferibar 90072 unique_id port 90072 terminate_cause Admin-Reboot 90072 bytes_out 0 90072 bytes_in 0 90072 station_ip 92.114.73.178 90072 port 15728966 90072 nas_port_type Virtual 90072 remote_ip 5.5.5.98 90074 username forozande 90074 unique_id port 90074 terminate_cause User-Request 90074 bytes_out 74068 90074 bytes_in 503181 90074 station_ip 37.129.65.148 90074 port 15728641 90074 nas_port_type Virtual 90074 remote_ip 5.5.5.254 90077 username forozande 90077 unique_id port 90077 terminate_cause User-Request 90077 bytes_out 40113 90077 bytes_in 447627 90077 station_ip 37.129.65.148 90077 port 15728645 90077 nas_port_type Virtual 90077 remote_ip 5.5.5.254 90079 username jamali 90031 nas_port_type Virtual 90031 remote_ip 5.5.5.139 90032 username alinezhad 90032 unique_id port 90032 terminate_cause User-Request 90032 bytes_out 0 90032 bytes_in 0 90032 station_ip 37.129.123.221 90032 port 15728931 90032 nas_port_type Virtual 90032 remote_ip 5.5.5.116 90033 username madadi 90033 unique_id port 90033 terminate_cause Lost-Carrier 90033 bytes_out 4564102 90033 bytes_in 31960484 90033 station_ip 5.120.117.45 90033 port 15728886 90033 nas_port_type Virtual 90033 remote_ip 5.5.5.140 90035 username aminvpn 90035 unique_id port 90035 terminate_cause User-Request 90035 bytes_out 2226228 90035 bytes_in 2273947 90035 station_ip 5.119.183.153 90035 port 15728932 90035 nas_port_type Virtual 90035 remote_ip 5.5.5.143 90036 username aminvpn 90036 unique_id port 90036 terminate_cause Lost-Carrier 90036 bytes_out 978388 90036 bytes_in 14679810 90036 station_ip 5.119.183.153 90036 port 15728933 90036 nas_port_type Virtual 90036 remote_ip 5.5.5.115 90038 username farhad 90038 unique_id port 90038 terminate_cause Lost-Carrier 90038 bytes_out 62218334 90038 bytes_in 168468297 90038 station_ip 5.120.180.52 90038 port 15728915 90038 nas_port_type Virtual 90038 remote_ip 5.5.5.123 90039 username madadi 90039 unique_id port 90039 terminate_cause Lost-Carrier 90039 bytes_out 112635 90039 bytes_in 284781 90039 station_ip 5.119.86.19 90039 port 15728936 90039 nas_port_type Virtual 90039 remote_ip 5.5.5.112 90041 username mammad 90041 unique_id port 90041 terminate_cause User-Request 90041 bytes_out 4395624 90041 bytes_in 53556189 90041 station_ip 78.39.29.39 90041 port 15728928 90041 nas_port_type Virtual 90041 remote_ip 5.5.5.238 90043 username madadi 90043 unique_id port 90043 terminate_cause Lost-Carrier 90043 bytes_out 50841 90043 bytes_in 271303 90043 station_ip 5.119.37.76 90043 port 15728939 90043 nas_port_type Virtual 90043 remote_ip 5.5.5.111 90052 username madadi 90052 unique_id port 90052 terminate_cause Lost-Carrier 90052 bytes_out 522757 90052 bytes_in 992745 90052 station_ip 5.119.197.113 90052 port 15728941 90052 nas_port_type Virtual 90052 remote_ip 5.5.5.109 90054 username amirabbas 90054 unique_id port 90054 terminate_cause User-Request 90054 bytes_out 31681542 90054 bytes_in 795270899 90054 station_ip 31.56.153.144 90054 port 15728938 90054 nas_port_type Virtual 90054 remote_ip 5.5.5.214 90055 username mammad 90055 unique_id port 90055 terminate_cause User-Request 90055 bytes_out 3116832 90055 bytes_in 94425773 90055 station_ip 78.39.29.39 90055 port 15728951 90055 nas_port_type Virtual 90055 remote_ip 5.5.5.238 90056 username afarin 90056 unique_id port 90056 terminate_cause Lost-Carrier 90056 bytes_out 2465495 90056 bytes_in 50379852 90056 station_ip 151.238.250.81 90056 port 15728946 90056 nas_port_type Virtual 90056 remote_ip 5.5.5.104 90059 username asadi 90059 unique_id port 90059 terminate_cause User-Request 90059 bytes_out 96772 90059 bytes_in 2396012 90059 station_ip 83.123.143.3 90059 port 15728954 90059 nas_port_type Virtual 90059 remote_ip 5.5.5.100 90064 username zamanialireza 90064 unique_id port 90064 terminate_cause User-Request 90064 bytes_out 7551155 90064 bytes_in 65933756 90064 station_ip 5.160.114.228 90064 port 15728944 90064 nas_port_type Virtual 90064 remote_ip 5.5.5.106 90068 username aminvpn 90068 mac 90068 bytes_out 0 90068 bytes_in 0 90068 station_ip 83.122.138.243 90068 port 21 90068 unique_id port 90075 username forozande 90075 unique_id port 90075 terminate_cause User-Request 90075 bytes_out 91439 90075 bytes_in 1685676 90075 station_ip 37.129.65.148 90075 port 15728643 90075 nas_port_type Virtual 90053 bytes_in 10967096 90053 station_ip 37.137.44.170 90053 port 15728950 90053 nas_port_type Virtual 90053 remote_ip 5.5.5.102 90061 username asadi 90061 unique_id port 90061 terminate_cause User-Request 90061 bytes_out 57217 90061 bytes_in 337592 90061 station_ip 83.123.143.3 90061 port 15728956 90061 nas_port_type Virtual 90061 remote_ip 5.5.5.100 90065 username afarin 90065 unique_id port 90065 terminate_cause User-Request 90065 bytes_out 533591 90065 bytes_in 2994501 90065 station_ip 151.238.250.81 90065 port 15728959 90065 nas_port_type Virtual 90065 remote_ip 5.5.5.104 90066 username aminvpn 90066 kill_reason Another user logged on this global unique id 90066 mac 90066 bytes_out 0 90066 bytes_in 0 90066 station_ip 83.122.138.243 90066 port 21 90066 unique_id port 90066 remote_ip 10.8.0.6 90069 username mahbobeh 90069 unique_id port 90069 terminate_cause Lost-Carrier 90069 bytes_out 1651788 90069 bytes_in 36603244 90069 station_ip 83.122.4.52 90069 port 15728963 90069 nas_port_type Virtual 90069 remote_ip 5.5.5.198 90070 username bcboard 90070 unique_id port 90070 terminate_cause User-Request 90070 bytes_out 226751 90070 bytes_in 555530 90070 station_ip 83.123.104.11 90070 port 15728965 90070 nas_port_type Virtual 90070 remote_ip 5.5.5.99 90073 username caferibar 90073 unique_id port 90073 terminate_cause Admin-Reboot 90073 bytes_out 97090189 90073 bytes_in 315604322 90073 station_ip 5.119.142.62 90073 port 15728926 90073 nas_port_type Virtual 90073 remote_ip 5.5.5.220 90081 username alemzadeh 90081 unique_id port 90081 terminate_cause User-Request 90081 bytes_out 218283 90081 bytes_in 3813096 90081 station_ip 83.123.34.50 90081 port 15728649 90081 nas_port_type Virtual 90081 remote_ip 5.5.5.252 90083 username asadi 90083 unique_id port 90083 terminate_cause User-Request 90083 bytes_out 43268 90083 bytes_in 3687658 90083 station_ip 83.122.214.222 90083 port 15728652 90083 nas_port_type Virtual 90083 remote_ip 5.5.5.249 90088 username aminvpn 90088 mac 90088 bytes_out 0 90088 bytes_in 0 90088 station_ip 83.123.198.64 90088 port 21 90088 unique_id port 90088 remote_ip 10.8.0.6 90089 username alemzadeh 90089 unique_id port 90089 terminate_cause User-Request 90089 bytes_out 186539 90089 bytes_in 1697190 90089 station_ip 83.123.34.50 90089 port 15728657 90089 nas_port_type Virtual 90089 remote_ip 5.5.5.252 90091 username aminvpn 90091 mac 90091 bytes_out 0 90091 bytes_in 0 90091 station_ip 83.122.152.212 90091 port 23 90091 unique_id port 90091 remote_ip 10.8.0.6 90092 username alemzadeh 90092 unique_id port 90092 terminate_cause User-Request 90092 bytes_out 102802 90092 bytes_in 464760 90092 station_ip 83.123.34.50 90092 port 15728660 90092 nas_port_type Virtual 90092 remote_ip 5.5.5.252 90094 username asadi 90094 unique_id port 90094 terminate_cause User-Request 90094 bytes_out 190450 90094 bytes_in 2888248 90094 station_ip 83.122.214.222 90094 port 15728661 90094 nas_port_type Virtual 90094 remote_ip 5.5.5.249 90095 username alinezhad 90095 unique_id port 90095 terminate_cause User-Request 90095 bytes_out 613865 90095 bytes_in 14785142 90095 station_ip 37.129.125.244 90095 port 15728662 90095 nas_port_type Virtual 90095 remote_ip 5.5.5.247 90099 username aminvpn 90099 mac 90099 bytes_out 0 90099 bytes_in 0 90099 station_ip 83.122.152.212 90099 port 23 90099 unique_id port 90099 remote_ip 10.8.0.6 90105 username aminvpn 90105 mac 90105 bytes_out 0 90105 bytes_in 0 90105 station_ip 83.123.198.64 90105 port 21 90105 unique_id port 90105 remote_ip 10.8.0.6 90112 username aminvpn 90057 terminate_cause User-Request 90057 bytes_out 6952300 90057 bytes_in 114348940 90057 station_ip 78.39.29.39 90057 port 15728953 90057 nas_port_type Virtual 90057 remote_ip 5.5.5.238 90058 username majid 90058 unique_id port 90058 terminate_cause User-Request 90058 bytes_out 7588380 90058 bytes_in 266847844 90058 station_ip 86.57.2.158 90058 port 15728952 90058 nas_port_type Virtual 90058 remote_ip 5.5.5.101 90060 username asadi 90060 unique_id port 90060 terminate_cause User-Request 90060 bytes_out 149501 90060 bytes_in 975738 90060 station_ip 83.123.143.3 90060 port 15728955 90060 nas_port_type Virtual 90060 remote_ip 5.5.5.100 90062 username asadi 90062 unique_id port 90062 terminate_cause User-Request 90062 bytes_out 240357 90062 bytes_in 8814815 90062 station_ip 83.123.143.3 90062 port 15728957 90062 nas_port_type Virtual 90062 remote_ip 5.5.5.100 90067 username aminvpn 90067 kill_reason Another user logged on this global unique id 90067 mac 90067 bytes_out 0 90067 bytes_in 0 90067 station_ip 83.122.138.243 90067 port 21 90067 unique_id port 90071 username mahbobeh 90071 unique_id port 90071 terminate_cause Admin-Reboot 90071 bytes_out 80324 90071 bytes_in 1372501 90071 station_ip 83.122.4.52 90071 port 15728964 90071 nas_port_type Virtual 90071 remote_ip 5.5.5.198 90076 username madadi 90076 unique_id port 90076 terminate_cause Lost-Carrier 90076 bytes_out 657745 90076 bytes_in 612311 90076 station_ip 5.120.186.141 90076 port 15728640 90076 nas_port_type Virtual 90076 remote_ip 5.5.5.255 90082 username alemzadeh 90082 unique_id port 90082 terminate_cause User-Request 90082 bytes_out 313992 90082 bytes_in 9197616 90082 station_ip 83.123.34.50 90082 port 15728651 90082 nas_port_type Virtual 90082 remote_ip 5.5.5.252 90097 username aminvpn 90097 mac 90097 bytes_out 0 90097 bytes_in 0 90097 station_ip 83.122.152.212 90097 port 23 90097 unique_id port 90097 remote_ip 10.8.0.6 90107 username aminvpn 90107 mac 90107 bytes_out 0 90107 bytes_in 0 90107 station_ip 83.122.152.212 90107 port 23 90107 unique_id port 90107 remote_ip 10.8.0.6 90114 username aminvpn 90114 mac 90114 bytes_out 0 90114 bytes_in 0 90114 station_ip 83.122.152.212 90114 port 23 90114 unique_id port 90114 remote_ip 10.8.0.6 90116 username aminvpn 90116 mac 90116 bytes_out 0 90116 bytes_in 0 90116 station_ip 83.123.198.64 90116 port 21 90116 unique_id port 90116 remote_ip 10.8.0.6 90122 username aminvpn 90122 mac 90122 bytes_out 0 90122 bytes_in 0 90122 station_ip 83.123.198.64 90122 port 21 90122 unique_id port 90122 remote_ip 10.8.0.6 90125 username aminvpn 90125 mac 90125 bytes_out 0 90125 bytes_in 0 90125 station_ip 83.122.152.212 90125 port 23 90125 unique_id port 90125 remote_ip 10.8.0.6 90126 username aminvpn 90126 mac 90126 bytes_out 0 90126 bytes_in 0 90126 station_ip 83.123.198.64 90126 port 21 90126 unique_id port 90126 remote_ip 10.8.0.6 90130 username aminvpn 90130 mac 90130 bytes_out 0 90130 bytes_in 0 90130 station_ip 83.122.152.212 90130 port 23 90130 unique_id port 90130 remote_ip 10.8.0.6 90131 username aminvpn 90131 mac 90131 bytes_out 0 90131 bytes_in 0 90131 station_ip 83.123.198.64 90131 port 21 90131 unique_id port 90131 remote_ip 10.8.0.6 90137 username aminvpn 90137 mac 90137 bytes_out 0 90137 bytes_in 0 90137 station_ip 83.123.198.64 90137 port 21 90137 unique_id port 90137 remote_ip 10.8.0.6 90138 username aminvpn 90138 mac 90075 remote_ip 5.5.5.254 90078 username alemzadeh 90078 unique_id port 90078 terminate_cause User-Request 90078 bytes_out 79837 90078 bytes_in 529254 90078 station_ip 83.123.34.50 90078 port 15728646 90078 nas_port_type Virtual 90078 remote_ip 5.5.5.252 90080 username alemzadeh 90080 unique_id port 90080 terminate_cause User-Request 90080 bytes_out 247122 90080 bytes_in 1816452 90080 station_ip 83.123.34.50 90080 port 15728648 90080 nas_port_type Virtual 90080 remote_ip 5.5.5.252 90086 username alemzadeh 90086 unique_id port 90086 terminate_cause User-Request 90086 bytes_out 326417 90086 bytes_in 2670474 90086 station_ip 83.123.34.50 90086 port 15728655 90086 nas_port_type Virtual 90086 remote_ip 5.5.5.252 90090 username asadi 90090 unique_id port 90090 terminate_cause User-Request 90090 bytes_out 181317 90090 bytes_in 2920827 90090 station_ip 83.122.214.222 90090 port 15728659 90090 nas_port_type Virtual 90090 remote_ip 5.5.5.249 90096 username asadi 90096 unique_id port 90096 terminate_cause User-Request 90096 bytes_out 0 90096 bytes_in 0 90096 station_ip 83.122.214.222 90096 port 15728663 90096 nas_port_type Virtual 90096 remote_ip 5.5.5.249 90100 username ahmadipour 90100 unique_id port 90100 terminate_cause Lost-Carrier 90100 bytes_out 623846 90100 bytes_in 15448652 90100 station_ip 83.123.64.24 90100 port 15728658 90100 nas_port_type Virtual 90100 remote_ip 5.5.5.248 90102 username aminvpn 90102 mac 90102 bytes_out 0 90102 bytes_in 0 90102 station_ip 83.123.198.64 90102 port 21 90102 unique_id port 90102 remote_ip 10.8.0.6 90103 username zamanialireza 90103 unique_id port 90103 terminate_cause User-Request 90103 bytes_out 22848873 90103 bytes_in 630220292 90103 station_ip 5.120.72.5 90103 port 15728644 90103 nas_port_type Virtual 90103 remote_ip 5.5.5.253 90104 username aminvpn 90104 mac 90104 bytes_out 0 90104 bytes_in 0 90104 station_ip 83.122.152.212 90104 port 23 90104 unique_id port 90104 remote_ip 10.8.0.6 90106 username asadi 90106 unique_id port 90106 terminate_cause User-Request 90106 bytes_out 97786 90106 bytes_in 1010152 90106 station_ip 83.122.214.222 90106 port 15728666 90106 nas_port_type Virtual 90106 remote_ip 5.5.5.249 90108 username aminvpn 90108 mac 90108 bytes_out 0 90108 bytes_in 0 90108 station_ip 83.123.198.64 90108 port 21 90108 unique_id port 90108 remote_ip 10.8.0.6 90110 username bcboard 90110 unique_id port 90110 terminate_cause User-Request 90110 bytes_out 93957 90110 bytes_in 162216 90110 station_ip 83.123.104.11 90110 port 15728667 90110 nas_port_type Virtual 90110 remote_ip 5.5.5.245 90113 username asadi 90113 unique_id port 90113 terminate_cause User-Request 90113 bytes_out 318759 90113 bytes_in 6921461 90113 station_ip 83.122.214.222 90113 port 15728669 90113 nas_port_type Virtual 90113 remote_ip 5.5.5.249 90117 username aminvpn 90117 mac 90117 bytes_out 0 90117 bytes_in 0 90117 station_ip 83.122.152.212 90117 port 23 90117 unique_id port 90117 remote_ip 10.8.0.6 90120 username aminvpn 90120 mac 90120 bytes_out 0 90120 bytes_in 0 90120 station_ip 83.123.198.64 90120 port 21 90120 unique_id port 90120 remote_ip 10.8.0.6 90121 username aminvpn 90121 mac 90121 bytes_out 0 90121 bytes_in 0 90121 station_ip 83.122.152.212 90121 port 23 90121 unique_id port 90121 remote_ip 10.8.0.6 90127 username aminvpn 90127 mac 90127 bytes_out 0 90127 bytes_in 0 90127 station_ip 83.122.152.212 90127 port 23 90127 unique_id port 90127 remote_ip 10.8.0.6 90129 username caferibar 90079 unique_id port 90079 terminate_cause User-Request 90079 bytes_out 184819 90079 bytes_in 3956384 90079 station_ip 83.122.8.188 90079 port 15728647 90079 nas_port_type Virtual 90079 remote_ip 5.5.5.251 90084 username asadi 90084 unique_id port 90084 terminate_cause User-Request 90084 bytes_out 235763 90084 bytes_in 6767476 90084 station_ip 83.122.214.222 90084 port 15728653 90084 nas_port_type Virtual 90084 remote_ip 5.5.5.249 90085 username asadi 90085 unique_id port 90085 terminate_cause User-Request 90085 bytes_out 309962 90085 bytes_in 7901589 90085 station_ip 83.122.214.222 90085 port 15728654 90085 nas_port_type Virtual 90085 remote_ip 5.5.5.249 90087 username alemzadeh 90087 unique_id port 90087 terminate_cause User-Request 90087 bytes_out 734 90087 bytes_in 14034 90087 station_ip 83.123.34.50 90087 port 15728656 90087 nas_port_type Virtual 90087 remote_ip 5.5.5.252 90093 username aminvpn 90093 mac 90093 bytes_out 0 90093 bytes_in 0 90093 station_ip 83.123.198.64 90093 port 21 90093 unique_id port 90093 remote_ip 10.8.0.6 90098 username aminvpn 90098 mac 90098 bytes_out 0 90098 bytes_in 0 90098 station_ip 83.123.198.64 90098 port 21 90098 unique_id port 90098 remote_ip 10.8.0.6 90101 username asadi 90101 unique_id port 90101 terminate_cause User-Request 90101 bytes_out 203840 90101 bytes_in 2835952 90101 station_ip 83.122.214.222 90101 port 15728664 90101 nas_port_type Virtual 90101 remote_ip 5.5.5.249 90109 username asadi 90109 unique_id port 90109 terminate_cause User-Request 90109 bytes_out 121366 90109 bytes_in 1875621 90109 station_ip 83.122.214.222 90109 port 15728668 90109 nas_port_type Virtual 90109 remote_ip 5.5.5.249 90111 username aminvpn 90111 mac 90111 bytes_out 0 90111 bytes_in 0 90111 station_ip 83.122.152.212 90111 port 23 90111 unique_id port 90111 remote_ip 10.8.0.6 90119 username aminvpn 90119 mac 90119 bytes_out 0 90119 bytes_in 0 90119 station_ip 83.122.152.212 90119 port 23 90119 unique_id port 90119 remote_ip 10.8.0.6 90123 username aminvpn 90123 mac 90123 bytes_out 0 90123 bytes_in 0 90123 station_ip 83.122.152.212 90123 port 23 90123 unique_id port 90123 remote_ip 10.8.0.6 90132 username aminvpn 90132 mac 90132 bytes_out 13155 90132 bytes_in 13660 90132 station_ip 83.122.152.212 90132 port 23 90132 unique_id port 90132 remote_ip 10.8.0.6 90135 username aminvpn 90135 mac 90135 bytes_out 0 90135 bytes_in 0 90135 station_ip 83.123.198.64 90135 port 21 90135 unique_id port 90135 remote_ip 10.8.0.6 90139 username aminvpn 90139 mac 90139 bytes_out 0 90139 bytes_in 0 90139 station_ip 83.123.198.64 90139 port 21 90139 unique_id port 90139 remote_ip 10.8.0.6 90142 username aminvpn 90142 mac 90142 bytes_out 8549 90142 bytes_in 10242 90142 station_ip 83.122.152.212 90142 port 23 90142 unique_id port 90142 remote_ip 10.8.0.6 90146 username aminvpn 90146 mac 90146 bytes_out 0 90146 bytes_in 0 90146 station_ip 83.122.152.212 90146 port 23 90146 unique_id port 90146 remote_ip 10.8.0.6 90150 username aminvpn 90150 mac 90150 bytes_out 0 90150 bytes_in 0 90150 station_ip 83.122.152.212 90150 port 23 90150 unique_id port 90150 remote_ip 10.8.0.6 90151 username forozande 90151 unique_id port 90151 terminate_cause User-Request 90151 bytes_out 41348 90151 bytes_in 60047 90151 station_ip 83.122.193.101 90151 port 15728672 90151 nas_port_type Virtual 90151 remote_ip 5.5.5.242 90154 username caferibar 90112 mac 90112 bytes_out 0 90112 bytes_in 0 90112 station_ip 83.123.198.64 90112 port 21 90112 unique_id port 90112 remote_ip 10.8.0.6 90115 username alinezhad 90115 unique_id port 90115 terminate_cause User-Request 90115 bytes_out 16506 90115 bytes_in 31186 90115 station_ip 83.123.158.157 90115 port 15728670 90115 nas_port_type Virtual 90115 remote_ip 5.5.5.244 90118 username aminvpn 90118 mac 90118 bytes_out 0 90118 bytes_in 0 90118 station_ip 83.123.198.64 90118 port 21 90118 unique_id port 90118 remote_ip 10.8.0.6 90124 username aminvpn 90124 mac 90124 bytes_out 0 90124 bytes_in 0 90124 station_ip 83.123.198.64 90124 port 21 90124 unique_id port 90124 remote_ip 10.8.0.6 90128 username aminvpn 90128 mac 90128 bytes_out 0 90128 bytes_in 0 90128 station_ip 83.123.198.64 90128 port 21 90128 unique_id port 90128 remote_ip 10.8.0.6 90134 username aminvpn 90134 mac 90134 bytes_out 0 90134 bytes_in 0 90134 station_ip 83.122.152.212 90134 port 23 90134 unique_id port 90134 remote_ip 10.8.0.6 90140 username aminvpn 90140 mac 90140 bytes_out 0 90140 bytes_in 0 90140 station_ip 83.122.152.212 90140 port 23 90140 unique_id port 90140 remote_ip 10.8.0.6 90147 username aminvpn 90147 mac 90147 bytes_out 0 90147 bytes_in 0 90147 station_ip 83.123.198.64 90147 port 21 90147 unique_id port 90147 remote_ip 10.8.0.6 90158 username avaanna 90158 unique_id port 90158 terminate_cause User-Request 90158 bytes_out 78108 90158 bytes_in 540817 90158 station_ip 83.122.210.198 90158 port 15728681 90158 nas_port_type Virtual 90158 remote_ip 5.5.5.235 90163 username aminvpn 90163 mac 90163 bytes_out 276538 90163 bytes_in 846728 90163 station_ip 83.123.198.64 90163 port 21 90163 unique_id port 90163 remote_ip 10.8.0.6 90166 username aminvpn 90166 mac 90166 bytes_out 0 90166 bytes_in 0 90166 station_ip 83.122.224.235 90166 port 23 90166 unique_id port 90166 remote_ip 10.8.0.6 90173 username aminvpn 90173 mac 90173 bytes_out 0 90173 bytes_in 0 90173 station_ip 83.122.224.235 90173 port 23 90173 unique_id port 90173 remote_ip 10.8.0.6 90176 username aminvpn 90176 mac 90176 bytes_out 0 90176 bytes_in 0 90176 station_ip 83.123.198.64 90176 port 21 90176 unique_id port 90176 remote_ip 10.8.0.6 90179 username caferibar 90179 unique_id port 90179 terminate_cause User-Request 90179 bytes_out 2675616 90179 bytes_in 46688371 90179 station_ip 5.119.142.62 90179 port 15728675 90179 nas_port_type Virtual 90179 remote_ip 5.5.5.241 90182 username aminvpn 90182 mac 90182 bytes_out 0 90182 bytes_in 0 90182 station_ip 83.122.224.235 90182 port 23 90182 unique_id port 90182 remote_ip 10.8.0.6 90187 username aminvpn 90187 mac 90187 bytes_out 0 90187 bytes_in 0 90187 station_ip 83.122.224.235 90187 port 23 90187 unique_id port 90187 remote_ip 10.8.0.6 90188 username aminvpn 90188 mac 90188 bytes_out 4447 90188 bytes_in 9336 90188 station_ip 83.123.198.64 90188 port 21 90188 unique_id port 90188 remote_ip 10.8.0.6 90194 username aminvpn 90194 mac 90194 bytes_out 0 90194 bytes_in 0 90194 station_ip 83.123.198.64 90194 port 21 90194 unique_id port 90194 remote_ip 10.8.0.6 90196 username ksrkrgr 90196 unique_id port 90196 terminate_cause User-Request 90196 bytes_out 3800795 90196 bytes_in 93046042 90196 station_ip 2.184.5.128 90196 port 15728686 90196 nas_port_type Virtual 90129 unique_id port 90129 terminate_cause Lost-Carrier 90129 bytes_out 2111325 90129 bytes_in 97304555 90129 station_ip 5.134.137.173 90129 port 15728665 90129 nas_port_type Virtual 90129 remote_ip 5.5.5.246 90133 username aminvpn 90133 mac 90133 bytes_out 0 90133 bytes_in 0 90133 station_ip 83.123.198.64 90133 port 21 90133 unique_id port 90133 remote_ip 10.8.0.6 90136 username aminvpn 90136 mac 90136 bytes_out 0 90136 bytes_in 0 90136 station_ip 83.122.152.212 90136 port 23 90136 unique_id port 90136 remote_ip 10.8.0.6 90143 username aminvpn 90143 mac 90143 bytes_out 0 90143 bytes_in 0 90143 station_ip 83.123.198.64 90143 port 21 90143 unique_id port 90143 remote_ip 10.8.0.6 90144 username aminvpn 90144 mac 90144 bytes_out 0 90144 bytes_in 0 90144 station_ip 83.122.152.212 90144 port 23 90144 unique_id port 90144 remote_ip 10.8.0.6 90149 username aminvpn 90149 mac 90149 bytes_out 0 90149 bytes_in 0 90149 station_ip 83.123.198.64 90149 port 21 90149 unique_id port 90149 remote_ip 10.8.0.6 90161 username bcboard 90161 unique_id port 90161 terminate_cause User-Request 90161 bytes_out 55838 90161 bytes_in 980151 90161 station_ip 83.122.61.68 90161 port 15728684 90161 nas_port_type Virtual 90161 remote_ip 5.5.5.236 90165 username aminvpn 90165 mac 90165 bytes_out 0 90165 bytes_in 0 90165 station_ip 83.123.198.64 90165 port 21 90165 unique_id port 90165 remote_ip 10.8.0.6 90168 username aminvpn 90168 mac 90168 bytes_out 0 90168 bytes_in 0 90168 station_ip 83.122.224.235 90168 port 23 90168 unique_id port 90168 remote_ip 10.8.0.6 90171 username aminvpn 90171 mac 90171 bytes_out 0 90171 bytes_in 0 90171 station_ip 83.123.198.64 90171 port 21 90171 unique_id port 90171 remote_ip 10.8.0.6 90181 username aminvpn 90181 mac 90181 bytes_out 0 90181 bytes_in 0 90181 station_ip 83.123.198.64 90181 port 21 90181 unique_id port 90181 remote_ip 10.8.0.6 90183 username alinezhad 90183 unique_id port 90183 terminate_cause User-Request 90183 bytes_out 0 90183 bytes_in 0 90183 station_ip 37.129.76.237 90183 port 15728687 90183 nas_port_type Virtual 90183 remote_ip 5.5.5.233 90190 username aminvpn 90190 mac 90190 bytes_out 0 90190 bytes_in 0 90190 station_ip 83.123.198.64 90190 port 21 90190 unique_id port 90190 remote_ip 10.8.0.6 90193 username aminvpn 90193 mac 90193 bytes_out 0 90193 bytes_in 0 90193 station_ip 83.122.224.235 90193 port 23 90193 unique_id port 90193 remote_ip 10.8.0.6 90198 username aminvpn 90198 mac 90198 bytes_out 0 90198 bytes_in 0 90198 station_ip 83.122.224.235 90198 port 23 90198 unique_id port 90198 remote_ip 10.8.0.6 90205 username aminvpn 90205 mac 90205 bytes_out 0 90205 bytes_in 0 90205 station_ip 83.123.198.64 90205 port 21 90205 unique_id port 90205 remote_ip 10.8.0.6 90208 username aminvpn 90208 mac 90208 bytes_out 0 90208 bytes_in 0 90208 station_ip 83.122.224.235 90208 port 23 90208 unique_id port 90208 remote_ip 10.8.0.6 90213 username mammad 90213 unique_id port 90213 terminate_cause User-Request 90213 bytes_out 7291429 90213 bytes_in 93596737 90213 station_ip 2.183.249.29 90213 port 15728696 90213 nas_port_type Virtual 90213 remote_ip 5.5.5.226 90215 username forozande 90215 unique_id port 90215 terminate_cause User-Request 90215 bytes_out 102328 90215 bytes_in 1238673 90215 station_ip 83.122.174.23 90215 port 15728700 90138 bytes_out 0 90138 bytes_in 0 90138 station_ip 83.122.152.212 90138 port 23 90138 unique_id port 90138 remote_ip 10.8.0.6 90141 username aminvpn 90141 mac 90141 bytes_out 0 90141 bytes_in 0 90141 station_ip 83.123.198.64 90141 port 21 90141 unique_id port 90141 remote_ip 10.8.0.6 90145 username aminvpn 90145 mac 90145 bytes_out 0 90145 bytes_in 0 90145 station_ip 83.123.198.64 90145 port 21 90145 unique_id port 90145 remote_ip 10.8.0.6 90148 username aminvpn 90148 mac 90148 bytes_out 0 90148 bytes_in 0 90148 station_ip 83.122.152.212 90148 port 23 90148 unique_id port 90148 remote_ip 10.8.0.6 90152 username forozande 90152 unique_id port 90152 terminate_cause User-Request 90152 bytes_out 8899 90152 bytes_in 20115 90152 station_ip 83.122.193.101 90152 port 15728673 90152 nas_port_type Virtual 90152 remote_ip 5.5.5.242 90153 username forozande 90153 unique_id port 90153 terminate_cause User-Request 90153 bytes_out 107399 90153 bytes_in 2287550 90153 station_ip 83.122.193.101 90153 port 15728674 90153 nas_port_type Virtual 90153 remote_ip 5.5.5.242 90155 username alinezhad 90155 unique_id port 90155 terminate_cause User-Request 90155 bytes_out 0 90155 bytes_in 0 90155 station_ip 83.122.176.53 90155 port 15728677 90155 nas_port_type Virtual 90155 remote_ip 5.5.5.239 90157 username bcboard 90157 unique_id port 90157 terminate_cause User-Request 90157 bytes_out 125254 90157 bytes_in 2295801 90157 station_ip 83.122.61.68 90157 port 15728679 90157 nas_port_type Virtual 90157 remote_ip 5.5.5.236 90160 username bcboard 90160 unique_id port 90160 terminate_cause User-Request 90160 bytes_out 86242 90160 bytes_in 1892797 90160 station_ip 83.122.61.68 90160 port 15728683 90160 nas_port_type Virtual 90160 remote_ip 5.5.5.236 90162 username bcboard 90162 unique_id port 90162 terminate_cause User-Request 90162 bytes_out 68748 90162 bytes_in 616055 90162 station_ip 83.122.61.68 90162 port 15728685 90162 nas_port_type Virtual 90162 remote_ip 5.5.5.236 90169 username aminvpn 90169 mac 90169 bytes_out 0 90169 bytes_in 0 90169 station_ip 83.123.198.64 90169 port 21 90169 unique_id port 90169 remote_ip 10.8.0.6 90170 username aminvpn 90170 mac 90170 bytes_out 0 90170 bytes_in 0 90170 station_ip 83.122.224.235 90170 port 23 90170 unique_id port 90170 remote_ip 10.8.0.6 90172 username madadi 90172 unique_id port 90172 terminate_cause Lost-Carrier 90172 bytes_out 439874 90172 bytes_in 2461187 90172 station_ip 5.119.140.19 90172 port 15728676 90172 nas_port_type Virtual 90172 remote_ip 5.5.5.240 90174 username aminvpn 90174 mac 90174 bytes_out 0 90174 bytes_in 0 90174 station_ip 83.123.198.64 90174 port 21 90174 unique_id port 90174 remote_ip 10.8.0.6 90177 username aminvpn 90177 mac 90177 bytes_out 18532 90177 bytes_in 23613 90177 station_ip 83.122.224.235 90177 port 23 90177 unique_id port 90177 remote_ip 10.8.0.6 90178 username aminvpn 90178 mac 90178 bytes_out 0 90178 bytes_in 0 90178 station_ip 83.123.198.64 90178 port 21 90178 unique_id port 90178 remote_ip 10.8.0.6 90180 username aminvpn 90180 mac 90180 bytes_out 0 90180 bytes_in 0 90180 station_ip 83.122.224.235 90180 port 23 90180 unique_id port 90180 remote_ip 10.8.0.6 90184 username aminvpn 90184 mac 90184 bytes_out 6036 90184 bytes_in 14558 90184 station_ip 83.123.198.64 90184 port 21 90184 unique_id port 90184 remote_ip 10.8.0.6 90189 username aminvpn 90189 mac 90154 unique_id port 90154 terminate_cause Lost-Carrier 90154 bytes_out 180963 90154 bytes_in 1611121 90154 station_ip 37.156.157.58 90154 port 15728671 90154 nas_port_type Virtual 90154 remote_ip 5.5.5.243 90156 username forozande 90156 unique_id port 90156 terminate_cause User-Request 90156 bytes_out 75261 90156 bytes_in 280330 90156 station_ip 83.122.86.157 90156 port 15728678 90156 nas_port_type Virtual 90156 remote_ip 5.5.5.238 90159 username avaanna 90159 unique_id port 90159 terminate_cause User-Request 90159 bytes_out 0 90159 bytes_in 0 90159 station_ip 83.122.210.198 90159 port 15728682 90159 nas_port_type Virtual 90159 remote_ip 5.5.5.235 90164 username aminvpn 90164 mac 90164 bytes_out 0 90164 bytes_in 0 90164 station_ip 83.122.224.235 90164 port 23 90164 unique_id port 90164 remote_ip 10.8.0.6 90167 username aminvpn 90167 mac 90167 bytes_out 0 90167 bytes_in 0 90167 station_ip 83.123.198.64 90167 port 21 90167 unique_id port 90167 remote_ip 10.8.0.6 90175 username aminvpn 90175 mac 90175 bytes_out 0 90175 bytes_in 0 90175 station_ip 83.122.224.235 90175 port 23 90175 unique_id port 90175 remote_ip 10.8.0.6 90185 username aminvpn 90185 mac 90185 bytes_out 0 90185 bytes_in 0 90185 station_ip 83.122.224.235 90185 port 23 90185 unique_id port 90185 remote_ip 10.8.0.6 90186 username aminvpn 90186 mac 90186 bytes_out 0 90186 bytes_in 0 90186 station_ip 83.123.198.64 90186 port 21 90186 unique_id port 90186 remote_ip 10.8.0.6 90197 username aminvpn 90197 mac 90197 bytes_out 0 90197 bytes_in 0 90197 station_ip 83.123.198.64 90197 port 21 90197 unique_id port 90197 remote_ip 10.8.0.6 90200 username aminvpn 90200 mac 90200 bytes_out 0 90200 bytes_in 0 90200 station_ip 83.122.224.235 90200 port 23 90200 unique_id port 90200 remote_ip 10.8.0.6 90201 username alinezhad 90201 unique_id port 90201 terminate_cause User-Request 90201 bytes_out 0 90201 bytes_in 0 90201 station_ip 113.203.115.180 90201 port 15728689 90201 nas_port_type Virtual 90201 remote_ip 5.5.5.231 90202 username aminvpn 90202 mac 90202 bytes_out 0 90202 bytes_in 0 90202 station_ip 83.123.198.64 90202 port 21 90202 unique_id port 90202 remote_ip 10.8.0.6 90204 username mahbobeh 90204 unique_id port 90204 terminate_cause Lost-Carrier 90204 bytes_out 174170 90204 bytes_in 201319 90204 station_ip 83.122.122.64 90204 port 15728690 90204 nas_port_type Virtual 90204 remote_ip 5.5.5.230 90216 username kamali 90216 unique_id port 90216 terminate_cause User-Request 90216 bytes_out 437925 90216 bytes_in 8046456 90216 station_ip 37.129.137.145 90216 port 15728702 90216 nas_port_type Virtual 90216 remote_ip 5.5.5.221 90221 username aminvpn 90221 mac 90221 bytes_out 455719 90221 bytes_in 985830 90221 station_ip 83.123.198.64 90221 port 21 90221 unique_id port 90221 remote_ip 10.8.0.6 90223 username aminvpn 90223 mac 90223 bytes_out 0 90223 bytes_in 0 90223 station_ip 83.123.198.64 90223 port 21 90223 unique_id port 90223 remote_ip 10.8.0.6 90231 username aminvpn 90231 mac 90231 bytes_out 46685 90231 bytes_in 48941 90231 station_ip 83.122.224.235 90231 port 35 90231 unique_id port 90231 remote_ip 10.8.1.10 90233 username aminvpn 90233 mac 90233 bytes_out 71258 90233 bytes_in 159706 90233 station_ip 83.122.224.235 90233 port 35 90233 unique_id port 90233 remote_ip 10.8.1.10 90234 username asadi 90234 unique_id port 90234 terminate_cause User-Request 90189 bytes_out 0 90189 bytes_in 0 90189 station_ip 83.122.224.235 90189 port 23 90189 unique_id port 90189 remote_ip 10.8.0.6 90191 username aminvpn 90191 mac 90191 bytes_out 0 90191 bytes_in 0 90191 station_ip 83.122.224.235 90191 port 23 90191 unique_id port 90191 remote_ip 10.8.0.6 90192 username aminvpn 90192 mac 90192 bytes_out 0 90192 bytes_in 0 90192 station_ip 83.123.198.64 90192 port 21 90192 unique_id port 90192 remote_ip 10.8.0.6 90195 username aminvpn 90195 mac 90195 bytes_out 0 90195 bytes_in 0 90195 station_ip 83.122.224.235 90195 port 23 90195 unique_id port 90195 remote_ip 10.8.0.6 90199 username aminvpn 90199 mac 90199 bytes_out 0 90199 bytes_in 0 90199 station_ip 83.123.198.64 90199 port 21 90199 unique_id port 90199 remote_ip 10.8.0.6 90211 username caferibar 90211 unique_id port 90211 terminate_cause User-Request 90211 bytes_out 5581528 90211 bytes_in 6190686 90211 station_ip 5.62.202.101 90211 port 15728692 90211 nas_port_type Virtual 90211 remote_ip 5.5.5.228 90214 username shojaei 90214 unique_id port 90214 terminate_cause User-Request 90214 bytes_out 19865 90214 bytes_in 67817 90214 station_ip 83.123.136.88 90214 port 15728698 90214 nas_port_type Virtual 90214 remote_ip 5.5.5.224 90219 username alinezhad 90219 unique_id port 90219 terminate_cause User-Request 90219 bytes_out 0 90219 bytes_in 0 90219 station_ip 5.202.6.172 90219 port 15728704 90219 nas_port_type Virtual 90219 remote_ip 5.5.5.219 90220 username forozande 90220 unique_id port 90220 terminate_cause User-Request 90220 bytes_out 30207 90220 bytes_in 46758 90220 station_ip 37.129.191.64 90220 port 15728706 90220 nas_port_type Virtual 90220 remote_ip 5.5.5.217 90222 username aminvpn 90222 mac 90222 bytes_out 176424 90222 bytes_in 1223942 90222 station_ip 83.122.224.235 90222 port 23 90222 unique_id port 90222 remote_ip 10.8.0.6 90225 username caferibar 90225 unique_id port 90225 terminate_cause User-Request 90225 bytes_out 186950 90225 bytes_in 1528766 90225 station_ip 89.32.109.79 90225 port 15728699 90225 nas_port_type Virtual 90225 remote_ip 5.5.5.223 90227 username zamanialireza 90227 unique_id port 90227 terminate_cause User-Request 90227 bytes_out 52890406 90227 bytes_in 2003653451 90227 station_ip 83.123.177.244 90227 port 15728697 90227 nas_port_type Virtual 90227 remote_ip 5.5.5.225 90228 username caferibar 90228 unique_id port 90228 terminate_cause Lost-Carrier 90228 bytes_out 654810 90228 bytes_in 14062014 90228 station_ip 5.62.247.145 90228 port 15728705 90228 nas_port_type Virtual 90228 remote_ip 5.5.5.218 90237 username amirabbas 90237 unique_id port 90237 terminate_cause Lost-Carrier 90237 bytes_out 9352979 90237 bytes_in 172600533 90237 station_ip 31.56.153.144 90237 port 15728680 90237 nas_port_type Virtual 90237 remote_ip 5.5.5.237 90240 username forozande 90240 unique_id port 90240 terminate_cause User-Request 90240 bytes_out 12368 90240 bytes_in 45284 90240 station_ip 37.129.108.155 90240 port 15728720 90240 nas_port_type Virtual 90240 remote_ip 5.5.5.211 90241 username asadi 90241 unique_id port 90241 terminate_cause User-Request 90241 bytes_out 158722 90241 bytes_in 6645549 90241 station_ip 83.122.214.222 90241 port 15728721 90241 nas_port_type Virtual 90241 remote_ip 5.5.5.249 90248 username ahmadi 90248 unique_id port 90248 terminate_cause User-Request 90248 bytes_out 120778 90248 bytes_in 1750420 90248 station_ip 37.129.67.227 90248 port 15728725 90248 nas_port_type Virtual 90248 remote_ip 5.5.5.209 90252 username forozande 90252 unique_id port 90196 remote_ip 5.5.5.234 90203 username aminvpn 90203 mac 90203 bytes_out 75153 90203 bytes_in 114826 90203 station_ip 83.122.224.235 90203 port 23 90203 unique_id port 90203 remote_ip 10.8.0.6 90206 username aminvpn 90206 mac 90206 bytes_out 0 90206 bytes_in 0 90206 station_ip 83.122.224.235 90206 port 23 90206 unique_id port 90206 remote_ip 10.8.0.6 90207 username aminvpn 90207 mac 90207 bytes_out 0 90207 bytes_in 0 90207 station_ip 83.123.198.64 90207 port 21 90207 unique_id port 90207 remote_ip 10.8.0.6 90209 username avaanna 90209 unique_id port 90209 terminate_cause User-Request 90209 bytes_out 76831 90209 bytes_in 1138811 90209 station_ip 83.122.210.198 90209 port 15728693 90209 nas_port_type Virtual 90209 remote_ip 5.5.5.235 90210 username alinezhad 90210 unique_id port 90210 terminate_cause User-Request 90210 bytes_out 0 90210 bytes_in 0 90210 station_ip 83.123.225.130 90210 port 15728694 90210 nas_port_type Virtual 90210 remote_ip 5.5.5.227 90212 username caferibar 90212 unique_id port 90212 terminate_cause Lost-Carrier 90212 bytes_out 9425955 90212 bytes_in 24667232 90212 station_ip 5.120.84.252 90212 port 15728688 90212 nas_port_type Virtual 90212 remote_ip 5.5.5.232 90224 username aminvpn 90224 mac 90224 bytes_out 0 90224 bytes_in 0 90224 station_ip 83.122.224.235 90224 port 23 90224 unique_id port 90224 remote_ip 10.8.0.6 90226 username asadi 90226 unique_id port 90226 terminate_cause User-Request 90226 bytes_out 353045 90226 bytes_in 7781778 90226 station_ip 83.122.214.222 90226 port 15728707 90226 nas_port_type Virtual 90226 remote_ip 5.5.5.249 90235 username aminvpn 90235 mac 90235 bytes_out 88108 90235 bytes_in 131573 90235 station_ip 83.122.224.235 90235 port 35 90235 unique_id port 90235 remote_ip 10.8.1.10 90238 username asadi 90238 unique_id port 90238 terminate_cause User-Request 90238 bytes_out 24510 90238 bytes_in 157922 90238 station_ip 83.122.214.222 90238 port 15728718 90238 nas_port_type Virtual 90238 remote_ip 5.5.5.249 90243 username asadi 90243 unique_id port 90243 terminate_cause User-Request 90243 bytes_out 42890 90243 bytes_in 672552 90243 station_ip 83.122.214.222 90243 port 15728723 90243 nas_port_type Virtual 90243 remote_ip 5.5.5.249 90244 username aminvpn 90244 mac 90244 bytes_out 0 90244 bytes_in 0 90244 station_ip 83.122.224.235 90244 port 35 90244 unique_id port 90244 remote_ip 10.8.1.10 90246 username jamali 90246 unique_id port 90246 terminate_cause User-Request 90246 bytes_out 288708 90246 bytes_in 1600821 90246 station_ip 83.122.113.248 90246 port 15728726 90246 nas_port_type Virtual 90246 remote_ip 5.5.5.208 90263 username arman 90263 unique_id port 90263 terminate_cause Lost-Carrier 90263 bytes_out 11642618 90263 bytes_in 247024663 90263 station_ip 5.119.202.108 90263 port 15728691 90263 nas_port_type Virtual 90263 remote_ip 5.5.5.229 90265 username madadi 90265 kill_reason Relative expiration date has reached 90265 unique_id port 90265 bytes_out 0 90265 bytes_in 0 90265 station_ip 5.119.106.232 90265 port 15728743 90265 nas_port_type Virtual 90269 username caferibar 90269 unique_id port 90269 terminate_cause Lost-Carrier 90269 bytes_out 32915004 90269 bytes_in 620779541 90269 station_ip 5.119.142.62 90269 port 15728695 90269 nas_port_type Virtual 90269 remote_ip 5.5.5.241 90278 username madadi 90278 kill_reason Relative expiration date has reached 90278 unique_id port 90278 bytes_out 0 90278 bytes_in 0 90278 station_ip 5.120.166.141 90278 port 15728750 90278 nas_port_type Virtual 90282 username ahmadi 90215 nas_port_type Virtual 90215 remote_ip 5.5.5.222 90217 username forozande 90217 unique_id port 90217 terminate_cause User-Request 90217 bytes_out 173863 90217 bytes_in 2731536 90217 station_ip 83.123.39.144 90217 port 15728703 90217 nas_port_type Virtual 90217 remote_ip 5.5.5.220 90218 username mammad 90218 unique_id port 90218 terminate_cause User-Request 90218 bytes_out 730010 90218 bytes_in 6731771 90218 station_ip 2.183.249.29 90218 port 15728701 90218 nas_port_type Virtual 90218 remote_ip 5.5.5.226 90229 username alinezhad 90229 unique_id port 90229 terminate_cause User-Request 90229 bytes_out 0 90229 bytes_in 0 90229 station_ip 5.202.6.172 90229 port 15728711 90229 nas_port_type Virtual 90229 remote_ip 5.5.5.219 90230 username caferibar 90230 unique_id port 90230 terminate_cause User-Request 90230 bytes_out 28503 90230 bytes_in 28924 90230 station_ip 94.241.181.120 90230 port 15728712 90230 nas_port_type Virtual 90230 remote_ip 5.5.5.214 90232 username asadi 90232 unique_id port 90232 terminate_cause User-Request 90232 bytes_out 40753 90232 bytes_in 639114 90232 station_ip 83.122.214.222 90232 port 15728715 90232 nas_port_type Virtual 90232 remote_ip 5.5.5.249 90236 username amirabbas 90236 unique_id port 90236 terminate_cause User-Request 90236 bytes_out 1178064 90236 bytes_in 9607916 90236 station_ip 31.57.161.1 90236 port 15728714 90236 nas_port_type Virtual 90236 remote_ip 5.5.5.213 90242 username zamanialireza 90242 unique_id port 90242 terminate_cause User-Request 90242 bytes_out 0 90242 bytes_in 0 90242 station_ip 5.119.62.109 90242 port 15728722 90242 nas_port_type Virtual 90242 remote_ip 5.5.5.210 90247 username madadi 90247 unique_id port 90247 terminate_cause Lost-Carrier 90247 bytes_out 32916 90247 bytes_in 203873 90247 station_ip 5.119.99.37 90247 port 15728717 90247 nas_port_type Virtual 90247 remote_ip 5.5.5.212 90249 username madadi 90249 unique_id port 90249 terminate_cause User-Request 90249 bytes_out 195011 90249 bytes_in 1460988 90249 station_ip 5.119.161.22 90249 port 15728727 90249 nas_port_type Virtual 90249 remote_ip 5.5.5.207 90250 username asadi 90250 unique_id port 90250 terminate_cause User-Request 90250 bytes_out 273835 90250 bytes_in 8686186 90250 station_ip 83.122.214.222 90250 port 15728729 90250 nas_port_type Virtual 90250 remote_ip 5.5.5.249 90253 username forozande 90253 unique_id port 90253 terminate_cause User-Request 90253 bytes_out 42300 90253 bytes_in 356800 90253 station_ip 83.122.49.223 90253 port 15728734 90253 nas_port_type Virtual 90253 remote_ip 5.5.5.205 90255 username forozande 90255 unique_id port 90255 terminate_cause User-Request 90255 bytes_out 38095 90255 bytes_in 422203 90255 station_ip 83.122.49.223 90255 port 15728735 90255 nas_port_type Virtual 90255 remote_ip 5.5.5.205 90258 username forozande 90258 unique_id port 90258 terminate_cause User-Request 90258 bytes_out 33118 90258 bytes_in 129701 90258 station_ip 113.203.82.181 90258 port 15728738 90258 nas_port_type Virtual 90258 remote_ip 5.5.5.203 90261 username aminvpn 90261 mac 90261 bytes_out 188429 90261 bytes_in 228215 90261 station_ip 83.122.206.79 90261 port 35 90261 unique_id port 90261 remote_ip 10.8.1.10 90262 username forozande 90262 unique_id port 90262 terminate_cause User-Request 90262 bytes_out 44889 90262 bytes_in 53004 90262 station_ip 83.122.151.144 90262 port 15728741 90262 nas_port_type Virtual 90262 remote_ip 5.5.5.200 90264 username madadi 90264 kill_reason Relative expiration date has reached 90264 unique_id port 90264 bytes_out 0 90264 bytes_in 0 90264 station_ip 5.119.106.232 90264 port 15728742 90234 bytes_out 164176 90234 bytes_in 4200897 90234 station_ip 83.122.214.222 90234 port 15728716 90234 nas_port_type Virtual 90234 remote_ip 5.5.5.249 90239 username asadi 90239 unique_id port 90239 terminate_cause User-Request 90239 bytes_out 216545 90239 bytes_in 3096093 90239 station_ip 83.122.214.222 90239 port 15728719 90239 nas_port_type Virtual 90239 remote_ip 5.5.5.249 90245 username asadi 90245 unique_id port 90245 terminate_cause User-Request 90245 bytes_out 262550 90245 bytes_in 3218463 90245 station_ip 83.122.214.222 90245 port 15728724 90245 nas_port_type Virtual 90245 remote_ip 5.5.5.249 90251 username alinezhad 90251 unique_id port 90251 terminate_cause User-Request 90251 bytes_out 0 90251 bytes_in 0 90251 station_ip 5.202.6.172 90251 port 15728730 90251 nas_port_type Virtual 90251 remote_ip 5.5.5.219 90257 username forozande 90257 unique_id port 90257 terminate_cause User-Request 90257 bytes_out 22747 90257 bytes_in 41810 90257 station_ip 83.122.49.223 90257 port 15728737 90257 nas_port_type Virtual 90257 remote_ip 5.5.5.205 90259 username caferibar 90259 unique_id port 90259 terminate_cause Lost-Carrier 90259 bytes_out 847850 90259 bytes_in 9093557 90259 station_ip 5.134.149.69 90259 port 15728708 90259 nas_port_type Virtual 90259 remote_ip 5.5.5.216 90266 username madadi 90266 kill_reason Relative expiration date has reached 90266 unique_id port 90266 bytes_out 0 90266 bytes_in 0 90266 station_ip 5.119.106.232 90266 port 15728744 90266 nas_port_type Virtual 90267 username madadi 90267 kill_reason Relative expiration date has reached 90267 unique_id port 90267 bytes_out 0 90267 bytes_in 0 90267 station_ip 5.119.106.232 90267 port 15728745 90267 nas_port_type Virtual 90271 username alinezhad 90271 unique_id port 90271 terminate_cause User-Request 90271 bytes_out 0 90271 bytes_in 0 90271 station_ip 5.202.6.172 90271 port 15728747 90271 nas_port_type Virtual 90271 remote_ip 5.5.5.219 90272 username caferibar 90272 unique_id port 90272 terminate_cause Lost-Carrier 90272 bytes_out 2684404 90272 bytes_in 68140850 90272 station_ip 94.24.86.193 90272 port 15728732 90272 nas_port_type Virtual 90272 remote_ip 5.5.5.206 90274 username mahdixz 90274 unique_id port 90274 terminate_cause User-Request 90274 bytes_out 2087653 90274 bytes_in 19052268 90274 station_ip 151.235.104.45 90274 port 15728739 90274 nas_port_type Virtual 90274 remote_ip 5.5.5.202 90277 username madadi 90277 kill_reason Relative expiration date has reached 90277 unique_id port 90277 bytes_out 0 90277 bytes_in 0 90277 station_ip 5.120.166.141 90277 port 15728749 90277 nas_port_type Virtual 90281 username asadi 90281 unique_id port 90281 terminate_cause User-Request 90281 bytes_out 185666 90281 bytes_in 3614292 90281 station_ip 83.122.214.222 90281 port 15728754 90281 nas_port_type Virtual 90281 remote_ip 5.5.5.249 90285 username forozande 90285 unique_id port 90285 terminate_cause User-Request 90285 bytes_out 44660 90285 bytes_in 232992 90285 station_ip 37.129.230.22 90285 port 15728759 90285 nas_port_type Virtual 90285 remote_ip 5.5.5.193 90291 username caferibar 90291 kill_reason Maximum check online fails reached 90291 unique_id port 90291 bytes_out 589081 90291 bytes_in 3269086 90291 station_ip 5.119.142.62 90291 port 15728765 90291 nas_port_type Virtual 90291 remote_ip 5.5.5.241 90292 username aminvpn 90292 mac 90292 bytes_out 1116387 90292 bytes_in 10942422 90292 station_ip 83.122.152.212 90292 port 21 90292 unique_id port 90292 remote_ip 10.8.0.6 90293 username caferibar 90293 unique_id port 90293 terminate_cause User-Request 90293 bytes_out 20093 90293 bytes_in 45953 90252 terminate_cause User-Request 90252 bytes_out 115180 90252 bytes_in 666652 90252 station_ip 37.129.108.155 90252 port 15728733 90252 nas_port_type Virtual 90252 remote_ip 5.5.5.211 90254 username aminvpn 90254 mac 90254 bytes_out 303884 90254 bytes_in 475189 90254 station_ip 83.123.198.64 90254 port 21 90254 unique_id port 90254 remote_ip 10.8.0.6 90256 username aminvpn 90256 mac 90256 bytes_out 0 90256 bytes_in 0 90256 station_ip 83.122.206.79 90256 port 35 90256 unique_id port 90256 remote_ip 10.8.1.10 90260 username aminvpn 90260 unique_id port 90260 terminate_cause Lost-Carrier 90260 bytes_out 2595857 90260 bytes_in 13172405 90260 station_ip 5.120.171.52 90260 port 15728710 90260 nas_port_type Virtual 90260 remote_ip 5.5.5.215 90276 username caferibar 90276 unique_id port 90276 terminate_cause Lost-Carrier 90276 bytes_out 439880 90276 bytes_in 2740884 90276 station_ip 5.134.154.205 90276 port 15728736 90276 nas_port_type Virtual 90276 remote_ip 5.5.5.204 90279 username madadi 90279 kill_reason Relative expiration date has reached 90279 unique_id port 90279 bytes_out 0 90279 bytes_in 0 90279 station_ip 5.120.166.141 90279 port 15728751 90279 nas_port_type Virtual 90283 username caferibar 90283 unique_id port 90283 terminate_cause User-Request 90283 bytes_out 51229 90283 bytes_in 666823 90283 station_ip 83.122.234.88 90283 port 15728756 90283 nas_port_type Virtual 90283 remote_ip 5.5.5.196 90295 username mahdixz 90295 unique_id port 90295 terminate_cause Lost-Carrier 90295 bytes_out 836205 90295 bytes_in 3276289 90295 station_ip 151.235.104.45 90295 port 15728763 90295 nas_port_type Virtual 90295 remote_ip 5.5.5.202 90299 username forozande 90299 unique_id port 90299 terminate_cause User-Request 90299 bytes_out 43467 90299 bytes_in 400211 90299 station_ip 113.203.30.125 90299 port 15728774 90299 nas_port_type Virtual 90299 remote_ip 5.5.5.188 90300 username forozande 90300 unique_id port 90300 terminate_cause User-Request 90300 bytes_out 53428 90300 bytes_in 238218 90300 station_ip 113.203.30.125 90300 port 15728775 90300 nas_port_type Virtual 90300 remote_ip 5.5.5.188 90301 username mahdixz 90301 unique_id port 90301 terminate_cause Lost-Carrier 90301 bytes_out 1046604 90301 bytes_in 11018951 90301 station_ip 151.235.104.45 90301 port 15728772 90301 nas_port_type Virtual 90301 remote_ip 5.5.5.189 90303 username asadi 90303 unique_id port 90303 terminate_cause User-Request 90303 bytes_out 98977 90303 bytes_in 1489273 90303 station_ip 83.122.214.222 90303 port 15728777 90303 nas_port_type Virtual 90303 remote_ip 5.5.5.249 90308 username forozande 90308 unique_id port 90308 terminate_cause User-Request 90308 bytes_out 49533 90308 bytes_in 290278 90308 station_ip 83.122.11.111 90308 port 15728781 90308 nas_port_type Virtual 90308 remote_ip 5.5.5.186 90315 username madadi 90315 kill_reason Relative expiration date has reached 90315 unique_id port 90315 bytes_out 0 90315 bytes_in 0 90315 station_ip 5.120.117.179 90315 port 15728789 90315 nas_port_type Virtual 90319 username forozande 90319 unique_id port 90319 terminate_cause User-Request 90319 bytes_out 64166 90319 bytes_in 829211 90319 station_ip 83.123.206.178 90319 port 15728791 90319 nas_port_type Virtual 90319 remote_ip 5.5.5.182 90324 username caferibar 90324 unique_id port 90324 terminate_cause User-Request 90324 bytes_out 0 90324 bytes_in 0 90324 station_ip 92.114.75.230 90324 port 15728800 90324 nas_port_type Virtual 90324 remote_ip 5.5.5.178 90327 username zamanialireza 90327 unique_id port 90327 terminate_cause User-Request 90327 bytes_out 0 90327 bytes_in 0 90264 nas_port_type Virtual 90268 username amirabbas 90268 unique_id port 90268 terminate_cause Lost-Carrier 90268 bytes_out 4365499 90268 bytes_in 84855425 90268 station_ip 31.57.161.1 90268 port 15728731 90268 nas_port_type Virtual 90268 remote_ip 5.5.5.213 90270 username aminvpn 90270 unique_id port 90270 terminate_cause Lost-Carrier 90270 bytes_out 392625 90270 bytes_in 2562848 90270 station_ip 5.120.130.94 90270 port 15728746 90270 nas_port_type Virtual 90270 remote_ip 5.5.5.199 90273 username ahmadipour 90273 unique_id port 90273 terminate_cause Lost-Carrier 90273 bytes_out 3309804 90273 bytes_in 57193656 90273 station_ip 83.123.37.43 90273 port 15728740 90273 nas_port_type Virtual 90273 remote_ip 5.5.5.201 90275 username alinezhad 90275 unique_id port 90275 terminate_cause User-Request 90275 bytes_out 0 90275 bytes_in 0 90275 station_ip 5.202.6.172 90275 port 15728748 90275 nas_port_type Virtual 90275 remote_ip 5.5.5.219 90280 username madadi 90280 kill_reason Relative expiration date has reached 90280 unique_id port 90280 bytes_out 0 90280 bytes_in 0 90280 station_ip 5.120.166.141 90280 port 15728752 90280 nas_port_type Virtual 90286 username forozande 90286 unique_id port 90286 terminate_cause User-Request 90286 bytes_out 69276 90286 bytes_in 52551 90286 station_ip 37.129.230.22 90286 port 15728761 90286 nas_port_type Virtual 90286 remote_ip 5.5.5.193 90288 username khalili 90288 unique_id port 90288 terminate_cause Lost-Carrier 90288 bytes_out 1254141 90288 bytes_in 14372680 90288 station_ip 5.119.224.103 90288 port 15728650 90288 nas_port_type Virtual 90288 remote_ip 5.5.5.250 90290 username mammad 90290 unique_id port 90290 terminate_cause User-Request 90290 bytes_out 280324 90290 bytes_in 4060759 90290 station_ip 5.233.56.12 90290 port 15728762 90290 nas_port_type Virtual 90290 remote_ip 5.5.5.192 90296 username mahdixz 90296 unique_id port 90296 terminate_cause User-Request 90296 bytes_out 618829 90296 bytes_in 14792541 90296 station_ip 151.235.104.45 90296 port 15728769 90296 nas_port_type Virtual 90296 remote_ip 5.5.5.189 90298 username forozande 90298 unique_id port 90298 terminate_cause User-Request 90298 bytes_out 33268 90298 bytes_in 258398 90298 station_ip 113.203.30.125 90298 port 15728773 90298 nas_port_type Virtual 90298 remote_ip 5.5.5.188 90304 username mammad 90304 unique_id port 90304 terminate_cause User-Request 90304 bytes_out 2319815 90304 bytes_in 24961442 90304 station_ip 5.233.56.12 90304 port 15728766 90304 nas_port_type Virtual 90304 remote_ip 5.5.5.192 90312 username ahmadi 90312 unique_id port 90312 terminate_cause User-Request 90312 bytes_out 0 90312 bytes_in 0 90312 station_ip 37.129.15.251 90312 port 15728786 90312 nas_port_type Virtual 90312 remote_ip 5.5.5.183 90313 username forozande 90313 unique_id port 90313 terminate_cause User-Request 90313 bytes_out 29989 90313 bytes_in 285085 90313 station_ip 83.123.66.105 90313 port 15728788 90313 nas_port_type Virtual 90313 remote_ip 5.5.5.185 90316 username aminvpn 90316 mac 90316 bytes_out 1120443 90316 bytes_in 5040627 90316 station_ip 83.122.152.212 90316 port 21 90316 unique_id port 90316 remote_ip 10.8.0.6 90321 username asadi 90321 unique_id port 90321 terminate_cause User-Request 90321 bytes_out 119888 90321 bytes_in 3391951 90321 station_ip 83.122.214.222 90321 port 15728797 90321 nas_port_type Virtual 90321 remote_ip 5.5.5.249 90322 username madadi 90322 kill_reason Relative expiration date has reached 90322 unique_id port 90322 bytes_out 0 90322 bytes_in 0 90322 station_ip 5.120.117.179 90322 port 15728798 90322 nas_port_type Virtual 90333 username ahmadipour 90282 unique_id port 90282 terminate_cause User-Request 90282 bytes_out 0 90282 bytes_in 0 90282 station_ip 37.129.53.155 90282 port 15728755 90282 nas_port_type Virtual 90282 remote_ip 5.5.5.197 90284 username caferibar 90284 unique_id port 90284 terminate_cause User-Request 90284 bytes_out 207357 90284 bytes_in 1213497 90284 station_ip 94.24.87.142 90284 port 15728758 90284 nas_port_type Virtual 90284 remote_ip 5.5.5.194 90287 username mammad 90287 unique_id port 90287 terminate_cause User-Request 90287 bytes_out 407647 90287 bytes_in 2407992 90287 station_ip 5.233.56.12 90287 port 15728760 90287 nas_port_type Virtual 90287 remote_ip 5.5.5.192 90289 username alinezhad 90289 unique_id port 90289 terminate_cause User-Request 90289 bytes_out 0 90289 bytes_in 0 90289 station_ip 5.202.6.172 90289 port 15728764 90289 nas_port_type Virtual 90289 remote_ip 5.5.5.219 90294 username amir 90294 unique_id port 90294 terminate_cause Lost-Carrier 90294 bytes_out 1183030 90294 bytes_in 17155837 90294 station_ip 46.225.210.29 90294 port 15728753 90294 nas_port_type Virtual 90294 remote_ip 5.5.5.198 90309 username forozande 90309 unique_id port 90309 terminate_cause User-Request 90309 bytes_out 56129 90309 bytes_in 86969 90309 station_ip 83.123.66.105 90309 port 15728783 90309 nas_port_type Virtual 90309 remote_ip 5.5.5.185 90318 username alinezhad 90318 unique_id port 90318 terminate_cause User-Request 90318 bytes_out 0 90318 bytes_in 0 90318 station_ip 5.202.6.172 90318 port 15728790 90318 nas_port_type Virtual 90318 remote_ip 5.5.5.219 90323 username caferibar 90323 unique_id port 90323 terminate_cause User-Request 90323 bytes_out 2771793 90323 bytes_in 18077049 90323 station_ip 92.114.78.13 90323 port 15728787 90323 nas_port_type Virtual 90323 remote_ip 5.5.5.184 90325 username bcboard 90325 unique_id port 90325 terminate_cause User-Request 90325 bytes_out 985818 90325 bytes_in 9321658 90325 station_ip 113.203.79.186 90325 port 15728796 90325 nas_port_type Virtual 90325 remote_ip 5.5.5.180 90326 username caferibar 90326 unique_id port 90326 terminate_cause User-Request 90326 bytes_out 56997 90326 bytes_in 1138169 90326 station_ip 92.114.75.230 90326 port 15728801 90326 nas_port_type Virtual 90326 remote_ip 5.5.5.178 90328 username caferibar 90328 unique_id port 90328 terminate_cause User-Request 90328 bytes_out 0 90328 bytes_in 0 90328 station_ip 92.114.75.230 90328 port 15728802 90328 nas_port_type Virtual 90328 remote_ip 5.5.5.178 90329 username zamanialireza 90329 unique_id port 90329 terminate_cause User-Request 90329 bytes_out 0 90329 bytes_in 0 90329 station_ip 5.160.114.228 90329 port 15728804 90329 nas_port_type Virtual 90329 remote_ip 5.5.5.177 90330 username zamanialireza 90330 unique_id port 90330 terminate_cause User-Request 90330 bytes_out 0 90330 bytes_in 0 90330 station_ip 5.160.114.228 90330 port 15728805 90330 nas_port_type Virtual 90330 remote_ip 5.5.5.177 90332 username caferibar 90332 unique_id port 90332 terminate_cause NAS-Error 90332 bytes_out 0 90332 bytes_in 342 90332 station_ip 92.114.75.230 90332 port 15728806 90332 nas_port_type Virtual 90332 remote_ip 5.5.5.178 90334 username aminvpn 90334 unique_id port 90334 terminate_cause Lost-Carrier 90334 bytes_out 7611 90334 bytes_in 140174 90334 station_ip 5.119.133.141 90334 port 15728799 90334 nas_port_type Virtual 90334 remote_ip 5.5.5.179 90338 username caferibar 90338 unique_id port 90338 terminate_cause Lost-Carrier 90338 bytes_out 470284 90338 bytes_in 5530636 90338 station_ip 89.34.41.253 90338 port 15728811 90338 nas_port_type Virtual 90338 remote_ip 5.5.5.174 90293 station_ip 5.134.147.157 90293 port 15728767 90293 nas_port_type Virtual 90293 remote_ip 5.5.5.190 90297 username alinezhad 90297 unique_id port 90297 terminate_cause User-Request 90297 bytes_out 0 90297 bytes_in 0 90297 station_ip 5.202.6.172 90297 port 15728770 90297 nas_port_type Virtual 90297 remote_ip 5.5.5.219 90302 username amirabbas 90302 unique_id port 90302 terminate_cause User-Request 90302 bytes_out 6354866 90302 bytes_in 149957392 90302 station_ip 31.56.113.154 90302 port 15728757 90302 nas_port_type Virtual 90302 remote_ip 5.5.5.195 90305 username alinezhad 90305 unique_id port 90305 terminate_cause User-Request 90305 bytes_out 1400452 90305 bytes_in 14481310 90305 station_ip 5.202.6.172 90305 port 15728771 90305 nas_port_type Virtual 90305 remote_ip 5.5.5.219 90306 username forozande 90306 unique_id port 90306 terminate_cause User-Request 90306 bytes_out 0 90306 bytes_in 0 90306 station_ip 83.122.11.111 90306 port 15728778 90306 nas_port_type Virtual 90306 remote_ip 5.5.5.186 90307 username forozande 90307 unique_id port 90307 terminate_cause User-Request 90307 bytes_out 0 90307 bytes_in 0 90307 station_ip 83.122.11.111 90307 port 15728780 90307 nas_port_type Virtual 90307 remote_ip 5.5.5.186 90310 username forozande 90310 unique_id port 90310 terminate_cause User-Request 90310 bytes_out 79911 90310 bytes_in 982003 90310 station_ip 83.123.66.105 90310 port 15728784 90310 nas_port_type Virtual 90310 remote_ip 5.5.5.185 90311 username caferibar 90311 unique_id port 90311 terminate_cause User-Request 90311 bytes_out 0 90311 bytes_in 0 90311 station_ip 92.114.78.13 90311 port 15728785 90311 nas_port_type Virtual 90311 remote_ip 5.5.5.184 90314 username caferibar 90314 unique_id port 90314 terminate_cause Lost-Carrier 90314 bytes_out 665128 90314 bytes_in 4359306 90314 station_ip 5.119.56.202 90314 port 15728776 90314 nas_port_type Virtual 90314 remote_ip 5.5.5.187 90317 username mahbobeh 90317 unique_id port 90317 terminate_cause Lost-Carrier 90317 bytes_out 314733 90317 bytes_in 2391401 90317 station_ip 83.123.181.61 90317 port 15728768 90317 nas_port_type Virtual 90317 remote_ip 5.5.5.191 90320 username forozande 90320 unique_id port 90320 terminate_cause User-Request 90320 bytes_out 79394 90320 bytes_in 1789032 90320 station_ip 83.123.206.178 90320 port 15728795 90320 nas_port_type Virtual 90320 remote_ip 5.5.5.182 90331 username caferibar 90331 unique_id port 90331 terminate_cause Lost-Carrier 90331 bytes_out 802333 90331 bytes_in 17983608 90331 station_ip 89.47.69.117 90331 port 15728793 90331 nas_port_type Virtual 90331 remote_ip 5.5.5.181 90337 username caferibar 90337 unique_id port 90337 terminate_cause NAS-Error 90337 bytes_out 132 90337 bytes_in 224 90337 station_ip 94.241.181.120 90337 port 15728810 90337 nas_port_type Virtual 90337 remote_ip 5.5.5.176 90339 username forozande 90339 unique_id port 90339 terminate_cause User-Request 90339 bytes_out 75326 90339 bytes_in 519497 90339 station_ip 83.123.200.68 90339 port 15728815 90339 nas_port_type Virtual 90339 remote_ip 5.5.5.170 90340 username kamali 90340 unique_id port 90340 terminate_cause User-Request 90340 bytes_out 26690 90340 bytes_in 53637 90340 station_ip 37.129.137.145 90340 port 15728816 90340 nas_port_type Virtual 90340 remote_ip 5.5.5.221 90341 username caferibar 90341 unique_id port 90341 terminate_cause User-Request 90341 bytes_out 9204440 90341 bytes_in 303264180 90341 station_ip 94.241.181.120 90341 port 15728713 90341 nas_port_type Virtual 90341 remote_ip 5.5.5.214 90348 username alinezhad 90348 unique_id port 90348 terminate_cause User-Request 90348 bytes_out 0 90327 station_ip 5.160.114.228 90327 port 15728803 90327 nas_port_type Virtual 90327 remote_ip 5.5.5.177 90335 username zamanialireza 90335 unique_id port 90335 terminate_cause User-Request 90335 bytes_out 543411 90335 bytes_in 5564621 90335 station_ip 5.160.114.228 90335 port 15728807 90335 nas_port_type Virtual 90335 remote_ip 5.5.5.177 90343 username kamali 90343 unique_id port 90343 terminate_cause User-Request 90343 bytes_out 107632 90343 bytes_in 56677 90343 station_ip 37.129.137.145 90343 port 15728818 90343 nas_port_type Virtual 90343 remote_ip 5.5.5.221 90345 username caferibar 90345 unique_id port 90345 terminate_cause User-Request 90345 bytes_out 56276 90345 bytes_in 1037216 90345 station_ip 37.129.74.65 90345 port 15728824 90345 nas_port_type Virtual 90345 remote_ip 5.5.5.166 90346 username caferibar 90346 unique_id port 90346 terminate_cause Lost-Carrier 90346 bytes_out 1586628 90346 bytes_in 15396102 90346 station_ip 5.134.143.201 90346 port 15728814 90346 nas_port_type Virtual 90346 remote_ip 5.5.5.171 90354 username aminvpn 90354 mac 90354 bytes_out 0 90354 bytes_in 0 90354 station_ip 37.129.185.26 90354 port 21 90354 unique_id port 90354 remote_ip 10.8.0.6 90369 username aminvpn 90369 mac 90369 bytes_out 0 90369 bytes_in 0 90369 station_ip 37.129.185.26 90369 port 21 90369 unique_id port 90369 remote_ip 10.8.0.6 90372 username aminvpn 90372 mac 90372 bytes_out 0 90372 bytes_in 0 90372 station_ip 83.122.204.7 90372 port 23 90372 unique_id port 90372 remote_ip 10.8.0.6 90376 username aminvpn 90376 mac 90376 bytes_out 41122 90376 bytes_in 64887 90376 station_ip 83.122.204.7 90376 port 23 90376 unique_id port 90376 remote_ip 10.8.0.6 90379 username aminvpn 90379 mac 90379 bytes_out 0 90379 bytes_in 0 90379 station_ip 37.129.185.26 90379 port 21 90379 unique_id port 90379 remote_ip 10.8.0.6 90385 username aminvpn 90385 mac 90385 bytes_out 0 90385 bytes_in 0 90385 station_ip 37.129.185.26 90385 port 21 90385 unique_id port 90385 remote_ip 10.8.0.6 90387 username aminvpn 90387 mac 90387 bytes_out 0 90387 bytes_in 0 90387 station_ip 83.122.204.7 90387 port 23 90387 unique_id port 90387 remote_ip 10.8.0.6 90391 username aminvpn 90391 mac 90391 bytes_out 0 90391 bytes_in 0 90391 station_ip 37.129.185.26 90391 port 21 90391 unique_id port 90391 remote_ip 10.8.0.6 90395 username zamanialireza 90395 unique_id port 90395 terminate_cause User-Request 90395 bytes_out 79621840 90395 bytes_in 125362079 90395 station_ip 37.129.125.231 90395 port 15728813 90395 nas_port_type Virtual 90395 remote_ip 5.5.5.172 90397 username aminvpn 90397 mac 90397 bytes_out 0 90397 bytes_in 0 90397 station_ip 37.129.185.26 90397 port 21 90397 unique_id port 90397 remote_ip 10.8.0.6 90399 username aminvpn 90399 mac 90399 bytes_out 0 90399 bytes_in 0 90399 station_ip 83.122.204.7 90399 port 23 90399 unique_id port 90399 remote_ip 10.8.0.6 90401 username aminvpn 90401 mac 90401 bytes_out 0 90401 bytes_in 0 90401 station_ip 37.129.185.26 90401 port 21 90401 unique_id port 90401 remote_ip 10.8.0.6 90409 username shahrooz 90409 unique_id port 90409 terminate_cause Lost-Carrier 90409 bytes_out 4107543 90409 bytes_in 80652700 90409 station_ip 83.122.20.231 90409 port 15728825 90409 nas_port_type Virtual 90409 remote_ip 5.5.5.165 90411 username aminvpn 90411 mac 90411 bytes_out 0 90411 bytes_in 0 90411 station_ip 37.129.185.26 90333 unique_id port 90333 terminate_cause Lost-Carrier 90333 bytes_out 118694 90333 bytes_in 922428 90333 station_ip 83.123.99.59 90333 port 15728809 90333 nas_port_type Virtual 90333 remote_ip 5.5.5.175 90336 username caferibar 90336 unique_id port 90336 terminate_cause User-Request 90336 bytes_out 200384 90336 bytes_in 1536550 90336 station_ip 94.241.181.120 90336 port 15728808 90336 nas_port_type Virtual 90336 remote_ip 5.5.5.176 90347 username caferibar 90347 unique_id port 90347 terminate_cause User-Request 90347 bytes_out 1728300 90347 bytes_in 28299386 90347 station_ip 94.241.181.120 90347 port 15728820 90347 nas_port_type Virtual 90347 remote_ip 5.5.5.176 90351 username zamanialireza 90351 unique_id port 90351 terminate_cause User-Request 90351 bytes_out 15082508 90351 bytes_in 623570228 90351 station_ip 5.120.149.242 90351 port 15728826 90351 nas_port_type Virtual 90351 remote_ip 5.5.5.164 90355 username aminvpn 90355 mac 90355 bytes_out 0 90355 bytes_in 0 90355 station_ip 83.122.204.7 90355 port 23 90355 unique_id port 90355 remote_ip 10.8.0.6 90358 username aminvpn 90358 mac 90358 bytes_out 0 90358 bytes_in 0 90358 station_ip 83.122.204.7 90358 port 23 90358 unique_id port 90358 remote_ip 10.8.0.6 90360 username aminvpn 90360 mac 90360 bytes_out 0 90360 bytes_in 0 90360 station_ip 37.129.185.26 90360 port 21 90360 unique_id port 90360 remote_ip 10.8.0.6 90363 username aminvpn 90363 mac 90363 bytes_out 0 90363 bytes_in 0 90363 station_ip 83.122.204.7 90363 port 23 90363 unique_id port 90363 remote_ip 10.8.0.6 90365 username aminvpn 90365 mac 90365 bytes_out 0 90365 bytes_in 0 90365 station_ip 83.122.204.7 90365 port 23 90365 unique_id port 90365 remote_ip 10.8.0.6 90366 username aminvpn 90366 mac 90366 bytes_out 0 90366 bytes_in 0 90366 station_ip 37.129.185.26 90366 port 21 90366 unique_id port 90366 remote_ip 10.8.0.6 90373 username aminvpn 90373 mac 90373 bytes_out 0 90373 bytes_in 0 90373 station_ip 37.129.185.26 90373 port 21 90373 unique_id port 90373 remote_ip 10.8.0.6 90380 username aminvpn 90380 mac 90380 bytes_out 0 90380 bytes_in 0 90380 station_ip 83.122.204.7 90380 port 23 90380 unique_id port 90380 remote_ip 10.8.0.6 90384 username aminvpn 90384 mac 90384 bytes_out 0 90384 bytes_in 0 90384 station_ip 83.122.204.7 90384 port 23 90384 unique_id port 90384 remote_ip 10.8.0.6 90388 username aminvpn 90388 mac 90388 bytes_out 0 90388 bytes_in 0 90388 station_ip 37.129.185.26 90388 port 21 90388 unique_id port 90388 remote_ip 10.8.0.6 90392 username madadi 90392 kill_reason Relative expiration date has reached 90392 unique_id port 90392 bytes_out 0 90392 bytes_in 0 90392 station_ip 5.119.12.194 90392 port 15728839 90392 nas_port_type Virtual 90396 username aminvpn 90396 mac 90396 bytes_out 0 90396 bytes_in 0 90396 station_ip 83.122.204.7 90396 port 23 90396 unique_id port 90396 remote_ip 10.8.0.6 90402 username aminvpn 90402 mac 90402 bytes_out 0 90402 bytes_in 0 90402 station_ip 83.122.204.7 90402 port 23 90402 unique_id port 90402 remote_ip 10.8.0.6 90407 username aminvpn 90407 mac 90407 bytes_out 0 90407 bytes_in 0 90407 station_ip 37.129.185.26 90407 port 21 90407 unique_id port 90407 remote_ip 10.8.0.6 90424 username aminvpn 90424 mac 90424 bytes_out 0 90424 bytes_in 0 90424 station_ip 37.129.185.26 90424 port 21 90424 unique_id port 90342 username alinezhad 90342 unique_id port 90342 terminate_cause User-Request 90342 bytes_out 0 90342 bytes_in 0 90342 station_ip 5.202.6.172 90342 port 15728817 90342 nas_port_type Virtual 90342 remote_ip 5.5.5.219 90344 username caferibar 90344 unique_id port 90344 terminate_cause Lost-Carrier 90344 bytes_out 439928 90344 bytes_in 2850139 90344 station_ip 5.120.162.249 90344 port 15728819 90344 nas_port_type Virtual 90344 remote_ip 5.5.5.169 90349 username amirabbas 90349 unique_id port 90349 terminate_cause User-Request 90349 bytes_out 44098014 90349 bytes_in 1096896146 90349 station_ip 31.56.113.154 90349 port 15728792 90349 nas_port_type Virtual 90349 remote_ip 5.5.5.195 90352 username madadi 90352 kill_reason Relative expiration date has reached 90352 unique_id port 90352 bytes_out 0 90352 bytes_in 0 90352 station_ip 5.119.245.115 90352 port 15728830 90352 nas_port_type Virtual 90361 username aminvpn 90361 mac 90361 bytes_out 0 90361 bytes_in 0 90361 station_ip 83.122.204.7 90361 port 23 90361 unique_id port 90361 remote_ip 10.8.0.6 90364 username aminvpn 90364 mac 90364 bytes_out 0 90364 bytes_in 0 90364 station_ip 37.129.185.26 90364 port 21 90364 unique_id port 90364 remote_ip 10.8.0.6 90368 username aminvpn 90368 mac 90368 bytes_out 0 90368 bytes_in 0 90368 station_ip 83.122.204.7 90368 port 23 90368 unique_id port 90368 remote_ip 10.8.0.6 90371 username aminvpn 90371 mac 90371 bytes_out 0 90371 bytes_in 0 90371 station_ip 37.129.185.26 90371 port 21 90371 unique_id port 90371 remote_ip 10.8.0.6 90374 username aminvpn 90374 mac 90374 bytes_out 0 90374 bytes_in 0 90374 station_ip 83.122.204.7 90374 port 23 90374 unique_id port 90374 remote_ip 10.8.0.6 90375 username aminvpn 90375 mac 90375 bytes_out 0 90375 bytes_in 0 90375 station_ip 37.129.185.26 90375 port 21 90375 unique_id port 90375 remote_ip 10.8.0.6 90378 username aminvpn 90378 mac 90378 bytes_out 0 90378 bytes_in 0 90378 station_ip 83.122.204.7 90378 port 23 90378 unique_id port 90378 remote_ip 10.8.0.6 90381 username aminvpn 90381 mac 90381 bytes_out 0 90381 bytes_in 0 90381 station_ip 37.129.185.26 90381 port 21 90381 unique_id port 90381 remote_ip 10.8.0.6 90382 username aminvpn 90382 mac 90382 bytes_out 0 90382 bytes_in 0 90382 station_ip 83.122.204.7 90382 port 23 90382 unique_id port 90382 remote_ip 10.8.0.6 90386 username aminvpn 90386 unique_id port 90386 terminate_cause Lost-Carrier 90386 bytes_out 279106 90386 bytes_in 4059880 90386 station_ip 5.119.164.34 90386 port 15728833 90386 nas_port_type Virtual 90386 remote_ip 5.5.5.161 90390 username madadi 90390 kill_reason Relative expiration date has reached 90390 unique_id port 90390 bytes_out 0 90390 bytes_in 0 90390 station_ip 5.119.12.194 90390 port 15728838 90390 nas_port_type Virtual 90393 username aminvpn 90393 mac 90393 bytes_out 0 90393 bytes_in 0 90393 station_ip 83.122.204.7 90393 port 23 90393 unique_id port 90393 remote_ip 10.8.0.6 90400 username mammad 90400 unique_id port 90400 terminate_cause Lost-Carrier 90400 bytes_out 529826 90400 bytes_in 8927075 90400 station_ip 79.127.14.227 90400 port 15728835 90400 nas_port_type Virtual 90400 remote_ip 5.5.5.159 90404 username aminvpn 90404 mac 90404 bytes_out 0 90404 bytes_in 0 90404 station_ip 37.129.185.26 90404 port 21 90404 unique_id port 90404 remote_ip 10.8.0.6 90410 username aminvpn 90410 mac 90410 bytes_out 0 90348 bytes_in 0 90348 station_ip 5.202.6.172 90348 port 15728828 90348 nas_port_type Virtual 90348 remote_ip 5.5.5.219 90350 username mammad 90350 unique_id port 90350 terminate_cause User-Request 90350 bytes_out 2836104 90350 bytes_in 70779260 90350 station_ip 5.233.56.12 90350 port 15728822 90350 nas_port_type Virtual 90350 remote_ip 5.5.5.192 90353 username madadi 90353 kill_reason Relative expiration date has reached 90353 unique_id port 90353 bytes_out 0 90353 bytes_in 0 90353 station_ip 5.119.245.115 90353 port 15728831 90353 nas_port_type Virtual 90356 username caferibar 90356 unique_id port 90356 terminate_cause User-Request 90356 bytes_out 1787774 90356 bytes_in 1018265 90356 station_ip 94.241.181.120 90356 port 15728827 90356 nas_port_type Virtual 90356 remote_ip 5.5.5.176 90357 username aminvpn 90357 mac 90357 bytes_out 0 90357 bytes_in 0 90357 station_ip 37.129.185.26 90357 port 21 90357 unique_id port 90357 remote_ip 10.8.0.6 90359 username farhad 90359 unique_id port 90359 terminate_cause Lost-Carrier 90359 bytes_out 32980766 90359 bytes_in 145547276 90359 station_ip 5.119.205.115 90359 port 15728823 90359 nas_port_type Virtual 90359 remote_ip 5.5.5.167 90362 username aminvpn 90362 mac 90362 bytes_out 0 90362 bytes_in 0 90362 station_ip 37.129.185.26 90362 port 21 90362 unique_id port 90362 remote_ip 10.8.0.6 90367 username ahmadi 90367 unique_id port 90367 terminate_cause User-Request 90367 bytes_out 50118 90367 bytes_in 186137 90367 station_ip 83.122.62.6 90367 port 15728834 90367 nas_port_type Virtual 90367 remote_ip 5.5.5.160 90370 username aminvpn 90370 mac 90370 bytes_out 0 90370 bytes_in 0 90370 station_ip 83.122.204.7 90370 port 23 90370 unique_id port 90370 remote_ip 10.8.0.6 90377 username aminvpn 90377 mac 90377 bytes_out 0 90377 bytes_in 0 90377 station_ip 37.129.185.26 90377 port 21 90377 unique_id port 90377 remote_ip 10.8.0.6 90383 username aminvpn 90383 mac 90383 bytes_out 0 90383 bytes_in 0 90383 station_ip 37.129.185.26 90383 port 21 90383 unique_id port 90383 remote_ip 10.8.0.6 90389 username aminvpn 90389 mac 90389 bytes_out 53011 90389 bytes_in 79530 90389 station_ip 83.122.204.7 90389 port 23 90389 unique_id port 90389 remote_ip 10.8.0.6 90394 username aminvpn 90394 mac 90394 bytes_out 0 90394 bytes_in 0 90394 station_ip 37.129.185.26 90394 port 21 90394 unique_id port 90394 remote_ip 10.8.0.6 90398 username khalili 90398 unique_id port 90398 terminate_cause Lost-Carrier 90398 bytes_out 2567400 90398 bytes_in 19086570 90398 station_ip 5.119.224.103 90398 port 15728782 90398 nas_port_type Virtual 90398 remote_ip 5.5.5.250 90403 username asadi 90403 unique_id port 90403 terminate_cause User-Request 90403 bytes_out 164142 90403 bytes_in 1837894 90403 station_ip 37.129.29.218 90403 port 15728841 90403 nas_port_type Virtual 90403 remote_ip 5.5.5.157 90405 username forozande 90405 unique_id port 90405 terminate_cause User-Request 90405 bytes_out 99846 90405 bytes_in 1323532 90405 station_ip 83.122.223.240 90405 port 15728843 90405 nas_port_type Virtual 90405 remote_ip 5.5.5.155 90406 username aminvpn 90406 mac 90406 bytes_out 0 90406 bytes_in 0 90406 station_ip 83.122.204.7 90406 port 23 90406 unique_id port 90406 remote_ip 10.8.0.6 90408 username avaanna 90408 unique_id port 90408 terminate_cause User-Request 90408 bytes_out 28067 90408 bytes_in 57254 90408 station_ip 83.122.210.198 90408 port 15728844 90408 nas_port_type Virtual 90408 remote_ip 5.5.5.235 90410 bytes_in 0 90410 station_ip 83.122.204.7 90410 port 23 90410 unique_id port 90410 remote_ip 10.8.0.6 90412 username asadi 90412 unique_id port 90412 terminate_cause User-Request 90412 bytes_out 164902 90412 bytes_in 4258803 90412 station_ip 37.129.29.218 90412 port 15728845 90412 nas_port_type Virtual 90412 remote_ip 5.5.5.157 90414 username farhad 90414 unique_id port 90414 terminate_cause Lost-Carrier 90414 bytes_out 31745379 90414 bytes_in 212194239 90414 station_ip 5.119.69.205 90414 port 15728832 90414 nas_port_type Virtual 90414 remote_ip 5.5.5.162 90418 username aminvpn 90418 mac 90418 bytes_out 0 90418 bytes_in 0 90418 station_ip 37.129.185.26 90418 port 21 90418 unique_id port 90418 remote_ip 10.8.0.6 90419 username aminvpn 90419 mac 90419 bytes_out 0 90419 bytes_in 0 90419 station_ip 83.122.204.7 90419 port 23 90419 unique_id port 90419 remote_ip 10.8.0.6 90422 username aminvpn 90422 mac 90422 bytes_out 0 90422 bytes_in 0 90422 station_ip 37.129.185.26 90422 port 21 90422 unique_id port 90422 remote_ip 10.8.0.6 90426 username aminvpn 90426 mac 90426 bytes_out 0 90426 bytes_in 0 90426 station_ip 37.129.185.26 90426 port 21 90426 unique_id port 90426 remote_ip 10.8.0.6 90433 username aminvpn 90433 mac 90433 bytes_out 0 90433 bytes_in 0 90433 station_ip 37.129.185.26 90433 port 21 90433 unique_id port 90433 remote_ip 10.8.0.6 90436 username aminvpn 90436 mac 90436 bytes_out 0 90436 bytes_in 0 90436 station_ip 37.129.185.26 90436 port 21 90436 unique_id port 90436 remote_ip 10.8.0.6 90439 username aminvpn 90439 mac 90439 bytes_out 0 90439 bytes_in 0 90439 station_ip 83.122.204.7 90439 port 23 90439 unique_id port 90439 remote_ip 10.8.0.6 90443 username caferibar 90443 unique_id port 90443 terminate_cause Lost-Carrier 90443 bytes_out 485681 90443 bytes_in 8141265 90443 station_ip 89.34.144.172 90443 port 15728842 90443 nas_port_type Virtual 90443 remote_ip 5.5.5.156 90446 username aminvpn 90446 mac 90446 bytes_out 0 90446 bytes_in 0 90446 station_ip 37.129.185.26 90446 port 21 90446 unique_id port 90446 remote_ip 10.8.0.6 90447 username forozande 90447 unique_id port 90447 terminate_cause User-Request 90447 bytes_out 49052 90447 bytes_in 353544 90447 station_ip 83.122.105.128 90447 port 15728849 90447 nas_port_type Virtual 90447 remote_ip 5.5.5.153 90452 username arabpour 90452 unique_id port 90452 terminate_cause User-Request 90452 bytes_out 492970 90452 bytes_in 15460382 90452 station_ip 31.2.227.36 90452 port 15728854 90452 nas_port_type Virtual 90452 remote_ip 5.5.5.151 90462 username caferibar 90462 unique_id port 90462 terminate_cause Lost-Carrier 90462 bytes_out 151042 90462 bytes_in 589916 90462 station_ip 5.119.171.29 90462 port 15728856 90462 nas_port_type Virtual 90462 remote_ip 5.5.5.150 90464 username sadegh 90464 unique_id port 90464 terminate_cause User-Request 90464 bytes_out 384433 90464 bytes_in 1275098 90464 station_ip 5.119.235.167 90464 port 15728862 90464 nas_port_type Virtual 90464 remote_ip 5.5.5.147 90465 username ahmadipour 90465 unique_id port 90465 terminate_cause Lost-Carrier 90465 bytes_out 3064277 90465 bytes_in 66619881 90465 station_ip 83.123.37.43 90465 port 15728865 90465 nas_port_type Virtual 90465 remote_ip 5.5.5.201 90468 username caferibar 90468 unique_id port 90468 terminate_cause Lost-Carrier 90468 bytes_out 104493 90468 bytes_in 397275 90468 station_ip 5.119.235.82 90468 port 15728866 90468 nas_port_type Virtual 90411 port 21 90411 unique_id port 90411 remote_ip 10.8.0.6 90416 username caferibar 90416 unique_id port 90416 terminate_cause Lost-Carrier 90416 bytes_out 748754 90416 bytes_in 16389121 90416 station_ip 5.62.222.233 90416 port 15728829 90416 nas_port_type Virtual 90416 remote_ip 5.5.5.163 90420 username aminvpn 90420 mac 90420 bytes_out 0 90420 bytes_in 0 90420 station_ip 37.129.185.26 90420 port 21 90420 unique_id port 90420 remote_ip 10.8.0.6 90423 username aminvpn 90423 mac 90423 bytes_out 0 90423 bytes_in 0 90423 station_ip 83.122.204.7 90423 port 23 90423 unique_id port 90423 remote_ip 10.8.0.6 90427 username aminvpn 90427 mac 90427 bytes_out 0 90427 bytes_in 0 90427 station_ip 83.122.204.7 90427 port 23 90427 unique_id port 90427 remote_ip 10.8.0.6 90429 username aminvpn 90429 mac 90429 bytes_out 0 90429 bytes_in 0 90429 station_ip 83.122.204.7 90429 port 23 90429 unique_id port 90429 remote_ip 10.8.0.6 90431 username forozande 90431 unique_id port 90431 terminate_cause User-Request 90431 bytes_out 36861 90431 bytes_in 131343 90431 station_ip 83.122.215.7 90431 port 15728846 90431 nas_port_type Virtual 90431 remote_ip 5.5.5.154 90437 username aminvpn 90437 mac 90437 bytes_out 40731 90437 bytes_in 74600 90437 station_ip 83.122.204.7 90437 port 23 90437 unique_id port 90437 remote_ip 10.8.0.6 90440 username ksrkrgr 90440 unique_id port 90440 terminate_cause User-Request 90440 bytes_out 3961933 90440 bytes_in 105257377 90440 station_ip 2.184.5.128 90440 port 15728836 90440 nas_port_type Virtual 90440 remote_ip 5.5.5.234 90442 username aminvpn 90442 mac 90442 bytes_out 0 90442 bytes_in 0 90442 station_ip 83.122.204.7 90442 port 23 90442 unique_id port 90442 remote_ip 10.8.0.6 90444 username aminvpn 90444 mac 90444 bytes_out 0 90444 bytes_in 0 90444 station_ip 37.129.185.26 90444 port 21 90444 unique_id port 90444 remote_ip 10.8.0.6 90451 username forozande 90451 unique_id port 90451 terminate_cause User-Request 90451 bytes_out 40859 90451 bytes_in 92971 90451 station_ip 83.123.221.34 90451 port 15728853 90451 nas_port_type Virtual 90451 remote_ip 5.5.5.152 90453 username ksrkrgr 90453 unique_id port 90453 terminate_cause User-Request 90453 bytes_out 2582001 90453 bytes_in 22615597 90453 station_ip 2.184.5.128 90453 port 15728848 90453 nas_port_type Virtual 90453 remote_ip 5.5.5.234 90454 username mahbobeh 90454 unique_id port 90454 terminate_cause Lost-Carrier 90454 bytes_out 409678 90454 bytes_in 8874400 90454 station_ip 83.123.181.61 90454 port 15728837 90454 nas_port_type Virtual 90454 remote_ip 5.5.5.191 90458 username heydari 90458 unique_id port 90458 terminate_cause User-Request 90458 bytes_out 0 90458 bytes_in 0 90458 station_ip 5.119.136.10 90458 port 15728858 90458 nas_port_type Virtual 90458 remote_ip 5.5.5.149 90460 username forozande 90460 unique_id port 90460 terminate_cause User-Request 90460 bytes_out 52682 90460 bytes_in 119414 90460 station_ip 113.203.72.34 90460 port 15728859 90460 nas_port_type Virtual 90460 remote_ip 5.5.5.148 90463 username forozande 90463 unique_id port 90463 terminate_cause User-Request 90463 bytes_out 0 90463 bytes_in 0 90463 station_ip 113.203.72.34 90463 port 15728861 90463 nas_port_type Virtual 90463 remote_ip 5.5.5.148 90470 username aminvpn 90470 unique_id port 90470 terminate_cause User-Request 90470 bytes_out 666215 90470 bytes_in 2099899 90470 station_ip 83.122.204.7 90470 port 15728857 90470 nas_port_type Virtual 90470 remote_ip 5.5.5.168 90413 username aminvpn 90413 mac 90413 bytes_out 0 90413 bytes_in 0 90413 station_ip 83.122.204.7 90413 port 23 90413 unique_id port 90413 remote_ip 10.8.0.6 90415 username aminvpn 90415 mac 90415 bytes_out 0 90415 bytes_in 0 90415 station_ip 37.129.185.26 90415 port 21 90415 unique_id port 90415 remote_ip 10.8.0.6 90417 username aminvpn 90417 mac 90417 bytes_out 0 90417 bytes_in 0 90417 station_ip 83.122.204.7 90417 port 23 90417 unique_id port 90417 remote_ip 10.8.0.6 90421 username aminvpn 90421 mac 90421 bytes_out 0 90421 bytes_in 0 90421 station_ip 83.122.204.7 90421 port 23 90421 unique_id port 90421 remote_ip 10.8.0.6 90425 username aminvpn 90425 mac 90425 bytes_out 0 90425 bytes_in 0 90425 station_ip 83.122.204.7 90425 port 23 90425 unique_id port 90425 remote_ip 10.8.0.6 90430 username aminvpn 90430 mac 90430 bytes_out 0 90430 bytes_in 0 90430 station_ip 37.129.185.26 90430 port 21 90430 unique_id port 90430 remote_ip 10.8.0.6 90432 username aminvpn 90432 mac 90432 bytes_out 0 90432 bytes_in 0 90432 station_ip 83.122.204.7 90432 port 23 90432 unique_id port 90432 remote_ip 10.8.0.6 90434 username alinezhad 90434 unique_id port 90434 terminate_cause User-Request 90434 bytes_out 0 90434 bytes_in 0 90434 station_ip 5.202.6.172 90434 port 15728847 90434 nas_port_type Virtual 90434 remote_ip 5.5.5.219 90449 username forozande 90449 unique_id port 90449 terminate_cause User-Request 90449 bytes_out 16224 90449 bytes_in 43227 90449 station_ip 83.122.105.128 90449 port 15728851 90449 nas_port_type Virtual 90449 remote_ip 5.5.5.153 90461 username forozande 90461 unique_id port 90461 terminate_cause User-Request 90461 bytes_out 49151 90461 bytes_in 572169 90461 station_ip 113.203.72.34 90461 port 15728860 90461 nas_port_type Virtual 90461 remote_ip 5.5.5.148 90466 username alinezhad 90466 unique_id port 90466 terminate_cause User-Request 90466 bytes_out 0 90466 bytes_in 0 90466 station_ip 5.202.19.151 90466 port 15728868 90466 nas_port_type Virtual 90466 remote_ip 5.5.5.145 90467 username alinezhad 90467 unique_id port 90467 terminate_cause User-Request 90467 bytes_out 0 90467 bytes_in 0 90467 station_ip 5.202.19.151 90467 port 15728869 90467 nas_port_type Virtual 90467 remote_ip 5.5.5.145 90473 username alinezhad 90473 unique_id port 90473 terminate_cause NAS-Error 90473 bytes_out 84 90473 bytes_in 170 90473 station_ip 5.202.19.151 90473 port 15728871 90473 nas_port_type Virtual 90473 remote_ip 5.5.5.145 90475 username alinezhad 90475 unique_id port 90475 terminate_cause User-Request 90475 bytes_out 0 90475 bytes_in 0 90475 station_ip 5.202.10.15 90475 port 15728876 90475 nas_port_type Virtual 90475 remote_ip 5.5.5.143 90484 username caferibar 90484 unique_id port 90484 terminate_cause Lost-Carrier 90484 bytes_out 1698951 90484 bytes_in 20579580 90484 station_ip 5.119.142.62 90484 port 15728879 90484 nas_port_type Virtual 90484 remote_ip 5.5.5.241 90487 username madadi 90487 kill_reason Relative expiration date has reached 90487 unique_id port 90487 bytes_out 0 90487 bytes_in 0 90487 station_ip 5.120.130.170 90487 port 15728903 90487 nas_port_type Virtual 90489 username madadi 90489 kill_reason Relative expiration date has reached 90489 unique_id port 90489 bytes_out 0 90489 bytes_in 0 90489 station_ip 5.120.130.170 90489 port 15728906 90489 nas_port_type Virtual 90493 username asadi 90493 unique_id port 90493 terminate_cause User-Request 90493 bytes_out 6261 90493 bytes_in 23118 90424 remote_ip 10.8.0.6 90428 username aminvpn 90428 mac 90428 bytes_out 0 90428 bytes_in 0 90428 station_ip 37.129.185.26 90428 port 21 90428 unique_id port 90428 remote_ip 10.8.0.6 90435 username aminvpn 90435 mac 90435 bytes_out 0 90435 bytes_in 0 90435 station_ip 83.122.204.7 90435 port 23 90435 unique_id port 90435 remote_ip 10.8.0.6 90438 username aminvpn 90438 mac 90438 bytes_out 0 90438 bytes_in 0 90438 station_ip 37.129.185.26 90438 port 21 90438 unique_id port 90438 remote_ip 10.8.0.6 90441 username aminvpn 90441 mac 90441 bytes_out 0 90441 bytes_in 0 90441 station_ip 37.129.185.26 90441 port 21 90441 unique_id port 90441 remote_ip 10.8.0.6 90445 username aminvpn 90445 mac 90445 bytes_out 0 90445 bytes_in 0 90445 station_ip 83.122.204.7 90445 port 23 90445 unique_id port 90445 remote_ip 10.8.0.6 90448 username aminvpn 90448 kill_reason Maximum check online fails reached 90448 mac 90448 bytes_out 105919 90448 bytes_in 144497 90448 station_ip 83.122.204.7 90448 port 23 90448 unique_id port 90448 remote_ip 10.8.0.6 90450 username forozande 90450 unique_id port 90450 terminate_cause User-Request 90450 bytes_out 21115 90450 bytes_in 91464 90450 station_ip 83.122.105.128 90450 port 15728852 90450 nas_port_type Virtual 90450 remote_ip 5.5.5.153 90455 username ksrkrgr 90455 unique_id port 90455 terminate_cause User-Request 90455 bytes_out 937741 90455 bytes_in 9509053 90455 station_ip 2.184.5.128 90455 port 15728855 90455 nas_port_type Virtual 90455 remote_ip 5.5.5.234 90456 username mammad 90456 unique_id port 90456 terminate_cause User-Request 90456 bytes_out 3185900 90456 bytes_in 28275809 90456 station_ip 5.233.56.12 90456 port 15728850 90456 nas_port_type Virtual 90456 remote_ip 5.5.5.192 90457 username aminvpn 90457 unique_id port 90457 terminate_cause User-Request 90457 bytes_out 4149252 90457 bytes_in 57036544 90457 station_ip 83.122.204.7 90457 port 15728821 90457 nas_port_type Virtual 90457 remote_ip 5.5.5.168 90459 username arman 90459 unique_id port 90459 terminate_cause Lost-Carrier 90459 bytes_out 20922163 90459 bytes_in 381968957 90459 station_ip 5.119.100.149 90459 port 15728812 90459 nas_port_type Virtual 90459 remote_ip 5.5.5.173 90469 username alinezhad 90469 unique_id port 90469 terminate_cause User-Request 90469 bytes_out 0 90469 bytes_in 0 90469 station_ip 5.202.19.151 90469 port 15728870 90469 nas_port_type Virtual 90469 remote_ip 5.5.5.145 90472 username alinezhad 90472 unique_id port 90472 terminate_cause User-Request 90472 bytes_out 0 90472 bytes_in 0 90472 station_ip 5.202.10.15 90472 port 15728874 90472 nas_port_type Virtual 90472 remote_ip 5.5.5.143 90476 username aminvpn 90476 mac 90476 bytes_out 0 90476 bytes_in 0 90476 station_ip 83.122.204.7 90476 port 35 90476 unique_id port 90476 remote_ip 10.8.1.10 90477 username mahbobeh 90477 unique_id port 90477 terminate_cause Lost-Carrier 90477 bytes_out 327366 90477 bytes_in 6154841 90477 station_ip 83.123.181.61 90477 port 15728864 90477 nas_port_type Virtual 90477 remote_ip 5.5.5.191 90482 username caferibar 90482 unique_id port 90482 terminate_cause User-Request 90482 bytes_out 17398 90482 bytes_in 249047 90482 station_ip 113.203.114.123 90482 port 15728886 90482 nas_port_type Virtual 90482 remote_ip 5.5.5.140 90483 username asadi 90483 unique_id port 90483 terminate_cause User-Request 90483 bytes_out 178116 90483 bytes_in 3221958 90483 station_ip 37.129.29.218 90483 port 15728897 90483 nas_port_type Virtual 90483 remote_ip 5.5.5.157 90468 remote_ip 5.5.5.146 90471 username mammad 90471 unique_id port 90471 terminate_cause User-Request 90471 bytes_out 1045121 90471 bytes_in 18487880 90471 station_ip 5.233.56.12 90471 port 15728867 90471 nas_port_type Virtual 90471 remote_ip 5.5.5.192 90474 username mammad 90474 unique_id port 90474 terminate_cause User-Request 90474 bytes_out 289901 90474 bytes_in 7921077 90474 station_ip 5.233.56.12 90474 port 15728872 90474 nas_port_type Virtual 90474 remote_ip 5.5.5.192 90478 username aminvpn 90478 mac 90478 bytes_out 0 90478 bytes_in 0 90478 station_ip 83.122.204.7 90478 port 35 90478 unique_id port 90478 remote_ip 10.8.1.10 90480 username sadegh 90480 unique_id port 90480 terminate_cause User-Request 90480 bytes_out 3263653 90480 bytes_in 68443047 90480 station_ip 5.119.235.167 90480 port 15728880 90480 nas_port_type Virtual 90480 remote_ip 5.5.5.147 90481 username zamanialireza 90481 unique_id port 90481 terminate_cause User-Request 90481 bytes_out 0 90481 bytes_in 0 90481 station_ip 113.203.46.58 90481 port 15728885 90481 nas_port_type Virtual 90481 remote_ip 5.5.5.141 90488 username madadi 90488 kill_reason Relative expiration date has reached 90488 unique_id port 90488 bytes_out 0 90488 bytes_in 0 90488 station_ip 5.120.130.170 90488 port 15728904 90488 nas_port_type Virtual 90498 username madadi2 90498 kill_reason Maximum number of concurrent logins reached 90498 unique_id port 90498 bytes_out 0 90498 bytes_in 0 90498 station_ip 5.119.102.41 90498 port 15728919 90498 nas_port_type Virtual 90499 username madadi2 90499 kill_reason Maximum number of concurrent logins reached 90499 unique_id port 90499 bytes_out 0 90499 bytes_in 0 90499 station_ip 5.119.226.245 90499 port 15728920 90499 nas_port_type Virtual 90503 username madadi2 90503 kill_reason Maximum number of concurrent logins reached 90503 unique_id port 90503 bytes_out 0 90503 bytes_in 0 90503 station_ip 5.119.226.245 90503 port 15728923 90503 nas_port_type Virtual 90507 username caferibar 90507 unique_id port 90507 terminate_cause User-Request 90507 bytes_out 16046 90507 bytes_in 17716 90507 station_ip 93.114.27.196 90507 port 15728926 90507 nas_port_type Virtual 90507 remote_ip 5.5.5.142 90510 username madadi2 90510 unique_id port 90510 terminate_cause Lost-Carrier 90510 bytes_out 197986 90510 bytes_in 1529691 90510 station_ip 5.119.140.130 90510 port 15728915 90510 nas_port_type Virtual 90510 remote_ip 5.5.5.135 90515 username kamali 90515 unique_id port 90515 terminate_cause User-Request 90515 bytes_out 196248 90515 bytes_in 305590 90515 station_ip 37.129.137.145 90515 port 15728931 90515 nas_port_type Virtual 90515 remote_ip 5.5.5.221 90517 username alinezhad 90517 unique_id port 90517 terminate_cause User-Request 90517 bytes_out 4491126 90517 bytes_in 153353042 90517 station_ip 5.202.10.15 90517 port 15728878 90517 nas_port_type Virtual 90517 remote_ip 5.5.5.143 90518 username madadi2 90518 unique_id port 90518 terminate_cause Lost-Carrier 90518 bytes_out 275399 90518 bytes_in 4170236 90518 station_ip 5.119.226.245 90518 port 15728925 90518 nas_port_type Virtual 90518 remote_ip 5.5.5.133 90522 username alireza1 90522 unique_id port 90522 terminate_cause User-Request 90522 bytes_out 22476 90522 bytes_in 177378 90522 station_ip 5.119.134.172 90522 port 15728942 90522 nas_port_type Virtual 90522 remote_ip 5.5.5.128 90523 username madadi2 90523 unique_id port 90523 terminate_cause Lost-Carrier 90523 bytes_out 68562 90523 bytes_in 324914 90523 station_ip 5.119.224.165 90523 port 15728935 90523 nas_port_type Virtual 90523 remote_ip 5.5.5.130 90526 username caferibar 90526 unique_id port 90479 username caferibar 90479 unique_id port 90479 terminate_cause User-Request 90479 bytes_out 0 90479 bytes_in 0 90479 station_ip 93.114.27.196 90479 port 15728881 90479 nas_port_type Virtual 90479 remote_ip 5.5.5.142 90485 username khalili 90485 unique_id port 90485 terminate_cause Lost-Carrier 90485 bytes_out 8086165 90485 bytes_in 46494116 90485 station_ip 5.119.224.103 90485 port 15728863 90485 nas_port_type Virtual 90485 remote_ip 5.5.5.250 90486 username madadi 90486 kill_reason Relative expiration date has reached 90486 unique_id port 90486 bytes_out 0 90486 bytes_in 0 90486 station_ip 5.120.130.170 90486 port 15728902 90486 nas_port_type Virtual 90491 username madadi 90491 kill_reason Relative expiration date has reached 90491 unique_id port 90491 bytes_out 0 90491 bytes_in 0 90491 station_ip 5.120.130.170 90491 port 15728907 90491 nas_port_type Virtual 90495 username madadi2 90495 kill_reason Maximum number of concurrent logins reached 90495 unique_id port 90495 bytes_out 0 90495 bytes_in 0 90495 station_ip 5.119.102.41 90495 port 15728917 90495 nas_port_type Virtual 90501 username madadi2 90501 kill_reason Maximum number of concurrent logins reached 90501 unique_id port 90501 bytes_out 0 90501 bytes_in 0 90501 station_ip 5.119.226.245 90501 port 15728921 90501 nas_port_type Virtual 90505 username madadi2 90505 unique_id port 90505 terminate_cause Lost-Carrier 90505 bytes_out 51575 90505 bytes_in 274732 90505 station_ip 5.120.130.170 90505 port 15728910 90505 nas_port_type Virtual 90505 remote_ip 5.5.5.138 90506 username caferibar 90506 unique_id port 90506 terminate_cause Lost-Carrier 90506 bytes_out 1334456 90506 bytes_in 20943721 90506 station_ip 5.120.57.6 90506 port 15728913 90506 nas_port_type Virtual 90506 remote_ip 5.5.5.136 90508 username zamanialireza 90508 unique_id port 90508 terminate_cause User-Request 90508 bytes_out 0 90508 bytes_in 0 90508 station_ip 93.114.29.64 90508 port 15728928 90508 nas_port_type Virtual 90508 remote_ip 5.5.5.132 90513 username zamanialireza 90513 unique_id port 90513 terminate_cause User-Request 90513 bytes_out 513961 90513 bytes_in 6073226 90513 station_ip 5.160.114.228 90513 port 15728930 90513 nas_port_type Virtual 90513 remote_ip 5.5.5.177 90514 username farhad 90514 unique_id port 90514 terminate_cause User-Request 90514 bytes_out 60369765 90514 bytes_in 149394577 90514 station_ip 5.120.131.200 90514 port 15728873 90514 nas_port_type Virtual 90514 remote_ip 5.5.5.144 90521 username caferibar 90521 unique_id port 90521 terminate_cause User-Request 90521 bytes_out 272970 90521 bytes_in 260365 90521 station_ip 93.114.27.196 90521 port 15728941 90521 nas_port_type Virtual 90521 remote_ip 5.5.5.142 90527 username alireza1 90527 unique_id port 90527 terminate_cause Lost-Carrier 90527 bytes_out 308890 90527 bytes_in 2039840 90527 station_ip 5.119.134.172 90527 port 15728943 90527 nas_port_type Virtual 90527 remote_ip 5.5.5.128 90528 username madadi2 90528 unique_id port 90528 terminate_cause Lost-Carrier 90528 bytes_out 18484 90528 bytes_in 133337 90528 station_ip 5.119.64.212 90528 port 15728945 90528 nas_port_type Virtual 90528 remote_ip 5.5.5.126 90540 username aminvpn 90540 mac 90540 bytes_out 0 90540 bytes_in 0 90540 station_ip 83.122.245.88 90540 port 35 90540 unique_id port 90540 remote_ip 10.8.1.10 90544 username asadi 90544 unique_id port 90544 terminate_cause User-Request 90544 bytes_out 78760 90544 bytes_in 645108 90544 station_ip 37.129.11.250 90544 port 15728956 90544 nas_port_type Virtual 90544 remote_ip 5.5.5.123 90551 username avaanna 90551 unique_id port 90551 terminate_cause User-Request 90551 bytes_out 142382 90490 username forozande 90490 unique_id port 90490 terminate_cause User-Request 90490 bytes_out 75286 90490 bytes_in 606444 90490 station_ip 83.123.130.229 90490 port 15728900 90490 nas_port_type Virtual 90490 remote_ip 5.5.5.139 90492 username caferibar 90492 unique_id port 90492 terminate_cause User-Request 90492 bytes_out 0 90492 bytes_in 0 90492 station_ip 5.119.34.50 90492 port 15728911 90492 nas_port_type Virtual 90492 remote_ip 5.5.5.137 90496 username madadi2 90496 kill_reason Maximum number of concurrent logins reached 90496 unique_id port 90496 bytes_out 0 90496 bytes_in 0 90496 station_ip 5.119.102.41 90496 port 15728918 90496 nas_port_type Virtual 90500 username ahmadi 90500 unique_id port 90500 terminate_cause User-Request 90500 bytes_out 40392 90500 bytes_in 404759 90500 station_ip 83.122.27.139 90500 port 15728916 90500 nas_port_type Virtual 90500 remote_ip 5.5.5.134 90502 username madadi2 90502 kill_reason Maximum number of concurrent logins reached 90502 unique_id port 90502 bytes_out 0 90502 bytes_in 0 90502 station_ip 5.119.226.245 90502 port 15728922 90502 nas_port_type Virtual 90511 username zamanialireza 90511 unique_id port 90511 terminate_cause User-Request 90511 bytes_out 57332922 90511 bytes_in 158844471 90511 station_ip 113.203.46.58 90511 port 15728896 90511 nas_port_type Virtual 90511 remote_ip 5.5.5.141 90516 username caferibar 90516 unique_id port 90516 terminate_cause User-Request 90516 bytes_out 0 90516 bytes_in 0 90516 station_ip 93.114.27.196 90516 port 15728933 90516 nas_port_type Virtual 90516 remote_ip 5.5.5.142 90520 username caferibar 90520 unique_id port 90520 terminate_cause User-Request 90520 bytes_out 0 90520 bytes_in 0 90520 station_ip 93.114.27.196 90520 port 15728936 90520 nas_port_type Virtual 90520 remote_ip 5.5.5.142 90525 username caferibar 90525 unique_id port 90525 terminate_cause Lost-Carrier 90525 bytes_out 499332 90525 bytes_in 9390530 90525 station_ip 92.114.72.86 90525 port 15728937 90525 nas_port_type Virtual 90525 remote_ip 5.5.5.129 90533 username asadi 90533 unique_id port 90533 terminate_cause User-Request 90533 bytes_out 97451 90533 bytes_in 2138918 90533 station_ip 37.129.11.250 90533 port 15728952 90533 nas_port_type Virtual 90533 remote_ip 5.5.5.123 90548 username aminvpn 90548 mac 90548 bytes_out 0 90548 bytes_in 0 90548 station_ip 37.129.185.26 90548 port 21 90548 unique_id port 90548 remote_ip 10.8.0.6 90550 username asadi 90550 unique_id port 90550 terminate_cause User-Request 90550 bytes_out 133659 90550 bytes_in 943833 90550 station_ip 37.129.98.121 90550 port 15728963 90550 nas_port_type Virtual 90550 remote_ip 5.5.5.116 90556 username caferibar 90556 unique_id port 90556 terminate_cause Lost-Carrier 90556 bytes_out 2735193 90556 bytes_in 36822455 90556 station_ip 5.119.44.107 90556 port 15728957 90556 nas_port_type Virtual 90556 remote_ip 5.5.5.118 90558 username forozande 90558 unique_id port 90558 terminate_cause User-Request 90558 bytes_out 53786 90558 bytes_in 648729 90558 station_ip 37.129.255.244 90558 port 15728972 90558 nas_port_type Virtual 90558 remote_ip 5.5.5.113 90564 username forozande 90564 unique_id port 90564 terminate_cause User-Request 90564 bytes_out 37375 90564 bytes_in 206202 90564 station_ip 83.123.229.50 90564 port 15728977 90564 nas_port_type Virtual 90564 remote_ip 5.5.5.111 90566 username aminvpn 90566 unique_id port 90566 terminate_cause User-Request 90566 bytes_out 86261 90566 bytes_in 448619 90566 station_ip 83.123.110.79 90566 port 15728979 90566 nas_port_type Virtual 90566 remote_ip 5.5.5.110 90567 username aminvpn 90567 unique_id port 90493 station_ip 37.129.29.218 90493 port 15728914 90493 nas_port_type Virtual 90493 remote_ip 5.5.5.157 90494 username caferibar 90494 unique_id port 90494 terminate_cause Lost-Carrier 90494 bytes_out 638151 90494 bytes_in 15914229 90494 station_ip 5.119.34.50 90494 port 15728912 90494 nas_port_type Virtual 90494 remote_ip 5.5.5.137 90497 username mammad 90497 unique_id port 90497 terminate_cause User-Request 90497 bytes_out 1886616 90497 bytes_in 28355047 90497 station_ip 5.233.56.12 90497 port 15728898 90497 nas_port_type Virtual 90497 remote_ip 5.5.5.192 90504 username madadi2 90504 kill_reason Maximum number of concurrent logins reached 90504 unique_id port 90504 bytes_out 0 90504 bytes_in 0 90504 station_ip 5.119.226.245 90504 port 15728924 90504 nas_port_type Virtual 90509 username asadi 90509 unique_id port 90509 terminate_cause User-Request 90509 bytes_out 46853 90509 bytes_in 1223645 90509 station_ip 37.129.29.218 90509 port 15728929 90509 nas_port_type Virtual 90509 remote_ip 5.5.5.157 90512 username aminvpn 90512 mac 90512 bytes_out 137781 90512 bytes_in 794204 90512 station_ip 37.129.185.26 90512 port 21 90512 unique_id port 90512 remote_ip 10.8.0.6 90519 username mahdixz 90519 unique_id port 90519 terminate_cause Lost-Carrier 90519 bytes_out 210410 90519 bytes_in 1474866 90519 station_ip 151.235.104.45 90519 port 15728932 90519 nas_port_type Virtual 90519 remote_ip 5.5.5.189 90524 username sadegh 90524 unique_id port 90524 terminate_cause Lost-Carrier 90524 bytes_out 5425558 90524 bytes_in 96888569 90524 station_ip 5.119.235.167 90524 port 15728927 90524 nas_port_type Virtual 90524 remote_ip 5.5.5.147 90532 username aminvpn 90532 mac 90532 bytes_out 1966458 90532 bytes_in 21794165 90532 station_ip 37.129.185.26 90532 port 21 90532 unique_id port 90532 remote_ip 10.8.0.6 90534 username aminvpn 90534 mac 90534 bytes_out 0 90534 bytes_in 0 90534 station_ip 37.129.185.26 90534 port 21 90534 unique_id port 90534 remote_ip 10.8.0.6 90535 username aminvpn 90535 mac 90535 bytes_out 0 90535 bytes_in 0 90535 station_ip 83.122.245.88 90535 port 35 90535 unique_id port 90535 remote_ip 10.8.1.10 90537 username aminvpn 90537 mac 90537 bytes_out 0 90537 bytes_in 0 90537 station_ip 83.122.245.88 90537 port 35 90537 unique_id port 90537 remote_ip 10.8.1.10 90539 username madadi2 90539 unique_id port 90539 terminate_cause Lost-Carrier 90539 bytes_out 12569 90539 bytes_in 129022 90539 station_ip 5.119.28.154 90539 port 15728951 90539 nas_port_type Virtual 90539 remote_ip 5.5.5.121 90541 username mahbobeh 90541 unique_id port 90541 terminate_cause User-Request 90541 bytes_out 32983816 90541 bytes_in 1460056 90541 station_ip 83.123.250.77 90541 port 15728950 90541 nas_port_type Virtual 90541 remote_ip 5.5.5.122 90545 username aminvpn 90545 mac 90545 bytes_out 0 90545 bytes_in 0 90545 station_ip 83.122.245.88 90545 port 35 90545 unique_id port 90545 remote_ip 10.8.1.10 90547 username alireza1 90547 unique_id port 90547 terminate_cause Lost-Carrier 90547 bytes_out 1546967 90547 bytes_in 7015251 90547 station_ip 5.119.209.119 90547 port 15728954 90547 nas_port_type Virtual 90547 remote_ip 5.5.5.119 90549 username mahdixz 90549 unique_id port 90549 terminate_cause User-Request 90549 bytes_out 317601 90549 bytes_in 2471364 90549 station_ip 151.235.104.45 90549 port 15728959 90549 nas_port_type Virtual 90549 remote_ip 5.5.5.189 90554 username avaanna 90554 unique_id port 90554 terminate_cause User-Request 90554 bytes_out 69424 90554 bytes_in 449714 90526 terminate_cause Lost-Carrier 90526 bytes_out 265888 90526 bytes_in 3944244 90526 station_ip 37.137.40.23 90526 port 15728944 90526 nas_port_type Virtual 90526 remote_ip 5.5.5.127 90529 username asadi 90529 unique_id port 90529 terminate_cause User-Request 90529 bytes_out 115132 90529 bytes_in 1945768 90529 station_ip 37.129.11.250 90529 port 15728949 90529 nas_port_type Virtual 90529 remote_ip 5.5.5.123 90530 username caferibar 90530 unique_id port 90530 terminate_cause Lost-Carrier 90530 bytes_out 261325 90530 bytes_in 5664202 90530 station_ip 5.134.145.178 90530 port 15728946 90530 nas_port_type Virtual 90530 remote_ip 5.5.5.125 90531 username alinezhad 90531 unique_id port 90531 terminate_cause User-Request 90531 bytes_out 630263 90531 bytes_in 7609337 90531 station_ip 5.202.10.15 90531 port 15728940 90531 nas_port_type Virtual 90531 remote_ip 5.5.5.143 90536 username aminvpn 90536 mac 90536 bytes_out 0 90536 bytes_in 0 90536 station_ip 37.129.185.26 90536 port 36 90536 unique_id port 90536 remote_ip 10.8.1.10 90538 username aminvpn 90538 mac 90538 bytes_out 0 90538 bytes_in 0 90538 station_ip 37.129.185.26 90538 port 36 90538 unique_id port 90538 remote_ip 10.8.1.10 90542 username caferibar 90542 unique_id port 90542 terminate_cause Lost-Carrier 90542 bytes_out 216279 90542 bytes_in 1171982 90542 station_ip 37.137.28.152 90542 port 15728948 90542 nas_port_type Virtual 90542 remote_ip 5.5.5.124 90543 username aminvpn 90543 mac 90543 bytes_out 58161 90543 bytes_in 103004 90543 station_ip 83.122.245.88 90543 port 35 90543 unique_id port 90543 remote_ip 10.8.1.10 90546 username aminvpn 90546 unique_id port 90546 terminate_cause User-Request 90546 bytes_out 1077180 90546 bytes_in 10878352 90546 station_ip 83.122.245.88 90546 port 15728958 90546 nas_port_type Virtual 90546 remote_ip 5.5.5.117 90552 username alinezhad 90552 unique_id port 90552 terminate_cause User-Request 90552 bytes_out 306358 90552 bytes_in 980605 90552 station_ip 5.202.10.15 90552 port 15728955 90552 nas_port_type Virtual 90552 remote_ip 5.5.5.143 90553 username alinezhad 90553 unique_id port 90553 terminate_cause User-Request 90553 bytes_out 0 90553 bytes_in 0 90553 station_ip 5.202.10.15 90553 port 15728966 90553 nas_port_type Virtual 90553 remote_ip 5.5.5.143 90555 username aminvpn 90555 unique_id port 90555 terminate_cause User-Request 90555 bytes_out 15988896 90555 bytes_in 271500400 90555 station_ip 5.120.77.245 90555 port 15728840 90555 nas_port_type Virtual 90555 remote_ip 5.5.5.158 90563 username ahmadi 90563 unique_id port 90563 terminate_cause User-Request 90563 bytes_out 38102 90563 bytes_in 457354 90563 station_ip 83.122.27.139 90563 port 15728975 90563 nas_port_type Virtual 90563 remote_ip 5.5.5.134 90565 username asadi 90565 unique_id port 90565 terminate_cause User-Request 90565 bytes_out 26784 90565 bytes_in 56289 90565 station_ip 37.129.98.121 90565 port 15728978 90565 nas_port_type Virtual 90565 remote_ip 5.5.5.116 90568 username zamanialireza 90568 unique_id port 90568 terminate_cause Lost-Carrier 90568 bytes_out 1600421 90568 bytes_in 31538880 90568 station_ip 5.120.53.157 90568 port 15728969 90568 nas_port_type Virtual 90568 remote_ip 5.5.5.114 90570 username forozande 90570 unique_id port 90570 terminate_cause User-Request 90570 bytes_out 24960 90570 bytes_in 60619 90570 station_ip 83.122.41.213 90570 port 15728984 90570 nas_port_type Virtual 90570 remote_ip 5.5.5.107 90586 username aminvpn 90586 unique_id port 90586 terminate_cause User-Request 90586 bytes_out 2098557 90586 bytes_in 23294288 90551 bytes_in 1269608 90551 station_ip 37.129.182.121 90551 port 15728964 90551 nas_port_type Virtual 90551 remote_ip 5.5.5.115 90559 username forozande 90559 unique_id port 90559 terminate_cause User-Request 90559 bytes_out 46093 90559 bytes_in 784438 90559 station_ip 37.129.255.244 90559 port 15728973 90559 nas_port_type Virtual 90559 remote_ip 5.5.5.113 90562 username asadi 90562 unique_id port 90562 terminate_cause User-Request 90562 bytes_out 265140 90562 bytes_in 8340245 90562 station_ip 37.129.98.121 90562 port 15728976 90562 nas_port_type Virtual 90562 remote_ip 5.5.5.116 90574 username forozande 90574 unique_id port 90574 terminate_cause User-Request 90574 bytes_out 31245 90574 bytes_in 342964 90574 station_ip 83.122.41.213 90574 port 15728990 90574 nas_port_type Virtual 90574 remote_ip 5.5.5.107 90579 username aminvpn 90579 mac 90579 bytes_out 0 90579 bytes_in 0 90579 station_ip 83.123.110.79 90579 port 21 90579 unique_id port 90579 remote_ip 10.8.0.6 90581 username aminvpn 90581 mac 90581 bytes_out 0 90581 bytes_in 0 90581 station_ip 83.123.247.80 90581 port 23 90581 unique_id port 90581 remote_ip 10.8.0.6 90584 username aminvpn 90584 mac 90584 bytes_out 0 90584 bytes_in 0 90584 station_ip 83.123.247.80 90584 port 23 90584 unique_id port 90584 remote_ip 10.8.0.6 90592 username alinezhad 90592 unique_id port 90592 terminate_cause User-Request 90592 bytes_out 0 90592 bytes_in 0 90592 station_ip 37.129.43.222 90592 port 15728999 90592 nas_port_type Virtual 90592 remote_ip 5.5.5.105 90593 username aminvpn 90593 mac 90593 bytes_out 0 90593 bytes_in 0 90593 station_ip 83.123.110.79 90593 port 21 90593 unique_id port 90593 remote_ip 10.8.0.6 90594 username aminvpn 90594 mac 90594 bytes_out 0 90594 bytes_in 0 90594 station_ip 83.123.232.76 90594 port 23 90594 unique_id port 90594 remote_ip 10.8.0.6 90603 username mammad 90603 unique_id port 90603 terminate_cause User-Request 90603 bytes_out 10022262 90603 bytes_in 229773214 90603 station_ip 5.233.56.12 90603 port 15728987 90603 nas_port_type Virtual 90603 remote_ip 5.5.5.192 90604 username caferibar 90604 kill_reason Maximum check online fails reached 90604 unique_id port 90604 bytes_out 733414 90604 bytes_in 10964353 90604 station_ip 5.119.142.62 90604 port 15729001 90604 nas_port_type Virtual 90604 remote_ip 5.5.5.241 90614 username zamanialireza 90614 kill_reason Relative expiration date has reached 90614 unique_id port 90614 bytes_out 0 90614 bytes_in 0 90614 station_ip 5.160.114.228 90614 port 15729005 90614 nas_port_type Virtual 90617 username aminvpn 90617 mac 90617 bytes_out 26217 90617 bytes_in 41903 90617 station_ip 83.123.127.211 90617 port 21 90617 unique_id port 90617 remote_ip 10.8.0.6 90621 username zamanialireza 90621 kill_reason Relative expiration date has reached 90621 unique_id port 90621 bytes_out 0 90621 bytes_in 0 90621 station_ip 5.160.114.228 90621 port 15729009 90621 nas_port_type Virtual 90624 username zamanialireza 90624 kill_reason Relative expiration date has reached 90624 unique_id port 90624 bytes_out 0 90624 bytes_in 0 90624 station_ip 89.47.76.176 90624 port 15729012 90624 nas_port_type Virtual 90627 username zamanialireza 90627 kill_reason Relative expiration date has reached 90627 unique_id port 90627 bytes_out 0 90627 bytes_in 0 90627 station_ip 89.47.76.176 90627 port 15729015 90627 nas_port_type Virtual 90631 username mahbobeh 90631 unique_id port 90631 terminate_cause Admin-Reboot 90631 bytes_out 323576 90631 bytes_in 2947046 90631 station_ip 83.123.237.141 90631 port 15729018 90554 station_ip 37.129.182.121 90554 port 15728967 90554 nas_port_type Virtual 90554 remote_ip 5.5.5.115 90557 username forozande 90557 unique_id port 90557 terminate_cause User-Request 90557 bytes_out 70044 90557 bytes_in 727687 90557 station_ip 37.129.255.244 90557 port 15728971 90557 nas_port_type Virtual 90557 remote_ip 5.5.5.113 90560 username zamanialireza 90560 unique_id port 90560 terminate_cause User-Request 90560 bytes_out 244450 90560 bytes_in 5200164 90560 station_ip 94.183.213.166 90560 port 15728974 90560 nas_port_type Virtual 90560 remote_ip 5.5.5.112 90561 username amirabbas 90561 unique_id port 90561 terminate_cause User-Request 90561 bytes_out 52632395 90561 bytes_in 1592736859 90561 station_ip 31.56.113.154 90561 port 15728947 90561 nas_port_type Virtual 90561 remote_ip 5.5.5.195 90576 username alinezhad 90576 unique_id port 90576 terminate_cause User-Request 90576 bytes_out 14558 90576 bytes_in 30870 90576 station_ip 5.202.10.15 90576 port 15728991 90576 nas_port_type Virtual 90576 remote_ip 5.5.5.143 90577 username aminvpn 90577 mac 90577 bytes_out 0 90577 bytes_in 0 90577 station_ip 83.123.110.79 90577 port 21 90577 unique_id port 90577 remote_ip 10.8.0.6 90582 username aminvpn 90582 mac 90582 bytes_out 0 90582 bytes_in 0 90582 station_ip 83.123.110.79 90582 port 21 90582 unique_id port 90582 remote_ip 10.8.0.6 90583 username alinezhad 90583 unique_id port 90583 terminate_cause User-Request 90583 bytes_out 0 90583 bytes_in 0 90583 station_ip 5.202.10.15 90583 port 15728993 90583 nas_port_type Virtual 90583 remote_ip 5.5.5.143 90585 username asadi 90585 unique_id port 90585 terminate_cause User-Request 90585 bytes_out 330042 90585 bytes_in 7112706 90585 station_ip 37.129.98.121 90585 port 15728994 90585 nas_port_type Virtual 90585 remote_ip 5.5.5.116 90587 username aminvpn 90587 mac 90587 bytes_out 0 90587 bytes_in 0 90587 station_ip 83.123.110.79 90587 port 21 90587 unique_id port 90587 remote_ip 10.8.0.6 90597 username aminvpn 90597 mac 90597 bytes_out 0 90597 bytes_in 0 90597 station_ip 83.123.110.79 90597 port 21 90597 unique_id port 90597 remote_ip 10.8.0.6 90600 username aminvpn 90600 mac 90600 bytes_out 0 90600 bytes_in 0 90600 station_ip 83.123.232.76 90600 port 23 90600 unique_id port 90600 remote_ip 10.8.0.6 90602 username madadi2 90602 unique_id port 90602 terminate_cause Lost-Carrier 90602 bytes_out 6935949 90602 bytes_in 51652312 90602 station_ip 5.120.25.254 90602 port 15728953 90602 nas_port_type Virtual 90602 remote_ip 5.5.5.120 90607 username mahbobeh 90607 unique_id port 90607 terminate_cause Lost-Carrier 90607 bytes_out 6404008 90607 bytes_in 51052190 90607 station_ip 83.123.237.141 90607 port 15728996 90607 nas_port_type Virtual 90607 remote_ip 5.5.5.104 90618 username zamanialireza 90618 kill_reason Relative expiration date has reached 90618 unique_id port 90618 bytes_out 0 90618 bytes_in 0 90618 station_ip 5.160.114.228 90618 port 15729006 90618 nas_port_type Virtual 90619 username zamanialireza 90619 kill_reason Relative expiration date has reached 90619 unique_id port 90619 bytes_out 0 90619 bytes_in 0 90619 station_ip 5.160.114.228 90619 port 15729007 90619 nas_port_type Virtual 90625 username zamanialireza 90625 kill_reason Relative expiration date has reached 90625 unique_id port 90625 bytes_out 0 90625 bytes_in 0 90625 station_ip 89.47.76.176 90625 port 15729013 90625 nas_port_type Virtual 90628 username heydari 90628 unique_id port 90628 terminate_cause Lost-Carrier 90628 bytes_out 1054868 90628 bytes_in 13427895 90567 terminate_cause User-Request 90567 bytes_out 387459 90567 bytes_in 9677827 90567 station_ip 5.233.61.122 90567 port 15728981 90567 nas_port_type Virtual 90567 remote_ip 5.5.5.108 90569 username forozande 90569 unique_id port 90569 terminate_cause User-Request 90569 bytes_out 63068 90569 bytes_in 304597 90569 station_ip 83.122.41.213 90569 port 15728983 90569 nas_port_type Virtual 90569 remote_ip 5.5.5.107 90571 username forozande 90571 unique_id port 90571 terminate_cause User-Request 90571 bytes_out 0 90571 bytes_in 0 90571 station_ip 83.122.41.213 90571 port 15728986 90571 nas_port_type Virtual 90571 remote_ip 5.5.5.107 90572 username forozande 90572 unique_id port 90572 terminate_cause User-Request 90572 bytes_out 220 90572 bytes_in 11914 90572 station_ip 83.122.41.213 90572 port 15728988 90572 nas_port_type Virtual 90572 remote_ip 5.5.5.107 90573 username forozande 90573 unique_id port 90573 terminate_cause User-Request 90573 bytes_out 46976 90573 bytes_in 676836 90573 station_ip 83.122.41.213 90573 port 15728989 90573 nas_port_type Virtual 90573 remote_ip 5.5.5.107 90575 username forozande 90575 unique_id port 90575 terminate_cause User-Request 90575 bytes_out 8813 90575 bytes_in 20580 90575 station_ip 83.122.41.213 90575 port 15728992 90575 nas_port_type Virtual 90575 remote_ip 5.5.5.107 90578 username aminvpn 90578 mac 90578 bytes_out 0 90578 bytes_in 0 90578 station_ip 83.123.247.80 90578 port 23 90578 unique_id port 90578 remote_ip 10.8.0.6 90580 username mahbobeh 90580 unique_id port 90580 terminate_cause Lost-Carrier 90580 bytes_out 4490129 90580 bytes_in 83542250 90580 station_ip 83.123.250.77 90580 port 15728965 90580 nas_port_type Virtual 90580 remote_ip 5.5.5.122 90591 username caferibar 90591 unique_id port 90591 terminate_cause User-Request 90591 bytes_out 983554 90591 bytes_in 26526453 90591 station_ip 5.119.142.62 90591 port 15728997 90591 nas_port_type Virtual 90591 remote_ip 5.5.5.241 90595 username aminvpn 90595 mac 90595 bytes_out 0 90595 bytes_in 0 90595 station_ip 83.123.110.79 90595 port 21 90595 unique_id port 90595 remote_ip 10.8.0.6 90598 username aminvpn 90598 mac 90598 bytes_out 0 90598 bytes_in 0 90598 station_ip 83.123.232.76 90598 port 23 90598 unique_id port 90598 remote_ip 10.8.0.6 90601 username aminvpn 90601 mac 90601 bytes_out 0 90601 bytes_in 0 90601 station_ip 83.123.110.79 90601 port 21 90601 unique_id port 90601 remote_ip 10.8.0.6 90605 username madadi2 90605 unique_id port 90605 terminate_cause Lost-Carrier 90605 bytes_out 114427 90605 bytes_in 563250 90605 station_ip 5.120.150.99 90605 port 15729000 90605 nas_port_type Virtual 90605 remote_ip 5.5.5.103 90608 username khalili 90608 unique_id port 90608 terminate_cause Lost-Carrier 90608 bytes_out 4808171 90608 bytes_in 108021459 90608 station_ip 5.119.224.103 90608 port 15728968 90608 nas_port_type Virtual 90608 remote_ip 5.5.5.250 90609 username amirabbas 90609 unique_id port 90609 terminate_cause Lost-Carrier 90609 bytes_out 33661729 90609 bytes_in 1075674989 90609 station_ip 31.56.113.154 90609 port 15728998 90609 nas_port_type Virtual 90609 remote_ip 5.5.5.195 90613 username afarin 90613 unique_id port 90613 terminate_cause User-Request 90613 bytes_out 921473 90613 bytes_in 17939377 90613 station_ip 151.238.239.226 90613 port 15729004 90613 nas_port_type Virtual 90613 remote_ip 5.5.5.101 90616 username farhad 90616 unique_id port 90616 terminate_cause Lost-Carrier 90616 bytes_out 25813933 90616 bytes_in 118108353 90616 station_ip 5.119.87.41 90616 port 15729002 90586 station_ip 5.120.77.245 90586 port 15728980 90586 nas_port_type Virtual 90586 remote_ip 5.5.5.109 90588 username alinezhad 90588 unique_id port 90588 terminate_cause User-Request 90588 bytes_out 0 90588 bytes_in 0 90588 station_ip 37.129.43.222 90588 port 15728995 90588 nas_port_type Virtual 90588 remote_ip 5.5.5.105 90589 username alireza1 90589 unique_id port 90589 terminate_cause Lost-Carrier 90589 bytes_out 3312269 90589 bytes_in 40993494 90589 station_ip 5.119.209.119 90589 port 15728970 90589 nas_port_type Virtual 90589 remote_ip 5.5.5.119 90590 username aminvpn 90590 unique_id port 90590 terminate_cause User-Request 90590 bytes_out 4176979 90590 bytes_in 88949490 90590 station_ip 83.123.110.79 90590 port 15728982 90590 nas_port_type Virtual 90590 remote_ip 5.5.5.110 90596 username aminvpn 90596 mac 90596 bytes_out 0 90596 bytes_in 0 90596 station_ip 83.123.232.76 90596 port 23 90596 unique_id port 90596 remote_ip 10.8.0.6 90599 username aminvpn 90599 mac 90599 bytes_out 0 90599 bytes_in 0 90599 station_ip 83.123.110.79 90599 port 21 90599 unique_id port 90599 remote_ip 10.8.0.6 90606 username farhad 90606 unique_id port 90606 terminate_cause User-Request 90606 bytes_out 134837809 90606 bytes_in 298489781 90606 station_ip 5.119.87.41 90606 port 15728934 90606 nas_port_type Virtual 90606 remote_ip 5.5.5.131 90610 username amirabbas 90610 unique_id port 90610 terminate_cause User-Request 90610 bytes_out 5151911 90610 bytes_in 148048677 90610 station_ip 31.56.113.154 90610 port 15729003 90610 nas_port_type Virtual 90610 remote_ip 5.5.5.102 90611 username aminvpn 90611 mac 90611 bytes_out 2561495 90611 bytes_in 33306472 90611 station_ip 83.123.232.76 90611 port 23 90611 unique_id port 90611 remote_ip 10.8.0.6 90612 username aminvpn 90612 mac 90612 bytes_out 0 90612 bytes_in 0 90612 station_ip 83.123.232.76 90612 port 21 90612 unique_id port 90612 remote_ip 10.8.0.6 90615 username aminvpn 90615 mac 90615 bytes_out 0 90615 bytes_in 0 90615 station_ip 83.123.127.211 90615 port 21 90615 unique_id port 90615 remote_ip 10.8.0.6 90620 username zamanialireza 90620 kill_reason Relative expiration date has reached 90620 unique_id port 90620 bytes_out 0 90620 bytes_in 0 90620 station_ip 5.160.114.228 90620 port 15729008 90620 nas_port_type Virtual 90626 username zamanialireza 90626 kill_reason Relative expiration date has reached 90626 unique_id port 90626 bytes_out 0 90626 bytes_in 0 90626 station_ip 89.47.76.176 90626 port 15729014 90626 nas_port_type Virtual 90632 username caferibar 90632 unique_id port 90632 terminate_cause Admin-Reboot 90632 bytes_out 143176 90632 bytes_in 889720 90632 station_ip 5.120.31.209 90632 port 15729019 90632 nas_port_type Virtual 90632 remote_ip 5.5.5.98 90635 username forozande 90635 unique_id port 90635 terminate_cause User-Request 90635 bytes_out 33299 90635 bytes_in 335700 90635 station_ip 37.129.215.51 90635 port 15728643 90635 nas_port_type Virtual 90635 remote_ip 5.5.5.253 90638 username zamanialireza 90638 kill_reason Relative expiration date has reached 90638 unique_id port 90638 bytes_out 0 90638 bytes_in 0 90638 station_ip 5.120.53.157 90638 port 15728649 90638 nas_port_type Virtual 90646 username alinezhad 90646 unique_id port 90646 terminate_cause User-Request 90646 bytes_out 0 90646 bytes_in 0 90646 station_ip 37.129.19.192 90646 port 15728657 90646 nas_port_type Virtual 90646 remote_ip 5.5.5.245 90648 username alireza1 90648 unique_id port 90648 terminate_cause User-Request 90648 bytes_out 236487 90648 bytes_in 3705961 90616 nas_port_type Virtual 90616 remote_ip 5.5.5.131 90622 username zamanialireza 90622 kill_reason Relative expiration date has reached 90622 unique_id port 90622 bytes_out 0 90622 bytes_in 0 90622 station_ip 5.160.114.228 90622 port 15729010 90622 nas_port_type Virtual 90623 username mahdixz 90623 unique_id port 90623 terminate_cause Lost-Carrier 90623 bytes_out 166422 90623 bytes_in 861497 90623 station_ip 5.120.191.161 90623 port 15729011 90623 nas_port_type Virtual 90623 remote_ip 5.5.5.100 90628 station_ip 5.120.149.87 90628 port 15728985 90628 nas_port_type Virtual 90628 remote_ip 5.5.5.106 90630 username alireza1 90630 unique_id port 90630 terminate_cause Lost-Carrier 90630 bytes_out 281661 90630 bytes_in 741130 90630 station_ip 5.119.209.119 90630 port 15729017 90630 nas_port_type Virtual 90630 remote_ip 5.5.5.119 90637 username zamanialireza 90637 kill_reason Relative expiration date has reached 90637 unique_id port 90637 bytes_out 0 90637 bytes_in 0 90637 station_ip 5.120.53.157 90637 port 15728648 90637 nas_port_type Virtual 90639 username zamanialireza 90639 kill_reason Relative expiration date has reached 90639 unique_id port 90639 bytes_out 0 90639 bytes_in 0 90639 station_ip 5.120.53.157 90639 port 15728650 90639 nas_port_type Virtual 90640 username zamanialireza 90640 kill_reason Relative expiration date has reached 90640 unique_id port 90640 bytes_out 0 90640 bytes_in 0 90640 station_ip 5.120.53.157 90640 port 15728651 90640 nas_port_type Virtual 90642 username ahmadipour 90642 unique_id port 90642 terminate_cause Lost-Carrier 90642 bytes_out 743230 90642 bytes_in 10205290 90642 station_ip 83.123.115.235 90642 port 15728647 90642 nas_port_type Virtual 90642 remote_ip 5.5.5.250 90651 username alinezhad 90651 unique_id port 90651 terminate_cause User-Request 90651 bytes_out 0 90651 bytes_in 0 90651 station_ip 83.122.153.41 90651 port 15728661 90651 nas_port_type Virtual 90651 remote_ip 5.5.5.243 90652 username aminvpn 90652 mac 90652 bytes_out 1731104 90652 bytes_in 26146086 90652 station_ip 83.123.137.36 90652 port 21 90652 unique_id port 90652 remote_ip 10.8.0.6 90654 username aminvpn 90654 mac 90654 bytes_out 0 90654 bytes_in 0 90654 station_ip 83.123.82.79 90654 port 23 90654 unique_id port 90654 remote_ip 10.8.0.6 90664 username forozande 90664 unique_id port 90664 terminate_cause User-Request 90664 bytes_out 40643 90664 bytes_in 272490 90664 station_ip 83.122.177.47 90664 port 15728664 90664 nas_port_type Virtual 90664 remote_ip 5.5.5.242 90670 username aminvpn 90670 mac 90670 bytes_out 0 90670 bytes_in 0 90670 station_ip 83.123.82.79 90670 port 23 90670 unique_id port 90670 remote_ip 10.8.0.6 90673 username aminvpn 90673 mac 90673 bytes_out 0 90673 bytes_in 0 90673 station_ip 83.123.137.36 90673 port 21 90673 unique_id port 90673 remote_ip 10.8.0.6 90675 username zamanialireza 90675 kill_reason Relative expiration date has reached 90675 unique_id port 90675 bytes_out 0 90675 bytes_in 0 90675 station_ip 5.119.70.83 90675 port 15728673 90675 nas_port_type Virtual 90679 username zamanialireza 90679 kill_reason Relative expiration date has reached 90679 unique_id port 90679 bytes_out 0 90679 bytes_in 0 90679 station_ip 5.119.70.83 90679 port 15728674 90679 nas_port_type Virtual 90683 username aminvpn 90683 mac 90683 bytes_out 0 90683 bytes_in 0 90683 station_ip 83.123.137.36 90683 port 21 90683 unique_id port 90683 remote_ip 10.8.0.6 90685 username aminvpn 90685 mac 90685 bytes_out 0 90685 bytes_in 0 90685 station_ip 83.123.82.79 90685 port 23 90685 unique_id port 90629 username ahmadi 90629 unique_id port 90629 terminate_cause User-Request 90629 bytes_out 0 90629 bytes_in 0 90629 station_ip 83.122.79.235 90629 port 15729016 90629 nas_port_type Virtual 90629 remote_ip 5.5.5.99 90633 username forozande 90633 unique_id port 90633 terminate_cause User-Request 90633 bytes_out 373149 90633 bytes_in 2881416 90633 station_ip 83.122.89.154 90633 port 15728641 90633 nas_port_type Virtual 90633 remote_ip 5.5.5.254 90636 username forozande 90636 unique_id port 90636 terminate_cause User-Request 90636 bytes_out 37734 90636 bytes_in 398917 90636 station_ip 37.129.215.51 90636 port 15728644 90636 nas_port_type Virtual 90636 remote_ip 5.5.5.253 90641 username forozande 90641 unique_id port 90641 terminate_cause User-Request 90641 bytes_out 25001 90641 bytes_in 72113 90641 station_ip 83.123.10.171 90641 port 15728652 90641 nas_port_type Virtual 90641 remote_ip 5.5.5.249 90643 username forozande 90643 unique_id port 90643 terminate_cause User-Request 90643 bytes_out 11967 90643 bytes_in 18691 90643 station_ip 83.123.10.171 90643 port 15728653 90643 nas_port_type Virtual 90643 remote_ip 5.5.5.249 90645 username alemzadeh 90645 unique_id port 90645 terminate_cause User-Request 90645 bytes_out 555983 90645 bytes_in 10390158 90645 station_ip 83.122.147.30 90645 port 15728655 90645 nas_port_type Virtual 90645 remote_ip 5.5.5.247 90647 username forozande 90647 unique_id port 90647 terminate_cause User-Request 90647 bytes_out 42739 90647 bytes_in 509506 90647 station_ip 83.123.239.12 90647 port 15728656 90647 nas_port_type Virtual 90647 remote_ip 5.5.5.246 90649 username caferibar 90649 unique_id port 90649 terminate_cause Lost-Carrier 90649 bytes_out 642349 90649 bytes_in 7267156 90649 station_ip 5.119.193.97 90649 port 15728645 90649 nas_port_type Virtual 90649 remote_ip 5.5.5.252 90650 username asadi 90650 unique_id port 90650 terminate_cause User-Request 90650 bytes_out 318865 90650 bytes_in 4233124 90650 station_ip 83.123.4.39 90650 port 15728660 90650 nas_port_type Virtual 90650 remote_ip 5.5.5.244 90656 username aminvpn 90656 mac 90656 bytes_out 0 90656 bytes_in 0 90656 station_ip 83.123.137.36 90656 port 21 90656 unique_id port 90656 remote_ip 10.8.0.6 90658 username aminvpn 90658 mac 90658 bytes_out 0 90658 bytes_in 0 90658 station_ip 83.123.82.79 90658 port 23 90658 unique_id port 90658 remote_ip 10.8.0.6 90660 username aminvpn 90660 mac 90660 bytes_out 0 90660 bytes_in 0 90660 station_ip 83.123.82.79 90660 port 23 90660 unique_id port 90660 remote_ip 10.8.0.6 90663 username aminvpn 90663 mac 90663 bytes_out 0 90663 bytes_in 0 90663 station_ip 83.123.137.36 90663 port 21 90663 unique_id port 90663 remote_ip 10.8.0.6 90668 username aminvpn 90668 mac 90668 bytes_out 0 90668 bytes_in 0 90668 station_ip 83.123.137.36 90668 port 21 90668 unique_id port 90668 remote_ip 10.8.0.6 90674 username aminvpn 90674 mac 90674 bytes_out 0 90674 bytes_in 0 90674 station_ip 83.123.82.79 90674 port 23 90674 unique_id port 90674 remote_ip 10.8.0.6 90684 username zamanialireza 90684 kill_reason Relative expiration date has reached 90684 unique_id port 90684 bytes_out 0 90684 bytes_in 0 90684 station_ip 5.119.70.83 90684 port 15728676 90684 nas_port_type Virtual 90689 username asadi 90689 unique_id port 90689 terminate_cause User-Request 90689 bytes_out 208853 90689 bytes_in 3633666 90689 station_ip 83.123.4.39 90689 port 15728679 90689 nas_port_type Virtual 90689 remote_ip 5.5.5.244 90699 username asadi 90699 unique_id port 90631 nas_port_type Virtual 90631 remote_ip 5.5.5.104 90634 username forozande 90634 unique_id port 90634 terminate_cause User-Request 90634 bytes_out 210888 90634 bytes_in 616275 90634 station_ip 37.129.215.51 90634 port 15728642 90634 nas_port_type Virtual 90634 remote_ip 5.5.5.253 90644 username madadi2 90644 unique_id port 90644 terminate_cause Lost-Carrier 90644 bytes_out 222864 90644 bytes_in 1395402 90644 station_ip 5.119.170.78 90644 port 15728646 90644 nas_port_type Virtual 90644 remote_ip 5.5.5.251 90655 username mahbobeh 90655 unique_id port 90655 terminate_cause Lost-Carrier 90655 bytes_out 540905 90655 bytes_in 10039301 90655 station_ip 83.123.237.141 90655 port 15728640 90655 nas_port_type Virtual 90655 remote_ip 5.5.5.255 90657 username forozande 90657 unique_id port 90657 terminate_cause User-Request 90657 bytes_out 68194 90657 bytes_in 548333 90657 station_ip 83.122.177.47 90657 port 15728663 90657 nas_port_type Virtual 90657 remote_ip 5.5.5.242 90661 username zamanialireza 90661 kill_reason Relative expiration date has reached 90661 unique_id port 90661 bytes_out 0 90661 bytes_in 0 90661 station_ip 5.119.163.43 90661 port 15728665 90661 nas_port_type Virtual 90662 username zamanialireza 90662 kill_reason Relative expiration date has reached 90662 unique_id port 90662 bytes_out 0 90662 bytes_in 0 90662 station_ip 5.119.163.43 90662 port 15728666 90662 nas_port_type Virtual 90666 username aminvpn 90666 mac 90666 bytes_out 0 90666 bytes_in 0 90666 station_ip 83.123.82.79 90666 port 23 90666 unique_id port 90666 remote_ip 10.8.0.6 90667 username zamanialireza 90667 kill_reason Relative expiration date has reached 90667 unique_id port 90667 bytes_out 0 90667 bytes_in 0 90667 station_ip 5.119.163.43 90667 port 15728670 90667 nas_port_type Virtual 90669 username zamanialireza 90669 kill_reason Relative expiration date has reached 90669 unique_id port 90669 bytes_out 0 90669 bytes_in 0 90669 station_ip 5.119.163.43 90669 port 15728671 90669 nas_port_type Virtual 90671 username forozande 90671 unique_id port 90671 terminate_cause User-Request 90671 bytes_out 52656 90671 bytes_in 515734 90671 station_ip 83.122.177.47 90671 port 15728668 90671 nas_port_type Virtual 90671 remote_ip 5.5.5.242 90677 username aminvpn 90677 mac 90677 bytes_out 0 90677 bytes_in 0 90677 station_ip 83.123.82.79 90677 port 23 90677 unique_id port 90677 remote_ip 10.8.0.6 90680 username aminvpn 90680 mac 90680 bytes_out 0 90680 bytes_in 0 90680 station_ip 83.123.137.36 90680 port 21 90680 unique_id port 90680 remote_ip 10.8.0.6 90681 username aminvpn 90681 mac 90681 bytes_out 0 90681 bytes_in 0 90681 station_ip 83.123.82.79 90681 port 23 90681 unique_id port 90681 remote_ip 10.8.0.6 90692 username asadi 90692 unique_id port 90692 terminate_cause User-Request 90692 bytes_out 0 90692 bytes_in 0 90692 station_ip 83.123.4.39 90692 port 15728681 90692 nas_port_type Virtual 90692 remote_ip 5.5.5.244 90694 username aminvpn 90694 mac 90694 bytes_out 48606 90694 bytes_in 76623 90694 station_ip 83.123.82.79 90694 port 23 90694 unique_id port 90694 remote_ip 10.8.0.6 90696 username forozande 90696 unique_id port 90696 terminate_cause User-Request 90696 bytes_out 24810 90696 bytes_in 36121 90696 station_ip 83.122.177.47 90696 port 15728684 90696 nas_port_type Virtual 90696 remote_ip 5.5.5.242 90697 username aminvpn 90697 mac 90697 bytes_out 0 90697 bytes_in 0 90697 station_ip 83.123.82.79 90697 port 23 90697 unique_id port 90697 remote_ip 10.8.0.6 90703 username asadi 90703 unique_id port 90648 station_ip 5.119.209.119 90648 port 15728654 90648 nas_port_type Virtual 90648 remote_ip 5.5.5.248 90653 username zamanialireza 90653 kill_reason Relative expiration date has reached 90653 unique_id port 90653 bytes_out 0 90653 bytes_in 0 90653 station_ip 5.120.53.157 90653 port 15728662 90653 nas_port_type Virtual 90659 username aminvpn 90659 mac 90659 bytes_out 0 90659 bytes_in 0 90659 station_ip 83.123.137.36 90659 port 21 90659 unique_id port 90659 remote_ip 10.8.0.6 90665 username zamanialireza 90665 kill_reason Relative expiration date has reached 90665 unique_id port 90665 bytes_out 0 90665 bytes_in 0 90665 station_ip 5.119.163.43 90665 port 15728667 90665 nas_port_type Virtual 90672 username asadi 90672 unique_id port 90672 terminate_cause User-Request 90672 bytes_out 10444 90672 bytes_in 24454 90672 station_ip 83.123.4.39 90672 port 15728669 90672 nas_port_type Virtual 90672 remote_ip 5.5.5.244 90676 username aminvpn 90676 mac 90676 bytes_out 0 90676 bytes_in 0 90676 station_ip 83.123.137.36 90676 port 21 90676 unique_id port 90676 remote_ip 10.8.0.6 90678 username forozande 90678 unique_id port 90678 terminate_cause User-Request 90678 bytes_out 66548 90678 bytes_in 1427313 90678 station_ip 83.122.177.47 90678 port 15728672 90678 nas_port_type Virtual 90678 remote_ip 5.5.5.242 90682 username forozande 90682 unique_id port 90682 terminate_cause User-Request 90682 bytes_out 49106 90682 bytes_in 710060 90682 station_ip 83.122.177.47 90682 port 15728675 90682 nas_port_type Virtual 90682 remote_ip 5.5.5.242 90687 username aminvpn 90687 mac 90687 bytes_out 0 90687 bytes_in 0 90687 station_ip 83.123.137.36 90687 port 21 90687 unique_id port 90687 remote_ip 10.8.0.6 90688 username mammad 90688 unique_id port 90688 terminate_cause User-Request 90688 bytes_out 0 90688 bytes_in 0 90688 station_ip 5.119.65.58 90688 port 15728678 90688 nas_port_type Virtual 90688 remote_ip 5.5.5.241 90698 username forozande 90698 unique_id port 90698 terminate_cause User-Request 90698 bytes_out 0 90698 bytes_in 0 90698 station_ip 83.122.177.47 90698 port 15728685 90698 nas_port_type Virtual 90698 remote_ip 5.5.5.242 90701 username forozande 90701 unique_id port 90701 terminate_cause User-Request 90701 bytes_out 12575 90701 bytes_in 23656 90701 station_ip 83.122.177.47 90701 port 15728688 90701 nas_port_type Virtual 90701 remote_ip 5.5.5.242 90712 username madadi2 90712 unique_id port 90712 terminate_cause Lost-Carrier 90712 bytes_out 49745 90712 bytes_in 424051 90712 station_ip 5.119.156.79 90712 port 15728697 90712 nas_port_type Virtual 90712 remote_ip 5.5.5.236 90714 username caferibar 90714 unique_id port 90714 terminate_cause User-Request 90714 bytes_out 12701578 90714 bytes_in 800339 90714 station_ip 94.241.181.120 90714 port 15728699 90714 nas_port_type Virtual 90714 remote_ip 5.5.5.235 90717 username asadi 90717 unique_id port 90717 terminate_cause User-Request 90717 bytes_out 277583 90717 bytes_in 20434030 90717 station_ip 83.123.4.39 90717 port 15728706 90717 nas_port_type Virtual 90717 remote_ip 5.5.5.244 90720 username bcboard 90720 unique_id port 90720 terminate_cause User-Request 90720 bytes_out 9928 90720 bytes_in 24879 90720 station_ip 83.123.42.226 90720 port 15728708 90720 nas_port_type Virtual 90720 remote_ip 5.5.5.234 90731 username caferibar 90731 unique_id port 90731 terminate_cause User-Request 90731 bytes_out 71665 90731 bytes_in 1658796 90731 station_ip 83.123.20.200 90731 port 15728721 90731 nas_port_type Virtual 90731 remote_ip 5.5.5.229 90733 username forozande 90733 unique_id port 90685 remote_ip 10.8.0.6 90686 username asadi 90686 unique_id port 90686 terminate_cause User-Request 90686 bytes_out 0 90686 bytes_in 0 90686 station_ip 83.123.4.39 90686 port 15728677 90686 nas_port_type Virtual 90686 remote_ip 5.5.5.244 90690 username forozande 90690 unique_id port 90690 terminate_cause User-Request 90690 bytes_out 11607 90690 bytes_in 27000 90690 station_ip 83.122.177.47 90690 port 15728680 90690 nas_port_type Virtual 90690 remote_ip 5.5.5.242 90691 username alinezhad 90691 unique_id port 90691 terminate_cause User-Request 90691 bytes_out 0 90691 bytes_in 0 90691 station_ip 83.123.247.49 90691 port 15728682 90691 nas_port_type Virtual 90691 remote_ip 5.5.5.240 90693 username forozande 90693 unique_id port 90693 terminate_cause User-Request 90693 bytes_out 27047 90693 bytes_in 97251 90693 station_ip 83.122.177.47 90693 port 15728683 90693 nas_port_type Virtual 90693 remote_ip 5.5.5.242 90695 username aminvpn 90695 mac 90695 bytes_out 0 90695 bytes_in 0 90695 station_ip 83.123.137.36 90695 port 21 90695 unique_id port 90695 remote_ip 10.8.0.6 90700 username forozande 90700 unique_id port 90700 terminate_cause User-Request 90700 bytes_out 29674 90700 bytes_in 31864 90700 station_ip 83.122.177.47 90700 port 15728687 90700 nas_port_type Virtual 90700 remote_ip 5.5.5.242 90702 username forozande 90702 unique_id port 90702 terminate_cause User-Request 90702 bytes_out 13365 90702 bytes_in 31924 90702 station_ip 83.122.177.47 90702 port 15728689 90702 nas_port_type Virtual 90702 remote_ip 5.5.5.242 90715 username bcboard 90715 unique_id port 90715 terminate_cause User-Request 90715 bytes_out 70504 90715 bytes_in 769165 90715 station_ip 83.123.42.226 90715 port 15728704 90715 nas_port_type Virtual 90715 remote_ip 5.5.5.234 90718 username forozande 90718 unique_id port 90718 terminate_cause User-Request 90718 bytes_out 11058 90718 bytes_in 22089 90718 station_ip 83.122.210.236 90718 port 15728707 90718 nas_port_type Virtual 90718 remote_ip 5.5.5.237 90724 username shokokian 90724 unique_id port 90724 terminate_cause Lost-Carrier 90724 bytes_out 224075 90724 bytes_in 2056515 90724 station_ip 89.32.111.60 90724 port 15728705 90724 nas_port_type Virtual 90724 remote_ip 5.5.5.233 90727 username alireza1 90727 unique_id port 90727 terminate_cause Lost-Carrier 90727 bytes_out 9429 90727 bytes_in 195520 90727 station_ip 5.119.209.119 90727 port 15728712 90727 nas_port_type Virtual 90727 remote_ip 5.5.5.248 90729 username asadi 90729 unique_id port 90729 terminate_cause User-Request 90729 bytes_out 101828 90729 bytes_in 1545699 90729 station_ip 83.123.4.39 90729 port 15728719 90729 nas_port_type Virtual 90729 remote_ip 5.5.5.244 90737 username caferibar 90737 unique_id port 90737 terminate_cause User-Request 90737 bytes_out 0 90737 bytes_in 0 90737 station_ip 37.156.49.174 90737 port 15728727 90737 nas_port_type Virtual 90737 remote_ip 5.5.5.225 90744 username aminvpn 90744 mac 90744 bytes_out 0 90744 bytes_in 0 90744 station_ip 83.123.137.36 90744 port 21 90744 unique_id port 90744 remote_ip 10.8.0.6 90753 username asadi 90753 unique_id port 90753 terminate_cause User-Request 90753 bytes_out 98290 90753 bytes_in 205462 90753 station_ip 83.123.4.39 90753 port 15728735 90753 nas_port_type Virtual 90753 remote_ip 5.5.5.244 90756 username alireza1 90756 unique_id port 90756 terminate_cause Lost-Carrier 90756 bytes_out 43125 90756 bytes_in 240786 90756 station_ip 5.119.209.119 90756 port 15728736 90756 nas_port_type Virtual 90756 remote_ip 5.5.5.231 90759 username aminvpn 90759 mac 90699 terminate_cause User-Request 90699 bytes_out 329978 90699 bytes_in 22329677 90699 station_ip 83.123.4.39 90699 port 15728686 90699 nas_port_type Virtual 90699 remote_ip 5.5.5.244 90705 username caferibar 90705 unique_id port 90705 terminate_cause User-Request 90705 bytes_out 414264 90705 bytes_in 202464 90705 station_ip 5.62.197.115 90705 port 15728693 90705 nas_port_type Virtual 90705 remote_ip 5.5.5.238 90711 username forozande 90711 unique_id port 90711 terminate_cause User-Request 90711 bytes_out 24884 90711 bytes_in 101049 90711 station_ip 83.122.210.236 90711 port 15728702 90711 nas_port_type Virtual 90711 remote_ip 5.5.5.237 90716 username alireza1 90716 unique_id port 90716 terminate_cause User-Request 90716 bytes_out 1037550 90716 bytes_in 7322421 90716 station_ip 5.119.209.119 90716 port 15728659 90716 nas_port_type Virtual 90716 remote_ip 5.5.5.248 90723 username bcboard 90723 unique_id port 90723 terminate_cause User-Request 90723 bytes_out 9794 90723 bytes_in 24317 90723 station_ip 83.123.42.226 90723 port 15728714 90723 nas_port_type Virtual 90723 remote_ip 5.5.5.234 90726 username forozande 90726 unique_id port 90726 terminate_cause User-Request 90726 bytes_out 24 90726 bytes_in 208 90726 station_ip 83.122.210.236 90726 port 15728717 90726 nas_port_type Virtual 90726 remote_ip 5.5.5.237 90732 username forozande 90732 unique_id port 90732 terminate_cause User-Request 90732 bytes_out 10959 90732 bytes_in 20160 90732 station_ip 83.123.17.12 90732 port 15728720 90732 nas_port_type Virtual 90732 remote_ip 5.5.5.230 90740 username asadi 90740 unique_id port 90740 terminate_cause User-Request 90740 bytes_out 6914 90740 bytes_in 22044 90740 station_ip 83.123.4.39 90740 port 15728729 90740 nas_port_type Virtual 90740 remote_ip 5.5.5.244 90747 username aminvpn 90747 mac 90747 bytes_out 0 90747 bytes_in 0 90747 station_ip 83.123.137.36 90747 port 23 90747 unique_id port 90747 remote_ip 10.8.0.6 90750 username alemzadeh 90750 unique_id port 90750 terminate_cause User-Request 90750 bytes_out 161305 90750 bytes_in 2377707 90750 station_ip 83.122.241.134 90750 port 15728734 90750 nas_port_type Virtual 90750 remote_ip 5.5.5.222 90751 username alireza1 90751 unique_id port 90751 terminate_cause User-Request 90751 bytes_out 43126 90751 bytes_in 173674 90751 station_ip 5.119.209.119 90751 port 15728732 90751 nas_port_type Virtual 90751 remote_ip 5.5.5.231 90752 username caferibar 90752 unique_id port 90752 terminate_cause Lost-Carrier 90752 bytes_out 373218 90752 bytes_in 2051827 90752 station_ip 5.119.142.62 90752 port 15728725 90752 nas_port_type Virtual 90752 remote_ip 5.5.5.227 90754 username aminvpn 90754 mac 90754 bytes_out 0 90754 bytes_in 0 90754 station_ip 83.123.137.36 90754 port 23 90754 unique_id port 90754 remote_ip 10.8.0.6 90763 username aminvpn 90763 mac 90763 bytes_out 0 90763 bytes_in 0 90763 station_ip 83.123.137.36 90763 port 23 90763 unique_id port 90763 remote_ip 10.8.0.6 90766 username aminvpn 90766 mac 90766 bytes_out 0 90766 bytes_in 0 90766 station_ip 83.123.60.55 90766 port 21 90766 unique_id port 90766 remote_ip 10.8.0.6 90774 username aminvpn 90774 mac 90774 bytes_out 0 90774 bytes_in 0 90774 station_ip 83.123.60.55 90774 port 21 90774 unique_id port 90774 remote_ip 10.8.0.6 90776 username aminvpn 90776 mac 90776 bytes_out 0 90776 bytes_in 0 90776 station_ip 83.123.137.36 90776 port 23 90776 unique_id port 90776 remote_ip 10.8.0.6 90779 username aminvpn 90779 mac 90779 bytes_out 0 90703 terminate_cause User-Request 90703 bytes_out 219167 90703 bytes_in 4380157 90703 station_ip 83.123.4.39 90703 port 15728691 90703 nas_port_type Virtual 90703 remote_ip 5.5.5.244 90704 username asadi 90704 unique_id port 90704 terminate_cause User-Request 90704 bytes_out 259349 90704 bytes_in 10332220 90704 station_ip 83.123.4.39 90704 port 15728692 90704 nas_port_type Virtual 90704 remote_ip 5.5.5.244 90706 username forozande 90706 unique_id port 90706 terminate_cause User-Request 90706 bytes_out 0 90706 bytes_in 0 90706 station_ip 83.122.210.236 90706 port 15728695 90706 nas_port_type Virtual 90706 remote_ip 5.5.5.237 90707 username forozande 90707 unique_id port 90707 terminate_cause User-Request 90707 bytes_out 26023 90707 bytes_in 79433 90707 station_ip 83.122.210.236 90707 port 15728696 90707 nas_port_type Virtual 90707 remote_ip 5.5.5.237 90708 username asadi 90708 unique_id port 90708 terminate_cause User-Request 90708 bytes_out 220162 90708 bytes_in 16143898 90708 station_ip 83.123.4.39 90708 port 15728698 90708 nas_port_type Virtual 90708 remote_ip 5.5.5.244 90709 username asadi 90709 unique_id port 90709 terminate_cause User-Request 90709 bytes_out 185853 90709 bytes_in 3745273 90709 station_ip 83.123.4.39 90709 port 15728700 90709 nas_port_type Virtual 90709 remote_ip 5.5.5.244 90710 username asadi 90710 unique_id port 90710 terminate_cause User-Request 90710 bytes_out 235609 90710 bytes_in 12740110 90710 station_ip 83.123.4.39 90710 port 15728701 90710 nas_port_type Virtual 90710 remote_ip 5.5.5.244 90713 username bcboard 90713 unique_id port 90713 terminate_cause User-Request 90713 bytes_out 85792 90713 bytes_in 785750 90713 station_ip 83.123.42.226 90713 port 15728703 90713 nas_port_type Virtual 90713 remote_ip 5.5.5.234 90719 username alinezhad 90719 unique_id port 90719 terminate_cause User-Request 90719 bytes_out 0 90719 bytes_in 0 90719 station_ip 5.202.8.127 90719 port 15728709 90719 nas_port_type Virtual 90719 remote_ip 5.5.5.232 90721 username alireza1 90721 unique_id port 90721 terminate_cause User-Request 90721 bytes_out 19590 90721 bytes_in 32416 90721 station_ip 5.119.209.119 90721 port 15728711 90721 nas_port_type Virtual 90721 remote_ip 5.5.5.248 90722 username bcboard 90722 unique_id port 90722 terminate_cause User-Request 90722 bytes_out 58892 90722 bytes_in 984561 90722 station_ip 83.123.42.226 90722 port 15728713 90722 nas_port_type Virtual 90722 remote_ip 5.5.5.234 90725 username forozande 90725 unique_id port 90725 terminate_cause User-Request 90725 bytes_out 0 90725 bytes_in 0 90725 station_ip 83.122.210.236 90725 port 15728716 90725 nas_port_type Virtual 90725 remote_ip 5.5.5.237 90728 username forozande 90728 unique_id port 90728 terminate_cause User-Request 90728 bytes_out 18610 90728 bytes_in 23948 90728 station_ip 83.123.17.12 90728 port 15728718 90728 nas_port_type Virtual 90728 remote_ip 5.5.5.230 90730 username aminvpn 90730 mac 90730 bytes_out 0 90730 bytes_in 0 90730 station_ip 83.123.137.36 90730 port 21 90730 unique_id port 90730 remote_ip 10.8.0.6 90735 username aminvpn 90735 unique_id port 90735 terminate_cause Lost-Carrier 90735 bytes_out 804651 90735 bytes_in 12117314 90735 station_ip 5.120.78.99 90735 port 15728724 90735 nas_port_type Virtual 90735 remote_ip 5.5.5.228 90736 username alireza1 90736 unique_id port 90736 terminate_cause User-Request 90736 bytes_out 227200 90736 bytes_in 542316 90736 station_ip 5.119.209.119 90736 port 15728715 90736 nas_port_type Virtual 90736 remote_ip 5.5.5.231 90738 username aminvpn 90738 unique_id port 90738 terminate_cause User-Request 90733 terminate_cause User-Request 90733 bytes_out 61733 90733 bytes_in 61141 90733 station_ip 83.123.17.12 90733 port 15728722 90733 nas_port_type Virtual 90733 remote_ip 5.5.5.230 90734 username caferibar 90734 unique_id port 90734 terminate_cause User-Request 90734 bytes_out 684886 90734 bytes_in 449011 90734 station_ip 5.62.197.115 90734 port 15728723 90734 nas_port_type Virtual 90734 remote_ip 5.5.5.238 90739 username aminvpn 90739 mac 90739 bytes_out 0 90739 bytes_in 0 90739 station_ip 83.123.121.47 90739 port 21 90739 unique_id port 90739 remote_ip 10.8.0.6 90748 username aminvpn 90748 mac 90748 bytes_out 0 90748 bytes_in 0 90748 station_ip 83.123.121.47 90748 port 21 90748 unique_id port 90748 remote_ip 10.8.0.6 90755 username aminvpn 90755 mac 90755 bytes_out 0 90755 bytes_in 0 90755 station_ip 83.123.60.55 90755 port 21 90755 unique_id port 90755 remote_ip 10.8.0.6 90757 username aminvpn 90757 mac 90757 bytes_out 526612 90757 bytes_in 7561372 90757 station_ip 83.123.137.36 90757 port 23 90757 unique_id port 90757 remote_ip 10.8.0.6 90760 username aminvpn 90760 mac 90760 bytes_out 0 90760 bytes_in 0 90760 station_ip 83.123.60.55 90760 port 21 90760 unique_id port 90760 remote_ip 10.8.0.6 90764 username aminvpn 90764 mac 90764 bytes_out 0 90764 bytes_in 0 90764 station_ip 83.123.60.55 90764 port 21 90764 unique_id port 90764 remote_ip 10.8.0.6 90768 username aminvpn 90768 mac 90768 bytes_out 0 90768 bytes_in 0 90768 station_ip 83.123.137.36 90768 port 23 90768 unique_id port 90768 remote_ip 10.8.0.6 90772 username alinezhad 90772 unique_id port 90772 terminate_cause User-Request 90772 bytes_out 0 90772 bytes_in 0 90772 station_ip 83.123.152.163 90772 port 15728738 90772 nas_port_type Virtual 90772 remote_ip 5.5.5.219 90780 username aminvpn 90780 mac 90780 bytes_out 0 90780 bytes_in 0 90780 station_ip 83.123.137.36 90780 port 23 90780 unique_id port 90780 remote_ip 10.8.0.6 90786 username aminvpn 90786 mac 90786 bytes_out 0 90786 bytes_in 0 90786 station_ip 83.123.60.55 90786 port 21 90786 unique_id port 90786 remote_ip 10.8.0.6 90789 username heydari 90789 unique_id port 90789 terminate_cause User-Request 90789 bytes_out 206392 90789 bytes_in 2015808 90789 station_ip 5.120.149.87 90789 port 15728737 90789 nas_port_type Virtual 90789 remote_ip 5.5.5.220 90790 username alireza1 90790 unique_id port 90790 terminate_cause User-Request 90790 bytes_out 8415 90790 bytes_in 35015 90790 station_ip 5.119.184.70 90790 port 15728743 90790 nas_port_type Virtual 90790 remote_ip 5.5.5.215 90792 username alinezhad 90792 unique_id port 90792 terminate_cause User-Request 90792 bytes_out 0 90792 bytes_in 0 90792 station_ip 83.123.189.54 90792 port 15728745 90792 nas_port_type Virtual 90792 remote_ip 5.5.5.213 90794 username alireza1 90794 unique_id port 90794 terminate_cause Lost-Carrier 90794 bytes_out 13479 90794 bytes_in 144248 90794 station_ip 5.119.184.70 90794 port 15728742 90794 nas_port_type Virtual 90794 remote_ip 5.5.5.217 90795 username forozande 90795 unique_id port 90795 terminate_cause User-Request 90795 bytes_out 16930 90795 bytes_in 93765 90795 station_ip 83.123.62.40 90795 port 15728748 90795 nas_port_type Virtual 90795 remote_ip 5.5.5.212 90804 username alireza1 90804 unique_id port 90804 terminate_cause Lost-Carrier 90804 bytes_out 763510 90804 bytes_in 8647420 90804 station_ip 5.120.13.102 90804 port 15728752 90804 nas_port_type Virtual 90738 bytes_out 1204720 90738 bytes_in 16322483 90738 station_ip 83.123.121.47 90738 port 15728726 90738 nas_port_type Virtual 90738 remote_ip 5.5.5.226 90741 username madadi2 90741 unique_id port 90741 terminate_cause Lost-Carrier 90741 bytes_out 405910 90741 bytes_in 2242878 90741 station_ip 5.119.158.125 90741 port 15728728 90741 nas_port_type Virtual 90741 remote_ip 5.5.5.224 90742 username aminvpn 90742 mac 90742 bytes_out 812804 90742 bytes_in 4117872 90742 station_ip 83.123.121.47 90742 port 21 90742 unique_id port 90742 remote_ip 10.8.0.6 90743 username alemzadeh 90743 unique_id port 90743 terminate_cause User-Request 90743 bytes_out 358850 90743 bytes_in 7012170 90743 station_ip 83.122.241.134 90743 port 15728731 90743 nas_port_type Virtual 90743 remote_ip 5.5.5.222 90745 username aminvpn 90745 mac 90745 bytes_out 0 90745 bytes_in 0 90745 station_ip 83.123.121.47 90745 port 23 90745 unique_id port 90745 remote_ip 10.8.0.6 90746 username aminvpn 90746 mac 90746 bytes_out 0 90746 bytes_in 0 90746 station_ip 83.123.121.47 90746 port 21 90746 unique_id port 90746 remote_ip 10.8.0.6 90749 username jamali 90749 unique_id port 90749 terminate_cause User-Request 90749 bytes_out 614873 90749 bytes_in 15032787 90749 station_ip 37.129.64.72 90749 port 15728733 90749 nas_port_type Virtual 90749 remote_ip 5.5.5.221 90758 username aminvpn 90758 mac 90758 bytes_out 0 90758 bytes_in 0 90758 station_ip 83.123.60.55 90758 port 21 90758 unique_id port 90758 remote_ip 10.8.0.6 90761 username aminvpn 90761 mac 90761 bytes_out 0 90761 bytes_in 0 90761 station_ip 83.123.137.36 90761 port 23 90761 unique_id port 90761 remote_ip 10.8.0.6 90762 username aminvpn 90762 mac 90762 bytes_out 0 90762 bytes_in 0 90762 station_ip 83.123.60.55 90762 port 21 90762 unique_id port 90762 remote_ip 10.8.0.6 90769 username aminvpn 90769 mac 90769 bytes_out 0 90769 bytes_in 0 90769 station_ip 83.123.60.55 90769 port 21 90769 unique_id port 90769 remote_ip 10.8.0.6 90771 username aminvpn 90771 mac 90771 bytes_out 0 90771 bytes_in 0 90771 station_ip 83.123.60.55 90771 port 21 90771 unique_id port 90771 remote_ip 10.8.0.6 90773 username aminvpn 90773 mac 90773 bytes_out 0 90773 bytes_in 0 90773 station_ip 83.123.137.36 90773 port 23 90773 unique_id port 90773 remote_ip 10.8.0.6 90775 username forozande 90775 unique_id port 90775 terminate_cause User-Request 90775 bytes_out 44677 90775 bytes_in 63154 90775 station_ip 83.122.236.181 90775 port 15728739 90775 nas_port_type Virtual 90775 remote_ip 5.5.5.218 90777 username aminvpn 90777 mac 90777 bytes_out 0 90777 bytes_in 0 90777 station_ip 83.123.60.55 90777 port 21 90777 unique_id port 90777 remote_ip 10.8.0.6 90781 username aminvpn 90781 mac 90781 bytes_out 0 90781 bytes_in 0 90781 station_ip 83.123.60.55 90781 port 21 90781 unique_id port 90781 remote_ip 10.8.0.6 90783 username aminvpn 90783 mac 90783 bytes_out 15332 90783 bytes_in 26127 90783 station_ip 83.123.137.36 90783 port 23 90783 unique_id port 90783 remote_ip 10.8.0.6 90800 username mansur 90800 unique_id port 90800 terminate_cause User-Request 90800 bytes_out 0 90800 bytes_in 0 90800 station_ip 5.119.219.41 90800 port 15728753 90800 nas_port_type Virtual 90800 remote_ip 5.5.5.209 90803 username asadi 90803 unique_id port 90803 terminate_cause User-Request 90803 bytes_out 82089 90803 bytes_in 432793 90759 bytes_out 0 90759 bytes_in 0 90759 station_ip 83.123.137.36 90759 port 23 90759 unique_id port 90759 remote_ip 10.8.0.6 90765 username aminvpn 90765 mac 90765 bytes_out 0 90765 bytes_in 0 90765 station_ip 83.123.137.36 90765 port 23 90765 unique_id port 90765 remote_ip 10.8.0.6 90767 username aminvpn 90767 unique_id port 90767 terminate_cause Lost-Carrier 90767 bytes_out 74276 90767 bytes_in 469741 90767 station_ip 31.56.113.142 90767 port 15728730 90767 nas_port_type Virtual 90767 remote_ip 5.5.5.223 90770 username aminvpn 90770 mac 90770 bytes_out 0 90770 bytes_in 0 90770 station_ip 83.123.137.36 90770 port 23 90770 unique_id port 90770 remote_ip 10.8.0.6 90778 username aminvpn 90778 mac 90778 bytes_out 0 90778 bytes_in 0 90778 station_ip 83.123.137.36 90778 port 23 90778 unique_id port 90778 remote_ip 10.8.0.6 90784 username aminvpn 90784 mac 90784 bytes_out 0 90784 bytes_in 0 90784 station_ip 83.123.60.55 90784 port 21 90784 unique_id port 90784 remote_ip 10.8.0.6 90787 username aminvpn 90787 mac 90787 bytes_out 0 90787 bytes_in 0 90787 station_ip 83.123.137.36 90787 port 23 90787 unique_id port 90787 remote_ip 10.8.0.6 90788 username aminvpn 90788 mac 90788 bytes_out 0 90788 bytes_in 0 90788 station_ip 83.123.60.55 90788 port 21 90788 unique_id port 90788 remote_ip 10.8.0.6 90791 username caferibar 90791 unique_id port 90791 terminate_cause User-Request 90791 bytes_out 21158943 90791 bytes_in 541842141 90791 station_ip 94.241.181.120 90791 port 15728710 90791 nas_port_type Virtual 90791 remote_ip 5.5.5.235 90799 username aminvpn 90799 mac 90799 bytes_out 41731 90799 bytes_in 68851 90799 station_ip 83.123.121.16 90799 port 21 90799 unique_id port 90799 remote_ip 10.8.0.6 90802 username caferibar 90802 unique_id port 90802 terminate_cause User-Request 90802 bytes_out 39687 90802 bytes_in 801519 90802 station_ip 83.123.27.237 90802 port 15728756 90802 nas_port_type Virtual 90802 remote_ip 5.5.5.207 90805 username asadi 90805 unique_id port 90805 terminate_cause User-Request 90805 bytes_out 16718 90805 bytes_in 61814 90805 station_ip 83.123.4.39 90805 port 15728758 90805 nas_port_type Virtual 90805 remote_ip 5.5.5.244 90806 username asadi 90806 unique_id port 90806 terminate_cause User-Request 90806 bytes_out 67240 90806 bytes_in 1003355 90806 station_ip 83.123.4.39 90806 port 15728759 90806 nas_port_type Virtual 90806 remote_ip 5.5.5.244 90817 username madadi2 90817 unique_id port 90817 terminate_cause Lost-Carrier 90817 bytes_out 250557 90817 bytes_in 157881 90817 station_ip 5.120.11.215 90817 port 15728764 90817 nas_port_type Virtual 90817 remote_ip 5.5.5.205 90818 username asadi 90818 unique_id port 90818 terminate_cause User-Request 90818 bytes_out 31944 90818 bytes_in 126767 90818 station_ip 83.123.4.39 90818 port 15728771 90818 nas_port_type Virtual 90818 remote_ip 5.5.5.244 90820 username alemzadeh 90820 unique_id port 90820 terminate_cause User-Request 90820 bytes_out 0 90820 bytes_in 0 90820 station_ip 83.122.143.18 90820 port 15728775 90820 nas_port_type Virtual 90820 remote_ip 5.5.5.199 90824 username alemzadeh 90824 unique_id port 90824 terminate_cause User-Request 90824 bytes_out 238856 90824 bytes_in 2197580 90824 station_ip 83.122.143.18 90824 port 15728779 90824 nas_port_type Virtual 90824 remote_ip 5.5.5.199 90831 username madadi2 90831 unique_id port 90831 terminate_cause Lost-Carrier 90831 bytes_out 23034 90831 bytes_in 148303 90831 station_ip 5.119.77.42 90779 bytes_in 0 90779 station_ip 83.123.60.55 90779 port 21 90779 unique_id port 90779 remote_ip 10.8.0.6 90782 username alireza1 90782 unique_id port 90782 terminate_cause User-Request 90782 bytes_out 224578 90782 bytes_in 815614 90782 station_ip 5.119.184.70 90782 port 15728740 90782 nas_port_type Virtual 90782 remote_ip 5.5.5.217 90785 username aminvpn 90785 mac 90785 bytes_out 49060 90785 bytes_in 77033 90785 station_ip 83.123.137.36 90785 port 23 90785 unique_id port 90785 remote_ip 10.8.0.6 90793 username aminvpn 90793 unique_id port 90793 terminate_cause User-Request 90793 bytes_out 444438 90793 bytes_in 4492652 90793 station_ip 83.123.60.55 90793 port 15728746 90793 nas_port_type Virtual 90793 remote_ip 5.5.5.214 90796 username jamali 90796 unique_id port 90796 terminate_cause User-Request 90796 bytes_out 737478 90796 bytes_in 18908499 90796 station_ip 37.129.64.72 90796 port 15728750 90796 nas_port_type Virtual 90796 remote_ip 5.5.5.221 90797 username alireza1 90797 unique_id port 90797 terminate_cause Lost-Carrier 90797 bytes_out 270 90797 bytes_in 119561 90797 station_ip 5.119.184.70 90797 port 15728749 90797 nas_port_type Virtual 90797 remote_ip 5.5.5.215 90798 username aminvpn 90798 mac 90798 bytes_out 1286228 90798 bytes_in 14082780 90798 station_ip 83.123.137.36 90798 port 23 90798 unique_id port 90798 remote_ip 10.8.0.6 90801 username mansur 90801 unique_id port 90801 terminate_cause User-Request 90801 bytes_out 0 90801 bytes_in 0 90801 station_ip 5.119.219.41 90801 port 15728754 90801 nas_port_type Virtual 90801 remote_ip 5.5.5.209 90808 username asadi 90808 unique_id port 90808 terminate_cause User-Request 90808 bytes_out 40286 90808 bytes_in 162789 90808 station_ip 83.123.4.39 90808 port 15728761 90808 nas_port_type Virtual 90808 remote_ip 5.5.5.244 90809 username forozande 90809 unique_id port 90809 terminate_cause User-Request 90809 bytes_out 109870 90809 bytes_in 734567 90809 station_ip 37.129.6.70 90809 port 15728762 90809 nas_port_type Virtual 90809 remote_ip 5.5.5.206 90812 username alinezhad 90812 unique_id port 90812 terminate_cause User-Request 90812 bytes_out 0 90812 bytes_in 0 90812 station_ip 113.203.46.33 90812 port 15728765 90812 nas_port_type Virtual 90812 remote_ip 5.5.5.204 90814 username forozande 90814 unique_id port 90814 terminate_cause User-Request 90814 bytes_out 76727 90814 bytes_in 848121 90814 station_ip 37.129.6.70 90814 port 15728767 90814 nas_port_type Virtual 90814 remote_ip 5.5.5.206 90819 username alinezhad 90819 unique_id port 90819 terminate_cause User-Request 90819 bytes_out 0 90819 bytes_in 0 90819 station_ip 113.203.103.134 90819 port 15728773 90819 nas_port_type Virtual 90819 remote_ip 5.5.5.201 90822 username caferibar 90822 unique_id port 90822 terminate_cause Lost-Carrier 90822 bytes_out 5749696 90822 bytes_in 89544807 90822 station_ip 94.241.181.120 90822 port 15728690 90822 nas_port_type Virtual 90822 remote_ip 5.5.5.239 90830 username forozande 90830 unique_id port 90830 terminate_cause User-Request 90830 bytes_out 51879 90830 bytes_in 308920 90830 station_ip 83.122.130.17 90830 port 15728785 90830 nas_port_type Virtual 90830 remote_ip 5.5.5.192 90834 username asadi 90834 unique_id port 90834 terminate_cause User-Request 90834 bytes_out 55962 90834 bytes_in 745004 90834 station_ip 83.123.4.39 90834 port 15728788 90834 nas_port_type Virtual 90834 remote_ip 5.5.5.244 90838 username caferibar 90838 unique_id port 90838 terminate_cause Lost-Carrier 90838 bytes_out 719813 90838 bytes_in 13676255 90838 station_ip 89.34.32.152 90838 port 15728774 90803 station_ip 83.123.4.39 90803 port 15728757 90803 nas_port_type Virtual 90803 remote_ip 5.5.5.244 90810 username madadi2 90810 unique_id port 90810 terminate_cause Lost-Carrier 90810 bytes_out 182468 90810 bytes_in 1702808 90810 station_ip 5.120.97.58 90810 port 15728751 90810 nas_port_type Virtual 90810 remote_ip 5.5.5.211 90823 username madadi2 90823 unique_id port 90823 terminate_cause Lost-Carrier 90823 bytes_out 695287 90823 bytes_in 13528386 90823 station_ip 5.119.161.208 90823 port 15728770 90823 nas_port_type Virtual 90823 remote_ip 5.5.5.202 90826 username alireza1 90826 unique_id port 90826 terminate_cause Lost-Carrier 90826 bytes_out 36252 90826 bytes_in 227107 90826 station_ip 5.119.168.239 90826 port 15728777 90826 nas_port_type Virtual 90826 remote_ip 5.5.5.198 90828 username alinezhad 90828 unique_id port 90828 terminate_cause User-Request 90828 bytes_out 0 90828 bytes_in 0 90828 station_ip 37.129.45.11 90828 port 15728784 90828 nas_port_type Virtual 90828 remote_ip 5.5.5.193 90835 username alinezhad 90835 unique_id port 90835 terminate_cause User-Request 90835 bytes_out 0 90835 bytes_in 0 90835 station_ip 37.129.70.69 90835 port 15728789 90835 nas_port_type Virtual 90835 remote_ip 5.5.5.190 90839 username mansur 90839 unique_id port 90839 terminate_cause User-Request 90839 bytes_out 29018665 90839 bytes_in 598477502 90839 station_ip 5.119.219.41 90839 port 15728776 90839 nas_port_type Virtual 90839 remote_ip 5.5.5.209 90849 username forozande 90849 unique_id port 90849 terminate_cause User-Request 90849 bytes_out 20504 90849 bytes_in 42182 90849 station_ip 83.122.130.17 90849 port 15728798 90849 nas_port_type Virtual 90849 remote_ip 5.5.5.192 90850 username forozande 90850 unique_id port 90850 terminate_cause User-Request 90850 bytes_out 11685 90850 bytes_in 23127 90850 station_ip 83.122.130.17 90850 port 15728800 90850 nas_port_type Virtual 90850 remote_ip 5.5.5.192 90854 username forozande 90854 unique_id port 90854 terminate_cause User-Request 90854 bytes_out 21761 90854 bytes_in 44768 90854 station_ip 83.122.130.17 90854 port 15728806 90854 nas_port_type Virtual 90854 remote_ip 5.5.5.192 90859 username asadi 90859 unique_id port 90859 terminate_cause User-Request 90859 bytes_out 199849 90859 bytes_in 4425190 90859 station_ip 83.123.4.39 90859 port 15728812 90859 nas_port_type Virtual 90859 remote_ip 5.5.5.244 90861 username bcboard 90861 unique_id port 90861 terminate_cause User-Request 90861 bytes_out 1410293 90861 bytes_in 26587483 90861 station_ip 83.123.212.116 90861 port 15728807 90861 nas_port_type Virtual 90861 remote_ip 5.5.5.183 90873 username asadi 90873 unique_id port 90873 terminate_cause User-Request 90873 bytes_out 19755 90873 bytes_in 53822 90873 station_ip 83.123.4.39 90873 port 15728823 90873 nas_port_type Virtual 90873 remote_ip 5.5.5.244 90874 username ahmadipour 90874 unique_id port 90874 terminate_cause Lost-Carrier 90874 bytes_out 10747 90874 bytes_in 42834 90874 station_ip 83.123.34.215 90874 port 15728824 90874 nas_port_type Virtual 90874 remote_ip 5.5.5.179 90877 username farhad 90877 unique_id port 90877 terminate_cause User-Request 90877 bytes_out 18708113 90877 bytes_in 10626914 90877 station_ip 5.119.175.133 90877 port 15728821 90877 nas_port_type Virtual 90877 remote_ip 5.5.5.180 90879 username forozande 90879 unique_id port 90879 terminate_cause User-Request 90879 bytes_out 50189 90879 bytes_in 458208 90879 station_ip 83.122.99.94 90879 port 15728831 90879 nas_port_type Virtual 90879 remote_ip 5.5.5.178 90884 username forozande 90884 unique_id port 90884 terminate_cause User-Request 90884 bytes_out 27249 90804 remote_ip 5.5.5.210 90807 username alireza1 90807 unique_id port 90807 terminate_cause User-Request 90807 bytes_out 1104581 90807 bytes_in 2745622 90807 station_ip 5.120.13.102 90807 port 15728755 90807 nas_port_type Virtual 90807 remote_ip 5.5.5.208 90811 username asadi 90811 unique_id port 90811 terminate_cause User-Request 90811 bytes_out 38041 90811 bytes_in 109500 90811 station_ip 83.123.4.39 90811 port 15728763 90811 nas_port_type Virtual 90811 remote_ip 5.5.5.244 90813 username asadi 90813 unique_id port 90813 terminate_cause User-Request 90813 bytes_out 45925 90813 bytes_in 109019 90813 station_ip 83.123.4.39 90813 port 15728766 90813 nas_port_type Virtual 90813 remote_ip 5.5.5.244 90815 username alireza1 90815 unique_id port 90815 terminate_cause Lost-Carrier 90815 bytes_out 102081 90815 bytes_in 388177 90815 station_ip 5.120.13.102 90815 port 15728760 90815 nas_port_type Virtual 90815 remote_ip 5.5.5.208 90816 username asadi 90816 unique_id port 90816 terminate_cause User-Request 90816 bytes_out 41103 90816 bytes_in 106555 90816 station_ip 83.123.4.39 90816 port 15728769 90816 nas_port_type Virtual 90816 remote_ip 5.5.5.244 90821 username aminvpn 90821 unique_id port 90821 terminate_cause User-Request 90821 bytes_out 10994213 90821 bytes_in 107419873 90821 station_ip 83.123.60.55 90821 port 15728747 90821 nas_port_type Virtual 90821 remote_ip 5.5.5.214 90825 username asadi 90825 unique_id port 90825 terminate_cause User-Request 90825 bytes_out 92190 90825 bytes_in 339814 90825 station_ip 83.123.4.39 90825 port 15728781 90825 nas_port_type Virtual 90825 remote_ip 5.5.5.244 90827 username aminvpn 90827 mac 90827 bytes_out 0 90827 bytes_in 0 90827 station_ip 83.122.179.119 90827 port 23 90827 unique_id port 90827 remote_ip 10.8.0.6 90829 username aminvpn 90829 mac 90829 bytes_out 0 90829 bytes_in 0 90829 station_ip 83.122.179.119 90829 port 21 90829 unique_id port 90829 remote_ip 10.8.0.6 90832 username forozande 90832 unique_id port 90832 terminate_cause User-Request 90832 bytes_out 0 90832 bytes_in 0 90832 station_ip 83.122.130.17 90832 port 15728787 90832 nas_port_type Virtual 90832 remote_ip 5.5.5.192 90837 username khalili 90837 unique_id port 90837 terminate_cause User-Request 90837 bytes_out 6700969 90837 bytes_in 141306244 90837 station_ip 5.120.86.231 90837 port 15728768 90837 nas_port_type Virtual 90837 remote_ip 5.5.5.203 90843 username asadi 90843 unique_id port 90843 terminate_cause User-Request 90843 bytes_out 25643 90843 bytes_in 89378 90843 station_ip 83.123.4.39 90843 port 15728795 90843 nas_port_type Virtual 90843 remote_ip 5.5.5.244 90845 username asadi 90845 unique_id port 90845 terminate_cause User-Request 90845 bytes_out 49500 90845 bytes_in 163564 90845 station_ip 83.123.4.39 90845 port 15728796 90845 nas_port_type Virtual 90845 remote_ip 5.5.5.244 90851 username aminvpn 90851 unique_id port 90851 terminate_cause User-Request 90851 bytes_out 6672406 90851 bytes_in 43624447 90851 station_ip 5.120.77.245 90851 port 15728741 90851 nas_port_type Virtual 90851 remote_ip 5.5.5.216 90853 username zamanialireza 90853 kill_reason Relative expiration date has reached 90853 unique_id port 90853 bytes_out 0 90853 bytes_in 0 90853 station_ip 5.119.247.34 90853 port 15728805 90853 nas_port_type Virtual 90857 username forozande 90857 unique_id port 90857 terminate_cause User-Request 90857 bytes_out 17446 90857 bytes_in 119690 90857 station_ip 83.122.130.17 90857 port 15728808 90857 nas_port_type Virtual 90857 remote_ip 5.5.5.192 90862 username forozande 90862 unique_id port 90862 terminate_cause User-Request 90831 port 15728780 90831 nas_port_type Virtual 90831 remote_ip 5.5.5.196 90833 username alireza1 90833 unique_id port 90833 terminate_cause Lost-Carrier 90833 bytes_out 1233099 90833 bytes_in 5920027 90833 station_ip 5.120.176.26 90833 port 15728778 90833 nas_port_type Virtual 90833 remote_ip 5.5.5.197 90836 username mahdixz 90836 unique_id port 90836 terminate_cause User-Request 90836 bytes_out 2052542 90836 bytes_in 42949602 90836 station_ip 151.235.104.45 90836 port 15728782 90836 nas_port_type Virtual 90836 remote_ip 5.5.5.195 90841 username alireza1 90841 unique_id port 90841 terminate_cause Lost-Carrier 90841 bytes_out 956383 90841 bytes_in 6907629 90841 station_ip 5.120.176.26 90841 port 15728786 90841 nas_port_type Virtual 90841 remote_ip 5.5.5.191 90844 username aminvpn 90844 mac 90844 bytes_out 945616 90844 bytes_in 10452578 90844 station_ip 83.122.179.119 90844 port 35 90844 unique_id port 90844 remote_ip 10.8.1.10 90847 username caferibar 90847 unique_id port 90847 terminate_cause User-Request 90847 bytes_out 64478 90847 bytes_in 873980 90847 station_ip 83.122.58.37 90847 port 15728797 90847 nas_port_type Virtual 90847 remote_ip 5.5.5.187 90852 username asadi 90852 unique_id port 90852 terminate_cause User-Request 90852 bytes_out 17887 90852 bytes_in 87138 90852 station_ip 83.123.4.39 90852 port 15728804 90852 nas_port_type Virtual 90852 remote_ip 5.5.5.244 90856 username madadi2 90856 unique_id port 90856 terminate_cause Lost-Carrier 90856 bytes_out 63710 90856 bytes_in 392423 90856 station_ip 5.119.163.213 90856 port 15728799 90856 nas_port_type Virtual 90856 remote_ip 5.5.5.186 90864 username caferibar 90864 unique_id port 90864 terminate_cause Lost-Carrier 90864 bytes_out 129868515 90864 bytes_in 144901301 90864 station_ip 5.119.142.62 90864 port 15728772 90864 nas_port_type Virtual 90864 remote_ip 5.5.5.227 90872 username heydari 90872 unique_id port 90872 terminate_cause User-Request 90872 bytes_out 379429 90872 bytes_in 1355736 90872 station_ip 5.120.149.87 90872 port 15728792 90872 nas_port_type Virtual 90872 remote_ip 5.5.5.220 90876 username forozande 90876 unique_id port 90876 terminate_cause User-Request 90876 bytes_out 46778 90876 bytes_in 259672 90876 station_ip 83.122.99.94 90876 port 15728826 90876 nas_port_type Virtual 90876 remote_ip 5.5.5.178 90882 username forozande 90882 unique_id port 90882 terminate_cause User-Request 90882 bytes_out 22186 90882 bytes_in 42936 90882 station_ip 83.122.99.94 90882 port 15728835 90882 nas_port_type Virtual 90882 remote_ip 5.5.5.178 90886 username forozande 90886 unique_id port 90886 terminate_cause User-Request 90886 bytes_out 16799 90886 bytes_in 26542 90886 station_ip 83.122.99.94 90886 port 15728838 90886 nas_port_type Virtual 90886 remote_ip 5.5.5.178 90892 username aminvpn 90892 mac 90892 bytes_out 0 90892 bytes_in 0 90892 station_ip 83.123.60.55 90892 port 21 90892 unique_id port 90892 remote_ip 10.8.0.6 90895 username afarin 90895 unique_id port 90895 terminate_cause User-Request 90895 bytes_out 531435 90895 bytes_in 7436716 90895 station_ip 151.238.230.233 90895 port 15728845 90895 nas_port_type Virtual 90895 remote_ip 5.5.5.172 90900 username asadi 90900 unique_id port 90900 terminate_cause User-Request 90900 bytes_out 50469 90900 bytes_in 277877 90900 station_ip 83.123.4.39 90900 port 15728851 90900 nas_port_type Virtual 90900 remote_ip 5.5.5.244 90907 username madadi2 90907 kill_reason Maximum number of concurrent logins reached 90907 unique_id port 90907 bytes_out 0 90907 bytes_in 0 90907 station_ip 5.119.76.203 90907 port 15728859 90907 nas_port_type Virtual 90838 nas_port_type Virtual 90838 remote_ip 5.5.5.200 90840 username asadi 90840 unique_id port 90840 terminate_cause User-Request 90840 bytes_out 48309 90840 bytes_in 110485 90840 station_ip 83.123.4.39 90840 port 15728794 90840 nas_port_type Virtual 90840 remote_ip 5.5.5.244 90842 username madadi2 90842 unique_id port 90842 terminate_cause Lost-Carrier 90842 bytes_out 77577 90842 bytes_in 294342 90842 station_ip 5.120.36.91 90842 port 15728790 90842 nas_port_type Virtual 90842 remote_ip 5.5.5.189 90846 username madadi2 90846 unique_id port 90846 terminate_cause Lost-Carrier 90846 bytes_out 106073 90846 bytes_in 493555 90846 station_ip 5.119.147.174 90846 port 15728793 90846 nas_port_type Virtual 90846 remote_ip 5.5.5.188 90848 username mammad 90848 unique_id port 90848 terminate_cause User-Request 90848 bytes_out 2120236 90848 bytes_in 24099627 90848 station_ip 78.39.26.45 90848 port 15728783 90848 nas_port_type Virtual 90848 remote_ip 5.5.5.194 90855 username zamanialireza 90855 kill_reason Relative expiration date has reached 90855 unique_id port 90855 bytes_out 0 90855 bytes_in 0 90855 station_ip 5.120.53.157 90855 port 15728809 90855 nas_port_type Virtual 90858 username forozande 90858 unique_id port 90858 terminate_cause User-Request 90858 bytes_out 14076 90858 bytes_in 30828 90858 station_ip 83.122.130.17 90858 port 15728811 90858 nas_port_type Virtual 90858 remote_ip 5.5.5.192 90860 username forozande 90860 unique_id port 90860 terminate_cause User-Request 90860 bytes_out 16858 90860 bytes_in 25980 90860 station_ip 83.122.130.17 90860 port 15728813 90860 nas_port_type Virtual 90860 remote_ip 5.5.5.192 90863 username mahbobeh 90863 unique_id port 90863 terminate_cause Lost-Carrier 90863 bytes_out 557812 90863 bytes_in 4755101 90863 station_ip 83.122.96.121 90863 port 15728801 90863 nas_port_type Virtual 90863 remote_ip 5.5.5.185 90866 username forozande 90866 unique_id port 90866 terminate_cause User-Request 90866 bytes_out 114644 90866 bytes_in 1210737 90866 station_ip 83.122.130.17 90866 port 15728816 90866 nas_port_type Virtual 90866 remote_ip 5.5.5.192 90867 username ahmadi 90867 unique_id port 90867 terminate_cause User-Request 90867 bytes_out 188932 90867 bytes_in 2023797 90867 station_ip 37.129.213.217 90867 port 15728817 90867 nas_port_type Virtual 90867 remote_ip 5.5.5.181 90868 username asadi 90868 unique_id port 90868 terminate_cause User-Request 90868 bytes_out 34553 90868 bytes_in 361267 90868 station_ip 83.123.4.39 90868 port 15728819 90868 nas_port_type Virtual 90868 remote_ip 5.5.5.244 90871 username asadi 90871 unique_id port 90871 terminate_cause User-Request 90871 bytes_out 48479 90871 bytes_in 237923 90871 station_ip 83.123.4.39 90871 port 15728822 90871 nas_port_type Virtual 90871 remote_ip 5.5.5.244 90875 username forozande 90875 unique_id port 90875 terminate_cause User-Request 90875 bytes_out 21607 90875 bytes_in 121340 90875 station_ip 83.122.99.94 90875 port 15728825 90875 nas_port_type Virtual 90875 remote_ip 5.5.5.178 90878 username forozande 90878 unique_id port 90878 terminate_cause User-Request 90878 bytes_out 54382 90878 bytes_in 721634 90878 station_ip 83.122.99.94 90878 port 15728827 90878 nas_port_type Virtual 90878 remote_ip 5.5.5.178 90880 username forozande 90880 unique_id port 90880 terminate_cause User-Request 90880 bytes_out 9396 90880 bytes_in 38601 90880 station_ip 83.122.99.94 90880 port 15728833 90880 nas_port_type Virtual 90880 remote_ip 5.5.5.178 90881 username mansur 90881 unique_id port 90881 terminate_cause User-Request 90881 bytes_out 438709 90881 bytes_in 2440507 90881 station_ip 5.119.219.41 90881 port 15728828 90862 bytes_out 181924 90862 bytes_in 5011848 90862 station_ip 83.122.130.17 90862 port 15728814 90862 nas_port_type Virtual 90862 remote_ip 5.5.5.192 90865 username forozande 90865 unique_id port 90865 terminate_cause User-Request 90865 bytes_out 14490 90865 bytes_in 37691 90865 station_ip 83.122.130.17 90865 port 15728815 90865 nas_port_type Virtual 90865 remote_ip 5.5.5.192 90869 username mammad 90869 unique_id port 90869 terminate_cause User-Request 90869 bytes_out 324482 90869 bytes_in 1883941 90869 station_ip 78.39.26.45 90869 port 15728818 90869 nas_port_type Virtual 90869 remote_ip 5.5.5.194 90870 username asadi 90870 unique_id port 90870 terminate_cause User-Request 90870 bytes_out 215559 90870 bytes_in 5344512 90870 station_ip 83.123.4.39 90870 port 15728820 90870 nas_port_type Virtual 90870 remote_ip 5.5.5.244 90885 username aminvpn 90885 unique_id port 90885 terminate_cause User-Request 90885 bytes_out 253747 90885 bytes_in 3686182 90885 station_ip 86.57.23.90 90885 port 15728830 90885 nas_port_type Virtual 90885 remote_ip 5.5.5.176 90890 username asadi 90890 unique_id port 90890 terminate_cause User-Request 90890 bytes_out 96034 90890 bytes_in 1621631 90890 station_ip 83.123.4.39 90890 port 15728843 90890 nas_port_type Virtual 90890 remote_ip 5.5.5.244 90894 username asadi 90894 unique_id port 90894 terminate_cause User-Request 90894 bytes_out 63299 90894 bytes_in 264229 90894 station_ip 83.123.4.39 90894 port 15728846 90894 nas_port_type Virtual 90894 remote_ip 5.5.5.244 90897 username asadi 90897 unique_id port 90897 terminate_cause User-Request 90897 bytes_out 0 90897 bytes_in 0 90897 station_ip 83.123.4.39 90897 port 15728848 90897 nas_port_type Virtual 90897 remote_ip 5.5.5.244 90901 username forozande 90901 unique_id port 90901 terminate_cause User-Request 90901 bytes_out 38236 90901 bytes_in 79025 90901 station_ip 83.122.99.94 90901 port 15728853 90901 nas_port_type Virtual 90901 remote_ip 5.5.5.178 90902 username alinezhad 90902 unique_id port 90902 terminate_cause User-Request 90902 bytes_out 0 90902 bytes_in 0 90902 station_ip 5.202.8.127 90902 port 15728855 90902 nas_port_type Virtual 90902 remote_ip 5.5.5.232 90904 username aminvpn 90904 mac 90904 bytes_out 0 90904 bytes_in 0 90904 station_ip 113.203.69.235 90904 port 21 90904 unique_id port 90904 remote_ip 10.8.0.6 90906 username madadi2 90906 kill_reason Maximum number of concurrent logins reached 90906 unique_id port 90906 bytes_out 0 90906 bytes_in 0 90906 station_ip 5.119.76.203 90906 port 15728858 90906 nas_port_type Virtual 90912 username asadi 90912 unique_id port 90912 terminate_cause User-Request 90912 bytes_out 68733 90912 bytes_in 193538 90912 station_ip 83.123.4.39 90912 port 15728864 90912 nas_port_type Virtual 90912 remote_ip 5.5.5.244 90919 username asadi 90919 unique_id port 90919 terminate_cause User-Request 90919 bytes_out 17836 90919 bytes_in 56805 90919 station_ip 83.122.31.163 90919 port 15728869 90919 nas_port_type Virtual 90919 remote_ip 5.5.5.167 90922 username forozande 90922 unique_id port 90922 terminate_cause User-Request 90922 bytes_out 15193 90922 bytes_in 46011 90922 station_ip 83.122.99.94 90922 port 15728870 90922 nas_port_type Virtual 90922 remote_ip 5.5.5.178 90923 username asadi 90923 unique_id port 90923 terminate_cause User-Request 90923 bytes_out 26989 90923 bytes_in 104228 90923 station_ip 83.122.31.163 90923 port 15728871 90923 nas_port_type Virtual 90923 remote_ip 5.5.5.167 90929 username aminvpn 90929 unique_id port 90929 terminate_cause User-Request 90929 bytes_out 572827 90929 bytes_in 2262921 90881 nas_port_type Virtual 90881 remote_ip 5.5.5.209 90883 username forozande 90883 unique_id port 90883 terminate_cause User-Request 90883 bytes_out 0 90883 bytes_in 0 90883 station_ip 83.122.99.94 90883 port 15728836 90883 nas_port_type Virtual 90883 remote_ip 5.5.5.178 90888 username ahmadipour 90888 unique_id port 90888 terminate_cause Lost-Carrier 90888 bytes_out 3295153 90888 bytes_in 80959792 90888 station_ip 83.123.103.71 90888 port 15728832 90888 nas_port_type Virtual 90888 remote_ip 5.5.5.175 90889 username forozande 90889 unique_id port 90889 terminate_cause User-Request 90889 bytes_out 24030 90889 bytes_in 45125 90889 station_ip 83.122.99.94 90889 port 15728840 90889 nas_port_type Virtual 90889 remote_ip 5.5.5.178 90891 username asadi 90891 unique_id port 90891 terminate_cause User-Request 90891 bytes_out 87347 90891 bytes_in 1555776 90891 station_ip 83.123.4.39 90891 port 15728844 90891 nas_port_type Virtual 90891 remote_ip 5.5.5.244 90898 username forozande 90898 unique_id port 90898 terminate_cause User-Request 90898 bytes_out 0 90898 bytes_in 0 90898 station_ip 83.122.99.94 90898 port 15728852 90898 nas_port_type Virtual 90898 remote_ip 5.5.5.178 90899 username kamali 90899 unique_id port 90899 terminate_cause User-Request 90899 bytes_out 76309 90899 bytes_in 420181 90899 station_ip 83.123.114.64 90899 port 15728849 90899 nas_port_type Virtual 90899 remote_ip 5.5.5.171 90903 username asadi 90903 unique_id port 90903 terminate_cause User-Request 90903 bytes_out 72545 90903 bytes_in 603224 90903 station_ip 83.123.4.39 90903 port 15728854 90903 nas_port_type Virtual 90903 remote_ip 5.5.5.244 90905 username madadi2 90905 kill_reason Maximum number of concurrent logins reached 90905 unique_id port 90905 bytes_out 0 90905 bytes_in 0 90905 station_ip 5.119.76.203 90905 port 15728857 90905 nas_port_type Virtual 90908 username madadi2 90908 kill_reason Maximum number of concurrent logins reached 90908 unique_id port 90908 bytes_out 0 90908 bytes_in 0 90908 station_ip 5.120.81.237 90908 port 15728860 90908 nas_port_type Virtual 90911 username forozande 90911 unique_id port 90911 terminate_cause User-Request 90911 bytes_out 16663 90911 bytes_in 32922 90911 station_ip 83.122.99.94 90911 port 15728862 90911 nas_port_type Virtual 90911 remote_ip 5.5.5.178 90914 username asadi 90914 unique_id port 90914 terminate_cause User-Request 90914 bytes_out 74169 90914 bytes_in 261920 90914 station_ip 83.122.31.163 90914 port 15728866 90914 nas_port_type Virtual 90914 remote_ip 5.5.5.167 90927 username asadi 90927 unique_id port 90927 terminate_cause User-Request 90927 bytes_out 29157 90927 bytes_in 201930 90927 station_ip 83.122.31.163 90927 port 15728878 90927 nas_port_type Virtual 90927 remote_ip 5.5.5.167 90935 username asadi 90935 unique_id port 90935 terminate_cause User-Request 90935 bytes_out 20168 90935 bytes_in 98703 90935 station_ip 83.122.31.163 90935 port 15728884 90935 nas_port_type Virtual 90935 remote_ip 5.5.5.167 90937 username asadi 90937 unique_id port 90937 terminate_cause User-Request 90937 bytes_out 18280 90937 bytes_in 68293 90937 station_ip 83.122.31.163 90937 port 15728886 90937 nas_port_type Virtual 90937 remote_ip 5.5.5.167 90941 username alinezhad 90941 unique_id port 90941 terminate_cause User-Request 90941 bytes_out 0 90941 bytes_in 0 90941 station_ip 5.202.8.127 90941 port 15728889 90941 nas_port_type Virtual 90941 remote_ip 5.5.5.232 90947 username heydari 90947 unique_id port 90947 terminate_cause User-Request 90947 bytes_out 74350 90947 bytes_in 356337 90947 station_ip 5.120.149.87 90947 port 15728893 90947 nas_port_type Virtual 90947 remote_ip 5.5.5.220 90884 bytes_in 32637 90884 station_ip 83.122.99.94 90884 port 15728837 90884 nas_port_type Virtual 90884 remote_ip 5.5.5.178 90887 username madadi2 90887 unique_id port 90887 terminate_cause Lost-Carrier 90887 bytes_out 1236908 90887 bytes_in 2487514 90887 station_ip 5.120.107.241 90887 port 15728803 90887 nas_port_type Virtual 90887 remote_ip 5.5.5.184 90893 username madadi2 90893 unique_id port 90893 terminate_cause User-Request 90893 bytes_out 309893 90893 bytes_in 650546 90893 station_ip 5.119.27.124 90893 port 15728834 90893 nas_port_type Virtual 90893 remote_ip 5.5.5.174 90896 username bcboard 90896 unique_id port 90896 terminate_cause User-Request 90896 bytes_out 2681591 90896 bytes_in 76557296 90896 station_ip 83.123.212.116 90896 port 15728842 90896 nas_port_type Virtual 90896 remote_ip 5.5.5.183 90909 username madadi2 90909 kill_reason Maximum number of concurrent logins reached 90909 unique_id port 90909 bytes_out 0 90909 bytes_in 0 90909 station_ip 5.120.81.237 90909 port 15728861 90909 nas_port_type Virtual 90910 username madadi2 90910 unique_id port 90910 terminate_cause Lost-Carrier 90910 bytes_out 101471 90910 bytes_in 299007 90910 station_ip 5.119.27.124 90910 port 15728847 90910 nas_port_type Virtual 90910 remote_ip 5.5.5.174 90913 username madadi2 90913 unique_id port 90913 terminate_cause Lost-Carrier 90913 bytes_out 20243 90913 bytes_in 169894 90913 station_ip 5.120.167.37 90913 port 15728856 90913 nas_port_type Virtual 90913 remote_ip 5.5.5.170 90915 username asadi 90915 unique_id port 90915 terminate_cause User-Request 90915 bytes_out 60952 90915 bytes_in 426971 90915 station_ip 83.122.31.163 90915 port 15728867 90915 nas_port_type Virtual 90915 remote_ip 5.5.5.167 90917 username madadi2 90917 unique_id port 90917 terminate_cause Lost-Carrier 90917 bytes_out 27992 90917 bytes_in 212976 90917 station_ip 5.120.81.237 90917 port 15728863 90917 nas_port_type Virtual 90917 remote_ip 5.5.5.169 90918 username caferibar 90918 unique_id port 90918 terminate_cause Lost-Carrier 90918 bytes_out 173275 90918 bytes_in 1266597 90918 station_ip 5.120.136.131 90918 port 15728865 90918 nas_port_type Virtual 90918 remote_ip 5.5.5.168 90921 username madadi2 90921 unique_id port 90921 terminate_cause Lost-Carrier 90921 bytes_out 234243 90921 bytes_in 2899534 90921 station_ip 5.119.38.208 90921 port 15728868 90921 nas_port_type Virtual 90921 remote_ip 5.5.5.166 90926 username forozande 90926 unique_id port 90926 terminate_cause User-Request 90926 bytes_out 74453 90926 bytes_in 556896 90926 station_ip 113.203.54.155 90926 port 15728877 90926 nas_port_type Virtual 90926 remote_ip 5.5.5.162 90928 username asadi 90928 unique_id port 90928 terminate_cause User-Request 90928 bytes_out 31278 90928 bytes_in 64555 90928 station_ip 83.122.31.163 90928 port 15728879 90928 nas_port_type Virtual 90928 remote_ip 5.5.5.167 90930 username alireza1 90930 unique_id port 90930 terminate_cause User-Request 90930 bytes_out 1661653 90930 bytes_in 6229530 90930 station_ip 5.119.82.252 90930 port 15728874 90930 nas_port_type Virtual 90930 remote_ip 5.5.5.164 90934 username asadi 90934 unique_id port 90934 terminate_cause User-Request 90934 bytes_out 24168 90934 bytes_in 71992 90934 station_ip 83.122.31.163 90934 port 15728883 90934 nas_port_type Virtual 90934 remote_ip 5.5.5.167 90936 username caferibar 90936 unique_id port 90936 terminate_cause Lost-Carrier 90936 bytes_out 637626 90936 bytes_in 14516258 90936 station_ip 37.153.179.234 90936 port 15728872 90936 nas_port_type Virtual 90936 remote_ip 5.5.5.165 90939 username aminvpn 90939 unique_id port 90939 terminate_cause User-Request 90916 username khalili 90916 unique_id port 90916 terminate_cause Lost-Carrier 90916 bytes_out 2498481 90916 bytes_in 23359734 90916 station_ip 5.120.86.231 90916 port 15728791 90916 nas_port_type Virtual 90916 remote_ip 5.5.5.203 90920 username mansur 90920 unique_id port 90920 terminate_cause User-Request 90920 bytes_out 6709018 90920 bytes_in 120462316 90920 station_ip 5.119.219.41 90920 port 15728841 90920 nas_port_type Virtual 90920 remote_ip 5.5.5.209 90924 username asadi 90924 unique_id port 90924 terminate_cause User-Request 90924 bytes_out 37933 90924 bytes_in 321198 90924 station_ip 83.122.31.163 90924 port 15728875 90924 nas_port_type Virtual 90924 remote_ip 5.5.5.167 90925 username alireza1 90925 unique_id port 90925 terminate_cause Lost-Carrier 90925 bytes_out 195821 90925 bytes_in 687775 90925 station_ip 5.120.176.26 90925 port 15728873 90925 nas_port_type Virtual 90925 remote_ip 5.5.5.191 90933 username forozande 90933 unique_id port 90933 terminate_cause User-Request 90933 bytes_out 26359 90933 bytes_in 76506 90933 station_ip 83.122.162.135 90933 port 15728882 90933 nas_port_type Virtual 90933 remote_ip 5.5.5.160 90949 username asadi 90949 unique_id port 90949 terminate_cause User-Request 90949 bytes_out 12928 90949 bytes_in 87107 90949 station_ip 37.129.190.210 90949 port 15728897 90949 nas_port_type Virtual 90949 remote_ip 5.5.5.159 90957 username asadi 90957 unique_id port 90957 terminate_cause User-Request 90957 bytes_out 26835 90957 bytes_in 51165 90957 station_ip 37.129.190.210 90957 port 15728905 90957 nas_port_type Virtual 90957 remote_ip 5.5.5.159 90959 username asadi 90959 unique_id port 90959 terminate_cause User-Request 90959 bytes_out 100689 90959 bytes_in 263114 90959 station_ip 113.203.125.11 90959 port 15728907 90959 nas_port_type Virtual 90959 remote_ip 5.5.5.155 90961 username caferibar 90961 unique_id port 90961 terminate_cause Lost-Carrier 90961 bytes_out 910873 90961 bytes_in 15524889 90961 station_ip 5.62.214.203 90961 port 15728880 90961 nas_port_type Virtual 90961 remote_ip 5.5.5.161 90963 username aminvpn 90963 kill_reason Another user logged on this global unique id 90963 mac 90963 bytes_out 0 90963 bytes_in 0 90963 station_ip 113.203.69.235 90963 port 21 90963 unique_id port 90963 remote_ip 10.8.0.6 90968 username caferibar 90968 unique_id port 90968 terminate_cause User-Request 90968 bytes_out 39310 90968 bytes_in 350496 90968 station_ip 37.129.161.80 90968 port 15728914 90968 nas_port_type Virtual 90968 remote_ip 5.5.5.153 91145 username caferibar 91145 unique_id port 91145 terminate_cause Lost-Carrier 91145 bytes_out 780972 91145 bytes_in 27808689 91145 station_ip 5.134.150.86 91145 port 15728755 91145 nas_port_type Virtual 91145 remote_ip 5.5.5.198 91147 username caferibar 91147 unique_id port 91147 terminate_cause Lost-Carrier 91147 bytes_out 68498432 91147 bytes_in 2248502329 91147 station_ip 5.120.88.155 91147 port 15728679 91147 nas_port_type Virtual 91147 remote_ip 5.5.5.233 91154 username afarin 91154 unique_id port 91154 terminate_cause Admin-Reboot 91154 bytes_out 1380213 91154 bytes_in 19175928 91154 station_ip 31.56.114.168 91154 port 15728756 91154 nas_port_type Virtual 91154 remote_ip 5.5.5.197 91156 username mansur 91156 unique_id port 91156 terminate_cause User-Request 91156 bytes_out 1101440 91156 bytes_in 27385637 91156 station_ip 5.119.219.41 91156 port 15728641 91156 nas_port_type Virtual 91156 remote_ip 5.5.5.254 91158 username aminvpn 91158 mac 91158 bytes_out 0 91158 bytes_in 0 91158 station_ip 113.203.78.251 91158 port 3 91158 unique_id port 91158 remote_ip 10.8.0.6 91159 username forozande 90929 station_ip 5.233.62.175 90929 port 15728876 90929 nas_port_type Virtual 90929 remote_ip 5.5.5.163 90931 username heydari 90931 unique_id port 90931 terminate_cause User-Request 90931 bytes_out 274894 90931 bytes_in 1311609 90931 station_ip 5.120.149.87 90931 port 15728850 90931 nas_port_type Virtual 90931 remote_ip 5.5.5.220 90932 username asadi 90932 unique_id port 90932 terminate_cause User-Request 90932 bytes_out 92094 90932 bytes_in 1272519 90932 station_ip 83.122.31.163 90932 port 15728881 90932 nas_port_type Virtual 90932 remote_ip 5.5.5.167 90938 username bcboard 90938 unique_id port 90938 terminate_cause User-Request 90938 bytes_out 0 90938 bytes_in 0 90938 station_ip 37.129.249.150 90938 port 15728888 90938 nas_port_type Virtual 90938 remote_ip 5.5.5.158 90940 username asadi 90940 unique_id port 90940 terminate_cause User-Request 90940 bytes_out 103717 90940 bytes_in 444193 90940 station_ip 37.129.190.210 90940 port 15728887 90940 nas_port_type Virtual 90940 remote_ip 5.5.5.159 90943 username asadi 90943 unique_id port 90943 terminate_cause User-Request 90943 bytes_out 69975 90943 bytes_in 456395 90943 station_ip 37.129.190.210 90943 port 15728891 90943 nas_port_type Virtual 90943 remote_ip 5.5.5.159 90944 username asadi 90944 unique_id port 90944 terminate_cause User-Request 90944 bytes_out 0 90944 bytes_in 0 90944 station_ip 37.129.190.210 90944 port 15728892 90944 nas_port_type Virtual 90944 remote_ip 5.5.5.159 90946 username asadi 90946 unique_id port 90946 terminate_cause User-Request 90946 bytes_out 31347 90946 bytes_in 149731 90946 station_ip 37.129.190.210 90946 port 15728895 90946 nas_port_type Virtual 90946 remote_ip 5.5.5.159 90953 username asadi 90953 unique_id port 90953 terminate_cause User-Request 90953 bytes_out 27571 90953 bytes_in 88590 90953 station_ip 37.129.190.210 90953 port 15728901 90953 nas_port_type Virtual 90953 remote_ip 5.5.5.159 90960 username alinezhad 90960 unique_id port 90960 terminate_cause User-Request 90960 bytes_out 0 90960 bytes_in 0 90960 station_ip 5.202.8.127 90960 port 15728908 90960 nas_port_type Virtual 90960 remote_ip 5.5.5.232 90965 username bcboard 90965 unique_id port 90965 terminate_cause User-Request 90965 bytes_out 3570363 90965 bytes_in 56845455 90965 station_ip 37.129.249.150 90965 port 15728890 90965 nas_port_type Virtual 90965 remote_ip 5.5.5.158 90970 username mahdixz 90970 unique_id port 90970 terminate_cause User-Request 90970 bytes_out 757713 90970 bytes_in 17048351 90970 station_ip 151.235.104.45 90970 port 15728917 90970 nas_port_type Virtual 90970 remote_ip 5.5.5.195 91146 username farhad 91146 unique_id port 91146 terminate_cause Lost-Carrier 91146 bytes_out 4718316 91146 bytes_in 30285047 91146 station_ip 5.120.112.96 91146 port 15728754 91146 nas_port_type Virtual 91146 remote_ip 5.5.5.199 91148 username aminvpn 91148 unique_id port 91148 terminate_cause Lost-Carrier 91148 bytes_out 10132 91148 bytes_in 32726 91148 station_ip 5.120.177.231 91148 port 15728757 91148 nas_port_type Virtual 91148 remote_ip 5.5.5.251 91150 username aminvpn 91150 mac 91150 bytes_out 0 91150 bytes_in 0 91150 station_ip 113.203.75.247 91150 port 1 91150 unique_id port 91150 remote_ip 10.8.0.6 91151 username aminvpn 91151 kill_reason Another user logged on this global unique id 91151 mac 91151 bytes_out 0 91151 bytes_in 0 91151 station_ip 113.203.75.247 91151 port 1 91151 unique_id port 91151 remote_ip 10.8.0.6 91152 username aminvpn 91152 kill_reason Another user logged on this global unique id 91152 mac 91152 bytes_out 0 91152 bytes_in 0 91152 station_ip 113.203.75.247 90939 bytes_out 15570338 90939 bytes_in 285273823 90939 station_ip 5.120.177.231 90939 port 15728839 90939 nas_port_type Virtual 90939 remote_ip 5.5.5.173 90942 username mammad 90942 unique_id port 90942 terminate_cause User-Request 90942 bytes_out 1989595 90942 bytes_in 29429613 90942 station_ip 78.39.26.45 90942 port 15728885 90942 nas_port_type Virtual 90942 remote_ip 5.5.5.194 90945 username asadi 90945 unique_id port 90945 terminate_cause User-Request 90945 bytes_out 29510 90945 bytes_in 327892 90945 station_ip 37.129.190.210 90945 port 15728894 90945 nas_port_type Virtual 90945 remote_ip 5.5.5.159 90948 username asadi 90948 unique_id port 90948 terminate_cause User-Request 90948 bytes_out 32978 90948 bytes_in 217867 90948 station_ip 37.129.190.210 90948 port 15728896 90948 nas_port_type Virtual 90948 remote_ip 5.5.5.159 90950 username asadi 90950 unique_id port 90950 terminate_cause User-Request 90950 bytes_out 11390 90950 bytes_in 60569 90950 station_ip 37.129.190.210 90950 port 15728898 90950 nas_port_type Virtual 90950 remote_ip 5.5.5.159 90955 username asadi 90955 unique_id port 90955 terminate_cause User-Request 90955 bytes_out 59776 90955 bytes_in 723298 90955 station_ip 37.129.190.210 90955 port 15728903 90955 nas_port_type Virtual 90955 remote_ip 5.5.5.159 90969 username asadi 90969 unique_id port 90969 terminate_cause User-Request 90969 bytes_out 146926 90969 bytes_in 4142789 90969 station_ip 83.122.224.142 90969 port 15728916 90969 nas_port_type Virtual 90969 remote_ip 5.5.5.149 90971 username asadi 90971 unique_id port 90971 terminate_cause User-Request 90971 bytes_out 80495 90971 bytes_in 1016823 90971 station_ip 83.122.224.142 90971 port 15728918 90971 nas_port_type Virtual 90971 remote_ip 5.5.5.149 91149 username alinezhad 91149 unique_id port 91149 terminate_cause User-Request 91149 bytes_out 0 91149 bytes_in 0 91149 station_ip 37.129.186.221 91149 port 15728758 91149 nas_port_type Virtual 91149 remote_ip 5.5.5.196 91155 username mahbobeh 91155 unique_id port 91155 terminate_cause Admin-Reboot 91155 bytes_out 467318 91155 bytes_in 7059529 91155 station_ip 83.122.67.4 91155 port 15728759 91155 nas_port_type Virtual 91155 remote_ip 5.5.5.254 91157 username zamanialireza 91157 kill_reason Relative expiration date has reached 91157 unique_id port 91157 bytes_out 0 91157 bytes_in 0 91157 station_ip 5.120.5.94 91157 port 15728642 91157 nas_port_type Virtual 91163 username mahbobeh 91163 unique_id port 91163 terminate_cause Lost-Carrier 91163 bytes_out 1027258 91163 bytes_in 17310494 91163 station_ip 83.122.67.4 91163 port 15728640 91163 nas_port_type Virtual 91163 remote_ip 5.5.5.255 91164 username alireza1 91164 unique_id port 91164 terminate_cause User-Request 91164 bytes_out 765315 91164 bytes_in 2033272 91164 station_ip 5.119.220.163 91164 port 15728643 91164 nas_port_type Virtual 91164 remote_ip 5.5.5.253 91172 username forozande 91172 unique_id port 91172 terminate_cause User-Request 91172 bytes_out 97222 91172 bytes_in 401616 91172 station_ip 83.123.117.158 91172 port 15728655 91172 nas_port_type Virtual 91172 remote_ip 5.5.5.245 91174 username fariba 91174 kill_reason Another user logged on this global unique id 91174 mac 91174 bytes_out 0 91174 bytes_in 0 91174 station_ip 37.129.193.250 91174 port 1 91174 unique_id port 91174 remote_ip 10.8.0.10 91175 username alinezhad 91175 unique_id port 91175 terminate_cause User-Request 91175 bytes_out 0 91175 bytes_in 0 91175 station_ip 37.129.33.24 91175 port 15728657 91175 nas_port_type Virtual 91175 remote_ip 5.5.5.243 91178 username aminvpn 91178 mac 91178 bytes_out 0 91178 bytes_in 0 90951 username asadi 90951 unique_id port 90951 terminate_cause User-Request 90951 bytes_out 26244 90951 bytes_in 175341 90951 station_ip 37.129.190.210 90951 port 15728899 90951 nas_port_type Virtual 90951 remote_ip 5.5.5.159 90952 username forozande 90952 unique_id port 90952 terminate_cause User-Request 90952 bytes_out 27307 90952 bytes_in 37438 90952 station_ip 37.129.150.211 90952 port 15728900 90952 nas_port_type Virtual 90952 remote_ip 5.5.5.157 90954 username asadi 90954 unique_id port 90954 terminate_cause User-Request 90954 bytes_out 67639 90954 bytes_in 442475 90954 station_ip 37.129.190.210 90954 port 15728902 90954 nas_port_type Virtual 90954 remote_ip 5.5.5.159 90956 username forozande 90956 unique_id port 90956 terminate_cause User-Request 90956 bytes_out 31578 90956 bytes_in 147914 90956 station_ip 113.203.15.163 90956 port 15728904 90956 nas_port_type Virtual 90956 remote_ip 5.5.5.156 90958 username asadi 90958 unique_id port 90958 terminate_cause User-Request 90958 bytes_out 12774 90958 bytes_in 80651 90958 station_ip 37.129.190.210 90958 port 15728906 90958 nas_port_type Virtual 90958 remote_ip 5.5.5.159 90962 username forozande 90962 unique_id port 90962 terminate_cause User-Request 90962 bytes_out 139739 90962 bytes_in 1799157 90962 station_ip 83.122.254.249 90962 port 15728909 90962 nas_port_type Virtual 90962 remote_ip 5.5.5.154 90964 username aminvpn 90964 mac 90964 bytes_out 0 90964 bytes_in 0 90964 station_ip 113.203.69.235 90964 port 21 90964 unique_id port 90966 username caferibar 90966 unique_id port 90966 terminate_cause User-Request 90966 bytes_out 19134 90966 bytes_in 171086 90966 station_ip 37.129.161.80 90966 port 15728911 90966 nas_port_type Virtual 90966 remote_ip 5.5.5.153 90967 username avaanna 90967 unique_id port 90967 terminate_cause User-Request 90967 bytes_out 116738 90967 bytes_in 2090405 90967 station_ip 113.203.6.176 90967 port 15728913 90967 nas_port_type Virtual 90967 remote_ip 5.5.5.151 91152 port 1 91152 unique_id port 91153 username aminvpn 91153 mac 91153 bytes_out 0 91153 bytes_in 0 91153 station_ip 113.203.75.247 91153 port 1 91153 unique_id port 91160 username aminvpn 91160 mac 91160 bytes_out 1445525 91160 bytes_in 9415128 91160 station_ip 113.203.78.251 91160 port 3 91160 unique_id port 91160 remote_ip 10.8.0.6 91161 username ahmadi 91161 unique_id port 91161 terminate_cause User-Request 91161 bytes_out 588480 91161 bytes_in 941115 91161 station_ip 83.122.77.43 91161 port 15728645 91161 nas_port_type Virtual 91161 remote_ip 5.5.5.251 91162 username forozande 91162 unique_id port 91162 terminate_cause User-Request 91162 bytes_out 93602 91162 bytes_in 885028 91162 station_ip 83.122.14.225 91162 port 15728646 91162 nas_port_type Virtual 91162 remote_ip 5.5.5.250 91171 username madadi2 91171 unique_id port 91171 terminate_cause Lost-Carrier 91171 bytes_out 570298 91171 bytes_in 3051625 91171 station_ip 5.120.122.164 91171 port 15728649 91171 nas_port_type Virtual 91171 remote_ip 5.5.5.249 91176 username mirzaei 91176 kill_reason Another user logged on this global unique id 91176 mac 91176 bytes_out 0 91176 bytes_in 0 91176 station_ip 5.120.99.24 91176 port 2 91176 unique_id port 91176 remote_ip 10.8.0.14 91179 username aminvpn 91179 mac 91179 bytes_out 0 91179 bytes_in 0 91179 station_ip 37.129.181.47 91179 port 1 91179 unique_id port 91179 remote_ip 10.8.1.6 91181 username aminvpn 91181 mac 91181 bytes_out 0 91181 bytes_in 0 91181 station_ip 113.203.103.159 91181 port 4 91181 unique_id port 91003 username farhad 91003 unique_id port 91003 terminate_cause User-Request 91003 bytes_out 8239685 91003 bytes_in 9123193 91003 station_ip 5.120.161.228 91003 port 15728641 91003 nas_port_type Virtual 91003 remote_ip 5.5.5.255 91006 username forozande 91006 unique_id port 91006 terminate_cause User-Request 91006 bytes_out 121056 91006 bytes_in 2108956 91006 station_ip 37.129.79.245 91006 port 15728647 91006 nas_port_type Virtual 91006 remote_ip 5.5.5.249 91010 username aminvpn 91010 mac 91010 bytes_out 361458 91010 bytes_in 959200 91010 station_ip 113.203.69.235 91010 port 1 91010 unique_id port 91010 remote_ip 10.8.0.6 91011 username zamanialireza 91011 kill_reason Relative expiration date has reached 91011 unique_id port 91011 bytes_out 0 91011 bytes_in 0 91011 station_ip 94.183.213.166 91011 port 15728657 91011 nas_port_type Virtual 91017 username zamanialireza 91017 kill_reason Relative expiration date has reached 91017 unique_id port 91017 bytes_out 0 91017 bytes_in 0 91017 station_ip 94.183.213.166 91017 port 15728664 91017 nas_port_type Virtual 91019 username zamanialireza 91019 kill_reason Relative expiration date has reached 91019 unique_id port 91019 bytes_out 0 91019 bytes_in 0 91019 station_ip 94.183.213.166 91019 port 15728665 91019 nas_port_type Virtual 91022 username madadi2 91022 unique_id port 91022 terminate_cause Lost-Carrier 91022 bytes_out 28711 91022 bytes_in 226038 91022 station_ip 5.120.53.161 91022 port 15728668 91022 nas_port_type Virtual 91022 remote_ip 5.5.5.243 91024 username ksrkrgr 91024 unique_id port 91024 terminate_cause User-Request 91024 bytes_out 443273 91024 bytes_in 5962048 91024 station_ip 83.123.251.97 91024 port 15728670 91024 nas_port_type Virtual 91024 remote_ip 5.5.5.241 91025 username madadi2 91025 kill_reason Maximum number of concurrent logins reached 91025 unique_id port 91025 bytes_out 0 91025 bytes_in 0 91025 station_ip 5.119.196.190 91025 port 15728672 91025 nas_port_type Virtual 91027 username madadi2 91027 unique_id port 91027 terminate_cause Lost-Carrier 91027 bytes_out 22902 91027 bytes_in 148267 91027 station_ip 5.120.15.103 91027 port 15728671 91027 nas_port_type Virtual 91027 remote_ip 5.5.5.240 91028 username aminvpn 91028 kill_reason Maximum check online fails reached 91028 unique_id port 91028 bytes_out 241913 91028 bytes_in 3929216 91028 station_ip 5.120.177.231 91028 port 15728675 91028 nas_port_type Virtual 91028 remote_ip 5.5.5.237 91029 username madadi2 91029 unique_id port 91029 terminate_cause Lost-Carrier 91029 bytes_out 456667 91029 bytes_in 1842090 91029 station_ip 5.119.196.190 91029 port 15728673 91029 nas_port_type Virtual 91029 remote_ip 5.5.5.239 91035 username alemzadeh 91035 unique_id port 91035 terminate_cause User-Request 91035 bytes_out 640844 91035 bytes_in 18704359 91035 station_ip 83.123.77.200 91035 port 15728680 91035 nas_port_type Virtual 91035 remote_ip 5.5.5.232 91037 username alemzadeh 91037 unique_id port 91037 terminate_cause User-Request 91037 bytes_out 300228 91037 bytes_in 9493687 91037 station_ip 83.123.77.200 91037 port 15728684 91037 nas_port_type Virtual 91037 remote_ip 5.5.5.232 91040 username mahdixz 91040 unique_id port 91040 terminate_cause User-Request 91040 bytes_out 1232564 91040 bytes_in 30178552 91040 station_ip 151.235.104.45 91040 port 15728681 91040 nas_port_type Virtual 91040 remote_ip 5.5.5.231 91041 username madadi2 91041 unique_id port 91041 terminate_cause Lost-Carrier 91041 bytes_out 619816 91041 bytes_in 15773030 91041 station_ip 5.120.43.249 91041 port 15728685 91041 nas_port_type Virtual 91041 remote_ip 5.5.5.229 91042 username madadi2 91042 unique_id port 91004 username alinezhad 91004 unique_id port 91004 terminate_cause User-Request 91004 bytes_out 0 91004 bytes_in 0 91004 station_ip 5.202.8.127 91004 port 15728646 91004 nas_port_type Virtual 91004 remote_ip 5.5.5.250 91007 username forozande 91007 unique_id port 91007 terminate_cause User-Request 91007 bytes_out 48389 91007 bytes_in 1038525 91007 station_ip 37.129.79.245 91007 port 15728649 91007 nas_port_type Virtual 91007 remote_ip 5.5.5.249 91013 username mansur 91013 unique_id port 91013 terminate_cause User-Request 91013 bytes_out 7734058 91013 bytes_in 162552359 91013 station_ip 5.119.219.41 91013 port 15728648 91013 nas_port_type Virtual 91013 remote_ip 5.5.5.248 91016 username mahbobeh 91016 unique_id port 91016 terminate_cause Lost-Carrier 91016 bytes_out 440087 91016 bytes_in 7430434 91016 station_ip 83.122.67.4 91016 port 15728642 91016 nas_port_type Virtual 91016 remote_ip 5.5.5.254 91018 username fariba 91018 mac 91018 bytes_out 0 91018 bytes_in 0 91018 station_ip 37.129.225.214 91018 port 1 91018 unique_id port 91018 remote_ip 10.8.0.10 91020 username aminvpn 91020 unique_id port 91020 terminate_cause Lost-Carrier 91020 bytes_out 134685 91020 bytes_in 766590 91020 station_ip 5.233.48.63 91020 port 15728663 91020 nas_port_type Virtual 91020 remote_ip 5.5.5.246 91026 username madadi2 91026 unique_id port 91026 terminate_cause Lost-Carrier 91026 bytes_out 185234 91026 bytes_in 451477 91026 station_ip 5.119.217.204 91026 port 15728669 91026 nas_port_type Virtual 91026 remote_ip 5.5.5.242 91030 username fariba 91030 kill_reason Another user logged on this global unique id 91030 mac 91030 bytes_out 0 91030 bytes_in 0 91030 station_ip 37.129.225.214 91030 port 1 91030 unique_id port 91030 remote_ip 10.8.0.10 91031 username sobhan 91031 unique_id port 91031 terminate_cause Lost-Carrier 91031 bytes_out 853717 91031 bytes_in 2048409 91031 station_ip 31.56.113.142 91031 port 15728674 91031 nas_port_type Virtual 91031 remote_ip 5.5.5.238 91034 username aminvpn 91034 unique_id port 91034 terminate_cause Lost-Carrier 91034 bytes_out 81207 91034 bytes_in 478347 91034 station_ip 5.119.105.231 91034 port 15728677 91034 nas_port_type Virtual 91034 remote_ip 5.5.5.235 91036 username alinezhad 91036 unique_id port 91036 terminate_cause User-Request 91036 bytes_out 0 91036 bytes_in 0 91036 station_ip 5.202.8.127 91036 port 15728683 91036 nas_port_type Virtual 91036 remote_ip 5.5.5.250 91049 username mohammadali 91049 mac 91049 bytes_out 0 91049 bytes_in 0 91049 station_ip 46.225.213.76 91049 port 2 91049 unique_id port 91049 remote_ip 10.8.0.18 91050 username mohammadali 91050 mac 91050 bytes_out 0 91050 bytes_in 0 91050 station_ip 46.225.213.76 91050 port 2 91050 unique_id port 91050 remote_ip 10.8.0.18 91054 username mahbobeh 91054 unique_id port 91054 terminate_cause Lost-Carrier 91054 bytes_out 780484 91054 bytes_in 16170748 91054 station_ip 83.122.67.4 91054 port 15728691 91054 nas_port_type Virtual 91054 remote_ip 5.5.5.254 91056 username shahnaz 91056 kill_reason Relative expiration date has reached 91056 unique_id port 91056 bytes_out 0 91056 bytes_in 0 91056 station_ip 5.120.69.129 91056 port 15728701 91056 nas_port_type Virtual 91058 username heydarizadeh 91058 unique_id port 91058 terminate_cause Lost-Carrier 91058 bytes_out 328728 91058 bytes_in 7154286 91058 station_ip 5.119.167.202 91058 port 15728697 91058 nas_port_type Virtual 91058 remote_ip 5.5.5.221 91061 username alinezhad 91061 unique_id port 91061 terminate_cause User-Request 91061 bytes_out 0 91061 bytes_in 0 91005 username aminvpn 91005 unique_id port 91005 terminate_cause Lost-Carrier 91005 bytes_out 2641511 91005 bytes_in 26729835 91005 station_ip 5.120.177.231 91005 port 15728645 91005 nas_port_type Virtual 91005 remote_ip 5.5.5.251 91008 username aminvpn 91008 unique_id port 91008 terminate_cause User-Request 91008 bytes_out 6031 91008 bytes_in 28738 91008 station_ip 5.119.218.152 91008 port 15728656 91008 nas_port_type Virtual 91008 remote_ip 5.5.5.247 91009 username aminvpn 91009 unique_id port 91009 terminate_cause User-Request 91009 bytes_out 3102995 91009 bytes_in 14440012 91009 station_ip 113.203.69.235 91009 port 15728644 91009 nas_port_type Virtual 91009 remote_ip 5.5.5.252 91012 username zamanialireza 91012 kill_reason Relative expiration date has reached 91012 unique_id port 91012 bytes_out 0 91012 bytes_in 0 91012 station_ip 94.183.213.166 91012 port 15728658 91012 nas_port_type Virtual 91014 username farhad 91014 unique_id port 91014 terminate_cause Lost-Carrier 91014 bytes_out 20864896 91014 bytes_in 273598356 91014 station_ip 5.119.33.141 91014 port 15728643 91014 nas_port_type Virtual 91014 remote_ip 5.5.5.253 91015 username zamanialireza 91015 kill_reason Relative expiration date has reached 91015 unique_id port 91015 bytes_out 0 91015 bytes_in 0 91015 station_ip 94.183.213.166 91015 port 15728662 91015 nas_port_type Virtual 91021 username aminvpn 91021 unique_id port 91021 terminate_cause Lost-Carrier 91021 bytes_out 135773 91021 bytes_in 546134 91021 station_ip 5.233.69.205 91021 port 15728666 91021 nas_port_type Virtual 91021 remote_ip 5.5.5.245 91023 username heydari 91023 unique_id port 91023 terminate_cause User-Request 91023 bytes_out 84618 91023 bytes_in 2425610 91023 station_ip 5.120.149.87 91023 port 15728667 91023 nas_port_type Virtual 91023 remote_ip 5.5.5.244 91032 username madadi2 91032 unique_id port 91032 terminate_cause Lost-Carrier 91032 bytes_out 39358 91032 bytes_in 160714 91032 station_ip 5.120.186.202 91032 port 15728678 91032 nas_port_type Virtual 91032 remote_ip 5.5.5.234 91033 username alireza1 91033 unique_id port 91033 terminate_cause User-Request 91033 bytes_out 369969 91033 bytes_in 1173550 91033 station_ip 5.119.11.29 91033 port 15728676 91033 nas_port_type Virtual 91033 remote_ip 5.5.5.236 91038 username mirzaei 91038 mac 91038 bytes_out 0 91038 bytes_in 0 91038 station_ip 5.120.188.245 91038 port 3 91038 unique_id port 91038 remote_ip 10.8.0.14 91039 username arman 91039 unique_id port 91039 terminate_cause Lost-Carrier 91039 bytes_out 208087 91039 bytes_in 2552060 91039 station_ip 5.120.55.114 91039 port 15728682 91039 nas_port_type Virtual 91039 remote_ip 5.5.5.230 91044 username bcboard 91044 unique_id port 91044 terminate_cause User-Request 91044 bytes_out 54942 91044 bytes_in 88069 91044 station_ip 113.203.74.238 91044 port 15728689 91044 nas_port_type Virtual 91044 remote_ip 5.5.5.226 91051 username sobhan 91051 unique_id port 91051 terminate_cause User-Request 91051 bytes_out 724065 91051 bytes_in 6802092 91051 station_ip 5.119.199.0 91051 port 15728696 91051 nas_port_type Virtual 91051 remote_ip 5.5.5.222 91052 username mansur 91052 unique_id port 91052 terminate_cause Lost-Carrier 91052 bytes_out 4314278 91052 bytes_in 66515395 91052 station_ip 5.119.219.41 91052 port 15728688 91052 nas_port_type Virtual 91052 remote_ip 5.5.5.248 91053 username madadi2 91053 unique_id port 91053 terminate_cause Lost-Carrier 91053 bytes_out 977421 91053 bytes_in 1757203 91053 station_ip 5.119.84.189 91053 port 15728690 91053 nas_port_type Virtual 91053 remote_ip 5.5.5.225 91055 username alinezhad 91055 unique_id port 91042 terminate_cause Lost-Carrier 91042 bytes_out 41643 91042 bytes_in 707296 91042 station_ip 5.120.153.132 91042 port 15728686 91042 nas_port_type Virtual 91042 remote_ip 5.5.5.228 91043 username sadegh 91043 unique_id port 91043 terminate_cause Lost-Carrier 91043 bytes_out 1942130 91043 bytes_in 33660950 91043 station_ip 5.120.67.121 91043 port 15728687 91043 nas_port_type Virtual 91043 remote_ip 5.5.5.227 91045 username aminvpn 91045 mac 91045 bytes_out 1710269 91045 bytes_in 6327136 91045 station_ip 83.122.136.247 91045 port 2 91045 unique_id port 91045 remote_ip 10.8.0.6 91046 username ahmadi 91046 unique_id port 91046 terminate_cause User-Request 91046 bytes_out 252276 91046 bytes_in 3147298 91046 station_ip 83.122.52.159 91046 port 15728692 91046 nas_port_type Virtual 91046 remote_ip 5.5.5.224 91047 username forozande 91047 unique_id port 91047 terminate_cause User-Request 91047 bytes_out 224502 91047 bytes_in 852488 91047 station_ip 37.129.73.172 91047 port 15728693 91047 nas_port_type Virtual 91047 remote_ip 5.5.5.223 91048 username zamanialireza 91048 kill_reason Relative expiration date has reached 91048 unique_id port 91048 bytes_out 0 91048 bytes_in 0 91048 station_ip 89.34.36.197 91048 port 15728694 91048 nas_port_type Virtual 91057 username shahnaz 91057 kill_reason Relative expiration date has reached 91057 unique_id port 91057 bytes_out 0 91057 bytes_in 0 91057 station_ip 5.120.69.129 91057 port 15728702 91057 nas_port_type Virtual 91066 username jamali 91066 unique_id port 91066 terminate_cause User-Request 91066 bytes_out 230807 91066 bytes_in 4112271 91066 station_ip 37.129.64.72 91066 port 15728709 91066 nas_port_type Virtual 91066 remote_ip 5.5.5.215 91067 username jamali 91067 unique_id port 91067 terminate_cause User-Request 91067 bytes_out 68968 91067 bytes_in 101634 91067 station_ip 37.129.64.72 91067 port 15728710 91067 nas_port_type Virtual 91067 remote_ip 5.5.5.215 91072 username ksrkrgr 91072 unique_id port 91072 terminate_cause User-Request 91072 bytes_out 276643 91072 bytes_in 2022902 91072 station_ip 83.123.158.113 91072 port 15728715 91072 nas_port_type Virtual 91072 remote_ip 5.5.5.213 91073 username alinezhad 91073 unique_id port 91073 terminate_cause User-Request 91073 bytes_out 0 91073 bytes_in 0 91073 station_ip 5.202.8.127 91073 port 15728717 91073 nas_port_type Virtual 91073 remote_ip 5.5.5.250 91076 username zamanialireza 91076 kill_reason Relative expiration date has reached 91076 unique_id port 91076 bytes_out 0 91076 bytes_in 0 91076 station_ip 94.183.213.166 91076 port 15728720 91076 nas_port_type Virtual 91084 username aminvpn 91084 mac 91084 bytes_out 0 91084 bytes_in 0 91084 station_ip 37.129.150.54 91084 port 2 91084 unique_id port 91084 remote_ip 10.8.0.6 91085 username aminvpn 91085 mac 91085 bytes_out 0 91085 bytes_in 0 91085 station_ip 113.203.69.235 91085 port 1 91085 unique_id port 91085 remote_ip 10.8.0.6 91086 username aminvpn 91086 mac 91086 bytes_out 0 91086 bytes_in 0 91086 station_ip 37.129.150.54 91086 port 2 91086 unique_id port 91086 remote_ip 10.8.0.6 91094 username aminvpn 91094 mac 91094 bytes_out 0 91094 bytes_in 0 91094 station_ip 37.129.150.54 91094 port 2 91094 unique_id port 91094 remote_ip 10.8.0.6 91101 username aminvpn 91101 mac 91101 bytes_out 0 91101 bytes_in 0 91101 station_ip 113.203.69.235 91101 port 1 91101 unique_id port 91101 remote_ip 10.8.0.6 91103 username aminvpn 91103 mac 91103 bytes_out 0 91103 bytes_in 0 91103 station_ip 113.203.69.235 91055 terminate_cause User-Request 91055 bytes_out 0 91055 bytes_in 0 91055 station_ip 5.202.8.127 91055 port 15728699 91055 nas_port_type Virtual 91055 remote_ip 5.5.5.250 91059 username alemzadeh 91059 unique_id port 91059 terminate_cause User-Request 91059 bytes_out 243633 91059 bytes_in 5779658 91059 station_ip 83.123.49.20 91059 port 15728703 91059 nas_port_type Virtual 91059 remote_ip 5.5.5.218 91060 username madadi2 91060 unique_id port 91060 terminate_cause Lost-Carrier 91060 bytes_out 165320 91060 bytes_in 584945 91060 station_ip 5.119.201.166 91060 port 15728698 91060 nas_port_type Virtual 91060 remote_ip 5.5.5.220 91062 username heydarizadeh 91062 unique_id port 91062 terminate_cause Lost-Carrier 91062 bytes_out 982503 91062 bytes_in 32286790 91062 station_ip 5.119.144.5 91062 port 15728700 91062 nas_port_type Virtual 91062 remote_ip 5.5.5.219 91065 username jamali 91065 unique_id port 91065 terminate_cause User-Request 91065 bytes_out 170110 91065 bytes_in 3091433 91065 station_ip 37.129.64.72 91065 port 15728708 91065 nas_port_type Virtual 91065 remote_ip 5.5.5.215 91068 username aminvpn 91068 mac 91068 bytes_out 774859 91068 bytes_in 2101043 91068 station_ip 113.203.69.235 91068 port 1 91068 unique_id port 91068 remote_ip 10.8.0.6 91069 username heydarizadeh 91069 unique_id port 91069 terminate_cause Lost-Carrier 91069 bytes_out 543935 91069 bytes_in 11051006 91069 station_ip 5.119.221.61 91069 port 15728704 91069 nas_port_type Virtual 91069 remote_ip 5.5.5.217 91071 username alinezhad 91071 unique_id port 91071 terminate_cause User-Request 91071 bytes_out 0 91071 bytes_in 0 91071 station_ip 5.202.8.127 91071 port 15728713 91071 nas_port_type Virtual 91071 remote_ip 5.5.5.250 91075 username ksrkrgr 91075 unique_id port 91075 terminate_cause User-Request 91075 bytes_out 232913 91075 bytes_in 1399533 91075 station_ip 83.123.158.113 91075 port 15728718 91075 nas_port_type Virtual 91075 remote_ip 5.5.5.213 91079 username mirzaei 91079 mac 91079 bytes_out 0 91079 bytes_in 0 91079 station_ip 5.120.188.245 91079 port 3 91079 unique_id port 91079 remote_ip 10.8.0.14 91081 username aminvpn 91081 mac 91081 bytes_out 0 91081 bytes_in 0 91081 station_ip 113.203.69.235 91081 port 1 91081 unique_id port 91081 remote_ip 10.8.0.6 91087 username aminvpn 91087 mac 91087 bytes_out 0 91087 bytes_in 0 91087 station_ip 113.203.69.235 91087 port 1 91087 unique_id port 91087 remote_ip 10.8.0.6 91088 username aminvpn 91088 mac 91088 bytes_out 0 91088 bytes_in 0 91088 station_ip 37.129.150.54 91088 port 2 91088 unique_id port 91088 remote_ip 10.8.0.6 91090 username aminvpn 91090 mac 91090 bytes_out 0 91090 bytes_in 0 91090 station_ip 37.129.150.54 91090 port 2 91090 unique_id port 91090 remote_ip 10.8.0.6 91091 username aminvpn 91091 mac 91091 bytes_out 0 91091 bytes_in 0 91091 station_ip 113.203.69.235 91091 port 1 91091 unique_id port 91091 remote_ip 10.8.0.6 91098 username aminvpn 91098 mac 91098 bytes_out 0 91098 bytes_in 0 91098 station_ip 37.129.150.54 91098 port 2 91098 unique_id port 91098 remote_ip 10.8.0.6 91106 username mahdixz 91106 unique_id port 91106 terminate_cause Lost-Carrier 91106 bytes_out 6322601 91106 bytes_in 155908008 91106 station_ip 151.235.104.45 91106 port 15728714 91106 nas_port_type Virtual 91106 remote_ip 5.5.5.231 91109 username alinezhad 91109 unique_id port 91109 terminate_cause User-Request 91109 bytes_out 0 91109 bytes_in 0 91109 station_ip 5.202.8.127 91061 station_ip 5.202.8.127 91061 port 15728705 91061 nas_port_type Virtual 91061 remote_ip 5.5.5.250 91063 username fariba 91063 mac 91063 bytes_out 0 91063 bytes_in 0 91063 station_ip 37.129.225.214 91063 port 1 91063 unique_id port 91064 username aminvpn 91064 mac 91064 bytes_out 1195991 91064 bytes_in 8289977 91064 station_ip 113.203.69.235 91064 port 2 91064 unique_id port 91064 remote_ip 10.8.0.6 91070 username heydari 91070 unique_id port 91070 terminate_cause User-Request 91070 bytes_out 382387 91070 bytes_in 4607591 91070 station_ip 5.120.149.87 91070 port 15728707 91070 nas_port_type Virtual 91070 remote_ip 5.5.5.244 91074 username ksrkrgr 91074 unique_id port 91074 terminate_cause User-Request 91074 bytes_out 242683 91074 bytes_in 1697074 91074 station_ip 83.123.158.113 91074 port 15728716 91074 nas_port_type Virtual 91074 remote_ip 5.5.5.213 91077 username alinezhad 91077 unique_id port 91077 terminate_cause User-Request 91077 bytes_out 0 91077 bytes_in 0 91077 station_ip 5.202.8.127 91077 port 15728719 91077 nas_port_type Virtual 91077 remote_ip 5.5.5.250 91078 username ahmadi 91078 unique_id port 91078 terminate_cause User-Request 91078 bytes_out 42043 91078 bytes_in 142960 91078 station_ip 83.122.52.159 91078 port 15728721 91078 nas_port_type Virtual 91078 remote_ip 5.5.5.224 91080 username madadi2 91080 unique_id port 91080 terminate_cause User-Request 91080 bytes_out 1551697 91080 bytes_in 22440109 91080 station_ip 5.120.145.82 91080 port 15728706 91080 nas_port_type Virtual 91080 remote_ip 5.5.5.216 91082 username aminvpn 91082 mac 91082 bytes_out 0 91082 bytes_in 0 91082 station_ip 37.129.150.54 91082 port 2 91082 unique_id port 91082 remote_ip 10.8.0.6 91083 username aminvpn 91083 mac 91083 bytes_out 0 91083 bytes_in 0 91083 station_ip 113.203.69.235 91083 port 1 91083 unique_id port 91083 remote_ip 10.8.0.6 91089 username aminvpn 91089 mac 91089 bytes_out 0 91089 bytes_in 0 91089 station_ip 113.203.69.235 91089 port 1 91089 unique_id port 91089 remote_ip 10.8.0.6 91092 username aminvpn 91092 mac 91092 bytes_out 0 91092 bytes_in 0 91092 station_ip 37.129.150.54 91092 port 2 91092 unique_id port 91092 remote_ip 10.8.0.6 91093 username aminvpn 91093 mac 91093 bytes_out 0 91093 bytes_in 0 91093 station_ip 113.203.69.235 91093 port 1 91093 unique_id port 91093 remote_ip 10.8.0.6 91095 username aminvpn 91095 mac 91095 bytes_out 0 91095 bytes_in 0 91095 station_ip 113.203.69.235 91095 port 1 91095 unique_id port 91095 remote_ip 10.8.0.6 91096 username aminvpn 91096 mac 91096 bytes_out 0 91096 bytes_in 0 91096 station_ip 37.129.150.54 91096 port 2 91096 unique_id port 91096 remote_ip 10.8.0.6 91097 username aminvpn 91097 mac 91097 bytes_out 0 91097 bytes_in 0 91097 station_ip 113.203.69.235 91097 port 1 91097 unique_id port 91097 remote_ip 10.8.0.6 91099 username aminvpn 91099 mac 91099 bytes_out 0 91099 bytes_in 0 91099 station_ip 113.203.69.235 91099 port 1 91099 unique_id port 91099 remote_ip 10.8.0.6 91100 username aminvpn 91100 mac 91100 bytes_out 0 91100 bytes_in 0 91100 station_ip 37.129.150.54 91100 port 2 91100 unique_id port 91100 remote_ip 10.8.0.6 91102 username aminvpn 91102 mac 91102 bytes_out 0 91102 bytes_in 0 91102 station_ip 37.129.150.54 91102 port 2 91102 unique_id port 91102 remote_ip 10.8.0.6 91104 username mahdixz 91103 port 1 91103 unique_id port 91103 remote_ip 10.8.0.6 91105 username aminvpn 91105 mac 91105 bytes_out 0 91105 bytes_in 0 91105 station_ip 37.129.150.54 91105 port 2 91105 unique_id port 91105 remote_ip 10.8.0.6 91108 username madadi2 91108 unique_id port 91108 terminate_cause Lost-Carrier 91108 bytes_out 394896 91108 bytes_in 7092251 91108 station_ip 5.120.145.82 91108 port 15728724 91108 nas_port_type Virtual 91108 remote_ip 5.5.5.216 91111 username zamanialireza 91111 kill_reason Relative expiration date has reached 91111 unique_id port 91111 bytes_out 0 91111 bytes_in 0 91111 station_ip 94.183.213.166 91111 port 15728731 91111 nas_port_type Virtual 91115 username amirabbas 91115 unique_id port 91115 terminate_cause User-Request 91115 bytes_out 2952347 91115 bytes_in 63459394 91115 station_ip 31.56.112.188 91115 port 15728723 91115 nas_port_type Virtual 91115 remote_ip 5.5.5.212 91119 username aminvpn 91119 unique_id port 91119 terminate_cause User-Request 91119 bytes_out 2681099 91119 bytes_in 43864596 91119 station_ip 5.120.177.231 91119 port 15728729 91119 nas_port_type Virtual 91119 remote_ip 5.5.5.251 91120 username aminvpn 91120 kill_reason Another user logged on this global unique id 91120 mac 91120 bytes_out 0 91120 bytes_in 0 91120 station_ip 113.203.69.235 91120 port 1 91120 unique_id port 91120 remote_ip 10.8.0.6 91126 username aminvpn 91126 unique_id port 91126 terminate_cause Lost-Carrier 91126 bytes_out 3582070 91126 bytes_in 37080610 91126 station_ip 5.120.177.231 91126 port 15728736 91126 nas_port_type Virtual 91126 remote_ip 5.5.5.251 91127 username alinezhad 91127 unique_id port 91127 terminate_cause User-Request 91127 bytes_out 0 91127 bytes_in 0 91127 station_ip 113.203.34.90 91127 port 15728740 91127 nas_port_type Virtual 91127 remote_ip 5.5.5.206 91128 username alinezhad 91128 unique_id port 91128 terminate_cause User-Request 91128 bytes_out 0 91128 bytes_in 0 91128 station_ip 113.203.34.90 91128 port 15728741 91128 nas_port_type Virtual 91128 remote_ip 5.5.5.206 91129 username alemzadeh 91129 unique_id port 91129 terminate_cause User-Request 91129 bytes_out 181109 91129 bytes_in 2917173 91129 station_ip 83.123.40.164 91129 port 15728742 91129 nas_port_type Virtual 91129 remote_ip 5.5.5.204 91130 username aminvpn 91130 mac 91130 bytes_out 0 91130 bytes_in 0 91130 station_ip 113.203.69.235 91130 port 1 91130 unique_id port 91131 username alemzadeh 91131 unique_id port 91131 terminate_cause User-Request 91131 bytes_out 184238 91131 bytes_in 2734619 91131 station_ip 83.123.40.164 91131 port 15728744 91131 nas_port_type Virtual 91131 remote_ip 5.5.5.204 91134 username alemzadeh 91134 unique_id port 91134 terminate_cause User-Request 91134 bytes_out 265147 91134 bytes_in 10633993 91134 station_ip 83.123.40.164 91134 port 15728747 91134 nas_port_type Virtual 91134 remote_ip 5.5.5.204 91135 username ahmadipour 91135 unique_id port 91135 terminate_cause Lost-Carrier 91135 bytes_out 2724016 91135 bytes_in 55970143 91135 station_ip 83.123.118.39 91135 port 15728739 91135 nas_port_type Virtual 91135 remote_ip 5.5.5.205 91140 username mahdixz 91140 unique_id port 91140 terminate_cause User-Request 91140 bytes_out 898030 91140 bytes_in 4796447 91140 station_ip 151.235.104.45 91140 port 15728751 91140 nas_port_type Virtual 91140 remote_ip 5.5.5.231 91159 unique_id port 91159 terminate_cause User-Request 91159 bytes_out 359551 91159 bytes_in 2724788 91159 station_ip 37.129.140.17 91159 port 15728644 91159 nas_port_type Virtual 91159 remote_ip 5.5.5.252 91165 username aminvpn 91165 mac 91104 unique_id port 91104 terminate_cause User-Request 91104 bytes_out 391542 91104 bytes_in 4888524 91104 station_ip 37.129.34.181 91104 port 15728725 91104 nas_port_type Virtual 91104 remote_ip 5.5.5.211 91107 username mahdixz 91107 unique_id port 91107 terminate_cause User-Request 91107 bytes_out 77188 91107 bytes_in 721605 91107 station_ip 37.129.34.181 91107 port 15728726 91107 nas_port_type Virtual 91107 remote_ip 5.5.5.211 91112 username zamanialireza 91112 kill_reason Relative expiration date has reached 91112 unique_id port 91112 bytes_out 0 91112 bytes_in 0 91112 station_ip 94.183.213.166 91112 port 15728732 91112 nas_port_type Virtual 91113 username alinezhad 91113 unique_id port 91113 terminate_cause User-Request 91113 bytes_out 0 91113 bytes_in 0 91113 station_ip 83.122.127.218 91113 port 15728733 91113 nas_port_type Virtual 91113 remote_ip 5.5.5.208 91117 username heydari 91117 unique_id port 91117 terminate_cause User-Request 91117 bytes_out 38332 91117 bytes_in 140838 91117 station_ip 5.120.149.87 91117 port 15728734 91117 nas_port_type Virtual 91117 remote_ip 5.5.5.244 91118 username mammad 91118 unique_id port 91118 terminate_cause User-Request 91118 bytes_out 867341 91118 bytes_in 9216401 91118 station_ip 5.120.24.154 91118 port 15728730 91118 nas_port_type Virtual 91118 remote_ip 5.5.5.209 91122 username madadi2 91122 unique_id port 91122 terminate_cause Lost-Carrier 91122 bytes_out 673216 91122 bytes_in 2585316 91122 station_ip 5.120.55.77 91122 port 15728727 91122 nas_port_type Virtual 91122 remote_ip 5.5.5.210 91123 username aminvpn 91123 unique_id port 91123 terminate_cause Lost-Carrier 91123 bytes_out 122694 91123 bytes_in 418054 91123 station_ip 46.100.216.21 91123 port 15728735 91123 nas_port_type Virtual 91123 remote_ip 5.5.5.207 91124 username alinezhad 91124 unique_id port 91124 terminate_cause User-Request 91124 bytes_out 0 91124 bytes_in 0 91124 station_ip 113.203.34.90 91124 port 15728737 91124 nas_port_type Virtual 91124 remote_ip 5.5.5.206 91125 username mansur 91125 unique_id port 91125 terminate_cause User-Request 91125 bytes_out 28147233 91125 bytes_in 619272610 91125 station_ip 5.119.219.41 91125 port 15728712 91125 nas_port_type Virtual 91125 remote_ip 5.5.5.248 91132 username avaanna 91132 unique_id port 91132 terminate_cause User-Request 91132 bytes_out 55493 91132 bytes_in 251595 91132 station_ip 83.123.224.208 91132 port 15728745 91132 nas_port_type Virtual 91132 remote_ip 5.5.5.202 91133 username alemzadeh 91133 unique_id port 91133 terminate_cause User-Request 91133 bytes_out 177217 91133 bytes_in 1670425 91133 station_ip 83.123.40.164 91133 port 15728746 91133 nas_port_type Virtual 91133 remote_ip 5.5.5.204 91136 username farhad 91136 unique_id port 91136 terminate_cause User-Request 91136 bytes_out 23352363 91136 bytes_in 436231472 91136 station_ip 5.119.216.98 91136 port 15728711 91136 nas_port_type Virtual 91136 remote_ip 5.5.5.214 91139 username farhad 91139 unique_id port 91139 terminate_cause Lost-Carrier 91139 bytes_out 2237167 91139 bytes_in 42566253 91139 station_ip 5.119.62.56 91139 port 15728748 91139 nas_port_type Virtual 91139 remote_ip 5.5.5.201 91141 username mahbobeh 91141 unique_id port 91141 terminate_cause Lost-Carrier 91141 bytes_out 4170017 91141 bytes_in 81812331 91141 station_ip 83.122.67.4 91141 port 15728738 91141 nas_port_type Virtual 91141 remote_ip 5.5.5.254 91142 username sobhan 91142 unique_id port 91142 terminate_cause Lost-Carrier 91142 bytes_out 24474048 91142 bytes_in 812019089 91142 station_ip 5.119.57.125 91142 port 15728743 91142 nas_port_type Virtual 91142 remote_ip 5.5.5.203 91109 port 15728728 91109 nas_port_type Virtual 91109 remote_ip 5.5.5.250 91110 username aminvpn 91110 mac 91110 bytes_out 0 91110 bytes_in 0 91110 station_ip 113.203.69.235 91110 port 1 91110 unique_id port 91110 remote_ip 10.8.0.6 91114 username aminvpn 91114 mac 91114 bytes_out 0 91114 bytes_in 0 91114 station_ip 113.203.69.235 91114 port 1 91114 unique_id port 91114 remote_ip 10.8.0.6 91116 username aminvpn 91116 mac 91116 bytes_out 0 91116 bytes_in 0 91116 station_ip 113.203.69.235 91116 port 1 91116 unique_id port 91116 remote_ip 10.8.0.6 91121 username mahbobeh 91121 unique_id port 91121 terminate_cause Lost-Carrier 91121 bytes_out 365114 91121 bytes_in 3375935 91121 station_ip 83.122.67.4 91121 port 15728722 91121 nas_port_type Virtual 91121 remote_ip 5.5.5.254 91137 username alemzadeh 91137 unique_id port 91137 terminate_cause User-Request 91137 bytes_out 122755 91137 bytes_in 1270439 91137 station_ip 83.123.40.164 91137 port 15728750 91137 nas_port_type Virtual 91137 remote_ip 5.5.5.204 91138 username mahdixz 91138 unique_id port 91138 terminate_cause Lost-Carrier 91138 bytes_out 436992 91138 bytes_in 3050500 91138 station_ip 151.235.104.45 91138 port 15728749 91138 nas_port_type Virtual 91138 remote_ip 5.5.5.231 91143 username sobhan 91143 unique_id port 91143 terminate_cause Lost-Carrier 91143 bytes_out 2321482 91143 bytes_in 92899991 91143 station_ip 5.119.57.125 91143 port 15728753 91143 nas_port_type Virtual 91143 remote_ip 5.5.5.200 91165 bytes_out 0 91165 bytes_in 0 91165 station_ip 113.203.78.251 91165 port 3 91165 unique_id port 91165 remote_ip 10.8.0.6 91166 username aminvpn 91166 mac 91166 bytes_out 0 91166 bytes_in 0 91166 station_ip 113.203.78.251 91166 port 3 91166 unique_id port 91166 remote_ip 10.8.0.6 91167 username forozande 91167 unique_id port 91167 terminate_cause User-Request 91167 bytes_out 25112 91167 bytes_in 195184 91167 station_ip 83.122.14.225 91167 port 15728648 91167 nas_port_type Virtual 91167 remote_ip 5.5.5.250 91168 username forozande 91168 unique_id port 91168 terminate_cause User-Request 91168 bytes_out 19422 91168 bytes_in 112983 91168 station_ip 83.122.14.225 91168 port 15728650 91168 nas_port_type Virtual 91168 remote_ip 5.5.5.250 91169 username aminvpn 91169 mac 91169 bytes_out 440448 91169 bytes_in 1338747 91169 station_ip 113.203.78.251 91169 port 3 91169 unique_id port 91169 remote_ip 10.8.0.6 91170 username forozande 91170 unique_id port 91170 terminate_cause User-Request 91170 bytes_out 60377 91170 bytes_in 565150 91170 station_ip 83.122.14.225 91170 port 15728654 91170 nas_port_type Virtual 91170 remote_ip 5.5.5.250 91173 username aminvpn 91173 mac 91173 bytes_out 337982 91173 bytes_in 952973 91173 station_ip 37.129.181.47 91173 port 3 91173 unique_id port 91173 remote_ip 10.8.0.6 91177 username aminvpn 91177 mac 91177 bytes_out 0 91177 bytes_in 0 91177 station_ip 37.129.181.47 91177 port 1 91177 unique_id port 91177 remote_ip 10.8.1.6 91180 username aminvpn 91180 mac 91180 bytes_out 0 91180 bytes_in 0 91180 station_ip 113.203.103.159 91180 port 2 91180 unique_id port 91180 remote_ip 10.8.1.6 91182 username aminvpn 91182 mac 91182 bytes_out 0 91182 bytes_in 0 91182 station_ip 37.129.181.47 91182 port 1 91182 unique_id port 91182 remote_ip 10.8.1.6 91186 username aminvpn 91186 mac 91186 bytes_out 0 91186 bytes_in 0 91186 station_ip 113.203.103.159 91186 port 2 91144 username mahdixz 91144 unique_id port 91144 terminate_cause Lost-Carrier 91144 bytes_out 4041111 91144 bytes_in 17273485 91144 station_ip 151.235.104.45 91144 port 15728752 91144 nas_port_type Virtual 91144 remote_ip 5.5.5.231 91178 station_ip 113.203.103.159 91178 port 2 91178 unique_id port 91178 remote_ip 10.8.1.6 91184 username madadi2 91184 unique_id port 91184 terminate_cause Lost-Carrier 91184 bytes_out 315263 91184 bytes_in 1449383 91184 station_ip 5.120.136.138 91184 port 15728656 91184 nas_port_type Virtual 91184 remote_ip 5.5.5.244 91188 username aminvpn 91188 mac 91188 bytes_out 0 91188 bytes_in 0 91188 station_ip 113.203.103.159 91188 port 2 91188 unique_id port 91188 remote_ip 10.8.1.6 91192 username aminvpn 91192 mac 91192 bytes_out 0 91192 bytes_in 0 91192 station_ip 113.203.103.159 91192 port 2 91192 unique_id port 91192 remote_ip 10.8.1.6 91195 username alinezhad 91195 unique_id port 91195 terminate_cause User-Request 91195 bytes_out 0 91195 bytes_in 0 91195 station_ip 37.129.33.24 91195 port 15728659 91195 nas_port_type Virtual 91195 remote_ip 5.5.5.243 91196 username mahbobeh 91196 unique_id port 91196 terminate_cause Lost-Carrier 91196 bytes_out 1634625 91196 bytes_in 22791087 91196 station_ip 83.122.67.4 91196 port 15728647 91196 nas_port_type Virtual 91196 remote_ip 5.5.5.255 91200 username jamali 91200 unique_id port 91200 terminate_cause User-Request 91200 bytes_out 229988 91200 bytes_in 4983977 91200 station_ip 37.129.64.72 91200 port 15728664 91200 nas_port_type Virtual 91200 remote_ip 5.5.5.237 91208 username aminvpn 91208 mac 91208 bytes_out 106056 91208 bytes_in 129362 91208 station_ip 113.203.103.159 91208 port 1 91208 unique_id port 91208 remote_ip 10.8.1.6 91210 username asadi 91210 unique_id port 91210 terminate_cause User-Request 91210 bytes_out 95454 91210 bytes_in 573639 91210 station_ip 83.123.160.250 91210 port 15728668 91210 nas_port_type Virtual 91210 remote_ip 5.5.5.233 91212 username alinezhad 91212 unique_id port 91212 terminate_cause User-Request 91212 bytes_out 0 91212 bytes_in 0 91212 station_ip 5.202.4.54 91212 port 15728669 91212 nas_port_type Virtual 91212 remote_ip 5.5.5.232 91214 username ahmadipour 91214 unique_id port 91214 terminate_cause Lost-Carrier 91214 bytes_out 387192 91214 bytes_in 6254346 91214 station_ip 83.123.79.35 91214 port 15728671 91214 nas_port_type Virtual 91214 remote_ip 5.5.5.230 91215 username madadi2 91215 unique_id port 91215 terminate_cause Lost-Carrier 91215 bytes_out 121316 91215 bytes_in 503249 91215 station_ip 5.119.171.49 91215 port 15728670 91215 nas_port_type Virtual 91215 remote_ip 5.5.5.231 91216 username mirzaei 91216 kill_reason Another user logged on this global unique id 91216 mac 91216 bytes_out 0 91216 bytes_in 0 91216 station_ip 5.120.99.24 91216 port 2 91216 unique_id port 91223 username aminvpn 91223 mac 91223 bytes_out 0 91223 bytes_in 0 91223 station_ip 113.203.112.232 91223 port 2 91223 unique_id port 91223 remote_ip 10.8.1.6 91225 username aminvpn 91225 mac 91225 bytes_out 0 91225 bytes_in 0 91225 station_ip 113.203.112.232 91225 port 2 91225 unique_id port 91225 remote_ip 10.8.1.6 91227 username mirzaei 91227 kill_reason Another user logged on this global unique id 91227 mac 91227 bytes_out 0 91227 bytes_in 0 91227 station_ip 5.120.99.24 91227 port 2 91227 unique_id port 91230 username aminvpn 91230 mac 91230 bytes_out 3836017 91230 bytes_in 34223568 91230 station_ip 113.203.103.159 91230 port 1 91230 unique_id port 91181 remote_ip 10.8.0.6 91183 username aminvpn 91183 mac 91183 bytes_out 0 91183 bytes_in 0 91183 station_ip 113.203.103.159 91183 port 2 91183 unique_id port 91183 remote_ip 10.8.1.6 91185 username aminvpn 91185 mac 91185 bytes_out 0 91185 bytes_in 0 91185 station_ip 37.129.181.47 91185 port 1 91185 unique_id port 91185 remote_ip 10.8.1.6 91189 username aminvpn 91189 mac 91189 bytes_out 0 91189 bytes_in 0 91189 station_ip 37.129.181.47 91189 port 1 91189 unique_id port 91189 remote_ip 10.8.1.6 91193 username aminvpn 91193 mac 91193 bytes_out 0 91193 bytes_in 0 91193 station_ip 37.129.181.47 91193 port 1 91193 unique_id port 91193 remote_ip 10.8.1.6 91197 username forozande 91197 unique_id port 91197 terminate_cause User-Request 91197 bytes_out 48945 91197 bytes_in 447304 91197 station_ip 83.123.110.255 91197 port 15728660 91197 nas_port_type Virtual 91197 remote_ip 5.5.5.241 91199 username madadi2 91199 unique_id port 91199 terminate_cause Lost-Carrier 91199 bytes_out 247392 91199 bytes_in 1471316 91199 station_ip 5.120.112.34 91199 port 15728658 91199 nas_port_type Virtual 91199 remote_ip 5.5.5.242 91201 username alireza1 91201 unique_id port 91201 terminate_cause Lost-Carrier 91201 bytes_out 144497 91201 bytes_in 463686 91201 station_ip 5.119.120.99 91201 port 15728661 91201 nas_port_type Virtual 91201 remote_ip 5.5.5.240 91203 username mansur 91203 unique_id port 91203 terminate_cause User-Request 91203 bytes_out 28852152 91203 bytes_in 451560380 91203 station_ip 5.120.22.253 91203 port 15728653 91203 nas_port_type Virtual 91203 remote_ip 5.5.5.246 91204 username aminvpn 91204 mac 91204 bytes_out 0 91204 bytes_in 0 91204 station_ip 37.129.181.47 91204 port 3 91204 unique_id port 91204 remote_ip 10.8.0.6 91206 username caferibar 91206 unique_id port 91206 terminate_cause Lost-Carrier 91206 bytes_out 8315217 91206 bytes_in 112589067 91206 station_ip 5.120.88.155 91206 port 15728652 91206 nas_port_type Virtual 91206 remote_ip 5.5.5.247 91211 username mirzaei 91211 kill_reason Another user logged on this global unique id 91211 mac 91211 bytes_out 0 91211 bytes_in 0 91211 station_ip 5.120.99.24 91211 port 2 91211 unique_id port 91217 username aminvpn 91217 mac 91217 bytes_out 3782962 91217 bytes_in 34131845 91217 station_ip 113.203.103.159 91217 port 1 91217 unique_id port 91217 remote_ip 10.8.1.6 91221 username aminvpn 91221 mac 91221 bytes_out 22267 91221 bytes_in 35801 91221 station_ip 113.203.112.232 91221 port 2 91221 unique_id port 91221 remote_ip 10.8.1.6 91226 username aminvpn 91226 kill_reason Maximum check online fails reached 91226 unique_id port 91226 bytes_out 1002356 91226 bytes_in 22840425 91226 station_ip 5.119.181.211 91226 port 15728672 91226 nas_port_type Virtual 91226 remote_ip 5.5.5.229 91228 username aminvpn 91228 mac 91228 bytes_out 3809750 91228 bytes_in 34211090 91228 station_ip 113.203.103.159 91228 port 1 91228 unique_id port 91228 remote_ip 10.8.1.6 91231 username aminvpn 91231 mac 91231 bytes_out 0 91231 bytes_in 0 91231 station_ip 113.203.112.232 91231 port 2 91231 unique_id port 91231 remote_ip 10.8.1.6 91236 username aminvpn 91236 mac 91236 bytes_out 0 91236 bytes_in 0 91236 station_ip 113.203.112.232 91236 port 2 91236 unique_id port 91236 remote_ip 10.8.1.6 91238 username aminvpn 91238 mac 91238 bytes_out 0 91238 bytes_in 0 91238 station_ip 113.203.112.232 91238 port 2 91238 unique_id port 91186 unique_id port 91186 remote_ip 10.8.1.6 91187 username aminvpn 91187 mac 91187 bytes_out 0 91187 bytes_in 0 91187 station_ip 37.129.181.47 91187 port 1 91187 unique_id port 91187 remote_ip 10.8.1.6 91190 username aminvpn 91190 mac 91190 bytes_out 0 91190 bytes_in 0 91190 station_ip 113.203.103.159 91190 port 2 91190 unique_id port 91190 remote_ip 10.8.1.6 91191 username aminvpn 91191 mac 91191 bytes_out 0 91191 bytes_in 0 91191 station_ip 37.129.181.47 91191 port 1 91191 unique_id port 91191 remote_ip 10.8.1.6 91194 username aminvpn 91194 unique_id port 91194 terminate_cause User-Request 91194 bytes_out 3584736 91194 bytes_in 56849179 91194 station_ip 5.120.177.231 91194 port 15728651 91194 nas_port_type Virtual 91194 remote_ip 5.5.5.248 91198 username aminvpn 91198 mac 91198 bytes_out 107066 91198 bytes_in 95228 91198 station_ip 113.203.103.159 91198 port 2 91198 unique_id port 91198 remote_ip 10.8.1.6 91202 username madadi2 91202 unique_id port 91202 terminate_cause Lost-Carrier 91202 bytes_out 197580 91202 bytes_in 2548050 91202 station_ip 5.119.156.252 91202 port 15728662 91202 nas_port_type Virtual 91202 remote_ip 5.5.5.239 91205 username aminvpn 91205 unique_id port 91205 terminate_cause User-Request 91205 bytes_out 0 91205 bytes_in 0 91205 station_ip 5.119.10.151 91205 port 15728666 91205 nas_port_type Virtual 91205 remote_ip 5.5.5.235 91207 username madadi2 91207 unique_id port 91207 terminate_cause Lost-Carrier 91207 bytes_out 704109 91207 bytes_in 6116124 91207 station_ip 5.120.59.157 91207 port 15728665 91207 nas_port_type Virtual 91207 remote_ip 5.5.5.236 91209 username alireza1 91209 unique_id port 91209 terminate_cause User-Request 91209 bytes_out 2930914 91209 bytes_in 31407648 91209 station_ip 5.120.156.6 91209 port 15728663 91209 nas_port_type Virtual 91209 remote_ip 5.5.5.238 91213 username caferibar 91213 unique_id port 91213 terminate_cause Lost-Carrier 91213 bytes_out 88721 91213 bytes_in 685243 91213 station_ip 5.119.216.25 91213 port 15728667 91213 nas_port_type Virtual 91213 remote_ip 5.5.5.234 91218 username aminvpn 91218 mac 91218 bytes_out 0 91218 bytes_in 0 91218 station_ip 113.203.112.232 91218 port 2 91218 unique_id port 91218 remote_ip 10.8.1.6 91219 username heydari 91219 unique_id port 91219 terminate_cause User-Request 91219 bytes_out 60990 91219 bytes_in 539868 91219 station_ip 5.120.149.87 91219 port 15728673 91219 nas_port_type Virtual 91219 remote_ip 5.5.5.228 91220 username aminvpn 91220 mac 91220 bytes_out 3783227 91220 bytes_in 34132481 91220 station_ip 113.203.103.159 91220 port 1 91220 unique_id port 91220 remote_ip 10.8.1.6 91222 username aminvpn 91222 mac 91222 bytes_out 3803725 91222 bytes_in 34204404 91222 station_ip 113.203.103.159 91222 port 1 91222 unique_id port 91222 remote_ip 10.8.1.6 91224 username aminvpn 91224 mac 91224 bytes_out 0 91224 bytes_in 0 91224 station_ip 113.203.103.159 91224 port 1 91224 unique_id port 91224 remote_ip 10.8.1.6 91229 username aminvpn 91229 mac 91229 bytes_out 0 91229 bytes_in 0 91229 station_ip 113.203.112.232 91229 port 2 91229 unique_id port 91229 remote_ip 10.8.1.6 91234 username ahmadi 91234 unique_id port 91234 terminate_cause User-Request 91234 bytes_out 63416 91234 bytes_in 348236 91234 station_ip 83.122.77.43 91234 port 15728676 91234 nas_port_type Virtual 91234 remote_ip 5.5.5.251 91239 username mohammadali 91239 mac 91239 bytes_out 2387243 91239 bytes_in 20212614 91230 remote_ip 10.8.1.6 91232 username aminvpn 91232 mac 91232 bytes_out 3838047 91232 bytes_in 34225774 91232 station_ip 113.203.103.159 91232 port 1 91232 unique_id port 91232 remote_ip 10.8.1.6 91233 username aminvpn 91233 mac 91233 bytes_out 0 91233 bytes_in 0 91233 station_ip 113.203.112.232 91233 port 2 91233 unique_id port 91233 remote_ip 10.8.1.6 91235 username aminvpn 91235 mac 91235 bytes_out 0 91235 bytes_in 0 91235 station_ip 113.203.103.159 91235 port 1 91235 unique_id port 91235 remote_ip 10.8.1.6 91237 username aminvpn 91237 mac 91237 bytes_out 3840400 91237 bytes_in 34228158 91237 station_ip 113.203.103.159 91237 port 1 91237 unique_id port 91237 remote_ip 10.8.1.6 91242 username aminvpn 91242 mac 91242 bytes_out 0 91242 bytes_in 0 91242 station_ip 113.203.103.159 91242 port 1 91242 unique_id port 91242 remote_ip 10.8.1.6 91244 username aminvpn 91244 mac 91244 bytes_out 0 91244 bytes_in 0 91244 station_ip 113.203.112.232 91244 port 2 91244 unique_id port 91244 remote_ip 10.8.1.6 91246 username aminvpn 91246 mac 91246 bytes_out 3846910 91246 bytes_in 34235198 91246 station_ip 113.203.103.159 91246 port 1 91246 unique_id port 91246 remote_ip 10.8.1.6 91251 username aminvpn 91251 mac 91251 bytes_out 0 91251 bytes_in 0 91251 station_ip 113.203.112.232 91251 port 2 91251 unique_id port 91251 remote_ip 10.8.1.6 91252 username mohammadali 91252 mac 91252 bytes_out 2648175 91252 bytes_in 34289819 91252 station_ip 5.119.60.106 91252 port 3 91252 unique_id port 91252 remote_ip 10.8.0.18 91255 username aminvpn 91255 mac 91255 bytes_out 0 91255 bytes_in 0 91255 station_ip 113.203.103.159 91255 port 1 91255 unique_id port 91255 remote_ip 10.8.1.6 91257 username aminvpn 91257 mac 91257 bytes_out 0 91257 bytes_in 0 91257 station_ip 113.203.112.232 91257 port 2 91257 unique_id port 91257 remote_ip 10.8.1.6 91258 username madadi2 91258 unique_id port 91258 terminate_cause Lost-Carrier 91258 bytes_out 18519 91258 bytes_in 143849 91258 station_ip 5.119.61.183 91258 port 15728678 91258 nas_port_type Virtual 91258 remote_ip 5.5.5.225 91259 username aminvpn 91259 mac 91259 bytes_out 0 91259 bytes_in 0 91259 station_ip 113.203.103.159 91259 port 1 91259 unique_id port 91259 remote_ip 10.8.1.6 91263 username aminvpn 91263 mac 91263 bytes_out 0 91263 bytes_in 0 91263 station_ip 113.203.112.232 91263 port 2 91263 unique_id port 91263 remote_ip 10.8.1.6 91264 username mohammadali 91264 mac 91264 bytes_out 0 91264 bytes_in 0 91264 station_ip 5.119.60.106 91264 port 3 91264 unique_id port 91265 username aminvpn 91265 mac 91265 bytes_out 0 91265 bytes_in 0 91265 station_ip 113.203.103.159 91265 port 1 91265 unique_id port 91265 remote_ip 10.8.1.6 91267 username madadi2 91267 kill_reason Maximum check online fails reached 91267 unique_id port 91267 bytes_out 85722 91267 bytes_in 216759 91267 station_ip 5.119.163.232 91267 port 15728682 91267 nas_port_type Virtual 91267 remote_ip 5.5.5.222 91268 username alinezhad 91268 unique_id port 91268 terminate_cause User-Request 91268 bytes_out 0 91268 bytes_in 0 91268 station_ip 5.202.4.54 91268 port 15728683 91268 nas_port_type Virtual 91268 remote_ip 5.5.5.232 91269 username mahbobeh 91269 unique_id port 91269 terminate_cause Lost-Carrier 91269 bytes_out 604118 91269 bytes_in 12931447 91269 station_ip 83.122.67.4 91238 remote_ip 10.8.1.6 91241 username aminvpn 91241 mac 91241 bytes_out 14447303 91241 bytes_in 159179684 91241 station_ip 113.203.112.232 91241 port 2 91241 unique_id port 91241 remote_ip 10.8.1.6 91247 username aminvpn 91247 mac 91247 bytes_out 14452414 91247 bytes_in 159191558 91247 station_ip 113.203.112.232 91247 port 2 91247 unique_id port 91247 remote_ip 10.8.1.6 91248 username aminvpn 91248 mac 91248 bytes_out 0 91248 bytes_in 0 91248 station_ip 113.203.103.159 91248 port 1 91248 unique_id port 91248 remote_ip 10.8.1.6 91249 username aminvpn 91249 mac 91249 bytes_out 0 91249 bytes_in 0 91249 station_ip 113.203.112.232 91249 port 2 91249 unique_id port 91249 remote_ip 10.8.1.6 91253 username alinezhad 91253 unique_id port 91253 terminate_cause User-Request 91253 bytes_out 0 91253 bytes_in 0 91253 station_ip 5.202.4.54 91253 port 15728679 91253 nas_port_type Virtual 91253 remote_ip 5.5.5.232 91254 username madadi2 91254 unique_id port 91254 terminate_cause Lost-Carrier 91254 bytes_out 12355 91254 bytes_in 159486 91254 station_ip 5.120.48.184 91254 port 15728677 91254 nas_port_type Virtual 91254 remote_ip 5.5.5.226 91260 username aminvpn 91260 mac 91260 bytes_out 0 91260 bytes_in 0 91260 station_ip 113.203.112.232 91260 port 2 91260 unique_id port 91260 remote_ip 10.8.1.6 91262 username aminvpn 91262 mac 91262 bytes_out 0 91262 bytes_in 0 91262 station_ip 113.203.103.159 91262 port 1 91262 unique_id port 91262 remote_ip 10.8.1.6 91266 username madadi2 91266 unique_id port 91266 terminate_cause Lost-Carrier 91266 bytes_out 20339 91266 bytes_in 131822 91266 station_ip 5.119.154.4 91266 port 15728680 91266 nas_port_type Virtual 91266 remote_ip 5.5.5.224 91276 username asadi 91276 unique_id port 91276 terminate_cause User-Request 91276 bytes_out 29583 91276 bytes_in 97352 91276 station_ip 83.123.160.250 91276 port 15728689 91276 nas_port_type Virtual 91276 remote_ip 5.5.5.233 91278 username asadi 91278 unique_id port 91278 terminate_cause User-Request 91278 bytes_out 63929 91278 bytes_in 794413 91278 station_ip 83.123.160.250 91278 port 15728692 91278 nas_port_type Virtual 91278 remote_ip 5.5.5.233 91280 username forozande 91280 unique_id port 91280 terminate_cause User-Request 91280 bytes_out 90085 91280 bytes_in 339897 91280 station_ip 113.203.32.207 91280 port 15728695 91280 nas_port_type Virtual 91280 remote_ip 5.5.5.217 91281 username asadi 91281 unique_id port 91281 terminate_cause User-Request 91281 bytes_out 0 91281 bytes_in 0 91281 station_ip 83.123.160.250 91281 port 15728697 91281 nas_port_type Virtual 91281 remote_ip 5.5.5.233 91283 username aminvpn 91283 mac 91283 bytes_out 715958 91283 bytes_in 8185912 91283 station_ip 113.203.112.232 91283 port 4 91283 unique_id port 91283 remote_ip 10.8.0.6 91285 username heydari 91285 unique_id port 91285 terminate_cause Lost-Carrier 91285 bytes_out 119974 91285 bytes_in 645859 91285 station_ip 5.119.249.91 91285 port 15728694 91285 nas_port_type Virtual 91285 remote_ip 5.5.5.218 91287 username alinezhad 91287 unique_id port 91287 terminate_cause User-Request 91287 bytes_out 0 91287 bytes_in 0 91287 station_ip 5.202.4.54 91287 port 15728702 91287 nas_port_type Virtual 91287 remote_ip 5.5.5.232 91288 username aminvpn 91288 unique_id port 91288 terminate_cause Lost-Carrier 91288 bytes_out 248117 91288 bytes_in 1987964 91288 station_ip 46.100.216.21 91288 port 15728700 91288 nas_port_type Virtual 91288 remote_ip 5.5.5.215 91289 username ksrkrgr 91239 station_ip 5.119.60.106 91239 port 3 91239 unique_id port 91239 remote_ip 10.8.0.18 91240 username aminvpn 91240 mac 91240 bytes_out 3843889 91240 bytes_in 34231400 91240 station_ip 113.203.103.159 91240 port 1 91240 unique_id port 91240 remote_ip 10.8.1.6 91243 username aminvpn 91243 mac 91243 bytes_out 0 91243 bytes_in 0 91243 station_ip 113.203.103.159 91243 port 1 91243 unique_id port 91243 remote_ip 10.8.1.6 91245 username madadi2 91245 unique_id port 91245 terminate_cause Lost-Carrier 91245 bytes_out 108908 91245 bytes_in 496151 91245 station_ip 5.119.80.115 91245 port 15728675 91245 nas_port_type Virtual 91245 remote_ip 5.5.5.227 91250 username aminvpn 91250 mac 91250 bytes_out 0 91250 bytes_in 0 91250 station_ip 113.203.103.159 91250 port 1 91250 unique_id port 91250 remote_ip 10.8.1.6 91256 username aminvpn 91256 mac 91256 bytes_out 0 91256 bytes_in 0 91256 station_ip 113.203.103.159 91256 port 1 91256 unique_id port 91256 remote_ip 10.8.1.6 91261 username mohammadali 91261 kill_reason Another user logged on this global unique id 91261 mac 91261 bytes_out 0 91261 bytes_in 0 91261 station_ip 5.119.60.106 91261 port 3 91261 unique_id port 91261 remote_ip 10.8.0.18 91270 username forozande 91270 unique_id port 91270 terminate_cause User-Request 91270 bytes_out 0 91270 bytes_in 0 91270 station_ip 83.123.227.231 91270 port 15728684 91270 nas_port_type Virtual 91270 remote_ip 5.5.5.221 91271 username forozande 91271 unique_id port 91271 terminate_cause User-Request 91271 bytes_out 0 91271 bytes_in 0 91271 station_ip 83.123.227.231 91271 port 15728685 91271 nas_port_type Virtual 91271 remote_ip 5.5.5.221 91279 username ahmadi 91279 unique_id port 91279 terminate_cause User-Request 91279 bytes_out 6866145 91279 bytes_in 601751 91279 station_ip 83.122.77.43 91279 port 15728693 91279 nas_port_type Virtual 91279 remote_ip 5.5.5.251 91290 username forozande 91290 unique_id port 91290 terminate_cause User-Request 91290 bytes_out 125429 91290 bytes_in 1587400 91290 station_ip 83.122.2.94 91290 port 15728706 91290 nas_port_type Virtual 91290 remote_ip 5.5.5.211 91297 username mansur 91297 unique_id port 91297 terminate_cause Lost-Carrier 91297 bytes_out 6892477 91297 bytes_in 124427288 91297 station_ip 5.120.22.253 91297 port 15728691 91297 nas_port_type Virtual 91297 remote_ip 5.5.5.246 91301 username madadi2 91301 unique_id port 91301 terminate_cause Lost-Carrier 91301 bytes_out 1475822 91301 bytes_in 3527634 91301 station_ip 5.120.26.146 91301 port 15728690 91301 nas_port_type Virtual 91301 remote_ip 5.5.5.219 91303 username madadi2 91303 unique_id port 91303 terminate_cause User-Request 91303 bytes_out 0 91303 bytes_in 0 91303 station_ip 5.120.119.170 91303 port 15728718 91303 nas_port_type Virtual 91303 remote_ip 5.5.5.206 91308 username shokokian 91308 unique_id port 91308 terminate_cause Lost-Carrier 91308 bytes_out 469454 91308 bytes_in 8670501 91308 station_ip 151.238.254.146 91308 port 15728712 91308 nas_port_type Virtual 91308 remote_ip 5.5.5.210 91316 username fariba 91316 mac 91316 bytes_out 0 91316 bytes_in 0 91316 station_ip 37.129.193.250 91316 port 1 91316 unique_id port 91319 username madadi2 91319 unique_id port 91319 terminate_cause Lost-Carrier 91319 bytes_out 12713 91319 bytes_in 155870 91319 station_ip 5.119.177.125 91319 port 15728728 91319 nas_port_type Virtual 91319 remote_ip 5.5.5.200 91320 username alinezhad 91320 unique_id port 91320 terminate_cause User-Request 91320 bytes_out 0 91320 bytes_in 0 91269 port 15728674 91269 nas_port_type Virtual 91269 remote_ip 5.5.5.255 91272 username forozande 91272 unique_id port 91272 terminate_cause User-Request 91272 bytes_out 0 91272 bytes_in 0 91272 station_ip 83.123.227.231 91272 port 15728686 91272 nas_port_type Virtual 91272 remote_ip 5.5.5.221 91273 username forozande 91273 unique_id port 91273 terminate_cause User-Request 91273 bytes_out 256902 91273 bytes_in 3613211 91273 station_ip 37.129.2.22 91273 port 15728687 91273 nas_port_type Virtual 91273 remote_ip 5.5.5.220 91274 username aminvpn 91274 mac 91274 bytes_out 0 91274 bytes_in 0 91274 station_ip 5.119.181.211 91274 port 1 91274 unique_id port 91274 remote_ip 10.8.1.6 91275 username alinezhad 91275 unique_id port 91275 terminate_cause User-Request 91275 bytes_out 0 91275 bytes_in 0 91275 station_ip 5.202.4.54 91275 port 15728688 91275 nas_port_type Virtual 91275 remote_ip 5.5.5.232 91277 username amirabbas 91277 unique_id port 91277 terminate_cause User-Request 91277 bytes_out 47396493 91277 bytes_in 1465625209 91277 station_ip 31.56.112.188 91277 port 15728681 91277 nas_port_type Virtual 91277 remote_ip 5.5.5.223 91282 username asadi 91282 unique_id port 91282 terminate_cause User-Request 91282 bytes_out 148299 91282 bytes_in 3653709 91282 station_ip 83.123.160.250 91282 port 15728698 91282 nas_port_type Virtual 91282 remote_ip 5.5.5.233 91284 username aminvpn 91284 unique_id port 91284 terminate_cause User-Request 91284 bytes_out 673528 91284 bytes_in 3908534 91284 station_ip 46.100.216.21 91284 port 15728699 91284 nas_port_type Virtual 91284 remote_ip 5.5.5.215 91286 username ahmadipour 91286 unique_id port 91286 terminate_cause Lost-Carrier 91286 bytes_out 367498 91286 bytes_in 8438404 91286 station_ip 83.123.120.47 91286 port 15728701 91286 nas_port_type Virtual 91286 remote_ip 5.5.5.214 91291 username asadi 91291 unique_id port 91291 terminate_cause User-Request 91291 bytes_out 136126 91291 bytes_in 1840494 91291 station_ip 83.123.160.250 91291 port 15728707 91291 nas_port_type Virtual 91291 remote_ip 5.5.5.233 91293 username forozande 91293 unique_id port 91293 terminate_cause User-Request 91293 bytes_out 26173 91293 bytes_in 185670 91293 station_ip 83.122.2.94 91293 port 15728709 91293 nas_port_type Virtual 91293 remote_ip 5.5.5.211 91294 username alinezhad 91294 unique_id port 91294 terminate_cause User-Request 91294 bytes_out 0 91294 bytes_in 0 91294 station_ip 5.202.4.54 91294 port 15728710 91294 nas_port_type Virtual 91294 remote_ip 5.5.5.232 91296 username sadegh 91296 unique_id port 91296 terminate_cause Lost-Carrier 91296 bytes_out 32027879 91296 bytes_in 721856028 91296 station_ip 5.120.20.74 91296 port 15728696 91296 nas_port_type Virtual 91296 remote_ip 5.5.5.216 91299 username ahmadi 91299 unique_id port 91299 terminate_cause User-Request 91299 bytes_out 60081 91299 bytes_in 194258 91299 station_ip 83.122.9.51 91299 port 15728715 91299 nas_port_type Virtual 91299 remote_ip 5.5.5.209 91302 username mansur 91302 unique_id port 91302 terminate_cause User-Request 91302 bytes_out 13038861 91302 bytes_in 238654230 91302 station_ip 5.120.22.253 91302 port 15728714 91302 nas_port_type Virtual 91302 remote_ip 5.5.5.246 91307 username alinezhad 91307 unique_id port 91307 terminate_cause User-Request 91307 bytes_out 0 91307 bytes_in 0 91307 station_ip 5.202.4.54 91307 port 15728724 91307 nas_port_type Virtual 91307 remote_ip 5.5.5.232 91309 username madadi2 91309 unique_id port 91309 terminate_cause Lost-Carrier 91309 bytes_out 325542 91309 bytes_in 3026136 91309 station_ip 5.120.119.170 91309 port 15728720 91289 unique_id port 91289 terminate_cause User-Request 91289 bytes_out 211055 91289 bytes_in 1189284 91289 station_ip 83.123.169.105 91289 port 15728704 91289 nas_port_type Virtual 91289 remote_ip 5.5.5.212 91292 username forozande 91292 unique_id port 91292 terminate_cause User-Request 91292 bytes_out 129087 91292 bytes_in 238512 91292 station_ip 83.122.2.94 91292 port 15728708 91292 nas_port_type Virtual 91292 remote_ip 5.5.5.211 91295 username forozande 91295 unique_id port 91295 terminate_cause User-Request 91295 bytes_out 30932 91295 bytes_in 126293 91295 station_ip 83.122.2.94 91295 port 15728711 91295 nas_port_type Virtual 91295 remote_ip 5.5.5.211 91298 username asadi 91298 unique_id port 91298 terminate_cause User-Request 91298 bytes_out 165576 91298 bytes_in 3977446 91298 station_ip 83.123.160.250 91298 port 15728713 91298 nas_port_type Virtual 91298 remote_ip 5.5.5.233 91300 username forozande 91300 unique_id port 91300 terminate_cause User-Request 91300 bytes_out 0 91300 bytes_in 0 91300 station_ip 113.203.65.176 91300 port 15728716 91300 nas_port_type Virtual 91300 remote_ip 5.5.5.208 91304 username madadi2 91304 unique_id port 91304 terminate_cause Lost-Carrier 91304 bytes_out 88165 91304 bytes_in 2205184 91304 station_ip 5.119.193.126 91304 port 15728717 91304 nas_port_type Virtual 91304 remote_ip 5.5.5.207 91305 username aminvpn 91305 unique_id port 91305 terminate_cause User-Request 91305 bytes_out 121170 91305 bytes_in 420394 91305 station_ip 113.203.34.115 91305 port 15728721 91305 nas_port_type Virtual 91305 remote_ip 5.5.5.205 91306 username caferibar 91306 unique_id port 91306 terminate_cause User-Request 91306 bytes_out 56861 91306 bytes_in 824724 91306 station_ip 113.203.71.74 91306 port 15728723 91306 nas_port_type Virtual 91306 remote_ip 5.5.5.203 91310 username amirabbas 91310 unique_id port 91310 terminate_cause User-Request 91310 bytes_out 23005213 91310 bytes_in 597428442 91310 station_ip 151.238.238.96 91310 port 15728703 91310 nas_port_type Virtual 91310 remote_ip 5.5.5.213 91313 username aminvpn 91313 mac 91313 bytes_out 0 91313 bytes_in 0 91313 station_ip 113.203.40.8 91313 port 3 91313 unique_id port 91313 remote_ip 10.8.0.6 91315 username madadi2 91315 unique_id port 91315 terminate_cause Lost-Carrier 91315 bytes_out 254811 91315 bytes_in 229384 91315 station_ip 5.119.124.102 91315 port 15728727 91315 nas_port_type Virtual 91315 remote_ip 5.5.5.201 91317 username heydarizadeh 91317 unique_id port 91317 terminate_cause Lost-Carrier 91317 bytes_out 984397 91317 bytes_in 11768229 91317 station_ip 5.120.16.92 91317 port 15728725 91317 nas_port_type Virtual 91317 remote_ip 5.5.5.202 91318 username asadi 91318 mac 91318 bytes_out 0 91318 bytes_in 0 91318 station_ip 83.123.160.250 91318 port 4 91318 unique_id port 91323 username aminvpn 91323 mac 91323 bytes_out 419288 91323 bytes_in 7754956 91323 station_ip 113.203.40.8 91323 port 1 91323 unique_id port 91323 remote_ip 10.8.0.6 91330 username forozande 91330 unique_id port 91330 terminate_cause User-Request 91330 bytes_out 71823 91330 bytes_in 888466 91330 station_ip 83.122.7.26 91330 port 15728742 91330 nas_port_type Virtual 91330 remote_ip 5.5.5.194 91331 username aminvpn 91331 unique_id port 91331 terminate_cause User-Request 91331 bytes_out 83095818 91331 bytes_in 16900825 91331 station_ip 113.203.34.115 91331 port 15728729 91331 nas_port_type Virtual 91331 remote_ip 5.5.5.205 91332 username aminvpn 91332 mac 91332 bytes_out 0 91332 bytes_in 0 91332 station_ip 113.203.34.115 91332 port 1 91309 nas_port_type Virtual 91309 remote_ip 5.5.5.206 91311 username madadi2 91311 unique_id port 91311 terminate_cause Lost-Carrier 91311 bytes_out 527399 91311 bytes_in 13632422 91311 station_ip 5.119.58.189 91311 port 15728722 91311 nas_port_type Virtual 91311 remote_ip 5.5.5.204 91312 username heydari 91312 unique_id port 91312 terminate_cause User-Request 91312 bytes_out 124316 91312 bytes_in 857006 91312 station_ip 5.120.149.87 91312 port 15728726 91312 nas_port_type Virtual 91312 remote_ip 5.5.5.228 91314 username asadi 91314 kill_reason Another user logged on this global unique id 91314 mac 91314 bytes_out 0 91314 bytes_in 0 91314 station_ip 83.123.160.250 91314 port 4 91314 unique_id port 91314 remote_ip 10.8.0.22 91322 username madadi2 91322 unique_id port 91322 terminate_cause Lost-Carrier 91322 bytes_out 19831 91322 bytes_in 150049 91322 station_ip 5.120.173.119 91322 port 15728730 91322 nas_port_type Virtual 91322 remote_ip 5.5.5.199 91325 username forozande 91325 unique_id port 91325 terminate_cause User-Request 91325 bytes_out 89827 91325 bytes_in 277337 91325 station_ip 37.129.29.202 91325 port 15728737 91325 nas_port_type Virtual 91325 remote_ip 5.5.5.196 91333 username forozande 91333 unique_id port 91333 terminate_cause User-Request 91333 bytes_out 46775 91333 bytes_in 593328 91333 station_ip 83.122.7.26 91333 port 15728743 91333 nas_port_type Virtual 91333 remote_ip 5.5.5.194 91336 username alinezhad 91336 unique_id port 91336 terminate_cause User-Request 91336 bytes_out 0 91336 bytes_in 0 91336 station_ip 5.202.4.54 91336 port 15728747 91336 nas_port_type Virtual 91336 remote_ip 5.5.5.232 91340 username forozande 91340 unique_id port 91340 terminate_cause User-Request 91340 bytes_out 39160 91340 bytes_in 236218 91340 station_ip 113.203.101.87 91340 port 15728751 91340 nas_port_type Virtual 91340 remote_ip 5.5.5.190 91341 username aminvpn 91341 unique_id port 91341 terminate_cause Lost-Carrier 91341 bytes_out 324425 91341 bytes_in 2084020 91341 station_ip 5.120.148.54 91341 port 15728749 91341 nas_port_type Virtual 91341 remote_ip 5.5.5.192 91344 username forozande 91344 unique_id port 91344 terminate_cause User-Request 91344 bytes_out 21719 91344 bytes_in 210950 91344 station_ip 113.203.101.87 91344 port 15728754 91344 nas_port_type Virtual 91344 remote_ip 5.5.5.190 91352 username forozande 91352 unique_id port 91352 terminate_cause User-Request 91352 bytes_out 39121 91352 bytes_in 170956 91352 station_ip 37.129.122.4 91352 port 15728762 91352 nas_port_type Virtual 91352 remote_ip 5.5.5.187 91358 username forozande 91358 unique_id port 91358 terminate_cause User-Request 91358 bytes_out 56442 91358 bytes_in 613905 91358 station_ip 37.129.122.4 91358 port 15728766 91358 nas_port_type Virtual 91358 remote_ip 5.5.5.187 91361 username kamali 91361 unique_id port 91361 terminate_cause User-Request 91361 bytes_out 249671 91361 bytes_in 122848 91361 station_ip 83.123.31.212 91361 port 15728768 91361 nas_port_type Virtual 91361 remote_ip 5.5.5.181 91365 username madadi2 91365 unique_id port 91365 terminate_cause Lost-Carrier 91365 bytes_out 36994 91365 bytes_in 167828 91365 station_ip 5.119.207.175 91365 port 15728770 91365 nas_port_type Virtual 91365 remote_ip 5.5.5.179 91368 username mansur 91368 unique_id port 91368 terminate_cause User-Request 91368 bytes_out 370775 91368 bytes_in 3039100 91368 station_ip 5.120.22.253 91368 port 15728771 91368 nas_port_type Virtual 91368 remote_ip 5.5.5.246 91371 username forozande 91371 unique_id port 91371 terminate_cause User-Request 91371 bytes_out 14169 91371 bytes_in 22634 91371 station_ip 37.129.225.254 91320 station_ip 5.202.4.54 91320 port 15728731 91320 nas_port_type Virtual 91320 remote_ip 5.5.5.232 91321 username caferibar 91321 unique_id port 91321 terminate_cause User-Request 91321 bytes_out 21009 91321 bytes_in 349334 91321 station_ip 113.203.81.10 91321 port 15728733 91321 nas_port_type Virtual 91321 remote_ip 5.5.5.198 91324 username arabpour 91324 unique_id port 91324 terminate_cause User-Request 91324 bytes_out 497292 91324 bytes_in 12386036 91324 station_ip 158.58.112.76 91324 port 15728736 91324 nas_port_type Virtual 91324 remote_ip 5.5.5.197 91326 username heydari 91326 unique_id port 91326 terminate_cause User-Request 91326 bytes_out 212614 91326 bytes_in 4419305 91326 station_ip 5.120.149.87 91326 port 15728735 91326 nas_port_type Virtual 91326 remote_ip 5.5.5.228 91327 username alireza1 91327 unique_id port 91327 terminate_cause Lost-Carrier 91327 bytes_out 150087 91327 bytes_in 862841 91327 station_ip 5.120.156.6 91327 port 15728734 91327 nas_port_type Virtual 91327 remote_ip 5.5.5.238 91328 username forozande 91328 unique_id port 91328 terminate_cause User-Request 91328 bytes_out 20021 91328 bytes_in 37999 91328 station_ip 37.129.29.202 91328 port 15728739 91328 nas_port_type Virtual 91328 remote_ip 5.5.5.196 91329 username forozande 91329 unique_id port 91329 terminate_cause User-Request 91329 bytes_out 66148 91329 bytes_in 345451 91329 station_ip 83.122.7.26 91329 port 15728741 91329 nas_port_type Virtual 91329 remote_ip 5.5.5.194 91338 username caferibar 91338 unique_id port 91338 terminate_cause Lost-Carrier 91338 bytes_out 6230466 91338 bytes_in 136114734 91338 station_ip 5.120.88.155 91338 port 15728732 91338 nas_port_type Virtual 91338 remote_ip 5.5.5.247 91343 username ahmadipour 91343 unique_id port 91343 terminate_cause Lost-Carrier 91343 bytes_out 1876703 91343 bytes_in 42050336 91343 station_ip 83.123.82.211 91343 port 15728750 91343 nas_port_type Virtual 91343 remote_ip 5.5.5.191 91345 username sobhan 91345 unique_id port 91345 terminate_cause User-Request 91345 bytes_out 159853 91345 bytes_in 3001728 91345 station_ip 5.120.54.163 91345 port 15728753 91345 nas_port_type Virtual 91345 remote_ip 5.5.5.189 91347 username caferibar 91347 unique_id port 91347 terminate_cause User-Request 91347 bytes_out 0 91347 bytes_in 0 91347 station_ip 5.62.217.150 91347 port 15728759 91347 nas_port_type Virtual 91347 remote_ip 5.5.5.186 91351 username madadi2 91351 unique_id port 91351 terminate_cause Lost-Carrier 91351 bytes_out 894663 91351 bytes_in 1480295 91351 station_ip 5.119.250.35 91351 port 15728738 91351 nas_port_type Virtual 91351 remote_ip 5.5.5.195 91355 username madadi2 91355 unique_id port 91355 terminate_cause Lost-Carrier 91355 bytes_out 52641 91355 bytes_in 271501 91355 station_ip 5.120.142.172 91355 port 15728760 91355 nas_port_type Virtual 91355 remote_ip 5.5.5.185 91356 username forozande 91356 unique_id port 91356 terminate_cause User-Request 91356 bytes_out 87496 91356 bytes_in 41771 91356 station_ip 37.129.122.4 91356 port 15728765 91356 nas_port_type Virtual 91356 remote_ip 5.5.5.187 91360 username sadegh 91360 unique_id port 91360 terminate_cause User-Request 91360 bytes_out 4722777 91360 bytes_in 80129513 91360 station_ip 5.120.20.74 91360 port 15728764 91360 nas_port_type Virtual 91360 remote_ip 5.5.5.216 91363 username alinezhad 91363 unique_id port 91363 terminate_cause User-Request 91363 bytes_out 0 91363 bytes_in 0 91363 station_ip 5.202.63.26 91363 port 15728769 91363 nas_port_type Virtual 91363 remote_ip 5.5.5.180 91366 username mirzaei 91366 kill_reason Another user logged on this global unique id 91366 mac 91366 bytes_out 0 91332 unique_id port 91332 remote_ip 10.8.0.6 91334 username forozande 91334 unique_id port 91334 terminate_cause User-Request 91334 bytes_out 31458 91334 bytes_in 337154 91334 station_ip 83.122.7.26 91334 port 15728744 91334 nas_port_type Virtual 91334 remote_ip 5.5.5.194 91335 username forozande 91335 unique_id port 91335 terminate_cause User-Request 91335 bytes_out 48867 91335 bytes_in 697358 91335 station_ip 83.122.7.26 91335 port 15728745 91335 nas_port_type Virtual 91335 remote_ip 5.5.5.194 91337 username forozande 91337 unique_id port 91337 terminate_cause User-Request 91337 bytes_out 21172 91337 bytes_in 55108 91337 station_ip 83.122.7.26 91337 port 15728746 91337 nas_port_type Virtual 91337 remote_ip 5.5.5.194 91339 username arabpour 91339 unique_id port 91339 terminate_cause User-Request 91339 bytes_out 422211 91339 bytes_in 9214984 91339 station_ip 83.122.84.6 91339 port 15728748 91339 nas_port_type Virtual 91339 remote_ip 5.5.5.193 91342 username forozande 91342 unique_id port 91342 terminate_cause User-Request 91342 bytes_out 33104 91342 bytes_in 222873 91342 station_ip 113.203.101.87 91342 port 15728752 91342 nas_port_type Virtual 91342 remote_ip 5.5.5.190 91346 username forozande 91346 unique_id port 91346 terminate_cause User-Request 91346 bytes_out 107175 91346 bytes_in 1216426 91346 station_ip 113.203.101.87 91346 port 15728755 91346 nas_port_type Virtual 91346 remote_ip 5.5.5.190 91348 username forozande 91348 unique_id port 91348 terminate_cause User-Request 91348 bytes_out 55307 91348 bytes_in 416518 91348 station_ip 37.129.122.4 91348 port 15728758 91348 nas_port_type Virtual 91348 remote_ip 5.5.5.187 91349 username aminvpn 91349 mac 91349 bytes_out 88017 91349 bytes_in 275818 91349 station_ip 113.203.10.143 91349 port 1 91349 unique_id port 91349 remote_ip 10.8.0.6 91350 username sadegh 91350 unique_id port 91350 terminate_cause Lost-Carrier 91350 bytes_out 24868158 91350 bytes_in 587665432 91350 station_ip 5.120.20.74 91350 port 15728740 91350 nas_port_type Virtual 91350 remote_ip 5.5.5.216 91353 username ahmadi 91353 unique_id port 91353 terminate_cause User-Request 91353 bytes_out 82699 91353 bytes_in 267108 91353 station_ip 83.122.101.99 91353 port 15728761 91353 nas_port_type Virtual 91353 remote_ip 5.5.5.184 91354 username aminvpn 91354 unique_id port 91354 terminate_cause Lost-Carrier 91354 bytes_out 205609 91354 bytes_in 3023933 91354 station_ip 5.119.173.162 91354 port 15728763 91354 nas_port_type Virtual 91354 remote_ip 5.5.5.183 91357 username mirzaei 91357 mac 91357 bytes_out 0 91357 bytes_in 0 91357 station_ip 5.120.99.24 91357 port 2 91357 unique_id port 91359 username forozande 91359 unique_id port 91359 terminate_cause User-Request 91359 bytes_out 27113 91359 bytes_in 182321 91359 station_ip 83.122.235.194 91359 port 15728767 91359 nas_port_type Virtual 91359 remote_ip 5.5.5.182 91362 username mansur 91362 unique_id port 91362 terminate_cause Lost-Carrier 91362 bytes_out 6824818 91362 bytes_in 142049663 91362 station_ip 5.120.22.253 91362 port 15728756 91362 nas_port_type Virtual 91362 remote_ip 5.5.5.246 91364 username asadi 91364 mac 91364 bytes_out 0 91364 bytes_in 0 91364 station_ip 113.203.101.140 91364 port 2 91364 unique_id port 91364 remote_ip 10.8.0.22 91370 username asadi 91370 kill_reason Another user logged on this global unique id 91370 mac 91370 bytes_out 0 91370 bytes_in 0 91370 station_ip 113.203.101.140 91370 port 1 91370 unique_id port 91370 remote_ip 10.8.1.10 91374 username madadi2 91374 unique_id port 91374 terminate_cause Lost-Carrier 91366 bytes_in 0 91366 station_ip 5.119.9.198 91366 port 1 91366 unique_id port 91366 remote_ip 10.8.0.14 91367 username asadi 91367 mac 91367 bytes_out 0 91367 bytes_in 0 91367 station_ip 113.203.101.140 91367 port 2 91367 unique_id port 91367 remote_ip 10.8.0.22 91369 username aminvpn 91369 mac 91369 bytes_out 0 91369 bytes_in 0 91369 station_ip 83.123.127.110 91369 port 2 91369 unique_id port 91369 remote_ip 10.8.1.6 91372 username ahmadi 91372 unique_id port 91372 terminate_cause User-Request 91372 bytes_out 373416 91372 bytes_in 546529 91372 station_ip 83.122.101.99 91372 port 15728778 91372 nas_port_type Virtual 91372 remote_ip 5.5.5.184 91373 username caferibar 91373 unique_id port 91373 terminate_cause User-Request 91373 bytes_out 43192 91373 bytes_in 432354 91373 station_ip 83.122.120.207 91373 port 15728779 91373 nas_port_type Virtual 91373 remote_ip 5.5.5.173 91378 username forozande 91378 unique_id port 91378 terminate_cause User-Request 91378 bytes_out 54954 91378 bytes_in 127538 91378 station_ip 83.122.28.43 91378 port 15728783 91378 nas_port_type Virtual 91378 remote_ip 5.5.5.171 91379 username amirabbas 91379 unique_id port 91379 terminate_cause User-Request 91379 bytes_out 8666835 91379 bytes_in 238609360 91379 station_ip 31.56.217.43 91379 port 15728773 91379 nas_port_type Virtual 91379 remote_ip 5.5.5.177 91380 username alireza1 91380 unique_id port 91380 terminate_cause Lost-Carrier 91380 bytes_out 263637 91380 bytes_in 908241 91380 station_ip 5.119.197.194 91380 port 15728782 91380 nas_port_type Virtual 91380 remote_ip 5.5.5.172 91381 username alinezhad 91381 unique_id port 91381 terminate_cause User-Request 91381 bytes_out 0 91381 bytes_in 0 91381 station_ip 5.202.63.26 91381 port 15728787 91381 nas_port_type Virtual 91381 remote_ip 5.5.5.180 91382 username farhad 91382 unique_id port 91382 terminate_cause User-Request 91382 bytes_out 8134003 91382 bytes_in 218321399 91382 station_ip 5.119.205.124 91382 port 15728775 91382 nas_port_type Virtual 91382 remote_ip 5.5.5.176 91391 username alireza1 91391 unique_id port 91391 terminate_cause Lost-Carrier 91391 bytes_out 151612 91391 bytes_in 634102 91391 station_ip 5.119.155.39 91391 port 15728791 91391 nas_port_type Virtual 91391 remote_ip 5.5.5.170 91394 username heydari 91394 unique_id port 91394 terminate_cause Lost-Carrier 91394 bytes_out 8893382 91394 bytes_in 8157949 91394 station_ip 5.119.41.94 91394 port 15728793 91394 nas_port_type Virtual 91394 remote_ip 5.5.5.166 91397 username mahdixz 91397 unique_id port 91397 terminate_cause User-Request 91397 bytes_out 164111 91397 bytes_in 3658601 91397 station_ip 151.235.104.45 91397 port 15728801 91397 nas_port_type Virtual 91397 remote_ip 5.5.5.161 91400 username forozande 91400 unique_id port 91400 terminate_cause User-Request 91400 bytes_out 30592 91400 bytes_in 126124 91400 station_ip 113.203.88.28 91400 port 15728803 91400 nas_port_type Virtual 91400 remote_ip 5.5.5.160 91403 username forozande 91403 unique_id port 91403 terminate_cause User-Request 91403 bytes_out 0 91403 bytes_in 0 91403 station_ip 83.122.61.101 91403 port 15728805 91403 nas_port_type Virtual 91403 remote_ip 5.5.5.159 91405 username amirabbas 91405 unique_id port 91405 terminate_cause User-Request 91405 bytes_out 3590952 91405 bytes_in 40396586 91405 station_ip 31.56.217.43 91405 port 15728794 91405 nas_port_type Virtual 91405 remote_ip 5.5.5.177 91406 username aminvpn 91406 mac 91406 bytes_out 134607 91406 bytes_in 152007 91406 station_ip 83.123.127.110 91406 port 2 91406 unique_id port 91371 port 15728777 91371 nas_port_type Virtual 91371 remote_ip 5.5.5.174 91375 username mirzaei 91375 kill_reason Another user logged on this global unique id 91375 mac 91375 bytes_out 0 91375 bytes_in 0 91375 station_ip 5.119.9.198 91375 port 1 91375 unique_id port 91376 username mahbobeh 91376 unique_id port 91376 terminate_cause Lost-Carrier 91376 bytes_out 4411832 91376 bytes_in 63918840 91376 station_ip 83.123.178.48 91376 port 15728757 91376 nas_port_type Virtual 91376 remote_ip 5.5.5.188 91377 username alireza1 91377 unique_id port 91377 terminate_cause User-Request 91377 bytes_out 431702 91377 bytes_in 3415311 91377 station_ip 5.119.197.194 91377 port 15728781 91377 nas_port_type Virtual 91377 remote_ip 5.5.5.172 91383 username ahmadi 91383 unique_id port 91383 terminate_cause User-Request 91383 bytes_out 242243 91383 bytes_in 631682 91383 station_ip 83.122.101.99 91383 port 15728784 91383 nas_port_type Virtual 91383 remote_ip 5.5.5.184 91384 username ahmadipour 91384 unique_id port 91384 terminate_cause Lost-Carrier 91384 bytes_out 50210 91384 bytes_in 709862 91384 station_ip 83.123.56.235 91384 port 15728790 91384 nas_port_type Virtual 91384 remote_ip 5.5.5.167 91392 username forozande 91392 unique_id port 91392 terminate_cause User-Request 91392 bytes_out 48932 91392 bytes_in 447541 91392 station_ip 83.122.20.107 91392 port 15728796 91392 nas_port_type Virtual 91392 remote_ip 5.5.5.164 91393 username forozande 91393 unique_id port 91393 terminate_cause User-Request 91393 bytes_out 28303 91393 bytes_in 33165 91393 station_ip 83.122.76.79 91393 port 15728797 91393 nas_port_type Virtual 91393 remote_ip 5.5.5.163 91396 username arabpour 91396 unique_id port 91396 terminate_cause User-Request 91396 bytes_out 336319 91396 bytes_in 9445552 91396 station_ip 113.203.46.29 91396 port 15728799 91396 nas_port_type Virtual 91396 remote_ip 5.5.5.162 91398 username asadi 91398 mac 91398 bytes_out 0 91398 bytes_in 0 91398 station_ip 113.203.101.140 91398 port 1 91398 unique_id port 91399 username aminvpn 91399 mac 91399 bytes_out 0 91399 bytes_in 0 91399 station_ip 83.123.127.110 91399 port 2 91399 unique_id port 91399 remote_ip 10.8.0.6 91401 username sadegh 91401 unique_id port 91401 terminate_cause User-Request 91401 bytes_out 30940243 91401 bytes_in 598789778 91401 station_ip 5.120.20.74 91401 port 15728774 91401 nas_port_type Virtual 91401 remote_ip 5.5.5.216 91402 username madadi2 91402 unique_id port 91402 terminate_cause Lost-Carrier 91402 bytes_out 1979018 91402 bytes_in 10483062 91402 station_ip 5.120.114.42 91402 port 15728789 91402 nas_port_type Virtual 91402 remote_ip 5.5.5.168 91409 username madadi2 91409 unique_id port 91409 terminate_cause Lost-Carrier 91409 bytes_out 447155 91409 bytes_in 14956980 91409 station_ip 5.119.24.213 91409 port 15728806 91409 nas_port_type Virtual 91409 remote_ip 5.5.5.158 91412 username shahrooz 91412 unique_id port 91412 terminate_cause Lost-Carrier 91412 bytes_out 24709168 91412 bytes_in 1968492 91412 station_ip 83.122.234.115 91412 port 15728795 91412 nas_port_type Virtual 91412 remote_ip 5.5.5.165 91413 username arabpour 91413 unique_id port 91413 terminate_cause User-Request 91413 bytes_out 486861 91413 bytes_in 14725228 91413 station_ip 83.122.213.75 91413 port 15728808 91413 nas_port_type Virtual 91413 remote_ip 5.5.5.157 91414 username arabpour 91414 unique_id port 91414 terminate_cause User-Request 91414 bytes_out 566277 91414 bytes_in 19179344 91414 station_ip 83.122.213.75 91414 port 15728812 91414 nas_port_type Virtual 91414 remote_ip 5.5.5.157 91416 username ahmadi 91374 bytes_out 32030 91374 bytes_in 213920 91374 station_ip 5.120.40.232 91374 port 15728776 91374 nas_port_type Virtual 91374 remote_ip 5.5.5.175 91385 username alireza1 91385 unique_id port 91385 terminate_cause User-Request 91385 bytes_out 855335 91385 bytes_in 3310561 91385 station_ip 5.119.155.39 91385 port 15728785 91385 nas_port_type Virtual 91385 remote_ip 5.5.5.170 91386 username madadi2 91386 unique_id port 91386 terminate_cause Lost-Carrier 91386 bytes_out 48126 91386 bytes_in 182552 91386 station_ip 5.120.167.7 91386 port 15728786 91386 nas_port_type Virtual 91386 remote_ip 5.5.5.169 91387 username farhad 91387 unique_id port 91387 terminate_cause User-Request 91387 bytes_out 4123466 91387 bytes_in 88250316 91387 station_ip 5.119.205.124 91387 port 15728788 91387 nas_port_type Virtual 91387 remote_ip 5.5.5.176 91388 username mirzaei 91388 kill_reason Another user logged on this global unique id 91388 mac 91388 bytes_out 0 91388 bytes_in 0 91388 station_ip 5.119.9.198 91388 port 1 91388 unique_id port 91389 username heydari 91389 unique_id port 91389 terminate_cause Lost-Carrier 91389 bytes_out 2199837 91389 bytes_in 63757783 91389 station_ip 5.119.41.94 91389 port 15728772 91389 nas_port_type Virtual 91389 remote_ip 5.5.5.178 91390 username caferibar 91390 unique_id port 91390 terminate_cause Lost-Carrier 91390 bytes_out 31123356 91390 bytes_in 143861112 91390 station_ip 5.120.88.155 91390 port 15728780 91390 nas_port_type Virtual 91390 remote_ip 5.5.5.247 91395 username mahdixz 91395 unique_id port 91395 terminate_cause User-Request 91395 bytes_out 0 91395 bytes_in 0 91395 station_ip 151.235.104.45 91395 port 15728798 91395 nas_port_type Virtual 91395 remote_ip 5.5.5.161 91404 username mahbobeh 91404 unique_id port 91404 terminate_cause Lost-Carrier 91404 bytes_out 495727 91404 bytes_in 4721533 91404 station_ip 83.123.178.48 91404 port 15728792 91404 nas_port_type Virtual 91404 remote_ip 5.5.5.188 91407 username aminvpn 91407 mac 91407 bytes_out 0 91407 bytes_in 0 91407 station_ip 83.123.127.110 91407 port 2 91407 unique_id port 91407 remote_ip 10.8.0.6 91408 username alireza1 91408 unique_id port 91408 terminate_cause User-Request 91408 bytes_out 321355 91408 bytes_in 1026437 91408 station_ip 5.119.155.39 91408 port 15728802 91408 nas_port_type Virtual 91408 remote_ip 5.5.5.170 91410 username aminvpn 91410 mac 91410 bytes_out 50197 91410 bytes_in 48960 91410 station_ip 83.123.127.110 91410 port 2 91410 unique_id port 91410 remote_ip 10.8.0.6 91415 username arabpour 91415 unique_id port 91415 terminate_cause User-Request 91415 bytes_out 478027 91415 bytes_in 17711621 91415 station_ip 83.122.213.75 91415 port 15728813 91415 nas_port_type Virtual 91415 remote_ip 5.5.5.157 91417 username mansur 91417 unique_id port 91417 terminate_cause User-Request 91417 bytes_out 13124453 91417 bytes_in 274415345 91417 station_ip 5.120.22.253 91417 port 15728807 91417 nas_port_type Virtual 91417 remote_ip 5.5.5.246 91418 username forozande 91418 unique_id port 91418 terminate_cause User-Request 91418 bytes_out 165456 91418 bytes_in 2093913 91418 station_ip 37.129.104.22 91418 port 15728815 91418 nas_port_type Virtual 91418 remote_ip 5.5.5.153 91427 username caferibar 91427 unique_id port 91427 terminate_cause Lost-Carrier 91427 bytes_out 292364 91427 bytes_in 9176664 91427 station_ip 5.134.176.87 91427 port 15728826 91427 nas_port_type Virtual 91427 remote_ip 5.5.5.149 91428 username caferibar 91428 kill_reason Maximum check online fails reached 91428 unique_id port 91428 bytes_out 0 91428 bytes_in 0 91428 station_ip 37.129.81.176 91406 remote_ip 10.8.0.6 91411 username sadegh 91411 unique_id port 91411 terminate_cause User-Request 91411 bytes_out 16428330 91411 bytes_in 375778071 91411 station_ip 5.120.20.74 91411 port 15728804 91411 nas_port_type Virtual 91411 remote_ip 5.5.5.216 91419 username forozande 91419 unique_id port 91419 terminate_cause User-Request 91419 bytes_out 93694 91419 bytes_in 1441896 91419 station_ip 37.129.148.70 91419 port 15728818 91419 nas_port_type Virtual 91419 remote_ip 5.5.5.152 91424 username caferibar 91424 unique_id port 91424 terminate_cause Lost-Carrier 91424 bytes_out 478360 91424 bytes_in 6244285 91424 station_ip 89.47.150.79 91424 port 15728823 91424 nas_port_type Virtual 91424 remote_ip 5.5.5.151 91425 username fariba 91425 mac 91425 bytes_out 0 91425 bytes_in 0 91425 station_ip 37.129.193.250 91425 port 3 91425 unique_id port 91425 remote_ip 10.8.0.10 91430 username fariba 91430 mac 91430 bytes_out 0 91430 bytes_in 0 91430 station_ip 83.122.254.70 91430 port 2 91430 unique_id port 91430 remote_ip 10.8.0.10 91433 username aminvpn 91433 mac 91433 bytes_out 100036 91433 bytes_in 959767 91433 station_ip 83.123.127.110 91433 port 1 91433 unique_id port 91433 remote_ip 10.8.1.6 91441 username aminvpn 91441 kill_reason Maximum check online fails reached 91441 unique_id port 91441 bytes_out 0 91441 bytes_in 0 91441 station_ip 5.160.112.105 91441 port 15728837 91441 nas_port_type Virtual 91445 username ahmadipour 91445 unique_id port 91445 terminate_cause Lost-Carrier 91445 bytes_out 327888 91445 bytes_in 3891629 91445 station_ip 83.123.34.219 91445 port 15728844 91445 nas_port_type Virtual 91445 remote_ip 5.5.5.138 91447 username aminvpn 91447 unique_id port 91447 terminate_cause Lost-Carrier 91447 bytes_out 1787691 91447 bytes_in 61556819 91447 station_ip 5.119.55.154 91447 port 15728833 91447 nas_port_type Virtual 91447 remote_ip 5.5.5.145 91449 username farhad 91449 unique_id port 91449 terminate_cause Lost-Carrier 91449 bytes_out 13540794 91449 bytes_in 188272843 91449 station_ip 5.120.117.144 91449 port 15728828 91449 nas_port_type Virtual 91449 remote_ip 5.5.5.147 91450 username forozande 91450 unique_id port 91450 terminate_cause User-Request 91450 bytes_out 28402 91450 bytes_in 54013 91450 station_ip 83.123.4.122 91450 port 15728849 91450 nas_port_type Virtual 91450 remote_ip 5.5.5.140 91452 username forozande 91452 unique_id port 91452 terminate_cause User-Request 91452 bytes_out 10641 91452 bytes_in 33957 91452 station_ip 83.122.225.99 91452 port 15728852 91452 nas_port_type Virtual 91452 remote_ip 5.5.5.134 91457 username avaanna 91457 unique_id port 91457 terminate_cause User-Request 91457 bytes_out 0 91457 bytes_in 0 91457 station_ip 83.122.133.136 91457 port 15728857 91457 nas_port_type Virtual 91457 remote_ip 5.5.5.133 91462 username forozande 91462 unique_id port 91462 terminate_cause User-Request 91462 bytes_out 16932 91462 bytes_in 25182 91462 station_ip 37.129.13.31 91462 port 15728862 91462 nas_port_type Virtual 91462 remote_ip 5.5.5.132 91463 username avaanna 91463 unique_id port 91463 terminate_cause User-Request 91463 bytes_out 0 91463 bytes_in 0 91463 station_ip 83.122.133.136 91463 port 15728863 91463 nas_port_type Virtual 91463 remote_ip 5.5.5.133 91464 username alinezhad 91464 unique_id port 91464 terminate_cause User-Request 91464 bytes_out 0 91464 bytes_in 0 91464 station_ip 5.202.2.67 91464 port 15728864 91464 nas_port_type Virtual 91464 remote_ip 5.5.5.137 91469 username mirzaei 91469 mac 91469 bytes_out 0 91469 bytes_in 0 91469 station_ip 5.119.8.86 91416 unique_id port 91416 terminate_cause User-Request 91416 bytes_out 217096 91416 bytes_in 605497 91416 station_ip 83.122.59.75 91416 port 15728814 91416 nas_port_type Virtual 91416 remote_ip 5.5.5.154 91420 username sadegh 91420 unique_id port 91420 terminate_cause User-Request 91420 bytes_out 10070605 91420 bytes_in 231062540 91420 station_ip 5.120.20.74 91420 port 15728809 91420 nas_port_type Virtual 91420 remote_ip 5.5.5.216 91421 username heydari 91421 unique_id port 91421 terminate_cause User-Request 91421 bytes_out 0 91421 bytes_in 0 91421 station_ip 5.119.41.94 91421 port 15728824 91421 nas_port_type Virtual 91421 remote_ip 5.5.5.166 91422 username kamali 91422 unique_id port 91422 terminate_cause User-Request 91422 bytes_out 502464 91422 bytes_in 946134 91422 station_ip 83.122.138.118 91422 port 15728825 91422 nas_port_type Virtual 91422 remote_ip 5.5.5.150 91423 username aminvpn 91423 mac 91423 bytes_out 0 91423 bytes_in 0 91423 station_ip 83.123.127.110 91423 port 1 91423 unique_id port 91423 remote_ip 10.8.1.6 91426 username caferibar 91426 unique_id port 91426 terminate_cause User-Request 91426 bytes_out 38371 91426 bytes_in 503684 91426 station_ip 37.129.81.176 91426 port 15728829 91426 nas_port_type Virtual 91426 remote_ip 5.5.5.146 91429 username caferibar 91429 unique_id port 91429 terminate_cause User-Request 91429 bytes_out 11427 91429 bytes_in 46329 91429 station_ip 37.129.81.176 91429 port 15728832 91429 nas_port_type Virtual 91429 remote_ip 5.5.5.146 91436 username mirzaei 91436 mac 91436 bytes_out 0 91436 bytes_in 0 91436 station_ip 5.119.8.86 91436 port 1 91436 unique_id port 91436 remote_ip 10.8.1.14 91437 username fariba 91437 mac 91437 bytes_out 2065 91437 bytes_in 7007 91437 station_ip 5.119.71.55 91437 port 2 91437 unique_id port 91437 remote_ip 10.8.0.10 91438 username alireza1 91438 unique_id port 91438 terminate_cause Lost-Carrier 91438 bytes_out 1597557 91438 bytes_in 2271829 91438 station_ip 5.119.155.39 91438 port 15728819 91438 nas_port_type Virtual 91438 remote_ip 5.5.5.170 91439 username alinezhad 91439 unique_id port 91439 terminate_cause Lost-Carrier 91439 bytes_out 4193018 91439 bytes_in 129776130 91439 station_ip 5.202.97.44 91439 port 15728811 91439 nas_port_type Virtual 91439 remote_ip 5.5.5.155 91440 username caferibar 91440 unique_id port 91440 terminate_cause Lost-Carrier 91440 bytes_out 1029417 91440 bytes_in 24680600 91440 station_ip 89.41.196.163 91440 port 15728835 91440 nas_port_type Virtual 91440 remote_ip 5.5.5.143 91442 username aminvpn 91442 mac 91442 bytes_out 598714 91442 bytes_in 1145840 91442 station_ip 83.122.89.156 91442 port 2 91442 unique_id port 91442 remote_ip 10.8.0.6 91444 username madadi2 91444 unique_id port 91444 terminate_cause Lost-Carrier 91444 bytes_out 273228 91444 bytes_in 2097597 91444 station_ip 5.119.54.147 91444 port 15728836 91444 nas_port_type Virtual 91444 remote_ip 5.5.5.142 91446 username madadi2 91446 unique_id port 91446 terminate_cause Lost-Carrier 91446 bytes_out 130336 91446 bytes_in 466835 91446 station_ip 5.119.74.127 91446 port 15728840 91446 nas_port_type Virtual 91446 remote_ip 5.5.5.139 91451 username aminvpn 91451 unique_id port 91451 terminate_cause Lost-Carrier 91451 bytes_out 5648913 91451 bytes_in 95476839 91451 station_ip 5.119.55.154 91451 port 15728810 91451 nas_port_type Virtual 91451 remote_ip 5.5.5.156 91455 username avaanna 91455 unique_id port 91455 terminate_cause User-Request 91455 bytes_out 0 91455 bytes_in 0 91455 station_ip 83.122.133.136 91455 port 15728856 91428 port 15728830 91428 nas_port_type Virtual 91431 username caferibar 91431 unique_id port 91431 terminate_cause Lost-Carrier 91431 bytes_out 224949 91431 bytes_in 5129375 91431 station_ip 89.47.77.131 91431 port 15728827 91431 nas_port_type Virtual 91431 remote_ip 5.5.5.148 91432 username heydari 91432 unique_id port 91432 terminate_cause User-Request 91432 bytes_out 39622 91432 bytes_in 108007 91432 station_ip 5.119.41.94 91432 port 15728831 91432 nas_port_type Virtual 91432 remote_ip 5.5.5.166 91434 username caferibar 91434 unique_id port 91434 terminate_cause Lost-Carrier 91434 bytes_out 136021 91434 bytes_in 3163592 91434 station_ip 89.34.47.222 91434 port 15728834 91434 nas_port_type Virtual 91434 remote_ip 5.5.5.144 91435 username aminvpn 91435 mac 91435 bytes_out 40650 91435 bytes_in 240656 91435 station_ip 83.123.127.110 91435 port 1 91435 unique_id port 91435 remote_ip 10.8.1.6 91443 username forozande 91443 unique_id port 91443 terminate_cause User-Request 91443 bytes_out 236858 91443 bytes_in 572935 91443 station_ip 83.123.4.122 91443 port 15728839 91443 nas_port_type Virtual 91443 remote_ip 5.5.5.140 91448 username alinezhad 91448 unique_id port 91448 terminate_cause User-Request 91448 bytes_out 53244 91448 bytes_in 224973 91448 station_ip 5.202.2.67 91448 port 15728845 91448 nas_port_type Virtual 91448 remote_ip 5.5.5.137 91453 username aminvpn 91453 kill_reason Maximum check online fails reached 91453 unique_id port 91453 bytes_out 2553293 91453 bytes_in 101135449 91453 station_ip 5.160.112.105 91453 port 15728838 91453 nas_port_type Virtual 91453 remote_ip 5.5.5.141 91454 username avaanna 91454 unique_id port 91454 terminate_cause User-Request 91454 bytes_out 0 91454 bytes_in 0 91454 station_ip 83.122.133.136 91454 port 15728854 91454 nas_port_type Virtual 91454 remote_ip 5.5.5.133 91456 username forozande 91456 unique_id port 91456 terminate_cause User-Request 91456 bytes_out 25878 91456 bytes_in 89887 91456 station_ip 37.129.13.31 91456 port 15728855 91456 nas_port_type Virtual 91456 remote_ip 5.5.5.132 91458 username heydari 91458 unique_id port 91458 terminate_cause User-Request 91458 bytes_out 44283 91458 bytes_in 132963 91458 station_ip 5.119.41.94 91458 port 15728858 91458 nas_port_type Virtual 91458 remote_ip 5.5.5.166 91459 username forozande 91459 unique_id port 91459 terminate_cause User-Request 91459 bytes_out 15532 91459 bytes_in 28313 91459 station_ip 37.129.13.31 91459 port 15728860 91459 nas_port_type Virtual 91459 remote_ip 5.5.5.132 91461 username avaanna 91461 unique_id port 91461 terminate_cause User-Request 91461 bytes_out 33216 91461 bytes_in 120261 91461 station_ip 83.122.133.136 91461 port 15728861 91461 nas_port_type Virtual 91461 remote_ip 5.5.5.133 91465 username aminvpn 91465 unique_id port 91465 terminate_cause Lost-Carrier 91465 bytes_out 291531 91465 bytes_in 3451063 91465 station_ip 5.119.238.250 91465 port 15728859 91465 nas_port_type Virtual 91465 remote_ip 5.5.5.131 91466 username alinezhad 91466 unique_id port 91466 terminate_cause User-Request 91466 bytes_out 0 91466 bytes_in 0 91466 station_ip 5.202.2.67 91466 port 15728867 91466 nas_port_type Virtual 91466 remote_ip 5.5.5.137 91470 username aminvpn 91470 unique_id port 91470 terminate_cause Lost-Carrier 91470 bytes_out 6626468 91470 bytes_in 264852627 91470 station_ip 5.160.112.105 91470 port 15728853 91470 nas_port_type Virtual 91470 remote_ip 5.5.5.141 91471 username forozande 91471 unique_id port 91471 terminate_cause User-Request 91471 bytes_out 15139 91471 bytes_in 30047 91471 station_ip 37.129.112.128 91471 port 15728871 91455 nas_port_type Virtual 91455 remote_ip 5.5.5.133 91460 username aminvpn 91460 mac 91460 bytes_out 0 91460 bytes_in 0 91460 station_ip 113.203.9.149 91460 port 3 91460 unique_id port 91460 remote_ip 10.8.0.6 91467 username mirzaei 91467 mac 91467 bytes_out 0 91467 bytes_in 0 91467 station_ip 5.119.8.86 91467 port 1 91467 unique_id port 91467 remote_ip 10.8.0.14 91468 username forozande 91468 unique_id port 91468 terminate_cause User-Request 91468 bytes_out 25096 91468 bytes_in 92126 91468 station_ip 37.129.112.128 91468 port 15728868 91468 nas_port_type Virtual 91468 remote_ip 5.5.5.129 91474 username farhad 91474 unique_id port 91474 terminate_cause Lost-Carrier 91474 bytes_out 7736323 91474 bytes_in 55494047 91474 station_ip 5.119.73.137 91474 port 15728851 91474 nas_port_type Virtual 91474 remote_ip 5.5.5.135 91478 username mirzaei 91478 mac 91478 bytes_out 0 91478 bytes_in 0 91478 station_ip 5.119.82.174 91478 port 1 91478 unique_id port 91478 remote_ip 10.8.1.14 91480 username mirzaei 91480 mac 91480 bytes_out 2156 91480 bytes_in 4835 91480 station_ip 5.119.82.174 91480 port 1 91480 unique_id port 91480 remote_ip 10.8.1.14 91482 username mahbobeh 91482 unique_id port 91482 terminate_cause Lost-Carrier 91482 bytes_out 25625333 91482 bytes_in 449343976 91482 station_ip 83.123.178.48 91482 port 15728817 91482 nas_port_type Virtual 91482 remote_ip 5.5.5.188 91485 username heydari 91485 unique_id port 91485 terminate_cause Lost-Carrier 91485 bytes_out 216650 91485 bytes_in 907284 91485 station_ip 5.119.41.94 91485 port 15728876 91485 nas_port_type Virtual 91485 remote_ip 5.5.5.166 91486 username asadi 91486 mac 91486 bytes_out 2509187 91486 bytes_in 24736845 91486 station_ip 113.203.101.140 91486 port 2 91486 unique_id port 91486 remote_ip 10.8.0.22 91488 username zamanialireza 91488 kill_reason Relative expiration date has reached 91488 unique_id port 91488 bytes_out 0 91488 bytes_in 0 91488 station_ip 94.183.213.166 91488 port 15728886 91488 nas_port_type Virtual 91494 username alinezhad 91494 unique_id port 91494 terminate_cause User-Request 91494 bytes_out 446634 91494 bytes_in 2076316 91494 station_ip 5.202.2.67 91494 port 15728888 91494 nas_port_type Virtual 91494 remote_ip 5.5.5.137 91496 username mansur 91496 unique_id port 91496 terminate_cause User-Request 91496 bytes_out 3939309 91496 bytes_in 77847473 91496 station_ip 5.120.22.253 91496 port 15728884 91496 nas_port_type Virtual 91496 remote_ip 5.5.5.246 91499 username caferibar 91499 unique_id port 91499 terminate_cause Lost-Carrier 91499 bytes_out 1290044 91499 bytes_in 34478615 91499 station_ip 93.114.22.212 91499 port 15728889 91499 nas_port_type Virtual 91499 remote_ip 5.5.5.120 91504 username mirzaei 91504 mac 91504 bytes_out 3536 91504 bytes_in 5938 91504 station_ip 5.113.19.10 91504 port 1 91504 unique_id port 91504 remote_ip 10.8.0.14 91508 username heydari 91508 unique_id port 91508 terminate_cause User-Request 91508 bytes_out 97455 91508 bytes_in 603072 91508 station_ip 5.119.221.41 91508 port 15728894 91508 nas_port_type Virtual 91508 remote_ip 5.5.5.121 91509 username mirzaei 91509 mac 91509 bytes_out 37888 91509 bytes_in 95387 91509 station_ip 5.113.19.10 91509 port 2 91509 unique_id port 91509 remote_ip 10.8.0.14 91512 username madadi2 91512 unique_id port 91512 terminate_cause Lost-Carrier 91512 bytes_out 1941433 91512 bytes_in 5671130 91512 station_ip 5.120.44.184 91512 port 15728869 91512 nas_port_type Virtual 91512 remote_ip 5.5.5.128 91469 port 1 91469 unique_id port 91469 remote_ip 10.8.0.14 91472 username alinezhad 91472 unique_id port 91472 terminate_cause User-Request 91472 bytes_out 0 91472 bytes_in 0 91472 station_ip 5.202.2.67 91472 port 15728872 91472 nas_port_type Virtual 91472 remote_ip 5.5.5.137 91473 username forozande 91473 unique_id port 91473 terminate_cause User-Request 91473 bytes_out 179823 91473 bytes_in 4208221 91473 station_ip 83.123.25.112 91473 port 15728873 91473 nas_port_type Virtual 91473 remote_ip 5.5.5.126 91475 username ahmadi 91475 unique_id port 91475 terminate_cause User-Request 91475 bytes_out 3877658 91475 bytes_in 1698326 91475 station_ip 83.122.43.47 91475 port 15728874 91475 nas_port_type Virtual 91475 remote_ip 5.5.5.125 91476 username avaanna 91476 unique_id port 91476 terminate_cause User-Request 91476 bytes_out 103503 91476 bytes_in 218512 91476 station_ip 83.122.133.136 91476 port 15728875 91476 nas_port_type Virtual 91476 remote_ip 5.5.5.133 91479 username mirzaei 91479 mac 91479 bytes_out 0 91479 bytes_in 0 91479 station_ip 5.119.82.174 91479 port 1 91479 unique_id port 91479 remote_ip 10.8.1.14 91481 username alinezhad 91481 unique_id port 91481 terminate_cause User-Request 91481 bytes_out 15269 91481 bytes_in 41774 91481 station_ip 5.202.2.67 91481 port 15728881 91481 nas_port_type Virtual 91481 remote_ip 5.5.5.137 91483 username ahmadipour 91483 unique_id port 91483 terminate_cause Lost-Carrier 91483 bytes_out 4571370 91483 bytes_in 98899740 91483 station_ip 83.123.41.239 91483 port 15728879 91483 nas_port_type Virtual 91483 remote_ip 5.5.5.124 91484 username alemzadeh 91484 unique_id port 91484 terminate_cause User-Request 91484 bytes_out 472460 91484 bytes_in 8020147 91484 station_ip 83.123.98.252 91484 port 15728883 91484 nas_port_type Virtual 91484 remote_ip 5.5.5.122 91487 username alinezhad 91487 unique_id port 91487 terminate_cause User-Request 91487 bytes_out 390975 91487 bytes_in 4304576 91487 station_ip 5.202.2.67 91487 port 15728885 91487 nas_port_type Virtual 91487 remote_ip 5.5.5.137 91489 username heydari 91489 unique_id port 91489 terminate_cause Lost-Carrier 91489 bytes_out 79070 91489 bytes_in 449693 91489 station_ip 5.119.41.94 91489 port 15728882 91489 nas_port_type Virtual 91489 remote_ip 5.5.5.123 91490 username mirzaei 91490 mac 91490 bytes_out 208851 91490 bytes_in 1356940 91490 station_ip 5.119.82.174 91490 port 1 91490 unique_id port 91490 remote_ip 10.8.0.14 91491 username mirzaei 91491 mac 91491 bytes_out 5218 91491 bytes_in 6508 91491 station_ip 5.119.82.174 91491 port 3 91491 unique_id port 91491 remote_ip 10.8.0.14 91493 username heydari 91493 unique_id port 91493 terminate_cause User-Request 91493 bytes_out 68314 91493 bytes_in 210778 91493 station_ip 5.119.221.41 91493 port 15728887 91493 nas_port_type Virtual 91493 remote_ip 5.5.5.121 91497 username mirzaei 91497 mac 91497 bytes_out 39430 91497 bytes_in 60339 91497 station_ip 5.114.7.164 91497 port 1 91497 unique_id port 91497 remote_ip 10.8.0.14 91498 username mirzaei 91498 mac 91498 bytes_out 0 91498 bytes_in 0 91498 station_ip 5.112.184.16 91498 port 1 91498 unique_id port 91498 remote_ip 10.8.1.14 91500 username asadi 91500 kill_reason Another user logged on this global unique id 91500 mac 91500 bytes_out 0 91500 bytes_in 0 91500 station_ip 113.203.101.140 91500 port 2 91500 unique_id port 91500 remote_ip 10.8.0.22 91501 username caferibar 91501 unique_id port 91501 terminate_cause User-Request 91501 bytes_out 49631 91501 bytes_in 316428 91471 nas_port_type Virtual 91471 remote_ip 5.5.5.129 91477 username mamal 91477 unique_id port 91477 terminate_cause User-Request 91477 bytes_out 8683496 91477 bytes_in 263161163 91477 station_ip 83.123.213.67 91477 port 15728866 91477 nas_port_type Virtual 91477 remote_ip 5.5.5.130 91492 username aminvpn 91492 mac 91492 bytes_out 0 91492 bytes_in 0 91492 station_ip 93.110.104.140 91492 port 1 91492 unique_id port 91492 remote_ip 10.8.0.6 91495 username jamali 91495 unique_id port 91495 terminate_cause User-Request 91495 bytes_out 190282 91495 bytes_in 2300265 91495 station_ip 83.122.204.61 91495 port 15728890 91495 nas_port_type Virtual 91495 remote_ip 5.5.5.119 91502 username asadi 91502 mac 91502 bytes_out 0 91502 bytes_in 0 91502 station_ip 113.203.101.140 91502 port 2 91502 unique_id port 91503 username mirzaei 91503 mac 91503 bytes_out 0 91503 bytes_in 0 91503 station_ip 5.113.19.10 91503 port 1 91503 unique_id port 91503 remote_ip 10.8.1.14 91505 username farhad 91505 unique_id port 91505 terminate_cause User-Request 91505 bytes_out 13314184 91505 bytes_in 153005414 91505 station_ip 5.120.128.162 91505 port 15728870 91505 nas_port_type Virtual 91505 remote_ip 5.5.5.127 91506 username mirzaei 91506 mac 91506 bytes_out 19127 91506 bytes_in 26876 91506 station_ip 5.113.19.10 91506 port 1 91506 unique_id port 91506 remote_ip 10.8.0.14 91507 username khalili 91507 unique_id port 91507 terminate_cause Lost-Carrier 91507 bytes_out 10350391 91507 bytes_in 188561864 91507 station_ip 5.119.69.29 91507 port 15728850 91507 nas_port_type Virtual 91507 remote_ip 5.5.5.136 91510 username mirzaei 91510 mac 91510 bytes_out 14311 91510 bytes_in 12021 91510 station_ip 5.113.19.10 91510 port 1 91510 unique_id port 91510 remote_ip 10.8.0.14 91511 username mirzaei 91511 mac 91511 bytes_out 0 91511 bytes_in 0 91511 station_ip 5.113.19.10 91511 port 2 91511 unique_id port 91511 remote_ip 10.8.0.14 91515 username mammad 91515 unique_id port 91515 terminate_cause User-Request 91515 bytes_out 7546999 91515 bytes_in 102074981 91515 station_ip 2.183.253.188 91515 port 15728892 91515 nas_port_type Virtual 91515 remote_ip 5.5.5.117 91517 username bcboard 91517 unique_id port 91517 terminate_cause User-Request 91517 bytes_out 1349758 91517 bytes_in 9742906 91517 station_ip 83.122.39.24 91517 port 15728901 91517 nas_port_type Virtual 91517 remote_ip 5.5.5.111 91519 username shahrooz 91519 unique_id port 91519 terminate_cause Lost-Carrier 91519 bytes_out 746483 91519 bytes_in 12780748 91519 station_ip 83.122.136.79 91519 port 15728898 91519 nas_port_type Virtual 91519 remote_ip 5.5.5.113 91520 username caferibar 91520 unique_id port 91520 terminate_cause User-Request 91520 bytes_out 0 91520 bytes_in 0 91520 station_ip 5.200.113.223 91520 port 15728903 91520 nas_port_type Virtual 91520 remote_ip 5.5.5.109 91522 username afarin 91522 unique_id port 91522 terminate_cause User-Request 91522 bytes_out 1046792 91522 bytes_in 6225081 91522 station_ip 151.238.226.149 91522 port 15728902 91522 nas_port_type Virtual 91522 remote_ip 5.5.5.110 91524 username farhad 91524 unique_id port 91524 terminate_cause User-Request 91524 bytes_out 23251493 91524 bytes_in 56286185 91524 station_ip 5.120.120.21 91524 port 15728899 91524 nas_port_type Virtual 91524 remote_ip 5.5.5.112 91527 username farhad 91527 unique_id port 91527 terminate_cause User-Request 91527 bytes_out 53959069 91527 bytes_in 238021684 91527 station_ip 5.120.37.163 91527 port 15728906 91527 nas_port_type Virtual 91501 station_ip 93.114.18.134 91501 port 15728891 91501 nas_port_type Virtual 91501 remote_ip 5.5.5.118 91516 username farhad 91516 unique_id port 91516 terminate_cause User-Request 91516 bytes_out 10502299 91516 bytes_in 118030789 91516 station_ip 5.120.95.143 91516 port 15728896 91516 nas_port_type Virtual 91516 remote_ip 5.5.5.114 91518 username amirabbas 91518 unique_id port 91518 terminate_cause User-Request 91518 bytes_out 45660128 91518 bytes_in 1407480493 91518 station_ip 151.238.232.252 91518 port 15728895 91518 nas_port_type Virtual 91518 remote_ip 5.5.5.115 91521 username mammad 91521 unique_id port 91521 terminate_cause User-Request 91521 bytes_out 5645534 91521 bytes_in 118872916 91521 station_ip 2.183.253.188 91521 port 15728900 91521 nas_port_type Virtual 91521 remote_ip 5.5.5.117 91523 username caferibar 91523 unique_id port 91523 terminate_cause User-Request 91523 bytes_out 485018 91523 bytes_in 9848807 91523 station_ip 5.62.218.224 91523 port 15728905 91523 nas_port_type Virtual 91523 remote_ip 5.5.5.108 91527 remote_ip 5.5.5.107 91531 username farhad 91531 unique_id port 91531 terminate_cause Lost-Carrier 91531 bytes_out 10365064 91531 bytes_in 33764811 91531 station_ip 5.119.231.130 91531 port 15728909 91531 nas_port_type Virtual 91531 remote_ip 5.5.5.106 91532 username aminvpn 91532 mac 91532 bytes_out 0 91532 bytes_in 0 91532 station_ip 5.250.123.180 91532 port 2 91532 unique_id port 91532 remote_ip 10.8.0.6 91537 username caferibar 91537 unique_id port 91537 terminate_cause Admin-Reboot 91537 bytes_out 114519446 91537 bytes_in 462950753 91537 station_ip 5.120.88.155 91537 port 15728816 91537 nas_port_type Virtual 91537 remote_ip 5.5.5.247 91539 username alinezhad 91539 unique_id port 91539 terminate_cause User-Request 91539 bytes_out 0 91539 bytes_in 0 91539 station_ip 5.202.2.67 91539 port 15728643 91539 nas_port_type Virtual 91539 remote_ip 5.5.5.254 91545 username forozande 91545 unique_id port 91545 terminate_cause User-Request 91545 bytes_out 50979 91545 bytes_in 435993 91545 station_ip 37.129.6.175 91545 port 15728649 91545 nas_port_type Virtual 91545 remote_ip 5.5.5.255 91546 username aminvpn 91546 mac 91546 bytes_out 0 91546 bytes_in 0 91546 station_ip 5.250.19.200 91546 port 2 91546 unique_id port 91546 remote_ip 10.8.0.6 91547 username aminvpn 91547 unique_id port 91547 terminate_cause Lost-Carrier 91547 bytes_out 732162 91547 bytes_in 5018624 91547 station_ip 5.119.48.67 91547 port 15728650 91547 nas_port_type Virtual 91547 remote_ip 5.5.5.252 91548 username ahmadi 91548 unique_id port 91548 terminate_cause User-Request 91548 bytes_out 65284 91548 bytes_in 345500 91548 station_ip 83.122.101.99 91548 port 15728653 91548 nas_port_type Virtual 91548 remote_ip 5.5.5.251 91550 username alinezhad 91550 unique_id port 91550 terminate_cause User-Request 91550 bytes_out 0 91550 bytes_in 0 91550 station_ip 5.202.2.67 91550 port 15728657 91550 nas_port_type Virtual 91550 remote_ip 5.5.5.254 91553 username asadi 91553 kill_reason Another user logged on this global unique id 91553 mac 91553 bytes_out 0 91553 bytes_in 0 91553 station_ip 113.203.7.86 91553 port 3 91553 unique_id port 91558 username asadi 91558 mac 91558 bytes_out 0 91558 bytes_in 0 91558 station_ip 113.203.7.86 91558 port 3 91558 unique_id port 91561 username asadi 91561 mac 91561 bytes_out 0 91561 bytes_in 0 91561 station_ip 113.203.7.86 91561 port 2 91561 unique_id port 91561 remote_ip 10.8.0.22 91563 username mirzaei 91563 kill_reason Another user logged on this global unique id 91563 mac 91513 username mirzaei 91513 mac 91513 bytes_out 17339 91513 bytes_in 35980 91513 station_ip 5.112.10.246 91513 port 1 91513 unique_id port 91513 remote_ip 10.8.1.14 91514 username mahdixz 91514 unique_id port 91514 terminate_cause User-Request 91514 bytes_out 2630634 91514 bytes_in 43679993 91514 station_ip 151.235.104.45 91514 port 15728897 91514 nas_port_type Virtual 91514 remote_ip 5.5.5.161 91525 username caferibar 91525 unique_id port 91525 terminate_cause User-Request 91525 bytes_out 43806 91525 bytes_in 486858 91525 station_ip 5.62.218.224 91525 port 15728907 91525 nas_port_type Virtual 91525 remote_ip 5.5.5.108 91526 username alinezhad 91526 unique_id port 91526 terminate_cause User-Request 91526 bytes_out 0 91526 bytes_in 0 91526 station_ip 5.202.2.67 91526 port 15728908 91526 nas_port_type Virtual 91526 remote_ip 5.5.5.137 91528 username aminvpn 91528 mac 91528 bytes_out 168845 91528 bytes_in 490506 91528 station_ip 5.250.123.180 91528 port 2 91528 unique_id port 91528 remote_ip 10.8.0.6 91530 username aminvpn 91530 unique_id port 91530 terminate_cause User-Request 91530 bytes_out 70918401 91530 bytes_in 2848757880 91530 station_ip 5.119.40.136 91530 port 15728893 91530 nas_port_type Virtual 91530 remote_ip 5.5.5.116 91533 username madadi2 91533 unique_id port 91533 terminate_cause Lost-Carrier 91533 bytes_out 249908 91533 bytes_in 3546725 91533 station_ip 5.119.115.202 91533 port 15728910 91533 nas_port_type Virtual 91533 remote_ip 5.5.5.105 91534 username caferibar 91534 unique_id port 91534 terminate_cause User-Request 91534 bytes_out 74894 91534 bytes_in 1819506 91534 station_ip 83.122.224.113 91534 port 15728911 91534 nas_port_type Virtual 91534 remote_ip 5.5.5.104 91538 username forozande 91538 unique_id port 91538 terminate_cause User-Request 91538 bytes_out 50093 91538 bytes_in 52685 91538 station_ip 37.129.6.175 91538 port 15728641 91538 nas_port_type Virtual 91538 remote_ip 5.5.5.255 91543 username forozande 91543 unique_id port 91543 terminate_cause User-Request 91543 bytes_out 16408 91543 bytes_in 37732 91543 station_ip 37.129.6.175 91543 port 15728646 91543 nas_port_type Virtual 91543 remote_ip 5.5.5.255 91551 username asadi 91551 kill_reason Another user logged on this global unique id 91551 mac 91551 bytes_out 0 91551 bytes_in 0 91551 station_ip 113.203.7.86 91551 port 3 91551 unique_id port 91551 remote_ip 10.8.0.22 91552 username aminvpn 91552 mac 91552 bytes_out 0 91552 bytes_in 0 91552 station_ip 83.122.145.91 91552 port 2 91552 unique_id port 91552 remote_ip 10.8.0.6 91555 username afarin 91555 unique_id port 91555 terminate_cause User-Request 91555 bytes_out 124860 91555 bytes_in 1758211 91555 station_ip 31.56.157.186 91555 port 15728660 91555 nas_port_type Virtual 91555 remote_ip 5.5.5.247 91559 username asadi 91559 mac 91559 bytes_out 0 91559 bytes_in 0 91559 station_ip 113.203.7.86 91559 port 2 91559 unique_id port 91559 remote_ip 10.8.0.22 91560 username alipour 91560 mac 91560 bytes_out 0 91560 bytes_in 0 91560 station_ip 83.122.39.12 91560 port 5 91560 unique_id port 91560 remote_ip 10.8.0.26 91562 username asadi 91562 unique_id port 91562 terminate_cause User-Request 91562 bytes_out 38676 91562 bytes_in 204701 91562 station_ip 113.203.7.86 91562 port 15728664 91562 nas_port_type Virtual 91562 remote_ip 5.5.5.244 91565 username caferibar 91565 unique_id port 91565 terminate_cause User-Request 91565 bytes_out 0 91565 bytes_in 0 91565 station_ip 94.183.213.166 91565 port 15728666 91565 nas_port_type Virtual 91529 username aminvpn 91529 mac 91529 bytes_out 87274 91529 bytes_in 83700 91529 station_ip 5.250.123.180 91529 port 2 91529 unique_id port 91529 remote_ip 10.8.0.6 91535 username aminvpn 91535 mac 91535 bytes_out 303803 91535 bytes_in 744484 91535 station_ip 158.58.58.147 91535 port 2 91535 unique_id port 91535 remote_ip 10.8.0.6 91536 username aminvpn 91536 mac 91536 bytes_out 0 91536 bytes_in 0 91536 station_ip 158.58.58.147 91536 port 3 91536 unique_id port 91536 remote_ip 10.8.0.6 91540 username forozande 91540 unique_id port 91540 terminate_cause User-Request 91540 bytes_out 150985 91540 bytes_in 1587539 91540 station_ip 37.129.6.175 91540 port 15728642 91540 nas_port_type Virtual 91540 remote_ip 5.5.5.255 91541 username forozande 91541 unique_id port 91541 terminate_cause User-Request 91541 bytes_out 12083 91541 bytes_in 30359 91541 station_ip 37.129.6.175 91541 port 15728644 91541 nas_port_type Virtual 91541 remote_ip 5.5.5.255 91542 username forozande 91542 unique_id port 91542 terminate_cause User-Request 91542 bytes_out 36874 91542 bytes_in 46102 91542 station_ip 37.129.6.175 91542 port 15728645 91542 nas_port_type Virtual 91542 remote_ip 5.5.5.255 91544 username alinezhad 91544 unique_id port 91544 terminate_cause User-Request 91544 bytes_out 25456 91544 bytes_in 112358 91544 station_ip 5.202.2.67 91544 port 15728647 91544 nas_port_type Virtual 91544 remote_ip 5.5.5.254 91549 username alipour 91549 mac 91549 bytes_out 0 91549 bytes_in 0 91549 station_ip 83.122.39.12 91549 port 4 91549 unique_id port 91549 remote_ip 10.8.0.26 91554 username alireza1 91554 unique_id port 91554 terminate_cause Lost-Carrier 91554 bytes_out 2708204 91554 bytes_in 4712027 91554 station_ip 5.119.56.216 91554 port 15728655 91554 nas_port_type Virtual 91554 remote_ip 5.5.5.250 91556 username caferibar 91556 unique_id port 91556 terminate_cause User-Request 91556 bytes_out 0 91556 bytes_in 0 91556 station_ip 83.122.141.212 91556 port 15728661 91556 nas_port_type Virtual 91556 remote_ip 5.5.5.246 91557 username caferibar 91557 unique_id port 91557 terminate_cause User-Request 91557 bytes_out 78014 91557 bytes_in 1588891 91557 station_ip 83.122.141.212 91557 port 15728662 91557 nas_port_type Virtual 91557 remote_ip 5.5.5.246 91564 username alinezhad 91564 unique_id port 91564 terminate_cause User-Request 91564 bytes_out 0 91564 bytes_in 0 91564 station_ip 5.202.2.67 91564 port 15728665 91564 nas_port_type Virtual 91564 remote_ip 5.5.5.254 91573 username asadi 91573 kill_reason Another user logged on this global unique id 91573 mac 91573 bytes_out 0 91573 bytes_in 0 91573 station_ip 113.203.7.86 91573 port 3 91573 unique_id port 91580 username alinezhad 91580 unique_id port 91580 terminate_cause User-Request 91580 bytes_out 0 91580 bytes_in 0 91580 station_ip 5.202.97.127 91580 port 15728673 91580 nas_port_type Virtual 91580 remote_ip 5.5.5.239 91581 username mammad 91581 unique_id port 91581 terminate_cause User-Request 91581 bytes_out 593701 91581 bytes_in 7003777 91581 station_ip 2.183.253.188 91581 port 15728671 91581 nas_port_type Virtual 91581 remote_ip 5.5.5.240 91589 username madadi2 91589 unique_id port 91589 terminate_cause Lost-Carrier 91589 bytes_out 875061 91589 bytes_in 1789912 91589 station_ip 5.120.40.202 91589 port 15728668 91589 nas_port_type Virtual 91589 remote_ip 5.5.5.242 91590 username alipour 91590 kill_reason Maximum check online fails reached 91590 mac 91590 bytes_out 0 91590 bytes_in 0 91590 station_ip 83.122.107.24 91590 port 2 91590 unique_id port 91563 bytes_out 0 91563 bytes_in 0 91563 station_ip 5.119.55.57 91563 port 1 91563 unique_id port 91563 remote_ip 10.8.0.14 91568 username aminvpn 91568 unique_id port 91568 terminate_cause Lost-Carrier 91568 bytes_out 1378678 91568 bytes_in 8961042 91568 station_ip 5.119.54.135 91568 port 15728648 91568 nas_port_type Virtual 91568 remote_ip 5.5.5.253 91571 username alipour 91571 mac 91571 bytes_out 447323 91571 bytes_in 6226410 91571 station_ip 83.122.107.24 91571 port 2 91571 unique_id port 91571 remote_ip 10.8.0.26 91576 username asadi 91576 mac 91576 bytes_out 0 91576 bytes_in 0 91576 station_ip 113.203.7.86 91576 port 3 91576 unique_id port 91582 username asadi 91582 mac 91582 bytes_out 0 91582 bytes_in 0 91582 station_ip 113.203.7.86 91582 port 3 91582 unique_id port 91582 remote_ip 10.8.0.22 91584 username forozande 91584 unique_id port 91584 terminate_cause User-Request 91584 bytes_out 15133 91584 bytes_in 106054 91584 station_ip 83.122.184.246 91584 port 15728675 91584 nas_port_type Virtual 91584 remote_ip 5.5.5.238 91587 username alipour 91587 mac 91587 bytes_out 0 91587 bytes_in 0 91587 station_ip 83.122.107.24 91587 port 2 91587 unique_id port 91591 username alipour 91591 mac 91591 bytes_out 0 91591 bytes_in 0 91591 station_ip 83.122.107.24 91591 port 1 91591 unique_id port 91591 remote_ip 10.8.1.18 91592 username asadi 91592 mac 91592 bytes_out 0 91592 bytes_in 0 91592 station_ip 113.203.7.86 91592 port 4 91592 unique_id port 91592 remote_ip 10.8.0.22 91594 username alireza1 91594 unique_id port 91594 terminate_cause User-Request 91594 bytes_out 4548817 91594 bytes_in 14966297 91594 station_ip 5.120.186.7 91594 port 15728659 91594 nas_port_type Virtual 91594 remote_ip 5.5.5.248 91600 username mahdixz 91600 unique_id port 91600 terminate_cause User-Request 91600 bytes_out 4406 91600 bytes_in 19793 91600 station_ip 83.123.252.9 91600 port 15728688 91600 nas_port_type Virtual 91600 remote_ip 5.5.5.235 91603 username forozande 91603 unique_id port 91603 terminate_cause User-Request 91603 bytes_out 33225 91603 bytes_in 456798 91603 station_ip 83.123.2.148 91603 port 15728693 91603 nas_port_type Virtual 91603 remote_ip 5.5.5.231 91604 username alipour 91604 mac 91604 bytes_out 0 91604 bytes_in 0 91604 station_ip 83.122.107.24 91604 port 1 91604 unique_id port 91604 remote_ip 10.8.1.18 91608 username alinezhad 91608 unique_id port 91608 terminate_cause User-Request 91608 bytes_out 0 91608 bytes_in 0 91608 station_ip 5.202.97.127 91608 port 15728698 91608 nas_port_type Virtual 91608 remote_ip 5.5.5.239 91609 username shokokian 91609 unique_id port 91609 terminate_cause Lost-Carrier 91609 bytes_out 12571 91609 bytes_in 278933 91609 station_ip 31.59.38.180 91609 port 15728686 91609 nas_port_type Virtual 91609 remote_ip 5.5.5.234 91611 username madadi2 91611 unique_id port 91611 terminate_cause Lost-Carrier 91611 bytes_out 42237 91611 bytes_in 239164 91611 station_ip 5.119.129.67 91611 port 15728696 91611 nas_port_type Virtual 91611 remote_ip 5.5.5.230 91614 username alinezhad 91614 unique_id port 91614 terminate_cause User-Request 91614 bytes_out 0 91614 bytes_in 0 91614 station_ip 5.202.97.127 91614 port 15728699 91614 nas_port_type Virtual 91614 remote_ip 5.5.5.239 91617 username forozande 91617 unique_id port 91617 terminate_cause User-Request 91617 bytes_out 28275 91617 bytes_in 188686 91617 station_ip 37.129.29.118 91617 port 15728701 91617 nas_port_type Virtual 91617 remote_ip 5.5.5.227 91565 remote_ip 5.5.5.243 91566 username caferibar 91566 unique_id port 91566 terminate_cause User-Request 91566 bytes_out 0 91566 bytes_in 0 91566 station_ip 94.183.213.166 91566 port 15728667 91566 nas_port_type Virtual 91566 remote_ip 5.5.5.243 91567 username alipour 91567 mac 91567 bytes_out 0 91567 bytes_in 0 91567 station_ip 83.122.39.12 91567 port 1 91567 unique_id port 91567 remote_ip 10.8.1.18 91569 username aminvpn 91569 unique_id port 91569 terminate_cause User-Request 91569 bytes_out 9724197 91569 bytes_in 101360221 91569 station_ip 5.119.100.249 91569 port 15728656 91569 nas_port_type Virtual 91569 remote_ip 5.5.5.249 91570 username asadi 91570 unique_id port 91570 terminate_cause User-Request 91570 bytes_out 59379 91570 bytes_in 210666 91570 station_ip 113.203.7.86 91570 port 15728669 91570 nas_port_type Virtual 91570 remote_ip 5.5.5.244 91572 username asadi 91572 kill_reason Another user logged on this global unique id 91572 mac 91572 bytes_out 0 91572 bytes_in 0 91572 station_ip 113.203.7.86 91572 port 3 91572 unique_id port 91572 remote_ip 10.8.0.22 91574 username asadi 91574 kill_reason Another user logged on this global unique id 91574 mac 91574 bytes_out 0 91574 bytes_in 0 91574 station_ip 113.203.7.86 91574 port 3 91574 unique_id port 91575 username alipour 91575 mac 91575 bytes_out 0 91575 bytes_in 0 91575 station_ip 83.122.107.24 91575 port 2 91575 unique_id port 91575 remote_ip 10.8.0.26 91577 username kamali 91577 unique_id port 91577 terminate_cause User-Request 91577 bytes_out 160971 91577 bytes_in 2204003 91577 station_ip 83.122.226.230 91577 port 15728670 91577 nas_port_type Virtual 91577 remote_ip 5.5.5.241 91578 username kamali 91578 unique_id port 91578 terminate_cause User-Request 91578 bytes_out 196738 91578 bytes_in 3896515 91578 station_ip 83.122.226.230 91578 port 15728672 91578 nas_port_type Virtual 91578 remote_ip 5.5.5.241 91579 username alipour 91579 mac 91579 bytes_out 116442 91579 bytes_in 1052082 91579 station_ip 83.122.107.24 91579 port 2 91579 unique_id port 91579 remote_ip 10.8.0.26 91583 username forozande 91583 unique_id port 91583 terminate_cause User-Request 91583 bytes_out 23402 91583 bytes_in 46679 91583 station_ip 83.122.184.246 91583 port 15728674 91583 nas_port_type Virtual 91583 remote_ip 5.5.5.238 91585 username forozande 91585 unique_id port 91585 terminate_cause User-Request 91585 bytes_out 0 91585 bytes_in 0 91585 station_ip 83.122.184.246 91585 port 15728676 91585 nas_port_type Virtual 91585 remote_ip 5.5.5.238 91586 username alipour 91586 kill_reason Another user logged on this global unique id 91586 mac 91586 bytes_out 0 91586 bytes_in 0 91586 station_ip 83.122.107.24 91586 port 2 91586 unique_id port 91586 remote_ip 10.8.0.26 91588 username alinezhad 91588 unique_id port 91588 terminate_cause User-Request 91588 bytes_out 0 91588 bytes_in 0 91588 station_ip 5.202.97.127 91588 port 15728677 91588 nas_port_type Virtual 91588 remote_ip 5.5.5.239 91593 username alipour 91593 mac 91593 bytes_out 0 91593 bytes_in 0 91593 station_ip 83.122.107.24 91593 port 1 91593 unique_id port 91593 remote_ip 10.8.1.18 91599 username mahdixz 91599 unique_id port 91599 terminate_cause User-Request 91599 bytes_out 0 91599 bytes_in 0 91599 station_ip 83.123.252.9 91599 port 15728687 91599 nas_port_type Virtual 91599 remote_ip 5.5.5.235 91601 username mahdixz 91601 unique_id port 91601 terminate_cause User-Request 91601 bytes_out 221761 91601 bytes_in 8050898 91601 station_ip 113.203.38.166 91601 port 15728690 91595 username mobina 91595 kill_reason Relative expiration date has reached 91595 unique_id port 91595 bytes_out 0 91595 bytes_in 0 91595 station_ip 5.219.222.67 91595 port 15728678 91595 nas_port_type Virtual 91596 username forozande 91596 unique_id port 91596 terminate_cause User-Request 91596 bytes_out 57163 91596 bytes_in 267614 91596 station_ip 113.203.69.238 91596 port 15728680 91596 nas_port_type Virtual 91596 remote_ip 5.5.5.236 91597 username mahdixz 91597 unique_id port 91597 terminate_cause User-Request 91597 bytes_out 185613 91597 bytes_in 5695459 91597 station_ip 83.123.252.9 91597 port 15728684 91597 nas_port_type Virtual 91597 remote_ip 5.5.5.235 91598 username forozande 91598 unique_id port 91598 terminate_cause User-Request 91598 bytes_out 53066 91598 bytes_in 549752 91598 station_ip 113.203.69.238 91598 port 15728685 91598 nas_port_type Virtual 91598 remote_ip 5.5.5.236 91602 username forozande 91602 unique_id port 91602 terminate_cause User-Request 91602 bytes_out 33678 91602 bytes_in 105322 91602 station_ip 83.123.2.148 91602 port 15728691 91602 nas_port_type Virtual 91602 remote_ip 5.5.5.231 91605 username forozande 91605 unique_id port 91605 terminate_cause User-Request 91605 bytes_out 81323 91605 bytes_in 1212711 91605 station_ip 83.123.2.148 91605 port 15728694 91605 nas_port_type Virtual 91605 remote_ip 5.5.5.231 91607 username mahdixz 91607 unique_id port 91607 terminate_cause Lost-Carrier 91607 bytes_out 18810 91607 bytes_in 145846 91607 station_ip 151.235.104.45 91607 port 15728689 91607 nas_port_type Virtual 91607 remote_ip 5.5.5.233 91610 username alipour 91610 mac 91610 bytes_out 3101624 91610 bytes_in 19372907 91610 station_ip 83.122.107.24 91610 port 1 91610 unique_id port 91610 remote_ip 10.8.1.18 91612 username heydari 91612 unique_id port 91612 terminate_cause User-Request 91612 bytes_out 184324 91612 bytes_in 665697 91612 station_ip 5.119.221.41 91612 port 15728697 91612 nas_port_type Virtual 91612 remote_ip 5.5.5.229 91613 username asadi 91613 mac 91613 bytes_out 0 91613 bytes_in 0 91613 station_ip 113.203.7.86 91613 port 3 91613 unique_id port 91613 remote_ip 10.8.0.22 91619 username asadi 91619 mac 91619 bytes_out 835857 91619 bytes_in 8192225 91619 station_ip 113.203.7.86 91619 port 4 91619 unique_id port 91619 remote_ip 10.8.0.22 91624 username asadi 91624 mac 91624 bytes_out 0 91624 bytes_in 0 91624 station_ip 113.203.7.86 91624 port 1 91624 unique_id port 91624 remote_ip 10.8.1.10 91628 username karamozian 91628 mac 91628 bytes_out 0 91628 bytes_in 0 91628 station_ip 37.129.201.71 91628 port 3 91628 unique_id port 91628 remote_ip 10.8.0.30 91629 username alinezhad 91629 kill_reason Maximum check online fails reached 91629 unique_id port 91629 bytes_out 28519 91629 bytes_in 187775 91629 station_ip 5.202.97.127 91629 port 15728710 91629 nas_port_type Virtual 91629 remote_ip 5.5.5.239 91636 username aminvpn 91636 mac 91636 bytes_out 183003 91636 bytes_in 536077 91636 station_ip 89.198.57.185 91636 port 2 91636 unique_id port 91636 remote_ip 10.8.1.6 91639 username alinezhad 91639 unique_id port 91639 terminate_cause User-Request 91639 bytes_out 0 91639 bytes_in 0 91639 station_ip 5.202.97.127 91639 port 15728715 91639 nas_port_type Virtual 91639 remote_ip 5.5.5.239 91642 username alireza1 91642 unique_id port 91642 terminate_cause User-Request 91642 bytes_out 303250 91642 bytes_in 1154584 91642 station_ip 5.120.186.7 91642 port 15728709 91642 nas_port_type Virtual 91642 remote_ip 5.5.5.248 91645 username aminvpn 91601 nas_port_type Virtual 91601 remote_ip 5.5.5.232 91606 username forozande 91606 unique_id port 91606 terminate_cause User-Request 91606 bytes_out 20587 91606 bytes_in 125893 91606 station_ip 83.123.2.148 91606 port 15728695 91606 nas_port_type Virtual 91606 remote_ip 5.5.5.231 91615 username madadi2 91615 unique_id port 91615 terminate_cause Lost-Carrier 91615 bytes_out 54540 91615 bytes_in 315700 91615 station_ip 5.119.239.3 91615 port 15728700 91615 nas_port_type Virtual 91615 remote_ip 5.5.5.228 91616 username aminvpn 91616 unique_id port 91616 terminate_cause Lost-Carrier 91616 bytes_out 1240963 91616 bytes_in 7139063 91616 station_ip 5.119.0.191 91616 port 15728679 91616 nas_port_type Virtual 91616 remote_ip 5.5.5.237 91618 username alireza1 91618 unique_id port 91618 terminate_cause User-Request 91618 bytes_out 7034730 91618 bytes_in 7931310 91618 station_ip 5.120.186.7 91618 port 15728692 91618 nas_port_type Virtual 91618 remote_ip 5.5.5.248 91621 username karamozian 91621 mac 91621 bytes_out 0 91621 bytes_in 0 91621 station_ip 37.129.201.71 91621 port 4 91621 unique_id port 91621 remote_ip 10.8.0.30 91622 username asadi 91622 mac 91622 bytes_out 0 91622 bytes_in 0 91622 station_ip 113.203.7.86 91622 port 3 91622 unique_id port 91622 remote_ip 10.8.0.22 91625 username forozande 91625 unique_id port 91625 terminate_cause User-Request 91625 bytes_out 205543 91625 bytes_in 4936840 91625 station_ip 83.122.188.75 91625 port 15728705 91625 nas_port_type Virtual 91625 remote_ip 5.5.5.223 91627 username alinezhad 91627 unique_id port 91627 terminate_cause User-Request 91627 bytes_out 0 91627 bytes_in 0 91627 station_ip 5.202.97.127 91627 port 15728708 91627 nas_port_type Virtual 91627 remote_ip 5.5.5.239 91635 username aminvpn 91635 unique_id port 91635 terminate_cause User-Request 91635 bytes_out 0 91635 bytes_in 0 91635 station_ip 5.119.225.106 91635 port 15728713 91635 nas_port_type Virtual 91635 remote_ip 5.5.5.219 91637 username shokokian 91637 unique_id port 91637 terminate_cause Lost-Carrier 91637 bytes_out 238411 91637 bytes_in 1214867 91637 station_ip 151.238.245.6 91637 port 15728704 91637 nas_port_type Virtual 91637 remote_ip 5.5.5.224 91638 username alinezhad 91638 unique_id port 91638 terminate_cause User-Request 91638 bytes_out 0 91638 bytes_in 0 91638 station_ip 5.202.97.127 91638 port 15728714 91638 nas_port_type Virtual 91638 remote_ip 5.5.5.239 91640 username aminvpn 91640 mac 91640 bytes_out 156481 91640 bytes_in 426625 91640 station_ip 89.198.57.185 91640 port 2 91640 unique_id port 91640 remote_ip 10.8.1.6 91644 username forozande 91644 unique_id port 91644 terminate_cause User-Request 91644 bytes_out 0 91644 bytes_in 0 91644 station_ip 37.129.7.240 91644 port 15728719 91644 nas_port_type Virtual 91644 remote_ip 5.5.5.216 91656 username forozande 91656 unique_id port 91656 terminate_cause User-Request 91656 bytes_out 28129 91656 bytes_in 224960 91656 station_ip 83.123.90.157 91656 port 15728729 91656 nas_port_type Virtual 91656 remote_ip 5.5.5.210 91662 username aminvpn 91662 mac 91662 bytes_out 0 91662 bytes_in 0 91662 station_ip 83.122.63.110 91662 port 5 91662 unique_id port 91662 remote_ip 10.8.0.6 91663 username aminvpn 91663 mac 91663 bytes_out 0 91663 bytes_in 0 91663 station_ip 86.55.255.169 91663 port 3 91663 unique_id port 91663 remote_ip 10.8.0.6 91666 username aminvpn 91666 unique_id port 91666 terminate_cause User-Request 91666 bytes_out 15250569 91666 bytes_in 486162862 91666 station_ip 5.119.40.136 91620 username madadi2 91620 unique_id port 91620 terminate_cause Lost-Carrier 91620 bytes_out 911505 91620 bytes_in 5540984 91620 station_ip 5.119.51.55 91620 port 15728702 91620 nas_port_type Virtual 91620 remote_ip 5.5.5.226 91623 username asadi 91623 mac 91623 bytes_out 0 91623 bytes_in 0 91623 station_ip 113.203.7.86 91623 port 1 91623 unique_id port 91623 remote_ip 10.8.1.10 91626 username ahmadipour 91626 unique_id port 91626 terminate_cause Lost-Carrier 91626 bytes_out 10703 91626 bytes_in 17415 91626 station_ip 83.123.63.150 91626 port 15728707 91626 nas_port_type Virtual 91626 remote_ip 5.5.5.221 91630 username asadi 91630 mac 91630 bytes_out 0 91630 bytes_in 0 91630 station_ip 113.203.7.86 91630 port 1 91630 unique_id port 91630 remote_ip 10.8.1.10 91631 username asadi 91631 mac 91631 bytes_out 330448 91631 bytes_in 9818484 91631 station_ip 113.203.7.86 91631 port 1 91631 unique_id port 91631 remote_ip 10.8.1.10 91632 username aminvpn 91632 mac 91632 bytes_out 0 91632 bytes_in 0 91632 station_ip 89.198.57.185 91632 port 3 91632 unique_id port 91632 remote_ip 10.8.0.6 91633 username farhad 91633 unique_id port 91633 terminate_cause User-Request 91633 bytes_out 0 91633 bytes_in 0 91633 station_ip 5.119.89.43 91633 port 15728711 91633 nas_port_type Virtual 91633 remote_ip 5.5.5.220 91634 username aminvpn 91634 mac 91634 bytes_out 0 91634 bytes_in 0 91634 station_ip 89.198.57.185 91634 port 2 91634 unique_id port 91634 remote_ip 10.8.1.6 91641 username asadi 91641 mac 91641 bytes_out 3329813 91641 bytes_in 19723170 91641 station_ip 113.203.7.86 91641 port 1 91641 unique_id port 91641 remote_ip 10.8.1.10 91643 username caferibar 91643 unique_id port 91643 terminate_cause User-Request 91643 bytes_out 70607 91643 bytes_in 772446 91643 station_ip 83.123.222.109 91643 port 15728716 91643 nas_port_type Virtual 91643 remote_ip 5.5.5.218 91647 username khalili 91647 unique_id port 91647 terminate_cause Lost-Carrier 91647 bytes_out 3894816 91647 bytes_in 83092737 91647 station_ip 5.120.183.207 91647 port 15728663 91647 nas_port_type Virtual 91647 remote_ip 5.5.5.245 91650 username alinezhad 91650 unique_id port 91650 terminate_cause User-Request 91650 bytes_out 264509 91650 bytes_in 1515626 91650 station_ip 5.202.97.127 91650 port 15728723 91650 nas_port_type Virtual 91650 remote_ip 5.5.5.239 91651 username amirabbas 91651 unique_id port 91651 terminate_cause Lost-Carrier 91651 bytes_out 22201 91651 bytes_in 182145 91651 station_ip 31.56.112.244 91651 port 15728724 91651 nas_port_type Virtual 91651 remote_ip 5.5.5.213 91654 username forozande 91654 unique_id port 91654 terminate_cause User-Request 91654 bytes_out 54123 91654 bytes_in 126181 91654 station_ip 83.123.90.157 91654 port 15728728 91654 nas_port_type Virtual 91654 remote_ip 5.5.5.210 91655 username aminvpn 91655 mac 91655 bytes_out 0 91655 bytes_in 0 91655 station_ip 89.198.57.185 91655 port 5 91655 unique_id port 91655 remote_ip 10.8.0.6 91657 username ahmadipour 91657 unique_id port 91657 terminate_cause Lost-Carrier 91657 bytes_out 1834661 91657 bytes_in 40717984 91657 station_ip 83.123.247.224 91657 port 15728726 91657 nas_port_type Virtual 91657 remote_ip 5.5.5.211 91658 username fariba 91658 mac 91658 bytes_out 0 91658 bytes_in 0 91658 station_ip 5.119.92.254 91658 port 5 91658 unique_id port 91658 remote_ip 10.8.0.10 91659 username aminvpn 91659 mac 91659 bytes_out 85538 91659 bytes_in 196626 91645 mac 91645 bytes_out 3344260 91645 bytes_in 19738089 91645 station_ip 89.198.57.185 91645 port 1 91645 unique_id port 91645 remote_ip 10.8.1.6 91646 username heydari 91646 unique_id port 91646 terminate_cause User-Request 91646 bytes_out 156387 91646 bytes_in 547043 91646 station_ip 5.119.221.41 91646 port 15728718 91646 nas_port_type Virtual 91646 remote_ip 5.5.5.229 91648 username alireza1 91648 unique_id port 91648 terminate_cause User-Request 91648 bytes_out 489606 91648 bytes_in 12479427 91648 station_ip 5.120.186.7 91648 port 15728720 91648 nas_port_type Virtual 91648 remote_ip 5.5.5.248 91649 username forozande 91649 unique_id port 91649 terminate_cause User-Request 91649 bytes_out 82287 91649 bytes_in 921741 91649 station_ip 113.203.30.155 91649 port 15728721 91649 nas_port_type Virtual 91649 remote_ip 5.5.5.215 91652 username aminvpn 91652 mac 91652 bytes_out 3493552 91652 bytes_in 20301025 91652 station_ip 89.198.57.185 91652 port 1 91652 unique_id port 91652 remote_ip 10.8.1.6 91653 username aminvpn 91653 mac 91653 bytes_out 0 91653 bytes_in 0 91653 station_ip 89.198.57.185 91653 port 3 91653 unique_id port 91653 remote_ip 10.8.0.6 91660 username aminvpn 91660 mac 91660 bytes_out 0 91660 bytes_in 0 91660 station_ip 83.122.63.110 91660 port 5 91660 unique_id port 91660 remote_ip 10.8.0.6 91661 username aminvpn 91661 mac 91661 bytes_out 0 91661 bytes_in 0 91661 station_ip 86.55.255.169 91661 port 3 91661 unique_id port 91661 remote_ip 10.8.0.6 91670 username ahmadi 91670 unique_id port 91670 terminate_cause User-Request 91670 bytes_out 137095 91670 bytes_in 1007236 91670 station_ip 83.123.194.169 91670 port 15728730 91670 nas_port_type Virtual 91670 remote_ip 5.5.5.209 91674 username asadi 91674 kill_reason Another user logged on this global unique id 91674 mac 91674 bytes_out 0 91674 bytes_in 0 91674 station_ip 113.203.60.131 91674 port 4 91674 unique_id port 91674 remote_ip 10.8.0.22 91676 username aminvpn 91676 mac 91676 bytes_out 0 91676 bytes_in 0 91676 station_ip 86.55.255.169 91676 port 3 91676 unique_id port 91676 remote_ip 10.8.0.6 91677 username aminvpn 91677 mac 91677 bytes_out 0 91677 bytes_in 0 91677 station_ip 83.122.63.110 91677 port 5 91677 unique_id port 91677 remote_ip 10.8.0.6 91679 username aminvpn 91679 mac 91679 bytes_out 0 91679 bytes_in 0 91679 station_ip 83.122.63.110 91679 port 5 91679 unique_id port 91679 remote_ip 10.8.0.6 91681 username aminvpn 91681 mac 91681 bytes_out 0 91681 bytes_in 0 91681 station_ip 83.122.63.110 91681 port 5 91681 unique_id port 91681 remote_ip 10.8.0.6 91682 username aminvpn 91682 mac 91682 bytes_out 0 91682 bytes_in 0 91682 station_ip 86.55.255.169 91682 port 3 91682 unique_id port 91682 remote_ip 10.8.0.6 91685 username amirabbas 91685 unique_id port 91685 terminate_cause User-Request 91685 bytes_out 29074066 91685 bytes_in 893932568 91685 station_ip 31.56.112.244 91685 port 15728725 91685 nas_port_type Virtual 91685 remote_ip 5.5.5.212 91687 username aminvpn 91687 mac 91687 bytes_out 0 91687 bytes_in 0 91687 station_ip 86.55.255.169 91687 port 3 91687 unique_id port 91687 remote_ip 10.8.0.6 91688 username aminvpn 91688 mac 91688 bytes_out 0 91688 bytes_in 0 91688 station_ip 83.122.63.110 91688 port 4 91688 unique_id port 91688 remote_ip 10.8.0.6 91691 username aminvpn 91691 mac 91691 bytes_out 0 91659 station_ip 86.55.255.169 91659 port 3 91659 unique_id port 91659 remote_ip 10.8.0.6 91664 username aminvpn 91664 mac 91664 bytes_out 0 91664 bytes_in 0 91664 station_ip 83.122.63.110 91664 port 5 91664 unique_id port 91664 remote_ip 10.8.0.6 91665 username aminvpn 91665 mac 91665 bytes_out 0 91665 bytes_in 0 91665 station_ip 86.55.255.169 91665 port 3 91665 unique_id port 91665 remote_ip 10.8.0.6 91667 username aminvpn 91667 mac 91667 bytes_out 0 91667 bytes_in 0 91667 station_ip 83.122.63.110 91667 port 5 91667 unique_id port 91667 remote_ip 10.8.0.6 91668 username aminvpn 91668 mac 91668 bytes_out 0 91668 bytes_in 0 91668 station_ip 86.55.255.169 91668 port 3 91668 unique_id port 91668 remote_ip 10.8.0.6 91673 username aminvpn 91673 mac 91673 bytes_out 0 91673 bytes_in 0 91673 station_ip 86.55.255.169 91673 port 3 91673 unique_id port 91673 remote_ip 10.8.0.6 91675 username aminvpn 91675 mac 91675 bytes_out 0 91675 bytes_in 0 91675 station_ip 83.122.63.110 91675 port 5 91675 unique_id port 91675 remote_ip 10.8.0.6 91678 username aminvpn 91678 mac 91678 bytes_out 0 91678 bytes_in 0 91678 station_ip 86.55.255.169 91678 port 3 91678 unique_id port 91678 remote_ip 10.8.0.6 91680 username aminvpn 91680 mac 91680 bytes_out 0 91680 bytes_in 0 91680 station_ip 86.55.255.169 91680 port 3 91680 unique_id port 91680 remote_ip 10.8.0.6 91686 username asadi 91686 mac 91686 bytes_out 0 91686 bytes_in 0 91686 station_ip 113.203.60.131 91686 port 4 91686 unique_id port 91698 username aminvpn 91698 mac 91698 bytes_out 0 91698 bytes_in 0 91698 station_ip 83.122.63.110 91698 port 4 91698 unique_id port 91698 remote_ip 10.8.0.6 91699 username aminvpn 91699 mac 91699 bytes_out 0 91699 bytes_in 0 91699 station_ip 86.55.255.169 91699 port 3 91699 unique_id port 91699 remote_ip 10.8.0.6 91701 username aminvpn 91701 mac 91701 bytes_out 0 91701 bytes_in 0 91701 station_ip 86.55.255.169 91701 port 3 91701 unique_id port 91701 remote_ip 10.8.0.6 91706 username aminvpn 91706 mac 91706 bytes_out 0 91706 bytes_in 0 91706 station_ip 86.55.255.169 91706 port 3 91706 unique_id port 91706 remote_ip 10.8.0.6 91707 username aminvpn 91707 mac 91707 bytes_out 0 91707 bytes_in 0 91707 station_ip 83.122.63.110 91707 port 4 91707 unique_id port 91707 remote_ip 10.8.0.6 91708 username aminvpn 91708 mac 91708 bytes_out 0 91708 bytes_in 0 91708 station_ip 86.55.255.169 91708 port 3 91708 unique_id port 91708 remote_ip 10.8.0.6 91717 username heydari 91717 unique_id port 91717 terminate_cause User-Request 91717 bytes_out 110354 91717 bytes_in 481182 91717 station_ip 5.119.221.41 91717 port 15728736 91717 nas_port_type Virtual 91717 remote_ip 5.5.5.229 91720 username aminvpn 91720 mac 91720 bytes_out 1667074 91720 bytes_in 16618927 91720 station_ip 86.55.255.169 91720 port 3 91720 unique_id port 91720 remote_ip 10.8.0.6 91726 username alinezhad 91726 unique_id port 91726 terminate_cause User-Request 91726 bytes_out 0 91726 bytes_in 0 91726 station_ip 5.202.97.127 91726 port 15728741 91726 nas_port_type Virtual 91726 remote_ip 5.5.5.239 91728 username asadi 91728 mac 91728 bytes_out 3819873 91728 bytes_in 21209312 91728 station_ip 113.203.60.131 91728 port 1 91728 unique_id port 91666 port 15728703 91666 nas_port_type Virtual 91666 remote_ip 5.5.5.225 91669 username aminvpn 91669 mac 91669 bytes_out 0 91669 bytes_in 0 91669 station_ip 83.122.63.110 91669 port 5 91669 unique_id port 91669 remote_ip 10.8.0.6 91671 username aminvpn 91671 mac 91671 bytes_out 0 91671 bytes_in 0 91671 station_ip 86.55.255.169 91671 port 3 91671 unique_id port 91671 remote_ip 10.8.0.6 91672 username aminvpn 91672 mac 91672 bytes_out 0 91672 bytes_in 0 91672 station_ip 83.122.63.110 91672 port 5 91672 unique_id port 91672 remote_ip 10.8.0.6 91683 username caferibar 91683 unique_id port 91683 terminate_cause Lost-Carrier 91683 bytes_out 1180474 91683 bytes_in 26670312 91683 station_ip 37.153.186.244 91683 port 15728722 91683 nas_port_type Virtual 91683 remote_ip 5.5.5.214 91684 username aminvpn 91684 mac 91684 bytes_out 0 91684 bytes_in 0 91684 station_ip 83.122.63.110 91684 port 5 91684 unique_id port 91684 remote_ip 10.8.0.6 91689 username aminvpn 91689 mac 91689 bytes_out 0 91689 bytes_in 0 91689 station_ip 86.55.255.169 91689 port 3 91689 unique_id port 91689 remote_ip 10.8.0.6 91690 username aminvpn 91690 mac 91690 bytes_out 0 91690 bytes_in 0 91690 station_ip 83.122.63.110 91690 port 4 91690 unique_id port 91690 remote_ip 10.8.0.6 91693 username aminvpn 91693 mac 91693 bytes_out 0 91693 bytes_in 0 91693 station_ip 83.122.63.110 91693 port 4 91693 unique_id port 91693 remote_ip 10.8.0.6 91696 username aminvpn 91696 mac 91696 bytes_out 0 91696 bytes_in 0 91696 station_ip 83.122.63.110 91696 port 4 91696 unique_id port 91696 remote_ip 10.8.0.6 91697 username aminvpn 91697 mac 91697 bytes_out 0 91697 bytes_in 0 91697 station_ip 86.55.255.169 91697 port 3 91697 unique_id port 91697 remote_ip 10.8.0.6 91702 username aminvpn 91702 mac 91702 bytes_out 0 91702 bytes_in 0 91702 station_ip 83.122.63.110 91702 port 4 91702 unique_id port 91702 remote_ip 10.8.0.6 91704 username aminvpn 91704 mac 91704 bytes_out 0 91704 bytes_in 0 91704 station_ip 86.55.255.169 91704 port 3 91704 unique_id port 91704 remote_ip 10.8.0.6 91705 username aminvpn 91705 mac 91705 bytes_out 0 91705 bytes_in 0 91705 station_ip 83.122.63.110 91705 port 4 91705 unique_id port 91705 remote_ip 10.8.0.6 91711 username aminvpn 91711 mac 91711 bytes_out 0 91711 bytes_in 0 91711 station_ip 83.122.63.110 91711 port 4 91711 unique_id port 91711 remote_ip 10.8.0.6 91713 username aminvpn 91713 mac 91713 bytes_out 0 91713 bytes_in 0 91713 station_ip 83.122.63.110 91713 port 4 91713 unique_id port 91713 remote_ip 10.8.0.6 91714 username aminvpn 91714 mac 91714 bytes_out 0 91714 bytes_in 0 91714 station_ip 86.55.255.169 91714 port 3 91714 unique_id port 91714 remote_ip 10.8.0.6 91715 username aminvpn 91715 mac 91715 bytes_out 0 91715 bytes_in 0 91715 station_ip 83.122.63.110 91715 port 4 91715 unique_id port 91715 remote_ip 10.8.0.6 91716 username aminvpn 91716 mac 91716 bytes_out 41708 91716 bytes_in 59173 91716 station_ip 86.55.255.169 91716 port 3 91716 unique_id port 91716 remote_ip 10.8.0.6 91718 username aminvpn 91718 unique_id port 91718 terminate_cause Lost-Carrier 91718 bytes_out 5256390 91718 bytes_in 362723835 91718 station_ip 5.119.40.136 91718 port 15728731 91718 nas_port_type Virtual 91691 bytes_in 0 91691 station_ip 86.55.255.169 91691 port 3 91691 unique_id port 91691 remote_ip 10.8.0.6 91692 username alinezhad 91692 unique_id port 91692 terminate_cause User-Request 91692 bytes_out 0 91692 bytes_in 0 91692 station_ip 5.202.97.127 91692 port 15728734 91692 nas_port_type Virtual 91692 remote_ip 5.5.5.239 91694 username caferibar 91694 unique_id port 91694 terminate_cause Lost-Carrier 91694 bytes_out 7568530 91694 bytes_in 226837675 91694 station_ip 5.119.46.223 91694 port 15728717 91694 nas_port_type Virtual 91694 remote_ip 5.5.5.217 91695 username aminvpn 91695 mac 91695 bytes_out 0 91695 bytes_in 0 91695 station_ip 86.55.255.169 91695 port 3 91695 unique_id port 91695 remote_ip 10.8.0.6 91700 username aminvpn 91700 mac 91700 bytes_out 0 91700 bytes_in 0 91700 station_ip 83.122.63.110 91700 port 4 91700 unique_id port 91700 remote_ip 10.8.0.6 91703 username alinezhad 91703 unique_id port 91703 terminate_cause User-Request 91703 bytes_out 0 91703 bytes_in 0 91703 station_ip 5.202.97.127 91703 port 15728735 91703 nas_port_type Virtual 91703 remote_ip 5.5.5.239 91709 username aminvpn 91709 mac 91709 bytes_out 0 91709 bytes_in 0 91709 station_ip 83.122.63.110 91709 port 4 91709 unique_id port 91709 remote_ip 10.8.0.6 91710 username aminvpn 91710 mac 91710 bytes_out 0 91710 bytes_in 0 91710 station_ip 86.55.255.169 91710 port 3 91710 unique_id port 91710 remote_ip 10.8.0.6 91712 username aminvpn 91712 mac 91712 bytes_out 0 91712 bytes_in 0 91712 station_ip 86.55.255.169 91712 port 3 91712 unique_id port 91712 remote_ip 10.8.0.6 91719 username aminvpn 91719 unique_id port 91719 terminate_cause Lost-Carrier 91719 bytes_out 808535 91719 bytes_in 7820006 91719 station_ip 5.119.90.51 91719 port 15728738 91719 nas_port_type Virtual 91719 remote_ip 5.5.5.206 91722 username madadi2 91722 unique_id port 91722 terminate_cause Lost-Carrier 91722 bytes_out 3979528 91722 bytes_in 33608497 91722 station_ip 5.119.184.156 91722 port 15728706 91722 nas_port_type Virtual 91722 remote_ip 5.5.5.222 91723 username alireza1 91723 unique_id port 91723 terminate_cause Lost-Carrier 91723 bytes_out 77881118 91723 bytes_in 5482730 91723 station_ip 5.120.186.7 91723 port 15728727 91723 nas_port_type Virtual 91723 remote_ip 5.5.5.248 91731 username jamali 91731 unique_id port 91731 terminate_cause User-Request 91731 bytes_out 516178 91731 bytes_in 9323781 91731 station_ip 83.122.132.29 91731 port 15728745 91731 nas_port_type Virtual 91731 remote_ip 5.5.5.203 91733 username asadi 91733 kill_reason Another user logged on this global unique id 91733 mac 91733 bytes_out 0 91733 bytes_in 0 91733 station_ip 113.203.60.131 91733 port 4 91733 unique_id port 91733 remote_ip 10.8.0.22 91737 username forozande 91737 unique_id port 91737 terminate_cause User-Request 91737 bytes_out 14740 91737 bytes_in 53852 91737 station_ip 83.122.50.241 91737 port 15728748 91737 nas_port_type Virtual 91737 remote_ip 5.5.5.202 91740 username farhad 91740 unique_id port 91740 terminate_cause User-Request 91740 bytes_out 0 91740 bytes_in 0 91740 station_ip 5.119.89.43 91740 port 15728750 91740 nas_port_type Virtual 91740 remote_ip 5.5.5.220 91744 username mammad 91744 unique_id port 91744 terminate_cause User-Request 91744 bytes_out 335401 91744 bytes_in 3850914 91744 station_ip 5.233.56.208 91744 port 15728751 91744 nas_port_type Virtual 91744 remote_ip 5.5.5.208 91746 username madadi2 91746 unique_id port 91746 terminate_cause Lost-Carrier 91746 bytes_out 145783 91718 remote_ip 5.5.5.225 91721 username mammad 91721 unique_id port 91721 terminate_cause User-Request 91721 bytes_out 3705274 91721 bytes_in 63138828 91721 station_ip 5.233.56.208 91721 port 15728733 91721 nas_port_type Virtual 91721 remote_ip 5.5.5.208 91724 username alireza1 91724 unique_id port 91724 terminate_cause User-Request 91724 bytes_out 325036 91724 bytes_in 1256504 91724 station_ip 5.120.61.36 91724 port 15728739 91724 nas_port_type Virtual 91724 remote_ip 5.5.5.205 91725 username alinezhad 91725 unique_id port 91725 terminate_cause User-Request 91725 bytes_out 0 91725 bytes_in 0 91725 station_ip 5.202.97.127 91725 port 15728740 91725 nas_port_type Virtual 91725 remote_ip 5.5.5.239 91727 username heydari 91727 kill_reason Maximum check online fails reached 91727 unique_id port 91727 bytes_out 47469 91727 bytes_in 207505 91727 station_ip 5.119.221.41 91727 port 15728743 91727 nas_port_type Virtual 91727 remote_ip 5.5.5.229 91729 username ahmadi 91729 unique_id port 91729 terminate_cause User-Request 91729 bytes_out 0 91729 bytes_in 0 91729 station_ip 83.122.132.136 91729 port 15728744 91729 nas_port_type Virtual 91729 remote_ip 5.5.5.204 91730 username mahdixz 91730 unique_id port 91730 terminate_cause Lost-Carrier 91730 bytes_out 16380396 91730 bytes_in 564353453 91730 station_ip 151.235.104.45 91730 port 15728732 91730 nas_port_type Virtual 91730 remote_ip 5.5.5.233 91732 username mahbobeh 91732 unique_id port 91732 terminate_cause Lost-Carrier 91732 bytes_out 157372 91732 bytes_in 1470419 91732 station_ip 83.122.130.142 91732 port 15728737 91732 nas_port_type Virtual 91732 remote_ip 5.5.5.207 91735 username forozande 91735 unique_id port 91735 terminate_cause User-Request 91735 bytes_out 39127 91735 bytes_in 242903 91735 station_ip 83.122.50.241 91735 port 15728746 91735 nas_port_type Virtual 91735 remote_ip 5.5.5.202 91736 username forozande 91736 unique_id port 91736 terminate_cause User-Request 91736 bytes_out 42228 91736 bytes_in 304705 91736 station_ip 83.122.50.241 91736 port 15728747 91736 nas_port_type Virtual 91736 remote_ip 5.5.5.202 91741 username asadi 91741 mac 91741 bytes_out 0 91741 bytes_in 0 91741 station_ip 113.203.60.131 91741 port 5 91741 unique_id port 91741 remote_ip 10.8.0.22 91742 username forozande 91742 unique_id port 91742 terminate_cause User-Request 91742 bytes_out 37713 91742 bytes_in 118238 91742 station_ip 83.122.50.241 91742 port 15728752 91742 nas_port_type Virtual 91742 remote_ip 5.5.5.202 91743 username farhad 91743 unique_id port 91743 terminate_cause User-Request 91743 bytes_out 0 91743 bytes_in 0 91743 station_ip 5.119.89.43 91743 port 15728753 91743 nas_port_type Virtual 91743 remote_ip 5.5.5.220 91747 username aminvpn 91747 mac 91747 bytes_out 1910370 91747 bytes_in 5759408 91747 station_ip 86.55.255.169 91747 port 3 91747 unique_id port 91747 remote_ip 10.8.0.6 91748 username aminvpn 91748 mac 91748 bytes_out 0 91748 bytes_in 0 91748 station_ip 86.55.255.169 91748 port 3 91748 unique_id port 91748 remote_ip 10.8.0.6 91749 username farhad 91749 unique_id port 91749 terminate_cause Lost-Carrier 91749 bytes_out 2397608 91749 bytes_in 17709842 91749 station_ip 5.119.121.239 91749 port 15728755 91749 nas_port_type Virtual 91749 remote_ip 5.5.5.200 91754 username aminvpn 91754 mac 91754 bytes_out 0 91754 bytes_in 0 91754 station_ip 86.55.255.169 91754 port 3 91754 unique_id port 91754 remote_ip 10.8.0.6 91761 username alinezhad 91761 unique_id port 91761 terminate_cause User-Request 91761 bytes_out 937672 91761 bytes_in 32328831 91728 remote_ip 10.8.1.10 91734 username alireza1 91734 unique_id port 91734 terminate_cause Lost-Carrier 91734 bytes_out 150736 91734 bytes_in 630718 91734 station_ip 5.120.61.36 91734 port 15728742 91734 nas_port_type Virtual 91734 remote_ip 5.5.5.205 91738 username asadi 91738 mac 91738 bytes_out 0 91738 bytes_in 0 91738 station_ip 113.203.60.131 91738 port 4 91738 unique_id port 91739 username farhad 91739 unique_id port 91739 terminate_cause User-Request 91739 bytes_out 25095209 91739 bytes_in 388352283 91739 station_ip 5.119.89.43 91739 port 15728712 91739 nas_port_type Virtual 91739 remote_ip 5.5.5.220 91745 username farhad 91745 unique_id port 91745 terminate_cause Lost-Carrier 91745 bytes_out 486673 91745 bytes_in 3587801 91745 station_ip 5.119.89.43 91745 port 15728754 91745 nas_port_type Virtual 91745 remote_ip 5.5.5.220 91751 username aminvpn 91751 mac 91751 bytes_out 0 91751 bytes_in 0 91751 station_ip 86.55.255.169 91751 port 3 91751 unique_id port 91751 remote_ip 10.8.0.6 91756 username asadi 91756 unique_id port 91756 terminate_cause User-Request 91756 bytes_out 60045 91756 bytes_in 588248 91756 station_ip 113.203.60.131 91756 port 15728763 91756 nas_port_type Virtual 91756 remote_ip 5.5.5.193 91758 username ahmadipour 91758 unique_id port 91758 terminate_cause Lost-Carrier 91758 bytes_out 56571 91758 bytes_in 518976 91758 station_ip 83.123.176.84 91758 port 15728764 91758 nas_port_type Virtual 91758 remote_ip 5.5.5.192 91759 username ksrkrgr 91759 unique_id port 91759 terminate_cause Lost-Carrier 91759 bytes_out 8332 91759 bytes_in 124453 91759 station_ip 78.39.25.127 91759 port 15728761 91759 nas_port_type Virtual 91759 remote_ip 5.5.5.195 91760 username mahbobeh 91760 unique_id port 91760 terminate_cause Lost-Carrier 91760 bytes_out 219519 91760 bytes_in 409269 91760 station_ip 83.122.150.182 91760 port 15728759 91760 nas_port_type Virtual 91760 remote_ip 5.5.5.197 91765 username ahmadipour 91765 unique_id port 91765 terminate_cause Lost-Carrier 91765 bytes_out 1329654 91765 bytes_in 32912257 91765 station_ip 83.123.176.84 91765 port 15728772 91765 nas_port_type Virtual 91765 remote_ip 5.5.5.192 91767 username aminvpn 91767 unique_id port 91767 terminate_cause Lost-Carrier 91767 bytes_out 3545254 91767 bytes_in 86157959 91767 station_ip 5.119.42.178 91767 port 15728765 91767 nas_port_type Virtual 91767 remote_ip 5.5.5.191 91769 username aminvpn 91769 mac 91769 bytes_out 254068 91769 bytes_in 697697 91769 station_ip 37.129.230.225 91769 port 1 91769 unique_id port 91769 remote_ip 10.8.0.6 91771 username caferibar 91771 unique_id port 91771 terminate_cause User-Request 91771 bytes_out 256804 91771 bytes_in 2711789 91771 station_ip 5.119.220.33 91771 port 15728776 91771 nas_port_type Virtual 91771 remote_ip 5.5.5.187 91772 username aminvpn 91772 mac 91772 bytes_out 68790 91772 bytes_in 212937 91772 station_ip 37.129.230.225 91772 port 1 91772 unique_id port 91772 remote_ip 10.8.1.6 91775 username forozande 91775 unique_id port 91775 terminate_cause User-Request 91775 bytes_out 56513 91775 bytes_in 606896 91775 station_ip 37.129.14.33 91775 port 15728780 91775 nas_port_type Virtual 91775 remote_ip 5.5.5.185 91777 username arman 91777 unique_id port 91777 terminate_cause Lost-Carrier 91777 bytes_out 3255408 91777 bytes_in 100522649 91777 station_ip 5.119.63.190 91777 port 15728777 91777 nas_port_type Virtual 91777 remote_ip 5.5.5.186 91786 username forozande 91786 unique_id port 91786 terminate_cause User-Request 91786 bytes_out 35035 91786 bytes_in 209012 91786 station_ip 37.129.28.8 91746 bytes_in 428780 91746 station_ip 5.119.16.66 91746 port 15728749 91746 nas_port_type Virtual 91746 remote_ip 5.5.5.201 91750 username aminvpn 91750 mac 91750 bytes_out 0 91750 bytes_in 0 91750 station_ip 86.55.255.169 91750 port 5 91750 unique_id port 91750 remote_ip 10.8.0.6 91752 username caferibar 91752 unique_id port 91752 terminate_cause Lost-Carrier 91752 bytes_out 721259 91752 bytes_in 24502231 91752 station_ip 5.120.148.52 91752 port 15728758 91752 nas_port_type Virtual 91752 remote_ip 5.5.5.198 91753 username asadi 91753 mac 91753 bytes_out 0 91753 bytes_in 0 91753 station_ip 113.203.60.131 91753 port 4 91753 unique_id port 91753 remote_ip 10.8.0.22 91755 username asadi 91755 mac 91755 bytes_out 0 91755 bytes_in 0 91755 station_ip 113.203.60.131 91755 port 3 91755 unique_id port 91755 remote_ip 10.8.0.22 91757 username amir 91757 unique_id port 91757 terminate_cause Lost-Carrier 91757 bytes_out 188657 91757 bytes_in 544462 91757 station_ip 46.225.211.179 91757 port 15728760 91757 nas_port_type Virtual 91757 remote_ip 5.5.5.196 91763 username amin.insta01 91763 kill_reason Relative expiration date has reached 91763 unique_id port 91763 bytes_out 0 91763 bytes_in 0 91763 station_ip 5.119.160.164 91763 port 15728774 91763 nas_port_type Virtual 91773 username alinezhad 91773 unique_id port 91773 terminate_cause User-Request 91773 bytes_out 70004 91773 bytes_in 425824 91773 station_ip 5.202.97.127 91773 port 15728778 91773 nas_port_type Virtual 91773 remote_ip 5.5.5.239 91776 username ksrkrgr 91776 unique_id port 91776 terminate_cause User-Request 91776 bytes_out 11837847 91776 bytes_in 414745731 91776 station_ip 78.39.25.127 91776 port 15728762 91776 nas_port_type Virtual 91776 remote_ip 5.5.5.194 91780 username forozande 91780 unique_id port 91780 terminate_cause User-Request 91780 bytes_out 51061 91780 bytes_in 410711 91780 station_ip 83.123.181.140 91780 port 15728784 91780 nas_port_type Virtual 91780 remote_ip 5.5.5.181 91781 username alinezhad 91781 unique_id port 91781 terminate_cause User-Request 91781 bytes_out 0 91781 bytes_in 0 91781 station_ip 5.202.97.127 91781 port 15728785 91781 nas_port_type Virtual 91781 remote_ip 5.5.5.239 91782 username askari 91782 mac 91782 bytes_out 0 91782 bytes_in 0 91782 station_ip 5.119.190.176 91782 port 1 91782 unique_id port 91782 remote_ip 10.8.0.34 91785 username mammad 91785 unique_id port 91785 terminate_cause User-Request 91785 bytes_out 862843 91785 bytes_in 14306200 91785 station_ip 5.233.49.60 91785 port 15728783 91785 nas_port_type Virtual 91785 remote_ip 5.5.5.182 91789 username caferibar 91789 unique_id port 91789 terminate_cause User-Request 91789 bytes_out 4301715 91789 bytes_in 3164413 91789 station_ip 37.156.61.27 91789 port 15728792 91789 nas_port_type Virtual 91789 remote_ip 5.5.5.177 91794 username madadi2 91794 unique_id port 91794 terminate_cause Lost-Carrier 91794 bytes_out 1612 91794 bytes_in 115576 91794 station_ip 5.120.60.154 91794 port 15728798 91794 nas_port_type Virtual 91794 remote_ip 5.5.5.174 91799 username asadi 91799 mac 91799 bytes_out 0 91799 bytes_in 0 91799 station_ip 113.203.60.131 91799 port 1 91799 unique_id port 91799 remote_ip 10.8.0.22 91802 username amirabbas 91802 unique_id port 91802 terminate_cause Lost-Carrier 91802 bytes_out 13826401 91802 bytes_in 386857541 91802 station_ip 31.56.112.244 91802 port 15728797 91802 nas_port_type Virtual 91802 remote_ip 5.5.5.212 91804 username alinezhad 91804 unique_id port 91804 terminate_cause User-Request 91804 bytes_out 0 91761 station_ip 5.202.97.127 91761 port 15728757 91761 nas_port_type Virtual 91761 remote_ip 5.5.5.239 91762 username asadi 91762 unique_id port 91762 terminate_cause User-Request 91762 bytes_out 63021 91762 bytes_in 563071 91762 station_ip 113.203.60.131 91762 port 15728771 91762 nas_port_type Virtual 91762 remote_ip 5.5.5.193 91764 username forozande 91764 unique_id port 91764 terminate_cause User-Request 91764 bytes_out 38374 91764 bytes_in 244055 91764 station_ip 83.122.240.97 91764 port 15728775 91764 nas_port_type Virtual 91764 remote_ip 5.5.5.188 91766 username mammad 91766 unique_id port 91766 terminate_cause User-Request 91766 bytes_out 502323 91766 bytes_in 9325462 91766 station_ip 5.233.56.208 91766 port 15728770 91766 nas_port_type Virtual 91766 remote_ip 5.5.5.208 91768 username karamozian 91768 mac 91768 bytes_out 0 91768 bytes_in 0 91768 station_ip 37.129.201.71 91768 port 3 91768 unique_id port 91768 remote_ip 10.8.0.30 91770 username aminvpn 91770 unique_id port 91770 terminate_cause Lost-Carrier 91770 bytes_out 8082977 91770 bytes_in 126683916 91770 station_ip 5.119.64.23 91770 port 15728756 91770 nas_port_type Virtual 91770 remote_ip 5.5.5.199 91774 username forozande 91774 unique_id port 91774 terminate_cause User-Request 91774 bytes_out 52339 91774 bytes_in 207731 91774 station_ip 37.129.14.33 91774 port 15728779 91774 nas_port_type Virtual 91774 remote_ip 5.5.5.185 91778 username bcboard 91778 unique_id port 91778 terminate_cause User-Request 91778 bytes_out 2695301 91778 bytes_in 50452041 91778 station_ip 83.122.6.137 91778 port 15728766 91778 nas_port_type Virtual 91778 remote_ip 5.5.5.190 91779 username askari 91779 mac 91779 bytes_out 0 91779 bytes_in 0 91779 station_ip 5.119.190.176 91779 port 1 91779 unique_id port 91779 remote_ip 10.8.0.34 91783 username forozande 91783 unique_id port 91783 terminate_cause User-Request 91783 bytes_out 20707 91783 bytes_in 134830 91783 station_ip 83.123.181.140 91783 port 15728786 91783 nas_port_type Virtual 91783 remote_ip 5.5.5.181 91784 username forozande 91784 unique_id port 91784 terminate_cause User-Request 91784 bytes_out 100269 91784 bytes_in 129603 91784 station_ip 37.129.28.8 91784 port 15728787 91784 nas_port_type Virtual 91784 remote_ip 5.5.5.180 91787 username madadi2 91787 unique_id port 91787 terminate_cause Lost-Carrier 91787 bytes_out 893226 91787 bytes_in 19121524 91787 station_ip 5.120.162.213 91787 port 15728781 91787 nas_port_type Virtual 91787 remote_ip 5.5.5.184 91792 username forozande 91792 unique_id port 91792 terminate_cause User-Request 91792 bytes_out 41067 91792 bytes_in 621555 91792 station_ip 83.122.103.153 91792 port 15728799 91792 nas_port_type Virtual 91792 remote_ip 5.5.5.173 91795 username tahmasebi 91795 unique_id port 91795 terminate_cause User-Request 91795 bytes_out 0 91795 bytes_in 0 91795 station_ip 46.225.232.80 91795 port 15728803 91795 nas_port_type Virtual 91795 remote_ip 5.5.5.171 91796 username sadegh 91796 unique_id port 91796 terminate_cause Lost-Carrier 91796 bytes_out 2002824 91796 bytes_in 32497895 91796 station_ip 5.119.14.78 91796 port 15728800 91796 nas_port_type Virtual 91796 remote_ip 5.5.5.172 91797 username caferibar 91797 unique_id port 91797 terminate_cause User-Request 91797 bytes_out 88039 91797 bytes_in 1755969 91797 station_ip 37.129.3.11 91797 port 15728808 91797 nas_port_type Virtual 91797 remote_ip 5.5.5.168 91801 username asadi 91801 unique_id port 91801 terminate_cause User-Request 91801 bytes_out 159533 91801 bytes_in 2532581 91801 station_ip 113.203.60.131 91801 port 15728810 91786 port 15728788 91786 nas_port_type Virtual 91786 remote_ip 5.5.5.180 91788 username forozande 91788 unique_id port 91788 terminate_cause User-Request 91788 bytes_out 45138 91788 bytes_in 386495 91788 station_ip 37.129.87.52 91788 port 15728793 91788 nas_port_type Virtual 91788 remote_ip 5.5.5.176 91790 username forozande 91790 unique_id port 91790 terminate_cause User-Request 91790 bytes_out 40542 91790 bytes_in 146461 91790 station_ip 83.123.112.132 91790 port 15728794 91790 nas_port_type Virtual 91790 remote_ip 5.5.5.175 91791 username alinezhad 91791 unique_id port 91791 terminate_cause User-Request 91791 bytes_out 0 91791 bytes_in 0 91791 station_ip 5.202.97.127 91791 port 15728796 91791 nas_port_type Virtual 91791 remote_ip 5.5.5.239 91793 username madadi2 91793 unique_id port 91793 terminate_cause Lost-Carrier 91793 bytes_out 863533 91793 bytes_in 14221440 91793 station_ip 5.119.60.142 91793 port 15728789 91793 nas_port_type Virtual 91793 remote_ip 5.5.5.179 91798 username asadi 91798 mac 91798 bytes_out 183336 91798 bytes_in 2240396 91798 station_ip 113.203.60.131 91798 port 1 91798 unique_id port 91798 remote_ip 10.8.0.22 91800 username tahmasebi 91800 unique_id port 91800 terminate_cause Lost-Carrier 91800 bytes_out 3668 91800 bytes_in 128709 91800 station_ip 46.225.232.80 91800 port 15728805 91800 nas_port_type Virtual 91800 remote_ip 5.5.5.171 91805 username caferibar 91805 unique_id port 91805 terminate_cause User-Request 91805 bytes_out 7507304 91805 bytes_in 160397994 91805 station_ip 5.119.46.223 91805 port 15728795 91805 nas_port_type Virtual 91805 remote_ip 5.5.5.217 91810 username mahbobeh 91810 unique_id port 91810 terminate_cause Lost-Carrier 91810 bytes_out 2549132 91810 bytes_in 27076465 91810 station_ip 83.122.158.14 91810 port 15728782 91810 nas_port_type Virtual 91810 remote_ip 5.5.5.183 91812 username madadi2 91812 unique_id port 91812 terminate_cause Lost-Carrier 91812 bytes_out 56802 91812 bytes_in 273565 91812 station_ip 5.120.156.208 91812 port 15728809 91812 nas_port_type Virtual 91812 remote_ip 5.5.5.167 91817 username forozande 91817 unique_id port 91817 terminate_cause User-Request 91817 bytes_out 10473 91817 bytes_in 22967 91817 station_ip 83.123.2.47 91817 port 15728821 91817 nas_port_type Virtual 91817 remote_ip 5.5.5.162 91821 username forozande 91821 unique_id port 91821 terminate_cause User-Request 91821 bytes_out 12527 91821 bytes_in 38760 91821 station_ip 83.122.145.27 91821 port 15728829 91821 nas_port_type Virtual 91821 remote_ip 5.5.5.159 91822 username aminvpn 91822 unique_id port 91822 terminate_cause Lost-Carrier 91822 bytes_out 204214 91822 bytes_in 752918 91822 station_ip 5.120.51.167 91822 port 15728825 91822 nas_port_type Virtual 91822 remote_ip 5.5.5.160 91823 username forozande 91823 unique_id port 91823 terminate_cause User-Request 91823 bytes_out 22457 91823 bytes_in 60809 91823 station_ip 37.129.139.3 91823 port 15728831 91823 nas_port_type Virtual 91823 remote_ip 5.5.5.155 91831 username askari 91831 mac 91831 bytes_out 0 91831 bytes_in 0 91831 station_ip 5.120.121.75 91831 port 1 91831 unique_id port 91837 username ahmadi 91837 unique_id port 91837 terminate_cause User-Request 91837 bytes_out 67947 91837 bytes_in 385374 91837 station_ip 37.129.227.201 91837 port 15728841 91837 nas_port_type Virtual 91837 remote_ip 5.5.5.149 91839 username alireza1 91839 unique_id port 91839 terminate_cause User-Request 91839 bytes_out 1063215 91839 bytes_in 3230976 91839 station_ip 5.119.94.128 91839 port 15728814 91839 nas_port_type Virtual 91839 remote_ip 5.5.5.169 91841 username mammad 91801 nas_port_type Virtual 91801 remote_ip 5.5.5.193 91803 username mammad 91803 unique_id port 91803 terminate_cause User-Request 91803 bytes_out 1038352 91803 bytes_in 11063607 91803 station_ip 5.233.49.60 91803 port 15728804 91803 nas_port_type Virtual 91803 remote_ip 5.5.5.182 91806 username forozande 91806 unique_id port 91806 terminate_cause User-Request 91806 bytes_out 34751 91806 bytes_in 199517 91806 station_ip 83.122.238.193 91806 port 15728812 91806 nas_port_type Virtual 91806 remote_ip 5.5.5.166 91808 username alireza1 91808 unique_id port 91808 terminate_cause User-Request 91808 bytes_out 599139 91808 bytes_in 2087270 91808 station_ip 5.119.94.128 91808 port 15728807 91808 nas_port_type Virtual 91808 remote_ip 5.5.5.169 91811 username forozande 91811 unique_id port 91811 terminate_cause User-Request 91811 bytes_out 18013 91811 bytes_in 63911 91811 station_ip 37.129.204.79 91811 port 15728815 91811 nas_port_type Virtual 91811 remote_ip 5.5.5.165 91816 username sadegh 91816 unique_id port 91816 terminate_cause Lost-Carrier 91816 bytes_out 5633008 91816 bytes_in 113713103 91816 station_ip 5.120.111.145 91816 port 15728806 91816 nas_port_type Virtual 91816 remote_ip 5.5.5.170 91819 username madadi2 91819 unique_id port 91819 terminate_cause Lost-Carrier 91819 bytes_out 51396 91819 bytes_in 302568 91819 station_ip 5.120.25.83 91819 port 15728817 91819 nas_port_type Virtual 91819 remote_ip 5.5.5.164 91820 username forozande 91820 unique_id port 91820 terminate_cause User-Request 91820 bytes_out 48359 91820 bytes_in 141452 91820 station_ip 83.122.145.27 91820 port 15728826 91820 nas_port_type Virtual 91820 remote_ip 5.5.5.159 91824 username forozande 91824 unique_id port 91824 terminate_cause User-Request 91824 bytes_out 19993 91824 bytes_in 176190 91824 station_ip 37.129.139.3 91824 port 15728832 91824 nas_port_type Virtual 91824 remote_ip 5.5.5.155 91825 username madadi2 91825 unique_id port 91825 terminate_cause Lost-Carrier 91825 bytes_out 29574 91825 bytes_in 160023 91825 station_ip 5.120.140.205 91825 port 15728828 91825 nas_port_type Virtual 91825 remote_ip 5.5.5.157 91826 username bcboard 91826 unique_id port 91826 terminate_cause User-Request 91826 bytes_out 428770 91826 bytes_in 2177372 91826 station_ip 83.123.236.167 91826 port 15728827 91826 nas_port_type Virtual 91826 remote_ip 5.5.5.158 91827 username askari 91827 kill_reason Another user logged on this global unique id 91827 mac 91827 bytes_out 0 91827 bytes_in 0 91827 station_ip 5.120.121.75 91827 port 1 91827 unique_id port 91827 remote_ip 10.8.0.34 91828 username madadi2 91828 unique_id port 91828 terminate_cause Lost-Carrier 91828 bytes_out 761727 91828 bytes_in 6562697 91828 station_ip 5.120.115.189 91828 port 15728835 91828 nas_port_type Virtual 91828 remote_ip 5.5.5.154 91830 username shojaei 91830 unique_id port 91830 terminate_cause User-Request 91830 bytes_out 0 91830 bytes_in 0 91830 station_ip 83.123.165.176 91830 port 15728839 91830 nas_port_type Virtual 91830 remote_ip 5.5.5.151 91832 username madadi2 91832 unique_id port 91832 terminate_cause Lost-Carrier 91832 bytes_out 16824 91832 bytes_in 152830 91832 station_ip 5.120.110.21 91832 port 15728836 91832 nas_port_type Virtual 91832 remote_ip 5.5.5.153 91835 username forozande 91835 unique_id port 91835 terminate_cause User-Request 91835 bytes_out 33004 91835 bytes_in 40634 91835 station_ip 37.129.93.30 91835 port 15728842 91835 nas_port_type Virtual 91835 remote_ip 5.5.5.148 91840 username madadi2 91840 unique_id port 91840 terminate_cause Lost-Carrier 91840 bytes_out 167056 91840 bytes_in 351588 91840 station_ip 5.119.155.163 91804 bytes_in 0 91804 station_ip 5.202.97.127 91804 port 15728811 91804 nas_port_type Virtual 91804 remote_ip 5.5.5.239 91807 username mansur 91807 unique_id port 91807 terminate_cause Lost-Carrier 91807 bytes_out 2113661 91807 bytes_in 33639946 91807 station_ip 5.120.147.36 91807 port 15728790 91807 nas_port_type Virtual 91807 remote_ip 5.5.5.178 91809 username forozande 91809 unique_id port 91809 terminate_cause User-Request 91809 bytes_out 26527 91809 bytes_in 54803 91809 station_ip 37.129.204.79 91809 port 15728813 91809 nas_port_type Virtual 91809 remote_ip 5.5.5.165 91813 username heydari 91813 unique_id port 91813 terminate_cause User-Request 91813 bytes_out 148764 91813 bytes_in 4615347 91813 station_ip 5.119.221.41 91813 port 15728816 91813 nas_port_type Virtual 91813 remote_ip 5.5.5.229 91814 username forozande 91814 unique_id port 91814 terminate_cause User-Request 91814 bytes_out 18962 91814 bytes_in 56270 91814 station_ip 113.203.126.84 91814 port 15728819 91814 nas_port_type Virtual 91814 remote_ip 5.5.5.163 91815 username forozande 91815 unique_id port 91815 terminate_cause User-Request 91815 bytes_out 17000 91815 bytes_in 34603 91815 station_ip 113.203.126.84 91815 port 15728820 91815 nas_port_type Virtual 91815 remote_ip 5.5.5.163 91818 username forozande 91818 unique_id port 91818 terminate_cause User-Request 91818 bytes_out 35584 91818 bytes_in 156365 91818 station_ip 113.203.103.226 91818 port 15728822 91818 nas_port_type Virtual 91818 remote_ip 5.5.5.161 91829 username mahbobeh 91829 unique_id port 91829 terminate_cause Lost-Carrier 91829 bytes_out 3577590 91829 bytes_in 69997307 91829 station_ip 83.122.158.14 91829 port 15728824 91829 nas_port_type Virtual 91829 remote_ip 5.5.5.183 91833 username sobhan 91833 unique_id port 91833 terminate_cause Lost-Carrier 91833 bytes_out 649204 91833 bytes_in 7633686 91833 station_ip 5.120.56.128 91833 port 15728830 91833 nas_port_type Virtual 91833 remote_ip 5.5.5.156 91834 username heydari 91834 unique_id port 91834 terminate_cause Lost-Carrier 91834 bytes_out 122615 91834 bytes_in 809262 91834 station_ip 5.119.221.41 91834 port 15728833 91834 nas_port_type Virtual 91834 remote_ip 5.5.5.229 91836 username caferibar 91836 unique_id port 91836 terminate_cause User-Request 91836 bytes_out 3375219 91836 bytes_in 4894669 91836 station_ip 37.156.61.27 91836 port 15728837 91836 nas_port_type Virtual 91836 remote_ip 5.5.5.177 91838 username madadi2 91838 unique_id port 91838 terminate_cause Lost-Carrier 91838 bytes_out 192141 91838 bytes_in 1309244 91838 station_ip 5.119.176.91 91838 port 15728838 91838 nas_port_type Virtual 91838 remote_ip 5.5.5.152 91842 username arabpour 91842 unique_id port 91842 terminate_cause User-Request 91842 bytes_out 552284 91842 bytes_in 15958586 91842 station_ip 37.129.236.175 91842 port 15728847 91842 nas_port_type Virtual 91842 remote_ip 5.5.5.144 91843 username forozande 91843 unique_id port 91843 terminate_cause User-Request 91843 bytes_out 27162 91843 bytes_in 98587 91843 station_ip 37.129.164.31 91843 port 15728848 91843 nas_port_type Virtual 91843 remote_ip 5.5.5.143 91847 username askari 91847 kill_reason Another user logged on this global unique id 91847 mac 91847 bytes_out 0 91847 bytes_in 0 91847 station_ip 5.120.46.173 91847 port 1 91847 unique_id port 91852 username alinezhad 91852 unique_id port 91852 terminate_cause User-Request 91852 bytes_out 0 91852 bytes_in 0 91852 station_ip 113.203.21.111 91852 port 15728854 91852 nas_port_type Virtual 91852 remote_ip 5.5.5.140 91853 username askari 91853 kill_reason Another user logged on this global unique id 91853 mac 91853 bytes_out 0 91840 port 15728843 91840 nas_port_type Virtual 91840 remote_ip 5.5.5.147 91844 username askari 91844 kill_reason Another user logged on this global unique id 91844 mac 91844 bytes_out 0 91844 bytes_in 0 91844 station_ip 5.120.46.173 91844 port 1 91844 unique_id port 91844 remote_ip 10.8.0.34 91858 username bcboard 91858 unique_id port 91858 terminate_cause User-Request 91858 bytes_out 344980 91858 bytes_in 2558033 91858 station_ip 83.122.99.190 91858 port 15728845 91858 nas_port_type Virtual 91858 remote_ip 5.5.5.146 91859 username askari 91859 kill_reason Another user logged on this global unique id 91859 mac 91859 bytes_out 0 91859 bytes_in 0 91859 station_ip 5.120.46.173 91859 port 1 91859 unique_id port 91864 username fariba 91864 kill_reason Another user logged on this global unique id 91864 mac 91864 bytes_out 0 91864 bytes_in 0 91864 station_ip 5.119.92.254 91864 port 4 91864 unique_id port 91864 remote_ip 10.8.0.10 91865 username fariba 91865 kill_reason Another user logged on this global unique id 91865 mac 91865 bytes_out 0 91865 bytes_in 0 91865 station_ip 5.119.92.254 91865 port 4 91865 unique_id port 91866 username mahbobeh 91866 unique_id port 91866 terminate_cause Lost-Carrier 91866 bytes_out 505472 91866 bytes_in 6438676 91866 station_ip 83.122.108.107 91866 port 15728846 91866 nas_port_type Virtual 91866 remote_ip 5.5.5.145 91870 username alinezhad 91870 unique_id port 91870 terminate_cause User-Request 91870 bytes_out 15978 91870 bytes_in 63463 91870 station_ip 5.202.60.47 91870 port 15728866 91870 nas_port_type Virtual 91870 remote_ip 5.5.5.135 91871 username aminvpn 91871 unique_id port 91871 terminate_cause User-Request 91871 bytes_out 0 91871 bytes_in 0 91871 station_ip 5.119.64.23 91871 port 15728868 91871 nas_port_type Virtual 91871 remote_ip 5.5.5.189 91873 username alireza1 91873 unique_id port 91873 terminate_cause Lost-Carrier 91873 bytes_out 314422 91873 bytes_in 1321339 91873 station_ip 5.119.94.128 91873 port 15728853 91873 nas_port_type Virtual 91873 remote_ip 5.5.5.169 91875 username forozande 91875 unique_id port 91875 terminate_cause User-Request 91875 bytes_out 41971 91875 bytes_in 173950 91875 station_ip 83.122.42.188 91875 port 15728872 91875 nas_port_type Virtual 91875 remote_ip 5.5.5.130 91876 username alinezhad 91876 unique_id port 91876 terminate_cause User-Request 91876 bytes_out 0 91876 bytes_in 0 91876 station_ip 37.129.106.241 91876 port 15728874 91876 nas_port_type Virtual 91876 remote_ip 5.5.5.128 91877 username arabpour 91877 unique_id port 91877 terminate_cause User-Request 91877 bytes_out 614202 91877 bytes_in 17928979 91877 station_ip 83.122.7.135 91877 port 15728875 91877 nas_port_type Virtual 91877 remote_ip 5.5.5.127 91878 username alinezhad 91878 unique_id port 91878 terminate_cause User-Request 91878 bytes_out 0 91878 bytes_in 0 91878 station_ip 5.202.3.193 91878 port 15728876 91878 nas_port_type Virtual 91878 remote_ip 5.5.5.126 91884 username alinezhad 91884 unique_id port 91884 terminate_cause User-Request 91884 bytes_out 0 91884 bytes_in 0 91884 station_ip 37.129.44.86 91884 port 15728880 91884 nas_port_type Virtual 91884 remote_ip 5.5.5.124 91887 username sadegh 91887 unique_id port 91887 terminate_cause Lost-Carrier 91887 bytes_out 16100524 91887 bytes_in 293625258 91887 station_ip 5.119.169.130 91887 port 15728864 91887 nas_port_type Virtual 91887 remote_ip 5.5.5.133 91888 username alinezhad 91888 unique_id port 91888 terminate_cause User-Request 91888 bytes_out 0 91888 bytes_in 0 91888 station_ip 37.129.44.86 91888 port 15728882 91888 nas_port_type Virtual 91888 remote_ip 5.5.5.124 91841 unique_id port 91841 terminate_cause User-Request 91841 bytes_out 3499966 91841 bytes_in 19752453 91841 station_ip 5.233.60.108 91841 port 15728840 91841 nas_port_type Virtual 91841 remote_ip 5.5.5.150 91845 username forozande 91845 unique_id port 91845 terminate_cause User-Request 91845 bytes_out 177526 91845 bytes_in 3435642 91845 station_ip 83.122.255.209 91845 port 15728850 91845 nas_port_type Virtual 91845 remote_ip 5.5.5.142 91846 username alireza1 91846 unique_id port 91846 terminate_cause User-Request 91846 bytes_out 293896 91846 bytes_in 830588 91846 station_ip 5.119.94.128 91846 port 15728844 91846 nas_port_type Virtual 91846 remote_ip 5.5.5.169 91848 username aminvpn 91848 unique_id port 91848 terminate_cause Lost-Carrier 91848 bytes_out 87798 91848 bytes_in 559405 91848 station_ip 5.119.225.106 91848 port 15728849 91848 nas_port_type Virtual 91848 remote_ip 5.5.5.219 91849 username amirabbas 91849 unique_id port 91849 terminate_cause User-Request 91849 bytes_out 52938 91849 bytes_in 157078 91849 station_ip 31.56.112.244 91849 port 15728852 91849 nas_port_type Virtual 91849 remote_ip 5.5.5.212 91850 username alinezhad 91850 unique_id port 91850 terminate_cause Lost-Carrier 91850 bytes_out 417742 91850 bytes_in 4578566 91850 station_ip 5.202.97.127 91850 port 15728823 91850 nas_port_type Virtual 91850 remote_ip 5.5.5.239 91851 username askari 91851 kill_reason Another user logged on this global unique id 91851 mac 91851 bytes_out 0 91851 bytes_in 0 91851 station_ip 5.120.46.173 91851 port 1 91851 unique_id port 91856 username askari 91856 kill_reason Another user logged on this global unique id 91856 mac 91856 bytes_out 0 91856 bytes_in 0 91856 station_ip 5.120.46.173 91856 port 1 91856 unique_id port 91857 username ahmadipour 91857 unique_id port 91857 terminate_cause Lost-Carrier 91857 bytes_out 724876 91857 bytes_in 13649341 91857 station_ip 83.123.204.240 91857 port 15728855 91857 nas_port_type Virtual 91857 remote_ip 5.5.5.139 91860 username forozande 91860 unique_id port 91860 terminate_cause User-Request 91860 bytes_out 58718 91860 bytes_in 505543 91860 station_ip 83.123.139.221 91860 port 15728860 91860 nas_port_type Virtual 91860 remote_ip 5.5.5.137 91862 username bcboard 91862 unique_id port 91862 terminate_cause User-Request 91862 bytes_out 279310 91862 bytes_in 1811411 91862 station_ip 113.203.122.86 91862 port 15728861 91862 nas_port_type Virtual 91862 remote_ip 5.5.5.136 91869 username aminvpn 91869 unique_id port 91869 terminate_cause User-Request 91869 bytes_out 17272052 91869 bytes_in 237443574 91869 station_ip 5.119.64.23 91869 port 15728773 91869 nas_port_type Virtual 91869 remote_ip 5.5.5.189 91872 username bcboard 91872 unique_id port 91872 terminate_cause Lost-Carrier 91872 bytes_out 545438 91872 bytes_in 3615745 91872 station_ip 113.203.122.86 91872 port 15728863 91872 nas_port_type Virtual 91872 remote_ip 5.5.5.134 91874 username forozande 91874 unique_id port 91874 terminate_cause User-Request 91874 bytes_out 208 91874 bytes_in 11206 91874 station_ip 83.122.42.188 91874 port 15728871 91874 nas_port_type Virtual 91874 remote_ip 5.5.5.130 91879 username bcboard 91879 unique_id port 91879 terminate_cause Lost-Carrier 91879 bytes_out 126715 91879 bytes_in 399231 91879 station_ip 83.122.142.118 91879 port 15728873 91879 nas_port_type Virtual 91879 remote_ip 5.5.5.129 91881 username mahdixz 91881 unique_id port 91881 terminate_cause User-Request 91881 bytes_out 284626 91881 bytes_in 1202504 91881 station_ip 151.235.104.45 91881 port 15728878 91881 nas_port_type Virtual 91881 remote_ip 5.5.5.233 91882 username amirabbas 91853 bytes_in 0 91853 station_ip 5.120.46.173 91853 port 1 91853 unique_id port 91854 username forozande 91854 unique_id port 91854 terminate_cause User-Request 91854 bytes_out 77034 91854 bytes_in 202846 91854 station_ip 37.129.53.1 91854 port 15728856 91854 nas_port_type Virtual 91854 remote_ip 5.5.5.138 91855 username forozande 91855 unique_id port 91855 terminate_cause User-Request 91855 bytes_out 20657 91855 bytes_in 234690 91855 station_ip 37.129.53.1 91855 port 15728857 91855 nas_port_type Virtual 91855 remote_ip 5.5.5.138 91861 username askari 91861 kill_reason Another user logged on this global unique id 91861 mac 91861 bytes_out 0 91861 bytes_in 0 91861 station_ip 5.120.46.173 91861 port 1 91861 unique_id port 91863 username askari 91863 mac 91863 bytes_out 0 91863 bytes_in 0 91863 station_ip 5.120.46.173 91863 port 1 91863 unique_id port 91867 username alinezhad 91867 unique_id port 91867 terminate_cause User-Request 91867 bytes_out 106162 91867 bytes_in 470731 91867 station_ip 5.202.60.47 91867 port 15728862 91867 nas_port_type Virtual 91867 remote_ip 5.5.5.135 91868 username alinezhad 91868 unique_id port 91868 terminate_cause User-Request 91868 bytes_out 0 91868 bytes_in 0 91868 station_ip 5.202.60.47 91868 port 15728865 91868 nas_port_type Virtual 91868 remote_ip 5.5.5.135 91880 username aminvpn 91880 mac 91880 bytes_out 884345 91880 bytes_in 7339497 91880 station_ip 31.56.156.202 91880 port 3 91880 unique_id port 91880 remote_ip 10.8.0.6 91883 username aminvpn 91883 unique_id port 91883 terminate_cause Lost-Carrier 91883 bytes_out 4477401 91883 bytes_in 78248004 91883 station_ip 5.119.64.23 91883 port 15728877 91883 nas_port_type Virtual 91883 remote_ip 5.5.5.199 91886 username alinezhad 91886 unique_id port 91886 terminate_cause User-Request 91886 bytes_out 0 91886 bytes_in 0 91886 station_ip 37.129.44.86 91886 port 15728881 91886 nas_port_type Virtual 91886 remote_ip 5.5.5.124 91889 username ahmadi 91889 unique_id port 91889 terminate_cause User-Request 91889 bytes_out 0 91889 bytes_in 0 91889 station_ip 37.129.227.201 91889 port 15728883 91889 nas_port_type Virtual 91889 remote_ip 5.5.5.149 91891 username heydari 91891 unique_id port 91891 terminate_cause User-Request 91891 bytes_out 653406 91891 bytes_in 1896768 91891 station_ip 5.119.221.41 91891 port 15728859 91891 nas_port_type Virtual 91891 remote_ip 5.5.5.229 91892 username aminvpn 91892 unique_id port 91892 terminate_cause User-Request 91892 bytes_out 0 91892 bytes_in 0 91892 station_ip 5.120.91.71 91892 port 15728887 91892 nas_port_type Virtual 91892 remote_ip 5.5.5.122 91898 username kamali 91898 unique_id port 91898 terminate_cause User-Request 91898 bytes_out 279605 91898 bytes_in 779619 91898 station_ip 83.122.201.231 91898 port 15728892 91898 nas_port_type Virtual 91898 remote_ip 5.5.5.121 91901 username kamali 91901 unique_id port 91901 terminate_cause User-Request 91901 bytes_out 69321 91901 bytes_in 757354 91901 station_ip 83.122.201.231 91901 port 15728894 91901 nas_port_type Virtual 91901 remote_ip 5.5.5.121 91903 username kamali 91903 unique_id port 91903 terminate_cause User-Request 91903 bytes_out 13638 91903 bytes_in 34844 91903 station_ip 83.122.201.231 91903 port 15728897 91903 nas_port_type Virtual 91903 remote_ip 5.5.5.121 91908 username bcboard 91908 unique_id port 91908 terminate_cause Lost-Carrier 91908 bytes_out 5827219 91908 bytes_in 150522659 91908 station_ip 37.129.77.254 91908 port 15728899 91908 nas_port_type Virtual 91908 remote_ip 5.5.5.118 91909 username farhad 91909 unique_id port 91882 unique_id port 91882 terminate_cause User-Request 91882 bytes_out 34703559 91882 bytes_in 1022440667 91882 station_ip 31.56.112.244 91882 port 15728858 91882 nas_port_type Virtual 91882 remote_ip 5.5.5.212 91885 username avaanna 91885 unique_id port 91885 terminate_cause User-Request 91885 bytes_out 0 91885 bytes_in 0 91885 station_ip 83.123.157.82 91885 port 15728879 91885 nas_port_type Virtual 91885 remote_ip 5.5.5.125 91890 username alinezhad 91890 unique_id port 91890 terminate_cause User-Request 91890 bytes_out 0 91890 bytes_in 0 91890 station_ip 37.129.44.86 91890 port 15728884 91890 nas_port_type Virtual 91890 remote_ip 5.5.5.124 91894 username madadi2 91894 unique_id port 91894 terminate_cause Lost-Carrier 91894 bytes_out 68519 91894 bytes_in 287943 91894 station_ip 5.119.104.125 91894 port 15728885 91894 nas_port_type Virtual 91894 remote_ip 5.5.5.123 91895 username alinezhad 91895 unique_id port 91895 terminate_cause User-Request 91895 bytes_out 0 91895 bytes_in 0 91895 station_ip 37.129.44.86 91895 port 15728889 91895 nas_port_type Virtual 91895 remote_ip 5.5.5.124 91900 username kamali 91900 unique_id port 91900 terminate_cause User-Request 91900 bytes_out 73685 91900 bytes_in 966161 91900 station_ip 83.122.201.231 91900 port 15728893 91900 nas_port_type Virtual 91900 remote_ip 5.5.5.121 91902 username kamali 91902 unique_id port 91902 terminate_cause User-Request 91902 bytes_out 16728 91902 bytes_in 55015 91902 station_ip 83.122.201.231 91902 port 15728896 91902 nas_port_type Virtual 91902 remote_ip 5.5.5.121 91905 username alinezhad 91905 unique_id port 91905 terminate_cause User-Request 91905 bytes_out 0 91905 bytes_in 0 91905 station_ip 83.122.242.140 91905 port 15728898 91905 nas_port_type Virtual 91905 remote_ip 5.5.5.119 91906 username farhad 91906 unique_id port 91906 terminate_cause User-Request 91906 bytes_out 4246004 91906 bytes_in 30986142 91906 station_ip 5.120.109.36 91906 port 15728888 91906 nas_port_type Virtual 91906 remote_ip 5.5.5.141 91910 username madadi2 91910 unique_id port 91910 terminate_cause User-Request 91910 bytes_out 402459 91910 bytes_in 923402 91910 station_ip 5.119.61.161 91910 port 15728901 91910 nas_port_type Virtual 91910 remote_ip 5.5.5.116 91912 username farhad 91912 unique_id port 91912 terminate_cause Lost-Carrier 91912 bytes_out 4575936 91912 bytes_in 137206715 91912 station_ip 5.119.243.99 91912 port 15728902 91912 nas_port_type Virtual 91912 remote_ip 5.5.5.115 91914 username amirabbas 91914 unique_id port 91914 terminate_cause User-Request 91914 bytes_out 79243925 91914 bytes_in 2454958743 91914 station_ip 31.56.112.244 91914 port 15728886 91914 nas_port_type Virtual 91914 remote_ip 5.5.5.212 91915 username mirzaei 91915 kill_reason Another user logged on this global unique id 91915 mac 91915 bytes_out 0 91915 bytes_in 0 91915 station_ip 5.119.196.84 91915 port 1 91915 unique_id port 91916 username mammad 91916 unique_id port 91916 terminate_cause User-Request 91916 bytes_out 20834704 91916 bytes_in 300546808 91916 station_ip 5.233.60.108 91916 port 15728891 91916 nas_port_type Virtual 91916 remote_ip 5.5.5.150 91917 username madadi2 91917 unique_id port 91917 terminate_cause Lost-Carrier 91917 bytes_out 304391 91917 bytes_in 658125 91917 station_ip 5.120.14.91 91917 port 15728909 91917 nas_port_type Virtual 91917 remote_ip 5.5.5.114 91918 username mirzaei 91918 kill_reason Another user logged on this global unique id 91918 mac 91918 bytes_out 0 91918 bytes_in 0 91918 station_ip 5.119.196.84 91918 port 1 91918 unique_id port 91919 username aminvpn 91919 mac 91919 bytes_out 0 91893 username farhad 91893 unique_id port 91893 terminate_cause User-Request 91893 bytes_out 14506285 91893 bytes_in 154183158 91893 station_ip 5.120.109.36 91893 port 15728851 91893 nas_port_type Virtual 91893 remote_ip 5.5.5.141 91896 username heydarizadeh 91896 unique_id port 91896 terminate_cause Lost-Carrier 91896 bytes_out 982085 91896 bytes_in 25143157 91896 station_ip 5.119.65.39 91896 port 15728867 91896 nas_port_type Virtual 91896 remote_ip 5.5.5.132 91897 username kamali 91897 unique_id port 91897 terminate_cause User-Request 91897 bytes_out 73872 91897 bytes_in 549417 91897 station_ip 83.122.201.231 91897 port 15728890 91897 nas_port_type Virtual 91897 remote_ip 5.5.5.121 91899 username aminvpn 91899 mac 91899 bytes_out 0 91899 bytes_in 0 91899 station_ip 37.129.108.29 91899 port 1 91899 unique_id port 91899 remote_ip 10.8.1.6 91904 username bcboard 91904 unique_id port 91904 terminate_cause Lost-Carrier 91904 bytes_out 431078 91904 bytes_in 6604228 91904 station_ip 113.203.114.84 91904 port 15728895 91904 nas_port_type Virtual 91904 remote_ip 5.5.5.120 91907 username khalili 91907 unique_id port 91907 terminate_cause Lost-Carrier 91907 bytes_out 15441915 91907 bytes_in 126744274 91907 station_ip 5.119.20.174 91907 port 15728870 91907 nas_port_type Virtual 91907 remote_ip 5.5.5.131 91922 username fariba 91922 mac 91922 bytes_out 0 91922 bytes_in 0 91922 station_ip 5.119.92.254 91922 port 4 91922 unique_id port 91925 username madadi2 91925 unique_id port 91925 terminate_cause User-Request 91925 bytes_out 485349 91925 bytes_in 8717230 91925 station_ip 5.119.158.97 91925 port 15728914 91925 nas_port_type Virtual 91925 remote_ip 5.5.5.111 91927 username caferibar 91927 unique_id port 91927 terminate_cause Lost-Carrier 91927 bytes_out 95862185 91927 bytes_in 177021785 91927 station_ip 5.119.46.223 91927 port 15728834 91927 nas_port_type Virtual 91927 remote_ip 5.5.5.217 91929 username alinezhad 91929 unique_id port 91929 terminate_cause User-Request 91929 bytes_out 0 91929 bytes_in 0 91929 station_ip 83.123.168.108 91929 port 15728918 91929 nas_port_type Virtual 91929 remote_ip 5.5.5.108 91940 username askari 91940 kill_reason Another user logged on this global unique id 91940 mac 91940 bytes_out 0 91940 bytes_in 0 91940 station_ip 5.119.71.32 91940 port 4 91940 unique_id port 91944 username caferibar 91944 unique_id port 91944 terminate_cause Admin-Reboot 91944 bytes_out 6712222 91944 bytes_in 213782284 91944 station_ip 5.119.46.223 91944 port 15728920 91944 nas_port_type Virtual 91944 remote_ip 5.5.5.217 91949 username alemzadeh 91949 unique_id port 91949 terminate_cause User-Request 91949 bytes_out 185463 91949 bytes_in 3366904 91949 station_ip 83.122.146.10 91949 port 15728648 91949 nas_port_type Virtual 91949 remote_ip 5.5.5.247 91950 username alinezhad 91950 unique_id port 91950 terminate_cause User-Request 91950 bytes_out 0 91950 bytes_in 0 91950 station_ip 37.129.159.110 91950 port 15728649 91950 nas_port_type Virtual 91950 remote_ip 5.5.5.246 91951 username farhad 91951 unique_id port 91951 terminate_cause Lost-Carrier 91951 bytes_out 1365884 91951 bytes_in 10680254 91951 station_ip 5.119.118.14 91951 port 15728647 91951 nas_port_type Virtual 91951 remote_ip 5.5.5.248 91953 username alinezhad 91953 unique_id port 91953 terminate_cause User-Request 91953 bytes_out 0 91953 bytes_in 0 91953 station_ip 37.129.159.110 91953 port 15728650 91953 nas_port_type Virtual 91953 remote_ip 5.5.5.246 91963 username aminvpn 91963 mac 91963 bytes_out 0 91963 bytes_in 0 91963 station_ip 37.129.149.56 91909 terminate_cause Lost-Carrier 91909 bytes_out 6650686 91909 bytes_in 82734435 91909 station_ip 5.120.78.217 91909 port 15728900 91909 nas_port_type Virtual 91909 remote_ip 5.5.5.117 91911 username madadi2 91911 unique_id port 91911 terminate_cause User-Request 91911 bytes_out 9439 91911 bytes_in 27345 91911 station_ip 5.119.61.161 91911 port 15728907 91911 nas_port_type Virtual 91911 remote_ip 5.5.5.116 91913 username mirzaei 91913 kill_reason Another user logged on this global unique id 91913 mac 91913 bytes_out 0 91913 bytes_in 0 91913 station_ip 5.119.196.84 91913 port 1 91913 unique_id port 91913 remote_ip 10.8.0.14 91921 username tahmasebi 91921 unique_id port 91921 terminate_cause User-Request 91921 bytes_out 9227365 91921 bytes_in 226361887 91921 station_ip 5.119.208.96 91921 port 15728911 91921 nas_port_type Virtual 91921 remote_ip 5.5.5.113 91923 username mahbobeh 91923 unique_id port 91923 terminate_cause Lost-Carrier 91923 bytes_out 181043 91923 bytes_in 3626385 91923 station_ip 83.122.108.107 91923 port 15728912 91923 nas_port_type Virtual 91923 remote_ip 5.5.5.145 91924 username alinezhad 91924 unique_id port 91924 terminate_cause User-Request 91924 bytes_out 403830 91924 bytes_in 6660866 91924 station_ip 37.129.130.34 91924 port 15728913 91924 nas_port_type Virtual 91924 remote_ip 5.5.5.112 91926 username alinezhad 91926 unique_id port 91926 terminate_cause User-Request 91926 bytes_out 0 91926 bytes_in 0 91926 station_ip 37.129.184.235 91926 port 15728915 91926 nas_port_type Virtual 91926 remote_ip 5.5.5.110 91933 username ahmadi 91933 unique_id port 91933 terminate_cause User-Request 91933 bytes_out 36001 91933 bytes_in 346996 91933 station_ip 113.203.102.19 91933 port 15728919 91933 nas_port_type Virtual 91933 remote_ip 5.5.5.107 91934 username askari 91934 kill_reason Another user logged on this global unique id 91934 mac 91934 bytes_out 0 91934 bytes_in 0 91934 station_ip 5.119.71.32 91934 port 4 91934 unique_id port 91935 username askari 91935 kill_reason Another user logged on this global unique id 91935 mac 91935 bytes_out 0 91935 bytes_in 0 91935 station_ip 5.119.71.32 91935 port 4 91935 unique_id port 91936 username askari 91936 kill_reason Another user logged on this global unique id 91936 mac 91936 bytes_out 0 91936 bytes_in 0 91936 station_ip 5.119.71.32 91936 port 4 91936 unique_id port 91937 username caferibar 91937 unique_id port 91937 terminate_cause User-Request 91937 bytes_out 1138509 91937 bytes_in 624822 91937 station_ip 94.24.81.249 91937 port 15728921 91937 nas_port_type Virtual 91937 remote_ip 5.5.5.106 91939 username forozande 91939 unique_id port 91939 terminate_cause User-Request 91939 bytes_out 342041 91939 bytes_in 11363533 91939 station_ip 83.122.15.114 91939 port 15728922 91939 nas_port_type Virtual 91939 remote_ip 5.5.5.105 91941 username askari 91941 kill_reason Another user logged on this global unique id 91941 mac 91941 bytes_out 0 91941 bytes_in 0 91941 station_ip 5.119.71.32 91941 port 4 91941 unique_id port 91942 username forozande 91942 unique_id port 91942 terminate_cause User-Request 91942 bytes_out 45058 91942 bytes_in 334340 91942 station_ip 37.129.93.1 91942 port 15728923 91942 nas_port_type Virtual 91942 remote_ip 5.5.5.104 91943 username askari 91943 mac 91943 bytes_out 0 91943 bytes_in 0 91943 station_ip 5.119.71.32 91943 port 4 91943 unique_id port 91946 username forozande 91946 unique_id port 91946 terminate_cause User-Request 91946 bytes_out 24966 91946 bytes_in 43993 91946 station_ip 37.129.4.159 91946 port 15728643 91946 nas_port_type Virtual 91946 remote_ip 5.5.5.252 91919 bytes_in 0 91919 station_ip 93.110.250.132 91919 port 3 91919 unique_id port 91919 remote_ip 10.8.0.6 91920 username amirabbas 91920 unique_id port 91920 terminate_cause User-Request 91920 bytes_out 42468892 91920 bytes_in 1357097094 91920 station_ip 31.56.112.244 91920 port 15728910 91920 nas_port_type Virtual 91920 remote_ip 5.5.5.212 91928 username madadi2 91928 unique_id port 91928 terminate_cause Lost-Carrier 91928 bytes_out 70196 91928 bytes_in 517013 91928 station_ip 5.119.18.229 91928 port 15728916 91928 nas_port_type Virtual 91928 remote_ip 5.5.5.109 91930 username askari 91930 kill_reason Another user logged on this global unique id 91930 mac 91930 bytes_out 0 91930 bytes_in 0 91930 station_ip 5.119.71.32 91930 port 4 91930 unique_id port 91930 remote_ip 10.8.0.34 91931 username mahbobeh 91931 kill_reason Maximum check online fails reached 91931 unique_id port 91931 bytes_out 118167 91931 bytes_in 2640626 91931 station_ip 83.122.108.107 91931 port 15728917 91931 nas_port_type Virtual 91931 remote_ip 5.5.5.145 91932 username askari 91932 kill_reason Another user logged on this global unique id 91932 mac 91932 bytes_out 0 91932 bytes_in 0 91932 station_ip 5.119.71.32 91932 port 4 91932 unique_id port 91938 username askari 91938 kill_reason Another user logged on this global unique id 91938 mac 91938 bytes_out 0 91938 bytes_in 0 91938 station_ip 5.119.71.32 91938 port 4 91938 unique_id port 91945 username forozande 91945 unique_id port 91945 terminate_cause User-Request 91945 bytes_out 13747 91945 bytes_in 19769 91945 station_ip 83.123.24.172 91945 port 15728640 91945 nas_port_type Virtual 91945 remote_ip 5.5.5.255 91947 username madadi2 91947 unique_id port 91947 terminate_cause Lost-Carrier 91947 bytes_out 52887 91947 bytes_in 214935 91947 station_ip 5.119.124.183 91947 port 15728641 91947 nas_port_type Virtual 91947 remote_ip 5.5.5.254 91952 username mahbobeh 91952 unique_id port 91952 terminate_cause Lost-Carrier 91952 bytes_out 125693 91952 bytes_in 1143699 91952 station_ip 83.122.108.107 91952 port 15728642 91952 nas_port_type Virtual 91952 remote_ip 5.5.5.253 91954 username caferibar 91954 unique_id port 91954 terminate_cause User-Request 91954 bytes_out 208678 91954 bytes_in 553508 91954 station_ip 37.27.7.90 91954 port 15728651 91954 nas_port_type Virtual 91954 remote_ip 5.5.5.245 91957 username askari 91957 mac 91957 bytes_out 0 91957 bytes_in 0 91957 station_ip 5.119.25.40 91957 port 5 91957 unique_id port 91957 remote_ip 10.8.0.34 91958 username madadi2 91958 unique_id port 91958 terminate_cause Lost-Carrier 91958 bytes_out 17123 91958 bytes_in 132736 91958 station_ip 5.120.127.162 91958 port 15728652 91958 nas_port_type Virtual 91958 remote_ip 5.5.5.244 91965 username mirzaei 91965 mac 91965 bytes_out 0 91965 bytes_in 0 91965 station_ip 5.119.196.84 91965 port 1 91965 unique_id port 91975 username aminvpn 91975 mac 91975 bytes_out 0 91975 bytes_in 0 91975 station_ip 37.129.149.56 91975 port 4 91975 unique_id port 91975 remote_ip 10.8.0.6 91978 username hashtadani 91978 unique_id port 91978 terminate_cause Lost-Carrier 91978 bytes_out 29815 91978 bytes_in 143632 91978 station_ip 5.202.133.193 91978 port 15728670 91978 nas_port_type Virtual 91978 remote_ip 5.5.5.232 91983 username bcboard 91983 unique_id port 91983 terminate_cause Lost-Carrier 91983 bytes_out 5395816 91983 bytes_in 162625533 91983 station_ip 37.129.246.50 91983 port 15728669 91983 nas_port_type Virtual 91983 remote_ip 5.5.5.237 91987 username alinezhad 91987 unique_id port 91987 terminate_cause User-Request 91948 username ahmadipour 91948 unique_id port 91948 terminate_cause Lost-Carrier 91948 bytes_out 475159 91948 bytes_in 10394698 91948 station_ip 83.123.203.171 91948 port 15728644 91948 nas_port_type Virtual 91948 remote_ip 5.5.5.251 91955 username alireza1 91955 unique_id port 91955 terminate_cause Lost-Carrier 91955 bytes_out 1421393 91955 bytes_in 33719240 91955 station_ip 5.119.94.128 91955 port 15728646 91955 nas_port_type Virtual 91955 remote_ip 5.5.5.249 91956 username askari 91956 mac 91956 bytes_out 0 91956 bytes_in 0 91956 station_ip 5.119.248.80 91956 port 4 91956 unique_id port 91956 remote_ip 10.8.0.34 91959 username arabpour 91959 unique_id port 91959 terminate_cause User-Request 91959 bytes_out 0 91959 bytes_in 0 91959 station_ip 83.122.227.59 91959 port 15728655 91959 nas_port_type Virtual 91959 remote_ip 5.5.5.242 91960 username arabpour 91960 unique_id port 91960 terminate_cause User-Request 91960 bytes_out 519009 91960 bytes_in 15600486 91960 station_ip 83.122.227.59 91960 port 15728656 91960 nas_port_type Virtual 91960 remote_ip 5.5.5.242 91961 username caferibar 91961 unique_id port 91961 terminate_cause User-Request 91961 bytes_out 121918 91961 bytes_in 3207403 91961 station_ip 83.123.179.111 91961 port 15728657 91961 nas_port_type Virtual 91961 remote_ip 5.5.5.241 91962 username aminvpn 91962 mac 91962 bytes_out 298186 91962 bytes_in 921713 91962 station_ip 37.129.149.56 91962 port 4 91962 unique_id port 91962 remote_ip 10.8.0.6 91967 username forozande 91967 unique_id port 91967 terminate_cause User-Request 91967 bytes_out 150415 91967 bytes_in 3597526 91967 station_ip 83.122.79.166 91967 port 15728662 91967 nas_port_type Virtual 91967 remote_ip 5.5.5.236 91968 username forozande 91968 unique_id port 91968 terminate_cause User-Request 91968 bytes_out 31734 91968 bytes_in 54851 91968 station_ip 113.203.37.95 91968 port 15728663 91968 nas_port_type Virtual 91968 remote_ip 5.5.5.235 91969 username forozande 91969 unique_id port 91969 terminate_cause User-Request 91969 bytes_out 224231 91969 bytes_in 4639428 91969 station_ip 83.122.26.65 91969 port 15728665 91969 nas_port_type Virtual 91969 remote_ip 5.5.5.233 91979 username mahbobeh 91979 unique_id port 91979 terminate_cause Lost-Carrier 91979 bytes_out 22152 91979 bytes_in 252530 91979 station_ip 37.129.158.149 91979 port 15728668 91979 nas_port_type Virtual 91979 remote_ip 5.5.5.234 91984 username alinezhad 91984 unique_id port 91984 terminate_cause User-Request 91984 bytes_out 33435 91984 bytes_in 361481 91984 station_ip 5.202.98.91 91984 port 15728674 91984 nas_port_type Virtual 91984 remote_ip 5.5.5.238 91985 username aminvpn 91985 mac 91985 bytes_out 576978 91985 bytes_in 6002323 91985 station_ip 37.129.149.56 91985 port 1 91985 unique_id port 91985 remote_ip 10.8.0.6 91986 username forozande 91986 unique_id port 91986 terminate_cause User-Request 91986 bytes_out 29282 91986 bytes_in 49967 91986 station_ip 37.129.93.88 91986 port 15728676 91986 nas_port_type Virtual 91986 remote_ip 5.5.5.230 91988 username madadi2 91988 unique_id port 91988 terminate_cause Lost-Carrier 91988 bytes_out 85238 91988 bytes_in 2327438 91988 station_ip 5.120.73.102 91988 port 15728677 91988 nas_port_type Virtual 91988 remote_ip 5.5.5.229 91991 username ahmadipour 91991 unique_id port 91991 terminate_cause Lost-Carrier 91991 bytes_out 1521244 91991 bytes_in 33855871 91991 station_ip 37.129.86.244 91991 port 15728681 91991 nas_port_type Virtual 91991 remote_ip 5.5.5.227 91999 username bcboard 91999 unique_id port 91999 terminate_cause User-Request 91963 port 4 91963 unique_id port 91963 remote_ip 10.8.0.6 91964 username alinezhad 91964 unique_id port 91964 terminate_cause User-Request 91964 bytes_out 0 91964 bytes_in 0 91964 station_ip 5.202.98.91 91964 port 15728660 91964 nas_port_type Virtual 91964 remote_ip 5.5.5.238 91966 username madadi2 91966 unique_id port 91966 terminate_cause Lost-Carrier 91966 bytes_out 13626 91966 bytes_in 126946 91966 station_ip 5.120.120.203 91966 port 15728659 91966 nas_port_type Virtual 91966 remote_ip 5.5.5.239 91970 username forozande 91970 unique_id port 91970 terminate_cause User-Request 91970 bytes_out 36867 91970 bytes_in 553806 91970 station_ip 83.122.26.65 91970 port 15728666 91970 nas_port_type Virtual 91970 remote_ip 5.5.5.233 91971 username alireza1 91971 unique_id port 91971 terminate_cause User-Request 91971 bytes_out 471761 91971 bytes_in 1805407 91971 station_ip 5.119.94.128 91971 port 15728653 91971 nas_port_type Virtual 91971 remote_ip 5.5.5.249 91972 username hashtadani 91972 unique_id port 91972 terminate_cause Lost-Carrier 91972 bytes_out 2451111 91972 bytes_in 46229255 91972 station_ip 113.203.113.32 91972 port 15728654 91972 nas_port_type Virtual 91972 remote_ip 5.5.5.243 91973 username mahbobeh 91973 unique_id port 91973 terminate_cause Lost-Carrier 91973 bytes_out 143745 91973 bytes_in 296681 91973 station_ip 37.129.158.149 91973 port 15728664 91973 nas_port_type Virtual 91973 remote_ip 5.5.5.234 91974 username alinezhad 91974 unique_id port 91974 terminate_cause User-Request 91974 bytes_out 0 91974 bytes_in 0 91974 station_ip 5.202.98.91 91974 port 15728667 91974 nas_port_type Virtual 91974 remote_ip 5.5.5.238 91976 username bcboard 91976 unique_id port 91976 terminate_cause Lost-Carrier 91976 bytes_out 2054849 91976 bytes_in 36955310 91976 station_ip 37.129.246.50 91976 port 15728661 91976 nas_port_type Virtual 91976 remote_ip 5.5.5.237 91977 username heydari 91977 unique_id port 91977 terminate_cause Lost-Carrier 91977 bytes_out 112082 91977 bytes_in 1039453 91977 station_ip 5.119.221.41 91977 port 15728658 91977 nas_port_type Virtual 91977 remote_ip 5.5.5.240 91980 username alinezhad 91980 unique_id port 91980 terminate_cause User-Request 91980 bytes_out 0 91980 bytes_in 0 91980 station_ip 5.202.98.91 91980 port 15728672 91980 nas_port_type Virtual 91980 remote_ip 5.5.5.238 91981 username madadi2 91981 unique_id port 91981 terminate_cause Lost-Carrier 91981 bytes_out 26721 91981 bytes_in 179084 91981 station_ip 5.120.49.192 91981 port 15728671 91981 nas_port_type Virtual 91981 remote_ip 5.5.5.231 91982 username alinezhad 91982 unique_id port 91982 terminate_cause User-Request 91982 bytes_out 0 91982 bytes_in 0 91982 station_ip 5.202.98.91 91982 port 15728673 91982 nas_port_type Virtual 91982 remote_ip 5.5.5.238 91994 username alinezhad 91994 unique_id port 91994 terminate_cause User-Request 91994 bytes_out 0 91994 bytes_in 0 91994 station_ip 5.202.98.91 91994 port 15728689 91994 nas_port_type Virtual 91994 remote_ip 5.5.5.238 91996 username bcboard 91996 unique_id port 91996 terminate_cause User-Request 91996 bytes_out 2500922 91996 bytes_in 82706130 91996 station_ip 37.129.246.50 91996 port 15728685 91996 nas_port_type Virtual 91996 remote_ip 5.5.5.237 91998 username aminvpn 91998 mac 91998 bytes_out 1285352 91998 bytes_in 6822768 91998 station_ip 37.129.149.56 91998 port 1 91998 unique_id port 91998 remote_ip 10.8.0.6 92000 username alinezhad 92000 unique_id port 92000 terminate_cause User-Request 92000 bytes_out 0 92000 bytes_in 0 92000 station_ip 5.202.98.91 92000 port 15728693 91987 bytes_out 0 91987 bytes_in 0 91987 station_ip 5.202.98.91 91987 port 15728678 91987 nas_port_type Virtual 91987 remote_ip 5.5.5.238 91989 username bcboard 91989 unique_id port 91989 terminate_cause User-Request 91989 bytes_out 5397456 91989 bytes_in 174267584 91989 station_ip 37.129.246.50 91989 port 15728675 91989 nas_port_type Virtual 91989 remote_ip 5.5.5.237 91990 username alireza1 91990 unique_id port 91990 terminate_cause User-Request 91990 bytes_out 92776 91990 bytes_in 364711 91990 station_ip 5.119.94.128 91990 port 15728680 91990 nas_port_type Virtual 91990 remote_ip 5.5.5.249 91992 username madadi2 91992 unique_id port 91992 terminate_cause NAS-Error 91992 bytes_out 43 91992 bytes_in 367 91992 station_ip 5.119.117.80 91992 port 15728684 91992 nas_port_type Virtual 91992 remote_ip 5.5.5.226 91993 username mammad 91993 unique_id port 91993 terminate_cause User-Request 91993 bytes_out 0 91993 bytes_in 0 91993 station_ip 2.183.245.234 91993 port 15728687 91993 nas_port_type Virtual 91993 remote_ip 5.5.5.225 91995 username mammad 91995 unique_id port 91995 terminate_cause Lost-Carrier 91995 bytes_out 896033 91995 bytes_in 14283522 91995 station_ip 5.233.60.108 91995 port 15728679 91995 nas_port_type Virtual 91995 remote_ip 5.5.5.228 91997 username hashtadani 91997 unique_id port 91997 terminate_cause Lost-Carrier 91997 bytes_out 1115893 91997 bytes_in 13400242 91997 station_ip 5.202.133.193 91997 port 15728688 91997 nas_port_type Virtual 91997 remote_ip 5.5.5.232 92005 username kamali 92005 unique_id port 92005 terminate_cause User-Request 92005 bytes_out 60108 92005 bytes_in 236583 92005 station_ip 83.123.85.163 92005 port 15728697 92005 nas_port_type Virtual 92005 remote_ip 5.5.5.222 92007 username aminvpn 92007 mac 92007 bytes_out 0 92007 bytes_in 0 92007 station_ip 37.129.149.56 92007 port 1 92007 unique_id port 92007 remote_ip 10.8.0.6 92010 username mohammadreza 92010 mac 92010 bytes_out 0 92010 bytes_in 0 92010 station_ip 46.225.232.224 92010 port 4 92010 unique_id port 92010 remote_ip 10.8.0.38 92011 username mohammadreza 92011 mac 92011 bytes_out 0 92011 bytes_in 0 92011 station_ip 46.225.232.224 92011 port 4 92011 unique_id port 92011 remote_ip 10.8.0.38 92012 username ahmadipour 92012 unique_id port 92012 terminate_cause User-Request 92012 bytes_out 189974 92012 bytes_in 3044043 92012 station_ip 37.129.103.156 92012 port 15728702 92012 nas_port_type Virtual 92012 remote_ip 5.5.5.219 92013 username mohammadreza 92013 mac 92013 bytes_out 75268 92013 bytes_in 566223 92013 station_ip 46.225.232.224 92013 port 4 92013 unique_id port 92013 remote_ip 10.8.0.38 92017 username alinezhad 92017 unique_id port 92017 terminate_cause User-Request 92017 bytes_out 0 92017 bytes_in 0 92017 station_ip 5.202.98.91 92017 port 15728707 92017 nas_port_type Virtual 92017 remote_ip 5.5.5.238 92022 username madadi2 92022 unique_id port 92022 terminate_cause Lost-Carrier 92022 bytes_out 28359 92022 bytes_in 259270 92022 station_ip 5.120.139.81 92022 port 15728703 92022 nas_port_type Virtual 92022 remote_ip 5.5.5.220 92026 username ahmadi 92026 unique_id port 92026 terminate_cause User-Request 92026 bytes_out 208198 92026 bytes_in 599341 92026 station_ip 113.203.8.27 92026 port 15728710 92026 nas_port_type Virtual 92026 remote_ip 5.5.5.214 92029 username caferibar 92029 unique_id port 92029 terminate_cause Lost-Carrier 92029 bytes_out 65135 92029 bytes_in 290184 92029 station_ip 93.114.16.14 92029 port 15728713 92029 nas_port_type Virtual 92029 remote_ip 5.5.5.211 92036 username zamanialireza 91999 bytes_out 431043 91999 bytes_in 13068401 91999 station_ip 37.129.246.50 91999 port 15728690 91999 nas_port_type Virtual 91999 remote_ip 5.5.5.237 92001 username bcboard 92001 unique_id port 92001 terminate_cause User-Request 92001 bytes_out 1801185 92001 bytes_in 54855587 92001 station_ip 37.129.246.50 92001 port 15728692 92001 nas_port_type Virtual 92001 remote_ip 5.5.5.237 92003 username forozande 92003 unique_id port 92003 terminate_cause User-Request 92003 bytes_out 28380 92003 bytes_in 57962 92003 station_ip 83.123.243.190 92003 port 15728695 92003 nas_port_type Virtual 92003 remote_ip 5.5.5.223 92006 username bcboard 92006 unique_id port 92006 terminate_cause Lost-Carrier 92006 bytes_out 2206756 92006 bytes_in 71294037 92006 station_ip 37.129.246.50 92006 port 15728694 92006 nas_port_type Virtual 92006 remote_ip 5.5.5.237 92008 username alinezhad 92008 unique_id port 92008 terminate_cause User-Request 92008 bytes_out 0 92008 bytes_in 0 92008 station_ip 5.202.98.91 92008 port 15728699 92008 nas_port_type Virtual 92008 remote_ip 5.5.5.238 92009 username forozande 92009 unique_id port 92009 terminate_cause User-Request 92009 bytes_out 23448 92009 bytes_in 267558 92009 station_ip 113.203.21.1 92009 port 15728700 92009 nas_port_type Virtual 92009 remote_ip 5.5.5.221 92014 username madadi2 92014 unique_id port 92014 terminate_cause User-Request 92014 bytes_out 325562 92014 bytes_in 2685015 92014 station_ip 5.120.139.81 92014 port 15728701 92014 nas_port_type Virtual 92014 remote_ip 5.5.5.220 92015 username caferibar 92015 unique_id port 92015 terminate_cause User-Request 92015 bytes_out 49436 92015 bytes_in 883705 92015 station_ip 83.122.193.41 92015 port 15728704 92015 nas_port_type Virtual 92015 remote_ip 5.5.5.218 92016 username forozande 92016 unique_id port 92016 terminate_cause User-Request 92016 bytes_out 0 92016 bytes_in 0 92016 station_ip 113.203.31.206 92016 port 15728706 92016 nas_port_type Virtual 92016 remote_ip 5.5.5.217 92018 username mohammadreza 92018 mac 92018 bytes_out 95985 92018 bytes_in 243722 92018 station_ip 113.203.6.84 92018 port 4 92018 unique_id port 92018 remote_ip 10.8.0.38 92023 username caferibar 92023 unique_id port 92023 terminate_cause Lost-Carrier 92023 bytes_out 11609311 92023 bytes_in 202073007 92023 station_ip 5.119.46.223 92023 port 15728691 92023 nas_port_type Virtual 92023 remote_ip 5.5.5.224 92025 username forozande 92025 unique_id port 92025 terminate_cause User-Request 92025 bytes_out 54167 92025 bytes_in 171558 92025 station_ip 83.123.69.150 92025 port 15728711 92025 nas_port_type Virtual 92025 remote_ip 5.5.5.213 92028 username caferibar 92028 unique_id port 92028 terminate_cause User-Request 92028 bytes_out 1392031 92028 bytes_in 10298285 92028 station_ip 5.120.120.243 92028 port 15728708 92028 nas_port_type Virtual 92028 remote_ip 5.5.5.216 92030 username amirabbas 92030 unique_id port 92030 terminate_cause Lost-Carrier 92030 bytes_out 1684765 92030 bytes_in 39470680 92030 station_ip 31.56.112.176 92030 port 15728712 92030 nas_port_type Virtual 92030 remote_ip 5.5.5.212 92032 username amirabbas 92032 unique_id port 92032 terminate_cause Lost-Carrier 92032 bytes_out 930190 92032 bytes_in 20850126 92032 station_ip 151.238.226.251 92032 port 15728714 92032 nas_port_type Virtual 92032 remote_ip 5.5.5.210 92034 username ahmadipour 92034 unique_id port 92034 terminate_cause Lost-Carrier 92034 bytes_out 43077 92034 bytes_in 585375 92034 station_ip 37.129.102.224 92034 port 15728721 92034 nas_port_type Virtual 92034 remote_ip 5.5.5.206 92037 username aminvpn 92037 mac 92037 bytes_out 0 92037 bytes_in 0 92000 nas_port_type Virtual 92000 remote_ip 5.5.5.238 92002 username alireza1 92002 unique_id port 92002 terminate_cause Lost-Carrier 92002 bytes_out 236208 92002 bytes_in 1242215 92002 station_ip 5.119.94.128 92002 port 15728686 92002 nas_port_type Virtual 92002 remote_ip 5.5.5.249 92004 username alinezhad 92004 unique_id port 92004 terminate_cause User-Request 92004 bytes_out 0 92004 bytes_in 0 92004 station_ip 5.202.98.91 92004 port 15728696 92004 nas_port_type Virtual 92004 remote_ip 5.5.5.238 92019 username aminvpn 92019 mac 92019 bytes_out 0 92019 bytes_in 0 92019 station_ip 37.129.149.56 92019 port 1 92019 unique_id port 92019 remote_ip 10.8.0.6 92020 username ahmadipour 92020 unique_id port 92020 terminate_cause Lost-Carrier 92020 bytes_out 2284025 92020 bytes_in 41873344 92020 station_ip 37.129.103.156 92020 port 15728705 92020 nas_port_type Virtual 92020 remote_ip 5.5.5.219 92021 username aminvpn 92021 mac 92021 bytes_out 0 92021 bytes_in 0 92021 station_ip 37.129.149.56 92021 port 1 92021 unique_id port 92021 remote_ip 10.8.0.6 92024 username aminvpn 92024 mac 92024 bytes_out 0 92024 bytes_in 0 92024 station_ip 37.129.245.21 92024 port 1 92024 unique_id port 92024 remote_ip 10.8.0.6 92027 username aminvpn 92027 unique_id port 92027 terminate_cause User-Request 92027 bytes_out 425727 92027 bytes_in 5178518 92027 station_ip 5.119.103.206 92027 port 15728709 92027 nas_port_type Virtual 92027 remote_ip 5.5.5.215 92031 username alinezhad 92031 unique_id port 92031 terminate_cause User-Request 92031 bytes_out 0 92031 bytes_in 0 92031 station_ip 5.202.98.91 92031 port 15728717 92031 nas_port_type Virtual 92031 remote_ip 5.5.5.238 92033 username mammad 92033 unique_id port 92033 terminate_cause User-Request 92033 bytes_out 1277949 92033 bytes_in 21066075 92033 station_ip 5.233.69.230 92033 port 15728716 92033 nas_port_type Virtual 92033 remote_ip 5.5.5.209 92035 username sobhan 92035 unique_id port 92035 terminate_cause User-Request 92035 bytes_out 1050254 92035 bytes_in 27940819 92035 station_ip 5.119.174.157 92035 port 15728720 92035 nas_port_type Virtual 92035 remote_ip 5.5.5.207 92043 username alireza1 92043 unique_id port 92043 terminate_cause Lost-Carrier 92043 bytes_out 16308 92043 bytes_in 149486 92043 station_ip 5.119.148.236 92043 port 15728723 92043 nas_port_type Virtual 92043 remote_ip 5.5.5.208 92044 username aminvpn 92044 mac 92044 bytes_out 0 92044 bytes_in 0 92044 station_ip 37.129.5.163 92044 port 1 92044 unique_id port 92044 remote_ip 10.8.0.6 92045 username aminvpn 92045 mac 92045 bytes_out 0 92045 bytes_in 0 92045 station_ip 37.129.174.97 92045 port 6 92045 unique_id port 92045 remote_ip 10.8.0.6 92051 username amirabbas 92051 unique_id port 92051 terminate_cause User-Request 92051 bytes_out 3370628 92051 bytes_in 73073978 92051 station_ip 31.56.222.146 92051 port 15728724 92051 nas_port_type Virtual 92051 remote_ip 5.5.5.205 92053 username heydari 92053 unique_id port 92053 terminate_cause Lost-Carrier 92053 bytes_out 285752 92053 bytes_in 1595499 92053 station_ip 5.119.221.41 92053 port 15728715 92053 nas_port_type Virtual 92053 remote_ip 5.5.5.240 92054 username mammad 92054 unique_id port 92054 terminate_cause User-Request 92054 bytes_out 1166295 92054 bytes_in 21790027 92054 station_ip 5.233.69.230 92054 port 15728732 92054 nas_port_type Virtual 92054 remote_ip 5.5.5.209 92055 username amirabbas 92055 unique_id port 92055 terminate_cause User-Request 92055 bytes_out 0 92055 bytes_in 0 92055 station_ip 31.56.222.146 92036 kill_reason Relative expiration date has reached 92036 unique_id port 92036 bytes_out 0 92036 bytes_in 0 92036 station_ip 5.120.109.122 92036 port 15728722 92036 nas_port_type Virtual 92038 username alireza1 92038 unique_id port 92038 terminate_cause Lost-Carrier 92038 bytes_out 276407 92038 bytes_in 964442 92038 station_ip 5.119.148.236 92038 port 15728718 92038 nas_port_type Virtual 92038 remote_ip 5.5.5.208 92041 username askari 92041 kill_reason Another user logged on this global unique id 92041 mac 92041 bytes_out 0 92041 bytes_in 0 92041 station_ip 5.120.145.9 92041 port 4 92041 unique_id port 92041 remote_ip 10.8.0.34 92042 username askari 92042 kill_reason Another user logged on this global unique id 92042 mac 92042 bytes_out 0 92042 bytes_in 0 92042 station_ip 5.120.145.9 92042 port 4 92042 unique_id port 92046 username mahdixz 92046 unique_id port 92046 terminate_cause User-Request 92046 bytes_out 0 92046 bytes_in 0 92046 station_ip 5.119.131.14 92046 port 15728731 92046 nas_port_type Virtual 92046 remote_ip 5.5.5.202 92047 username aminvpn 92047 mac 92047 bytes_out 0 92047 bytes_in 0 92047 station_ip 37.129.5.163 92047 port 1 92047 unique_id port 92047 remote_ip 10.8.0.6 92049 username aminvpn 92049 mac 92049 bytes_out 0 92049 bytes_in 0 92049 station_ip 37.129.174.97 92049 port 1 92049 unique_id port 92049 remote_ip 10.8.0.6 92056 username aminvpn 92056 mac 92056 bytes_out 0 92056 bytes_in 0 92056 station_ip 37.129.5.163 92056 port 6 92056 unique_id port 92056 remote_ip 10.8.0.6 92060 username mohammadreza 92060 mac 92060 bytes_out 0 92060 bytes_in 0 92060 station_ip 2.184.5.0 92060 port 4 92060 unique_id port 92060 remote_ip 10.8.0.38 92063 username mirzaei 92063 mac 92063 bytes_out 0 92063 bytes_in 0 92063 station_ip 5.114.127.113 92063 port 1 92063 unique_id port 92063 remote_ip 10.8.0.14 92064 username madadi2 92064 unique_id port 92064 terminate_cause User-Request 92064 bytes_out 327449 92064 bytes_in 1012233 92064 station_ip 5.119.236.33 92064 port 15728736 92064 nas_port_type Virtual 92064 remote_ip 5.5.5.203 92066 username forozande 92066 unique_id port 92066 terminate_cause User-Request 92066 bytes_out 21015 92066 bytes_in 73012 92066 station_ip 113.203.70.143 92066 port 15728743 92066 nas_port_type Virtual 92066 remote_ip 5.5.5.197 92068 username askari 92068 kill_reason Another user logged on this global unique id 92068 mac 92068 bytes_out 0 92068 bytes_in 0 92068 station_ip 5.120.145.9 92068 port 6 92068 unique_id port 92068 remote_ip 10.8.0.34 92070 username shahnaz 92070 kill_reason Relative expiration date has reached 92070 unique_id port 92070 bytes_out 0 92070 bytes_in 0 92070 station_ip 5.119.8.178 92070 port 15728745 92070 nas_port_type Virtual 92076 username askari 92076 kill_reason Another user logged on this global unique id 92076 mac 92076 bytes_out 0 92076 bytes_in 0 92076 station_ip 5.120.145.9 92076 port 6 92076 unique_id port 92079 username aminvpn 92079 unique_id port 92079 terminate_cause Lost-Carrier 92079 bytes_out 492338 92079 bytes_in 7736218 92079 station_ip 5.119.131.14 92079 port 15728751 92079 nas_port_type Virtual 92079 remote_ip 5.5.5.192 92081 username heydari 92081 unique_id port 92081 terminate_cause User-Request 92081 bytes_out 319384 92081 bytes_in 1854659 92081 station_ip 5.119.221.41 92081 port 15728739 92081 nas_port_type Virtual 92081 remote_ip 5.5.5.240 92082 username forozande 92082 unique_id port 92082 terminate_cause User-Request 92082 bytes_out 116908 92037 station_ip 37.129.174.97 92037 port 1 92037 unique_id port 92037 remote_ip 10.8.0.6 92039 username aminvpn 92039 mac 92039 bytes_out 698032 92039 bytes_in 16171918 92039 station_ip 37.129.174.97 92039 port 1 92039 unique_id port 92039 remote_ip 10.8.0.6 92040 username madadi2 92040 unique_id port 92040 terminate_cause User-Request 92040 bytes_out 0 92040 bytes_in 0 92040 station_ip 5.119.236.33 92040 port 15728726 92040 nas_port_type Virtual 92040 remote_ip 5.5.5.203 92048 username aminvpn 92048 mac 92048 bytes_out 0 92048 bytes_in 0 92048 station_ip 37.129.174.97 92048 port 6 92048 unique_id port 92048 remote_ip 10.8.0.6 92050 username askari 92050 mac 92050 bytes_out 0 92050 bytes_in 0 92050 station_ip 5.120.145.9 92050 port 4 92050 unique_id port 92052 username jamali 92052 unique_id port 92052 terminate_cause User-Request 92052 bytes_out 172143 92052 bytes_in 3551073 92052 station_ip 83.123.62.63 92052 port 15728733 92052 nas_port_type Virtual 92052 remote_ip 5.5.5.201 92058 username madadi2 92058 unique_id port 92058 terminate_cause User-Request 92058 bytes_out 427818 92058 bytes_in 705324 92058 station_ip 5.119.236.33 92058 port 15728730 92058 nas_port_type Virtual 92058 remote_ip 5.5.5.203 92061 username alinezhad 92061 unique_id port 92061 terminate_cause User-Request 92061 bytes_out 0 92061 bytes_in 0 92061 station_ip 5.202.98.91 92061 port 15728738 92061 nas_port_type Virtual 92061 remote_ip 5.5.5.238 92067 username forozande 92067 unique_id port 92067 terminate_cause User-Request 92067 bytes_out 10919 92067 bytes_in 24187 92067 station_ip 83.123.105.174 92067 port 15728744 92067 nas_port_type Virtual 92067 remote_ip 5.5.5.196 92069 username mohammadreza 92069 mac 92069 bytes_out 252104 92069 bytes_in 2854768 92069 station_ip 94.176.10.42 92069 port 1 92069 unique_id port 92069 remote_ip 10.8.0.38 92072 username forozande 92072 unique_id port 92072 terminate_cause User-Request 92072 bytes_out 42260 92072 bytes_in 326266 92072 station_ip 83.122.65.142 92072 port 15728748 92072 nas_port_type Virtual 92072 remote_ip 5.5.5.194 92073 username mohammadreza 92073 mac 92073 bytes_out 0 92073 bytes_in 0 92073 station_ip 5.233.81.249 92073 port 5 92073 unique_id port 92073 remote_ip 10.8.0.38 92077 username aminvpn 92077 kill_reason Maximum check online fails reached 92077 unique_id port 92077 bytes_out 81043 92077 bytes_in 446785 92077 station_ip 5.120.86.12 92077 port 15728750 92077 nas_port_type Virtual 92077 remote_ip 5.5.5.193 92080 username forozande 92080 unique_id port 92080 terminate_cause User-Request 92080 bytes_out 32611 92080 bytes_in 226117 92080 station_ip 37.129.158.7 92080 port 15728753 92080 nas_port_type Virtual 92080 remote_ip 5.5.5.190 92083 username mohammadreza 92083 kill_reason Another user logged on this global unique id 92083 mac 92083 bytes_out 0 92083 bytes_in 0 92083 station_ip 2.183.128.103 92083 port 1 92083 unique_id port 92083 remote_ip 10.8.0.38 92087 username aminvpn 92087 unique_id port 92087 terminate_cause Lost-Carrier 92087 bytes_out 108072 92087 bytes_in 505368 92087 station_ip 5.120.155.100 92087 port 15728755 92087 nas_port_type Virtual 92087 remote_ip 5.5.5.188 92089 username alinezhad 92089 unique_id port 92089 terminate_cause User-Request 92089 bytes_out 0 92089 bytes_in 0 92089 station_ip 5.202.132.198 92089 port 15728757 92089 nas_port_type Virtual 92089 remote_ip 5.5.5.186 92091 username asadi 92091 unique_id port 92091 terminate_cause User-Request 92091 bytes_out 156646 92091 bytes_in 1297123 92055 port 15728734 92055 nas_port_type Virtual 92055 remote_ip 5.5.5.205 92057 username askari 92057 kill_reason Another user logged on this global unique id 92057 mac 92057 bytes_out 0 92057 bytes_in 0 92057 station_ip 5.120.145.9 92057 port 1 92057 unique_id port 92057 remote_ip 10.8.0.34 92059 username askari 92059 mac 92059 bytes_out 0 92059 bytes_in 0 92059 station_ip 5.120.145.9 92059 port 1 92059 unique_id port 92062 username mirzaei 92062 mac 92062 bytes_out 0 92062 bytes_in 0 92062 station_ip 5.119.127.6 92062 port 5 92062 unique_id port 92062 remote_ip 10.8.0.14 92065 username forozande 92065 unique_id port 92065 terminate_cause User-Request 92065 bytes_out 32408 92065 bytes_in 72431 92065 station_ip 113.203.70.143 92065 port 15728742 92065 nas_port_type Virtual 92065 remote_ip 5.5.5.197 92071 username alinezhad 92071 unique_id port 92071 terminate_cause User-Request 92071 bytes_out 0 92071 bytes_in 0 92071 station_ip 5.202.98.91 92071 port 15728747 92071 nas_port_type Virtual 92071 remote_ip 5.5.5.238 92074 username forozande 92074 unique_id port 92074 terminate_cause User-Request 92074 bytes_out 44504 92074 bytes_in 389364 92074 station_ip 83.122.65.142 92074 port 15728749 92074 nas_port_type Virtual 92074 remote_ip 5.5.5.194 92075 username mahbobeh 92075 unique_id port 92075 terminate_cause Lost-Carrier 92075 bytes_out 150207 92075 bytes_in 858543 92075 station_ip 37.129.133.209 92075 port 15728740 92075 nas_port_type Virtual 92075 remote_ip 5.5.5.198 92078 username askari 92078 mac 92078 bytes_out 0 92078 bytes_in 0 92078 station_ip 5.120.145.9 92078 port 6 92078 unique_id port 92088 username caferibar 92088 unique_id port 92088 terminate_cause Lost-Carrier 92088 bytes_out 1740475 92088 bytes_in 39849357 92088 station_ip 5.120.63.34 92088 port 15728746 92088 nas_port_type Virtual 92088 remote_ip 5.5.5.195 92090 username mirzaei 92090 mac 92090 bytes_out 0 92090 bytes_in 0 92090 station_ip 5.119.52.111 92090 port 4 92090 unique_id port 92090 remote_ip 10.8.0.14 92096 username caferibar 92096 unique_id port 92096 terminate_cause Lost-Carrier 92096 bytes_out 398765 92096 bytes_in 11289824 92096 station_ip 5.119.175.74 92096 port 15728756 92096 nas_port_type Virtual 92096 remote_ip 5.5.5.187 92097 username heydarizadeh 92097 unique_id port 92097 terminate_cause Lost-Carrier 92097 bytes_out 399357 92097 bytes_in 5017001 92097 station_ip 5.120.155.77 92097 port 15728759 92097 nas_port_type Virtual 92097 remote_ip 5.5.5.185 92098 username alinezhad 92098 unique_id port 92098 terminate_cause User-Request 92098 bytes_out 0 92098 bytes_in 0 92098 station_ip 5.202.132.198 92098 port 15728764 92098 nas_port_type Virtual 92098 remote_ip 5.5.5.186 92100 username mirzaei 92100 mac 92100 bytes_out 0 92100 bytes_in 0 92100 station_ip 5.120.160.240 92100 port 4 92100 unique_id port 92100 remote_ip 10.8.0.14 92102 username alireza1 92102 unique_id port 92102 terminate_cause Lost-Carrier 92102 bytes_out 675297 92102 bytes_in 810187 92102 station_ip 5.119.65.198 92102 port 15728762 92102 nas_port_type Virtual 92102 remote_ip 5.5.5.182 92110 username farhad 92110 unique_id port 92110 terminate_cause Lost-Carrier 92110 bytes_out 878598 92110 bytes_in 5325993 92110 station_ip 5.119.123.120 92110 port 15728770 92110 nas_port_type Virtual 92110 remote_ip 5.5.5.177 92115 username mahbobeh 92115 unique_id port 92115 terminate_cause Lost-Carrier 92115 bytes_out 1551684 92115 bytes_in 25852096 92115 station_ip 83.122.204.11 92115 port 15728769 92082 bytes_in 184623 92082 station_ip 83.122.4.101 92082 port 15728754 92082 nas_port_type Virtual 92082 remote_ip 5.5.5.189 92084 username mohammadreza 92084 mac 92084 bytes_out 0 92084 bytes_in 0 92084 station_ip 2.183.150.161 92084 port 1 92084 unique_id port 92084 remote_ip 10.8.1.22 92085 username mohammadreza 92085 mac 92085 bytes_out 0 92085 bytes_in 0 92085 station_ip 2.184.5.230 92085 port 1 92085 unique_id port 92085 remote_ip 10.8.0.38 92086 username madadi2 92086 unique_id port 92086 terminate_cause User-Request 92086 bytes_out 473782 92086 bytes_in 1081582 92086 station_ip 5.119.236.33 92086 port 15728741 92086 nas_port_type Virtual 92086 remote_ip 5.5.5.203 92092 username heydarizadeh 92092 unique_id port 92092 terminate_cause Lost-Carrier 92092 bytes_out 1484991 92092 bytes_in 46012659 92092 station_ip 5.119.166.98 92092 port 15728752 92092 nas_port_type Virtual 92092 remote_ip 5.5.5.191 92095 username mirzaei 92095 mac 92095 bytes_out 0 92095 bytes_in 0 92095 station_ip 5.113.136.45 92095 port 1 92095 unique_id port 92095 remote_ip 10.8.1.14 92099 username kamali 92099 unique_id port 92099 terminate_cause User-Request 92099 bytes_out 178632 92099 bytes_in 1566709 92099 station_ip 37.129.64.189 92099 port 15728765 92099 nas_port_type Virtual 92099 remote_ip 5.5.5.180 92103 username kamali 92103 unique_id port 92103 terminate_cause User-Request 92103 bytes_out 11073 92103 bytes_in 25314 92103 station_ip 37.129.64.189 92103 port 15728767 92103 nas_port_type Virtual 92103 remote_ip 5.5.5.180 92107 username forozande 92107 unique_id port 92107 terminate_cause User-Request 92107 bytes_out 35392 92107 bytes_in 71564 92107 station_ip 83.123.180.225 92107 port 15728773 92107 nas_port_type Virtual 92107 remote_ip 5.5.5.176 92108 username forozande 92108 unique_id port 92108 terminate_cause User-Request 92108 bytes_out 14795 92108 bytes_in 46950 92108 station_ip 83.123.180.225 92108 port 15728774 92108 nas_port_type Virtual 92108 remote_ip 5.5.5.176 92109 username alinezhad 92109 unique_id port 92109 terminate_cause User-Request 92109 bytes_out 0 92109 bytes_in 0 92109 station_ip 5.202.132.198 92109 port 15728775 92109 nas_port_type Virtual 92109 remote_ip 5.5.5.186 92111 username forozande 92111 unique_id port 92111 terminate_cause User-Request 92111 bytes_out 13949 92111 bytes_in 46359 92111 station_ip 37.129.153.59 92111 port 15728776 92111 nas_port_type Virtual 92111 remote_ip 5.5.5.175 92112 username mammad 92112 unique_id port 92112 terminate_cause User-Request 92112 bytes_out 823189 92112 bytes_in 13097851 92112 station_ip 5.233.69.230 92112 port 15728771 92112 nas_port_type Virtual 92112 remote_ip 5.5.5.209 92114 username alinezhad 92114 unique_id port 92114 terminate_cause User-Request 92114 bytes_out 0 92114 bytes_in 0 92114 station_ip 5.202.132.198 92114 port 15728779 92114 nas_port_type Virtual 92114 remote_ip 5.5.5.186 92116 username farhad 92116 unique_id port 92116 terminate_cause Lost-Carrier 92116 bytes_out 1190702 92116 bytes_in 9390264 92116 station_ip 5.120.177.67 92116 port 15728777 92116 nas_port_type Virtual 92116 remote_ip 5.5.5.174 92123 username forozande 92123 unique_id port 92123 terminate_cause User-Request 92123 bytes_out 21318 92123 bytes_in 84041 92123 station_ip 83.123.156.107 92123 port 15728785 92123 nas_port_type Virtual 92123 remote_ip 5.5.5.170 92124 username mohammadreza 92124 mac 92124 bytes_out 0 92124 bytes_in 0 92124 station_ip 2.184.5.230 92124 port 1 92124 unique_id port 92126 username caferibar 92126 unique_id port 92091 station_ip 83.123.184.203 92091 port 15728761 92091 nas_port_type Virtual 92091 remote_ip 5.5.5.183 92093 username mirzaei 92093 mac 92093 bytes_out 6452 92093 bytes_in 6223 92093 station_ip 5.119.52.111 92093 port 5 92093 unique_id port 92093 remote_ip 10.8.0.14 92094 username ahmadi 92094 unique_id port 92094 terminate_cause User-Request 92094 bytes_out 176106 92094 bytes_in 1712438 92094 station_ip 37.129.15.50 92094 port 15728760 92094 nas_port_type Virtual 92094 remote_ip 5.5.5.184 92101 username mahbobeh 92101 unique_id port 92101 terminate_cause Lost-Carrier 92101 bytes_out 45610 92101 bytes_in 37962 92101 station_ip 83.122.204.11 92101 port 15728766 92101 nas_port_type Virtual 92101 remote_ip 5.5.5.179 92104 username madadi2 92104 unique_id port 92104 terminate_cause Lost-Carrier 92104 bytes_out 431888 92104 bytes_in 1081831 92104 station_ip 5.119.236.33 92104 port 15728758 92104 nas_port_type Virtual 92104 remote_ip 5.5.5.203 92105 username mohammadreza 92105 kill_reason Another user logged on this global unique id 92105 mac 92105 bytes_out 0 92105 bytes_in 0 92105 station_ip 2.184.5.230 92105 port 1 92105 unique_id port 92105 remote_ip 10.8.0.38 92106 username alinezhad 92106 unique_id port 92106 terminate_cause User-Request 92106 bytes_out 0 92106 bytes_in 0 92106 station_ip 5.202.132.198 92106 port 15728772 92106 nas_port_type Virtual 92106 remote_ip 5.5.5.186 92113 username forozande 92113 unique_id port 92113 terminate_cause User-Request 92113 bytes_out 27958 92113 bytes_in 44667 92113 station_ip 113.203.47.246 92113 port 15728778 92113 nas_port_type Virtual 92113 remote_ip 5.5.5.173 92118 username alinezhad 92118 unique_id port 92118 terminate_cause User-Request 92118 bytes_out 0 92118 bytes_in 0 92118 station_ip 5.202.132.198 92118 port 15728783 92118 nas_port_type Virtual 92118 remote_ip 5.5.5.186 92119 username madadi2 92119 unique_id port 92119 terminate_cause Lost-Carrier 92119 bytes_out 581 92119 bytes_in 111062 92119 station_ip 5.120.74.24 92119 port 15728781 92119 nas_port_type Virtual 92119 remote_ip 5.5.5.171 92120 username alinezhad 92120 unique_id port 92120 terminate_cause User-Request 92120 bytes_out 0 92120 bytes_in 0 92120 station_ip 5.202.132.198 92120 port 15728784 92120 nas_port_type Virtual 92120 remote_ip 5.5.5.186 92125 username caferibar 92125 unique_id port 92125 terminate_cause Lost-Carrier 92125 bytes_out 231910 92125 bytes_in 4473926 92125 station_ip 5.119.194.120 92125 port 15728786 92125 nas_port_type Virtual 92125 remote_ip 5.5.5.169 92128 username forozande 92128 unique_id port 92128 terminate_cause User-Request 92128 bytes_out 68024 92128 bytes_in 26058 92128 station_ip 37.129.98.175 92128 port 15728789 92128 nas_port_type Virtual 92128 remote_ip 5.5.5.168 92132 username mohammadreza 92132 mac 92132 bytes_out 0 92132 bytes_in 0 92132 station_ip 2.184.5.230 92132 port 1 92132 unique_id port 92133 username alinezhad 92133 unique_id port 92133 terminate_cause User-Request 92133 bytes_out 0 92133 bytes_in 0 92133 station_ip 5.202.132.198 92133 port 15728793 92133 nas_port_type Virtual 92133 remote_ip 5.5.5.186 92134 username forozande 92134 unique_id port 92134 terminate_cause User-Request 92134 bytes_out 55216 92134 bytes_in 63481 92134 station_ip 83.122.96.210 92134 port 15728794 92134 nas_port_type Virtual 92134 remote_ip 5.5.5.167 92135 username farhad 92135 unique_id port 92135 terminate_cause Lost-Carrier 92135 bytes_out 499254 92135 bytes_in 2303307 92135 station_ip 5.119.48.111 92135 port 15728791 92135 nas_port_type Virtual 92135 remote_ip 5.5.5.166 92115 nas_port_type Virtual 92115 remote_ip 5.5.5.179 92117 username caferibar 92117 unique_id port 92117 terminate_cause Lost-Carrier 92117 bytes_out 16318019 92117 bytes_in 34833773 92117 station_ip 5.119.62.161 92117 port 15728768 92117 nas_port_type Virtual 92117 remote_ip 5.5.5.178 92121 username hashtadani 92121 unique_id port 92121 terminate_cause Lost-Carrier 92121 bytes_out 19155970 92121 bytes_in 308528300 92121 station_ip 83.122.249.213 92121 port 15728737 92121 nas_port_type Virtual 92121 remote_ip 5.5.5.199 92122 username mahbobeh 92122 unique_id port 92122 terminate_cause Lost-Carrier 92122 bytes_out 631717 92122 bytes_in 5499496 92122 station_ip 83.122.204.11 92122 port 15728782 92122 nas_port_type Virtual 92122 remote_ip 5.5.5.179 92129 username mohammadreza 92129 kill_reason Another user logged on this global unique id 92129 mac 92129 bytes_out 0 92129 bytes_in 0 92129 station_ip 2.184.5.230 92129 port 1 92129 unique_id port 92129 remote_ip 10.8.0.38 92138 username aminvpn 92138 unique_id port 92138 terminate_cause User-Request 92138 bytes_out 8949393 92138 bytes_in 75634900 92138 station_ip 5.120.47.162 92138 port 15728763 92138 nas_port_type Virtual 92138 remote_ip 5.5.5.181 92141 username ahmadipour 92141 unique_id port 92141 terminate_cause Lost-Carrier 92141 bytes_out 14116679 92141 bytes_in 22002313 92141 station_ip 37.129.71.128 92141 port 15728797 92141 nas_port_type Virtual 92141 remote_ip 5.5.5.163 92142 username aminvpn 92142 kill_reason Another user logged on this global unique id 92142 mac 92142 bytes_out 0 92142 bytes_in 0 92142 station_ip 5.120.47.162 92142 port 1 92142 unique_id port 92142 remote_ip 10.8.0.6 92143 username alinezhad 92143 unique_id port 92143 terminate_cause User-Request 92143 bytes_out 0 92143 bytes_in 0 92143 station_ip 5.202.132.198 92143 port 15728804 92143 nas_port_type Virtual 92143 remote_ip 5.5.5.186 92145 username forozande 92145 unique_id port 92145 terminate_cause User-Request 92145 bytes_out 12407 92145 bytes_in 28215 92145 station_ip 83.122.213.165 92145 port 15728806 92145 nas_port_type Virtual 92145 remote_ip 5.5.5.158 92149 username mirzaei 92149 mac 92149 bytes_out 77427 92149 bytes_in 61583 92149 station_ip 5.119.42.16 92149 port 5 92149 unique_id port 92149 remote_ip 10.8.0.14 92153 username ahmadipour 92153 unique_id port 92153 terminate_cause Lost-Carrier 92153 bytes_out 1090539 92153 bytes_in 16705084 92153 station_ip 37.129.97.16 92153 port 15728811 92153 nas_port_type Virtual 92153 remote_ip 5.5.5.155 92155 username farhad 92155 unique_id port 92155 terminate_cause Lost-Carrier 92155 bytes_out 13214870 92155 bytes_in 123580100 92155 station_ip 5.119.28.189 92155 port 15728792 92155 nas_port_type Virtual 92155 remote_ip 5.5.5.165 92158 username forozande 92158 unique_id port 92158 terminate_cause User-Request 92158 bytes_out 29084 92158 bytes_in 60491 92158 station_ip 37.129.107.254 92158 port 15728815 92158 nas_port_type Virtual 92158 remote_ip 5.5.5.152 92159 username sobhan 92159 unique_id port 92159 terminate_cause User-Request 92159 bytes_out 807597 92159 bytes_in 5246787 92159 station_ip 31.56.219.139 92159 port 15728800 92159 nas_port_type Virtual 92159 remote_ip 5.5.5.161 92162 username bcboard 92162 unique_id port 92162 terminate_cause User-Request 92162 bytes_out 320961 92162 bytes_in 910344 92162 station_ip 37.129.200.86 92162 port 15728819 92162 nas_port_type Virtual 92162 remote_ip 5.5.5.154 92164 username ahmadi 92164 unique_id port 92164 terminate_cause User-Request 92164 bytes_out 361566 92164 bytes_in 7448424 92164 station_ip 37.129.15.50 92164 port 15728820 92126 terminate_cause User-Request 92126 bytes_out 9091874 92126 bytes_in 350320864 92126 station_ip 94.241.181.120 92126 port 15728725 92126 nas_port_type Virtual 92126 remote_ip 5.5.5.204 92127 username alinezhad 92127 unique_id port 92127 terminate_cause User-Request 92127 bytes_out 0 92127 bytes_in 0 92127 station_ip 5.202.132.198 92127 port 15728788 92127 nas_port_type Virtual 92127 remote_ip 5.5.5.186 92130 username forozande 92130 unique_id port 92130 terminate_cause User-Request 92130 bytes_out 29288 92130 bytes_in 137989 92130 station_ip 83.122.96.210 92130 port 15728790 92130 nas_port_type Virtual 92130 remote_ip 5.5.5.167 92131 username farhad 92131 unique_id port 92131 terminate_cause Lost-Carrier 92131 bytes_out 14931309 92131 bytes_in 219381758 92131 station_ip 5.120.50.173 92131 port 15728780 92131 nas_port_type Virtual 92131 remote_ip 5.5.5.172 92136 username mahbobeh 92136 unique_id port 92136 terminate_cause Lost-Carrier 92136 bytes_out 1796800 92136 bytes_in 25694650 92136 station_ip 83.122.204.11 92136 port 15728787 92136 nas_port_type Virtual 92136 remote_ip 5.5.5.179 92137 username mammad 92137 unique_id port 92137 terminate_cause User-Request 92137 bytes_out 156821 92137 bytes_in 1044195 92137 station_ip 5.233.69.230 92137 port 15728796 92137 nas_port_type Virtual 92137 remote_ip 5.5.5.209 92144 username forozande 92144 unique_id port 92144 terminate_cause User-Request 92144 bytes_out 19257 92144 bytes_in 29113 92144 station_ip 83.122.213.165 92144 port 15728805 92144 nas_port_type Virtual 92144 remote_ip 5.5.5.158 92150 username aminvpn 92150 mac 92150 bytes_out 0 92150 bytes_in 0 92150 station_ip 5.120.47.162 92150 port 1 92150 unique_id port 92151 username mahdixz 92151 unique_id port 92151 terminate_cause User-Request 92151 bytes_out 172003 92151 bytes_in 626430 92151 station_ip 5.233.78.157 92151 port 15728810 92151 nas_port_type Virtual 92151 remote_ip 5.5.5.156 92152 username tahmasebi 92152 unique_id port 92152 terminate_cause User-Request 92152 bytes_out 4678224 92152 bytes_in 154405627 92152 station_ip 5.119.208.96 92152 port 15728809 92152 nas_port_type Virtual 92152 remote_ip 5.5.5.157 92154 username alinezhad 92154 unique_id port 92154 terminate_cause User-Request 92154 bytes_out 0 92154 bytes_in 0 92154 station_ip 5.202.132.198 92154 port 15728813 92154 nas_port_type Virtual 92154 remote_ip 5.5.5.186 92156 username amirabbas 92156 unique_id port 92156 terminate_cause User-Request 92156 bytes_out 10732249 92156 bytes_in 217693269 92156 station_ip 31.56.157.48 92156 port 15728795 92156 nas_port_type Virtual 92156 remote_ip 5.5.5.164 92157 username caferibar 92157 unique_id port 92157 terminate_cause User-Request 92157 bytes_out 624116 92157 bytes_in 14039906 92157 station_ip 5.119.118.160 92157 port 15728814 92157 nas_port_type Virtual 92157 remote_ip 5.5.5.153 92160 username forozande 92160 unique_id port 92160 terminate_cause User-Request 92160 bytes_out 0 92160 bytes_in 0 92160 station_ip 37.129.107.254 92160 port 15728817 92160 nas_port_type Virtual 92160 remote_ip 5.5.5.152 92168 username khalili 92168 unique_id port 92168 terminate_cause Lost-Carrier 92168 bytes_out 27310904 92168 bytes_in 97723733 92168 station_ip 5.120.54.168 92168 port 15728645 92168 nas_port_type Virtual 92168 remote_ip 5.5.5.250 92173 username caferibar 92173 unique_id port 92173 terminate_cause User-Request 92173 bytes_out 361263 92173 bytes_in 4958672 92173 station_ip 5.120.14.54 92173 port 15728827 92173 nas_port_type Virtual 92173 remote_ip 5.5.5.148 92180 username hashtadani 92180 unique_id port 92180 terminate_cause Lost-Carrier 92139 username alinezhad 92139 unique_id port 92139 terminate_cause User-Request 92139 bytes_out 0 92139 bytes_in 0 92139 station_ip 5.202.132.198 92139 port 15728798 92139 nas_port_type Virtual 92139 remote_ip 5.5.5.186 92140 username forozande 92140 unique_id port 92140 terminate_cause User-Request 92140 bytes_out 26947 92140 bytes_in 110766 92140 station_ip 83.123.94.22 92140 port 15728799 92140 nas_port_type Virtual 92140 remote_ip 5.5.5.162 92146 username heydari 92146 unique_id port 92146 terminate_cause User-Request 92146 bytes_out 88992 92146 bytes_in 1187264 92146 station_ip 5.119.221.41 92146 port 15728807 92146 nas_port_type Virtual 92146 remote_ip 5.5.5.240 92147 username mirzaei 92147 mac 92147 bytes_out 2093949 92147 bytes_in 10469718 92147 station_ip 5.120.2.5 92147 port 4 92147 unique_id port 92147 remote_ip 10.8.0.14 92148 username madadi2 92148 unique_id port 92148 terminate_cause Lost-Carrier 92148 bytes_out 225350 92148 bytes_in 374541 92148 station_ip 5.119.213.203 92148 port 15728803 92148 nas_port_type Virtual 92148 remote_ip 5.5.5.159 92161 username bcboard 92161 unique_id port 92161 terminate_cause User-Request 92161 bytes_out 1115116 92161 bytes_in 18037411 92161 station_ip 37.129.200.86 92161 port 15728812 92161 nas_port_type Virtual 92161 remote_ip 5.5.5.154 92163 username mahbobeh 92163 unique_id port 92163 terminate_cause Lost-Carrier 92163 bytes_out 74112 92163 bytes_in 329223 92163 station_ip 83.122.204.11 92163 port 15728818 92163 nas_port_type Virtual 92163 remote_ip 5.5.5.179 92165 username forozande 92165 unique_id port 92165 terminate_cause User-Request 92165 bytes_out 35561 92165 bytes_in 60745 92165 station_ip 113.203.99.112 92165 port 15728823 92165 nas_port_type Virtual 92165 remote_ip 5.5.5.150 92166 username alireza1 92166 unique_id port 92166 terminate_cause Lost-Carrier 92166 bytes_out 2027994 92166 bytes_in 33770351 92166 station_ip 5.120.78.132 92166 port 15728816 92166 nas_port_type Virtual 92166 remote_ip 5.5.5.151 92172 username heydari 92172 unique_id port 92172 terminate_cause User-Request 92172 bytes_out 135641 92172 bytes_in 539866 92172 station_ip 5.119.221.41 92172 port 15728826 92172 nas_port_type Virtual 92172 remote_ip 5.5.5.240 92174 username caferibar 92174 unique_id port 92174 terminate_cause User-Request 92174 bytes_out 0 92174 bytes_in 0 92174 station_ip 37.129.21.176 92174 port 15728828 92174 nas_port_type Virtual 92174 remote_ip 5.5.5.147 92176 username mahbobeh 92176 unique_id port 92176 terminate_cause Lost-Carrier 92176 bytes_out 4543369 92176 bytes_in 72165741 92176 station_ip 83.122.204.11 92176 port 15728821 92176 nas_port_type Virtual 92176 remote_ip 5.5.5.179 92177 username alinezhad 92177 unique_id port 92177 terminate_cause User-Request 92177 bytes_out 0 92177 bytes_in 0 92177 station_ip 5.202.65.191 92177 port 15728833 92177 nas_port_type Virtual 92177 remote_ip 5.5.5.143 92181 username ahmadi 92181 unique_id port 92181 terminate_cause User-Request 92181 bytes_out 15689 92181 bytes_in 59618 92181 station_ip 37.129.78.194 92181 port 15728835 92181 nas_port_type Virtual 92181 remote_ip 5.5.5.146 92182 username madadi2 92182 unique_id port 92182 terminate_cause Lost-Carrier 92182 bytes_out 575142 92182 bytes_in 4389378 92182 station_ip 5.119.132.92 92182 port 15728830 92182 nas_port_type Virtual 92182 remote_ip 5.5.5.145 92184 username ahmadi 92184 unique_id port 92184 terminate_cause User-Request 92184 bytes_out 156801 92184 bytes_in 2454191 92184 station_ip 37.129.78.194 92184 port 15728837 92184 nas_port_type Virtual 92184 remote_ip 5.5.5.146 92164 nas_port_type Virtual 92164 remote_ip 5.5.5.184 92167 username ahmadi 92167 unique_id port 92167 terminate_cause User-Request 92167 bytes_out 4524 92167 bytes_in 21989 92167 station_ip 37.129.15.50 92167 port 15728822 92167 nas_port_type Virtual 92167 remote_ip 5.5.5.184 92169 username caferibar 92169 unique_id port 92169 terminate_cause User-Request 92169 bytes_out 24422308 92169 bytes_in 804683956 92169 station_ip 94.241.181.120 92169 port 15728735 92169 nas_port_type Virtual 92169 remote_ip 5.5.5.200 92170 username kamali 92170 unique_id port 92170 terminate_cause User-Request 92170 bytes_out 160328 92170 bytes_in 1467477 92170 station_ip 83.123.244.39 92170 port 15728825 92170 nas_port_type Virtual 92170 remote_ip 5.5.5.149 92171 username mammad 92171 unique_id port 92171 terminate_cause User-Request 92171 bytes_out 3136029 92171 bytes_in 16855688 92171 station_ip 5.233.69.230 92171 port 15728824 92171 nas_port_type Virtual 92171 remote_ip 5.5.5.209 92175 username ahmadi 92175 unique_id port 92175 terminate_cause User-Request 92175 bytes_out 0 92175 bytes_in 0 92175 station_ip 37.129.78.194 92175 port 15728829 92175 nas_port_type Virtual 92175 remote_ip 5.5.5.146 92178 username aminvpn 92178 unique_id port 92178 terminate_cause User-Request 92178 bytes_out 3451648 92178 bytes_in 12142419 92178 station_ip 5.120.47.162 92178 port 15728802 92178 nas_port_type Virtual 92178 remote_ip 5.5.5.181 92179 username aminvpn 92179 mac 92179 bytes_out 0 92179 bytes_in 0 92179 station_ip 5.120.47.162 92179 port 1 92179 unique_id port 92179 remote_ip 10.8.0.6 188641 username zahra1101 188641 mac 188641 bytes_out 0 188641 bytes_in 0 188641 station_ip 5.120.128.95 188641 port 383 188641 unique_id port 188641 remote_ip 10.8.0.250 92192 username kamali 92192 unique_id port 92192 terminate_cause User-Request 92192 bytes_out 177429 92192 bytes_in 385484 92192 station_ip 37.129.168.27 92192 port 15728847 92192 nas_port_type Virtual 92192 remote_ip 5.5.5.136 92193 username fariba 92193 mac 92193 bytes_out 24222324 92193 bytes_in 46443753 92193 station_ip 5.119.92.254 92193 port 3 92193 unique_id port 92193 remote_ip 10.8.0.10 92195 username kamali 92195 unique_id port 92195 terminate_cause User-Request 92195 bytes_out 180711 92195 bytes_in 349634 92195 station_ip 37.129.168.27 92195 port 15728848 92195 nas_port_type Virtual 92195 remote_ip 5.5.5.136 188642 username zahra1101 188642 kill_reason Maximum check online fails reached 188642 mac 188642 bytes_out 0 188642 bytes_in 0 188642 station_ip 5.120.128.95 188642 port 360 188642 unique_id port 188645 username zahra1101 92200 username sadegh 92200 unique_id port 92200 terminate_cause User-Request 92200 bytes_out 9452573 92200 bytes_in 160998757 92200 station_ip 5.120.76.205 92200 port 15728850 92200 nas_port_type Virtual 92200 remote_ip 5.5.5.142 92202 username aminvpn 92202 kill_reason Another user logged on this global unique id 92202 mac 92202 bytes_out 0 92202 bytes_in 0 92202 station_ip 5.119.9.194 92202 port 1 92202 unique_id port 92202 remote_ip 10.8.1.6 92206 username alinezhad 92206 unique_id port 92206 terminate_cause User-Request 92206 bytes_out 0 92206 bytes_in 0 92206 station_ip 5.202.65.191 92206 port 15728858 92206 nas_port_type Virtual 92206 remote_ip 5.5.5.143 92208 username askari 92208 mac 92208 bytes_out 0 92208 bytes_in 0 92208 station_ip 5.119.165.62 92208 port 1 92208 unique_id port 92214 username jamali 92214 unique_id port 92214 terminate_cause User-Request 92214 bytes_out 240697 188645 mac 188645 bytes_out 0 92180 bytes_out 608072 92180 bytes_in 4083364 92180 station_ip 5.202.63.108 92180 port 15728831 92180 nas_port_type Virtual 92180 remote_ip 5.5.5.144 92183 username sadegh 92183 unique_id port 92183 terminate_cause Lost-Carrier 92183 bytes_out 3292338 92183 bytes_in 45177357 92183 station_ip 5.120.76.205 92183 port 15728834 92183 nas_port_type Virtual 92183 remote_ip 5.5.5.142 188643 username sekonji0496 188643 mac 188643 bytes_out 0 188643 bytes_in 0 188643 station_ip 83.123.0.241 188643 port 383 188643 unique_id port 188643 remote_ip 10.8.0.62 188644 username zahra1101 188644 mac 188644 bytes_out 0 188644 bytes_in 0 188644 station_ip 5.120.128.95 188644 port 383 188644 unique_id port 188644 remote_ip 10.8.0.250 92194 username alireza1 92194 unique_id port 92194 terminate_cause Lost-Carrier 92194 bytes_out 387417 92194 bytes_in 2823922 92194 station_ip 5.120.49.145 92194 port 15728838 92194 nas_port_type Virtual 92194 remote_ip 5.5.5.140 188647 username sekonji0496 188647 mac 188647 bytes_out 0 188647 bytes_in 0 188647 station_ip 83.123.0.241 188647 port 383 188647 unique_id port 188647 remote_ip 10.8.0.62 188651 username zahra1101 92198 username aminvpn 92198 unique_id port 92198 terminate_cause User-Request 92198 bytes_out 9864109 92198 bytes_in 100193925 92198 station_ip 5.120.155.52 92198 port 15728801 92198 nas_port_type Virtual 92198 remote_ip 5.5.5.160 92199 username alinezhad 92199 unique_id port 92199 terminate_cause User-Request 92199 bytes_out 0 92199 bytes_in 0 92199 station_ip 5.202.65.191 92199 port 15728854 92199 nas_port_type Virtual 92199 remote_ip 5.5.5.143 92201 username arabpour 92201 unique_id port 92201 terminate_cause User-Request 92201 bytes_out 475183 92201 bytes_in 11904956 92201 station_ip 37.129.236.254 92201 port 15728855 92201 nas_port_type Virtual 92201 remote_ip 5.5.5.131 92204 username ahmadipour 92204 unique_id port 92204 terminate_cause Lost-Carrier 92204 bytes_out 166728 92204 bytes_in 1177901 92204 station_ip 37.129.124.132 92204 port 15728856 92204 nas_port_type Virtual 92204 remote_ip 5.5.5.130 188651 mac 188651 bytes_out 3120 188651 bytes_in 5095 188651 station_ip 5.120.128.95 188651 port 383 188651 unique_id port 188651 remote_ip 10.8.0.250 188654 username zahra1101 188654 kill_reason Maximum check online fails reached 92212 username alinezhad 92212 unique_id port 92212 terminate_cause User-Request 92212 bytes_out 67816 92212 bytes_in 60606 92212 station_ip 5.202.65.191 92212 port 15728862 92212 nas_port_type Virtual 92212 remote_ip 5.5.5.143 92215 username forozande 92215 unique_id port 92215 terminate_cause User-Request 92215 bytes_out 70560 92215 bytes_in 1327011 92215 station_ip 83.123.92.162 92215 port 15728866 92215 nas_port_type Virtual 92215 remote_ip 5.5.5.127 92216 username alinezhad 92216 unique_id port 92216 terminate_cause User-Request 92216 bytes_out 0 92216 bytes_in 0 92216 station_ip 5.202.65.191 92216 port 15728867 92216 nas_port_type Virtual 92216 remote_ip 5.5.5.143 92226 username alireza1 92226 unique_id port 92226 terminate_cause Lost-Carrier 92226 bytes_out 89543 92226 bytes_in 916762 92226 station_ip 5.120.49.145 92226 port 15728875 92226 nas_port_type Virtual 92226 remote_ip 5.5.5.140 92228 username amirabbas 92228 unique_id port 92228 terminate_cause User-Request 92228 bytes_out 43238887 92228 bytes_in 933531217 92228 station_ip 31.56.154.228 92228 port 15728852 92228 nas_port_type Virtual 92228 remote_ip 5.5.5.133 92231 username ahmadi 92231 unique_id port 92231 terminate_cause User-Request 188654 mac 188654 bytes_out 0 188654 bytes_in 0 188645 bytes_in 0 188645 station_ip 5.120.128.95 188645 port 383 188645 unique_id port 188645 remote_ip 10.8.0.250 188646 username zahra1101 188646 mac 188646 bytes_out 0 188646 bytes_in 0 92189 username madadi2 92189 unique_id port 92189 terminate_cause Lost-Carrier 92189 bytes_out 439493 92189 bytes_in 2589796 92189 station_ip 5.120.95.232 92189 port 15728836 92189 nas_port_type Virtual 92189 remote_ip 5.5.5.141 188646 station_ip 5.120.128.95 188646 port 387 188646 unique_id port 188646 remote_ip 10.8.0.250 188648 username zahra1101 188648 mac 188648 bytes_out 0 188648 bytes_in 0 188648 station_ip 5.120.128.95 92191 username kamali 92191 unique_id port 92191 terminate_cause User-Request 92191 bytes_out 191351 92191 bytes_in 278575 92191 station_ip 37.129.168.27 92191 port 15728846 92191 nas_port_type Virtual 92191 remote_ip 5.5.5.136 92203 username askari 92203 kill_reason Another user logged on this global unique id 92203 mac 92203 bytes_out 0 92203 bytes_in 0 92203 station_ip 5.119.165.62 92203 port 1 92203 unique_id port 92203 remote_ip 10.8.0.34 92205 username caferibar 92205 unique_id port 92205 terminate_cause User-Request 92205 bytes_out 4684668 92205 bytes_in 86350927 92205 station_ip 5.120.14.54 92205 port 15728832 92205 nas_port_type Virtual 92205 remote_ip 5.5.5.148 92209 username ahmadi 92209 unique_id port 92209 terminate_cause Lost-Carrier 92209 bytes_out 651638 92209 bytes_in 7559806 92209 station_ip 37.129.78.194 92209 port 15728841 92209 nas_port_type Virtual 92209 remote_ip 5.5.5.146 92210 username forozande 92210 unique_id port 92210 terminate_cause User-Request 92210 bytes_out 20723 92210 bytes_in 33439 92210 station_ip 83.123.92.162 92210 port 15728861 92210 nas_port_type Virtual 92210 remote_ip 5.5.5.127 92211 username forozande 92211 unique_id port 92211 terminate_cause User-Request 92211 bytes_out 20408 92211 bytes_in 29808 92211 station_ip 83.123.92.162 92211 port 15728863 92211 nas_port_type Virtual 92211 remote_ip 5.5.5.127 92213 username forozande 92213 unique_id port 92213 terminate_cause User-Request 92213 bytes_out 11742 92213 bytes_in 17092 92213 station_ip 83.123.92.162 92213 port 15728864 92213 nas_port_type Virtual 92213 remote_ip 5.5.5.127 188648 port 383 188648 unique_id port 188648 remote_ip 10.8.0.250 188649 username zahra1101 188649 mac 188649 bytes_out 0 188649 bytes_in 0 188649 station_ip 5.120.128.95 188649 port 383 92220 username jamali 92220 unique_id port 92220 terminate_cause User-Request 92220 bytes_out 343798 92220 bytes_in 6327589 92220 station_ip 83.123.62.63 92220 port 15728872 92220 nas_port_type Virtual 92220 remote_ip 5.5.5.201 188649 unique_id port 188649 remote_ip 10.8.0.250 188650 username sekonji0496 188650 mac 188650 bytes_out 0 188650 bytes_in 0 188650 station_ip 83.123.0.241 188650 port 387 188650 unique_id port 92224 username aminvpn 92224 unique_id port 92224 terminate_cause Lost-Carrier 92224 bytes_out 751991 92224 bytes_in 4735827 92224 station_ip 5.119.106.112 92224 port 15728860 92224 nas_port_type Virtual 92224 remote_ip 5.5.5.128 92225 username farhad 92225 unique_id port 92225 terminate_cause Lost-Carrier 92225 bytes_out 2765925 92225 bytes_in 15027159 92225 station_ip 5.120.181.157 92225 port 15728870 92225 nas_port_type Virtual 92225 remote_ip 5.5.5.125 92227 username alinezhad 92227 unique_id port 92227 terminate_cause User-Request 92227 bytes_out 0 92227 bytes_in 0 92227 station_ip 5.202.65.191 92227 port 15728878 188650 remote_ip 10.8.0.62 188652 username zahra1101 188652 kill_reason Maximum check online fails reached 188652 mac 92214 bytes_in 3425522 92214 station_ip 83.123.62.63 92214 port 15728865 92214 nas_port_type Virtual 92214 remote_ip 5.5.5.201 92217 username forozande 92217 unique_id port 92217 terminate_cause User-Request 92217 bytes_out 16295 92217 bytes_in 27791 92217 station_ip 83.123.92.162 92217 port 15728868 92217 nas_port_type Virtual 92217 remote_ip 5.5.5.127 92218 username madadi2 92218 unique_id port 92218 terminate_cause Lost-Carrier 92218 bytes_out 960980 92218 bytes_in 3463856 92218 station_ip 5.120.138.98 92218 port 15728853 92218 nas_port_type Virtual 92218 remote_ip 5.5.5.132 92221 username ahmadi 92221 unique_id port 92221 terminate_cause User-Request 92221 bytes_out 33882 92221 bytes_in 286873 92221 station_ip 37.129.78.194 92221 port 15728873 92221 nas_port_type Virtual 92221 remote_ip 5.5.5.146 92222 username ahmadi 92222 unique_id port 92222 terminate_cause User-Request 92222 bytes_out 18173 92222 bytes_in 83204 92222 station_ip 37.129.78.194 92222 port 15728874 92222 nas_port_type Virtual 92222 remote_ip 5.5.5.146 92230 username alinezhad 92230 unique_id port 92230 terminate_cause User-Request 92230 bytes_out 0 92230 bytes_in 0 92230 station_ip 5.202.65.191 92230 port 15728882 92230 nas_port_type Virtual 92230 remote_ip 5.5.5.143 92234 username mammad 92234 unique_id port 92234 terminate_cause User-Request 92234 bytes_out 3026946 92234 bytes_in 79113207 92234 station_ip 5.233.69.230 92234 port 15728879 92234 nas_port_type Virtual 92234 remote_ip 5.5.5.209 92240 username aminvpn 92240 unique_id port 92240 terminate_cause Lost-Carrier 92240 bytes_out 617983 92240 bytes_in 8557925 92240 station_ip 5.119.30.61 92240 port 15728884 92240 nas_port_type Virtual 92240 remote_ip 5.5.5.123 188652 bytes_out 0 188652 bytes_in 0 188652 station_ip 5.120.128.95 188652 port 387 188652 unique_id port 188653 username sekonji0496 188653 mac 188653 bytes_out 0 188653 bytes_in 0 92245 username alinezhad 92245 unique_id port 92245 terminate_cause User-Request 92245 bytes_out 0 92245 bytes_in 0 92245 station_ip 37.129.180.117 92245 port 15728894 92245 nas_port_type Virtual 92245 remote_ip 5.5.5.118 92246 username aminvpn 92246 unique_id port 92246 terminate_cause Lost-Carrier 92246 bytes_out 42550 92246 bytes_in 190295 92246 station_ip 5.119.84.12 92246 port 15728898 92246 nas_port_type Virtual 92246 remote_ip 5.5.5.116 92247 username khalili 92247 unique_id port 92247 terminate_cause Lost-Carrier 92247 bytes_out 17215779 92247 bytes_in 153017317 92247 station_ip 5.120.54.168 92247 port 15728880 92247 nas_port_type Virtual 92247 remote_ip 5.5.5.250 92249 username mammad 92249 unique_id port 92249 terminate_cause User-Request 92249 bytes_out 9801063 92249 bytes_in 192510744 92249 station_ip 5.233.69.230 92249 port 15728899 92249 nas_port_type Virtual 92249 remote_ip 5.5.5.209 92252 username aminvpn 92252 kill_reason Another user logged on this global unique id 92252 mac 92252 bytes_out 0 92252 bytes_in 0 92252 station_ip 37.129.241.133 92252 port 1 92252 unique_id port 92252 remote_ip 10.8.0.6 92253 username aminvpn 92253 mac 92253 bytes_out 0 92253 bytes_in 0 92253 station_ip 37.129.241.133 92253 port 1 92253 unique_id port 92254 username aminvpn 92254 kill_reason Another user logged on this global unique id 92254 mac 92254 bytes_out 0 92254 bytes_in 0 92254 station_ip 37.129.192.117 92254 port 1 92254 unique_id port 92254 remote_ip 10.8.0.6 92255 username aminvpn 92255 kill_reason Another user logged on this global unique id 92255 mac 92255 bytes_out 0 92255 bytes_in 0 92255 station_ip 37.129.192.117 188653 station_ip 83.123.0.241 92227 nas_port_type Virtual 92227 remote_ip 5.5.5.143 92229 username heydari 92229 unique_id port 92229 terminate_cause User-Request 92229 bytes_out 140954 92229 bytes_in 570489 92229 station_ip 5.119.221.41 92229 port 15728877 92229 nas_port_type Virtual 92229 remote_ip 5.5.5.240 92236 username farhad 92236 unique_id port 92236 terminate_cause User-Request 92236 bytes_out 7541557 92236 bytes_in 94595613 92236 station_ip 5.119.61.147 92236 port 15728876 92236 nas_port_type Virtual 92236 remote_ip 5.5.5.124 92237 username alinezhad 92237 unique_id port 92237 terminate_cause User-Request 92237 bytes_out 0 92237 bytes_in 0 92237 station_ip 83.123.221.121 92237 port 15728887 92237 nas_port_type Virtual 92237 remote_ip 5.5.5.121 92238 username alinezhad 92238 unique_id port 92238 terminate_cause User-Request 92238 bytes_out 0 92238 bytes_in 0 92238 station_ip 83.123.221.121 92238 port 15728888 92238 nas_port_type Virtual 92238 remote_ip 5.5.5.121 92239 username bcboard 92239 unique_id port 92239 terminate_cause Lost-Carrier 92239 bytes_out 945861 92239 bytes_in 8639743 92239 station_ip 37.129.72.40 92239 port 15728885 92239 nas_port_type Virtual 92239 remote_ip 5.5.5.122 92243 username alinezhad 92243 unique_id port 92243 terminate_cause User-Request 92243 bytes_out 0 92243 bytes_in 0 92243 station_ip 37.129.180.117 92243 port 15728892 92243 nas_port_type Virtual 92243 remote_ip 5.5.5.118 92244 username avaanna 92244 unique_id port 92244 terminate_cause User-Request 92244 bytes_out 119005 92244 bytes_in 442609 92244 station_ip 83.123.9.34 92244 port 15728893 92244 nas_port_type Virtual 92244 remote_ip 5.5.5.117 92255 port 1 92255 unique_id port 92257 username aminvpn 92257 kill_reason Another user logged on this global unique id 92257 mac 92257 bytes_out 0 92257 bytes_in 0 92257 station_ip 37.129.192.117 92257 port 1 92257 unique_id port 92258 username aminvpn 92258 mac 92258 bytes_out 0 92258 bytes_in 0 92258 station_ip 37.129.192.117 92258 port 1 92258 unique_id port 92259 username kamali 92259 unique_id port 92259 terminate_cause User-Request 92259 bytes_out 205110 92259 bytes_in 1623968 92259 station_ip 37.129.128.159 92259 port 15728909 92259 nas_port_type Virtual 92259 remote_ip 5.5.5.110 92262 username mahbobeh 92262 unique_id port 92262 terminate_cause Admin-Reboot 92262 bytes_out 516227 92262 bytes_in 8425804 92262 station_ip 83.122.204.47 92262 port 15728908 92262 nas_port_type Virtual 92262 remote_ip 5.5.5.111 92264 username alinezhad 92264 unique_id port 92264 terminate_cause User-Request 92264 bytes_out 0 92264 bytes_in 0 92264 station_ip 5.202.132.18 92264 port 15728643 92264 nas_port_type Virtual 92264 remote_ip 5.5.5.252 188653 port 388 188653 unique_id port 188653 remote_ip 10.8.0.62 188657 username zahra1101 188657 mac 188657 bytes_out 0 188657 bytes_in 0 188657 station_ip 5.120.128.95 188657 port 388 92275 username ahmadi 92275 unique_id port 92275 terminate_cause User-Request 92275 bytes_out 19274 92275 bytes_in 79825 92275 station_ip 37.129.116.254 92275 port 15728656 92275 nas_port_type Virtual 92275 remote_ip 5.5.5.248 92277 username alinezhad 92277 unique_id port 92277 terminate_cause User-Request 92277 bytes_out 0 92277 bytes_in 0 92277 station_ip 5.202.132.18 92277 port 15728659 92277 nas_port_type Virtual 92277 remote_ip 5.5.5.252 92282 username aminvpn 92282 mac 92282 bytes_out 0 92282 bytes_in 0 92282 station_ip 37.129.192.105 92282 port 3 92282 unique_id port 92282 remote_ip 10.8.0.6 92283 username morteza 92283 mac 188657 unique_id port 92231 bytes_out 0 92231 bytes_in 0 92231 station_ip 37.129.78.194 92231 port 15728881 92231 nas_port_type Virtual 92231 remote_ip 5.5.5.146 92232 username madadi2 92232 unique_id port 92232 terminate_cause Lost-Carrier 92232 bytes_out 529241 92232 bytes_in 934591 92232 station_ip 5.119.58.108 92232 port 15728869 92232 nas_port_type Virtual 92232 remote_ip 5.5.5.126 92233 username alinezhad 92233 unique_id port 92233 terminate_cause User-Request 92233 bytes_out 0 92233 bytes_in 0 92233 station_ip 5.202.65.191 92233 port 15728883 92233 nas_port_type Virtual 92233 remote_ip 5.5.5.143 92235 username alinezhad 92235 unique_id port 92235 terminate_cause User-Request 92235 bytes_out 0 92235 bytes_in 0 92235 station_ip 83.123.221.121 92235 port 15728886 92235 nas_port_type Virtual 92235 remote_ip 5.5.5.121 92241 username alinezhad 92241 unique_id port 92241 terminate_cause User-Request 92241 bytes_out 260682 92241 bytes_in 1074884 92241 station_ip 83.123.165.118 92241 port 15728890 92241 nas_port_type Virtual 92241 remote_ip 5.5.5.119 92248 username farhad 92248 unique_id port 92248 terminate_cause Lost-Carrier 92248 bytes_out 11107055 92248 bytes_in 87749766 92248 station_ip 5.119.51.190 92248 port 15728889 92248 nas_port_type Virtual 92248 remote_ip 5.5.5.120 92250 username forozande 92250 unique_id port 92250 terminate_cause User-Request 92250 bytes_out 119197 92250 bytes_in 243446 92250 station_ip 113.203.109.222 92250 port 15728903 92250 nas_port_type Virtual 92250 remote_ip 5.5.5.113 92251 username aminvpn 92251 unique_id port 92251 terminate_cause Lost-Carrier 92251 bytes_out 84570 92251 bytes_in 250478 92251 station_ip 5.119.126.8 92251 port 15728902 92251 nas_port_type Virtual 92251 remote_ip 5.5.5.114 92256 username aminvpn 92256 kill_reason Another user logged on this global unique id 92256 mac 92256 bytes_out 0 92256 bytes_in 0 92256 station_ip 37.129.192.117 92256 port 1 92256 unique_id port 92261 username caferibar 92261 unique_id port 92261 terminate_cause Admin-Reboot 92261 bytes_out 21626433 92261 bytes_in 709439304 92261 station_ip 89.32.104.175 92261 port 15728907 92261 nas_port_type Virtual 92261 remote_ip 5.5.5.112 92263 username aminvpn 92263 mac 92263 bytes_out 0 92263 bytes_in 0 92263 station_ip 37.129.245.21 92263 port 1 92263 unique_id port 92263 remote_ip 10.8.0.6 92273 username farhad 92273 unique_id port 92273 terminate_cause Lost-Carrier 92273 bytes_out 3238489 92273 bytes_in 22160118 92273 station_ip 5.119.238.193 92273 port 15728649 92273 nas_port_type Virtual 92273 remote_ip 5.5.5.250 92279 username khalili 92279 unique_id port 92279 terminate_cause Lost-Carrier 92279 bytes_out 1053849 92279 bytes_in 8385780 92279 station_ip 5.119.171.1 92279 port 15728660 92279 nas_port_type Virtual 92279 remote_ip 5.5.5.247 92287 username kamali 92287 unique_id port 92287 terminate_cause User-Request 92287 bytes_out 23997 92287 bytes_in 39048 92287 station_ip 37.129.222.247 92287 port 15728667 92287 nas_port_type Virtual 92287 remote_ip 5.5.5.244 188654 station_ip 5.120.128.95 188654 port 383 188654 unique_id port 188666 username zahra1101 188666 mac 188666 bytes_out 3048 188666 bytes_in 4095 188666 station_ip 5.120.128.95 188666 port 388 92296 username aminvpn 92296 mac 92296 bytes_out 1136887 92296 bytes_in 9494427 92296 station_ip 37.129.192.105 92296 port 3 92296 unique_id port 92296 remote_ip 10.8.0.6 92302 username shokokian 92302 unique_id port 92302 terminate_cause User-Request 92302 bytes_out 0 92302 bytes_in 0 92302 station_ip 31.56.218.77 92302 port 15728675 188666 unique_id port 92260 username afarin 92260 unique_id port 92260 terminate_cause Admin-Reboot 92260 bytes_out 985515 92260 bytes_in 8226126 92260 station_ip 151.238.245.227 92260 port 15728901 92260 nas_port_type Virtual 92260 remote_ip 5.5.5.115 92265 username ahmadipour 92265 unique_id port 92265 terminate_cause Lost-Carrier 92265 bytes_out 1807709 92265 bytes_in 29300559 92265 station_ip 37.129.86.244 92265 port 15728641 92265 nas_port_type Virtual 92265 remote_ip 5.5.5.254 92266 username alinezhad 92266 unique_id port 92266 terminate_cause User-Request 92266 bytes_out 0 92266 bytes_in 0 92266 station_ip 5.202.132.18 92266 port 15728648 92266 nas_port_type Virtual 92266 remote_ip 5.5.5.252 92267 username alireza1 92267 unique_id port 92267 terminate_cause User-Request 92267 bytes_out 487357 92267 bytes_in 622913 92267 station_ip 5.120.49.145 92267 port 15728647 92267 nas_port_type Virtual 92267 remote_ip 5.5.5.251 92268 username mahbobeh 92268 unique_id port 92268 terminate_cause Lost-Carrier 92268 bytes_out 63721 92268 bytes_in 386297 92268 station_ip 83.122.204.47 92268 port 15728642 92268 nas_port_type Virtual 92268 remote_ip 5.5.5.253 92270 username ahmadi 92270 unique_id port 92270 terminate_cause User-Request 92270 bytes_out 0 92270 bytes_in 0 92270 station_ip 37.129.116.254 92270 port 15728653 92270 nas_port_type Virtual 92270 remote_ip 5.5.5.248 92271 username ahmadi 92271 unique_id port 92271 terminate_cause User-Request 92271 bytes_out 0 92271 bytes_in 0 92271 station_ip 37.129.116.254 92271 port 15728654 92271 nas_port_type Virtual 92271 remote_ip 5.5.5.248 92272 username ahmadi 92272 unique_id port 92272 terminate_cause User-Request 92272 bytes_out 10065 92272 bytes_in 48289 92272 station_ip 37.129.116.254 92272 port 15728655 92272 nas_port_type Virtual 92272 remote_ip 5.5.5.248 92274 username madadi2 92274 unique_id port 92274 terminate_cause Lost-Carrier 92274 bytes_out 275815 92274 bytes_in 2491872 92274 station_ip 5.120.162.23 92274 port 15728650 92274 nas_port_type Virtual 92274 remote_ip 5.5.5.249 92276 username ahmadi 92276 unique_id port 92276 terminate_cause User-Request 92276 bytes_out 15623 92276 bytes_in 64980 92276 station_ip 37.129.116.254 92276 port 15728657 92276 nas_port_type Virtual 92276 remote_ip 5.5.5.248 92278 username ahmadi 92278 unique_id port 92278 terminate_cause User-Request 92278 bytes_out 16628 92278 bytes_in 134873 92278 station_ip 37.129.116.254 92278 port 15728658 92278 nas_port_type Virtual 92278 remote_ip 5.5.5.248 92280 username alinezhad 92280 unique_id port 92280 terminate_cause User-Request 92280 bytes_out 0 92280 bytes_in 0 92280 station_ip 5.202.132.18 92280 port 15728661 92280 nas_port_type Virtual 92280 remote_ip 5.5.5.252 92281 username caferibar 92281 unique_id port 92281 terminate_cause User-Request 92281 bytes_out 3179632 92281 bytes_in 44655322 92281 station_ip 37.153.177.36 92281 port 15728662 92281 nas_port_type Virtual 92281 remote_ip 5.5.5.246 92284 username aminvpn 92284 unique_id port 92284 terminate_cause User-Request 92284 bytes_out 637461 92284 bytes_in 1266532 92284 station_ip 37.129.192.105 92284 port 15728663 92284 nas_port_type Virtual 92284 remote_ip 5.5.5.245 92285 username kamali 92285 unique_id port 92285 terminate_cause User-Request 92285 bytes_out 134274 92285 bytes_in 750402 92285 station_ip 37.129.222.247 92285 port 15728664 92285 nas_port_type Virtual 92285 remote_ip 5.5.5.244 92288 username aminvpn 92288 unique_id port 92288 terminate_cause User-Request 92288 bytes_out 810917 92288 bytes_in 615932 92288 station_ip 37.129.192.105 92288 port 15728665 92288 nas_port_type Virtual 92283 bytes_out 0 92283 bytes_in 0 92283 station_ip 83.123.191.78 92283 port 1 92283 unique_id port 92283 remote_ip 10.8.0.42 92286 username kamali 92286 unique_id port 92286 terminate_cause User-Request 92286 bytes_out 188991 92286 bytes_in 92593 92286 station_ip 37.129.222.247 92286 port 15728666 92286 nas_port_type Virtual 92286 remote_ip 5.5.5.244 92289 username aminvpn 92289 mac 92289 bytes_out 949357 92289 bytes_in 1466611 92289 station_ip 37.129.192.105 92289 port 3 92289 unique_id port 92289 remote_ip 10.8.0.6 92291 username kamali 92291 unique_id port 92291 terminate_cause User-Request 92291 bytes_out 480815 92291 bytes_in 41820 92291 station_ip 37.129.222.247 92291 port 15728668 92291 nas_port_type Virtual 92291 remote_ip 5.5.5.244 92293 username morteza 92293 mac 92293 bytes_out 0 92293 bytes_in 0 92293 station_ip 83.123.191.78 92293 port 1 92293 unique_id port 92293 remote_ip 10.8.0.42 92298 username aminvpn 92298 unique_id port 92298 terminate_cause User-Request 92298 bytes_out 797217 92298 bytes_in 1315128 92298 station_ip 37.129.192.105 92298 port 15728670 92298 nas_port_type Virtual 92298 remote_ip 5.5.5.245 92299 username afarin 92299 unique_id port 92299 terminate_cause User-Request 92299 bytes_out 0 92299 bytes_in 0 92299 station_ip 31.59.43.128 92299 port 15728673 92299 nas_port_type Virtual 92299 remote_ip 5.5.5.242 92300 username afarin 92300 unique_id port 92300 terminate_cause User-Request 92300 bytes_out 636817 92300 bytes_in 451387 92300 station_ip 31.59.43.128 92300 port 15728674 92300 nas_port_type Virtual 92300 remote_ip 5.5.5.242 92301 username aminvpn 92301 mac 92301 bytes_out 116824 92301 bytes_in 127134 92301 station_ip 37.129.192.105 92301 port 1 92301 unique_id port 92301 remote_ip 10.8.0.6 92303 username caferibar 92303 unique_id port 92303 terminate_cause Lost-Carrier 92303 bytes_out 694693 92303 bytes_in 10103746 92303 station_ip 5.119.180.123 92303 port 15728671 92303 nas_port_type Virtual 92303 remote_ip 5.5.5.243 92308 username heydari 92308 unique_id port 92308 terminate_cause User-Request 92308 bytes_out 146665 92308 bytes_in 362902 92308 station_ip 5.119.160.207 92308 port 15728676 92308 nas_port_type Virtual 92308 remote_ip 5.5.5.240 92312 username shokokian 92312 unique_id port 92312 terminate_cause User-Request 92312 bytes_out 487976 92312 bytes_in 4026762 92312 station_ip 31.56.218.77 92312 port 15728678 92312 nas_port_type Virtual 92312 remote_ip 5.5.5.241 92313 username alireza1 92313 unique_id port 92313 terminate_cause User-Request 92313 bytes_out 2247544 92313 bytes_in 7905613 92313 station_ip 5.120.49.145 92313 port 15728652 92313 nas_port_type Virtual 92313 remote_ip 5.5.5.251 92314 username aminvpn 92314 mac 92314 bytes_out 0 92314 bytes_in 0 92314 station_ip 83.122.238.219 92314 port 1 92314 unique_id port 92314 remote_ip 10.8.0.6 92320 username kamali 92320 unique_id port 92320 terminate_cause User-Request 92320 bytes_out 90429 92320 bytes_in 1541596 92320 station_ip 37.129.75.32 92320 port 15728686 92320 nas_port_type Virtual 92320 remote_ip 5.5.5.235 92324 username madadi2 92324 unique_id port 92324 terminate_cause Lost-Carrier 92324 bytes_out 51001 92324 bytes_in 219728 92324 station_ip 5.119.222.91 92324 port 15728689 92324 nas_port_type Virtual 92324 remote_ip 5.5.5.232 92327 username morteza 92327 mac 92327 bytes_out 0 92327 bytes_in 0 92327 station_ip 83.123.180.90 92327 port 3 92327 unique_id port 92327 remote_ip 10.8.0.42 92330 username amir 92330 unique_id port 92288 remote_ip 5.5.5.245 92290 username aminvpn 92290 mac 92290 bytes_out 1638 92290 bytes_in 5236 92290 station_ip 37.129.192.105 92290 port 3 92290 unique_id port 92290 remote_ip 10.8.0.6 92294 username morteza 92294 mac 92294 bytes_out 0 92294 bytes_in 0 92294 station_ip 83.123.191.78 92294 port 1 92294 unique_id port 92294 remote_ip 10.8.0.42 92295 username kamali 92295 unique_id port 92295 terminate_cause User-Request 92295 bytes_out 37602 92295 bytes_in 508995 92295 station_ip 37.129.222.247 92295 port 15728669 92295 nas_port_type Virtual 92295 remote_ip 5.5.5.244 92297 username aminvpn 92297 mac 92297 bytes_out 44818 92297 bytes_in 77480 92297 station_ip 37.129.192.105 92297 port 1 92297 unique_id port 92297 remote_ip 10.8.0.6 92306 username shokokian 92306 unique_id port 92306 terminate_cause User-Request 92306 bytes_out 0 92306 bytes_in 0 92306 station_ip 31.56.218.77 92306 port 15728677 92306 nas_port_type Virtual 92306 remote_ip 5.5.5.241 92307 username alinezhad 92307 unique_id port 92307 terminate_cause User-Request 92307 bytes_out 63079 92307 bytes_in 748326 92307 station_ip 5.202.132.18 92307 port 15728672 92307 nas_port_type Virtual 92307 remote_ip 5.5.5.252 92309 username morteza 92309 kill_reason Another user logged on this global unique id 92309 mac 92309 bytes_out 0 92309 bytes_in 0 92309 station_ip 83.123.180.90 92309 port 1 92309 unique_id port 92309 remote_ip 10.8.0.42 92311 username caferibar 92311 unique_id port 92311 terminate_cause Lost-Carrier 92311 bytes_out 47113 92311 bytes_in 447120 92311 station_ip 5.119.245.59 92311 port 15728679 92311 nas_port_type Virtual 92311 remote_ip 5.5.5.239 92315 username aminvpn 92315 mac 92315 bytes_out 306031 92315 bytes_in 1956915 92315 station_ip 31.56.113.165 92315 port 3 92315 unique_id port 92315 remote_ip 10.8.0.6 92316 username mirzaei 92316 mac 92316 bytes_out 0 92316 bytes_in 0 92316 station_ip 5.119.160.118 92316 port 4 92316 unique_id port 92316 remote_ip 10.8.0.14 92321 username alinezhad 92321 unique_id port 92321 terminate_cause User-Request 92321 bytes_out 24101 92321 bytes_in 233632 92321 station_ip 5.202.132.18 92321 port 15728688 92321 nas_port_type Virtual 92321 remote_ip 5.5.5.252 92326 username hashtadani 92326 unique_id port 92326 terminate_cause Lost-Carrier 92326 bytes_out 346269 92326 bytes_in 3280858 92326 station_ip 5.202.4.181 92326 port 15728685 92326 nas_port_type Virtual 92326 remote_ip 5.5.5.234 92329 username morteza 92329 mac 92329 bytes_out 86750 92329 bytes_in 266686 92329 station_ip 83.123.180.90 92329 port 3 92329 unique_id port 92329 remote_ip 10.8.0.42 92339 username askari 92339 mac 92339 bytes_out 0 92339 bytes_in 0 92339 station_ip 5.120.93.13 92339 port 4 92339 unique_id port 92339 remote_ip 10.8.0.34 92340 username morteza 92340 mac 92340 bytes_out 0 92340 bytes_in 0 92340 station_ip 83.123.180.90 92340 port 3 92340 unique_id port 92340 remote_ip 10.8.0.42 92346 username sadegh 92346 unique_id port 92346 terminate_cause Lost-Carrier 92346 bytes_out 14099 92346 bytes_in 31352 92346 station_ip 83.122.117.56 92346 port 15728699 92346 nas_port_type Virtual 92346 remote_ip 5.5.5.225 92351 username aminvpn 92351 mac 92351 bytes_out 0 92351 bytes_in 0 92351 station_ip 37.129.216.21 92351 port 3 92351 unique_id port 92351 remote_ip 10.8.0.6 92360 username aminvpn 92360 mac 92360 bytes_out 0 92360 bytes_in 0 92360 station_ip 37.129.216.21 92360 port 5 92302 nas_port_type Virtual 92302 remote_ip 5.5.5.241 92304 username aminvpn 92304 mac 92304 bytes_out 0 92304 bytes_in 0 92304 station_ip 37.129.192.105 92304 port 1 92304 unique_id port 92304 remote_ip 10.8.0.6 92305 username aminvpn 92305 mac 92305 bytes_out 0 92305 bytes_in 0 92305 station_ip 37.129.192.105 92305 port 1 92305 unique_id port 92305 remote_ip 10.8.0.6 92310 username morteza 92310 mac 92310 bytes_out 0 92310 bytes_in 0 92310 station_ip 83.123.180.90 92310 port 1 92310 unique_id port 92310 remote_ip 10.8.1.26 92317 username alinezhad 92317 unique_id port 92317 terminate_cause User-Request 92317 bytes_out 0 92317 bytes_in 0 92317 station_ip 5.202.132.18 92317 port 15728682 92317 nas_port_type Virtual 92317 remote_ip 5.5.5.252 92318 username madadi2 92318 unique_id port 92318 terminate_cause Lost-Carrier 92318 bytes_out 521079 92318 bytes_in 3097581 92318 station_ip 5.119.83.115 92318 port 15728680 92318 nas_port_type Virtual 92318 remote_ip 5.5.5.238 92319 username kamali 92319 unique_id port 92319 terminate_cause User-Request 92319 bytes_out 184089 92319 bytes_in 1857396 92319 station_ip 37.129.75.32 92319 port 15728684 92319 nas_port_type Virtual 92319 remote_ip 5.5.5.235 92322 username askari 92322 kill_reason Another user logged on this global unique id 92322 mac 92322 bytes_out 0 92322 bytes_in 0 92322 station_ip 5.120.93.13 92322 port 3 92322 unique_id port 92322 remote_ip 10.8.0.34 92323 username askari 92323 mac 92323 bytes_out 0 92323 bytes_in 0 92323 station_ip 5.120.93.13 92323 port 3 92323 unique_id port 92325 username morteza 92325 mac 92325 bytes_out 0 92325 bytes_in 0 92325 station_ip 83.123.180.90 92325 port 3 92325 unique_id port 92325 remote_ip 10.8.0.42 92328 username madadi2 92328 unique_id port 92328 terminate_cause Lost-Carrier 92328 bytes_out 551973 92328 bytes_in 4439622 92328 station_ip 5.119.213.243 92328 port 15728690 92328 nas_port_type Virtual 92328 remote_ip 5.5.5.231 92332 username morteza 92332 mac 92332 bytes_out 0 92332 bytes_in 0 92332 station_ip 83.123.180.90 92332 port 5 92332 unique_id port 92332 remote_ip 10.8.0.42 92333 username askari 92333 kill_reason Another user logged on this global unique id 92333 mac 92333 bytes_out 0 92333 bytes_in 0 92333 station_ip 5.120.93.13 92333 port 4 92333 unique_id port 92333 remote_ip 10.8.0.34 92334 username amirabbas 92334 unique_id port 92334 terminate_cause Lost-Carrier 92334 bytes_out 7549009 92334 bytes_in 212644928 92334 station_ip 151.238.246.93 92334 port 15728687 92334 nas_port_type Virtual 92334 remote_ip 5.5.5.233 92335 username morteza 92335 mac 92335 bytes_out 0 92335 bytes_in 0 92335 station_ip 83.123.180.90 92335 port 3 92335 unique_id port 92335 remote_ip 10.8.0.42 92338 username askari 92338 mac 92338 bytes_out 0 92338 bytes_in 0 92338 station_ip 5.120.93.13 92338 port 4 92338 unique_id port 92341 username sadegh 92341 unique_id port 92341 terminate_cause Lost-Carrier 92341 bytes_out 4892 92341 bytes_in 15918 92341 station_ip 5.120.187.174 92341 port 15728694 92341 nas_port_type Virtual 92341 remote_ip 5.5.5.228 92343 username sadegh 92343 unique_id port 92343 terminate_cause Lost-Carrier 92343 bytes_out 322677 92343 bytes_in 906540 92343 station_ip 83.122.117.56 92343 port 15728697 92343 nas_port_type Virtual 92343 remote_ip 5.5.5.225 92344 username aminvpn 92344 unique_id port 92344 terminate_cause Lost-Carrier 92344 bytes_out 423517 92344 bytes_in 1925350 92330 terminate_cause Lost-Carrier 92330 bytes_out 12481255 92330 bytes_in 36099306 92330 station_ip 46.225.232.210 92330 port 15728681 92330 nas_port_type Virtual 92330 remote_ip 5.5.5.237 92331 username morteza 92331 mac 92331 bytes_out 0 92331 bytes_in 0 92331 station_ip 83.123.180.90 92331 port 3 92331 unique_id port 92331 remote_ip 10.8.0.42 92336 username askari 92336 kill_reason Another user logged on this global unique id 92336 mac 92336 bytes_out 0 92336 bytes_in 0 92336 station_ip 5.120.93.13 92336 port 4 92336 unique_id port 92337 username tahmasebi 92337 unique_id port 92337 terminate_cause User-Request 92337 bytes_out 51208153 92337 bytes_in 453312368 92337 station_ip 5.119.208.96 92337 port 15728683 92337 nas_port_type Virtual 92337 remote_ip 5.5.5.236 92342 username aminvpn 92342 unique_id port 92342 terminate_cause Lost-Carrier 92342 bytes_out 193692 92342 bytes_in 768155 92342 station_ip 5.119.66.177 92342 port 15728695 92342 nas_port_type Virtual 92342 remote_ip 5.5.5.227 92345 username sadegh 92345 unique_id port 92345 terminate_cause Lost-Carrier 92345 bytes_out 95664 92345 bytes_in 488988 92345 station_ip 83.122.117.56 92345 port 15728698 92345 nas_port_type Virtual 92345 remote_ip 5.5.5.224 92347 username hashtadani 92347 unique_id port 92347 terminate_cause Lost-Carrier 92347 bytes_out 388334 92347 bytes_in 7278516 92347 station_ip 83.122.203.35 92347 port 15728696 92347 nas_port_type Virtual 92347 remote_ip 5.5.5.226 92349 username aminvpn 92349 mac 92349 bytes_out 0 92349 bytes_in 0 92349 station_ip 37.129.216.21 92349 port 3 92349 unique_id port 92349 remote_ip 10.8.0.6 92352 username aminvpn 92352 unique_id port 92352 terminate_cause User-Request 92352 bytes_out 1608818 92352 bytes_in 9521552 92352 station_ip 37.129.216.21 92352 port 15728703 92352 nas_port_type Virtual 92352 remote_ip 5.5.5.221 92354 username aminvpn 92354 mac 92354 bytes_out 0 92354 bytes_in 0 92354 station_ip 37.129.216.21 92354 port 5 92354 unique_id port 92354 remote_ip 10.8.0.6 92355 username askari 92355 kill_reason Another user logged on this global unique id 92355 mac 92355 bytes_out 0 92355 bytes_in 0 92355 station_ip 5.119.77.183 92355 port 3 92355 unique_id port 92355 remote_ip 10.8.0.34 92356 username askari 92356 mac 92356 bytes_out 0 92356 bytes_in 0 92356 station_ip 5.119.77.183 92356 port 3 92356 unique_id port 92357 username mirzaei 92357 kill_reason Another user logged on this global unique id 92357 mac 92357 bytes_out 0 92357 bytes_in 0 92357 station_ip 5.119.123.142 92357 port 1 92357 unique_id port 92357 remote_ip 10.8.0.14 92358 username askari 92358 mac 92358 bytes_out 0 92358 bytes_in 0 92358 station_ip 5.119.77.183 92358 port 7 92358 unique_id port 92358 remote_ip 10.8.0.34 92364 username aminvpn 92364 mac 92364 bytes_out 0 92364 bytes_in 0 92364 station_ip 37.129.216.21 92364 port 3 92364 unique_id port 92364 remote_ip 10.8.0.6 92365 username aminvpn 92365 mac 92365 bytes_out 0 92365 bytes_in 0 92365 station_ip 37.129.216.21 92365 port 3 92365 unique_id port 92365 remote_ip 10.8.0.6 92368 username askari 92368 kill_reason Another user logged on this global unique id 92368 mac 92368 bytes_out 0 92368 bytes_in 0 92368 station_ip 5.120.118.171 92368 port 1 92368 unique_id port 92368 remote_ip 10.8.1.30 92374 username aminvpn 92374 mac 92374 bytes_out 0 92374 bytes_in 0 92374 station_ip 37.129.216.21 92374 port 3 92374 unique_id port 92374 remote_ip 10.8.0.6 92344 station_ip 5.119.181.7 92344 port 15728691 92344 nas_port_type Virtual 92344 remote_ip 5.5.5.230 92348 username ahmadi 92348 unique_id port 92348 terminate_cause User-Request 92348 bytes_out 214425 92348 bytes_in 2915543 92348 station_ip 37.129.105.146 92348 port 15728701 92348 nas_port_type Virtual 92348 remote_ip 5.5.5.222 92350 username ahmadipour 92350 unique_id port 92350 terminate_cause Lost-Carrier 92350 bytes_out 102710 92350 bytes_in 691657 92350 station_ip 83.123.23.12 92350 port 15728707 92350 nas_port_type Virtual 92350 remote_ip 5.5.5.217 92353 username aminvpn 92353 mac 92353 bytes_out 0 92353 bytes_in 0 92353 station_ip 37.129.216.21 92353 port 3 92353 unique_id port 92353 remote_ip 10.8.0.6 92359 username mammad 92359 unique_id port 92359 terminate_cause User-Request 92359 bytes_out 2141998 92359 bytes_in 28670413 92359 station_ip 46.100.220.114 92359 port 15728706 92359 nas_port_type Virtual 92359 remote_ip 5.5.5.218 92361 username askari 92361 mac 92361 bytes_out 12922 92361 bytes_in 3947 92361 station_ip 5.119.77.183 92361 port 1 92361 unique_id port 92361 remote_ip 10.8.1.30 92362 username askari 92362 mac 92362 bytes_out 1949 92362 bytes_in 4522 92362 station_ip 5.119.77.183 92362 port 1 92362 unique_id port 92362 remote_ip 10.8.1.30 92369 username heydari 92369 unique_id port 92369 terminate_cause Lost-Carrier 92369 bytes_out 47337 92369 bytes_in 191223 92369 station_ip 5.119.160.207 92369 port 15728711 92369 nas_port_type Virtual 92369 remote_ip 5.5.5.215 92370 username alinezhad 92370 unique_id port 92370 terminate_cause User-Request 92370 bytes_out 0 92370 bytes_in 0 92370 station_ip 5.202.132.171 92370 port 15728712 92370 nas_port_type Virtual 92370 remote_ip 5.5.5.214 92371 username askari 92371 mac 92371 bytes_out 0 92371 bytes_in 0 92371 station_ip 5.120.118.171 92371 port 1 92371 unique_id port 92382 username farhad 92382 unique_id port 92382 terminate_cause Lost-Carrier 92382 bytes_out 22107687 92382 bytes_in 178093164 92382 station_ip 5.120.191.110 92382 port 15728705 92382 nas_port_type Virtual 92382 remote_ip 5.5.5.219 92383 username alinezhad 92383 unique_id port 92383 terminate_cause User-Request 92383 bytes_out 0 92383 bytes_in 0 92383 station_ip 5.202.11.115 92383 port 15728720 92383 nas_port_type Virtual 92383 remote_ip 5.5.5.209 92384 username askari 92384 kill_reason Another user logged on this global unique id 92384 mac 92384 bytes_out 0 92384 bytes_in 0 92384 station_ip 5.119.101.35 92384 port 5 92384 unique_id port 92384 remote_ip 10.8.0.34 92388 username morteza 92388 mac 92388 bytes_out 0 92388 bytes_in 0 92388 station_ip 83.123.222.54 92388 port 3 92388 unique_id port 92388 remote_ip 10.8.0.42 92392 username askari 92392 mac 92392 bytes_out 0 92392 bytes_in 0 92392 station_ip 5.119.101.35 92392 port 5 92392 unique_id port 92397 username aminvpn 92397 unique_id port 92397 terminate_cause Lost-Carrier 92397 bytes_out 732971 92397 bytes_in 5963886 92397 station_ip 5.120.163.99 92397 port 15728710 92397 nas_port_type Virtual 92397 remote_ip 5.5.5.216 92400 username sadegh 92400 unique_id port 92400 terminate_cause User-Request 92400 bytes_out 13354035 92400 bytes_in 153451199 92400 station_ip 5.119.79.76 92400 port 15728721 92400 nas_port_type Virtual 92400 remote_ip 5.5.5.208 92401 username madadi2 92401 unique_id port 92401 terminate_cause Lost-Carrier 92401 bytes_out 225223 92401 bytes_in 1961566 92401 station_ip 5.119.213.214 92401 port 15728728 92401 nas_port_type Virtual 92360 unique_id port 92360 remote_ip 10.8.0.6 92363 username aminvpn 92363 mac 92363 bytes_out 47973 92363 bytes_in 87372 92363 station_ip 37.129.216.21 92363 port 3 92363 unique_id port 92363 remote_ip 10.8.0.6 92366 username heydari 92366 unique_id port 92366 terminate_cause Lost-Carrier 92366 bytes_out 276582 92366 bytes_in 1266591 92366 station_ip 5.119.160.207 92366 port 15728708 92366 nas_port_type Virtual 92366 remote_ip 5.5.5.240 92367 username aminvpn 92367 mac 92367 bytes_out 0 92367 bytes_in 0 92367 station_ip 37.129.216.21 92367 port 5 92367 unique_id port 92367 remote_ip 10.8.0.6 92372 username aminvpn 92372 mac 92372 bytes_out 0 92372 bytes_in 0 92372 station_ip 37.129.216.21 92372 port 3 92372 unique_id port 92372 remote_ip 10.8.0.6 92373 username alinezhad 92373 unique_id port 92373 terminate_cause User-Request 92373 bytes_out 0 92373 bytes_in 0 92373 station_ip 5.202.132.171 92373 port 15728713 92373 nas_port_type Virtual 92373 remote_ip 5.5.5.214 92378 username caferibar 92378 unique_id port 92378 terminate_cause Lost-Carrier 92378 bytes_out 21527259 92378 bytes_in 251790280 92378 station_ip 5.120.14.54 92378 port 15728704 92378 nas_port_type Virtual 92378 remote_ip 5.5.5.220 92379 username mahdixz 92379 unique_id port 92379 terminate_cause Lost-Carrier 92379 bytes_out 471003 92379 bytes_in 5122970 92379 station_ip 5.233.51.99 92379 port 15728717 92379 nas_port_type Virtual 92379 remote_ip 5.5.5.211 92385 username hashtadani 92385 unique_id port 92385 terminate_cause Lost-Carrier 92385 bytes_out 114855 92385 bytes_in 1293051 92385 station_ip 113.203.59.111 92385 port 15728715 92385 nas_port_type Virtual 92385 remote_ip 5.5.5.213 92391 username amir 92391 unique_id port 92391 terminate_cause Lost-Carrier 92391 bytes_out 373585 92391 bytes_in 1732521 92391 station_ip 46.225.232.210 92391 port 15728714 92391 nas_port_type Virtual 92391 remote_ip 5.5.5.237 92394 username caferibar 92394 unique_id port 92394 terminate_cause User-Request 92394 bytes_out 43317 92394 bytes_in 460214 92394 station_ip 37.129.157.113 92394 port 15728727 92394 nas_port_type Virtual 92394 remote_ip 5.5.5.206 92395 username mammad 92395 unique_id port 92395 terminate_cause User-Request 92395 bytes_out 1165974 92395 bytes_in 17115837 92395 station_ip 46.100.220.114 92395 port 15728723 92395 nas_port_type Virtual 92395 remote_ip 5.5.5.218 92396 username khalili 92396 unique_id port 92396 terminate_cause User-Request 92396 bytes_out 5539489 92396 bytes_in 15254933 92396 station_ip 5.119.202.182 92396 port 15728700 92396 nas_port_type Virtual 92396 remote_ip 5.5.5.223 92398 username aminvpn 92398 mac 92398 bytes_out 126002 92398 bytes_in 399015 92398 station_ip 83.122.49.105 92398 port 3 92398 unique_id port 92398 remote_ip 10.8.0.6 92403 username alireza1 92403 unique_id port 92403 terminate_cause User-Request 92403 bytes_out 90513 92403 bytes_in 311429 92403 station_ip 5.120.49.145 92403 port 15728730 92403 nas_port_type Virtual 92403 remote_ip 5.5.5.251 92404 username heydari 92404 unique_id port 92404 terminate_cause User-Request 92404 bytes_out 677438 92404 bytes_in 6995645 92404 station_ip 5.119.160.207 92404 port 15728719 92404 nas_port_type Virtual 92404 remote_ip 5.5.5.215 92405 username mahdixz 92405 unique_id port 92405 terminate_cause Lost-Carrier 92405 bytes_out 6073362 92405 bytes_in 141534474 92405 station_ip 5.233.51.99 92405 port 15728724 92405 nas_port_type Virtual 92405 remote_ip 5.5.5.210 92408 username aminvpn 92408 mac 92408 bytes_out 0 92408 bytes_in 0 92375 username aminvpn 92375 mac 92375 bytes_out 384261 92375 bytes_in 221544 92375 station_ip 37.129.216.21 92375 port 3 92375 unique_id port 92375 remote_ip 10.8.0.6 92376 username mohammadreza 92376 mac 92376 bytes_out 1706634 92376 bytes_in 17935156 92376 station_ip 2.183.131.136 92376 port 6 92376 unique_id port 92376 remote_ip 10.8.0.38 92377 username madadi2 92377 unique_id port 92377 terminate_cause Lost-Carrier 92377 bytes_out 1679613 92377 bytes_in 7382860 92377 station_ip 5.119.210.21 92377 port 15728693 92377 nas_port_type Virtual 92377 remote_ip 5.5.5.229 92380 username ksrkrgr 92380 unique_id port 92380 terminate_cause User-Request 92380 bytes_out 3037546 92380 bytes_in 35351412 92380 station_ip 151.235.65.39 92380 port 15728716 92380 nas_port_type Virtual 92380 remote_ip 5.5.5.212 92381 username mahdixz 92381 unique_id port 92381 terminate_cause Lost-Carrier 92381 bytes_out 522816 92381 bytes_in 4638364 92381 station_ip 5.233.51.99 92381 port 15728718 92381 nas_port_type Virtual 92381 remote_ip 5.5.5.210 92386 username askari 92386 kill_reason Another user logged on this global unique id 92386 mac 92386 bytes_out 0 92386 bytes_in 0 92386 station_ip 5.119.101.35 92386 port 5 92386 unique_id port 92387 username askari 92387 kill_reason Another user logged on this global unique id 92387 mac 92387 bytes_out 0 92387 bytes_in 0 92387 station_ip 5.119.101.35 92387 port 5 92387 unique_id port 92389 username askari 92389 kill_reason Another user logged on this global unique id 92389 mac 92389 bytes_out 0 92389 bytes_in 0 92389 station_ip 5.119.101.35 92389 port 5 92389 unique_id port 92390 username alireza1 92390 unique_id port 92390 terminate_cause Lost-Carrier 92390 bytes_out 2703081 92390 bytes_in 45354466 92390 station_ip 5.120.49.145 92390 port 15728702 92390 nas_port_type Virtual 92390 remote_ip 5.5.5.251 92393 username zamanialireza 92393 kill_reason Relative expiration date has reached 92393 unique_id port 92393 bytes_out 0 92393 bytes_in 0 92393 station_ip 5.62.206.230 92393 port 15728725 92393 nas_port_type Virtual 92399 username madadi2 92399 unique_id port 92399 terminate_cause Lost-Carrier 92399 bytes_out 56321 92399 bytes_in 292105 92399 station_ip 5.119.50.120 92399 port 15728726 92399 nas_port_type Virtual 92399 remote_ip 5.5.5.207 92402 username aminvpn 92402 mac 92402 bytes_out 0 92402 bytes_in 0 92402 station_ip 83.122.49.105 92402 port 5 92402 unique_id port 92402 remote_ip 10.8.0.6 92406 username mahdixz 92406 unique_id port 92406 terminate_cause User-Request 92406 bytes_out 378424 92406 bytes_in 2101458 92406 station_ip 5.233.51.99 92406 port 15728731 92406 nas_port_type Virtual 92406 remote_ip 5.5.5.210 92413 username alinezhad 92413 unique_id port 92413 terminate_cause User-Request 92413 bytes_out 229457 92413 bytes_in 7428049 92413 station_ip 5.202.11.115 92413 port 15728737 92413 nas_port_type Virtual 92413 remote_ip 5.5.5.209 92415 username madadi2 92415 unique_id port 92415 terminate_cause Lost-Carrier 92415 bytes_out 177464 92415 bytes_in 1893624 92415 station_ip 5.119.161.9 92415 port 15728736 92415 nas_port_type Virtual 92415 remote_ip 5.5.5.203 92423 username shahnaz 92423 kill_reason Relative expiration date has reached 92423 unique_id port 92423 bytes_out 0 92423 bytes_in 0 92423 station_ip 5.119.228.188 92423 port 15728740 92423 nas_port_type Virtual 92426 username morteza 92426 kill_reason Another user logged on this global unique id 92426 mac 92426 bytes_out 0 92426 bytes_in 0 92426 station_ip 83.123.210.198 92426 port 5 92426 unique_id port 92401 remote_ip 5.5.5.205 92407 username mammad 92407 unique_id port 92407 terminate_cause User-Request 92407 bytes_out 264918 92407 bytes_in 2406295 92407 station_ip 46.100.220.114 92407 port 15728733 92407 nas_port_type Virtual 92407 remote_ip 5.5.5.218 92409 username arabpour 92409 unique_id port 92409 terminate_cause User-Request 92409 bytes_out 288700 92409 bytes_in 6185557 92409 station_ip 83.122.182.101 92409 port 15728734 92409 nas_port_type Virtual 92409 remote_ip 5.5.5.204 92410 username arabpour 92410 unique_id port 92410 terminate_cause User-Request 92410 bytes_out 284162 92410 bytes_in 9034481 92410 station_ip 83.122.182.101 92410 port 15728735 92410 nas_port_type Virtual 92410 remote_ip 5.5.5.204 92412 username morteza 92412 kill_reason Another user logged on this global unique id 92412 mac 92412 bytes_out 0 92412 bytes_in 0 92412 station_ip 83.123.210.198 92412 port 5 92412 unique_id port 92412 remote_ip 10.8.0.42 92417 username alihosseini 92417 mac 92417 bytes_out 0 92417 bytes_in 0 92417 station_ip 5.119.43.40 92417 port 7 92417 unique_id port 92417 remote_ip 10.8.0.46 92419 username alihosseini 92419 mac 92419 bytes_out 0 92419 bytes_in 0 92419 station_ip 5.119.43.40 92419 port 2 92419 unique_id port 92419 remote_ip 10.8.1.34 92422 username alihosseini 92422 mac 92422 bytes_out 0 92422 bytes_in 0 92422 station_ip 5.119.43.40 92422 port 7 92422 unique_id port 92422 remote_ip 10.8.0.46 92424 username mammad 92424 unique_id port 92424 terminate_cause User-Request 92424 bytes_out 1620348 92424 bytes_in 4832348 92424 station_ip 46.100.220.114 92424 port 15728739 92424 nas_port_type Virtual 92424 remote_ip 5.5.5.218 92431 username aminvpn 92431 kill_reason Another user logged on this global unique id 92431 mac 92431 bytes_out 0 92431 bytes_in 0 92431 station_ip 83.122.21.9 92431 port 3 92431 unique_id port 92431 remote_ip 10.8.0.6 92432 username alihosseini 92432 mac 92432 bytes_out 0 92432 bytes_in 0 92432 station_ip 5.119.43.40 92432 port 3 92432 unique_id port 92432 remote_ip 10.8.1.34 92434 username avaanna 92434 unique_id port 92434 terminate_cause User-Request 92434 bytes_out 80167 92434 bytes_in 283392 92434 station_ip 83.123.194.61 92434 port 15728741 92434 nas_port_type Virtual 92434 remote_ip 5.5.5.201 92436 username alihosseini 92436 mac 92436 bytes_out 0 92436 bytes_in 0 92436 station_ip 5.119.43.40 92436 port 1 92436 unique_id port 92436 remote_ip 10.8.0.46 92441 username jamali 92441 mac 92441 bytes_out 0 92441 bytes_in 0 92441 station_ip 37.129.33.195 92441 port 1 92441 unique_id port 92441 remote_ip 10.8.0.50 92445 username alihosseini 92445 mac 92445 bytes_out 300070 92445 bytes_in 1481588 92445 station_ip 5.119.43.40 92445 port 3 92445 unique_id port 92445 remote_ip 10.8.1.34 92447 username madadi2 92447 unique_id port 92447 terminate_cause Lost-Carrier 92447 bytes_out 105938 92447 bytes_in 417874 92447 station_ip 5.120.168.243 92447 port 15728745 92447 nas_port_type Virtual 92447 remote_ip 5.5.5.198 92448 username alihosseini 92448 mac 92448 bytes_out 0 92448 bytes_in 0 92448 station_ip 5.119.43.40 92448 port 5 92448 unique_id port 92448 remote_ip 10.8.0.46 92451 username caferibar 92451 unique_id port 92451 terminate_cause User-Request 92451 bytes_out 0 92451 bytes_in 0 92451 station_ip 5.120.168.211 92451 port 15728746 92451 nas_port_type Virtual 92451 remote_ip 5.5.5.197 92457 username jamali 92457 kill_reason Another user logged on this global unique id 92408 station_ip 83.122.21.9 92408 port 3 92408 unique_id port 92408 remote_ip 10.8.0.6 92411 username aminvpn 92411 mac 92411 bytes_out 47164 92411 bytes_in 69530 92411 station_ip 83.122.21.9 92411 port 3 92411 unique_id port 92411 remote_ip 10.8.0.6 92414 username alihosseini 92414 mac 92414 bytes_out 83562 92414 bytes_in 513035 92414 station_ip 5.119.43.40 92414 port 6 92414 unique_id port 92414 remote_ip 10.8.0.46 92416 username alihosseini 92416 kill_reason Maximum check online fails reached 92416 mac 92416 bytes_out 0 92416 bytes_in 0 92416 station_ip 5.119.43.40 92416 port 6 92416 unique_id port 92418 username morteza 92418 kill_reason Another user logged on this global unique id 92418 mac 92418 bytes_out 0 92418 bytes_in 0 92418 station_ip 83.123.210.198 92418 port 5 92418 unique_id port 92420 username alihosseini 92420 mac 92420 bytes_out 0 92420 bytes_in 0 92420 station_ip 5.119.43.40 92420 port 2 92420 unique_id port 92420 remote_ip 10.8.1.34 92421 username morteza 92421 kill_reason Another user logged on this global unique id 92421 mac 92421 bytes_out 0 92421 bytes_in 0 92421 station_ip 83.123.210.198 92421 port 5 92421 unique_id port 92425 username hashtadani 92425 unique_id port 92425 terminate_cause Lost-Carrier 92425 bytes_out 6854620 92425 bytes_in 157307025 92425 station_ip 113.203.59.111 92425 port 15728722 92425 nas_port_type Virtual 92425 remote_ip 5.5.5.213 92435 username morteza 92435 kill_reason Another user logged on this global unique id 92435 mac 92435 bytes_out 0 92435 bytes_in 0 92435 station_ip 83.123.210.198 92435 port 5 92435 unique_id port 92439 username alireza1 92439 unique_id port 92439 terminate_cause Lost-Carrier 92439 bytes_out 2110362 92439 bytes_in 33470146 92439 station_ip 5.120.49.145 92439 port 15728732 92439 nas_port_type Virtual 92439 remote_ip 5.5.5.251 92440 username morteza 92440 kill_reason Another user logged on this global unique id 92440 mac 92440 bytes_out 0 92440 bytes_in 0 92440 station_ip 83.123.210.198 92440 port 5 92440 unique_id port 92442 username morteza 92442 mac 92442 bytes_out 0 92442 bytes_in 0 92442 station_ip 83.123.210.198 92442 port 5 92442 unique_id port 92443 username alihosseini 92443 mac 92443 bytes_out 1772578 92443 bytes_in 27900890 92443 station_ip 5.119.43.40 92443 port 7 92443 unique_id port 92443 remote_ip 10.8.0.46 92444 username safarpour 92444 unique_id port 92444 terminate_cause User-Request 92444 bytes_out 1806918 92444 bytes_in 21427692 92444 station_ip 83.122.106.61 92444 port 15728744 92444 nas_port_type Virtual 92444 remote_ip 5.5.5.199 92452 username mahbobeh 92452 unique_id port 92452 terminate_cause Lost-Carrier 92452 bytes_out 2127129 92452 bytes_in 41906180 92452 station_ip 113.203.115.122 92452 port 15728742 92452 nas_port_type Virtual 92452 remote_ip 5.5.5.200 92454 username bcboard 92454 unique_id port 92454 terminate_cause User-Request 92454 bytes_out 0 92454 bytes_in 0 92454 station_ip 83.123.223.24 92454 port 15728749 92454 nas_port_type Virtual 92454 remote_ip 5.5.5.195 92455 username aminvpn 92455 mac 92455 bytes_out 519794 92455 bytes_in 5004645 92455 station_ip 83.122.21.9 92455 port 3 92455 unique_id port 92455 remote_ip 10.8.0.6 92456 username jamali 92456 mac 92456 bytes_out 170248 92456 bytes_in 152344 92456 station_ip 37.129.33.195 92456 port 1 92456 unique_id port 92456 remote_ip 10.8.0.50 92461 username madadi2 92461 unique_id port 92461 terminate_cause Lost-Carrier 92461 bytes_out 941323 92427 username alihosseini 92427 mac 92427 bytes_out 1776 92427 bytes_in 5301 92427 station_ip 5.119.43.40 92427 port 7 92427 unique_id port 92427 remote_ip 10.8.0.46 92428 username alihosseini 92428 kill_reason Maximum check online fails reached 92428 mac 92428 bytes_out 0 92428 bytes_in 0 92428 station_ip 5.119.43.40 92428 port 2 92428 unique_id port 92429 username askari 92429 mac 92429 bytes_out 0 92429 bytes_in 0 92429 station_ip 5.120.118.171 92429 port 1 92429 unique_id port 92430 username aminvpn 92430 unique_id port 92430 terminate_cause User-Request 92430 bytes_out 1284191 92430 bytes_in 4611280 92430 station_ip 5.160.112.35 92430 port 15728738 92430 nas_port_type Virtual 92430 remote_ip 5.5.5.202 92433 username morteza 92433 kill_reason Another user logged on this global unique id 92433 mac 92433 bytes_out 0 92433 bytes_in 0 92433 station_ip 83.123.210.198 92433 port 5 92433 unique_id port 92437 username jamali 92437 mac 92437 bytes_out 0 92437 bytes_in 0 92437 station_ip 37.129.119.200 92437 port 1 92437 unique_id port 92437 remote_ip 10.8.0.50 92438 username avaanna 92438 unique_id port 92438 terminate_cause User-Request 92438 bytes_out 50717 92438 bytes_in 86618 92438 station_ip 83.123.194.61 92438 port 15728743 92438 nas_port_type Virtual 92438 remote_ip 5.5.5.201 92446 username alihosseini 92446 mac 92446 bytes_out 302871 92446 bytes_in 1486793 92446 station_ip 5.119.43.40 92446 port 3 92446 unique_id port 92446 remote_ip 10.8.1.34 92449 username alihosseini 92449 mac 92449 bytes_out 2317 92449 bytes_in 4828 92449 station_ip 5.119.43.40 92449 port 5 92449 unique_id port 92449 remote_ip 10.8.0.46 188655 username sekonji0496 188655 mac 188655 bytes_out 0 188655 bytes_in 0 188655 station_ip 83.123.0.241 188655 port 388 188655 unique_id port 188655 remote_ip 10.8.0.62 188656 username zahra1101 92453 username askari 92453 kill_reason Another user logged on this global unique id 92453 mac 92453 bytes_out 0 92453 bytes_in 0 92453 station_ip 5.120.45.4 92453 port 5 92453 unique_id port 92453 remote_ip 10.8.0.34 92459 username askari 92459 mac 92459 bytes_out 0 92459 bytes_in 0 92459 station_ip 5.120.45.4 92459 port 5 92459 unique_id port 92463 username caferibar 92463 unique_id port 92463 terminate_cause User-Request 92463 bytes_out 104272 92463 bytes_in 630536 92463 station_ip 94.183.213.166 92463 port 15728753 92463 nas_port_type Virtual 92463 remote_ip 5.5.5.192 92464 username mahbobeh 92464 unique_id port 92464 terminate_cause Lost-Carrier 92464 bytes_out 3395659 92464 bytes_in 60553928 92464 station_ip 113.203.115.122 92464 port 15728747 92464 nas_port_type Virtual 92464 remote_ip 5.5.5.200 188656 mac 188656 bytes_out 0 188656 bytes_in 0 188656 station_ip 5.120.128.95 188656 port 388 188656 unique_id port 188656 remote_ip 10.8.0.250 188658 username zahra1101 188658 mac 92468 username aminvpn 92468 mac 92468 bytes_out 17159 92468 bytes_in 29222 92468 station_ip 83.122.21.9 92468 port 1 92468 unique_id port 92468 remote_ip 10.8.0.6 92470 username morteza 92470 mac 92470 bytes_out 0 92470 bytes_in 0 92470 station_ip 37.129.171.127 92470 port 1 92470 unique_id port 92470 remote_ip 10.8.0.42 92471 username morteza 92471 mac 92471 bytes_out 0 92471 bytes_in 0 92471 station_ip 37.129.171.127 92471 port 7 92471 unique_id port 92471 remote_ip 10.8.0.42 92473 username madadi2 188658 bytes_out 0 188658 bytes_in 0 92457 mac 92457 bytes_out 0 92457 bytes_in 0 92457 station_ip 83.123.24.81 92457 port 3 92457 unique_id port 92457 remote_ip 10.8.0.50 92458 username morteza 92458 mac 92458 bytes_out 0 92458 bytes_in 0 92458 station_ip 83.123.158.230 92458 port 7 92458 unique_id port 92458 remote_ip 10.8.0.42 92460 username morteza 92460 mac 92460 bytes_out 0 92460 bytes_in 0 92460 station_ip 37.129.130.236 92460 port 3 92460 unique_id port 92460 remote_ip 10.8.1.26 92462 username madadi2 92462 unique_id port 92462 terminate_cause Lost-Carrier 92462 bytes_out 38562 92462 bytes_in 466586 92462 station_ip 5.119.211.48 92462 port 15728751 92462 nas_port_type Virtual 92462 remote_ip 5.5.5.193 92466 username aminvpn 92466 mac 92466 bytes_out 317598 92466 bytes_in 546371 92466 station_ip 83.122.21.9 92466 port 1 92466 unique_id port 92466 remote_ip 10.8.0.6 92476 username fariba 92476 kill_reason Another user logged on this global unique id 92476 mac 92476 bytes_out 0 92476 bytes_in 0 92476 station_ip 5.119.244.119 92476 port 4 92476 unique_id port 92476 remote_ip 10.8.0.10 92477 username morteza 92477 mac 92477 bytes_out 0 92477 bytes_in 0 92477 station_ip 37.129.171.127 92477 port 4 92477 unique_id port 92477 remote_ip 10.8.1.26 92478 username morteza 92478 mac 92478 bytes_out 0 92478 bytes_in 0 92478 station_ip 37.129.171.127 92478 port 4 92478 unique_id port 92478 remote_ip 10.8.1.26 92481 username morteza 92481 mac 92481 bytes_out 0 92481 bytes_in 0 92481 station_ip 37.129.171.127 92481 port 7 92481 unique_id port 92481 remote_ip 10.8.0.42 92487 username jamali 92487 mac 92487 bytes_out 621275 92487 bytes_in 1865085 92487 station_ip 83.123.24.81 92487 port 5 92487 unique_id port 92487 remote_ip 10.8.0.50 188657 remote_ip 10.8.0.250 188659 username sekonji0496 188659 mac 188659 bytes_out 0 188659 bytes_in 0 188659 station_ip 83.123.0.241 188659 port 389 188659 unique_id port 188659 remote_ip 10.8.0.62 92495 username morteza 92495 mac 92495 bytes_out 0 92495 bytes_in 0 92495 station_ip 37.129.171.127 92495 port 8 92495 unique_id port 92495 remote_ip 10.8.0.42 92497 username amirabbas 92497 unique_id port 92497 terminate_cause Lost-Carrier 92497 bytes_out 4110001 92497 bytes_in 89071266 92497 station_ip 31.56.159.159 92497 port 15728759 92497 nas_port_type Virtual 92497 remote_ip 5.5.5.189 92498 username morteza 92498 mac 92498 bytes_out 0 92498 bytes_in 0 92498 station_ip 37.129.171.127 92498 port 4 92498 unique_id port 92498 remote_ip 10.8.1.26 92502 username amirabbas 92502 unique_id port 92502 terminate_cause User-Request 92502 bytes_out 2622968 92502 bytes_in 71543347 92502 station_ip 31.59.34.151 92502 port 15728769 92502 nas_port_type Virtual 92502 remote_ip 5.5.5.181 92509 username alihosseini 92509 mac 92509 bytes_out 0 92509 bytes_in 0 92509 station_ip 5.119.111.231 92509 port 3 92509 unique_id port 92509 remote_ip 10.8.0.46 92510 username alihosseini 92510 mac 92510 bytes_out 0 92510 bytes_in 0 92510 station_ip 5.119.111.231 92510 port 4 92510 unique_id port 92510 remote_ip 10.8.1.34 92514 username alihosseini 92514 kill_reason Maximum check online fails reached 92514 mac 92514 bytes_out 0 92514 bytes_in 0 92514 station_ip 5.119.111.231 92514 port 3 92514 unique_id port 92517 username jamali 92517 mac 92517 bytes_out 0 92517 bytes_in 0 92517 station_ip 83.123.24.81 92461 bytes_in 9833670 92461 station_ip 5.120.146.15 92461 port 15728748 92461 nas_port_type Virtual 92461 remote_ip 5.5.5.196 92465 username morteza 92465 kill_reason Another user logged on this global unique id 92465 mac 92465 bytes_out 0 92465 bytes_in 0 92465 station_ip 37.129.171.127 92465 port 3 92465 unique_id port 92465 remote_ip 10.8.1.26 92469 username alihosseini 92469 mac 92469 bytes_out 171238 92469 bytes_in 264492 92469 station_ip 5.119.111.231 92469 port 3 92469 unique_id port 92469 remote_ip 10.8.0.46 92472 username morteza 92472 mac 92472 bytes_out 0 92472 bytes_in 0 92472 station_ip 37.129.171.127 92472 port 7 92472 unique_id port 92472 remote_ip 10.8.0.42 92475 username morteza 92475 mac 92475 bytes_out 0 92475 bytes_in 0 92475 station_ip 37.129.171.127 92475 port 7 92475 unique_id port 92475 remote_ip 10.8.0.42 92480 username madadi2 92480 unique_id port 92480 terminate_cause Lost-Carrier 92480 bytes_out 20554 92480 bytes_in 146488 92480 station_ip 5.120.128.233 92480 port 15728757 92480 nas_port_type Virtual 92480 remote_ip 5.5.5.191 92483 username alemzadeh 92483 unique_id port 92483 terminate_cause User-Request 92483 bytes_out 353618 92483 bytes_in 7035195 92483 station_ip 83.122.36.132 92483 port 15728763 92483 nas_port_type Virtual 92483 remote_ip 5.5.5.185 92484 username farhad 92484 unique_id port 92484 terminate_cause Lost-Carrier 92484 bytes_out 7071709 92484 bytes_in 50340322 92484 station_ip 5.120.151.139 92484 port 15728750 92484 nas_port_type Virtual 92484 remote_ip 5.5.5.194 92486 username arabpour 92486 unique_id port 92486 terminate_cause User-Request 92486 bytes_out 248390 92486 bytes_in 5580194 92486 station_ip 5.250.86.87 92486 port 15728767 92486 nas_port_type Virtual 92486 remote_ip 5.5.5.182 92489 username madadi2 92489 unique_id port 92489 terminate_cause Lost-Carrier 92489 bytes_out 15131 92489 bytes_in 145156 92489 station_ip 5.120.162.57 92489 port 15728765 92489 nas_port_type Virtual 92489 remote_ip 5.5.5.184 92492 username morteza 92492 mac 92492 bytes_out 0 92492 bytes_in 0 92492 station_ip 37.129.171.127 92492 port 1 92492 unique_id port 92492 remote_ip 10.8.0.42 92500 username morteza 92500 mac 92500 bytes_out 0 92500 bytes_in 0 92500 station_ip 37.129.171.127 92500 port 9 92500 unique_id port 92500 remote_ip 10.8.0.42 92503 username heydari 92503 unique_id port 92503 terminate_cause User-Request 92503 bytes_out 95564 92503 bytes_in 260002 92503 station_ip 5.120.41.187 92503 port 15728770 92503 nas_port_type Virtual 92503 remote_ip 5.5.5.180 92504 username mahyaarabpour 92504 mac 92504 bytes_out 0 92504 bytes_in 0 92504 station_ip 5.119.140.13 92504 port 7 92504 unique_id port 92504 remote_ip 10.8.0.54 92506 username alihosseini 92506 mac 92506 bytes_out 0 92506 bytes_in 0 92506 station_ip 5.119.111.231 92506 port 3 92506 unique_id port 92508 username alihosseini 92508 mac 92508 bytes_out 0 92508 bytes_in 0 92508 station_ip 5.119.111.231 92508 port 3 92508 unique_id port 92508 remote_ip 10.8.0.46 92515 username madadi2 92515 unique_id port 92515 terminate_cause Lost-Carrier 92515 bytes_out 21865 92515 bytes_in 251348 92515 station_ip 5.119.98.172 92515 port 15728772 92515 nas_port_type Virtual 92515 remote_ip 5.5.5.179 188658 station_ip 5.120.128.95 188658 port 388 188658 unique_id port 188658 remote_ip 10.8.0.250 188660 username zahra1101 188660 mac 188660 bytes_out 0 188660 bytes_in 0 188660 station_ip 5.120.128.95 188660 port 389 92473 unique_id port 92473 terminate_cause NAS-Error 92473 bytes_out 93 92473 bytes_in 251 92473 station_ip 5.119.219.178 92473 port 15728758 92473 nas_port_type Virtual 92473 remote_ip 5.5.5.190 92474 username morteza 92474 mac 92474 bytes_out 0 92474 bytes_in 0 92474 station_ip 37.129.171.127 92474 port 7 92474 unique_id port 92474 remote_ip 10.8.0.42 92479 username morteza 92479 mac 92479 bytes_out 0 92479 bytes_in 0 92479 station_ip 37.129.171.127 92479 port 4 92479 unique_id port 92479 remote_ip 10.8.1.26 92482 username mahyaarabpour 92482 mac 92482 bytes_out 880742 92482 bytes_in 2383774 92482 station_ip 46.225.213.107 92482 port 1 92482 unique_id port 92482 remote_ip 10.8.0.54 188660 unique_id port 188660 remote_ip 10.8.0.250 188663 username sekonji0496 188663 mac 188663 bytes_out 0 188663 bytes_in 0 188663 station_ip 83.123.0.241 188663 port 388 188663 unique_id port 92490 username jamali 92490 mac 92490 bytes_out 13531 92490 bytes_in 15417 92490 station_ip 83.123.24.81 92490 port 8 92490 unique_id port 92490 remote_ip 10.8.0.50 92491 username morteza 92491 mac 92491 bytes_out 0 92491 bytes_in 0 92491 station_ip 37.129.171.127 92491 port 1 92491 unique_id port 92491 remote_ip 10.8.0.42 92493 username morteza 92493 kill_reason Another user logged on this global unique id 92493 mac 92493 bytes_out 0 92493 bytes_in 0 92493 station_ip 37.129.171.127 92493 port 3 92493 unique_id port 92494 username morteza 92494 mac 92494 bytes_out 0 92494 bytes_in 0 92494 station_ip 37.129.171.127 92494 port 8 92494 unique_id port 92494 remote_ip 10.8.0.42 92496 username alinezhad 92496 unique_id port 92496 terminate_cause User-Request 92496 bytes_out 0 92496 bytes_in 0 92496 station_ip 5.202.11.115 92496 port 15728771 92496 nas_port_type Virtual 92496 remote_ip 5.5.5.209 92499 username morteza 92499 mac 92499 bytes_out 0 92499 bytes_in 0 92499 station_ip 37.129.171.127 92499 port 8 92499 unique_id port 92499 remote_ip 10.8.0.42 92501 username morteza 92501 mac 92501 bytes_out 0 92501 bytes_in 0 92501 station_ip 37.129.171.127 92501 port 8 92501 unique_id port 92501 remote_ip 10.8.0.42 92505 username morteza 92505 mac 92505 bytes_out 189894 92505 bytes_in 1424235 92505 station_ip 37.129.171.127 92505 port 8 92505 unique_id port 92505 remote_ip 10.8.0.42 92507 username mahyaarabpour 92507 mac 92507 bytes_out 0 92507 bytes_in 0 92507 station_ip 5.119.140.13 92507 port 4 92507 unique_id port 92507 remote_ip 10.8.1.38 92511 username alihosseini 92511 mac 92511 bytes_out 0 92511 bytes_in 0 92511 station_ip 5.119.111.231 92511 port 4 92511 unique_id port 92511 remote_ip 10.8.1.34 92512 username alihosseini 92512 mac 92512 bytes_out 0 92512 bytes_in 0 92512 station_ip 5.119.111.231 92512 port 3 92512 unique_id port 92512 remote_ip 10.8.0.46 92513 username morteza 92513 mac 92513 bytes_out 0 92513 bytes_in 0 92513 station_ip 37.129.230.119 92513 port 3 92513 unique_id port 92513 remote_ip 10.8.0.42 92516 username aminvpn 92516 mac 92516 bytes_out 0 92516 bytes_in 0 92516 station_ip 83.123.225.187 92516 port 1 92516 unique_id port 92516 remote_ip 10.8.0.6 92519 username aminvpn 92519 mac 92519 bytes_out 0 92519 bytes_in 0 92519 station_ip 83.123.225.187 92519 port 7 92519 unique_id port 92519 remote_ip 10.8.0.6 188663 remote_ip 10.8.0.62 92517 port 5 92517 unique_id port 92517 remote_ip 10.8.0.50 92518 username alireza1 92518 unique_id port 92518 terminate_cause Lost-Carrier 92518 bytes_out 1111795 92518 bytes_in 2345438 92518 station_ip 5.119.16.164 92518 port 15728762 92518 nas_port_type Virtual 92518 remote_ip 5.5.5.186 92520 username majid 92520 unique_id port 92520 terminate_cause User-Request 92520 bytes_out 103876 92520 bytes_in 1376835 92520 station_ip 37.129.236.160 92520 port 15728775 92520 nas_port_type Virtual 92520 remote_ip 5.5.5.176 92522 username alihosseini 92522 mac 92522 bytes_out 0 92522 bytes_in 0 92522 station_ip 5.119.111.231 92522 port 5 92522 unique_id port 92522 remote_ip 10.8.0.46 188661 username sekonji0496 188661 mac 188661 bytes_out 0 188661 bytes_in 0 188661 station_ip 83.123.0.241 188661 port 388 188661 unique_id port 188661 remote_ip 10.8.0.62 188662 username sekonji0496 92524 username ahmadipour 92524 unique_id port 92524 terminate_cause User-Request 92524 bytes_out 840132 92524 bytes_in 17715928 92524 station_ip 113.203.6.234 92524 port 15728776 92524 nas_port_type Virtual 92524 remote_ip 5.5.5.175 92529 username alihosseini 92529 mac 92529 bytes_out 136452 92529 bytes_in 368585 92529 station_ip 5.119.111.231 92529 port 5 92529 unique_id port 92529 remote_ip 10.8.1.34 92530 username alihosseini 92530 mac 92530 bytes_out 0 92530 bytes_in 0 92530 station_ip 5.119.111.231 92530 port 5 92530 unique_id port 92530 remote_ip 10.8.1.34 188662 mac 188662 bytes_out 0 188662 bytes_in 0 188662 station_ip 83.123.0.241 188662 port 388 188662 unique_id port 188662 remote_ip 10.8.0.62 188664 username zahra1101 188664 kill_reason Maximum check online fails reached 92537 username kamali 92537 unique_id port 92537 terminate_cause User-Request 92537 bytes_out 67741 92537 bytes_in 805490 92537 station_ip 83.122.42.230 92537 port 15728783 92537 nas_port_type Virtual 92537 remote_ip 5.5.5.170 92538 username alihosseini 92538 mac 92538 bytes_out 0 92538 bytes_in 0 92538 station_ip 5.119.111.231 92538 port 1 92538 unique_id port 92538 remote_ip 10.8.0.46 92540 username alihosseini 92540 mac 92540 bytes_out 0 92540 bytes_in 0 92540 station_ip 5.119.111.231 92540 port 1 92540 unique_id port 92540 remote_ip 10.8.0.46 92541 username alihosseini 92541 mac 92541 bytes_out 0 92541 bytes_in 0 92541 station_ip 5.119.111.231 92541 port 1 92541 unique_id port 92541 remote_ip 10.8.0.46 92543 username ahmadi 92543 unique_id port 92543 terminate_cause User-Request 92543 bytes_out 27678 92543 bytes_in 170913 92543 station_ip 83.123.61.150 92543 port 15728786 92543 nas_port_type Virtual 92543 remote_ip 5.5.5.168 92550 username alihosseini 92550 kill_reason Maximum number of concurrent logins reached 92550 mac 92550 bytes_out 0 92550 bytes_in 0 92550 station_ip 5.119.111.231 92550 port 5 92550 unique_id port 92553 username heydari 92553 unique_id port 92553 terminate_cause User-Request 92553 bytes_out 316051 92553 bytes_in 763468 92553 station_ip 5.120.41.187 92553 port 15728787 92553 nas_port_type Virtual 92553 remote_ip 5.5.5.180 92555 username madadi2 92555 unique_id port 92555 terminate_cause Lost-Carrier 92555 bytes_out 513589 92555 bytes_in 3029069 92555 station_ip 5.120.170.133 92555 port 15728793 92555 nas_port_type Virtual 92555 remote_ip 5.5.5.166 92556 username alinezhad 92556 unique_id port 92556 terminate_cause Lost-Carrier 92556 bytes_out 93820 92556 bytes_in 799603 92556 station_ip 5.202.11.118 92556 port 15728788 188664 mac 188664 bytes_out 0 92521 username jamali 92521 mac 92521 bytes_out 0 92521 bytes_in 0 92521 station_ip 83.123.24.81 92521 port 1 92521 unique_id port 92521 remote_ip 10.8.0.50 92527 username jamali 92527 mac 92527 bytes_out 0 92527 bytes_in 0 92527 station_ip 83.123.24.81 92527 port 1 92527 unique_id port 92527 remote_ip 10.8.0.50 92534 username caferibar 92534 unique_id port 92534 terminate_cause Lost-Carrier 92534 bytes_out 1101876 92534 bytes_in 13709068 92534 station_ip 5.120.40.106 92534 port 15728778 92534 nas_port_type Virtual 92534 remote_ip 5.5.5.174 92542 username alireza1 92542 unique_id port 92542 terminate_cause User-Request 92542 bytes_out 895634 92542 bytes_in 2502738 92542 station_ip 5.119.16.164 92542 port 15728774 92542 nas_port_type Virtual 92542 remote_ip 5.5.5.177 92544 username caferibar 92544 unique_id port 92544 terminate_cause Lost-Carrier 92544 bytes_out 239702 92544 bytes_in 1290736 92544 station_ip 5.119.186.63 92544 port 15728782 92544 nas_port_type Virtual 92544 remote_ip 5.5.5.171 92545 username aminvpn 92545 unique_id port 92545 terminate_cause Lost-Carrier 92545 bytes_out 38286 92545 bytes_in 199190 92545 station_ip 5.119.68.234 92545 port 15728785 92545 nas_port_type Virtual 92545 remote_ip 5.5.5.169 92546 username alihosseini 92546 mac 92546 bytes_out 64061 92546 bytes_in 98491 92546 station_ip 5.119.111.231 92546 port 5 92546 unique_id port 92546 remote_ip 10.8.1.34 92547 username alireza1 92547 unique_id port 92547 terminate_cause User-Request 92547 bytes_out 6711 92547 bytes_in 77779 92547 station_ip 5.119.16.164 92547 port 15728790 92547 nas_port_type Virtual 92547 remote_ip 5.5.5.177 92548 username alihosseini 92548 mac 92548 bytes_out 0 92548 bytes_in 0 92548 station_ip 5.119.111.231 92548 port 1 92548 unique_id port 92548 remote_ip 10.8.0.46 92551 username alihosseini 92551 kill_reason Maximum check online fails reached 92551 mac 92551 bytes_out 0 92551 bytes_in 0 92551 station_ip 5.119.111.231 92551 port 1 92551 unique_id port 92558 username madadi2 92558 unique_id port 92558 terminate_cause Lost-Carrier 92558 bytes_out 44616 92558 bytes_in 135673 92558 station_ip 5.119.71.198 92558 port 15728796 92558 nas_port_type Virtual 92558 remote_ip 5.5.5.163 92559 username alihosseini 92559 kill_reason Another user logged on this global unique id 92559 mac 92559 bytes_out 0 92559 bytes_in 0 92559 station_ip 5.120.100.39 92559 port 5 92559 unique_id port 92559 remote_ip 10.8.0.46 92560 username mamal 92560 unique_id port 92560 terminate_cause User-Request 92560 bytes_out 760761 92560 bytes_in 12682850 92560 station_ip 83.123.179.204 92560 port 15728797 92560 nas_port_type Virtual 92560 remote_ip 5.5.5.162 92567 username aminvpn 92567 unique_id port 92567 terminate_cause Lost-Carrier 92567 bytes_out 137494 92567 bytes_in 733215 92567 station_ip 5.119.146.222 92567 port 15728803 92567 nas_port_type Virtual 92567 remote_ip 5.5.5.161 92568 username sadegh 92568 unique_id port 92568 terminate_cause Lost-Carrier 92568 bytes_out 8575765 92568 bytes_in 145147648 92568 station_ip 5.119.238.198 92568 port 15728800 92568 nas_port_type Virtual 92568 remote_ip 5.5.5.159 92570 username farhad 92570 unique_id port 92570 terminate_cause Lost-Carrier 92570 bytes_out 8099419 92570 bytes_in 73229228 92570 station_ip 5.120.16.22 92570 port 15728795 92570 nas_port_type Virtual 92570 remote_ip 5.5.5.164 92572 username alireza1 92572 unique_id port 92572 terminate_cause User-Request 92572 bytes_out 1435783 92572 bytes_in 532109 92572 station_ip 5.120.13.244 92572 port 15728809 92526 username arman 92526 unique_id port 92526 terminate_cause Lost-Carrier 92526 bytes_out 10621254 92526 bytes_in 220359311 92526 station_ip 5.119.66.178 92526 port 15728760 92526 nas_port_type Virtual 92526 remote_ip 5.5.5.188 92528 username alinezhad 92528 unique_id port 92528 terminate_cause User-Request 92528 bytes_out 0 92528 bytes_in 0 92528 station_ip 5.202.11.115 92528 port 15728779 92528 nas_port_type Virtual 92528 remote_ip 5.5.5.209 92532 username madadi2 92532 unique_id port 92532 terminate_cause Lost-Carrier 92532 bytes_out 15064 92532 bytes_in 130151 92532 station_ip 5.120.26.243 92532 port 15728780 92532 nas_port_type Virtual 92532 remote_ip 5.5.5.173 92533 username kamali 92533 unique_id port 92533 terminate_cause User-Request 92533 bytes_out 44848 92533 bytes_in 106867 92533 station_ip 83.122.73.154 92533 port 15728781 92533 nas_port_type Virtual 92533 remote_ip 5.5.5.172 92535 username alihosseini 92535 mac 92535 bytes_out 0 92535 bytes_in 0 92535 station_ip 5.119.111.231 92535 port 1 92535 unique_id port 92535 remote_ip 10.8.0.46 92536 username alihosseini 92536 mac 92536 bytes_out 0 92536 bytes_in 0 92536 station_ip 5.119.111.231 92536 port 1 92536 unique_id port 92536 remote_ip 10.8.0.46 92539 username kamali 92539 unique_id port 92539 terminate_cause User-Request 92539 bytes_out 155290 92539 bytes_in 869400 92539 station_ip 83.122.42.230 92539 port 15728784 92539 nas_port_type Virtual 92539 remote_ip 5.5.5.170 92549 username ahmadi 92549 unique_id port 92549 terminate_cause User-Request 92549 bytes_out 62744 92549 bytes_in 303075 92549 station_ip 83.123.61.150 92549 port 15728789 92549 nas_port_type Virtual 92549 remote_ip 5.5.5.168 92552 username alireza1 92552 unique_id port 92552 terminate_cause Lost-Carrier 92552 bytes_out 83288 92552 bytes_in 416169 92552 station_ip 5.119.16.164 92552 port 15728791 92552 nas_port_type Virtual 92552 remote_ip 5.5.5.177 92554 username mahbobeh 92554 unique_id port 92554 terminate_cause Lost-Carrier 92554 bytes_out 2152243 92554 bytes_in 20877083 92554 station_ip 113.203.115.122 92554 port 15728764 92554 nas_port_type Virtual 92554 remote_ip 5.5.5.200 92557 username madadi2 92557 unique_id port 92557 terminate_cause Lost-Carrier 92557 bytes_out 168619 92557 bytes_in 1887643 92557 station_ip 5.120.3.17 92557 port 15728794 92557 nas_port_type Virtual 92557 remote_ip 5.5.5.165 92561 username aminvpn 92561 unique_id port 92561 terminate_cause Lost-Carrier 92561 bytes_out 465215 92561 bytes_in 3899193 92561 station_ip 5.119.146.222 92561 port 15728798 92561 nas_port_type Virtual 92561 remote_ip 5.5.5.161 92564 username alihosseini 92564 kill_reason Another user logged on this global unique id 92564 mac 92564 bytes_out 0 92564 bytes_in 0 92564 station_ip 5.120.100.39 92564 port 5 92564 unique_id port 188664 bytes_in 0 188664 station_ip 5.120.128.95 188664 port 389 188664 unique_id port 188665 username sekonji0496 188665 mac 188665 bytes_out 0 188665 bytes_in 0 188665 station_ip 83.123.0.241 92581 username farhad 92581 unique_id port 92581 terminate_cause Lost-Carrier 92581 bytes_out 1284848 92581 bytes_in 15073279 92581 station_ip 5.119.4.3 92581 port 15728815 92581 nas_port_type Virtual 92581 remote_ip 5.5.5.152 92582 username alireza1 92582 unique_id port 92582 terminate_cause Lost-Carrier 92582 bytes_out 520827 92582 bytes_in 2954106 92582 station_ip 5.120.13.244 92582 port 15728811 92582 nas_port_type Virtual 92582 remote_ip 5.5.5.153 92583 username alihosseini 92583 kill_reason Another user logged on this global unique id 92583 mac 188665 port 390 92556 nas_port_type Virtual 92556 remote_ip 5.5.5.167 92562 username tahmasebi 92562 unique_id port 92562 terminate_cause User-Request 92562 bytes_out 10199649 92562 bytes_in 158155871 92562 station_ip 5.119.208.96 92562 port 15728792 92562 nas_port_type Virtual 92562 remote_ip 5.5.5.236 92563 username jamali 92563 mac 92563 bytes_out 2544122 92563 bytes_in 24720503 92563 station_ip 83.123.24.81 92563 port 6 92563 unique_id port 92563 remote_ip 10.8.1.42 188665 unique_id port 188665 remote_ip 10.8.0.62 188667 username sekonji0496 188667 mac 188667 bytes_out 0 188667 bytes_in 0 188667 station_ip 83.123.0.241 188667 port 390 188667 unique_id port 92566 username jamali 92566 kill_reason Another user logged on this global unique id 92566 mac 92566 bytes_out 0 92566 bytes_in 0 92566 station_ip 83.123.24.81 92566 port 5 92566 unique_id port 92566 remote_ip 10.8.1.42 92569 username aminvpn 92569 unique_id port 92569 terminate_cause User-Request 92569 bytes_out 0 92569 bytes_in 0 92569 station_ip 5.120.120.138 92569 port 15728805 92569 nas_port_type Virtual 92569 remote_ip 5.5.5.156 92571 username aminvpn 92571 unique_id port 92571 terminate_cause Lost-Carrier 92571 bytes_out 244885 92571 bytes_in 1820211 92571 station_ip 5.119.68.234 92571 port 15728804 92571 nas_port_type Virtual 92571 remote_ip 5.5.5.169 92573 username alireza1 92573 unique_id port 92573 terminate_cause User-Request 92573 bytes_out 2330343 92573 bytes_in 521472 92573 station_ip 5.120.13.244 92573 port 15728810 92573 nas_port_type Virtual 92573 remote_ip 5.5.5.153 92574 username ahmadipour 92574 unique_id port 92574 terminate_cause Lost-Carrier 92574 bytes_out 1014074 92574 bytes_in 14718898 92574 station_ip 113.203.111.174 92574 port 15728808 92574 nas_port_type Virtual 92574 remote_ip 5.5.5.154 92575 username alinezhad 92575 unique_id port 92575 terminate_cause User-Request 92575 bytes_out 246909 92575 bytes_in 820520 92575 station_ip 5.202.133.76 92575 port 15728802 92575 nas_port_type Virtual 92575 remote_ip 5.5.5.157 92576 username alinezhad 92576 unique_id port 92576 terminate_cause User-Request 92576 bytes_out 0 92576 bytes_in 0 92576 station_ip 5.202.133.76 92576 port 15728812 92576 nas_port_type Virtual 92576 remote_ip 5.5.5.157 92579 username farhad 92579 unique_id port 92579 terminate_cause User-Request 92579 bytes_out 0 92579 bytes_in 0 92579 station_ip 5.119.4.3 92579 port 15728814 92579 nas_port_type Virtual 92579 remote_ip 5.5.5.152 92580 username caferibar 92580 unique_id port 92580 terminate_cause User-Request 92580 bytes_out 0 92580 bytes_in 0 92580 station_ip 5.120.14.54 92580 port 15728816 92580 nas_port_type Virtual 92580 remote_ip 5.5.5.220 92584 username alinezhad 92584 unique_id port 92584 terminate_cause User-Request 92584 bytes_out 0 92584 bytes_in 0 92584 station_ip 37.129.149.145 92584 port 15728821 92584 nas_port_type Virtual 92584 remote_ip 5.5.5.148 92588 username alinezhad 92588 unique_id port 92588 terminate_cause User-Request 92588 bytes_out 0 92588 bytes_in 0 92588 station_ip 37.129.149.145 92588 port 15728823 92588 nas_port_type Virtual 92588 remote_ip 5.5.5.148 92589 username askari 92589 mac 92589 bytes_out 0 92589 bytes_in 0 92589 station_ip 5.119.138.15 92589 port 8 92589 unique_id port 92593 username alireza1 92593 unique_id port 92593 terminate_cause Lost-Carrier 92593 bytes_out 126583 92593 bytes_in 1060259 92593 station_ip 5.119.62.249 92593 port 15728825 92593 nas_port_type Virtual 92593 remote_ip 5.5.5.146 92594 username bcboard 92594 unique_id port 188667 remote_ip 10.8.0.62 92572 nas_port_type Virtual 92572 remote_ip 5.5.5.153 92578 username morteza 92578 mac 92578 bytes_out 2693894 92578 bytes_in 47680467 92578 station_ip 83.122.162.135 92578 port 8 92578 unique_id port 92578 remote_ip 10.8.0.42 92587 username alinezhad 92587 unique_id port 92587 terminate_cause Lost-Carrier 92587 bytes_out 34305 92587 bytes_in 621669 92587 station_ip 5.202.133.76 92587 port 15728813 92587 nas_port_type Virtual 92587 remote_ip 5.5.5.157 92590 username khalili 92590 unique_id port 92590 terminate_cause Lost-Carrier 92590 bytes_out 25877302 92590 bytes_in 326210604 92590 station_ip 5.119.202.182 92590 port 15728729 92590 nas_port_type Virtual 92590 remote_ip 5.5.5.223 92592 username alemzadeh 92592 unique_id port 92592 terminate_cause User-Request 92592 bytes_out 220926 92592 bytes_in 3331660 92592 station_ip 83.122.4.209 92592 port 15728827 92592 nas_port_type Virtual 92592 remote_ip 5.5.5.144 92596 username alinezhad 92596 unique_id port 92596 terminate_cause User-Request 92596 bytes_out 0 92596 bytes_in 0 92596 station_ip 37.129.149.145 92596 port 15728829 92596 nas_port_type Virtual 92596 remote_ip 5.5.5.148 92598 username alinezhad 92598 unique_id port 92598 terminate_cause User-Request 92598 bytes_out 189649 92598 bytes_in 546609 92598 station_ip 83.122.211.203 92598 port 15728830 92598 nas_port_type Virtual 92598 remote_ip 5.5.5.143 92601 username alinezhad 92601 unique_id port 92601 terminate_cause User-Request 92601 bytes_out 97400 92601 bytes_in 169132 92601 station_ip 113.203.66.200 92601 port 15728832 92601 nas_port_type Virtual 92601 remote_ip 5.5.5.141 92605 username alinezhad 92605 unique_id port 92605 terminate_cause User-Request 92605 bytes_out 0 92605 bytes_in 0 92605 station_ip 37.129.180.144 92605 port 15728834 92605 nas_port_type Virtual 92605 remote_ip 5.5.5.140 92608 username alinezhad 92608 unique_id port 92608 terminate_cause User-Request 92608 bytes_out 40335 92608 bytes_in 784098 92608 station_ip 37.129.71.37 92608 port 15728838 92608 nas_port_type Virtual 92608 remote_ip 5.5.5.136 92616 username afarin 92616 unique_id port 92616 terminate_cause User-Request 92616 bytes_out 0 92616 bytes_in 0 92616 station_ip 31.56.153.245 92616 port 15728841 92616 nas_port_type Virtual 92616 remote_ip 5.5.5.135 92619 username mirzaei 92619 mac 92619 bytes_out 0 92619 bytes_in 0 92619 station_ip 5.120.143.151 92619 port 6 92619 unique_id port 92619 remote_ip 10.8.1.14 92622 username mirzaei 92622 mac 92622 bytes_out 13388 92622 bytes_in 21752 92622 station_ip 5.120.143.151 92622 port 7 92622 unique_id port 92622 remote_ip 10.8.0.14 92623 username mirzaei 92623 mac 92623 bytes_out 0 92623 bytes_in 0 92623 station_ip 5.120.143.151 92623 port 5 92623 unique_id port 92623 remote_ip 10.8.0.14 92624 username mirzaei 92624 mac 92624 bytes_out 13809 92624 bytes_in 18669 92624 station_ip 5.119.186.239 92624 port 7 92624 unique_id port 92624 remote_ip 10.8.0.14 92626 username mirzaei 92626 mac 92626 bytes_out 71919 92626 bytes_in 132682 92626 station_ip 5.120.11.221 92626 port 9 92626 unique_id port 92626 remote_ip 10.8.0.14 92627 username mirzaei 92627 mac 92627 bytes_out 5297 92627 bytes_in 10920 92627 station_ip 5.119.64.249 92627 port 5 92627 unique_id port 92627 remote_ip 10.8.0.14 92628 username mirzaei 92628 kill_reason Another user logged on this global unique id 92628 mac 92628 bytes_out 0 92628 bytes_in 0 92628 station_ip 5.119.64.249 92628 port 5 92628 unique_id port 92628 remote_ip 10.8.0.14 92583 bytes_out 0 92583 bytes_in 0 92583 station_ip 5.120.100.39 92583 port 5 92583 unique_id port 92585 username askari 92585 kill_reason Another user logged on this global unique id 92585 mac 92585 bytes_out 0 92585 bytes_in 0 92585 station_ip 5.119.138.15 92585 port 8 92585 unique_id port 92585 remote_ip 10.8.0.34 92586 username alinezhad 92586 unique_id port 92586 terminate_cause User-Request 92586 bytes_out 9981 92586 bytes_in 16387 92586 station_ip 37.129.149.145 92586 port 15728822 92586 nas_port_type Virtual 92586 remote_ip 5.5.5.148 92591 username caferibar 92591 unique_id port 92591 terminate_cause User-Request 92591 bytes_out 6789294 92591 bytes_in 151148256 92591 station_ip 5.120.14.54 92591 port 15728818 92591 nas_port_type Virtual 92591 remote_ip 5.5.5.220 92603 username mahdixz 92603 unique_id port 92603 terminate_cause Lost-Carrier 92603 bytes_out 4198567 92603 bytes_in 118420768 92603 station_ip 151.235.104.45 92603 port 15728831 92603 nas_port_type Virtual 92603 remote_ip 5.5.5.142 92604 username mahyaarabpour 92604 mac 92604 bytes_out 4608904 92604 bytes_in 43456206 92604 station_ip 5.119.214.111 92604 port 5 92604 unique_id port 92604 remote_ip 10.8.0.54 92606 username farhad 92606 unique_id port 92606 terminate_cause User-Request 92606 bytes_out 25053873 92606 bytes_in 265307635 92606 station_ip 5.119.90.238 92606 port 15728819 92606 nas_port_type Virtual 92606 remote_ip 5.5.5.150 92609 username alinezhad 92609 unique_id port 92609 terminate_cause User-Request 92609 bytes_out 239874 92609 bytes_in 7066834 92609 station_ip 37.129.71.37 92609 port 15728839 92609 nas_port_type Virtual 92609 remote_ip 5.5.5.136 92610 username farhad 92610 unique_id port 92610 terminate_cause Lost-Carrier 92610 bytes_out 4868942 92610 bytes_in 57072232 92610 station_ip 5.119.68.34 92610 port 15728835 92610 nas_port_type Virtual 92610 remote_ip 5.5.5.139 92611 username aminvpn 92611 mac 92611 bytes_out 0 92611 bytes_in 0 92611 station_ip 37.129.80.164 92611 port 5 92611 unique_id port 92611 remote_ip 10.8.0.6 92612 username majid 92612 unique_id port 92612 terminate_cause User-Request 92612 bytes_out 3613124 92612 bytes_in 88378819 92612 station_ip 86.57.18.233 92612 port 15728836 92612 nas_port_type Virtual 92612 remote_ip 5.5.5.138 92614 username mammad 92614 unique_id port 92614 terminate_cause User-Request 92614 bytes_out 2032851 92614 bytes_in 58984921 92614 station_ip 78.39.26.9 92614 port 15728840 92614 nas_port_type Virtual 92614 remote_ip 5.5.5.149 92617 username afarin 92617 unique_id port 92617 terminate_cause User-Request 92617 bytes_out 0 92617 bytes_in 0 92617 station_ip 31.56.153.245 92617 port 15728842 92617 nas_port_type Virtual 92617 remote_ip 5.5.5.135 92618 username mirzaei 92618 mac 92618 bytes_out 1789492 92618 bytes_in 5782211 92618 station_ip 5.120.143.151 92618 port 7 92618 unique_id port 92618 remote_ip 10.8.0.14 92630 username aminvpn 92630 kill_reason Another user logged on this global unique id 92630 mac 92630 bytes_out 0 92630 bytes_in 0 92630 station_ip 37.129.80.164 92630 port 8 92630 unique_id port 92630 remote_ip 10.8.0.6 92631 username mirzaei 92631 mac 92631 bytes_out 0 92631 bytes_in 0 92631 station_ip 5.119.64.249 92631 port 7 92631 unique_id port 92631 remote_ip 10.8.0.14 92632 username aminvpn 92632 kill_reason Another user logged on this global unique id 92632 mac 92632 bytes_out 0 92632 bytes_in 0 92632 station_ip 37.129.80.164 92632 port 8 92632 unique_id port 92634 username askari 92634 kill_reason Another user logged on this global unique id 92594 terminate_cause Lost-Carrier 92594 bytes_out 1510894 92594 bytes_in 1098233 92594 station_ip 83.123.124.189 92594 port 15728826 92594 nas_port_type Virtual 92594 remote_ip 5.5.5.145 92595 username hashtadani 92595 unique_id port 92595 terminate_cause Lost-Carrier 92595 bytes_out 16412590 92595 bytes_in 224180247 92595 station_ip 37.129.218.107 92595 port 15728817 92595 nas_port_type Virtual 92595 remote_ip 5.5.5.151 92597 username alihosseini 92597 kill_reason Another user logged on this global unique id 92597 mac 92597 bytes_out 0 92597 bytes_in 0 92597 station_ip 5.120.100.39 92597 port 5 92597 unique_id port 92599 username alihosseini 92599 mac 92599 bytes_out 0 92599 bytes_in 0 92599 station_ip 5.120.100.39 92599 port 5 92599 unique_id port 92600 username mammad 92600 unique_id port 92600 terminate_cause User-Request 92600 bytes_out 7682234 92600 bytes_in 138518089 92600 station_ip 78.39.26.9 92600 port 15728820 92600 nas_port_type Virtual 92600 remote_ip 5.5.5.149 188666 remote_ip 10.8.0.250 188670 username zahra1101 188670 mac 188670 bytes_out 0 188670 bytes_in 0 188670 station_ip 5.120.128.95 188670 port 390 188670 unique_id port 188670 remote_ip 10.8.0.250 92607 username mammad 92607 unique_id port 92607 terminate_cause User-Request 92607 bytes_out 3365766 92607 bytes_in 59890485 92607 station_ip 78.39.26.9 92607 port 15728833 92607 nas_port_type Virtual 92607 remote_ip 5.5.5.149 92613 username farhad 92613 unique_id port 92613 terminate_cause Lost-Carrier 92613 bytes_out 2275024 92613 bytes_in 50356476 92613 station_ip 5.119.231.22 92613 port 15728837 92613 nas_port_type Virtual 92613 remote_ip 5.5.5.137 92615 username madadi2 92615 unique_id port 92615 terminate_cause Lost-Carrier 92615 bytes_out 7632507 92615 bytes_in 21026806 92615 station_ip 5.119.191.25 92615 port 15728799 92615 nas_port_type Virtual 92615 remote_ip 5.5.5.160 92620 username mirzaei 92620 mac 92620 bytes_out 0 92620 bytes_in 0 92620 station_ip 5.120.143.151 92620 port 6 92620 unique_id port 92620 remote_ip 10.8.1.14 92621 username mirzaei 92621 mac 92621 bytes_out 0 92621 bytes_in 0 92621 station_ip 5.120.143.151 92621 port 5 92621 unique_id port 92621 remote_ip 10.8.0.14 92625 username morteza 92625 mac 92625 bytes_out 0 92625 bytes_in 0 92625 station_ip 83.122.128.143 92625 port 5 92625 unique_id port 92625 remote_ip 10.8.0.42 92638 username askari 92638 mac 92638 bytes_out 0 92638 bytes_in 0 92638 station_ip 5.120.37.207 92638 port 7 92638 unique_id port 92638 remote_ip 10.8.0.34 92640 username aminvpn 92640 kill_reason Another user logged on this global unique id 92640 mac 92640 bytes_out 0 92640 bytes_in 0 92640 station_ip 37.129.80.164 92640 port 8 92640 unique_id port 92641 username aminvpn 92641 kill_reason Another user logged on this global unique id 92641 mac 92641 bytes_out 0 92641 bytes_in 0 92641 station_ip 37.129.80.164 92641 port 8 92641 unique_id port 92642 username caferibar 92642 unique_id port 92642 terminate_cause User-Request 92642 bytes_out 22414553 92642 bytes_in 774571797 92642 station_ip 94.24.82.91 92642 port 15728847 92642 nas_port_type Virtual 92642 remote_ip 5.5.5.134 92646 username afarin 92646 unique_id port 92646 terminate_cause Admin-Reboot 92646 bytes_out 5302485 92646 bytes_in 103555210 92646 station_ip 31.56.153.245 92646 port 15728843 92646 nas_port_type Virtual 92646 remote_ip 5.5.5.135 92649 username caferibar 92649 unique_id port 92649 terminate_cause Admin-Reboot 92649 bytes_out 64556 188674 username sekonji0496 92629 username jamali 92629 mac 92629 bytes_out 0 92629 bytes_in 0 92629 station_ip 83.123.24.81 92629 port 5 92629 unique_id port 92633 username mirzaei 92633 mac 92633 bytes_out 0 92633 bytes_in 0 92633 station_ip 5.112.118.150 92633 port 7 92633 unique_id port 92633 remote_ip 10.8.0.14 92637 username aminvpn 92637 kill_reason Another user logged on this global unique id 92637 mac 92637 bytes_out 0 92637 bytes_in 0 92637 station_ip 37.129.80.164 92637 port 8 92637 unique_id port 92639 username askari 92639 mac 92639 bytes_out 0 92639 bytes_in 0 92639 station_ip 5.120.37.207 92639 port 5 92639 unique_id port 92639 remote_ip 10.8.0.34 92643 username morteza 92643 mac 92643 bytes_out 0 92643 bytes_in 0 92643 station_ip 83.122.214.7 92643 port 5 92643 unique_id port 92643 remote_ip 10.8.0.42 92644 username mahbobeh 92644 unique_id port 92644 terminate_cause Lost-Carrier 92644 bytes_out 2363815 92644 bytes_in 42659182 92644 station_ip 113.203.115.122 92644 port 15728848 92644 nas_port_type Virtual 92644 remote_ip 5.5.5.200 92645 username madadi2 92645 unique_id port 92645 terminate_cause Lost-Carrier 92645 bytes_out 68441 92645 bytes_in 265137 92645 station_ip 5.119.108.203 92645 port 15728850 92645 nas_port_type Virtual 92645 remote_ip 5.5.5.133 92647 username tahmasebi 92647 unique_id port 92647 terminate_cause Admin-Reboot 92647 bytes_out 1524318 92647 bytes_in 16293754 92647 station_ip 5.119.208.96 92647 port 15728844 92647 nas_port_type Virtual 92647 remote_ip 5.5.5.236 92650 username alireza1 92650 unique_id port 92650 terminate_cause Admin-Reboot 92650 bytes_out 898800 92650 bytes_in 2351706 92650 station_ip 5.119.62.249 92650 port 15728849 92650 nas_port_type Virtual 92650 remote_ip 5.5.5.146 92651 username mirzaei 92651 mac 92651 bytes_out 295619 92651 bytes_in 700134 92651 station_ip 5.119.150.74 92651 port 6 92651 unique_id port 92651 remote_ip 10.8.1.14 92655 username mahyaarabpour 92655 mac 92655 bytes_out 0 92655 bytes_in 0 92655 station_ip 5.119.214.111 92655 port 7 92655 unique_id port 92655 remote_ip 10.8.0.54 92656 username alinezhad 92656 unique_id port 92656 terminate_cause User-Request 92656 bytes_out 0 92656 bytes_in 0 92656 station_ip 5.202.60.123 92656 port 15728647 92656 nas_port_type Virtual 92656 remote_ip 5.5.5.251 92657 username farhad 92657 unique_id port 92657 terminate_cause Lost-Carrier 92657 bytes_out 5987649 92657 bytes_in 142404753 92657 station_ip 5.119.2.55 92657 port 15728646 92657 nas_port_type Virtual 92657 remote_ip 5.5.5.252 92658 username caferibar 92658 kill_reason Maximum check online fails reached 92658 unique_id port 92658 bytes_out 193140 92658 bytes_in 2244189 92658 station_ip 94.24.89.50 92658 port 15728640 92658 nas_port_type Virtual 92658 remote_ip 5.5.5.255 92660 username alinezhad 92660 unique_id port 92660 terminate_cause User-Request 92660 bytes_out 21625 92660 bytes_in 114904 92660 station_ip 5.202.60.123 92660 port 15728651 92660 nas_port_type Virtual 92660 remote_ip 5.5.5.251 92661 username alinezhad 92661 unique_id port 92661 terminate_cause User-Request 92661 bytes_out 0 92661 bytes_in 0 92661 station_ip 5.202.60.123 92661 port 15728652 92661 nas_port_type Virtual 92661 remote_ip 5.5.5.251 92662 username aminvpn 92662 mac 92662 bytes_out 0 92662 bytes_in 0 92662 station_ip 37.129.60.144 92662 port 8 92662 unique_id port 92662 remote_ip 10.8.0.6 92663 username mirzaei 92663 mac 92663 bytes_out 0 92663 bytes_in 0 92663 station_ip 5.119.150.74 92634 mac 92634 bytes_out 0 92634 bytes_in 0 92634 station_ip 5.120.37.207 92634 port 5 92634 unique_id port 92634 remote_ip 10.8.0.34 92635 username mirzaei 92635 mac 92635 bytes_out 293547 92635 bytes_in 2228165 92635 station_ip 5.119.150.74 92635 port 6 92635 unique_id port 92635 remote_ip 10.8.1.14 92636 username askari 92636 mac 92636 bytes_out 0 92636 bytes_in 0 92636 station_ip 5.120.37.207 92636 port 5 92636 unique_id port 92648 username caferibar 92648 unique_id port 92648 terminate_cause Admin-Reboot 92648 bytes_out 9376592 92648 bytes_in 208498510 92648 station_ip 5.120.14.54 92648 port 15728828 92648 nas_port_type Virtual 92648 remote_ip 5.5.5.220 92654 username madadi2 92654 unique_id port 92654 terminate_cause Lost-Carrier 92654 bytes_out 12830 92654 bytes_in 126308 92654 station_ip 5.119.196.165 92654 port 15728641 92654 nas_port_type Virtual 92654 remote_ip 5.5.5.254 92659 username alinezhad 92659 unique_id port 92659 terminate_cause User-Request 92659 bytes_out 21708 92659 bytes_in 105013 92659 station_ip 5.202.60.123 92659 port 15728648 92659 nas_port_type Virtual 92659 remote_ip 5.5.5.251 92672 username morteza 92672 kill_reason Another user logged on this global unique id 92672 mac 92672 bytes_out 0 92672 bytes_in 0 92672 station_ip 37.129.48.145 92672 port 9 92672 unique_id port 92673 username mirzaei 92673 mac 92673 bytes_out 0 92673 bytes_in 0 92673 station_ip 5.119.150.74 92673 port 8 92673 unique_id port 92673 remote_ip 10.8.0.14 92681 username aminvpn 92681 kill_reason Another user logged on this global unique id 92681 mac 92681 bytes_out 0 92681 bytes_in 0 92681 station_ip 37.129.60.144 92681 port 5 92681 unique_id port 92681 remote_ip 10.8.0.6 92684 username alihosseini 92684 mac 92684 bytes_out 0 92684 bytes_in 0 92684 station_ip 5.120.4.173 92684 port 7 92684 unique_id port 92684 remote_ip 10.8.0.46 92686 username alihosseini 92686 mac 92686 bytes_out 0 92686 bytes_in 0 92686 station_ip 5.119.111.231 92686 port 4 92686 unique_id port 92687 username heydari 92687 unique_id port 92687 terminate_cause Lost-Carrier 92687 bytes_out 116 92687 bytes_in 61118 92687 station_ip 5.120.41.187 92687 port 15728659 92687 nas_port_type Virtual 92687 remote_ip 5.5.5.245 92688 username alinezhad 92688 unique_id port 92688 terminate_cause User-Request 92688 bytes_out 0 92688 bytes_in 0 92688 station_ip 5.202.60.123 92688 port 15728665 92688 nas_port_type Virtual 92688 remote_ip 5.5.5.251 92702 username ksrkrgr 92702 unique_id port 92702 terminate_cause User-Request 92702 bytes_out 382996 92702 bytes_in 14449535 92702 station_ip 83.122.136.22 92702 port 15728679 92702 nas_port_type Virtual 92702 remote_ip 5.5.5.236 92704 username ksrkrgr 92704 unique_id port 92704 terminate_cause Lost-Carrier 92704 bytes_out 149934 92704 bytes_in 1620249 92704 station_ip 151.234.23.75 92704 port 15728673 92704 nas_port_type Virtual 92704 remote_ip 5.5.5.237 92705 username caferibar 92705 unique_id port 92705 terminate_cause User-Request 92705 bytes_out 8027705 92705 bytes_in 190531567 92705 station_ip 151.238.234.13 92705 port 15728668 92705 nas_port_type Virtual 92705 remote_ip 5.5.5.241 92712 username alinezhad 92712 unique_id port 92712 terminate_cause User-Request 92712 bytes_out 0 92712 bytes_in 0 92712 station_ip 5.202.60.123 92712 port 15728687 92712 nas_port_type Virtual 92712 remote_ip 5.5.5.251 92714 username caferibar 92714 unique_id port 92714 terminate_cause User-Request 92714 bytes_out 66455 92714 bytes_in 1492036 92649 bytes_in 242623 92649 station_ip 94.24.89.50 92649 port 15728851 92649 nas_port_type Virtual 92649 remote_ip 5.5.5.132 92652 username mirzaei 92652 mac 92652 bytes_out 0 92652 bytes_in 0 92652 station_ip 5.119.150.74 92652 port 5 92652 unique_id port 92652 remote_ip 10.8.0.14 92653 username aminvpn 92653 mac 92653 bytes_out 0 92653 bytes_in 0 92653 station_ip 37.129.80.164 92653 port 8 92653 unique_id port 92664 username alireza1 92664 unique_id port 92664 terminate_cause Lost-Carrier 92664 bytes_out 844191 92664 bytes_in 9879302 92664 station_ip 5.119.62.249 92664 port 15728645 92664 nas_port_type Virtual 92664 remote_ip 5.5.5.253 92665 username aminvpn 92665 mac 92665 bytes_out 7748994 92665 bytes_in 78318597 92665 station_ip 37.129.60.144 92665 port 5 92665 unique_id port 92665 remote_ip 10.8.0.6 92670 username aminvpn 92670 unique_id port 92670 terminate_cause User-Request 92670 bytes_out 2052175 92670 bytes_in 289875700 92670 station_ip 5.120.152.227 92670 port 15728653 92670 nas_port_type Virtual 92670 remote_ip 5.5.5.248 92674 username morteza 92674 mac 92674 bytes_out 0 92674 bytes_in 0 92674 station_ip 37.129.48.145 92674 port 9 92674 unique_id port 92675 username alihosseini 92675 kill_reason Another user logged on this global unique id 92675 mac 92675 bytes_out 0 92675 bytes_in 0 92675 station_ip 5.120.4.173 92675 port 7 92675 unique_id port 92677 username alihosseini 92677 kill_reason Another user logged on this global unique id 92677 mac 92677 bytes_out 0 92677 bytes_in 0 92677 station_ip 5.120.4.173 92677 port 7 92677 unique_id port 92678 username alihosseini 92678 mac 92678 bytes_out 0 92678 bytes_in 0 92678 station_ip 5.120.4.173 92678 port 7 92678 unique_id port 92685 username arman 92685 unique_id port 92685 terminate_cause User-Request 92685 bytes_out 0 92685 bytes_in 0 92685 station_ip 5.119.224.87 92685 port 15728657 92685 nas_port_type Virtual 92685 remote_ip 5.5.5.246 92689 username arman 92689 unique_id port 92689 terminate_cause Lost-Carrier 92689 bytes_out 221685 92689 bytes_in 1051783 92689 station_ip 5.119.224.87 92689 port 15728658 92689 nas_port_type Virtual 92689 remote_ip 5.5.5.246 92691 username mamal 92691 unique_id port 92691 terminate_cause User-Request 92691 bytes_out 8802065 92691 bytes_in 254311531 92691 station_ip 37.129.52.1 92691 port 15728660 92691 nas_port_type Virtual 92691 remote_ip 5.5.5.244 92694 username caferibar 92694 unique_id port 92694 terminate_cause User-Request 92694 bytes_out 150913 92694 bytes_in 3687070 92694 station_ip 113.203.37.30 92694 port 15728670 92694 nas_port_type Virtual 92694 remote_ip 5.5.5.239 92696 username alihosseini 92696 kill_reason Another user logged on this global unique id 92696 mac 92696 bytes_out 0 92696 bytes_in 0 92696 station_ip 5.120.4.173 92696 port 5 92696 unique_id port 92696 remote_ip 10.8.0.46 92697 username fariba 92697 mac 92697 bytes_out 114813 92697 bytes_in 423659 92697 station_ip 5.119.244.119 92697 port 5 92697 unique_id port 92697 remote_ip 10.8.1.46 92703 username alinezhad 92703 unique_id port 92703 terminate_cause User-Request 92703 bytes_out 0 92703 bytes_in 0 92703 station_ip 5.202.60.123 92703 port 15728682 92703 nas_port_type Virtual 92703 remote_ip 5.5.5.251 92706 username caferibar 92706 unique_id port 92706 terminate_cause User-Request 92706 bytes_out 30443 92706 bytes_in 347547 92706 station_ip 113.203.32.58 92706 port 15728683 92706 nas_port_type Virtual 92706 remote_ip 5.5.5.233 92708 username heydari 92663 port 5 92663 unique_id port 92663 remote_ip 10.8.0.14 92666 username caferibar 92666 unique_id port 92666 terminate_cause Lost-Carrier 92666 bytes_out 473518 92666 bytes_in 2327241 92666 station_ip 5.120.14.54 92666 port 15728649 92666 nas_port_type Virtual 92666 remote_ip 5.5.5.250 92667 username aminvpn 92667 mac 92667 bytes_out 7836372 92667 bytes_in 78362058 92667 station_ip 37.129.60.144 92667 port 5 92667 unique_id port 92667 remote_ip 10.8.0.6 92668 username alinezhad 92668 unique_id port 92668 terminate_cause User-Request 92668 bytes_out 0 92668 bytes_in 0 92668 station_ip 5.202.60.123 92668 port 15728654 92668 nas_port_type Virtual 92668 remote_ip 5.5.5.251 92669 username alihosseini 92669 kill_reason Another user logged on this global unique id 92669 mac 92669 bytes_out 0 92669 bytes_in 0 92669 station_ip 5.120.4.173 92669 port 7 92669 unique_id port 92669 remote_ip 10.8.0.46 92671 username morteza 92671 kill_reason Another user logged on this global unique id 92671 mac 92671 bytes_out 0 92671 bytes_in 0 92671 station_ip 37.129.48.145 92671 port 9 92671 unique_id port 92671 remote_ip 10.8.0.42 188668 username sekonji0496 188668 mac 188668 bytes_out 0 188668 bytes_in 0 188668 station_ip 83.123.0.241 188668 port 388 188668 unique_id port 188668 remote_ip 10.8.0.62 188669 username zahra1101 92679 username aminvpn 92679 mac 92679 bytes_out 0 92679 bytes_in 0 92679 station_ip 37.129.60.144 92679 port 5 92679 unique_id port 92679 remote_ip 10.8.0.6 92680 username alihosseini 92680 mac 92680 bytes_out 0 92680 bytes_in 0 92680 station_ip 5.120.4.173 92680 port 5 92680 unique_id port 92680 remote_ip 10.8.1.34 92682 username alihosseini 92682 mac 92682 bytes_out 0 92682 bytes_in 0 92682 station_ip 5.120.4.173 92682 port 5 92682 unique_id port 92682 remote_ip 10.8.1.34 92683 username alihosseini 92683 mac 92683 bytes_out 0 92683 bytes_in 0 92683 station_ip 5.120.4.173 92683 port 7 92683 unique_id port 92683 remote_ip 10.8.0.46 92690 username amir 92690 unique_id port 92690 terminate_cause Lost-Carrier 92690 bytes_out 4411962 92690 bytes_in 34503066 92690 station_ip 46.225.210.77 92690 port 15728655 92690 nas_port_type Virtual 92690 remote_ip 5.5.5.247 92692 username aminvpn 92692 mac 92692 bytes_out 35990 92692 bytes_in 33751 92692 station_ip 37.129.60.144 92692 port 4 92692 unique_id port 92692 remote_ip 10.8.0.6 92693 username asadi 92693 unique_id port 92693 terminate_cause User-Request 92693 bytes_out 32842 92693 bytes_in 131784 92693 station_ip 83.123.164.25 92693 port 15728669 92693 nas_port_type Virtual 92693 remote_ip 5.5.5.240 92695 username alinezhad 92695 unique_id port 92695 terminate_cause User-Request 92695 bytes_out 0 92695 bytes_in 0 92695 station_ip 5.202.60.123 92695 port 15728671 92695 nas_port_type Virtual 92695 remote_ip 5.5.5.251 92698 username caferibar 92698 unique_id port 92698 terminate_cause User-Request 92698 bytes_out 0 92698 bytes_in 0 92698 station_ip 113.203.37.30 92698 port 15728675 92698 nas_port_type Virtual 92698 remote_ip 5.5.5.239 92699 username ksrkrgr 92699 unique_id port 92699 terminate_cause User-Request 92699 bytes_out 363376 92699 bytes_in 8713087 92699 station_ip 83.122.136.22 92699 port 15728676 92699 nas_port_type Virtual 92699 remote_ip 5.5.5.236 92700 username caferibar 92700 unique_id port 92700 terminate_cause User-Request 92700 bytes_out 15240 92700 bytes_in 175529 92700 station_ip 113.203.37.30 92700 port 15728677 188669 mac 92700 nas_port_type Virtual 92700 remote_ip 5.5.5.239 92701 username ksrkrgr 92701 unique_id port 92701 terminate_cause User-Request 92701 bytes_out 281544 92701 bytes_in 3595506 92701 station_ip 83.122.136.22 92701 port 15728678 92701 nas_port_type Virtual 92701 remote_ip 5.5.5.236 92707 username caferibar 92707 unique_id port 92707 terminate_cause Lost-Carrier 92707 bytes_out 877585 92707 bytes_in 12481659 92707 station_ip 5.119.98.187 92707 port 15728680 92707 nas_port_type Virtual 92707 remote_ip 5.5.5.235 92709 username caferibar 92709 unique_id port 92709 terminate_cause Lost-Carrier 92709 bytes_out 2043517 92709 bytes_in 28011163 92709 station_ip 37.137.29.166 92709 port 15728667 92709 nas_port_type Virtual 92709 remote_ip 5.5.5.242 92710 username aminvpn 92710 mac 92710 bytes_out 183286 92710 bytes_in 180399 92710 station_ip 37.129.60.144 92710 port 4 92710 unique_id port 92710 remote_ip 10.8.0.6 92716 username caferibar 92716 unique_id port 92716 terminate_cause User-Request 92716 bytes_out 201319 92716 bytes_in 165132 92716 station_ip 83.122.140.123 92716 port 15728690 92716 nas_port_type Virtual 92716 remote_ip 5.5.5.229 92722 username caferibar 92722 unique_id port 92722 terminate_cause User-Request 92722 bytes_out 1367232 92722 bytes_in 959497 92722 station_ip 5.200.112.161 92722 port 15728691 92722 nas_port_type Virtual 92722 remote_ip 5.5.5.243 92725 username morteza 92725 kill_reason Maximum check online fails reached 92725 mac 92725 bytes_out 0 92725 bytes_in 0 92725 station_ip 37.129.20.54 92725 port 6 92725 unique_id port 92729 username alemzadeh 92729 unique_id port 92729 terminate_cause User-Request 92729 bytes_out 374309 92729 bytes_in 8749360 92729 station_ip 83.122.56.53 92729 port 15728702 92729 nas_port_type Virtual 92729 remote_ip 5.5.5.221 92736 username alinezhad 92736 unique_id port 92736 terminate_cause User-Request 92736 bytes_out 0 92736 bytes_in 0 92736 station_ip 5.202.60.123 92736 port 15728708 92736 nas_port_type Virtual 92736 remote_ip 5.5.5.251 92738 username mammad 92738 unique_id port 92738 terminate_cause User-Request 92738 bytes_out 764409 92738 bytes_in 6525107 92738 station_ip 5.233.57.186 92738 port 15728709 92738 nas_port_type Virtual 92738 remote_ip 5.5.5.217 92740 username alinezhad 92740 unique_id port 92740 terminate_cause User-Request 92740 bytes_out 0 92740 bytes_in 0 92740 station_ip 5.202.60.123 92740 port 15728711 92740 nas_port_type Virtual 92740 remote_ip 5.5.5.251 92742 username amirabbas 92742 unique_id port 92742 terminate_cause Lost-Carrier 92742 bytes_out 5809349 92742 bytes_in 128344603 92742 station_ip 31.56.152.237 92742 port 15728707 92742 nas_port_type Virtual 92742 remote_ip 5.5.5.222 92749 username mirzaei 92749 kill_reason Another user logged on this global unique id 92749 mac 92749 bytes_out 0 92749 bytes_in 0 92749 station_ip 5.119.157.110 92749 port 7 92749 unique_id port 92749 remote_ip 10.8.0.14 92750 username alihosseini 92750 mac 92750 bytes_out 0 92750 bytes_in 0 92750 station_ip 5.119.18.177 92750 port 7 92750 unique_id port 92750 remote_ip 10.8.1.34 92766 username morteza 92766 mac 92766 bytes_out 0 92766 bytes_in 0 92766 station_ip 37.129.5.154 92766 port 4 92766 unique_id port 92766 remote_ip 10.8.0.42 92767 username alihosseini 92767 mac 92767 bytes_out 3212402 92767 bytes_in 36240783 92767 station_ip 5.119.18.177 92767 port 7 92767 unique_id port 92767 remote_ip 10.8.1.34 92771 username morteza 92771 mac 92771 bytes_out 0 92771 bytes_in 0 92771 station_ip 37.129.5.154 92708 unique_id port 92708 terminate_cause Lost-Carrier 92708 bytes_out 216780 92708 bytes_in 702079 92708 station_ip 5.119.122.2 92708 port 15728672 92708 nas_port_type Virtual 92708 remote_ip 5.5.5.238 92711 username aminvpn 92711 unique_id port 92711 terminate_cause Lost-Carrier 92711 bytes_out 1808856 92711 bytes_in 13029978 92711 station_ip 5.119.157.59 92711 port 15728685 92711 nas_port_type Virtual 92711 remote_ip 5.5.5.231 92713 username alinezhad 92713 unique_id port 92713 terminate_cause User-Request 92713 bytes_out 0 92713 bytes_in 0 92713 station_ip 5.202.60.123 92713 port 15728688 92713 nas_port_type Virtual 92713 remote_ip 5.5.5.251 92715 username madadi2 92715 unique_id port 92715 terminate_cause Lost-Carrier 92715 bytes_out 149135 92715 bytes_in 668932 92715 station_ip 5.120.58.97 92715 port 15728686 92715 nas_port_type Virtual 92715 remote_ip 5.5.5.230 92718 username morteza 92718 mac 92718 bytes_out 488133 92718 bytes_in 10232787 92718 station_ip 37.129.20.54 92718 port 5 92718 unique_id port 92718 remote_ip 10.8.0.42 92720 username morteza 92720 mac 92720 bytes_out 0 92720 bytes_in 0 92720 station_ip 37.129.20.54 92720 port 5 92720 unique_id port 92720 remote_ip 10.8.0.42 92721 username morteza 92721 mac 92721 bytes_out 0 92721 bytes_in 0 92721 station_ip 37.129.20.54 92721 port 6 92721 unique_id port 92721 remote_ip 10.8.1.26 92723 username arabpour 92723 unique_id port 92723 terminate_cause User-Request 92723 bytes_out 0 92723 bytes_in 0 92723 station_ip 89.198.86.162 92723 port 15728694 92723 nas_port_type Virtual 92723 remote_ip 5.5.5.227 92724 username caferibar 92724 unique_id port 92724 terminate_cause User-Request 92724 bytes_out 0 92724 bytes_in 0 92724 station_ip 94.24.98.89 92724 port 15728693 92724 nas_port_type Virtual 92724 remote_ip 5.5.5.228 92726 username alinezhad 92726 unique_id port 92726 terminate_cause User-Request 92726 bytes_out 0 92726 bytes_in 0 92726 station_ip 5.202.60.123 92726 port 15728696 92726 nas_port_type Virtual 92726 remote_ip 5.5.5.251 92728 username aminvpn 92728 unique_id port 92728 terminate_cause User-Request 92728 bytes_out 1468882 92728 bytes_in 75795542 92728 station_ip 5.233.51.99 92728 port 15728695 92728 nas_port_type Virtual 92728 remote_ip 5.5.5.226 92733 username madadi2 92733 unique_id port 92733 terminate_cause Lost-Carrier 92733 bytes_out 505615 92733 bytes_in 3075715 92733 station_ip 5.120.58.220 92733 port 15728698 92733 nas_port_type Virtual 92733 remote_ip 5.5.5.224 92734 username amirabbas 92734 unique_id port 92734 terminate_cause User-Request 92734 bytes_out 4089781 92734 bytes_in 100801135 92734 station_ip 31.56.152.237 92734 port 15728701 92734 nas_port_type Virtual 92734 remote_ip 5.5.5.222 92735 username ahmadi 92735 unique_id port 92735 terminate_cause User-Request 92735 bytes_out 0 92735 bytes_in 0 92735 station_ip 83.123.172.182 92735 port 15728705 92735 nas_port_type Virtual 92735 remote_ip 5.5.5.219 92737 username arman 92737 unique_id port 92737 terminate_cause Lost-Carrier 92737 bytes_out 3274749 92737 bytes_in 29954605 92737 station_ip 5.119.42.90 92737 port 15728681 92737 nas_port_type Virtual 92737 remote_ip 5.5.5.234 92741 username alinezhad 92741 unique_id port 92741 terminate_cause User-Request 92741 bytes_out 0 92741 bytes_in 0 92741 station_ip 5.202.60.123 92741 port 15728712 92741 nas_port_type Virtual 92741 remote_ip 5.5.5.251 92746 username alireza1 92746 unique_id port 92746 terminate_cause User-Request 92746 bytes_out 491596 92746 bytes_in 2179907 92746 station_ip 5.119.195.0 92714 station_ip 83.122.140.123 92714 port 15728689 92714 nas_port_type Virtual 92714 remote_ip 5.5.5.229 92717 username caferibar 92717 unique_id port 92717 terminate_cause User-Request 92717 bytes_out 175804 92717 bytes_in 1270700 92717 station_ip 5.200.112.161 92717 port 15728666 92717 nas_port_type Virtual 92717 remote_ip 5.5.5.243 92719 username morteza 92719 mac 92719 bytes_out 21191 92719 bytes_in 102876 92719 station_ip 37.129.20.54 92719 port 5 92719 unique_id port 92719 remote_ip 10.8.0.42 92727 username mammad 92727 unique_id port 92727 terminate_cause Lost-Carrier 92727 bytes_out 422594 92727 bytes_in 3504441 92727 station_ip 78.39.26.106 92727 port 15728697 92727 nas_port_type Virtual 92727 remote_ip 5.5.5.225 92730 username mammad 92730 unique_id port 92730 terminate_cause Lost-Carrier 92730 bytes_out 649534 92730 bytes_in 7951794 92730 station_ip 5.233.77.194 92730 port 15728699 92730 nas_port_type Virtual 92730 remote_ip 5.5.5.223 92731 username amirabbas 92731 unique_id port 92731 terminate_cause Lost-Carrier 92731 bytes_out 19439858 92731 bytes_in 591828293 92731 station_ip 31.56.216.190 92731 port 15728684 92731 nas_port_type Virtual 92731 remote_ip 5.5.5.232 92732 username ahmadipour 92732 unique_id port 92732 terminate_cause Lost-Carrier 92732 bytes_out 6657 92732 bytes_in 53217 92732 station_ip 113.203.59.66 92732 port 15728703 92732 nas_port_type Virtual 92732 remote_ip 5.5.5.220 92739 username alihosseini 92739 kill_reason Another user logged on this global unique id 92739 mac 92739 bytes_out 0 92739 bytes_in 0 92739 station_ip 5.119.18.177 92739 port 5 92739 unique_id port 92739 remote_ip 10.8.0.46 92743 username fariba 92743 kill_reason Another user logged on this global unique id 92743 mac 92743 bytes_out 0 92743 bytes_in 0 92743 station_ip 5.119.244.119 92743 port 5 92743 unique_id port 92744 username fariba 92744 kill_reason Another user logged on this global unique id 92744 mac 92744 bytes_out 0 92744 bytes_in 0 92744 station_ip 5.119.244.119 92744 port 5 92744 unique_id port 92745 username kamali 92745 unique_id port 92745 terminate_cause User-Request 92745 bytes_out 61373 92745 bytes_in 258867 92745 station_ip 83.122.152.21 92745 port 15728713 92745 nas_port_type Virtual 92745 remote_ip 5.5.5.215 92753 username alinezhad 92753 unique_id port 92753 terminate_cause User-Request 92753 bytes_out 0 92753 bytes_in 0 92753 station_ip 5.202.60.123 92753 port 15728721 92753 nas_port_type Virtual 92753 remote_ip 5.5.5.251 92754 username ahmadipour 92754 unique_id port 92754 terminate_cause Lost-Carrier 92754 bytes_out 1270839 92754 bytes_in 26204185 92754 station_ip 113.203.97.66 92754 port 15728718 92754 nas_port_type Virtual 92754 remote_ip 5.5.5.214 92758 username alihosseini 92758 kill_reason Another user logged on this global unique id 92758 mac 92758 bytes_out 3488082 92758 bytes_in 48282596 92758 station_ip 5.119.18.177 92758 port 7 92758 unique_id port 92758 remote_ip 10.8.1.34 92761 username alihosseini 92761 mac 92761 bytes_out 0 92761 bytes_in 0 92761 station_ip 5.119.18.177 92761 port 7 92761 unique_id port 92761 remote_ip 10.8.1.34 92764 username heydari 92764 unique_id port 92764 terminate_cause User-Request 92764 bytes_out 3564382 92764 bytes_in 2506356 92764 station_ip 5.119.122.2 92764 port 15728722 92764 nas_port_type Virtual 92764 remote_ip 5.5.5.238 92768 username morteza 92768 mac 92768 bytes_out 0 92768 bytes_in 0 92768 station_ip 37.129.5.154 92768 port 4 92768 unique_id port 92768 remote_ip 10.8.0.42 92770 username morteza 92770 mac 92770 bytes_out 0 92746 port 15728706 92746 nas_port_type Virtual 92746 remote_ip 5.5.5.218 92747 username mirzaei 92747 mac 92747 bytes_out 0 92747 bytes_in 0 92747 station_ip 5.119.157.110 92747 port 4 92747 unique_id port 92747 remote_ip 10.8.0.14 92748 username alihosseini 92748 mac 92748 bytes_out 0 92748 bytes_in 0 92748 station_ip 5.119.18.177 92748 port 5 92748 unique_id port 92751 username alihosseini 92751 mac 92751 bytes_out 0 92751 bytes_in 0 92751 station_ip 5.119.18.177 92751 port 4 92751 unique_id port 92751 remote_ip 10.8.0.46 92752 username alihosseini 92752 mac 92752 bytes_out 0 92752 bytes_in 0 92752 station_ip 5.119.18.177 92752 port 7 92752 unique_id port 92752 remote_ip 10.8.1.34 92755 username ahmadi 92755 unique_id port 92755 terminate_cause User-Request 92755 bytes_out 168652 92755 bytes_in 471859 92755 station_ip 83.123.172.182 92755 port 15728719 92755 nas_port_type Virtual 92755 remote_ip 5.5.5.219 92756 username shokokian 92756 unique_id port 92756 terminate_cause User-Request 92756 bytes_out 239152 92756 bytes_in 1593220 92756 station_ip 31.56.218.11 92756 port 15728720 92756 nas_port_type Virtual 92756 remote_ip 5.5.5.213 92757 username amirabbas 92757 unique_id port 92757 terminate_cause Lost-Carrier 92757 bytes_out 6917838 92757 bytes_in 190645965 92757 station_ip 31.59.32.225 92757 port 15728710 92757 nas_port_type Virtual 92757 remote_ip 5.5.5.216 92759 username alireza1 92759 unique_id port 92759 terminate_cause User-Request 92759 bytes_out 535287 92759 bytes_in 1232577 92759 station_ip 5.119.195.0 92759 port 15728714 92759 nas_port_type Virtual 92759 remote_ip 5.5.5.218 92760 username alihosseini 92760 mac 92760 bytes_out 0 92760 bytes_in 0 92760 station_ip 5.119.18.177 92760 port 7 92760 unique_id port 92762 username alihosseini 92762 mac 92762 bytes_out 0 92762 bytes_in 0 92762 station_ip 5.119.18.177 92762 port 7 92762 unique_id port 92762 remote_ip 10.8.1.34 92763 username aminvpn 92763 mac 92763 bytes_out 0 92763 bytes_in 0 92763 station_ip 83.122.147.51 92763 port 5 92763 unique_id port 92763 remote_ip 10.8.0.6 92765 username morteza 92765 mac 92765 bytes_out 0 92765 bytes_in 0 92765 station_ip 37.129.5.154 92765 port 4 92765 unique_id port 92765 remote_ip 10.8.0.42 92769 username morteza 92769 mac 92769 bytes_out 0 92769 bytes_in 0 92769 station_ip 37.129.5.154 92769 port 8 92769 unique_id port 92769 remote_ip 10.8.1.26 92774 username alihosseini 92774 mac 92774 bytes_out 0 92774 bytes_in 0 92774 station_ip 5.119.18.177 92774 port 7 92774 unique_id port 92775 username aminvpn 92775 unique_id port 92775 terminate_cause User-Request 92775 bytes_out 424672 92775 bytes_in 6251628 92775 station_ip 5.120.152.227 92775 port 15728727 92775 nas_port_type Virtual 92775 remote_ip 5.5.5.210 92776 username mirzaei 92776 mac 92776 bytes_out 45166 92776 bytes_in 73835 92776 station_ip 5.112.77.1 92776 port 5 92776 unique_id port 92776 remote_ip 10.8.0.14 92779 username alinezhad 92779 unique_id port 92779 terminate_cause User-Request 92779 bytes_out 0 92779 bytes_in 0 92779 station_ip 5.202.60.123 92779 port 15728730 92779 nas_port_type Virtual 92779 remote_ip 5.5.5.251 92780 username alihosseini 92780 mac 92780 bytes_out 0 92780 bytes_in 0 92780 station_ip 5.119.18.177 92780 port 4 92780 unique_id port 92780 remote_ip 10.8.0.46 92788 username asadi 92788 unique_id port 92770 bytes_in 0 92770 station_ip 37.129.5.154 92770 port 4 92770 unique_id port 92770 remote_ip 10.8.0.42 92772 username alinezhad 92772 unique_id port 92772 terminate_cause User-Request 92772 bytes_out 77783 92772 bytes_in 541674 92772 station_ip 5.202.60.123 92772 port 15728726 92772 nas_port_type Virtual 92772 remote_ip 5.5.5.251 92773 username morteza 92773 mac 92773 bytes_out 0 92773 bytes_in 0 92773 station_ip 37.129.5.154 92773 port 4 92773 unique_id port 92773 remote_ip 10.8.0.42 92777 username madadi2 92777 unique_id port 92777 terminate_cause Lost-Carrier 92777 bytes_out 518586 92777 bytes_in 2119243 92777 station_ip 5.119.27.68 92777 port 15728723 92777 nas_port_type Virtual 92777 remote_ip 5.5.5.212 92782 username aminvpn 92782 unique_id port 92782 terminate_cause User-Request 92782 bytes_out 234494 92782 bytes_in 987430 92782 station_ip 5.120.46.10 92782 port 15728731 92782 nas_port_type Virtual 92782 remote_ip 5.5.5.207 92785 username alihosseini 92785 mac 92785 bytes_out 0 92785 bytes_in 0 92785 station_ip 5.119.18.177 92785 port 4 92785 unique_id port 92785 remote_ip 10.8.0.46 92786 username alihosseini 92786 mac 92786 bytes_out 0 92786 bytes_in 0 92786 station_ip 5.119.18.177 92786 port 7 92786 unique_id port 92786 remote_ip 10.8.1.34 92787 username alihosseini 92787 mac 92787 bytes_out 2569 92787 bytes_in 4572 92787 station_ip 5.119.18.177 92787 port 4 92787 unique_id port 92787 remote_ip 10.8.0.46 92789 username alihosseini 92789 mac 92789 bytes_out 0 92789 bytes_in 0 92789 station_ip 5.119.18.177 92789 port 7 92789 unique_id port 92789 remote_ip 10.8.1.34 92793 username alihosseini 92793 mac 92793 bytes_out 12729 92793 bytes_in 15034 92793 station_ip 5.119.18.177 92793 port 7 92793 unique_id port 92793 remote_ip 10.8.0.46 92794 username farhad 92794 unique_id port 92794 terminate_cause Lost-Carrier 92794 bytes_out 8547581 92794 bytes_in 88476994 92794 station_ip 5.119.6.164 92794 port 15728728 92794 nas_port_type Virtual 92794 remote_ip 5.5.5.209 92798 username amirabbas 92798 unique_id port 92798 terminate_cause User-Request 92798 bytes_out 1030836 92798 bytes_in 14992396 92798 station_ip 151.238.234.102 92798 port 15728735 92798 nas_port_type Virtual 92798 remote_ip 5.5.5.203 92805 username alireza1 92805 unique_id port 92805 terminate_cause Lost-Carrier 92805 bytes_out 146083 92805 bytes_in 515115 92805 station_ip 5.119.195.0 92805 port 15728740 92805 nas_port_type Virtual 92805 remote_ip 5.5.5.218 92808 username mahbobeh 92808 unique_id port 92808 terminate_cause Lost-Carrier 92808 bytes_out 115884 92808 bytes_in 412985 92808 station_ip 113.203.82.247 92808 port 15728744 92808 nas_port_type Virtual 92808 remote_ip 5.5.5.208 92811 username ahmadi 92811 unique_id port 92811 terminate_cause User-Request 92811 bytes_out 53579 92811 bytes_in 299376 92811 station_ip 113.203.116.97 92811 port 15728752 92811 nas_port_type Virtual 92811 remote_ip 5.5.5.194 92813 username fariba 92813 mac 92813 bytes_out 9047 92813 bytes_in 12441 92813 station_ip 5.119.244.119 92813 port 5 92813 unique_id port 92813 remote_ip 10.8.1.46 92817 username amirabbas 92817 unique_id port 92817 terminate_cause Lost-Carrier 92817 bytes_out 3843651 92817 bytes_in 93616114 92817 station_ip 151.238.234.102 92817 port 15728738 92817 nas_port_type Virtual 92817 remote_ip 5.5.5.203 92820 username khalili 92820 unique_id port 92820 terminate_cause Lost-Carrier 92820 bytes_out 2774358 92820 bytes_in 58785310 92820 station_ip 5.120.56.112 92771 port 4 92771 unique_id port 92771 remote_ip 10.8.0.42 92778 username bcboard 92778 unique_id port 92778 terminate_cause Lost-Carrier 92778 bytes_out 170088 92778 bytes_in 653192 92778 station_ip 113.203.104.132 92778 port 15728725 92778 nas_port_type Virtual 92778 remote_ip 5.5.5.211 92781 username alihosseini 92781 mac 92781 bytes_out 0 92781 bytes_in 0 92781 station_ip 5.119.18.177 92781 port 4 92781 unique_id port 92781 remote_ip 10.8.0.46 92783 username alihosseini 92783 mac 92783 bytes_out 0 92783 bytes_in 0 92783 station_ip 5.119.18.177 92783 port 4 92783 unique_id port 92783 remote_ip 10.8.0.46 92784 username alihosseini 92784 mac 92784 bytes_out 0 92784 bytes_in 0 92784 station_ip 5.119.18.177 92784 port 4 92784 unique_id port 92784 remote_ip 10.8.0.46 92790 username alihosseini 92790 mac 92790 bytes_out 0 92790 bytes_in 0 92790 station_ip 5.119.18.177 92790 port 7 92790 unique_id port 92790 remote_ip 10.8.1.34 92795 username mammad 92795 unique_id port 92795 terminate_cause User-Request 92795 bytes_out 2409377 92795 bytes_in 46573879 92795 station_ip 78.39.27.110 92795 port 15728733 92795 nas_port_type Virtual 92795 remote_ip 5.5.5.205 92796 username safarpour 92796 unique_id port 92796 terminate_cause Lost-Carrier 92796 bytes_out 147258 92796 bytes_in 684901 92796 station_ip 151.235.70.157 92796 port 15728734 92796 nas_port_type Virtual 92796 remote_ip 5.5.5.204 92797 username mahbobeh 92797 unique_id port 92797 terminate_cause Lost-Carrier 92797 bytes_out 371539 92797 bytes_in 3088005 92797 station_ip 113.203.82.247 92797 port 15728729 92797 nas_port_type Virtual 92797 remote_ip 5.5.5.208 92799 username mirzaei 92799 mac 92799 bytes_out 7359826 92799 bytes_in 147068661 92799 station_ip 5.119.192.180 92799 port 5 92799 unique_id port 92799 remote_ip 10.8.0.14 92801 username caferibar 92801 unique_id port 92801 terminate_cause User-Request 92801 bytes_out 0 92801 bytes_in 0 92801 station_ip 37.137.43.231 92801 port 15728741 92801 nas_port_type Virtual 92801 remote_ip 5.5.5.200 188669 bytes_out 0 188669 bytes_in 0 188669 station_ip 5.120.128.95 188669 port 388 188669 unique_id port 188669 remote_ip 10.8.0.250 188671 username zahra1101 188671 mac 188671 bytes_out 0 92806 username alinezhad 92806 unique_id port 92806 terminate_cause User-Request 92806 bytes_out 0 92806 bytes_in 0 92806 station_ip 5.202.60.123 92806 port 15728747 92806 nas_port_type Virtual 92806 remote_ip 5.5.5.251 92807 username alireza1 92807 unique_id port 92807 terminate_cause Lost-Carrier 92807 bytes_out 196561 92807 bytes_in 375186 92807 station_ip 5.119.195.0 92807 port 15728745 92807 nas_port_type Virtual 92807 remote_ip 5.5.5.197 92810 username sadegh 92810 unique_id port 92810 terminate_cause Lost-Carrier 92810 bytes_out 1501935 92810 bytes_in 19167088 92810 station_ip 5.120.19.141 92810 port 15728743 92810 nas_port_type Virtual 92810 remote_ip 5.5.5.198 92812 username dehghani 92812 mac 92812 bytes_out 0 92812 bytes_in 0 92812 station_ip 109.125.172.230 92812 port 4 92812 unique_id port 92812 remote_ip 10.8.0.58 92814 username alinezhad 92814 unique_id port 92814 terminate_cause User-Request 92814 bytes_out 25741 92814 bytes_in 294532 92814 station_ip 5.202.60.123 92814 port 15728748 92814 nas_port_type Virtual 92814 remote_ip 5.5.5.251 92815 username dehghani 92815 mac 92815 bytes_out 0 92815 bytes_in 0 92815 station_ip 109.125.172.230 92815 port 4 92815 unique_id port 188671 bytes_in 0 188671 station_ip 5.120.128.95 92788 terminate_cause User-Request 92788 bytes_out 84569 92788 bytes_in 631793 92788 station_ip 83.122.237.122 92788 port 15728732 92788 nas_port_type Virtual 92788 remote_ip 5.5.5.206 92791 username mahyaarabpour 92791 mac 92791 bytes_out 643859 92791 bytes_in 8919369 92791 station_ip 5.120.5.189 92791 port 4 92791 unique_id port 92791 remote_ip 10.8.0.54 92792 username alireza1 92792 unique_id port 92792 terminate_cause Lost-Carrier 92792 bytes_out 1258272 92792 bytes_in 3996812 92792 station_ip 5.119.195.0 92792 port 15728724 92792 nas_port_type Virtual 92792 remote_ip 5.5.5.218 92800 username amirabbas 92800 unique_id port 92800 terminate_cause User-Request 92800 bytes_out 0 92800 bytes_in 0 92800 station_ip 151.238.234.102 92800 port 15728737 92800 nas_port_type Virtual 92800 remote_ip 5.5.5.203 92803 username madadi2 92803 unique_id port 92803 terminate_cause Lost-Carrier 92803 bytes_out 497913 92803 bytes_in 1878090 92803 station_ip 5.119.202.117 92803 port 15728739 92803 nas_port_type Virtual 92803 remote_ip 5.5.5.201 92804 username caferibar 92804 unique_id port 92804 terminate_cause User-Request 92804 bytes_out 12428479 92804 bytes_in 276613072 92804 station_ip 5.120.14.54 92804 port 15728704 92804 nas_port_type Virtual 92804 remote_ip 5.5.5.250 92809 username alihosseini 92809 mac 92809 bytes_out 1486292 92809 bytes_in 14152026 92809 station_ip 5.119.167.147 92809 port 4 92809 unique_id port 92809 remote_ip 10.8.0.46 92819 username heydari 92819 unique_id port 92819 terminate_cause Lost-Carrier 92819 bytes_out 264164 92819 bytes_in 962050 92819 station_ip 5.119.122.2 92819 port 15728746 92819 nas_port_type Virtual 92819 remote_ip 5.5.5.238 92821 username sadegh 92821 unique_id port 92821 terminate_cause User-Request 92821 bytes_out 13475779 92821 bytes_in 348313444 92821 station_ip 5.119.182.89 92821 port 15728750 92821 nas_port_type Virtual 92821 remote_ip 5.5.5.196 92822 username alinezhad 92822 unique_id port 92822 terminate_cause User-Request 92822 bytes_out 0 92822 bytes_in 0 92822 station_ip 5.202.60.123 92822 port 15728758 92822 nas_port_type Virtual 92822 remote_ip 5.5.5.251 92827 username aminvpn 92827 unique_id port 92827 terminate_cause User-Request 92827 bytes_out 0 92827 bytes_in 0 92827 station_ip 5.119.213.217 92827 port 15728760 92827 nas_port_type Virtual 92827 remote_ip 5.5.5.195 92830 username kamali 92830 unique_id port 92830 terminate_cause User-Request 92830 bytes_out 39482 92830 bytes_in 172811 92830 station_ip 37.129.105.67 92830 port 15728761 92830 nas_port_type Virtual 92830 remote_ip 5.5.5.190 92831 username morteza 92831 mac 92831 bytes_out 0 92831 bytes_in 0 92831 station_ip 37.129.76.66 92831 port 7 92831 unique_id port 92831 remote_ip 10.8.0.42 92833 username caferibar 92833 unique_id port 92833 terminate_cause Lost-Carrier 92833 bytes_out 102386 92833 bytes_in 441566 92833 station_ip 5.120.105.162 92833 port 15728763 92833 nas_port_type Virtual 92833 remote_ip 5.5.5.189 92835 username aminvpn 92835 mac 92835 bytes_out 0 92835 bytes_in 0 92835 station_ip 37.129.21.148 92835 port 4 92835 unique_id port 92835 remote_ip 10.8.0.6 92843 username morteza 92843 mac 92843 bytes_out 0 92843 bytes_in 0 92843 station_ip 37.129.76.66 92843 port 7 92843 unique_id port 92843 remote_ip 10.8.0.42 92845 username morteza 92845 mac 92845 bytes_out 0 92845 bytes_in 0 92845 station_ip 37.129.76.66 92845 port 7 92845 unique_id port 92845 remote_ip 10.8.0.42 92850 username mahbobeh 92850 unique_id port 92815 remote_ip 10.8.0.58 92816 username dehghani 92816 mac 92816 bytes_out 0 92816 bytes_in 0 92816 station_ip 109.125.172.230 92816 port 4 92816 unique_id port 92816 remote_ip 10.8.0.58 92818 username fariba 92818 kill_reason Another user logged on this global unique id 92818 mac 92818 bytes_out 0 92818 bytes_in 0 92818 station_ip 5.119.244.119 92818 port 5 92818 unique_id port 92818 remote_ip 10.8.1.46 92823 username aminvpn 92823 unique_id port 92823 terminate_cause User-Request 92823 bytes_out 2860292 92823 bytes_in 4326334 92823 station_ip 5.119.213.217 92823 port 15728751 92823 nas_port_type Virtual 92823 remote_ip 5.5.5.195 92825 username aminvpn 92825 mac 92825 bytes_out 0 92825 bytes_in 0 92825 station_ip 37.129.21.148 92825 port 7 92825 unique_id port 92825 remote_ip 10.8.0.6 92826 username aminvpn 92826 mac 92826 bytes_out 0 92826 bytes_in 0 92826 station_ip 5.119.213.217 92826 port 4 92826 unique_id port 92826 remote_ip 10.8.0.6 92828 username caferibar 92828 unique_id port 92828 terminate_cause User-Request 92828 bytes_out 0 92828 bytes_in 0 92828 station_ip 5.120.105.162 92828 port 15728762 92828 nas_port_type Virtual 92828 remote_ip 5.5.5.189 92837 username morteza 92837 mac 92837 bytes_out 24479 92837 bytes_in 44230 92837 station_ip 37.129.76.66 92837 port 7 92837 unique_id port 92837 remote_ip 10.8.1.26 92839 username morteza 92839 kill_reason Maximum check online fails reached 92839 mac 92839 bytes_out 0 92839 bytes_in 0 92839 station_ip 37.129.76.66 92839 port 7 92839 unique_id port 92844 username alinezhad 92844 unique_id port 92844 terminate_cause User-Request 92844 bytes_out 0 92844 bytes_in 0 92844 station_ip 5.202.60.123 92844 port 15728768 92844 nas_port_type Virtual 92844 remote_ip 5.5.5.251 92847 username fariba 92847 kill_reason Another user logged on this global unique id 92847 mac 92847 bytes_out 0 92847 bytes_in 0 92847 station_ip 5.119.244.119 92847 port 5 92847 unique_id port 92847 remote_ip 10.8.1.46 92848 username morteza 92848 mac 92848 bytes_out 0 92848 bytes_in 0 92848 station_ip 37.129.76.66 92848 port 7 92848 unique_id port 92848 remote_ip 10.8.0.42 92852 username morteza 92852 mac 92852 bytes_out 0 92852 bytes_in 0 92852 station_ip 37.129.76.66 92852 port 8 92852 unique_id port 92852 remote_ip 10.8.1.26 92853 username morteza 92853 mac 92853 bytes_out 0 92853 bytes_in 0 92853 station_ip 37.129.76.66 92853 port 5 92853 unique_id port 92853 remote_ip 10.8.0.42 92854 username morteza 92854 mac 92854 bytes_out 1636 92854 bytes_in 5089 92854 station_ip 37.129.76.66 92854 port 5 92854 unique_id port 92854 remote_ip 10.8.0.42 92856 username aminvpn 92856 mac 92856 bytes_out 568894 92856 bytes_in 8541684 92856 station_ip 37.129.21.148 92856 port 4 92856 unique_id port 92856 remote_ip 10.8.0.6 92859 username morteza 92859 mac 92859 bytes_out 0 92859 bytes_in 0 92859 station_ip 37.129.76.66 92859 port 4 92859 unique_id port 92859 remote_ip 10.8.0.42 92861 username mohammadi 92861 unique_id port 92861 terminate_cause User-Request 92861 bytes_out 28319 92861 bytes_in 57752 92861 station_ip 83.123.249.71 92861 port 15728770 92861 nas_port_type Virtual 92861 remote_ip 5.5.5.186 92863 username mohammadi 92863 unique_id port 92863 terminate_cause User-Request 92863 bytes_out 153977 92863 bytes_in 268004 92863 station_ip 83.123.249.71 92863 port 15728772 92863 nas_port_type Virtual 92820 port 15728742 92820 nas_port_type Virtual 92820 remote_ip 5.5.5.199 92824 username morteza 92824 mac 92824 bytes_out 0 92824 bytes_in 0 92824 station_ip 37.129.76.66 92824 port 4 92824 unique_id port 92824 remote_ip 10.8.0.42 92829 username aminvpn 92829 mac 92829 bytes_out 0 92829 bytes_in 0 92829 station_ip 37.129.21.148 92829 port 8 92829 unique_id port 92829 remote_ip 10.8.0.6 92832 username mohammadi 92832 unique_id port 92832 terminate_cause User-Request 92832 bytes_out 0 92832 bytes_in 0 92832 station_ip 83.122.64.66 92832 port 15728764 92832 nas_port_type Virtual 92832 remote_ip 5.5.5.188 188671 port 390 188671 unique_id port 188671 remote_ip 10.8.0.250 188673 username zahra1101 188673 mac 188673 bytes_out 0 188673 bytes_in 0 188673 station_ip 5.120.128.95 188673 port 391 92836 username heydari 92836 unique_id port 92836 terminate_cause Lost-Carrier 92836 bytes_out 168370 92836 bytes_in 970513 92836 station_ip 5.119.96.216 92836 port 15728757 92836 nas_port_type Virtual 92836 remote_ip 5.5.5.191 92838 username aminvpn 92838 mac 92838 bytes_out 0 92838 bytes_in 0 92838 station_ip 37.129.21.148 92838 port 4 92838 unique_id port 92838 remote_ip 10.8.0.6 92840 username morteza 92840 mac 92840 bytes_out 0 92840 bytes_in 0 92840 station_ip 37.129.76.66 92840 port 8 92840 unique_id port 92840 remote_ip 10.8.1.26 92841 username amir 92841 unique_id port 92841 terminate_cause User-Request 92841 bytes_out 1010788 92841 bytes_in 7164328 92841 station_ip 46.225.210.77 92841 port 15728756 92841 nas_port_type Virtual 92841 remote_ip 5.5.5.247 92842 username morteza 92842 mac 92842 bytes_out 0 92842 bytes_in 0 92842 station_ip 37.129.76.66 92842 port 8 92842 unique_id port 92842 remote_ip 10.8.1.26 92846 username dehghani 92846 mac 92846 bytes_out 0 92846 bytes_in 0 92846 station_ip 109.125.172.230 92846 port 5 92846 unique_id port 92846 remote_ip 10.8.0.58 92849 username dehghani 92849 mac 92849 bytes_out 0 92849 bytes_in 0 92849 station_ip 109.125.172.230 92849 port 5 92849 unique_id port 92849 remote_ip 10.8.0.58 92851 username alipour 92851 kill_reason Another user logged on this global unique id 92851 mac 92851 bytes_out 0 92851 bytes_in 0 92851 station_ip 83.122.151.174 92851 port 8 92851 unique_id port 92851 remote_ip 10.8.0.26 92855 username madadi2 92855 unique_id port 92855 terminate_cause Lost-Carrier 92855 bytes_out 31247 92855 bytes_in 192295 92855 station_ip 5.119.47.165 92855 port 15728767 92855 nas_port_type Virtual 92855 remote_ip 5.5.5.187 92866 username mohammadi 92866 unique_id port 92866 terminate_cause User-Request 92866 bytes_out 26142 92866 bytes_in 35314 92866 station_ip 83.123.249.71 92866 port 15728773 92866 nas_port_type Virtual 92866 remote_ip 5.5.5.186 92868 username morteza 92868 mac 92868 bytes_out 0 92868 bytes_in 0 92868 station_ip 37.129.76.66 92868 port 4 92868 unique_id port 92868 remote_ip 10.8.0.42 92870 username morteza 92870 mac 92870 bytes_out 0 92870 bytes_in 0 92870 station_ip 37.129.76.66 92870 port 9 92870 unique_id port 92870 remote_ip 10.8.1.26 92874 username mohammadi 92874 unique_id port 92874 terminate_cause User-Request 92874 bytes_out 38990 92874 bytes_in 251309 92874 station_ip 83.123.249.71 92874 port 15728777 92874 nas_port_type Virtual 92874 remote_ip 5.5.5.186 92875 username morteza 92875 mac 92875 bytes_out 0 92875 bytes_in 0 188673 unique_id port 92850 terminate_cause Lost-Carrier 92850 bytes_out 125632 92850 bytes_in 2909118 92850 station_ip 113.203.82.247 92850 port 15728753 92850 nas_port_type Virtual 92850 remote_ip 5.5.5.208 92857 username morteza 92857 mac 92857 bytes_out 0 92857 bytes_in 0 92857 station_ip 37.129.76.66 92857 port 5 92857 unique_id port 92857 remote_ip 10.8.0.42 92858 username alireza1 92858 unique_id port 92858 terminate_cause User-Request 92858 bytes_out 1324798 92858 bytes_in 18974242 92858 station_ip 5.119.195.0 92858 port 15728749 92858 nas_port_type Virtual 92858 remote_ip 5.5.5.197 92860 username mohammadi 92860 unique_id port 92860 terminate_cause User-Request 92860 bytes_out 65766 92860 bytes_in 565126 92860 station_ip 83.123.249.71 92860 port 15728769 92860 nas_port_type Virtual 92860 remote_ip 5.5.5.186 92862 username alinezhad 92862 unique_id port 92862 terminate_cause User-Request 92862 bytes_out 0 92862 bytes_in 0 92862 station_ip 37.129.82.142 92862 port 15728771 92862 nas_port_type Virtual 92862 remote_ip 5.5.5.185 92867 username mammad 92867 unique_id port 92867 terminate_cause User-Request 92867 bytes_out 2312695 92867 bytes_in 47820275 92867 station_ip 78.39.27.110 92867 port 15728766 92867 nas_port_type Virtual 92867 remote_ip 5.5.5.205 92869 username alireza1 92869 unique_id port 92869 terminate_cause User-Request 92869 bytes_out 0 92869 bytes_in 0 92869 station_ip 5.119.195.0 92869 port 15728775 92869 nas_port_type Virtual 92869 remote_ip 5.5.5.197 92871 username sadegh 92871 unique_id port 92871 terminate_cause User-Request 92871 bytes_out 16121317 92871 bytes_in 332214931 92871 station_ip 5.119.182.89 92871 port 15728759 92871 nas_port_type Virtual 92871 remote_ip 5.5.5.196 92877 username alihosseini 92877 mac 92877 bytes_out 0 92877 bytes_in 0 92877 station_ip 5.120.78.129 92877 port 7 92877 unique_id port 92877 remote_ip 10.8.0.46 92879 username morteza 92879 mac 92879 bytes_out 0 92879 bytes_in 0 92879 station_ip 37.129.76.66 92879 port 7 92879 unique_id port 92879 remote_ip 10.8.0.42 92880 username alihosseini 92880 mac 92880 bytes_out 0 92880 bytes_in 0 92880 station_ip 5.120.78.129 92880 port 4 92880 unique_id port 92880 remote_ip 10.8.0.46 92882 username mohammadi 92882 unique_id port 92882 terminate_cause User-Request 92882 bytes_out 93686 92882 bytes_in 1428328 92882 station_ip 83.123.249.71 92882 port 15728778 92882 nas_port_type Virtual 92882 remote_ip 5.5.5.186 92887 username morteza 92887 mac 92887 bytes_out 0 92887 bytes_in 0 92887 station_ip 37.129.76.66 92887 port 9 92887 unique_id port 92887 remote_ip 10.8.1.26 92889 username alihosseini 92889 kill_reason Maximum check online fails reached 92889 mac 92889 bytes_out 0 92889 bytes_in 0 92889 station_ip 5.120.78.129 92889 port 4 92889 unique_id port 92891 username morteza 92891 mac 92891 bytes_out 0 92891 bytes_in 0 92891 station_ip 37.129.76.66 92891 port 7 92891 unique_id port 92891 remote_ip 10.8.0.42 92901 username arman 92901 unique_id port 92901 terminate_cause User-Request 92901 bytes_out 0 92901 bytes_in 0 92901 station_ip 5.120.69.101 92901 port 15728786 92901 nas_port_type Virtual 92901 remote_ip 5.5.5.183 92905 username morteza 92905 mac 92905 bytes_out 0 92905 bytes_in 0 92905 station_ip 37.129.76.66 92905 port 7 92905 unique_id port 92905 remote_ip 10.8.0.42 92906 username alihosseini 92906 mac 92906 bytes_out 0 92906 bytes_in 0 92906 station_ip 5.120.78.129 92906 port 5 92906 unique_id port 92863 remote_ip 5.5.5.186 92864 username morteza 92864 mac 92864 bytes_out 5368 92864 bytes_in 10638 92864 station_ip 37.129.76.66 92864 port 4 92864 unique_id port 92864 remote_ip 10.8.0.42 92865 username morteza 92865 mac 92865 bytes_out 0 92865 bytes_in 0 92865 station_ip 37.129.76.66 92865 port 8 92865 unique_id port 92872 username aminvpn 92872 mac 92872 bytes_out 0 92872 bytes_in 0 92872 station_ip 37.129.21.148 92872 port 5 92872 unique_id port 92872 remote_ip 10.8.0.6 92873 username morteza 92873 mac 92873 bytes_out 0 92873 bytes_in 0 92873 station_ip 37.129.76.66 92873 port 9 92873 unique_id port 92873 remote_ip 10.8.1.26 92881 username alihosseini 92881 mac 92881 bytes_out 0 92881 bytes_in 0 92881 station_ip 5.120.78.129 92881 port 7 92881 unique_id port 92881 remote_ip 10.8.0.46 92883 username alihosseini 92883 mac 92883 bytes_out 0 92883 bytes_in 0 92883 station_ip 5.120.78.129 92883 port 9 92883 unique_id port 92883 remote_ip 10.8.1.34 92884 username avaanna 92884 unique_id port 92884 terminate_cause User-Request 92884 bytes_out 528255 92884 bytes_in 4503137 92884 station_ip 46.225.214.110 92884 port 15728774 92884 nas_port_type Virtual 92884 remote_ip 5.5.5.184 92886 username morteza 92886 mac 92886 bytes_out 0 92886 bytes_in 0 92886 station_ip 37.129.76.66 92886 port 9 92886 unique_id port 92886 remote_ip 10.8.1.26 92892 username mohammadi 92892 unique_id port 92892 terminate_cause User-Request 92892 bytes_out 25558 92892 bytes_in 38958 92892 station_ip 83.123.249.71 92892 port 15728781 92892 nas_port_type Virtual 92892 remote_ip 5.5.5.186 92894 username alihosseini 92894 mac 92894 bytes_out 0 92894 bytes_in 0 92894 station_ip 5.120.78.129 92894 port 9 92894 unique_id port 92894 remote_ip 10.8.1.34 92895 username mohammadi 92895 unique_id port 92895 terminate_cause User-Request 92895 bytes_out 14737 92895 bytes_in 30971 92895 station_ip 83.123.249.71 92895 port 15728782 92895 nas_port_type Virtual 92895 remote_ip 5.5.5.186 92897 username arman 92897 unique_id port 92897 terminate_cause User-Request 92897 bytes_out 0 92897 bytes_in 0 92897 station_ip 5.120.69.101 92897 port 15728784 92897 nas_port_type Virtual 92897 remote_ip 5.5.5.183 92900 username aminvpn 92900 mac 92900 bytes_out 40573 92900 bytes_in 55152 92900 station_ip 37.129.21.148 92900 port 9 92900 unique_id port 92900 remote_ip 10.8.1.6 92902 username alireza1 92902 unique_id port 92902 terminate_cause User-Request 92902 bytes_out 263543 92902 bytes_in 632032 92902 station_ip 5.119.195.0 92902 port 15728776 92902 nas_port_type Virtual 92902 remote_ip 5.5.5.197 92904 username mohammadi 92904 unique_id port 92904 terminate_cause User-Request 92904 bytes_out 16575 92904 bytes_in 22948 92904 station_ip 83.123.249.71 92904 port 15728785 92904 nas_port_type Virtual 92904 remote_ip 5.5.5.186 92910 username mohammadi 92910 unique_id port 92910 terminate_cause User-Request 92910 bytes_out 19193 92910 bytes_in 28580 92910 station_ip 83.123.249.71 92910 port 15728789 92910 nas_port_type Virtual 92910 remote_ip 5.5.5.186 92912 username dehghani 92912 mac 92912 bytes_out 0 92912 bytes_in 0 92912 station_ip 109.125.172.230 92912 port 9 92912 unique_id port 92912 remote_ip 10.8.1.50 92918 username morteza 92918 mac 92918 bytes_out 0 92918 bytes_in 0 92918 station_ip 37.129.76.66 92918 port 7 92918 unique_id port 92918 remote_ip 10.8.0.42 92924 username alihosseini 92875 station_ip 37.129.76.66 92875 port 9 92875 unique_id port 92875 remote_ip 10.8.1.26 92876 username morteza 92876 mac 92876 bytes_out 0 92876 bytes_in 0 92876 station_ip 37.129.76.66 92876 port 5 92876 unique_id port 92876 remote_ip 10.8.0.42 92878 username aminvpn 92878 mac 92878 bytes_out 122340 92878 bytes_in 112920 92878 station_ip 37.129.21.148 92878 port 4 92878 unique_id port 92878 remote_ip 10.8.0.6 92885 username mohammadi 92885 unique_id port 92885 terminate_cause User-Request 92885 bytes_out 46496 92885 bytes_in 267473 92885 station_ip 83.123.249.71 92885 port 15728779 92885 nas_port_type Virtual 92885 remote_ip 5.5.5.186 92888 username mohammadi 92888 unique_id port 92888 terminate_cause User-Request 92888 bytes_out 27218 92888 bytes_in 115721 92888 station_ip 83.123.249.71 92888 port 15728780 92888 nas_port_type Virtual 92888 remote_ip 5.5.5.186 92890 username alihosseini 92890 mac 92890 bytes_out 0 92890 bytes_in 0 92890 station_ip 5.120.78.129 92890 port 9 92890 unique_id port 92890 remote_ip 10.8.1.34 92893 username morteza 92893 mac 92893 bytes_out 0 92893 bytes_in 0 92893 station_ip 37.129.76.66 92893 port 9 92893 unique_id port 92893 remote_ip 10.8.1.26 92896 username aminvpn 92896 mac 92896 bytes_out 62846 92896 bytes_in 80834 92896 station_ip 37.129.21.148 92896 port 5 92896 unique_id port 92896 remote_ip 10.8.0.6 92898 username mohammadi 92898 unique_id port 92898 terminate_cause User-Request 92898 bytes_out 22625 92898 bytes_in 32033 92898 station_ip 83.123.249.71 92898 port 15728783 92898 nas_port_type Virtual 92898 remote_ip 5.5.5.186 92899 username alihosseini 92899 mac 92899 bytes_out 0 92899 bytes_in 0 92899 station_ip 5.120.78.129 92899 port 5 92899 unique_id port 92899 remote_ip 10.8.0.46 92903 username morteza 92903 mac 92903 bytes_out 0 92903 bytes_in 0 92903 station_ip 37.129.76.66 92903 port 5 92903 unique_id port 92903 remote_ip 10.8.0.42 92907 username alihosseini 92907 mac 92907 bytes_out 0 92907 bytes_in 0 92907 station_ip 5.120.78.129 92907 port 5 92907 unique_id port 92907 remote_ip 10.8.0.46 92911 username aminvpn 92911 mac 92911 bytes_out 0 92911 bytes_in 0 92911 station_ip 37.129.21.148 92911 port 5 92911 unique_id port 92911 remote_ip 10.8.0.6 92915 username morteza 92915 mac 92915 bytes_out 0 92915 bytes_in 0 92915 station_ip 37.129.76.66 92915 port 7 92915 unique_id port 92915 remote_ip 10.8.0.42 92916 username morteza 92916 mac 92916 bytes_out 0 92916 bytes_in 0 92916 station_ip 37.129.76.66 92916 port 7 92916 unique_id port 92916 remote_ip 10.8.0.42 92917 username alihosseini 92917 mac 92917 bytes_out 0 92917 bytes_in 0 92917 station_ip 5.120.78.129 92917 port 9 92917 unique_id port 92917 remote_ip 10.8.1.34 92919 username heydari 92919 unique_id port 92919 terminate_cause User-Request 92919 bytes_out 609424 92919 bytes_in 1447215 92919 station_ip 5.119.122.2 92919 port 15728765 92919 nas_port_type Virtual 92919 remote_ip 5.5.5.238 92921 username alihosseini 92921 mac 92921 bytes_out 0 92921 bytes_in 0 92921 station_ip 5.120.78.129 92921 port 7 92921 unique_id port 92921 remote_ip 10.8.0.46 92923 username alihosseini 92923 mac 92923 bytes_out 0 92923 bytes_in 0 92923 station_ip 5.120.78.129 92923 port 7 92923 unique_id port 92923 remote_ip 10.8.0.46 92927 username mohammadi 92927 mac 92906 remote_ip 10.8.0.46 92908 username amirabbas 92908 unique_id port 92908 terminate_cause Lost-Carrier 92908 bytes_out 14631032 92908 bytes_in 379529698 92908 station_ip 31.56.218.240 92908 port 15728755 92908 nas_port_type Virtual 92908 remote_ip 5.5.5.192 92909 username morteza 92909 mac 92909 bytes_out 0 92909 bytes_in 0 92909 station_ip 37.129.76.66 92909 port 9 92909 unique_id port 92909 remote_ip 10.8.1.26 92913 username morteza 92913 mac 92913 bytes_out 0 92913 bytes_in 0 92913 station_ip 37.129.76.66 92913 port 7 92913 unique_id port 92913 remote_ip 10.8.0.42 92914 username morteza 92914 mac 92914 bytes_out 0 92914 bytes_in 0 92914 station_ip 37.129.76.66 92914 port 9 92914 unique_id port 92914 remote_ip 10.8.1.26 92920 username avaanna 92920 unique_id port 92920 terminate_cause Lost-Carrier 92920 bytes_out 252078 92920 bytes_in 2229833 92920 station_ip 46.225.214.110 92920 port 15728787 92920 nas_port_type Virtual 92920 remote_ip 5.5.5.184 92922 username mohammadi 92922 mac 92922 bytes_out 0 92922 bytes_in 0 92922 station_ip 83.123.249.71 92922 port 8 92922 unique_id port 92922 remote_ip 10.8.0.62 92926 username alihosseini 92926 kill_reason Another user logged on this global unique id 92926 mac 92926 bytes_out 0 92926 bytes_in 0 92926 station_ip 5.120.78.129 92926 port 9 92926 unique_id port 92926 remote_ip 10.8.1.34 92928 username mohammadi 92928 mac 92928 bytes_out 0 92928 bytes_in 0 92928 station_ip 83.123.249.71 92928 port 9 92928 unique_id port 92928 remote_ip 10.8.0.62 92929 username morteza 92929 mac 92929 bytes_out 0 92929 bytes_in 0 92929 station_ip 37.129.76.66 92929 port 8 92929 unique_id port 92929 remote_ip 10.8.0.42 92930 username morteza 92930 mac 92930 bytes_out 0 92930 bytes_in 0 92930 station_ip 37.129.76.66 92930 port 9 92930 unique_id port 92930 remote_ip 10.8.1.26 92931 username morteza 92931 mac 92931 bytes_out 0 92931 bytes_in 0 92931 station_ip 37.129.76.66 92931 port 9 92931 unique_id port 92931 remote_ip 10.8.1.26 92935 username mohammadi 92935 mac 92935 bytes_out 13376 92935 bytes_in 12692 92935 station_ip 83.123.249.71 92935 port 8 92935 unique_id port 92935 remote_ip 10.8.0.62 92939 username alihosseini 92939 mac 92939 bytes_out 1753 92939 bytes_in 5053 92939 station_ip 5.120.78.129 92939 port 8 92939 unique_id port 92939 remote_ip 10.8.0.46 92944 username alihosseini 92944 kill_reason Another user logged on this global unique id 92944 mac 92944 bytes_out 0 92944 bytes_in 0 92944 station_ip 5.120.78.129 92944 port 5 92944 unique_id port 92951 username aminvpn 92951 mac 92951 bytes_out 1158074 92951 bytes_in 1082045 92951 station_ip 37.129.21.148 92951 port 7 92951 unique_id port 92951 remote_ip 10.8.0.6 92954 username mohammadi 92954 mac 92954 bytes_out 0 92954 bytes_in 0 92954 station_ip 83.123.215.71 92954 port 7 92954 unique_id port 92954 remote_ip 10.8.0.62 92959 username aminvpn 92959 mac 92959 bytes_out 0 92959 bytes_in 0 92959 station_ip 37.129.21.148 92959 port 5 92959 unique_id port 92959 remote_ip 10.8.0.6 92962 username aminvpn 92962 mac 92962 bytes_out 0 92962 bytes_in 0 92962 station_ip 37.129.21.148 92962 port 5 92962 unique_id port 92962 remote_ip 10.8.0.6 92968 username aminvpn 92968 mac 92968 bytes_out 311109 92968 bytes_in 407329 92968 station_ip 37.129.21.148 92968 port 5 92924 mac 92924 bytes_out 0 92924 bytes_in 0 92924 station_ip 5.120.78.129 92924 port 9 92924 unique_id port 92924 remote_ip 10.8.1.34 92925 username morteza 92925 mac 92925 bytes_out 0 92925 bytes_in 0 92925 station_ip 37.129.76.66 92925 port 7 92925 unique_id port 92925 remote_ip 10.8.0.42 92932 username alihosseini 92932 mac 92932 bytes_out 0 92932 bytes_in 0 92932 station_ip 5.120.78.129 92932 port 9 92932 unique_id port 92932 remote_ip 10.8.0.46 92934 username mohammadi 92934 mac 92934 bytes_out 11009 92934 bytes_in 23383 92934 station_ip 83.123.249.71 92934 port 8 92934 unique_id port 92934 remote_ip 10.8.0.62 92936 username kamali 92936 unique_id port 92936 terminate_cause User-Request 92936 bytes_out 254010 92936 bytes_in 66854 92936 station_ip 37.129.105.67 92936 port 15728792 92936 nas_port_type Virtual 92936 remote_ip 5.5.5.190 92937 username avaanna 92937 unique_id port 92937 terminate_cause User-Request 92937 bytes_out 109704 92937 bytes_in 2014555 92937 station_ip 83.122.194.93 92937 port 15728793 92937 nas_port_type Virtual 92937 remote_ip 5.5.5.181 92938 username mohammadi 92938 mac 92938 bytes_out 99113 92938 bytes_in 85761 92938 station_ip 83.123.249.71 92938 port 8 92938 unique_id port 92938 remote_ip 10.8.0.62 92940 username mirzaei 92940 mac 92940 bytes_out 0 92940 bytes_in 0 92940 station_ip 5.120.79.83 92940 port 5 92940 unique_id port 92940 remote_ip 10.8.0.14 92941 username mirzaei 92941 mac 92941 bytes_out 0 92941 bytes_in 0 92941 station_ip 5.120.65.66 92941 port 5 92941 unique_id port 92941 remote_ip 10.8.0.14 92942 username alihosseini 92942 mac 92942 bytes_out 0 92942 bytes_in 0 92942 station_ip 5.120.78.129 92942 port 5 92942 unique_id port 92942 remote_ip 10.8.0.46 92946 username alireza1 92946 unique_id port 92946 terminate_cause Lost-Carrier 92946 bytes_out 570240 92946 bytes_in 1760213 92946 station_ip 5.119.195.0 92946 port 15728788 92946 nas_port_type Virtual 92946 remote_ip 5.5.5.197 92947 username alihosseini 92947 mac 92947 bytes_out 0 92947 bytes_in 0 92947 station_ip 5.120.78.129 92947 port 8 92947 unique_id port 92947 remote_ip 10.8.0.46 92948 username madadi2 92948 unique_id port 92948 terminate_cause Lost-Carrier 92948 bytes_out 81200 92948 bytes_in 227960 92948 station_ip 5.120.142.54 92948 port 15728795 92948 nas_port_type Virtual 92948 remote_ip 5.5.5.179 92950 username mohammadi 92950 mac 92950 bytes_out 304137 92950 bytes_in 1796021 92950 station_ip 83.123.215.71 92950 port 5 92950 unique_id port 92950 remote_ip 10.8.0.62 92952 username aminvpn 92952 mac 92952 bytes_out 78059 92952 bytes_in 125161 92952 station_ip 37.129.21.148 92952 port 5 92952 unique_id port 92952 remote_ip 10.8.0.6 92953 username alihosseini 92953 mac 92953 bytes_out 0 92953 bytes_in 0 92953 station_ip 5.120.78.129 92953 port 10 92953 unique_id port 92953 remote_ip 10.8.1.34 92960 username aminvpn 92960 mac 92960 bytes_out 0 92960 bytes_in 0 92960 station_ip 37.129.21.148 92960 port 5 92960 unique_id port 92960 remote_ip 10.8.0.6 92965 username caferibar 92965 unique_id port 92965 terminate_cause User-Request 92965 bytes_out 1589895 92965 bytes_in 1089498 92965 station_ip 5.134.139.144 92965 port 15728797 92965 nas_port_type Virtual 92965 remote_ip 5.5.5.177 92966 username aminvpn 92966 mac 92966 bytes_out 106400 92966 bytes_in 179366 92927 bytes_out 0 92927 bytes_in 0 92927 station_ip 83.123.249.71 92927 port 8 92927 unique_id port 92927 remote_ip 10.8.0.62 92933 username mammad 92933 unique_id port 92933 terminate_cause User-Request 92933 bytes_out 499059 92933 bytes_in 7654897 92933 station_ip 78.39.27.110 92933 port 15728791 92933 nas_port_type Virtual 92933 remote_ip 5.5.5.205 92943 username alihosseini 92943 mac 92943 bytes_out 0 92943 bytes_in 0 92943 station_ip 5.120.78.129 92943 port 9 92943 unique_id port 92943 remote_ip 10.8.1.34 92945 username alihosseini 92945 mac 92945 bytes_out 0 92945 bytes_in 0 92945 station_ip 5.120.78.129 92945 port 5 92945 unique_id port 92945 remote_ip 10.8.0.46 92949 username farhad 92949 unique_id port 92949 terminate_cause Lost-Carrier 92949 bytes_out 28061274 92949 bytes_in 299522812 92949 station_ip 5.120.96.9 92949 port 15728736 92949 nas_port_type Virtual 92949 remote_ip 5.5.5.202 92955 username mohammadi 92955 mac 92955 bytes_out 9617 92955 bytes_in 8505 92955 station_ip 83.123.215.71 92955 port 8 92955 unique_id port 92955 remote_ip 10.8.0.62 92956 username aminvpn 92956 mac 92956 bytes_out 107409 92956 bytes_in 156587 92956 station_ip 37.129.21.148 92956 port 5 92956 unique_id port 92956 remote_ip 10.8.0.6 92957 username aminvpn 92957 mac 92957 bytes_out 56702 92957 bytes_in 97720 92957 station_ip 37.129.21.148 92957 port 5 92957 unique_id port 92957 remote_ip 10.8.0.6 188672 username zahra1101 188672 kill_reason Maximum check online fails reached 188672 mac 188672 bytes_out 0 188672 bytes_in 0 188672 station_ip 5.120.128.95 188672 port 388 188672 unique_id port 188676 username zahra1101 92961 username bcboard 92961 unique_id port 92961 terminate_cause User-Request 92961 bytes_out 76857 92961 bytes_in 98399 92961 station_ip 113.203.69.202 92961 port 15728798 92961 nas_port_type Virtual 92961 remote_ip 5.5.5.176 92963 username aminvpn 92963 mac 92963 bytes_out 0 92963 bytes_in 0 92963 station_ip 37.129.21.148 92963 port 5 92963 unique_id port 92963 remote_ip 10.8.0.6 92964 username aminvpn 92964 mac 92964 bytes_out 148778 92964 bytes_in 152829 92964 station_ip 37.129.21.148 92964 port 5 92964 unique_id port 92964 remote_ip 10.8.0.6 92967 username aminvpn 92967 mac 92967 bytes_out 77700 92967 bytes_in 91980 92967 station_ip 37.129.21.148 92967 port 8 92967 unique_id port 92967 remote_ip 10.8.0.6 92970 username mohammadi 92970 mac 92970 bytes_out 17163 92970 bytes_in 13753 92970 station_ip 83.123.215.71 92970 port 8 92970 unique_id port 92970 remote_ip 10.8.0.62 92973 username aminvpn 92973 mac 92973 bytes_out 190637 92973 bytes_in 258862 92973 station_ip 37.129.21.148 92973 port 5 92973 unique_id port 92973 remote_ip 10.8.0.6 92974 username mohammadi 92974 mac 92974 bytes_out 0 92974 bytes_in 0 92974 station_ip 83.123.215.71 92974 port 8 92974 unique_id port 92974 remote_ip 10.8.0.62 92980 username alihosseini 92980 mac 92980 bytes_out 0 92980 bytes_in 0 92980 station_ip 5.119.78.187 92980 port 10 92980 unique_id port 92980 remote_ip 10.8.1.34 92981 username mahyaarabpour 92981 mac 92981 bytes_out 372282 92981 bytes_in 4251254 92981 station_ip 5.120.5.189 92981 port 8 92981 unique_id port 92981 remote_ip 10.8.0.54 92982 username alihosseini 92982 mac 92982 bytes_out 0 92982 bytes_in 0 92982 station_ip 5.119.184.20 92982 port 10 92982 unique_id port 92966 station_ip 37.129.21.148 92966 port 5 92966 unique_id port 92966 remote_ip 10.8.0.6 92975 username morteza 92975 mac 92975 bytes_out 0 92975 bytes_in 0 92975 station_ip 37.129.129.21 92975 port 11 92975 unique_id port 92975 remote_ip 10.8.1.26 92976 username mirzaei 92976 kill_reason Another user logged on this global unique id 92976 mac 92976 bytes_out 0 92976 bytes_in 0 92976 station_ip 5.119.222.239 92976 port 7 92976 unique_id port 92976 remote_ip 10.8.0.14 92977 username farhad 92977 unique_id port 92977 terminate_cause User-Request 92977 bytes_out 7142442 92977 bytes_in 122917709 92977 station_ip 5.119.116.201 92977 port 15728799 92977 nas_port_type Virtual 92977 remote_ip 5.5.5.175 92979 username amirabbas 92979 unique_id port 92979 terminate_cause Lost-Carrier 92979 bytes_out 30326549 92979 bytes_in 923575979 92979 station_ip 31.59.45.150 92979 port 15728794 92979 nas_port_type Virtual 92979 remote_ip 5.5.5.180 92983 username mohammadi 92983 mac 92983 bytes_out 662396 92983 bytes_in 2403576 92983 station_ip 83.123.215.71 92983 port 5 92983 unique_id port 92983 remote_ip 10.8.0.62 92984 username heydari 92984 unique_id port 92984 terminate_cause User-Request 92984 bytes_out 125539 92984 bytes_in 545576 92984 station_ip 5.119.122.2 92984 port 15728801 92984 nas_port_type Virtual 92984 remote_ip 5.5.5.238 92986 username alihosseini 92986 mac 92986 bytes_out 48624 92986 bytes_in 454112 92986 station_ip 5.119.184.20 92986 port 5 92986 unique_id port 92986 remote_ip 10.8.0.46 92990 username aminvpn 92990 mac 92990 bytes_out 79840 92990 bytes_in 121301 92990 station_ip 37.129.123.48 92990 port 5 92990 unique_id port 92990 remote_ip 10.8.0.6 92994 username arabpour 92994 unique_id port 92994 terminate_cause User-Request 92994 bytes_out 371875 92994 bytes_in 8345370 92994 station_ip 204.18.237.107 92994 port 15728806 92994 nas_port_type Virtual 92994 remote_ip 5.5.5.170 92995 username aminvpn 92995 mac 92995 bytes_out 0 92995 bytes_in 0 92995 station_ip 83.123.15.37 92995 port 5 92995 unique_id port 92995 remote_ip 10.8.0.6 92996 username aminvpn 92996 mac 92996 bytes_out 0 92996 bytes_in 0 92996 station_ip 37.129.120.128 92996 port 9 92996 unique_id port 92996 remote_ip 10.8.0.6 92997 username aminvpn 92997 mac 92997 bytes_out 0 92997 bytes_in 0 92997 station_ip 83.123.15.37 92997 port 5 92997 unique_id port 92997 remote_ip 10.8.0.6 93000 username aminvpn 93000 mac 93000 bytes_out 0 93000 bytes_in 0 93000 station_ip 83.123.15.37 93000 port 5 93000 unique_id port 93000 remote_ip 10.8.0.6 93004 username avaanna 93004 unique_id port 93004 terminate_cause User-Request 93004 bytes_out 11154 93004 bytes_in 21894 93004 station_ip 113.203.30.169 93004 port 15728809 93004 nas_port_type Virtual 93004 remote_ip 5.5.5.168 93007 username aminvpn 93007 mac 93007 bytes_out 0 93007 bytes_in 0 93007 station_ip 37.129.120.128 93007 port 8 93007 unique_id port 93007 remote_ip 10.8.0.6 93008 username aminvpn 93008 mac 93008 bytes_out 0 93008 bytes_in 0 93008 station_ip 83.123.15.37 93008 port 5 93008 unique_id port 93008 remote_ip 10.8.0.6 93012 username aminvpn 93012 mac 93012 bytes_out 0 93012 bytes_in 0 93012 station_ip 37.129.120.128 93012 port 8 93012 unique_id port 93012 remote_ip 10.8.0.6 93014 username alihosseini 93014 mac 93014 bytes_out 0 93014 bytes_in 0 93014 station_ip 5.119.184.20 93014 port 10 92968 unique_id port 92968 remote_ip 10.8.0.6 92969 username fariba 92969 kill_reason Another user logged on this global unique id 92969 mac 92969 bytes_out 0 92969 bytes_in 0 92969 station_ip 5.119.244.119 92969 port 9 92969 unique_id port 92969 remote_ip 10.8.1.46 92971 username mohammadi 92971 mac 92971 bytes_out 41557 92971 bytes_in 33784 92971 station_ip 83.123.215.71 92971 port 9 92971 unique_id port 92971 remote_ip 10.8.0.62 92972 username hashtadani 92972 unique_id port 92972 terminate_cause Lost-Carrier 92972 bytes_out 8139991 92972 bytes_in 142200906 92972 station_ip 83.122.101.161 92972 port 15728790 92972 nas_port_type Virtual 92972 remote_ip 5.5.5.182 92978 username alihosseini 92978 mac 92978 bytes_out 0 92978 bytes_in 0 92978 station_ip 5.119.78.187 92978 port 10 92978 unique_id port 92978 remote_ip 10.8.1.34 92988 username alihosseini 92988 mac 92988 bytes_out 0 92988 bytes_in 0 92988 station_ip 5.119.184.20 92988 port 8 92988 unique_id port 92988 remote_ip 10.8.0.46 92989 username mammad 92989 unique_id port 92989 terminate_cause User-Request 92989 bytes_out 2200313 92989 bytes_in 34892767 92989 station_ip 5.233.67.199 92989 port 15728802 92989 nas_port_type Virtual 92989 remote_ip 5.5.5.174 92991 username alihosseini 92991 mac 92991 bytes_out 0 92991 bytes_in 0 92991 station_ip 5.119.184.20 92991 port 10 92991 unique_id port 92991 remote_ip 10.8.1.34 92992 username madadi2 92992 unique_id port 92992 terminate_cause Lost-Carrier 92992 bytes_out 38353 92992 bytes_in 170917 92992 station_ip 5.119.52.182 92992 port 15728803 92992 nas_port_type Virtual 92992 remote_ip 5.5.5.173 92993 username alinezhad 92993 unique_id port 92993 terminate_cause User-Request 92993 bytes_out 87383 92993 bytes_in 307023 92993 station_ip 5.202.11.170 92993 port 15728805 92993 nas_port_type Virtual 92993 remote_ip 5.5.5.171 93001 username alihosseini 93001 mac 93001 bytes_out 0 93001 bytes_in 0 93001 station_ip 5.119.184.20 93001 port 8 93001 unique_id port 93001 remote_ip 10.8.0.46 93002 username aminvpn 93002 mac 93002 bytes_out 147840 93002 bytes_in 156473 93002 station_ip 37.129.120.128 93002 port 9 93002 unique_id port 93002 remote_ip 10.8.0.6 93005 username aminvpn 93005 mac 93005 bytes_out 0 93005 bytes_in 0 93005 station_ip 37.129.120.128 93005 port 8 93005 unique_id port 93005 remote_ip 10.8.0.6 93006 username aminvpn 93006 mac 93006 bytes_out 0 93006 bytes_in 0 93006 station_ip 83.123.15.37 93006 port 5 93006 unique_id port 93006 remote_ip 10.8.0.6 93009 username avaanna 93009 unique_id port 93009 terminate_cause User-Request 93009 bytes_out 64318 93009 bytes_in 1098332 93009 station_ip 113.203.30.169 93009 port 15728811 93009 nas_port_type Virtual 93009 remote_ip 5.5.5.168 93013 username aminvpn 93013 mac 93013 bytes_out 0 93013 bytes_in 0 93013 station_ip 83.123.15.37 93013 port 5 93013 unique_id port 93013 remote_ip 10.8.0.6 93021 username aminvpn 93021 mac 93021 bytes_out 0 93021 bytes_in 0 93021 station_ip 37.129.120.128 93021 port 8 93021 unique_id port 93021 remote_ip 10.8.0.6 93022 username aminvpn 93022 mac 93022 bytes_out 0 93022 bytes_in 0 93022 station_ip 83.123.15.37 93022 port 9 93022 unique_id port 93022 remote_ip 10.8.0.6 93023 username aminvpn 93023 mac 93023 bytes_out 0 93023 bytes_in 0 93023 station_ip 37.129.120.128 93023 port 8 93023 unique_id port 93023 remote_ip 10.8.0.6 92982 remote_ip 10.8.1.34 92985 username aminvpn 92985 mac 92985 bytes_out 253147 92985 bytes_in 1009283 92985 station_ip 37.129.123.48 92985 port 8 92985 unique_id port 92985 remote_ip 10.8.0.6 92987 username aminvpn 92987 mac 92987 bytes_out 0 92987 bytes_in 0 92987 station_ip 37.129.123.48 92987 port 8 92987 unique_id port 92987 remote_ip 10.8.0.6 92998 username avaanna 92998 unique_id port 92998 terminate_cause User-Request 92998 bytes_out 164587 92998 bytes_in 4120629 92998 station_ip 113.203.30.169 92998 port 15728808 92998 nas_port_type Virtual 92998 remote_ip 5.5.5.168 92999 username aminvpn 92999 mac 92999 bytes_out 147320 92999 bytes_in 155487 92999 station_ip 37.129.120.128 92999 port 9 92999 unique_id port 92999 remote_ip 10.8.0.6 93003 username aminvpn 93003 mac 93003 bytes_out 0 93003 bytes_in 0 93003 station_ip 83.123.15.37 93003 port 5 93003 unique_id port 93003 remote_ip 10.8.0.6 93010 username aminvpn 93010 mac 93010 bytes_out 0 93010 bytes_in 0 93010 station_ip 37.129.120.128 93010 port 8 93010 unique_id port 93010 remote_ip 10.8.0.6 93011 username aminvpn 93011 mac 93011 bytes_out 0 93011 bytes_in 0 93011 station_ip 83.123.15.37 93011 port 5 93011 unique_id port 93011 remote_ip 10.8.0.6 93015 username ahmadi 93015 unique_id port 93015 terminate_cause User-Request 93015 bytes_out 323695 93015 bytes_in 3348039 93015 station_ip 113.203.115.165 93015 port 15728807 93015 nas_port_type Virtual 93015 remote_ip 5.5.5.169 93017 username avaanna 93017 unique_id port 93017 terminate_cause User-Request 93017 bytes_out 511919 93017 bytes_in 17050983 93017 station_ip 113.203.30.169 93017 port 15728812 93017 nas_port_type Virtual 93017 remote_ip 5.5.5.168 93018 username aminvpn 93018 mac 93018 bytes_out 0 93018 bytes_in 0 93018 station_ip 83.123.15.37 93018 port 5 93018 unique_id port 93018 remote_ip 10.8.0.6 93020 username aminvpn 93020 mac 93020 bytes_out 0 93020 bytes_in 0 93020 station_ip 83.123.15.37 93020 port 5 93020 unique_id port 93020 remote_ip 10.8.0.6 93026 username mohammadi 93026 mac 93026 bytes_out 0 93026 bytes_in 0 93026 station_ip 83.123.215.71 93026 port 5 93026 unique_id port 93026 remote_ip 10.8.0.62 93028 username madadi2 93028 unique_id port 93028 terminate_cause Lost-Carrier 93028 bytes_out 134652 93028 bytes_in 427694 93028 station_ip 5.120.50.107 93028 port 15728804 93028 nas_port_type Virtual 93028 remote_ip 5.5.5.172 93029 username aminvpn 93029 mac 93029 bytes_out 0 93029 bytes_in 0 93029 station_ip 83.123.15.37 93029 port 5 93029 unique_id port 93029 remote_ip 10.8.0.6 93031 username alihosseini 93031 mac 93031 bytes_out 0 93031 bytes_in 0 93031 station_ip 5.119.184.20 93031 port 8 93031 unique_id port 93031 remote_ip 10.8.0.46 93035 username alihosseini 93035 mac 93035 bytes_out 0 93035 bytes_in 0 93035 station_ip 5.119.184.20 93035 port 8 93035 unique_id port 93035 remote_ip 10.8.0.46 93046 username mirzaei 93046 kill_reason Another user logged on this global unique id 93046 mac 93046 bytes_out 0 93046 bytes_in 0 93046 station_ip 5.119.222.239 93046 port 7 93046 unique_id port 93047 username alinezhad 93047 unique_id port 93047 terminate_cause User-Request 93047 bytes_out 0 93047 bytes_in 0 93047 station_ip 5.202.11.170 93047 port 15728818 93047 nas_port_type Virtual 93047 remote_ip 5.5.5.171 93056 username alihosseini 93056 mac 93014 unique_id port 93014 remote_ip 10.8.1.34 93016 username aminvpn 93016 mac 93016 bytes_out 0 93016 bytes_in 0 93016 station_ip 37.129.120.128 93016 port 8 93016 unique_id port 93016 remote_ip 10.8.0.6 93019 username aminvpn 93019 mac 93019 bytes_out 0 93019 bytes_in 0 93019 station_ip 37.129.120.128 93019 port 8 93019 unique_id port 93019 remote_ip 10.8.0.6 93024 username alihosseini 93024 kill_reason Maximum check online fails reached 93024 mac 93024 bytes_out 0 93024 bytes_in 0 93024 station_ip 5.119.184.20 93024 port 10 93024 unique_id port 93027 username aminvpn 93027 mac 93027 bytes_out 0 93027 bytes_in 0 93027 station_ip 37.129.120.128 93027 port 8 93027 unique_id port 93027 remote_ip 10.8.0.6 93030 username aminvpn 93030 mac 93030 bytes_out 0 93030 bytes_in 0 93030 station_ip 37.129.120.128 93030 port 8 93030 unique_id port 93030 remote_ip 10.8.0.6 93033 username asadi 93033 unique_id port 93033 terminate_cause User-Request 93033 bytes_out 77051 93033 bytes_in 1609870 93033 station_ip 113.203.66.255 93033 port 15728814 93033 nas_port_type Virtual 93033 remote_ip 5.5.5.166 93034 username alihosseini 93034 mac 93034 bytes_out 0 93034 bytes_in 0 93034 station_ip 5.119.184.20 93034 port 8 93034 unique_id port 93034 remote_ip 10.8.0.46 93036 username mohammadi 93036 mac 93036 bytes_out 0 93036 bytes_in 0 93036 station_ip 83.123.215.71 93036 port 9 93036 unique_id port 93036 remote_ip 10.8.0.62 93038 username alihosseini 93038 mac 93038 bytes_out 1644 93038 bytes_in 5142 93038 station_ip 5.119.184.20 93038 port 8 93038 unique_id port 93038 remote_ip 10.8.0.46 93039 username morteza 93039 mac 93039 bytes_out 7563 93039 bytes_in 12725 93039 station_ip 83.122.226.138 93039 port 11 93039 unique_id port 93039 remote_ip 10.8.1.26 93041 username mohammadi 93041 mac 93041 bytes_out 0 93041 bytes_in 0 93041 station_ip 83.123.215.71 93041 port 9 93041 unique_id port 93041 remote_ip 10.8.0.62 93042 username morteza 93042 mac 93042 bytes_out 18310 93042 bytes_in 37993 93042 station_ip 37.129.140.212 93042 port 11 93042 unique_id port 93042 remote_ip 10.8.1.26 93043 username alihosseini 93043 kill_reason Another user logged on this global unique id 93043 mac 93043 bytes_out 0 93043 bytes_in 0 93043 station_ip 5.119.184.20 93043 port 8 93043 unique_id port 93043 remote_ip 10.8.0.46 93044 username mohammadi 93044 mac 93044 bytes_out 0 93044 bytes_in 0 93044 station_ip 83.123.215.71 93044 port 5 93044 unique_id port 93044 remote_ip 10.8.0.62 93049 username alihosseini 93049 kill_reason Another user logged on this global unique id 93049 mac 93049 bytes_out 0 93049 bytes_in 0 93049 station_ip 5.119.184.20 93049 port 8 93049 unique_id port 93050 username madadi2 93050 unique_id port 93050 terminate_cause Lost-Carrier 93050 bytes_out 168198 93050 bytes_in 486639 93050 station_ip 5.119.40.74 93050 port 15728817 93050 nas_port_type Virtual 93050 remote_ip 5.5.5.165 93051 username mohammadi 93051 mac 93051 bytes_out 0 93051 bytes_in 0 93051 station_ip 83.123.215.71 93051 port 5 93051 unique_id port 93051 remote_ip 10.8.0.62 93052 username mohammadi 93052 kill_reason Another user logged on this global unique id 93052 mac 93052 bytes_out 0 93052 bytes_in 0 93052 station_ip 83.123.215.71 93052 port 9 93052 unique_id port 93052 remote_ip 10.8.0.62 93054 username morteza 93054 mac 93054 bytes_out 0 93025 username aminvpn 93025 mac 93025 bytes_out 0 93025 bytes_in 0 93025 station_ip 83.123.15.37 93025 port 9 93025 unique_id port 93025 remote_ip 10.8.0.6 93032 username avaanna 93032 unique_id port 93032 terminate_cause User-Request 93032 bytes_out 496224 93032 bytes_in 23270818 93032 station_ip 113.203.30.169 93032 port 15728813 93032 nas_port_type Virtual 93032 remote_ip 5.5.5.168 93037 username alinezhad 93037 unique_id port 93037 terminate_cause User-Request 93037 bytes_out 0 93037 bytes_in 0 93037 station_ip 5.202.11.170 93037 port 15728816 93037 nas_port_type Virtual 93037 remote_ip 5.5.5.171 93040 username aminvpn 93040 mac 93040 bytes_out 0 93040 bytes_in 0 93040 station_ip 83.123.15.37 93040 port 5 93040 unique_id port 93040 remote_ip 10.8.0.6 93045 username alihosseini 93045 kill_reason Another user logged on this global unique id 93045 mac 93045 bytes_out 0 93045 bytes_in 0 93045 station_ip 5.119.184.20 93045 port 8 93045 unique_id port 93048 username mammad 93048 unique_id port 93048 terminate_cause User-Request 93048 bytes_out 4545790 93048 bytes_in 84978286 93048 station_ip 5.233.67.199 93048 port 15728815 93048 nas_port_type Virtual 93048 remote_ip 5.5.5.174 93053 username fariba 93053 kill_reason Another user logged on this global unique id 93053 mac 93053 bytes_out 0 93053 bytes_in 0 93053 station_ip 5.119.244.119 93053 port 5 93053 unique_id port 93053 remote_ip 10.8.0.10 93058 username caferibar 93058 unique_id port 93058 terminate_cause Lost-Carrier 93058 bytes_out 127513 93058 bytes_in 954131 93058 station_ip 5.120.185.113 93058 port 15728821 93058 nas_port_type Virtual 93058 remote_ip 5.5.5.163 93059 username ahmadipour 93059 unique_id port 93059 terminate_cause Lost-Carrier 93059 bytes_out 567716 93059 bytes_in 12415929 93059 station_ip 113.203.6.234 93059 port 15728822 93059 nas_port_type Virtual 93059 remote_ip 5.5.5.162 93063 username ahmadi 93063 unique_id port 93063 terminate_cause User-Request 93063 bytes_out 0 93063 bytes_in 0 93063 station_ip 113.203.82.125 93063 port 15728826 93063 nas_port_type Virtual 93063 remote_ip 5.5.5.158 93064 username aminvpn 93064 mac 93064 bytes_out 173535 93064 bytes_in 629759 93064 station_ip 113.203.96.141 93064 port 9 93064 unique_id port 93064 remote_ip 10.8.0.6 93066 username khalili 93066 kill_reason Maximum check online fails reached 93066 unique_id port 93066 bytes_out 1254208 93066 bytes_in 4111303 93066 station_ip 5.119.1.6 93066 port 15728820 93066 nas_port_type Virtual 93066 remote_ip 5.5.5.164 93076 username aminvpn 93076 mac 93076 bytes_out 0 93076 bytes_in 0 93076 station_ip 83.123.15.37 93076 port 10 93076 unique_id port 93076 remote_ip 10.8.0.6 93079 username aminvpn 93079 mac 93079 bytes_out 195671 93079 bytes_in 216004 93079 station_ip 83.123.15.37 93079 port 10 93079 unique_id port 93079 remote_ip 10.8.0.6 93081 username aminvpn 93081 mac 93081 bytes_out 0 93081 bytes_in 0 93081 station_ip 83.123.15.37 93081 port 10 93081 unique_id port 93081 remote_ip 10.8.0.6 93087 username alinezhad 93087 unique_id port 93087 terminate_cause User-Request 93087 bytes_out 20501 93087 bytes_in 49487 93087 station_ip 5.202.11.170 93087 port 15728829 93087 nas_port_type Virtual 93087 remote_ip 5.5.5.171 93089 username aminvpn 93089 mac 93089 bytes_out 0 93089 bytes_in 0 93089 station_ip 83.123.15.37 93089 port 10 93089 unique_id port 93089 remote_ip 10.8.0.6 93090 username aminvpn 93090 mac 93090 bytes_out 0 93090 bytes_in 0 93054 bytes_in 0 93054 station_ip 37.129.134.64 93054 port 9 93054 unique_id port 93054 remote_ip 10.8.1.26 93055 username mohammadi 93055 mac 93055 bytes_out 97991 93055 bytes_in 72366 93055 station_ip 83.123.215.71 93055 port 11 93055 unique_id port 93055 remote_ip 10.8.0.62 93057 username mohammadi 93057 mac 93057 bytes_out 24101 93057 bytes_in 31917 93057 station_ip 83.123.215.71 93057 port 8 93057 unique_id port 93057 remote_ip 10.8.0.62 93069 username aminvpn 93069 mac 93069 bytes_out 130355 93069 bytes_in 220753 93069 station_ip 83.123.15.37 93069 port 10 93069 unique_id port 93069 remote_ip 10.8.0.6 93073 username aminvpn 93073 mac 93073 bytes_out 0 93073 bytes_in 0 93073 station_ip 83.123.15.37 93073 port 10 93073 unique_id port 93073 remote_ip 10.8.0.6 93074 username aminvpn 93074 mac 93074 bytes_out 0 93074 bytes_in 0 93074 station_ip 113.203.96.141 93074 port 11 93074 unique_id port 93074 remote_ip 10.8.0.6 93084 username aminvpn 93084 mac 93084 bytes_out 0 93084 bytes_in 0 93084 station_ip 113.203.96.141 93084 port 8 93084 unique_id port 93084 remote_ip 10.8.0.6 93088 username mohammadi 93088 mac 93088 bytes_out 182421 93088 bytes_in 450639 93088 station_ip 83.123.215.71 93088 port 11 93088 unique_id port 93088 remote_ip 10.8.0.62 93094 username aminvpn 93094 mac 93094 bytes_out 0 93094 bytes_in 0 93094 station_ip 113.203.96.141 93094 port 8 93094 unique_id port 93094 remote_ip 10.8.0.6 93097 username alinezhad 93097 unique_id port 93097 terminate_cause User-Request 93097 bytes_out 0 93097 bytes_in 0 93097 station_ip 5.202.11.170 93097 port 15728830 93097 nas_port_type Virtual 93097 remote_ip 5.5.5.171 93101 username aminvpn 93101 mac 93101 bytes_out 0 93101 bytes_in 0 93101 station_ip 113.203.96.141 93101 port 8 93101 unique_id port 93101 remote_ip 10.8.0.6 93104 username alihosseini 93104 kill_reason Another user logged on this global unique id 93104 mac 93104 bytes_out 0 93104 bytes_in 0 93104 station_ip 5.119.200.135 93104 port 9 93104 unique_id port 93104 remote_ip 10.8.0.46 93105 username aminvpn 93105 mac 93105 bytes_out 0 93105 bytes_in 0 93105 station_ip 113.203.96.141 93105 port 8 93105 unique_id port 93105 remote_ip 10.8.0.6 93106 username aminvpn 93106 mac 93106 bytes_out 9350 93106 bytes_in 12251 93106 station_ip 83.123.15.37 93106 port 10 93106 unique_id port 93106 remote_ip 10.8.0.6 93107 username aminvpn 93107 mac 93107 bytes_out 0 93107 bytes_in 0 93107 station_ip 113.203.96.141 93107 port 8 93107 unique_id port 93107 remote_ip 10.8.0.6 93112 username aminvpn 93112 mac 93112 bytes_out 0 93112 bytes_in 0 93112 station_ip 83.123.15.37 93112 port 10 93112 unique_id port 93112 remote_ip 10.8.0.6 93113 username aminvpn 93113 mac 93113 bytes_out 0 93113 bytes_in 0 93113 station_ip 113.203.96.141 93113 port 8 93113 unique_id port 93113 remote_ip 10.8.0.6 93114 username aminvpn 93114 mac 93114 bytes_out 0 93114 bytes_in 0 93114 station_ip 83.123.15.37 93114 port 10 93114 unique_id port 93114 remote_ip 10.8.0.6 93115 username aminvpn 93115 mac 93115 bytes_out 0 93115 bytes_in 0 93115 station_ip 113.203.96.141 93115 port 8 93115 unique_id port 93115 remote_ip 10.8.0.6 93117 username aminvpn 93117 mac 93117 bytes_out 0 93117 bytes_in 0 93117 station_ip 113.203.96.141 93056 bytes_out 0 93056 bytes_in 0 93056 station_ip 5.119.184.20 93056 port 8 93056 unique_id port 93060 username aminvpn 93060 mac 93060 bytes_out 0 93060 bytes_in 0 93060 station_ip 83.123.15.37 93060 port 10 93060 unique_id port 93060 remote_ip 10.8.0.6 93061 username amirabbas 93061 unique_id port 93061 terminate_cause User-Request 93061 bytes_out 33066169 93061 bytes_in 994892453 93061 station_ip 151.238.235.253 93061 port 15728810 93061 nas_port_type Virtual 93061 remote_ip 5.5.5.167 93062 username mahyaarabpour 93062 mac 93062 bytes_out 0 93062 bytes_in 0 93062 station_ip 5.120.5.189 93062 port 9 93062 unique_id port 93062 remote_ip 10.8.0.54 93065 username madadi2 93065 unique_id port 93065 terminate_cause Lost-Carrier 93065 bytes_out 72802 93065 bytes_in 221820 93065 station_ip 5.120.146.87 93065 port 15728825 93065 nas_port_type Virtual 93065 remote_ip 5.5.5.159 93067 username aminvpn 93067 mac 93067 bytes_out 45708 93067 bytes_in 60044 93067 station_ip 83.123.15.37 93067 port 10 93067 unique_id port 93067 remote_ip 10.8.0.6 93068 username aminvpn 93068 mac 93068 bytes_out 0 93068 bytes_in 0 93068 station_ip 113.203.96.141 93068 port 9 93068 unique_id port 93068 remote_ip 10.8.0.6 93070 username aminvpn 93070 mac 93070 bytes_out 0 93070 bytes_in 0 93070 station_ip 113.203.96.141 93070 port 11 93070 unique_id port 93070 remote_ip 10.8.0.6 93071 username aminvpn 93071 mac 93071 bytes_out 51564 93071 bytes_in 110837 93071 station_ip 83.123.15.37 93071 port 10 93071 unique_id port 93071 remote_ip 10.8.0.6 93072 username aminvpn 93072 mac 93072 bytes_out 0 93072 bytes_in 0 93072 station_ip 113.203.96.141 93072 port 11 93072 unique_id port 93072 remote_ip 10.8.0.6 93075 username madadi2 93075 unique_id port 93075 terminate_cause User-Request 93075 bytes_out 15464 93075 bytes_in 47685 93075 station_ip 5.120.113.54 93075 port 15728827 93075 nas_port_type Virtual 93075 remote_ip 5.5.5.157 93077 username aminvpn 93077 mac 93077 bytes_out 0 93077 bytes_in 0 93077 station_ip 113.203.96.141 93077 port 11 93077 unique_id port 93077 remote_ip 10.8.0.6 93078 username mohammadi 93078 mac 93078 bytes_out 0 93078 bytes_in 0 93078 station_ip 83.123.215.71 93078 port 8 93078 unique_id port 93078 remote_ip 10.8.0.62 93080 username aminvpn 93080 mac 93080 bytes_out 0 93080 bytes_in 0 93080 station_ip 113.203.96.141 93080 port 8 93080 unique_id port 93080 remote_ip 10.8.0.6 93082 username aminvpn 93082 mac 93082 bytes_out 0 93082 bytes_in 0 93082 station_ip 113.203.96.141 93082 port 8 93082 unique_id port 93082 remote_ip 10.8.0.6 93083 username aminvpn 93083 mac 93083 bytes_out 0 93083 bytes_in 0 93083 station_ip 83.123.15.37 93083 port 10 93083 unique_id port 93083 remote_ip 10.8.0.6 93085 username aminvpn 93085 mac 93085 bytes_out 0 93085 bytes_in 0 93085 station_ip 83.123.15.37 93085 port 10 93085 unique_id port 93085 remote_ip 10.8.0.6 93086 username aminvpn 93086 mac 93086 bytes_out 0 93086 bytes_in 0 93086 station_ip 113.203.96.141 93086 port 8 93086 unique_id port 93086 remote_ip 10.8.0.6 93091 username aminvpn 93091 mac 93091 bytes_out 0 93091 bytes_in 0 93091 station_ip 83.123.15.37 93091 port 10 93091 unique_id port 93091 remote_ip 10.8.0.6 93095 username mohammadi 93095 mac 93095 bytes_out 43712 93095 bytes_in 72865 93090 station_ip 113.203.96.141 93090 port 8 93090 unique_id port 93090 remote_ip 10.8.0.6 93092 username aminvpn 93092 mac 93092 bytes_out 0 93092 bytes_in 0 93092 station_ip 113.203.96.141 93092 port 8 93092 unique_id port 93092 remote_ip 10.8.0.6 93093 username aminvpn 93093 mac 93093 bytes_out 19408 93093 bytes_in 23180 93093 station_ip 83.123.15.37 93093 port 11 93093 unique_id port 93093 remote_ip 10.8.0.6 93098 username aminvpn 93098 mac 93098 bytes_out 13745 93098 bytes_in 19061 93098 station_ip 83.123.15.37 93098 port 11 93098 unique_id port 93098 remote_ip 10.8.0.6 93099 username aminvpn 93099 mac 93099 bytes_out 0 93099 bytes_in 0 93099 station_ip 113.203.96.141 93099 port 8 93099 unique_id port 93099 remote_ip 10.8.0.6 93103 username alinezhad 93103 unique_id port 93103 terminate_cause User-Request 93103 bytes_out 0 93103 bytes_in 0 93103 station_ip 5.202.11.170 93103 port 15728831 93103 nas_port_type Virtual 93103 remote_ip 5.5.5.171 93108 username aminvpn 93108 mac 93108 bytes_out 55048 93108 bytes_in 70171 93108 station_ip 83.123.15.37 93108 port 10 93108 unique_id port 93108 remote_ip 10.8.0.6 93109 username aminvpn 93109 mac 93109 bytes_out 0 93109 bytes_in 0 93109 station_ip 113.203.96.141 93109 port 8 93109 unique_id port 93109 remote_ip 10.8.0.6 93118 username aminvpn 93118 mac 93118 bytes_out 0 93118 bytes_in 0 93118 station_ip 83.123.15.37 93118 port 10 93118 unique_id port 93118 remote_ip 10.8.0.6 93119 username alihosseini 93119 kill_reason Another user logged on this global unique id 93119 mac 93119 bytes_out 0 93119 bytes_in 0 93119 station_ip 5.119.200.135 93119 port 9 93119 unique_id port 93129 username afarin 93129 kill_reason Relative expiration date has reached 93129 unique_id port 93129 bytes_out 0 93129 bytes_in 0 93129 station_ip 31.56.112.120 93129 port 15728838 93129 nas_port_type Virtual 93131 username mammad 93131 unique_id port 93131 terminate_cause User-Request 93131 bytes_out 4376143 93131 bytes_in 125190464 93131 station_ip 5.233.67.199 93131 port 15728837 93131 nas_port_type Virtual 93131 remote_ip 5.5.5.174 93134 username mirzaei 93134 mac 93134 bytes_out 0 93134 bytes_in 0 93134 station_ip 5.119.222.239 93134 port 7 93134 unique_id port 93138 username farhad 93138 unique_id port 93138 terminate_cause Lost-Carrier 93138 bytes_out 13424002 93138 bytes_in 95263537 93138 station_ip 5.119.135.129 93138 port 15728833 93138 nas_port_type Virtual 93138 remote_ip 5.5.5.156 93144 username zamanialireza 93144 kill_reason Relative expiration date has reached 93144 unique_id port 93144 bytes_out 0 93144 bytes_in 0 93144 station_ip 5.160.113.123 93144 port 15728850 93144 nas_port_type Virtual 93146 username caferibar 93146 unique_id port 93146 terminate_cause Lost-Carrier 93146 bytes_out 35641117 93146 bytes_in 1803769124 93146 station_ip 37.156.48.56 93146 port 15728842 93146 nas_port_type Virtual 93146 remote_ip 5.5.5.152 93147 username safarpour 93147 unique_id port 93147 terminate_cause Lost-Carrier 93147 bytes_out 2790796 93147 bytes_in 33811568 93147 station_ip 83.123.188.211 93147 port 15728847 93147 nas_port_type Virtual 93147 remote_ip 5.5.5.149 93148 username afarin 93148 kill_reason Relative expiration date has reached 93148 unique_id port 93148 bytes_out 0 93148 bytes_in 0 93148 station_ip 31.56.112.120 93148 port 15728851 93148 nas_port_type Virtual 93150 username aminvpn 93150 mac 93150 bytes_out 0 93150 bytes_in 0 93150 station_ip 83.122.139.167 93095 station_ip 83.123.215.71 93095 port 10 93095 unique_id port 93095 remote_ip 10.8.0.62 93096 username sadegh 93096 unique_id port 93096 terminate_cause Lost-Carrier 93096 bytes_out 10995124 93096 bytes_in 219853167 93096 station_ip 5.119.107.6 93096 port 15728823 93096 nas_port_type Virtual 93096 remote_ip 5.5.5.161 93100 username aminvpn 93100 mac 93100 bytes_out 72728 93100 bytes_in 71071 93100 station_ip 83.123.15.37 93100 port 10 93100 unique_id port 93100 remote_ip 10.8.0.6 93102 username aminvpn 93102 mac 93102 bytes_out 0 93102 bytes_in 0 93102 station_ip 83.123.15.37 93102 port 10 93102 unique_id port 93102 remote_ip 10.8.0.6 93110 username aminvpn 93110 mac 93110 bytes_out 0 93110 bytes_in 0 93110 station_ip 83.123.15.37 93110 port 10 93110 unique_id port 93110 remote_ip 10.8.0.6 93111 username aminvpn 93111 mac 93111 bytes_out 0 93111 bytes_in 0 93111 station_ip 113.203.96.141 93111 port 8 93111 unique_id port 93111 remote_ip 10.8.0.6 93116 username aminvpn 93116 mac 93116 bytes_out 0 93116 bytes_in 0 93116 station_ip 83.123.15.37 93116 port 10 93116 unique_id port 93116 remote_ip 10.8.0.6 93120 username alihosseini 93120 kill_reason Another user logged on this global unique id 93120 mac 93120 bytes_out 0 93120 bytes_in 0 93120 station_ip 5.119.200.135 93120 port 9 93120 unique_id port 93121 username alihosseini 93121 kill_reason Another user logged on this global unique id 93121 mac 93121 bytes_out 0 93121 bytes_in 0 93121 station_ip 5.119.200.135 93121 port 9 93121 unique_id port 93122 username alireza1 93122 unique_id port 93122 terminate_cause Lost-Carrier 93122 bytes_out 950299 93122 bytes_in 4806836 93122 station_ip 5.119.143.122 93122 port 15728824 93122 nas_port_type Virtual 93122 remote_ip 5.5.5.160 93124 username alinezhad 93124 unique_id port 93124 terminate_cause Lost-Carrier 93124 bytes_out 66711 93124 bytes_in 500552 93124 station_ip 5.202.11.170 93124 port 15728832 93124 nas_port_type Virtual 93124 remote_ip 5.5.5.171 93126 username alinezhad 93126 unique_id port 93126 terminate_cause User-Request 93126 bytes_out 0 93126 bytes_in 0 93126 station_ip 37.129.95.179 93126 port 15728835 93126 nas_port_type Virtual 93126 remote_ip 5.5.5.154 93128 username caferibar 93128 unique_id port 93128 terminate_cause Lost-Carrier 93128 bytes_out 1518798 93128 bytes_in 15365193 93128 station_ip 5.134.146.13 93128 port 15728834 93128 nas_port_type Virtual 93128 remote_ip 5.5.5.155 93130 username afarin 93130 kill_reason Relative expiration date has reached 93130 unique_id port 93130 bytes_out 0 93130 bytes_in 0 93130 station_ip 31.56.112.120 93130 port 15728839 93130 nas_port_type Virtual 93133 username alinezhad 93133 unique_id port 93133 terminate_cause User-Request 93133 bytes_out 0 93133 bytes_in 0 93133 station_ip 37.129.95.179 93133 port 15728840 93133 nas_port_type Virtual 93133 remote_ip 5.5.5.154 93136 username alinezhad 93136 unique_id port 93136 terminate_cause User-Request 93136 bytes_out 0 93136 bytes_in 0 93136 station_ip 37.129.95.179 93136 port 15728844 93136 nas_port_type Virtual 93136 remote_ip 5.5.5.154 93137 username madadi2 93137 unique_id port 93137 terminate_cause Lost-Carrier 93137 bytes_out 38587 93137 bytes_in 180910 93137 station_ip 5.119.200.160 93137 port 15728845 93137 nas_port_type Virtual 93137 remote_ip 5.5.5.151 93141 username mammad 93141 unique_id port 93141 terminate_cause User-Request 93141 bytes_out 9652980 93141 bytes_in 96979888 93141 station_ip 5.233.67.199 93141 port 15728843 93117 port 8 93117 unique_id port 93117 remote_ip 10.8.0.6 93123 username aminvpn 93123 kill_reason Another user logged on this global unique id 93123 mac 93123 bytes_out 0 93123 bytes_in 0 93123 station_ip 83.122.147.167 93123 port 9 93123 unique_id port 93123 remote_ip 10.8.1.6 93125 username aminvpn 93125 mac 93125 bytes_out 0 93125 bytes_in 0 93125 station_ip 113.203.96.141 93125 port 8 93125 unique_id port 93125 remote_ip 10.8.0.6 93127 username alihosseini 93127 mac 93127 bytes_out 0 93127 bytes_in 0 93127 station_ip 5.119.200.135 93127 port 9 93127 unique_id port 188673 remote_ip 10.8.0.250 188675 username zahra1101 188675 mac 188675 bytes_out 0 188675 bytes_in 0 188675 station_ip 5.120.128.95 188675 port 390 188675 unique_id port 188675 remote_ip 10.8.0.250 93135 username caferibar 93135 unique_id port 93135 terminate_cause User-Request 93135 bytes_out 0 93135 bytes_in 0 93135 station_ip 37.156.48.56 93135 port 15728841 93135 nas_port_type Virtual 93135 remote_ip 5.5.5.152 93139 username aminvpn 93139 mac 93139 bytes_out 139676 93139 bytes_in 217617 93139 station_ip 83.122.147.167 93139 port 9 93139 unique_id port 93139 remote_ip 10.8.1.6 93140 username mohammadi 93140 mac 93140 bytes_out 159008 93140 bytes_in 670928 93140 station_ip 83.123.183.159 93140 port 7 93140 unique_id port 93140 remote_ip 10.8.0.62 93142 username mohammadi 93142 mac 93142 bytes_out 35330 93142 bytes_in 27649 93142 station_ip 83.123.183.159 93142 port 7 93142 unique_id port 93142 remote_ip 10.8.0.62 93143 username forozande 93143 unique_id port 93143 terminate_cause User-Request 93143 bytes_out 320926 93143 bytes_in 4482278 93143 station_ip 37.129.92.210 93143 port 15728848 93143 nas_port_type Virtual 93143 remote_ip 5.5.5.148 93149 username majid 93149 unique_id port 93149 terminate_cause User-Request 93149 bytes_out 17545087 93149 bytes_in 548975781 93149 station_ip 86.57.40.103 93149 port 15728846 93149 nas_port_type Virtual 93149 remote_ip 5.5.5.150 93150 port 12 93150 unique_id port 93150 remote_ip 10.8.1.6 93154 username morteza 93154 mac 93154 bytes_out 0 93154 bytes_in 0 93154 station_ip 83.123.129.101 93154 port 9 93154 unique_id port 93154 remote_ip 10.8.1.26 93160 username morteza 93160 mac 93160 bytes_out 0 93160 bytes_in 0 93160 station_ip 83.123.129.101 93160 port 9 93160 unique_id port 93160 remote_ip 10.8.1.26 93162 username morteza 93162 kill_reason Another user logged on this global unique id 93162 mac 93162 bytes_out 0 93162 bytes_in 0 93162 station_ip 83.123.129.101 93162 port 8 93162 unique_id port 93162 remote_ip 10.8.0.42 93165 username morteza 93165 kill_reason Maximum check online fails reached 93165 mac 93165 bytes_out 0 93165 bytes_in 0 93165 station_ip 83.123.129.101 93165 port 7 93165 unique_id port 93166 username morteza 93166 mac 93166 bytes_out 0 93166 bytes_in 0 93166 station_ip 83.123.129.101 93166 port 9 93166 unique_id port 93166 remote_ip 10.8.1.26 93167 username morteza 93167 mac 93167 bytes_out 0 93167 bytes_in 0 93167 station_ip 83.123.129.101 93167 port 9 93167 unique_id port 93167 remote_ip 10.8.1.26 93169 username arabpour 93169 unique_id port 93169 terminate_cause User-Request 93169 bytes_out 140015 93169 bytes_in 2794168 93169 station_ip 5.208.246.172 93169 port 15728853 93169 nas_port_type Virtual 93169 remote_ip 5.5.5.146 93174 username aminvpn 93174 mac 188680 username zahra1101 93141 nas_port_type Virtual 93141 remote_ip 5.5.5.174 93145 username mahdixz 93145 unique_id port 93145 terminate_cause Lost-Carrier 93145 bytes_out 1574779 93145 bytes_in 38312698 93145 station_ip 151.235.104.45 93145 port 15728849 93145 nas_port_type Virtual 93145 remote_ip 5.5.5.147 93151 username aminvpn 93151 mac 93151 bytes_out 163864 93151 bytes_in 494691 93151 station_ip 83.122.139.167 93151 port 12 93151 unique_id port 93151 remote_ip 10.8.1.6 93153 username morteza 93153 mac 93153 bytes_out 0 93153 bytes_in 0 93153 station_ip 83.123.129.101 93153 port 9 93153 unique_id port 93153 remote_ip 10.8.1.26 93156 username morteza 93156 mac 93156 bytes_out 0 93156 bytes_in 0 93156 station_ip 83.123.129.101 93156 port 8 93156 unique_id port 93156 remote_ip 10.8.0.42 93157 username morteza 93157 mac 93157 bytes_out 0 93157 bytes_in 0 93157 station_ip 83.123.129.101 93157 port 8 93157 unique_id port 93157 remote_ip 10.8.0.42 93159 username morteza 93159 mac 93159 bytes_out 0 93159 bytes_in 0 93159 station_ip 83.123.129.101 93159 port 9 93159 unique_id port 93159 remote_ip 10.8.1.26 93170 username ahmadipour 93170 unique_id port 93170 terminate_cause Lost-Carrier 93170 bytes_out 1963203 93170 bytes_in 40775166 93170 station_ip 113.203.75.50 93170 port 15728854 93170 nas_port_type Virtual 93170 remote_ip 5.5.5.145 93172 username caferibar 93172 unique_id port 93172 terminate_cause Lost-Carrier 93172 bytes_out 498952 93172 bytes_in 5273194 93172 station_ip 89.34.57.154 93172 port 15728856 93172 nas_port_type Virtual 93172 remote_ip 5.5.5.144 93173 username aminvpn 93173 mac 93173 bytes_out 1563901 93173 bytes_in 12736171 93173 station_ip 83.122.81.69 93173 port 8 93173 unique_id port 93173 remote_ip 10.8.0.6 93176 username aminvpn 93176 mac 93176 bytes_out 0 93176 bytes_in 0 93176 station_ip 83.123.224.246 93176 port 10 93176 unique_id port 93176 remote_ip 10.8.0.6 93178 username mahbobeh 93178 unique_id port 93178 terminate_cause Admin-Reboot 93178 bytes_out 25439 93178 bytes_in 217736 93178 station_ip 113.203.82.247 93178 port 15728857 93178 nas_port_type Virtual 93178 remote_ip 5.5.5.208 93181 username aminvpn 93181 mac 93181 bytes_out 0 93181 bytes_in 0 93181 station_ip 83.123.224.246 93181 port 10 93181 unique_id port 93181 remote_ip 10.8.0.6 93191 username aminvpn 93191 mac 93191 bytes_out 0 93191 bytes_in 0 93191 station_ip 83.123.224.246 93191 port 10 93191 unique_id port 93191 remote_ip 10.8.0.6 93192 username aminvpn 93192 mac 93192 bytes_out 0 93192 bytes_in 0 93192 station_ip 83.122.81.69 93192 port 8 93192 unique_id port 93192 remote_ip 10.8.0.6 93196 username aminvpn 93196 mac 93196 bytes_out 0 93196 bytes_in 0 93196 station_ip 83.123.224.246 93196 port 10 93196 unique_id port 93196 remote_ip 10.8.0.6 93197 username aminvpn 93197 mac 93197 bytes_out 0 93197 bytes_in 0 93197 station_ip 83.122.81.69 93197 port 8 93197 unique_id port 93197 remote_ip 10.8.0.6 93199 username aminvpn 93199 mac 93199 bytes_out 0 93199 bytes_in 0 93199 station_ip 83.122.81.69 93199 port 8 93199 unique_id port 93199 remote_ip 10.8.0.6 93201 username madadi2 93201 unique_id port 93201 terminate_cause Lost-Carrier 93201 bytes_out 430211 93201 bytes_in 6924115 93201 station_ip 5.119.92.18 93201 port 15728640 93201 nas_port_type Virtual 93201 remote_ip 5.5.5.255 93202 username aminvpn 93202 mac 93152 username morteza 93152 mac 93152 bytes_out 0 93152 bytes_in 0 93152 station_ip 83.123.129.101 93152 port 9 93152 unique_id port 93152 remote_ip 10.8.1.26 93155 username morteza 93155 mac 93155 bytes_out 0 93155 bytes_in 0 93155 station_ip 83.123.129.101 93155 port 9 93155 unique_id port 93155 remote_ip 10.8.1.26 93158 username aminvpn 93158 kill_reason Another user logged on this global unique id 93158 mac 93158 bytes_out 0 93158 bytes_in 0 93158 station_ip 83.122.139.167 93158 port 7 93158 unique_id port 93158 remote_ip 10.8.0.6 93161 username aminvpn 93161 mac 93161 bytes_out 0 93161 bytes_in 0 93161 station_ip 83.122.139.167 93161 port 7 93161 unique_id port 93163 username morteza 93163 mac 93163 bytes_out 0 93163 bytes_in 0 93163 station_ip 83.123.129.101 93163 port 8 93163 unique_id port 93164 username morteza 93164 mac 93164 bytes_out 0 93164 bytes_in 0 93164 station_ip 83.123.129.101 93164 port 7 93164 unique_id port 93164 remote_ip 10.8.0.42 93168 username caferibar 93168 unique_id port 93168 terminate_cause Lost-Carrier 93168 bytes_out 10753969 93168 bytes_in 222514272 93168 station_ip 5.120.14.54 93168 port 15728828 93168 nas_port_type Virtual 93168 remote_ip 5.5.5.250 93171 username mahbobeh 93171 unique_id port 93171 terminate_cause Lost-Carrier 93171 bytes_out 7227750 93171 bytes_in 119525902 93171 station_ip 113.203.82.247 93171 port 15728800 93171 nas_port_type Virtual 93171 remote_ip 5.5.5.208 93179 username khalili 93179 unique_id port 93179 terminate_cause Admin-Reboot 93179 bytes_out 6039881 93179 bytes_in 221980169 93179 station_ip 5.119.1.6 93179 port 15728852 93179 nas_port_type Virtual 93179 remote_ip 5.5.5.164 93180 username aminvpn 93180 mac 93180 bytes_out 0 93180 bytes_in 0 93180 station_ip 83.122.81.69 93180 port 8 93180 unique_id port 93180 remote_ip 10.8.0.6 93186 username aminvpn 93186 mac 93186 bytes_out 0 93186 bytes_in 0 93186 station_ip 83.122.81.69 93186 port 8 93186 unique_id port 93186 remote_ip 10.8.0.6 93187 username aminvpn 93187 mac 93187 bytes_out 0 93187 bytes_in 0 93187 station_ip 83.123.224.246 93187 port 10 93187 unique_id port 93187 remote_ip 10.8.0.6 93189 username aminvpn 93189 mac 93189 bytes_out 0 93189 bytes_in 0 93189 station_ip 83.123.224.246 93189 port 10 93189 unique_id port 93189 remote_ip 10.8.0.6 93190 username aminvpn 93190 mac 93190 bytes_out 0 93190 bytes_in 0 93190 station_ip 83.122.81.69 93190 port 8 93190 unique_id port 93190 remote_ip 10.8.0.6 93194 username aminvpn 93194 mac 93194 bytes_out 0 93194 bytes_in 0 93194 station_ip 83.122.81.69 93194 port 8 93194 unique_id port 93194 remote_ip 10.8.0.6 93195 username aminvpn 93195 mac 93195 bytes_out 0 93195 bytes_in 0 93195 station_ip 83.122.81.69 93195 port 8 93195 unique_id port 93195 remote_ip 10.8.0.6 93198 username aminvpn 93198 mac 93198 bytes_out 0 93198 bytes_in 0 93198 station_ip 83.123.224.246 93198 port 10 93198 unique_id port 93198 remote_ip 10.8.0.6 93200 username aminvpn 93200 mac 93200 bytes_out 0 93200 bytes_in 0 93200 station_ip 83.123.224.246 93200 port 10 93200 unique_id port 93200 remote_ip 10.8.0.6 93205 username alihosseini 93205 mac 93205 bytes_out 0 93205 bytes_in 0 93205 station_ip 5.120.35.57 93205 port 9 93205 unique_id port 93205 remote_ip 10.8.0.46 93207 username aminvpn 93174 bytes_out 0 93174 bytes_in 0 93174 station_ip 83.123.224.246 93174 port 10 93174 unique_id port 93174 remote_ip 10.8.0.6 93175 username aminvpn 93175 mac 93175 bytes_out 0 93175 bytes_in 0 93175 station_ip 83.122.81.69 93175 port 8 93175 unique_id port 93175 remote_ip 10.8.0.6 93177 username alireza1 93177 unique_id port 93177 terminate_cause Admin-Reboot 93177 bytes_out 455398 93177 bytes_in 917771 93177 station_ip 5.119.143.122 93177 port 15728855 93177 nas_port_type Virtual 93177 remote_ip 5.5.5.160 93182 username aminvpn 93182 mac 93182 bytes_out 0 93182 bytes_in 0 93182 station_ip 83.122.81.69 93182 port 8 93182 unique_id port 93182 remote_ip 10.8.0.6 93183 username aminvpn 93183 mac 93183 bytes_out 0 93183 bytes_in 0 93183 station_ip 83.123.224.246 93183 port 10 93183 unique_id port 93183 remote_ip 10.8.0.6 93184 username aminvpn 93184 mac 93184 bytes_out 94546 93184 bytes_in 146253 93184 station_ip 83.122.81.69 93184 port 8 93184 unique_id port 93184 remote_ip 10.8.0.6 93185 username aminvpn 93185 mac 93185 bytes_out 0 93185 bytes_in 0 93185 station_ip 83.123.224.246 93185 port 10 93185 unique_id port 93185 remote_ip 10.8.0.6 93188 username aminvpn 93188 mac 93188 bytes_out 0 93188 bytes_in 0 93188 station_ip 83.122.81.69 93188 port 8 93188 unique_id port 93188 remote_ip 10.8.0.6 93193 username aminvpn 93193 mac 93193 bytes_out 0 93193 bytes_in 0 93193 station_ip 83.123.224.246 93193 port 10 93193 unique_id port 93193 remote_ip 10.8.0.6 93210 username aminvpn 93210 mac 93210 bytes_out 1948636 93210 bytes_in 12681674 93210 station_ip 83.123.224.246 93210 port 8 93210 unique_id port 93210 remote_ip 10.8.0.6 93211 username alireza1 93211 unique_id port 93211 terminate_cause Lost-Carrier 93211 bytes_out 32959 93211 bytes_in 499998 93211 station_ip 5.119.143.122 93211 port 15728645 93211 nas_port_type Virtual 93211 remote_ip 5.5.5.253 93213 username aminvpn 93213 kill_reason Another user logged on this global unique id 93213 mac 93213 bytes_out 0 93213 bytes_in 0 93213 station_ip 83.122.66.205 93213 port 9 93213 unique_id port 93213 remote_ip 10.8.0.6 93215 username alireza1 93215 unique_id port 93215 terminate_cause User-Request 93215 bytes_out 55820 93215 bytes_in 501345 93215 station_ip 5.119.143.122 93215 port 15728649 93215 nas_port_type Virtual 93215 remote_ip 5.5.5.249 93217 username madadi2 93217 unique_id port 93217 terminate_cause Lost-Carrier 93217 bytes_out 225837 93217 bytes_in 704789 93217 station_ip 5.120.179.127 93217 port 15728644 93217 nas_port_type Virtual 93217 remote_ip 5.5.5.251 93225 username mohammadi 93225 mac 93225 bytes_out 237870 93225 bytes_in 2933255 93225 station_ip 113.203.12.95 93225 port 9 93225 unique_id port 93225 remote_ip 10.8.0.62 93229 username mohammadi 93229 mac 93229 bytes_out 35453 93229 bytes_in 51200 93229 station_ip 113.203.12.95 93229 port 9 93229 unique_id port 93229 remote_ip 10.8.0.62 93237 username mohammadi 93237 mac 93237 bytes_out 0 93237 bytes_in 0 93237 station_ip 113.203.12.95 93237 port 8 93237 unique_id port 93237 remote_ip 10.8.0.62 93238 username mohammadi 93238 mac 93238 bytes_out 0 93238 bytes_in 0 93238 station_ip 113.203.12.95 93238 port 5 93238 unique_id port 93238 remote_ip 10.8.0.62 93239 username forozande 93239 unique_id port 93239 terminate_cause User-Request 93239 bytes_out 39633 93239 bytes_in 198318 93202 bytes_out 45091 93202 bytes_in 70971 93202 station_ip 83.122.81.69 93202 port 8 93202 unique_id port 93202 remote_ip 10.8.0.6 93203 username aminvpn 93203 mac 93203 bytes_out 0 93203 bytes_in 0 93203 station_ip 83.123.224.246 93203 port 10 93203 unique_id port 93203 remote_ip 10.8.0.6 93204 username aminvpn 93204 mac 93204 bytes_out 0 93204 bytes_in 0 93204 station_ip 83.122.81.69 93204 port 8 93204 unique_id port 93204 remote_ip 10.8.0.6 93206 username sobhan 93206 unique_id port 93206 terminate_cause Lost-Carrier 93206 bytes_out 37545955 93206 bytes_in 21457040 93206 station_ip 5.119.121.246 93206 port 15728641 93206 nas_port_type Virtual 93206 remote_ip 5.5.5.254 93208 username alireza1 93208 unique_id port 93208 terminate_cause Lost-Carrier 93208 bytes_out 159506 93208 bytes_in 798717 93208 station_ip 5.119.143.122 93208 port 15728642 93208 nas_port_type Virtual 93208 remote_ip 5.5.5.253 93209 username alireza1 93209 unique_id port 93209 terminate_cause User-Request 93209 bytes_out 17943 93209 bytes_in 68152 93209 station_ip 5.119.143.122 93209 port 15728647 93209 nas_port_type Virtual 93209 remote_ip 5.5.5.249 93212 username aminvpn 93212 mac 93212 bytes_out 16160 93212 bytes_in 43718 93212 station_ip 83.123.224.246 93212 port 8 93212 unique_id port 93212 remote_ip 10.8.0.6 93214 username aminvpn 93214 mac 93214 bytes_out 0 93214 bytes_in 0 93214 station_ip 83.123.224.246 93214 port 9 93214 unique_id port 93214 remote_ip 10.8.1.6 93216 username aminvpn 93216 mac 93216 bytes_out 44702 93216 bytes_in 71153 93216 station_ip 83.122.66.205 93216 port 8 93216 unique_id port 93216 remote_ip 10.8.0.6 93218 username aminvpn 93218 mac 93218 bytes_out 88639 93218 bytes_in 118157 93218 station_ip 83.122.66.205 93218 port 8 93218 unique_id port 93218 remote_ip 10.8.0.6 93220 username caferibar 93220 unique_id port 93220 terminate_cause User-Request 93220 bytes_out 1636542 93220 bytes_in 46024433 93220 station_ip 37.27.8.209 93220 port 15728648 93220 nas_port_type Virtual 93220 remote_ip 5.5.5.248 188674 mac 188674 bytes_out 0 188674 bytes_in 0 188674 station_ip 83.123.0.241 188674 port 390 188674 unique_id port 188674 remote_ip 10.8.0.62 188679 username zahra1101 188679 mac 93227 username khalili 93227 unique_id port 93227 terminate_cause Lost-Carrier 93227 bytes_out 1243816 93227 bytes_in 21775257 93227 station_ip 5.119.1.6 93227 port 15728643 93227 nas_port_type Virtual 93227 remote_ip 5.5.5.252 93230 username aminvpn 93230 mac 93230 bytes_out 184469 93230 bytes_in 291201 93230 station_ip 83.122.66.205 93230 port 8 93230 unique_id port 93230 remote_ip 10.8.0.6 93233 username mahbobeh 93233 unique_id port 93233 terminate_cause Lost-Carrier 93233 bytes_out 123636 93233 bytes_in 841461 93233 station_ip 113.203.60.237 93233 port 15728650 93233 nas_port_type Virtual 93233 remote_ip 5.5.5.247 93236 username fariba 93236 mac 93236 bytes_out 0 93236 bytes_in 0 93236 station_ip 5.119.244.119 93236 port 5 93236 unique_id port 93245 username forozande 93245 unique_id port 93245 terminate_cause User-Request 93245 bytes_out 90669 93245 bytes_in 427351 93245 station_ip 37.129.79.6 93245 port 15728660 93245 nas_port_type Virtual 93245 remote_ip 5.5.5.240 93246 username forozande 93246 unique_id port 93246 terminate_cause User-Request 93246 bytes_out 21572 93246 bytes_in 142536 93246 station_ip 37.129.79.6 93246 port 15728661 93246 nas_port_type Virtual 188679 bytes_out 0 93207 mac 93207 bytes_out 60120 93207 bytes_in 109004 93207 station_ip 83.123.224.246 93207 port 10 93207 unique_id port 93207 remote_ip 10.8.0.6 93219 username forozande 93219 unique_id port 93219 terminate_cause User-Request 93219 bytes_out 378979 93219 bytes_in 10308925 93219 station_ip 83.122.4.23 93219 port 15728652 93219 nas_port_type Virtual 93219 remote_ip 5.5.5.246 93221 username aminvpn 93221 mac 93221 bytes_out 82513 93221 bytes_in 117104 93221 station_ip 83.122.66.205 93221 port 8 93221 unique_id port 93221 remote_ip 10.8.0.6 93222 username forozande 93222 unique_id port 93222 terminate_cause User-Request 93222 bytes_out 100112 93222 bytes_in 2161684 93222 station_ip 83.122.4.23 93222 port 15728653 93222 nas_port_type Virtual 93222 remote_ip 5.5.5.246 93224 username alinezhad 93224 unique_id port 93224 terminate_cause User-Request 93224 bytes_out 0 93224 bytes_in 0 93224 station_ip 83.122.205.39 93224 port 15728654 93224 nas_port_type Virtual 93224 remote_ip 5.5.5.245 93226 username aminvpn 93226 mac 93226 bytes_out 51159 93226 bytes_in 73096 93226 station_ip 83.122.66.205 93226 port 8 93226 unique_id port 93226 remote_ip 10.8.0.6 93228 username aminvpn 93228 mac 93228 bytes_out 38837 93228 bytes_in 51787 93228 station_ip 83.122.66.205 93228 port 8 93228 unique_id port 93228 remote_ip 10.8.0.6 93231 username aminvpn 93231 mac 93231 bytes_out 0 93231 bytes_in 0 93231 station_ip 83.122.66.205 93231 port 9 93231 unique_id port 93231 remote_ip 10.8.1.6 93232 username alireza1 93232 unique_id port 93232 terminate_cause User-Request 93232 bytes_out 1057044 93232 bytes_in 16310249 93232 station_ip 5.119.143.122 93232 port 15728651 93232 nas_port_type Virtual 93232 remote_ip 5.5.5.249 93234 username aminvpn 93234 mac 93234 bytes_out 70154 93234 bytes_in 117829 93234 station_ip 83.122.66.205 93234 port 8 93234 unique_id port 93234 remote_ip 10.8.0.6 93235 username avaanna 93235 unique_id port 93235 terminate_cause User-Request 93235 bytes_out 628520 93235 bytes_in 19832533 93235 station_ip 37.129.99.96 93235 port 15728655 93235 nas_port_type Virtual 93235 remote_ip 5.5.5.244 93243 username morteza 93243 mac 93243 bytes_out 0 93243 bytes_in 0 93243 station_ip 113.203.45.114 93243 port 8 93243 unique_id port 93243 remote_ip 10.8.0.42 93248 username forozande 93248 unique_id port 93248 terminate_cause User-Request 93248 bytes_out 29579 93248 bytes_in 203665 93248 station_ip 37.129.79.6 93248 port 15728663 93248 nas_port_type Virtual 93248 remote_ip 5.5.5.240 93251 username forozande 93251 unique_id port 93251 terminate_cause User-Request 93251 bytes_out 40846 93251 bytes_in 301916 93251 station_ip 37.129.79.6 93251 port 15728666 93251 nas_port_type Virtual 93251 remote_ip 5.5.5.240 93254 username forozande 93254 unique_id port 93254 terminate_cause User-Request 93254 bytes_out 0 93254 bytes_in 0 93254 station_ip 37.129.79.6 93254 port 15728669 93254 nas_port_type Virtual 93254 remote_ip 5.5.5.240 93257 username shokokian 93257 unique_id port 93257 terminate_cause User-Request 93257 bytes_out 148928 93257 bytes_in 339837 93257 station_ip 31.59.37.34 93257 port 15728672 93257 nas_port_type Virtual 93257 remote_ip 5.5.5.237 93260 username forozande 93260 unique_id port 93260 terminate_cause User-Request 93260 bytes_out 28884 93260 bytes_in 282627 93260 station_ip 83.122.240.78 93260 port 15728675 93260 nas_port_type Virtual 93260 remote_ip 5.5.5.236 93263 username forozande 93263 unique_id port 93263 terminate_cause User-Request 93239 station_ip 113.203.99.163 93239 port 15728658 93239 nas_port_type Virtual 93239 remote_ip 5.5.5.241 93240 username mohammadi 93240 mac 93240 bytes_out 18143 93240 bytes_in 26955 93240 station_ip 113.203.12.95 93240 port 5 93240 unique_id port 93240 remote_ip 10.8.0.62 93241 username forozande 93241 unique_id port 93241 terminate_cause User-Request 93241 bytes_out 63435 93241 bytes_in 1321735 93241 station_ip 113.203.99.163 93241 port 15728659 93241 nas_port_type Virtual 93241 remote_ip 5.5.5.241 93242 username mohammadi 93242 mac 93242 bytes_out 22284 93242 bytes_in 138758 93242 station_ip 113.203.12.95 93242 port 5 93242 unique_id port 93242 remote_ip 10.8.0.62 93244 username alipour 93244 mac 93244 bytes_out 1264545 93244 bytes_in 23249007 93244 station_ip 83.122.160.172 93244 port 5 93244 unique_id port 93244 remote_ip 10.8.0.26 93249 username alinezhad 93249 unique_id port 93249 terminate_cause User-Request 93249 bytes_out 336893 93249 bytes_in 4372074 93249 station_ip 5.202.59.138 93249 port 15728664 93249 nas_port_type Virtual 93249 remote_ip 5.5.5.238 93250 username forozande 93250 unique_id port 93250 terminate_cause User-Request 93250 bytes_out 109385 93250 bytes_in 2551149 93250 station_ip 37.129.79.6 93250 port 15728665 93250 nas_port_type Virtual 93250 remote_ip 5.5.5.240 93252 username forozande 93252 unique_id port 93252 terminate_cause User-Request 93252 bytes_out 42747 93252 bytes_in 609913 93252 station_ip 37.129.79.6 93252 port 15728667 93252 nas_port_type Virtual 93252 remote_ip 5.5.5.240 93253 username forozande 93253 unique_id port 93253 terminate_cause User-Request 93253 bytes_out 23143 93253 bytes_in 128628 93253 station_ip 37.129.79.6 93253 port 15728668 93253 nas_port_type Virtual 93253 remote_ip 5.5.5.240 93256 username forozande 93256 unique_id port 93256 terminate_cause User-Request 93256 bytes_out 8183 93256 bytes_in 35960 93256 station_ip 37.129.79.6 93256 port 15728671 93256 nas_port_type Virtual 93256 remote_ip 5.5.5.240 93258 username forozande 93258 unique_id port 93258 terminate_cause User-Request 93258 bytes_out 21611 93258 bytes_in 136599 93258 station_ip 83.122.240.78 93258 port 15728673 93258 nas_port_type Virtual 93258 remote_ip 5.5.5.236 93266 username alihosseini 93266 mac 93266 bytes_out 0 93266 bytes_in 0 93266 station_ip 5.120.34.220 93266 port 5 93266 unique_id port 93266 remote_ip 10.8.0.46 93272 username forozande 93272 unique_id port 93272 terminate_cause User-Request 93272 bytes_out 239104 93272 bytes_in 6780381 93272 station_ip 37.129.85.182 93272 port 15728684 93272 nas_port_type Virtual 93272 remote_ip 5.5.5.233 93274 username forozande 93274 unique_id port 93274 terminate_cause User-Request 93274 bytes_out 59849 93274 bytes_in 796264 93274 station_ip 37.129.85.182 93274 port 15728686 93274 nas_port_type Virtual 93274 remote_ip 5.5.5.233 93275 username forozande 93275 unique_id port 93275 terminate_cause User-Request 93275 bytes_out 33903 93275 bytes_in 271354 93275 station_ip 37.129.85.182 93275 port 15728687 93275 nas_port_type Virtual 93275 remote_ip 5.5.5.233 93283 username avaanna 93283 unique_id port 93283 terminate_cause User-Request 93283 bytes_out 140487 93283 bytes_in 3112031 93283 station_ip 37.129.99.96 93283 port 15728698 93283 nas_port_type Virtual 93283 remote_ip 5.5.5.244 93287 username mammad 93287 unique_id port 93287 terminate_cause User-Request 93287 bytes_out 705923 93287 bytes_in 9123279 93287 station_ip 5.233.67.199 93287 port 15728695 93287 nas_port_type Virtual 93287 remote_ip 5.5.5.234 93291 username caferibar 93246 remote_ip 5.5.5.240 93247 username asadi 93247 unique_id port 93247 terminate_cause User-Request 93247 bytes_out 69241 93247 bytes_in 603924 93247 station_ip 113.203.11.45 93247 port 15728662 93247 nas_port_type Virtual 93247 remote_ip 5.5.5.239 93255 username forozande 93255 unique_id port 93255 terminate_cause User-Request 93255 bytes_out 50392 93255 bytes_in 704978 93255 station_ip 37.129.79.6 93255 port 15728670 93255 nas_port_type Virtual 93255 remote_ip 5.5.5.240 93259 username alinezhad 93259 unique_id port 93259 terminate_cause User-Request 93259 bytes_out 0 93259 bytes_in 0 93259 station_ip 5.202.59.138 93259 port 15728674 93259 nas_port_type Virtual 93259 remote_ip 5.5.5.238 93261 username forozande 93261 unique_id port 93261 terminate_cause User-Request 93261 bytes_out 36635 93261 bytes_in 58426 93261 station_ip 37.129.85.182 93261 port 15728678 93261 nas_port_type Virtual 93261 remote_ip 5.5.5.233 93262 username forozande 93262 unique_id port 93262 terminate_cause User-Request 93262 bytes_out 4971 93262 bytes_in 21098 93262 station_ip 37.129.85.182 93262 port 15728679 93262 nas_port_type Virtual 93262 remote_ip 5.5.5.233 93264 username caferibar 93264 unique_id port 93264 terminate_cause User-Request 93264 bytes_out 564000 93264 bytes_in 3843170 93264 station_ip 94.24.99.238 93264 port 15728676 93264 nas_port_type Virtual 93264 remote_ip 5.5.5.235 93265 username mammad 93265 unique_id port 93265 terminate_cause User-Request 93265 bytes_out 814588 93265 bytes_in 11061079 93265 station_ip 5.233.67.199 93265 port 15728677 93265 nas_port_type Virtual 93265 remote_ip 5.5.5.234 93268 username mohammadi 93268 mac 93268 bytes_out 0 93268 bytes_in 0 93268 station_ip 113.203.15.235 93268 port 8 93268 unique_id port 93268 remote_ip 10.8.0.62 93269 username forozande 93269 unique_id port 93269 terminate_cause User-Request 93269 bytes_out 38398 93269 bytes_in 204271 93269 station_ip 37.129.85.182 93269 port 15728682 93269 nas_port_type Virtual 93269 remote_ip 5.5.5.233 93270 username forozande 93270 unique_id port 93270 terminate_cause User-Request 93270 bytes_out 0 93270 bytes_in 0 93270 station_ip 37.129.85.182 93270 port 15728683 93270 nas_port_type Virtual 93270 remote_ip 5.5.5.233 93273 username forozande 93273 unique_id port 93273 terminate_cause User-Request 93273 bytes_out 46184 93273 bytes_in 607748 93273 station_ip 37.129.85.182 93273 port 15728685 93273 nas_port_type Virtual 93273 remote_ip 5.5.5.233 93276 username forozande 93276 unique_id port 93276 terminate_cause User-Request 93276 bytes_out 57474 93276 bytes_in 514399 93276 station_ip 37.129.85.182 93276 port 15728688 93276 nas_port_type Virtual 93276 remote_ip 5.5.5.233 93277 username forozande 93277 unique_id port 93277 terminate_cause User-Request 93277 bytes_out 40542 93277 bytes_in 287490 93277 station_ip 37.129.85.182 93277 port 15728689 93277 nas_port_type Virtual 93277 remote_ip 5.5.5.233 93279 username forozande 93279 unique_id port 93279 terminate_cause User-Request 93279 bytes_out 39308 93279 bytes_in 438558 93279 station_ip 37.129.85.182 93279 port 15728691 93279 nas_port_type Virtual 93279 remote_ip 5.5.5.233 93281 username heydari 93281 unique_id port 93281 terminate_cause Lost-Carrier 93281 bytes_out 403290 93281 bytes_in 2750415 93281 station_ip 37.27.31.241 93281 port 15728681 93281 nas_port_type Virtual 93281 remote_ip 5.5.5.232 93282 username forozande 93282 unique_id port 93282 terminate_cause User-Request 93282 bytes_out 29667 93282 bytes_in 202347 93282 station_ip 37.129.85.182 93282 port 15728697 93282 nas_port_type Virtual 93282 remote_ip 5.5.5.233 93263 bytes_out 13777 93263 bytes_in 47017 93263 station_ip 37.129.85.182 93263 port 15728680 93263 nas_port_type Virtual 93263 remote_ip 5.5.5.233 93267 username alihosseini 93267 mac 93267 bytes_out 0 93267 bytes_in 0 93267 station_ip 5.120.34.220 93267 port 9 93267 unique_id port 93267 remote_ip 10.8.0.46 93271 username mohammadi 93271 mac 93271 bytes_out 1097015 93271 bytes_in 19067258 93271 station_ip 113.203.15.235 93271 port 5 93271 unique_id port 93271 remote_ip 10.8.0.62 93278 username forozande 93278 unique_id port 93278 terminate_cause User-Request 93278 bytes_out 34431 93278 bytes_in 341823 93278 station_ip 37.129.85.182 93278 port 15728690 93278 nas_port_type Virtual 93278 remote_ip 5.5.5.233 93280 username forozande 93280 unique_id port 93280 terminate_cause User-Request 93280 bytes_out 47283 93280 bytes_in 687656 93280 station_ip 37.129.85.182 93280 port 15728692 93280 nas_port_type Virtual 93280 remote_ip 5.5.5.233 93285 username forozande 93285 unique_id port 93285 terminate_cause User-Request 93285 bytes_out 31954 93285 bytes_in 247784 93285 station_ip 83.122.233.134 93285 port 15728701 93285 nas_port_type Virtual 93285 remote_ip 5.5.5.229 93286 username forozande 93286 unique_id port 93286 terminate_cause User-Request 93286 bytes_out 46495 93286 bytes_in 545680 93286 station_ip 83.122.233.134 93286 port 15728702 93286 nas_port_type Virtual 93286 remote_ip 5.5.5.229 93289 username alireza1 93289 unique_id port 93289 terminate_cause User-Request 93289 bytes_out 427383 93289 bytes_in 2072352 93289 station_ip 5.119.143.122 93289 port 15728693 93289 nas_port_type Virtual 93289 remote_ip 5.5.5.249 93290 username alinezhad 93290 unique_id port 93290 terminate_cause User-Request 93290 bytes_out 0 93290 bytes_in 0 93290 station_ip 5.202.59.138 93290 port 15728704 93290 nas_port_type Virtual 93290 remote_ip 5.5.5.238 93292 username forozande 93292 unique_id port 93292 terminate_cause User-Request 93292 bytes_out 71586 93292 bytes_in 83821 93292 station_ip 37.129.218.55 93292 port 15728705 93292 nas_port_type Virtual 93292 remote_ip 5.5.5.227 93294 username hamidehfatemi 93294 mac 93294 bytes_out 0 93294 bytes_in 0 93294 station_ip 46.225.213.123 93294 port 5 93294 unique_id port 93294 remote_ip 10.8.0.66 93298 username mohammadi 93298 mac 93298 bytes_out 40654 93298 bytes_in 63380 93298 station_ip 113.203.76.87 93298 port 5 93298 unique_id port 93298 remote_ip 10.8.0.62 93299 username forozande 93299 unique_id port 93299 terminate_cause User-Request 93299 bytes_out 49465 93299 bytes_in 205380 93299 station_ip 37.129.181.215 93299 port 15728708 93299 nas_port_type Virtual 93299 remote_ip 5.5.5.225 93300 username ahmadi 93300 unique_id port 93300 terminate_cause User-Request 93300 bytes_out 26554 93300 bytes_in 184978 93300 station_ip 83.122.100.85 93300 port 15728711 93300 nas_port_type Virtual 93300 remote_ip 5.5.5.223 93302 username madadi2 93302 unique_id port 93302 terminate_cause Lost-Carrier 93302 bytes_out 380260 93302 bytes_in 3592199 93302 station_ip 5.120.114.48 93302 port 15728709 93302 nas_port_type Virtual 93302 remote_ip 5.5.5.224 93305 username aminvpn 93305 unique_id port 93305 terminate_cause Lost-Carrier 93305 bytes_out 30312 93305 bytes_in 182779 93305 station_ip 5.233.58.220 93305 port 15728712 93305 nas_port_type Virtual 93305 remote_ip 5.5.5.222 93312 username alihosseini 93312 mac 93312 bytes_out 0 93312 bytes_in 0 93312 station_ip 5.119.66.9 93312 port 8 93312 unique_id port 93312 remote_ip 10.8.0.46 93314 username amirabbas 93314 unique_id port 93284 username caferibar 93284 unique_id port 93284 terminate_cause User-Request 93284 bytes_out 1129817 93284 bytes_in 12313531 93284 station_ip 5.120.147.77 93284 port 15728700 93284 nas_port_type Virtual 93284 remote_ip 5.5.5.230 93288 username caferibar 93288 unique_id port 93288 terminate_cause User-Request 93288 bytes_out 44165 93288 bytes_in 663045 93288 station_ip 113.203.62.175 93288 port 15728703 93288 nas_port_type Virtual 93288 remote_ip 5.5.5.228 93293 username amirabbas 93293 unique_id port 93293 terminate_cause User-Request 93293 bytes_out 39950855 93293 bytes_in 1090453380 93293 station_ip 31.56.113.104 93293 port 15728656 93293 nas_port_type Virtual 93293 remote_ip 5.5.5.243 93296 username caferibar 93296 unique_id port 93296 terminate_cause User-Request 93296 bytes_out 7415298 93296 bytes_in 8159758 93296 station_ip 37.27.31.24 93296 port 15728706 93296 nas_port_type Virtual 93296 remote_ip 5.5.5.226 93297 username amirabbas 93297 unique_id port 93297 terminate_cause User-Request 93297 bytes_out 702632 93297 bytes_in 9467160 93297 station_ip 31.56.113.104 93297 port 15728707 93297 nas_port_type Virtual 93297 remote_ip 5.5.5.243 93301 username aminvpn 93301 mac 93301 bytes_out 376086 93301 bytes_in 625636 93301 station_ip 37.129.98.122 93301 port 5 93301 unique_id port 93301 remote_ip 10.8.0.6 93303 username alireza1 93303 unique_id port 93303 terminate_cause Lost-Carrier 93303 bytes_out 135873 93303 bytes_in 353606 93303 station_ip 5.119.143.122 93303 port 15728710 93303 nas_port_type Virtual 93303 remote_ip 5.5.5.249 93304 username mammad 93304 unique_id port 93304 terminate_cause User-Request 93304 bytes_out 373004 93304 bytes_in 3673400 93304 station_ip 5.233.67.199 93304 port 15728714 93304 nas_port_type Virtual 93304 remote_ip 5.5.5.234 93306 username alinezhad 93306 unique_id port 93306 terminate_cause User-Request 93306 bytes_out 11356 93306 bytes_in 28366 93306 station_ip 5.202.59.138 93306 port 15728715 93306 nas_port_type Virtual 93306 remote_ip 5.5.5.238 93313 username aminvpn 93313 mac 93313 bytes_out 0 93313 bytes_in 0 93313 station_ip 83.123.233.7 93313 port 5 93313 unique_id port 93313 remote_ip 10.8.0.6 93315 username mammad 93315 unique_id port 93315 terminate_cause User-Request 93315 bytes_out 2391269 93315 bytes_in 40439676 93315 station_ip 5.233.67.199 93315 port 15728719 93315 nas_port_type Virtual 93315 remote_ip 5.5.5.234 93316 username madadi2 93316 unique_id port 93316 terminate_cause Lost-Carrier 93316 bytes_out 175268 93316 bytes_in 510381 93316 station_ip 5.120.119.58 93316 port 15728722 93316 nas_port_type Virtual 93316 remote_ip 5.5.5.217 93321 username amirabbas 93321 unique_id port 93321 terminate_cause User-Request 93321 bytes_out 8589684 93321 bytes_in 178426294 93321 station_ip 31.56.153.20 93321 port 15728727 93321 nas_port_type Virtual 93321 remote_ip 5.5.5.220 93326 username sadegh 93326 unique_id port 93326 terminate_cause Lost-Carrier 93326 bytes_out 2580724 93326 bytes_in 54914307 93326 station_ip 5.120.147.77 93326 port 15728730 93326 nas_port_type Virtual 93326 remote_ip 5.5.5.212 93335 username bcboard 93335 unique_id port 93335 terminate_cause User-Request 93335 bytes_out 3550671 93335 bytes_in 88621552 93335 station_ip 37.129.100.230 93335 port 15728734 93335 nas_port_type Virtual 93335 remote_ip 5.5.5.210 93337 username bcboard 93337 unique_id port 93337 terminate_cause User-Request 93337 bytes_out 572699 93337 bytes_in 4583021 93337 station_ip 37.129.100.230 93337 port 15728738 93337 nas_port_type Virtual 93337 remote_ip 5.5.5.210 93348 username arman 93348 unique_id port 93291 unique_id port 93291 terminate_cause Lost-Carrier 93291 bytes_out 354709 93291 bytes_in 1273891 93291 station_ip 94.24.103.126 93291 port 15728699 93291 nas_port_type Virtual 93291 remote_ip 5.5.5.231 93295 username khalili 93295 unique_id port 93295 terminate_cause Lost-Carrier 93295 bytes_out 3444965 93295 bytes_in 13906712 93295 station_ip 5.119.67.205 93295 port 15728657 93295 nas_port_type Virtual 93295 remote_ip 5.5.5.242 93307 username ahmadipour 93307 unique_id port 93307 terminate_cause Lost-Carrier 93307 bytes_out 15112472 93307 bytes_in 18732372 93307 station_ip 113.203.28.30 93307 port 15728718 93307 nas_port_type Virtual 93307 remote_ip 5.5.5.219 93308 username madadi2 93308 unique_id port 93308 terminate_cause Lost-Carrier 93308 bytes_out 513479 93308 bytes_in 1013351 93308 station_ip 5.119.207.163 93308 port 15728713 93308 nas_port_type Virtual 93308 remote_ip 5.5.5.221 93309 username alireza1 93309 unique_id port 93309 terminate_cause Lost-Carrier 93309 bytes_out 70028 93309 bytes_in 305417 93309 station_ip 5.119.143.122 93309 port 15728717 93309 nas_port_type Virtual 93309 remote_ip 5.5.5.249 93310 username forozande 93310 unique_id port 93310 terminate_cause User-Request 93310 bytes_out 50747 93310 bytes_in 88419 93310 station_ip 37.129.31.90 93310 port 15728720 93310 nas_port_type Virtual 93310 remote_ip 5.5.5.218 93311 username forozande 93311 unique_id port 93311 terminate_cause User-Request 93311 bytes_out 55835 93311 bytes_in 710765 93311 station_ip 37.129.31.90 93311 port 15728721 93311 nas_port_type Virtual 93311 remote_ip 5.5.5.218 93317 username hashtadani 93317 unique_id port 93317 terminate_cause Lost-Carrier 93317 bytes_out 2766471 93317 bytes_in 30630838 93317 station_ip 37.129.120.237 93317 port 15728726 93317 nas_port_type Virtual 93317 remote_ip 5.5.5.213 93323 username alihosseini 93323 mac 93323 bytes_out 1181797 93323 bytes_in 21173410 93323 station_ip 5.120.160.240 93323 port 5 93323 unique_id port 93323 remote_ip 10.8.0.46 93327 username alihosseini 93327 mac 93327 bytes_out 0 93327 bytes_in 0 93327 station_ip 5.120.160.240 93327 port 5 93327 unique_id port 93327 remote_ip 10.8.0.46 93329 username aminvpn 93329 unique_id port 93329 terminate_cause Lost-Carrier 93329 bytes_out 1092576 93329 bytes_in 24341185 93329 station_ip 5.160.114.163 93329 port 15728732 93329 nas_port_type Virtual 93329 remote_ip 5.5.5.211 93330 username alihosseini 93330 mac 93330 bytes_out 22449 93330 bytes_in 47499 93330 station_ip 5.120.160.240 93330 port 5 93330 unique_id port 93330 remote_ip 10.8.0.46 93331 username aminvpn 93331 mac 93331 bytes_out 265700 93331 bytes_in 691639 93331 station_ip 83.123.204.23 93331 port 5 93331 unique_id port 93331 remote_ip 10.8.0.6 93333 username alinezhad 93333 unique_id port 93333 terminate_cause User-Request 93333 bytes_out 63625 93333 bytes_in 970661 93333 station_ip 5.202.59.138 93333 port 15728733 93333 nas_port_type Virtual 93333 remote_ip 5.5.5.238 93334 username hashtadani 93334 unique_id port 93334 terminate_cause Lost-Carrier 93334 bytes_out 14296982 93334 bytes_in 196546381 93334 station_ip 37.129.120.237 93334 port 15728731 93334 nas_port_type Virtual 93334 remote_ip 5.5.5.213 93336 username alireza1 93336 unique_id port 93336 terminate_cause User-Request 93336 bytes_out 259712 93336 bytes_in 860773 93336 station_ip 5.120.62.89 93336 port 15728737 93336 nas_port_type Virtual 93336 remote_ip 5.5.5.207 93338 username ahmadi 93338 unique_id port 93338 terminate_cause User-Request 93338 bytes_out 41152 93338 bytes_in 290442 93314 terminate_cause User-Request 93314 bytes_out 6559779 93314 bytes_in 144723863 93314 station_ip 31.56.153.20 93314 port 15728716 93314 nas_port_type Virtual 93314 remote_ip 5.5.5.220 93318 username caferibar 93318 kill_reason Relative expiration date has reached 93318 unique_id port 93318 bytes_out 0 93318 bytes_in 0 93318 station_ip 5.120.147.77 93318 port 15728728 93318 nas_port_type Virtual 93319 username caferibar 93319 kill_reason Relative expiration date has reached 93319 unique_id port 93319 bytes_out 0 93319 bytes_in 0 93319 station_ip 5.120.147.77 93319 port 15728729 93319 nas_port_type Virtual 93320 username mahyaarabpour 93320 mac 93320 bytes_out 461701 93320 bytes_in 5979075 93320 station_ip 5.120.5.189 93320 port 5 93320 unique_id port 93320 remote_ip 10.8.0.54 188676 mac 188676 bytes_out 0 188676 bytes_in 0 188676 station_ip 5.120.128.95 188676 port 391 188676 unique_id port 188676 remote_ip 10.8.0.250 188677 username sekonji0496 188677 mac 93324 username amir 93324 unique_id port 93324 terminate_cause Lost-Carrier 93324 bytes_out 6381119 93324 bytes_in 9550100 93324 station_ip 46.225.232.80 93324 port 15728724 93324 nas_port_type Virtual 93324 remote_ip 5.5.5.215 93325 username alihosseini 93325 mac 93325 bytes_out 0 93325 bytes_in 0 93325 station_ip 5.120.160.240 93325 port 5 93325 unique_id port 93325 remote_ip 10.8.0.46 93328 username alihosseini 93328 mac 93328 bytes_out 0 93328 bytes_in 0 93328 station_ip 5.120.160.240 93328 port 9 93328 unique_id port 93328 remote_ip 10.8.1.34 93332 username heydari 93332 unique_id port 93332 terminate_cause Lost-Carrier 93332 bytes_out 205166 93332 bytes_in 1571146 93332 station_ip 188.245.88.31 93332 port 15728723 93332 nas_port_type Virtual 93332 remote_ip 5.5.5.216 93343 username alinezhad 93343 unique_id port 93343 terminate_cause User-Request 93343 bytes_out 32490 93343 bytes_in 234233 93343 station_ip 5.202.59.138 93343 port 15728748 93343 nas_port_type Virtual 93343 remote_ip 5.5.5.238 93346 username mirzaei 93346 kill_reason Another user logged on this global unique id 93346 mac 93346 bytes_out 0 93346 bytes_in 0 93346 station_ip 5.119.222.239 93346 port 11 93346 unique_id port 93346 remote_ip 10.8.1.14 93360 username alireza1 93360 unique_id port 93360 terminate_cause User-Request 93360 bytes_out 235668 93360 bytes_in 650332 93360 station_ip 5.120.62.89 93360 port 15728757 93360 nas_port_type Virtual 93360 remote_ip 5.5.5.207 93367 username aminvpn 93367 mac 93367 bytes_out 0 93367 bytes_in 0 93367 station_ip 113.203.40.36 93367 port 8 93367 unique_id port 93367 remote_ip 10.8.0.6 93369 username madadi2 93369 unique_id port 93369 terminate_cause Lost-Carrier 93369 bytes_out 1043063 93369 bytes_in 18074519 93369 station_ip 5.119.27.173 93369 port 15728760 93369 nas_port_type Virtual 93369 remote_ip 5.5.5.198 93373 username mohammadi 93373 mac 93373 bytes_out 0 93373 bytes_in 0 93373 station_ip 113.203.5.51 93373 port 5 93373 unique_id port 93373 remote_ip 10.8.0.62 93375 username forozande 93375 unique_id port 93375 terminate_cause User-Request 93375 bytes_out 143266 93375 bytes_in 226316 93375 station_ip 83.123.150.22 93375 port 15728772 93375 nas_port_type Virtual 93375 remote_ip 5.5.5.192 93382 username aminvpn 93382 unique_id port 93382 terminate_cause Lost-Carrier 93382 bytes_out 1438535 93382 bytes_in 14999474 93382 station_ip 5.119.143.0 93382 port 15728765 93382 nas_port_type Virtual 93382 remote_ip 5.5.5.195 93386 username ahmadipour 93386 unique_id port 188677 bytes_out 0 93338 station_ip 37.129.112.135 93338 port 15728743 93338 nas_port_type Virtual 93338 remote_ip 5.5.5.204 93339 username madadi2 93339 unique_id port 93339 terminate_cause Lost-Carrier 93339 bytes_out 44855 93339 bytes_in 224228 93339 station_ip 5.119.51.115 93339 port 15728744 93339 nas_port_type Virtual 93339 remote_ip 5.5.5.203 93340 username alinezhad 93340 unique_id port 93340 terminate_cause User-Request 93340 bytes_out 0 93340 bytes_in 0 93340 station_ip 5.202.59.138 93340 port 15728746 93340 nas_port_type Virtual 93340 remote_ip 5.5.5.238 93341 username alinezhad 93341 unique_id port 93341 terminate_cause User-Request 93341 bytes_out 0 93341 bytes_in 0 93341 station_ip 5.202.59.138 93341 port 15728747 93341 nas_port_type Virtual 93341 remote_ip 5.5.5.238 93342 username hashtadani 93342 unique_id port 93342 terminate_cause Lost-Carrier 93342 bytes_out 3186803 93342 bytes_in 52042246 93342 station_ip 37.129.120.237 93342 port 15728739 93342 nas_port_type Virtual 93342 remote_ip 5.5.5.213 93344 username madadi2 93344 unique_id port 93344 terminate_cause Lost-Carrier 93344 bytes_out 35705 93344 bytes_in 174513 93344 station_ip 5.120.0.242 93344 port 15728745 93344 nas_port_type Virtual 93344 remote_ip 5.5.5.202 93345 username tahmasebi 93345 unique_id port 93345 terminate_cause User-Request 93345 bytes_out 6758756 93345 bytes_in 217732799 93345 station_ip 5.119.122.142 93345 port 15728740 93345 nas_port_type Virtual 93345 remote_ip 5.5.5.206 93347 username alinezhad 93347 unique_id port 93347 terminate_cause User-Request 93347 bytes_out 0 93347 bytes_in 0 93347 station_ip 5.202.2.67 93347 port 15728753 93347 nas_port_type Virtual 93347 remote_ip 5.5.5.201 93349 username mahbobeh 93349 unique_id port 93349 terminate_cause Lost-Carrier 93349 bytes_out 1578646 93349 bytes_in 25467003 93349 station_ip 83.123.220.75 93349 port 15728741 93349 nas_port_type Virtual 93349 remote_ip 5.5.5.205 93351 username mohammadi 93351 mac 93351 bytes_out 0 93351 bytes_in 0 93351 station_ip 113.203.86.199 93351 port 9 93351 unique_id port 93351 remote_ip 10.8.0.62 93352 username aminvpn 93352 mac 93352 bytes_out 1151885 93352 bytes_in 3327696 93352 station_ip 37.129.182.23 93352 port 8 93352 unique_id port 93352 remote_ip 10.8.0.6 93353 username alireza1 93353 unique_id port 93353 terminate_cause User-Request 93353 bytes_out 2148954 93353 bytes_in 7063826 93353 station_ip 5.120.62.89 93353 port 15728742 93353 nas_port_type Virtual 93353 remote_ip 5.5.5.207 93355 username alirezazamani 93355 kill_reason Relative expiration date has reached 93355 unique_id port 93355 bytes_out 0 93355 bytes_in 0 93355 station_ip 83.122.217.218 93355 port 15728756 93355 nas_port_type Virtual 93357 username mammad 93357 unique_id port 93357 terminate_cause User-Request 93357 bytes_out 3247657 93357 bytes_in 82550200 93357 station_ip 5.233.67.199 93357 port 15728752 93357 nas_port_type Virtual 93357 remote_ip 5.5.5.234 93359 username farhad 93359 unique_id port 93359 terminate_cause Lost-Carrier 93359 bytes_out 11682166 93359 bytes_in 104555746 93359 station_ip 5.119.19.167 93359 port 15728736 93359 nas_port_type Virtual 93359 remote_ip 5.5.5.208 93364 username sadegh 93364 unique_id port 93364 terminate_cause User-Request 93364 bytes_out 174712 93364 bytes_in 1154032 93364 station_ip 5.119.24.169 93364 port 15728764 93364 nas_port_type Virtual 93364 remote_ip 5.5.5.196 93365 username alireza1 93365 unique_id port 93365 terminate_cause User-Request 93365 bytes_out 124007 93365 bytes_in 324131 93365 station_ip 5.120.62.89 93365 port 15728762 93365 nas_port_type Virtual 93348 terminate_cause User-Request 93348 bytes_out 0 93348 bytes_in 0 93348 station_ip 5.120.154.132 93348 port 15728754 93348 nas_port_type Virtual 93348 remote_ip 5.5.5.200 93350 username alihosseini 93350 mac 93350 bytes_out 678903 93350 bytes_in 4339480 93350 station_ip 5.119.232.206 93350 port 5 93350 unique_id port 93350 remote_ip 10.8.0.46 93354 username caferibar 93354 kill_reason Relative expiration date has reached 93354 unique_id port 93354 bytes_out 0 93354 bytes_in 0 93354 station_ip 83.122.217.218 93354 port 15728755 93354 nas_port_type Virtual 93356 username caferibar 93356 kill_reason Relative expiration date has reached 93356 unique_id port 93356 bytes_out 0 93356 bytes_in 0 93356 station_ip 83.122.217.218 93356 port 15728758 93356 nas_port_type Virtual 93358 username arabpour 93358 unique_id port 93358 terminate_cause User-Request 93358 bytes_out 475243 93358 bytes_in 14956715 93358 station_ip 86.55.129.38 93358 port 15728759 93358 nas_port_type Virtual 93358 remote_ip 5.5.5.199 93361 username mohammadi 93361 mac 93361 bytes_out 0 93361 bytes_in 0 93361 station_ip 113.203.110.91 93361 port 5 93361 unique_id port 93361 remote_ip 10.8.0.62 93362 username forozande 93362 unique_id port 93362 terminate_cause User-Request 93362 bytes_out 69998 93362 bytes_in 476660 93362 station_ip 83.123.225.223 93362 port 15728761 93362 nas_port_type Virtual 93362 remote_ip 5.5.5.197 93363 username caferibar 93363 kill_reason Relative expiration date has reached 93363 unique_id port 93363 bytes_out 0 93363 bytes_in 0 93363 station_ip 5.119.24.169 93363 port 15728763 93363 nas_port_type Virtual 93368 username morteza 93368 kill_reason Another user logged on this global unique id 93368 mac 93368 bytes_out 0 93368 bytes_in 0 93368 station_ip 113.203.96.250 93368 port 5 93368 unique_id port 93368 remote_ip 10.8.0.42 93370 username morteza 93370 mac 93370 bytes_out 0 93370 bytes_in 0 93370 station_ip 113.203.96.250 93370 port 5 93370 unique_id port 93372 username mammad 93372 unique_id port 93372 terminate_cause User-Request 93372 bytes_out 798953 93372 bytes_in 7349870 93372 station_ip 5.233.67.199 93372 port 15728770 93372 nas_port_type Virtual 93372 remote_ip 5.5.5.234 93374 username ahmadi 93374 unique_id port 93374 terminate_cause User-Request 93374 bytes_out 174125 93374 bytes_in 3559618 93374 station_ip 37.129.112.135 93374 port 15728771 93374 nas_port_type Virtual 93374 remote_ip 5.5.5.204 93376 username hashtadani 93376 unique_id port 93376 terminate_cause Lost-Carrier 93376 bytes_out 93892 93376 bytes_in 822156 93376 station_ip 5.202.61.214 93376 port 15728767 93376 nas_port_type Virtual 93376 remote_ip 5.5.5.194 93377 username mahbobeh 93377 unique_id port 93377 terminate_cause Lost-Carrier 93377 bytes_out 223983 93377 bytes_in 1206897 93377 station_ip 83.123.220.75 93377 port 15728766 93377 nas_port_type Virtual 93377 remote_ip 5.5.5.205 93381 username forozande 93381 unique_id port 93381 terminate_cause User-Request 93381 bytes_out 38634 93381 bytes_in 409384 93381 station_ip 83.123.86.96 93381 port 15728775 93381 nas_port_type Virtual 93381 remote_ip 5.5.5.189 93383 username morteza 93383 mac 93383 bytes_out 28799673 93383 bytes_in 42347365 93383 station_ip 113.203.86.142 93383 port 8 93383 unique_id port 93383 remote_ip 10.8.0.42 93384 username mohammadi 93384 mac 93384 bytes_out 1010747 93384 bytes_in 5405109 93384 station_ip 113.203.5.51 93384 port 5 93384 unique_id port 93384 remote_ip 10.8.0.62 93385 username amirabbas 93385 unique_id port 93385 terminate_cause User-Request 93365 remote_ip 5.5.5.207 93366 username khalili 93366 unique_id port 93366 terminate_cause Lost-Carrier 93366 bytes_out 3393036 93366 bytes_in 29786051 93366 station_ip 5.119.199.70 93366 port 15728735 93366 nas_port_type Virtual 93366 remote_ip 5.5.5.209 93371 username mirzaei 93371 kill_reason Another user logged on this global unique id 93371 mac 93371 bytes_out 0 93371 bytes_in 0 93371 station_ip 5.119.222.239 93371 port 11 93371 unique_id port 93378 username mohammadi 93378 mac 93378 bytes_out 52134 93378 bytes_in 182702 93378 station_ip 113.203.5.51 93378 port 5 93378 unique_id port 93378 remote_ip 10.8.0.62 93379 username alireza1 93379 unique_id port 93379 terminate_cause Lost-Carrier 93379 bytes_out 72165 93379 bytes_in 544240 93379 station_ip 5.119.80.190 93379 port 15728773 93379 nas_port_type Virtual 93379 remote_ip 5.5.5.191 188677 bytes_in 0 188677 station_ip 83.123.0.241 188677 port 391 188677 unique_id port 188677 remote_ip 10.8.0.62 188678 username zahra1101 188678 kill_reason Maximum check online fails reached 188678 mac 188678 bytes_out 0 93389 username mirzaei 93389 mac 93389 bytes_out 0 93389 bytes_in 0 93389 station_ip 5.119.222.239 93389 port 11 93389 unique_id port 93391 username mirzaei 93391 mac 93391 bytes_out 0 93391 bytes_in 0 93391 station_ip 5.119.150.250 93391 port 9 93391 unique_id port 93391 remote_ip 10.8.1.14 93393 username mirzaei 93393 mac 93393 bytes_out 0 93393 bytes_in 0 93393 station_ip 5.119.150.250 93393 port 9 93393 unique_id port 93393 remote_ip 10.8.1.14 93395 username morteza 93395 mac 93395 bytes_out 0 93395 bytes_in 0 93395 station_ip 113.203.73.86 93395 port 5 93395 unique_id port 93395 remote_ip 10.8.0.42 93396 username amirabbas 93396 unique_id port 93396 terminate_cause User-Request 93396 bytes_out 6853132 93396 bytes_in 127584023 93396 station_ip 31.56.154.15 93396 port 15728780 93396 nas_port_type Virtual 93396 remote_ip 5.5.5.193 93398 username mohammadi 93398 mac 93398 bytes_out 415654 93398 bytes_in 828888 93398 station_ip 113.203.5.51 93398 port 5 93398 unique_id port 93398 remote_ip 10.8.0.62 93405 username alihosseini 93405 mac 93405 bytes_out 0 93405 bytes_in 0 93405 station_ip 5.119.54.44 93405 port 9 93405 unique_id port 93405 remote_ip 10.8.0.46 93408 username mohammadi 93408 mac 93408 bytes_out 0 93408 bytes_in 0 93408 station_ip 113.203.5.51 93408 port 8 93408 unique_id port 93408 remote_ip 10.8.0.62 93409 username mammad 93409 unique_id port 93409 terminate_cause User-Request 93409 bytes_out 1229659 93409 bytes_in 23146441 93409 station_ip 5.233.67.199 93409 port 15728785 93409 nas_port_type Virtual 93409 remote_ip 5.5.5.234 93410 username alihosseini 93410 kill_reason Another user logged on this global unique id 93410 mac 93410 bytes_out 0 93410 bytes_in 0 93410 station_ip 5.119.10.27 93410 port 9 93410 unique_id port 93410 remote_ip 10.8.1.34 93411 username mirzaei 93411 mac 93411 bytes_out 0 93411 bytes_in 0 93411 station_ip 5.119.150.250 93411 port 5 93411 unique_id port 93411 remote_ip 10.8.0.14 93412 username morteza 93412 mac 93412 bytes_out 1458847 93412 bytes_in 11628411 93412 station_ip 113.203.73.86 93412 port 9 93412 unique_id port 93412 remote_ip 10.8.0.42 93413 username alihosseini 93413 mac 93413 bytes_out 0 93413 bytes_in 0 93413 station_ip 5.119.10.27 93413 port 10 93413 unique_id port 93413 remote_ip 10.8.0.46 93417 username mirzaei 188678 bytes_in 0 93385 bytes_out 23786745 93385 bytes_in 561656532 93385 station_ip 31.56.154.15 93385 port 15728769 93385 nas_port_type Virtual 93385 remote_ip 5.5.5.193 93387 username alireza1 93387 unique_id port 93387 terminate_cause Lost-Carrier 93387 bytes_out 74503 93387 bytes_in 314510 93387 station_ip 5.119.80.190 93387 port 15728776 93387 nas_port_type Virtual 93387 remote_ip 5.5.5.191 93388 username forozande 93388 unique_id port 93388 terminate_cause User-Request 93388 bytes_out 41852 93388 bytes_in 465393 93388 station_ip 83.123.184.12 93388 port 15728779 93388 nas_port_type Virtual 93388 remote_ip 5.5.5.186 93392 username mohammadi 93392 mac 93392 bytes_out 1239584 93392 bytes_in 307175 93392 station_ip 113.203.5.51 93392 port 5 93392 unique_id port 93392 remote_ip 10.8.0.62 93394 username mirzaei 93394 mac 93394 bytes_out 0 93394 bytes_in 0 93394 station_ip 5.119.150.250 93394 port 11 93394 unique_id port 93394 remote_ip 10.8.1.14 93399 username sadegh 93399 unique_id port 93399 terminate_cause Lost-Carrier 93399 bytes_out 3583493 93399 bytes_in 69763234 93399 station_ip 5.119.99.154 93399 port 15728778 93399 nas_port_type Virtual 93399 remote_ip 5.5.5.187 93400 username mirzaei 93400 mac 93400 bytes_out 13325 93400 bytes_in 23606 93400 station_ip 5.119.150.250 93400 port 9 93400 unique_id port 93400 remote_ip 10.8.1.14 93402 username madadi2 93402 unique_id port 93402 terminate_cause Lost-Carrier 93402 bytes_out 245270 93402 bytes_in 1645643 93402 station_ip 5.120.114.187 93402 port 15728781 93402 nas_port_type Virtual 93402 remote_ip 5.5.5.185 93406 username mohammadi 93406 mac 93406 bytes_out 0 93406 bytes_in 0 93406 station_ip 113.203.5.51 93406 port 8 93406 unique_id port 93406 remote_ip 10.8.0.62 93415 username alihosseini 93415 mac 93415 bytes_out 0 93415 bytes_in 0 93415 station_ip 5.119.10.27 93415 port 9 93415 unique_id port 93415 remote_ip 10.8.1.34 93422 username alihosseini 93422 mac 93422 bytes_out 0 93422 bytes_in 0 93422 station_ip 5.119.10.27 93422 port 5 93422 unique_id port 93422 remote_ip 10.8.0.46 93425 username alihosseini 93425 mac 93425 bytes_out 0 93425 bytes_in 0 93425 station_ip 5.119.10.27 93425 port 9 93425 unique_id port 93425 remote_ip 10.8.0.46 93431 username ahmadi 93431 unique_id port 93431 terminate_cause Lost-Carrier 93431 bytes_out 483102 93431 bytes_in 2492159 93431 station_ip 37.129.112.135 93431 port 15728788 93431 nas_port_type Virtual 93431 remote_ip 5.5.5.204 93436 username alihosseini 93436 mac 93436 bytes_out 0 93436 bytes_in 0 93436 station_ip 5.119.10.27 93436 port 10 93436 unique_id port 93436 remote_ip 10.8.0.46 93439 username asadi 93439 kill_reason Another user logged on this global unique id 93439 mac 93439 bytes_out 0 93439 bytes_in 0 93439 station_ip 113.203.121.154 93439 port 8 93439 unique_id port 93443 username morteza 93443 mac 93443 bytes_out 0 93443 bytes_in 0 93443 station_ip 113.203.118.162 93443 port 10 93443 unique_id port 93443 remote_ip 10.8.0.42 93448 username mammad 93448 unique_id port 93448 terminate_cause User-Request 93448 bytes_out 1991450 93448 bytes_in 26521717 93448 station_ip 5.233.56.194 93448 port 15728794 93448 nas_port_type Virtual 93448 remote_ip 5.5.5.178 93450 username mohammadi 93450 mac 93450 bytes_out 0 93450 bytes_in 0 93450 station_ip 113.203.5.51 93450 port 5 93450 unique_id port 93450 remote_ip 10.8.0.62 93452 username alihosseini 93452 mac 93452 bytes_out 0 93386 terminate_cause Lost-Carrier 93386 bytes_out 235536 93386 bytes_in 4266085 93386 station_ip 113.203.97.62 93386 port 15728777 93386 nas_port_type Virtual 93386 remote_ip 5.5.5.188 93390 username mohammadi 93390 mac 93390 bytes_out 1258017 93390 bytes_in 17541924 93390 station_ip 113.203.5.51 93390 port 5 93390 unique_id port 93390 remote_ip 10.8.0.62 93397 username mammad 93397 unique_id port 93397 terminate_cause User-Request 93397 bytes_out 973470 93397 bytes_in 14074001 93397 station_ip 5.233.67.199 93397 port 15728782 93397 nas_port_type Virtual 93397 remote_ip 5.5.5.234 93401 username arman 93401 unique_id port 93401 terminate_cause Lost-Carrier 93401 bytes_out 1753918 93401 bytes_in 32350933 93401 station_ip 5.120.154.132 93401 port 15728783 93401 nas_port_type Virtual 93401 remote_ip 5.5.5.200 93403 username sobhan 93403 unique_id port 93403 terminate_cause Lost-Carrier 93403 bytes_out 1896186 93403 bytes_in 47842473 93403 station_ip 5.120.116.168 93403 port 15728784 93403 nas_port_type Virtual 93403 remote_ip 5.5.5.184 93404 username ahmadi 93404 unique_id port 93404 terminate_cause User-Request 93404 bytes_out 54220 93404 bytes_in 846463 93404 station_ip 37.129.112.135 93404 port 15728786 93404 nas_port_type Virtual 93404 remote_ip 5.5.5.204 93407 username alihosseini 93407 mac 93407 bytes_out 0 93407 bytes_in 0 93407 station_ip 5.119.235.54 93407 port 10 93407 unique_id port 93407 remote_ip 10.8.0.46 93414 username morteza 93414 kill_reason Another user logged on this global unique id 93414 mac 93414 bytes_out 0 93414 bytes_in 0 93414 station_ip 113.203.73.86 93414 port 9 93414 unique_id port 93416 username alihosseini 93416 mac 93416 bytes_out 0 93416 bytes_in 0 93416 station_ip 5.119.10.27 93416 port 10 93416 unique_id port 93416 remote_ip 10.8.0.46 93419 username mohammadi 93419 mac 93419 bytes_out 0 93419 bytes_in 0 93419 station_ip 113.203.5.51 93419 port 8 93419 unique_id port 93419 remote_ip 10.8.0.62 93420 username mirzaei 93420 mac 93420 bytes_out 0 93420 bytes_in 0 93420 station_ip 5.119.192.231 93420 port 9 93420 unique_id port 93420 remote_ip 10.8.1.14 93423 username alihosseini 93423 mac 93423 bytes_out 0 93423 bytes_in 0 93423 station_ip 5.119.10.27 93423 port 5 93423 unique_id port 93423 remote_ip 10.8.0.46 93424 username alihosseini 93424 mac 93424 bytes_out 0 93424 bytes_in 0 93424 station_ip 5.119.10.27 93424 port 5 93424 unique_id port 93424 remote_ip 10.8.0.46 93426 username mirzaei 93426 mac 93426 bytes_out 0 93426 bytes_in 0 93426 station_ip 5.114.186.183 93426 port 8 93426 unique_id port 93426 remote_ip 10.8.0.14 93429 username alihosseini 93429 mac 93429 bytes_out 0 93429 bytes_in 0 93429 station_ip 5.119.10.27 93429 port 9 93429 unique_id port 93429 remote_ip 10.8.1.34 93430 username mohammadi 93430 mac 93430 bytes_out 0 93430 bytes_in 0 93430 station_ip 113.203.5.51 93430 port 5 93430 unique_id port 93430 remote_ip 10.8.0.62 93433 username ahmadipour 93433 unique_id port 93433 terminate_cause Lost-Carrier 93433 bytes_out 720486 93433 bytes_in 16129925 93433 station_ip 113.203.121.178 93433 port 15728792 93433 nas_port_type Virtual 93433 remote_ip 5.5.5.180 93434 username asadi 93434 kill_reason Another user logged on this global unique id 93434 mac 93434 bytes_out 0 93434 bytes_in 0 93434 station_ip 113.203.121.154 93434 port 8 93434 unique_id port 93437 username asadi 93437 kill_reason Another user logged on this global unique id 93417 mac 93417 bytes_out 146547 93417 bytes_in 978037 93417 station_ip 5.112.216.213 93417 port 5 93417 unique_id port 93417 remote_ip 10.8.0.14 93418 username safarpour 93418 unique_id port 93418 terminate_cause User-Request 93418 bytes_out 1482615 93418 bytes_in 21052071 93418 station_ip 83.122.43.188 93418 port 15728789 93418 nas_port_type Virtual 93418 remote_ip 5.5.5.183 93421 username alihosseini 93421 mac 93421 bytes_out 0 93421 bytes_in 0 93421 station_ip 5.119.10.27 93421 port 5 93421 unique_id port 93421 remote_ip 10.8.0.46 93427 username asadi 93427 unique_id port 93427 terminate_cause User-Request 93427 bytes_out 225206 93427 bytes_in 810480 93427 station_ip 113.203.121.154 93427 port 15728790 93427 nas_port_type Virtual 93427 remote_ip 5.5.5.182 93428 username mirzaei 93428 kill_reason Another user logged on this global unique id 93428 mac 93428 bytes_out 0 93428 bytes_in 0 93428 station_ip 5.114.186.183 93428 port 9 93428 unique_id port 93428 remote_ip 10.8.0.14 93432 username asadi 93432 kill_reason Another user logged on this global unique id 93432 mac 93432 bytes_out 0 93432 bytes_in 0 93432 station_ip 113.203.121.154 93432 port 8 93432 unique_id port 93432 remote_ip 10.8.0.22 93435 username alihosseini 93435 mac 93435 bytes_out 0 93435 bytes_in 0 93435 station_ip 5.119.10.27 93435 port 9 93435 unique_id port 93435 remote_ip 10.8.1.34 93438 username mirzaei 93438 mac 93438 bytes_out 6263 93438 bytes_in 7393 93438 station_ip 5.114.186.183 93438 port 10 93438 unique_id port 93438 remote_ip 10.8.0.14 93440 username mohammadi 93440 mac 93440 bytes_out 0 93440 bytes_in 0 93440 station_ip 113.203.5.51 93440 port 5 93440 unique_id port 93440 remote_ip 10.8.0.62 93441 username alihosseini 93441 mac 93441 bytes_out 0 93441 bytes_in 0 93441 station_ip 5.119.10.27 93441 port 5 93441 unique_id port 93441 remote_ip 10.8.0.46 93442 username mirzaei 93442 mac 93442 bytes_out 0 93442 bytes_in 0 93442 station_ip 5.113.25.103 93442 port 5 93442 unique_id port 93442 remote_ip 10.8.0.14 93445 username mirzaei 93445 kill_reason Another user logged on this global unique id 93445 mac 93445 bytes_out 0 93445 bytes_in 0 93445 station_ip 5.119.118.96 93445 port 9 93445 unique_id port 93445 remote_ip 10.8.0.14 93447 username ahmadi 93447 unique_id port 93447 terminate_cause User-Request 93447 bytes_out 37848 93447 bytes_in 411514 93447 station_ip 37.129.86.155 93447 port 15728795 93447 nas_port_type Virtual 93447 remote_ip 5.5.5.177 93451 username aminvpn 93451 mac 93451 bytes_out 0 93451 bytes_in 0 93451 station_ip 113.203.91.56 93451 port 11 93451 unique_id port 93451 remote_ip 10.8.0.6 93459 username mohammadi 93459 mac 93459 bytes_out 175191 93459 bytes_in 868633 93459 station_ip 113.203.5.51 93459 port 5 93459 unique_id port 93459 remote_ip 10.8.0.62 93461 username mohammadi 93461 mac 93461 bytes_out 0 93461 bytes_in 0 93461 station_ip 113.203.5.51 93461 port 10 93461 unique_id port 93461 remote_ip 10.8.0.62 93466 username asadi 93466 mac 93466 bytes_out 25167 93466 bytes_in 35201 93466 station_ip 113.203.121.154 93466 port 8 93466 unique_id port 93466 remote_ip 10.8.0.22 93468 username alihosseini 93468 mac 93468 bytes_out 63171 93468 bytes_in 118581 93468 station_ip 5.119.10.27 93468 port 9 93468 unique_id port 93468 remote_ip 10.8.1.34 93476 username mohammadi 93476 mac 93476 bytes_out 0 93476 bytes_in 0 93437 mac 93437 bytes_out 0 93437 bytes_in 0 93437 station_ip 113.203.121.154 93437 port 8 93437 unique_id port 93444 username alihosseini 93444 mac 93444 bytes_out 0 93444 bytes_in 0 93444 station_ip 5.119.10.27 93444 port 10 93444 unique_id port 93444 remote_ip 10.8.0.46 93446 username alihosseini 93446 mac 93446 bytes_out 0 93446 bytes_in 0 93446 station_ip 5.119.10.27 93446 port 9 93446 unique_id port 93446 remote_ip 10.8.1.34 93449 username alihosseini 93449 mac 93449 bytes_out 0 93449 bytes_in 0 93449 station_ip 5.119.10.27 93449 port 10 93449 unique_id port 93449 remote_ip 10.8.0.46 93455 username alihosseini 93455 mac 93455 bytes_out 0 93455 bytes_in 0 93455 station_ip 5.119.10.27 93455 port 10 93455 unique_id port 93455 remote_ip 10.8.0.46 93456 username alihosseini 93456 mac 93456 bytes_out 0 93456 bytes_in 0 93456 station_ip 5.119.10.27 93456 port 9 93456 unique_id port 93456 remote_ip 10.8.1.34 93462 username alinezhad 93462 unique_id port 93462 terminate_cause User-Request 93462 bytes_out 66061 93462 bytes_in 986150 93462 station_ip 5.202.5.8 93462 port 15728793 93462 nas_port_type Virtual 93462 remote_ip 5.5.5.179 93464 username madadi2 93464 unique_id port 93464 terminate_cause Lost-Carrier 93464 bytes_out 100209 93464 bytes_in 720468 93464 station_ip 5.119.0.128 93464 port 15728799 93464 nas_port_type Virtual 93464 remote_ip 5.5.5.175 93465 username mohammadi 93465 mac 93465 bytes_out 0 93465 bytes_in 0 93465 station_ip 113.203.5.51 93465 port 5 93465 unique_id port 93465 remote_ip 10.8.0.62 93469 username alinezhad 93469 unique_id port 93469 terminate_cause User-Request 93469 bytes_out 74684 93469 bytes_in 985233 93469 station_ip 5.202.5.8 93469 port 15728801 93469 nas_port_type Virtual 93469 remote_ip 5.5.5.179 93473 username alihosseini 93473 mac 93473 bytes_out 308993 93473 bytes_in 1689249 93473 station_ip 5.119.10.27 93473 port 9 93473 unique_id port 93473 remote_ip 10.8.1.34 93477 username caferibar 93477 kill_reason Relative expiration date has reached 93477 unique_id port 93477 bytes_out 0 93477 bytes_in 0 93477 station_ip 94.24.99.168 93477 port 15728807 93477 nas_port_type Virtual 93481 username amirabbas 93481 unique_id port 93481 terminate_cause Lost-Carrier 93481 bytes_out 11131460 93481 bytes_in 266737719 93481 station_ip 151.238.237.121 93481 port 15728798 93481 nas_port_type Virtual 93481 remote_ip 5.5.5.174 93484 username avaanna 93484 unique_id port 93484 terminate_cause User-Request 93484 bytes_out 174467 93484 bytes_in 1995715 93484 station_ip 83.122.222.255 93484 port 15728811 93484 nas_port_type Virtual 93484 remote_ip 5.5.5.172 93495 username hashtadani 93495 unique_id port 93495 terminate_cause User-Request 93495 bytes_out 6701241 93495 bytes_in 80584745 93495 station_ip 37.129.48.146 93495 port 15728817 93495 nas_port_type Virtual 93495 remote_ip 5.5.5.168 93497 username mohammadi 93497 mac 93497 bytes_out 141865 93497 bytes_in 1032957 93497 station_ip 113.203.41.39 93497 port 5 93497 unique_id port 93497 remote_ip 10.8.0.62 93498 username heydari 93498 unique_id port 93498 terminate_cause Lost-Carrier 93498 bytes_out 428298 93498 bytes_in 3488003 93498 station_ip 5.119.122.2 93498 port 15728815 93498 nas_port_type Virtual 93498 remote_ip 5.5.5.169 93500 username mohammadi 93500 mac 93500 bytes_out 544813 93500 bytes_in 1011090 93500 station_ip 113.203.41.39 93500 port 5 93500 unique_id port 93500 remote_ip 10.8.0.62 93452 bytes_in 0 93452 station_ip 5.119.10.27 93452 port 5 93452 unique_id port 93452 remote_ip 10.8.0.46 93453 username alihosseini 93453 mac 93453 bytes_out 0 93453 bytes_in 0 93453 station_ip 5.119.10.27 93453 port 5 93453 unique_id port 93453 remote_ip 10.8.0.46 93454 username alihosseini 93454 mac 93454 bytes_out 0 93454 bytes_in 0 93454 station_ip 5.119.10.27 93454 port 5 93454 unique_id port 93454 remote_ip 10.8.0.46 93457 username madadi2 93457 unique_id port 93457 terminate_cause User-Request 93457 bytes_out 115819 93457 bytes_in 528462 93457 station_ip 5.119.0.128 93457 port 15728797 93457 nas_port_type Virtual 93457 remote_ip 5.5.5.175 93458 username alihosseini 93458 mac 93458 bytes_out 0 93458 bytes_in 0 93458 station_ip 5.119.10.27 93458 port 10 93458 unique_id port 93458 remote_ip 10.8.0.46 93460 username alireza1 93460 unique_id port 93460 terminate_cause Lost-Carrier 93460 bytes_out 1175461 93460 bytes_in 13695240 93460 station_ip 5.120.170.223 93460 port 15728796 93460 nas_port_type Virtual 93460 remote_ip 5.5.5.176 93463 username asadi 93463 mac 93463 bytes_out 0 93463 bytes_in 0 93463 station_ip 113.203.121.154 93463 port 8 93463 unique_id port 93467 username alihosseini 93467 mac 93467 bytes_out 0 93467 bytes_in 0 93467 station_ip 5.119.10.27 93467 port 9 93467 unique_id port 93467 remote_ip 10.8.1.34 93470 username mammad 93470 unique_id port 93470 terminate_cause User-Request 93470 bytes_out 1434175 93470 bytes_in 30085220 93470 station_ip 5.233.56.194 93470 port 15728800 93470 nas_port_type Virtual 93470 remote_ip 5.5.5.178 93471 username mohammadi 93471 mac 93471 bytes_out 0 93471 bytes_in 0 93471 station_ip 113.203.5.51 93471 port 5 93471 unique_id port 93471 remote_ip 10.8.0.62 93472 username sadegh 93472 unique_id port 93472 terminate_cause User-Request 93472 bytes_out 277234 93472 bytes_in 1892764 93472 station_ip 5.119.99.154 93472 port 15728802 93472 nas_port_type Virtual 93472 remote_ip 5.5.5.187 93474 username alihosseini 93474 mac 93474 bytes_out 6193 93474 bytes_in 13353 93474 station_ip 5.119.10.27 93474 port 5 93474 unique_id port 93474 remote_ip 10.8.0.46 93475 username alinezhad 93475 unique_id port 93475 terminate_cause User-Request 93475 bytes_out 12949 93475 bytes_in 21363 93475 station_ip 5.202.5.8 93475 port 15728805 93475 nas_port_type Virtual 93475 remote_ip 5.5.5.179 93478 username caferibar 93478 kill_reason Relative expiration date has reached 93478 unique_id port 93478 bytes_out 0 93478 bytes_in 0 93478 station_ip 94.24.99.168 93478 port 15728808 93478 nas_port_type Virtual 93480 username madadi2 93480 unique_id port 93480 terminate_cause Lost-Carrier 93480 bytes_out 291591 93480 bytes_in 2421617 93480 station_ip 5.119.250.219 93480 port 15728804 93480 nas_port_type Virtual 93480 remote_ip 5.5.5.173 93482 username alireza1 93482 unique_id port 93482 terminate_cause User-Request 93482 bytes_out 874832 93482 bytes_in 6697262 93482 station_ip 5.120.170.223 93482 port 15728803 93482 nas_port_type Virtual 93482 remote_ip 5.5.5.176 93483 username alinezhad 93483 unique_id port 93483 terminate_cause User-Request 93483 bytes_out 0 93483 bytes_in 0 93483 station_ip 5.202.5.8 93483 port 15728812 93483 nas_port_type Virtual 93483 remote_ip 5.5.5.179 93486 username ahmadi 93486 unique_id port 93486 terminate_cause User-Request 93486 bytes_out 1007687 93486 bytes_in 790583 93486 station_ip 37.129.86.155 93486 port 15728813 93486 nas_port_type Virtual 93486 remote_ip 5.5.5.177 93476 station_ip 113.203.5.51 93476 port 8 93476 unique_id port 93476 remote_ip 10.8.0.62 93479 username avaanna 93479 unique_id port 93479 terminate_cause User-Request 93479 bytes_out 157403 93479 bytes_in 2069811 93479 station_ip 83.122.222.255 93479 port 15728806 93479 nas_port_type Virtual 93479 remote_ip 5.5.5.172 93485 username mohammadi 93485 mac 93485 bytes_out 0 93485 bytes_in 0 93485 station_ip 113.203.5.51 93485 port 5 93485 unique_id port 93485 remote_ip 10.8.0.62 93488 username alireza1 93488 unique_id port 93488 terminate_cause Lost-Carrier 93488 bytes_out 92399 93488 bytes_in 370412 93488 station_ip 5.120.170.223 93488 port 15728810 93488 nas_port_type Virtual 93488 remote_ip 5.5.5.176 93489 username sadegh 93489 unique_id port 93489 terminate_cause User-Request 93489 bytes_out 14123294 93489 bytes_in 212121916 93489 station_ip 5.120.46.150 93489 port 15728791 93489 nas_port_type Virtual 93489 remote_ip 5.5.5.181 93491 username alinezhad 93491 unique_id port 93491 terminate_cause User-Request 93491 bytes_out 0 93491 bytes_in 0 93491 station_ip 5.202.5.8 93491 port 15728818 93491 nas_port_type Virtual 93491 remote_ip 5.5.5.179 93492 username aminvpn 93492 mac 93492 bytes_out 2143938 93492 bytes_in 20378403 93492 station_ip 83.122.209.9 93492 port 5 93492 unique_id port 93492 remote_ip 10.8.0.6 93496 username farhad 93496 unique_id port 93496 terminate_cause Lost-Carrier 93496 bytes_out 827390 93496 bytes_in 6501235 93496 station_ip 5.119.254.176 93496 port 15728819 93496 nas_port_type Virtual 93496 remote_ip 5.5.5.167 188678 station_ip 5.120.128.95 188678 port 390 188678 unique_id port 188681 username zahra1101 188681 kill_reason Maximum check online fails reached 188681 mac 188681 bytes_out 0 188681 bytes_in 0 188681 station_ip 5.120.128.95 93505 username heydari 93505 unique_id port 93505 terminate_cause User-Request 93505 bytes_out 107707 93505 bytes_in 560701 93505 station_ip 5.119.122.2 93505 port 15728827 93505 nas_port_type Virtual 93505 remote_ip 5.5.5.169 93507 username mammad 93507 unique_id port 93507 terminate_cause User-Request 93507 bytes_out 10639263 93507 bytes_in 257005964 93507 station_ip 5.233.56.194 93507 port 15728823 93507 nas_port_type Virtual 93507 remote_ip 5.5.5.178 93510 username amirabbas 93510 unique_id port 93510 terminate_cause User-Request 93510 bytes_out 48129987 93510 bytes_in 1202813323 93510 station_ip 31.56.157.142 93510 port 15728826 93510 nas_port_type Virtual 93510 remote_ip 5.5.5.163 93511 username shahrooz 93511 unique_id port 93511 terminate_cause Lost-Carrier 93511 bytes_out 336646 93511 bytes_in 3291167 93511 station_ip 113.203.26.254 93511 port 15728830 93511 nas_port_type Virtual 93511 remote_ip 5.5.5.161 93513 username majid 93513 unique_id port 93513 terminate_cause User-Request 93513 bytes_out 1048023 93513 bytes_in 19406467 93513 station_ip 86.57.46.221 93513 port 15728835 93513 nas_port_type Virtual 93513 remote_ip 5.5.5.159 93519 username mohammadi 93519 mac 93519 bytes_out 1431680 93519 bytes_in 20325045 93519 station_ip 113.203.67.87 93519 port 8 93519 unique_id port 93519 remote_ip 10.8.0.62 93520 username mohammadi 93520 mac 93520 bytes_out 0 93520 bytes_in 0 93520 station_ip 113.203.67.87 93520 port 5 93520 unique_id port 93520 remote_ip 10.8.0.62 93521 username ahmadipour 93521 unique_id port 93521 terminate_cause Lost-Carrier 93521 bytes_out 76297163 93521 bytes_in 16361616 93521 station_ip 113.203.55.10 93521 port 15728839 93521 nas_port_type Virtual 93521 remote_ip 5.5.5.158 93522 username mohammadi 93522 mac 93487 username mohammadi 93487 mac 93487 bytes_out 189580 93487 bytes_in 531558 93487 station_ip 113.203.5.51 93487 port 8 93487 unique_id port 93487 remote_ip 10.8.0.62 93490 username madadi2 93490 unique_id port 93490 terminate_cause User-Request 93490 bytes_out 1424551 93490 bytes_in 26681142 93490 station_ip 5.120.120.201 93490 port 15728809 93490 nas_port_type Virtual 93490 remote_ip 5.5.5.171 93493 username farhad 93493 unique_id port 93493 terminate_cause Lost-Carrier 93493 bytes_out 4394320 93493 bytes_in 32366085 93493 station_ip 5.120.119.82 93493 port 15728814 93493 nas_port_type Virtual 93493 remote_ip 5.5.5.170 93494 username alinezhad 93494 unique_id port 93494 terminate_cause User-Request 93494 bytes_out 0 93494 bytes_in 0 93494 station_ip 83.123.108.87 93494 port 15728821 93494 nas_port_type Virtual 93494 remote_ip 5.5.5.166 93503 username madadi2 93503 unique_id port 93503 terminate_cause Lost-Carrier 93503 bytes_out 998426 93503 bytes_in 1850814 93503 station_ip 5.120.120.201 93503 port 15728816 93503 nas_port_type Virtual 93503 remote_ip 5.5.5.171 93508 username mahdixz 93508 unique_id port 93508 terminate_cause User-Request 93508 bytes_out 5763436 93508 bytes_in 131196705 93508 station_ip 151.235.104.45 93508 port 15728833 93508 nas_port_type Virtual 93508 remote_ip 5.5.5.160 93509 username farhad 93509 unique_id port 93509 terminate_cause Lost-Carrier 93509 bytes_out 6690523 93509 bytes_in 60267925 93509 station_ip 5.119.209.122 93509 port 15728829 93509 nas_port_type Virtual 93509 remote_ip 5.5.5.162 93514 username mohammadi 93514 mac 93514 bytes_out 0 93514 bytes_in 0 93514 station_ip 113.203.67.87 93514 port 5 93514 unique_id port 93514 remote_ip 10.8.0.62 93515 username mohammadi 93515 mac 93515 bytes_out 0 93515 bytes_in 0 93515 station_ip 113.203.67.87 93515 port 8 93515 unique_id port 93515 remote_ip 10.8.0.62 93518 username mohammadi 93518 mac 93518 bytes_out 0 93518 bytes_in 0 93518 station_ip 113.203.67.87 93518 port 5 93518 unique_id port 93518 remote_ip 10.8.0.62 93523 username forozande 93523 unique_id port 93523 terminate_cause User-Request 93523 bytes_out 609415 93523 bytes_in 15212805 93523 station_ip 83.123.187.7 93523 port 15728841 93523 nas_port_type Virtual 93523 remote_ip 5.5.5.157 93524 username forozande 93524 unique_id port 93524 terminate_cause User-Request 93524 bytes_out 532912 93524 bytes_in 18417485 93524 station_ip 83.123.187.7 93524 port 15728842 93524 nas_port_type Virtual 93524 remote_ip 5.5.5.157 93527 username forozande 93527 unique_id port 93527 terminate_cause User-Request 93527 bytes_out 751269 93527 bytes_in 28653317 93527 station_ip 83.123.187.7 93527 port 15728845 93527 nas_port_type Virtual 93527 remote_ip 5.5.5.157 93528 username aminvpn 93528 mac 93528 bytes_out 0 93528 bytes_in 0 93528 station_ip 37.129.173.67 93528 port 5 93528 unique_id port 93528 remote_ip 10.8.0.6 93533 username forozande 93533 unique_id port 93533 terminate_cause User-Request 93533 bytes_out 47925 93533 bytes_in 725484 93533 station_ip 37.129.96.99 93533 port 15728640 93533 nas_port_type Virtual 93533 remote_ip 5.5.5.255 93534 username alihosseini 93534 mac 93534 bytes_out 289665 93534 bytes_in 1216254 93534 station_ip 5.120.67.99 93534 port 5 93534 unique_id port 93534 remote_ip 10.8.0.46 93536 username kamali 93536 unique_id port 93536 terminate_cause User-Request 93536 bytes_out 221777 93536 bytes_in 4275476 93536 station_ip 113.203.7.240 93536 port 15728641 93536 nas_port_type Virtual 93536 remote_ip 5.5.5.254 93501 username shokokian 93501 kill_reason Maximum check online fails reached 93501 unique_id port 93501 bytes_out 112229 93501 bytes_in 638922 93501 station_ip 31.59.35.121 93501 port 15728825 93501 nas_port_type Virtual 93501 remote_ip 5.5.5.164 188679 bytes_in 0 188679 station_ip 5.120.128.95 188679 port 392 188679 unique_id port 188679 remote_ip 10.8.0.250 188693 username zahra1101 188693 mac 188693 bytes_out 0 188693 bytes_in 0 93504 username alireza1 93504 unique_id port 93504 terminate_cause Lost-Carrier 93504 bytes_out 1042762 93504 bytes_in 17330863 93504 station_ip 5.120.170.223 93504 port 15728820 93504 nas_port_type Virtual 93504 remote_ip 5.5.5.176 93506 username farhad 93506 unique_id port 93506 terminate_cause User-Request 93506 bytes_out 13008104 93506 bytes_in 111580458 93506 station_ip 5.119.134.6 93506 port 15728822 93506 nas_port_type Virtual 93506 remote_ip 5.5.5.165 93512 username majid 93512 unique_id port 93512 terminate_cause User-Request 93512 bytes_out 532 93512 bytes_in 146448 93512 station_ip 86.57.46.221 93512 port 15728834 93512 nas_port_type Virtual 93512 remote_ip 5.5.5.159 93516 username mohammadi 93516 mac 93516 bytes_out 0 93516 bytes_in 0 93516 station_ip 113.203.67.87 93516 port 5 93516 unique_id port 93516 remote_ip 10.8.0.62 93517 username mohammadi 93517 mac 93517 bytes_out 37996 93517 bytes_in 33070 93517 station_ip 113.203.67.87 93517 port 8 93517 unique_id port 93517 remote_ip 10.8.0.62 93529 username forozande 93529 unique_id port 93529 terminate_cause User-Request 93529 bytes_out 19815 93529 bytes_in 63228 93529 station_ip 83.123.187.7 93529 port 15728846 93529 nas_port_type Virtual 93529 remote_ip 5.5.5.157 93530 username forozande 93530 unique_id port 93530 terminate_cause User-Request 93530 bytes_out 15892 93530 bytes_in 19390 93530 station_ip 113.203.78.32 93530 port 15728847 93530 nas_port_type Virtual 93530 remote_ip 5.5.5.156 93531 username mahbobeh 93531 unique_id port 93531 terminate_cause Lost-Carrier 93531 bytes_out 1102055 93531 bytes_in 13515152 93531 station_ip 83.123.220.75 93531 port 15728840 93531 nas_port_type Virtual 93531 remote_ip 5.5.5.205 93532 username aminvpn 93532 mac 93532 bytes_out 0 93532 bytes_in 0 93532 station_ip 37.129.173.67 93532 port 5 93532 unique_id port 93532 remote_ip 10.8.0.6 93535 username alihosseini 93535 mac 93535 bytes_out 0 93535 bytes_in 0 93535 station_ip 5.120.67.99 93535 port 5 93535 unique_id port 93535 remote_ip 10.8.0.46 93541 username forozande 93541 unique_id port 93541 terminate_cause User-Request 93541 bytes_out 64998 93541 bytes_in 32906 93541 station_ip 37.129.201.223 93541 port 15728648 93541 nas_port_type Virtual 93541 remote_ip 5.5.5.253 93542 username alihosseini 93542 mac 93542 bytes_out 0 93542 bytes_in 0 93542 station_ip 5.120.67.99 93542 port 9 93542 unique_id port 93542 remote_ip 10.8.1.34 93543 username mohammadi 93543 mac 93543 bytes_out 218941 93543 bytes_in 214959 93543 station_ip 113.203.46.83 93543 port 9 93543 unique_id port 93543 remote_ip 10.8.0.62 93547 username alihosseini 93547 kill_reason Another user logged on this global unique id 93547 mac 93547 bytes_out 0 93547 bytes_in 0 93547 station_ip 5.120.8.73 93547 port 9 93547 unique_id port 93547 remote_ip 10.8.1.34 93549 username fariba 93549 mac 93549 bytes_out 0 93549 bytes_in 0 93549 station_ip 5.119.203.55 93549 port 10 93549 unique_id port 93549 remote_ip 10.8.0.10 93551 username aminvpn 93551 mac 188693 station_ip 5.120.128.95 93522 bytes_out 0 93522 bytes_in 0 93522 station_ip 113.203.67.87 93522 port 5 93522 unique_id port 93522 remote_ip 10.8.0.62 93525 username forozande 93525 unique_id port 93525 terminate_cause User-Request 93525 bytes_out 1049714 93525 bytes_in 41453815 93525 station_ip 83.123.187.7 93525 port 15728843 93525 nas_port_type Virtual 93525 remote_ip 5.5.5.157 93526 username forozande 93526 unique_id port 93526 terminate_cause User-Request 93526 bytes_out 833404 93526 bytes_in 32136126 93526 station_ip 83.123.187.7 93526 port 15728844 93526 nas_port_type Virtual 93526 remote_ip 5.5.5.157 93537 username alihosseini 93537 mac 93537 bytes_out 0 93537 bytes_in 0 93537 station_ip 5.120.67.99 93537 port 9 93537 unique_id port 93537 remote_ip 10.8.1.34 93538 username kamali 93538 unique_id port 93538 terminate_cause User-Request 93538 bytes_out 643088 93538 bytes_in 6654830 93538 station_ip 113.203.7.240 93538 port 15728642 93538 nas_port_type Virtual 93538 remote_ip 5.5.5.254 93545 username forozande 93545 unique_id port 93545 terminate_cause User-Request 93545 bytes_out 42511 93545 bytes_in 691214 93545 station_ip 37.129.201.223 93545 port 15728650 93545 nas_port_type Virtual 93545 remote_ip 5.5.5.253 93546 username alinezhad 93546 unique_id port 93546 terminate_cause User-Request 93546 bytes_out 286037 93546 bytes_in 1174948 93546 station_ip 83.123.203.177 93546 port 15728651 93546 nas_port_type Virtual 93546 remote_ip 5.5.5.251 93550 username aminvpn 93550 mac 93550 bytes_out 506038 93550 bytes_in 1944570 93550 station_ip 83.122.131.205 93550 port 8 93550 unique_id port 93550 remote_ip 10.8.0.6 93556 username aminvpn 93556 mac 93556 bytes_out 0 93556 bytes_in 0 93556 station_ip 83.122.131.205 93556 port 8 93556 unique_id port 93556 remote_ip 10.8.0.6 93558 username aminvpn 93558 mac 93558 bytes_out 0 93558 bytes_in 0 93558 station_ip 113.203.61.142 93558 port 8 93558 unique_id port 93558 remote_ip 10.8.0.6 93563 username aminvpn 93563 mac 93563 bytes_out 0 93563 bytes_in 0 93563 station_ip 83.122.131.205 93563 port 10 93563 unique_id port 93563 remote_ip 10.8.0.6 93564 username aminvpn 93564 mac 93564 bytes_out 0 93564 bytes_in 0 93564 station_ip 113.203.61.142 93564 port 8 93564 unique_id port 93564 remote_ip 10.8.0.6 93565 username aminvpn 93565 mac 93565 bytes_out 0 93565 bytes_in 0 93565 station_ip 83.122.131.205 93565 port 10 93565 unique_id port 93565 remote_ip 10.8.0.6 93567 username aminvpn 93567 mac 93567 bytes_out 0 93567 bytes_in 0 93567 station_ip 83.122.131.205 93567 port 10 93567 unique_id port 93567 remote_ip 10.8.0.6 93572 username aminvpn 93572 mac 93572 bytes_out 0 93572 bytes_in 0 93572 station_ip 113.203.61.142 93572 port 8 93572 unique_id port 93572 remote_ip 10.8.0.6 93573 username aminvpn 93573 mac 93573 bytes_out 0 93573 bytes_in 0 93573 station_ip 83.122.131.205 93573 port 10 93573 unique_id port 93573 remote_ip 10.8.0.6 93576 username aminvpn 93576 mac 93576 bytes_out 0 93576 bytes_in 0 93576 station_ip 113.203.61.142 93576 port 8 93576 unique_id port 93576 remote_ip 10.8.0.6 93584 username aminvpn 93584 mac 93584 bytes_out 0 93584 bytes_in 0 93584 station_ip 83.122.131.205 93584 port 10 93584 unique_id port 93584 remote_ip 10.8.0.6 93585 username aminvpn 93585 mac 93585 bytes_out 0 93585 bytes_in 0 93585 station_ip 113.203.61.142 93585 port 8 93539 username kamali 93539 unique_id port 93539 terminate_cause User-Request 93539 bytes_out 745062 93539 bytes_in 6400430 93539 station_ip 113.203.7.240 93539 port 15728643 93539 nas_port_type Virtual 93539 remote_ip 5.5.5.254 93540 username kamali 93540 unique_id port 93540 terminate_cause User-Request 93540 bytes_out 466535 93540 bytes_in 3895131 93540 station_ip 113.203.7.240 93540 port 15728647 93540 nas_port_type Virtual 93540 remote_ip 5.5.5.254 93544 username alireza1 93544 unique_id port 93544 terminate_cause User-Request 93544 bytes_out 478255 93544 bytes_in 723524 93544 station_ip 5.120.170.223 93544 port 15728649 93544 nas_port_type Virtual 93544 remote_ip 5.5.5.252 93548 username mirzaei 93548 mac 93548 bytes_out 710712 93548 bytes_in 1460184 93548 station_ip 5.119.166.186 93548 port 5 93548 unique_id port 93548 remote_ip 10.8.0.14 93553 username aminvpn 93553 mac 93553 bytes_out 0 93553 bytes_in 0 93553 station_ip 113.203.61.142 93553 port 10 93553 unique_id port 93553 remote_ip 10.8.0.6 93554 username aminvpn 93554 mac 93554 bytes_out 0 93554 bytes_in 0 93554 station_ip 83.122.131.205 93554 port 8 93554 unique_id port 93554 remote_ip 10.8.0.6 93555 username aminvpn 93555 mac 93555 bytes_out 0 93555 bytes_in 0 93555 station_ip 113.203.61.142 93555 port 10 93555 unique_id port 93555 remote_ip 10.8.0.6 93561 username aminvpn 93561 mac 93561 bytes_out 0 93561 bytes_in 0 93561 station_ip 83.122.131.205 93561 port 10 93561 unique_id port 93561 remote_ip 10.8.0.6 93562 username aminvpn 93562 mac 93562 bytes_out 0 93562 bytes_in 0 93562 station_ip 113.203.61.142 93562 port 8 93562 unique_id port 93562 remote_ip 10.8.0.6 93570 username aminvpn 93570 mac 93570 bytes_out 0 93570 bytes_in 0 93570 station_ip 113.203.61.142 93570 port 8 93570 unique_id port 93570 remote_ip 10.8.0.6 93571 username aminvpn 93571 mac 93571 bytes_out 0 93571 bytes_in 0 93571 station_ip 83.122.131.205 93571 port 10 93571 unique_id port 93571 remote_ip 10.8.0.6 93579 username aminvpn 93579 mac 93579 bytes_out 0 93579 bytes_in 0 93579 station_ip 83.122.131.205 93579 port 10 93579 unique_id port 93579 remote_ip 10.8.0.6 93580 username aminvpn 93580 mac 93580 bytes_out 0 93580 bytes_in 0 93580 station_ip 113.203.61.142 93580 port 8 93580 unique_id port 93580 remote_ip 10.8.0.6 93582 username aminvpn 93582 mac 93582 bytes_out 0 93582 bytes_in 0 93582 station_ip 83.122.131.205 93582 port 10 93582 unique_id port 93582 remote_ip 10.8.0.6 93583 username aminvpn 93583 mac 93583 bytes_out 0 93583 bytes_in 0 93583 station_ip 113.203.61.142 93583 port 8 93583 unique_id port 93583 remote_ip 10.8.0.6 93586 username aminvpn 93586 mac 93586 bytes_out 0 93586 bytes_in 0 93586 station_ip 83.122.131.205 93586 port 10 93586 unique_id port 93586 remote_ip 10.8.0.6 93591 username aminvpn 93591 mac 93591 bytes_out 0 93591 bytes_in 0 93591 station_ip 113.203.61.142 93591 port 8 93591 unique_id port 93591 remote_ip 10.8.0.6 93594 username aminvpn 93594 mac 93594 bytes_out 13421 93594 bytes_in 11586 93594 station_ip 113.203.61.142 93594 port 8 93594 unique_id port 93594 remote_ip 10.8.0.6 93596 username avaanna 93596 unique_id port 93596 terminate_cause User-Request 93596 bytes_out 586960 93596 bytes_in 20359101 93596 station_ip 83.122.71.98 93596 port 15728655 93551 bytes_out 0 93551 bytes_in 0 93551 station_ip 113.203.61.142 93551 port 10 93551 unique_id port 93551 remote_ip 10.8.0.6 93552 username aminvpn 93552 mac 93552 bytes_out 0 93552 bytes_in 0 93552 station_ip 83.122.131.205 93552 port 8 93552 unique_id port 93552 remote_ip 10.8.0.6 93557 username aminvpn 93557 mac 93557 bytes_out 0 93557 bytes_in 0 93557 station_ip 83.122.131.205 93557 port 10 93557 unique_id port 93557 remote_ip 10.8.0.6 93559 username aminvpn 93559 mac 93559 bytes_out 0 93559 bytes_in 0 93559 station_ip 83.122.131.205 93559 port 10 93559 unique_id port 93559 remote_ip 10.8.0.6 93560 username aminvpn 93560 mac 93560 bytes_out 0 93560 bytes_in 0 93560 station_ip 113.203.61.142 93560 port 8 93560 unique_id port 93560 remote_ip 10.8.0.6 93566 username aminvpn 93566 mac 93566 bytes_out 0 93566 bytes_in 0 93566 station_ip 113.203.61.142 93566 port 8 93566 unique_id port 93566 remote_ip 10.8.0.6 93568 username aminvpn 93568 mac 93568 bytes_out 0 93568 bytes_in 0 93568 station_ip 113.203.61.142 93568 port 8 93568 unique_id port 93568 remote_ip 10.8.0.6 93569 username aminvpn 93569 mac 93569 bytes_out 0 93569 bytes_in 0 93569 station_ip 83.122.131.205 93569 port 10 93569 unique_id port 93569 remote_ip 10.8.0.6 93574 username aminvpn 93574 mac 93574 bytes_out 0 93574 bytes_in 0 93574 station_ip 113.203.61.142 93574 port 8 93574 unique_id port 93574 remote_ip 10.8.0.6 93575 username aminvpn 93575 mac 93575 bytes_out 0 93575 bytes_in 0 93575 station_ip 83.122.131.205 93575 port 10 93575 unique_id port 93575 remote_ip 10.8.0.6 93577 username aminvpn 93577 mac 93577 bytes_out 0 93577 bytes_in 0 93577 station_ip 83.122.131.205 93577 port 10 93577 unique_id port 93577 remote_ip 10.8.0.6 93578 username aminvpn 93578 mac 93578 bytes_out 0 93578 bytes_in 0 93578 station_ip 113.203.61.142 93578 port 8 93578 unique_id port 93578 remote_ip 10.8.0.6 93581 username mirzaei 93581 mac 93581 bytes_out 723935 93581 bytes_in 7659820 93581 station_ip 5.119.166.186 93581 port 9 93581 unique_id port 93581 remote_ip 10.8.0.14 93589 username aminvpn 93589 mac 93589 bytes_out 0 93589 bytes_in 0 93589 station_ip 113.203.61.142 93589 port 8 93589 unique_id port 93589 remote_ip 10.8.0.6 93590 username aminvpn 93590 mac 93590 bytes_out 0 93590 bytes_in 0 93590 station_ip 83.122.131.205 93590 port 10 93590 unique_id port 93590 remote_ip 10.8.0.6 93592 username aminvpn 93592 mac 93592 bytes_out 0 93592 bytes_in 0 93592 station_ip 83.122.131.205 93592 port 11 93592 unique_id port 93592 remote_ip 10.8.0.6 93593 username forozande 93593 unique_id port 93593 terminate_cause User-Request 93593 bytes_out 46257 93593 bytes_in 316833 93593 station_ip 37.129.53.228 93593 port 15728653 93593 nas_port_type Virtual 93593 remote_ip 5.5.5.249 93600 username aminvpn 93600 mac 93600 bytes_out 804206 93600 bytes_in 7908124 93600 station_ip 83.122.131.205 93600 port 9 93600 unique_id port 93600 remote_ip 10.8.1.6 93602 username aminvpn 93602 mac 93602 bytes_out 0 93602 bytes_in 0 93602 station_ip 83.122.131.205 93602 port 11 93602 unique_id port 93602 remote_ip 10.8.0.6 93605 username aminvpn 93605 mac 93605 bytes_out 0 93605 bytes_in 0 93605 station_ip 113.203.61.142 93605 port 8 93585 unique_id port 93585 remote_ip 10.8.0.6 93587 username aminvpn 93587 mac 93587 bytes_out 0 93587 bytes_in 0 93587 station_ip 113.203.61.142 93587 port 8 93587 unique_id port 93587 remote_ip 10.8.0.6 93588 username aminvpn 93588 mac 93588 bytes_out 0 93588 bytes_in 0 93588 station_ip 83.122.131.205 93588 port 10 93588 unique_id port 93588 remote_ip 10.8.0.6 93595 username aminvpn 93595 mac 93595 bytes_out 0 93595 bytes_in 0 93595 station_ip 83.122.131.205 93595 port 11 93595 unique_id port 93595 remote_ip 10.8.0.6 93598 username aminvpn 93598 mac 93598 bytes_out 0 93598 bytes_in 0 93598 station_ip 83.122.131.205 93598 port 11 93598 unique_id port 93598 remote_ip 10.8.0.6 93608 username aminvpn 93608 mac 93608 bytes_out 0 93608 bytes_in 0 93608 station_ip 113.203.61.142 93608 port 8 93608 unique_id port 93608 remote_ip 10.8.0.6 93611 username alinezhad 93611 unique_id port 93611 terminate_cause User-Request 93611 bytes_out 0 93611 bytes_in 0 93611 station_ip 5.202.23.253 93611 port 15728659 93611 nas_port_type Virtual 93611 remote_ip 5.5.5.246 93614 username alinezhad 93614 unique_id port 93614 terminate_cause User-Request 93614 bytes_out 0 93614 bytes_in 0 93614 station_ip 5.202.23.253 93614 port 15728662 93614 nas_port_type Virtual 93614 remote_ip 5.5.5.246 93619 username alinezhad 93619 unique_id port 93619 terminate_cause User-Request 93619 bytes_out 0 93619 bytes_in 0 93619 station_ip 5.202.23.253 93619 port 15728666 93619 nas_port_type Virtual 93619 remote_ip 5.5.5.246 93621 username amirabbas 93621 unique_id port 93621 terminate_cause Lost-Carrier 93621 bytes_out 5093405 93621 bytes_in 118816032 93621 station_ip 31.56.154.140 93621 port 15728664 93621 nas_port_type Virtual 93621 remote_ip 5.5.5.244 93625 username aminvpn 93625 mac 93625 bytes_out 0 93625 bytes_in 0 93625 station_ip 113.203.61.142 93625 port 8 93625 unique_id port 93625 remote_ip 10.8.0.6 93631 username alireza1 93631 unique_id port 93631 terminate_cause User-Request 93631 bytes_out 307104 93631 bytes_in 878074 93631 station_ip 5.120.170.223 93631 port 15728670 93631 nas_port_type Virtual 93631 remote_ip 5.5.5.252 93632 username fallahi 93632 mac 93632 bytes_out 0 93632 bytes_in 0 93632 station_ip 83.123.237.51 93632 port 12 93632 unique_id port 93632 remote_ip 10.8.0.74 93634 username mehdizare 93634 mac 93634 bytes_out 0 93634 bytes_in 0 93634 station_ip 5.120.189.182 93634 port 11 93634 unique_id port 93634 remote_ip 10.8.0.70 93637 username mehdizare 93637 mac 93637 bytes_out 0 93637 bytes_in 0 93637 station_ip 5.120.189.182 93637 port 11 93637 unique_id port 93637 remote_ip 10.8.0.70 93639 username aminvpn 93639 mac 93639 bytes_out 0 93639 bytes_in 0 93639 station_ip 83.122.131.205 93639 port 14 93639 unique_id port 93639 remote_ip 10.8.0.6 93642 username jamali 93642 mac 93642 bytes_out 61600 93642 bytes_in 96538 93642 station_ip 83.123.174.85 93642 port 10 93642 unique_id port 93642 remote_ip 10.8.0.50 93646 username aminvpn 93646 mac 93646 bytes_out 0 93646 bytes_in 0 93646 station_ip 113.203.61.142 93646 port 10 93646 unique_id port 93646 remote_ip 10.8.0.6 93647 username aminvpn 93647 mac 93647 bytes_out 0 93647 bytes_in 0 93647 station_ip 83.122.131.205 93647 port 14 93647 unique_id port 93647 remote_ip 10.8.0.6 93648 username aminvpn 93648 mac 93648 bytes_out 0 93596 nas_port_type Virtual 93596 remote_ip 5.5.5.247 93597 username aminvpn 93597 mac 93597 bytes_out 0 93597 bytes_in 0 93597 station_ip 113.203.61.142 93597 port 8 93597 unique_id port 93597 remote_ip 10.8.0.6 93599 username alihosseini 93599 mac 93599 bytes_out 0 93599 bytes_in 0 93599 station_ip 5.120.52.60 93599 port 10 93599 unique_id port 93599 remote_ip 10.8.0.46 93601 username aminvpn 93601 mac 93601 bytes_out 45649 93601 bytes_in 152856 93601 station_ip 113.203.61.142 93601 port 8 93601 unique_id port 93601 remote_ip 10.8.0.6 93603 username aminvpn 93603 mac 93603 bytes_out 0 93603 bytes_in 0 93603 station_ip 113.203.61.142 93603 port 8 93603 unique_id port 93603 remote_ip 10.8.0.6 93604 username aminvpn 93604 mac 93604 bytes_out 0 93604 bytes_in 0 93604 station_ip 83.122.131.205 93604 port 11 93604 unique_id port 93604 remote_ip 10.8.0.6 93606 username aminvpn 93606 mac 93606 bytes_out 0 93606 bytes_in 0 93606 station_ip 83.122.131.205 93606 port 11 93606 unique_id port 93606 remote_ip 10.8.0.6 93615 username forozande 93615 unique_id port 93615 terminate_cause User-Request 93615 bytes_out 25757 93615 bytes_in 263057 93615 station_ip 83.122.178.80 93615 port 15728663 93615 nas_port_type Virtual 93615 remote_ip 5.5.5.245 93617 username jamali 93617 kill_reason Another user logged on this global unique id 93617 mac 93617 bytes_out 0 93617 bytes_in 0 93617 station_ip 83.123.174.85 93617 port 8 93617 unique_id port 93617 remote_ip 10.8.0.50 93618 username jamali 93618 mac 93618 bytes_out 0 93618 bytes_in 0 93618 station_ip 83.123.174.85 93618 port 8 93618 unique_id port 93629 username heydari 93629 unique_id port 93629 terminate_cause User-Request 93629 bytes_out 326522 93629 bytes_in 1309298 93629 station_ip 5.119.122.2 93629 port 15728669 93629 nas_port_type Virtual 93629 remote_ip 5.5.5.240 93633 username jamali 93633 mac 93633 bytes_out 0 93633 bytes_in 0 93633 station_ip 83.123.174.85 93633 port 10 93633 unique_id port 93633 remote_ip 10.8.0.50 93635 username ahmadipour 93635 unique_id port 93635 terminate_cause Lost-Carrier 93635 bytes_out 194422 93635 bytes_in 3713301 93635 station_ip 113.203.64.26 93635 port 15728673 93635 nas_port_type Virtual 93635 remote_ip 5.5.5.238 93641 username amirabbas 93641 unique_id port 93641 terminate_cause User-Request 93641 bytes_out 14296663 93641 bytes_in 405557281 93641 station_ip 31.56.217.86 93641 port 15728667 93641 nas_port_type Virtual 93641 remote_ip 5.5.5.242 93644 username aminvpn 93644 mac 93644 bytes_out 0 93644 bytes_in 0 93644 station_ip 113.203.61.142 93644 port 10 93644 unique_id port 93644 remote_ip 10.8.0.6 93645 username aminvpn 93645 mac 93645 bytes_out 0 93645 bytes_in 0 93645 station_ip 83.122.131.205 93645 port 14 93645 unique_id port 93645 remote_ip 10.8.0.6 93649 username alireza1 93649 unique_id port 93649 terminate_cause User-Request 93649 bytes_out 106600 93649 bytes_in 447717 93649 station_ip 5.120.170.223 93649 port 15728675 93649 nas_port_type Virtual 93649 remote_ip 5.5.5.252 93651 username mehdizare 93651 mac 93651 bytes_out 121103 93651 bytes_in 228216 93651 station_ip 5.120.189.182 93651 port 11 93651 unique_id port 93651 remote_ip 10.8.0.70 93654 username aminvpn 93654 mac 93654 bytes_out 0 93654 bytes_in 0 93654 station_ip 113.203.61.142 93654 port 11 93654 unique_id port 93654 remote_ip 10.8.0.6 93655 username madadi2 93605 unique_id port 93605 remote_ip 10.8.0.6 93607 username avaanna 93607 unique_id port 93607 terminate_cause User-Request 93607 bytes_out 220952 93607 bytes_in 6371996 93607 station_ip 83.122.71.98 93607 port 15728656 93607 nas_port_type Virtual 93607 remote_ip 5.5.5.247 93609 username alireza1 93609 unique_id port 93609 terminate_cause User-Request 93609 bytes_out 16809 93609 bytes_in 66831 93609 station_ip 5.120.170.223 93609 port 15728657 93609 nas_port_type Virtual 93609 remote_ip 5.5.5.252 93610 username aminvpn 93610 mac 93610 bytes_out 0 93610 bytes_in 0 93610 station_ip 83.122.131.205 93610 port 8 93610 unique_id port 93610 remote_ip 10.8.0.6 93612 username forozande 93612 unique_id port 93612 terminate_cause User-Request 93612 bytes_out 22324 93612 bytes_in 74164 93612 station_ip 83.122.178.80 93612 port 15728660 93612 nas_port_type Virtual 93612 remote_ip 5.5.5.245 93613 username forozande 93613 unique_id port 93613 terminate_cause User-Request 93613 bytes_out 20451 93613 bytes_in 170522 93613 station_ip 83.122.178.80 93613 port 15728661 93613 nas_port_type Virtual 93613 remote_ip 5.5.5.245 93616 username alihosseini 93616 mac 93616 bytes_out 0 93616 bytes_in 0 93616 station_ip 5.120.52.60 93616 port 10 93616 unique_id port 93616 remote_ip 10.8.0.46 93620 username mohammadi 93620 mac 93620 bytes_out 0 93620 bytes_in 0 93620 station_ip 113.203.90.47 93620 port 8 93620 unique_id port 93620 remote_ip 10.8.0.62 93622 username safarpour 93622 unique_id port 93622 terminate_cause User-Request 93622 bytes_out 1496574 93622 bytes_in 31815230 93622 station_ip 151.235.94.49 93622 port 15728665 93622 nas_port_type Virtual 93622 remote_ip 5.5.5.243 93623 username alireza1 93623 unique_id port 93623 terminate_cause User-Request 93623 bytes_out 1562002 93623 bytes_in 11339187 93623 station_ip 5.120.170.223 93623 port 15728658 93623 nas_port_type Virtual 93623 remote_ip 5.5.5.252 93624 username aminvpn 93624 mac 93624 bytes_out 0 93624 bytes_in 0 93624 station_ip 113.203.61.142 93624 port 11 93624 unique_id port 93624 remote_ip 10.8.0.6 93626 username shokokian 93626 unique_id port 93626 terminate_cause User-Request 93626 bytes_out 137164 93626 bytes_in 1122337 93626 station_ip 31.59.40.136 93626 port 15728668 93626 nas_port_type Virtual 93626 remote_ip 5.5.5.241 93627 username jamali 93627 mac 93627 bytes_out 0 93627 bytes_in 0 93627 station_ip 83.123.174.85 93627 port 10 93627 unique_id port 93627 remote_ip 10.8.0.50 93628 username jamali 93628 mac 93628 bytes_out 0 93628 bytes_in 0 93628 station_ip 83.123.174.85 93628 port 11 93628 unique_id port 93628 remote_ip 10.8.0.50 93630 username mohammadi 93630 mac 93630 bytes_out 0 93630 bytes_in 0 93630 station_ip 113.203.111.143 93630 port 11 93630 unique_id port 93630 remote_ip 10.8.0.62 93636 username madadi2 93636 unique_id port 93636 terminate_cause Lost-Carrier 93636 bytes_out 2409022 93636 bytes_in 13145444 93636 station_ip 5.120.151.196 93636 port 15728652 93636 nas_port_type Virtual 93636 remote_ip 5.5.5.250 93638 username aminvpn 93638 mac 93638 bytes_out 0 93638 bytes_in 0 93638 station_ip 113.203.61.142 93638 port 8 93638 unique_id port 93638 remote_ip 10.8.0.6 93640 username aminvpn 93640 mac 93640 bytes_out 0 93640 bytes_in 0 93640 station_ip 113.203.61.142 93640 port 8 93640 unique_id port 93640 remote_ip 10.8.0.6 93643 username aminvpn 93643 mac 93643 bytes_out 469193 93643 bytes_in 6098167 93643 station_ip 83.122.131.205 93643 port 14 93643 unique_id port 93643 remote_ip 10.8.0.6 93653 username jamali 93653 mac 93653 bytes_out 0 93653 bytes_in 0 93653 station_ip 83.123.174.85 93653 port 8 93653 unique_id port 93653 remote_ip 10.8.0.50 93657 username mehdizare 93657 mac 93657 bytes_out 17079 93657 bytes_in 30168 93657 station_ip 5.120.189.182 93657 port 10 93657 unique_id port 93657 remote_ip 10.8.0.70 93658 username aminvpn 93658 mac 93658 bytes_out 106287 93658 bytes_in 176274 93658 station_ip 83.122.131.205 93658 port 8 93658 unique_id port 93658 remote_ip 10.8.0.6 93661 username mehdizare 93661 mac 93661 bytes_out 0 93661 bytes_in 0 93661 station_ip 5.120.189.182 93661 port 11 93661 unique_id port 93661 remote_ip 10.8.0.70 93669 username fallahi 93669 mac 93669 bytes_out 0 93669 bytes_in 0 93669 station_ip 83.123.237.51 93669 port 11 93669 unique_id port 93669 remote_ip 10.8.0.74 93674 username alihosseini 93674 mac 93674 bytes_out 0 93674 bytes_in 0 93674 station_ip 5.120.92.208 93674 port 10 93674 unique_id port 93674 remote_ip 10.8.0.46 93675 username alihosseini 93675 mac 93675 bytes_out 0 93675 bytes_in 0 93675 station_ip 5.120.92.208 93675 port 10 93675 unique_id port 93675 remote_ip 10.8.0.46 93678 username mehdizare 93678 mac 93678 bytes_out 153191 93678 bytes_in 187643 93678 station_ip 5.120.189.182 93678 port 10 93678 unique_id port 93678 remote_ip 10.8.0.70 93679 username alinezhad 93679 unique_id port 93679 terminate_cause User-Request 93679 bytes_out 0 93679 bytes_in 0 93679 station_ip 5.202.23.253 93679 port 15728684 93679 nas_port_type Virtual 93679 remote_ip 5.5.5.246 93681 username alihosseini 93681 mac 93681 bytes_out 0 93681 bytes_in 0 93681 station_ip 5.120.92.208 93681 port 11 93681 unique_id port 93681 remote_ip 10.8.0.46 93688 username alihosseini 93688 mac 93688 bytes_out 0 93688 bytes_in 0 93688 station_ip 5.120.92.208 93688 port 5 93688 unique_id port 93688 remote_ip 10.8.0.46 93689 username ksrkrgr 93689 unique_id port 93689 terminate_cause Lost-Carrier 93689 bytes_out 6340475 93689 bytes_in 109685960 93689 station_ip 151.234.20.33 93689 port 15728681 93689 nas_port_type Virtual 93689 remote_ip 5.5.5.235 93691 username mehdizare 93691 mac 93691 bytes_out 0 93691 bytes_in 0 93691 station_ip 5.120.189.182 93691 port 12 93691 unique_id port 93691 remote_ip 10.8.1.54 93695 username alihosseini 93695 mac 93695 bytes_out 0 93695 bytes_in 0 93695 station_ip 5.120.92.208 93695 port 13 93695 unique_id port 93695 remote_ip 10.8.1.34 93698 username jamali 93698 mac 93698 bytes_out 1853645 93698 bytes_in 17378415 93698 station_ip 83.123.174.85 93698 port 9 93698 unique_id port 93698 remote_ip 10.8.1.42 93702 username fariba 93702 mac 93702 bytes_out 0 93702 bytes_in 0 93702 station_ip 5.119.203.55 93702 port 11 93702 unique_id port 93702 remote_ip 10.8.1.46 93718 username mehdizare 93718 kill_reason Another user logged on this global unique id 93718 mac 93718 bytes_out 0 93718 bytes_in 0 93718 station_ip 5.120.189.182 93718 port 12 93718 unique_id port 93719 username heydari 93719 unique_id port 93719 terminate_cause User-Request 93719 bytes_out 100156 93719 bytes_in 300397 93719 station_ip 5.119.122.2 93719 port 15728694 93719 nas_port_type Virtual 93719 remote_ip 5.5.5.234 93724 username forozande 93724 unique_id port 93648 bytes_in 0 93648 station_ip 113.203.61.142 93648 port 10 93648 unique_id port 93648 remote_ip 10.8.0.6 93650 username heydari 93650 unique_id port 93650 terminate_cause Lost-Carrier 93650 bytes_out 126418 93650 bytes_in 736890 93650 station_ip 5.119.122.2 93650 port 15728674 93650 nas_port_type Virtual 93650 remote_ip 5.5.5.240 93652 username aminvpn 93652 mac 93652 bytes_out 0 93652 bytes_in 0 93652 station_ip 83.122.131.205 93652 port 14 93652 unique_id port 93652 remote_ip 10.8.0.6 93656 username kamali 93656 unique_id port 93656 terminate_cause User-Request 93656 bytes_out 131677 93656 bytes_in 158929 93656 station_ip 37.129.179.200 93656 port 15728677 93656 nas_port_type Virtual 93656 remote_ip 5.5.5.237 93663 username aminvpn 93663 mac 93663 bytes_out 0 93663 bytes_in 0 93663 station_ip 113.203.61.142 93663 port 11 93663 unique_id port 93663 remote_ip 10.8.0.6 93664 username jamali 93664 mac 93664 bytes_out 62215 93664 bytes_in 60067 93664 station_ip 83.123.174.85 93664 port 9 93664 unique_id port 93664 remote_ip 10.8.1.42 93665 username fallahi 93665 mac 93665 bytes_out 0 93665 bytes_in 0 93665 station_ip 83.123.237.51 93665 port 12 93665 unique_id port 93665 remote_ip 10.8.0.74 93666 username mohammadi 93666 mac 93666 bytes_out 0 93666 bytes_in 0 93666 station_ip 113.203.111.143 93666 port 10 93666 unique_id port 93666 remote_ip 10.8.0.62 93668 username mohammadi 93668 mac 93668 bytes_out 66108 93668 bytes_in 30506 93668 station_ip 113.203.111.143 93668 port 12 93668 unique_id port 93668 remote_ip 10.8.0.62 93671 username heydari 93671 unique_id port 93671 terminate_cause Lost-Carrier 93671 bytes_out 132580 93671 bytes_in 495143 93671 station_ip 5.119.122.2 93671 port 15728678 93671 nas_port_type Virtual 93671 remote_ip 5.5.5.240 93672 username mehdizare 93672 mac 93672 bytes_out 863096 93672 bytes_in 11608935 93672 station_ip 5.120.189.182 93672 port 14 93672 unique_id port 93672 remote_ip 10.8.0.70 93673 username alihosseini 93673 mac 93673 bytes_out 0 93673 bytes_in 0 93673 station_ip 5.120.92.208 93673 port 13 93673 unique_id port 93673 remote_ip 10.8.0.46 93676 username alihosseini 93676 mac 93676 bytes_out 0 93676 bytes_in 0 93676 station_ip 5.120.92.208 93676 port 11 93676 unique_id port 93676 remote_ip 10.8.0.46 93677 username heydari 93677 unique_id port 93677 terminate_cause User-Request 93677 bytes_out 57036 93677 bytes_in 289526 93677 station_ip 5.119.122.2 93677 port 15728682 93677 nas_port_type Virtual 93677 remote_ip 5.5.5.234 93683 username alihosseini 93683 mac 93683 bytes_out 0 93683 bytes_in 0 93683 station_ip 5.120.92.208 93683 port 8 93683 unique_id port 93683 remote_ip 10.8.0.46 93684 username alihosseini 93684 mac 93684 bytes_out 0 93684 bytes_in 0 93684 station_ip 5.120.92.208 93684 port 8 93684 unique_id port 93684 remote_ip 10.8.0.46 93687 username fariba 93687 mac 93687 bytes_out 1973 93687 bytes_in 4362 93687 station_ip 5.119.203.55 93687 port 8 93687 unique_id port 93687 remote_ip 10.8.0.10 93690 username mehdizare 93690 kill_reason Another user logged on this global unique id 93690 mac 93690 bytes_out 0 93690 bytes_in 0 93690 station_ip 5.120.189.182 93690 port 12 93690 unique_id port 93690 remote_ip 10.8.0.70 93694 username alireza1 93694 unique_id port 93694 terminate_cause Lost-Carrier 93694 bytes_out 750688 93694 bytes_in 2632278 93694 station_ip 5.120.170.223 93655 unique_id port 93655 terminate_cause Lost-Carrier 93655 bytes_out 325188 93655 bytes_in 607328 93655 station_ip 5.119.222.145 93655 port 15728672 93655 nas_port_type Virtual 93655 remote_ip 5.5.5.239 93659 username aminvpn 93659 mac 93659 bytes_out 0 93659 bytes_in 0 93659 station_ip 113.203.61.142 93659 port 10 93659 unique_id port 93659 remote_ip 10.8.0.6 93660 username ksrkrgr 93660 unique_id port 93660 terminate_cause User-Request 93660 bytes_out 0 93660 bytes_in 0 93660 station_ip 151.234.20.33 93660 port 15728680 93660 nas_port_type Virtual 93660 remote_ip 5.5.5.235 93662 username aminvpn 93662 mac 93662 bytes_out 44682 93662 bytes_in 82276 93662 station_ip 83.122.131.205 93662 port 8 93662 unique_id port 93662 remote_ip 10.8.0.6 93667 username jamali 93667 mac 93667 bytes_out 23044 93667 bytes_in 21346 93667 station_ip 83.123.174.85 93667 port 9 93667 unique_id port 93667 remote_ip 10.8.1.42 93670 username ahmadipour 93670 unique_id port 93670 terminate_cause Lost-Carrier 93670 bytes_out 147895 93670 bytes_in 208452 93670 station_ip 113.203.64.26 93670 port 15728683 93670 nas_port_type Virtual 93670 remote_ip 5.5.5.238 93680 username aminvpn 93680 mac 93680 bytes_out 298424 93680 bytes_in 1776544 93680 station_ip 83.122.131.205 93680 port 8 93680 unique_id port 93680 remote_ip 10.8.0.6 93682 username aminvpn 93682 mac 93682 bytes_out 12303 93682 bytes_in 14796 93682 station_ip 83.122.131.205 93682 port 10 93682 unique_id port 93682 remote_ip 10.8.0.6 93685 username alihosseini 93685 mac 93685 bytes_out 0 93685 bytes_in 0 93685 station_ip 5.120.92.208 93685 port 8 93685 unique_id port 93685 remote_ip 10.8.0.46 93686 username fariba 93686 mac 93686 bytes_out 376861 93686 bytes_in 347183 93686 station_ip 5.119.203.55 93686 port 5 93686 unique_id port 93686 remote_ip 10.8.0.10 93692 username fallahi 93692 mac 93692 bytes_out 0 93692 bytes_in 0 93692 station_ip 83.123.237.51 93692 port 5 93692 unique_id port 93692 remote_ip 10.8.0.74 93693 username madadi2 93693 unique_id port 93693 terminate_cause Lost-Carrier 93693 bytes_out 24224 93693 bytes_in 256130 93693 station_ip 5.119.98.204 93693 port 15728685 93693 nas_port_type Virtual 93693 remote_ip 5.5.5.233 93697 username amir 93697 unique_id port 93697 terminate_cause Lost-Carrier 93697 bytes_out 330215 93697 bytes_in 3254026 93697 station_ip 46.225.211.219 93697 port 15728679 93697 nas_port_type Virtual 93697 remote_ip 5.5.5.236 93699 username alihosseini 93699 mac 93699 bytes_out 0 93699 bytes_in 0 93699 station_ip 5.120.92.208 93699 port 9 93699 unique_id port 93699 remote_ip 10.8.1.34 93701 username fariba 93701 mac 93701 bytes_out 55303 93701 bytes_in 57934 93701 station_ip 5.119.203.55 93701 port 11 93701 unique_id port 93701 remote_ip 10.8.1.46 93703 username hoorieh 93703 mac 93703 bytes_out 0 93703 bytes_in 0 93703 station_ip 46.225.210.208 93703 port 10 93703 unique_id port 93703 remote_ip 10.8.0.78 93705 username mohammadi 93705 mac 93705 bytes_out 57729 93705 bytes_in 160791 93705 station_ip 113.203.66.251 93705 port 8 93705 unique_id port 93705 remote_ip 10.8.0.62 93706 username hoorieh 93706 mac 93706 bytes_out 15229 93706 bytes_in 78656 93706 station_ip 46.225.210.208 93706 port 8 93706 unique_id port 93706 remote_ip 10.8.0.78 93707 username khalili 93707 unique_id port 93707 terminate_cause Lost-Carrier 93707 bytes_out 2729978 93694 port 15728676 93694 nas_port_type Virtual 93694 remote_ip 5.5.5.252 93696 username fallahi 93696 mac 93696 bytes_out 154578 93696 bytes_in 394851 93696 station_ip 83.123.237.51 93696 port 5 93696 unique_id port 93696 remote_ip 10.8.0.74 93700 username forozande 93700 unique_id port 93700 terminate_cause User-Request 93700 bytes_out 184066 93700 bytes_in 808965 93700 station_ip 37.129.147.199 93700 port 15728686 93700 nas_port_type Virtual 93700 remote_ip 5.5.5.232 93704 username alihosseini 93704 mac 93704 bytes_out 0 93704 bytes_in 0 93704 station_ip 5.120.92.208 93704 port 11 93704 unique_id port 93704 remote_ip 10.8.0.46 93708 username alihosseini 93708 mac 93708 bytes_out 13577 93708 bytes_in 17663 93708 station_ip 5.120.92.208 93708 port 8 93708 unique_id port 93708 remote_ip 10.8.0.46 93710 username fariba 93710 mac 93710 bytes_out 16845 93710 bytes_in 23249 93710 station_ip 5.119.203.55 93710 port 5 93710 unique_id port 93710 remote_ip 10.8.0.10 188680 mac 188680 bytes_out 0 188680 bytes_in 0 188680 station_ip 5.120.128.95 188680 port 361 188680 unique_id port 188680 remote_ip 10.8.0.250 188683 username sekonji0496 188683 mac 93717 username mehdizare 93717 kill_reason Another user logged on this global unique id 93717 mac 93717 bytes_out 0 93717 bytes_in 0 93717 station_ip 5.120.189.182 93717 port 12 93717 unique_id port 93717 remote_ip 10.8.1.54 93722 username mammad 93722 unique_id port 93722 terminate_cause Lost-Carrier 93722 bytes_out 1279116 93722 bytes_in 14243608 93722 station_ip 5.233.56.194 93722 port 15728691 93722 nas_port_type Virtual 93722 remote_ip 5.5.5.230 93723 username mehdizare 93723 kill_reason Another user logged on this global unique id 93723 mac 93723 bytes_out 0 93723 bytes_in 0 93723 station_ip 5.120.189.182 93723 port 12 93723 unique_id port 93733 username alireza1 93733 unique_id port 93733 terminate_cause User-Request 93733 bytes_out 14665986 93733 bytes_in 12925015 93733 station_ip 5.120.170.223 93733 port 15728693 93733 nas_port_type Virtual 93733 remote_ip 5.5.5.252 93736 username alihosseini 93736 mac 93736 bytes_out 192457 93736 bytes_in 2406672 93736 station_ip 5.120.37.120 93736 port 9 93736 unique_id port 93736 remote_ip 10.8.1.34 93738 username mehdizare 93738 mac 93738 bytes_out 0 93738 bytes_in 0 93738 station_ip 5.120.189.182 93738 port 12 93738 unique_id port 93739 username alireza1 93739 unique_id port 93739 terminate_cause Lost-Carrier 93739 bytes_out 366057 93739 bytes_in 1115616 93739 station_ip 5.120.170.223 93739 port 15728703 93739 nas_port_type Virtual 93739 remote_ip 5.5.5.252 93740 username asadi 93740 unique_id port 93740 terminate_cause User-Request 93740 bytes_out 68937 93740 bytes_in 976372 93740 station_ip 37.129.50.130 93740 port 15728707 93740 nas_port_type Virtual 93740 remote_ip 5.5.5.221 93741 username ahmadipour 93741 unique_id port 93741 terminate_cause Lost-Carrier 93741 bytes_out 1030416 93741 bytes_in 15061773 93741 station_ip 113.203.77.102 93741 port 15728708 93741 nas_port_type Virtual 93741 remote_ip 5.5.5.220 93746 username mammad 93746 unique_id port 93746 terminate_cause User-Request 93746 bytes_out 0 93746 bytes_in 0 93746 station_ip 2.183.241.223 93746 port 15728713 93746 nas_port_type Virtual 93746 remote_ip 5.5.5.225 93752 username heydari 93752 unique_id port 93752 terminate_cause User-Request 93752 bytes_out 113459 93752 bytes_in 341743 93752 station_ip 5.119.122.2 93752 port 15728717 93752 nas_port_type Virtual 188683 bytes_out 0 93707 bytes_in 40459759 93707 station_ip 5.120.156.152 93707 port 15728654 93707 nas_port_type Virtual 93707 remote_ip 5.5.5.248 93709 username alinezhad 93709 unique_id port 93709 terminate_cause User-Request 93709 bytes_out 0 93709 bytes_in 0 93709 station_ip 5.202.23.253 93709 port 15728687 93709 nas_port_type Virtual 93709 remote_ip 5.5.5.246 93711 username mammad 93711 unique_id port 93711 terminate_cause User-Request 93711 bytes_out 697622 93711 bytes_in 6271490 93711 station_ip 5.233.56.194 93711 port 15728689 93711 nas_port_type Virtual 93711 remote_ip 5.5.5.230 93712 username alihosseini 93712 mac 93712 bytes_out 2067225 93712 bytes_in 20579391 93712 station_ip 5.120.92.208 93712 port 8 93712 unique_id port 93712 remote_ip 10.8.0.46 93713 username alihosseini 93713 mac 93713 bytes_out 1932 93713 bytes_in 5718 93713 station_ip 5.120.92.208 93713 port 8 93713 unique_id port 93713 remote_ip 10.8.0.46 93714 username alihosseini 93714 mac 93714 bytes_out 0 93714 bytes_in 0 93714 station_ip 5.120.92.208 93714 port 11 93714 unique_id port 93714 remote_ip 10.8.1.34 93715 username jamali 93715 mac 93715 bytes_out 0 93715 bytes_in 0 93715 station_ip 83.123.174.85 93715 port 9 93715 unique_id port 93715 remote_ip 10.8.1.42 93720 username mehdizare 93720 kill_reason Another user logged on this global unique id 93720 mac 93720 bytes_out 0 93720 bytes_in 0 93720 station_ip 5.120.189.182 93720 port 12 93720 unique_id port 93721 username kamali 93721 kill_reason Relative expiration date has reached 93721 unique_id port 93721 bytes_out 0 93721 bytes_in 0 93721 station_ip 37.129.3.211 93721 port 15728696 93721 nas_port_type Virtual 93729 username ahmadi 93729 unique_id port 93729 terminate_cause User-Request 93729 bytes_out 0 93729 bytes_in 0 93729 station_ip 113.203.117.93 93729 port 15728701 93729 nas_port_type Virtual 93729 remote_ip 5.5.5.224 93730 username mahyaarabpour 93730 mac 93730 bytes_out 491781 93730 bytes_in 5654389 93730 station_ip 5.120.32.1 93730 port 8 93730 unique_id port 93730 remote_ip 10.8.0.54 93732 username alinezhad 93732 unique_id port 93732 terminate_cause User-Request 93732 bytes_out 0 93732 bytes_in 0 93732 station_ip 5.202.23.253 93732 port 15728702 93732 nas_port_type Virtual 93732 remote_ip 5.5.5.246 93734 username madadi2 93734 unique_id port 93734 terminate_cause Lost-Carrier 93734 bytes_out 903971 93734 bytes_in 5570574 93734 station_ip 5.120.188.35 93734 port 15728695 93734 nas_port_type Virtual 93734 remote_ip 5.5.5.227 93744 username alireza1 93744 unique_id port 93744 terminate_cause User-Request 93744 bytes_out 870392 93744 bytes_in 2718312 93744 station_ip 5.119.128.129 93744 port 15728706 93744 nas_port_type Virtual 93744 remote_ip 5.5.5.222 93748 username mammad 93748 unique_id port 93748 terminate_cause User-Request 93748 bytes_out 0 93748 bytes_in 0 93748 station_ip 2.183.241.223 93748 port 15728715 93748 nas_port_type Virtual 93748 remote_ip 5.5.5.225 93750 username mohammadi 93750 mac 93750 bytes_out 0 93750 bytes_in 0 93750 station_ip 113.203.58.175 93750 port 10 93750 unique_id port 93750 remote_ip 10.8.0.62 93758 username aminvpn 93758 unique_id port 93758 terminate_cause Lost-Carrier 93758 bytes_out 4088285 93758 bytes_in 73662654 93758 station_ip 5.120.161.231 93758 port 15728705 93758 nas_port_type Virtual 93758 remote_ip 5.5.5.223 93766 username mehdizare 93766 mac 93766 bytes_out 0 93766 bytes_in 0 93766 station_ip 5.120.189.182 93766 port 12 93766 unique_id port 93724 terminate_cause User-Request 93724 bytes_out 512649 93724 bytes_in 17499877 93724 station_ip 83.123.209.214 93724 port 15728697 93724 nas_port_type Virtual 93724 remote_ip 5.5.5.226 93725 username forozande 93725 unique_id port 93725 terminate_cause User-Request 93725 bytes_out 667125 93725 bytes_in 22865008 93725 station_ip 83.123.209.214 93725 port 15728698 93725 nas_port_type Virtual 93725 remote_ip 5.5.5.226 93726 username mehdizare 93726 kill_reason Another user logged on this global unique id 93726 mac 93726 bytes_out 0 93726 bytes_in 0 93726 station_ip 5.120.189.182 93726 port 12 93726 unique_id port 93727 username fariba 93727 kill_reason Another user logged on this global unique id 93727 mac 93727 bytes_out 0 93727 bytes_in 0 93727 station_ip 5.119.203.55 93727 port 5 93727 unique_id port 93727 remote_ip 10.8.0.10 93728 username fariba 93728 kill_reason Another user logged on this global unique id 93728 mac 93728 bytes_out 0 93728 bytes_in 0 93728 station_ip 5.119.203.55 93728 port 5 93728 unique_id port 93731 username mammad 93731 unique_id port 93731 terminate_cause User-Request 93731 bytes_out 1806894 93731 bytes_in 27292396 93731 station_ip 2.183.241.223 93731 port 15728700 93731 nas_port_type Virtual 93731 remote_ip 5.5.5.225 93735 username alihosseini 93735 mac 93735 bytes_out 3502394 93735 bytes_in 39298476 93735 station_ip 5.120.37.120 93735 port 9 93735 unique_id port 93735 remote_ip 10.8.1.34 93737 username mammad 93737 unique_id port 93737 terminate_cause User-Request 93737 bytes_out 806655 93737 bytes_in 11073607 93737 station_ip 2.183.241.223 93737 port 15728704 93737 nas_port_type Virtual 93737 remote_ip 5.5.5.225 188681 port 391 188681 unique_id port 188682 username zahra1101 188682 mac 188682 bytes_out 0 188682 bytes_in 0 188682 station_ip 5.120.128.95 188682 port 361 188682 unique_id port 93743 username madadi2 93743 unique_id port 93743 terminate_cause Lost-Carrier 93743 bytes_out 345329 93743 bytes_in 3483097 93743 station_ip 5.120.135.55 93743 port 15728709 93743 nas_port_type Virtual 93743 remote_ip 5.5.5.219 188682 remote_ip 10.8.0.250 188684 username sekonji0496 188684 mac 188684 bytes_out 0 188684 bytes_in 0 188684 station_ip 83.123.0.241 188684 port 361 188684 unique_id port 188684 remote_ip 10.8.0.62 93747 username mammad 93747 unique_id port 93747 terminate_cause User-Request 93747 bytes_out 0 93747 bytes_in 0 93747 station_ip 2.183.241.223 93747 port 15728714 93747 nas_port_type Virtual 93747 remote_ip 5.5.5.225 188685 username sekonji0496 188685 mac 188685 bytes_out 0 188685 bytes_in 0 188685 station_ip 83.123.0.241 188685 port 361 188685 unique_id port 188685 remote_ip 10.8.0.62 188688 username zahra1101 93751 username forozande 93751 unique_id port 93751 terminate_cause User-Request 93751 bytes_out 138913 93751 bytes_in 2185633 93751 station_ip 83.122.41.195 93751 port 15728719 93751 nas_port_type Virtual 93751 remote_ip 5.5.5.216 93753 username farhad 93753 unique_id port 93753 terminate_cause User-Request 93753 bytes_out 3400457 93753 bytes_in 51164048 93753 station_ip 5.119.62.20 93753 port 15728712 93753 nas_port_type Virtual 93753 remote_ip 5.5.5.217 93754 username mehdizare 93754 kill_reason Another user logged on this global unique id 93754 mac 93754 bytes_out 0 93754 bytes_in 0 93754 station_ip 5.120.189.182 93754 port 9 93754 unique_id port 93754 remote_ip 10.8.0.70 93757 username mammad 93757 unique_id port 93757 terminate_cause User-Request 93757 bytes_out 3963819 188688 kill_reason Maximum check online fails reached 188688 mac 188688 bytes_out 0 93752 remote_ip 5.5.5.234 93755 username safarpour 93755 unique_id port 93755 terminate_cause User-Request 93755 bytes_out 952990 93755 bytes_in 15535090 93755 station_ip 37.129.97.202 93755 port 15728720 93755 nas_port_type Virtual 93755 remote_ip 5.5.5.215 93756 username mohammadi 93756 mac 93756 bytes_out 434588 93756 bytes_in 3646240 93756 station_ip 113.203.58.175 93756 port 10 93756 unique_id port 93756 remote_ip 10.8.0.62 93760 username hoorieh 93760 kill_reason Another user logged on this global unique id 93760 mac 93760 bytes_out 0 93760 bytes_in 0 93760 station_ip 5.120.73.187 93760 port 8 93760 unique_id port 93760 remote_ip 10.8.0.78 93762 username alihosseini 93762 mac 93762 bytes_out 0 93762 bytes_in 0 93762 station_ip 5.120.97.107 93762 port 9 93762 unique_id port 93762 remote_ip 10.8.1.34 93764 username mehdizare 93764 mac 93764 bytes_out 7617 93764 bytes_in 13341 93764 station_ip 5.120.189.182 93764 port 12 93764 unique_id port 93764 remote_ip 10.8.1.54 93765 username mehdizare 93765 mac 93765 bytes_out 6220 93765 bytes_in 9552 93765 station_ip 5.120.189.182 93765 port 12 93765 unique_id port 93765 remote_ip 10.8.1.54 93769 username aminvpn 93769 mac 93769 bytes_out 0 93769 bytes_in 0 93769 station_ip 37.129.146.249 93769 port 8 93769 unique_id port 93769 remote_ip 10.8.0.6 93770 username ahmadipour 93770 unique_id port 93770 terminate_cause Lost-Carrier 93770 bytes_out 2676753 93770 bytes_in 56532476 93770 station_ip 113.203.114.30 93770 port 15728728 93770 nas_port_type Virtual 93770 remote_ip 5.5.5.211 93774 username alihosseini 93774 mac 93774 bytes_out 13214 93774 bytes_in 18148 93774 station_ip 5.120.97.107 93774 port 8 93774 unique_id port 93774 remote_ip 10.8.0.46 93776 username sadegh 93776 unique_id port 93776 terminate_cause Lost-Carrier 93776 bytes_out 22135109 93776 bytes_in 228276403 93776 station_ip 5.119.204.69 93776 port 15728690 93776 nas_port_type Virtual 93776 remote_ip 5.5.5.229 93778 username arabpour 93778 unique_id port 93778 terminate_cause User-Request 93778 bytes_out 686671 93778 bytes_in 22102291 93778 station_ip 83.122.110.251 93778 port 15728732 93778 nas_port_type Virtual 93778 remote_ip 5.5.5.210 93781 username mahdixz 93781 kill_reason Maximum check online fails reached 93781 unique_id port 93781 bytes_out 559071 93781 bytes_in 20712852 93781 station_ip 151.235.120.36 93781 port 15728733 93781 nas_port_type Virtual 93781 remote_ip 5.5.5.209 93782 username mammad 93782 unique_id port 93782 terminate_cause User-Request 93782 bytes_out 2726978 93782 bytes_in 19077592 93782 station_ip 2.183.241.223 93782 port 15728730 93782 nas_port_type Virtual 93782 remote_ip 5.5.5.225 93783 username alireza1 93783 unique_id port 93783 terminate_cause User-Request 93783 bytes_out 1174177 93783 bytes_in 3551557 93783 station_ip 5.119.128.129 93783 port 15728718 93783 nas_port_type Virtual 93783 remote_ip 5.5.5.222 93784 username mehdizare 93784 mac 93784 bytes_out 16278 93784 bytes_in 19282 93784 station_ip 5.120.189.182 93784 port 12 93784 unique_id port 93784 remote_ip 10.8.1.54 93786 username alireza1 93786 unique_id port 93786 terminate_cause User-Request 93786 bytes_out 35527 93786 bytes_in 80399 93786 station_ip 5.119.128.129 93786 port 15728734 93786 nas_port_type Virtual 93786 remote_ip 5.5.5.222 93789 username mehdizare 93789 mac 93789 bytes_out 9745 93789 bytes_in 16497 93789 station_ip 5.120.189.182 93789 port 9 93789 unique_id port 93789 remote_ip 10.8.1.54 93792 username mehdizare 93792 mac 93757 bytes_in 89495383 93757 station_ip 2.183.241.223 93757 port 15728716 93757 nas_port_type Virtual 93757 remote_ip 5.5.5.225 93759 username alinezhad 93759 unique_id port 93759 terminate_cause User-Request 93759 bytes_out 148194 93759 bytes_in 2918558 93759 station_ip 5.202.23.253 93759 port 15728723 93759 nas_port_type Virtual 93759 remote_ip 5.5.5.246 93761 username hoorieh 93761 mac 93761 bytes_out 0 93761 bytes_in 0 93761 station_ip 5.120.73.187 93761 port 8 93761 unique_id port 93763 username mahbobeh 93763 unique_id port 93763 terminate_cause Lost-Carrier 93763 bytes_out 654367 93763 bytes_in 11828362 93763 station_ip 37.129.170.47 93763 port 15728722 93763 nas_port_type Virtual 93763 remote_ip 5.5.5.213 93773 username tahmasebi 93773 unique_id port 93773 terminate_cause User-Request 93773 bytes_out 12918636 93773 bytes_in 382753622 93773 station_ip 5.119.122.142 93773 port 15728688 93773 nas_port_type Virtual 93773 remote_ip 5.5.5.231 93777 username mohammadi 93777 mac 93777 bytes_out 0 93777 bytes_in 0 93777 station_ip 113.203.90.55 93777 port 8 93777 unique_id port 93777 remote_ip 10.8.0.62 93787 username mehdizare 93787 mac 93787 bytes_out 0 93787 bytes_in 0 93787 station_ip 5.120.189.182 93787 port 9 93787 unique_id port 93787 remote_ip 10.8.1.54 93790 username mehdizare 93790 mac 93790 bytes_out 0 93790 bytes_in 0 93790 station_ip 5.120.189.182 93790 port 9 93790 unique_id port 93790 remote_ip 10.8.1.54 93793 username mammad 93793 unique_id port 93793 terminate_cause User-Request 93793 bytes_out 263155 93793 bytes_in 6013792 93793 station_ip 2.183.241.223 93793 port 15728740 93793 nas_port_type Virtual 93793 remote_ip 5.5.5.225 188683 bytes_in 0 188683 station_ip 83.123.0.241 188683 port 361 188683 unique_id port 188683 remote_ip 10.8.0.62 188686 username zahra1101 188686 mac 188686 bytes_out 0 188686 bytes_in 0 93800 username mohammadreza 93800 mac 93800 bytes_out 0 93800 bytes_in 0 93800 station_ip 5.233.82.170 93800 port 9 93800 unique_id port 93800 remote_ip 10.8.0.38 93801 username asadi 93801 unique_id port 93801 terminate_cause User-Request 93801 bytes_out 74639 93801 bytes_in 1326449 93801 station_ip 37.129.137.177 93801 port 15728742 93801 nas_port_type Virtual 93801 remote_ip 5.5.5.207 93803 username alinezhad 93803 unique_id port 93803 terminate_cause Lost-Carrier 93803 bytes_out 196223 93803 bytes_in 1402008 93803 station_ip 5.202.23.253 93803 port 15728739 93803 nas_port_type Virtual 93803 remote_ip 5.5.5.246 93805 username alireza1 93805 unique_id port 93805 terminate_cause User-Request 93805 bytes_out 27297 93805 bytes_in 96318 93805 station_ip 5.119.128.129 93805 port 15728745 93805 nas_port_type Virtual 93805 remote_ip 5.5.5.222 93810 username alinezhad 93810 unique_id port 93810 terminate_cause User-Request 93810 bytes_out 0 93810 bytes_in 0 93810 station_ip 113.203.72.118 93810 port 15728751 93810 nas_port_type Virtual 93810 remote_ip 5.5.5.202 93826 username jamali 93826 mac 93826 bytes_out 0 93826 bytes_in 0 93826 station_ip 83.122.244.83 93826 port 8 93826 unique_id port 93827 username mahbobeh 93827 unique_id port 93827 terminate_cause Lost-Carrier 93827 bytes_out 421059 93827 bytes_in 2792201 93827 station_ip 83.122.178.236 93827 port 15728760 93827 nas_port_type Virtual 93827 remote_ip 5.5.5.198 93829 username jamali 93829 mac 93829 bytes_out 444157 93829 bytes_in 1656360 93829 station_ip 83.122.244.83 93829 port 8 93829 unique_id port 188686 station_ip 5.120.128.95 93766 remote_ip 10.8.1.54 93767 username ahmadi 93767 unique_id port 93767 terminate_cause User-Request 93767 bytes_out 51904 93767 bytes_in 289454 93767 station_ip 113.203.107.98 93767 port 15728727 93767 nas_port_type Virtual 93767 remote_ip 5.5.5.212 93768 username alihosseini 93768 mac 93768 bytes_out 0 93768 bytes_in 0 93768 station_ip 5.120.97.107 93768 port 9 93768 unique_id port 93768 remote_ip 10.8.0.46 93771 username alihosseini 93771 mac 93771 bytes_out 0 93771 bytes_in 0 93771 station_ip 5.120.97.107 93771 port 8 93771 unique_id port 93771 remote_ip 10.8.0.46 93772 username alihosseini 93772 mac 93772 bytes_out 0 93772 bytes_in 0 93772 station_ip 5.120.97.107 93772 port 8 93772 unique_id port 93772 remote_ip 10.8.0.46 93775 username mobina 93775 kill_reason Relative expiration date has reached 93775 unique_id port 93775 bytes_out 0 93775 bytes_in 0 93775 station_ip 151.234.164.160 93775 port 15728729 93775 nas_port_type Virtual 93779 username mehdizare 93779 mac 93779 bytes_out 78703 93779 bytes_in 54696 93779 station_ip 5.120.189.182 93779 port 12 93779 unique_id port 93779 remote_ip 10.8.1.54 93780 username alihosseini 93780 mac 93780 bytes_out 68964 93780 bytes_in 74676 93780 station_ip 5.120.97.107 93780 port 9 93780 unique_id port 93780 remote_ip 10.8.1.34 93785 username farhad 93785 unique_id port 93785 terminate_cause Lost-Carrier 93785 bytes_out 13051058 93785 bytes_in 195320725 93785 station_ip 5.119.126.110 93785 port 15728721 93785 nas_port_type Virtual 93785 remote_ip 5.5.5.214 93788 username mehdizare 93788 mac 93788 bytes_out 0 93788 bytes_in 0 93788 station_ip 5.120.189.182 93788 port 9 93788 unique_id port 93788 remote_ip 10.8.1.54 93791 username mehdizare 93791 mac 93791 bytes_out 8776 93791 bytes_in 12746 93791 station_ip 5.120.189.182 93791 port 9 93791 unique_id port 93791 remote_ip 10.8.1.54 93796 username mehdizare 93796 mac 93796 bytes_out 0 93796 bytes_in 0 93796 station_ip 5.120.189.182 93796 port 9 93796 unique_id port 93796 remote_ip 10.8.0.70 93799 username mehdizare 93799 kill_reason Another user logged on this global unique id 93799 mac 93799 bytes_out 0 93799 bytes_in 0 93799 station_ip 5.120.189.182 93799 port 9 93799 unique_id port 93808 username alireza1 93808 unique_id port 93808 terminate_cause User-Request 93808 bytes_out 240468 93808 bytes_in 915572 93808 station_ip 5.119.128.129 93808 port 15728747 93808 nas_port_type Virtual 93808 remote_ip 5.5.5.204 93813 username mahdixz 93813 unique_id port 93813 terminate_cause User-Request 93813 bytes_out 2476719 93813 bytes_in 76134917 93813 station_ip 151.235.120.36 93813 port 15728752 93813 nas_port_type Virtual 93813 remote_ip 5.5.5.203 93815 username forozande 93815 unique_id port 93815 terminate_cause User-Request 93815 bytes_out 42857 93815 bytes_in 112792 93815 station_ip 37.129.85.238 93815 port 15728756 93815 nas_port_type Virtual 93815 remote_ip 5.5.5.200 93818 username forozande 93818 unique_id port 93818 terminate_cause User-Request 93818 bytes_out 32344 93818 bytes_in 268818 93818 station_ip 37.129.85.238 93818 port 15728757 93818 nas_port_type Virtual 93818 remote_ip 5.5.5.200 93819 username mohammadmahdi 93819 mac 93819 bytes_out 8557 93819 bytes_in 22270 93819 station_ip 5.119.207.67 93819 port 9 93819 unique_id port 93819 remote_ip 10.8.0.82 93820 username alireza1 93820 unique_id port 93820 terminate_cause User-Request 93820 bytes_out 601824 93820 bytes_in 1587879 93820 station_ip 5.119.128.129 93792 bytes_out 0 93792 bytes_in 0 93792 station_ip 5.120.189.182 93792 port 9 93792 unique_id port 93792 remote_ip 10.8.1.54 93794 username mehdizare 93794 mac 93794 bytes_out 0 93794 bytes_in 0 93794 station_ip 5.120.189.182 93794 port 9 93794 unique_id port 93794 remote_ip 10.8.1.54 93797 username alireza1 93797 unique_id port 93797 terminate_cause Lost-Carrier 93797 bytes_out 119857 93797 bytes_in 1557439 93797 station_ip 5.119.128.129 93797 port 15728738 93797 nas_port_type Virtual 93797 remote_ip 5.5.5.222 93798 username mehdizare 93798 mac 93798 bytes_out 9677 93798 bytes_in 13295 93798 station_ip 5.120.189.182 93798 port 10 93798 unique_id port 93798 remote_ip 10.8.0.70 93802 username mamal 93802 unique_id port 93802 terminate_cause User-Request 93802 bytes_out 6697632 93802 bytes_in 182210051 93802 station_ip 83.122.18.230 93802 port 15728741 93802 nas_port_type Virtual 93802 remote_ip 5.5.5.208 93804 username forozande 93804 unique_id port 93804 terminate_cause User-Request 93804 bytes_out 138486 93804 bytes_in 1137082 93804 station_ip 83.123.100.244 93804 port 15728746 93804 nas_port_type Virtual 93804 remote_ip 5.5.5.205 93806 username mahdixz 93806 unique_id port 93806 terminate_cause User-Request 93806 bytes_out 3613356 93806 bytes_in 78812374 93806 station_ip 151.235.120.36 93806 port 15728743 93806 nas_port_type Virtual 93806 remote_ip 5.5.5.209 93807 username mahdixz 93807 unique_id port 93807 terminate_cause User-Request 93807 bytes_out 0 93807 bytes_in 0 93807 station_ip 151.235.120.36 93807 port 15728749 93807 nas_port_type Virtual 93807 remote_ip 5.5.5.203 93809 username mahdixz 93809 unique_id port 93809 terminate_cause Lost-Carrier 93809 bytes_out 144368 93809 bytes_in 2394680 93809 station_ip 151.235.120.36 93809 port 15728748 93809 nas_port_type Virtual 93809 remote_ip 5.5.5.209 93811 username alireza1 93811 unique_id port 93811 terminate_cause User-Request 93811 bytes_out 97620 93811 bytes_in 354766 93811 station_ip 5.119.128.129 93811 port 15728750 93811 nas_port_type Virtual 93811 remote_ip 5.5.5.204 93812 username alireza1 93812 unique_id port 93812 terminate_cause User-Request 93812 bytes_out 0 93812 bytes_in 0 93812 station_ip 5.119.128.129 93812 port 15728753 93812 nas_port_type Virtual 93812 remote_ip 5.5.5.204 93814 username mahdixz 93814 kill_reason Maximum check online fails reached 93814 unique_id port 93814 bytes_out 254982 93814 bytes_in 3960385 93814 station_ip 151.235.120.36 93814 port 15728755 93814 nas_port_type Virtual 93814 remote_ip 5.5.5.203 93816 username mohammadmahdi 93816 mac 93816 bytes_out 0 93816 bytes_in 0 93816 station_ip 5.119.207.67 93816 port 9 93816 unique_id port 93816 remote_ip 10.8.0.82 93817 username jamali 93817 mac 93817 bytes_out 2702861 93817 bytes_in 38849377 93817 station_ip 83.122.244.83 93817 port 8 93817 unique_id port 93817 remote_ip 10.8.0.50 93825 username mohammadmahdi 93825 mac 93825 bytes_out 1251626 93825 bytes_in 25990056 93825 station_ip 37.129.113.180 93825 port 10 93825 unique_id port 93825 remote_ip 10.8.0.82 93830 username mohammadi 93830 mac 93830 bytes_out 155315 93830 bytes_in 1216996 93830 station_ip 113.203.61.75 93830 port 10 93830 unique_id port 93830 remote_ip 10.8.0.62 93834 username mirzaei 93834 mac 93834 bytes_out 0 93834 bytes_in 0 93834 station_ip 5.119.166.186 93834 port 11 93834 unique_id port 93834 remote_ip 10.8.1.14 93835 username madadi2 93835 unique_id port 93835 terminate_cause Lost-Carrier 93835 bytes_out 171495 93820 port 15728754 93820 nas_port_type Virtual 93820 remote_ip 5.5.5.201 93821 username alireza1 93821 unique_id port 93821 terminate_cause Lost-Carrier 93821 bytes_out 438785 93821 bytes_in 635956 93821 station_ip 5.119.128.129 93821 port 15728758 93821 nas_port_type Virtual 93821 remote_ip 5.5.5.204 93822 username aminvpn 93822 unique_id port 93822 terminate_cause Lost-Carrier 93822 bytes_out 120595 93822 bytes_in 1019676 93822 station_ip 5.120.80.238 93822 port 15728759 93822 nas_port_type Virtual 93822 remote_ip 5.5.5.199 93823 username jamali 93823 kill_reason Another user logged on this global unique id 93823 mac 93823 bytes_out 0 93823 bytes_in 0 93823 station_ip 83.122.244.83 93823 port 8 93823 unique_id port 93823 remote_ip 10.8.0.50 93824 username ahmadi 93824 unique_id port 93824 terminate_cause User-Request 93824 bytes_out 0 93824 bytes_in 0 93824 station_ip 113.203.107.98 93824 port 15728762 93824 nas_port_type Virtual 93824 remote_ip 5.5.5.212 93828 username alireza1 93828 unique_id port 93828 terminate_cause Lost-Carrier 93828 bytes_out 34740 93828 bytes_in 250742 93828 station_ip 5.119.128.129 93828 port 15728763 93828 nas_port_type Virtual 93828 remote_ip 5.5.5.201 93831 username mohammadi 93831 mac 93831 bytes_out 13917 93831 bytes_in 26928 93831 station_ip 113.203.61.75 93831 port 8 93831 unique_id port 93831 remote_ip 10.8.0.62 93832 username mohammadmahdi 93832 mac 93832 bytes_out 303885 93832 bytes_in 533976 93832 station_ip 37.129.113.180 93832 port 8 93832 unique_id port 93832 remote_ip 10.8.0.82 188686 port 392 188686 unique_id port 188686 remote_ip 10.8.0.250 188687 username zahra1101 188687 mac 188687 bytes_out 0 188687 bytes_in 0 188687 station_ip 5.120.128.95 188687 port 392 93837 username alireza1 93837 unique_id port 93837 terminate_cause User-Request 93837 bytes_out 183030 93837 bytes_in 542046 93837 station_ip 5.119.128.129 93837 port 15728766 93837 nas_port_type Virtual 93837 remote_ip 5.5.5.201 93841 username alireza1 93841 unique_id port 93841 terminate_cause Lost-Carrier 93841 bytes_out 54017 93841 bytes_in 285919 93841 station_ip 5.119.128.129 93841 port 15728771 93841 nas_port_type Virtual 93841 remote_ip 5.5.5.195 93843 username mohammadi 93843 mac 93843 bytes_out 0 93843 bytes_in 0 93843 station_ip 113.203.61.75 93843 port 12 93843 unique_id port 93843 remote_ip 10.8.0.62 93851 username arman 93851 unique_id port 93851 terminate_cause Lost-Carrier 93851 bytes_out 27023414 93851 bytes_in 799710040 93851 station_ip 5.120.119.163 93851 port 15728744 93851 nas_port_type Virtual 93851 remote_ip 5.5.5.206 93852 username madadi2 93852 unique_id port 93852 terminate_cause User-Request 93852 bytes_out 0 93852 bytes_in 0 93852 station_ip 5.119.83.103 93852 port 15728779 93852 nas_port_type Virtual 93852 remote_ip 5.5.5.189 93856 username forozande 93856 unique_id port 93856 terminate_cause User-Request 93856 bytes_out 153468 93856 bytes_in 744482 93856 station_ip 113.203.48.144 93856 port 15728781 93856 nas_port_type Virtual 93856 remote_ip 5.5.5.188 93858 username mohammadi 93858 mac 93858 bytes_out 247119 93858 bytes_in 985965 93858 station_ip 113.203.61.75 93858 port 10 93858 unique_id port 93858 remote_ip 10.8.0.62 93863 username aminvpn 93863 mac 93863 bytes_out 0 93863 bytes_in 0 93863 station_ip 37.129.209.1 93863 port 8 93863 unique_id port 93863 remote_ip 10.8.0.6 93866 username arabpour 93866 unique_id port 93866 terminate_cause User-Request 93866 bytes_out 510452 188687 unique_id port 93829 remote_ip 10.8.0.50 93838 username mohammadi 93838 mac 93838 bytes_out 0 93838 bytes_in 0 93838 station_ip 113.203.61.75 93838 port 10 93838 unique_id port 93838 remote_ip 10.8.0.62 93840 username alireza1 93840 unique_id port 93840 terminate_cause Lost-Carrier 93840 bytes_out 12199 93840 bytes_in 164921 93840 station_ip 5.119.128.129 93840 port 15728770 93840 nas_port_type Virtual 93840 remote_ip 5.5.5.201 93842 username jamali 93842 mac 93842 bytes_out 0 93842 bytes_in 0 93842 station_ip 83.122.244.83 93842 port 12 93842 unique_id port 93842 remote_ip 10.8.1.42 93845 username aminvpn 93845 unique_id port 93845 terminate_cause Lost-Carrier 93845 bytes_out 237131 93845 bytes_in 563388 93845 station_ip 5.120.80.238 93845 port 15728776 93845 nas_port_type Virtual 93845 remote_ip 5.5.5.199 93847 username jamali 93847 mac 93847 bytes_out 27778285 93847 bytes_in 3415831 93847 station_ip 83.122.244.83 93847 port 10 93847 unique_id port 93847 remote_ip 10.8.0.50 93848 username alireza1 93848 unique_id port 93848 terminate_cause User-Request 93848 bytes_out 237644 93848 bytes_in 620679 93848 station_ip 5.119.128.129 93848 port 15728775 93848 nas_port_type Virtual 93848 remote_ip 5.5.5.195 93849 username avaanna 93849 unique_id port 93849 terminate_cause User-Request 93849 bytes_out 755 93849 bytes_in 3612 93849 station_ip 37.129.205.246 93849 port 15728778 93849 nas_port_type Virtual 93849 remote_ip 5.5.5.190 93853 username mohammadi 93853 mac 93853 bytes_out 0 93853 bytes_in 0 93853 station_ip 113.203.61.75 93853 port 10 93853 unique_id port 93853 remote_ip 10.8.0.62 93854 username madadi2 93854 unique_id port 93854 terminate_cause Lost-Carrier 93854 bytes_out 350339 93854 bytes_in 1592396 93854 station_ip 5.119.73.96 93854 port 15728772 93854 nas_port_type Virtual 93854 remote_ip 5.5.5.194 93862 username aminvpn 93862 mac 93862 bytes_out 0 93862 bytes_in 0 93862 station_ip 37.129.209.1 93862 port 8 93862 unique_id port 93862 remote_ip 10.8.0.6 93865 username aminvpn 93865 kill_reason Another user logged on this global unique id 93865 mac 93865 bytes_out 0 93865 bytes_in 0 93865 station_ip 37.129.209.1 93865 port 12 93865 unique_id port 93865 remote_ip 10.8.0.6 93868 username mohammadi 93868 mac 93868 bytes_out 0 93868 bytes_in 0 93868 station_ip 113.203.61.75 93868 port 8 93868 unique_id port 93868 remote_ip 10.8.0.62 93870 username forozande 93870 unique_id port 93870 terminate_cause User-Request 93870 bytes_out 42671 93870 bytes_in 223081 93870 station_ip 37.129.246.188 93870 port 15728786 93870 nas_port_type Virtual 93870 remote_ip 5.5.5.185 93877 username alihosseini 93877 mac 93877 bytes_out 4562274 93877 bytes_in 45960609 93877 station_ip 5.119.243.216 93877 port 11 93877 unique_id port 93877 remote_ip 10.8.1.34 93879 username ahmadi 93879 unique_id port 93879 terminate_cause User-Request 93879 bytes_out 855937 93879 bytes_in 5335046 93879 station_ip 113.203.5.198 93879 port 15728789 93879 nas_port_type Virtual 93879 remote_ip 5.5.5.182 93880 username mahbobeh 93880 unique_id port 93880 terminate_cause Lost-Carrier 93880 bytes_out 2682789 93880 bytes_in 51278327 93880 station_ip 83.122.228.48 93880 port 15728780 93880 nas_port_type Virtual 93880 remote_ip 5.5.5.192 93882 username alihosseini 93882 mac 93882 bytes_out 0 93882 bytes_in 0 93882 station_ip 5.119.243.216 93882 port 8 93882 unique_id port 93882 remote_ip 10.8.0.46 93883 username mohammadi 93883 mac 93883 bytes_out 228702 93835 bytes_in 1880147 93835 station_ip 5.119.221.220 93835 port 15728765 93835 nas_port_type Virtual 93835 remote_ip 5.5.5.196 93836 username mohammadi 93836 mac 93836 bytes_out 0 93836 bytes_in 0 93836 station_ip 113.203.61.75 93836 port 10 93836 unique_id port 93836 remote_ip 10.8.0.62 93839 username mohammadi 93839 mac 93839 bytes_out 0 93839 bytes_in 0 93839 station_ip 113.203.61.75 93839 port 10 93839 unique_id port 93839 remote_ip 10.8.0.62 93844 username mahbobeh 93844 unique_id port 93844 terminate_cause Lost-Carrier 93844 bytes_out 307102 93844 bytes_in 2108669 93844 station_ip 83.122.228.48 93844 port 15728774 93844 nas_port_type Virtual 93844 remote_ip 5.5.5.192 93846 username ahmadipour 93846 unique_id port 93846 terminate_cause Lost-Carrier 93846 bytes_out 1356191 93846 bytes_in 28826818 93846 station_ip 113.203.80.2 93846 port 15728773 93846 nas_port_type Virtual 93846 remote_ip 5.5.5.193 93850 username mirzaei 93850 kill_reason Another user logged on this global unique id 93850 mac 93850 bytes_out 0 93850 bytes_in 0 93850 station_ip 5.119.166.186 93850 port 11 93850 unique_id port 93850 remote_ip 10.8.0.14 93855 username mohammadi 93855 mac 93855 bytes_out 0 93855 bytes_in 0 93855 station_ip 113.203.61.75 93855 port 12 93855 unique_id port 93855 remote_ip 10.8.0.62 93857 username mohammadi 93857 mac 93857 bytes_out 56264 93857 bytes_in 49042 93857 station_ip 113.203.61.75 93857 port 10 93857 unique_id port 93857 remote_ip 10.8.0.62 93859 username forozande 93859 unique_id port 93859 terminate_cause User-Request 93859 bytes_out 44887 93859 bytes_in 50388 93859 station_ip 113.203.48.144 93859 port 15728783 93859 nas_port_type Virtual 93859 remote_ip 5.5.5.188 93860 username aminvpn 93860 mac 93860 bytes_out 0 93860 bytes_in 0 93860 station_ip 37.129.209.1 93860 port 8 93860 unique_id port 93860 remote_ip 10.8.0.6 93861 username aminvpn 93861 mac 93861 bytes_out 0 93861 bytes_in 0 93861 station_ip 37.129.209.1 93861 port 12 93861 unique_id port 93861 remote_ip 10.8.0.6 93864 username mohammadi 93864 mac 93864 bytes_out 0 93864 bytes_in 0 93864 station_ip 113.203.61.75 93864 port 10 93864 unique_id port 93864 remote_ip 10.8.0.62 93867 username aminvpn 93867 mac 93867 bytes_out 38293 93867 bytes_in 67056 93867 station_ip 37.129.209.1 93867 port 12 93867 unique_id port 93867 remote_ip 10.8.1.6 93869 username forozande 93869 unique_id port 93869 terminate_cause User-Request 93869 bytes_out 11516 93869 bytes_in 19834 93869 station_ip 83.123.27.22 93869 port 15728785 93869 nas_port_type Virtual 93869 remote_ip 5.5.5.186 93871 username madadi2 93871 unique_id port 93871 terminate_cause Lost-Carrier 93871 bytes_out 183101 93871 bytes_in 509840 93871 station_ip 5.119.83.103 93871 port 15728782 93871 nas_port_type Virtual 93871 remote_ip 5.5.5.189 93875 username mohammadi 93875 mac 93875 bytes_out 0 93875 bytes_in 0 93875 station_ip 113.203.61.75 93875 port 8 93875 unique_id port 93875 remote_ip 10.8.0.62 93876 username alihosseini 93876 mac 93876 bytes_out 1494336 93876 bytes_in 12044482 93876 station_ip 5.119.243.216 93876 port 11 93876 unique_id port 93876 remote_ip 10.8.1.34 93878 username hoorieh 93878 mac 93878 bytes_out 0 93878 bytes_in 0 93878 station_ip 5.119.98.162 93878 port 10 93878 unique_id port 93878 remote_ip 10.8.0.78 188687 remote_ip 10.8.0.250 188689 username zahra1101 188689 mac 188689 bytes_out 0 93866 bytes_in 16471550 93866 station_ip 83.122.208.64 93866 port 15728784 93866 nas_port_type Virtual 93866 remote_ip 5.5.5.187 93872 username mohammadi 93872 mac 93872 bytes_out 0 93872 bytes_in 0 93872 station_ip 113.203.61.75 93872 port 8 93872 unique_id port 93872 remote_ip 10.8.0.62 93873 username askari 93873 mac 93873 bytes_out 696731 93873 bytes_in 6518893 93873 station_ip 5.119.210.138 93873 port 10 93873 unique_id port 93873 remote_ip 10.8.0.34 93874 username hoorieh 93874 mac 93874 bytes_out 0 93874 bytes_in 0 93874 station_ip 5.119.98.162 93874 port 9 93874 unique_id port 93874 remote_ip 10.8.0.78 93881 username madadi2 93881 unique_id port 93881 terminate_cause Lost-Carrier 93881 bytes_out 65937 93881 bytes_in 251375 93881 station_ip 5.120.44.124 93881 port 15728787 93881 nas_port_type Virtual 93881 remote_ip 5.5.5.184 93884 username alihosseini 93884 mac 93884 bytes_out 0 93884 bytes_in 0 93884 station_ip 5.119.243.216 93884 port 8 93884 unique_id port 93884 remote_ip 10.8.0.46 93885 username aminvpn 93885 mac 93885 bytes_out 0 93885 bytes_in 0 93885 station_ip 37.129.209.1 93885 port 11 93885 unique_id port 93885 remote_ip 10.8.1.6 93887 username tahmasebi 93887 unique_id port 93887 terminate_cause User-Request 93887 bytes_out 390223 93887 bytes_in 10608720 93887 station_ip 5.120.21.51 93887 port 15728790 93887 nas_port_type Virtual 93887 remote_ip 5.5.5.181 93888 username alihosseini 93888 mac 93888 bytes_out 23987 93888 bytes_in 180357 93888 station_ip 5.119.243.216 93888 port 8 93888 unique_id port 93888 remote_ip 10.8.0.46 93890 username alihosseini 93890 mac 93890 bytes_out 0 93890 bytes_in 0 93890 station_ip 5.119.243.216 93890 port 11 93890 unique_id port 93890 remote_ip 10.8.1.34 93891 username caferibar 93891 kill_reason Relative expiration date has reached 93891 unique_id port 93891 bytes_out 0 93891 bytes_in 0 93891 station_ip 5.119.204.69 93891 port 15728793 93891 nas_port_type Virtual 93892 username alihosseini 93892 mac 93892 bytes_out 0 93892 bytes_in 0 93892 station_ip 5.119.243.216 93892 port 11 93892 unique_id port 93892 remote_ip 10.8.1.34 93895 username mohammadi 93895 mac 93895 bytes_out 0 93895 bytes_in 0 93895 station_ip 113.203.61.75 93895 port 8 93895 unique_id port 93895 remote_ip 10.8.0.62 93899 username alihosseini 93899 mac 93899 bytes_out 0 93899 bytes_in 0 93899 station_ip 5.119.236.241 93899 port 11 93899 unique_id port 93899 remote_ip 10.8.1.34 93904 username alihosseini 93904 mac 93904 bytes_out 0 93904 bytes_in 0 93904 station_ip 5.119.236.241 93904 port 11 93904 unique_id port 93904 remote_ip 10.8.1.34 93906 username amirhosein 93906 unique_id port 93906 terminate_cause Lost-Carrier 93906 bytes_out 1698728 93906 bytes_in 27596311 93906 station_ip 5.120.133.198 93906 port 15728796 93906 nas_port_type Virtual 93906 remote_ip 5.5.5.180 93907 username mohammadi 93907 mac 93907 bytes_out 0 93907 bytes_in 0 93907 station_ip 113.203.61.75 93907 port 5 93907 unique_id port 93907 remote_ip 10.8.0.62 93909 username amirhosein 93909 unique_id port 93909 terminate_cause Lost-Carrier 93909 bytes_out 362806 93909 bytes_in 8063694 93909 station_ip 5.120.133.198 93909 port 15728798 93909 nas_port_type Virtual 93909 remote_ip 5.5.5.179 93910 username sadegh 93910 unique_id port 93910 terminate_cause User-Request 93910 bytes_out 3888973 93910 bytes_in 67436322 93910 station_ip 5.119.204.69 93883 bytes_in 2038063 93883 station_ip 113.203.61.75 93883 port 8 93883 unique_id port 93883 remote_ip 10.8.0.62 93886 username alihosseini 93886 mac 93886 bytes_out 19915 93886 bytes_in 25570 93886 station_ip 5.119.243.216 93886 port 8 93886 unique_id port 93886 remote_ip 10.8.0.46 93894 username alihosseini 93894 mac 93894 bytes_out 0 93894 bytes_in 0 93894 station_ip 5.119.236.241 93894 port 12 93894 unique_id port 93894 remote_ip 10.8.1.34 93898 username alireza1 93898 unique_id port 93898 terminate_cause Lost-Carrier 93898 bytes_out 251552 93898 bytes_in 1217336 93898 station_ip 5.119.128.129 93898 port 15728792 93898 nas_port_type Virtual 93898 remote_ip 5.5.5.195 93900 username fariba 93900 mac 93900 bytes_out 0 93900 bytes_in 0 93900 station_ip 5.119.203.55 93900 port 5 93900 unique_id port 93901 username alihosseini 93901 mac 93901 bytes_out 0 93901 bytes_in 0 93901 station_ip 5.119.236.241 93901 port 11 93901 unique_id port 93901 remote_ip 10.8.1.34 93903 username mohammadi 93903 mac 93903 bytes_out 0 93903 bytes_in 0 93903 station_ip 113.203.61.75 93903 port 8 93903 unique_id port 93903 remote_ip 10.8.0.62 93911 username mammad 93911 unique_id port 93911 terminate_cause User-Request 93911 bytes_out 1330155 93911 bytes_in 27043151 93911 station_ip 2.183.240.6 93911 port 15728799 93911 nas_port_type Virtual 93911 remote_ip 5.5.5.183 93918 username alihosseini 93918 kill_reason Another user logged on this global unique id 93918 mac 93918 bytes_out 0 93918 bytes_in 0 93918 station_ip 5.119.236.241 93918 port 8 93918 unique_id port 93918 remote_ip 10.8.0.46 93921 username mohammadi 93921 mac 93921 bytes_out 0 93921 bytes_in 0 93921 station_ip 113.203.61.75 93921 port 5 93921 unique_id port 93921 remote_ip 10.8.0.62 93922 username amirhosein 93922 unique_id port 93922 terminate_cause Lost-Carrier 93922 bytes_out 343232 93922 bytes_in 9026828 93922 station_ip 5.120.119.232 93922 port 15728804 93922 nas_port_type Virtual 93922 remote_ip 5.5.5.178 93926 username mohammadi 93926 mac 93926 bytes_out 0 93926 bytes_in 0 93926 station_ip 113.203.61.75 93926 port 5 93926 unique_id port 93926 remote_ip 10.8.0.62 93928 username alireza1 93928 unique_id port 93928 terminate_cause User-Request 93928 bytes_out 426605 93928 bytes_in 5249543 93928 station_ip 5.119.128.129 93928 port 15728800 93928 nas_port_type Virtual 93928 remote_ip 5.5.5.195 93931 username alireza1 93931 unique_id port 93931 terminate_cause User-Request 93931 bytes_out 3176435 93931 bytes_in 4015425 93931 station_ip 5.119.128.129 93931 port 15728809 93931 nas_port_type Virtual 93931 remote_ip 5.5.5.195 93933 username alinezhad 93933 unique_id port 93933 terminate_cause User-Request 93933 bytes_out 55931 93933 bytes_in 295512 93933 station_ip 37.129.228.157 93933 port 15728814 93933 nas_port_type Virtual 93933 remote_ip 5.5.5.171 93934 username mansur 93934 unique_id port 93934 terminate_cause User-Request 93934 bytes_out 908038 93934 bytes_in 17458285 93934 station_ip 5.119.48.45 93934 port 15728815 93934 nas_port_type Virtual 93934 remote_ip 5.5.5.177 93941 username alihosseini 93941 kill_reason Another user logged on this global unique id 93941 mac 93941 bytes_out 0 93941 bytes_in 0 93941 station_ip 5.119.236.241 93941 port 8 93941 unique_id port 188688 bytes_in 0 188688 station_ip 5.120.128.95 188688 port 361 188688 unique_id port 188690 username sekonji0496 188690 mac 188690 bytes_out 0 188690 bytes_in 0 188690 station_ip 83.123.0.241 188689 bytes_in 0 188689 station_ip 5.120.128.95 188689 port 392 188689 unique_id port 188689 remote_ip 10.8.0.250 93893 username alihosseini 93893 mac 93893 bytes_out 0 93893 bytes_in 0 93893 station_ip 5.119.243.216 93893 port 11 93893 unique_id port 93893 remote_ip 10.8.1.34 93896 username mammad 93896 unique_id port 93896 terminate_cause User-Request 93896 bytes_out 3101895 93896 bytes_in 40758567 93896 station_ip 2.183.240.6 93896 port 15728788 93896 nas_port_type Virtual 93896 remote_ip 5.5.5.183 93897 username mohammadi 93897 mac 93897 bytes_out 0 93897 bytes_in 0 93897 station_ip 113.203.61.75 93897 port 8 93897 unique_id port 93897 remote_ip 10.8.0.62 93902 username alinezhad 93902 unique_id port 93902 terminate_cause User-Request 93902 bytes_out 0 93902 bytes_in 0 93902 station_ip 5.202.23.253 93902 port 15728797 93902 nas_port_type Virtual 93902 remote_ip 5.5.5.246 93905 username askari 93905 kill_reason Another user logged on this global unique id 93905 mac 93905 bytes_out 0 93905 bytes_in 0 93905 station_ip 5.120.65.52 93905 port 9 93905 unique_id port 93905 remote_ip 10.8.0.34 93908 username askari 93908 mac 93908 bytes_out 0 93908 bytes_in 0 93908 station_ip 5.120.65.52 93908 port 9 93908 unique_id port 93912 username mohammadi 93912 mac 93912 bytes_out 0 93912 bytes_in 0 93912 station_ip 113.203.61.75 93912 port 5 93912 unique_id port 93912 remote_ip 10.8.0.62 93915 username mohammadi 93915 mac 93915 bytes_out 505869 93915 bytes_in 4257615 93915 station_ip 113.203.61.75 93915 port 5 93915 unique_id port 93915 remote_ip 10.8.0.62 93916 username mohammadi 93916 mac 93916 bytes_out 38203 93916 bytes_in 58936 93916 station_ip 113.203.61.75 93916 port 5 93916 unique_id port 93916 remote_ip 10.8.0.62 93919 username mahbobeh 93919 unique_id port 93919 terminate_cause Lost-Carrier 93919 bytes_out 1202388 93919 bytes_in 17539928 93919 station_ip 83.122.228.48 93919 port 15728791 93919 nas_port_type Virtual 93919 remote_ip 5.5.5.192 93920 username mehdizare 93920 kill_reason Another user logged on this global unique id 93920 mac 93920 bytes_out 0 93920 bytes_in 0 93920 station_ip 5.120.118.168 93920 port 9 93920 unique_id port 93920 remote_ip 10.8.0.70 93923 username heydari 93923 unique_id port 93923 terminate_cause User-Request 93923 bytes_out 91800 93923 bytes_in 489959 93923 station_ip 5.120.151.112 93923 port 15728807 93923 nas_port_type Virtual 93923 remote_ip 5.5.5.175 93924 username alihosseini 93924 kill_reason Another user logged on this global unique id 93924 mac 93924 bytes_out 0 93924 bytes_in 0 93924 station_ip 5.119.236.241 93924 port 8 93924 unique_id port 93925 username mehdizare 93925 kill_reason Another user logged on this global unique id 93925 mac 93925 bytes_out 0 93925 bytes_in 0 93925 station_ip 5.120.118.168 93925 port 9 93925 unique_id port 93929 username mammad 93929 unique_id port 93929 terminate_cause User-Request 93929 bytes_out 3124933 93929 bytes_in 21076712 93929 station_ip 2.183.240.6 93929 port 15728805 93929 nas_port_type Virtual 93929 remote_ip 5.5.5.183 93937 username amirabbas 93937 unique_id port 93937 terminate_cause Lost-Carrier 93937 bytes_out 3574842 93937 bytes_in 80367303 93937 station_ip 31.56.152.95 93937 port 15728808 93937 nas_port_type Virtual 93937 remote_ip 5.5.5.174 93939 username amirhosein 93939 unique_id port 93939 terminate_cause Lost-Carrier 93939 bytes_out 793450 93939 bytes_in 20786176 93939 station_ip 5.120.119.232 93939 port 15728811 188694 username zahra1101 93910 port 15728794 93910 nas_port_type Virtual 93910 remote_ip 5.5.5.229 93913 username mansur 93913 unique_id port 93913 terminate_cause User-Request 93913 bytes_out 415430 93913 bytes_in 6577446 93913 station_ip 5.119.48.45 93913 port 15728802 93913 nas_port_type Virtual 93913 remote_ip 5.5.5.177 93914 username amirhosein 93914 unique_id port 93914 terminate_cause Lost-Carrier 93914 bytes_out 818628 93914 bytes_in 23580415 93914 station_ip 5.120.119.232 93914 port 15728801 93914 nas_port_type Virtual 93914 remote_ip 5.5.5.178 93917 username amirhosein 93917 unique_id port 93917 terminate_cause Lost-Carrier 93917 bytes_out 24761 93917 bytes_in 148460 93917 station_ip 5.120.119.232 93917 port 15728803 93917 nas_port_type Virtual 93917 remote_ip 5.5.5.176 93927 username alinezhad 93927 unique_id port 93927 terminate_cause User-Request 93927 bytes_out 32564 93927 bytes_in 159731 93927 station_ip 5.202.23.253 93927 port 15728806 93927 nas_port_type Virtual 93927 remote_ip 5.5.5.246 93930 username alihosseini 93930 kill_reason Another user logged on this global unique id 93930 mac 93930 bytes_out 0 93930 bytes_in 0 93930 station_ip 5.119.236.241 93930 port 8 93930 unique_id port 93932 username alihosseini 93932 kill_reason Another user logged on this global unique id 93932 mac 93932 bytes_out 0 93932 bytes_in 0 93932 station_ip 5.119.236.241 93932 port 8 93932 unique_id port 93935 username alireza1 93935 unique_id port 93935 terminate_cause User-Request 93935 bytes_out 51336 93935 bytes_in 215952 93935 station_ip 5.119.128.129 93935 port 15728810 93935 nas_port_type Virtual 93935 remote_ip 5.5.5.195 93936 username alihosseini 93936 kill_reason Another user logged on this global unique id 93936 mac 93936 bytes_out 0 93936 bytes_in 0 93936 station_ip 5.119.236.241 93936 port 8 93936 unique_id port 188690 port 392 188690 unique_id port 188690 remote_ip 10.8.0.62 188691 username zahra1101 188691 mac 188691 bytes_out 0 188691 bytes_in 0 188691 station_ip 5.120.128.95 188691 port 392 93940 username alireza1 93940 unique_id port 93940 terminate_cause User-Request 93940 bytes_out 18139 93940 bytes_in 61969 93940 station_ip 5.119.128.129 93940 port 15728817 93940 nas_port_type Virtual 93940 remote_ip 5.5.5.195 93943 username heydarizadeh 93943 unique_id port 93943 terminate_cause Lost-Carrier 93943 bytes_out 1733002 93943 bytes_in 52528626 93943 station_ip 5.120.141.222 93943 port 15728816 93943 nas_port_type Virtual 93943 remote_ip 5.5.5.170 93948 username alireza1 93948 unique_id port 93948 terminate_cause User-Request 93948 bytes_out 698069 93948 bytes_in 19071086 93948 station_ip 5.119.128.129 93948 port 15728823 93948 nas_port_type Virtual 93948 remote_ip 5.5.5.195 93949 username heydarizadeh 93949 unique_id port 93949 terminate_cause Lost-Carrier 93949 bytes_out 1952022 93949 bytes_in 59284045 93949 station_ip 5.119.59.179 93949 port 15728819 93949 nas_port_type Virtual 93949 remote_ip 5.5.5.168 93950 username amirabbas 93950 unique_id port 93950 terminate_cause User-Request 93950 bytes_out 1705493 93950 bytes_in 43317977 93950 station_ip 151.238.244.188 93950 port 15728818 93950 nas_port_type Virtual 93950 remote_ip 5.5.5.169 93954 username alihosseini 93954 mac 93954 bytes_out 13783 93954 bytes_in 12714 93954 station_ip 5.119.40.128 93954 port 11 93954 unique_id port 93954 remote_ip 10.8.1.34 93956 username arabpour 93956 unique_id port 93956 terminate_cause User-Request 93956 bytes_out 342598 93956 bytes_in 7846046 93956 station_ip 37.129.124.127 93956 port 15728828 93956 nas_port_type Virtual 93956 remote_ip 5.5.5.165 188691 unique_id port 93939 nas_port_type Virtual 93939 remote_ip 5.5.5.176 93942 username alihosseini 93942 mac 93942 bytes_out 0 93942 bytes_in 0 93942 station_ip 5.119.236.241 93942 port 8 93942 unique_id port 93945 username alireza1 93945 unique_id port 93945 terminate_cause User-Request 93945 bytes_out 53454 93945 bytes_in 466948 93945 station_ip 5.119.128.129 93945 port 15728821 93945 nas_port_type Virtual 93945 remote_ip 5.5.5.195 93947 username heydari 93947 unique_id port 93947 terminate_cause User-Request 93947 bytes_out 125869 93947 bytes_in 269300 93947 station_ip 5.120.151.112 93947 port 15728822 93947 nas_port_type Virtual 93947 remote_ip 5.5.5.175 93959 username amirhosein 93959 unique_id port 93959 terminate_cause Lost-Carrier 93959 bytes_out 618225 93959 bytes_in 9210427 93959 station_ip 5.120.119.232 93959 port 15728829 93959 nas_port_type Virtual 93959 remote_ip 5.5.5.176 93966 username mammad 93966 unique_id port 93966 terminate_cause User-Request 93966 bytes_out 3046334 93966 bytes_in 39469851 93966 station_ip 2.183.240.6 93966 port 15728833 93966 nas_port_type Virtual 93966 remote_ip 5.5.5.163 93967 username amirhosein 93967 unique_id port 93967 terminate_cause Lost-Carrier 93967 bytes_out 16850 93967 bytes_in 153545 93967 station_ip 5.120.119.232 93967 port 15728835 93967 nas_port_type Virtual 93967 remote_ip 5.5.5.176 93968 username sadegh 93968 unique_id port 93968 terminate_cause User-Request 93968 bytes_out 51410433 93968 bytes_in 1061627076 93968 station_ip 86.57.91.135 93968 port 15728813 93968 nas_port_type Virtual 93968 remote_ip 5.5.5.172 93971 username caferibar 93971 kill_reason Relative expiration date has reached 93971 unique_id port 93971 bytes_out 0 93971 bytes_in 0 93971 station_ip 5.134.146.81 93971 port 15728840 93971 nas_port_type Virtual 93972 username shahrooz 93972 unique_id port 93972 terminate_cause Lost-Carrier 93972 bytes_out 4580484 93972 bytes_in 89663491 93972 station_ip 37.129.69.248 93972 port 15728836 93972 nas_port_type Virtual 93972 remote_ip 5.5.5.161 93976 username majid 93976 unique_id port 93976 terminate_cause User-Request 93976 bytes_out 2408467 93976 bytes_in 41892367 93976 station_ip 86.57.93.250 93976 port 15728839 93976 nas_port_type Virtual 93976 remote_ip 5.5.5.160 93979 username amirhosein 93979 unique_id port 93979 terminate_cause Lost-Carrier 93979 bytes_out 748227 93979 bytes_in 19659758 93979 station_ip 5.120.119.232 93979 port 15728843 93979 nas_port_type Virtual 93979 remote_ip 5.5.5.176 93981 username askari 93981 kill_reason Another user logged on this global unique id 93981 mac 93981 bytes_out 0 93981 bytes_in 0 93981 station_ip 5.120.71.50 93981 port 5 93981 unique_id port 93981 remote_ip 10.8.0.34 93982 username askari 93982 kill_reason Another user logged on this global unique id 93982 mac 93982 bytes_out 0 93982 bytes_in 0 93982 station_ip 5.120.71.50 93982 port 5 93982 unique_id port 93984 username askari 93984 kill_reason Another user logged on this global unique id 93984 mac 93984 bytes_out 0 93984 bytes_in 0 93984 station_ip 5.120.71.50 93984 port 5 93984 unique_id port 93987 username aminvpn 93987 mac 93987 bytes_out 0 93987 bytes_in 0 93987 station_ip 83.123.179.138 93987 port 5 93987 unique_id port 93987 remote_ip 10.8.0.6 93996 username aminvpn 93996 mac 93996 bytes_out 544330 93996 bytes_in 4374355 93996 station_ip 37.129.214.249 93996 port 5 93996 unique_id port 93996 remote_ip 10.8.0.6 93998 username aminvpn 93998 mac 93998 bytes_out 3889 93998 bytes_in 4885 93998 station_ip 37.129.214.249 93998 port 11 93946 username alihosseini 93946 mac 93946 bytes_out 0 93946 bytes_in 0 93946 station_ip 5.119.236.241 93946 port 11 93946 unique_id port 93946 remote_ip 10.8.1.34 93951 username mohammadi 93951 mac 93951 bytes_out 0 93951 bytes_in 0 93951 station_ip 113.203.86.211 93951 port 5 93951 unique_id port 93951 remote_ip 10.8.0.62 93952 username alinezhad 93952 unique_id port 93952 terminate_cause User-Request 93952 bytes_out 0 93952 bytes_in 0 93952 station_ip 83.122.117.242 93952 port 15728826 93952 nas_port_type Virtual 93952 remote_ip 5.5.5.166 93953 username alihosseini 93953 mac 93953 bytes_out 0 93953 bytes_in 0 93953 station_ip 5.119.197.107 93953 port 11 93953 unique_id port 93953 remote_ip 10.8.1.34 93955 username mohammadi 93955 mac 93955 bytes_out 436374 93955 bytes_in 1330420 93955 station_ip 113.203.86.211 93955 port 5 93955 unique_id port 93955 remote_ip 10.8.0.62 93958 username heydari 93958 unique_id port 93958 terminate_cause User-Request 93958 bytes_out 216560 93958 bytes_in 598285 93958 station_ip 5.120.151.112 93958 port 15728827 93958 nas_port_type Virtual 93958 remote_ip 5.5.5.175 93962 username mammad 93962 unique_id port 93962 terminate_cause User-Request 93962 bytes_out 1134739 93962 bytes_in 19165140 93962 station_ip 2.183.240.6 93962 port 15728832 93962 nas_port_type Virtual 93962 remote_ip 5.5.5.163 93963 username mirzaei 93963 kill_reason Maximum check online fails reached 93963 mac 93963 bytes_out 0 93963 bytes_in 0 93963 station_ip 5.119.166.186 93963 port 11 93963 unique_id port 93965 username alinezhad 93965 unique_id port 93965 terminate_cause User-Request 93965 bytes_out 0 93965 bytes_in 0 93965 station_ip 83.123.215.115 93965 port 15728834 93965 nas_port_type Virtual 93965 remote_ip 5.5.5.162 93974 username mammad 93974 unique_id port 93974 terminate_cause User-Request 93974 bytes_out 315765 93974 bytes_in 3420779 93974 station_ip 2.183.240.6 93974 port 15728842 93974 nas_port_type Virtual 93974 remote_ip 5.5.5.163 93975 username amirhosein 93975 unique_id port 93975 terminate_cause Lost-Carrier 93975 bytes_out 3952787 93975 bytes_in 109236040 93975 station_ip 5.120.119.232 93975 port 15728841 93975 nas_port_type Virtual 93975 remote_ip 5.5.5.176 93978 username mohammadi 93978 mac 93978 bytes_out 0 93978 bytes_in 0 93978 station_ip 113.203.86.203 93978 port 5 93978 unique_id port 93978 remote_ip 10.8.0.62 93980 username tahmasebi 93980 unique_id port 93980 terminate_cause User-Request 93980 bytes_out 10323354 93980 bytes_in 503850896 93980 station_ip 5.120.21.51 93980 port 15728844 93980 nas_port_type Virtual 93980 remote_ip 5.5.5.181 93983 username mahbobeh 93983 unique_id port 93983 terminate_cause Lost-Carrier 93983 bytes_out 9040490 93983 bytes_in 187441068 93983 station_ip 83.122.228.48 93983 port 15728845 93983 nas_port_type Virtual 93983 remote_ip 5.5.5.192 93986 username alireza1 93986 unique_id port 93986 terminate_cause Admin-Reboot 93986 bytes_out 5240431 93986 bytes_in 11916225 93986 station_ip 5.119.128.129 93986 port 15728825 93986 nas_port_type Virtual 93986 remote_ip 5.5.5.195 93988 username alinezhad 93988 unique_id port 93988 terminate_cause User-Request 93988 bytes_out 0 93988 bytes_in 0 93988 station_ip 5.202.1.217 93988 port 15728640 93988 nas_port_type Virtual 93988 remote_ip 5.5.5.255 93989 username alinezhad 93989 unique_id port 93989 terminate_cause User-Request 93989 bytes_out 10887 93989 bytes_in 16960 93989 station_ip 5.202.1.217 93989 port 15728642 93989 nas_port_type Virtual 93957 username aminvpn 93957 mac 93957 bytes_out 0 93957 bytes_in 0 93957 station_ip 37.129.232.177 93957 port 8 93957 unique_id port 93957 remote_ip 10.8.0.6 93960 username mehdizare 93960 mac 93960 bytes_out 0 93960 bytes_in 0 93960 station_ip 5.120.118.168 93960 port 9 93960 unique_id port 93961 username amirhosein 93961 unique_id port 93961 terminate_cause Lost-Carrier 93961 bytes_out 196496 93961 bytes_in 505386 93961 station_ip 5.120.119.232 93961 port 15728831 93961 nas_port_type Virtual 93961 remote_ip 5.5.5.176 93964 username mammad 93964 unique_id port 93964 terminate_cause Lost-Carrier 93964 bytes_out 5648682 93964 bytes_in 97439996 93964 station_ip 2.183.240.6 93964 port 15728824 93964 nas_port_type Virtual 93964 remote_ip 5.5.5.183 93969 username madadi2 93969 unique_id port 93969 terminate_cause Lost-Carrier 93969 bytes_out 1679203 93969 bytes_in 6499632 93969 station_ip 5.120.61.108 93969 port 15728830 93969 nas_port_type Virtual 93969 remote_ip 5.5.5.164 93970 username amirhosein 93970 unique_id port 93970 terminate_cause Lost-Carrier 93970 bytes_out 16084 93970 bytes_in 159839 93970 station_ip 5.120.119.232 93970 port 15728838 93970 nas_port_type Virtual 93970 remote_ip 5.5.5.176 93973 username mammad 93973 unique_id port 93973 terminate_cause User-Request 93973 bytes_out 9111508 93973 bytes_in 108887694 93973 station_ip 2.183.240.6 93973 port 15728837 93973 nas_port_type Virtual 93973 remote_ip 5.5.5.163 93977 username mohammadi 93977 mac 93977 bytes_out 184799 93977 bytes_in 1318293 93977 station_ip 113.203.86.203 93977 port 5 93977 unique_id port 93977 remote_ip 10.8.0.62 93985 username askari 93985 mac 93985 bytes_out 0 93985 bytes_in 0 93985 station_ip 5.120.71.50 93985 port 5 93985 unique_id port 94009 username caferibar 94009 kill_reason Relative expiration date has reached 94009 unique_id port 94009 bytes_out 0 94009 bytes_in 0 94009 station_ip 83.122.244.228 94009 port 15728662 94009 nas_port_type Virtual 94010 username caferibar 94010 kill_reason Relative expiration date has reached 94010 unique_id port 94010 bytes_out 0 94010 bytes_in 0 94010 station_ip 83.122.244.228 94010 port 15728664 94010 nas_port_type Virtual 94016 username alireza1 94016 unique_id port 94016 terminate_cause Lost-Carrier 94016 bytes_out 1271427 94016 bytes_in 3425068 94016 station_ip 5.119.128.129 94016 port 15728651 94016 nas_port_type Virtual 94016 remote_ip 5.5.5.254 94017 username alireza1 94017 unique_id port 94017 terminate_cause User-Request 94017 bytes_out 27297 94017 bytes_in 135313 94017 station_ip 5.119.128.129 94017 port 15728666 94017 nas_port_type Virtual 94017 remote_ip 5.5.5.243 94020 username morteza 94020 mac 94020 bytes_out 0 94020 bytes_in 0 94020 station_ip 37.129.32.139 94020 port 8 94020 unique_id port 94020 remote_ip 10.8.0.42 94021 username morteza 94021 mac 94021 bytes_out 0 94021 bytes_in 0 94021 station_ip 37.129.32.139 94021 port 8 94021 unique_id port 94021 remote_ip 10.8.0.42 94025 username madadi2 94025 unique_id port 94025 terminate_cause Lost-Carrier 94025 bytes_out 262727 94025 bytes_in 475861 94025 station_ip 5.119.7.181 94025 port 15728667 94025 nas_port_type Virtual 94025 remote_ip 5.5.5.242 94026 username alinezhad 94026 unique_id port 94026 terminate_cause User-Request 94026 bytes_out 20253 94026 bytes_in 150533 94026 station_ip 5.202.1.217 94026 port 15728669 94026 nas_port_type Virtual 94026 remote_ip 5.5.5.255 94031 username forozande 94031 unique_id port 94031 terminate_cause User-Request 94031 bytes_out 59774 93989 remote_ip 5.5.5.255 93990 username alireza1 93990 unique_id port 93990 terminate_cause User-Request 93990 bytes_out 249580 93990 bytes_in 528791 93990 station_ip 5.119.128.129 93990 port 15728641 93990 nas_port_type Virtual 93990 remote_ip 5.5.5.254 93991 username forozande 93991 unique_id port 93991 terminate_cause User-Request 93991 bytes_out 578372 93991 bytes_in 13089318 93991 station_ip 83.122.247.80 93991 port 15728649 93991 nas_port_type Virtual 93991 remote_ip 5.5.5.250 93992 username forozande 93992 unique_id port 93992 terminate_cause User-Request 93992 bytes_out 328392 93992 bytes_in 10892979 93992 station_ip 83.122.247.80 93992 port 15728650 93992 nas_port_type Virtual 93992 remote_ip 5.5.5.250 93993 username alireza1 93993 unique_id port 93993 terminate_cause User-Request 93993 bytes_out 160368 93993 bytes_in 379342 93993 station_ip 5.119.128.129 93993 port 15728648 93993 nas_port_type Virtual 93993 remote_ip 5.5.5.254 93994 username arabpour 93994 unique_id port 93994 terminate_cause User-Request 93994 bytes_out 721947 93994 bytes_in 21889226 93994 station_ip 37.129.177.134 93994 port 15728652 93994 nas_port_type Virtual 93994 remote_ip 5.5.5.249 93995 username mansur 93995 unique_id port 93995 terminate_cause Lost-Carrier 93995 bytes_out 2367151 93995 bytes_in 46218766 93995 station_ip 5.119.48.45 93995 port 15728647 93995 nas_port_type Virtual 93995 remote_ip 5.5.5.251 93997 username alinezhad 93997 unique_id port 93997 terminate_cause User-Request 93997 bytes_out 28277 93997 bytes_in 376644 93997 station_ip 5.202.1.217 93997 port 15728653 93997 nas_port_type Virtual 93997 remote_ip 5.5.5.255 93999 username aminvpn 93999 mac 93999 bytes_out 0 93999 bytes_in 0 93999 station_ip 37.129.214.249 93999 port 11 93999 unique_id port 93999 remote_ip 10.8.1.6 94000 username mohammadi 94000 mac 94000 bytes_out 0 94000 bytes_in 0 94000 station_ip 83.122.200.124 94000 port 8 94000 unique_id port 94000 remote_ip 10.8.0.62 94002 username mohammadi 94002 mac 94002 bytes_out 84323 94002 bytes_in 390791 94002 station_ip 83.122.200.124 94002 port 9 94002 unique_id port 94002 remote_ip 10.8.0.62 94004 username alinezhad 94004 unique_id port 94004 terminate_cause User-Request 94004 bytes_out 0 94004 bytes_in 0 94004 station_ip 5.202.1.217 94004 port 15728655 94004 nas_port_type Virtual 94004 remote_ip 5.5.5.255 94005 username forozande 94005 unique_id port 94005 terminate_cause User-Request 94005 bytes_out 60327 94005 bytes_in 496535 94005 station_ip 83.122.17.69 94005 port 15728660 94005 nas_port_type Virtual 94005 remote_ip 5.5.5.245 94006 username caferibar 94006 kill_reason Relative expiration date has reached 94006 unique_id port 94006 bytes_out 0 94006 bytes_in 0 94006 station_ip 83.122.244.228 94006 port 15728661 94006 nas_port_type Virtual 94008 username aminvpn 94008 mac 94008 bytes_out 96612 94008 bytes_in 181716 94008 station_ip 37.129.214.249 94008 port 5 94008 unique_id port 94008 remote_ip 10.8.0.6 94015 username morteza 94015 mac 94015 bytes_out 0 94015 bytes_in 0 94015 station_ip 37.129.32.139 94015 port 5 94015 unique_id port 94015 remote_ip 10.8.0.42 94022 username morteza 94022 mac 94022 bytes_out 293758 94022 bytes_in 2242012 94022 station_ip 83.122.103.217 94022 port 11 94022 unique_id port 94022 remote_ip 10.8.1.26 94024 username madadi2 94024 unique_id port 94024 terminate_cause Lost-Carrier 94024 bytes_out 885976 94024 bytes_in 4694779 94024 station_ip 5.119.249.137 94024 port 15728658 94024 nas_port_type Virtual 94024 remote_ip 5.5.5.246 93998 unique_id port 93998 remote_ip 10.8.1.6 94001 username mahbobeh 94001 unique_id port 94001 terminate_cause Lost-Carrier 94001 bytes_out 489646 94001 bytes_in 7414943 94001 station_ip 83.122.228.48 94001 port 15728643 94001 nas_port_type Virtual 94001 remote_ip 5.5.5.253 94003 username amirabbas 94003 unique_id port 94003 terminate_cause User-Request 94003 bytes_out 13651094 94003 bytes_in 354795516 94003 station_ip 31.56.155.216 94003 port 15728644 94003 nas_port_type Virtual 94003 remote_ip 5.5.5.252 94007 username mansur 94007 unique_id port 94007 terminate_cause User-Request 94007 bytes_out 555570 94007 bytes_in 11288288 94007 station_ip 5.119.48.45 94007 port 15728659 94007 nas_port_type Virtual 94007 remote_ip 5.5.5.251 94011 username caferibar 94011 kill_reason Relative expiration date has reached 94011 unique_id port 94011 bytes_out 0 94011 bytes_in 0 94011 station_ip 83.122.244.228 94011 port 15728665 94011 nas_port_type Virtual 94012 username ahmadipour 94012 unique_id port 94012 terminate_cause Lost-Carrier 94012 bytes_out 383364 94012 bytes_in 7388498 94012 station_ip 113.203.87.174 94012 port 15728663 94012 nas_port_type Virtual 94012 remote_ip 5.5.5.244 94013 username sadegh 94013 unique_id port 94013 terminate_cause User-Request 94013 bytes_out 16004533 94013 bytes_in 435296496 94013 station_ip 86.57.91.120 94013 port 15728654 94013 nas_port_type Virtual 94013 remote_ip 5.5.5.248 94014 username morteza 94014 mac 94014 bytes_out 0 94014 bytes_in 0 94014 station_ip 37.129.32.139 94014 port 5 94014 unique_id port 94014 remote_ip 10.8.0.42 94018 username morteza 94018 kill_reason Maximum check online fails reached 94018 mac 94018 bytes_out 0 94018 bytes_in 0 94018 station_ip 37.129.32.139 94018 port 5 94018 unique_id port 94019 username morteza 94019 mac 94019 bytes_out 0 94019 bytes_in 0 94019 station_ip 37.129.32.139 94019 port 11 94019 unique_id port 94019 remote_ip 10.8.1.26 94023 username mahbobeh 94023 unique_id port 94023 terminate_cause Lost-Carrier 94023 bytes_out 4938946 94023 bytes_in 108829662 94023 station_ip 83.122.228.48 94023 port 15728657 94023 nas_port_type Virtual 94023 remote_ip 5.5.5.253 94028 username alireza1 94028 unique_id port 94028 terminate_cause User-Request 94028 bytes_out 20582 94028 bytes_in 119882 94028 station_ip 5.119.128.129 94028 port 15728670 94028 nas_port_type Virtual 94028 remote_ip 5.5.5.243 94029 username madadi2 94029 unique_id port 94029 terminate_cause Lost-Carrier 94029 bytes_out 192567 94029 bytes_in 800096 94029 station_ip 5.120.81.22 94029 port 15728668 94029 nas_port_type Virtual 94029 remote_ip 5.5.5.241 94032 username forozande 94032 unique_id port 94032 terminate_cause User-Request 94032 bytes_out 56980 94032 bytes_in 494735 94032 station_ip 113.203.106.230 94032 port 15728674 94032 nas_port_type Virtual 94032 remote_ip 5.5.5.240 94033 username alireza1 94033 unique_id port 94033 terminate_cause User-Request 94033 bytes_out 112748 94033 bytes_in 176714 94033 station_ip 5.119.128.129 94033 port 15728672 94033 nas_port_type Virtual 94033 remote_ip 5.5.5.243 94035 username forozande 94035 unique_id port 94035 terminate_cause User-Request 94035 bytes_out 175020 94035 bytes_in 401594 94035 station_ip 113.203.106.230 94035 port 15728676 94035 nas_port_type Virtual 94035 remote_ip 5.5.5.240 94036 username mohammadi 94036 mac 94036 bytes_out 0 94036 bytes_in 0 94036 station_ip 83.122.200.124 94036 port 8 94036 unique_id port 94036 remote_ip 10.8.0.62 94039 username mohammadi 94039 mac 94039 bytes_out 0 94039 bytes_in 0 94027 username alihosseini 94027 mac 94027 bytes_out 0 94027 bytes_in 0 94027 station_ip 5.120.106.81 94027 port 11 94027 unique_id port 94027 remote_ip 10.8.1.34 94030 username alireza1 94030 unique_id port 94030 terminate_cause User-Request 94030 bytes_out 110143 94030 bytes_in 325024 94030 station_ip 5.119.128.129 94030 port 15728671 94030 nas_port_type Virtual 94030 remote_ip 5.5.5.243 94038 username mansur 94038 unique_id port 94038 terminate_cause User-Request 94038 bytes_out 526890 94038 bytes_in 7236993 94038 station_ip 5.119.48.45 94038 port 15728677 94038 nas_port_type Virtual 94038 remote_ip 5.5.5.251 94041 username morteza 94041 kill_reason Maximum check online fails reached 94041 mac 94041 bytes_out 0 94041 bytes_in 0 94041 station_ip 83.122.53.53 94041 port 10 94041 unique_id port 94042 username mohammadi 94042 mac 94042 bytes_out 40591 94042 bytes_in 68771 94042 station_ip 83.122.200.124 94042 port 8 94042 unique_id port 94042 remote_ip 10.8.0.62 94044 username morteza 94044 mac 94044 bytes_out 0 94044 bytes_in 0 94044 station_ip 83.122.53.53 94044 port 11 94044 unique_id port 94044 remote_ip 10.8.1.26 94045 username morteza 94045 mac 94045 bytes_out 0 94045 bytes_in 0 94045 station_ip 83.122.231.81 94045 port 12 94045 unique_id port 94045 remote_ip 10.8.0.42 94046 username mohammadi 94046 mac 94046 bytes_out 0 94046 bytes_in 0 94046 station_ip 83.122.200.124 94046 port 8 94046 unique_id port 94046 remote_ip 10.8.0.62 94047 username morteza 94047 mac 94047 bytes_out 0 94047 bytes_in 0 94047 station_ip 83.122.231.81 94047 port 12 94047 unique_id port 94047 remote_ip 10.8.0.42 94053 username morteza 94053 mac 94053 bytes_out 0 94053 bytes_in 0 94053 station_ip 83.122.231.81 94053 port 12 94053 unique_id port 94053 remote_ip 10.8.0.42 94058 username amirhosein 94058 unique_id port 94058 terminate_cause Lost-Carrier 94058 bytes_out 108372 94058 bytes_in 281393 94058 station_ip 5.120.119.232 94058 port 15728686 94058 nas_port_type Virtual 94058 remote_ip 5.5.5.238 94060 username mohammadi 94060 mac 94060 bytes_out 192819 94060 bytes_in 1439473 94060 station_ip 83.122.200.124 94060 port 12 94060 unique_id port 94060 remote_ip 10.8.0.62 94063 username alireza1 94063 unique_id port 94063 terminate_cause User-Request 94063 bytes_out 97397 94063 bytes_in 251609 94063 station_ip 5.119.128.129 94063 port 15728689 94063 nas_port_type Virtual 94063 remote_ip 5.5.5.243 94065 username morteza 94065 mac 94065 bytes_out 50555 94065 bytes_in 98642 94065 station_ip 83.122.162.201 94065 port 13 94065 unique_id port 94065 remote_ip 10.8.0.42 94067 username morteza 94067 kill_reason Another user logged on this global unique id 94067 mac 94067 bytes_out 0 94067 bytes_in 0 94067 station_ip 83.122.162.201 94067 port 11 94067 unique_id port 94069 username aminvpn 94069 mac 94069 bytes_out 204648 94069 bytes_in 221898 94069 station_ip 83.123.237.6 94069 port 8 94069 unique_id port 94069 remote_ip 10.8.0.6 94073 username forozande 94073 unique_id port 94073 terminate_cause User-Request 94073 bytes_out 42564 94073 bytes_in 180416 94073 station_ip 37.129.126.251 94073 port 15728696 94073 nas_port_type Virtual 94073 remote_ip 5.5.5.231 94075 username sadegh 94075 unique_id port 94075 terminate_cause User-Request 94075 bytes_out 5489184 94075 bytes_in 118000823 94075 station_ip 86.57.91.120 94075 port 15728691 94075 nas_port_type Virtual 94075 remote_ip 5.5.5.248 94031 bytes_in 439838 94031 station_ip 113.203.106.230 94031 port 15728673 94031 nas_port_type Virtual 94031 remote_ip 5.5.5.240 94034 username forozande 94034 unique_id port 94034 terminate_cause User-Request 94034 bytes_out 41159 94034 bytes_in 325814 94034 station_ip 113.203.106.230 94034 port 15728675 94034 nas_port_type Virtual 94034 remote_ip 5.5.5.240 94037 username sadegh 94037 unique_id port 94037 terminate_cause Lost-Carrier 94037 bytes_out 11244285 94037 bytes_in 290173238 94037 station_ip 5.119.204.69 94037 port 15728656 94037 nas_port_type Virtual 94037 remote_ip 5.5.5.247 94040 username morteza 94040 mac 94040 bytes_out 0 94040 bytes_in 0 94040 station_ip 83.122.53.53 94040 port 11 94040 unique_id port 94040 remote_ip 10.8.1.26 94043 username alinezhad 94043 unique_id port 94043 terminate_cause User-Request 94043 bytes_out 0 94043 bytes_in 0 94043 station_ip 5.202.1.217 94043 port 15728680 94043 nas_port_type Virtual 94043 remote_ip 5.5.5.255 94048 username alireza1 94048 unique_id port 94048 terminate_cause User-Request 94048 bytes_out 0 94048 bytes_in 0 94048 station_ip 5.119.128.129 94048 port 15728681 94048 nas_port_type Virtual 94048 remote_ip 5.5.5.243 94049 username aminvpn 94049 mac 94049 bytes_out 0 94049 bytes_in 0 94049 station_ip 83.123.237.6 94049 port 8 94049 unique_id port 94049 remote_ip 10.8.0.6 94054 username aminvpn 94054 kill_reason Another user logged on this global unique id 94054 mac 94054 bytes_out 0 94054 bytes_in 0 94054 station_ip 83.123.237.6 94054 port 8 94054 unique_id port 94054 remote_ip 10.8.0.6 94055 username amirhosein 94055 unique_id port 94055 terminate_cause Lost-Carrier 94055 bytes_out 54638 94055 bytes_in 841018 94055 station_ip 5.120.119.232 94055 port 15728684 94055 nas_port_type Virtual 94055 remote_ip 5.5.5.238 94056 username aminvpn 94056 mac 94056 bytes_out 0 94056 bytes_in 0 94056 station_ip 83.123.237.6 94056 port 8 94056 unique_id port 94062 username alinezhad 94062 unique_id port 94062 terminate_cause User-Request 94062 bytes_out 0 94062 bytes_in 0 94062 station_ip 5.202.1.217 94062 port 15728690 94062 nas_port_type Virtual 94062 remote_ip 5.5.5.255 94066 username hoorieh 94066 kill_reason Another user logged on this global unique id 94066 mac 94066 bytes_out 0 94066 bytes_in 0 94066 station_ip 5.120.161.154 94066 port 9 94066 unique_id port 94066 remote_ip 10.8.0.78 94070 username alihosseini 94070 kill_reason Another user logged on this global unique id 94070 mac 94070 bytes_out 0 94070 bytes_in 0 94070 station_ip 5.119.77.147 94070 port 12 94070 unique_id port 94070 remote_ip 10.8.1.34 94071 username heydari 94071 unique_id port 94071 terminate_cause User-Request 94071 bytes_out 192653 94071 bytes_in 682256 94071 station_ip 5.120.151.112 94071 port 15728694 94071 nas_port_type Virtual 94071 remote_ip 5.5.5.233 94074 username alireza1 94074 unique_id port 94074 terminate_cause User-Request 94074 bytes_out 0 94074 bytes_in 0 94074 station_ip 5.119.128.129 94074 port 15728697 94074 nas_port_type Virtual 94074 remote_ip 5.5.5.243 94076 username madadi2 94076 unique_id port 94076 terminate_cause Lost-Carrier 94076 bytes_out 1758348 94076 bytes_in 6726404 94076 station_ip 5.119.61.250 94076 port 15728678 94076 nas_port_type Virtual 94076 remote_ip 5.5.5.239 94078 username mohammadi 94078 mac 94078 bytes_out 0 94078 bytes_in 0 94078 station_ip 83.122.187.16 94078 port 13 94078 unique_id port 94078 remote_ip 10.8.0.62 94080 username sadegh 94080 kill_reason Maximum number of concurrent logins reached 94080 unique_id port 94039 station_ip 83.122.200.124 94039 port 10 94039 unique_id port 94039 remote_ip 10.8.0.62 94050 username forozande 94050 unique_id port 94050 terminate_cause User-Request 94050 bytes_out 49325 94050 bytes_in 153422 94050 station_ip 37.129.74.230 94050 port 15728683 94050 nas_port_type Virtual 94050 remote_ip 5.5.5.237 94051 username morteza 94051 mac 94051 bytes_out 478745 94051 bytes_in 6428999 94051 station_ip 83.122.231.81 94051 port 11 94051 unique_id port 94051 remote_ip 10.8.1.26 94052 username amirhosein 94052 unique_id port 94052 terminate_cause User-Request 94052 bytes_out 1385337 94052 bytes_in 25841588 94052 station_ip 5.120.119.232 94052 port 15728679 94052 nas_port_type Virtual 94052 remote_ip 5.5.5.238 94057 username amirhosein 94057 unique_id port 94057 terminate_cause Lost-Carrier 94057 bytes_out 1040016 94057 bytes_in 21798672 94057 station_ip 5.120.119.232 94057 port 15728685 94057 nas_port_type Virtual 94057 remote_ip 5.5.5.236 94059 username alireza1 94059 unique_id port 94059 terminate_cause User-Request 94059 bytes_out 385267 94059 bytes_in 1361028 94059 station_ip 5.119.128.129 94059 port 15728682 94059 nas_port_type Virtual 94059 remote_ip 5.5.5.243 94061 username forozande 94061 unique_id port 94061 terminate_cause User-Request 94061 bytes_out 97073 94061 bytes_in 516682 94061 station_ip 83.123.128.138 94061 port 15728688 94061 nas_port_type Virtual 94061 remote_ip 5.5.5.235 94064 username amirhosein 94064 unique_id port 94064 terminate_cause Lost-Carrier 94064 bytes_out 243646 94064 bytes_in 7731132 94064 station_ip 5.120.119.232 94064 port 15728687 94064 nas_port_type Virtual 94064 remote_ip 5.5.5.236 94068 username mirzaei 94068 kill_reason Another user logged on this global unique id 94068 mac 94068 bytes_out 0 94068 bytes_in 0 94068 station_ip 5.119.166.186 94068 port 11 94068 unique_id port 94072 username alireza1 94072 unique_id port 94072 terminate_cause User-Request 94072 bytes_out 614853 94072 bytes_in 1158022 94072 station_ip 5.119.128.129 94072 port 15728692 94072 nas_port_type Virtual 94072 remote_ip 5.5.5.243 94083 username sadegh 94083 unique_id port 94083 terminate_cause Lost-Carrier 94083 bytes_out 1336 94083 bytes_in 16905 94083 station_ip 86.57.91.120 94083 port 15728701 94083 nas_port_type Virtual 94083 remote_ip 5.5.5.229 94084 username sadegh 94084 unique_id port 94084 terminate_cause Lost-Carrier 94084 bytes_out 835100 94084 bytes_in 4772129 94084 station_ip 86.57.91.120 94084 port 15728705 94084 nas_port_type Virtual 94084 remote_ip 5.5.5.248 94087 username aminvpn 94087 mac 94087 bytes_out 0 94087 bytes_in 0 94087 station_ip 83.123.237.6 94087 port 12 94087 unique_id port 94087 remote_ip 10.8.0.6 94090 username aminvpn 94090 mac 94090 bytes_out 591779 94090 bytes_in 3725400 94090 station_ip 83.123.237.6 94090 port 12 94090 unique_id port 94090 remote_ip 10.8.0.6 94091 username hoorieh 94091 kill_reason Another user logged on this global unique id 94091 mac 94091 bytes_out 0 94091 bytes_in 0 94091 station_ip 5.120.161.154 94091 port 9 94091 unique_id port 94092 username aminvpn 94092 mac 94092 bytes_out 0 94092 bytes_in 0 94092 station_ip 37.129.197.137 94092 port 8 94092 unique_id port 94092 remote_ip 10.8.0.6 94094 username sadegh 94094 unique_id port 94094 terminate_cause Lost-Carrier 94094 bytes_out 2835495 94094 bytes_in 59899656 94094 station_ip 83.122.39.124 94094 port 15728706 94094 nas_port_type Virtual 94094 remote_ip 5.5.5.228 94100 username aminvpn 94100 mac 94100 bytes_out 0 94100 bytes_in 0 94077 username hoorieh 94077 kill_reason Another user logged on this global unique id 94077 mac 94077 bytes_out 0 94077 bytes_in 0 94077 station_ip 5.120.161.154 94077 port 9 94077 unique_id port 94079 username sadegh 94079 kill_reason Maximum number of concurrent logins reached 94079 unique_id port 94079 bytes_out 0 94079 bytes_in 0 94079 station_ip 86.57.91.120 94079 port 15728703 94079 nas_port_type Virtual 94081 username askari 94081 mac 94081 bytes_out 0 94081 bytes_in 0 94081 station_ip 5.119.18.14 94081 port 8 94081 unique_id port 94081 remote_ip 10.8.0.34 94101 username mahbobeh 94101 unique_id port 94101 terminate_cause Lost-Carrier 94101 bytes_out 116897 94101 bytes_in 999977 94101 station_ip 113.203.5.207 94101 port 15728693 94101 nas_port_type Virtual 94101 remote_ip 5.5.5.234 94103 username alireza1 94103 unique_id port 94103 terminate_cause User-Request 94103 bytes_out 315358 94103 bytes_in 1160015 94103 station_ip 5.119.128.129 94103 port 15728707 94103 nas_port_type Virtual 94103 remote_ip 5.5.5.243 94105 username aminvpn 94105 mac 94105 bytes_out 0 94105 bytes_in 0 94105 station_ip 37.129.197.137 94105 port 8 94105 unique_id port 94105 remote_ip 10.8.0.6 94106 username aminvpn 94106 mac 94106 bytes_out 0 94106 bytes_in 0 94106 station_ip 83.123.237.6 94106 port 12 94106 unique_id port 94106 remote_ip 10.8.0.6 94109 username hoorieh 94109 mac 94109 bytes_out 0 94109 bytes_in 0 94109 station_ip 5.120.161.154 94109 port 9 94109 unique_id port 94110 username aminvpn 94110 mac 94110 bytes_out 0 94110 bytes_in 0 94110 station_ip 37.129.197.137 94110 port 8 94110 unique_id port 94110 remote_ip 10.8.0.6 94111 username aminvpn 94111 mac 94111 bytes_out 0 94111 bytes_in 0 94111 station_ip 83.123.237.6 94111 port 9 94111 unique_id port 94111 remote_ip 10.8.0.6 94117 username amirhosein 94117 unique_id port 94117 terminate_cause Lost-Carrier 94117 bytes_out 61518 94117 bytes_in 488105 94117 station_ip 5.119.15.164 94117 port 15728708 94117 nas_port_type Virtual 94117 remote_ip 5.5.5.227 94118 username sadegh 94118 kill_reason Wrong password 94118 unique_id port 94118 bytes_out 0 94118 bytes_in 0 94118 station_ip 83.122.39.124 94118 port 15728712 94118 nas_port_type Virtual 94127 username mammad 94127 unique_id port 94127 terminate_cause User-Request 94127 bytes_out 6910104 94127 bytes_in 134020338 94127 station_ip 2.183.240.6 94127 port 15728695 94127 nas_port_type Virtual 94127 remote_ip 5.5.5.232 94131 username sadegh 94131 unique_id port 94131 terminate_cause Lost-Carrier 94131 bytes_out 1107939 94131 bytes_in 8443134 94131 station_ip 83.122.39.124 94131 port 15728717 94131 nas_port_type Virtual 94131 remote_ip 5.5.5.228 94134 username aminvpn 94134 mac 94134 bytes_out 639514 94134 bytes_in 2832828 94134 station_ip 83.123.237.6 94134 port 9 94134 unique_id port 94134 remote_ip 10.8.0.6 94136 username alihosseini 94136 mac 94136 bytes_out 0 94136 bytes_in 0 94136 station_ip 5.119.77.147 94136 port 12 94136 unique_id port 94136 remote_ip 10.8.1.34 94137 username aminvpn 94137 mac 94137 bytes_out 0 94137 bytes_in 0 94137 station_ip 83.123.237.6 94137 port 9 94137 unique_id port 94137 remote_ip 10.8.0.6 94140 username aminvpn 94140 mac 94140 bytes_out 107619 94140 bytes_in 183232 94140 station_ip 83.123.237.6 94140 port 9 94140 unique_id port 94140 remote_ip 10.8.0.6 94145 username aminvpn 94145 mac 94145 bytes_out 0 94080 bytes_out 0 94080 bytes_in 0 94080 station_ip 86.57.91.120 94080 port 15728704 94080 nas_port_type Virtual 94082 username sadegh 94082 unique_id port 94082 terminate_cause Lost-Carrier 94082 bytes_out 499 94082 bytes_in 12472 94082 station_ip 86.57.91.120 94082 port 15728700 94082 nas_port_type Virtual 94082 remote_ip 5.5.5.248 94085 username aminvpn 94085 mac 94085 bytes_out 0 94085 bytes_in 0 94085 station_ip 83.123.237.6 94085 port 12 94085 unique_id port 94085 remote_ip 10.8.0.6 94086 username aminvpn 94086 mac 94086 bytes_out 0 94086 bytes_in 0 94086 station_ip 37.129.197.137 94086 port 8 94086 unique_id port 94086 remote_ip 10.8.0.6 94088 username alireza1 94088 unique_id port 94088 terminate_cause User-Request 94088 bytes_out 137043 94088 bytes_in 399056 94088 station_ip 5.119.128.129 94088 port 15728698 94088 nas_port_type Virtual 94088 remote_ip 5.5.5.243 94089 username aminvpn 94089 mac 94089 bytes_out 0 94089 bytes_in 0 94089 station_ip 37.129.197.137 94089 port 8 94089 unique_id port 94089 remote_ip 10.8.0.6 94093 username aminvpn 94093 mac 94093 bytes_out 1150197 94093 bytes_in 9379841 94093 station_ip 83.123.237.6 94093 port 12 94093 unique_id port 94093 remote_ip 10.8.0.6 94095 username alihosseini 94095 mac 94095 bytes_out 0 94095 bytes_in 0 94095 station_ip 5.119.77.147 94095 port 12 94095 unique_id port 94095 remote_ip 10.8.0.46 94096 username hoorieh 94096 kill_reason Another user logged on this global unique id 94096 mac 94096 bytes_out 0 94096 bytes_in 0 94096 station_ip 5.120.161.154 94096 port 9 94096 unique_id port 94097 username aminvpn 94097 mac 94097 bytes_out 0 94097 bytes_in 0 94097 station_ip 37.129.197.137 94097 port 8 94097 unique_id port 94097 remote_ip 10.8.0.6 94098 username aminvpn 94098 mac 94098 bytes_out 0 94098 bytes_in 0 94098 station_ip 83.123.237.6 94098 port 12 94098 unique_id port 94098 remote_ip 10.8.0.6 94099 username aminvpn 94099 mac 94099 bytes_out 0 94099 bytes_in 0 94099 station_ip 37.129.197.137 94099 port 8 94099 unique_id port 94099 remote_ip 10.8.0.6 94102 username aminvpn 94102 mac 94102 bytes_out 0 94102 bytes_in 0 94102 station_ip 37.129.197.137 94102 port 8 94102 unique_id port 94102 remote_ip 10.8.0.6 94104 username aminvpn 94104 mac 94104 bytes_out 0 94104 bytes_in 0 94104 station_ip 83.123.237.6 94104 port 12 94104 unique_id port 94104 remote_ip 10.8.0.6 94107 username aminvpn 94107 mac 94107 bytes_out 0 94107 bytes_in 0 94107 station_ip 37.129.197.137 94107 port 8 94107 unique_id port 94107 remote_ip 10.8.0.6 94108 username aminvpn 94108 mac 94108 bytes_out 0 94108 bytes_in 0 94108 station_ip 83.123.237.6 94108 port 12 94108 unique_id port 94108 remote_ip 10.8.0.6 94112 username aminvpn 94112 mac 94112 bytes_out 0 94112 bytes_in 0 94112 station_ip 37.129.197.137 94112 port 8 94112 unique_id port 94112 remote_ip 10.8.0.6 94113 username aminvpn 94113 mac 94113 bytes_out 0 94113 bytes_in 0 94113 station_ip 83.123.237.6 94113 port 9 94113 unique_id port 94113 remote_ip 10.8.0.6 94115 username alihosseini 94115 mac 94115 bytes_out 0 94115 bytes_in 0 94115 station_ip 5.119.77.147 94115 port 9 94115 unique_id port 94115 remote_ip 10.8.0.46 94119 username aminvpn 94119 mac 94119 bytes_out 6618 94119 bytes_in 42025 94100 station_ip 83.123.237.6 94100 port 12 94100 unique_id port 94100 remote_ip 10.8.0.6 94114 username aminvpn 94114 mac 94114 bytes_out 0 94114 bytes_in 0 94114 station_ip 37.129.197.137 94114 port 8 94114 unique_id port 94114 remote_ip 10.8.0.6 94116 username aminvpn 94116 mac 94116 bytes_out 0 94116 bytes_in 0 94116 station_ip 83.123.237.6 94116 port 12 94116 unique_id port 94116 remote_ip 10.8.0.6 94120 username sadegh 94120 kill_reason Wrong password 94120 unique_id port 94120 bytes_out 0 94120 bytes_in 0 94120 station_ip 83.122.39.124 94120 port 15728713 94120 nas_port_type Virtual 94121 username forozande 94121 unique_id port 94121 terminate_cause User-Request 94121 bytes_out 38895 94121 bytes_in 182297 94121 station_ip 83.123.139.241 94121 port 15728711 94121 nas_port_type Virtual 94121 remote_ip 5.5.5.224 94122 username aminvpn 94122 mac 94122 bytes_out 0 94122 bytes_in 0 94122 station_ip 83.123.237.6 94122 port 9 94122 unique_id port 94122 remote_ip 10.8.0.6 94123 username alihosseini 94123 mac 94123 bytes_out 0 94123 bytes_in 0 94123 station_ip 5.119.77.147 94123 port 9 94123 unique_id port 94123 remote_ip 10.8.0.46 94126 username aminvpn 94126 mac 94126 bytes_out 0 94126 bytes_in 0 94126 station_ip 83.123.237.6 94126 port 9 94126 unique_id port 94126 remote_ip 10.8.0.6 94128 username caferibar 94128 kill_reason Relative expiration date has reached 94128 unique_id port 94128 bytes_out 0 94128 bytes_in 0 94128 station_ip 83.123.49.59 94128 port 15728718 94128 nas_port_type Virtual 94129 username alihosseini 94129 mac 94129 bytes_out 0 94129 bytes_in 0 94129 station_ip 5.119.77.147 94129 port 12 94129 unique_id port 94129 remote_ip 10.8.1.34 94130 username alihosseini 94130 mac 94130 bytes_out 0 94130 bytes_in 0 94130 station_ip 5.119.77.147 94130 port 9 94130 unique_id port 94130 remote_ip 10.8.0.46 94133 username alinezhad 94133 unique_id port 94133 terminate_cause User-Request 94133 bytes_out 142244 94133 bytes_in 770361 94133 station_ip 5.202.1.217 94133 port 15728702 94133 nas_port_type Virtual 94133 remote_ip 5.5.5.255 94135 username aminvpn 94135 mac 94135 bytes_out 0 94135 bytes_in 0 94135 station_ip 37.129.197.137 94135 port 8 94135 unique_id port 94135 remote_ip 10.8.0.6 94139 username alihosseini 94139 mac 94139 bytes_out 0 94139 bytes_in 0 94139 station_ip 5.119.77.147 94139 port 8 94139 unique_id port 94139 remote_ip 10.8.0.46 94143 username aminvpn 94143 mac 94143 bytes_out 0 94143 bytes_in 0 94143 station_ip 37.129.197.137 94143 port 12 94143 unique_id port 94143 remote_ip 10.8.0.6 94144 username aminvpn 94144 mac 94144 bytes_out 0 94144 bytes_in 0 94144 station_ip 83.123.237.6 94144 port 9 94144 unique_id port 94144 remote_ip 10.8.0.6 94155 username alihosseini 94155 mac 94155 bytes_out 0 94155 bytes_in 0 94155 station_ip 5.119.77.147 94155 port 8 94155 unique_id port 94155 remote_ip 10.8.0.46 94157 username aminvpn 94157 mac 94157 bytes_out 0 94157 bytes_in 0 94157 station_ip 83.123.237.6 94157 port 9 94157 unique_id port 94157 remote_ip 10.8.0.6 94161 username aminvpn 94161 mac 94161 bytes_out 0 94161 bytes_in 0 94161 station_ip 37.129.197.137 94161 port 8 94161 unique_id port 94161 remote_ip 10.8.0.6 94167 username aminvpn 94167 mac 94167 bytes_out 0 94167 bytes_in 0 94167 station_ip 37.129.197.137 94119 station_ip 37.129.197.137 94119 port 8 94119 unique_id port 94119 remote_ip 10.8.0.6 94124 username aminvpn 94124 mac 94124 bytes_out 0 94124 bytes_in 0 94124 station_ip 37.129.197.137 94124 port 8 94124 unique_id port 94124 remote_ip 10.8.0.6 94125 username forozande 94125 unique_id port 94125 terminate_cause User-Request 94125 bytes_out 41221 94125 bytes_in 862926 94125 station_ip 83.123.139.241 94125 port 15728715 94125 nas_port_type Virtual 94125 remote_ip 5.5.5.224 94132 username aminvpn 94132 mac 94132 bytes_out 11791 94132 bytes_in 40164 94132 station_ip 37.129.197.137 94132 port 8 94132 unique_id port 94132 remote_ip 10.8.0.6 94138 username aminvpn 94138 mac 94138 bytes_out 0 94138 bytes_in 0 94138 station_ip 37.129.197.137 94138 port 8 94138 unique_id port 94138 remote_ip 10.8.0.6 94141 username aminvpn 94141 mac 94141 bytes_out 0 94141 bytes_in 0 94141 station_ip 37.129.197.137 94141 port 12 94141 unique_id port 94141 remote_ip 10.8.0.6 94142 username aminvpn 94142 mac 94142 bytes_out 0 94142 bytes_in 0 94142 station_ip 83.123.237.6 94142 port 9 94142 unique_id port 94142 remote_ip 10.8.0.6 94148 username aminvpn 94148 mac 94148 bytes_out 0 94148 bytes_in 0 94148 station_ip 37.129.197.137 94148 port 12 94148 unique_id port 94148 remote_ip 10.8.0.6 94150 username aminvpn 94150 mac 94150 bytes_out 44981 94150 bytes_in 60031 94150 station_ip 83.123.237.6 94150 port 9 94150 unique_id port 94150 remote_ip 10.8.0.6 94151 username aminvpn 94151 mac 94151 bytes_out 0 94151 bytes_in 0 94151 station_ip 37.129.197.137 94151 port 12 94151 unique_id port 94151 remote_ip 10.8.0.6 94153 username aminvpn 94153 mac 94153 bytes_out 0 94153 bytes_in 0 94153 station_ip 83.123.237.6 94153 port 9 94153 unique_id port 94153 remote_ip 10.8.0.6 94156 username ahmadi 94156 unique_id port 94156 terminate_cause User-Request 94156 bytes_out 247928 94156 bytes_in 2585231 94156 station_ip 37.129.215.186 94156 port 15728699 94156 nas_port_type Virtual 94156 remote_ip 5.5.5.230 94158 username aminvpn 94158 mac 94158 bytes_out 0 94158 bytes_in 0 94158 station_ip 37.129.197.137 94158 port 8 94158 unique_id port 94158 remote_ip 10.8.0.6 94160 username aminvpn 94160 mac 94160 bytes_out 0 94160 bytes_in 0 94160 station_ip 83.123.237.6 94160 port 9 94160 unique_id port 94160 remote_ip 10.8.0.6 94165 username aminvpn 94165 mac 94165 bytes_out 0 94165 bytes_in 0 94165 station_ip 37.129.197.137 94165 port 8 94165 unique_id port 94165 remote_ip 10.8.0.6 94166 username aminvpn 94166 mac 94166 bytes_out 0 94166 bytes_in 0 94166 station_ip 83.123.237.6 94166 port 12 94166 unique_id port 94166 remote_ip 10.8.0.6 94173 username alireza1 94173 unique_id port 94173 terminate_cause Lost-Carrier 94173 bytes_out 37146 94173 bytes_in 211855 94173 station_ip 5.119.128.129 94173 port 15728722 94173 nas_port_type Virtual 94173 remote_ip 5.5.5.243 94174 username alihosseini 94174 mac 94174 bytes_out 0 94174 bytes_in 0 94174 station_ip 5.119.77.147 94174 port 12 94174 unique_id port 94174 remote_ip 10.8.0.46 94175 username madadi2 94175 unique_id port 94175 terminate_cause Lost-Carrier 94175 bytes_out 1235738 94175 bytes_in 4226233 94175 station_ip 5.120.161.41 94175 port 15728709 94175 nas_port_type Virtual 94175 remote_ip 5.5.5.226 94185 username mohammadi 94185 mac 94145 bytes_in 0 94145 station_ip 37.129.197.137 94145 port 12 94145 unique_id port 94145 remote_ip 10.8.0.6 94146 username aminvpn 94146 mac 94146 bytes_out 0 94146 bytes_in 0 94146 station_ip 83.123.237.6 94146 port 9 94146 unique_id port 94146 remote_ip 10.8.0.6 94147 username alihosseini 94147 mac 94147 bytes_out 0 94147 bytes_in 0 94147 station_ip 5.119.77.147 94147 port 9 94147 unique_id port 94147 remote_ip 10.8.0.46 94149 username mohammadi 94149 mac 94149 bytes_out 0 94149 bytes_in 0 94149 station_ip 83.122.185.88 94149 port 8 94149 unique_id port 94149 remote_ip 10.8.0.62 94152 username alihosseini 94152 mac 94152 bytes_out 2693 94152 bytes_in 5003 94152 station_ip 5.119.77.147 94152 port 8 94152 unique_id port 94152 remote_ip 10.8.0.46 94154 username aminvpn 94154 mac 94154 bytes_out 0 94154 bytes_in 0 94154 station_ip 37.129.197.137 94154 port 8 94154 unique_id port 94154 remote_ip 10.8.0.6 94159 username alireza1 94159 unique_id port 94159 terminate_cause User-Request 94159 bytes_out 440060 94159 bytes_in 317329 94159 station_ip 5.119.128.129 94159 port 15728721 94159 nas_port_type Virtual 94159 remote_ip 5.5.5.243 94162 username aminvpn 94162 mac 94162 bytes_out 0 94162 bytes_in 0 94162 station_ip 83.123.237.6 94162 port 12 94162 unique_id port 94162 remote_ip 10.8.0.6 94163 username aminvpn 94163 mac 94163 bytes_out 0 94163 bytes_in 0 94163 station_ip 37.129.197.137 94163 port 8 94163 unique_id port 94163 remote_ip 10.8.0.6 94164 username aminvpn 94164 mac 94164 bytes_out 0 94164 bytes_in 0 94164 station_ip 83.123.237.6 94164 port 12 94164 unique_id port 94164 remote_ip 10.8.0.6 94168 username aminvpn 94168 mac 94168 bytes_out 0 94168 bytes_in 0 94168 station_ip 83.123.237.6 94168 port 12 94168 unique_id port 94168 remote_ip 10.8.0.6 94170 username aminvpn 94170 mac 94170 bytes_out 0 94170 bytes_in 0 94170 station_ip 37.129.197.137 94170 port 13 94170 unique_id port 94170 remote_ip 10.8.0.6 94171 username aminvpn 94171 mac 94171 bytes_out 0 94171 bytes_in 0 94171 station_ip 83.123.237.6 94171 port 8 94171 unique_id port 94171 remote_ip 10.8.0.6 94172 username aminvpn 94172 mac 94172 bytes_out 0 94172 bytes_in 0 94172 station_ip 37.129.197.137 94172 port 12 94172 unique_id port 94172 remote_ip 10.8.0.6 94178 username forozande 94178 unique_id port 94178 terminate_cause User-Request 94178 bytes_out 89261 94178 bytes_in 475625 94178 station_ip 83.122.26.71 94178 port 15728725 94178 nas_port_type Virtual 94178 remote_ip 5.5.5.220 94180 username mohammadi 94180 mac 94180 bytes_out 0 94180 bytes_in 0 94180 station_ip 83.122.132.36 94180 port 12 94180 unique_id port 94180 remote_ip 10.8.0.62 94183 username amirhosein 94183 unique_id port 94183 terminate_cause Lost-Carrier 94183 bytes_out 73370 94183 bytes_in 200935 94183 station_ip 5.119.15.164 94183 port 15728723 94183 nas_port_type Virtual 94183 remote_ip 5.5.5.227 94184 username forozande 94184 unique_id port 94184 terminate_cause User-Request 94184 bytes_out 19884 94184 bytes_in 201916 94184 station_ip 83.122.26.71 94184 port 15728728 94184 nas_port_type Virtual 94184 remote_ip 5.5.5.220 94188 username mohammadi 94188 mac 94188 bytes_out 0 94188 bytes_in 0 94188 station_ip 83.122.132.36 94188 port 9 94188 unique_id port 94188 remote_ip 10.8.0.62 94195 username amirhosein 94195 unique_id port 94167 port 8 94167 unique_id port 94167 remote_ip 10.8.0.6 94169 username alihosseini 94169 mac 94169 bytes_out 0 94169 bytes_in 0 94169 station_ip 5.119.77.147 94169 port 8 94169 unique_id port 94169 remote_ip 10.8.0.46 94176 username mohammadmahdi 94176 mac 94176 bytes_out 0 94176 bytes_in 0 94176 station_ip 83.122.48.14 94176 port 9 94176 unique_id port 94176 remote_ip 10.8.0.82 94177 username amirhosein 94177 unique_id port 94177 terminate_cause Lost-Carrier 94177 bytes_out 3526279 94177 bytes_in 36647756 94177 station_ip 5.119.15.164 94177 port 15728710 94177 nas_port_type Virtual 94177 remote_ip 5.5.5.225 94179 username forozande 94179 unique_id port 94179 terminate_cause User-Request 94179 bytes_out 51567 94179 bytes_in 770145 94179 station_ip 83.122.26.71 94179 port 15728727 94179 nas_port_type Virtual 94179 remote_ip 5.5.5.220 94181 username mohammadmahdi 94181 mac 94181 bytes_out 0 94181 bytes_in 0 94181 station_ip 83.122.48.14 94181 port 9 94181 unique_id port 94181 remote_ip 10.8.0.82 94182 username mohammadi 94182 mac 94182 bytes_out 0 94182 bytes_in 0 94182 station_ip 83.122.132.36 94182 port 13 94182 unique_id port 94182 remote_ip 10.8.0.62 94186 username madadi2 94186 unique_id port 94186 terminate_cause Lost-Carrier 94186 bytes_out 152361 94186 bytes_in 723258 94186 station_ip 5.119.38.92 94186 port 15728726 94186 nas_port_type Virtual 94186 remote_ip 5.5.5.219 94189 username alinezhad 94189 unique_id port 94189 terminate_cause User-Request 94189 bytes_out 0 94189 bytes_in 0 94189 station_ip 5.202.1.217 94189 port 15728731 94189 nas_port_type Virtual 94189 remote_ip 5.5.5.255 94191 username aminvpn 94191 mac 94191 bytes_out 283381 94191 bytes_in 655027 94191 station_ip 83.123.237.6 94191 port 8 94191 unique_id port 94191 remote_ip 10.8.0.6 94193 username amirhosein 94193 unique_id port 94193 terminate_cause Lost-Carrier 94193 bytes_out 115096 94193 bytes_in 315218 94193 station_ip 5.119.237.238 94193 port 15728732 94193 nas_port_type Virtual 94193 remote_ip 5.5.5.221 94198 username mirzaei 94198 kill_reason Maximum check online fails reached 94198 mac 94198 bytes_out 0 94198 bytes_in 0 94198 station_ip 5.119.166.186 94198 port 11 94198 unique_id port 94202 username mohammadi 94202 mac 94202 bytes_out 206390 94202 bytes_in 224714 94202 station_ip 83.122.234.104 94202 port 12 94202 unique_id port 94202 remote_ip 10.8.0.62 94204 username forozande 94204 unique_id port 94204 terminate_cause User-Request 94204 bytes_out 44566 94204 bytes_in 855959 94204 station_ip 83.122.124.130 94204 port 15728741 94204 nas_port_type Virtual 94204 remote_ip 5.5.5.213 94207 username mohammadmahdi 94207 mac 94207 bytes_out 0 94207 bytes_in 0 94207 station_ip 5.119.65.140 94207 port 9 94207 unique_id port 94209 username madadi2 94209 unique_id port 94209 terminate_cause Lost-Carrier 94209 bytes_out 412625 94209 bytes_in 5175143 94209 station_ip 5.119.115.43 94209 port 15728744 94209 nas_port_type Virtual 94209 remote_ip 5.5.5.212 94210 username forozande 94210 unique_id port 94210 terminate_cause User-Request 94210 bytes_out 0 94210 bytes_in 0 94210 station_ip 37.129.0.44 94210 port 15728747 94210 nas_port_type Virtual 94210 remote_ip 5.5.5.211 94219 username mohammadi 94219 mac 94219 bytes_out 878264 94219 bytes_in 9736199 94219 station_ip 83.122.234.104 94219 port 9 94219 unique_id port 94219 remote_ip 10.8.0.62 94221 username aminvpn 94221 unique_id port 94221 terminate_cause Lost-Carrier 94185 bytes_out 0 94185 bytes_in 0 94185 station_ip 83.122.132.36 94185 port 9 94185 unique_id port 94185 remote_ip 10.8.0.62 94187 username amirhosein 94187 unique_id port 94187 terminate_cause Lost-Carrier 94187 bytes_out 83957 94187 bytes_in 275817 94187 station_ip 5.119.237.238 94187 port 15728724 94187 nas_port_type Virtual 94187 remote_ip 5.5.5.221 94190 username madadi2 94190 unique_id port 94190 terminate_cause Lost-Carrier 94190 bytes_out 27989 94190 bytes_in 158844 94190 station_ip 5.119.60.38 94190 port 15728730 94190 nas_port_type Virtual 94190 remote_ip 5.5.5.218 94192 username heydari 94192 unique_id port 94192 terminate_cause User-Request 94192 bytes_out 359603 94192 bytes_in 1671111 94192 station_ip 5.120.151.112 94192 port 15728729 94192 nas_port_type Virtual 94192 remote_ip 5.5.5.233 94194 username khalili 94194 unique_id port 94194 terminate_cause Lost-Carrier 94194 bytes_out 11297459 94194 bytes_in 131641607 94194 station_ip 5.120.156.152 94194 port 15728719 94194 nas_port_type Virtual 94194 remote_ip 5.5.5.223 94196 username alihosseini 94196 mac 94196 bytes_out 0 94196 bytes_in 0 94196 station_ip 5.120.53.216 94196 port 8 94196 unique_id port 94196 remote_ip 10.8.0.46 94199 username alihosseini 94199 kill_reason Maximum check online fails reached 94199 mac 94199 bytes_out 26540 94199 bytes_in 32977 94199 station_ip 5.120.53.216 94199 port 8 94199 unique_id port 94199 remote_ip 10.8.0.46 94201 username forozande 94201 unique_id port 94201 terminate_cause User-Request 94201 bytes_out 25840 94201 bytes_in 256777 94201 station_ip 83.122.124.130 94201 port 15728740 94201 nas_port_type Virtual 94201 remote_ip 5.5.5.213 94206 username alireza1 94206 unique_id port 94206 terminate_cause User-Request 94206 bytes_out 630454 94206 bytes_in 1553547 94206 station_ip 5.119.128.129 94206 port 15728735 94206 nas_port_type Virtual 94206 remote_ip 5.5.5.243 94211 username mammad 94211 unique_id port 94211 terminate_cause User-Request 94211 bytes_out 0 94211 bytes_in 0 94211 station_ip 5.233.50.180 94211 port 15728748 94211 nas_port_type Virtual 94211 remote_ip 5.5.5.210 94214 username sadegh 94214 unique_id port 94214 terminate_cause Lost-Carrier 94214 bytes_out 11819643 94214 bytes_in 130198661 94214 station_ip 86.57.126.149 94214 port 15728720 94214 nas_port_type Virtual 94214 remote_ip 5.5.5.222 94216 username mammad 94216 unique_id port 94216 terminate_cause User-Request 94216 bytes_out 0 94216 bytes_in 0 94216 station_ip 5.233.50.180 94216 port 15728750 94216 nas_port_type Virtual 94216 remote_ip 5.5.5.210 94218 username mammad 94218 unique_id port 94218 terminate_cause User-Request 94218 bytes_out 0 94218 bytes_in 0 94218 station_ip 5.233.50.180 94218 port 15728752 94218 nas_port_type Virtual 94218 remote_ip 5.5.5.210 94220 username alinezhad 94220 unique_id port 94220 terminate_cause User-Request 94220 bytes_out 0 94220 bytes_in 0 94220 station_ip 5.202.1.217 94220 port 15728755 94220 nas_port_type Virtual 94220 remote_ip 5.5.5.255 94225 username sadegh 94225 unique_id port 94225 terminate_cause User-Request 94225 bytes_out 0 94225 bytes_in 0 94225 station_ip 86.57.126.149 94225 port 15728757 94225 nas_port_type Virtual 94225 remote_ip 5.5.5.222 94230 username mammad 94230 unique_id port 94230 terminate_cause User-Request 94230 bytes_out 0 94230 bytes_in 0 94230 station_ip 5.233.50.180 94230 port 15728762 94230 nas_port_type Virtual 94230 remote_ip 5.5.5.210 94231 username amirhosein 94231 unique_id port 94231 terminate_cause User-Request 94231 bytes_out 0 94231 bytes_in 0 94231 station_ip 5.119.237.238 94195 terminate_cause Lost-Carrier 94195 bytes_out 9408 94195 bytes_in 148062 94195 station_ip 5.119.237.238 94195 port 15728733 94195 nas_port_type Virtual 94195 remote_ip 5.5.5.217 94197 username ahmadipour 94197 unique_id port 94197 terminate_cause Lost-Carrier 94197 bytes_out 647821 94197 bytes_in 11735894 94197 station_ip 113.203.56.206 94197 port 15728736 94197 nas_port_type Virtual 94197 remote_ip 5.5.5.215 94200 username forozande 94200 unique_id port 94200 terminate_cause User-Request 94200 bytes_out 0 94200 bytes_in 0 94200 station_ip 83.122.147.250 94200 port 15728737 94200 nas_port_type Virtual 94200 remote_ip 5.5.5.214 94203 username alinezhad 94203 unique_id port 94203 terminate_cause User-Request 94203 bytes_out 0 94203 bytes_in 0 94203 station_ip 5.202.1.217 94203 port 15728742 94203 nas_port_type Virtual 94203 remote_ip 5.5.5.255 94205 username mohammadmahdi 94205 kill_reason Another user logged on this global unique id 94205 mac 94205 bytes_out 0 94205 bytes_in 0 94205 station_ip 5.119.65.140 94205 port 9 94205 unique_id port 94205 remote_ip 10.8.0.82 94208 username alinezhad 94208 unique_id port 94208 terminate_cause User-Request 94208 bytes_out 12812 94208 bytes_in 30709 94208 station_ip 5.202.1.217 94208 port 15728745 94208 nas_port_type Virtual 94208 remote_ip 5.5.5.255 94212 username mammad 94212 unique_id port 94212 terminate_cause Lost-Carrier 94212 bytes_out 1372015 94212 bytes_in 17210981 94212 station_ip 2.183.240.6 94212 port 15728746 94212 nas_port_type Virtual 94212 remote_ip 5.5.5.232 94213 username mammad 94213 unique_id port 94213 terminate_cause User-Request 94213 bytes_out 0 94213 bytes_in 0 94213 station_ip 5.233.50.180 94213 port 15728749 94213 nas_port_type Virtual 94213 remote_ip 5.5.5.210 94215 username tahmasebi 94215 unique_id port 94215 terminate_cause Lost-Carrier 94215 bytes_out 38309995 94215 bytes_in 179323293 94215 station_ip 5.119.180.122 94215 port 15728734 94215 nas_port_type Virtual 94215 remote_ip 5.5.5.216 94217 username mammad 94217 unique_id port 94217 terminate_cause NAS-Error 94217 bytes_out 0 94217 bytes_in 342 94217 station_ip 5.233.50.180 94217 port 15728751 94217 nas_port_type Virtual 94217 remote_ip 5.5.5.210 94224 username madadi2 94224 unique_id port 94224 terminate_cause Lost-Carrier 94224 bytes_out 445923 94224 bytes_in 3611339 94224 station_ip 5.120.20.68 94224 port 15728756 94224 nas_port_type Virtual 94224 remote_ip 5.5.5.208 94229 username alinezhad 94229 unique_id port 94229 terminate_cause User-Request 94229 bytes_out 0 94229 bytes_in 0 94229 station_ip 5.202.1.217 94229 port 15728761 94229 nas_port_type Virtual 94229 remote_ip 5.5.5.255 94234 username mohammadi 94234 mac 94234 bytes_out 0 94234 bytes_in 0 94234 station_ip 83.122.185.64 94234 port 8 94234 unique_id port 94235 username mammad 94235 unique_id port 94235 terminate_cause User-Request 94235 bytes_out 200060 94235 bytes_in 1062776 94235 station_ip 5.233.50.180 94235 port 15728763 94235 nas_port_type Virtual 94235 remote_ip 5.5.5.210 94236 username madadi2 94236 unique_id port 94236 terminate_cause Lost-Carrier 94236 bytes_out 348233 94236 bytes_in 2285014 94236 station_ip 5.120.91.143 94236 port 15728760 94236 nas_port_type Virtual 94236 remote_ip 5.5.5.207 94238 username aminvpn 94238 mac 94238 bytes_out 3194278 94238 bytes_in 29452555 94238 station_ip 83.123.217.42 94238 port 12 94238 unique_id port 94238 remote_ip 10.8.0.6 94239 username aminvpn 94239 mac 94239 bytes_out 0 94239 bytes_in 0 94239 station_ip 37.129.173.157 94239 port 13 94239 unique_id port 94221 bytes_out 69694 94221 bytes_in 444325 94221 station_ip 5.233.58.220 94221 port 15728754 94221 nas_port_type Virtual 94221 remote_ip 5.5.5.209 94222 username alireza1 94222 unique_id port 94222 terminate_cause Lost-Carrier 94222 bytes_out 56491753 94222 bytes_in 6270834 94222 station_ip 5.119.128.129 94222 port 15728743 94222 nas_port_type Virtual 94222 remote_ip 5.5.5.243 94223 username mammad 94223 unique_id port 94223 terminate_cause User-Request 94223 bytes_out 1153406 94223 bytes_in 6658590 94223 station_ip 5.233.50.180 94223 port 15728753 94223 nas_port_type Virtual 94223 remote_ip 5.5.5.210 94226 username mammad 94226 unique_id port 94226 terminate_cause User-Request 94226 bytes_out 0 94226 bytes_in 0 94226 station_ip 5.233.50.180 94226 port 15728758 94226 nas_port_type Virtual 94226 remote_ip 5.5.5.210 94227 username madadi2 94227 unique_id port 94227 terminate_cause User-Request 94227 bytes_out 0 94227 bytes_in 0 94227 station_ip 5.120.91.143 94227 port 15728759 94227 nas_port_type Virtual 94227 remote_ip 5.5.5.207 94228 username mohammadi 94228 kill_reason Another user logged on this global unique id 94228 mac 94228 bytes_out 0 94228 bytes_in 0 94228 station_ip 83.122.185.64 94228 port 8 94228 unique_id port 94228 remote_ip 10.8.0.62 94232 username amirhosein 94232 unique_id port 94232 terminate_cause User-Request 94232 bytes_out 0 94232 bytes_in 0 94232 station_ip 5.119.237.238 94232 port 15728765 94232 nas_port_type Virtual 94232 remote_ip 5.5.5.217 94233 username amirhosein 94233 unique_id port 94233 terminate_cause User-Request 94233 bytes_out 0 94233 bytes_in 0 94233 station_ip 5.119.237.238 94233 port 15728766 94233 nas_port_type Virtual 94233 remote_ip 5.5.5.217 94237 username heydari 94237 unique_id port 94237 terminate_cause User-Request 94237 bytes_out 0 94237 bytes_in 0 94237 station_ip 5.120.151.112 94237 port 15728768 94237 nas_port_type Virtual 94237 remote_ip 5.5.5.233 94243 username mohammadi 94243 mac 94243 bytes_out 1049132 94243 bytes_in 3166410 94243 station_ip 83.122.185.64 94243 port 8 94243 unique_id port 94243 remote_ip 10.8.0.62 94250 username aminvpn 94250 mac 94250 bytes_out 0 94250 bytes_in 0 94250 station_ip 37.129.173.157 94250 port 8 94250 unique_id port 94250 remote_ip 10.8.0.6 94257 username mammad 94257 unique_id port 94257 terminate_cause User-Request 94257 bytes_out 0 94257 bytes_in 0 94257 station_ip 5.233.50.180 94257 port 15728775 94257 nas_port_type Virtual 94257 remote_ip 5.5.5.210 94259 username mammad 94259 unique_id port 94259 terminate_cause User-Request 94259 bytes_out 0 94259 bytes_in 0 94259 station_ip 5.233.50.180 94259 port 15728776 94259 nas_port_type Virtual 94259 remote_ip 5.5.5.210 94268 username mohammadi 94268 mac 94268 bytes_out 0 94268 bytes_in 0 94268 station_ip 83.122.185.64 94268 port 12 94268 unique_id port 94268 remote_ip 10.8.0.62 94269 username alireza1 94269 unique_id port 94269 terminate_cause Lost-Carrier 94269 bytes_out 47974 94269 bytes_in 218246 94269 station_ip 5.119.69.70 94269 port 15728781 94269 nas_port_type Virtual 94269 remote_ip 5.5.5.202 94270 username ahmadi 94270 unique_id port 94270 terminate_cause User-Request 94270 bytes_out 110659 94270 bytes_in 701397 94270 station_ip 37.129.10.82 94270 port 15728786 94270 nas_port_type Virtual 94270 remote_ip 5.5.5.198 94271 username forozande 94271 unique_id port 94271 terminate_cause User-Request 94271 bytes_out 103852 94271 bytes_in 758969 94271 station_ip 83.123.16.136 94271 port 15728787 94271 nas_port_type Virtual 94271 remote_ip 5.5.5.197 94231 port 15728764 94231 nas_port_type Virtual 94231 remote_ip 5.5.5.217 94240 username aminvpn 94240 mac 94240 bytes_out 0 94240 bytes_in 0 94240 station_ip 83.123.217.42 94240 port 12 94240 unique_id port 94240 remote_ip 10.8.0.6 94241 username aminvpn 94241 mac 94241 bytes_out 0 94241 bytes_in 0 94241 station_ip 37.129.173.157 94241 port 13 94241 unique_id port 94241 remote_ip 10.8.0.6 94245 username aminvpn 94245 mac 94245 bytes_out 0 94245 bytes_in 0 94245 station_ip 37.129.173.157 94245 port 8 94245 unique_id port 94245 remote_ip 10.8.0.6 94246 username aminvpn 94246 mac 94246 bytes_out 0 94246 bytes_in 0 94246 station_ip 83.123.217.42 94246 port 12 94246 unique_id port 94246 remote_ip 10.8.0.6 94248 username aminvpn 94248 mac 94248 bytes_out 0 94248 bytes_in 0 94248 station_ip 37.129.173.157 94248 port 8 94248 unique_id port 94248 remote_ip 10.8.0.6 94249 username aminvpn 94249 mac 94249 bytes_out 0 94249 bytes_in 0 94249 station_ip 83.123.217.42 94249 port 12 94249 unique_id port 94249 remote_ip 10.8.0.6 94255 username forozande 94255 unique_id port 94255 terminate_cause User-Request 94255 bytes_out 0 94255 bytes_in 0 94255 station_ip 83.122.225.132 94255 port 15728773 94255 nas_port_type Virtual 94255 remote_ip 5.5.5.203 94263 username alireza1 94263 unique_id port 94263 terminate_cause User-Request 94263 bytes_out 788979 94263 bytes_in 2111053 94263 station_ip 5.119.69.70 94263 port 15728778 94263 nas_port_type Virtual 94263 remote_ip 5.5.5.202 94264 username alireza1 94264 unique_id port 94264 terminate_cause User-Request 94264 bytes_out 0 94264 bytes_in 0 94264 station_ip 5.119.69.70 94264 port 15728780 94264 nas_port_type Virtual 94264 remote_ip 5.5.5.202 94265 username mohammadi 94265 mac 94265 bytes_out 620927 94265 bytes_in 4820105 94265 station_ip 83.122.185.64 94265 port 8 94265 unique_id port 94265 remote_ip 10.8.0.62 94266 username mehdizare 94266 kill_reason Another user logged on this global unique id 94266 mac 94266 bytes_out 0 94266 bytes_in 0 94266 station_ip 5.120.4.22 94266 port 9 94266 unique_id port 94266 remote_ip 10.8.0.70 94272 username amirhosein 94272 unique_id port 94272 terminate_cause User-Request 94272 bytes_out 534064 94272 bytes_in 12266519 94272 station_ip 5.119.237.238 94272 port 15728767 94272 nas_port_type Virtual 94272 remote_ip 5.5.5.217 94273 username mohammadi 94273 mac 94273 bytes_out 977106 94273 bytes_in 522137 94273 station_ip 83.122.185.64 94273 port 12 94273 unique_id port 94273 remote_ip 10.8.0.62 94275 username morteza 94275 mac 94275 bytes_out 180831 94275 bytes_in 2243302 94275 station_ip 37.129.134.61 94275 port 12 94275 unique_id port 94275 remote_ip 10.8.0.42 94278 username mohammadmahdi 94278 kill_reason Another user logged on this global unique id 94278 mac 94278 bytes_out 0 94278 bytes_in 0 94278 station_ip 5.119.65.140 94278 port 8 94278 unique_id port 94279 username morteza 94279 mac 94279 bytes_out 0 94279 bytes_in 0 94279 station_ip 83.122.36.236 94279 port 13 94279 unique_id port 94279 remote_ip 10.8.0.42 94282 username madadi2 94282 unique_id port 94282 terminate_cause Lost-Carrier 94282 bytes_out 419477 94282 bytes_in 6124828 94282 station_ip 5.119.255.176 94282 port 15728782 94282 nas_port_type Virtual 94282 remote_ip 5.5.5.201 94288 username sadegh 94288 unique_id port 94288 terminate_cause Lost-Carrier 94288 bytes_out 2796265 94288 bytes_in 48727595 94239 remote_ip 10.8.0.6 94242 username heydari 94242 unique_id port 94242 terminate_cause User-Request 94242 bytes_out 97488 94242 bytes_in 326874 94242 station_ip 5.120.151.112 94242 port 15728769 94242 nas_port_type Virtual 94242 remote_ip 5.5.5.233 94244 username aminvpn 94244 mac 94244 bytes_out 0 94244 bytes_in 0 94244 station_ip 83.123.217.42 94244 port 12 94244 unique_id port 94244 remote_ip 10.8.0.6 94247 username mohammadi 94247 mac 94247 bytes_out 0 94247 bytes_in 0 94247 station_ip 83.122.185.64 94247 port 13 94247 unique_id port 94247 remote_ip 10.8.0.62 94251 username aminvpn 94251 mac 94251 bytes_out 0 94251 bytes_in 0 94251 station_ip 83.123.217.42 94251 port 12 94251 unique_id port 94251 remote_ip 10.8.0.6 94252 username mohammadi 94252 mac 94252 bytes_out 0 94252 bytes_in 0 94252 station_ip 83.122.185.64 94252 port 12 94252 unique_id port 94252 remote_ip 10.8.0.62 94253 username aminvpn 94253 mac 94253 bytes_out 731919 94253 bytes_in 8864798 94253 station_ip 37.129.173.157 94253 port 8 94253 unique_id port 94253 remote_ip 10.8.0.6 94254 username shahrooz 94254 unique_id port 94254 terminate_cause Lost-Carrier 94254 bytes_out 333445 94254 bytes_in 3431195 94254 station_ip 37.129.69.248 94254 port 15728771 94254 nas_port_type Virtual 94254 remote_ip 5.5.5.205 188691 remote_ip 10.8.0.250 188692 username zahra1101 188692 kill_reason Maximum check online fails reached 188692 mac 188692 bytes_out 0 188692 bytes_in 0 188692 station_ip 5.120.128.95 188692 port 392 188692 unique_id port 94258 username mohammadi 94258 mac 94258 bytes_out 192010 94258 bytes_in 1532713 94258 station_ip 83.122.185.64 94258 port 8 94258 unique_id port 94258 remote_ip 10.8.0.62 94260 username mammad 94260 unique_id port 94260 terminate_cause User-Request 94260 bytes_out 0 94260 bytes_in 0 94260 station_ip 5.233.50.180 94260 port 15728777 94260 nas_port_type Virtual 94260 remote_ip 5.5.5.210 94261 username kamali 94261 kill_reason Relative expiration date has reached 94261 unique_id port 94261 bytes_out 0 94261 bytes_in 0 94261 station_ip 5.120.26.216 94261 port 15728779 94261 nas_port_type Virtual 94262 username madadi2 94262 unique_id port 94262 terminate_cause Lost-Carrier 94262 bytes_out 322780 94262 bytes_in 984304 94262 station_ip 5.119.220.228 94262 port 15728770 94262 nas_port_type Virtual 94262 remote_ip 5.5.5.206 94267 username alireza1 94267 unique_id port 94267 terminate_cause User-Request 94267 bytes_out 0 94267 bytes_in 0 94267 station_ip 5.120.127.251 94267 port 15728784 94267 nas_port_type Virtual 94267 remote_ip 5.5.5.199 94276 username mehdizare 94276 kill_reason Another user logged on this global unique id 94276 mac 94276 bytes_out 0 94276 bytes_in 0 94276 station_ip 5.120.4.22 94276 port 9 94276 unique_id port 94277 username mohammadmahdi 94277 kill_reason Another user logged on this global unique id 94277 mac 94277 bytes_out 0 94277 bytes_in 0 94277 station_ip 5.119.65.140 94277 port 8 94277 unique_id port 94277 remote_ip 10.8.0.82 94280 username morteza 94280 mac 94280 bytes_out 0 94280 bytes_in 0 94280 station_ip 83.122.36.236 94280 port 12 94280 unique_id port 94280 remote_ip 10.8.0.42 94281 username mehdizare 94281 kill_reason Another user logged on this global unique id 94281 mac 94281 bytes_out 0 94281 bytes_in 0 94281 station_ip 5.120.4.22 94281 port 9 94281 unique_id port 94283 username ksrkrgr 94283 unique_id port 94283 terminate_cause User-Request 94283 bytes_out 697825 94274 username forozande 94274 unique_id port 94274 terminate_cause User-Request 94274 bytes_out 189080 94274 bytes_in 3522138 94274 station_ip 83.123.16.136 94274 port 15728788 94274 nas_port_type Virtual 94274 remote_ip 5.5.5.197 94284 username mohammadmahdi 94284 mac 94284 bytes_out 0 94284 bytes_in 0 94284 station_ip 5.119.65.140 94284 port 8 94284 unique_id port 94286 username mohammadi 94286 mac 94286 bytes_out 0 94286 bytes_in 0 94286 station_ip 83.122.185.64 94286 port 12 94286 unique_id port 94286 remote_ip 10.8.0.62 94287 username mohammadi 94287 mac 94287 bytes_out 28867 94287 bytes_in 37466 94287 station_ip 83.122.185.64 94287 port 12 94287 unique_id port 94287 remote_ip 10.8.0.62 94289 username morteza 94289 kill_reason Another user logged on this global unique id 94289 mac 94289 bytes_out 0 94289 bytes_in 0 94289 station_ip 83.122.36.236 94289 port 8 94289 unique_id port 94289 remote_ip 10.8.0.42 94291 username mohammadi 94291 mac 94291 bytes_out 0 94291 bytes_in 0 94291 station_ip 83.122.185.64 94291 port 12 94291 unique_id port 94291 remote_ip 10.8.0.62 94294 username madadi2 94294 unique_id port 94294 terminate_cause Lost-Carrier 94294 bytes_out 322364 94294 bytes_in 1575421 94294 station_ip 5.120.57.171 94294 port 15728791 94294 nas_port_type Virtual 94294 remote_ip 5.5.5.194 94297 username morteza 94297 kill_reason Another user logged on this global unique id 94297 mac 94297 bytes_out 0 94297 bytes_in 0 94297 station_ip 83.122.36.236 94297 port 8 94297 unique_id port 94300 username morteza 94300 mac 94300 bytes_out 0 94300 bytes_in 0 94300 station_ip 83.122.36.236 94300 port 8 94300 unique_id port 94302 username morteza 94302 kill_reason Maximum check online fails reached 94302 mac 94302 bytes_out 0 94302 bytes_in 0 94302 station_ip 83.122.36.236 94302 port 13 94302 unique_id port 94303 username mohammadi 94303 mac 94303 bytes_out 0 94303 bytes_in 0 94303 station_ip 83.122.185.64 94303 port 8 94303 unique_id port 94303 remote_ip 10.8.0.62 94306 username tahmasebi 94306 unique_id port 94306 terminate_cause User-Request 94306 bytes_out 1859750 94306 bytes_in 39444525 94306 station_ip 5.119.180.122 94306 port 15728793 94306 nas_port_type Virtual 94306 remote_ip 5.5.5.216 94307 username alireza1 94307 unique_id port 94307 terminate_cause User-Request 94307 bytes_out 638061 94307 bytes_in 1755357 94307 station_ip 5.120.116.210 94307 port 15728796 94307 nas_port_type Virtual 94307 remote_ip 5.5.5.193 94308 username arabpour 94308 unique_id port 94308 terminate_cause User-Request 94308 bytes_out 225626 94308 bytes_in 5037386 94308 station_ip 83.122.128.177 94308 port 15728799 94308 nas_port_type Virtual 94308 remote_ip 5.5.5.191 94316 username sadegh 94316 kill_reason Maximum number of concurrent logins reached 94316 unique_id port 94316 bytes_out 0 94316 bytes_in 0 94316 station_ip 5.120.133.241 94316 port 15728808 94316 nas_port_type Virtual 94317 username sadegh 94317 kill_reason Maximum number of concurrent logins reached 94317 unique_id port 94317 bytes_out 0 94317 bytes_in 0 94317 station_ip 5.120.133.241 94317 port 15728809 94317 nas_port_type Virtual 94320 username mohammadi 94320 mac 94320 bytes_out 82429 94320 bytes_in 415713 94320 station_ip 83.122.185.64 94320 port 9 94320 unique_id port 94320 remote_ip 10.8.0.62 94324 username madadi2 94324 unique_id port 94324 terminate_cause Lost-Carrier 94324 bytes_out 31188 94324 bytes_in 151552 94324 station_ip 5.119.4.245 94324 port 15728804 94283 bytes_in 13284511 94283 station_ip 151.234.21.229 94283 port 15728789 94283 nas_port_type Virtual 94283 remote_ip 5.5.5.196 94285 username morteza 94285 mac 94285 bytes_out 87560 94285 bytes_in 813446 94285 station_ip 83.122.36.236 94285 port 12 94285 unique_id port 94285 remote_ip 10.8.1.26 94292 username morteza 94292 kill_reason Another user logged on this global unique id 94292 mac 94292 bytes_out 0 94292 bytes_in 0 94292 station_ip 83.122.36.236 94292 port 8 94292 unique_id port 94295 username mohammadi 94295 mac 94295 bytes_out 106414 94295 bytes_in 218562 94295 station_ip 83.122.185.64 94295 port 12 94295 unique_id port 94295 remote_ip 10.8.0.62 94296 username alireza1 94296 unique_id port 94296 terminate_cause User-Request 94296 bytes_out 0 94296 bytes_in 0 94296 station_ip 5.120.116.210 94296 port 15728795 94296 nas_port_type Virtual 94296 remote_ip 5.5.5.193 94298 username mohammadi 94298 kill_reason Another user logged on this global unique id 94298 mac 94298 bytes_out 0 94298 bytes_in 0 94298 station_ip 83.122.185.64 94298 port 12 94298 unique_id port 94298 remote_ip 10.8.0.62 94301 username alireza1 94301 unique_id port 94301 terminate_cause Lost-Carrier 94301 bytes_out 3576039 94301 bytes_in 117038432 94301 station_ip 5.120.127.251 94301 port 15728785 94301 nas_port_type Virtual 94301 remote_ip 5.5.5.199 94304 username mohammadi 94304 mac 94304 bytes_out 154291 94304 bytes_in 1262428 94304 station_ip 83.122.185.64 94304 port 8 94304 unique_id port 94304 remote_ip 10.8.0.62 94305 username mohammadi 94305 mac 94305 bytes_out 100307 94305 bytes_in 637922 94305 station_ip 83.122.185.64 94305 port 12 94305 unique_id port 94305 remote_ip 10.8.0.62 94309 username ahmadi 94309 unique_id port 94309 terminate_cause User-Request 94309 bytes_out 45381 94309 bytes_in 487281 94309 station_ip 37.129.10.82 94309 port 15728801 94309 nas_port_type Virtual 94309 remote_ip 5.5.5.198 94311 username alireza1 94311 unique_id port 94311 terminate_cause User-Request 94311 bytes_out 53405 94311 bytes_in 169960 94311 station_ip 5.120.116.210 94311 port 15728802 94311 nas_port_type Virtual 94311 remote_ip 5.5.5.190 94314 username alireza1 94314 unique_id port 94314 terminate_cause Lost-Carrier 94314 bytes_out 23122 94314 bytes_in 181103 94314 station_ip 5.120.116.210 94314 port 15728800 94314 nas_port_type Virtual 94314 remote_ip 5.5.5.193 94318 username alirezazamani 94318 kill_reason Relative expiration date has reached 94318 unique_id port 94318 bytes_out 0 94318 bytes_in 0 94318 station_ip 5.120.133.241 94318 port 15728810 94318 nas_port_type Virtual 94323 username amirhosein 94323 unique_id port 94323 terminate_cause Lost-Carrier 94323 bytes_out 25701 94323 bytes_in 175481 94323 station_ip 5.119.237.238 94323 port 15728805 94323 nas_port_type Virtual 94323 remote_ip 5.5.5.217 94326 username alinezhad 94326 unique_id port 94326 terminate_cause User-Request 94326 bytes_out 0 94326 bytes_in 0 94326 station_ip 83.123.64.81 94326 port 15728816 94326 nas_port_type Virtual 94326 remote_ip 5.5.5.186 94328 username alireza1 94328 unique_id port 94328 terminate_cause Lost-Carrier 94328 bytes_out 13153 94328 bytes_in 150302 94328 station_ip 5.120.116.210 94328 port 15728813 94328 nas_port_type Virtual 94328 remote_ip 5.5.5.190 94330 username askari 94330 mac 94330 bytes_out 0 94330 bytes_in 0 94330 station_ip 5.119.92.226 94330 port 9 94330 unique_id port 94330 remote_ip 10.8.0.34 94331 username askari 94331 mac 94331 bytes_out 0 94331 bytes_in 0 94331 station_ip 5.119.92.226 94288 station_ip 5.119.52.19 94288 port 15728783 94288 nas_port_type Virtual 94288 remote_ip 5.5.5.200 94290 username heydari 94290 unique_id port 94290 terminate_cause User-Request 94290 bytes_out 174971 94290 bytes_in 1024951 94290 station_ip 5.120.151.112 94290 port 15728792 94290 nas_port_type Virtual 94290 remote_ip 5.5.5.233 94293 username mohammadi 94293 mac 94293 bytes_out 52891 94293 bytes_in 130368 94293 station_ip 83.122.185.64 94293 port 13 94293 unique_id port 94293 remote_ip 10.8.0.62 94299 username morteza 94299 kill_reason Maximum number of concurrent logins reached 94299 mac 94299 bytes_out 0 94299 bytes_in 0 94299 station_ip 83.122.36.236 94299 port 12 94299 unique_id port 94310 username ksrkrgr 94310 unique_id port 94310 terminate_cause User-Request 94310 bytes_out 3973559 94310 bytes_in 99911132 94310 station_ip 151.234.21.229 94310 port 15728794 94310 nas_port_type Virtual 94310 remote_ip 5.5.5.196 94312 username mehdizare 94312 mac 94312 bytes_out 0 94312 bytes_in 0 94312 station_ip 5.120.4.22 94312 port 9 94312 unique_id port 94313 username ksrkrgr 94313 unique_id port 94313 terminate_cause User-Request 94313 bytes_out 733343 94313 bytes_in 22885018 94313 station_ip 151.234.21.229 94313 port 15728803 94313 nas_port_type Virtual 94313 remote_ip 5.5.5.196 94315 username sadegh 94315 kill_reason Maximum number of concurrent logins reached 94315 unique_id port 94315 bytes_out 0 94315 bytes_in 0 94315 station_ip 5.120.133.241 94315 port 15728807 94315 nas_port_type Virtual 94319 username sadegh 94319 kill_reason Maximum number of concurrent logins reached 94319 unique_id port 94319 bytes_out 0 94319 bytes_in 0 94319 station_ip 5.120.133.241 94319 port 15728811 94319 nas_port_type Virtual 94321 username sadegh 94321 unique_id port 94321 terminate_cause Lost-Carrier 94321 bytes_out 1613141 94321 bytes_in 46454059 94321 station_ip 5.119.7.93 94321 port 15728798 94321 nas_port_type Virtual 94321 remote_ip 5.5.5.192 94322 username mirzaei 94322 kill_reason Maximum check online fails reached 94322 mac 94322 bytes_out 0 94322 bytes_in 0 94322 station_ip 5.119.166.186 94322 port 11 94322 unique_id port 94325 username sadegh 94325 unique_id port 94325 terminate_cause Lost-Carrier 94325 bytes_out 376138 94325 bytes_in 2702312 94325 station_ip 5.120.191.14 94325 port 15728806 94325 nas_port_type Virtual 94325 remote_ip 5.5.5.188 94329 username mohammadi 94329 mac 94329 bytes_out 57630 94329 bytes_in 127729 94329 station_ip 83.122.185.64 94329 port 12 94329 unique_id port 94329 remote_ip 10.8.0.62 94333 username askari 94333 mac 94333 bytes_out 2196 94333 bytes_in 3943 94333 station_ip 5.119.92.226 94333 port 9 94333 unique_id port 94333 remote_ip 10.8.0.34 94335 username mohammadi 94335 mac 94335 bytes_out 0 94335 bytes_in 0 94335 station_ip 83.122.185.64 94335 port 12 94335 unique_id port 94335 remote_ip 10.8.0.62 94336 username mohammadi 94336 mac 94336 bytes_out 62300 94336 bytes_in 80434 94336 station_ip 83.122.185.64 94336 port 14 94336 unique_id port 94336 remote_ip 10.8.0.62 94339 username mehdizare 94339 mac 94339 bytes_out 25690 94339 bytes_in 66152 94339 station_ip 5.120.4.22 94339 port 12 94339 unique_id port 94339 remote_ip 10.8.1.54 94342 username amirhosein 94342 unique_id port 94342 terminate_cause Lost-Carrier 94342 bytes_out 966378 94342 bytes_in 31474592 94342 station_ip 5.119.237.238 94342 port 15728814 94342 nas_port_type Virtual 94342 remote_ip 5.5.5.217 94347 username askari 94347 mac 94347 bytes_out 246260 94324 nas_port_type Virtual 94324 remote_ip 5.5.5.189 94327 username mohammadi 94327 mac 94327 bytes_out 0 94327 bytes_in 0 94327 station_ip 83.122.185.64 94327 port 9 94327 unique_id port 94327 remote_ip 10.8.0.62 94332 username askari 94332 mac 94332 bytes_out 1753 94332 bytes_in 4167 94332 station_ip 5.119.92.226 94332 port 9 94332 unique_id port 94332 remote_ip 10.8.0.34 94334 username mohammadi 94334 mac 94334 bytes_out 370520 94334 bytes_in 3900617 94334 station_ip 83.122.185.64 94334 port 12 94334 unique_id port 94334 remote_ip 10.8.0.62 94338 username mohammadi 94338 kill_reason Another user logged on this global unique id 94338 mac 94338 bytes_out 0 94338 bytes_in 0 94338 station_ip 83.122.185.64 94338 port 12 94338 unique_id port 94338 remote_ip 10.8.0.62 94343 username mahdixz 94343 unique_id port 94343 terminate_cause User-Request 94343 bytes_out 1068687 94343 bytes_in 3505130 94343 station_ip 5.119.182.20 94343 port 15728819 94343 nas_port_type Virtual 94343 remote_ip 5.5.5.184 94344 username alireza1 94344 unique_id port 94344 terminate_cause Lost-Carrier 94344 bytes_out 36490 94344 bytes_in 264651 94344 station_ip 5.120.116.210 94344 port 15728818 94344 nas_port_type Virtual 94344 remote_ip 5.5.5.185 94346 username mirzaei 94346 kill_reason Maximum check online fails reached 94346 mac 94346 bytes_out 0 94346 bytes_in 0 94346 station_ip 5.119.166.186 94346 port 11 94346 unique_id port 94348 username Alirezaza 94348 unique_id port 94348 terminate_cause Lost-Carrier 94348 bytes_out 3535858 94348 bytes_in 103287501 94348 station_ip 5.120.133.241 94348 port 15728812 94348 nas_port_type Virtual 94348 remote_ip 5.5.5.187 94353 username ksrkrgr 94353 unique_id port 94353 terminate_cause User-Request 94353 bytes_out 6000463 94353 bytes_in 102298660 94353 station_ip 151.234.21.229 94353 port 15728815 94353 nas_port_type Virtual 94353 remote_ip 5.5.5.196 94365 username mohammadi 94365 mac 94365 bytes_out 44581 94365 bytes_in 23296 94365 station_ip 83.122.185.64 94365 port 8 94365 unique_id port 94365 remote_ip 10.8.0.62 94366 username arabpour 94366 unique_id port 94366 terminate_cause User-Request 94366 bytes_out 461009 94366 bytes_in 12432814 94366 station_ip 83.122.239.91 94366 port 15728831 94366 nas_port_type Virtual 94366 remote_ip 5.5.5.175 94370 username sadegh 94370 unique_id port 94370 terminate_cause User-Request 94370 bytes_out 5190624 94370 bytes_in 134600017 94370 station_ip 86.57.74.221 94370 port 15728832 94370 nas_port_type Virtual 94370 remote_ip 5.5.5.182 94374 username alinezhad 94374 unique_id port 94374 terminate_cause User-Request 94374 bytes_out 647978 94374 bytes_in 21133436 94374 station_ip 5.202.1.217 94374 port 15728835 94374 nas_port_type Virtual 94374 remote_ip 5.5.5.255 94375 username mammad 94375 unique_id port 94375 terminate_cause Lost-Carrier 94375 bytes_out 3526552 94375 bytes_in 53574893 94375 station_ip 2.183.253.27 94375 port 15728827 94375 nas_port_type Virtual 94375 remote_ip 5.5.5.178 94378 username madadi2 94378 unique_id port 94378 terminate_cause Lost-Carrier 94378 bytes_out 35764 94378 bytes_in 157739 94378 station_ip 5.119.144.41 94378 port 15728837 94378 nas_port_type Virtual 94378 remote_ip 5.5.5.173 94384 username madadi2 94384 unique_id port 94384 terminate_cause Lost-Carrier 94384 bytes_out 285838 94384 bytes_in 2482918 94384 station_ip 5.120.159.122 94384 port 15728841 94384 nas_port_type Virtual 94384 remote_ip 5.5.5.170 94388 username madadi2 94388 unique_id port 94388 terminate_cause Lost-Carrier 94388 bytes_out 50478 94331 port 9 94331 unique_id port 94331 remote_ip 10.8.0.34 94337 username mehdizare 94337 mac 94337 bytes_out 58902 94337 bytes_in 98333 94337 station_ip 5.120.4.22 94337 port 8 94337 unique_id port 94337 remote_ip 10.8.0.70 94340 username farhad 94340 unique_id port 94340 terminate_cause Lost-Carrier 94340 bytes_out 14358002 94340 bytes_in 152121458 94340 station_ip 5.120.32.244 94340 port 15728790 94340 nas_port_type Virtual 94340 remote_ip 5.5.5.195 94341 username alireza1 94341 unique_id port 94341 terminate_cause Lost-Carrier 94341 bytes_out 87882 94341 bytes_in 296853 94341 station_ip 5.120.116.210 94341 port 15728817 94341 nas_port_type Virtual 94341 remote_ip 5.5.5.190 94345 username ahmadipour 94345 unique_id port 94345 terminate_cause Lost-Carrier 94345 bytes_out 398766 94345 bytes_in 7348404 94345 station_ip 113.203.103.10 94345 port 15728820 94345 nas_port_type Virtual 94345 remote_ip 5.5.5.183 94349 username askari 94349 mac 94349 bytes_out 0 94349 bytes_in 0 94349 station_ip 5.119.92.226 94349 port 9 94349 unique_id port 94349 remote_ip 10.8.0.34 188693 port 394 188693 unique_id port 188693 remote_ip 10.8.0.250 188702 username zahra1101 188702 mac 188702 bytes_out 0 188702 bytes_in 0 188702 station_ip 5.120.128.95 188702 port 317 94352 username mohammadi 94352 mac 94352 bytes_out 1085455 94352 bytes_in 1250165 94352 station_ip 83.122.185.64 94352 port 8 94352 unique_id port 94352 remote_ip 10.8.0.62 94359 username forozande 94359 unique_id port 94359 terminate_cause User-Request 94359 bytes_out 110383 94359 bytes_in 1018510 94359 station_ip 83.123.74.208 94359 port 15728829 94359 nas_port_type Virtual 94359 remote_ip 5.5.5.177 94360 username amirhosein 94360 unique_id port 94360 terminate_cause Lost-Carrier 94360 bytes_out 22647 94360 bytes_in 136862 94360 station_ip 5.119.237.238 94360 port 15728826 94360 nas_port_type Virtual 94360 remote_ip 5.5.5.217 94361 username mohammadi 94361 mac 94361 bytes_out 0 94361 bytes_in 0 94361 station_ip 83.122.185.64 94361 port 9 94361 unique_id port 94361 remote_ip 10.8.0.62 94362 username mohammadi 94362 mac 94362 bytes_out 0 94362 bytes_in 0 94362 station_ip 83.122.185.64 94362 port 8 94362 unique_id port 94362 remote_ip 10.8.0.62 94368 username mirzaei 94368 kill_reason Another user logged on this global unique id 94368 mac 94368 bytes_out 0 94368 bytes_in 0 94368 station_ip 5.119.166.186 94368 port 11 94368 unique_id port 94376 username mirzaei 94376 kill_reason Another user logged on this global unique id 94376 mac 94376 bytes_out 0 94376 bytes_in 0 94376 station_ip 5.119.166.186 94376 port 11 94376 unique_id port 94380 username Alirezaza 94380 unique_id port 94380 terminate_cause Lost-Carrier 94380 bytes_out 4008331 94380 bytes_in 103783161 94380 station_ip 5.120.133.241 94380 port 15728823 94380 nas_port_type Virtual 94380 remote_ip 5.5.5.187 94382 username mohammadi 94382 mac 94382 bytes_out 35581 94382 bytes_in 73959 94382 station_ip 113.203.64.23 94382 port 8 94382 unique_id port 94382 remote_ip 10.8.0.62 94386 username mirzaei 94386 kill_reason Maximum check online fails reached 94386 mac 94386 bytes_out 0 94386 bytes_in 0 94386 station_ip 5.119.166.186 94386 port 11 94386 unique_id port 94387 username amirhosein 94387 unique_id port 94387 terminate_cause Lost-Carrier 94387 bytes_out 2306898 94387 bytes_in 63962902 94387 station_ip 5.119.237.238 94387 port 15728838 94387 nas_port_type Virtual 94387 remote_ip 5.5.5.176 188702 unique_id port 94347 bytes_in 1539659 94347 station_ip 5.119.92.226 94347 port 9 94347 unique_id port 94347 remote_ip 10.8.0.34 94350 username mehdizare 94350 mac 94350 bytes_out 0 94350 bytes_in 0 94350 station_ip 5.119.239.98 94350 port 13 94350 unique_id port 94350 remote_ip 10.8.1.54 94354 username forozande 94354 unique_id port 94354 terminate_cause User-Request 94354 bytes_out 107273 94354 bytes_in 150776 94354 station_ip 37.129.101.205 94354 port 15728824 94354 nas_port_type Virtual 94354 remote_ip 5.5.5.180 94355 username alinezhad 94355 unique_id port 94355 terminate_cause User-Request 94355 bytes_out 0 94355 bytes_in 0 94355 station_ip 113.203.2.6 94355 port 15728825 94355 nas_port_type Virtual 94355 remote_ip 5.5.5.179 94356 username mohammadi 94356 mac 94356 bytes_out 0 94356 bytes_in 0 94356 station_ip 83.122.185.64 94356 port 9 94356 unique_id port 94356 remote_ip 10.8.0.62 94357 username mohammadi 94357 mac 94357 bytes_out 0 94357 bytes_in 0 94357 station_ip 83.122.185.64 94357 port 8 94357 unique_id port 94357 remote_ip 10.8.0.62 94358 username mohammadmahdi 94358 mac 94358 bytes_out 0 94358 bytes_in 0 94358 station_ip 5.119.65.140 94358 port 8 94358 unique_id port 94358 remote_ip 10.8.0.82 94363 username mohammadi 94363 mac 94363 bytes_out 0 94363 bytes_in 0 94363 station_ip 83.122.185.64 94363 port 8 94363 unique_id port 94363 remote_ip 10.8.0.62 94364 username sadegh 94364 unique_id port 94364 terminate_cause Lost-Carrier 94364 bytes_out 14567745 94364 bytes_in 341920732 94364 station_ip 86.57.74.221 94364 port 15728821 94364 nas_port_type Virtual 94364 remote_ip 5.5.5.182 94367 username amirhosein 94367 unique_id port 94367 terminate_cause Lost-Carrier 94367 bytes_out 25187 94367 bytes_in 217914 94367 station_ip 5.119.237.238 94367 port 15728830 94367 nas_port_type Virtual 94367 remote_ip 5.5.5.176 94369 username madadi2 94369 unique_id port 94369 terminate_cause Lost-Carrier 94369 bytes_out 968792 94369 bytes_in 3933317 94369 station_ip 5.119.25.129 94369 port 15728822 94369 nas_port_type Virtual 94369 remote_ip 5.5.5.181 94371 username ksrkrgr 94371 unique_id port 94371 terminate_cause User-Request 94371 bytes_out 5971497 94371 bytes_in 449739 94371 station_ip 151.234.21.229 94371 port 15728833 94371 nas_port_type Virtual 94371 remote_ip 5.5.5.196 188694 mac 188694 bytes_out 0 188694 bytes_in 0 188694 station_ip 5.120.128.95 188694 port 395 188694 unique_id port 188694 remote_ip 10.8.0.250 188695 username zahra1101 188695 mac 94373 username ksrkrgr 94373 unique_id port 94373 terminate_cause Lost-Carrier 94373 bytes_out 6120233 94373 bytes_in 588981 94373 station_ip 151.234.21.229 94373 port 15728834 94373 nas_port_type Virtual 94373 remote_ip 5.5.5.196 94377 username forozande 94377 unique_id port 94377 terminate_cause User-Request 94377 bytes_out 200733 94377 bytes_in 1871744 94377 station_ip 83.123.30.93 94377 port 15728839 94377 nas_port_type Virtual 94377 remote_ip 5.5.5.172 94379 username alireza1 94379 unique_id port 94379 terminate_cause User-Request 94379 bytes_out 279033 94379 bytes_in 1292897 94379 station_ip 5.120.102.162 94379 port 15728840 94379 nas_port_type Virtual 94379 remote_ip 5.5.5.171 94381 username mammad 94381 kill_reason Maximum check online fails reached 94381 unique_id port 94381 bytes_out 150136 94381 bytes_in 1549471 94381 station_ip 5.233.64.73 94381 port 15728843 94381 nas_port_type Virtual 94381 remote_ip 5.5.5.168 94383 username mohammadi 94383 mac 94383 bytes_out 0 188695 bytes_out 0 94383 bytes_in 0 94383 station_ip 113.203.64.23 94383 port 8 94383 unique_id port 94383 remote_ip 10.8.0.62 94385 username forozande 94385 unique_id port 94385 terminate_cause User-Request 94385 bytes_out 38698 94385 bytes_in 351584 94385 station_ip 37.129.116.91 94385 port 15728845 94385 nas_port_type Virtual 94385 remote_ip 5.5.5.166 94392 username madadi2 94392 unique_id port 94392 terminate_cause Lost-Carrier 94392 bytes_out 96962 94392 bytes_in 554572 94392 station_ip 5.119.133.176 94392 port 15728847 94392 nas_port_type Virtual 94392 remote_ip 5.5.5.165 94398 username mohammadi 94398 mac 94398 bytes_out 0 94398 bytes_in 0 94398 station_ip 113.203.89.3 94398 port 9 94398 unique_id port 94398 remote_ip 10.8.0.62 94400 username alihosseini 94400 kill_reason Another user logged on this global unique id 94400 mac 94400 bytes_out 0 94400 bytes_in 0 94400 station_ip 5.120.52.99 94400 port 8 94400 unique_id port 94402 username madadi2 94402 unique_id port 94402 terminate_cause Lost-Carrier 94402 bytes_out 1145839 94402 bytes_in 5860888 94402 station_ip 5.119.189.217 94402 port 15728851 94402 nas_port_type Virtual 94402 remote_ip 5.5.5.162 94403 username amirabbas 94403 unique_id port 94403 terminate_cause User-Request 94403 bytes_out 1579389 94403 bytes_in 36894060 94403 station_ip 151.238.231.223 94403 port 15728854 94403 nas_port_type Virtual 94403 remote_ip 5.5.5.160 94407 username mohammadmahdi 94407 kill_reason Another user logged on this global unique id 94407 mac 94407 bytes_out 0 94407 bytes_in 0 94407 station_ip 5.119.65.140 94407 port 9 94407 unique_id port 94407 remote_ip 10.8.0.82 94413 username mohammadi 94413 mac 94413 bytes_out 0 94413 bytes_in 0 94413 station_ip 113.203.89.3 94413 port 9 94413 unique_id port 94413 remote_ip 10.8.0.62 94415 username alihosseini 94415 mac 94415 bytes_out 0 94415 bytes_in 0 94415 station_ip 5.119.232.82 94415 port 8 94415 unique_id port 94415 remote_ip 10.8.0.46 94417 username alihosseini 94417 mac 94417 bytes_out 0 94417 bytes_in 0 94417 station_ip 5.119.232.82 94417 port 12 94417 unique_id port 94417 remote_ip 10.8.1.34 94419 username madadi2 94419 unique_id port 94419 terminate_cause Lost-Carrier 94419 bytes_out 909380 94419 bytes_in 12034556 94419 station_ip 5.119.167.43 94419 port 15728859 94419 nas_port_type Virtual 94419 remote_ip 5.5.5.158 94420 username amirabbas 94420 unique_id port 94420 terminate_cause User-Request 94420 bytes_out 1571328 94420 bytes_in 26148310 94420 station_ip 151.238.231.223 94420 port 15728860 94420 nas_port_type Virtual 94420 remote_ip 5.5.5.160 94421 username amirhosein 94421 unique_id port 94421 terminate_cause Lost-Carrier 94421 bytes_out 7878195 94421 bytes_in 74627112 94421 station_ip 5.119.237.238 94421 port 15728852 94421 nas_port_type Virtual 94421 remote_ip 5.5.5.176 94423 username mahbobeh 94423 unique_id port 94423 terminate_cause Lost-Carrier 94423 bytes_out 1363210 94423 bytes_in 20962364 94423 station_ip 37.129.10.187 94423 port 15728856 94423 nas_port_type Virtual 94423 remote_ip 5.5.5.169 94425 username alinezhad 94425 unique_id port 94425 terminate_cause User-Request 94425 bytes_out 0 94425 bytes_in 0 94425 station_ip 5.202.1.217 94425 port 15728869 94425 nas_port_type Virtual 94425 remote_ip 5.5.5.255 94439 username amirhosein 94439 unique_id port 94439 terminate_cause Lost-Carrier 94439 bytes_out 2507692 94439 bytes_in 54069438 94439 station_ip 5.119.237.238 94439 port 15728865 94439 nas_port_type Virtual 94439 remote_ip 5.5.5.157 94440 username alinezhad 94440 unique_id port 94388 bytes_in 302332 94388 station_ip 5.120.190.20 94388 port 15728844 94388 nas_port_type Virtual 94388 remote_ip 5.5.5.167 94389 username mohammadi 94389 mac 94389 bytes_out 0 94389 bytes_in 0 94389 station_ip 113.203.64.23 94389 port 8 94389 unique_id port 94389 remote_ip 10.8.0.62 94393 username alireza1 94393 unique_id port 94393 terminate_cause User-Request 94393 bytes_out 38931 94393 bytes_in 431045 94393 station_ip 5.120.102.162 94393 port 15728849 94393 nas_port_type Virtual 94393 remote_ip 5.5.5.171 94396 username forozande 94396 unique_id port 94396 terminate_cause User-Request 94396 bytes_out 155851 94396 bytes_in 1285324 94396 station_ip 113.203.113.116 94396 port 15728853 94396 nas_port_type Virtual 94396 remote_ip 5.5.5.161 94404 username alireza1 94404 unique_id port 94404 terminate_cause User-Request 94404 bytes_out 237819 94404 bytes_in 830641 94404 station_ip 5.119.67.17 94404 port 15728858 94404 nas_port_type Virtual 94404 remote_ip 5.5.5.159 188695 bytes_in 0 188695 station_ip 5.120.128.95 188695 port 395 188695 unique_id port 188695 remote_ip 10.8.0.250 188696 username zahra1101 188696 kill_reason Maximum check online fails reached 188696 mac 188696 bytes_out 0 94409 username mohammadmahdi 94409 mac 94409 bytes_out 0 94409 bytes_in 0 94409 station_ip 5.119.65.140 94409 port 9 94409 unique_id port 94410 username mohammadi 94410 mac 94410 bytes_out 0 94410 bytes_in 0 94410 station_ip 113.203.89.3 94410 port 8 94410 unique_id port 94410 remote_ip 10.8.0.62 94414 username alireza1 94414 unique_id port 94414 terminate_cause User-Request 94414 bytes_out 24653 94414 bytes_in 114195 94414 station_ip 5.119.67.17 94414 port 15728863 94414 nas_port_type Virtual 94414 remote_ip 5.5.5.159 94422 username alireza1 94422 unique_id port 94422 terminate_cause User-Request 94422 bytes_out 378809 94422 bytes_in 3140182 94422 station_ip 5.119.67.17 94422 port 15728866 94422 nas_port_type Virtual 94422 remote_ip 5.5.5.159 94424 username madadi2 94424 unique_id port 94424 terminate_cause Lost-Carrier 94424 bytes_out 70471 94424 bytes_in 178939 94424 station_ip 5.120.34.152 94424 port 15728867 94424 nas_port_type Virtual 94424 remote_ip 5.5.5.156 94426 username tahmasebi 94426 unique_id port 94426 terminate_cause User-Request 94426 bytes_out 2180592 94426 bytes_in 74086395 94426 station_ip 5.119.180.122 94426 port 15728864 94426 nas_port_type Virtual 94426 remote_ip 5.5.5.216 94433 username alinezhad 94433 unique_id port 94433 terminate_cause User-Request 94433 bytes_out 0 94433 bytes_in 0 94433 station_ip 37.129.15.139 94433 port 15728874 94433 nas_port_type Virtual 94433 remote_ip 5.5.5.153 94434 username mahdixz 94434 unique_id port 94434 terminate_cause User-Request 94434 bytes_out 70390 94434 bytes_in 337386 94434 station_ip 83.122.74.22 94434 port 15728875 94434 nas_port_type Virtual 94434 remote_ip 5.5.5.154 94435 username Alirezaza 94435 unique_id port 94435 terminate_cause User-Request 94435 bytes_out 0 94435 bytes_in 0 94435 station_ip 5.120.133.241 94435 port 15728876 94435 nas_port_type Virtual 94435 remote_ip 5.5.5.187 94438 username mehdizare 94438 kill_reason Another user logged on this global unique id 94438 mac 94438 bytes_out 0 94438 bytes_in 0 94438 station_ip 5.119.239.98 94438 port 9 94438 unique_id port 94438 remote_ip 10.8.0.70 94441 username alinezhad 94441 unique_id port 94441 terminate_cause User-Request 94441 bytes_out 9366 94441 bytes_in 24530 94441 station_ip 37.129.15.139 94441 port 15728883 94441 nas_port_type Virtual 94441 remote_ip 5.5.5.153 94445 username mohammadmahdi 94390 username alinezhad 94390 unique_id port 94390 terminate_cause User-Request 94390 bytes_out 0 94390 bytes_in 0 94390 station_ip 5.202.1.217 94390 port 15728846 94390 nas_port_type Virtual 94390 remote_ip 5.5.5.255 94391 username ahmadi 94391 unique_id port 94391 terminate_cause User-Request 94391 bytes_out 0 94391 bytes_in 0 94391 station_ip 83.122.108.110 94391 port 15728848 94391 nas_port_type Virtual 94391 remote_ip 5.5.5.164 94394 username madadi2 94394 unique_id port 94394 terminate_cause Lost-Carrier 94394 bytes_out 98519 94394 bytes_in 1262342 94394 station_ip 5.120.16.85 94394 port 15728850 94394 nas_port_type Virtual 94394 remote_ip 5.5.5.163 94395 username mahbobeh 94395 unique_id port 94395 terminate_cause Lost-Carrier 94395 bytes_out 112153 94395 bytes_in 1452668 94395 station_ip 37.129.10.187 94395 port 15728842 94395 nas_port_type Virtual 94395 remote_ip 5.5.5.169 94397 username amirabbas 94397 unique_id port 94397 terminate_cause Lost-Carrier 94397 bytes_out 16343593 94397 bytes_in 456754846 94397 station_ip 31.59.44.14 94397 port 15728836 94397 nas_port_type Virtual 94397 remote_ip 5.5.5.174 94399 username alihosseini 94399 kill_reason Another user logged on this global unique id 94399 mac 94399 bytes_out 0 94399 bytes_in 0 94399 station_ip 5.120.52.99 94399 port 8 94399 unique_id port 94399 remote_ip 10.8.0.46 94401 username alihosseini 94401 kill_reason Another user logged on this global unique id 94401 mac 94401 bytes_out 0 94401 bytes_in 0 94401 station_ip 5.120.52.99 94401 port 8 94401 unique_id port 94405 username alihosseini 94405 mac 94405 bytes_out 0 94405 bytes_in 0 94405 station_ip 5.120.52.99 94405 port 8 94405 unique_id port 94408 username askari 94408 mac 94408 bytes_out 3434203 94408 bytes_in 42720097 94408 station_ip 5.120.74.59 94408 port 12 94408 unique_id port 94408 remote_ip 10.8.0.34 94411 username alireza1 94411 unique_id port 94411 terminate_cause User-Request 94411 bytes_out 18869 94411 bytes_in 51512 94411 station_ip 5.119.67.17 94411 port 15728861 94411 nas_port_type Virtual 94411 remote_ip 5.5.5.159 94412 username alireza1 94412 unique_id port 94412 terminate_cause User-Request 94412 bytes_out 22953 94412 bytes_in 55566 94412 station_ip 5.119.67.17 94412 port 15728862 94412 nas_port_type Virtual 94412 remote_ip 5.5.5.159 94416 username alihosseini 94416 mac 94416 bytes_out 0 94416 bytes_in 0 94416 station_ip 5.119.232.82 94416 port 8 94416 unique_id port 94416 remote_ip 10.8.0.46 94418 username alinezhad 94418 unique_id port 94418 terminate_cause User-Request 94418 bytes_out 476446 94418 bytes_in 3232372 94418 station_ip 5.202.1.217 94418 port 15728855 94418 nas_port_type Virtual 94418 remote_ip 5.5.5.255 94427 username alireza1 94427 unique_id port 94427 terminate_cause User-Request 94427 bytes_out 921107 94427 bytes_in 6722840 94427 station_ip 5.119.67.17 94427 port 15728868 94427 nas_port_type Virtual 94427 remote_ip 5.5.5.159 94428 username aminvpn 94428 unique_id port 94428 terminate_cause User-Request 94428 bytes_out 0 94428 bytes_in 0 94428 station_ip 83.123.161.4 94428 port 15728870 94428 nas_port_type Virtual 94428 remote_ip 5.5.5.155 94429 username mohammadmahdi 94429 mac 94429 bytes_out 2856000 94429 bytes_in 30032012 94429 station_ip 5.119.65.140 94429 port 8 94429 unique_id port 94429 remote_ip 10.8.0.82 94430 username mahdixz 94430 unique_id port 94430 terminate_cause User-Request 94430 bytes_out 86095 94430 bytes_in 594780 94430 station_ip 83.122.74.22 94430 port 15728871 94430 nas_port_type Virtual 94430 remote_ip 5.5.5.154 94431 username mahdixz 94431 unique_id port 94431 terminate_cause User-Request 94431 bytes_out 28003 94431 bytes_in 69396 94431 station_ip 83.122.74.22 94431 port 15728872 94431 nas_port_type Virtual 94431 remote_ip 5.5.5.154 94432 username mahdixz 94432 unique_id port 94432 terminate_cause User-Request 94432 bytes_out 47726 94432 bytes_in 109038 94432 station_ip 83.122.74.22 94432 port 15728873 94432 nas_port_type Virtual 94432 remote_ip 5.5.5.154 94436 username Alirezaza 94436 unique_id port 94436 terminate_cause User-Request 94436 bytes_out 626481 94436 bytes_in 7492350 94436 station_ip 5.120.133.241 94436 port 15728877 94436 nas_port_type Virtual 94436 remote_ip 5.5.5.187 94437 username mohammadmahdi 94437 kill_reason Another user logged on this global unique id 94437 mac 94437 bytes_out 0 94437 bytes_in 0 94437 station_ip 5.119.65.140 94437 port 8 94437 unique_id port 94437 remote_ip 10.8.0.82 94444 username mammad 94444 unique_id port 94444 terminate_cause User-Request 94444 bytes_out 1298603 94444 bytes_in 34878782 94444 station_ip 5.120.115.134 94444 port 15728879 94444 nas_port_type Virtual 94444 remote_ip 5.5.5.152 94448 username arabpour 94448 unique_id port 94448 terminate_cause User-Request 94448 bytes_out 99918 94448 bytes_in 1128467 94448 station_ip 83.123.253.226 94448 port 15728888 94448 nas_port_type Virtual 94448 remote_ip 5.5.5.147 94453 username heydari 94453 kill_reason Relative expiration date has reached 94453 unique_id port 94453 bytes_out 0 94453 bytes_in 0 94453 station_ip 5.120.151.112 94453 port 15728892 94453 nas_port_type Virtual 94455 username alinezhad 94455 unique_id port 94455 terminate_cause User-Request 94455 bytes_out 0 94455 bytes_in 0 94455 station_ip 37.129.15.139 94455 port 15728894 94455 nas_port_type Virtual 94455 remote_ip 5.5.5.153 94457 username sadegh 94457 unique_id port 94457 terminate_cause User-Request 94457 bytes_out 5128027 94457 bytes_in 99772905 94457 station_ip 86.57.119.253 94457 port 15728886 94457 nas_port_type Virtual 94457 remote_ip 5.5.5.148 94458 username mahdixz 94458 unique_id port 94458 terminate_cause User-Request 94458 bytes_out 0 94458 bytes_in 0 94458 station_ip 151.235.94.64 94458 port 15728896 94458 nas_port_type Virtual 94458 remote_ip 5.5.5.146 94462 username mehdizare 94462 kill_reason Another user logged on this global unique id 94462 mac 94462 bytes_out 0 94462 bytes_in 0 94462 station_ip 5.119.239.98 94462 port 9 94462 unique_id port 94463 username mirzaei 94463 kill_reason Another user logged on this global unique id 94463 mac 94463 bytes_out 0 94463 bytes_in 0 94463 station_ip 5.119.166.186 94463 port 11 94463 unique_id port 94470 username mehdizare 94470 kill_reason Another user logged on this global unique id 94470 mac 94470 bytes_out 0 94470 bytes_in 0 94470 station_ip 5.119.239.98 94470 port 9 94470 unique_id port 94474 username mehdizare 94474 kill_reason Another user logged on this global unique id 94474 mac 94474 bytes_out 0 94474 bytes_in 0 94474 station_ip 5.119.239.98 94474 port 9 94474 unique_id port 188696 bytes_in 0 188696 station_ip 5.120.128.95 188696 port 395 188696 unique_id port 188698 username sekonji0496 188698 mac 188698 bytes_out 0 188698 bytes_in 0 188698 station_ip 83.123.0.241 94480 username tahmasebi 94480 unique_id port 94480 terminate_cause User-Request 94480 bytes_out 6173290 94480 bytes_in 202870173 94480 station_ip 5.119.180.122 94480 port 15728903 94480 nas_port_type Virtual 94480 remote_ip 5.5.5.216 94481 username tahmasebi 94481 unique_id port 94481 terminate_cause User-Request 188698 port 396 94440 terminate_cause User-Request 94440 bytes_out 0 94440 bytes_in 0 94440 station_ip 37.129.15.139 94440 port 15728881 94440 nas_port_type Virtual 94440 remote_ip 5.5.5.153 188697 username zahra1101 188697 mac 188697 bytes_out 0 188697 bytes_in 0 188697 station_ip 5.120.128.95 188697 port 397 188697 unique_id port 188697 remote_ip 10.8.0.250 188699 username zahra1101 94443 username alinezhad 94443 unique_id port 94443 terminate_cause User-Request 94443 bytes_out 5712 94443 bytes_in 15691 94443 station_ip 37.129.15.139 94443 port 15728884 94443 nas_port_type Virtual 94443 remote_ip 5.5.5.153 94446 username madadi2 94446 unique_id port 94446 terminate_cause Lost-Carrier 94446 bytes_out 231772 94446 bytes_in 1306719 94446 station_ip 5.119.183.67 94446 port 15728880 94446 nas_port_type Virtual 94446 remote_ip 5.5.5.151 94447 username alireza1 94447 unique_id port 94447 terminate_cause Lost-Carrier 94447 bytes_out 1079348 94447 bytes_in 19731217 94447 station_ip 5.119.67.17 94447 port 15728878 94447 nas_port_type Virtual 94447 remote_ip 5.5.5.159 94451 username heydari 94451 kill_reason Relative expiration date has reached 94451 unique_id port 94451 bytes_out 0 94451 bytes_in 0 94451 station_ip 5.120.151.112 94451 port 15728890 94451 nas_port_type Virtual 94454 username heydari 94454 kill_reason Relative expiration date has reached 94454 unique_id port 94454 bytes_out 0 94454 bytes_in 0 94454 station_ip 5.120.151.112 94454 port 15728893 94454 nas_port_type Virtual 94459 username mahdixz 94459 unique_id port 94459 terminate_cause User-Request 94459 bytes_out 97987 94459 bytes_in 716518 94459 station_ip 151.235.94.64 94459 port 15728897 94459 nas_port_type Virtual 94459 remote_ip 5.5.5.146 94460 username mahdixz 94460 unique_id port 94460 terminate_cause User-Request 94460 bytes_out 139657 94460 bytes_in 612162 94460 station_ip 151.235.94.64 94460 port 15728898 94460 nas_port_type Virtual 94460 remote_ip 5.5.5.146 94461 username mammad 94461 unique_id port 94461 terminate_cause User-Request 94461 bytes_out 8246478 94461 bytes_in 116555292 94461 station_ip 5.233.64.73 94461 port 15728887 94461 nas_port_type Virtual 94461 remote_ip 5.5.5.168 94464 username mehdizare 94464 kill_reason Another user logged on this global unique id 94464 mac 94464 bytes_out 0 94464 bytes_in 0 94464 station_ip 5.119.239.98 94464 port 9 94464 unique_id port 94465 username mehdizare 94465 kill_reason Another user logged on this global unique id 94465 mac 94465 bytes_out 0 94465 bytes_in 0 94465 station_ip 5.119.239.98 94465 port 9 94465 unique_id port 94467 username mehdizare 94467 kill_reason Another user logged on this global unique id 94467 mac 94467 bytes_out 0 94467 bytes_in 0 94467 station_ip 5.119.239.98 94467 port 9 94467 unique_id port 94468 username mehdizare 94468 kill_reason Another user logged on this global unique id 94468 mac 94468 bytes_out 0 94468 bytes_in 0 94468 station_ip 5.119.239.98 94468 port 9 94468 unique_id port 94475 username amirabbas 94475 unique_id port 94475 terminate_cause User-Request 94475 bytes_out 11601939 94475 bytes_in 281569204 94475 station_ip 151.238.231.223 94475 port 15728889 94475 nas_port_type Virtual 94475 remote_ip 5.5.5.160 94476 username mehdizare 94476 mac 94476 bytes_out 0 94476 bytes_in 0 94476 station_ip 5.119.239.98 94476 port 9 94476 unique_id port 94478 username sadegh 94478 unique_id port 94478 terminate_cause User-Request 94478 bytes_out 4362444 94478 bytes_in 105402981 94478 station_ip 86.57.119.253 94478 port 15728902 94478 nas_port_type Virtual 94478 remote_ip 5.5.5.148 188699 mac 94445 mac 94445 bytes_out 0 94445 bytes_in 0 94445 station_ip 5.119.65.140 94445 port 8 94445 unique_id port 94449 username alihosseini 94449 mac 94449 bytes_out 4949964 94449 bytes_in 34946218 94449 station_ip 5.119.232.82 94449 port 12 94449 unique_id port 94449 remote_ip 10.8.1.34 94450 username mohammadi 94450 mac 94450 bytes_out 0 94450 bytes_in 0 94450 station_ip 113.203.89.3 94450 port 8 94450 unique_id port 94450 remote_ip 10.8.0.62 94452 username heydari 94452 kill_reason Relative expiration date has reached 94452 unique_id port 94452 bytes_out 0 94452 bytes_in 0 94452 station_ip 5.120.151.112 94452 port 15728891 94452 nas_port_type Virtual 94456 username heydari 94456 kill_reason Relative expiration date has reached 94456 unique_id port 94456 bytes_out 0 94456 bytes_in 0 94456 station_ip 5.120.151.112 94456 port 15728895 94456 nas_port_type Virtual 94466 username mammad 94466 unique_id port 94466 terminate_cause User-Request 94466 bytes_out 2021703 94466 bytes_in 42267685 94466 station_ip 5.233.64.73 94466 port 15728900 94466 nas_port_type Virtual 94466 remote_ip 5.5.5.168 94469 username mirzaei 94469 kill_reason Another user logged on this global unique id 94469 mac 94469 bytes_out 0 94469 bytes_in 0 94469 station_ip 5.119.166.186 94469 port 11 94469 unique_id port 94471 username tahmasebi 94471 unique_id port 94471 terminate_cause Lost-Carrier 94471 bytes_out 147619 94471 bytes_in 2940641 94471 station_ip 5.119.180.122 94471 port 15728901 94471 nas_port_type Virtual 94471 remote_ip 5.5.5.216 94472 username mehdizare 94472 kill_reason Another user logged on this global unique id 94472 mac 94472 bytes_out 0 94472 bytes_in 0 94472 station_ip 5.119.239.98 94472 port 9 94472 unique_id port 94473 username mirzaei 94473 kill_reason Another user logged on this global unique id 94473 mac 94473 bytes_out 0 94473 bytes_in 0 94473 station_ip 5.119.166.186 94473 port 11 94473 unique_id port 94479 username shahrooz 94479 unique_id port 94479 terminate_cause Lost-Carrier 94479 bytes_out 4266662 94479 bytes_in 53836969 94479 station_ip 37.129.24.109 94479 port 15728899 94479 nas_port_type Virtual 94479 remote_ip 5.5.5.145 94481 bytes_out 7505435 94481 bytes_in 299678111 94481 station_ip 5.119.180.122 94481 port 15728904 94481 nas_port_type Virtual 94481 remote_ip 5.5.5.216 94483 username aminvpn 94483 kill_reason Another user logged on this global unique id 94483 mac 94483 bytes_out 0 94483 bytes_in 0 94483 station_ip 83.123.240.108 94483 port 8 94483 unique_id port 94483 remote_ip 10.8.0.6 94490 username askari 94490 mac 94490 bytes_out 2444 94490 bytes_in 3868 94490 station_ip 5.120.72.224 94490 port 12 94490 unique_id port 94490 remote_ip 10.8.1.30 94492 username alireza1 94492 unique_id port 94492 terminate_cause Lost-Carrier 94492 bytes_out 684191 94492 bytes_in 1724445 94492 station_ip 5.119.67.17 94492 port 15728910 94492 nas_port_type Virtual 94492 remote_ip 5.5.5.159 94494 username forozande 94494 unique_id port 94494 terminate_cause User-Request 94494 bytes_out 149964 94494 bytes_in 1663603 94494 station_ip 37.129.32.202 94494 port 15728913 94494 nas_port_type Virtual 94494 remote_ip 5.5.5.144 94506 username alinezhad 94506 unique_id port 94506 terminate_cause User-Request 94506 bytes_out 282248 94506 bytes_in 917524 94506 station_ip 83.122.31.135 94506 port 15728654 94506 nas_port_type Virtual 94506 remote_ip 5.5.5.249 94507 username madadi2 94507 unique_id port 94507 terminate_cause Lost-Carrier 94507 bytes_out 795127 94507 bytes_in 3909789 94507 station_ip 5.120.95.50 94482 username mohammadi 94482 mac 94482 bytes_out 0 94482 bytes_in 0 94482 station_ip 113.203.27.39 94482 port 8 94482 unique_id port 94482 remote_ip 10.8.0.62 94485 username caferibar 94485 kill_reason Relative expiration date has reached 94485 unique_id port 94485 bytes_out 0 94485 bytes_in 0 94485 station_ip 37.129.214.129 94485 port 15728905 94485 nas_port_type Virtual 94486 username askari 94486 mac 94486 bytes_out 0 94486 bytes_in 0 94486 station_ip 5.119.39.55 94486 port 9 94486 unique_id port 94486 remote_ip 10.8.0.34 94489 username askari 94489 mac 94489 bytes_out 0 94489 bytes_in 0 94489 station_ip 5.120.72.224 94489 port 8 94489 unique_id port 94489 remote_ip 10.8.0.34 94495 username mahbobeh 94495 unique_id port 94495 terminate_cause Admin-Reboot 94495 bytes_out 938392 94495 bytes_in 19025696 94495 station_ip 37.129.10.187 94495 port 15728911 94495 nas_port_type Virtual 94495 remote_ip 5.5.5.169 94499 username forozande 94499 unique_id port 94499 terminate_cause User-Request 94499 bytes_out 49586 94499 bytes_in 778204 94499 station_ip 37.129.32.202 94499 port 15728645 94499 nas_port_type Virtual 94499 remote_ip 5.5.5.254 94500 username mehdizare 94500 kill_reason Another user logged on this global unique id 94500 mac 94500 bytes_out 0 94500 bytes_in 0 94500 station_ip 5.119.239.98 94500 port 8 94500 unique_id port 94500 remote_ip 10.8.0.70 94502 username mehdizare 94502 mac 94502 bytes_out 0 94502 bytes_in 0 94502 station_ip 5.119.239.98 94502 port 8 94502 unique_id port 94504 username mehdizare 94504 kill_reason Another user logged on this global unique id 94504 mac 94504 bytes_out 0 94504 bytes_in 0 94504 station_ip 5.119.239.98 94504 port 8 94504 unique_id port 94504 remote_ip 10.8.0.70 94510 username mirzaei 94510 mac 94510 bytes_out 0 94510 bytes_in 0 94510 station_ip 5.119.166.186 94510 port 12 94510 unique_id port 94510 remote_ip 10.8.0.14 94511 username forozande 94511 unique_id port 94511 terminate_cause User-Request 94511 bytes_out 45919 94511 bytes_in 519745 94511 station_ip 83.123.179.145 94511 port 15728662 94511 nas_port_type Virtual 94511 remote_ip 5.5.5.245 94514 username farhad 94514 unique_id port 94514 terminate_cause Lost-Carrier 94514 bytes_out 3225797 94514 bytes_in 50149894 94514 station_ip 5.119.238.13 94514 port 15728652 94514 nas_port_type Virtual 94514 remote_ip 5.5.5.251 94515 username Alirezaza 94515 unique_id port 94515 terminate_cause Lost-Carrier 94515 bytes_out 1010934 94515 bytes_in 21634900 94515 station_ip 5.119.157.17 94515 port 15728660 94515 nas_port_type Virtual 94515 remote_ip 5.5.5.247 94524 username aminvpn 94524 mac 94524 bytes_out 55258 94524 bytes_in 61972 94524 station_ip 83.123.146.144 94524 port 8 94524 unique_id port 94524 remote_ip 10.8.0.6 94527 username Alirezaza 94527 unique_id port 94527 terminate_cause Lost-Carrier 94527 bytes_out 370872 94527 bytes_in 1485800 94527 station_ip 5.119.122.78 94527 port 15728663 94527 nas_port_type Virtual 94527 remote_ip 5.5.5.244 94528 username Alirezaza 94528 unique_id port 94528 terminate_cause User-Request 94528 bytes_out 0 94528 bytes_in 0 94528 station_ip 5.119.217.123 94528 port 15728672 94528 nas_port_type Virtual 94528 remote_ip 5.5.5.241 94529 username forozande 94529 unique_id port 94529 terminate_cause User-Request 94529 bytes_out 58694 94529 bytes_in 460566 94529 station_ip 83.123.179.145 94529 port 15728673 94529 nas_port_type Virtual 94529 remote_ip 5.5.5.245 94532 username Alirezaza 94532 unique_id port 94532 terminate_cause Lost-Carrier 94484 username aminvpn 94484 mac 94484 bytes_out 0 94484 bytes_in 0 94484 station_ip 83.123.240.108 94484 port 8 94484 unique_id port 94487 username askari 94487 mac 94487 bytes_out 0 94487 bytes_in 0 94487 station_ip 5.120.95.23 94487 port 8 94487 unique_id port 94487 remote_ip 10.8.0.34 94488 username askari 94488 mac 94488 bytes_out 0 94488 bytes_in 0 94488 station_ip 5.120.95.23 94488 port 9 94488 unique_id port 94488 remote_ip 10.8.0.34 94491 username askari 94491 mac 94491 bytes_out 0 94491 bytes_in 0 94491 station_ip 5.120.72.224 94491 port 8 94491 unique_id port 94491 remote_ip 10.8.0.34 94493 username forozande 94493 unique_id port 94493 terminate_cause User-Request 94493 bytes_out 64285 94493 bytes_in 605860 94493 station_ip 37.129.32.202 94493 port 15728912 94493 nas_port_type Virtual 94493 remote_ip 5.5.5.144 94496 username forozande 94496 unique_id port 94496 terminate_cause User-Request 94496 bytes_out 43619 94496 bytes_in 122750 94496 station_ip 37.129.32.202 94496 port 15728641 94496 nas_port_type Virtual 94496 remote_ip 5.5.5.254 94497 username forozande 94497 unique_id port 94497 terminate_cause User-Request 94497 bytes_out 68262 94497 bytes_in 1444745 94497 station_ip 37.129.32.202 94497 port 15728642 94497 nas_port_type Virtual 94497 remote_ip 5.5.5.254 94498 username forozande 94498 unique_id port 94498 terminate_cause User-Request 94498 bytes_out 35272 94498 bytes_in 583805 94498 station_ip 37.129.32.202 94498 port 15728644 94498 nas_port_type Virtual 94498 remote_ip 5.5.5.254 94501 username forozande 94501 unique_id port 94501 terminate_cause User-Request 94501 bytes_out 140234 94501 bytes_in 2988077 94501 station_ip 37.129.32.202 94501 port 15728647 94501 nas_port_type Virtual 94501 remote_ip 5.5.5.254 94503 username farhad 94503 unique_id port 94503 terminate_cause Lost-Carrier 94503 bytes_out 2346278 94503 bytes_in 24745406 94503 station_ip 5.119.50.203 94503 port 15728643 94503 nas_port_type Virtual 94503 remote_ip 5.5.5.253 94505 username forozande 94505 unique_id port 94505 terminate_cause User-Request 94505 bytes_out 20953 94505 bytes_in 62909 94505 station_ip 37.129.52.220 94505 port 15728653 94505 nas_port_type Virtual 94505 remote_ip 5.5.5.250 94508 username mehdizare 94508 mac 94508 bytes_out 0 94508 bytes_in 0 94508 station_ip 5.119.239.98 94508 port 8 94508 unique_id port 94509 username mirzaei 94509 mac 94509 bytes_out 0 94509 bytes_in 0 94509 station_ip 5.119.166.186 94509 port 11 94509 unique_id port 94513 username madadi2 94513 unique_id port 94513 terminate_cause Lost-Carrier 94513 bytes_out 102490 94513 bytes_in 297961 94513 station_ip 5.120.31.230 94513 port 15728661 94513 nas_port_type Virtual 94513 remote_ip 5.5.5.246 94517 username heydari 94517 kill_reason Relative expiration date has reached 94517 unique_id port 94517 bytes_out 0 94517 bytes_in 0 94517 station_ip 5.120.151.112 94517 port 15728664 94517 nas_port_type Virtual 94521 username aminvpn 94521 mac 94521 bytes_out 1194380 94521 bytes_in 4773861 94521 station_ip 83.123.146.144 94521 port 8 94521 unique_id port 94521 remote_ip 10.8.0.6 94523 username aminvpn 94523 mac 94523 bytes_out 0 94523 bytes_in 0 94523 station_ip 83.123.146.144 94523 port 12 94523 unique_id port 94523 remote_ip 10.8.0.6 94525 username aminvpn 94525 mac 94525 bytes_out 50258 94525 bytes_in 63956 94525 station_ip 83.123.146.144 94525 port 8 94525 unique_id port 94525 remote_ip 10.8.0.6 94526 username forozande 94507 port 15728646 94507 nas_port_type Virtual 94507 remote_ip 5.5.5.252 94512 username Alirezaza 94512 unique_id port 94512 terminate_cause Lost-Carrier 94512 bytes_out 520122 94512 bytes_in 2455911 94512 station_ip 5.120.133.241 94512 port 15728659 94512 nas_port_type Virtual 94512 remote_ip 5.5.5.248 94516 username alireza1 94516 unique_id port 94516 terminate_cause User-Request 94516 bytes_out 5515441 94516 bytes_in 8105424 94516 station_ip 5.119.67.17 94516 port 15728640 94516 nas_port_type Virtual 94516 remote_ip 5.5.5.255 94518 username forozande 94518 unique_id port 94518 terminate_cause User-Request 94518 bytes_out 59854 94518 bytes_in 859052 94518 station_ip 83.123.179.145 94518 port 15728665 94518 nas_port_type Virtual 94518 remote_ip 5.5.5.245 94519 username forozande 94519 unique_id port 94519 terminate_cause User-Request 94519 bytes_out 52746 94519 bytes_in 520303 94519 station_ip 83.123.179.145 94519 port 15728667 94519 nas_port_type Virtual 94519 remote_ip 5.5.5.245 94520 username alihosseini 94520 kill_reason Another user logged on this global unique id 94520 mac 94520 bytes_out 0 94520 bytes_in 0 94520 station_ip 5.120.17.49 94520 port 12 94520 unique_id port 94520 remote_ip 10.8.1.34 94522 username forozande 94522 unique_id port 94522 terminate_cause User-Request 94522 bytes_out 64514 94522 bytes_in 1494869 94522 station_ip 83.123.179.145 94522 port 15728668 94522 nas_port_type Virtual 94522 remote_ip 5.5.5.245 94531 username forozande 94531 unique_id port 94531 terminate_cause User-Request 94531 bytes_out 393934 94531 bytes_in 13077413 94531 station_ip 83.123.179.145 94531 port 15728675 94531 nas_port_type Virtual 94531 remote_ip 5.5.5.245 94533 username forozande 94533 unique_id port 94533 terminate_cause User-Request 94533 bytes_out 447872 94533 bytes_in 12035288 94533 station_ip 83.123.179.145 94533 port 15728676 94533 nas_port_type Virtual 94533 remote_ip 5.5.5.245 94535 username aminvpn 94535 mac 94535 bytes_out 0 94535 bytes_in 0 94535 station_ip 83.123.146.144 94535 port 8 94535 unique_id port 94535 remote_ip 10.8.0.6 94543 username mehdizare 94543 mac 94543 bytes_out 644774 94543 bytes_in 13531786 94543 station_ip 5.119.239.98 94543 port 9 94543 unique_id port 94543 remote_ip 10.8.0.70 94544 username alihosseini 94544 mac 94544 bytes_out 0 94544 bytes_in 0 94544 station_ip 5.120.17.49 94544 port 13 94544 unique_id port 94544 remote_ip 10.8.1.34 94548 username forozande 94548 unique_id port 94548 terminate_cause User-Request 94548 bytes_out 38503 94548 bytes_in 102679 94548 station_ip 83.122.135.84 94548 port 15728682 94548 nas_port_type Virtual 94548 remote_ip 5.5.5.235 94550 username mehdizare 94550 mac 94550 bytes_out 0 94550 bytes_in 0 94550 station_ip 5.119.239.98 94550 port 13 94550 unique_id port 94550 remote_ip 10.8.1.54 94553 username mehdizare 94553 mac 94553 bytes_out 0 94553 bytes_in 0 94553 station_ip 5.119.239.98 94553 port 9 94553 unique_id port 94553 remote_ip 10.8.0.70 94554 username alihosseini 94554 mac 94554 bytes_out 99393 94554 bytes_in 783931 94554 station_ip 5.120.17.49 94554 port 9 94554 unique_id port 94554 remote_ip 10.8.0.46 94555 username alihosseini 94555 mac 94555 bytes_out 0 94555 bytes_in 0 94555 station_ip 5.120.17.49 94555 port 14 94555 unique_id port 94555 remote_ip 10.8.1.34 94558 username alihosseini 94558 mac 94558 bytes_out 0 94558 bytes_in 0 94558 station_ip 5.120.17.49 94558 port 8 94558 unique_id port 94558 remote_ip 10.8.0.46 94526 unique_id port 94526 terminate_cause User-Request 94526 bytes_out 40019 94526 bytes_in 550753 94526 station_ip 83.123.179.145 94526 port 15728671 94526 nas_port_type Virtual 94526 remote_ip 5.5.5.245 94530 username madadi2 94530 unique_id port 94530 terminate_cause Lost-Carrier 94530 bytes_out 116694 94530 bytes_in 848043 94530 station_ip 5.119.207.71 94530 port 15728670 94530 nas_port_type Virtual 94530 remote_ip 5.5.5.242 94536 username Alirezaza 94536 unique_id port 94536 terminate_cause Lost-Carrier 94536 bytes_out 715688 94536 bytes_in 14708591 94536 station_ip 5.119.217.123 94536 port 15728674 94536 nas_port_type Virtual 94536 remote_ip 5.5.5.241 94537 username alihosseini 94537 mac 94537 bytes_out 0 94537 bytes_in 0 94537 station_ip 5.120.17.49 94537 port 8 94537 unique_id port 94537 remote_ip 10.8.0.46 94539 username sadegh 94539 unique_id port 94539 terminate_cause User-Request 94539 bytes_out 4012244 94539 bytes_in 28652451 94539 station_ip 86.57.1.232 94539 port 15728666 94539 nas_port_type Virtual 94539 remote_ip 5.5.5.243 94541 username madadi2 94541 unique_id port 94541 terminate_cause Lost-Carrier 94541 bytes_out 378082 94541 bytes_in 4591442 94541 station_ip 5.119.6.22 94541 port 15728677 94541 nas_port_type Virtual 94541 remote_ip 5.5.5.240 94545 username alihosseini 94545 mac 94545 bytes_out 0 94545 bytes_in 0 94545 station_ip 5.120.17.49 94545 port 9 94545 unique_id port 94545 remote_ip 10.8.0.46 94547 username madadi2 94547 unique_id port 94547 terminate_cause Lost-Carrier 94547 bytes_out 169444 94547 bytes_in 431412 94547 station_ip 5.120.33.209 94547 port 15728680 94547 nas_port_type Virtual 94547 remote_ip 5.5.5.237 94552 username Alirezaza 94552 unique_id port 94552 terminate_cause Lost-Carrier 94552 bytes_out 5680063 94552 bytes_in 2889963 94552 station_ip 5.120.47.98 94552 port 15728681 94552 nas_port_type Virtual 94552 remote_ip 5.5.5.236 94556 username aminvpn 94556 mac 94556 bytes_out 358901 94556 bytes_in 598704 94556 station_ip 83.123.174.96 94556 port 8 94556 unique_id port 94556 remote_ip 10.8.0.6 94557 username alihosseini 94557 mac 94557 bytes_out 0 94557 bytes_in 0 94557 station_ip 5.120.17.49 94557 port 8 94557 unique_id port 94557 remote_ip 10.8.0.46 94559 username alihosseini 94559 mac 94559 bytes_out 0 94559 bytes_in 0 94559 station_ip 5.120.17.49 94559 port 8 94559 unique_id port 94559 remote_ip 10.8.0.46 94573 username mehdizare 94573 mac 94573 bytes_out 0 94573 bytes_in 0 94573 station_ip 5.119.239.98 94573 port 13 94573 unique_id port 94573 remote_ip 10.8.1.54 94577 username mehdizare 94577 mac 94577 bytes_out 11736 94577 bytes_in 14801 94577 station_ip 5.119.239.98 94577 port 13 94577 unique_id port 94577 remote_ip 10.8.1.54 94579 username aminvpn 94579 mac 94579 bytes_out 0 94579 bytes_in 0 94579 station_ip 83.123.174.96 94579 port 8 94579 unique_id port 94579 remote_ip 10.8.0.6 94587 username forozande 94587 unique_id port 94587 terminate_cause User-Request 94587 bytes_out 51218 94587 bytes_in 411525 94587 station_ip 37.129.223.60 94587 port 15728693 94587 nas_port_type Virtual 94587 remote_ip 5.5.5.229 94588 username Alirezaza 94588 unique_id port 94588 terminate_cause User-Request 94588 bytes_out 0 94588 bytes_in 0 94588 station_ip 5.120.133.241 94588 port 15728695 94588 nas_port_type Virtual 94588 remote_ip 5.5.5.248 94590 username aminvpn 94590 mac 94590 bytes_out 107360 94590 bytes_in 116867 94590 station_ip 83.123.174.96 94532 bytes_out 500263 94532 bytes_in 8237944 94532 station_ip 5.120.133.241 94532 port 15728669 94532 nas_port_type Virtual 94532 remote_ip 5.5.5.248 94534 username mohammadi 94534 mac 94534 bytes_out 102846 94534 bytes_in 232938 94534 station_ip 113.203.75.3 94534 port 12 94534 unique_id port 94534 remote_ip 10.8.0.62 94538 username alihosseini 94538 mac 94538 bytes_out 0 94538 bytes_in 0 94538 station_ip 5.120.17.49 94538 port 12 94538 unique_id port 94538 remote_ip 10.8.1.34 94540 username alihosseini 94540 mac 94540 bytes_out 0 94540 bytes_in 0 94540 station_ip 5.120.17.49 94540 port 8 94540 unique_id port 94540 remote_ip 10.8.0.46 94542 username alihosseini 94542 kill_reason Maximum check online fails reached 94542 mac 94542 bytes_out 0 94542 bytes_in 0 94542 station_ip 5.120.17.49 94542 port 12 94542 unique_id port 94546 username Alirezaza 94546 unique_id port 94546 terminate_cause Lost-Carrier 94546 bytes_out 4615935 94546 bytes_in 7579252 94546 station_ip 5.119.82.208 94546 port 15728678 94546 nas_port_type Virtual 94546 remote_ip 5.5.5.239 94549 username mehdizare 94549 mac 94549 bytes_out 13440 94549 bytes_in 22014 94549 station_ip 5.119.239.98 94549 port 9 94549 unique_id port 94549 remote_ip 10.8.0.70 94551 username alihosseini 94551 mac 94551 bytes_out 0 94551 bytes_in 0 94551 station_ip 5.120.17.49 94551 port 12 94551 unique_id port 94551 remote_ip 10.8.0.46 94563 username forozande 94563 unique_id port 94563 terminate_cause User-Request 94563 bytes_out 41343 94563 bytes_in 118461 94563 station_ip 37.129.238.28 94563 port 15728684 94563 nas_port_type Virtual 94563 remote_ip 5.5.5.234 94564 username alihosseini 94564 mac 94564 bytes_out 0 94564 bytes_in 0 94564 station_ip 5.120.17.49 94564 port 12 94564 unique_id port 94564 remote_ip 10.8.0.46 94569 username aminvpn 94569 mac 94569 bytes_out 610484 94569 bytes_in 10361184 94569 station_ip 83.123.174.96 94569 port 9 94569 unique_id port 94569 remote_ip 10.8.0.6 94576 username mohammadi 94576 mac 94576 bytes_out 0 94576 bytes_in 0 94576 station_ip 113.203.97.63 94576 port 14 94576 unique_id port 94576 remote_ip 10.8.0.62 94580 username mohammadi 94580 mac 94580 bytes_out 0 94580 bytes_in 0 94580 station_ip 113.203.97.63 94580 port 14 94580 unique_id port 94580 remote_ip 10.8.0.62 94582 username mohammadi 94582 mac 94582 bytes_out 0 94582 bytes_in 0 94582 station_ip 113.203.97.63 94582 port 14 94582 unique_id port 94582 remote_ip 10.8.0.62 94583 username alireza1 94583 unique_id port 94583 terminate_cause User-Request 94583 bytes_out 1057333 94583 bytes_in 7315707 94583 station_ip 5.119.67.17 94583 port 15728683 94583 nas_port_type Virtual 94583 remote_ip 5.5.5.255 94586 username forozande 94586 unique_id port 94586 terminate_cause User-Request 94586 bytes_out 0 94586 bytes_in 0 94586 station_ip 37.129.223.60 94586 port 15728690 94586 nas_port_type Virtual 94586 remote_ip 5.5.5.229 94589 username morteza 94589 mac 94589 bytes_out 170223 94589 bytes_in 3069225 94589 station_ip 37.129.253.128 94589 port 14 94589 unique_id port 94589 remote_ip 10.8.0.42 94593 username morteza 94593 mac 94593 bytes_out 2621 94593 bytes_in 4908 94593 station_ip 37.129.253.128 94593 port 8 94593 unique_id port 94593 remote_ip 10.8.0.42 94597 username mehdizare 94597 mac 94597 bytes_out 0 94597 bytes_in 0 94597 station_ip 5.119.239.98 94597 port 15 94560 username alihosseini 94560 mac 94560 bytes_out 0 94560 bytes_in 0 94560 station_ip 5.120.17.49 94560 port 8 94560 unique_id port 94560 remote_ip 10.8.0.46 94561 username alihosseini 94561 mac 94561 bytes_out 0 94561 bytes_in 0 94561 station_ip 5.120.17.49 94561 port 8 94561 unique_id port 94561 remote_ip 10.8.0.46 94562 username alihosseini 94562 mac 94562 bytes_out 0 94562 bytes_in 0 94562 station_ip 5.120.17.49 94562 port 8 94562 unique_id port 94562 remote_ip 10.8.0.46 94565 username mohammadi 94565 mac 94565 bytes_out 101344 94565 bytes_in 208262 94565 station_ip 113.203.97.63 94565 port 8 94565 unique_id port 94565 remote_ip 10.8.0.62 94566 username alihosseini 94566 mac 94566 bytes_out 0 94566 bytes_in 0 94566 station_ip 5.120.17.49 94566 port 14 94566 unique_id port 94566 remote_ip 10.8.1.34 94567 username alihosseini 94567 mac 94567 bytes_out 0 94567 bytes_in 0 94567 station_ip 5.120.17.49 94567 port 8 94567 unique_id port 94567 remote_ip 10.8.0.46 94568 username alihosseini 94568 mac 94568 bytes_out 0 94568 bytes_in 0 94568 station_ip 5.120.17.49 94568 port 8 94568 unique_id port 94568 remote_ip 10.8.0.46 94570 username mohammadi 94570 mac 94570 bytes_out 96550 94570 bytes_in 113700 94570 station_ip 113.203.97.63 94570 port 12 94570 unique_id port 94570 remote_ip 10.8.0.62 94571 username mohammadmahdi 94571 mac 94571 bytes_out 990019 94571 bytes_in 18732394 94571 station_ip 5.120.9.190 94571 port 9 94571 unique_id port 94571 remote_ip 10.8.0.82 94572 username mohammadmahdi 94572 mac 94572 bytes_out 0 94572 bytes_in 0 94572 station_ip 5.120.9.190 94572 port 9 94572 unique_id port 94572 remote_ip 10.8.0.82 94574 username hoorieh 94574 kill_reason Another user logged on this global unique id 94574 mac 94574 bytes_out 0 94574 bytes_in 0 94574 station_ip 5.119.219.63 94574 port 9 94574 unique_id port 94574 remote_ip 10.8.0.78 94575 username mohammadi 94575 mac 94575 bytes_out 39212 94575 bytes_in 82978 94575 station_ip 113.203.97.63 94575 port 14 94575 unique_id port 94575 remote_ip 10.8.0.62 94578 username aminvpn 94578 mac 94578 bytes_out 0 94578 bytes_in 0 94578 station_ip 83.123.174.96 94578 port 8 94578 unique_id port 94578 remote_ip 10.8.0.6 94581 username Alirezaza 94581 unique_id port 94581 terminate_cause Lost-Carrier 94581 bytes_out 1771839 94581 bytes_in 31262501 94581 station_ip 5.119.89.64 94581 port 15728686 94581 nas_port_type Virtual 94581 remote_ip 5.5.5.232 94584 username madadi2 94584 unique_id port 94584 terminate_cause Lost-Carrier 94584 bytes_out 315676 94584 bytes_in 407900 94584 station_ip 5.119.1.245 94584 port 15728687 94584 nas_port_type Virtual 94584 remote_ip 5.5.5.231 94585 username morteza 94585 mac 94585 bytes_out 0 94585 bytes_in 0 94585 station_ip 37.129.253.128 94585 port 14 94585 unique_id port 94585 remote_ip 10.8.0.42 94591 username Alirezaza 94591 unique_id port 94591 terminate_cause Lost-Carrier 94591 bytes_out 391475 94591 bytes_in 2090177 94591 station_ip 5.120.165.143 94591 port 15728688 94591 nas_port_type Virtual 94591 remote_ip 5.5.5.230 94594 username aminvpn 94594 mac 94594 bytes_out 0 94594 bytes_in 0 94594 station_ip 83.123.174.96 94594 port 14 94594 unique_id port 94594 remote_ip 10.8.0.6 94601 username aminvpn 94601 mac 94601 bytes_out 213844 94601 bytes_in 415338 94601 station_ip 83.123.174.96 94590 port 8 94590 unique_id port 94590 remote_ip 10.8.0.6 94592 username aminvpn 94592 mac 94592 bytes_out 32349 94592 bytes_in 45031 94592 station_ip 83.123.174.96 94592 port 14 94592 unique_id port 94592 remote_ip 10.8.0.6 94595 username aminvpn 94595 mac 94595 bytes_out 0 94595 bytes_in 0 94595 station_ip 83.123.174.96 94595 port 8 94595 unique_id port 94595 remote_ip 10.8.0.6 94596 username mehdizare 94596 mac 94596 bytes_out 1968900 94596 bytes_in 21186844 94596 station_ip 5.119.239.98 94596 port 13 94596 unique_id port 94596 remote_ip 10.8.1.54 94598 username alihosseini 94598 mac 94598 bytes_out 69509 94598 bytes_in 168259 94598 station_ip 5.120.17.49 94598 port 12 94598 unique_id port 94598 remote_ip 10.8.0.46 94599 username morteza 94599 mac 94599 bytes_out 0 94599 bytes_in 0 94599 station_ip 37.129.253.128 94599 port 14 94599 unique_id port 94599 remote_ip 10.8.0.42 94606 username alinezhad 94606 unique_id port 94606 terminate_cause User-Request 94606 bytes_out 0 94606 bytes_in 0 94606 station_ip 83.122.130.134 94606 port 15728698 94606 nas_port_type Virtual 94606 remote_ip 5.5.5.226 94607 username amir 94607 unique_id port 94607 terminate_cause User-Request 94607 bytes_out 10798054 94607 bytes_in 131165017 94607 station_ip 46.225.215.218 94607 port 15728685 94607 nas_port_type Virtual 94607 remote_ip 5.5.5.233 94608 username mahyaarabpour 94608 mac 94608 bytes_out 797733 94608 bytes_in 10932071 94608 station_ip 5.119.44.26 94608 port 14 94608 unique_id port 94608 remote_ip 10.8.0.54 94609 username aminvpn 94609 mac 94609 bytes_out 0 94609 bytes_in 0 94609 station_ip 83.123.174.96 94609 port 8 94609 unique_id port 94609 remote_ip 10.8.0.6 94610 username aminvpn 94610 unique_id port 94610 terminate_cause Lost-Carrier 94610 bytes_out 4481991 94610 bytes_in 71252280 94610 station_ip 5.119.241.101 94610 port 15728696 94610 nas_port_type Virtual 94610 remote_ip 5.5.5.227 94621 username hoorieh 94621 mac 94621 bytes_out 1916292 94621 bytes_in 39853539 94621 station_ip 5.119.219.63 94621 port 14 94621 unique_id port 94621 remote_ip 10.8.0.78 94625 username sobhan 94625 unique_id port 94625 terminate_cause Lost-Carrier 94625 bytes_out 1250599 94625 bytes_in 25656900 94625 station_ip 5.120.93.178 94625 port 15728699 94625 nas_port_type Virtual 94625 remote_ip 5.5.5.225 94632 username mahdixz 94632 unique_id port 94632 terminate_cause Lost-Carrier 94632 bytes_out 57942 94632 bytes_in 191017 94632 station_ip 151.235.94.64 94632 port 15728704 94632 nas_port_type Virtual 94632 remote_ip 5.5.5.221 94633 username askari 94633 kill_reason Another user logged on this global unique id 94633 mac 94633 bytes_out 0 94633 bytes_in 0 94633 station_ip 5.119.48.177 94633 port 13 94633 unique_id port 94633 remote_ip 10.8.1.30 94641 username madadi2 94641 unique_id port 94641 terminate_cause Lost-Carrier 94641 bytes_out 98831 94641 bytes_in 1237724 94641 station_ip 5.119.204.181 94641 port 15728709 94641 nas_port_type Virtual 94641 remote_ip 5.5.5.218 94643 username aminvpn 94643 unique_id port 94643 terminate_cause User-Request 94643 bytes_out 589066 94643 bytes_in 8317332 94643 station_ip 83.123.174.96 94643 port 15728711 94643 nas_port_type Virtual 94643 remote_ip 5.5.5.217 94646 username mohammadi 94646 mac 94646 bytes_out 0 94646 bytes_in 0 94646 station_ip 113.203.97.63 94646 port 9 94646 unique_id port 94646 remote_ip 10.8.0.62 94647 username mammad 94647 unique_id port 94597 unique_id port 94597 remote_ip 10.8.0.70 94600 username mehdizare 94600 mac 94600 bytes_out 0 94600 bytes_in 0 94600 station_ip 5.119.239.98 94600 port 15 94600 unique_id port 94600 remote_ip 10.8.0.70 94602 username mehdizare 94602 mac 94602 bytes_out 41337 94602 bytes_in 46579 94602 station_ip 5.119.239.98 94602 port 12 94602 unique_id port 94602 remote_ip 10.8.0.70 94605 username sadegh 94605 unique_id port 94605 terminate_cause Lost-Carrier 94605 bytes_out 3733481 94605 bytes_in 69021778 94605 station_ip 37.129.186.241 94605 port 15728694 94605 nas_port_type Virtual 94605 remote_ip 5.5.5.228 94611 username alihosseini 94611 mac 94611 bytes_out 21883 94611 bytes_in 31827 94611 station_ip 5.120.17.49 94611 port 16 94611 unique_id port 94611 remote_ip 10.8.0.46 94612 username hoorieh 94612 mac 94612 bytes_out 0 94612 bytes_in 0 94612 station_ip 5.119.219.63 94612 port 9 94612 unique_id port 94613 username alihosseini 94613 mac 94613 bytes_out 0 94613 bytes_in 0 94613 station_ip 5.120.17.49 94613 port 14 94613 unique_id port 94613 remote_ip 10.8.0.46 94614 username hoorieh 94614 mac 94614 bytes_out 0 94614 bytes_in 0 94614 station_ip 5.119.219.63 94614 port 15 94614 unique_id port 94614 remote_ip 10.8.0.78 94616 username mohammadi 94616 mac 94616 bytes_out 71840 94616 bytes_in 117734 94616 station_ip 113.203.97.63 94616 port 16 94616 unique_id port 94616 remote_ip 10.8.0.62 94617 username mehdizare 94617 kill_reason Another user logged on this global unique id 94617 mac 94617 bytes_out 0 94617 bytes_in 0 94617 station_ip 5.119.239.98 94617 port 12 94617 unique_id port 94617 remote_ip 10.8.0.70 94620 username mohammadi 94620 mac 94620 bytes_out 0 94620 bytes_in 0 94620 station_ip 113.203.97.63 94620 port 15 94620 unique_id port 94620 remote_ip 10.8.0.62 94622 username mohammadmahdi 94622 kill_reason Another user logged on this global unique id 94622 mac 94622 bytes_out 0 94622 bytes_in 0 94622 station_ip 5.120.9.190 94622 port 9 94622 unique_id port 94623 username madadi2 94623 unique_id port 94623 terminate_cause Lost-Carrier 94623 bytes_out 30342 94623 bytes_in 148829 94623 station_ip 5.119.162.79 94623 port 15728702 94623 nas_port_type Virtual 94623 remote_ip 5.5.5.223 94626 username ahmadi 94626 unique_id port 94626 terminate_cause User-Request 94626 bytes_out 230342 94626 bytes_in 673973 94626 station_ip 113.203.100.3 94626 port 15728706 94626 nas_port_type Virtual 94626 remote_ip 5.5.5.219 94628 username mahdixz 94628 kill_reason Maximum number of concurrent logins reached 94628 unique_id port 94628 bytes_out 0 94628 bytes_in 0 94628 station_ip 151.235.94.64 94628 port 15728707 94628 nas_port_type Virtual 94630 username aminvpn 94630 mac 94630 bytes_out 0 94630 bytes_in 0 94630 station_ip 83.123.174.96 94630 port 8 94630 unique_id port 94630 remote_ip 10.8.0.6 94636 username aminvpn 94636 mac 94636 bytes_out 0 94636 bytes_in 0 94636 station_ip 83.123.174.96 94636 port 14 94636 unique_id port 94636 remote_ip 10.8.1.6 94638 username mahdixz 94638 unique_id port 94638 terminate_cause Lost-Carrier 94638 bytes_out 945337 94638 bytes_in 6761935 94638 station_ip 151.235.94.64 94638 port 15728705 94638 nas_port_type Virtual 94638 remote_ip 5.5.5.220 94649 username mohammadmahdi 94649 mac 94649 bytes_out 0 94649 bytes_in 0 94649 station_ip 5.120.9.190 94649 port 12 94649 unique_id port 94649 remote_ip 10.8.0.82 94650 username alireza1 94601 port 8 94601 unique_id port 94601 remote_ip 10.8.0.6 94603 username aminvpn 94603 mac 94603 bytes_out 369705 94603 bytes_in 980911 94603 station_ip 83.123.174.96 94603 port 8 94603 unique_id port 94603 remote_ip 10.8.0.6 94604 username mehdizare 94604 mac 94604 bytes_out 9651 94604 bytes_in 10697 94604 station_ip 5.119.239.98 94604 port 14 94604 unique_id port 94604 remote_ip 10.8.0.70 94615 username forozande 94615 unique_id port 94615 terminate_cause User-Request 94615 bytes_out 35197 94615 bytes_in 210705 94615 station_ip 83.122.153.226 94615 port 15728701 94615 nas_port_type Virtual 94615 remote_ip 5.5.5.224 94618 username mohammadmahdi 94618 kill_reason Another user logged on this global unique id 94618 mac 94618 bytes_out 0 94618 bytes_in 0 94618 station_ip 5.120.9.190 94618 port 9 94618 unique_id port 94618 remote_ip 10.8.0.82 94619 username aminvpn 94619 mac 94619 bytes_out 246586 94619 bytes_in 338279 94619 station_ip 83.123.174.96 94619 port 8 94619 unique_id port 94619 remote_ip 10.8.0.6 94624 username mohammadi 94624 mac 94624 bytes_out 93174 94624 bytes_in 335356 94624 station_ip 113.203.97.63 94624 port 8 94624 unique_id port 94624 remote_ip 10.8.0.62 94627 username aminvpn 94627 mac 94627 bytes_out 217503 94627 bytes_in 670248 94627 station_ip 83.123.174.96 94627 port 14 94627 unique_id port 94627 remote_ip 10.8.0.6 94629 username mahdixz 94629 kill_reason Maximum number of concurrent logins reached 94629 unique_id port 94629 bytes_out 0 94629 bytes_in 0 94629 station_ip 151.235.94.64 94629 port 15728708 94629 nas_port_type Virtual 94631 username mohammadmahdi 94631 kill_reason Another user logged on this global unique id 94631 mac 94631 bytes_out 0 94631 bytes_in 0 94631 station_ip 5.120.9.190 94631 port 9 94631 unique_id port 94634 username mehdizare 94634 mac 94634 bytes_out 0 94634 bytes_in 0 94634 station_ip 5.119.239.98 94634 port 12 94634 unique_id port 94635 username aminvpn 94635 unique_id port 94635 terminate_cause User-Request 94635 bytes_out 338049 94635 bytes_in 4740600 94635 station_ip 83.123.174.96 94635 port 15728710 94635 nas_port_type Virtual 94635 remote_ip 5.5.5.217 94637 username askari 94637 mac 94637 bytes_out 0 94637 bytes_in 0 94637 station_ip 5.119.48.177 94637 port 13 94637 unique_id port 94639 username aminvpn 94639 mac 94639 bytes_out 0 94639 bytes_in 0 94639 station_ip 83.123.174.96 94639 port 14 94639 unique_id port 94639 remote_ip 10.8.1.6 94640 username mohammadmahdi 94640 mac 94640 bytes_out 0 94640 bytes_in 0 94640 station_ip 5.120.9.190 94640 port 9 94640 unique_id port 94642 username alemzadeh 94642 unique_id port 94642 terminate_cause User-Request 94642 bytes_out 226129 94642 bytes_in 1719468 94642 station_ip 37.129.69.221 94642 port 15728712 94642 nas_port_type Virtual 94642 remote_ip 5.5.5.216 94644 username Alirezaza 94644 unique_id port 94644 terminate_cause Lost-Carrier 94644 bytes_out 11654273 94644 bytes_in 340932954 94644 station_ip 5.120.133.241 94644 port 15728697 94644 nas_port_type Virtual 94644 remote_ip 5.5.5.248 94645 username mehdizare 94645 mac 94645 bytes_out 0 94645 bytes_in 0 94645 station_ip 5.119.239.98 94645 port 8 94645 unique_id port 94645 remote_ip 10.8.0.70 94648 username mohammadi 94648 mac 94648 bytes_out 0 94648 bytes_in 0 94648 station_ip 113.203.97.63 94648 port 9 94648 unique_id port 94648 remote_ip 10.8.0.62 94655 username Alirezaza 94655 unique_id port 94647 terminate_cause User-Request 94647 bytes_out 2262171 94647 bytes_in 21993119 94647 station_ip 5.233.64.73 94647 port 15728703 94647 nas_port_type Virtual 94647 remote_ip 5.5.5.222 94651 username mohammadi 94651 mac 94651 bytes_out 0 94651 bytes_in 0 94651 station_ip 113.203.97.63 94651 port 14 94651 unique_id port 94651 remote_ip 10.8.0.62 94652 username mehdizare 94652 mac 94652 bytes_out 0 94652 bytes_in 0 94652 station_ip 5.119.239.98 94652 port 8 94652 unique_id port 94652 remote_ip 10.8.0.70 94653 username alireza1 94653 unique_id port 94653 terminate_cause User-Request 94653 bytes_out 52658 94653 bytes_in 163168 94653 station_ip 5.119.67.17 94653 port 15728715 94653 nas_port_type Virtual 94653 remote_ip 5.5.5.255 94654 username alireza1 94654 unique_id port 94654 terminate_cause User-Request 94654 bytes_out 32622 94654 bytes_in 104978 94654 station_ip 5.119.67.17 94654 port 15728716 94654 nas_port_type Virtual 94654 remote_ip 5.5.5.255 94659 username ahmadi 94659 unique_id port 94659 terminate_cause User-Request 94659 bytes_out 37767 94659 bytes_in 204043 94659 station_ip 113.203.100.3 94659 port 15728719 94659 nas_port_type Virtual 94659 remote_ip 5.5.5.219 94663 username alireza1 94663 unique_id port 94663 terminate_cause Lost-Carrier 94663 bytes_out 571264 94663 bytes_in 1916834 94663 station_ip 5.119.67.17 94663 port 15728717 94663 nas_port_type Virtual 94663 remote_ip 5.5.5.213 94667 username aminvpn 94667 unique_id port 94667 terminate_cause User-Request 94667 bytes_out 1315632 94667 bytes_in 9373446 94667 station_ip 83.123.174.96 94667 port 15728722 94667 nas_port_type Virtual 94667 remote_ip 5.5.5.217 94670 username mehdizare 94670 mac 94670 bytes_out 1539349 94670 bytes_in 31579025 94670 station_ip 5.119.239.98 94670 port 13 94670 unique_id port 94670 remote_ip 10.8.1.54 94672 username fariba 94672 kill_reason Another user logged on this global unique id 94672 mac 94672 bytes_out 0 94672 bytes_in 0 94672 station_ip 5.119.169.7 94672 port 8 94672 unique_id port 94672 remote_ip 10.8.0.10 94674 username aminvpn 94674 mac 94674 bytes_out 774714 94674 bytes_in 5526090 94674 station_ip 83.123.174.96 94674 port 9 94674 unique_id port 94674 remote_ip 10.8.0.6 94676 username mehdizare 94676 mac 94676 bytes_out 0 94676 bytes_in 0 94676 station_ip 5.119.239.98 94676 port 12 94676 unique_id port 94676 remote_ip 10.8.0.70 94678 username aminvpn 94678 mac 94678 bytes_out 0 94678 bytes_in 0 94678 station_ip 37.129.246.99 94678 port 12 94678 unique_id port 94678 remote_ip 10.8.0.6 94681 username aminvpn 94681 mac 94681 bytes_out 0 94681 bytes_in 0 94681 station_ip 83.123.174.96 94681 port 16 94681 unique_id port 94681 remote_ip 10.8.0.6 94682 username aminvpn 94682 mac 94682 bytes_out 0 94682 bytes_in 0 94682 station_ip 37.129.246.99 94682 port 12 94682 unique_id port 94682 remote_ip 10.8.0.6 94691 username aminvpn 94691 mac 94691 bytes_out 0 94691 bytes_in 0 94691 station_ip 37.129.246.99 94691 port 12 94691 unique_id port 94691 remote_ip 10.8.0.6 94692 username aminvpn 94692 mac 94692 bytes_out 0 94692 bytes_in 0 94692 station_ip 83.123.174.96 94692 port 9 94692 unique_id port 94692 remote_ip 10.8.0.6 94696 username aminvpn 94696 mac 94696 bytes_out 0 94696 bytes_in 0 94696 station_ip 83.123.174.96 94696 port 14 94696 unique_id port 94696 remote_ip 10.8.0.6 94698 username morteza 94698 mac 94698 bytes_out 0 94650 unique_id port 94650 terminate_cause User-Request 94650 bytes_out 1115587 94650 bytes_in 4188626 94650 station_ip 5.119.67.17 94650 port 15728700 94650 nas_port_type Virtual 94650 remote_ip 5.5.5.255 94657 username mahbobeh 94657 unique_id port 94657 terminate_cause Lost-Carrier 94657 bytes_out 119989 94657 bytes_in 529147 94657 station_ip 83.123.153.216 94657 port 15728713 94657 nas_port_type Virtual 94657 remote_ip 5.5.5.215 94662 username amir 94662 unique_id port 94662 terminate_cause User-Request 94662 bytes_out 124630 94662 bytes_in 991025 94662 station_ip 83.123.218.88 94662 port 15728721 94662 nas_port_type Virtual 94662 remote_ip 5.5.5.212 94666 username mehdizare 94666 mac 94666 bytes_out 0 94666 bytes_in 0 94666 station_ip 5.119.239.98 94666 port 13 94666 unique_id port 94666 remote_ip 10.8.1.54 94668 username mahdixz 94668 unique_id port 94668 terminate_cause User-Request 94668 bytes_out 0 94668 bytes_in 0 94668 station_ip 151.235.94.64 94668 port 15728725 94668 nas_port_type Virtual 94668 remote_ip 5.5.5.220 94669 username mohammadi 94669 mac 94669 bytes_out 1264359 94669 bytes_in 3170803 94669 station_ip 113.203.14.19 94669 port 9 94669 unique_id port 94669 remote_ip 10.8.0.62 94671 username mohammadi 94671 mac 94671 bytes_out 0 94671 bytes_in 0 94671 station_ip 113.203.14.19 94671 port 12 94671 unique_id port 94671 remote_ip 10.8.0.62 94673 username mehdizare 94673 mac 94673 bytes_out 0 94673 bytes_in 0 94673 station_ip 5.119.239.98 94673 port 14 94673 unique_id port 94673 remote_ip 10.8.0.70 94675 username aminvpn 94675 mac 94675 bytes_out 0 94675 bytes_in 0 94675 station_ip 37.129.246.99 94675 port 14 94675 unique_id port 94675 remote_ip 10.8.0.6 94677 username aminvpn 94677 mac 94677 bytes_out 0 94677 bytes_in 0 94677 station_ip 83.123.174.96 94677 port 9 94677 unique_id port 94677 remote_ip 10.8.0.6 94683 username aminvpn 94683 mac 94683 bytes_out 0 94683 bytes_in 0 94683 station_ip 83.123.174.96 94683 port 16 94683 unique_id port 94683 remote_ip 10.8.0.6 94686 username aminvpn 94686 mac 94686 bytes_out 0 94686 bytes_in 0 94686 station_ip 83.123.174.96 94686 port 14 94686 unique_id port 94686 remote_ip 10.8.0.6 94687 username aminvpn 94687 mac 94687 bytes_out 0 94687 bytes_in 0 94687 station_ip 37.129.246.99 94687 port 12 94687 unique_id port 94687 remote_ip 10.8.0.6 94693 username aminvpn 94693 mac 94693 bytes_out 0 94693 bytes_in 0 94693 station_ip 37.129.246.99 94693 port 12 94693 unique_id port 94693 remote_ip 10.8.0.6 94694 username aminvpn 94694 mac 94694 bytes_out 0 94694 bytes_in 0 94694 station_ip 83.123.174.96 94694 port 9 94694 unique_id port 94694 remote_ip 10.8.0.6 94695 username aminvpn 94695 mac 94695 bytes_out 0 94695 bytes_in 0 94695 station_ip 37.129.246.99 94695 port 12 94695 unique_id port 94695 remote_ip 10.8.0.6 94697 username forozande 94697 unique_id port 94697 terminate_cause User-Request 94697 bytes_out 88862 94697 bytes_in 259055 94697 station_ip 113.203.115.91 94697 port 15728728 94697 nas_port_type Virtual 94697 remote_ip 5.5.5.209 94700 username alireza1 94700 unique_id port 94700 terminate_cause Lost-Carrier 94700 bytes_out 604008 94700 bytes_in 3251401 94700 station_ip 5.119.67.17 94700 port 15728724 94700 nas_port_type Virtual 94700 remote_ip 5.5.5.213 94704 username aminvpn 94704 mac 94704 bytes_out 0 94704 bytes_in 0 94655 terminate_cause Lost-Carrier 94655 bytes_out 532631 94655 bytes_in 6546951 94655 station_ip 5.119.116.237 94655 port 15728714 94655 nas_port_type Virtual 94655 remote_ip 5.5.5.214 94656 username mohammadi 94656 mac 94656 bytes_out 49871 94656 bytes_in 66881 94656 station_ip 113.203.98.27 94656 port 8 94656 unique_id port 94656 remote_ip 10.8.0.62 94658 username alihosseini 94658 mac 94658 bytes_out 0 94658 bytes_in 0 94658 station_ip 5.120.17.49 94658 port 17 94658 unique_id port 94658 remote_ip 10.8.0.46 94660 username mammad 94660 unique_id port 94660 terminate_cause User-Request 94660 bytes_out 2968762 94660 bytes_in 33793162 94660 station_ip 5.233.64.73 94660 port 15728718 94660 nas_port_type Virtual 94660 remote_ip 5.5.5.222 94661 username aminvpn 94661 unique_id port 94661 terminate_cause User-Request 94661 bytes_out 97291 94661 bytes_in 489203 94661 station_ip 83.123.174.96 94661 port 15728720 94661 nas_port_type Virtual 94661 remote_ip 5.5.5.217 94664 username mehdizare 94664 mac 94664 bytes_out 270477 94664 bytes_in 950274 94664 station_ip 5.119.239.98 94664 port 9 94664 unique_id port 94664 remote_ip 10.8.0.70 94665 username mehdizare 94665 mac 94665 bytes_out 19049 94665 bytes_in 31263 94665 station_ip 5.119.239.98 94665 port 8 94665 unique_id port 94665 remote_ip 10.8.0.70 94679 username aminvpn 94679 mac 94679 bytes_out 0 94679 bytes_in 0 94679 station_ip 83.123.174.96 94679 port 16 94679 unique_id port 94679 remote_ip 10.8.0.6 94680 username aminvpn 94680 mac 94680 bytes_out 0 94680 bytes_in 0 94680 station_ip 37.129.246.99 94680 port 12 94680 unique_id port 94680 remote_ip 10.8.0.6 94684 username mohammadmahdi 94684 mac 94684 bytes_out 0 94684 bytes_in 0 94684 station_ip 5.120.9.190 94684 port 14 94684 unique_id port 94684 remote_ip 10.8.0.82 94685 username aminvpn 94685 mac 94685 bytes_out 0 94685 bytes_in 0 94685 station_ip 37.129.246.99 94685 port 12 94685 unique_id port 94685 remote_ip 10.8.0.6 94688 username fariba 94688 kill_reason Another user logged on this global unique id 94688 mac 94688 bytes_out 0 94688 bytes_in 0 94688 station_ip 5.119.169.7 94688 port 8 94688 unique_id port 94689 username aminvpn 94689 mac 94689 bytes_out 0 94689 bytes_in 0 94689 station_ip 83.123.174.96 94689 port 14 94689 unique_id port 94689 remote_ip 10.8.0.6 94690 username mohammadi 94690 mac 94690 bytes_out 0 94690 bytes_in 0 94690 station_ip 113.203.14.19 94690 port 9 94690 unique_id port 94690 remote_ip 10.8.0.62 94699 username alinezhad 94699 unique_id port 94699 terminate_cause User-Request 94699 bytes_out 0 94699 bytes_in 0 94699 station_ip 5.202.11.47 94699 port 15728729 94699 nas_port_type Virtual 94699 remote_ip 5.5.5.208 94702 username mahdixz 94702 unique_id port 94702 terminate_cause User-Request 94702 bytes_out 0 94702 bytes_in 0 94702 station_ip 151.235.94.64 94702 port 15728730 94702 nas_port_type Virtual 94702 remote_ip 5.5.5.220 94708 username aminvpn 94708 mac 94708 bytes_out 0 94708 bytes_in 0 94708 station_ip 83.123.174.96 94708 port 13 94708 unique_id port 94708 remote_ip 10.8.1.6 94710 username aminvpn 94710 mac 94710 bytes_out 0 94710 bytes_in 0 94710 station_ip 83.123.174.96 94710 port 13 94710 unique_id port 94710 remote_ip 10.8.1.6 94714 username mahdixz 94714 kill_reason Maximum number of concurrent logins reached 94714 unique_id port 94714 bytes_out 0 94714 bytes_in 0 94698 bytes_in 0 94698 station_ip 83.123.19.56 94698 port 9 94698 unique_id port 94698 remote_ip 10.8.0.42 94701 username fariba 94701 kill_reason Another user logged on this global unique id 94701 mac 94701 bytes_out 0 94701 bytes_in 0 94701 station_ip 5.119.169.7 94701 port 8 94701 unique_id port 94703 username aminvpn 94703 mac 94703 bytes_out 270857 94703 bytes_in 160660 94703 station_ip 37.129.246.99 94703 port 12 94703 unique_id port 94703 remote_ip 10.8.0.6 94705 username mohammadi 94705 kill_reason Another user logged on this global unique id 94705 mac 94705 bytes_out 0 94705 bytes_in 0 94705 station_ip 113.203.14.19 94705 port 14 94705 unique_id port 94705 remote_ip 10.8.0.62 94711 username aminvpn 94711 mac 94711 bytes_out 0 94711 bytes_in 0 94711 station_ip 37.129.246.99 94711 port 14 94711 unique_id port 94711 remote_ip 10.8.1.6 94717 username mahdixz 94717 kill_reason Maximum number of concurrent logins reached 94717 unique_id port 94717 bytes_out 0 94717 bytes_in 0 94717 station_ip 151.235.94.64 94717 port 15728737 94717 nas_port_type Virtual 94720 username aminvpn 94720 mac 94720 bytes_out 0 94720 bytes_in 0 94720 station_ip 83.123.174.96 94720 port 15 94720 unique_id port 94720 remote_ip 10.8.1.6 94724 username aminvpn 94724 mac 94724 bytes_out 0 94724 bytes_in 0 94724 station_ip 83.123.174.96 94724 port 15 94724 unique_id port 94724 remote_ip 10.8.1.6 94727 username aminvpn 94727 mac 94727 bytes_out 1708884 94727 bytes_in 27756491 94727 station_ip 83.123.174.96 94727 port 15 94727 unique_id port 94727 remote_ip 10.8.1.6 94729 username fariba 94729 kill_reason Another user logged on this global unique id 94729 mac 94729 bytes_out 0 94729 bytes_in 0 94729 station_ip 5.119.169.7 94729 port 8 94729 unique_id port 94730 username mahdixz 94730 unique_id port 94730 terminate_cause Lost-Carrier 94730 bytes_out 106641 94730 bytes_in 782096 94730 station_ip 151.235.94.64 94730 port 15728731 94730 nas_port_type Virtual 94730 remote_ip 5.5.5.220 94731 username aminvpn 94731 mac 94731 bytes_out 0 94731 bytes_in 0 94731 station_ip 37.129.246.99 94731 port 14 94731 unique_id port 94731 remote_ip 10.8.1.6 94733 username mahdixz 94733 unique_id port 94733 terminate_cause Lost-Carrier 94733 bytes_out 393690 94733 bytes_in 5112605 94733 station_ip 151.235.94.64 94733 port 15728732 94733 nas_port_type Virtual 94733 remote_ip 5.5.5.207 94734 username aminvpn 94734 mac 94734 bytes_out 80703 94734 bytes_in 100622 94734 station_ip 37.129.246.99 94734 port 14 94734 unique_id port 94734 remote_ip 10.8.1.6 94740 username ahmadipour 94740 unique_id port 94740 terminate_cause Lost-Carrier 94740 bytes_out 2831205 94740 bytes_in 63487213 94740 station_ip 83.122.151.71 94740 port 15728735 94740 nas_port_type Virtual 94740 remote_ip 5.5.5.206 94744 username askari 94744 mac 94744 bytes_out 0 94744 bytes_in 0 94744 station_ip 5.119.200.150 94744 port 9 94744 unique_id port 94744 remote_ip 10.8.0.34 94747 username fariba 94747 kill_reason Another user logged on this global unique id 94747 mac 94747 bytes_out 0 94747 bytes_in 0 94747 station_ip 5.119.169.7 94747 port 8 94747 unique_id port 94749 username mohammadi 94749 mac 94749 bytes_out 354240 94749 bytes_in 1961891 94749 station_ip 113.203.14.19 94749 port 11 94749 unique_id port 94749 remote_ip 10.8.0.62 94752 username mohammadi 94752 mac 94752 bytes_out 0 94752 bytes_in 0 94752 station_ip 113.203.14.19 94704 station_ip 37.129.246.99 94704 port 9 94704 unique_id port 94704 remote_ip 10.8.0.6 94706 username aminvpn 94706 mac 94706 bytes_out 0 94706 bytes_in 0 94706 station_ip 83.123.174.96 94706 port 13 94706 unique_id port 94706 remote_ip 10.8.1.6 94707 username aminvpn 94707 mac 94707 bytes_out 0 94707 bytes_in 0 94707 station_ip 37.129.246.99 94707 port 14 94707 unique_id port 94707 remote_ip 10.8.1.6 94709 username aminvpn 94709 mac 94709 bytes_out 0 94709 bytes_in 0 94709 station_ip 37.129.246.99 94709 port 14 94709 unique_id port 94709 remote_ip 10.8.1.6 94712 username aminvpn 94712 mac 94712 bytes_out 0 94712 bytes_in 0 94712 station_ip 83.123.174.96 94712 port 13 94712 unique_id port 94712 remote_ip 10.8.1.6 94713 username mahdixz 94713 kill_reason Maximum number of concurrent logins reached 94713 unique_id port 94713 bytes_out 0 94713 bytes_in 0 94713 station_ip 151.235.94.64 94713 port 15728733 94713 nas_port_type Virtual 94715 username mehdizare 94715 kill_reason Another user logged on this global unique id 94715 mac 94715 bytes_out 0 94715 bytes_in 0 94715 station_ip 5.119.239.98 94715 port 15 94715 unique_id port 94715 remote_ip 10.8.0.70 94718 username aminvpn 94718 mac 94718 bytes_out 1707718 94718 bytes_in 27755219 94718 station_ip 83.123.174.96 94718 port 15 94718 unique_id port 94718 remote_ip 10.8.1.6 94721 username aminvpn 94721 mac 94721 bytes_out 0 94721 bytes_in 0 94721 station_ip 37.129.246.99 94721 port 14 94721 unique_id port 94721 remote_ip 10.8.1.6 94722 username aminvpn 94722 mac 94722 bytes_out 0 94722 bytes_in 0 94722 station_ip 83.123.174.96 94722 port 15 94722 unique_id port 94722 remote_ip 10.8.1.6 94725 username aminvpn 94725 mac 94725 bytes_out 0 94725 bytes_in 0 94725 station_ip 37.129.246.99 94725 port 14 94725 unique_id port 94725 remote_ip 10.8.1.6 94732 username aminvpn 94732 mac 94732 bytes_out 0 94732 bytes_in 0 94732 station_ip 83.123.174.96 94732 port 13 94732 unique_id port 94732 remote_ip 10.8.1.6 94735 username aminvpn 94735 mac 94735 bytes_out 0 94735 bytes_in 0 94735 station_ip 83.123.174.96 94735 port 13 94735 unique_id port 94735 remote_ip 10.8.1.6 94736 username forozande 94736 unique_id port 94736 terminate_cause User-Request 94736 bytes_out 77139 94736 bytes_in 203365 94736 station_ip 113.203.66.122 94736 port 15728738 94736 nas_port_type Virtual 94736 remote_ip 5.5.5.205 94738 username aminvpn 94738 mac 94738 bytes_out 0 94738 bytes_in 0 94738 station_ip 83.123.174.96 94738 port 13 94738 unique_id port 94738 remote_ip 10.8.1.6 94739 username khalili 94739 unique_id port 94739 terminate_cause Lost-Carrier 94739 bytes_out 8948494 94739 bytes_in 84938866 94739 station_ip 5.120.156.152 94739 port 15728679 94739 nas_port_type Virtual 94739 remote_ip 5.5.5.238 94742 username morteza 94742 mac 94742 bytes_out 552276 94742 bytes_in 5912112 94742 station_ip 83.122.37.23 94742 port 12 94742 unique_id port 94742 remote_ip 10.8.0.42 94748 username askari 94748 mac 94748 bytes_out 26456 94748 bytes_in 62959 94748 station_ip 5.119.200.150 94748 port 9 94748 unique_id port 94748 remote_ip 10.8.0.34 94750 username fariba 94750 kill_reason Another user logged on this global unique id 94750 mac 94750 bytes_out 0 94750 bytes_in 0 94750 station_ip 5.119.169.7 94750 port 8 94750 unique_id port 94756 username fariba 94714 station_ip 151.235.94.64 94714 port 15728736 94714 nas_port_type Virtual 94716 username aminvpn 94716 mac 94716 bytes_out 0 94716 bytes_in 0 94716 station_ip 37.129.246.99 94716 port 14 94716 unique_id port 94716 remote_ip 10.8.1.6 94719 username aminvpn 94719 mac 94719 bytes_out 0 94719 bytes_in 0 94719 station_ip 37.129.246.99 94719 port 14 94719 unique_id port 94719 remote_ip 10.8.1.6 94723 username aminvpn 94723 mac 94723 bytes_out 0 94723 bytes_in 0 94723 station_ip 37.129.246.99 94723 port 14 94723 unique_id port 94723 remote_ip 10.8.1.6 94726 username aminvpn 94726 unique_id port 94726 terminate_cause Lost-Carrier 94726 bytes_out 2253823 94726 bytes_in 16969005 94726 station_ip 5.119.3.22 94726 port 15728727 94726 nas_port_type Virtual 94726 remote_ip 5.5.5.210 94728 username askari 94728 mac 94728 bytes_out 1061800 94728 bytes_in 22230442 94728 station_ip 5.119.200.150 94728 port 13 94728 unique_id port 94728 remote_ip 10.8.1.30 94737 username aminvpn 94737 mac 94737 bytes_out 0 94737 bytes_in 0 94737 station_ip 37.129.246.99 94737 port 14 94737 unique_id port 94737 remote_ip 10.8.1.6 94741 username aminvpn 94741 mac 94741 bytes_out 0 94741 bytes_in 0 94741 station_ip 37.129.246.99 94741 port 13 94741 unique_id port 94741 remote_ip 10.8.1.6 94743 username mirzaei 94743 mac 94743 bytes_out 0 94743 bytes_in 0 94743 station_ip 5.119.166.186 94743 port 11 94743 unique_id port 94743 remote_ip 10.8.0.14 94745 username mammad 94745 unique_id port 94745 terminate_cause User-Request 94745 bytes_out 1027320 94745 bytes_in 10515785 94745 station_ip 5.233.64.73 94745 port 15728734 94745 nas_port_type Virtual 94745 remote_ip 5.5.5.222 94746 username mirzaei 94746 mac 94746 bytes_out 0 94746 bytes_in 0 94746 station_ip 5.114.192.41 94746 port 11 94746 unique_id port 94746 remote_ip 10.8.0.14 94751 username morteza 94751 mac 94751 bytes_out 98400 94751 bytes_in 182615 94751 station_ip 83.122.106.167 94751 port 11 94751 unique_id port 94751 remote_ip 10.8.0.42 94753 username madadi2 94753 unique_id port 94753 terminate_cause Lost-Carrier 94753 bytes_out 339744 94753 bytes_in 3748717 94753 station_ip 5.120.51.174 94753 port 15728740 94753 nas_port_type Virtual 94753 remote_ip 5.5.5.203 94755 username morteza 94755 mac 94755 bytes_out 0 94755 bytes_in 0 94755 station_ip 83.122.106.167 94755 port 11 94755 unique_id port 94755 remote_ip 10.8.0.42 94759 username forozande 94759 unique_id port 94759 terminate_cause User-Request 94759 bytes_out 483214 94759 bytes_in 5804073 94759 station_ip 113.203.8.156 94759 port 15728744 94759 nas_port_type Virtual 94759 remote_ip 5.5.5.201 94760 username morteza 94760 mac 94760 bytes_out 0 94760 bytes_in 0 94760 station_ip 83.122.106.167 94760 port 13 94760 unique_id port 94760 remote_ip 10.8.1.26 94762 username morteza 94762 mac 94762 bytes_out 0 94762 bytes_in 0 94762 station_ip 83.122.106.167 94762 port 13 94762 unique_id port 94762 remote_ip 10.8.1.26 94764 username morteza 94764 mac 94764 bytes_out 0 94764 bytes_in 0 94764 station_ip 83.122.106.167 94764 port 11 94764 unique_id port 94764 remote_ip 10.8.0.42 94768 username heydarizadeh 94768 unique_id port 94768 terminate_cause Lost-Carrier 94768 bytes_out 1686767 94768 bytes_in 56446971 94768 station_ip 5.119.248.161 94768 port 15728739 94768 nas_port_type Virtual 94768 remote_ip 5.5.5.204 94752 port 14 94752 unique_id port 94752 remote_ip 10.8.0.62 94754 username morteza 94754 mac 94754 bytes_out 0 94754 bytes_in 0 94754 station_ip 83.122.106.167 94754 port 13 94754 unique_id port 94754 remote_ip 10.8.1.26 94758 username Alirezaza 94758 unique_id port 94758 terminate_cause Lost-Carrier 94758 bytes_out 5143717 94758 bytes_in 93314278 94758 station_ip 5.120.133.241 94758 port 15728723 94758 nas_port_type Virtual 94758 remote_ip 5.5.5.248 94763 username alinezhad 94763 unique_id port 94763 terminate_cause User-Request 94763 bytes_out 0 94763 bytes_in 0 94763 station_ip 5.202.11.47 94763 port 15728746 94763 nas_port_type Virtual 94763 remote_ip 5.5.5.208 94769 username askari 94769 mac 94769 bytes_out 197018 94769 bytes_in 894405 94769 station_ip 5.119.200.150 94769 port 9 94769 unique_id port 94769 remote_ip 10.8.0.34 94774 username morteza 94774 mac 94774 bytes_out 1636 94774 bytes_in 5089 94774 station_ip 83.122.106.167 94774 port 11 94774 unique_id port 94774 remote_ip 10.8.0.42 94779 username morteza 94779 mac 94779 bytes_out 131688 94779 bytes_in 181998 94779 station_ip 83.122.106.167 94779 port 15 94779 unique_id port 94779 remote_ip 10.8.1.26 94781 username ahmadi 94781 unique_id port 94781 terminate_cause User-Request 94781 bytes_out 38962 94781 bytes_in 361606 94781 station_ip 83.123.72.168 94781 port 15728748 94781 nas_port_type Virtual 94781 remote_ip 5.5.5.198 94782 username morteza 94782 mac 94782 bytes_out 134986 94782 bytes_in 185322 94782 station_ip 83.122.106.167 94782 port 15 94782 unique_id port 94782 remote_ip 10.8.1.26 94786 username morteza 94786 mac 94786 bytes_out 0 94786 bytes_in 0 94786 station_ip 83.122.106.167 94786 port 11 94786 unique_id port 94786 remote_ip 10.8.0.42 94792 username mohammadi 94792 mac 94792 bytes_out 275321 94792 bytes_in 2464128 94792 station_ip 113.203.14.19 94792 port 17 94792 unique_id port 94792 remote_ip 10.8.0.62 94793 username morteza 94793 mac 94793 bytes_out 0 94793 bytes_in 0 94793 station_ip 83.122.106.167 94793 port 16 94793 unique_id port 94793 remote_ip 10.8.0.42 94797 username morteza 94797 mac 94797 bytes_out 0 94797 bytes_in 0 94797 station_ip 83.122.106.167 94797 port 17 94797 unique_id port 94797 remote_ip 10.8.0.42 94798 username mohammadi 94798 mac 94798 bytes_out 368433 94798 bytes_in 3180093 94798 station_ip 113.203.14.19 94798 port 14 94798 unique_id port 94798 remote_ip 10.8.0.62 94799 username morteza 94799 mac 94799 bytes_out 1636 94799 bytes_in 5142 94799 station_ip 83.122.106.167 94799 port 14 94799 unique_id port 94799 remote_ip 10.8.0.42 94803 username alihosseini 94803 kill_reason Another user logged on this global unique id 94803 mac 94803 bytes_out 0 94803 bytes_in 0 94803 station_ip 5.120.34.204 94803 port 12 94803 unique_id port 94804 username askari 94804 mac 94804 bytes_out 0 94804 bytes_in 0 94804 station_ip 5.120.85.177 94804 port 8 94804 unique_id port 94804 remote_ip 10.8.0.34 94806 username askari 94806 mac 94806 bytes_out 117194 94806 bytes_in 639742 94806 station_ip 5.120.85.177 94806 port 8 94806 unique_id port 94806 remote_ip 10.8.0.34 94807 username morteza 94807 mac 94807 bytes_out 442718 94807 bytes_in 970310 94807 station_ip 83.122.106.167 94807 port 15 94807 unique_id port 94807 remote_ip 10.8.1.26 94811 username alihosseini 94811 kill_reason Another user logged on this global unique id 94756 kill_reason Another user logged on this global unique id 94756 mac 94756 bytes_out 0 94756 bytes_in 0 94756 station_ip 5.119.169.7 94756 port 8 94756 unique_id port 94757 username forozande 94757 unique_id port 94757 terminate_cause User-Request 94757 bytes_out 0 94757 bytes_in 0 94757 station_ip 113.203.8.156 94757 port 15728743 94757 nas_port_type Virtual 94757 remote_ip 5.5.5.201 94761 username morteza 94761 mac 94761 bytes_out 0 94761 bytes_in 0 94761 station_ip 83.122.106.167 94761 port 11 94761 unique_id port 94761 remote_ip 10.8.0.42 94765 username aminvpn 94765 mac 94765 bytes_out 0 94765 bytes_in 0 94765 station_ip 83.122.124.3 94765 port 13 94765 unique_id port 94765 remote_ip 10.8.1.6 94766 username mahdixz 94766 unique_id port 94766 terminate_cause User-Request 94766 bytes_out 760822 94766 bytes_in 14411216 94766 station_ip 151.235.94.64 94766 port 15728742 94766 nas_port_type Virtual 94766 remote_ip 5.5.5.207 94767 username morteza 94767 mac 94767 bytes_out 0 94767 bytes_in 0 94767 station_ip 83.122.106.167 94767 port 11 94767 unique_id port 94767 remote_ip 10.8.0.42 94771 username forozande 94771 unique_id port 94771 terminate_cause User-Request 94771 bytes_out 119268 94771 bytes_in 456395 94771 station_ip 83.123.107.64 94771 port 15728747 94771 nas_port_type Virtual 94771 remote_ip 5.5.5.199 94773 username mirzaei 94773 mac 94773 bytes_out 0 94773 bytes_in 0 94773 station_ip 5.119.143.176 94773 port 12 94773 unique_id port 94773 remote_ip 10.8.0.14 94780 username mohammadi 94780 mac 94780 bytes_out 107304 94780 bytes_in 770437 94780 station_ip 113.203.14.19 94780 port 14 94780 unique_id port 94780 remote_ip 10.8.0.62 94783 username askari 94783 mac 94783 bytes_out 90053 94783 bytes_in 147562 94783 station_ip 5.120.85.177 94783 port 11 94783 unique_id port 94783 remote_ip 10.8.0.34 94788 username alihosseini 94788 kill_reason Another user logged on this global unique id 94788 mac 94788 bytes_out 0 94788 bytes_in 0 94788 station_ip 5.120.34.204 94788 port 12 94788 unique_id port 94788 remote_ip 10.8.0.46 94789 username mohammadi 94789 mac 94789 bytes_out 0 94789 bytes_in 0 94789 station_ip 113.203.14.19 94789 port 11 94789 unique_id port 94789 remote_ip 10.8.0.62 94790 username askari 94790 mac 94790 bytes_out 0 94790 bytes_in 0 94790 station_ip 5.120.85.177 94790 port 14 94790 unique_id port 94790 remote_ip 10.8.0.34 94794 username askari 94794 mac 94794 bytes_out 6582 94794 bytes_in 8234 94794 station_ip 5.120.85.177 94794 port 18 94794 unique_id port 94794 remote_ip 10.8.0.34 94800 username fariba 94800 mac 94800 bytes_out 0 94800 bytes_in 0 94800 station_ip 5.119.169.7 94800 port 8 94800 unique_id port 94801 username askari 94801 mac 94801 bytes_out 75124 94801 bytes_in 72823 94801 station_ip 5.120.85.177 94801 port 16 94801 unique_id port 94801 remote_ip 10.8.0.34 94802 username mohammadmahdi 94802 kill_reason Another user logged on this global unique id 94802 mac 94802 bytes_out 0 94802 bytes_in 0 94802 station_ip 5.120.9.190 94802 port 11 94802 unique_id port 94802 remote_ip 10.8.0.82 94808 username alinezhad 94808 unique_id port 94808 terminate_cause User-Request 94808 bytes_out 0 94808 bytes_in 0 94808 station_ip 5.202.11.47 94808 port 15728752 94808 nas_port_type Virtual 94808 remote_ip 5.5.5.208 94810 username mohammadmahdi 94810 mac 94810 bytes_out 0 94810 bytes_in 0 94770 username aminvpn 94770 unique_id port 94770 terminate_cause Lost-Carrier 94770 bytes_out 181831 94770 bytes_in 4843693 94770 station_ip 5.160.114.250 94770 port 15728745 94770 nas_port_type Virtual 94770 remote_ip 5.5.5.200 94772 username morteza 94772 kill_reason Maximum check online fails reached 94772 mac 94772 bytes_out 0 94772 bytes_in 0 94772 station_ip 83.122.106.167 94772 port 9 94772 unique_id port 94775 username mirzaei 94775 mac 94775 bytes_out 2588 94775 bytes_in 4462 94775 station_ip 5.119.143.176 94775 port 13 94775 unique_id port 94775 remote_ip 10.8.1.14 94776 username morteza 94776 kill_reason Another user logged on this global unique id 94776 mac 94776 bytes_out 0 94776 bytes_in 0 94776 station_ip 83.122.106.167 94776 port 14 94776 unique_id port 94777 username morteza 94777 mac 94777 bytes_out 1636 94777 bytes_in 4983 94777 station_ip 83.122.106.167 94777 port 14 94777 unique_id port 94777 remote_ip 10.8.0.42 94778 username mehdizare 94778 kill_reason Another user logged on this global unique id 94778 mac 94778 bytes_out 0 94778 bytes_in 0 94778 station_ip 5.119.239.98 94778 port 15 94778 unique_id port 94778 remote_ip 10.8.0.70 94784 username morteza 94784 mac 94784 bytes_out 0 94784 bytes_in 0 94784 station_ip 83.122.106.167 94784 port 11 94784 unique_id port 94784 remote_ip 10.8.0.42 94785 username aminvpn 94785 mac 94785 bytes_out 0 94785 bytes_in 0 94785 station_ip 83.122.155.166 94785 port 13 94785 unique_id port 94785 remote_ip 10.8.1.6 94787 username askari 94787 mac 94787 bytes_out 204614 94787 bytes_in 1385785 94787 station_ip 5.120.85.177 94787 port 14 94787 unique_id port 94787 remote_ip 10.8.0.34 94791 username morteza 94791 mac 94791 bytes_out 0 94791 bytes_in 0 94791 station_ip 83.122.106.167 94791 port 16 94791 unique_id port 94791 remote_ip 10.8.0.42 94795 username mohammadi 94795 mac 94795 bytes_out 0 94795 bytes_in 0 94795 station_ip 113.203.14.19 94795 port 14 94795 unique_id port 94795 remote_ip 10.8.0.62 94796 username mohammadi 94796 mac 94796 bytes_out 0 94796 bytes_in 0 94796 station_ip 113.203.14.19 94796 port 14 94796 unique_id port 94796 remote_ip 10.8.0.62 94805 username mohammadmahdi 94805 kill_reason Another user logged on this global unique id 94805 mac 94805 bytes_out 0 94805 bytes_in 0 94805 station_ip 5.120.9.190 94805 port 11 94805 unique_id port 94809 username amirhosein 94809 unique_id port 94809 terminate_cause Lost-Carrier 94809 bytes_out 2051003 94809 bytes_in 51297929 94809 station_ip 5.119.76.66 94809 port 15728750 94809 nas_port_type Virtual 94809 remote_ip 5.5.5.196 94813 username hashtadani 94813 unique_id port 94813 terminate_cause User-Request 94813 bytes_out 4686785 94813 bytes_in 79473113 94813 station_ip 83.123.186.39 94813 port 15728749 94813 nas_port_type Virtual 94813 remote_ip 5.5.5.197 94815 username askari 94815 mac 94815 bytes_out 0 94815 bytes_in 0 94815 station_ip 5.120.85.177 94815 port 8 94815 unique_id port 94815 remote_ip 10.8.0.34 94818 username alihosseini 94818 kill_reason Another user logged on this global unique id 94818 mac 94818 bytes_out 0 94818 bytes_in 0 94818 station_ip 5.120.34.204 94818 port 12 94818 unique_id port 94819 username askari 94819 mac 94819 bytes_out 17797 94819 bytes_in 15447 94819 station_ip 5.120.36.236 94819 port 15 94819 unique_id port 94819 remote_ip 10.8.1.30 94821 username amirhosein 94821 unique_id port 94821 terminate_cause User-Request 94810 station_ip 5.120.9.190 94810 port 11 94810 unique_id port 94812 username alireza1 94812 unique_id port 94812 terminate_cause User-Request 94812 bytes_out 549085 94812 bytes_in 1157960 94812 station_ip 5.119.67.17 94812 port 15728751 94812 nas_port_type Virtual 94812 remote_ip 5.5.5.213 94814 username morteza 94814 mac 94814 bytes_out 76175 94814 bytes_in 240739 94814 station_ip 83.123.190.168 94814 port 15 94814 unique_id port 94814 remote_ip 10.8.1.26 94816 username forozande 94816 unique_id port 94816 terminate_cause User-Request 94816 bytes_out 251013 94816 bytes_in 844957 94816 station_ip 113.203.109.131 94816 port 15728754 94816 nas_port_type Virtual 94816 remote_ip 5.5.5.194 94817 username aminvpn 94817 unique_id port 94817 terminate_cause User-Request 94817 bytes_out 156365 94817 bytes_in 720437 94817 station_ip 5.119.234.164 94817 port 15728753 94817 nas_port_type Virtual 94817 remote_ip 5.5.5.195 94820 username mirzaei 94820 kill_reason Another user logged on this global unique id 94820 mac 94820 bytes_out 0 94820 bytes_in 0 94820 station_ip 5.119.135.251 94820 port 11 94820 unique_id port 94820 remote_ip 10.8.0.14 94823 username alihosseini 94823 kill_reason Another user logged on this global unique id 94823 mac 94823 bytes_out 0 94823 bytes_in 0 94823 station_ip 5.120.34.204 94823 port 12 94823 unique_id port 94828 username morteza 94828 mac 94828 bytes_out 0 94828 bytes_in 0 94828 station_ip 83.123.243.63 94828 port 14 94828 unique_id port 94828 remote_ip 10.8.0.42 94831 username mohammadi 94831 mac 94831 bytes_out 69189 94831 bytes_in 161610 94831 station_ip 113.203.56.19 94831 port 14 94831 unique_id port 94831 remote_ip 10.8.0.62 94835 username askari 94835 mac 94835 bytes_out 3402 94835 bytes_in 5056 94835 station_ip 5.119.191.240 94835 port 15 94835 unique_id port 94835 remote_ip 10.8.1.30 94836 username ksrkrgr 94836 unique_id port 94836 terminate_cause User-Request 94836 bytes_out 319655 94836 bytes_in 10322605 94836 station_ip 83.123.42.145 94836 port 15728760 94836 nas_port_type Virtual 94836 remote_ip 5.5.5.191 94837 username mirzaei 94837 mac 94837 bytes_out 20852 94837 bytes_in 36038 94837 station_ip 5.119.135.251 94837 port 14 94837 unique_id port 94837 remote_ip 10.8.0.14 94839 username morteza 94839 mac 94839 bytes_out 39386 94839 bytes_in 77033 94839 station_ip 83.123.243.63 94839 port 12 94839 unique_id port 94839 remote_ip 10.8.0.42 94842 username ksrkrgr 94842 unique_id port 94842 terminate_cause User-Request 94842 bytes_out 412670 94842 bytes_in 6002113 94842 station_ip 83.123.42.145 94842 port 15728764 94842 nas_port_type Virtual 94842 remote_ip 5.5.5.191 94847 username mirzaei 94847 kill_reason Another user logged on this global unique id 94847 mac 94847 bytes_out 0 94847 bytes_in 0 94847 station_ip 5.119.135.251 94847 port 15 94847 unique_id port 94847 remote_ip 10.8.0.14 94849 username Alirezaza 94849 unique_id port 94849 terminate_cause Lost-Carrier 94849 bytes_out 173187 94849 bytes_in 626137 94849 station_ip 5.120.47.227 94849 port 15728763 94849 nas_port_type Virtual 94849 remote_ip 5.5.5.190 94850 username alihosseini 94850 mac 94850 bytes_out 0 94850 bytes_in 0 94850 station_ip 5.120.34.204 94850 port 12 94850 unique_id port 94850 remote_ip 10.8.0.46 94851 username mohammadi 94851 mac 94851 bytes_out 719272 94851 bytes_in 764121 94851 station_ip 113.203.56.19 94851 port 12 94851 unique_id port 94851 remote_ip 10.8.0.62 94854 username amirhosein 94811 mac 94811 bytes_out 0 94811 bytes_in 0 94811 station_ip 5.120.34.204 94811 port 12 94811 unique_id port 188698 unique_id port 188698 remote_ip 10.8.0.62 188700 username zahra1101 188700 mac 188700 bytes_out 0 188700 bytes_in 0 188700 station_ip 5.120.128.95 188700 port 397 188700 unique_id port 94825 username madadi2 94825 unique_id port 94825 terminate_cause Lost-Carrier 94825 bytes_out 236889 94825 bytes_in 1529410 94825 station_ip 5.119.2.169 94825 port 15728756 94825 nas_port_type Virtual 94825 remote_ip 5.5.5.193 94833 username alihosseini 94833 mac 94833 bytes_out 0 94833 bytes_in 0 94833 station_ip 5.120.34.204 94833 port 14 94833 unique_id port 94833 remote_ip 10.8.0.46 94841 username ksrkrgr 94841 unique_id port 94841 terminate_cause User-Request 94841 bytes_out 473713 94841 bytes_in 9543225 94841 station_ip 83.123.42.145 94841 port 15728762 94841 nas_port_type Virtual 94841 remote_ip 5.5.5.191 94845 username alihosseini 94845 mac 94845 bytes_out 0 94845 bytes_in 0 94845 station_ip 5.120.34.204 94845 port 12 94845 unique_id port 94845 remote_ip 10.8.0.46 94846 username askari 94846 mac 94846 bytes_out 42784 94846 bytes_in 115543 94846 station_ip 5.119.44.236 94846 port 11 94846 unique_id port 94846 remote_ip 10.8.0.34 94853 username alihosseini 94853 mac 94853 bytes_out 0 94853 bytes_in 0 94853 station_ip 5.120.34.204 94853 port 12 94853 unique_id port 94853 remote_ip 10.8.0.46 94855 username alihosseini 94855 mac 94855 bytes_out 0 94855 bytes_in 0 94855 station_ip 5.120.34.204 94855 port 15 94855 unique_id port 94855 remote_ip 10.8.0.46 94861 username askari 94861 kill_reason Another user logged on this global unique id 94861 mac 94861 bytes_out 0 94861 bytes_in 0 94861 station_ip 5.120.185.240 94861 port 15 94861 unique_id port 94861 remote_ip 10.8.1.30 94864 username amirhosein 94864 unique_id port 94864 terminate_cause Lost-Carrier 94864 bytes_out 7628 94864 bytes_in 138472 94864 station_ip 5.119.134.239 94864 port 15728769 94864 nas_port_type Virtual 94864 remote_ip 5.5.5.187 94865 username alihosseini 94865 mac 94865 bytes_out 1629394 94865 bytes_in 18278851 94865 station_ip 5.120.34.204 94865 port 12 94865 unique_id port 94865 remote_ip 10.8.0.46 94870 username mohammadi 94870 mac 94870 bytes_out 409883 94870 bytes_in 2487232 94870 station_ip 113.203.56.19 94870 port 14 94870 unique_id port 94870 remote_ip 10.8.0.62 94872 username forozande 94872 unique_id port 94872 terminate_cause User-Request 94872 bytes_out 78070 94872 bytes_in 166746 94872 station_ip 37.129.68.10 94872 port 15728777 94872 nas_port_type Virtual 94872 remote_ip 5.5.5.181 94874 username alireza1 94874 unique_id port 94874 terminate_cause User-Request 94874 bytes_out 24727 94874 bytes_in 125460 94874 station_ip 5.119.67.17 94874 port 15728778 94874 nas_port_type Virtual 94874 remote_ip 5.5.5.213 94877 username mehdizare 94877 mac 94877 bytes_out 0 94877 bytes_in 0 94877 station_ip 5.119.239.98 94877 port 8 94877 unique_id port 94877 remote_ip 10.8.0.70 94878 username mohammadi 94878 mac 94878 bytes_out 0 94878 bytes_in 0 94878 station_ip 113.203.56.19 94878 port 12 94878 unique_id port 94878 remote_ip 10.8.0.62 94879 username fariba 94879 mac 94879 bytes_out 159793 94879 bytes_in 230494 94879 station_ip 5.119.169.7 94879 port 13 94879 unique_id port 94879 remote_ip 10.8.1.46 94882 username heydari1 94882 mac 188700 remote_ip 10.8.0.250 94821 bytes_out 351359 94821 bytes_in 6810046 94821 station_ip 5.119.76.66 94821 port 15728755 94821 nas_port_type Virtual 94821 remote_ip 5.5.5.196 94824 username mohammadi 94824 mac 94824 bytes_out 135150 94824 bytes_in 1084333 94824 station_ip 113.203.56.19 94824 port 14 94824 unique_id port 94824 remote_ip 10.8.0.62 94826 username amirhosein 94826 unique_id port 94826 terminate_cause Lost-Carrier 94826 bytes_out 155484 94826 bytes_in 1419800 94826 station_ip 5.119.76.66 94826 port 15728757 94826 nas_port_type Virtual 94826 remote_ip 5.5.5.196 94827 username morteza 94827 mac 94827 bytes_out 0 94827 bytes_in 0 94827 station_ip 83.123.243.63 94827 port 16 94827 unique_id port 94827 remote_ip 10.8.1.26 94829 username morteza 94829 mac 94829 bytes_out 0 94829 bytes_in 0 94829 station_ip 83.123.243.63 94829 port 15 94829 unique_id port 94829 remote_ip 10.8.1.26 94830 username morteza 94830 mac 94830 bytes_out 0 94830 bytes_in 0 94830 station_ip 83.123.243.63 94830 port 15 94830 unique_id port 94830 remote_ip 10.8.0.42 94832 username alihosseini 94832 mac 94832 bytes_out 0 94832 bytes_in 0 94832 station_ip 5.120.34.204 94832 port 12 94832 unique_id port 94834 username mirzaei 94834 mac 94834 bytes_out 0 94834 bytes_in 0 94834 station_ip 5.119.135.251 94834 port 11 94834 unique_id port 94838 username ksrkrgr 94838 unique_id port 94838 terminate_cause User-Request 94838 bytes_out 405198 94838 bytes_in 5913786 94838 station_ip 83.123.42.145 94838 port 15728761 94838 nas_port_type Virtual 94838 remote_ip 5.5.5.191 94840 username ksrkrgr 94840 kill_reason Maximum check online fails reached 94840 unique_id port 94840 bytes_out 697431 94840 bytes_in 4877606 94840 station_ip 2.184.11.185 94840 port 15728759 94840 nas_port_type Virtual 94840 remote_ip 5.5.5.192 94843 username alihosseini 94843 mac 94843 bytes_out 0 94843 bytes_in 0 94843 station_ip 5.120.34.204 94843 port 12 94843 unique_id port 94843 remote_ip 10.8.0.46 94844 username alihosseini 94844 mac 94844 bytes_out 0 94844 bytes_in 0 94844 station_ip 5.120.34.204 94844 port 12 94844 unique_id port 94844 remote_ip 10.8.0.46 94848 username mirzaei 94848 mac 94848 bytes_out 0 94848 bytes_in 0 94848 station_ip 5.119.135.251 94848 port 15 94848 unique_id port 94852 username sadegh 94852 unique_id port 94852 terminate_cause Lost-Carrier 94852 bytes_out 2862668 94852 bytes_in 56763410 94852 station_ip 37.129.171.22 94852 port 15728766 94852 nas_port_type Virtual 94852 remote_ip 5.5.5.188 94858 username askari 94858 mac 94858 bytes_out 31167 94858 bytes_in 52605 94858 station_ip 5.119.228.86 94858 port 12 94858 unique_id port 94858 remote_ip 10.8.0.34 94859 username mahdixz 94859 unique_id port 94859 terminate_cause Lost-Carrier 94859 bytes_out 427233 94859 bytes_in 2861830 94859 station_ip 151.235.94.64 94859 port 15728767 94859 nas_port_type Virtual 94859 remote_ip 5.5.5.207 94863 username mohammadi 94863 mac 94863 bytes_out 0 94863 bytes_in 0 94863 station_ip 113.203.56.19 94863 port 15 94863 unique_id port 94863 remote_ip 10.8.0.62 94866 username ahmadi 94866 unique_id port 94866 terminate_cause User-Request 94866 bytes_out 346910 94866 bytes_in 7218460 94866 station_ip 83.123.209.100 94866 port 15728771 94866 nas_port_type Virtual 94866 remote_ip 5.5.5.185 94868 username mammad 94868 unique_id port 94868 terminate_cause User-Request 94868 bytes_out 3864142 94868 bytes_in 100074689 94854 unique_id port 94854 terminate_cause Lost-Carrier 94854 bytes_out 788837 94854 bytes_in 10546141 94854 station_ip 5.120.137.250 94854 port 15728765 94854 nas_port_type Virtual 94854 remote_ip 5.5.5.189 94856 username mohammadi 94856 mac 94856 bytes_out 248874 94856 bytes_in 132856 94856 station_ip 113.203.56.19 94856 port 14 94856 unique_id port 94856 remote_ip 10.8.0.62 94857 username alihosseini 94857 mac 94857 bytes_out 0 94857 bytes_in 0 94857 station_ip 5.120.34.204 94857 port 14 94857 unique_id port 94857 remote_ip 10.8.0.46 94860 username mahdixz 94860 unique_id port 94860 terminate_cause User-Request 94860 bytes_out 339550 94860 bytes_in 3642662 94860 station_ip 151.235.94.64 94860 port 15728770 94860 nas_port_type Virtual 94860 remote_ip 5.5.5.186 94862 username mohammadi 94862 mac 94862 bytes_out 0 94862 bytes_in 0 94862 station_ip 113.203.56.19 94862 port 14 94862 unique_id port 94862 remote_ip 10.8.0.62 94867 username alihosseini 94867 mac 94867 bytes_out 0 94867 bytes_in 0 94867 station_ip 5.120.34.204 94867 port 15 94867 unique_id port 94867 remote_ip 10.8.0.46 94875 username mohammadi 94875 mac 94875 bytes_out 0 94875 bytes_in 0 94875 station_ip 113.203.56.19 94875 port 12 94875 unique_id port 94875 remote_ip 10.8.0.62 94876 username ahmadipour 94876 unique_id port 94876 terminate_cause Lost-Carrier 94876 bytes_out 905138 94876 bytes_in 20131824 94876 station_ip 83.122.187.223 94876 port 15728774 94876 nas_port_type Virtual 94876 remote_ip 5.5.5.183 94881 username heydari1 94881 mac 94881 bytes_out 0 94881 bytes_in 0 94881 station_ip 5.119.188.244 94881 port 15 94881 unique_id port 94881 remote_ip 10.8.1.58 94883 username heydari1 94883 mac 94883 bytes_out 0 94883 bytes_in 0 94883 station_ip 46.225.214.62 94883 port 12 94883 unique_id port 94883 remote_ip 10.8.0.86 94885 username mehdizare 94885 mac 94885 bytes_out 0 94885 bytes_in 0 94885 station_ip 5.119.239.98 94885 port 14 94885 unique_id port 94885 remote_ip 10.8.0.70 94887 username heydari 94887 kill_reason Relative expiration date has reached 94887 unique_id port 94887 bytes_out 0 94887 bytes_in 0 94887 station_ip 46.225.214.62 94887 port 15728782 94887 nas_port_type Virtual 94890 username heydari1 94890 unique_id port 94890 terminate_cause User-Request 94890 bytes_out 0 94890 bytes_in 0 94890 station_ip 46.225.214.62 94890 port 15728784 94890 nas_port_type Virtual 94890 remote_ip 5.5.5.180 94893 username khalili 94893 unique_id port 94893 terminate_cause Lost-Carrier 94893 bytes_out 836730 94893 bytes_in 10166428 94893 station_ip 5.120.156.152 94893 port 15728758 94893 nas_port_type Virtual 94893 remote_ip 5.5.5.238 94895 username amirhosein 94895 unique_id port 94895 terminate_cause Lost-Carrier 94895 bytes_out 36364 94895 bytes_in 218737 94895 station_ip 5.119.8.35 94895 port 15728785 94895 nas_port_type Virtual 94895 remote_ip 5.5.5.179 94896 username mehdizare 94896 mac 94896 bytes_out 0 94896 bytes_in 0 94896 station_ip 5.119.239.98 94896 port 12 94896 unique_id port 94896 remote_ip 10.8.0.70 94898 username arabpour 94898 unique_id port 94898 terminate_cause User-Request 94898 bytes_out 671126 94898 bytes_in 21692354 94898 station_ip 37.129.21.30 94898 port 15728788 94898 nas_port_type Virtual 94898 remote_ip 5.5.5.177 94900 username amirhosein 94900 unique_id port 94900 terminate_cause User-Request 94900 bytes_out 0 94900 bytes_in 0 94900 station_ip 5.119.8.35 94900 port 15728791 94868 station_ip 5.233.64.73 94868 port 15728768 94868 nas_port_type Virtual 94868 remote_ip 5.5.5.222 94869 username amirhosein 94869 unique_id port 94869 terminate_cause Lost-Carrier 94869 bytes_out 182042 94869 bytes_in 2927781 94869 station_ip 5.120.158.206 94869 port 15728772 94869 nas_port_type Virtual 94869 remote_ip 5.5.5.184 94871 username alireza1 94871 unique_id port 94871 terminate_cause User-Request 94871 bytes_out 22774 94871 bytes_in 120439 94871 station_ip 5.119.67.17 94871 port 15728775 94871 nas_port_type Virtual 94871 remote_ip 5.5.5.213 94873 username ksrkrgr 94873 unique_id port 94873 terminate_cause User-Request 94873 bytes_out 3507707 94873 bytes_in 53373749 94873 station_ip 2.184.11.185 94873 port 15728773 94873 nas_port_type Virtual 94873 remote_ip 5.5.5.192 94880 username askari 94880 mac 94880 bytes_out 1814 94880 bytes_in 3984 94880 station_ip 5.120.25.50 94880 port 15 94880 unique_id port 94880 remote_ip 10.8.1.30 94892 username alireza1 94892 unique_id port 94892 terminate_cause User-Request 94892 bytes_out 57838 94892 bytes_in 171911 94892 station_ip 5.119.67.17 94892 port 15728780 94892 nas_port_type Virtual 94892 remote_ip 5.5.5.213 94894 username mohammadi 94894 mac 94894 bytes_out 0 94894 bytes_in 0 94894 station_ip 113.203.56.19 94894 port 8 94894 unique_id port 94894 remote_ip 10.8.0.62 94902 username mahdixz 94902 unique_id port 94902 terminate_cause Lost-Carrier 94902 bytes_out 836601 94902 bytes_in 7840978 94902 station_ip 151.235.94.64 94902 port 15728786 94902 nas_port_type Virtual 94902 remote_ip 5.5.5.178 94904 username mehdizare 94904 mac 94904 bytes_out 65033 94904 bytes_in 151370 94904 station_ip 5.119.239.98 94904 port 15 94904 unique_id port 94904 remote_ip 10.8.1.54 94912 username tahmasebi 94912 unique_id port 94912 terminate_cause User-Request 94912 bytes_out 101308244 94912 bytes_in 1018004268 94912 station_ip 5.119.180.122 94912 port 15728741 94912 nas_port_type Virtual 94912 remote_ip 5.5.5.202 94913 username mehdizare 94913 mac 94913 bytes_out 76269 94913 bytes_in 107185 94913 station_ip 5.119.239.98 94913 port 15 94913 unique_id port 94913 remote_ip 10.8.1.54 94915 username alireza1 94915 unique_id port 94915 terminate_cause Lost-Carrier 94915 bytes_out 483233 94915 bytes_in 1393625 94915 station_ip 5.119.67.17 94915 port 15728793 94915 nas_port_type Virtual 94915 remote_ip 5.5.5.213 94916 username mehdizare 94916 mac 94916 bytes_out 0 94916 bytes_in 0 94916 station_ip 5.119.239.98 94916 port 12 94916 unique_id port 94916 remote_ip 10.8.0.70 94918 username mohammadi 94918 mac 94918 bytes_out 0 94918 bytes_in 0 94918 station_ip 113.203.123.23 94918 port 12 94918 unique_id port 94918 remote_ip 10.8.0.62 94925 username alinezhad 94925 unique_id port 94925 terminate_cause User-Request 94925 bytes_out 0 94925 bytes_in 0 94925 station_ip 5.202.11.47 94925 port 15728802 94925 nas_port_type Virtual 94925 remote_ip 5.5.5.208 94926 username jamali 94926 mac 94926 bytes_out 0 94926 bytes_in 0 94926 station_ip 83.123.29.173 94926 port 12 94926 unique_id port 94926 remote_ip 10.8.0.50 94929 username amirhosein 94929 unique_id port 94929 terminate_cause Lost-Carrier 94929 bytes_out 1343207 94929 bytes_in 36176257 94929 station_ip 5.119.8.35 94929 port 15728800 94929 nas_port_type Virtual 94929 remote_ip 5.5.5.173 94938 username arabpour 94938 unique_id port 94938 terminate_cause User-Request 94938 bytes_out 61520 94938 bytes_in 1293286 94938 station_ip 37.129.88.249 94938 port 15728811 94882 bytes_out 0 94882 bytes_in 0 94882 station_ip 5.119.188.244 94882 port 8 94882 unique_id port 94882 remote_ip 10.8.0.86 94884 username heydari 94884 kill_reason Relative expiration date has reached 94884 mac 94884 bytes_out 0 94884 bytes_in 0 94884 station_ip 46.225.214.62 94884 port 12 94884 unique_id port 94886 username heydari1 94886 mac 94886 bytes_out 0 94886 bytes_in 0 94886 station_ip 46.225.214.62 94886 port 8 94886 unique_id port 94886 remote_ip 10.8.0.86 94888 username heydari1 94888 mac 94888 bytes_out 0 94888 bytes_in 0 94888 station_ip 46.225.214.62 94888 port 8 94888 unique_id port 94888 remote_ip 10.8.0.86 94889 username heydari1 94889 unique_id port 94889 terminate_cause User-Request 94889 bytes_out 0 94889 bytes_in 0 94889 station_ip 46.225.214.62 94889 port 15728783 94889 nas_port_type Virtual 94889 remote_ip 5.5.5.180 94891 username heydari1 94891 mac 94891 bytes_out 0 94891 bytes_in 0 94891 station_ip 46.225.214.62 94891 port 8 94891 unique_id port 94891 remote_ip 10.8.0.86 94897 username mahdixz 94897 unique_id port 94897 terminate_cause Lost-Carrier 94897 bytes_out 1412501 94897 bytes_in 24629997 94897 station_ip 151.235.94.64 94897 port 15728779 94897 nas_port_type Virtual 94897 remote_ip 5.5.5.186 94899 username amirhosein 94899 unique_id port 94899 terminate_cause User-Request 94899 bytes_out 0 94899 bytes_in 0 94899 station_ip 5.119.8.35 94899 port 15728790 94899 nas_port_type Virtual 94899 remote_ip 5.5.5.176 94901 username amirhosein 94901 unique_id port 94901 terminate_cause Lost-Carrier 94901 bytes_out 22446 94901 bytes_in 318106 94901 station_ip 5.119.8.35 94901 port 15728787 94901 nas_port_type Virtual 94901 remote_ip 5.5.5.179 94903 username alireza1 94903 unique_id port 94903 terminate_cause User-Request 94903 bytes_out 34747 94903 bytes_in 151187 94903 station_ip 5.119.67.17 94903 port 15728789 94903 nas_port_type Virtual 94903 remote_ip 5.5.5.213 94906 username mahdixz 94906 unique_id port 94906 terminate_cause Lost-Carrier 94906 bytes_out 659595 94906 bytes_in 5136677 94906 station_ip 151.235.94.64 94906 port 15728792 94906 nas_port_type Virtual 94906 remote_ip 5.5.5.186 94909 username mahdixz 94909 unique_id port 94909 terminate_cause Lost-Carrier 94909 bytes_out 302021 94909 bytes_in 4083976 94909 station_ip 151.235.85.15 94909 port 15728795 94909 nas_port_type Virtual 94909 remote_ip 5.5.5.175 94914 username mehdizare 94914 mac 94914 bytes_out 30001 94914 bytes_in 19076 94914 station_ip 5.119.239.98 94914 port 8 94914 unique_id port 94914 remote_ip 10.8.0.70 94919 username amirhosein 94919 unique_id port 94919 terminate_cause Lost-Carrier 94919 bytes_out 22880 94919 bytes_in 165020 94919 station_ip 5.119.8.35 94919 port 15728799 94919 nas_port_type Virtual 94919 remote_ip 5.5.5.176 94921 username mohammadi 94921 mac 94921 bytes_out 50607 94921 bytes_in 56239 94921 station_ip 113.203.123.23 94921 port 15 94921 unique_id port 94921 remote_ip 10.8.0.62 188699 bytes_out 0 188699 bytes_in 0 188699 station_ip 5.120.128.95 188699 port 396 188699 unique_id port 188699 remote_ip 10.8.0.250 188704 username zahra1101 188704 mac 188704 bytes_out 0 94927 username heydari1 94927 unique_id port 94927 terminate_cause User-Request 94927 bytes_out 0 94927 bytes_in 0 94927 station_ip 5.119.178.42 94927 port 15728803 94927 nas_port_type Virtual 94927 remote_ip 5.5.5.172 94928 username heydari1 94928 unique_id port 94928 terminate_cause User-Request 94928 bytes_out 0 188704 bytes_in 0 94900 nas_port_type Virtual 94900 remote_ip 5.5.5.176 94905 username alinezhad 94905 unique_id port 94905 terminate_cause User-Request 94905 bytes_out 0 94905 bytes_in 0 94905 station_ip 5.202.11.47 94905 port 15728794 94905 nas_port_type Virtual 94905 remote_ip 5.5.5.208 94907 username mohammadi 94907 mac 94907 bytes_out 0 94907 bytes_in 0 94907 station_ip 113.203.56.19 94907 port 8 94907 unique_id port 94907 remote_ip 10.8.0.62 94908 username mohammadi 94908 mac 94908 bytes_out 0 94908 bytes_in 0 94908 station_ip 113.203.56.19 94908 port 12 94908 unique_id port 94908 remote_ip 10.8.0.62 188701 username sedighe 188701 mac 188701 bytes_out 367532 188701 bytes_in 912768 188701 station_ip 83.123.94.216 188701 port 394 188701 unique_id port 188701 remote_ip 10.8.0.46 188710 username sabaghnezhad 94911 username mammad 94911 unique_id port 94911 terminate_cause User-Request 94911 bytes_out 2823154 94911 bytes_in 12052097 94911 station_ip 5.233.64.73 94911 port 15728796 94911 nas_port_type Virtual 94911 remote_ip 5.5.5.222 94917 username jamali 94917 mac 94917 bytes_out 2535613 94917 bytes_in 31009966 94917 station_ip 83.123.21.169 94917 port 8 94917 unique_id port 94917 remote_ip 10.8.0.50 94920 username jamali 94920 mac 94920 bytes_out 0 94920 bytes_in 0 94920 station_ip 83.123.21.169 94920 port 8 94920 unique_id port 94920 remote_ip 10.8.0.50 94922 username madadi2 94922 unique_id port 94922 terminate_cause Lost-Carrier 94922 bytes_out 586876 94922 bytes_in 3509364 94922 station_ip 5.119.210.218 94922 port 15728797 94922 nas_port_type Virtual 94922 remote_ip 5.5.5.174 94924 username mehdizare 94924 mac 94924 bytes_out 0 94924 bytes_in 0 94924 station_ip 5.119.239.98 94924 port 14 94924 unique_id port 94924 remote_ip 10.8.0.70 94930 username alihosseini 94930 mac 94930 bytes_out 353889 94930 bytes_in 4089144 94930 station_ip 5.119.120.2 94930 port 14 94930 unique_id port 94930 remote_ip 10.8.0.46 94933 username mehdizare 94933 mac 94933 bytes_out 0 94933 bytes_in 0 94933 station_ip 5.119.239.98 94933 port 8 94933 unique_id port 94933 remote_ip 10.8.0.70 94936 username alihosseini 94936 mac 94936 bytes_out 0 94936 bytes_in 0 94936 station_ip 5.119.120.2 94936 port 8 94936 unique_id port 94936 remote_ip 10.8.0.46 94937 username alireza1 94937 unique_id port 94937 terminate_cause User-Request 94937 bytes_out 53731 94937 bytes_in 268898 94937 station_ip 5.119.67.17 94937 port 15728808 94937 nas_port_type Virtual 94937 remote_ip 5.5.5.213 94944 username mehdizare 94944 mac 94944 bytes_out 12871 94944 bytes_in 15483 94944 station_ip 5.119.239.98 94944 port 8 94944 unique_id port 94944 remote_ip 10.8.0.70 94946 username alihosseini 94946 mac 94946 bytes_out 0 94946 bytes_in 0 94946 station_ip 5.119.120.2 94946 port 8 94946 unique_id port 94946 remote_ip 10.8.0.46 94952 username mahdiyehalizadeh 94952 mac 94952 bytes_out 0 94952 bytes_in 0 94952 station_ip 46.225.214.62 94952 port 8 94952 unique_id port 94952 remote_ip 10.8.0.90 94955 username alihosseini 94955 mac 94955 bytes_out 0 94955 bytes_in 0 94955 station_ip 5.119.120.2 94955 port 16 94955 unique_id port 94955 remote_ip 10.8.1.34 94959 username forozande 94959 unique_id port 94959 terminate_cause User-Request 94959 bytes_out 114489 94959 bytes_in 200402 94959 station_ip 37.129.163.92 94959 port 15728817 94959 nas_port_type Virtual 94959 remote_ip 5.5.5.165 94928 bytes_in 0 94928 station_ip 5.119.178.42 94928 port 15728804 94928 nas_port_type Virtual 94928 remote_ip 5.5.5.172 94931 username alireza1 94931 unique_id port 94931 terminate_cause User-Request 94931 bytes_out 13052 94931 bytes_in 37132 94931 station_ip 5.119.67.17 94931 port 15728806 94931 nas_port_type Virtual 94931 remote_ip 5.5.5.213 94932 username mohammadi 94932 mac 94932 bytes_out 0 94932 bytes_in 0 94932 station_ip 113.203.109.203 94932 port 14 94932 unique_id port 94932 remote_ip 10.8.0.62 94934 username alihosseini 94934 mac 94934 bytes_out 0 94934 bytes_in 0 94934 station_ip 5.119.120.2 94934 port 15 94934 unique_id port 94934 remote_ip 10.8.1.34 94935 username heydari1 94935 unique_id port 94935 terminate_cause Lost-Carrier 94935 bytes_out 56135 94935 bytes_in 549861 94935 station_ip 5.120.151.112 94935 port 15728805 94935 nas_port_type Virtual 94935 remote_ip 5.5.5.171 94940 username alihosseini 94940 mac 94940 bytes_out 0 94940 bytes_in 0 94940 station_ip 5.119.120.2 94940 port 15 94940 unique_id port 94940 remote_ip 10.8.1.34 94942 username alihosseini 94942 mac 94942 bytes_out 0 94942 bytes_in 0 94942 station_ip 5.119.120.2 94942 port 14 94942 unique_id port 94942 remote_ip 10.8.0.46 94943 username alihosseini 94943 mac 94943 bytes_out 0 94943 bytes_in 0 94943 station_ip 5.119.120.2 94943 port 15 94943 unique_id port 94943 remote_ip 10.8.0.46 94945 username mammad 94945 unique_id port 94945 terminate_cause User-Request 94945 bytes_out 1280239 94945 bytes_in 21056440 94945 station_ip 5.233.64.73 94945 port 15728812 94945 nas_port_type Virtual 94945 remote_ip 5.5.5.222 94948 username mahdiyehalizadeh 94948 kill_reason Wrong password 94948 mac 94948 bytes_out 0 94948 bytes_in 0 94948 station_ip 46.225.214.62 94948 port 8 94948 unique_id port 94949 username alihosseini 94949 mac 94949 bytes_out 0 94949 bytes_in 0 94949 station_ip 5.119.120.2 94949 port 8 94949 unique_id port 94949 remote_ip 10.8.0.46 94951 username mahdiyehalizadeh 94951 mac 94951 bytes_out 122248 94951 bytes_in 462563 94951 station_ip 46.225.214.62 94951 port 8 94951 unique_id port 94951 remote_ip 10.8.0.90 94953 username mehdizare 94953 mac 94953 bytes_out 0 94953 bytes_in 0 94953 station_ip 5.119.239.98 94953 port 14 94953 unique_id port 94953 remote_ip 10.8.0.70 94958 username alihosseini 94958 mac 94958 bytes_out 0 94958 bytes_in 0 94958 station_ip 5.119.120.2 94958 port 16 94958 unique_id port 94958 remote_ip 10.8.1.34 94961 username alihosseini 94961 mac 94961 bytes_out 0 94961 bytes_in 0 94961 station_ip 5.119.120.2 94961 port 8 94961 unique_id port 94961 remote_ip 10.8.0.46 94965 username alihosseini 94965 mac 94965 bytes_out 0 94965 bytes_in 0 94965 station_ip 5.119.130.75 94965 port 16 94965 unique_id port 94965 remote_ip 10.8.1.34 94968 username aminvpn 94968 unique_id port 94968 terminate_cause User-Request 94968 bytes_out 455275 94968 bytes_in 3371983 94968 station_ip 5.233.59.198 94968 port 15728818 94968 nas_port_type Virtual 94968 remote_ip 5.5.5.164 94970 username hoorieh 94970 mac 94970 bytes_out 2085992 94970 bytes_in 4874556 94970 station_ip 5.119.201.24 94970 port 14 94970 unique_id port 94970 remote_ip 10.8.0.78 94975 username forozande 94975 unique_id port 94975 terminate_cause User-Request 94975 bytes_out 15321 94975 bytes_in 38361 94975 station_ip 83.122.70.231 94975 port 15728822 94938 nas_port_type Virtual 94938 remote_ip 5.5.5.168 94939 username aminvpn 94939 unique_id port 94939 terminate_cause Lost-Carrier 94939 bytes_out 9388750 94939 bytes_in 1134120 94939 station_ip 5.119.218.27 94939 port 15728809 94939 nas_port_type Virtual 94939 remote_ip 5.5.5.170 94941 username mehdizare 94941 mac 94941 bytes_out 0 94941 bytes_in 0 94941 station_ip 5.119.239.98 94941 port 14 94941 unique_id port 94941 remote_ip 10.8.0.70 94947 username mahdiyehalizadeh 94947 kill_reason Wrong password 94947 mac 94947 bytes_out 0 94947 bytes_in 0 94947 station_ip 46.225.214.62 94947 port 8 94947 unique_id port 94950 username alihosseini 94950 mac 94950 bytes_out 0 94950 bytes_in 0 94950 station_ip 5.119.120.2 94950 port 15 94950 unique_id port 94950 remote_ip 10.8.0.46 94954 username mahdiyehalizadeh 94954 mac 94954 bytes_out 6837 94954 bytes_in 11618 94954 station_ip 46.225.214.62 94954 port 8 94954 unique_id port 94954 remote_ip 10.8.0.90 94956 username amirhosein 94956 unique_id port 94956 terminate_cause Lost-Carrier 94956 bytes_out 1594995 94956 bytes_in 73371724 94956 station_ip 5.119.8.35 94956 port 15728813 94956 nas_port_type Virtual 94956 remote_ip 5.5.5.173 94957 username mirzaei 94957 kill_reason Another user logged on this global unique id 94957 mac 94957 bytes_out 0 94957 bytes_in 0 94957 station_ip 5.119.135.251 94957 port 11 94957 unique_id port 94957 remote_ip 10.8.0.14 94960 username madadi2 94960 unique_id port 94960 terminate_cause Lost-Carrier 94960 bytes_out 159808 94960 bytes_in 408118 94960 station_ip 5.120.46.132 94960 port 15728815 94960 nas_port_type Virtual 94960 remote_ip 5.5.5.167 94962 username alihosseini 94962 mac 94962 bytes_out 0 94962 bytes_in 0 94962 station_ip 5.119.120.2 94962 port 8 94962 unique_id port 94962 remote_ip 10.8.0.46 94963 username alihosseini 94963 mac 94963 bytes_out 0 94963 bytes_in 0 94963 station_ip 5.119.130.75 94963 port 16 94963 unique_id port 94963 remote_ip 10.8.1.34 94964 username amirhosein 94964 unique_id port 94964 terminate_cause Lost-Carrier 94964 bytes_out 52616 94964 bytes_in 367329 94964 station_ip 5.119.8.35 94964 port 15728816 94964 nas_port_type Virtual 94964 remote_ip 5.5.5.166 94973 username mohammadi 94973 mac 94973 bytes_out 904086 94973 bytes_in 1410688 94973 station_ip 113.203.117.11 94973 port 8 94973 unique_id port 94973 remote_ip 10.8.0.62 94974 username alihosseini 94974 mac 94974 bytes_out 0 94974 bytes_in 0 94974 station_ip 5.120.134.126 94974 port 8 94974 unique_id port 94974 remote_ip 10.8.0.46 94976 username mohammadi 94976 mac 94976 bytes_out 82926 94976 bytes_in 126473 94976 station_ip 113.203.117.11 94976 port 14 94976 unique_id port 94976 remote_ip 10.8.0.62 94983 username ahmadi 94983 unique_id port 94983 terminate_cause User-Request 94983 bytes_out 77994 94983 bytes_in 477003 94983 station_ip 83.123.209.100 94983 port 15728823 94983 nas_port_type Virtual 94983 remote_ip 5.5.5.185 94987 username alinezhad 94987 unique_id port 94987 terminate_cause User-Request 94987 bytes_out 0 94987 bytes_in 0 94987 station_ip 5.202.11.47 94987 port 15728825 94987 nas_port_type Virtual 94987 remote_ip 5.5.5.208 94988 username alihosseini 94988 mac 94988 bytes_out 0 94988 bytes_in 0 94988 station_ip 5.120.134.126 94988 port 8 94988 unique_id port 94988 remote_ip 10.8.0.46 94989 username farhad 94989 kill_reason Relative expiration date has reached 94989 unique_id port 94989 bytes_out 0 94989 bytes_in 0 94966 username alihosseini 94966 mac 94966 bytes_out 0 94966 bytes_in 0 94966 station_ip 5.120.134.126 94966 port 14 94966 unique_id port 94966 remote_ip 10.8.0.46 94967 username alinezhad 94967 unique_id port 94967 terminate_cause User-Request 94967 bytes_out 668089 94967 bytes_in 7532342 94967 station_ip 5.202.11.47 94967 port 15728807 94967 nas_port_type Virtual 94967 remote_ip 5.5.5.208 94969 username mehdizare 94969 kill_reason Another user logged on this global unique id 94969 mac 94969 bytes_out 0 94969 bytes_in 0 94969 station_ip 5.119.239.98 94969 port 15 94969 unique_id port 94969 remote_ip 10.8.1.54 94971 username alihosseini 94971 mac 94971 bytes_out 0 94971 bytes_in 0 94971 station_ip 5.120.134.126 94971 port 16 94971 unique_id port 94971 remote_ip 10.8.1.34 94972 username ahmadi 94972 unique_id port 94972 terminate_cause User-Request 94972 bytes_out 0 94972 bytes_in 0 94972 station_ip 83.123.209.100 94972 port 15728821 94972 nas_port_type Virtual 94972 remote_ip 5.5.5.185 94977 username alihosseini 94977 mac 94977 bytes_out 0 94977 bytes_in 0 94977 station_ip 5.120.134.126 94977 port 8 94977 unique_id port 94977 remote_ip 10.8.0.46 94979 username alihosseini 94979 mac 94979 bytes_out 0 94979 bytes_in 0 94979 station_ip 5.120.134.126 94979 port 8 94979 unique_id port 94979 remote_ip 10.8.0.46 94980 username mohammadi 94980 mac 94980 bytes_out 0 94980 bytes_in 0 94980 station_ip 113.203.117.11 94980 port 8 94980 unique_id port 94980 remote_ip 10.8.0.62 94982 username amirhosein 94982 unique_id port 94982 terminate_cause Lost-Carrier 94982 bytes_out 145110 94982 bytes_in 625583 94982 station_ip 5.119.8.35 94982 port 15728819 94982 nas_port_type Virtual 94982 remote_ip 5.5.5.166 94991 username farhad 94991 kill_reason Relative expiration date has reached 94991 unique_id port 94991 bytes_out 0 94991 bytes_in 0 94991 station_ip 5.120.107.72 94991 port 15728830 94991 nas_port_type Virtual 94992 username farhad 94992 kill_reason Relative expiration date has reached 94992 unique_id port 94992 bytes_out 0 94992 bytes_in 0 94992 station_ip 5.120.107.72 94992 port 15728831 94992 nas_port_type Virtual 94993 username farhad 94993 kill_reason Relative expiration date has reached 94993 unique_id port 94993 bytes_out 0 94993 bytes_in 0 94993 station_ip 5.119.221.50 94993 port 15728832 94993 nas_port_type Virtual 94995 username farhad 94995 kill_reason Relative expiration date has reached 94995 unique_id port 94995 bytes_out 0 94995 bytes_in 0 94995 station_ip 5.119.221.50 94995 port 15728833 94995 nas_port_type Virtual 94998 username amirhosein 94998 unique_id port 94998 terminate_cause Lost-Carrier 94998 bytes_out 5769 94998 bytes_in 133542 94998 station_ip 5.120.39.92 94998 port 15728827 94998 nas_port_type Virtual 94998 remote_ip 5.5.5.160 95000 username alihosseini 95000 mac 95000 bytes_out 0 95000 bytes_in 0 95000 station_ip 5.120.134.126 95000 port 15 95000 unique_id port 95004 username mammad 95004 unique_id port 95004 terminate_cause User-Request 95004 bytes_out 1917488 95004 bytes_in 45324566 95004 station_ip 5.233.64.73 95004 port 15728826 95004 nas_port_type Virtual 95004 remote_ip 5.5.5.222 95005 username alihosseini 95005 mac 95005 bytes_out 0 95005 bytes_in 0 95005 station_ip 5.120.109.119 95005 port 8 95005 unique_id port 95005 remote_ip 10.8.0.46 188702 remote_ip 10.8.0.250 188703 username zahra1101 188703 mac 188703 bytes_out 0 188703 bytes_in 0 188703 station_ip 5.120.128.95 188703 port 317 188703 unique_id port 94975 nas_port_type Virtual 94975 remote_ip 5.5.5.162 94978 username alihosseini 94978 mac 94978 bytes_out 0 94978 bytes_in 0 94978 station_ip 5.120.134.126 94978 port 8 94978 unique_id port 94978 remote_ip 10.8.0.46 94981 username alihosseini 94981 mac 94981 bytes_out 0 94981 bytes_in 0 94981 station_ip 5.120.134.126 94981 port 8 94981 unique_id port 94981 remote_ip 10.8.0.46 94984 username amirhosein 94984 unique_id port 94984 terminate_cause Lost-Carrier 94984 bytes_out 145094 94984 bytes_in 1971876 94984 station_ip 5.119.8.35 94984 port 15728824 94984 nas_port_type Virtual 94984 remote_ip 5.5.5.161 94985 username alihosseini 94985 mac 94985 bytes_out 0 94985 bytes_in 0 94985 station_ip 5.120.134.126 94985 port 8 94985 unique_id port 94985 remote_ip 10.8.0.46 94986 username mahdixz 94986 unique_id port 94986 terminate_cause User-Request 94986 bytes_out 2184023 94986 bytes_in 20745948 94986 station_ip 151.235.122.123 94986 port 15728820 94986 nas_port_type Virtual 94986 remote_ip 5.5.5.163 94990 username farhad 94990 kill_reason Relative expiration date has reached 94990 unique_id port 94990 bytes_out 0 94990 bytes_in 0 94990 station_ip 5.120.107.72 94990 port 15728829 94990 nas_port_type Virtual 94994 username alihosseini 94994 mac 94994 bytes_out 0 94994 bytes_in 0 94994 station_ip 5.120.109.119 94994 port 16 94994 unique_id port 94994 remote_ip 10.8.1.34 94996 username farhad 94996 kill_reason Relative expiration date has reached 94996 unique_id port 94996 bytes_out 0 94996 bytes_in 0 94996 station_ip 5.119.174.250 94996 port 15728834 94996 nas_port_type Virtual 95001 username arabpour 95001 unique_id port 95001 terminate_cause User-Request 95001 bytes_out 357042 95001 bytes_in 10885663 95001 station_ip 83.123.174.106 95001 port 15728835 95001 nas_port_type Virtual 95001 remote_ip 5.5.5.159 95003 username alihosseini 95003 mac 95003 bytes_out 0 95003 bytes_in 0 95003 station_ip 5.120.109.119 95003 port 8 95003 unique_id port 95003 remote_ip 10.8.0.46 95006 username fariba 95006 mac 95006 bytes_out 0 95006 bytes_in 0 95006 station_ip 5.119.169.7 95006 port 13 95006 unique_id port 95006 remote_ip 10.8.1.46 95007 username alihosseini 95007 mac 95007 bytes_out 151000 95007 bytes_in 1331581 95007 station_ip 5.120.109.119 95007 port 8 95007 unique_id port 95007 remote_ip 10.8.0.46 95009 username alihosseini 95009 mac 95009 bytes_out 0 95009 bytes_in 0 95009 station_ip 5.120.109.119 95009 port 8 95009 unique_id port 95009 remote_ip 10.8.0.46 95011 username aminvpn 95011 mac 95011 bytes_out 699229 95011 bytes_in 13278128 95011 station_ip 83.122.204.2 95011 port 8 95011 unique_id port 95011 remote_ip 10.8.0.6 95016 username mohammadi 95016 mac 95016 bytes_out 0 95016 bytes_in 0 95016 station_ip 113.203.117.11 95016 port 16 95016 unique_id port 95016 remote_ip 10.8.0.62 95019 username mohammadi 95019 mac 95019 bytes_out 178820 95019 bytes_in 1112142 95019 station_ip 113.203.117.11 95019 port 19 95019 unique_id port 95019 remote_ip 10.8.0.62 95020 username mammad 95020 unique_id port 95020 terminate_cause User-Request 95020 bytes_out 3061597 95020 bytes_in 60848837 95020 station_ip 5.233.64.73 95020 port 15728839 95020 nas_port_type Virtual 95020 remote_ip 5.5.5.222 95022 username alinezhad 95022 unique_id port 95022 terminate_cause User-Request 95022 bytes_out 65168 95022 bytes_in 1368637 95022 station_ip 5.202.11.47 95022 port 15728842 95022 nas_port_type Virtual 94989 station_ip 5.119.71.74 94989 port 15728828 94989 nas_port_type Virtual 94997 username farhad 94997 kill_reason Relative expiration date has reached 94997 bytes_out 38195016 94997 nas_port_type Virtual 94997 station_ip 5.119.95.182 94997 port 15728776 94997 terminate_cause Lost-Carrier 94997 bytes_in 447930445 94997 unique_id port 94997 remote_ip 5.5.5.182 94999 username alihosseini 94999 mac 94999 bytes_out 0 94999 bytes_in 0 94999 station_ip 5.120.109.119 94999 port 8 94999 unique_id port 94999 remote_ip 10.8.0.46 95002 username alihosseini 95002 mac 95002 bytes_out 3811 95002 bytes_in 5259 95002 station_ip 5.120.109.119 95002 port 8 95002 unique_id port 95002 remote_ip 10.8.0.46 95012 username alireza1 95012 unique_id port 95012 terminate_cause Lost-Carrier 95012 bytes_out 1592459 95012 bytes_in 4101408 95012 station_ip 5.119.67.17 95012 port 15728810 95012 nas_port_type Virtual 95012 remote_ip 5.5.5.169 95014 username amirhosein 95014 unique_id port 95014 terminate_cause Lost-Carrier 95014 bytes_out 1315939 95014 bytes_in 49508762 95014 station_ip 5.120.39.92 95014 port 15728836 95014 nas_port_type Virtual 95014 remote_ip 5.5.5.160 95015 username alihosseini 95015 mac 95015 bytes_out 0 95015 bytes_in 0 95015 station_ip 5.120.109.119 95015 port 17 95015 unique_id port 95015 remote_ip 10.8.0.46 95017 username ahmadipour 95017 unique_id port 95017 terminate_cause Lost-Carrier 95017 bytes_out 54364601 95017 bytes_in 22767514 95017 station_ip 83.122.140.119 95017 port 15728840 95017 nas_port_type Virtual 95017 remote_ip 5.5.5.156 95023 username mohammadmahdi 95023 kill_reason Another user logged on this global unique id 95023 mac 95023 bytes_out 0 95023 bytes_in 0 95023 station_ip 5.120.9.190 95023 port 18 95023 unique_id port 95023 remote_ip 10.8.0.82 95027 username alihosseini 95027 mac 95027 bytes_out 0 95027 bytes_in 0 95027 station_ip 5.120.109.119 95027 port 13 95027 unique_id port 95027 remote_ip 10.8.1.34 95033 username aminvpn 95033 unique_id port 95033 terminate_cause User-Request 95033 bytes_out 527109 95033 bytes_in 2728893 95033 station_ip 5.119.218.27 95033 port 15728849 95033 nas_port_type Virtual 95033 remote_ip 5.5.5.153 95036 username ahmadi 95036 unique_id port 95036 terminate_cause User-Request 95036 bytes_out 128892 95036 bytes_in 506231 95036 station_ip 83.123.149.128 95036 port 15728850 95036 nas_port_type Virtual 95036 remote_ip 5.5.5.152 95037 username alihosseini 95037 mac 95037 bytes_out 0 95037 bytes_in 0 95037 station_ip 5.120.109.119 95037 port 14 95037 unique_id port 95037 remote_ip 10.8.0.46 95039 username aminvpn 95039 kill_reason Another user logged on this global unique id 95039 mac 95039 bytes_out 0 95039 bytes_in 0 95039 station_ip 83.122.204.2 95039 port 8 95039 unique_id port 95039 remote_ip 10.8.0.6 95040 username mohammadmahdi 95040 mac 95040 bytes_out 0 95040 bytes_in 0 95040 station_ip 5.120.9.190 95040 port 18 95040 unique_id port 95043 username alihosseini 95043 mac 95043 bytes_out 0 95043 bytes_in 0 95043 station_ip 5.120.109.119 95043 port 14 95043 unique_id port 95043 remote_ip 10.8.0.46 95049 username alihosseini 95049 mac 95049 bytes_out 40617 95049 bytes_in 119747 95049 station_ip 5.120.109.119 95049 port 14 95049 unique_id port 95049 remote_ip 10.8.0.46 95051 username alireza1 95051 unique_id port 95051 terminate_cause User-Request 95051 bytes_out 246150 95051 bytes_in 650858 95051 station_ip 5.119.67.17 95051 port 15728853 95051 nas_port_type Virtual 95051 remote_ip 5.5.5.169 188703 remote_ip 10.8.0.250 188709 username zahra1101 95010 username alihosseini 95010 mac 95010 bytes_out 0 95010 bytes_in 0 95010 station_ip 5.120.109.119 95010 port 17 95010 unique_id port 95010 remote_ip 10.8.0.46 95013 username aminvpn 95013 mac 95013 bytes_out 0 95013 bytes_in 0 95013 station_ip 83.122.204.2 95013 port 8 95013 unique_id port 95013 remote_ip 10.8.0.6 95018 username alihosseini 95018 mac 95018 bytes_out 60534 95018 bytes_in 527351 95018 station_ip 5.120.109.119 95018 port 17 95018 unique_id port 95018 remote_ip 10.8.0.46 95021 username hoorieh 95021 mac 95021 bytes_out 401099 95021 bytes_in 3342407 95021 station_ip 5.119.201.24 95021 port 16 95021 unique_id port 95021 remote_ip 10.8.0.78 95024 username mohammadi 95024 mac 95024 bytes_out 0 95024 bytes_in 0 95024 station_ip 113.203.117.11 95024 port 16 95024 unique_id port 95024 remote_ip 10.8.0.62 95025 username alihosseini 95025 mac 95025 bytes_out 0 95025 bytes_in 0 95025 station_ip 5.120.109.119 95025 port 13 95025 unique_id port 95025 remote_ip 10.8.1.34 95029 username mohammadmahdi 95029 kill_reason Another user logged on this global unique id 95029 mac 95029 bytes_out 0 95029 bytes_in 0 95029 station_ip 5.120.9.190 95029 port 18 95029 unique_id port 95031 username mehdizare 95031 kill_reason Another user logged on this global unique id 95031 mac 95031 bytes_out 0 95031 bytes_in 0 95031 station_ip 5.119.239.98 95031 port 16 95031 unique_id port 95031 remote_ip 10.8.0.70 95038 username mohammadmahdi 95038 kill_reason Another user logged on this global unique id 95038 mac 95038 bytes_out 0 95038 bytes_in 0 95038 station_ip 5.120.9.190 95038 port 18 95038 unique_id port 95041 username alihosseini 95041 mac 95041 bytes_out 0 95041 bytes_in 0 95041 station_ip 5.120.109.119 95041 port 13 95041 unique_id port 95041 remote_ip 10.8.1.34 95042 username alihosseini 95042 mac 95042 bytes_out 0 95042 bytes_in 0 95042 station_ip 5.120.109.119 95042 port 14 95042 unique_id port 95042 remote_ip 10.8.0.46 95044 username alinezhad 95044 unique_id port 95044 terminate_cause User-Request 95044 bytes_out 0 95044 bytes_in 0 95044 station_ip 5.202.11.47 95044 port 15728851 95044 nas_port_type Virtual 95044 remote_ip 5.5.5.208 95045 username aminvpn 95045 mac 95045 bytes_out 0 95045 bytes_in 0 95045 station_ip 83.122.204.2 95045 port 8 95045 unique_id port 95046 username aminvpn 95046 mac 95046 bytes_out 51508 95046 bytes_in 72529 95046 station_ip 83.122.204.2 95046 port 14 95046 unique_id port 95046 remote_ip 10.8.0.6 95047 username hoorieh 95047 mac 95047 bytes_out 0 95047 bytes_in 0 95047 station_ip 5.119.201.24 95047 port 17 95047 unique_id port 95047 remote_ip 10.8.0.78 95048 username shahrooz 95048 unique_id port 95048 terminate_cause User-Request 95048 bytes_out 6699 95048 bytes_in 26558 95048 station_ip 113.203.11.139 95048 port 15728852 95048 nas_port_type Virtual 95048 remote_ip 5.5.5.151 95050 username alihosseini 95050 mac 95050 bytes_out 0 95050 bytes_in 0 95050 station_ip 5.120.109.119 95050 port 14 95050 unique_id port 95050 remote_ip 10.8.0.46 95052 username mahdiyehalizadeh 95052 mac 95052 bytes_out 0 95052 bytes_in 0 95052 station_ip 83.122.96.196 95052 port 13 95052 unique_id port 95052 remote_ip 10.8.1.62 95055 username mohammadmahdi 95055 mac 95055 bytes_out 1127954 95055 bytes_in 7529487 95055 station_ip 5.120.9.190 95022 remote_ip 5.5.5.208 95026 username mehdizare 95026 mac 95026 bytes_out 229377 95026 bytes_in 155065 95026 station_ip 5.119.239.98 95026 port 14 95026 unique_id port 95026 remote_ip 10.8.0.70 95028 username mohammadi 95028 mac 95028 bytes_out 0 95028 bytes_in 0 95028 station_ip 113.203.117.11 95028 port 17 95028 unique_id port 95028 remote_ip 10.8.0.62 95030 username mohammadmahdi 95030 kill_reason Another user logged on this global unique id 95030 mac 95030 bytes_out 0 95030 bytes_in 0 95030 station_ip 5.120.9.190 95030 port 18 95030 unique_id port 95032 username shokokian 95032 unique_id port 95032 terminate_cause User-Request 95032 bytes_out 335610 95032 bytes_in 5024402 95032 station_ip 31.56.155.85 95032 port 15728848 95032 nas_port_type Virtual 95032 remote_ip 5.5.5.154 95034 username mehdizare 95034 mac 95034 bytes_out 0 95034 bytes_in 0 95034 station_ip 5.119.239.98 95034 port 16 95034 unique_id port 95035 username amirhosein 95035 unique_id port 95035 terminate_cause User-Request 95035 bytes_out 2891278 95035 bytes_in 100370205 95035 station_ip 86.57.106.73 95035 port 15728847 95035 nas_port_type Virtual 95035 remote_ip 5.5.5.155 95053 username alihosseini 95053 mac 95053 bytes_out 0 95053 bytes_in 0 95053 station_ip 5.120.109.119 95053 port 13 95053 unique_id port 95053 remote_ip 10.8.1.34 95056 username alihosseini 95056 mac 95056 bytes_out 0 95056 bytes_in 0 95056 station_ip 5.120.109.119 95056 port 13 95056 unique_id port 95056 remote_ip 10.8.1.34 95060 username mohammadmahdi 95060 mac 95060 bytes_out 173044 95060 bytes_in 458829 95060 station_ip 5.120.9.190 95060 port 18 95060 unique_id port 95060 remote_ip 10.8.0.82 95062 username alihosseini 95062 kill_reason Maximum check online fails reached 95062 mac 95062 bytes_out 0 95062 bytes_in 0 95062 station_ip 5.120.109.119 95062 port 13 95062 unique_id port 95063 username alihosseini 95063 mac 95063 bytes_out 0 95063 bytes_in 0 95063 station_ip 5.120.109.119 95063 port 17 95063 unique_id port 95063 remote_ip 10.8.0.46 95067 username ahmadipour 95067 unique_id port 95067 terminate_cause Lost-Carrier 95067 bytes_out 25699 95067 bytes_in 259146 95067 station_ip 83.122.240.31 95067 port 15728861 95067 nas_port_type Virtual 95067 remote_ip 5.5.5.146 95069 username alihosseini 95069 mac 95069 bytes_out 0 95069 bytes_in 0 95069 station_ip 5.120.109.119 95069 port 17 95069 unique_id port 95069 remote_ip 10.8.0.46 95071 username mahdiyehalizadeh 95071 kill_reason Another user logged on this global unique id 95071 mac 95071 bytes_out 0 95071 bytes_in 0 95071 station_ip 83.122.96.196 95071 port 14 95071 unique_id port 95071 remote_ip 10.8.0.90 95073 username jamali 95073 kill_reason Another user logged on this global unique id 95073 mac 95073 bytes_out 0 95073 bytes_in 0 95073 station_ip 83.123.29.173 95073 port 12 95073 unique_id port 95073 remote_ip 10.8.0.50 95075 username alihosseini 95075 mac 95075 bytes_out 0 95075 bytes_in 0 95075 station_ip 5.120.109.119 95075 port 17 95075 unique_id port 95075 remote_ip 10.8.0.46 95077 username alihosseini 95077 mac 95077 bytes_out 0 95077 bytes_in 0 95077 station_ip 5.120.109.119 95077 port 17 95077 unique_id port 95077 remote_ip 10.8.0.46 95078 username aminvpn 95078 mac 95078 bytes_out 0 95078 bytes_in 0 95078 station_ip 83.122.204.2 95078 port 8 95078 unique_id port 95078 remote_ip 10.8.0.6 95094 username jamali 95119 username morteza 95054 username alinezhad 95054 unique_id port 95054 terminate_cause User-Request 95054 bytes_out 0 95054 bytes_in 0 95054 station_ip 83.122.229.71 95054 port 15728855 95054 nas_port_type Virtual 95054 remote_ip 5.5.5.150 95059 username forozande 95059 unique_id port 95059 terminate_cause User-Request 95059 bytes_out 356998 95059 bytes_in 2433539 95059 station_ip 37.129.40.206 95059 port 15728857 95059 nas_port_type Virtual 95059 remote_ip 5.5.5.149 95065 username ahmadipour 95065 unique_id port 95065 terminate_cause Lost-Carrier 95065 bytes_out 440287 95065 bytes_in 9636295 95065 station_ip 83.122.240.31 95065 port 15728859 95065 nas_port_type Virtual 95065 remote_ip 5.5.5.147 95068 username alihosseini 95068 mac 95068 bytes_out 0 95068 bytes_in 0 95068 station_ip 5.120.109.119 95068 port 17 95068 unique_id port 95068 remote_ip 10.8.0.46 95076 username alinezhad 95076 unique_id port 95076 terminate_cause User-Request 95076 bytes_out 55328 95076 bytes_in 169737 95076 station_ip 113.203.99.214 95076 port 15728864 95076 nas_port_type Virtual 95076 remote_ip 5.5.5.145 95079 username mammad 95079 unique_id port 95079 terminate_cause User-Request 95079 bytes_out 5071640 95079 bytes_in 139097999 95079 station_ip 5.233.64.73 95079 port 15728856 95079 nas_port_type Virtual 95079 remote_ip 5.5.5.222 95080 username alihosseini 95080 mac 95080 bytes_out 0 95080 bytes_in 0 95080 station_ip 5.120.109.119 95080 port 15 95080 unique_id port 95080 remote_ip 10.8.1.34 95081 username alihosseini 95081 mac 95081 bytes_out 0 95081 bytes_in 0 95081 station_ip 5.120.109.119 95081 port 15 95081 unique_id port 95081 remote_ip 10.8.1.34 95082 username alihosseini 95082 mac 95082 bytes_out 0 95082 bytes_in 0 95082 station_ip 5.120.109.119 95082 port 8 95082 unique_id port 95082 remote_ip 10.8.0.46 95083 username alihosseini 95083 mac 95083 bytes_out 0 95083 bytes_in 0 95083 station_ip 5.120.109.119 95083 port 8 95083 unique_id port 95083 remote_ip 10.8.0.46 95085 username mahdiyehalizadeh 95085 mac 95085 bytes_out 0 95085 bytes_in 0 95085 station_ip 83.122.96.196 95085 port 14 95085 unique_id port 95086 username alihosseini 95086 mac 95086 bytes_out 0 95086 bytes_in 0 95086 station_ip 5.120.109.119 95086 port 8 95086 unique_id port 95086 remote_ip 10.8.0.46 95087 username jamali 95087 kill_reason Another user logged on this global unique id 95087 mac 95087 bytes_out 0 95087 bytes_in 0 95087 station_ip 83.123.29.173 95087 port 12 95087 unique_id port 95088 username mammad 95088 unique_id port 95088 terminate_cause User-Request 95088 bytes_out 1831045 95088 bytes_in 8775254 95088 station_ip 5.233.64.73 95088 port 15728865 95088 nas_port_type Virtual 95088 remote_ip 5.5.5.222 95090 username alihosseini 95090 mac 95090 bytes_out 0 95090 bytes_in 0 95090 station_ip 5.120.109.119 95090 port 8 95090 unique_id port 95090 remote_ip 10.8.0.46 95108 username jamali 95108 kill_reason Another user logged on this global unique id 95108 mac 95108 bytes_out 0 95108 bytes_in 0 95108 station_ip 83.123.29.173 95108 port 12 95108 unique_id port 95109 username mehdizare 95109 mac 95109 bytes_out 0 95109 bytes_in 0 95109 station_ip 5.119.239.98 95109 port 16 95109 unique_id port 188704 station_ip 5.120.128.95 188704 port 317 188704 unique_id port 188704 remote_ip 10.8.0.250 188705 username sekonji0496 188705 mac 188705 bytes_out 0 188705 bytes_in 0 188705 station_ip 83.123.0.241 188705 port 317 95055 port 17 95055 unique_id port 95055 remote_ip 10.8.0.82 95057 username heydari1 95057 unique_id port 95057 terminate_cause User-Request 95057 bytes_out 565761 95057 bytes_in 2740808 95057 station_ip 5.120.151.112 95057 port 15728841 95057 nas_port_type Virtual 95057 remote_ip 5.5.5.171 95058 username aminvpn 95058 mac 95058 bytes_out 4336630 95058 bytes_in 37104302 95058 station_ip 83.122.204.2 95058 port 8 95058 unique_id port 95058 remote_ip 10.8.0.6 95061 username alihosseini 95061 mac 95061 bytes_out 0 95061 bytes_in 0 95061 station_ip 5.120.109.119 95061 port 17 95061 unique_id port 95061 remote_ip 10.8.0.46 95064 username alihosseini 95064 mac 95064 bytes_out 0 95064 bytes_in 0 95064 station_ip 5.120.109.119 95064 port 17 95064 unique_id port 95064 remote_ip 10.8.0.46 95066 username alihosseini 95066 mac 95066 bytes_out 0 95066 bytes_in 0 95066 station_ip 5.120.109.119 95066 port 17 95066 unique_id port 95066 remote_ip 10.8.0.46 95070 username mehdizare 95070 kill_reason Another user logged on this global unique id 95070 mac 95070 bytes_out 0 95070 bytes_in 0 95070 station_ip 5.119.239.98 95070 port 16 95070 unique_id port 95070 remote_ip 10.8.0.70 95072 username mahbobeh 95072 unique_id port 95072 terminate_cause Lost-Carrier 95072 bytes_out 5812968 95072 bytes_in 96381535 95072 station_ip 83.123.8.209 95072 port 15728838 95072 nas_port_type Virtual 95072 remote_ip 5.5.5.157 95074 username alinezhad 95074 unique_id port 95074 terminate_cause User-Request 95074 bytes_out 205689 95074 bytes_in 1175175 95074 station_ip 113.203.99.214 95074 port 15728863 95074 nas_port_type Virtual 95074 remote_ip 5.5.5.145 95084 username jamali 95084 kill_reason Another user logged on this global unique id 95084 mac 95084 bytes_out 0 95084 bytes_in 0 95084 station_ip 83.123.29.173 95084 port 12 95084 unique_id port 95089 username jamali 95089 kill_reason Another user logged on this global unique id 95089 mac 95089 bytes_out 0 95089 bytes_in 0 95089 station_ip 83.123.29.173 95089 port 12 95089 unique_id port 95091 username alihosseini 95091 mac 95091 bytes_out 0 95091 bytes_in 0 95091 station_ip 5.120.109.119 95091 port 8 95091 unique_id port 95091 remote_ip 10.8.0.46 95092 username jamali 95092 kill_reason Another user logged on this global unique id 95092 mac 95092 bytes_out 0 95092 bytes_in 0 95092 station_ip 83.123.29.173 95092 port 12 95092 unique_id port 95093 username alihosseini 95093 mac 95093 bytes_out 32115 95093 bytes_in 163363 95093 station_ip 5.120.109.119 95093 port 8 95093 unique_id port 95093 remote_ip 10.8.0.46 95095 username mammad 95095 unique_id port 95095 terminate_cause User-Request 95095 bytes_out 1549965 95095 bytes_in 31697949 95095 station_ip 5.233.64.73 95095 port 15728868 95095 nas_port_type Virtual 95095 remote_ip 5.5.5.222 95097 username jamali 95097 kill_reason Another user logged on this global unique id 95097 mac 95097 bytes_out 0 95097 bytes_in 0 95097 station_ip 83.123.29.173 95097 port 12 95097 unique_id port 95099 username jamali 95099 kill_reason Another user logged on this global unique id 95099 mac 95099 bytes_out 0 95099 bytes_in 0 95099 station_ip 83.123.29.173 95099 port 12 95099 unique_id port 95101 username aminvpn 95101 unique_id port 95101 terminate_cause Lost-Carrier 95101 bytes_out 5631479 95101 bytes_in 17969735 95101 station_ip 5.119.152.134 95101 port 15728858 95101 nas_port_type Virtual 95101 remote_ip 5.5.5.148 95102 username aminvpn 95102 unique_id port 95094 kill_reason Another user logged on this global unique id 95094 mac 95094 bytes_out 0 95094 bytes_in 0 95094 station_ip 83.123.29.173 95094 port 12 95094 unique_id port 95096 username morteza 95096 mac 95096 bytes_out 169985 95096 bytes_in 2105467 95096 station_ip 83.122.12.11 95096 port 8 95096 unique_id port 95096 remote_ip 10.8.0.42 95098 username madadi2 95098 unique_id port 95098 terminate_cause Lost-Carrier 95098 bytes_out 1282948 95098 bytes_in 9741622 95098 station_ip 5.120.160.20 95098 port 15728867 95098 nas_port_type Virtual 95098 remote_ip 5.5.5.144 95100 username aminvpn 95100 unique_id port 95100 terminate_cause User-Request 95100 bytes_out 518168 95100 bytes_in 11587122 95100 station_ip 5.119.147.138 95100 port 15728869 95100 nas_port_type Virtual 95100 remote_ip 5.5.5.143 95104 username aminvpn 95104 unique_id port 95104 terminate_cause Lost-Carrier 95104 bytes_out 303685 95104 bytes_in 3387441 95104 station_ip 5.120.47.140 95104 port 15728871 95104 nas_port_type Virtual 95104 remote_ip 5.5.5.141 95107 username alihosseini 95107 kill_reason Another user logged on this global unique id 95107 mac 95107 bytes_out 0 95107 bytes_in 0 95107 station_ip 5.119.4.115 95107 port 8 95107 unique_id port 95110 username alihosseini 95110 kill_reason Another user logged on this global unique id 95110 mac 95110 bytes_out 0 95110 bytes_in 0 95110 station_ip 5.119.4.115 95110 port 8 95110 unique_id port 95113 username alihosseini 95113 kill_reason Another user logged on this global unique id 95113 mac 95113 bytes_out 0 95113 bytes_in 0 95113 station_ip 5.119.4.115 95113 port 8 95113 unique_id port 95114 username mahdixz 95114 unique_id port 95114 terminate_cause Lost-Carrier 95114 bytes_out 3044006 95114 bytes_in 40861007 95114 station_ip 151.235.122.123 95114 port 15728872 95114 nas_port_type Virtual 95114 remote_ip 5.5.5.163 95119 mac 95119 bytes_out 1157856 95119 bytes_in 18572318 95119 station_ip 83.122.59.207 95119 port 12 95119 unique_id port 95119 remote_ip 10.8.0.42 95120 username morteza 95120 mac 95120 bytes_out 0 95120 bytes_in 0 95120 station_ip 83.122.59.207 95120 port 12 95120 unique_id port 95120 remote_ip 10.8.0.42 95122 username mahbobeh 95122 unique_id port 95122 terminate_cause Lost-Carrier 95122 bytes_out 3248937 95122 bytes_in 67506761 95122 station_ip 37.129.193.0 95122 port 15728874 95122 nas_port_type Virtual 95122 remote_ip 5.5.5.140 95124 username morteza 95124 mac 95124 bytes_out 0 95124 bytes_in 0 95124 station_ip 83.123.55.159 95124 port 8 95124 unique_id port 95124 remote_ip 10.8.0.42 95132 username morteza 95132 mac 95132 bytes_out 553792 95132 bytes_in 9965038 95132 station_ip 83.123.19.91 95132 port 12 95132 unique_id port 95132 remote_ip 10.8.0.42 95137 username mohammadi 95137 mac 95137 bytes_out 145793 95137 bytes_in 1122152 95137 station_ip 113.203.109.11 95137 port 17 95137 unique_id port 95137 remote_ip 10.8.0.62 95141 username jamali 95141 kill_reason Another user logged on this global unique id 95141 mac 95141 bytes_out 0 95141 bytes_in 0 95141 station_ip 83.123.29.173 95141 port 8 95141 unique_id port 95141 remote_ip 10.8.0.50 95142 username forozande 95142 unique_id port 95142 terminate_cause User-Request 95142 bytes_out 45725 95142 bytes_in 478792 95142 station_ip 83.123.159.3 95142 port 15728645 95142 nas_port_type Virtual 95142 remote_ip 5.5.5.255 95145 username forozande 95145 unique_id port 95145 terminate_cause User-Request 95145 bytes_out 193177 95145 bytes_in 5825723 95102 terminate_cause Lost-Carrier 95102 bytes_out 15862 95102 bytes_in 355911 95102 station_ip 5.120.152.42 95102 port 15728870 95102 nas_port_type Virtual 95102 remote_ip 5.5.5.142 95103 username aminvpn 95103 mac 95103 bytes_out 4484514 95103 bytes_in 16631781 95103 station_ip 83.122.204.2 95103 port 17 95103 unique_id port 95103 remote_ip 10.8.0.6 95105 username alireza1 95105 unique_id port 95105 terminate_cause Lost-Carrier 95105 bytes_out 7282735 95105 bytes_in 21284622 95105 station_ip 5.119.67.17 95105 port 15728854 95105 nas_port_type Virtual 95105 remote_ip 5.5.5.169 95106 username alihosseini 95106 kill_reason Another user logged on this global unique id 95106 mac 95106 bytes_out 0 95106 bytes_in 0 95106 station_ip 5.119.4.115 95106 port 8 95106 unique_id port 95106 remote_ip 10.8.0.46 95112 username alihosseini 95112 kill_reason Another user logged on this global unique id 95112 mac 95112 bytes_out 0 95112 bytes_in 0 95112 station_ip 5.119.4.115 95112 port 8 95112 unique_id port 95115 username aminvpn 95115 mac 95115 bytes_out 0 95115 bytes_in 0 95115 station_ip 83.122.223.206 95115 port 14 95115 unique_id port 95115 remote_ip 10.8.0.6 95116 username alihosseini 95116 mac 95116 bytes_out 0 95116 bytes_in 0 95116 station_ip 5.119.4.115 95116 port 8 95116 unique_id port 95117 username jamali 95117 mac 95117 bytes_out 0 95117 bytes_in 0 95117 station_ip 83.123.29.173 95117 port 12 95117 unique_id port 95121 username morteza 95121 mac 95121 bytes_out 0 95121 bytes_in 0 95121 station_ip 83.122.59.207 95121 port 12 95121 unique_id port 95121 remote_ip 10.8.0.42 95126 username alinezhad 95126 unique_id port 95126 terminate_cause User-Request 95126 bytes_out 107172 95126 bytes_in 142160 95126 station_ip 83.122.248.225 95126 port 15728875 95126 nas_port_type Virtual 95126 remote_ip 5.5.5.139 95127 username Alirezaza 95127 unique_id port 95127 terminate_cause Lost-Carrier 95127 bytes_out 25843937 95127 bytes_in 521849894 95127 station_ip 5.119.95.136 95127 port 15728837 95127 nas_port_type Virtual 95127 remote_ip 5.5.5.158 95128 username caferibar 95128 kill_reason Relative expiration date has reached 95128 unique_id port 95128 bytes_out 0 95128 bytes_in 0 95128 station_ip 5.200.100.231 95128 port 15728877 95128 nas_port_type Virtual 95129 username caferibar 95129 kill_reason Relative expiration date has reached 95129 unique_id port 95129 bytes_out 0 95129 bytes_in 0 95129 station_ip 5.200.100.231 95129 port 15728878 95129 nas_port_type Virtual 95134 username morteza 95134 mac 95134 bytes_out 27615 95134 bytes_in 58720 95134 station_ip 83.123.19.91 95134 port 14 95134 unique_id port 95134 remote_ip 10.8.0.42 95135 username mohammadi 95135 mac 95135 bytes_out 1120631 95135 bytes_in 10023718 95135 station_ip 113.203.109.11 95135 port 12 95135 unique_id port 95135 remote_ip 10.8.0.62 95136 username aminvpn 95136 mac 95136 bytes_out 428315 95136 bytes_in 1728408 95136 station_ip 83.122.249.2 95136 port 16 95136 unique_id port 95136 remote_ip 10.8.0.6 95139 username forozande 95139 unique_id port 95139 terminate_cause User-Request 95139 bytes_out 50237 95139 bytes_in 459293 95139 station_ip 83.123.159.3 95139 port 15728641 95139 nas_port_type Virtual 95139 remote_ip 5.5.5.255 95149 username forozande 95149 unique_id port 95149 terminate_cause User-Request 95149 bytes_out 48374 95149 bytes_in 1162944 95149 station_ip 83.123.159.3 95149 port 15728653 95149 nas_port_type Virtual 95149 remote_ip 5.5.5.255 95160 username mahdiyehalizadeh 95118 username mahdixz 95118 unique_id port 95118 terminate_cause Lost-Carrier 95118 bytes_out 112833 95118 bytes_in 1716643 95118 station_ip 151.235.122.123 95118 port 15728873 95118 nas_port_type Virtual 95118 remote_ip 5.5.5.163 95123 username jamali 95123 mac 95123 bytes_out 0 95123 bytes_in 0 95123 station_ip 83.123.29.173 95123 port 8 95123 unique_id port 95123 remote_ip 10.8.0.50 95125 username jamali 95125 mac 95125 bytes_out 0 95125 bytes_in 0 95125 station_ip 83.123.29.173 95125 port 12 95125 unique_id port 95125 remote_ip 10.8.0.50 95130 username caferibar 95130 kill_reason Relative expiration date has reached 95130 unique_id port 95130 bytes_out 0 95130 bytes_in 0 95130 station_ip 37.156.59.63 95130 port 15728879 95130 nas_port_type Virtual 95131 username caferibar 95131 kill_reason Relative expiration date has reached 95131 unique_id port 95131 bytes_out 0 95131 bytes_in 0 95131 station_ip 37.156.59.63 95131 port 15728880 95131 nas_port_type Virtual 95133 username mahbobeh 95133 unique_id port 95133 terminate_cause Admin-Reboot 95133 bytes_out 656550 95133 bytes_in 12177999 95133 station_ip 37.129.193.0 95133 port 15728876 95133 nas_port_type Virtual 95133 remote_ip 5.5.5.140 95138 username forozande 95138 unique_id port 95138 terminate_cause User-Request 95138 bytes_out 0 95138 bytes_in 0 95138 station_ip 83.123.159.3 95138 port 15728640 95138 nas_port_type Virtual 95138 remote_ip 5.5.5.255 95140 username forozande 95140 unique_id port 95140 terminate_cause User-Request 95140 bytes_out 15152 95140 bytes_in 148595 95140 station_ip 83.123.159.3 95140 port 15728643 95140 nas_port_type Virtual 95140 remote_ip 5.5.5.255 95143 username forozande 95143 unique_id port 95143 terminate_cause User-Request 95143 bytes_out 67605 95143 bytes_in 1189306 95143 station_ip 83.123.159.3 95143 port 15728646 95143 nas_port_type Virtual 95143 remote_ip 5.5.5.255 95144 username forozande 95144 unique_id port 95144 terminate_cause User-Request 95144 bytes_out 23549 95144 bytes_in 246211 95144 station_ip 83.123.159.3 95144 port 15728647 95144 nas_port_type Virtual 95144 remote_ip 5.5.5.255 95146 username mirzaei 95146 kill_reason Another user logged on this global unique id 95146 mac 95146 bytes_out 0 95146 bytes_in 0 95146 station_ip 5.119.135.251 95146 port 11 95146 unique_id port 95147 username forozande 95147 unique_id port 95147 terminate_cause User-Request 95147 bytes_out 277255 95147 bytes_in 9740882 95147 station_ip 83.123.159.3 95147 port 15728650 95147 nas_port_type Virtual 95147 remote_ip 5.5.5.255 95152 username madadi2 95152 unique_id port 95152 terminate_cause Lost-Carrier 95152 bytes_out 160930 95152 bytes_in 503255 95152 station_ip 5.119.28.228 95152 port 15728649 95152 nas_port_type Virtual 95152 remote_ip 5.5.5.252 95153 username mohammadi 95153 mac 95153 bytes_out 211688 95153 bytes_in 1149865 95153 station_ip 113.203.109.11 95153 port 8 95153 unique_id port 95153 remote_ip 10.8.0.62 95154 username aminvpn 95154 kill_reason Another user logged on this global unique id 95154 mac 95154 bytes_out 0 95154 bytes_in 0 95154 station_ip 5.119.18.104 95154 port 16 95154 unique_id port 95154 remote_ip 10.8.0.6 95155 username mahdiyehalizadeh 95155 kill_reason Another user logged on this global unique id 95155 mac 95155 bytes_out 0 95155 bytes_in 0 95155 station_ip 83.123.124.165 95155 port 8 95155 unique_id port 95155 remote_ip 10.8.0.90 95157 username forozande 95157 unique_id port 95157 terminate_cause User-Request 95157 bytes_out 21811 95157 bytes_in 243331 95157 station_ip 83.122.102.126 95157 port 15728655 95145 station_ip 83.123.159.3 95145 port 15728648 95145 nas_port_type Virtual 95145 remote_ip 5.5.5.255 95148 username forozande 95148 unique_id port 95148 terminate_cause User-Request 95148 bytes_out 20816 95148 bytes_in 301765 95148 station_ip 83.123.159.3 95148 port 15728652 95148 nas_port_type Virtual 95148 remote_ip 5.5.5.255 95150 username aminvpn 95150 mac 95150 bytes_out 84190 95150 bytes_in 289244 95150 station_ip 5.119.18.104 95150 port 12 95150 unique_id port 95150 remote_ip 10.8.0.6 95151 username jamali 95151 mac 95151 bytes_out 0 95151 bytes_in 0 95151 station_ip 83.123.29.173 95151 port 8 95151 unique_id port 95156 username forozande 95156 unique_id port 95156 terminate_cause User-Request 95156 bytes_out 33567 95156 bytes_in 257317 95156 station_ip 83.122.102.126 95156 port 15728654 95156 nas_port_type Virtual 95156 remote_ip 5.5.5.251 95158 username forozande 95158 unique_id port 95158 terminate_cause User-Request 95158 bytes_out 59095 95158 bytes_in 1368546 95158 station_ip 83.122.102.126 95158 port 15728657 95158 nas_port_type Virtual 95158 remote_ip 5.5.5.251 95161 username mahdiyehalizadeh 95161 mac 95161 bytes_out 0 95161 bytes_in 0 95161 station_ip 83.123.124.165 95161 port 8 95161 unique_id port 95162 username alinezhad 95162 unique_id port 95162 terminate_cause Lost-Carrier 95162 bytes_out 130136 95162 bytes_in 1873737 95162 station_ip 5.202.59.29 95162 port 15728644 95162 nas_port_type Virtual 95162 remote_ip 5.5.5.253 95164 username forozande 95164 unique_id port 95164 terminate_cause User-Request 95164 bytes_out 24687 95164 bytes_in 54912 95164 station_ip 83.123.36.92 95164 port 15728658 95164 nas_port_type Virtual 95164 remote_ip 5.5.5.249 95167 username Alirezaza 95167 unique_id port 95167 terminate_cause User-Request 95167 bytes_out 969231 95167 bytes_in 8718590 95167 station_ip 5.119.95.136 95167 port 15728656 95167 nas_port_type Virtual 95167 remote_ip 5.5.5.250 95168 username mahdiyehalizadeh 95168 mac 95168 bytes_out 0 95168 bytes_in 0 95168 station_ip 83.123.124.165 95168 port 8 95168 unique_id port 95176 username alihosseini 95176 mac 95176 bytes_out 3128712 95176 bytes_in 39908024 95176 station_ip 5.119.49.42 95176 port 17 95176 unique_id port 95176 remote_ip 10.8.0.46 95178 username heydari1 95178 unique_id port 95178 terminate_cause Lost-Carrier 95178 bytes_out 52466 95178 bytes_in 271945 95178 station_ip 5.120.151.112 95178 port 15728662 95178 nas_port_type Virtual 95178 remote_ip 5.5.5.245 95181 username forozande 95181 unique_id port 95181 terminate_cause User-Request 95181 bytes_out 173868 95181 bytes_in 439748 95181 station_ip 83.122.199.75 95181 port 15728665 95181 nas_port_type Virtual 95181 remote_ip 5.5.5.242 95192 username aminvpn 95192 kill_reason Another user logged on this global unique id 95192 mac 95192 bytes_out 0 95192 bytes_in 0 95192 station_ip 37.129.65.155 95192 port 16 95192 unique_id port 95192 remote_ip 10.8.1.6 95193 username forozande 95193 unique_id port 95193 terminate_cause User-Request 95193 bytes_out 33963 95193 bytes_in 355068 95193 station_ip 83.122.199.75 95193 port 15728668 95193 nas_port_type Virtual 95193 remote_ip 5.5.5.242 95194 username mammad 95194 unique_id port 95194 terminate_cause User-Request 95194 bytes_out 1437709 95194 bytes_in 14635589 95194 station_ip 5.233.64.73 95194 port 15728664 95194 nas_port_type Virtual 95194 remote_ip 5.5.5.243 95196 username aminvpn 95196 mac 95196 bytes_out 0 95196 bytes_in 0 95196 station_ip 5.119.18.104 95196 port 17 95196 unique_id port 95157 nas_port_type Virtual 95157 remote_ip 5.5.5.251 95159 username aminvpn 95159 kill_reason Another user logged on this global unique id 95159 mac 95159 bytes_out 0 95159 bytes_in 0 95159 station_ip 5.119.18.104 95159 port 16 95159 unique_id port 95165 username aminvpn 95165 mac 95165 bytes_out 0 95165 bytes_in 0 95165 station_ip 5.119.18.104 95165 port 16 95165 unique_id port 95166 username mahdiyehalizadeh 95166 kill_reason Another user logged on this global unique id 95166 mac 95166 bytes_out 0 95166 bytes_in 0 95166 station_ip 83.123.124.165 95166 port 8 95166 unique_id port 95171 username forozande 95171 unique_id port 95171 terminate_cause User-Request 95171 bytes_out 101045 95171 bytes_in 528799 95171 station_ip 83.123.199.217 95171 port 15728660 95171 nas_port_type Virtual 95171 remote_ip 5.5.5.247 95173 username mohammadi 95173 mac 95173 bytes_out 293762 95173 bytes_in 657697 95173 station_ip 113.203.50.27 95173 port 8 95173 unique_id port 95173 remote_ip 10.8.0.62 95174 username alinezhad 95174 unique_id port 95174 terminate_cause User-Request 95174 bytes_out 13669 95174 bytes_in 33419 95174 station_ip 83.123.244.218 95174 port 15728661 95174 nas_port_type Virtual 95174 remote_ip 5.5.5.246 95177 username heydari1 95177 unique_id port 95177 terminate_cause User-Request 95177 bytes_out 18053 95177 bytes_in 35929 95177 station_ip 5.120.151.112 95177 port 15728663 95177 nas_port_type Virtual 95177 remote_ip 5.5.5.244 95179 username jamali 95179 mac 95179 bytes_out 122802 95179 bytes_in 252965 95179 station_ip 83.123.29.173 95179 port 15 95179 unique_id port 95179 remote_ip 10.8.1.42 95183 username morteza 95183 mac 95183 bytes_out 0 95183 bytes_in 0 95183 station_ip 113.203.23.176 95183 port 18 95183 unique_id port 95183 remote_ip 10.8.0.42 95184 username aminvpn 95184 mac 95184 bytes_out 2431131 95184 bytes_in 3803316 95184 station_ip 37.129.65.155 95184 port 17 95184 unique_id port 95184 remote_ip 10.8.0.6 95186 username mohammadmahdi 95186 mac 95186 bytes_out 92976 95186 bytes_in 115010 95186 station_ip 5.119.128.239 95186 port 16 95186 unique_id port 95186 remote_ip 10.8.0.82 95189 username forozande 95189 unique_id port 95189 terminate_cause User-Request 95189 bytes_out 55993 95189 bytes_in 960986 95189 station_ip 83.122.199.75 95189 port 15728667 95189 nas_port_type Virtual 95189 remote_ip 5.5.5.242 95191 username aminvpn 95191 mac 95191 bytes_out 291626 95191 bytes_in 504998 95191 station_ip 37.129.65.155 95191 port 16 95191 unique_id port 95191 remote_ip 10.8.0.6 95195 username aminvpn 95195 mac 95195 bytes_out 0 95195 bytes_in 0 95195 station_ip 113.203.70.30 95195 port 16 95195 unique_id port 95195 remote_ip 10.8.0.6 95200 username aminvpn 95200 mac 95200 bytes_out 0 95200 bytes_in 0 95200 station_ip 113.203.70.30 95200 port 16 95200 unique_id port 95200 remote_ip 10.8.0.6 95203 username aminvpn 95203 mac 95203 bytes_out 0 95203 bytes_in 0 95203 station_ip 5.119.18.104 95203 port 12 95203 unique_id port 95203 remote_ip 10.8.0.6 95206 username aminvpn 95206 mac 95206 bytes_out 0 95206 bytes_in 0 95206 station_ip 5.119.18.104 95206 port 12 95206 unique_id port 95206 remote_ip 10.8.0.6 95210 username aminvpn 95210 mac 95210 bytes_out 0 95210 bytes_in 0 95210 station_ip 113.203.70.30 95210 port 16 95210 unique_id port 95210 remote_ip 10.8.0.6 95211 username aminvpn 95211 mac 95211 bytes_out 0 95160 kill_reason Another user logged on this global unique id 95160 mac 95160 bytes_out 0 95160 bytes_in 0 95160 station_ip 83.123.124.165 95160 port 8 95160 unique_id port 95163 username mahdiyehalizadeh 95163 kill_reason Another user logged on this global unique id 95163 mac 95163 bytes_out 0 95163 bytes_in 0 95163 station_ip 83.123.124.165 95163 port 8 95163 unique_id port 95163 remote_ip 10.8.0.90 95169 username aminvpn 95169 mac 95169 bytes_out 52894 95169 bytes_in 189541 95169 station_ip 83.122.214.248 95169 port 8 95169 unique_id port 95169 remote_ip 10.8.0.6 95170 username avaanna 95170 unique_id port 95170 terminate_cause User-Request 95170 bytes_out 131195 95170 bytes_in 1452250 95170 station_ip 83.122.96.78 95170 port 15728659 95170 nas_port_type Virtual 95170 remote_ip 5.5.5.248 95172 username jamali 95172 mac 95172 bytes_out 0 95172 bytes_in 0 95172 station_ip 83.123.29.173 95172 port 12 95172 unique_id port 95172 remote_ip 10.8.0.50 95175 username alireza1 95175 unique_id port 95175 terminate_cause User-Request 95175 bytes_out 1654381 95175 bytes_in 4799373 95175 station_ip 5.119.67.17 95175 port 15728642 95175 nas_port_type Virtual 95175 remote_ip 5.5.5.254 95180 username aminvpn 95180 mac 95180 bytes_out 0 95180 bytes_in 0 95180 station_ip 37.129.65.155 95180 port 17 95180 unique_id port 95180 remote_ip 10.8.0.6 95182 username mahdiyehalizadeh 95182 mac 95182 bytes_out 389694 95182 bytes_in 2812125 95182 station_ip 83.123.110.93 95182 port 16 95182 unique_id port 95182 remote_ip 10.8.0.90 95185 username forozande 95185 unique_id port 95185 terminate_cause User-Request 95185 bytes_out 57198 95185 bytes_in 928438 95185 station_ip 83.122.199.75 95185 port 15728666 95185 nas_port_type Virtual 95185 remote_ip 5.5.5.242 95187 username aminvpn 95187 mac 95187 bytes_out 141298 95187 bytes_in 209218 95187 station_ip 37.129.65.155 95187 port 17 95187 unique_id port 95187 remote_ip 10.8.0.6 95188 username mohammadmahdi 95188 mac 95188 bytes_out 135235 95188 bytes_in 246931 95188 station_ip 5.119.128.239 95188 port 18 95188 unique_id port 95188 remote_ip 10.8.0.82 95190 username mohammadi 95190 mac 95190 bytes_out 4662123 95190 bytes_in 13088633 95190 station_ip 113.203.50.27 95190 port 12 95190 unique_id port 95190 remote_ip 10.8.0.62 95198 username aminvpn 95198 mac 95198 bytes_out 0 95198 bytes_in 0 95198 station_ip 5.119.18.104 95198 port 17 95198 unique_id port 95198 remote_ip 10.8.0.6 95202 username aminvpn 95202 mac 95202 bytes_out 0 95202 bytes_in 0 95202 station_ip 113.203.70.30 95202 port 16 95202 unique_id port 95202 remote_ip 10.8.0.6 95205 username aminvpn 95205 mac 95205 bytes_out 0 95205 bytes_in 0 95205 station_ip 113.203.70.30 95205 port 16 95205 unique_id port 95205 remote_ip 10.8.0.6 95208 username aminvpn 95208 mac 95208 bytes_out 0 95208 bytes_in 0 95208 station_ip 113.203.70.30 95208 port 16 95208 unique_id port 95208 remote_ip 10.8.0.6 95209 username aminvpn 95209 mac 95209 bytes_out 0 95209 bytes_in 0 95209 station_ip 5.119.18.104 95209 port 12 95209 unique_id port 95209 remote_ip 10.8.0.6 95215 username forozande 95215 unique_id port 95215 terminate_cause User-Request 95215 bytes_out 38366 95215 bytes_in 246445 95215 station_ip 37.129.137.245 95215 port 15728670 95215 nas_port_type Virtual 95215 remote_ip 5.5.5.241 95218 username shokokian 95218 unique_id port 95218 terminate_cause User-Request 95196 remote_ip 10.8.0.6 95197 username aminvpn 95197 mac 95197 bytes_out 97363 95197 bytes_in 121323 95197 station_ip 113.203.70.30 95197 port 16 95197 unique_id port 95197 remote_ip 10.8.0.6 95199 username mohammadi 95199 mac 95199 bytes_out 0 95199 bytes_in 0 95199 station_ip 113.203.50.27 95199 port 12 95199 unique_id port 95199 remote_ip 10.8.0.62 95201 username aminvpn 95201 mac 95201 bytes_out 0 95201 bytes_in 0 95201 station_ip 5.119.18.104 95201 port 12 95201 unique_id port 95201 remote_ip 10.8.0.6 95204 username forozande 95204 unique_id port 95204 terminate_cause User-Request 95204 bytes_out 49279 95204 bytes_in 682786 95204 station_ip 37.129.137.245 95204 port 15728669 95204 nas_port_type Virtual 95204 remote_ip 5.5.5.241 95207 username mohammadi 95207 mac 95207 bytes_out 0 95207 bytes_in 0 95207 station_ip 113.203.50.27 95207 port 17 95207 unique_id port 95207 remote_ip 10.8.0.62 95212 username aminvpn 95212 mac 95212 bytes_out 0 95212 bytes_in 0 95212 station_ip 113.203.70.30 95212 port 16 95212 unique_id port 95212 remote_ip 10.8.0.6 95220 username mohammadi 95220 mac 95220 bytes_out 0 95220 bytes_in 0 95220 station_ip 113.203.50.27 95220 port 16 95220 unique_id port 95220 remote_ip 10.8.0.62 95223 username aminvpn 95223 mac 95223 bytes_out 85291 95223 bytes_in 94342 95223 station_ip 37.129.65.155 95223 port 16 95223 unique_id port 95223 remote_ip 10.8.1.6 95225 username jamali 95225 mac 95225 bytes_out 3135800 95225 bytes_in 36890299 95225 station_ip 83.123.29.173 95225 port 15 95225 unique_id port 95225 remote_ip 10.8.1.42 95226 username mohammadi 95226 mac 95226 bytes_out 1659557 95226 bytes_in 1531850 95226 station_ip 113.203.50.27 95226 port 12 95226 unique_id port 95226 remote_ip 10.8.0.62 95227 username mahyaarabpour 95227 mac 95227 bytes_out 0 95227 bytes_in 0 95227 station_ip 5.119.44.26 95227 port 16 95227 unique_id port 95227 remote_ip 10.8.0.54 95228 username alihosseini 95228 mac 95228 bytes_out 0 95228 bytes_in 0 95228 station_ip 5.119.85.241 95228 port 8 95228 unique_id port 95228 remote_ip 10.8.0.46 95232 username jamali 95232 mac 95232 bytes_out 163532 95232 bytes_in 357294 95232 station_ip 83.123.29.173 95232 port 15 95232 unique_id port 95232 remote_ip 10.8.1.42 95244 username alinezhad 95244 unique_id port 95244 terminate_cause User-Request 95244 bytes_out 126319 95244 bytes_in 939714 95244 station_ip 5.202.11.220 95244 port 15728681 95244 nas_port_type Virtual 95244 remote_ip 5.5.5.236 95245 username alihosseini 95245 mac 95245 bytes_out 0 95245 bytes_in 0 95245 station_ip 5.119.85.241 95245 port 12 95245 unique_id port 95245 remote_ip 10.8.0.46 95246 username mohammadi 95246 mac 95246 bytes_out 0 95246 bytes_in 0 95246 station_ip 113.203.76.7 95246 port 18 95246 unique_id port 95246 remote_ip 10.8.0.62 95247 username forozande 95247 unique_id port 95247 terminate_cause User-Request 95247 bytes_out 157790 95247 bytes_in 1123288 95247 station_ip 83.123.206.115 95247 port 15728682 95247 nas_port_type Virtual 95247 remote_ip 5.5.5.235 95249 username forozande 95249 unique_id port 95249 terminate_cause User-Request 95249 bytes_out 27490 95249 bytes_in 163677 95249 station_ip 37.129.181.219 95249 port 15728685 95249 nas_port_type Virtual 95249 remote_ip 5.5.5.232 95253 username mahdiyehalizadeh 95253 mac 95253 bytes_out 0 95253 bytes_in 0 95211 bytes_in 0 95211 station_ip 5.119.18.104 95211 port 12 95211 unique_id port 95211 remote_ip 10.8.0.6 95213 username aminvpn 95213 mac 95213 bytes_out 0 95213 bytes_in 0 95213 station_ip 5.119.18.104 95213 port 12 95213 unique_id port 95213 remote_ip 10.8.0.6 95214 username aminvpn 95214 mac 95214 bytes_out 135994 95214 bytes_in 162395 95214 station_ip 113.203.70.30 95214 port 16 95214 unique_id port 95214 remote_ip 10.8.0.6 95216 username forozande 95216 unique_id port 95216 terminate_cause User-Request 95216 bytes_out 22257 95216 bytes_in 116756 95216 station_ip 37.129.137.245 95216 port 15728672 95216 nas_port_type Virtual 95216 remote_ip 5.5.5.241 95217 username aminvpn 95217 mac 95217 bytes_out 0 95217 bytes_in 0 95217 station_ip 5.119.18.104 95217 port 12 95217 unique_id port 95217 remote_ip 10.8.0.6 95222 username mohammadi 95222 mac 95222 bytes_out 0 95222 bytes_in 0 95222 station_ip 113.203.50.27 95222 port 12 95222 unique_id port 95222 remote_ip 10.8.0.62 95224 username forozande 95224 unique_id port 95224 terminate_cause User-Request 95224 bytes_out 0 95224 bytes_in 0 95224 station_ip 83.123.112.236 95224 port 15728675 95224 nas_port_type Virtual 95224 remote_ip 5.5.5.238 95230 username mohammadi 95230 mac 95230 bytes_out 0 95230 bytes_in 0 95230 station_ip 113.203.50.27 95230 port 8 95230 unique_id port 95230 remote_ip 10.8.0.62 95234 username mahdiyehalizadeh 95234 mac 95234 bytes_out 2271361 95234 bytes_in 43323664 95234 station_ip 83.122.239.241 95234 port 8 95234 unique_id port 95234 remote_ip 10.8.0.90 95235 username jamali 95235 mac 95235 bytes_out 0 95235 bytes_in 0 95235 station_ip 83.123.29.173 95235 port 15 95235 unique_id port 95235 remote_ip 10.8.1.42 95236 username jamali 95236 mac 95236 bytes_out 0 95236 bytes_in 0 95236 station_ip 83.123.29.173 95236 port 8 95236 unique_id port 95236 remote_ip 10.8.0.50 95237 username alireza1 95237 unique_id port 95237 terminate_cause Lost-Carrier 95237 bytes_out 633366 95237 bytes_in 1708769 95237 station_ip 5.119.67.17 95237 port 15728677 95237 nas_port_type Virtual 95237 remote_ip 5.5.5.254 95238 username jamali 95238 mac 95238 bytes_out 0 95238 bytes_in 0 95238 station_ip 83.123.29.173 95238 port 8 95238 unique_id port 95238 remote_ip 10.8.0.50 95239 username alireza1 95239 unique_id port 95239 terminate_cause User-Request 95239 bytes_out 66493 95239 bytes_in 488597 95239 station_ip 5.119.67.17 95239 port 15728679 95239 nas_port_type Virtual 95239 remote_ip 5.5.5.254 95242 username mehdizare 95242 mac 95242 bytes_out 886125 95242 bytes_in 980899 95242 station_ip 5.119.212.150 95242 port 16 95242 unique_id port 95242 remote_ip 10.8.0.70 95248 username aminvpn 95248 mac 95248 bytes_out 0 95248 bytes_in 0 95248 station_ip 5.119.18.104 95248 port 8 95248 unique_id port 95248 remote_ip 10.8.0.6 95250 username mohammadi 95250 mac 95250 bytes_out 1576355 95250 bytes_in 28472193 95250 station_ip 113.203.76.7 95250 port 12 95250 unique_id port 95250 remote_ip 10.8.0.62 95255 username Alirezaza 95255 unique_id port 95255 terminate_cause Lost-Carrier 95255 bytes_out 10284413 95255 bytes_in 174125077 95255 station_ip 5.119.95.136 95255 port 15728674 95255 nas_port_type Virtual 95255 remote_ip 5.5.5.250 95257 username mehdizare 95257 mac 95257 bytes_out 155855 95257 bytes_in 115887 95257 station_ip 5.119.212.150 95257 port 16 95257 unique_id port 95218 bytes_out 246050 95218 bytes_in 2034377 95218 station_ip 31.56.223.104 95218 port 15728671 95218 nas_port_type Virtual 95218 remote_ip 5.5.5.240 95219 username alinezhad 95219 unique_id port 95219 terminate_cause User-Request 95219 bytes_out 0 95219 bytes_in 0 95219 station_ip 5.202.132.85 95219 port 15728673 95219 nas_port_type Virtual 95219 remote_ip 5.5.5.239 95221 username mohammadi 95221 mac 95221 bytes_out 0 95221 bytes_in 0 95221 station_ip 113.203.50.27 95221 port 12 95221 unique_id port 95221 remote_ip 10.8.0.62 95229 username mohammadi 95229 mac 95229 bytes_out 294129 95229 bytes_in 232809 95229 station_ip 113.203.50.27 95229 port 17 95229 unique_id port 95229 remote_ip 10.8.0.62 95231 username mohammadi 95231 mac 95231 bytes_out 55138 95231 bytes_in 88520 95231 station_ip 113.203.50.27 95231 port 16 95231 unique_id port 95231 remote_ip 10.8.0.62 95233 username heydari1 95233 unique_id port 95233 terminate_cause User-Request 95233 bytes_out 180547 95233 bytes_in 194104 95233 station_ip 46.225.232.221 95233 port 15728678 95233 nas_port_type Virtual 95233 remote_ip 5.5.5.237 95240 username askari 95240 mac 95240 bytes_out 0 95240 bytes_in 0 95240 station_ip 5.119.161.73 95240 port 15 95240 unique_id port 95240 remote_ip 10.8.1.30 95241 username alireza1 95241 unique_id port 95241 terminate_cause Lost-Carrier 95241 bytes_out 121437 95241 bytes_in 431498 95241 station_ip 5.119.67.17 95241 port 15728680 95241 nas_port_type Virtual 95241 remote_ip 5.5.5.254 95243 username mohammadi 95243 mac 95243 bytes_out 0 95243 bytes_in 0 95243 station_ip 113.203.76.7 95243 port 8 95243 unique_id port 95243 remote_ip 10.8.0.62 95251 username mirzaei 95251 kill_reason Another user logged on this global unique id 95251 mac 95251 bytes_out 0 95251 bytes_in 0 95251 station_ip 5.119.135.251 95251 port 11 95251 unique_id port 95252 username mohammadmahdi 95252 mac 95252 bytes_out 0 95252 bytes_in 0 95252 station_ip 5.119.128.239 95252 port 18 95252 unique_id port 95252 remote_ip 10.8.0.82 95254 username mohammadi 95254 mac 95254 bytes_out 2592648 95254 bytes_in 41513959 95254 station_ip 113.203.76.7 95254 port 8 95254 unique_id port 95254 remote_ip 10.8.0.62 95256 username mahdiyehalizadeh 95256 mac 95256 bytes_out 0 95256 bytes_in 0 95256 station_ip 83.122.239.241 95256 port 15 95256 unique_id port 95256 remote_ip 10.8.1.62 95258 username forozande 95258 unique_id port 95258 terminate_cause User-Request 95258 bytes_out 78146 95258 bytes_in 235140 95258 station_ip 83.122.214.85 95258 port 15728686 95258 nas_port_type Virtual 95258 remote_ip 5.5.5.231 95266 username mehdizare 95266 mac 95266 bytes_out 30295 95266 bytes_in 43336 95266 station_ip 5.119.212.150 95266 port 8 95266 unique_id port 95266 remote_ip 10.8.0.70 95268 username mohammadmahdi 95268 mac 95268 bytes_out 0 95268 bytes_in 0 95268 station_ip 5.119.128.239 95268 port 12 95268 unique_id port 95271 username aminvpn 95271 mac 95271 bytes_out 0 95271 bytes_in 0 95271 station_ip 5.119.18.104 95271 port 16 95271 unique_id port 95271 remote_ip 10.8.0.6 95273 username fariba 95273 kill_reason Another user logged on this global unique id 95273 mac 95273 bytes_out 0 95273 bytes_in 0 95273 station_ip 5.120.32.103 95273 port 14 95273 unique_id port 95273 remote_ip 10.8.0.10 95274 username madadi2 95274 unique_id port 95274 terminate_cause Lost-Carrier 95274 bytes_out 163239 95274 bytes_in 1122873 95253 station_ip 83.122.239.241 95253 port 12 95253 unique_id port 95253 remote_ip 10.8.0.90 95259 username alinezhad 95259 unique_id port 95259 terminate_cause User-Request 95259 bytes_out 0 95259 bytes_in 0 95259 station_ip 5.202.11.220 95259 port 15728687 95259 nas_port_type Virtual 95259 remote_ip 5.5.5.236 95261 username mirzaei 95261 kill_reason Another user logged on this global unique id 95261 mac 95261 bytes_out 0 95261 bytes_in 0 95261 station_ip 5.119.135.251 95261 port 11 95261 unique_id port 95262 username mehdizare 95262 mac 95262 bytes_out 10985 95262 bytes_in 14078 95262 station_ip 5.119.212.150 95262 port 8 95262 unique_id port 95262 remote_ip 10.8.0.70 95264 username madadi2 95264 unique_id port 95264 terminate_cause Lost-Carrier 95264 bytes_out 2666466 95264 bytes_in 48717760 95264 station_ip 5.119.254.204 95264 port 15728683 95264 nas_port_type Virtual 95264 remote_ip 5.5.5.234 95265 username mohammadmahdi 95265 kill_reason Another user logged on this global unique id 95265 mac 95265 bytes_out 0 95265 bytes_in 0 95265 station_ip 5.119.128.239 95265 port 12 95265 unique_id port 95265 remote_ip 10.8.0.82 95270 username shojaei 95270 unique_id port 95270 terminate_cause User-Request 95270 bytes_out 94925 95270 bytes_in 1575610 95270 station_ip 83.123.247.125 95270 port 15728693 95270 nas_port_type Virtual 95270 remote_ip 5.5.5.228 95272 username alireza1 95272 unique_id port 95272 terminate_cause User-Request 95272 bytes_out 123046 95272 bytes_in 565119 95272 station_ip 5.119.67.17 95272 port 15728692 95272 nas_port_type Virtual 95272 remote_ip 5.5.5.254 95280 username forozande 95280 unique_id port 95280 terminate_cause User-Request 95280 bytes_out 28902 95280 bytes_in 247090 95280 station_ip 83.122.227.104 95280 port 15728699 95280 nas_port_type Virtual 95280 remote_ip 5.5.5.225 95285 username madadi2 95285 unique_id port 95285 terminate_cause Lost-Carrier 95285 bytes_out 91497 95285 bytes_in 455579 95285 station_ip 5.120.53.83 95285 port 15728700 95285 nas_port_type Virtual 95285 remote_ip 5.5.5.224 95286 username aminvpn 95286 kill_reason Another user logged on this global unique id 95286 mac 95286 bytes_out 0 95286 bytes_in 0 95286 station_ip 5.119.152.134 95286 port 12 95286 unique_id port 95286 remote_ip 10.8.0.6 95287 username mohammadmahdi 95287 kill_reason Another user logged on this global unique id 95287 mac 95287 bytes_out 0 95287 bytes_in 0 95287 station_ip 5.119.128.239 95287 port 16 95287 unique_id port 95287 remote_ip 10.8.0.82 95288 username alihosseini 95288 mac 95288 bytes_out 125489 95288 bytes_in 311274 95288 station_ip 5.119.180.100 95288 port 16 95288 unique_id port 95288 remote_ip 10.8.1.34 95292 username aminvpn 95292 mac 95292 bytes_out 0 95292 bytes_in 0 95292 station_ip 5.119.152.134 95292 port 12 95292 unique_id port 95293 username alihosseini 95293 mac 95293 bytes_out 0 95293 bytes_in 0 95293 station_ip 5.119.180.100 95293 port 12 95293 unique_id port 95293 remote_ip 10.8.0.46 95296 username farhad 95296 kill_reason Relative expiration date has reached 95296 unique_id port 95296 bytes_out 0 95296 bytes_in 0 95296 station_ip 5.119.221.51 95296 port 15728705 95296 nas_port_type Virtual 95298 username madadi2 95298 unique_id port 95298 terminate_cause Lost-Carrier 95298 bytes_out 365801 95298 bytes_in 951143 95298 station_ip 5.120.153.160 95298 port 15728701 95298 nas_port_type Virtual 95298 remote_ip 5.5.5.223 95301 username amirhosein 95301 kill_reason Maximum number of concurrent logins reached 95301 unique_id port 95301 bytes_out 0 95301 bytes_in 0 95257 remote_ip 10.8.0.70 188705 unique_id port 188705 remote_ip 10.8.0.62 188706 username sekonji0496 188706 mac 188706 bytes_out 0 188706 bytes_in 0 188706 station_ip 83.123.0.241 188706 port 317 188706 unique_id port 95263 username forozande 95263 unique_id port 95263 terminate_cause User-Request 95263 bytes_out 50673 95263 bytes_in 448746 95263 station_ip 83.122.151.209 95263 port 15728689 95263 nas_port_type Virtual 95263 remote_ip 5.5.5.230 95267 username mammad 95267 unique_id port 95267 terminate_cause User-Request 95267 bytes_out 2490752 95267 bytes_in 24016109 95267 station_ip 5.233.64.73 95267 port 15728690 95267 nas_port_type Virtual 95267 remote_ip 5.5.5.243 95269 username heydari1 95269 unique_id port 95269 terminate_cause User-Request 95269 bytes_out 500225 95269 bytes_in 3728116 95269 station_ip 5.120.151.112 95269 port 15728688 95269 nas_port_type Virtual 95269 remote_ip 5.5.5.244 95275 username mohammadi 95275 mac 95275 bytes_out 105352 95275 bytes_in 169454 95275 station_ip 113.203.102.163 95275 port 16 95275 unique_id port 95275 remote_ip 10.8.0.62 95282 username mohammadi 95282 mac 95282 bytes_out 0 95282 bytes_in 0 95282 station_ip 113.203.102.163 95282 port 14 95282 unique_id port 95282 remote_ip 10.8.0.62 95284 username alihosseini 95284 mac 95284 bytes_out 0 95284 bytes_in 0 95284 station_ip 5.119.180.100 95284 port 14 95284 unique_id port 95284 remote_ip 10.8.0.46 95289 username mohammadi 95289 mac 95289 bytes_out 1109499 95289 bytes_in 8308229 95289 station_ip 113.203.102.163 95289 port 14 95289 unique_id port 95289 remote_ip 10.8.0.62 95290 username alihosseini 95290 mac 95290 bytes_out 0 95290 bytes_in 0 95290 station_ip 5.119.180.100 95290 port 16 95290 unique_id port 95290 remote_ip 10.8.1.34 95294 username mohammadi 95294 mac 95294 bytes_out 0 95294 bytes_in 0 95294 station_ip 113.203.102.163 95294 port 14 95294 unique_id port 95294 remote_ip 10.8.0.62 95297 username alireza1 95297 unique_id port 95297 terminate_cause Lost-Carrier 95297 bytes_out 1131115 95297 bytes_in 3060397 95297 station_ip 5.119.67.17 95297 port 15728697 95297 nas_port_type Virtual 95297 remote_ip 5.5.5.254 95299 username alihosseini 95299 mac 95299 bytes_out 3112096 95299 bytes_in 35016972 95299 station_ip 5.119.180.100 95299 port 16 95299 unique_id port 95299 remote_ip 10.8.1.34 95300 username amirhosein 95300 kill_reason Maximum number of concurrent logins reached 95300 unique_id port 95300 bytes_out 0 95300 bytes_in 0 95300 station_ip 5.119.191.35 95300 port 15728708 95300 nas_port_type Virtual 95305 username amirhosein 95305 unique_id port 95305 terminate_cause Lost-Carrier 95305 bytes_out 4480 95305 bytes_in 126648 95305 station_ip 5.119.191.35 95305 port 15728707 95305 nas_port_type Virtual 95305 remote_ip 5.5.5.220 95308 username alihosseini 95308 mac 95308 bytes_out 0 95308 bytes_in 0 95308 station_ip 5.119.180.100 95308 port 16 95308 unique_id port 95308 remote_ip 10.8.1.34 95316 username forozande 95316 unique_id port 95316 terminate_cause User-Request 95316 bytes_out 54737 95316 bytes_in 805284 95316 station_ip 37.129.81.118 95316 port 15728717 95316 nas_port_type Virtual 95316 remote_ip 5.5.5.216 95317 username alihosseini 95317 mac 95317 bytes_out 0 95317 bytes_in 0 95317 station_ip 5.119.180.100 95317 port 16 95317 unique_id port 95317 remote_ip 10.8.1.34 95318 username jamali 95318 mac 95318 bytes_out 0 95318 bytes_in 0 95318 station_ip 83.123.128.154 188706 remote_ip 10.8.0.62 95274 station_ip 5.119.50.160 95274 port 15728691 95274 nas_port_type Virtual 95274 remote_ip 5.5.5.229 95276 username madadi2 95276 unique_id port 95276 terminate_cause Lost-Carrier 95276 bytes_out 329103 95276 bytes_in 6405685 95276 station_ip 5.120.150.2 95276 port 15728694 95276 nas_port_type Virtual 95276 remote_ip 5.5.5.227 95277 username fariba 95277 kill_reason Another user logged on this global unique id 95277 mac 95277 bytes_out 0 95277 bytes_in 0 95277 station_ip 5.120.32.103 95277 port 14 95277 unique_id port 95278 username mohammadi 95278 mac 95278 bytes_out 111764 95278 bytes_in 251853 95278 station_ip 113.203.102.163 95278 port 16 95278 unique_id port 95278 remote_ip 10.8.0.62 95279 username forozande 95279 unique_id port 95279 terminate_cause User-Request 95279 bytes_out 315696 95279 bytes_in 1542947 95279 station_ip 83.122.227.104 95279 port 15728698 95279 nas_port_type Virtual 95279 remote_ip 5.5.5.225 95281 username fariba 95281 mac 95281 bytes_out 0 95281 bytes_in 0 95281 station_ip 5.120.32.103 95281 port 14 95281 unique_id port 95283 username alihosseini 95283 mac 95283 bytes_out 3249765 95283 bytes_in 35327777 95283 station_ip 5.119.180.100 95283 port 16 95283 unique_id port 95283 remote_ip 10.8.0.46 95291 username alihosseini 95291 mac 95291 bytes_out 0 95291 bytes_in 0 95291 station_ip 5.119.180.100 95291 port 18 95291 unique_id port 95291 remote_ip 10.8.0.46 95295 username alihosseini 95295 mac 95295 bytes_out 2200 95295 bytes_in 4488 95295 station_ip 5.119.180.100 95295 port 16 95295 unique_id port 95295 remote_ip 10.8.1.34 95303 username amirhosein 95303 kill_reason Maximum number of concurrent logins reached 95303 unique_id port 95303 bytes_out 0 95303 bytes_in 0 95303 station_ip 5.120.17.109 95303 port 15728711 95303 nas_port_type Virtual 95310 username alireza1 95310 unique_id port 95310 terminate_cause User-Request 95310 bytes_out 618630 95310 bytes_in 1662355 95310 station_ip 5.119.67.17 95310 port 15728704 95310 nas_port_type Virtual 95310 remote_ip 5.5.5.221 95311 username alihosseini 95311 kill_reason Maximum check online fails reached 95311 mac 95311 bytes_out 0 95311 bytes_in 0 95311 station_ip 5.119.180.100 95311 port 12 95311 unique_id port 95315 username forozande 95315 unique_id port 95315 terminate_cause User-Request 95315 bytes_out 65969 95315 bytes_in 349001 95315 station_ip 37.129.81.118 95315 port 15728716 95315 nas_port_type Virtual 95315 remote_ip 5.5.5.216 95322 username alihosseini 95322 mac 95322 bytes_out 527550 95322 bytes_in 4604136 95322 station_ip 5.119.180.100 95322 port 16 95322 unique_id port 95322 remote_ip 10.8.0.46 95327 username alihosseini 95327 mac 95327 bytes_out 0 95327 bytes_in 0 95327 station_ip 5.119.180.100 95327 port 14 95327 unique_id port 95327 remote_ip 10.8.0.46 95334 username mahdixz 95334 unique_id port 95334 terminate_cause User-Request 95334 bytes_out 149484 95334 bytes_in 788103 95334 station_ip 151.235.91.222 95334 port 15728725 95334 nas_port_type Virtual 95334 remote_ip 5.5.5.213 95335 username mohammadi 95335 mac 95335 bytes_out 0 95335 bytes_in 0 95335 station_ip 113.203.34.19 95335 port 14 95335 unique_id port 95335 remote_ip 10.8.0.62 95336 username amirhosein 95336 unique_id port 95336 terminate_cause Lost-Carrier 95336 bytes_out 29484 95336 bytes_in 653566 95336 station_ip 5.119.136.86 95336 port 15728724 95336 nas_port_type Virtual 95336 remote_ip 5.5.5.217 95341 username mohammadi 95341 kill_reason Another user logged on this global unique id 95301 station_ip 5.119.191.35 95301 port 15728709 95301 nas_port_type Virtual 95302 username amirhosein 95302 kill_reason Maximum number of concurrent logins reached 95302 unique_id port 95302 bytes_out 0 95302 bytes_in 0 95302 station_ip 5.119.191.35 95302 port 15728710 95302 nas_port_type Virtual 95304 username amirhosein 95304 unique_id port 95304 terminate_cause Lost-Carrier 95304 bytes_out 539729 95304 bytes_in 1997117 95304 station_ip 5.119.191.35 95304 port 15728702 95304 nas_port_type Virtual 95304 remote_ip 5.5.5.222 95306 username alihosseini 95306 mac 95306 bytes_out 0 95306 bytes_in 0 95306 station_ip 5.119.180.100 95306 port 16 95306 unique_id port 95306 remote_ip 10.8.1.34 95307 username amirhosein 95307 unique_id port 95307 terminate_cause Lost-Carrier 95307 bytes_out 391908 95307 bytes_in 7838871 95307 station_ip 5.120.17.109 95307 port 15728712 95307 nas_port_type Virtual 95307 remote_ip 5.5.5.219 95309 username alihosseini 95309 mac 95309 bytes_out 0 95309 bytes_in 0 95309 station_ip 5.119.180.100 95309 port 12 95309 unique_id port 95309 remote_ip 10.8.0.46 95312 username alihosseini 95312 mac 95312 bytes_out 0 95312 bytes_in 0 95312 station_ip 5.119.180.100 95312 port 16 95312 unique_id port 95312 remote_ip 10.8.1.34 95313 username alihosseini 95313 mac 95313 bytes_out 0 95313 bytes_in 0 95313 station_ip 5.119.180.100 95313 port 16 95313 unique_id port 95313 remote_ip 10.8.1.34 95314 username alireza1 95314 unique_id port 95314 terminate_cause User-Request 95314 bytes_out 171796 95314 bytes_in 480857 95314 station_ip 5.119.67.17 95314 port 15728714 95314 nas_port_type Virtual 95314 remote_ip 5.5.5.221 95319 username alihosseini 95319 mac 95319 bytes_out 0 95319 bytes_in 0 95319 station_ip 5.119.180.100 95319 port 14 95319 unique_id port 95319 remote_ip 10.8.0.46 95321 username amirhosein 95321 unique_id port 95321 terminate_cause Lost-Carrier 95321 bytes_out 961407 95321 bytes_in 22967362 95321 station_ip 5.119.136.86 95321 port 15728715 95321 nas_port_type Virtual 95321 remote_ip 5.5.5.217 95323 username madadi2 95323 unique_id port 95323 terminate_cause Lost-Carrier 95323 bytes_out 544599 95323 bytes_in 5850876 95323 station_ip 5.119.128.154 95323 port 15728713 95323 nas_port_type Virtual 95323 remote_ip 5.5.5.218 95324 username mohammadi 95324 mac 95324 bytes_out 0 95324 bytes_in 0 95324 station_ip 113.203.34.19 95324 port 14 95324 unique_id port 95324 remote_ip 10.8.0.62 95325 username forozande 95325 unique_id port 95325 terminate_cause User-Request 95325 bytes_out 36369 95325 bytes_in 87090 95325 station_ip 113.203.41.12 95325 port 15728720 95325 nas_port_type Virtual 95325 remote_ip 5.5.5.215 95326 username alinezhad 95326 unique_id port 95326 terminate_cause User-Request 95326 bytes_out 0 95326 bytes_in 0 95326 station_ip 5.202.11.220 95326 port 15728721 95326 nas_port_type Virtual 95326 remote_ip 5.5.5.236 95328 username alihosseini 95328 mac 95328 bytes_out 0 95328 bytes_in 0 95328 station_ip 5.119.180.100 95328 port 16 95328 unique_id port 95328 remote_ip 10.8.0.46 95330 username amirhosein 95330 unique_id port 95330 terminate_cause Lost-Carrier 95330 bytes_out 65251 95330 bytes_in 2480183 95330 station_ip 5.119.136.86 95330 port 15728719 95330 nas_port_type Virtual 95330 remote_ip 5.5.5.217 95331 username mohammadi 95331 mac 95331 bytes_out 0 95331 bytes_in 0 95331 station_ip 113.203.34.19 95331 port 14 95331 unique_id port 95331 remote_ip 10.8.0.62 95332 username alireza1 95318 port 17 95318 unique_id port 95318 remote_ip 10.8.0.50 95320 username fariba 95320 mac 95320 bytes_out 86956 95320 bytes_in 104165 95320 station_ip 5.120.32.103 95320 port 15 95320 unique_id port 95320 remote_ip 10.8.1.46 95329 username forozande 95329 unique_id port 95329 terminate_cause User-Request 95329 bytes_out 35487 95329 bytes_in 256918 95329 station_ip 113.203.41.12 95329 port 15728722 95329 nas_port_type Virtual 95329 remote_ip 5.5.5.215 95333 username alihosseini 95333 mac 95333 bytes_out 0 95333 bytes_in 0 95333 station_ip 5.119.180.100 95333 port 14 95333 unique_id port 95333 remote_ip 10.8.0.46 95338 username madadi2 95338 unique_id port 95338 terminate_cause Lost-Carrier 95338 bytes_out 89647 95338 bytes_in 387135 95338 station_ip 5.120.30.139 95338 port 15728723 95338 nas_port_type Virtual 95338 remote_ip 5.5.5.214 95343 username mahdixz 95343 unique_id port 95343 terminate_cause Lost-Carrier 95343 bytes_out 64796 95343 bytes_in 601861 95343 station_ip 151.235.91.222 95343 port 15728727 95343 nas_port_type Virtual 95343 remote_ip 5.5.5.213 95351 username mammad 95351 unique_id port 95351 terminate_cause User-Request 95351 bytes_out 3243924 95351 bytes_in 59991091 95351 station_ip 5.233.64.73 95351 port 15728726 95351 nas_port_type Virtual 95351 remote_ip 5.5.5.243 95356 username mehdizare 95356 mac 95356 bytes_out 675202 95356 bytes_in 804418 95356 station_ip 5.119.212.150 95356 port 8 95356 unique_id port 95356 remote_ip 10.8.0.70 95361 username mehdizare 95361 mac 95361 bytes_out 14067 95361 bytes_in 15697 95361 station_ip 5.119.212.150 95361 port 14 95361 unique_id port 95361 remote_ip 10.8.0.70 95363 username alireza1 95363 unique_id port 95363 terminate_cause User-Request 95363 bytes_out 52557 95363 bytes_in 231794 95363 station_ip 5.119.67.17 95363 port 15728750 95363 nas_port_type Virtual 95363 remote_ip 5.5.5.221 95366 username heydarizadeh 95366 unique_id port 95366 terminate_cause Lost-Carrier 95366 bytes_out 395414 95366 bytes_in 8399645 95366 station_ip 5.119.211.189 95366 port 15728745 95366 nas_port_type Virtual 95366 remote_ip 5.5.5.205 95369 username sadegh 95369 unique_id port 95369 terminate_cause User-Request 95369 bytes_out 463151 95369 bytes_in 1313664 95369 station_ip 5.119.34.100 95369 port 15728757 95369 nas_port_type Virtual 95369 remote_ip 5.5.5.202 95370 username forozande 95370 unique_id port 95370 terminate_cause User-Request 95370 bytes_out 24141 95370 bytes_in 93395 95370 station_ip 83.122.130.167 95370 port 15728759 95370 nas_port_type Virtual 95370 remote_ip 5.5.5.200 95375 username forozande 95375 unique_id port 95375 terminate_cause User-Request 95375 bytes_out 146531 95375 bytes_in 3348138 95375 station_ip 83.123.24.168 95375 port 15728770 95375 nas_port_type Virtual 95375 remote_ip 5.5.5.198 95382 username fariba 95382 mac 95382 bytes_out 5949 95382 bytes_in 8636 95382 station_ip 5.120.32.103 95382 port 15 95382 unique_id port 95382 remote_ip 10.8.1.46 95384 username aminvpn 95384 mac 95384 bytes_out 1345222 95384 bytes_in 6594070 95384 station_ip 5.119.241.248 95384 port 17 95384 unique_id port 95384 remote_ip 10.8.1.6 95386 username forozande 95386 unique_id port 95386 terminate_cause User-Request 95386 bytes_out 151151 95386 bytes_in 241474 95386 station_ip 37.129.51.135 95386 port 15728783 95386 nas_port_type Virtual 95386 remote_ip 5.5.5.196 188707 username zahra1101 188707 mac 188707 bytes_out 0 188707 bytes_in 0 188707 station_ip 5.120.128.95 188707 port 317 188707 unique_id port 95332 unique_id port 95332 terminate_cause User-Request 95332 bytes_out 335866 95332 bytes_in 1001851 95332 station_ip 5.119.67.17 95332 port 15728718 95332 nas_port_type Virtual 95332 remote_ip 5.5.5.221 95337 username alihosseini 95337 mac 95337 bytes_out 0 95337 bytes_in 0 95337 station_ip 5.119.180.100 95337 port 14 95337 unique_id port 95337 remote_ip 10.8.0.46 95339 username mahdixz 95339 unique_id port 95339 terminate_cause User-Request 95339 bytes_out 0 95339 bytes_in 0 95339 station_ip 151.235.91.222 95339 port 15728729 95339 nas_port_type Virtual 95339 remote_ip 5.5.5.212 95340 username alihosseini 95340 mac 95340 bytes_out 0 95340 bytes_in 0 95340 station_ip 5.119.180.100 95340 port 14 95340 unique_id port 95340 remote_ip 10.8.0.46 95345 username tahmasebi 95345 unique_id port 95345 terminate_cause Lost-Carrier 95345 bytes_out 89883 95345 bytes_in 1501156 95345 station_ip 5.120.69.250 95345 port 15728730 95345 nas_port_type Virtual 95345 remote_ip 5.5.5.211 95346 username madadi2 95346 unique_id port 95346 terminate_cause Lost-Carrier 95346 bytes_out 100601 95346 bytes_in 638984 95346 station_ip 5.119.105.22 95346 port 15728731 95346 nas_port_type Virtual 95346 remote_ip 5.5.5.210 95347 username alireza1 95347 unique_id port 95347 terminate_cause User-Request 95347 bytes_out 83367 95347 bytes_in 179173 95347 station_ip 5.119.67.17 95347 port 15728741 95347 nas_port_type Virtual 95347 remote_ip 5.5.5.221 95348 username heydari1 95348 unique_id port 95348 terminate_cause User-Request 95348 bytes_out 526671 95348 bytes_in 2223011 95348 station_ip 5.120.151.112 95348 port 15728706 95348 nas_port_type Virtual 95348 remote_ip 5.5.5.244 95349 username alihosseini 95349 mac 95349 bytes_out 0 95349 bytes_in 0 95349 station_ip 5.119.180.100 95349 port 16 95349 unique_id port 95349 remote_ip 10.8.1.34 95350 username alihosseini 95350 mac 95350 bytes_out 556128 95350 bytes_in 7174246 95350 station_ip 5.119.180.100 95350 port 16 95350 unique_id port 95350 remote_ip 10.8.1.34 95352 username heydarizadeh 95352 unique_id port 95352 terminate_cause Lost-Carrier 95352 bytes_out 815034 95352 bytes_in 13947203 95352 station_ip 5.119.202.56 95352 port 15728742 95352 nas_port_type Virtual 95352 remote_ip 5.5.5.208 95354 username alireza1 95354 unique_id port 95354 terminate_cause User-Request 95354 bytes_out 148837 95354 bytes_in 412430 95354 station_ip 5.119.67.17 95354 port 15728748 95354 nas_port_type Virtual 95354 remote_ip 5.5.5.221 95357 username askari 95357 mac 95357 bytes_out 2310956 95357 bytes_in 43595411 95357 station_ip 5.120.19.162 95357 port 17 95357 unique_id port 95357 remote_ip 10.8.1.30 95358 username Alirezaza 95358 unique_id port 95358 terminate_cause Lost-Carrier 95358 bytes_out 58632 95358 bytes_in 248773 95358 station_ip 5.120.70.175 95358 port 15728746 95358 nas_port_type Virtual 95358 remote_ip 5.5.5.204 95360 username sadegh 95360 unique_id port 95360 terminate_cause User-Request 95360 bytes_out 0 95360 bytes_in 0 95360 station_ip 5.119.34.100 95360 port 15728752 95360 nas_port_type Virtual 95360 remote_ip 5.5.5.202 95362 username mehdizare 95362 mac 95362 bytes_out 0 95362 bytes_in 0 95362 station_ip 5.119.212.150 95362 port 8 95362 unique_id port 95362 remote_ip 10.8.0.70 95371 username forozande 95371 unique_id port 95371 terminate_cause User-Request 95371 bytes_out 82265 95371 bytes_in 879539 95371 station_ip 83.123.24.168 95371 port 15728765 95371 nas_port_type Virtual 95371 remote_ip 5.5.5.198 95373 username forozande 95341 mac 95341 bytes_out 0 95341 bytes_in 0 95341 station_ip 113.203.34.19 95341 port 16 95341 unique_id port 95341 remote_ip 10.8.0.62 95342 username tahmasebi 95342 unique_id port 95342 terminate_cause Lost-Carrier 95342 bytes_out 105095095 95342 bytes_in 336973726 95342 station_ip 5.119.180.122 95342 port 15728695 95342 nas_port_type Virtual 95342 remote_ip 5.5.5.226 95344 username alireza1 95344 unique_id port 95344 terminate_cause User-Request 95344 bytes_out 113738 95344 bytes_in 206837 95344 station_ip 5.119.67.17 95344 port 15728728 95344 nas_port_type Virtual 95344 remote_ip 5.5.5.221 95353 username Alirezaza 95353 unique_id port 95353 terminate_cause Lost-Carrier 95353 bytes_out 776924 95353 bytes_in 9009841 95353 station_ip 5.120.69.193 95353 port 15728743 95353 nas_port_type Virtual 95353 remote_ip 5.5.5.207 95355 username mirzaei 95355 kill_reason Another user logged on this global unique id 95355 mac 95355 bytes_out 0 95355 bytes_in 0 95355 station_ip 5.119.135.251 95355 port 11 95355 unique_id port 95359 username heydarizadeh 95359 kill_reason Maximum number of concurrent logins reached 95359 unique_id port 95359 bytes_out 0 95359 bytes_in 0 95359 station_ip 5.119.4.132 95359 port 15728751 95359 nas_port_type Virtual 95364 username forozande 95364 unique_id port 95364 terminate_cause User-Request 95364 bytes_out 108755 95364 bytes_in 1775716 95364 station_ip 83.123.134.44 95364 port 15728753 95364 nas_port_type Virtual 95364 remote_ip 5.5.5.201 95365 username sadegh 95365 unique_id port 95365 terminate_cause User-Request 95365 bytes_out 0 95365 bytes_in 0 95365 station_ip 5.119.34.100 95365 port 15728754 95365 nas_port_type Virtual 95365 remote_ip 5.5.5.202 95367 username sadegh 95367 unique_id port 95367 terminate_cause User-Request 95367 bytes_out 0 95367 bytes_in 0 95367 station_ip 5.119.34.100 95367 port 15728756 95367 nas_port_type Virtual 95367 remote_ip 5.5.5.202 95368 username heydarizadeh 95368 unique_id port 95368 terminate_cause Lost-Carrier 95368 bytes_out 102228 95368 bytes_in 2173775 95368 station_ip 5.120.36.117 95368 port 15728749 95368 nas_port_type Virtual 95368 remote_ip 5.5.5.203 95372 username zamanialireza 95372 kill_reason Relative expiration date has reached 95372 unique_id port 95372 bytes_out 0 95372 bytes_in 0 95372 station_ip 37.129.115.45 95372 port 15728766 95372 nas_port_type Virtual 95380 username mahdiyehalizadeh 95380 kill_reason Another user logged on this global unique id 95380 mac 95380 bytes_out 0 95380 bytes_in 0 95380 station_ip 37.129.70.157 95380 port 17 95380 unique_id port 95380 remote_ip 10.8.0.90 95393 username aminvpn 95391 station_ip 5.119.29.134 95393 kill_reason Another user logged on this global unique id 95393 mac 95393 bytes_out 0 95393 bytes_in 0 95393 station_ip 83.122.93.238 95393 port 8 95393 unique_id port 95393 remote_ip 10.8.0.6 95395 username aminvpn 95395 mac 95395 bytes_out 0 95395 bytes_in 0 95395 station_ip 83.122.93.238 95395 port 8 95395 unique_id port 95399 username aminvpn 95399 mac 95399 bytes_out 0 95399 bytes_in 0 95399 station_ip 83.122.93.238 95399 port 8 95399 unique_id port 95399 remote_ip 10.8.0.6 95400 username mahdiyehalizadeh 95400 mac 95400 bytes_out 0 95400 bytes_in 0 95400 station_ip 37.129.70.157 95400 port 16 95400 unique_id port 95400 remote_ip 10.8.0.90 95401 username madadi2 95401 unique_id port 95401 terminate_cause Lost-Carrier 95401 bytes_out 172914 95401 bytes_in 2040924 95401 station_ip 5.119.187.199 95401 port 15728787 95401 nas_port_type Virtual 95401 remote_ip 5.5.5.195 95403 username mahdiyehalizadeh 95373 unique_id port 95373 terminate_cause User-Request 95373 bytes_out 43919 95373 bytes_in 349982 95373 station_ip 83.123.24.168 95373 port 15728767 95373 nas_port_type Virtual 95373 remote_ip 5.5.5.198 188707 remote_ip 10.8.0.250 188708 username zahra1101 188708 mac 188708 bytes_out 0 188708 bytes_in 0 188708 station_ip 5.120.128.95 188708 port 317 188708 unique_id port 188708 remote_ip 10.8.0.250 95376 username fariba 95376 mac 95376 bytes_out 0 95376 bytes_in 0 95376 station_ip 5.120.32.103 95376 port 15 95376 unique_id port 95376 remote_ip 10.8.1.46 95377 username askari 95377 kill_reason Another user logged on this global unique id 95377 mac 95377 bytes_out 0 95377 bytes_in 0 95377 station_ip 5.120.173.73 95377 port 16 95377 unique_id port 95377 remote_ip 10.8.1.30 95378 username forozande 95378 unique_id port 95378 terminate_cause User-Request 95378 bytes_out 30981 95378 bytes_in 250687 95378 station_ip 83.123.24.168 95378 port 15728772 95378 nas_port_type Virtual 95378 remote_ip 5.5.5.198 95379 username mohammadi 95379 kill_reason Another user logged on this global unique id 95379 mac 95379 bytes_out 0 95379 bytes_in 0 95379 station_ip 113.203.34.19 95379 port 16 95379 unique_id port 95379 remote_ip 10.8.0.62 95381 username forozande 95381 unique_id port 95381 terminate_cause User-Request 95381 bytes_out 82498 95381 bytes_in 298591 95381 station_ip 83.123.24.168 95381 port 15728776 95381 nas_port_type Virtual 95381 remote_ip 5.5.5.198 95383 username amirhosein 95383 unique_id port 95383 terminate_cause Lost-Carrier 95383 bytes_out 65203 95383 bytes_in 335917 95383 station_ip 5.119.61.199 95383 port 15728764 95383 nas_port_type Virtual 95383 remote_ip 5.5.5.199 95385 username sadegh1 95385 unique_id port 95385 terminate_cause User-Request 95385 bytes_out 0 95385 bytes_in 0 95385 station_ip 5.119.44.174 95385 port 15728782 95385 nas_port_type Virtual 95385 remote_ip 5.5.5.197 95387 username askari 95387 mac 95387 bytes_out 0 95387 bytes_in 0 95387 station_ip 5.120.173.73 95387 port 16 95387 unique_id port 95388 username amirhosein 95388 unique_id port 95388 terminate_cause Lost-Carrier 95388 bytes_out 4997 95388 bytes_in 137336 95388 station_ip 5.119.61.199 95388 port 15728781 95388 nas_port_type Virtual 95388 remote_ip 5.5.5.199 95390 username mohammadi 95390 mac 95390 bytes_out 0 95390 bytes_in 0 95390 station_ip 113.203.34.19 95390 port 16 95390 unique_id port 95390 remote_ip 10.8.0.62 95391 username khalili 95391 unique_id port 95391 terminate_cause User-Request 95391 bytes_out 1486275 95391 bytes_in 15024589 95391 port 15728744 95391 nas_port_type Virtual 95391 remote_ip 5.5.5.206 95392 username mohammadi 95392 mac 95392 bytes_out 0 95392 bytes_in 0 95392 station_ip 113.203.34.19 95392 port 17 95392 unique_id port 95392 remote_ip 10.8.0.62 95396 username mahdiyehalizadeh 95396 mac 95396 bytes_out 0 95396 bytes_in 0 95396 station_ip 37.129.70.157 95396 port 16 95396 unique_id port 95396 remote_ip 10.8.0.90 95397 username mirzaei 95397 mac 95397 bytes_out 0 95397 bytes_in 0 95397 station_ip 5.119.135.251 95397 port 11 95397 unique_id port 95398 username amirhosein 95398 unique_id port 95398 terminate_cause Lost-Carrier 95398 bytes_out 351723 95398 bytes_in 14719157 95398 station_ip 5.119.61.199 95398 port 15728786 95398 nas_port_type Virtual 95398 remote_ip 5.5.5.199 95402 username askari 95402 mac 95402 bytes_out 480908 95402 bytes_in 4046461 188711 username sekonji0496 188709 mac 188709 bytes_out 0 188709 bytes_in 0 95394 username tahmasebi 95394 unique_id port 95394 terminate_cause User-Request 95394 bytes_out 11705920 95394 bytes_in 399601250 95394 station_ip 5.119.109.166 95394 port 15728740 95394 nas_port_type Virtual 95394 remote_ip 5.5.5.209 95404 username mehdizare 95404 kill_reason Another user logged on this global unique id 95404 mac 95404 bytes_out 0 95404 bytes_in 0 95404 station_ip 5.119.212.150 95404 port 14 95404 unique_id port 95404 remote_ip 10.8.0.70 95407 username mohammadi 95407 mac 95407 bytes_out 0 95407 bytes_in 0 95407 station_ip 113.203.53.163 95407 port 8 95407 unique_id port 95407 remote_ip 10.8.0.62 95409 username amirhosein 95409 unique_id port 95409 terminate_cause Lost-Carrier 95409 bytes_out 4665 95409 bytes_in 138506 95409 station_ip 5.119.61.199 95409 port 15728790 95409 nas_port_type Virtual 95409 remote_ip 5.5.5.193 95410 username mohammadi 95410 mac 95410 bytes_out 214897 95410 bytes_in 937197 95410 station_ip 113.203.53.163 95410 port 8 95410 unique_id port 95410 remote_ip 10.8.0.62 95411 username mehdizare 95411 mac 95411 bytes_out 42532 95411 bytes_in 54250 95411 station_ip 5.119.212.150 95411 port 11 95411 unique_id port 95411 remote_ip 10.8.0.70 95413 username mirzaei 95413 kill_reason Another user logged on this global unique id 95413 mac 95413 bytes_out 0 95413 bytes_in 0 95413 station_ip 5.119.135.251 95413 port 17 95413 unique_id port 95413 remote_ip 10.8.0.14 95420 username mirzaei 95420 mac 95420 bytes_out 0 95420 bytes_in 0 95420 station_ip 5.119.88.69 95420 port 8 95420 unique_id port 95420 remote_ip 10.8.0.14 95424 username Alirezaza 95424 unique_id port 95424 terminate_cause User-Request 95424 bytes_out 137438 95424 bytes_in 330261 95424 station_ip 5.119.44.174 95424 port 15728805 95424 nas_port_type Virtual 95424 remote_ip 5.5.5.187 95426 username mohammadi 95426 mac 95426 bytes_out 0 95426 bytes_in 0 95426 station_ip 113.203.53.163 95426 port 8 95426 unique_id port 95426 remote_ip 10.8.0.62 95429 username amirhosein 95429 unique_id port 95429 terminate_cause Lost-Carrier 95429 bytes_out 143703 95429 bytes_in 4936860 95429 station_ip 5.119.61.199 95429 port 15728802 95429 nas_port_type Virtual 95429 remote_ip 5.5.5.193 95432 username mohammadi 95432 kill_reason Another user logged on this global unique id 95432 mac 95432 bytes_out 0 95432 bytes_in 0 95432 station_ip 113.203.53.163 95432 port 11 95432 unique_id port 95432 remote_ip 10.8.0.62 95433 username Alirezaza 95433 unique_id port 95433 terminate_cause User-Request 95433 bytes_out 1809765 95433 bytes_in 66809089 95433 station_ip 5.119.44.174 95433 port 15728807 95433 nas_port_type Virtual 95433 remote_ip 5.5.5.187 95435 username mehdizare 95435 mac 95435 bytes_out 0 95435 bytes_in 0 95435 station_ip 5.119.212.150 95435 port 16 95435 unique_id port 95435 remote_ip 10.8.1.54 95437 username alinezhad 95437 unique_id port 95437 terminate_cause User-Request 95437 bytes_out 219961 95437 bytes_in 5262185 95437 station_ip 5.202.11.220 95437 port 15728810 95437 nas_port_type Virtual 95437 remote_ip 5.5.5.236 95439 username mohammadi 95439 kill_reason Another user logged on this global unique id 95439 mac 95439 bytes_out 0 95439 bytes_in 0 95439 station_ip 113.203.53.163 95439 port 11 95439 unique_id port 95442 username mohammadi 95442 kill_reason Another user logged on this global unique id 95442 mac 95442 bytes_out 0 95442 bytes_in 0 95442 station_ip 113.203.53.163 95442 port 11 188709 station_ip 5.120.128.95 95402 station_ip 5.119.20.71 95402 port 16 95402 unique_id port 95402 remote_ip 10.8.1.30 95406 username Alirezaza 95406 unique_id port 95406 terminate_cause Lost-Carrier 95406 bytes_out 394107 95406 bytes_in 2465892 95406 station_ip 5.119.199.116 95406 port 15728789 95406 nas_port_type Virtual 95406 remote_ip 5.5.5.194 95408 username mehdizare 95408 mac 95408 bytes_out 0 95408 bytes_in 0 95408 station_ip 5.119.212.150 95408 port 14 95408 unique_id port 95412 username mammad 95412 unique_id port 95412 terminate_cause User-Request 95412 bytes_out 52514 95412 bytes_in 128100 95412 station_ip 151.238.226.86 95412 port 15728794 95412 nas_port_type Virtual 95412 remote_ip 5.5.5.190 95419 username madadi2 95419 unique_id port 95419 terminate_cause Lost-Carrier 95419 bytes_out 136472 95419 bytes_in 1082289 95419 station_ip 5.119.51.209 95419 port 15728799 95419 nas_port_type Virtual 95419 remote_ip 5.5.5.189 95421 username mirzaei 95421 mac 95421 bytes_out 0 95421 bytes_in 0 95421 station_ip 5.119.88.69 95421 port 11 95421 unique_id port 95421 remote_ip 10.8.0.14 95423 username mirzaei 95423 mac 95423 bytes_out 0 95423 bytes_in 0 95423 station_ip 5.119.88.69 95423 port 8 95423 unique_id port 95423 remote_ip 10.8.0.14 95428 username mammad 95428 unique_id port 95428 terminate_cause Lost-Carrier 95428 bytes_out 1197940 95428 bytes_in 32800520 95428 station_ip 151.238.226.86 95428 port 15728800 95428 nas_port_type Virtual 95428 remote_ip 5.5.5.190 188709 port 317 188709 unique_id port 188709 remote_ip 10.8.0.250 188713 username sekonji0496 188713 mac 188713 bytes_out 0 188713 bytes_in 0 188713 station_ip 83.123.0.241 188713 port 394 95434 username mohammadi 95434 kill_reason Another user logged on this global unique id 95434 mac 95434 bytes_out 0 95434 bytes_in 0 95434 station_ip 113.203.53.163 95434 port 11 95434 unique_id port 95441 username hoorieh 95441 mac 95441 bytes_out 0 95441 bytes_in 0 95441 station_ip 5.120.115.245 95441 port 8 95441 unique_id port 95441 remote_ip 10.8.0.78 95443 username mirzaei 95443 mac 95443 bytes_out 55998 95443 bytes_in 87712 95443 station_ip 5.119.7.4 95443 port 14 95443 unique_id port 95443 remote_ip 10.8.0.14 95446 username amirhosein 95446 unique_id port 95446 terminate_cause Lost-Carrier 95446 bytes_out 100709 95446 bytes_in 278617 95446 station_ip 5.119.61.199 95446 port 15728811 95446 nas_port_type Virtual 95446 remote_ip 5.5.5.193 95448 username madadi2 95448 unique_id port 95448 terminate_cause Lost-Carrier 95448 bytes_out 334342 95448 bytes_in 1299510 95448 station_ip 5.119.102.48 95448 port 15728809 95448 nas_port_type Virtual 95448 remote_ip 5.5.5.185 95449 username mohammadi 95449 kill_reason Another user logged on this global unique id 95449 mac 95449 bytes_out 0 95449 bytes_in 0 95449 station_ip 113.203.53.163 95449 port 11 95449 unique_id port 95453 username mohammadi 95453 kill_reason Another user logged on this global unique id 95453 mac 95453 bytes_out 0 95453 bytes_in 0 95453 station_ip 113.203.53.163 95453 port 11 95453 unique_id port 188713 unique_id port 188713 remote_ip 10.8.0.62 188716 username zahra1101 188716 mac 188716 bytes_out 0 188716 bytes_in 0 188716 station_ip 5.120.128.95 188716 port 396 188716 unique_id port 95461 username mohammadi 95461 mac 95461 bytes_out 0 95461 bytes_in 0 95461 station_ip 113.203.53.163 95461 port 11 95461 unique_id port 188716 remote_ip 10.8.0.250 188717 station_ip 5.120.128.95 188717 port 396 188717 unique_id port 95403 mac 95403 bytes_out 80559 95403 bytes_in 468912 95403 station_ip 37.129.70.157 95403 port 8 95403 unique_id port 95403 remote_ip 10.8.0.90 95405 username amirhosein 95405 unique_id port 95405 terminate_cause Lost-Carrier 95405 bytes_out 101869 95405 bytes_in 494043 95405 station_ip 5.119.61.199 95405 port 15728788 95405 nas_port_type Virtual 95405 remote_ip 5.5.5.199 95414 username askari 95414 mac 95414 bytes_out 0 95414 bytes_in 0 95414 station_ip 5.119.173.219 95414 port 17 95414 unique_id port 95414 remote_ip 10.8.1.30 95415 username mammad 95415 unique_id port 95415 terminate_cause Lost-Carrier 95415 bytes_out 325509 95415 bytes_in 9835914 95415 station_ip 151.238.226.86 95415 port 15728792 95415 nas_port_type Virtual 95415 remote_ip 5.5.5.192 95416 username mammad 95416 unique_id port 95416 terminate_cause User-Request 95416 bytes_out 0 95416 bytes_in 0 95416 station_ip 151.238.226.86 95416 port 15728795 95416 nas_port_type Virtual 95416 remote_ip 5.5.5.190 95417 username forozande 95417 unique_id port 95417 terminate_cause User-Request 95417 bytes_out 79540 95417 bytes_in 945681 95417 station_ip 83.123.199.22 95417 port 15728801 95417 nas_port_type Virtual 95417 remote_ip 5.5.5.188 95418 username forozande 95418 unique_id port 95418 terminate_cause User-Request 95418 bytes_out 44828 95418 bytes_in 656487 95418 station_ip 83.123.199.22 95418 port 15728803 95418 nas_port_type Virtual 95418 remote_ip 5.5.5.188 95422 username kamali 95422 kill_reason Relative expiration date has reached 95422 unique_id port 95422 bytes_out 0 95422 bytes_in 0 95422 station_ip 151.238.226.227 95422 port 15728804 95422 nas_port_type Virtual 95425 username mehdizare 95425 mac 95425 bytes_out 91693 95425 bytes_in 211897 95425 station_ip 5.119.212.150 95425 port 16 95425 unique_id port 95425 remote_ip 10.8.1.54 95427 username hoorieh 95427 mac 95427 bytes_out 0 95427 bytes_in 0 95427 station_ip 5.120.115.245 95427 port 8 95427 unique_id port 95427 remote_ip 10.8.0.78 95431 username mammad 95431 unique_id port 95431 terminate_cause User-Request 95431 bytes_out 127461 95431 bytes_in 1094003 95431 station_ip 151.238.226.86 95431 port 15728806 95431 nas_port_type Virtual 95431 remote_ip 5.5.5.186 95436 username mohammadi 95436 kill_reason Another user logged on this global unique id 95436 mac 95436 bytes_out 0 95436 bytes_in 0 95436 station_ip 113.203.53.163 95436 port 11 95436 unique_id port 188710 mac 188710 bytes_out 201310 188710 bytes_in 450585 188710 station_ip 86.55.177.134 188710 port 396 188710 unique_id port 188710 remote_ip 10.8.0.66 188712 username kalantary6037 188712 mac 95440 username mirzaei 95440 mac 95440 bytes_out 0 95440 bytes_in 0 95440 station_ip 5.112.142.44 95440 port 8 95440 unique_id port 95440 remote_ip 10.8.0.14 95447 username mohammadi 95447 kill_reason Another user logged on this global unique id 95447 mac 95447 bytes_out 0 95447 bytes_in 0 95447 station_ip 113.203.53.163 95447 port 11 95447 unique_id port 95451 username tahmasebi 95451 unique_id port 95451 terminate_cause User-Request 95451 bytes_out 12801749 95451 bytes_in 628119729 95451 station_ip 5.119.109.166 95451 port 15728791 95451 nas_port_type Virtual 95451 remote_ip 5.5.5.209 95457 username alinezhad 95457 unique_id port 95457 terminate_cause User-Request 95457 bytes_out 100355 95457 bytes_in 1232221 95457 station_ip 5.202.11.220 95457 port 15728815 95457 nas_port_type Virtual 95457 remote_ip 5.5.5.236 95458 username madadi2 95458 unique_id port 188712 bytes_out 1121749 95442 unique_id port 95444 username mohammadi 95444 kill_reason Another user logged on this global unique id 95444 mac 95444 bytes_out 0 95444 bytes_in 0 95444 station_ip 113.203.53.163 95444 port 11 95444 unique_id port 95445 username mohammadi 95445 kill_reason Another user logged on this global unique id 95445 mac 95445 bytes_out 0 95445 bytes_in 0 95445 station_ip 113.203.53.163 95445 port 11 95445 unique_id port 95450 username mirzaei 95450 mac 95450 bytes_out 0 95450 bytes_in 0 95450 station_ip 5.119.7.4 95450 port 16 95450 unique_id port 95450 remote_ip 10.8.1.14 95452 username mirzaei 95452 mac 95452 bytes_out 75480 95452 bytes_in 138027 95452 station_ip 5.119.7.4 95452 port 16 95452 unique_id port 95452 remote_ip 10.8.1.14 95454 username amirhosein 95454 unique_id port 95454 terminate_cause Lost-Carrier 95454 bytes_out 772528 95454 bytes_in 27779394 95454 station_ip 5.119.61.199 95454 port 15728812 95454 nas_port_type Virtual 95454 remote_ip 5.5.5.184 95455 username mirzaei 95455 kill_reason Maximum check online fails reached 95455 mac 95455 bytes_out 0 95455 bytes_in 0 95455 station_ip 5.119.7.4 95455 port 16 95455 unique_id port 95455 remote_ip 10.8.1.14 95456 username mirzaei 95456 mac 95456 bytes_out 0 95456 bytes_in 0 95456 station_ip 5.119.7.4 95456 port 8 95456 unique_id port 95456 remote_ip 10.8.0.14 95466 username amirhosein 95466 unique_id port 95466 terminate_cause Lost-Carrier 95466 bytes_out 759479 95466 bytes_in 8876192 95466 station_ip 5.119.221.63 95466 port 15728819 95466 nas_port_type Virtual 95466 remote_ip 5.5.5.179 95471 username mohammadi 95471 kill_reason Another user logged on this global unique id 95471 mac 95471 bytes_out 0 95471 bytes_in 0 95471 station_ip 113.203.53.163 95471 port 14 95471 unique_id port 95471 remote_ip 10.8.0.62 95474 username fariba 95474 mac 95474 bytes_out 261322 95474 bytes_in 294288 95474 station_ip 5.120.32.103 95474 port 15 95474 unique_id port 95474 remote_ip 10.8.1.46 95477 username mohammadi 95477 kill_reason Another user logged on this global unique id 95477 mac 95477 bytes_out 0 95477 bytes_in 0 95477 station_ip 113.203.53.163 95477 port 14 95477 unique_id port 95482 username alinezhad 95482 unique_id port 95482 terminate_cause User-Request 95482 bytes_out 0 95482 bytes_in 0 95482 station_ip 5.202.11.220 95482 port 15728829 95482 nas_port_type Virtual 95482 remote_ip 5.5.5.236 95490 username alihosseini 95490 mac 95490 bytes_out 0 95490 bytes_in 0 95490 station_ip 5.120.173.115 95490 port 18 95490 unique_id port 95490 remote_ip 10.8.1.34 95494 username askari 95494 mac 95494 bytes_out 0 95494 bytes_in 0 95494 station_ip 5.120.48.201 95494 port 16 95494 unique_id port 95497 username alinezhad 95497 unique_id port 95497 terminate_cause User-Request 95497 bytes_out 0 95497 bytes_in 0 95497 station_ip 5.202.11.220 95497 port 15728831 95497 nas_port_type Virtual 95497 remote_ip 5.5.5.236 95498 username morteza 95498 mac 95498 bytes_out 950787 95498 bytes_in 12933111 95498 station_ip 83.122.68.30 95498 port 14 95498 unique_id port 95498 remote_ip 10.8.0.42 95503 username alihosseini 95503 kill_reason Another user logged on this global unique id 95503 mac 95503 bytes_out 0 95503 bytes_in 0 95503 station_ip 5.120.173.115 95503 port 16 95503 unique_id port 95503 remote_ip 10.8.0.46 95504 username alihosseini 95504 kill_reason Another user logged on this global unique id 95504 mac 95504 bytes_out 0 95504 bytes_in 0 95504 station_ip 5.120.173.115 95458 terminate_cause Lost-Carrier 95458 bytes_out 108477 95458 bytes_in 383389 95458 station_ip 5.119.5.140 95458 port 15728813 95458 nas_port_type Virtual 95458 remote_ip 5.5.5.183 95459 username alihosseini 95459 mac 95459 bytes_out 0 95459 bytes_in 0 95459 station_ip 5.120.22.186 95459 port 16 95459 unique_id port 95459 remote_ip 10.8.1.34 95462 username amirhosein 95462 unique_id port 95462 terminate_cause Lost-Carrier 95462 bytes_out 641869 95462 bytes_in 7097424 95462 station_ip 5.119.61.199 95462 port 15728817 95462 nas_port_type Virtual 95462 remote_ip 5.5.5.184 95465 username caferibar 95465 kill_reason Relative expiration date has reached 95465 unique_id port 95465 bytes_out 0 95465 bytes_in 0 95465 station_ip 5.134.191.70 95465 port 15728821 95465 nas_port_type Virtual 188711 mac 188711 bytes_out 0 188711 bytes_in 0 188711 station_ip 83.123.0.241 188711 port 317 188711 unique_id port 188711 remote_ip 10.8.0.62 188717 username zahra1101 188717 mac 95468 username arabpour 95468 unique_id port 95468 terminate_cause User-Request 95468 bytes_out 226999 95468 bytes_in 5726331 95468 station_ip 37.129.27.115 95468 port 15728822 95468 nas_port_type Virtual 95468 remote_ip 5.5.5.178 95469 username mirzaei 95469 mac 95469 bytes_out 0 95469 bytes_in 0 95469 station_ip 5.119.7.4 95469 port 14 95469 unique_id port 95469 remote_ip 10.8.0.14 95470 username madadi2 95470 unique_id port 95470 terminate_cause Lost-Carrier 95470 bytes_out 738460 95470 bytes_in 2618150 95470 station_ip 5.120.58.185 95470 port 15728816 95470 nas_port_type Virtual 95470 remote_ip 5.5.5.181 95472 username mohammadi 95472 kill_reason Another user logged on this global unique id 95472 mac 95472 bytes_out 0 95472 bytes_in 0 95472 station_ip 113.203.53.163 95472 port 14 95472 unique_id port 95475 username mehdizare 95475 mac 95475 bytes_out 0 95475 bytes_in 0 95475 station_ip 5.119.212.150 95475 port 15 95475 unique_id port 95475 remote_ip 10.8.1.54 95479 username mohammadi 95479 mac 95479 bytes_out 0 95479 bytes_in 0 95479 station_ip 113.203.53.163 95479 port 14 95479 unique_id port 95480 username alinezhad 95480 unique_id port 95480 terminate_cause User-Request 95480 bytes_out 17567 95480 bytes_in 21367 95480 station_ip 5.202.11.220 95480 port 15728827 95480 nas_port_type Virtual 95480 remote_ip 5.5.5.236 95481 username alihosseini 95481 mac 95481 bytes_out 2140473 95481 bytes_in 23008946 95481 station_ip 5.120.173.115 95481 port 17 95481 unique_id port 95481 remote_ip 10.8.1.34 95483 username alihosseini 95483 kill_reason Maximum check online fails reached 95483 mac 95483 bytes_out 0 95483 bytes_in 0 95483 station_ip 5.120.173.115 95483 port 17 95483 unique_id port 95484 username mohammadi 95484 mac 95484 bytes_out 537520 95484 bytes_in 2726162 95484 station_ip 113.203.53.163 95484 port 8 95484 unique_id port 95484 remote_ip 10.8.0.62 95485 username alireza1 95485 unique_id port 95485 terminate_cause User-Request 95485 bytes_out 1674244 95485 bytes_in 4500028 95485 station_ip 5.120.163.16 95485 port 15728823 95485 nas_port_type Virtual 95485 remote_ip 5.5.5.177 95489 username mohammadi 95489 mac 95489 bytes_out 23804 95489 bytes_in 31895 95489 station_ip 113.203.53.163 95489 port 14 95489 unique_id port 95489 remote_ip 10.8.0.62 95493 username Alirezaza 95493 unique_id port 95493 terminate_cause Lost-Carrier 95493 bytes_out 6059087 95493 bytes_in 138773958 95493 station_ip 5.119.44.174 95493 port 15728826 188717 bytes_out 0 188717 bytes_in 0 188712 bytes_in 12278287 188712 station_ip 83.123.59.219 188712 port 393 188712 unique_id port 188712 remote_ip 10.8.0.50 188714 username zahra1101 188714 kill_reason Maximum check online fails reached 95464 username alihosseini 95464 mac 95464 bytes_out 139497 95464 bytes_in 1023412 95464 station_ip 5.120.22.186 95464 port 8 95464 unique_id port 95464 remote_ip 10.8.0.46 95473 username alinezhad 95473 unique_id port 95473 terminate_cause User-Request 95473 bytes_out 0 95473 bytes_in 0 95473 station_ip 5.202.11.220 95473 port 15728825 95473 nas_port_type Virtual 95473 remote_ip 5.5.5.236 95476 username mehdizare 95476 mac 95476 bytes_out 0 95476 bytes_in 0 95476 station_ip 5.119.212.150 95476 port 8 95476 unique_id port 95476 remote_ip 10.8.0.70 95478 username askari 95478 kill_reason Another user logged on this global unique id 95478 mac 95478 bytes_out 0 95478 bytes_in 0 95478 station_ip 5.120.48.201 95478 port 16 95478 unique_id port 95478 remote_ip 10.8.1.30 95486 username alihosseini 95486 mac 95486 bytes_out 0 95486 bytes_in 0 95486 station_ip 5.120.173.115 95486 port 18 95486 unique_id port 95486 remote_ip 10.8.1.34 95487 username mohammadi 95487 mac 95487 bytes_out 69107 95487 bytes_in 71094 95487 station_ip 113.203.53.163 95487 port 14 95487 unique_id port 95487 remote_ip 10.8.0.62 95488 username mohammadi 95488 mac 95488 bytes_out 96553 95488 bytes_in 76135 95488 station_ip 113.203.53.163 95488 port 8 95488 unique_id port 95488 remote_ip 10.8.0.62 95491 username aminvpn 95491 unique_id port 95491 terminate_cause Lost-Carrier 95491 bytes_out 166017 95491 bytes_in 2117152 95491 station_ip 5.119.152.134 95491 port 15728824 95491 nas_port_type Virtual 95491 remote_ip 5.5.5.176 95492 username alihosseini 95492 mac 95492 bytes_out 0 95492 bytes_in 0 95492 station_ip 5.120.173.115 95492 port 14 95492 unique_id port 95492 remote_ip 10.8.0.46 95500 username mohammadmahdi 95500 mac 95500 bytes_out 2690588 95500 bytes_in 23757902 95500 station_ip 5.119.128.239 95500 port 8 95500 unique_id port 95500 remote_ip 10.8.0.82 95505 username hoorieh 95505 kill_reason Another user logged on this global unique id 95505 mac 95505 bytes_out 0 95505 bytes_in 0 95505 station_ip 5.120.115.245 95505 port 14 95505 unique_id port 95505 remote_ip 10.8.0.78 95515 username alihosseini 95515 mac 95515 bytes_out 0 95515 bytes_in 0 95515 station_ip 5.120.173.115 95515 port 8 95515 unique_id port 95515 remote_ip 10.8.0.46 95522 username alihosseini 95522 kill_reason Another user logged on this global unique id 95522 mac 95522 bytes_out 0 95522 bytes_in 0 95522 station_ip 5.120.173.115 95522 port 8 95522 unique_id port 95524 username madadi2 95524 unique_id port 95524 terminate_cause Lost-Carrier 95524 bytes_out 1505162 95524 bytes_in 3779631 95524 station_ip 5.119.22.102 95524 port 15728833 95524 nas_port_type Virtual 95524 remote_ip 5.5.5.175 95525 username mirzaei 95525 kill_reason Another user logged on this global unique id 95525 mac 95525 bytes_out 0 95525 bytes_in 0 95525 station_ip 5.119.7.4 95525 port 11 95525 unique_id port 95525 remote_ip 10.8.0.14 95529 username mirzaei 95529 kill_reason Another user logged on this global unique id 95529 mac 95529 bytes_out 0 95529 bytes_in 0 95529 station_ip 5.119.7.4 95529 port 11 95529 unique_id port 95532 username mammad 95532 unique_id port 95532 terminate_cause Lost-Carrier 95532 bytes_out 2000522 95532 bytes_in 28405042 95532 station_ip 31.58.225.214 95532 port 15728841 95493 nas_port_type Virtual 95493 remote_ip 5.5.5.187 95495 username alireza1 95495 unique_id port 95495 terminate_cause Lost-Carrier 95495 bytes_out 195733 95495 bytes_in 600563 95495 station_ip 5.120.163.16 95495 port 15728830 95495 nas_port_type Virtual 95495 remote_ip 5.5.5.177 95496 username alihosseini 95496 mac 95496 bytes_out 0 95496 bytes_in 0 95496 station_ip 5.120.173.115 95496 port 14 95496 unique_id port 95496 remote_ip 10.8.0.46 95499 username mohammadi 95499 mac 95499 bytes_out 41629 95499 bytes_in 84039 95499 station_ip 113.203.53.163 95499 port 17 95499 unique_id port 95499 remote_ip 10.8.0.62 95501 username mohammadi 95501 mac 95501 bytes_out 63602 95501 bytes_in 120156 95501 station_ip 113.203.53.163 95501 port 8 95501 unique_id port 95501 remote_ip 10.8.0.62 95502 username heydari1 95502 unique_id port 95502 terminate_cause User-Request 95502 bytes_out 334340 95502 bytes_in 1668570 95502 station_ip 5.120.151.112 95502 port 15728828 95502 nas_port_type Virtual 95502 remote_ip 5.5.5.244 95506 username morteza 95506 mac 95506 bytes_out 6548489 95506 bytes_in 72486821 95506 station_ip 83.122.83.214 95506 port 16 95506 unique_id port 95506 remote_ip 10.8.1.26 95508 username alihosseini 95508 mac 95508 bytes_out 0 95508 bytes_in 0 95508 station_ip 5.120.173.115 95508 port 8 95508 unique_id port 95508 remote_ip 10.8.0.46 95509 username hoorieh 95509 mac 95509 bytes_out 0 95509 bytes_in 0 95509 station_ip 5.120.115.245 95509 port 14 95509 unique_id port 95513 username alihosseini 95513 mac 95513 bytes_out 0 95513 bytes_in 0 95513 station_ip 5.120.173.115 95513 port 8 95513 unique_id port 95513 remote_ip 10.8.0.46 95514 username heydari1 95514 unique_id port 95514 terminate_cause User-Request 95514 bytes_out 27705 95514 bytes_in 88750 95514 station_ip 5.120.151.112 95514 port 15728834 95514 nas_port_type Virtual 95514 remote_ip 5.5.5.244 95516 username alihosseini 95516 mac 95516 bytes_out 0 95516 bytes_in 0 95516 station_ip 5.120.173.115 95516 port 8 95516 unique_id port 95516 remote_ip 10.8.0.46 95519 username alihosseini 95519 kill_reason Another user logged on this global unique id 95519 mac 95519 bytes_out 0 95519 bytes_in 0 95519 station_ip 5.120.173.115 95519 port 8 95519 unique_id port 95519 remote_ip 10.8.0.46 95523 username alihosseini 95523 mac 95523 bytes_out 0 95523 bytes_in 0 95523 station_ip 5.120.173.115 95523 port 8 95523 unique_id port 95526 username morteza 95526 kill_reason Another user logged on this global unique id 95526 mac 95526 bytes_out 0 95526 bytes_in 0 95526 station_ip 83.122.28.178 95526 port 8 95526 unique_id port 95526 remote_ip 10.8.0.42 95527 username morteza 95527 kill_reason Another user logged on this global unique id 95527 mac 95527 bytes_out 0 95527 bytes_in 0 95527 station_ip 83.122.28.178 95527 port 8 95527 unique_id port 95528 username morteza 95528 mac 95528 bytes_out 0 95528 bytes_in 0 95528 station_ip 83.122.28.178 95528 port 8 95528 unique_id port 95530 username mirzaei 95530 kill_reason Another user logged on this global unique id 95530 mac 95530 bytes_out 0 95530 bytes_in 0 95530 station_ip 5.119.7.4 95530 port 11 95530 unique_id port 95534 username mammad 95534 unique_id port 95534 terminate_cause User-Request 95534 bytes_out 16841136 95534 bytes_in 206306730 95534 station_ip 5.233.52.98 95534 port 15728838 95534 nas_port_type Virtual 95534 remote_ip 5.5.5.174 95535 username mammad 95504 port 16 95504 unique_id port 95507 username mohammadmahdi 95507 mac 95507 bytes_out 738032 95507 bytes_in 13536166 95507 station_ip 5.119.128.239 95507 port 8 95507 unique_id port 95507 remote_ip 10.8.0.82 95510 username alinezhad 95510 unique_id port 95510 terminate_cause User-Request 95510 bytes_out 0 95510 bytes_in 0 95510 station_ip 5.202.11.220 95510 port 15728832 95510 nas_port_type Virtual 95510 remote_ip 5.5.5.236 95511 username morteza 95511 mac 95511 bytes_out 2590125 95511 bytes_in 160871 95511 station_ip 83.122.83.214 95511 port 16 95511 unique_id port 95511 remote_ip 10.8.0.42 95512 username mehdizare 95512 mac 95512 bytes_out 373581 95512 bytes_in 1504208 95512 station_ip 5.119.212.150 95512 port 15 95512 unique_id port 95512 remote_ip 10.8.1.54 95517 username caferibar 95517 kill_reason Relative expiration date has reached 95517 unique_id port 95517 bytes_out 0 95517 bytes_in 0 95517 station_ip 5.72.224.226 95517 port 15728835 95517 nas_port_type Virtual 95518 username mammad 95518 unique_id port 95518 terminate_cause User-Request 95518 bytes_out 350446 95518 bytes_in 3577104 95518 station_ip 5.233.52.98 95518 port 15728836 95518 nas_port_type Virtual 95518 remote_ip 5.5.5.174 95520 username alinezhad 95520 unique_id port 95520 terminate_cause User-Request 95520 bytes_out 45337 95520 bytes_in 835425 95520 station_ip 37.129.39.120 95520 port 15728837 95520 nas_port_type Virtual 95520 remote_ip 5.5.5.173 95521 username alihosseini 95521 kill_reason Another user logged on this global unique id 95521 mac 95521 bytes_out 0 95521 bytes_in 0 95521 station_ip 5.120.173.115 95521 port 8 95521 unique_id port 95531 username mirzaei 95531 kill_reason Another user logged on this global unique id 95531 mac 95531 bytes_out 0 95531 bytes_in 0 95531 station_ip 5.119.7.4 95531 port 11 95531 unique_id port 95533 username mirzaei 95533 kill_reason Another user logged on this global unique id 95533 mac 95533 bytes_out 0 95533 bytes_in 0 95533 station_ip 5.119.7.4 95533 port 11 95533 unique_id port 95535 unique_id port 95535 terminate_cause User-Request 95535 bytes_out 77012 95535 bytes_in 324083 95535 station_ip 5.233.52.98 95535 port 15728843 95535 nas_port_type Virtual 95535 remote_ip 5.5.5.174 95536 username mammad 95536 unique_id port 95536 terminate_cause User-Request 95536 bytes_out 750970 95536 bytes_in 6391185 95536 station_ip 5.233.52.98 95536 port 15728844 95536 nas_port_type Virtual 95536 remote_ip 5.5.5.174 95542 username aminvpn 95542 unique_id port 95542 terminate_cause Admin-Reboot 95542 bytes_out 657288 95542 bytes_in 1516961 95542 station_ip 5.119.91.16 95542 port 15728846 95542 nas_port_type Virtual 95542 remote_ip 5.5.5.170 95544 username alinezhad 95544 unique_id port 95544 terminate_cause User-Request 95544 bytes_out 20469 95544 bytes_in 40189 95544 station_ip 5.202.0.254 95544 port 15728642 95544 nas_port_type Virtual 95544 remote_ip 5.5.5.253 95554 username mohammadi 95554 mac 95554 bytes_out 0 95554 bytes_in 0 95554 station_ip 113.203.13.7 95554 port 14 95554 unique_id port 95557 username aminvpn 95557 mac 95557 bytes_out 447761 95557 bytes_in 1055570 95557 station_ip 83.123.113.54 95557 port 15 95557 unique_id port 95557 remote_ip 10.8.1.6 95559 username askari 95559 kill_reason Another user logged on this global unique id 95559 mac 95559 bytes_out 0 95559 bytes_in 0 95559 station_ip 5.120.20.203 95559 port 15 95559 unique_id port 95559 remote_ip 10.8.1.30 95561 username askari 95561 mac 95561 bytes_out 0 95532 nas_port_type Virtual 95532 remote_ip 5.5.5.172 95537 username aminvpn 95537 kill_reason Another user logged on this global unique id 95537 mac 95537 bytes_out 0 95537 bytes_in 0 95537 station_ip 5.119.152.134 95537 port 15 95537 unique_id port 95537 remote_ip 10.8.1.6 95538 username aminvpn 95538 mac 95538 bytes_out 0 95538 bytes_in 0 95538 station_ip 5.119.152.134 95538 port 15 95538 unique_id port 95539 username mehdizare 95539 mac 95539 bytes_out 3783131 95539 bytes_in 41726530 95539 station_ip 5.119.212.150 95539 port 16 95539 unique_id port 95539 remote_ip 10.8.1.54 95540 username alinezhad 95540 unique_id port 95540 terminate_cause User-Request 95540 bytes_out 0 95540 bytes_in 0 95540 station_ip 5.202.0.254 95540 port 15728845 95540 nas_port_type Virtual 95540 remote_ip 5.5.5.171 95541 username Alirezaza 95541 unique_id port 95541 terminate_cause Admin-Reboot 95541 bytes_out 286932 95541 bytes_in 523302 95541 station_ip 5.119.44.174 95541 port 15728847 95541 nas_port_type Virtual 95541 remote_ip 5.5.5.187 95547 username morteza 95547 mac 95547 bytes_out 0 95547 bytes_in 0 95547 station_ip 83.122.110.138 95547 port 8 95547 unique_id port 95548 username morteza 95548 mac 95548 bytes_out 0 95548 bytes_in 0 95548 station_ip 83.122.110.138 95548 port 8 95548 unique_id port 95548 remote_ip 10.8.0.42 95550 username alinezhad 95550 unique_id port 95550 terminate_cause User-Request 95550 bytes_out 0 95550 bytes_in 0 95550 station_ip 5.202.0.254 95550 port 15728644 95550 nas_port_type Virtual 95550 remote_ip 5.5.5.253 95552 username aminvpn 95552 unique_id port 95552 terminate_cause Lost-Carrier 95552 bytes_out 2733509 95552 bytes_in 21319406 95552 station_ip 5.119.91.16 95552 port 15728641 95552 nas_port_type Virtual 95552 remote_ip 5.5.5.254 95556 username mohammadi 95556 mac 95556 bytes_out 0 95556 bytes_in 0 95556 station_ip 113.203.13.7 95556 port 14 95556 unique_id port 95556 remote_ip 10.8.0.62 95560 username Alirezaza 95560 unique_id port 95560 terminate_cause User-Request 95560 bytes_out 0 95560 bytes_in 0 95560 station_ip 5.120.97.130 95560 port 15728648 95560 nas_port_type Virtual 95560 remote_ip 5.5.5.248 95565 username alihosseini 95565 mac 95565 bytes_out 20628 95565 bytes_in 24263 95565 station_ip 5.119.38.85 95565 port 8 95565 unique_id port 95565 remote_ip 10.8.0.46 95570 username alihosseini 95570 mac 95570 bytes_out 417602 95570 bytes_in 7360410 95570 station_ip 5.119.38.85 95570 port 8 95570 unique_id port 95570 remote_ip 10.8.0.46 95579 username alihosseini 95579 mac 95579 bytes_out 82823 95579 bytes_in 999571 95579 station_ip 5.119.38.85 95579 port 8 95579 unique_id port 95579 remote_ip 10.8.0.46 95581 username alihosseini 95581 mac 95581 bytes_out 0 95581 bytes_in 0 95581 station_ip 5.119.38.85 95581 port 8 95581 unique_id port 95581 remote_ip 10.8.0.46 95582 username mehdizare 95582 kill_reason Another user logged on this global unique id 95582 mac 95582 bytes_out 0 95582 bytes_in 0 95582 station_ip 5.119.172.108 95582 port 16 95582 unique_id port 95584 username aminvpn 95584 mac 95584 bytes_out 1587579 95584 bytes_in 24262663 95584 station_ip 83.122.98.136 95584 port 8 95584 unique_id port 95584 remote_ip 10.8.0.6 95586 username alihosseini 95586 mac 95586 bytes_out 0 95586 bytes_in 0 95586 station_ip 5.119.38.85 95586 port 8 95586 unique_id port 95586 remote_ip 10.8.0.46 95589 username aminvpn 95543 username tahmasebi 95543 unique_id port 95543 terminate_cause Admin-Reboot 95543 bytes_out 15913545 95543 bytes_in 168038167 95543 station_ip 5.119.109.166 95543 port 15728842 95543 nas_port_type Virtual 95543 remote_ip 5.5.5.209 95545 username morteza 95545 kill_reason Another user logged on this global unique id 95545 mac 95545 bytes_out 0 95545 bytes_in 0 95545 station_ip 83.122.110.138 95545 port 8 95545 unique_id port 95545 remote_ip 10.8.0.42 95546 username heydari1 95546 unique_id port 95546 terminate_cause User-Request 95546 bytes_out 41218 95546 bytes_in 91095 95546 station_ip 5.120.151.112 95546 port 15728643 95546 nas_port_type Virtual 95546 remote_ip 5.5.5.252 95549 username mohammadi 95549 kill_reason Another user logged on this global unique id 95549 mac 95549 bytes_out 0 95549 bytes_in 0 95549 station_ip 113.203.13.7 95549 port 14 95549 unique_id port 95549 remote_ip 10.8.0.62 95551 username ahmadi 95551 unique_id port 95551 terminate_cause User-Request 95551 bytes_out 185524 95551 bytes_in 1433455 95551 station_ip 37.129.131.98 95551 port 15728645 95551 nas_port_type Virtual 95551 remote_ip 5.5.5.251 95553 username mohammadi 95553 kill_reason Another user logged on this global unique id 95553 mac 95553 bytes_out 0 95553 bytes_in 0 95553 station_ip 113.203.13.7 95553 port 14 95553 unique_id port 95555 username mohammadi 95555 mac 95555 bytes_out 0 95555 bytes_in 0 95555 station_ip 113.203.13.7 95555 port 8 95555 unique_id port 95555 remote_ip 10.8.0.62 95558 username Alirezaza 95558 unique_id port 95558 terminate_cause Lost-Carrier 95558 bytes_out 2371793 95558 bytes_in 68366587 95558 station_ip 5.119.44.174 95558 port 15728646 95558 nas_port_type Virtual 95558 remote_ip 5.5.5.250 95562 username alireza1 95562 unique_id port 95562 terminate_cause User-Request 95562 bytes_out 2864125 95562 bytes_in 17665616 95562 station_ip 5.120.163.16 95562 port 15728640 95562 nas_port_type Virtual 95562 remote_ip 5.5.5.255 95563 username alihosseini 95563 mac 95563 bytes_out 0 95563 bytes_in 0 95563 station_ip 5.119.38.85 95563 port 15 95563 unique_id port 95563 remote_ip 10.8.1.34 95568 username alihosseini 95568 mac 95568 bytes_out 0 95568 bytes_in 0 95568 station_ip 5.119.38.85 95568 port 15 95568 unique_id port 95568 remote_ip 10.8.1.34 95569 username alihosseini 95569 mac 95569 bytes_out 0 95569 bytes_in 0 95569 station_ip 5.119.38.85 95569 port 8 95569 unique_id port 95569 remote_ip 10.8.0.46 95571 username mehdizare 95571 kill_reason Another user logged on this global unique id 95571 mac 95571 bytes_out 0 95571 bytes_in 0 95571 station_ip 5.119.172.108 95571 port 16 95571 unique_id port 95571 remote_ip 10.8.0.70 95573 username mehdizare 95573 kill_reason Another user logged on this global unique id 95573 mac 95573 bytes_out 0 95573 bytes_in 0 95573 station_ip 5.119.172.108 95573 port 16 95573 unique_id port 95574 username alihosseini 95574 kill_reason Maximum check online fails reached 95574 mac 95574 bytes_out 0 95574 bytes_in 0 95574 station_ip 5.119.38.85 95574 port 15 95574 unique_id port 95576 username alireza1 95576 unique_id port 95576 terminate_cause Lost-Carrier 95576 bytes_out 183231 95576 bytes_in 1074020 95576 station_ip 5.120.163.16 95576 port 15728650 95576 nas_port_type Virtual 95576 remote_ip 5.5.5.255 95577 username alihosseini 95577 mac 95577 bytes_out 97788 95577 bytes_in 999966 95577 station_ip 5.119.38.85 95577 port 8 95577 unique_id port 95577 remote_ip 10.8.0.46 95583 username mahbobeh 95583 unique_id port 95561 bytes_in 0 95561 station_ip 5.120.20.203 95561 port 15 95561 unique_id port 95564 username mahbobeh 95564 unique_id port 95564 terminate_cause Lost-Carrier 95564 bytes_out 9796412 95564 bytes_in 212509219 95564 station_ip 83.122.197.30 95564 port 15728649 95564 nas_port_type Virtual 95564 remote_ip 5.5.5.247 95566 username madadi2 95566 unique_id port 95566 terminate_cause Lost-Carrier 95566 bytes_out 550260 95566 bytes_in 2509698 95566 station_ip 5.119.43.134 95566 port 15728647 95566 nas_port_type Virtual 95566 remote_ip 5.5.5.249 95567 username mohammadi 95567 mac 95567 bytes_out 294395 95567 bytes_in 1175604 95567 station_ip 113.203.8.59 95567 port 8 95567 unique_id port 95567 remote_ip 10.8.0.62 95572 username alihosseini 95572 mac 95572 bytes_out 0 95572 bytes_in 0 95572 station_ip 5.119.38.85 95572 port 8 95572 unique_id port 95572 remote_ip 10.8.0.46 95575 username alinezhad 95575 unique_id port 95575 terminate_cause User-Request 95575 bytes_out 0 95575 bytes_in 0 95575 station_ip 5.202.0.254 95575 port 15728652 95575 nas_port_type Virtual 95575 remote_ip 5.5.5.253 95578 username mehdizare 95578 kill_reason Another user logged on this global unique id 95578 mac 95578 bytes_out 0 95578 bytes_in 0 95578 station_ip 5.119.172.108 95578 port 16 95578 unique_id port 95580 username alihosseini 95580 mac 95580 bytes_out 247429 95580 bytes_in 1204139 95580 station_ip 5.119.38.85 95580 port 8 95580 unique_id port 95580 remote_ip 10.8.0.46 95592 username mohammadi 95592 mac 95592 bytes_out 23290 95592 bytes_in 200861 95592 station_ip 113.203.27.31 95592 port 8 95592 unique_id port 95592 remote_ip 10.8.0.62 95593 username alihosseini 95593 mac 95593 bytes_out 0 95593 bytes_in 0 95593 station_ip 5.119.38.85 95593 port 8 95593 unique_id port 95593 remote_ip 10.8.0.46 95596 username alihosseini 95596 mac 95596 bytes_out 0 95596 bytes_in 0 95596 station_ip 5.119.38.85 95596 port 8 95596 unique_id port 95596 remote_ip 10.8.0.46 95602 username aminvpn 95602 mac 95602 bytes_out 0 95602 bytes_in 0 95602 station_ip 5.119.219.20 95602 port 17 95602 unique_id port 95602 remote_ip 10.8.0.6 95604 username alireza1 95604 unique_id port 95604 terminate_cause User-Request 95604 bytes_out 821218 95604 bytes_in 32527555 95604 station_ip 5.120.163.16 95604 port 15728653 95604 nas_port_type Virtual 95604 remote_ip 5.5.5.255 95606 username mohammadmahdi 95606 mac 95606 bytes_out 0 95606 bytes_in 0 95606 station_ip 5.119.47.229 95606 port 14 95606 unique_id port 95606 remote_ip 10.8.0.82 95607 username alihosseini 95607 mac 95607 bytes_out 0 95607 bytes_in 0 95607 station_ip 5.119.38.85 95607 port 14 95607 unique_id port 95607 remote_ip 10.8.0.46 95609 username alihosseini 95609 mac 95609 bytes_out 0 95609 bytes_in 0 95609 station_ip 5.119.38.85 95609 port 18 95609 unique_id port 95609 remote_ip 10.8.1.34 95613 username aminvpn 95613 mac 95613 bytes_out 0 95613 bytes_in 0 95613 station_ip 5.119.219.20 95613 port 16 95613 unique_id port 95618 username amirhosein 95618 kill_reason Wrong password 95618 unique_id port 95618 bytes_out 0 95618 bytes_in 0 95618 station_ip 5.119.13.140 95618 port 15728671 95618 nas_port_type Virtual 95622 username alihosseini 95622 mac 95622 bytes_out 0 95622 bytes_in 0 95622 station_ip 5.119.38.85 95622 port 14 95622 unique_id port 95622 remote_ip 10.8.0.46 95624 username aminvpn 95583 terminate_cause Lost-Carrier 95583 bytes_out 3859407 95583 bytes_in 83924348 95583 station_ip 83.122.197.30 95583 port 15728651 95583 nas_port_type Virtual 95583 remote_ip 5.5.5.247 95585 username alihosseini 95585 mac 95585 bytes_out 0 95585 bytes_in 0 95585 station_ip 5.119.38.85 95585 port 8 95585 unique_id port 95585 remote_ip 10.8.0.46 95587 username mehdizare 95587 kill_reason Another user logged on this global unique id 95587 mac 95587 bytes_out 0 95587 bytes_in 0 95587 station_ip 5.119.172.108 95587 port 16 95587 unique_id port 95588 username alihosseini 95588 mac 95588 bytes_out 0 95588 bytes_in 0 95588 station_ip 5.119.38.85 95588 port 8 95588 unique_id port 95588 remote_ip 10.8.0.46 95590 username mehdizare 95590 kill_reason Another user logged on this global unique id 95590 mac 95590 bytes_out 0 95590 bytes_in 0 95590 station_ip 5.119.172.108 95590 port 16 95590 unique_id port 95598 username jamali 95598 kill_reason Another user logged on this global unique id 95598 mac 95598 bytes_out 0 95598 bytes_in 0 95598 station_ip 113.203.6.175 95598 port 14 95598 unique_id port 95603 username jamali 95603 mac 95603 bytes_out 0 95603 bytes_in 0 95603 station_ip 113.203.6.175 95603 port 14 95603 unique_id port 95605 username alihosseini 95605 mac 95605 bytes_out 0 95605 bytes_in 0 95605 station_ip 5.119.38.85 95605 port 17 95605 unique_id port 95605 remote_ip 10.8.0.46 95610 username alihosseini 95610 mac 95610 bytes_out 0 95610 bytes_in 0 95610 station_ip 5.119.38.85 95610 port 14 95610 unique_id port 95610 remote_ip 10.8.0.46 95611 username aminvpn 95611 kill_reason Another user logged on this global unique id 95611 mac 95611 bytes_out 0 95611 bytes_in 0 95611 station_ip 5.119.219.20 95611 port 16 95611 unique_id port 95611 remote_ip 10.8.1.6 95612 username mohammadi 95612 mac 95612 bytes_out 0 95612 bytes_in 0 95612 station_ip 113.203.27.31 95612 port 8 95612 unique_id port 95612 remote_ip 10.8.0.62 95615 username mirzaei 95615 kill_reason Another user logged on this global unique id 95615 mac 95615 bytes_out 0 95615 bytes_in 0 95615 station_ip 5.119.7.4 95615 port 11 95615 unique_id port 95616 username amirhosein 95616 kill_reason Wrong password 95616 unique_id port 95616 bytes_out 0 95616 bytes_in 0 95616 station_ip 5.119.13.140 95616 port 15728669 95616 nas_port_type Virtual 95617 username amirhosein 95617 kill_reason Wrong password 95617 unique_id port 95617 bytes_out 0 95617 bytes_in 0 95617 station_ip 5.119.13.140 95617 port 15728670 95617 nas_port_type Virtual 95621 username amirhosein 95621 kill_reason Wrong password 95621 unique_id port 95621 bytes_out 0 95621 bytes_in 0 95621 station_ip 5.119.13.140 95621 port 15728674 95621 nas_port_type Virtual 95623 username alinezhad 95623 unique_id port 95623 terminate_cause User-Request 95623 bytes_out 0 95623 bytes_in 0 95623 station_ip 5.202.0.254 95623 port 15728676 95623 nas_port_type Virtual 95623 remote_ip 5.5.5.253 95628 username amirhosein 95628 kill_reason Maximum number of concurrent logins reached 95628 unique_id port 95628 bytes_out 0 95628 bytes_in 0 95628 station_ip 5.119.13.140 95628 port 15728680 95628 nas_port_type Virtual 95631 username amirhosein 95631 unique_id port 95631 terminate_cause Lost-Carrier 95631 bytes_out 1501435 95631 bytes_in 11449360 95631 station_ip 5.119.13.140 95631 port 15728675 95631 nas_port_type Virtual 95631 remote_ip 5.5.5.245 95632 username mirzaei 95632 kill_reason Another user logged on this global unique id 95632 mac 95589 mac 95589 bytes_out 0 95589 bytes_in 0 95589 station_ip 83.122.98.136 95589 port 17 95589 unique_id port 95589 remote_ip 10.8.0.6 95591 username alihosseini 95591 mac 95591 bytes_out 0 95591 bytes_in 0 95591 station_ip 5.119.38.85 95591 port 16 95591 unique_id port 95591 remote_ip 10.8.1.34 95594 username jamali 95594 kill_reason Another user logged on this global unique id 95594 mac 95594 bytes_out 0 95594 bytes_in 0 95594 station_ip 113.203.6.175 95594 port 14 95594 unique_id port 95594 remote_ip 10.8.0.50 95595 username mohammadi 95595 mac 95595 bytes_out 613030 95595 bytes_in 5400342 95595 station_ip 113.203.27.31 95595 port 8 95595 unique_id port 95595 remote_ip 10.8.0.62 95597 username mohammadi 95597 mac 95597 bytes_out 0 95597 bytes_in 0 95597 station_ip 113.203.27.31 95597 port 18 95597 unique_id port 95597 remote_ip 10.8.0.62 95599 username mohammadi 95599 mac 95599 bytes_out 0 95599 bytes_in 0 95599 station_ip 113.203.27.31 95599 port 18 95599 unique_id port 95599 remote_ip 10.8.1.66 95600 username askari 95600 mac 95600 bytes_out 2230381 95600 bytes_in 41996913 95600 station_ip 5.119.223.170 95600 port 16 95600 unique_id port 95600 remote_ip 10.8.1.30 95601 username mohammadi 95601 mac 95601 bytes_out 0 95601 bytes_in 0 95601 station_ip 113.203.27.31 95601 port 16 95601 unique_id port 95601 remote_ip 10.8.1.66 95608 username alihosseini 95608 mac 95608 bytes_out 0 95608 bytes_in 0 95608 station_ip 5.119.38.85 95608 port 14 95608 unique_id port 95608 remote_ip 10.8.0.46 95614 username alihosseini 95614 mac 95614 bytes_out 0 95614 bytes_in 0 95614 station_ip 5.119.38.85 95614 port 8 95614 unique_id port 95614 remote_ip 10.8.0.46 95619 username amirhosein 95619 kill_reason Wrong password 95619 unique_id port 95619 bytes_out 0 95619 bytes_in 0 95619 station_ip 5.119.13.140 95619 port 15728672 95619 nas_port_type Virtual 95620 username amirhosein 95620 kill_reason Wrong password 95620 unique_id port 95620 bytes_out 0 95620 bytes_in 0 95620 station_ip 5.119.13.140 95620 port 15728673 95620 nas_port_type Virtual 95625 username alihosseini 95625 mac 95625 bytes_out 0 95625 bytes_in 0 95625 station_ip 5.119.38.85 95625 port 16 95625 unique_id port 95625 remote_ip 10.8.1.34 95627 username alihosseini 95627 mac 95627 bytes_out 0 95627 bytes_in 0 95627 station_ip 5.119.38.85 95627 port 14 95627 unique_id port 95627 remote_ip 10.8.0.46 95630 username amirhosein 95630 kill_reason Maximum number of concurrent logins reached 95630 unique_id port 95630 bytes_out 0 95630 bytes_in 0 95630 station_ip 5.119.13.140 95630 port 15728682 95630 nas_port_type Virtual 95633 username madadi2 95633 unique_id port 95633 terminate_cause Lost-Carrier 95633 bytes_out 237913 95633 bytes_in 2861758 95633 station_ip 5.119.213.137 95633 port 15728678 95633 nas_port_type Virtual 95633 remote_ip 5.5.5.243 95636 username alihosseini 95636 mac 95636 bytes_out 990309 95636 bytes_in 9203817 95636 station_ip 5.119.38.85 95636 port 16 95636 unique_id port 95636 remote_ip 10.8.1.34 95637 username alihosseini 95637 mac 95637 bytes_out 0 95637 bytes_in 0 95637 station_ip 5.119.38.85 95637 port 16 95637 unique_id port 95637 remote_ip 10.8.1.34 95638 username alihosseini 95638 mac 95638 bytes_out 0 95638 bytes_in 0 95638 station_ip 5.119.38.85 95638 port 16 95638 unique_id port 95638 remote_ip 10.8.1.34 95624 unique_id port 95624 terminate_cause Lost-Carrier 95624 bytes_out 716136 95624 bytes_in 14704694 95624 station_ip 5.119.30.241 95624 port 15728663 95624 nas_port_type Virtual 95624 remote_ip 5.5.5.246 95626 username ahmadipour 95626 unique_id port 95626 terminate_cause User-Request 95626 bytes_out 14873605 95626 bytes_in 105625819 95626 station_ip 83.122.78.80 95626 port 15728677 95626 nas_port_type Virtual 95626 remote_ip 5.5.5.244 95629 username amirhosein 95629 kill_reason Maximum number of concurrent logins reached 95629 unique_id port 95629 bytes_out 0 95629 bytes_in 0 95629 station_ip 5.119.13.140 95629 port 15728681 95629 nas_port_type Virtual 95635 username mahbobeh 95635 unique_id port 95635 terminate_cause Lost-Carrier 95635 bytes_out 6702681 95635 bytes_in 110216031 95635 station_ip 83.122.197.30 95635 port 15728654 95635 nas_port_type Virtual 95635 remote_ip 5.5.5.247 95639 username askari 95639 kill_reason Another user logged on this global unique id 95639 mac 95639 bytes_out 0 95639 bytes_in 0 95639 station_ip 5.120.57.149 95639 port 14 95639 unique_id port 95639 remote_ip 10.8.0.34 95647 username Alirezaza 95647 unique_id port 95647 terminate_cause Lost-Carrier 95647 bytes_out 639791 95647 bytes_in 4898323 95647 station_ip 5.119.122.59 95647 port 15728683 95647 nas_port_type Virtual 95647 remote_ip 5.5.5.241 95649 username alihosseini 95649 mac 95649 bytes_out 0 95649 bytes_in 0 95649 station_ip 5.119.38.85 95649 port 8 95649 unique_id port 95649 remote_ip 10.8.0.46 95655 username alihosseini 95655 mac 95655 bytes_out 0 95655 bytes_in 0 95655 station_ip 5.119.38.85 95655 port 14 95655 unique_id port 95655 remote_ip 10.8.0.46 95658 username alihosseini 95658 mac 95658 bytes_out 0 95658 bytes_in 0 95658 station_ip 5.119.38.85 95658 port 14 95658 unique_id port 95658 remote_ip 10.8.0.46 95659 username alihosseini 95659 mac 95659 bytes_out 0 95659 bytes_in 0 95659 station_ip 5.119.38.85 95659 port 14 95659 unique_id port 95659 remote_ip 10.8.0.46 95670 username aminvpn 95670 kill_reason Another user logged on this global unique id 95670 mac 95670 bytes_out 0 95670 bytes_in 0 95670 station_ip 83.122.1.252 95670 port 14 95670 unique_id port 95670 remote_ip 10.8.0.6 95671 username aminvpn 95671 mac 95671 bytes_out 0 95671 bytes_in 0 95671 station_ip 83.122.1.252 95671 port 14 95671 unique_id port 95676 username alinezhad 95676 unique_id port 95676 terminate_cause User-Request 95676 bytes_out 0 95676 bytes_in 0 95676 station_ip 5.202.0.254 95676 port 15728695 95676 nas_port_type Virtual 95676 remote_ip 5.5.5.253 95680 username alihosseini 95680 mac 95680 bytes_out 0 95680 bytes_in 0 95680 station_ip 5.119.28.75 95680 port 16 95680 unique_id port 95680 remote_ip 10.8.1.34 95681 username madadi2 95681 unique_id port 95681 terminate_cause Lost-Carrier 95681 bytes_out 1734978 95681 bytes_in 8540360 95681 station_ip 5.119.144.25 95681 port 15728690 95681 nas_port_type Virtual 95681 remote_ip 5.5.5.237 95683 username alihosseini 95683 mac 95683 bytes_out 0 95683 bytes_in 0 95683 station_ip 5.119.28.75 95683 port 16 95683 unique_id port 95683 remote_ip 10.8.1.34 95685 username alihosseini 95685 mac 95685 bytes_out 69975 95685 bytes_in 139006 95685 station_ip 5.120.164.225 95685 port 18 95685 unique_id port 95685 remote_ip 10.8.1.34 95687 username mohammadi 95687 mac 95687 bytes_out 4665750 95687 bytes_in 21532124 95687 station_ip 113.203.19.23 95687 port 14 95687 unique_id port 95632 bytes_out 0 95632 bytes_in 0 95632 station_ip 5.119.7.4 95632 port 11 95632 unique_id port 95634 username amirhosein 95634 unique_id port 95634 terminate_cause Lost-Carrier 95634 bytes_out 250174 95634 bytes_in 5957481 95634 station_ip 5.119.13.140 95634 port 15728679 95634 nas_port_type Virtual 95634 remote_ip 5.5.5.242 95640 username alihosseini 95640 mac 95640 bytes_out 0 95640 bytes_in 0 95640 station_ip 5.119.38.85 95640 port 17 95640 unique_id port 95640 remote_ip 10.8.0.46 95642 username alihosseini 95642 mac 95642 bytes_out 0 95642 bytes_in 0 95642 station_ip 5.119.38.85 95642 port 17 95642 unique_id port 95642 remote_ip 10.8.0.46 95643 username aminvpn 95643 kill_reason Another user logged on this global unique id 95643 mac 95643 bytes_out 0 95643 bytes_in 0 95643 station_ip 83.122.98.136 95643 port 8 95643 unique_id port 95643 remote_ip 10.8.0.6 95645 username alihosseini 95645 mac 95645 bytes_out 0 95645 bytes_in 0 95645 station_ip 5.119.38.85 95645 port 14 95645 unique_id port 95645 remote_ip 10.8.0.46 95648 username madadi2 95648 unique_id port 95648 terminate_cause Lost-Carrier 95648 bytes_out 257442 95648 bytes_in 1067501 95648 station_ip 5.120.42.208 95648 port 15728685 95648 nas_port_type Virtual 95648 remote_ip 5.5.5.240 95650 username alihosseini 95650 mac 95650 bytes_out 0 95650 bytes_in 0 95650 station_ip 5.119.38.85 95650 port 8 95650 unique_id port 95650 remote_ip 10.8.0.46 95653 username alihosseini 95653 mac 95653 bytes_out 0 95653 bytes_in 0 95653 station_ip 5.119.38.85 95653 port 14 95653 unique_id port 95653 remote_ip 10.8.0.46 95654 username amirhosein 95654 unique_id port 95654 terminate_cause Lost-Carrier 95654 bytes_out 7796489 95654 bytes_in 45117079 95654 station_ip 5.119.13.140 95654 port 15728684 95654 nas_port_type Virtual 95654 remote_ip 5.5.5.245 95657 username mirzaei 95657 kill_reason Another user logged on this global unique id 95657 mac 95657 bytes_out 0 95657 bytes_in 0 95657 station_ip 5.119.7.4 95657 port 11 95657 unique_id port 95660 username alihosseini 95660 mac 95660 bytes_out 2154 95660 bytes_in 5046 95660 station_ip 5.119.38.85 95660 port 14 95660 unique_id port 95660 remote_ip 10.8.0.46 95661 username alihosseini 95661 mac 95661 bytes_out 0 95661 bytes_in 0 95661 station_ip 5.119.38.85 95661 port 16 95661 unique_id port 95661 remote_ip 10.8.1.34 95664 username alireza1 95664 unique_id port 95664 terminate_cause Lost-Carrier 95664 bytes_out 1568044 95664 bytes_in 6069690 95664 station_ip 5.120.163.16 95664 port 15728661 95664 nas_port_type Virtual 95664 remote_ip 5.5.5.255 95665 username alinezhad 95665 unique_id port 95665 terminate_cause User-Request 95665 bytes_out 0 95665 bytes_in 0 95665 station_ip 5.202.0.254 95665 port 15728689 95665 nas_port_type Virtual 95665 remote_ip 5.5.5.253 95666 username alihosseini 95666 mac 95666 bytes_out 0 95666 bytes_in 0 95666 station_ip 5.119.38.85 95666 port 14 95666 unique_id port 95666 remote_ip 10.8.0.46 95669 username tahmasebi 95669 unique_id port 95669 terminate_cause User-Request 95669 bytes_out 1213040 95669 bytes_in 37092907 95669 station_ip 5.119.109.166 95669 port 15728691 95669 nas_port_type Virtual 95669 remote_ip 5.5.5.236 95672 username alihosseini 95672 mac 95672 bytes_out 0 95672 bytes_in 0 95672 station_ip 5.119.38.85 95672 port 16 95672 unique_id port 95672 remote_ip 10.8.0.46 95673 username forozande 95673 unique_id port 95641 username askari 95641 kill_reason Another user logged on this global unique id 95641 mac 95641 bytes_out 0 95641 bytes_in 0 95641 station_ip 5.120.57.149 95641 port 14 95641 unique_id port 95644 username askari 95644 mac 95644 bytes_out 0 95644 bytes_in 0 95644 station_ip 5.120.57.149 95644 port 14 95644 unique_id port 95646 username aminvpn 95646 mac 95646 bytes_out 0 95646 bytes_in 0 95646 station_ip 83.122.98.136 95646 port 8 95646 unique_id port 95651 username ahmadi 95651 unique_id port 95651 terminate_cause User-Request 95651 bytes_out 79556 95651 bytes_in 463674 95651 station_ip 113.203.53.216 95651 port 15728687 95651 nas_port_type Virtual 95651 remote_ip 5.5.5.239 95652 username alihosseini 95652 mac 95652 bytes_out 0 95652 bytes_in 0 95652 station_ip 5.119.38.85 95652 port 16 95652 unique_id port 95652 remote_ip 10.8.1.34 95656 username alihosseini 95656 mac 95656 bytes_out 0 95656 bytes_in 0 95656 station_ip 5.119.38.85 95656 port 16 95656 unique_id port 95656 remote_ip 10.8.1.34 95662 username asadi 95662 unique_id port 95662 terminate_cause User-Request 95662 bytes_out 196906 95662 bytes_in 4638437 95662 station_ip 37.129.196.47 95662 port 15728688 95662 nas_port_type Virtual 95662 remote_ip 5.5.5.238 95663 username alihosseini 95663 mac 95663 bytes_out 3283 95663 bytes_in 5307 95663 station_ip 5.119.38.85 95663 port 14 95663 unique_id port 95663 remote_ip 10.8.0.46 95667 username mohammadi 95667 kill_reason Another user logged on this global unique id 95667 mac 95667 bytes_out 0 95667 bytes_in 0 95667 station_ip 113.203.27.31 95667 port 17 95667 unique_id port 95667 remote_ip 10.8.0.62 95668 username mohammadi 95668 mac 95668 bytes_out 0 95668 bytes_in 0 95668 station_ip 113.203.27.31 95668 port 17 95668 unique_id port 95674 username alihosseini 95674 mac 95674 bytes_out 0 95674 bytes_in 0 95674 station_ip 5.119.56.58 95674 port 16 95674 unique_id port 95674 remote_ip 10.8.1.34 95675 username mahbobeh 95675 unique_id port 95675 terminate_cause Lost-Carrier 95675 bytes_out 3372282 95675 bytes_in 62722194 95675 station_ip 83.122.197.30 95675 port 15728686 95675 nas_port_type Virtual 95675 remote_ip 5.5.5.247 95678 username forozande 95678 unique_id port 95678 terminate_cause User-Request 95678 bytes_out 71398 95678 bytes_in 626486 95678 station_ip 37.129.180.183 95678 port 15728698 95678 nas_port_type Virtual 95678 remote_ip 5.5.5.232 95686 username forozande 95686 unique_id port 95686 terminate_cause User-Request 95686 bytes_out 67773 95686 bytes_in 142187 95686 station_ip 37.129.180.183 95686 port 15728702 95686 nas_port_type Virtual 95686 remote_ip 5.5.5.232 95688 username Alirezaza 95688 unique_id port 95688 terminate_cause Lost-Carrier 95688 bytes_out 471968 95688 bytes_in 6428083 95688 station_ip 5.119.171.168 95688 port 15728697 95688 nas_port_type Virtual 95688 remote_ip 5.5.5.233 95689 username alihosseini 95689 kill_reason Another user logged on this global unique id 95689 mac 95689 bytes_out 0 95689 bytes_in 0 95689 station_ip 5.119.237.61 95689 port 16 95689 unique_id port 95689 remote_ip 10.8.1.34 95690 username Alirezaza 95690 unique_id port 95690 terminate_cause Lost-Carrier 95690 bytes_out 460401 95690 bytes_in 7128827 95690 station_ip 5.119.13.124 95690 port 15728703 95690 nas_port_type Virtual 95690 remote_ip 5.5.5.231 95691 username mohammadi 95691 kill_reason Another user logged on this global unique id 95691 mac 95691 bytes_out 0 95691 bytes_in 0 95691 station_ip 113.203.19.23 95673 terminate_cause User-Request 95673 bytes_out 346615 95673 bytes_in 1125098 95673 station_ip 83.123.68.45 95673 port 15728694 95673 nas_port_type Virtual 95673 remote_ip 5.5.5.235 95677 username mehdizare 95677 kill_reason Another user logged on this global unique id 95677 mac 95677 bytes_out 0 95677 bytes_in 0 95677 station_ip 5.119.172.108 95677 port 8 95677 unique_id port 95677 remote_ip 10.8.0.70 95679 username forozande 95679 unique_id port 95679 terminate_cause User-Request 95679 bytes_out 0 95679 bytes_in 0 95679 station_ip 37.129.180.183 95679 port 15728699 95679 nas_port_type Virtual 95679 remote_ip 5.5.5.232 95682 username forozande 95682 unique_id port 95682 terminate_cause User-Request 95682 bytes_out 49266 95682 bytes_in 274870 95682 station_ip 37.129.180.183 95682 port 15728700 95682 nas_port_type Virtual 95682 remote_ip 5.5.5.232 95684 username forozande 95684 unique_id port 95684 terminate_cause User-Request 95684 bytes_out 31241 95684 bytes_in 110976 95684 station_ip 37.129.180.183 95684 port 15728701 95684 nas_port_type Virtual 95684 remote_ip 5.5.5.232 95692 username amir 95692 unique_id port 95692 terminate_cause User-Request 95692 bytes_out 170573 95692 bytes_in 995735 95692 station_ip 46.225.212.190 95692 port 15728705 95692 nas_port_type Virtual 95692 remote_ip 5.5.5.230 95693 username amir 95693 unique_id port 95693 terminate_cause User-Request 95693 bytes_out 0 95693 bytes_in 0 95693 station_ip 46.225.212.190 95693 port 15728706 95693 nas_port_type Virtual 95693 remote_ip 5.5.5.230 95695 username mohammadmahdi 95695 kill_reason Another user logged on this global unique id 95695 mac 95695 bytes_out 0 95695 bytes_in 0 95695 station_ip 5.119.195.8 95695 port 14 95695 unique_id port 95695 remote_ip 10.8.0.82 95696 username hashtadani 95696 unique_id port 95696 terminate_cause Lost-Carrier 95696 bytes_out 1770457 95696 bytes_in 18354662 95696 station_ip 83.122.99.214 95696 port 15728696 95696 nas_port_type Virtual 95696 remote_ip 5.5.5.234 95703 username mohammadi 95703 mac 95703 bytes_out 190089 95703 bytes_in 438616 95703 station_ip 113.203.19.23 95703 port 14 95703 unique_id port 95703 remote_ip 10.8.0.62 95705 username amin.insta22 95705 kill_reason Relative expiration date has reached 95705 unique_id port 95705 bytes_out 0 95705 bytes_in 0 95705 station_ip 2.183.244.29 95705 port 15728713 95705 nas_port_type Virtual 95706 username alihosseini 95706 kill_reason Another user logged on this global unique id 95706 mac 95706 bytes_out 0 95706 bytes_in 0 95706 station_ip 5.119.237.61 95706 port 16 95706 unique_id port 95706 remote_ip 10.8.0.46 95711 username forozande 95711 unique_id port 95711 terminate_cause User-Request 95711 bytes_out 118623 95711 bytes_in 1686373 95711 station_ip 83.123.194.139 95711 port 15728716 95711 nas_port_type Virtual 95711 remote_ip 5.5.5.226 95719 username alihosseini 95719 kill_reason Another user logged on this global unique id 95719 mac 95719 bytes_out 0 95719 bytes_in 0 95719 station_ip 5.119.237.61 95719 port 16 95719 unique_id port 95721 username madadi2 95721 unique_id port 95721 terminate_cause Lost-Carrier 95721 bytes_out 678469 95721 bytes_in 3734620 95721 station_ip 5.120.173.29 95721 port 15728717 95721 nas_port_type Virtual 95721 remote_ip 5.5.5.225 95731 username aminvpn 95731 mac 95731 bytes_out 604233 95731 bytes_in 3945270 95731 station_ip 83.122.17.168 95731 port 14 95731 unique_id port 95731 remote_ip 10.8.0.6 95733 username mohammadi 95733 mac 95733 bytes_out 57923 95733 bytes_in 72624 95733 station_ip 113.203.22.7 95733 port 17 95687 remote_ip 10.8.0.62 95698 username mohammadmahdi 95698 mac 95698 bytes_out 0 95698 bytes_in 0 95698 station_ip 5.119.195.8 95698 port 14 95698 unique_id port 95700 username alihosseini 95700 mac 95700 bytes_out 0 95700 bytes_in 0 95700 station_ip 5.119.237.61 95700 port 16 95700 unique_id port 95701 username ahmadi 95701 unique_id port 95701 terminate_cause User-Request 95701 bytes_out 36799 95701 bytes_in 309603 95701 station_ip 83.122.85.121 95701 port 15728711 95701 nas_port_type Virtual 95701 remote_ip 5.5.5.227 95707 username mohammadi 95707 mac 95707 bytes_out 34757 95707 bytes_in 41221 95707 station_ip 113.203.19.23 95707 port 14 95707 unique_id port 95707 remote_ip 10.8.0.62 95710 username alihosseini 95710 kill_reason Another user logged on this global unique id 95710 mac 95710 bytes_out 0 95710 bytes_in 0 95710 station_ip 5.119.237.61 95710 port 16 95710 unique_id port 95714 username forozande 95714 unique_id port 95714 terminate_cause User-Request 95714 bytes_out 63241 95714 bytes_in 433252 95714 station_ip 83.123.194.26 95714 port 15728718 95714 nas_port_type Virtual 95714 remote_ip 5.5.5.224 95715 username alihosseini 95715 kill_reason Another user logged on this global unique id 95715 mac 95715 bytes_out 0 95715 bytes_in 0 95715 station_ip 5.119.237.61 95715 port 16 95715 unique_id port 95720 username mohammadi 95720 mac 95720 bytes_out 4449227 95720 bytes_in 1512313 95720 station_ip 113.203.19.23 95720 port 14 95720 unique_id port 95720 remote_ip 10.8.0.62 95722 username mehdizare 95722 mac 95722 bytes_out 0 95722 bytes_in 0 95722 station_ip 5.119.172.108 95722 port 8 95722 unique_id port 95725 username alihosseini 95725 kill_reason Another user logged on this global unique id 95725 mac 95725 bytes_out 0 95725 bytes_in 0 95725 station_ip 5.119.237.61 95725 port 16 95725 unique_id port 95726 username forozande 95726 unique_id port 95726 terminate_cause User-Request 95726 bytes_out 132262 95726 bytes_in 542706 95726 station_ip 37.129.119.197 95726 port 15728721 95726 nas_port_type Virtual 95726 remote_ip 5.5.5.222 95728 username aminvpn 95728 mac 95728 bytes_out 2743942 95728 bytes_in 14379219 95728 station_ip 83.122.17.168 95728 port 14 95728 unique_id port 95728 remote_ip 10.8.0.6 95732 username hashtadani 95732 unique_id port 95732 terminate_cause Lost-Carrier 95732 bytes_out 82 95732 bytes_in 11758 95732 station_ip 83.123.251.117 95732 port 15728722 95732 nas_port_type Virtual 95732 remote_ip 5.5.5.229 95734 username alihosseini 95734 mac 95734 bytes_out 0 95734 bytes_in 0 95734 station_ip 5.119.237.61 95734 port 14 95734 unique_id port 95734 remote_ip 10.8.0.46 95735 username alihosseini 95735 mac 95735 bytes_out 0 95735 bytes_in 0 95735 station_ip 5.119.237.61 95735 port 16 95735 unique_id port 95735 remote_ip 10.8.1.34 95740 username alihosseini 95740 mac 95740 bytes_out 3058 95740 bytes_in 5722 95740 station_ip 5.119.204.177 95740 port 16 95740 unique_id port 95740 remote_ip 10.8.1.34 95742 username mehdizare 95742 mac 95742 bytes_out 0 95742 bytes_in 0 95742 station_ip 5.119.172.108 95742 port 8 95742 unique_id port 95742 remote_ip 10.8.0.70 95747 username mohammadi 95747 mac 95747 bytes_out 475322 95747 bytes_in 1535912 95747 station_ip 113.203.65.7 95747 port 8 95747 unique_id port 95747 remote_ip 10.8.0.62 95750 username mahdiyehalizadeh 95750 mac 95750 bytes_out 8570 95750 bytes_in 9172 95750 station_ip 83.123.163.94 95691 port 16 95691 unique_id port 95691 remote_ip 10.8.0.62 95694 username amir 95694 unique_id port 95694 terminate_cause User-Request 95694 bytes_out 0 95694 bytes_in 0 95694 station_ip 46.225.212.190 95694 port 15728707 95694 nas_port_type Virtual 95694 remote_ip 5.5.5.230 95697 username alihosseini 95697 kill_reason Another user logged on this global unique id 95697 mac 95697 bytes_out 0 95697 bytes_in 0 95697 station_ip 5.119.237.61 95697 port 16 95697 unique_id port 95699 username forozande 95699 unique_id port 95699 terminate_cause User-Request 95699 bytes_out 82342 95699 bytes_in 319482 95699 station_ip 113.203.56.39 95699 port 15728709 95699 nas_port_type Virtual 95699 remote_ip 5.5.5.228 95702 username alihosseini 95702 mac 95702 bytes_out 0 95702 bytes_in 0 95702 station_ip 5.119.237.61 95702 port 16 95702 unique_id port 95704 username amin.insta22 95704 kill_reason Relative expiration date has reached 95704 unique_id port 95704 bytes_out 0 95704 bytes_in 0 95704 station_ip 2.183.244.29 95704 port 15728712 95704 nas_port_type Virtual 95708 username forozande 95708 unique_id port 95708 terminate_cause User-Request 95708 bytes_out 118735 95708 bytes_in 236380 95708 station_ip 83.123.194.139 95708 port 15728714 95708 nas_port_type Virtual 95708 remote_ip 5.5.5.226 95709 username forozande 95709 unique_id port 95709 terminate_cause User-Request 95709 bytes_out 12105 95709 bytes_in 24484 95709 station_ip 83.123.194.139 95709 port 15728715 95709 nas_port_type Virtual 95709 remote_ip 5.5.5.226 95712 username amir 95712 unique_id port 95712 terminate_cause User-Request 95712 bytes_out 1095089 95712 bytes_in 7726683 95712 station_ip 46.225.212.190 95712 port 15728710 95712 nas_port_type Virtual 95712 remote_ip 5.5.5.230 95713 username mehdizare 95713 kill_reason Another user logged on this global unique id 95713 mac 95713 bytes_out 0 95713 bytes_in 0 95713 station_ip 5.119.172.108 95713 port 8 95713 unique_id port 95716 username hashtadani 95716 unique_id port 95716 terminate_cause Lost-Carrier 95716 bytes_out 430596 95716 bytes_in 10464852 95716 station_ip 83.123.251.117 95716 port 15728708 95716 nas_port_type Virtual 95716 remote_ip 5.5.5.229 95717 username mohammadi 95717 mac 95717 bytes_out 62246 95717 bytes_in 145966 95717 station_ip 113.203.19.23 95717 port 14 95717 unique_id port 95717 remote_ip 10.8.0.62 95718 username mohammadi 95718 mac 95718 bytes_out 28041 95718 bytes_in 42351 95718 station_ip 113.203.19.23 95718 port 17 95718 unique_id port 95718 remote_ip 10.8.0.62 95723 username amir 95723 unique_id port 95723 terminate_cause User-Request 95723 bytes_out 492779 95723 bytes_in 3277364 95723 station_ip 46.225.212.190 95723 port 15728719 95723 nas_port_type Virtual 95723 remote_ip 5.5.5.230 95724 username mehdizare 95724 mac 95724 bytes_out 262574 95724 bytes_in 1587731 95724 station_ip 5.119.172.108 95724 port 17 95724 unique_id port 95724 remote_ip 10.8.0.70 95727 username alihosseini 95727 mac 95727 bytes_out 0 95727 bytes_in 0 95727 station_ip 5.119.237.61 95727 port 16 95727 unique_id port 95729 username mohammadi 95729 kill_reason Another user logged on this global unique id 95729 mac 95729 bytes_out 0 95729 bytes_in 0 95729 station_ip 113.203.22.7 95729 port 16 95729 unique_id port 95729 remote_ip 10.8.0.62 95730 username alihosseini 95730 mac 95730 bytes_out 0 95730 bytes_in 0 95730 station_ip 5.119.237.61 95730 port 16 95730 unique_id port 95730 remote_ip 10.8.1.34 95736 username hashtadani 95736 unique_id port 95733 unique_id port 95733 remote_ip 10.8.0.62 95738 username alihosseini 95738 mac 95738 bytes_out 0 95738 bytes_in 0 95738 station_ip 5.119.237.61 95738 port 16 95738 unique_id port 95738 remote_ip 10.8.1.34 188714 mac 188714 bytes_out 0 188714 bytes_in 0 188714 station_ip 5.120.128.95 188714 port 317 188714 unique_id port 188715 username zahra1101 188715 kill_reason Maximum check online fails reached 188715 mac 95744 username forozande 95744 unique_id port 95744 terminate_cause User-Request 95744 bytes_out 168196 95744 bytes_in 338899 95744 station_ip 37.129.225.192 95744 port 15728728 95744 nas_port_type Virtual 95744 remote_ip 5.5.5.218 95749 username aminvpn 95749 kill_reason Another user logged on this global unique id 95749 mac 95749 bytes_out 0 95749 bytes_in 0 95749 station_ip 83.122.55.40 95749 port 14 95749 unique_id port 95751 username mahdiyehalizadeh 95751 mac 95751 bytes_out 0 95751 bytes_in 0 95751 station_ip 37.129.173.198 95751 port 17 95751 unique_id port 95751 remote_ip 10.8.0.90 95752 username heydari1 95752 unique_id port 95752 terminate_cause User-Request 95752 bytes_out 0 95752 bytes_in 0 95752 station_ip 5.119.131.128 95752 port 15728731 95752 nas_port_type Virtual 95752 remote_ip 5.5.5.217 95756 username Alirezaza 95756 unique_id port 95756 terminate_cause Lost-Carrier 95756 bytes_out 2350929 95756 bytes_in 42107108 95756 station_ip 5.120.182.46 95756 port 15728725 95756 nas_port_type Virtual 95756 remote_ip 5.5.5.220 95759 username madadi2 95759 unique_id port 95759 terminate_cause Lost-Carrier 95759 bytes_out 418481 95759 bytes_in 2504699 95759 station_ip 5.119.223.164 95759 port 15728734 95759 nas_port_type Virtual 95759 remote_ip 5.5.5.216 95762 username mahdiyehalizadeh 95762 mac 95762 bytes_out 1400730 95762 bytes_in 21891257 95762 station_ip 83.122.108.55 95762 port 8 95762 unique_id port 95762 remote_ip 10.8.0.90 95764 username mohammadi 95764 mac 95764 bytes_out 0 95764 bytes_in 0 95764 station_ip 113.203.65.7 95764 port 14 95764 unique_id port 95764 remote_ip 10.8.0.62 95767 username forozande 95767 unique_id port 95767 terminate_cause User-Request 95767 bytes_out 95703 95767 bytes_in 716189 95767 station_ip 83.122.215.73 95767 port 15728737 95767 nas_port_type Virtual 95767 remote_ip 5.5.5.213 95776 username Alirezaza 95776 unique_id port 95776 terminate_cause User-Request 95776 bytes_out 0 95776 bytes_in 0 95776 station_ip 5.119.22.132 95776 port 15728742 95776 nas_port_type Virtual 95776 remote_ip 5.5.5.210 95777 username mahdiyehalizadeh 95777 kill_reason Another user logged on this global unique id 95777 mac 95777 bytes_out 0 95777 bytes_in 0 95777 station_ip 83.123.204.69 95777 port 14 95777 unique_id port 95777 remote_ip 10.8.0.90 95778 username alihosseini 95778 kill_reason Another user logged on this global unique id 95778 mac 95778 bytes_out 0 95778 bytes_in 0 95778 station_ip 5.120.17.167 95778 port 16 95778 unique_id port 95778 remote_ip 10.8.1.34 95781 username madadi2 95781 unique_id port 95781 terminate_cause Lost-Carrier 95781 bytes_out 358859 95781 bytes_in 2861966 95781 station_ip 5.119.63.26 95781 port 15728740 95781 nas_port_type Virtual 95781 remote_ip 5.5.5.211 95793 username madadi2 95793 unique_id port 95793 terminate_cause Lost-Carrier 95793 bytes_out 79554 95793 bytes_in 359586 95793 station_ip 5.120.57.186 95793 port 15728749 95793 nas_port_type Virtual 95793 remote_ip 5.5.5.206 95796 username mehdizare 95796 mac 95796 bytes_out 19538 95796 bytes_in 24643 95796 station_ip 5.119.172.108 188715 bytes_out 0 95736 terminate_cause Lost-Carrier 95736 bytes_out 1062290 95736 bytes_in 19586071 95736 station_ip 113.203.106.27 95736 port 15728723 95736 nas_port_type Virtual 95736 remote_ip 5.5.5.221 95737 username aminvpn 95737 mac 95737 bytes_out 1071941 95737 bytes_in 23812240 95737 station_ip 83.122.55.40 95737 port 14 95737 unique_id port 95737 remote_ip 10.8.0.6 95739 username alihosseini 95739 mac 95739 bytes_out 0 95739 bytes_in 0 95739 station_ip 5.119.204.177 95739 port 16 95739 unique_id port 95739 remote_ip 10.8.1.34 95741 username alinezhad 95741 unique_id port 95741 terminate_cause User-Request 95741 bytes_out 0 95741 bytes_in 0 95741 station_ip 5.202.0.254 95741 port 15728726 95741 nas_port_type Virtual 95741 remote_ip 5.5.5.253 95745 username aminvpn 95745 kill_reason Another user logged on this global unique id 95745 mac 95745 bytes_out 0 95745 bytes_in 0 95745 station_ip 83.122.55.40 95745 port 14 95745 unique_id port 95745 remote_ip 10.8.0.6 95746 username madadi2 95746 unique_id port 95746 terminate_cause Lost-Carrier 95746 bytes_out 296094 95746 bytes_in 1720414 95746 station_ip 5.119.89.203 95746 port 15728727 95746 nas_port_type Virtual 95746 remote_ip 5.5.5.219 95748 username mahdiyehalizadeh 95748 mac 95748 bytes_out 54506 95748 bytes_in 55774 95748 station_ip 83.122.19.112 95748 port 17 95748 unique_id port 95748 remote_ip 10.8.0.90 95754 username mahdiyehalizadeh 95754 mac 95754 bytes_out 0 95754 bytes_in 0 95754 station_ip 83.122.28.154 95754 port 18 95754 unique_id port 95754 remote_ip 10.8.0.90 95758 username aminvpn 95758 kill_reason Another user logged on this global unique id 95758 mac 95758 bytes_out 0 95758 bytes_in 0 95758 station_ip 83.122.60.144 95758 port 8 95758 unique_id port 95758 remote_ip 10.8.0.6 95760 username aminvpn 95760 kill_reason Another user logged on this global unique id 95760 mac 95760 bytes_out 0 95760 bytes_in 0 95760 station_ip 83.122.60.144 95760 port 8 95760 unique_id port 95761 username aminvpn 95761 mac 95761 bytes_out 0 95761 bytes_in 0 95761 station_ip 83.122.60.144 95761 port 8 95761 unique_id port 95763 username mehdizare 95763 mac 95763 bytes_out 116399 95763 bytes_in 200057 95763 station_ip 5.119.172.108 95763 port 16 95763 unique_id port 95763 remote_ip 10.8.0.70 95766 username ahmadipour 95766 unique_id port 95766 terminate_cause Lost-Carrier 95766 bytes_out 2167062 95766 bytes_in 50478670 95766 station_ip 83.122.112.236 95766 port 15728736 95766 nas_port_type Virtual 95766 remote_ip 5.5.5.214 95768 username mehdizare 95768 kill_reason Another user logged on this global unique id 95768 mac 95768 bytes_out 0 95768 bytes_in 0 95768 station_ip 5.119.172.108 95768 port 16 95768 unique_id port 95768 remote_ip 10.8.0.70 95769 username mahdiyehalizadeh 95769 mac 95769 bytes_out 0 95769 bytes_in 0 95769 station_ip 83.123.204.69 95769 port 8 95769 unique_id port 95769 remote_ip 10.8.0.90 95770 username forozande 95770 unique_id port 95770 terminate_cause User-Request 95770 bytes_out 101490 95770 bytes_in 992404 95770 station_ip 83.122.215.73 95770 port 15728738 95770 nas_port_type Virtual 95770 remote_ip 5.5.5.213 95771 username mehdizare 95771 mac 95771 bytes_out 0 95771 bytes_in 0 95771 station_ip 5.119.172.108 95771 port 16 95771 unique_id port 95772 username alireza1 95772 unique_id port 95772 terminate_cause Lost-Carrier 95772 bytes_out 1434075 95772 bytes_in 15154326 95772 station_ip 5.119.100.97 95772 port 15728735 95772 nas_port_type Virtual 95750 port 8 95750 unique_id port 95750 remote_ip 10.8.0.90 95753 username mohammadi 95753 mac 95753 bytes_out 94095 95753 bytes_in 209769 95753 station_ip 113.203.65.7 95753 port 8 95753 unique_id port 95753 remote_ip 10.8.0.62 95755 username aminvpn 95755 mac 95755 bytes_out 0 95755 bytes_in 0 95755 station_ip 83.122.55.40 95755 port 14 95755 unique_id port 95757 username mahbobeh 95757 unique_id port 95757 terminate_cause Lost-Carrier 95757 bytes_out 1272097 95757 bytes_in 25390276 95757 station_ip 83.122.197.30 95757 port 15728724 95757 nas_port_type Virtual 95757 remote_ip 5.5.5.247 95765 username mahdiyehalizadeh 95765 mac 95765 bytes_out 0 95765 bytes_in 0 95765 station_ip 83.123.204.69 95765 port 8 95765 unique_id port 95765 remote_ip 10.8.0.90 95773 username Alirezaza 95773 unique_id port 95773 terminate_cause User-Request 95773 bytes_out 0 95773 bytes_in 0 95773 station_ip 5.119.22.132 95773 port 15728741 95773 nas_port_type Virtual 95773 remote_ip 5.5.5.210 95775 username madadi2 95775 unique_id port 95775 terminate_cause Lost-Carrier 95775 bytes_out 83801 95775 bytes_in 363203 95775 station_ip 5.120.164.187 95775 port 15728739 95775 nas_port_type Virtual 95775 remote_ip 5.5.5.212 95779 username mohammadi 95779 mac 95779 bytes_out 0 95779 bytes_in 0 95779 station_ip 113.203.65.7 95779 port 16 95779 unique_id port 95779 remote_ip 10.8.0.62 95782 username forozande 95782 unique_id port 95782 terminate_cause User-Request 95782 bytes_out 204031 95782 bytes_in 468295 95782 station_ip 83.122.68.198 95782 port 15728745 95782 nas_port_type Virtual 95782 remote_ip 5.5.5.208 95783 username forozande 95783 unique_id port 95783 terminate_cause User-Request 95783 bytes_out 100311 95783 bytes_in 1126213 95783 station_ip 83.122.68.198 95783 port 15728746 95783 nas_port_type Virtual 95783 remote_ip 5.5.5.208 95784 username mahdiyehalizadeh 95784 mac 95784 bytes_out 0 95784 bytes_in 0 95784 station_ip 83.123.204.69 95784 port 14 95784 unique_id port 95786 username amir 95786 unique_id port 95786 terminate_cause User-Request 95786 bytes_out 271715 95786 bytes_in 1755415 95786 station_ip 37.27.17.6 95786 port 15728747 95786 nas_port_type Virtual 95786 remote_ip 5.5.5.207 95797 username mohammadi 95797 mac 95797 bytes_out 382557 95797 bytes_in 287187 95797 station_ip 113.203.65.7 95797 port 14 95797 unique_id port 95797 remote_ip 10.8.0.62 95799 username aminvpn 95799 mac 95799 bytes_out 0 95799 bytes_in 0 95799 station_ip 83.122.33.128 95799 port 14 95799 unique_id port 95799 remote_ip 10.8.0.6 95803 username amir 95803 unique_id port 95803 terminate_cause Lost-Carrier 95803 bytes_out 3547306 95803 bytes_in 60680157 95803 station_ip 37.27.17.6 95803 port 15728748 95803 nas_port_type Virtual 95803 remote_ip 5.5.5.207 95805 username alihosseini 95805 mac 95805 bytes_out 862581 95805 bytes_in 5603889 95805 station_ip 5.119.92.160 95805 port 14 95805 unique_id port 95805 remote_ip 10.8.0.46 95806 username mirzaei 95806 kill_reason Another user logged on this global unique id 95806 mac 95806 bytes_out 0 95806 bytes_in 0 95806 station_ip 5.119.7.4 95806 port 11 95806 unique_id port 95811 username aminvpn 95811 mac 95811 bytes_out 0 95811 bytes_in 0 95811 station_ip 37.129.127.132 95811 port 17 95811 unique_id port 95811 remote_ip 10.8.0.6 95812 username ahmadipour 95812 unique_id port 95812 terminate_cause Lost-Carrier 95812 bytes_out 662891 95812 bytes_in 12568481 95772 remote_ip 5.5.5.215 95774 username mehdizare 95774 mac 95774 bytes_out 0 95774 bytes_in 0 95774 station_ip 5.119.172.108 95774 port 8 95774 unique_id port 95774 remote_ip 10.8.0.70 95780 username ahmadi 95780 unique_id port 95780 terminate_cause User-Request 95780 bytes_out 122530 95780 bytes_in 1743950 95780 station_ip 83.122.88.229 95780 port 15728743 95780 nas_port_type Virtual 95780 remote_ip 5.5.5.209 95785 username Alirezaza 95785 unique_id port 95785 terminate_cause Lost-Carrier 95785 bytes_out 367812 95785 bytes_in 4180874 95785 station_ip 5.119.22.132 95785 port 15728744 95785 nas_port_type Virtual 95785 remote_ip 5.5.5.210 95787 username alihosseini 95787 mac 95787 bytes_out 2458311 95787 bytes_in 44872414 95787 station_ip 5.119.166.61 95787 port 17 95787 unique_id port 95787 remote_ip 10.8.0.46 95788 username alihosseini 95788 mac 95788 bytes_out 31764 95788 bytes_in 936814 95788 station_ip 5.119.166.61 95788 port 16 95788 unique_id port 95788 remote_ip 10.8.0.46 95789 username mehdizare 95789 mac 95789 bytes_out 0 95789 bytes_in 0 95789 station_ip 5.119.172.108 95789 port 8 95789 unique_id port 95789 remote_ip 10.8.0.70 95790 username mehdizare 95790 mac 95790 bytes_out 0 95790 bytes_in 0 95790 station_ip 5.119.172.108 95790 port 16 95790 unique_id port 95790 remote_ip 10.8.0.70 95791 username mohammadi 95791 mac 95791 bytes_out 0 95791 bytes_in 0 95791 station_ip 113.203.65.7 95791 port 14 95791 unique_id port 95791 remote_ip 10.8.0.62 95792 username aminvpn 95792 mac 95792 bytes_out 418433 95792 bytes_in 2404846 95792 station_ip 83.122.75.168 95792 port 14 95792 unique_id port 95792 remote_ip 10.8.0.6 95794 username aminvpn 95794 mac 95794 bytes_out 524124 95794 bytes_in 5702821 95794 station_ip 83.122.75.168 95794 port 16 95794 unique_id port 95794 remote_ip 10.8.0.6 95795 username aminvpn 95795 mac 95795 bytes_out 321634 95795 bytes_in 2480581 95795 station_ip 83.122.75.168 95795 port 16 95795 unique_id port 95795 remote_ip 10.8.0.6 95800 username forozande 95800 unique_id port 95800 terminate_cause User-Request 95800 bytes_out 220109 95800 bytes_in 487635 95800 station_ip 83.123.225.2 95800 port 15728752 95800 nas_port_type Virtual 95800 remote_ip 5.5.5.204 95802 username mohammadi 95802 mac 95802 bytes_out 57877 95802 bytes_in 34595 95802 station_ip 113.203.65.7 95802 port 16 95802 unique_id port 95802 remote_ip 10.8.0.62 95804 username madadi2 95804 unique_id port 95804 terminate_cause Lost-Carrier 95804 bytes_out 1362240 95804 bytes_in 19001723 95804 station_ip 5.119.91.28 95804 port 15728751 95804 nas_port_type Virtual 95804 remote_ip 5.5.5.205 95807 username mahbobeh 95807 unique_id port 95807 terminate_cause Lost-Carrier 95807 bytes_out 102903 95807 bytes_in 945478 95807 station_ip 83.122.197.30 95807 port 15728750 95807 nas_port_type Virtual 95807 remote_ip 5.5.5.247 95808 username mohammadi 95808 mac 95808 bytes_out 1439427 95808 bytes_in 11549804 95808 station_ip 113.203.65.7 95808 port 16 95808 unique_id port 95808 remote_ip 10.8.0.62 95809 username ahmadi 95809 unique_id port 95809 terminate_cause User-Request 95809 bytes_out 0 95809 bytes_in 0 95809 station_ip 83.122.101.45 95809 port 15728755 95809 nas_port_type Virtual 95809 remote_ip 5.5.5.202 95810 username mehdizare 95810 mac 95810 bytes_out 195349 95810 bytes_in 313443 95810 station_ip 5.119.172.108 95810 port 8 95810 unique_id port 95796 port 8 95796 unique_id port 95796 remote_ip 10.8.0.70 95798 username mohammadi 95798 mac 95798 bytes_out 0 95798 bytes_in 0 95798 station_ip 113.203.65.7 95798 port 16 95798 unique_id port 95798 remote_ip 10.8.0.62 95801 username mohammadi 95801 mac 95801 bytes_out 144955 95801 bytes_in 73416 95801 station_ip 113.203.65.7 95801 port 14 95801 unique_id port 95801 remote_ip 10.8.0.62 95815 username mahdiyehalizadeh 95815 mac 95815 bytes_out 1368612 95815 bytes_in 19332929 95815 station_ip 83.122.219.138 95815 port 8 95815 unique_id port 95815 remote_ip 10.8.0.90 95816 username mohammadi 95816 mac 95816 bytes_out 0 95816 bytes_in 0 95816 station_ip 113.203.65.7 95816 port 19 95816 unique_id port 95816 remote_ip 10.8.0.62 95820 username hoorieh 95820 mac 95820 bytes_out 0 95820 bytes_in 0 95820 station_ip 5.120.115.245 95820 port 17 95820 unique_id port 95821 username mohammadi 95821 mac 95821 bytes_out 0 95821 bytes_in 0 95821 station_ip 113.203.65.7 95821 port 14 95821 unique_id port 95821 remote_ip 10.8.0.62 95832 username ahmadi 95832 unique_id port 95832 terminate_cause User-Request 95832 bytes_out 0 95832 bytes_in 0 95832 station_ip 83.122.7.33 95832 port 15728762 95832 nas_port_type Virtual 95832 remote_ip 5.5.5.198 95845 username aminvpn 95845 kill_reason Another user logged on this global unique id 95845 mac 95845 bytes_out 0 95845 bytes_in 0 95845 station_ip 37.129.127.132 95845 port 18 95845 unique_id port 95845 remote_ip 10.8.0.6 95849 username sobhan 95849 unique_id port 95849 terminate_cause User-Request 95849 bytes_out 871688 95849 bytes_in 15331580 95849 station_ip 5.120.132.185 95849 port 15728766 95849 nas_port_type Virtual 95849 remote_ip 5.5.5.196 95852 username alinezhad 95852 unique_id port 95852 terminate_cause User-Request 95852 bytes_out 0 95852 bytes_in 0 95852 station_ip 5.202.0.254 95852 port 15728769 95852 nas_port_type Virtual 95852 remote_ip 5.5.5.253 95854 username mohammadi 95854 mac 95854 bytes_out 18971074 95854 bytes_in 1391943 95854 station_ip 113.203.76.35 95854 port 14 95854 unique_id port 95854 remote_ip 10.8.0.62 95858 username alireza1 95858 unique_id port 95858 terminate_cause User-Request 95858 bytes_out 4386245 95858 bytes_in 10236316 95858 station_ip 5.119.100.97 95858 port 15728759 95858 nas_port_type Virtual 95858 remote_ip 5.5.5.215 95861 username mohammadi 95861 mac 95861 bytes_out 0 95861 bytes_in 0 95861 station_ip 113.203.76.35 95861 port 17 95861 unique_id port 95861 remote_ip 10.8.0.62 95865 username alihosseini 95865 mac 95865 bytes_out 0 95865 bytes_in 0 95865 station_ip 5.120.181.199 95865 port 19 95865 unique_id port 95865 remote_ip 10.8.1.34 95867 username alinezhad 95867 unique_id port 95867 terminate_cause User-Request 95867 bytes_out 0 95867 bytes_in 0 95867 station_ip 5.202.0.254 95867 port 15728775 95867 nas_port_type Virtual 95867 remote_ip 5.5.5.253 95872 username alihosseini 95872 mac 95872 bytes_out 0 95872 bytes_in 0 95872 station_ip 5.120.181.199 95872 port 14 95872 unique_id port 95872 remote_ip 10.8.0.46 95874 username heydari1 95874 unique_id port 95874 terminate_cause User-Request 95874 bytes_out 0 95874 bytes_in 0 95874 station_ip 5.120.5.210 95874 port 15728779 95874 nas_port_type Virtual 95874 remote_ip 5.5.5.191 95880 username alihosseini 95880 mac 95880 bytes_out 0 95880 bytes_in 0 95880 station_ip 5.120.181.199 95880 port 14 95880 unique_id port 95810 remote_ip 10.8.0.70 95817 username hoorieh 95817 kill_reason Another user logged on this global unique id 95817 mac 95817 bytes_out 0 95817 bytes_in 0 95817 station_ip 5.120.115.245 95817 port 17 95817 unique_id port 95818 username madadi2 95818 unique_id port 95818 terminate_cause Lost-Carrier 95818 bytes_out 764287 95818 bytes_in 4942636 95818 station_ip 5.120.59.196 95818 port 15728756 95818 nas_port_type Virtual 95818 remote_ip 5.5.5.201 95819 username mohammadi 95819 mac 95819 bytes_out 0 95819 bytes_in 0 95819 station_ip 113.203.65.7 95819 port 8 95819 unique_id port 95819 remote_ip 10.8.0.62 95822 username amir 95822 unique_id port 95822 terminate_cause Lost-Carrier 95822 bytes_out 613911 95822 bytes_in 8172937 95822 station_ip 37.27.17.6 95822 port 15728753 95822 nas_port_type Virtual 95822 remote_ip 5.5.5.207 95826 username askari 95826 kill_reason Another user logged on this global unique id 95826 mac 95826 bytes_out 0 95826 bytes_in 0 95826 station_ip 5.120.2.197 95826 port 8 95826 unique_id port 95826 remote_ip 10.8.0.34 95828 username mohammadi 95828 mac 95828 bytes_out 18284 95828 bytes_in 5234 95828 station_ip 113.203.76.35 95828 port 14 95828 unique_id port 95828 remote_ip 10.8.0.62 95829 username mehdizare 95829 mac 95829 bytes_out 538840 95829 bytes_in 3954175 95829 station_ip 5.119.172.108 95829 port 16 95829 unique_id port 95829 remote_ip 10.8.0.70 95830 username askari 95830 kill_reason Another user logged on this global unique id 95830 mac 95830 bytes_out 0 95830 bytes_in 0 95830 station_ip 5.120.2.197 95830 port 8 95830 unique_id port 95833 username mahbobeh 95833 unique_id port 95833 terminate_cause Lost-Carrier 95833 bytes_out 41438 95833 bytes_in 997695 95833 station_ip 83.122.197.30 95833 port 15728758 95833 nas_port_type Virtual 95833 remote_ip 5.5.5.247 95838 username mohammadi 95838 mac 95838 bytes_out 39427 95838 bytes_in 39841 95838 station_ip 113.203.76.35 95838 port 14 95838 unique_id port 95838 remote_ip 10.8.0.62 95842 username mohammadi 95842 mac 95842 bytes_out 84173 95842 bytes_in 399284 95842 station_ip 113.203.76.35 95842 port 14 95842 unique_id port 95842 remote_ip 10.8.0.62 95843 username mohammadi 95843 mac 95843 bytes_out 0 95843 bytes_in 0 95843 station_ip 113.203.76.35 95843 port 16 95843 unique_id port 95843 remote_ip 10.8.0.62 95844 username askari 95844 mac 95844 bytes_out 780646 95844 bytes_in 13065310 95844 station_ip 5.120.85.102 95844 port 8 95844 unique_id port 95844 remote_ip 10.8.0.34 95851 username forozande 95851 unique_id port 95851 terminate_cause User-Request 95851 bytes_out 112938 95851 bytes_in 655484 95851 station_ip 83.122.147.68 95851 port 15728768 95851 nas_port_type Virtual 95851 remote_ip 5.5.5.195 95860 username mohammadi 95860 mac 95860 bytes_out 0 95860 bytes_in 0 95860 station_ip 113.203.76.35 95860 port 16 95860 unique_id port 95866 username alihosseini 95866 mac 95866 bytes_out 0 95866 bytes_in 0 95866 station_ip 5.120.181.199 95866 port 14 95866 unique_id port 95866 remote_ip 10.8.0.46 95871 username alihosseini 95871 mac 95871 bytes_out 0 95871 bytes_in 0 95871 station_ip 5.120.181.199 95871 port 14 95871 unique_id port 95871 remote_ip 10.8.0.46 95879 username caferibar 95879 kill_reason Relative expiration date has reached 95879 unique_id port 95879 bytes_out 0 95879 bytes_in 0 95879 station_ip 31.56.221.70 95879 port 15728786 95879 nas_port_type Virtual 95881 username alinezhad 95812 station_ip 83.122.77.16 95812 port 15728757 95812 nas_port_type Virtual 95812 remote_ip 5.5.5.200 95813 username mohammadi 95813 mac 95813 bytes_out 689815 95813 bytes_in 1650509 95813 station_ip 113.203.65.7 95813 port 14 95813 unique_id port 95813 remote_ip 10.8.0.62 95814 username hoorieh 95814 kill_reason Another user logged on this global unique id 95814 mac 95814 bytes_out 0 95814 bytes_in 0 95814 station_ip 5.120.115.245 95814 port 17 95814 unique_id port 95814 remote_ip 10.8.0.78 95823 username mahdiyehalizadeh 95823 mac 95823 bytes_out 958821 95823 bytes_in 14692662 95823 station_ip 83.122.131.6 95823 port 8 95823 unique_id port 95823 remote_ip 10.8.0.90 95824 username alinezhad 95824 unique_id port 95824 terminate_cause User-Request 95824 bytes_out 0 95824 bytes_in 0 95824 station_ip 5.202.0.254 95824 port 15728760 95824 nas_port_type Virtual 95824 remote_ip 5.5.5.253 95825 username mohammadi 95825 mac 95825 bytes_out 0 95825 bytes_in 0 95825 station_ip 113.203.65.7 95825 port 8 95825 unique_id port 95825 remote_ip 10.8.0.62 95827 username askari 95827 kill_reason Another user logged on this global unique id 95827 mac 95827 bytes_out 0 95827 bytes_in 0 95827 station_ip 5.120.2.197 95827 port 8 95827 unique_id port 95831 username madadi2 95831 unique_id port 95831 terminate_cause Lost-Carrier 95831 bytes_out 182186 95831 bytes_in 1034009 95831 station_ip 5.119.94.182 95831 port 15728761 95831 nas_port_type Virtual 95831 remote_ip 5.5.5.199 95834 username mohammadi 95834 mac 95834 bytes_out 0 95834 bytes_in 0 95834 station_ip 113.203.76.35 95834 port 14 95834 unique_id port 95834 remote_ip 10.8.0.62 95835 username askari 95835 kill_reason Another user logged on this global unique id 95835 mac 95835 bytes_out 0 95835 bytes_in 0 95835 station_ip 5.120.2.197 95835 port 8 95835 unique_id port 95836 username forozande 95836 unique_id port 95836 terminate_cause User-Request 95836 bytes_out 49261 95836 bytes_in 391732 95836 station_ip 37.129.184.36 95836 port 15728763 95836 nas_port_type Virtual 95836 remote_ip 5.5.5.197 95837 username askari 95837 mac 95837 bytes_out 0 95837 bytes_in 0 95837 station_ip 5.120.2.197 95837 port 8 95837 unique_id port 95839 username alinezhad 95839 unique_id port 95839 terminate_cause User-Request 95839 bytes_out 0 95839 bytes_in 0 95839 station_ip 5.202.0.254 95839 port 15728764 95839 nas_port_type Virtual 95839 remote_ip 5.5.5.253 95840 username ahmadi 95840 unique_id port 95840 terminate_cause User-Request 95840 bytes_out 48011 95840 bytes_in 825432 95840 station_ip 83.122.7.33 95840 port 15728765 95840 nas_port_type Virtual 95840 remote_ip 5.5.5.198 95841 username mehdizare 95841 kill_reason Another user logged on this global unique id 95841 mac 95841 bytes_out 0 95841 bytes_in 0 95841 station_ip 5.119.172.108 95841 port 16 95841 unique_id port 95841 remote_ip 10.8.1.54 95846 username askari 95846 mac 95846 bytes_out 0 95846 bytes_in 0 95846 station_ip 5.120.85.102 95846 port 18 95846 unique_id port 95846 remote_ip 10.8.1.30 95847 username aminvpn 95847 kill_reason Maximum check online fails reached 95847 mac 95847 bytes_out 0 95847 bytes_in 0 95847 station_ip 37.129.127.132 95847 port 8 95847 unique_id port 95848 username Alirezaza 95848 unique_id port 95848 terminate_cause User-Request 95848 bytes_out 3995679 95848 bytes_in 35363428 95848 station_ip 5.119.193.133 95848 port 15728754 95848 nas_port_type Virtual 95848 remote_ip 5.5.5.203 95850 username mohammadi 95850 mac 95850 bytes_out 0 95850 bytes_in 0 95850 station_ip 113.203.76.35 95850 port 14 95850 unique_id port 95850 remote_ip 10.8.0.62 95853 username forozande 95853 unique_id port 95853 terminate_cause User-Request 95853 bytes_out 0 95853 bytes_in 0 95853 station_ip 37.129.64.185 95853 port 15728770 95853 nas_port_type Virtual 95853 remote_ip 5.5.5.194 95855 username mohammadi 95855 kill_reason Another user logged on this global unique id 95855 mac 95855 bytes_out 0 95855 bytes_in 0 95855 station_ip 113.203.76.35 95855 port 16 95855 unique_id port 95855 remote_ip 10.8.0.62 95856 username mehdizare 95856 kill_reason Another user logged on this global unique id 95856 mac 95856 bytes_out 0 95856 bytes_in 0 95856 station_ip 5.119.172.108 95856 port 16 95856 unique_id port 95857 username ahmadi 95857 unique_id port 95857 terminate_cause User-Request 95857 bytes_out 0 95857 bytes_in 0 95857 station_ip 83.122.34.241 95857 port 15728771 95857 nas_port_type Virtual 95857 remote_ip 5.5.5.193 95859 username mohammadi 95859 kill_reason Another user logged on this global unique id 95859 mac 95859 bytes_out 0 95859 bytes_in 0 95859 station_ip 113.203.76.35 95859 port 16 95859 unique_id port 95862 username mahbobeh 95862 unique_id port 95862 terminate_cause Lost-Carrier 95862 bytes_out 873370 95862 bytes_in 9689296 95862 station_ip 83.122.197.30 95862 port 15728767 95862 nas_port_type Virtual 95862 remote_ip 5.5.5.247 95863 username alihosseini 95863 mac 95863 bytes_out 0 95863 bytes_in 0 95863 station_ip 5.120.181.199 95863 port 14 95863 unique_id port 95863 remote_ip 10.8.0.46 95864 username alihosseini 95864 mac 95864 bytes_out 0 95864 bytes_in 0 95864 station_ip 5.120.181.199 95864 port 19 95864 unique_id port 95864 remote_ip 10.8.1.34 95868 username alihosseini 95868 mac 95868 bytes_out 0 95868 bytes_in 0 95868 station_ip 5.120.181.199 95868 port 14 95868 unique_id port 95868 remote_ip 10.8.0.46 95869 username alihosseini 95869 mac 95869 bytes_out 0 95869 bytes_in 0 95869 station_ip 5.120.181.199 95869 port 14 95869 unique_id port 95869 remote_ip 10.8.0.46 95870 username alihosseini 95870 mac 95870 bytes_out 0 95870 bytes_in 0 95870 station_ip 5.120.181.199 95870 port 14 95870 unique_id port 95870 remote_ip 10.8.0.46 95873 username alihosseini 95873 kill_reason Maximum check online fails reached 95873 mac 95873 bytes_out 0 95873 bytes_in 0 95873 station_ip 5.120.181.199 95873 port 16 95873 unique_id port 95875 username heydari1 95875 unique_id port 95875 terminate_cause User-Request 95875 bytes_out 0 95875 bytes_in 0 95875 station_ip 5.119.251.32 95875 port 15728781 95875 nas_port_type Virtual 95875 remote_ip 5.5.5.190 95876 username alihosseini 95876 kill_reason Maximum check online fails reached 95876 mac 95876 bytes_out 0 95876 bytes_in 0 95876 station_ip 5.120.181.199 95876 port 20 95876 unique_id port 95877 username alihosseini 95877 mac 95877 bytes_out 0 95877 bytes_in 0 95877 station_ip 5.120.181.199 95877 port 21 95877 unique_id port 95877 remote_ip 10.8.1.34 95878 username caferibar 95878 kill_reason Relative expiration date has reached 95878 unique_id port 95878 bytes_out 0 95878 bytes_in 0 95878 station_ip 31.56.221.70 95878 port 15728785 95878 nas_port_type Virtual 95882 username alihosseini 95882 mac 95882 bytes_out 0 95882 bytes_in 0 95882 station_ip 5.120.181.199 95882 port 14 95882 unique_id port 95882 remote_ip 10.8.0.46 95887 username madadi2 95887 unique_id port 95880 remote_ip 10.8.0.46 95883 username heydari1 95883 unique_id port 95883 terminate_cause User-Request 95883 bytes_out 81133 95883 bytes_in 284207 95883 station_ip 5.120.184.40 95883 port 15728789 95883 nas_port_type Virtual 95883 remote_ip 5.5.5.189 95884 username alihosseini 95884 mac 95884 bytes_out 0 95884 bytes_in 0 95884 station_ip 5.120.181.199 95884 port 21 95884 unique_id port 95884 remote_ip 10.8.1.34 95888 username hashtadani 95888 unique_id port 95888 terminate_cause Lost-Carrier 95888 bytes_out 3004847 95888 bytes_in 32592474 95888 station_ip 37.129.77.88 95888 port 15728773 95888 nas_port_type Virtual 95888 remote_ip 5.5.5.192 95896 username mirzaei 95896 kill_reason Another user logged on this global unique id 95896 mac 95896 bytes_out 0 95896 bytes_in 0 95896 station_ip 5.119.7.4 95896 port 11 95896 unique_id port 95899 username hoorieh 95899 kill_reason Another user logged on this global unique id 95899 mac 95899 bytes_out 0 95899 bytes_in 0 95899 station_ip 5.120.115.245 95899 port 14 95899 unique_id port 95902 username madadi2 95902 unique_id port 95902 terminate_cause Lost-Carrier 95902 bytes_out 1587228 95902 bytes_in 4612239 95902 station_ip 5.119.203.163 95902 port 15728793 95902 nas_port_type Virtual 95902 remote_ip 5.5.5.185 95905 username mehdizare 95905 kill_reason Another user logged on this global unique id 95905 mac 95905 bytes_out 0 95905 bytes_in 0 95905 station_ip 5.119.172.108 95905 port 19 95905 unique_id port 95905 remote_ip 10.8.1.54 95906 username mirzaei 95906 kill_reason Another user logged on this global unique id 95906 mac 95906 bytes_out 0 95906 bytes_in 0 95906 station_ip 5.120.53.62 95906 port 11 95906 unique_id port 95908 username mirzaei 95908 mac 95908 bytes_out 0 95908 bytes_in 0 95908 station_ip 5.120.53.62 95908 port 11 95908 unique_id port 95909 username tahmasebi 95909 unique_id port 95909 terminate_cause User-Request 95909 bytes_out 101330201 95909 bytes_in 199360218 95909 station_ip 5.119.137.189 95909 port 15728794 95909 nas_port_type Virtual 95909 remote_ip 5.5.5.184 95912 username mehdizare 95912 mac 95912 bytes_out 0 95912 bytes_in 0 95912 station_ip 5.119.172.108 95912 port 19 95912 unique_id port 95913 username askari 95913 mac 95913 bytes_out 1462826 95913 bytes_in 16734571 95913 station_ip 5.120.85.102 95913 port 18 95913 unique_id port 95913 remote_ip 10.8.1.30 95915 username khalili 95915 unique_id port 95915 terminate_cause Admin-Reboot 95915 bytes_out 6407445 95915 bytes_in 286578103 95915 station_ip 5.119.241.214 95915 port 15728798 95915 nas_port_type Virtual 95915 remote_ip 5.5.5.186 95916 username khalili 95916 unique_id port 95916 terminate_cause Lost-Carrier 95916 bytes_out 787005 95916 bytes_in 48113869 95916 station_ip 5.119.241.214 95916 port 15728640 95916 nas_port_type Virtual 95916 remote_ip 5.5.5.255 95918 username ahmadi 95918 unique_id port 95918 terminate_cause User-Request 95918 bytes_out 19332 95918 bytes_in 101743 95918 station_ip 83.122.15.193 95918 port 15728642 95918 nas_port_type Virtual 95918 remote_ip 5.5.5.253 95922 username askari 95922 mac 95922 bytes_out 2268 95922 bytes_in 4476 95922 station_ip 5.120.85.102 95922 port 18 95922 unique_id port 95922 remote_ip 10.8.1.30 95927 username forozande 95927 unique_id port 95927 terminate_cause User-Request 95927 bytes_out 44151 95927 bytes_in 264763 95927 station_ip 113.203.89.87 95927 port 15728650 95927 nas_port_type Virtual 95927 remote_ip 5.5.5.248 95929 username forozande 95929 unique_id port 95929 terminate_cause User-Request 95881 unique_id port 95881 terminate_cause User-Request 95881 bytes_out 0 95881 bytes_in 0 95881 station_ip 37.129.218.90 95881 port 15728790 95881 nas_port_type Virtual 95881 remote_ip 5.5.5.188 95885 username alihosseini 95885 mac 95885 bytes_out 0 95885 bytes_in 0 95885 station_ip 5.120.181.199 95885 port 21 95885 unique_id port 95885 remote_ip 10.8.1.34 95886 username alihosseini 95886 mac 95886 bytes_out 0 95886 bytes_in 0 95886 station_ip 5.120.181.199 95886 port 14 95886 unique_id port 95886 remote_ip 10.8.0.46 95890 username mirzaei 95890 kill_reason Another user logged on this global unique id 95890 mac 95890 bytes_out 0 95890 bytes_in 0 95890 station_ip 5.119.7.4 95890 port 11 95890 unique_id port 95892 username hoorieh 95892 kill_reason Another user logged on this global unique id 95892 mac 95892 bytes_out 0 95892 bytes_in 0 95892 station_ip 5.120.115.245 95892 port 14 95892 unique_id port 95893 username mahdiyehalizadeh 95893 mac 95893 bytes_out 0 95893 bytes_in 0 95893 station_ip 37.129.85.66 95893 port 16 95893 unique_id port 95893 remote_ip 10.8.0.90 95894 username khalili 95894 unique_id port 95894 terminate_cause Lost-Carrier 95894 bytes_out 2679846 95894 bytes_in 61757355 95894 station_ip 5.119.241.214 95894 port 15728792 95894 nas_port_type Virtual 95894 remote_ip 5.5.5.186 95895 username hoorieh 95895 kill_reason Another user logged on this global unique id 95895 mac 95895 bytes_out 0 95895 bytes_in 0 95895 station_ip 5.120.115.245 95895 port 14 95895 unique_id port 95897 username mahdiyehalizadeh 95897 kill_reason Another user logged on this global unique id 95897 mac 95897 bytes_out 0 95897 bytes_in 0 95897 station_ip 37.129.85.66 95897 port 16 95897 unique_id port 95897 remote_ip 10.8.0.90 95898 username mirzaei 95898 mac 95898 bytes_out 0 95898 bytes_in 0 95898 station_ip 5.119.7.4 95898 port 11 95898 unique_id port 95904 username alireza1 95904 unique_id port 95904 terminate_cause Lost-Carrier 95904 bytes_out 3986501 95904 bytes_in 16092734 95904 station_ip 5.119.100.97 95904 port 15728772 95904 nas_port_type Virtual 95904 remote_ip 5.5.5.215 95907 username mirzaei 95907 kill_reason Another user logged on this global unique id 95907 mac 95907 bytes_out 0 95907 bytes_in 0 95907 station_ip 5.120.53.62 95907 port 11 95907 unique_id port 95910 username mohammadi 95910 mac 95910 bytes_out 0 95910 bytes_in 0 95910 station_ip 113.203.110.11 95910 port 11 95910 unique_id port 95910 remote_ip 10.8.0.62 95917 username madadi2 95917 unique_id port 95917 terminate_cause Lost-Carrier 95917 bytes_out 140341 95917 bytes_in 652973 95917 station_ip 5.120.169.198 95917 port 15728641 95917 nas_port_type Virtual 95917 remote_ip 5.5.5.254 95919 username alinezhad 95919 unique_id port 95919 terminate_cause User-Request 95919 bytes_out 0 95919 bytes_in 0 95919 station_ip 5.202.19.182 95919 port 15728644 95919 nas_port_type Virtual 95919 remote_ip 5.5.5.251 95923 username askari 95923 mac 95923 bytes_out 0 95923 bytes_in 0 95923 station_ip 5.120.85.102 95923 port 18 95923 unique_id port 95923 remote_ip 10.8.1.30 95928 username forozande 95928 unique_id port 95928 terminate_cause User-Request 95928 bytes_out 47778 95928 bytes_in 501245 95928 station_ip 113.203.89.87 95928 port 15728651 95928 nas_port_type Virtual 95928 remote_ip 5.5.5.248 95930 username madadi2 95930 unique_id port 95930 terminate_cause Lost-Carrier 95930 bytes_out 216098 95930 bytes_in 1694069 95930 station_ip 5.120.33.88 95930 port 15728647 95887 terminate_cause Lost-Carrier 95887 bytes_out 107610 95887 bytes_in 509203 95887 station_ip 5.119.170.174 95887 port 15728791 95887 nas_port_type Virtual 95887 remote_ip 5.5.5.187 95889 username mahbobeh 95889 unique_id port 95889 terminate_cause Lost-Carrier 95889 bytes_out 290733 95889 bytes_in 3567582 95889 station_ip 83.122.197.30 95889 port 15728774 95889 nas_port_type Virtual 95889 remote_ip 5.5.5.247 95891 username hoorieh 95891 kill_reason Another user logged on this global unique id 95891 mac 95891 bytes_out 0 95891 bytes_in 0 95891 station_ip 5.120.115.245 95891 port 14 95891 unique_id port 95891 remote_ip 10.8.0.78 95900 username hoorieh 95900 mac 95900 bytes_out 0 95900 bytes_in 0 95900 station_ip 5.120.115.245 95900 port 14 95900 unique_id port 95901 username mahdiyehalizadeh 95901 mac 95901 bytes_out 0 95901 bytes_in 0 95901 station_ip 37.129.85.66 95901 port 16 95901 unique_id port 95903 username mirzaei 95903 kill_reason Another user logged on this global unique id 95903 mac 95903 bytes_out 0 95903 bytes_in 0 95903 station_ip 5.120.53.62 95903 port 11 95903 unique_id port 95903 remote_ip 10.8.0.14 95911 username aminvpn 95911 mac 95911 bytes_out 849311 95911 bytes_in 7167671 95911 station_ip 83.122.36.141 95911 port 11 95911 unique_id port 95911 remote_ip 10.8.0.6 95914 username alinezhad 95914 unique_id port 95914 terminate_cause User-Request 95914 bytes_out 0 95914 bytes_in 0 95914 station_ip 5.202.19.182 95914 port 15728799 95914 nas_port_type Virtual 95914 remote_ip 5.5.5.183 95920 username forozande 95920 unique_id port 95920 terminate_cause User-Request 95920 bytes_out 298108 95920 bytes_in 1756379 95920 station_ip 113.203.17.70 95920 port 15728643 95920 nas_port_type Virtual 95920 remote_ip 5.5.5.252 95921 username askari 95921 mac 95921 bytes_out 461600 95921 bytes_in 10442013 95921 station_ip 5.120.85.102 95921 port 18 95921 unique_id port 95921 remote_ip 10.8.1.30 95924 username alinezhad 95924 unique_id port 95924 terminate_cause User-Request 95924 bytes_out 0 95924 bytes_in 0 95924 station_ip 5.202.19.182 95924 port 15728645 95924 nas_port_type Virtual 95924 remote_ip 5.5.5.251 95925 username alinezhad 95925 unique_id port 95925 terminate_cause User-Request 95925 bytes_out 536203 95925 bytes_in 19531409 95925 station_ip 5.202.19.182 95925 port 15728646 95925 nas_port_type Virtual 95925 remote_ip 5.5.5.251 95926 username Alirezaza 95926 unique_id port 95926 terminate_cause User-Request 95926 bytes_out 0 95926 bytes_in 0 95926 station_ip 5.119.3.210 95926 port 15728648 95926 nas_port_type Virtual 95926 remote_ip 5.5.5.249 95934 username alihosseini 95934 mac 95934 bytes_out 0 95934 bytes_in 0 95934 station_ip 5.119.20.5 95934 port 14 95934 unique_id port 95934 remote_ip 10.8.0.46 95943 username madadi2 95943 unique_id port 95943 terminate_cause Lost-Carrier 95943 bytes_out 76452 95943 bytes_in 290677 95943 station_ip 5.119.227.232 95943 port 15728657 95943 nas_port_type Virtual 95943 remote_ip 5.5.5.246 95945 username aminvpn 95945 mac 95945 bytes_out 220744 95945 bytes_in 568056 95945 station_ip 83.123.172.77 95945 port 14 95945 unique_id port 95945 remote_ip 10.8.0.6 95947 username askari 95947 mac 95947 bytes_out 0 95947 bytes_in 0 95947 station_ip 5.120.76.39 95947 port 14 95947 unique_id port 95947 remote_ip 10.8.0.34 95949 username aminvpn 95949 mac 95949 bytes_out 0 95949 bytes_in 0 95949 station_ip 5.119.219.20 95949 port 18 95949 unique_id port 95929 bytes_out 41393 95929 bytes_in 56815 95929 station_ip 113.203.89.87 95929 port 15728652 95929 nas_port_type Virtual 95929 remote_ip 5.5.5.248 95931 username Alirezaza 95931 unique_id port 95931 terminate_cause Lost-Carrier 95931 bytes_out 365820 95931 bytes_in 3170337 95931 station_ip 5.119.3.210 95931 port 15728649 95931 nas_port_type Virtual 95931 remote_ip 5.5.5.249 95935 username mohammadi 95935 mac 95935 bytes_out 0 95935 bytes_in 0 95935 station_ip 113.203.124.219 95935 port 14 95935 unique_id port 95935 remote_ip 10.8.0.62 95939 username forozande 95939 unique_id port 95939 terminate_cause User-Request 95939 bytes_out 197877 95939 bytes_in 2859947 95939 station_ip 83.122.12.14 95939 port 15728658 95939 nas_port_type Virtual 95939 remote_ip 5.5.5.245 95940 username alihosseini 95940 mac 95940 bytes_out 0 95940 bytes_in 0 95940 station_ip 5.119.20.5 95940 port 19 95940 unique_id port 95940 remote_ip 10.8.1.34 95941 username Alirezaza 95941 unique_id port 95941 terminate_cause User-Request 95941 bytes_out 0 95941 bytes_in 0 95941 station_ip 5.119.144.94 95941 port 15728660 95941 nas_port_type Virtual 95941 remote_ip 5.5.5.243 95942 username alihosseini 95942 mac 95942 bytes_out 176591 95942 bytes_in 1839315 95942 station_ip 5.119.20.5 95942 port 14 95942 unique_id port 95942 remote_ip 10.8.0.46 95946 username askari 95946 mac 95946 bytes_out 1048177 95946 bytes_in 18333876 95946 station_ip 5.120.85.102 95946 port 18 95946 unique_id port 95946 remote_ip 10.8.1.30 95959 username aminvpn 95959 mac 95959 bytes_out 0 95959 bytes_in 0 95959 station_ip 83.123.172.77 95959 port 17 95959 unique_id port 95959 remote_ip 10.8.0.6 95960 username aminvpn 95960 mac 95960 bytes_out 0 95960 bytes_in 0 95960 station_ip 5.119.219.20 95960 port 18 95960 unique_id port 95960 remote_ip 10.8.0.6 95964 username askari 95964 mac 95964 bytes_out 0 95964 bytes_in 0 95964 station_ip 5.120.76.39 95964 port 14 95964 unique_id port 95964 remote_ip 10.8.0.34 95969 username ahmadipour 95969 unique_id port 95969 terminate_cause Lost-Carrier 95969 bytes_out 709222 95969 bytes_in 15378282 95969 station_ip 83.122.126.0 95969 port 15728666 95969 nas_port_type Virtual 95969 remote_ip 5.5.5.242 95970 username aminvpn 95970 mac 95970 bytes_out 0 95970 bytes_in 0 95970 station_ip 5.119.219.20 95970 port 17 95970 unique_id port 95970 remote_ip 10.8.0.6 95972 username aminvpn 95972 mac 95972 bytes_out 0 95972 bytes_in 0 95972 station_ip 5.119.219.20 95972 port 17 95972 unique_id port 95972 remote_ip 10.8.0.6 95973 username aminvpn 95973 mac 95973 bytes_out 0 95973 bytes_in 0 95973 station_ip 83.123.172.77 95973 port 18 95973 unique_id port 95973 remote_ip 10.8.0.6 95979 username aminvpn 95979 mac 95979 bytes_out 0 95979 bytes_in 0 95979 station_ip 5.119.219.20 95979 port 17 95979 unique_id port 95979 remote_ip 10.8.0.6 95986 username aminvpn 95986 mac 95986 bytes_out 0 95986 bytes_in 0 95986 station_ip 5.119.219.20 95986 port 17 95986 unique_id port 95986 remote_ip 10.8.0.6 95987 username aminvpn 95987 mac 95987 bytes_out 0 95987 bytes_in 0 95987 station_ip 83.123.237.50 95987 port 18 95987 unique_id port 95987 remote_ip 10.8.0.6 95990 username aminvpn 95990 mac 95990 bytes_out 0 95990 bytes_in 0 95990 station_ip 83.123.237.50 95990 port 17 95990 unique_id port 95990 remote_ip 10.8.0.6 95930 nas_port_type Virtual 95930 remote_ip 5.5.5.250 95932 username alinezhad 95932 unique_id port 95932 terminate_cause User-Request 95932 bytes_out 0 95932 bytes_in 0 95932 station_ip 5.202.19.182 95932 port 15728653 95932 nas_port_type Virtual 95932 remote_ip 5.5.5.251 95933 username alihosseini 95933 mac 95933 bytes_out 544915 95933 bytes_in 8061808 95933 station_ip 5.119.74.147 95933 port 14 95933 unique_id port 95933 remote_ip 10.8.0.46 95936 username heydari1 95936 unique_id port 95936 terminate_cause User-Request 95936 bytes_out 0 95936 bytes_in 0 95936 station_ip 5.119.30.17 95936 port 15728656 95936 nas_port_type Virtual 95936 remote_ip 5.5.5.247 95937 username mohammadi 95937 mac 95937 bytes_out 322335 95937 bytes_in 1883897 95937 station_ip 113.203.124.219 95937 port 16 95937 unique_id port 95937 remote_ip 10.8.0.62 95938 username alihosseini 95938 mac 95938 bytes_out 0 95938 bytes_in 0 95938 station_ip 5.119.20.5 95938 port 19 95938 unique_id port 95938 remote_ip 10.8.1.34 95944 username Alirezaza 95944 unique_id port 95944 terminate_cause Lost-Carrier 95944 bytes_out 337917 95944 bytes_in 1120473 95944 station_ip 5.119.144.94 95944 port 15728661 95944 nas_port_type Virtual 95944 remote_ip 5.5.5.243 95948 username aminvpn 95948 mac 95948 bytes_out 0 95948 bytes_in 0 95948 station_ip 83.123.172.77 95948 port 17 95948 unique_id port 95948 remote_ip 10.8.0.6 95951 username alireza1 95951 unique_id port 95951 terminate_cause User-Request 95951 bytes_out 451946 95951 bytes_in 1901955 95951 station_ip 5.119.100.97 95951 port 15728659 95951 nas_port_type Virtual 95951 remote_ip 5.5.5.244 95952 username aminvpn 95952 mac 95952 bytes_out 0 95952 bytes_in 0 95952 station_ip 5.119.219.20 95952 port 18 95952 unique_id port 95952 remote_ip 10.8.0.6 95953 username aminvpn 95953 mac 95953 bytes_out 0 95953 bytes_in 0 95953 station_ip 83.123.172.77 95953 port 17 95953 unique_id port 95953 remote_ip 10.8.0.6 95956 username aminvpn 95956 mac 95956 bytes_out 0 95956 bytes_in 0 95956 station_ip 5.119.219.20 95956 port 18 95956 unique_id port 95956 remote_ip 10.8.0.6 95961 username aminvpn 95961 mac 95961 bytes_out 0 95961 bytes_in 0 95961 station_ip 83.123.172.77 95961 port 17 95961 unique_id port 95961 remote_ip 10.8.0.6 95962 username aminvpn 95962 mac 95962 bytes_out 0 95962 bytes_in 0 95962 station_ip 5.119.219.20 95962 port 18 95962 unique_id port 95962 remote_ip 10.8.0.6 95963 username aminvpn 95963 mac 95963 bytes_out 0 95963 bytes_in 0 95963 station_ip 83.123.172.77 95963 port 17 95963 unique_id port 95963 remote_ip 10.8.0.6 95965 username aminvpn 95965 mac 95965 bytes_out 0 95965 bytes_in 0 95965 station_ip 5.119.219.20 95965 port 18 95965 unique_id port 95965 remote_ip 10.8.0.6 95966 username aminvpn 95966 mac 95966 bytes_out 0 95966 bytes_in 0 95966 station_ip 83.123.172.77 95966 port 14 95966 unique_id port 95966 remote_ip 10.8.0.6 188715 bytes_in 0 188715 station_ip 5.120.128.95 188715 port 394 188715 unique_id port 188717 remote_ip 10.8.0.250 188718 username sekonji0496 188718 mac 188718 bytes_out 0 188718 bytes_in 0 95980 username forozande 95980 unique_id port 95980 terminate_cause User-Request 95980 bytes_out 0 95980 bytes_in 0 95980 station_ip 83.122.202.73 95980 port 15728669 95980 nas_port_type Virtual 95980 remote_ip 5.5.5.239 188718 station_ip 83.123.0.241 95949 remote_ip 10.8.0.6 95950 username aminvpn 95950 mac 95950 bytes_out 0 95950 bytes_in 0 95950 station_ip 83.123.172.77 95950 port 17 95950 unique_id port 95950 remote_ip 10.8.0.6 95954 username aminvpn 95954 mac 95954 bytes_out 0 95954 bytes_in 0 95954 station_ip 5.119.219.20 95954 port 18 95954 unique_id port 95954 remote_ip 10.8.0.6 95955 username aminvpn 95955 mac 95955 bytes_out 0 95955 bytes_in 0 95955 station_ip 83.123.172.77 95955 port 17 95955 unique_id port 95955 remote_ip 10.8.0.6 95957 username aminvpn 95957 mac 95957 bytes_out 0 95957 bytes_in 0 95957 station_ip 83.123.172.77 95957 port 17 95957 unique_id port 95957 remote_ip 10.8.0.6 95958 username aminvpn 95958 mac 95958 bytes_out 0 95958 bytes_in 0 95958 station_ip 5.119.219.20 95958 port 18 95958 unique_id port 95958 remote_ip 10.8.0.6 95967 username aminvpn 95967 mac 95967 bytes_out 0 95967 bytes_in 0 95967 station_ip 5.119.219.20 95967 port 17 95967 unique_id port 95967 remote_ip 10.8.0.6 95968 username aminvpn 95968 mac 95968 bytes_out 0 95968 bytes_in 0 95968 station_ip 83.123.172.77 95968 port 18 95968 unique_id port 95968 remote_ip 10.8.0.6 95971 username aminvpn 95971 mac 95971 bytes_out 0 95971 bytes_in 0 95971 station_ip 83.123.172.77 95971 port 18 95971 unique_id port 95971 remote_ip 10.8.0.6 95974 username aminvpn 95974 mac 95974 bytes_out 0 95974 bytes_in 0 95974 station_ip 5.119.219.20 95974 port 17 95974 unique_id port 95974 remote_ip 10.8.0.6 95976 username aminvpn 95976 mac 95976 bytes_out 0 95976 bytes_in 0 95976 station_ip 83.123.172.77 95976 port 18 95976 unique_id port 95976 remote_ip 10.8.0.6 95977 username aminvpn 95977 mac 95977 bytes_out 0 95977 bytes_in 0 95977 station_ip 5.119.219.20 95977 port 17 95977 unique_id port 95977 remote_ip 10.8.0.6 95978 username aminvpn 95978 mac 95978 bytes_out 0 95978 bytes_in 0 95978 station_ip 83.123.172.77 95978 port 18 95978 unique_id port 95978 remote_ip 10.8.0.6 95982 username aminvpn 95982 mac 95982 bytes_out 0 95982 bytes_in 0 95982 station_ip 5.119.219.20 95982 port 17 95982 unique_id port 95982 remote_ip 10.8.0.6 95983 username aminvpn 95983 mac 95983 bytes_out 0 95983 bytes_in 0 95983 station_ip 83.123.172.77 95983 port 18 95983 unique_id port 95983 remote_ip 10.8.0.6 95985 username aminvpn 95985 mac 95985 bytes_out 0 95985 bytes_in 0 95985 station_ip 83.123.172.77 95985 port 18 95985 unique_id port 95985 remote_ip 10.8.0.6 95989 username aminvpn 95989 mac 95989 bytes_out 0 95989 bytes_in 0 95989 station_ip 5.119.219.20 95989 port 18 95989 unique_id port 95989 remote_ip 10.8.0.6 95994 username aminvpn 95994 mac 95994 bytes_out 0 95994 bytes_in 0 95994 station_ip 83.123.172.77 95994 port 17 95994 unique_id port 95994 remote_ip 10.8.0.6 95998 username aminvpn 95998 mac 95998 bytes_out 0 95998 bytes_in 0 95998 station_ip 83.123.237.50 95998 port 17 95998 unique_id port 95998 remote_ip 10.8.0.6 96000 username aminvpn 96000 mac 96000 bytes_out 0 96000 bytes_in 0 96000 station_ip 83.123.172.77 96000 port 17 96000 unique_id port 96000 remote_ip 10.8.0.6 96001 username aminvpn 96001 mac 96001 bytes_out 0 96001 bytes_in 0 96001 station_ip 83.123.237.50 96001 port 18 95981 username aminvpn 95981 mac 95981 bytes_out 0 95981 bytes_in 0 95981 station_ip 83.123.172.77 95981 port 18 95981 unique_id port 95981 remote_ip 10.8.0.6 95984 username aminvpn 95984 mac 95984 bytes_out 0 95984 bytes_in 0 95984 station_ip 5.119.219.20 95984 port 17 95984 unique_id port 95984 remote_ip 10.8.0.6 95988 username aminvpn 95988 mac 95988 bytes_out 0 95988 bytes_in 0 95988 station_ip 83.123.172.77 95988 port 17 95988 unique_id port 95988 remote_ip 10.8.0.6 95992 username aminvpn 95992 mac 95992 bytes_out 0 95992 bytes_in 0 95992 station_ip 83.123.237.50 95992 port 17 95992 unique_id port 95992 remote_ip 10.8.0.6 95993 username aminvpn 95993 mac 95993 bytes_out 0 95993 bytes_in 0 95993 station_ip 5.119.219.20 95993 port 18 95993 unique_id port 95993 remote_ip 10.8.0.6 95996 username aminvpn 95996 mac 95996 bytes_out 0 95996 bytes_in 0 95996 station_ip 5.119.219.20 95996 port 17 95996 unique_id port 95996 remote_ip 10.8.0.6 95997 username aminvpn 95997 mac 95997 bytes_out 0 95997 bytes_in 0 95997 station_ip 83.123.172.77 95997 port 18 95997 unique_id port 95997 remote_ip 10.8.0.6 96004 username aminvpn 96004 mac 96004 bytes_out 0 96004 bytes_in 0 96004 station_ip 5.119.219.20 96004 port 17 96004 unique_id port 96004 remote_ip 10.8.0.6 96005 username aminvpn 96005 mac 96005 bytes_out 0 96005 bytes_in 0 96005 station_ip 83.123.237.50 96005 port 18 96005 unique_id port 96005 remote_ip 10.8.0.6 96006 username aminvpn 96006 mac 96006 bytes_out 0 96006 bytes_in 0 96006 station_ip 5.119.219.20 96006 port 17 96006 unique_id port 96006 remote_ip 10.8.0.6 96009 username aminvpn 96009 kill_reason Another user logged on this global unique id 96009 mac 96009 bytes_out 0 96009 bytes_in 0 96009 station_ip 5.119.219.20 96009 port 17 96009 unique_id port 96011 username aminvpn 96011 kill_reason Another user logged on this global unique id 96011 mac 96011 bytes_out 0 96011 bytes_in 0 96011 station_ip 5.119.219.20 96011 port 17 96011 unique_id port 96013 username aminvpn 96013 kill_reason Another user logged on this global unique id 96013 mac 96013 bytes_out 0 96013 bytes_in 0 96013 station_ip 5.119.219.20 96013 port 17 96013 unique_id port 96015 username aminvpn 96015 kill_reason Another user logged on this global unique id 96015 mac 96015 bytes_out 0 96015 bytes_in 0 96015 station_ip 5.119.219.20 96015 port 17 96015 unique_id port 96016 username askari 96016 mac 96016 bytes_out 0 96016 bytes_in 0 96016 station_ip 5.120.76.39 96016 port 14 96016 unique_id port 96016 remote_ip 10.8.0.34 96017 username aminvpn 96017 kill_reason Another user logged on this global unique id 96017 mac 96017 bytes_out 0 96017 bytes_in 0 96017 station_ip 5.119.219.20 96017 port 17 96017 unique_id port 96019 username mohammadi 96019 mac 96019 bytes_out 0 96019 bytes_in 0 96019 station_ip 113.203.42.63 96019 port 14 96019 unique_id port 96019 remote_ip 10.8.0.62 96022 username alireza1 96022 unique_id port 96022 terminate_cause NAS-Request 96022 bytes_out 2439861 96022 bytes_in 5800381 96022 station_ip 5.119.100.97 96022 port 15728664 96022 nas_port_type Virtual 96022 remote_ip 5.5.5.244 96023 username alireza1 96023 unique_id port 96023 terminate_cause User-Request 96023 bytes_out 0 96023 bytes_in 0 96023 station_ip 5.119.100.97 96023 port 15728682 96023 nas_port_type Virtual 96023 remote_ip 5.5.5.244 95991 username aminvpn 95991 mac 95991 bytes_out 0 95991 bytes_in 0 95991 station_ip 83.123.172.77 95991 port 18 95991 unique_id port 95991 remote_ip 10.8.0.6 95995 username aminvpn 95995 mac 95995 bytes_out 0 95995 bytes_in 0 95995 station_ip 83.123.237.50 95995 port 18 95995 unique_id port 95995 remote_ip 10.8.0.6 95999 username aminvpn 95999 mac 95999 bytes_out 0 95999 bytes_in 0 95999 station_ip 5.119.219.20 95999 port 18 95999 unique_id port 95999 remote_ip 10.8.0.6 96002 username aminvpn 96002 mac 96002 bytes_out 0 96002 bytes_in 0 96002 station_ip 5.119.219.20 96002 port 17 96002 unique_id port 96002 remote_ip 10.8.0.6 96003 username aminvpn 96003 mac 96003 bytes_out 0 96003 bytes_in 0 96003 station_ip 83.123.237.50 96003 port 18 96003 unique_id port 96003 remote_ip 10.8.0.6 96007 username aminvpn 96007 mac 96007 bytes_out 0 96007 bytes_in 0 96007 station_ip 83.123.237.50 96007 port 18 96007 unique_id port 96007 remote_ip 10.8.0.6 96008 username aminvpn 96008 kill_reason Another user logged on this global unique id 96008 mac 96008 bytes_out 0 96008 bytes_in 0 96008 station_ip 5.119.219.20 96008 port 17 96008 unique_id port 96008 remote_ip 10.8.0.6 96010 username mohammadi 96010 mac 96010 bytes_out 0 96010 bytes_in 0 96010 station_ip 113.203.42.63 96010 port 18 96010 unique_id port 96010 remote_ip 10.8.0.62 96012 username aminvpn 96012 kill_reason Another user logged on this global unique id 96012 mac 96012 bytes_out 0 96012 bytes_in 0 96012 station_ip 5.119.219.20 96012 port 17 96012 unique_id port 96014 username aminvpn 96014 kill_reason Another user logged on this global unique id 96014 mac 96014 bytes_out 0 96014 bytes_in 0 96014 station_ip 5.119.219.20 96014 port 17 96014 unique_id port 96020 username mahbobeh 96020 unique_id port 96020 terminate_cause Lost-Carrier 96020 bytes_out 460455 96020 bytes_in 12449483 96020 station_ip 83.122.197.30 96020 port 15728667 96020 nas_port_type Virtual 96020 remote_ip 5.5.5.241 96021 username aminvpn 96021 unique_id port 96021 terminate_cause User-Request 96021 bytes_out 0 96021 bytes_in 0 96021 station_ip 5.119.219.20 96021 port 15728677 96021 nas_port_type Virtual 96021 remote_ip 5.5.5.238 96025 username aminvpn 96025 unique_id port 96025 terminate_cause User-Request 96025 bytes_out 0 96025 bytes_in 0 96025 station_ip 5.119.219.20 96025 port 15728684 96025 nas_port_type Virtual 96025 remote_ip 5.5.5.238 96029 username askari 96029 kill_reason Another user logged on this global unique id 96029 mac 96029 bytes_out 0 96029 bytes_in 0 96029 station_ip 5.120.70.174 96029 port 18 96029 unique_id port 96029 remote_ip 10.8.0.34 96030 username askari 96030 mac 96030 bytes_out 0 96030 bytes_in 0 96030 station_ip 5.120.70.174 96030 port 18 96030 unique_id port 96032 username aminvpn 96032 unique_id port 96032 terminate_cause User-Request 96032 bytes_out 0 96032 bytes_in 0 96032 station_ip 5.119.219.20 96032 port 15728700 96032 nas_port_type Virtual 96032 remote_ip 5.5.5.238 96033 username alireza1 96033 unique_id port 96033 terminate_cause NAS-Request 96033 bytes_out 697615 96033 bytes_in 2016479 96033 station_ip 5.119.100.97 96033 port 15728688 96033 nas_port_type Virtual 96033 remote_ip 5.5.5.244 96035 username askari 96035 kill_reason Another user logged on this global unique id 96035 mac 96035 bytes_out 0 96035 bytes_in 0 96035 station_ip 5.120.70.174 96035 port 18 96035 unique_id port 96035 remote_ip 10.8.1.30 96001 unique_id port 96001 remote_ip 10.8.0.6 96018 username aminvpn 96018 mac 96018 bytes_out 0 96018 bytes_in 0 96018 station_ip 5.119.219.20 96018 port 17 96018 unique_id port 96024 username alireza1 96024 unique_id port 96024 terminate_cause User-Request 96024 bytes_out 0 96024 bytes_in 0 96024 station_ip 5.119.100.97 96024 port 15728683 96024 nas_port_type Virtual 96024 remote_ip 5.5.5.244 96026 username aminvpn 96026 unique_id port 96026 terminate_cause User-Request 96026 bytes_out 0 96026 bytes_in 0 96026 station_ip 5.119.210.121 96026 port 15728689 96026 nas_port_type Virtual 96026 remote_ip 5.5.5.237 96027 username aminvpn 96027 unique_id port 96027 terminate_cause User-Request 96027 bytes_out 0 96027 bytes_in 0 96027 station_ip 5.119.210.121 96027 port 15728690 96027 nas_port_type Virtual 96027 remote_ip 5.5.5.237 96031 username aminvpn 96031 unique_id port 96031 terminate_cause User-Request 96031 bytes_out 563393 96031 bytes_in 5708754 96031 station_ip 5.119.219.20 96031 port 15728696 96031 nas_port_type Virtual 96031 remote_ip 5.5.5.238 96036 username askari 96036 mac 96036 bytes_out 0 96036 bytes_in 0 96036 station_ip 5.120.70.174 96036 port 18 96036 unique_id port 96037 username amirhosein 96037 unique_id port 96037 terminate_cause NAS-Request 96037 bytes_out 113570 96037 bytes_in 292336 96037 station_ip 5.120.1.31 96037 port 15728704 96037 nas_port_type Virtual 96037 remote_ip 5.5.5.234 96041 username askari 96041 kill_reason Another user logged on this global unique id 96041 mac 96041 bytes_out 0 96041 bytes_in 0 96041 station_ip 5.119.199.217 96041 port 19 96041 unique_id port 96041 remote_ip 10.8.1.30 96042 username askari 96042 kill_reason Another user logged on this global unique id 96042 mac 96042 bytes_out 0 96042 bytes_in 0 96042 station_ip 5.119.199.217 96042 port 19 96042 unique_id port 96043 username askari 96043 kill_reason Another user logged on this global unique id 96043 mac 96043 bytes_out 0 96043 bytes_in 0 96043 station_ip 5.119.199.217 96043 port 19 96043 unique_id port 96045 username mohammadi 96045 mac 96045 bytes_out 0 96045 bytes_in 0 96045 station_ip 113.203.95.51 96045 port 16 96045 unique_id port 96045 remote_ip 10.8.0.62 96047 username mohammadi 96047 mac 96047 bytes_out 0 96047 bytes_in 0 96047 station_ip 113.203.95.51 96047 port 17 96047 unique_id port 96047 remote_ip 10.8.0.62 96055 username alihosseini 96055 mac 96055 bytes_out 0 96055 bytes_in 0 96055 station_ip 5.119.108.208 96055 port 14 96055 unique_id port 96055 remote_ip 10.8.0.46 96059 username alihosseini 96059 mac 96059 bytes_out 0 96059 bytes_in 0 96059 station_ip 5.119.108.208 96059 port 21 96059 unique_id port 96059 remote_ip 10.8.1.34 96060 username alihosseini 96060 mac 96060 bytes_out 0 96060 bytes_in 0 96060 station_ip 5.119.108.208 96060 port 21 96060 unique_id port 96060 remote_ip 10.8.1.34 96062 username askari 96062 mac 96062 bytes_out 0 96062 bytes_in 0 96062 station_ip 5.119.199.217 96062 port 19 96062 unique_id port 96064 username mohammadi 96064 mac 96064 bytes_out 0 96064 bytes_in 0 96064 station_ip 113.203.95.51 96064 port 16 96064 unique_id port 96064 remote_ip 10.8.0.62 96068 username mehdizare 96068 kill_reason Another user logged on this global unique id 96068 mac 96068 bytes_out 0 96068 bytes_in 0 96068 station_ip 5.119.139.224 96068 port 14 96068 unique_id port 96068 remote_ip 10.8.0.70 96069 username mirzaei 96028 username aminvpn 96028 unique_id port 96028 terminate_cause Lost-Carrier 96028 bytes_out 68333 96028 bytes_in 461303 96028 station_ip 5.119.210.121 96028 port 15728691 96028 nas_port_type Virtual 96028 remote_ip 5.5.5.236 96034 username Alirezaza 96034 unique_id port 96034 terminate_cause NAS-Request 96034 bytes_out 632422 96034 bytes_in 7861492 96034 station_ip 5.119.97.228 96034 port 15728697 96034 nas_port_type Virtual 96034 remote_ip 5.5.5.235 96052 username mohammadi 96052 mac 96052 bytes_out 142169 96052 bytes_in 657803 96052 station_ip 113.203.95.51 96052 port 16 96052 unique_id port 96052 remote_ip 10.8.0.62 96057 username alihosseini 96057 mac 96057 bytes_out 0 96057 bytes_in 0 96057 station_ip 5.119.108.208 96057 port 14 96057 unique_id port 96057 remote_ip 10.8.0.46 96065 username alihosseini 96065 mac 96065 bytes_out 0 96065 bytes_in 0 96065 station_ip 5.120.83.238 96065 port 19 96065 unique_id port 96065 remote_ip 10.8.1.34 96066 username alihosseini 96066 mac 96066 bytes_out 0 96066 bytes_in 0 96066 station_ip 5.120.83.238 96066 port 19 96066 unique_id port 96066 remote_ip 10.8.1.34 96067 username alihosseini 96067 mac 96067 bytes_out 316427 96067 bytes_in 461037 96067 station_ip 5.119.165.143 96067 port 19 96067 unique_id port 96067 remote_ip 10.8.1.34 96070 username mehdizare 96070 kill_reason Another user logged on this global unique id 96070 mac 96070 bytes_out 0 96070 bytes_in 0 96070 station_ip 5.119.139.224 96070 port 14 96070 unique_id port 96077 username askari 96077 kill_reason Another user logged on this global unique id 96077 mac 96077 bytes_out 0 96077 bytes_in 0 96077 station_ip 5.120.147.228 96077 port 18 96077 unique_id port 96077 remote_ip 10.8.1.30 96080 username askari 96080 kill_reason Another user logged on this global unique id 96080 mac 96080 bytes_out 0 96080 bytes_in 0 96080 station_ip 5.120.147.228 96080 port 18 96080 unique_id port 96083 username askari 96083 kill_reason Another user logged on this global unique id 96083 mac 96083 bytes_out 0 96083 bytes_in 0 96083 station_ip 5.120.147.228 96083 port 18 96083 unique_id port 96085 username mohammadi 96085 mac 96085 bytes_out 0 96085 bytes_in 0 96085 station_ip 113.203.14.7 96085 port 18 96085 unique_id port 96085 remote_ip 10.8.0.62 96088 username mirzaei 96088 mac 96088 bytes_out 0 96088 bytes_in 0 96088 station_ip 5.119.46.182 96088 port 11 96088 unique_id port 96089 username mohammadi 96089 mac 96089 bytes_out 0 96089 bytes_in 0 96089 station_ip 113.203.14.7 96089 port 17 96089 unique_id port 96089 remote_ip 10.8.0.62 96092 username mohammadi 96092 mac 96092 bytes_out 0 96092 bytes_in 0 96092 station_ip 113.203.14.7 96092 port 11 96092 unique_id port 96092 remote_ip 10.8.0.62 96093 username mohammadi 96093 mac 96093 bytes_out 0 96093 bytes_in 0 96093 station_ip 113.203.14.7 96093 port 11 96093 unique_id port 96093 remote_ip 10.8.0.62 96097 username mohammadi 96097 mac 96097 bytes_out 427411 96097 bytes_in 3259157 96097 station_ip 113.203.14.7 96097 port 17 96097 unique_id port 96097 remote_ip 10.8.0.62 96103 username mirzaei 96103 kill_reason Another user logged on this global unique id 96103 mac 96103 bytes_out 0 96103 bytes_in 0 96103 station_ip 5.120.181.79 96103 port 11 96103 unique_id port 96105 username mohammadi 96105 mac 96105 bytes_out 26144 96105 bytes_in 38813 96105 station_ip 113.203.36.3 96105 port 17 96038 username mehdizare 96038 mac 96038 bytes_out 417927 96038 bytes_in 1497538 96038 station_ip 5.119.139.224 96038 port 16 96038 unique_id port 96038 remote_ip 10.8.0.70 96039 username mohammadi 96039 mac 96039 bytes_out 0 96039 bytes_in 0 96039 station_ip 113.203.95.51 96039 port 14 96039 unique_id port 96039 remote_ip 10.8.0.62 96040 username mohammadi 96040 mac 96040 bytes_out 40900 96040 bytes_in 52585 96040 station_ip 113.203.95.51 96040 port 16 96040 unique_id port 96040 remote_ip 10.8.0.62 96044 username mohammadi 96044 mac 96044 bytes_out 0 96044 bytes_in 0 96044 station_ip 113.203.95.51 96044 port 16 96044 unique_id port 96044 remote_ip 10.8.0.62 96046 username alihosseini 96046 mac 96046 bytes_out 0 96046 bytes_in 0 96046 station_ip 5.119.108.208 96046 port 14 96046 unique_id port 96046 remote_ip 10.8.0.46 96048 username mirzaei 96048 kill_reason Another user logged on this global unique id 96048 mac 96048 bytes_out 0 96048 bytes_in 0 96048 station_ip 5.119.46.182 96048 port 11 96048 unique_id port 96048 remote_ip 10.8.0.14 96049 username alihosseini 96049 mac 96049 bytes_out 0 96049 bytes_in 0 96049 station_ip 5.119.108.208 96049 port 14 96049 unique_id port 96049 remote_ip 10.8.0.46 96050 username mehdizare 96050 kill_reason Another user logged on this global unique id 96050 mac 96050 bytes_out 0 96050 bytes_in 0 96050 station_ip 5.119.139.224 96050 port 18 96050 unique_id port 96050 remote_ip 10.8.1.54 96051 username mirzaei 96051 kill_reason Another user logged on this global unique id 96051 mac 96051 bytes_out 0 96051 bytes_in 0 96051 station_ip 5.119.46.182 96051 port 11 96051 unique_id port 96053 username alihosseini 96053 mac 96053 bytes_out 0 96053 bytes_in 0 96053 station_ip 5.119.108.208 96053 port 14 96053 unique_id port 96053 remote_ip 10.8.0.46 96054 username alihosseini 96054 mac 96054 bytes_out 0 96054 bytes_in 0 96054 station_ip 5.119.108.208 96054 port 14 96054 unique_id port 96054 remote_ip 10.8.0.46 96056 username alihosseini 96056 mac 96056 bytes_out 0 96056 bytes_in 0 96056 station_ip 5.119.108.208 96056 port 21 96056 unique_id port 96056 remote_ip 10.8.1.34 96058 username mehdizare 96058 kill_reason Another user logged on this global unique id 96058 mac 96058 bytes_out 0 96058 bytes_in 0 96058 station_ip 5.119.139.224 96058 port 18 96058 unique_id port 96061 username mehdizare 96061 mac 96061 bytes_out 0 96061 bytes_in 0 96061 station_ip 5.119.139.224 96061 port 18 96061 unique_id port 96063 username aminvpn 96063 mac 96063 bytes_out 193530 96063 bytes_in 603346 96063 station_ip 89.199.202.194 96063 port 17 96063 unique_id port 96063 remote_ip 10.8.0.6 96072 username mehdizare 96072 kill_reason Another user logged on this global unique id 96072 mac 96072 bytes_out 0 96072 bytes_in 0 96072 station_ip 5.119.139.224 96072 port 14 96072 unique_id port 96078 username mohammadi 96078 mac 96078 bytes_out 2812355 96078 bytes_in 418525 96078 station_ip 113.203.14.7 96078 port 17 96078 unique_id port 96078 remote_ip 10.8.0.62 96084 username mohammadi 96084 mac 96084 bytes_out 0 96084 bytes_in 0 96084 station_ip 113.203.14.7 96084 port 17 96084 unique_id port 96084 remote_ip 10.8.0.62 96087 username askari 96087 mac 96087 bytes_out 0 96087 bytes_in 0 96087 station_ip 5.120.147.228 96087 port 18 96087 unique_id port 96087 remote_ip 10.8.1.30 96069 kill_reason Another user logged on this global unique id 96069 mac 96069 bytes_out 0 96069 bytes_in 0 96069 station_ip 5.119.46.182 96069 port 11 96069 unique_id port 96071 username aminvpn 96071 mac 96071 bytes_out 0 96071 bytes_in 0 96071 station_ip 89.199.202.194 96071 port 18 96071 unique_id port 96071 remote_ip 10.8.1.6 96073 username aminvpn 96073 mac 96073 bytes_out 0 96073 bytes_in 0 96073 station_ip 5.119.219.20 96073 port 16 96073 unique_id port 96073 remote_ip 10.8.0.6 96074 username mirzaei 96074 kill_reason Another user logged on this global unique id 96074 mac 96074 bytes_out 0 96074 bytes_in 0 96074 station_ip 5.119.46.182 96074 port 11 96074 unique_id port 96075 username mehdizare 96075 mac 96075 bytes_out 0 96075 bytes_in 0 96075 station_ip 5.119.139.224 96075 port 14 96075 unique_id port 96076 username aminvpn 96076 mac 96076 bytes_out 0 96076 bytes_in 0 96076 station_ip 5.119.219.20 96076 port 16 96076 unique_id port 96076 remote_ip 10.8.0.6 96079 username mirzaei 96079 kill_reason Another user logged on this global unique id 96079 mac 96079 bytes_out 0 96079 bytes_in 0 96079 station_ip 5.119.46.182 96079 port 11 96079 unique_id port 96081 username mohammadi 96081 mac 96081 bytes_out 0 96081 bytes_in 0 96081 station_ip 113.203.14.7 96081 port 17 96081 unique_id port 96081 remote_ip 10.8.0.62 96082 username aminvpn 96082 kill_reason Another user logged on this global unique id 96082 mac 96082 bytes_out 0 96082 bytes_in 0 96082 station_ip 5.119.219.20 96082 port 16 96082 unique_id port 96082 remote_ip 10.8.0.6 96086 username mirzaei 96086 kill_reason Another user logged on this global unique id 96086 mac 96086 bytes_out 0 96086 bytes_in 0 96086 station_ip 5.119.46.182 96086 port 11 96086 unique_id port 96091 username aminvpn 96091 kill_reason Another user logged on this global unique id 96091 mac 96091 bytes_out 0 96091 bytes_in 0 96091 station_ip 5.119.219.20 96091 port 16 96091 unique_id port 96094 username mohammadi 96094 mac 96094 bytes_out 315920 96094 bytes_in 195780 96094 station_ip 113.203.14.7 96094 port 17 96094 unique_id port 96094 remote_ip 10.8.0.62 96096 username mahdiyehalizadeh 96096 mac 96096 bytes_out 0 96096 bytes_in 0 96096 station_ip 37.129.201.235 96096 port 11 96096 unique_id port 96096 remote_ip 10.8.0.90 96098 username aminvpn 96098 kill_reason Another user logged on this global unique id 96098 mac 96098 bytes_out 0 96098 bytes_in 0 96098 station_ip 5.119.219.20 96098 port 16 96098 unique_id port 96100 username mahdiyehalizadeh 96100 mac 96100 bytes_out 457555 96100 bytes_in 5317093 96100 station_ip 37.129.130.39 96100 port 17 96100 unique_id port 96100 remote_ip 10.8.0.90 96104 username mohammadi 96104 mac 96104 bytes_out 966252 96104 bytes_in 2173862 96104 station_ip 113.203.14.7 96104 port 17 96104 unique_id port 96104 remote_ip 10.8.0.62 96106 username mohammadi 96106 mac 96106 bytes_out 1053814 96106 bytes_in 14318470 96106 station_ip 113.203.36.3 96106 port 17 96106 unique_id port 96106 remote_ip 10.8.0.62 96109 username mohammadi 96109 mac 96109 bytes_out 0 96109 bytes_in 0 96109 station_ip 113.203.36.3 96109 port 17 96109 unique_id port 96109 remote_ip 10.8.0.62 96116 username mohammadi 96116 mac 96116 bytes_out 0 96116 bytes_in 0 96116 station_ip 113.203.7.23 96116 port 17 96116 unique_id port 96116 remote_ip 10.8.0.62 96118 username askari 96118 mac 96090 username askari 96090 mac 96090 bytes_out 0 96090 bytes_in 0 96090 station_ip 5.120.147.228 96090 port 18 96090 unique_id port 96095 username aminvpn 96095 kill_reason Another user logged on this global unique id 96095 mac 96095 bytes_out 0 96095 bytes_in 0 96095 station_ip 5.119.219.20 96095 port 16 96095 unique_id port 96099 username mirzaei 96099 kill_reason Another user logged on this global unique id 96099 mac 96099 bytes_out 0 96099 bytes_in 0 96099 station_ip 5.120.181.79 96099 port 11 96099 unique_id port 96099 remote_ip 10.8.0.14 96101 username mehdizare 96101 mac 96101 bytes_out 0 96101 bytes_in 0 96101 station_ip 5.119.139.224 96101 port 14 96101 unique_id port 96101 remote_ip 10.8.0.70 96102 username mohammadi 96102 mac 96102 bytes_out 2730288 96102 bytes_in 12843927 96102 station_ip 113.203.14.7 96102 port 17 96102 unique_id port 96102 remote_ip 10.8.0.62 96112 username aminvpn 96112 kill_reason Another user logged on this global unique id 96112 mac 96112 bytes_out 0 96112 bytes_in 0 96112 station_ip 5.119.219.20 96112 port 16 96112 unique_id port 96113 username aminvpn 96113 kill_reason Another user logged on this global unique id 96113 mac 96113 bytes_out 0 96113 bytes_in 0 96113 station_ip 5.119.219.20 96113 port 16 96113 unique_id port 96114 username aminvpn 96114 kill_reason Another user logged on this global unique id 96114 mac 96114 bytes_out 0 96114 bytes_in 0 96114 station_ip 5.119.219.20 96114 port 16 96114 unique_id port 96115 username askari 96115 kill_reason Another user logged on this global unique id 96115 mac 96115 bytes_out 0 96115 bytes_in 0 96115 station_ip 5.120.180.207 96115 port 18 96115 unique_id port 96115 remote_ip 10.8.1.30 96119 username askari 96119 mac 96119 bytes_out 247866 96119 bytes_in 1526168 96119 station_ip 5.120.180.207 96119 port 18 96119 unique_id port 96119 remote_ip 10.8.1.30 96124 username mohammadi 96124 mac 96124 bytes_out 0 96124 bytes_in 0 96124 station_ip 113.203.7.23 96124 port 14 96124 unique_id port 96124 remote_ip 10.8.0.62 96126 username mirzaei 96126 kill_reason Another user logged on this global unique id 96126 mac 96126 bytes_out 0 96126 bytes_in 0 96126 station_ip 5.120.181.79 96126 port 11 96126 unique_id port 96132 username mohammadi 96132 mac 96132 bytes_out 89354 96132 bytes_in 280111 96132 station_ip 113.203.7.23 96132 port 17 96132 unique_id port 96132 remote_ip 10.8.0.62 96138 username mohammadi 96138 mac 96138 bytes_out 94597 96138 bytes_in 139437 96138 station_ip 113.203.61.31 96138 port 17 96138 unique_id port 96138 remote_ip 10.8.0.62 96140 username mirzaei 96140 kill_reason Another user logged on this global unique id 96140 mac 96140 bytes_out 0 96140 bytes_in 0 96140 station_ip 5.120.181.79 96140 port 11 96140 unique_id port 96142 username mehdizare 96142 mac 96142 bytes_out 0 96142 bytes_in 0 96142 station_ip 5.119.139.224 96142 port 16 96142 unique_id port 96142 remote_ip 10.8.0.70 96152 username mohammadi 96152 mac 96152 bytes_out 193570 96152 bytes_in 1381498 96152 station_ip 113.203.70.11 96152 port 14 96152 unique_id port 96152 remote_ip 10.8.0.62 96153 username aminvpn 96153 mac 96153 bytes_out 0 96153 bytes_in 0 96153 station_ip 5.119.219.20 96153 port 14 96153 unique_id port 96153 remote_ip 10.8.0.6 96154 username askari 96154 mac 96154 bytes_out 0 96154 bytes_in 0 96154 station_ip 5.120.0.78 96154 port 17 96154 unique_id port 96105 unique_id port 96105 remote_ip 10.8.0.62 96107 username aminvpn 96107 kill_reason Another user logged on this global unique id 96107 mac 96107 bytes_out 0 96107 bytes_in 0 96107 station_ip 5.119.219.20 96107 port 16 96107 unique_id port 96108 username mohammadi 96108 mac 96108 bytes_out 0 96108 bytes_in 0 96108 station_ip 113.203.36.3 96108 port 18 96108 unique_id port 96108 remote_ip 10.8.0.62 96110 username aminvpn 96110 kill_reason Another user logged on this global unique id 96110 mac 96110 bytes_out 0 96110 bytes_in 0 96110 station_ip 5.119.219.20 96110 port 16 96110 unique_id port 96111 username aminvpn 96111 kill_reason Another user logged on this global unique id 96111 mac 96111 bytes_out 0 96111 bytes_in 0 96111 station_ip 5.119.219.20 96111 port 16 96111 unique_id port 96117 username mohammadi 96117 kill_reason Another user logged on this global unique id 96117 mac 96117 bytes_out 0 96117 bytes_in 0 96117 station_ip 113.203.7.23 96117 port 18 96117 unique_id port 96117 remote_ip 10.8.0.62 96122 username mehdizare 96122 mac 96122 bytes_out 0 96122 bytes_in 0 96122 station_ip 5.119.139.224 96122 port 14 96122 unique_id port 96122 remote_ip 10.8.0.70 96123 username mirzaei 96123 kill_reason Another user logged on this global unique id 96123 mac 96123 bytes_out 0 96123 bytes_in 0 96123 station_ip 5.120.181.79 96123 port 11 96123 unique_id port 96127 username mohammadi 96127 kill_reason Another user logged on this global unique id 96127 mac 96127 bytes_out 0 96127 bytes_in 0 96127 station_ip 113.203.7.23 96127 port 18 96127 unique_id port 96127 remote_ip 10.8.0.62 96128 username mehdizare 96128 kill_reason Another user logged on this global unique id 96128 mac 96128 bytes_out 0 96128 bytes_in 0 96128 station_ip 5.119.139.224 96128 port 17 96128 unique_id port 96128 remote_ip 10.8.0.70 96129 username mehdizare 96129 mac 96129 bytes_out 0 96129 bytes_in 0 96129 station_ip 5.119.139.224 96129 port 17 96129 unique_id port 96131 username mohammadi 96131 mac 96131 bytes_out 0 96131 bytes_in 0 96131 station_ip 113.203.7.23 96131 port 16 96131 unique_id port 96131 remote_ip 10.8.0.62 96133 username mohammadi 96133 mac 96133 bytes_out 11246069 96133 bytes_in 9536328 96133 station_ip 113.203.7.23 96133 port 16 96133 unique_id port 96133 remote_ip 10.8.0.62 96134 username mohammadi 96134 mac 96134 bytes_out 10373988 96134 bytes_in 6271073 96134 station_ip 113.203.7.23 96134 port 16 96134 unique_id port 96134 remote_ip 10.8.0.62 96135 username mehdizare 96135 mac 96135 bytes_out 1069848 96135 bytes_in 11220010 96135 station_ip 5.119.139.224 96135 port 14 96135 unique_id port 96135 remote_ip 10.8.0.70 96136 username mirzaei 96136 kill_reason Another user logged on this global unique id 96136 mac 96136 bytes_out 0 96136 bytes_in 0 96136 station_ip 5.120.181.79 96136 port 11 96136 unique_id port 96139 username mehdizare 96139 mac 96139 bytes_out 0 96139 bytes_in 0 96139 station_ip 5.119.139.224 96139 port 14 96139 unique_id port 96139 remote_ip 10.8.0.70 96144 username mehdizare 96144 mac 96144 bytes_out 0 96144 bytes_in 0 96144 station_ip 5.119.139.224 96144 port 16 96144 unique_id port 96144 remote_ip 10.8.0.70 96145 username mahyaarabpour 96145 mac 96145 bytes_out 3136885 96145 bytes_in 43529461 96145 station_ip 5.119.34.157 96145 port 16 96145 unique_id port 96145 remote_ip 10.8.0.54 96150 username mehdizare 96150 mac 96150 bytes_out 0 96118 bytes_out 0 96118 bytes_in 0 96118 station_ip 5.120.180.207 96118 port 18 96118 unique_id port 96120 username askari 96120 mac 96120 bytes_out 0 96120 bytes_in 0 96120 station_ip 5.120.180.207 96120 port 18 96120 unique_id port 96121 username mohammadi 96121 mac 96121 bytes_out 0 96121 bytes_in 0 96121 station_ip 113.203.7.23 96121 port 17 96121 unique_id port 96121 remote_ip 10.8.0.62 96125 username aminvpn 96125 mac 96125 bytes_out 0 96125 bytes_in 0 96125 station_ip 5.119.219.20 96125 port 16 96125 unique_id port 96130 username mahdiyehalizadeh 96130 mac 96130 bytes_out 0 96130 bytes_in 0 96130 station_ip 83.122.137.180 96130 port 18 96130 unique_id port 96130 remote_ip 10.8.1.62 96137 username mohammadi 96137 mac 96137 bytes_out 0 96137 bytes_in 0 96137 station_ip 113.203.61.31 96137 port 16 96137 unique_id port 96137 remote_ip 10.8.0.62 96141 username mehdizare 96141 mac 96141 bytes_out 0 96141 bytes_in 0 96141 station_ip 5.119.139.224 96141 port 14 96141 unique_id port 96141 remote_ip 10.8.0.70 96143 username mehdizare 96143 mac 96143 bytes_out 0 96143 bytes_in 0 96143 station_ip 5.119.139.224 96143 port 14 96143 unique_id port 96143 remote_ip 10.8.0.70 96146 username mahyaarabpour 96146 mac 96146 bytes_out 0 96146 bytes_in 0 96146 station_ip 5.119.34.157 96146 port 18 96146 unique_id port 96146 remote_ip 10.8.0.54 96147 username aminvpn 96147 mac 96147 bytes_out 937268 96147 bytes_in 4563810 96147 station_ip 5.119.172.84 96147 port 17 96147 unique_id port 96147 remote_ip 10.8.0.6 96148 username aminvpn 96148 mac 96148 bytes_out 0 96148 bytes_in 0 96148 station_ip 5.119.172.84 96148 port 16 96148 unique_id port 96148 remote_ip 10.8.0.6 96149 username mohammadi 96149 mac 96149 bytes_out 80732 96149 bytes_in 124909 96149 station_ip 113.203.70.11 96149 port 17 96149 unique_id port 96149 remote_ip 10.8.0.62 96151 username mohammadi 96151 mac 96151 bytes_out 0 96151 bytes_in 0 96151 station_ip 113.203.70.11 96151 port 14 96151 unique_id port 96151 remote_ip 10.8.0.62 96155 username mohammadi 96155 mac 96155 bytes_out 0 96155 bytes_in 0 96155 station_ip 113.203.70.11 96155 port 14 96155 unique_id port 96155 remote_ip 10.8.0.62 96156 username mahdiyehalizadeh 96156 mac 96156 bytes_out 821614 96156 bytes_in 8303659 96156 station_ip 83.122.72.152 96156 port 16 96156 unique_id port 96156 remote_ip 10.8.0.90 96160 username mirzaei 96160 kill_reason Another user logged on this global unique id 96160 mac 96160 bytes_out 0 96160 bytes_in 0 96160 station_ip 5.120.181.79 96160 port 11 96160 unique_id port 96161 username mehdizare 96161 mac 96161 bytes_out 0 96161 bytes_in 0 96161 station_ip 5.119.139.224 96161 port 18 96161 unique_id port 96161 remote_ip 10.8.1.54 96167 username tahmasebi 96167 kill_reason Another user logged on this global unique id 96167 mac 96167 bytes_out 0 96167 bytes_in 0 96167 station_ip 5.119.159.157 96167 port 11 96167 unique_id port 96169 username tahmasebi 96169 kill_reason Another user logged on this global unique id 96169 mac 96169 bytes_out 0 96169 bytes_in 0 96169 station_ip 5.119.159.157 96169 port 11 96169 unique_id port 96171 username mehdizare 96171 mac 96171 bytes_out 498302 96171 bytes_in 1496789 96171 station_ip 5.119.139.224 96171 port 18 96171 unique_id port 96171 remote_ip 10.8.1.54 96150 bytes_in 0 96150 station_ip 5.119.139.224 96150 port 14 96150 unique_id port 96150 remote_ip 10.8.0.70 96157 username aminvpn 96157 mac 96157 bytes_out 0 96157 bytes_in 0 96157 station_ip 5.120.104.159 96157 port 14 96157 unique_id port 96157 remote_ip 10.8.0.6 96158 username mohammadi 96158 mac 96158 bytes_out 0 96158 bytes_in 0 96158 station_ip 113.203.70.11 96158 port 14 96158 unique_id port 96158 remote_ip 10.8.0.62 96162 username mehdizare 96162 mac 96162 bytes_out 0 96162 bytes_in 0 96162 station_ip 5.119.139.224 96162 port 18 96162 unique_id port 96162 remote_ip 10.8.1.54 96164 username mirzaei 96164 mac 96164 bytes_out 0 96164 bytes_in 0 96164 station_ip 5.120.181.79 96164 port 11 96164 unique_id port 96166 username tahmasebi 96166 kill_reason Another user logged on this global unique id 96166 mac 96166 bytes_out 0 96166 bytes_in 0 96166 station_ip 5.119.159.157 96166 port 11 96166 unique_id port 96166 remote_ip 10.8.0.94 96170 username tahmasebi 96170 kill_reason Another user logged on this global unique id 96170 mac 96170 bytes_out 0 96170 bytes_in 0 96170 station_ip 5.119.159.157 96170 port 11 96170 unique_id port 96176 username mehdizare 96176 mac 96176 bytes_out 0 96176 bytes_in 0 96176 station_ip 5.119.139.224 96176 port 21 96176 unique_id port 96176 remote_ip 10.8.1.54 96178 username mehdizare 96178 mac 96178 bytes_out 12788 96178 bytes_in 16561 96178 station_ip 5.119.139.224 96178 port 18 96178 unique_id port 96178 remote_ip 10.8.1.54 96179 username askari 96179 mac 96179 bytes_out 0 96179 bytes_in 0 96179 station_ip 5.119.93.217 96179 port 11 96179 unique_id port 96179 remote_ip 10.8.0.34 96182 username mirzaei 96182 mac 96182 bytes_out 0 96182 bytes_in 0 96182 station_ip 5.119.12.120 96182 port 19 96182 unique_id port 96182 remote_ip 10.8.1.14 96186 username mehdizare 96186 mac 96186 bytes_out 0 96186 bytes_in 0 96186 station_ip 5.119.139.224 96186 port 11 96186 unique_id port 96186 remote_ip 10.8.0.70 96187 username mehdizare 96187 mac 96187 bytes_out 33962 96187 bytes_in 48881 96187 station_ip 5.119.139.224 96187 port 14 96187 unique_id port 96187 remote_ip 10.8.0.70 96190 username mehdizare 96190 mac 96190 bytes_out 0 96190 bytes_in 0 96190 station_ip 5.119.139.224 96190 port 19 96190 unique_id port 96190 remote_ip 10.8.1.54 96203 username mehdizare 96203 mac 96203 bytes_out 0 96203 bytes_in 0 96203 station_ip 5.119.139.224 96203 port 19 96203 unique_id port 96203 remote_ip 10.8.1.54 96212 username mohammadi 96212 mac 96212 bytes_out 198813 96212 bytes_in 1961806 96212 station_ip 37.129.204.134 96212 port 18 96212 unique_id port 96212 remote_ip 10.8.0.62 96213 username hoorieh 96213 kill_reason Another user logged on this global unique id 96213 mac 96213 bytes_out 0 96213 bytes_in 0 96213 station_ip 5.120.115.245 96213 port 17 96213 unique_id port 96215 username hoorieh 96215 kill_reason Another user logged on this global unique id 96215 mac 96215 bytes_out 0 96215 bytes_in 0 96215 station_ip 5.120.115.245 96215 port 17 96215 unique_id port 96219 username aminvpn 96219 mac 96219 bytes_out 0 96219 bytes_in 0 96219 station_ip 5.119.172.84 96219 port 16 96219 unique_id port 96219 remote_ip 10.8.0.6 96220 username aminvpn 96220 mac 96220 bytes_out 0 96220 bytes_in 0 96220 station_ip 83.122.51.20 96220 port 19 96154 remote_ip 10.8.0.34 96159 username hoorieh 96159 mac 96159 bytes_out 0 96159 bytes_in 0 96159 station_ip 5.120.115.245 96159 port 14 96159 unique_id port 96159 remote_ip 10.8.0.78 96163 username mirzaei 96163 kill_reason Another user logged on this global unique id 96163 mac 96163 bytes_out 0 96163 bytes_in 0 96163 station_ip 5.120.181.79 96163 port 11 96163 unique_id port 96165 username tahmasebi 96165 mac 96165 bytes_out 0 96165 bytes_in 0 96165 station_ip 5.119.159.157 96165 port 11 96165 unique_id port 96165 remote_ip 10.8.0.94 96168 username tahmasebi 96168 kill_reason Another user logged on this global unique id 96168 mac 96168 bytes_out 0 96168 bytes_in 0 96168 station_ip 5.119.159.157 96168 port 11 96168 unique_id port 96172 username tahmasebi 96172 kill_reason Another user logged on this global unique id 96172 mac 96172 bytes_out 0 96172 bytes_in 0 96172 station_ip 5.119.159.157 96172 port 11 96172 unique_id port 96177 username mehdizare 96177 mac 96177 bytes_out 190447 96177 bytes_in 178999 96177 station_ip 5.119.139.224 96177 port 18 96177 unique_id port 96177 remote_ip 10.8.1.54 96185 username mehdizare 96185 mac 96185 bytes_out 0 96185 bytes_in 0 96185 station_ip 5.119.139.224 96185 port 14 96185 unique_id port 96185 remote_ip 10.8.0.70 96189 username mohammadi 96189 mac 96189 bytes_out 0 96189 bytes_in 0 96189 station_ip 37.129.199.130 96189 port 16 96189 unique_id port 96189 remote_ip 10.8.0.62 96191 username mehdizare 96191 mac 96191 bytes_out 0 96191 bytes_in 0 96191 station_ip 5.119.139.224 96191 port 19 96191 unique_id port 96191 remote_ip 10.8.1.54 96193 username mehdizare 96193 mac 96193 bytes_out 0 96193 bytes_in 0 96193 station_ip 5.119.139.224 96193 port 14 96193 unique_id port 96193 remote_ip 10.8.0.70 96195 username mohammadi 96195 mac 96195 bytes_out 0 96195 bytes_in 0 96195 station_ip 37.129.199.130 96195 port 14 96195 unique_id port 96195 remote_ip 10.8.0.62 96200 username mehdizare 96200 mac 96200 bytes_out 21436 96200 bytes_in 36983 96200 station_ip 5.119.139.224 96200 port 19 96200 unique_id port 96200 remote_ip 10.8.1.54 96204 username mehdizare 96204 mac 96204 bytes_out 0 96204 bytes_in 0 96204 station_ip 5.119.139.224 96204 port 19 96204 unique_id port 96204 remote_ip 10.8.1.54 96206 username mehdizare 96206 mac 96206 bytes_out 0 96206 bytes_in 0 96206 station_ip 5.119.139.224 96206 port 19 96206 unique_id port 96206 remote_ip 10.8.1.54 96207 username mehdizare 96207 mac 96207 bytes_out 49484 96207 bytes_in 175844 96207 station_ip 5.119.139.224 96207 port 19 96207 unique_id port 96207 remote_ip 10.8.1.54 96208 username mohammadi 96208 mac 96208 bytes_out 1033436 96208 bytes_in 4271851 96208 station_ip 37.129.178.130 96208 port 14 96208 unique_id port 96208 remote_ip 10.8.0.62 96214 username mahyaarabpour 96214 mac 96214 bytes_out 1133582 96214 bytes_in 17087840 96214 station_ip 5.119.50.178 96214 port 16 96214 unique_id port 96214 remote_ip 10.8.0.54 96216 username aminvpn 96216 kill_reason Another user logged on this global unique id 96216 mac 96216 bytes_out 0 96216 bytes_in 0 96216 station_ip 5.119.172.84 96216 port 16 96216 unique_id port 96216 remote_ip 10.8.0.6 96223 username mehdizare 96223 mac 96223 bytes_out 84905 96223 bytes_in 134940 96223 station_ip 5.119.139.224 96223 port 14 96223 unique_id port 96223 remote_ip 10.8.0.70 96173 username tahmasebi 96173 kill_reason Another user logged on this global unique id 96173 mac 96173 bytes_out 0 96173 bytes_in 0 96173 station_ip 5.119.159.157 96173 port 11 96173 unique_id port 96174 username tahmasebi 96174 mac 96174 bytes_out 0 96174 bytes_in 0 96174 station_ip 5.119.159.157 96174 port 11 96174 unique_id port 96175 username mehdizare 96175 mac 96175 bytes_out 23057 96175 bytes_in 34825 96175 station_ip 5.119.139.224 96175 port 18 96175 unique_id port 96175 remote_ip 10.8.1.54 96180 username mehdizare 96180 mac 96180 bytes_out 69288 96180 bytes_in 71896 96180 station_ip 5.119.139.224 96180 port 18 96180 unique_id port 96180 remote_ip 10.8.1.54 96181 username mehdizare 96181 mac 96181 bytes_out 1038355 96181 bytes_in 17230474 96181 station_ip 5.119.139.224 96181 port 11 96181 unique_id port 96181 remote_ip 10.8.0.70 96183 username mirzaei 96183 mac 96183 bytes_out 0 96183 bytes_in 0 96183 station_ip 5.119.12.120 96183 port 18 96183 unique_id port 96183 remote_ip 10.8.1.14 96184 username mirzaei 96184 kill_reason Maximum check online fails reached 96184 mac 96184 bytes_out 0 96184 bytes_in 0 96184 station_ip 5.112.141.5 96184 port 18 96184 unique_id port 96188 username mohammadi 96188 mac 96188 bytes_out 171815 96188 bytes_in 260748 96188 station_ip 37.129.199.130 96188 port 14 96188 unique_id port 96188 remote_ip 10.8.0.62 96192 username mehdizare 96192 mac 96192 bytes_out 0 96192 bytes_in 0 96192 station_ip 5.119.139.224 96192 port 19 96192 unique_id port 96192 remote_ip 10.8.1.54 96194 username mehdizare 96194 mac 96194 bytes_out 0 96194 bytes_in 0 96194 station_ip 5.119.139.224 96194 port 16 96194 unique_id port 96194 remote_ip 10.8.0.70 96196 username mohammadi 96196 mac 96196 bytes_out 0 96196 bytes_in 0 96196 station_ip 37.129.199.130 96196 port 14 96196 unique_id port 96196 remote_ip 10.8.0.62 96197 username mehdizare 96197 mac 96197 bytes_out 78675 96197 bytes_in 37173 96197 station_ip 5.119.139.224 96197 port 16 96197 unique_id port 96197 remote_ip 10.8.0.70 96198 username mehdizare 96198 mac 96198 bytes_out 0 96198 bytes_in 0 96198 station_ip 5.119.139.224 96198 port 19 96198 unique_id port 96198 remote_ip 10.8.1.54 96199 username mehdizare 96199 mac 96199 bytes_out 0 96199 bytes_in 0 96199 station_ip 5.119.139.224 96199 port 14 96199 unique_id port 96199 remote_ip 10.8.0.70 96201 username mehdizare 96201 mac 96201 bytes_out 0 96201 bytes_in 0 96201 station_ip 5.119.139.224 96201 port 21 96201 unique_id port 96201 remote_ip 10.8.1.54 96202 username mehdizare 96202 mac 96202 bytes_out 0 96202 bytes_in 0 96202 station_ip 5.119.139.224 96202 port 19 96202 unique_id port 96202 remote_ip 10.8.1.54 96205 username mahdiyehalizadeh 96205 mac 96205 bytes_out 0 96205 bytes_in 0 96205 station_ip 83.122.61.63 96205 port 14 96205 unique_id port 96205 remote_ip 10.8.0.90 96209 username mehdizare 96209 mac 96209 bytes_out 0 96209 bytes_in 0 96209 station_ip 5.119.139.224 96209 port 16 96209 unique_id port 96209 remote_ip 10.8.0.70 96210 username mahyaarabpour 96210 mac 96210 bytes_out 0 96210 bytes_in 0 96210 station_ip 5.119.50.178 96210 port 16 96210 unique_id port 96210 remote_ip 10.8.0.54 96211 username hoorieh 96211 kill_reason Another user logged on this global unique id 96211 mac 96211 bytes_out 0 96211 bytes_in 0 96211 station_ip 5.120.115.245 96211 port 17 96211 unique_id port 96211 remote_ip 10.8.0.78 96217 username aminvpn 96217 mac 96217 bytes_out 0 96217 bytes_in 0 96217 station_ip 5.119.172.84 96217 port 16 96217 unique_id port 96218 username aminvpn 96218 mac 96218 bytes_out 0 96218 bytes_in 0 96218 station_ip 83.122.51.20 96218 port 19 96218 unique_id port 96218 remote_ip 10.8.0.6 96221 username aminvpn 96221 mac 96221 bytes_out 0 96221 bytes_in 0 96221 station_ip 5.119.172.84 96221 port 16 96221 unique_id port 96221 remote_ip 10.8.0.6 96222 username askari 96222 mac 96222 bytes_out 1101699 96222 bytes_in 17095810 96222 station_ip 5.119.200.131 96222 port 18 96222 unique_id port 96222 remote_ip 10.8.0.34 96226 username mohammadi 96226 mac 96226 bytes_out 0 96226 bytes_in 0 96226 station_ip 37.129.204.134 96226 port 18 96226 unique_id port 96226 remote_ip 10.8.0.62 96229 username mehdizare 96229 mac 96229 bytes_out 16613 96229 bytes_in 22026 96229 station_ip 5.119.139.224 96229 port 16 96229 unique_id port 96229 remote_ip 10.8.0.70 96230 username mehdizare 96230 mac 96230 bytes_out 70493 96230 bytes_in 49825 96230 station_ip 5.119.139.224 96230 port 17 96230 unique_id port 96230 remote_ip 10.8.0.70 96234 username aminvpn 96234 mac 96234 bytes_out 0 96234 bytes_in 0 96234 station_ip 83.122.5.40 96234 port 19 96234 unique_id port 96234 remote_ip 10.8.1.6 96244 username aminvpn 96244 mac 96244 bytes_out 0 96244 bytes_in 0 96244 station_ip 83.122.5.40 96244 port 14 96244 unique_id port 96244 remote_ip 10.8.0.6 96246 username aminvpn 96246 mac 96246 bytes_out 19187 96246 bytes_in 13517 96246 station_ip 83.122.5.40 96246 port 14 96246 unique_id port 96246 remote_ip 10.8.0.6 96247 username mohammadi 96247 mac 96247 bytes_out 0 96247 bytes_in 0 96247 station_ip 37.129.204.134 96247 port 17 96247 unique_id port 96247 remote_ip 10.8.0.62 96249 username mohammadi 96249 mac 96249 bytes_out 0 96249 bytes_in 0 96249 station_ip 37.129.204.134 96249 port 18 96249 unique_id port 96249 remote_ip 10.8.0.62 96250 username aminvpn 96250 mac 96250 bytes_out 1602351 96250 bytes_in 12576949 96250 station_ip 83.122.5.40 96250 port 14 96250 unique_id port 96250 remote_ip 10.8.0.6 96253 username mehdizare 96253 mac 96253 bytes_out 0 96253 bytes_in 0 96253 station_ip 5.119.139.224 96253 port 19 96253 unique_id port 96253 remote_ip 10.8.1.54 96266 username aminvpn 96266 mac 96266 bytes_out 0 96266 bytes_in 0 96266 station_ip 83.122.110.124 96266 port 18 96266 unique_id port 96266 remote_ip 10.8.0.6 96267 username mohammadmahdi 96267 mac 96267 bytes_out 0 96267 bytes_in 0 96267 station_ip 5.120.128.168 96267 port 16 96267 unique_id port 96267 remote_ip 10.8.0.82 96272 username alihosseini 96272 mac 96272 bytes_out 0 96272 bytes_in 0 96272 station_ip 5.120.128.64 96272 port 14 96272 unique_id port 96272 remote_ip 10.8.0.46 96273 username alihosseini 96273 mac 96273 bytes_out 0 96273 bytes_in 0 96273 station_ip 5.120.128.64 96273 port 19 96273 unique_id port 96273 remote_ip 10.8.0.46 96276 username aminvpn 96276 mac 96276 bytes_out 3772494 96276 bytes_in 40757433 96276 station_ip 5.120.104.159 96276 port 18 96276 unique_id port 96276 remote_ip 10.8.0.6 96277 username mohammadmahdi 96220 unique_id port 96220 remote_ip 10.8.0.6 96233 username aminvpn 96233 mac 96233 bytes_out 0 96233 bytes_in 0 96233 station_ip 83.122.5.40 96233 port 14 96233 unique_id port 96233 remote_ip 10.8.0.6 96236 username aminvpn 96236 mac 96236 bytes_out 154476 96236 bytes_in 942314 96236 station_ip 83.122.5.40 96236 port 19 96236 unique_id port 96236 remote_ip 10.8.1.6 96237 username aminvpn 96237 mac 96237 bytes_out 0 96237 bytes_in 0 96237 station_ip 83.122.5.40 96237 port 19 96237 unique_id port 96237 remote_ip 10.8.1.6 96240 username mohammadi 96240 mac 96240 bytes_out 1072171 96240 bytes_in 14052897 96240 station_ip 37.129.204.134 96240 port 14 96240 unique_id port 96240 remote_ip 10.8.0.62 96242 username aminvpn 96242 mac 96242 bytes_out 0 96242 bytes_in 0 96242 station_ip 83.122.5.40 96242 port 14 96242 unique_id port 96242 remote_ip 10.8.0.6 96245 username aminvpn 96245 mac 96245 bytes_out 29029 96245 bytes_in 39851 96245 station_ip 83.122.5.40 96245 port 14 96245 unique_id port 96245 remote_ip 10.8.0.6 96251 username aminvpn 96251 mac 96251 bytes_out 405686 96251 bytes_in 5923778 96251 station_ip 83.122.5.40 96251 port 14 96251 unique_id port 96251 remote_ip 10.8.0.6 96254 username mehdizare 96254 mac 96254 bytes_out 8405 96254 bytes_in 10909 96254 station_ip 5.119.139.224 96254 port 19 96254 unique_id port 96254 remote_ip 10.8.1.54 96255 username mehdizare 96255 mac 96255 bytes_out 0 96255 bytes_in 0 96255 station_ip 5.119.139.224 96255 port 19 96255 unique_id port 96255 remote_ip 10.8.1.54 96256 username mohammadi 96256 mac 96256 bytes_out 0 96256 bytes_in 0 96256 station_ip 37.129.204.134 96256 port 16 96256 unique_id port 96256 remote_ip 10.8.0.62 96258 username mohammadi 96258 mac 96258 bytes_out 0 96258 bytes_in 0 96258 station_ip 37.129.204.134 96258 port 16 96258 unique_id port 96258 remote_ip 10.8.0.62 96259 username aminvpn 96259 mac 96259 bytes_out 0 96259 bytes_in 0 96259 station_ip 83.122.5.40 96259 port 14 96259 unique_id port 96259 remote_ip 10.8.0.6 96263 username mohammadmahdi 96263 mac 96263 bytes_out 3197091 96263 bytes_in 34777826 96263 station_ip 5.120.128.168 96263 port 16 96263 unique_id port 96263 remote_ip 10.8.0.82 96265 username alihosseini 96265 mac 96265 bytes_out 0 96265 bytes_in 0 96265 station_ip 5.119.96.133 96265 port 14 96265 unique_id port 96265 remote_ip 10.8.0.46 96271 username alihosseini 96271 mac 96271 bytes_out 2292484 96271 bytes_in 21010271 96271 station_ip 5.120.128.64 96271 port 16 96271 unique_id port 96271 remote_ip 10.8.0.46 96275 username mohammadi 96275 mac 96275 bytes_out 387860 96275 bytes_in 3337046 96275 station_ip 37.129.230.238 96275 port 16 96275 unique_id port 96275 remote_ip 10.8.0.62 96282 username alihosseini 96282 mac 96282 bytes_out 0 96282 bytes_in 0 96282 station_ip 5.120.128.64 96282 port 19 96282 unique_id port 96283 username mirzaei 96283 kill_reason Another user logged on this global unique id 96283 mac 96283 bytes_out 0 96283 bytes_in 0 96283 station_ip 5.119.118.24 96283 port 11 96283 unique_id port 96284 username mohammadi 96284 mac 96284 bytes_out 416428 96284 bytes_in 837780 96284 station_ip 37.129.239.142 96284 port 19 96284 unique_id port 96284 remote_ip 10.8.0.62 96286 username madadi2 96286 mac 96286 bytes_out 168239 96224 username askari 96224 kill_reason Another user logged on this global unique id 96224 mac 96224 bytes_out 0 96224 bytes_in 0 96224 station_ip 5.119.200.131 96224 port 16 96224 unique_id port 96224 remote_ip 10.8.0.34 96225 username askari 96225 mac 96225 bytes_out 0 96225 bytes_in 0 96225 station_ip 5.119.200.131 96225 port 16 96225 unique_id port 96227 username hoorieh 96227 mac 96227 bytes_out 0 96227 bytes_in 0 96227 station_ip 5.120.115.245 96227 port 17 96227 unique_id port 96228 username mehdizare 96228 mac 96228 bytes_out 0 96228 bytes_in 0 96228 station_ip 5.119.139.224 96228 port 14 96228 unique_id port 96228 remote_ip 10.8.0.70 96231 username aminvpn 96231 mac 96231 bytes_out 1261863 96231 bytes_in 16099807 96231 station_ip 5.119.172.84 96231 port 14 96231 unique_id port 96231 remote_ip 10.8.0.6 96232 username aminvpn 96232 mac 96232 bytes_out 0 96232 bytes_in 0 96232 station_ip 83.122.5.40 96232 port 19 96232 unique_id port 96232 remote_ip 10.8.1.6 96235 username aminvpn 96235 mac 96235 bytes_out 0 96235 bytes_in 0 96235 station_ip 83.122.5.40 96235 port 14 96235 unique_id port 96235 remote_ip 10.8.0.6 96238 username mehdizare 96238 mac 96238 bytes_out 26061 96238 bytes_in 29446 96238 station_ip 5.119.139.224 96238 port 16 96238 unique_id port 96238 remote_ip 10.8.0.70 96239 username aminvpn 96239 mac 96239 bytes_out 83577 96239 bytes_in 71354 96239 station_ip 83.122.5.40 96239 port 19 96239 unique_id port 96239 remote_ip 10.8.1.6 96241 username aminvpn 96241 mac 96241 bytes_out 0 96241 bytes_in 0 96241 station_ip 83.122.5.40 96241 port 19 96241 unique_id port 96241 remote_ip 10.8.1.6 96243 username aminvpn 96243 mac 96243 bytes_out 1067337 96243 bytes_in 6856357 96243 station_ip 83.122.5.40 96243 port 14 96243 unique_id port 96243 remote_ip 10.8.0.6 96248 username mehdizare 96248 mac 96248 bytes_out 0 96248 bytes_in 0 96248 station_ip 5.119.139.224 96248 port 16 96248 unique_id port 96248 remote_ip 10.8.0.70 96252 username mohammadi 96252 mac 96252 bytes_out 84957 96252 bytes_in 81705 96252 station_ip 37.129.204.134 96252 port 16 96252 unique_id port 96252 remote_ip 10.8.0.62 96257 username aminvpn 96257 mac 96257 bytes_out 0 96257 bytes_in 0 96257 station_ip 83.122.5.40 96257 port 14 96257 unique_id port 96257 remote_ip 10.8.0.6 96260 username mohammadi 96260 mac 96260 bytes_out 395296 96260 bytes_in 2189478 96260 station_ip 37.129.204.134 96260 port 14 96260 unique_id port 96260 remote_ip 10.8.0.62 96261 username alihosseini 96261 kill_reason Another user logged on this global unique id 96261 mac 96261 bytes_out 0 96261 bytes_in 0 96261 station_ip 5.119.96.133 96261 port 18 96261 unique_id port 96261 remote_ip 10.8.0.46 96262 username alihosseini 96262 mac 96262 bytes_out 0 96262 bytes_in 0 96262 station_ip 5.119.96.133 96262 port 18 96262 unique_id port 96264 username mirzaei 96264 kill_reason Another user logged on this global unique id 96264 mac 96264 bytes_out 0 96264 bytes_in 0 96264 station_ip 5.119.118.24 96264 port 11 96264 unique_id port 96264 remote_ip 10.8.0.14 96268 username hoorieh 96268 mac 96268 bytes_out 726828 96268 bytes_in 11502872 96268 station_ip 5.120.122.171 96268 port 14 96268 unique_id port 96268 remote_ip 10.8.0.78 96269 username mohammadi 96269 mac 96269 bytes_out 503879 96269 bytes_in 2917325 96269 station_ip 37.129.230.238 96269 port 14 96269 unique_id port 96269 remote_ip 10.8.0.62 96270 username mehdizare 96270 kill_reason Another user logged on this global unique id 96270 mac 96270 bytes_out 0 96270 bytes_in 0 96270 station_ip 5.119.139.224 96270 port 17 96270 unique_id port 96270 remote_ip 10.8.0.70 96274 username alihosseini 96274 mac 96274 bytes_out 0 96274 bytes_in 0 96274 station_ip 5.120.128.64 96274 port 19 96274 unique_id port 96274 remote_ip 10.8.0.46 96278 username mohammadi 96278 mac 96278 bytes_out 178806 96278 bytes_in 190408 96278 station_ip 37.129.230.238 96278 port 16 96278 unique_id port 96278 remote_ip 10.8.0.62 96279 username aminvpn 96279 mac 96279 bytes_out 287568 96279 bytes_in 862310 96279 station_ip 5.120.139.10 96279 port 14 96279 unique_id port 96279 remote_ip 10.8.0.6 96280 username alihosseini 96280 kill_reason Another user logged on this global unique id 96280 mac 96280 bytes_out 0 96280 bytes_in 0 96280 station_ip 5.120.128.64 96280 port 19 96280 unique_id port 96280 remote_ip 10.8.0.46 96287 username mohammadi 96287 mac 96287 bytes_out 88087 96287 bytes_in 120436 96287 station_ip 37.129.239.142 96287 port 19 96287 unique_id port 96287 remote_ip 10.8.0.62 96291 username mehdizare 96291 mac 96291 bytes_out 0 96291 bytes_in 0 96291 station_ip 5.119.139.224 96291 port 17 96291 unique_id port 96292 username alihosseini 96292 mac 96292 bytes_out 19897567 96292 bytes_in 3739490 96292 station_ip 5.120.128.64 96292 port 16 96292 unique_id port 96292 remote_ip 10.8.0.46 96293 username madadi2 96293 mac 96293 bytes_out 281688 96293 bytes_in 1169416 96293 station_ip 5.120.174.218 96293 port 18 96293 unique_id port 96293 remote_ip 10.8.0.98 96299 username mohammadi 96299 mac 96299 bytes_out 0 96299 bytes_in 0 96299 station_ip 37.129.239.142 96299 port 20 96299 unique_id port 96299 remote_ip 10.8.0.62 96300 username alihosseini 96300 mac 96300 bytes_out 0 96300 bytes_in 0 96300 station_ip 5.120.128.64 96300 port 16 96300 unique_id port 96300 remote_ip 10.8.0.46 96301 username alihosseini 96301 mac 96301 bytes_out 0 96301 bytes_in 0 96301 station_ip 5.120.128.64 96301 port 16 96301 unique_id port 96301 remote_ip 10.8.0.46 96303 username hoorieh 96303 mac 96303 bytes_out 0 96303 bytes_in 0 96303 station_ip 5.120.122.171 96303 port 16 96303 unique_id port 96303 remote_ip 10.8.0.78 96313 username aminvpn 96313 mac 96313 bytes_out 98057 96313 bytes_in 181856 96313 station_ip 5.120.108.200 96313 port 1 96313 unique_id port 96313 remote_ip 10.8.0.6 96315 username aminvpn 96315 mac 96315 bytes_out 357664 96315 bytes_in 4080384 96315 station_ip 5.120.108.200 96315 port 1 96315 unique_id port 96315 remote_ip 10.8.0.6 96320 username aminvpn 96320 unique_id port 96320 terminate_cause User-Request 96320 bytes_out 0 96320 bytes_in 0 96320 station_ip 5.120.108.200 96320 port 15728807 96320 nas_port_type Virtual 96320 remote_ip 5.5.5.253 96321 username aminvpn 96321 mac 96321 bytes_out 0 96321 bytes_in 0 96321 station_ip 5.120.108.200 96321 port 1 96321 unique_id port 96321 remote_ip 10.8.0.6 96325 username aminvpn 96325 mac 96325 bytes_out 0 96325 bytes_in 0 96325 station_ip 5.120.109.12 96325 port 3 96325 unique_id port 96325 remote_ip 10.8.0.6 96326 username aminvpn 96326 mac 96326 bytes_out 0 96277 mac 96277 bytes_out 3234725 96277 bytes_in 39244088 96277 station_ip 5.120.128.168 96277 port 14 96277 unique_id port 96277 remote_ip 10.8.0.82 96281 username alihosseini 96281 kill_reason Another user logged on this global unique id 96281 mac 96281 bytes_out 0 96281 bytes_in 0 96281 station_ip 5.120.128.64 96281 port 19 96281 unique_id port 96285 username madadi2 96285 mac 96285 bytes_out 3294 96285 bytes_in 5204 96285 station_ip 46.225.213.255 96285 port 19 96285 unique_id port 96285 remote_ip 10.8.0.98 96289 username tahmasebi 96289 mac 96289 bytes_out 5736222 96289 bytes_in 30157407 96289 station_ip 5.119.159.157 96289 port 18 96289 unique_id port 96289 remote_ip 10.8.0.94 96294 username mehdizare 96294 kill_reason Another user logged on this global unique id 96294 mac 96294 bytes_out 0 96294 bytes_in 0 96294 station_ip 5.119.139.224 96294 port 19 96294 unique_id port 96294 remote_ip 10.8.0.70 96296 username mirzaei 96296 kill_reason Another user logged on this global unique id 96296 mac 96296 bytes_out 0 96296 bytes_in 0 96296 station_ip 5.119.118.24 96296 port 11 96296 unique_id port 96297 username alihosseini 96297 mac 96297 bytes_out 0 96297 bytes_in 0 96297 station_ip 5.120.128.64 96297 port 18 96297 unique_id port 96297 remote_ip 10.8.0.46 96304 username alihosseini 96304 mac 96304 bytes_out 14210 96304 bytes_in 37706 96304 station_ip 5.120.128.64 96304 port 19 96304 unique_id port 96304 remote_ip 10.8.1.34 96305 username alihosseini 96305 mac 96305 bytes_out 0 96305 bytes_in 0 96305 station_ip 5.120.128.64 96305 port 16 96305 unique_id port 96305 remote_ip 10.8.0.46 96306 username alihosseini 96306 mac 96306 bytes_out 31215 96306 bytes_in 61082 96306 station_ip 5.120.128.64 96306 port 16 96306 unique_id port 96306 remote_ip 10.8.0.46 96310 username amir 96310 mac 96310 bytes_out 0 96310 bytes_in 0 96310 station_ip 46.225.213.255 96310 port 16 96310 unique_id port 96310 remote_ip 10.8.0.102 96311 username amir 96311 mac 96311 bytes_out 0 96311 bytes_in 0 96311 station_ip 46.225.213.255 96311 port 16 96311 unique_id port 96311 remote_ip 10.8.0.102 96312 username amir 96312 mac 96312 bytes_out 82437 96312 bytes_in 887859 96312 station_ip 37.129.234.110 96312 port 17 96312 unique_id port 96312 remote_ip 10.8.0.102 96314 username aminvpn 96314 mac 96314 bytes_out 454347 96314 bytes_in 5735363 96314 station_ip 5.120.108.200 96314 port 1 96314 unique_id port 96314 remote_ip 10.8.0.6 96317 username alireza1 96317 unique_id port 96317 terminate_cause NAS-Request 96317 bytes_out 957142 96317 bytes_in 9594260 96317 station_ip 5.120.56.2 96317 port 15728795 96317 nas_port_type Virtual 96317 remote_ip 5.5.5.255 96318 username aminvpn 96318 unique_id port 96318 terminate_cause User-Request 96318 bytes_out 0 96318 bytes_in 0 96318 station_ip 5.120.108.200 96318 port 15728802 96318 nas_port_type Virtual 96318 remote_ip 5.5.5.254 96322 username aminvpn 96322 mac 96322 bytes_out 0 96322 bytes_in 0 96322 station_ip 5.120.109.12 96322 port 3 96322 unique_id port 96322 remote_ip 10.8.0.6 96330 username aminvpn 96330 mac 96330 bytes_out 0 96330 bytes_in 0 96330 station_ip 5.120.108.200 96330 port 1 96330 unique_id port 96330 remote_ip 10.8.0.6 96336 username aminvpn 96336 unique_id port 96336 terminate_cause User-Request 96336 bytes_out 0 96336 bytes_in 0 96336 station_ip 5.235.221.85 96286 bytes_in 3238204 96286 station_ip 46.225.213.255 96286 port 19 96286 unique_id port 96286 remote_ip 10.8.0.98 96288 username mirzaei 96288 kill_reason Another user logged on this global unique id 96288 mac 96288 bytes_out 0 96288 bytes_in 0 96288 station_ip 5.119.118.24 96288 port 11 96288 unique_id port 96290 username madadi2 96290 mac 96290 bytes_out 486371 96290 bytes_in 4817548 96290 station_ip 5.120.176.47 96290 port 20 96290 unique_id port 96290 remote_ip 10.8.0.98 96295 username alihosseini 96295 mac 96295 bytes_out 0 96295 bytes_in 0 96295 station_ip 5.120.128.64 96295 port 19 96295 unique_id port 96295 remote_ip 10.8.1.34 96298 username mohammadmahdi 96298 mac 96298 bytes_out 0 96298 bytes_in 0 96298 station_ip 5.120.128.168 96298 port 16 96298 unique_id port 96298 remote_ip 10.8.0.82 96302 username madadi2 96302 mac 96302 bytes_out 0 96302 bytes_in 0 96302 station_ip 5.120.142.226 96302 port 17 96302 unique_id port 96302 remote_ip 10.8.0.98 96307 username mohammadi 96307 mac 96307 bytes_out 0 96307 bytes_in 0 96307 station_ip 37.129.197.134 96307 port 17 96307 unique_id port 96307 remote_ip 10.8.0.62 96308 username mohammadi 96308 mac 96308 bytes_out 0 96308 bytes_in 0 96308 station_ip 37.129.197.134 96308 port 17 96308 unique_id port 96308 remote_ip 10.8.0.62 96309 username alihosseini 96309 mac 96309 bytes_out 0 96309 bytes_in 0 96309 station_ip 5.120.128.64 96309 port 16 96309 unique_id port 96309 remote_ip 10.8.0.46 96316 username aminvpn 96316 unique_id port 96316 terminate_cause User-Request 96316 bytes_out 36457 96316 bytes_in 243946 96316 station_ip 5.120.108.200 96316 port 15728798 96316 nas_port_type Virtual 96316 remote_ip 5.5.5.254 96319 username aminvpn 96319 unique_id port 96319 terminate_cause User-Request 96319 bytes_out 0 96319 bytes_in 0 96319 station_ip 5.120.108.200 96319 port 15728806 96319 nas_port_type Virtual 96319 remote_ip 5.5.5.253 96323 username hoorieh 96323 kill_reason Another user logged on this global unique id 96323 mac 96323 bytes_out 0 96323 bytes_in 0 96323 station_ip 5.119.95.149 96323 port 2 96323 unique_id port 96323 remote_ip 10.8.0.10 96324 username aminvpn 96324 mac 96324 bytes_out 0 96324 bytes_in 0 96324 station_ip 5.120.108.200 96324 port 1 96324 unique_id port 96324 remote_ip 10.8.0.6 96327 username aminvpn 96327 mac 96327 bytes_out 0 96327 bytes_in 0 96327 station_ip 5.120.109.12 96327 port 3 96327 unique_id port 96327 remote_ip 10.8.0.6 96329 username aminvpn 96329 mac 96329 bytes_out 0 96329 bytes_in 0 96329 station_ip 5.120.109.12 96329 port 3 96329 unique_id port 96329 remote_ip 10.8.0.6 96333 username aminvpn 96333 mac 96333 bytes_out 0 96333 bytes_in 0 96333 station_ip 5.120.108.200 96333 port 1 96333 unique_id port 96333 remote_ip 10.8.0.6 96340 username alireza1 96340 unique_id port 96340 terminate_cause User-Request 96340 bytes_out 0 96340 bytes_in 0 96340 station_ip 5.119.195.175 96340 port 15728826 96340 nas_port_type Virtual 96340 remote_ip 5.5.5.248 96342 username alireza1 96342 unique_id port 96342 terminate_cause User-Request 96342 bytes_out 0 96342 bytes_in 0 96342 station_ip 5.119.195.175 96342 port 15728828 96342 nas_port_type Virtual 96342 remote_ip 5.5.5.248 96346 username alireza1 96346 unique_id port 96346 terminate_cause User-Request 96346 bytes_out 0 96346 bytes_in 0 96346 station_ip 5.119.195.175 96326 bytes_in 0 96326 station_ip 5.120.108.200 96326 port 1 96326 unique_id port 96326 remote_ip 10.8.0.6 96328 username aminvpn 96328 mac 96328 bytes_out 0 96328 bytes_in 0 96328 station_ip 5.120.108.200 96328 port 1 96328 unique_id port 96328 remote_ip 10.8.0.6 96331 username aminvpn 96331 unique_id port 96331 terminate_cause User-Request 96331 bytes_out 291325 96331 bytes_in 216921 96331 station_ip 5.235.221.85 96331 port 15728818 96331 nas_port_type Virtual 96331 remote_ip 5.5.5.251 96332 username alihosseini 96332 mac 96332 bytes_out 0 96332 bytes_in 0 96332 station_ip 5.126.171.112 96332 port 3 96332 unique_id port 96332 remote_ip 10.8.0.14 96334 username mohammadreza 96334 kill_reason Maximum check online fails reached 96334 mac 96334 bytes_out 0 96334 bytes_in 0 96334 station_ip 2.183.131.92 96334 port 3 96334 unique_id port 96335 username aminvpn 96335 unique_id port 96335 terminate_cause NAS-Request 96335 bytes_out 378874 96335 bytes_in 336751 96335 station_ip 5.235.221.85 96335 port 15728820 96335 nas_port_type Virtual 96335 remote_ip 5.5.5.251 96348 username aminvpn 96348 mac 96348 bytes_out 0 96348 bytes_in 0 96348 station_ip 5.120.108.200 96348 port 2 96348 unique_id port 96348 remote_ip 10.8.0.6 96349 username mohammadreza 96349 mac 96349 bytes_out 1923117 96349 bytes_in 34344978 96349 station_ip 2.183.131.92 96349 port 4 96349 unique_id port 96349 remote_ip 10.8.0.18 96353 username alihosseini 96353 kill_reason Another user logged on this global unique id 96353 mac 96353 bytes_out 0 96353 bytes_in 0 96353 station_ip 5.125.135.15 96353 port 4 96353 unique_id port 96353 remote_ip 10.8.0.14 96354 username madadi2 96354 mac 96354 bytes_out 544496 96354 bytes_in 2571355 96354 station_ip 5.119.233.79 96354 port 2 96354 unique_id port 96354 remote_ip 10.8.0.26 96355 username alihosseini 96355 kill_reason Another user logged on this global unique id 96355 mac 96355 bytes_out 0 96355 bytes_in 0 96355 station_ip 5.125.135.15 96355 port 4 96355 unique_id port 96357 username aminvpn 96357 mac 96357 bytes_out 0 96357 bytes_in 0 96357 station_ip 5.120.108.200 96357 port 2 96357 unique_id port 96357 remote_ip 10.8.0.6 96360 username mehdizare 96360 kill_reason Another user logged on this global unique id 96360 mac 96360 bytes_out 0 96360 bytes_in 0 96360 station_ip 5.119.39.151 96360 port 1 96360 unique_id port 96360 remote_ip 10.8.0.22 96364 username aminvpn 96364 mac 96364 bytes_out 0 96364 bytes_in 0 96364 station_ip 5.120.108.200 96364 port 4 96364 unique_id port 96364 remote_ip 10.8.0.6 96366 username mohammadreza 96366 mac 96366 bytes_out 0 96366 bytes_in 0 96366 station_ip 2.183.150.126 96366 port 2 96366 unique_id port 96366 remote_ip 10.8.0.18 96370 username alirezaza 96370 unique_id port 96370 terminate_cause User-Request 96370 bytes_out 0 96370 bytes_in 0 96370 station_ip 5.119.239.83 96370 port 15728834 96370 nas_port_type Virtual 96370 remote_ip 5.5.5.245 96373 username mammad 96373 unique_id port 96373 terminate_cause User-Request 96373 bytes_out 0 96373 bytes_in 0 96373 station_ip 5.233.71.27 96373 port 15728836 96373 nas_port_type Virtual 96373 remote_ip 5.5.5.243 96375 username mohammadreza 96375 mac 96375 bytes_out 0 96375 bytes_in 0 96375 station_ip 5.233.81.155 96375 port 4 96375 unique_id port 96375 remote_ip 10.8.0.18 96376 username aminvpn 96376 mac 96376 bytes_out 2167872 96376 bytes_in 26402392 96336 port 15728821 96336 nas_port_type Virtual 96336 remote_ip 5.5.5.251 96337 username hoorieh 96337 kill_reason Another user logged on this global unique id 96337 mac 96337 bytes_out 0 96337 bytes_in 0 96337 station_ip 5.119.95.149 96337 port 2 96337 unique_id port 96338 username alireza1 96338 unique_id port 96338 terminate_cause User-Request 96338 bytes_out 0 96338 bytes_in 0 96338 station_ip 5.119.195.175 96338 port 15728824 96338 nas_port_type Virtual 96338 remote_ip 5.5.5.248 96339 username alireza1 96339 unique_id port 96339 terminate_cause User-Request 96339 bytes_out 0 96339 bytes_in 0 96339 station_ip 5.119.195.175 96339 port 15728825 96339 nas_port_type Virtual 96339 remote_ip 5.5.5.248 96341 username alireza1 96341 unique_id port 96341 terminate_cause User-Request 96341 bytes_out 0 96341 bytes_in 0 96341 station_ip 5.119.195.175 96341 port 15728827 96341 nas_port_type Virtual 96341 remote_ip 5.5.5.248 96343 username hoorieh 96343 mac 96343 bytes_out 0 96343 bytes_in 0 96343 station_ip 5.119.95.149 96343 port 2 96343 unique_id port 96344 username alireza1 96344 unique_id port 96344 terminate_cause User-Request 96344 bytes_out 0 96344 bytes_in 0 96344 station_ip 5.119.195.175 96344 port 15728829 96344 nas_port_type Virtual 96344 remote_ip 5.5.5.248 96345 username aminvpn 96345 mac 96345 bytes_out 0 96345 bytes_in 0 96345 station_ip 5.120.108.200 96345 port 1 96345 unique_id port 96345 remote_ip 10.8.0.6 96350 username aminvpn 96350 mac 96350 bytes_out 0 96350 bytes_in 0 96350 station_ip 5.120.108.200 96350 port 4 96350 unique_id port 96350 remote_ip 10.8.0.6 96351 username aminvpn 96351 mac 96351 bytes_out 0 96351 bytes_in 0 96351 station_ip 5.120.108.200 96351 port 4 96351 unique_id port 96351 remote_ip 10.8.0.6 96358 username alihosseini 96358 kill_reason Another user logged on this global unique id 96358 mac 96358 bytes_out 0 96358 bytes_in 0 96358 station_ip 5.125.135.15 96358 port 4 96358 unique_id port 96359 username ahmadi 96359 unique_id port 96359 terminate_cause User-Request 96359 bytes_out 636610 96359 bytes_in 5488283 96359 station_ip 113.203.47.183 96359 port 15728831 96359 nas_port_type Virtual 96359 remote_ip 5.5.5.247 96361 username alihosseini 96361 mac 96361 bytes_out 0 96361 bytes_in 0 96361 station_ip 5.125.135.15 96361 port 4 96361 unique_id port 96367 username Alirezaza 96367 unique_id port 96367 terminate_cause User-Request 96367 bytes_out 0 96367 bytes_in 0 96367 station_ip 5.119.239.83 96367 port 15728832 96367 nas_port_type Virtual 96367 remote_ip 5.5.5.246 96374 username Alirezaza 96374 unique_id port 96374 terminate_cause User-Request 96374 bytes_out 0 96374 bytes_in 0 96374 station_ip 5.119.239.83 96374 port 15728837 96374 nas_port_type Virtual 96374 remote_ip 5.5.5.246 96378 username sadegh 96378 unique_id port 96378 terminate_cause User-Request 96378 bytes_out 0 96378 bytes_in 0 96378 station_ip 5.120.189.129 96378 port 15728838 96378 nas_port_type Virtual 96378 remote_ip 5.5.5.242 96384 username aminvpn 96384 mac 96384 bytes_out 0 96384 bytes_in 0 96384 station_ip 5.120.108.200 96384 port 5 96384 unique_id port 96384 remote_ip 10.8.0.6 96386 username mohammadmahdi 96386 kill_reason Another user logged on this global unique id 96386 mac 96386 bytes_out 0 96386 bytes_in 0 96386 station_ip 5.119.114.245 96386 port 2 96386 unique_id port 96386 remote_ip 10.8.0.34 96388 username aminvpn 96388 mac 96388 bytes_out 0 96388 bytes_in 0 96346 port 15728830 96346 nas_port_type Virtual 96346 remote_ip 5.5.5.248 96347 username aminvpn 96347 mac 96347 bytes_out 0 96347 bytes_in 0 96347 station_ip 5.120.108.200 96347 port 2 96347 unique_id port 96347 remote_ip 10.8.0.6 96352 username aminvpn 96352 mac 96352 bytes_out 0 96352 bytes_in 0 96352 station_ip 5.120.108.200 96352 port 4 96352 unique_id port 96352 remote_ip 10.8.0.6 96356 username aminvpn 96356 mac 96356 bytes_out 0 96356 bytes_in 0 96356 station_ip 5.120.108.200 96356 port 2 96356 unique_id port 96356 remote_ip 10.8.0.6 96362 username alihosseini 96362 mac 96362 bytes_out 0 96362 bytes_in 0 96362 station_ip 5.125.135.15 96362 port 1 96362 unique_id port 96362 remote_ip 10.8.1.6 96363 username aminvpn 96363 mac 96363 bytes_out 0 96363 bytes_in 0 96363 station_ip 5.120.108.200 96363 port 4 96363 unique_id port 96363 remote_ip 10.8.0.6 96365 username alihosseini 96365 mac 96365 bytes_out 27179 96365 bytes_in 58993 96365 station_ip 5.114.199.120 96365 port 1 96365 unique_id port 96365 remote_ip 10.8.1.6 96368 username mohammadreza 96368 mac 96368 bytes_out 0 96368 bytes_in 0 96368 station_ip 2.183.130.205 96368 port 4 96368 unique_id port 96368 remote_ip 10.8.0.18 96369 username Alirezaza 96369 unique_id port 96369 terminate_cause User-Request 96369 bytes_out 0 96369 bytes_in 0 96369 station_ip 5.119.239.83 96369 port 15728833 96369 nas_port_type Virtual 96369 remote_ip 5.5.5.246 96371 username mohammadreza 96371 mac 96371 bytes_out 29117 96371 bytes_in 110753 96371 station_ip 5.233.47.192 96371 port 5 96371 unique_id port 96371 remote_ip 10.8.0.18 96372 username sadegh 96372 unique_id port 96372 terminate_cause User-Request 96372 bytes_out 0 96372 bytes_in 0 96372 station_ip 5.119.239.83 96372 port 15728835 96372 nas_port_type Virtual 96372 remote_ip 5.5.5.244 96379 username Alirezaza 96379 unique_id port 96379 terminate_cause User-Request 96379 bytes_out 0 96379 bytes_in 0 96379 station_ip 5.120.189.129 96379 port 15728839 96379 nas_port_type Virtual 96379 remote_ip 5.5.5.241 96381 username aminvpn 96381 mac 96381 bytes_out 0 96381 bytes_in 0 96381 station_ip 5.120.108.200 96381 port 2 96381 unique_id port 96381 remote_ip 10.8.0.6 96383 username mehdizare 96383 kill_reason Another user logged on this global unique id 96383 mac 96383 bytes_out 0 96383 bytes_in 0 96383 station_ip 5.119.39.151 96383 port 1 96383 unique_id port 96385 username Alirezaza 96385 unique_id port 96385 terminate_cause User-Request 96385 bytes_out 0 96385 bytes_in 0 96385 station_ip 5.120.189.129 96385 port 15728840 96385 nas_port_type Virtual 96385 remote_ip 5.5.5.241 96389 username mohammadmahdi 96389 kill_reason Another user logged on this global unique id 96389 mac 96389 bytes_out 0 96389 bytes_in 0 96389 station_ip 5.119.114.245 96389 port 2 96389 unique_id port 96393 username alireza1 96393 unique_id port 96393 terminate_cause User-Request 96393 bytes_out 0 96393 bytes_in 0 96393 station_ip 5.119.195.175 96393 port 15728842 96393 nas_port_type Virtual 96393 remote_ip 5.5.5.248 96394 username alireza1 96394 unique_id port 96394 terminate_cause User-Request 96394 bytes_out 0 96394 bytes_in 0 96394 station_ip 5.119.195.175 96394 port 15728843 96394 nas_port_type Virtual 96394 remote_ip 5.5.5.248 96396 username mahdiyehalizadeh 96396 kill_reason Another user logged on this global unique id 96396 mac 96396 bytes_out 0 96396 bytes_in 0 96376 station_ip 5.120.108.200 96376 port 2 96376 unique_id port 96376 remote_ip 10.8.0.6 96377 username aminvpn 96377 mac 96377 bytes_out 0 96377 bytes_in 0 96377 station_ip 5.120.108.200 96377 port 2 96377 unique_id port 96377 remote_ip 10.8.0.6 96380 username aminvpn 96380 mac 96380 bytes_out 0 96380 bytes_in 0 96380 station_ip 5.120.108.200 96380 port 2 96380 unique_id port 96380 remote_ip 10.8.0.6 96382 username aminvpn 96382 mac 96382 bytes_out 0 96382 bytes_in 0 96382 station_ip 5.120.108.200 96382 port 2 96382 unique_id port 96382 remote_ip 10.8.0.6 96387 username aminvpn 96387 mac 96387 bytes_out 0 96387 bytes_in 0 96387 station_ip 5.120.108.200 96387 port 5 96387 unique_id port 96387 remote_ip 10.8.0.6 96390 username mohammadmahdi 96390 mac 96390 bytes_out 0 96390 bytes_in 0 96390 station_ip 5.119.114.245 96390 port 2 96390 unique_id port 96397 username aminvpn 96397 mac 96397 bytes_out 0 96397 bytes_in 0 96397 station_ip 5.120.108.200 96397 port 5 96397 unique_id port 96397 remote_ip 10.8.0.6 96398 username aminvpn 96398 mac 96398 bytes_out 0 96398 bytes_in 0 96398 station_ip 5.120.108.200 96398 port 5 96398 unique_id port 96398 remote_ip 10.8.0.6 96399 username mohammadreza 96399 mac 96399 bytes_out 518831 96399 bytes_in 1961697 96399 station_ip 5.233.46.14 96399 port 1 96399 unique_id port 96399 remote_ip 10.8.1.10 96400 username madadi2 96400 mac 96400 bytes_out 127153 96400 bytes_in 887901 96400 station_ip 5.120.45.239 96400 port 3 96400 unique_id port 96400 remote_ip 10.8.1.18 96406 username aminvpn 96406 mac 96406 bytes_out 0 96406 bytes_in 0 96406 station_ip 5.120.108.200 96406 port 5 96406 unique_id port 96406 remote_ip 10.8.0.6 96413 username mohammadmahdi 96413 mac 96413 bytes_out 0 96413 bytes_in 0 96413 station_ip 5.120.184.207 96413 port 2 96413 unique_id port 96421 username aminvpn 96421 mac 96421 bytes_out 0 96421 bytes_in 0 96421 station_ip 5.120.108.200 96421 port 2 96421 unique_id port 96421 remote_ip 10.8.0.6 96427 username ahmadi 96427 unique_id port 96427 terminate_cause User-Request 96427 bytes_out 61280 96427 bytes_in 643863 96427 station_ip 37.129.16.38 96427 port 15728851 96427 nas_port_type Virtual 96427 remote_ip 5.5.5.238 96429 username mahbobeh 96429 unique_id port 96429 terminate_cause Lost-Carrier 96429 bytes_out 705632 96429 bytes_in 4445389 96429 station_ip 83.123.154.199 96429 port 15728849 96429 nas_port_type Virtual 96429 remote_ip 5.5.5.239 96434 username aminvpn 96434 mac 96434 bytes_out 0 96434 bytes_in 0 96434 station_ip 5.120.108.200 96434 port 1 96434 unique_id port 96434 remote_ip 10.8.0.6 96441 username aminvpn 96441 mac 96441 bytes_out 0 96441 bytes_in 0 96441 station_ip 5.120.108.200 96441 port 2 96441 unique_id port 96441 remote_ip 10.8.0.6 96444 username aminvpn 96444 mac 96444 bytes_out 0 96444 bytes_in 0 96444 station_ip 5.120.108.200 96444 port 6 96444 unique_id port 96444 remote_ip 10.8.0.6 96449 username aminvpn 96449 mac 96449 bytes_out 1194309 96449 bytes_in 14235507 96449 station_ip 37.129.59.161 96449 port 6 96449 unique_id port 96449 remote_ip 10.8.0.6 96450 username mehdizare 96450 mac 96450 bytes_out 0 96450 bytes_in 0 96450 station_ip 5.119.39.151 96450 port 1 96450 unique_id port 96388 station_ip 5.120.108.200 96388 port 5 96388 unique_id port 96388 remote_ip 10.8.0.6 96391 username aminvpn 96391 mac 96391 bytes_out 0 96391 bytes_in 0 96391 station_ip 5.120.108.200 96391 port 2 96391 unique_id port 96391 remote_ip 10.8.0.6 96392 username alireza1 96392 unique_id port 96392 terminate_cause User-Request 96392 bytes_out 0 96392 bytes_in 0 96392 station_ip 5.119.195.175 96392 port 15728841 96392 nas_port_type Virtual 96392 remote_ip 5.5.5.248 96395 username alireza1 96395 unique_id port 96395 terminate_cause User-Request 96395 bytes_out 0 96395 bytes_in 0 96395 station_ip 5.119.195.175 96395 port 15728844 96395 nas_port_type Virtual 96395 remote_ip 5.5.5.248 96401 username mohammadmahdi 96401 mac 96401 bytes_out 8494104 96401 bytes_in 33204990 96401 station_ip 5.120.184.207 96401 port 2 96401 unique_id port 96401 remote_ip 10.8.0.34 96404 username aminvpn 96404 mac 96404 bytes_out 0 96404 bytes_in 0 96404 station_ip 5.120.108.200 96404 port 5 96404 unique_id port 96404 remote_ip 10.8.0.6 96408 username aminvpn 96408 mac 96408 bytes_out 0 96408 bytes_in 0 96408 station_ip 5.120.108.200 96408 port 5 96408 unique_id port 96408 remote_ip 10.8.0.6 96409 username mehdizare 96409 mac 96409 bytes_out 21107 96409 bytes_in 34423 96409 station_ip 5.119.39.151 96409 port 1 96409 unique_id port 96409 remote_ip 10.8.0.22 96412 username mehdizare 96412 mac 96412 bytes_out 5845 96412 bytes_in 13571 96412 station_ip 5.119.39.151 96412 port 1 96412 unique_id port 96412 remote_ip 10.8.0.22 96414 username aminvpn 96414 mac 96414 bytes_out 0 96414 bytes_in 0 96414 station_ip 5.120.108.200 96414 port 2 96414 unique_id port 96414 remote_ip 10.8.0.6 96416 username aminvpn 96416 mac 96416 bytes_out 0 96416 bytes_in 0 96416 station_ip 5.120.108.200 96416 port 2 96416 unique_id port 96416 remote_ip 10.8.0.6 96419 username mehdizare 96419 mac 96419 bytes_out 3841 96419 bytes_in 9540 96419 station_ip 5.119.39.151 96419 port 1 96419 unique_id port 96419 remote_ip 10.8.0.22 96422 username mehdizare 96422 mac 96422 bytes_out 9528 96422 bytes_in 18672 96422 station_ip 5.119.39.151 96422 port 1 96422 unique_id port 96422 remote_ip 10.8.0.22 96423 username aminvpn 96423 mac 96423 bytes_out 612727 96423 bytes_in 2082912 96423 station_ip 5.120.108.200 96423 port 1 96423 unique_id port 96423 remote_ip 10.8.0.6 96425 username aminvpn 96425 mac 96425 bytes_out 0 96425 bytes_in 0 96425 station_ip 5.120.108.200 96425 port 1 96425 unique_id port 96425 remote_ip 10.8.0.6 96426 username madadi2 96426 mac 96426 bytes_out 0 96426 bytes_in 0 96426 station_ip 5.120.160.124 96426 port 5 96426 unique_id port 96426 remote_ip 10.8.0.26 96428 username madadi2 96428 mac 96428 bytes_out 0 96428 bytes_in 0 96428 station_ip 5.120.177.204 96428 port 1 96428 unique_id port 96428 remote_ip 10.8.0.26 96431 username aminvpn 96431 mac 96431 bytes_out 0 96431 bytes_in 0 96431 station_ip 5.120.108.200 96431 port 5 96431 unique_id port 96431 remote_ip 10.8.0.6 96435 username mehdizare 96435 mac 96435 bytes_out 0 96435 bytes_in 0 96435 station_ip 5.119.39.151 96435 port 2 96435 unique_id port 96435 remote_ip 10.8.0.22 96438 username mehdizare 96438 mac 96438 bytes_out 90451 96438 bytes_in 306739 96438 station_ip 5.119.39.151 96396 station_ip 113.203.124.161 96396 port 2 96396 unique_id port 96396 remote_ip 10.8.1.14 96402 username alemzadeh 96402 unique_id port 96402 terminate_cause User-Request 96402 bytes_out 0 96402 bytes_in 0 96402 station_ip 83.122.49.158 96402 port 15728845 96402 nas_port_type Virtual 96402 remote_ip 5.5.5.240 96403 username alemzadeh 96403 unique_id port 96403 terminate_cause User-Request 96403 bytes_out 0 96403 bytes_in 0 96403 station_ip 83.122.49.158 96403 port 15728846 96403 nas_port_type Virtual 96403 remote_ip 5.5.5.240 96405 username alemzadeh 96405 unique_id port 96405 terminate_cause User-Request 96405 bytes_out 0 96405 bytes_in 0 96405 station_ip 83.122.49.158 96405 port 15728847 96405 nas_port_type Virtual 96405 remote_ip 5.5.5.240 96407 username alemzadeh 96407 unique_id port 96407 terminate_cause User-Request 96407 bytes_out 0 96407 bytes_in 0 96407 station_ip 83.122.49.158 96407 port 15728848 96407 nas_port_type Virtual 96407 remote_ip 5.5.5.240 96410 username mirzaei 96410 kill_reason Another user logged on this global unique id 96410 mac 96410 bytes_out 0 96410 bytes_in 0 96410 station_ip 5.119.181.139 96410 port 4 96410 unique_id port 96410 remote_ip 10.8.0.30 96411 username mehdizare 96411 mac 96411 bytes_out 541246 96411 bytes_in 1991470 96411 station_ip 5.119.39.151 96411 port 1 96411 unique_id port 96411 remote_ip 10.8.0.22 96415 username mehdizare 96415 mac 96415 bytes_out 546684 96415 bytes_in 1996956 96415 station_ip 5.119.39.151 96415 port 1 96415 unique_id port 96415 remote_ip 10.8.0.22 96417 username aminvpn 96417 mac 96417 bytes_out 0 96417 bytes_in 0 96417 station_ip 5.120.108.200 96417 port 2 96417 unique_id port 96417 remote_ip 10.8.0.6 96418 username mehdizare 96418 mac 96418 bytes_out 19582 96418 bytes_in 34787 96418 station_ip 5.119.39.151 96418 port 1 96418 unique_id port 96418 remote_ip 10.8.0.22 96420 username mehdizare 96420 mac 96420 bytes_out 585417 96420 bytes_in 2036539 96420 station_ip 5.119.39.151 96420 port 1 96420 unique_id port 96420 remote_ip 10.8.0.22 96424 username avaanna 96424 unique_id port 96424 terminate_cause User-Request 96424 bytes_out 0 96424 bytes_in 0 96424 station_ip 83.122.182.217 96424 port 15728852 96424 nas_port_type Virtual 96424 remote_ip 5.5.5.237 96430 username askari 96430 mac 96430 bytes_out 0 96430 bytes_in 0 96430 station_ip 5.120.131.75 96430 port 1 96430 unique_id port 96430 remote_ip 10.8.0.38 96432 username aminvpn 96432 mac 96432 bytes_out 0 96432 bytes_in 0 96432 station_ip 5.120.108.200 96432 port 1 96432 unique_id port 96432 remote_ip 10.8.0.6 96433 username aminvpn 96433 mac 96433 bytes_out 0 96433 bytes_in 0 96433 station_ip 5.120.108.200 96433 port 1 96433 unique_id port 96433 remote_ip 10.8.0.6 96436 username aminvpn 96436 mac 96436 bytes_out 0 96436 bytes_in 0 96436 station_ip 5.120.108.200 96436 port 6 96436 unique_id port 96436 remote_ip 10.8.0.6 96437 username mohammadmahdi 96437 mac 96437 bytes_out 2420913 96437 bytes_in 35979619 96437 station_ip 5.120.184.207 96437 port 5 96437 unique_id port 96437 remote_ip 10.8.0.34 96440 username aminvpn 96440 mac 96440 bytes_out 0 96440 bytes_in 0 96440 station_ip 5.120.108.200 96440 port 2 96440 unique_id port 96440 remote_ip 10.8.0.6 96447 username mehdizare 96447 mac 96447 bytes_out 15705 96447 bytes_in 18822 96447 station_ip 5.119.39.151 96447 port 5 96438 port 2 96438 unique_id port 96438 remote_ip 10.8.0.22 96439 username aminvpn 96439 mac 96439 bytes_out 0 96439 bytes_in 0 96439 station_ip 5.120.108.200 96439 port 2 96439 unique_id port 96439 remote_ip 10.8.0.6 96442 username aminvpn 96442 mac 96442 bytes_out 0 96442 bytes_in 0 96442 station_ip 5.120.108.200 96442 port 5 96442 unique_id port 96442 remote_ip 10.8.0.6 96443 username aminvpn 96443 mac 96443 bytes_out 0 96443 bytes_in 0 96443 station_ip 37.129.59.161 96443 port 5 96443 unique_id port 96443 remote_ip 10.8.0.6 96445 username aminvpn 96445 mac 96445 bytes_out 0 96445 bytes_in 0 96445 station_ip 5.120.108.200 96445 port 5 96445 unique_id port 96445 remote_ip 10.8.0.6 96446 username mehdizare 96446 mac 96446 bytes_out 0 96446 bytes_in 0 96446 station_ip 5.119.39.151 96446 port 2 96446 unique_id port 96446 remote_ip 10.8.0.22 96448 username mohammadreza 96448 kill_reason Another user logged on this global unique id 96448 mac 96448 bytes_out 0 96448 bytes_in 0 96448 station_ip 5.233.47.4 96448 port 1 96448 unique_id port 96448 remote_ip 10.8.0.18 96451 username madadi2 96451 mac 96451 bytes_out 34442 96451 bytes_in 43994 96451 station_ip 5.120.34.53 96451 port 5 96451 unique_id port 96451 remote_ip 10.8.0.26 96460 username aminvpn 96460 mac 96460 bytes_out 0 96460 bytes_in 0 96460 station_ip 5.120.108.200 96460 port 1 96460 unique_id port 96460 remote_ip 10.8.0.6 96461 username shokokian 96461 unique_id port 96461 terminate_cause User-Request 96461 bytes_out 0 96461 bytes_in 0 96461 station_ip 31.56.221.69 96461 port 15728856 96461 nas_port_type Virtual 96461 remote_ip 5.5.5.234 96465 username aminvpn 96465 mac 96465 bytes_out 0 96465 bytes_in 0 96465 station_ip 5.120.108.200 96465 port 1 96465 unique_id port 96465 remote_ip 10.8.0.6 96469 username aminvpn 96469 mac 96469 bytes_out 0 96469 bytes_in 0 96469 station_ip 5.120.108.200 96469 port 1 96469 unique_id port 96469 remote_ip 10.8.0.6 96470 username aminvpn 96470 mac 96470 bytes_out 0 96470 bytes_in 0 96470 station_ip 5.120.108.200 96470 port 1 96470 unique_id port 96470 remote_ip 10.8.0.6 96477 username mehdizare 96477 mac 96477 bytes_out 0 96477 bytes_in 0 96477 station_ip 5.119.39.151 96477 port 5 96477 unique_id port 96477 remote_ip 10.8.0.22 96478 username aminvpn 96478 mac 96478 bytes_out 388491 96478 bytes_in 1153570 96478 station_ip 83.123.244.55 96478 port 2 96478 unique_id port 96478 remote_ip 10.8.0.6 96481 username alireza1 96481 unique_id port 96481 terminate_cause User-Request 96481 bytes_out 0 96481 bytes_in 0 96481 station_ip 5.119.102.253 96481 port 15728861 96481 nas_port_type Virtual 96481 remote_ip 5.5.5.233 96482 username heydari1 96482 unique_id port 96482 terminate_cause User-Request 96482 bytes_out 0 96482 bytes_in 0 96482 station_ip 5.119.244.203 96482 port 15728862 96482 nas_port_type Virtual 96482 remote_ip 5.5.5.232 96484 username aminvpn 96484 mac 96484 bytes_out 0 96484 bytes_in 0 96484 station_ip 83.123.244.55 96484 port 2 96484 unique_id port 96484 remote_ip 10.8.0.6 96486 username aminvpn 96486 kill_reason Another user logged on this global unique id 96486 mac 96486 bytes_out 0 96486 bytes_in 0 96486 station_ip 83.123.244.55 96486 port 2 96486 unique_id port 96486 remote_ip 10.8.0.6 96488 username aminvpn 96488 mac 96447 unique_id port 96447 remote_ip 10.8.0.22 96452 username mammad 96452 unique_id port 96452 terminate_cause User-Request 96452 bytes_out 0 96452 bytes_in 0 96452 station_ip 5.233.69.26 96452 port 15728854 96452 nas_port_type Virtual 96452 remote_ip 5.5.5.236 96454 username aminvpn 96454 mac 96454 bytes_out 0 96454 bytes_in 0 96454 station_ip 5.120.108.200 96454 port 1 96454 unique_id port 96454 remote_ip 10.8.0.6 96455 username mehdizare 96455 mac 96455 bytes_out 0 96455 bytes_in 0 96455 station_ip 5.119.39.151 96455 port 1 96455 unique_id port 96455 remote_ip 10.8.0.22 96462 username shokokian 96462 unique_id port 96462 terminate_cause User-Request 96462 bytes_out 0 96462 bytes_in 0 96462 station_ip 31.56.221.69 96462 port 15728857 96462 nas_port_type Virtual 96462 remote_ip 5.5.5.234 96466 username aminvpn 96466 mac 96466 bytes_out 0 96466 bytes_in 0 96466 station_ip 5.120.108.200 96466 port 1 96466 unique_id port 96466 remote_ip 10.8.0.6 96467 username aminvpn 96467 mac 96467 bytes_out 0 96467 bytes_in 0 96467 station_ip 5.120.108.200 96467 port 1 96467 unique_id port 96467 remote_ip 10.8.0.6 96471 username aminvpn 96471 mac 96471 bytes_out 0 96471 bytes_in 0 96471 station_ip 5.120.108.200 96471 port 1 96471 unique_id port 96471 remote_ip 10.8.0.6 96472 username mehdizare 96472 mac 96472 bytes_out 69191 96472 bytes_in 43956 96472 station_ip 5.119.39.151 96472 port 2 96472 unique_id port 96472 remote_ip 10.8.0.22 96475 username mehdizare 96475 mac 96475 bytes_out 0 96475 bytes_in 0 96475 station_ip 5.119.39.151 96475 port 1 96475 unique_id port 96475 remote_ip 10.8.0.22 96476 username bcboard 96476 unique_id port 96476 terminate_cause Lost-Carrier 96476 bytes_out 1130770 96476 bytes_in 4632750 96476 station_ip 37.129.6.90 96476 port 15728859 96476 nas_port_type Virtual 96476 remote_ip 5.5.5.235 96479 username aminvpn 96479 mac 96479 bytes_out 0 96479 bytes_in 0 96479 station_ip 5.120.108.200 96479 port 5 96479 unique_id port 96479 remote_ip 10.8.0.6 96483 username mehdizare 96483 kill_reason Another user logged on this global unique id 96483 mac 96483 bytes_out 0 96483 bytes_in 0 96483 station_ip 5.119.39.151 96483 port 1 96483 unique_id port 96483 remote_ip 10.8.0.22 96485 username aminvpn 96485 mac 96485 bytes_out 0 96485 bytes_in 0 96485 station_ip 5.120.108.200 96485 port 5 96485 unique_id port 96485 remote_ip 10.8.0.6 96487 username alihosseini 96487 mac 96487 bytes_out 437039 96487 bytes_in 2222061 96487 station_ip 5.126.44.50 96487 port 2 96487 unique_id port 96487 remote_ip 10.8.1.6 96489 username madadi2 96489 mac 96489 bytes_out 31931 96489 bytes_in 36878 96489 station_ip 5.120.177.186 96489 port 6 96489 unique_id port 96489 remote_ip 10.8.0.26 96492 username alihosseini 96492 mac 96492 bytes_out 3690 96492 bytes_in 5251 96492 station_ip 5.126.44.50 96492 port 6 96492 unique_id port 96492 remote_ip 10.8.0.14 96501 username alihosseini 96501 mac 96501 bytes_out 0 96501 bytes_in 0 96501 station_ip 5.125.65.106 96501 port 6 96501 unique_id port 96501 remote_ip 10.8.0.14 96511 username aminvpn 96511 mac 96511 bytes_out 524019 96511 bytes_in 582813 96511 station_ip 83.123.244.55 96511 port 8 96511 unique_id port 96511 remote_ip 10.8.0.6 96513 username alihosseini 96513 mac 96513 bytes_out 56212 96513 bytes_in 135225 96450 remote_ip 10.8.1.22 96453 username aminvpn 96453 mac 96453 bytes_out 120258 96453 bytes_in 355952 96453 station_ip 37.129.59.161 96453 port 2 96453 unique_id port 96453 remote_ip 10.8.0.6 96456 username bcboard 96456 unique_id port 96456 terminate_cause User-Request 96456 bytes_out 68540 96456 bytes_in 57882 96456 station_ip 37.129.6.90 96456 port 15728855 96456 nas_port_type Virtual 96456 remote_ip 5.5.5.235 96457 username aminvpn 96457 mac 96457 bytes_out 11728 96457 bytes_in 16817 96457 station_ip 37.129.59.161 96457 port 1 96457 unique_id port 96457 remote_ip 10.8.1.26 96458 username aminvpn 96458 mac 96458 bytes_out 10647 96458 bytes_in 14313 96458 station_ip 37.129.59.161 96458 port 1 96458 unique_id port 96458 remote_ip 10.8.1.26 96459 username aminvpn 96459 mac 96459 bytes_out 0 96459 bytes_in 0 96459 station_ip 5.120.108.200 96459 port 1 96459 unique_id port 96459 remote_ip 10.8.0.6 96463 username shokokian 96463 unique_id port 96463 terminate_cause User-Request 96463 bytes_out 0 96463 bytes_in 0 96463 station_ip 31.56.221.69 96463 port 15728858 96463 nas_port_type Virtual 96463 remote_ip 5.5.5.234 96464 username aminvpn 96464 mac 96464 bytes_out 0 96464 bytes_in 0 96464 station_ip 5.120.108.200 96464 port 1 96464 unique_id port 96464 remote_ip 10.8.0.6 96468 username aminvpn 96468 mac 96468 bytes_out 0 96468 bytes_in 0 96468 station_ip 5.120.108.200 96468 port 1 96468 unique_id port 96468 remote_ip 10.8.0.6 96473 username aminvpn 96473 mac 96473 bytes_out 0 96473 bytes_in 0 96473 station_ip 83.123.244.55 96473 port 2 96473 unique_id port 96473 remote_ip 10.8.0.6 96474 username aminvpn 96474 mac 96474 bytes_out 0 96474 bytes_in 0 96474 station_ip 5.120.108.200 96474 port 5 96474 unique_id port 96474 remote_ip 10.8.0.6 96480 username alireza1 96480 unique_id port 96480 terminate_cause User-Request 96480 bytes_out 0 96480 bytes_in 0 96480 station_ip 5.119.102.253 96480 port 15728860 96480 nas_port_type Virtual 96480 remote_ip 5.5.5.233 96490 username aminvpn 96490 mac 96490 bytes_out 0 96490 bytes_in 0 96490 station_ip 83.123.244.55 96490 port 2 96490 unique_id port 96490 remote_ip 10.8.0.6 96491 username alihosseini 96491 mac 96491 bytes_out 0 96491 bytes_in 0 96491 station_ip 5.126.44.50 96491 port 2 96491 unique_id port 96491 remote_ip 10.8.1.6 96493 username alihosseini 96493 mac 96493 bytes_out 0 96493 bytes_in 0 96493 station_ip 5.126.44.50 96493 port 6 96493 unique_id port 96493 remote_ip 10.8.0.14 96494 username aminvpn 96494 mac 96494 bytes_out 0 96494 bytes_in 0 96494 station_ip 5.120.108.200 96494 port 6 96494 unique_id port 96494 remote_ip 10.8.0.6 96496 username aminvpn 96496 mac 96496 bytes_out 0 96496 bytes_in 0 96496 station_ip 5.120.108.200 96496 port 2 96496 unique_id port 96496 remote_ip 10.8.0.6 96497 username mohammadmahdi 96497 kill_reason Another user logged on this global unique id 96497 mac 96497 bytes_out 0 96497 bytes_in 0 96497 station_ip 5.120.184.207 96497 port 5 96497 unique_id port 96497 remote_ip 10.8.0.34 96499 username aminvpn 96499 mac 96499 bytes_out 0 96499 bytes_in 0 96499 station_ip 5.120.108.200 96499 port 8 96499 unique_id port 96499 remote_ip 10.8.0.6 96502 username mohammadmahdi 96502 kill_reason Another user logged on this global unique id 96502 mac 96502 bytes_out 0 96488 bytes_out 0 96488 bytes_in 0 96488 station_ip 5.120.108.200 96488 port 6 96488 unique_id port 96488 remote_ip 10.8.0.6 96495 username mohammadmahdi 96495 mac 96495 bytes_out 0 96495 bytes_in 0 96495 station_ip 5.120.184.207 96495 port 5 96495 unique_id port 96495 remote_ip 10.8.0.34 96498 username aminvpn 96498 mac 96498 bytes_out 82331 96498 bytes_in 156444 96498 station_ip 83.123.244.55 96498 port 2 96498 unique_id port 96498 remote_ip 10.8.0.6 96500 username mirzaei 96500 kill_reason Another user logged on this global unique id 96500 mac 96500 bytes_out 0 96500 bytes_in 0 96500 station_ip 5.119.181.139 96500 port 4 96500 unique_id port 96503 username mahdiyehalizadeh 96503 mac 96503 bytes_out 1032529 96503 bytes_in 10164280 96503 station_ip 83.122.71.113 96503 port 7 96503 unique_id port 96503 remote_ip 10.8.0.42 96505 username aminvpn 96505 mac 96505 bytes_out 0 96505 bytes_in 0 96505 station_ip 5.120.108.200 96505 port 7 96505 unique_id port 96505 remote_ip 10.8.0.6 96507 username askari 96507 mac 96507 bytes_out 0 96507 bytes_in 0 96507 station_ip 5.120.47.218 96507 port 2 96507 unique_id port 96507 remote_ip 10.8.0.38 96508 username mohammadmahdi 96508 kill_reason Another user logged on this global unique id 96508 mac 96508 bytes_out 0 96508 bytes_in 0 96508 station_ip 5.120.184.207 96508 port 5 96508 unique_id port 96512 username aminvpn 96512 mac 96512 bytes_out 0 96512 bytes_in 0 96512 station_ip 5.120.108.200 96512 port 2 96512 unique_id port 96512 remote_ip 10.8.0.6 96514 username mohammadmahdi 96514 kill_reason Another user logged on this global unique id 96514 mac 96514 bytes_out 0 96514 bytes_in 0 96514 station_ip 5.120.184.207 96514 port 5 96514 unique_id port 96515 username aminvpn 96515 mac 96515 bytes_out 0 96515 bytes_in 0 96515 station_ip 83.123.244.55 96515 port 2 96515 unique_id port 96515 remote_ip 10.8.0.6 96519 username amir 96519 unique_id port 96519 terminate_cause Lost-Carrier 96519 bytes_out 2024646 96519 bytes_in 25218853 96519 station_ip 37.129.102.153 96519 port 15728864 96519 nas_port_type Virtual 96519 remote_ip 5.5.5.230 96523 username aminvpn 96523 unique_id port 96523 terminate_cause User-Request 96523 bytes_out 93336068 96523 bytes_in 4138528432 96523 station_ip 83.123.244.55 96523 port 15728863 96523 nas_port_type Virtual 96523 remote_ip 5.5.5.231 96524 username mohammadmahdi 96524 kill_reason Another user logged on this global unique id 96524 mac 96524 bytes_out 0 96524 bytes_in 0 96524 station_ip 5.120.184.207 96524 port 5 96524 unique_id port 96525 username mehdizare 96525 mac 96525 bytes_out 99177 96525 bytes_in 94741 96525 station_ip 5.119.39.151 96525 port 6 96525 unique_id port 96525 remote_ip 10.8.0.22 96529 username aminvpn 96529 mac 96529 bytes_out 0 96529 bytes_in 0 96529 station_ip 5.120.108.200 96529 port 6 96529 unique_id port 96529 remote_ip 10.8.0.6 96534 username aminvpn 96534 mac 96534 bytes_out 752311 96534 bytes_in 7040307 96534 station_ip 83.123.244.55 96534 port 1 96534 unique_id port 96534 remote_ip 10.8.0.6 96536 username mehdizare 96536 mac 96536 bytes_out 25800 96536 bytes_in 31126 96536 station_ip 5.119.39.151 96536 port 2 96536 unique_id port 96536 remote_ip 10.8.0.22 96542 username alihosseini 96542 mac 96542 bytes_out 0 96542 bytes_in 0 96542 station_ip 5.125.236.195 96542 port 6 96542 unique_id port 96542 remote_ip 10.8.0.14 96502 bytes_in 0 96502 station_ip 5.120.184.207 96502 port 5 96502 unique_id port 96504 username aminvpn 96504 mac 96504 bytes_out 0 96504 bytes_in 0 96504 station_ip 83.123.244.55 96504 port 8 96504 unique_id port 96504 remote_ip 10.8.0.6 96506 username aminvpn 96506 mac 96506 bytes_out 208618 96506 bytes_in 168983 96506 station_ip 37.129.59.161 96506 port 1 96506 unique_id port 96506 remote_ip 10.8.1.26 96509 username askari 96509 mac 96509 bytes_out 0 96509 bytes_in 0 96509 station_ip 5.119.38.251 96509 port 1 96509 unique_id port 96509 remote_ip 10.8.1.30 96510 username mohammadmahdi 96510 kill_reason Another user logged on this global unique id 96510 mac 96510 bytes_out 0 96510 bytes_in 0 96510 station_ip 5.120.184.207 96510 port 5 96510 unique_id port 96516 username aminvpn 96516 mac 96516 bytes_out 0 96516 bytes_in 0 96516 station_ip 5.120.108.200 96516 port 1 96516 unique_id port 96516 remote_ip 10.8.0.6 96517 username aminvpn 96517 mac 96517 bytes_out 159439 96517 bytes_in 234114 96517 station_ip 83.123.244.55 96517 port 1 96517 unique_id port 96517 remote_ip 10.8.0.6 96521 username aminvpn 96521 mac 96521 bytes_out 72387 96521 bytes_in 89123 96521 station_ip 83.123.244.55 96521 port 1 96521 unique_id port 96521 remote_ip 10.8.0.6 96526 username mohammadmahdi 96526 mac 96526 bytes_out 0 96526 bytes_in 0 96526 station_ip 5.120.184.207 96526 port 5 96526 unique_id port 96530 username mahdiyehalizadeh 96530 mac 96530 bytes_out 677394 96530 bytes_in 8668486 96530 station_ip 83.122.71.113 96530 port 5 96530 unique_id port 96530 remote_ip 10.8.0.42 96531 username aminvpn 96531 mac 96531 bytes_out 1701196 96531 bytes_in 14390803 96531 station_ip 83.123.244.55 96531 port 1 96531 unique_id port 96531 remote_ip 10.8.0.6 96535 username aminvpn 96535 mac 96535 bytes_out 0 96535 bytes_in 0 96535 station_ip 5.120.108.200 96535 port 5 96535 unique_id port 96535 remote_ip 10.8.0.6 96540 username aminvpn 96540 mac 96540 bytes_out 0 96540 bytes_in 0 96540 station_ip 5.120.108.200 96540 port 2 96540 unique_id port 96540 remote_ip 10.8.0.6 96543 username aminvpn 96543 mac 96543 bytes_out 0 96543 bytes_in 0 96543 station_ip 83.123.244.55 96543 port 2 96543 unique_id port 96543 remote_ip 10.8.0.6 96547 username aminvpn 96547 mac 96547 bytes_out 0 96547 bytes_in 0 96547 station_ip 83.123.244.55 96547 port 2 96547 unique_id port 96547 remote_ip 10.8.0.6 96549 username aminvpn 96549 mac 96549 bytes_out 0 96549 bytes_in 0 96549 station_ip 5.120.108.200 96549 port 2 96549 unique_id port 96549 remote_ip 10.8.0.6 96552 username aminvpn 96552 mac 96552 bytes_out 0 96552 bytes_in 0 96552 station_ip 5.120.108.200 96552 port 1 96552 unique_id port 96552 remote_ip 10.8.1.26 96556 username mirzaei 96556 mac 96556 bytes_out 0 96556 bytes_in 0 96556 station_ip 5.119.181.139 96556 port 4 96556 unique_id port 96560 username alirr 96560 unique_id port 96560 terminate_cause User-Request 96560 bytes_out 1429 96560 bytes_in 4139 96560 station_ip 5.119.56.221 96560 port 15728870 96560 nas_port_type Virtual 96560 remote_ip 5.5.5.225 96561 username aminvpn 96561 kill_reason Another user logged on this global unique id 96561 mac 96561 bytes_out 0 96561 bytes_in 0 96561 station_ip 83.123.244.55 96561 port 2 96561 unique_id port 96513 station_ip 5.126.69.233 96513 port 6 96513 unique_id port 96513 remote_ip 10.8.0.14 96518 username aminvpn 96518 mac 96518 bytes_out 0 96518 bytes_in 0 96518 station_ip 5.120.108.200 96518 port 2 96518 unique_id port 96518 remote_ip 10.8.0.6 96520 username mohammadmahdi 96520 kill_reason Another user logged on this global unique id 96520 mac 96520 bytes_out 0 96520 bytes_in 0 96520 station_ip 5.120.184.207 96520 port 5 96520 unique_id port 96522 username aminvpn 96522 mac 96522 bytes_out 0 96522 bytes_in 0 96522 station_ip 5.120.108.200 96522 port 2 96522 unique_id port 96522 remote_ip 10.8.0.6 96527 username aminvpn 96527 mac 96527 bytes_out 1409509 96527 bytes_in 14614652 96527 station_ip 83.123.244.55 96527 port 1 96527 unique_id port 96527 remote_ip 10.8.0.6 96528 username aminvpn 96528 mac 96528 bytes_out 0 96528 bytes_in 0 96528 station_ip 83.123.244.55 96528 port 1 96528 unique_id port 96528 remote_ip 10.8.0.6 96532 username aminvpn 96532 mac 96532 bytes_out 0 96532 bytes_in 0 96532 station_ip 5.120.108.200 96532 port 5 96532 unique_id port 96532 remote_ip 10.8.0.6 96533 username madadi2 96533 mac 96533 bytes_out 0 96533 bytes_in 0 96533 station_ip 5.120.77.112 96533 port 7 96533 unique_id port 96533 remote_ip 10.8.0.26 96537 username ahmadi 96537 unique_id port 96537 terminate_cause User-Request 96537 bytes_out 55595 96537 bytes_in 743096 96537 station_ip 83.122.24.70 96537 port 15728865 96537 nas_port_type Virtual 96537 remote_ip 5.5.5.229 96538 username aminvpn 96538 mac 96538 bytes_out 1016100 96538 bytes_in 11194512 96538 station_ip 83.123.244.55 96538 port 2 96538 unique_id port 96538 remote_ip 10.8.0.6 96539 username aminvpn 96539 mac 96539 bytes_out 0 96539 bytes_in 0 96539 station_ip 5.120.108.200 96539 port 5 96539 unique_id port 96539 remote_ip 10.8.0.6 96541 username mehdizare 96541 mac 96541 bytes_out 90236 96541 bytes_in 135818 96541 station_ip 5.119.39.151 96541 port 1 96541 unique_id port 96541 remote_ip 10.8.0.22 96544 username aminvpn 96544 mac 96544 bytes_out 0 96544 bytes_in 0 96544 station_ip 5.120.108.200 96544 port 5 96544 unique_id port 96544 remote_ip 10.8.0.6 96545 username aminvpn 96545 mac 96545 bytes_out 0 96545 bytes_in 0 96545 station_ip 5.120.108.200 96545 port 2 96545 unique_id port 96545 remote_ip 10.8.0.6 96546 username mammad 96546 unique_id port 96546 terminate_cause User-Request 96546 bytes_out 0 96546 bytes_in 0 96546 station_ip 5.233.79.131 96546 port 15728866 96546 nas_port_type Virtual 96546 remote_ip 5.5.5.228 96548 username aminvpn 96548 mac 96548 bytes_out 0 96548 bytes_in 0 96548 station_ip 5.120.108.200 96548 port 5 96548 unique_id port 96548 remote_ip 10.8.0.6 96550 username mehdizare 96550 kill_reason Another user logged on this global unique id 96550 mac 96550 bytes_out 0 96550 bytes_in 0 96550 station_ip 5.119.39.151 96550 port 1 96550 unique_id port 96550 remote_ip 10.8.0.22 96551 username aminvpn 96551 mac 96551 bytes_out 124121 96551 bytes_in 233240 96551 station_ip 5.120.108.200 96551 port 1 96551 unique_id port 96551 remote_ip 10.8.1.26 96554 username aminvpn 96554 mac 96554 bytes_out 37072 96554 bytes_in 49635 96554 station_ip 83.123.244.55 96554 port 2 96554 unique_id port 96554 remote_ip 10.8.0.6 96555 username aminvpn 96555 mac 96555 bytes_out 0 96553 username aminvpn 96553 unique_id port 96553 terminate_cause User-Request 96553 bytes_out 15815092 96553 bytes_in 342343887 96553 station_ip 5.120.108.200 96553 port 15728850 96553 nas_port_type Virtual 96553 remote_ip 5.5.5.253 96557 username Alirezaza 96557 unique_id port 96557 terminate_cause User-Request 96557 bytes_out 0 96557 bytes_in 0 96557 station_ip 5.119.56.221 96557 port 15728868 96557 nas_port_type Virtual 96557 remote_ip 5.5.5.226 96558 username alirr 96558 unique_id port 96558 terminate_cause User-Request 96558 bytes_out 0 96558 bytes_in 0 96558 station_ip 5.119.56.221 96558 port 15728869 96558 nas_port_type Virtual 96558 remote_ip 5.5.5.225 96559 username mohammadmahdi 96559 mac 96559 bytes_out 1149835 96559 bytes_in 9268056 96559 station_ip 5.120.184.207 96559 port 6 96559 unique_id port 96559 remote_ip 10.8.0.34 96562 username aminvpn 96562 mac 96562 bytes_out 0 96562 bytes_in 0 96562 station_ip 5.120.108.200 96562 port 1 96562 unique_id port 96564 username sadegh1 96564 unique_id port 96564 terminate_cause User-Request 96564 bytes_out 0 96564 bytes_in 0 96564 station_ip 86.57.74.253 96564 port 15728871 96564 nas_port_type Virtual 96564 remote_ip 5.5.5.224 96565 username sadegh 96565 unique_id port 96565 terminate_cause User-Request 96565 bytes_out 0 96565 bytes_in 0 96565 station_ip 86.57.74.253 96565 port 15728872 96565 nas_port_type Virtual 96565 remote_ip 5.5.5.223 96567 username aminvpn 96567 mac 96567 bytes_out 26553 96567 bytes_in 29989 96567 station_ip 83.123.244.55 96567 port 2 96567 unique_id port 96567 remote_ip 10.8.0.6 96573 username alirr 96573 unique_id port 96573 terminate_cause User-Request 96573 bytes_out 3282909 96573 bytes_in 76065106 96573 station_ip 5.119.56.221 96573 port 15728874 96573 nas_port_type Virtual 96573 remote_ip 5.5.5.225 96574 username aminvpn 96574 mac 96574 bytes_out 405427 96574 bytes_in 1111626 96574 station_ip 83.123.244.55 96574 port 2 96574 unique_id port 96574 remote_ip 10.8.0.6 96576 username khalili 96576 unique_id port 96576 terminate_cause User-Request 96576 bytes_out 0 96576 bytes_in 0 96576 station_ip 5.119.81.15 96576 port 15728875 96576 nas_port_type Virtual 96576 remote_ip 5.5.5.222 96577 username khalili 96577 unique_id port 96577 terminate_cause User-Request 96577 bytes_out 0 96577 bytes_in 0 96577 station_ip 5.119.81.15 96577 port 15728876 96577 nas_port_type Virtual 96577 remote_ip 5.5.5.222 96582 username aminvpn 96582 mac 96582 bytes_out 40327 96582 bytes_in 59923 96582 station_ip 83.123.244.55 96582 port 2 96582 unique_id port 96582 remote_ip 10.8.0.6 96584 username aminvpn 96584 mac 96584 bytes_out 0 96584 bytes_in 0 96584 station_ip 5.120.108.200 96584 port 2 96584 unique_id port 96584 remote_ip 10.8.0.6 96585 username aminvpn 96585 mac 96585 bytes_out 0 96585 bytes_in 0 96585 station_ip 5.120.108.200 96585 port 2 96585 unique_id port 96585 remote_ip 10.8.0.6 96587 username bcboard 96587 unique_id port 96587 terminate_cause User-Request 96587 bytes_out 6745309 96587 bytes_in 44326748 96587 station_ip 83.123.88.145 96587 port 15728867 96587 nas_port_type Virtual 96587 remote_ip 5.5.5.227 96592 username aminvpn 96592 mac 96592 bytes_out 0 96592 bytes_in 0 96592 station_ip 5.120.108.200 96592 port 5 96592 unique_id port 96592 remote_ip 10.8.0.6 96595 username mirzaei 96595 kill_reason Another user logged on this global unique id 96595 mac 96595 bytes_out 0 96595 bytes_in 0 96555 bytes_in 0 96555 station_ip 5.120.108.200 96555 port 7 96555 unique_id port 96555 remote_ip 10.8.0.6 96566 username aminvpn 96566 mac 96566 bytes_out 0 96566 bytes_in 0 96566 station_ip 5.120.108.200 96566 port 1 96566 unique_id port 96566 remote_ip 10.8.0.6 96571 username aminvpn 96571 mac 96571 bytes_out 0 96571 bytes_in 0 96571 station_ip 5.120.108.200 96571 port 6 96571 unique_id port 96571 remote_ip 10.8.0.6 96572 username aminvpn 96572 mac 96572 bytes_out 0 96572 bytes_in 0 96572 station_ip 5.120.108.200 96572 port 2 96572 unique_id port 96572 remote_ip 10.8.0.6 96579 username aminvpn 96579 mac 96579 bytes_out 0 96579 bytes_in 0 96579 station_ip 5.120.108.200 96579 port 6 96579 unique_id port 96579 remote_ip 10.8.0.6 96581 username madadi2 96581 mac 96581 bytes_out 1439031 96581 bytes_in 5159131 96581 station_ip 5.119.113.195 96581 port 5 96581 unique_id port 96581 remote_ip 10.8.0.26 96586 username aminvpn 96586 mac 96586 bytes_out 0 96586 bytes_in 0 96586 station_ip 5.120.108.200 96586 port 2 96586 unique_id port 96586 remote_ip 10.8.0.6 96590 username aminvpn 96590 mac 96590 bytes_out 0 96590 bytes_in 0 96590 station_ip 5.120.108.200 96590 port 5 96590 unique_id port 96590 remote_ip 10.8.0.6 96591 username aminvpn 96591 mac 96591 bytes_out 0 96591 bytes_in 0 96591 station_ip 83.123.244.55 96591 port 2 96591 unique_id port 96591 remote_ip 10.8.0.6 96593 username aminvpn 96593 mac 96593 bytes_out 0 96593 bytes_in 0 96593 station_ip 5.120.108.200 96593 port 2 96593 unique_id port 96593 remote_ip 10.8.0.6 96597 username aminvpn 96597 mac 96597 bytes_out 0 96597 bytes_in 0 96597 station_ip 83.123.244.55 96597 port 2 96597 unique_id port 96597 remote_ip 10.8.0.6 96601 username aminvpn 96601 mac 96601 bytes_out 0 96601 bytes_in 0 96601 station_ip 83.123.244.55 96601 port 2 96601 unique_id port 96601 remote_ip 10.8.0.6 96602 username aminvpn 96602 mac 96602 bytes_out 0 96602 bytes_in 0 96602 station_ip 5.120.108.200 96602 port 2 96602 unique_id port 96602 remote_ip 10.8.0.6 96603 username aminvpn 96603 mac 96603 bytes_out 0 96603 bytes_in 0 96603 station_ip 5.120.108.200 96603 port 2 96603 unique_id port 96603 remote_ip 10.8.0.6 96610 username aminvpn 96610 mac 96610 bytes_out 0 96610 bytes_in 0 96610 station_ip 5.120.108.200 96610 port 4 96610 unique_id port 96610 remote_ip 10.8.0.6 96612 username mahdiyehalizadeh 96612 mac 96612 bytes_out 668943 96612 bytes_in 1569046 96612 station_ip 113.203.62.159 96612 port 2 96612 unique_id port 96612 remote_ip 10.8.0.42 96615 username aminvpn 96615 mac 96615 bytes_out 0 96615 bytes_in 0 96615 station_ip 5.120.108.200 96615 port 2 96615 unique_id port 96615 remote_ip 10.8.0.6 96619 username aminvpn 96619 mac 96619 bytes_out 0 96619 bytes_in 0 96619 station_ip 5.120.108.200 96619 port 2 96619 unique_id port 96619 remote_ip 10.8.0.6 96621 username aminvpn 96621 mac 96621 bytes_out 0 96621 bytes_in 0 96621 station_ip 5.120.108.200 96621 port 4 96621 unique_id port 96621 remote_ip 10.8.0.6 96623 username aminvpn 96623 mac 96623 bytes_out 0 96623 bytes_in 0 96623 station_ip 5.120.108.200 96623 port 4 96623 unique_id port 96623 remote_ip 10.8.0.6 96561 remote_ip 10.8.0.6 96563 username mehdizare 96563 mac 96563 bytes_out 7505 96563 bytes_in 14209 96563 station_ip 5.119.39.151 96563 port 2 96563 unique_id port 96563 remote_ip 10.8.1.22 96568 username aminvpn 96568 mac 96568 bytes_out 0 96568 bytes_in 0 96568 station_ip 5.120.108.200 96568 port 6 96568 unique_id port 96568 remote_ip 10.8.0.6 96569 username fariba 96569 kill_reason Another user logged on this global unique id 96569 mac 96569 bytes_out 0 96569 bytes_in 0 96569 station_ip 5.120.171.218 96569 port 4 96569 unique_id port 96569 remote_ip 10.8.0.46 96570 username aminvpn 96570 mac 96570 bytes_out 0 96570 bytes_in 0 96570 station_ip 83.123.244.55 96570 port 2 96570 unique_id port 96570 remote_ip 10.8.0.6 96575 username aminvpn 96575 mac 96575 bytes_out 0 96575 bytes_in 0 96575 station_ip 5.120.108.200 96575 port 6 96575 unique_id port 96575 remote_ip 10.8.0.6 96578 username aminvpn 96578 mac 96578 bytes_out 0 96578 bytes_in 0 96578 station_ip 83.123.244.55 96578 port 2 96578 unique_id port 96578 remote_ip 10.8.0.6 96580 username caferibar 96580 kill_reason Relative expiration date has reached 96580 unique_id port 96580 bytes_out 0 96580 bytes_in 0 96580 station_ip 37.137.12.225 96580 port 15728877 96580 nas_port_type Virtual 96583 username aminvpn 96583 mac 96583 bytes_out 0 96583 bytes_in 0 96583 station_ip 5.120.108.200 96583 port 5 96583 unique_id port 96583 remote_ip 10.8.0.6 96588 username madadi2 96588 mac 96588 bytes_out 0 96588 bytes_in 0 96588 station_ip 5.119.98.169 96588 port 3 96588 unique_id port 96588 remote_ip 10.8.1.18 96589 username aminvpn 96589 mac 96589 bytes_out 0 96589 bytes_in 0 96589 station_ip 83.123.244.55 96589 port 2 96589 unique_id port 96589 remote_ip 10.8.0.6 96594 username aminvpn 96594 mac 96594 bytes_out 0 96594 bytes_in 0 96594 station_ip 5.120.108.200 96594 port 2 96594 unique_id port 96594 remote_ip 10.8.0.6 96600 username asadi 96600 mac 96600 bytes_out 0 96600 bytes_in 0 96600 station_ip 83.122.48.252 96600 port 2 96600 unique_id port 96600 remote_ip 10.8.0.50 96604 username aminvpn 96604 mac 96604 bytes_out 0 96604 bytes_in 0 96604 station_ip 5.120.108.200 96604 port 2 96604 unique_id port 96604 remote_ip 10.8.0.6 96606 username aminvpn 96606 mac 96606 bytes_out 0 96606 bytes_in 0 96606 station_ip 5.120.108.200 96606 port 2 96606 unique_id port 96606 remote_ip 10.8.0.6 96609 username madadi2 96609 mac 96609 bytes_out 1431010 96609 bytes_in 3356926 96609 station_ip 5.120.143.84 96609 port 3 96609 unique_id port 96609 remote_ip 10.8.1.18 96611 username aminvpn 96611 mac 96611 bytes_out 0 96611 bytes_in 0 96611 station_ip 5.120.108.200 96611 port 4 96611 unique_id port 96611 remote_ip 10.8.0.6 96616 username aminvpn 96616 mac 96616 bytes_out 683662 96616 bytes_in 1593245 96616 station_ip 5.120.108.200 96616 port 2 96616 unique_id port 96616 remote_ip 10.8.0.6 96620 username aminvpn 96620 mac 96620 bytes_out 0 96620 bytes_in 0 96620 station_ip 5.120.108.200 96620 port 2 96620 unique_id port 96620 remote_ip 10.8.0.6 96622 username aminvpn 96622 mac 96622 bytes_out 0 96622 bytes_in 0 96622 station_ip 5.120.108.200 96622 port 4 96622 unique_id port 96622 remote_ip 10.8.0.6 96624 username aminvpn 96624 mac 96595 station_ip 5.119.107.36 96595 port 1 96595 unique_id port 96595 remote_ip 10.8.0.30 96596 username fariba 96596 mac 96596 bytes_out 0 96596 bytes_in 0 96596 station_ip 5.120.171.218 96596 port 4 96596 unique_id port 96598 username aminvpn 96598 mac 96598 bytes_out 0 96598 bytes_in 0 96598 station_ip 5.120.108.200 96598 port 4 96598 unique_id port 96598 remote_ip 10.8.0.6 96599 username asadi 96599 unique_id port 96599 terminate_cause User-Request 96599 bytes_out 0 96599 bytes_in 0 96599 station_ip 83.122.48.252 96599 port 15728879 96599 nas_port_type Virtual 96599 remote_ip 5.5.5.220 96605 username aminvpn 96605 mac 96605 bytes_out 0 96605 bytes_in 0 96605 station_ip 5.120.108.200 96605 port 2 96605 unique_id port 96605 remote_ip 10.8.0.6 96607 username aminvpn 96607 mac 96607 bytes_out 0 96607 bytes_in 0 96607 station_ip 5.120.108.200 96607 port 2 96607 unique_id port 96607 remote_ip 10.8.0.6 96608 username aminvpn 96608 mac 96608 bytes_out 0 96608 bytes_in 0 96608 station_ip 5.120.108.200 96608 port 4 96608 unique_id port 96608 remote_ip 10.8.0.6 96613 username madadi2 96613 mac 96613 bytes_out 511133 96613 bytes_in 2856984 96613 station_ip 5.119.80.135 96613 port 3 96613 unique_id port 96613 remote_ip 10.8.1.18 96614 username aminvpn 96614 mac 96614 bytes_out 0 96614 bytes_in 0 96614 station_ip 5.120.108.200 96614 port 2 96614 unique_id port 96614 remote_ip 10.8.0.6 96617 username aminvpn 96617 mac 96617 bytes_out 0 96617 bytes_in 0 96617 station_ip 5.120.108.200 96617 port 2 96617 unique_id port 96617 remote_ip 10.8.0.6 96618 username aminvpn 96618 mac 96618 bytes_out 0 96618 bytes_in 0 96618 station_ip 5.120.108.200 96618 port 2 96618 unique_id port 96618 remote_ip 10.8.0.6 96625 username aminvpn 96625 mac 96625 bytes_out 0 96625 bytes_in 0 96625 station_ip 5.120.108.200 96625 port 3 96625 unique_id port 96625 remote_ip 10.8.1.26 96626 username aminvpn 96626 mac 96626 bytes_out 0 96626 bytes_in 0 96626 station_ip 5.120.108.200 96626 port 3 96626 unique_id port 96626 remote_ip 10.8.1.26 96627 username aminvpn 96627 mac 96627 bytes_out 0 96627 bytes_in 0 96627 station_ip 5.120.108.200 96627 port 3 96627 unique_id port 96627 remote_ip 10.8.1.26 96633 username mirzaei 96633 kill_reason Another user logged on this global unique id 96633 mac 96633 bytes_out 0 96633 bytes_in 0 96633 station_ip 5.119.107.36 96633 port 1 96633 unique_id port 96634 username aminvpn 96634 mac 96634 bytes_out 0 96634 bytes_in 0 96634 station_ip 5.120.108.200 96634 port 2 96634 unique_id port 96634 remote_ip 10.8.0.6 96636 username sadegh 96636 unique_id port 96636 terminate_cause User-Request 96636 bytes_out 68112010 96636 bytes_in 3919537500 96636 station_ip 86.57.74.253 96636 port 15728873 96636 nas_port_type Virtual 96636 remote_ip 5.5.5.223 96639 username aminvpn 96639 mac 96639 bytes_out 0 96639 bytes_in 0 96639 station_ip 5.120.108.200 96639 port 2 96639 unique_id port 96639 remote_ip 10.8.0.6 96643 username aminvpn 96643 mac 96643 bytes_out 0 96643 bytes_in 0 96643 station_ip 5.120.108.200 96643 port 2 96643 unique_id port 96643 remote_ip 10.8.0.6 96646 username mirzaei 96646 kill_reason Another user logged on this global unique id 96646 mac 96646 bytes_out 0 96646 bytes_in 0 96646 station_ip 5.119.107.36 96624 bytes_out 0 96624 bytes_in 0 96624 station_ip 5.120.108.200 96624 port 4 96624 unique_id port 96624 remote_ip 10.8.0.6 96628 username mahdiyehalizadeh 96628 kill_reason Another user logged on this global unique id 96628 mac 96628 bytes_out 0 96628 bytes_in 0 96628 station_ip 113.203.47.203 96628 port 2 96628 unique_id port 96628 remote_ip 10.8.0.42 96632 username aminvpn 96632 mac 96632 bytes_out 0 96632 bytes_in 0 96632 station_ip 5.120.108.200 96632 port 2 96632 unique_id port 96632 remote_ip 10.8.0.6 96635 username aminvpn 96635 mac 96635 bytes_out 0 96635 bytes_in 0 96635 station_ip 5.120.108.200 96635 port 2 96635 unique_id port 96635 remote_ip 10.8.0.6 96637 username aminvpn 96637 mac 96637 bytes_out 0 96637 bytes_in 0 96637 station_ip 5.120.108.200 96637 port 2 96637 unique_id port 96637 remote_ip 10.8.0.6 96638 username aminvpn 96638 mac 96638 bytes_out 0 96638 bytes_in 0 96638 station_ip 5.120.108.200 96638 port 2 96638 unique_id port 96638 remote_ip 10.8.0.6 96640 username mirzaei 96640 kill_reason Another user logged on this global unique id 96640 mac 96640 bytes_out 0 96640 bytes_in 0 96640 station_ip 5.119.107.36 96640 port 1 96640 unique_id port 96642 username aminvpn 96642 mac 96642 bytes_out 0 96642 bytes_in 0 96642 station_ip 5.120.108.200 96642 port 2 96642 unique_id port 96642 remote_ip 10.8.0.6 96644 username mirzaei 96644 kill_reason Another user logged on this global unique id 96644 mac 96644 bytes_out 0 96644 bytes_in 0 96644 station_ip 5.119.107.36 96644 port 1 96644 unique_id port 96649 username mirzaei 96649 kill_reason Another user logged on this global unique id 96649 mac 96649 bytes_out 0 96649 bytes_in 0 96649 station_ip 5.119.107.36 96649 port 1 96649 unique_id port 96651 username mirzaei 96651 kill_reason Another user logged on this global unique id 96651 mac 96651 bytes_out 0 96651 bytes_in 0 96651 station_ip 5.119.107.36 96651 port 1 96651 unique_id port 96653 username aminvpn 96653 mac 96653 bytes_out 0 96653 bytes_in 0 96653 station_ip 5.120.108.200 96653 port 2 96653 unique_id port 96653 remote_ip 10.8.0.6 96654 username mirzaei 96654 kill_reason Another user logged on this global unique id 96654 mac 96654 bytes_out 0 96654 bytes_in 0 96654 station_ip 5.119.107.36 96654 port 1 96654 unique_id port 96657 username aminvpn 96657 mac 96657 bytes_out 0 96657 bytes_in 0 96657 station_ip 5.120.108.200 96657 port 2 96657 unique_id port 96657 remote_ip 10.8.0.6 96660 username alihosseini 96660 kill_reason Another user logged on this global unique id 96660 mac 96660 bytes_out 0 96660 bytes_in 0 96660 station_ip 5.126.63.30 96660 port 2 96660 unique_id port 96660 remote_ip 10.8.0.14 96661 username aminvpn 96661 mac 96661 bytes_out 0 96661 bytes_in 0 96661 station_ip 5.120.108.200 96661 port 4 96661 unique_id port 96661 remote_ip 10.8.0.6 96662 username aminvpn 96662 mac 96662 bytes_out 0 96662 bytes_in 0 96662 station_ip 5.120.108.200 96662 port 4 96662 unique_id port 96662 remote_ip 10.8.0.6 96671 username aminvpn 96671 mac 96671 bytes_out 0 96671 bytes_in 0 96671 station_ip 5.120.108.200 96671 port 2 96671 unique_id port 96671 remote_ip 10.8.0.6 96673 username aminvpn 96673 mac 96673 bytes_out 0 96673 bytes_in 0 96673 station_ip 5.120.108.200 96673 port 2 96673 unique_id port 96673 remote_ip 10.8.0.6 96674 username aminvpn 96629 username mahdiyehalizadeh 96629 mac 96629 bytes_out 0 96629 bytes_in 0 96629 station_ip 113.203.47.203 96629 port 2 96629 unique_id port 96630 username aminvpn 96630 mac 96630 bytes_out 0 96630 bytes_in 0 96630 station_ip 5.120.108.200 96630 port 2 96630 unique_id port 96630 remote_ip 10.8.0.6 96631 username aminvpn 96631 mac 96631 bytes_out 0 96631 bytes_in 0 96631 station_ip 5.120.108.200 96631 port 2 96631 unique_id port 96631 remote_ip 10.8.0.6 96641 username aminvpn 96641 mac 96641 bytes_out 0 96641 bytes_in 0 96641 station_ip 5.120.108.200 96641 port 2 96641 unique_id port 96641 remote_ip 10.8.0.6 96645 username aminvpn 96645 mac 96645 bytes_out 0 96645 bytes_in 0 96645 station_ip 5.120.108.200 96645 port 2 96645 unique_id port 96645 remote_ip 10.8.0.6 96648 username aminvpn 96648 mac 96648 bytes_out 901494 96648 bytes_in 1960116 96648 station_ip 5.120.108.200 96648 port 2 96648 unique_id port 96648 remote_ip 10.8.0.6 96652 username aminvpn 96652 mac 96652 bytes_out 0 96652 bytes_in 0 96652 station_ip 5.120.108.200 96652 port 2 96652 unique_id port 96652 remote_ip 10.8.0.6 96656 username aminvpn 96656 mac 96656 bytes_out 0 96656 bytes_in 0 96656 station_ip 5.120.108.200 96656 port 2 96656 unique_id port 96656 remote_ip 10.8.0.6 96658 username mirzaei 96658 kill_reason Another user logged on this global unique id 96658 mac 96658 bytes_out 0 96658 bytes_in 0 96658 station_ip 5.119.107.36 96658 port 1 96658 unique_id port 96664 username majid 96664 unique_id port 96664 terminate_cause User-Request 96664 bytes_out 0 96664 bytes_in 0 96664 station_ip 86.57.108.151 96664 port 15728882 96664 nas_port_type Virtual 96664 remote_ip 5.5.5.219 96665 username majid 96665 unique_id port 96665 terminate_cause User-Request 96665 bytes_out 0 96665 bytes_in 0 96665 station_ip 86.57.108.151 96665 port 15728883 96665 nas_port_type Virtual 96665 remote_ip 5.5.5.219 96667 username alihosseini 96667 mac 96667 bytes_out 0 96667 bytes_in 0 96667 station_ip 5.126.63.30 96667 port 2 96667 unique_id port 96670 username aminvpn 96670 mac 96670 bytes_out 0 96670 bytes_in 0 96670 station_ip 5.120.108.200 96670 port 2 96670 unique_id port 96670 remote_ip 10.8.0.6 96672 username aminvpn 96672 mac 96672 bytes_out 0 96672 bytes_in 0 96672 station_ip 5.120.108.200 96672 port 2 96672 unique_id port 96672 remote_ip 10.8.0.6 96679 username asadi 96679 mac 96679 bytes_out 0 96679 bytes_in 0 96679 station_ip 37.129.106.86 96679 port 2 96679 unique_id port 96679 remote_ip 10.8.0.50 96682 username aminvpn 96682 mac 96682 bytes_out 0 96682 bytes_in 0 96682 station_ip 5.120.108.200 96682 port 2 96682 unique_id port 96682 remote_ip 10.8.0.6 96683 username aminvpn 96683 mac 96683 bytes_out 0 96683 bytes_in 0 96683 station_ip 5.120.108.200 96683 port 4 96683 unique_id port 96683 remote_ip 10.8.1.26 96686 username aminvpn 96686 mac 96686 bytes_out 0 96686 bytes_in 0 96686 station_ip 5.120.108.200 96686 port 2 96686 unique_id port 96686 remote_ip 10.8.0.6 96690 username aminvpn 96690 mac 96690 bytes_out 0 96690 bytes_in 0 96690 station_ip 5.120.108.200 96690 port 2 96690 unique_id port 96690 remote_ip 10.8.0.6 96694 username aminvpn 96694 mac 96694 bytes_out 0 96694 bytes_in 0 96646 port 1 96646 unique_id port 96647 username aminvpn 96647 mac 96647 bytes_out 0 96647 bytes_in 0 96647 station_ip 5.120.108.200 96647 port 2 96647 unique_id port 96647 remote_ip 10.8.0.6 96650 username aminvpn 96650 mac 96650 bytes_out 0 96650 bytes_in 0 96650 station_ip 5.120.108.200 96650 port 2 96650 unique_id port 96650 remote_ip 10.8.0.6 96655 username mirzaei 96655 kill_reason Another user logged on this global unique id 96655 mac 96655 bytes_out 0 96655 bytes_in 0 96655 station_ip 5.119.107.36 96655 port 1 96655 unique_id port 96659 username majid 96659 unique_id port 96659 terminate_cause User-Request 96659 bytes_out 0 96659 bytes_in 0 96659 station_ip 86.57.108.151 96659 port 15728880 96659 nas_port_type Virtual 96659 remote_ip 5.5.5.219 96663 username majid 96663 unique_id port 96663 terminate_cause User-Request 96663 bytes_out 0 96663 bytes_in 0 96663 station_ip 86.57.108.151 96663 port 15728881 96663 nas_port_type Virtual 96663 remote_ip 5.5.5.219 96666 username majid 96666 unique_id port 96666 terminate_cause User-Request 96666 bytes_out 0 96666 bytes_in 0 96666 station_ip 113.203.106.79 96666 port 15728884 96666 nas_port_type Virtual 96666 remote_ip 5.5.5.218 96668 username aminvpn 96668 mac 96668 bytes_out 0 96668 bytes_in 0 96668 station_ip 5.120.108.200 96668 port 2 96668 unique_id port 96668 remote_ip 10.8.0.6 96669 username aminvpn 96669 mac 96669 bytes_out 0 96669 bytes_in 0 96669 station_ip 5.120.108.200 96669 port 2 96669 unique_id port 96669 remote_ip 10.8.0.6 96675 username aminvpn 96675 mac 96675 bytes_out 0 96675 bytes_in 0 96675 station_ip 5.120.108.200 96675 port 2 96675 unique_id port 96675 remote_ip 10.8.0.6 96680 username aminvpn 96680 mac 96680 bytes_out 0 96680 bytes_in 0 96680 station_ip 5.120.108.200 96680 port 2 96680 unique_id port 96680 remote_ip 10.8.0.6 96681 username aminvpn 96681 mac 96681 bytes_out 0 96681 bytes_in 0 96681 station_ip 5.120.108.200 96681 port 2 96681 unique_id port 96681 remote_ip 10.8.0.6 96684 username askari 96684 kill_reason Another user logged on this global unique id 96684 mac 96684 bytes_out 0 96684 bytes_in 0 96684 station_ip 5.119.203.78 96684 port 3 96684 unique_id port 96684 remote_ip 10.8.1.30 96685 username aminvpn 96685 mac 96685 bytes_out 0 96685 bytes_in 0 96685 station_ip 5.120.108.200 96685 port 4 96685 unique_id port 96685 remote_ip 10.8.1.26 96687 username askari 96687 mac 96687 bytes_out 0 96687 bytes_in 0 96687 station_ip 5.119.203.78 96687 port 3 96687 unique_id port 96688 username aminvpn 96688 mac 96688 bytes_out 0 96688 bytes_in 0 96688 station_ip 5.120.108.200 96688 port 2 96688 unique_id port 96688 remote_ip 10.8.0.6 96689 username aminvpn 96689 mac 96689 bytes_out 0 96689 bytes_in 0 96689 station_ip 5.120.108.200 96689 port 2 96689 unique_id port 96689 remote_ip 10.8.0.6 96693 username aminvpn 96693 mac 96693 bytes_out 0 96693 bytes_in 0 96693 station_ip 5.120.108.200 96693 port 2 96693 unique_id port 96693 remote_ip 10.8.0.6 96695 username aminvpn 96695 mac 96695 bytes_out 0 96695 bytes_in 0 96695 station_ip 5.120.108.200 96695 port 2 96695 unique_id port 96695 remote_ip 10.8.0.6 96701 username aminvpn 96701 mac 96701 bytes_out 1422320 96701 bytes_in 2794420 96701 station_ip 5.120.108.200 96701 port 2 96674 mac 96674 bytes_out 0 96674 bytes_in 0 96674 station_ip 5.120.108.200 96674 port 2 96674 unique_id port 96674 remote_ip 10.8.0.6 96676 username mirzaei 96676 kill_reason Another user logged on this global unique id 96676 mac 96676 bytes_out 0 96676 bytes_in 0 96676 station_ip 5.119.107.36 96676 port 1 96676 unique_id port 96677 username aminvpn 96677 mac 96677 bytes_out 0 96677 bytes_in 0 96677 station_ip 5.120.108.200 96677 port 2 96677 unique_id port 96677 remote_ip 10.8.0.6 96678 username aminvpn 96678 mac 96678 bytes_out 0 96678 bytes_in 0 96678 station_ip 5.120.108.200 96678 port 2 96678 unique_id port 96678 remote_ip 10.8.0.6 96691 username aminvpn 96691 mac 96691 bytes_out 0 96691 bytes_in 0 96691 station_ip 5.120.108.200 96691 port 2 96691 unique_id port 96691 remote_ip 10.8.0.6 96692 username aminvpn 96692 mac 96692 bytes_out 0 96692 bytes_in 0 96692 station_ip 5.120.108.200 96692 port 2 96692 unique_id port 96692 remote_ip 10.8.0.6 96700 username aminvpn 96700 mac 96700 bytes_out 0 96700 bytes_in 0 96700 station_ip 5.120.108.200 96700 port 2 96700 unique_id port 96700 remote_ip 10.8.0.6 96703 username alinezhad 96703 unique_id port 96703 terminate_cause User-Request 96703 bytes_out 0 96703 bytes_in 0 96703 station_ip 5.202.4.170 96703 port 15728886 96703 nas_port_type Virtual 96703 remote_ip 5.5.5.216 96706 username aminvpn 96706 mac 96706 bytes_out 0 96706 bytes_in 0 96706 station_ip 5.120.108.200 96706 port 4 96706 unique_id port 96706 remote_ip 10.8.0.6 96710 username aminvpn 96710 mac 96710 bytes_out 0 96710 bytes_in 0 96710 station_ip 5.120.108.200 96710 port 2 96710 unique_id port 96710 remote_ip 10.8.0.6 96711 username alireza1 96711 unique_id port 96711 terminate_cause User-Request 96711 bytes_out 0 96711 bytes_in 0 96711 station_ip 5.119.102.253 96711 port 15728887 96711 nas_port_type Virtual 96711 remote_ip 5.5.5.233 96715 username aminvpn 96715 mac 96715 bytes_out 0 96715 bytes_in 0 96715 station_ip 37.129.20.129 96715 port 2 96715 unique_id port 96715 remote_ip 10.8.0.6 96723 username aminvpn 96723 mac 96723 bytes_out 0 96723 bytes_in 0 96723 station_ip 5.120.108.200 96723 port 6 96723 unique_id port 96723 remote_ip 10.8.0.6 96726 username mahdiyehalizadeh 96726 kill_reason Another user logged on this global unique id 96726 mac 96726 bytes_out 0 96726 bytes_in 0 96726 station_ip 83.122.246.119 96726 port 6 96726 unique_id port 96726 remote_ip 10.8.0.42 96728 username aminvpn 96728 mac 96728 bytes_out 0 96728 bytes_in 0 96728 station_ip 5.120.108.200 96728 port 8 96728 unique_id port 96728 remote_ip 10.8.0.6 96752 username madadi2 96752 mac 96752 bytes_out 0 96752 bytes_in 0 96752 station_ip 5.119.83.119 96752 port 2 96752 unique_id port 96752 remote_ip 10.8.0.26 96755 username amir 96755 mac 96755 bytes_out 0 96755 bytes_in 0 96755 station_ip 46.225.213.102 96755 port 3 96755 unique_id port 96755 remote_ip 10.8.1.34 96758 username aminvpn 96758 mac 96758 bytes_out 0 96758 bytes_in 0 96758 station_ip 5.120.108.200 96758 port 3 96758 unique_id port 96758 remote_ip 10.8.1.26 96759 username amir 96759 mac 96759 bytes_out 0 96759 bytes_in 0 96759 station_ip 46.225.213.102 96759 port 5 96759 unique_id port 96759 remote_ip 10.8.0.54 96763 username alirr 96694 station_ip 5.120.108.200 96694 port 2 96694 unique_id port 96694 remote_ip 10.8.0.6 96696 username aminvpn 96696 mac 96696 bytes_out 0 96696 bytes_in 0 96696 station_ip 5.120.108.200 96696 port 2 96696 unique_id port 96696 remote_ip 10.8.0.6 96697 username aminvpn 96697 mac 96697 bytes_out 0 96697 bytes_in 0 96697 station_ip 5.120.108.200 96697 port 2 96697 unique_id port 96697 remote_ip 10.8.0.6 96698 username aminvpn 96698 mac 96698 bytes_out 0 96698 bytes_in 0 96698 station_ip 5.120.108.200 96698 port 2 96698 unique_id port 96698 remote_ip 10.8.0.6 96699 username aminvpn 96699 mac 96699 bytes_out 0 96699 bytes_in 0 96699 station_ip 5.120.108.200 96699 port 2 96699 unique_id port 96699 remote_ip 10.8.0.6 96702 username ahmadi 96702 unique_id port 96702 terminate_cause User-Request 96702 bytes_out 38954 96702 bytes_in 141901 96702 station_ip 113.203.49.169 96702 port 15728885 96702 nas_port_type Virtual 96702 remote_ip 5.5.5.217 96716 username aminvpn 96716 mac 96716 bytes_out 0 96716 bytes_in 0 96716 station_ip 5.120.108.200 96716 port 4 96716 unique_id port 96716 remote_ip 10.8.0.6 96717 username aminvpn 96717 mac 96717 bytes_out 0 96717 bytes_in 0 96717 station_ip 5.120.108.200 96717 port 4 96717 unique_id port 96717 remote_ip 10.8.0.6 96718 username aminvpn 96718 mac 96718 bytes_out 0 96718 bytes_in 0 96718 station_ip 5.120.108.200 96718 port 4 96718 unique_id port 96718 remote_ip 10.8.0.6 96719 username aminvpn 96719 mac 96719 bytes_out 113245 96719 bytes_in 314935 96719 station_ip 37.129.20.129 96719 port 5 96719 unique_id port 96719 remote_ip 10.8.0.6 96721 username aminvpn 96721 mac 96721 bytes_out 0 96721 bytes_in 0 96721 station_ip 5.120.108.200 96721 port 4 96721 unique_id port 96721 remote_ip 10.8.0.6 96722 username aminvpn 96722 mac 96722 bytes_out 0 96722 bytes_in 0 96722 station_ip 37.129.20.129 96722 port 4 96722 unique_id port 96722 remote_ip 10.8.0.6 96724 username askari 96724 mac 96724 bytes_out 0 96724 bytes_in 0 96724 station_ip 5.119.237.156 96724 port 3 96724 unique_id port 96724 remote_ip 10.8.1.30 96725 username mohammadmahdi 96725 mac 96725 bytes_out 265951 96725 bytes_in 725702 96725 station_ip 5.120.65.199 96725 port 5 96725 unique_id port 96725 remote_ip 10.8.0.34 96730 username aminvpn 96730 mac 96730 bytes_out 0 96730 bytes_in 0 96730 station_ip 5.120.108.200 96730 port 4 96730 unique_id port 96730 remote_ip 10.8.0.6 96732 username aminvpn 96732 mac 96732 bytes_out 0 96732 bytes_in 0 96732 station_ip 37.129.20.129 96732 port 4 96732 unique_id port 96732 remote_ip 10.8.0.6 96736 username madadi2 96736 mac 96736 bytes_out 1004666 96736 bytes_in 1931447 96736 station_ip 5.119.152.123 96736 port 2 96736 unique_id port 96736 remote_ip 10.8.0.26 96737 username askari 96737 kill_reason Another user logged on this global unique id 96737 mac 96737 bytes_out 0 96737 bytes_in 0 96737 station_ip 5.119.237.156 96737 port 7 96737 unique_id port 96738 username mohammadmahdi 96738 mac 96738 bytes_out 0 96738 bytes_in 0 96738 station_ip 5.120.65.199 96738 port 5 96738 unique_id port 96739 username aminvpn 96739 mac 96739 bytes_out 0 96739 bytes_in 0 96739 station_ip 5.120.108.200 96739 port 3 96739 unique_id port 96739 remote_ip 10.8.1.26 96701 unique_id port 96701 remote_ip 10.8.0.6 96704 username aminvpn 96704 mac 96704 bytes_out 0 96704 bytes_in 0 96704 station_ip 5.120.108.200 96704 port 2 96704 unique_id port 96704 remote_ip 10.8.0.6 96705 username aminvpn 96705 mac 96705 bytes_out 315951 96705 bytes_in 872751 96705 station_ip 37.129.20.129 96705 port 2 96705 unique_id port 96705 remote_ip 10.8.0.6 96707 username aminvpn 96707 mac 96707 bytes_out 0 96707 bytes_in 0 96707 station_ip 5.120.108.200 96707 port 2 96707 unique_id port 96707 remote_ip 10.8.0.6 96708 username aminvpn 96708 mac 96708 bytes_out 0 96708 bytes_in 0 96708 station_ip 5.120.108.200 96708 port 2 96708 unique_id port 96708 remote_ip 10.8.0.6 96709 username aminvpn 96709 mac 96709 bytes_out 90719 96709 bytes_in 110673 96709 station_ip 37.129.20.129 96709 port 4 96709 unique_id port 96709 remote_ip 10.8.0.6 96712 username aminvpn 96712 mac 96712 bytes_out 0 96712 bytes_in 0 96712 station_ip 37.129.20.129 96712 port 2 96712 unique_id port 96712 remote_ip 10.8.0.6 96713 username aminvpn 96713 mac 96713 bytes_out 0 96713 bytes_in 0 96713 station_ip 5.120.108.200 96713 port 4 96713 unique_id port 96713 remote_ip 10.8.0.6 96714 username mahbobeh 96714 unique_id port 96714 terminate_cause Lost-Carrier 96714 bytes_out 5996383 96714 bytes_in 50875934 96714 station_ip 83.122.125.233 96714 port 15728878 96714 nas_port_type Virtual 96714 remote_ip 5.5.5.221 96720 username aminvpn 96720 mac 96720 bytes_out 0 96720 bytes_in 0 96720 station_ip 5.120.108.200 96720 port 4 96720 unique_id port 96720 remote_ip 10.8.0.6 96727 username aminvpn 96727 mac 96727 bytes_out 267154 96727 bytes_in 552462 96727 station_ip 37.129.20.129 96727 port 4 96727 unique_id port 96727 remote_ip 10.8.0.6 96729 username aminvpn 96729 mac 96729 bytes_out 0 96729 bytes_in 0 96729 station_ip 5.120.108.200 96729 port 4 96729 unique_id port 96729 remote_ip 10.8.0.6 96731 username askari 96731 kill_reason Another user logged on this global unique id 96731 mac 96731 bytes_out 0 96731 bytes_in 0 96731 station_ip 5.119.237.156 96731 port 7 96731 unique_id port 96731 remote_ip 10.8.0.38 96733 username aminvpn 96733 mac 96733 bytes_out 0 96733 bytes_in 0 96733 station_ip 5.120.108.200 96733 port 8 96733 unique_id port 96733 remote_ip 10.8.0.6 96734 username mahdiyehalizadeh 96734 mac 96734 bytes_out 0 96734 bytes_in 0 96734 station_ip 83.122.246.119 96734 port 6 96734 unique_id port 96735 username mohammadmahdi 96735 kill_reason Another user logged on this global unique id 96735 mac 96735 bytes_out 0 96735 bytes_in 0 96735 station_ip 5.120.65.199 96735 port 5 96735 unique_id port 96735 remote_ip 10.8.0.34 96741 username askari 96741 kill_reason Another user logged on this global unique id 96741 mac 96741 bytes_out 0 96741 bytes_in 0 96741 station_ip 5.119.237.156 96741 port 7 96741 unique_id port 96744 username mohammadmahdi 96744 kill_reason Another user logged on this global unique id 96744 mac 96744 bytes_out 0 96744 bytes_in 0 96744 station_ip 5.120.65.199 96744 port 5 96744 unique_id port 96744 remote_ip 10.8.0.34 96751 username amir 96751 mac 96751 bytes_out 0 96751 bytes_in 0 96751 station_ip 37.129.127.117 96751 port 3 96751 unique_id port 96751 remote_ip 10.8.1.34 96756 username amir 96756 kill_reason Maximum check online fails reached 96756 mac 96756 bytes_out 0 96740 username aminvpn 96740 mac 96740 bytes_out 0 96740 bytes_in 0 96740 station_ip 5.120.108.200 96740 port 3 96740 unique_id port 96740 remote_ip 10.8.1.26 96742 username bcboard 96742 kill_reason Maximum check online fails reached 96742 unique_id port 96742 bytes_out 2114108 96742 bytes_in 13758705 96742 station_ip 37.129.153.55 96742 port 15728888 96742 nas_port_type Virtual 96742 remote_ip 5.5.5.215 96743 username aminvpn 96743 mac 96743 bytes_out 0 96743 bytes_in 0 96743 station_ip 5.120.108.200 96743 port 3 96743 unique_id port 96743 remote_ip 10.8.1.26 96745 username aminvpn 96745 mac 96745 bytes_out 2166851 96745 bytes_in 11830175 96745 station_ip 37.129.20.129 96745 port 4 96745 unique_id port 96745 remote_ip 10.8.0.6 96746 username amir 96746 kill_reason Another user logged on this global unique id 96746 mac 96746 bytes_out 0 96746 bytes_in 0 96746 station_ip 37.129.127.117 96746 port 2 96746 unique_id port 96746 remote_ip 10.8.0.54 96747 username aminvpn 96747 mac 96747 bytes_out 0 96747 bytes_in 0 96747 station_ip 5.120.108.200 96747 port 3 96747 unique_id port 96747 remote_ip 10.8.1.26 96748 username mohammadmahdi 96748 mac 96748 bytes_out 0 96748 bytes_in 0 96748 station_ip 5.120.65.199 96748 port 5 96748 unique_id port 96749 username amir 96749 mac 96749 bytes_out 0 96749 bytes_in 0 96749 station_ip 37.129.127.117 96749 port 2 96749 unique_id port 96750 username aminvpn 96750 mac 96750 bytes_out 0 96750 bytes_in 0 96750 station_ip 5.120.108.200 96750 port 4 96750 unique_id port 96750 remote_ip 10.8.1.26 96753 username aminvpn 96753 mac 96753 bytes_out 0 96753 bytes_in 0 96753 station_ip 5.120.108.200 96753 port 3 96753 unique_id port 96753 remote_ip 10.8.1.26 96754 username amir 96754 mac 96754 bytes_out 0 96754 bytes_in 0 96754 station_ip 46.225.213.102 96754 port 4 96754 unique_id port 96754 remote_ip 10.8.0.54 96757 username aminvpn 96757 mac 96757 bytes_out 0 96757 bytes_in 0 96757 station_ip 5.120.108.200 96757 port 3 96757 unique_id port 96757 remote_ip 10.8.1.26 96762 username askari 96762 mac 96762 bytes_out 386059 96762 bytes_in 5567853 96762 station_ip 5.119.237.156 96762 port 5 96762 unique_id port 96762 remote_ip 10.8.0.38 96766 username amir 96766 mac 96766 bytes_out 0 96766 bytes_in 0 96766 station_ip 46.225.213.102 96766 port 7 96766 unique_id port 96766 remote_ip 10.8.0.54 96768 username amir 96768 mac 96768 bytes_out 0 96768 bytes_in 0 96768 station_ip 46.225.213.102 96768 port 3 96768 unique_id port 96768 remote_ip 10.8.1.34 96771 username madadi2 96771 mac 96771 bytes_out 63292 96771 bytes_in 114875 96771 station_ip 5.119.223.113 96771 port 8 96771 unique_id port 96771 remote_ip 10.8.0.26 96776 username aminvpn 96776 mac 96776 bytes_out 0 96776 bytes_in 0 96776 station_ip 5.120.108.200 96776 port 8 96776 unique_id port 96776 remote_ip 10.8.0.6 96780 username madadi2 96780 mac 96780 bytes_out 93404 96780 bytes_in 125498 96780 station_ip 5.120.35.72 96780 port 8 96780 unique_id port 96780 remote_ip 10.8.0.26 96782 username aminvpn 96782 mac 96782 bytes_out 0 96782 bytes_in 0 96782 station_ip 5.120.108.200 96782 port 8 96782 unique_id port 96782 remote_ip 10.8.0.6 96789 username alihosseini 96789 mac 96789 bytes_out 4038469 96756 bytes_in 0 96756 station_ip 46.225.213.102 96756 port 4 96756 unique_id port 96760 username mohammadmahdi 96760 kill_reason Another user logged on this global unique id 96760 mac 96760 bytes_out 0 96760 bytes_in 0 96760 station_ip 5.120.65.199 96760 port 2 96760 unique_id port 96760 remote_ip 10.8.0.34 96761 username askari 96761 mac 96761 bytes_out 0 96761 bytes_in 0 96761 station_ip 5.119.237.156 96761 port 7 96761 unique_id port 96765 username amir 96765 mac 96765 bytes_out 0 96765 bytes_in 0 96765 station_ip 46.225.213.102 96765 port 7 96765 unique_id port 96765 remote_ip 10.8.0.54 96767 username amir 96767 mac 96767 bytes_out 0 96767 bytes_in 0 96767 station_ip 46.225.213.102 96767 port 7 96767 unique_id port 96767 remote_ip 10.8.0.54 96770 username aminvpn 96770 mac 96770 bytes_out 0 96770 bytes_in 0 96770 station_ip 5.120.108.200 96770 port 9 96770 unique_id port 96770 remote_ip 10.8.0.6 96772 username mohammadmahdi 96772 kill_reason Another user logged on this global unique id 96772 mac 96772 bytes_out 0 96772 bytes_in 0 96772 station_ip 5.120.65.199 96772 port 2 96772 unique_id port 96773 username amir 96773 mac 96773 bytes_out 0 96773 bytes_in 0 96773 station_ip 46.225.213.102 96773 port 3 96773 unique_id port 96773 remote_ip 10.8.1.34 96778 username amir 96778 mac 96778 bytes_out 0 96778 bytes_in 0 96778 station_ip 46.225.213.102 96778 port 9 96778 unique_id port 96778 remote_ip 10.8.0.54 96783 username mohammadmahdi 96783 mac 96783 bytes_out 0 96783 bytes_in 0 96783 station_ip 5.120.65.199 96783 port 2 96783 unique_id port 96784 username alihosseini 96784 mac 96784 bytes_out 0 96784 bytes_in 0 96784 station_ip 5.126.208.205 96784 port 9 96784 unique_id port 96784 remote_ip 10.8.0.14 96786 username alihosseini 96786 mac 96786 bytes_out 4034152 96786 bytes_in 42987084 96786 station_ip 5.126.208.205 96786 port 2 96786 unique_id port 96786 remote_ip 10.8.0.14 96788 username sadegh 96788 unique_id port 96788 terminate_cause Lost-Carrier 96788 bytes_out 25227593 96788 bytes_in 599734268 96788 station_ip 86.57.35.203 96788 port 15728891 96788 nas_port_type Virtual 96788 remote_ip 5.5.5.214 96799 username mirzaei 96799 kill_reason Another user logged on this global unique id 96799 mac 96799 bytes_out 0 96799 bytes_in 0 96799 station_ip 5.119.107.36 96799 port 1 96799 unique_id port 96801 username mohammadmahdi 96801 kill_reason Another user logged on this global unique id 96801 mac 96801 bytes_out 0 96801 bytes_in 0 96801 station_ip 5.120.65.199 96801 port 2 96801 unique_id port 96801 remote_ip 10.8.0.34 96804 username aminvpn 96804 mac 96804 bytes_out 0 96804 bytes_in 0 96804 station_ip 5.120.108.200 96804 port 3 96804 unique_id port 96804 remote_ip 10.8.1.26 96807 username aminvpn 96807 mac 96807 bytes_out 0 96807 bytes_in 0 96807 station_ip 5.120.108.200 96807 port 8 96807 unique_id port 96807 remote_ip 10.8.0.6 96808 username alihosseini 96808 mac 96808 bytes_out 0 96808 bytes_in 0 96808 station_ip 5.126.208.205 96808 port 8 96808 unique_id port 96808 remote_ip 10.8.0.14 96812 username aminvpn 96812 unique_id port 96812 terminate_cause Lost-Carrier 96812 bytes_out 1779406 96812 bytes_in 16904733 96812 station_ip 37.129.20.129 96812 port 15728894 96812 nas_port_type Virtual 96812 remote_ip 5.5.5.212 96815 username aminvpn 96815 mac 96815 bytes_out 0 96763 unique_id port 96763 terminate_cause User-Request 96763 bytes_out 4782028 96763 bytes_in 63756393 96763 station_ip 5.120.59.188 96763 port 15728892 96763 nas_port_type Virtual 96763 remote_ip 5.5.5.213 96764 username amir 96764 mac 96764 bytes_out 0 96764 bytes_in 0 96764 station_ip 46.225.213.102 96764 port 7 96764 unique_id port 96764 remote_ip 10.8.0.54 96769 username amir 96769 kill_reason Maximum check online fails reached 96769 mac 96769 bytes_out 0 96769 bytes_in 0 96769 station_ip 46.225.213.102 96769 port 7 96769 unique_id port 96774 username amir 96774 mac 96774 bytes_out 0 96774 bytes_in 0 96774 station_ip 46.225.213.102 96774 port 3 96774 unique_id port 96774 remote_ip 10.8.1.34 96775 username amir 96775 mac 96775 bytes_out 0 96775 bytes_in 0 96775 station_ip 46.225.213.102 96775 port 3 96775 unique_id port 96775 remote_ip 10.8.1.34 96777 username mohammadmahdi 96777 kill_reason Another user logged on this global unique id 96777 mac 96777 bytes_out 0 96777 bytes_in 0 96777 station_ip 5.120.65.199 96777 port 2 96777 unique_id port 96779 username alihosseini 96779 mac 96779 bytes_out 3914341 96779 bytes_in 40101527 96779 station_ip 5.126.208.205 96779 port 5 96779 unique_id port 96779 remote_ip 10.8.0.14 96781 username alihosseini 96781 mac 96781 bytes_out 0 96781 bytes_in 0 96781 station_ip 5.126.208.205 96781 port 5 96781 unique_id port 96781 remote_ip 10.8.0.14 96785 username madadi2 96785 mac 96785 bytes_out 4014125 96785 bytes_in 42962357 96785 station_ip 5.119.213.13 96785 port 2 96785 unique_id port 96785 remote_ip 10.8.0.26 96787 username aminvpn 96787 mac 96787 bytes_out 0 96787 bytes_in 0 96787 station_ip 5.120.108.200 96787 port 8 96787 unique_id port 96787 remote_ip 10.8.0.6 96791 username aminvpn 96791 mac 96791 bytes_out 0 96791 bytes_in 0 96791 station_ip 5.120.108.200 96791 port 2 96791 unique_id port 96791 remote_ip 10.8.0.6 96792 username amin.insta13 96792 kill_reason Wrong password 96792 unique_id port 96792 bytes_out 0 96792 bytes_in 0 96792 station_ip 5.233.60.121 96792 port 15728893 96792 nas_port_type Virtual 96795 username aminvpn 96795 mac 96795 bytes_out 0 96795 bytes_in 0 96795 station_ip 5.120.108.200 96795 port 2 96795 unique_id port 96795 remote_ip 10.8.0.6 96796 username aminvpn 96796 mac 96796 bytes_out 0 96796 bytes_in 0 96796 station_ip 5.120.108.200 96796 port 8 96796 unique_id port 96796 remote_ip 10.8.0.6 96797 username mohammadi 96797 mac 96797 bytes_out 0 96797 bytes_in 0 96797 station_ip 37.129.206.178 96797 port 9 96797 unique_id port 96797 remote_ip 10.8.0.58 96803 username aminvpn 96803 mac 96803 bytes_out 0 96803 bytes_in 0 96803 station_ip 5.120.108.200 96803 port 3 96803 unique_id port 96803 remote_ip 10.8.1.26 96809 username alihosseini 96809 mac 96809 bytes_out 0 96809 bytes_in 0 96809 station_ip 5.126.208.205 96809 port 8 96809 unique_id port 96809 remote_ip 10.8.0.14 96813 username alihosseini 96813 mac 96813 bytes_out 0 96813 bytes_in 0 96813 station_ip 5.126.208.205 96813 port 3 96813 unique_id port 96813 remote_ip 10.8.1.6 96818 username aminvpn 96818 mac 96818 bytes_out 0 96818 bytes_in 0 96818 station_ip 5.120.108.200 96818 port 8 96818 unique_id port 96818 remote_ip 10.8.0.6 96824 username alihosseini 96824 mac 96824 bytes_out 0 96789 bytes_in 42992087 96789 station_ip 5.126.208.205 96789 port 2 96789 unique_id port 96789 remote_ip 10.8.0.14 96790 username mehdizare 96790 kill_reason Another user logged on this global unique id 96790 mac 96790 bytes_out 0 96790 bytes_in 0 96790 station_ip 5.119.39.151 96790 port 2 96790 unique_id port 96790 remote_ip 10.8.1.22 96793 username aminvpn 96793 mac 96793 bytes_out 0 96793 bytes_in 0 96793 station_ip 5.120.108.200 96793 port 2 96793 unique_id port 96793 remote_ip 10.8.0.6 96794 username amir 96794 kill_reason Another user logged on this global unique id 96794 mac 96794 bytes_out 0 96794 bytes_in 0 96794 station_ip 46.225.213.102 96794 port 5 96794 unique_id port 96794 remote_ip 10.8.0.54 96798 username alihosseini 96798 kill_reason Another user logged on this global unique id 96798 mac 96798 bytes_out 0 96798 bytes_in 0 96798 station_ip 5.126.208.205 96798 port 3 96798 unique_id port 96798 remote_ip 10.8.1.6 96800 username alihosseini 96800 mac 96800 bytes_out 0 96800 bytes_in 0 96800 station_ip 5.126.208.205 96800 port 3 96800 unique_id port 96802 username alihosseini 96802 mac 96802 bytes_out 0 96802 bytes_in 0 96802 station_ip 5.126.208.205 96802 port 9 96802 unique_id port 96802 remote_ip 10.8.0.14 96805 username aminvpn 96805 mac 96805 bytes_out 0 96805 bytes_in 0 96805 station_ip 5.120.108.200 96805 port 3 96805 unique_id port 96805 remote_ip 10.8.1.26 96806 username aminvpn 96806 mac 96806 bytes_out 0 96806 bytes_in 0 96806 station_ip 37.129.20.129 96806 port 8 96806 unique_id port 96806 remote_ip 10.8.0.6 96810 username mohammadmahdi 96810 kill_reason Another user logged on this global unique id 96810 mac 96810 bytes_out 0 96810 bytes_in 0 96810 station_ip 5.120.65.199 96810 port 2 96810 unique_id port 96811 username alihosseini 96811 mac 96811 bytes_out 2769 96811 bytes_in 4723 96811 station_ip 5.126.208.205 96811 port 8 96811 unique_id port 96811 remote_ip 10.8.0.14 96814 username alihosseini 96814 mac 96814 bytes_out 0 96814 bytes_in 0 96814 station_ip 5.126.208.205 96814 port 8 96814 unique_id port 96814 remote_ip 10.8.0.14 96817 username aminvpn 96817 mac 96817 bytes_out 0 96817 bytes_in 0 96817 station_ip 5.120.108.200 96817 port 8 96817 unique_id port 96817 remote_ip 10.8.0.6 96821 username askari 96821 kill_reason Another user logged on this global unique id 96821 mac 96821 bytes_out 0 96821 bytes_in 0 96821 station_ip 5.119.237.156 96821 port 6 96821 unique_id port 96821 remote_ip 10.8.0.38 96822 username alihosseini 96822 mac 96822 bytes_out 205202 96822 bytes_in 955303 96822 station_ip 5.126.208.205 96822 port 3 96822 unique_id port 96822 remote_ip 10.8.1.6 96823 username alihosseini 96823 mac 96823 bytes_out 0 96823 bytes_in 0 96823 station_ip 5.126.208.205 96823 port 3 96823 unique_id port 96823 remote_ip 10.8.1.6 96825 username alihosseini 96825 mac 96825 bytes_out 0 96825 bytes_in 0 96825 station_ip 5.126.208.205 96825 port 3 96825 unique_id port 96825 remote_ip 10.8.1.6 96829 username mehdizare 96829 mac 96829 bytes_out 0 96829 bytes_in 0 96829 station_ip 5.119.39.151 96829 port 2 96829 unique_id port 96830 username mohammadmahdi 96830 mac 96830 bytes_out 21606 96830 bytes_in 252207 96830 station_ip 5.120.40.188 96830 port 9 96830 unique_id port 96830 remote_ip 10.8.0.34 96833 username aminvpn 96833 mac 96815 bytes_in 0 96815 station_ip 5.120.108.200 96815 port 9 96815 unique_id port 96815 remote_ip 10.8.0.6 96816 username aminvpn 96816 mac 96816 bytes_out 0 96816 bytes_in 0 96816 station_ip 5.120.108.200 96816 port 8 96816 unique_id port 96816 remote_ip 10.8.0.6 96819 username aminvpn 96819 mac 96819 bytes_out 0 96819 bytes_in 0 96819 station_ip 5.120.108.200 96819 port 8 96819 unique_id port 96819 remote_ip 10.8.0.6 96820 username aminvpn 96820 mac 96820 bytes_out 0 96820 bytes_in 0 96820 station_ip 5.120.108.200 96820 port 8 96820 unique_id port 96820 remote_ip 10.8.0.6 96827 username mahdiyehalizadeh 96827 mac 96827 bytes_out 0 96827 bytes_in 0 96827 station_ip 83.123.44.233 96827 port 8 96827 unique_id port 96827 remote_ip 10.8.0.42 96828 username alihosseini 96828 mac 96828 bytes_out 0 96828 bytes_in 0 96828 station_ip 5.126.208.205 96828 port 3 96828 unique_id port 96828 remote_ip 10.8.1.6 96831 username alihosseini 96831 mac 96831 bytes_out 0 96831 bytes_in 0 96831 station_ip 5.126.208.205 96831 port 2 96831 unique_id port 96831 remote_ip 10.8.0.14 96832 username aminvpn 96832 mac 96832 bytes_out 0 96832 bytes_in 0 96832 station_ip 113.203.8.123 96832 port 8 96832 unique_id port 96832 remote_ip 10.8.0.6 96841 username aminvpn 96841 mac 96841 bytes_out 0 96841 bytes_in 0 96841 station_ip 5.120.108.200 96841 port 2 96841 unique_id port 96841 remote_ip 10.8.0.6 96844 username aminvpn 96844 mac 96844 bytes_out 0 96844 bytes_in 0 96844 station_ip 5.120.108.200 96844 port 2 96844 unique_id port 96844 remote_ip 10.8.0.6 96845 username aminvpn 96845 mac 96845 bytes_out 0 96845 bytes_in 0 96845 station_ip 5.120.108.200 96845 port 2 96845 unique_id port 96845 remote_ip 10.8.0.6 96851 username amir 96851 mac 96851 bytes_out 0 96851 bytes_in 0 96851 station_ip 46.225.213.102 96851 port 4 96851 unique_id port 96851 remote_ip 10.8.1.34 96852 username aminvpn 96852 mac 96852 bytes_out 0 96852 bytes_in 0 96852 station_ip 5.120.108.200 96852 port 2 96852 unique_id port 96852 remote_ip 10.8.0.6 96855 username amir 96855 mac 96855 bytes_out 3169949 96855 bytes_in 649280 96855 station_ip 46.225.213.102 96855 port 4 96855 unique_id port 96855 remote_ip 10.8.1.34 96858 username madadi2 96858 mac 96858 bytes_out 0 96858 bytes_in 0 96858 station_ip 5.119.240.181 96858 port 2 96858 unique_id port 96858 remote_ip 10.8.0.26 96859 username amir 96859 kill_reason Maximum check online fails reached 96859 mac 96859 bytes_out 0 96859 bytes_in 0 96859 station_ip 46.225.213.102 96859 port 5 96859 unique_id port 96860 username alihosseini 96860 mac 96860 bytes_out 0 96860 bytes_in 0 96860 station_ip 5.126.208.205 96860 port 3 96860 unique_id port 96860 remote_ip 10.8.1.6 96864 username aminvpn 96864 mac 96864 bytes_out 0 96864 bytes_in 0 96864 station_ip 5.120.108.200 96864 port 6 96864 unique_id port 96864 remote_ip 10.8.0.6 96865 username amir 96865 mac 96865 bytes_out 0 96865 bytes_in 0 96865 station_ip 46.225.213.102 96865 port 3 96865 unique_id port 96865 remote_ip 10.8.1.34 96867 username mahdiyehalizadeh 96867 mac 96867 bytes_out 0 96867 bytes_in 0 96867 station_ip 83.123.133.117 96867 port 2 96867 unique_id port 96867 remote_ip 10.8.0.42 96824 bytes_in 0 96824 station_ip 5.126.208.205 96824 port 3 96824 unique_id port 96824 remote_ip 10.8.1.6 96826 username aminvpn 96826 mac 96826 bytes_out 0 96826 bytes_in 0 96826 station_ip 5.120.108.200 96826 port 9 96826 unique_id port 96826 remote_ip 10.8.0.6 96834 username aminvpn 96834 mac 96834 bytes_out 0 96834 bytes_in 0 96834 station_ip 5.120.108.200 96834 port 2 96834 unique_id port 96834 remote_ip 10.8.0.6 96835 username aminvpn 96835 mac 96835 bytes_out 0 96835 bytes_in 0 96835 station_ip 5.120.108.200 96835 port 2 96835 unique_id port 96835 remote_ip 10.8.0.6 96837 username alihosseini 96837 mac 96837 bytes_out 0 96837 bytes_in 0 96837 station_ip 5.126.208.205 96837 port 3 96837 unique_id port 96837 remote_ip 10.8.1.6 96840 username aminvpn 96840 mac 96840 bytes_out 0 96840 bytes_in 0 96840 station_ip 113.203.8.123 96840 port 8 96840 unique_id port 96840 remote_ip 10.8.0.6 96843 username aminvpn 96843 mac 96843 bytes_out 0 96843 bytes_in 0 96843 station_ip 5.120.108.200 96843 port 2 96843 unique_id port 96843 remote_ip 10.8.0.6 96847 username amir 96847 mac 96847 bytes_out 0 96847 bytes_in 0 96847 station_ip 46.225.213.102 96847 port 5 96847 unique_id port 96848 username amir 96848 mac 96848 bytes_out 0 96848 bytes_in 0 96848 station_ip 46.225.213.102 96848 port 2 96848 unique_id port 96848 remote_ip 10.8.0.54 96849 username amir 96849 mac 96849 bytes_out 0 96849 bytes_in 0 96849 station_ip 46.225.213.102 96849 port 4 96849 unique_id port 96849 remote_ip 10.8.1.34 96850 username askari 96850 mac 96850 bytes_out 0 96850 bytes_in 0 96850 station_ip 5.119.237.156 96850 port 6 96850 unique_id port 96854 username amir 96854 mac 96854 bytes_out 0 96854 bytes_in 0 96854 station_ip 46.225.213.102 96854 port 4 96854 unique_id port 96854 remote_ip 10.8.1.34 96856 username aminvpn 96856 mac 96856 bytes_out 0 96856 bytes_in 0 96856 station_ip 5.120.108.200 96856 port 5 96856 unique_id port 96856 remote_ip 10.8.0.6 96857 username amir 96857 mac 96857 bytes_out 0 96857 bytes_in 0 96857 station_ip 46.225.213.102 96857 port 5 96857 unique_id port 96857 remote_ip 10.8.0.54 96861 username aminvpn 96861 mac 96861 bytes_out 0 96861 bytes_in 0 96861 station_ip 5.120.108.200 96861 port 2 96861 unique_id port 96861 remote_ip 10.8.0.6 96862 username aminvpn 96862 mac 96862 bytes_out 4682524 96862 bytes_in 49988423 96862 station_ip 5.120.108.200 96862 port 2 96862 unique_id port 96862 remote_ip 10.8.0.6 96866 username amir 96866 mac 96866 bytes_out 0 96866 bytes_in 0 96866 station_ip 46.225.213.102 96866 port 6 96866 unique_id port 96866 remote_ip 10.8.0.54 96871 username aminvpn 96871 mac 96871 bytes_out 0 96871 bytes_in 0 96871 station_ip 5.120.108.200 96871 port 2 96871 unique_id port 96871 remote_ip 10.8.0.6 96873 username amir 96873 mac 96873 bytes_out 0 96873 bytes_in 0 96873 station_ip 46.225.213.102 96873 port 2 96873 unique_id port 96873 remote_ip 10.8.0.54 96874 username amir 96874 mac 96874 bytes_out 0 96874 bytes_in 0 96874 station_ip 46.225.213.102 96874 port 2 96874 unique_id port 96874 remote_ip 10.8.0.54 96879 username amir 96879 mac 96879 bytes_out 0 96879 bytes_in 0 96833 bytes_out 0 96833 bytes_in 0 96833 station_ip 5.120.108.200 96833 port 2 96833 unique_id port 96833 remote_ip 10.8.0.6 96836 username alihosseini 96836 mac 96836 bytes_out 0 96836 bytes_in 0 96836 station_ip 5.126.208.205 96836 port 2 96836 unique_id port 96836 remote_ip 10.8.0.14 96838 username alihosseini 96838 mac 96838 bytes_out 0 96838 bytes_in 0 96838 station_ip 5.126.208.205 96838 port 2 96838 unique_id port 96838 remote_ip 10.8.0.14 96839 username alihosseini 96839 mac 96839 bytes_out 0 96839 bytes_in 0 96839 station_ip 5.126.208.205 96839 port 3 96839 unique_id port 96839 remote_ip 10.8.1.6 96842 username aminvpn 96842 mac 96842 bytes_out 0 96842 bytes_in 0 96842 station_ip 5.120.108.200 96842 port 2 96842 unique_id port 96842 remote_ip 10.8.0.6 96846 username aminvpn 96846 mac 96846 bytes_out 0 96846 bytes_in 0 96846 station_ip 5.120.108.200 96846 port 2 96846 unique_id port 96846 remote_ip 10.8.0.6 96853 username aminvpn 96853 mac 96853 bytes_out 0 96853 bytes_in 0 96853 station_ip 5.120.108.200 96853 port 2 96853 unique_id port 96853 remote_ip 10.8.0.6 96863 username amir 96863 mac 96863 bytes_out 0 96863 bytes_in 0 96863 station_ip 46.225.213.102 96863 port 3 96863 unique_id port 96863 remote_ip 10.8.1.34 96870 username aminvpn 96870 mac 96870 bytes_out 0 96870 bytes_in 0 96870 station_ip 5.120.108.200 96870 port 2 96870 unique_id port 96870 remote_ip 10.8.0.6 96878 username aminvpn 96878 mac 96878 bytes_out 0 96878 bytes_in 0 96878 station_ip 5.120.108.200 96878 port 6 96878 unique_id port 96878 remote_ip 10.8.0.6 96883 username amir 96883 mac 96883 bytes_out 0 96883 bytes_in 0 96883 station_ip 46.225.213.102 96883 port 2 96883 unique_id port 96883 remote_ip 10.8.0.54 96887 username amir 96887 mac 96887 bytes_out 0 96887 bytes_in 0 96887 station_ip 46.225.213.102 96887 port 6 96887 unique_id port 96887 remote_ip 10.8.0.54 96891 username aminvpn 96891 mac 96891 bytes_out 0 96891 bytes_in 0 96891 station_ip 5.120.108.200 96891 port 6 96891 unique_id port 96891 remote_ip 10.8.0.6 96895 username aminvpn 96895 mac 96895 bytes_out 0 96895 bytes_in 0 96895 station_ip 5.120.108.200 96895 port 8 96895 unique_id port 96895 remote_ip 10.8.0.6 96896 username aminvpn 96896 mac 96896 bytes_out 0 96896 bytes_in 0 96896 station_ip 5.120.108.200 96896 port 6 96896 unique_id port 96896 remote_ip 10.8.0.6 96900 username aminvpn 96900 mac 96900 bytes_out 0 96900 bytes_in 0 96900 station_ip 5.120.108.200 96900 port 3 96900 unique_id port 96900 remote_ip 10.8.1.26 96903 username amir 96903 mac 96903 bytes_out 0 96903 bytes_in 0 96903 station_ip 46.225.213.102 96903 port 4 96903 unique_id port 96903 remote_ip 10.8.1.34 96904 username amir 96904 mac 96904 bytes_out 0 96904 bytes_in 0 96904 station_ip 46.225.213.102 96904 port 4 96904 unique_id port 96904 remote_ip 10.8.1.34 96908 username askari 96908 mac 96908 bytes_out 0 96908 bytes_in 0 96908 station_ip 5.119.203.29 96908 port 2 96908 unique_id port 96911 username aminvpn 96911 mac 96911 bytes_out 0 96911 bytes_in 0 96911 station_ip 5.120.108.200 96911 port 4 96911 unique_id port 96911 remote_ip 10.8.1.26 96915 username madadi2 96915 mac 96868 username sadegh 96868 unique_id port 96868 terminate_cause Lost-Carrier 96868 bytes_out 12398507 96868 bytes_in 298703180 96868 station_ip 86.57.35.203 96868 port 15728895 96868 nas_port_type Virtual 96868 remote_ip 5.5.5.214 96869 username aminvpn 96869 mac 96869 bytes_out 4698553 96869 bytes_in 50007602 96869 station_ip 5.120.108.200 96869 port 2 96869 unique_id port 96869 remote_ip 10.8.0.6 96872 username aminvpn 96872 mac 96872 bytes_out 0 96872 bytes_in 0 96872 station_ip 5.120.108.200 96872 port 2 96872 unique_id port 96872 remote_ip 10.8.0.6 96875 username aminvpn 96875 mac 96875 bytes_out 0 96875 bytes_in 0 96875 station_ip 5.120.108.200 96875 port 2 96875 unique_id port 96875 remote_ip 10.8.0.6 96876 username amir 96876 mac 96876 bytes_out 4708838 96876 bytes_in 50018075 96876 station_ip 46.225.213.102 96876 port 2 96876 unique_id port 96876 remote_ip 10.8.0.54 96877 username amir 96877 mac 96877 bytes_out 0 96877 bytes_in 0 96877 station_ip 46.225.213.102 96877 port 3 96877 unique_id port 96877 remote_ip 10.8.1.34 96880 username askari 96880 mac 96880 bytes_out 4719881 96880 bytes_in 50031767 96880 station_ip 5.120.190.52 96880 port 2 96880 unique_id port 96880 remote_ip 10.8.0.38 96884 username amir 96884 mac 96884 bytes_out 4861257 96884 bytes_in 50102336 96884 station_ip 46.225.213.102 96884 port 2 96884 unique_id port 96884 remote_ip 10.8.0.54 96885 username aminvpn 96885 mac 96885 bytes_out 0 96885 bytes_in 0 96885 station_ip 5.120.108.200 96885 port 2 96885 unique_id port 96885 remote_ip 10.8.0.6 96890 username aminvpn 96890 mac 96890 bytes_out 0 96890 bytes_in 0 96890 station_ip 5.120.108.200 96890 port 6 96890 unique_id port 96890 remote_ip 10.8.0.6 96893 username aminvpn 96893 mac 96893 bytes_out 0 96893 bytes_in 0 96893 station_ip 113.203.8.123 96893 port 6 96893 unique_id port 96893 remote_ip 10.8.0.6 96897 username askari 96897 kill_reason Another user logged on this global unique id 96897 mac 96897 bytes_out 0 96897 bytes_in 0 96897 station_ip 5.119.203.29 96897 port 2 96897 unique_id port 96902 username askari 96902 kill_reason Another user logged on this global unique id 96902 mac 96902 bytes_out 0 96902 bytes_in 0 96902 station_ip 5.119.203.29 96902 port 2 96902 unique_id port 96906 username amir 96906 mac 96906 bytes_out 0 96906 bytes_in 0 96906 station_ip 46.225.213.102 96906 port 6 96906 unique_id port 96906 remote_ip 10.8.0.54 96907 username amir 96907 mac 96907 bytes_out 0 96907 bytes_in 0 96907 station_ip 46.225.213.102 96907 port 4 96907 unique_id port 96907 remote_ip 10.8.1.34 96909 username aminvpn 96909 mac 96909 bytes_out 0 96909 bytes_in 0 96909 station_ip 5.120.108.200 96909 port 4 96909 unique_id port 96909 remote_ip 10.8.1.26 96914 username aminvpn 96914 mac 96914 bytes_out 0 96914 bytes_in 0 96914 station_ip 5.120.108.200 96914 port 4 96914 unique_id port 96914 remote_ip 10.8.1.26 96917 username aminvpn 96917 mac 96917 bytes_out 0 96917 bytes_in 0 96917 station_ip 5.120.108.200 96917 port 6 96917 unique_id port 96917 remote_ip 10.8.0.6 96921 username alireza1 96921 unique_id port 96921 terminate_cause User-Request 96921 bytes_out 0 96921 bytes_in 0 96921 station_ip 5.119.102.253 96921 port 15728900 96921 nas_port_type Virtual 96921 remote_ip 5.5.5.233 96879 station_ip 46.225.213.102 96879 port 8 96879 unique_id port 96879 remote_ip 10.8.0.54 96881 username aminvpn 96881 mac 96881 bytes_out 0 96881 bytes_in 0 96881 station_ip 5.120.108.200 96881 port 2 96881 unique_id port 96881 remote_ip 10.8.0.6 96882 username amir 96882 mac 96882 bytes_out 0 96882 bytes_in 0 96882 station_ip 46.225.213.102 96882 port 3 96882 unique_id port 96882 remote_ip 10.8.1.34 96886 username amir 96886 mac 96886 bytes_out 0 96886 bytes_in 0 96886 station_ip 46.225.213.102 96886 port 2 96886 unique_id port 96886 remote_ip 10.8.0.54 96888 username amir 96888 mac 96888 bytes_out 0 96888 bytes_in 0 96888 station_ip 46.225.213.102 96888 port 3 96888 unique_id port 96888 remote_ip 10.8.1.34 96889 username aminvpn 96889 mac 96889 bytes_out 0 96889 bytes_in 0 96889 station_ip 5.120.108.200 96889 port 6 96889 unique_id port 96889 remote_ip 10.8.0.6 96892 username askari 96892 kill_reason Another user logged on this global unique id 96892 mac 96892 bytes_out 0 96892 bytes_in 0 96892 station_ip 5.119.203.29 96892 port 2 96892 unique_id port 96892 remote_ip 10.8.0.38 96894 username aminvpn 96894 mac 96894 bytes_out 0 96894 bytes_in 0 96894 station_ip 113.203.8.123 96894 port 6 96894 unique_id port 96894 remote_ip 10.8.0.6 96898 username askari 96898 kill_reason Another user logged on this global unique id 96898 mac 96898 bytes_out 0 96898 bytes_in 0 96898 station_ip 5.119.203.29 96898 port 2 96898 unique_id port 96899 username madadi2 96899 mac 96899 bytes_out 0 96899 bytes_in 0 96899 station_ip 5.119.85.69 96899 port 6 96899 unique_id port 96899 remote_ip 10.8.0.26 96901 username aminvpn 96901 mac 96901 bytes_out 0 96901 bytes_in 0 96901 station_ip 5.120.108.200 96901 port 3 96901 unique_id port 96901 remote_ip 10.8.1.26 96905 username aminvpn 96905 kill_reason Maximum check online fails reached 96905 mac 96905 bytes_out 0 96905 bytes_in 0 96905 station_ip 5.120.108.200 96905 port 3 96905 unique_id port 96910 username amir 96910 mac 96910 bytes_out 0 96910 bytes_in 0 96910 station_ip 46.225.213.102 96910 port 2 96910 unique_id port 96910 remote_ip 10.8.0.54 96912 username aminvpn 96912 mac 96912 bytes_out 0 96912 bytes_in 0 96912 station_ip 5.120.108.200 96912 port 4 96912 unique_id port 96912 remote_ip 10.8.1.26 96913 username aminvpn 96913 mac 96913 bytes_out 0 96913 bytes_in 0 96913 station_ip 5.120.108.200 96913 port 4 96913 unique_id port 96913 remote_ip 10.8.1.26 96916 username aminvpn 96916 mac 96916 bytes_out 0 96916 bytes_in 0 96916 station_ip 113.203.8.123 96916 port 8 96916 unique_id port 96916 remote_ip 10.8.0.6 96919 username hashtadani 96919 unique_id port 96919 terminate_cause User-Request 96919 bytes_out 279240 96919 bytes_in 3335064 96919 station_ip 5.202.23.246 96919 port 15728898 96919 nas_port_type Virtual 96919 remote_ip 5.5.5.210 96920 username alireza1 96920 unique_id port 96920 terminate_cause User-Request 96920 bytes_out 0 96920 bytes_in 0 96920 station_ip 5.119.102.253 96920 port 15728899 96920 nas_port_type Virtual 96920 remote_ip 5.5.5.233 96923 username aminvpn 96923 mac 96923 bytes_out 0 96923 bytes_in 0 96923 station_ip 5.120.108.200 96923 port 8 96923 unique_id port 96923 remote_ip 10.8.0.6 96925 username sadegh 96925 unique_id port 96925 terminate_cause Lost-Carrier 96915 bytes_out 0 96915 bytes_in 0 96915 station_ip 5.119.27.189 96915 port 6 96915 unique_id port 96915 remote_ip 10.8.0.26 96918 username madadi2 96918 mac 96918 bytes_out 0 96918 bytes_in 0 96918 station_ip 5.119.248.127 96918 port 9 96918 unique_id port 96918 remote_ip 10.8.0.26 96929 username sobhan 96929 unique_id port 96929 terminate_cause User-Request 96929 bytes_out 0 96929 bytes_in 0 96929 station_ip 46.100.222.72 96929 port 15728902 96929 nas_port_type Virtual 96929 remote_ip 5.5.5.209 96932 username amir 96932 mac 96932 bytes_out 0 96932 bytes_in 0 96932 station_ip 46.225.213.102 96932 port 6 96932 unique_id port 96932 remote_ip 10.8.0.54 96933 username sobhan 96933 unique_id port 96933 terminate_cause User-Request 96933 bytes_out 18 96933 bytes_in 52 96933 station_ip 46.100.222.72 96933 port 15728905 96933 nas_port_type Virtual 96933 remote_ip 5.5.5.209 96934 username sobhan 96934 unique_id port 96934 terminate_cause User-Request 96934 bytes_out 0 96934 bytes_in 0 96934 station_ip 46.100.222.72 96934 port 15728906 96934 nas_port_type Virtual 96934 remote_ip 5.5.5.209 96937 username sobhan 96937 unique_id port 96937 terminate_cause User-Request 96937 bytes_out 0 96937 bytes_in 0 96937 station_ip 5.119.47.10 96937 port 15728908 96937 nas_port_type Virtual 96937 remote_ip 5.5.5.208 96941 username sobhan 96941 unique_id port 96941 terminate_cause User-Request 96941 bytes_out 0 96941 bytes_in 0 96941 station_ip 5.119.47.10 96941 port 15728910 96941 nas_port_type Virtual 96941 remote_ip 5.5.5.208 96942 username amir 96942 mac 96942 bytes_out 10668540 96942 bytes_in 123665237 96942 station_ip 46.225.213.102 96942 port 2 96942 unique_id port 96942 remote_ip 10.8.0.54 96944 username amir 96944 mac 96944 bytes_out 0 96944 bytes_in 0 96944 station_ip 46.225.213.102 96944 port 6 96944 unique_id port 96944 remote_ip 10.8.0.54 96945 username madadi2 96945 kill_reason Another user logged on this global unique id 96945 mac 96945 bytes_out 0 96945 bytes_in 0 96945 station_ip 5.120.46.69 96945 port 2 96945 unique_id port 96945 remote_ip 10.8.0.26 96950 username amir 96950 mac 96950 bytes_out 0 96950 bytes_in 0 96950 station_ip 46.225.213.102 96950 port 6 96950 unique_id port 96950 remote_ip 10.8.0.54 96952 username khalili 96952 unique_id port 96952 terminate_cause User-Request 96952 bytes_out 18 96952 bytes_in 52 96952 station_ip 5.119.81.15 96952 port 15728911 96952 nas_port_type Virtual 96952 remote_ip 5.5.5.222 96953 username mehdizare 96953 mac 96953 bytes_out 497036 96953 bytes_in 4787387 96953 station_ip 5.119.39.151 96953 port 2 96953 unique_id port 96953 remote_ip 10.8.1.22 96956 username amir 96956 mac 96956 bytes_out 0 96956 bytes_in 0 96956 station_ip 46.225.213.102 96956 port 6 96956 unique_id port 96956 remote_ip 10.8.0.54 96962 username mirzaei 96962 kill_reason Another user logged on this global unique id 96962 mac 96962 bytes_out 0 96962 bytes_in 0 96962 station_ip 5.119.107.36 96962 port 1 96962 unique_id port 96963 username aminvpn 96963 mac 96963 bytes_out 4530 96963 bytes_in 5826 96963 station_ip 83.122.115.7 96963 port 4 96963 unique_id port 96963 remote_ip 10.8.1.26 96964 username madadi2 96964 mac 96964 bytes_out 0 96964 bytes_in 0 96964 station_ip 5.119.84.67 96964 port 2 96964 unique_id port 96964 remote_ip 10.8.0.26 96966 username aminvpn 96966 mac 96966 bytes_out 5246 96922 username aminvpn 96922 mac 96922 bytes_out 0 96922 bytes_in 0 96922 station_ip 113.203.8.123 96922 port 6 96922 unique_id port 96922 remote_ip 10.8.0.6 96924 username alireza1 96924 unique_id port 96924 terminate_cause User-Request 96924 bytes_out 0 96924 bytes_in 0 96924 station_ip 5.119.102.253 96924 port 15728901 96924 nas_port_type Virtual 96924 remote_ip 5.5.5.233 96926 username amir 96926 mac 96926 bytes_out 0 96926 bytes_in 0 96926 station_ip 46.225.213.102 96926 port 2 96926 unique_id port 96926 remote_ip 10.8.0.54 96930 username mahdiyehalizadeh 96930 mac 96930 bytes_out 0 96930 bytes_in 0 96930 station_ip 83.123.232.149 96930 port 2 96930 unique_id port 96930 remote_ip 10.8.0.42 96935 username mahdiyehalizadeh 96935 mac 96935 bytes_out 0 96935 bytes_in 0 96935 station_ip 83.123.232.149 96935 port 2 96935 unique_id port 96935 remote_ip 10.8.0.42 96936 username sobhan 96936 unique_id port 96936 terminate_cause User-Request 96936 bytes_out 0 96936 bytes_in 0 96936 station_ip 5.119.47.10 96936 port 15728907 96936 nas_port_type Virtual 96936 remote_ip 5.5.5.208 96939 username amir 96939 mac 96939 bytes_out 0 96939 bytes_in 0 96939 station_ip 46.225.213.102 96939 port 2 96939 unique_id port 96939 remote_ip 10.8.0.54 96940 username sobhan 96940 unique_id port 96940 terminate_cause User-Request 96940 bytes_out 0 96940 bytes_in 0 96940 station_ip 5.119.47.10 96940 port 15728909 96940 nas_port_type Virtual 96940 remote_ip 5.5.5.208 96948 username amir 96948 mac 96948 bytes_out 0 96948 bytes_in 0 96948 station_ip 46.225.213.102 96948 port 6 96948 unique_id port 96948 remote_ip 10.8.0.54 96951 username amir 96951 mac 96951 bytes_out 0 96951 bytes_in 0 96951 station_ip 46.225.213.102 96951 port 6 96951 unique_id port 96951 remote_ip 10.8.0.54 96955 username mirzaei 96955 kill_reason Another user logged on this global unique id 96955 mac 96955 bytes_out 0 96955 bytes_in 0 96955 station_ip 5.119.107.36 96955 port 1 96955 unique_id port 96958 username madadi2 96958 mac 96958 bytes_out 0 96958 bytes_in 0 96958 station_ip 5.120.86.167 96958 port 2 96958 unique_id port 96958 remote_ip 10.8.0.26 96959 username mammad 96959 unique_id port 96959 terminate_cause User-Request 96959 bytes_out 0 96959 bytes_in 0 96959 station_ip 46.100.223.6 96959 port 15728912 96959 nas_port_type Virtual 96959 remote_ip 5.5.5.207 96960 username madadi2 96960 mac 96960 bytes_out 0 96960 bytes_in 0 96960 station_ip 5.119.146.192 96960 port 2 96960 unique_id port 96960 remote_ip 10.8.0.26 96965 username aminvpn 96965 mac 96965 bytes_out 68193 96965 bytes_in 75533 96965 station_ip 83.122.115.7 96965 port 4 96965 unique_id port 96965 remote_ip 10.8.1.26 96968 username aminvpn 96968 mac 96968 bytes_out 0 96968 bytes_in 0 96968 station_ip 83.122.115.7 96968 port 9 96968 unique_id port 96968 remote_ip 10.8.0.6 96970 username aminvpn 96970 mac 96970 bytes_out 234111 96970 bytes_in 573120 96970 station_ip 37.129.20.129 96970 port 8 96970 unique_id port 96970 remote_ip 10.8.0.6 96971 username aminvpn 96971 unique_id port 96971 terminate_cause Lost-Carrier 96971 bytes_out 323119 96971 bytes_in 3015709 96971 station_ip 5.119.58.71 96971 port 15728913 96971 nas_port_type Virtual 96971 remote_ip 5.5.5.206 96980 username aminvpn 96980 mac 96980 bytes_out 0 96980 bytes_in 0 96980 station_ip 37.129.20.129 96925 bytes_out 37430793 96925 bytes_in 814316893 96925 station_ip 86.57.35.203 96925 port 15728896 96925 nas_port_type Virtual 96925 remote_ip 5.5.5.214 96927 username amir 96927 mac 96927 bytes_out 0 96927 bytes_in 0 96927 station_ip 46.225.213.102 96927 port 2 96927 unique_id port 96927 remote_ip 10.8.0.54 96928 username amir 96928 mac 96928 bytes_out 7030621 96928 bytes_in 76762431 96928 station_ip 46.225.213.102 96928 port 2 96928 unique_id port 96928 remote_ip 10.8.0.54 96931 username sobhan 96931 unique_id port 96931 terminate_cause User-Request 96931 bytes_out 0 96931 bytes_in 0 96931 station_ip 46.100.222.72 96931 port 15728903 96931 nas_port_type Virtual 96931 remote_ip 5.5.5.209 96938 username mehdizare 96938 kill_reason Another user logged on this global unique id 96938 mac 96938 bytes_out 0 96938 bytes_in 0 96938 station_ip 5.119.39.151 96938 port 2 96938 unique_id port 96943 username amir 96943 mac 96943 bytes_out 0 96943 bytes_in 0 96943 station_ip 46.225.213.102 96943 port 2 96943 unique_id port 96943 remote_ip 10.8.0.54 96946 username shahrooz 96946 unique_id port 96946 terminate_cause User-Request 96946 bytes_out 1257456 96946 bytes_in 16400708 96946 station_ip 83.122.165.61 96946 port 15728897 96946 nas_port_type Virtual 96946 remote_ip 5.5.5.211 96947 username amir 96947 mac 96947 bytes_out 0 96947 bytes_in 0 96947 station_ip 46.225.213.102 96947 port 6 96947 unique_id port 96947 remote_ip 10.8.0.54 96949 username mehdizare 96949 mac 96949 bytes_out 0 96949 bytes_in 0 96949 station_ip 5.119.39.151 96949 port 2 96949 unique_id port 96954 username amir 96954 mac 96954 bytes_out 0 96954 bytes_in 0 96954 station_ip 46.225.213.102 96954 port 2 96954 unique_id port 96954 remote_ip 10.8.0.54 96957 username madadi2 96957 mac 96957 bytes_out 0 96957 bytes_in 0 96957 station_ip 5.120.75.2 96957 port 2 96957 unique_id port 96957 remote_ip 10.8.0.26 96961 username aminvpn 96961 mac 96961 bytes_out 0 96961 bytes_in 0 96961 station_ip 83.122.115.7 96961 port 6 96961 unique_id port 96961 remote_ip 10.8.0.6 96969 username aminvpn 96969 mac 96969 bytes_out 9475 96969 bytes_in 10534 96969 station_ip 83.122.115.7 96969 port 8 96969 unique_id port 96969 remote_ip 10.8.0.6 96974 username aminvpn 96974 mac 96974 bytes_out 0 96974 bytes_in 0 96974 station_ip 37.129.20.129 96974 port 8 96974 unique_id port 96974 remote_ip 10.8.0.6 96976 username ahmadi 96976 unique_id port 96976 terminate_cause User-Request 96976 bytes_out 145251 96976 bytes_in 1251930 96976 station_ip 83.123.152.120 96976 port 15728914 96976 nas_port_type Virtual 96976 remote_ip 5.5.5.205 96978 username aminvpn 96978 mac 96978 bytes_out 0 96978 bytes_in 0 96978 station_ip 37.129.20.129 96978 port 6 96978 unique_id port 96978 remote_ip 10.8.0.6 96979 username aminvpn 96979 mac 96979 bytes_out 0 96979 bytes_in 0 96979 station_ip 37.129.20.129 96979 port 6 96979 unique_id port 96979 remote_ip 10.8.0.6 96981 username aminvpn 96981 mac 96981 bytes_out 0 96981 bytes_in 0 96981 station_ip 37.129.20.129 96981 port 6 96981 unique_id port 96981 remote_ip 10.8.0.6 96989 username aminvpn 96989 mac 96989 bytes_out 0 96989 bytes_in 0 96989 station_ip 37.129.20.129 96989 port 2 96989 unique_id port 96989 remote_ip 10.8.1.26 96991 username aminvpn 96991 mac 96966 bytes_in 14675 96966 station_ip 83.122.115.7 96966 port 2 96966 unique_id port 96966 remote_ip 10.8.1.26 96967 username alihosseini 96967 mac 96967 bytes_out 428169 96967 bytes_in 3163584 96967 station_ip 5.126.169.213 96967 port 8 96967 unique_id port 96967 remote_ip 10.8.0.14 96972 username mehdizare 96972 kill_reason Maximum check online fails reached 96972 mac 96972 bytes_out 0 96972 bytes_in 0 96972 station_ip 5.119.39.151 96972 port 6 96972 unique_id port 96972 remote_ip 10.8.0.22 96973 username aminvpn 96973 mac 96973 bytes_out 0 96973 bytes_in 0 96973 station_ip 37.129.20.129 96973 port 8 96973 unique_id port 96973 remote_ip 10.8.0.6 96975 username aminvpn 96975 mac 96975 bytes_out 0 96975 bytes_in 0 96975 station_ip 83.122.115.7 96975 port 2 96975 unique_id port 96975 remote_ip 10.8.1.26 96977 username aminvpn 96977 mac 96977 bytes_out 0 96977 bytes_in 0 96977 station_ip 37.129.20.129 96977 port 6 96977 unique_id port 96977 remote_ip 10.8.0.6 96983 username alirr 96983 kill_reason Maximum check online fails reached 96983 unique_id port 96983 bytes_out 894476 96983 bytes_in 16313400 96983 station_ip 5.119.67.20 96983 port 15728917 96983 nas_port_type Virtual 96983 remote_ip 5.5.5.204 96984 username aminvpn 96984 mac 96984 bytes_out 0 96984 bytes_in 0 96984 station_ip 37.129.20.129 96984 port 6 96984 unique_id port 96984 remote_ip 10.8.0.6 96985 username aminvpn 96985 mac 96985 bytes_out 0 96985 bytes_in 0 96985 station_ip 37.129.20.129 96985 port 6 96985 unique_id port 96985 remote_ip 10.8.0.6 96988 username aminvpn 96988 mac 96988 bytes_out 0 96988 bytes_in 0 96988 station_ip 37.129.20.129 96988 port 2 96988 unique_id port 96988 remote_ip 10.8.1.26 96990 username ahmadipour 96990 unique_id port 96990 terminate_cause User-Request 96990 bytes_out 1042706 96990 bytes_in 27956170 96990 station_ip 37.129.15.11 96990 port 15728918 96990 nas_port_type Virtual 96990 remote_ip 5.5.5.203 96992 username askari 96992 kill_reason Another user logged on this global unique id 96992 mac 96992 bytes_out 0 96992 bytes_in 0 96992 station_ip 5.120.15.119 96992 port 8 96992 unique_id port 97000 username alihosseini 97000 mac 97000 bytes_out 0 97000 bytes_in 0 97000 station_ip 5.126.182.219 97000 port 6 97000 unique_id port 97000 remote_ip 10.8.0.14 97003 username mahdixz 97003 unique_id port 97003 terminate_cause User-Request 97003 bytes_out 0 97003 bytes_in 0 97003 station_ip 5.119.206.252 97003 port 15728921 97003 nas_port_type Virtual 97003 remote_ip 5.5.5.201 97008 username bcboard 97008 unique_id port 97008 terminate_cause User-Request 97008 bytes_out 0 97008 bytes_in 0 97008 station_ip 37.129.196.142 97008 port 15728924 97008 nas_port_type Virtual 97008 remote_ip 5.5.5.200 97013 username aminvpn 97013 unique_id port 97013 terminate_cause User-Request 97013 bytes_out 0 97013 bytes_in 0 97013 station_ip 5.120.108.200 97013 port 15728929 97013 nas_port_type Virtual 97013 remote_ip 5.5.5.253 97016 username madadi2 97016 mac 97016 bytes_out 601642 97016 bytes_in 969273 97016 station_ip 5.120.149.138 97016 port 6 97016 unique_id port 97016 remote_ip 10.8.0.26 97018 username alihosseini 97018 kill_reason Another user logged on this global unique id 97018 mac 97018 bytes_out 0 97018 bytes_in 0 97018 station_ip 5.126.182.219 97018 port 8 97018 unique_id port 97018 remote_ip 10.8.0.14 97020 username mehdizare 97020 kill_reason Another user logged on this global unique id 96980 port 6 96980 unique_id port 96980 remote_ip 10.8.0.6 96982 username aminvpn 96982 mac 96982 bytes_out 0 96982 bytes_in 0 96982 station_ip 37.129.20.129 96982 port 6 96982 unique_id port 96982 remote_ip 10.8.0.6 96986 username askari 96986 kill_reason Another user logged on this global unique id 96986 mac 96986 bytes_out 0 96986 bytes_in 0 96986 station_ip 5.120.15.119 96986 port 8 96986 unique_id port 96986 remote_ip 10.8.0.38 96987 username mehdizare 96987 kill_reason Another user logged on this global unique id 96987 mac 96987 bytes_out 0 96987 bytes_in 0 96987 station_ip 5.119.39.151 96987 port 2 96987 unique_id port 96987 remote_ip 10.8.0.22 96994 username aminvpn 96994 mac 96994 bytes_out 0 96994 bytes_in 0 96994 station_ip 37.129.20.129 96994 port 6 96994 unique_id port 96994 remote_ip 10.8.0.6 96999 username alihosseini 96999 mac 96999 bytes_out 0 96999 bytes_in 0 96999 station_ip 5.126.182.219 96999 port 6 96999 unique_id port 96999 remote_ip 10.8.0.14 97001 username mahdixz 97001 unique_id port 97001 terminate_cause User-Request 97001 bytes_out 0 97001 bytes_in 0 97001 station_ip 151.235.103.250 97001 port 15728919 97001 nas_port_type Virtual 97001 remote_ip 5.5.5.202 97002 username mahdixz 97002 unique_id port 97002 terminate_cause User-Request 97002 bytes_out 0 97002 bytes_in 0 97002 station_ip 5.119.206.252 97002 port 15728920 97002 nas_port_type Virtual 97002 remote_ip 5.5.5.201 97005 username aminvpn 97005 mac 97005 bytes_out 0 97005 bytes_in 0 97005 station_ip 37.129.20.129 97005 port 6 97005 unique_id port 97005 remote_ip 10.8.0.6 97006 username mahdixz 97006 unique_id port 97006 terminate_cause User-Request 97006 bytes_out 0 97006 bytes_in 0 97006 station_ip 5.119.206.252 97006 port 15728923 97006 nas_port_type Virtual 97006 remote_ip 5.5.5.201 97010 username alihosseini 97010 mac 97010 bytes_out 24124 97010 bytes_in 54567 97010 station_ip 5.126.182.219 97010 port 8 97010 unique_id port 97010 remote_ip 10.8.0.14 97011 username mammad 97011 unique_id port 97011 terminate_cause User-Request 97011 bytes_out 0 97011 bytes_in 0 97011 station_ip 5.233.74.114 97011 port 15728926 97011 nas_port_type Virtual 97011 remote_ip 5.5.5.199 97012 username aminvpn 97012 unique_id port 97012 terminate_cause User-Request 97012 bytes_out 0 97012 bytes_in 0 97012 station_ip 5.120.108.200 97012 port 15728928 97012 nas_port_type Virtual 97012 remote_ip 5.5.5.253 97015 username hoorieh 97015 mac 97015 bytes_out 0 97015 bytes_in 0 97015 station_ip 5.120.70.222 97015 port 9 97015 unique_id port 97019 username alihosseini 97019 mac 97019 bytes_out 0 97019 bytes_in 0 97019 station_ip 5.126.182.219 97019 port 8 97019 unique_id port 97022 username asadi 97022 kill_reason Another user logged on this global unique id 97022 mac 97022 bytes_out 0 97022 bytes_in 0 97022 station_ip 113.203.15.205 97022 port 10 97022 unique_id port 97022 remote_ip 10.8.0.50 97026 username mahdixz 97026 unique_id port 97026 terminate_cause User-Request 97026 bytes_out 0 97026 bytes_in 0 97026 station_ip 151.235.103.250 97026 port 15728932 97026 nas_port_type Virtual 97026 remote_ip 5.5.5.202 97028 username asadi 97028 mac 97028 bytes_out 0 97028 bytes_in 0 97028 station_ip 113.203.15.205 97028 port 8 97028 unique_id port 97028 remote_ip 10.8.0.50 97031 username alinezhad 97031 unique_id port 97031 terminate_cause User-Request 97031 bytes_out 0 97031 bytes_in 0 96991 bytes_out 152117 96991 bytes_in 1415941 96991 station_ip 37.129.20.129 96991 port 6 96991 unique_id port 96991 remote_ip 10.8.0.6 96993 username askari 96993 mac 96993 bytes_out 0 96993 bytes_in 0 96993 station_ip 5.120.15.119 96993 port 8 96993 unique_id port 96995 username aminvpn 96995 mac 96995 bytes_out 0 96995 bytes_in 0 96995 station_ip 37.129.20.129 96995 port 6 96995 unique_id port 96995 remote_ip 10.8.0.6 96996 username aminvpn 96996 mac 96996 bytes_out 0 96996 bytes_in 0 96996 station_ip 37.129.20.129 96996 port 2 96996 unique_id port 96996 remote_ip 10.8.1.26 96997 username aminvpn 96997 mac 96997 bytes_out 0 96997 bytes_in 0 96997 station_ip 37.129.20.129 96997 port 6 96997 unique_id port 96997 remote_ip 10.8.0.6 96998 username alihosseini 96998 mac 96998 bytes_out 0 96998 bytes_in 0 96998 station_ip 5.126.182.219 96998 port 9 96998 unique_id port 96998 remote_ip 10.8.0.14 97004 username mahdixz 97004 unique_id port 97004 terminate_cause User-Request 97004 bytes_out 0 97004 bytes_in 0 97004 station_ip 5.119.206.252 97004 port 15728922 97004 nas_port_type Virtual 97004 remote_ip 5.5.5.201 97007 username alihosseini 97007 mac 97007 bytes_out 0 97007 bytes_in 0 97007 station_ip 5.126.182.219 97007 port 8 97007 unique_id port 97007 remote_ip 10.8.0.14 97009 username bcboard 97009 unique_id port 97009 terminate_cause User-Request 97009 bytes_out 0 97009 bytes_in 0 97009 station_ip 37.129.196.142 97009 port 15728925 97009 nas_port_type Virtual 97009 remote_ip 5.5.5.200 97014 username hoorieh 97014 kill_reason Another user logged on this global unique id 97014 mac 97014 bytes_out 0 97014 bytes_in 0 97014 station_ip 5.120.70.222 97014 port 9 97014 unique_id port 97014 remote_ip 10.8.0.10 97017 username mirzaei 97017 mac 97017 bytes_out 0 97017 bytes_in 0 97017 station_ip 5.119.107.36 97017 port 1 97017 unique_id port 97024 username asadi 97024 mac 97024 bytes_out 9069 97024 bytes_in 25100 97024 station_ip 113.203.15.205 97024 port 8 97024 unique_id port 97024 remote_ip 10.8.0.50 97025 username alirr 97025 unique_id port 97025 terminate_cause User-Request 97025 bytes_out 2989182 97025 bytes_in 36744008 97025 station_ip 5.120.143.3 97025 port 15728927 97025 nas_port_type Virtual 97025 remote_ip 5.5.5.198 97027 username mammad 97027 unique_id port 97027 terminate_cause User-Request 97027 bytes_out 0 97027 bytes_in 0 97027 station_ip 5.233.74.114 97027 port 15728933 97027 nas_port_type Virtual 97027 remote_ip 5.5.5.199 97029 username asadi 97029 mac 97029 bytes_out 0 97029 bytes_in 0 97029 station_ip 113.203.15.205 97029 port 9 97029 unique_id port 97029 remote_ip 10.8.0.50 97030 username alinezhad 97030 unique_id port 97030 terminate_cause User-Request 97030 bytes_out 0 97030 bytes_in 0 97030 station_ip 5.202.0.29 97030 port 15728935 97030 nas_port_type Virtual 97030 remote_ip 5.5.5.196 97033 username alinezhad 97033 unique_id port 97033 terminate_cause User-Request 97033 bytes_out 0 97033 bytes_in 0 97033 station_ip 5.202.0.29 97033 port 15728938 97033 nas_port_type Virtual 97033 remote_ip 5.5.5.196 97038 username alihosseini 97038 mac 97038 bytes_out 3287194 97038 bytes_in 27236443 97038 station_ip 5.126.182.219 97038 port 1 97038 unique_id port 97038 remote_ip 10.8.0.14 97040 username jamali 97040 kill_reason Another user logged on this global unique id 97040 mac 97040 bytes_out 0 97040 bytes_in 0 97020 mac 97020 bytes_out 0 97020 bytes_in 0 97020 station_ip 5.119.39.151 97020 port 2 97020 unique_id port 97020 remote_ip 10.8.0.22 97021 username alihosseini 97021 mac 97021 bytes_out 0 97021 bytes_in 0 97021 station_ip 5.126.182.219 97021 port 2 97021 unique_id port 97021 remote_ip 10.8.1.6 97023 username asadi 97023 mac 97023 bytes_out 0 97023 bytes_in 0 97023 station_ip 113.203.15.205 97023 port 10 97023 unique_id port 97032 username alinezhad 97032 unique_id port 97032 terminate_cause User-Request 97032 bytes_out 0 97032 bytes_in 0 97032 station_ip 5.202.0.29 97032 port 15728937 97032 nas_port_type Virtual 97032 remote_ip 5.5.5.196 97036 username alinezhad 97036 unique_id port 97036 terminate_cause User-Request 97036 bytes_out 0 97036 bytes_in 0 97036 station_ip 5.202.0.29 97036 port 15728941 97036 nas_port_type Virtual 97036 remote_ip 5.5.5.196 97043 username alireza1 97043 unique_id port 97043 terminate_cause User-Request 97043 bytes_out 0 97043 bytes_in 0 97043 station_ip 5.120.27.69 97043 port 15728945 97043 nas_port_type Virtual 97043 remote_ip 5.5.5.195 97045 username jamali 97045 kill_reason Another user logged on this global unique id 97045 mac 97045 bytes_out 0 97045 bytes_in 0 97045 station_ip 37.129.41.234 97045 port 8 97045 unique_id port 97046 username alireza1 97046 unique_id port 97046 terminate_cause User-Request 97046 bytes_out 0 97046 bytes_in 0 97046 station_ip 5.120.27.69 97046 port 15728947 97046 nas_port_type Virtual 97046 remote_ip 5.5.5.195 97047 username alireza1 97047 unique_id port 97047 terminate_cause User-Request 97047 bytes_out 0 97047 bytes_in 0 97047 station_ip 5.120.27.69 97047 port 15728948 97047 nas_port_type Virtual 97047 remote_ip 5.5.5.195 97051 username alireza1 97051 unique_id port 97051 terminate_cause User-Request 97051 bytes_out 0 97051 bytes_in 0 97051 station_ip 5.120.27.69 97051 port 15728950 97051 nas_port_type Virtual 97051 remote_ip 5.5.5.195 97056 username mahdixz 97056 unique_id port 97056 terminate_cause User-Request 97056 bytes_out 0 97056 bytes_in 0 97056 station_ip 151.235.77.35 97056 port 15728952 97056 nas_port_type Virtual 97056 remote_ip 5.5.5.193 97057 username madadi2 97057 mac 97057 bytes_out 0 97057 bytes_in 0 97057 station_ip 5.119.180.108 97057 port 1 97057 unique_id port 97057 remote_ip 10.8.0.26 97058 username mehdizare 97058 mac 97058 bytes_out 191759 97058 bytes_in 259561 97058 station_ip 5.119.39.151 97058 port 2 97058 unique_id port 97058 remote_ip 10.8.0.22 97059 username aminvpn 97059 kill_reason Another user logged on this global unique id 97059 mac 97059 bytes_out 0 97059 bytes_in 0 97059 station_ip 5.120.108.200 97059 port 2 97059 unique_id port 97059 remote_ip 10.8.1.26 97063 username aminvpn 97063 kill_reason Maximum check online fails reached 97063 mac 97063 bytes_out 0 97063 bytes_in 0 97063 station_ip 5.120.108.200 97063 port 1 97063 unique_id port 97065 username sadegh 97065 unique_id port 97065 terminate_cause Lost-Carrier 97065 bytes_out 174895 97065 bytes_in 766913 97065 station_ip 5.119.56.52 97065 port 15728953 97065 nas_port_type Virtual 97065 remote_ip 5.5.5.192 97069 username aminvpn 97069 mac 97069 bytes_out 0 97069 bytes_in 0 97069 station_ip 5.120.108.200 97069 port 8 97069 unique_id port 97069 remote_ip 10.8.0.6 97071 username amirhosein 97071 kill_reason Wrong password 97071 unique_id port 97071 bytes_out 0 97071 bytes_in 0 97071 station_ip 83.123.143.67 97071 port 15728956 97031 station_ip 5.202.0.29 97031 port 15728936 97031 nas_port_type Virtual 97031 remote_ip 5.5.5.196 97034 username alinezhad 97034 unique_id port 97034 terminate_cause User-Request 97034 bytes_out 0 97034 bytes_in 0 97034 station_ip 5.202.0.29 97034 port 15728939 97034 nas_port_type Virtual 97034 remote_ip 5.5.5.196 97035 username alinezhad 97035 unique_id port 97035 terminate_cause User-Request 97035 bytes_out 0 97035 bytes_in 0 97035 station_ip 5.202.0.29 97035 port 15728940 97035 nas_port_type Virtual 97035 remote_ip 5.5.5.196 97037 username ahmadi 97037 unique_id port 97037 terminate_cause User-Request 97037 bytes_out 131251 97037 bytes_in 2015202 97037 station_ip 83.123.191.244 97037 port 15728934 97037 nas_port_type Virtual 97037 remote_ip 5.5.5.197 97039 username alinezhad 97039 unique_id port 97039 terminate_cause User-Request 97039 bytes_out 0 97039 bytes_in 0 97039 station_ip 5.202.0.29 97039 port 15728942 97039 nas_port_type Virtual 97039 remote_ip 5.5.5.196 97041 username alireza1 97041 unique_id port 97041 terminate_cause User-Request 97041 bytes_out 0 97041 bytes_in 0 97041 station_ip 5.120.27.69 97041 port 15728943 97041 nas_port_type Virtual 97041 remote_ip 5.5.5.195 97048 username alireza1 97048 unique_id port 97048 terminate_cause User-Request 97048 bytes_out 0 97048 bytes_in 0 97048 station_ip 5.120.27.69 97048 port 15728949 97048 nas_port_type Virtual 97048 remote_ip 5.5.5.195 97049 username jamali 97049 kill_reason Another user logged on this global unique id 97049 mac 97049 bytes_out 0 97049 bytes_in 0 97049 station_ip 37.129.41.234 97049 port 8 97049 unique_id port 97052 username jamali 97052 kill_reason Another user logged on this global unique id 97052 mac 97052 bytes_out 0 97052 bytes_in 0 97052 station_ip 37.129.41.234 97052 port 8 97052 unique_id port 97053 username jamali 97053 kill_reason Another user logged on this global unique id 97053 mac 97053 bytes_out 0 97053 bytes_in 0 97053 station_ip 37.129.41.234 97053 port 8 97053 unique_id port 97055 username mohammadmahdi 97055 kill_reason Another user logged on this global unique id 97055 mac 97055 bytes_out 0 97055 bytes_in 0 97055 station_ip 37.129.196.134 97055 port 10 97055 unique_id port 97055 remote_ip 10.8.0.34 97060 username jamali 97060 mac 97060 bytes_out 0 97060 bytes_in 0 97060 station_ip 37.129.41.234 97060 port 8 97060 unique_id port 97062 username aminvpn 97062 mac 97062 bytes_out 0 97062 bytes_in 0 97062 station_ip 5.120.108.200 97062 port 2 97062 unique_id port 97062 remote_ip 10.8.1.26 97064 username mohammadmahdi 97064 kill_reason Another user logged on this global unique id 97064 mac 97064 bytes_out 0 97064 bytes_in 0 97064 station_ip 37.129.196.134 97064 port 10 97064 unique_id port 97068 username mammad 97068 unique_id port 97068 terminate_cause User-Request 97068 bytes_out 0 97068 bytes_in 0 97068 station_ip 5.233.74.114 97068 port 15728954 97068 nas_port_type Virtual 97068 remote_ip 5.5.5.199 97070 username amirhosein 97070 kill_reason Wrong password 97070 unique_id port 97070 bytes_out 0 97070 bytes_in 0 97070 station_ip 83.123.143.67 97070 port 15728955 97070 nas_port_type Virtual 97074 username amirhosein 97074 unique_id port 97074 terminate_cause User-Request 97074 bytes_out 0 97074 bytes_in 0 97074 station_ip 83.123.143.67 97074 port 15728959 97074 nas_port_type Virtual 97074 remote_ip 5.5.5.191 97093 username amir 97093 mac 97093 bytes_out 7532054 97093 bytes_in 1027167 97093 station_ip 46.225.210.102 97093 port 12 97093 unique_id port 97040 station_ip 37.129.41.234 97040 port 8 97040 unique_id port 97040 remote_ip 10.8.0.62 97042 username alireza1 97042 unique_id port 97042 terminate_cause User-Request 97042 bytes_out 0 97042 bytes_in 0 97042 station_ip 5.120.27.69 97042 port 15728944 97042 nas_port_type Virtual 97042 remote_ip 5.5.5.195 97044 username alireza1 97044 unique_id port 97044 terminate_cause User-Request 97044 bytes_out 0 97044 bytes_in 0 97044 station_ip 5.120.27.69 97044 port 15728946 97044 nas_port_type Virtual 97044 remote_ip 5.5.5.195 97050 username alirr 97050 unique_id port 97050 terminate_cause Lost-Carrier 97050 bytes_out 839678 97050 bytes_in 4233647 97050 station_ip 5.120.143.3 97050 port 15728931 97050 nas_port_type Virtual 97050 remote_ip 5.5.5.198 97054 username ahmadipour 97054 unique_id port 97054 terminate_cause Lost-Carrier 97054 bytes_out 49416 97054 bytes_in 69868 97054 station_ip 37.129.10.127 97054 port 15728951 97054 nas_port_type Virtual 97054 remote_ip 5.5.5.194 97061 username mehdizare 97061 mac 97061 bytes_out 0 97061 bytes_in 0 97061 station_ip 5.119.39.151 97061 port 2 97061 unique_id port 97061 remote_ip 10.8.0.22 97066 username aminvpn 97066 mac 97066 bytes_out 719034 97066 bytes_in 11584929 97066 station_ip 5.120.108.200 97066 port 2 97066 unique_id port 97066 remote_ip 10.8.1.26 97067 username aminvpn 97067 mac 97067 bytes_out 0 97067 bytes_in 0 97067 station_ip 5.120.108.200 97067 port 2 97067 unique_id port 97067 remote_ip 10.8.1.26 97072 username amirhosein 97072 kill_reason Wrong password 97072 unique_id port 97072 bytes_out 0 97072 bytes_in 0 97072 station_ip 83.123.143.67 97072 port 15728957 97072 nas_port_type Virtual 97073 username amirhosein 97073 kill_reason Wrong password 97073 unique_id port 97073 bytes_out 0 97073 bytes_in 0 97073 station_ip 83.123.143.67 97073 port 15728958 97073 nas_port_type Virtual 97076 username madadi2 97076 mac 97076 bytes_out 67426 97076 bytes_in 102221 97076 station_ip 5.119.228.91 97076 port 8 97076 unique_id port 97076 remote_ip 10.8.0.26 97077 username amirhosein 97077 kill_reason Wrong password 97077 unique_id port 97077 bytes_out 0 97077 bytes_in 0 97077 station_ip 83.123.143.67 97077 port 15728961 97077 nas_port_type Virtual 97080 username amirhosein 97080 unique_id port 97080 terminate_cause User-Request 97080 bytes_out 71487 97080 bytes_in 1095813 97080 station_ip 83.123.143.67 97080 port 15728963 97080 nas_port_type Virtual 97080 remote_ip 5.5.5.191 97081 username amirhosein 97081 unique_id port 97081 terminate_cause User-Request 97081 bytes_out 79872 97081 bytes_in 1435215 97081 station_ip 83.123.143.67 97081 port 15728964 97081 nas_port_type Virtual 97081 remote_ip 5.5.5.191 97084 username amirhosein 97084 unique_id port 97084 terminate_cause User-Request 97084 bytes_out 82542 97084 bytes_in 494209 97084 station_ip 83.123.143.67 97084 port 15728966 97084 nas_port_type Virtual 97084 remote_ip 5.5.5.191 97085 username madadi2 97085 mac 97085 bytes_out 0 97085 bytes_in 0 97085 station_ip 5.120.110.91 97085 port 2 97085 unique_id port 97085 remote_ip 10.8.1.18 97086 username amirhosein 97086 unique_id port 97086 terminate_cause User-Request 97086 bytes_out 57205 97086 bytes_in 180809 97086 station_ip 83.123.143.67 97086 port 15728967 97086 nas_port_type Virtual 97086 remote_ip 5.5.5.191 97088 username sadegh 97088 unique_id port 97088 terminate_cause Lost-Carrier 97088 bytes_out 1677939 97088 bytes_in 13662659 97088 station_ip 5.119.56.52 97088 port 15728965 97088 nas_port_type Virtual 97071 nas_port_type Virtual 97075 username amirhosein 97075 unique_id port 97075 terminate_cause User-Request 97075 bytes_out 0 97075 bytes_in 0 97075 station_ip 83.123.143.67 97075 port 15728960 97075 nas_port_type Virtual 97075 remote_ip 5.5.5.191 97078 username madadi2 97078 mac 97078 bytes_out 0 97078 bytes_in 0 97078 station_ip 5.120.191.25 97078 port 8 97078 unique_id port 97078 remote_ip 10.8.0.26 97079 username amirhosein 97079 unique_id port 97079 terminate_cause User-Request 97079 bytes_out 123699 97079 bytes_in 1145537 97079 station_ip 83.123.143.67 97079 port 15728962 97079 nas_port_type Virtual 97079 remote_ip 5.5.5.191 97082 username aminvpn 97082 mac 97082 bytes_out 0 97082 bytes_in 0 97082 station_ip 5.120.108.200 97082 port 11 97082 unique_id port 97082 remote_ip 10.8.0.6 97083 username aminvpn 97083 mac 97083 bytes_out 0 97083 bytes_in 0 97083 station_ip 5.120.108.200 97083 port 11 97083 unique_id port 97083 remote_ip 10.8.0.6 97087 username amirhosein 97087 unique_id port 97087 terminate_cause User-Request 97087 bytes_out 31349 97087 bytes_in 440042 97087 station_ip 83.123.143.67 97087 port 15728968 97087 nas_port_type Virtual 97087 remote_ip 5.5.5.191 97089 username mohammadmahdi 97089 mac 97089 bytes_out 0 97089 bytes_in 0 97089 station_ip 37.129.196.134 97089 port 10 97089 unique_id port 97090 username aminvpn 97090 mac 97090 bytes_out 0 97090 bytes_in 0 97090 station_ip 5.120.108.200 97090 port 10 97090 unique_id port 97090 remote_ip 10.8.0.6 97091 username alihosseini 97091 mac 97091 bytes_out 0 97091 bytes_in 0 97091 station_ip 5.126.49.158 97091 port 8 97091 unique_id port 97091 remote_ip 10.8.0.14 97092 username aminvpn 97092 mac 97092 bytes_out 0 97092 bytes_in 0 97092 station_ip 5.120.108.200 97092 port 10 97092 unique_id port 97092 remote_ip 10.8.0.6 97094 username asadi 97094 mac 97094 bytes_out 0 97094 bytes_in 0 97094 station_ip 113.203.15.205 97094 port 9 97094 unique_id port 97094 remote_ip 10.8.0.50 97095 username amir 97095 mac 97095 bytes_out 0 97095 bytes_in 0 97095 station_ip 46.225.210.102 97095 port 9 97095 unique_id port 97095 remote_ip 10.8.0.54 97096 username mohammadmahdi 97096 mac 97096 bytes_out 0 97096 bytes_in 0 97096 station_ip 37.129.196.134 97096 port 11 97096 unique_id port 97096 remote_ip 10.8.0.34 97097 username mehdizare 97097 kill_reason Another user logged on this global unique id 97097 mac 97097 bytes_out 0 97097 bytes_in 0 97097 station_ip 5.119.39.151 97097 port 2 97097 unique_id port 97097 remote_ip 10.8.0.22 97103 username aminvpn 97103 mac 97103 bytes_out 0 97103 bytes_in 0 97103 station_ip 5.120.108.200 97103 port 8 97103 unique_id port 97103 remote_ip 10.8.0.6 97108 username aminvpn 97108 mac 97108 bytes_out 0 97108 bytes_in 0 97108 station_ip 37.129.97.185 97108 port 8 97108 unique_id port 97108 remote_ip 10.8.0.6 97112 username aminvpn 97112 mac 97112 bytes_out 0 97112 bytes_in 0 97112 station_ip 5.120.108.200 97112 port 2 97112 unique_id port 97112 remote_ip 10.8.1.26 97114 username aminvpn 97114 mac 97114 bytes_out 0 97114 bytes_in 0 97114 station_ip 5.120.108.200 97114 port 10 97114 unique_id port 97114 remote_ip 10.8.0.6 97117 username amir 97117 kill_reason Another user logged on this global unique id 97117 mac 97117 bytes_out 0 97117 bytes_in 0 97117 station_ip 46.225.210.102 97088 remote_ip 5.5.5.192 97098 username mohammadmahdi 97098 mac 97098 bytes_out 0 97098 bytes_in 0 97098 station_ip 83.122.68.90 97098 port 10 97098 unique_id port 97098 remote_ip 10.8.0.34 97099 username aminvpn 97099 mac 97099 bytes_out 0 97099 bytes_in 0 97099 station_ip 5.120.108.200 97099 port 8 97099 unique_id port 97099 remote_ip 10.8.0.6 97104 username mahdixz 97104 unique_id port 97104 terminate_cause User-Request 97104 bytes_out 0 97104 bytes_in 0 97104 station_ip 151.235.84.181 97104 port 15728970 97104 nas_port_type Virtual 97104 remote_ip 5.5.5.189 97109 username mehdizare 97109 kill_reason Another user logged on this global unique id 97109 mac 97109 bytes_out 0 97109 bytes_in 0 97109 station_ip 5.119.39.151 97109 port 2 97109 unique_id port 97113 username aminvpn 97113 mac 97113 bytes_out 840762 97113 bytes_in 14109576 97113 station_ip 37.129.97.185 97113 port 8 97113 unique_id port 97113 remote_ip 10.8.0.6 97115 username aminvpn 97115 mac 97115 bytes_out 0 97115 bytes_in 0 97115 station_ip 37.129.97.185 97115 port 8 97115 unique_id port 97115 remote_ip 10.8.0.6 97116 username aminvpn 97116 mac 97116 bytes_out 0 97116 bytes_in 0 97116 station_ip 5.120.108.200 97116 port 10 97116 unique_id port 97116 remote_ip 10.8.0.6 97118 username aminvpn 97118 mac 97118 bytes_out 1128550 97118 bytes_in 7210484 97118 station_ip 37.129.97.185 97118 port 8 97118 unique_id port 97118 remote_ip 10.8.0.6 97122 username mahdixz 97122 unique_id port 97122 terminate_cause User-Request 97122 bytes_out 0 97122 bytes_in 0 97122 station_ip 113.203.79.159 97122 port 15728976 97122 nas_port_type Virtual 97122 remote_ip 5.5.5.188 97123 username alirr 97123 unique_id port 97123 terminate_cause Lost-Carrier 97123 bytes_out 1779321 97123 bytes_in 36629259 97123 station_ip 5.119.71.48 97123 port 15728973 97123 nas_port_type Virtual 97123 remote_ip 5.5.5.190 97126 username aminvpn 97126 mac 97126 bytes_out 0 97126 bytes_in 0 97126 station_ip 37.129.97.185 97126 port 8 97126 unique_id port 97126 remote_ip 10.8.0.6 97127 username amir 97127 kill_reason Another user logged on this global unique id 97127 mac 97127 bytes_out 0 97127 bytes_in 0 97127 station_ip 46.225.210.102 97127 port 11 97127 unique_id port 97130 username madadi2 97130 mac 97130 bytes_out 0 97130 bytes_in 0 97130 station_ip 5.119.205.170 97130 port 9 97130 unique_id port 97130 remote_ip 10.8.0.26 97132 username aminvpn 97132 mac 97132 bytes_out 0 97132 bytes_in 0 97132 station_ip 83.123.138.36 97132 port 9 97132 unique_id port 97132 remote_ip 10.8.0.6 97134 username aminvpn 97134 mac 97134 bytes_out 0 97134 bytes_in 0 97134 station_ip 83.123.138.36 97134 port 12 97134 unique_id port 97134 remote_ip 10.8.0.6 97135 username aminvpn 97135 mac 97135 bytes_out 0 97135 bytes_in 0 97135 station_ip 37.129.97.185 97135 port 10 97135 unique_id port 97135 remote_ip 10.8.0.6 97147 username aminvpn 97147 mac 97147 bytes_out 0 97147 bytes_in 0 97147 station_ip 83.123.138.36 97147 port 13 97147 unique_id port 97147 remote_ip 10.8.0.6 97149 username aminvpn 97149 mac 97149 bytes_out 0 97149 bytes_in 0 97149 station_ip 37.129.97.185 97149 port 12 97149 unique_id port 97149 remote_ip 10.8.0.6 97155 username aminvpn 97155 mac 97155 bytes_out 0 97155 bytes_in 0 97155 station_ip 37.129.97.185 97155 port 12 97093 remote_ip 10.8.0.54 97100 username mohammadmahdi 97100 mac 97100 bytes_out 0 97100 bytes_in 0 97100 station_ip 83.122.68.90 97100 port 12 97100 unique_id port 97100 remote_ip 10.8.0.34 97101 username mehdizare 97101 kill_reason Another user logged on this global unique id 97101 mac 97101 bytes_out 0 97101 bytes_in 0 97101 station_ip 5.119.39.151 97101 port 2 97101 unique_id port 97102 username aminvpn 97102 mac 97102 bytes_out 0 97102 bytes_in 0 97102 station_ip 5.120.108.200 97102 port 8 97102 unique_id port 97102 remote_ip 10.8.0.6 97105 username amir 97105 kill_reason Another user logged on this global unique id 97105 mac 97105 bytes_out 0 97105 bytes_in 0 97105 station_ip 46.225.210.102 97105 port 11 97105 unique_id port 97105 remote_ip 10.8.0.54 97106 username alirr 97106 unique_id port 97106 terminate_cause User-Request 97106 bytes_out 5897139 97106 bytes_in 94635823 97106 station_ip 5.119.71.48 97106 port 15728969 97106 nas_port_type Virtual 97106 remote_ip 5.5.5.190 97107 username mehdizare 97107 kill_reason Another user logged on this global unique id 97107 mac 97107 bytes_out 0 97107 bytes_in 0 97107 station_ip 5.119.39.151 97107 port 2 97107 unique_id port 97110 username ahmadi 97110 unique_id port 97110 terminate_cause User-Request 97110 bytes_out 42587 97110 bytes_in 310633 97110 station_ip 83.123.191.244 97110 port 15728972 97110 nas_port_type Virtual 97110 remote_ip 5.5.5.197 97111 username aminvpn 97111 mac 97111 bytes_out 5683028 97111 bytes_in 213517165 97111 station_ip 5.120.108.200 97111 port 2 97111 unique_id port 97111 remote_ip 10.8.1.26 97124 username aminvpn 97124 mac 97124 bytes_out 0 97124 bytes_in 0 97124 station_ip 37.129.97.185 97124 port 8 97124 unique_id port 97124 remote_ip 10.8.0.6 97128 username aminvpn 97128 mac 97128 bytes_out 0 97128 bytes_in 0 97128 station_ip 5.120.108.200 97128 port 10 97128 unique_id port 97128 remote_ip 10.8.0.6 97131 username aminvpn 97131 mac 97131 bytes_out 0 97131 bytes_in 0 97131 station_ip 37.129.97.185 97131 port 10 97131 unique_id port 97131 remote_ip 10.8.0.6 97138 username aminvpn 97138 mac 97138 bytes_out 0 97138 bytes_in 0 97138 station_ip 83.123.138.36 97138 port 12 97138 unique_id port 97138 remote_ip 10.8.0.6 97139 username aminvpn 97139 mac 97139 bytes_out 0 97139 bytes_in 0 97139 station_ip 37.129.97.185 97139 port 13 97139 unique_id port 97139 remote_ip 10.8.0.6 97142 username aminvpn 97142 mac 97142 bytes_out 0 97142 bytes_in 0 97142 station_ip 5.120.108.200 97142 port 12 97142 unique_id port 97142 remote_ip 10.8.0.6 97143 username aminvpn 97143 mac 97143 bytes_out 0 97143 bytes_in 0 97143 station_ip 83.123.138.36 97143 port 12 97143 unique_id port 97143 remote_ip 10.8.0.6 97148 username sobhan 97148 unique_id port 97148 terminate_cause User-Request 97148 bytes_out 0 97148 bytes_in 0 97148 station_ip 5.119.77.207 97148 port 15728979 97148 nas_port_type Virtual 97148 remote_ip 5.5.5.186 97150 username aminvpn 97150 mac 97150 bytes_out 0 97150 bytes_in 0 97150 station_ip 83.123.138.36 97150 port 13 97150 unique_id port 97150 remote_ip 10.8.0.6 97151 username aminvpn 97151 mac 97151 bytes_out 0 97151 bytes_in 0 97151 station_ip 37.129.97.185 97151 port 12 97151 unique_id port 97151 remote_ip 10.8.0.6 97165 username aminvpn 97165 mac 97165 bytes_out 0 97165 bytes_in 0 97117 port 11 97117 unique_id port 97119 username aminvpn 97119 mac 97119 bytes_out 0 97119 bytes_in 0 97119 station_ip 5.120.108.200 97119 port 10 97119 unique_id port 97119 remote_ip 10.8.0.6 97120 username amirhosein 97120 unique_id port 97120 terminate_cause User-Request 97120 bytes_out 34308 97120 bytes_in 227572 97120 station_ip 83.123.143.67 97120 port 15728974 97120 nas_port_type Virtual 97120 remote_ip 5.5.5.191 97121 username amirhosein 97121 unique_id port 97121 terminate_cause User-Request 97121 bytes_out 50922 97121 bytes_in 1643896 97121 station_ip 83.123.143.67 97121 port 15728975 97121 nas_port_type Virtual 97121 remote_ip 5.5.5.191 97125 username aminvpn 97125 mac 97125 bytes_out 0 97125 bytes_in 0 97125 station_ip 5.120.108.200 97125 port 10 97125 unique_id port 97125 remote_ip 10.8.0.6 97129 username aminvpn 97129 mac 97129 bytes_out 0 97129 bytes_in 0 97129 station_ip 5.120.108.200 97129 port 10 97129 unique_id port 97129 remote_ip 10.8.0.6 97133 username aminvpn 97133 mac 97133 bytes_out 0 97133 bytes_in 0 97133 station_ip 37.129.97.185 97133 port 10 97133 unique_id port 97133 remote_ip 10.8.0.6 97136 username aminvpn 97136 mac 97136 bytes_out 0 97136 bytes_in 0 97136 station_ip 83.123.138.36 97136 port 12 97136 unique_id port 97136 remote_ip 10.8.0.6 97137 username aminvpn 97137 mac 97137 bytes_out 0 97137 bytes_in 0 97137 station_ip 37.129.97.185 97137 port 13 97137 unique_id port 97137 remote_ip 10.8.0.6 97140 username aminvpn 97140 mac 97140 bytes_out 0 97140 bytes_in 0 97140 station_ip 83.123.138.36 97140 port 12 97140 unique_id port 97140 remote_ip 10.8.0.6 97141 username aminvpn 97141 mac 97141 bytes_out 0 97141 bytes_in 0 97141 station_ip 37.129.97.185 97141 port 13 97141 unique_id port 97141 remote_ip 10.8.0.6 97144 username aminvpn 97144 mac 97144 bytes_out 0 97144 bytes_in 0 97144 station_ip 37.129.97.185 97144 port 13 97144 unique_id port 97144 remote_ip 10.8.0.6 97145 username aminvpn 97145 mac 97145 bytes_out 512139 97145 bytes_in 2162330 97145 station_ip 37.129.97.185 97145 port 12 97145 unique_id port 97145 remote_ip 10.8.0.6 97146 username sobhan 97146 unique_id port 97146 terminate_cause User-Request 97146 bytes_out 0 97146 bytes_in 0 97146 station_ip 5.119.77.207 97146 port 15728978 97146 nas_port_type Virtual 97146 remote_ip 5.5.5.186 97152 username aminvpn 97152 mac 97152 bytes_out 0 97152 bytes_in 0 97152 station_ip 83.123.138.36 97152 port 13 97152 unique_id port 97152 remote_ip 10.8.0.6 97153 username aminvpn 97153 mac 97153 bytes_out 0 97153 bytes_in 0 97153 station_ip 37.129.97.185 97153 port 12 97153 unique_id port 97153 remote_ip 10.8.0.6 97154 username aminvpn 97154 mac 97154 bytes_out 0 97154 bytes_in 0 97154 station_ip 83.123.138.36 97154 port 13 97154 unique_id port 97154 remote_ip 10.8.0.6 97157 username aminvpn 97157 unique_id port 97157 terminate_cause User-Request 97157 bytes_out 6568564 97157 bytes_in 258194059 97157 station_ip 37.129.97.185 97157 port 15728977 97157 nas_port_type Virtual 97157 remote_ip 5.5.5.187 97159 username aminvpn 97159 mac 97159 bytes_out 0 97159 bytes_in 0 97159 station_ip 83.123.138.36 97159 port 13 97159 unique_id port 97159 remote_ip 10.8.0.6 97163 username mohammadmahdi 97163 mac 97163 bytes_out 0 97163 bytes_in 0 97155 unique_id port 97155 remote_ip 10.8.0.6 97156 username aminvpn 97156 mac 97156 bytes_out 0 97156 bytes_in 0 97156 station_ip 83.123.138.36 97156 port 13 97156 unique_id port 97156 remote_ip 10.8.0.6 97158 username aminvpn 97158 mac 97158 bytes_out 0 97158 bytes_in 0 97158 station_ip 37.129.97.185 97158 port 12 97158 unique_id port 97158 remote_ip 10.8.0.6 97160 username aminvpn 97160 mac 97160 bytes_out 0 97160 bytes_in 0 97160 station_ip 37.129.97.185 97160 port 12 97160 unique_id port 97160 remote_ip 10.8.0.6 97161 username aminvpn 97161 mac 97161 bytes_out 0 97161 bytes_in 0 97161 station_ip 83.123.138.36 97161 port 13 97161 unique_id port 97161 remote_ip 10.8.0.6 97162 username aminvpn 97162 mac 97162 bytes_out 0 97162 bytes_in 0 97162 station_ip 37.129.97.185 97162 port 12 97162 unique_id port 97162 remote_ip 10.8.0.6 97164 username aminvpn 97164 mac 97164 bytes_out 0 97164 bytes_in 0 97164 station_ip 83.123.138.36 97164 port 13 97164 unique_id port 97164 remote_ip 10.8.0.6 97166 username aminvpn 97166 mac 97166 bytes_out 0 97166 bytes_in 0 97166 station_ip 37.129.97.185 97166 port 12 97166 unique_id port 97166 remote_ip 10.8.0.6 97169 username amir 97169 mac 97169 bytes_out 0 97169 bytes_in 0 97169 station_ip 46.225.210.102 97169 port 11 97169 unique_id port 97173 username mahdiyehalizadeh 97173 kill_reason Another user logged on this global unique id 97173 mac 97173 bytes_out 0 97173 bytes_in 0 97173 station_ip 83.122.241.74 97173 port 8 97173 unique_id port 97173 remote_ip 10.8.0.42 97174 username aminvpn 97174 mac 97174 bytes_out 0 97174 bytes_in 0 97174 station_ip 83.123.138.36 97174 port 10 97174 unique_id port 97174 remote_ip 10.8.0.6 97175 username aminvpn 97175 mac 97175 bytes_out 0 97175 bytes_in 0 97175 station_ip 37.129.97.185 97175 port 11 97175 unique_id port 97175 remote_ip 10.8.0.6 97180 username aminvpn 97180 mac 97180 bytes_out 0 97180 bytes_in 0 97180 station_ip 83.123.138.36 97180 port 10 97180 unique_id port 97180 remote_ip 10.8.0.6 97184 username aminvpn 97184 mac 97184 bytes_out 0 97184 bytes_in 0 97184 station_ip 83.123.138.36 97184 port 10 97184 unique_id port 97184 remote_ip 10.8.0.6 97185 username aminvpn 97185 mac 97185 bytes_out 0 97185 bytes_in 0 97185 station_ip 37.129.97.185 97185 port 11 97185 unique_id port 97185 remote_ip 10.8.0.6 97186 username aminvpn 97186 mac 97186 bytes_out 0 97186 bytes_in 0 97186 station_ip 83.123.138.36 97186 port 10 97186 unique_id port 97186 remote_ip 10.8.0.6 97188 username aminvpn 97188 mac 97188 bytes_out 0 97188 bytes_in 0 97188 station_ip 83.123.138.36 97188 port 10 97188 unique_id port 97188 remote_ip 10.8.0.6 97194 username aminvpn 97194 mac 97194 bytes_out 0 97194 bytes_in 0 97194 station_ip 83.123.138.36 97194 port 10 97194 unique_id port 97194 remote_ip 10.8.0.6 97196 username mahdiyehalizadeh 97196 mac 97196 bytes_out 0 97196 bytes_in 0 97196 station_ip 83.122.241.74 97196 port 8 97196 unique_id port 97201 username aminvpn 97201 mac 97201 bytes_out 0 97201 bytes_in 0 97201 station_ip 5.120.108.200 97201 port 4 97201 unique_id port 97201 remote_ip 10.8.1.26 97204 username bcboard 97204 unique_id port 97204 terminate_cause User-Request 97204 bytes_out 372890 97163 station_ip 5.119.114.245 97163 port 10 97163 unique_id port 97163 remote_ip 10.8.0.34 97172 username aminvpn 97172 mac 97172 bytes_out 0 97172 bytes_in 0 97172 station_ip 37.129.97.185 97172 port 11 97172 unique_id port 97172 remote_ip 10.8.0.6 97178 username aminvpn 97178 mac 97178 bytes_out 0 97178 bytes_in 0 97178 station_ip 83.123.138.36 97178 port 10 97178 unique_id port 97178 remote_ip 10.8.0.6 97179 username aminvpn 97179 mac 97179 bytes_out 0 97179 bytes_in 0 97179 station_ip 37.129.97.185 97179 port 11 97179 unique_id port 97179 remote_ip 10.8.0.6 97181 username aminvpn 97181 mac 97181 bytes_out 0 97181 bytes_in 0 97181 station_ip 37.129.97.185 97181 port 11 97181 unique_id port 97181 remote_ip 10.8.0.6 97182 username aminvpn 97182 mac 97182 bytes_out 0 97182 bytes_in 0 97182 station_ip 83.123.138.36 97182 port 10 97182 unique_id port 97182 remote_ip 10.8.0.6 97183 username aminvpn 97183 mac 97183 bytes_out 0 97183 bytes_in 0 97183 station_ip 37.129.97.185 97183 port 11 97183 unique_id port 97183 remote_ip 10.8.0.6 97192 username aminvpn 97192 mac 97192 bytes_out 0 97192 bytes_in 0 97192 station_ip 83.123.138.36 97192 port 10 97192 unique_id port 97192 remote_ip 10.8.0.6 97193 username aminvpn 97193 mac 97193 bytes_out 0 97193 bytes_in 0 97193 station_ip 37.129.97.185 97193 port 11 97193 unique_id port 97193 remote_ip 10.8.0.6 97198 username mehdizare 97198 kill_reason Another user logged on this global unique id 97198 mac 97198 bytes_out 0 97198 bytes_in 0 97198 station_ip 5.119.39.151 97198 port 2 97198 unique_id port 97199 username aminvpn 97199 mac 97199 bytes_out 0 97199 bytes_in 0 97199 station_ip 5.120.108.200 97199 port 2 97199 unique_id port 97199 remote_ip 10.8.1.26 97200 username sadegh 97200 unique_id port 97200 terminate_cause Lost-Carrier 97200 bytes_out 14034656 97200 bytes_in 269148986 97200 station_ip 5.119.56.52 97200 port 15728971 97200 nas_port_type Virtual 97200 remote_ip 5.5.5.192 97207 username aminvpn 97207 mac 97207 bytes_out 369550 97207 bytes_in 228216 97207 station_ip 37.129.97.185 97207 port 8 97207 unique_id port 97207 remote_ip 10.8.0.6 97217 username aminvpn 97217 mac 97217 bytes_out 0 97217 bytes_in 0 97217 station_ip 5.120.108.200 97217 port 9 97217 unique_id port 97217 remote_ip 10.8.0.6 97219 username aminvpn 97219 mac 97219 bytes_out 0 97219 bytes_in 0 97219 station_ip 5.120.108.200 97219 port 9 97219 unique_id port 97219 remote_ip 10.8.0.6 97220 username aminvpn 97220 mac 97220 bytes_out 0 97220 bytes_in 0 97220 station_ip 37.129.97.185 97220 port 8 97220 unique_id port 97220 remote_ip 10.8.0.6 97223 username aminvpn 97223 mac 97223 bytes_out 0 97223 bytes_in 0 97223 station_ip 5.120.108.200 97223 port 9 97223 unique_id port 97223 remote_ip 10.8.0.6 97229 username aminvpn 97229 mac 97229 bytes_out 0 97229 bytes_in 0 97229 station_ip 5.120.108.200 97229 port 9 97229 unique_id port 97229 remote_ip 10.8.0.6 97233 username aminvpn 97233 mac 97233 bytes_out 0 97233 bytes_in 0 97233 station_ip 5.120.108.200 97233 port 10 97233 unique_id port 97233 remote_ip 10.8.0.6 97236 username aminvpn 97236 mac 97236 bytes_out 88215 97236 bytes_in 85752 97236 station_ip 37.129.97.185 97236 port 8 97236 unique_id port 97165 station_ip 5.120.108.200 97165 port 10 97165 unique_id port 97165 remote_ip 10.8.0.6 97167 username aminvpn 97167 mac 97167 bytes_out 0 97167 bytes_in 0 97167 station_ip 83.123.138.36 97167 port 10 97167 unique_id port 97167 remote_ip 10.8.0.6 97168 username aminvpn 97168 mac 97168 bytes_out 0 97168 bytes_in 0 97168 station_ip 37.129.97.185 97168 port 12 97168 unique_id port 97168 remote_ip 10.8.0.6 97170 username aminvpn 97170 mac 97170 bytes_out 0 97170 bytes_in 0 97170 station_ip 83.123.138.36 97170 port 10 97170 unique_id port 97170 remote_ip 10.8.0.6 97171 username aminvpn 97171 kill_reason Maximum check online fails reached 97171 mac 97171 bytes_out 0 97171 bytes_in 0 97171 station_ip 5.120.108.200 97171 port 13 97171 unique_id port 97176 username aminvpn 97176 mac 97176 bytes_out 0 97176 bytes_in 0 97176 station_ip 83.123.138.36 97176 port 10 97176 unique_id port 97176 remote_ip 10.8.0.6 97177 username aminvpn 97177 mac 97177 bytes_out 0 97177 bytes_in 0 97177 station_ip 37.129.97.185 97177 port 11 97177 unique_id port 97177 remote_ip 10.8.0.6 97187 username aminvpn 97187 mac 97187 bytes_out 0 97187 bytes_in 0 97187 station_ip 37.129.97.185 97187 port 11 97187 unique_id port 97187 remote_ip 10.8.0.6 97189 username aminvpn 97189 mac 97189 bytes_out 0 97189 bytes_in 0 97189 station_ip 37.129.97.185 97189 port 11 97189 unique_id port 97189 remote_ip 10.8.0.6 97190 username aminvpn 97190 mac 97190 bytes_out 0 97190 bytes_in 0 97190 station_ip 83.123.138.36 97190 port 10 97190 unique_id port 97190 remote_ip 10.8.0.6 97191 username aminvpn 97191 mac 97191 bytes_out 0 97191 bytes_in 0 97191 station_ip 37.129.97.185 97191 port 11 97191 unique_id port 97191 remote_ip 10.8.0.6 97195 username aminvpn 97195 mac 97195 bytes_out 71378 97195 bytes_in 85004 97195 station_ip 37.129.97.185 97195 port 11 97195 unique_id port 97195 remote_ip 10.8.0.6 97197 username aminvpn 97197 mac 97197 bytes_out 0 97197 bytes_in 0 97197 station_ip 83.123.138.36 97197 port 10 97197 unique_id port 97197 remote_ip 10.8.0.6 97202 username aminvpn 97202 mac 97202 bytes_out 0 97202 bytes_in 0 97202 station_ip 5.120.108.200 97202 port 4 97202 unique_id port 97202 remote_ip 10.8.1.26 97203 username aminvpn 97203 kill_reason Maximum check online fails reached 97203 mac 97203 bytes_out 0 97203 bytes_in 0 97203 station_ip 5.120.108.200 97203 port 4 97203 unique_id port 97205 username aminvpn 97205 mac 97205 bytes_out 0 97205 bytes_in 0 97205 station_ip 5.120.108.200 97205 port 5 97205 unique_id port 97205 remote_ip 10.8.1.26 97206 username aminvpn 97206 mac 97206 bytes_out 0 97206 bytes_in 0 97206 station_ip 5.120.108.200 97206 port 5 97206 unique_id port 97206 remote_ip 10.8.1.26 97208 username aminvpn 97208 mac 97208 bytes_out 0 97208 bytes_in 0 97208 station_ip 5.120.108.200 97208 port 10 97208 unique_id port 97208 remote_ip 10.8.0.6 97209 username aminvpn 97209 mac 97209 bytes_out 74765 97209 bytes_in 86150 97209 station_ip 37.129.97.185 97209 port 8 97209 unique_id port 97209 remote_ip 10.8.0.6 97210 username aminvpn 97210 mac 97210 bytes_out 0 97210 bytes_in 0 97210 station_ip 5.120.108.200 97210 port 10 97210 unique_id port 97210 remote_ip 10.8.0.6 97204 bytes_in 4428426 97204 station_ip 37.129.6.31 97204 port 15728980 97204 nas_port_type Virtual 97204 remote_ip 5.5.5.185 97212 username aminvpn 97212 mac 97212 bytes_out 0 97212 bytes_in 0 97212 station_ip 5.120.108.200 97212 port 10 97212 unique_id port 97212 remote_ip 10.8.0.6 97213 username madadi2 97213 mac 97213 bytes_out 2062397 97213 bytes_in 2920900 97213 station_ip 5.120.8.116 97213 port 9 97213 unique_id port 97213 remote_ip 10.8.0.26 97215 username aminvpn 97215 mac 97215 bytes_out 0 97215 bytes_in 0 97215 station_ip 5.120.108.200 97215 port 9 97215 unique_id port 97215 remote_ip 10.8.0.6 97216 username aminvpn 97216 mac 97216 bytes_out 0 97216 bytes_in 0 97216 station_ip 37.129.97.185 97216 port 8 97216 unique_id port 97216 remote_ip 10.8.0.6 97218 username aminvpn 97218 mac 97218 bytes_out 90744 97218 bytes_in 106123 97218 station_ip 37.129.97.185 97218 port 8 97218 unique_id port 97218 remote_ip 10.8.0.6 97222 username aminvpn 97222 mac 97222 bytes_out 98504 97222 bytes_in 111149 97222 station_ip 37.129.97.185 97222 port 8 97222 unique_id port 97222 remote_ip 10.8.0.6 97226 username aminvpn 97226 mac 97226 bytes_out 0 97226 bytes_in 0 97226 station_ip 5.120.108.200 97226 port 9 97226 unique_id port 97226 remote_ip 10.8.0.6 97227 username aminvpn 97227 mac 97227 bytes_out 0 97227 bytes_in 0 97227 station_ip 5.120.108.200 97227 port 8 97227 unique_id port 97227 remote_ip 10.8.0.6 97228 username aminvpn 97228 mac 97228 bytes_out 0 97228 bytes_in 0 97228 station_ip 37.129.97.185 97228 port 8 97228 unique_id port 97228 remote_ip 10.8.0.6 97230 username tahmasebi 97230 unique_id port 97230 terminate_cause User-Request 97230 bytes_out 0 97230 bytes_in 0 97230 station_ip 5.120.125.203 97230 port 15728982 97230 nas_port_type Virtual 97230 remote_ip 5.5.5.183 97231 username tahmasebi 97231 kill_reason Another user logged on this global unique id 97231 mac 97231 bytes_out 0 97231 bytes_in 0 97231 station_ip 5.120.125.203 97231 port 9 97231 unique_id port 97231 remote_ip 10.8.0.66 97232 username aminvpn 97232 mac 97232 bytes_out 90784 97232 bytes_in 114990 97232 station_ip 37.129.97.185 97232 port 8 97232 unique_id port 97232 remote_ip 10.8.0.6 97234 username tahmasebi 97234 kill_reason Another user logged on this global unique id 97234 mac 97234 bytes_out 0 97234 bytes_in 0 97234 station_ip 5.120.125.203 97234 port 9 97234 unique_id port 97243 username aminvpn 97243 mac 97243 bytes_out 0 97243 bytes_in 0 97243 station_ip 5.120.108.200 97243 port 2 97243 unique_id port 97243 remote_ip 10.8.0.6 97245 username aminvpn 97245 mac 97245 bytes_out 0 97245 bytes_in 0 97245 station_ip 5.120.108.200 97245 port 8 97245 unique_id port 97245 remote_ip 10.8.0.6 97247 username tahmasebi 97247 kill_reason Another user logged on this global unique id 97247 mac 97247 bytes_out 0 97247 bytes_in 0 97247 station_ip 5.120.125.203 97247 port 9 97247 unique_id port 97251 username tahmasebi 97251 kill_reason Another user logged on this global unique id 97251 mac 97251 bytes_out 0 97251 bytes_in 0 97251 station_ip 5.120.125.203 97251 port 9 97251 unique_id port 97252 username aminvpn 97252 mac 97252 bytes_out 0 97252 bytes_in 0 97252 station_ip 5.120.108.200 97252 port 2 97252 unique_id port 97252 remote_ip 10.8.0.6 97253 username tahmasebi 97262 username aminvpn 97211 username aminvpn 97211 mac 97211 bytes_out 0 97211 bytes_in 0 97211 station_ip 37.129.97.185 97211 port 8 97211 unique_id port 97211 remote_ip 10.8.0.6 97214 username aminvpn 97214 mac 97214 bytes_out 87649 97214 bytes_in 131495 97214 station_ip 37.129.97.185 97214 port 8 97214 unique_id port 97214 remote_ip 10.8.0.6 97221 username aminvpn 97221 mac 97221 bytes_out 0 97221 bytes_in 0 97221 station_ip 5.120.108.200 97221 port 9 97221 unique_id port 97221 remote_ip 10.8.0.6 97224 username bcboard 97224 unique_id port 97224 terminate_cause Lost-Carrier 97224 bytes_out 23881218 97224 bytes_in 745994222 97224 station_ip 113.203.108.85 97224 port 15728981 97224 nas_port_type Virtual 97224 remote_ip 5.5.5.184 97225 username aminvpn 97225 mac 97225 bytes_out 0 97225 bytes_in 0 97225 station_ip 37.129.97.185 97225 port 8 97225 unique_id port 97225 remote_ip 10.8.0.6 97235 username aminvpn 97235 mac 97235 bytes_out 0 97235 bytes_in 0 97235 station_ip 5.120.108.200 97235 port 2 97235 unique_id port 97237 username aminvpn 97237 mac 97237 bytes_out 0 97237 bytes_in 0 97237 station_ip 5.120.108.200 97237 port 2 97237 unique_id port 97237 remote_ip 10.8.0.6 97240 username tahmasebi 97240 kill_reason Another user logged on this global unique id 97240 mac 97240 bytes_out 0 97240 bytes_in 0 97240 station_ip 5.120.125.203 97240 port 9 97240 unique_id port 97242 username aminvpn 97242 mac 97242 bytes_out 110264 97242 bytes_in 316436 97242 station_ip 37.129.97.185 97242 port 8 97242 unique_id port 97242 remote_ip 10.8.0.6 97244 username aminvpn 97244 mac 97244 bytes_out 129158 97244 bytes_in 149152 97244 station_ip 37.129.97.185 97244 port 2 97244 unique_id port 97244 remote_ip 10.8.0.6 97249 username aminvpn 97249 mac 97249 bytes_out 0 97249 bytes_in 0 97249 station_ip 5.120.108.200 97249 port 8 97249 unique_id port 97249 remote_ip 10.8.0.6 97254 username tahmasebi 97254 kill_reason Another user logged on this global unique id 97254 mac 97254 bytes_out 0 97254 bytes_in 0 97254 station_ip 5.120.125.203 97254 port 9 97254 unique_id port 97255 username aminvpn 97255 mac 97255 bytes_out 0 97255 bytes_in 0 97255 station_ip 5.120.108.200 97255 port 2 97255 unique_id port 97255 remote_ip 10.8.0.6 97256 username aminvpn 97256 mac 97256 bytes_out 0 97256 bytes_in 0 97256 station_ip 5.120.108.200 97256 port 2 97256 unique_id port 97256 remote_ip 10.8.0.6 97258 username bcboard 97258 unique_id port 97258 terminate_cause Lost-Carrier 97258 bytes_out 36578490 97258 bytes_in 1169068493 97258 station_ip 37.129.241.11 97258 port 15728983 97258 nas_port_type Virtual 97258 remote_ip 5.5.5.182 97262 mac 97262 bytes_out 0 97262 bytes_in 0 97262 station_ip 5.120.108.200 97262 port 2 97262 unique_id port 97262 remote_ip 10.8.0.6 97263 username bcboard 97263 unique_id port 97263 terminate_cause User-Request 97263 bytes_out 684701 97263 bytes_in 7563761 97263 station_ip 37.129.219.225 97263 port 15728993 97263 nas_port_type Virtual 97263 remote_ip 5.5.5.181 97268 username aminvpn 97268 mac 97268 bytes_out 0 97268 bytes_in 0 97268 station_ip 5.120.108.200 97268 port 2 97268 unique_id port 97268 remote_ip 10.8.0.6 97270 username aminvpn 97270 mac 97270 bytes_out 0 97270 bytes_in 0 97270 station_ip 5.120.108.200 97270 port 2 97270 unique_id port 97270 remote_ip 10.8.0.6 97236 remote_ip 10.8.0.6 97238 username aminvpn 97238 mac 97238 bytes_out 0 97238 bytes_in 0 97238 station_ip 5.120.108.200 97238 port 2 97238 unique_id port 97238 remote_ip 10.8.0.6 97239 username aminvpn 97239 mac 97239 bytes_out 0 97239 bytes_in 0 97239 station_ip 5.120.108.200 97239 port 2 97239 unique_id port 97239 remote_ip 10.8.0.6 97241 username tahmasebi 97241 kill_reason Another user logged on this global unique id 97241 mac 97241 bytes_out 0 97241 bytes_in 0 97241 station_ip 5.120.125.203 97241 port 9 97241 unique_id port 97246 username tahmasebi 97246 kill_reason Another user logged on this global unique id 97246 mac 97246 bytes_out 0 97246 bytes_in 0 97246 station_ip 5.120.125.203 97246 port 9 97246 unique_id port 97248 username aminvpn 97248 mac 97248 bytes_out 81718 97248 bytes_in 92105 97248 station_ip 37.129.97.185 97248 port 2 97248 unique_id port 97248 remote_ip 10.8.0.6 97250 username aminvpn 97250 mac 97250 bytes_out 0 97250 bytes_in 0 97250 station_ip 5.120.108.200 97250 port 2 97250 unique_id port 97250 remote_ip 10.8.0.6 97257 username aminvpn 97257 mac 97257 bytes_out 0 97257 bytes_in 0 97257 station_ip 5.120.108.200 97257 port 2 97257 unique_id port 97257 remote_ip 10.8.0.6 97259 username tahmasebi 97259 kill_reason Another user logged on this global unique id 97259 mac 97259 bytes_out 0 97259 bytes_in 0 97259 station_ip 5.120.125.203 97259 port 9 97259 unique_id port 97260 username aminvpn 97260 mac 97260 bytes_out 0 97260 bytes_in 0 97260 station_ip 5.120.108.200 97260 port 2 97260 unique_id port 97260 remote_ip 10.8.0.6 97264 username mirzaei 97264 kill_reason Another user logged on this global unique id 97264 mac 97264 bytes_out 0 97264 bytes_in 0 97264 station_ip 5.119.107.36 97264 port 6 97264 unique_id port 97264 remote_ip 10.8.0.30 97265 username aminvpn 97265 mac 97265 bytes_out 0 97265 bytes_in 0 97265 station_ip 5.120.108.200 97265 port 2 97265 unique_id port 97265 remote_ip 10.8.0.6 97266 username aminvpn 97266 mac 97266 bytes_out 0 97266 bytes_in 0 97266 station_ip 5.120.108.200 97266 port 2 97266 unique_id port 97266 remote_ip 10.8.0.6 97269 username aminvpn 97269 mac 97269 bytes_out 0 97269 bytes_in 0 97269 station_ip 5.120.108.200 97269 port 2 97269 unique_id port 97269 remote_ip 10.8.0.6 97272 username bcboard 97272 unique_id port 97272 terminate_cause User-Request 97272 bytes_out 153575 97272 bytes_in 1457193 97272 station_ip 37.129.219.225 97272 port 15728994 97272 nas_port_type Virtual 97272 remote_ip 5.5.5.181 97273 username aminvpn 97273 mac 97273 bytes_out 0 97273 bytes_in 0 97273 station_ip 5.120.108.200 97273 port 2 97273 unique_id port 97273 remote_ip 10.8.0.6 97274 username aminvpn 97274 mac 97274 bytes_out 0 97274 bytes_in 0 97274 station_ip 5.120.108.200 97274 port 8 97274 unique_id port 97274 remote_ip 10.8.0.6 97278 username mehdizare 97278 kill_reason Another user logged on this global unique id 97278 mac 97278 bytes_out 0 97278 bytes_in 0 97278 station_ip 5.119.23.64 97278 port 2 97278 unique_id port 97282 username aminvpn 97282 mac 97282 bytes_out 0 97282 bytes_in 0 97282 station_ip 5.120.108.200 97282 port 8 97282 unique_id port 97282 remote_ip 10.8.0.6 97283 username aminvpn 97283 mac 97283 bytes_out 0 97283 bytes_in 0 97283 station_ip 5.120.108.200 97283 port 8 97253 kill_reason Another user logged on this global unique id 97253 mac 97253 bytes_out 0 97253 bytes_in 0 97253 station_ip 5.120.125.203 97253 port 9 97253 unique_id port 97261 username tahmasebi 97261 mac 97261 bytes_out 0 97261 bytes_in 0 97261 station_ip 5.120.125.203 97261 port 9 97261 unique_id port 97267 username aminvpn 97267 mac 97267 bytes_out 0 97267 bytes_in 0 97267 station_ip 5.120.108.200 97267 port 2 97267 unique_id port 97267 remote_ip 10.8.0.6 97271 username aminvpn 97271 mac 97271 bytes_out 0 97271 bytes_in 0 97271 station_ip 5.120.108.200 97271 port 2 97271 unique_id port 97271 remote_ip 10.8.0.6 97275 username aminvpn 97275 mac 97275 bytes_out 0 97275 bytes_in 0 97275 station_ip 5.120.108.200 97275 port 8 97275 unique_id port 97275 remote_ip 10.8.0.6 97276 username aminvpn 97276 mac 97276 bytes_out 0 97276 bytes_in 0 97276 station_ip 5.120.108.200 97276 port 8 97276 unique_id port 97276 remote_ip 10.8.0.6 97279 username aminvpn 97279 mac 97279 bytes_out 0 97279 bytes_in 0 97279 station_ip 5.120.108.200 97279 port 8 97279 unique_id port 97279 remote_ip 10.8.0.6 97280 username aminvpn 97280 mac 97280 bytes_out 0 97280 bytes_in 0 97280 station_ip 5.120.108.200 97280 port 8 97280 unique_id port 97280 remote_ip 10.8.0.6 97284 username aminvpn 97284 mac 97284 bytes_out 0 97284 bytes_in 0 97284 station_ip 5.120.108.200 97284 port 8 97284 unique_id port 97284 remote_ip 10.8.0.6 97286 username aminvpn 97286 mac 97286 bytes_out 0 97286 bytes_in 0 97286 station_ip 5.120.108.200 97286 port 8 97286 unique_id port 97286 remote_ip 10.8.0.6 97290 username aminvpn 97290 mac 97290 bytes_out 0 97290 bytes_in 0 97290 station_ip 5.120.108.200 97290 port 8 97290 unique_id port 97290 remote_ip 10.8.0.6 97294 username aminvpn 97294 mac 97294 bytes_out 0 97294 bytes_in 0 97294 station_ip 5.120.108.200 97294 port 8 97294 unique_id port 97294 remote_ip 10.8.0.6 97302 username aminvpn 97302 mac 97302 bytes_out 0 97302 bytes_in 0 97302 station_ip 5.120.108.200 97302 port 9 97302 unique_id port 97302 remote_ip 10.8.0.6 97303 username aminvpn 97303 mac 97303 bytes_out 0 97303 bytes_in 0 97303 station_ip 5.211.187.216 97303 port 8 97303 unique_id port 97303 remote_ip 10.8.0.6 97304 username aminvpn 97304 mac 97304 bytes_out 0 97304 bytes_in 0 97304 station_ip 5.120.108.200 97304 port 9 97304 unique_id port 97304 remote_ip 10.8.0.6 97305 username aminvpn 97305 mac 97305 bytes_out 0 97305 bytes_in 0 97305 station_ip 5.211.187.216 97305 port 8 97305 unique_id port 97305 remote_ip 10.8.0.6 97307 username aminvpn 97307 mac 97307 bytes_out 0 97307 bytes_in 0 97307 station_ip 5.120.108.200 97307 port 8 97307 unique_id port 97307 remote_ip 10.8.0.6 97311 username mehdizare 97311 mac 97311 bytes_out 8622 97311 bytes_in 11513 97311 station_ip 5.119.23.64 97311 port 5 97311 unique_id port 97311 remote_ip 10.8.1.22 97312 username aminvpn 97312 mac 97312 bytes_out 0 97312 bytes_in 0 97312 station_ip 5.211.187.216 97312 port 8 97312 unique_id port 97312 remote_ip 10.8.0.6 97314 username mirzaei 97314 mac 97314 bytes_out 0 97314 bytes_in 0 97314 station_ip 5.119.107.36 97314 port 6 97314 unique_id port 97315 username aminvpn 97277 username mehdizare 97277 kill_reason Another user logged on this global unique id 97277 mac 97277 bytes_out 0 97277 bytes_in 0 97277 station_ip 5.119.23.64 97277 port 2 97277 unique_id port 97277 remote_ip 10.8.0.22 97281 username aminvpn 97281 mac 97281 bytes_out 0 97281 bytes_in 0 97281 station_ip 5.120.108.200 97281 port 8 97281 unique_id port 97281 remote_ip 10.8.0.6 97285 username aminvpn 97285 mac 97285 bytes_out 0 97285 bytes_in 0 97285 station_ip 5.120.108.200 97285 port 8 97285 unique_id port 97285 remote_ip 10.8.0.6 97287 username aminvpn 97287 mac 97287 bytes_out 0 97287 bytes_in 0 97287 station_ip 5.120.108.200 97287 port 8 97287 unique_id port 97287 remote_ip 10.8.0.6 97291 username aminvpn 97291 mac 97291 bytes_out 0 97291 bytes_in 0 97291 station_ip 5.120.108.200 97291 port 8 97291 unique_id port 97291 remote_ip 10.8.0.6 97292 username aminvpn 97292 mac 97292 bytes_out 0 97292 bytes_in 0 97292 station_ip 5.120.108.200 97292 port 8 97292 unique_id port 97292 remote_ip 10.8.0.6 97295 username aminvpn 97295 mac 97295 bytes_out 0 97295 bytes_in 0 97295 station_ip 5.120.108.200 97295 port 8 97295 unique_id port 97295 remote_ip 10.8.0.6 97296 username aminvpn 97296 mac 97296 bytes_out 0 97296 bytes_in 0 97296 station_ip 5.120.108.200 97296 port 8 97296 unique_id port 97296 remote_ip 10.8.0.6 97299 username aminvpn 97299 mac 97299 bytes_out 0 97299 bytes_in 0 97299 station_ip 5.120.108.200 97299 port 9 97299 unique_id port 97299 remote_ip 10.8.0.6 97300 username aminvpn 97300 mac 97300 bytes_out 0 97300 bytes_in 0 97300 station_ip 5.120.108.200 97300 port 8 97300 unique_id port 97300 remote_ip 10.8.0.6 97301 username aminvpn 97301 mac 97301 bytes_out 532389 97301 bytes_in 2358191 97301 station_ip 5.211.187.216 97301 port 8 97301 unique_id port 97301 remote_ip 10.8.0.6 97309 username aminvpn 97309 mac 97309 bytes_out 0 97309 bytes_in 0 97309 station_ip 5.120.108.200 97309 port 9 97309 unique_id port 97309 remote_ip 10.8.0.6 97310 username mehdizare 97310 mac 97310 bytes_out 0 97310 bytes_in 0 97310 station_ip 5.119.23.64 97310 port 2 97310 unique_id port 97317 username madadi2 97317 mac 97317 bytes_out 0 97317 bytes_in 0 97317 station_ip 5.119.41.65 97317 port 6 97317 unique_id port 97317 remote_ip 10.8.0.26 97322 username aminvpn 97322 mac 97322 bytes_out 0 97322 bytes_in 0 97322 station_ip 5.120.108.200 97322 port 2 97322 unique_id port 97322 remote_ip 10.8.0.6 97328 username aminvpn 97328 mac 97328 bytes_out 5997 97328 bytes_in 9702 97328 station_ip 5.211.187.216 97328 port 2 97328 unique_id port 97328 remote_ip 10.8.0.6 97330 username aminvpn 97330 mac 97330 bytes_out 0 97330 bytes_in 0 97330 station_ip 5.120.108.200 97330 port 6 97330 unique_id port 97330 remote_ip 10.8.0.6 97331 username aminvpn 97331 mac 97331 bytes_out 0 97331 bytes_in 0 97331 station_ip 5.120.108.200 97331 port 2 97331 unique_id port 97331 remote_ip 10.8.0.6 97332 username aminvpn 97332 mac 97332 bytes_out 0 97332 bytes_in 0 97332 station_ip 5.120.108.200 97332 port 2 97332 unique_id port 97332 remote_ip 10.8.0.6 97333 username aminvpn 97333 mac 97333 bytes_out 0 97333 bytes_in 0 97333 station_ip 5.120.108.200 97283 unique_id port 97283 remote_ip 10.8.0.6 97288 username aminvpn 97288 mac 97288 bytes_out 0 97288 bytes_in 0 97288 station_ip 5.120.108.200 97288 port 8 97288 unique_id port 97288 remote_ip 10.8.0.6 97289 username aminvpn 97289 mac 97289 bytes_out 0 97289 bytes_in 0 97289 station_ip 5.120.108.200 97289 port 8 97289 unique_id port 97289 remote_ip 10.8.0.6 97293 username aminvpn 97293 mac 97293 bytes_out 0 97293 bytes_in 0 97293 station_ip 5.120.108.200 97293 port 8 97293 unique_id port 97293 remote_ip 10.8.0.6 97297 username aminvpn 97297 mac 97297 bytes_out 0 97297 bytes_in 0 97297 station_ip 5.120.108.200 97297 port 8 97297 unique_id port 97297 remote_ip 10.8.0.6 97298 username aminvpn 97298 mac 97298 bytes_out 0 97298 bytes_in 0 97298 station_ip 5.211.187.216 97298 port 8 97298 unique_id port 97298 remote_ip 10.8.0.6 97306 username aminvpn 97306 mac 97306 bytes_out 0 97306 bytes_in 0 97306 station_ip 5.120.108.200 97306 port 9 97306 unique_id port 97306 remote_ip 10.8.0.6 97308 username aminvpn 97308 mac 97308 bytes_out 0 97308 bytes_in 0 97308 station_ip 5.211.187.216 97308 port 8 97308 unique_id port 97308 remote_ip 10.8.0.6 97313 username aminvpn 97313 mac 97313 bytes_out 0 97313 bytes_in 0 97313 station_ip 5.120.108.200 97313 port 2 97313 unique_id port 97313 remote_ip 10.8.0.6 97316 username aminvpn 97316 mac 97316 bytes_out 0 97316 bytes_in 0 97316 station_ip 5.120.108.200 97316 port 6 97316 unique_id port 97316 remote_ip 10.8.0.6 97319 username aminvpn 97319 mac 97319 bytes_out 0 97319 bytes_in 0 97319 station_ip 5.120.108.200 97319 port 6 97319 unique_id port 97319 remote_ip 10.8.0.6 97320 username aminvpn 97320 mac 97320 bytes_out 0 97320 bytes_in 0 97320 station_ip 5.120.108.200 97320 port 2 97320 unique_id port 97320 remote_ip 10.8.0.6 97323 username aminvpn 97323 mac 97323 bytes_out 0 97323 bytes_in 0 97323 station_ip 5.120.108.200 97323 port 2 97323 unique_id port 97323 remote_ip 10.8.0.6 97324 username aminvpn 97324 mac 97324 bytes_out 55070 97324 bytes_in 71995 97324 station_ip 5.211.187.216 97324 port 2 97324 unique_id port 97324 remote_ip 10.8.0.6 97327 username aminvpn 97327 mac 97327 bytes_out 0 97327 bytes_in 0 97327 station_ip 5.120.108.200 97327 port 6 97327 unique_id port 97327 remote_ip 10.8.0.6 97336 username alireza1 97336 unique_id port 97336 terminate_cause User-Request 97336 bytes_out 0 97336 bytes_in 0 97336 station_ip 5.120.27.69 97336 port 15728998 97336 nas_port_type Virtual 97336 remote_ip 5.5.5.195 97340 username aminvpn 97340 unique_id port 97340 terminate_cause Lost-Carrier 97340 bytes_out 1560956 97340 bytes_in 16497775 97340 station_ip 31.57.142.141 97340 port 15728996 97340 nas_port_type Virtual 97340 remote_ip 5.5.5.179 97341 username aminvpn 97341 mac 97341 bytes_out 50507 97341 bytes_in 72782 97341 station_ip 5.211.187.216 97341 port 8 97341 unique_id port 97341 remote_ip 10.8.0.6 97343 username aminvpn 97343 mac 97343 bytes_out 0 97343 bytes_in 0 97343 station_ip 5.120.108.200 97343 port 6 97343 unique_id port 97343 remote_ip 10.8.0.6 97344 username aminvpn 97344 mac 97344 bytes_out 0 97344 bytes_in 0 97344 station_ip 5.120.108.200 97344 port 6 97344 unique_id port 97344 remote_ip 10.8.0.6 97315 mac 97315 bytes_out 0 97315 bytes_in 0 97315 station_ip 5.211.187.216 97315 port 2 97315 unique_id port 97315 remote_ip 10.8.0.6 97318 username aminvpn 97318 mac 97318 bytes_out 0 97318 bytes_in 0 97318 station_ip 5.211.187.216 97318 port 2 97318 unique_id port 97318 remote_ip 10.8.0.6 97321 username aminvpn 97321 mac 97321 bytes_out 0 97321 bytes_in 0 97321 station_ip 5.120.108.200 97321 port 2 97321 unique_id port 97321 remote_ip 10.8.0.6 97325 username aminvpn 97325 mac 97325 bytes_out 0 97325 bytes_in 0 97325 station_ip 5.120.108.200 97325 port 6 97325 unique_id port 97325 remote_ip 10.8.0.6 97326 username aminvpn 97326 mac 97326 bytes_out 12655 97326 bytes_in 17588 97326 station_ip 5.211.187.216 97326 port 2 97326 unique_id port 97326 remote_ip 10.8.0.6 97329 username aminvpn 97329 mac 97329 bytes_out 61467 97329 bytes_in 50026 97329 station_ip 5.211.187.216 97329 port 2 97329 unique_id port 97329 remote_ip 10.8.0.6 97334 username aminvpn 97334 mac 97334 bytes_out 0 97334 bytes_in 0 97334 station_ip 5.120.108.200 97334 port 6 97334 unique_id port 97334 remote_ip 10.8.0.6 97337 username alireza1 97337 unique_id port 97337 terminate_cause User-Request 97337 bytes_out 0 97337 bytes_in 0 97337 station_ip 5.120.27.69 97337 port 15728999 97337 nas_port_type Virtual 97337 remote_ip 5.5.5.195 97339 username madadi2 97339 mac 97339 bytes_out 266551 97339 bytes_in 1979624 97339 station_ip 5.120.5.81 97339 port 6 97339 unique_id port 97339 remote_ip 10.8.0.26 97345 username aminvpn 97345 mac 97345 bytes_out 0 97345 bytes_in 0 97345 station_ip 5.211.187.216 97345 port 6 97345 unique_id port 97345 remote_ip 10.8.0.6 97351 username madadi2 97351 mac 97351 bytes_out 0 97351 bytes_in 0 97351 station_ip 5.119.33.103 97351 port 8 97351 unique_id port 97351 remote_ip 10.8.0.26 97356 username aminvpn 97356 mac 97356 bytes_out 0 97356 bytes_in 0 97356 station_ip 5.211.187.216 97356 port 6 97356 unique_id port 97356 remote_ip 10.8.0.6 97361 username aminvpn 97361 mac 97361 bytes_out 0 97361 bytes_in 0 97361 station_ip 5.120.108.200 97361 port 6 97361 unique_id port 97361 remote_ip 10.8.0.6 97363 username madadi2 97363 mac 97363 bytes_out 0 97363 bytes_in 0 97363 station_ip 5.119.60.233 97363 port 8 97363 unique_id port 97363 remote_ip 10.8.0.26 97364 username aminvpn 97364 mac 97364 bytes_out 0 97364 bytes_in 0 97364 station_ip 5.120.108.200 97364 port 6 97364 unique_id port 97364 remote_ip 10.8.0.6 97365 username aminvpn 97365 mac 97365 bytes_out 0 97365 bytes_in 0 97365 station_ip 5.120.108.200 97365 port 6 97365 unique_id port 97365 remote_ip 10.8.0.6 97368 username mehdizare 97368 mac 97368 bytes_out 0 97368 bytes_in 0 97368 station_ip 5.119.23.64 97368 port 5 97368 unique_id port 97368 remote_ip 10.8.1.22 97370 username aminvpn 97370 mac 97370 bytes_out 0 97370 bytes_in 0 97370 station_ip 5.120.108.200 97370 port 6 97370 unique_id port 97370 remote_ip 10.8.0.6 97373 username mehdizare 97373 mac 97373 bytes_out 6926 97373 bytes_in 14003 97373 station_ip 5.119.23.64 97373 port 5 97373 unique_id port 97373 remote_ip 10.8.1.22 97377 username aminvpn 97377 mac 97377 bytes_out 0 97377 bytes_in 0 97377 station_ip 5.120.108.200 97333 port 6 97333 unique_id port 97333 remote_ip 10.8.0.6 97335 username bcboard 97335 unique_id port 97335 terminate_cause User-Request 97335 bytes_out 49007 97335 bytes_in 33682 97335 station_ip 37.129.175.141 97335 port 15728995 97335 nas_port_type Virtual 97335 remote_ip 5.5.5.180 97338 username alireza1 97338 unique_id port 97338 terminate_cause User-Request 97338 bytes_out 0 97338 bytes_in 0 97338 station_ip 5.120.27.69 97338 port 15729000 97338 nas_port_type Virtual 97338 remote_ip 5.5.5.195 97342 username aminvpn 97342 mac 97342 bytes_out 0 97342 bytes_in 0 97342 station_ip 5.120.108.200 97342 port 6 97342 unique_id port 97342 remote_ip 10.8.0.6 97347 username aminvpn 97347 mac 97347 bytes_out 0 97347 bytes_in 0 97347 station_ip 5.120.108.200 97347 port 9 97347 unique_id port 97347 remote_ip 10.8.0.6 97349 username aminvpn 97349 mac 97349 bytes_out 0 97349 bytes_in 0 97349 station_ip 5.120.108.200 97349 port 6 97349 unique_id port 97349 remote_ip 10.8.0.6 97354 username aminvpn 97354 mac 97354 bytes_out 0 97354 bytes_in 0 97354 station_ip 5.120.108.200 97354 port 8 97354 unique_id port 97354 remote_ip 10.8.0.6 97355 username aminvpn 97355 mac 97355 bytes_out 0 97355 bytes_in 0 97355 station_ip 5.120.108.200 97355 port 6 97355 unique_id port 97355 remote_ip 10.8.0.6 97358 username ahmadi 97358 unique_id port 97358 terminate_cause User-Request 97358 bytes_out 71539 97358 bytes_in 895518 97358 station_ip 37.129.75.128 97358 port 15729001 97358 nas_port_type Virtual 97358 remote_ip 5.5.5.178 97359 username aminvpn 97359 mac 97359 bytes_out 0 97359 bytes_in 0 97359 station_ip 5.211.187.216 97359 port 6 97359 unique_id port 97359 remote_ip 10.8.0.6 97366 username mehdizare 97366 mac 97366 bytes_out 0 97366 bytes_in 0 97366 station_ip 5.119.23.64 97366 port 5 97366 unique_id port 97366 remote_ip 10.8.1.22 97367 username mehdizare 97367 mac 97367 bytes_out 0 97367 bytes_in 0 97367 station_ip 5.119.23.64 97367 port 5 97367 unique_id port 97367 remote_ip 10.8.1.22 97371 username aminvpn 97371 mac 97371 bytes_out 0 97371 bytes_in 0 97371 station_ip 5.120.108.200 97371 port 6 97371 unique_id port 97371 remote_ip 10.8.0.6 97372 username amir 97372 mac 97372 bytes_out 0 97372 bytes_in 0 97372 station_ip 46.225.214.171 97372 port 6 97372 unique_id port 97372 remote_ip 10.8.0.54 97375 username mehdizare 97375 mac 97375 bytes_out 14277 97375 bytes_in 28901 97375 station_ip 5.119.23.64 97375 port 10 97375 unique_id port 97375 remote_ip 10.8.0.22 97378 username jamali 97378 mac 97378 bytes_out 0 97378 bytes_in 0 97378 station_ip 37.129.7.23 97378 port 8 97378 unique_id port 97378 remote_ip 10.8.0.62 97383 username alipour 97383 mac 97383 bytes_out 0 97383 bytes_in 0 97383 station_ip 83.122.134.230 97383 port 9 97383 unique_id port 97383 remote_ip 10.8.0.70 97384 username aminvpn 97384 mac 97384 bytes_out 0 97384 bytes_in 0 97384 station_ip 5.120.108.200 97384 port 9 97384 unique_id port 97384 remote_ip 10.8.0.6 97387 username aminvpn 97387 mac 97387 bytes_out 0 97387 bytes_in 0 97387 station_ip 5.120.108.200 97387 port 10 97387 unique_id port 97387 remote_ip 10.8.0.6 97390 username alipour 97390 mac 97390 bytes_out 0 97390 bytes_in 0 97390 station_ip 83.122.134.230 97390 port 10 97346 username aminvpn 97346 mac 97346 bytes_out 445973 97346 bytes_in 267589 97346 station_ip 5.211.187.216 97346 port 6 97346 unique_id port 97346 remote_ip 10.8.0.6 97348 username aminvpn 97348 mac 97348 bytes_out 0 97348 bytes_in 0 97348 station_ip 5.120.108.200 97348 port 6 97348 unique_id port 97348 remote_ip 10.8.0.6 97350 username aminvpn 97350 mac 97350 bytes_out 0 97350 bytes_in 0 97350 station_ip 5.120.108.200 97350 port 6 97350 unique_id port 97350 remote_ip 10.8.0.6 97352 username madadi2 97352 mac 97352 bytes_out 0 97352 bytes_in 0 97352 station_ip 5.120.4.173 97352 port 8 97352 unique_id port 97352 remote_ip 10.8.0.26 97353 username aminvpn 97353 mac 97353 bytes_out 83893 97353 bytes_in 109736 97353 station_ip 5.211.187.216 97353 port 6 97353 unique_id port 97353 remote_ip 10.8.0.6 97357 username aminvpn 97357 mac 97357 bytes_out 0 97357 bytes_in 0 97357 station_ip 5.120.108.200 97357 port 8 97357 unique_id port 97357 remote_ip 10.8.0.6 97360 username aminvpn 97360 mac 97360 bytes_out 0 97360 bytes_in 0 97360 station_ip 5.120.108.200 97360 port 8 97360 unique_id port 97360 remote_ip 10.8.0.6 97362 username aminvpn 97362 mac 97362 bytes_out 38153 97362 bytes_in 56916 97362 station_ip 5.211.187.216 97362 port 6 97362 unique_id port 97362 remote_ip 10.8.0.6 97369 username mehdizare 97369 kill_reason Another user logged on this global unique id 97369 mac 97369 bytes_out 0 97369 bytes_in 0 97369 station_ip 5.119.23.64 97369 port 6 97369 unique_id port 97369 remote_ip 10.8.1.22 97374 username mehdizare 97374 mac 97374 bytes_out 0 97374 bytes_in 0 97374 station_ip 5.119.23.64 97374 port 9 97374 unique_id port 97374 remote_ip 10.8.0.22 97376 username aminvpn 97376 mac 97376 bytes_out 0 97376 bytes_in 0 97376 station_ip 5.120.108.200 97376 port 10 97376 unique_id port 97376 remote_ip 10.8.0.6 97379 username aminvpn 97379 mac 97379 bytes_out 0 97379 bytes_in 0 97379 station_ip 5.120.108.200 97379 port 8 97379 unique_id port 97379 remote_ip 10.8.0.6 97380 username bcboard 97380 unique_id port 97380 terminate_cause Lost-Carrier 97380 bytes_out 170836 97380 bytes_in 194910 97380 station_ip 37.129.175.141 97380 port 15728997 97380 nas_port_type Virtual 97380 remote_ip 5.5.5.180 97382 username aminvpn 97382 mac 97382 bytes_out 0 97382 bytes_in 0 97382 station_ip 5.120.108.200 97382 port 11 97382 unique_id port 97382 remote_ip 10.8.0.6 97385 username jamali 97385 mac 97385 bytes_out 154237 97385 bytes_in 548638 97385 station_ip 37.129.7.23 97385 port 10 97385 unique_id port 97385 remote_ip 10.8.0.62 97386 username alipour 97386 mac 97386 bytes_out 0 97386 bytes_in 0 97386 station_ip 83.122.134.230 97386 port 5 97386 unique_id port 97386 remote_ip 10.8.1.38 97388 username alipour 97388 mac 97388 bytes_out 0 97388 bytes_in 0 97388 station_ip 83.122.134.230 97388 port 5 97388 unique_id port 97388 remote_ip 10.8.1.38 97389 username khalili 97389 unique_id port 97389 terminate_cause User-Request 97389 bytes_out 0 97389 bytes_in 0 97389 station_ip 5.119.225.82 97389 port 15729003 97389 nas_port_type Virtual 97389 remote_ip 5.5.5.176 97391 username amir 97391 kill_reason Another user logged on this global unique id 97391 mac 97391 bytes_out 0 97391 bytes_in 0 97391 station_ip 46.225.214.171 97391 port 6 97377 port 10 97377 unique_id port 97377 remote_ip 10.8.0.6 97381 username alipour 97381 mac 97381 bytes_out 2025299 97381 bytes_in 11085632 97381 station_ip 83.122.134.230 97381 port 9 97381 unique_id port 97381 remote_ip 10.8.0.70 97396 username alipour 97396 mac 97396 bytes_out 290986 97396 bytes_in 2720706 97396 station_ip 83.122.134.230 97396 port 5 97396 unique_id port 97396 remote_ip 10.8.1.38 97397 username aminvpn 97397 mac 97397 bytes_out 0 97397 bytes_in 0 97397 station_ip 5.120.108.200 97397 port 5 97397 unique_id port 97397 remote_ip 10.8.1.26 97398 username aminvpn 97398 mac 97398 bytes_out 0 97398 bytes_in 0 97398 station_ip 5.120.108.200 97398 port 5 97398 unique_id port 97398 remote_ip 10.8.1.26 97400 username mohammadmahdi 97400 kill_reason Another user logged on this global unique id 97400 mac 97400 bytes_out 0 97400 bytes_in 0 97400 station_ip 5.119.212.55 97400 port 10 97400 unique_id port 97400 remote_ip 10.8.0.34 97401 username mehdizare 97401 mac 97401 bytes_out 6780 97401 bytes_in 9688 97401 station_ip 5.119.23.64 97401 port 11 97401 unique_id port 97401 remote_ip 10.8.0.22 97402 username amir 97402 mac 97402 bytes_out 0 97402 bytes_in 0 97402 station_ip 46.225.214.171 97402 port 6 97402 unique_id port 97405 username mohammadmahdi 97405 mac 97405 bytes_out 0 97405 bytes_in 0 97405 station_ip 5.119.212.55 97405 port 10 97405 unique_id port 97407 username forozande 97407 mac 97407 bytes_out 370821 97407 bytes_in 1860751 97407 station_ip 46.225.209.3 97407 port 9 97407 unique_id port 97407 remote_ip 10.8.0.74 97411 username mohammadmahdi 97411 kill_reason Another user logged on this global unique id 97411 mac 97411 bytes_out 0 97411 bytes_in 0 97411 station_ip 5.120.8.160 97411 port 6 97411 unique_id port 97411 remote_ip 10.8.0.34 97414 username mohammadmahdi 97414 kill_reason Another user logged on this global unique id 97414 mac 97414 bytes_out 0 97414 bytes_in 0 97414 station_ip 5.120.8.160 97414 port 6 97414 unique_id port 97419 username mohammadmahdi 97419 mac 97419 bytes_out 0 97419 bytes_in 0 97419 station_ip 5.120.8.160 97419 port 6 97419 unique_id port 97424 username khalili 97424 unique_id port 97424 terminate_cause User-Request 97424 bytes_out 0 97424 bytes_in 0 97424 station_ip 5.119.225.82 97424 port 15729006 97424 nas_port_type Virtual 97424 remote_ip 5.5.5.176 97425 username aminvpn 97425 mac 97425 bytes_out 0 97425 bytes_in 0 97425 station_ip 5.120.108.200 97425 port 6 97425 unique_id port 97425 remote_ip 10.8.0.6 97427 username alihosseini 97427 mac 97427 bytes_out 0 97427 bytes_in 0 97427 station_ip 5.126.231.185 97427 port 10 97427 unique_id port 97427 remote_ip 10.8.0.14 97432 username askari 97432 mac 97432 bytes_out 0 97432 bytes_in 0 97432 station_ip 5.119.186.137 97432 port 6 97432 unique_id port 97435 username aminvpn 97435 mac 97435 bytes_out 0 97435 bytes_in 0 97435 station_ip 5.120.108.200 97435 port 9 97435 unique_id port 97435 remote_ip 10.8.0.6 97441 username mehdizare 97441 mac 97441 bytes_out 0 97441 bytes_in 0 97441 station_ip 5.119.23.64 97441 port 8 97441 unique_id port 97441 remote_ip 10.8.0.22 97443 username aminvpn 97443 mac 97443 bytes_out 0 97443 bytes_in 0 97443 station_ip 5.120.108.200 97443 port 14 97443 unique_id port 97443 remote_ip 10.8.0.6 97390 unique_id port 97390 remote_ip 10.8.0.70 97393 username mehdizare 97393 mac 97393 bytes_out 0 97393 bytes_in 0 97393 station_ip 5.119.23.64 97393 port 8 97393 unique_id port 97393 remote_ip 10.8.0.22 97394 username alirr 97394 unique_id port 97394 terminate_cause User-Request 97394 bytes_out 1315442 97394 bytes_in 14374156 97394 station_ip 5.119.153.243 97394 port 15729002 97394 nas_port_type Virtual 97394 remote_ip 5.5.5.177 97408 username forozande 97408 mac 97408 bytes_out 0 97408 bytes_in 0 97408 station_ip 83.123.233.79 97408 port 10 97408 unique_id port 97408 remote_ip 10.8.0.74 97410 username mehdizare 97410 mac 97410 bytes_out 0 97410 bytes_in 0 97410 station_ip 5.119.23.64 97410 port 8 97410 unique_id port 97410 remote_ip 10.8.0.22 97413 username aminvpn 97413 mac 97413 bytes_out 0 97413 bytes_in 0 97413 station_ip 5.120.108.200 97413 port 10 97413 unique_id port 97413 remote_ip 10.8.0.6 97415 username mohammadmahdi 97415 kill_reason Another user logged on this global unique id 97415 mac 97415 bytes_out 0 97415 bytes_in 0 97415 station_ip 5.120.8.160 97415 port 6 97415 unique_id port 97418 username aminvpn 97418 unique_id port 97418 terminate_cause User-Request 97418 bytes_out 5995489 97418 bytes_in 41159094 97418 station_ip 83.123.63.252 97418 port 15729004 97418 nas_port_type Virtual 97418 remote_ip 5.5.5.175 97420 username mahdiyehalizadeh 97420 mac 97420 bytes_out 5172 97420 bytes_in 5317 97420 station_ip 83.122.40.169 97420 port 10 97420 unique_id port 97420 remote_ip 10.8.0.42 97421 username aminvpn 97421 mac 97421 bytes_out 0 97421 bytes_in 0 97421 station_ip 5.120.108.200 97421 port 6 97421 unique_id port 97421 remote_ip 10.8.0.6 97426 username aminvpn 97426 mac 97426 bytes_out 0 97426 bytes_in 0 97426 station_ip 5.120.108.200 97426 port 6 97426 unique_id port 97426 remote_ip 10.8.0.6 97428 username ahmadipour 97428 unique_id port 97428 terminate_cause Lost-Carrier 97428 bytes_out 699552 97428 bytes_in 15252806 97428 station_ip 113.203.74.115 97428 port 15729005 97428 nas_port_type Virtual 97428 remote_ip 5.5.5.174 97429 username askari 97429 kill_reason Another user logged on this global unique id 97429 mac 97429 bytes_out 0 97429 bytes_in 0 97429 station_ip 5.119.186.137 97429 port 6 97429 unique_id port 97429 remote_ip 10.8.0.38 97431 username forozande 97431 mac 97431 bytes_out 4091238 97431 bytes_in 45564839 97431 station_ip 83.123.110.187 97431 port 9 97431 unique_id port 97431 remote_ip 10.8.0.74 97433 username mehdizare 97433 mac 97433 bytes_out 0 97433 bytes_in 0 97433 station_ip 5.119.23.64 97433 port 8 97433 unique_id port 97433 remote_ip 10.8.0.22 97436 username aminvpn 97436 mac 97436 bytes_out 0 97436 bytes_in 0 97436 station_ip 5.120.108.200 97436 port 9 97436 unique_id port 97436 remote_ip 10.8.0.6 97437 username aminvpn 97437 mac 97437 bytes_out 0 97437 bytes_in 0 97437 station_ip 5.120.108.200 97437 port 9 97437 unique_id port 97437 remote_ip 10.8.0.6 97438 username alirr 97438 unique_id port 97438 terminate_cause Lost-Carrier 97438 bytes_out 217401 97438 bytes_in 1814845 97438 station_ip 5.119.96.124 97438 port 15729007 97438 nas_port_type Virtual 97438 remote_ip 5.5.5.173 97440 username askari 97440 mac 97440 bytes_out 2380891 97440 bytes_in 36485334 97440 station_ip 5.119.186.137 97440 port 6 97440 unique_id port 97440 remote_ip 10.8.0.38 97442 username aminvpn 97391 unique_id port 97392 username aminvpn 97392 mac 97392 bytes_out 0 97392 bytes_in 0 97392 station_ip 5.120.108.200 97392 port 6 97392 unique_id port 97392 remote_ip 10.8.1.26 97395 username aminvpn 97395 mac 97395 bytes_out 0 97395 bytes_in 0 97395 station_ip 5.120.108.200 97395 port 6 97395 unique_id port 97395 remote_ip 10.8.1.26 97399 username mehdizare 97399 mac 97399 bytes_out 1123759 97399 bytes_in 21286477 97399 station_ip 5.119.23.64 97399 port 8 97399 unique_id port 97399 remote_ip 10.8.0.22 97403 username jamali 97403 mac 97403 bytes_out 857539 97403 bytes_in 4172867 97403 station_ip 37.129.7.23 97403 port 9 97403 unique_id port 97403 remote_ip 10.8.0.62 97404 username aminvpn 97404 mac 97404 bytes_out 0 97404 bytes_in 0 97404 station_ip 5.120.108.200 97404 port 6 97404 unique_id port 97404 remote_ip 10.8.0.6 97406 username mohammadmahdi 97406 mac 97406 bytes_out 0 97406 bytes_in 0 97406 station_ip 5.120.8.160 97406 port 6 97406 unique_id port 97406 remote_ip 10.8.0.34 97409 username aminvpn 97409 mac 97409 bytes_out 0 97409 bytes_in 0 97409 station_ip 5.120.108.200 97409 port 10 97409 unique_id port 97409 remote_ip 10.8.0.6 97412 username aminvpn 97412 mac 97412 bytes_out 0 97412 bytes_in 0 97412 station_ip 5.120.108.200 97412 port 10 97412 unique_id port 97412 remote_ip 10.8.0.6 97416 username mehdizare 97416 kill_reason Another user logged on this global unique id 97416 mac 97416 bytes_out 0 97416 bytes_in 0 97416 station_ip 5.119.23.64 97416 port 8 97416 unique_id port 97416 remote_ip 10.8.0.22 97417 username aminvpn 97417 mac 97417 bytes_out 0 97417 bytes_in 0 97417 station_ip 5.120.108.200 97417 port 10 97417 unique_id port 97417 remote_ip 10.8.0.6 97422 username mehdizare 97422 mac 97422 bytes_out 0 97422 bytes_in 0 97422 station_ip 5.119.23.64 97422 port 8 97422 unique_id port 97423 username mahdiyehalizadeh 97423 mac 97423 bytes_out 0 97423 bytes_in 0 97423 station_ip 83.122.40.169 97423 port 6 97423 unique_id port 97423 remote_ip 10.8.0.42 97430 username askari 97430 kill_reason Another user logged on this global unique id 97430 mac 97430 bytes_out 0 97430 bytes_in 0 97430 station_ip 5.119.186.137 97430 port 6 97430 unique_id port 97434 username aminvpn 97434 mac 97434 bytes_out 0 97434 bytes_in 0 97434 station_ip 5.120.108.200 97434 port 9 97434 unique_id port 97434 remote_ip 10.8.0.6 97439 username mehdizare 97439 mac 97439 bytes_out 0 97439 bytes_in 0 97439 station_ip 5.119.23.64 97439 port 8 97439 unique_id port 97439 remote_ip 10.8.0.22 97449 username aminvpn 97449 mac 97449 bytes_out 0 97449 bytes_in 0 97449 station_ip 5.120.108.200 97449 port 6 97449 unique_id port 97449 remote_ip 10.8.0.6 97450 username aminvpn 97450 mac 97450 bytes_out 0 97450 bytes_in 0 97450 station_ip 83.123.63.252 97450 port 6 97450 unique_id port 97450 remote_ip 10.8.0.6 97454 username aminvpn 97454 mac 97454 bytes_out 0 97454 bytes_in 0 97454 station_ip 83.123.63.252 97454 port 6 97454 unique_id port 97454 remote_ip 10.8.0.6 97456 username mehdizare 97456 mac 97456 bytes_out 0 97456 bytes_in 0 97456 station_ip 5.119.23.64 97456 port 12 97456 unique_id port 97456 remote_ip 10.8.0.22 97458 username forozande 97458 mac 97458 bytes_out 130708 97442 mac 97442 bytes_out 0 97442 bytes_in 0 97442 station_ip 83.123.63.252 97442 port 8 97442 unique_id port 97442 remote_ip 10.8.0.6 97446 username askari 97446 mac 97446 bytes_out 0 97446 bytes_in 0 97446 station_ip 5.119.186.137 97446 port 6 97446 unique_id port 97446 remote_ip 10.8.0.38 97447 username mohammadmahdi 97447 mac 97447 bytes_out 0 97447 bytes_in 0 97447 station_ip 5.120.8.160 97447 port 9 97447 unique_id port 97447 remote_ip 10.8.0.34 97448 username aminvpn 97448 mac 97448 bytes_out 0 97448 bytes_in 0 97448 station_ip 83.123.63.252 97448 port 8 97448 unique_id port 97448 remote_ip 10.8.0.6 97451 username aminvpn 97451 mac 97451 bytes_out 0 97451 bytes_in 0 97451 station_ip 5.120.108.200 97451 port 8 97451 unique_id port 97451 remote_ip 10.8.0.6 97455 username aminvpn 97455 mac 97455 bytes_out 0 97455 bytes_in 0 97455 station_ip 5.120.108.200 97455 port 8 97455 unique_id port 97455 remote_ip 10.8.0.6 97457 username alihosseini 97457 kill_reason Another user logged on this global unique id 97457 mac 97457 bytes_out 0 97457 bytes_in 0 97457 station_ip 5.126.231.185 97457 port 10 97457 unique_id port 97465 username mahdiyehalizadeh 97465 mac 97465 bytes_out 55364 97465 bytes_in 295924 97465 station_ip 83.123.231.145 97465 port 11 97465 unique_id port 97465 remote_ip 10.8.0.42 97467 username mohammadmahdi 97467 mac 97467 bytes_out 34501 97467 bytes_in 58966 97467 station_ip 5.120.8.160 97467 port 11 97467 unique_id port 97467 remote_ip 10.8.0.34 97473 username askari 97473 kill_reason Another user logged on this global unique id 97473 mac 97473 bytes_out 0 97473 bytes_in 0 97473 station_ip 5.119.19.108 97473 port 6 97473 unique_id port 97473 remote_ip 10.8.0.38 97476 username ahmadipour 97476 unique_id port 97476 terminate_cause Lost-Carrier 97476 bytes_out 188653 97476 bytes_in 3581833 97476 station_ip 83.122.239.73 97476 port 15729008 97476 nas_port_type Virtual 97476 remote_ip 5.5.5.172 97478 username aminvpn 97478 mac 97478 bytes_out 0 97478 bytes_in 0 97478 station_ip 83.123.63.252 97478 port 8 97478 unique_id port 97478 remote_ip 10.8.0.6 97480 username mohammadmahdi 97480 mac 97480 bytes_out 937325 97480 bytes_in 9869174 97480 station_ip 5.120.8.160 97480 port 11 97480 unique_id port 97480 remote_ip 10.8.0.34 97482 username aminvpn 97482 mac 97482 bytes_out 0 97482 bytes_in 0 97482 station_ip 5.120.108.200 97482 port 5 97482 unique_id port 97482 remote_ip 10.8.1.26 97484 username aminvpn 97484 mac 97484 bytes_out 0 97484 bytes_in 0 97484 station_ip 5.120.108.200 97484 port 5 97484 unique_id port 97484 remote_ip 10.8.1.26 97487 username aminvpn 97487 mac 97487 bytes_out 0 97487 bytes_in 0 97487 station_ip 5.120.108.200 97487 port 8 97487 unique_id port 97487 remote_ip 10.8.1.26 97489 username aminvpn 97489 mac 97489 bytes_out 0 97489 bytes_in 0 97489 station_ip 5.120.108.200 97489 port 6 97489 unique_id port 97494 username alipour 97494 mac 97494 bytes_out 2394475 97494 bytes_in 44425995 97494 station_ip 83.122.12.193 97494 port 8 97494 unique_id port 97494 remote_ip 10.8.0.70 97498 username alipour 97498 mac 97498 bytes_out 0 97498 bytes_in 0 97498 station_ip 83.122.12.193 97498 port 11 97498 unique_id port 97498 remote_ip 10.8.0.70 97506 username alihosseini 97506 mac 97506 bytes_out 0 97444 username forozande 97444 mac 97444 bytes_out 1044353 97444 bytes_in 11915650 97444 station_ip 83.123.248.251 97444 port 11 97444 unique_id port 97444 remote_ip 10.8.0.74 97445 username alihosseini 97445 kill_reason Another user logged on this global unique id 97445 mac 97445 bytes_out 0 97445 bytes_in 0 97445 station_ip 5.126.231.185 97445 port 10 97445 unique_id port 97445 remote_ip 10.8.0.14 97452 username aminvpn 97452 mac 97452 bytes_out 0 97452 bytes_in 0 97452 station_ip 5.120.108.200 97452 port 6 97452 unique_id port 97452 remote_ip 10.8.0.6 97453 username forozande 97453 mac 97453 bytes_out 0 97453 bytes_in 0 97453 station_ip 37.129.172.231 97453 port 8 97453 unique_id port 97453 remote_ip 10.8.0.74 97459 username mohammadmahdi 97459 mac 97459 bytes_out 0 97459 bytes_in 0 97459 station_ip 5.120.8.160 97459 port 11 97459 unique_id port 97459 remote_ip 10.8.0.34 97461 username aminvpn 97461 mac 97461 bytes_out 144473 97461 bytes_in 306070 97461 station_ip 83.123.63.252 97461 port 6 97461 unique_id port 97461 remote_ip 10.8.0.6 97466 username forozande 97466 mac 97466 bytes_out 452355 97466 bytes_in 5663532 97466 station_ip 113.203.5.42 97466 port 6 97466 unique_id port 97466 remote_ip 10.8.0.74 97468 username khalili 97468 kill_reason Another user logged on this global unique id 97468 mac 97468 bytes_out 0 97468 bytes_in 0 97468 station_ip 5.119.225.82 97468 port 9 97468 unique_id port 97468 remote_ip 10.8.0.78 97475 username aminvpn 97475 mac 97475 bytes_out 0 97475 bytes_in 0 97475 station_ip 5.120.108.200 97475 port 6 97475 unique_id port 97475 remote_ip 10.8.1.26 97477 username mehdizare 97477 mac 97477 bytes_out 0 97477 bytes_in 0 97477 station_ip 5.119.23.64 97477 port 5 97477 unique_id port 97477 remote_ip 10.8.1.22 97481 username aminvpn 97481 mac 97481 bytes_out 0 97481 bytes_in 0 97481 station_ip 5.120.108.200 97481 port 5 97481 unique_id port 97481 remote_ip 10.8.1.26 97483 username aminvpn 97483 mac 97483 bytes_out 0 97483 bytes_in 0 97483 station_ip 5.120.108.200 97483 port 5 97483 unique_id port 97483 remote_ip 10.8.1.26 97485 username mohammadmahdi 97485 kill_reason Another user logged on this global unique id 97485 mac 97485 bytes_out 0 97485 bytes_in 0 97485 station_ip 5.120.8.160 97485 port 8 97485 unique_id port 97485 remote_ip 10.8.0.34 97486 username aminvpn 97486 mac 97486 bytes_out 285953 97486 bytes_in 2893319 97486 station_ip 5.120.108.200 97486 port 8 97486 unique_id port 97486 remote_ip 10.8.1.26 97490 username askari 97490 mac 97490 bytes_out 39529 97490 bytes_in 287265 97490 station_ip 5.119.19.108 97490 port 6 97490 unique_id port 97490 remote_ip 10.8.0.38 97492 username askari 97492 mac 97492 bytes_out 82581 97492 bytes_in 1140698 97492 station_ip 5.119.19.108 97492 port 6 97492 unique_id port 97492 remote_ip 10.8.0.38 97495 username aminvpn 97495 mac 97495 bytes_out 0 97495 bytes_in 0 97495 station_ip 5.120.108.200 97495 port 11 97495 unique_id port 97495 remote_ip 10.8.0.6 97501 username aminvpn 97501 mac 97501 bytes_out 0 97501 bytes_in 0 97501 station_ip 5.120.108.200 97501 port 11 97501 unique_id port 97501 remote_ip 10.8.0.6 97509 username alireza1 97509 unique_id port 97509 terminate_cause User-Request 97509 bytes_out 0 97509 bytes_in 0 97509 station_ip 5.120.27.69 97509 port 15729015 97458 bytes_in 145325 97458 station_ip 37.129.100.77 97458 port 8 97458 unique_id port 97458 remote_ip 10.8.0.74 97460 username forozande 97460 mac 97460 bytes_out 447801 97460 bytes_in 3874924 97460 station_ip 83.123.35.119 97460 port 8 97460 unique_id port 97460 remote_ip 10.8.0.74 97462 username aminvpn 97462 mac 97462 bytes_out 0 97462 bytes_in 0 97462 station_ip 5.120.108.200 97462 port 8 97462 unique_id port 97462 remote_ip 10.8.0.6 97463 username aminvpn 97463 mac 97463 bytes_out 0 97463 bytes_in 0 97463 station_ip 5.120.108.200 97463 port 6 97463 unique_id port 97463 remote_ip 10.8.0.6 97464 username aminvpn 97464 mac 97464 bytes_out 0 97464 bytes_in 0 97464 station_ip 5.120.108.200 97464 port 6 97464 unique_id port 97464 remote_ip 10.8.0.6 97469 username alihosseini 97469 kill_reason Another user logged on this global unique id 97469 mac 97469 bytes_out 0 97469 bytes_in 0 97469 station_ip 5.126.231.185 97469 port 10 97469 unique_id port 97470 username aminvpn 97470 mac 97470 bytes_out 0 97470 bytes_in 0 97470 station_ip 5.120.108.200 97470 port 6 97470 unique_id port 97470 remote_ip 10.8.1.26 97471 username askari 97471 mac 97471 bytes_out 0 97471 bytes_in 0 97471 station_ip 5.119.19.108 97471 port 6 97471 unique_id port 97471 remote_ip 10.8.0.38 97472 username aminvpn 97472 mac 97472 bytes_out 104481 97472 bytes_in 119571 97472 station_ip 83.123.63.252 97472 port 8 97472 unique_id port 97472 remote_ip 10.8.0.6 97474 username aminvpn 97474 mac 97474 bytes_out 0 97474 bytes_in 0 97474 station_ip 5.120.108.200 97474 port 6 97474 unique_id port 97474 remote_ip 10.8.1.26 97479 username alihosseini 97479 kill_reason Another user logged on this global unique id 97479 mac 97479 bytes_out 0 97479 bytes_in 0 97479 station_ip 5.126.231.185 97479 port 10 97479 unique_id port 97488 username aminvpn 97488 kill_reason Maximum check online fails reached 97488 mac 97488 bytes_out 0 97488 bytes_in 0 97488 station_ip 5.120.108.200 97488 port 5 97488 unique_id port 97491 username aminvpn 97491 unique_id port 97491 terminate_cause Lost-Carrier 97491 bytes_out 178892 97491 bytes_in 556885 97491 station_ip 5.119.129.42 97491 port 15729010 97491 nas_port_type Virtual 97491 remote_ip 5.5.5.170 97493 username aminvpn 97493 mac 97493 bytes_out 145716 97493 bytes_in 749827 97493 station_ip 5.119.129.42 97493 port 6 97493 unique_id port 97493 remote_ip 10.8.0.6 97496 username alipour 97496 mac 97496 bytes_out 0 97496 bytes_in 0 97496 station_ip 83.122.12.193 97496 port 11 97496 unique_id port 97496 remote_ip 10.8.0.70 97497 username tahmasebi 97497 kill_reason Another user logged on this global unique id 97497 mac 97497 bytes_out 0 97497 bytes_in 0 97497 station_ip 5.120.125.203 97497 port 6 97497 unique_id port 97497 remote_ip 10.8.0.66 97499 username alihosseini 97499 kill_reason Another user logged on this global unique id 97499 mac 97499 bytes_out 0 97499 bytes_in 0 97499 station_ip 5.126.231.185 97499 port 10 97499 unique_id port 97500 username aminvpn 97500 mac 97500 bytes_out 583849 97500 bytes_in 4159183 97500 station_ip 5.119.129.42 97500 port 8 97500 unique_id port 97500 remote_ip 10.8.0.6 97502 username alipour 97502 mac 97502 bytes_out 145542 97502 bytes_in 721437 97502 station_ip 83.122.12.193 97502 port 12 97502 unique_id port 97502 remote_ip 10.8.0.70 97503 username aminvpn 97503 mac 97503 bytes_out 96093 97503 bytes_in 558835 97503 station_ip 5.119.129.42 97503 port 8 97503 unique_id port 97503 remote_ip 10.8.0.6 97504 username madadi2 97504 kill_reason Another user logged on this global unique id 97504 mac 97504 bytes_out 0 97504 bytes_in 0 97504 station_ip 5.119.149.127 97504 port 8 97504 unique_id port 97504 remote_ip 10.8.0.26 97505 username alipour 97505 mac 97505 bytes_out 23159 97505 bytes_in 43356 97505 station_ip 83.122.12.193 97505 port 8 97505 unique_id port 97505 remote_ip 10.8.1.38 97507 username alireza1 97507 unique_id port 97507 terminate_cause User-Request 97507 bytes_out 0 97507 bytes_in 0 97507 station_ip 5.120.27.69 97507 port 15729013 97507 nas_port_type Virtual 97507 remote_ip 5.5.5.195 97508 username alireza1 97508 unique_id port 97508 terminate_cause User-Request 97508 bytes_out 0 97508 bytes_in 0 97508 station_ip 5.120.27.69 97508 port 15729014 97508 nas_port_type Virtual 97508 remote_ip 5.5.5.195 97510 username alipour 97510 mac 97510 bytes_out 0 97510 bytes_in 0 97510 station_ip 83.122.12.193 97510 port 10 97510 unique_id port 97510 remote_ip 10.8.0.70 97514 username alipour 97514 mac 97514 bytes_out 70589 97514 bytes_in 393036 97514 station_ip 83.122.12.193 97514 port 12 97514 unique_id port 97514 remote_ip 10.8.0.70 97515 username forozande 97515 mac 97515 bytes_out 692984 97515 bytes_in 4410575 97515 station_ip 83.122.78.141 97515 port 8 97515 unique_id port 97515 remote_ip 10.8.0.74 97516 username aminvpn 97516 mac 97516 bytes_out 0 97516 bytes_in 0 97516 station_ip 5.120.108.200 97516 port 6 97516 unique_id port 97516 remote_ip 10.8.0.6 97521 username aminvpn 97521 mac 97521 bytes_out 0 97521 bytes_in 0 97521 station_ip 5.120.108.200 97521 port 14 97521 unique_id port 97521 remote_ip 10.8.0.6 97527 username mahdiyehalizadeh 97527 mac 97527 bytes_out 1081133 97527 bytes_in 18039190 97527 station_ip 37.129.129.16 97527 port 14 97527 unique_id port 97527 remote_ip 10.8.0.42 97529 username mahdiyehalizadeh 97529 mac 97529 bytes_out 0 97529 bytes_in 0 97529 station_ip 37.129.129.16 97529 port 7 97529 unique_id port 97529 remote_ip 10.8.1.14 97532 username alipour 97532 mac 97532 bytes_out 5134 97532 bytes_in 8140 97532 station_ip 37.129.190.205 97532 port 7 97532 unique_id port 97532 remote_ip 10.8.1.38 97543 username khalili 97543 kill_reason Another user logged on this global unique id 97543 mac 97543 bytes_out 0 97543 bytes_in 0 97543 station_ip 5.119.225.82 97543 port 9 97543 unique_id port 97544 username mohammadmahdi 97544 kill_reason Another user logged on this global unique id 97544 mac 97544 bytes_out 0 97544 bytes_in 0 97544 station_ip 5.119.212.55 97544 port 6 97544 unique_id port 97544 remote_ip 10.8.0.34 97549 username aminvpn 97549 mac 97549 bytes_out 0 97549 bytes_in 0 97549 station_ip 5.120.108.200 97549 port 8 97549 unique_id port 97549 remote_ip 10.8.0.6 97550 username mohammadmahdi 97550 kill_reason Another user logged on this global unique id 97550 mac 97550 bytes_out 0 97550 bytes_in 0 97550 station_ip 5.119.212.55 97550 port 6 97550 unique_id port 97551 username aminvpn 97551 mac 97551 bytes_out 22722 97551 bytes_in 27153 97551 station_ip 5.120.108.200 97551 port 8 97551 unique_id port 97551 remote_ip 10.8.0.6 97557 username alipour 97557 mac 97557 bytes_out 4434 97557 bytes_in 7099 97557 station_ip 37.129.190.205 97506 bytes_in 0 97506 station_ip 5.126.231.185 97506 port 10 97506 unique_id port 97511 username aminvpn 97511 mac 97511 bytes_out 0 97511 bytes_in 0 97511 station_ip 5.120.108.200 97511 port 10 97511 unique_id port 97511 remote_ip 10.8.0.6 97512 username alipour 97512 mac 97512 bytes_out 85705 97512 bytes_in 610436 97512 station_ip 83.122.12.193 97512 port 11 97512 unique_id port 97512 remote_ip 10.8.0.70 97517 username mehdizare 97517 mac 97517 bytes_out 0 97517 bytes_in 0 97517 station_ip 5.119.23.64 97517 port 7 97517 unique_id port 97517 remote_ip 10.8.1.22 97518 username alirr 97518 unique_id port 97518 terminate_cause Lost-Carrier 97518 bytes_out 5890512 97518 bytes_in 122114116 97518 station_ip 5.120.62.171 97518 port 15729009 97518 nas_port_type Virtual 97518 remote_ip 5.5.5.171 97520 username aminvpn 97520 mac 97520 bytes_out 0 97520 bytes_in 0 97520 station_ip 5.120.108.200 97520 port 8 97520 unique_id port 97520 remote_ip 10.8.0.6 97522 username mohammadmahdi 97522 mac 97522 bytes_out 673512 97522 bytes_in 5781680 97522 station_ip 5.120.8.160 97522 port 12 97522 unique_id port 97522 remote_ip 10.8.0.34 97524 username alirr 97524 unique_id port 97524 terminate_cause Lost-Carrier 97524 bytes_out 111354 97524 bytes_in 589740 97524 station_ip 5.119.168.128 97524 port 15729016 97524 nas_port_type Virtual 97524 remote_ip 5.5.5.169 97526 username aminvpn 97526 mac 97526 bytes_out 0 97526 bytes_in 0 97526 station_ip 5.120.108.200 97526 port 12 97526 unique_id port 97526 remote_ip 10.8.0.6 97531 username madadi2 97531 mac 97531 bytes_out 0 97531 bytes_in 0 97531 station_ip 5.119.116.56 97531 port 8 97531 unique_id port 97531 remote_ip 10.8.0.26 97535 username mehdizare 97535 mac 97535 bytes_out 0 97535 bytes_in 0 97535 station_ip 5.119.23.64 97535 port 6 97535 unique_id port 97535 remote_ip 10.8.0.22 97540 username aminvpn 97540 mac 97540 bytes_out 0 97540 bytes_in 0 97540 station_ip 5.120.108.200 97540 port 12 97540 unique_id port 97540 remote_ip 10.8.0.6 97542 username amir 97542 mac 97542 bytes_out 0 97542 bytes_in 0 97542 station_ip 46.225.215.198 97542 port 10 97542 unique_id port 97542 remote_ip 10.8.0.54 97547 username mehdizare 97547 mac 97547 bytes_out 1727492 97547 bytes_in 5409415 97547 station_ip 5.119.23.64 97547 port 8 97547 unique_id port 97547 remote_ip 10.8.1.22 97548 username aminvpn 97548 mac 97548 bytes_out 15140 97548 bytes_in 19660 97548 station_ip 5.120.108.200 97548 port 8 97548 unique_id port 97548 remote_ip 10.8.0.6 97553 username aminvpn 97553 mac 97553 bytes_out 0 97553 bytes_in 0 97553 station_ip 5.120.108.200 97553 port 8 97553 unique_id port 97553 remote_ip 10.8.0.6 97558 username aminvpn 97558 kill_reason Another user logged on this global unique id 97558 mac 97558 bytes_out 0 97558 bytes_in 0 97558 station_ip 5.120.108.200 97558 port 8 97558 unique_id port 97564 username madadi2 97564 mac 97564 bytes_out 0 97564 bytes_in 0 97564 station_ip 5.119.61.217 97564 port 12 97564 unique_id port 97564 remote_ip 10.8.0.26 97565 username alihosseini 97565 kill_reason Another user logged on this global unique id 97565 mac 97565 bytes_out 0 97565 bytes_in 0 97565 station_ip 5.126.180.29 97565 port 10 97565 unique_id port 97565 remote_ip 10.8.0.14 97568 username aminvpn 97568 unique_id port 97568 terminate_cause User-Request 97509 nas_port_type Virtual 97509 remote_ip 5.5.5.195 97513 username tahmasebi 97513 mac 97513 bytes_out 0 97513 bytes_in 0 97513 station_ip 5.120.125.203 97513 port 6 97513 unique_id port 97519 username alipour 97519 kill_reason Another user logged on this global unique id 97519 mac 97519 bytes_out 0 97519 bytes_in 0 97519 station_ip 37.129.190.205 97519 port 8 97519 unique_id port 97519 remote_ip 10.8.1.38 97523 username aminvpn 97523 mac 97523 bytes_out 0 97523 bytes_in 0 97523 station_ip 5.120.108.200 97523 port 12 97523 unique_id port 97523 remote_ip 10.8.0.6 97525 username aminvpn 97525 mac 97525 bytes_out 0 97525 bytes_in 0 97525 station_ip 5.120.108.200 97525 port 12 97525 unique_id port 97525 remote_ip 10.8.0.6 97528 username amir 97528 kill_reason Another user logged on this global unique id 97528 mac 97528 bytes_out 0 97528 bytes_in 0 97528 station_ip 46.225.215.198 97528 port 10 97528 unique_id port 97528 remote_ip 10.8.0.54 97530 username mahdiyehalizadeh 97530 mac 97530 bytes_out 3421 97530 bytes_in 6208 97530 station_ip 37.129.129.16 97530 port 12 97530 unique_id port 97530 remote_ip 10.8.0.42 97533 username aminvpn 97533 mac 97533 bytes_out 0 97533 bytes_in 0 97533 station_ip 5.120.108.200 97533 port 15 97533 unique_id port 97533 remote_ip 10.8.0.6 97534 username aminvpn 97534 mac 97534 bytes_out 0 97534 bytes_in 0 97534 station_ip 113.203.33.209 97534 port 15 97534 unique_id port 97534 remote_ip 10.8.0.6 97536 username mahyaarabpour 97536 mac 97536 bytes_out 0 97536 bytes_in 0 97536 station_ip 5.120.109.252 97536 port 14 97536 unique_id port 97536 remote_ip 10.8.0.82 97537 username alipour 97537 mac 97537 bytes_out 6476 97537 bytes_in 10020 97537 station_ip 37.129.190.205 97537 port 7 97537 unique_id port 97537 remote_ip 10.8.1.38 97538 username mohammadmahdi 97538 mac 97538 bytes_out 1402951 97538 bytes_in 14362941 97538 station_ip 5.120.8.160 97538 port 12 97538 unique_id port 97538 remote_ip 10.8.0.34 97539 username alipour 97539 mac 97539 bytes_out 10214 97539 bytes_in 10575 97539 station_ip 37.129.190.205 97539 port 7 97539 unique_id port 97539 remote_ip 10.8.1.38 97541 username amir 97541 mac 97541 bytes_out 0 97541 bytes_in 0 97541 station_ip 46.225.215.198 97541 port 10 97541 unique_id port 97545 username mehdizare 97545 mac 97545 bytes_out 20803 97545 bytes_in 49128 97545 station_ip 5.119.23.64 97545 port 8 97545 unique_id port 97545 remote_ip 10.8.1.22 97546 username alipour 97546 mac 97546 bytes_out 6618 97546 bytes_in 13750 97546 station_ip 37.129.190.205 97546 port 7 97546 unique_id port 97546 remote_ip 10.8.1.38 97552 username aminvpn 97552 mac 97552 bytes_out 0 97552 bytes_in 0 97552 station_ip 5.120.108.200 97552 port 8 97552 unique_id port 97552 remote_ip 10.8.0.6 97554 username mohammadmahdi 97554 kill_reason Another user logged on this global unique id 97554 mac 97554 bytes_out 0 97554 bytes_in 0 97554 station_ip 5.119.212.55 97554 port 6 97554 unique_id port 97555 username alipour 97555 mac 97555 bytes_out 107082 97555 bytes_in 1072517 97555 station_ip 37.129.190.205 97555 port 7 97555 unique_id port 97555 remote_ip 10.8.1.38 97556 username aminvpn 97556 mac 97556 bytes_out 28674 97556 bytes_in 35823 97556 station_ip 5.120.108.200 97556 port 8 97556 unique_id port 97556 remote_ip 10.8.0.6 97557 port 7 97557 unique_id port 97557 remote_ip 10.8.1.38 97559 username mehdizare 97559 mac 97559 bytes_out 24071 97559 bytes_in 63898 97559 station_ip 5.119.23.64 97559 port 8 97559 unique_id port 97559 remote_ip 10.8.1.22 97561 username madadi2 97561 mac 97561 bytes_out 0 97561 bytes_in 0 97561 station_ip 5.119.233.99 97561 port 10 97561 unique_id port 97561 remote_ip 10.8.0.26 97566 username aminvpn 97566 mac 97566 bytes_out 0 97566 bytes_in 0 97566 station_ip 5.120.108.200 97566 port 8 97566 unique_id port 97573 username amir 97573 mac 97573 bytes_out 50044098 97573 bytes_in 19321700 97573 station_ip 46.225.215.198 97573 port 9 97573 unique_id port 97573 remote_ip 10.8.1.34 97575 username alihosseini 97575 mac 97575 bytes_out 0 97575 bytes_in 0 97575 station_ip 5.126.180.29 97575 port 12 97575 unique_id port 97575 remote_ip 10.8.0.14 97581 username aminvpn 97581 mac 97581 bytes_out 0 97581 bytes_in 0 97581 station_ip 5.120.108.200 97581 port 8 97581 unique_id port 97581 remote_ip 10.8.0.6 97586 username alihosseini 97586 mac 97586 bytes_out 2968 97586 bytes_in 5539 97586 station_ip 5.126.180.29 97586 port 6 97586 unique_id port 97586 remote_ip 10.8.0.14 97587 username aminvpn 97587 mac 97587 bytes_out 0 97587 bytes_in 0 97587 station_ip 5.120.108.200 97587 port 6 97587 unique_id port 97587 remote_ip 10.8.0.6 97590 username mahdixz 97590 unique_id port 97590 terminate_cause User-Request 97590 bytes_out 0 97590 bytes_in 0 97590 station_ip 151.235.80.18 97590 port 15729022 97590 nas_port_type Virtual 97590 remote_ip 5.5.5.166 97591 username alipour 97591 kill_reason Another user logged on this global unique id 97591 mac 97591 bytes_out 0 97591 bytes_in 0 97591 station_ip 37.129.190.205 97591 port 8 97591 unique_id port 97591 remote_ip 10.8.1.38 97594 username madadi2 97594 kill_reason Another user logged on this global unique id 97594 mac 97594 bytes_out 0 97594 bytes_in 0 97594 station_ip 5.120.23.99 97594 port 8 97594 unique_id port 97594 remote_ip 10.8.0.26 97599 username aminvpn 97599 mac 97599 bytes_out 0 97599 bytes_in 0 97599 station_ip 5.120.108.200 97599 port 8 97599 unique_id port 97599 remote_ip 10.8.0.6 97605 username amir 97605 mac 97605 bytes_out 0 97605 bytes_in 0 97605 station_ip 46.225.215.198 97605 port 8 97605 unique_id port 97605 remote_ip 10.8.0.54 97607 username amir 97607 mac 97607 bytes_out 0 97607 bytes_in 0 97607 station_ip 46.225.215.198 97607 port 6 97607 unique_id port 97607 remote_ip 10.8.0.54 97611 username khalili 97611 kill_reason Another user logged on this global unique id 97611 mac 97611 bytes_out 0 97611 bytes_in 0 97611 station_ip 5.119.225.82 97611 port 9 97611 unique_id port 97612 username alihosseini 97612 mac 97612 bytes_out 0 97612 bytes_in 0 97612 station_ip 5.126.180.29 97612 port 9 97612 unique_id port 97612 remote_ip 10.8.1.6 97615 username ahmadipour 97615 unique_id port 97615 terminate_cause Lost-Carrier 97615 bytes_out 167960 97615 bytes_in 1947635 97615 station_ip 83.122.137.89 97615 port 15729024 97615 nas_port_type Virtual 97615 remote_ip 5.5.5.164 97616 username alihosseini 97616 mac 97616 bytes_out 0 97616 bytes_in 0 97616 station_ip 5.126.180.29 97616 port 9 97616 unique_id port 97616 remote_ip 10.8.1.6 97617 username fariba 97617 kill_reason Another user logged on this global unique id 97617 mac 97560 username alipour 97560 mac 97560 bytes_out 4816 97560 bytes_in 7268 97560 station_ip 37.129.190.205 97560 port 7 97560 unique_id port 97560 remote_ip 10.8.1.38 97562 username mohammadmahdi 97562 kill_reason Another user logged on this global unique id 97562 mac 97562 bytes_out 0 97562 bytes_in 0 97562 station_ip 5.119.212.55 97562 port 6 97562 unique_id port 97563 username mehdizare 97563 kill_reason Another user logged on this global unique id 97563 mac 97563 bytes_out 0 97563 bytes_in 0 97563 station_ip 5.119.23.64 97563 port 8 97563 unique_id port 97563 remote_ip 10.8.1.22 97567 username mohammadmahdi 97567 mac 97567 bytes_out 0 97567 bytes_in 0 97567 station_ip 5.119.212.55 97567 port 6 97567 unique_id port 97569 username forozande 97569 mac 97569 bytes_out 0 97569 bytes_in 0 97569 station_ip 83.123.21.137 97569 port 12 97569 unique_id port 97569 remote_ip 10.8.0.74 97574 username amir 97574 mac 97574 bytes_out 0 97574 bytes_in 0 97574 station_ip 46.225.215.198 97574 port 7 97574 unique_id port 97574 remote_ip 10.8.1.34 97576 username aminvpn 97576 mac 97576 bytes_out 0 97576 bytes_in 0 97576 station_ip 5.120.108.200 97576 port 8 97576 unique_id port 97577 username alihosseini 97577 kill_reason Another user logged on this global unique id 97577 mac 97577 bytes_out 0 97577 bytes_in 0 97577 station_ip 5.126.180.29 97577 port 8 97577 unique_id port 97577 remote_ip 10.8.1.6 97579 username alipour 97579 mac 97579 bytes_out 5218 97579 bytes_in 7902 97579 station_ip 37.129.190.205 97579 port 7 97579 unique_id port 97579 remote_ip 10.8.1.38 97582 username aminvpn 97582 mac 97582 bytes_out 0 97582 bytes_in 0 97582 station_ip 5.120.108.200 97582 port 8 97582 unique_id port 97582 remote_ip 10.8.0.6 97583 username mohammadmahdi 97583 mac 97583 bytes_out 0 97583 bytes_in 0 97583 station_ip 83.123.60.151 97583 port 6 97583 unique_id port 97583 remote_ip 10.8.0.34 97584 username alihosseini 97584 mac 97584 bytes_out 0 97584 bytes_in 0 97584 station_ip 5.126.180.29 97584 port 8 97584 unique_id port 97584 remote_ip 10.8.1.6 97588 username alipour 97588 mac 97588 bytes_out 11575 97588 bytes_in 19644 97588 station_ip 37.129.190.205 97588 port 7 97588 unique_id port 97588 remote_ip 10.8.1.38 97592 username alihosseini 97592 mac 97592 bytes_out 0 97592 bytes_in 0 97592 station_ip 5.126.180.29 97592 port 6 97592 unique_id port 97592 remote_ip 10.8.0.14 97596 username aminvpn 97596 mac 97596 bytes_out 0 97596 bytes_in 0 97596 station_ip 5.120.108.200 97596 port 8 97596 unique_id port 97596 remote_ip 10.8.0.6 97597 username aminvpn 97597 mac 97597 bytes_out 0 97597 bytes_in 0 97597 station_ip 5.120.108.200 97597 port 8 97597 unique_id port 97597 remote_ip 10.8.0.6 97600 username aminvpn 97600 mac 97600 bytes_out 0 97600 bytes_in 0 97600 station_ip 5.120.108.200 97600 port 8 97600 unique_id port 97600 remote_ip 10.8.0.6 97601 username aminvpn 97601 mac 97601 bytes_out 0 97601 bytes_in 0 97601 station_ip 5.120.108.200 97601 port 8 97601 unique_id port 97601 remote_ip 10.8.0.6 97609 username alihosseini 97609 mac 97609 bytes_out 4460752 97609 bytes_in 71693604 97609 station_ip 5.126.180.29 97609 port 8 97609 unique_id port 97609 remote_ip 10.8.0.14 97610 username amir 97610 mac 97610 bytes_out 0 97568 bytes_out 708560 97568 bytes_in 2021780 97568 station_ip 113.203.33.209 97568 port 15729018 97568 nas_port_type Virtual 97568 remote_ip 5.5.5.167 97570 username mehdizare 97570 mac 97570 bytes_out 24160 97570 bytes_in 22705 97570 station_ip 5.119.23.64 97570 port 10 97570 unique_id port 97570 remote_ip 10.8.1.22 97571 username alipour 97571 mac 97571 bytes_out 66268 97571 bytes_in 68722 97571 station_ip 37.129.190.205 97571 port 7 97571 unique_id port 97571 remote_ip 10.8.1.38 97572 username alipour 97572 mac 97572 bytes_out 5155 97572 bytes_in 8084 97572 station_ip 37.129.190.205 97572 port 7 97572 unique_id port 97572 remote_ip 10.8.1.38 97578 username aminvpn 97578 mac 97578 bytes_out 0 97578 bytes_in 0 97578 station_ip 5.120.108.200 97578 port 8 97578 unique_id port 97578 remote_ip 10.8.0.6 97580 username aminvpn 97580 mac 97580 bytes_out 0 97580 bytes_in 0 97580 station_ip 5.120.108.200 97580 port 8 97580 unique_id port 97580 remote_ip 10.8.0.6 97585 username mammad 97585 unique_id port 97585 terminate_cause User-Request 97585 bytes_out 0 97585 bytes_in 0 97585 station_ip 5.233.74.114 97585 port 15729021 97585 nas_port_type Virtual 97585 remote_ip 5.5.5.199 97589 username alihosseini 97589 kill_reason Maximum check online fails reached 97589 mac 97589 bytes_out 0 97589 bytes_in 0 97589 station_ip 5.126.180.29 97589 port 7 97589 unique_id port 97593 username bcboard 97593 unique_id port 97593 terminate_cause Lost-Carrier 97593 bytes_out 788916 97593 bytes_in 14433414 97593 station_ip 83.122.139.77 97593 port 15729017 97593 nas_port_type Virtual 97593 remote_ip 5.5.5.168 97595 username alipour 97595 mac 97595 bytes_out 0 97595 bytes_in 0 97595 station_ip 37.129.190.205 97595 port 8 97595 unique_id port 97598 username aminvpn 97598 mac 97598 bytes_out 0 97598 bytes_in 0 97598 station_ip 5.120.108.200 97598 port 8 97598 unique_id port 97598 remote_ip 10.8.0.6 97602 username aminvpn 97602 mac 97602 bytes_out 0 97602 bytes_in 0 97602 station_ip 5.120.108.200 97602 port 8 97602 unique_id port 97602 remote_ip 10.8.0.6 97603 username aminvpn 97603 mac 97603 bytes_out 0 97603 bytes_in 0 97603 station_ip 5.120.108.200 97603 port 8 97603 unique_id port 97603 remote_ip 10.8.0.6 97604 username amir 97604 mac 97604 bytes_out 0 97604 bytes_in 0 97604 station_ip 46.225.215.198 97604 port 10 97604 unique_id port 97604 remote_ip 10.8.0.54 97606 username alihosseini 97606 mac 97606 bytes_out 0 97606 bytes_in 0 97606 station_ip 5.126.180.29 97606 port 6 97606 unique_id port 97606 remote_ip 10.8.0.14 97608 username amir 97608 mac 97608 bytes_out 0 97608 bytes_in 0 97608 station_ip 46.225.215.198 97608 port 6 97608 unique_id port 97608 remote_ip 10.8.0.54 97614 username ahmadi 97614 unique_id port 97614 terminate_cause User-Request 97614 bytes_out 50092 97614 bytes_in 236872 97614 station_ip 83.122.179.217 97614 port 15729023 97614 nas_port_type Virtual 97614 remote_ip 5.5.5.165 97622 username forozande 97622 mac 97622 bytes_out 0 97622 bytes_in 0 97622 station_ip 113.203.71.101 97622 port 6 97622 unique_id port 97622 remote_ip 10.8.0.74 97624 username alihosseini 97624 mac 97624 bytes_out 0 97624 bytes_in 0 97624 station_ip 5.126.180.29 97624 port 9 97624 unique_id port 97624 remote_ip 10.8.1.6 97626 username forozande 97626 mac 97610 bytes_in 0 97610 station_ip 46.225.215.198 97610 port 9 97610 unique_id port 97610 remote_ip 10.8.1.34 97613 username alihosseini 97613 mac 97613 bytes_out 0 97613 bytes_in 0 97613 station_ip 5.126.180.29 97613 port 9 97613 unique_id port 97613 remote_ip 10.8.1.6 97623 username alihosseini 97623 mac 97623 bytes_out 0 97623 bytes_in 0 97623 station_ip 5.126.180.29 97623 port 9 97623 unique_id port 97623 remote_ip 10.8.1.6 97629 username alihosseini 97629 mac 97629 bytes_out 295216 97629 bytes_in 1441823 97629 station_ip 5.125.82.98 97629 port 9 97629 unique_id port 97629 remote_ip 10.8.1.6 97630 username madadi2 97630 mac 97630 bytes_out 0 97630 bytes_in 0 97630 station_ip 5.120.118.110 97630 port 6 97630 unique_id port 97630 remote_ip 10.8.0.26 97631 username amir 97631 kill_reason Another user logged on this global unique id 97631 mac 97631 bytes_out 0 97631 bytes_in 0 97631 station_ip 46.225.215.198 97631 port 11 97631 unique_id port 97631 remote_ip 10.8.1.34 97632 username alipour 97632 mac 97632 bytes_out 0 97632 bytes_in 0 97632 station_ip 37.129.190.205 97632 port 8 97632 unique_id port 97633 username amir 97633 mac 97633 bytes_out 0 97633 bytes_in 0 97633 station_ip 46.225.215.198 97633 port 11 97633 unique_id port 97634 username alirr 97634 unique_id port 97634 terminate_cause Lost-Carrier 97634 bytes_out 129594 97634 bytes_in 399868 97634 station_ip 5.119.245.220 97634 port 15729028 97634 nas_port_type Virtual 97634 remote_ip 5.5.5.160 97637 username asadi 97637 mac 97637 bytes_out 0 97637 bytes_in 0 97637 station_ip 83.122.40.192 97637 port 8 97637 unique_id port 97639 username mehdizare 97639 kill_reason Another user logged on this global unique id 97639 mac 97639 bytes_out 0 97639 bytes_in 0 97639 station_ip 5.119.23.64 97639 port 9 97639 unique_id port 97639 remote_ip 10.8.1.22 97647 username mohammadmahdi 97647 mac 97647 bytes_out 0 97647 bytes_in 0 97647 station_ip 5.119.212.55 97647 port 6 97647 unique_id port 97651 username khalili 97651 mac 97651 bytes_out 0 97651 bytes_in 0 97651 station_ip 5.119.225.82 97651 port 9 97651 unique_id port 97657 username khalili 97657 mac 97657 bytes_out 0 97657 bytes_in 0 97657 station_ip 5.119.225.82 97657 port 8 97657 unique_id port 97657 remote_ip 10.8.0.78 97658 username mahdiyehalizadeh 97658 mac 97658 bytes_out 0 97658 bytes_in 0 97658 station_ip 83.123.36.143 97658 port 6 97658 unique_id port 97658 remote_ip 10.8.0.42 97663 username asadi 97663 mac 97663 bytes_out 265012 97663 bytes_in 1700070 97663 station_ip 83.122.40.192 97663 port 10 97663 unique_id port 97663 remote_ip 10.8.1.42 97664 username mehdizare 97664 mac 97664 bytes_out 0 97664 bytes_in 0 97664 station_ip 5.119.23.64 97664 port 9 97664 unique_id port 97664 remote_ip 10.8.1.22 97666 username alirr 97666 unique_id port 97666 terminate_cause Lost-Carrier 97666 bytes_out 160613 97666 bytes_in 595810 97666 station_ip 5.119.122.99 97666 port 15729037 97666 nas_port_type Virtual 97666 remote_ip 5.5.5.156 97668 username forozande 97668 mac 97668 bytes_out 5244635 97668 bytes_in 86451277 97668 station_ip 83.122.148.103 97668 port 8 97668 unique_id port 97668 remote_ip 10.8.0.74 97669 username asadi 97669 mac 97669 bytes_out 5511 97669 bytes_in 7273 97669 station_ip 83.122.40.192 97669 port 10 97617 bytes_out 0 97617 bytes_in 0 97617 station_ip 5.119.43.193 97617 port 11 97617 unique_id port 97617 remote_ip 10.8.0.46 97618 username alipour 97618 kill_reason Another user logged on this global unique id 97618 mac 97618 bytes_out 0 97618 bytes_in 0 97618 station_ip 37.129.190.205 97618 port 8 97618 unique_id port 97619 username asadi 97619 kill_reason Another user logged on this global unique id 97619 mac 97619 bytes_out 0 97619 bytes_in 0 97619 station_ip 83.122.40.192 97619 port 8 97619 unique_id port 97619 remote_ip 10.8.0.50 97620 username forozande 97620 mac 97620 bytes_out 0 97620 bytes_in 0 97620 station_ip 113.203.34.170 97620 port 6 97620 unique_id port 97620 remote_ip 10.8.0.74 97621 username madadi2 97621 mac 97621 bytes_out 3485947 97621 bytes_in 37497580 97621 station_ip 5.119.226.184 97621 port 10 97621 unique_id port 97621 remote_ip 10.8.0.26 97625 username alihosseini 97625 mac 97625 bytes_out 37820 97625 bytes_in 34787 97625 station_ip 5.126.180.29 97625 port 9 97625 unique_id port 97625 remote_ip 10.8.1.6 97635 username alipour 97635 kill_reason Another user logged on this global unique id 97635 mac 97635 bytes_out 0 97635 bytes_in 0 97635 station_ip 37.129.190.205 97635 port 8 97635 unique_id port 97635 remote_ip 10.8.1.38 97636 username alirr 97636 kill_reason Maximum check online fails reached 97636 unique_id port 97636 bytes_out 929 97636 bytes_in 6410 97636 station_ip 5.119.89.229 97636 port 15729029 97636 nas_port_type Virtual 97636 remote_ip 5.5.5.159 97640 username asadi 97640 mac 97640 bytes_out 0 97640 bytes_in 0 97640 station_ip 83.122.40.192 97640 port 8 97640 unique_id port 97640 remote_ip 10.8.0.50 97643 username alireza1 97643 unique_id port 97643 terminate_cause User-Request 97643 bytes_out 0 97643 bytes_in 0 97643 station_ip 5.119.246.3 97643 port 15729031 97643 nas_port_type Virtual 97643 remote_ip 5.5.5.158 97646 username forozande 97646 mac 97646 bytes_out 1120982 97646 bytes_in 13189403 97646 station_ip 83.123.88.130 97646 port 8 97646 unique_id port 97646 remote_ip 10.8.0.74 97649 username forozande 97649 mac 97649 bytes_out 1272013 97649 bytes_in 14437421 97649 station_ip 83.122.160.61 97649 port 8 97649 unique_id port 97649 remote_ip 10.8.0.74 97652 username alipour 97652 kill_reason Another user logged on this global unique id 97652 mac 97652 bytes_out 0 97652 bytes_in 0 97652 station_ip 37.129.190.205 97652 port 8 97652 unique_id port 97652 remote_ip 10.8.1.38 97653 username asadi 97653 mac 97653 bytes_out 0 97653 bytes_in 0 97653 station_ip 83.122.40.192 97653 port 8 97653 unique_id port 97653 remote_ip 10.8.0.50 97654 username madadi2 97654 mac 97654 bytes_out 48987 97654 bytes_in 38819 97654 station_ip 5.120.56.122 97654 port 9 97654 unique_id port 97654 remote_ip 10.8.0.26 97655 username mehdizare 97655 mac 97655 bytes_out 0 97655 bytes_in 0 97655 station_ip 5.119.23.64 97655 port 9 97655 unique_id port 97655 remote_ip 10.8.1.22 97656 username mehdizare 97656 kill_reason Another user logged on this global unique id 97656 mac 97656 bytes_out 0 97656 bytes_in 0 97656 station_ip 5.119.23.64 97656 port 9 97656 unique_id port 97656 remote_ip 10.8.1.22 97659 username alireza1 97659 unique_id port 97659 terminate_cause User-Request 97659 bytes_out 0 97659 bytes_in 0 97659 station_ip 5.119.246.3 97659 port 15729033 97659 nas_port_type Virtual 97659 remote_ip 5.5.5.158 97662 username asadi 97662 mac 97626 bytes_out 0 97626 bytes_in 0 97626 station_ip 113.203.56.222 97626 port 6 97626 unique_id port 97626 remote_ip 10.8.0.74 97627 username bcboard 97627 unique_id port 97627 terminate_cause Lost-Carrier 97627 bytes_out 3774346 97627 bytes_in 96168195 97627 station_ip 37.129.172.92 97627 port 15729025 97627 nas_port_type Virtual 97627 remote_ip 5.5.5.163 97628 username bcboard 97628 unique_id port 97628 terminate_cause Lost-Carrier 97628 bytes_out 52387 97628 bytes_in 14628 97628 station_ip 83.122.163.208 97628 port 15729026 97628 nas_port_type Virtual 97628 remote_ip 5.5.5.162 97638 username asadi 97638 mac 97638 bytes_out 33827 97638 bytes_in 43778 97638 station_ip 83.122.40.192 97638 port 10 97638 unique_id port 97638 remote_ip 10.8.0.50 97641 username bcboard 97641 unique_id port 97641 terminate_cause Lost-Carrier 97641 bytes_out 4167322 97641 bytes_in 124114144 97641 station_ip 83.122.129.245 97641 port 15729027 97641 nas_port_type Virtual 97641 remote_ip 5.5.5.161 97642 username alireza1 97642 unique_id port 97642 terminate_cause User-Request 97642 bytes_out 0 97642 bytes_in 0 97642 station_ip 5.119.246.3 97642 port 15729030 97642 nas_port_type Virtual 97642 remote_ip 5.5.5.158 97644 username mohammadmahdi 97644 kill_reason Another user logged on this global unique id 97644 mac 97644 bytes_out 0 97644 bytes_in 0 97644 station_ip 5.119.212.55 97644 port 6 97644 unique_id port 97644 remote_ip 10.8.0.34 97645 username alipour 97645 kill_reason Another user logged on this global unique id 97645 mac 97645 bytes_out 0 97645 bytes_in 0 97645 station_ip 37.129.190.205 97645 port 8 97645 unique_id port 97645 remote_ip 10.8.1.38 97648 username asadi 97648 mac 97648 bytes_out 0 97648 bytes_in 0 97648 station_ip 83.122.40.192 97648 port 10 97648 unique_id port 97648 remote_ip 10.8.0.50 97650 username asadi 97650 mac 97650 bytes_out 47344 97650 bytes_in 72276 97650 station_ip 83.122.40.192 97650 port 10 97650 unique_id port 97650 remote_ip 10.8.1.42 97660 username alirr 97660 unique_id port 97660 terminate_cause Lost-Carrier 97660 bytes_out 31422 97660 bytes_in 129723 97660 station_ip 5.120.93.179 97660 port 15729032 97660 nas_port_type Virtual 97660 remote_ip 5.5.5.157 97661 username khalili 97661 mac 97661 bytes_out 47434 97661 bytes_in 81966 97661 station_ip 5.119.225.82 97661 port 9 97661 unique_id port 97661 remote_ip 10.8.0.78 97665 username alipour 97665 kill_reason Another user logged on this global unique id 97665 mac 97665 bytes_out 0 97665 bytes_in 0 97665 station_ip 37.129.190.205 97665 port 8 97665 unique_id port 97667 username asadi 97667 mac 97667 bytes_out 0 97667 bytes_in 0 97667 station_ip 83.122.40.192 97667 port 6 97667 unique_id port 97667 remote_ip 10.8.0.50 97672 username aminvpn 97672 kill_reason Another user logged on this global unique id 97672 mac 97672 bytes_out 0 97672 bytes_in 0 97672 station_ip 37.129.39.188 97672 port 8 97672 unique_id port 97672 remote_ip 10.8.0.6 97680 username mohammadmahdi 97680 mac 97680 bytes_out 0 97680 bytes_in 0 97680 station_ip 83.122.206.120 97680 port 6 97680 unique_id port 97681 username aminvpn 97681 mac 97681 bytes_out 0 97681 bytes_in 0 97681 station_ip 37.129.39.188 97681 port 8 97681 unique_id port 97682 username alihosseini 97682 mac 97682 bytes_out 1488303 97682 bytes_in 18738271 97682 station_ip 5.126.12.163 97682 port 9 97682 unique_id port 97682 remote_ip 10.8.1.6 97684 username amirhosein 97684 unique_id port 97662 bytes_out 12180 97662 bytes_in 21450 97662 station_ip 83.122.40.192 97662 port 10 97662 unique_id port 97662 remote_ip 10.8.1.42 97670 username ahmadipour 97670 unique_id port 97670 terminate_cause Lost-Carrier 97670 bytes_out 1110748 97670 bytes_in 17720639 97670 station_ip 83.122.16.232 97670 port 15729038 97670 nas_port_type Virtual 97670 remote_ip 5.5.5.155 97673 username asadi 97673 kill_reason Another user logged on this global unique id 97673 mac 97673 bytes_out 0 97673 bytes_in 0 97673 station_ip 83.122.40.192 97673 port 10 97673 unique_id port 97673 remote_ip 10.8.0.50 97674 username asadi 97674 mac 97674 bytes_out 0 97674 bytes_in 0 97674 station_ip 83.122.40.192 97674 port 10 97674 unique_id port 97674 remote_ip 10.8.1.42 97676 username alipour 97676 kill_reason Another user logged on this global unique id 97676 mac 97676 bytes_out 0 97676 bytes_in 0 97676 station_ip 37.129.190.205 97676 port 8 97676 unique_id port 97676 remote_ip 10.8.1.38 97677 username mehdizare 97677 mac 97677 bytes_out 38960 97677 bytes_in 109830 97677 station_ip 5.119.23.64 97677 port 9 97677 unique_id port 97677 remote_ip 10.8.1.22 97683 username amirhosein 97683 unique_id port 97683 terminate_cause User-Request 97683 bytes_out 103170 97683 bytes_in 1812569 97683 station_ip 113.203.122.159 97683 port 15729041 97683 nas_port_type Virtual 97683 remote_ip 5.5.5.154 97686 username alihosseini 97686 mac 97686 bytes_out 0 97686 bytes_in 0 97686 station_ip 5.126.12.163 97686 port 6 97686 unique_id port 97686 remote_ip 10.8.0.14 97688 username mehdizare 97688 mac 97688 bytes_out 146602 97688 bytes_in 1261400 97688 station_ip 5.119.23.64 97688 port 10 97688 unique_id port 97688 remote_ip 10.8.0.22 97690 username alihosseini 97690 mac 97690 bytes_out 0 97690 bytes_in 0 97690 station_ip 5.126.12.163 97690 port 10 97690 unique_id port 97690 remote_ip 10.8.1.6 97692 username arman1 97692 kill_reason Another user logged on this global unique id 97692 mac 97692 bytes_out 0 97692 bytes_in 0 97692 station_ip 5.119.66.47 97692 port 6 97692 unique_id port 97692 remote_ip 10.8.0.86 97693 username alihosseini 97693 mac 97693 bytes_out 0 97693 bytes_in 0 97693 station_ip 5.126.12.163 97693 port 10 97693 unique_id port 97693 remote_ip 10.8.1.6 97694 username alihosseini 97694 mac 97694 bytes_out 0 97694 bytes_in 0 97694 station_ip 5.126.12.163 97694 port 8 97694 unique_id port 97694 remote_ip 10.8.0.14 97695 username alihosseini 97695 mac 97695 bytes_out 0 97695 bytes_in 0 97695 station_ip 5.126.12.163 97695 port 14 97695 unique_id port 97695 remote_ip 10.8.0.14 97696 username asadi 97696 mac 97696 bytes_out 0 97696 bytes_in 0 97696 station_ip 83.122.40.192 97696 port 9 97696 unique_id port 97696 remote_ip 10.8.1.42 97699 username asadi 97699 mac 97699 bytes_out 2977 97699 bytes_in 4855 97699 station_ip 83.122.40.192 97699 port 9 97699 unique_id port 97699 remote_ip 10.8.1.42 97700 username alihosseini 97700 mac 97700 bytes_out 0 97700 bytes_in 0 97700 station_ip 5.126.12.163 97700 port 9 97700 unique_id port 97700 remote_ip 10.8.0.14 97704 username reza2742 97704 unique_id port 97704 terminate_cause User-Request 97704 bytes_out 0 97704 bytes_in 0 97704 station_ip 46.225.209.186 97704 port 15729046 97704 nas_port_type Virtual 97704 remote_ip 5.5.5.152 97705 username reza2742 97705 unique_id port 97705 terminate_cause User-Request 97705 bytes_out 0 97669 unique_id port 97669 remote_ip 10.8.0.50 97671 username asadi 97671 mac 97671 bytes_out 5250658 97671 bytes_in 86460421 97671 station_ip 83.122.40.192 97671 port 8 97671 unique_id port 97671 remote_ip 10.8.0.50 97675 username mohammadmahdi 97675 kill_reason Another user logged on this global unique id 97675 mac 97675 bytes_out 0 97675 bytes_in 0 97675 station_ip 83.122.206.120 97675 port 6 97675 unique_id port 97675 remote_ip 10.8.0.34 97678 username mehdizare 97678 mac 97678 bytes_out 121308 97678 bytes_in 1229917 97678 station_ip 5.119.23.64 97678 port 10 97678 unique_id port 97678 remote_ip 10.8.0.22 97679 username mehdizare 97679 mac 97679 bytes_out 0 97679 bytes_in 0 97679 station_ip 5.119.23.64 97679 port 12 97679 unique_id port 97679 remote_ip 10.8.0.22 97685 username arman1 97685 unique_id port 97685 terminate_cause User-Request 97685 bytes_out 0 97685 bytes_in 0 97685 station_ip 5.119.66.47 97685 port 15729044 97685 nas_port_type Virtual 97685 remote_ip 5.5.5.153 97689 username alihosseini 97689 mac 97689 bytes_out 0 97689 bytes_in 0 97689 station_ip 5.126.12.163 97689 port 8 97689 unique_id port 97689 remote_ip 10.8.0.14 97698 username alihosseini 97698 mac 97698 bytes_out 0 97698 bytes_in 0 97698 station_ip 5.126.12.163 97698 port 9 97698 unique_id port 97698 remote_ip 10.8.0.14 97701 username forozande 97701 mac 97701 bytes_out 1239470 97701 bytes_in 7223816 97701 station_ip 37.129.124.97 97701 port 12 97701 unique_id port 97701 remote_ip 10.8.0.74 97702 username alihosseini 97702 mac 97702 bytes_out 0 97702 bytes_in 0 97702 station_ip 5.126.12.163 97702 port 9 97702 unique_id port 97702 remote_ip 10.8.0.14 97703 username reza2742 97703 unique_id port 97703 terminate_cause User-Request 97703 bytes_out 0 97703 bytes_in 0 97703 station_ip 46.225.209.186 97703 port 15729045 97703 nas_port_type Virtual 97703 remote_ip 5.5.5.152 97706 username mammad 97706 unique_id port 97706 terminate_cause User-Request 97706 bytes_out 0 97706 bytes_in 0 97706 station_ip 5.233.74.114 97706 port 15729048 97706 nas_port_type Virtual 97706 remote_ip 5.5.5.199 97709 username asadi 97709 kill_reason Another user logged on this global unique id 97709 mac 97709 bytes_out 0 97709 bytes_in 0 97709 station_ip 83.122.40.192 97709 port 9 97709 unique_id port 97709 remote_ip 10.8.1.42 97721 username alihosseini 97721 mac 97721 bytes_out 0 97721 bytes_in 0 97721 station_ip 5.126.12.163 97721 port 9 97721 unique_id port 97724 username alihosseini 97724 mac 97724 bytes_out 0 97724 bytes_in 0 97724 station_ip 5.126.12.163 97724 port 6 97724 unique_id port 97724 remote_ip 10.8.0.14 97726 username alihosseini 97726 mac 97726 bytes_out 0 97726 bytes_in 0 97726 station_ip 5.126.12.163 97726 port 9 97726 unique_id port 97726 remote_ip 10.8.0.14 97736 username madadi2 97736 mac 97736 bytes_out 0 97736 bytes_in 0 97736 station_ip 5.120.46.156 97736 port 6 97736 unique_id port 97736 remote_ip 10.8.0.26 97737 username mahdiyehalizadeh 97737 mac 97737 bytes_out 0 97737 bytes_in 0 97737 station_ip 37.129.38.165 97737 port 10 97737 unique_id port 97737 remote_ip 10.8.0.42 97739 username amir 97739 mac 97739 bytes_out 0 97739 bytes_in 0 97739 station_ip 46.225.209.43 97739 port 6 97739 unique_id port 97739 remote_ip 10.8.0.54 97740 username ahmadi 97740 unique_id port 97740 terminate_cause User-Request 97684 terminate_cause User-Request 97684 bytes_out 51327 97684 bytes_in 818501 97684 station_ip 113.203.122.159 97684 port 15729042 97684 nas_port_type Virtual 97684 remote_ip 5.5.5.154 97687 username amirhosein 97687 unique_id port 97687 terminate_cause User-Request 97687 bytes_out 63402 97687 bytes_in 11728 97687 station_ip 113.203.122.159 97687 port 15729043 97687 nas_port_type Virtual 97687 remote_ip 5.5.5.154 97691 username alihosseini 97691 mac 97691 bytes_out 0 97691 bytes_in 0 97691 station_ip 5.126.12.163 97691 port 8 97691 unique_id port 97691 remote_ip 10.8.0.14 97697 username aminvpn 97697 mac 97697 bytes_out 0 97697 bytes_in 0 97697 station_ip 37.129.39.188 97697 port 8 97697 unique_id port 97697 remote_ip 10.8.0.6 97708 username arman1 97708 kill_reason Another user logged on this global unique id 97708 mac 97708 bytes_out 0 97708 bytes_in 0 97708 station_ip 5.119.66.47 97708 port 6 97708 unique_id port 97710 username ahmadi 97710 unique_id port 97710 terminate_cause User-Request 97710 bytes_out 42850 97710 bytes_in 375727 97710 station_ip 83.122.224.45 97710 port 15729050 97710 nas_port_type Virtual 97710 remote_ip 5.5.5.151 97713 username alihosseini 97713 mac 97713 bytes_out 3201503 97713 bytes_in 36805811 97713 station_ip 5.126.12.163 97713 port 9 97713 unique_id port 97713 remote_ip 10.8.0.14 97716 username amir 97716 mac 97716 bytes_out 0 97716 bytes_in 0 97716 station_ip 46.225.209.43 97716 port 9 97716 unique_id port 97716 remote_ip 10.8.1.34 97717 username arman1 97717 mac 97717 bytes_out 0 97717 bytes_in 0 97717 station_ip 5.119.66.47 97717 port 6 97717 unique_id port 97719 username mehdizare 97719 mac 97719 bytes_out 0 97719 bytes_in 0 97719 station_ip 5.119.23.64 97719 port 10 97719 unique_id port 97720 username mahdiyehalizadeh 97720 mac 97720 bytes_out 2042590 97720 bytes_in 15287899 97720 station_ip 113.203.25.87 97720 port 12 97720 unique_id port 97720 remote_ip 10.8.0.42 97722 username forozande 97722 mac 97722 bytes_out 81261 97722 bytes_in 194900 97722 station_ip 83.123.148.157 97722 port 6 97722 unique_id port 97722 remote_ip 10.8.0.74 97723 username alihosseini 97723 mac 97723 bytes_out 0 97723 bytes_in 0 97723 station_ip 5.126.12.163 97723 port 6 97723 unique_id port 97723 remote_ip 10.8.0.14 97727 username alihosseini 97727 mac 97727 bytes_out 0 97727 bytes_in 0 97727 station_ip 5.126.12.163 97727 port 9 97727 unique_id port 97727 remote_ip 10.8.0.14 97729 username alipour 97729 kill_reason Another user logged on this global unique id 97729 mac 97729 bytes_out 0 97729 bytes_in 0 97729 station_ip 37.129.190.205 97729 port 8 97729 unique_id port 97733 username amir 97733 mac 97733 bytes_out 0 97733 bytes_in 0 97733 station_ip 46.225.209.43 97733 port 10 97733 unique_id port 97733 remote_ip 10.8.0.54 97741 username amir 97741 kill_reason Maximum check online fails reached 97741 mac 97741 bytes_out 0 97741 bytes_in 0 97741 station_ip 46.225.209.43 97741 port 6 97741 unique_id port 97743 username amir 97743 mac 97743 bytes_out 0 97743 bytes_in 0 97743 station_ip 46.225.209.43 97743 port 9 97743 unique_id port 97743 remote_ip 10.8.1.34 97747 username amir 97747 mac 97747 bytes_out 0 97747 bytes_in 0 97747 station_ip 46.225.209.43 97747 port 9 97747 unique_id port 97747 remote_ip 10.8.1.34 97751 username aminvpn 97751 unique_id port 97705 bytes_in 0 97705 station_ip 46.225.209.186 97705 port 15729047 97705 nas_port_type Virtual 97705 remote_ip 5.5.5.152 97707 username reza2742 97707 unique_id port 97707 terminate_cause User-Request 97707 bytes_out 0 97707 bytes_in 252 97707 station_ip 46.225.209.186 97707 port 15729049 97707 nas_port_type Virtual 97707 remote_ip 5.5.5.152 97711 username alipour 97711 mac 97711 bytes_out 0 97711 bytes_in 0 97711 station_ip 37.129.190.205 97711 port 8 97711 unique_id port 97711 remote_ip 10.8.1.38 97712 username arman1 97712 kill_reason Another user logged on this global unique id 97712 mac 97712 bytes_out 0 97712 bytes_in 0 97712 station_ip 5.119.66.47 97712 port 6 97712 unique_id port 97714 username mahdiyehalizadeh 97714 kill_reason Wrong password 97714 mac 97714 bytes_out 0 97714 bytes_in 0 97714 station_ip 113.203.25.87 97714 port 12 97714 unique_id port 97715 username forozande 97715 mac 97715 bytes_out 0 97715 bytes_in 0 97715 station_ip 37.129.175.117 97715 port 8 97715 unique_id port 97715 remote_ip 10.8.0.74 97718 username forozande 97718 mac 97718 bytes_out 351353 97718 bytes_in 1800445 97718 station_ip 83.122.163.105 97718 port 6 97718 unique_id port 97718 remote_ip 10.8.0.74 97725 username alihosseini 97725 mac 97725 bytes_out 0 97725 bytes_in 0 97725 station_ip 5.126.12.163 97725 port 9 97725 unique_id port 97725 remote_ip 10.8.1.6 97728 username mehdizare 97728 mac 97728 bytes_out 3248564 97728 bytes_in 49513414 97728 station_ip 5.119.23.64 97728 port 8 97728 unique_id port 97728 remote_ip 10.8.0.22 97730 username aminvpn 97730 unique_id port 97730 terminate_cause Lost-Carrier 97730 bytes_out 908096 97730 bytes_in 18196676 97730 station_ip 31.57.129.102 97730 port 15729051 97730 nas_port_type Virtual 97730 remote_ip 5.5.5.150 97731 username alirr 97731 unique_id port 97731 terminate_cause User-Request 97731 bytes_out 1229730 97731 bytes_in 4714903 97731 station_ip 87.107.229.248 97731 port 15729053 97731 nas_port_type Virtual 97731 remote_ip 5.5.5.148 97732 username amir 97732 mac 97732 bytes_out 0 97732 bytes_in 0 97732 station_ip 46.225.209.43 97732 port 10 97732 unique_id port 97732 remote_ip 10.8.0.54 97734 username forozande 97734 mac 97734 bytes_out 3239517 97734 bytes_in 22437406 97734 station_ip 113.203.46.215 97734 port 6 97734 unique_id port 97734 remote_ip 10.8.0.74 97735 username amir 97735 mac 97735 bytes_out 0 97735 bytes_in 0 97735 station_ip 46.225.209.43 97735 port 10 97735 unique_id port 97735 remote_ip 10.8.0.54 97738 username aminvpn 97738 unique_id port 97738 terminate_cause Lost-Carrier 97738 bytes_out 331188 97738 bytes_in 3206527 97738 station_ip 31.57.129.102 97738 port 15729054 97738 nas_port_type Virtual 97738 remote_ip 5.5.5.150 97745 username forozande 97745 mac 97745 bytes_out 0 97745 bytes_in 0 97745 station_ip 83.123.202.227 97745 port 10 97745 unique_id port 97745 remote_ip 10.8.0.74 97749 username amir 97749 mac 97749 bytes_out 616304 97749 bytes_in 7401415 97749 station_ip 46.225.209.43 97749 port 9 97749 unique_id port 97749 remote_ip 10.8.1.34 97752 username ahmadi 97752 unique_id port 97752 terminate_cause Lost-Carrier 97752 bytes_out 127337 97752 bytes_in 713717 97752 station_ip 83.122.153.173 97752 port 15729056 97752 nas_port_type Virtual 97752 remote_ip 5.5.5.147 97753 username amir 97753 mac 97753 bytes_out 0 97753 bytes_in 0 97753 station_ip 46.225.209.43 97740 bytes_out 29264 97740 bytes_in 78124 97740 station_ip 83.122.153.173 97740 port 15729055 97740 nas_port_type Virtual 97740 remote_ip 5.5.5.147 97742 username mehdizare 97742 kill_reason Another user logged on this global unique id 97742 mac 97742 bytes_out 0 97742 bytes_in 0 97742 station_ip 5.119.23.64 97742 port 9 97742 unique_id port 97742 remote_ip 10.8.0.22 97744 username amir 97744 mac 97744 bytes_out 0 97744 bytes_in 0 97744 station_ip 46.225.209.43 97744 port 9 97744 unique_id port 97744 remote_ip 10.8.1.34 97746 username amir 97746 mac 97746 bytes_out 0 97746 bytes_in 0 97746 station_ip 46.225.209.43 97746 port 9 97746 unique_id port 97746 remote_ip 10.8.1.34 97748 username tahmasebi 97748 kill_reason Another user logged on this global unique id 97748 mac 97748 bytes_out 0 97748 bytes_in 0 97748 station_ip 5.120.125.203 97748 port 9 97748 unique_id port 97748 remote_ip 10.8.0.66 97750 username aminvpn 97750 unique_id port 97750 terminate_cause User-Request 97750 bytes_out 0 97750 bytes_in 252 97750 station_ip 31.57.129.102 97750 port 15729057 97750 nas_port_type Virtual 97750 remote_ip 5.5.5.150 97756 username tahmasebi 97756 mac 97756 bytes_out 0 97756 bytes_in 0 97756 station_ip 5.120.125.203 97756 port 9 97756 unique_id port 97757 username aminvpn 97757 unique_id port 97757 terminate_cause Lost-Carrier 97757 bytes_out 2792847 97757 bytes_in 62916935 97757 station_ip 31.57.129.102 97757 port 15729059 97757 nas_port_type Virtual 97757 remote_ip 5.5.5.150 97763 username amir 97763 mac 97763 bytes_out 0 97763 bytes_in 0 97763 station_ip 46.225.209.43 97763 port 9 97763 unique_id port 97763 remote_ip 10.8.0.54 97765 username mehdizare 97765 mac 97765 bytes_out 0 97765 bytes_in 0 97765 station_ip 5.119.23.64 97765 port 9 97765 unique_id port 97765 remote_ip 10.8.0.22 97769 username amir 97769 mac 97769 bytes_out 0 97769 bytes_in 0 97769 station_ip 46.225.209.43 97769 port 15 97769 unique_id port 97769 remote_ip 10.8.0.54 97774 username aminvpn 97774 mac 97774 bytes_out 0 97774 bytes_in 0 97774 station_ip 83.123.214.141 97774 port 16 97774 unique_id port 97774 remote_ip 10.8.0.6 97776 username mohammadmahdi 97776 kill_reason Another user logged on this global unique id 97776 mac 97776 bytes_out 0 97776 bytes_in 0 97776 station_ip 37.129.85.40 97776 port 9 97776 unique_id port 97777 username mahdiyehalizadeh 97777 mac 97777 bytes_out 23890 97777 bytes_in 44987 97777 station_ip 37.129.121.251 97777 port 15 97777 unique_id port 97777 remote_ip 10.8.0.42 97779 username amir 97779 mac 97779 bytes_out 0 97779 bytes_in 0 97779 station_ip 46.225.209.43 97779 port 17 97779 unique_id port 97779 remote_ip 10.8.0.54 97784 username tahmasebi 97784 mac 97784 bytes_out 0 97784 bytes_in 0 97784 station_ip 5.119.120.1 97784 port 10 97784 unique_id port 97785 username mahdiyehalizadeh 97785 kill_reason Another user logged on this global unique id 97785 mac 97785 bytes_out 0 97785 bytes_in 0 97785 station_ip 37.129.121.251 97785 port 9 97785 unique_id port 97785 remote_ip 10.8.0.42 97786 username mammad 97786 unique_id port 97786 terminate_cause User-Request 97786 bytes_out 0 97786 bytes_in 0 97786 station_ip 5.233.61.112 97786 port 15729061 97786 nas_port_type Virtual 97786 remote_ip 5.5.5.145 97789 username amir 97789 mac 97789 bytes_out 1183699 97789 bytes_in 17744261 97789 station_ip 46.225.209.43 97789 port 9 97751 terminate_cause User-Request 97751 bytes_out 0 97751 bytes_in 0 97751 station_ip 31.57.129.102 97751 port 15729058 97751 nas_port_type Virtual 97751 remote_ip 5.5.5.150 97758 username khalili 97758 kill_reason Another user logged on this global unique id 97758 mac 97758 bytes_out 0 97758 bytes_in 0 97758 station_ip 5.119.225.82 97758 port 12 97758 unique_id port 97758 remote_ip 10.8.0.78 97760 username tahmasebi 97760 kill_reason Another user logged on this global unique id 97760 mac 97760 bytes_out 0 97760 bytes_in 0 97760 station_ip 5.119.120.1 97760 port 10 97760 unique_id port 97760 remote_ip 10.8.0.66 97761 username mohammadmahdi 97761 mac 97761 bytes_out 1638388 97761 bytes_in 20812331 97761 station_ip 37.129.85.40 97761 port 14 97761 unique_id port 97761 remote_ip 10.8.0.34 97764 username mehdizare 97764 mac 97764 bytes_out 30802 97764 bytes_in 65494 97764 station_ip 5.119.23.64 97764 port 15 97764 unique_id port 97764 remote_ip 10.8.0.22 97768 username amir 97768 mac 97768 bytes_out 0 97768 bytes_in 0 97768 station_ip 46.225.209.43 97768 port 15 97768 unique_id port 97768 remote_ip 10.8.0.54 97773 username amir 97773 mac 97773 bytes_out 0 97773 bytes_in 0 97773 station_ip 46.225.209.43 97773 port 15 97773 unique_id port 97773 remote_ip 10.8.0.54 97778 username mohammadmahdi 97778 mac 97778 bytes_out 0 97778 bytes_in 0 97778 station_ip 37.129.85.40 97778 port 9 97778 unique_id port 97780 username mahdiyehalizadeh 97780 mac 97780 bytes_out 0 97780 bytes_in 0 97780 station_ip 37.129.121.251 97780 port 15 97780 unique_id port 97780 remote_ip 10.8.0.42 97783 username mohammadmahdi 97783 mac 97783 bytes_out 110997 97783 bytes_in 469685 97783 station_ip 37.129.85.40 97783 port 15 97783 unique_id port 97783 remote_ip 10.8.0.34 97787 username amir 97787 mac 97787 bytes_out 0 97787 bytes_in 0 97787 station_ip 46.225.209.43 97787 port 9 97787 unique_id port 97787 remote_ip 10.8.1.34 97790 username amir 97790 mac 97790 bytes_out 2000905 97790 bytes_in 32733381 97790 station_ip 46.225.209.43 97790 port 9 97790 unique_id port 97790 remote_ip 10.8.1.34 97795 username mahdiyehalizadeh 97795 mac 97795 bytes_out 0 97795 bytes_in 0 97795 station_ip 37.129.121.251 97795 port 9 97795 unique_id port 97795 remote_ip 10.8.1.14 97800 username amir 97800 mac 97800 bytes_out 0 97800 bytes_in 0 97800 station_ip 46.225.209.43 97800 port 10 97800 unique_id port 97800 remote_ip 10.8.1.34 97801 username amir 97801 mac 97801 bytes_out 0 97801 bytes_in 0 97801 station_ip 46.225.209.43 97801 port 10 97801 unique_id port 97801 remote_ip 10.8.1.34 97802 username mehdizare 97802 kill_reason Another user logged on this global unique id 97802 mac 97802 bytes_out 0 97802 bytes_in 0 97802 station_ip 5.119.23.64 97802 port 14 97802 unique_id port 97802 remote_ip 10.8.0.22 97803 username mohammadmahdi 97803 kill_reason Another user logged on this global unique id 97803 mac 97803 bytes_out 0 97803 bytes_in 0 97803 station_ip 37.129.85.40 97803 port 9 97803 unique_id port 97803 remote_ip 10.8.0.34 97804 username mahdiyehalizadeh 97804 kill_reason Another user logged on this global unique id 97804 mac 97804 bytes_out 0 97804 bytes_in 0 97804 station_ip 37.129.121.251 97804 port 9 97804 unique_id port 97805 username madadi2 97805 mac 97805 bytes_out 3175876 97805 bytes_in 19344471 97805 station_ip 5.120.134.92 97805 port 16 97753 port 9 97753 unique_id port 97753 remote_ip 10.8.1.34 97754 username amir 97754 mac 97754 bytes_out 0 97754 bytes_in 0 97754 station_ip 46.225.209.43 97754 port 9 97754 unique_id port 97754 remote_ip 10.8.1.34 97755 username mehdizare 97755 mac 97755 bytes_out 0 97755 bytes_in 0 97755 station_ip 5.119.23.64 97755 port 10 97755 unique_id port 97755 remote_ip 10.8.0.22 97759 username amir 97759 mac 97759 bytes_out 0 97759 bytes_in 0 97759 station_ip 46.225.209.43 97759 port 9 97759 unique_id port 97759 remote_ip 10.8.1.34 97762 username amir 97762 mac 97762 bytes_out 0 97762 bytes_in 0 97762 station_ip 46.225.209.43 97762 port 9 97762 unique_id port 97762 remote_ip 10.8.1.34 97766 username tahmasebi 97766 kill_reason Another user logged on this global unique id 97766 mac 97766 bytes_out 0 97766 bytes_in 0 97766 station_ip 5.119.120.1 97766 port 10 97766 unique_id port 97767 username aminvpn 97767 mac 97767 bytes_out 62563 97767 bytes_in 138000 97767 station_ip 83.123.214.141 97767 port 15 97767 unique_id port 97767 remote_ip 10.8.0.6 97770 username mohammadmahdi 97770 kill_reason Another user logged on this global unique id 97770 mac 97770 bytes_out 0 97770 bytes_in 0 97770 station_ip 37.129.85.40 97770 port 9 97770 unique_id port 97770 remote_ip 10.8.0.34 97771 username khalili 97771 kill_reason Another user logged on this global unique id 97771 mac 97771 bytes_out 0 97771 bytes_in 0 97771 station_ip 5.119.225.82 97771 port 12 97771 unique_id port 97772 username ahmadipour 97772 unique_id port 97772 terminate_cause Lost-Carrier 97772 bytes_out 147775 97772 bytes_in 2340883 97772 station_ip 83.122.16.228 97772 port 15729060 97772 nas_port_type Virtual 97772 remote_ip 5.5.5.146 97775 username mahbobeh 97775 unique_id port 97775 terminate_cause Lost-Carrier 97775 bytes_out 374061 97775 bytes_in 1614490 97775 station_ip 83.123.161.228 97775 port 15729052 97775 nas_port_type Virtual 97775 remote_ip 5.5.5.149 97781 username mohammadmahdi 97781 mac 97781 bytes_out 689847 97781 bytes_in 9700248 97781 station_ip 37.129.85.40 97781 port 18 97781 unique_id port 97781 remote_ip 10.8.0.34 97782 username amir 97782 mac 97782 bytes_out 0 97782 bytes_in 0 97782 station_ip 46.225.209.43 97782 port 17 97782 unique_id port 97782 remote_ip 10.8.0.54 97788 username mammad 97788 unique_id port 97788 terminate_cause User-Request 97788 bytes_out 0 97788 bytes_in 0 97788 station_ip 5.233.61.112 97788 port 15729062 97788 nas_port_type Virtual 97788 remote_ip 5.5.5.145 97793 username amir 97793 mac 97793 bytes_out 0 97793 bytes_in 0 97793 station_ip 46.225.209.43 97793 port 9 97793 unique_id port 97793 remote_ip 10.8.1.34 97798 username amir 97798 mac 97798 bytes_out 0 97798 bytes_in 0 97798 station_ip 46.225.209.43 97798 port 10 97798 unique_id port 97798 remote_ip 10.8.1.34 97808 username mahdiyehalizadeh 97808 mac 97808 bytes_out 0 97808 bytes_in 0 97808 station_ip 37.129.121.251 97808 port 9 97808 unique_id port 97810 username mohammadmahdi 97810 kill_reason Another user logged on this global unique id 97810 mac 97810 bytes_out 0 97810 bytes_in 0 97810 station_ip 37.129.85.40 97810 port 9 97810 unique_id port 97811 username mohammadmahdi 97811 mac 97811 bytes_out 0 97811 bytes_in 0 97811 station_ip 37.129.85.40 97811 port 15 97811 unique_id port 97811 remote_ip 10.8.0.34 97813 username amir 97813 mac 97813 bytes_out 0 97789 unique_id port 97789 remote_ip 10.8.1.34 97791 username mohammadmahdi 97791 mac 97791 bytes_out 302006 97791 bytes_in 2982308 97791 station_ip 37.129.85.40 97791 port 10 97791 unique_id port 97791 remote_ip 10.8.0.34 97792 username amir 97792 mac 97792 bytes_out 0 97792 bytes_in 0 97792 station_ip 46.225.209.43 97792 port 9 97792 unique_id port 97792 remote_ip 10.8.1.34 97794 username amir 97794 mac 97794 bytes_out 0 97794 bytes_in 0 97794 station_ip 46.225.209.43 97794 port 9 97794 unique_id port 97794 remote_ip 10.8.1.34 97796 username amir 97796 mac 97796 bytes_out 0 97796 bytes_in 0 97796 station_ip 46.225.209.43 97796 port 10 97796 unique_id port 97796 remote_ip 10.8.1.34 97797 username amir 97797 mac 97797 bytes_out 0 97797 bytes_in 0 97797 station_ip 46.225.209.43 97797 port 9 97797 unique_id port 97797 remote_ip 10.8.0.54 97799 username amir 97799 mac 97799 bytes_out 0 97799 bytes_in 0 97799 station_ip 46.225.209.43 97799 port 10 97799 unique_id port 97799 remote_ip 10.8.1.34 97806 username mehdizare 97806 kill_reason Another user logged on this global unique id 97806 mac 97806 bytes_out 0 97806 bytes_in 0 97806 station_ip 5.119.23.64 97806 port 14 97806 unique_id port 97807 username aminvpn 97807 kill_reason Another user logged on this global unique id 97807 mac 97807 bytes_out 0 97807 bytes_in 0 97807 station_ip 5.119.20.221 97807 port 10 97807 unique_id port 97807 remote_ip 10.8.0.6 97809 username aminvpn 97809 mac 97809 bytes_out 0 97809 bytes_in 0 97809 station_ip 5.119.20.221 97809 port 10 97809 unique_id port 97814 username amir 97814 mac 97814 bytes_out 0 97814 bytes_in 0 97814 station_ip 46.225.209.43 97814 port 10 97814 unique_id port 97814 remote_ip 10.8.0.54 97815 username amir 97815 kill_reason Maximum check online fails reached 97815 mac 97815 bytes_out 0 97815 bytes_in 0 97815 station_ip 46.225.209.43 97815 port 10 97815 unique_id port 97817 username amir 97817 mac 97817 bytes_out 0 97817 bytes_in 0 97817 station_ip 46.225.209.43 97817 port 10 97817 unique_id port 97817 remote_ip 10.8.1.34 97822 username mahdiyehalizadeh 97822 mac 97822 bytes_out 0 97822 bytes_in 0 97822 station_ip 37.129.121.251 97822 port 9 97822 unique_id port 97822 remote_ip 10.8.1.14 97827 username mahdiyehalizadeh 97827 mac 97827 bytes_out 515832 97827 bytes_in 10591239 97827 station_ip 37.129.121.251 97827 port 16 97827 unique_id port 97827 remote_ip 10.8.0.42 97834 username asadi 97834 kill_reason Another user logged on this global unique id 97834 mac 97834 bytes_out 0 97834 bytes_in 0 97834 station_ip 37.129.100.39 97834 port 12 97834 unique_id port 97834 remote_ip 10.8.0.50 97837 username aminvpn 97837 mac 97837 bytes_out 0 97837 bytes_in 0 97837 station_ip 5.119.20.221 97837 port 16 97837 unique_id port 97837 remote_ip 10.8.0.6 97838 username asadi 97838 mac 97838 bytes_out 0 97838 bytes_in 0 97838 station_ip 37.129.100.39 97838 port 12 97838 unique_id port 97844 username aminvpn 97844 mac 97844 bytes_out 0 97844 bytes_in 0 97844 station_ip 5.119.20.221 97844 port 12 97844 unique_id port 97844 remote_ip 10.8.0.6 97849 username forozande 97849 mac 97849 bytes_out 0 97849 bytes_in 0 97849 station_ip 37.129.64.190 97849 port 12 97849 unique_id port 97849 remote_ip 10.8.0.74 97850 username aminvpn 97805 unique_id port 97805 remote_ip 10.8.0.26 97812 username amir 97812 mac 97812 bytes_out 0 97812 bytes_in 0 97812 station_ip 46.225.209.43 97812 port 10 97812 unique_id port 97812 remote_ip 10.8.1.34 97818 username amir 97818 mac 97818 bytes_out 0 97818 bytes_in 0 97818 station_ip 46.225.209.43 97818 port 10 97818 unique_id port 97818 remote_ip 10.8.1.34 97821 username mahdiyehalizadeh 97821 mac 97821 bytes_out 0 97821 bytes_in 0 97821 station_ip 37.129.121.251 97821 port 9 97821 unique_id port 97821 remote_ip 10.8.1.14 97823 username mehdizare 97823 mac 97823 bytes_out 0 97823 bytes_in 0 97823 station_ip 5.119.23.64 97823 port 14 97823 unique_id port 97824 username mehdizare 97824 mac 97824 bytes_out 0 97824 bytes_in 0 97824 station_ip 5.119.23.64 97824 port 9 97824 unique_id port 97824 remote_ip 10.8.1.22 97825 username mehdizare 97825 mac 97825 bytes_out 1579723 97825 bytes_in 46336069 97825 station_ip 5.119.23.64 97825 port 9 97825 unique_id port 97825 remote_ip 10.8.1.22 97826 username khalili 97826 mac 97826 bytes_out 0 97826 bytes_in 0 97826 station_ip 5.119.225.82 97826 port 12 97826 unique_id port 97830 username aminvpn 97830 mac 97830 bytes_out 0 97830 bytes_in 0 97830 station_ip 83.123.122.21 97830 port 12 97830 unique_id port 97830 remote_ip 10.8.0.6 97831 username alihosseini 97831 kill_reason Another user logged on this global unique id 97831 mac 97831 bytes_out 0 97831 bytes_in 0 97831 station_ip 5.125.16.193 97831 port 8 97831 unique_id port 97833 username forozande 97833 mac 97833 bytes_out 0 97833 bytes_in 0 97833 station_ip 83.122.68.1 97833 port 12 97833 unique_id port 97833 remote_ip 10.8.0.74 97835 username arman1 97835 kill_reason Another user logged on this global unique id 97835 mac 97835 bytes_out 0 97835 bytes_in 0 97835 station_ip 5.119.1.232 97835 port 14 97835 unique_id port 97835 remote_ip 10.8.0.86 97839 username aminvpn 97839 mac 97839 bytes_out 0 97839 bytes_in 0 97839 station_ip 5.119.20.221 97839 port 17 97839 unique_id port 97839 remote_ip 10.8.0.6 97841 username mahdiyehalizadeh 97841 mac 97841 bytes_out 1541906 97841 bytes_in 10550860 97841 station_ip 83.123.172.150 97841 port 12 97841 unique_id port 97841 remote_ip 10.8.0.42 97842 username aminvpn 97842 mac 97842 bytes_out 0 97842 bytes_in 0 97842 station_ip 5.119.20.221 97842 port 12 97842 unique_id port 97842 remote_ip 10.8.0.6 97845 username aminvpn 97845 mac 97845 bytes_out 0 97845 bytes_in 0 97845 station_ip 5.119.20.221 97845 port 12 97845 unique_id port 97845 remote_ip 10.8.0.6 97846 username aminvpn 97846 mac 97846 bytes_out 0 97846 bytes_in 0 97846 station_ip 5.119.20.221 97846 port 12 97846 unique_id port 97846 remote_ip 10.8.0.6 97848 username aminvpn 97848 mac 97848 bytes_out 0 97848 bytes_in 0 97848 station_ip 5.119.20.221 97848 port 16 97848 unique_id port 97848 remote_ip 10.8.0.6 97851 username madadi2 97851 mac 97851 bytes_out 0 97851 bytes_in 0 97851 station_ip 5.120.90.198 97851 port 16 97851 unique_id port 97851 remote_ip 10.8.0.26 97853 username mirzaei 97853 kill_reason Another user logged on this global unique id 97853 mac 97853 bytes_out 0 97853 bytes_in 0 97853 station_ip 5.119.107.36 97853 port 2 97853 unique_id port 97853 remote_ip 10.8.0.30 97856 username aminvpn 97856 mac 97813 bytes_in 0 97813 station_ip 46.225.209.43 97813 port 10 97813 unique_id port 97813 remote_ip 10.8.0.54 97816 username amir 97816 mac 97816 bytes_out 0 97816 bytes_in 0 97816 station_ip 46.225.209.43 97816 port 10 97816 unique_id port 97816 remote_ip 10.8.1.34 97819 username amir 97819 kill_reason Maximum check online fails reached 97819 mac 97819 bytes_out 0 97819 bytes_in 0 97819 station_ip 46.225.209.43 97819 port 15 97819 unique_id port 97820 username mahdiyehalizadeh 97820 mac 97820 bytes_out 0 97820 bytes_in 0 97820 station_ip 37.129.121.251 97820 port 9 97820 unique_id port 97828 username mehdizare 97828 mac 97828 bytes_out 0 97828 bytes_in 0 97828 station_ip 5.119.23.64 97828 port 14 97828 unique_id port 97828 remote_ip 10.8.0.22 97829 username madadi2 97829 mac 97829 bytes_out 0 97829 bytes_in 0 97829 station_ip 5.120.41.225 97829 port 12 97829 unique_id port 97829 remote_ip 10.8.0.26 97832 username alipour 97832 mac 97832 bytes_out 0 97832 bytes_in 0 97832 station_ip 37.129.190.205 97832 port 8 97832 unique_id port 97836 username aminvpn 97836 unique_id port 97836 terminate_cause User-Request 97836 bytes_out 0 97836 bytes_in 0 97836 station_ip 5.120.156.11 97836 port 15729070 97836 nas_port_type Virtual 97836 remote_ip 5.5.5.144 97840 username alipour 97840 mac 97840 bytes_out 0 97840 bytes_in 0 97840 station_ip 37.129.190.205 97840 port 8 97840 unique_id port 97840 remote_ip 10.8.1.38 97843 username aminvpn 97843 mac 97843 bytes_out 0 97843 bytes_in 0 97843 station_ip 5.119.20.221 97843 port 12 97843 unique_id port 97843 remote_ip 10.8.0.6 97847 username forozande 97847 mac 97847 bytes_out 440223 97847 bytes_in 801023 97847 station_ip 37.129.64.190 97847 port 16 97847 unique_id port 97847 remote_ip 10.8.0.74 97859 username mahdixz 97859 unique_id port 97859 terminate_cause NAS-Error 97859 bytes_out 0 97859 bytes_in 280 97859 station_ip 5.119.206.193 97859 port 15729072 97859 nas_port_type Virtual 97859 remote_ip 5.5.5.142 97862 username madadi2 97862 mac 97862 bytes_out 0 97862 bytes_in 0 97862 station_ip 5.119.48.116 97862 port 19 97862 unique_id port 97862 remote_ip 10.8.0.26 97864 username morteza 97864 kill_reason Another user logged on this global unique id 97864 mac 97864 bytes_out 0 97864 bytes_in 0 97864 station_ip 37.129.48.66 97864 port 17 97864 unique_id port 97864 remote_ip 10.8.0.90 97869 username abbasaskari 97869 mac 97869 bytes_out 0 97869 bytes_in 0 97869 station_ip 46.225.215.57 97869 port 18 97869 unique_id port 97869 remote_ip 10.8.0.94 97872 username morteza 97872 mac 97872 bytes_out 0 97872 bytes_in 0 97872 station_ip 37.129.48.66 97872 port 8 97872 unique_id port 97872 remote_ip 10.8.1.46 97875 username aminvpn 97875 mac 97875 bytes_out 0 97875 bytes_in 0 97875 station_ip 5.119.20.221 97875 port 17 97875 unique_id port 97875 remote_ip 10.8.0.6 97879 username arman1 97879 kill_reason Another user logged on this global unique id 97879 mac 97879 bytes_out 0 97879 bytes_in 0 97879 station_ip 5.119.1.232 97879 port 14 97879 unique_id port 97879 remote_ip 10.8.0.86 97881 username askari 97881 mac 97881 bytes_out 0 97881 bytes_in 0 97881 station_ip 5.120.16.194 97881 port 17 97881 unique_id port 97881 remote_ip 10.8.0.38 97882 username askari 97882 mac 97882 bytes_out 0 97882 bytes_in 0 97850 mac 97850 bytes_out 0 97850 bytes_in 0 97850 station_ip 5.119.20.221 97850 port 16 97850 unique_id port 97850 remote_ip 10.8.0.6 97852 username alipour 97852 mac 97852 bytes_out 0 97852 bytes_in 0 97852 station_ip 37.129.190.205 97852 port 17 97852 unique_id port 97852 remote_ip 10.8.0.70 97854 username aminvpn 97854 mac 97854 bytes_out 0 97854 bytes_in 0 97854 station_ip 5.119.20.221 97854 port 18 97854 unique_id port 97854 remote_ip 10.8.0.6 97855 username aminvpn 97855 mac 97855 bytes_out 0 97855 bytes_in 0 97855 station_ip 5.119.20.221 97855 port 18 97855 unique_id port 97855 remote_ip 10.8.0.6 97857 username alipour 97857 mac 97857 bytes_out 0 97857 bytes_in 0 97857 station_ip 37.129.190.205 97857 port 17 97857 unique_id port 97857 remote_ip 10.8.0.70 97860 username bcboard 97860 unique_id port 97860 terminate_cause Lost-Carrier 97860 bytes_out 1090040 97860 bytes_in 11942110 97860 station_ip 83.123.68.120 97860 port 15729071 97860 nas_port_type Virtual 97860 remote_ip 5.5.5.143 97861 username aminvpn 97861 mac 97861 bytes_out 0 97861 bytes_in 0 97861 station_ip 5.119.20.221 97861 port 19 97861 unique_id port 97861 remote_ip 10.8.0.6 97863 username aminvpn 97863 mac 97863 bytes_out 0 97863 bytes_in 0 97863 station_ip 5.119.20.221 97863 port 19 97863 unique_id port 97863 remote_ip 10.8.0.6 97865 username morteza 97865 mac 97865 bytes_out 0 97865 bytes_in 0 97865 station_ip 37.129.48.66 97865 port 17 97865 unique_id port 97866 username aminvpn 97866 mac 97866 bytes_out 0 97866 bytes_in 0 97866 station_ip 5.119.20.221 97866 port 17 97866 unique_id port 97866 remote_ip 10.8.0.6 97868 username morteza 97868 mac 97868 bytes_out 0 97868 bytes_in 0 97868 station_ip 37.129.48.66 97868 port 8 97868 unique_id port 97868 remote_ip 10.8.1.46 97870 username aminvpn 97870 mac 97870 bytes_out 0 97870 bytes_in 0 97870 station_ip 5.119.20.221 97870 port 18 97870 unique_id port 97870 remote_ip 10.8.0.6 97871 username abbasaskari 97871 mac 97871 bytes_out 0 97871 bytes_in 0 97871 station_ip 46.225.215.57 97871 port 18 97871 unique_id port 97871 remote_ip 10.8.0.94 97876 username aminvpn 97876 mac 97876 bytes_out 0 97876 bytes_in 0 97876 station_ip 5.119.20.221 97876 port 17 97876 unique_id port 97876 remote_ip 10.8.0.6 97877 username forozande 97877 mac 97877 bytes_out 0 97877 bytes_in 0 97877 station_ip 83.122.229.167 97877 port 16 97877 unique_id port 97877 remote_ip 10.8.0.74 97880 username aminvpn 97880 mac 97880 bytes_out 0 97880 bytes_in 0 97880 station_ip 5.119.20.221 97880 port 16 97880 unique_id port 97880 remote_ip 10.8.0.6 97889 username forozande 97889 mac 97889 bytes_out 625795 97889 bytes_in 6799316 97889 station_ip 83.123.208.242 97889 port 11 97889 unique_id port 97889 remote_ip 10.8.0.74 97891 username aminvpn 97891 mac 97891 bytes_out 0 97891 bytes_in 0 97891 station_ip 5.119.20.221 97891 port 17 97891 unique_id port 97891 remote_ip 10.8.0.6 97895 username aminvpn 97895 mac 97895 bytes_out 0 97895 bytes_in 0 97895 station_ip 5.119.20.221 97895 port 11 97895 unique_id port 97895 remote_ip 10.8.0.6 97899 username aminvpn 97899 mac 97899 bytes_out 0 97899 bytes_in 0 97899 station_ip 5.119.20.221 97899 port 11 97899 unique_id port 97856 bytes_out 0 97856 bytes_in 0 97856 station_ip 5.119.20.221 97856 port 18 97856 unique_id port 97856 remote_ip 10.8.0.6 97858 username arman1 97858 mac 97858 bytes_out 0 97858 bytes_in 0 97858 station_ip 5.119.1.232 97858 port 14 97858 unique_id port 97867 username mammad 97867 unique_id port 97867 terminate_cause User-Request 97867 bytes_out 0 97867 bytes_in 0 97867 station_ip 5.233.61.112 97867 port 15729073 97867 nas_port_type Virtual 97867 remote_ip 5.5.5.145 97873 username madadi2 97873 mac 97873 bytes_out 157178 97873 bytes_in 232785 97873 station_ip 5.120.174.8 97873 port 17 97873 unique_id port 97873 remote_ip 10.8.0.26 97874 username aminvpn 97874 mac 97874 bytes_out 0 97874 bytes_in 0 97874 station_ip 5.119.20.221 97874 port 17 97874 unique_id port 97874 remote_ip 10.8.0.6 97878 username askari 97878 mac 97878 bytes_out 0 97878 bytes_in 0 97878 station_ip 5.120.20.5 97878 port 16 97878 unique_id port 97878 remote_ip 10.8.0.38 97883 username askari 97883 mac 97883 bytes_out 2393765 97883 bytes_in 34858450 97883 station_ip 5.120.16.194 97883 port 16 97883 unique_id port 97883 remote_ip 10.8.0.38 97884 username aminvpn 97884 mac 97884 bytes_out 0 97884 bytes_in 0 97884 station_ip 5.119.20.221 97884 port 16 97884 unique_id port 97884 remote_ip 10.8.0.6 97886 username askari 97886 mac 97886 bytes_out 0 97886 bytes_in 0 97886 station_ip 5.120.16.194 97886 port 8 97886 unique_id port 97886 remote_ip 10.8.1.30 97887 username askari 97887 mac 97887 bytes_out 81231 97887 bytes_in 896909 97887 station_ip 5.120.16.194 97887 port 8 97887 unique_id port 97887 remote_ip 10.8.1.30 97888 username arman1 97888 mac 97888 bytes_out 0 97888 bytes_in 0 97888 station_ip 5.119.1.232 97888 port 14 97888 unique_id port 97890 username aminvpn 97890 mac 97890 bytes_out 0 97890 bytes_in 0 97890 station_ip 5.119.20.221 97890 port 11 97890 unique_id port 97890 remote_ip 10.8.0.6 97892 username forozande 97892 mac 97892 bytes_out 0 97892 bytes_in 0 97892 station_ip 37.129.79.232 97892 port 11 97892 unique_id port 97892 remote_ip 10.8.0.74 97896 username aminvpn 97896 mac 97896 bytes_out 0 97896 bytes_in 0 97896 station_ip 5.119.20.221 97896 port 11 97896 unique_id port 97896 remote_ip 10.8.0.6 97900 username aminvpn 97900 mac 97900 bytes_out 0 97900 bytes_in 0 97900 station_ip 5.119.20.221 97900 port 11 97900 unique_id port 97900 remote_ip 10.8.0.6 97903 username aminvpn 97903 mac 97903 bytes_out 0 97903 bytes_in 0 97903 station_ip 5.119.20.221 97903 port 18 97903 unique_id port 97903 remote_ip 10.8.0.6 97909 username alirr 97909 unique_id port 97909 terminate_cause User-Request 97909 bytes_out 0 97909 bytes_in 0 97909 station_ip 83.122.237.4 97909 port 15729080 97909 nas_port_type Virtual 97909 remote_ip 5.5.5.141 97914 username amir 97914 mac 97914 bytes_out 59880 97914 bytes_in 601787 97914 station_ip 46.225.212.230 97914 port 16 97914 unique_id port 97914 remote_ip 10.8.0.54 97917 username tahmasebi 97917 kill_reason Another user logged on this global unique id 97917 mac 97917 bytes_out 0 97917 bytes_in 0 97917 station_ip 5.120.54.40 97917 port 14 97917 unique_id port 97917 remote_ip 10.8.0.66 97918 username arman1 97918 mac 97918 bytes_out 2424604 97918 bytes_in 15683310 97918 station_ip 5.119.1.232 97918 port 17 97882 station_ip 5.120.16.194 97882 port 16 97882 unique_id port 97882 remote_ip 10.8.0.38 97885 username askari 97885 mac 97885 bytes_out 504797 97885 bytes_in 6716526 97885 station_ip 5.120.16.194 97885 port 11 97885 unique_id port 97885 remote_ip 10.8.0.38 97893 username alireza1 97893 unique_id port 97893 terminate_cause User-Request 97893 bytes_out 0 97893 bytes_in 0 97893 station_ip 5.119.246.3 97893 port 15729075 97893 nas_port_type Virtual 97893 remote_ip 5.5.5.158 97894 username aminvpn 97894 mac 97894 bytes_out 0 97894 bytes_in 0 97894 station_ip 5.119.20.221 97894 port 11 97894 unique_id port 97894 remote_ip 10.8.0.6 97897 username aminvpn 97897 mac 97897 bytes_out 0 97897 bytes_in 0 97897 station_ip 5.119.20.221 97897 port 11 97897 unique_id port 97897 remote_ip 10.8.0.6 97898 username aminvpn 97898 mac 97898 bytes_out 0 97898 bytes_in 0 97898 station_ip 5.119.20.221 97898 port 11 97898 unique_id port 97898 remote_ip 10.8.0.6 97904 username askari 97904 mac 97904 bytes_out 0 97904 bytes_in 0 97904 station_ip 5.120.26.163 97904 port 11 97904 unique_id port 97905 username amir 97905 mac 97905 bytes_out 1319747 97905 bytes_in 2849390 97905 station_ip 46.225.212.230 97905 port 16 97905 unique_id port 97905 remote_ip 10.8.0.54 97907 username alirr 97907 unique_id port 97907 terminate_cause User-Request 97907 bytes_out 0 97907 bytes_in 0 97907 station_ip 83.122.237.4 97907 port 15729078 97907 nas_port_type Virtual 97907 remote_ip 5.5.5.141 97911 username Alirezaza 97911 unique_id port 97911 terminate_cause User-Request 97911 bytes_out 0 97911 bytes_in 0 97911 station_ip 83.122.237.4 97911 port 15729081 97911 nas_port_type Virtual 97911 remote_ip 5.5.5.140 97912 username askari 97912 mac 97912 bytes_out 4585 97912 bytes_in 4797 97912 station_ip 5.120.26.163 97912 port 11 97912 unique_id port 97912 remote_ip 10.8.0.38 97913 username askari 97913 mac 97913 bytes_out 0 97913 bytes_in 0 97913 station_ip 5.120.26.163 97913 port 11 97913 unique_id port 97913 remote_ip 10.8.0.38 97915 username askari 97915 mac 97915 bytes_out 204188 97915 bytes_in 2924032 97915 station_ip 5.120.26.163 97915 port 11 97915 unique_id port 97915 remote_ip 10.8.0.38 97919 username madadi2 97919 mac 97919 bytes_out 30752 97919 bytes_in 29537 97919 station_ip 5.120.115.17 97919 port 16 97919 unique_id port 97919 remote_ip 10.8.0.26 97922 username askari 97922 kill_reason Another user logged on this global unique id 97922 mac 97922 bytes_out 0 97922 bytes_in 0 97922 station_ip 5.120.26.163 97922 port 11 97922 unique_id port 97922 remote_ip 10.8.0.38 97925 username askari 97925 mac 97925 bytes_out 0 97925 bytes_in 0 97925 station_ip 5.120.26.163 97925 port 11 97925 unique_id port 97926 username amir 97926 mac 97926 bytes_out 358543 97926 bytes_in 2121160 97926 station_ip 46.225.212.230 97926 port 16 97926 unique_id port 97926 remote_ip 10.8.0.54 97930 username mirzaei 97930 kill_reason Another user logged on this global unique id 97930 mac 97930 bytes_out 0 97930 bytes_in 0 97930 station_ip 5.119.107.36 97930 port 2 97930 unique_id port 97931 username aminvpn 97931 mac 97931 bytes_out 0 97931 bytes_in 0 97931 station_ip 5.119.20.221 97931 port 18 97931 unique_id port 97931 remote_ip 10.8.0.6 97935 username ahmadipour 97935 unique_id port 97935 terminate_cause Lost-Carrier 97935 bytes_out 146190 97899 remote_ip 10.8.0.6 97901 username arman1 97901 mac 97901 bytes_out 2152875 97901 bytes_in 17433573 97901 station_ip 5.119.1.232 97901 port 16 97901 unique_id port 97901 remote_ip 10.8.0.86 97902 username askari 97902 kill_reason Another user logged on this global unique id 97902 mac 97902 bytes_out 0 97902 bytes_in 0 97902 station_ip 5.120.26.163 97902 port 11 97902 unique_id port 97902 remote_ip 10.8.0.38 97906 username alirr 97906 unique_id port 97906 terminate_cause User-Request 97906 bytes_out 182357 97906 bytes_in 597890 97906 station_ip 83.122.237.4 97906 port 15729076 97906 nas_port_type Virtual 97906 remote_ip 5.5.5.141 97908 username alirr 97908 unique_id port 97908 terminate_cause User-Request 97908 bytes_out 0 97908 bytes_in 0 97908 station_ip 83.122.237.4 97908 port 15729079 97908 nas_port_type Virtual 97908 remote_ip 5.5.5.141 97910 username askari 97910 mac 97910 bytes_out 313992 97910 bytes_in 4474474 97910 station_ip 5.120.26.163 97910 port 18 97910 unique_id port 97910 remote_ip 10.8.0.38 97916 username aminvpn 97916 mac 97916 bytes_out 0 97916 bytes_in 0 97916 station_ip 5.119.20.221 97916 port 16 97916 unique_id port 97916 remote_ip 10.8.0.6 97921 username khalili 97921 kill_reason Another user logged on this global unique id 97921 mac 97921 bytes_out 0 97921 bytes_in 0 97921 station_ip 5.120.187.66 97921 port 12 97921 unique_id port 97921 remote_ip 10.8.0.78 97923 username morteza 97923 mac 97923 bytes_out 0 97923 bytes_in 0 97923 station_ip 83.122.241.149 97923 port 8 97923 unique_id port 97923 remote_ip 10.8.1.46 97927 username amir 97927 mac 97927 bytes_out 60602 97927 bytes_in 296081 97927 station_ip 46.225.212.230 97927 port 11 97927 unique_id port 97927 remote_ip 10.8.0.54 97929 username forozande 97929 mac 97929 bytes_out 0 97929 bytes_in 0 97929 station_ip 83.122.168.137 97929 port 16 97929 unique_id port 97929 remote_ip 10.8.0.74 97933 username amir 97933 mac 97933 bytes_out 0 97933 bytes_in 0 97933 station_ip 46.225.212.230 97933 port 11 97933 unique_id port 97933 remote_ip 10.8.0.54 97934 username tahmasebi 97934 mac 97934 bytes_out 0 97934 bytes_in 0 97934 station_ip 5.120.54.40 97934 port 14 97934 unique_id port 97938 username aminvpn 97938 mac 97938 bytes_out 0 97938 bytes_in 0 97938 station_ip 5.119.20.221 97938 port 14 97938 unique_id port 97938 remote_ip 10.8.0.6 97941 username askari 97941 mac 97941 bytes_out 642570 97941 bytes_in 8148884 97941 station_ip 5.120.27.177 97941 port 17 97941 unique_id port 97941 remote_ip 10.8.0.38 97942 username askari 97942 mac 97942 bytes_out 0 97942 bytes_in 0 97942 station_ip 5.120.27.177 97942 port 17 97942 unique_id port 97942 remote_ip 10.8.0.38 97943 username morteza 97943 kill_reason Another user logged on this global unique id 97943 mac 97943 bytes_out 0 97943 bytes_in 0 97943 station_ip 83.122.163.241 97943 port 8 97943 unique_id port 97943 remote_ip 10.8.1.46 97948 username tahmasebi 97948 mac 97948 bytes_out 2338 97948 bytes_in 5501 97948 station_ip 5.120.54.40 97948 port 18 97948 unique_id port 97948 remote_ip 10.8.0.66 97952 username askari 97952 mac 97952 bytes_out 0 97952 bytes_in 0 97952 station_ip 5.120.27.177 97952 port 11 97952 unique_id port 97952 remote_ip 10.8.0.38 97953 username amir 97953 mac 97953 bytes_out 0 97953 bytes_in 0 97953 station_ip 46.225.212.230 97918 unique_id port 97918 remote_ip 10.8.0.86 97920 username aminvpn 97920 mac 97920 bytes_out 0 97920 bytes_in 0 97920 station_ip 5.119.20.221 97920 port 16 97920 unique_id port 97920 remote_ip 10.8.0.6 97924 username aminvpn 97924 mac 97924 bytes_out 0 97924 bytes_in 0 97924 station_ip 5.119.20.221 97924 port 17 97924 unique_id port 97924 remote_ip 10.8.0.6 97928 username aminvpn 97928 mac 97928 bytes_out 0 97928 bytes_in 0 97928 station_ip 5.119.20.221 97928 port 11 97928 unique_id port 97928 remote_ip 10.8.0.6 97932 username mahdiyehalizadeh 97932 mac 97932 bytes_out 333766 97932 bytes_in 3809328 97932 station_ip 83.122.204.245 97932 port 16 97932 unique_id port 97932 remote_ip 10.8.0.42 97936 username aminvpn 97936 mac 97936 bytes_out 0 97936 bytes_in 0 97936 station_ip 5.119.20.221 97936 port 14 97936 unique_id port 97936 remote_ip 10.8.0.6 97939 username aminvpn 97939 mac 97939 bytes_out 0 97939 bytes_in 0 97939 station_ip 5.119.20.221 97939 port 14 97939 unique_id port 97939 remote_ip 10.8.0.6 97940 username aminvpn 97940 mac 97940 bytes_out 0 97940 bytes_in 0 97940 station_ip 5.119.20.221 97940 port 14 97940 unique_id port 97940 remote_ip 10.8.0.6 97945 username aminvpn 97945 mac 97945 bytes_out 0 97945 bytes_in 0 97945 station_ip 5.119.20.221 97945 port 18 97945 unique_id port 97945 remote_ip 10.8.0.6 97946 username tahmasebi 97946 unique_id port 97946 terminate_cause User-Request 97946 bytes_out 0 97946 bytes_in 0 97946 station_ip 5.120.54.40 97946 port 15729083 97946 nas_port_type Virtual 97946 remote_ip 5.5.5.138 97951 username askari 97951 mac 97951 bytes_out 271529 97951 bytes_in 2435591 97951 station_ip 5.120.27.177 97951 port 17 97951 unique_id port 97951 remote_ip 10.8.0.38 97955 username aminvpn 97955 mac 97955 bytes_out 0 97955 bytes_in 0 97955 station_ip 5.119.20.221 97955 port 18 97955 unique_id port 97955 remote_ip 10.8.0.6 97956 username amir 97956 mac 97956 bytes_out 0 97956 bytes_in 0 97956 station_ip 46.225.212.230 97956 port 14 97956 unique_id port 97956 remote_ip 10.8.0.54 97958 username aminvpn 97958 mac 97958 bytes_out 0 97958 bytes_in 0 97958 station_ip 5.119.20.221 97958 port 8 97958 unique_id port 97958 remote_ip 10.8.1.26 97959 username forozande 97959 mac 97959 bytes_out 0 97959 bytes_in 0 97959 station_ip 83.122.174.83 97959 port 11 97959 unique_id port 97959 remote_ip 10.8.0.74 97960 username amir 97960 mac 97960 bytes_out 0 97960 bytes_in 0 97960 station_ip 46.225.212.230 97960 port 11 97960 unique_id port 97960 remote_ip 10.8.0.54 97961 username aminvpn 97961 mac 97961 bytes_out 0 97961 bytes_in 0 97961 station_ip 5.119.20.221 97961 port 8 97961 unique_id port 97961 remote_ip 10.8.1.26 97962 username forozande 97962 mac 97962 bytes_out 661805 97962 bytes_in 4238122 97962 station_ip 83.122.3.14 97962 port 14 97962 unique_id port 97962 remote_ip 10.8.0.74 97965 username askari 97965 mac 97965 bytes_out 0 97965 bytes_in 0 97965 station_ip 5.120.27.177 97965 port 17 97965 unique_id port 97967 username forozande 97967 mac 97967 bytes_out 231967 97967 bytes_in 315613 97967 station_ip 83.122.3.14 97967 port 11 97967 unique_id port 97967 remote_ip 10.8.0.74 97971 username aminvpn 97971 mac 97971 bytes_out 0 97971 bytes_in 0 97935 bytes_in 1159722 97935 station_ip 113.203.86.121 97935 port 15729082 97935 nas_port_type Virtual 97935 remote_ip 5.5.5.139 97937 username aminvpn 97937 mac 97937 bytes_out 0 97937 bytes_in 0 97937 station_ip 5.119.20.221 97937 port 14 97937 unique_id port 97937 remote_ip 10.8.0.6 97944 username morteza 97944 mac 97944 bytes_out 0 97944 bytes_in 0 97944 station_ip 83.122.163.241 97944 port 8 97944 unique_id port 97947 username forozande 97947 mac 97947 bytes_out 850807 97947 bytes_in 3860084 97947 station_ip 37.129.240.47 97947 port 14 97947 unique_id port 97947 remote_ip 10.8.0.74 97949 username amir 97949 mac 97949 bytes_out 1050521 97949 bytes_in 4520915 97949 station_ip 46.225.212.230 97949 port 11 97949 unique_id port 97949 remote_ip 10.8.0.54 97950 username amir 97950 mac 97950 bytes_out 0 97950 bytes_in 0 97950 station_ip 46.225.212.230 97950 port 11 97950 unique_id port 97950 remote_ip 10.8.0.54 97963 username askari 97963 kill_reason Another user logged on this global unique id 97963 mac 97963 bytes_out 0 97963 bytes_in 0 97963 station_ip 5.120.27.177 97963 port 17 97963 unique_id port 97963 remote_ip 10.8.0.38 97966 username aminvpn 97966 mac 97966 bytes_out 0 97966 bytes_in 0 97966 station_ip 5.119.20.221 97966 port 8 97966 unique_id port 97966 remote_ip 10.8.1.26 97969 username forozande 97969 mac 97969 bytes_out 0 97969 bytes_in 0 97969 station_ip 83.123.195.236 97969 port 17 97969 unique_id port 97969 remote_ip 10.8.0.74 97970 username aminvpn 97970 mac 97970 bytes_out 0 97970 bytes_in 0 97970 station_ip 5.119.20.221 97970 port 14 97970 unique_id port 97970 remote_ip 10.8.0.6 97973 username aminvpn 97973 mac 97973 bytes_out 0 97973 bytes_in 0 97973 station_ip 5.119.20.221 97973 port 14 97973 unique_id port 97973 remote_ip 10.8.0.6 97975 username aminvpn 97975 mac 97975 bytes_out 0 97975 bytes_in 0 97975 station_ip 5.119.20.221 97975 port 14 97975 unique_id port 97975 remote_ip 10.8.0.6 97978 username aminvpn 97978 mac 97978 bytes_out 0 97978 bytes_in 0 97978 station_ip 5.119.20.221 97978 port 14 97978 unique_id port 97978 remote_ip 10.8.0.6 97980 username aminvpn 97980 mac 97980 bytes_out 0 97980 bytes_in 0 97980 station_ip 5.119.20.221 97980 port 14 97980 unique_id port 97980 remote_ip 10.8.0.6 97983 username aminvpn 97983 mac 97983 bytes_out 0 97983 bytes_in 0 97983 station_ip 5.119.20.221 97983 port 14 97983 unique_id port 97983 remote_ip 10.8.0.6 97986 username amir 97986 mac 97986 bytes_out 32088 97986 bytes_in 51518 97986 station_ip 46.225.212.230 97986 port 8 97986 unique_id port 97986 remote_ip 10.8.1.34 97987 username aminvpn 97987 mac 97987 bytes_out 0 97987 bytes_in 0 97987 station_ip 5.119.20.221 97987 port 14 97987 unique_id port 97987 remote_ip 10.8.0.6 97988 username aminvpn 97988 mac 97988 bytes_out 0 97988 bytes_in 0 97988 station_ip 5.119.20.221 97988 port 18 97988 unique_id port 97988 remote_ip 10.8.0.6 97991 username aminvpn 97991 mac 97991 bytes_out 0 97991 bytes_in 0 97991 station_ip 5.119.20.221 97991 port 18 97991 unique_id port 97991 remote_ip 10.8.0.6 97995 username amir 97995 mac 97995 bytes_out 32539 97995 bytes_in 73133 97995 station_ip 46.225.212.230 97995 port 8 97995 unique_id port 97995 remote_ip 10.8.1.34 97953 port 14 97953 unique_id port 97953 remote_ip 10.8.0.54 97954 username forozande 97954 mac 97954 bytes_out 175938 97954 bytes_in 1166487 97954 station_ip 83.123.211.209 97954 port 11 97954 unique_id port 97954 remote_ip 10.8.0.74 97957 username aminvpn 97957 mac 97957 bytes_out 0 97957 bytes_in 0 97957 station_ip 5.119.20.221 97957 port 8 97957 unique_id port 97957 remote_ip 10.8.1.26 97964 username mohammadmahdi 97964 mac 97964 bytes_out 946715 97964 bytes_in 8510777 97964 station_ip 37.129.23.91 97964 port 16 97964 unique_id port 97964 remote_ip 10.8.0.34 97968 username askari 97968 mac 97968 bytes_out 0 97968 bytes_in 0 97968 station_ip 5.120.27.177 97968 port 19 97968 unique_id port 97968 remote_ip 10.8.0.38 97972 username amir 97972 mac 97972 bytes_out 0 97972 bytes_in 0 97972 station_ip 46.225.212.230 97972 port 18 97972 unique_id port 97972 remote_ip 10.8.0.54 97977 username amir 97977 mac 97977 bytes_out 0 97977 bytes_in 0 97977 station_ip 46.225.212.230 97977 port 17 97977 unique_id port 97977 remote_ip 10.8.0.54 97981 username madadi2 97981 mac 97981 bytes_out 0 97981 bytes_in 0 97981 station_ip 5.119.254.47 97981 port 19 97981 unique_id port 97981 remote_ip 10.8.0.26 97982 username asadi 97982 kill_reason Another user logged on this global unique id 97982 mac 97982 bytes_out 0 97982 bytes_in 0 97982 station_ip 83.122.229.112 97982 port 11 97982 unique_id port 97982 remote_ip 10.8.0.50 97985 username aminvpn 97985 mac 97985 bytes_out 0 97985 bytes_in 0 97985 station_ip 5.119.20.221 97985 port 19 97985 unique_id port 97985 remote_ip 10.8.0.6 97990 username forozande 97990 mac 97990 bytes_out 0 97990 bytes_in 0 97990 station_ip 83.123.244.209 97990 port 14 97990 unique_id port 97990 remote_ip 10.8.0.74 97992 username aminvpn 97992 mac 97992 bytes_out 0 97992 bytes_in 0 97992 station_ip 5.119.20.221 97992 port 14 97992 unique_id port 97992 remote_ip 10.8.0.6 97994 username aminvpn 97994 mac 97994 bytes_out 0 97994 bytes_in 0 97994 station_ip 5.119.20.221 97994 port 14 97994 unique_id port 97994 remote_ip 10.8.0.6 98002 username aminvpn 98002 mac 98002 bytes_out 0 98002 bytes_in 0 98002 station_ip 5.119.20.221 98002 port 19 98002 unique_id port 98002 remote_ip 10.8.0.6 98007 username aminvpn 98007 mac 98007 bytes_out 0 98007 bytes_in 0 98007 station_ip 5.119.20.221 98007 port 18 98007 unique_id port 98007 remote_ip 10.8.0.6 98012 username aminvpn 98012 mac 98012 bytes_out 0 98012 bytes_in 0 98012 station_ip 5.119.20.221 98012 port 18 98012 unique_id port 98012 remote_ip 10.8.0.6 98015 username mahyaarabpour 98015 mac 98015 bytes_out 0 98015 bytes_in 0 98015 station_ip 5.120.109.252 98015 port 16 98015 unique_id port 98015 remote_ip 10.8.0.82 98018 username mahdiyehalizadeh 98018 mac 98018 bytes_out 342162 98018 bytes_in 3862341 98018 station_ip 37.129.25.115 98018 port 14 98018 unique_id port 98018 remote_ip 10.8.0.42 98025 username mahdiyehalizadeh 98025 mac 98025 bytes_out 6071 98025 bytes_in 7734 98025 station_ip 37.129.25.115 98025 port 18 98025 unique_id port 98025 remote_ip 10.8.0.42 98028 username aminvpn 98028 mac 98028 bytes_out 0 98028 bytes_in 0 98028 station_ip 5.119.20.221 98028 port 16 98028 unique_id port 98028 remote_ip 10.8.0.6 98031 username asadi 97971 station_ip 5.119.20.221 97971 port 17 97971 unique_id port 97971 remote_ip 10.8.0.6 97974 username aminvpn 97974 mac 97974 bytes_out 0 97974 bytes_in 0 97974 station_ip 5.119.20.221 97974 port 17 97974 unique_id port 97974 remote_ip 10.8.0.6 97976 username aminvpn 97976 mac 97976 bytes_out 0 97976 bytes_in 0 97976 station_ip 5.119.20.221 97976 port 18 97976 unique_id port 97976 remote_ip 10.8.0.6 97979 username aminvpn 97979 mac 97979 bytes_out 0 97979 bytes_in 0 97979 station_ip 5.119.20.221 97979 port 17 97979 unique_id port 97979 remote_ip 10.8.0.6 97984 username amir 97984 mac 97984 bytes_out 0 97984 bytes_in 0 97984 station_ip 46.225.212.230 97984 port 18 97984 unique_id port 97984 remote_ip 10.8.0.54 97989 username aminvpn 97989 mac 97989 bytes_out 0 97989 bytes_in 0 97989 station_ip 5.119.20.221 97989 port 19 97989 unique_id port 97989 remote_ip 10.8.0.6 97993 username aminvpn 97993 mac 97993 bytes_out 0 97993 bytes_in 0 97993 station_ip 5.119.20.221 97993 port 18 97993 unique_id port 97993 remote_ip 10.8.0.6 97997 username amir 97997 mac 97997 bytes_out 0 97997 bytes_in 0 97997 station_ip 46.225.212.230 97997 port 14 97997 unique_id port 97997 remote_ip 10.8.0.54 97998 username aminvpn 97998 mac 97998 bytes_out 0 97998 bytes_in 0 97998 station_ip 5.119.20.221 97998 port 18 97998 unique_id port 97998 remote_ip 10.8.0.6 97999 username aminvpn 97999 mac 97999 bytes_out 0 97999 bytes_in 0 97999 station_ip 5.119.20.221 97999 port 14 97999 unique_id port 97999 remote_ip 10.8.0.6 98003 username madadi2 98003 mac 98003 bytes_out 0 98003 bytes_in 0 98003 station_ip 5.119.202.133 98003 port 17 98003 unique_id port 98003 remote_ip 10.8.0.26 98004 username aminvpn 98004 mac 98004 bytes_out 0 98004 bytes_in 0 98004 station_ip 5.119.20.221 98004 port 18 98004 unique_id port 98004 remote_ip 10.8.0.6 98006 username asadi 98006 kill_reason Another user logged on this global unique id 98006 mac 98006 bytes_out 0 98006 bytes_in 0 98006 station_ip 83.122.229.112 98006 port 11 98006 unique_id port 98008 username aminvpn 98008 mac 98008 bytes_out 0 98008 bytes_in 0 98008 station_ip 5.119.20.221 98008 port 17 98008 unique_id port 98008 remote_ip 10.8.0.6 98013 username amir 98013 mac 98013 bytes_out 0 98013 bytes_in 0 98013 station_ip 46.225.212.230 98013 port 17 98013 unique_id port 98013 remote_ip 10.8.0.54 98020 username asadi 98020 kill_reason Another user logged on this global unique id 98020 mac 98020 bytes_out 0 98020 bytes_in 0 98020 station_ip 83.122.229.112 98020 port 11 98020 unique_id port 98030 username mahdiyehalizadeh 98030 mac 98030 bytes_out 0 98030 bytes_in 0 98030 station_ip 37.129.25.115 98030 port 17 98030 unique_id port 98030 remote_ip 10.8.0.42 98032 username aminvpn 98032 mac 98032 bytes_out 0 98032 bytes_in 0 98032 station_ip 5.119.20.221 98032 port 18 98032 unique_id port 98032 remote_ip 10.8.0.6 98036 username alirezaza 98036 kill_reason Wrong password 98036 unique_id port 98036 bytes_out 0 98036 bytes_in 0 98036 station_ip 151.238.243.62 98036 port 15729090 98036 nas_port_type Virtual 98038 username alirezaza 98038 kill_reason Wrong password 98038 unique_id port 98038 bytes_out 0 98038 bytes_in 0 98038 station_ip 151.238.243.62 98038 port 15729092 98038 nas_port_type Virtual 97996 username mohammadmahdi 97996 mac 97996 bytes_out 0 97996 bytes_in 0 97996 station_ip 83.122.223.42 97996 port 16 97996 unique_id port 97996 remote_ip 10.8.0.34 98000 username aminvpn 98000 mac 98000 bytes_out 0 98000 bytes_in 0 98000 station_ip 5.119.20.221 98000 port 16 98000 unique_id port 98000 remote_ip 10.8.0.6 98001 username aminvpn 98001 mac 98001 bytes_out 0 98001 bytes_in 0 98001 station_ip 5.119.20.221 98001 port 18 98001 unique_id port 98001 remote_ip 10.8.0.6 98005 username aminvpn 98005 mac 98005 bytes_out 0 98005 bytes_in 0 98005 station_ip 5.119.20.221 98005 port 17 98005 unique_id port 98005 remote_ip 10.8.0.6 98009 username aminvpn 98009 mac 98009 bytes_out 0 98009 bytes_in 0 98009 station_ip 5.119.20.221 98009 port 18 98009 unique_id port 98009 remote_ip 10.8.0.6 98010 username aminvpn 98010 mac 98010 bytes_out 0 98010 bytes_in 0 98010 station_ip 5.119.20.221 98010 port 17 98010 unique_id port 98010 remote_ip 10.8.0.6 98011 username forozande 98011 mac 98011 bytes_out 0 98011 bytes_in 0 98011 station_ip 83.123.176.17 98011 port 19 98011 unique_id port 98011 remote_ip 10.8.0.74 98014 username forozande 98014 mac 98014 bytes_out 0 98014 bytes_in 0 98014 station_ip 83.123.176.17 98014 port 20 98014 unique_id port 98014 remote_ip 10.8.0.74 98016 username amir 98016 mac 98016 bytes_out 0 98016 bytes_in 0 98016 station_ip 46.225.212.230 98016 port 17 98016 unique_id port 98016 remote_ip 10.8.0.54 98017 username aminvpn 98017 mac 98017 bytes_out 0 98017 bytes_in 0 98017 station_ip 5.119.20.221 98017 port 19 98017 unique_id port 98017 remote_ip 10.8.0.6 98019 username aminvpn 98019 mac 98019 bytes_out 0 98019 bytes_in 0 98019 station_ip 5.119.20.221 98019 port 16 98019 unique_id port 98019 remote_ip 10.8.0.6 98021 username aminvpn 98021 mac 98021 bytes_out 0 98021 bytes_in 0 98021 station_ip 5.119.20.221 98021 port 14 98021 unique_id port 98021 remote_ip 10.8.0.6 98022 username aminvpn 98022 mac 98022 bytes_out 0 98022 bytes_in 0 98022 station_ip 5.119.20.221 98022 port 14 98022 unique_id port 98022 remote_ip 10.8.0.6 98023 username mahdiyehalizadeh 98023 mac 98023 bytes_out 0 98023 bytes_in 0 98023 station_ip 37.129.25.115 98023 port 17 98023 unique_id port 98023 remote_ip 10.8.0.42 98024 username amir 98024 mac 98024 bytes_out 0 98024 bytes_in 0 98024 station_ip 46.225.212.230 98024 port 17 98024 unique_id port 98024 remote_ip 10.8.0.54 98026 username mahdixz 98026 unique_id port 98026 terminate_cause User-Request 98026 bytes_out 0 98026 bytes_in 0 98026 station_ip 151.235.106.253 98026 port 15729084 98026 nas_port_type Virtual 98026 remote_ip 5.5.5.137 98027 username mahdixz 98027 unique_id port 98027 terminate_cause User-Request 98027 bytes_out 0 98027 bytes_in 0 98027 station_ip 151.235.106.253 98027 port 15729085 98027 nas_port_type Virtual 98027 remote_ip 5.5.5.137 98029 username aminvpn 98029 mac 98029 bytes_out 0 98029 bytes_in 0 98029 station_ip 5.119.20.221 98029 port 18 98029 unique_id port 98029 remote_ip 10.8.0.6 98033 username aminvpn 98033 mac 98033 bytes_out 0 98033 bytes_in 0 98033 station_ip 5.119.20.221 98033 port 17 98033 unique_id port 98033 remote_ip 10.8.0.6 98037 username alirezaza 98037 kill_reason Wrong password 98037 unique_id port 98031 kill_reason Another user logged on this global unique id 98031 mac 98031 bytes_out 0 98031 bytes_in 0 98031 station_ip 83.122.229.112 98031 port 11 98031 unique_id port 98034 username aminvpn 98034 mac 98034 bytes_out 0 98034 bytes_in 0 98034 station_ip 5.119.20.221 98034 port 17 98034 unique_id port 98034 remote_ip 10.8.0.6 98035 username aminvpn 98035 mac 98035 bytes_out 0 98035 bytes_in 0 98035 station_ip 5.119.20.221 98035 port 17 98035 unique_id port 98035 remote_ip 10.8.0.6 98040 username aminvpn 98040 mac 98040 bytes_out 26146 98040 bytes_in 26982 98040 station_ip 5.119.20.221 98040 port 18 98040 unique_id port 98040 remote_ip 10.8.0.6 98042 username alirezaza 98042 kill_reason Wrong password 98042 unique_id port 98042 bytes_out 0 98042 bytes_in 0 98042 station_ip 151.238.243.62 98042 port 15729094 98042 nas_port_type Virtual 98046 username aminvpn 98046 mac 98046 bytes_out 15327 98046 bytes_in 19260 98046 station_ip 5.119.20.221 98046 port 17 98046 unique_id port 98046 remote_ip 10.8.0.6 98048 username mohammadreza 98048 mac 98048 bytes_out 573603 98048 bytes_in 2201310 98048 station_ip 5.233.47.16 98048 port 14 98048 unique_id port 98048 remote_ip 10.8.0.18 98050 username aminvpn 98050 mac 98050 bytes_out 0 98050 bytes_in 0 98050 station_ip 5.119.20.221 98050 port 14 98050 unique_id port 98050 remote_ip 10.8.0.6 98055 username sobhan 98055 unique_id port 98055 terminate_cause User-Request 98055 bytes_out 0 98055 bytes_in 0 98055 station_ip 5.119.37.213 98055 port 15729099 98055 nas_port_type Virtual 98055 remote_ip 5.5.5.134 98059 username aminvpn 98059 mac 98059 bytes_out 18353 98059 bytes_in 30408 98059 station_ip 5.119.20.221 98059 port 14 98059 unique_id port 98059 remote_ip 10.8.0.6 98065 username amir 98065 mac 98065 bytes_out 3450358 98065 bytes_in 1468877 98065 station_ip 46.225.212.230 98065 port 17 98065 unique_id port 98065 remote_ip 10.8.0.54 98068 username aminvpn 98068 mac 98068 bytes_out 0 98068 bytes_in 0 98068 station_ip 5.119.20.221 98068 port 19 98068 unique_id port 98068 remote_ip 10.8.0.6 98069 username khalili 98069 kill_reason Another user logged on this global unique id 98069 mac 98069 bytes_out 0 98069 bytes_in 0 98069 station_ip 5.120.187.66 98069 port 12 98069 unique_id port 98073 username aminvpn 98073 mac 98073 bytes_out 0 98073 bytes_in 0 98073 station_ip 113.203.53.44 98073 port 18 98073 unique_id port 98073 remote_ip 10.8.0.6 98074 username aminvpn 98074 mac 98074 bytes_out 0 98074 bytes_in 0 98074 station_ip 5.119.20.221 98074 port 14 98074 unique_id port 98074 remote_ip 10.8.0.6 98077 username aminvpn 98077 mac 98077 bytes_out 0 98077 bytes_in 0 98077 station_ip 5.119.20.221 98077 port 19 98077 unique_id port 98077 remote_ip 10.8.0.6 98081 username ahmadipour 98081 unique_id port 98081 terminate_cause Lost-Carrier 98081 bytes_out 102234 98081 bytes_in 997509 98081 station_ip 113.203.50.205 98081 port 15729101 98081 nas_port_type Virtual 98081 remote_ip 5.5.5.133 98086 username askari 98086 kill_reason Another user logged on this global unique id 98086 mac 98086 bytes_out 0 98086 bytes_in 0 98086 station_ip 5.119.69.102 98086 port 14 98086 unique_id port 98086 remote_ip 10.8.0.38 98093 username khalili 98093 kill_reason Another user logged on this global unique id 98093 mac 98093 bytes_out 0 98093 bytes_in 0 98093 station_ip 5.120.187.66 98093 port 12 98037 bytes_out 0 98037 bytes_in 0 98037 station_ip 151.238.243.62 98037 port 15729091 98037 nas_port_type Virtual 98041 username aminvpn 98041 mac 98041 bytes_out 0 98041 bytes_in 0 98041 station_ip 5.119.20.221 98041 port 17 98041 unique_id port 98041 remote_ip 10.8.0.6 98044 username alirezaza 98044 kill_reason Wrong password 98044 unique_id port 98044 bytes_out 0 98044 bytes_in 0 98044 station_ip 151.238.243.62 98044 port 15729096 98044 nas_port_type Virtual 98047 username aminvpn 98047 mac 98047 bytes_out 0 98047 bytes_in 0 98047 station_ip 5.119.20.221 98047 port 18 98047 unique_id port 98047 remote_ip 10.8.0.6 98051 username ahmadi 98051 unique_id port 98051 terminate_cause User-Request 98051 bytes_out 135987 98051 bytes_in 604731 98051 station_ip 37.129.160.151 98051 port 15729097 98051 nas_port_type Virtual 98051 remote_ip 5.5.5.136 98052 username aminvpn 98052 mac 98052 bytes_out 17645 98052 bytes_in 25042 98052 station_ip 5.119.20.221 98052 port 14 98052 unique_id port 98052 remote_ip 10.8.0.6 98053 username aminvpn 98053 mac 98053 bytes_out 0 98053 bytes_in 0 98053 station_ip 5.119.20.221 98053 port 17 98053 unique_id port 98053 remote_ip 10.8.0.6 98054 username morteza 98054 mac 98054 bytes_out 0 98054 bytes_in 0 98054 station_ip 83.122.229.137 98054 port 8 98054 unique_id port 98054 remote_ip 10.8.1.46 98057 username mirzaei 98057 kill_reason Another user logged on this global unique id 98057 mac 98057 bytes_out 0 98057 bytes_in 0 98057 station_ip 5.119.107.36 98057 port 2 98057 unique_id port 98060 username amir 98060 mac 98060 bytes_out 40348 98060 bytes_in 89643 98060 station_ip 46.225.212.230 98060 port 17 98060 unique_id port 98060 remote_ip 10.8.0.54 98062 username aminvpn 98062 mac 98062 bytes_out 46899 98062 bytes_in 41359 98062 station_ip 5.119.20.221 98062 port 14 98062 unique_id port 98062 remote_ip 10.8.0.6 98064 username aminvpn 98064 mac 98064 bytes_out 0 98064 bytes_in 0 98064 station_ip 5.119.20.221 98064 port 14 98064 unique_id port 98064 remote_ip 10.8.0.6 98070 username forozande 98070 mac 98070 bytes_out 509927 98070 bytes_in 3289147 98070 station_ip 37.129.90.130 98070 port 18 98070 unique_id port 98070 remote_ip 10.8.0.74 98072 username aminvpn 98072 mac 98072 bytes_out 0 98072 bytes_in 0 98072 station_ip 5.119.20.221 98072 port 14 98072 unique_id port 98072 remote_ip 10.8.0.6 98075 username aminvpn 98075 mac 98075 bytes_out 0 98075 bytes_in 0 98075 station_ip 113.203.53.44 98075 port 18 98075 unique_id port 98075 remote_ip 10.8.0.6 98076 username amir 98076 mac 98076 bytes_out 0 98076 bytes_in 0 98076 station_ip 46.225.212.230 98076 port 14 98076 unique_id port 98076 remote_ip 10.8.0.54 98080 username forozande 98080 mac 98080 bytes_out 48549 98080 bytes_in 30404 98080 station_ip 83.123.19.53 98080 port 14 98080 unique_id port 98080 remote_ip 10.8.0.74 98084 username khalili 98084 kill_reason Another user logged on this global unique id 98084 mac 98084 bytes_out 0 98084 bytes_in 0 98084 station_ip 5.120.187.66 98084 port 12 98084 unique_id port 98088 username shahrooz 98088 unique_id port 98088 terminate_cause Lost-Carrier 98088 bytes_out 1456016 98088 bytes_in 15544829 98088 station_ip 5.210.248.253 98088 port 15729098 98088 nas_port_type Virtual 98088 remote_ip 5.5.5.135 98091 username morteza 98091 mac 98091 bytes_out 0 98039 username alirezaza 98039 kill_reason Wrong password 98039 unique_id port 98039 bytes_out 0 98039 bytes_in 0 98039 station_ip 151.238.243.62 98039 port 15729093 98039 nas_port_type Virtual 98043 username alirezaza 98043 kill_reason Wrong password 98043 unique_id port 98043 bytes_out 0 98043 bytes_in 0 98043 station_ip 151.238.243.62 98043 port 15729095 98043 nas_port_type Virtual 98045 username madadi2 98045 mac 98045 bytes_out 0 98045 bytes_in 0 98045 station_ip 5.119.197.5 98045 port 18 98045 unique_id port 98045 remote_ip 10.8.0.26 98049 username aminvpn 98049 mac 98049 bytes_out 31876 98049 bytes_in 28979 98049 station_ip 5.119.20.221 98049 port 17 98049 unique_id port 98049 remote_ip 10.8.0.6 98056 username sobhan 98056 unique_id port 98056 terminate_cause User-Request 98056 bytes_out 0 98056 bytes_in 0 98056 station_ip 5.119.37.213 98056 port 15729100 98056 nas_port_type Virtual 98056 remote_ip 5.5.5.134 98058 username amir 98058 mac 98058 bytes_out 5635712 98058 bytes_in 44556632 98058 station_ip 46.225.212.230 98058 port 16 98058 unique_id port 98058 remote_ip 10.8.0.54 98061 username aminvpn 98061 mac 98061 bytes_out 0 98061 bytes_in 0 98061 station_ip 5.119.20.221 98061 port 18 98061 unique_id port 98061 remote_ip 10.8.0.6 98063 username aminvpn 98063 mac 98063 bytes_out 0 98063 bytes_in 0 98063 station_ip 5.119.20.221 98063 port 18 98063 unique_id port 98063 remote_ip 10.8.0.6 98066 username amir 98066 mac 98066 bytes_out 0 98066 bytes_in 0 98066 station_ip 46.225.212.230 98066 port 19 98066 unique_id port 98066 remote_ip 10.8.0.54 98067 username aminvpn 98067 mac 98067 bytes_out 14854 98067 bytes_in 25429 98067 station_ip 5.119.20.221 98067 port 14 98067 unique_id port 98067 remote_ip 10.8.0.6 98071 username morteza 98071 kill_reason Another user logged on this global unique id 98071 mac 98071 bytes_out 0 98071 bytes_in 0 98071 station_ip 83.122.229.137 98071 port 17 98071 unique_id port 98071 remote_ip 10.8.0.90 98078 username aminvpn 98078 mac 98078 bytes_out 1628 98078 bytes_in 5130 98078 station_ip 113.203.53.44 98078 port 14 98078 unique_id port 98078 remote_ip 10.8.0.6 98079 username morteza 98079 kill_reason Another user logged on this global unique id 98079 mac 98079 bytes_out 0 98079 bytes_in 0 98079 station_ip 83.122.229.137 98079 port 17 98079 unique_id port 98082 username morteza 98082 kill_reason Another user logged on this global unique id 98082 mac 98082 bytes_out 0 98082 bytes_in 0 98082 station_ip 83.122.229.137 98082 port 17 98082 unique_id port 98083 username forozande 98083 mac 98083 bytes_out 164640 98083 bytes_in 1352515 98083 station_ip 37.129.50.136 98083 port 18 98083 unique_id port 98083 remote_ip 10.8.0.74 98085 username amir 98085 mac 98085 bytes_out 37168 98085 bytes_in 151643 98085 station_ip 46.225.212.230 98085 port 19 98085 unique_id port 98085 remote_ip 10.8.0.54 98087 username forozande 98087 mac 98087 bytes_out 45004 98087 bytes_in 30508 98087 station_ip 37.129.50.136 98087 port 20 98087 unique_id port 98087 remote_ip 10.8.0.74 98089 username amir 98089 mac 98089 bytes_out 0 98089 bytes_in 0 98089 station_ip 46.225.212.230 98089 port 18 98089 unique_id port 98089 remote_ip 10.8.0.54 98090 username arman1 98090 kill_reason Another user logged on this global unique id 98090 mac 98090 bytes_out 0 98090 bytes_in 0 98090 station_ip 5.120.10.204 98090 port 16 98090 unique_id port 98090 remote_ip 10.8.0.86 98092 username forozande 98092 mac 98092 bytes_out 141421 98092 bytes_in 999124 98092 station_ip 37.129.195.36 98092 port 18 98092 unique_id port 98092 remote_ip 10.8.0.74 98097 username aminvpn 98097 mac 98097 bytes_out 0 98097 bytes_in 0 98097 station_ip 113.203.53.44 98097 port 19 98097 unique_id port 98097 remote_ip 10.8.0.6 98098 username aminvpn 98098 mac 98098 bytes_out 0 98098 bytes_in 0 98098 station_ip 5.119.222.50 98098 port 17 98098 unique_id port 98098 remote_ip 10.8.0.6 98099 username aminvpn 98099 mac 98099 bytes_out 0 98099 bytes_in 0 98099 station_ip 113.203.53.44 98099 port 20 98099 unique_id port 98099 remote_ip 10.8.0.6 98100 username arman1 98100 mac 98100 bytes_out 293703 98100 bytes_in 2053999 98100 station_ip 5.120.10.204 98100 port 18 98100 unique_id port 98100 remote_ip 10.8.0.86 98105 username aminvpn 98105 mac 98105 bytes_out 0 98105 bytes_in 0 98105 station_ip 113.203.53.44 98105 port 16 98105 unique_id port 98105 remote_ip 10.8.0.6 98109 username aminvpn 98109 mac 98109 bytes_out 0 98109 bytes_in 0 98109 station_ip 5.119.222.50 98109 port 16 98109 unique_id port 98109 remote_ip 10.8.0.6 98113 username aminvpn 98113 mac 98113 bytes_out 0 98113 bytes_in 0 98113 station_ip 5.119.222.50 98113 port 18 98113 unique_id port 98113 remote_ip 10.8.0.6 98115 username aminvpn 98115 mac 98115 bytes_out 0 98115 bytes_in 0 98115 station_ip 5.119.222.50 98115 port 19 98115 unique_id port 98115 remote_ip 10.8.0.6 98118 username aminvpn 98118 mac 98118 bytes_out 0 98118 bytes_in 0 98118 station_ip 5.119.222.50 98118 port 19 98118 unique_id port 98118 remote_ip 10.8.0.6 98123 username aminvpn 98123 mac 98123 bytes_out 0 98123 bytes_in 0 98123 station_ip 5.119.222.50 98123 port 14 98123 unique_id port 98123 remote_ip 10.8.0.6 98125 username aminvpn 98125 mac 98125 bytes_out 0 98125 bytes_in 0 98125 station_ip 5.119.222.50 98125 port 14 98125 unique_id port 98125 remote_ip 10.8.0.6 98126 username aminvpn 98126 mac 98126 bytes_out 0 98126 bytes_in 0 98126 station_ip 5.119.222.50 98126 port 16 98126 unique_id port 98126 remote_ip 10.8.0.6 98128 username aminvpn 98128 mac 98128 bytes_out 0 98128 bytes_in 0 98128 station_ip 5.119.222.50 98128 port 16 98128 unique_id port 98128 remote_ip 10.8.0.6 98130 username aminvpn 98130 mac 98130 bytes_out 0 98130 bytes_in 0 98130 station_ip 5.119.222.50 98130 port 19 98130 unique_id port 98130 remote_ip 10.8.0.6 98131 username aminvpn 98131 mac 98131 bytes_out 0 98131 bytes_in 0 98131 station_ip 5.119.222.50 98131 port 16 98131 unique_id port 98131 remote_ip 10.8.0.6 98140 username amir 98140 mac 98140 bytes_out 0 98140 bytes_in 0 98140 station_ip 46.225.212.230 98140 port 14 98140 unique_id port 98140 remote_ip 10.8.0.54 98141 username aminvpn 98141 mac 98141 bytes_out 0 98141 bytes_in 0 98141 station_ip 5.119.222.50 98141 port 19 98141 unique_id port 98141 remote_ip 10.8.0.6 98142 username aminvpn 98142 mac 98142 bytes_out 0 98142 bytes_in 0 98142 station_ip 5.119.222.50 98142 port 14 98142 unique_id port 98142 remote_ip 10.8.0.6 98144 username amir 98144 mac 98144 bytes_out 0 98144 bytes_in 0 98144 station_ip 46.225.212.230 98091 bytes_in 0 98091 station_ip 83.122.229.137 98091 port 17 98091 unique_id port 98094 username arman1 98094 mac 98094 bytes_out 0 98094 bytes_in 0 98094 station_ip 5.120.10.204 98094 port 16 98094 unique_id port 98102 username amir 98102 mac 98102 bytes_out 15336 98102 bytes_in 63992 98102 station_ip 46.225.212.230 98102 port 19 98102 unique_id port 98102 remote_ip 10.8.0.54 98106 username aminvpn 98106 mac 98106 bytes_out 0 98106 bytes_in 0 98106 station_ip 5.119.222.50 98106 port 18 98106 unique_id port 98106 remote_ip 10.8.0.6 98107 username aminvpn 98107 mac 98107 bytes_out 0 98107 bytes_in 0 98107 station_ip 5.119.222.50 98107 port 16 98107 unique_id port 98107 remote_ip 10.8.0.6 98110 username askari 98110 mac 98110 bytes_out 0 98110 bytes_in 0 98110 station_ip 5.119.69.102 98110 port 14 98110 unique_id port 98111 username aminvpn 98111 mac 98111 bytes_out 0 98111 bytes_in 0 98111 station_ip 5.119.222.50 98111 port 18 98111 unique_id port 98111 remote_ip 10.8.0.6 98114 username aminvpn 98114 mac 98114 bytes_out 0 98114 bytes_in 0 98114 station_ip 5.119.222.50 98114 port 14 98114 unique_id port 98114 remote_ip 10.8.0.6 98116 username aminvpn 98116 mac 98116 bytes_out 0 98116 bytes_in 0 98116 station_ip 5.119.222.50 98116 port 21 98116 unique_id port 98116 remote_ip 10.8.0.6 98119 username aminvpn 98119 mac 98119 bytes_out 0 98119 bytes_in 0 98119 station_ip 5.119.222.50 98119 port 14 98119 unique_id port 98119 remote_ip 10.8.0.6 98122 username amir 98122 mac 98122 bytes_out 0 98122 bytes_in 0 98122 station_ip 46.225.212.230 98122 port 8 98122 unique_id port 98122 remote_ip 10.8.1.34 98124 username aminvpn 98124 mac 98124 bytes_out 0 98124 bytes_in 0 98124 station_ip 5.119.222.50 98124 port 16 98124 unique_id port 98124 remote_ip 10.8.0.6 98127 username aminvpn 98127 mac 98127 bytes_out 0 98127 bytes_in 0 98127 station_ip 5.119.222.50 98127 port 14 98127 unique_id port 98127 remote_ip 10.8.0.6 98134 username amir 98134 mac 98134 bytes_out 0 98134 bytes_in 0 98134 station_ip 46.225.212.230 98134 port 8 98134 unique_id port 98134 remote_ip 10.8.1.34 98135 username aminvpn 98135 mac 98135 bytes_out 0 98135 bytes_in 0 98135 station_ip 5.119.222.50 98135 port 14 98135 unique_id port 98135 remote_ip 10.8.0.6 98137 username forozande 98137 mac 98137 bytes_out 14776 98137 bytes_in 7278 98137 station_ip 113.203.18.253 98137 port 16 98137 unique_id port 98137 remote_ip 10.8.0.74 98138 username aminvpn 98138 mac 98138 bytes_out 0 98138 bytes_in 0 98138 station_ip 5.119.222.50 98138 port 19 98138 unique_id port 98138 remote_ip 10.8.0.6 98139 username aminvpn 98139 mac 98139 bytes_out 0 98139 bytes_in 0 98139 station_ip 5.119.222.50 98139 port 16 98139 unique_id port 98139 remote_ip 10.8.0.6 98143 username forozande 98143 mac 98143 bytes_out 0 98143 bytes_in 0 98143 station_ip 37.129.106.150 98143 port 18 98143 unique_id port 98143 remote_ip 10.8.0.74 98145 username amir 98145 mac 98145 bytes_out 0 98145 bytes_in 0 98145 station_ip 46.225.212.230 98145 port 14 98145 unique_id port 98145 remote_ip 10.8.0.54 98154 username aminvpn 98154 mac 98154 bytes_out 0 98154 bytes_in 0 98154 station_ip 5.119.222.50 98154 port 18 98093 unique_id port 98095 username askari 98095 kill_reason Another user logged on this global unique id 98095 mac 98095 bytes_out 0 98095 bytes_in 0 98095 station_ip 5.119.69.102 98095 port 14 98095 unique_id port 98096 username aminvpn 98096 mac 98096 bytes_out 394889 98096 bytes_in 981070 98096 station_ip 5.119.222.50 98096 port 17 98096 unique_id port 98096 remote_ip 10.8.0.6 98101 username aminvpn 98101 mac 98101 bytes_out 0 98101 bytes_in 0 98101 station_ip 5.119.222.50 98101 port 17 98101 unique_id port 98101 remote_ip 10.8.0.6 98103 username madadi2 98103 mac 98103 bytes_out 174081 98103 bytes_in 689633 98103 station_ip 5.120.159.52 98103 port 16 98103 unique_id port 98103 remote_ip 10.8.0.26 98104 username aminvpn 98104 mac 98104 bytes_out 0 98104 bytes_in 0 98104 station_ip 5.119.222.50 98104 port 21 98104 unique_id port 98104 remote_ip 10.8.0.6 98108 username aminvpn 98108 mac 98108 bytes_out 0 98108 bytes_in 0 98108 station_ip 113.203.53.44 98108 port 18 98108 unique_id port 98108 remote_ip 10.8.0.6 98112 username aminvpn 98112 mac 98112 bytes_out 0 98112 bytes_in 0 98112 station_ip 113.203.53.44 98112 port 14 98112 unique_id port 98112 remote_ip 10.8.0.6 98117 username amir 98117 mac 98117 bytes_out 16553 98117 bytes_in 53347 98117 station_ip 46.225.212.230 98117 port 14 98117 unique_id port 98117 remote_ip 10.8.0.54 98120 username askari 98120 mac 98120 bytes_out 1010912 98120 bytes_in 11027907 98120 station_ip 5.119.55.134 98120 port 16 98120 unique_id port 98120 remote_ip 10.8.0.38 98121 username aminvpn 98121 mac 98121 bytes_out 0 98121 bytes_in 0 98121 station_ip 5.119.222.50 98121 port 19 98121 unique_id port 98121 remote_ip 10.8.0.6 98129 username forozande 98129 mac 98129 bytes_out 254687 98129 bytes_in 2083220 98129 station_ip 37.129.223.78 98129 port 18 98129 unique_id port 98129 remote_ip 10.8.0.74 98132 username morteza 98132 mac 98132 bytes_out 2117 98132 bytes_in 4406 98132 station_ip 83.122.209.21 98132 port 14 98132 unique_id port 98132 remote_ip 10.8.0.90 98133 username aminvpn 98133 mac 98133 bytes_out 0 98133 bytes_in 0 98133 station_ip 5.119.222.50 98133 port 18 98133 unique_id port 98133 remote_ip 10.8.0.6 98136 username aminvpn 98136 mac 98136 bytes_out 0 98136 bytes_in 0 98136 station_ip 5.119.222.50 98136 port 18 98136 unique_id port 98136 remote_ip 10.8.0.6 98146 username aminvpn 98146 mac 98146 bytes_out 0 98146 bytes_in 0 98146 station_ip 5.119.222.50 98146 port 19 98146 unique_id port 98146 remote_ip 10.8.0.6 98147 username aminvpn 98147 mac 98147 bytes_out 0 98147 bytes_in 0 98147 station_ip 5.119.222.50 98147 port 14 98147 unique_id port 98147 remote_ip 10.8.0.6 98148 username aminvpn 98148 mac 98148 bytes_out 0 98148 bytes_in 0 98148 station_ip 5.119.222.50 98148 port 16 98148 unique_id port 98148 remote_ip 10.8.0.6 98149 username amir 98149 mac 98149 bytes_out 0 98149 bytes_in 0 98149 station_ip 46.225.212.230 98149 port 14 98149 unique_id port 98149 remote_ip 10.8.0.54 98150 username aminvpn 98150 mac 98150 bytes_out 0 98150 bytes_in 0 98150 station_ip 5.119.222.50 98150 port 18 98150 unique_id port 98150 remote_ip 10.8.0.6 98155 username forozande 98155 mac 98155 bytes_out 0 98155 bytes_in 0 98144 port 16 98144 unique_id port 98144 remote_ip 10.8.0.54 98151 username aminvpn 98151 mac 98151 bytes_out 0 98151 bytes_in 0 98151 station_ip 5.119.222.50 98151 port 16 98151 unique_id port 98151 remote_ip 10.8.0.6 98152 username aminvpn 98152 mac 98152 bytes_out 0 98152 bytes_in 0 98152 station_ip 5.119.222.50 98152 port 18 98152 unique_id port 98152 remote_ip 10.8.0.6 98153 username aminvpn 98153 mac 98153 bytes_out 0 98153 bytes_in 0 98153 station_ip 5.119.222.50 98153 port 16 98153 unique_id port 98153 remote_ip 10.8.0.6 98156 username aminvpn 98156 mac 98156 bytes_out 0 98156 bytes_in 0 98156 station_ip 5.119.222.50 98156 port 16 98156 unique_id port 98156 remote_ip 10.8.0.6 98157 username aminvpn 98157 mac 98157 bytes_out 0 98157 bytes_in 0 98157 station_ip 5.119.222.50 98157 port 14 98157 unique_id port 98157 remote_ip 10.8.0.6 98159 username asadi 98159 mac 98159 bytes_out 0 98159 bytes_in 0 98159 station_ip 83.122.229.112 98159 port 11 98159 unique_id port 98161 username aminvpn 98161 mac 98161 bytes_out 0 98161 bytes_in 0 98161 station_ip 5.119.222.50 98161 port 11 98161 unique_id port 98161 remote_ip 10.8.0.6 98169 username asadi 98169 mac 98169 bytes_out 0 98169 bytes_in 0 98169 station_ip 83.122.229.112 98169 port 16 98169 unique_id port 98169 remote_ip 10.8.0.50 98171 username aminvpn 98171 mac 98171 bytes_out 0 98171 bytes_in 0 98171 station_ip 5.119.222.50 98171 port 14 98171 unique_id port 98171 remote_ip 10.8.0.6 98172 username aminvpn 98172 mac 98172 bytes_out 0 98172 bytes_in 0 98172 station_ip 5.119.222.50 98172 port 16 98172 unique_id port 98172 remote_ip 10.8.0.6 98173 username aminvpn 98173 mac 98173 bytes_out 0 98173 bytes_in 0 98173 station_ip 5.119.222.50 98173 port 14 98173 unique_id port 98173 remote_ip 10.8.0.6 98178 username aminvpn 98178 mac 98178 bytes_out 0 98178 bytes_in 0 98178 station_ip 113.203.53.44 98178 port 16 98178 unique_id port 98178 remote_ip 10.8.0.6 98182 username abbasaskari 98182 mac 98182 bytes_out 0 98182 bytes_in 0 98182 station_ip 83.123.91.45 98182 port 11 98182 unique_id port 98182 remote_ip 10.8.0.94 98183 username aminvpn 98183 mac 98183 bytes_out 0 98183 bytes_in 0 98183 station_ip 5.119.222.50 98183 port 19 98183 unique_id port 98183 remote_ip 10.8.0.6 98185 username khalili 98185 mac 98185 bytes_out 0 98185 bytes_in 0 98185 station_ip 5.120.187.66 98185 port 12 98185 unique_id port 98188 username aminvpn 98188 mac 98188 bytes_out 0 98188 bytes_in 0 98188 station_ip 113.203.53.44 98188 port 11 98188 unique_id port 98188 remote_ip 10.8.0.6 98191 username amir 98191 mac 98191 bytes_out 0 98191 bytes_in 0 98191 station_ip 46.225.212.230 98191 port 12 98191 unique_id port 98191 remote_ip 10.8.0.54 98193 username aminvpn 98193 mac 98193 bytes_out 0 98193 bytes_in 0 98193 station_ip 113.203.53.44 98193 port 11 98193 unique_id port 98193 remote_ip 10.8.0.6 98195 username aminvpn 98195 mac 98195 bytes_out 0 98195 bytes_in 0 98195 station_ip 5.119.222.50 98195 port 16 98195 unique_id port 98195 remote_ip 10.8.0.6 98199 username amir 98199 mac 98199 bytes_out 0 98199 bytes_in 0 98199 station_ip 46.225.212.230 98199 port 11 98199 unique_id port 98154 unique_id port 98154 remote_ip 10.8.0.6 98158 username aminvpn 98158 mac 98158 bytes_out 0 98158 bytes_in 0 98158 station_ip 5.119.222.50 98158 port 16 98158 unique_id port 98158 remote_ip 10.8.0.6 98160 username aminvpn 98160 mac 98160 bytes_out 0 98160 bytes_in 0 98160 station_ip 5.119.222.50 98160 port 14 98160 unique_id port 98160 remote_ip 10.8.0.6 98162 username aminvpn 98162 mac 98162 bytes_out 0 98162 bytes_in 0 98162 station_ip 5.119.222.50 98162 port 18 98162 unique_id port 98162 remote_ip 10.8.0.6 98163 username aminvpn 98163 mac 98163 bytes_out 0 98163 bytes_in 0 98163 station_ip 5.119.222.50 98163 port 11 98163 unique_id port 98163 remote_ip 10.8.0.6 98167 username morteza 98167 mac 98167 bytes_out 0 98167 bytes_in 0 98167 station_ip 83.122.165.197 98167 port 14 98167 unique_id port 98167 remote_ip 10.8.0.90 98174 username aminvpn 98174 mac 98174 bytes_out 0 98174 bytes_in 0 98174 station_ip 113.203.53.44 98174 port 16 98174 unique_id port 98174 remote_ip 10.8.0.6 98176 username aminvpn 98176 mac 98176 bytes_out 0 98176 bytes_in 0 98176 station_ip 5.119.222.50 98176 port 16 98176 unique_id port 98176 remote_ip 10.8.0.6 98179 username aminvpn 98179 mac 98179 bytes_out 0 98179 bytes_in 0 98179 station_ip 5.119.222.50 98179 port 19 98179 unique_id port 98179 remote_ip 10.8.0.6 98180 username aminvpn 98180 kill_reason Maximum check online fails reached 98180 mac 98180 bytes_out 0 98180 bytes_in 0 98180 station_ip 5.119.222.50 98180 port 21 98180 unique_id port 98186 username madadi2 98186 mac 98186 bytes_out 0 98186 bytes_in 0 98186 station_ip 5.119.127.92 98186 port 17 98186 unique_id port 98186 remote_ip 10.8.0.26 98192 username aminvpn 98192 mac 98192 bytes_out 0 98192 bytes_in 0 98192 station_ip 5.119.222.50 98192 port 16 98192 unique_id port 98192 remote_ip 10.8.0.6 98196 username asadi 98196 mac 98196 bytes_out 0 98196 bytes_in 0 98196 station_ip 83.122.229.112 98196 port 14 98196 unique_id port 98196 remote_ip 10.8.0.50 98198 username aminvpn 98198 mac 98198 bytes_out 0 98198 bytes_in 0 98198 station_ip 5.119.222.50 98198 port 12 98198 unique_id port 98198 remote_ip 10.8.0.6 98200 username aminvpn 98200 mac 98200 bytes_out 0 98200 bytes_in 0 98200 station_ip 113.203.53.44 98200 port 14 98200 unique_id port 98200 remote_ip 10.8.0.6 98202 username aminvpn 98202 mac 98202 bytes_out 37169 98202 bytes_in 48113 98202 station_ip 113.203.53.44 98202 port 12 98202 unique_id port 98202 remote_ip 10.8.0.6 98208 username aminvpn 98208 mac 98208 bytes_out 0 98208 bytes_in 0 98208 station_ip 113.203.53.44 98208 port 16 98208 unique_id port 98208 remote_ip 10.8.0.6 98209 username aminvpn 98209 mac 98209 bytes_out 0 98209 bytes_in 0 98209 station_ip 5.119.222.50 98209 port 17 98209 unique_id port 98209 remote_ip 10.8.0.6 98211 username aminvpn 98211 mac 98211 bytes_out 0 98211 bytes_in 0 98211 station_ip 113.203.53.44 98211 port 16 98211 unique_id port 98211 remote_ip 10.8.0.6 98214 username aminvpn 98214 mac 98214 bytes_out 0 98214 bytes_in 0 98214 station_ip 5.119.222.50 98214 port 17 98214 unique_id port 98214 remote_ip 10.8.0.6 98215 username askari 98215 kill_reason Another user logged on this global unique id 98215 mac 98215 bytes_out 0 98155 station_ip 83.122.131.104 98155 port 14 98155 unique_id port 98155 remote_ip 10.8.0.74 98164 username aminvpn 98164 mac 98164 bytes_out 0 98164 bytes_in 0 98164 station_ip 5.119.222.50 98164 port 18 98164 unique_id port 98164 remote_ip 10.8.0.6 98165 username aminvpn 98165 mac 98165 bytes_out 0 98165 bytes_in 0 98165 station_ip 5.119.222.50 98165 port 11 98165 unique_id port 98165 remote_ip 10.8.0.6 98166 username aminvpn 98166 mac 98166 bytes_out 0 98166 bytes_in 0 98166 station_ip 5.119.222.50 98166 port 18 98166 unique_id port 98166 remote_ip 10.8.0.6 98168 username aminvpn 98168 mac 98168 bytes_out 0 98168 bytes_in 0 98168 station_ip 5.119.222.50 98168 port 11 98168 unique_id port 98168 remote_ip 10.8.0.6 98170 username amir 98170 mac 98170 bytes_out 0 98170 bytes_in 0 98170 station_ip 46.225.212.230 98170 port 16 98170 unique_id port 98170 remote_ip 10.8.0.54 98175 username aminvpn 98175 mac 98175 bytes_out 0 98175 bytes_in 0 98175 station_ip 5.119.222.50 98175 port 14 98175 unique_id port 98175 remote_ip 10.8.0.6 98177 username aminvpn 98177 mac 98177 bytes_out 0 98177 bytes_in 0 98177 station_ip 5.119.222.50 98177 port 18 98177 unique_id port 98177 remote_ip 10.8.0.6 98181 username aminvpn 98181 mac 98181 bytes_out 0 98181 bytes_in 0 98181 station_ip 113.203.53.44 98181 port 16 98181 unique_id port 98181 remote_ip 10.8.0.6 98184 username abbasaskari 98184 mac 98184 bytes_out 0 98184 bytes_in 0 98184 station_ip 83.123.91.45 98184 port 16 98184 unique_id port 98184 remote_ip 10.8.0.94 98187 username amir 98187 mac 98187 bytes_out 0 98187 bytes_in 0 98187 station_ip 46.225.212.230 98187 port 18 98187 unique_id port 98187 remote_ip 10.8.0.54 98189 username aminvpn 98189 mac 98189 bytes_out 0 98189 bytes_in 0 98189 station_ip 5.119.222.50 98189 port 12 98189 unique_id port 98189 remote_ip 10.8.0.6 98190 username aminvpn 98190 mac 98190 bytes_out 0 98190 bytes_in 0 98190 station_ip 113.203.53.44 98190 port 11 98190 unique_id port 98190 remote_ip 10.8.0.6 98194 username amir 98194 mac 98194 bytes_out 0 98194 bytes_in 0 98194 station_ip 46.225.212.230 98194 port 12 98194 unique_id port 98194 remote_ip 10.8.0.54 98197 username aminvpn 98197 mac 98197 bytes_out 0 98197 bytes_in 0 98197 station_ip 113.203.53.44 98197 port 11 98197 unique_id port 98197 remote_ip 10.8.0.6 98204 username aminvpn 98204 mac 98204 bytes_out 0 98204 bytes_in 0 98204 station_ip 113.203.53.44 98204 port 17 98204 unique_id port 98204 remote_ip 10.8.0.6 98206 username mirzaei 98206 kill_reason Another user logged on this global unique id 98206 mac 98206 bytes_out 0 98206 bytes_in 0 98206 station_ip 5.119.107.36 98206 port 2 98206 unique_id port 98207 username aminvpn 98207 mac 98207 bytes_out 0 98207 bytes_in 0 98207 station_ip 5.119.222.50 98207 port 18 98207 unique_id port 98207 remote_ip 10.8.0.6 98212 username aminvpn 98212 mac 98212 bytes_out 0 98212 bytes_in 0 98212 station_ip 5.119.222.50 98212 port 17 98212 unique_id port 98212 remote_ip 10.8.0.6 98218 username aminvpn 98218 mac 98218 bytes_out 0 98218 bytes_in 0 98218 station_ip 113.203.53.44 98218 port 16 98218 unique_id port 98218 remote_ip 10.8.0.6 98223 username forozande 98223 mac 98199 remote_ip 10.8.0.54 98201 username aminvpn 98201 mac 98201 bytes_out 0 98201 bytes_in 0 98201 station_ip 5.119.222.50 98201 port 11 98201 unique_id port 98201 remote_ip 10.8.0.6 98203 username aminvpn 98203 mac 98203 bytes_out 0 98203 bytes_in 0 98203 station_ip 5.119.222.50 98203 port 16 98203 unique_id port 98203 remote_ip 10.8.0.6 98205 username amir 98205 mac 98205 bytes_out 0 98205 bytes_in 0 98205 station_ip 46.225.212.230 98205 port 16 98205 unique_id port 98205 remote_ip 10.8.0.54 98210 username askari 98210 kill_reason Another user logged on this global unique id 98210 mac 98210 bytes_out 0 98210 bytes_in 0 98210 station_ip 5.120.156.124 98210 port 11 98210 unique_id port 98210 remote_ip 10.8.0.38 98213 username aminvpn 98213 mac 98213 bytes_out 0 98213 bytes_in 0 98213 station_ip 113.203.53.44 98213 port 16 98213 unique_id port 98213 remote_ip 10.8.0.6 98219 username aminvpn 98219 mac 98219 bytes_out 0 98219 bytes_in 0 98219 station_ip 5.119.222.50 98219 port 19 98219 unique_id port 98219 remote_ip 10.8.0.6 98220 username askari 98220 kill_reason Another user logged on this global unique id 98220 mac 98220 bytes_out 0 98220 bytes_in 0 98220 station_ip 5.120.156.124 98220 port 11 98220 unique_id port 98221 username aminvpn 98221 mac 98221 bytes_out 0 98221 bytes_in 0 98221 station_ip 113.203.53.44 98221 port 16 98221 unique_id port 98221 remote_ip 10.8.0.6 98222 username aminvpn 98222 mac 98222 bytes_out 0 98222 bytes_in 0 98222 station_ip 5.119.222.50 98222 port 19 98222 unique_id port 98222 remote_ip 10.8.0.6 98224 username amir 98224 mac 98224 bytes_out 0 98224 bytes_in 0 98224 station_ip 46.225.212.230 98224 port 17 98224 unique_id port 98224 remote_ip 10.8.0.54 98225 username aminvpn 98225 mac 98225 bytes_out 14239 98225 bytes_in 16337 98225 station_ip 113.203.53.44 98225 port 16 98225 unique_id port 98225 remote_ip 10.8.0.6 98228 username aminvpn 98228 mac 98228 bytes_out 0 98228 bytes_in 0 98228 station_ip 113.203.53.44 98228 port 12 98228 unique_id port 98228 remote_ip 10.8.0.6 98231 username Alirezaza 98231 unique_id port 98231 terminate_cause User-Request 98231 bytes_out 0 98231 bytes_in 0 98231 station_ip 5.119.216.24 98231 port 15729103 98231 nas_port_type Virtual 98231 remote_ip 5.5.5.131 98235 username aminvpn 98235 mac 98235 bytes_out 0 98235 bytes_in 0 98235 station_ip 5.119.222.50 98235 port 16 98235 unique_id port 98235 remote_ip 10.8.0.6 98241 username aminvpn 98241 mac 98241 bytes_out 0 98241 bytes_in 0 98241 station_ip 5.119.222.50 98241 port 16 98241 unique_id port 98241 remote_ip 10.8.0.6 98242 username aminvpn 98242 mac 98242 bytes_out 0 98242 bytes_in 0 98242 station_ip 113.203.53.44 98242 port 14 98242 unique_id port 98242 remote_ip 10.8.0.6 98243 username aminvpn 98243 mac 98243 bytes_out 0 98243 bytes_in 0 98243 station_ip 5.119.222.50 98243 port 16 98243 unique_id port 98243 remote_ip 10.8.0.6 98248 username amir 98248 mac 98248 bytes_out 0 98248 bytes_in 0 98248 station_ip 113.203.65.242 98248 port 14 98248 unique_id port 98248 remote_ip 10.8.0.54 98252 username aminvpn 98252 mac 98252 bytes_out 0 98252 bytes_in 0 98252 station_ip 5.119.222.50 98252 port 16 98252 unique_id port 98252 remote_ip 10.8.0.6 98254 username aminvpn 98254 mac 98215 bytes_in 0 98215 station_ip 5.120.156.124 98215 port 11 98215 unique_id port 98216 username aminvpn 98216 mac 98216 bytes_out 0 98216 bytes_in 0 98216 station_ip 113.203.53.44 98216 port 16 98216 unique_id port 98216 remote_ip 10.8.0.6 98217 username aminvpn 98217 mac 98217 bytes_out 0 98217 bytes_in 0 98217 station_ip 5.119.222.50 98217 port 18 98217 unique_id port 98217 remote_ip 10.8.0.6 98226 username khalili 98226 mac 98226 bytes_out 0 98226 bytes_in 0 98226 station_ip 5.120.187.66 98226 port 12 98226 unique_id port 98226 remote_ip 10.8.0.78 98227 username aminvpn 98227 mac 98227 bytes_out 0 98227 bytes_in 0 98227 station_ip 5.119.222.50 98227 port 17 98227 unique_id port 98227 remote_ip 10.8.0.6 98232 username alirr 98232 kill_reason Wrong password 98232 unique_id port 98232 bytes_out 0 98232 bytes_in 0 98232 station_ip 5.119.216.24 98232 port 15729104 98232 nas_port_type Virtual 98237 username aminvpn 98237 mac 98237 bytes_out 0 98237 bytes_in 0 98237 station_ip 113.203.53.44 98237 port 12 98237 unique_id port 98237 remote_ip 10.8.0.6 98238 username aminvpn 98238 mac 98238 bytes_out 0 98238 bytes_in 0 98238 station_ip 5.119.222.50 98238 port 16 98238 unique_id port 98238 remote_ip 10.8.0.6 98245 username asadi 98245 mac 98245 bytes_out 0 98245 bytes_in 0 98245 station_ip 83.122.229.112 98245 port 12 98245 unique_id port 98245 remote_ip 10.8.0.50 98246 username aminvpn 98246 mac 98246 bytes_out 0 98246 bytes_in 0 98246 station_ip 5.119.222.50 98246 port 16 98246 unique_id port 98246 remote_ip 10.8.0.6 98247 username aminvpn 98247 mac 98247 bytes_out 0 98247 bytes_in 0 98247 station_ip 113.203.53.44 98247 port 17 98247 unique_id port 98247 remote_ip 10.8.0.6 98250 username ahmadipour 98250 unique_id port 98250 terminate_cause Lost-Carrier 98250 bytes_out 756880 98250 bytes_in 20492420 98250 station_ip 113.203.10.97 98250 port 15729106 98250 nas_port_type Virtual 98250 remote_ip 5.5.5.129 98251 username aminvpn 98251 mac 98251 bytes_out 0 98251 bytes_in 0 98251 station_ip 113.203.53.44 98251 port 17 98251 unique_id port 98251 remote_ip 10.8.0.6 98255 username aminvpn 98255 mac 98255 bytes_out 0 98255 bytes_in 0 98255 station_ip 5.119.222.50 98255 port 14 98255 unique_id port 98255 remote_ip 10.8.0.6 98257 username aminvpn 98257 mac 98257 bytes_out 0 98257 bytes_in 0 98257 station_ip 113.203.53.44 98257 port 16 98257 unique_id port 98257 remote_ip 10.8.0.6 98260 username asadi 98260 mac 98260 bytes_out 0 98260 bytes_in 0 98260 station_ip 83.122.229.112 98260 port 12 98260 unique_id port 98260 remote_ip 10.8.0.50 98261 username aminvpn 98261 mac 98261 bytes_out 0 98261 bytes_in 0 98261 station_ip 5.119.222.50 98261 port 14 98261 unique_id port 98261 remote_ip 10.8.0.6 98262 username aminvpn 98262 mac 98262 bytes_out 17800 98262 bytes_in 30013 98262 station_ip 113.203.53.44 98262 port 12 98262 unique_id port 98262 remote_ip 10.8.0.6 98264 username aminvpn 98264 mac 98264 bytes_out 32960 98264 bytes_in 73740 98264 station_ip 5.119.222.50 98264 port 14 98264 unique_id port 98264 remote_ip 10.8.0.6 98270 username aminvpn 98270 mac 98270 bytes_out 0 98270 bytes_in 0 98270 station_ip 5.119.222.50 98270 port 17 98270 unique_id port 98270 remote_ip 10.8.0.6 98223 bytes_out 562234 98223 bytes_in 5391612 98223 station_ip 37.129.136.53 98223 port 18 98223 unique_id port 98223 remote_ip 10.8.0.74 98229 username khalili 98229 mac 98229 bytes_out 0 98229 bytes_in 0 98229 station_ip 5.120.187.66 98229 port 16 98229 unique_id port 98229 remote_ip 10.8.0.78 98230 username aminvpn 98230 mac 98230 bytes_out 0 98230 bytes_in 0 98230 station_ip 5.119.222.50 98230 port 17 98230 unique_id port 98230 remote_ip 10.8.0.6 98233 username aminvpn 98233 mac 98233 bytes_out 0 98233 bytes_in 0 98233 station_ip 113.203.53.44 98233 port 12 98233 unique_id port 98233 remote_ip 10.8.0.6 98234 username alirr 98234 unique_id port 98234 terminate_cause User-Request 98234 bytes_out 1773 98234 bytes_in 1494 98234 station_ip 5.119.216.24 98234 port 15729105 98234 nas_port_type Virtual 98234 remote_ip 5.5.5.130 98236 username askari 98236 mac 98236 bytes_out 0 98236 bytes_in 0 98236 station_ip 5.120.156.124 98236 port 11 98236 unique_id port 98239 username aminvpn 98239 mac 98239 bytes_out 0 98239 bytes_in 0 98239 station_ip 113.203.53.44 98239 port 12 98239 unique_id port 98239 remote_ip 10.8.0.6 98240 username asadi 98240 mac 98240 bytes_out 0 98240 bytes_in 0 98240 station_ip 83.122.229.112 98240 port 14 98240 unique_id port 98240 remote_ip 10.8.0.50 98244 username aminvpn 98244 mac 98244 bytes_out 0 98244 bytes_in 0 98244 station_ip 113.203.53.44 98244 port 14 98244 unique_id port 98244 remote_ip 10.8.0.6 98249 username aminvpn 98249 mac 98249 bytes_out 0 98249 bytes_in 0 98249 station_ip 5.119.222.50 98249 port 16 98249 unique_id port 98249 remote_ip 10.8.0.6 98253 username amir 98253 mac 98253 bytes_out 0 98253 bytes_in 0 98253 station_ip 113.203.65.242 98253 port 14 98253 unique_id port 98253 remote_ip 10.8.0.54 98258 username aminvpn 98258 mac 98258 bytes_out 0 98258 bytes_in 0 98258 station_ip 5.119.222.50 98258 port 14 98258 unique_id port 98258 remote_ip 10.8.0.6 98263 username amir 98263 mac 98263 bytes_out 0 98263 bytes_in 0 98263 station_ip 46.225.212.230 98263 port 16 98263 unique_id port 98263 remote_ip 10.8.0.54 98266 username asadi 98266 mac 98266 bytes_out 0 98266 bytes_in 0 98266 station_ip 83.122.229.112 98266 port 17 98266 unique_id port 98266 remote_ip 10.8.0.50 98267 username aminvpn 98267 mac 98267 bytes_out 0 98267 bytes_in 0 98267 station_ip 5.119.222.50 98267 port 14 98267 unique_id port 98267 remote_ip 10.8.0.6 98268 username bcboard 98268 unique_id port 98268 terminate_cause User-Request 98268 bytes_out 560090 98268 bytes_in 10493236 98268 station_ip 5.119.222.50 98268 port 15729102 98268 nas_port_type Virtual 98268 remote_ip 5.5.5.132 98273 username aminvpn 98273 mac 98273 bytes_out 14747 98273 bytes_in 22640 98273 station_ip 5.119.222.50 98273 port 14 98273 unique_id port 98273 remote_ip 10.8.0.6 98275 username amir 98275 mac 98275 bytes_out 0 98275 bytes_in 0 98275 station_ip 46.225.212.230 98275 port 12 98275 unique_id port 98275 remote_ip 10.8.0.54 98276 username madadi2 98276 mac 98276 bytes_out 0 98276 bytes_in 0 98276 station_ip 5.119.47.103 98276 port 12 98276 unique_id port 98276 remote_ip 10.8.0.26 98277 username asadi 98277 mac 98277 bytes_out 342323 98277 bytes_in 2195460 98277 station_ip 83.122.229.112 98277 port 17 98254 bytes_out 257433 98254 bytes_in 2749796 98254 station_ip 113.203.53.44 98254 port 17 98254 unique_id port 98254 remote_ip 10.8.0.6 98256 username forozande 98256 mac 98256 bytes_out 0 98256 bytes_in 0 98256 station_ip 83.122.141.78 98256 port 14 98256 unique_id port 98256 remote_ip 10.8.0.74 98259 username aminvpn 98259 mac 98259 bytes_out 0 98259 bytes_in 0 98259 station_ip 113.203.53.44 98259 port 17 98259 unique_id port 98259 remote_ip 10.8.0.6 98265 username aminvpn 98265 mac 98265 bytes_out 0 98265 bytes_in 0 98265 station_ip 113.203.53.44 98265 port 16 98265 unique_id port 98265 remote_ip 10.8.0.6 98269 username aminvpn 98269 mac 98269 bytes_out 0 98269 bytes_in 0 98269 station_ip 113.203.53.44 98269 port 16 98269 unique_id port 98269 remote_ip 10.8.0.6 98278 username mirzaei 98278 mac 98278 bytes_out 0 98278 bytes_in 0 98278 station_ip 5.119.107.36 98278 port 2 98278 unique_id port 98281 username mahdiyehalizadeh 98281 mac 98281 bytes_out 0 98281 bytes_in 0 98281 station_ip 37.129.166.219 98281 port 2 98281 unique_id port 98281 remote_ip 10.8.0.42 98290 username madadi2 98290 mac 98290 bytes_out 24528 98290 bytes_in 8027 98290 station_ip 5.120.185.225 98290 port 12 98290 unique_id port 98290 remote_ip 10.8.0.26 98291 username mohammadreza 98291 mac 98291 bytes_out 0 98291 bytes_in 0 98291 station_ip 2.183.151.119 98291 port 9 98291 unique_id port 98291 remote_ip 10.8.1.10 98292 username aminvpn 98292 unique_id port 98292 terminate_cause Lost-Carrier 98292 bytes_out 313083 98292 bytes_in 1707947 98292 station_ip 31.56.159.173 98292 port 15729108 98292 nas_port_type Virtual 98292 remote_ip 5.5.5.127 98295 username madadi2 98295 mac 98295 bytes_out 0 98295 bytes_in 0 98295 station_ip 5.120.49.243 98295 port 12 98295 unique_id port 98295 remote_ip 10.8.0.26 98299 username mohammadmahdi 98299 kill_reason Another user logged on this global unique id 98299 mac 98299 bytes_out 0 98299 bytes_in 0 98299 station_ip 37.129.17.203 98299 port 12 98299 unique_id port 98299 remote_ip 10.8.0.34 98300 username rasoul56 98300 mac 98300 bytes_out 1837363 98300 bytes_in 11966317 98300 station_ip 83.123.59.21 98300 port 2 98300 unique_id port 98300 remote_ip 10.8.0.98 98302 username asadi 98302 mac 98302 bytes_out 0 98302 bytes_in 0 98302 station_ip 83.122.229.112 98302 port 14 98302 unique_id port 98302 remote_ip 10.8.0.50 98303 username sadegh 98303 kill_reason Relative expiration date has reached 98303 unique_id port 98303 bytes_out 0 98303 bytes_in 0 98303 station_ip 5.119.228.193 98303 port 15729111 98303 nas_port_type Virtual 98309 username asadi 98309 mac 98309 bytes_out 0 98309 bytes_in 0 98309 station_ip 83.122.229.112 98309 port 2 98309 unique_id port 98309 remote_ip 10.8.0.50 98310 username rasoul56 98310 kill_reason Another user logged on this global unique id 98310 mac 98310 bytes_out 0 98310 bytes_in 0 98310 station_ip 83.123.59.21 98310 port 16 98310 unique_id port 98311 username asadi 98311 mac 98311 bytes_out 0 98311 bytes_in 0 98311 station_ip 83.122.229.112 98311 port 14 98311 unique_id port 98311 remote_ip 10.8.0.50 98312 username rasoul56 98312 kill_reason Another user logged on this global unique id 98312 mac 98312 bytes_out 0 98312 bytes_in 0 98312 station_ip 83.123.59.21 98312 port 16 98312 unique_id port 98316 username ahmadi 98316 unique_id port 98271 username asadi 98271 mac 98271 bytes_out 0 98271 bytes_in 0 98271 station_ip 83.122.229.112 98271 port 14 98271 unique_id port 98271 remote_ip 10.8.0.50 98272 username aminvpn 98272 mac 98272 bytes_out 0 98272 bytes_in 0 98272 station_ip 113.203.53.44 98272 port 16 98272 unique_id port 98272 remote_ip 10.8.0.6 98274 username aminvpn 98274 mac 98274 bytes_out 0 98274 bytes_in 0 98274 station_ip 113.203.53.44 98274 port 16 98274 unique_id port 98274 remote_ip 10.8.0.6 98280 username asadi 98280 mac 98280 bytes_out 307034 98280 bytes_in 1629385 98280 station_ip 83.122.229.112 98280 port 12 98280 unique_id port 98280 remote_ip 10.8.0.50 98282 username aminvpn 98282 unique_id port 98282 terminate_cause User-Request 98282 bytes_out 2497130 98282 bytes_in 50025073 98282 station_ip 5.119.222.50 98282 port 15729107 98282 nas_port_type Virtual 98282 remote_ip 5.5.5.128 98283 username aminvpn 98283 mac 98283 bytes_out 108745 98283 bytes_in 240851 98283 station_ip 5.119.222.50 98283 port 14 98283 unique_id port 98283 remote_ip 10.8.0.6 98284 username asadi 98284 mac 98284 bytes_out 0 98284 bytes_in 0 98284 station_ip 83.122.229.112 98284 port 12 98284 unique_id port 98284 remote_ip 10.8.0.50 98287 username madadi2 98287 mac 98287 bytes_out 1018394 98287 bytes_in 2545497 98287 station_ip 5.119.213.166 98287 port 2 98287 unique_id port 98287 remote_ip 10.8.0.26 98293 username asadi 98293 mac 98293 bytes_out 46228 98293 bytes_in 56918 98293 station_ip 83.122.229.112 98293 port 2 98293 unique_id port 98293 remote_ip 10.8.0.50 98297 username mohammadmahdi 98297 mac 98297 bytes_out 0 98297 bytes_in 0 98297 station_ip 37.129.17.203 98297 port 16 98297 unique_id port 98297 remote_ip 10.8.0.34 98298 username arman1 98298 mac 98298 bytes_out 0 98298 bytes_in 0 98298 station_ip 5.120.156.84 98298 port 20 98298 unique_id port 98305 username hoorieh 98305 mac 98305 bytes_out 0 98305 bytes_in 0 98305 station_ip 5.120.70.222 98305 port 14 98305 unique_id port 98305 remote_ip 10.8.0.10 98307 username mahdixz 98307 unique_id port 98307 terminate_cause User-Request 98307 bytes_out 0 98307 bytes_in 0 98307 station_ip 151.235.105.107 98307 port 15729113 98307 nas_port_type Virtual 98307 remote_ip 5.5.5.124 98308 username rasoul56 98308 kill_reason Another user logged on this global unique id 98308 mac 98308 bytes_out 0 98308 bytes_in 0 98308 station_ip 83.123.59.21 98308 port 16 98308 unique_id port 98308 remote_ip 10.8.0.98 98313 username jamali 98313 mac 98313 bytes_out 1888722 98313 bytes_in 22433225 98313 station_ip 5.119.226.85 98313 port 12 98313 unique_id port 98313 remote_ip 10.8.0.62 98317 username rasoul56 98317 kill_reason Another user logged on this global unique id 98317 mac 98317 bytes_out 0 98317 bytes_in 0 98317 station_ip 83.123.59.21 98317 port 16 98317 unique_id port 98318 username jamali 98318 mac 98318 bytes_out 0 98318 bytes_in 0 98318 station_ip 5.119.226.85 98318 port 12 98318 unique_id port 98318 remote_ip 10.8.0.62 98322 username ahmadi 98322 unique_id port 98322 terminate_cause User-Request 98322 bytes_out 21705 98322 bytes_in 78415 98322 station_ip 113.203.63.132 98322 port 15729115 98322 nas_port_type Virtual 98322 remote_ip 5.5.5.123 98324 username asadi 98324 mac 98324 bytes_out 106178 98324 bytes_in 104907 98324 station_ip 83.122.229.112 98324 port 2 98324 unique_id port 98277 unique_id port 98277 remote_ip 10.8.0.50 98279 username arman1 98279 kill_reason Another user logged on this global unique id 98279 mac 98279 bytes_out 0 98279 bytes_in 0 98279 station_ip 5.120.156.84 98279 port 20 98279 unique_id port 98279 remote_ip 10.8.0.86 98285 username aminvpn 98285 mac 98285 bytes_out 34692 98285 bytes_in 83024 98285 station_ip 31.56.159.173 98285 port 14 98285 unique_id port 98285 remote_ip 10.8.0.6 98286 username arman1 98286 kill_reason Another user logged on this global unique id 98286 mac 98286 bytes_out 0 98286 bytes_in 0 98286 station_ip 5.120.156.84 98286 port 20 98286 unique_id port 98288 username asadi 98288 mac 98288 bytes_out 29991 98288 bytes_in 23484 98288 station_ip 83.122.229.112 98288 port 12 98288 unique_id port 98288 remote_ip 10.8.0.50 98289 username alirr 98289 unique_id port 98289 terminate_cause User-Request 98289 bytes_out 0 98289 bytes_in 0 98289 station_ip 5.120.172.223 98289 port 15729109 98289 nas_port_type Virtual 98289 remote_ip 5.5.5.126 98294 username arman1 98294 kill_reason Another user logged on this global unique id 98294 mac 98294 bytes_out 0 98294 bytes_in 0 98294 station_ip 5.120.156.84 98294 port 20 98294 unique_id port 98296 username ahmadipour 98296 unique_id port 98296 terminate_cause Lost-Carrier 98296 bytes_out 335096 98296 bytes_in 7384547 98296 station_ip 113.203.59.53 98296 port 15729110 98296 nas_port_type Virtual 98296 remote_ip 5.5.5.125 98301 username mohammadmahdi 98301 kill_reason Another user logged on this global unique id 98301 mac 98301 bytes_out 0 98301 bytes_in 0 98301 station_ip 37.129.17.203 98301 port 12 98301 unique_id port 98304 username mohammadreza 98304 mac 98304 bytes_out 144514 98304 bytes_in 536140 98304 station_ip 2.183.151.119 98304 port 8 98304 unique_id port 98304 remote_ip 10.8.1.10 98306 username mohammadmahdi 98306 mac 98306 bytes_out 0 98306 bytes_in 0 98306 station_ip 37.129.17.203 98306 port 12 98306 unique_id port 98314 username jamali 98314 mac 98314 bytes_out 0 98314 bytes_in 0 98314 station_ip 5.119.226.85 98314 port 12 98314 unique_id port 98314 remote_ip 10.8.0.62 98315 username askari 98315 mac 98315 bytes_out 0 98315 bytes_in 0 98315 station_ip 5.119.51.12 98315 port 14 98315 unique_id port 98315 remote_ip 10.8.0.38 98319 username rasoul56 98319 kill_reason Another user logged on this global unique id 98319 mac 98319 bytes_out 0 98319 bytes_in 0 98319 station_ip 83.123.59.21 98319 port 16 98319 unique_id port 98320 username madadi2 98320 mac 98320 bytes_out 0 98320 bytes_in 0 98320 station_ip 5.119.251.156 98320 port 17 98320 unique_id port 98320 remote_ip 10.8.0.26 98323 username jamali 98323 mac 98323 bytes_out 0 98323 bytes_in 0 98323 station_ip 5.119.226.85 98323 port 12 98323 unique_id port 98323 remote_ip 10.8.0.62 98327 username madadi2 98327 mac 98327 bytes_out 0 98327 bytes_in 0 98327 station_ip 5.119.72.18 98327 port 20 98327 unique_id port 98327 remote_ip 10.8.0.26 98328 username asadi 98328 mac 98328 bytes_out 276704 98328 bytes_in 2175455 98328 station_ip 83.122.229.112 98328 port 18 98328 unique_id port 98328 remote_ip 10.8.0.50 98329 username mahdiyehalizadeh 98329 mac 98329 bytes_out 0 98329 bytes_in 0 98329 station_ip 37.129.58.29 98329 port 2 98329 unique_id port 98329 remote_ip 10.8.0.42 98334 username mohammadmahdi 98334 mac 98334 bytes_out 0 98334 bytes_in 0 98316 terminate_cause User-Request 98316 bytes_out 80207 98316 bytes_in 520014 98316 station_ip 113.203.63.132 98316 port 15729114 98316 nas_port_type Virtual 98316 remote_ip 5.5.5.123 98321 username mohammadmahdi 98321 kill_reason Another user logged on this global unique id 98321 mac 98321 bytes_out 0 98321 bytes_in 0 98321 station_ip 37.129.17.203 98321 port 14 98321 unique_id port 98321 remote_ip 10.8.0.34 98326 username jamali 98326 mac 98326 bytes_out 0 98326 bytes_in 0 98326 station_ip 5.119.226.85 98326 port 19 98326 unique_id port 98326 remote_ip 10.8.0.62 98332 username askari 98332 kill_reason Another user logged on this global unique id 98332 mac 98332 bytes_out 0 98332 bytes_in 0 98332 station_ip 5.119.115.165 98332 port 17 98332 unique_id port 98332 remote_ip 10.8.0.38 98333 username asadi 98333 mac 98333 bytes_out 0 98333 bytes_in 0 98333 station_ip 83.122.229.112 98333 port 18 98333 unique_id port 98333 remote_ip 10.8.0.50 98342 username sobhan 98342 unique_id port 98342 terminate_cause User-Request 98342 bytes_out 0 98342 bytes_in 0 98342 station_ip 5.119.175.245 98342 port 15729117 98342 nas_port_type Virtual 98342 remote_ip 5.5.5.121 98344 username amirhosein 98344 unique_id port 98344 terminate_cause User-Request 98344 bytes_out 190524 98344 bytes_in 179301 98344 station_ip 83.123.139.202 98344 port 15729118 98344 nas_port_type Virtual 98344 remote_ip 5.5.5.122 98352 username rasoul56 98352 kill_reason Another user logged on this global unique id 98352 mac 98352 bytes_out 0 98352 bytes_in 0 98352 station_ip 83.123.59.21 98352 port 16 98352 unique_id port 98356 username khalili 98356 mac 98356 bytes_out 0 98356 bytes_in 0 98356 station_ip 5.120.187.66 98356 port 11 98356 unique_id port 98356 remote_ip 10.8.0.78 98359 username mammad 98359 unique_id port 98359 terminate_cause User-Request 98359 bytes_out 0 98359 bytes_in 0 98359 station_ip 2.183.246.162 98359 port 15729119 98359 nas_port_type Virtual 98359 remote_ip 5.5.5.120 98362 username ahmadi 98362 unique_id port 98362 terminate_cause User-Request 98362 bytes_out 27624 98362 bytes_in 305554 98362 station_ip 113.203.63.132 98362 port 15729121 98362 nas_port_type Virtual 98362 remote_ip 5.5.5.123 98364 username mohammadmahdi 98364 mac 98364 bytes_out 0 98364 bytes_in 0 98364 station_ip 37.129.112.55 98364 port 20 98364 unique_id port 98372 username aminvpn 98372 mac 98372 bytes_out 0 98372 bytes_in 0 98372 station_ip 83.123.30.203 98372 port 18 98372 unique_id port 98372 remote_ip 10.8.0.6 98373 username aminvpn 98373 mac 98373 bytes_out 0 98373 bytes_in 0 98373 station_ip 113.203.58.241 98373 port 12 98373 unique_id port 98373 remote_ip 10.8.0.6 98375 username amir 98375 mac 98375 bytes_out 0 98375 bytes_in 0 98375 station_ip 46.225.213.208 98375 port 18 98375 unique_id port 98375 remote_ip 10.8.0.54 98376 username forozande 98376 mac 98376 bytes_out 0 98376 bytes_in 0 98376 station_ip 83.122.215.131 98376 port 11 98376 unique_id port 98376 remote_ip 10.8.0.74 98380 username aminvpn 98380 mac 98380 bytes_out 295966 98380 bytes_in 507032 98380 station_ip 83.123.30.203 98380 port 17 98380 unique_id port 98380 remote_ip 10.8.0.6 98381 username jamali 98381 mac 98381 bytes_out 64473 98381 bytes_in 124169 98381 station_ip 5.119.226.85 98381 port 2 98381 unique_id port 98381 remote_ip 10.8.0.62 98383 username jamali 98383 mac 98383 bytes_out 999723 98383 bytes_in 10372649 98324 remote_ip 10.8.0.50 98325 username amir 98325 mac 98325 bytes_out 0 98325 bytes_in 0 98325 station_ip 83.123.208.191 98325 port 12 98325 unique_id port 98325 remote_ip 10.8.0.54 98330 username asadi 98330 mac 98330 bytes_out 0 98330 bytes_in 0 98330 station_ip 83.122.229.112 98330 port 19 98330 unique_id port 98330 remote_ip 10.8.0.50 98331 username asadi 98331 mac 98331 bytes_out 0 98331 bytes_in 0 98331 station_ip 83.122.229.112 98331 port 2 98331 unique_id port 98331 remote_ip 10.8.0.50 98337 username askari 98337 mac 98337 bytes_out 26456 98337 bytes_in 41595 98337 station_ip 5.119.115.165 98337 port 14 98337 unique_id port 98337 remote_ip 10.8.0.38 98338 username mohammadmahdi 98338 mac 98338 bytes_out 319752 98338 bytes_in 3104420 98338 station_ip 37.129.17.203 98338 port 17 98338 unique_id port 98338 remote_ip 10.8.0.34 98341 username jamali 98341 mac 98341 bytes_out 0 98341 bytes_in 0 98341 station_ip 5.119.226.85 98341 port 2 98341 unique_id port 98341 remote_ip 10.8.0.62 98343 username amirhosein 98343 unique_id port 98343 terminate_cause User-Request 98343 bytes_out 14121 98343 bytes_in 27979 98343 station_ip 83.123.139.202 98343 port 15729116 98343 nas_port_type Virtual 98343 remote_ip 5.5.5.122 98348 username amir 98348 mac 98348 bytes_out 0 98348 bytes_in 0 98348 station_ip 46.225.213.208 98348 port 8 98348 unique_id port 98348 remote_ip 10.8.1.34 98357 username amir 98357 mac 98357 bytes_out 0 98357 bytes_in 0 98357 station_ip 46.225.213.208 98357 port 11 98357 unique_id port 98357 remote_ip 10.8.0.54 98365 username mohammadmahdi 98365 kill_reason Another user logged on this global unique id 98365 mac 98365 bytes_out 0 98365 bytes_in 0 98365 station_ip 37.129.112.55 98365 port 11 98365 unique_id port 98365 remote_ip 10.8.0.34 98366 username amir 98366 mac 98366 bytes_out 0 98366 bytes_in 0 98366 station_ip 46.225.213.208 98366 port 17 98366 unique_id port 98366 remote_ip 10.8.0.54 98369 username mohammadmahdi 98369 mac 98369 bytes_out 0 98369 bytes_in 0 98369 station_ip 37.129.112.55 98369 port 11 98369 unique_id port 98371 username amir 98371 mac 98371 bytes_out 0 98371 bytes_in 0 98371 station_ip 46.225.213.208 98371 port 17 98371 unique_id port 98371 remote_ip 10.8.0.54 98374 username jamali 98374 kill_reason Another user logged on this global unique id 98374 mac 98374 bytes_out 0 98374 bytes_in 0 98374 station_ip 5.119.226.85 98374 port 2 98374 unique_id port 98377 username jamali 98377 mac 98377 bytes_out 0 98377 bytes_in 0 98377 station_ip 5.119.226.85 98377 port 2 98377 unique_id port 98378 username amir 98378 mac 98378 bytes_out 118970 98378 bytes_in 685463 98378 station_ip 46.225.213.208 98378 port 18 98378 unique_id port 98378 remote_ip 10.8.0.54 98382 username amir 98382 mac 98382 bytes_out 1636 98382 bytes_in 4983 98382 station_ip 46.225.213.208 98382 port 11 98382 unique_id port 98382 remote_ip 10.8.0.54 98384 username amir 98384 mac 98384 bytes_out 0 98384 bytes_in 0 98384 station_ip 46.225.213.208 98384 port 8 98384 unique_id port 98384 remote_ip 10.8.1.34 98386 username amir 98386 mac 98386 bytes_out 0 98386 bytes_in 0 98386 station_ip 46.225.213.208 98386 port 11 98386 unique_id port 98386 remote_ip 10.8.0.54 98389 username amir 98389 mac 98389 bytes_out 0 98334 station_ip 37.129.17.203 98334 port 14 98334 unique_id port 98335 username askari 98335 mac 98335 bytes_out 0 98335 bytes_in 0 98335 station_ip 5.119.115.165 98335 port 17 98335 unique_id port 98336 username mohammadmahdi 98336 mac 98336 bytes_out 0 98336 bytes_in 0 98336 station_ip 37.129.17.203 98336 port 2 98336 unique_id port 98336 remote_ip 10.8.0.34 98339 username askari 98339 mac 98339 bytes_out 0 98339 bytes_in 0 98339 station_ip 5.119.115.165 98339 port 2 98339 unique_id port 98339 remote_ip 10.8.0.38 98340 username jamali 98340 mac 98340 bytes_out 0 98340 bytes_in 0 98340 station_ip 5.119.226.85 98340 port 12 98340 unique_id port 98340 remote_ip 10.8.0.62 98345 username amir 98345 mac 98345 bytes_out 0 98345 bytes_in 0 98345 station_ip 46.225.213.208 98345 port 14 98345 unique_id port 98345 remote_ip 10.8.0.54 98346 username amir 98346 mac 98346 bytes_out 0 98346 bytes_in 0 98346 station_ip 46.225.213.208 98346 port 14 98346 unique_id port 98346 remote_ip 10.8.0.54 98347 username amir 98347 mac 98347 bytes_out 0 98347 bytes_in 0 98347 station_ip 46.225.213.208 98347 port 8 98347 unique_id port 98347 remote_ip 10.8.1.34 98349 username askari 98349 mac 98349 bytes_out 2359908 98349 bytes_in 33243674 98349 station_ip 5.120.112.94 98349 port 12 98349 unique_id port 98349 remote_ip 10.8.0.38 98350 username amir 98350 mac 98350 bytes_out 0 98350 bytes_in 0 98350 station_ip 46.225.213.208 98350 port 12 98350 unique_id port 98350 remote_ip 10.8.0.54 98351 username aminvpn 98351 mac 98351 bytes_out 0 98351 bytes_in 0 98351 station_ip 113.203.58.241 98351 port 12 98351 unique_id port 98351 remote_ip 10.8.0.6 98353 username amir 98353 mac 98353 bytes_out 762441 98353 bytes_in 2454489 98353 station_ip 46.225.213.208 98353 port 12 98353 unique_id port 98353 remote_ip 10.8.0.54 98354 username amir 98354 mac 98354 bytes_out 0 98354 bytes_in 0 98354 station_ip 46.225.213.208 98354 port 12 98354 unique_id port 98354 remote_ip 10.8.0.54 98355 username jamali 98355 kill_reason Another user logged on this global unique id 98355 mac 98355 bytes_out 0 98355 bytes_in 0 98355 station_ip 5.119.226.85 98355 port 2 98355 unique_id port 98355 remote_ip 10.8.0.62 98358 username khalili 98358 mac 98358 bytes_out 1118153 98358 bytes_in 3381237 98358 station_ip 5.120.187.66 98358 port 19 98358 unique_id port 98358 remote_ip 10.8.0.78 98360 username mohammadmahdi 98360 kill_reason Another user logged on this global unique id 98360 mac 98360 bytes_out 0 98360 bytes_in 0 98360 station_ip 37.129.112.55 98360 port 20 98360 unique_id port 98360 remote_ip 10.8.0.34 98361 username mahdiyehalizadeh 98361 mac 98361 bytes_out 1614452 98361 bytes_in 20551070 98361 station_ip 83.122.141.236 98361 port 17 98361 unique_id port 98361 remote_ip 10.8.0.42 98363 username amir 98363 mac 98363 bytes_out 0 98363 bytes_in 0 98363 station_ip 46.225.213.208 98363 port 11 98363 unique_id port 98363 remote_ip 10.8.0.54 98367 username forozande 98367 mac 98367 bytes_out 2691330 98367 bytes_in 26861070 98367 station_ip 37.129.80.182 98367 port 18 98367 unique_id port 98367 remote_ip 10.8.0.74 98368 username aminvpn 98368 kill_reason Another user logged on this global unique id 98368 mac 98368 bytes_out 0 98368 bytes_in 0 98368 station_ip 113.203.58.241 98368 port 12 98368 unique_id port 98368 remote_ip 10.8.0.6 98370 username aminvpn 98370 mac 98370 bytes_out 0 98370 bytes_in 0 98370 station_ip 113.203.58.241 98370 port 12 98370 unique_id port 98379 username jamali 98379 mac 98379 bytes_out 622625 98379 bytes_in 7724128 98379 station_ip 5.119.226.85 98379 port 11 98379 unique_id port 98379 remote_ip 10.8.0.62 98388 username amir 98388 mac 98388 bytes_out 0 98388 bytes_in 0 98388 station_ip 46.225.213.208 98388 port 8 98388 unique_id port 98388 remote_ip 10.8.1.34 98394 username madadi2 98394 mac 98394 bytes_out 0 98394 bytes_in 0 98394 station_ip 5.119.247.237 98394 port 14 98394 unique_id port 98394 remote_ip 10.8.0.26 98397 username jamali 98397 mac 98397 bytes_out 0 98397 bytes_in 0 98397 station_ip 5.119.226.85 98397 port 2 98397 unique_id port 98399 username amir 98399 mac 98399 bytes_out 0 98399 bytes_in 0 98399 station_ip 46.225.213.208 98399 port 8 98399 unique_id port 98399 remote_ip 10.8.1.34 98400 username aminvpn 98400 unique_id port 98400 terminate_cause Lost-Carrier 98400 bytes_out 1629775 98400 bytes_in 36437368 98400 station_ip 5.119.159.112 98400 port 15729123 98400 nas_port_type Virtual 98400 remote_ip 5.5.5.117 98403 username aminvpn 98403 mac 98403 bytes_out 16278 98403 bytes_in 34616 98403 station_ip 5.119.159.112 98403 port 17 98403 unique_id port 98403 remote_ip 10.8.0.6 98404 username morteza 98404 mac 98404 bytes_out 1122001 98404 bytes_in 16817011 98404 station_ip 83.122.36.167 98404 port 14 98404 unique_id port 98404 remote_ip 10.8.0.90 98405 username jamali 98405 kill_reason Another user logged on this global unique id 98405 mac 98405 bytes_out 0 98405 bytes_in 0 98405 station_ip 5.119.226.85 98405 port 2 98405 unique_id port 98409 username aminvpn 98409 mac 98409 bytes_out 0 98409 bytes_in 0 98409 station_ip 5.119.159.112 98409 port 11 98409 unique_id port 98409 remote_ip 10.8.0.6 98410 username amirhosein 98410 unique_id port 98410 terminate_cause User-Request 98410 bytes_out 12770 98410 bytes_in 16383 98410 station_ip 83.122.144.82 98410 port 15729125 98410 nas_port_type Virtual 98410 remote_ip 5.5.5.116 98411 username madadi2 98411 mac 98411 bytes_out 60407 98411 bytes_in 143209 98411 station_ip 5.119.183.237 98411 port 11 98411 unique_id port 98411 remote_ip 10.8.0.26 98412 username morteza 98412 kill_reason Another user logged on this global unique id 98412 mac 98412 bytes_out 0 98412 bytes_in 0 98412 station_ip 83.122.36.167 98412 port 17 98412 unique_id port 98415 username jamali 98415 kill_reason Another user logged on this global unique id 98415 mac 98415 bytes_out 0 98415 bytes_in 0 98415 station_ip 5.119.226.85 98415 port 2 98415 unique_id port 98417 username morteza 98435 unique_id port 98417 kill_reason Another user logged on this global unique id 98417 mac 98417 bytes_out 0 98417 bytes_in 0 98417 station_ip 83.122.36.167 98417 port 17 98417 unique_id port 98423 username jamali 98423 kill_reason Another user logged on this global unique id 98423 mac 98423 bytes_out 0 98423 bytes_in 0 98423 station_ip 5.119.226.85 98423 port 2 98423 unique_id port 98425 username aminvpn 98425 mac 98425 bytes_out 0 98425 bytes_in 0 98425 station_ip 5.119.159.112 98425 port 14 98425 unique_id port 98425 remote_ip 10.8.0.6 98431 username aminvpn 98431 mac 98431 bytes_out 0 98431 bytes_in 0 98431 station_ip 5.119.159.112 98431 port 2 98383 station_ip 5.119.226.85 98383 port 2 98383 unique_id port 98383 remote_ip 10.8.0.62 98385 username amir 98385 mac 98385 bytes_out 0 98385 bytes_in 0 98385 station_ip 46.225.213.208 98385 port 2 98385 unique_id port 98385 remote_ip 10.8.0.54 98387 username ahmadipour 98387 unique_id port 98387 terminate_cause Lost-Carrier 98387 bytes_out 2231225 98387 bytes_in 63763310 98387 station_ip 113.203.122.113 98387 port 15729122 98387 nas_port_type Virtual 98387 remote_ip 5.5.5.118 98393 username aminvpn 98393 mac 98393 bytes_out 0 98393 bytes_in 0 98393 station_ip 5.119.159.112 98393 port 11 98393 unique_id port 98393 remote_ip 10.8.0.6 98396 username amir 98396 mac 98396 bytes_out 0 98396 bytes_in 0 98396 station_ip 46.225.213.208 98396 port 8 98396 unique_id port 98396 remote_ip 10.8.1.34 98406 username abbasaskari 98406 mac 98406 bytes_out 628013 98406 bytes_in 8124495 98406 station_ip 83.122.65.88 98406 port 11 98406 unique_id port 98406 remote_ip 10.8.0.94 98413 username aminvpn 98413 mac 98413 bytes_out 0 98413 bytes_in 0 98413 station_ip 5.119.159.112 98413 port 11 98413 unique_id port 98413 remote_ip 10.8.0.6 98416 username morteza 98416 kill_reason Another user logged on this global unique id 98416 mac 98416 bytes_out 0 98416 bytes_in 0 98416 station_ip 83.122.36.167 98416 port 17 98416 unique_id port 98419 username asadi 98419 mac 98419 bytes_out 0 98419 bytes_in 0 98419 station_ip 83.122.234.133 98419 port 11 98419 unique_id port 98419 remote_ip 10.8.0.50 98421 username jamali 98421 kill_reason Another user logged on this global unique id 98421 mac 98421 bytes_out 0 98421 bytes_in 0 98421 station_ip 5.119.226.85 98421 port 2 98421 unique_id port 98422 username morteza 98422 kill_reason Another user logged on this global unique id 98422 mac 98422 bytes_out 0 98422 bytes_in 0 98422 station_ip 83.122.36.167 98422 port 17 98422 unique_id port 98426 username aminvpn 98426 mac 98426 bytes_out 0 98426 bytes_in 0 98426 station_ip 5.119.159.112 98426 port 14 98426 unique_id port 98426 remote_ip 10.8.0.6 98430 username madadi2 98430 mac 98430 bytes_out 0 98430 bytes_in 0 98430 station_ip 5.120.138.177 98430 port 11 98430 unique_id port 98430 remote_ip 10.8.0.26 98433 username mirzaei 98433 kill_reason Another user logged on this global unique id 98433 mac 98433 bytes_out 0 98433 bytes_in 0 98433 station_ip 5.120.111.133 98433 port 12 98433 unique_id port 98433 remote_ip 10.8.0.30 98434 username aminvpn 98434 mac 98434 bytes_out 0 98434 bytes_in 0 98434 station_ip 5.119.159.112 98434 port 2 98434 unique_id port 98434 remote_ip 10.8.0.6 98435 username aminvpn 98435 mac 98435 bytes_out 0 98435 bytes_in 0 98435 station_ip 5.119.159.112 98435 port 2 98435 remote_ip 10.8.0.6 98436 username aminvpn 98436 mac 98436 bytes_out 0 98436 bytes_in 0 98436 station_ip 5.119.159.112 98436 port 2 98436 unique_id port 98436 remote_ip 10.8.0.6 98439 username aminvpn 98439 mac 98439 bytes_out 0 98439 bytes_in 0 98439 station_ip 5.119.159.112 98439 port 2 98439 unique_id port 98439 remote_ip 10.8.0.6 98440 username aminvpn 98440 mac 98440 bytes_out 0 98440 bytes_in 0 98440 station_ip 5.119.159.112 98440 port 2 98440 unique_id port 98440 remote_ip 10.8.0.6 98444 username aminvpn 98444 mac 98444 bytes_out 0 98444 bytes_in 0 98389 bytes_in 0 98389 station_ip 46.225.213.208 98389 port 8 98389 unique_id port 98389 remote_ip 10.8.1.34 98390 username amir 98390 mac 98390 bytes_out 0 98390 bytes_in 0 98390 station_ip 46.225.213.208 98390 port 8 98390 unique_id port 98390 remote_ip 10.8.1.34 98391 username amir 98391 mac 98391 bytes_out 0 98391 bytes_in 0 98391 station_ip 46.225.213.208 98391 port 11 98391 unique_id port 98391 remote_ip 10.8.0.54 98392 username jamali 98392 kill_reason Another user logged on this global unique id 98392 mac 98392 bytes_out 0 98392 bytes_in 0 98392 station_ip 5.119.226.85 98392 port 2 98392 unique_id port 98392 remote_ip 10.8.0.62 98395 username aminvpn 98395 mac 98395 bytes_out 0 98395 bytes_in 0 98395 station_ip 5.119.159.112 98395 port 11 98395 unique_id port 98395 remote_ip 10.8.0.6 98398 username amir 98398 mac 98398 bytes_out 0 98398 bytes_in 0 98398 station_ip 46.225.213.208 98398 port 8 98398 unique_id port 98398 remote_ip 10.8.1.34 98401 username amir 98401 mac 98401 bytes_out 50523 98401 bytes_in 90681 98401 station_ip 46.225.213.208 98401 port 8 98401 unique_id port 98401 remote_ip 10.8.1.34 98402 username jamali 98402 kill_reason Another user logged on this global unique id 98402 mac 98402 bytes_out 0 98402 bytes_in 0 98402 station_ip 5.119.226.85 98402 port 2 98402 unique_id port 98402 remote_ip 10.8.0.62 98407 username morteza 98407 kill_reason Another user logged on this global unique id 98407 mac 98407 bytes_out 0 98407 bytes_in 0 98407 station_ip 83.122.36.167 98407 port 17 98407 unique_id port 98407 remote_ip 10.8.0.90 98408 username amirhosein 98408 unique_id port 98408 terminate_cause User-Request 98408 bytes_out 71405 98408 bytes_in 424216 98408 station_ip 83.122.144.82 98408 port 15729124 98408 nas_port_type Virtual 98408 remote_ip 5.5.5.116 98414 username rasoul56 98414 mac 98414 bytes_out 0 98414 bytes_in 0 98414 station_ip 83.123.59.21 98414 port 16 98414 unique_id port 98418 username aminvpn 98418 mac 98418 bytes_out 0 98418 bytes_in 0 98418 station_ip 5.119.159.112 98418 port 14 98418 unique_id port 98418 remote_ip 10.8.0.6 98420 username aminvpn 98420 mac 98420 bytes_out 0 98420 bytes_in 0 98420 station_ip 5.119.159.112 98420 port 11 98420 unique_id port 98420 remote_ip 10.8.0.6 98424 username morteza 98424 mac 98424 bytes_out 0 98424 bytes_in 0 98424 station_ip 83.122.36.167 98424 port 17 98424 unique_id port 98427 username aminvpn 98427 mac 98427 bytes_out 0 98427 bytes_in 0 98427 station_ip 5.119.159.112 98427 port 14 98427 unique_id port 98427 remote_ip 10.8.0.6 98428 username aminvpn 98428 mac 98428 bytes_out 0 98428 bytes_in 0 98428 station_ip 5.119.159.112 98428 port 14 98428 unique_id port 98428 remote_ip 10.8.0.6 98429 username jamali 98429 mac 98429 bytes_out 0 98429 bytes_in 0 98429 station_ip 5.119.226.85 98429 port 2 98429 unique_id port 98432 username aminvpn 98432 mac 98432 bytes_out 0 98432 bytes_in 0 98432 station_ip 5.119.159.112 98432 port 2 98432 unique_id port 98432 remote_ip 10.8.0.6 98437 username aminvpn 98437 mac 98437 bytes_out 0 98437 bytes_in 0 98437 station_ip 5.119.159.112 98437 port 2 98437 unique_id port 98437 remote_ip 10.8.0.6 98441 username aminvpn 98441 mac 98441 bytes_out 0 98441 bytes_in 0 98441 station_ip 5.119.159.112 98441 port 2 98431 unique_id port 98431 remote_ip 10.8.0.6 98438 username aminvpn 98438 mac 98438 bytes_out 0 98438 bytes_in 0 98438 station_ip 5.119.159.112 98438 port 2 98438 unique_id port 98438 remote_ip 10.8.0.6 98442 username aminvpn 98442 mac 98442 bytes_out 0 98442 bytes_in 0 98442 station_ip 5.119.159.112 98442 port 2 98442 unique_id port 98442 remote_ip 10.8.0.6 98443 username aminvpn 98443 mac 98443 bytes_out 0 98443 bytes_in 0 98443 station_ip 5.119.159.112 98443 port 2 98443 unique_id port 98443 remote_ip 10.8.0.6 98445 username aminvpn 98445 mac 98445 bytes_out 0 98445 bytes_in 0 98445 station_ip 5.119.159.112 98445 port 2 98445 unique_id port 98445 remote_ip 10.8.0.6 98450 username aminvpn 98450 mac 98450 bytes_out 0 98450 bytes_in 0 98450 station_ip 5.119.159.112 98450 port 2 98450 unique_id port 98450 remote_ip 10.8.0.6 98454 username aminvpn 98454 mac 98454 bytes_out 0 98454 bytes_in 0 98454 station_ip 5.119.159.112 98454 port 2 98454 unique_id port 98454 remote_ip 10.8.0.6 98455 username aminvpn 98455 mac 98455 bytes_out 0 98455 bytes_in 0 98455 station_ip 5.119.159.112 98455 port 2 98455 unique_id port 98455 remote_ip 10.8.0.6 98459 username aminvpn 98459 mac 98459 bytes_out 0 98459 bytes_in 0 98459 station_ip 5.119.159.112 98459 port 2 98459 unique_id port 98459 remote_ip 10.8.0.6 98461 username aminvpn 98461 mac 98461 bytes_out 0 98461 bytes_in 0 98461 station_ip 5.119.159.112 98461 port 2 98461 unique_id port 98461 remote_ip 10.8.0.6 98465 username aminvpn 98465 mac 98465 bytes_out 0 98465 bytes_in 0 98465 station_ip 5.119.159.112 98465 port 2 98465 unique_id port 98465 remote_ip 10.8.0.6 98470 username aminvpn 98470 mac 98470 bytes_out 0 98470 bytes_in 0 98470 station_ip 5.119.159.112 98470 port 2 98470 unique_id port 98470 remote_ip 10.8.0.6 98471 username aminvpn 98471 mac 98471 bytes_out 0 98471 bytes_in 0 98471 station_ip 5.119.159.112 98471 port 2 98471 unique_id port 98471 remote_ip 10.8.0.6 98476 username aminvpn 98476 mac 98476 bytes_out 0 98476 bytes_in 0 98476 station_ip 5.119.159.112 98476 port 2 98476 unique_id port 98476 remote_ip 10.8.0.6 98477 username aminvpn 98477 mac 98477 bytes_out 0 98477 bytes_in 0 98477 station_ip 5.119.159.112 98477 port 2 98477 unique_id port 98477 remote_ip 10.8.0.6 98478 username askari 98478 mac 98478 bytes_out 321149 98478 bytes_in 3241719 98478 station_ip 5.119.221.63 98478 port 11 98478 unique_id port 98478 remote_ip 10.8.0.38 98479 username askari 98479 kill_reason Another user logged on this global unique id 98479 mac 98479 bytes_out 0 98479 bytes_in 0 98479 station_ip 5.120.124.99 98479 port 16 98479 unique_id port 98479 remote_ip 10.8.0.38 98481 username askari 98481 mac 98481 bytes_out 0 98481 bytes_in 0 98481 station_ip 5.120.124.99 98481 port 16 98481 unique_id port 98484 username amir 98484 mac 98484 bytes_out 95161 98484 bytes_in 655432 98484 station_ip 46.225.214.236 98484 port 11 98484 unique_id port 98484 remote_ip 10.8.0.54 98486 username aminvpn 98486 kill_reason Another user logged on this global unique id 98486 mac 98486 bytes_out 0 98486 bytes_in 0 98486 station_ip 83.122.162.147 98486 port 2 98486 unique_id port 98487 username aminvpn 98487 mac 98487 bytes_out 0 98441 unique_id port 98441 remote_ip 10.8.0.6 98451 username aminvpn 98451 mac 98451 bytes_out 0 98451 bytes_in 0 98451 station_ip 5.119.159.112 98451 port 2 98451 unique_id port 98451 remote_ip 10.8.0.6 98452 username aminvpn 98452 mac 98452 bytes_out 0 98452 bytes_in 0 98452 station_ip 5.119.159.112 98452 port 2 98452 unique_id port 98452 remote_ip 10.8.0.6 98456 username aminvpn 98456 mac 98456 bytes_out 0 98456 bytes_in 0 98456 station_ip 5.119.159.112 98456 port 2 98456 unique_id port 98456 remote_ip 10.8.0.6 98457 username aminvpn 98457 mac 98457 bytes_out 0 98457 bytes_in 0 98457 station_ip 5.119.159.112 98457 port 2 98457 unique_id port 98457 remote_ip 10.8.0.6 98462 username aminvpn 98462 mac 98462 bytes_out 0 98462 bytes_in 0 98462 station_ip 5.119.159.112 98462 port 2 98462 unique_id port 98462 remote_ip 10.8.0.6 98466 username aminvpn 98466 mac 98466 bytes_out 0 98466 bytes_in 0 98466 station_ip 5.119.159.112 98466 port 2 98466 unique_id port 98466 remote_ip 10.8.0.6 98467 username aminvpn 98467 mac 98467 bytes_out 0 98467 bytes_in 0 98467 station_ip 5.119.159.112 98467 port 2 98467 unique_id port 98467 remote_ip 10.8.0.6 98472 username aminvpn 98472 mac 98472 bytes_out 0 98472 bytes_in 0 98472 station_ip 5.119.159.112 98472 port 2 98472 unique_id port 98472 remote_ip 10.8.0.6 98474 username aminvpn 98474 mac 98474 bytes_out 0 98474 bytes_in 0 98474 station_ip 5.119.159.112 98474 port 2 98474 unique_id port 98474 remote_ip 10.8.0.6 98480 username aminvpn 98480 mac 98480 bytes_out 0 98480 bytes_in 0 98480 station_ip 113.203.78.201 98480 port 2 98480 unique_id port 98480 remote_ip 10.8.0.6 98485 username amir 98485 mac 98485 bytes_out 0 98485 bytes_in 0 98485 station_ip 46.225.214.236 98485 port 11 98485 unique_id port 98485 remote_ip 10.8.0.54 98489 username madadi2 98489 mac 98489 bytes_out 0 98489 bytes_in 0 98489 station_ip 5.119.200.78 98489 port 11 98489 unique_id port 98489 remote_ip 10.8.0.26 98491 username jamali 98491 mac 98491 bytes_out 0 98491 bytes_in 0 98491 station_ip 5.119.226.85 98491 port 14 98491 unique_id port 98491 remote_ip 10.8.0.62 98494 username mahbobeh 98494 unique_id port 98494 terminate_cause Lost-Carrier 98494 bytes_out 23673314 98494 bytes_in 40991828 98494 station_ip 83.123.23.185 98494 port 15729120 98494 nas_port_type Virtual 98494 remote_ip 5.5.5.119 98495 username morteza 98495 mac 98495 bytes_out 0 98495 bytes_in 0 98495 station_ip 83.122.78.167 98495 port 11 98495 unique_id port 98495 remote_ip 10.8.0.90 98498 username amir 98498 mac 98498 bytes_out 0 98498 bytes_in 0 98498 station_ip 46.225.209.204 98498 port 8 98498 unique_id port 98500 username jamali 98500 mac 98500 bytes_out 0 98500 bytes_in 0 98500 station_ip 5.119.226.85 98500 port 2 98500 unique_id port 98500 remote_ip 10.8.0.62 98501 username abbasaskari 98501 mac 98501 bytes_out 0 98501 bytes_in 0 98501 station_ip 83.123.35.190 98501 port 11 98501 unique_id port 98501 remote_ip 10.8.0.94 98505 username forozande 98505 unique_id port 98505 terminate_cause User-Request 98505 bytes_out 0 98505 bytes_in 0 98505 station_ip 37.129.5.178 98505 port 15729133 98505 nas_port_type Virtual 98505 remote_ip 5.5.5.114 98508 username amir 98508 mac 98444 station_ip 5.119.159.112 98444 port 2 98444 unique_id port 98444 remote_ip 10.8.0.6 98446 username aminvpn 98446 mac 98446 bytes_out 0 98446 bytes_in 0 98446 station_ip 5.119.159.112 98446 port 2 98446 unique_id port 98446 remote_ip 10.8.0.6 98447 username aminvpn 98447 mac 98447 bytes_out 0 98447 bytes_in 0 98447 station_ip 5.119.159.112 98447 port 2 98447 unique_id port 98447 remote_ip 10.8.0.6 98448 username aminvpn 98448 mac 98448 bytes_out 0 98448 bytes_in 0 98448 station_ip 5.119.159.112 98448 port 2 98448 unique_id port 98448 remote_ip 10.8.0.6 98449 username sobhan 98449 unique_id port 98449 terminate_cause User-Request 98449 bytes_out 0 98449 bytes_in 0 98449 station_ip 5.119.175.245 98449 port 15729129 98449 nas_port_type Virtual 98449 remote_ip 5.5.5.121 98453 username aminvpn 98453 mac 98453 bytes_out 0 98453 bytes_in 0 98453 station_ip 5.119.159.112 98453 port 2 98453 unique_id port 98453 remote_ip 10.8.0.6 98458 username aminvpn 98458 mac 98458 bytes_out 0 98458 bytes_in 0 98458 station_ip 5.119.159.112 98458 port 2 98458 unique_id port 98458 remote_ip 10.8.0.6 98460 username aminvpn 98460 mac 98460 bytes_out 0 98460 bytes_in 0 98460 station_ip 5.119.159.112 98460 port 2 98460 unique_id port 98460 remote_ip 10.8.0.6 98463 username aminvpn 98463 mac 98463 bytes_out 0 98463 bytes_in 0 98463 station_ip 5.119.159.112 98463 port 2 98463 unique_id port 98463 remote_ip 10.8.0.6 98464 username aminvpn 98464 mac 98464 bytes_out 0 98464 bytes_in 0 98464 station_ip 5.119.159.112 98464 port 2 98464 unique_id port 98464 remote_ip 10.8.0.6 98468 username aminvpn 98468 mac 98468 bytes_out 0 98468 bytes_in 0 98468 station_ip 5.119.159.112 98468 port 2 98468 unique_id port 98468 remote_ip 10.8.0.6 98469 username aminvpn 98469 mac 98469 bytes_out 0 98469 bytes_in 0 98469 station_ip 5.119.159.112 98469 port 2 98469 unique_id port 98469 remote_ip 10.8.0.6 98473 username aminvpn 98473 mac 98473 bytes_out 0 98473 bytes_in 0 98473 station_ip 5.119.159.112 98473 port 2 98473 unique_id port 98473 remote_ip 10.8.0.6 98475 username aminvpn 98475 mac 98475 bytes_out 0 98475 bytes_in 0 98475 station_ip 5.119.159.112 98475 port 2 98475 unique_id port 98475 remote_ip 10.8.0.6 98482 username amir 98482 mac 98482 bytes_out 0 98482 bytes_in 0 98482 station_ip 46.225.214.236 98482 port 11 98482 unique_id port 98482 remote_ip 10.8.0.54 98483 username aminvpn 98483 kill_reason Another user logged on this global unique id 98483 mac 98483 bytes_out 0 98483 bytes_in 0 98483 station_ip 83.122.162.147 98483 port 2 98483 unique_id port 98483 remote_ip 10.8.0.6 98488 username morteza 98488 kill_reason Another user logged on this global unique id 98488 mac 98488 bytes_out 0 98488 bytes_in 0 98488 station_ip 83.122.53.127 98488 port 2 98488 unique_id port 98488 remote_ip 10.8.0.90 98492 username madadi2 98492 mac 98492 bytes_out 0 98492 bytes_in 0 98492 station_ip 5.120.143.62 98492 port 11 98492 unique_id port 98492 remote_ip 10.8.0.26 98496 username amir 98496 kill_reason Another user logged on this global unique id 98496 mac 98496 bytes_out 0 98496 bytes_in 0 98496 station_ip 46.225.209.204 98496 port 8 98496 unique_id port 98496 remote_ip 10.8.1.34 98499 username forozande 98499 mac 98499 bytes_out 0 98487 bytes_in 0 98487 station_ip 83.122.162.147 98487 port 2 98487 unique_id port 98490 username morteza 98490 mac 98490 bytes_out 0 98490 bytes_in 0 98490 station_ip 83.122.53.127 98490 port 2 98490 unique_id port 98493 username forozande 98493 kill_reason Another user logged on this global unique id 98493 mac 98493 bytes_out 0 98493 bytes_in 0 98493 station_ip 37.129.59.123 98493 port 14 98493 unique_id port 98493 remote_ip 10.8.0.74 98497 username forozande 98497 mac 98497 bytes_out 0 98497 bytes_in 0 98497 station_ip 37.129.59.123 98497 port 14 98497 unique_id port 98503 username madadi2 98503 mac 98503 bytes_out 0 98503 bytes_in 0 98503 station_ip 5.119.21.162 98503 port 11 98503 unique_id port 98503 remote_ip 10.8.0.26 98504 username forozande 98504 mac 98504 bytes_out 0 98504 bytes_in 0 98504 station_ip 37.129.5.178 98504 port 11 98504 unique_id port 98504 remote_ip 10.8.0.74 98513 username amir 98513 mac 98513 bytes_out 0 98513 bytes_in 0 98513 station_ip 46.225.209.204 98513 port 2 98513 unique_id port 98513 remote_ip 10.8.0.54 98514 username aminvpn 98514 mac 98514 bytes_out 0 98514 bytes_in 0 98514 station_ip 83.122.136.76 98514 port 14 98514 unique_id port 98514 remote_ip 10.8.0.6 98515 username forozande 98515 mac 98515 bytes_out 307854 98515 bytes_in 3124913 98515 station_ip 83.122.133.118 98515 port 11 98515 unique_id port 98515 remote_ip 10.8.0.74 98516 username aminvpn 98516 mac 98516 bytes_out 0 98516 bytes_in 0 98516 station_ip 83.122.136.76 98516 port 16 98516 unique_id port 98516 remote_ip 10.8.0.6 98518 username shahrooz 98518 unique_id port 98518 terminate_cause Lost-Carrier 98518 bytes_out 4018392 98518 bytes_in 99547675 98518 station_ip 83.122.117.57 98518 port 15729134 98518 nas_port_type Virtual 98518 remote_ip 5.5.5.113 98521 username alipour 98521 mac 98521 bytes_out 0 98521 bytes_in 0 98521 station_ip 83.122.239.19 98521 port 14 98521 unique_id port 98526 username abbasaskari 98526 mac 98526 bytes_out 0 98526 bytes_in 0 98526 station_ip 83.123.144.84 98526 port 14 98526 unique_id port 98526 remote_ip 10.8.0.94 98527 username abbasaskari 98527 mac 98527 bytes_out 0 98527 bytes_in 0 98527 station_ip 83.123.144.84 98527 port 11 98527 unique_id port 98527 remote_ip 10.8.0.94 98530 username forozande 98530 mac 98530 bytes_out 0 98530 bytes_in 0 98530 station_ip 83.123.77.197 98530 port 11 98530 unique_id port 98530 remote_ip 10.8.0.74 98532 username khalili 98532 kill_reason Another user logged on this global unique id 98532 mac 98532 bytes_out 0 98532 bytes_in 0 98532 station_ip 5.119.219.58 98532 port 2 98532 unique_id port 98534 username hoorieh 98534 mac 98534 bytes_out 2083512 98534 bytes_in 24645686 98534 station_ip 5.120.5.59 98534 port 11 98534 unique_id port 98534 remote_ip 10.8.0.10 98537 username mahdiyehalizadeh 98537 mac 98537 bytes_out 0 98537 bytes_in 0 98537 station_ip 37.129.26.182 98537 port 11 98537 unique_id port 98537 remote_ip 10.8.0.42 98539 username mammad 98539 unique_id port 98539 terminate_cause User-Request 98539 bytes_out 0 98539 bytes_in 0 98539 station_ip 46.100.219.87 98539 port 15729136 98539 nas_port_type Virtual 98539 remote_ip 5.5.5.111 98541 username khalili 98541 kill_reason Another user logged on this global unique id 98541 mac 98541 bytes_out 0 98541 bytes_in 0 98541 station_ip 5.119.219.58 98499 bytes_in 0 98499 station_ip 37.129.160.58 98499 port 11 98499 unique_id port 98499 remote_ip 10.8.0.74 98502 username madadi2 98502 mac 98502 bytes_out 0 98502 bytes_in 0 98502 station_ip 5.119.191.37 98502 port 2 98502 unique_id port 98502 remote_ip 10.8.0.26 98506 username amir 98506 mac 98506 bytes_out 0 98506 bytes_in 0 98506 station_ip 46.225.209.204 98506 port 2 98506 unique_id port 98506 remote_ip 10.8.0.54 98507 username madadi2 98507 mac 98507 bytes_out 0 98507 bytes_in 0 98507 station_ip 5.119.207.11 98507 port 14 98507 unique_id port 98507 remote_ip 10.8.0.26 98512 username amir 98512 mac 98512 bytes_out 0 98512 bytes_in 0 98512 station_ip 46.225.209.204 98512 port 2 98512 unique_id port 98512 remote_ip 10.8.0.54 98517 username alipour 98517 mac 98517 bytes_out 0 98517 bytes_in 0 98517 station_ip 83.122.239.19 98517 port 2 98517 unique_id port 98517 remote_ip 10.8.0.70 98523 username mirzaei 98523 kill_reason Another user logged on this global unique id 98523 mac 98523 bytes_out 0 98523 bytes_in 0 98523 station_ip 5.120.111.133 98523 port 12 98523 unique_id port 98524 username khalili 98524 kill_reason Another user logged on this global unique id 98524 mac 98524 bytes_out 0 98524 bytes_in 0 98524 station_ip 5.119.219.58 98524 port 2 98524 unique_id port 98524 remote_ip 10.8.0.78 98525 username forozande 98525 mac 98525 bytes_out 500191 98525 bytes_in 2854898 98525 station_ip 113.203.2.99 98525 port 11 98525 unique_id port 98525 remote_ip 10.8.0.74 98528 username khalili 98528 kill_reason Another user logged on this global unique id 98528 mac 98528 bytes_out 0 98528 bytes_in 0 98528 station_ip 5.119.219.58 98528 port 2 98528 unique_id port 98529 username khalili 98529 kill_reason Another user logged on this global unique id 98529 mac 98529 bytes_out 0 98529 bytes_in 0 98529 station_ip 5.119.219.58 98529 port 2 98529 unique_id port 98531 username khalili 98531 kill_reason Another user logged on this global unique id 98531 mac 98531 bytes_out 0 98531 bytes_in 0 98531 station_ip 5.119.219.58 98531 port 2 98531 unique_id port 98533 username alemzadeh 98533 unique_id port 98533 terminate_cause User-Request 98533 bytes_out 0 98533 bytes_in 0 98533 station_ip 83.123.160.233 98533 port 15729135 98533 nas_port_type Virtual 98533 remote_ip 5.5.5.112 98535 username forozande 98535 mac 98535 bytes_out 0 98535 bytes_in 0 98535 station_ip 37.129.192.183 98535 port 14 98535 unique_id port 98535 remote_ip 10.8.0.74 98536 username forozande 98536 mac 98536 bytes_out 0 98536 bytes_in 0 98536 station_ip 37.129.162.80 98536 port 11 98536 unique_id port 98536 remote_ip 10.8.0.74 98540 username amir 98540 mac 98540 bytes_out 0 98540 bytes_in 0 98540 station_ip 46.225.214.162 98540 port 14 98540 unique_id port 98540 remote_ip 10.8.0.54 98545 username mohammadmahdi 98545 kill_reason Another user logged on this global unique id 98545 mac 98545 bytes_out 0 98545 bytes_in 0 98545 station_ip 83.122.127.252 98545 port 14 98545 unique_id port 98545 remote_ip 10.8.0.34 98546 username sobhan 98546 unique_id port 98546 terminate_cause User-Request 98546 bytes_out 0 98546 bytes_in 0 98546 station_ip 5.119.46.151 98546 port 15729137 98546 nas_port_type Virtual 98546 remote_ip 5.5.5.110 98551 username mahdixz 98551 unique_id port 98551 terminate_cause User-Request 98551 bytes_out 0 98551 bytes_in 0 98551 station_ip 151.235.101.129 98551 port 15729139 98508 bytes_out 0 98508 bytes_in 0 98508 station_ip 46.225.209.204 98508 port 2 98508 unique_id port 98508 remote_ip 10.8.0.54 98509 username amir 98509 mac 98509 bytes_out 0 98509 bytes_in 0 98509 station_ip 46.225.209.204 98509 port 2 98509 unique_id port 98509 remote_ip 10.8.0.54 98510 username aminvpn 98510 mac 98510 bytes_out 0 98510 bytes_in 0 98510 station_ip 83.122.136.76 98510 port 11 98510 unique_id port 98510 remote_ip 10.8.0.6 98511 username aminvpn 98511 unique_id port 98511 terminate_cause Lost-Carrier 98511 bytes_out 3386047 98511 bytes_in 43166424 98511 station_ip 5.119.122.39 98511 port 15729132 98511 nas_port_type Virtual 98511 remote_ip 5.5.5.115 98519 username alipour 98519 kill_reason Another user logged on this global unique id 98519 mac 98519 bytes_out 0 98519 bytes_in 0 98519 station_ip 83.122.239.19 98519 port 14 98519 unique_id port 98519 remote_ip 10.8.0.70 98520 username forozande 98520 mac 98520 bytes_out 0 98520 bytes_in 0 98520 station_ip 113.203.42.233 98520 port 11 98520 unique_id port 98520 remote_ip 10.8.0.74 98522 username forozande 98522 mac 98522 bytes_out 0 98522 bytes_in 0 98522 station_ip 83.123.34.121 98522 port 11 98522 unique_id port 98522 remote_ip 10.8.0.74 98538 username khalili 98538 kill_reason Another user logged on this global unique id 98538 mac 98538 bytes_out 0 98538 bytes_in 0 98538 station_ip 5.119.219.58 98538 port 2 98538 unique_id port 98543 username amir 98543 mac 98543 bytes_out 0 98543 bytes_in 0 98543 station_ip 46.225.214.162 98543 port 14 98543 unique_id port 98543 remote_ip 10.8.0.54 98544 username amir 98544 mac 98544 bytes_out 0 98544 bytes_in 0 98544 station_ip 46.225.214.162 98544 port 16 98544 unique_id port 98544 remote_ip 10.8.0.54 98548 username forozande 98548 mac 98548 bytes_out 309729 98548 bytes_in 2841227 98548 station_ip 83.122.143.47 98548 port 16 98548 unique_id port 98548 remote_ip 10.8.0.74 98549 username amir 98549 mac 98549 bytes_out 0 98549 bytes_in 0 98549 station_ip 46.225.214.162 98549 port 11 98549 unique_id port 98549 remote_ip 10.8.0.54 98553 username askari 98553 kill_reason Another user logged on this global unique id 98553 mac 98553 bytes_out 0 98553 bytes_in 0 98553 station_ip 5.119.39.206 98553 port 11 98553 unique_id port 98553 remote_ip 10.8.0.38 98554 username amir 98554 mac 98554 bytes_out 0 98554 bytes_in 0 98554 station_ip 46.225.214.162 98554 port 14 98554 unique_id port 98554 remote_ip 10.8.0.54 98555 username askari 98555 mac 98555 bytes_out 0 98555 bytes_in 0 98555 station_ip 5.119.39.206 98555 port 11 98555 unique_id port 98557 username ahmadipour 98557 unique_id port 98557 terminate_cause User-Request 98557 bytes_out 1153365 98557 bytes_in 29432228 98557 station_ip 113.203.72.57 98557 port 15729138 98557 nas_port_type Virtual 98557 remote_ip 5.5.5.109 98558 username amir 98558 mac 98558 bytes_out 0 98558 bytes_in 0 98558 station_ip 46.225.214.162 98558 port 11 98558 unique_id port 98558 remote_ip 10.8.0.54 98565 username amir 98565 mac 98565 bytes_out 0 98565 bytes_in 0 98565 station_ip 37.129.52.4 98565 port 14 98565 unique_id port 98565 remote_ip 10.8.0.54 98568 username amir 98568 mac 98568 bytes_out 0 98568 bytes_in 0 98568 station_ip 46.225.214.162 98568 port 11 98568 unique_id port 98568 remote_ip 10.8.0.54 98569 username amir 98541 port 2 98541 unique_id port 98542 username madadi2 98542 mac 98542 bytes_out 0 98542 bytes_in 0 98542 station_ip 5.119.180.57 98542 port 16 98542 unique_id port 98542 remote_ip 10.8.0.26 98547 username mahdiyehalizadeh 98547 mac 98547 bytes_out 488789 98547 bytes_in 6983842 98547 station_ip 37.129.26.182 98547 port 11 98547 unique_id port 98547 remote_ip 10.8.0.42 98550 username mohammadmahdi 98550 kill_reason Another user logged on this global unique id 98550 mac 98550 bytes_out 0 98550 bytes_in 0 98550 station_ip 83.122.127.252 98550 port 14 98550 unique_id port 98556 username amir 98556 mac 98556 bytes_out 0 98556 bytes_in 0 98556 station_ip 46.225.214.162 98556 port 14 98556 unique_id port 98556 remote_ip 10.8.0.54 98559 username amir 98559 mac 98559 bytes_out 11680 98559 bytes_in 18626 98559 station_ip 46.225.214.162 98559 port 11 98559 unique_id port 98559 remote_ip 10.8.0.54 98563 username amir 98563 mac 98563 bytes_out 225526 98563 bytes_in 416042 98563 station_ip 46.225.214.162 98563 port 11 98563 unique_id port 98563 remote_ip 10.8.0.54 98564 username forozande 98564 mac 98564 bytes_out 107364 98564 bytes_in 289632 98564 station_ip 83.123.11.52 98564 port 11 98564 unique_id port 98564 remote_ip 10.8.0.74 98572 username amir 98572 mac 98572 bytes_out 0 98572 bytes_in 0 98572 station_ip 46.225.214.162 98572 port 16 98572 unique_id port 98572 remote_ip 10.8.0.54 98573 username mohammadmahdi 98573 mac 98573 bytes_out 9883297 98573 bytes_in 3636618 98573 station_ip 83.122.12.224 98573 port 14 98573 unique_id port 98573 remote_ip 10.8.0.34 98574 username abbasaskari 98574 mac 98574 bytes_out 0 98574 bytes_in 0 98574 station_ip 83.123.245.200 98574 port 11 98574 unique_id port 98574 remote_ip 10.8.0.94 98576 username abbasaskari 98576 mac 98576 bytes_out 16009 98576 bytes_in 30354 98576 station_ip 83.123.245.200 98576 port 11 98576 unique_id port 98576 remote_ip 10.8.0.94 98582 username mohammadreza 98582 mac 98582 bytes_out 0 98582 bytes_in 0 98582 station_ip 5.233.80.203 98582 port 11 98582 unique_id port 98582 remote_ip 10.8.0.18 98585 username amir 98585 mac 98585 bytes_out 0 98585 bytes_in 0 98585 station_ip 46.225.214.162 98585 port 14 98585 unique_id port 98585 remote_ip 10.8.0.54 98586 username bcboard 98586 unique_id port 98586 terminate_cause Lost-Carrier 98586 bytes_out 92384 98586 bytes_in 44147 98586 station_ip 37.129.41.71 98586 port 15729145 98586 nas_port_type Virtual 98586 remote_ip 5.5.5.104 98588 username aminvpn 98588 unique_id port 98588 terminate_cause User-Request 98588 bytes_out 5625408 98588 bytes_in 113429198 98588 station_ip 83.123.12.30 98588 port 15729140 98588 nas_port_type Virtual 98588 remote_ip 5.5.5.107 98597 username amir 98597 mac 98597 bytes_out 0 98597 bytes_in 0 98597 station_ip 46.225.214.162 98597 port 11 98597 unique_id port 98597 remote_ip 10.8.0.54 98598 username amir 98598 mac 98598 bytes_out 0 98598 bytes_in 0 98598 station_ip 46.225.214.162 98598 port 11 98598 unique_id port 98598 remote_ip 10.8.0.54 98601 username amir 98601 mac 98601 bytes_out 0 98601 bytes_in 0 98601 station_ip 46.225.214.162 98601 port 14 98601 unique_id port 98601 remote_ip 10.8.0.54 98608 username amir 98608 mac 98608 bytes_out 0 98608 bytes_in 0 98608 station_ip 46.225.214.162 98608 port 14 98608 unique_id port 98551 nas_port_type Virtual 98551 remote_ip 5.5.5.108 98552 username mohammadmahdi 98552 mac 98552 bytes_out 0 98552 bytes_in 0 98552 station_ip 83.122.127.252 98552 port 14 98552 unique_id port 98560 username amir 98560 mac 98560 bytes_out 34878 98560 bytes_in 88403 98560 station_ip 46.225.214.162 98560 port 11 98560 unique_id port 98560 remote_ip 10.8.0.54 98561 username amir 98561 mac 98561 bytes_out 0 98561 bytes_in 0 98561 station_ip 46.225.214.162 98561 port 11 98561 unique_id port 98561 remote_ip 10.8.0.54 98562 username forozande 98562 mac 98562 bytes_out 2280479 98562 bytes_in 33740777 98562 station_ip 83.123.55.177 98562 port 14 98562 unique_id port 98562 remote_ip 10.8.0.74 98566 username sadegh 98566 kill_reason Relative expiration date has reached 98566 unique_id port 98566 bytes_out 0 98566 bytes_in 0 98566 station_ip 5.119.35.126 98566 port 15729142 98566 nas_port_type Virtual 98567 username amir 98567 mac 98567 bytes_out 169631 98567 bytes_in 556530 98567 station_ip 46.225.214.162 98567 port 11 98567 unique_id port 98567 remote_ip 10.8.0.54 98570 username ahmadi 98570 unique_id port 98570 terminate_cause User-Request 98570 bytes_out 27810 98570 bytes_in 286006 98570 station_ip 37.129.69.91 98570 port 15729143 98570 nas_port_type Virtual 98570 remote_ip 5.5.5.106 98575 username abbasaskari 98575 mac 98575 bytes_out 20560 98575 bytes_in 34668 98575 station_ip 83.123.245.200 98575 port 11 98575 unique_id port 98575 remote_ip 10.8.0.94 98577 username aminvpn 98577 mac 98577 bytes_out 0 98577 bytes_in 0 98577 station_ip 83.122.136.76 98577 port 8 98577 unique_id port 98577 remote_ip 10.8.1.26 98580 username aminvpn 98580 mac 98580 bytes_out 0 98580 bytes_in 0 98580 station_ip 83.122.136.76 98580 port 8 98580 unique_id port 98580 remote_ip 10.8.1.26 98587 username forozande 98587 mac 98587 bytes_out 0 98587 bytes_in 0 98587 station_ip 37.129.188.73 98587 port 17 98587 unique_id port 98587 remote_ip 10.8.0.74 98591 username mirzaei 98591 kill_reason Another user logged on this global unique id 98591 mac 98591 bytes_out 0 98591 bytes_in 0 98591 station_ip 5.120.111.133 98591 port 12 98591 unique_id port 98592 username amir 98592 mac 98592 bytes_out 0 98592 bytes_in 0 98592 station_ip 46.225.214.162 98592 port 11 98592 unique_id port 98592 remote_ip 10.8.0.54 98593 username amir 98593 mac 98593 bytes_out 0 98593 bytes_in 0 98593 station_ip 46.225.214.162 98593 port 16 98593 unique_id port 98593 remote_ip 10.8.0.54 98594 username madadi2 98594 mac 98594 bytes_out 0 98594 bytes_in 0 98594 station_ip 5.120.187.23 98594 port 14 98594 unique_id port 98594 remote_ip 10.8.0.26 98595 username mohammadmahdi 98595 mac 98595 bytes_out 0 98595 bytes_in 0 98595 station_ip 83.122.93.244 98595 port 11 98595 unique_id port 98595 remote_ip 10.8.0.34 98596 username amir 98596 mac 98596 bytes_out 348082 98596 bytes_in 1802110 98596 station_ip 46.225.214.162 98596 port 14 98596 unique_id port 98596 remote_ip 10.8.0.54 98600 username amir 98600 mac 98600 bytes_out 0 98600 bytes_in 0 98600 station_ip 46.225.214.162 98600 port 11 98600 unique_id port 98600 remote_ip 10.8.0.54 98602 username bcboard 98602 unique_id port 98602 terminate_cause Lost-Carrier 98602 bytes_out 106598 98602 bytes_in 96680 98602 station_ip 83.122.201.24 98602 port 15729148 98602 nas_port_type Virtual 98569 mac 98569 bytes_out 0 98569 bytes_in 0 98569 station_ip 46.225.214.162 98569 port 11 98569 unique_id port 98569 remote_ip 10.8.0.54 98571 username amir 98571 mac 98571 bytes_out 0 98571 bytes_in 0 98571 station_ip 46.225.214.162 98571 port 16 98571 unique_id port 98571 remote_ip 10.8.0.54 98578 username khalili 98578 kill_reason Another user logged on this global unique id 98578 mac 98578 bytes_out 0 98578 bytes_in 0 98578 station_ip 5.119.219.58 98578 port 2 98578 unique_id port 98579 username mohammadreza 98579 mac 98579 bytes_out 0 98579 bytes_in 0 98579 station_ip 151.234.20.177 98579 port 9 98579 unique_id port 98579 remote_ip 10.8.1.10 98581 username forozande 98581 mac 98581 bytes_out 1362052 98581 bytes_in 8463989 98581 station_ip 37.129.188.73 98581 port 14 98581 unique_id port 98581 remote_ip 10.8.0.74 98583 username amir 98583 mac 98583 bytes_out 0 98583 bytes_in 0 98583 station_ip 46.225.214.162 98583 port 16 98583 unique_id port 98583 remote_ip 10.8.0.54 98584 username amir 98584 mac 98584 bytes_out 0 98584 bytes_in 0 98584 station_ip 46.225.214.162 98584 port 11 98584 unique_id port 98584 remote_ip 10.8.0.54 98589 username abbasaskari 98589 mac 98589 bytes_out 0 98589 bytes_in 0 98589 station_ip 83.123.245.200 98589 port 11 98589 unique_id port 98589 remote_ip 10.8.0.94 98590 username amir 98590 mac 98590 bytes_out 0 98590 bytes_in 0 98590 station_ip 46.225.214.162 98590 port 11 98590 unique_id port 98590 remote_ip 10.8.0.54 98599 username khalili 98599 kill_reason Another user logged on this global unique id 98599 mac 98599 bytes_out 0 98599 bytes_in 0 98599 station_ip 5.119.219.58 98599 port 2 98599 unique_id port 98603 username amir 98603 mac 98603 bytes_out 0 98603 bytes_in 0 98603 station_ip 46.225.214.162 98603 port 14 98603 unique_id port 98603 remote_ip 10.8.0.54 98604 username khalili 98604 kill_reason Another user logged on this global unique id 98604 mac 98604 bytes_out 0 98604 bytes_in 0 98604 station_ip 5.119.219.58 98604 port 2 98604 unique_id port 98606 username asadi 98606 mac 98606 bytes_out 0 98606 bytes_in 0 98606 station_ip 113.203.58.153 98606 port 17 98606 unique_id port 98606 remote_ip 10.8.0.50 98612 username tahmasebi 98612 kill_reason Another user logged on this global unique id 98612 mac 98612 bytes_out 0 98612 bytes_in 0 98612 station_ip 5.119.235.198 98612 port 11 98612 unique_id port 98612 remote_ip 10.8.0.66 98615 username asadi 98615 kill_reason Another user logged on this global unique id 98615 mac 98615 bytes_out 0 98615 bytes_in 0 98615 station_ip 113.203.58.153 98615 port 14 98615 unique_id port 98615 remote_ip 10.8.0.50 98623 username tahmasebi 98623 kill_reason Another user logged on this global unique id 98623 mac 98623 bytes_out 0 98623 bytes_in 0 98623 station_ip 5.119.235.198 98623 port 11 98623 unique_id port 98624 username asadi 98624 mac 98624 bytes_out 0 98624 bytes_in 0 98624 station_ip 113.203.58.153 98624 port 14 98624 unique_id port 98626 username amir 98626 mac 98626 bytes_out 29812 98626 bytes_in 25061 98626 station_ip 46.225.214.162 98626 port 8 98626 unique_id port 98626 remote_ip 10.8.1.34 98628 username amir 98628 mac 98628 bytes_out 0 98628 bytes_in 0 98628 station_ip 46.225.214.162 98628 port 8 98628 unique_id port 98628 remote_ip 10.8.1.34 98631 username forozande 98631 mac 98602 remote_ip 5.5.5.103 98605 username amir 98605 mac 98605 bytes_out 0 98605 bytes_in 0 98605 station_ip 46.225.214.162 98605 port 8 98605 unique_id port 98605 remote_ip 10.8.1.34 98607 username amir 98607 mac 98607 bytes_out 0 98607 bytes_in 0 98607 station_ip 46.225.214.162 98607 port 14 98607 unique_id port 98607 remote_ip 10.8.0.54 98609 username amir 98609 mac 98609 bytes_out 0 98609 bytes_in 0 98609 station_ip 46.225.214.162 98609 port 8 98609 unique_id port 98609 remote_ip 10.8.1.34 98610 username asadi 98610 mac 98610 bytes_out 0 98610 bytes_in 0 98610 station_ip 113.203.58.153 98610 port 18 98610 unique_id port 98610 remote_ip 10.8.0.50 98611 username amir 98611 mac 98611 bytes_out 0 98611 bytes_in 0 98611 station_ip 46.225.214.162 98611 port 8 98611 unique_id port 98611 remote_ip 10.8.1.34 98613 username amir 98613 mac 98613 bytes_out 0 98613 bytes_in 0 98613 station_ip 46.225.214.162 98613 port 8 98613 unique_id port 98613 remote_ip 10.8.1.34 98617 username khalili 98617 kill_reason Another user logged on this global unique id 98617 mac 98617 bytes_out 0 98617 bytes_in 0 98617 station_ip 5.119.219.58 98617 port 2 98617 unique_id port 98618 username asadi 98618 kill_reason Another user logged on this global unique id 98618 mac 98618 bytes_out 0 98618 bytes_in 0 98618 station_ip 113.203.58.153 98618 port 14 98618 unique_id port 98620 username asadi 98620 kill_reason Another user logged on this global unique id 98620 mac 98620 bytes_out 0 98620 bytes_in 0 98620 station_ip 113.203.58.153 98620 port 14 98620 unique_id port 98621 username aminvpn 98621 unique_id port 98621 terminate_cause Lost-Carrier 98621 bytes_out 8898550 98621 bytes_in 140974562 98621 station_ip 5.119.64.82 98621 port 15729144 98621 nas_port_type Virtual 98621 remote_ip 5.5.5.105 98625 username amir 98625 kill_reason Maximum check online fails reached 98625 mac 98625 bytes_out 0 98625 bytes_in 0 98625 station_ip 46.225.214.162 98625 port 17 98625 unique_id port 98627 username amir 98627 mac 98627 bytes_out 0 98627 bytes_in 0 98627 station_ip 46.225.214.162 98627 port 8 98627 unique_id port 98627 remote_ip 10.8.1.34 98634 username amir 98634 mac 98634 bytes_out 0 98634 bytes_in 0 98634 station_ip 46.225.214.162 98634 port 14 98634 unique_id port 98634 remote_ip 10.8.0.54 98636 username tahmasebi 98636 kill_reason Another user logged on this global unique id 98636 mac 98636 bytes_out 0 98636 bytes_in 0 98636 station_ip 5.119.235.198 98636 port 11 98636 unique_id port 98638 username tahmasebi 98638 kill_reason Another user logged on this global unique id 98638 mac 98638 bytes_out 0 98638 bytes_in 0 98638 station_ip 5.119.235.198 98638 port 11 98638 unique_id port 98646 username mahbobeh 98646 unique_id port 98646 terminate_cause Lost-Carrier 98646 bytes_out 20378941 98646 bytes_in 63124534 98646 station_ip 83.123.23.185 98646 port 15729147 98646 nas_port_type Virtual 98646 remote_ip 5.5.5.119 98650 username aminvpn 98650 kill_reason Another user logged on this global unique id 98650 mac 98650 bytes_out 0 98650 bytes_in 0 98650 station_ip 83.123.227.175 98650 port 18 98650 unique_id port 98650 remote_ip 10.8.0.6 98653 username tahmasebi 98653 kill_reason Another user logged on this global unique id 98653 mac 98653 bytes_out 0 98653 bytes_in 0 98653 station_ip 5.119.235.198 98653 port 11 98653 unique_id port 98654 username amir 98654 mac 98654 bytes_out 0 98608 remote_ip 10.8.0.54 98614 username amir 98614 mac 98614 bytes_out 0 98614 bytes_in 0 98614 station_ip 46.225.214.162 98614 port 8 98614 unique_id port 98614 remote_ip 10.8.1.34 98616 username amir 98616 mac 98616 bytes_out 0 98616 bytes_in 0 98616 station_ip 46.225.214.162 98616 port 17 98616 unique_id port 98616 remote_ip 10.8.0.54 98619 username aminvpn 98619 mac 98619 bytes_out 145848 98619 bytes_in 507080 98619 station_ip 83.123.12.30 98619 port 17 98619 unique_id port 98619 remote_ip 10.8.0.6 98622 username amir 98622 mac 98622 bytes_out 0 98622 bytes_in 0 98622 station_ip 46.225.214.162 98622 port 17 98622 unique_id port 98622 remote_ip 10.8.0.54 98629 username tahmasebi 98629 kill_reason Another user logged on this global unique id 98629 mac 98629 bytes_out 0 98629 bytes_in 0 98629 station_ip 5.119.235.198 98629 port 11 98629 unique_id port 98630 username amir 98630 mac 98630 bytes_out 0 98630 bytes_in 0 98630 station_ip 46.225.214.162 98630 port 9 98630 unique_id port 98630 remote_ip 10.8.1.34 98637 username khalili 98637 kill_reason Another user logged on this global unique id 98637 mac 98637 bytes_out 0 98637 bytes_in 0 98637 station_ip 5.119.219.58 98637 port 2 98637 unique_id port 98639 username asadi 98639 mac 98639 bytes_out 78124 98639 bytes_in 76294 98639 station_ip 113.203.58.153 98639 port 18 98639 unique_id port 98639 remote_ip 10.8.0.50 98640 username amir 98640 mac 98640 bytes_out 39365 98640 bytes_in 24999 98640 station_ip 46.225.214.162 98640 port 16 98640 unique_id port 98640 remote_ip 10.8.0.54 98643 username amir 98643 mac 98643 bytes_out 0 98643 bytes_in 0 98643 station_ip 46.225.214.162 98643 port 8 98643 unique_id port 98643 remote_ip 10.8.1.34 98644 username amir 98644 kill_reason Maximum check online fails reached 98644 mac 98644 bytes_out 0 98644 bytes_in 0 98644 station_ip 46.225.214.162 98644 port 16 98644 unique_id port 98651 username khalili 98651 kill_reason Another user logged on this global unique id 98651 mac 98651 bytes_out 0 98651 bytes_in 0 98651 station_ip 5.119.219.58 98651 port 2 98651 unique_id port 98656 username asadi 98656 mac 98656 bytes_out 0 98656 bytes_in 0 98656 station_ip 113.203.58.153 98656 port 14 98656 unique_id port 98656 remote_ip 10.8.0.50 98657 username tahmasebi 98657 kill_reason Another user logged on this global unique id 98657 mac 98657 bytes_out 0 98657 bytes_in 0 98657 station_ip 5.119.235.198 98657 port 11 98657 unique_id port 98659 username forozande 98659 kill_reason Another user logged on this global unique id 98659 mac 98659 bytes_out 0 98659 bytes_in 0 98659 station_ip 83.122.93.220 98659 port 19 98659 unique_id port 98659 remote_ip 10.8.0.74 98660 username madadi2 98660 mac 98660 bytes_out 0 98660 bytes_in 0 98660 station_ip 5.120.40.202 98660 port 14 98660 unique_id port 98660 remote_ip 10.8.0.26 98662 username mohammadreza 98662 mac 98662 bytes_out 72029 98662 bytes_in 171807 98662 station_ip 2.183.133.196 98662 port 8 98662 unique_id port 98662 remote_ip 10.8.1.10 98667 username amir 98667 mac 98667 bytes_out 0 98667 bytes_in 0 98667 station_ip 46.225.214.162 98667 port 9 98667 unique_id port 98667 remote_ip 10.8.1.34 98670 username aminvpn 98670 mac 98670 bytes_out 0 98670 bytes_in 0 98670 station_ip 83.123.227.175 98670 port 18 98670 unique_id port 98672 username amir 98631 bytes_out 1693553 98631 bytes_in 18448714 98631 station_ip 83.122.116.58 98631 port 16 98631 unique_id port 98631 remote_ip 10.8.0.74 98632 username amir 98632 mac 98632 bytes_out 0 98632 bytes_in 0 98632 station_ip 46.225.214.162 98632 port 14 98632 unique_id port 98632 remote_ip 10.8.0.54 98633 username amir 98633 mac 98633 bytes_out 0 98633 bytes_in 0 98633 station_ip 46.225.214.162 98633 port 14 98633 unique_id port 98633 remote_ip 10.8.0.54 98635 username mohammadreza 98635 mac 98635 bytes_out 0 98635 bytes_in 0 98635 station_ip 5.233.46.203 98635 port 8 98635 unique_id port 98635 remote_ip 10.8.1.10 98641 username mohammadreza 98641 mac 98641 bytes_out 0 98641 bytes_in 0 98641 station_ip 2.183.130.106 98641 port 8 98641 unique_id port 98641 remote_ip 10.8.1.10 98642 username amir 98642 mac 98642 bytes_out 19875 98642 bytes_in 36740 98642 station_ip 46.225.214.162 98642 port 16 98642 unique_id port 98642 remote_ip 10.8.0.54 98645 username amir 98645 mac 98645 bytes_out 0 98645 bytes_in 0 98645 station_ip 46.225.214.162 98645 port 18 98645 unique_id port 98645 remote_ip 10.8.0.54 98647 username tahmasebi 98647 kill_reason Another user logged on this global unique id 98647 mac 98647 bytes_out 0 98647 bytes_in 0 98647 station_ip 5.119.235.198 98647 port 11 98647 unique_id port 98648 username mohammadreza 98648 mac 98648 bytes_out 0 98648 bytes_in 0 98648 station_ip 78.39.127.49 98648 port 9 98648 unique_id port 98648 remote_ip 10.8.1.10 98649 username khalili 98649 kill_reason Another user logged on this global unique id 98649 mac 98649 bytes_out 0 98649 bytes_in 0 98649 station_ip 5.119.219.58 98649 port 2 98649 unique_id port 98652 username asadi 98652 mac 98652 bytes_out 0 98652 bytes_in 0 98652 station_ip 113.203.58.153 98652 port 14 98652 unique_id port 98652 remote_ip 10.8.0.50 98655 username amir 98655 mac 98655 bytes_out 0 98655 bytes_in 0 98655 station_ip 46.225.214.162 98655 port 20 98655 unique_id port 98655 remote_ip 10.8.0.54 98658 username khalili 98658 kill_reason Another user logged on this global unique id 98658 mac 98658 bytes_out 0 98658 bytes_in 0 98658 station_ip 5.119.219.58 98658 port 2 98658 unique_id port 98661 username mirzaei 98661 kill_reason Another user logged on this global unique id 98661 mac 98661 bytes_out 0 98661 bytes_in 0 98661 station_ip 5.120.111.133 98661 port 12 98661 unique_id port 98666 username forozande 98666 mac 98666 bytes_out 0 98666 bytes_in 0 98666 station_ip 83.122.93.220 98666 port 19 98666 unique_id port 98668 username aminvpn 98668 kill_reason Another user logged on this global unique id 98668 mac 98668 bytes_out 0 98668 bytes_in 0 98668 station_ip 83.123.227.175 98668 port 18 98668 unique_id port 98674 username askari 98674 kill_reason Another user logged on this global unique id 98674 mac 98674 bytes_out 0 98674 bytes_in 0 98674 station_ip 5.119.185.35 98674 port 18 98674 unique_id port 98674 remote_ip 10.8.0.38 98682 username khalili 98682 mac 98682 bytes_out 0 98682 bytes_in 0 98682 station_ip 5.119.219.58 98682 port 2 98682 unique_id port 98684 username tahmasebi 98684 kill_reason Another user logged on this global unique id 98684 mac 98684 bytes_out 0 98684 bytes_in 0 98684 station_ip 5.119.235.198 98684 port 11 98684 unique_id port 98688 username aminvpn 98688 unique_id port 98688 terminate_cause Lost-Carrier 98688 bytes_out 4298175 98654 bytes_in 0 98654 station_ip 46.225.214.162 98654 port 20 98654 unique_id port 98654 remote_ip 10.8.0.54 98663 username asadi 98663 mac 98663 bytes_out 0 98663 bytes_in 0 98663 station_ip 113.203.58.153 98663 port 9 98663 unique_id port 98663 remote_ip 10.8.1.42 98664 username amir 98664 mac 98664 bytes_out 0 98664 bytes_in 0 98664 station_ip 46.225.214.162 98664 port 14 98664 unique_id port 98664 remote_ip 10.8.0.54 98665 username amir 98665 mac 98665 bytes_out 0 98665 bytes_in 0 98665 station_ip 46.225.214.162 98665 port 14 98665 unique_id port 98665 remote_ip 10.8.0.54 98669 username amir 98669 mac 98669 bytes_out 0 98669 bytes_in 0 98669 station_ip 46.225.214.162 98669 port 19 98669 unique_id port 98669 remote_ip 10.8.0.54 98671 username askari 98671 mac 98671 bytes_out 0 98671 bytes_in 0 98671 station_ip 5.119.185.35 98671 port 18 98671 unique_id port 98671 remote_ip 10.8.0.38 98673 username mohammadmahdi 98673 kill_reason Another user logged on this global unique id 98673 mac 98673 bytes_out 0 98673 bytes_in 0 98673 station_ip 5.120.184.236 98673 port 19 98673 unique_id port 98673 remote_ip 10.8.0.34 98675 username askari 98675 kill_reason Another user logged on this global unique id 98675 mac 98675 bytes_out 0 98675 bytes_in 0 98675 station_ip 5.119.185.35 98675 port 18 98675 unique_id port 98676 username askari 98676 mac 98676 bytes_out 0 98676 bytes_in 0 98676 station_ip 5.119.185.35 98676 port 18 98676 unique_id port 98678 username mohammadmahdi 98678 mac 98678 bytes_out 0 98678 bytes_in 0 98678 station_ip 5.120.184.236 98678 port 19 98678 unique_id port 98679 username amir 98679 mac 98679 bytes_out 0 98679 bytes_in 0 98679 station_ip 46.225.214.162 98679 port 19 98679 unique_id port 98679 remote_ip 10.8.0.54 98683 username amir 98683 mac 98683 bytes_out 0 98683 bytes_in 0 98683 station_ip 46.225.214.162 98683 port 19 98683 unique_id port 98683 remote_ip 10.8.0.54 98685 username mohammadreza 98685 mac 98685 bytes_out 0 98685 bytes_in 0 98685 station_ip 94.176.13.47 98685 port 8 98685 unique_id port 98685 remote_ip 10.8.1.10 98686 username askari 98686 mac 98686 bytes_out 0 98686 bytes_in 0 98686 station_ip 5.119.185.35 98686 port 18 98686 unique_id port 98687 username madadi2 98687 mac 98687 bytes_out 0 98687 bytes_in 0 98687 station_ip 5.119.165.255 98687 port 2 98687 unique_id port 98687 remote_ip 10.8.0.26 98691 username tahmasebi 98691 kill_reason Another user logged on this global unique id 98691 mac 98691 bytes_out 0 98691 bytes_in 0 98691 station_ip 5.119.235.198 98691 port 11 98691 unique_id port 98693 username askari 98693 mac 98693 bytes_out 0 98693 bytes_in 0 98693 station_ip 5.119.185.35 98693 port 8 98693 unique_id port 98693 remote_ip 10.8.1.30 98694 username tahmasebi 98694 mac 98694 bytes_out 0 98694 bytes_in 0 98694 station_ip 5.119.235.198 98694 port 11 98694 unique_id port 98695 username mahdixz 98695 unique_id port 98695 terminate_cause User-Request 98695 bytes_out 0 98695 bytes_in 0 98695 station_ip 5.119.218.64 98695 port 15729151 98695 nas_port_type Virtual 98695 remote_ip 5.5.5.101 98697 username askari 98697 mac 98697 bytes_out 15188 98697 bytes_in 15494 98697 station_ip 5.120.147.153 98697 port 10 98697 unique_id port 98697 remote_ip 10.8.1.30 98699 username mohammadreza 98672 mac 98672 bytes_out 0 98672 bytes_in 0 98672 station_ip 46.225.214.162 98672 port 22 98672 unique_id port 98672 remote_ip 10.8.0.54 98677 username madadi2 98677 mac 98677 bytes_out 0 98677 bytes_in 0 98677 station_ip 5.119.181.11 98677 port 22 98677 unique_id port 98677 remote_ip 10.8.0.26 98680 username tahmasebi 98680 kill_reason Another user logged on this global unique id 98680 mac 98680 bytes_out 0 98680 bytes_in 0 98680 station_ip 5.119.235.198 98680 port 11 98680 unique_id port 98681 username askari 98681 kill_reason Another user logged on this global unique id 98681 mac 98681 bytes_out 0 98681 bytes_in 0 98681 station_ip 5.119.185.35 98681 port 18 98681 unique_id port 98681 remote_ip 10.8.0.38 98689 username ahmadipour 98689 unique_id port 98689 terminate_cause Lost-Carrier 98689 bytes_out 1062006 98689 bytes_in 15705158 98689 station_ip 37.129.208.199 98689 port 15729150 98689 nas_port_type Virtual 98689 remote_ip 5.5.5.102 98698 username forozande 98698 mac 98698 bytes_out 104906 98698 bytes_in 248317 98698 station_ip 83.123.12.15 98698 port 11 98698 unique_id port 98698 remote_ip 10.8.0.74 98702 username amir 98702 mac 98702 bytes_out 0 98702 bytes_in 0 98702 station_ip 46.225.214.162 98702 port 2 98702 unique_id port 98702 remote_ip 10.8.0.54 98708 username forozande 98708 mac 98708 bytes_out 405518 98708 bytes_in 2775731 98708 station_ip 37.129.197.92 98708 port 2 98708 unique_id port 98708 remote_ip 10.8.0.74 98710 username jamali 98710 mac 98710 bytes_out 79972 98710 bytes_in 168668 98710 station_ip 5.120.49.25 98710 port 14 98710 unique_id port 98710 remote_ip 10.8.0.62 98712 username askari 98712 mac 98712 bytes_out 0 98712 bytes_in 0 98712 station_ip 5.119.153.4 98712 port 9 98712 unique_id port 98712 remote_ip 10.8.1.30 98719 username amir 98719 mac 98719 bytes_out 0 98719 bytes_in 0 98719 station_ip 46.225.214.162 98719 port 19 98719 unique_id port 98719 remote_ip 10.8.0.54 98721 username abbasaskari 98721 mac 98721 bytes_out 0 98721 bytes_in 0 98721 station_ip 83.123.237.224 98721 port 18 98721 unique_id port 98721 remote_ip 10.8.0.94 98722 username forozande 98722 mac 98722 bytes_out 0 98722 bytes_in 0 98722 station_ip 83.122.75.142 98722 port 2 98722 unique_id port 98722 remote_ip 10.8.0.74 98727 username amirhosein 98727 unique_id port 98727 terminate_cause User-Request 98727 bytes_out 79615 98727 bytes_in 62358 98727 station_ip 83.123.217.128 98727 port 15729155 98727 nas_port_type Virtual 98727 remote_ip 5.5.5.99 98728 username amirhosein 98728 unique_id port 98728 terminate_cause User-Request 98728 bytes_out 30283 98728 bytes_in 58394 98728 station_ip 83.123.217.128 98728 port 15729156 98728 nas_port_type Virtual 98728 remote_ip 5.5.5.99 98732 username amir 98732 mac 98732 bytes_out 0 98732 bytes_in 0 98732 station_ip 46.225.214.162 98732 port 14 98732 unique_id port 98732 remote_ip 10.8.0.54 98737 username jamali 98737 mac 98737 bytes_out 0 98737 bytes_in 0 98737 station_ip 5.120.49.25 98737 port 19 98737 unique_id port 98737 remote_ip 10.8.0.62 98739 username askari 98739 mac 98739 bytes_out 0 98739 bytes_in 0 98739 station_ip 5.120.43.41 98739 port 9 98739 unique_id port 98742 username amirhosein 98742 unique_id port 98742 terminate_cause User-Request 98742 bytes_out 19841 98742 bytes_in 53006 98742 station_ip 83.123.217.128 98742 port 15729157 98688 bytes_in 98056635 98688 station_ip 5.119.64.82 98688 port 15729149 98688 nas_port_type Virtual 98688 remote_ip 5.5.5.105 98690 username tahmasebi 98690 kill_reason Another user logged on this global unique id 98690 mac 98690 bytes_out 0 98690 bytes_in 0 98690 station_ip 5.119.235.198 98690 port 11 98690 unique_id port 98692 username forozande 98692 mac 98692 bytes_out 0 98692 bytes_in 0 98692 station_ip 83.122.93.220 98692 port 14 98692 unique_id port 98692 remote_ip 10.8.0.74 98696 username madadi2 98696 mac 98696 bytes_out 78124 98696 bytes_in 116185 98696 station_ip 5.120.0.81 98696 port 14 98696 unique_id port 98696 remote_ip 10.8.0.26 98700 username jamali 98700 mac 98700 bytes_out 2416195 98700 bytes_in 30495840 98700 station_ip 5.120.49.25 98700 port 11 98700 unique_id port 98700 remote_ip 10.8.0.62 98704 username amir 98704 mac 98704 bytes_out 0 98704 bytes_in 0 98704 station_ip 46.225.214.162 98704 port 2 98704 unique_id port 98704 remote_ip 10.8.0.54 98705 username amir 98705 mac 98705 bytes_out 30911 98705 bytes_in 140072 98705 station_ip 46.225.214.162 98705 port 11 98705 unique_id port 98705 remote_ip 10.8.0.54 98707 username asadi 98707 mac 98707 bytes_out 0 98707 bytes_in 0 98707 station_ip 113.203.58.153 98707 port 10 98707 unique_id port 98707 remote_ip 10.8.1.42 98711 username madadi2 98711 mac 98711 bytes_out 246472 98711 bytes_in 763578 98711 station_ip 5.119.230.94 98711 port 2 98711 unique_id port 98711 remote_ip 10.8.0.26 98713 username abbasaskari 98713 mac 98713 bytes_out 21999 98713 bytes_in 40803 98713 station_ip 83.123.237.224 98713 port 14 98713 unique_id port 98713 remote_ip 10.8.0.94 98715 username amir 98715 mac 98715 bytes_out 0 98715 bytes_in 0 98715 station_ip 46.225.214.162 98715 port 14 98715 unique_id port 98715 remote_ip 10.8.0.54 98717 username abbasaskari 98717 mac 98717 bytes_out 0 98717 bytes_in 0 98717 station_ip 83.123.237.224 98717 port 2 98717 unique_id port 98717 remote_ip 10.8.0.94 98720 username abbasaskari 98720 mac 98720 bytes_out 0 98720 bytes_in 0 98720 station_ip 83.123.237.224 98720 port 18 98720 unique_id port 98720 remote_ip 10.8.0.94 98723 username amir 98723 mac 98723 bytes_out 0 98723 bytes_in 0 98723 station_ip 46.225.214.162 98723 port 2 98723 unique_id port 98723 remote_ip 10.8.0.54 98729 username amir 98729 mac 98729 bytes_out 0 98729 bytes_in 0 98729 station_ip 46.225.214.162 98729 port 19 98729 unique_id port 98729 remote_ip 10.8.0.54 98730 username aminvpn 98730 mac 98730 bytes_out 0 98730 bytes_in 0 98730 station_ip 83.123.227.175 98730 port 14 98730 unique_id port 98730 remote_ip 10.8.0.6 98735 username forozande 98735 kill_reason Another user logged on this global unique id 98735 mac 98735 bytes_out 0 98735 bytes_in 0 98735 station_ip 83.122.100.175 98735 port 2 98735 unique_id port 98735 remote_ip 10.8.0.74 98740 username mohammadreza 98740 mac 98740 bytes_out 0 98740 bytes_in 0 98740 station_ip 94.176.8.70 98740 port 8 98740 unique_id port 98740 remote_ip 10.8.1.10 98741 username jamali 98741 mac 98741 bytes_out 0 98741 bytes_in 0 98741 station_ip 5.120.49.25 98741 port 14 98741 unique_id port 98741 remote_ip 10.8.0.62 98744 username amirhosein 98744 unique_id port 98744 terminate_cause User-Request 98744 bytes_out 0 98744 bytes_in 0 98699 mac 98699 bytes_out 0 98699 bytes_in 0 98699 station_ip 46.100.155.41 98699 port 9 98699 unique_id port 98699 remote_ip 10.8.1.10 98701 username amir 98701 mac 98701 bytes_out 0 98701 bytes_in 0 98701 station_ip 46.225.214.162 98701 port 2 98701 unique_id port 98701 remote_ip 10.8.0.54 98703 username forozande 98703 mac 98703 bytes_out 20239 98703 bytes_in 34654 98703 station_ip 83.123.127.54 98703 port 14 98703 unique_id port 98703 remote_ip 10.8.0.74 98706 username askari 98706 mac 98706 bytes_out 0 98706 bytes_in 0 98706 station_ip 5.119.153.4 98706 port 9 98706 unique_id port 98706 remote_ip 10.8.1.30 98709 username asadi 98709 mac 98709 bytes_out 1154488 98709 bytes_in 5262982 98709 station_ip 113.203.58.153 98709 port 20 98709 unique_id port 98709 remote_ip 10.8.0.50 98714 username amir 98714 mac 98714 bytes_out 0 98714 bytes_in 0 98714 station_ip 46.225.214.162 98714 port 14 98714 unique_id port 98714 remote_ip 10.8.0.54 98716 username abbasaskari 98716 mac 98716 bytes_out 0 98716 bytes_in 0 98716 station_ip 83.123.237.224 98716 port 2 98716 unique_id port 98716 remote_ip 10.8.0.94 98718 username khalili 98718 mac 98718 bytes_out 0 98718 bytes_in 0 98718 station_ip 5.119.219.58 98718 port 22 98718 unique_id port 98718 remote_ip 10.8.0.78 98724 username amir 98724 mac 98724 bytes_out 0 98724 bytes_in 0 98724 station_ip 46.225.214.162 98724 port 2 98724 unique_id port 98724 remote_ip 10.8.0.54 98725 username amirhosein 98725 unique_id port 98725 terminate_cause User-Request 98725 bytes_out 24808 98725 bytes_in 59270 98725 station_ip 83.123.217.128 98725 port 15729153 98725 nas_port_type Virtual 98725 remote_ip 5.5.5.99 98726 username amirhosein 98726 unique_id port 98726 terminate_cause User-Request 98726 bytes_out 4007 98726 bytes_in 7914 98726 station_ip 83.123.217.128 98726 port 15729154 98726 nas_port_type Virtual 98726 remote_ip 5.5.5.99 98731 username jamali 98731 mac 98731 bytes_out 0 98731 bytes_in 0 98731 station_ip 5.120.49.25 98731 port 11 98731 unique_id port 98731 remote_ip 10.8.0.62 98733 username askari 98733 kill_reason Another user logged on this global unique id 98733 mac 98733 bytes_out 0 98733 bytes_in 0 98733 station_ip 5.120.43.41 98733 port 9 98733 unique_id port 98733 remote_ip 10.8.1.30 98734 username bcboard 98734 unique_id port 98734 terminate_cause User-Request 98734 bytes_out 303588 98734 bytes_in 810788 98734 station_ip 83.123.178.54 98734 port 15729152 98734 nas_port_type Virtual 98734 remote_ip 5.5.5.100 98736 username abbasaskari 98736 mac 98736 bytes_out 137799 98736 bytes_in 1083716 98736 station_ip 83.123.237.224 98736 port 18 98736 unique_id port 98736 remote_ip 10.8.0.94 98738 username abbasaskari 98738 mac 98738 bytes_out 0 98738 bytes_in 0 98738 station_ip 83.123.237.224 98738 port 11 98738 unique_id port 98738 remote_ip 10.8.0.94 98743 username amirhosein 98743 unique_id port 98743 terminate_cause User-Request 98743 bytes_out 32135 98743 bytes_in 81718 98743 station_ip 83.123.217.128 98743 port 15729158 98743 nas_port_type Virtual 98743 remote_ip 5.5.5.99 98750 username jamali 98750 mac 98750 bytes_out 0 98750 bytes_in 0 98750 station_ip 5.120.49.25 98750 port 14 98750 unique_id port 98750 remote_ip 10.8.0.62 98766 username jamali 98766 mac 98766 bytes_out 425475 98766 bytes_in 3790800 98766 station_ip 5.120.49.25 98742 nas_port_type Virtual 98742 remote_ip 5.5.5.99 98745 username amirhosein 98745 unique_id port 98745 terminate_cause User-Request 98745 bytes_out 16116 98745 bytes_in 27677 98745 station_ip 83.123.217.128 98745 port 15729160 98745 nas_port_type Virtual 98745 remote_ip 5.5.5.99 98746 username amirhosein 98746 kill_reason Wrong password 98746 unique_id port 98746 bytes_out 0 98746 bytes_in 0 98746 station_ip 83.123.217.128 98746 port 15729161 98746 nas_port_type Virtual 98748 username forozande 98748 mac 98748 bytes_out 0 98748 bytes_in 0 98748 station_ip 83.122.100.175 98748 port 2 98748 unique_id port 98749 username amirhosein 98749 kill_reason Wrong password 98749 unique_id port 98749 bytes_out 0 98749 bytes_in 0 98749 station_ip 83.123.217.128 98749 port 15729163 98749 nas_port_type Virtual 98751 username amirhosein 98751 kill_reason Wrong password 98751 unique_id port 98751 bytes_out 0 98751 bytes_in 0 98751 station_ip 83.123.217.128 98751 port 15729164 98751 nas_port_type Virtual 98752 username amirhosein 98752 unique_id port 98752 terminate_cause User-Request 98752 bytes_out 0 98752 bytes_in 168 98752 station_ip 83.123.217.128 98752 port 15729165 98752 nas_port_type Virtual 98752 remote_ip 5.5.5.99 98753 username jamali 98753 mac 98753 bytes_out 0 98753 bytes_in 0 98753 station_ip 5.120.49.25 98753 port 2 98753 unique_id port 98753 remote_ip 10.8.0.62 98757 username arman1 98757 kill_reason Another user logged on this global unique id 98757 mac 98757 bytes_out 0 98757 bytes_in 0 98757 station_ip 5.120.49.137 98757 port 19 98757 unique_id port 98757 remote_ip 10.8.0.86 98759 username jamali 98759 mac 98759 bytes_out 11821 98759 bytes_in 13621 98759 station_ip 5.120.49.25 98759 port 2 98759 unique_id port 98759 remote_ip 10.8.0.62 98761 username madadi2 98761 mac 98761 bytes_out 44660 98761 bytes_in 93818 98761 station_ip 5.120.9.23 98761 port 14 98761 unique_id port 98761 remote_ip 10.8.0.26 98762 username mohammadreza 98762 mac 98762 bytes_out 78388 98762 bytes_in 93069 98762 station_ip 5.233.81.180 98762 port 11 98762 unique_id port 98762 remote_ip 10.8.0.18 98764 username mahdiyehalizadeh 98764 mac 98764 bytes_out 294494 98764 bytes_in 4262840 98764 station_ip 113.203.25.223 98764 port 11 98764 unique_id port 98764 remote_ip 10.8.0.42 98767 username mahdiyehalizadeh 98767 mac 98767 bytes_out 0 98767 bytes_in 0 98767 station_ip 113.203.25.223 98767 port 9 98767 unique_id port 98767 remote_ip 10.8.1.14 98768 username jamali 98768 mac 98768 bytes_out 10414 98768 bytes_in 14577 98768 station_ip 5.120.49.25 98768 port 11 98768 unique_id port 98768 remote_ip 10.8.0.62 98771 username arman1 98771 mac 98771 bytes_out 0 98771 bytes_in 0 98771 station_ip 5.120.49.137 98771 port 19 98771 unique_id port 98774 username amir 98774 mac 98774 bytes_out 0 98774 bytes_in 0 98774 station_ip 46.225.213.20 98774 port 18 98774 unique_id port 98774 remote_ip 10.8.0.54 98776 username jamali 98776 mac 98776 bytes_out 0 98776 bytes_in 0 98776 station_ip 5.120.49.25 98776 port 14 98776 unique_id port 98776 remote_ip 10.8.0.62 98778 username abbasaskari 98778 mac 98778 bytes_out 0 98778 bytes_in 0 98778 station_ip 83.123.246.84 98778 port 2 98778 unique_id port 98778 remote_ip 10.8.0.94 98783 username amir 98783 mac 98783 bytes_out 0 98783 bytes_in 0 98783 station_ip 46.225.213.20 98783 port 2 98744 station_ip 83.123.217.128 98744 port 15729159 98744 nas_port_type Virtual 98744 remote_ip 5.5.5.99 98747 username amirhosein 98747 kill_reason Wrong password 98747 unique_id port 98747 bytes_out 0 98747 bytes_in 0 98747 station_ip 83.123.217.128 98747 port 15729162 98747 nas_port_type Virtual 98754 username mohammadmahdi 98754 mac 98754 bytes_out 25938691 98754 bytes_in 42881828 98754 station_ip 113.203.85.205 98754 port 18 98754 unique_id port 98754 remote_ip 10.8.0.34 98755 username mohammadmahdi 98755 mac 98755 bytes_out 0 98755 bytes_in 0 98755 station_ip 113.203.85.205 98755 port 8 98755 unique_id port 98755 remote_ip 10.8.1.50 98756 username mirzaei 98756 kill_reason Maximum check online fails reached 98756 mac 98756 bytes_out 0 98756 bytes_in 0 98756 station_ip 5.120.111.133 98756 port 12 98756 unique_id port 98758 username jamali 98758 mac 98758 bytes_out 70854 98758 bytes_in 160378 98758 station_ip 5.120.49.25 98758 port 14 98758 unique_id port 98758 remote_ip 10.8.0.62 98760 username arman1 98760 kill_reason Another user logged on this global unique id 98760 mac 98760 bytes_out 0 98760 bytes_in 0 98760 station_ip 5.120.49.137 98760 port 19 98760 unique_id port 98763 username jamali 98763 mac 98763 bytes_out 17018 98763 bytes_in 20609 98763 station_ip 5.120.49.25 98763 port 2 98763 unique_id port 98763 remote_ip 10.8.0.62 98765 username jamali 98765 mac 98765 bytes_out 41633 98765 bytes_in 67764 98765 station_ip 5.120.49.25 98765 port 14 98765 unique_id port 98765 remote_ip 10.8.0.62 98775 username alirezaza 98775 kill_reason Wrong password 98775 unique_id port 98775 bytes_out 0 98775 bytes_in 0 98775 station_ip 5.119.33.212 98775 port 15729175 98775 nas_port_type Virtual 98777 username aminvpn 98777 mac 98777 bytes_out 220328 98777 bytes_in 890323 98777 station_ip 37.129.152.60 98777 port 11 98777 unique_id port 98777 remote_ip 10.8.0.6 98779 username amir 98779 mac 98779 bytes_out 0 98779 bytes_in 0 98779 station_ip 46.225.213.20 98779 port 2 98779 unique_id port 98779 remote_ip 10.8.0.54 98780 username forozande 98780 mac 98780 bytes_out 0 98780 bytes_in 0 98780 station_ip 37.129.213.180 98780 port 11 98780 unique_id port 98780 remote_ip 10.8.0.74 98784 username jamali 98784 mac 98784 bytes_out 96717 98784 bytes_in 360655 98784 station_ip 5.120.49.25 98784 port 14 98784 unique_id port 98784 remote_ip 10.8.0.62 98789 username bcboard 98789 unique_id port 98789 terminate_cause Lost-Carrier 98789 bytes_out 5593663 98789 bytes_in 89193626 98789 station_ip 83.123.121.202 98789 port 15729177 98789 nas_port_type Virtual 98789 remote_ip 5.5.5.96 98790 username amir 98790 mac 98790 bytes_out 0 98790 bytes_in 0 98790 station_ip 46.225.213.20 98790 port 11 98790 unique_id port 98790 remote_ip 10.8.0.54 98792 username farhad1 98792 unique_id port 98792 terminate_cause User-Request 98792 bytes_out 0 98792 bytes_in 0 98792 station_ip 5.120.32.197 98792 port 15729182 98792 nas_port_type Virtual 98792 remote_ip 5.5.5.94 98793 username jamali 98793 mac 98793 bytes_out 20673 98793 bytes_in 25305 98793 station_ip 5.120.49.25 98793 port 2 98793 unique_id port 98793 remote_ip 10.8.0.62 98798 username mohammadmahdi 98798 kill_reason Another user logged on this global unique id 98798 mac 98798 bytes_out 0 98798 bytes_in 0 98798 station_ip 113.203.80.65 98798 port 14 98798 unique_id port 98798 remote_ip 10.8.0.34 98799 username farhad1 98766 port 2 98766 unique_id port 98766 remote_ip 10.8.0.62 98769 username amir 98769 mac 98769 bytes_out 0 98769 bytes_in 0 98769 station_ip 46.225.213.20 98769 port 11 98769 unique_id port 98769 remote_ip 10.8.0.54 98770 username jamali 98770 mac 98770 bytes_out 0 98770 bytes_in 0 98770 station_ip 5.120.49.25 98770 port 2 98770 unique_id port 98770 remote_ip 10.8.0.62 98772 username amir 98772 mac 98772 bytes_out 0 98772 bytes_in 0 98772 station_ip 46.225.213.20 98772 port 2 98772 unique_id port 98772 remote_ip 10.8.0.54 98773 username mohammadreza 98773 mac 98773 bytes_out 48525 98773 bytes_in 47296 98773 station_ip 5.233.46.39 98773 port 8 98773 unique_id port 98773 remote_ip 10.8.1.10 98781 username alirr 98781 unique_id port 98781 terminate_cause Lost-Carrier 98781 bytes_out 571839 98781 bytes_in 119137 98781 station_ip 5.119.33.212 98781 port 15729176 98781 nas_port_type Virtual 98781 remote_ip 5.5.5.97 98782 username mammad 98782 unique_id port 98782 terminate_cause User-Request 98782 bytes_out 0 98782 bytes_in 0 98782 station_ip 83.123.151.240 98782 port 15729178 98782 nas_port_type Virtual 98782 remote_ip 5.5.5.95 98785 username morteza 98785 mac 98785 bytes_out 0 98785 bytes_in 0 98785 station_ip 83.122.135.37 98785 port 11 98785 unique_id port 98785 remote_ip 10.8.0.90 98788 username hoorieh 98788 mac 98788 bytes_out 751628 98788 bytes_in 2812854 98788 station_ip 5.124.126.48 98788 port 14 98788 unique_id port 98788 remote_ip 10.8.0.10 98791 username jamali 98791 mac 98791 bytes_out 321127 98791 bytes_in 2783030 98791 station_ip 5.120.49.25 98791 port 2 98791 unique_id port 98791 remote_ip 10.8.0.62 98797 username farhad1 98797 kill_reason Wrong password 98797 mac 98797 bytes_out 0 98797 bytes_in 0 98797 station_ip 5.120.139.155 98797 port 18 98797 unique_id port 98802 username aminvpn 98802 unique_id port 98802 terminate_cause User-Request 98802 bytes_out 0 98802 bytes_in 0 98802 station_ip 5.120.32.228 98802 port 15729184 98802 nas_port_type Virtual 98802 remote_ip 5.5.5.92 98803 username alireza1 98803 unique_id port 98803 terminate_cause User-Request 98803 bytes_out 0 98803 bytes_in 0 98803 station_ip 5.119.82.245 98803 port 15729185 98803 nas_port_type Virtual 98803 remote_ip 5.5.5.91 98804 username morteza 98804 mac 98804 bytes_out 0 98804 bytes_in 0 98804 station_ip 83.122.177.125 98804 port 22 98804 unique_id port 98804 remote_ip 10.8.0.90 98808 username aminvpn 98808 unique_id port 98808 terminate_cause User-Request 98808 bytes_out 0 98808 bytes_in 0 98808 station_ip 5.120.32.228 98808 port 15729186 98808 nas_port_type Virtual 98808 remote_ip 5.5.5.90 98809 username aminvpn 98809 unique_id port 98809 terminate_cause User-Request 98809 bytes_out 269025 98809 bytes_in 2810773 98809 station_ip 5.120.32.228 98809 port 15729187 98809 nas_port_type Virtual 98809 remote_ip 5.5.5.90 98811 username aminvpn 98811 unique_id port 98811 terminate_cause User-Request 98811 bytes_out 10607695 98811 bytes_in 240328023 98811 station_ip 5.120.32.228 98811 port 15729174 98811 nas_port_type Virtual 98811 remote_ip 5.5.5.98 98814 username bcboard 98814 unique_id port 98814 terminate_cause Lost-Carrier 98814 bytes_out 115858 98814 bytes_in 105728 98814 station_ip 83.123.121.202 98814 port 15729189 98814 nas_port_type Virtual 98814 remote_ip 5.5.5.96 98818 username amir 98818 mac 98818 bytes_out 2441200 98818 bytes_in 10780149 98783 unique_id port 98783 remote_ip 10.8.0.54 98786 username amir 98786 mac 98786 bytes_out 25455 98786 bytes_in 76051 98786 station_ip 46.225.213.20 98786 port 11 98786 unique_id port 98786 remote_ip 10.8.0.54 98787 username mohammadreza 98787 mac 98787 bytes_out 33511 98787 bytes_in 38295 98787 station_ip 5.233.47.217 98787 port 8 98787 unique_id port 98787 remote_ip 10.8.1.10 98794 username jamali 98794 mac 98794 bytes_out 0 98794 bytes_in 0 98794 station_ip 5.120.49.25 98794 port 18 98794 unique_id port 98794 remote_ip 10.8.0.62 98795 username amir 98795 mac 98795 bytes_out 0 98795 bytes_in 0 98795 station_ip 46.225.213.20 98795 port 18 98795 unique_id port 98795 remote_ip 10.8.0.54 98796 username farhad1 98796 kill_reason Wrong password 98796 mac 98796 bytes_out 0 98796 bytes_in 0 98796 station_ip 5.120.139.155 98796 port 18 98796 unique_id port 98805 username forozande 98805 mac 98805 bytes_out 638943 98805 bytes_in 5249046 98805 station_ip 37.129.193.250 98805 port 19 98805 unique_id port 98805 remote_ip 10.8.0.74 98806 username madadi2 98806 mac 98806 bytes_out 203955 98806 bytes_in 470190 98806 station_ip 5.120.62.234 98806 port 22 98806 unique_id port 98806 remote_ip 10.8.0.26 98810 username aminvpn 98810 unique_id port 98810 terminate_cause User-Request 98810 bytes_out 51297 98810 bytes_in 1065 98810 station_ip 5.120.32.228 98810 port 15729188 98810 nas_port_type Virtual 98810 remote_ip 5.5.5.90 98819 username jamali 98819 mac 98819 bytes_out 0 98819 bytes_in 0 98819 station_ip 5.120.49.25 98819 port 8 98819 unique_id port 98819 remote_ip 10.8.1.54 98821 username amir 98821 mac 98821 bytes_out 0 98821 bytes_in 0 98821 station_ip 46.225.213.20 98821 port 12 98821 unique_id port 98821 remote_ip 10.8.0.54 98825 username ahmadi 98825 unique_id port 98825 terminate_cause Lost-Carrier 98825 bytes_out 338137 98825 bytes_in 637319 98825 station_ip 37.129.57.3 98825 port 15729194 98825 nas_port_type Virtual 98825 remote_ip 5.5.5.87 98827 username jamali 98827 mac 98827 bytes_out 198434 98827 bytes_in 726622 98827 station_ip 5.120.49.25 98827 port 8 98827 unique_id port 98827 remote_ip 10.8.1.54 98828 username sobhan 98828 unique_id port 98828 terminate_cause User-Request 98828 bytes_out 0 98828 bytes_in 0 98828 station_ip 5.120.151.147 98828 port 15729195 98828 nas_port_type Virtual 98828 remote_ip 5.5.5.86 98833 username aminvpn 98833 kill_reason Another user logged on this global unique id 98833 mac 98833 bytes_out 0 98833 bytes_in 0 98833 station_ip 37.129.20.121 98833 port 12 98833 unique_id port 98833 remote_ip 10.8.0.6 98834 username jamali 98834 mac 98834 bytes_out 0 98834 bytes_in 0 98834 station_ip 5.120.49.25 98834 port 8 98834 unique_id port 98834 remote_ip 10.8.1.54 98836 username amir 98836 mac 98836 bytes_out 0 98836 bytes_in 0 98836 station_ip 46.225.213.20 98836 port 18 98836 unique_id port 98836 remote_ip 10.8.0.54 98837 username aminvpn 98837 kill_reason Another user logged on this global unique id 98837 mac 98837 bytes_out 0 98837 bytes_in 0 98837 station_ip 37.129.20.121 98837 port 12 98837 unique_id port 98841 username aminvpn 98841 kill_reason Another user logged on this global unique id 98841 mac 98841 bytes_out 0 98841 bytes_in 0 98841 station_ip 37.129.20.121 98841 port 12 98841 unique_id port 98842 username bcboard 98842 unique_id port 98842 terminate_cause Lost-Carrier 98799 kill_reason Wrong password 98799 mac 98799 bytes_out 0 98799 bytes_in 0 98799 station_ip 5.120.139.155 98799 port 18 98799 unique_id port 98800 username amir 98800 mac 98800 bytes_out 0 98800 bytes_in 0 98800 station_ip 46.225.213.20 98800 port 19 98800 unique_id port 98800 remote_ip 10.8.0.54 98801 username mohammadmahdi 98801 mac 98801 bytes_out 0 98801 bytes_in 0 98801 station_ip 113.203.80.65 98801 port 14 98801 unique_id port 98807 username shahrooz 98807 unique_id port 98807 terminate_cause Lost-Carrier 98807 bytes_out 16782 98807 bytes_in 46178 98807 station_ip 83.123.106.172 98807 port 15729183 98807 nas_port_type Virtual 98807 remote_ip 5.5.5.93 98812 username jamali 98812 mac 98812 bytes_out 683719 98812 bytes_in 4969099 98812 station_ip 5.120.49.25 98812 port 2 98812 unique_id port 98812 remote_ip 10.8.0.62 98813 username jamali 98813 mac 98813 bytes_out 16466 98813 bytes_in 19547 98813 station_ip 5.120.49.25 98813 port 12 98813 unique_id port 98813 remote_ip 10.8.0.62 98815 username farhad1 98815 mac 98815 bytes_out 2939581 98815 bytes_in 25039661 98815 station_ip 5.120.139.155 98815 port 18 98815 unique_id port 98815 remote_ip 10.8.0.102 98816 username farhad1 98816 mac 98816 bytes_out 80036 98816 bytes_in 109985 98816 station_ip 5.120.139.155 98816 port 2 98816 unique_id port 98816 remote_ip 10.8.0.102 98817 username jamali 98817 mac 98817 bytes_out 70212 98817 bytes_in 90376 98817 station_ip 5.120.49.25 98817 port 8 98817 unique_id port 98817 remote_ip 10.8.1.54 98820 username amir 98820 mac 98820 bytes_out 0 98820 bytes_in 0 98820 station_ip 46.225.213.20 98820 port 12 98820 unique_id port 98820 remote_ip 10.8.0.54 98822 username mohammadreza 98822 mac 98822 bytes_out 0 98822 bytes_in 0 98822 station_ip 2.183.151.201 98822 port 11 98822 unique_id port 98822 remote_ip 10.8.0.18 98826 username amir 98826 mac 98826 bytes_out 0 98826 bytes_in 0 98826 station_ip 46.225.213.20 98826 port 11 98826 unique_id port 98826 remote_ip 10.8.0.54 98830 username amir 98830 mac 98830 bytes_out 0 98830 bytes_in 0 98830 station_ip 46.225.213.20 98830 port 2 98830 unique_id port 98830 remote_ip 10.8.0.54 98835 username aminvpn 98835 kill_reason Another user logged on this global unique id 98835 mac 98835 bytes_out 0 98835 bytes_in 0 98835 station_ip 37.129.20.121 98835 port 12 98835 unique_id port 98838 username aminvpn 98838 kill_reason Another user logged on this global unique id 98838 mac 98838 bytes_out 0 98838 bytes_in 0 98838 station_ip 37.129.20.121 98838 port 12 98838 unique_id port 98844 username aminvpn 98844 kill_reason Another user logged on this global unique id 98844 mac 98844 bytes_out 0 98844 bytes_in 0 98844 station_ip 37.129.20.121 98844 port 12 98844 unique_id port 98850 username aminvpn 98850 kill_reason Another user logged on this global unique id 98850 mac 98850 bytes_out 0 98850 bytes_in 0 98850 station_ip 37.129.20.121 98850 port 12 98850 unique_id port 98852 username aminvpn 98852 kill_reason Another user logged on this global unique id 98852 mac 98852 bytes_out 0 98852 bytes_in 0 98852 station_ip 37.129.20.121 98852 port 12 98852 unique_id port 98864 username aminvpn 98864 kill_reason Another user logged on this global unique id 98864 mac 98864 bytes_out 0 98864 bytes_in 0 98864 station_ip 37.129.20.121 98864 port 12 98864 unique_id port 98865 username aminvpn 98818 station_ip 46.225.213.20 98818 port 14 98818 unique_id port 98818 remote_ip 10.8.0.54 98823 username khalili 98823 mac 98823 bytes_out 0 98823 bytes_in 0 98823 station_ip 5.119.219.58 98823 port 20 98823 unique_id port 98823 remote_ip 10.8.0.78 98824 username abbasaskari 98824 mac 98824 bytes_out 0 98824 bytes_in 0 98824 station_ip 83.123.176.232 98824 port 2 98824 unique_id port 98824 remote_ip 10.8.0.94 98829 username aminvpn 98829 mac 98829 bytes_out 0 98829 bytes_in 0 98829 station_ip 37.129.20.121 98829 port 2 98829 unique_id port 98829 remote_ip 10.8.0.6 98831 username aminvpn 98831 unique_id port 98831 terminate_cause Lost-Carrier 98831 bytes_out 6121608 98831 bytes_in 24918549 98831 station_ip 5.120.82.120 98831 port 15729193 98831 nas_port_type Virtual 98831 remote_ip 5.5.5.88 98832 username aminvpn 98832 unique_id port 98832 terminate_cause User-Request 98832 bytes_out 2027058 98832 bytes_in 45040627 98832 station_ip 37.129.20.121 98832 port 15729196 98832 nas_port_type Virtual 98832 remote_ip 5.5.5.85 98839 username aminvpn 98839 unique_id port 98839 terminate_cause User-Request 98839 bytes_out 22121227 98839 bytes_in 530121815 98839 station_ip 31.57.128.60 98839 port 15729191 98839 nas_port_type Virtual 98839 remote_ip 5.5.5.89 98840 username aminvpn 98840 kill_reason Another user logged on this global unique id 98840 mac 98840 bytes_out 0 98840 bytes_in 0 98840 station_ip 37.129.20.121 98840 port 12 98840 unique_id port 98846 username aminvpn 98846 kill_reason Another user logged on this global unique id 98846 mac 98846 bytes_out 0 98846 bytes_in 0 98846 station_ip 37.129.20.121 98846 port 12 98846 unique_id port 98847 username amir 98847 mac 98847 bytes_out 0 98847 bytes_in 0 98847 station_ip 46.225.213.20 98847 port 19 98847 unique_id port 98847 remote_ip 10.8.0.54 98853 username aminvpn 98853 unique_id port 98853 terminate_cause User-Request 98853 bytes_out 1669409 98853 bytes_in 25774920 98853 station_ip 31.57.128.60 98853 port 15729199 98853 nas_port_type Virtual 98853 remote_ip 5.5.5.89 98855 username farhad1 98855 kill_reason Another user logged on this global unique id 98855 mac 98855 bytes_out 0 98855 bytes_in 0 98855 station_ip 5.120.92.181 98855 port 11 98855 unique_id port 98855 remote_ip 10.8.0.102 98856 username aminvpn 98856 kill_reason Another user logged on this global unique id 98856 mac 98856 bytes_out 0 98856 bytes_in 0 98856 station_ip 37.129.20.121 98856 port 12 98856 unique_id port 98857 username khalili 98857 kill_reason Another user logged on this global unique id 98857 mac 98857 bytes_out 0 98857 bytes_in 0 98857 station_ip 5.119.219.58 98857 port 2 98857 unique_id port 98857 remote_ip 10.8.0.78 98858 username mohammadmahdi 98858 mac 98858 bytes_out 0 98858 bytes_in 0 98858 station_ip 83.123.23.245 98858 port 19 98858 unique_id port 98858 remote_ip 10.8.0.34 98861 username aminvpn 98861 kill_reason Another user logged on this global unique id 98861 mac 98861 bytes_out 0 98861 bytes_in 0 98861 station_ip 37.129.20.121 98861 port 12 98861 unique_id port 98862 username amir 98862 mac 98862 bytes_out 0 98862 bytes_in 0 98862 station_ip 46.225.213.20 98862 port 19 98862 unique_id port 98862 remote_ip 10.8.0.54 98867 username aminvpn 98867 mac 98867 bytes_out 0 98867 bytes_in 0 98867 station_ip 37.129.20.121 98867 port 19 98867 unique_id port 98867 remote_ip 10.8.0.6 98870 username amir 98870 mac 98870 bytes_out 0 98842 bytes_out 828615 98842 bytes_in 4935882 98842 station_ip 83.123.121.202 98842 port 15729192 98842 nas_port_type Virtual 98842 remote_ip 5.5.5.96 98843 username amir 98843 mac 98843 bytes_out 0 98843 bytes_in 0 98843 station_ip 46.225.213.20 98843 port 18 98843 unique_id port 98843 remote_ip 10.8.0.54 98845 username farhad1 98845 mac 98845 bytes_out 5281793 98845 bytes_in 28693517 98845 station_ip 5.119.49.208 98845 port 11 98845 unique_id port 98845 remote_ip 10.8.0.102 98848 username aminvpn 98848 kill_reason Another user logged on this global unique id 98848 mac 98848 bytes_out 0 98848 bytes_in 0 98848 station_ip 37.129.20.121 98848 port 12 98848 unique_id port 98849 username mammad 98849 unique_id port 98849 terminate_cause User-Request 98849 bytes_out 0 98849 bytes_in 0 98849 station_ip 46.100.216.233 98849 port 15729198 98849 nas_port_type Virtual 98849 remote_ip 5.5.5.83 98851 username amir 98851 mac 98851 bytes_out 0 98851 bytes_in 0 98851 station_ip 46.225.213.20 98851 port 19 98851 unique_id port 98851 remote_ip 10.8.0.54 98854 username amir 98854 mac 98854 bytes_out 0 98854 bytes_in 0 98854 station_ip 46.225.213.20 98854 port 20 98854 unique_id port 98854 remote_ip 10.8.0.54 98859 username ahmadi 98859 unique_id port 98859 terminate_cause User-Request 98859 bytes_out 604562 98859 bytes_in 10871142 98859 station_ip 83.122.234.220 98859 port 15729200 98859 nas_port_type Virtual 98859 remote_ip 5.5.5.82 98860 username ahmadipour 98860 unique_id port 98860 terminate_cause Lost-Carrier 98860 bytes_out 108744 98860 bytes_in 951996 98860 station_ip 37.129.180.67 98860 port 15729201 98860 nas_port_type Virtual 98860 remote_ip 5.5.5.81 98863 username hashtadani 98863 unique_id port 98863 terminate_cause User-Request 98863 bytes_out 276354 98863 bytes_in 5265158 98863 station_ip 37.129.221.129 98863 port 15729202 98863 nas_port_type Virtual 98863 remote_ip 5.5.5.80 98866 username aminvpn 98866 mac 98866 bytes_out 0 98866 bytes_in 0 98866 station_ip 37.129.20.121 98866 port 12 98866 unique_id port 98868 username tahmasebi 98868 kill_reason Another user logged on this global unique id 98868 mac 98868 bytes_out 0 98868 bytes_in 0 98868 station_ip 5.119.235.198 98868 port 18 98868 unique_id port 98868 remote_ip 10.8.0.66 98873 username amir 98873 mac 98873 bytes_out 0 98873 bytes_in 0 98873 station_ip 46.225.213.20 98873 port 20 98873 unique_id port 98873 remote_ip 10.8.0.54 98875 username amir 98875 mac 98875 bytes_out 0 98875 bytes_in 0 98875 station_ip 46.225.213.20 98875 port 20 98875 unique_id port 98875 remote_ip 10.8.0.54 98878 username aminvpn 98878 kill_reason Another user logged on this global unique id 98878 mac 98878 bytes_out 0 98878 bytes_in 0 98878 station_ip 37.129.20.121 98878 port 12 98878 unique_id port 98882 username madadi2 98882 mac 98882 bytes_out 0 98882 bytes_in 0 98882 station_ip 5.119.95.56 98882 port 14 98882 unique_id port 98882 remote_ip 10.8.0.26 98884 username amir 98884 mac 98884 bytes_out 0 98884 bytes_in 0 98884 station_ip 46.225.213.20 98884 port 12 98884 unique_id port 98884 remote_ip 10.8.0.54 98886 username amir 98886 mac 98886 bytes_out 0 98886 bytes_in 0 98886 station_ip 46.225.213.20 98886 port 12 98886 unique_id port 98886 remote_ip 10.8.0.54 98889 username tahmasebi 98889 mac 98889 bytes_out 0 98889 bytes_in 0 98889 station_ip 5.119.235.198 98889 port 18 98865 mac 98865 bytes_out 5126216 98865 bytes_in 48457603 98865 station_ip 5.120.21.126 98865 port 8 98865 unique_id port 98865 remote_ip 10.8.1.26 98869 username tahmasebi 98869 kill_reason Another user logged on this global unique id 98869 mac 98869 bytes_out 0 98869 bytes_in 0 98869 station_ip 5.119.235.198 98869 port 18 98869 unique_id port 98871 username amir 98871 mac 98871 bytes_out 0 98871 bytes_in 0 98871 station_ip 46.225.213.20 98871 port 20 98871 unique_id port 98871 remote_ip 10.8.0.54 98874 username tahmasebi 98874 kill_reason Another user logged on this global unique id 98874 mac 98874 bytes_out 0 98874 bytes_in 0 98874 station_ip 5.119.235.198 98874 port 18 98874 unique_id port 98876 username sobhan 98876 unique_id port 98876 terminate_cause User-Request 98876 bytes_out 2610287 98876 bytes_in 44176918 98876 station_ip 5.120.151.147 98876 port 15729197 98876 nas_port_type Virtual 98876 remote_ip 5.5.5.84 98887 username farhad1 98887 mac 98887 bytes_out 0 98887 bytes_in 0 98887 station_ip 5.120.92.181 98887 port 11 98887 unique_id port 98888 username farhad1 98888 mac 98888 bytes_out 5030543 98888 bytes_in 20865668 98888 station_ip 5.119.47.196 98888 port 11 98888 unique_id port 98888 remote_ip 10.8.0.102 98894 username madadi2 98894 mac 98894 bytes_out 0 98894 bytes_in 0 98894 station_ip 5.119.209.36 98894 port 12 98894 unique_id port 98894 remote_ip 10.8.0.26 98896 username farhad1 98896 kill_reason Another user logged on this global unique id 98896 mac 98896 bytes_out 0 98896 bytes_in 0 98896 station_ip 5.120.149.156 98896 port 11 98896 unique_id port 98897 username sobhan 98897 unique_id port 98897 terminate_cause Lost-Carrier 98897 bytes_out 5263280 98897 bytes_in 84957981 98897 station_ip 5.120.151.147 98897 port 15729205 98897 nas_port_type Virtual 98897 remote_ip 5.5.5.84 98901 username abbasaskari 98901 mac 98901 bytes_out 9868 98901 bytes_in 24877 98901 station_ip 83.123.157.80 98901 port 14 98901 unique_id port 98901 remote_ip 10.8.0.94 98904 username farhad1 98904 kill_reason Another user logged on this global unique id 98904 mac 98904 bytes_out 0 98904 bytes_in 0 98904 station_ip 5.120.149.156 98904 port 11 98904 unique_id port 98905 username farhad1 98905 kill_reason Another user logged on this global unique id 98905 mac 98905 bytes_out 0 98905 bytes_in 0 98905 station_ip 5.120.149.156 98905 port 11 98905 unique_id port 98906 username farhad1 98906 mac 98906 bytes_out 0 98906 bytes_in 0 98906 station_ip 5.120.149.156 98906 port 11 98906 unique_id port 98910 username musanejad 98910 unique_id port 98910 terminate_cause User-Request 98910 bytes_out 36 98910 bytes_in 140 98910 station_ip 5.119.70.226 98910 port 15729211 98910 nas_port_type Virtual 98910 remote_ip 5.5.5.79 98911 username musanejad 98911 unique_id port 98911 terminate_cause User-Request 98911 bytes_out 0 98911 bytes_in 0 98911 station_ip 5.119.70.226 98911 port 15729212 98911 nas_port_type Virtual 98911 remote_ip 5.5.5.79 98916 username musanejad 98916 unique_id port 98916 terminate_cause User-Request 98916 bytes_out 0 98916 bytes_in 0 98916 station_ip 5.119.70.226 98916 port 15729217 98916 nas_port_type Virtual 98916 remote_ip 5.5.5.79 98917 username musanejad 98917 unique_id port 98917 terminate_cause User-Request 98917 bytes_out 0 98917 bytes_in 0 98917 station_ip 5.119.70.226 98917 port 15729218 98917 nas_port_type Virtual 98917 remote_ip 5.5.5.79 98926 username abbasaskari 98926 mac 98870 bytes_in 0 98870 station_ip 46.225.213.20 98870 port 19 98870 unique_id port 98870 remote_ip 10.8.0.54 98872 username aminvpn 98872 kill_reason Another user logged on this global unique id 98872 mac 98872 bytes_out 0 98872 bytes_in 0 98872 station_ip 37.129.20.121 98872 port 12 98872 unique_id port 98872 remote_ip 10.8.0.6 98877 username tahmasebi 98877 kill_reason Another user logged on this global unique id 98877 mac 98877 bytes_out 0 98877 bytes_in 0 98877 station_ip 5.119.235.198 98877 port 18 98877 unique_id port 98879 username mohammadmahdi 98879 kill_reason Another user logged on this global unique id 98879 mac 98879 bytes_out 0 98879 bytes_in 0 98879 station_ip 83.123.23.245 98879 port 19 98879 unique_id port 98879 remote_ip 10.8.0.34 98880 username aminvpn 98880 mac 98880 bytes_out 0 98880 bytes_in 0 98880 station_ip 37.129.20.121 98880 port 12 98880 unique_id port 98881 username tahmasebi 98881 kill_reason Another user logged on this global unique id 98881 mac 98881 bytes_out 0 98881 bytes_in 0 98881 station_ip 5.119.235.198 98881 port 18 98881 unique_id port 98883 username farhad1 98883 kill_reason Another user logged on this global unique id 98883 mac 98883 bytes_out 0 98883 bytes_in 0 98883 station_ip 5.120.92.181 98883 port 11 98883 unique_id port 98885 username mohammadmahdi 98885 mac 98885 bytes_out 0 98885 bytes_in 0 98885 station_ip 83.123.23.245 98885 port 19 98885 unique_id port 98898 username mahdiyehalizadeh 98898 mac 98898 bytes_out 0 98898 bytes_in 0 98898 station_ip 113.203.100.205 98898 port 14 98898 unique_id port 98898 remote_ip 10.8.0.42 98899 username abbasaskari 98899 mac 98899 bytes_out 64057 98899 bytes_in 82225 98899 station_ip 83.123.157.80 98899 port 12 98899 unique_id port 98899 remote_ip 10.8.0.94 98900 username abbasaskari 98900 mac 98900 bytes_out 9781 98900 bytes_in 23726 98900 station_ip 83.123.157.80 98900 port 12 98900 unique_id port 98900 remote_ip 10.8.0.94 98902 username farhad1 98902 kill_reason Another user logged on this global unique id 98902 mac 98902 bytes_out 0 98902 bytes_in 0 98902 station_ip 5.120.149.156 98902 port 11 98902 unique_id port 98907 username farhad1 98907 mac 98907 bytes_out 2332052 98907 bytes_in 3677886 98907 station_ip 5.120.149.156 98907 port 11 98907 unique_id port 98907 remote_ip 10.8.0.102 98912 username musanejad 98912 unique_id port 98912 terminate_cause User-Request 98912 bytes_out 0 98912 bytes_in 0 98912 station_ip 5.119.70.226 98912 port 15729213 98912 nas_port_type Virtual 98912 remote_ip 5.5.5.79 98920 username amir 98920 mac 98920 bytes_out 0 98920 bytes_in 0 98920 station_ip 83.123.83.84 98920 port 8 98920 unique_id port 98920 remote_ip 10.8.1.34 98921 username amir 98921 mac 98921 bytes_out 0 98921 bytes_in 0 98921 station_ip 83.123.83.84 98921 port 11 98921 unique_id port 98921 remote_ip 10.8.0.54 98923 username aminvpn 98923 kill_reason Another user logged on this global unique id 98923 mac 98923 bytes_out 0 98923 bytes_in 0 98923 station_ip 5.120.82.120 98923 port 2 98923 unique_id port 98923 remote_ip 10.8.0.6 98924 username abbasaskari 98924 mac 98924 bytes_out 0 98924 bytes_in 0 98924 station_ip 83.123.151.60 98924 port 11 98924 unique_id port 98924 remote_ip 10.8.0.94 98932 username forozande 98932 mac 98932 bytes_out 0 98932 bytes_in 0 98932 station_ip 37.129.118.128 98932 port 2 98932 unique_id port 98932 remote_ip 10.8.0.74 98889 unique_id port 98890 username bcboard 98890 unique_id port 98890 terminate_cause User-Request 98890 bytes_out 9122 98890 bytes_in 354 98890 station_ip 83.123.121.202 98890 port 15729204 98890 nas_port_type Virtual 98890 remote_ip 5.5.5.96 98891 username sobhan 98891 unique_id port 98891 terminate_cause Lost-Carrier 98891 bytes_out 10483817 98891 bytes_in 180641577 98891 station_ip 5.120.151.147 98891 port 15729203 98891 nas_port_type Virtual 98891 remote_ip 5.5.5.84 98892 username farhad1 98892 kill_reason Another user logged on this global unique id 98892 mac 98892 bytes_out 0 98892 bytes_in 0 98892 station_ip 5.120.149.156 98892 port 11 98892 unique_id port 98892 remote_ip 10.8.0.102 98893 username farhad1 98893 kill_reason Another user logged on this global unique id 98893 mac 98893 bytes_out 0 98893 bytes_in 0 98893 station_ip 5.120.149.156 98893 port 11 98893 unique_id port 98895 username madadi2 98895 mac 98895 bytes_out 0 98895 bytes_in 0 98895 station_ip 5.119.91.100 98895 port 12 98895 unique_id port 98895 remote_ip 10.8.0.26 98903 username abbasaskari 98903 mac 98903 bytes_out 0 98903 bytes_in 0 98903 station_ip 83.123.157.80 98903 port 12 98903 unique_id port 98903 remote_ip 10.8.0.94 98908 username khalili 98908 mac 98908 bytes_out 0 98908 bytes_in 0 98908 station_ip 5.119.219.58 98908 port 2 98908 unique_id port 98909 username musanejad 98909 unique_id port 98909 terminate_cause User-Request 98909 bytes_out 0 98909 bytes_in 0 98909 station_ip 5.119.70.226 98909 port 15729210 98909 nas_port_type Virtual 98909 remote_ip 5.5.5.79 98913 username musanejad 98913 unique_id port 98913 terminate_cause User-Request 98913 bytes_out 0 98913 bytes_in 0 98913 station_ip 5.119.70.226 98913 port 15729214 98913 nas_port_type Virtual 98913 remote_ip 5.5.5.79 98914 username musanejad 98914 unique_id port 98914 terminate_cause User-Request 98914 bytes_out 0 98914 bytes_in 56 98914 station_ip 5.119.70.226 98914 port 15729215 98914 nas_port_type Virtual 98914 remote_ip 5.5.5.79 98915 username musanejad 98915 unique_id port 98915 terminate_cause User-Request 98915 bytes_out 0 98915 bytes_in 0 98915 station_ip 5.119.70.226 98915 port 15729216 98915 nas_port_type Virtual 98915 remote_ip 5.5.5.79 98918 username ahmadipour 98918 unique_id port 98918 terminate_cause Lost-Carrier 98918 bytes_out 5310228 98918 bytes_in 152781690 98918 station_ip 37.129.167.103 98918 port 15729222 98918 nas_port_type Virtual 98918 remote_ip 5.5.5.78 98919 username aminvpn 98919 mac 98919 bytes_out 0 98919 bytes_in 0 98919 station_ip 37.129.99.193 98919 port 2 98919 unique_id port 98919 remote_ip 10.8.0.6 98922 username amir 98922 mac 98922 bytes_out 12934 98922 bytes_in 40878 98922 station_ip 83.123.83.84 98922 port 8 98922 unique_id port 98922 remote_ip 10.8.1.34 98925 username aminvpn 98925 kill_reason Another user logged on this global unique id 98925 mac 98925 bytes_out 0 98925 bytes_in 0 98925 station_ip 5.120.82.120 98925 port 2 98925 unique_id port 98928 username khalili 98928 unique_id port 98928 terminate_cause User-Request 98928 bytes_out 0 98928 bytes_in 0 98928 station_ip 5.119.121.30 98928 port 15729225 98928 nas_port_type Virtual 98928 remote_ip 5.5.5.77 98929 username mohammadmahdi 98929 mac 98929 bytes_out 0 98929 bytes_in 0 98929 station_ip 5.120.151.145 98929 port 11 98929 unique_id port 98929 remote_ip 10.8.0.34 98930 username forozande 98930 mac 98930 bytes_out 0 98930 bytes_in 0 98926 bytes_out 0 98926 bytes_in 0 98926 station_ip 83.123.151.60 98926 port 11 98926 unique_id port 98926 remote_ip 10.8.0.94 98927 username aminvpn 98927 mac 98927 bytes_out 0 98927 bytes_in 0 98927 station_ip 5.120.82.120 98927 port 2 98927 unique_id port 98931 username madadi2 98931 mac 98931 bytes_out 0 98931 bytes_in 0 98931 station_ip 5.120.185.58 98931 port 2 98931 unique_id port 98931 remote_ip 10.8.0.26 98935 username mohammadmahdi 98935 kill_reason Another user logged on this global unique id 98935 mac 98935 bytes_out 0 98935 bytes_in 0 98935 station_ip 5.120.151.145 98935 port 11 98935 unique_id port 98935 remote_ip 10.8.0.34 98937 username amir 98937 mac 98937 bytes_out 0 98937 bytes_in 0 98937 station_ip 83.123.83.84 98937 port 12 98937 unique_id port 98937 remote_ip 10.8.0.54 98938 username amir 98938 mac 98938 bytes_out 0 98938 bytes_in 0 98938 station_ip 83.123.83.84 98938 port 12 98938 unique_id port 98938 remote_ip 10.8.0.54 98943 username mirzaei 98943 kill_reason Another user logged on this global unique id 98943 mac 98943 bytes_out 0 98943 bytes_in 0 98943 station_ip 5.120.111.133 98943 port 23 98943 unique_id port 98943 remote_ip 10.8.0.30 98946 username forozande 98946 mac 98946 bytes_out 0 98946 bytes_in 0 98946 station_ip 83.123.83.170 98946 port 18 98946 unique_id port 98946 remote_ip 10.8.0.74 98948 username aminvpn 98948 mac 98948 bytes_out 0 98948 bytes_in 0 98948 station_ip 37.129.74.73 98948 port 18 98948 unique_id port 98948 remote_ip 10.8.0.6 98950 username mohammadmahdi 98950 mac 98950 bytes_out 761527 98950 bytes_in 4259166 98950 station_ip 5.120.151.145 98950 port 11 98950 unique_id port 98950 remote_ip 10.8.0.34 98951 username mohammadmahdi 98951 mac 98951 bytes_out 12942 98951 bytes_in 31897 98951 station_ip 5.120.151.145 98951 port 19 98951 unique_id port 98951 remote_ip 10.8.0.34 98953 username forozande 98953 mac 98953 bytes_out 51569 98953 bytes_in 294320 98953 station_ip 113.203.31.193 98953 port 19 98953 unique_id port 98953 remote_ip 10.8.0.74 98956 username amir 98956 mac 98956 bytes_out 0 98956 bytes_in 0 98956 station_ip 83.123.83.84 98956 port 12 98956 unique_id port 98956 remote_ip 10.8.0.54 98963 username aminvpn 98963 mac 98963 bytes_out 0 98963 bytes_in 0 98963 station_ip 5.120.136.19 98963 port 12 98963 unique_id port 98963 remote_ip 10.8.0.6 98964 username aminvpn 98964 mac 98964 bytes_out 0 98964 bytes_in 0 98964 station_ip 31.56.152.193 98964 port 20 98964 unique_id port 98964 remote_ip 10.8.0.6 98965 username aminvpn 98965 mac 98965 bytes_out 0 98965 bytes_in 0 98965 station_ip 5.120.136.19 98965 port 12 98965 unique_id port 98965 remote_ip 10.8.0.6 98970 username aminvpn 98970 mac 98970 bytes_out 0 98970 bytes_in 0 98970 station_ip 5.120.76.35 98970 port 12 98970 unique_id port 98970 remote_ip 10.8.0.6 98971 username aminvpn 98971 mac 98971 bytes_out 0 98971 bytes_in 0 98971 station_ip 5.120.136.19 98971 port 20 98971 unique_id port 98971 remote_ip 10.8.0.6 98974 username madadi2 98974 mac 98974 bytes_out 131697 98974 bytes_in 977624 98974 station_ip 5.120.143.207 98974 port 11 98974 unique_id port 98974 remote_ip 10.8.0.26 98977 username aminvpn 98977 mac 98977 bytes_out 0 98977 bytes_in 0 98977 station_ip 5.120.136.19 98977 port 12 98930 station_ip 83.122.46.251 98930 port 2 98930 unique_id port 98930 remote_ip 10.8.0.74 98933 username forozande 98933 mac 98933 bytes_out 0 98933 bytes_in 0 98933 station_ip 83.122.223.34 98933 port 20 98933 unique_id port 98933 remote_ip 10.8.0.74 98936 username aminvpn 98936 mac 98936 bytes_out 0 98936 bytes_in 0 98936 station_ip 37.129.125.37 98936 port 19 98936 unique_id port 98939 username farhad1 98939 kill_reason Another user logged on this global unique id 98939 mac 98939 bytes_out 0 98939 bytes_in 0 98939 station_ip 5.119.253.164 98939 port 18 98939 unique_id port 98939 remote_ip 10.8.0.102 98940 username mohammadmahdi 98940 mac 98940 bytes_out 0 98940 bytes_in 0 98940 station_ip 5.120.151.145 98940 port 11 98940 unique_id port 98947 username alipour 98947 mac 98947 bytes_out 0 98947 bytes_in 0 98947 station_ip 83.122.239.19 98947 port 22 98947 unique_id port 98947 remote_ip 10.8.0.70 98949 username madadi2 98949 mac 98949 bytes_out 0 98949 bytes_in 0 98949 station_ip 5.119.175.127 98949 port 19 98949 unique_id port 98949 remote_ip 10.8.0.26 98957 username aminvpn 98957 mac 98957 bytes_out 0 98957 bytes_in 0 98957 station_ip 37.129.74.73 98957 port 11 98957 unique_id port 98957 remote_ip 10.8.0.6 98959 username aminvpn 98959 mac 98959 bytes_out 0 98959 bytes_in 0 98959 station_ip 5.120.136.19 98959 port 19 98959 unique_id port 98959 remote_ip 10.8.0.6 98960 username aminvpn 98960 mac 98960 bytes_out 0 98960 bytes_in 0 98960 station_ip 37.129.74.73 98960 port 11 98960 unique_id port 98960 remote_ip 10.8.0.6 98966 username aminvpn 98966 mac 98966 bytes_out 0 98966 bytes_in 0 98966 station_ip 31.56.152.193 98966 port 20 98966 unique_id port 98966 remote_ip 10.8.0.6 98969 username aminvpn 98969 mac 98969 bytes_out 0 98969 bytes_in 0 98969 station_ip 5.120.136.19 98969 port 20 98969 unique_id port 98969 remote_ip 10.8.0.6 98973 username aminvpn 98973 mac 98973 bytes_out 0 98973 bytes_in 0 98973 station_ip 5.120.76.35 98973 port 20 98973 unique_id port 98973 remote_ip 10.8.0.6 98983 username aminvpn 98983 mac 98983 bytes_out 0 98983 bytes_in 0 98983 station_ip 5.120.136.19 98983 port 12 98983 unique_id port 98983 remote_ip 10.8.0.6 98986 username aminvpn 98986 mac 98986 bytes_out 0 98986 bytes_in 0 98986 station_ip 5.120.136.19 98986 port 12 98986 unique_id port 98986 remote_ip 10.8.0.6 98989 username khalili 98989 kill_reason Another user logged on this global unique id 98989 mac 98989 bytes_out 0 98989 bytes_in 0 98989 station_ip 5.119.121.30 98989 port 14 98989 unique_id port 98989 remote_ip 10.8.0.78 98994 username amir 98994 mac 98994 bytes_out 0 98994 bytes_in 0 98994 station_ip 83.123.83.84 98994 port 8 98994 unique_id port 98994 remote_ip 10.8.1.34 98995 username aminvpn 98995 mac 98995 bytes_out 0 98995 bytes_in 0 98995 station_ip 5.120.76.35 98995 port 12 98995 unique_id port 98995 remote_ip 10.8.0.6 98997 username amir 98997 mac 98997 bytes_out 0 98997 bytes_in 0 98997 station_ip 83.123.83.84 98997 port 8 98997 unique_id port 98997 remote_ip 10.8.1.34 98999 username aminvpn 98999 mac 98999 bytes_out 0 98999 bytes_in 0 98999 station_ip 5.120.76.35 98999 port 12 98999 unique_id port 98999 remote_ip 10.8.0.6 99001 username mahdiyehalizadeh 98934 username aminvpn 98934 kill_reason Another user logged on this global unique id 98934 mac 98934 bytes_out 0 98934 bytes_in 0 98934 station_ip 37.129.125.37 98934 port 19 98934 unique_id port 98934 remote_ip 10.8.0.6 98941 username aminvpn 98941 mac 98941 bytes_out 0 98941 bytes_in 0 98941 station_ip 37.129.125.37 98941 port 24 98941 unique_id port 98941 remote_ip 10.8.0.6 98942 username mohammadmahdi 98942 mac 98942 bytes_out 0 98942 bytes_in 0 98942 station_ip 5.120.151.145 98942 port 25 98942 unique_id port 98942 remote_ip 10.8.0.34 98944 username farhad1 98944 mac 98944 bytes_out 0 98944 bytes_in 0 98944 station_ip 5.119.253.164 98944 port 18 98944 unique_id port 98945 username forozande 98945 mac 98945 bytes_out 0 98945 bytes_in 0 98945 station_ip 83.122.233.15 98945 port 20 98945 unique_id port 98945 remote_ip 10.8.0.74 98952 username ahmadipour 98952 unique_id port 98952 terminate_cause Lost-Carrier 98952 bytes_out 107919 98952 bytes_in 501879 98952 station_ip 113.203.46.174 98952 port 15729226 98952 nas_port_type Virtual 98952 remote_ip 5.5.5.76 98954 username aminvpn 98954 mac 98954 bytes_out 0 98954 bytes_in 0 98954 station_ip 37.129.74.73 98954 port 11 98954 unique_id port 98954 remote_ip 10.8.0.6 98955 username aminvpn 98955 mac 98955 bytes_out 0 98955 bytes_in 0 98955 station_ip 5.120.136.19 98955 port 19 98955 unique_id port 98955 remote_ip 10.8.0.6 98958 username amir 98958 mac 98958 bytes_out 0 98958 bytes_in 0 98958 station_ip 83.123.83.84 98958 port 12 98958 unique_id port 98958 remote_ip 10.8.0.54 98961 username aminvpn 98961 mac 98961 bytes_out 0 98961 bytes_in 0 98961 station_ip 5.120.136.19 98961 port 12 98961 unique_id port 98961 remote_ip 10.8.0.6 98962 username aminvpn 98962 mac 98962 bytes_out 0 98962 bytes_in 0 98962 station_ip 37.129.74.73 98962 port 11 98962 unique_id port 98962 remote_ip 10.8.0.6 98967 username amir 98967 mac 98967 bytes_out 0 98967 bytes_in 0 98967 station_ip 83.123.83.84 98967 port 8 98967 unique_id port 98967 remote_ip 10.8.1.34 98968 username aminvpn 98968 mac 98968 bytes_out 0 98968 bytes_in 0 98968 station_ip 31.56.152.193 98968 port 12 98968 unique_id port 98968 remote_ip 10.8.0.6 98972 username aminvpn 98972 mac 98972 bytes_out 0 98972 bytes_in 0 98972 station_ip 37.129.74.73 98972 port 12 98972 unique_id port 98972 remote_ip 10.8.0.6 98975 username aminvpn 98975 mac 98975 bytes_out 0 98975 bytes_in 0 98975 station_ip 5.120.136.19 98975 port 12 98975 unique_id port 98975 remote_ip 10.8.0.6 98976 username aminvpn 98976 mac 98976 bytes_out 0 98976 bytes_in 0 98976 station_ip 5.120.76.35 98976 port 11 98976 unique_id port 98976 remote_ip 10.8.0.6 98978 username aminvpn 98978 mac 98978 bytes_out 0 98978 bytes_in 0 98978 station_ip 5.120.76.35 98978 port 20 98978 unique_id port 98978 remote_ip 10.8.0.6 98980 username aminvpn 98980 mac 98980 bytes_out 0 98980 bytes_in 0 98980 station_ip 5.120.76.35 98980 port 20 98980 unique_id port 98980 remote_ip 10.8.0.6 98981 username aminvpn 98981 mac 98981 bytes_out 0 98981 bytes_in 0 98981 station_ip 5.120.136.19 98981 port 12 98981 unique_id port 98981 remote_ip 10.8.0.6 98982 username aminvpn 98982 mac 98982 bytes_out 0 98982 bytes_in 0 98977 unique_id port 98977 remote_ip 10.8.0.6 98979 username aminvpn 98979 mac 98979 bytes_out 0 98979 bytes_in 0 98979 station_ip 5.120.136.19 98979 port 12 98979 unique_id port 98979 remote_ip 10.8.0.6 98984 username amir 98984 mac 98984 bytes_out 464940 98984 bytes_in 2157107 98984 station_ip 83.123.83.84 98984 port 8 98984 unique_id port 98984 remote_ip 10.8.1.34 98988 username aminvpn 98988 mac 98988 bytes_out 0 98988 bytes_in 0 98988 station_ip 5.120.136.19 98988 port 22 98988 unique_id port 98988 remote_ip 10.8.0.6 98992 username alipour 98992 mac 98992 bytes_out 1337387 98992 bytes_in 16978780 98992 station_ip 83.122.239.19 98992 port 18 98992 unique_id port 98992 remote_ip 10.8.0.70 98993 username aminvpn 98993 mac 98993 bytes_out 0 98993 bytes_in 0 98993 station_ip 5.120.136.19 98993 port 24 98993 unique_id port 98993 remote_ip 10.8.0.6 98996 username forozande 98996 mac 98996 bytes_out 1752666 98996 bytes_in 21380089 98996 station_ip 83.123.40.105 98996 port 19 98996 unique_id port 98996 remote_ip 10.8.0.74 98998 username aminvpn 98998 mac 98998 bytes_out 0 98998 bytes_in 0 98998 station_ip 5.120.136.19 98998 port 18 98998 unique_id port 98998 remote_ip 10.8.0.6 99002 username aminvpn 99002 mac 99002 bytes_out 0 99002 bytes_in 0 99002 station_ip 5.120.136.19 99002 port 19 99002 unique_id port 99002 remote_ip 10.8.0.6 99003 username amir 99003 mac 99003 bytes_out 0 99003 bytes_in 0 99003 station_ip 83.123.83.84 99003 port 8 99003 unique_id port 99003 remote_ip 10.8.1.34 99006 username alipour 99006 mac 99006 bytes_out 76758 99006 bytes_in 418742 99006 station_ip 83.122.239.19 99006 port 18 99006 unique_id port 99006 remote_ip 10.8.0.70 99010 username aminvpn 99010 mac 99010 bytes_out 0 99010 bytes_in 0 99010 station_ip 5.120.76.35 99010 port 18 99010 unique_id port 99010 remote_ip 10.8.0.6 99016 username aminvpn 99016 mac 99016 bytes_out 0 99016 bytes_in 0 99016 station_ip 5.120.76.35 99016 port 18 99016 unique_id port 99016 remote_ip 10.8.0.6 99017 username aminvpn 99017 mac 99017 bytes_out 0 99017 bytes_in 0 99017 station_ip 5.120.136.19 99017 port 12 99017 unique_id port 99017 remote_ip 10.8.0.6 99019 username aminvpn 99019 mac 99019 bytes_out 0 99019 bytes_in 0 99019 station_ip 37.129.74.101 99019 port 18 99019 unique_id port 99019 remote_ip 10.8.0.6 99020 username aminvpn 99020 mac 99020 bytes_out 0 99020 bytes_in 0 99020 station_ip 5.120.76.35 99020 port 12 99020 unique_id port 99020 remote_ip 10.8.0.6 99026 username amir 99026 mac 99026 bytes_out 0 99026 bytes_in 0 99026 station_ip 83.123.83.84 99026 port 9 99026 unique_id port 99026 remote_ip 10.8.1.34 99027 username amir 99027 mac 99027 bytes_out 0 99027 bytes_in 0 99027 station_ip 83.123.83.84 99027 port 9 99027 unique_id port 99027 remote_ip 10.8.1.34 99028 username aminvpn 99028 mac 99028 bytes_out 16828 99028 bytes_in 55235 99028 station_ip 5.120.136.19 99028 port 18 99028 unique_id port 99028 remote_ip 10.8.0.6 99029 username aminvpn 99029 mac 99029 bytes_out 0 99029 bytes_in 0 99029 station_ip 5.120.76.35 99029 port 20 99029 unique_id port 99029 remote_ip 10.8.0.6 99031 username aminvpn 99031 mac 99031 bytes_out 0 99031 bytes_in 0 98982 station_ip 5.120.76.35 98982 port 20 98982 unique_id port 98982 remote_ip 10.8.0.6 98985 username aminvpn 98985 mac 98985 bytes_out 0 98985 bytes_in 0 98985 station_ip 5.120.76.35 98985 port 20 98985 unique_id port 98985 remote_ip 10.8.0.6 98987 username aminvpn 98987 mac 98987 bytes_out 0 98987 bytes_in 0 98987 station_ip 5.120.76.35 98987 port 20 98987 unique_id port 98987 remote_ip 10.8.0.6 98990 username aminvpn 98990 mac 98990 bytes_out 0 98990 bytes_in 0 98990 station_ip 5.120.76.35 98990 port 20 98990 unique_id port 98990 remote_ip 10.8.0.6 98991 username amir 98991 mac 98991 bytes_out 46222 98991 bytes_in 275537 98991 station_ip 83.123.83.84 98991 port 12 98991 unique_id port 98991 remote_ip 10.8.0.54 99000 username amir 99000 mac 99000 bytes_out 0 99000 bytes_in 0 99000 station_ip 83.123.83.84 99000 port 18 99000 unique_id port 99000 remote_ip 10.8.0.54 99004 username aminvpn 99004 mac 99004 bytes_out 0 99004 bytes_in 0 99004 station_ip 5.120.76.35 99004 port 12 99004 unique_id port 99004 remote_ip 10.8.0.6 99007 username aminvpn 99007 mac 99007 bytes_out 0 99007 bytes_in 0 99007 station_ip 5.120.76.35 99007 port 20 99007 unique_id port 99007 remote_ip 10.8.0.6 99011 username mohammadmahdi 99011 kill_reason Another user logged on this global unique id 99011 mac 99011 bytes_out 0 99011 bytes_in 0 99011 station_ip 5.120.151.145 99011 port 11 99011 unique_id port 99011 remote_ip 10.8.0.34 99012 username aminvpn 99012 mac 99012 bytes_out 0 99012 bytes_in 0 99012 station_ip 5.120.136.19 99012 port 20 99012 unique_id port 99012 remote_ip 10.8.0.6 99013 username amir 99013 mac 99013 bytes_out 20715 99013 bytes_in 85166 99013 station_ip 83.123.83.84 99013 port 12 99013 unique_id port 99013 remote_ip 10.8.0.54 99022 username amir 99022 mac 99022 bytes_out 0 99022 bytes_in 0 99022 station_ip 83.123.83.84 99022 port 18 99022 unique_id port 99022 remote_ip 10.8.0.54 99023 username aminvpn 99023 mac 99023 bytes_out 0 99023 bytes_in 0 99023 station_ip 5.120.76.35 99023 port 12 99023 unique_id port 99023 remote_ip 10.8.0.6 99024 username aminvpn 99024 mac 99024 bytes_out 0 99024 bytes_in 0 99024 station_ip 5.120.136.19 99024 port 18 99024 unique_id port 99024 remote_ip 10.8.0.6 99025 username aminvpn 99025 mac 99025 bytes_out 0 99025 bytes_in 0 99025 station_ip 5.120.76.35 99025 port 12 99025 unique_id port 99025 remote_ip 10.8.0.6 99030 username aminvpn 99030 mac 99030 bytes_out 0 99030 bytes_in 0 99030 station_ip 5.120.136.19 99030 port 18 99030 unique_id port 99030 remote_ip 10.8.0.6 99034 username aminvpn 99034 mac 99034 bytes_out 0 99034 bytes_in 0 99034 station_ip 37.129.74.101 99034 port 18 99034 unique_id port 99034 remote_ip 10.8.0.6 99038 username mohammadmahdi 99038 mac 99038 bytes_out 0 99038 bytes_in 0 99038 station_ip 5.120.151.145 99038 port 11 99038 unique_id port 99045 username mohammadreza 99045 mac 99045 bytes_out 0 99045 bytes_in 0 99045 station_ip 2.183.129.152 99045 port 2 99045 unique_id port 99045 remote_ip 10.8.0.18 99046 username amir 99046 mac 99046 bytes_out 0 99046 bytes_in 0 99046 station_ip 83.123.83.84 99046 port 12 99046 unique_id port 99046 remote_ip 10.8.0.54 99050 username amir 99050 mac 99001 mac 99001 bytes_out 116963 99001 bytes_in 1309848 99001 station_ip 37.129.248.173 99001 port 20 99001 unique_id port 99001 remote_ip 10.8.0.42 99005 username aminvpn 99005 mac 99005 bytes_out 0 99005 bytes_in 0 99005 station_ip 5.120.136.19 99005 port 19 99005 unique_id port 99005 remote_ip 10.8.0.6 99008 username aminvpn 99008 mac 99008 bytes_out 0 99008 bytes_in 0 99008 station_ip 5.120.136.19 99008 port 18 99008 unique_id port 99008 remote_ip 10.8.0.6 99009 username aminvpn 99009 mac 99009 bytes_out 0 99009 bytes_in 0 99009 station_ip 37.129.74.101 99009 port 20 99009 unique_id port 99009 remote_ip 10.8.0.6 99014 username aminvpn 99014 mac 99014 bytes_out 0 99014 bytes_in 0 99014 station_ip 5.120.76.35 99014 port 18 99014 unique_id port 99014 remote_ip 10.8.0.6 99015 username aminvpn 99015 mac 99015 bytes_out 0 99015 bytes_in 0 99015 station_ip 5.120.136.19 99015 port 12 99015 unique_id port 99015 remote_ip 10.8.0.6 99018 username amir 99018 mac 99018 bytes_out 104921 99018 bytes_in 188863 99018 station_ip 83.123.83.84 99018 port 20 99018 unique_id port 99018 remote_ip 10.8.0.54 99021 username aminvpn 99021 mac 99021 bytes_out 0 99021 bytes_in 0 99021 station_ip 5.120.136.19 99021 port 20 99021 unique_id port 99021 remote_ip 10.8.0.6 99032 username aminvpn 99032 mac 99032 bytes_out 0 99032 bytes_in 0 99032 station_ip 5.120.136.19 99032 port 18 99032 unique_id port 99032 remote_ip 10.8.0.6 99035 username aminvpn 99035 mac 99035 bytes_out 0 99035 bytes_in 0 99035 station_ip 5.120.136.19 99035 port 24 99035 unique_id port 99035 remote_ip 10.8.0.6 99036 username aminvpn 99036 mac 99036 bytes_out 0 99036 bytes_in 0 99036 station_ip 5.120.76.35 99036 port 18 99036 unique_id port 99036 remote_ip 10.8.0.6 99037 username aminvpn 99037 mac 99037 bytes_out 0 99037 bytes_in 0 99037 station_ip 37.129.74.101 99037 port 24 99037 unique_id port 99037 remote_ip 10.8.0.6 99039 username aminvpn 99039 mac 99039 bytes_out 0 99039 bytes_in 0 99039 station_ip 5.120.76.35 99039 port 18 99039 unique_id port 99039 remote_ip 10.8.0.6 99043 username forozande 99043 mac 99043 bytes_out 0 99043 bytes_in 0 99043 station_ip 37.129.28.241 99043 port 11 99043 unique_id port 99043 remote_ip 10.8.0.74 99047 username amir 99047 mac 99047 bytes_out 0 99047 bytes_in 0 99047 station_ip 83.123.83.84 99047 port 18 99047 unique_id port 99047 remote_ip 10.8.0.54 99048 username amir 99048 mac 99048 bytes_out 32738 99048 bytes_in 151394 99048 station_ip 83.123.83.84 99048 port 9 99048 unique_id port 99048 remote_ip 10.8.1.34 99049 username asadi 99049 mac 99049 bytes_out 0 99049 bytes_in 0 99049 station_ip 37.129.187.119 99049 port 22 99049 unique_id port 99049 remote_ip 10.8.0.50 99053 username forozande 99053 mac 99053 bytes_out 0 99053 bytes_in 0 99053 station_ip 37.129.231.136 99053 port 2 99053 unique_id port 99053 remote_ip 10.8.0.74 99054 username amir 99054 mac 99054 bytes_out 0 99054 bytes_in 0 99054 station_ip 83.123.83.84 99054 port 9 99054 unique_id port 99054 remote_ip 10.8.1.34 99057 username asadi 99057 mac 99057 bytes_out 0 99057 bytes_in 0 99057 station_ip 37.129.187.119 99057 port 18 99057 unique_id port 99057 remote_ip 10.8.0.50 99031 station_ip 5.120.76.35 99031 port 20 99031 unique_id port 99031 remote_ip 10.8.0.6 99033 username aminvpn 99033 mac 99033 bytes_out 0 99033 bytes_in 0 99033 station_ip 5.120.76.35 99033 port 24 99033 unique_id port 99033 remote_ip 10.8.0.6 99040 username aminvpn 99040 mac 99040 bytes_out 0 99040 bytes_in 0 99040 station_ip 37.129.74.101 99040 port 11 99040 unique_id port 99040 remote_ip 10.8.0.6 99041 username forozande 99041 mac 99041 bytes_out 0 99041 bytes_in 0 99041 station_ip 37.129.254.93 99041 port 20 99041 unique_id port 99041 remote_ip 10.8.0.74 99042 username aminvpn 99042 unique_id port 99042 terminate_cause User-Request 99042 bytes_out 647968 99042 bytes_in 16205186 99042 station_ip 31.57.129.15 99042 port 15729229 99042 nas_port_type Virtual 99042 remote_ip 5.5.5.75 99044 username alipour 99044 mac 99044 bytes_out 235149 99044 bytes_in 2221132 99044 station_ip 83.122.239.19 99044 port 8 99044 unique_id port 99044 remote_ip 10.8.1.38 99052 username amir 99052 mac 99052 bytes_out 50638 99052 bytes_in 37563 99052 station_ip 83.123.83.84 99052 port 12 99052 unique_id port 99052 remote_ip 10.8.0.54 99058 username amir 99058 mac 99058 bytes_out 0 99058 bytes_in 0 99058 station_ip 83.123.83.84 99058 port 12 99058 unique_id port 99058 remote_ip 10.8.0.54 99059 username amir 99059 mac 99059 bytes_out 0 99059 bytes_in 0 99059 station_ip 83.123.83.84 99059 port 12 99059 unique_id port 99059 remote_ip 10.8.0.54 99060 username amir 99060 mac 99060 bytes_out 0 99060 bytes_in 0 99060 station_ip 83.123.83.84 99060 port 9 99060 unique_id port 99060 remote_ip 10.8.1.34 99066 username aminvpn 99066 mac 99066 bytes_out 0 99066 bytes_in 0 99066 station_ip 37.129.74.101 99066 port 11 99066 unique_id port 99066 remote_ip 10.8.0.6 99069 username asadi 99069 mac 99069 bytes_out 23146 99069 bytes_in 33043 99069 station_ip 37.129.187.119 99069 port 2 99069 unique_id port 99069 remote_ip 10.8.0.50 99071 username asadi 99071 mac 99071 bytes_out 852123 99071 bytes_in 10495648 99071 station_ip 37.129.187.119 99071 port 2 99071 unique_id port 99071 remote_ip 10.8.0.50 99072 username amir 99072 mac 99072 bytes_out 1433800 99072 bytes_in 4745865 99072 station_ip 83.123.83.84 99072 port 18 99072 unique_id port 99072 remote_ip 10.8.0.54 99073 username abbasaskari 99073 mac 99073 bytes_out 13886 99073 bytes_in 26721 99073 station_ip 83.123.142.48 99073 port 20 99073 unique_id port 99073 remote_ip 10.8.0.94 99078 username amir 99078 mac 99078 bytes_out 0 99078 bytes_in 0 99078 station_ip 83.123.83.84 99078 port 8 99078 unique_id port 99078 remote_ip 10.8.1.34 99081 username madadi2 99081 mac 99081 bytes_out 0 99081 bytes_in 0 99081 station_ip 5.120.77.167 99081 port 20 99081 unique_id port 99081 remote_ip 10.8.0.26 99082 username forozande 99082 mac 99082 bytes_out 0 99082 bytes_in 0 99082 station_ip 83.123.18.124 99082 port 12 99082 unique_id port 99082 remote_ip 10.8.0.74 99084 username aminvpn 99084 mac 99084 bytes_out 0 99084 bytes_in 0 99084 station_ip 37.129.74.101 99084 port 11 99084 unique_id port 99084 remote_ip 10.8.0.6 99086 username mahdiyehalizadeh 99086 mac 99086 bytes_out 228731 99086 bytes_in 1503437 99086 station_ip 37.129.51.127 99086 port 12 99086 unique_id port 99050 bytes_out 0 99050 bytes_in 0 99050 station_ip 83.123.83.84 99050 port 12 99050 unique_id port 99050 remote_ip 10.8.0.54 99051 username amir 99051 mac 99051 bytes_out 0 99051 bytes_in 0 99051 station_ip 83.123.83.84 99051 port 20 99051 unique_id port 99051 remote_ip 10.8.0.54 99055 username amir 99055 mac 99055 bytes_out 48809 99055 bytes_in 56295 99055 station_ip 83.123.83.84 99055 port 9 99055 unique_id port 99055 remote_ip 10.8.1.34 99056 username amir 99056 mac 99056 bytes_out 0 99056 bytes_in 0 99056 station_ip 83.123.83.84 99056 port 9 99056 unique_id port 99056 remote_ip 10.8.1.34 99061 username amir 99061 mac 99061 bytes_out 0 99061 bytes_in 0 99061 station_ip 83.123.83.84 99061 port 9 99061 unique_id port 99061 remote_ip 10.8.1.34 99063 username amir 99063 mac 99063 bytes_out 367378 99063 bytes_in 1794029 99063 station_ip 83.123.83.84 99063 port 9 99063 unique_id port 99063 remote_ip 10.8.1.34 99070 username asadi 99070 mac 99070 bytes_out 0 99070 bytes_in 0 99070 station_ip 37.129.187.119 99070 port 20 99070 unique_id port 99070 remote_ip 10.8.0.50 99074 username amir 99074 mac 99074 bytes_out 0 99074 bytes_in 0 99074 station_ip 83.123.83.84 99074 port 18 99074 unique_id port 99074 remote_ip 10.8.0.54 99076 username abbasaskari 99076 mac 99076 bytes_out 0 99076 bytes_in 0 99076 station_ip 83.123.142.48 99076 port 20 99076 unique_id port 99076 remote_ip 10.8.0.94 99077 username amir 99077 mac 99077 bytes_out 189903 99077 bytes_in 583082 99077 station_ip 83.123.83.84 99077 port 2 99077 unique_id port 99077 remote_ip 10.8.0.54 99079 username abbasaskari 99079 mac 99079 bytes_out 20456 99079 bytes_in 48261 99079 station_ip 83.123.142.48 99079 port 20 99079 unique_id port 99079 remote_ip 10.8.0.94 99080 username abbasaskari 99080 mac 99080 bytes_out 0 99080 bytes_in 0 99080 station_ip 83.123.142.48 99080 port 2 99080 unique_id port 99080 remote_ip 10.8.0.94 99088 username askari 99088 kill_reason Another user logged on this global unique id 99088 mac 99088 bytes_out 0 99088 bytes_in 0 99088 station_ip 5.119.173.201 99088 port 25 99088 unique_id port 99088 remote_ip 10.8.0.38 99089 username arman1 99089 mac 99089 bytes_out 2301042 99089 bytes_in 17858795 99089 station_ip 5.120.164.52 99089 port 22 99089 unique_id port 99089 remote_ip 10.8.0.86 99090 username forozande 99090 mac 99090 bytes_out 214735 99090 bytes_in 1198041 99090 station_ip 83.122.168.150 99090 port 18 99090 unique_id port 99090 remote_ip 10.8.0.74 99094 username mirzaei 99094 kill_reason Another user logged on this global unique id 99094 mac 99094 bytes_out 0 99094 bytes_in 0 99094 station_ip 5.120.111.133 99094 port 23 99094 unique_id port 99095 username madadi2 99095 mac 99095 bytes_out 1690194 99095 bytes_in 6641649 99095 station_ip 5.120.158.218 99095 port 2 99095 unique_id port 99095 remote_ip 10.8.0.26 99096 username mohammadreza 99096 mac 99096 bytes_out 252588 99096 bytes_in 1074614 99096 station_ip 2.183.129.152 99096 port 2 99096 unique_id port 99096 remote_ip 10.8.0.18 99100 username aminvpn 99100 mac 99100 bytes_out 1818836 99100 bytes_in 19748825 99100 station_ip 5.119.130.100 99100 port 22 99100 unique_id port 99100 remote_ip 10.8.0.6 99103 username alirr 99103 unique_id port 99103 terminate_cause User-Request 99103 bytes_out 0 99062 username mahdiyehalizadeh 99062 mac 99062 bytes_out 0 99062 bytes_in 0 99062 station_ip 83.122.48.21 99062 port 12 99062 unique_id port 99062 remote_ip 10.8.0.42 99064 username amir 99064 mac 99064 bytes_out 67125 99064 bytes_in 258383 99064 station_ip 83.123.83.84 99064 port 9 99064 unique_id port 99064 remote_ip 10.8.1.34 99065 username amir 99065 mac 99065 bytes_out 0 99065 bytes_in 0 99065 station_ip 83.123.83.84 99065 port 18 99065 unique_id port 99065 remote_ip 10.8.0.54 99067 username amir 99067 mac 99067 bytes_out 46674 99067 bytes_in 205818 99067 station_ip 83.123.83.84 99067 port 9 99067 unique_id port 99067 remote_ip 10.8.1.34 99068 username alipour 99068 mac 99068 bytes_out 2080370 99068 bytes_in 29817861 99068 station_ip 83.122.239.19 99068 port 8 99068 unique_id port 99068 remote_ip 10.8.1.38 99075 username asadi 99075 mac 99075 bytes_out 0 99075 bytes_in 0 99075 station_ip 37.129.187.119 99075 port 2 99075 unique_id port 99075 remote_ip 10.8.0.50 99083 username askari 99083 mac 99083 bytes_out 294833 99083 bytes_in 1729353 99083 station_ip 5.120.12.132 99083 port 20 99083 unique_id port 99083 remote_ip 10.8.0.38 99085 username abbasaskari 99085 mac 99085 bytes_out 0 99085 bytes_in 0 99085 station_ip 83.123.142.48 99085 port 8 99085 unique_id port 99085 remote_ip 10.8.1.58 99087 username asadi 99087 mac 99087 bytes_out 2125052 99087 bytes_in 36931063 99087 station_ip 37.129.187.119 99087 port 18 99087 unique_id port 99087 remote_ip 10.8.0.50 99092 username arman1 99092 mac 99092 bytes_out 1375272 99092 bytes_in 12439152 99092 station_ip 5.120.164.52 99092 port 11 99092 unique_id port 99092 remote_ip 10.8.0.86 99093 username asadi 99093 mac 99093 bytes_out 16940 99093 bytes_in 16554 99093 station_ip 37.129.187.119 99093 port 20 99093 unique_id port 99093 remote_ip 10.8.0.50 99097 username madadi2 99097 mac 99097 bytes_out 414062 99097 bytes_in 804528 99097 station_ip 5.120.158.218 99097 port 20 99097 unique_id port 99097 remote_ip 10.8.0.26 99098 username amir 99098 mac 99098 bytes_out 2027151 99098 bytes_in 7550231 99098 station_ip 83.123.83.84 99098 port 24 99098 unique_id port 99098 remote_ip 10.8.0.54 99099 username amir 99099 mac 99099 bytes_out 0 99099 bytes_in 0 99099 station_ip 83.123.83.84 99099 port 8 99099 unique_id port 99099 remote_ip 10.8.1.34 99104 username amir 99104 mac 99104 bytes_out 0 99104 bytes_in 0 99104 station_ip 83.123.83.84 99104 port 2 99104 unique_id port 99104 remote_ip 10.8.0.54 99105 username alirr 99105 unique_id port 99105 terminate_cause User-Request 99105 bytes_out 36450 99105 bytes_in 59246 99105 station_ip 83.122.124.39 99105 port 15729231 99105 nas_port_type Virtual 99105 remote_ip 5.5.5.74 99108 username jamali 99108 mac 99108 bytes_out 0 99108 bytes_in 0 99108 station_ip 5.120.49.25 99108 port 20 99108 unique_id port 99108 remote_ip 10.8.0.62 99109 username forozande 99109 mac 99109 bytes_out 0 99109 bytes_in 0 99109 station_ip 83.123.29.254 99109 port 18 99109 unique_id port 99109 remote_ip 10.8.0.74 99114 username asadi 99114 mac 99114 bytes_out 0 99114 bytes_in 0 99114 station_ip 37.129.187.119 99114 port 11 99114 unique_id port 99114 remote_ip 10.8.0.50 99120 username jamali 99120 kill_reason Another user logged on this global unique id 99120 mac 99086 remote_ip 10.8.0.42 99091 username asadi 99091 mac 99091 bytes_out 60175 99091 bytes_in 54407 99091 station_ip 37.129.187.119 99091 port 12 99091 unique_id port 99091 remote_ip 10.8.0.50 99101 username aminvpn 99101 mac 99101 bytes_out 0 99101 bytes_in 0 99101 station_ip 37.129.27.241 99101 port 2 99101 unique_id port 99101 remote_ip 10.8.0.6 99102 username asadi 99102 mac 99102 bytes_out 0 99102 bytes_in 0 99102 station_ip 37.129.187.119 99102 port 11 99102 unique_id port 99102 remote_ip 10.8.0.50 99106 username alirr 99106 unique_id port 99106 terminate_cause User-Request 99106 bytes_out 158553 99106 bytes_in 2132561 99106 station_ip 83.122.124.39 99106 port 15729232 99106 nas_port_type Virtual 99106 remote_ip 5.5.5.74 99111 username abbasaskari 99111 mac 99111 bytes_out 0 99111 bytes_in 0 99111 station_ip 83.123.168.36 99111 port 18 99111 unique_id port 99111 remote_ip 10.8.0.94 99113 username amir 99113 kill_reason Another user logged on this global unique id 99113 mac 99113 bytes_out 0 99113 bytes_in 0 99113 station_ip 83.123.83.84 99113 port 2 99113 unique_id port 99113 remote_ip 10.8.0.54 99119 username amir 99119 mac 99119 bytes_out 0 99119 bytes_in 0 99119 station_ip 83.123.83.84 99119 port 2 99119 unique_id port 99119 remote_ip 10.8.0.54 99123 username jamali 99123 kill_reason Another user logged on this global unique id 99123 mac 99123 bytes_out 0 99123 bytes_in 0 99123 station_ip 5.120.49.25 99123 port 20 99123 unique_id port 99127 username amir 99127 mac 99127 bytes_out 0 99127 bytes_in 0 99127 station_ip 83.123.83.84 99127 port 18 99127 unique_id port 99127 remote_ip 10.8.0.54 99128 username ahmadipour 99128 unique_id port 99128 terminate_cause Lost-Carrier 99128 bytes_out 891343 99128 bytes_in 23778276 99128 station_ip 83.123.60.126 99128 port 15729234 99128 nas_port_type Virtual 99128 remote_ip 5.5.5.72 99130 username ahmadi 99130 unique_id port 99130 terminate_cause User-Request 99130 bytes_out 17768 99130 bytes_in 99229 99130 station_ip 37.129.122.228 99130 port 15729235 99130 nas_port_type Virtual 99130 remote_ip 5.5.5.71 99133 username asadi 99133 mac 99133 bytes_out 38010 99133 bytes_in 110891 99133 station_ip 37.129.132.160 99133 port 2 99133 unique_id port 99133 remote_ip 10.8.0.50 99135 username asadi 99135 mac 99135 bytes_out 6362 99135 bytes_in 12853 99135 station_ip 37.129.132.160 99135 port 18 99135 unique_id port 99135 remote_ip 10.8.0.50 99136 username amir 99136 mac 99136 bytes_out 0 99136 bytes_in 0 99136 station_ip 83.123.83.84 99136 port 8 99136 unique_id port 99136 remote_ip 10.8.1.34 99145 username forozande 99145 mac 99145 bytes_out 0 99145 bytes_in 0 99145 station_ip 113.203.29.91 99145 port 8 99145 unique_id port 99145 remote_ip 10.8.1.62 99147 username amir 99147 mac 99147 bytes_out 2759 99147 bytes_in 5917 99147 station_ip 83.123.83.84 99147 port 20 99147 unique_id port 99147 remote_ip 10.8.0.54 99152 username amir 99152 mac 99152 bytes_out 0 99152 bytes_in 0 99152 station_ip 83.123.83.84 99152 port 8 99152 unique_id port 99152 remote_ip 10.8.1.34 99153 username amir 99153 mac 99153 bytes_out 0 99153 bytes_in 0 99153 station_ip 83.123.83.84 99153 port 8 99153 unique_id port 99153 remote_ip 10.8.1.34 99155 username jamali 99155 kill_reason Another user logged on this global unique id 99155 mac 99155 bytes_out 0 99155 bytes_in 0 99103 bytes_in 224 99103 station_ip 83.122.124.39 99103 port 15729230 99103 nas_port_type Virtual 99103 remote_ip 5.5.5.74 99107 username asadi 99107 mac 99107 bytes_out 0 99107 bytes_in 0 99107 station_ip 37.129.187.119 99107 port 11 99107 unique_id port 99107 remote_ip 10.8.0.50 99110 username khalili 99110 mac 99110 bytes_out 0 99110 bytes_in 0 99110 station_ip 5.119.121.30 99110 port 14 99110 unique_id port 99112 username mahdiyehalizadeh 99112 mac 99112 bytes_out 0 99112 bytes_in 0 99112 station_ip 37.129.192.241 99112 port 24 99112 unique_id port 99112 remote_ip 10.8.0.42 99115 username asadi 99115 mac 99115 bytes_out 0 99115 bytes_in 0 99115 station_ip 91.251.65.102 99115 port 11 99115 unique_id port 99115 remote_ip 10.8.0.50 99116 username asadi 99116 mac 99116 bytes_out 0 99116 bytes_in 0 99116 station_ip 37.129.132.160 99116 port 18 99116 unique_id port 99116 remote_ip 10.8.0.50 99117 username amir 99117 mac 99117 bytes_out 0 99117 bytes_in 0 99117 station_ip 83.123.83.84 99117 port 2 99117 unique_id port 99118 username amir 99118 mac 99118 bytes_out 0 99118 bytes_in 0 99118 station_ip 83.123.83.84 99118 port 8 99118 unique_id port 99118 remote_ip 10.8.1.34 99122 username amir 99122 mac 99122 bytes_out 0 99122 bytes_in 0 99122 station_ip 83.123.83.84 99122 port 8 99122 unique_id port 99122 remote_ip 10.8.1.34 99124 username mohammadmahdi 99124 mac 99124 bytes_out 0 99124 bytes_in 0 99124 station_ip 83.123.159.119 99124 port 22 99124 unique_id port 99124 remote_ip 10.8.0.34 99126 username asadi 99126 mac 99126 bytes_out 0 99126 bytes_in 0 99126 station_ip 37.129.132.160 99126 port 2 99126 unique_id port 99126 remote_ip 10.8.0.50 99132 username amir 99132 mac 99132 bytes_out 0 99132 bytes_in 0 99132 station_ip 83.123.83.84 99132 port 8 99132 unique_id port 99132 remote_ip 10.8.1.34 99137 username askari 99137 mac 99137 bytes_out 0 99137 bytes_in 0 99137 station_ip 5.119.173.201 99137 port 25 99137 unique_id port 99138 username amir 99138 mac 99138 bytes_out 0 99138 bytes_in 0 99138 station_ip 83.123.83.84 99138 port 8 99138 unique_id port 99138 remote_ip 10.8.1.34 99139 username amir 99139 mac 99139 bytes_out 0 99139 bytes_in 0 99139 station_ip 83.123.83.84 99139 port 11 99139 unique_id port 99139 remote_ip 10.8.0.54 99140 username jamali 99140 mac 99140 bytes_out 0 99140 bytes_in 0 99140 station_ip 5.120.49.25 99140 port 20 99140 unique_id port 99141 username amir 99141 mac 99141 bytes_out 0 99141 bytes_in 0 99141 station_ip 83.123.83.84 99141 port 8 99141 unique_id port 99141 remote_ip 10.8.1.34 99142 username amir 99142 mac 99142 bytes_out 0 99142 bytes_in 0 99142 station_ip 83.123.83.84 99142 port 20 99142 unique_id port 99142 remote_ip 10.8.0.54 99143 username amir 99143 mac 99143 bytes_out 0 99143 bytes_in 0 99143 station_ip 83.123.83.84 99143 port 8 99143 unique_id port 99143 remote_ip 10.8.1.34 99148 username askari 99148 mac 99148 bytes_out 0 99148 bytes_in 0 99148 station_ip 5.119.173.201 99148 port 18 99148 unique_id port 99148 remote_ip 10.8.0.38 99150 username askari 99150 mac 99150 bytes_out 46032 99150 bytes_in 176350 99150 station_ip 5.119.173.201 99150 port 18 99150 unique_id port 99120 bytes_out 0 99120 bytes_in 0 99120 station_ip 5.120.49.25 99120 port 20 99120 unique_id port 99120 remote_ip 10.8.0.62 99121 username asadi 99121 mac 99121 bytes_out 0 99121 bytes_in 0 99121 station_ip 37.129.132.160 99121 port 11 99121 unique_id port 99121 remote_ip 10.8.0.50 99125 username amir 99125 mac 99125 bytes_out 0 99125 bytes_in 0 99125 station_ip 83.123.83.84 99125 port 11 99125 unique_id port 99125 remote_ip 10.8.0.54 99129 username amir 99129 mac 99129 bytes_out 0 99129 bytes_in 0 99129 station_ip 83.123.83.84 99129 port 8 99129 unique_id port 99129 remote_ip 10.8.1.34 99131 username amir 99131 mac 99131 bytes_out 0 99131 bytes_in 0 99131 station_ip 83.123.83.84 99131 port 8 99131 unique_id port 99131 remote_ip 10.8.1.34 99134 username amir 99134 mac 99134 bytes_out 0 99134 bytes_in 0 99134 station_ip 83.123.83.84 99134 port 11 99134 unique_id port 99134 remote_ip 10.8.0.54 99144 username amir 99144 mac 99144 bytes_out 0 99144 bytes_in 0 99144 station_ip 83.123.83.84 99144 port 20 99144 unique_id port 99144 remote_ip 10.8.0.54 99146 username askari 99146 mac 99146 bytes_out 1321564 99146 bytes_in 16018843 99146 station_ip 5.119.173.201 99146 port 18 99146 unique_id port 99146 remote_ip 10.8.0.38 99149 username amir 99149 mac 99149 bytes_out 0 99149 bytes_in 0 99149 station_ip 83.123.83.84 99149 port 8 99149 unique_id port 99149 remote_ip 10.8.1.34 99151 username amir 99151 mac 99151 bytes_out 0 99151 bytes_in 0 99151 station_ip 83.123.83.84 99151 port 8 99151 unique_id port 99151 remote_ip 10.8.1.34 99156 username amir 99156 mac 99156 bytes_out 15096 99156 bytes_in 130645 99156 station_ip 83.123.83.84 99156 port 8 99156 unique_id port 99156 remote_ip 10.8.1.34 99157 username amir 99157 mac 99157 bytes_out 0 99157 bytes_in 0 99157 station_ip 83.123.83.84 99157 port 20 99157 unique_id port 99157 remote_ip 10.8.0.54 99160 username alipour 99160 mac 99160 bytes_out 0 99160 bytes_in 0 99160 station_ip 83.122.239.19 99160 port 12 99160 unique_id port 99160 remote_ip 10.8.0.70 99161 username amir 99161 mac 99161 bytes_out 0 99161 bytes_in 0 99161 station_ip 83.123.83.84 99161 port 20 99161 unique_id port 99161 remote_ip 10.8.0.54 99164 username amir 99164 mac 99164 bytes_out 50148 99164 bytes_in 128252 99164 station_ip 83.123.83.84 99164 port 8 99164 unique_id port 99164 remote_ip 10.8.1.34 99166 username forozande 99166 mac 99166 bytes_out 81542 99166 bytes_in 84448 99166 station_ip 37.129.101.147 99166 port 9 99166 unique_id port 99166 remote_ip 10.8.1.62 99167 username forozande 99167 unique_id port 99167 terminate_cause User-Request 99167 bytes_out 0 99167 bytes_in 0 99167 station_ip 37.129.101.147 99167 port 15729236 99167 nas_port_type Virtual 99167 remote_ip 5.5.5.69 99171 username aminvpn 99171 mac 99171 bytes_out 0 99171 bytes_in 0 99171 station_ip 37.129.112.209 99171 port 18 99171 unique_id port 99171 remote_ip 10.8.0.6 99177 username aminvpn 99177 mac 99177 bytes_out 0 99177 bytes_in 0 99177 station_ip 5.120.136.19 99177 port 20 99177 unique_id port 99177 remote_ip 10.8.0.6 99178 username aminvpn 99178 mac 99178 bytes_out 0 99178 bytes_in 0 99178 station_ip 37.129.112.209 99178 port 22 99178 unique_id port 99178 remote_ip 10.8.0.6 99150 remote_ip 10.8.0.38 99154 username askari 99154 mac 99154 bytes_out 0 99154 bytes_in 0 99154 station_ip 5.119.173.201 99154 port 18 99154 unique_id port 99154 remote_ip 10.8.0.38 99158 username jamali 99158 kill_reason Another user logged on this global unique id 99158 mac 99158 bytes_out 0 99158 bytes_in 0 99158 station_ip 5.119.45.23 99158 port 11 99158 unique_id port 99159 username asadi 99159 mac 99159 bytes_out 0 99159 bytes_in 0 99159 station_ip 37.129.132.160 99159 port 2 99159 unique_id port 99159 remote_ip 10.8.0.50 99163 username asadi 99163 mac 99163 bytes_out 0 99163 bytes_in 0 99163 station_ip 37.129.132.160 99163 port 2 99163 unique_id port 99163 remote_ip 10.8.0.50 99168 username aminvpn 99168 mac 99168 bytes_out 0 99168 bytes_in 0 99168 station_ip 37.129.112.209 99168 port 18 99168 unique_id port 99168 remote_ip 10.8.0.6 99169 username ahmadipour 99169 unique_id port 99169 terminate_cause Lost-Carrier 99169 bytes_out 3497641 99169 bytes_in 14692407 99169 station_ip 83.123.44.18 99169 port 15729237 99169 nas_port_type Virtual 99169 remote_ip 5.5.5.70 99170 username aminvpn 99170 mac 99170 bytes_out 0 99170 bytes_in 0 99170 station_ip 5.120.136.19 99170 port 20 99170 unique_id port 99170 remote_ip 10.8.0.6 99172 username aminvpn 99172 mac 99172 bytes_out 0 99172 bytes_in 0 99172 station_ip 5.120.136.19 99172 port 20 99172 unique_id port 99172 remote_ip 10.8.0.6 99173 username aminvpn 99173 mac 99173 bytes_out 0 99173 bytes_in 0 99173 station_ip 37.129.112.209 99173 port 18 99173 unique_id port 99173 remote_ip 10.8.0.6 99174 username aminvpn 99174 mac 99174 bytes_out 0 99174 bytes_in 0 99174 station_ip 5.120.136.19 99174 port 20 99174 unique_id port 99174 remote_ip 10.8.0.6 99176 username aminvpn 99176 mac 99176 bytes_out 0 99176 bytes_in 0 99176 station_ip 37.129.112.209 99176 port 18 99176 unique_id port 99176 remote_ip 10.8.0.6 99181 username aminvpn 99181 mac 99181 bytes_out 0 99181 bytes_in 0 99181 station_ip 5.120.136.19 99181 port 20 99181 unique_id port 99181 remote_ip 10.8.0.6 99183 username aminvpn 99183 mac 99183 bytes_out 0 99183 bytes_in 0 99183 station_ip 37.129.112.209 99183 port 25 99183 unique_id port 99183 remote_ip 10.8.0.6 99187 username amir 99187 mac 99187 bytes_out 0 99187 bytes_in 0 99187 station_ip 83.123.83.84 99187 port 24 99187 unique_id port 99187 remote_ip 10.8.0.54 99189 username aminvpn 99189 mac 99189 bytes_out 0 99189 bytes_in 0 99189 station_ip 37.129.112.209 99189 port 8 99189 unique_id port 99189 remote_ip 10.8.1.26 99192 username amir 99192 mac 99192 bytes_out 0 99192 bytes_in 0 99192 station_ip 83.123.83.84 99192 port 8 99192 unique_id port 99192 remote_ip 10.8.1.34 99193 username amir 99193 mac 99193 bytes_out 0 99193 bytes_in 0 99193 station_ip 83.123.83.84 99193 port 8 99193 unique_id port 99193 remote_ip 10.8.1.34 99194 username aminvpn 99194 mac 99194 bytes_out 134027 99194 bytes_in 708611 99194 station_ip 37.129.112.209 99194 port 20 99194 unique_id port 99194 remote_ip 10.8.0.6 99195 username amir 99195 mac 99195 bytes_out 0 99195 bytes_in 0 99195 station_ip 83.123.83.84 99195 port 8 99195 unique_id port 99195 remote_ip 10.8.1.34 99196 username asadi 99196 mac 99196 bytes_out 0 99196 bytes_in 0 99155 station_ip 5.119.45.23 99155 port 11 99155 unique_id port 99155 remote_ip 10.8.0.62 99162 username amir 99162 mac 99162 bytes_out 0 99162 bytes_in 0 99162 station_ip 83.123.83.84 99162 port 8 99162 unique_id port 99162 remote_ip 10.8.1.34 99165 username asadi 99165 mac 99165 bytes_out 0 99165 bytes_in 0 99165 station_ip 91.251.62.205 99165 port 2 99165 unique_id port 99165 remote_ip 10.8.0.50 99175 username amir 99175 mac 99175 bytes_out 425484 99175 bytes_in 1435519 99175 station_ip 83.123.83.84 99175 port 8 99175 unique_id port 99175 remote_ip 10.8.1.34 99179 username aminvpn 99179 mac 99179 bytes_out 0 99179 bytes_in 0 99179 station_ip 5.120.136.19 99179 port 20 99179 unique_id port 99179 remote_ip 10.8.0.6 99180 username aminvpn 99180 mac 99180 bytes_out 0 99180 bytes_in 0 99180 station_ip 37.129.112.209 99180 port 22 99180 unique_id port 99180 remote_ip 10.8.0.6 99182 username amir 99182 mac 99182 bytes_out 0 99182 bytes_in 0 99182 station_ip 83.123.83.84 99182 port 24 99182 unique_id port 99182 remote_ip 10.8.0.54 99184 username amir 99184 mac 99184 bytes_out 0 99184 bytes_in 0 99184 station_ip 83.123.83.84 99184 port 24 99184 unique_id port 99184 remote_ip 10.8.0.54 99191 username amir 99191 mac 99191 bytes_out 0 99191 bytes_in 0 99191 station_ip 83.123.83.84 99191 port 20 99191 unique_id port 99191 remote_ip 10.8.0.54 99199 username amir 99199 mac 99199 bytes_out 0 99199 bytes_in 0 99199 station_ip 83.123.83.84 99199 port 2 99199 unique_id port 99199 remote_ip 10.8.0.54 99200 username mirzaei 99200 mac 99200 bytes_out 0 99200 bytes_in 0 99200 station_ip 5.120.111.133 99200 port 23 99200 unique_id port 99202 username jamali 99202 kill_reason Another user logged on this global unique id 99202 mac 99202 bytes_out 0 99202 bytes_in 0 99202 station_ip 5.119.45.23 99202 port 11 99202 unique_id port 99204 username amir 99204 mac 99204 bytes_out 0 99204 bytes_in 0 99204 station_ip 83.123.83.84 99204 port 2 99204 unique_id port 99204 remote_ip 10.8.0.54 99206 username amir 99206 mac 99206 bytes_out 0 99206 bytes_in 0 99206 station_ip 83.123.83.84 99206 port 2 99206 unique_id port 99206 remote_ip 10.8.0.54 99207 username forozande 99207 mac 99207 bytes_out 155581 99207 bytes_in 157930 99207 station_ip 83.122.69.138 99207 port 20 99207 unique_id port 99207 remote_ip 10.8.0.74 99209 username madadi2 99209 mac 99209 bytes_out 3225269 99209 bytes_in 40399445 99209 station_ip 5.119.110.198 99209 port 22 99209 unique_id port 99209 remote_ip 10.8.0.26 99213 username amir 99213 mac 99213 bytes_out 7608 99213 bytes_in 44812 99213 station_ip 83.123.83.84 99213 port 22 99213 unique_id port 99213 remote_ip 10.8.0.54 99218 username forozande 99218 kill_reason Another user logged on this global unique id 99218 mac 99218 bytes_out 0 99218 bytes_in 0 99218 station_ip 37.129.93.238 99218 port 2 99218 unique_id port 99218 remote_ip 10.8.0.74 99219 username aminvpn 99219 mac 99219 bytes_out 2049807 99219 bytes_in 17005309 99219 station_ip 37.129.112.209 99219 port 20 99219 unique_id port 99219 remote_ip 10.8.0.6 99223 username amir 99223 mac 99223 bytes_out 0 99223 bytes_in 0 99223 station_ip 83.123.83.84 99223 port 8 99223 unique_id port 99223 remote_ip 10.8.1.34 99226 username amir 99185 username aminvpn 99185 mac 99185 bytes_out 0 99185 bytes_in 0 99185 station_ip 37.129.112.209 99185 port 8 99185 unique_id port 99185 remote_ip 10.8.1.26 99186 username aminvpn 99186 mac 99186 bytes_out 0 99186 bytes_in 0 99186 station_ip 5.120.136.19 99186 port 20 99186 unique_id port 99186 remote_ip 10.8.0.6 99188 username forozande 99188 mac 99188 bytes_out 0 99188 bytes_in 0 99188 station_ip 37.129.43.180 99188 port 22 99188 unique_id port 99188 remote_ip 10.8.0.74 99190 username amir 99190 mac 99190 bytes_out 338557 99190 bytes_in 3199382 99190 station_ip 83.123.83.84 99190 port 20 99190 unique_id port 99190 remote_ip 10.8.0.54 99197 username jamali 99197 kill_reason Another user logged on this global unique id 99197 mac 99197 bytes_out 0 99197 bytes_in 0 99197 station_ip 5.119.45.23 99197 port 11 99197 unique_id port 99201 username amir 99201 mac 99201 bytes_out 55327 99201 bytes_in 168702 99201 station_ip 83.123.83.84 99201 port 8 99201 unique_id port 99201 remote_ip 10.8.1.34 99203 username aminvpn 99203 mac 99203 bytes_out 3181611 99203 bytes_in 9710452 99203 station_ip 37.129.112.209 99203 port 20 99203 unique_id port 99203 remote_ip 10.8.0.6 99208 username amir 99208 mac 99208 bytes_out 4618 99208 bytes_in 17667 99208 station_ip 83.123.83.84 99208 port 8 99208 unique_id port 99208 remote_ip 10.8.1.34 99214 username madadi2 99214 mac 99214 bytes_out 368315 99214 bytes_in 1591627 99214 station_ip 5.119.228.189 99214 port 23 99214 unique_id port 99214 remote_ip 10.8.0.26 99216 username amir 99216 mac 99216 bytes_out 0 99216 bytes_in 0 99216 station_ip 83.123.83.84 99216 port 22 99216 unique_id port 99216 remote_ip 10.8.0.54 99222 username forozande 99222 mac 99222 bytes_out 0 99222 bytes_in 0 99222 station_ip 37.129.93.238 99222 port 2 99222 unique_id port 99228 username amir 99228 mac 99228 bytes_out 0 99228 bytes_in 0 99228 station_ip 83.123.83.84 99228 port 2 99228 unique_id port 99228 remote_ip 10.8.0.54 99232 username amir 99232 mac 99232 bytes_out 0 99232 bytes_in 0 99232 station_ip 83.123.83.84 99232 port 24 99232 unique_id port 99232 remote_ip 10.8.0.54 99234 username farhad1 99234 mac 99234 bytes_out 0 99234 bytes_in 0 99234 station_ip 5.119.51.89 99234 port 23 99234 unique_id port 99234 remote_ip 10.8.0.102 99235 username amir 99235 mac 99235 bytes_out 0 99235 bytes_in 0 99235 station_ip 83.123.83.84 99235 port 8 99235 unique_id port 99235 remote_ip 10.8.1.34 99237 username amir 99237 kill_reason Maximum check online fails reached 99237 mac 99237 bytes_out 0 99237 bytes_in 0 99237 station_ip 83.123.83.84 99237 port 18 99237 unique_id port 99239 username aminvpn 99239 unique_id port 99239 terminate_cause User-Request 99239 bytes_out 18656259 99239 bytes_in 654185067 99239 station_ip 31.57.130.211 99239 port 15729233 99239 nas_port_type Virtual 99239 remote_ip 5.5.5.73 99245 username amir 99245 mac 99245 bytes_out 0 99245 bytes_in 0 99245 station_ip 83.123.83.84 99245 port 23 99245 unique_id port 99245 remote_ip 10.8.0.54 99246 username aminvpn 99246 mac 99246 bytes_out 0 99246 bytes_in 0 99246 station_ip 83.122.199.105 99246 port 2 99246 unique_id port 99246 remote_ip 10.8.0.6 99251 username amir 99251 mac 99251 bytes_out 0 99251 bytes_in 0 99196 station_ip 37.129.112.149 99196 port 2 99196 unique_id port 99196 remote_ip 10.8.0.50 99198 username sobhan 99198 unique_id port 99198 terminate_cause Lost-Carrier 99198 bytes_out 3186477 99198 bytes_in 68142411 99198 station_ip 5.120.151.147 99198 port 15729238 99198 nas_port_type Virtual 99198 remote_ip 5.5.5.84 99205 username aminvpn 99205 mac 99205 bytes_out 215619 99205 bytes_in 2708830 99205 station_ip 37.129.112.209 99205 port 23 99205 unique_id port 99205 remote_ip 10.8.0.6 99210 username amir 99210 mac 99210 bytes_out 9573 99210 bytes_in 57331 99210 station_ip 83.123.83.84 99210 port 22 99210 unique_id port 99210 remote_ip 10.8.0.54 99211 username amir 99211 mac 99211 bytes_out 0 99211 bytes_in 0 99211 station_ip 83.123.83.84 99211 port 22 99211 unique_id port 99211 remote_ip 10.8.0.54 99212 username sobhan 99212 unique_id port 99212 terminate_cause User-Request 99212 bytes_out 9951284 99212 bytes_in 222055268 99212 station_ip 5.120.107.118 99212 port 15729239 99212 nas_port_type Virtual 99212 remote_ip 5.5.5.68 99215 username amir 99215 mac 99215 bytes_out 0 99215 bytes_in 0 99215 station_ip 83.123.83.84 99215 port 22 99215 unique_id port 99215 remote_ip 10.8.0.54 99217 username amir 99217 mac 99217 bytes_out 0 99217 bytes_in 0 99217 station_ip 83.123.83.84 99217 port 22 99217 unique_id port 99217 remote_ip 10.8.0.54 99220 username amir 99220 mac 99220 bytes_out 0 99220 bytes_in 0 99220 station_ip 83.123.83.84 99220 port 8 99220 unique_id port 99220 remote_ip 10.8.1.34 99221 username mohammadmahdi 99221 kill_reason Another user logged on this global unique id 99221 mac 99221 bytes_out 0 99221 bytes_in 0 99221 station_ip 37.129.114.91 99221 port 18 99221 unique_id port 99221 remote_ip 10.8.0.34 99224 username amir 99224 mac 99224 bytes_out 0 99224 bytes_in 0 99224 station_ip 83.123.83.84 99224 port 8 99224 unique_id port 99224 remote_ip 10.8.1.34 99225 username amir 99225 mac 99225 bytes_out 0 99225 bytes_in 0 99225 station_ip 83.123.83.84 99225 port 8 99225 unique_id port 99225 remote_ip 10.8.1.34 99229 username amir 99229 mac 99229 bytes_out 0 99229 bytes_in 0 99229 station_ip 83.123.83.84 99229 port 2 99229 unique_id port 99229 remote_ip 10.8.0.54 99230 username amir 99230 mac 99230 bytes_out 0 99230 bytes_in 0 99230 station_ip 83.123.83.84 99230 port 2 99230 unique_id port 99230 remote_ip 10.8.0.54 99236 username amir 99236 mac 99236 bytes_out 0 99236 bytes_in 0 99236 station_ip 83.123.83.84 99236 port 8 99236 unique_id port 99236 remote_ip 10.8.1.34 99240 username amir 99240 mac 99240 bytes_out 13670 99240 bytes_in 122005 99240 station_ip 83.123.83.84 99240 port 20 99240 unique_id port 99240 remote_ip 10.8.0.54 99242 username amir 99242 mac 99242 bytes_out 0 99242 bytes_in 0 99242 station_ip 83.123.83.84 99242 port 8 99242 unique_id port 99242 remote_ip 10.8.1.34 99243 username amir 99243 mac 99243 bytes_out 0 99243 bytes_in 0 99243 station_ip 83.123.83.84 99243 port 20 99243 unique_id port 99243 remote_ip 10.8.0.54 99244 username amir 99244 mac 99244 bytes_out 92676 99244 bytes_in 551706 99244 station_ip 83.123.83.84 99244 port 20 99244 unique_id port 99244 remote_ip 10.8.0.54 99248 username amir 99248 mac 99248 bytes_out 6143 99248 bytes_in 13928 99248 station_ip 83.123.83.84 99226 mac 99226 bytes_out 0 99226 bytes_in 0 99226 station_ip 83.123.83.84 99226 port 8 99226 unique_id port 99226 remote_ip 10.8.1.34 99227 username aminvpn 99227 mac 99227 bytes_out 0 99227 bytes_in 0 99227 station_ip 37.129.112.209 99227 port 20 99227 unique_id port 99227 remote_ip 10.8.0.6 99231 username mohammadmahdi 99231 mac 99231 bytes_out 0 99231 bytes_in 0 99231 station_ip 37.129.114.91 99231 port 18 99231 unique_id port 99233 username madadi2 99233 mac 99233 bytes_out 0 99233 bytes_in 0 99233 station_ip 5.120.187.167 99233 port 20 99233 unique_id port 99233 remote_ip 10.8.0.26 99238 username amir 99238 mac 99238 bytes_out 0 99238 bytes_in 0 99238 station_ip 83.123.83.84 99238 port 20 99238 unique_id port 99238 remote_ip 10.8.0.54 99241 username amir 99241 mac 99241 bytes_out 0 99241 bytes_in 0 99241 station_ip 83.123.83.84 99241 port 8 99241 unique_id port 99241 remote_ip 10.8.1.34 99247 username amir 99247 mac 99247 bytes_out 0 99247 bytes_in 0 99247 station_ip 83.123.83.84 99247 port 20 99247 unique_id port 99247 remote_ip 10.8.0.54 99256 username amir 99256 mac 99256 bytes_out 0 99256 bytes_in 0 99256 station_ip 83.123.83.84 99256 port 8 99256 unique_id port 99256 remote_ip 10.8.1.34 99257 username amir 99257 mac 99257 bytes_out 0 99257 bytes_in 0 99257 station_ip 83.123.83.84 99257 port 8 99257 unique_id port 99257 remote_ip 10.8.1.34 99259 username khalili 99259 kill_reason Another user logged on this global unique id 99259 mac 99259 bytes_out 0 99259 bytes_in 0 99259 station_ip 5.119.121.30 99259 port 14 99259 unique_id port 99259 remote_ip 10.8.0.78 99262 username amir 99262 mac 99262 bytes_out 0 99262 bytes_in 0 99262 station_ip 83.123.83.84 99262 port 8 99262 unique_id port 99262 remote_ip 10.8.1.34 99263 username amir 99263 mac 99263 bytes_out 0 99263 bytes_in 0 99263 station_ip 83.123.83.84 99263 port 11 99263 unique_id port 99263 remote_ip 10.8.0.54 99266 username jamali 99266 mac 99266 bytes_out 0 99266 bytes_in 0 99266 station_ip 5.119.45.23 99266 port 23 99266 unique_id port 99266 remote_ip 10.8.0.62 99269 username forozande 99269 mac 99269 bytes_out 433198 99269 bytes_in 4576789 99269 station_ip 83.122.140.232 99269 port 11 99269 unique_id port 99269 remote_ip 10.8.0.74 99270 username farhad1 99270 mac 99270 bytes_out 0 99270 bytes_in 0 99270 station_ip 5.119.126.187 99270 port 11 99270 unique_id port 99270 remote_ip 10.8.0.102 99272 username aminvpn 99272 mac 99272 bytes_out 236295 99272 bytes_in 672930 99272 station_ip 83.123.144.151 99272 port 8 99272 unique_id port 99272 remote_ip 10.8.1.26 99273 username jamali 99273 mac 99273 bytes_out 781310 99273 bytes_in 8848009 99273 station_ip 5.119.45.23 99273 port 11 99273 unique_id port 99273 remote_ip 10.8.0.62 99275 username aminvpn 99275 mac 99275 bytes_out 118502 99275 bytes_in 131692 99275 station_ip 83.123.144.151 99275 port 8 99275 unique_id port 99275 remote_ip 10.8.1.26 99276 username madadi2 99276 mac 99276 bytes_out 23058 99276 bytes_in 11102 99276 station_ip 5.120.60.158 99276 port 25 99276 unique_id port 99276 remote_ip 10.8.0.26 99279 username jamali 99279 mac 99279 bytes_out 0 99279 bytes_in 0 99279 station_ip 5.119.45.23 99279 port 26 99279 unique_id port 99248 port 8 99248 unique_id port 99248 remote_ip 10.8.1.34 99249 username amir 99249 mac 99249 bytes_out 0 99249 bytes_in 0 99249 station_ip 83.123.83.84 99249 port 2 99249 unique_id port 99249 remote_ip 10.8.0.54 99250 username amir 99250 mac 99250 bytes_out 0 99250 bytes_in 0 99250 station_ip 83.123.83.84 99250 port 8 99250 unique_id port 99250 remote_ip 10.8.1.34 99252 username amir 99252 kill_reason Maximum check online fails reached 99252 mac 99252 bytes_out 0 99252 bytes_in 0 99252 station_ip 83.123.83.84 99252 port 2 99252 unique_id port 99254 username madadi2 99254 mac 99254 bytes_out 90391 99254 bytes_in 91471 99254 station_ip 5.119.179.182 99254 port 20 99254 unique_id port 99254 remote_ip 10.8.0.26 99261 username amir 99261 mac 99261 bytes_out 12639 99261 bytes_in 42276 99261 station_ip 83.123.83.84 99261 port 8 99261 unique_id port 99261 remote_ip 10.8.1.34 99265 username askari 99265 kill_reason Another user logged on this global unique id 99265 mac 99265 bytes_out 0 99265 bytes_in 0 99265 station_ip 5.119.97.67 99265 port 20 99265 unique_id port 99265 remote_ip 10.8.0.38 99271 username jamali 99271 mac 99271 bytes_out 0 99271 bytes_in 0 99271 station_ip 5.119.45.23 99271 port 23 99271 unique_id port 99271 remote_ip 10.8.0.62 99274 username amir 99274 mac 99274 bytes_out 20013 99274 bytes_in 41269 99274 station_ip 46.225.210.81 99274 port 23 99274 unique_id port 99274 remote_ip 10.8.0.54 99281 username askari 99281 mac 99281 bytes_out 0 99281 bytes_in 0 99281 station_ip 5.119.97.67 99281 port 8 99281 unique_id port 99281 remote_ip 10.8.1.30 99284 username amir 99284 mac 99284 bytes_out 0 99284 bytes_in 0 99284 station_ip 46.225.210.81 99284 port 20 99284 unique_id port 99284 remote_ip 10.8.0.54 99287 username amir 99287 mac 99287 bytes_out 726599 99287 bytes_in 3724168 99287 station_ip 46.225.210.81 99287 port 20 99287 unique_id port 99287 remote_ip 10.8.0.54 99294 username khalili 99294 mac 99294 bytes_out 0 99294 bytes_in 0 99294 station_ip 5.119.121.30 99294 port 14 99294 unique_id port 99297 username khalili 99297 mac 99297 bytes_out 7101 99297 bytes_in 13800 99297 station_ip 5.119.101.132 99297 port 9 99297 unique_id port 99297 remote_ip 10.8.1.66 99304 username farhad1 99304 kill_reason Another user logged on this global unique id 99304 mac 99304 bytes_out 0 99304 bytes_in 0 99304 station_ip 5.119.126.187 99304 port 24 99304 unique_id port 99307 username mohammadreza 99307 mac 99307 bytes_out 0 99307 bytes_in 0 99307 station_ip 2.184.11.219 99307 port 10 99307 unique_id port 99307 remote_ip 10.8.1.10 99310 username mirzaei 99310 mac 99310 bytes_out 4135664 99310 bytes_in 49817604 99310 station_ip 5.120.189.238 99310 port 25 99310 unique_id port 99310 remote_ip 10.8.0.30 99314 username askari 99314 mac 99314 bytes_out 0 99314 bytes_in 0 99314 station_ip 5.120.144.118 99314 port 9 99314 unique_id port 99314 remote_ip 10.8.1.30 99318 username askari 99318 mac 99318 bytes_out 0 99318 bytes_in 0 99318 station_ip 5.119.13.235 99318 port 9 99318 unique_id port 99318 remote_ip 10.8.1.30 99319 username mahdiyehalizadeh 99319 mac 99319 bytes_out 393460 99319 bytes_in 4338071 99319 station_ip 37.129.60.60 99319 port 20 99319 unique_id port 99319 remote_ip 10.8.0.42 99320 username farhad1 99251 station_ip 83.123.83.84 99251 port 8 99251 unique_id port 99251 remote_ip 10.8.1.34 99253 username forozande 99253 mac 99253 bytes_out 5157 99253 bytes_in 12217 99253 station_ip 83.123.149.61 99253 port 23 99253 unique_id port 99253 remote_ip 10.8.0.74 99255 username amir 99255 mac 99255 bytes_out 0 99255 bytes_in 0 99255 station_ip 83.123.83.84 99255 port 8 99255 unique_id port 99255 remote_ip 10.8.1.34 99258 username amir 99258 mac 99258 bytes_out 0 99258 bytes_in 0 99258 station_ip 83.123.83.84 99258 port 20 99258 unique_id port 99258 remote_ip 10.8.0.54 99260 username jamali 99260 mac 99260 bytes_out 0 99260 bytes_in 0 99260 station_ip 5.119.45.23 99260 port 11 99260 unique_id port 99264 username amir 99264 mac 99264 bytes_out 0 99264 bytes_in 0 99264 station_ip 83.123.83.84 99264 port 8 99264 unique_id port 99264 remote_ip 10.8.1.34 99267 username farhad1 99267 mac 99267 bytes_out 0 99267 bytes_in 0 99267 station_ip 5.119.126.187 99267 port 24 99267 unique_id port 99267 remote_ip 10.8.0.102 99268 username jamali 99268 mac 99268 bytes_out 14662 99268 bytes_in 18855 99268 station_ip 5.119.45.23 99268 port 25 99268 unique_id port 99268 remote_ip 10.8.0.62 99277 username khalili 99277 kill_reason Another user logged on this global unique id 99277 mac 99277 bytes_out 0 99277 bytes_in 0 99277 station_ip 5.119.121.30 99277 port 14 99277 unique_id port 99278 username amir 99278 mac 99278 bytes_out 12518 99278 bytes_in 30656 99278 station_ip 46.225.210.81 99278 port 23 99278 unique_id port 99278 remote_ip 10.8.0.54 99280 username askari 99280 mac 99280 bytes_out 0 99280 bytes_in 0 99280 station_ip 5.119.97.67 99280 port 20 99280 unique_id port 99285 username mirzaei 99285 mac 99285 bytes_out 0 99285 bytes_in 0 99285 station_ip 5.119.250.125 99285 port 22 99285 unique_id port 99285 remote_ip 10.8.0.30 99286 username jamali 99286 mac 99286 bytes_out 199647 99286 bytes_in 204469 99286 station_ip 5.119.45.23 99286 port 23 99286 unique_id port 99286 remote_ip 10.8.0.62 99289 username amir 99289 mac 99289 bytes_out 0 99289 bytes_in 0 99289 station_ip 46.225.210.81 99289 port 20 99289 unique_id port 99289 remote_ip 10.8.0.54 99290 username mohammadreza 99290 mac 99290 bytes_out 15237 99290 bytes_in 19151 99290 station_ip 5.233.81.46 99290 port 12 99290 unique_id port 99290 remote_ip 10.8.0.18 99291 username farhad1 99291 kill_reason Another user logged on this global unique id 99291 mac 99291 bytes_out 0 99291 bytes_in 0 99291 station_ip 5.119.126.187 99291 port 24 99291 unique_id port 99291 remote_ip 10.8.0.102 99292 username mohammadreza 99292 mac 99292 bytes_out 21159 99292 bytes_in 30067 99292 station_ip 151.234.20.199 99292 port 12 99292 unique_id port 99292 remote_ip 10.8.0.18 99295 username mohammadmahdi 99295 kill_reason Another user logged on this global unique id 99295 mac 99295 bytes_out 0 99295 bytes_in 0 99295 station_ip 37.129.24.207 99295 port 12 99295 unique_id port 99295 remote_ip 10.8.0.34 99298 username mohammadmahdi 99298 mac 99298 bytes_out 0 99298 bytes_in 0 99298 station_ip 37.129.24.207 99298 port 12 99298 unique_id port 99300 username sobhan 99300 unique_id port 99300 terminate_cause Lost-Carrier 99300 bytes_out 415611 99300 bytes_in 719519 99300 station_ip 5.119.54.226 99300 port 15729241 99300 nas_port_type Virtual 99279 remote_ip 10.8.0.62 99282 username mohammadreza 99282 mac 99282 bytes_out 0 99282 bytes_in 0 99282 station_ip 2.183.129.152 99282 port 12 99282 unique_id port 99282 remote_ip 10.8.0.18 99283 username amir 99283 mac 99283 bytes_out 454264 99283 bytes_in 4425779 99283 station_ip 46.225.210.81 99283 port 20 99283 unique_id port 99283 remote_ip 10.8.0.54 99288 username aminvpn 99288 mac 99288 bytes_out 0 99288 bytes_in 0 99288 station_ip 83.123.144.151 99288 port 11 99288 unique_id port 99288 remote_ip 10.8.0.6 99293 username amir 99293 mac 99293 bytes_out 175471 99293 bytes_in 1031328 99293 station_ip 46.225.210.81 99293 port 20 99293 unique_id port 99293 remote_ip 10.8.0.54 99296 username khalili 99296 mac 99296 bytes_out 0 99296 bytes_in 0 99296 station_ip 5.119.121.30 99296 port 8 99296 unique_id port 99296 remote_ip 10.8.1.66 99299 username ahmadi 99299 unique_id port 99299 terminate_cause User-Request 99299 bytes_out 30560 99299 bytes_in 201217 99299 station_ip 113.203.67.212 99299 port 15729242 99299 nas_port_type Virtual 99299 remote_ip 5.5.5.66 99306 username askari 99306 kill_reason Another user logged on this global unique id 99306 mac 99306 bytes_out 0 99306 bytes_in 0 99306 station_ip 5.120.25.119 99306 port 9 99306 unique_id port 99306 remote_ip 10.8.1.30 99309 username askari 99309 mac 99309 bytes_out 0 99309 bytes_in 0 99309 station_ip 5.120.25.119 99309 port 9 99309 unique_id port 99311 username askari 99311 mac 99311 bytes_out 0 99311 bytes_in 0 99311 station_ip 5.120.144.118 99311 port 9 99311 unique_id port 99311 remote_ip 10.8.1.30 99312 username askari 99312 mac 99312 bytes_out 0 99312 bytes_in 0 99312 station_ip 5.120.144.118 99312 port 9 99312 unique_id port 99312 remote_ip 10.8.1.30 99313 username arman1 99313 kill_reason Another user logged on this global unique id 99313 mac 99313 bytes_out 0 99313 bytes_in 0 99313 station_ip 5.119.72.194 99313 port 11 99313 unique_id port 99313 remote_ip 10.8.0.86 99316 username madadi2 99316 mac 99316 bytes_out 840926 99316 bytes_in 5611912 99316 station_ip 5.119.135.144 99316 port 14 99316 unique_id port 99316 remote_ip 10.8.0.26 99321 username mohammadreza 99321 mac 99321 bytes_out 2006966 99321 bytes_in 12059927 99321 station_ip 78.39.127.231 99321 port 11 99321 unique_id port 99321 remote_ip 10.8.1.10 99322 username forozande 99322 kill_reason Another user logged on this global unique id 99322 mac 99322 bytes_out 0 99322 bytes_in 0 99322 station_ip 37.129.227.190 99322 port 11 99322 unique_id port 99322 remote_ip 10.8.1.62 99332 username musa 99332 mac 99332 bytes_out 0 99332 bytes_in 0 99332 station_ip 37.129.119.240 99332 port 12 99332 unique_id port 99333 username sobhan 99333 unique_id port 99333 terminate_cause Lost-Carrier 99333 bytes_out 122878 99333 bytes_in 666534 99333 station_ip 5.119.90.255 99333 port 15729246 99333 nas_port_type Virtual 99333 remote_ip 5.5.5.65 99337 username arman1 99337 mac 99337 bytes_out 0 99337 bytes_in 0 99337 station_ip 5.119.72.194 99337 port 11 99337 unique_id port 99339 username amir 99339 mac 99339 bytes_out 10567816 99339 bytes_in 189869390 99339 station_ip 46.225.210.122 99339 port 11 99339 unique_id port 99339 remote_ip 10.8.1.34 99343 username amir 99343 mac 99343 bytes_out 383564 99343 bytes_in 2038772 99343 station_ip 46.225.210.122 99343 port 12 99300 remote_ip 5.5.5.67 99301 username sobhan 99301 unique_id port 99301 terminate_cause Lost-Carrier 99301 bytes_out 5765263 99301 bytes_in 111729389 99301 station_ip 5.119.54.226 99301 port 15729243 99301 nas_port_type Virtual 99301 remote_ip 5.5.5.67 99302 username forozande 99302 mac 99302 bytes_out 630036 99302 bytes_in 4568513 99302 station_ip 113.203.103.168 99302 port 22 99302 unique_id port 99302 remote_ip 10.8.0.74 99303 username forozande 99303 mac 99303 bytes_out 126658 99303 bytes_in 594686 99303 station_ip 83.122.57.85 99303 port 12 99303 unique_id port 99303 remote_ip 10.8.0.74 99305 username madadi2 99305 mac 99305 bytes_out 0 99305 bytes_in 0 99305 station_ip 5.120.39.11 99305 port 12 99305 unique_id port 99305 remote_ip 10.8.0.26 99308 username aminvpn 99308 mac 99308 bytes_out 230106 99308 bytes_in 243568 99308 station_ip 83.123.144.151 99308 port 11 99308 unique_id port 99308 remote_ip 10.8.0.6 99315 username askari 99315 mac 99315 bytes_out 1295417 99315 bytes_in 6426351 99315 station_ip 5.119.13.235 99315 port 11 99315 unique_id port 99315 remote_ip 10.8.1.30 99317 username mohammadreza 99317 mac 99317 bytes_out 22213 99317 bytes_in 19902 99317 station_ip 2.184.6.118 99317 port 12 99317 unique_id port 99317 remote_ip 10.8.0.18 99324 username abbasaskari 99324 mac 99324 bytes_out 0 99324 bytes_in 0 99324 station_ip 83.123.170.60 99324 port 14 99324 unique_id port 99324 remote_ip 10.8.0.94 99326 username sobhan 99326 unique_id port 99326 terminate_cause Lost-Carrier 99326 bytes_out 13461857 99326 bytes_in 307684847 99326 station_ip 5.119.54.226 99326 port 15729245 99326 nas_port_type Virtual 99326 remote_ip 5.5.5.67 99329 username forozande 99329 mac 99329 bytes_out 0 99329 bytes_in 0 99329 station_ip 37.129.227.190 99329 port 11 99329 unique_id port 99330 username farhad1 99330 kill_reason Another user logged on this global unique id 99330 mac 99330 bytes_out 0 99330 bytes_in 0 99330 station_ip 5.119.126.187 99330 port 24 99330 unique_id port 99340 username amir 99340 mac 99340 bytes_out 0 99340 bytes_in 0 99340 station_ip 46.225.210.122 99340 port 11 99340 unique_id port 99340 remote_ip 10.8.1.34 99344 username fariba 99344 mac 99344 bytes_out 1619897 99344 bytes_in 5160213 99344 station_ip 5.119.207.253 99344 port 19 99344 unique_id port 99344 remote_ip 10.8.0.46 99353 username madadi2 99353 mac 99353 bytes_out 320570 99353 bytes_in 2411664 99353 station_ip 5.120.51.152 99353 port 12 99353 unique_id port 99353 remote_ip 10.8.0.26 99354 username askari 99354 mac 99354 bytes_out 28263 99354 bytes_in 23164 99354 station_ip 5.119.40.223 99354 port 11 99354 unique_id port 99354 remote_ip 10.8.0.38 99356 username askari 99356 mac 99356 bytes_out 0 99356 bytes_in 0 99356 station_ip 5.119.40.223 99356 port 11 99356 unique_id port 99356 remote_ip 10.8.0.38 99358 username askari 99358 mac 99358 bytes_out 915892 99358 bytes_in 14578705 99358 station_ip 5.119.40.223 99358 port 11 99358 unique_id port 99358 remote_ip 10.8.0.38 99359 username amir 99359 mac 99359 bytes_out 0 99359 bytes_in 0 99359 station_ip 46.225.210.122 99359 port 12 99359 unique_id port 99359 remote_ip 10.8.0.54 99363 username abbasaskari 99363 kill_reason Another user logged on this global unique id 99363 mac 99363 bytes_out 0 99363 bytes_in 0 99363 station_ip 83.122.215.209 99363 port 11 99320 kill_reason Another user logged on this global unique id 99320 mac 99320 bytes_out 0 99320 bytes_in 0 99320 station_ip 5.119.126.187 99320 port 24 99320 unique_id port 99323 username mohammadreza 99323 mac 99323 bytes_out 0 99323 bytes_in 0 99323 station_ip 2.183.128.138 99323 port 9 99323 unique_id port 99323 remote_ip 10.8.1.10 99325 username forozande 99325 kill_reason Another user logged on this global unique id 99325 mac 99325 bytes_out 0 99325 bytes_in 0 99325 station_ip 37.129.227.190 99325 port 11 99325 unique_id port 99327 username musa 99327 kill_reason Another user logged on this global unique id 99327 mac 99327 bytes_out 0 99327 bytes_in 0 99327 station_ip 37.129.119.240 99327 port 12 99327 unique_id port 99327 remote_ip 10.8.0.106 99328 username aminvpn 99328 mac 99328 bytes_out 401341 99328 bytes_in 877278 99328 station_ip 5.120.163.56 99328 port 9 99328 unique_id port 99328 remote_ip 10.8.1.26 99331 username farhad1 99331 mac 99331 bytes_out 0 99331 bytes_in 0 99331 station_ip 5.119.126.187 99331 port 24 99331 unique_id port 99334 username farhad1 99334 mac 99334 bytes_out 0 99334 bytes_in 0 99334 station_ip 5.119.126.187 99334 port 9 99334 unique_id port 99334 remote_ip 10.8.1.74 99335 username forozande 99335 kill_reason Another user logged on this global unique id 99335 mac 99335 bytes_out 0 99335 bytes_in 0 99335 station_ip 83.123.25.223 99335 port 11 99335 unique_id port 99335 remote_ip 10.8.1.62 99336 username arman1 99336 kill_reason Another user logged on this global unique id 99336 mac 99336 bytes_out 0 99336 bytes_in 0 99336 station_ip 5.119.72.194 99336 port 11 99336 unique_id port 99338 username ahmadipour 99338 unique_id port 99338 terminate_cause Lost-Carrier 99338 bytes_out 953437 99338 bytes_in 133519 99338 station_ip 83.123.73.230 99338 port 15729247 99338 nas_port_type Virtual 99338 remote_ip 5.5.5.64 99341 username amir 99341 mac 99341 bytes_out 10790392 99341 bytes_in 191799989 99341 station_ip 46.225.210.122 99341 port 11 99341 unique_id port 99341 remote_ip 10.8.1.34 99342 username ahmadi 99342 unique_id port 99342 terminate_cause User-Request 99342 bytes_out 32439 99342 bytes_in 151298 99342 station_ip 113.203.87.40 99342 port 15729248 99342 nas_port_type Virtual 99342 remote_ip 5.5.5.63 99346 username askari 99346 kill_reason Another user logged on this global unique id 99346 mac 99346 bytes_out 0 99346 bytes_in 0 99346 station_ip 5.119.12.42 99346 port 11 99346 unique_id port 99346 remote_ip 10.8.1.30 99349 username askari 99349 mac 99349 bytes_out 0 99349 bytes_in 0 99349 station_ip 5.119.12.42 99349 port 11 99349 unique_id port 99351 username mirzaei 99351 kill_reason Another user logged on this global unique id 99351 mac 99351 bytes_out 0 99351 bytes_in 0 99351 station_ip 5.120.189.238 99351 port 10 99351 unique_id port 99351 remote_ip 10.8.1.70 99352 username askari 99352 mac 99352 bytes_out 189193 99352 bytes_in 2755931 99352 station_ip 5.119.12.42 99352 port 9 99352 unique_id port 99352 remote_ip 10.8.1.30 99357 username mirzaei 99357 kill_reason Another user logged on this global unique id 99357 mac 99357 bytes_out 0 99357 bytes_in 0 99357 station_ip 5.120.189.238 99357 port 10 99357 unique_id port 99362 username forozande 99362 mac 99362 bytes_out 136373 99362 bytes_in 873115 99362 station_ip 37.129.130.33 99362 port 9 99362 unique_id port 99362 remote_ip 10.8.1.62 99365 username aminvpn 99365 unique_id port 99343 unique_id port 99343 remote_ip 10.8.0.54 99345 username aminvpn 99345 mac 99345 bytes_out 0 99345 bytes_in 0 99345 station_ip 5.202.221.246 99345 port 12 99345 unique_id port 99345 remote_ip 10.8.1.26 99347 username madadi2 99347 kill_reason Another user logged on this global unique id 99347 mac 99347 bytes_out 0 99347 bytes_in 0 99347 station_ip 5.119.16.130 99347 port 11 99347 unique_id port 99347 remote_ip 10.8.0.26 99348 username forozande 99348 mac 99348 bytes_out 0 99348 bytes_in 0 99348 station_ip 83.123.25.223 99348 port 9 99348 unique_id port 99348 remote_ip 10.8.1.62 99350 username amir 99350 mac 99350 bytes_out 0 99350 bytes_in 0 99350 station_ip 46.225.210.122 99350 port 11 99350 unique_id port 99350 remote_ip 10.8.0.54 99355 username forozande 99355 mac 99355 bytes_out 111897 99355 bytes_in 539027 99355 station_ip 37.129.155.90 99355 port 9 99355 unique_id port 99355 remote_ip 10.8.1.62 99360 username mahdiyehalizadeh 99360 mac 99360 bytes_out 113670 99360 bytes_in 1023089 99360 station_ip 37.129.171.108 99360 port 11 99360 unique_id port 99360 remote_ip 10.8.0.42 99361 username amir 99361 mac 99361 bytes_out 0 99361 bytes_in 0 99361 station_ip 46.225.210.122 99361 port 11 99361 unique_id port 99361 remote_ip 10.8.0.54 99372 username farhad1 99372 mac 99372 bytes_out 0 99372 bytes_in 0 99372 station_ip 5.120.121.246 99372 port 11 99372 unique_id port 99372 remote_ip 10.8.1.74 99374 username forozande 99374 kill_reason Another user logged on this global unique id 99374 mac 99374 bytes_out 0 99374 bytes_in 0 99374 station_ip 83.123.38.79 99374 port 11 99374 unique_id port 99374 remote_ip 10.8.1.62 99375 username madadi2 99375 mac 99375 bytes_out 0 99375 bytes_in 0 99375 station_ip 5.119.216.241 99375 port 11 99375 unique_id port 99375 remote_ip 10.8.0.26 99376 username khalili 99376 mac 99376 bytes_out 0 99376 bytes_in 0 99376 station_ip 5.119.61.107 99376 port 8 99376 unique_id port 99379 username aminvpn 99379 unique_id port 99379 terminate_cause Lost-Carrier 99379 bytes_out 1632858 99379 bytes_in 24192734 99379 station_ip 5.119.223.49 99379 port 15729253 99379 nas_port_type Virtual 99379 remote_ip 5.5.5.60 99385 username aminvpn 99385 kill_reason Another user logged on this global unique id 99385 mac 99385 bytes_out 0 99385 bytes_in 0 99385 station_ip 83.122.95.26 99385 port 14 99385 unique_id port 99385 remote_ip 10.8.0.6 99387 username aminvpn 99387 mac 99387 bytes_out 0 99387 bytes_in 0 99387 station_ip 83.122.95.26 99387 port 14 99387 unique_id port 99390 username aminvpn 99390 unique_id port 99390 terminate_cause Lost-Carrier 99390 bytes_out 1694942 99390 bytes_in 29339001 99390 station_ip 31.57.142.103 99390 port 15729257 99390 nas_port_type Virtual 99390 remote_ip 5.5.5.58 99391 username amir 99391 mac 99391 bytes_out 0 99391 bytes_in 0 99391 station_ip 46.225.210.122 99391 port 14 99391 unique_id port 99391 remote_ip 10.8.0.54 99394 username amir 99394 mac 99394 bytes_out 0 99394 bytes_in 0 99394 station_ip 46.225.210.122 99394 port 14 99394 unique_id port 99394 remote_ip 10.8.0.54 99398 username morteza 99398 mac 99398 bytes_out 0 99398 bytes_in 0 99398 station_ip 83.122.153.151 99398 port 12 99398 unique_id port 99398 remote_ip 10.8.0.90 99399 username amir 99399 mac 99399 bytes_out 0 99399 bytes_in 0 99399 station_ip 46.225.210.122 99363 unique_id port 99363 remote_ip 10.8.0.94 99364 username abbasaskari 99364 kill_reason Another user logged on this global unique id 99364 mac 99364 bytes_out 0 99364 bytes_in 0 99364 station_ip 83.122.215.209 99364 port 11 99364 unique_id port 99366 username musa 99366 mac 99366 bytes_out 2415104 99366 bytes_in 23050610 99366 station_ip 37.129.119.240 99366 port 19 99366 unique_id port 99366 remote_ip 10.8.0.106 99367 username abbasaskari 99367 kill_reason Another user logged on this global unique id 99367 mac 99367 bytes_out 0 99367 bytes_in 0 99367 station_ip 83.122.215.209 99367 port 11 99367 unique_id port 99369 username abbasaskari 99369 mac 99369 bytes_out 0 99369 bytes_in 0 99369 station_ip 83.122.215.209 99369 port 11 99369 unique_id port 99370 username aminvpn 99370 unique_id port 99370 terminate_cause Lost-Carrier 99370 bytes_out 33486 99370 bytes_in 18619 99370 station_ip 5.202.221.246 99370 port 15729252 99370 nas_port_type Virtual 99370 remote_ip 5.5.5.61 99377 username sobhan 99377 unique_id port 99377 terminate_cause Lost-Carrier 99377 bytes_out 73761 99377 bytes_in 287314 99377 station_ip 5.119.90.255 99377 port 15729254 99377 nas_port_type Virtual 99377 remote_ip 5.5.5.65 99378 username musa 99378 mac 99378 bytes_out 0 99378 bytes_in 0 99378 station_ip 37.129.184.102 99378 port 9 99378 unique_id port 99378 remote_ip 10.8.1.78 99381 username aminvpn 99381 mac 99381 bytes_out 2465258 99381 bytes_in 23344341 99381 station_ip 83.122.95.26 99381 port 14 99381 unique_id port 99381 remote_ip 10.8.0.6 99382 username mirzaei 99382 kill_reason Another user logged on this global unique id 99382 mac 99382 bytes_out 0 99382 bytes_in 0 99382 station_ip 5.120.189.238 99382 port 10 99382 unique_id port 99386 username aminvpn 99386 unique_id port 99386 terminate_cause Lost-Carrier 99386 bytes_out 7100502 99386 bytes_in 155905393 99386 station_ip 31.57.128.198 99386 port 15729256 99386 nas_port_type Virtual 99386 remote_ip 5.5.5.59 99393 username mahdiyehalizadeh 99393 mac 99393 bytes_out 1367046 99393 bytes_in 18390022 99393 station_ip 83.122.151.241 99393 port 19 99393 unique_id port 99393 remote_ip 10.8.0.42 99396 username morteza 99396 mac 99396 bytes_out 0 99396 bytes_in 0 99396 station_ip 83.122.153.151 99396 port 12 99396 unique_id port 99397 username morteza 99397 mac 99397 bytes_out 0 99397 bytes_in 0 99397 station_ip 83.122.153.151 99397 port 12 99397 unique_id port 99397 remote_ip 10.8.0.90 99403 username aminvpn 99403 mac 99403 bytes_out 0 99403 bytes_in 0 99403 station_ip 83.122.2.10 99403 port 12 99403 unique_id port 99403 remote_ip 10.8.0.6 99405 username ahmadipour 99405 unique_id port 99405 terminate_cause Lost-Carrier 99405 bytes_out 2206190 99405 bytes_in 57733404 99405 station_ip 83.123.41.94 99405 port 15729260 99405 nas_port_type Virtual 99405 remote_ip 5.5.5.55 99406 username morteza 99406 mac 99406 bytes_out 0 99406 bytes_in 0 99406 station_ip 83.122.153.151 99406 port 12 99406 unique_id port 99406 remote_ip 10.8.0.90 99407 username amir 99407 mac 99407 bytes_out 0 99407 bytes_in 0 99407 station_ip 46.225.210.122 99407 port 12 99407 unique_id port 99407 remote_ip 10.8.0.54 99408 username alihosseini 99408 mac 99408 bytes_out 0 99408 bytes_in 0 99408 station_ip 5.126.240.184 99408 port 12 99408 unique_id port 99408 remote_ip 10.8.0.14 99412 username morteza 99412 mac 99412 bytes_out 6301 99365 terminate_cause User-Request 99365 bytes_out 51651277 99365 bytes_in 35184001 99365 station_ip 5.202.221.246 99365 port 15729250 99365 nas_port_type Virtual 99365 remote_ip 5.5.5.62 99368 username aminvpn 99368 unique_id port 99368 terminate_cause User-Request 99368 bytes_out 8125 99368 bytes_in 15815 99368 station_ip 5.202.221.246 99368 port 15729251 99368 nas_port_type Virtual 99368 remote_ip 5.5.5.61 99371 username farhad1 99371 mac 99371 bytes_out 0 99371 bytes_in 0 99371 station_ip 5.120.187.255 99371 port 14 99371 unique_id port 99371 remote_ip 10.8.0.102 99373 username khalili 99373 kill_reason Another user logged on this global unique id 99373 mac 99373 bytes_out 0 99373 bytes_in 0 99373 station_ip 5.119.61.107 99373 port 8 99373 unique_id port 99373 remote_ip 10.8.1.66 99380 username farhad1 99380 mac 99380 bytes_out 2782373 99380 bytes_in 25859779 99380 station_ip 5.120.61.64 99380 port 11 99380 unique_id port 99380 remote_ip 10.8.0.102 99383 username aminvpn 99383 mac 99383 bytes_out 960954 99383 bytes_in 4111310 99383 station_ip 5.120.163.56 99383 port 13 99383 unique_id port 99383 remote_ip 10.8.1.26 99384 username amir 99384 mac 99384 bytes_out 3414935 99384 bytes_in 13832640 99384 station_ip 46.225.210.122 99384 port 12 99384 unique_id port 99384 remote_ip 10.8.0.54 99388 username forozande 99388 mac 99388 bytes_out 0 99388 bytes_in 0 99388 station_ip 37.129.203.128 99388 port 9 99388 unique_id port 99388 remote_ip 10.8.1.62 99389 username mahdixz 99389 unique_id port 99389 terminate_cause User-Request 99389 bytes_out 0 99389 bytes_in 0 99389 station_ip 5.119.246.221 99389 port 15729258 99389 nas_port_type Virtual 99389 remote_ip 5.5.5.57 99392 username alihosseini 99392 mac 99392 bytes_out 0 99392 bytes_in 0 99392 station_ip 5.126.254.76 99392 port 14 99392 unique_id port 99392 remote_ip 10.8.0.14 99395 username morteza 99395 kill_reason Another user logged on this global unique id 99395 mac 99395 bytes_out 0 99395 bytes_in 0 99395 station_ip 83.122.153.151 99395 port 12 99395 unique_id port 99395 remote_ip 10.8.0.90 99401 username alihosseini 99401 mac 99401 bytes_out 2285882 99401 bytes_in 22002880 99401 station_ip 5.126.240.184 99401 port 14 99401 unique_id port 99401 remote_ip 10.8.0.14 99410 username alihosseini 99410 mac 99410 bytes_out 0 99410 bytes_in 0 99410 station_ip 5.126.240.184 99410 port 12 99410 unique_id port 99410 remote_ip 10.8.0.14 99411 username aminvpn 99411 unique_id port 99411 terminate_cause Lost-Carrier 99411 bytes_out 12890891 99411 bytes_in 197986498 99411 station_ip 5.202.221.246 99411 port 15729255 99411 nas_port_type Virtual 99411 remote_ip 5.5.5.61 99413 username aminvpn 99413 unique_id port 99413 terminate_cause User-Request 99413 bytes_out 10821575 99413 bytes_in 197694780 99413 station_ip 31.57.130.92 99413 port 15729259 99413 nas_port_type Virtual 99413 remote_ip 5.5.5.56 99414 username alihosseini 99414 mac 99414 bytes_out 43958 99414 bytes_in 299071 99414 station_ip 5.126.240.184 99414 port 12 99414 unique_id port 99414 remote_ip 10.8.0.14 99416 username farhad1 99416 kill_reason Another user logged on this global unique id 99416 mac 99416 bytes_out 0 99416 bytes_in 0 99416 station_ip 5.119.31.79 99416 port 11 99416 unique_id port 99416 remote_ip 10.8.0.102 99417 username amir 99417 mac 99417 bytes_out 0 99417 bytes_in 0 99417 station_ip 46.225.210.122 99417 port 14 99417 unique_id port 99399 port 19 99399 unique_id port 99399 remote_ip 10.8.0.54 99400 username morteza 99400 mac 99400 bytes_out 0 99400 bytes_in 0 99400 station_ip 83.122.153.151 99400 port 19 99400 unique_id port 99400 remote_ip 10.8.0.90 99402 username morteza 99402 mac 99402 bytes_out 0 99402 bytes_in 0 99402 station_ip 83.122.153.151 99402 port 14 99402 unique_id port 99402 remote_ip 10.8.0.90 99404 username alihosseini 99404 mac 99404 bytes_out 0 99404 bytes_in 0 99404 station_ip 5.126.240.184 99404 port 12 99404 unique_id port 99404 remote_ip 10.8.0.14 99409 username morteza 99409 mac 99409 bytes_out 0 99409 bytes_in 0 99409 station_ip 83.122.153.151 99409 port 14 99409 unique_id port 99409 remote_ip 10.8.0.90 99415 username morteza 99415 mac 99415 bytes_out 2393 99415 bytes_in 5334 99415 station_ip 83.122.153.151 99415 port 14 99415 unique_id port 99415 remote_ip 10.8.0.90 99418 username alihosseini 99418 mac 99418 bytes_out 679967 99418 bytes_in 6590260 99418 station_ip 5.126.23.188 99418 port 12 99418 unique_id port 99418 remote_ip 10.8.0.14 99423 username amir 99423 mac 99423 bytes_out 0 99423 bytes_in 0 99423 station_ip 46.225.210.122 99423 port 12 99423 unique_id port 99423 remote_ip 10.8.0.54 99426 username ahmadi 99426 unique_id port 99426 terminate_cause User-Request 99426 bytes_out 543464 99426 bytes_in 1384781 99426 station_ip 113.203.87.40 99426 port 15729261 99426 nas_port_type Virtual 99426 remote_ip 5.5.5.63 99430 username farhad1 99430 kill_reason Another user logged on this global unique id 99430 mac 99430 bytes_out 0 99430 bytes_in 0 99430 station_ip 5.119.31.79 99430 port 11 99430 unique_id port 99432 username farhad1 99432 mac 99432 bytes_out 0 99432 bytes_in 0 99432 station_ip 5.119.31.79 99432 port 11 99432 unique_id port 99434 username musa 99434 mac 99434 bytes_out 0 99434 bytes_in 0 99434 station_ip 83.122.153.9 99434 port 8 99434 unique_id port 99435 username madadi2 99435 mac 99435 bytes_out 0 99435 bytes_in 0 99435 station_ip 5.120.89.161 99435 port 20 99435 unique_id port 99435 remote_ip 10.8.0.26 99436 username madadi2 99436 mac 99436 bytes_out 0 99436 bytes_in 0 99436 station_ip 5.120.7.189 99436 port 14 99436 unique_id port 99436 remote_ip 10.8.0.26 99438 username madadi2 99438 mac 99438 bytes_out 61633 99438 bytes_in 156716 99438 station_ip 5.119.218.151 99438 port 14 99438 unique_id port 99438 remote_ip 10.8.0.26 99440 username madadi2 99440 mac 99440 bytes_out 0 99440 bytes_in 0 99440 station_ip 5.120.155.58 99440 port 19 99440 unique_id port 99440 remote_ip 10.8.0.26 99442 username musa 99442 mac 99442 bytes_out 0 99442 bytes_in 0 99442 station_ip 83.122.3.59 99442 port 12 99442 unique_id port 99446 username mirzaei 99446 kill_reason Another user logged on this global unique id 99446 mac 99446 bytes_out 0 99446 bytes_in 0 99446 station_ip 5.120.189.238 99446 port 10 99446 unique_id port 99452 username aminvpn 99452 mac 99452 bytes_out 0 99452 bytes_in 0 99452 station_ip 5.120.52.23 99452 port 9 99452 unique_id port 99452 remote_ip 10.8.1.26 99454 username aminvpn 99454 mac 99454 bytes_out 0 99454 bytes_in 0 99454 station_ip 5.120.52.23 99454 port 9 99454 unique_id port 99454 remote_ip 10.8.1.26 99455 username aminvpn 99455 mac 99455 bytes_out 1194168 99412 bytes_in 11226 99412 station_ip 83.122.153.151 99412 port 14 99412 unique_id port 99412 remote_ip 10.8.0.90 99419 username amir 99419 mac 99419 bytes_out 0 99419 bytes_in 0 99419 station_ip 46.225.210.122 99419 port 14 99419 unique_id port 99419 remote_ip 10.8.0.54 99420 username musa 99420 kill_reason Another user logged on this global unique id 99420 mac 99420 bytes_out 0 99420 bytes_in 0 99420 station_ip 83.122.153.9 99420 port 8 99420 unique_id port 99420 remote_ip 10.8.1.78 99421 username aminvpn 99421 mac 99421 bytes_out 0 99421 bytes_in 0 99421 station_ip 5.120.136.19 99421 port 9 99421 unique_id port 99421 remote_ip 10.8.1.26 99424 username aminvpn 99424 kill_reason Another user logged on this global unique id 99424 mac 99424 bytes_out 0 99424 bytes_in 0 99424 station_ip 5.120.136.19 99424 port 9 99424 unique_id port 99424 remote_ip 10.8.1.26 99425 username aminvpn 99425 mac 99425 bytes_out 0 99425 bytes_in 0 99425 station_ip 5.120.136.19 99425 port 9 99425 unique_id port 99427 username mohammadmahdi 99427 mac 99427 bytes_out 703159 99427 bytes_in 9439187 99427 station_ip 5.120.32.196 99427 port 12 99427 unique_id port 99427 remote_ip 10.8.0.34 99433 username morteza 99433 mac 99433 bytes_out 0 99433 bytes_in 0 99433 station_ip 83.122.220.147 99433 port 14 99433 unique_id port 99433 remote_ip 10.8.0.90 99441 username musa 99441 kill_reason Another user logged on this global unique id 99441 mac 99441 bytes_out 0 99441 bytes_in 0 99441 station_ip 83.122.3.59 99441 port 12 99441 unique_id port 99441 remote_ip 10.8.0.106 99447 username mammad 99447 unique_id port 99447 terminate_cause User-Request 99447 bytes_out 0 99447 bytes_in 0 99447 station_ip 2.183.251.39 99447 port 15729262 99447 nas_port_type Virtual 99447 remote_ip 5.5.5.54 99449 username mirzaei 99449 kill_reason Another user logged on this global unique id 99449 mac 99449 bytes_out 0 99449 bytes_in 0 99449 station_ip 5.120.189.238 99449 port 10 99449 unique_id port 99450 username mirzaei 99450 kill_reason Another user logged on this global unique id 99450 mac 99450 bytes_out 0 99450 bytes_in 0 99450 station_ip 5.120.189.238 99450 port 10 99450 unique_id port 99453 username aminvpn 99453 mac 99453 bytes_out 0 99453 bytes_in 0 99453 station_ip 5.120.52.23 99453 port 9 99453 unique_id port 99453 remote_ip 10.8.1.26 99461 username aminvpn 99461 mac 99461 bytes_out 0 99461 bytes_in 0 99461 station_ip 5.120.52.23 99461 port 11 99461 unique_id port 99461 remote_ip 10.8.0.6 99468 username aminvpn 99468 mac 99468 bytes_out 0 99468 bytes_in 0 99468 station_ip 5.120.52.23 99468 port 12 99468 unique_id port 99468 remote_ip 10.8.0.6 99470 username askari 99470 mac 99470 bytes_out 0 99470 bytes_in 0 99470 station_ip 5.119.62.160 99470 port 11 99470 unique_id port 99470 remote_ip 10.8.0.38 99471 username aminvpn 99471 kill_reason Maximum check online fails reached 99471 mac 99471 bytes_out 0 99471 bytes_in 0 99471 station_ip 5.120.52.23 99471 port 14 99471 unique_id port 99472 username aminvpn 99472 mac 99472 bytes_out 0 99472 bytes_in 0 99472 station_ip 83.123.239.20 99472 port 12 99472 unique_id port 99472 remote_ip 10.8.0.6 99474 username aminvpn 99474 mac 99474 bytes_out 57289 99474 bytes_in 45529 99474 station_ip 83.123.239.20 99474 port 11 99474 unique_id port 99474 remote_ip 10.8.0.6 99479 username aminvpn 99417 remote_ip 10.8.0.54 99422 username amir 99422 mac 99422 bytes_out 0 99422 bytes_in 0 99422 station_ip 46.225.210.122 99422 port 12 99422 unique_id port 99422 remote_ip 10.8.0.54 99428 username amir 99428 mac 99428 bytes_out 11520 99428 bytes_in 32136 99428 station_ip 46.225.210.122 99428 port 14 99428 unique_id port 99428 remote_ip 10.8.0.54 99429 username abbasaskari 99429 mac 99429 bytes_out 36545 99429 bytes_in 48843 99429 station_ip 83.122.208.105 99429 port 19 99429 unique_id port 99429 remote_ip 10.8.0.94 99431 username aminvpn 99431 mac 99431 bytes_out 0 99431 bytes_in 0 99431 station_ip 83.122.18.162 99431 port 12 99431 unique_id port 99431 remote_ip 10.8.0.6 99437 username madadi2 99437 mac 99437 bytes_out 0 99437 bytes_in 0 99437 station_ip 5.120.64.141 99437 port 19 99437 unique_id port 99437 remote_ip 10.8.0.26 99439 username farhad1 99439 kill_reason Another user logged on this global unique id 99439 mac 99439 bytes_out 0 99439 bytes_in 0 99439 station_ip 5.119.31.79 99439 port 11 99439 unique_id port 99439 remote_ip 10.8.0.102 99443 username farhad1 99443 kill_reason Another user logged on this global unique id 99443 mac 99443 bytes_out 0 99443 bytes_in 0 99443 station_ip 5.119.31.79 99443 port 11 99443 unique_id port 99444 username farhad1 99444 kill_reason Another user logged on this global unique id 99444 mac 99444 bytes_out 0 99444 bytes_in 0 99444 station_ip 5.119.31.79 99444 port 11 99444 unique_id port 99445 username farhad1 99445 kill_reason Another user logged on this global unique id 99445 mac 99445 bytes_out 0 99445 bytes_in 0 99445 station_ip 5.119.31.79 99445 port 11 99445 unique_id port 99448 username farhad1 99448 mac 99448 bytes_out 0 99448 bytes_in 0 99448 station_ip 5.119.31.79 99448 port 11 99448 unique_id port 99451 username mirzaei 99451 mac 99451 bytes_out 0 99451 bytes_in 0 99451 station_ip 5.120.189.238 99451 port 10 99451 unique_id port 99455 bytes_in 6515677 99455 station_ip 83.122.5.42 99455 port 11 99455 unique_id port 99455 remote_ip 10.8.0.6 99456 username aminvpn 99456 mac 99456 bytes_out 0 99456 bytes_in 0 99456 station_ip 5.120.52.23 99456 port 9 99456 unique_id port 99456 remote_ip 10.8.1.26 99457 username aminvpn 99457 mac 99457 bytes_out 0 99457 bytes_in 0 99457 station_ip 5.120.52.23 99457 port 9 99457 unique_id port 99457 remote_ip 10.8.1.26 99458 username aminvpn 99458 mac 99458 bytes_out 0 99458 bytes_in 0 99458 station_ip 5.120.52.23 99458 port 11 99458 unique_id port 99458 remote_ip 10.8.0.6 99462 username aminvpn 99462 mac 99462 bytes_out 0 99462 bytes_in 0 99462 station_ip 5.120.52.23 99462 port 11 99462 unique_id port 99462 remote_ip 10.8.0.6 99463 username aminvpn 99463 mac 99463 bytes_out 0 99463 bytes_in 0 99463 station_ip 5.120.52.23 99463 port 11 99463 unique_id port 99463 remote_ip 10.8.0.6 99464 username aminvpn 99464 mac 99464 bytes_out 0 99464 bytes_in 0 99464 station_ip 5.120.52.23 99464 port 9 99464 unique_id port 99464 remote_ip 10.8.1.26 99465 username aminvpn 99465 mac 99465 bytes_out 0 99465 bytes_in 0 99465 station_ip 5.120.52.23 99465 port 9 99465 unique_id port 99465 remote_ip 10.8.1.26 99476 username aminvpn 99476 mac 99476 bytes_out 0 99476 bytes_in 0 99476 station_ip 83.123.239.20 99476 port 11 99476 unique_id port 99459 username aminvpn 99459 mac 99459 bytes_out 0 99459 bytes_in 0 99459 station_ip 5.120.52.23 99459 port 11 99459 unique_id port 99459 remote_ip 10.8.0.6 99460 username aminvpn 99460 mac 99460 bytes_out 0 99460 bytes_in 0 99460 station_ip 5.120.52.23 99460 port 11 99460 unique_id port 99460 remote_ip 10.8.0.6 99466 username aminvpn 99466 mac 99466 bytes_out 0 99466 bytes_in 0 99466 station_ip 5.120.52.23 99466 port 12 99466 unique_id port 99466 remote_ip 10.8.0.6 99467 username aminvpn 99467 mac 99467 bytes_out 0 99467 bytes_in 0 99467 station_ip 5.120.52.23 99467 port 12 99467 unique_id port 99467 remote_ip 10.8.0.6 99469 username aminvpn 99469 mac 99469 bytes_out 0 99469 bytes_in 0 99469 station_ip 5.120.52.23 99469 port 12 99469 unique_id port 99469 remote_ip 10.8.0.6 99473 username aminvpn 99473 mac 99473 bytes_out 0 99473 bytes_in 0 99473 station_ip 5.120.52.23 99473 port 11 99473 unique_id port 99473 remote_ip 10.8.0.6 99475 username aminvpn 99475 mac 99475 bytes_out 0 99475 bytes_in 0 99475 station_ip 5.120.52.23 99475 port 12 99475 unique_id port 99475 remote_ip 10.8.0.6 99477 username aminvpn 99477 mac 99477 bytes_out 0 99477 bytes_in 0 99477 station_ip 5.120.52.23 99477 port 12 99477 unique_id port 99477 remote_ip 10.8.0.6 99484 username mirzaei 99484 mac 99484 bytes_out 2036817 99484 bytes_in 11107182 99484 station_ip 5.119.18.158 99484 port 8 99484 unique_id port 99484 remote_ip 10.8.1.70 99488 username mirzaei 99488 mac 99488 bytes_out 16361 99488 bytes_in 31040 99488 station_ip 5.119.18.158 99488 port 20 99488 unique_id port 99488 remote_ip 10.8.0.30 99490 username madadi2 99490 mac 99490 bytes_out 138514 99490 bytes_in 695375 99490 station_ip 5.119.237.204 99490 port 19 99490 unique_id port 99490 remote_ip 10.8.0.26 99491 username morteza 99491 mac 99491 bytes_out 42200 99491 bytes_in 44575 99491 station_ip 83.122.249.151 99491 port 19 99491 unique_id port 99491 remote_ip 10.8.0.90 99495 username aminvpn 99495 mac 99495 bytes_out 0 99495 bytes_in 0 99495 station_ip 83.123.239.20 99495 port 11 99495 unique_id port 99495 remote_ip 10.8.0.6 99496 username aminvpn 99496 mac 99496 bytes_out 0 99496 bytes_in 0 99496 station_ip 83.122.143.111 99496 port 20 99496 unique_id port 99496 remote_ip 10.8.0.6 99497 username aminvpn 99497 mac 99497 bytes_out 0 99497 bytes_in 0 99497 station_ip 83.123.239.20 99497 port 11 99497 unique_id port 99497 remote_ip 10.8.0.6 99499 username aminvpn 99499 mac 99499 bytes_out 0 99499 bytes_in 0 99499 station_ip 83.122.143.111 99499 port 20 99499 unique_id port 99499 remote_ip 10.8.0.6 99501 username aminvpn 99501 mac 99501 bytes_out 0 99501 bytes_in 0 99501 station_ip 83.123.239.20 99501 port 11 99501 unique_id port 99501 remote_ip 10.8.0.6 99505 username aminvpn 99505 mac 99505 bytes_out 0 99505 bytes_in 0 99505 station_ip 5.120.52.23 99505 port 9 99505 unique_id port 99505 remote_ip 10.8.1.26 99506 username aminvpn 99506 mac 99506 bytes_out 0 99506 bytes_in 0 99506 station_ip 83.123.239.20 99506 port 11 99506 unique_id port 99506 remote_ip 10.8.0.6 99507 username aminvpn 99507 mac 99507 bytes_out 0 99507 bytes_in 0 99507 station_ip 83.122.143.111 99507 port 19 99476 remote_ip 10.8.0.6 99478 username morteza 99478 mac 99478 bytes_out 0 99478 bytes_in 0 99478 station_ip 83.122.182.195 99478 port 12 99478 unique_id port 99478 remote_ip 10.8.0.90 99480 username morteza 99480 mac 99480 bytes_out 0 99480 bytes_in 0 99480 station_ip 83.122.182.195 99480 port 19 99480 unique_id port 99480 remote_ip 10.8.0.90 99485 username aminvpn 99485 mac 99485 bytes_out 0 99485 bytes_in 0 99485 station_ip 5.120.52.23 99485 port 9 99485 unique_id port 99485 remote_ip 10.8.1.26 99487 username farhad1 99487 mac 99487 bytes_out 1282637 99487 bytes_in 3080110 99487 station_ip 5.120.102.236 99487 port 12 99487 unique_id port 99487 remote_ip 10.8.0.102 99489 username aminvpn 99489 mac 99489 bytes_out 0 99489 bytes_in 0 99489 station_ip 5.120.52.23 99489 port 8 99489 unique_id port 99489 remote_ip 10.8.1.26 99498 username morteza 99498 mac 99498 bytes_out 0 99498 bytes_in 0 99498 station_ip 83.122.249.151 99498 port 19 99498 unique_id port 99498 remote_ip 10.8.0.90 99502 username aminvpn 99502 mac 99502 bytes_out 0 99502 bytes_in 0 99502 station_ip 83.122.143.111 99502 port 19 99502 unique_id port 99502 remote_ip 10.8.0.6 99504 username aminvpn 99504 mac 99504 bytes_out 0 99504 bytes_in 0 99504 station_ip 83.122.143.111 99504 port 19 99504 unique_id port 99504 remote_ip 10.8.0.6 99510 username aminvpn 99510 unique_id port 99510 terminate_cause Lost-Carrier 99510 bytes_out 870892 99510 bytes_in 28068437 99510 station_ip 31.57.128.111 99510 port 15729266 99510 nas_port_type Virtual 99510 remote_ip 5.5.5.53 99511 username aminvpn 99511 mac 99511 bytes_out 0 99511 bytes_in 0 99511 station_ip 83.123.239.20 99511 port 11 99511 unique_id port 99511 remote_ip 10.8.0.6 99513 username aminvpn 99513 mac 99513 bytes_out 0 99513 bytes_in 0 99513 station_ip 83.123.239.20 99513 port 11 99513 unique_id port 99513 remote_ip 10.8.0.6 99514 username aminvpn 99514 mac 99514 bytes_out 18068 99514 bytes_in 30033 99514 station_ip 5.120.52.23 99514 port 9 99514 unique_id port 99514 remote_ip 10.8.1.26 99521 username aminvpn 99521 mac 99521 bytes_out 0 99521 bytes_in 0 99521 station_ip 83.122.143.111 99521 port 20 99521 unique_id port 99521 remote_ip 10.8.0.6 99522 username aminvpn 99522 mac 99522 bytes_out 0 99522 bytes_in 0 99522 station_ip 83.123.239.20 99522 port 20 99522 unique_id port 99522 remote_ip 10.8.0.6 99525 username morteza 99525 mac 99525 bytes_out 5188833 99525 bytes_in 37845099 99525 station_ip 83.122.249.151 99525 port 8 99525 unique_id port 99525 remote_ip 10.8.1.46 99528 username amir 99528 mac 99528 bytes_out 843971 99528 bytes_in 3572421 99528 station_ip 46.225.210.199 99528 port 11 99528 unique_id port 99528 remote_ip 10.8.0.54 99531 username aminvpn 99531 mac 99531 bytes_out 0 99531 bytes_in 0 99531 station_ip 83.123.239.20 99531 port 11 99531 unique_id port 99531 remote_ip 10.8.0.6 99532 username aminvpn 99532 mac 99532 bytes_out 0 99532 bytes_in 0 99532 station_ip 5.120.52.23 99532 port 24 99532 unique_id port 99532 remote_ip 10.8.0.6 99533 username alihosseini 99533 mac 99533 bytes_out 0 99533 bytes_in 0 99533 station_ip 5.120.148.121 99533 port 24 99533 unique_id port 99533 remote_ip 10.8.0.14 99534 username morteza 99534 mac 99479 mac 99479 bytes_out 0 99479 bytes_in 0 99479 station_ip 5.120.52.23 99479 port 9 99479 unique_id port 99479 remote_ip 10.8.1.26 99481 username farhad1 99481 mac 99481 bytes_out 1273195 99481 bytes_in 3952767 99481 station_ip 5.120.102.236 99481 port 12 99481 unique_id port 99481 remote_ip 10.8.0.102 99482 username farhad1 99482 mac 99482 bytes_out 0 99482 bytes_in 0 99482 station_ip 5.120.102.236 99482 port 19 99482 unique_id port 99482 remote_ip 10.8.0.102 99483 username aminvpn 99483 mac 99483 bytes_out 0 99483 bytes_in 0 99483 station_ip 5.120.163.56 99483 port 9 99483 unique_id port 99483 remote_ip 10.8.1.26 99486 username mirzaei 99486 mac 99486 bytes_out 51156 99486 bytes_in 101500 99486 station_ip 5.119.18.158 99486 port 19 99486 unique_id port 99486 remote_ip 10.8.0.30 99492 username aminvpn 99492 mac 99492 bytes_out 0 99492 bytes_in 0 99492 station_ip 5.120.52.23 99492 port 8 99492 unique_id port 99492 remote_ip 10.8.1.26 99493 username aminvpn 99493 mac 99493 bytes_out 0 99493 bytes_in 0 99493 station_ip 83.123.239.20 99493 port 11 99493 unique_id port 99493 remote_ip 10.8.0.6 99494 username aminvpn 99494 mac 99494 bytes_out 0 99494 bytes_in 0 99494 station_ip 83.122.143.111 99494 port 20 99494 unique_id port 99494 remote_ip 10.8.0.6 99500 username aminvpn 99500 mac 99500 bytes_out 0 99500 bytes_in 0 99500 station_ip 5.120.52.23 99500 port 9 99500 unique_id port 99500 remote_ip 10.8.1.26 99503 username aminvpn 99503 mac 99503 bytes_out 0 99503 bytes_in 0 99503 station_ip 83.123.239.20 99503 port 11 99503 unique_id port 99503 remote_ip 10.8.0.6 99508 username aminvpn 99508 mac 99508 bytes_out 0 99508 bytes_in 0 99508 station_ip 83.123.239.20 99508 port 11 99508 unique_id port 99508 remote_ip 10.8.0.6 99516 username aminvpn 99516 mac 99516 bytes_out 0 99516 bytes_in 0 99516 station_ip 83.123.239.20 99516 port 11 99516 unique_id port 99516 remote_ip 10.8.0.6 99517 username aminvpn 99517 mac 99517 bytes_out 0 99517 bytes_in 0 99517 station_ip 83.122.143.111 99517 port 19 99517 unique_id port 99517 remote_ip 10.8.0.6 99524 username madadi2 99524 mac 99524 bytes_out 0 99524 bytes_in 0 99524 station_ip 5.120.22.150 99524 port 20 99524 unique_id port 99524 remote_ip 10.8.0.26 99527 username aminvpn 99527 mac 99527 bytes_out 0 99527 bytes_in 0 99527 station_ip 5.120.52.23 99527 port 23 99527 unique_id port 99527 remote_ip 10.8.0.6 99538 username aminvpn 99538 mac 99538 bytes_out 29074 99538 bytes_in 44018 99538 station_ip 83.123.239.20 99538 port 11 99538 unique_id port 99538 remote_ip 10.8.0.6 99539 username aminvpn 99539 mac 99539 bytes_out 0 99539 bytes_in 0 99539 station_ip 5.120.52.23 99539 port 8 99539 unique_id port 99539 remote_ip 10.8.1.26 99541 username aminvpn 99541 unique_id port 99541 terminate_cause Lost-Carrier 99541 bytes_out 1032954 99541 bytes_in 20085756 99541 station_ip 5.119.117.3 99541 port 15729268 99541 nas_port_type Virtual 99541 remote_ip 5.5.5.51 99542 username ahmadipour 99542 unique_id port 99542 terminate_cause Lost-Carrier 99542 bytes_out 52043748 99542 bytes_in 4333286 99542 station_ip 83.123.100.18 99542 port 15729269 99542 nas_port_type Virtual 99542 remote_ip 5.5.5.50 99544 username forozande 99544 mac 99544 bytes_out 2576947 99507 unique_id port 99507 remote_ip 10.8.0.6 99509 username aminvpn 99509 mac 99509 bytes_out 0 99509 bytes_in 0 99509 station_ip 83.122.143.111 99509 port 19 99509 unique_id port 99509 remote_ip 10.8.0.6 99512 username aminvpn 99512 mac 99512 bytes_out 0 99512 bytes_in 0 99512 station_ip 83.122.143.111 99512 port 19 99512 unique_id port 99512 remote_ip 10.8.0.6 99515 username aminvpn 99515 mac 99515 bytes_out 0 99515 bytes_in 0 99515 station_ip 83.122.143.111 99515 port 19 99515 unique_id port 99515 remote_ip 10.8.0.6 99518 username aminvpn 99518 mac 99518 bytes_out 0 99518 bytes_in 0 99518 station_ip 83.123.239.20 99518 port 11 99518 unique_id port 99518 remote_ip 10.8.0.6 99519 username aminvpn 99519 mac 99519 bytes_out 0 99519 bytes_in 0 99519 station_ip 83.122.143.111 99519 port 20 99519 unique_id port 99519 remote_ip 10.8.0.6 99520 username aminvpn 99520 mac 99520 bytes_out 0 99520 bytes_in 0 99520 station_ip 83.123.239.20 99520 port 11 99520 unique_id port 99520 remote_ip 10.8.0.6 99523 username aminvpn 99523 mac 99523 bytes_out 0 99523 bytes_in 0 99523 station_ip 5.120.52.23 99523 port 22 99523 unique_id port 99523 remote_ip 10.8.0.6 99526 username aminvpn 99526 mac 99526 bytes_out 0 99526 bytes_in 0 99526 station_ip 83.123.239.20 99526 port 22 99526 unique_id port 99526 remote_ip 10.8.0.6 99529 username aminvpn 99529 mac 99529 bytes_out 7969 99529 bytes_in 14864 99529 station_ip 83.123.239.20 99529 port 22 99529 unique_id port 99529 remote_ip 10.8.0.6 99530 username aminvpn 99530 mac 99530 bytes_out 0 99530 bytes_in 0 99530 station_ip 5.120.52.23 99530 port 11 99530 unique_id port 99530 remote_ip 10.8.0.6 99535 username aminvpn 99535 mac 99535 bytes_out 0 99535 bytes_in 0 99535 station_ip 5.120.52.23 99535 port 8 99535 unique_id port 99535 remote_ip 10.8.1.26 99536 username morteza 99536 mac 99536 bytes_out 0 99536 bytes_in 0 99536 station_ip 83.123.254.246 99536 port 20 99536 unique_id port 99536 remote_ip 10.8.0.90 99540 username aminvpn 99540 mac 99540 bytes_out 0 99540 bytes_in 0 99540 station_ip 5.120.52.23 99540 port 11 99540 unique_id port 99540 remote_ip 10.8.0.6 99543 username amir 99543 mac 99543 bytes_out 0 99543 bytes_in 0 99543 station_ip 46.225.210.199 99543 port 22 99543 unique_id port 99547 username amir 99547 mac 99547 bytes_out 0 99547 bytes_in 0 99547 station_ip 46.225.210.199 99547 port 22 99547 unique_id port 99547 remote_ip 10.8.0.54 99549 username aminvpn 99549 mac 99549 bytes_out 0 99549 bytes_in 0 99549 station_ip 5.120.52.23 99549 port 11 99549 unique_id port 99549 remote_ip 10.8.0.6 99551 username amir 99551 mac 99551 bytes_out 0 99551 bytes_in 0 99551 station_ip 46.225.210.199 99551 port 11 99551 unique_id port 99551 remote_ip 10.8.0.54 99552 username aminvpn 99552 mac 99552 bytes_out 0 99552 bytes_in 0 99552 station_ip 5.120.52.23 99552 port 11 99552 unique_id port 99552 remote_ip 10.8.0.6 99554 username amir 99554 mac 99554 bytes_out 0 99554 bytes_in 0 99554 station_ip 46.225.210.199 99554 port 11 99554 unique_id port 99554 remote_ip 10.8.0.54 99555 username aminvpn 99555 mac 99555 bytes_out 0 99555 bytes_in 0 99555 station_ip 5.120.52.23 99555 port 11 99534 bytes_out 0 99534 bytes_in 0 99534 station_ip 83.122.249.151 99534 port 20 99534 unique_id port 99534 remote_ip 10.8.0.90 99537 username amir 99537 kill_reason Another user logged on this global unique id 99537 mac 99537 bytes_out 0 99537 bytes_in 0 99537 station_ip 46.225.210.199 99537 port 22 99537 unique_id port 99537 remote_ip 10.8.0.54 99545 username aminvpn 99545 kill_reason Another user logged on this global unique id 99545 mac 99545 bytes_out 0 99545 bytes_in 0 99545 station_ip 5.120.52.23 99545 port 8 99545 unique_id port 99545 remote_ip 10.8.1.26 99546 username aminvpn 99546 mac 99546 bytes_out 0 99546 bytes_in 0 99546 station_ip 5.120.52.23 99546 port 11 99546 unique_id port 99546 remote_ip 10.8.0.6 99550 username aminvpn 99550 mac 99550 bytes_out 0 99550 bytes_in 0 99550 station_ip 5.120.52.23 99550 port 8 99550 unique_id port 99556 username amir 99556 mac 99556 bytes_out 10321 99556 bytes_in 18534 99556 station_ip 46.225.210.199 99556 port 11 99556 unique_id port 99556 remote_ip 10.8.0.54 99560 username alipour 99560 mac 99560 bytes_out 0 99560 bytes_in 0 99560 station_ip 83.122.25.108 99560 port 11 99560 unique_id port 99562 username amir 99562 mac 99562 bytes_out 0 99562 bytes_in 0 99562 station_ip 46.225.210.199 99562 port 20 99562 unique_id port 99562 remote_ip 10.8.0.54 99564 username amir 99564 kill_reason Another user logged on this global unique id 99564 mac 99564 bytes_out 0 99564 bytes_in 0 99564 station_ip 46.225.210.199 99564 port 11 99564 unique_id port 99564 remote_ip 10.8.0.54 99569 username aminvpn 99569 mac 99569 bytes_out 0 99569 bytes_in 0 99569 station_ip 5.120.52.23 99569 port 25 99569 unique_id port 99569 remote_ip 10.8.0.6 99570 username aminvpn 99570 mac 99570 bytes_out 0 99570 bytes_in 0 99570 station_ip 5.119.150.218 99570 port 25 99570 unique_id port 99570 remote_ip 10.8.0.6 99575 username aminvpn 99575 mac 99575 bytes_out 0 99575 bytes_in 0 99575 station_ip 5.120.52.23 99575 port 9 99575 unique_id port 99575 remote_ip 10.8.1.26 99576 username forozande 99576 kill_reason Another user logged on this global unique id 99576 mac 99576 bytes_out 0 99576 bytes_in 0 99576 station_ip 113.203.73.67 99576 port 11 99576 unique_id port 99576 remote_ip 10.8.1.62 99579 username aminvpn 99579 mac 99579 bytes_out 0 99579 bytes_in 0 99579 station_ip 5.120.52.23 99579 port 9 99579 unique_id port 99579 remote_ip 10.8.1.26 99581 username aminvpn 99581 mac 99581 bytes_out 0 99581 bytes_in 0 99581 station_ip 5.120.52.23 99581 port 9 99581 unique_id port 99581 remote_ip 10.8.1.26 99583 username aminvpn 99583 mac 99583 bytes_out 0 99583 bytes_in 0 99583 station_ip 5.119.150.218 99583 port 25 99583 unique_id port 99583 remote_ip 10.8.0.6 99587 username aminvpn 99587 mac 99587 bytes_out 0 99587 bytes_in 0 99587 station_ip 5.120.52.23 99587 port 25 99587 unique_id port 99587 remote_ip 10.8.0.6 99588 username mahdiyehalizadeh 99588 mac 99588 bytes_out 147542 99588 bytes_in 663859 99588 station_ip 83.123.89.190 99588 port 26 99588 unique_id port 99588 remote_ip 10.8.0.42 99591 username madadi2 99591 mac 99591 bytes_out 1288752 99591 bytes_in 1843527 99591 station_ip 5.119.132.148 99591 port 24 99591 unique_id port 99591 remote_ip 10.8.0.26 99592 username askari 99592 kill_reason Another user logged on this global unique id 99544 bytes_in 22250957 99544 station_ip 83.122.41.160 99544 port 10 99544 unique_id port 99544 remote_ip 10.8.1.62 99548 username alihosseini 99548 mac 99548 bytes_out 0 99548 bytes_in 0 99548 station_ip 5.120.27.163 99548 port 20 99548 unique_id port 99548 remote_ip 10.8.0.14 99553 username alihosseini 99553 mac 99553 bytes_out 3008 99553 bytes_in 10932 99553 station_ip 5.119.70.18 99553 port 20 99553 unique_id port 99553 remote_ip 10.8.0.14 99557 username amir 99557 mac 99557 bytes_out 48817 99557 bytes_in 139251 99557 station_ip 46.225.210.199 99557 port 20 99557 unique_id port 99557 remote_ip 10.8.0.54 99558 username alipour 99558 kill_reason Another user logged on this global unique id 99558 mac 99558 bytes_out 0 99558 bytes_in 0 99558 station_ip 83.122.25.108 99558 port 11 99558 unique_id port 99558 remote_ip 10.8.0.70 99559 username aminvpn 99559 mac 99559 bytes_out 0 99559 bytes_in 0 99559 station_ip 5.120.52.23 99559 port 22 99559 unique_id port 99559 remote_ip 10.8.0.6 99561 username aminvpn 99561 unique_id port 99561 terminate_cause User-Request 99561 bytes_out 14528640 99561 bytes_in 527888094 99561 station_ip 31.57.131.102 99561 port 15729267 99561 nas_port_type Virtual 99561 remote_ip 5.5.5.52 99563 username amir 99563 mac 99563 bytes_out 0 99563 bytes_in 0 99563 station_ip 46.225.210.199 99563 port 11 99563 unique_id port 99563 remote_ip 10.8.0.54 99565 username aminvpn 99565 mac 99565 bytes_out 0 99565 bytes_in 0 99565 station_ip 5.120.52.23 99565 port 20 99565 unique_id port 99565 remote_ip 10.8.0.6 99567 username alipour 99567 mac 99567 bytes_out 1518058 99567 bytes_in 20496125 99567 station_ip 83.122.25.108 99567 port 10 99567 unique_id port 99567 remote_ip 10.8.1.38 99568 username aminvpn 99568 mac 99568 bytes_out 0 99568 bytes_in 0 99568 station_ip 5.119.150.218 99568 port 22 99568 unique_id port 99568 remote_ip 10.8.0.6 99572 username aminvpn 99572 mac 99572 bytes_out 0 99572 bytes_in 0 99572 station_ip 5.120.52.23 99572 port 25 99572 unique_id port 99572 remote_ip 10.8.0.6 99574 username aminvpn 99574 mac 99574 bytes_out 0 99574 bytes_in 0 99574 station_ip 5.120.52.23 99574 port 25 99574 unique_id port 99574 remote_ip 10.8.0.6 99585 username arman1 99585 kill_reason Another user logged on this global unique id 99585 mac 99585 bytes_out 0 99585 bytes_in 0 99585 station_ip 5.119.40.247 99585 port 23 99585 unique_id port 99585 remote_ip 10.8.0.86 99590 username aminvpn 99590 mac 99590 bytes_out 0 99590 bytes_in 0 99590 station_ip 5.120.52.23 99590 port 26 99590 unique_id port 99590 remote_ip 10.8.0.6 99593 username aminvpn 99593 mac 99593 bytes_out 0 99593 bytes_in 0 99593 station_ip 5.120.52.23 99593 port 26 99593 unique_id port 99593 remote_ip 10.8.0.6 99594 username askari 99594 kill_reason Another user logged on this global unique id 99594 mac 99594 bytes_out 0 99594 bytes_in 0 99594 station_ip 5.119.103.240 99594 port 25 99594 unique_id port 99599 username aminvpn 99599 mac 99599 bytes_out 0 99599 bytes_in 0 99599 station_ip 5.120.52.23 99599 port 24 99599 unique_id port 99599 remote_ip 10.8.0.6 99606 username morteza 99606 mac 99606 bytes_out 2967903 99606 bytes_in 49378894 99606 station_ip 83.123.234.66 99606 port 22 99606 unique_id port 99606 remote_ip 10.8.0.90 99611 username mahdixz 99611 unique_id port 99555 unique_id port 99555 remote_ip 10.8.0.6 99566 username aminvpn 99566 mac 99566 bytes_out 404051 99566 bytes_in 3806366 99566 station_ip 5.119.97.188 99566 port 9 99566 unique_id port 99566 remote_ip 10.8.1.26 99571 username alipour 99571 mac 99571 bytes_out 0 99571 bytes_in 0 99571 station_ip 83.122.25.108 99571 port 22 99571 unique_id port 99571 remote_ip 10.8.0.70 99573 username alipour 99573 mac 99573 bytes_out 0 99573 bytes_in 0 99573 station_ip 83.122.25.108 99573 port 9 99573 unique_id port 99573 remote_ip 10.8.1.38 99577 username forozande 99577 kill_reason Another user logged on this global unique id 99577 mac 99577 bytes_out 0 99577 bytes_in 0 99577 station_ip 113.203.73.67 99577 port 11 99577 unique_id port 99578 username forozande 99578 mac 99578 bytes_out 0 99578 bytes_in 0 99578 station_ip 113.203.73.67 99578 port 11 99578 unique_id port 99580 username alireza1 99580 unique_id port 99580 terminate_cause User-Request 99580 bytes_out 0 99580 bytes_in 0 99580 station_ip 5.120.38.111 99580 port 15729270 99580 nas_port_type Virtual 99580 remote_ip 5.5.5.49 99582 username aminvpn 99582 mac 99582 bytes_out 0 99582 bytes_in 0 99582 station_ip 5.119.150.218 99582 port 25 99582 unique_id port 99582 remote_ip 10.8.0.6 99584 username aminvpn 99584 mac 99584 bytes_out 0 99584 bytes_in 0 99584 station_ip 5.120.52.23 99584 port 26 99584 unique_id port 99584 remote_ip 10.8.0.6 99586 username aminvpn 99586 mac 99586 bytes_out 6361006 99586 bytes_in 494635 99586 station_ip 5.119.150.218 99586 port 25 99586 unique_id port 99586 remote_ip 10.8.0.6 99589 username askari 99589 kill_reason Another user logged on this global unique id 99589 mac 99589 bytes_out 0 99589 bytes_in 0 99589 station_ip 5.119.103.240 99589 port 25 99589 unique_id port 99589 remote_ip 10.8.0.38 99598 username aminvpn 99598 mac 99598 bytes_out 0 99598 bytes_in 0 99598 station_ip 5.120.52.23 99598 port 24 99598 unique_id port 99598 remote_ip 10.8.0.6 99603 username askari 99603 mac 99603 bytes_out 252047 99603 bytes_in 4180240 99603 station_ip 5.119.103.240 99603 port 24 99603 unique_id port 99603 remote_ip 10.8.0.38 99604 username amir 99604 mac 99604 bytes_out 0 99604 bytes_in 0 99604 station_ip 46.225.210.199 99604 port 11 99604 unique_id port 99604 remote_ip 10.8.0.54 99608 username morteza 99608 mac 99608 bytes_out 0 99608 bytes_in 0 99608 station_ip 83.123.234.66 99608 port 22 99608 unique_id port 99608 remote_ip 10.8.0.90 99609 username musa 99609 kill_reason Another user logged on this global unique id 99609 mac 99609 bytes_out 0 99609 bytes_in 0 99609 station_ip 37.129.84.241 99609 port 20 99609 unique_id port 99609 remote_ip 10.8.0.106 99610 username aminvpn 99610 mac 99610 bytes_out 0 99610 bytes_in 0 99610 station_ip 5.120.52.23 99610 port 22 99610 unique_id port 99610 remote_ip 10.8.0.6 99612 username aminvpn 99612 mac 99612 bytes_out 0 99612 bytes_in 0 99612 station_ip 5.120.52.23 99612 port 22 99612 unique_id port 99612 remote_ip 10.8.0.6 99616 username morteza 99616 mac 99616 bytes_out 0 99616 bytes_in 0 99616 station_ip 83.123.234.66 99616 port 24 99616 unique_id port 99618 username mohammadmahdi 99618 mac 99618 bytes_out 0 99618 bytes_in 0 99618 station_ip 5.120.189.34 99618 port 11 99618 unique_id port 99618 remote_ip 10.8.0.34 99592 mac 99592 bytes_out 0 99592 bytes_in 0 99592 station_ip 5.119.103.240 99592 port 25 99592 unique_id port 99595 username alihosseini 99595 mac 99595 bytes_out 0 99595 bytes_in 0 99595 station_ip 5.119.109.163 99595 port 24 99595 unique_id port 99595 remote_ip 10.8.0.14 99596 username arman1 99596 kill_reason Another user logged on this global unique id 99596 mac 99596 bytes_out 0 99596 bytes_in 0 99596 station_ip 5.119.40.247 99596 port 23 99596 unique_id port 99597 username aminvpn 99597 mac 99597 bytes_out 0 99597 bytes_in 0 99597 station_ip 5.120.52.23 99597 port 24 99597 unique_id port 99597 remote_ip 10.8.0.6 99600 username askari 99600 mac 99600 bytes_out 0 99600 bytes_in 0 99600 station_ip 5.119.103.240 99600 port 25 99600 unique_id port 99601 username askari 99601 mac 99601 bytes_out 0 99601 bytes_in 0 99601 station_ip 5.119.103.240 99601 port 24 99601 unique_id port 99601 remote_ip 10.8.0.38 99602 username askari 99602 mac 99602 bytes_out 0 99602 bytes_in 0 99602 station_ip 5.119.103.240 99602 port 24 99602 unique_id port 99602 remote_ip 10.8.0.38 99605 username aminvpn 99605 mac 99605 bytes_out 0 99605 bytes_in 0 99605 station_ip 5.120.52.23 99605 port 11 99605 unique_id port 99605 remote_ip 10.8.0.6 99607 username amir 99607 mac 99607 bytes_out 0 99607 bytes_in 0 99607 station_ip 46.225.210.199 99607 port 11 99607 unique_id port 99607 remote_ip 10.8.0.54 99617 username musa 99617 kill_reason Another user logged on this global unique id 99617 mac 99617 bytes_out 0 99617 bytes_in 0 99617 station_ip 37.129.84.241 99617 port 20 99617 unique_id port 99620 username amir 99620 mac 99620 bytes_out 11812 99620 bytes_in 18915 99620 station_ip 46.225.210.199 99620 port 24 99620 unique_id port 99620 remote_ip 10.8.0.54 99621 username amir 99621 mac 99621 bytes_out 0 99621 bytes_in 0 99621 station_ip 46.225.210.199 99621 port 24 99621 unique_id port 99621 remote_ip 10.8.0.54 99624 username aminvpn 99624 mac 99624 bytes_out 0 99624 bytes_in 0 99624 station_ip 5.120.52.23 99624 port 9 99624 unique_id port 99624 remote_ip 10.8.1.26 99627 username aminvpn 99627 mac 99627 bytes_out 0 99627 bytes_in 0 99627 station_ip 5.120.52.23 99627 port 9 99627 unique_id port 99627 remote_ip 10.8.1.26 99632 username amir 99632 mac 99632 bytes_out 0 99632 bytes_in 0 99632 station_ip 46.225.210.199 99632 port 24 99632 unique_id port 99632 remote_ip 10.8.0.54 99633 username farhad1 99633 kill_reason Another user logged on this global unique id 99633 mac 99633 bytes_out 0 99633 bytes_in 0 99633 station_ip 5.119.28.57 99633 port 11 99633 unique_id port 99633 remote_ip 10.8.0.102 99642 username aminvpn 99642 unique_id port 99642 terminate_cause Lost-Carrier 99642 bytes_out 161027 99642 bytes_in 498970 99642 station_ip 5.119.171.145 99642 port 15729276 99642 nas_port_type Virtual 99642 remote_ip 5.5.5.47 99645 username amir 99645 mac 99645 bytes_out 0 99645 bytes_in 0 99645 station_ip 46.225.210.199 99645 port 11 99645 unique_id port 99645 remote_ip 10.8.0.54 99646 username asadi 99646 mac 99646 bytes_out 0 99646 bytes_in 0 99646 station_ip 37.129.84.189 99646 port 22 99646 unique_id port 99646 remote_ip 10.8.0.50 99649 username morteza 99649 mac 99649 bytes_out 0 99649 bytes_in 0 99649 station_ip 83.123.152.254 99611 terminate_cause User-Request 99611 bytes_out 0 99611 bytes_in 0 99611 station_ip 151.235.89.48 99611 port 15729274 99611 nas_port_type Virtual 99611 remote_ip 5.5.5.46 99613 username morteza 99613 kill_reason Another user logged on this global unique id 99613 mac 99613 bytes_out 0 99613 bytes_in 0 99613 station_ip 83.123.234.66 99613 port 24 99613 unique_id port 99613 remote_ip 10.8.0.90 99614 username aminvpn 99614 unique_id port 99614 terminate_cause Lost-Carrier 99614 bytes_out 123720 99614 bytes_in 1282893 99614 station_ip 5.119.171.145 99614 port 15729273 99614 nas_port_type Virtual 99614 remote_ip 5.5.5.47 99615 username morteza 99615 kill_reason Another user logged on this global unique id 99615 mac 99615 bytes_out 0 99615 bytes_in 0 99615 station_ip 83.123.234.66 99615 port 24 99615 unique_id port 99623 username arman1 99623 mac 99623 bytes_out 0 99623 bytes_in 0 99623 station_ip 5.119.40.247 99623 port 23 99623 unique_id port 99625 username musa 99625 kill_reason Another user logged on this global unique id 99625 mac 99625 bytes_out 0 99625 bytes_in 0 99625 station_ip 37.129.84.241 99625 port 20 99625 unique_id port 99626 username amir 99626 mac 99626 bytes_out 0 99626 bytes_in 0 99626 station_ip 46.225.210.199 99626 port 23 99626 unique_id port 99626 remote_ip 10.8.0.54 99628 username amir 99628 mac 99628 bytes_out 0 99628 bytes_in 0 99628 station_ip 46.225.210.199 99628 port 24 99628 unique_id port 99628 remote_ip 10.8.0.54 99635 username morteza 99635 mac 99635 bytes_out 0 99635 bytes_in 0 99635 station_ip 83.123.211.86 99635 port 23 99635 unique_id port 99635 remote_ip 10.8.0.90 99636 username morteza 99636 mac 99636 bytes_out 0 99636 bytes_in 0 99636 station_ip 83.123.211.86 99636 port 9 99636 unique_id port 99636 remote_ip 10.8.1.46 99637 username morteza 99637 mac 99637 bytes_out 0 99637 bytes_in 0 99637 station_ip 83.123.211.86 99637 port 9 99637 unique_id port 99637 remote_ip 10.8.1.46 99639 username aminvpn 99639 mac 99639 bytes_out 0 99639 bytes_in 0 99639 station_ip 5.120.52.23 99639 port 9 99639 unique_id port 99639 remote_ip 10.8.1.26 99651 username amir 99651 mac 99651 bytes_out 0 99651 bytes_in 0 99651 station_ip 46.225.210.199 99651 port 9 99651 unique_id port 99651 remote_ip 10.8.1.34 99654 username amir 99654 mac 99654 bytes_out 0 99654 bytes_in 0 99654 station_ip 46.225.210.199 99654 port 22 99654 unique_id port 99654 remote_ip 10.8.0.54 99656 username aminvpn 99656 mac 99656 bytes_out 0 99656 bytes_in 0 99656 station_ip 5.120.52.23 99656 port 9 99656 unique_id port 99656 remote_ip 10.8.1.26 99657 username amir 99657 mac 99657 bytes_out 0 99657 bytes_in 0 99657 station_ip 46.225.210.199 99657 port 22 99657 unique_id port 99657 remote_ip 10.8.0.54 99658 username musa 99658 kill_reason Another user logged on this global unique id 99658 mac 99658 bytes_out 0 99658 bytes_in 0 99658 station_ip 37.129.84.241 99658 port 20 99658 unique_id port 99659 username askari 99659 kill_reason Another user logged on this global unique id 99659 mac 99659 bytes_out 0 99659 bytes_in 0 99659 station_ip 5.119.243.89 99659 port 23 99659 unique_id port 99659 remote_ip 10.8.0.38 99660 username alihosseini 99660 mac 99660 bytes_out 0 99660 bytes_in 0 99660 station_ip 5.119.3.139 99660 port 9 99660 unique_id port 99660 remote_ip 10.8.1.6 99619 username aminvpn 99619 mac 99619 bytes_out 0 99619 bytes_in 0 99619 station_ip 5.120.52.23 99619 port 9 99619 unique_id port 99619 remote_ip 10.8.1.26 99622 username amir 99622 mac 99622 bytes_out 0 99622 bytes_in 0 99622 station_ip 46.225.210.199 99622 port 24 99622 unique_id port 99622 remote_ip 10.8.0.54 99629 username musa 99629 kill_reason Another user logged on this global unique id 99629 mac 99629 bytes_out 0 99629 bytes_in 0 99629 station_ip 37.129.84.241 99629 port 20 99629 unique_id port 99630 username amir 99630 mac 99630 bytes_out 0 99630 bytes_in 0 99630 station_ip 46.225.210.199 99630 port 24 99630 unique_id port 99630 remote_ip 10.8.0.54 99631 username ahmadipour 99631 unique_id port 99631 terminate_cause Lost-Carrier 99631 bytes_out 179874 99631 bytes_in 4056322 99631 station_ip 83.123.74.18 99631 port 15729277 99631 nas_port_type Virtual 99631 remote_ip 5.5.5.44 99634 username morteza 99634 mac 99634 bytes_out 954616 99634 bytes_in 16928840 99634 station_ip 83.123.211.86 99634 port 23 99634 unique_id port 99634 remote_ip 10.8.0.90 99638 username farhad1 99638 mac 99638 bytes_out 0 99638 bytes_in 0 99638 station_ip 5.119.28.57 99638 port 11 99638 unique_id port 99640 username musa 99640 kill_reason Another user logged on this global unique id 99640 mac 99640 bytes_out 0 99640 bytes_in 0 99640 station_ip 37.129.84.241 99640 port 20 99640 unique_id port 99641 username amir 99641 mac 99641 bytes_out 17293 99641 bytes_in 74754 99641 station_ip 46.225.210.199 99641 port 11 99641 unique_id port 99641 remote_ip 10.8.0.54 99643 username musa 99643 kill_reason Another user logged on this global unique id 99643 mac 99643 bytes_out 0 99643 bytes_in 0 99643 station_ip 37.129.84.241 99643 port 20 99643 unique_id port 99644 username aminvpn 99644 mac 99644 bytes_out 0 99644 bytes_in 0 99644 station_ip 5.120.52.23 99644 port 11 99644 unique_id port 99644 remote_ip 10.8.1.26 99647 username alihosseini 99647 mac 99647 bytes_out 3016009 99647 bytes_in 29011636 99647 station_ip 5.119.161.124 99647 port 9 99647 unique_id port 99647 remote_ip 10.8.1.6 99648 username musa 99648 kill_reason Another user logged on this global unique id 99648 mac 99648 bytes_out 0 99648 bytes_in 0 99648 station_ip 37.129.84.241 99648 port 20 99648 unique_id port 99655 username musa 99655 kill_reason Another user logged on this global unique id 99655 mac 99655 bytes_out 0 99655 bytes_in 0 99655 station_ip 37.129.84.241 99655 port 20 99655 unique_id port 99663 username musa 99663 kill_reason Another user logged on this global unique id 99663 mac 99663 bytes_out 0 99663 bytes_in 0 99663 station_ip 37.129.84.241 99663 port 20 99663 unique_id port 99679 username musa 99679 kill_reason Another user logged on this global unique id 99679 mac 99679 bytes_out 0 99679 bytes_in 0 99679 station_ip 37.129.84.241 99679 port 20 99679 unique_id port 99684 username tahmasebi 99684 kill_reason Another user logged on this global unique id 99684 mac 99684 bytes_out 0 99684 bytes_in 0 99684 station_ip 5.119.11.172 99684 port 23 99684 unique_id port 99692 username asadi 99692 mac 99692 bytes_out 0 99692 bytes_in 0 99692 station_ip 37.129.84.189 99692 port 11 99692 unique_id port 99692 remote_ip 10.8.0.50 99697 username aminvpn 99697 mac 99697 bytes_out 0 99697 bytes_in 0 99697 station_ip 5.120.52.23 99697 port 9 99697 unique_id port 99649 port 9 99649 unique_id port 99649 remote_ip 10.8.1.46 99650 username aminvpn 99650 mac 99650 bytes_out 0 99650 bytes_in 0 99650 station_ip 5.120.52.23 99650 port 9 99650 unique_id port 99650 remote_ip 10.8.1.26 99652 username forozande 99652 mac 99652 bytes_out 1715714 99652 bytes_in 14546975 99652 station_ip 83.123.174.199 99652 port 10 99652 unique_id port 99652 remote_ip 10.8.1.62 99653 username amir 99653 mac 99653 bytes_out 0 99653 bytes_in 0 99653 station_ip 46.225.210.199 99653 port 9 99653 unique_id port 99653 remote_ip 10.8.1.34 99661 username askari 99661 kill_reason Another user logged on this global unique id 99661 mac 99661 bytes_out 0 99661 bytes_in 0 99661 station_ip 5.119.243.89 99661 port 23 99661 unique_id port 99662 username aminvpn 99662 mac 99662 bytes_out 0 99662 bytes_in 0 99662 station_ip 5.120.52.23 99662 port 25 99662 unique_id port 99662 remote_ip 10.8.0.6 99664 username madadi2 99664 mac 99664 bytes_out 126352 99664 bytes_in 487885 99664 station_ip 5.119.174.37 99664 port 24 99664 unique_id port 99664 remote_ip 10.8.0.26 99668 username askari 99668 mac 99668 bytes_out 0 99668 bytes_in 0 99668 station_ip 5.119.243.89 99668 port 23 99668 unique_id port 99670 username amir 99670 mac 99670 bytes_out 0 99670 bytes_in 0 99670 station_ip 46.225.210.199 99670 port 22 99670 unique_id port 99670 remote_ip 10.8.0.54 99671 username musa 99671 kill_reason Another user logged on this global unique id 99671 mac 99671 bytes_out 0 99671 bytes_in 0 99671 station_ip 37.129.84.241 99671 port 20 99671 unique_id port 99673 username alihosseini 99673 mac 99673 bytes_out 6583 99673 bytes_in 19779 99673 station_ip 5.119.101.167 99673 port 24 99673 unique_id port 99673 remote_ip 10.8.0.14 99674 username aminvpn 99674 mac 99674 bytes_out 0 99674 bytes_in 0 99674 station_ip 5.120.52.23 99674 port 25 99674 unique_id port 99674 remote_ip 10.8.0.6 99676 username musa 99676 kill_reason Another user logged on this global unique id 99676 mac 99676 bytes_out 0 99676 bytes_in 0 99676 station_ip 37.129.84.241 99676 port 20 99676 unique_id port 99677 username amir 99677 mac 99677 bytes_out 0 99677 bytes_in 0 99677 station_ip 46.225.210.199 99677 port 24 99677 unique_id port 99677 remote_ip 10.8.0.54 99682 username musa 99682 kill_reason Another user logged on this global unique id 99682 mac 99682 bytes_out 0 99682 bytes_in 0 99682 station_ip 37.129.84.241 99682 port 20 99682 unique_id port 99683 username askari 99683 mac 99683 bytes_out 529682 99683 bytes_in 6214702 99683 station_ip 5.119.81.206 99683 port 24 99683 unique_id port 99683 remote_ip 10.8.0.38 99686 username amir 99686 mac 99686 bytes_out 0 99686 bytes_in 0 99686 station_ip 46.225.210.199 99686 port 22 99686 unique_id port 99686 remote_ip 10.8.0.54 99688 username tahmasebi 99688 kill_reason Another user logged on this global unique id 99688 mac 99688 bytes_out 0 99688 bytes_in 0 99688 station_ip 5.119.11.172 99688 port 23 99688 unique_id port 99690 username musa 99690 mac 99690 bytes_out 0 99690 bytes_in 0 99690 station_ip 37.129.84.241 99690 port 20 99690 unique_id port 99695 username musa 99695 mac 99695 bytes_out 0 99695 bytes_in 0 99695 station_ip 37.129.84.241 99695 port 20 99695 unique_id port 99695 remote_ip 10.8.0.106 99698 username amir 99698 mac 99665 username amir 99665 mac 99665 bytes_out 0 99665 bytes_in 0 99665 station_ip 46.225.210.199 99665 port 25 99665 unique_id port 99665 remote_ip 10.8.0.54 99666 username morteza 99666 mac 99666 bytes_out 2523234 99666 bytes_in 40183490 99666 station_ip 83.123.152.254 99666 port 22 99666 unique_id port 99666 remote_ip 10.8.0.90 99667 username madadi2 99667 mac 99667 bytes_out 57633 99667 bytes_in 151160 99667 station_ip 5.120.153.211 99667 port 26 99667 unique_id port 99667 remote_ip 10.8.0.26 99669 username aminvpn 99669 mac 99669 bytes_out 0 99669 bytes_in 0 99669 station_ip 5.120.52.23 99669 port 22 99669 unique_id port 99669 remote_ip 10.8.0.6 99672 username alihosseini 99672 mac 99672 bytes_out 689605 99672 bytes_in 5448275 99672 station_ip 5.119.101.167 99672 port 9 99672 unique_id port 99672 remote_ip 10.8.1.6 99675 username alihosseini 99675 mac 99675 bytes_out 0 99675 bytes_in 0 99675 station_ip 5.119.101.167 99675 port 26 99675 unique_id port 99675 remote_ip 10.8.0.14 99678 username askari 99678 mac 99678 bytes_out 1124282 99678 bytes_in 14250853 99678 station_ip 5.119.81.206 99678 port 22 99678 unique_id port 99678 remote_ip 10.8.0.38 99680 username tahmasebi 99680 kill_reason Another user logged on this global unique id 99680 mac 99680 bytes_out 0 99680 bytes_in 0 99680 station_ip 5.119.11.172 99680 port 23 99680 unique_id port 99680 remote_ip 10.8.0.66 99681 username alihosseini 99681 mac 99681 bytes_out 0 99681 bytes_in 0 99681 station_ip 5.119.101.167 99681 port 25 99681 unique_id port 99681 remote_ip 10.8.0.14 99685 username amir 99685 mac 99685 bytes_out 0 99685 bytes_in 0 99685 station_ip 46.225.210.199 99685 port 22 99685 unique_id port 99685 remote_ip 10.8.0.54 99687 username aminvpn 99687 mac 99687 bytes_out 0 99687 bytes_in 0 99687 station_ip 5.120.52.23 99687 port 9 99687 unique_id port 99687 remote_ip 10.8.1.26 99689 username alihosseini 99689 mac 99689 bytes_out 0 99689 bytes_in 0 99689 station_ip 5.119.101.167 99689 port 22 99689 unique_id port 99689 remote_ip 10.8.0.14 99691 username musa 99691 mac 99691 bytes_out 0 99691 bytes_in 0 99691 station_ip 37.129.84.241 99691 port 25 99691 unique_id port 99691 remote_ip 10.8.0.106 99693 username mahdiyehalizadeh 99693 mac 99693 bytes_out 0 99693 bytes_in 0 99693 station_ip 37.129.18.42 99693 port 24 99693 unique_id port 99693 remote_ip 10.8.0.42 99694 username alihosseini 99694 mac 99694 bytes_out 0 99694 bytes_in 0 99694 station_ip 5.119.101.167 99694 port 27 99694 unique_id port 99694 remote_ip 10.8.0.14 99696 username tahmasebi 99696 kill_reason Another user logged on this global unique id 99696 mac 99696 bytes_out 0 99696 bytes_in 0 99696 station_ip 5.119.11.172 99696 port 23 99696 unique_id port 99703 username aminvpn 99703 mac 99703 bytes_out 0 99703 bytes_in 0 99703 station_ip 5.119.150.218 99703 port 22 99703 unique_id port 99703 remote_ip 10.8.0.6 99706 username amir 99706 mac 99706 bytes_out 0 99706 bytes_in 0 99706 station_ip 46.225.210.199 99706 port 20 99706 unique_id port 99706 remote_ip 10.8.0.54 99707 username alihosseini 99707 mac 99707 bytes_out 0 99707 bytes_in 0 99707 station_ip 5.119.101.167 99707 port 24 99707 unique_id port 99707 remote_ip 10.8.0.14 99711 username aminvpn 99711 mac 99711 bytes_out 0 99697 remote_ip 10.8.1.26 99701 username tahmasebi 99701 kill_reason Another user logged on this global unique id 99701 mac 99701 bytes_out 0 99701 bytes_in 0 99701 station_ip 5.119.11.172 99701 port 23 99701 unique_id port 99702 username mohammadmahdi 99702 kill_reason Another user logged on this global unique id 99702 mac 99702 bytes_out 0 99702 bytes_in 0 99702 station_ip 5.120.189.34 99702 port 25 99702 unique_id port 99702 remote_ip 10.8.0.34 99704 username aminvpn 99704 mac 99704 bytes_out 0 99704 bytes_in 0 99704 station_ip 5.120.52.23 99704 port 11 99704 unique_id port 99704 remote_ip 10.8.0.6 99709 username aminvpn 99709 mac 99709 bytes_out 0 99709 bytes_in 0 99709 station_ip 5.119.150.218 99709 port 11 99709 unique_id port 99709 remote_ip 10.8.0.6 99713 username tahmasebi 99713 kill_reason Another user logged on this global unique id 99713 mac 99713 bytes_out 0 99713 bytes_in 0 99713 station_ip 5.119.11.172 99713 port 23 99713 unique_id port 99715 username aminvpn 99715 mac 99715 bytes_out 0 99715 bytes_in 0 99715 station_ip 5.119.150.218 99715 port 11 99715 unique_id port 99715 remote_ip 10.8.0.6 99717 username tahmasebi 99717 kill_reason Another user logged on this global unique id 99717 mac 99717 bytes_out 0 99717 bytes_in 0 99717 station_ip 5.119.11.172 99717 port 23 99717 unique_id port 99723 username aminvpn 99723 mac 99723 bytes_out 0 99723 bytes_in 0 99723 station_ip 5.120.52.23 99723 port 11 99723 unique_id port 99723 remote_ip 10.8.0.6 99724 username amir 99724 kill_reason Another user logged on this global unique id 99724 mac 99724 bytes_out 0 99724 bytes_in 0 99724 station_ip 46.225.210.199 99724 port 22 99724 unique_id port 99724 remote_ip 10.8.0.54 99725 username aminvpn 99725 mac 99725 bytes_out 0 99725 bytes_in 0 99725 station_ip 5.120.52.23 99725 port 23 99725 unique_id port 99725 remote_ip 10.8.0.6 99726 username amir 99726 mac 99726 bytes_out 0 99726 bytes_in 0 99726 station_ip 46.225.210.199 99726 port 22 99726 unique_id port 99729 username aminvpn 99729 kill_reason Maximum check online fails reached 99729 mac 99729 bytes_out 0 99729 bytes_in 0 99729 station_ip 5.120.52.23 99729 port 22 99729 unique_id port 99732 username aminvpn 99732 mac 99732 bytes_out 0 99732 bytes_in 0 99732 station_ip 5.120.52.23 99732 port 9 99732 unique_id port 99732 remote_ip 10.8.1.26 99733 username bcboard 99733 unique_id port 99733 terminate_cause Lost-Carrier 99733 bytes_out 2083416 99733 bytes_in 16791954 99733 station_ip 37.129.126.73 99733 port 15729271 99733 nas_port_type Virtual 99733 remote_ip 5.5.5.48 99736 username mehdizare 99736 mac 99736 bytes_out 0 99736 bytes_in 0 99736 station_ip 5.120.189.38 99736 port 20 99736 unique_id port 99736 remote_ip 10.8.0.22 99737 username aminvpn 99737 mac 99737 bytes_out 0 99737 bytes_in 0 99737 station_ip 5.120.52.23 99737 port 10 99737 unique_id port 99737 remote_ip 10.8.1.26 99738 username alihosseini 99738 mac 99738 bytes_out 0 99738 bytes_in 0 99738 station_ip 5.119.222.155 99738 port 23 99738 unique_id port 99738 remote_ip 10.8.0.14 99746 username amir 99746 mac 99746 bytes_out 0 99746 bytes_in 0 99746 station_ip 46.225.210.199 99746 port 24 99746 unique_id port 99746 remote_ip 10.8.0.54 99748 username aminvpn 99748 mac 99748 bytes_out 0 99748 bytes_in 0 99748 station_ip 5.120.52.23 99748 port 10 99748 unique_id port 99698 bytes_out 0 99698 bytes_in 0 99698 station_ip 46.225.210.199 99698 port 11 99698 unique_id port 99698 remote_ip 10.8.0.54 99699 username musa 99699 mac 99699 bytes_out 52560 99699 bytes_in 51153 99699 station_ip 37.129.84.241 99699 port 27 99699 unique_id port 99699 remote_ip 10.8.0.106 99700 username shahrooz 99700 unique_id port 99700 terminate_cause Lost-Carrier 99700 bytes_out 7138557 99700 bytes_in 140887698 99700 station_ip 83.122.1.226 99700 port 15729275 99700 nas_port_type Virtual 99700 remote_ip 5.5.5.45 99705 username musa 99705 mac 99705 bytes_out 1377865 99705 bytes_in 18217092 99705 station_ip 37.129.84.241 99705 port 10 99705 unique_id port 99705 remote_ip 10.8.1.78 99708 username tahmasebi 99708 kill_reason Another user logged on this global unique id 99708 mac 99708 bytes_out 0 99708 bytes_in 0 99708 station_ip 5.119.11.172 99708 port 23 99708 unique_id port 99710 username forozande 99710 mac 99710 bytes_out 1220327 99710 bytes_in 12138772 99710 station_ip 83.122.138.107 99710 port 9 99710 unique_id port 99710 remote_ip 10.8.1.62 99714 username mohammadmahdi 99714 mac 99714 bytes_out 0 99714 bytes_in 0 99714 station_ip 5.120.189.34 99714 port 25 99714 unique_id port 99719 username forozande 99719 mac 99719 bytes_out 843432 99719 bytes_in 16771013 99719 station_ip 113.203.1.128 99719 port 9 99719 unique_id port 99719 remote_ip 10.8.1.62 99720 username aminvpn 99720 mac 99720 bytes_out 0 99720 bytes_in 0 99720 station_ip 5.120.52.23 99720 port 20 99720 unique_id port 99720 remote_ip 10.8.0.6 99721 username alihosseini 99721 mac 99721 bytes_out 0 99721 bytes_in 0 99721 station_ip 5.119.222.155 99721 port 11 99721 unique_id port 99721 remote_ip 10.8.0.14 99727 username amir 99727 mac 99727 bytes_out 0 99727 bytes_in 0 99727 station_ip 46.225.210.199 99727 port 22 99727 unique_id port 99727 remote_ip 10.8.0.54 99730 username amir 99730 mac 99730 bytes_out 0 99730 bytes_in 0 99730 station_ip 46.225.210.199 99730 port 23 99730 unique_id port 99730 remote_ip 10.8.0.54 99731 username forozande 99731 mac 99731 bytes_out 189756 99731 bytes_in 1395535 99731 station_ip 113.203.124.70 99731 port 23 99731 unique_id port 99731 remote_ip 10.8.0.74 99740 username asadi 99740 mac 99740 bytes_out 2548614 99740 bytes_in 46237726 99740 station_ip 37.129.84.189 99740 port 26 99740 unique_id port 99740 remote_ip 10.8.0.50 99741 username amir 99741 mac 99741 bytes_out 3077210 99741 bytes_in 43952390 99741 station_ip 46.225.210.199 99741 port 24 99741 unique_id port 99741 remote_ip 10.8.0.54 99743 username mohammadmahdi 99743 mac 99743 bytes_out 0 99743 bytes_in 0 99743 station_ip 5.120.189.34 99743 port 24 99743 unique_id port 99743 remote_ip 10.8.0.34 99745 username amir 99745 mac 99745 bytes_out 0 99745 bytes_in 0 99745 station_ip 46.225.210.199 99745 port 24 99745 unique_id port 99745 remote_ip 10.8.0.54 99747 username aminvpn 99747 mac 99747 bytes_out 1285090 99747 bytes_in 9052519 99747 station_ip 113.203.38.137 99747 port 23 99747 unique_id port 99747 remote_ip 10.8.0.6 99766 username arman1 99766 kill_reason Another user logged on this global unique id 99766 mac 99766 bytes_out 0 99766 bytes_in 0 99766 station_ip 5.119.28.220 99766 port 23 99766 unique_id port 99768 username aminvpn 99768 mac 99768 bytes_out 0 99768 bytes_in 0 99711 bytes_in 0 99711 station_ip 5.120.52.23 99711 port 24 99711 unique_id port 99711 remote_ip 10.8.0.6 99712 username madadi2 99712 mac 99712 bytes_out 0 99712 bytes_in 0 99712 station_ip 5.119.197.41 99712 port 20 99712 unique_id port 99712 remote_ip 10.8.0.26 99716 username aminvpn 99716 mac 99716 bytes_out 0 99716 bytes_in 0 99716 station_ip 5.120.52.23 99716 port 11 99716 unique_id port 99716 remote_ip 10.8.0.6 99718 username tahmasebi 99718 mac 99718 bytes_out 0 99718 bytes_in 0 99718 station_ip 5.119.11.172 99718 port 23 99718 unique_id port 99722 username alihosseini 99722 mac 99722 bytes_out 0 99722 bytes_in 0 99722 station_ip 5.119.222.155 99722 port 9 99722 unique_id port 99722 remote_ip 10.8.1.6 99728 username aminvpn 99728 mac 99728 bytes_out 0 99728 bytes_in 0 99728 station_ip 5.120.52.23 99728 port 22 99728 unique_id port 99728 remote_ip 10.8.0.6 99734 username alihosseini 99734 mac 99734 bytes_out 0 99734 bytes_in 0 99734 station_ip 5.119.222.155 99734 port 11 99734 unique_id port 99734 remote_ip 10.8.0.14 99735 username abbasaskari 99735 mac 99735 bytes_out 0 99735 bytes_in 0 99735 station_ip 37.129.87.214 99735 port 11 99735 unique_id port 99735 remote_ip 10.8.0.94 99739 username khalili 99739 kill_reason Another user logged on this global unique id 99739 mac 99739 bytes_out 0 99739 bytes_in 0 99739 station_ip 5.120.47.238 99739 port 8 99739 unique_id port 99739 remote_ip 10.8.1.66 99742 username alihosseini 99742 mac 99742 bytes_out 1797759 99742 bytes_in 29476584 99742 station_ip 5.119.222.155 99742 port 11 99742 unique_id port 99742 remote_ip 10.8.0.14 99744 username amir 99744 mac 99744 bytes_out 0 99744 bytes_in 0 99744 station_ip 46.225.210.199 99744 port 25 99744 unique_id port 99744 remote_ip 10.8.0.54 99749 username musa 99749 mac 99749 bytes_out 571762 99749 bytes_in 3071724 99749 station_ip 37.129.53.105 99749 port 9 99749 unique_id port 99749 remote_ip 10.8.1.78 99750 username amir 99750 mac 99750 bytes_out 0 99750 bytes_in 0 99750 station_ip 46.225.210.199 99750 port 24 99750 unique_id port 99750 remote_ip 10.8.0.54 99751 username alihosseini 99751 mac 99751 bytes_out 2609013 99751 bytes_in 38945957 99751 station_ip 5.119.32.187 99751 port 26 99751 unique_id port 99751 remote_ip 10.8.0.14 99752 username alihosseini 99752 mac 99752 bytes_out 0 99752 bytes_in 0 99752 station_ip 5.119.32.187 99752 port 24 99752 unique_id port 99752 remote_ip 10.8.0.14 99754 username arman1 99754 kill_reason Another user logged on this global unique id 99754 mac 99754 bytes_out 0 99754 bytes_in 0 99754 station_ip 5.119.28.220 99754 port 23 99754 unique_id port 99754 remote_ip 10.8.0.86 99755 username aminvpn 99755 unique_id port 99755 terminate_cause Lost-Carrier 99755 bytes_out 75374 99755 bytes_in 640475 99755 station_ip 5.119.140.218 99755 port 15729280 99755 nas_port_type Virtual 99755 remote_ip 5.5.5.43 99760 username arman1 99760 kill_reason Another user logged on this global unique id 99760 mac 99760 bytes_out 0 99760 bytes_in 0 99760 station_ip 5.119.28.220 99760 port 23 99760 unique_id port 99761 username mohammadmahdi 99761 mac 99761 bytes_out 2687696 99761 bytes_in 23158817 99761 station_ip 5.120.189.34 99761 port 11 99761 unique_id port 99761 remote_ip 10.8.0.34 99763 username askari 99763 kill_reason Another user logged on this global unique id 99748 remote_ip 10.8.1.26 99753 username alihosseini 99753 mac 99753 bytes_out 0 99753 bytes_in 0 99753 station_ip 5.119.32.187 99753 port 24 99753 unique_id port 99753 remote_ip 10.8.0.14 99756 username aminvpn 99756 mac 99756 bytes_out 0 99756 bytes_in 0 99756 station_ip 5.120.52.23 99756 port 9 99756 unique_id port 99756 remote_ip 10.8.1.26 99757 username alihosseini 99757 mac 99757 bytes_out 0 99757 bytes_in 0 99757 station_ip 5.119.32.187 99757 port 25 99757 unique_id port 99757 remote_ip 10.8.0.14 99758 username aminvpn 99758 mac 99758 bytes_out 0 99758 bytes_in 0 99758 station_ip 5.120.52.23 99758 port 9 99758 unique_id port 99758 remote_ip 10.8.1.26 99759 username amir 99759 mac 99759 bytes_out 0 99759 bytes_in 0 99759 station_ip 46.225.210.199 99759 port 24 99759 unique_id port 99759 remote_ip 10.8.0.54 99762 username alihosseini 99762 mac 99762 bytes_out 0 99762 bytes_in 0 99762 station_ip 5.119.32.187 99762 port 11 99762 unique_id port 99762 remote_ip 10.8.0.14 99771 username arman1 99771 kill_reason Another user logged on this global unique id 99771 mac 99771 bytes_out 0 99771 bytes_in 0 99771 station_ip 5.119.28.220 99771 port 23 99771 unique_id port 99776 username musa 99776 kill_reason Another user logged on this global unique id 99776 mac 99776 bytes_out 0 99776 bytes_in 0 99776 station_ip 113.203.63.186 99776 port 11 99776 unique_id port 99776 remote_ip 10.8.0.106 99777 username askari 99777 mac 99777 bytes_out 126353 99777 bytes_in 1030058 99777 station_ip 5.119.100.113 99777 port 24 99777 unique_id port 99777 remote_ip 10.8.0.38 99780 username aminvpn 99780 mac 99780 bytes_out 0 99780 bytes_in 0 99780 station_ip 5.120.52.23 99780 port 9 99780 unique_id port 99780 remote_ip 10.8.1.26 99783 username alihosseini 99783 mac 99783 bytes_out 117960 99783 bytes_in 799658 99783 station_ip 5.119.32.187 99783 port 26 99783 unique_id port 99783 remote_ip 10.8.0.14 99787 username aminvpn 99787 mac 99787 bytes_out 0 99787 bytes_in 0 99787 station_ip 5.120.52.23 99787 port 10 99787 unique_id port 99787 remote_ip 10.8.1.26 99789 username amir 99789 mac 99789 bytes_out 0 99789 bytes_in 0 99789 station_ip 46.225.210.199 99789 port 26 99789 unique_id port 99789 remote_ip 10.8.0.54 99792 username askari 99792 mac 99792 bytes_out 0 99792 bytes_in 0 99792 station_ip 5.119.100.113 99792 port 24 99792 unique_id port 99792 remote_ip 10.8.0.38 99793 username amir 99793 mac 99793 bytes_out 0 99793 bytes_in 0 99793 station_ip 46.225.210.199 99793 port 10 99793 unique_id port 99793 remote_ip 10.8.1.34 99794 username musa 99794 kill_reason Another user logged on this global unique id 99794 mac 99794 bytes_out 0 99794 bytes_in 0 99794 station_ip 113.203.63.186 99794 port 11 99794 unique_id port 99796 username amir 99796 mac 99796 bytes_out 26560 99796 bytes_in 109958 99796 station_ip 46.225.210.199 99796 port 10 99796 unique_id port 99796 remote_ip 10.8.1.34 99797 username amir 99797 mac 99797 bytes_out 0 99797 bytes_in 0 99797 station_ip 46.225.210.199 99797 port 26 99797 unique_id port 99797 remote_ip 10.8.0.54 99801 username hashtadani 99801 unique_id port 99801 terminate_cause Lost-Carrier 99801 bytes_out 1320862 99801 bytes_in 14660910 99801 station_ip 5.202.24.68 99801 port 15729282 99801 nas_port_type Virtual 99801 remote_ip 5.5.5.41 99763 mac 99763 bytes_out 0 99763 bytes_in 0 99763 station_ip 5.119.220.72 99763 port 25 99763 unique_id port 99763 remote_ip 10.8.0.38 99764 username aminvpn 99764 mac 99764 bytes_out 0 99764 bytes_in 0 99764 station_ip 5.120.52.23 99764 port 11 99764 unique_id port 99764 remote_ip 10.8.0.6 99765 username amir 99765 mac 99765 bytes_out 0 99765 bytes_in 0 99765 station_ip 46.225.210.199 99765 port 11 99765 unique_id port 99765 remote_ip 10.8.0.54 99767 username askari 99767 mac 99767 bytes_out 0 99767 bytes_in 0 99767 station_ip 5.119.220.72 99767 port 25 99767 unique_id port 99769 username amir 99769 mac 99769 bytes_out 12174 99769 bytes_in 28616 99769 station_ip 46.225.210.199 99769 port 24 99769 unique_id port 99769 remote_ip 10.8.0.54 99770 username alihosseini 99770 mac 99770 bytes_out 110439 99770 bytes_in 312548 99770 station_ip 5.119.32.187 99770 port 9 99770 unique_id port 99770 remote_ip 10.8.1.6 99775 username amir 99775 mac 99775 bytes_out 0 99775 bytes_in 0 99775 station_ip 46.225.210.199 99775 port 26 99775 unique_id port 99775 remote_ip 10.8.0.54 99779 username khalili 99779 mac 99779 bytes_out 0 99779 bytes_in 0 99779 station_ip 5.120.47.238 99779 port 8 99779 unique_id port 99782 username amir 99782 mac 99782 bytes_out 0 99782 bytes_in 0 99782 station_ip 46.225.210.199 99782 port 27 99782 unique_id port 99782 remote_ip 10.8.0.54 99785 username alihosseini 99785 mac 99785 bytes_out 0 99785 bytes_in 0 99785 station_ip 5.119.32.187 99785 port 9 99785 unique_id port 99785 remote_ip 10.8.1.6 99786 username alihosseini 99786 mac 99786 bytes_out 17494 99786 bytes_in 70275 99786 station_ip 5.119.32.187 99786 port 9 99786 unique_id port 99786 remote_ip 10.8.1.6 99788 username mehdizare 99788 mac 99788 bytes_out 0 99788 bytes_in 0 99788 station_ip 5.120.189.38 99788 port 20 99788 unique_id port 99790 username arman1 99790 kill_reason Another user logged on this global unique id 99790 mac 99790 bytes_out 0 99790 bytes_in 0 99790 station_ip 5.119.28.220 99790 port 23 99790 unique_id port 99795 username aminvpn 99795 mac 99795 bytes_out 0 99795 bytes_in 0 99795 station_ip 5.120.52.23 99795 port 11 99795 unique_id port 99795 remote_ip 10.8.1.26 99798 username aminvpn 99798 unique_id port 99798 terminate_cause Lost-Carrier 99798 bytes_out 18450345 99798 bytes_in 538221986 99798 station_ip 31.57.131.102 99798 port 15729272 99798 nas_port_type Virtual 99798 remote_ip 5.5.5.52 99799 username abbasaskari 99799 mac 99799 bytes_out 0 99799 bytes_in 0 99799 station_ip 37.129.25.154 99799 port 27 99799 unique_id port 99799 remote_ip 10.8.0.94 99803 username farhad1 99803 mac 99803 bytes_out 0 99803 bytes_in 0 99803 station_ip 5.120.125.123 99803 port 26 99803 unique_id port 99803 remote_ip 10.8.0.102 99809 username amir 99809 mac 99809 bytes_out 0 99809 bytes_in 0 99809 station_ip 46.225.210.199 99809 port 9 99809 unique_id port 99809 remote_ip 10.8.1.34 99810 username amir 99810 mac 99810 bytes_out 0 99810 bytes_in 0 99810 station_ip 46.225.210.199 99810 port 26 99810 unique_id port 99810 remote_ip 10.8.0.54 99811 username alihosseini 99811 mac 99811 bytes_out 0 99811 bytes_in 0 99811 station_ip 5.119.32.187 99811 port 27 99811 unique_id port 99811 remote_ip 10.8.0.14 99768 station_ip 5.120.52.23 99768 port 24 99768 unique_id port 99768 remote_ip 10.8.0.6 99772 username alihosseini 99772 mac 99772 bytes_out 0 99772 bytes_in 0 99772 station_ip 5.119.32.187 99772 port 9 99772 unique_id port 99772 remote_ip 10.8.1.6 99773 username aminvpn 99773 unique_id port 99773 terminate_cause Lost-Carrier 99773 bytes_out 243870 99773 bytes_in 2517422 99773 station_ip 5.119.102.253 99773 port 15729281 99773 nas_port_type Virtual 99773 remote_ip 5.5.5.42 99774 username aminvpn 99774 kill_reason Maximum check online fails reached 99774 mac 99774 bytes_out 0 99774 bytes_in 0 99774 station_ip 5.120.52.23 99774 port 25 99774 unique_id port 99778 username mehdizare 99778 kill_reason Another user logged on this global unique id 99778 mac 99778 bytes_out 0 99778 bytes_in 0 99778 station_ip 5.120.189.38 99778 port 20 99778 unique_id port 99778 remote_ip 10.8.0.22 99781 username khalili 99781 mac 99781 bytes_out 0 99781 bytes_in 0 99781 station_ip 5.120.47.238 99781 port 8 99781 unique_id port 99781 remote_ip 10.8.1.66 99784 username musa 99784 kill_reason Another user logged on this global unique id 99784 mac 99784 bytes_out 0 99784 bytes_in 0 99784 station_ip 113.203.63.186 99784 port 11 99784 unique_id port 99791 username amir 99791 mac 99791 bytes_out 0 99791 bytes_in 0 99791 station_ip 46.225.210.199 99791 port 10 99791 unique_id port 99791 remote_ip 10.8.1.34 99800 username alihosseini 99800 mac 99800 bytes_out 365246 99800 bytes_in 170165 99800 station_ip 5.119.32.187 99800 port 9 99800 unique_id port 99800 remote_ip 10.8.1.6 99808 username amir 99808 mac 99808 bytes_out 0 99808 bytes_in 0 99808 station_ip 46.225.210.199 99808 port 26 99808 unique_id port 99808 remote_ip 10.8.0.54 99816 username alihosseini 99816 mac 99816 bytes_out 0 99816 bytes_in 0 99816 station_ip 5.119.32.187 99816 port 26 99816 unique_id port 99816 remote_ip 10.8.0.14 99818 username alihosseini 99818 mac 99818 bytes_out 0 99818 bytes_in 0 99818 station_ip 5.119.32.187 99818 port 23 99818 unique_id port 99818 remote_ip 10.8.0.14 99820 username aminvpn 99820 unique_id port 99820 terminate_cause Lost-Carrier 99820 bytes_out 143476 99820 bytes_in 259280 99820 station_ip 5.120.102.83 99820 port 15729284 99820 nas_port_type Virtual 99820 remote_ip 5.5.5.39 99822 username aminvpn 99822 mac 99822 bytes_out 0 99822 bytes_in 0 99822 station_ip 5.120.52.23 99822 port 9 99822 unique_id port 99822 remote_ip 10.8.1.26 99825 username aminvpn 99825 mac 99825 bytes_out 0 99825 bytes_in 0 99825 station_ip 5.120.52.23 99825 port 9 99825 unique_id port 99825 remote_ip 10.8.1.26 99826 username forozande 99826 mac 99826 bytes_out 999147 99826 bytes_in 8685939 99826 station_ip 83.122.123.253 99826 port 27 99826 unique_id port 99826 remote_ip 10.8.0.74 99832 username madadi2 99832 mac 99832 bytes_out 0 99832 bytes_in 0 99832 station_ip 5.120.57.3 99832 port 12 99832 unique_id port 99832 remote_ip 10.8.0.26 99833 username askari 99833 mac 99833 bytes_out 0 99833 bytes_in 0 99833 station_ip 5.119.100.113 99833 port 11 99833 unique_id port 99833 remote_ip 10.8.0.38 99837 username madadi2 99837 mac 99837 bytes_out 0 99837 bytes_in 0 99837 station_ip 5.119.89.65 99837 port 12 99837 unique_id port 99837 remote_ip 10.8.0.26 99838 username musa 99838 mac 99838 bytes_out 415909 99802 username arman1 99802 kill_reason Another user logged on this global unique id 99802 mac 99802 bytes_out 0 99802 bytes_in 0 99802 station_ip 5.119.28.220 99802 port 23 99802 unique_id port 99804 username aminvpn 99804 unique_id port 99804 terminate_cause Lost-Carrier 99804 bytes_out 77649 99804 bytes_in 50604 99804 station_ip 31.57.130.46 99804 port 15729283 99804 nas_port_type Virtual 99804 remote_ip 5.5.5.40 99805 username aminvpn 99805 mac 99805 bytes_out 0 99805 bytes_in 0 99805 station_ip 5.120.52.23 99805 port 26 99805 unique_id port 99805 remote_ip 10.8.0.6 99806 username amir 99806 mac 99806 bytes_out 0 99806 bytes_in 0 99806 station_ip 46.225.210.199 99806 port 28 99806 unique_id port 99806 remote_ip 10.8.0.54 99807 username amir 99807 mac 99807 bytes_out 0 99807 bytes_in 0 99807 station_ip 46.225.210.199 99807 port 26 99807 unique_id port 99807 remote_ip 10.8.0.54 99812 username amir 99812 mac 99812 bytes_out 0 99812 bytes_in 0 99812 station_ip 46.225.210.199 99812 port 26 99812 unique_id port 99812 remote_ip 10.8.0.54 99813 username aminvpn 99813 mac 99813 bytes_out 0 99813 bytes_in 0 99813 station_ip 5.120.52.23 99813 port 26 99813 unique_id port 99813 remote_ip 10.8.0.6 99819 username alihosseini 99819 kill_reason Maximum check online fails reached 99819 mac 99819 bytes_out 0 99819 bytes_in 0 99819 station_ip 5.119.32.187 99819 port 23 99819 unique_id port 99821 username morteza 99821 mac 99821 bytes_out 0 99821 bytes_in 0 99821 station_ip 83.123.215.218 99821 port 28 99821 unique_id port 99821 remote_ip 10.8.0.90 99823 username mirzaei 99823 mac 99823 bytes_out 6488250 99823 bytes_in 45596022 99823 station_ip 5.119.18.158 99823 port 12 99823 unique_id port 99823 remote_ip 10.8.0.30 99827 username alihosseini 99827 mac 99827 bytes_out 0 99827 bytes_in 0 99827 station_ip 5.119.32.187 99827 port 26 99827 unique_id port 99827 remote_ip 10.8.0.14 99828 username forozande 99828 mac 99828 bytes_out 0 99828 bytes_in 0 99828 station_ip 83.122.123.253 99828 port 12 99828 unique_id port 99828 remote_ip 10.8.0.74 99830 username forozande 99830 mac 99830 bytes_out 0 99830 bytes_in 0 99830 station_ip 113.203.73.228 99830 port 24 99830 unique_id port 99830 remote_ip 10.8.0.74 99831 username aminvpn 99831 mac 99831 bytes_out 0 99831 bytes_in 0 99831 station_ip 5.120.52.23 99831 port 24 99831 unique_id port 99831 remote_ip 10.8.0.6 99836 username alihosseini 99836 mac 99836 bytes_out 0 99836 bytes_in 0 99836 station_ip 5.119.32.187 99836 port 9 99836 unique_id port 99836 remote_ip 10.8.1.6 99839 username alihosseini 99839 mac 99839 bytes_out 0 99839 bytes_in 0 99839 station_ip 5.119.32.187 99839 port 9 99839 unique_id port 99839 remote_ip 10.8.1.6 99841 username alihosseini 99841 mac 99841 bytes_out 0 99841 bytes_in 0 99841 station_ip 5.119.32.187 99841 port 28 99841 unique_id port 99841 remote_ip 10.8.0.14 99842 username morteza 99842 mac 99842 bytes_out 0 99842 bytes_in 0 99842 station_ip 113.203.74.231 99842 port 24 99842 unique_id port 99842 remote_ip 10.8.0.90 99844 username alihosseini 99844 mac 99844 bytes_out 0 99844 bytes_in 0 99844 station_ip 5.119.32.187 99844 port 28 99844 unique_id port 99844 remote_ip 10.8.0.14 99845 username mehdizare 99845 mac 99845 bytes_out 0 99845 bytes_in 0 99814 username aminvpn 99814 mac 99814 bytes_out 0 99814 bytes_in 0 99814 station_ip 5.120.52.23 99814 port 26 99814 unique_id port 99814 remote_ip 10.8.0.6 99815 username alihosseini 99815 mac 99815 bytes_out 0 99815 bytes_in 0 99815 station_ip 5.119.32.187 99815 port 26 99815 unique_id port 99815 remote_ip 10.8.0.14 99817 username arman1 99817 mac 99817 bytes_out 0 99817 bytes_in 0 99817 station_ip 5.119.28.220 99817 port 23 99817 unique_id port 99824 username askari 99824 mac 99824 bytes_out 0 99824 bytes_in 0 99824 station_ip 5.119.100.113 99824 port 24 99824 unique_id port 99824 remote_ip 10.8.0.38 99829 username alihosseini 99829 mac 99829 bytes_out 207954 99829 bytes_in 1470980 99829 station_ip 5.119.32.187 99829 port 12 99829 unique_id port 99829 remote_ip 10.8.0.14 99834 username aminvpn 99834 mac 99834 bytes_out 18868 99834 bytes_in 39871 99834 station_ip 5.120.52.23 99834 port 12 99834 unique_id port 99834 remote_ip 10.8.0.6 99835 username rezasekonji 99835 unique_id port 99835 terminate_cause Lost-Carrier 99835 bytes_out 6128 99835 bytes_in 11713 99835 station_ip 46.225.209.227 99835 port 15729285 99835 nas_port_type Virtual 99835 remote_ip 5.5.5.38 99848 username arman1 99848 kill_reason Another user logged on this global unique id 99848 mac 99848 bytes_out 0 99848 bytes_in 0 99848 station_ip 5.119.180.34 99848 port 26 99848 unique_id port 99848 remote_ip 10.8.0.86 99853 username alihosseini 99853 mac 99853 bytes_out 0 99853 bytes_in 0 99853 station_ip 5.119.32.187 99853 port 12 99853 unique_id port 99853 remote_ip 10.8.0.14 99855 username aminvpn 99855 mac 99855 bytes_out 815158 99855 bytes_in 5707269 99855 station_ip 5.120.52.23 99855 port 24 99855 unique_id port 99855 remote_ip 10.8.0.6 99856 username alihosseini 99856 mac 99856 bytes_out 72748 99856 bytes_in 185677 99856 station_ip 5.119.32.187 99856 port 12 99856 unique_id port 99856 remote_ip 10.8.0.14 99859 username forozande 99859 mac 99859 bytes_out 0 99859 bytes_in 0 99859 station_ip 83.122.119.162 99859 port 11 99859 unique_id port 99859 remote_ip 10.8.0.74 99863 username rezasekonji 99863 unique_id port 99863 terminate_cause User-Request 99863 bytes_out 6483 99863 bytes_in 3303 99863 station_ip 83.122.131.87 99863 port 15729287 99863 nas_port_type Virtual 99863 remote_ip 5.5.5.36 99864 username alihosseini 99864 mac 99864 bytes_out 0 99864 bytes_in 0 99864 station_ip 5.119.32.187 99864 port 26 99864 unique_id port 99864 remote_ip 10.8.0.14 99867 username alihosseini 99867 mac 99867 bytes_out 0 99867 bytes_in 0 99867 station_ip 5.119.32.187 99867 port 9 99867 unique_id port 99867 remote_ip 10.8.1.6 99870 username forozande 99870 kill_reason Another user logged on this global unique id 99870 mac 99870 bytes_out 0 99870 bytes_in 0 99870 station_ip 83.122.41.115 99870 port 11 99870 unique_id port 99870 remote_ip 10.8.0.74 99872 username aminvpn 99872 mac 99872 bytes_out 0 99872 bytes_in 0 99872 station_ip 37.129.85.216 99872 port 26 99872 unique_id port 99872 remote_ip 10.8.0.6 99875 username mirzaei 99875 kill_reason Another user logged on this global unique id 99875 mac 99875 bytes_out 0 99875 bytes_in 0 99875 station_ip 5.119.209.151 99875 port 27 99875 unique_id port 99875 remote_ip 10.8.0.30 99878 username alihosseini 99878 mac 99878 bytes_out 2459 99878 bytes_in 4849 99878 station_ip 5.119.32.187 99838 bytes_in 4180097 99838 station_ip 113.203.63.186 99838 port 28 99838 unique_id port 99838 remote_ip 10.8.0.106 99840 username alihosseini 99840 mac 99840 bytes_out 0 99840 bytes_in 0 99840 station_ip 5.119.32.187 99840 port 28 99840 unique_id port 99840 remote_ip 10.8.0.14 99843 username musa 99843 mac 99843 bytes_out 0 99843 bytes_in 0 99843 station_ip 113.203.63.186 99843 port 12 99843 unique_id port 99843 remote_ip 10.8.0.106 99847 username fariba 99847 kill_reason Maximum check online fails reached 99847 mac 99847 bytes_out 1374688 99847 bytes_in 1751132 99847 station_ip 5.119.111.35 99847 port 19 99847 unique_id port 99847 remote_ip 10.8.0.46 99849 username forozande 99849 mac 99849 bytes_out 0 99849 bytes_in 0 99849 station_ip 113.203.32.64 99849 port 27 99849 unique_id port 99849 remote_ip 10.8.0.74 99851 username arman1 99851 mac 99851 bytes_out 0 99851 bytes_in 0 99851 station_ip 5.119.180.34 99851 port 26 99851 unique_id port 99854 username askari 99854 mac 99854 bytes_out 0 99854 bytes_in 0 99854 station_ip 5.119.197.32 99854 port 11 99854 unique_id port 99854 remote_ip 10.8.0.38 99857 username forozande 99857 mac 99857 bytes_out 0 99857 bytes_in 0 99857 station_ip 83.122.88.3 99857 port 11 99857 unique_id port 99857 remote_ip 10.8.0.74 99858 username alihosseini 99858 mac 99858 bytes_out 0 99858 bytes_in 0 99858 station_ip 5.119.32.187 99858 port 9 99858 unique_id port 99858 remote_ip 10.8.1.6 99860 username alihosseini 99860 mac 99860 bytes_out 0 99860 bytes_in 0 99860 station_ip 5.119.32.187 99860 port 9 99860 unique_id port 99860 remote_ip 10.8.1.6 99862 username musa 99862 mac 99862 bytes_out 1996216 99862 bytes_in 46600618 99862 station_ip 83.122.151.226 99862 port 26 99862 unique_id port 99862 remote_ip 10.8.0.106 99865 username alihosseini 99865 mac 99865 bytes_out 0 99865 bytes_in 0 99865 station_ip 5.119.32.187 99865 port 9 99865 unique_id port 99865 remote_ip 10.8.1.6 99866 username mohammadmahdi 99866 mac 99866 bytes_out 0 99866 bytes_in 0 99866 station_ip 5.120.189.34 99866 port 11 99866 unique_id port 99866 remote_ip 10.8.0.34 99869 username mehdizare 99869 mac 99869 bytes_out 104384 99869 bytes_in 274592 99869 station_ip 5.120.189.38 99869 port 20 99869 unique_id port 99869 remote_ip 10.8.0.22 99871 username alihosseini 99871 mac 99871 bytes_out 0 99871 bytes_in 0 99871 station_ip 5.119.32.187 99871 port 20 99871 unique_id port 99871 remote_ip 10.8.0.14 99873 username morteza 99873 mac 99873 bytes_out 1712125 99873 bytes_in 26463226 99873 station_ip 113.203.74.231 99873 port 29 99873 unique_id port 99873 remote_ip 10.8.0.90 99874 username alihosseini 99874 mac 99874 bytes_out 0 99874 bytes_in 0 99874 station_ip 5.119.32.187 99874 port 20 99874 unique_id port 99874 remote_ip 10.8.0.14 99876 username alihosseini 99876 mac 99876 bytes_out 0 99876 bytes_in 0 99876 station_ip 5.119.32.187 99876 port 9 99876 unique_id port 99876 remote_ip 10.8.1.6 99877 username alihosseini 99877 mac 99877 bytes_out 0 99877 bytes_in 0 99877 station_ip 5.119.32.187 99877 port 9 99877 unique_id port 99877 remote_ip 10.8.1.6 99879 username alihosseini 99879 mac 99879 bytes_out 0 99879 bytes_in 0 99879 station_ip 5.119.32.187 99879 port 20 99879 unique_id port 99879 remote_ip 10.8.0.14 99845 station_ip 5.120.189.38 99845 port 20 99845 unique_id port 99845 remote_ip 10.8.0.22 99846 username mammad 99846 unique_id port 99846 terminate_cause User-Request 99846 bytes_out 14 99846 bytes_in 66 99846 station_ip 2.183.246.232 99846 port 15729286 99846 nas_port_type Virtual 99846 remote_ip 5.5.5.37 99850 username alihosseini 99850 mac 99850 bytes_out 2106662 99850 bytes_in 23069827 99850 station_ip 5.119.32.187 99850 port 12 99850 unique_id port 99850 remote_ip 10.8.0.14 99852 username mahdiyehalizadeh 99852 mac 99852 bytes_out 0 99852 bytes_in 0 99852 station_ip 83.122.85.74 99852 port 28 99852 unique_id port 99852 remote_ip 10.8.0.42 99861 username alihosseini 99861 mac 99861 bytes_out 0 99861 bytes_in 0 99861 station_ip 5.119.32.187 99861 port 9 99861 unique_id port 99861 remote_ip 10.8.1.6 99868 username musa 99868 mac 99868 bytes_out 0 99868 bytes_in 0 99868 station_ip 83.122.151.226 99868 port 24 99868 unique_id port 99868 remote_ip 10.8.0.106 99882 username mehdizare 99882 mac 99882 bytes_out 31986 99882 bytes_in 35042 99882 station_ip 5.120.189.38 99882 port 24 99882 unique_id port 99882 remote_ip 10.8.0.22 99884 username mammad 99884 unique_id port 99884 terminate_cause User-Request 99884 bytes_out 0 99884 bytes_in 0 99884 station_ip 2.183.246.232 99884 port 15729290 99884 nas_port_type Virtual 99884 remote_ip 5.5.5.37 99889 username madadi2 99889 mac 99889 bytes_out 81194 99889 bytes_in 61962 99889 station_ip 5.120.157.125 99889 port 12 99889 unique_id port 99889 remote_ip 10.8.0.26 99890 username alihosseini 99890 mac 99890 bytes_out 5628 99890 bytes_in 14231 99890 station_ip 5.119.32.187 99890 port 20 99890 unique_id port 99890 remote_ip 10.8.0.14 99892 username forozande 99892 mac 99892 bytes_out 0 99892 bytes_in 0 99892 station_ip 83.122.41.115 99892 port 11 99892 unique_id port 99894 username alihosseini 99894 mac 99894 bytes_out 26812 99894 bytes_in 114327 99894 station_ip 5.119.32.187 99894 port 12 99894 unique_id port 99894 remote_ip 10.8.0.14 99896 username mirzaei 99896 kill_reason Another user logged on this global unique id 99896 mac 99896 bytes_out 0 99896 bytes_in 0 99896 station_ip 5.119.209.151 99896 port 27 99896 unique_id port 99901 username alihosseini 99901 mac 99901 bytes_out 0 99901 bytes_in 0 99901 station_ip 5.119.32.187 99901 port 11 99901 unique_id port 99901 remote_ip 10.8.0.14 99903 username aminvpn 99903 unique_id port 99903 terminate_cause Lost-Carrier 99903 bytes_out 82340 99903 bytes_in 203591 99903 station_ip 5.120.28.189 99903 port 15729289 99903 nas_port_type Virtual 99903 remote_ip 5.5.5.35 99905 username madadi2 99905 mac 99905 bytes_out 0 99905 bytes_in 0 99905 station_ip 5.119.167.63 99905 port 9 99905 unique_id port 99905 remote_ip 10.8.1.18 99908 username musa 99908 mac 99908 bytes_out 1282982 99908 bytes_in 20819651 99908 station_ip 113.203.29.234 99908 port 11 99908 unique_id port 99908 remote_ip 10.8.0.106 99912 username madadi2 99912 mac 99912 bytes_out 0 99912 bytes_in 0 99912 station_ip 5.120.101.144 99912 port 9 99912 unique_id port 99912 remote_ip 10.8.1.18 99915 username aminvpn 99915 mac 99915 bytes_out 87975 99915 bytes_in 357969 99915 station_ip 5.120.52.23 99915 port 30 99915 unique_id port 99915 remote_ip 10.8.0.6 99916 username musa 99916 mac 99916 bytes_out 2341543 99916 bytes_in 25437411 99878 port 9 99878 unique_id port 99878 remote_ip 10.8.1.6 99883 username alihosseini 99883 mac 99883 bytes_out 0 99883 bytes_in 0 99883 station_ip 5.119.32.187 99883 port 20 99883 unique_id port 99883 remote_ip 10.8.0.14 99887 username aminvpn 99887 mac 99887 bytes_out 156694 99887 bytes_in 578040 99887 station_ip 5.120.52.23 99887 port 24 99887 unique_id port 99887 remote_ip 10.8.0.6 99888 username amir 99888 mac 99888 bytes_out 0 99888 bytes_in 0 99888 station_ip 46.225.214.160 99888 port 20 99888 unique_id port 99888 remote_ip 10.8.0.54 99899 username alihosseini 99899 kill_reason Maximum check online fails reached 99899 mac 99899 bytes_out 0 99899 bytes_in 0 99899 station_ip 5.119.32.187 99899 port 12 99899 unique_id port 99902 username amir 99902 mac 99902 bytes_out 0 99902 bytes_in 0 99902 station_ip 46.225.214.160 99902 port 20 99902 unique_id port 99902 remote_ip 10.8.0.54 99904 username aminvpn 99904 mac 99904 bytes_out 0 99904 bytes_in 0 99904 station_ip 5.120.52.23 99904 port 9 99904 unique_id port 99904 remote_ip 10.8.1.26 99906 username forozande 99906 mac 99906 bytes_out 60934 99906 bytes_in 58261 99906 station_ip 83.122.41.115 99906 port 24 99906 unique_id port 99906 remote_ip 10.8.0.74 99907 username alihosseini 99907 mac 99907 bytes_out 26701 99907 bytes_in 37729 99907 station_ip 5.119.32.187 99907 port 20 99907 unique_id port 99907 remote_ip 10.8.0.14 99909 username aminvpn 99909 mac 99909 bytes_out 0 99909 bytes_in 0 99909 station_ip 5.120.52.23 99909 port 9 99909 unique_id port 99909 remote_ip 10.8.1.26 99911 username aminvpn 99911 mac 99911 bytes_out 0 99911 bytes_in 0 99911 station_ip 5.120.52.23 99911 port 30 99911 unique_id port 99911 remote_ip 10.8.0.6 99913 username mirzaei 99913 kill_reason Another user logged on this global unique id 99913 mac 99913 bytes_out 0 99913 bytes_in 0 99913 station_ip 5.119.209.151 99913 port 27 99913 unique_id port 99914 username forozande 99914 mac 99914 bytes_out 1212829 99914 bytes_in 18104719 99914 station_ip 83.122.41.94 99914 port 28 99914 unique_id port 99914 remote_ip 10.8.0.74 99919 username askari 99919 mac 99919 bytes_out 414112 99919 bytes_in 5440614 99919 station_ip 5.119.8.5 99919 port 28 99919 unique_id port 99919 remote_ip 10.8.0.38 99922 username amir 99922 mac 99922 bytes_out 0 99922 bytes_in 0 99922 station_ip 46.225.214.160 99922 port 9 99922 unique_id port 99922 remote_ip 10.8.1.34 99923 username amir 99923 mac 99923 bytes_out 0 99923 bytes_in 0 99923 station_ip 46.225.214.160 99923 port 9 99923 unique_id port 99923 remote_ip 10.8.1.34 99925 username amir 99925 mac 99925 bytes_out 0 99925 bytes_in 0 99925 station_ip 46.225.214.160 99925 port 9 99925 unique_id port 99925 remote_ip 10.8.1.34 99928 username askari 99928 kill_reason Another user logged on this global unique id 99928 mac 99928 bytes_out 0 99928 bytes_in 0 99928 station_ip 5.120.14.10 99928 port 29 99928 unique_id port 99929 username alihosseini 99929 kill_reason Another user logged on this global unique id 99929 mac 99929 bytes_out 0 99929 bytes_in 0 99929 station_ip 5.119.154.51 99929 port 20 99929 unique_id port 99929 remote_ip 10.8.0.14 99931 username askari 99931 mac 99931 bytes_out 0 99931 bytes_in 0 99931 station_ip 5.120.14.10 99931 port 29 99931 unique_id port 99880 username alihosseini 99880 mac 99880 bytes_out 0 99880 bytes_in 0 99880 station_ip 5.119.32.187 99880 port 20 99880 unique_id port 99880 remote_ip 10.8.0.14 99881 username mirzaei 99881 kill_reason Another user logged on this global unique id 99881 mac 99881 bytes_out 0 99881 bytes_in 0 99881 station_ip 5.119.209.151 99881 port 27 99881 unique_id port 99885 username alihosseini 99885 mac 99885 bytes_out 0 99885 bytes_in 0 99885 station_ip 5.119.32.187 99885 port 20 99885 unique_id port 99885 remote_ip 10.8.0.14 99886 username amir 99886 mac 99886 bytes_out 0 99886 bytes_in 0 99886 station_ip 46.225.214.160 99886 port 9 99886 unique_id port 99886 remote_ip 10.8.1.34 99891 username amir 99891 mac 99891 bytes_out 0 99891 bytes_in 0 99891 station_ip 46.225.214.160 99891 port 12 99891 unique_id port 99891 remote_ip 10.8.0.54 99893 username amir 99893 mac 99893 bytes_out 0 99893 bytes_in 0 99893 station_ip 46.225.214.160 99893 port 20 99893 unique_id port 99893 remote_ip 10.8.0.54 99895 username aminvpn 99895 mac 99895 bytes_out 57176 99895 bytes_in 282794 99895 station_ip 5.120.52.23 99895 port 11 99895 unique_id port 99895 remote_ip 10.8.0.6 99897 username madadi2 99897 mac 99897 bytes_out 2292 99897 bytes_in 4695 99897 station_ip 5.120.141.27 99897 port 11 99897 unique_id port 99897 remote_ip 10.8.0.26 99898 username alihosseini 99898 mac 99898 bytes_out 0 99898 bytes_in 0 99898 station_ip 5.119.32.187 99898 port 20 99898 unique_id port 99898 remote_ip 10.8.0.14 99900 username mahbobeh 99900 unique_id port 99900 terminate_cause User-Request 99900 bytes_out 17300584 99900 bytes_in 886594 99900 station_ip 113.203.56.251 99900 port 15729291 99900 nas_port_type Virtual 99900 remote_ip 5.5.5.34 99910 username forozande 99910 mac 99910 bytes_out 939545 99910 bytes_in 9679941 99910 station_ip 83.122.41.115 99910 port 28 99910 unique_id port 99910 remote_ip 10.8.0.74 99917 username amir 99917 mac 99917 bytes_out 1637219 99917 bytes_in 3546024 99917 station_ip 46.225.214.160 99917 port 24 99917 unique_id port 99917 remote_ip 10.8.0.54 99921 username madadi2 99921 mac 99921 bytes_out 220014 99921 bytes_in 1490309 99921 station_ip 5.119.90.152 99921 port 24 99921 unique_id port 99921 remote_ip 10.8.0.26 99924 username askari 99924 kill_reason Another user logged on this global unique id 99924 mac 99924 bytes_out 0 99924 bytes_in 0 99924 station_ip 5.120.14.10 99924 port 29 99924 unique_id port 99924 remote_ip 10.8.0.38 99935 username mehdizare 99935 mac 99935 bytes_out 0 99935 bytes_in 0 99935 station_ip 5.120.189.38 99935 port 26 99935 unique_id port 99935 remote_ip 10.8.0.22 99937 username alihosseini 99937 kill_reason Another user logged on this global unique id 99937 mac 99937 bytes_out 0 99937 bytes_in 0 99937 station_ip 5.119.154.51 99937 port 20 99937 unique_id port 99940 username alihosseini 99940 mac 99940 bytes_out 0 99940 bytes_in 0 99940 station_ip 5.119.154.51 99940 port 20 99940 unique_id port 99944 username mehdizare 99944 mac 99944 bytes_out 0 99944 bytes_in 0 99944 station_ip 5.120.189.38 99944 port 26 99944 unique_id port 99944 remote_ip 10.8.0.22 99946 username forozande 99946 mac 99946 bytes_out 0 99946 bytes_in 0 99946 station_ip 83.123.99.11 99946 port 28 99946 unique_id port 99946 remote_ip 10.8.0.74 99947 username amir 99947 mac 99916 station_ip 113.203.29.234 99916 port 11 99916 unique_id port 99916 remote_ip 10.8.0.106 99918 username asadi 99918 mac 99918 bytes_out 159654 99918 bytes_in 1442397 99918 station_ip 37.129.252.5 99918 port 29 99918 unique_id port 99918 remote_ip 10.8.0.50 99920 username amir 99920 mac 99920 bytes_out 49755 99920 bytes_in 202037 99920 station_ip 46.225.214.160 99920 port 24 99920 unique_id port 99920 remote_ip 10.8.0.54 99926 username amir 99926 mac 99926 bytes_out 0 99926 bytes_in 0 99926 station_ip 46.225.214.160 99926 port 24 99926 unique_id port 99926 remote_ip 10.8.0.54 99927 username amir 99927 mac 99927 bytes_out 0 99927 bytes_in 0 99927 station_ip 46.225.214.160 99927 port 28 99927 unique_id port 99927 remote_ip 10.8.0.54 99930 username askari 99930 kill_reason Another user logged on this global unique id 99930 mac 99930 bytes_out 0 99930 bytes_in 0 99930 station_ip 5.120.14.10 99930 port 29 99930 unique_id port 99932 username mirzaei 99932 kill_reason Another user logged on this global unique id 99932 mac 99932 bytes_out 0 99932 bytes_in 0 99932 station_ip 5.119.209.151 99932 port 27 99932 unique_id port 99933 username amir 99933 mac 99933 bytes_out 0 99933 bytes_in 0 99933 station_ip 46.225.214.160 99933 port 28 99933 unique_id port 99933 remote_ip 10.8.0.54 99938 username amir 99938 mac 99938 bytes_out 0 99938 bytes_in 0 99938 station_ip 46.225.214.160 99938 port 28 99938 unique_id port 99938 remote_ip 10.8.0.54 99942 username mehdizare 99942 mac 99942 bytes_out 0 99942 bytes_in 0 99942 station_ip 5.120.189.38 99942 port 28 99942 unique_id port 99942 remote_ip 10.8.0.22 99949 username rezasekonji 99949 unique_id port 99949 terminate_cause User-Request 99949 bytes_out 339 99949 bytes_in 743 99949 station_ip 83.122.131.87 99949 port 15729295 99949 nas_port_type Virtual 99949 remote_ip 5.5.5.36 99950 username aminvpn 99950 unique_id port 99950 terminate_cause Lost-Carrier 99950 bytes_out 905692 99950 bytes_in 10250888 99950 station_ip 5.119.83.239 99950 port 15729292 99950 nas_port_type Virtual 99950 remote_ip 5.5.5.33 99952 username mohammadmahdi 99952 mac 99952 bytes_out 0 99952 bytes_in 0 99952 station_ip 5.120.189.34 99952 port 30 99952 unique_id port 99952 remote_ip 10.8.0.34 99953 username mahdiyehalizadeh 99953 mac 99953 bytes_out 0 99953 bytes_in 0 99953 station_ip 83.122.178.57 99953 port 20 99953 unique_id port 99953 remote_ip 10.8.0.42 99958 username mohammadmahdi 99958 mac 99958 bytes_out 0 99958 bytes_in 0 99958 station_ip 5.120.189.34 99958 port 31 99958 unique_id port 99958 remote_ip 10.8.0.34 99961 username madadi2 99961 mac 99961 bytes_out 0 99961 bytes_in 0 99961 station_ip 5.119.77.75 99961 port 20 99961 unique_id port 99961 remote_ip 10.8.0.26 99965 username amir 99965 mac 99965 bytes_out 117127 99965 bytes_in 118346 99965 station_ip 46.225.214.160 99965 port 9 99965 unique_id port 99965 remote_ip 10.8.1.34 99970 username mohammadmahdi 99970 mac 99970 bytes_out 0 99970 bytes_in 0 99970 station_ip 5.120.189.34 99970 port 11 99970 unique_id port 99970 remote_ip 10.8.0.34 99972 username amir 99972 mac 99972 bytes_out 19424 99972 bytes_in 30450 99972 station_ip 46.225.214.160 99972 port 9 99972 unique_id port 99972 remote_ip 10.8.1.34 99973 username amir 99973 mac 99973 bytes_out 0 99973 bytes_in 0 99934 username ahmadi 99934 unique_id port 99934 terminate_cause User-Request 99934 bytes_out 54636 99934 bytes_in 296649 99934 station_ip 83.123.202.196 99934 port 15729293 99934 nas_port_type Virtual 99934 remote_ip 5.5.5.32 99936 username amir 99936 mac 99936 bytes_out 0 99936 bytes_in 0 99936 station_ip 46.225.214.160 99936 port 26 99936 unique_id port 99936 remote_ip 10.8.0.54 99939 username amir 99939 mac 99939 bytes_out 0 99939 bytes_in 0 99939 station_ip 46.225.214.160 99939 port 28 99939 unique_id port 99939 remote_ip 10.8.0.54 99941 username mohammadmahdi 99941 mac 99941 bytes_out 0 99941 bytes_in 0 99941 station_ip 5.120.189.34 99941 port 26 99941 unique_id port 99941 remote_ip 10.8.0.34 99943 username alihosseini 99943 mac 99943 bytes_out 0 99943 bytes_in 0 99943 station_ip 5.119.154.51 99943 port 9 99943 unique_id port 99943 remote_ip 10.8.1.6 99945 username farhad1 99945 kill_reason Another user logged on this global unique id 99945 mac 99945 bytes_out 0 99945 bytes_in 0 99945 station_ip 5.120.22.144 99945 port 24 99945 unique_id port 99945 remote_ip 10.8.0.102 99948 username mohammadmahdi 99948 mac 99948 bytes_out 0 99948 bytes_in 0 99948 station_ip 5.120.189.34 99948 port 30 99948 unique_id port 99948 remote_ip 10.8.0.34 99959 username rezasekonji 99959 unique_id port 99959 terminate_cause User-Request 99959 bytes_out 2311 99959 bytes_in 10935 99959 station_ip 83.122.131.87 99959 port 15729297 99959 nas_port_type Virtual 99959 remote_ip 5.5.5.36 99963 username aminvpn 99963 unique_id port 99963 terminate_cause Lost-Carrier 99963 bytes_out 6234076 99963 bytes_in 116921630 99963 station_ip 31.57.130.25 99963 port 15729296 99963 nas_port_type Virtual 99963 remote_ip 5.5.5.30 99964 username madadi2 99964 mac 99964 bytes_out 152007 99964 bytes_in 243043 99964 station_ip 5.120.141.219 99964 port 24 99964 unique_id port 99964 remote_ip 10.8.0.26 99966 username alihosseini 99966 mac 99966 bytes_out 0 99966 bytes_in 0 99966 station_ip 5.119.154.51 99966 port 26 99966 unique_id port 99966 remote_ip 10.8.0.14 99967 username amir 99967 mac 99967 bytes_out 28420 99967 bytes_in 75892 99967 station_ip 46.225.214.160 99967 port 9 99967 unique_id port 99967 remote_ip 10.8.1.34 99968 username sobhan 99968 unique_id port 99968 terminate_cause Lost-Carrier 99968 bytes_out 2016188 99968 bytes_in 40174246 99968 station_ip 5.233.75.250 99968 port 15729294 99968 nas_port_type Virtual 99968 remote_ip 5.5.5.31 99975 username amir 99975 mac 99975 bytes_out 0 99975 bytes_in 0 99975 station_ip 46.225.214.160 99975 port 11 99975 unique_id port 99975 remote_ip 10.8.0.54 99977 username rezasekonji 99977 unique_id port 99977 terminate_cause User-Request 99977 bytes_out 331 99977 bytes_in 743 99977 station_ip 83.122.131.87 99977 port 15729299 99977 nas_port_type Virtual 99977 remote_ip 5.5.5.36 99978 username mehdizare 99978 mac 99978 bytes_out 0 99978 bytes_in 0 99978 station_ip 5.120.189.38 99978 port 19 99978 unique_id port 99978 remote_ip 10.8.0.22 99983 username amir 99983 mac 99983 bytes_out 18204 99983 bytes_in 13479 99983 station_ip 46.225.214.160 99983 port 9 99983 unique_id port 99983 remote_ip 10.8.1.34 99985 username amir 99985 mac 99985 bytes_out 0 99985 bytes_in 0 99985 station_ip 46.225.214.160 99985 port 9 99985 unique_id port 99985 remote_ip 10.8.1.34 99991 username amir 99991 mac 99991 bytes_out 0 99947 bytes_out 0 99947 bytes_in 0 99947 station_ip 46.225.214.160 99947 port 29 99947 unique_id port 99947 remote_ip 10.8.0.54 99951 username amir 99951 kill_reason Maximum check online fails reached 99951 mac 99951 bytes_out 0 99951 bytes_in 0 99951 station_ip 46.225.214.160 99951 port 28 99951 unique_id port 99954 username mohammadmahdi 99954 mac 99954 bytes_out 0 99954 bytes_in 0 99954 station_ip 5.120.189.34 99954 port 30 99954 unique_id port 99954 remote_ip 10.8.0.34 99955 username musa 99955 mac 99955 bytes_out 0 99955 bytes_in 0 99955 station_ip 37.129.3.37 99955 port 11 99955 unique_id port 99955 remote_ip 10.8.0.106 99956 username farhad1 99956 mac 99956 bytes_out 0 99956 bytes_in 0 99956 station_ip 5.120.22.144 99956 port 24 99956 unique_id port 99957 username amir 99957 mac 99957 bytes_out 204476 99957 bytes_in 467501 99957 station_ip 46.225.214.160 99957 port 9 99957 unique_id port 99957 remote_ip 10.8.1.34 99960 username mahdiyehalizadeh 99960 mac 99960 bytes_out 0 99960 bytes_in 0 99960 station_ip 83.122.178.57 99960 port 30 99960 unique_id port 99960 remote_ip 10.8.0.42 99962 username musa 99962 mac 99962 bytes_out 62182 99962 bytes_in 232614 99962 station_ip 37.129.96.137 99962 port 10 99962 unique_id port 99962 remote_ip 10.8.1.78 99969 username amir 99969 mac 99969 bytes_out 0 99969 bytes_in 0 99969 station_ip 46.225.214.160 99969 port 9 99969 unique_id port 99969 remote_ip 10.8.1.34 99971 username mehdizare 99971 mac 99971 bytes_out 0 99971 bytes_in 0 99971 station_ip 5.120.189.38 99971 port 29 99971 unique_id port 99971 remote_ip 10.8.0.22 99976 username amir 99976 mac 99976 bytes_out 0 99976 bytes_in 0 99976 station_ip 46.225.214.160 99976 port 9 99976 unique_id port 99976 remote_ip 10.8.1.34 99980 username amir 99980 mac 99980 bytes_out 0 99980 bytes_in 0 99980 station_ip 46.225.214.160 99980 port 9 99980 unique_id port 99980 remote_ip 10.8.1.34 99981 username sobhan 99981 unique_id port 99981 terminate_cause Lost-Carrier 99981 bytes_out 4275100 99981 bytes_in 85725134 99981 station_ip 5.120.176.248 99981 port 15729298 99981 nas_port_type Virtual 99981 remote_ip 5.5.5.29 99984 username amir 99984 mac 99984 bytes_out 0 99984 bytes_in 0 99984 station_ip 46.225.214.160 99984 port 11 99984 unique_id port 99984 remote_ip 10.8.0.54 99987 username musa 99987 mac 99987 bytes_out 1179530 99987 bytes_in 7856863 99987 station_ip 37.129.96.137 99987 port 10 99987 unique_id port 99987 remote_ip 10.8.1.78 99989 username amir 99989 mac 99989 bytes_out 0 99989 bytes_in 0 99989 station_ip 46.225.214.160 99989 port 9 99989 unique_id port 99989 remote_ip 10.8.1.34 99993 username sobhan 99993 unique_id port 99993 terminate_cause Lost-Carrier 99993 bytes_out 7368521 99993 bytes_in 166078610 99993 station_ip 5.120.176.248 99993 port 15729301 99993 nas_port_type Virtual 99993 remote_ip 5.5.5.29 99996 username mehdizare 99996 mac 99996 bytes_out 7246 99996 bytes_in 11108 99996 station_ip 5.114.98.72 99996 port 19 99996 unique_id port 99996 remote_ip 10.8.0.22 100000 username mehdizare 100000 mac 100000 bytes_out 0 100000 bytes_in 0 100000 station_ip 5.120.114.101 100000 port 24 100000 unique_id port 100000 remote_ip 10.8.0.22 100001 username amir 100001 mac 100001 bytes_out 0 100001 bytes_in 0 100001 station_ip 46.225.214.160 99973 station_ip 46.225.214.160 99973 port 19 99973 unique_id port 99973 remote_ip 10.8.0.54 99974 username mehdizare 99974 mac 99974 bytes_out 8643 99974 bytes_in 11362 99974 station_ip 5.120.189.38 99974 port 11 99974 unique_id port 99974 remote_ip 10.8.0.22 99979 username aminvpn 99979 unique_id port 99979 terminate_cause User-Request 99979 bytes_out 638999 99979 bytes_in 12152919 99979 station_ip 31.57.128.96 99979 port 15729300 99979 nas_port_type Virtual 99979 remote_ip 5.5.5.28 99982 username mehdizare 99982 mac 99982 bytes_out 0 99982 bytes_in 0 99982 station_ip 5.120.189.38 99982 port 11 99982 unique_id port 99982 remote_ip 10.8.0.22 99986 username amir 99986 mac 99986 bytes_out 0 99986 bytes_in 0 99986 station_ip 46.225.214.160 99986 port 9 99986 unique_id port 99986 remote_ip 10.8.1.34 99988 username mahdiyehalizadeh 99988 mac 99988 bytes_out 124197 99988 bytes_in 1324019 99988 station_ip 83.122.175.65 99988 port 11 99988 unique_id port 99988 remote_ip 10.8.0.42 99990 username amir 99990 mac 99990 bytes_out 0 99990 bytes_in 0 99990 station_ip 46.225.214.160 99990 port 9 99990 unique_id port 99990 remote_ip 10.8.1.34 99995 username amir 99995 mac 99995 bytes_out 0 99995 bytes_in 0 99995 station_ip 46.225.214.160 99995 port 24 99995 unique_id port 99995 remote_ip 10.8.0.54 99997 username amir 99997 mac 99997 bytes_out 0 99997 bytes_in 0 99997 station_ip 46.225.214.160 99997 port 19 99997 unique_id port 99997 remote_ip 10.8.0.54 99998 username amir 99998 mac 99998 bytes_out 0 99998 bytes_in 0 99998 station_ip 46.225.214.160 99998 port 19 99998 unique_id port 99998 remote_ip 10.8.0.54 99999 username amir 99999 mac 99999 bytes_out 0 99999 bytes_in 0 99999 station_ip 46.225.214.160 99999 port 9 99999 unique_id port 99999 remote_ip 10.8.1.34 100005 username madadi2 100005 mac 100005 bytes_out 0 100005 bytes_in 0 100005 station_ip 5.119.10.121 100005 port 30 100005 unique_id port 100005 remote_ip 10.8.0.26 100006 username farhad1 100006 kill_reason Another user logged on this global unique id 100006 mac 100006 bytes_out 0 100006 bytes_in 0 100006 station_ip 5.120.129.112 100006 port 20 100006 unique_id port 100006 remote_ip 10.8.0.102 100009 username mehdizare 100009 mac 100009 bytes_out 0 100009 bytes_in 0 100009 station_ip 5.112.49.154 100009 port 9 100009 unique_id port 100009 remote_ip 10.8.1.22 100010 username amir 100010 mac 100010 bytes_out 23944 100010 bytes_in 29782 100010 station_ip 46.225.214.160 100010 port 26 100010 unique_id port 100010 remote_ip 10.8.0.54 100011 username mehdizare 100011 mac 100011 bytes_out 0 100011 bytes_in 0 100011 station_ip 5.119.250.200 100011 port 24 100011 unique_id port 100011 remote_ip 10.8.0.22 100024 username farhad1 100024 mac 100024 bytes_out 0 100024 bytes_in 0 100024 station_ip 5.120.152.182 100024 port 20 100024 unique_id port 100024 remote_ip 10.8.0.102 100025 username morteza 100025 mac 100025 bytes_out 0 100025 bytes_in 0 100025 station_ip 113.203.71.255 100025 port 20 100025 unique_id port 100025 remote_ip 10.8.0.90 100027 username khalili 100027 mac 100027 bytes_out 0 100027 bytes_in 0 100027 station_ip 5.120.136.133 100027 port 8 100027 unique_id port 100027 remote_ip 10.8.1.66 100028 username askari 100028 mac 100028 bytes_out 368019 100028 bytes_in 2936168 100028 station_ip 5.119.237.98 100028 port 19 99991 bytes_in 0 99991 station_ip 46.225.214.160 99991 port 9 99991 unique_id port 99991 remote_ip 10.8.1.34 99992 username amir 99992 mac 99992 bytes_out 0 99992 bytes_in 0 99992 station_ip 46.225.214.160 99992 port 24 99992 unique_id port 99992 remote_ip 10.8.0.54 99994 username mehdizare 99994 mac 99994 bytes_out 0 99994 bytes_in 0 99994 station_ip 5.120.189.38 99994 port 19 99994 unique_id port 99994 remote_ip 10.8.0.22 100002 username amir 100002 mac 100002 bytes_out 0 100002 bytes_in 0 100002 station_ip 46.225.214.160 100002 port 19 100002 unique_id port 100002 remote_ip 10.8.0.54 100007 username amir 100007 mac 100007 bytes_out 0 100007 bytes_in 0 100007 station_ip 46.225.214.160 100007 port 10 100007 unique_id port 100007 remote_ip 10.8.1.34 100012 username mohammadmahdi 100012 kill_reason Another user logged on this global unique id 100012 mac 100012 bytes_out 0 100012 bytes_in 0 100012 station_ip 5.120.189.34 100012 port 19 100012 unique_id port 100012 remote_ip 10.8.0.34 100014 username mohammadmahdi 100014 mac 100014 bytes_out 0 100014 bytes_in 0 100014 station_ip 5.120.189.34 100014 port 19 100014 unique_id port 100015 username mohammadmahdi 100015 kill_reason Another user logged on this global unique id 100015 mac 100015 bytes_out 0 100015 bytes_in 0 100015 station_ip 5.120.189.34 100015 port 24 100015 unique_id port 100015 remote_ip 10.8.0.34 100017 username mohammadmahdi 100017 mac 100017 bytes_out 0 100017 bytes_in 0 100017 station_ip 5.120.189.34 100017 port 24 100017 unique_id port 100019 username farhad1 100019 kill_reason Another user logged on this global unique id 100019 mac 100019 bytes_out 0 100019 bytes_in 0 100019 station_ip 5.119.55.119 100019 port 20 100019 unique_id port 100019 remote_ip 10.8.0.102 100021 username farhad1 100021 kill_reason Another user logged on this global unique id 100021 mac 100021 bytes_out 0 100021 bytes_in 0 100021 station_ip 5.119.143.34 100021 port 20 100021 unique_id port 100021 remote_ip 10.8.0.102 100023 username farhad1 100023 mac 100023 bytes_out 0 100023 bytes_in 0 100023 station_ip 5.119.143.34 100023 port 20 100023 unique_id port 100026 username aminvpn 100026 mac 100026 bytes_out 0 100026 bytes_in 0 100026 station_ip 37.129.4.212 100026 port 19 100026 unique_id port 100026 remote_ip 10.8.0.6 100033 username askari 100033 kill_reason Another user logged on this global unique id 100033 mac 100033 bytes_out 0 100033 bytes_in 0 100033 station_ip 5.119.237.98 100033 port 19 100033 unique_id port 100034 username farhad1 100034 mac 100034 bytes_out 536224 100034 bytes_in 1998326 100034 station_ip 5.119.36.115 100034 port 20 100034 unique_id port 100034 remote_ip 10.8.0.102 100036 username askari 100036 mac 100036 bytes_out 0 100036 bytes_in 0 100036 station_ip 5.119.237.98 100036 port 19 100036 unique_id port 100037 username sobhan 100037 unique_id port 100037 terminate_cause Lost-Carrier 100037 bytes_out 1350840 100037 bytes_in 17262771 100037 station_ip 5.233.75.250 100037 port 15729313 100037 nas_port_type Virtual 100037 remote_ip 5.5.5.31 100039 username aminvpn 100039 kill_reason Another user logged on this global unique id 100039 mac 100039 bytes_out 0 100039 bytes_in 0 100039 station_ip 83.122.185.155 100039 port 19 100039 unique_id port 100040 username aminvpn 100040 mac 100040 bytes_out 0 100040 bytes_in 0 100040 station_ip 83.122.185.155 100040 port 19 100040 unique_id port 100041 username farhad1 100041 mac 100041 bytes_out 1404681 100041 bytes_in 7679436 100001 port 9 100001 unique_id port 100001 remote_ip 10.8.1.34 100003 username amir 100003 mac 100003 bytes_out 0 100003 bytes_in 0 100003 station_ip 46.225.214.160 100003 port 10 100003 unique_id port 100003 remote_ip 10.8.1.34 100004 username amir 100004 mac 100004 bytes_out 0 100004 bytes_in 0 100004 station_ip 46.225.214.160 100004 port 10 100004 unique_id port 100004 remote_ip 10.8.1.34 100008 username amir 100008 mac 100008 bytes_out 0 100008 bytes_in 0 100008 station_ip 46.225.214.160 100008 port 24 100008 unique_id port 100008 remote_ip 10.8.0.54 100013 username farhad1 100013 mac 100013 bytes_out 0 100013 bytes_in 0 100013 station_ip 5.120.129.112 100013 port 20 100013 unique_id port 100016 username musa 100016 mac 100016 bytes_out 1502077 100016 bytes_in 8053207 100016 station_ip 37.129.96.137 100016 port 11 100016 unique_id port 100016 remote_ip 10.8.0.106 100018 username farhad1 100018 mac 100018 bytes_out 5301272 100018 bytes_in 34092276 100018 station_ip 5.120.32.30 100018 port 20 100018 unique_id port 100018 remote_ip 10.8.0.102 100020 username farhad1 100020 mac 100020 bytes_out 0 100020 bytes_in 0 100020 station_ip 5.119.55.119 100020 port 20 100020 unique_id port 100022 username morteza 100022 mac 100022 bytes_out 276137 100022 bytes_in 961042 100022 station_ip 113.203.90.55 100022 port 24 100022 unique_id port 100022 remote_ip 10.8.0.90 100028 unique_id port 100028 remote_ip 10.8.0.38 100029 username sobhan 100029 unique_id port 100029 terminate_cause Lost-Carrier 100029 bytes_out 6121049 100029 bytes_in 103191641 100029 station_ip 5.120.176.248 100029 port 15729302 100029 nas_port_type Virtual 100029 remote_ip 5.5.5.29 100030 username askari 100030 kill_reason Another user logged on this global unique id 100030 mac 100030 bytes_out 0 100030 bytes_in 0 100030 station_ip 5.119.237.98 100030 port 19 100030 unique_id port 100030 remote_ip 10.8.0.38 100031 username askari 100031 kill_reason Another user logged on this global unique id 100031 mac 100031 bytes_out 0 100031 bytes_in 0 100031 station_ip 5.119.237.98 100031 port 19 100031 unique_id port 100035 username askari 100035 kill_reason Another user logged on this global unique id 100035 mac 100035 bytes_out 0 100035 bytes_in 0 100035 station_ip 5.119.237.98 100035 port 19 100035 unique_id port 100038 username aminvpn 100038 kill_reason Another user logged on this global unique id 100038 mac 100038 bytes_out 0 100038 bytes_in 0 100038 station_ip 83.122.185.155 100038 port 19 100038 unique_id port 100038 remote_ip 10.8.0.6 100043 username mirzaei 100043 kill_reason Another user logged on this global unique id 100043 mac 100043 bytes_out 0 100043 bytes_in 0 100043 station_ip 5.119.209.151 100043 port 27 100043 unique_id port 100044 username forozande 100044 mac 100044 bytes_out 0 100044 bytes_in 0 100044 station_ip 83.123.20.252 100044 port 20 100044 unique_id port 100044 remote_ip 10.8.0.74 100048 username alihosseini 100048 mac 100048 bytes_out 3691603 100048 bytes_in 41741481 100048 station_ip 5.119.174.119 100048 port 20 100048 unique_id port 100048 remote_ip 10.8.0.14 100050 username madadi2 100050 mac 100050 bytes_out 110026 100050 bytes_in 255237 100050 station_ip 5.119.33.82 100050 port 24 100050 unique_id port 100050 remote_ip 10.8.0.26 100051 username aminvpn 100051 mac 100051 bytes_out 0 100051 bytes_in 0 100051 station_ip 5.119.111.80 100051 port 8 100051 unique_id port 100051 remote_ip 10.8.1.26 100057 username kamali1 100057 unique_id port 100032 username askari 100032 kill_reason Another user logged on this global unique id 100032 mac 100032 bytes_out 0 100032 bytes_in 0 100032 station_ip 5.119.237.98 100032 port 19 100032 unique_id port 100045 username khalili 100045 kill_reason Another user logged on this global unique id 100045 mac 100045 bytes_out 0 100045 bytes_in 0 100045 station_ip 5.120.87.224 100045 port 19 100045 unique_id port 100045 remote_ip 10.8.0.78 100046 username alihosseini 100046 mac 100046 bytes_out 1695724 100046 bytes_in 14869960 100046 station_ip 5.119.174.119 100046 port 20 100046 unique_id port 100046 remote_ip 10.8.0.14 100047 username forozande 100047 mac 100047 bytes_out 669463 100047 bytes_in 15619941 100047 station_ip 113.203.95.55 100047 port 24 100047 unique_id port 100047 remote_ip 10.8.0.74 100053 username alihosseini 100053 mac 100053 bytes_out 0 100053 bytes_in 0 100053 station_ip 5.119.174.119 100053 port 20 100053 unique_id port 100053 remote_ip 10.8.0.14 100054 username forozande 100054 mac 100054 bytes_out 263288 100054 bytes_in 403055 100054 station_ip 113.203.8.178 100054 port 20 100054 unique_id port 100054 remote_ip 10.8.0.74 100055 username alihosseini 100055 mac 100055 bytes_out 0 100055 bytes_in 0 100055 station_ip 5.119.174.119 100055 port 26 100055 unique_id port 100055 remote_ip 10.8.0.14 100056 username alihosseini 100056 mac 100056 bytes_out 0 100056 bytes_in 0 100056 station_ip 5.119.174.119 100056 port 20 100056 unique_id port 100056 remote_ip 10.8.0.14 100059 username alihosseini 100059 mac 100059 bytes_out 0 100059 bytes_in 0 100059 station_ip 5.119.174.119 100059 port 20 100059 unique_id port 100059 remote_ip 10.8.0.14 100065 username alihosseini 100065 mac 100065 bytes_out 0 100065 bytes_in 0 100065 station_ip 5.119.174.119 100065 port 29 100065 unique_id port 100065 remote_ip 10.8.0.14 100066 username abbasaskari 100066 mac 100066 bytes_out 0 100066 bytes_in 0 100066 station_ip 37.129.171.123 100066 port 20 100066 unique_id port 100066 remote_ip 10.8.0.94 100067 username alihosseini 100067 mac 100067 bytes_out 0 100067 bytes_in 0 100067 station_ip 5.119.174.119 100067 port 29 100067 unique_id port 100067 remote_ip 10.8.0.14 100068 username abbasaskari 100068 mac 100068 bytes_out 0 100068 bytes_in 0 100068 station_ip 37.129.171.123 100068 port 20 100068 unique_id port 100068 remote_ip 10.8.0.94 100070 username mohammadmahdi 100070 mac 100070 bytes_out 0 100070 bytes_in 0 100070 station_ip 83.122.34.3 100070 port 24 100070 unique_id port 100070 remote_ip 10.8.0.34 100072 username alihosseini 100072 mac 100072 bytes_out 0 100072 bytes_in 0 100072 station_ip 5.119.174.119 100072 port 24 100072 unique_id port 100072 remote_ip 10.8.0.14 100073 username alihosseini 100073 mac 100073 bytes_out 0 100073 bytes_in 0 100073 station_ip 5.119.174.119 100073 port 24 100073 unique_id port 100073 remote_ip 10.8.0.14 100074 username abbasaskari 100074 mac 100074 bytes_out 0 100074 bytes_in 0 100074 station_ip 37.129.171.123 100074 port 20 100074 unique_id port 100074 remote_ip 10.8.0.94 100082 username aminvpn 100082 unique_id port 100082 terminate_cause Lost-Carrier 100082 bytes_out 800534 100082 bytes_in 24481000 100082 station_ip 31.57.143.166 100082 port 15729329 100082 nas_port_type Virtual 100082 remote_ip 5.5.5.25 100083 username alihosseini 100083 mac 100083 bytes_out 0 100083 bytes_in 0 100083 station_ip 5.119.174.119 100083 port 26 100083 unique_id port 100083 remote_ip 10.8.0.14 100041 station_ip 5.120.127.131 100041 port 20 100041 unique_id port 100041 remote_ip 10.8.0.102 100042 username farhad1 100042 mac 100042 bytes_out 0 100042 bytes_in 0 100042 station_ip 5.120.127.131 100042 port 19 100042 unique_id port 100042 remote_ip 10.8.0.102 100049 username musa 100049 kill_reason Another user logged on this global unique id 100049 mac 100049 bytes_out 0 100049 bytes_in 0 100049 station_ip 37.129.52.76 100049 port 11 100049 unique_id port 100049 remote_ip 10.8.0.106 100052 username alihosseini 100052 mac 100052 bytes_out 0 100052 bytes_in 0 100052 station_ip 5.119.174.119 100052 port 20 100052 unique_id port 100052 remote_ip 10.8.0.14 100061 username kamali1 100061 unique_id port 100061 terminate_cause User-Request 100061 bytes_out 0 100061 bytes_in 0 100061 station_ip 5.120.93.233 100061 port 15729327 100061 nas_port_type Virtual 100061 remote_ip 5.5.5.26 100063 username abbasaskari 100063 mac 100063 bytes_out 274680 100063 bytes_in 2140969 100063 station_ip 37.129.171.123 100063 port 20 100063 unique_id port 100063 remote_ip 10.8.0.94 100075 username forozande 100075 mac 100075 bytes_out 0 100075 bytes_in 0 100075 station_ip 83.123.149.4 100075 port 29 100075 unique_id port 100075 remote_ip 10.8.0.74 100076 username aminvpn 100076 mac 100076 bytes_out 3298989 100076 bytes_in 43444837 100076 station_ip 5.119.111.80 100076 port 9 100076 unique_id port 100076 remote_ip 10.8.1.26 100079 username alihosseini 100079 mac 100079 bytes_out 0 100079 bytes_in 0 100079 station_ip 5.119.174.119 100079 port 8 100079 unique_id port 100079 remote_ip 10.8.1.6 100080 username kamali1 100080 mac 100080 bytes_out 0 100080 bytes_in 0 100080 station_ip 37.129.32.54 100080 port 26 100080 unique_id port 100080 remote_ip 10.8.0.110 100081 username forozande 100081 mac 100081 bytes_out 225783 100081 bytes_in 2121811 100081 station_ip 83.122.208.33 100081 port 20 100081 unique_id port 100081 remote_ip 10.8.0.74 100084 username rezasekonji 100084 unique_id port 100084 terminate_cause User-Request 100084 bytes_out 16018 100084 bytes_in 103256 100084 station_ip 46.225.215.64 100084 port 15729330 100084 nas_port_type Virtual 100084 remote_ip 5.5.5.24 100085 username kamali1 100085 mac 100085 bytes_out 84450 100085 bytes_in 667299 100085 station_ip 37.129.32.54 100085 port 24 100085 unique_id port 100085 remote_ip 10.8.0.110 100087 username kamali1 100087 mac 100087 bytes_out 0 100087 bytes_in 0 100087 station_ip 37.129.32.54 100087 port 24 100087 unique_id port 100087 remote_ip 10.8.0.110 100096 username jamali 100096 mac 100096 bytes_out 115689 100096 bytes_in 268589 100096 station_ip 5.119.0.170 100096 port 20 100096 unique_id port 100096 remote_ip 10.8.0.62 100101 username arman1 100101 mac 100101 bytes_out 0 100101 bytes_in 0 100101 station_ip 5.120.74.56 100101 port 26 100101 unique_id port 100109 username madadi2 100109 mac 100109 bytes_out 82300 100109 bytes_in 423676 100109 station_ip 5.119.11.50 100109 port 30 100109 unique_id port 100109 remote_ip 10.8.0.26 100112 username abbasaskari 100112 mac 100112 bytes_out 0 100112 bytes_in 0 100112 station_ip 37.129.208.103 100112 port 20 100112 unique_id port 100112 remote_ip 10.8.0.94 100114 username jamali 100114 mac 100114 bytes_out 0 100114 bytes_in 0 100114 station_ip 5.119.0.170 100114 port 8 100114 unique_id port 100114 remote_ip 10.8.1.54 100115 username abbasaskari 100115 mac 100115 bytes_out 7496 100115 bytes_in 24542 100057 terminate_cause User-Request 100057 bytes_out 22 100057 bytes_in 52 100057 station_ip 5.120.93.233 100057 port 15729325 100057 nas_port_type Virtual 100057 remote_ip 5.5.5.26 100058 username kamali1 100058 unique_id port 100058 terminate_cause User-Request 100058 bytes_out 0 100058 bytes_in 0 100058 station_ip 5.120.93.233 100058 port 15729326 100058 nas_port_type Virtual 100058 remote_ip 5.5.5.26 100060 username ahmadipour 100060 unique_id port 100060 terminate_cause Lost-Carrier 100060 bytes_out 2445558 100060 bytes_in 66669006 100060 station_ip 113.203.61.115 100060 port 15729324 100060 nas_port_type Virtual 100060 remote_ip 5.5.5.27 100062 username alihosseini 100062 mac 100062 bytes_out 0 100062 bytes_in 0 100062 station_ip 5.119.174.119 100062 port 20 100062 unique_id port 100062 remote_ip 10.8.0.14 100064 username abbasaskari 100064 mac 100064 bytes_out 0 100064 bytes_in 0 100064 station_ip 37.129.171.123 100064 port 20 100064 unique_id port 100064 remote_ip 10.8.0.94 100069 username alihosseini 100069 mac 100069 bytes_out 0 100069 bytes_in 0 100069 station_ip 5.119.174.119 100069 port 8 100069 unique_id port 100069 remote_ip 10.8.1.6 100071 username aminvpn 100071 unique_id port 100071 terminate_cause Lost-Carrier 100071 bytes_out 44553 100071 bytes_in 285080 100071 station_ip 5.119.83.239 100071 port 15729328 100071 nas_port_type Virtual 100071 remote_ip 5.5.5.33 100077 username alihosseini 100077 mac 100077 bytes_out 0 100077 bytes_in 0 100077 station_ip 5.119.174.119 100077 port 8 100077 unique_id port 100077 remote_ip 10.8.1.6 100078 username alihosseini 100078 mac 100078 bytes_out 0 100078 bytes_in 0 100078 station_ip 5.119.174.119 100078 port 8 100078 unique_id port 100078 remote_ip 10.8.1.6 100088 username rezasekonji 100088 unique_id port 100088 terminate_cause User-Request 100088 bytes_out 160 100088 bytes_in 393 100088 station_ip 37.129.87.217 100088 port 15729331 100088 nas_port_type Virtual 100088 remote_ip 5.5.5.23 100089 username jamali 100089 mac 100089 bytes_out 16078423 100089 bytes_in 19936555 100089 station_ip 5.119.0.170 100089 port 20 100089 unique_id port 100089 remote_ip 10.8.0.62 100091 username abbasaskari 100091 mac 100091 bytes_out 0 100091 bytes_in 0 100091 station_ip 37.129.252.119 100091 port 30 100091 unique_id port 100091 remote_ip 10.8.0.94 100094 username rezasekonji 100094 unique_id port 100094 terminate_cause User-Request 100094 bytes_out 9695 100094 bytes_in 100244 100094 station_ip 37.129.87.217 100094 port 15729332 100094 nas_port_type Virtual 100094 remote_ip 5.5.5.23 100097 username jamali 100097 mac 100097 bytes_out 0 100097 bytes_in 0 100097 station_ip 5.119.0.170 100097 port 20 100097 unique_id port 100097 remote_ip 10.8.0.62 100098 username jamali 100098 mac 100098 bytes_out 54680 100098 bytes_in 498918 100098 station_ip 5.119.0.170 100098 port 30 100098 unique_id port 100098 remote_ip 10.8.0.62 100100 username rezasekonji 100100 unique_id port 100100 terminate_cause User-Request 100100 bytes_out 82 100100 bytes_in 238 100100 station_ip 83.123.12.164 100100 port 15729333 100100 nas_port_type Virtual 100100 remote_ip 5.5.5.22 100103 username forozande 100103 mac 100103 bytes_out 58477 100103 bytes_in 79033 100103 station_ip 37.129.79.12 100103 port 20 100103 unique_id port 100103 remote_ip 10.8.0.74 100105 username jamali 100105 mac 100105 bytes_out 0 100105 bytes_in 0 100105 station_ip 5.119.0.170 100105 port 8 100105 unique_id port 100105 remote_ip 10.8.1.54 100108 username kamali1 100108 mac 100086 username kamali1 100086 mac 100086 bytes_out 0 100086 bytes_in 0 100086 station_ip 37.129.32.54 100086 port 8 100086 unique_id port 100086 remote_ip 10.8.1.82 100090 username jamali 100090 mac 100090 bytes_out 3449301 100090 bytes_in 8601158 100090 station_ip 5.119.0.170 100090 port 20 100090 unique_id port 100090 remote_ip 10.8.0.62 100092 username jamali 100092 mac 100092 bytes_out 0 100092 bytes_in 0 100092 station_ip 5.119.0.170 100092 port 20 100092 unique_id port 100092 remote_ip 10.8.0.62 100093 username kamali1 100093 mac 100093 bytes_out 0 100093 bytes_in 0 100093 station_ip 37.129.32.54 100093 port 24 100093 unique_id port 100093 remote_ip 10.8.0.110 100095 username arman1 100095 kill_reason Another user logged on this global unique id 100095 mac 100095 bytes_out 0 100095 bytes_in 0 100095 station_ip 5.120.74.56 100095 port 26 100095 unique_id port 100095 remote_ip 10.8.0.86 100099 username jamali 100099 mac 100099 bytes_out 0 100099 bytes_in 0 100099 station_ip 5.119.0.170 100099 port 8 100099 unique_id port 100099 remote_ip 10.8.1.54 100102 username jamali 100102 mac 100102 bytes_out 34268 100102 bytes_in 29752 100102 station_ip 5.119.0.170 100102 port 8 100102 unique_id port 100102 remote_ip 10.8.1.54 100104 username forozande 100104 mac 100104 bytes_out 383209 100104 bytes_in 3388631 100104 station_ip 37.129.139.223 100104 port 26 100104 unique_id port 100104 remote_ip 10.8.0.74 100106 username kamali1 100106 mac 100106 bytes_out 38224 100106 bytes_in 47328 100106 station_ip 37.129.32.54 100106 port 24 100106 unique_id port 100106 remote_ip 10.8.0.110 100107 username kamali1 100107 mac 100107 bytes_out 6970 100107 bytes_in 16531 100107 station_ip 37.129.54.142 100107 port 26 100107 unique_id port 100107 remote_ip 10.8.0.110 100110 username mahdiyehalizadeh 100110 mac 100110 bytes_out 985527 100110 bytes_in 13736881 100110 station_ip 83.122.74.220 100110 port 24 100110 unique_id port 100110 remote_ip 10.8.0.42 100111 username aminvpn 100111 mac 100111 bytes_out 0 100111 bytes_in 0 100111 station_ip 83.122.89.232 100111 port 20 100111 unique_id port 100111 remote_ip 10.8.0.6 100120 username aminvpn 100120 mac 100120 bytes_out 0 100120 bytes_in 0 100120 station_ip 5.119.232.56 100120 port 9 100120 unique_id port 100120 remote_ip 10.8.1.26 100121 username ahmadipour 100121 unique_id port 100121 terminate_cause Lost-Carrier 100121 bytes_out 45517 100121 bytes_in 242061 100121 station_ip 113.203.79.67 100121 port 15729334 100121 nas_port_type Virtual 100121 remote_ip 5.5.5.21 100124 username jamali 100124 mac 100124 bytes_out 0 100124 bytes_in 0 100124 station_ip 5.119.0.170 100124 port 8 100124 unique_id port 100124 remote_ip 10.8.1.54 100126 username amir 100126 mac 100126 bytes_out 0 100126 bytes_in 0 100126 station_ip 46.225.232.158 100126 port 20 100126 unique_id port 100126 remote_ip 10.8.0.54 100129 username musa 100129 kill_reason Another user logged on this global unique id 100129 mac 100129 bytes_out 0 100129 bytes_in 0 100129 station_ip 37.129.52.76 100129 port 11 100129 unique_id port 100133 username jamali 100133 mac 100133 bytes_out 27164 100133 bytes_in 31630 100133 station_ip 5.119.0.170 100133 port 8 100133 unique_id port 100133 remote_ip 10.8.1.54 100136 username mammad 100136 unique_id port 100136 terminate_cause User-Request 100136 bytes_out 0 100136 bytes_in 0 100136 station_ip 2.183.246.232 100136 port 15729339 100136 nas_port_type Virtual 100136 remote_ip 5.5.5.37 100108 bytes_out 56783 100108 bytes_in 556810 100108 station_ip 37.129.54.142 100108 port 26 100108 unique_id port 100108 remote_ip 10.8.0.110 100113 username jamali 100113 mac 100113 bytes_out 0 100113 bytes_in 0 100113 station_ip 5.119.0.170 100113 port 8 100113 unique_id port 100113 remote_ip 10.8.1.54 100117 username aminvpn 100117 mac 100117 bytes_out 35587 100117 bytes_in 115690 100117 station_ip 83.122.89.232 100117 port 24 100117 unique_id port 100117 remote_ip 10.8.0.6 100119 username aminvpn 100119 mac 100119 bytes_out 0 100119 bytes_in 0 100119 station_ip 83.122.89.232 100119 port 10 100119 unique_id port 100119 remote_ip 10.8.1.26 100122 username mirzaei 100122 mac 100122 bytes_out 0 100122 bytes_in 0 100122 station_ip 5.119.209.151 100122 port 27 100122 unique_id port 100125 username musa 100125 kill_reason Another user logged on this global unique id 100125 mac 100125 bytes_out 0 100125 bytes_in 0 100125 station_ip 37.129.52.76 100125 port 11 100125 unique_id port 100128 username jamali 100128 mac 100128 bytes_out 0 100128 bytes_in 0 100128 station_ip 5.119.0.170 100128 port 8 100128 unique_id port 100128 remote_ip 10.8.1.54 100130 username jamali 100130 mac 100130 bytes_out 0 100130 bytes_in 0 100130 station_ip 5.119.0.170 100130 port 8 100130 unique_id port 100130 remote_ip 10.8.1.54 100131 username aminvpn 100131 unique_id port 100131 terminate_cause Lost-Carrier 100131 bytes_out 269736 100131 bytes_in 567528 100131 station_ip 31.57.129.33 100131 port 15729336 100131 nas_port_type Virtual 100131 remote_ip 5.5.5.19 100132 username jamali 100132 mac 100132 bytes_out 0 100132 bytes_in 0 100132 station_ip 5.119.0.170 100132 port 8 100132 unique_id port 100132 remote_ip 10.8.1.54 100134 username amir 100134 kill_reason Another user logged on this global unique id 100134 mac 100134 bytes_out 0 100134 bytes_in 0 100134 station_ip 46.225.232.158 100134 port 20 100134 unique_id port 100134 remote_ip 10.8.0.54 100139 username khalili 100139 mac 100139 bytes_out 0 100139 bytes_in 0 100139 station_ip 5.120.87.224 100139 port 27 100139 unique_id port 100139 remote_ip 10.8.0.78 100143 username jamali 100143 mac 100143 bytes_out 0 100143 bytes_in 0 100143 station_ip 5.119.0.170 100143 port 8 100143 unique_id port 100143 remote_ip 10.8.1.54 100146 username amir 100146 mac 100146 bytes_out 0 100146 bytes_in 0 100146 station_ip 46.225.232.158 100146 port 20 100146 unique_id port 100146 remote_ip 10.8.0.54 100147 username jamali 100147 mac 100147 bytes_out 0 100147 bytes_in 0 100147 station_ip 5.119.0.170 100147 port 8 100147 unique_id port 100147 remote_ip 10.8.1.54 100150 username musa 100150 kill_reason Another user logged on this global unique id 100150 mac 100150 bytes_out 0 100150 bytes_in 0 100150 station_ip 37.129.52.76 100150 port 11 100150 unique_id port 100153 username forozande 100153 mac 100153 bytes_out 8405638 100153 bytes_in 41010971 100153 station_ip 113.203.61.53 100153 port 26 100153 unique_id port 100153 remote_ip 10.8.0.74 100156 username mahdiyehalizadeh 100156 mac 100156 bytes_out 0 100156 bytes_in 0 100156 station_ip 83.122.101.224 100156 port 24 100156 unique_id port 100156 remote_ip 10.8.0.42 100161 username abbasaskari 100161 mac 100161 bytes_out 18879 100161 bytes_in 47628 100161 station_ip 83.122.170.85 100161 port 9 100161 unique_id port 100161 remote_ip 10.8.1.58 100165 username alihosseini 100165 mac 100165 bytes_out 0 100165 bytes_in 0 100115 station_ip 37.129.208.103 100115 port 20 100115 unique_id port 100115 remote_ip 10.8.0.94 100116 username jamali 100116 mac 100116 bytes_out 13517 100116 bytes_in 15767 100116 station_ip 5.119.0.170 100116 port 8 100116 unique_id port 100116 remote_ip 10.8.1.54 100118 username aminvpn 100118 mac 100118 bytes_out 991911 100118 bytes_in 6699852 100118 station_ip 5.119.232.56 100118 port 9 100118 unique_id port 100118 remote_ip 10.8.1.26 100123 username aminvpn 100123 mac 100123 bytes_out 0 100123 bytes_in 0 100123 station_ip 83.122.89.232 100123 port 10 100123 unique_id port 100123 remote_ip 10.8.1.26 100127 username jamali 100127 mac 100127 bytes_out 0 100127 bytes_in 0 100127 station_ip 5.119.0.170 100127 port 8 100127 unique_id port 100127 remote_ip 10.8.1.54 100135 username musa 100135 kill_reason Another user logged on this global unique id 100135 mac 100135 bytes_out 0 100135 bytes_in 0 100135 station_ip 37.129.52.76 100135 port 11 100135 unique_id port 100138 username khalili 100138 mac 100138 bytes_out 0 100138 bytes_in 0 100138 station_ip 5.120.87.224 100138 port 19 100138 unique_id port 100141 username amir 100141 kill_reason Another user logged on this global unique id 100141 mac 100141 bytes_out 0 100141 bytes_in 0 100141 station_ip 46.225.232.158 100141 port 20 100141 unique_id port 100142 username aminvpn 100142 mac 100142 bytes_out 0 100142 bytes_in 0 100142 station_ip 83.122.89.232 100142 port 24 100142 unique_id port 100142 remote_ip 10.8.0.6 100144 username amir 100144 mac 100144 bytes_out 0 100144 bytes_in 0 100144 station_ip 46.225.232.158 100144 port 20 100144 unique_id port 100149 username alirr 100149 unique_id port 100149 terminate_cause Lost-Carrier 100149 bytes_out 861670 100149 bytes_in 6814848 100149 station_ip 5.120.87.108 100149 port 15729342 100149 nas_port_type Virtual 100149 remote_ip 5.5.5.15 100151 username madadi2 100151 mac 100151 bytes_out 0 100151 bytes_in 0 100151 station_ip 5.120.159.205 100151 port 24 100151 unique_id port 100151 remote_ip 10.8.0.26 100157 username amir 100157 mac 100157 bytes_out 0 100157 bytes_in 0 100157 station_ip 46.225.232.158 100157 port 26 100157 unique_id port 100157 remote_ip 10.8.0.54 100158 username mahdiyehalizadeh 100158 mac 100158 bytes_out 730374 100158 bytes_in 9724199 100158 station_ip 83.122.101.224 100158 port 24 100158 unique_id port 100158 remote_ip 10.8.0.42 100162 username amir 100162 mac 100162 bytes_out 11722 100162 bytes_in 27449 100162 station_ip 46.225.232.158 100162 port 30 100162 unique_id port 100162 remote_ip 10.8.0.54 100168 username alihosseini 100168 mac 100168 bytes_out 0 100168 bytes_in 0 100168 station_ip 5.119.53.37 100168 port 9 100168 unique_id port 100168 remote_ip 10.8.1.6 100169 username abbasaskari 100169 kill_reason Maximum check online fails reached 100169 mac 100169 bytes_out 0 100169 bytes_in 0 100169 station_ip 83.122.170.85 100169 port 24 100169 unique_id port 100170 username alihosseini 100170 mac 100170 bytes_out 0 100170 bytes_in 0 100170 station_ip 5.119.53.37 100170 port 9 100170 unique_id port 100170 remote_ip 10.8.1.6 100173 username abbasaskari 100173 mac 100173 bytes_out 12337 100173 bytes_in 17785 100173 station_ip 83.122.170.85 100173 port 30 100173 unique_id port 100173 remote_ip 10.8.0.94 100177 username askari 100177 kill_reason Another user logged on this global unique id 100177 mac 100177 bytes_out 0 100177 bytes_in 0 100177 station_ip 5.119.164.183 100177 port 31 100137 username jamali 100137 mac 100137 bytes_out 338759 100137 bytes_in 2811760 100137 station_ip 5.119.0.170 100137 port 9 100137 unique_id port 100137 remote_ip 10.8.1.54 100140 username alirr 100140 unique_id port 100140 terminate_cause User-Request 100140 bytes_out 0 100140 bytes_in 0 100140 station_ip 5.120.87.108 100140 port 15729341 100140 nas_port_type Virtual 100140 remote_ip 5.5.5.15 100145 username aminvpn 100145 mac 100145 bytes_out 0 100145 bytes_in 0 100145 station_ip 83.122.89.232 100145 port 24 100145 unique_id port 100145 remote_ip 10.8.0.6 100148 username amir 100148 mac 100148 bytes_out 0 100148 bytes_in 0 100148 station_ip 46.225.232.158 100148 port 24 100148 unique_id port 100148 remote_ip 10.8.0.54 100152 username amir 100152 mac 100152 bytes_out 49729 100152 bytes_in 523552 100152 station_ip 46.225.232.158 100152 port 27 100152 unique_id port 100152 remote_ip 10.8.0.54 100154 username amir 100154 mac 100154 bytes_out 0 100154 bytes_in 0 100154 station_ip 46.225.232.158 100154 port 24 100154 unique_id port 100154 remote_ip 10.8.0.54 100155 username musa 100155 kill_reason Another user logged on this global unique id 100155 mac 100155 bytes_out 0 100155 bytes_in 0 100155 station_ip 37.129.52.76 100155 port 11 100155 unique_id port 100159 username aminvpn 100159 mac 100159 bytes_out 0 100159 bytes_in 0 100159 station_ip 83.122.89.232 100159 port 20 100159 unique_id port 100159 remote_ip 10.8.0.6 100160 username alihosseini 100160 mac 100160 bytes_out 0 100160 bytes_in 0 100160 station_ip 5.119.53.37 100160 port 26 100160 unique_id port 100160 remote_ip 10.8.0.14 100163 username musa 100163 kill_reason Another user logged on this global unique id 100163 mac 100163 bytes_out 0 100163 bytes_in 0 100163 station_ip 37.129.52.76 100163 port 11 100163 unique_id port 100164 username abbasaskari 100164 mac 100164 bytes_out 7678 100164 bytes_in 22817 100164 station_ip 83.122.170.85 100164 port 26 100164 unique_id port 100164 remote_ip 10.8.0.94 100172 username forozande 100172 mac 100172 bytes_out 1300753 100172 bytes_in 3666252 100172 station_ip 37.129.116.31 100172 port 27 100172 unique_id port 100172 remote_ip 10.8.0.74 100176 username jamali 100176 mac 100176 bytes_out 0 100176 bytes_in 0 100176 station_ip 5.119.0.170 100176 port 8 100176 unique_id port 100176 remote_ip 10.8.1.54 100178 username abbasaskari 100178 mac 100178 bytes_out 0 100178 bytes_in 0 100178 station_ip 83.122.130.205 100178 port 27 100178 unique_id port 100178 remote_ip 10.8.0.94 100180 username askari 100180 mac 100180 bytes_out 0 100180 bytes_in 0 100180 station_ip 5.119.164.183 100180 port 31 100180 unique_id port 100184 username madadi2 100184 mac 100184 bytes_out 324974 100184 bytes_in 693136 100184 station_ip 5.119.246.6 100184 port 26 100184 unique_id port 100184 remote_ip 10.8.0.26 100188 username musa 100188 mac 100188 bytes_out 0 100188 bytes_in 0 100188 station_ip 37.129.52.76 100188 port 27 100188 unique_id port 100188 remote_ip 10.8.0.106 100190 username musa 100190 mac 100190 bytes_out 5660 100190 bytes_in 10179 100190 station_ip 37.129.52.76 100190 port 11 100190 unique_id port 100190 remote_ip 10.8.0.106 100191 username aminvpn 100191 mac 100191 bytes_out 285920 100191 bytes_in 687472 100191 station_ip 83.122.89.232 100191 port 26 100191 unique_id port 100191 remote_ip 10.8.0.6 100193 username musa 100193 kill_reason Maximum check online fails reached 100193 mac 100165 station_ip 5.119.53.37 100165 port 10 100165 unique_id port 100165 remote_ip 10.8.1.6 100166 username mohammadmahdi 100166 mac 100166 bytes_out 654948 100166 bytes_in 5967739 100166 station_ip 5.119.177.9 100166 port 24 100166 unique_id port 100166 remote_ip 10.8.0.34 100167 username abbasaskari 100167 mac 100167 bytes_out 4756 100167 bytes_in 23260 100167 station_ip 83.122.170.85 100167 port 30 100167 unique_id port 100167 remote_ip 10.8.0.94 100171 username askari 100171 mac 100171 bytes_out 2442745 100171 bytes_in 36213154 100171 station_ip 5.119.49.227 100171 port 26 100171 unique_id port 100171 remote_ip 10.8.0.38 100174 username askari 100174 kill_reason Another user logged on this global unique id 100174 mac 100174 bytes_out 0 100174 bytes_in 0 100174 station_ip 5.119.164.183 100174 port 31 100174 unique_id port 100174 remote_ip 10.8.0.38 100175 username jamali 100175 mac 100175 bytes_out 0 100175 bytes_in 0 100175 station_ip 5.119.0.170 100175 port 8 100175 unique_id port 100175 remote_ip 10.8.1.54 100186 username jamali 100186 kill_reason Another user logged on this global unique id 100186 mac 100186 bytes_out 0 100186 bytes_in 0 100186 station_ip 5.119.0.170 100186 port 8 100186 unique_id port 100187 username musa 100187 mac 100187 bytes_out 0 100187 bytes_in 0 100187 station_ip 37.129.52.76 100187 port 11 100187 unique_id port 100189 username jamali 100189 mac 100189 bytes_out 0 100189 bytes_in 0 100189 station_ip 5.119.0.170 100189 port 8 100189 unique_id port 100192 username bcboard 100192 unique_id port 100192 terminate_cause Lost-Carrier 100192 bytes_out 5510138 100192 bytes_in 91784614 100192 station_ip 83.123.82.162 100192 port 15729335 100192 nas_port_type Virtual 100192 remote_ip 5.5.5.20 100201 username reza2742 100201 unique_id port 100201 terminate_cause User-Request 100201 bytes_out 0 100201 bytes_in 0 100201 station_ip 46.225.215.205 100201 port 15729347 100201 nas_port_type Virtual 100201 remote_ip 5.5.5.13 100209 username reza2742 100209 unique_id port 100209 terminate_cause User-Request 100209 bytes_out 0 100209 bytes_in 0 100209 station_ip 83.123.16.253 100209 port 15729351 100209 nas_port_type Virtual 100209 remote_ip 5.5.5.12 100211 username mirzaei 100211 mac 100211 bytes_out 0 100211 bytes_in 0 100211 station_ip 5.120.5.253 100211 port 11 100211 unique_id port 100211 remote_ip 10.8.0.30 100212 username reza2742 100212 unique_id port 100212 terminate_cause User-Request 100212 bytes_out 0 100212 bytes_in 0 100212 station_ip 83.123.16.253 100212 port 15729353 100212 nas_port_type Virtual 100212 remote_ip 5.5.5.12 100216 username reza2742 100216 unique_id port 100216 terminate_cause User-Request 100216 bytes_out 0 100216 bytes_in 0 100216 station_ip 83.123.16.253 100216 port 15729357 100216 nas_port_type Virtual 100216 remote_ip 5.5.5.12 100223 username aminvpn 100223 mac 100223 bytes_out 0 100223 bytes_in 0 100223 station_ip 83.123.47.95 100223 port 11 100223 unique_id port 100223 remote_ip 10.8.0.6 100224 username mohammadmahdi 100224 kill_reason Another user logged on this global unique id 100224 mac 100224 bytes_out 0 100224 bytes_in 0 100224 station_ip 113.203.44.138 100224 port 19 100224 unique_id port 100224 remote_ip 10.8.0.34 100227 username musa 100227 kill_reason Another user logged on this global unique id 100227 mac 100227 bytes_out 0 100227 bytes_in 0 100227 station_ip 37.129.52.76 100227 port 8 100227 unique_id port 100230 username aminvpn 100230 mac 100230 bytes_out 256340 100230 bytes_in 199282 100230 station_ip 5.119.231.203 100230 port 9 100177 unique_id port 100179 username aminvpn 100179 mac 100179 bytes_out 1342065 100179 bytes_in 4969870 100179 station_ip 83.122.89.232 100179 port 20 100179 unique_id port 100179 remote_ip 10.8.0.6 100181 username jamali 100181 kill_reason Another user logged on this global unique id 100181 mac 100181 bytes_out 0 100181 bytes_in 0 100181 station_ip 5.119.0.170 100181 port 8 100181 unique_id port 100181 remote_ip 10.8.1.54 100182 username musa 100182 kill_reason Another user logged on this global unique id 100182 mac 100182 bytes_out 0 100182 bytes_in 0 100182 station_ip 37.129.52.76 100182 port 11 100182 unique_id port 100183 username khalili 100183 mac 100183 bytes_out 0 100183 bytes_in 0 100183 station_ip 5.120.87.224 100183 port 19 100183 unique_id port 100183 remote_ip 10.8.0.78 100185 username ahmadi 100185 unique_id port 100185 terminate_cause User-Request 100185 bytes_out 211714 100185 bytes_in 516067 100185 station_ip 83.122.212.140 100185 port 15729343 100185 nas_port_type Virtual 100185 remote_ip 5.5.5.14 100197 username alirr 100197 unique_id port 100197 terminate_cause User-Request 100197 bytes_out 8441451 100197 bytes_in 42636368 100197 station_ip 151.238.225.63 100197 port 15729340 100197 nas_port_type Virtual 100197 remote_ip 5.5.5.16 100198 username reza2742 100198 unique_id port 100198 terminate_cause User-Request 100198 bytes_out 0 100198 bytes_in 0 100198 station_ip 46.225.215.205 100198 port 15729344 100198 nas_port_type Virtual 100198 remote_ip 5.5.5.13 100203 username mahdiyehalizadeh 100203 mac 100203 bytes_out 0 100203 bytes_in 0 100203 station_ip 83.123.180.245 100203 port 27 100203 unique_id port 100203 remote_ip 10.8.0.42 100206 username reza2742 100206 unique_id port 100206 terminate_cause User-Request 100206 bytes_out 0 100206 bytes_in 0 100206 station_ip 83.123.16.253 100206 port 15729349 100206 nas_port_type Virtual 100206 remote_ip 5.5.5.12 100207 username reza2742 100207 unique_id port 100207 terminate_cause User-Request 100207 bytes_out 0 100207 bytes_in 0 100207 station_ip 83.123.16.253 100207 port 15729350 100207 nas_port_type Virtual 100207 remote_ip 5.5.5.12 100208 username aminvpn 100208 mac 100208 bytes_out 0 100208 bytes_in 0 100208 station_ip 5.119.231.203 100208 port 9 100208 unique_id port 100208 remote_ip 10.8.1.26 100213 username reza2742 100213 unique_id port 100213 terminate_cause User-Request 100213 bytes_out 0 100213 bytes_in 0 100213 station_ip 83.123.16.253 100213 port 15729354 100213 nas_port_type Virtual 100213 remote_ip 5.5.5.12 100214 username reza2742 100214 unique_id port 100214 terminate_cause User-Request 100214 bytes_out 0 100214 bytes_in 0 100214 station_ip 83.123.16.253 100214 port 15729355 100214 nas_port_type Virtual 100214 remote_ip 5.5.5.12 100215 username reza2742 100215 unique_id port 100215 terminate_cause User-Request 100215 bytes_out 0 100215 bytes_in 0 100215 station_ip 83.123.16.253 100215 port 15729356 100215 nas_port_type Virtual 100215 remote_ip 5.5.5.12 100218 username musa 100218 kill_reason Another user logged on this global unique id 100218 mac 100218 bytes_out 0 100218 bytes_in 0 100218 station_ip 37.129.52.76 100218 port 8 100218 unique_id port 100218 remote_ip 10.8.1.78 100220 username mohammadmahdi 100220 mac 100220 bytes_out 567940 100220 bytes_in 8885760 100220 station_ip 113.203.44.138 100220 port 19 100220 unique_id port 100220 remote_ip 10.8.0.34 100225 username mohammadmahdi 100225 mac 100225 bytes_out 0 100225 bytes_in 0 100225 station_ip 113.203.44.138 100225 port 19 100225 unique_id port 100228 username askari 100228 kill_reason Another user logged on this global unique id 100193 bytes_out 0 100193 bytes_in 0 100193 station_ip 37.129.52.76 100193 port 26 100193 unique_id port 100194 username askari 100194 kill_reason Another user logged on this global unique id 100194 mac 100194 bytes_out 0 100194 bytes_in 0 100194 station_ip 5.119.166.246 100194 port 11 100194 unique_id port 100194 remote_ip 10.8.0.38 100195 username askari 100195 mac 100195 bytes_out 0 100195 bytes_in 0 100195 station_ip 5.119.166.246 100195 port 11 100195 unique_id port 100196 username musa 100196 kill_reason Another user logged on this global unique id 100196 mac 100196 bytes_out 0 100196 bytes_in 0 100196 station_ip 37.129.52.76 100196 port 8 100196 unique_id port 100196 remote_ip 10.8.1.78 100199 username reza2742 100199 unique_id port 100199 terminate_cause User-Request 100199 bytes_out 0 100199 bytes_in 224 100199 station_ip 46.225.215.205 100199 port 15729345 100199 nas_port_type Virtual 100199 remote_ip 5.5.5.13 100200 username reza2742 100200 unique_id port 100200 terminate_cause User-Request 100200 bytes_out 0 100200 bytes_in 252 100200 station_ip 46.225.215.205 100200 port 15729346 100200 nas_port_type Virtual 100200 remote_ip 5.5.5.13 100202 username musa 100202 mac 100202 bytes_out 0 100202 bytes_in 0 100202 station_ip 37.129.52.76 100202 port 8 100202 unique_id port 100204 username mirzaei 100204 mac 100204 bytes_out 0 100204 bytes_in 0 100204 station_ip 5.120.5.253 100204 port 11 100204 unique_id port 100204 remote_ip 10.8.0.30 100205 username reza2742 100205 unique_id port 100205 terminate_cause User-Request 100205 bytes_out 0 100205 bytes_in 0 100205 station_ip 83.123.16.253 100205 port 15729348 100205 nas_port_type Virtual 100205 remote_ip 5.5.5.12 100210 username reza2742 100210 unique_id port 100210 terminate_cause User-Request 100210 bytes_out 0 100210 bytes_in 0 100210 station_ip 83.123.16.253 100210 port 15729352 100210 nas_port_type Virtual 100210 remote_ip 5.5.5.12 100217 username forozande 100217 mac 100217 bytes_out 10044659 100217 bytes_in 18058800 100217 station_ip 83.123.137.140 100217 port 19 100217 unique_id port 100217 remote_ip 10.8.0.74 100219 username madadi2 100219 mac 100219 bytes_out 0 100219 bytes_in 0 100219 station_ip 5.119.47.179 100219 port 9 100219 unique_id port 100219 remote_ip 10.8.1.18 100221 username musa 100221 kill_reason Another user logged on this global unique id 100221 mac 100221 bytes_out 0 100221 bytes_in 0 100221 station_ip 37.129.52.76 100221 port 8 100221 unique_id port 100222 username aminvpn 100222 mac 100222 bytes_out 2359626 100222 bytes_in 15206977 100222 station_ip 83.123.47.95 100222 port 11 100222 unique_id port 100222 remote_ip 10.8.0.6 100226 username aminvpn 100226 mac 100226 bytes_out 0 100226 bytes_in 0 100226 station_ip 83.123.47.95 100226 port 11 100226 unique_id port 100226 remote_ip 10.8.0.6 100231 username forozande 100231 mac 100231 bytes_out 0 100231 bytes_in 0 100231 station_ip 83.123.65.54 100231 port 31 100231 unique_id port 100231 remote_ip 10.8.0.74 100237 username bcboard 100237 unique_id port 100237 terminate_cause User-Request 100237 bytes_out 958457 100237 bytes_in 10711716 100237 station_ip 83.122.30.191 100237 port 15729359 100237 nas_port_type Virtual 100237 remote_ip 5.5.5.11 100239 username khalili 100239 kill_reason Another user logged on this global unique id 100239 mac 100239 bytes_out 0 100239 bytes_in 0 100239 station_ip 5.120.87.224 100239 port 20 100239 unique_id port 100242 username musa 100242 kill_reason Another user logged on this global unique id 100242 mac 100242 bytes_out 0 100242 bytes_in 0 100228 mac 100228 bytes_out 0 100228 bytes_in 0 100228 station_ip 5.119.141.39 100228 port 19 100228 unique_id port 100228 remote_ip 10.8.0.38 100229 username aminvpn 100229 mac 100229 bytes_out 788734 100229 bytes_in 6017739 100229 station_ip 37.129.186.100 100229 port 11 100229 unique_id port 100229 remote_ip 10.8.0.6 100233 username khalili 100233 kill_reason Another user logged on this global unique id 100233 mac 100233 bytes_out 0 100233 bytes_in 0 100233 station_ip 5.120.87.224 100233 port 20 100233 unique_id port 100233 remote_ip 10.8.0.78 100235 username askari 100235 mac 100235 bytes_out 0 100235 bytes_in 0 100235 station_ip 5.119.141.39 100235 port 19 100235 unique_id port 100236 username khalili 100236 kill_reason Another user logged on this global unique id 100236 mac 100236 bytes_out 0 100236 bytes_in 0 100236 station_ip 5.120.87.224 100236 port 20 100236 unique_id port 100238 username askari 100238 mac 100238 bytes_out 3234765 100238 bytes_in 48681499 100238 station_ip 5.119.141.39 100238 port 11 100238 unique_id port 100238 remote_ip 10.8.0.38 100240 username forozande 100240 kill_reason Another user logged on this global unique id 100240 mac 100240 bytes_out 0 100240 bytes_in 0 100240 station_ip 83.123.65.195 100240 port 19 100240 unique_id port 100240 remote_ip 10.8.0.74 100245 username forozande 100245 mac 100245 bytes_out 0 100245 bytes_in 0 100245 station_ip 83.123.65.195 100245 port 19 100245 unique_id port 100247 username aminvpn 100247 unique_id port 100247 terminate_cause Lost-Carrier 100247 bytes_out 616675 100247 bytes_in 4411673 100247 station_ip 5.119.138.21 100247 port 15729337 100247 nas_port_type Virtual 100247 remote_ip 5.5.5.18 100248 username musa 100248 kill_reason Another user logged on this global unique id 100248 mac 100248 bytes_out 0 100248 bytes_in 0 100248 station_ip 37.129.52.76 100248 port 8 100248 unique_id port 100253 username sadegh 100253 kill_reason Relative expiration date has reached 100253 unique_id port 100253 bytes_out 0 100253 bytes_in 0 100253 station_ip 5.119.156.153 100253 port 15729363 100253 nas_port_type Virtual 100255 username alihosseini 100255 mac 100255 bytes_out 2888515 100255 bytes_in 30505937 100255 station_ip 5.120.92.69 100255 port 9 100255 unique_id port 100255 remote_ip 10.8.1.6 100256 username musa 100256 kill_reason Another user logged on this global unique id 100256 mac 100256 bytes_out 0 100256 bytes_in 0 100256 station_ip 37.129.52.76 100256 port 8 100256 unique_id port 100257 username alihosseini 100257 mac 100257 bytes_out 13914 100257 bytes_in 25171 100257 station_ip 5.120.92.69 100257 port 9 100257 unique_id port 100257 remote_ip 10.8.1.6 100260 username mirzaei 100260 kill_reason Another user logged on this global unique id 100260 mac 100260 bytes_out 0 100260 bytes_in 0 100260 station_ip 5.120.43.159 100260 port 11 100260 unique_id port 100260 remote_ip 10.8.0.30 100261 username khalili 100261 mac 100261 bytes_out 1078509 100261 bytes_in 10448273 100261 station_ip 5.120.151.27 100261 port 11 100261 unique_id port 100261 remote_ip 10.8.1.66 100269 username aminvpn 100269 mac 100269 bytes_out 4909235 100269 bytes_in 43139695 100269 station_ip 83.123.233.64 100269 port 27 100269 unique_id port 100269 remote_ip 10.8.0.6 100274 username musa 100274 mac 100274 bytes_out 0 100274 bytes_in 0 100274 station_ip 37.129.39.64 100274 port 8 100274 unique_id port 100274 remote_ip 10.8.1.78 100283 username asadi 100283 mac 100283 bytes_out 0 100283 bytes_in 0 100283 station_ip 83.122.251.15 100283 port 20 100230 unique_id port 100230 remote_ip 10.8.1.26 100232 username aminvpn 100232 mac 100232 bytes_out 0 100232 bytes_in 0 100232 station_ip 5.119.231.203 100232 port 10 100232 unique_id port 100232 remote_ip 10.8.1.26 100234 username musa 100234 kill_reason Another user logged on this global unique id 100234 mac 100234 bytes_out 0 100234 bytes_in 0 100234 station_ip 37.129.52.76 100234 port 8 100234 unique_id port 100241 username mohammadmahdi 100241 mac 100241 bytes_out 2756146 100241 bytes_in 22285686 100241 station_ip 5.120.37.183 100241 port 27 100241 unique_id port 100241 remote_ip 10.8.0.34 100244 username mohammadmahdi 100244 mac 100244 bytes_out 0 100244 bytes_in 0 100244 station_ip 5.120.37.183 100244 port 31 100244 unique_id port 100244 remote_ip 10.8.0.34 100246 username mehdizare 100246 mac 100246 bytes_out 0 100246 bytes_in 0 100246 station_ip 5.119.179.214 100246 port 30 100246 unique_id port 100246 remote_ip 10.8.0.22 100254 username sadegh 100254 kill_reason Relative expiration date has reached 100254 unique_id port 100254 bytes_out 0 100254 bytes_in 0 100254 station_ip 5.119.182.0 100254 port 15729365 100254 nas_port_type Virtual 100259 username alirr 100259 unique_id port 100259 terminate_cause User-Request 100259 bytes_out 102085 100259 bytes_in 366663 100259 station_ip 5.119.182.0 100259 port 15729366 100259 nas_port_type Virtual 100259 remote_ip 5.5.5.10 100263 username forozande 100263 mac 100263 bytes_out 735478 100263 bytes_in 10296887 100263 station_ip 83.123.241.75 100263 port 19 100263 unique_id port 100263 remote_ip 10.8.0.74 100264 username forozande 100264 mac 100264 bytes_out 0 100264 bytes_in 0 100264 station_ip 37.129.114.98 100264 port 11 100264 unique_id port 100264 remote_ip 10.8.0.74 100265 username musa 100265 mac 100265 bytes_out 0 100265 bytes_in 0 100265 station_ip 37.129.52.76 100265 port 8 100265 unique_id port 100270 username sadegh 100270 kill_reason Relative expiration date has reached 100270 unique_id port 100270 bytes_out 0 100270 bytes_in 0 100270 station_ip 5.119.161.60 100270 port 15729372 100270 nas_port_type Virtual 100273 username alirr 100273 unique_id port 100273 terminate_cause User-Request 100273 bytes_out 40 100273 bytes_in 80 100273 station_ip 5.119.161.60 100273 port 15729375 100273 nas_port_type Virtual 100273 remote_ip 5.5.5.9 100282 username musa 100282 mac 100282 bytes_out 0 100282 bytes_in 0 100282 station_ip 37.129.109.136 100282 port 8 100282 unique_id port 100282 remote_ip 10.8.1.78 100290 username asadi 100290 mac 100290 bytes_out 39904 100290 bytes_in 48327 100290 station_ip 83.122.251.15 100290 port 8 100290 unique_id port 100290 remote_ip 10.8.1.42 100292 username abbasaskari 100292 mac 100292 bytes_out 263935 100292 bytes_in 733804 100292 station_ip 83.122.130.205 100292 port 11 100292 unique_id port 100292 remote_ip 10.8.0.94 100294 username farhad1 100294 kill_reason Another user logged on this global unique id 100294 mac 100294 bytes_out 0 100294 bytes_in 0 100294 station_ip 5.120.76.130 100294 port 19 100294 unique_id port 100294 remote_ip 10.8.0.102 100299 username sobhan 100299 unique_id port 100299 terminate_cause Lost-Carrier 100299 bytes_out 144916 100299 bytes_in 666975 100299 station_ip 5.119.174.139 100299 port 15729379 100299 nas_port_type Virtual 100299 remote_ip 5.5.5.6 100300 username alihosseini 100300 kill_reason Another user logged on this global unique id 100300 mac 100300 bytes_out 0 100300 bytes_in 0 100300 station_ip 5.120.186.131 100300 port 30 100300 unique_id port 100300 remote_ip 10.8.0.14 100242 station_ip 37.129.52.76 100242 port 8 100242 unique_id port 100243 username aminvpn 100243 mac 100243 bytes_out 107454 100243 bytes_in 956668 100243 station_ip 5.119.231.203 100243 port 10 100243 unique_id port 100243 remote_ip 10.8.1.26 100249 username khalili 100249 mac 100249 bytes_out 0 100249 bytes_in 0 100249 station_ip 5.120.87.224 100249 port 20 100249 unique_id port 100250 username mehdizare 100250 mac 100250 bytes_out 13379 100250 bytes_in 15111 100250 station_ip 5.119.179.214 100250 port 19 100250 unique_id port 100250 remote_ip 10.8.0.22 100251 username sadegh 100251 kill_reason Relative expiration date has reached 100251 unique_id port 100251 bytes_out 0 100251 bytes_in 0 100251 station_ip 5.119.161.60 100251 port 15729360 100251 nas_port_type Virtual 100252 username forozande 100252 mac 100252 bytes_out 0 100252 bytes_in 0 100252 station_ip 83.122.224.215 100252 port 27 100252 unique_id port 100252 remote_ip 10.8.0.74 100258 username khalili 100258 mac 100258 bytes_out 0 100258 bytes_in 0 100258 station_ip 5.120.151.27 100258 port 19 100258 unique_id port 100258 remote_ip 10.8.0.78 100262 username farhad1 100262 mac 100262 bytes_out 0 100262 bytes_in 0 100262 station_ip 5.120.150.165 100262 port 20 100262 unique_id port 100262 remote_ip 10.8.0.102 100266 username aminvpn 100266 mac 100266 bytes_out 0 100266 bytes_in 0 100266 station_ip 5.119.231.203 100266 port 9 100266 unique_id port 100266 remote_ip 10.8.1.26 100267 username mirzaei 100267 mac 100267 bytes_out 12340 100267 bytes_in 29804 100267 station_ip 5.120.43.159 100267 port 11 100267 unique_id port 100267 remote_ip 10.8.0.30 100268 username mirzaei 100268 mac 100268 bytes_out 24008 100268 bytes_in 49484 100268 station_ip 5.120.43.159 100268 port 20 100268 unique_id port 100268 remote_ip 10.8.0.30 100271 username sadegh 100271 kill_reason Relative expiration date has reached 100271 unique_id port 100271 bytes_out 0 100271 bytes_in 0 100271 station_ip 5.119.161.60 100271 port 15729373 100271 nas_port_type Virtual 100272 username sadegh 100272 kill_reason Relative expiration date has reached 100272 unique_id port 100272 bytes_out 0 100272 bytes_in 0 100272 station_ip 5.119.161.60 100272 port 15729374 100272 nas_port_type Virtual 100275 username forozande 100275 mac 100275 bytes_out 980009 100275 bytes_in 5610560 100275 station_ip 83.122.68.250 100275 port 27 100275 unique_id port 100275 remote_ip 10.8.0.74 100276 username alihosseini 100276 mac 100276 bytes_out 570467 100276 bytes_in 4314658 100276 station_ip 5.119.99.102 100276 port 30 100276 unique_id port 100276 remote_ip 10.8.0.14 100277 username alihosseini 100277 mac 100277 bytes_out 42159 100277 bytes_in 13495 100277 station_ip 5.119.99.102 100277 port 8 100277 unique_id port 100277 remote_ip 10.8.1.6 100278 username ahmadipour 100278 unique_id port 100278 terminate_cause Lost-Carrier 100278 bytes_out 501939 100278 bytes_in 5898251 100278 station_ip 113.203.60.71 100278 port 15729376 100278 nas_port_type Virtual 100278 remote_ip 5.5.5.8 100279 username asadi 100279 kill_reason Another user logged on this global unique id 100279 mac 100279 bytes_out 0 100279 bytes_in 0 100279 station_ip 83.122.251.15 100279 port 20 100279 unique_id port 100279 remote_ip 10.8.0.50 100280 username mehdizare 100280 mac 100280 bytes_out 0 100280 bytes_in 0 100280 station_ip 5.119.179.214 100280 port 10 100280 unique_id port 100280 remote_ip 10.8.1.22 100281 username madadi2 100281 mac 100281 bytes_out 1340911 100281 bytes_in 8610265 100281 station_ip 5.120.117.119 100281 port 11 100281 unique_id port 100281 remote_ip 10.8.0.26 100285 username mehdizare 100285 mac 100285 bytes_out 0 100285 bytes_in 0 100285 station_ip 5.119.179.214 100285 port 9 100285 unique_id port 100285 remote_ip 10.8.1.22 100289 username alihosseini 100289 mac 100289 bytes_out 0 100289 bytes_in 0 100289 station_ip 5.120.186.131 100289 port 30 100289 unique_id port 100289 remote_ip 10.8.0.14 100295 username mohammadmahdi 100295 mac 100295 bytes_out 0 100295 bytes_in 0 100295 station_ip 113.203.65.254 100295 port 11 100295 unique_id port 100295 remote_ip 10.8.0.34 100296 username aminvpn 100296 kill_reason Another user logged on this global unique id 100296 mac 100296 bytes_out 0 100296 bytes_in 0 100296 station_ip 5.119.231.203 100296 port 9 100296 unique_id port 100296 remote_ip 10.8.1.26 100297 username sobhan 100297 unique_id port 100297 terminate_cause User-Request 100297 bytes_out 1820523 100297 bytes_in 30269334 100297 station_ip 5.119.174.139 100297 port 15729378 100297 nas_port_type Virtual 100297 remote_ip 5.5.5.6 100305 username mirzaei 100305 kill_reason Another user logged on this global unique id 100305 mac 100305 bytes_out 0 100305 bytes_in 0 100305 station_ip 5.120.43.159 100305 port 11 100305 unique_id port 100305 remote_ip 10.8.0.30 100308 username asadi 100308 mac 100308 bytes_out 1437285 100308 bytes_in 13042876 100308 station_ip 83.122.251.15 100308 port 8 100308 unique_id port 100308 remote_ip 10.8.1.42 100312 username alihosseini 100312 mac 100312 bytes_out 10122 100312 bytes_in 24623 100312 station_ip 5.120.186.131 100312 port 20 100312 unique_id port 100312 remote_ip 10.8.0.14 100313 username alihosseini 100313 mac 100313 bytes_out 0 100313 bytes_in 0 100313 station_ip 5.120.186.131 100313 port 9 100313 unique_id port 100313 remote_ip 10.8.1.6 100316 username alihosseini 100316 mac 100316 bytes_out 0 100316 bytes_in 0 100316 station_ip 5.120.186.131 100316 port 9 100316 unique_id port 100316 remote_ip 10.8.1.6 100325 username madadi2 100325 mac 100325 bytes_out 0 100325 bytes_in 0 100325 station_ip 5.119.167.153 100325 port 27 100325 unique_id port 100325 remote_ip 10.8.0.26 100327 username alihosseini 100327 mac 100327 bytes_out 6821 100327 bytes_in 9196 100327 station_ip 5.120.186.131 100327 port 31 100327 unique_id port 100327 remote_ip 10.8.0.14 100330 username mehdizare 100330 mac 100330 bytes_out 0 100330 bytes_in 0 100330 station_ip 5.119.179.214 100330 port 11 100330 unique_id port 100330 remote_ip 10.8.1.22 100331 username musa 100331 kill_reason Another user logged on this global unique id 100331 mac 100331 bytes_out 0 100331 bytes_in 0 100331 station_ip 37.129.81.184 100331 port 10 100331 unique_id port 100332 username mirzaei 100332 mac 100332 bytes_out 0 100332 bytes_in 0 100332 station_ip 5.120.43.159 100332 port 27 100332 unique_id port 100332 remote_ip 10.8.0.30 100335 username alihosseini 100335 mac 100335 bytes_out 0 100335 bytes_in 0 100335 station_ip 5.120.186.131 100335 port 11 100335 unique_id port 100335 remote_ip 10.8.1.6 100336 username mehdizare 100336 mac 100336 bytes_out 71409 100336 bytes_in 195033 100336 station_ip 5.119.179.214 100336 port 9 100336 unique_id port 100336 remote_ip 10.8.1.22 100338 username hashtadani 100338 unique_id port 100338 terminate_cause Lost-Carrier 100338 bytes_out 3219524 100338 bytes_in 51072706 100338 station_ip 5.202.27.203 100338 port 15729381 100338 nas_port_type Virtual 100338 remote_ip 5.5.5.4 100283 unique_id port 100284 username mohammadmahdi 100284 mac 100284 bytes_out 3008566 100284 bytes_in 42066881 100284 station_ip 113.203.65.254 100284 port 30 100284 unique_id port 100284 remote_ip 10.8.0.34 100286 username mehdizare 100286 mac 100286 bytes_out 7428 100286 bytes_in 9635 100286 station_ip 5.119.179.214 100286 port 20 100286 unique_id port 100286 remote_ip 10.8.0.22 100287 username alihosseini 100287 mac 100287 bytes_out 3758775 100287 bytes_in 43719682 100287 station_ip 5.120.186.131 100287 port 27 100287 unique_id port 100287 remote_ip 10.8.0.14 100288 username mehdizare 100288 mac 100288 bytes_out 403541 100288 bytes_in 71597 100288 station_ip 5.119.179.214 100288 port 20 100288 unique_id port 100288 remote_ip 10.8.0.22 100291 username alihosseini 100291 mac 100291 bytes_out 0 100291 bytes_in 0 100291 station_ip 5.120.186.131 100291 port 27 100291 unique_id port 100291 remote_ip 10.8.0.14 100293 username abbasaskari 100293 mac 100293 bytes_out 0 100293 bytes_in 0 100293 station_ip 83.122.130.205 100293 port 27 100293 unique_id port 100293 remote_ip 10.8.0.94 100298 username aminvpn 100298 mac 100298 bytes_out 0 100298 bytes_in 0 100298 station_ip 5.119.231.203 100298 port 9 100298 unique_id port 100301 username asadi 100301 mac 100301 bytes_out 1667002 100301 bytes_in 17546126 100301 station_ip 83.122.251.15 100301 port 8 100301 unique_id port 100301 remote_ip 10.8.1.42 100303 username farhad1 100303 kill_reason Another user logged on this global unique id 100303 mac 100303 bytes_out 0 100303 bytes_in 0 100303 station_ip 5.120.76.130 100303 port 19 100303 unique_id port 100304 username mehdizare 100304 mac 100304 bytes_out 0 100304 bytes_in 0 100304 station_ip 5.119.179.214 100304 port 20 100304 unique_id port 100304 remote_ip 10.8.0.22 100306 username aminvpn 100306 mac 100306 bytes_out 0 100306 bytes_in 0 100306 station_ip 5.119.231.203 100306 port 9 100306 unique_id port 100306 remote_ip 10.8.1.26 100307 username alihosseini 100307 mac 100307 bytes_out 0 100307 bytes_in 0 100307 station_ip 5.120.186.131 100307 port 27 100307 unique_id port 100307 remote_ip 10.8.0.14 100311 username farhad1 100311 kill_reason Another user logged on this global unique id 100311 mac 100311 bytes_out 0 100311 bytes_in 0 100311 station_ip 5.120.76.130 100311 port 19 100311 unique_id port 100314 username alihosseini 100314 mac 100314 bytes_out 0 100314 bytes_in 0 100314 station_ip 5.120.186.131 100314 port 9 100314 unique_id port 100314 remote_ip 10.8.1.6 100317 username asadi 100317 mac 100317 bytes_out 1362908 100317 bytes_in 18714491 100317 station_ip 83.122.251.15 100317 port 8 100317 unique_id port 100317 remote_ip 10.8.1.42 100319 username shahrooz 100319 unique_id port 100319 terminate_cause Lost-Carrier 100319 bytes_out 19804987 100319 bytes_in 345468640 100319 station_ip 37.129.26.235 100319 port 15729338 100319 nas_port_type Virtual 100319 remote_ip 5.5.5.17 100321 username alihosseini 100321 mac 100321 bytes_out 0 100321 bytes_in 0 100321 station_ip 5.120.186.131 100321 port 20 100321 unique_id port 100321 remote_ip 10.8.0.14 100323 username musa 100323 kill_reason Another user logged on this global unique id 100323 mac 100323 bytes_out 0 100323 bytes_in 0 100323 station_ip 37.129.81.184 100323 port 10 100323 unique_id port 100323 remote_ip 10.8.1.78 100324 username alirr 100324 unique_id port 100324 terminate_cause Lost-Carrier 100324 bytes_out 86516205 100324 bytes_in 120251587 100324 station_ip 31.56.221.147 100302 username alihosseini 100302 mac 100302 bytes_out 0 100302 bytes_in 0 100302 station_ip 5.120.186.131 100302 port 30 100302 unique_id port 100309 username alihosseini 100309 mac 100309 bytes_out 0 100309 bytes_in 0 100309 station_ip 5.120.186.131 100309 port 9 100309 unique_id port 100309 remote_ip 10.8.1.6 100310 username asadi 100310 mac 100310 bytes_out 315628 100310 bytes_in 4105924 100310 station_ip 83.122.251.15 100310 port 8 100310 unique_id port 100310 remote_ip 10.8.1.42 100315 username alihosseini 100315 mac 100315 bytes_out 0 100315 bytes_in 0 100315 station_ip 5.120.186.131 100315 port 20 100315 unique_id port 100315 remote_ip 10.8.0.14 100318 username alihosseini 100318 mac 100318 bytes_out 0 100318 bytes_in 0 100318 station_ip 5.120.186.131 100318 port 8 100318 unique_id port 100318 remote_ip 10.8.1.6 100320 username alihosseini 100320 mac 100320 bytes_out 0 100320 bytes_in 0 100320 station_ip 5.120.186.131 100320 port 8 100320 unique_id port 100320 remote_ip 10.8.1.6 100322 username alihosseini 100322 mac 100322 bytes_out 0 100322 bytes_in 0 100322 station_ip 5.120.186.131 100322 port 31 100322 unique_id port 100322 remote_ip 10.8.0.14 100326 username farhad1 100326 kill_reason Another user logged on this global unique id 100326 mac 100326 bytes_out 0 100326 bytes_in 0 100326 station_ip 5.120.76.130 100326 port 19 100326 unique_id port 100328 username mahdiyehalizadeh 100328 mac 100328 bytes_out 0 100328 bytes_in 0 100328 station_ip 37.129.101.32 100328 port 20 100328 unique_id port 100328 remote_ip 10.8.0.42 100329 username forozande 100329 mac 100329 bytes_out 0 100329 bytes_in 0 100329 station_ip 83.123.99.117 100329 port 30 100329 unique_id port 100329 remote_ip 10.8.0.74 100334 username mirzaei 100334 kill_reason Another user logged on this global unique id 100334 mac 100334 bytes_out 0 100334 bytes_in 0 100334 station_ip 5.119.88.37 100334 port 11 100334 unique_id port 100334 remote_ip 10.8.0.30 100340 username musa 100340 kill_reason Another user logged on this global unique id 100340 mac 100340 bytes_out 0 100340 bytes_in 0 100340 station_ip 37.129.81.184 100340 port 10 100340 unique_id port 100344 username askari 100344 mac 100344 bytes_out 0 100344 bytes_in 0 100344 station_ip 5.119.93.6 100344 port 30 100344 unique_id port 100347 username morteza 100347 kill_reason Another user logged on this global unique id 100347 mac 100347 bytes_out 0 100347 bytes_in 0 100347 station_ip 83.122.221.77 100347 port 20 100347 unique_id port 100347 remote_ip 10.8.0.90 100348 username forozande 100348 mac 100348 bytes_out 0 100348 bytes_in 0 100348 station_ip 83.123.245.224 100348 port 27 100348 unique_id port 100350 username aminvpn 100350 mac 100350 bytes_out 0 100350 bytes_in 0 100350 station_ip 5.119.231.203 100350 port 8 100350 unique_id port 100350 remote_ip 10.8.1.26 100352 username mehdizare 100352 mac 100352 bytes_out 0 100352 bytes_in 0 100352 station_ip 5.119.179.214 100352 port 31 100352 unique_id port 100352 remote_ip 10.8.0.22 100353 username ahmadipour 100353 unique_id port 100353 terminate_cause Lost-Carrier 100353 bytes_out 711127 100353 bytes_in 16224702 100353 station_ip 113.203.16.159 100353 port 15729384 100353 nas_port_type Virtual 100353 remote_ip 5.5.5.1 100357 username abbasaskari 100357 mac 100357 bytes_out 7446 100357 bytes_in 27274 100357 station_ip 83.122.184.149 100357 port 33 100357 unique_id port 100357 remote_ip 10.8.0.94 100362 username forozande 100324 port 15729377 100324 nas_port_type Virtual 100324 remote_ip 5.5.5.7 100333 username alihosseini 100333 mac 100333 bytes_out 0 100333 bytes_in 0 100333 station_ip 5.120.186.131 100333 port 27 100333 unique_id port 100333 remote_ip 10.8.0.14 100337 username alihosseini 100337 mac 100337 bytes_out 0 100337 bytes_in 0 100337 station_ip 5.120.186.131 100337 port 30 100337 unique_id port 100337 remote_ip 10.8.0.14 100342 username bcboard 100342 unique_id port 100342 terminate_cause Lost-Carrier 100342 bytes_out 3099612 100342 bytes_in 22915204 100342 station_ip 37.129.154.52 100342 port 15729380 100342 nas_port_type Virtual 100342 remote_ip 5.5.5.5 100346 username askari 100346 mac 100346 bytes_out 0 100346 bytes_in 0 100346 station_ip 5.119.93.6 100346 port 30 100346 unique_id port 100346 remote_ip 10.8.0.38 100349 username ahmadipour 100349 unique_id port 100349 terminate_cause Lost-Carrier 100349 bytes_out 15131 100349 bytes_in 238 100349 station_ip 113.203.16.159 100349 port 15729383 100349 nas_port_type Virtual 100349 remote_ip 5.5.5.2 100355 username alihosseini 100355 mac 100355 bytes_out 2887360 100355 bytes_in 33037140 100355 station_ip 5.120.186.131 100355 port 33 100355 unique_id port 100355 remote_ip 10.8.0.14 100356 username morteza 100356 kill_reason Another user logged on this global unique id 100356 mac 100356 bytes_out 0 100356 bytes_in 0 100356 station_ip 83.122.221.77 100356 port 20 100356 unique_id port 100367 username musa 100367 mac 100367 bytes_out 0 100367 bytes_in 0 100367 station_ip 37.129.81.184 100367 port 10 100367 unique_id port 100368 username aminvpn 100368 mac 100368 bytes_out 883129 100368 bytes_in 3547226 100368 station_ip 83.122.131.196 100368 port 34 100368 unique_id port 100368 remote_ip 10.8.0.6 100370 username farhad1 100370 mac 100370 bytes_out 0 100370 bytes_in 0 100370 station_ip 5.120.76.130 100370 port 19 100370 unique_id port 100375 username mehdizare 100375 mac 100375 bytes_out 0 100375 bytes_in 0 100375 station_ip 5.119.179.214 100375 port 30 100375 unique_id port 100375 remote_ip 10.8.0.22 100379 username askari 100379 mac 100379 bytes_out 0 100379 bytes_in 0 100379 station_ip 5.119.67.105 100379 port 32 100379 unique_id port 100379 remote_ip 10.8.0.38 100380 username musa 100380 kill_reason Another user logged on this global unique id 100380 mac 100380 bytes_out 0 100380 bytes_in 0 100380 station_ip 83.123.189.196 100380 port 36 100380 unique_id port 100380 remote_ip 10.8.0.106 100381 username mehdizare 100381 mac 100381 bytes_out 18685 100381 bytes_in 23501 100381 station_ip 5.119.179.214 100381 port 30 100381 unique_id port 100381 remote_ip 10.8.0.22 100383 username mehdizare 100383 mac 100383 bytes_out 12374 100383 bytes_in 19763 100383 station_ip 5.119.179.214 100383 port 8 100383 unique_id port 100383 remote_ip 10.8.1.22 100384 username mohammadmahdi 100384 mac 100384 bytes_out 0 100384 bytes_in 0 100384 station_ip 5.120.191.127 100384 port 20 100384 unique_id port 100389 username ahmadi 100389 unique_id port 100389 terminate_cause User-Request 100389 bytes_out 314207 100389 bytes_in 918682 100389 station_ip 83.123.41.88 100389 port 15729392 100389 nas_port_type Virtual 100389 remote_ip 5.5.5.255 100394 username bcboard 100394 unique_id port 100394 terminate_cause Lost-Carrier 100394 bytes_out 2248481 100394 bytes_in 23084496 100394 station_ip 37.129.154.52 100394 port 15729385 100394 nas_port_type Virtual 100394 remote_ip 5.5.5.5 100396 username askari 100396 kill_reason Another user logged on this global unique id 100339 username forozande 100339 kill_reason Another user logged on this global unique id 100339 mac 100339 bytes_out 0 100339 bytes_in 0 100339 station_ip 83.123.245.224 100339 port 27 100339 unique_id port 100339 remote_ip 10.8.0.74 100341 username askari 100341 kill_reason Another user logged on this global unique id 100341 mac 100341 bytes_out 0 100341 bytes_in 0 100341 station_ip 5.119.93.6 100341 port 30 100341 unique_id port 100341 remote_ip 10.8.0.38 100343 username madadi2 100343 mac 100343 bytes_out 0 100343 bytes_in 0 100343 station_ip 5.120.53.25 100343 port 33 100343 unique_id port 100343 remote_ip 10.8.0.26 100345 username alihosseini 100345 mac 100345 bytes_out 1636234 100345 bytes_in 16896316 100345 station_ip 5.120.186.131 100345 port 32 100345 unique_id port 100345 remote_ip 10.8.0.14 100351 username aminvpn 100351 unique_id port 100351 terminate_cause User-Request 100351 bytes_out 591003 100351 bytes_in 10872374 100351 station_ip 31.57.131.235 100351 port 15729382 100351 nas_port_type Virtual 100351 remote_ip 5.5.5.3 100354 username musa 100354 kill_reason Another user logged on this global unique id 100354 mac 100354 bytes_out 0 100354 bytes_in 0 100354 station_ip 37.129.81.184 100354 port 10 100354 unique_id port 100358 username forozande 100358 mac 100358 bytes_out 0 100358 bytes_in 0 100358 station_ip 113.203.109.223 100358 port 31 100358 unique_id port 100358 remote_ip 10.8.0.74 100359 username kamali1 100359 kill_reason Another user logged on this global unique id 100359 mac 100359 bytes_out 0 100359 bytes_in 0 100359 station_ip 5.120.67.173 100359 port 35 100359 unique_id port 100359 remote_ip 10.8.0.110 100360 username morteza 100360 mac 100360 bytes_out 0 100360 bytes_in 0 100360 station_ip 83.122.221.77 100360 port 20 100360 unique_id port 100361 username madadi2 100361 mac 100361 bytes_out 169924 100361 bytes_in 337789 100361 station_ip 5.119.159.112 100361 port 27 100361 unique_id port 100361 remote_ip 10.8.0.26 100363 username mehdizare 100363 mac 100363 bytes_out 0 100363 bytes_in 0 100363 station_ip 5.119.179.214 100363 port 30 100363 unique_id port 100363 remote_ip 10.8.0.22 100365 username kamali1 100365 mac 100365 bytes_out 0 100365 bytes_in 0 100365 station_ip 5.120.67.173 100365 port 35 100365 unique_id port 100369 username forozande 100369 mac 100369 bytes_out 420471 100369 bytes_in 5691109 100369 station_ip 83.122.232.167 100369 port 33 100369 unique_id port 100369 remote_ip 10.8.0.74 100371 username mohammadmahdi 100371 kill_reason Another user logged on this global unique id 100371 mac 100371 bytes_out 0 100371 bytes_in 0 100371 station_ip 5.120.191.127 100371 port 20 100371 unique_id port 100371 remote_ip 10.8.0.34 100372 username mahyaarabpour 100372 mac 100372 bytes_out 333571 100372 bytes_in 5126584 100372 station_ip 5.120.87.104 100372 port 34 100372 unique_id port 100372 remote_ip 10.8.0.82 100374 username morteza 100374 mac 100374 bytes_out 29564592 100374 bytes_in 11848849 100374 station_ip 83.122.152.17 100374 port 31 100374 unique_id port 100374 remote_ip 10.8.0.90 100378 username alirr 100378 unique_id port 100378 terminate_cause User-Request 100378 bytes_out 252888 100378 bytes_in 73924 100378 station_ip 31.56.221.147 100378 port 15729390 100378 nas_port_type Virtual 100378 remote_ip 5.5.5.7 100386 username farhad1 100386 mac 100386 bytes_out 0 100386 bytes_in 0 100386 station_ip 5.119.27.15 100386 port 19 100386 unique_id port 100386 remote_ip 10.8.0.102 100390 username aminvpn 100390 kill_reason Another user logged on this global unique id 100362 mac 100362 bytes_out 107837 100362 bytes_in 912870 100362 station_ip 37.129.151.235 100362 port 27 100362 unique_id port 100362 remote_ip 10.8.0.74 100364 username amir 100364 mac 100364 bytes_out 72986 100364 bytes_in 140506 100364 station_ip 83.122.103.152 100364 port 33 100364 unique_id port 100364 remote_ip 10.8.0.54 100366 username mohammadmahdi 100366 mac 100366 bytes_out 2072666 100366 bytes_in 10530117 100366 station_ip 113.203.65.254 100366 port 20 100366 unique_id port 100366 remote_ip 10.8.0.34 100373 username madadi2 100373 mac 100373 bytes_out 26742 100373 bytes_in 40285 100373 station_ip 5.119.121.194 100373 port 35 100373 unique_id port 100373 remote_ip 10.8.0.26 100376 username ahmadipour 100376 unique_id port 100376 terminate_cause Lost-Carrier 100376 bytes_out 1000607 100376 bytes_in 9860636 100376 station_ip 113.203.16.159 100376 port 15729387 100376 nas_port_type Virtual 100376 remote_ip 5.5.5.1 100377 username mohammadmahdi 100377 kill_reason Another user logged on this global unique id 100377 mac 100377 bytes_out 0 100377 bytes_in 0 100377 station_ip 5.120.191.127 100377 port 20 100377 unique_id port 100382 username madadi2 100382 mac 100382 bytes_out 0 100382 bytes_in 0 100382 station_ip 5.119.239.254 100382 port 30 100382 unique_id port 100382 remote_ip 10.8.0.26 100385 username madadi2 100385 mac 100385 bytes_out 0 100385 bytes_in 0 100385 station_ip 5.119.84.50 100385 port 30 100385 unique_id port 100385 remote_ip 10.8.0.26 100387 username askari 100387 kill_reason Another user logged on this global unique id 100387 mac 100387 bytes_out 0 100387 bytes_in 0 100387 station_ip 5.119.67.105 100387 port 31 100387 unique_id port 100387 remote_ip 10.8.0.38 100388 username aminvpn 100388 unique_id port 100388 terminate_cause User-Request 100388 bytes_out 9235900 100388 bytes_in 285987269 100388 station_ip 31.57.129.5 100388 port 15729386 100388 nas_port_type Virtual 100388 remote_ip 5.5.5.0 100391 username aminvpn 100391 mac 100391 bytes_out 0 100391 bytes_in 0 100391 station_ip 5.119.231.203 100391 port 9 100391 unique_id port 100391 remote_ip 10.8.1.26 100395 username forozande 100395 mac 100395 bytes_out 5364604 100395 bytes_in 413222 100395 station_ip 83.123.178.124 100395 port 19 100395 unique_id port 100395 remote_ip 10.8.0.74 100397 username musa 100397 kill_reason Another user logged on this global unique id 100397 mac 100397 bytes_out 0 100397 bytes_in 0 100397 station_ip 83.123.189.196 100397 port 36 100397 unique_id port 100398 username mirzaei 100398 mac 100398 bytes_out 37065 100398 bytes_in 109653 100398 station_ip 5.119.88.37 100398 port 9 100398 unique_id port 100398 remote_ip 10.8.1.70 100404 username mirzaei 100404 mac 100404 bytes_out 0 100404 bytes_in 0 100404 station_ip 5.119.88.37 100404 port 9 100404 unique_id port 100404 remote_ip 10.8.1.70 100405 username aminvpn 100405 mac 100405 bytes_out 0 100405 bytes_in 0 100405 station_ip 83.122.131.196 100405 port 33 100405 unique_id port 100406 username abbasaskari 100406 mac 100406 bytes_out 0 100406 bytes_in 0 100406 station_ip 83.122.130.61 100406 port 11 100406 unique_id port 100406 remote_ip 10.8.0.94 100412 username musa 100412 kill_reason Another user logged on this global unique id 100412 mac 100412 bytes_out 0 100412 bytes_in 0 100412 station_ip 83.123.189.196 100412 port 36 100412 unique_id port 100414 username jamali 100414 mac 100414 bytes_out 0 100414 bytes_in 0 100414 station_ip 5.119.111.192 100414 port 20 100414 unique_id port 100390 mac 100390 bytes_out 0 100390 bytes_in 0 100390 station_ip 83.122.131.196 100390 port 33 100390 unique_id port 100390 remote_ip 10.8.0.6 100392 username forozande 100392 mac 100392 bytes_out 0 100392 bytes_in 0 100392 station_ip 83.122.207.11 100392 port 19 100392 unique_id port 100392 remote_ip 10.8.0.74 100393 username mehdizare 100393 mac 100393 bytes_out 0 100393 bytes_in 0 100393 station_ip 5.119.179.214 100393 port 8 100393 unique_id port 100393 remote_ip 10.8.1.22 100400 username askari 100400 mac 100400 bytes_out 0 100400 bytes_in 0 100400 station_ip 5.119.67.105 100400 port 31 100400 unique_id port 100402 username mirzaei 100402 mac 100402 bytes_out 87345 100402 bytes_in 130256 100402 station_ip 5.119.88.37 100402 port 10 100402 unique_id port 100402 remote_ip 10.8.1.70 100403 username madadi2 100403 mac 100403 bytes_out 0 100403 bytes_in 0 100403 station_ip 5.119.63.66 100403 port 11 100403 unique_id port 100403 remote_ip 10.8.0.26 100410 username morteza 100410 kill_reason Another user logged on this global unique id 100410 mac 100410 bytes_out 0 100410 bytes_in 0 100410 station_ip 83.122.152.17 100410 port 34 100410 unique_id port 100410 remote_ip 10.8.0.90 100411 username jamali 100411 mac 100411 bytes_out 18166 100411 bytes_in 20084 100411 station_ip 5.119.111.192 100411 port 20 100411 unique_id port 100411 remote_ip 10.8.0.62 100420 username aminvpn 100420 mac 100420 bytes_out 663567 100420 bytes_in 2257032 100420 station_ip 5.119.231.203 100420 port 8 100420 unique_id port 100420 remote_ip 10.8.1.26 100426 username aminvpn 100426 mac 100426 bytes_out 3445041 100426 bytes_in 28682681 100426 station_ip 83.122.160.48 100426 port 19 100426 unique_id port 100426 remote_ip 10.8.0.6 100429 username aminvpn 100429 mac 100429 bytes_out 0 100429 bytes_in 0 100429 station_ip 5.119.231.203 100429 port 8 100429 unique_id port 100429 remote_ip 10.8.1.26 100430 username mohammadmahdi 100430 kill_reason Another user logged on this global unique id 100430 mac 100430 bytes_out 0 100430 bytes_in 0 100430 station_ip 5.120.191.127 100430 port 11 100430 unique_id port 100430 remote_ip 10.8.0.34 100431 username mehdizare 100431 mac 100431 bytes_out 0 100431 bytes_in 0 100431 station_ip 5.119.179.214 100431 port 33 100431 unique_id port 100431 remote_ip 10.8.0.22 100435 username mirzaei 100435 mac 100435 bytes_out 1432466 100435 bytes_in 9995487 100435 station_ip 5.119.88.37 100435 port 9 100435 unique_id port 100435 remote_ip 10.8.1.70 100439 username aminvpn 100439 mac 100439 bytes_out 0 100439 bytes_in 0 100439 station_ip 83.122.197.252 100439 port 27 100439 unique_id port 100439 remote_ip 10.8.0.6 100444 username jamali 100444 mac 100444 bytes_out 1272165 100444 bytes_in 12583957 100444 station_ip 5.119.111.192 100444 port 20 100444 unique_id port 100444 remote_ip 10.8.0.62 100453 username jamali 100453 mac 100453 bytes_out 2219923 100453 bytes_in 28274761 100453 station_ip 5.119.111.192 100453 port 10 100453 unique_id port 100453 remote_ip 10.8.1.54 100456 username mehdizare 100456 mac 100456 bytes_out 160466 100456 bytes_in 703878 100456 station_ip 5.119.179.214 100456 port 11 100456 unique_id port 100456 remote_ip 10.8.0.22 100457 username alihosseini 100457 kill_reason Another user logged on this global unique id 100457 mac 100457 bytes_out 0 100457 bytes_in 0 100457 station_ip 5.119.31.212 100457 port 27 100457 unique_id port 100457 remote_ip 10.8.0.14 100461 username musa 100396 mac 100396 bytes_out 0 100396 bytes_in 0 100396 station_ip 5.119.67.105 100396 port 31 100396 unique_id port 100399 username farhad1 100399 mac 100399 bytes_out 0 100399 bytes_in 0 100399 station_ip 5.120.79.151 100399 port 20 100399 unique_id port 100399 remote_ip 10.8.0.102 100401 username mirzaei 100401 mac 100401 bytes_out 5121 100401 bytes_in 12321 100401 station_ip 5.119.88.37 100401 port 9 100401 unique_id port 100401 remote_ip 10.8.1.70 100407 username jamali 100407 mac 100407 bytes_out 1698342 100407 bytes_in 24934897 100407 station_ip 5.119.111.192 100407 port 19 100407 unique_id port 100407 remote_ip 10.8.0.62 100408 username amir 100408 mac 100408 bytes_out 87725 100408 bytes_in 439651 100408 station_ip 46.225.215.23 100408 port 19 100408 unique_id port 100408 remote_ip 10.8.0.54 100409 username jamali 100409 mac 100409 bytes_out 0 100409 bytes_in 0 100409 station_ip 5.119.111.192 100409 port 20 100409 unique_id port 100409 remote_ip 10.8.0.62 100413 username abbasaskari 100413 mac 100413 bytes_out 70246 100413 bytes_in 115634 100413 station_ip 83.122.130.61 100413 port 11 100413 unique_id port 100413 remote_ip 10.8.0.94 100418 username morteza 100418 mac 100418 bytes_out 0 100418 bytes_in 0 100418 station_ip 83.122.152.17 100418 port 34 100418 unique_id port 100421 username aminvpn 100421 mac 100421 bytes_out 0 100421 bytes_in 0 100421 station_ip 5.119.231.203 100421 port 10 100421 unique_id port 100421 remote_ip 10.8.1.26 100422 username amir 100422 mac 100422 bytes_out 0 100422 bytes_in 0 100422 station_ip 46.225.215.23 100422 port 31 100422 unique_id port 100422 remote_ip 10.8.0.54 100425 username alihosseini 100425 mac 100425 bytes_out 22968 100425 bytes_in 74114 100425 station_ip 5.119.31.212 100425 port 27 100425 unique_id port 100425 remote_ip 10.8.0.14 100427 username musa 100427 mac 100427 bytes_out 0 100427 bytes_in 0 100427 station_ip 83.123.189.196 100427 port 36 100427 unique_id port 100434 username mohammadmahdi 100434 mac 100434 bytes_out 0 100434 bytes_in 0 100434 station_ip 5.120.191.127 100434 port 11 100434 unique_id port 100441 username mirzaei 100441 mac 100441 bytes_out 0 100441 bytes_in 0 100441 station_ip 5.119.218.58 100441 port 9 100441 unique_id port 100441 remote_ip 10.8.1.70 100442 username mehdizare 100442 mac 100442 bytes_out 6217 100442 bytes_in 9757 100442 station_ip 5.119.179.214 100442 port 11 100442 unique_id port 100442 remote_ip 10.8.0.22 100443 username abbasaskari 100443 mac 100443 bytes_out 11679 100443 bytes_in 28339 100443 station_ip 83.122.155.125 100443 port 27 100443 unique_id port 100443 remote_ip 10.8.0.94 100446 username forozande 100446 mac 100446 bytes_out 0 100446 bytes_in 0 100446 station_ip 37.129.85.255 100446 port 20 100446 unique_id port 100446 remote_ip 10.8.0.74 100447 username mehdizare 100447 mac 100447 bytes_out 0 100447 bytes_in 0 100447 station_ip 5.119.179.214 100447 port 11 100447 unique_id port 100447 remote_ip 10.8.0.22 100448 username bcboard 100448 unique_id port 100448 terminate_cause Lost-Carrier 100448 bytes_out 2455545 100448 bytes_in 32805136 100448 station_ip 83.123.163.115 100448 port 15729397 100448 nas_port_type Virtual 100448 remote_ip 5.5.5.254 100450 username musa 100450 kill_reason Another user logged on this global unique id 100450 mac 100450 bytes_out 0 100450 bytes_in 0 100450 station_ip 83.123.197.228 100450 port 8 100450 unique_id port 100414 remote_ip 10.8.0.62 100415 username mahdixz 100415 unique_id port 100415 terminate_cause User-Request 100415 bytes_out 160671 100415 bytes_in 1207648 100415 station_ip 151.235.89.48 100415 port 15729395 100415 nas_port_type Virtual 100415 remote_ip 5.5.5.253 100416 username jamali 100416 mac 100416 bytes_out 0 100416 bytes_in 0 100416 station_ip 5.119.111.192 100416 port 11 100416 unique_id port 100416 remote_ip 10.8.0.62 100417 username rezasekonji 100417 unique_id port 100417 terminate_cause User-Request 100417 bytes_out 3530 100417 bytes_in 3250 100417 station_ip 37.129.102.217 100417 port 15729394 100417 nas_port_type Virtual 100417 remote_ip 5.5.5.254 100419 username mehdizare 100419 mac 100419 bytes_out 0 100419 bytes_in 0 100419 station_ip 5.119.179.214 100419 port 30 100419 unique_id port 100419 remote_ip 10.8.0.22 100423 username alihosseini 100423 mac 100423 bytes_out 0 100423 bytes_in 0 100423 station_ip 5.119.31.212 100423 port 27 100423 unique_id port 100423 remote_ip 10.8.0.14 100424 username madadi2 100424 mac 100424 bytes_out 0 100424 bytes_in 0 100424 station_ip 5.119.129.0 100424 port 32 100424 unique_id port 100424 remote_ip 10.8.0.26 100428 username aminvpn 100428 mac 100428 bytes_out 752224 100428 bytes_in 6815684 100428 station_ip 5.119.231.203 100428 port 8 100428 unique_id port 100428 remote_ip 10.8.1.26 100432 username alihosseini 100432 mac 100432 bytes_out 0 100432 bytes_in 0 100432 station_ip 5.119.31.212 100432 port 19 100432 unique_id port 100432 remote_ip 10.8.0.14 100433 username alihosseini 100433 mac 100433 bytes_out 0 100433 bytes_in 0 100433 station_ip 5.119.31.212 100433 port 10 100433 unique_id port 100433 remote_ip 10.8.1.6 100436 username alihosseini 100436 mac 100436 bytes_out 0 100436 bytes_in 0 100436 station_ip 5.119.31.212 100436 port 10 100436 unique_id port 100436 remote_ip 10.8.1.6 100437 username madadi2 100437 mac 100437 bytes_out 0 100437 bytes_in 0 100437 station_ip 5.120.57.170 100437 port 11 100437 unique_id port 100437 remote_ip 10.8.0.26 100438 username alihosseini 100438 mac 100438 bytes_out 0 100438 bytes_in 0 100438 station_ip 5.119.31.212 100438 port 9 100438 unique_id port 100438 remote_ip 10.8.1.6 100440 username mehdizare 100440 mac 100440 bytes_out 19770 100440 bytes_in 33543 100440 station_ip 5.119.179.214 100440 port 19 100440 unique_id port 100440 remote_ip 10.8.0.22 100445 username khalili 100445 mac 100445 bytes_out 0 100445 bytes_in 0 100445 station_ip 5.119.178.16 100445 port 9 100445 unique_id port 100445 remote_ip 10.8.1.66 100449 username mahdixz 100449 unique_id port 100449 terminate_cause Lost-Carrier 100449 bytes_out 7393549 100449 bytes_in 200102153 100449 station_ip 151.235.89.48 100449 port 15729396 100449 nas_port_type Virtual 100449 remote_ip 5.5.5.253 100451 username madadi2 100451 mac 100451 bytes_out 101253 100451 bytes_in 694012 100451 station_ip 5.119.142.48 100451 port 9 100451 unique_id port 100451 remote_ip 10.8.1.18 100452 username mehdizare 100452 mac 100452 bytes_out 0 100452 bytes_in 0 100452 station_ip 5.119.179.214 100452 port 20 100452 unique_id port 100452 remote_ip 10.8.0.22 100455 username forozande 100455 mac 100455 bytes_out 100379 100455 bytes_in 146744 100455 station_ip 83.122.144.88 100455 port 20 100455 unique_id port 100455 remote_ip 10.8.0.74 100459 username mehdizare 100459 mac 100459 bytes_out 19317 100459 bytes_in 23825 100459 station_ip 5.119.179.214 100459 port 20 100450 remote_ip 10.8.1.78 100454 username jamali 100454 mac 100454 bytes_out 0 100454 bytes_in 0 100454 station_ip 5.119.111.192 100454 port 10 100454 unique_id port 100454 remote_ip 10.8.1.54 100458 username aminvpn 100458 mac 100458 bytes_out 0 100458 bytes_in 0 100458 station_ip 5.119.231.203 100458 port 10 100458 unique_id port 100458 remote_ip 10.8.1.26 100467 username mohammadmahdi 100467 mac 100467 bytes_out 1432815 100467 bytes_in 15340447 100467 station_ip 113.203.96.70 100467 port 11 100467 unique_id port 100467 remote_ip 10.8.0.34 100469 username alihosseini 100469 kill_reason Another user logged on this global unique id 100469 mac 100469 bytes_out 0 100469 bytes_in 0 100469 station_ip 5.119.31.212 100469 port 27 100469 unique_id port 100469 remote_ip 10.8.0.14 100472 username fariba 100472 mac 100472 bytes_out 0 100472 bytes_in 0 100472 station_ip 5.120.105.24 100472 port 29 100472 unique_id port 100472 remote_ip 10.8.0.46 100479 username mirzaei 100479 mac 100479 bytes_out 106688 100479 bytes_in 181793 100479 station_ip 5.119.166.239 100479 port 19 100479 unique_id port 100479 remote_ip 10.8.0.30 100480 username mirzaei 100480 mac 100480 bytes_out 0 100480 bytes_in 0 100480 station_ip 5.119.166.239 100480 port 11 100480 unique_id port 100480 remote_ip 10.8.1.70 100490 username mahdiyehalizadeh 100490 mac 100490 bytes_out 0 100490 bytes_in 0 100490 station_ip 37.129.197.174 100490 port 8 100490 unique_id port 100490 remote_ip 10.8.1.14 100493 username mahdiyehalizadeh 100493 kill_reason Wrong password 100493 mac 100493 bytes_out 0 100493 bytes_in 0 100493 station_ip 37.129.197.174 100493 port 19 100493 unique_id port 100496 username mahdiyehalizadeh 100496 mac 100496 bytes_out 925212 100496 bytes_in 14787125 100496 station_ip 37.129.197.174 100496 port 19 100496 unique_id port 100496 remote_ip 10.8.0.42 100498 username mehdizare 100498 mac 100498 bytes_out 0 100498 bytes_in 0 100498 station_ip 5.119.179.214 100498 port 30 100498 unique_id port 100498 remote_ip 10.8.0.22 100499 username mehdizare 100499 mac 100499 bytes_out 9200 100499 bytes_in 18657 100499 station_ip 5.119.179.214 100499 port 8 100499 unique_id port 100499 remote_ip 10.8.1.22 100500 username abbasaskari 100500 mac 100500 bytes_out 64306 100500 bytes_in 133737 100500 station_ip 83.122.67.125 100500 port 19 100500 unique_id port 100500 remote_ip 10.8.0.94 100503 username aminvpn 100503 mac 100503 bytes_out 157940 100503 bytes_in 1468851 100503 station_ip 5.119.231.203 100503 port 9 100503 unique_id port 100503 remote_ip 10.8.1.26 100507 username askari 100507 mac 100507 bytes_out 0 100507 bytes_in 0 100507 station_ip 5.119.211.228 100507 port 19 100507 unique_id port 100507 remote_ip 10.8.0.38 100515 username alireza1 100515 unique_id port 100515 terminate_cause Lost-Carrier 100515 bytes_out 656063 100515 bytes_in 2068431 100515 station_ip 5.119.126.56 100515 port 15729408 100515 nas_port_type Virtual 100515 remote_ip 5.5.5.254 100516 username mirzaei 100516 kill_reason Another user logged on this global unique id 100516 mac 100516 bytes_out 0 100516 bytes_in 0 100516 station_ip 5.119.166.239 100516 port 11 100516 unique_id port 100516 remote_ip 10.8.0.30 100524 username mehdizare 100524 mac 100524 bytes_out 0 100524 bytes_in 0 100524 station_ip 5.119.179.214 100524 port 29 100524 unique_id port 100524 remote_ip 10.8.0.22 100528 username forozande 100528 mac 100528 bytes_out 0 100528 bytes_in 0 100528 station_ip 83.123.116.34 100459 unique_id port 100459 remote_ip 10.8.0.22 100460 username abbasaskari 100460 mac 100460 bytes_out 170101 100460 bytes_in 1654123 100460 station_ip 83.122.52.17 100460 port 11 100460 unique_id port 100460 remote_ip 10.8.0.94 100462 username alihosseini 100462 mac 100462 bytes_out 0 100462 bytes_in 0 100462 station_ip 5.119.31.212 100462 port 27 100462 unique_id port 100465 username musa 100465 kill_reason Another user logged on this global unique id 100465 mac 100465 bytes_out 0 100465 bytes_in 0 100465 station_ip 83.123.197.228 100465 port 8 100465 unique_id port 100468 username madadi2 100468 mac 100468 bytes_out 0 100468 bytes_in 0 100468 station_ip 5.120.24.158 100468 port 9 100468 unique_id port 100468 remote_ip 10.8.1.18 100471 username madadi2 100471 mac 100471 bytes_out 0 100471 bytes_in 0 100471 station_ip 5.120.55.191 100471 port 9 100471 unique_id port 100471 remote_ip 10.8.1.18 100473 username musa 100473 mac 100473 bytes_out 0 100473 bytes_in 0 100473 station_ip 83.123.231.240 100473 port 8 100473 unique_id port 100473 remote_ip 10.8.1.78 100475 username mirzaei 100475 mac 100475 bytes_out 0 100475 bytes_in 0 100475 station_ip 5.119.218.58 100475 port 19 100475 unique_id port 100475 remote_ip 10.8.0.30 100477 username mohammadmahdi 100477 mac 100477 bytes_out 0 100477 bytes_in 0 100477 station_ip 5.120.191.127 100477 port 11 100477 unique_id port 100477 remote_ip 10.8.0.34 100482 username mirzaei 100482 mac 100482 bytes_out 10299 100482 bytes_in 17398 100482 station_ip 5.119.166.239 100482 port 20 100482 unique_id port 100482 remote_ip 10.8.0.30 100484 username mirzaei 100484 kill_reason Another user logged on this global unique id 100484 mac 100484 bytes_out 0 100484 bytes_in 0 100484 station_ip 5.119.166.239 100484 port 11 100484 unique_id port 100484 remote_ip 10.8.0.30 100487 username farhad1 100487 mac 100487 bytes_out 8224035 100487 bytes_in 35948737 100487 station_ip 5.119.92.10 100487 port 19 100487 unique_id port 100487 remote_ip 10.8.0.102 100488 username mahdiyehalizadeh 100488 mac 100488 bytes_out 1974 100488 bytes_in 4177 100488 station_ip 37.129.169.86 100488 port 19 100488 unique_id port 100488 remote_ip 10.8.0.42 100489 username mahdixz 100489 unique_id port 100489 terminate_cause User-Request 100489 bytes_out 10685344 100489 bytes_in 289814233 100489 station_ip 5.119.199.184 100489 port 15729406 100489 nas_port_type Virtual 100489 remote_ip 5.5.5.252 100491 username mahdiyehalizadeh 100491 mac 100491 bytes_out 0 100491 bytes_in 0 100491 station_ip 37.129.197.174 100491 port 8 100491 unique_id port 100491 remote_ip 10.8.1.14 100494 username bcboard 100494 unique_id port 100494 terminate_cause Lost-Carrier 100494 bytes_out 8489077 100494 bytes_in 101031322 100494 station_ip 83.123.163.115 100494 port 15729401 100494 nas_port_type Virtual 100494 remote_ip 5.5.5.255 100497 username musa 100497 mac 100497 bytes_out 0 100497 bytes_in 0 100497 station_ip 83.122.51.206 100497 port 8 100497 unique_id port 100497 remote_ip 10.8.1.78 100501 username aminvpn 100501 mac 100501 bytes_out 1434466 100501 bytes_in 12108340 100501 station_ip 5.119.231.203 100501 port 9 100501 unique_id port 100501 remote_ip 10.8.1.26 100504 username askari 100504 kill_reason Another user logged on this global unique id 100504 mac 100504 bytes_out 0 100504 bytes_in 0 100504 station_ip 5.119.211.228 100504 port 19 100504 unique_id port 100504 remote_ip 10.8.0.38 100506 username askari 100506 mac 100506 bytes_out 0 100506 bytes_in 0 100461 kill_reason Another user logged on this global unique id 100461 mac 100461 bytes_out 0 100461 bytes_in 0 100461 station_ip 83.123.197.228 100461 port 8 100461 unique_id port 100463 username alihosseini 100463 kill_reason Maximum check online fails reached 100463 mac 100463 bytes_out 0 100463 bytes_in 0 100463 station_ip 5.119.31.212 100463 port 10 100463 unique_id port 100464 username mahdiyehalizadeh 100464 mac 100464 bytes_out 2054761 100464 bytes_in 28894079 100464 station_ip 83.122.48.211 100464 port 20 100464 unique_id port 100464 remote_ip 10.8.0.42 100466 username musa 100466 mac 100466 bytes_out 0 100466 bytes_in 0 100466 station_ip 83.123.197.228 100466 port 8 100466 unique_id port 100470 username alihosseini 100470 mac 100470 bytes_out 0 100470 bytes_in 0 100470 station_ip 5.119.31.212 100470 port 27 100470 unique_id port 100474 username madadi2 100474 mac 100474 bytes_out 0 100474 bytes_in 0 100474 station_ip 5.119.184.99 100474 port 11 100474 unique_id port 100474 remote_ip 10.8.1.18 100476 username musa 100476 mac 100476 bytes_out 854412 100476 bytes_in 11090651 100476 station_ip 83.123.231.240 100476 port 8 100476 unique_id port 100476 remote_ip 10.8.1.78 100478 username kamali1 100478 kill_reason Another user logged on this global unique id 100478 mac 100478 bytes_out 0 100478 bytes_in 0 100478 station_ip 5.120.120.82 100478 port 11 100478 unique_id port 100478 remote_ip 10.8.0.110 100481 username mirzaei 100481 mac 100481 bytes_out 0 100481 bytes_in 0 100481 station_ip 5.119.166.239 100481 port 19 100481 unique_id port 100481 remote_ip 10.8.0.30 100483 username musa 100483 mac 100483 bytes_out 0 100483 bytes_in 0 100483 station_ip 37.129.192.30 100483 port 8 100483 unique_id port 100483 remote_ip 10.8.1.78 100485 username madadi2 100485 mac 100485 bytes_out 2105917 100485 bytes_in 5843876 100485 station_ip 5.120.138.77 100485 port 9 100485 unique_id port 100485 remote_ip 10.8.1.18 100486 username musa 100486 mac 100486 bytes_out 1340388 100486 bytes_in 15369634 100486 station_ip 83.122.15.134 100486 port 8 100486 unique_id port 100486 remote_ip 10.8.1.78 100492 username farhad1 100492 mac 100492 bytes_out 1873206 100492 bytes_in 5997720 100492 station_ip 5.120.41.217 100492 port 19 100492 unique_id port 100492 remote_ip 10.8.0.102 100495 username mahdixz 100495 unique_id port 100495 terminate_cause Lost-Carrier 100495 bytes_out 33754814 100495 bytes_in 971998033 100495 station_ip 5.119.199.184 100495 port 15729407 100495 nas_port_type Virtual 100495 remote_ip 5.5.5.253 100502 username aminvpn 100502 mac 100502 bytes_out 0 100502 bytes_in 0 100502 station_ip 5.119.231.203 100502 port 9 100502 unique_id port 100502 remote_ip 10.8.1.26 100505 username askari 100505 mac 100505 bytes_out 0 100505 bytes_in 0 100505 station_ip 5.119.211.228 100505 port 19 100505 unique_id port 100509 username mehdizare 100509 mac 100509 bytes_out 1318254 100509 bytes_in 1463723 100509 station_ip 5.119.179.214 100509 port 8 100509 unique_id port 100509 remote_ip 10.8.1.22 100511 username askari 100511 mac 100511 bytes_out 0 100511 bytes_in 0 100511 station_ip 5.119.25.180 100511 port 19 100511 unique_id port 100512 username mehdizare 100512 mac 100512 bytes_out 217991 100512 bytes_in 367683 100512 station_ip 5.119.179.214 100512 port 8 100512 unique_id port 100512 remote_ip 10.8.1.22 100520 username morteza 100520 mac 100520 bytes_out 0 100520 bytes_in 0 100520 station_ip 83.122.239.13 100506 station_ip 5.119.211.228 100506 port 20 100506 unique_id port 100506 remote_ip 10.8.0.38 100508 username askari 100508 kill_reason Another user logged on this global unique id 100508 mac 100508 bytes_out 0 100508 bytes_in 0 100508 station_ip 5.119.25.180 100508 port 19 100508 unique_id port 100508 remote_ip 10.8.0.38 100510 username askari 100510 kill_reason Another user logged on this global unique id 100510 mac 100510 bytes_out 0 100510 bytes_in 0 100510 station_ip 5.119.25.180 100510 port 19 100510 unique_id port 100513 username mirzaei 100513 kill_reason Another user logged on this global unique id 100513 mac 100513 bytes_out 0 100513 bytes_in 0 100513 station_ip 5.119.166.239 100513 port 11 100513 unique_id port 100514 username mirzaei 100514 mac 100514 bytes_out 0 100514 bytes_in 0 100514 station_ip 5.119.166.239 100514 port 11 100514 unique_id port 100517 username morteza 100517 kill_reason Another user logged on this global unique id 100517 mac 100517 bytes_out 0 100517 bytes_in 0 100517 station_ip 83.122.239.13 100517 port 19 100517 unique_id port 100517 remote_ip 10.8.0.90 100518 username mehdizare 100518 mac 100518 bytes_out 0 100518 bytes_in 0 100518 station_ip 5.119.179.214 100518 port 9 100518 unique_id port 100518 remote_ip 10.8.1.22 100519 username mehdizare 100519 mac 100519 bytes_out 0 100519 bytes_in 0 100519 station_ip 5.119.179.214 100519 port 29 100519 unique_id port 100519 remote_ip 10.8.0.22 100525 username askari 100525 mac 100525 bytes_out 0 100525 bytes_in 0 100525 station_ip 5.119.85.82 100525 port 29 100525 unique_id port 100525 remote_ip 10.8.0.38 100527 username askari 100527 mac 100527 bytes_out 0 100527 bytes_in 0 100527 station_ip 5.119.85.82 100527 port 29 100527 unique_id port 100527 remote_ip 10.8.0.38 100529 username rezasekonji 100529 unique_id port 100529 terminate_cause User-Request 100529 bytes_out 553 100529 bytes_in 1312 100529 station_ip 83.123.99.165 100529 port 15729412 100529 nas_port_type Virtual 100529 remote_ip 5.5.5.250 100534 username aminvpn 100534 kill_reason Another user logged on this global unique id 100534 mac 100534 bytes_out 0 100534 bytes_in 0 100534 station_ip 5.233.66.200 100534 port 8 100534 unique_id port 100534 remote_ip 10.8.1.26 100542 username alirr 100542 unique_id port 100542 terminate_cause Lost-Carrier 100542 bytes_out 151527 100542 bytes_in 963137 100542 station_ip 5.119.157.102 100542 port 15729414 100542 nas_port_type Virtual 100542 remote_ip 5.5.5.252 100543 username amir 100543 mac 100543 bytes_out 0 100543 bytes_in 0 100543 station_ip 46.225.209.168 100543 port 11 100543 unique_id port 100543 remote_ip 10.8.0.54 100544 username amir 100544 mac 100544 bytes_out 4265 100544 bytes_in 6774 100544 station_ip 46.225.209.168 100544 port 11 100544 unique_id port 100544 remote_ip 10.8.0.54 100546 username forozande 100546 mac 100546 bytes_out 0 100546 bytes_in 0 100546 station_ip 83.122.115.216 100546 port 8 100546 unique_id port 100546 remote_ip 10.8.1.62 100549 username amir 100549 kill_reason Maximum check online fails reached 100549 mac 100549 bytes_out 0 100549 bytes_in 0 100549 station_ip 46.225.209.168 100549 port 8 100549 unique_id port 100557 username forozande 100557 mac 100557 bytes_out 201825 100557 bytes_in 2099122 100557 station_ip 83.122.240.190 100557 port 9 100557 unique_id port 100557 remote_ip 10.8.1.62 100565 username mirzaei 100565 mac 100565 bytes_out 0 100565 bytes_in 0 100565 station_ip 5.120.181.23 100565 port 27 100565 unique_id port 100565 remote_ip 10.8.0.30 100520 port 19 100520 unique_id port 100521 username abbasaskari 100521 mac 100521 bytes_out 0 100521 bytes_in 0 100521 station_ip 83.122.112.169 100521 port 27 100521 unique_id port 100521 remote_ip 10.8.0.94 100522 username abbasaskari 100522 mac 100522 bytes_out 0 100522 bytes_in 0 100522 station_ip 83.122.112.169 100522 port 19 100522 unique_id port 100522 remote_ip 10.8.0.94 100523 username alireza1 100523 unique_id port 100523 terminate_cause User-Request 100523 bytes_out 347912 100523 bytes_in 612409 100523 station_ip 5.119.126.56 100523 port 15729409 100523 nas_port_type Virtual 100523 remote_ip 5.5.5.255 100526 username mehdizare 100526 mac 100526 bytes_out 0 100526 bytes_in 0 100526 station_ip 5.119.179.214 100526 port 27 100526 unique_id port 100526 remote_ip 10.8.0.22 100530 username mirzaei 100530 mac 100530 bytes_out 0 100530 bytes_in 0 100530 station_ip 5.119.166.239 100530 port 11 100530 unique_id port 100532 username forozande 100532 mac 100532 bytes_out 0 100532 bytes_in 0 100532 station_ip 83.122.158.223 100532 port 27 100532 unique_id port 100532 remote_ip 10.8.0.74 100535 username alirr 100535 unique_id port 100535 terminate_cause User-Request 100535 bytes_out 640402 100535 bytes_in 21688438 100535 station_ip 5.119.12.19 100535 port 15729413 100535 nas_port_type Virtual 100535 remote_ip 5.5.5.250 100536 username mirzaei 100536 mac 100536 bytes_out 0 100536 bytes_in 0 100536 station_ip 5.119.166.239 100536 port 11 100536 unique_id port 100536 remote_ip 10.8.0.30 100538 username farhad1 100538 mac 100538 bytes_out 0 100538 bytes_in 0 100538 station_ip 5.119.95.136 100538 port 27 100538 unique_id port 100538 remote_ip 10.8.0.102 100539 username alireza1 100539 unique_id port 100539 terminate_cause User-Request 100539 bytes_out 807624 100539 bytes_in 14778840 100539 station_ip 5.119.126.56 100539 port 15729410 100539 nas_port_type Virtual 100539 remote_ip 5.5.5.255 100540 username forozande 100540 mac 100540 bytes_out 0 100540 bytes_in 0 100540 station_ip 83.122.158.223 100540 port 9 100540 unique_id port 100540 remote_ip 10.8.1.62 100547 username amir 100547 mac 100547 bytes_out 0 100547 bytes_in 0 100547 station_ip 46.225.209.168 100547 port 8 100547 unique_id port 100547 remote_ip 10.8.1.34 100548 username alirr 100548 unique_id port 100548 terminate_cause Lost-Carrier 100548 bytes_out 94022 100548 bytes_in 388955 100548 station_ip 5.120.50.224 100548 port 15729416 100548 nas_port_type Virtual 100548 remote_ip 5.5.5.254 100550 username amir 100550 mac 100550 bytes_out 22018 100550 bytes_in 30692 100550 station_ip 46.225.209.168 100550 port 11 100550 unique_id port 100550 remote_ip 10.8.0.54 100553 username madadi2 100553 mac 100553 bytes_out 150515 100553 bytes_in 404201 100553 station_ip 5.119.170.179 100553 port 19 100553 unique_id port 100553 remote_ip 10.8.0.26 100554 username mirzaei 100554 mac 100554 bytes_out 1397113 100554 bytes_in 14541689 100554 station_ip 5.119.27.213 100554 port 27 100554 unique_id port 100554 remote_ip 10.8.0.30 100555 username forozande 100555 mac 100555 bytes_out 2656313 100555 bytes_in 34524076 100555 station_ip 37.129.202.215 100555 port 9 100555 unique_id port 100555 remote_ip 10.8.1.62 100559 username mirzaei 100559 mac 100559 bytes_out 58718 100559 bytes_in 320971 100559 station_ip 5.119.27.213 100559 port 19 100559 unique_id port 100559 remote_ip 10.8.0.30 100561 username madadi2 100561 mac 100561 bytes_out 0 100561 bytes_in 0 100561 station_ip 5.120.87.197 100528 port 27 100528 unique_id port 100528 remote_ip 10.8.0.74 100531 username aminvpn 100531 mac 100531 bytes_out 0 100531 bytes_in 0 100531 station_ip 83.122.226.0 100531 port 20 100531 unique_id port 100531 remote_ip 10.8.0.6 100533 username alirr 100533 unique_id port 100533 terminate_cause Lost-Carrier 100533 bytes_out 58646224 100533 bytes_in 10201478 100533 station_ip 5.120.152.169 100533 port 15729411 100533 nas_port_type Virtual 100533 remote_ip 5.5.5.252 100537 username aminvpn 100537 mac 100537 bytes_out 0 100537 bytes_in 0 100537 station_ip 5.233.66.200 100537 port 8 100537 unique_id port 100541 username amir 100541 mac 100541 bytes_out 0 100541 bytes_in 0 100541 station_ip 46.225.209.168 100541 port 11 100541 unique_id port 100541 remote_ip 10.8.0.54 100545 username amir 100545 mac 100545 bytes_out 34530 100545 bytes_in 142536 100545 station_ip 46.225.209.168 100545 port 9 100545 unique_id port 100545 remote_ip 10.8.1.34 100551 username forozande 100551 mac 100551 bytes_out 0 100551 bytes_in 0 100551 station_ip 37.129.202.215 100551 port 9 100551 unique_id port 100551 remote_ip 10.8.1.62 100552 username madadi2 100552 mac 100552 bytes_out 0 100552 bytes_in 0 100552 station_ip 5.119.122.136 100552 port 19 100552 unique_id port 100552 remote_ip 10.8.0.26 100556 username mirzaei 100556 mac 100556 bytes_out 0 100556 bytes_in 0 100556 station_ip 5.119.27.213 100556 port 19 100556 unique_id port 100556 remote_ip 10.8.0.30 100558 username alihosseini 100558 mac 100558 bytes_out 0 100558 bytes_in 0 100558 station_ip 5.119.167.136 100558 port 27 100558 unique_id port 100558 remote_ip 10.8.0.14 100560 username alireza1 100560 unique_id port 100560 terminate_cause User-Request 100560 bytes_out 142189 100560 bytes_in 285914 100560 station_ip 5.119.126.56 100560 port 15729418 100560 nas_port_type Virtual 100560 remote_ip 5.5.5.253 100563 username amir 100563 kill_reason Another user logged on this global unique id 100563 mac 100563 bytes_out 0 100563 bytes_in 0 100563 station_ip 46.225.209.168 100563 port 11 100563 unique_id port 100563 remote_ip 10.8.0.54 100564 username alirr 100564 unique_id port 100564 terminate_cause User-Request 100564 bytes_out 4345366 100564 bytes_in 51287261 100564 station_ip 31.56.221.147 100564 port 15729417 100564 nas_port_type Virtual 100564 remote_ip 5.5.5.255 100567 username mirzaei 100567 mac 100567 bytes_out 14064 100567 bytes_in 24133 100567 station_ip 5.120.181.23 100567 port 29 100567 unique_id port 100567 remote_ip 10.8.0.30 100569 username amir 100569 mac 100569 bytes_out 0 100569 bytes_in 0 100569 station_ip 46.225.209.168 100569 port 11 100569 unique_id port 100570 username amir 100570 mac 100570 bytes_out 0 100570 bytes_in 0 100570 station_ip 46.225.209.168 100570 port 27 100570 unique_id port 100570 remote_ip 10.8.0.54 100571 username farhad1 100571 mac 100571 bytes_out 0 100571 bytes_in 0 100571 station_ip 5.120.144.111 100571 port 9 100571 unique_id port 100571 remote_ip 10.8.1.74 100572 username alihosseini 100572 mac 100572 bytes_out 618812 100572 bytes_in 6777842 100572 station_ip 5.120.45.6 100572 port 27 100572 unique_id port 100572 remote_ip 10.8.0.14 100573 username farhad1 100573 mac 100573 bytes_out 578905 100573 bytes_in 3558376 100573 station_ip 5.120.36.115 100573 port 29 100573 unique_id port 100573 remote_ip 10.8.0.102 100575 username mahdiyehalizadeh 100575 mac 100575 bytes_out 0 100575 bytes_in 0 100575 station_ip 37.129.223.134 100561 port 29 100561 unique_id port 100561 remote_ip 10.8.0.26 100562 username madadi2 100562 mac 100562 bytes_out 0 100562 bytes_in 0 100562 station_ip 5.120.83.238 100562 port 29 100562 unique_id port 100562 remote_ip 10.8.0.26 100568 username forozande 100568 mac 100568 bytes_out 0 100568 bytes_in 0 100568 station_ip 83.122.233.48 100568 port 9 100568 unique_id port 100568 remote_ip 10.8.1.62 100574 username askari 100574 mac 100574 bytes_out 198324 100574 bytes_in 817044 100574 station_ip 5.120.3.176 100574 port 11 100574 unique_id port 100574 remote_ip 10.8.0.38 100584 username amir 100584 mac 100584 bytes_out 0 100584 bytes_in 0 100584 station_ip 46.225.209.168 100584 port 27 100584 unique_id port 100584 remote_ip 10.8.0.54 100593 username alihosseini 100593 mac 100593 bytes_out 0 100593 bytes_in 0 100593 station_ip 5.119.86.154 100593 port 11 100593 unique_id port 100593 remote_ip 10.8.0.14 100598 username morteza 100598 kill_reason Another user logged on this global unique id 100598 mac 100598 bytes_out 0 100598 bytes_in 0 100598 station_ip 83.122.148.133 100598 port 19 100598 unique_id port 100600 username amir 100600 mac 100600 bytes_out 0 100600 bytes_in 0 100600 station_ip 46.225.209.168 100600 port 11 100600 unique_id port 100600 remote_ip 10.8.0.54 100602 username ahmadipour 100602 unique_id port 100602 terminate_cause Lost-Carrier 100602 bytes_out 530467 100602 bytes_in 11856439 100602 station_ip 113.203.63.135 100602 port 15729429 100602 nas_port_type Virtual 100602 remote_ip 5.5.5.245 100608 username forozande 100608 mac 100608 bytes_out 408208 100608 bytes_in 3927141 100608 station_ip 37.129.77.165 100608 port 11 100608 unique_id port 100608 remote_ip 10.8.1.62 100610 username amir 100610 mac 100610 bytes_out 0 100610 bytes_in 0 100610 station_ip 46.225.209.168 100610 port 27 100610 unique_id port 100610 remote_ip 10.8.0.54 100613 username madadi2 100613 mac 100613 bytes_out 0 100613 bytes_in 0 100613 station_ip 5.119.66.179 100613 port 29 100613 unique_id port 100613 remote_ip 10.8.0.26 100614 username mirzaei 100614 mac 100614 bytes_out 0 100614 bytes_in 0 100614 station_ip 5.120.181.23 100614 port 27 100614 unique_id port 100614 remote_ip 10.8.0.30 100629 username madadi2 100629 mac 100629 bytes_out 0 100629 bytes_in 0 100629 station_ip 5.119.69.207 100629 port 30 100629 unique_id port 100629 remote_ip 10.8.0.26 100630 username madadi2 100630 mac 100630 bytes_out 0 100630 bytes_in 0 100630 station_ip 5.119.194.108 100630 port 29 100630 unique_id port 100630 remote_ip 10.8.0.26 100636 username alihosseini 100636 mac 100636 bytes_out 0 100636 bytes_in 0 100636 station_ip 5.119.86.154 100636 port 11 100636 unique_id port 100636 remote_ip 10.8.1.6 100639 username alihosseini 100639 mac 100639 bytes_out 0 100639 bytes_in 0 100639 station_ip 5.120.68.143 100639 port 11 100639 unique_id port 100639 remote_ip 10.8.1.6 100641 username amir 100641 mac 100641 bytes_out 0 100641 bytes_in 0 100641 station_ip 46.225.209.168 100641 port 30 100641 unique_id port 100641 remote_ip 10.8.0.54 100642 username mohammadmahdi 100642 mac 100642 bytes_out 0 100642 bytes_in 0 100642 station_ip 5.120.88.205 100642 port 31 100642 unique_id port 100642 remote_ip 10.8.0.34 100643 username alihosseini 100643 mac 100643 bytes_out 0 100643 bytes_in 0 100643 station_ip 5.120.68.143 100643 port 30 100643 unique_id port 100643 remote_ip 10.8.0.14 100566 username forozande 100566 mac 100566 bytes_out 1994625 100566 bytes_in 14156960 100566 station_ip 83.123.70.252 100566 port 9 100566 unique_id port 100566 remote_ip 10.8.1.62 100576 username forozande 100576 mac 100576 bytes_out 0 100576 bytes_in 0 100576 station_ip 83.123.61.46 100576 port 9 100576 unique_id port 100576 remote_ip 10.8.1.62 100578 username forozande 100578 mac 100578 bytes_out 0 100578 bytes_in 0 100578 station_ip 83.122.120.44 100578 port 9 100578 unique_id port 100578 remote_ip 10.8.1.62 100579 username aminvpn 100579 unique_id port 100579 terminate_cause User-Request 100579 bytes_out 1000757 100579 bytes_in 23593178 100579 station_ip 31.57.142.32 100579 port 15729426 100579 nas_port_type Virtual 100579 remote_ip 5.5.5.249 100580 username amir 100580 mac 100580 bytes_out 9562873 100580 bytes_in 46656234 100580 station_ip 46.225.209.168 100580 port 27 100580 unique_id port 100580 remote_ip 10.8.0.54 100581 username amir 100581 mac 100581 bytes_out 0 100581 bytes_in 0 100581 station_ip 46.225.209.168 100581 port 27 100581 unique_id port 100581 remote_ip 10.8.0.54 100582 username madadi2 100582 mac 100582 bytes_out 308743 100582 bytes_in 982328 100582 station_ip 5.119.239.162 100582 port 30 100582 unique_id port 100582 remote_ip 10.8.0.26 100585 username morteza 100585 kill_reason Another user logged on this global unique id 100585 mac 100585 bytes_out 0 100585 bytes_in 0 100585 station_ip 83.122.148.133 100585 port 19 100585 unique_id port 100585 remote_ip 10.8.0.90 100590 username amir 100590 mac 100590 bytes_out 0 100590 bytes_in 0 100590 station_ip 46.225.209.168 100590 port 11 100590 unique_id port 100590 remote_ip 10.8.0.54 100592 username abbasaskari 100592 mac 100592 bytes_out 0 100592 bytes_in 0 100592 station_ip 37.129.96.136 100592 port 27 100592 unique_id port 100592 remote_ip 10.8.0.94 100594 username morteza 100594 kill_reason Another user logged on this global unique id 100594 mac 100594 bytes_out 0 100594 bytes_in 0 100594 station_ip 83.122.148.133 100594 port 19 100594 unique_id port 100595 username forozande 100595 kill_reason Another user logged on this global unique id 100595 mac 100595 bytes_out 0 100595 bytes_in 0 100595 station_ip 113.203.31.44 100595 port 11 100595 unique_id port 100595 remote_ip 10.8.1.62 100597 username alirr 100597 unique_id port 100597 terminate_cause User-Request 100597 bytes_out 2014864 100597 bytes_in 49367745 100597 station_ip 31.56.221.147 100597 port 15729420 100597 nas_port_type Virtual 100597 remote_ip 5.5.5.255 100599 username sobhan 100599 unique_id port 100599 terminate_cause Lost-Carrier 100599 bytes_out 703969 100599 bytes_in 14226479 100599 station_ip 5.120.191.173 100599 port 15729427 100599 nas_port_type Virtual 100599 remote_ip 5.5.5.247 100601 username alireza1 100601 unique_id port 100601 terminate_cause Lost-Carrier 100601 bytes_out 269093 100601 bytes_in 1667043 100601 station_ip 5.119.126.56 100601 port 15729419 100601 nas_port_type Virtual 100601 remote_ip 5.5.5.254 100603 username alihosseini 100603 mac 100603 bytes_out 0 100603 bytes_in 0 100603 station_ip 5.119.86.154 100603 port 11 100603 unique_id port 100603 remote_ip 10.8.0.14 100605 username morteza 100605 kill_reason Another user logged on this global unique id 100605 mac 100605 bytes_out 0 100605 bytes_in 0 100605 station_ip 83.122.148.133 100605 port 19 100605 unique_id port 100606 username farhad1 100606 kill_reason Another user logged on this global unique id 100606 mac 100606 bytes_out 0 100606 bytes_in 0 100606 station_ip 5.119.129.59 100606 port 11 100575 port 30 100575 unique_id port 100575 remote_ip 10.8.0.42 100577 username aminvpn 100577 unique_id port 100577 terminate_cause User-Request 100577 bytes_out 4168 100577 bytes_in 5133 100577 station_ip 5.233.66.200 100577 port 15729423 100577 nas_port_type Virtual 100577 remote_ip 5.5.5.251 100583 username amir 100583 mac 100583 bytes_out 63628 100583 bytes_in 230178 100583 station_ip 46.225.209.168 100583 port 27 100583 unique_id port 100583 remote_ip 10.8.0.54 100586 username amir 100586 mac 100586 bytes_out 0 100586 bytes_in 0 100586 station_ip 46.225.209.168 100586 port 27 100586 unique_id port 100586 remote_ip 10.8.0.54 100587 username alihosseini 100587 mac 100587 bytes_out 871676 100587 bytes_in 6573539 100587 station_ip 5.119.86.154 100587 port 11 100587 unique_id port 100587 remote_ip 10.8.0.14 100588 username alihosseini 100588 mac 100588 bytes_out 0 100588 bytes_in 0 100588 station_ip 5.119.86.154 100588 port 11 100588 unique_id port 100588 remote_ip 10.8.0.14 100589 username amir 100589 mac 100589 bytes_out 0 100589 bytes_in 0 100589 station_ip 46.225.209.168 100589 port 11 100589 unique_id port 100589 remote_ip 10.8.0.54 100591 username amir 100591 mac 100591 bytes_out 17678 100591 bytes_in 37529 100591 station_ip 46.225.209.168 100591 port 11 100591 unique_id port 100591 remote_ip 10.8.0.54 100596 username alihosseini 100596 mac 100596 bytes_out 0 100596 bytes_in 0 100596 station_ip 5.119.86.154 100596 port 11 100596 unique_id port 100596 remote_ip 10.8.0.14 100604 username farhad1 100604 mac 100604 bytes_out 0 100604 bytes_in 0 100604 station_ip 5.120.64.111 100604 port 29 100604 unique_id port 100604 remote_ip 10.8.0.102 100609 username amir 100609 mac 100609 bytes_out 0 100609 bytes_in 0 100609 station_ip 46.225.209.168 100609 port 27 100609 unique_id port 100609 remote_ip 10.8.0.54 100611 username amir 100611 mac 100611 bytes_out 0 100611 bytes_in 0 100611 station_ip 46.225.209.168 100611 port 27 100611 unique_id port 100611 remote_ip 10.8.0.54 100615 username morteza 100615 kill_reason Another user logged on this global unique id 100615 mac 100615 bytes_out 0 100615 bytes_in 0 100615 station_ip 83.122.148.133 100615 port 19 100615 unique_id port 100617 username morteza 100617 kill_reason Another user logged on this global unique id 100617 mac 100617 bytes_out 0 100617 bytes_in 0 100617 station_ip 83.122.148.133 100617 port 19 100617 unique_id port 100618 username madadi2 100618 mac 100618 bytes_out 0 100618 bytes_in 0 100618 station_ip 5.120.159.54 100618 port 29 100618 unique_id port 100618 remote_ip 10.8.0.26 100619 username amir 100619 mac 100619 bytes_out 0 100619 bytes_in 0 100619 station_ip 46.225.209.168 100619 port 29 100619 unique_id port 100619 remote_ip 10.8.0.54 100620 username alihosseini 100620 kill_reason Another user logged on this global unique id 100620 mac 100620 bytes_out 0 100620 bytes_in 0 100620 station_ip 5.119.86.154 100620 port 11 100620 unique_id port 100620 remote_ip 10.8.1.6 100621 username farhad1 100621 mac 100621 bytes_out 0 100621 bytes_in 0 100621 station_ip 5.119.129.59 100621 port 11 100621 unique_id port 100623 username morteza 100623 kill_reason Another user logged on this global unique id 100623 mac 100623 bytes_out 0 100623 bytes_in 0 100623 station_ip 83.122.148.133 100623 port 19 100623 unique_id port 100625 username alireza1 100625 unique_id port 100625 terminate_cause User-Request 100625 bytes_out 241011 100625 bytes_in 499799 100625 station_ip 5.119.126.56 100606 unique_id port 100606 remote_ip 10.8.0.102 100607 username alihosseini 100607 mac 100607 bytes_out 0 100607 bytes_in 0 100607 station_ip 5.119.86.154 100607 port 12 100607 unique_id port 100607 remote_ip 10.8.1.6 100612 username amir 100612 mac 100612 bytes_out 0 100612 bytes_in 0 100612 station_ip 46.225.209.168 100612 port 30 100612 unique_id port 100612 remote_ip 10.8.0.54 100616 username aminvpn 100616 kill_reason Another user logged on this global unique id 100616 mac 100616 bytes_out 0 100616 bytes_in 0 100616 station_ip 83.122.226.0 100616 port 20 100616 unique_id port 100616 remote_ip 10.8.0.6 100622 username aminvpn 100622 kill_reason Another user logged on this global unique id 100622 mac 100622 bytes_out 0 100622 bytes_in 0 100622 station_ip 83.122.226.0 100622 port 20 100622 unique_id port 100624 username amir 100624 mac 100624 bytes_out 0 100624 bytes_in 0 100624 station_ip 46.225.209.168 100624 port 29 100624 unique_id port 100624 remote_ip 10.8.0.54 100626 username alihosseini 100626 mac 100626 bytes_out 7066961 100626 bytes_in 56690136 100626 station_ip 5.119.86.154 100626 port 11 100626 unique_id port 100626 remote_ip 10.8.1.6 100628 username amir 100628 mac 100628 bytes_out 0 100628 bytes_in 0 100628 station_ip 46.225.209.168 100628 port 29 100628 unique_id port 100628 remote_ip 10.8.0.54 100631 username forozande 100631 mac 100631 bytes_out 531122 100631 bytes_in 2868747 100631 station_ip 113.203.26.116 100631 port 12 100631 unique_id port 100631 remote_ip 10.8.1.62 100633 username alihosseini 100633 mac 100633 bytes_out 0 100633 bytes_in 0 100633 station_ip 5.119.86.154 100633 port 11 100633 unique_id port 100633 remote_ip 10.8.1.6 100635 username alireza1 100635 unique_id port 100635 terminate_cause Lost-Carrier 100635 bytes_out 1042931 100635 bytes_in 2714815 100635 station_ip 5.119.126.56 100635 port 15729431 100635 nas_port_type Virtual 100635 remote_ip 5.5.5.255 100638 username amir 100638 mac 100638 bytes_out 0 100638 bytes_in 0 100638 station_ip 46.225.209.168 100638 port 30 100638 unique_id port 100638 remote_ip 10.8.0.54 100640 username alihosseini 100640 mac 100640 bytes_out 0 100640 bytes_in 0 100640 station_ip 5.120.68.143 100640 port 11 100640 unique_id port 100640 remote_ip 10.8.1.6 100645 username forozande 100645 mac 100645 bytes_out 0 100645 bytes_in 0 100645 station_ip 83.123.91.114 100645 port 29 100645 unique_id port 100645 remote_ip 10.8.0.74 100649 username ahmadipour 100649 unique_id port 100649 terminate_cause Lost-Carrier 100649 bytes_out 2499010 100649 bytes_in 55699850 100649 station_ip 113.203.22.255 100649 port 15729436 100649 nas_port_type Virtual 100649 remote_ip 5.5.5.252 100653 username alihosseini 100653 mac 100653 bytes_out 2712554 100653 bytes_in 30180795 100653 station_ip 5.119.214.66 100653 port 29 100653 unique_id port 100653 remote_ip 10.8.0.14 100655 username mahdixz 100655 unique_id port 100655 terminate_cause User-Request 100655 bytes_out 1903407 100655 bytes_in 9151286 100655 station_ip 151.235.89.48 100655 port 15729438 100655 nas_port_type Virtual 100655 remote_ip 5.5.5.253 100659 username amir 100659 mac 100659 bytes_out 0 100659 bytes_in 0 100659 station_ip 46.225.209.168 100659 port 27 100659 unique_id port 100659 remote_ip 10.8.0.54 100660 username aminvpn 100660 unique_id port 100660 terminate_cause Lost-Carrier 100660 bytes_out 13050129 100660 bytes_in 398785363 100660 station_ip 5.233.66.200 100660 port 15729435 100660 nas_port_type Virtual 100660 remote_ip 5.5.5.254 100663 username aminvpn 100625 port 15729430 100625 nas_port_type Virtual 100625 remote_ip 5.5.5.255 100627 username farhad1 100627 kill_reason Another user logged on this global unique id 100627 mac 100627 bytes_out 0 100627 bytes_in 0 100627 station_ip 5.119.129.59 100627 port 11 100627 unique_id port 100627 remote_ip 10.8.0.102 100632 username alihosseini 100632 mac 100632 bytes_out 0 100632 bytes_in 0 100632 station_ip 5.119.86.154 100632 port 11 100632 unique_id port 100634 username alirr 100634 unique_id port 100634 terminate_cause Lost-Carrier 100634 bytes_out 637921 100634 bytes_in 8856880 100634 station_ip 5.120.182.78 100634 port 15729432 100634 nas_port_type Virtual 100634 remote_ip 5.5.5.248 100637 username alihosseini 100637 mac 100637 bytes_out 0 100637 bytes_in 0 100637 station_ip 5.120.68.143 100637 port 12 100637 unique_id port 100637 remote_ip 10.8.1.6 100646 username amir 100646 mac 100646 bytes_out 0 100646 bytes_in 0 100646 station_ip 46.225.209.168 100646 port 29 100646 unique_id port 100646 remote_ip 10.8.0.54 100651 username mahdiyehalizadeh 100651 mac 100651 bytes_out 1184186 100651 bytes_in 18275310 100651 station_ip 83.123.172.230 100651 port 31 100651 unique_id port 100651 remote_ip 10.8.0.42 100652 username amir 100652 mac 100652 bytes_out 0 100652 bytes_in 0 100652 station_ip 46.225.209.168 100652 port 27 100652 unique_id port 100652 remote_ip 10.8.0.54 100654 username amir 100654 mac 100654 bytes_out 0 100654 bytes_in 0 100654 station_ip 46.225.209.168 100654 port 27 100654 unique_id port 100654 remote_ip 10.8.0.54 100656 username farhad1 100656 kill_reason Another user logged on this global unique id 100656 mac 100656 bytes_out 0 100656 bytes_in 0 100656 station_ip 5.119.129.59 100656 port 11 100656 unique_id port 100657 username aminvpn 100657 unique_id port 100657 terminate_cause Lost-Carrier 100657 bytes_out 14938744 100657 bytes_in 559800832 100657 station_ip 31.57.142.32 100657 port 15729428 100657 nas_port_type Virtual 100657 remote_ip 5.5.5.250 100665 username amir 100665 mac 100665 bytes_out 0 100665 bytes_in 0 100665 station_ip 46.225.209.168 100665 port 27 100665 unique_id port 100665 remote_ip 10.8.0.54 100668 username alirr 100668 unique_id port 100668 terminate_cause User-Request 100668 bytes_out 506 100668 bytes_in 264 100668 station_ip 5.119.170.23 100668 port 15729441 100668 nas_port_type Virtual 100668 remote_ip 5.5.5.254 100675 username farhad1 100675 mac 100675 bytes_out 0 100675 bytes_in 0 100675 station_ip 5.119.242.101 100675 port 11 100675 unique_id port 100675 remote_ip 10.8.0.102 100677 username alihosseini 100677 mac 100677 bytes_out 0 100677 bytes_in 0 100677 station_ip 5.119.167.16 100677 port 29 100677 unique_id port 100677 remote_ip 10.8.0.14 100678 username alihosseini 100678 mac 100678 bytes_out 0 100678 bytes_in 0 100678 station_ip 5.120.2.65 100678 port 27 100678 unique_id port 100678 remote_ip 10.8.0.14 100679 username alirr 100679 unique_id port 100679 terminate_cause User-Request 100679 bytes_out 3748535 100679 bytes_in 1871861 100679 station_ip 5.119.170.23 100679 port 15729443 100679 nas_port_type Virtual 100679 remote_ip 5.5.5.255 100686 username alirr 100686 unique_id port 100686 terminate_cause Lost-Carrier 100686 bytes_out 43273 100686 bytes_in 189060 100686 station_ip 5.119.170.23 100686 port 15729445 100686 nas_port_type Virtual 100686 remote_ip 5.5.5.255 100692 username alihosseini 100692 mac 100692 bytes_out 0 100692 bytes_in 0 100692 station_ip 5.120.2.65 100692 port 12 100692 unique_id port 100692 remote_ip 10.8.1.6 100644 username aminvpn 100644 unique_id port 100644 terminate_cause Lost-Carrier 100644 bytes_out 5467564 100644 bytes_in 91345832 100644 station_ip 5.233.66.200 100644 port 15729425 100644 nas_port_type Virtual 100644 remote_ip 5.5.5.252 100647 username alihosseini 100647 mac 100647 bytes_out 959703 100647 bytes_in 9732993 100647 station_ip 5.120.68.143 100647 port 30 100647 unique_id port 100647 remote_ip 10.8.0.14 100648 username mirzaei 100648 mac 100648 bytes_out 0 100648 bytes_in 0 100648 station_ip 5.120.181.23 100648 port 27 100648 unique_id port 100648 remote_ip 10.8.0.30 100650 username amir 100650 mac 100650 bytes_out 0 100650 bytes_in 0 100650 station_ip 46.225.209.168 100650 port 27 100650 unique_id port 100650 remote_ip 10.8.0.54 100658 username mirzaei 100658 mac 100658 bytes_out 497195 100658 bytes_in 5582248 100658 station_ip 5.120.181.23 100658 port 30 100658 unique_id port 100658 remote_ip 10.8.0.30 100661 username alihosseini 100661 kill_reason Another user logged on this global unique id 100661 mac 100661 bytes_out 0 100661 bytes_in 0 100661 station_ip 5.119.167.16 100661 port 31 100661 unique_id port 100661 remote_ip 10.8.0.14 100662 username mirzaei 100662 mac 100662 bytes_out 20647 100662 bytes_in 38320 100662 station_ip 5.124.157.14 100662 port 27 100662 unique_id port 100662 remote_ip 10.8.0.30 100664 username farhad1 100664 kill_reason Another user logged on this global unique id 100664 mac 100664 bytes_out 0 100664 bytes_in 0 100664 station_ip 5.119.129.59 100664 port 11 100664 unique_id port 100666 username forozande 100666 mac 100666 bytes_out 0 100666 bytes_in 0 100666 station_ip 83.123.91.114 100666 port 29 100666 unique_id port 100666 remote_ip 10.8.0.74 100667 username madadi2 100667 mac 100667 bytes_out 0 100667 bytes_in 0 100667 station_ip 5.119.17.38 100667 port 27 100667 unique_id port 100667 remote_ip 10.8.0.26 100669 username alihosseini 100669 kill_reason Another user logged on this global unique id 100669 mac 100669 bytes_out 0 100669 bytes_in 0 100669 station_ip 5.119.167.16 100669 port 31 100669 unique_id port 100671 username amir 100671 mac 100671 bytes_out 0 100671 bytes_in 0 100671 station_ip 46.225.209.168 100671 port 29 100671 unique_id port 100671 remote_ip 10.8.0.54 100672 username amir 100672 mac 100672 bytes_out 0 100672 bytes_in 0 100672 station_ip 46.225.209.168 100672 port 29 100672 unique_id port 100672 remote_ip 10.8.0.54 100673 username alihosseini 100673 mac 100673 bytes_out 0 100673 bytes_in 0 100673 station_ip 5.119.167.16 100673 port 12 100673 unique_id port 100673 remote_ip 10.8.1.6 100674 username mirzaei 100674 mac 100674 bytes_out 0 100674 bytes_in 0 100674 station_ip 5.124.157.14 100674 port 11 100674 unique_id port 100674 remote_ip 10.8.1.70 100681 username mirzaei 100681 mac 100681 bytes_out 1403516 100681 bytes_in 17470969 100681 station_ip 5.124.157.14 100681 port 11 100681 unique_id port 100681 remote_ip 10.8.1.70 100684 username amir 100684 mac 100684 bytes_out 0 100684 bytes_in 0 100684 station_ip 46.225.209.168 100684 port 29 100684 unique_id port 100684 remote_ip 10.8.0.54 100687 username morteza 100687 kill_reason Another user logged on this global unique id 100687 mac 100687 bytes_out 0 100687 bytes_in 0 100687 station_ip 83.122.148.133 100687 port 19 100687 unique_id port 100690 username amir 100690 mac 100690 bytes_out 0 100690 bytes_in 0 100690 station_ip 46.225.209.168 100690 port 19 100690 unique_id port 100690 remote_ip 10.8.0.54 100663 unique_id port 100663 terminate_cause Lost-Carrier 100663 bytes_out 8801 100663 bytes_in 46751 100663 station_ip 5.233.66.200 100663 port 15729440 100663 nas_port_type Virtual 100663 remote_ip 5.5.5.254 100670 username alihosseini 100670 mac 100670 bytes_out 0 100670 bytes_in 0 100670 station_ip 5.119.167.16 100670 port 31 100670 unique_id port 100676 username forozande 100676 mac 100676 bytes_out 1560467 100676 bytes_in 20978841 100676 station_ip 83.123.146.222 100676 port 27 100676 unique_id port 100676 remote_ip 10.8.0.74 100680 username aminvpn 100680 unique_id port 100680 terminate_cause User-Request 100680 bytes_out 12389368 100680 bytes_in 419384967 100680 station_ip 31.57.143.68 100680 port 15729439 100680 nas_port_type Virtual 100680 remote_ip 5.5.5.252 100682 username amir 100682 mac 100682 bytes_out 0 100682 bytes_in 0 100682 station_ip 46.225.209.168 100682 port 27 100682 unique_id port 100682 remote_ip 10.8.0.54 100683 username alihosseini 100683 mac 100683 bytes_out 0 100683 bytes_in 0 100683 station_ip 5.120.2.65 100683 port 27 100683 unique_id port 100683 remote_ip 10.8.0.14 100685 username farhad1 100685 mac 100685 bytes_out 1698679 100685 bytes_in 10812643 100685 station_ip 5.119.18.129 100685 port 11 100685 unique_id port 100685 remote_ip 10.8.0.102 100688 username aminvpn 100688 unique_id port 100688 terminate_cause Lost-Carrier 100688 bytes_out 17600419 100688 bytes_in 503730492 100688 station_ip 5.233.66.200 100688 port 15729442 100688 nas_port_type Virtual 100688 remote_ip 5.5.5.249 100689 username morteza 100689 mac 100689 bytes_out 0 100689 bytes_in 0 100689 station_ip 83.122.148.133 100689 port 19 100689 unique_id port 100691 username aminvpn 100691 unique_id port 100691 terminate_cause Lost-Carrier 100691 bytes_out 3142947 100691 bytes_in 96456138 100691 station_ip 5.233.66.200 100691 port 15729447 100691 nas_port_type Virtual 100691 remote_ip 5.5.5.255 100694 username aminvpn 100694 kill_reason Maximum check online fails reached 100694 unique_id port 100694 bytes_out 2167755 100694 bytes_in 66463095 100694 station_ip 5.233.66.200 100694 port 15729448 100694 nas_port_type Virtual 100694 remote_ip 5.5.5.255 100696 username madadi2 100696 mac 100696 bytes_out 0 100696 bytes_in 0 100696 station_ip 5.120.81.35 100696 port 11 100696 unique_id port 100696 remote_ip 10.8.0.26 100697 username hoorieh 100697 mac 100697 bytes_out 874223 100697 bytes_in 12327917 100697 station_ip 5.120.20.125 100697 port 27 100697 unique_id port 100697 remote_ip 10.8.0.10 100698 username farhad1 100698 kill_reason Another user logged on this global unique id 100698 mac 100698 bytes_out 0 100698 bytes_in 0 100698 station_ip 5.119.185.175 100698 port 29 100698 unique_id port 100698 remote_ip 10.8.0.102 100707 username sade 100707 unique_id port 100707 terminate_cause User-Request 100707 bytes_out 2807 100707 bytes_in 5088 100707 station_ip 5.119.22.237 100707 port 15729455 100707 nas_port_type Virtual 100707 remote_ip 5.5.5.244 100708 username morteza 100708 kill_reason Another user logged on this global unique id 100708 mac 100708 bytes_out 0 100708 bytes_in 0 100708 station_ip 83.122.214.225 100708 port 27 100708 unique_id port 100708 remote_ip 10.8.0.90 100712 username morteza 100712 kill_reason Another user logged on this global unique id 100712 mac 100712 bytes_out 0 100712 bytes_in 0 100712 station_ip 83.122.214.225 100712 port 27 100712 unique_id port 100719 username aminvpn 100719 unique_id port 100719 terminate_cause Lost-Carrier 100719 bytes_out 3046475 100719 bytes_in 91133063 100719 station_ip 5.233.66.200 100719 port 15729457 100693 username forozande 100693 mac 100693 bytes_out 0 100693 bytes_in 0 100693 station_ip 83.122.199.141 100693 port 27 100693 unique_id port 100693 remote_ip 10.8.0.74 100699 username amir 100699 mac 100699 bytes_out 0 100699 bytes_in 0 100699 station_ip 46.225.209.168 100699 port 11 100699 unique_id port 100699 remote_ip 10.8.0.54 100700 username alireza1 100700 unique_id port 100700 terminate_cause Lost-Carrier 100700 bytes_out 26790399 100700 bytes_in 6966650 100700 station_ip 5.119.126.56 100700 port 15729437 100700 nas_port_type Virtual 100700 remote_ip 5.5.5.248 100703 username amir 100703 kill_reason Maximum number of concurrent logins reached 100703 mac 100703 bytes_out 0 100703 bytes_in 0 100703 station_ip 46.225.209.168 100703 port 12 100703 unique_id port 100704 username amir 100704 kill_reason Maximum check online fails reached 100704 mac 100704 bytes_out 0 100704 bytes_in 0 100704 station_ip 46.225.209.168 100704 port 19 100704 unique_id port 100705 username amir 100705 kill_reason Maximum number of concurrent logins reached 100705 mac 100705 bytes_out 0 100705 bytes_in 0 100705 station_ip 46.225.209.168 100705 port 29 100705 unique_id port 100706 username amir 100706 kill_reason Maximum check online fails reached 100706 mac 100706 bytes_out 0 100706 bytes_in 0 100706 station_ip 46.225.209.168 100706 port 12 100706 unique_id port 100709 username forozande 100709 mac 100709 bytes_out 536256 100709 bytes_in 4887863 100709 station_ip 83.122.209.4 100709 port 29 100709 unique_id port 100709 remote_ip 10.8.0.74 100710 username morteza 100710 kill_reason Another user logged on this global unique id 100710 mac 100710 bytes_out 0 100710 bytes_in 0 100710 station_ip 83.122.214.225 100710 port 27 100710 unique_id port 100714 username mirzaei 100714 mac 100714 bytes_out 54027 100714 bytes_in 100385 100714 station_ip 5.124.60.142 100714 port 29 100714 unique_id port 100714 remote_ip 10.8.0.30 100715 username aminvpn 100715 unique_id port 100715 terminate_cause Lost-Carrier 100715 bytes_out 3262089 100715 bytes_in 46675060 100715 station_ip 5.120.159.27 100715 port 15729444 100715 nas_port_type Virtual 100715 remote_ip 5.5.5.246 100717 username morteza 100717 mac 100717 bytes_out 1149802 100717 bytes_in 12768892 100717 station_ip 83.122.214.225 100717 port 27 100717 unique_id port 100717 remote_ip 10.8.0.90 100722 username aminvpn 100722 unique_id port 100722 terminate_cause Lost-Carrier 100722 bytes_out 296245 100722 bytes_in 2599739 100722 station_ip 5.233.66.200 100722 port 15729458 100722 nas_port_type Virtual 100722 remote_ip 5.5.5.255 100724 username aminvpn 100724 mac 100724 bytes_out 0 100724 bytes_in 0 100724 station_ip 83.122.226.0 100724 port 20 100724 unique_id port 100729 username madadi2 100729 mac 100729 bytes_out 17999 100729 bytes_in 16691 100729 station_ip 5.119.6.60 100729 port 30 100729 unique_id port 100729 remote_ip 10.8.0.26 100736 username alirr 100736 unique_id port 100736 terminate_cause User-Request 100736 bytes_out 812882 100736 bytes_in 11511553 100736 station_ip 94.183.213.166 100736 port 15729462 100736 nas_port_type Virtual 100736 remote_ip 5.5.5.239 100740 username amir 100740 mac 100740 bytes_out 0 100740 bytes_in 0 100740 station_ip 46.225.209.168 100740 port 29 100740 unique_id port 100742 username amir 100742 mac 100742 bytes_out 0 100742 bytes_in 0 100742 station_ip 46.225.209.168 100742 port 29 100742 unique_id port 100742 remote_ip 10.8.0.54 100743 username aminvpn 100743 mac 100743 bytes_out 0 100743 bytes_in 0 100743 station_ip 83.122.226.0 100695 username amir 100695 mac 100695 bytes_out 0 100695 bytes_in 0 100695 station_ip 46.225.209.168 100695 port 19 100695 unique_id port 100695 remote_ip 10.8.0.54 100701 username alirr 100701 unique_id port 100701 terminate_cause User-Request 100701 bytes_out 2811089 100701 bytes_in 22668814 100701 station_ip 5.119.22.237 100701 port 15729446 100701 nas_port_type Virtual 100701 remote_ip 5.5.5.252 100702 username farhad1 100702 mac 100702 bytes_out 0 100702 bytes_in 0 100702 station_ip 5.119.185.175 100702 port 29 100702 unique_id port 100711 username amir 100711 mac 100711 bytes_out 0 100711 bytes_in 0 100711 station_ip 46.225.209.168 100711 port 11 100711 unique_id port 100713 username morteza 100713 mac 100713 bytes_out 0 100713 bytes_in 0 100713 station_ip 83.122.214.225 100713 port 27 100713 unique_id port 100716 username kamali1 100716 mac 100716 bytes_out 1049744 100716 bytes_in 16965732 100716 station_ip 5.119.249.246 100716 port 31 100716 unique_id port 100716 remote_ip 10.8.0.110 100718 username amir 100718 mac 100718 bytes_out 826292 100718 bytes_in 4314336 100718 station_ip 46.225.209.168 100718 port 30 100718 unique_id port 100718 remote_ip 10.8.0.54 100726 username ahmadipour 100726 unique_id port 100726 terminate_cause Lost-Carrier 100726 bytes_out 341637 100726 bytes_in 8865996 100726 station_ip 113.203.16.131 100726 port 15729461 100726 nas_port_type Virtual 100726 remote_ip 5.5.5.237 100728 username madadi2 100728 mac 100728 bytes_out 1595034 100728 bytes_in 38393700 100728 station_ip 5.120.171.49 100728 port 30 100728 unique_id port 100728 remote_ip 10.8.0.26 100731 username aminvpn 100731 unique_id port 100731 terminate_cause User-Request 100731 bytes_out 742747 100731 bytes_in 33274555 100731 station_ip 31.57.143.56 100731 port 15729463 100731 nas_port_type Virtual 100731 remote_ip 5.5.5.254 100732 username madadi2 100732 mac 100732 bytes_out 0 100732 bytes_in 0 100732 station_ip 5.119.141.85 100732 port 30 100732 unique_id port 100732 remote_ip 10.8.0.26 100738 username alirr 100738 unique_id port 100738 terminate_cause User-Request 100738 bytes_out 138066 100738 bytes_in 199119 100738 station_ip 94.183.213.166 100738 port 15729466 100738 nas_port_type Virtual 100738 remote_ip 5.5.5.255 100739 username alireza1 100739 unique_id port 100739 terminate_cause User-Request 100739 bytes_out 87442 100739 bytes_in 169615 100739 station_ip 5.119.126.56 100739 port 15729465 100739 nas_port_type Virtual 100739 remote_ip 5.5.5.254 100741 username forozande 100741 mac 100741 bytes_out 172653 100741 bytes_in 139534 100741 station_ip 37.129.29.214 100741 port 32 100741 unique_id port 100741 remote_ip 10.8.0.74 100745 username alireza1 100745 unique_id port 100745 terminate_cause Lost-Carrier 100745 bytes_out 69737 100745 bytes_in 124977 100745 station_ip 5.119.126.56 100745 port 15729467 100745 nas_port_type Virtual 100745 remote_ip 5.5.5.255 100747 username madadi2 100747 mac 100747 bytes_out 0 100747 bytes_in 0 100747 station_ip 5.119.177.115 100747 port 30 100747 unique_id port 100747 remote_ip 10.8.0.26 100748 username mohammadmahdi 100748 kill_reason Another user logged on this global unique id 100748 mac 100748 bytes_out 0 100748 bytes_in 0 100748 station_ip 5.119.222.187 100748 port 31 100748 unique_id port 100750 username forozande 100750 mac 100750 bytes_out 2598411 100750 bytes_in 39882069 100750 station_ip 113.203.14.174 100750 port 33 100750 unique_id port 100750 remote_ip 10.8.0.74 100753 username mirzaei 100753 mac 100753 bytes_out 0 100753 bytes_in 0 100719 nas_port_type Virtual 100719 remote_ip 5.5.5.255 100720 username mirzaei 100720 mac 100720 bytes_out 80028 100720 bytes_in 188438 100720 station_ip 5.124.60.142 100720 port 32 100720 unique_id port 100720 remote_ip 10.8.0.30 100721 username khalili 100721 kill_reason Another user logged on this global unique id 100721 mac 100721 bytes_out 0 100721 bytes_in 0 100721 station_ip 5.119.178.16 100721 port 9 100721 unique_id port 100721 remote_ip 10.8.1.66 100723 username khalili 100723 mac 100723 bytes_out 0 100723 bytes_in 0 100723 station_ip 5.119.178.16 100723 port 9 100723 unique_id port 100725 username aminvpn 100725 unique_id port 100725 terminate_cause Lost-Carrier 100725 bytes_out 207018 100725 bytes_in 1290377 100725 station_ip 5.233.66.200 100725 port 15729460 100725 nas_port_type Virtual 100725 remote_ip 5.5.5.242 100727 username madadi2 100727 mac 100727 bytes_out 182490 100727 bytes_in 1124459 100727 station_ip 5.119.153.168 100727 port 30 100727 unique_id port 100727 remote_ip 10.8.0.26 100730 username amir 100730 kill_reason Another user logged on this global unique id 100730 mac 100730 bytes_out 0 100730 bytes_in 0 100730 station_ip 46.225.209.168 100730 port 29 100730 unique_id port 100730 remote_ip 10.8.0.54 100733 username madadi2 100733 mac 100733 bytes_out 149405 100733 bytes_in 260911 100733 station_ip 5.119.52.177 100733 port 30 100733 unique_id port 100733 remote_ip 10.8.0.26 100734 username alireza1 100734 unique_id port 100734 terminate_cause User-Request 100734 bytes_out 31296 100734 bytes_in 88688 100734 station_ip 5.119.126.56 100734 port 15729464 100734 nas_port_type Virtual 100734 remote_ip 5.5.5.254 100735 username reza2742 100735 unique_id port 100735 terminate_cause Lost-Carrier 100735 bytes_out 9070499 100735 bytes_in 270073135 100735 station_ip 5.202.59.126 100735 port 15729459 100735 nas_port_type Virtual 100735 remote_ip 5.5.5.241 100737 username forozande 100737 mac 100737 bytes_out 0 100737 bytes_in 0 100737 station_ip 83.122.252.125 100737 port 31 100737 unique_id port 100737 remote_ip 10.8.0.74 100746 username amir 100746 mac 100746 bytes_out 0 100746 bytes_in 0 100746 station_ip 46.225.209.168 100746 port 32 100746 unique_id port 100746 remote_ip 10.8.0.54 100765 username forozande 100765 kill_reason Another user logged on this global unique id 100765 mac 100765 bytes_out 0 100765 bytes_in 0 100765 station_ip 37.129.64.110 100765 port 31 100765 unique_id port 100765 remote_ip 10.8.0.74 100767 username rezasekonji 100767 unique_id port 100767 terminate_cause User-Request 100767 bytes_out 6534 100767 bytes_in 26461 100767 station_ip 83.122.157.61 100767 port 15729469 100767 nas_port_type Virtual 100767 remote_ip 5.5.5.229 100772 username askari 100772 mac 100772 bytes_out 0 100772 bytes_in 0 100772 station_ip 5.119.104.30 100772 port 29 100772 unique_id port 100772 remote_ip 10.8.0.38 100773 username mamal 100773 unique_id port 100773 terminate_cause Lost-Carrier 100773 bytes_out 8164749 100773 bytes_in 264366841 100773 station_ip 83.123.209.230 100773 port 15729470 100773 nas_port_type Virtual 100773 remote_ip 5.5.5.231 100775 username forozande 100775 mac 100775 bytes_out 0 100775 bytes_in 0 100775 station_ip 37.129.64.110 100775 port 31 100775 unique_id port 100776 username askari 100776 mac 100776 bytes_out 29904 100776 bytes_in 35617 100776 station_ip 5.119.104.30 100776 port 29 100776 unique_id port 100776 remote_ip 10.8.0.38 100781 username aminvpn 100781 mac 100781 bytes_out 0 100781 bytes_in 0 100781 station_ip 83.122.226.0 100781 port 13 100781 unique_id port 100743 port 20 100743 unique_id port 100743 remote_ip 10.8.0.6 100744 username mohammadmahdi 100744 kill_reason Another user logged on this global unique id 100744 mac 100744 bytes_out 0 100744 bytes_in 0 100744 station_ip 5.119.222.187 100744 port 31 100744 unique_id port 100744 remote_ip 10.8.0.34 100749 username amir 100749 mac 100749 bytes_out 0 100749 bytes_in 0 100749 station_ip 46.225.209.168 100749 port 30 100749 unique_id port 100749 remote_ip 10.8.0.54 100751 username aminvpn 100751 mac 100751 bytes_out 0 100751 bytes_in 0 100751 station_ip 83.122.226.0 100751 port 20 100751 unique_id port 100751 remote_ip 10.8.0.6 100752 username mohammadmahdi 100752 mac 100752 bytes_out 0 100752 bytes_in 0 100752 station_ip 5.119.222.187 100752 port 31 100752 unique_id port 100756 username forozande 100756 mac 100756 bytes_out 201076 100756 bytes_in 1216856 100756 station_ip 37.129.78.159 100756 port 20 100756 unique_id port 100756 remote_ip 10.8.0.74 100757 username amir 100757 mac 100757 bytes_out 0 100757 bytes_in 0 100757 station_ip 46.225.209.168 100757 port 20 100757 unique_id port 100757 remote_ip 10.8.0.54 100758 username madadi2 100758 mac 100758 bytes_out 0 100758 bytes_in 0 100758 station_ip 5.120.127.101 100758 port 20 100758 unique_id port 100758 remote_ip 10.8.0.26 100759 username askari 100759 mac 100759 bytes_out 0 100759 bytes_in 0 100759 station_ip 5.119.104.30 100759 port 29 100759 unique_id port 100759 remote_ip 10.8.0.38 100760 username askari 100760 mac 100760 bytes_out 0 100760 bytes_in 0 100760 station_ip 5.119.104.30 100760 port 29 100760 unique_id port 100760 remote_ip 10.8.0.38 100762 username askari 100762 mac 100762 bytes_out 0 100762 bytes_in 0 100762 station_ip 5.119.104.30 100762 port 29 100762 unique_id port 100762 remote_ip 10.8.0.38 100764 username alihosseini 100764 mac 100764 bytes_out 0 100764 bytes_in 0 100764 station_ip 5.119.26.135 100764 port 30 100764 unique_id port 100764 remote_ip 10.8.0.14 100766 username alihosseini 100766 mac 100766 bytes_out 0 100766 bytes_in 0 100766 station_ip 5.119.26.135 100766 port 30 100766 unique_id port 100766 remote_ip 10.8.0.14 100771 username sobhan 100771 unique_id port 100771 terminate_cause Lost-Carrier 100771 bytes_out 404857 100771 bytes_in 7032284 100771 station_ip 5.119.119.209 100771 port 15729474 100771 nas_port_type Virtual 100771 remote_ip 5.5.5.224 100774 username askari 100774 mac 100774 bytes_out 0 100774 bytes_in 0 100774 station_ip 5.119.104.30 100774 port 29 100774 unique_id port 100774 remote_ip 10.8.0.38 100787 username amir 100787 mac 100787 bytes_out 0 100787 bytes_in 0 100787 station_ip 46.225.209.168 100787 port 20 100787 unique_id port 100795 username askari 100795 mac 100795 bytes_out 0 100795 bytes_in 0 100795 station_ip 5.119.104.30 100795 port 29 100795 unique_id port 100795 remote_ip 10.8.0.38 100801 username forozande 100801 mac 100801 bytes_out 0 100801 bytes_in 0 100801 station_ip 37.129.164.125 100801 port 31 100801 unique_id port 100801 remote_ip 10.8.0.74 100803 username askari 100803 mac 100803 bytes_out 5457 100803 bytes_in 4936 100803 station_ip 5.119.114.19 100803 port 27 100803 unique_id port 100803 remote_ip 10.8.0.38 100809 username aminvpn 100809 mac 100809 bytes_out 0 100809 bytes_in 0 100809 station_ip 83.122.143.8 100809 port 27 100809 unique_id port 100809 remote_ip 10.8.0.6 100815 username forozande 100815 mac 100753 station_ip 5.124.60.142 100753 port 27 100753 unique_id port 100753 remote_ip 10.8.0.30 100754 username amir 100754 mac 100754 bytes_out 0 100754 bytes_in 0 100754 station_ip 46.225.209.168 100754 port 27 100754 unique_id port 100754 remote_ip 10.8.0.54 100755 username mohammadmahdi 100755 mac 100755 bytes_out 1552982 100755 bytes_in 19426041 100755 station_ip 5.120.4.4 100755 port 20 100755 unique_id port 100755 remote_ip 10.8.0.34 100761 username askari 100761 mac 100761 bytes_out 0 100761 bytes_in 0 100761 station_ip 5.119.104.30 100761 port 29 100761 unique_id port 100761 remote_ip 10.8.0.38 100763 username alihosseini 100763 mac 100763 bytes_out 1345831 100763 bytes_in 14339041 100763 station_ip 5.119.26.135 100763 port 30 100763 unique_id port 100763 remote_ip 10.8.0.14 100768 username ahmadipour 100768 unique_id port 100768 terminate_cause Lost-Carrier 100768 bytes_out 294539 100768 bytes_in 7628412 100768 station_ip 113.203.65.231 100768 port 15729471 100768 nas_port_type Virtual 100768 remote_ip 5.5.5.234 100769 username rezasekonji 100769 unique_id port 100769 terminate_cause User-Request 100769 bytes_out 52061 100769 bytes_in 735366 100769 station_ip 83.122.157.61 100769 port 15729472 100769 nas_port_type Virtual 100769 remote_ip 5.5.5.235 100770 username reza2742 100770 unique_id port 100770 terminate_cause User-Request 100770 bytes_out 84476 100770 bytes_in 845521 100770 station_ip 83.123.202.129 100770 port 15729473 100770 nas_port_type Virtual 100770 remote_ip 5.5.5.254 100777 username aminvpn 100777 mac 100777 bytes_out 502301 100777 bytes_in 728745 100777 station_ip 83.122.226.0 100777 port 27 100777 unique_id port 100777 remote_ip 10.8.0.6 100778 username askari 100778 mac 100778 bytes_out 0 100778 bytes_in 0 100778 station_ip 5.119.104.30 100778 port 29 100778 unique_id port 100778 remote_ip 10.8.0.38 100779 username askari 100779 mac 100779 bytes_out 0 100779 bytes_in 0 100779 station_ip 5.119.104.30 100779 port 27 100779 unique_id port 100779 remote_ip 10.8.0.38 100780 username askari 100780 mac 100780 bytes_out 23482 100780 bytes_in 35908 100780 station_ip 5.119.104.30 100780 port 27 100780 unique_id port 100780 remote_ip 10.8.0.38 100786 username musa 100786 kill_reason Another user logged on this global unique id 100786 mac 100786 bytes_out 0 100786 bytes_in 0 100786 station_ip 83.122.250.116 100786 port 27 100786 unique_id port 100786 remote_ip 10.8.0.106 100789 username mirzaei 100789 mac 100789 bytes_out 499818 100789 bytes_in 2987759 100789 station_ip 5.124.60.142 100789 port 11 100789 unique_id port 100789 remote_ip 10.8.1.70 100791 username mirzaei 100791 mac 100791 bytes_out 0 100791 bytes_in 0 100791 station_ip 5.124.60.142 100791 port 11 100791 unique_id port 100791 remote_ip 10.8.1.70 100793 username sobhan 100793 unique_id port 100793 terminate_cause User-Request 100793 bytes_out 17907019 100793 bytes_in 378841758 100793 station_ip 5.119.119.209 100793 port 15729475 100793 nas_port_type Virtual 100793 remote_ip 5.5.5.225 100797 username amir 100797 mac 100797 bytes_out 2521 100797 bytes_in 5761 100797 station_ip 46.225.209.168 100797 port 27 100797 unique_id port 100797 remote_ip 10.8.0.54 100799 username amir 100799 mac 100799 bytes_out 0 100799 bytes_in 0 100799 station_ip 46.225.209.168 100799 port 13 100799 unique_id port 100799 remote_ip 10.8.1.34 100808 username musa 100808 mac 100808 bytes_out 0 100808 bytes_in 0 100808 station_ip 5.211.41.78 100808 port 20 100808 unique_id port 100808 remote_ip 10.8.0.106 100781 remote_ip 10.8.1.26 100782 username aminvpn 100782 mac 100782 bytes_out 123316 100782 bytes_in 436523 100782 station_ip 83.122.226.0 100782 port 13 100782 unique_id port 100782 remote_ip 10.8.1.26 100783 username mamal 100783 unique_id port 100783 terminate_cause User-Request 100783 bytes_out 10337442 100783 bytes_in 413371676 100783 station_ip 83.123.209.230 100783 port 15729476 100783 nas_port_type Virtual 100783 remote_ip 5.5.5.226 100784 username amir 100784 kill_reason Another user logged on this global unique id 100784 mac 100784 bytes_out 0 100784 bytes_in 0 100784 station_ip 46.225.209.168 100784 port 20 100784 unique_id port 100784 remote_ip 10.8.0.54 100785 username aminvpn 100785 mac 100785 bytes_out 0 100785 bytes_in 0 100785 station_ip 83.122.226.0 100785 port 13 100785 unique_id port 100785 remote_ip 10.8.1.26 100788 username musa 100788 mac 100788 bytes_out 0 100788 bytes_in 0 100788 station_ip 83.122.250.116 100788 port 27 100788 unique_id port 100790 username amir 100790 mac 100790 bytes_out 0 100790 bytes_in 0 100790 station_ip 46.225.209.168 100790 port 27 100790 unique_id port 100790 remote_ip 10.8.0.54 100792 username mirzaei 100792 mac 100792 bytes_out 182457 100792 bytes_in 892676 100792 station_ip 5.124.60.142 100792 port 11 100792 unique_id port 100792 remote_ip 10.8.1.70 100794 username amir 100794 mac 100794 bytes_out 45905 100794 bytes_in 154643 100794 station_ip 46.225.209.168 100794 port 27 100794 unique_id port 100794 remote_ip 10.8.0.54 100796 username amir 100796 mac 100796 bytes_out 0 100796 bytes_in 0 100796 station_ip 46.225.209.168 100796 port 13 100796 unique_id port 100796 remote_ip 10.8.1.34 100798 username musa 100798 mac 100798 bytes_out 297339 100798 bytes_in 934922 100798 station_ip 83.122.250.116 100798 port 20 100798 unique_id port 100798 remote_ip 10.8.0.106 100800 username musa 100800 mac 100800 bytes_out 13414 100800 bytes_in 34404 100800 station_ip 5.211.41.78 100800 port 27 100800 unique_id port 100800 remote_ip 10.8.0.106 100802 username amir 100802 mac 100802 bytes_out 0 100802 bytes_in 0 100802 station_ip 46.225.209.168 100802 port 13 100802 unique_id port 100802 remote_ip 10.8.1.34 100804 username amir 100804 mac 100804 bytes_out 0 100804 bytes_in 0 100804 station_ip 46.225.209.168 100804 port 13 100804 unique_id port 100804 remote_ip 10.8.1.34 100805 username amir 100805 mac 100805 bytes_out 0 100805 bytes_in 0 100805 station_ip 46.225.209.168 100805 port 13 100805 unique_id port 100805 remote_ip 10.8.1.34 100806 username amir 100806 mac 100806 bytes_out 52099 100806 bytes_in 78139 100806 station_ip 46.225.209.168 100806 port 13 100806 unique_id port 100806 remote_ip 10.8.1.34 100807 username amir 100807 mac 100807 bytes_out 0 100807 bytes_in 0 100807 station_ip 46.225.209.168 100807 port 13 100807 unique_id port 100807 remote_ip 10.8.1.34 100810 username aminvpn 100810 mac 100810 bytes_out 0 100810 bytes_in 0 100810 station_ip 83.122.143.8 100810 port 20 100810 unique_id port 100810 remote_ip 10.8.0.6 100812 username aminvpn 100812 mac 100812 bytes_out 0 100812 bytes_in 0 100812 station_ip 83.122.143.8 100812 port 27 100812 unique_id port 100812 remote_ip 10.8.0.6 100813 username musa 100813 mac 100813 bytes_out 268715 100813 bytes_in 761306 100813 station_ip 83.122.103.216 100813 port 29 100813 unique_id port 100813 remote_ip 10.8.0.106 100823 username aminvpn 100823 mac 100811 username amir 100811 mac 100811 bytes_out 0 100811 bytes_in 0 100811 station_ip 46.225.209.168 100811 port 20 100811 unique_id port 100811 remote_ip 10.8.0.54 100814 username mirzaei 100814 mac 100814 bytes_out 284710 100814 bytes_in 478276 100814 station_ip 5.124.60.142 100814 port 11 100814 unique_id port 100814 remote_ip 10.8.1.70 100817 username farhad1 100817 mac 100817 bytes_out 5347693 100817 bytes_in 45248045 100817 station_ip 5.120.100.201 100817 port 30 100817 unique_id port 100817 remote_ip 10.8.0.102 100818 username aminvpn 100818 mac 100818 bytes_out 77157 100818 bytes_in 96404 100818 station_ip 83.122.143.8 100818 port 20 100818 unique_id port 100818 remote_ip 10.8.0.6 100820 username askari 100820 mac 100820 bytes_out 552794 100820 bytes_in 4721483 100820 station_ip 5.119.21.123 100820 port 31 100820 unique_id port 100820 remote_ip 10.8.0.38 100826 username askari 100826 mac 100826 bytes_out 1093061 100826 bytes_in 15019932 100826 station_ip 5.119.21.123 100826 port 20 100826 unique_id port 100826 remote_ip 10.8.0.38 100827 username amir 100827 mac 100827 bytes_out 191957 100827 bytes_in 264732 100827 station_ip 46.225.209.168 100827 port 30 100827 unique_id port 100827 remote_ip 10.8.0.54 100831 username aminvpn 100831 unique_id port 100831 terminate_cause User-Request 100831 bytes_out 4747569 100831 bytes_in 125840669 100831 station_ip 31.57.130.169 100831 port 15729477 100831 nas_port_type Virtual 100831 remote_ip 5.5.5.254 100834 username amir 100834 mac 100834 bytes_out 63342 100834 bytes_in 87994 100834 station_ip 46.225.209.168 100834 port 20 100834 unique_id port 100834 remote_ip 10.8.0.54 100835 username forozande 100835 mac 100835 bytes_out 0 100835 bytes_in 0 100835 station_ip 37.129.112.48 100835 port 29 100835 unique_id port 100835 remote_ip 10.8.0.74 100836 username amir 100836 mac 100836 bytes_out 589517 100836 bytes_in 5860916 100836 station_ip 46.225.209.168 100836 port 20 100836 unique_id port 100836 remote_ip 10.8.0.54 100840 username amir 100840 mac 100840 bytes_out 26665 100840 bytes_in 86241 100840 station_ip 46.225.209.168 100840 port 29 100840 unique_id port 100840 remote_ip 10.8.0.54 100842 username farhad1 100842 mac 100842 bytes_out 0 100842 bytes_in 0 100842 station_ip 5.119.8.64 100842 port 20 100842 unique_id port 100843 username aminvpn 100843 mac 100843 bytes_out 255474 100843 bytes_in 771273 100843 station_ip 83.122.143.8 100843 port 30 100843 unique_id port 100843 remote_ip 10.8.0.6 100846 username alireza1 100846 unique_id port 100846 terminate_cause User-Request 100846 bytes_out 176415 100846 bytes_in 323732 100846 station_ip 5.119.133.53 100846 port 15729479 100846 nas_port_type Virtual 100846 remote_ip 5.5.5.223 100847 username reza2742 100847 unique_id port 100847 terminate_cause User-Request 100847 bytes_out 10898 100847 bytes_in 13332 100847 station_ip 83.123.89.95 100847 port 15729481 100847 nas_port_type Virtual 100847 remote_ip 5.5.5.217 100850 username reza2742 100850 unique_id port 100850 terminate_cause User-Request 100850 bytes_out 19211 100850 bytes_in 131236 100850 station_ip 83.123.89.95 100850 port 15729484 100850 nas_port_type Virtual 100850 remote_ip 5.5.5.254 100851 username mirzaei 100851 mac 100851 bytes_out 0 100851 bytes_in 0 100851 station_ip 5.124.60.142 100851 port 11 100851 unique_id port 100851 remote_ip 10.8.1.70 100853 username askari 100853 mac 100853 bytes_out 828378 100853 bytes_in 11302233 100853 station_ip 5.119.21.123 100853 port 31 100815 bytes_out 31031 100815 bytes_in 81426 100815 station_ip 37.129.154.144 100815 port 27 100815 unique_id port 100815 remote_ip 10.8.0.74 100816 username mirzaei 100816 mac 100816 bytes_out 7562 100816 bytes_in 10132 100816 station_ip 5.124.60.142 100816 port 27 100816 unique_id port 100816 remote_ip 10.8.0.30 100819 username mirzaei 100819 mac 100819 bytes_out 0 100819 bytes_in 0 100819 station_ip 5.124.60.142 100819 port 11 100819 unique_id port 100819 remote_ip 10.8.1.70 100821 username aminvpn 100821 mac 100821 bytes_out 102908 100821 bytes_in 262100 100821 station_ip 83.122.143.8 100821 port 27 100821 unique_id port 100821 remote_ip 10.8.0.6 100822 username aminvpn 100822 mac 100822 bytes_out 0 100822 bytes_in 0 100822 station_ip 83.122.143.8 100822 port 13 100822 unique_id port 100822 remote_ip 10.8.1.26 100824 username aminvpn 100824 mac 100824 bytes_out 25012 100824 bytes_in 35581 100824 station_ip 83.122.143.8 100824 port 13 100824 unique_id port 100824 remote_ip 10.8.1.26 100825 username aminvpn 100825 mac 100825 bytes_out 0 100825 bytes_in 0 100825 station_ip 83.122.143.8 100825 port 13 100825 unique_id port 100825 remote_ip 10.8.1.26 100830 username farhad1 100830 kill_reason Another user logged on this global unique id 100830 mac 100830 bytes_out 0 100830 bytes_in 0 100830 station_ip 5.119.63.41 100830 port 27 100830 unique_id port 100830 remote_ip 10.8.0.102 100832 username abbasaskari 100832 kill_reason Another user logged on this global unique id 100832 mac 100832 bytes_out 0 100832 bytes_in 0 100832 station_ip 113.203.94.254 100832 port 29 100832 unique_id port 100832 remote_ip 10.8.0.94 100837 username farhad1 100837 mac 100837 bytes_out 0 100837 bytes_in 0 100837 station_ip 5.119.63.41 100837 port 27 100837 unique_id port 100841 username farhad1 100841 kill_reason Another user logged on this global unique id 100841 mac 100841 bytes_out 0 100841 bytes_in 0 100841 station_ip 5.119.8.64 100841 port 20 100841 unique_id port 100845 username abbasaskari 100845 mac 100845 bytes_out 2485888 100845 bytes_in 38604545 100845 station_ip 113.203.92.194 100845 port 32 100845 unique_id port 100845 remote_ip 10.8.0.94 100848 username reza2742 100848 unique_id port 100848 terminate_cause User-Request 100848 bytes_out 16786 100848 bytes_in 19834 100848 station_ip 83.123.89.95 100848 port 15729483 100848 nas_port_type Virtual 100848 remote_ip 5.5.5.221 100849 username madadi2 100849 mac 100849 bytes_out 549810 100849 bytes_in 2874048 100849 station_ip 5.120.191.81 100849 port 27 100849 unique_id port 100849 remote_ip 10.8.0.26 100855 username amir 100855 mac 100855 bytes_out 1837846 100855 bytes_in 9928998 100855 station_ip 46.225.209.168 100855 port 20 100855 unique_id port 100855 remote_ip 10.8.0.54 100860 username alihosseini 100860 mac 100860 bytes_out 0 100860 bytes_in 0 100860 station_ip 5.119.140.62 100860 port 30 100860 unique_id port 100860 remote_ip 10.8.0.14 100862 username alireza1 100862 unique_id port 100862 terminate_cause User-Request 100862 bytes_out 657669 100862 bytes_in 1141040 100862 station_ip 5.119.133.53 100862 port 15729482 100862 nas_port_type Virtual 100862 remote_ip 5.5.5.218 100868 username abbasaskari 100868 mac 100868 bytes_out 1701251 100868 bytes_in 34330856 100868 station_ip 113.203.105.146 100868 port 29 100868 unique_id port 100868 remote_ip 10.8.0.94 100872 username forozande 100872 mac 100872 bytes_out 0 100872 bytes_in 0 100872 station_ip 83.123.221.235 100872 port 29 100872 unique_id port 100823 bytes_out 0 100823 bytes_in 0 100823 station_ip 83.122.143.8 100823 port 13 100823 unique_id port 100823 remote_ip 10.8.1.26 100828 username amir 100828 mac 100828 bytes_out 0 100828 bytes_in 0 100828 station_ip 46.225.209.168 100828 port 20 100828 unique_id port 100828 remote_ip 10.8.0.54 100829 username amir 100829 mac 100829 bytes_out 0 100829 bytes_in 0 100829 station_ip 46.225.209.168 100829 port 20 100829 unique_id port 100829 remote_ip 10.8.0.54 100833 username abbasaskari 100833 mac 100833 bytes_out 0 100833 bytes_in 0 100833 station_ip 113.203.94.254 100833 port 29 100833 unique_id port 100838 username alireza1 100838 unique_id port 100838 terminate_cause User-Request 100838 bytes_out 1782081 100838 bytes_in 13156905 100838 station_ip 5.119.133.53 100838 port 15729478 100838 nas_port_type Virtual 100838 remote_ip 5.5.5.220 100839 username farhad1 100839 kill_reason Another user logged on this global unique id 100839 mac 100839 bytes_out 0 100839 bytes_in 0 100839 station_ip 5.119.8.64 100839 port 20 100839 unique_id port 100839 remote_ip 10.8.0.102 100844 username reza2742 100844 unique_id port 100844 terminate_cause User-Request 100844 bytes_out 78633 100844 bytes_in 108760 100844 station_ip 83.123.89.95 100844 port 15729480 100844 nas_port_type Virtual 100844 remote_ip 5.5.5.216 100852 username abbasaskari 100852 mac 100852 bytes_out 0 100852 bytes_in 0 100852 station_ip 113.203.92.194 100852 port 27 100852 unique_id port 100852 remote_ip 10.8.0.94 100857 username abbasaskari 100857 mac 100857 bytes_out 72076 100857 bytes_in 200395 100857 station_ip 113.203.92.194 100857 port 27 100857 unique_id port 100857 remote_ip 10.8.0.94 100864 username askari 100864 mac 100864 bytes_out 0 100864 bytes_in 0 100864 station_ip 5.120.44.143 100864 port 33 100864 unique_id port 100869 username abbasaskari 100869 kill_reason Another user logged on this global unique id 100869 mac 100869 bytes_out 0 100869 bytes_in 0 100869 station_ip 113.203.105.146 100869 port 20 100869 unique_id port 100869 remote_ip 10.8.0.94 100870 username amir 100870 mac 100870 bytes_out 0 100870 bytes_in 0 100870 station_ip 46.225.209.168 100870 port 30 100870 unique_id port 100870 remote_ip 10.8.0.54 100871 username abbasaskari 100871 kill_reason Another user logged on this global unique id 100871 mac 100871 bytes_out 0 100871 bytes_in 0 100871 station_ip 113.203.105.146 100871 port 20 100871 unique_id port 100873 username abbasaskari 100873 kill_reason Another user logged on this global unique id 100873 mac 100873 bytes_out 0 100873 bytes_in 0 100873 station_ip 113.203.105.146 100873 port 20 100873 unique_id port 100880 username aminvpn 100880 unique_id port 100880 terminate_cause Lost-Carrier 100880 bytes_out 782824 100880 bytes_in 6802911 100880 station_ip 5.119.190.81 100880 port 15729489 100880 nas_port_type Virtual 100880 remote_ip 5.5.5.233 100883 username bcboard 100883 unique_id port 100883 terminate_cause Lost-Carrier 100883 bytes_out 8120460 100883 bytes_in 135172326 100883 station_ip 37.129.140.165 100883 port 15729486 100883 nas_port_type Virtual 100883 remote_ip 5.5.5.212 100886 username amir 100886 mac 100886 bytes_out 0 100886 bytes_in 0 100886 station_ip 46.225.209.168 100886 port 20 100886 unique_id port 100886 remote_ip 10.8.0.54 100887 username forozande 100887 mac 100887 bytes_out 0 100887 bytes_in 0 100887 station_ip 83.123.217.89 100887 port 20 100887 unique_id port 100887 remote_ip 10.8.0.74 100896 username amir 100896 mac 100896 bytes_out 0 100896 bytes_in 0 100896 station_ip 46.225.209.168 100853 unique_id port 100853 remote_ip 10.8.0.38 100854 username mirzaei 100854 kill_reason Maximum check online fails reached 100854 mac 100854 bytes_out 0 100854 bytes_in 0 100854 station_ip 5.124.60.142 100854 port 11 100854 unique_id port 100856 username amir 100856 mac 100856 bytes_out 45649 100856 bytes_in 188704 100856 station_ip 46.225.209.168 100856 port 20 100856 unique_id port 100856 remote_ip 10.8.0.54 100858 username forozande 100858 mac 100858 bytes_out 0 100858 bytes_in 0 100858 station_ip 37.129.103.69 100858 port 31 100858 unique_id port 100858 remote_ip 10.8.0.74 100859 username askari 100859 kill_reason Another user logged on this global unique id 100859 mac 100859 bytes_out 0 100859 bytes_in 0 100859 station_ip 5.120.44.143 100859 port 33 100859 unique_id port 100859 remote_ip 10.8.0.38 100861 username alipour 100861 mac 100861 bytes_out 0 100861 bytes_in 0 100861 station_ip 37.129.43.23 100861 port 29 100861 unique_id port 100861 remote_ip 10.8.0.70 100863 username amir 100863 mac 100863 bytes_out 0 100863 bytes_in 0 100863 station_ip 46.225.209.168 100863 port 27 100863 unique_id port 100863 remote_ip 10.8.0.54 100865 username amir 100865 mac 100865 bytes_out 0 100865 bytes_in 0 100865 station_ip 46.225.209.168 100865 port 30 100865 unique_id port 100865 remote_ip 10.8.0.54 100866 username forozande 100866 mac 100866 bytes_out 0 100866 bytes_in 0 100866 station_ip 37.129.156.197 100866 port 27 100866 unique_id port 100866 remote_ip 10.8.0.74 100867 username alihosseini 100867 mac 100867 bytes_out 0 100867 bytes_in 0 100867 station_ip 5.119.140.62 100867 port 20 100867 unique_id port 100867 remote_ip 10.8.0.14 100874 username abbasaskari 100874 mac 100874 bytes_out 0 100874 bytes_in 0 100874 station_ip 113.203.105.146 100874 port 20 100874 unique_id port 100875 username aminvpn 100875 unique_id port 100875 terminate_cause User-Request 100875 bytes_out 19119 100875 bytes_in 45534 100875 station_ip 5.233.66.200 100875 port 15729487 100875 nas_port_type Virtual 100875 remote_ip 5.5.5.213 100877 username alihosseini 100877 kill_reason Another user logged on this global unique id 100877 mac 100877 bytes_out 0 100877 bytes_in 0 100877 station_ip 5.119.140.62 100877 port 27 100877 unique_id port 100877 remote_ip 10.8.0.14 100878 username amir 100878 mac 100878 bytes_out 0 100878 bytes_in 0 100878 station_ip 46.225.209.168 100878 port 30 100878 unique_id port 100878 remote_ip 10.8.0.54 100879 username alireza1 100879 unique_id port 100879 terminate_cause User-Request 100879 bytes_out 376105 100879 bytes_in 2943702 100879 station_ip 5.119.133.53 100879 port 15729485 100879 nas_port_type Virtual 100879 remote_ip 5.5.5.254 100881 username amir 100881 mac 100881 bytes_out 0 100881 bytes_in 0 100881 station_ip 46.225.209.168 100881 port 20 100881 unique_id port 100881 remote_ip 10.8.0.54 100884 username rezasekonji 100884 unique_id port 100884 terminate_cause User-Request 100884 bytes_out 3130 100884 bytes_in 3544 100884 station_ip 37.129.188.225 100884 port 15729491 100884 nas_port_type Virtual 100884 remote_ip 5.5.5.209 100890 username madadi2 100890 mac 100890 bytes_out 2368058 100890 bytes_in 7310497 100890 station_ip 5.119.231.105 100890 port 32 100890 unique_id port 100890 remote_ip 10.8.0.26 100891 username forozande 100891 mac 100891 bytes_out 221047 100891 bytes_in 1547558 100891 station_ip 37.129.17.180 100891 port 20 100891 unique_id port 100891 remote_ip 10.8.0.74 100892 username amir 100892 mac 100892 bytes_out 0 100872 remote_ip 10.8.0.74 100876 username aminvpn 100876 unique_id port 100876 terminate_cause Lost-Carrier 100876 bytes_out 94038 100876 bytes_in 614857 100876 station_ip 5.233.66.200 100876 port 15729488 100876 nas_port_type Virtual 100876 remote_ip 5.5.5.214 100882 username aminvpn 100882 unique_id port 100882 terminate_cause Lost-Carrier 100882 bytes_out 5858565 100882 bytes_in 69789053 100882 station_ip 5.233.66.200 100882 port 15729468 100882 nas_port_type Virtual 100882 remote_ip 5.5.5.255 100885 username alihosseini 100885 kill_reason Another user logged on this global unique id 100885 mac 100885 bytes_out 0 100885 bytes_in 0 100885 station_ip 5.119.140.62 100885 port 27 100885 unique_id port 100888 username alihosseini 100888 mac 100888 bytes_out 0 100888 bytes_in 0 100888 station_ip 5.119.140.62 100888 port 27 100888 unique_id port 100889 username amir 100889 mac 100889 bytes_out 0 100889 bytes_in 0 100889 station_ip 46.225.209.168 100889 port 20 100889 unique_id port 100889 remote_ip 10.8.0.54 100893 username alirr 100893 unique_id port 100893 terminate_cause Lost-Carrier 100893 bytes_out 480775 100893 bytes_in 5607942 100893 station_ip 5.120.146.214 100893 port 15729492 100893 nas_port_type Virtual 100893 remote_ip 5.5.5.222 100895 username madadi2 100895 mac 100895 bytes_out 0 100895 bytes_in 0 100895 station_ip 5.120.87.88 100895 port 27 100895 unique_id port 100895 remote_ip 10.8.0.26 100898 username amir 100898 mac 100898 bytes_out 22416 100898 bytes_in 79445 100898 station_ip 46.225.209.168 100898 port 27 100898 unique_id port 100898 remote_ip 10.8.0.54 100908 username mohammadmahdi 100908 kill_reason Another user logged on this global unique id 100908 mac 100908 bytes_out 0 100908 bytes_in 0 100908 station_ip 5.120.4.4 100908 port 30 100908 unique_id port 100908 remote_ip 10.8.0.34 100913 username mohammadmahdi 100913 kill_reason Another user logged on this global unique id 100913 mac 100913 bytes_out 0 100913 bytes_in 0 100913 station_ip 5.120.4.4 100913 port 30 100913 unique_id port 100914 username aminvpn 100914 mac 100914 bytes_out 0 100914 bytes_in 0 100914 station_ip 83.122.163.138 100914 port 27 100914 unique_id port 100914 remote_ip 10.8.0.6 100916 username aminvpn 100916 mac 100916 bytes_out 0 100916 bytes_in 0 100916 station_ip 83.122.163.138 100916 port 27 100916 unique_id port 100916 remote_ip 10.8.0.6 100922 username amir 100922 mac 100922 bytes_out 0 100922 bytes_in 0 100922 station_ip 46.225.209.168 100922 port 31 100922 unique_id port 100922 remote_ip 10.8.0.54 100923 username aminvpn 100923 mac 100923 bytes_out 0 100923 bytes_in 0 100923 station_ip 83.122.244.168 100923 port 34 100923 unique_id port 100923 remote_ip 10.8.0.6 100925 username aminvpn 100925 mac 100925 bytes_out 0 100925 bytes_in 0 100925 station_ip 83.122.244.168 100925 port 33 100925 unique_id port 100925 remote_ip 10.8.0.6 100926 username aminvpn 100926 mac 100926 bytes_out 0 100926 bytes_in 0 100926 station_ip 83.122.163.138 100926 port 31 100926 unique_id port 100926 remote_ip 10.8.0.6 100932 username aminvpn 100932 mac 100932 bytes_out 0 100932 bytes_in 0 100932 station_ip 83.122.163.138 100932 port 13 100932 unique_id port 100932 remote_ip 10.8.1.26 100936 username mohammadmahdi 100936 mac 100936 bytes_out 0 100936 bytes_in 0 100936 station_ip 5.120.4.4 100936 port 30 100936 unique_id port 100949 username sobhan 100949 unique_id port 100949 terminate_cause User-Request 100949 bytes_out 7182446 100949 bytes_in 148936496 100892 bytes_in 0 100892 station_ip 46.225.209.168 100892 port 20 100892 unique_id port 100892 remote_ip 10.8.0.54 100894 username rezasekonji 100894 unique_id port 100894 terminate_cause User-Request 100894 bytes_out 355 100894 bytes_in 701 100894 station_ip 37.129.188.225 100894 port 15729494 100894 nas_port_type Virtual 100894 remote_ip 5.5.5.204 100903 username aminvpn 100903 mac 100903 bytes_out 0 100903 bytes_in 0 100903 station_ip 83.122.244.168 100903 port 31 100903 unique_id port 100905 username amir 100905 mac 100905 bytes_out 17244 100905 bytes_in 34782 100905 station_ip 46.225.209.168 100905 port 32 100905 unique_id port 100905 remote_ip 10.8.0.54 100907 username amir 100907 mac 100907 bytes_out 0 100907 bytes_in 0 100907 station_ip 46.225.209.168 100907 port 27 100907 unique_id port 100907 remote_ip 10.8.0.54 100909 username rezasekonji 100909 unique_id port 100909 terminate_cause User-Request 100909 bytes_out 291 100909 bytes_in 701 100909 station_ip 37.129.188.225 100909 port 15729495 100909 nas_port_type Virtual 100909 remote_ip 5.5.5.205 100912 username aminvpn 100912 mac 100912 bytes_out 170478 100912 bytes_in 246601 100912 station_ip 83.122.244.168 100912 port 31 100912 unique_id port 100912 remote_ip 10.8.0.6 100917 username aminvpn 100917 mac 100917 bytes_out 0 100917 bytes_in 0 100917 station_ip 83.122.244.168 100917 port 31 100917 unique_id port 100917 remote_ip 10.8.0.6 100918 username aminvpn 100918 mac 100918 bytes_out 0 100918 bytes_in 0 100918 station_ip 83.122.163.138 100918 port 27 100918 unique_id port 100918 remote_ip 10.8.0.6 100919 username aminvpn 100919 mac 100919 bytes_out 0 100919 bytes_in 0 100919 station_ip 83.122.244.168 100919 port 31 100919 unique_id port 100919 remote_ip 10.8.0.6 100920 username mohammadmahdi 100920 kill_reason Another user logged on this global unique id 100920 mac 100920 bytes_out 0 100920 bytes_in 0 100920 station_ip 5.120.4.4 100920 port 30 100920 unique_id port 100921 username aminvpn 100921 mac 100921 bytes_out 0 100921 bytes_in 0 100921 station_ip 83.122.163.138 100921 port 33 100921 unique_id port 100921 remote_ip 10.8.0.6 100924 username aminvpn 100924 mac 100924 bytes_out 0 100924 bytes_in 0 100924 station_ip 83.122.163.138 100924 port 31 100924 unique_id port 100924 remote_ip 10.8.0.6 100927 username aminvpn 100927 mac 100927 bytes_out 0 100927 bytes_in 0 100927 station_ip 83.122.244.168 100927 port 33 100927 unique_id port 100927 remote_ip 10.8.0.6 100928 username aminvpn 100928 mac 100928 bytes_out 0 100928 bytes_in 0 100928 station_ip 83.122.163.138 100928 port 31 100928 unique_id port 100928 remote_ip 10.8.0.6 100930 username alireza1 100930 unique_id port 100930 terminate_cause Lost-Carrier 100930 bytes_out 781577 100930 bytes_in 7745808 100930 station_ip 5.119.133.53 100930 port 15729490 100930 nas_port_type Virtual 100930 remote_ip 5.5.5.254 100931 username amir 100931 mac 100931 bytes_out 0 100931 bytes_in 0 100931 station_ip 46.225.209.168 100931 port 31 100931 unique_id port 100931 remote_ip 10.8.0.54 100933 username farhad1 100933 kill_reason Another user logged on this global unique id 100933 mac 100933 bytes_out 0 100933 bytes_in 0 100933 station_ip 5.120.30.131 100933 port 32 100933 unique_id port 100933 remote_ip 10.8.0.102 100934 username mahdixz 100934 unique_id port 100934 terminate_cause Lost-Carrier 100934 bytes_out 741261 100934 bytes_in 10433430 100934 station_ip 151.235.89.48 100934 port 15729496 100934 nas_port_type Virtual 100896 port 30 100896 unique_id port 100896 remote_ip 10.8.0.54 100897 username mehdizare 100897 kill_reason Another user logged on this global unique id 100897 mac 100897 bytes_out 0 100897 bytes_in 0 100897 station_ip 5.119.179.214 100897 port 20 100897 unique_id port 100897 remote_ip 10.8.0.22 100899 username mehdizare 100899 mac 100899 bytes_out 0 100899 bytes_in 0 100899 station_ip 5.119.179.214 100899 port 20 100899 unique_id port 100900 username abbasaskari 100900 mac 100900 bytes_out 46144 100900 bytes_in 65487 100900 station_ip 113.203.35.170 100900 port 30 100900 unique_id port 100900 remote_ip 10.8.0.94 100901 username amir 100901 mac 100901 bytes_out 0 100901 bytes_in 0 100901 station_ip 46.225.209.168 100901 port 30 100901 unique_id port 100901 remote_ip 10.8.0.54 100902 username aminvpn 100902 kill_reason Another user logged on this global unique id 100902 mac 100902 bytes_out 0 100902 bytes_in 0 100902 station_ip 83.122.244.168 100902 port 31 100902 unique_id port 100902 remote_ip 10.8.0.6 100904 username madadi2 100904 mac 100904 bytes_out 182581 100904 bytes_in 1004817 100904 station_ip 5.119.10.222 100904 port 27 100904 unique_id port 100904 remote_ip 10.8.0.26 100906 username bcboard 100906 unique_id port 100906 terminate_cause Lost-Carrier 100906 bytes_out 2528839 100906 bytes_in 50843516 100906 station_ip 37.129.206.152 100906 port 15729493 100906 nas_port_type Virtual 100906 remote_ip 5.5.5.203 100910 username mirzaei 100910 kill_reason Another user logged on this global unique id 100910 mac 100910 bytes_out 0 100910 bytes_in 0 100910 station_ip 5.120.132.26 100910 port 29 100910 unique_id port 100910 remote_ip 10.8.0.30 100911 username madadi2 100911 mac 100911 bytes_out 173893 100911 bytes_in 655113 100911 station_ip 5.119.235.73 100911 port 27 100911 unique_id port 100911 remote_ip 10.8.0.26 100915 username aminvpn 100915 mac 100915 bytes_out 0 100915 bytes_in 0 100915 station_ip 83.122.244.168 100915 port 31 100915 unique_id port 100915 remote_ip 10.8.0.6 100929 username mohammadmahdi 100929 kill_reason Another user logged on this global unique id 100929 mac 100929 bytes_out 0 100929 bytes_in 0 100929 station_ip 5.120.4.4 100929 port 30 100929 unique_id port 100935 username kamali1 100935 mac 100935 bytes_out 736919 100935 bytes_in 11468443 100935 station_ip 5.119.249.246 100935 port 31 100935 unique_id port 100935 remote_ip 10.8.0.110 100937 username kamali1 100937 mac 100937 bytes_out 32483 100937 bytes_in 39595 100937 station_ip 5.119.249.246 100937 port 30 100937 unique_id port 100937 remote_ip 10.8.0.110 100939 username sade 100939 unique_id port 100939 terminate_cause User-Request 100939 bytes_out 3841737 100939 bytes_in 63811699 100939 station_ip 5.120.111.93 100939 port 15729499 100939 nas_port_type Virtual 100939 remote_ip 5.5.5.255 100940 username mohammadmahdi 100940 mac 100940 bytes_out 0 100940 bytes_in 0 100940 station_ip 5.120.4.4 100940 port 30 100940 unique_id port 100940 remote_ip 10.8.0.34 100942 username madadi2 100942 mac 100942 bytes_out 0 100942 bytes_in 0 100942 station_ip 5.119.8.164 100942 port 30 100942 unique_id port 100942 remote_ip 10.8.0.26 100945 username farhad1 100945 mac 100945 bytes_out 0 100945 bytes_in 0 100945 station_ip 5.120.30.131 100945 port 32 100945 unique_id port 100948 username sobhan 100948 unique_id port 100948 terminate_cause Lost-Carrier 100948 bytes_out 17191413 100948 bytes_in 366225737 100948 station_ip 5.119.153.132 100948 port 15729501 100948 nas_port_type Virtual 100948 remote_ip 5.5.5.201 100934 remote_ip 5.5.5.206 100938 username aminvpn 100938 mac 100938 bytes_out 511196 100938 bytes_in 1657957 100938 station_ip 83.122.244.168 100938 port 33 100938 unique_id port 100938 remote_ip 10.8.0.6 100941 username madadi2 100941 mac 100941 bytes_out 0 100941 bytes_in 0 100941 station_ip 5.120.85.180 100941 port 27 100941 unique_id port 100941 remote_ip 10.8.0.26 100943 username madadi2 100943 mac 100943 bytes_out 0 100943 bytes_in 0 100943 station_ip 5.119.25.51 100943 port 27 100943 unique_id port 100943 remote_ip 10.8.0.26 100944 username farhad1 100944 kill_reason Another user logged on this global unique id 100944 mac 100944 bytes_out 0 100944 bytes_in 0 100944 station_ip 5.120.30.131 100944 port 32 100944 unique_id port 100946 username sobhan 100946 unique_id port 100946 terminate_cause Lost-Carrier 100946 bytes_out 1454469 100946 bytes_in 21435025 100946 station_ip 5.119.153.132 100946 port 15729500 100946 nas_port_type Virtual 100946 remote_ip 5.5.5.200 100947 username mahdiyehalizadeh 100947 mac 100947 bytes_out 0 100947 bytes_in 0 100947 station_ip 113.203.116.205 100947 port 27 100947 unique_id port 100947 remote_ip 10.8.0.42 100949 station_ip 5.119.153.132 100949 port 15729502 100949 nas_port_type Virtual 100949 remote_ip 5.5.5.202 100952 username mehdizare 100952 mac 100952 bytes_out 0 100952 bytes_in 0 100952 station_ip 5.119.179.214 100952 port 13 100952 unique_id port 100952 remote_ip 10.8.1.22 100953 username khalili 100953 mac 100953 bytes_out 0 100953 bytes_in 0 100953 station_ip 5.119.178.16 100953 port 9 100953 unique_id port 100953 remote_ip 10.8.1.66 100956 username askari 100956 mac 100956 bytes_out 0 100956 bytes_in 0 100956 station_ip 5.119.153.10 100956 port 30 100956 unique_id port 100956 remote_ip 10.8.0.38 100957 username alireza1 100957 unique_id port 100957 terminate_cause Lost-Carrier 100957 bytes_out 222152 100957 bytes_in 13114685 100957 station_ip 5.119.133.53 100957 port 15729505 100957 nas_port_type Virtual 100957 remote_ip 5.5.5.254 100963 username askari 100963 mac 100963 bytes_out 0 100963 bytes_in 0 100963 station_ip 5.119.221.235 100963 port 31 100963 unique_id port 100968 username aminvpn 100968 unique_id port 100968 terminate_cause Lost-Carrier 100968 bytes_out 1075889 100968 bytes_in 11655659 100968 station_ip 5.120.3.120 100968 port 15729504 100968 nas_port_type Virtual 100968 remote_ip 5.5.5.196 100969 username kamali1 100969 mac 100969 bytes_out 0 100969 bytes_in 0 100969 station_ip 5.120.21.157 100969 port 20 100969 unique_id port 100969 remote_ip 10.8.0.110 100970 username mehdizare 100970 mac 100970 bytes_out 31788 100970 bytes_in 36418 100970 station_ip 5.119.179.214 100970 port 9 100970 unique_id port 100970 remote_ip 10.8.1.22 100972 username mehdizare 100972 mac 100972 bytes_out 782598 100972 bytes_in 12772153 100972 station_ip 5.119.179.214 100972 port 20 100972 unique_id port 100972 remote_ip 10.8.0.22 100974 username forozande 100974 mac 100974 bytes_out 1777842 100974 bytes_in 19753277 100974 station_ip 83.122.235.197 100974 port 30 100974 unique_id port 100974 remote_ip 10.8.0.74 100975 username aminvpn 100975 unique_id port 100975 terminate_cause Lost-Carrier 100975 bytes_out 424103 100975 bytes_in 4350999 100975 station_ip 5.119.245.123 100975 port 15729506 100975 nas_port_type Virtual 100975 remote_ip 5.5.5.254 100976 username ahmadi 100976 unique_id port 100976 terminate_cause User-Request 100976 bytes_out 52272 100976 bytes_in 293372 100976 station_ip 83.123.167.129 100976 port 15729507 100950 username sobhan 100950 unique_id port 100950 terminate_cause Lost-Carrier 100950 bytes_out 276108 100950 bytes_in 5120249 100950 station_ip 5.119.153.132 100950 port 15729503 100950 nas_port_type Virtual 100950 remote_ip 5.5.5.255 100951 username mehdizare 100951 mac 100951 bytes_out 0 100951 bytes_in 0 100951 station_ip 5.119.179.214 100951 port 20 100951 unique_id port 100951 remote_ip 10.8.0.22 100954 username mehdizare 100954 kill_reason Another user logged on this global unique id 100954 mac 100954 bytes_out 0 100954 bytes_in 0 100954 station_ip 5.119.179.214 100954 port 13 100954 unique_id port 100954 remote_ip 10.8.1.22 100959 username askari 100959 kill_reason Another user logged on this global unique id 100959 mac 100959 bytes_out 0 100959 bytes_in 0 100959 station_ip 5.119.221.235 100959 port 31 100959 unique_id port 100960 username askari 100960 kill_reason Another user logged on this global unique id 100960 mac 100960 bytes_out 0 100960 bytes_in 0 100960 station_ip 5.119.221.235 100960 port 31 100960 unique_id port 100961 username askari 100961 kill_reason Another user logged on this global unique id 100961 mac 100961 bytes_out 0 100961 bytes_in 0 100961 station_ip 5.119.221.235 100961 port 31 100961 unique_id port 100964 username mehdizare 100964 mac 100964 bytes_out 0 100964 bytes_in 0 100964 station_ip 5.119.179.214 100964 port 9 100964 unique_id port 100964 remote_ip 10.8.1.22 100965 username mehdizare 100965 mac 100965 bytes_out 0 100965 bytes_in 0 100965 station_ip 5.119.179.214 100965 port 9 100965 unique_id port 100965 remote_ip 10.8.1.22 100967 username mehdizare 100967 mac 100967 bytes_out 0 100967 bytes_in 0 100967 station_ip 5.119.179.214 100967 port 20 100967 unique_id port 100967 remote_ip 10.8.0.22 100971 username mehdizare 100971 mac 100971 bytes_out 130708 100971 bytes_in 304298 100971 station_ip 5.119.179.214 100971 port 9 100971 unique_id port 100971 remote_ip 10.8.1.22 100979 username askari 100979 mac 100979 bytes_out 0 100979 bytes_in 0 100979 station_ip 5.120.78.127 100979 port 13 100979 unique_id port 100979 remote_ip 10.8.1.30 100986 username amir 100986 mac 100986 bytes_out 0 100986 bytes_in 0 100986 station_ip 46.225.215.186 100986 port 13 100986 unique_id port 100986 remote_ip 10.8.1.34 100990 username amir 100990 mac 100990 bytes_out 0 100990 bytes_in 0 100990 station_ip 46.225.215.186 100990 port 13 100990 unique_id port 100990 remote_ip 10.8.1.34 100991 username alipour 100991 kill_reason Another user logged on this global unique id 100991 mac 100991 bytes_out 0 100991 bytes_in 0 100991 station_ip 83.122.42.41 100991 port 20 100991 unique_id port 100991 remote_ip 10.8.0.70 100994 username mehdizare 100994 mac 100994 bytes_out 7835 100994 bytes_in 14884 100994 station_ip 5.119.179.214 100994 port 9 100994 unique_id port 100994 remote_ip 10.8.1.22 100995 username alirr 100995 unique_id port 100995 terminate_cause Lost-Carrier 100995 bytes_out 446412 100995 bytes_in 1081838 100995 station_ip 5.120.191.115 100995 port 15729510 100995 nas_port_type Virtual 100995 remote_ip 5.5.5.254 100996 username mehdizare 100996 mac 100996 bytes_out 0 100996 bytes_in 0 100996 station_ip 5.119.179.214 100996 port 9 100996 unique_id port 100996 remote_ip 10.8.1.22 100997 username mehdizare 100997 mac 100997 bytes_out 0 100997 bytes_in 0 100997 station_ip 5.119.179.214 100997 port 33 100997 unique_id port 100997 remote_ip 10.8.0.22 100998 username mehdizare 100998 mac 100998 bytes_out 0 100998 bytes_in 0 100955 username mehdizare 100955 mac 100955 bytes_out 0 100955 bytes_in 0 100955 station_ip 5.119.179.214 100955 port 13 100955 unique_id port 100958 username askari 100958 kill_reason Another user logged on this global unique id 100958 mac 100958 bytes_out 0 100958 bytes_in 0 100958 station_ip 5.119.221.235 100958 port 31 100958 unique_id port 100958 remote_ip 10.8.0.38 100962 username mehdizare 100962 mac 100962 bytes_out 616422 100962 bytes_in 9153726 100962 station_ip 5.119.179.214 100962 port 20 100962 unique_id port 100962 remote_ip 10.8.0.22 100966 username mehdizare 100966 mac 100966 bytes_out 0 100966 bytes_in 0 100966 station_ip 5.119.179.214 100966 port 20 100966 unique_id port 100966 remote_ip 10.8.0.22 100973 username mehdizare 100973 mac 100973 bytes_out 0 100973 bytes_in 0 100973 station_ip 5.119.179.214 100973 port 9 100973 unique_id port 100973 remote_ip 10.8.1.22 100978 username askari 100978 mac 100978 bytes_out 0 100978 bytes_in 0 100978 station_ip 5.119.49.135 100978 port 14 100978 unique_id port 100978 remote_ip 10.8.1.30 100980 username mahyaarabpour 100980 mac 100980 bytes_out 0 100980 bytes_in 0 100980 station_ip 5.120.87.104 100980 port 20 100980 unique_id port 100980 remote_ip 10.8.0.82 100987 username amir 100987 mac 100987 bytes_out 0 100987 bytes_in 0 100987 station_ip 46.225.215.186 100987 port 13 100987 unique_id port 100987 remote_ip 10.8.1.34 100988 username ahmadipour 100988 unique_id port 100988 terminate_cause Lost-Carrier 100988 bytes_out 372825 100988 bytes_in 7235005 100988 station_ip 113.203.60.75 100988 port 15729508 100988 nas_port_type Virtual 100988 remote_ip 5.5.5.198 100989 username amir 100989 mac 100989 bytes_out 0 100989 bytes_in 0 100989 station_ip 46.225.215.186 100989 port 13 100989 unique_id port 100989 remote_ip 10.8.1.34 100992 username mehdizare 100992 mac 100992 bytes_out 778616 100992 bytes_in 6787446 100992 station_ip 5.119.179.214 100992 port 9 100992 unique_id port 100992 remote_ip 10.8.1.22 100993 username mehdizare 100993 mac 100993 bytes_out 0 100993 bytes_in 0 100993 station_ip 5.119.179.214 100993 port 9 100993 unique_id port 100993 remote_ip 10.8.1.22 101000 username mehdizare 101000 mac 101000 bytes_out 0 101000 bytes_in 0 101000 station_ip 5.119.179.214 101000 port 9 101000 unique_id port 101000 remote_ip 10.8.1.22 101001 username abbasaskari 101001 mac 101001 bytes_out 1132914 101001 bytes_in 8440928 101001 station_ip 113.203.32.198 101001 port 30 101001 unique_id port 101001 remote_ip 10.8.0.94 101003 username alirr 101003 unique_id port 101003 terminate_cause Lost-Carrier 101003 bytes_out 106978 101003 bytes_in 153857 101003 station_ip 5.120.2.159 101003 port 15729511 101003 nas_port_type Virtual 101003 remote_ip 5.5.5.193 101007 username amir 101007 mac 101007 bytes_out 0 101007 bytes_in 0 101007 station_ip 46.225.215.186 101007 port 9 101007 unique_id port 101007 remote_ip 10.8.1.34 101016 username ahmadi 101016 unique_id port 101016 terminate_cause User-Request 101016 bytes_out 11575 101016 bytes_in 37798 101016 station_ip 83.123.173.245 101016 port 15729515 101016 nas_port_type Virtual 101016 remote_ip 5.5.5.252 101017 username asadi 101017 mac 101017 bytes_out 278047 101017 bytes_in 1170385 101017 station_ip 83.123.132.181 101017 port 31 101017 unique_id port 101017 remote_ip 10.8.0.50 101020 username amir 101020 mac 101020 bytes_out 226784 101020 bytes_in 828852 101020 station_ip 46.225.215.186 101020 port 9 101020 unique_id port 100976 nas_port_type Virtual 100976 remote_ip 5.5.5.254 100977 username forozande 100977 mac 100977 bytes_out 0 100977 bytes_in 0 100977 station_ip 83.122.235.197 100977 port 13 100977 unique_id port 100977 remote_ip 10.8.1.62 100981 username mirzaei 100981 kill_reason Another user logged on this global unique id 100981 mac 100981 bytes_out 0 100981 bytes_in 0 100981 station_ip 5.120.132.26 100981 port 29 100981 unique_id port 100982 username abbasaskari 100982 mac 100982 bytes_out 71083 100982 bytes_in 219084 100982 station_ip 113.203.73.70 100982 port 20 100982 unique_id port 100982 remote_ip 10.8.0.94 100983 username amir 100983 mac 100983 bytes_out 0 100983 bytes_in 0 100983 station_ip 46.225.215.186 100983 port 13 100983 unique_id port 100983 remote_ip 10.8.1.34 100984 username amir 100984 mac 100984 bytes_out 0 100984 bytes_in 0 100984 station_ip 46.225.215.186 100984 port 13 100984 unique_id port 100984 remote_ip 10.8.1.34 100985 username amir 100985 mac 100985 bytes_out 19478 100985 bytes_in 58997 100985 station_ip 46.225.215.186 100985 port 13 100985 unique_id port 100985 remote_ip 10.8.1.34 101008 username abbasaskari 101008 mac 101008 bytes_out 0 101008 bytes_in 0 101008 station_ip 113.203.32.198 101008 port 33 101008 unique_id port 101008 remote_ip 10.8.0.94 101011 username amir 101011 mac 101011 bytes_out 0 101011 bytes_in 0 101011 station_ip 46.225.215.186 101011 port 9 101011 unique_id port 101011 remote_ip 10.8.1.34 101014 username forozande 101014 kill_reason Another user logged on this global unique id 101014 mac 101014 bytes_out 0 101014 bytes_in 0 101014 station_ip 83.123.81.155 101014 port 14 101014 unique_id port 101015 username amir 101015 mac 101015 bytes_out 0 101015 bytes_in 0 101015 station_ip 46.225.215.186 101015 port 9 101015 unique_id port 101015 remote_ip 10.8.1.34 101019 username asadi 101019 mac 101019 bytes_out 22993 101019 bytes_in 38086 101019 station_ip 83.123.132.181 101019 port 27 101019 unique_id port 101019 remote_ip 10.8.0.50 101022 username forozande 101022 kill_reason Another user logged on this global unique id 101022 mac 101022 bytes_out 0 101022 bytes_in 0 101022 station_ip 83.123.81.155 101022 port 14 101022 unique_id port 101023 username amir 101023 mac 101023 bytes_out 0 101023 bytes_in 0 101023 station_ip 46.225.215.186 101023 port 9 101023 unique_id port 101023 remote_ip 10.8.1.34 101028 username mehdizare 101028 mac 101028 bytes_out 0 101028 bytes_in 0 101028 station_ip 5.119.179.214 101028 port 13 101028 unique_id port 101028 remote_ip 10.8.1.22 101030 username amir 101030 mac 101030 bytes_out 31097 101030 bytes_in 116007 101030 station_ip 46.225.215.186 101030 port 9 101030 unique_id port 101030 remote_ip 10.8.1.34 101031 username forozande 101031 kill_reason Another user logged on this global unique id 101031 mac 101031 bytes_out 0 101031 bytes_in 0 101031 station_ip 83.123.81.155 101031 port 14 101031 unique_id port 101033 username aminvpn 101033 unique_id port 101033 terminate_cause Lost-Carrier 101033 bytes_out 238956 101033 bytes_in 1317799 101033 station_ip 5.233.66.200 101033 port 15729516 101033 nas_port_type Virtual 101033 remote_ip 5.5.5.255 101034 username mehdizare 101034 mac 101034 bytes_out 0 101034 bytes_in 0 101034 station_ip 5.119.179.214 101034 port 13 101034 unique_id port 101034 remote_ip 10.8.1.22 101035 username forozande 101035 mac 101035 bytes_out 0 101035 bytes_in 0 101035 station_ip 83.123.81.155 101035 port 14 101035 unique_id port 100998 station_ip 5.119.179.214 100998 port 34 100998 unique_id port 100998 remote_ip 10.8.0.22 100999 username mehdizare 100999 mac 100999 bytes_out 7386 100999 bytes_in 14653 100999 station_ip 5.119.179.214 100999 port 33 100999 unique_id port 100999 remote_ip 10.8.0.22 101002 username alipour 101002 mac 101002 bytes_out 0 101002 bytes_in 0 101002 station_ip 83.122.42.41 101002 port 20 101002 unique_id port 101004 username amir 101004 mac 101004 bytes_out 0 101004 bytes_in 0 101004 station_ip 46.225.215.186 101004 port 13 101004 unique_id port 101004 remote_ip 10.8.1.34 101005 username mehdizare 101005 mac 101005 bytes_out 0 101005 bytes_in 0 101005 station_ip 5.119.179.214 101005 port 30 101005 unique_id port 101005 remote_ip 10.8.0.22 101006 username forozande 101006 kill_reason Another user logged on this global unique id 101006 mac 101006 bytes_out 0 101006 bytes_in 0 101006 station_ip 83.123.81.155 101006 port 14 101006 unique_id port 101006 remote_ip 10.8.1.62 101009 username ahmadipour 101009 unique_id port 101009 terminate_cause Lost-Carrier 101009 bytes_out 1771362 101009 bytes_in 29414134 101009 station_ip 113.203.60.75 101009 port 15729509 101009 nas_port_type Virtual 101009 remote_ip 5.5.5.255 101010 username forozande 101010 kill_reason Another user logged on this global unique id 101010 mac 101010 bytes_out 0 101010 bytes_in 0 101010 station_ip 83.123.81.155 101010 port 14 101010 unique_id port 101012 username aminvpn 101012 mac 101012 bytes_out 0 101012 bytes_in 0 101012 station_ip 83.122.129.240 101012 port 27 101012 unique_id port 101012 remote_ip 10.8.0.6 101013 username amir 101013 mac 101013 bytes_out 35060 101013 bytes_in 100104 101013 station_ip 46.225.215.186 101013 port 9 101013 unique_id port 101013 remote_ip 10.8.1.34 101018 username forozande 101018 kill_reason Another user logged on this global unique id 101018 mac 101018 bytes_out 0 101018 bytes_in 0 101018 station_ip 83.123.81.155 101018 port 14 101018 unique_id port 101024 username madadi2 101024 mac 101024 bytes_out 0 101024 bytes_in 0 101024 station_ip 5.119.120.221 101024 port 30 101024 unique_id port 101024 remote_ip 10.8.0.26 101025 username amir 101025 mac 101025 bytes_out 27495 101025 bytes_in 105089 101025 station_ip 46.225.215.186 101025 port 9 101025 unique_id port 101025 remote_ip 10.8.1.34 101026 username forozande 101026 kill_reason Another user logged on this global unique id 101026 mac 101026 bytes_out 0 101026 bytes_in 0 101026 station_ip 83.123.81.155 101026 port 14 101026 unique_id port 101029 username forozande 101029 kill_reason Another user logged on this global unique id 101029 mac 101029 bytes_out 0 101029 bytes_in 0 101029 station_ip 83.123.81.155 101029 port 14 101029 unique_id port 101032 username aminvpn 101032 unique_id port 101032 terminate_cause User-Request 101032 bytes_out 15200222 101032 bytes_in 527643063 101032 station_ip 31.57.140.41 101032 port 15729514 101032 nas_port_type Virtual 101032 remote_ip 5.5.5.253 101036 username amir 101036 mac 101036 bytes_out 0 101036 bytes_in 0 101036 station_ip 46.225.215.186 101036 port 9 101036 unique_id port 101036 remote_ip 10.8.1.34 101037 username amir 101037 mac 101037 bytes_out 0 101037 bytes_in 0 101037 station_ip 46.225.215.186 101037 port 9 101037 unique_id port 101037 remote_ip 10.8.1.34 101039 username mehdizare 101039 mac 101039 bytes_out 0 101039 bytes_in 0 101039 station_ip 5.120.169.135 101039 port 14 101039 unique_id port 101039 remote_ip 10.8.1.22 101054 username askari 101054 mac 101020 remote_ip 10.8.1.34 101021 username mehdizare 101021 mac 101021 bytes_out 0 101021 bytes_in 0 101021 station_ip 5.119.179.214 101021 port 30 101021 unique_id port 101021 remote_ip 10.8.0.22 101027 username amir 101027 mac 101027 bytes_out 0 101027 bytes_in 0 101027 station_ip 46.225.215.186 101027 port 9 101027 unique_id port 101027 remote_ip 10.8.1.34 101038 username mehdizare 101038 mac 101038 bytes_out 0 101038 bytes_in 0 101038 station_ip 5.120.169.135 101038 port 15 101038 unique_id port 101038 remote_ip 10.8.1.22 101040 username forozande 101040 kill_reason Another user logged on this global unique id 101040 mac 101040 bytes_out 0 101040 bytes_in 0 101040 station_ip 83.123.81.155 101040 port 13 101040 unique_id port 101040 remote_ip 10.8.1.62 101041 username alipour 101041 kill_reason Another user logged on this global unique id 101041 mac 101041 bytes_out 0 101041 bytes_in 0 101041 station_ip 83.122.42.41 101041 port 20 101041 unique_id port 101041 remote_ip 10.8.0.70 101042 username amir 101042 mac 101042 bytes_out 0 101042 bytes_in 0 101042 station_ip 46.225.215.186 101042 port 9 101042 unique_id port 101042 remote_ip 10.8.1.34 101044 username asadi 101044 mac 101044 bytes_out 0 101044 bytes_in 0 101044 station_ip 83.123.132.181 101044 port 27 101044 unique_id port 101044 remote_ip 10.8.0.50 101045 username mehdizare 101045 mac 101045 bytes_out 0 101045 bytes_in 0 101045 station_ip 5.120.169.135 101045 port 30 101045 unique_id port 101045 remote_ip 10.8.0.22 101051 username askari 101051 mac 101051 bytes_out 0 101051 bytes_in 0 101051 station_ip 5.119.161.238 101051 port 14 101051 unique_id port 101051 remote_ip 10.8.1.30 101052 username forozande 101052 mac 101052 bytes_out 0 101052 bytes_in 0 101052 station_ip 83.123.81.155 101052 port 13 101052 unique_id port 101061 username asadi 101061 mac 101061 bytes_out 0 101061 bytes_in 0 101061 station_ip 83.123.132.181 101061 port 27 101061 unique_id port 101061 remote_ip 10.8.0.50 101066 username askari 101066 mac 101066 bytes_out 0 101066 bytes_in 0 101066 station_ip 5.119.182.85 101066 port 13 101066 unique_id port 101066 remote_ip 10.8.1.30 101070 username askari 101070 mac 101070 bytes_out 0 101070 bytes_in 0 101070 station_ip 5.119.164.144 101070 port 15 101070 unique_id port 101070 remote_ip 10.8.1.30 101078 username abbasaskari 101078 mac 101078 bytes_out 0 101078 bytes_in 0 101078 station_ip 37.129.94.239 101078 port 33 101078 unique_id port 101078 remote_ip 10.8.0.94 101079 username abbasaskari 101079 mac 101079 bytes_out 0 101079 bytes_in 0 101079 station_ip 37.129.94.239 101079 port 20 101079 unique_id port 101079 remote_ip 10.8.0.94 101082 username forozande 101082 mac 101082 bytes_out 0 101082 bytes_in 0 101082 station_ip 83.122.102.207 101082 port 13 101082 unique_id port 101082 remote_ip 10.8.1.62 101084 username mehdizare 101084 mac 101084 bytes_out 0 101084 bytes_in 0 101084 station_ip 5.120.169.135 101084 port 31 101084 unique_id port 101084 remote_ip 10.8.0.22 101091 username abbasaskari 101091 mac 101091 bytes_out 0 101091 bytes_in 0 101091 station_ip 37.129.94.239 101091 port 31 101091 unique_id port 101091 remote_ip 10.8.0.94 101092 username askari 101092 mac 101092 bytes_out 0 101092 bytes_in 0 101092 station_ip 5.119.164.144 101092 port 30 101092 unique_id port 101092 remote_ip 10.8.0.38 101093 username mehdizare 101093 mac 101093 bytes_out 0 101043 username alireza1 101043 unique_id port 101043 terminate_cause User-Request 101043 bytes_out 48869 101043 bytes_in 1503263 101043 station_ip 5.119.133.53 101043 port 15729518 101043 nas_port_type Virtual 101043 remote_ip 5.5.5.253 101046 username forozande 101046 kill_reason Another user logged on this global unique id 101046 mac 101046 bytes_out 0 101046 bytes_in 0 101046 station_ip 83.123.81.155 101046 port 13 101046 unique_id port 101047 username asadi 101047 mac 101047 bytes_out 0 101047 bytes_in 0 101047 station_ip 83.123.132.181 101047 port 31 101047 unique_id port 101047 remote_ip 10.8.0.50 101048 username mehdizare 101048 mac 101048 bytes_out 8643 101048 bytes_in 12291 101048 station_ip 5.120.169.135 101048 port 30 101048 unique_id port 101048 remote_ip 10.8.0.22 101049 username asadi 101049 mac 101049 bytes_out 0 101049 bytes_in 0 101049 station_ip 83.123.132.181 101049 port 27 101049 unique_id port 101049 remote_ip 10.8.0.50 101050 username alirr 101050 unique_id port 101050 terminate_cause Lost-Carrier 101050 bytes_out 392730 101050 bytes_in 4196557 101050 station_ip 5.119.87.83 101050 port 15729517 101050 nas_port_type Virtual 101050 remote_ip 5.5.5.254 101053 username alipour 101053 mac 101053 bytes_out 0 101053 bytes_in 0 101053 station_ip 83.122.42.41 101053 port 20 101053 unique_id port 101055 username asadi 101055 mac 101055 bytes_out 21827 101055 bytes_in 21034 101055 station_ip 83.123.132.181 101055 port 27 101055 unique_id port 101055 remote_ip 10.8.0.50 101056 username asadi 101056 mac 101056 bytes_out 0 101056 bytes_in 0 101056 station_ip 83.123.132.181 101056 port 20 101056 unique_id port 101056 remote_ip 10.8.0.50 101057 username askari 101057 mac 101057 bytes_out 20403 101057 bytes_in 57465 101057 station_ip 5.119.161.238 101057 port 13 101057 unique_id port 101057 remote_ip 10.8.1.30 101059 username askari 101059 mac 101059 bytes_out 11730 101059 bytes_in 22338 101059 station_ip 5.119.182.85 101059 port 13 101059 unique_id port 101059 remote_ip 10.8.1.30 101062 username asadi 101062 mac 101062 bytes_out 0 101062 bytes_in 0 101062 station_ip 83.123.132.181 101062 port 30 101062 unique_id port 101062 remote_ip 10.8.0.50 101065 username alipour 101065 mac 101065 bytes_out 0 101065 bytes_in 0 101065 station_ip 83.122.42.41 101065 port 14 101065 unique_id port 101065 remote_ip 10.8.1.38 101067 username mehdizare 101067 mac 101067 bytes_out 199816 101067 bytes_in 795546 101067 station_ip 5.120.169.135 101067 port 30 101067 unique_id port 101067 remote_ip 10.8.0.22 101072 username asadi 101072 mac 101072 bytes_out 0 101072 bytes_in 0 101072 station_ip 83.123.132.181 101072 port 27 101072 unique_id port 101072 remote_ip 10.8.0.50 101075 username alipour 101075 mac 101075 bytes_out 1187318 101075 bytes_in 17046060 101075 station_ip 83.122.42.41 101075 port 20 101075 unique_id port 101075 remote_ip 10.8.0.70 101076 username aminvpn 101076 unique_id port 101076 terminate_cause Lost-Carrier 101076 bytes_out 417102 101076 bytes_in 5007943 101076 station_ip 5.120.8.241 101076 port 15729520 101076 nas_port_type Virtual 101076 remote_ip 5.5.5.197 101080 username amir 101080 mac 101080 bytes_out 0 101080 bytes_in 0 101080 station_ip 46.225.215.186 101080 port 9 101080 unique_id port 101080 remote_ip 10.8.1.34 101085 username asadi 101085 mac 101085 bytes_out 196633 101085 bytes_in 1406472 101085 station_ip 83.123.132.181 101085 port 27 101085 unique_id port 101085 remote_ip 10.8.0.50 101054 bytes_out 0 101054 bytes_in 0 101054 station_ip 5.119.161.238 101054 port 15 101054 unique_id port 101054 remote_ip 10.8.1.30 101058 username alirr 101058 unique_id port 101058 terminate_cause Lost-Carrier 101058 bytes_out 943927 101058 bytes_in 19823879 101058 station_ip 5.120.14.140 101058 port 15729519 101058 nas_port_type Virtual 101058 remote_ip 5.5.5.189 101060 username mehdizare 101060 mac 101060 bytes_out 0 101060 bytes_in 0 101060 station_ip 5.120.169.135 101060 port 31 101060 unique_id port 101060 remote_ip 10.8.0.22 101063 username alipour 101063 mac 101063 bytes_out 0 101063 bytes_in 0 101063 station_ip 83.122.42.41 101063 port 14 101063 unique_id port 101063 remote_ip 10.8.1.38 101064 username mehdizare 101064 mac 101064 bytes_out 17204 101064 bytes_in 27220 101064 station_ip 5.120.169.135 101064 port 20 101064 unique_id port 101064 remote_ip 10.8.0.22 101068 username askari 101068 mac 101068 bytes_out 11879 101068 bytes_in 25229 101068 station_ip 5.119.164.144 101068 port 14 101068 unique_id port 101068 remote_ip 10.8.1.30 101069 username mehdizare 101069 mac 101069 bytes_out 24300 101069 bytes_in 36617 101069 station_ip 5.120.169.135 101069 port 30 101069 unique_id port 101069 remote_ip 10.8.0.22 101071 username askari 101071 mac 101071 bytes_out 0 101071 bytes_in 0 101071 station_ip 5.119.164.144 101071 port 14 101071 unique_id port 101071 remote_ip 10.8.1.30 101073 username askari 101073 mac 101073 bytes_out 128458 101073 bytes_in 513131 101073 station_ip 5.119.164.144 101073 port 15 101073 unique_id port 101073 remote_ip 10.8.1.30 101074 username forozande 101074 mac 101074 bytes_out 495180 101074 bytes_in 2485907 101074 station_ip 83.122.51.139 101074 port 13 101074 unique_id port 101074 remote_ip 10.8.1.62 101077 username farhad1 101077 mac 101077 bytes_out 0 101077 bytes_in 0 101077 station_ip 5.119.206.210 101077 port 20 101077 unique_id port 101077 remote_ip 10.8.0.102 101081 username amir 101081 mac 101081 bytes_out 0 101081 bytes_in 0 101081 station_ip 46.225.215.186 101081 port 9 101081 unique_id port 101081 remote_ip 10.8.1.34 101083 username alipour 101083 mac 101083 bytes_out 124949 101083 bytes_in 185620 101083 station_ip 83.122.42.41 101083 port 34 101083 unique_id port 101083 remote_ip 10.8.0.70 101088 username alireza1 101088 unique_id port 101088 terminate_cause User-Request 101088 bytes_out 28769 101088 bytes_in 170103 101088 station_ip 5.119.133.53 101088 port 15729522 101088 nas_port_type Virtual 101088 remote_ip 5.5.5.190 101094 username reza2742 101094 unique_id port 101094 terminate_cause User-Request 101094 bytes_out 131056 101094 bytes_in 1212511 101094 station_ip 83.123.108.164 101094 port 15729525 101094 nas_port_type Virtual 101094 remote_ip 5.5.5.255 101095 username mehdizare 101095 mac 101095 bytes_out 0 101095 bytes_in 0 101095 station_ip 5.120.169.135 101095 port 30 101095 unique_id port 101095 remote_ip 10.8.0.22 101102 username asadi 101102 mac 101102 bytes_out 161864 101102 bytes_in 853506 101102 station_ip 83.123.132.181 101102 port 27 101102 unique_id port 101102 remote_ip 10.8.0.50 101108 username forozande 101108 mac 101108 bytes_out 0 101108 bytes_in 0 101108 station_ip 113.203.52.124 101108 port 9 101108 unique_id port 101108 remote_ip 10.8.1.62 101112 username alihosseini 101112 mac 101112 bytes_out 0 101112 bytes_in 0 101112 station_ip 5.120.124.219 101112 port 20 101112 unique_id port 101112 remote_ip 10.8.0.14 101118 username amir 101086 username forozande 101086 mac 101086 bytes_out 0 101086 bytes_in 0 101086 station_ip 83.122.46.231 101086 port 9 101086 unique_id port 101086 remote_ip 10.8.1.62 101087 username hoorieh 101087 mac 101087 bytes_out 0 101087 bytes_in 0 101087 station_ip 5.120.20.125 101087 port 31 101087 unique_id port 101087 remote_ip 10.8.0.10 101089 username abbasaskari 101089 mac 101089 bytes_out 0 101089 bytes_in 0 101089 station_ip 37.129.94.239 101089 port 35 101089 unique_id port 101089 remote_ip 10.8.0.94 101090 username alirr 101090 unique_id port 101090 terminate_cause User-Request 101090 bytes_out 396771 101090 bytes_in 1934440 101090 station_ip 5.119.226.105 101090 port 15729521 101090 nas_port_type Virtual 101090 remote_ip 5.5.5.188 101098 username alipour 101098 mac 101098 bytes_out 0 101098 bytes_in 0 101098 station_ip 83.122.42.41 101098 port 33 101098 unique_id port 101098 remote_ip 10.8.0.70 101099 username asadi 101099 mac 101099 bytes_out 0 101099 bytes_in 0 101099 station_ip 83.123.132.181 101099 port 27 101099 unique_id port 101099 remote_ip 10.8.0.50 101101 username askari 101101 mac 101101 bytes_out 1930641 101101 bytes_in 26725398 101101 station_ip 5.119.164.144 101101 port 31 101101 unique_id port 101101 remote_ip 10.8.0.38 101103 username amir 101103 mac 101103 bytes_out 2813010 101103 bytes_in 9324316 101103 station_ip 46.225.215.186 101103 port 20 101103 unique_id port 101103 remote_ip 10.8.0.54 101110 username asadi 101110 mac 101110 bytes_out 0 101110 bytes_in 0 101110 station_ip 83.123.132.181 101110 port 27 101110 unique_id port 101110 remote_ip 10.8.0.50 101114 username forozande 101114 mac 101114 bytes_out 245076 101114 bytes_in 1314876 101114 station_ip 83.123.91.46 101114 port 9 101114 unique_id port 101114 remote_ip 10.8.1.62 101115 username aminvpn 101115 unique_id port 101115 terminate_cause Lost-Carrier 101115 bytes_out 1530373 101115 bytes_in 25229542 101115 station_ip 5.119.26.150 101115 port 15729530 101115 nas_port_type Virtual 101115 remote_ip 5.5.5.255 101117 username tahmasebi 101117 kill_reason Another user logged on this global unique id 101117 mac 101117 bytes_out 0 101117 bytes_in 0 101117 station_ip 5.120.73.121 101117 port 20 101117 unique_id port 101117 remote_ip 10.8.0.66 101121 username mammad 101121 unique_id port 101121 terminate_cause User-Request 101121 bytes_out 0 101121 bytes_in 0 101121 station_ip 46.100.223.190 101121 port 15729531 101121 nas_port_type Virtual 101121 remote_ip 5.5.5.255 101122 username abbasaskari 101122 mac 101122 bytes_out 16883 101122 bytes_in 52539 101122 station_ip 83.123.172.50 101122 port 35 101122 unique_id port 101122 remote_ip 10.8.0.94 101124 username tahmasebi 101124 mac 101124 bytes_out 0 101124 bytes_in 0 101124 station_ip 5.120.73.121 101124 port 20 101124 unique_id port 101128 username alihosseini 101128 kill_reason Maximum number of concurrent logins reached 101128 mac 101128 bytes_out 0 101128 bytes_in 0 101128 station_ip 5.119.109.26 101128 port 14 101128 unique_id port 101134 username askari 101134 mac 101134 bytes_out 3111409 101134 bytes_in 43125949 101134 station_ip 5.120.77.234 101134 port 34 101134 unique_id port 101134 remote_ip 10.8.0.38 101141 username mehdizare 101141 mac 101141 bytes_out 10029 101141 bytes_in 13518 101141 station_ip 5.119.24.254 101141 port 33 101141 unique_id port 101141 remote_ip 10.8.0.22 101145 username hoorieh 101145 mac 101145 bytes_out 934338 101145 bytes_in 11074244 101145 station_ip 5.120.20.125 101145 port 30 101093 bytes_in 0 101093 station_ip 5.120.169.135 101093 port 34 101093 unique_id port 101093 remote_ip 10.8.0.22 101096 username forozande 101096 mac 101096 bytes_out 204336 101096 bytes_in 1481766 101096 station_ip 83.123.71.101 101096 port 9 101096 unique_id port 101096 remote_ip 10.8.1.62 101097 username alirr 101097 unique_id port 101097 terminate_cause User-Request 101097 bytes_out 685547 101097 bytes_in 18426134 101097 station_ip 31.59.35.174 101097 port 15729526 101097 nas_port_type Virtual 101097 remote_ip 5.5.5.183 101100 username alipour 101100 mac 101100 bytes_out 0 101100 bytes_in 0 101100 station_ip 83.122.42.41 101100 port 27 101100 unique_id port 101100 remote_ip 10.8.0.70 101104 username aminvpn 101104 mac 101104 bytes_out 109117 101104 bytes_in 459048 101104 station_ip 83.122.170.167 101104 port 27 101104 unique_id port 101104 remote_ip 10.8.0.6 101105 username amir 101105 mac 101105 bytes_out 411187 101105 bytes_in 993643 101105 station_ip 46.225.215.186 101105 port 20 101105 unique_id port 101105 remote_ip 10.8.0.54 101106 username amir 101106 mac 101106 bytes_out 0 101106 bytes_in 0 101106 station_ip 46.225.215.186 101106 port 27 101106 unique_id port 101106 remote_ip 10.8.0.54 101107 username asadi 101107 mac 101107 bytes_out 0 101107 bytes_in 0 101107 station_ip 83.123.132.181 101107 port 31 101107 unique_id port 101107 remote_ip 10.8.0.50 101109 username alireza1 101109 unique_id port 101109 terminate_cause User-Request 101109 bytes_out 217414 101109 bytes_in 365431 101109 station_ip 5.119.133.53 101109 port 15729529 101109 nas_port_type Virtual 101109 remote_ip 5.5.5.186 101111 username amir 101111 mac 101111 bytes_out 0 101111 bytes_in 0 101111 station_ip 46.225.215.186 101111 port 27 101111 unique_id port 101111 remote_ip 10.8.0.54 101113 username abbasaskari 101113 mac 101113 bytes_out 0 101113 bytes_in 0 101113 station_ip 83.123.233.62 101113 port 31 101113 unique_id port 101113 remote_ip 10.8.0.94 101116 username mehdizare 101116 mac 101116 bytes_out 71322 101116 bytes_in 108142 101116 station_ip 5.119.24.254 101116 port 34 101116 unique_id port 101116 remote_ip 10.8.0.22 101119 username amir 101119 mac 101119 bytes_out 28792 101119 bytes_in 56502 101119 station_ip 46.225.215.186 101119 port 31 101119 unique_id port 101119 remote_ip 10.8.0.54 101120 username mammad 101120 unique_id port 101120 terminate_cause User-Request 101120 bytes_out 2852020 101120 bytes_in 26953124 101120 station_ip 46.100.223.190 101120 port 15729528 101120 nas_port_type Virtual 101120 remote_ip 5.5.5.185 101123 username amir 101123 mac 101123 bytes_out 0 101123 bytes_in 0 101123 station_ip 46.225.215.186 101123 port 31 101123 unique_id port 101123 remote_ip 10.8.0.54 101125 username amir 101125 mac 101125 bytes_out 46584 101125 bytes_in 37429 101125 station_ip 46.225.215.186 101125 port 31 101125 unique_id port 101125 remote_ip 10.8.0.54 101126 username asadi 101126 mac 101126 bytes_out 41811 101126 bytes_in 44358 101126 station_ip 83.123.206.45 101126 port 33 101126 unique_id port 101126 remote_ip 10.8.0.50 101127 username fariba 101127 kill_reason Another user logged on this global unique id 101127 mac 101127 bytes_out 0 101127 bytes_in 0 101127 station_ip 5.120.119.67 101127 port 32 101127 unique_id port 101127 remote_ip 10.8.0.46 101129 username alihosseini 101129 mac 101129 bytes_out 1440429 101129 bytes_in 15090866 101129 station_ip 5.120.84.37 101129 port 13 101129 unique_id port 101129 remote_ip 10.8.1.6 101118 mac 101118 bytes_out 80348 101118 bytes_in 86677 101118 station_ip 46.225.215.186 101118 port 31 101118 unique_id port 101118 remote_ip 10.8.0.54 101131 username amir 101131 mac 101131 bytes_out 0 101131 bytes_in 0 101131 station_ip 46.225.215.186 101131 port 31 101131 unique_id port 101131 remote_ip 10.8.0.54 101132 username amir 101132 mac 101132 bytes_out 0 101132 bytes_in 0 101132 station_ip 46.225.215.186 101132 port 20 101132 unique_id port 101132 remote_ip 10.8.0.54 101133 username alihosseini 101133 mac 101133 bytes_out 1083507 101133 bytes_in 12016381 101133 station_ip 5.119.109.26 101133 port 33 101133 unique_id port 101133 remote_ip 10.8.0.14 101135 username abbasaskari 101135 mac 101135 bytes_out 59106 101135 bytes_in 395904 101135 station_ip 83.123.143.230 101135 port 20 101135 unique_id port 101135 remote_ip 10.8.0.94 101138 username madadi2 101138 mac 101138 bytes_out 1732783 101138 bytes_in 4506239 101138 station_ip 5.119.81.246 101138 port 30 101138 unique_id port 101138 remote_ip 10.8.0.26 101144 username arabpour 101144 unique_id port 101144 terminate_cause User-Request 101144 bytes_out 288719 101144 bytes_in 2504226 101144 station_ip 37.129.137.116 101144 port 15729534 101144 nas_port_type Virtual 101144 remote_ip 5.5.5.180 101146 username mehdizare 101146 mac 101146 bytes_out 37231 101146 bytes_in 35837 101146 station_ip 5.120.41.65 101146 port 34 101146 unique_id port 101146 remote_ip 10.8.0.22 101147 username mehdizare 101147 mac 101147 bytes_out 6364 101147 bytes_in 13354 101147 station_ip 5.120.41.65 101147 port 30 101147 unique_id port 101147 remote_ip 10.8.0.22 101149 username amir 101149 mac 101149 bytes_out 0 101149 bytes_in 0 101149 station_ip 46.225.215.186 101149 port 20 101149 unique_id port 101149 remote_ip 10.8.0.54 101151 username amir 101151 kill_reason Maximum check online fails reached 101151 mac 101151 bytes_out 0 101151 bytes_in 0 101151 station_ip 46.225.215.186 101151 port 20 101151 unique_id port 101155 username amir 101155 mac 101155 bytes_out 0 101155 bytes_in 0 101155 station_ip 46.225.215.186 101155 port 14 101155 unique_id port 101155 remote_ip 10.8.1.34 101156 username amir 101156 mac 101156 bytes_out 0 101156 bytes_in 0 101156 station_ip 46.225.215.186 101156 port 14 101156 unique_id port 101156 remote_ip 10.8.1.34 101157 username madadi2 101157 mac 101157 bytes_out 0 101157 bytes_in 0 101157 station_ip 5.120.136.164 101157 port 27 101157 unique_id port 101157 remote_ip 10.8.0.26 101160 username amir 101160 mac 101160 bytes_out 0 101160 bytes_in 0 101160 station_ip 46.225.215.186 101160 port 27 101160 unique_id port 101160 remote_ip 10.8.0.54 101164 username amir 101164 kill_reason Maximum check online fails reached 101164 mac 101164 bytes_out 0 101164 bytes_in 0 101164 station_ip 46.225.215.186 101164 port 13 101164 unique_id port 101167 username abbasaskari 101167 mac 101167 bytes_out 0 101167 bytes_in 0 101167 station_ip 83.123.180.54 101167 port 30 101167 unique_id port 101167 remote_ip 10.8.0.94 101168 username amir 101168 mac 101168 bytes_out 0 101168 bytes_in 0 101168 station_ip 46.225.215.186 101168 port 27 101168 unique_id port 101168 remote_ip 10.8.0.54 101170 username amir 101170 mac 101170 bytes_out 0 101170 bytes_in 0 101170 station_ip 46.225.215.186 101170 port 15 101170 unique_id port 101170 remote_ip 10.8.1.34 101171 username amir 101171 mac 101171 bytes_out 24142 101171 bytes_in 30906 101130 username alihosseini 101130 mac 101130 bytes_out 0 101130 bytes_in 0 101130 station_ip 5.119.109.26 101130 port 20 101130 unique_id port 101130 remote_ip 10.8.0.14 101136 username alihosseini 101136 mac 101136 bytes_out 0 101136 bytes_in 0 101136 station_ip 5.120.137.194 101136 port 13 101136 unique_id port 101136 remote_ip 10.8.1.6 101137 username ahmadi 101137 unique_id port 101137 terminate_cause User-Request 101137 bytes_out 78690 101137 bytes_in 771505 101137 station_ip 83.123.173.245 101137 port 15729533 101137 nas_port_type Virtual 101137 remote_ip 5.5.5.178 101139 username alihosseini 101139 mac 101139 bytes_out 901197 101139 bytes_in 7129252 101139 station_ip 5.120.137.194 101139 port 13 101139 unique_id port 101139 remote_ip 10.8.1.6 101140 username mehdizare 101140 mac 101140 bytes_out 0 101140 bytes_in 0 101140 station_ip 5.119.24.254 101140 port 9 101140 unique_id port 101140 remote_ip 10.8.1.22 101142 username amir 101142 mac 101142 bytes_out 580852 101142 bytes_in 5580409 101142 station_ip 46.225.215.186 101142 port 35 101142 unique_id port 101142 remote_ip 10.8.0.54 101143 username alihosseini 101143 mac 101143 bytes_out 476984 101143 bytes_in 4230778 101143 station_ip 5.120.168.239 101143 port 20 101143 unique_id port 101143 remote_ip 10.8.0.14 101150 username aminvpn 101150 mac 101150 bytes_out 0 101150 bytes_in 0 101150 station_ip 37.129.255.183 101150 port 27 101150 unique_id port 101150 remote_ip 10.8.0.6 101153 username amir 101153 mac 101153 bytes_out 0 101153 bytes_in 0 101153 station_ip 46.225.215.186 101153 port 30 101153 unique_id port 101153 remote_ip 10.8.0.54 101158 username alireza1 101158 unique_id port 101158 terminate_cause Lost-Carrier 101158 bytes_out 429949 101158 bytes_in 635348 101158 station_ip 5.119.133.53 101158 port 15729532 101158 nas_port_type Virtual 101158 remote_ip 5.5.5.255 101159 username amir 101159 kill_reason Maximum check online fails reached 101159 mac 101159 bytes_out 0 101159 bytes_in 0 101159 station_ip 46.225.215.186 101159 port 14 101159 unique_id port 101161 username forozande 101161 mac 101161 bytes_out 2919766 101161 bytes_in 29168034 101161 station_ip 83.122.234.97 101161 port 13 101161 unique_id port 101161 remote_ip 10.8.1.62 101163 username amir 101163 mac 101163 bytes_out 0 101163 bytes_in 0 101163 station_ip 46.225.215.186 101163 port 27 101163 unique_id port 101163 remote_ip 10.8.0.54 101165 username forozande 101165 mac 101165 bytes_out 0 101165 bytes_in 0 101165 station_ip 83.122.53.17 101165 port 15 101165 unique_id port 101165 remote_ip 10.8.1.62 101166 username amir 101166 mac 101166 bytes_out 0 101166 bytes_in 0 101166 station_ip 46.225.215.186 101166 port 15 101166 unique_id port 101166 remote_ip 10.8.1.34 101169 username alireza1 101169 unique_id port 101169 terminate_cause Lost-Carrier 101169 bytes_out 188 101169 bytes_in 180 101169 station_ip 5.119.133.53 101169 port 15729536 101169 nas_port_type Virtual 101169 remote_ip 5.5.5.254 101172 username amir 101172 mac 101172 bytes_out 17239 101172 bytes_in 37841 101172 station_ip 46.225.215.186 101172 port 15 101172 unique_id port 101172 remote_ip 10.8.1.34 101173 username mehdizare 101173 mac 101173 bytes_out 218475 101173 bytes_in 260226 101173 station_ip 5.120.30.204 101173 port 9 101173 unique_id port 101173 remote_ip 10.8.1.22 101179 username mohammadmahdi 101179 kill_reason Another user logged on this global unique id 101179 mac 101179 bytes_out 0 101179 bytes_in 0 101179 station_ip 5.119.158.25 101145 unique_id port 101145 remote_ip 10.8.0.10 101148 username madadi2 101148 mac 101148 bytes_out 0 101148 bytes_in 0 101148 station_ip 5.119.128.103 101148 port 20 101148 unique_id port 101148 remote_ip 10.8.0.26 101152 username aminvpn 101152 unique_id port 101152 terminate_cause User-Request 101152 bytes_out 1864812 101152 bytes_in 29073461 101152 station_ip 37.129.255.183 101152 port 15729535 101152 nas_port_type Virtual 101152 remote_ip 5.5.5.182 101154 username alihosseini 101154 mac 101154 bytes_out 0 101154 bytes_in 0 101154 station_ip 5.120.40.176 101154 port 33 101154 unique_id port 101154 remote_ip 10.8.0.14 101162 username amir 101162 mac 101162 bytes_out 0 101162 bytes_in 0 101162 station_ip 46.225.215.186 101162 port 27 101162 unique_id port 101162 remote_ip 10.8.0.54 101174 username amir 101174 mac 101174 bytes_out 0 101174 bytes_in 0 101174 station_ip 46.225.215.186 101174 port 36 101174 unique_id port 101174 remote_ip 10.8.0.54 101175 username mohammadmahdi 101175 kill_reason Another user logged on this global unique id 101175 mac 101175 bytes_out 0 101175 bytes_in 0 101175 station_ip 5.119.158.25 101175 port 30 101175 unique_id port 101175 remote_ip 10.8.0.34 101176 username abbasaskari 101176 mac 101176 bytes_out 28193 101176 bytes_in 45597 101176 station_ip 83.123.180.54 101176 port 33 101176 unique_id port 101176 remote_ip 10.8.0.94 101181 username shahrooz 101181 kill_reason Maximum check online fails reached 101181 unique_id port 101181 bytes_out 206542 101181 bytes_in 889664 101181 station_ip 83.123.246.192 101181 port 15729540 101181 nas_port_type Virtual 101181 remote_ip 5.5.5.176 101183 username musa 101183 mac 101183 bytes_out 0 101183 bytes_in 0 101183 station_ip 83.122.197.196 101183 port 34 101183 unique_id port 101183 remote_ip 10.8.0.106 101194 username mohammadmahdi 101194 mac 101194 bytes_out 0 101194 bytes_in 0 101194 station_ip 5.119.158.25 101194 port 30 101194 unique_id port 101197 username madadi2 101197 mac 101197 bytes_out 0 101197 bytes_in 0 101197 station_ip 5.119.249.33 101197 port 34 101197 unique_id port 101197 remote_ip 10.8.0.26 101200 username khalili 101200 kill_reason Another user logged on this global unique id 101200 mac 101200 bytes_out 0 101200 bytes_in 0 101200 station_ip 5.120.161.45 101200 port 27 101200 unique_id port 101204 username mirzaei 101204 kill_reason Another user logged on this global unique id 101204 mac 101204 bytes_out 0 101204 bytes_in 0 101204 station_ip 5.120.132.26 101204 port 29 101204 unique_id port 101209 username ahmadi 101209 unique_id port 101209 terminate_cause User-Request 101209 bytes_out 63318 101209 bytes_in 509533 101209 station_ip 83.123.68.6 101209 port 15729546 101209 nas_port_type Virtual 101209 remote_ip 5.5.5.255 101212 username amir 101212 mac 101212 bytes_out 0 101212 bytes_in 0 101212 station_ip 46.225.215.186 101212 port 31 101212 unique_id port 101212 remote_ip 10.8.0.54 101217 username amir 101217 mac 101217 bytes_out 42986 101217 bytes_in 80761 101217 station_ip 46.225.215.186 101217 port 34 101217 unique_id port 101217 remote_ip 10.8.0.54 101219 username khalili 101219 kill_reason Another user logged on this global unique id 101219 mac 101219 bytes_out 0 101219 bytes_in 0 101219 station_ip 5.120.161.45 101219 port 27 101219 unique_id port 101220 username askari 101220 mac 101220 bytes_out 3288056 101220 bytes_in 44932718 101220 station_ip 5.119.165.143 101220 port 33 101220 unique_id port 101220 remote_ip 10.8.0.38 101229 username khalili 101229 kill_reason Another user logged on this global unique id 101171 station_ip 46.225.215.186 101171 port 15 101171 unique_id port 101171 remote_ip 10.8.1.34 101177 username mohammadmahdi 101177 kill_reason Another user logged on this global unique id 101177 mac 101177 bytes_out 0 101177 bytes_in 0 101177 station_ip 5.119.158.25 101177 port 30 101177 unique_id port 101178 username amir 101178 mac 101178 bytes_out 0 101178 bytes_in 0 101178 station_ip 46.225.215.186 101178 port 33 101178 unique_id port 101178 remote_ip 10.8.0.54 101188 username reza2742 101188 unique_id port 101188 terminate_cause Lost-Carrier 101188 bytes_out 4701135 101188 bytes_in 88213206 101188 station_ip 5.202.25.203 101188 port 15729539 101188 nas_port_type Virtual 101188 remote_ip 5.5.5.174 101189 username askari 101189 mac 101189 bytes_out 0 101189 bytes_in 0 101189 station_ip 5.119.165.143 101189 port 34 101189 unique_id port 101189 remote_ip 10.8.0.38 101191 username askari 101191 mac 101191 bytes_out 641662 101191 bytes_in 9061964 101191 station_ip 5.119.165.143 101191 port 31 101191 unique_id port 101191 remote_ip 10.8.0.38 101193 username alireza1 101193 unique_id port 101193 terminate_cause Lost-Carrier 101193 bytes_out 247567 101193 bytes_in 1069205 101193 station_ip 5.119.133.53 101193 port 15729541 101193 nas_port_type Virtual 101193 remote_ip 5.5.5.177 101198 username ahmadipour 101198 unique_id port 101198 terminate_cause Lost-Carrier 101198 bytes_out 913059 101198 bytes_in 11964884 101198 station_ip 83.123.73.87 101198 port 15729544 101198 nas_port_type Virtual 101198 remote_ip 5.5.5.168 101201 username amir 101201 mac 101201 bytes_out 0 101201 bytes_in 0 101201 station_ip 46.225.215.186 101201 port 33 101201 unique_id port 101201 remote_ip 10.8.0.54 101203 username askari 101203 mac 101203 bytes_out 26609 101203 bytes_in 40851 101203 station_ip 5.119.165.143 101203 port 9 101203 unique_id port 101203 remote_ip 10.8.1.30 101205 username askari 101205 mac 101205 bytes_out 597311 101205 bytes_in 12164840 101205 station_ip 5.119.165.143 101205 port 9 101205 unique_id port 101205 remote_ip 10.8.1.30 101213 username khalili 101213 kill_reason Another user logged on this global unique id 101213 mac 101213 bytes_out 0 101213 bytes_in 0 101213 station_ip 5.120.161.45 101213 port 27 101213 unique_id port 101215 username mehdizare 101215 mac 101215 bytes_out 406310 101215 bytes_in 619326 101215 station_ip 5.119.86.73 101215 port 35 101215 unique_id port 101215 remote_ip 10.8.0.22 101216 username amir 101216 mac 101216 bytes_out 0 101216 bytes_in 0 101216 station_ip 46.225.215.186 101216 port 31 101216 unique_id port 101216 remote_ip 10.8.0.54 101223 username khalili 101223 kill_reason Another user logged on this global unique id 101223 mac 101223 bytes_out 0 101223 bytes_in 0 101223 station_ip 5.120.161.45 101223 port 27 101223 unique_id port 101228 username rezasekonji 101228 unique_id port 101228 terminate_cause User-Request 101228 bytes_out 2563 101228 bytes_in 1829 101228 station_ip 83.122.224.144 101228 port 15729548 101228 nas_port_type Virtual 101228 remote_ip 5.5.5.157 101233 username amir 101233 mac 101233 bytes_out 0 101233 bytes_in 0 101233 station_ip 46.225.215.186 101233 port 33 101233 unique_id port 101233 remote_ip 10.8.0.54 101235 username alemzadeh 101235 unique_id port 101235 terminate_cause User-Request 101235 bytes_out 325246 101235 bytes_in 1963895 101235 station_ip 37.129.215.63 101235 port 15729550 101235 nas_port_type Virtual 101235 remote_ip 5.5.5.162 101238 username aminvpn 101238 unique_id port 101238 terminate_cause Lost-Carrier 101238 bytes_out 70986 101238 bytes_in 231141 101179 port 30 101179 unique_id port 101180 username mammad 101180 unique_id port 101180 terminate_cause User-Request 101180 bytes_out 2097596 101180 bytes_in 19776000 101180 station_ip 46.100.223.190 101180 port 15729537 101180 nas_port_type Virtual 101180 remote_ip 5.5.5.255 101182 username alirr 101182 unique_id port 101182 terminate_cause Lost-Carrier 101182 bytes_out 570980 101182 bytes_in 1332155 101182 station_ip 5.119.30.230 101182 port 15729538 101182 nas_port_type Virtual 101182 remote_ip 5.5.5.172 101184 username aminvpn 101184 unique_id port 101184 terminate_cause User-Request 101184 bytes_out 2835997 101184 bytes_in 87296273 101184 station_ip 31.57.140.41 101184 port 15729542 101184 nas_port_type Virtual 101184 remote_ip 5.5.5.255 101185 username amir 101185 mac 101185 bytes_out 0 101185 bytes_in 0 101185 station_ip 46.225.215.186 101185 port 33 101185 unique_id port 101185 remote_ip 10.8.0.54 101186 username mohammadmahdi 101186 kill_reason Another user logged on this global unique id 101186 mac 101186 bytes_out 0 101186 bytes_in 0 101186 station_ip 5.119.158.25 101186 port 30 101186 unique_id port 101187 username asadi 101187 mac 101187 bytes_out 0 101187 bytes_in 0 101187 station_ip 83.123.206.45 101187 port 31 101187 unique_id port 101187 remote_ip 10.8.0.50 101190 username khalili 101190 kill_reason Another user logged on this global unique id 101190 mac 101190 bytes_out 0 101190 bytes_in 0 101190 station_ip 5.120.161.45 101190 port 27 101190 unique_id port 101190 remote_ip 10.8.0.78 101192 username mirzaei 101192 kill_reason Another user logged on this global unique id 101192 mac 101192 bytes_out 0 101192 bytes_in 0 101192 station_ip 5.120.132.26 101192 port 29 101192 unique_id port 101195 username mammad 101195 unique_id port 101195 terminate_cause User-Request 101195 bytes_out 1020858 101195 bytes_in 14260164 101195 station_ip 46.100.223.190 101195 port 15729543 101195 nas_port_type Virtual 101195 remote_ip 5.5.5.166 101196 username alireza1 101196 unique_id port 101196 terminate_cause User-Request 101196 bytes_out 379 101196 bytes_in 222 101196 station_ip 5.119.133.53 101196 port 15729545 101196 nas_port_type Virtual 101196 remote_ip 5.5.5.169 101199 username askari 101199 mac 101199 bytes_out 0 101199 bytes_in 0 101199 station_ip 5.119.165.143 101199 port 31 101199 unique_id port 101199 remote_ip 10.8.0.38 101202 username khalili 101202 kill_reason Another user logged on this global unique id 101202 mac 101202 bytes_out 0 101202 bytes_in 0 101202 station_ip 5.120.161.45 101202 port 27 101202 unique_id port 101206 username askari 101206 mac 101206 bytes_out 0 101206 bytes_in 0 101206 station_ip 5.119.165.143 101206 port 9 101206 unique_id port 101206 remote_ip 10.8.1.30 101207 username amir 101207 mac 101207 bytes_out 548873 101207 bytes_in 3980033 101207 station_ip 46.225.215.186 101207 port 30 101207 unique_id port 101207 remote_ip 10.8.0.54 101208 username madadi2 101208 mac 101208 bytes_out 181836 101208 bytes_in 173524 101208 station_ip 5.120.110.144 101208 port 31 101208 unique_id port 101208 remote_ip 10.8.0.26 101210 username askari 101210 mac 101210 bytes_out 1206732 101210 bytes_in 22736504 101210 station_ip 5.119.165.143 101210 port 15 101210 unique_id port 101210 remote_ip 10.8.1.30 101211 username askari 101211 mac 101211 bytes_out 0 101211 bytes_in 0 101211 station_ip 5.119.165.143 101211 port 30 101211 unique_id port 101211 remote_ip 10.8.0.38 101214 username amir 101214 mac 101214 bytes_out 188797 101214 bytes_in 1640838 101214 station_ip 46.225.215.186 101214 port 30 101214 unique_id port 101214 remote_ip 10.8.0.54 101218 username mirzaei 101218 kill_reason Another user logged on this global unique id 101218 mac 101218 bytes_out 0 101218 bytes_in 0 101218 station_ip 5.120.132.26 101218 port 29 101218 unique_id port 101221 username amir 101221 mac 101221 bytes_out 35411 101221 bytes_in 241707 101221 station_ip 46.225.215.186 101221 port 33 101221 unique_id port 101221 remote_ip 10.8.0.54 101222 username aminvpn 101222 unique_id port 101222 terminate_cause Lost-Carrier 101222 bytes_out 2618103 101222 bytes_in 53326736 101222 station_ip 5.119.230.48 101222 port 15729547 101222 nas_port_type Virtual 101222 remote_ip 5.5.5.155 101224 username amir 101224 mac 101224 bytes_out 5628718 101224 bytes_in 1217496 101224 station_ip 46.225.215.186 101224 port 33 101224 unique_id port 101224 remote_ip 10.8.0.54 101225 username amir 101225 mac 101225 bytes_out 17052 101225 bytes_in 25689 101225 station_ip 46.225.215.186 101225 port 33 101225 unique_id port 101225 remote_ip 10.8.0.54 101226 username aminvpn 101226 mac 101226 bytes_out 1361265 101226 bytes_in 14972165 101226 station_ip 5.119.230.48 101226 port 34 101226 unique_id port 101226 remote_ip 10.8.0.6 101227 username aminvpn 101227 mac 101227 bytes_out 0 101227 bytes_in 0 101227 station_ip 5.119.230.48 101227 port 33 101227 unique_id port 101227 remote_ip 10.8.0.6 101230 username alihosseini 101230 kill_reason Another user logged on this global unique id 101230 mac 101230 bytes_out 0 101230 bytes_in 0 101230 station_ip 5.120.11.53 101230 port 31 101230 unique_id port 101230 remote_ip 10.8.0.14 101232 username abbasaskari 101232 mac 101232 bytes_out 14978 101232 bytes_in 38165 101232 station_ip 37.129.152.0 101232 port 33 101232 unique_id port 101232 remote_ip 10.8.0.94 101237 username khalili 101237 kill_reason Another user logged on this global unique id 101237 mac 101237 bytes_out 0 101237 bytes_in 0 101237 station_ip 5.120.161.45 101237 port 27 101237 unique_id port 101244 username aminvpn 101244 mac 101244 bytes_out 0 101244 bytes_in 0 101244 station_ip 5.119.230.48 101244 port 31 101244 unique_id port 101244 remote_ip 10.8.0.6 101245 username mehdizare 101245 mac 101245 bytes_out 0 101245 bytes_in 0 101245 station_ip 5.119.86.73 101245 port 15 101245 unique_id port 101245 remote_ip 10.8.1.22 101246 username mehdizare 101246 mac 101246 bytes_out 0 101246 bytes_in 0 101246 station_ip 5.119.86.73 101246 port 15 101246 unique_id port 101246 remote_ip 10.8.1.22 101249 username aminvpn 101249 mac 101249 bytes_out 0 101249 bytes_in 0 101249 station_ip 5.119.230.48 101249 port 35 101249 unique_id port 101249 remote_ip 10.8.0.6 101254 username aminvpn 101254 mac 101254 bytes_out 397108 101254 bytes_in 3294866 101254 station_ip 5.119.230.48 101254 port 33 101254 unique_id port 101254 remote_ip 10.8.0.6 101260 username forozande 101260 mac 101260 bytes_out 10746950 101260 bytes_in 38737597 101260 station_ip 83.122.111.226 101260 port 9 101260 unique_id port 101260 remote_ip 10.8.1.62 101261 username mehdizare 101261 mac 101261 bytes_out 0 101261 bytes_in 0 101261 station_ip 5.119.86.73 101261 port 15 101261 unique_id port 101261 remote_ip 10.8.1.22 101271 username mohammadmahdi 101271 kill_reason Maximum check online fails reached 101271 mac 101271 bytes_out 0 101271 bytes_in 0 101271 station_ip 5.119.158.25 101271 port 34 101271 unique_id port 101276 username amir 101276 mac 101276 bytes_out 6460247 101276 bytes_in 21853790 101276 station_ip 46.225.215.186 101229 mac 101229 bytes_out 0 101229 bytes_in 0 101229 station_ip 5.120.161.45 101229 port 27 101229 unique_id port 101231 username amir 101231 mac 101231 bytes_out 0 101231 bytes_in 0 101231 station_ip 46.225.215.186 101231 port 33 101231 unique_id port 101231 remote_ip 10.8.0.54 101234 username aminvpn 101234 mac 101234 bytes_out 0 101234 bytes_in 0 101234 station_ip 5.119.230.48 101234 port 33 101234 unique_id port 101234 remote_ip 10.8.0.6 101236 username alireza1 101236 unique_id port 101236 terminate_cause Lost-Carrier 101236 bytes_out 112307 101236 bytes_in 1551271 101236 station_ip 5.120.30.221 101236 port 15729549 101236 nas_port_type Virtual 101236 remote_ip 5.5.5.160 101240 username alihosseini 101240 mac 101240 bytes_out 0 101240 bytes_in 0 101240 station_ip 5.120.11.53 101240 port 31 101240 unique_id port 101241 username reza2742 101241 unique_id port 101241 terminate_cause User-Request 101241 bytes_out 0 101241 bytes_in 0 101241 station_ip 83.123.229.19 101241 port 15729552 101241 nas_port_type Virtual 101241 remote_ip 5.5.5.165 101243 username reza2742 101243 unique_id port 101243 terminate_cause User-Request 101243 bytes_out 34977 101243 bytes_in 67545 101243 station_ip 83.123.229.19 101243 port 15729553 101243 nas_port_type Virtual 101243 remote_ip 5.5.5.199 101247 username khalili 101247 kill_reason Another user logged on this global unique id 101247 mac 101247 bytes_out 0 101247 bytes_in 0 101247 station_ip 5.120.161.45 101247 port 27 101247 unique_id port 101248 username madadi2 101248 mac 101248 bytes_out 0 101248 bytes_in 0 101248 station_ip 5.119.194.39 101248 port 31 101248 unique_id port 101248 remote_ip 10.8.0.26 101250 username aminvpn 101250 mac 101250 bytes_out 0 101250 bytes_in 0 101250 station_ip 5.119.230.48 101250 port 31 101250 unique_id port 101250 remote_ip 10.8.0.6 101251 username abbasaskari 101251 mac 101251 bytes_out 50210 101251 bytes_in 73124 101251 station_ip 37.129.152.0 101251 port 33 101251 unique_id port 101251 remote_ip 10.8.0.94 101252 username mammad 101252 unique_id port 101252 terminate_cause Lost-Carrier 101252 bytes_out 61093 101252 bytes_in 1437865 101252 station_ip 46.100.223.190 101252 port 15729554 101252 nas_port_type Virtual 101252 remote_ip 5.5.5.255 101255 username aminvpn 101255 mac 101255 bytes_out 0 101255 bytes_in 0 101255 station_ip 5.119.230.48 101255 port 33 101255 unique_id port 101255 remote_ip 10.8.0.6 101256 username aminvpn 101256 mac 101256 bytes_out 0 101256 bytes_in 0 101256 station_ip 5.119.230.48 101256 port 33 101256 unique_id port 101256 remote_ip 10.8.0.6 101257 username aminvpn 101257 mac 101257 bytes_out 0 101257 bytes_in 0 101257 station_ip 5.119.230.48 101257 port 33 101257 unique_id port 101257 remote_ip 10.8.0.6 101259 username abbasaskari 101259 mac 101259 bytes_out 102303 101259 bytes_in 729620 101259 station_ip 37.129.152.0 101259 port 31 101259 unique_id port 101259 remote_ip 10.8.0.94 101264 username aminvpn 101264 mac 101264 bytes_out 0 101264 bytes_in 0 101264 station_ip 5.119.230.48 101264 port 33 101264 unique_id port 101264 remote_ip 10.8.0.6 101266 username khalili 101266 kill_reason Another user logged on this global unique id 101266 mac 101266 bytes_out 0 101266 bytes_in 0 101266 station_ip 5.120.161.45 101266 port 27 101266 unique_id port 101267 username madadi2 101267 mac 101267 bytes_out 897485 101267 bytes_in 14834764 101267 station_ip 5.119.197.202 101267 port 31 101267 unique_id port 101267 remote_ip 10.8.0.26 101238 station_ip 5.233.66.200 101238 port 15729551 101238 nas_port_type Virtual 101238 remote_ip 5.5.5.163 101239 username mehdizare 101239 mac 101239 bytes_out 151720 101239 bytes_in 99984 101239 station_ip 5.119.86.73 101239 port 30 101239 unique_id port 101239 remote_ip 10.8.0.22 101242 username mehdizare 101242 mac 101242 bytes_out 13435 101242 bytes_in 25220 101242 station_ip 5.119.86.73 101242 port 33 101242 unique_id port 101242 remote_ip 10.8.0.22 101253 username mohammadmahdi 101253 kill_reason Another user logged on this global unique id 101253 mac 101253 bytes_out 0 101253 bytes_in 0 101253 station_ip 5.119.158.25 101253 port 34 101253 unique_id port 101253 remote_ip 10.8.0.34 101258 username khalili 101258 kill_reason Another user logged on this global unique id 101258 mac 101258 bytes_out 0 101258 bytes_in 0 101258 station_ip 5.120.161.45 101258 port 27 101258 unique_id port 101262 username aminvpn 101262 mac 101262 bytes_out 745237 101262 bytes_in 8810841 101262 station_ip 5.119.230.48 101262 port 33 101262 unique_id port 101262 remote_ip 10.8.0.6 101263 username aminvpn 101263 mac 101263 bytes_out 0 101263 bytes_in 0 101263 station_ip 5.119.230.48 101263 port 33 101263 unique_id port 101263 remote_ip 10.8.0.6 101265 username aminvpn 101265 mac 101265 bytes_out 0 101265 bytes_in 0 101265 station_ip 5.119.230.48 101265 port 33 101265 unique_id port 101265 remote_ip 10.8.0.6 101272 username khalili 101272 kill_reason Another user logged on this global unique id 101272 mac 101272 bytes_out 0 101272 bytes_in 0 101272 station_ip 5.120.161.45 101272 port 27 101272 unique_id port 101273 username abbasaskari 101273 mac 101273 bytes_out 0 101273 bytes_in 0 101273 station_ip 37.129.153.248 101273 port 33 101273 unique_id port 101273 remote_ip 10.8.0.94 101275 username mehdizare 101275 mac 101275 bytes_out 169942 101275 bytes_in 913800 101275 station_ip 5.119.86.73 101275 port 31 101275 unique_id port 101275 remote_ip 10.8.0.22 101282 username alireza1 101282 unique_id port 101282 terminate_cause Lost-Carrier 101282 bytes_out 482482 101282 bytes_in 3402170 101282 station_ip 5.120.30.221 101282 port 15729557 101282 nas_port_type Virtual 101282 remote_ip 5.5.5.153 101291 username hoorieh 101291 kill_reason Another user logged on this global unique id 101291 mac 101291 bytes_out 0 101291 bytes_in 0 101291 station_ip 5.120.22.93 101291 port 36 101291 unique_id port 101291 remote_ip 10.8.0.10 101292 username hoorieh 101292 mac 101292 bytes_out 0 101292 bytes_in 0 101292 station_ip 5.120.22.93 101292 port 36 101292 unique_id port 101295 username aminvpn 101295 mac 101295 bytes_out 0 101295 bytes_in 0 101295 station_ip 5.119.241.129 101295 port 35 101295 unique_id port 101295 remote_ip 10.8.0.6 101296 username alireza1 101296 unique_id port 101296 terminate_cause Lost-Carrier 101296 bytes_out 137752 101296 bytes_in 395428 101296 station_ip 5.120.30.221 101296 port 15729563 101296 nas_port_type Virtual 101296 remote_ip 5.5.5.255 101303 username mehdizare 101303 mac 101303 bytes_out 36017 101303 bytes_in 225776 101303 station_ip 5.119.86.73 101303 port 31 101303 unique_id port 101303 remote_ip 10.8.0.22 101306 username amir 101306 mac 101306 bytes_out 0 101306 bytes_in 0 101306 station_ip 46.225.215.186 101306 port 27 101306 unique_id port 101306 remote_ip 10.8.0.54 101312 username jamali 101312 mac 101312 bytes_out 0 101312 bytes_in 0 101312 station_ip 5.119.123.147 101312 port 30 101312 unique_id port 101312 remote_ip 10.8.0.62 101314 username alireza1 101268 username mamal 101268 unique_id port 101268 terminate_cause User-Request 101268 bytes_out 5629573 101268 bytes_in 173731984 101268 station_ip 83.123.12.207 101268 port 15729556 101268 nas_port_type Virtual 101268 remote_ip 5.5.5.152 101269 username mehdizare 101269 mac 101269 bytes_out 0 101269 bytes_in 0 101269 station_ip 5.119.86.73 101269 port 9 101269 unique_id port 101269 remote_ip 10.8.1.22 101270 username mehdizare 101270 mac 101270 bytes_out 8657 101270 bytes_in 13828 101270 station_ip 5.119.86.73 101270 port 31 101270 unique_id port 101270 remote_ip 10.8.0.22 101274 username mehran 101274 unique_id port 101274 terminate_cause Lost-Carrier 101274 bytes_out 149513 101274 bytes_in 691256 101274 station_ip 46.225.208.177 101274 port 15729558 101274 nas_port_type Virtual 101274 remote_ip 5.5.5.255 101278 username rezasekonji 101278 unique_id port 101278 terminate_cause User-Request 101278 bytes_out 1466 101278 bytes_in 1760 101278 station_ip 83.122.141.12 101278 port 15729559 101278 nas_port_type Virtual 101278 remote_ip 5.5.5.146 101280 username musa 101280 kill_reason Another user logged on this global unique id 101280 mac 101280 bytes_out 0 101280 bytes_in 0 101280 station_ip 83.123.49.152 101280 port 31 101280 unique_id port 101280 remote_ip 10.8.0.106 101281 username mohammadmahdi 101281 kill_reason Another user logged on this global unique id 101281 mac 101281 bytes_out 0 101281 bytes_in 0 101281 station_ip 5.119.158.25 101281 port 34 101281 unique_id port 101284 username alireza1 101284 unique_id port 101284 terminate_cause User-Request 101284 bytes_out 389660 101284 bytes_in 636443 101284 station_ip 5.120.30.221 101284 port 15729560 101284 nas_port_type Virtual 101284 remote_ip 5.5.5.147 101286 username alireza1 101286 unique_id port 101286 terminate_cause User-Request 101286 bytes_out 40564 101286 bytes_in 129846 101286 station_ip 5.120.30.221 101286 port 15729562 101286 nas_port_type Virtual 101286 remote_ip 5.5.5.158 101288 username aminvpn 101288 unique_id port 101288 terminate_cause Lost-Carrier 101288 bytes_out 93797 101288 bytes_in 387211 101288 station_ip 31.57.130.201 101288 port 15729564 101288 nas_port_type Virtual 101288 remote_ip 5.5.5.143 101290 username aminvpn 101290 unique_id port 101290 terminate_cause Lost-Carrier 101290 bytes_out 1037985 101290 bytes_in 23291507 101290 station_ip 31.59.34.234 101290 port 15729561 101290 nas_port_type Virtual 101290 remote_ip 5.5.5.150 101294 username aminvpn 101294 mac 101294 bytes_out 0 101294 bytes_in 0 101294 station_ip 83.122.128.133 101294 port 34 101294 unique_id port 101294 remote_ip 10.8.0.6 101300 username forozande 101300 mac 101300 bytes_out 316728 101300 bytes_in 1518306 101300 station_ip 37.129.145.124 101300 port 9 101300 unique_id port 101300 remote_ip 10.8.1.62 101302 username khalili 101302 mac 101302 bytes_out 5387 101302 bytes_in 8567 101302 station_ip 5.120.161.45 101302 port 15 101302 unique_id port 101302 remote_ip 10.8.1.66 101304 username madadi2 101304 mac 101304 bytes_out 0 101304 bytes_in 0 101304 station_ip 5.119.57.88 101304 port 27 101304 unique_id port 101304 remote_ip 10.8.0.26 101305 username amir 101305 mac 101305 bytes_out 0 101305 bytes_in 0 101305 station_ip 46.225.215.186 101305 port 30 101305 unique_id port 101305 remote_ip 10.8.0.54 101307 username khalili 101307 mac 101307 bytes_out 8237 101307 bytes_in 12179 101307 station_ip 5.119.24.90 101307 port 9 101307 unique_id port 101307 remote_ip 10.8.1.66 101308 username khalili 101308 mac 101308 bytes_out 0 101308 bytes_in 0 101308 station_ip 5.119.24.90 101308 port 9 101276 port 30 101276 unique_id port 101276 remote_ip 10.8.0.54 101277 username madadi2 101277 mac 101277 bytes_out 0 101277 bytes_in 0 101277 station_ip 5.119.252.123 101277 port 30 101277 unique_id port 101277 remote_ip 10.8.0.26 101279 username mohammadmahdi 101279 kill_reason Another user logged on this global unique id 101279 mac 101279 bytes_out 0 101279 bytes_in 0 101279 station_ip 5.119.158.25 101279 port 34 101279 unique_id port 101283 username mammad 101283 unique_id port 101283 terminate_cause User-Request 101283 bytes_out 4399002 101283 bytes_in 42878635 101283 station_ip 46.100.223.190 101283 port 15729555 101283 nas_port_type Virtual 101283 remote_ip 5.5.5.148 101285 username musa 101285 kill_reason Another user logged on this global unique id 101285 mac 101285 bytes_out 0 101285 bytes_in 0 101285 station_ip 83.123.49.152 101285 port 31 101285 unique_id port 101287 username mehdizare 101287 mac 101287 bytes_out 0 101287 bytes_in 0 101287 station_ip 5.119.86.73 101287 port 33 101287 unique_id port 101287 remote_ip 10.8.0.22 101289 username mohammadmahdi 101289 mac 101289 bytes_out 0 101289 bytes_in 0 101289 station_ip 5.119.158.25 101289 port 34 101289 unique_id port 101293 username morteza 101293 mac 101293 bytes_out 0 101293 bytes_in 0 101293 station_ip 83.123.179.33 101293 port 35 101293 unique_id port 101293 remote_ip 10.8.0.90 101297 username musa 101297 mac 101297 bytes_out 0 101297 bytes_in 0 101297 station_ip 83.123.49.152 101297 port 31 101297 unique_id port 101298 username mehdizare 101298 mac 101298 bytes_out 0 101298 bytes_in 0 101298 station_ip 5.119.86.73 101298 port 33 101298 unique_id port 101298 remote_ip 10.8.0.22 101299 username khalili 101299 mac 101299 bytes_out 0 101299 bytes_in 0 101299 station_ip 5.120.161.45 101299 port 27 101299 unique_id port 101301 username aminvpn 101301 mac 101301 bytes_out 0 101301 bytes_in 0 101301 station_ip 83.122.128.133 101301 port 34 101301 unique_id port 101301 remote_ip 10.8.0.6 101311 username amir 101311 mac 101311 bytes_out 682933 101311 bytes_in 10508409 101311 station_ip 46.225.215.186 101311 port 27 101311 unique_id port 101311 remote_ip 10.8.0.54 101319 username mehdizare 101319 mac 101319 bytes_out 86708 101319 bytes_in 166023 101319 station_ip 5.119.86.73 101319 port 33 101319 unique_id port 101319 remote_ip 10.8.0.22 101320 username reza2742 101320 unique_id port 101320 terminate_cause User-Request 101320 bytes_out 0 101320 bytes_in 0 101320 station_ip 83.122.22.194 101320 port 15729571 101320 nas_port_type Virtual 101320 remote_ip 5.5.5.133 101321 username reza2742 101321 unique_id port 101321 terminate_cause User-Request 101321 bytes_out 15804 101321 bytes_in 35936 101321 station_ip 83.122.22.194 101321 port 15729572 101321 nas_port_type Virtual 101321 remote_ip 5.5.5.134 101326 username mehdizare 101326 mac 101326 bytes_out 107303 101326 bytes_in 60584 101326 station_ip 5.119.86.73 101326 port 31 101326 unique_id port 101326 remote_ip 10.8.0.22 101327 username jamali 101327 mac 101327 bytes_out 0 101327 bytes_in 0 101327 station_ip 5.119.123.147 101327 port 27 101327 unique_id port 101327 remote_ip 10.8.0.62 101328 username jamali 101328 mac 101328 bytes_out 0 101328 bytes_in 0 101328 station_ip 5.119.123.147 101328 port 31 101328 unique_id port 101328 remote_ip 10.8.0.62 101331 username madadi2 101331 mac 101331 bytes_out 0 101331 bytes_in 0 101331 station_ip 5.119.180.137 101331 port 33 101331 unique_id port 101308 unique_id port 101308 remote_ip 10.8.1.66 101309 username alirr 101309 unique_id port 101309 terminate_cause User-Request 101309 bytes_out 289867 101309 bytes_in 306318 101309 station_ip 94.183.213.166 101309 port 15729567 101309 nas_port_type Virtual 101309 remote_ip 5.5.5.255 101310 username alirr 101310 unique_id port 101310 terminate_cause User-Request 101310 bytes_out 179440 101310 bytes_in 89395 101310 station_ip 94.183.213.166 101310 port 15729568 101310 nas_port_type Virtual 101310 remote_ip 5.5.5.139 101313 username forozande 101313 mac 101313 bytes_out 0 101313 bytes_in 0 101313 station_ip 83.122.183.47 101313 port 9 101313 unique_id port 101313 remote_ip 10.8.1.62 101316 username jamali 101316 mac 101316 bytes_out 0 101316 bytes_in 0 101316 station_ip 5.119.123.147 101316 port 30 101316 unique_id port 101316 remote_ip 10.8.0.62 101317 username jamali 101317 mac 101317 bytes_out 1294584 101317 bytes_in 14421639 101317 station_ip 5.119.123.147 101317 port 31 101317 unique_id port 101317 remote_ip 10.8.0.62 101318 username reza2742 101318 unique_id port 101318 terminate_cause User-Request 101318 bytes_out 103695 101318 bytes_in 531333 101318 station_ip 83.122.22.194 101318 port 15729570 101318 nas_port_type Virtual 101318 remote_ip 5.5.5.131 101322 username tahmasebi 101322 mac 101322 bytes_out 0 101322 bytes_in 0 101322 station_ip 5.120.63.80 101322 port 33 101322 unique_id port 101322 remote_ip 10.8.0.66 101323 username tahmasebi 101323 mac 101323 bytes_out 0 101323 bytes_in 0 101323 station_ip 5.119.253.183 101323 port 34 101323 unique_id port 101323 remote_ip 10.8.0.66 101324 username mohammadmahdi 101324 mac 101324 bytes_out 0 101324 bytes_in 0 101324 station_ip 5.119.158.25 101324 port 27 101324 unique_id port 101324 remote_ip 10.8.0.34 101329 username jamali 101329 mac 101329 bytes_out 28939 101329 bytes_in 28418 101329 station_ip 5.119.123.147 101329 port 27 101329 unique_id port 101329 remote_ip 10.8.0.62 101332 username jamali 101332 mac 101332 bytes_out 0 101332 bytes_in 0 101332 station_ip 5.119.123.147 101332 port 27 101332 unique_id port 101332 remote_ip 10.8.0.62 101336 username jamali 101336 mac 101336 bytes_out 0 101336 bytes_in 0 101336 station_ip 5.119.123.147 101336 port 30 101336 unique_id port 101336 remote_ip 10.8.0.62 101337 username jamali 101337 mac 101337 bytes_out 23384 101337 bytes_in 45504 101337 station_ip 5.119.123.147 101337 port 30 101337 unique_id port 101337 remote_ip 10.8.0.62 101338 username jamali 101338 mac 101338 bytes_out 0 101338 bytes_in 0 101338 station_ip 5.119.123.147 101338 port 33 101338 unique_id port 101338 remote_ip 10.8.0.62 101344 username mehdizare 101344 mac 101344 bytes_out 52699 101344 bytes_in 79610 101344 station_ip 5.119.86.73 101344 port 27 101344 unique_id port 101344 remote_ip 10.8.0.22 101352 username ahmadi 101352 unique_id port 101352 terminate_cause User-Request 101352 bytes_out 81676 101352 bytes_in 1063395 101352 station_ip 83.122.140.250 101352 port 15729573 101352 nas_port_type Virtual 101352 remote_ip 5.5.5.136 101356 username madadi2 101356 mac 101356 bytes_out 0 101356 bytes_in 0 101356 station_ip 5.119.175.108 101356 port 27 101356 unique_id port 101356 remote_ip 10.8.0.26 101358 username sobhan 101358 kill_reason Maximum check online fails reached 101358 unique_id port 101358 bytes_out 1615319 101358 bytes_in 31863992 101358 station_ip 5.119.133.178 101358 port 15729575 101358 nas_port_type Virtual 101358 remote_ip 5.5.5.126 101362 username mirzaei 101314 unique_id port 101314 terminate_cause Lost-Carrier 101314 bytes_out 504991 101314 bytes_in 2134758 101314 station_ip 5.120.72.30 101314 port 15729566 101314 nas_port_type Virtual 101314 remote_ip 5.5.5.138 101315 username jamali 101315 mac 101315 bytes_out 0 101315 bytes_in 0 101315 station_ip 5.119.123.147 101315 port 27 101315 unique_id port 101315 remote_ip 10.8.0.62 101325 username jamali 101325 mac 101325 bytes_out 0 101325 bytes_in 0 101325 station_ip 5.119.123.147 101325 port 30 101325 unique_id port 101325 remote_ip 10.8.0.62 101330 username mehdizare 101330 mac 101330 bytes_out 18970 101330 bytes_in 29163 101330 station_ip 5.119.86.73 101330 port 30 101330 unique_id port 101330 remote_ip 10.8.0.22 101339 username jamali 101339 mac 101339 bytes_out 0 101339 bytes_in 0 101339 station_ip 5.119.123.147 101339 port 30 101339 unique_id port 101339 remote_ip 10.8.0.62 101341 username sobhan 101341 unique_id port 101341 terminate_cause Lost-Carrier 101341 bytes_out 10771388 101341 bytes_in 229730407 101341 station_ip 5.119.46.160 101341 port 15729569 101341 nas_port_type Virtual 101341 remote_ip 5.5.5.141 101345 username askari 101345 mac 101345 bytes_out 0 101345 bytes_in 0 101345 station_ip 5.119.109.114 101345 port 27 101345 unique_id port 101345 remote_ip 10.8.0.38 101347 username forozande 101347 mac 101347 bytes_out 312966 101347 bytes_in 1968382 101347 station_ip 113.203.40.191 101347 port 9 101347 unique_id port 101347 remote_ip 10.8.1.62 101348 username jamali 101348 mac 101348 bytes_out 18024 101348 bytes_in 23723 101348 station_ip 5.119.123.147 101348 port 27 101348 unique_id port 101348 remote_ip 10.8.0.62 101350 username abbasaskari 101350 mac 101350 bytes_out 0 101350 bytes_in 0 101350 station_ip 37.129.231.164 101350 port 27 101350 unique_id port 101350 remote_ip 10.8.0.94 101351 username askari 101351 mac 101351 bytes_out 0 101351 bytes_in 0 101351 station_ip 5.119.27.126 101351 port 34 101351 unique_id port 101353 username morteza 101353 mac 101353 bytes_out 0 101353 bytes_in 0 101353 station_ip 83.123.238.73 101353 port 30 101353 unique_id port 101353 remote_ip 10.8.0.90 101357 username aminvpn 101357 unique_id port 101357 terminate_cause Lost-Carrier 101357 bytes_out 473756 101357 bytes_in 1827618 101357 station_ip 5.120.163.160 101357 port 15729565 101357 nas_port_type Virtual 101357 remote_ip 5.5.5.145 101361 username aminvpn 101361 unique_id port 101361 terminate_cause User-Request 101361 bytes_out 205312 101361 bytes_in 1067430 101361 station_ip 5.119.241.129 101361 port 15729574 101361 nas_port_type Virtual 101361 remote_ip 5.5.5.124 101363 username jamali 101363 mac 101363 bytes_out 685173 101363 bytes_in 11427084 101363 station_ip 5.119.123.147 101363 port 27 101363 unique_id port 101363 remote_ip 10.8.0.62 101370 username aminvpn 101370 mac 101370 bytes_out 2061636 101370 bytes_in 27226517 101370 station_ip 5.119.241.129 101370 port 35 101370 unique_id port 101370 remote_ip 10.8.0.6 101372 username aminvpn 101372 mac 101372 bytes_out 0 101372 bytes_in 0 101372 station_ip 5.119.241.129 101372 port 35 101372 unique_id port 101372 remote_ip 10.8.0.6 101378 username musa 101378 kill_reason Another user logged on this global unique id 101378 mac 101378 bytes_out 0 101378 bytes_in 0 101378 station_ip 83.123.13.48 101378 port 31 101378 unique_id port 101379 username mohammadmahdi 101379 kill_reason Another user logged on this global unique id 101379 mac 101379 bytes_out 0 101379 bytes_in 0 101379 station_ip 5.119.158.25 101331 remote_ip 10.8.0.26 101333 username jamali 101333 mac 101333 bytes_out 0 101333 bytes_in 0 101333 station_ip 5.119.123.147 101333 port 33 101333 unique_id port 101333 remote_ip 10.8.0.62 101334 username madadi2 101334 mac 101334 bytes_out 25633 101334 bytes_in 31135 101334 station_ip 5.119.118.124 101334 port 30 101334 unique_id port 101334 remote_ip 10.8.0.26 101335 username jamali 101335 mac 101335 bytes_out 46789 101335 bytes_in 141829 101335 station_ip 5.119.123.147 101335 port 34 101335 unique_id port 101335 remote_ip 10.8.0.62 101340 username jamali 101340 mac 101340 bytes_out 1687 101340 bytes_in 7597 101340 station_ip 5.119.123.147 101340 port 33 101340 unique_id port 101340 remote_ip 10.8.0.62 101342 username musa 101342 kill_reason Another user logged on this global unique id 101342 mac 101342 bytes_out 0 101342 bytes_in 0 101342 station_ip 83.123.13.48 101342 port 31 101342 unique_id port 101342 remote_ip 10.8.0.106 101343 username jamali 101343 mac 101343 bytes_out 15203 101343 bytes_in 16757 101343 station_ip 5.119.123.147 101343 port 30 101343 unique_id port 101343 remote_ip 10.8.0.62 101346 username jamali 101346 mac 101346 bytes_out 237331 101346 bytes_in 1080793 101346 station_ip 5.119.123.147 101346 port 30 101346 unique_id port 101346 remote_ip 10.8.0.62 101349 username askari 101349 kill_reason Another user logged on this global unique id 101349 mac 101349 bytes_out 0 101349 bytes_in 0 101349 station_ip 5.119.27.126 101349 port 34 101349 unique_id port 101349 remote_ip 10.8.0.38 101354 username madadi2 101354 mac 101354 bytes_out 38241 101354 bytes_in 56532 101354 station_ip 5.119.220.81 101354 port 27 101354 unique_id port 101354 remote_ip 10.8.0.26 101355 username mehdizare 101355 mac 101355 bytes_out 79589 101355 bytes_in 171102 101355 station_ip 5.119.86.73 101355 port 33 101355 unique_id port 101355 remote_ip 10.8.0.22 101359 username madadi2 101359 mac 101359 bytes_out 50958 101359 bytes_in 54586 101359 station_ip 5.119.168.62 101359 port 27 101359 unique_id port 101359 remote_ip 10.8.0.26 101360 username mehdizare 101360 mac 101360 bytes_out 0 101360 bytes_in 0 101360 station_ip 5.119.86.73 101360 port 9 101360 unique_id port 101360 remote_ip 10.8.1.22 101365 username mehdizare 101365 mac 101365 bytes_out 0 101365 bytes_in 0 101365 station_ip 5.119.86.73 101365 port 9 101365 unique_id port 101365 remote_ip 10.8.1.22 101367 username mehdizare 101367 mac 101367 bytes_out 0 101367 bytes_in 0 101367 station_ip 5.119.97.88 101367 port 17 101367 unique_id port 101367 remote_ip 10.8.1.22 101368 username jamali 101368 mac 101368 bytes_out 25710 101368 bytes_in 31528 101368 station_ip 5.119.123.147 101368 port 27 101368 unique_id port 101368 remote_ip 10.8.0.62 101374 username madadi2 101374 mac 101374 bytes_out 1840140 101374 bytes_in 20187590 101374 station_ip 5.120.122.240 101374 port 33 101374 unique_id port 101374 remote_ip 10.8.0.26 101380 username ahmadipour 101380 unique_id port 101380 terminate_cause Lost-Carrier 101380 bytes_out 174186 101380 bytes_in 2658659 101380 station_ip 83.122.39.157 101380 port 15729577 101380 nas_port_type Virtual 101380 remote_ip 5.5.5.129 101383 username aminvpn 101383 mac 101383 bytes_out 209725 101383 bytes_in 1455498 101383 station_ip 5.119.241.129 101383 port 27 101383 unique_id port 101383 remote_ip 10.8.0.6 101384 username arman1 101384 kill_reason Another user logged on this global unique id 101384 mac 101384 bytes_out 0 101384 bytes_in 0 101362 kill_reason Another user logged on this global unique id 101362 mac 101362 bytes_out 0 101362 bytes_in 0 101362 station_ip 5.120.132.26 101362 port 29 101362 unique_id port 101364 username musa 101364 kill_reason Another user logged on this global unique id 101364 mac 101364 bytes_out 0 101364 bytes_in 0 101364 station_ip 83.123.13.48 101364 port 31 101364 unique_id port 101366 username mohammadmahdi 101366 kill_reason Another user logged on this global unique id 101366 mac 101366 bytes_out 0 101366 bytes_in 0 101366 station_ip 5.119.158.25 101366 port 30 101366 unique_id port 101366 remote_ip 10.8.0.34 101369 username arman1 101369 kill_reason Another user logged on this global unique id 101369 mac 101369 bytes_out 0 101369 bytes_in 0 101369 station_ip 5.120.128.55 101369 port 34 101369 unique_id port 101369 remote_ip 10.8.0.86 101371 username jamali 101371 mac 101371 bytes_out 92204 101371 bytes_in 212794 101371 station_ip 5.119.123.147 101371 port 27 101371 unique_id port 101371 remote_ip 10.8.0.62 101373 username mahdiyehalizadeh 101373 mac 101373 bytes_out 0 101373 bytes_in 0 101373 station_ip 37.129.155.151 101373 port 16 101373 unique_id port 101373 remote_ip 10.8.1.14 101375 username aminvpn 101375 mac 101375 bytes_out 0 101375 bytes_in 0 101375 station_ip 5.119.241.129 101375 port 33 101375 unique_id port 101375 remote_ip 10.8.0.6 101376 username aminvpn 101376 mac 101376 bytes_out 68369 101376 bytes_in 95158 101376 station_ip 5.119.241.129 101376 port 33 101376 unique_id port 101376 remote_ip 10.8.0.6 101377 username jamali 101377 mac 101377 bytes_out 13177 101377 bytes_in 15531 101377 station_ip 5.119.123.147 101377 port 27 101377 unique_id port 101377 remote_ip 10.8.0.62 101382 username aminvpn 101382 mac 101382 bytes_out 1555084 101382 bytes_in 6056033 101382 station_ip 5.119.241.129 101382 port 35 101382 unique_id port 101382 remote_ip 10.8.0.6 101385 username musa 101385 kill_reason Another user logged on this global unique id 101385 mac 101385 bytes_out 0 101385 bytes_in 0 101385 station_ip 83.123.13.48 101385 port 31 101385 unique_id port 101386 username mehdizare 101386 mac 101386 bytes_out 0 101386 bytes_in 0 101386 station_ip 5.119.97.88 101386 port 9 101386 unique_id port 101386 remote_ip 10.8.1.22 101391 username arman1 101391 kill_reason Another user logged on this global unique id 101391 mac 101391 bytes_out 0 101391 bytes_in 0 101391 station_ip 5.120.128.55 101391 port 34 101391 unique_id port 101396 username arman1 101396 mac 101396 bytes_out 0 101396 bytes_in 0 101396 station_ip 5.120.128.55 101396 port 34 101396 unique_id port 101398 username musa 101398 mac 101398 bytes_out 0 101398 bytes_in 0 101398 station_ip 83.123.13.48 101398 port 31 101398 unique_id port 101400 username mohammadmahdi 101400 kill_reason Another user logged on this global unique id 101400 mac 101400 bytes_out 0 101400 bytes_in 0 101400 station_ip 5.119.158.25 101400 port 30 101400 unique_id port 101401 username alihosseini 101401 mac 101401 bytes_out 0 101401 bytes_in 0 101401 station_ip 5.119.60.9 101401 port 16 101401 unique_id port 101401 remote_ip 10.8.1.6 101402 username alihosseini 101402 mac 101402 bytes_out 0 101402 bytes_in 0 101402 station_ip 5.119.60.9 101402 port 33 101402 unique_id port 101402 remote_ip 10.8.0.14 101405 username aminvpn 101405 unique_id port 101405 terminate_cause Lost-Carrier 101405 bytes_out 90859 101405 bytes_in 435460 101405 station_ip 5.119.241.129 101405 port 15729579 101405 nas_port_type Virtual 101405 remote_ip 5.5.5.255 101379 port 30 101379 unique_id port 101381 username alihosseini 101381 mac 101381 bytes_out 16535 101381 bytes_in 41828 101381 station_ip 5.119.60.9 101381 port 27 101381 unique_id port 101381 remote_ip 10.8.0.14 101390 username jamali 101390 mac 101390 bytes_out 24180 101390 bytes_in 38875 101390 station_ip 5.119.123.147 101390 port 35 101390 unique_id port 101390 remote_ip 10.8.0.62 101392 username alihosseini 101392 mac 101392 bytes_out 0 101392 bytes_in 0 101392 station_ip 5.119.60.9 101392 port 27 101392 unique_id port 101392 remote_ip 10.8.0.14 101394 username madadi2 101394 mac 101394 bytes_out 47846 101394 bytes_in 53980 101394 station_ip 5.119.79.241 101394 port 33 101394 unique_id port 101394 remote_ip 10.8.0.26 101403 username alihosseini 101403 mac 101403 bytes_out 0 101403 bytes_in 0 101403 station_ip 5.119.60.9 101403 port 33 101403 unique_id port 101403 remote_ip 10.8.0.14 101404 username abbasaskari 101404 mac 101404 bytes_out 184182 101404 bytes_in 327175 101404 station_ip 37.129.197.164 101404 port 31 101404 unique_id port 101404 remote_ip 10.8.0.94 101406 username madadi2 101406 mac 101406 bytes_out 48065 101406 bytes_in 75884 101406 station_ip 5.119.157.38 101406 port 33 101406 unique_id port 101406 remote_ip 10.8.0.26 101408 username mirzaei 101408 kill_reason Another user logged on this global unique id 101408 mac 101408 bytes_out 0 101408 bytes_in 0 101408 station_ip 5.120.132.26 101408 port 29 101408 unique_id port 101409 username mohammadmahdi 101409 kill_reason Another user logged on this global unique id 101409 mac 101409 bytes_out 0 101409 bytes_in 0 101409 station_ip 5.119.158.25 101409 port 30 101409 unique_id port 101413 username alihosseini 101413 mac 101413 bytes_out 0 101413 bytes_in 0 101413 station_ip 5.119.60.9 101413 port 35 101413 unique_id port 101413 remote_ip 10.8.0.14 101415 username kamali1 101415 mac 101415 bytes_out 0 101415 bytes_in 0 101415 station_ip 5.119.138.178 101415 port 34 101415 unique_id port 101417 username jamali 101417 mac 101417 bytes_out 0 101417 bytes_in 0 101417 station_ip 5.119.123.147 101417 port 27 101417 unique_id port 101417 remote_ip 10.8.0.62 101420 username mehdizare 101420 mac 101420 bytes_out 0 101420 bytes_in 0 101420 station_ip 5.120.93.115 101420 port 35 101420 unique_id port 101420 remote_ip 10.8.0.22 101429 username alihosseini 101429 mac 101429 bytes_out 0 101429 bytes_in 0 101429 station_ip 5.119.60.9 101429 port 27 101429 unique_id port 101429 remote_ip 10.8.0.14 101434 username sobhan 101434 unique_id port 101434 terminate_cause Lost-Carrier 101434 bytes_out 17913042 101434 bytes_in 342501328 101434 station_ip 5.119.133.178 101434 port 15729580 101434 nas_port_type Virtual 101434 remote_ip 5.5.5.117 101436 username ahmadipour 101436 unique_id port 101436 terminate_cause Lost-Carrier 101436 bytes_out 431954 101436 bytes_in 7996294 101436 station_ip 83.122.18.225 101436 port 15729585 101436 nas_port_type Virtual 101436 remote_ip 5.5.5.110 101441 username bcboard 101441 unique_id port 101441 terminate_cause Lost-Carrier 101441 bytes_out 697514 101441 bytes_in 11418297 101441 station_ip 37.129.171.69 101441 port 15729587 101441 nas_port_type Virtual 101441 remote_ip 5.5.5.114 101444 username abbasaskari 101444 mac 101444 bytes_out 51832 101444 bytes_in 195878 101444 station_ip 37.129.221.220 101444 port 27 101444 unique_id port 101444 remote_ip 10.8.0.94 101445 username amir 101445 kill_reason Another user logged on this global unique id 101445 mac 101445 bytes_out 0 101384 station_ip 5.120.128.55 101384 port 34 101384 unique_id port 101387 username jamali 101387 mac 101387 bytes_out 0 101387 bytes_in 0 101387 station_ip 5.119.123.147 101387 port 33 101387 unique_id port 101387 remote_ip 10.8.0.62 101388 username alihosseini 101388 mac 101388 bytes_out 322911 101388 bytes_in 5507227 101388 station_ip 5.119.60.9 101388 port 27 101388 unique_id port 101388 remote_ip 10.8.0.14 101389 username alihosseini 101389 mac 101389 bytes_out 4525 101389 bytes_in 12813 101389 station_ip 5.119.60.9 101389 port 27 101389 unique_id port 101389 remote_ip 10.8.0.14 101393 username alireza1 101393 unique_id port 101393 terminate_cause Lost-Carrier 101393 bytes_out 401778 101393 bytes_in 1189285 101393 station_ip 5.119.159.154 101393 port 15729578 101393 nas_port_type Virtual 101393 remote_ip 5.5.5.132 101395 username alihosseini 101395 mac 101395 bytes_out 2462 101395 bytes_in 5486 101395 station_ip 5.119.60.9 101395 port 35 101395 unique_id port 101395 remote_ip 10.8.0.14 101397 username alihosseini 101397 mac 101397 bytes_out 2609 101397 bytes_in 5733 101397 station_ip 5.119.60.9 101397 port 16 101397 unique_id port 101397 remote_ip 10.8.1.6 101399 username alihosseini 101399 mac 101399 bytes_out 0 101399 bytes_in 0 101399 station_ip 5.119.60.9 101399 port 31 101399 unique_id port 101399 remote_ip 10.8.0.14 101407 username alihosseini 101407 mac 101407 bytes_out 0 101407 bytes_in 0 101407 station_ip 5.119.60.9 101407 port 33 101407 unique_id port 101407 remote_ip 10.8.0.14 101410 username alipour 101410 kill_reason Another user logged on this global unique id 101410 mac 101410 bytes_out 0 101410 bytes_in 0 101410 station_ip 83.123.166.143 101410 port 31 101410 unique_id port 101410 remote_ip 10.8.0.70 101411 username kamali1 101411 kill_reason Another user logged on this global unique id 101411 mac 101411 bytes_out 0 101411 bytes_in 0 101411 station_ip 5.119.138.178 101411 port 34 101411 unique_id port 101411 remote_ip 10.8.0.110 101412 username mehdizare 101412 mac 101412 bytes_out 113356 101412 bytes_in 85332 101412 station_ip 5.119.97.88 101412 port 9 101412 unique_id port 101412 remote_ip 10.8.1.22 101414 username mehdizare 101414 mac 101414 bytes_out 7585 101414 bytes_in 11114 101414 station_ip 5.119.97.88 101414 port 9 101414 unique_id port 101414 remote_ip 10.8.1.22 101419 username jamali 101419 mac 101419 bytes_out 366503 101419 bytes_in 3126689 101419 station_ip 5.119.123.147 101419 port 34 101419 unique_id port 101419 remote_ip 10.8.0.62 101423 username alihosseini 101423 mac 101423 bytes_out 0 101423 bytes_in 0 101423 station_ip 5.119.60.9 101423 port 34 101423 unique_id port 101423 remote_ip 10.8.0.14 101425 username madadi2 101425 mac 101425 bytes_out 0 101425 bytes_in 0 101425 station_ip 5.119.37.5 101425 port 34 101425 unique_id port 101425 remote_ip 10.8.0.26 101427 username alihosseini 101427 mac 101427 bytes_out 0 101427 bytes_in 0 101427 station_ip 5.119.60.9 101427 port 35 101427 unique_id port 101427 remote_ip 10.8.0.14 101431 username alihosseini 101431 mac 101431 bytes_out 0 101431 bytes_in 0 101431 station_ip 5.119.60.9 101431 port 27 101431 unique_id port 101431 remote_ip 10.8.0.14 101435 username amir 101435 kill_reason Another user logged on this global unique id 101435 mac 101435 bytes_out 0 101435 bytes_in 0 101435 station_ip 46.225.215.186 101435 port 33 101435 unique_id port 101438 username musa 101438 mac 101438 bytes_out 0 101438 bytes_in 0 101416 username arabpour 101416 unique_id port 101416 terminate_cause User-Request 101416 bytes_out 513626 101416 bytes_in 19832019 101416 station_ip 37.129.186.186 101416 port 15729582 101416 nas_port_type Virtual 101416 remote_ip 5.5.5.122 101418 username arabpour 101418 unique_id port 101418 terminate_cause User-Request 101418 bytes_out 509823 101418 bytes_in 18451045 101418 station_ip 37.129.186.186 101418 port 15729583 101418 nas_port_type Virtual 101418 remote_ip 5.5.5.123 101421 username amir 101421 kill_reason Another user logged on this global unique id 101421 mac 101421 bytes_out 0 101421 bytes_in 0 101421 station_ip 46.225.215.186 101421 port 33 101421 unique_id port 101421 remote_ip 10.8.0.54 101422 username aminvpn 101422 kill_reason Another user logged on this global unique id 101422 mac 101422 bytes_out 0 101422 bytes_in 0 101422 station_ip 5.119.254.62 101422 port 27 101422 unique_id port 101422 remote_ip 10.8.0.6 101424 username aminvpn 101424 mac 101424 bytes_out 0 101424 bytes_in 0 101424 station_ip 5.119.254.62 101424 port 27 101424 unique_id port 101426 username forozande 101426 mac 101426 bytes_out 1239692 101426 bytes_in 8957292 101426 station_ip 37.129.254.85 101426 port 9 101426 unique_id port 101426 remote_ip 10.8.1.62 101428 username mohammadmahdi 101428 mac 101428 bytes_out 0 101428 bytes_in 0 101428 station_ip 5.119.158.25 101428 port 30 101428 unique_id port 101430 username madadi2 101430 mac 101430 bytes_out 0 101430 bytes_in 0 101430 station_ip 5.120.137.134 101430 port 27 101430 unique_id port 101430 remote_ip 10.8.0.26 101432 username forozande 101432 mac 101432 bytes_out 1555547 101432 bytes_in 16362308 101432 station_ip 37.129.190.118 101432 port 9 101432 unique_id port 101432 remote_ip 10.8.1.62 101433 username alihosseini 101433 mac 101433 bytes_out 0 101433 bytes_in 0 101433 station_ip 5.119.60.9 101433 port 27 101433 unique_id port 101433 remote_ip 10.8.0.14 101437 username aminvpn 101437 unique_id port 101437 terminate_cause Lost-Carrier 101437 bytes_out 209094 101437 bytes_in 355621 101437 station_ip 5.119.254.62 101437 port 15729581 101437 nas_port_type Virtual 101437 remote_ip 5.5.5.120 101440 username madadi2 101440 mac 101440 bytes_out 272856 101440 bytes_in 815628 101440 station_ip 5.120.26.47 101440 port 34 101440 unique_id port 101440 remote_ip 10.8.0.26 101442 username mehdizare 101442 kill_reason Another user logged on this global unique id 101442 mac 101442 bytes_out 0 101442 bytes_in 0 101442 station_ip 5.120.93.115 101442 port 16 101442 unique_id port 101442 remote_ip 10.8.1.22 101443 username mirzaei 101443 kill_reason Another user logged on this global unique id 101443 mac 101443 bytes_out 0 101443 bytes_in 0 101443 station_ip 5.120.132.26 101443 port 29 101443 unique_id port 101447 username rezasekonji 101447 unique_id port 101447 terminate_cause User-Request 101447 bytes_out 291 101447 bytes_in 701 101447 station_ip 83.122.244.184 101447 port 15729590 101447 nas_port_type Virtual 101447 remote_ip 5.5.5.103 101454 username alihosseini 101454 mac 101454 bytes_out 0 101454 bytes_in 0 101454 station_ip 5.119.60.9 101454 port 30 101454 unique_id port 101454 remote_ip 10.8.0.14 101457 username alihosseini 101457 mac 101457 bytes_out 0 101457 bytes_in 0 101457 station_ip 5.119.60.9 101457 port 9 101457 unique_id port 101457 remote_ip 10.8.1.6 101461 username amir 101461 mac 101461 bytes_out 0 101461 bytes_in 0 101461 station_ip 46.225.215.186 101461 port 33 101461 unique_id port 101462 username aminvpn 101462 unique_id port 101438 station_ip 83.123.62.124 101438 port 27 101438 unique_id port 101438 remote_ip 10.8.0.106 101439 username abbasaskari 101439 mac 101439 bytes_out 0 101439 bytes_in 0 101439 station_ip 37.129.168.96 101439 port 35 101439 unique_id port 101439 remote_ip 10.8.0.94 101450 username ahmadi 101450 unique_id port 101450 terminate_cause User-Request 101450 bytes_out 94666 101450 bytes_in 782536 101450 station_ip 83.122.214.238 101450 port 15729591 101450 nas_port_type Virtual 101450 remote_ip 5.5.5.105 101452 username mehdizare 101452 mac 101452 bytes_out 15235 101452 bytes_in 25158 101452 station_ip 5.120.93.115 101452 port 9 101452 unique_id port 101452 remote_ip 10.8.1.22 101453 username askari 101453 mac 101453 bytes_out 162489 101453 bytes_in 1226932 101453 station_ip 5.119.27.7 101453 port 34 101453 unique_id port 101453 remote_ip 10.8.0.38 101456 username alireza1 101456 unique_id port 101456 terminate_cause Lost-Carrier 101456 bytes_out 58635 101456 bytes_in 2949352 101456 station_ip 5.119.159.154 101456 port 15729592 101456 nas_port_type Virtual 101456 remote_ip 5.5.5.106 101458 username alihosseini 101458 mac 101458 bytes_out 0 101458 bytes_in 0 101458 station_ip 5.119.60.9 101458 port 9 101458 unique_id port 101458 remote_ip 10.8.1.6 101460 username alihosseini 101460 mac 101460 bytes_out 0 101460 bytes_in 0 101460 station_ip 5.119.64.52 101460 port 9 101460 unique_id port 101460 remote_ip 10.8.1.6 101464 username alemzadeh 101464 unique_id port 101464 terminate_cause User-Request 101464 bytes_out 226479 101464 bytes_in 5092479 101464 station_ip 37.129.149.111 101464 port 15729595 101464 nas_port_type Virtual 101464 remote_ip 5.5.5.100 101465 username abbasaskari 101465 kill_reason Another user logged on this global unique id 101465 mac 101465 bytes_out 0 101465 bytes_in 0 101465 station_ip 37.129.221.220 101465 port 27 101465 unique_id port 101465 remote_ip 10.8.0.94 101467 username musa 101467 mac 101467 bytes_out 0 101467 bytes_in 0 101467 station_ip 83.123.61.152 101467 port 34 101467 unique_id port 101467 remote_ip 10.8.0.106 101472 username abbasaskari 101472 mac 101472 bytes_out 0 101472 bytes_in 0 101472 station_ip 37.129.221.220 101472 port 27 101472 unique_id port 101474 username alireza1 101474 unique_id port 101474 terminate_cause Lost-Carrier 101474 bytes_out 13950 101474 bytes_in 46616 101474 station_ip 5.119.159.154 101474 port 15729596 101474 nas_port_type Virtual 101474 remote_ip 5.5.5.101 101475 username mirzaei 101475 mac 101475 bytes_out 0 101475 bytes_in 0 101475 station_ip 5.120.132.26 101475 port 29 101475 unique_id port 101479 username aminvpn 101479 unique_id port 101479 terminate_cause Lost-Carrier 101479 bytes_out 20417290 101479 bytes_in 384625711 101479 station_ip 31.57.140.102 101479 port 15729589 101479 nas_port_type Virtual 101479 remote_ip 5.5.5.116 101481 username alemzadeh 101481 unique_id port 101481 terminate_cause User-Request 101481 bytes_out 24687 101481 bytes_in 31347 101481 station_ip 37.129.149.111 101481 port 15729599 101481 nas_port_type Virtual 101481 remote_ip 5.5.5.255 101482 username mohammadmahdi 101482 kill_reason Another user logged on this global unique id 101482 mac 101482 bytes_out 0 101482 bytes_in 0 101482 station_ip 5.119.177.228 101482 port 27 101482 unique_id port 101482 remote_ip 10.8.0.34 101485 username mahdiyehalizadeh 101485 mac 101485 bytes_out 1050831 101485 bytes_in 11592462 101485 station_ip 37.129.19.20 101485 port 30 101485 unique_id port 101485 remote_ip 10.8.0.42 101486 username aminvpn 101486 kill_reason Another user logged on this global unique id 101486 mac 101445 bytes_in 0 101445 station_ip 46.225.215.186 101445 port 33 101445 unique_id port 101446 username mehdizare 101446 mac 101446 bytes_out 0 101446 bytes_in 0 101446 station_ip 5.120.93.115 101446 port 16 101446 unique_id port 101448 username alihosseini 101448 kill_reason Another user logged on this global unique id 101448 mac 101448 bytes_out 0 101448 bytes_in 0 101448 station_ip 5.119.60.9 101448 port 30 101448 unique_id port 101448 remote_ip 10.8.0.14 101449 username alihosseini 101449 mac 101449 bytes_out 0 101449 bytes_in 0 101449 station_ip 5.119.60.9 101449 port 30 101449 unique_id port 101451 username alireza1 101451 unique_id port 101451 terminate_cause Lost-Carrier 101451 bytes_out 1507246 101451 bytes_in 9215677 101451 station_ip 5.119.159.154 101451 port 15729584 101451 nas_port_type Virtual 101451 remote_ip 5.5.5.255 101455 username mehdizare 101455 mac 101455 bytes_out 0 101455 bytes_in 0 101455 station_ip 5.120.93.115 101455 port 9 101455 unique_id port 101455 remote_ip 10.8.1.22 101459 username alihosseini 101459 mac 101459 bytes_out 0 101459 bytes_in 0 101459 station_ip 5.119.60.9 101459 port 9 101459 unique_id port 101459 remote_ip 10.8.1.6 101466 username alihosseini 101466 mac 101466 bytes_out 0 101466 bytes_in 0 101466 station_ip 5.119.64.52 101466 port 9 101466 unique_id port 101466 remote_ip 10.8.1.6 101468 username alireza 101468 unique_id port 101468 terminate_cause Lost-Carrier 101468 bytes_out 3696137 101468 bytes_in 47845602 101468 station_ip 5.120.165.55 101468 port 15729593 101468 nas_port_type Virtual 101468 remote_ip 5.5.5.109 101470 username alemzadeh 101470 unique_id port 101470 terminate_cause User-Request 101470 bytes_out 294685 101470 bytes_in 6716771 101470 station_ip 37.129.149.111 101470 port 15729597 101470 nas_port_type Virtual 101470 remote_ip 5.5.5.102 101477 username abbasaskari 101477 mac 101477 bytes_out 240369 101477 bytes_in 401217 101477 station_ip 37.129.221.220 101477 port 27 101477 unique_id port 101477 remote_ip 10.8.0.94 101478 username mahdiyehalizadeh 101478 mac 101478 bytes_out 2981716 101478 bytes_in 44903485 101478 station_ip 37.129.19.20 101478 port 30 101478 unique_id port 101478 remote_ip 10.8.0.42 101483 username mohammadmahdi 101483 kill_reason Another user logged on this global unique id 101483 mac 101483 bytes_out 0 101483 bytes_in 0 101483 station_ip 5.119.177.228 101483 port 27 101483 unique_id port 101484 username forozande 101484 kill_reason Another user logged on this global unique id 101484 mac 101484 bytes_out 0 101484 bytes_in 0 101484 station_ip 37.129.161.105 101484 port 9 101484 unique_id port 101484 remote_ip 10.8.1.62 101492 username aminvpn 101492 mac 101492 bytes_out 0 101492 bytes_in 0 101492 station_ip 37.129.138.153 101492 port 33 101492 unique_id port 101494 username mohammadmahdi 101494 kill_reason Another user logged on this global unique id 101494 mac 101494 bytes_out 0 101494 bytes_in 0 101494 station_ip 5.119.177.228 101494 port 27 101494 unique_id port 101495 username forozande 101495 kill_reason Another user logged on this global unique id 101495 mac 101495 bytes_out 0 101495 bytes_in 0 101495 station_ip 83.123.101.192 101495 port 9 101495 unique_id port 101495 remote_ip 10.8.1.62 101506 username aminvpn 101506 unique_id port 101506 terminate_cause Lost-Carrier 101506 bytes_out 5109218 101506 bytes_in 125729065 101506 station_ip 5.120.45.119 101506 port 15729604 101506 nas_port_type Virtual 101506 remote_ip 5.5.5.95 101508 username mammad 101508 unique_id port 101508 terminate_cause User-Request 101508 bytes_out 11414468 101508 bytes_in 129959441 101462 terminate_cause User-Request 101462 bytes_out 836775 101462 bytes_in 19028021 101462 station_ip 5.233.66.200 101462 port 15729594 101462 nas_port_type Virtual 101462 remote_ip 5.5.5.119 101463 username askari 101463 mac 101463 bytes_out 0 101463 bytes_in 0 101463 station_ip 5.119.232.35 101463 port 35 101463 unique_id port 101463 remote_ip 10.8.0.38 101469 username fariba 101469 mac 101469 bytes_out 0 101469 bytes_in 0 101469 station_ip 5.120.119.67 101469 port 32 101469 unique_id port 101471 username abbasaskari 101471 kill_reason Another user logged on this global unique id 101471 mac 101471 bytes_out 0 101471 bytes_in 0 101471 station_ip 37.129.221.220 101471 port 27 101471 unique_id port 101473 username alihosseini 101473 mac 101473 bytes_out 0 101473 bytes_in 0 101473 station_ip 5.119.64.52 101473 port 32 101473 unique_id port 101473 remote_ip 10.8.0.14 101476 username alihosseini 101476 mac 101476 bytes_out 0 101476 bytes_in 0 101476 station_ip 5.119.64.52 101476 port 33 101476 unique_id port 101476 remote_ip 10.8.0.14 101480 username alemzadeh 101480 unique_id port 101480 terminate_cause User-Request 101480 bytes_out 73120 101480 bytes_in 788383 101480 station_ip 37.129.149.111 101480 port 15729598 101480 nas_port_type Virtual 101480 remote_ip 5.5.5.255 101487 username abbasaskari 101487 mac 101487 bytes_out 58891 101487 bytes_in 82761 101487 station_ip 37.129.221.220 101487 port 29 101487 unique_id port 101487 remote_ip 10.8.0.94 101489 username forozande 101489 kill_reason Another user logged on this global unique id 101489 mac 101489 bytes_out 0 101489 bytes_in 0 101489 station_ip 37.129.161.105 101489 port 9 101489 unique_id port 101490 username aminvpn 101490 unique_id port 101490 terminate_cause Lost-Carrier 101490 bytes_out 5110557 101490 bytes_in 82198654 101490 station_ip 5.120.163.160 101490 port 15729576 101490 nas_port_type Virtual 101490 remote_ip 5.5.5.127 101491 username forozande 101491 mac 101491 bytes_out 0 101491 bytes_in 0 101491 station_ip 37.129.161.105 101491 port 9 101491 unique_id port 101493 username alihosseini 101493 kill_reason Another user logged on this global unique id 101493 mac 101493 bytes_out 0 101493 bytes_in 0 101493 station_ip 5.119.213.98 101493 port 29 101493 unique_id port 101493 remote_ip 10.8.0.14 101497 username mohammadmahdi 101497 mac 101497 bytes_out 0 101497 bytes_in 0 101497 station_ip 5.119.177.228 101497 port 27 101497 unique_id port 101500 username sobhan 101500 unique_id port 101500 terminate_cause Lost-Carrier 101500 bytes_out 10117559 101500 bytes_in 179648088 101500 station_ip 5.119.133.178 101500 port 15729600 101500 nas_port_type Virtual 101500 remote_ip 5.5.5.255 101501 username alihosseini 101501 kill_reason Another user logged on this global unique id 101501 mac 101501 bytes_out 0 101501 bytes_in 0 101501 station_ip 5.119.213.98 101501 port 29 101501 unique_id port 101502 username aminvpn 101502 unique_id port 101502 terminate_cause Lost-Carrier 101502 bytes_out 28292963 101502 bytes_in 600449810 101502 station_ip 5.119.254.62 101502 port 15729586 101502 nas_port_type Virtual 101502 remote_ip 5.5.5.112 101503 username aminvpn 101503 unique_id port 101503 terminate_cause User-Request 101503 bytes_out 772715 101503 bytes_in 19299368 101503 station_ip 5.233.66.200 101503 port 15729603 101503 nas_port_type Virtual 101503 remote_ip 5.5.5.93 101507 username madadi2 101507 mac 101507 bytes_out 0 101507 bytes_in 0 101507 station_ip 5.120.130.157 101507 port 32 101507 unique_id port 101507 remote_ip 10.8.0.26 101509 username hashtadani 101509 unique_id port 101509 terminate_cause Lost-Carrier 101486 bytes_out 0 101486 bytes_in 0 101486 station_ip 37.129.138.153 101486 port 33 101486 unique_id port 101486 remote_ip 10.8.0.6 101488 username aminvpn 101488 kill_reason Another user logged on this global unique id 101488 mac 101488 bytes_out 0 101488 bytes_in 0 101488 station_ip 37.129.138.153 101488 port 33 101488 unique_id port 101496 username forozande 101496 mac 101496 bytes_out 0 101496 bytes_in 0 101496 station_ip 83.123.101.192 101496 port 9 101496 unique_id port 101498 username alihosseini 101498 kill_reason Another user logged on this global unique id 101498 mac 101498 bytes_out 0 101498 bytes_in 0 101498 station_ip 5.119.213.98 101498 port 29 101498 unique_id port 101499 username alihosseini 101499 kill_reason Another user logged on this global unique id 101499 mac 101499 bytes_out 0 101499 bytes_in 0 101499 station_ip 5.119.213.98 101499 port 29 101499 unique_id port 101504 username alihosseini 101504 mac 101504 bytes_out 0 101504 bytes_in 0 101504 station_ip 5.119.213.98 101504 port 29 101504 unique_id port 101505 username tahmasebi 101505 mac 101505 bytes_out 0 101505 bytes_in 0 101505 station_ip 5.119.253.183 101505 port 29 101505 unique_id port 101505 remote_ip 10.8.0.66 101512 username khalili 101512 mac 101512 bytes_out 0 101512 bytes_in 0 101512 station_ip 5.120.187.29 101512 port 15 101512 unique_id port 101512 remote_ip 10.8.1.66 101514 username mehdizare 101514 mac 101514 bytes_out 0 101514 bytes_in 0 101514 station_ip 5.120.93.115 101514 port 16 101514 unique_id port 101514 remote_ip 10.8.1.22 101515 username mehdizare 101515 mac 101515 bytes_out 0 101515 bytes_in 0 101515 station_ip 5.120.93.115 101515 port 9 101515 unique_id port 101515 remote_ip 10.8.1.22 101518 username aminvpn 101518 unique_id port 101518 terminate_cause Lost-Carrier 101518 bytes_out 171643 101518 bytes_in 850932 101518 station_ip 31.57.131.104 101518 port 15729609 101518 nas_port_type Virtual 101518 remote_ip 5.5.5.82 101522 username askari 101522 kill_reason Another user logged on this global unique id 101522 mac 101522 bytes_out 0 101522 bytes_in 0 101522 station_ip 5.120.71.48 101522 port 29 101522 unique_id port 101522 remote_ip 10.8.0.38 101523 username abbasaskari 101523 mac 101523 bytes_out 0 101523 bytes_in 0 101523 station_ip 37.129.210.4 101523 port 30 101523 unique_id port 101523 remote_ip 10.8.0.94 101525 username morteza 101525 kill_reason Another user logged on this global unique id 101525 mac 101525 bytes_out 0 101525 bytes_in 0 101525 station_ip 83.123.221.226 101525 port 27 101525 unique_id port 101525 remote_ip 10.8.0.90 101527 username mehdizare 101527 mac 101527 bytes_out 0 101527 bytes_in 0 101527 station_ip 5.120.93.115 101527 port 9 101527 unique_id port 101527 remote_ip 10.8.1.22 101530 username alireza 101530 unique_id port 101530 terminate_cause Lost-Carrier 101530 bytes_out 2378423 101530 bytes_in 47558319 101530 station_ip 5.120.165.55 101530 port 15729612 101530 nas_port_type Virtual 101530 remote_ip 5.5.5.87 101532 username musa 101532 mac 101532 bytes_out 1665851 101532 bytes_in 32689724 101532 station_ip 83.122.138.180 101532 port 32 101532 unique_id port 101532 remote_ip 10.8.0.106 101533 username musa 101533 mac 101533 bytes_out 14087 101533 bytes_in 28142 101533 station_ip 83.122.138.180 101533 port 27 101533 unique_id port 101533 remote_ip 10.8.0.106 101541 username aminvpn 101541 unique_id port 101541 terminate_cause Lost-Carrier 101541 bytes_out 3153897 101541 bytes_in 29330613 101541 station_ip 5.119.241.129 101541 port 15729614 101508 station_ip 46.100.223.190 101508 port 15729602 101508 nas_port_type Virtual 101508 remote_ip 5.5.5.92 101510 username mammad 101510 unique_id port 101510 terminate_cause User-Request 101510 bytes_out 1527885 101510 bytes_in 12141057 101510 station_ip 46.100.223.190 101510 port 15729606 101510 nas_port_type Virtual 101510 remote_ip 5.5.5.97 101513 username musa 101513 mac 101513 bytes_out 2812680 101513 bytes_in 9784482 101513 station_ip 83.122.253.139 101513 port 27 101513 unique_id port 101513 remote_ip 10.8.0.106 101516 username sobhan 101516 unique_id port 101516 terminate_cause Lost-Carrier 101516 bytes_out 3631382 101516 bytes_in 69417001 101516 station_ip 5.120.87.188 101516 port 15729607 101516 nas_port_type Virtual 101516 remote_ip 5.5.5.99 101521 username aminvpn 101521 unique_id port 101521 terminate_cause Lost-Carrier 101521 bytes_out 1333937 101521 bytes_in 18071641 101521 station_ip 31.57.131.104 101521 port 15729611 101521 nas_port_type Virtual 101521 remote_ip 5.5.5.86 101524 username morteza 101524 mac 101524 bytes_out 962591 101524 bytes_in 15517624 101524 station_ip 83.123.198.230 101524 port 27 101524 unique_id port 101524 remote_ip 10.8.0.90 101531 username morteza 101531 mac 101531 bytes_out 0 101531 bytes_in 0 101531 station_ip 83.123.221.226 101531 port 27 101531 unique_id port 101534 username aminvpn 101534 unique_id port 101534 terminate_cause Lost-Carrier 101534 bytes_out 957840 101534 bytes_in 14568413 101534 station_ip 5.120.142.197 101534 port 15729613 101534 nas_port_type Virtual 101534 remote_ip 5.5.5.89 101536 username madadi2 101536 mac 101536 bytes_out 1237767 101536 bytes_in 18562300 101536 station_ip 5.120.79.89 101536 port 32 101536 unique_id port 101536 remote_ip 10.8.0.26 101539 username khalili 101539 mac 101539 bytes_out 0 101539 bytes_in 0 101539 station_ip 5.119.25.170 101539 port 16 101539 unique_id port 101539 remote_ip 10.8.1.66 101540 username forozande 101540 mac 101540 bytes_out 0 101540 bytes_in 0 101540 station_ip 83.123.218.51 101540 port 15 101540 unique_id port 101542 username abbasaskari 101542 mac 101542 bytes_out 0 101542 bytes_in 0 101542 station_ip 37.129.157.120 101542 port 30 101542 unique_id port 101542 remote_ip 10.8.0.94 101545 username musa 101545 mac 101545 bytes_out 0 101545 bytes_in 0 101545 station_ip 83.122.138.180 101545 port 27 101545 unique_id port 101548 username mehdizare 101548 mac 101548 bytes_out 0 101548 bytes_in 0 101548 station_ip 5.120.93.115 101548 port 9 101548 unique_id port 101548 remote_ip 10.8.1.22 101549 username askari 101549 mac 101549 bytes_out 0 101549 bytes_in 0 101549 station_ip 5.120.71.48 101549 port 29 101549 unique_id port 101549 remote_ip 10.8.0.38 101556 username alipour 101556 kill_reason Another user logged on this global unique id 101556 mac 101556 bytes_out 0 101556 bytes_in 0 101556 station_ip 83.123.166.143 101556 port 31 101556 unique_id port 101557 username askari 101557 mac 101557 bytes_out 0 101557 bytes_in 0 101557 station_ip 5.120.71.48 101557 port 29 101557 unique_id port 101557 remote_ip 10.8.0.38 101561 username rezasekonji 101561 unique_id port 101561 terminate_cause User-Request 101561 bytes_out 1928 101561 bytes_in 1833 101561 station_ip 83.123.24.86 101561 port 15729615 101561 nas_port_type Virtual 101561 remote_ip 5.5.5.75 101565 username mehdizare 101565 mac 101565 bytes_out 0 101565 bytes_in 0 101565 station_ip 5.120.93.115 101565 port 33 101565 unique_id port 101565 remote_ip 10.8.0.22 101569 username forozande 101509 bytes_out 15821249 101509 bytes_in 324649873 101509 station_ip 37.129.211.29 101509 port 15729601 101509 nas_port_type Virtual 101509 remote_ip 5.5.5.91 101511 username aminvpn 101511 mac 101511 bytes_out 0 101511 bytes_in 0 101511 station_ip 37.129.138.153 101511 port 30 101511 unique_id port 101511 remote_ip 10.8.0.6 101517 username musa 101517 mac 101517 bytes_out 0 101517 bytes_in 0 101517 station_ip 83.122.148.80 101517 port 29 101517 unique_id port 101517 remote_ip 10.8.0.106 101519 username aminvpn 101519 unique_id port 101519 terminate_cause Lost-Carrier 101519 bytes_out 330828 101519 bytes_in 2699895 101519 station_ip 31.57.131.104 101519 port 15729610 101519 nas_port_type Virtual 101519 remote_ip 5.5.5.85 101520 username askari 101520 mac 101520 bytes_out 0 101520 bytes_in 0 101520 station_ip 5.119.189.103 101520 port 27 101520 unique_id port 101520 remote_ip 10.8.0.38 101526 username sobhan 101526 unique_id port 101526 terminate_cause Lost-Carrier 101526 bytes_out 51353950 101526 bytes_in 1174051487 101526 station_ip 5.119.221.130 101526 port 15729608 101526 nas_port_type Virtual 101526 remote_ip 5.5.5.80 101528 username morteza 101528 kill_reason Another user logged on this global unique id 101528 mac 101528 bytes_out 0 101528 bytes_in 0 101528 station_ip 83.123.221.226 101528 port 27 101528 unique_id port 101529 username morteza 101529 kill_reason Another user logged on this global unique id 101529 mac 101529 bytes_out 0 101529 bytes_in 0 101529 station_ip 83.123.221.226 101529 port 27 101529 unique_id port 101535 username forozande 101535 kill_reason Another user logged on this global unique id 101535 mac 101535 bytes_out 0 101535 bytes_in 0 101535 station_ip 83.123.218.51 101535 port 15 101535 unique_id port 101535 remote_ip 10.8.1.62 101537 username khalili 101537 mac 101537 bytes_out 3315088 101537 bytes_in 38020767 101537 station_ip 5.119.25.170 101537 port 30 101537 unique_id port 101537 remote_ip 10.8.0.78 101538 username musa 101538 kill_reason Another user logged on this global unique id 101538 mac 101538 bytes_out 0 101538 bytes_in 0 101538 station_ip 83.122.138.180 101538 port 27 101538 unique_id port 101538 remote_ip 10.8.0.106 101543 username askari 101543 mac 101543 bytes_out 0 101543 bytes_in 0 101543 station_ip 5.120.71.48 101543 port 29 101543 unique_id port 101546 username alipour 101546 kill_reason Another user logged on this global unique id 101546 mac 101546 bytes_out 0 101546 bytes_in 0 101546 station_ip 83.123.166.143 101546 port 31 101546 unique_id port 101547 username askari 101547 mac 101547 bytes_out 62307 101547 bytes_in 55918 101547 station_ip 5.120.71.48 101547 port 29 101547 unique_id port 101547 remote_ip 10.8.0.38 101551 username madadi2 101551 mac 101551 bytes_out 0 101551 bytes_in 0 101551 station_ip 5.119.20.129 101551 port 27 101551 unique_id port 101551 remote_ip 10.8.0.26 101554 username askari 101554 mac 101554 bytes_out 0 101554 bytes_in 0 101554 station_ip 5.120.71.48 101554 port 29 101554 unique_id port 101554 remote_ip 10.8.0.38 101555 username alipour 101555 kill_reason Another user logged on this global unique id 101555 mac 101555 bytes_out 0 101555 bytes_in 0 101555 station_ip 83.123.166.143 101555 port 31 101555 unique_id port 101559 username reza2742 101559 unique_id port 101559 terminate_cause User-Request 101559 bytes_out 472522 101559 bytes_in 5244138 101559 station_ip 113.203.106.111 101559 port 15729617 101559 nas_port_type Virtual 101559 remote_ip 5.5.5.78 101566 username forozande 101566 kill_reason Another user logged on this global unique id 101566 mac 101541 nas_port_type Virtual 101541 remote_ip 5.5.5.96 101544 username mehdizare 101544 mac 101544 bytes_out 0 101544 bytes_in 0 101544 station_ip 5.120.93.115 101544 port 9 101544 unique_id port 101544 remote_ip 10.8.1.22 101550 username mehdizare 101550 mac 101550 bytes_out 0 101550 bytes_in 0 101550 station_ip 5.120.93.115 101550 port 32 101550 unique_id port 101550 remote_ip 10.8.0.22 101552 username musa 101552 mac 101552 bytes_out 0 101552 bytes_in 0 101552 station_ip 83.122.138.180 101552 port 30 101552 unique_id port 101552 remote_ip 10.8.0.106 101553 username askari 101553 mac 101553 bytes_out 0 101553 bytes_in 0 101553 station_ip 5.120.71.48 101553 port 29 101553 unique_id port 101553 remote_ip 10.8.0.38 101558 username abbasaskari 101558 mac 101558 bytes_out 33917 101558 bytes_in 120917 101558 station_ip 113.203.104.9 101558 port 9 101558 unique_id port 101558 remote_ip 10.8.1.58 101560 username aminvpn 101560 unique_id port 101560 terminate_cause Lost-Carrier 101560 bytes_out 54169 101560 bytes_in 71734 101560 station_ip 5.120.142.197 101560 port 15729616 101560 nas_port_type Virtual 101560 remote_ip 5.5.5.76 101562 username reza2742 101562 unique_id port 101562 terminate_cause User-Request 101562 bytes_out 5694 101562 bytes_in 6143 101562 station_ip 113.203.106.111 101562 port 15729618 101562 nas_port_type Virtual 101562 remote_ip 5.5.5.79 101563 username mehdizare 101563 mac 101563 bytes_out 0 101563 bytes_in 0 101563 station_ip 5.120.93.115 101563 port 33 101563 unique_id port 101563 remote_ip 10.8.0.22 101564 username forozande 101564 kill_reason Another user logged on this global unique id 101564 mac 101564 bytes_out 0 101564 bytes_in 0 101564 station_ip 83.123.218.51 101564 port 32 101564 unique_id port 101564 remote_ip 10.8.0.74 101567 username amir 101567 kill_reason Another user logged on this global unique id 101567 mac 101567 bytes_out 0 101567 bytes_in 0 101567 station_ip 46.225.211.144 101567 port 30 101567 unique_id port 101567 remote_ip 10.8.0.54 101571 username forozande 101571 kill_reason Another user logged on this global unique id 101571 mac 101571 bytes_out 0 101571 bytes_in 0 101571 station_ip 83.123.218.51 101571 port 32 101571 unique_id port 101572 username mehdizare 101572 mac 101572 bytes_out 0 101572 bytes_in 0 101572 station_ip 5.120.93.115 101572 port 35 101572 unique_id port 101572 remote_ip 10.8.0.22 101573 username forozande 101573 kill_reason Another user logged on this global unique id 101573 mac 101573 bytes_out 0 101573 bytes_in 0 101573 station_ip 83.123.218.51 101573 port 32 101573 unique_id port 101574 username mehdizare 101574 mac 101574 bytes_out 13689 101574 bytes_in 13711 101574 station_ip 5.120.93.115 101574 port 9 101574 unique_id port 101574 remote_ip 10.8.1.22 101581 username forozande 101581 kill_reason Another user logged on this global unique id 101581 mac 101581 bytes_out 0 101581 bytes_in 0 101581 station_ip 83.123.218.51 101581 port 32 101581 unique_id port 101584 username mehdizare 101584 mac 101584 bytes_out 7758 101584 bytes_in 14035 101584 station_ip 5.120.93.115 101584 port 35 101584 unique_id port 101584 remote_ip 10.8.0.22 101585 username mehdizare 101585 mac 101585 bytes_out 0 101585 bytes_in 0 101585 station_ip 5.120.93.115 101585 port 36 101585 unique_id port 101585 remote_ip 10.8.0.22 101588 username forozande 101588 kill_reason Another user logged on this global unique id 101588 mac 101588 bytes_out 0 101588 bytes_in 0 101588 station_ip 83.123.218.51 101588 port 32 101588 unique_id port 101590 username askari 101590 mac 101566 bytes_out 0 101566 bytes_in 0 101566 station_ip 83.123.218.51 101566 port 32 101566 unique_id port 101568 username mehdizare 101568 mac 101568 bytes_out 0 101568 bytes_in 0 101568 station_ip 5.120.93.115 101568 port 33 101568 unique_id port 101568 remote_ip 10.8.0.22 101576 username mehdizare 101576 mac 101576 bytes_out 10772 101576 bytes_in 20840 101576 station_ip 5.120.93.115 101576 port 35 101576 unique_id port 101576 remote_ip 10.8.0.22 101577 username askari 101577 mac 101577 bytes_out 0 101577 bytes_in 0 101577 station_ip 5.120.71.48 101577 port 29 101577 unique_id port 101577 remote_ip 10.8.0.38 101580 username aminvpn 101580 unique_id port 101580 terminate_cause Lost-Carrier 101580 bytes_out 102781 101580 bytes_in 578415 101580 station_ip 31.57.131.104 101580 port 15729620 101580 nas_port_type Virtual 101580 remote_ip 5.5.5.68 101582 username askari 101582 mac 101582 bytes_out 47137 101582 bytes_in 34949 101582 station_ip 5.120.71.48 101582 port 35 101582 unique_id port 101582 remote_ip 10.8.0.38 101586 username mehdizare 101586 mac 101586 bytes_out 0 101586 bytes_in 0 101586 station_ip 5.120.93.115 101586 port 9 101586 unique_id port 101586 remote_ip 10.8.1.22 101595 username askari 101595 mac 101595 bytes_out 0 101595 bytes_in 0 101595 station_ip 5.120.71.48 101595 port 9 101595 unique_id port 101595 remote_ip 10.8.1.30 101596 username aminvpn 101596 unique_id port 101596 terminate_cause Lost-Carrier 101596 bytes_out 3554417 101596 bytes_in 71671925 101596 station_ip 31.57.131.104 101596 port 15729621 101596 nas_port_type Virtual 101596 remote_ip 5.5.5.69 101599 username forozande 101599 mac 101599 bytes_out 0 101599 bytes_in 0 101599 station_ip 83.123.218.51 101599 port 29 101599 unique_id port 101603 username mehdizare 101603 mac 101603 bytes_out 44476 101603 bytes_in 77318 101603 station_ip 5.120.93.115 101603 port 35 101603 unique_id port 101603 remote_ip 10.8.0.22 101605 username askari 101605 mac 101605 bytes_out 31789 101605 bytes_in 85629 101605 station_ip 5.120.71.48 101605 port 9 101605 unique_id port 101605 remote_ip 10.8.1.30 101607 username alipour 101607 mac 101607 bytes_out 0 101607 bytes_in 0 101607 station_ip 83.123.166.143 101607 port 31 101607 unique_id port 101607 remote_ip 10.8.0.70 101608 username mehdizare 101608 mac 101608 bytes_out 4128 101608 bytes_in 8410 101608 station_ip 5.120.93.115 101608 port 29 101608 unique_id port 101608 remote_ip 10.8.0.22 101609 username forozande 101609 mac 101609 bytes_out 0 101609 bytes_in 0 101609 station_ip 37.129.194.147 101609 port 35 101609 unique_id port 101609 remote_ip 10.8.0.74 101611 username arman1 101611 mac 101611 bytes_out 1590202 101611 bytes_in 8711980 101611 station_ip 5.119.157.24 101611 port 32 101611 unique_id port 101611 remote_ip 10.8.0.86 101621 username askari 101621 mac 101621 bytes_out 4035 101621 bytes_in 5057 101621 station_ip 5.120.71.48 101621 port 9 101621 unique_id port 101621 remote_ip 10.8.1.30 101625 username mirzaei 101625 kill_reason Another user logged on this global unique id 101625 mac 101625 bytes_out 0 101625 bytes_in 0 101625 station_ip 5.120.132.26 101625 port 34 101625 unique_id port 101625 remote_ip 10.8.0.30 101626 username musa 101626 mac 101626 bytes_out 0 101626 bytes_in 0 101626 station_ip 83.123.181.130 101626 port 27 101626 unique_id port 101626 remote_ip 10.8.0.106 101630 username musa 101630 mac 101630 bytes_out 0 101630 bytes_in 0 101569 kill_reason Another user logged on this global unique id 101569 mac 101569 bytes_out 0 101569 bytes_in 0 101569 station_ip 83.123.218.51 101569 port 32 101569 unique_id port 101570 username khalili 101570 mac 101570 bytes_out 186018 101570 bytes_in 382338 101570 station_ip 5.120.135.75 101570 port 16 101570 unique_id port 101570 remote_ip 10.8.1.66 101575 username forozande 101575 kill_reason Another user logged on this global unique id 101575 mac 101575 bytes_out 0 101575 bytes_in 0 101575 station_ip 83.123.218.51 101575 port 32 101575 unique_id port 101578 username amir 101578 kill_reason Another user logged on this global unique id 101578 mac 101578 bytes_out 0 101578 bytes_in 0 101578 station_ip 46.225.211.144 101578 port 30 101578 unique_id port 101579 username askari 101579 mac 101579 bytes_out 5655 101579 bytes_in 4768 101579 station_ip 5.120.71.48 101579 port 29 101579 unique_id port 101579 remote_ip 10.8.0.38 101583 username mehdizare 101583 mac 101583 bytes_out 11990 101583 bytes_in 18028 101583 station_ip 5.120.93.115 101583 port 9 101583 unique_id port 101583 remote_ip 10.8.1.22 101587 username askari 101587 mac 101587 bytes_out 40088 101587 bytes_in 39587 101587 station_ip 5.120.71.48 101587 port 29 101587 unique_id port 101587 remote_ip 10.8.0.38 101589 username forozande 101589 mac 101589 bytes_out 0 101589 bytes_in 0 101589 station_ip 83.123.218.51 101589 port 32 101589 unique_id port 101592 username forozande 101592 kill_reason Another user logged on this global unique id 101592 mac 101592 bytes_out 0 101592 bytes_in 0 101592 station_ip 83.123.218.51 101592 port 29 101592 unique_id port 101592 remote_ip 10.8.0.74 101593 username amir 101593 kill_reason Another user logged on this global unique id 101593 mac 101593 bytes_out 0 101593 bytes_in 0 101593 station_ip 46.225.211.144 101593 port 30 101593 unique_id port 101594 username forozande 101594 kill_reason Another user logged on this global unique id 101594 mac 101594 bytes_out 0 101594 bytes_in 0 101594 station_ip 83.123.218.51 101594 port 29 101594 unique_id port 101601 username amir 101601 kill_reason Another user logged on this global unique id 101601 mac 101601 bytes_out 0 101601 bytes_in 0 101601 station_ip 46.225.211.144 101601 port 30 101601 unique_id port 101610 username forozande 101610 unique_id port 101610 terminate_cause User-Request 101610 bytes_out 0 101610 bytes_in 0 101610 station_ip 37.129.194.147 101610 port 15729624 101610 nas_port_type Virtual 101610 remote_ip 5.5.5.254 101612 username alipour 101612 mac 101612 bytes_out 0 101612 bytes_in 0 101612 station_ip 83.123.166.143 101612 port 31 101612 unique_id port 101612 remote_ip 10.8.0.70 101613 username mehdizare 101613 mac 101613 bytes_out 0 101613 bytes_in 0 101613 station_ip 5.120.93.115 101613 port 29 101613 unique_id port 101613 remote_ip 10.8.0.22 101614 username alipour 101614 mac 101614 bytes_out 0 101614 bytes_in 0 101614 station_ip 83.123.166.143 101614 port 32 101614 unique_id port 101614 remote_ip 10.8.0.70 101616 username forozande 101616 kill_reason Another user logged on this global unique id 101616 mac 101616 bytes_out 0 101616 bytes_in 0 101616 station_ip 37.129.194.147 101616 port 35 101616 unique_id port 101616 remote_ip 10.8.0.74 101617 username morteza 101617 mac 101617 bytes_out 61270 101617 bytes_in 241343 101617 station_ip 83.123.253.238 101617 port 36 101617 unique_id port 101617 remote_ip 10.8.0.90 101618 username alipour 101618 mac 101618 bytes_out 55631 101618 bytes_in 110805 101618 station_ip 83.123.166.143 101618 port 30 101590 bytes_out 0 101590 bytes_in 0 101590 station_ip 5.120.71.48 101590 port 9 101590 unique_id port 101590 remote_ip 10.8.1.30 101591 username askari 101591 mac 101591 bytes_out 0 101591 bytes_in 0 101591 station_ip 5.120.71.48 101591 port 9 101591 unique_id port 101591 remote_ip 10.8.1.30 101597 username forozande 101597 kill_reason Another user logged on this global unique id 101597 mac 101597 bytes_out 0 101597 bytes_in 0 101597 station_ip 83.123.218.51 101597 port 29 101597 unique_id port 101598 username askari 101598 mac 101598 bytes_out 0 101598 bytes_in 0 101598 station_ip 5.120.71.48 101598 port 15 101598 unique_id port 101598 remote_ip 10.8.1.30 101600 username alipour 101600 mac 101600 bytes_out 0 101600 bytes_in 0 101600 station_ip 83.123.166.143 101600 port 31 101600 unique_id port 101602 username bcboard 101602 unique_id port 101602 terminate_cause Lost-Carrier 101602 bytes_out 2006963 101602 bytes_in 28951362 101602 station_ip 83.122.122.4 101602 port 15729622 101602 nas_port_type Virtual 101602 remote_ip 5.5.5.71 101604 username abbasaskari 101604 mac 101604 bytes_out 0 101604 bytes_in 0 101604 station_ip 113.203.109.29 101604 port 29 101604 unique_id port 101604 remote_ip 10.8.0.94 101606 username alirr 101606 unique_id port 101606 terminate_cause User-Request 101606 bytes_out 965783 101606 bytes_in 16614666 101606 station_ip 5.119.229.24 101606 port 15729623 101606 nas_port_type Virtual 101606 remote_ip 5.5.5.73 101615 username amir 101615 mac 101615 bytes_out 0 101615 bytes_in 0 101615 station_ip 46.225.211.144 101615 port 30 101615 unique_id port 101619 username forozande 101619 kill_reason Another user logged on this global unique id 101619 mac 101619 bytes_out 0 101619 bytes_in 0 101619 station_ip 37.129.194.147 101619 port 35 101619 unique_id port 101620 username askari 101620 mac 101620 bytes_out 39181 101620 bytes_in 64843 101620 station_ip 5.120.71.48 101620 port 9 101620 unique_id port 101620 remote_ip 10.8.1.30 101623 username mehdizare 101623 mac 101623 bytes_out 0 101623 bytes_in 0 101623 station_ip 5.120.93.115 101623 port 15 101623 unique_id port 101623 remote_ip 10.8.1.22 101624 username hoorieh 101624 kill_reason Another user logged on this global unique id 101624 mac 101624 bytes_out 0 101624 bytes_in 0 101624 station_ip 5.119.184.57 101624 port 30 101624 unique_id port 101624 remote_ip 10.8.0.10 101627 username hoorieh 101627 mac 101627 bytes_out 0 101627 bytes_in 0 101627 station_ip 5.119.184.57 101627 port 30 101627 unique_id port 101631 username mehdizare 101631 mac 101631 bytes_out 11062 101631 bytes_in 19127 101631 station_ip 5.120.93.115 101631 port 15 101631 unique_id port 101631 remote_ip 10.8.1.22 101634 username askari 101634 mac 101634 bytes_out 0 101634 bytes_in 0 101634 station_ip 5.120.71.48 101634 port 17 101634 unique_id port 101634 remote_ip 10.8.1.30 101636 username forozande 101636 mac 101636 bytes_out 0 101636 bytes_in 0 101636 station_ip 37.129.194.147 101636 port 35 101636 unique_id port 101642 username tahmasebi 101642 kill_reason Another user logged on this global unique id 101642 mac 101642 bytes_out 0 101642 bytes_in 0 101642 station_ip 5.120.78.63 101642 port 27 101642 unique_id port 101642 remote_ip 10.8.0.66 101645 username alipour 101645 mac 101645 bytes_out 0 101645 bytes_in 0 101645 station_ip 83.123.166.143 101645 port 31 101645 unique_id port 101645 remote_ip 10.8.0.70 101646 username alemzadeh 101646 unique_id port 101646 terminate_cause User-Request 101618 unique_id port 101618 remote_ip 10.8.0.70 101622 username askari 101622 mac 101622 bytes_out 0 101622 bytes_in 0 101622 station_ip 5.120.71.48 101622 port 16 101622 unique_id port 101622 remote_ip 10.8.1.30 101628 username reza2742 101628 unique_id port 101628 terminate_cause User-Request 101628 bytes_out 102286 101628 bytes_in 261538 101628 station_ip 83.122.69.46 101628 port 15729627 101628 nas_port_type Virtual 101628 remote_ip 5.5.5.66 101629 username alipour 101629 mac 101629 bytes_out 315865 101629 bytes_in 1790141 101629 station_ip 83.123.166.143 101629 port 31 101629 unique_id port 101629 remote_ip 10.8.0.70 101633 username mehdizare 101633 mac 101633 bytes_out 7310 101633 bytes_in 10861 101633 station_ip 5.120.93.115 101633 port 15 101633 unique_id port 101633 remote_ip 10.8.1.22 101635 username askari 101635 mac 101635 bytes_out 4466 101635 bytes_in 9448 101635 station_ip 5.120.71.48 101635 port 15 101635 unique_id port 101635 remote_ip 10.8.1.30 101637 username alipour 101637 mac 101637 bytes_out 0 101637 bytes_in 0 101637 station_ip 83.123.166.143 101637 port 27 101637 unique_id port 101637 remote_ip 10.8.0.70 101639 username askari 101639 mac 101639 bytes_out 0 101639 bytes_in 0 101639 station_ip 5.120.71.48 101639 port 15 101639 unique_id port 101639 remote_ip 10.8.1.30 101640 username alipour 101640 mac 101640 bytes_out 0 101640 bytes_in 0 101640 station_ip 83.123.166.143 101640 port 27 101640 unique_id port 101640 remote_ip 10.8.0.70 101641 username madadi2 101641 mac 101641 bytes_out 0 101641 bytes_in 0 101641 station_ip 5.119.36.133 101641 port 30 101641 unique_id port 101641 remote_ip 10.8.0.26 101647 username forozande 101647 mac 101647 bytes_out 0 101647 bytes_in 0 101647 station_ip 37.129.156.198 101647 port 31 101647 unique_id port 101647 remote_ip 10.8.0.74 101650 username alipour 101650 mac 101650 bytes_out 0 101650 bytes_in 0 101650 station_ip 83.123.166.143 101650 port 9 101650 unique_id port 101650 remote_ip 10.8.1.38 101651 username mehdizare 101651 mac 101651 bytes_out 0 101651 bytes_in 0 101651 station_ip 5.120.93.115 101651 port 30 101651 unique_id port 101651 remote_ip 10.8.0.22 101652 username forozande 101652 kill_reason Another user logged on this global unique id 101652 mac 101652 bytes_out 0 101652 bytes_in 0 101652 station_ip 83.122.9.127 101652 port 31 101652 unique_id port 101652 remote_ip 10.8.0.74 101658 username mehdizare 101658 mac 101658 bytes_out 0 101658 bytes_in 0 101658 station_ip 5.120.93.115 101658 port 9 101658 unique_id port 101658 remote_ip 10.8.1.22 101662 username rezasekonji 101662 unique_id port 101662 terminate_cause User-Request 101662 bytes_out 596 101662 bytes_in 915 101662 station_ip 83.123.24.86 101662 port 15729631 101662 nas_port_type Virtual 101662 remote_ip 5.5.5.253 101665 username ahmadipour 101665 unique_id port 101665 terminate_cause Lost-Carrier 101665 bytes_out 738951 101665 bytes_in 12269181 101665 station_ip 37.129.119.29 101665 port 15729632 101665 nas_port_type Virtual 101665 remote_ip 5.5.5.57 101667 username mahdixz 101667 unique_id port 101667 terminate_cause User-Request 101667 bytes_out 4919926 101667 bytes_in 179614720 101667 station_ip 5.120.15.28 101667 port 15729633 101667 nas_port_type Virtual 101667 remote_ip 5.5.5.59 101668 username alirr 101668 unique_id port 101668 terminate_cause Lost-Carrier 101668 bytes_out 1510923 101668 bytes_in 14412861 101668 station_ip 5.120.122.171 101668 port 15729625 101668 nas_port_type Virtual 101668 remote_ip 5.5.5.62 101630 station_ip 83.123.181.130 101630 port 32 101630 unique_id port 101630 remote_ip 10.8.0.106 101632 username askari 101632 mac 101632 bytes_out 0 101632 bytes_in 0 101632 station_ip 5.120.71.48 101632 port 9 101632 unique_id port 101632 remote_ip 10.8.1.30 101638 username mehdizare 101638 mac 101638 bytes_out 115187 101638 bytes_in 42481 101638 station_ip 5.120.93.115 101638 port 9 101638 unique_id port 101638 remote_ip 10.8.1.22 101643 username mehdizare 101643 mac 101643 bytes_out 0 101643 bytes_in 0 101643 station_ip 5.120.93.115 101643 port 9 101643 unique_id port 101643 remote_ip 10.8.1.22 101644 username aminvpn 101644 unique_id port 101644 terminate_cause Lost-Carrier 101644 bytes_out 150397 101644 bytes_in 633879 101644 station_ip 5.233.79.59 101644 port 15729629 101644 nas_port_type Virtual 101644 remote_ip 5.5.5.60 101648 username mehdizare 101648 mac 101648 bytes_out 0 101648 bytes_in 0 101648 station_ip 5.120.93.115 101648 port 30 101648 unique_id port 101648 remote_ip 10.8.0.22 101655 username forozande 101655 kill_reason Another user logged on this global unique id 101655 mac 101655 bytes_out 0 101655 bytes_in 0 101655 station_ip 83.122.9.127 101655 port 31 101655 unique_id port 101656 username forozande 101656 mac 101656 bytes_out 0 101656 bytes_in 0 101656 station_ip 83.122.9.127 101656 port 31 101656 unique_id port 101659 username musa 101659 mac 101659 bytes_out 404696 101659 bytes_in 1678205 101659 station_ip 83.123.181.130 101659 port 30 101659 unique_id port 101659 remote_ip 10.8.0.106 101660 username amir 101660 mac 101660 bytes_out 0 101660 bytes_in 0 101660 station_ip 83.123.30.125 101660 port 29 101660 unique_id port 101660 remote_ip 10.8.0.54 101664 username alirr 101664 kill_reason Maximum number of concurrent logins reached 101664 unique_id port 101664 bytes_out 0 101664 bytes_in 0 101664 station_ip 94.183.213.166 101664 port 15729635 101664 nas_port_type Virtual 101669 username musa 101669 mac 101669 bytes_out 474252 101669 bytes_in 5097868 101669 station_ip 83.123.181.130 101669 port 35 101669 unique_id port 101669 remote_ip 10.8.0.106 101673 username aminvpn 101673 unique_id port 101673 terminate_cause User-Request 101673 bytes_out 172129 101673 bytes_in 3788256 101673 station_ip 37.129.97.119 101673 port 15729638 101673 nas_port_type Virtual 101673 remote_ip 5.5.5.49 101675 username mehdizare 101675 mac 101675 bytes_out 0 101675 bytes_in 0 101675 station_ip 5.120.93.115 101675 port 9 101675 unique_id port 101675 remote_ip 10.8.1.22 101682 username forozande 101682 mac 101682 bytes_out 364933 101682 bytes_in 1281009 101682 station_ip 113.203.23.128 101682 port 30 101682 unique_id port 101682 remote_ip 10.8.0.74 101684 username mirzaei 101684 kill_reason Another user logged on this global unique id 101684 mac 101684 bytes_out 0 101684 bytes_in 0 101684 station_ip 5.120.132.26 101684 port 34 101684 unique_id port 101685 username musa 101685 mac 101685 bytes_out 1229932 101685 bytes_in 20476277 101685 station_ip 83.122.241.42 101685 port 31 101685 unique_id port 101685 remote_ip 10.8.0.106 101687 username mehdizare 101687 mac 101687 bytes_out 0 101687 bytes_in 0 101687 station_ip 5.120.93.115 101687 port 9 101687 unique_id port 101687 remote_ip 10.8.1.22 101690 username arman1 101690 kill_reason Another user logged on this global unique id 101690 mac 101690 bytes_out 0 101690 bytes_in 0 101690 station_ip 5.120.137.54 101690 port 30 101690 unique_id port 101690 remote_ip 10.8.0.86 101692 username madadi2 101692 mac 101646 bytes_out 216925 101646 bytes_in 3519654 101646 station_ip 83.122.137.68 101646 port 15729630 101646 nas_port_type Virtual 101646 remote_ip 5.5.5.253 101649 username mehdizare 101649 mac 101649 bytes_out 7265 101649 bytes_in 9696 101649 station_ip 5.120.93.115 101649 port 32 101649 unique_id port 101649 remote_ip 10.8.0.22 101653 username musa 101653 mac 101653 bytes_out 0 101653 bytes_in 0 101653 station_ip 83.123.181.130 101653 port 16 101653 unique_id port 101653 remote_ip 10.8.1.78 101654 username tahmasebi 101654 kill_reason Another user logged on this global unique id 101654 mac 101654 bytes_out 0 101654 bytes_in 0 101654 station_ip 5.120.78.63 101654 port 27 101654 unique_id port 101657 username mehdizare 101657 mac 101657 bytes_out 0 101657 bytes_in 0 101657 station_ip 5.120.93.115 101657 port 35 101657 unique_id port 101657 remote_ip 10.8.0.22 101661 username madadi2 101661 mac 101661 bytes_out 155302 101661 bytes_in 912152 101661 station_ip 5.120.95.26 101661 port 31 101661 unique_id port 101661 remote_ip 10.8.0.26 101663 username alirr 101663 kill_reason Maximum number of concurrent logins reached 101663 unique_id port 101663 bytes_out 0 101663 bytes_in 0 101663 station_ip 94.183.213.166 101663 port 15729634 101663 nas_port_type Virtual 101666 username alemzadeh 101666 unique_id port 101666 terminate_cause User-Request 101666 bytes_out 905360 101666 bytes_in 30999102 101666 station_ip 83.122.137.68 101666 port 15729636 101666 nas_port_type Virtual 101666 remote_ip 5.5.5.61 101670 username alipour 101670 mac 101670 bytes_out 791353 101670 bytes_in 10040562 101670 station_ip 83.123.166.143 101670 port 32 101670 unique_id port 101670 remote_ip 10.8.0.70 101671 username musa 101671 mac 101671 bytes_out 0 101671 bytes_in 0 101671 station_ip 83.123.181.130 101671 port 30 101671 unique_id port 101671 remote_ip 10.8.0.106 101672 username alipour 101672 mac 101672 bytes_out 0 101672 bytes_in 0 101672 station_ip 83.123.166.143 101672 port 16 101672 unique_id port 101672 remote_ip 10.8.1.38 101674 username abbasaskari 101674 mac 101674 bytes_out 61556 101674 bytes_in 159516 101674 station_ip 37.129.240.229 101674 port 29 101674 unique_id port 101674 remote_ip 10.8.0.94 101676 username aminvpn 101676 unique_id port 101676 terminate_cause User-Request 101676 bytes_out 889783 101676 bytes_in 28446762 101676 station_ip 5.233.79.59 101676 port 15729637 101676 nas_port_type Virtual 101676 remote_ip 5.5.5.63 101679 username musa 101679 mac 101679 bytes_out 0 101679 bytes_in 0 101679 station_ip 83.123.181.130 101679 port 31 101679 unique_id port 101679 remote_ip 10.8.0.106 101680 username amir 101680 mac 101680 bytes_out 392093 101680 bytes_in 5395922 101680 station_ip 46.225.214.162 101680 port 16 101680 unique_id port 101680 remote_ip 10.8.1.34 101686 username musa 101686 mac 101686 bytes_out 0 101686 bytes_in 0 101686 station_ip 83.122.241.42 101686 port 31 101686 unique_id port 101686 remote_ip 10.8.0.106 101693 username alireza1 101693 unique_id port 101693 terminate_cause Lost-Carrier 101693 bytes_out 56727 101693 bytes_in 739871 101693 station_ip 5.119.159.154 101693 port 15729641 101693 nas_port_type Virtual 101693 remote_ip 5.5.5.54 101697 username abbasaskari 101697 mac 101697 bytes_out 0 101697 bytes_in 0 101697 station_ip 37.129.240.229 101697 port 29 101697 unique_id port 101697 remote_ip 10.8.0.94 101700 username mehdizare 101700 mac 101700 bytes_out 0 101700 bytes_in 0 101700 station_ip 5.120.93.115 101700 port 9 101700 unique_id port 101677 username abbasaskari 101677 mac 101677 bytes_out 87856 101677 bytes_in 344394 101677 station_ip 37.129.240.229 101677 port 29 101677 unique_id port 101677 remote_ip 10.8.0.94 101678 username amir 101678 mac 101678 bytes_out 833830 101678 bytes_in 9675584 101678 station_ip 46.225.214.162 101678 port 15 101678 unique_id port 101678 remote_ip 10.8.1.34 101681 username musa 101681 mac 101681 bytes_out 19303 101681 bytes_in 29103 101681 station_ip 83.122.241.42 101681 port 32 101681 unique_id port 101681 remote_ip 10.8.0.106 101683 username amir 101683 mac 101683 bytes_out 48252 101683 bytes_in 135464 101683 station_ip 83.123.89.101 101683 port 15 101683 unique_id port 101683 remote_ip 10.8.1.34 101688 username musa 101688 mac 101688 bytes_out 14057 101688 bytes_in 20008 101688 station_ip 83.122.241.42 101688 port 32 101688 unique_id port 101688 remote_ip 10.8.0.106 101689 username musa 101689 mac 101689 bytes_out 0 101689 bytes_in 0 101689 station_ip 83.122.241.42 101689 port 15 101689 unique_id port 101689 remote_ip 10.8.1.78 101691 username mehdizare 101691 mac 101691 bytes_out 0 101691 bytes_in 0 101691 station_ip 5.120.93.115 101691 port 9 101691 unique_id port 101691 remote_ip 10.8.1.22 101695 username abbasaskari 101695 mac 101695 bytes_out 0 101695 bytes_in 0 101695 station_ip 37.129.240.229 101695 port 29 101695 unique_id port 101695 remote_ip 10.8.0.94 101707 username mehdizare 101707 mac 101707 bytes_out 6679 101707 bytes_in 7279 101707 station_ip 5.119.147.158 101707 port 9 101707 unique_id port 101707 remote_ip 10.8.1.22 101708 username alirr 101708 unique_id port 101708 terminate_cause User-Request 101708 bytes_out 78915667 101708 bytes_in 215448019 101708 station_ip 94.183.213.166 101708 port 15729628 101708 nas_port_type Virtual 101708 remote_ip 5.5.5.67 101709 username madadi2 101709 mac 101709 bytes_out 0 101709 bytes_in 0 101709 station_ip 5.120.127.53 101709 port 30 101709 unique_id port 101709 remote_ip 10.8.0.26 101712 username mehdizare 101712 mac 101712 bytes_out 99317 101712 bytes_in 108349 101712 station_ip 5.119.147.158 101712 port 31 101712 unique_id port 101712 remote_ip 10.8.0.22 101716 username mehdizare 101716 mac 101716 bytes_out 7236 101716 bytes_in 10520 101716 station_ip 5.119.147.158 101716 port 15 101716 unique_id port 101716 remote_ip 10.8.1.22 101718 username madadi2 101718 mac 101718 bytes_out 0 101718 bytes_in 0 101718 station_ip 5.120.138.126 101718 port 30 101718 unique_id port 101718 remote_ip 10.8.0.26 101720 username aminvpn 101720 mac 101720 bytes_out 0 101720 bytes_in 0 101720 station_ip 37.137.43.103 101720 port 29 101720 unique_id port 101720 remote_ip 10.8.0.6 101723 username abbasaskari 101723 mac 101723 bytes_out 33870 101723 bytes_in 33661 101723 station_ip 37.129.198.193 101723 port 29 101723 unique_id port 101723 remote_ip 10.8.0.94 101724 username forozande 101724 mac 101724 bytes_out 112225 101724 bytes_in 618907 101724 station_ip 37.129.48.0 101724 port 30 101724 unique_id port 101724 remote_ip 10.8.0.74 101728 username abbasaskari 101728 mac 101728 bytes_out 0 101728 bytes_in 0 101728 station_ip 37.129.198.193 101728 port 29 101728 unique_id port 101728 remote_ip 10.8.0.94 101729 username mehdizare 101729 mac 101729 bytes_out 0 101729 bytes_in 0 101729 station_ip 5.119.147.158 101729 port 15 101729 unique_id port 101729 remote_ip 10.8.1.22 101735 username abbasaskari 101735 mac 101692 bytes_out 0 101692 bytes_in 0 101692 station_ip 5.120.124.96 101692 port 31 101692 unique_id port 101692 remote_ip 10.8.0.26 101694 username madadi2 101694 mac 101694 bytes_out 0 101694 bytes_in 0 101694 station_ip 5.120.83.126 101694 port 32 101694 unique_id port 101694 remote_ip 10.8.0.26 101696 username musa 101696 mac 101696 bytes_out 2518210 101696 bytes_in 37105085 101696 station_ip 83.122.241.42 101696 port 15 101696 unique_id port 101696 remote_ip 10.8.1.78 101698 username askari 101698 mac 101698 bytes_out 0 101698 bytes_in 0 101698 station_ip 5.120.147.44 101698 port 31 101698 unique_id port 101698 remote_ip 10.8.0.38 101699 username arman1 101699 mac 101699 bytes_out 0 101699 bytes_in 0 101699 station_ip 5.120.137.54 101699 port 30 101699 unique_id port 101701 username mehdizare 101701 mac 101701 bytes_out 4626 101701 bytes_in 10840 101701 station_ip 5.120.93.115 101701 port 9 101701 unique_id port 101701 remote_ip 10.8.1.22 101703 username mirzaei 101703 kill_reason Another user logged on this global unique id 101703 mac 101703 bytes_out 0 101703 bytes_in 0 101703 station_ip 5.120.132.26 101703 port 34 101703 unique_id port 101711 username mahdixz 101711 unique_id port 101711 terminate_cause Lost-Carrier 101711 bytes_out 1238959 101711 bytes_in 21667486 101711 station_ip 5.120.15.28 101711 port 15729644 101711 nas_port_type Virtual 101711 remote_ip 5.5.5.254 101715 username mehdizare 101715 kill_reason Maximum check online fails reached 101715 mac 101715 bytes_out 0 101715 bytes_in 0 101715 station_ip 5.119.147.158 101715 port 9 101715 unique_id port 101717 username madadi2 101717 mac 101717 bytes_out 257572 101717 bytes_in 2736219 101717 station_ip 5.119.42.165 101717 port 30 101717 unique_id port 101717 remote_ip 10.8.0.26 101719 username bcboard 101719 unique_id port 101719 terminate_cause Lost-Carrier 101719 bytes_out 166068 101719 bytes_in 321693 101719 station_ip 37.129.217.124 101719 port 15729647 101719 nas_port_type Virtual 101719 remote_ip 5.5.5.41 101721 username forozande 101721 mac 101721 bytes_out 177133 101721 bytes_in 976455 101721 station_ip 37.129.106.80 101721 port 30 101721 unique_id port 101721 remote_ip 10.8.0.74 101722 username reza2742 101722 unique_id port 101722 terminate_cause User-Request 101722 bytes_out 83986 101722 bytes_in 163245 101722 station_ip 83.122.69.46 101722 port 15729648 101722 nas_port_type Virtual 101722 remote_ip 5.5.5.42 101725 username aminvpn 101725 mac 101725 bytes_out 11545 101725 bytes_in 12394 101725 station_ip 37.137.43.103 101725 port 31 101725 unique_id port 101725 remote_ip 10.8.0.6 101727 username tahmasebi 101727 kill_reason Another user logged on this global unique id 101727 mac 101727 bytes_out 0 101727 bytes_in 0 101727 station_ip 5.120.78.63 101727 port 27 101727 unique_id port 101730 username tahmasebi 101730 kill_reason Another user logged on this global unique id 101730 mac 101730 bytes_out 0 101730 bytes_in 0 101730 station_ip 5.120.78.63 101730 port 27 101730 unique_id port 101731 username abbasaskari 101731 mac 101731 bytes_out 109988 101731 bytes_in 656657 101731 station_ip 37.129.198.193 101731 port 29 101731 unique_id port 101731 remote_ip 10.8.0.94 101733 username abbasaskari 101733 mac 101733 bytes_out 0 101733 bytes_in 0 101733 station_ip 37.129.198.193 101733 port 29 101733 unique_id port 101733 remote_ip 10.8.0.94 101734 username abbasaskari 101734 mac 101734 bytes_out 0 101734 bytes_in 0 101734 station_ip 37.129.198.193 101734 port 29 101734 unique_id port 101734 remote_ip 10.8.0.94 101700 remote_ip 10.8.1.22 101702 username alireza 101702 unique_id port 101702 terminate_cause User-Request 101702 bytes_out 554397 101702 bytes_in 8300085 101702 station_ip 5.120.165.55 101702 port 15729640 101702 nas_port_type Virtual 101702 remote_ip 5.5.5.53 101704 username mahdixz 101704 unique_id port 101704 terminate_cause User-Request 101704 bytes_out 0 101704 bytes_in 0 101704 station_ip 5.120.15.28 101704 port 15729643 101704 nas_port_type Virtual 101704 remote_ip 5.5.5.254 101705 username mehdizare 101705 mac 101705 bytes_out 10769 101705 bytes_in 16192 101705 station_ip 5.120.93.115 101705 port 9 101705 unique_id port 101705 remote_ip 10.8.1.22 101706 username bcboard 101706 unique_id port 101706 terminate_cause Lost-Carrier 101706 bytes_out 1280198 101706 bytes_in 23338639 101706 station_ip 37.129.217.124 101706 port 15729639 101706 nas_port_type Virtual 101706 remote_ip 5.5.5.51 101710 username aminvpn 101710 unique_id port 101710 terminate_cause Lost-Carrier 101710 bytes_out 1499960 101710 bytes_in 17164237 101710 station_ip 5.119.241.129 101710 port 15729642 101710 nas_port_type Virtual 101710 remote_ip 5.5.5.56 101713 username forozande 101713 mac 101713 bytes_out 435470 101713 bytes_in 2366148 101713 station_ip 83.123.206.150 101713 port 30 101713 unique_id port 101713 remote_ip 10.8.0.74 101714 username mehdizare 101714 mac 101714 bytes_out 24981 101714 bytes_in 35371 101714 station_ip 5.119.147.158 101714 port 9 101714 unique_id port 101714 remote_ip 10.8.1.22 101726 username khalili 101726 unique_id port 101726 terminate_cause User-Request 101726 bytes_out 14736250 101726 bytes_in 34713755 101726 station_ip 5.120.135.75 101726 port 15729619 101726 nas_port_type Virtual 101726 remote_ip 5.5.5.255 101732 username abbasaskari 101732 mac 101732 bytes_out 0 101732 bytes_in 0 101732 station_ip 37.129.198.193 101732 port 29 101732 unique_id port 101732 remote_ip 10.8.0.94 101736 username abbasaskari 101736 mac 101736 bytes_out 0 101736 bytes_in 0 101736 station_ip 37.129.198.193 101736 port 31 101736 unique_id port 101736 remote_ip 10.8.0.94 101737 username reza2742 101737 unique_id port 101737 terminate_cause Lost-Carrier 101737 bytes_out 239675 101737 bytes_in 2427632 101737 station_ip 5.202.11.28 101737 port 15729649 101737 nas_port_type Virtual 101737 remote_ip 5.5.5.44 101740 username forozande 101740 mac 101740 bytes_out 0 101740 bytes_in 0 101740 station_ip 83.122.120.196 101740 port 31 101740 unique_id port 101740 remote_ip 10.8.0.74 101741 username abbasaskari 101741 kill_reason Another user logged on this global unique id 101741 mac 101741 bytes_out 0 101741 bytes_in 0 101741 station_ip 37.129.198.193 101741 port 29 101741 unique_id port 101741 remote_ip 10.8.0.94 101745 username madadi2 101745 mac 101745 bytes_out 228857 101745 bytes_in 946582 101745 station_ip 5.120.148.112 101745 port 29 101745 unique_id port 101745 remote_ip 10.8.0.26 101747 username musa 101747 kill_reason Another user logged on this global unique id 101747 mac 101747 bytes_out 0 101747 bytes_in 0 101747 station_ip 83.123.142.247 101747 port 16 101747 unique_id port 101747 remote_ip 10.8.1.78 101751 username askari 101751 mac 101751 bytes_out 0 101751 bytes_in 0 101751 station_ip 5.119.180.198 101751 port 31 101751 unique_id port 101751 remote_ip 10.8.0.38 101753 username mahdiyehalizadeh 101753 mac 101753 bytes_out 0 101753 bytes_in 0 101753 station_ip 83.123.142.217 101753 port 29 101753 unique_id port 101753 remote_ip 10.8.0.42 101754 username aminvpn 101754 mac 101754 bytes_out 81903 101754 bytes_in 73310 101735 bytes_out 19745 101735 bytes_in 38383 101735 station_ip 37.129.198.193 101735 port 29 101735 unique_id port 101735 remote_ip 10.8.0.94 101739 username alemzadeh 101739 unique_id port 101739 terminate_cause Lost-Carrier 101739 bytes_out 488359 101739 bytes_in 12038882 101739 station_ip 151.235.107.78 101739 port 15729650 101739 nas_port_type Virtual 101739 remote_ip 5.5.5.47 101743 username abbasaskari 101743 mac 101743 bytes_out 0 101743 bytes_in 0 101743 station_ip 37.129.198.193 101743 port 29 101743 unique_id port 101744 username tahmasebi 101744 kill_reason Another user logged on this global unique id 101744 mac 101744 bytes_out 0 101744 bytes_in 0 101744 station_ip 5.120.78.63 101744 port 27 101744 unique_id port 101746 username mehdizare 101746 mac 101746 bytes_out 33312 101746 bytes_in 51814 101746 station_ip 5.119.147.158 101746 port 15 101746 unique_id port 101746 remote_ip 10.8.1.22 101748 username mehdizare 101748 mac 101748 bytes_out 0 101748 bytes_in 0 101748 station_ip 5.119.147.158 101748 port 29 101748 unique_id port 101748 remote_ip 10.8.0.22 101756 username forozande 101756 mac 101756 bytes_out 5070159 101756 bytes_in 16229502 101756 station_ip 37.129.171.105 101756 port 32 101756 unique_id port 101756 remote_ip 10.8.0.74 101758 username tahmasebi 101758 kill_reason Another user logged on this global unique id 101758 mac 101758 bytes_out 0 101758 bytes_in 0 101758 station_ip 5.120.78.63 101758 port 27 101758 unique_id port 101776 username amir 101776 kill_reason Another user logged on this global unique id 101776 mac 101776 bytes_out 0 101776 bytes_in 0 101776 station_ip 46.225.214.162 101776 port 31 101776 unique_id port 101776 remote_ip 10.8.0.54 101778 username askari 101778 mac 101778 bytes_out 0 101778 bytes_in 0 101778 station_ip 5.120.145.180 101778 port 15 101778 unique_id port 101778 remote_ip 10.8.1.30 101785 username alireza 101785 unique_id port 101785 terminate_cause Lost-Carrier 101785 bytes_out 3891546 101785 bytes_in 81240577 101785 station_ip 5.120.165.55 101785 port 15729656 101785 nas_port_type Virtual 101785 remote_ip 5.5.5.31 101788 username musa 101788 mac 101788 bytes_out 0 101788 bytes_in 0 101788 station_ip 83.123.142.247 101788 port 16 101788 unique_id port 101790 username amir 101790 kill_reason Another user logged on this global unique id 101790 mac 101790 bytes_out 0 101790 bytes_in 0 101790 station_ip 46.225.214.162 101790 port 31 101790 unique_id port 101791 username mahyaarabpour 101791 mac 101791 bytes_out 90100 101791 bytes_in 633236 101791 station_ip 5.120.128.239 101791 port 36 101791 unique_id port 101791 remote_ip 10.8.0.82 101801 username askari 101801 kill_reason Another user logged on this global unique id 101801 mac 101801 bytes_out 0 101801 bytes_in 0 101801 station_ip 5.120.145.180 101801 port 15 101801 unique_id port 101801 remote_ip 10.8.1.30 101813 username musa 101813 kill_reason Another user logged on this global unique id 101813 mac 101813 bytes_out 0 101813 bytes_in 0 101813 station_ip 83.123.135.47 101813 port 32 101813 unique_id port 101816 username musa 101816 kill_reason Another user logged on this global unique id 101816 mac 101816 bytes_out 0 101816 bytes_in 0 101816 station_ip 83.123.135.47 101816 port 32 101816 unique_id port 101819 username morteza 101819 kill_reason Another user logged on this global unique id 101819 mac 101819 bytes_out 0 101819 bytes_in 0 101819 station_ip 83.123.138.28 101819 port 36 101819 unique_id port 101819 remote_ip 10.8.0.90 101820 username aminvpn 101820 unique_id port 101820 terminate_cause Lost-Carrier 101820 bytes_out 917705 101738 username tahmasebi 101738 kill_reason Another user logged on this global unique id 101738 mac 101738 bytes_out 0 101738 bytes_in 0 101738 station_ip 5.120.78.63 101738 port 27 101738 unique_id port 101742 username tahmasebi 101742 kill_reason Another user logged on this global unique id 101742 mac 101742 bytes_out 0 101742 bytes_in 0 101742 station_ip 5.120.78.63 101742 port 27 101742 unique_id port 101749 username mirzaei 101749 kill_reason Another user logged on this global unique id 101749 mac 101749 bytes_out 0 101749 bytes_in 0 101749 station_ip 5.120.132.26 101749 port 34 101749 unique_id port 101750 username tahmasebi 101750 kill_reason Another user logged on this global unique id 101750 mac 101750 bytes_out 0 101750 bytes_in 0 101750 station_ip 5.120.78.63 101750 port 27 101750 unique_id port 101752 username tahmasebi 101752 kill_reason Another user logged on this global unique id 101752 mac 101752 bytes_out 0 101752 bytes_in 0 101752 station_ip 5.120.78.63 101752 port 27 101752 unique_id port 101755 username tahmasebi 101755 kill_reason Another user logged on this global unique id 101755 mac 101755 bytes_out 0 101755 bytes_in 0 101755 station_ip 5.120.78.63 101755 port 27 101755 unique_id port 101763 username tahmasebi 101763 kill_reason Another user logged on this global unique id 101763 mac 101763 bytes_out 0 101763 bytes_in 0 101763 station_ip 5.120.78.63 101763 port 27 101763 unique_id port 101764 username morteza 101764 mac 101764 bytes_out 0 101764 bytes_in 0 101764 station_ip 83.123.82.153 101764 port 15 101764 unique_id port 101764 remote_ip 10.8.1.46 101768 username askari 101768 mac 101768 bytes_out 0 101768 bytes_in 0 101768 station_ip 5.120.145.180 101768 port 29 101768 unique_id port 101768 remote_ip 10.8.0.38 101769 username madadi2 101769 mac 101769 bytes_out 26963 101769 bytes_in 49206 101769 station_ip 5.119.36.8 101769 port 32 101769 unique_id port 101769 remote_ip 10.8.0.26 101771 username aminvpn 101771 unique_id port 101771 terminate_cause User-Request 101771 bytes_out 39812 101771 bytes_in 115887 101771 station_ip 83.122.53.173 101771 port 15729654 101771 nas_port_type Virtual 101771 remote_ip 5.5.5.28 101774 username tahmasebi 101774 kill_reason Another user logged on this global unique id 101774 mac 101774 bytes_out 0 101774 bytes_in 0 101774 station_ip 5.120.78.63 101774 port 27 101774 unique_id port 101777 username reza2742 101777 unique_id port 101777 terminate_cause Lost-Carrier 101777 bytes_out 7205180 101777 bytes_in 123576196 101777 station_ip 5.202.11.28 101777 port 15729652 101777 nas_port_type Virtual 101777 remote_ip 5.5.5.52 101784 username alihosseini 101784 mac 101784 bytes_out 852307 101784 bytes_in 4858709 101784 station_ip 5.120.169.114 101784 port 36 101784 unique_id port 101784 remote_ip 10.8.0.14 101793 username forozande 101793 mac 101793 bytes_out 97528 101793 bytes_in 80325 101793 station_ip 83.123.239.147 101793 port 36 101793 unique_id port 101793 remote_ip 10.8.0.74 101795 username aminvpn 101795 unique_id port 101795 terminate_cause Lost-Carrier 101795 bytes_out 198446 101795 bytes_in 1122348 101795 station_ip 83.122.53.173 101795 port 15729659 101795 nas_port_type Virtual 101795 remote_ip 5.5.5.35 101798 username musa 101798 kill_reason Another user logged on this global unique id 101798 mac 101798 bytes_out 0 101798 bytes_in 0 101798 station_ip 83.123.135.47 101798 port 32 101798 unique_id port 101798 remote_ip 10.8.0.106 101803 username amir 101803 kill_reason Another user logged on this global unique id 101803 mac 101803 bytes_out 0 101803 bytes_in 0 101803 station_ip 46.225.214.162 101803 port 31 101754 station_ip 37.137.43.103 101754 port 17 101754 unique_id port 101754 remote_ip 10.8.1.26 101757 username alireza 101757 unique_id port 101757 terminate_cause Lost-Carrier 101757 bytes_out 875595 101757 bytes_in 18841018 101757 station_ip 5.120.165.55 101757 port 15729653 101757 nas_port_type Virtual 101757 remote_ip 5.5.5.255 101759 username aminvpn 101759 mac 101759 bytes_out 0 101759 bytes_in 0 101759 station_ip 37.137.43.103 101759 port 15 101759 unique_id port 101759 remote_ip 10.8.1.26 101760 username hoorieh 101760 mac 101760 bytes_out 0 101760 bytes_in 0 101760 station_ip 5.119.184.57 101760 port 31 101760 unique_id port 101760 remote_ip 10.8.0.10 101761 username madadi2 101761 mac 101761 bytes_out 110134 101761 bytes_in 401567 101761 station_ip 5.119.43.11 101761 port 29 101761 unique_id port 101761 remote_ip 10.8.0.26 101762 username morteza 101762 mac 101762 bytes_out 0 101762 bytes_in 0 101762 station_ip 83.123.82.153 101762 port 31 101762 unique_id port 101762 remote_ip 10.8.0.90 101765 username tahmasebi 101765 kill_reason Another user logged on this global unique id 101765 mac 101765 bytes_out 0 101765 bytes_in 0 101765 station_ip 5.120.78.63 101765 port 27 101765 unique_id port 101766 username askari 101766 mac 101766 bytes_out 0 101766 bytes_in 0 101766 station_ip 5.120.145.180 101766 port 29 101766 unique_id port 101766 remote_ip 10.8.0.38 101767 username morteza 101767 mac 101767 bytes_out 0 101767 bytes_in 0 101767 station_ip 83.123.181.40 101767 port 15 101767 unique_id port 101767 remote_ip 10.8.1.46 101770 username askari 101770 kill_reason Maximum check online fails reached 101770 mac 101770 bytes_out 0 101770 bytes_in 0 101770 station_ip 5.120.145.180 101770 port 29 101770 unique_id port 101772 username tahmasebi 101772 kill_reason Another user logged on this global unique id 101772 mac 101772 bytes_out 0 101772 bytes_in 0 101772 station_ip 5.120.78.63 101772 port 27 101772 unique_id port 101773 username aminvpn 101773 unique_id port 101773 terminate_cause User-Request 101773 bytes_out 20420 101773 bytes_in 473481 101773 station_ip 83.122.53.173 101773 port 15729657 101773 nas_port_type Virtual 101773 remote_ip 5.5.5.32 101775 username alirr 101775 unique_id port 101775 terminate_cause Lost-Carrier 101775 bytes_out 473339 101775 bytes_in 2090285 101775 station_ip 5.120.41.79 101775 port 15729655 101775 nas_port_type Virtual 101775 remote_ip 5.5.5.30 101779 username askari 101779 mac 101779 bytes_out 0 101779 bytes_in 0 101779 station_ip 5.120.145.180 101779 port 15 101779 unique_id port 101779 remote_ip 10.8.1.30 101780 username askari 101780 mac 101780 bytes_out 0 101780 bytes_in 0 101780 station_ip 5.120.145.180 101780 port 15 101780 unique_id port 101780 remote_ip 10.8.1.30 101781 username alireza1 101781 unique_id port 101781 terminate_cause Lost-Carrier 101781 bytes_out 3415131 101781 bytes_in 8876961 101781 station_ip 5.120.182.234 101781 port 15729646 101781 nas_port_type Virtual 101781 remote_ip 5.5.5.40 101782 username forozande 101782 mac 101782 bytes_out 0 101782 bytes_in 0 101782 station_ip 83.122.177.242 101782 port 32 101782 unique_id port 101782 remote_ip 10.8.0.74 101783 username mammad 101783 unique_id port 101783 terminate_cause User-Request 101783 bytes_out 12038801 101783 bytes_in 118027212 101783 station_ip 46.100.222.212 101783 port 15729645 101783 nas_port_type Virtual 101783 remote_ip 5.5.5.38 101786 username tahmasebi 101786 kill_reason Another user logged on this global unique id 101786 mac 101786 bytes_out 0 101786 bytes_in 0 101786 station_ip 5.120.78.63 101786 port 27 101786 unique_id port 101787 username alipour 101787 kill_reason Another user logged on this global unique id 101787 mac 101787 bytes_out 0 101787 bytes_in 0 101787 station_ip 83.122.195.4 101787 port 35 101787 unique_id port 101787 remote_ip 10.8.0.70 101789 username sade 101789 unique_id port 101789 terminate_cause Lost-Carrier 101789 bytes_out 12359286 101789 bytes_in 195276350 101789 station_ip 5.119.184.119 101789 port 15729661 101789 nas_port_type Virtual 101789 remote_ip 5.5.5.23 101792 username tahmasebi 101792 kill_reason Another user logged on this global unique id 101792 mac 101792 bytes_out 0 101792 bytes_in 0 101792 station_ip 5.120.78.63 101792 port 27 101792 unique_id port 101794 username mirzaei 101794 kill_reason Another user logged on this global unique id 101794 mac 101794 bytes_out 0 101794 bytes_in 0 101794 station_ip 5.120.132.26 101794 port 34 101794 unique_id port 101796 username tahmasebi 101796 mac 101796 bytes_out 0 101796 bytes_in 0 101796 station_ip 5.120.78.63 101796 port 27 101796 unique_id port 101797 username ahmadipour 101797 unique_id port 101797 terminate_cause Lost-Carrier 101797 bytes_out 399373 101797 bytes_in 5716309 101797 station_ip 113.203.38.174 101797 port 15729664 101797 nas_port_type Virtual 101797 remote_ip 5.5.5.37 101799 username morteza 101799 mac 101799 bytes_out 0 101799 bytes_in 0 101799 station_ip 83.123.138.28 101799 port 16 101799 unique_id port 101799 remote_ip 10.8.1.46 101800 username mammad 101800 unique_id port 101800 terminate_cause User-Request 101800 bytes_out 1304327 101800 bytes_in 12611547 101800 station_ip 46.100.222.212 101800 port 15729663 101800 nas_port_type Virtual 101800 remote_ip 5.5.5.26 101802 username mirzaei 101802 kill_reason Another user logged on this global unique id 101802 mac 101802 bytes_out 0 101802 bytes_in 0 101802 station_ip 5.120.132.26 101802 port 34 101802 unique_id port 101806 username madadi2 101806 mac 101806 bytes_out 0 101806 bytes_in 0 101806 station_ip 5.120.169.220 101806 port 37 101806 unique_id port 101806 remote_ip 10.8.0.26 101807 username alireza1 101807 unique_id port 101807 terminate_cause User-Request 101807 bytes_out 255064 101807 bytes_in 1183708 101807 station_ip 5.120.182.234 101807 port 15729665 101807 nas_port_type Virtual 101807 remote_ip 5.5.5.255 101809 username mirzaei 101809 kill_reason Another user logged on this global unique id 101809 mac 101809 bytes_out 0 101809 bytes_in 0 101809 station_ip 5.120.132.26 101809 port 34 101809 unique_id port 101810 username farhad1 101810 kill_reason Another user logged on this global unique id 101810 mac 101810 bytes_out 0 101810 bytes_in 0 101810 station_ip 5.120.8.89 101810 port 27 101810 unique_id port 101810 remote_ip 10.8.0.102 101812 username hashtadani 101812 unique_id port 101812 terminate_cause User-Request 101812 bytes_out 13147126 101812 bytes_in 155869749 101812 station_ip 37.129.211.29 101812 port 15729660 101812 nas_port_type Virtual 101812 remote_ip 5.5.5.36 101814 username amir 101814 kill_reason Another user logged on this global unique id 101814 mac 101814 bytes_out 0 101814 bytes_in 0 101814 station_ip 46.225.214.162 101814 port 31 101814 unique_id port 101815 username mirzaei 101815 kill_reason Another user logged on this global unique id 101815 mac 101815 bytes_out 0 101815 bytes_in 0 101815 station_ip 5.120.132.26 101815 port 34 101815 unique_id port 101818 username alipour 101818 mac 101818 bytes_out 0 101818 bytes_in 0 101818 station_ip 83.122.195.4 101818 port 35 101818 unique_id port 101821 username amir 101821 kill_reason Another user logged on this global unique id 101821 mac 101803 unique_id port 101804 username askari 101804 mac 101804 bytes_out 0 101804 bytes_in 0 101804 station_ip 5.120.145.180 101804 port 15 101804 unique_id port 101805 username askari 101805 mac 101805 bytes_out 0 101805 bytes_in 0 101805 station_ip 5.120.145.180 101805 port 15 101805 unique_id port 101805 remote_ip 10.8.1.30 101808 username forozande 101808 mac 101808 bytes_out 815557 101808 bytes_in 3125102 101808 station_ip 83.122.55.14 101808 port 36 101808 unique_id port 101808 remote_ip 10.8.0.74 101811 username alireza1 101811 kill_reason Maximum check online fails reached 101811 unique_id port 101811 bytes_out 196170 101811 bytes_in 294557 101811 station_ip 5.120.182.234 101811 port 15729666 101811 nas_port_type Virtual 101811 remote_ip 5.5.5.255 101817 username alipour 101817 kill_reason Another user logged on this global unique id 101817 mac 101817 bytes_out 0 101817 bytes_in 0 101817 station_ip 83.122.195.4 101817 port 35 101817 unique_id port 101832 username alirr 101832 unique_id port 101832 terminate_cause Lost-Carrier 101832 bytes_out 297026 101832 bytes_in 1484067 101832 station_ip 5.120.111.141 101832 port 15729667 101832 nas_port_type Virtual 101832 remote_ip 5.5.5.11 101840 username mirzaei 101840 kill_reason Another user logged on this global unique id 101840 mac 101840 bytes_out 0 101840 bytes_in 0 101840 station_ip 5.120.132.26 101840 port 34 101840 unique_id port 101842 username aminvpn 101842 mac 101842 bytes_out 25764 101842 bytes_in 21456 101842 station_ip 113.203.104.13 101842 port 32 101842 unique_id port 101842 remote_ip 10.8.0.6 101846 username aminvpn 101846 mac 101846 bytes_out 0 101846 bytes_in 0 101846 station_ip 113.203.104.13 101846 port 35 101846 unique_id port 101846 remote_ip 10.8.0.6 101847 username amir 101847 mac 101847 bytes_out 0 101847 bytes_in 0 101847 station_ip 46.225.214.162 101847 port 31 101847 unique_id port 101851 username aminvpn 101851 mac 101851 bytes_out 126516 101851 bytes_in 251617 101851 station_ip 113.203.82.225 101851 port 32 101851 unique_id port 101851 remote_ip 10.8.0.6 101857 username musa 101857 kill_reason Another user logged on this global unique id 101857 mac 101857 bytes_out 0 101857 bytes_in 0 101857 station_ip 83.123.89.236 101857 port 16 101857 unique_id port 101858 username alipour 101858 mac 101858 bytes_out 0 101858 bytes_in 0 101858 station_ip 83.122.195.4 101858 port 15 101858 unique_id port 101858 remote_ip 10.8.1.38 101859 username aminvpn 101859 mac 101859 bytes_out 8975 101859 bytes_in 24380 101859 station_ip 113.203.82.225 101859 port 37 101859 unique_id port 101859 remote_ip 10.8.0.6 101860 username aminvpn 101860 mac 101860 bytes_out 0 101860 bytes_in 0 101860 station_ip 113.203.104.13 101860 port 36 101860 unique_id port 101860 remote_ip 10.8.0.6 101862 username aminvpn 101862 mac 101862 bytes_out 5033 101862 bytes_in 8836 101862 station_ip 113.203.82.225 101862 port 37 101862 unique_id port 101862 remote_ip 10.8.0.6 101866 username madadi2 101866 mac 101866 bytes_out 0 101866 bytes_in 0 101866 station_ip 5.120.189.103 101866 port 37 101866 unique_id port 101866 remote_ip 10.8.0.26 101867 username aminvpn 101867 mac 101867 bytes_out 0 101867 bytes_in 0 101867 station_ip 113.203.82.225 101867 port 38 101867 unique_id port 101867 remote_ip 10.8.0.6 101870 username aminvpn 101870 mac 101870 bytes_out 482290 101870 bytes_in 3846644 101870 station_ip 113.203.104.13 101870 port 36 101870 unique_id port 101870 remote_ip 10.8.0.6 101820 bytes_in 10880513 101820 station_ip 5.119.69.0 101820 port 15729662 101820 nas_port_type Virtual 101820 remote_ip 5.5.5.25 101827 username morteza 101827 mac 101827 bytes_out 0 101827 bytes_in 0 101827 station_ip 83.123.138.28 101827 port 36 101827 unique_id port 101829 username amir 101829 kill_reason Another user logged on this global unique id 101829 mac 101829 bytes_out 0 101829 bytes_in 0 101829 station_ip 46.225.214.162 101829 port 31 101829 unique_id port 101830 username forozande 101830 mac 101830 bytes_out 193145 101830 bytes_in 786268 101830 station_ip 83.122.4.141 101830 port 35 101830 unique_id port 101830 remote_ip 10.8.0.74 101833 username amir 101833 kill_reason Another user logged on this global unique id 101833 mac 101833 bytes_out 0 101833 bytes_in 0 101833 station_ip 46.225.214.162 101833 port 31 101833 unique_id port 101836 username shahrooz 101836 unique_id port 101836 terminate_cause User-Request 101836 bytes_out 1509778 101836 bytes_in 31209103 101836 station_ip 83.122.41.116 101836 port 15729669 101836 nas_port_type Virtual 101836 remote_ip 5.5.5.15 101845 username aminvpn 101845 mac 101845 bytes_out 0 101845 bytes_in 0 101845 station_ip 113.203.82.225 101845 port 32 101845 unique_id port 101845 remote_ip 10.8.0.6 101848 username aminvpn 101848 mac 101848 bytes_out 203340 101848 bytes_in 421018 101848 station_ip 113.203.82.225 101848 port 32 101848 unique_id port 101848 remote_ip 10.8.0.6 101854 username aminvpn 101854 mac 101854 bytes_out 0 101854 bytes_in 0 101854 station_ip 113.203.82.225 101854 port 32 101854 unique_id port 101854 remote_ip 10.8.0.6 101856 username aminvpn 101856 mac 101856 bytes_out 0 101856 bytes_in 0 101856 station_ip 113.203.104.13 101856 port 36 101856 unique_id port 101856 remote_ip 10.8.0.6 101861 username amir 101861 kill_reason Another user logged on this global unique id 101861 mac 101861 bytes_out 0 101861 bytes_in 0 101861 station_ip 46.225.214.162 101861 port 31 101861 unique_id port 101861 remote_ip 10.8.0.54 101863 username aminvpn 101863 mac 101863 bytes_out 6941 101863 bytes_in 9219 101863 station_ip 113.203.104.13 101863 port 36 101863 unique_id port 101863 remote_ip 10.8.0.6 101864 username aminvpn 101864 mac 101864 bytes_out 4417 101864 bytes_in 9870 101864 station_ip 113.203.82.225 101864 port 38 101864 unique_id port 101864 remote_ip 10.8.0.6 101865 username aminvpn 101865 mac 101865 bytes_out 0 101865 bytes_in 0 101865 station_ip 113.203.104.13 101865 port 36 101865 unique_id port 101865 remote_ip 10.8.0.6 101872 username musa 101872 mac 101872 bytes_out 0 101872 bytes_in 0 101872 station_ip 83.123.89.236 101872 port 16 101872 unique_id port 101875 username tahmasebi 101875 kill_reason Another user logged on this global unique id 101875 mac 101875 bytes_out 0 101875 bytes_in 0 101875 station_ip 5.120.78.63 101875 port 35 101875 unique_id port 101875 remote_ip 10.8.0.66 101878 username aminvpn 101878 mac 101878 bytes_out 46559 101878 bytes_in 57098 101878 station_ip 113.203.82.225 101878 port 36 101878 unique_id port 101878 remote_ip 10.8.0.6 101879 username alirr 101879 unique_id port 101879 terminate_cause User-Request 101879 bytes_out 243493 101879 bytes_in 508809 101879 station_ip 94.183.213.166 101879 port 15729672 101879 nas_port_type Virtual 101879 remote_ip 5.5.5.19 101881 username amir 101881 kill_reason Another user logged on this global unique id 101881 mac 101881 bytes_out 0 101881 bytes_in 0 101881 station_ip 46.225.214.162 101881 port 31 101881 unique_id port 101821 bytes_out 0 101821 bytes_in 0 101821 station_ip 46.225.214.162 101821 port 31 101821 unique_id port 101822 username musa 101822 kill_reason Another user logged on this global unique id 101822 mac 101822 bytes_out 0 101822 bytes_in 0 101822 station_ip 83.123.135.47 101822 port 32 101822 unique_id port 101823 username musa 101823 mac 101823 bytes_out 0 101823 bytes_in 0 101823 station_ip 83.123.135.47 101823 port 32 101823 unique_id port 101824 username bcboard 101824 unique_id port 101824 terminate_cause Lost-Carrier 101824 bytes_out 7810636 101824 bytes_in 147203629 101824 station_ip 37.129.217.124 101824 port 15729651 101824 nas_port_type Virtual 101824 remote_ip 5.5.5.48 101825 username morteza 101825 kill_reason Another user logged on this global unique id 101825 mac 101825 bytes_out 0 101825 bytes_in 0 101825 station_ip 83.123.138.28 101825 port 36 101825 unique_id port 101826 username farhad1 101826 mac 101826 bytes_out 0 101826 bytes_in 0 101826 station_ip 5.120.8.89 101826 port 27 101826 unique_id port 101828 username alipour 101828 mac 101828 bytes_out 0 101828 bytes_in 0 101828 station_ip 83.122.195.4 101828 port 15 101828 unique_id port 101828 remote_ip 10.8.1.38 101831 username madadi2 101831 mac 101831 bytes_out 228749 101831 bytes_in 1040486 101831 station_ip 5.120.20.108 101831 port 27 101831 unique_id port 101831 remote_ip 10.8.0.26 101834 username aminvpn 101834 unique_id port 101834 terminate_cause User-Request 101834 bytes_out 1594433 101834 bytes_in 28203457 101834 station_ip 31.57.132.98 101834 port 15729668 101834 nas_port_type Virtual 101834 remote_ip 5.5.5.13 101835 username aminvpn 101835 mac 101835 bytes_out 1687241 101835 bytes_in 30848477 101835 station_ip 113.203.104.13 101835 port 32 101835 unique_id port 101835 remote_ip 10.8.0.6 101837 username aminvpn 101837 mac 101837 bytes_out 17622 101837 bytes_in 25109 101837 station_ip 113.203.104.13 101837 port 32 101837 unique_id port 101837 remote_ip 10.8.0.6 101838 username forozande 101838 mac 101838 bytes_out 0 101838 bytes_in 0 101838 station_ip 83.123.247.150 101838 port 35 101838 unique_id port 101838 remote_ip 10.8.0.74 101839 username alipour 101839 mac 101839 bytes_out 0 101839 bytes_in 0 101839 station_ip 83.122.195.4 101839 port 15 101839 unique_id port 101839 remote_ip 10.8.1.38 101841 username amir 101841 kill_reason Another user logged on this global unique id 101841 mac 101841 bytes_out 0 101841 bytes_in 0 101841 station_ip 46.225.214.162 101841 port 31 101841 unique_id port 101843 username musa 101843 kill_reason Another user logged on this global unique id 101843 mac 101843 bytes_out 0 101843 bytes_in 0 101843 station_ip 83.123.89.236 101843 port 16 101843 unique_id port 101843 remote_ip 10.8.1.78 101844 username aminvpn 101844 mac 101844 bytes_out 187739 101844 bytes_in 1150091 101844 station_ip 37.129.168.213 101844 port 35 101844 unique_id port 101844 remote_ip 10.8.0.6 101849 username aminvpn 101849 mac 101849 bytes_out 0 101849 bytes_in 0 101849 station_ip 113.203.104.13 101849 port 35 101849 unique_id port 101849 remote_ip 10.8.0.6 101850 username hashtadani 101850 unique_id port 101850 terminate_cause Lost-Carrier 101850 bytes_out 2304155 101850 bytes_in 36907145 101850 station_ip 37.129.211.29 101850 port 15729670 101850 nas_port_type Virtual 101850 remote_ip 5.5.5.16 101852 username musa 101852 kill_reason Another user logged on this global unique id 101852 mac 101852 bytes_out 0 101852 bytes_in 0 101852 station_ip 83.123.89.236 101852 port 16 101852 unique_id port 101853 username aminvpn 101853 mac 101853 bytes_out 0 101853 bytes_in 0 101853 station_ip 113.203.104.13 101853 port 35 101853 unique_id port 101853 remote_ip 10.8.0.6 101855 username shahrooz 101855 unique_id port 101855 terminate_cause Lost-Carrier 101855 bytes_out 457623 101855 bytes_in 9395134 101855 station_ip 83.122.41.116 101855 port 15729671 101855 nas_port_type Virtual 101855 remote_ip 5.5.5.18 101868 username mirzaei 101868 kill_reason Another user logged on this global unique id 101868 mac 101868 bytes_out 0 101868 bytes_in 0 101868 station_ip 5.120.132.26 101868 port 34 101868 unique_id port 101869 username musa 101869 kill_reason Another user logged on this global unique id 101869 mac 101869 bytes_out 0 101869 bytes_in 0 101869 station_ip 83.123.89.236 101869 port 16 101869 unique_id port 101871 username alipour 101871 mac 101871 bytes_out 0 101871 bytes_in 0 101871 station_ip 83.122.195.4 101871 port 15 101871 unique_id port 101871 remote_ip 10.8.1.38 101873 username amir 101873 kill_reason Another user logged on this global unique id 101873 mac 101873 bytes_out 0 101873 bytes_in 0 101873 station_ip 46.225.214.162 101873 port 31 101873 unique_id port 101874 username aminvpn 101874 mac 101874 bytes_out 159252 101874 bytes_in 340299 101874 station_ip 113.203.82.225 101874 port 37 101874 unique_id port 101874 remote_ip 10.8.0.6 101876 username aminvpn 101876 mac 101876 bytes_out 39695 101876 bytes_in 56677 101876 station_ip 113.203.82.225 101876 port 36 101876 unique_id port 101876 remote_ip 10.8.0.6 101885 username madadi2 101885 mac 101885 bytes_out 32578 101885 bytes_in 57244 101885 station_ip 5.120.174.96 101885 port 37 101885 unique_id port 101885 remote_ip 10.8.0.26 101888 username arman1 101888 mac 101888 bytes_out 6802290 101888 bytes_in 41166868 101888 station_ip 5.120.11.195 101888 port 27 101888 unique_id port 101888 remote_ip 10.8.0.86 101891 username abbasaskari 101891 mac 101891 bytes_out 0 101891 bytes_in 0 101891 station_ip 37.129.113.237 101891 port 27 101891 unique_id port 101891 remote_ip 10.8.0.94 101892 username abbasaskari 101892 mac 101892 bytes_out 0 101892 bytes_in 0 101892 station_ip 37.129.113.237 101892 port 27 101892 unique_id port 101892 remote_ip 10.8.0.94 101893 username abbasaskari 101893 mac 101893 bytes_out 0 101893 bytes_in 0 101893 station_ip 37.129.113.237 101893 port 27 101893 unique_id port 101893 remote_ip 10.8.0.94 101907 username mirzaei 101907 kill_reason Another user logged on this global unique id 101907 mac 101907 bytes_out 0 101907 bytes_in 0 101907 station_ip 5.120.132.26 101907 port 34 101907 unique_id port 101909 username alipour 101909 mac 101909 bytes_out 0 101909 bytes_in 0 101909 station_ip 37.129.69.226 101909 port 27 101909 unique_id port 101909 remote_ip 10.8.0.70 101911 username musa 101911 kill_reason Another user logged on this global unique id 101911 mac 101911 bytes_out 0 101911 bytes_in 0 101911 station_ip 83.123.120.216 101911 port 15 101911 unique_id port 101912 username rezasekonji 101912 unique_id port 101912 terminate_cause User-Request 101912 bytes_out 291 101912 bytes_in 701 101912 station_ip 37.129.16.77 101912 port 15729684 101912 nas_port_type Virtual 101912 remote_ip 5.5.5.253 101917 username abbasaskari 101917 mac 101917 bytes_out 0 101917 bytes_in 0 101917 station_ip 37.129.49.145 101917 port 27 101917 unique_id port 101919 username aminvpn 101919 mac 101919 bytes_out 0 101919 bytes_in 0 101919 station_ip 113.203.82.225 101919 port 36 101919 unique_id port 101877 username abbasaskari 101877 mac 101877 bytes_out 0 101877 bytes_in 0 101877 station_ip 37.129.13.189 101877 port 37 101877 unique_id port 101877 remote_ip 10.8.0.94 101880 username aminvpn 101880 mac 101880 bytes_out 0 101880 bytes_in 0 101880 station_ip 113.203.82.225 101880 port 36 101880 unique_id port 101880 remote_ip 10.8.0.6 101883 username morteza 101883 mac 101883 bytes_out 0 101883 bytes_in 0 101883 station_ip 83.123.223.108 101883 port 37 101883 unique_id port 101883 remote_ip 10.8.0.90 101886 username amir 101886 kill_reason Another user logged on this global unique id 101886 mac 101886 bytes_out 0 101886 bytes_in 0 101886 station_ip 46.225.214.162 101886 port 31 101886 unique_id port 101894 username tahmasebi 101894 kill_reason Another user logged on this global unique id 101894 mac 101894 bytes_out 0 101894 bytes_in 0 101894 station_ip 5.120.78.63 101894 port 35 101894 unique_id port 101895 username amir 101895 kill_reason Another user logged on this global unique id 101895 mac 101895 bytes_out 0 101895 bytes_in 0 101895 station_ip 46.225.214.162 101895 port 31 101895 unique_id port 101897 username aminvpn 101897 unique_id port 101897 terminate_cause Lost-Carrier 101897 bytes_out 4985046 101897 bytes_in 1063505 101897 station_ip 31.57.132.98 101897 port 15729674 101897 nas_port_type Virtual 101897 remote_ip 5.5.5.21 101900 username abbasaskari 101900 mac 101900 bytes_out 265440 101900 bytes_in 1726322 101900 station_ip 37.129.113.237 101900 port 27 101900 unique_id port 101900 remote_ip 10.8.0.94 101901 username tahmasebi 101901 mac 101901 bytes_out 0 101901 bytes_in 0 101901 station_ip 5.120.78.63 101901 port 35 101901 unique_id port 101903 username musa 101903 kill_reason Another user logged on this global unique id 101903 mac 101903 bytes_out 0 101903 bytes_in 0 101903 station_ip 83.123.120.216 101903 port 15 101903 unique_id port 101903 remote_ip 10.8.1.78 101904 username abbasaskari 101904 mac 101904 bytes_out 0 101904 bytes_in 0 101904 station_ip 37.129.113.237 101904 port 27 101904 unique_id port 101904 remote_ip 10.8.0.94 101906 username alireza1 101906 unique_id port 101906 terminate_cause User-Request 101906 bytes_out 132357 101906 bytes_in 185104 101906 station_ip 5.120.140.72 101906 port 15729679 101906 nas_port_type Virtual 101906 remote_ip 5.5.5.4 101908 username ahmadipour 101908 unique_id port 101908 terminate_cause Lost-Carrier 101908 bytes_out 394053 101908 bytes_in 7754578 101908 station_ip 83.122.156.107 101908 port 15729682 101908 nas_port_type Virtual 101908 remote_ip 5.5.5.10 101913 username mahdiyehalizadeh 101913 mac 101913 bytes_out 0 101913 bytes_in 0 101913 station_ip 37.129.108.52 101913 port 27 101913 unique_id port 101913 remote_ip 10.8.0.42 101914 username rezasekonji 101914 unique_id port 101914 terminate_cause User-Request 101914 bytes_out 363 101914 bytes_in 789 101914 station_ip 37.129.16.77 101914 port 15729685 101914 nas_port_type Virtual 101914 remote_ip 5.5.5.254 101915 username abbasaskari 101915 kill_reason Another user logged on this global unique id 101915 mac 101915 bytes_out 0 101915 bytes_in 0 101915 station_ip 37.129.49.145 101915 port 27 101915 unique_id port 101915 remote_ip 10.8.0.94 101916 username alireza1 101916 unique_id port 101916 terminate_cause User-Request 101916 bytes_out 1377184 101916 bytes_in 1514734 101916 station_ip 5.120.140.72 101916 port 15729680 101916 nas_port_type Virtual 101916 remote_ip 5.5.5.5 101924 username mohammadmahdi 101924 kill_reason Another user logged on this global unique id 101924 mac 101924 bytes_out 0 101924 bytes_in 0 101924 station_ip 5.119.177.228 101882 username morteza 101882 mac 101882 bytes_out 7815512 101882 bytes_in 44915620 101882 station_ip 83.123.223.108 101882 port 32 101882 unique_id port 101882 remote_ip 10.8.0.90 101884 username morteza 101884 mac 101884 bytes_out 0 101884 bytes_in 0 101884 station_ip 83.123.223.108 101884 port 32 101884 unique_id port 101884 remote_ip 10.8.0.90 101887 username alirr 101887 unique_id port 101887 terminate_cause User-Request 101887 bytes_out 116877 101887 bytes_in 235364 101887 station_ip 94.183.213.166 101887 port 15729673 101887 nas_port_type Virtual 101887 remote_ip 5.5.5.20 101889 username morteza 101889 mac 101889 bytes_out 0 101889 bytes_in 0 101889 station_ip 83.123.132.236 101889 port 27 101889 unique_id port 101889 remote_ip 10.8.0.90 101890 username abbasaskari 101890 mac 101890 bytes_out 17108 101890 bytes_in 49253 101890 station_ip 37.129.113.237 101890 port 16 101890 unique_id port 101890 remote_ip 10.8.1.58 101896 username amir 101896 mac 101896 bytes_out 0 101896 bytes_in 0 101896 station_ip 46.225.214.162 101896 port 31 101896 unique_id port 101898 username alemzadeh 101898 unique_id port 101898 terminate_cause User-Request 101898 bytes_out 345051 101898 bytes_in 8619741 101898 station_ip 37.129.234.177 101898 port 15729675 101898 nas_port_type Virtual 101898 remote_ip 5.5.5.255 101899 username alemzadeh 101899 unique_id port 101899 terminate_cause User-Request 101899 bytes_out 182 101899 bytes_in 160 101899 station_ip 37.129.234.177 101899 port 15729677 101899 nas_port_type Virtual 101899 remote_ip 5.5.5.1 101902 username abbasaskari 101902 mac 101902 bytes_out 0 101902 bytes_in 0 101902 station_ip 37.129.113.237 101902 port 27 101902 unique_id port 101902 remote_ip 10.8.0.94 101905 username alireza1 101905 unique_id port 101905 terminate_cause Lost-Carrier 101905 bytes_out 105935 101905 bytes_in 1886071 101905 station_ip 5.120.140.72 101905 port 15729676 101905 nas_port_type Virtual 101905 remote_ip 5.5.5.0 101910 username alirr 101910 unique_id port 101910 terminate_cause Lost-Carrier 101910 bytes_out 779831 101910 bytes_in 12245075 101910 station_ip 5.120.80.216 101910 port 15729681 101910 nas_port_type Virtual 101910 remote_ip 5.5.5.8 101918 username arman1 101918 kill_reason Another user logged on this global unique id 101918 mac 101918 bytes_out 0 101918 bytes_in 0 101918 station_ip 5.120.16.72 101918 port 32 101918 unique_id port 101918 remote_ip 10.8.0.86 101920 username forozande 101920 mac 101920 bytes_out 289573 101920 bytes_in 1869107 101920 station_ip 83.122.155.123 101920 port 35 101920 unique_id port 101920 remote_ip 10.8.0.74 101922 username mohammadmahdi 101922 kill_reason Another user logged on this global unique id 101922 mac 101922 bytes_out 0 101922 bytes_in 0 101922 station_ip 5.119.177.228 101922 port 36 101922 unique_id port 101922 remote_ip 10.8.0.34 101923 username arman1 101923 kill_reason Another user logged on this global unique id 101923 mac 101923 bytes_out 0 101923 bytes_in 0 101923 station_ip 5.120.16.72 101923 port 32 101923 unique_id port 101927 username aminvpn 101927 unique_id port 101927 terminate_cause Lost-Carrier 101927 bytes_out 123715 101927 bytes_in 435955 101927 station_ip 5.119.127.57 101927 port 15729688 101927 nas_port_type Virtual 101927 remote_ip 5.5.5.251 101932 username sobhan 101932 unique_id port 101932 terminate_cause User-Request 101932 bytes_out 13756722 101932 bytes_in 210128997 101932 station_ip 5.119.29.17 101932 port 15729683 101932 nas_port_type Virtual 101932 remote_ip 5.5.5.255 101934 username askari 101934 mac 101934 bytes_out 0 101934 bytes_in 0 101919 remote_ip 10.8.0.6 101921 username abbasaskari 101921 mac 101921 bytes_out 903512 101921 bytes_in 7836647 101921 station_ip 37.129.49.145 101921 port 27 101921 unique_id port 101921 remote_ip 10.8.0.94 101926 username alireza 101926 unique_id port 101926 terminate_cause Lost-Carrier 101926 bytes_out 1039198 101926 bytes_in 23440677 101926 station_ip 5.120.165.55 101926 port 15729687 101926 nas_port_type Virtual 101926 remote_ip 5.5.5.253 101928 username askari 101928 kill_reason Another user logged on this global unique id 101928 mac 101928 bytes_out 0 101928 bytes_in 0 101928 station_ip 5.119.25.2 101928 port 31 101928 unique_id port 101928 remote_ip 10.8.0.38 101929 username arman1 101929 kill_reason Another user logged on this global unique id 101929 mac 101929 bytes_out 0 101929 bytes_in 0 101929 station_ip 5.120.16.72 101929 port 32 101929 unique_id port 101930 username mohammadmahdi 101930 kill_reason Another user logged on this global unique id 101930 mac 101930 bytes_out 0 101930 bytes_in 0 101930 station_ip 5.119.177.228 101930 port 36 101930 unique_id port 101933 username abbasaskari 101933 mac 101933 bytes_out 1461293 101933 bytes_in 10961099 101933 station_ip 37.129.49.145 101933 port 27 101933 unique_id port 101933 remote_ip 10.8.0.94 101947 username abbasaskari 101947 mac 101947 bytes_out 0 101947 bytes_in 0 101947 station_ip 37.129.49.145 101947 port 27 101947 unique_id port 101947 remote_ip 10.8.0.94 101949 username abbasaskari 101949 mac 101949 bytes_out 8428 101949 bytes_in 27499 101949 station_ip 37.129.49.145 101949 port 27 101949 unique_id port 101949 remote_ip 10.8.0.94 101950 username abbasaskari 101950 mac 101950 bytes_out 0 101950 bytes_in 0 101950 station_ip 37.129.49.145 101950 port 27 101950 unique_id port 101950 remote_ip 10.8.0.94 101952 username mirzaei 101952 mac 101952 bytes_out 0 101952 bytes_in 0 101952 station_ip 5.120.132.26 101952 port 34 101952 unique_id port 101958 username sobhan 101958 unique_id port 101958 terminate_cause Lost-Carrier 101958 bytes_out 1211793 101958 bytes_in 9583500 101958 station_ip 5.119.29.17 101958 port 15729695 101958 nas_port_type Virtual 101958 remote_ip 5.5.5.252 101959 username abbasaskari 101959 mac 101959 bytes_out 23978 101959 bytes_in 84885 101959 station_ip 37.129.32.225 101959 port 27 101959 unique_id port 101959 remote_ip 10.8.0.94 101965 username mohammadmahdi 101965 mac 101965 bytes_out 2079883 101965 bytes_in 34114973 101965 station_ip 5.119.177.228 101965 port 17 101965 unique_id port 101965 remote_ip 10.8.1.50 101969 username forozande 101969 mac 101969 bytes_out 0 101969 bytes_in 0 101969 station_ip 37.129.20.76 101969 port 32 101969 unique_id port 101969 remote_ip 10.8.0.74 101970 username musa 101970 kill_reason Another user logged on this global unique id 101970 mac 101970 bytes_out 0 101970 bytes_in 0 101970 station_ip 83.123.120.216 101970 port 15 101970 unique_id port 101971 username sade 101971 unique_id port 101971 terminate_cause Lost-Carrier 101971 bytes_out 386299 101971 bytes_in 3180799 101971 station_ip 5.119.90.109 101971 port 15729701 101971 nas_port_type Virtual 101971 remote_ip 5.5.5.248 101972 username madadi2 101972 mac 101972 bytes_out 0 101972 bytes_in 0 101972 station_ip 5.120.113.66 101972 port 16 101972 unique_id port 101972 remote_ip 10.8.1.18 101980 username ahmadi 101980 unique_id port 101980 terminate_cause User-Request 101980 bytes_out 51248 101980 bytes_in 581461 101980 station_ip 83.123.243.215 101980 port 15729704 101980 nas_port_type Virtual 101980 remote_ip 5.5.5.246 101982 username alireza1 101924 port 36 101924 unique_id port 101925 username alireza1 101925 unique_id port 101925 terminate_cause Lost-Carrier 101925 bytes_out 385571 101925 bytes_in 700561 101925 station_ip 5.120.140.72 101925 port 15729686 101925 nas_port_type Virtual 101925 remote_ip 5.5.5.254 101931 username alireza1 101931 unique_id port 101931 terminate_cause User-Request 101931 bytes_out 74395 101931 bytes_in 926720 101931 station_ip 5.120.140.72 101931 port 15729690 101931 nas_port_type Virtual 101931 remote_ip 5.5.5.252 101935 username musa 101935 kill_reason Another user logged on this global unique id 101935 mac 101935 bytes_out 0 101935 bytes_in 0 101935 station_ip 83.123.120.216 101935 port 15 101935 unique_id port 101936 username askari 101936 mac 101936 bytes_out 58925 101936 bytes_in 140346 101936 station_ip 5.119.25.2 101936 port 31 101936 unique_id port 101936 remote_ip 10.8.0.38 101938 username arman1 101938 kill_reason Another user logged on this global unique id 101938 mac 101938 bytes_out 0 101938 bytes_in 0 101938 station_ip 5.120.16.72 101938 port 32 101938 unique_id port 101939 username mohammadmahdi 101939 kill_reason Another user logged on this global unique id 101939 mac 101939 bytes_out 0 101939 bytes_in 0 101939 station_ip 5.119.177.228 101939 port 36 101939 unique_id port 101940 username mirzaei 101940 kill_reason Another user logged on this global unique id 101940 mac 101940 bytes_out 0 101940 bytes_in 0 101940 station_ip 5.120.132.26 101940 port 34 101940 unique_id port 101941 username arman1 101941 mac 101941 bytes_out 0 101941 bytes_in 0 101941 station_ip 5.120.16.72 101941 port 32 101941 unique_id port 101942 username abbasaskari 101942 mac 101942 bytes_out 0 101942 bytes_in 0 101942 station_ip 37.129.49.145 101942 port 27 101942 unique_id port 101942 remote_ip 10.8.0.94 101944 username abbasaskari 101944 mac 101944 bytes_out 0 101944 bytes_in 0 101944 station_ip 37.129.49.145 101944 port 27 101944 unique_id port 101944 remote_ip 10.8.0.94 101945 username abbasaskari 101945 mac 101945 bytes_out 0 101945 bytes_in 0 101945 station_ip 37.129.49.145 101945 port 27 101945 unique_id port 101945 remote_ip 10.8.0.94 101953 username alireza1 101953 unique_id port 101953 terminate_cause Lost-Carrier 101953 bytes_out 409300 101953 bytes_in 512131 101953 station_ip 5.120.140.72 101953 port 15729691 101953 nas_port_type Virtual 101953 remote_ip 5.5.5.252 101956 username musa 101956 kill_reason Another user logged on this global unique id 101956 mac 101956 bytes_out 0 101956 bytes_in 0 101956 station_ip 83.123.120.216 101956 port 15 101956 unique_id port 101957 username mohammadmahdi 101957 mac 101957 bytes_out 925695 101957 bytes_in 10805721 101957 station_ip 5.119.177.228 101957 port 27 101957 unique_id port 101957 remote_ip 10.8.0.34 101960 username hashtadani 101960 unique_id port 101960 terminate_cause Lost-Carrier 101960 bytes_out 2881084 101960 bytes_in 44617923 101960 station_ip 5.202.7.83 101960 port 15729693 101960 nas_port_type Virtual 101960 remote_ip 5.5.5.254 101963 username madadi2 101963 mac 101963 bytes_out 3391234 101963 bytes_in 27045905 101963 station_ip 5.119.190.216 101963 port 16 101963 unique_id port 101963 remote_ip 10.8.1.18 101966 username madadi2 101966 mac 101966 bytes_out 0 101966 bytes_in 0 101966 station_ip 5.120.171.92 101966 port 16 101966 unique_id port 101966 remote_ip 10.8.1.18 101968 username alireza1 101968 unique_id port 101968 terminate_cause Lost-Carrier 101968 bytes_out 733526 101968 bytes_in 11885269 101968 station_ip 5.120.140.72 101968 port 15729694 101968 nas_port_type Virtual 101934 station_ip 5.119.25.2 101934 port 31 101934 unique_id port 101937 username alirr 101937 unique_id port 101937 terminate_cause Lost-Carrier 101937 bytes_out 674247 101937 bytes_in 5940804 101937 station_ip 5.119.125.158 101937 port 15729689 101937 nas_port_type Virtual 101937 remote_ip 5.5.5.253 101943 username musa 101943 kill_reason Another user logged on this global unique id 101943 mac 101943 bytes_out 0 101943 bytes_in 0 101943 station_ip 83.123.120.216 101943 port 15 101943 unique_id port 101946 username abbasaskari 101946 mac 101946 bytes_out 0 101946 bytes_in 0 101946 station_ip 37.129.49.145 101946 port 27 101946 unique_id port 101946 remote_ip 10.8.0.94 101948 username mohammadmahdi 101948 kill_reason Another user logged on this global unique id 101948 mac 101948 bytes_out 0 101948 bytes_in 0 101948 station_ip 5.119.177.228 101948 port 36 101948 unique_id port 101951 username alemzadeh 101951 unique_id port 101951 terminate_cause Lost-Carrier 101951 bytes_out 2042943 101951 bytes_in 49547300 101951 station_ip 151.235.107.78 101951 port 15729692 101951 nas_port_type Virtual 101951 remote_ip 5.5.5.255 101954 username mohammadmahdi 101954 mac 101954 bytes_out 0 101954 bytes_in 0 101954 station_ip 5.119.177.228 101954 port 36 101954 unique_id port 101955 username musa 101955 kill_reason Another user logged on this global unique id 101955 mac 101955 bytes_out 0 101955 bytes_in 0 101955 station_ip 83.123.120.216 101955 port 15 101955 unique_id port 101961 username musa 101961 kill_reason Another user logged on this global unique id 101961 mac 101961 bytes_out 0 101961 bytes_in 0 101961 station_ip 83.123.120.216 101961 port 15 101961 unique_id port 101962 username abbasaskari 101962 mac 101962 bytes_out 10207 101962 bytes_in 25946 101962 station_ip 37.129.32.225 101962 port 27 101962 unique_id port 101962 remote_ip 10.8.0.94 101964 username alemzadeh 101964 unique_id port 101964 terminate_cause User-Request 101964 bytes_out 317885 101964 bytes_in 8030804 101964 station_ip 37.129.238.9 101964 port 15729698 101964 nas_port_type Virtual 101964 remote_ip 5.5.5.254 101967 username bcboard 101967 unique_id port 101967 terminate_cause Lost-Carrier 101967 bytes_out 30226151 101967 bytes_in 690652482 101967 station_ip 37.129.79.149 101967 port 15729678 101967 nas_port_type Virtual 101967 remote_ip 5.5.5.3 101975 username alirr 101975 unique_id port 101975 terminate_cause Lost-Carrier 101975 bytes_out 678501 101975 bytes_in 7334992 101975 station_ip 5.119.189.55 101975 port 15729700 101975 nas_port_type Virtual 101975 remote_ip 5.5.5.254 101979 username musa 101979 kill_reason Another user logged on this global unique id 101979 mac 101979 bytes_out 0 101979 bytes_in 0 101979 station_ip 83.123.120.216 101979 port 15 101979 unique_id port 101981 username ahmadipour 101981 unique_id port 101981 terminate_cause Lost-Carrier 101981 bytes_out 3679095 101981 bytes_in 98089100 101981 station_ip 83.122.175.99 101981 port 15729702 101981 nas_port_type Virtual 101981 remote_ip 5.5.5.253 101984 username madadi2 101984 mac 101984 bytes_out 394405 101984 bytes_in 2231524 101984 station_ip 5.120.118.229 101984 port 27 101984 unique_id port 101984 remote_ip 10.8.0.26 101986 username alihosseini 101986 kill_reason Another user logged on this global unique id 101986 mac 101986 bytes_out 0 101986 bytes_in 0 101986 station_ip 5.120.2.214 101986 port 34 101986 unique_id port 101986 remote_ip 10.8.0.14 101988 username aminvpn 101988 unique_id port 101988 terminate_cause User-Request 101988 bytes_out 111087 101988 bytes_in 772417 101988 station_ip 83.122.249.150 101988 port 15729708 101988 nas_port_type Virtual 101988 remote_ip 5.5.5.248 101968 remote_ip 5.5.5.253 101973 username musa 101973 kill_reason Another user logged on this global unique id 101973 mac 101973 bytes_out 0 101973 bytes_in 0 101973 station_ip 83.123.120.216 101973 port 15 101973 unique_id port 101974 username morteza 101974 kill_reason Another user logged on this global unique id 101974 mac 101974 bytes_out 0 101974 bytes_in 0 101974 station_ip 83.123.181.36 101974 port 27 101974 unique_id port 101974 remote_ip 10.8.0.90 101976 username morteza 101976 mac 101976 bytes_out 0 101976 bytes_in 0 101976 station_ip 83.123.181.36 101976 port 27 101976 unique_id port 101977 username madadi2 101977 mac 101977 bytes_out 0 101977 bytes_in 0 101977 station_ip 5.119.63.79 101977 port 16 101977 unique_id port 101977 remote_ip 10.8.1.18 101978 username mirzaei 101978 kill_reason Another user logged on this global unique id 101978 mac 101978 bytes_out 0 101978 bytes_in 0 101978 station_ip 5.119.106.177 101978 port 31 101978 unique_id port 101978 remote_ip 10.8.0.30 101987 username mahdiyehalizadeh 101987 mac 101987 bytes_out 428558 101987 bytes_in 4882692 101987 station_ip 37.129.224.189 101987 port 35 101987 unique_id port 101987 remote_ip 10.8.0.42 101990 username aminvpn 101990 mac 101990 bytes_out 853713 101990 bytes_in 7661219 101990 station_ip 5.119.254.62 101990 port 27 101990 unique_id port 101990 remote_ip 10.8.0.6 101991 username aminvpn 101991 mac 101991 bytes_out 0 101991 bytes_in 0 101991 station_ip 83.122.248.205 101991 port 37 101991 unique_id port 101991 remote_ip 10.8.0.6 101992 username aminvpn 101992 mac 101992 bytes_out 0 101992 bytes_in 0 101992 station_ip 5.119.254.62 101992 port 27 101992 unique_id port 101992 remote_ip 10.8.0.6 101993 username aminvpn 101993 mac 101993 bytes_out 0 101993 bytes_in 0 101993 station_ip 83.122.248.205 101993 port 37 101993 unique_id port 101993 remote_ip 10.8.0.6 101994 username aminvpn 101994 mac 101994 bytes_out 0 101994 bytes_in 0 101994 station_ip 5.119.254.62 101994 port 38 101994 unique_id port 101994 remote_ip 10.8.0.6 101998 username aminvpn 101998 mac 101998 bytes_out 0 101998 bytes_in 0 101998 station_ip 113.203.30.59 101998 port 36 101998 unique_id port 101998 remote_ip 10.8.0.6 102004 username aminvpn 102004 unique_id port 102004 terminate_cause User-Request 102004 bytes_out 12343520 102004 bytes_in 253502510 102004 station_ip 31.57.132.7 102004 port 15729707 102004 nas_port_type Virtual 102004 remote_ip 5.5.5.255 102011 username aminvpn 102011 mac 102011 bytes_out 0 102011 bytes_in 0 102011 station_ip 5.119.254.62 102011 port 34 102011 unique_id port 102011 remote_ip 10.8.0.6 102014 username aminvpn 102014 mac 102014 bytes_out 0 102014 bytes_in 0 102014 station_ip 5.119.254.62 102014 port 34 102014 unique_id port 102014 remote_ip 10.8.0.6 102025 username aminvpn 102025 unique_id port 102025 terminate_cause User-Request 102025 bytes_out 140095 102025 bytes_in 2044199 102025 station_ip 83.122.249.150 102025 port 15729712 102025 nas_port_type Virtual 102025 remote_ip 5.5.5.247 102028 username aminvpn 102028 unique_id port 102028 terminate_cause User-Request 102028 bytes_out 129543 102028 bytes_in 1721503 102028 station_ip 83.122.249.150 102028 port 15729713 102028 nas_port_type Virtual 102028 remote_ip 5.5.5.248 102030 username abbasaskari 102030 mac 102030 bytes_out 71072 102030 bytes_in 90116 102030 station_ip 37.129.88.109 102030 port 27 102030 unique_id port 102030 remote_ip 10.8.0.94 102032 username aminvpn 102032 mac 102032 bytes_out 0 101982 unique_id port 101982 terminate_cause Lost-Carrier 101982 bytes_out 371313 101982 bytes_in 4851769 101982 station_ip 5.120.140.72 101982 port 15729703 101982 nas_port_type Virtual 101982 remote_ip 5.5.5.248 101983 username alireza 101983 unique_id port 101983 terminate_cause Lost-Carrier 101983 bytes_out 5942618 101983 bytes_in 127593568 101983 station_ip 5.120.165.55 101983 port 15729699 101983 nas_port_type Virtual 101983 remote_ip 5.5.5.255 101985 username aminvpn 101985 unique_id port 101985 terminate_cause User-Request 101985 bytes_out 1818460 101985 bytes_in 35413955 101985 station_ip 31.57.132.7 101985 port 15729705 101985 nas_port_type Virtual 101985 remote_ip 5.5.5.245 101989 username musa 101989 mac 101989 bytes_out 0 101989 bytes_in 0 101989 station_ip 83.123.120.216 101989 port 15 101989 unique_id port 101995 username aminvpn 101995 mac 101995 bytes_out 0 101995 bytes_in 0 101995 station_ip 83.122.248.205 101995 port 37 101995 unique_id port 101995 remote_ip 10.8.0.6 101997 username aminvpn 101997 mac 101997 bytes_out 0 101997 bytes_in 0 101997 station_ip 5.119.254.62 101997 port 38 101997 unique_id port 101997 remote_ip 10.8.0.6 102002 username alihosseini 102002 mac 102002 bytes_out 0 102002 bytes_in 0 102002 station_ip 5.120.2.214 102002 port 34 102002 unique_id port 102006 username mahdixz 102006 unique_id port 102006 terminate_cause User-Request 102006 bytes_out 0 102006 bytes_in 0 102006 station_ip 151.235.118.60 102006 port 15729709 102006 nas_port_type Virtual 102006 remote_ip 5.5.5.253 102009 username aminvpn 102009 mac 102009 bytes_out 0 102009 bytes_in 0 102009 station_ip 83.122.248.205 102009 port 27 102009 unique_id port 102009 remote_ip 10.8.0.6 102010 username mahdixz 102010 unique_id port 102010 terminate_cause User-Request 102010 bytes_out 541047 102010 bytes_in 6841782 102010 station_ip 151.235.118.60 102010 port 15729710 102010 nas_port_type Virtual 102010 remote_ip 5.5.5.255 102013 username alihosseini 102013 mac 102013 bytes_out 363854 102013 bytes_in 4319922 102013 station_ip 5.120.2.214 102013 port 37 102013 unique_id port 102013 remote_ip 10.8.0.14 102016 username aminvpn 102016 mac 102016 bytes_out 0 102016 bytes_in 0 102016 station_ip 83.122.248.205 102016 port 27 102016 unique_id port 102016 remote_ip 10.8.0.6 102018 username alihosseini 102018 mac 102018 bytes_out 0 102018 bytes_in 0 102018 station_ip 5.120.2.214 102018 port 15 102018 unique_id port 102018 remote_ip 10.8.1.6 102021 username alihosseini 102021 mac 102021 bytes_out 0 102021 bytes_in 0 102021 station_ip 5.120.2.214 102021 port 15 102021 unique_id port 102021 remote_ip 10.8.1.6 102022 username forozande 102022 mac 102022 bytes_out 0 102022 bytes_in 0 102022 station_ip 83.122.142.141 102022 port 27 102022 unique_id port 102022 remote_ip 10.8.0.74 102031 username aminvpn 102031 mac 102031 bytes_out 0 102031 bytes_in 0 102031 station_ip 83.122.249.150 102031 port 34 102031 unique_id port 102031 remote_ip 10.8.0.6 102033 username aminvpn 102033 mac 102033 bytes_out 0 102033 bytes_in 0 102033 station_ip 83.122.249.150 102033 port 34 102033 unique_id port 102033 remote_ip 10.8.0.6 102037 username alireza1 102037 unique_id port 102037 terminate_cause User-Request 102037 bytes_out 525146 102037 bytes_in 14256677 102037 station_ip 5.120.140.72 102037 port 15729706 102037 nas_port_type Virtual 102037 remote_ip 5.5.5.254 102041 username mohammadmahdi 102041 kill_reason Another user logged on this global unique id 102041 mac 102041 bytes_out 0 102041 bytes_in 0 101996 username forozande 101996 mac 101996 bytes_out 1258495 101996 bytes_in 15025595 101996 station_ip 83.123.62.68 101996 port 36 101996 unique_id port 101996 remote_ip 10.8.0.74 101999 username aminvpn 101999 mac 101999 bytes_out 0 101999 bytes_in 0 101999 station_ip 83.122.248.205 101999 port 37 101999 unique_id port 101999 remote_ip 10.8.0.6 102000 username aminvpn 102000 mac 102000 bytes_out 0 102000 bytes_in 0 102000 station_ip 5.119.254.62 102000 port 36 102000 unique_id port 102000 remote_ip 10.8.0.6 102001 username aminvpn 102001 mac 102001 bytes_out 0 102001 bytes_in 0 102001 station_ip 83.122.248.205 102001 port 37 102001 unique_id port 102001 remote_ip 10.8.0.6 102003 username musa 102003 mac 102003 bytes_out 1207833 102003 bytes_in 22527392 102003 station_ip 83.123.120.216 102003 port 27 102003 unique_id port 102003 remote_ip 10.8.0.106 102005 username aminvpn 102005 mac 102005 bytes_out 0 102005 bytes_in 0 102005 station_ip 5.119.254.62 102005 port 36 102005 unique_id port 102005 remote_ip 10.8.0.6 102007 username aminvpn 102007 mac 102007 bytes_out 0 102007 bytes_in 0 102007 station_ip 83.122.248.205 102007 port 27 102007 unique_id port 102007 remote_ip 10.8.0.6 102008 username aminvpn 102008 mac 102008 bytes_out 0 102008 bytes_in 0 102008 station_ip 5.119.254.62 102008 port 34 102008 unique_id port 102008 remote_ip 10.8.0.6 102012 username aminvpn 102012 mac 102012 bytes_out 0 102012 bytes_in 0 102012 station_ip 83.122.248.205 102012 port 27 102012 unique_id port 102012 remote_ip 10.8.0.6 102015 username abbasaskari 102015 mac 102015 bytes_out 236573 102015 bytes_in 682759 102015 station_ip 37.129.32.225 102015 port 32 102015 unique_id port 102015 remote_ip 10.8.0.94 102017 username mirzaei 102017 kill_reason Another user logged on this global unique id 102017 mac 102017 bytes_out 0 102017 bytes_in 0 102017 station_ip 5.119.106.177 102017 port 31 102017 unique_id port 102019 username aminvpn 102019 mac 102019 bytes_out 0 102019 bytes_in 0 102019 station_ip 5.119.254.62 102019 port 32 102019 unique_id port 102019 remote_ip 10.8.0.6 102020 username aminvpn 102020 mac 102020 bytes_out 0 102020 bytes_in 0 102020 station_ip 83.122.248.205 102020 port 27 102020 unique_id port 102020 remote_ip 10.8.0.6 102023 username alihosseini 102023 mac 102023 bytes_out 0 102023 bytes_in 0 102023 station_ip 5.120.2.214 102023 port 15 102023 unique_id port 102023 remote_ip 10.8.1.6 102024 username alihosseini 102024 mac 102024 bytes_out 0 102024 bytes_in 0 102024 station_ip 5.120.2.214 102024 port 15 102024 unique_id port 102024 remote_ip 10.8.1.6 102026 username alihosseini 102026 mac 102026 bytes_out 0 102026 bytes_in 0 102026 station_ip 5.119.4.128 102026 port 34 102026 unique_id port 102026 remote_ip 10.8.0.14 102027 username shahrooz 102027 unique_id port 102027 terminate_cause Lost-Carrier 102027 bytes_out 6529235 102027 bytes_in 176604167 102027 station_ip 83.123.147.167 102027 port 15729697 102027 nas_port_type Virtual 102027 remote_ip 5.5.5.249 102029 username aminvpn 102029 mac 102029 bytes_out 145852 102029 bytes_in 701339 102029 station_ip 5.119.254.62 102029 port 32 102029 unique_id port 102029 remote_ip 10.8.0.6 102034 username alihosseini 102034 mac 102034 bytes_out 2063 102034 bytes_in 4196 102034 station_ip 5.119.4.128 102034 port 27 102034 unique_id port 102034 remote_ip 10.8.0.14 102035 username aminvpn 102035 mac 102035 bytes_out 0 102032 bytes_in 0 102032 station_ip 5.119.254.62 102032 port 32 102032 unique_id port 102032 remote_ip 10.8.0.6 102038 username mirzaei 102038 kill_reason Another user logged on this global unique id 102038 mac 102038 bytes_out 0 102038 bytes_in 0 102038 station_ip 5.119.106.177 102038 port 31 102038 unique_id port 102039 username abbasaskari 102039 mac 102039 bytes_out 0 102039 bytes_in 0 102039 station_ip 37.129.77.57 102039 port 34 102039 unique_id port 102039 remote_ip 10.8.0.94 102042 username fariba 102042 mac 102042 bytes_out 1782879 102042 bytes_in 2709022 102042 station_ip 5.120.137.81 102042 port 33 102042 unique_id port 102042 remote_ip 10.8.0.46 102043 username alirr 102043 kill_reason Wrong password 102043 unique_id port 102043 bytes_out 0 102043 bytes_in 0 102043 station_ip 5.120.57.249 102043 port 15729719 102043 nas_port_type Virtual 102048 username alirr 102048 unique_id port 102048 terminate_cause User-Request 102048 bytes_out 0 102048 bytes_in 0 102048 station_ip 5.119.227.93 102048 port 15729723 102048 nas_port_type Virtual 102048 remote_ip 5.5.5.254 102051 username shahrooz 102051 unique_id port 102051 terminate_cause User-Request 102051 bytes_out 2336378 102051 bytes_in 61885046 102051 station_ip 83.123.147.167 102051 port 15729725 102051 nas_port_type Virtual 102051 remote_ip 5.5.5.247 102054 username shahrooz 102054 unique_id port 102054 terminate_cause Lost-Carrier 102054 bytes_out 127239 102054 bytes_in 3072691 102054 station_ip 85.185.169.122 102054 port 15729726 102054 nas_port_type Virtual 102054 remote_ip 5.5.5.247 102055 username hashtadani 102055 kill_reason Maximum check online fails reached 102055 unique_id port 102055 bytes_out 274116 102055 bytes_in 2493365 102055 station_ip 83.122.219.21 102055 port 15729727 102055 nas_port_type Virtual 102055 remote_ip 5.5.5.245 102061 username alireza1 102061 unique_id port 102061 terminate_cause Lost-Carrier 102061 bytes_out 413912 102061 bytes_in 1013076 102061 station_ip 5.120.140.72 102061 port 15729715 102061 nas_port_type Virtual 102061 remote_ip 5.5.5.248 102076 username morteza 102076 mac 102076 bytes_out 1379653 102076 bytes_in 31973276 102076 station_ip 83.123.132.96 102076 port 27 102076 unique_id port 102076 remote_ip 10.8.0.90 102077 username aminvpn 102077 mac 102077 bytes_out 1511229 102077 bytes_in 30473360 102077 station_ip 113.203.118.67 102077 port 31 102077 unique_id port 102077 remote_ip 10.8.0.6 102079 username alireza1 102079 unique_id port 102079 terminate_cause User-Request 102079 bytes_out 64879 102079 bytes_in 263245 102079 station_ip 5.119.91.21 102079 port 15729733 102079 nas_port_type Virtual 102079 remote_ip 5.5.5.241 102081 username abbasaskari 102081 mac 102081 bytes_out 0 102081 bytes_in 0 102081 station_ip 37.129.146.235 102081 port 27 102081 unique_id port 102081 remote_ip 10.8.0.94 102085 username alirr 102085 unique_id port 102085 terminate_cause Lost-Carrier 102085 bytes_out 137220 102085 bytes_in 1049238 102085 station_ip 5.119.216.238 102085 port 15729735 102085 nas_port_type Virtual 102085 remote_ip 5.5.5.252 102089 username aminvpn 102089 unique_id port 102089 terminate_cause Lost-Carrier 102089 bytes_out 177099 102089 bytes_in 1864190 102089 station_ip 5.120.141.248 102089 port 15729736 102089 nas_port_type Virtual 102089 remote_ip 5.5.5.251 102091 username alirr 102091 unique_id port 102091 terminate_cause User-Request 102091 bytes_out 84041347 102091 bytes_in 2631493042 102091 station_ip 94.24.82.71 102091 port 15729734 102091 nas_port_type Virtual 102091 remote_ip 5.5.5.253 102093 username abbasaskari 102093 mac 102093 bytes_out 12285 102093 bytes_in 33478 102093 station_ip 37.129.146.235 102035 bytes_in 0 102035 station_ip 5.119.254.62 102035 port 32 102035 unique_id port 102035 remote_ip 10.8.0.6 102036 username madadi2 102036 mac 102036 bytes_out 2719884 102036 bytes_in 21408533 102036 station_ip 5.119.200.114 102036 port 35 102036 unique_id port 102036 remote_ip 10.8.0.26 102040 username alirr 102040 unique_id port 102040 terminate_cause User-Request 102040 bytes_out 2860840 102040 bytes_in 7387146 102040 station_ip 5.119.191.12 102040 port 15729711 102040 nas_port_type Virtual 102040 remote_ip 5.5.5.253 102045 username sadegh 102045 kill_reason Relative expiration date has reached 102045 unique_id port 102045 bytes_out 0 102045 bytes_in 0 102045 station_ip 5.119.191.12 102045 port 15729720 102045 nas_port_type Virtual 102046 username sadegh 102046 kill_reason Relative expiration date has reached 102046 unique_id port 102046 bytes_out 0 102046 bytes_in 0 102046 station_ip 5.119.227.93 102046 port 15729721 102046 nas_port_type Virtual 102053 username madadi2 102053 mac 102053 bytes_out 117455 102053 bytes_in 140047 102053 station_ip 5.119.142.132 102053 port 33 102053 unique_id port 102053 remote_ip 10.8.0.26 102056 username mohammadmahdi 102056 kill_reason Another user logged on this global unique id 102056 mac 102056 bytes_out 0 102056 bytes_in 0 102056 station_ip 5.119.177.228 102056 port 32 102056 unique_id port 102059 username mohammadmahdi 102059 mac 102059 bytes_out 0 102059 bytes_in 0 102059 station_ip 5.119.177.228 102059 port 32 102059 unique_id port 102064 username mirzaei 102064 kill_reason Another user logged on this global unique id 102064 mac 102064 bytes_out 0 102064 bytes_in 0 102064 station_ip 5.119.106.177 102064 port 31 102064 unique_id port 102066 username amir 102066 mac 102066 bytes_out 0 102066 bytes_in 0 102066 station_ip 46.225.214.162 102066 port 32 102066 unique_id port 102066 remote_ip 10.8.0.54 102067 username amir 102067 mac 102067 bytes_out 0 102067 bytes_in 0 102067 station_ip 83.123.103.200 102067 port 27 102067 unique_id port 102067 remote_ip 10.8.0.54 102070 username bcboard 102070 unique_id port 102070 terminate_cause Lost-Carrier 102070 bytes_out 1394557 102070 bytes_in 38005924 102070 station_ip 113.203.30.212 102070 port 15729729 102070 nas_port_type Virtual 102070 remote_ip 5.5.5.255 102072 username sobhan 102072 unique_id port 102072 terminate_cause Lost-Carrier 102072 bytes_out 26580246 102072 bytes_in 528137321 102072 station_ip 5.119.36.79 102072 port 15729730 102072 nas_port_type Virtual 102072 remote_ip 5.5.5.243 102073 username mirzaei 102073 mac 102073 bytes_out 0 102073 bytes_in 0 102073 station_ip 5.119.106.177 102073 port 31 102073 unique_id port 102075 username mirzaei 102075 mac 102075 bytes_out 0 102075 bytes_in 0 102075 station_ip 5.119.136.193 102075 port 27 102075 unique_id port 102075 remote_ip 10.8.0.30 102078 username abbasaskari 102078 mac 102078 bytes_out 0 102078 bytes_in 0 102078 station_ip 37.129.146.235 102078 port 27 102078 unique_id port 102078 remote_ip 10.8.0.94 102082 username askari 102082 kill_reason Another user logged on this global unique id 102082 mac 102082 bytes_out 0 102082 bytes_in 0 102082 station_ip 5.120.103.87 102082 port 31 102082 unique_id port 102082 remote_ip 10.8.0.38 102083 username abbasaskari 102083 mac 102083 bytes_out 0 102083 bytes_in 0 102083 station_ip 37.129.146.235 102083 port 27 102083 unique_id port 102083 remote_ip 10.8.0.94 102088 username mehdizare 102088 kill_reason Another user logged on this global unique id 102088 mac 102088 bytes_out 0 102088 bytes_in 0 102088 station_ip 5.120.163.85 102088 port 27 102041 station_ip 5.119.177.228 102041 port 32 102041 unique_id port 102041 remote_ip 10.8.0.34 102044 username sade 102044 unique_id port 102044 terminate_cause User-Request 102044 bytes_out 296288 102044 bytes_in 4222189 102044 station_ip 5.119.191.12 102044 port 15729717 102044 nas_port_type Virtual 102044 remote_ip 5.5.5.254 102047 username sade 102047 unique_id port 102047 terminate_cause User-Request 102047 bytes_out 72342 102047 bytes_in 623355 102047 station_ip 5.119.227.93 102047 port 15729722 102047 nas_port_type Virtual 102047 remote_ip 5.5.5.254 102049 username mohammadmahdi 102049 kill_reason Another user logged on this global unique id 102049 mac 102049 bytes_out 0 102049 bytes_in 0 102049 station_ip 5.119.177.228 102049 port 32 102049 unique_id port 102050 username farhad1 102050 mac 102050 bytes_out 67758 102050 bytes_in 264972 102050 station_ip 5.119.112.126 102050 port 34 102050 unique_id port 102050 remote_ip 10.8.0.102 102052 username mohammadmahdi 102052 kill_reason Another user logged on this global unique id 102052 mac 102052 bytes_out 0 102052 bytes_in 0 102052 station_ip 5.119.177.228 102052 port 32 102052 unique_id port 102057 username aminvpn 102057 mac 102057 bytes_out 3160298 102057 bytes_in 38725340 102057 station_ip 83.122.249.150 102057 port 27 102057 unique_id port 102057 remote_ip 10.8.0.6 102058 username abbasaskari 102058 mac 102058 bytes_out 64378 102058 bytes_in 542804 102058 station_ip 37.129.89.141 102058 port 33 102058 unique_id port 102058 remote_ip 10.8.0.94 102060 username abbasaskari 102060 mac 102060 bytes_out 0 102060 bytes_in 0 102060 station_ip 37.129.155.35 102060 port 15 102060 unique_id port 102060 remote_ip 10.8.1.58 102062 username mammad 102062 kill_reason Relative expiration date has reached 102062 bytes_out 11781339 102062 nas_port_type Virtual 102062 station_ip 5.233.51.169 102062 port 15729696 102062 terminate_cause User-Request 102062 bytes_in 131005870 102062 unique_id port 102062 remote_ip 5.5.5.251 102063 username alirr 102063 unique_id port 102063 terminate_cause User-Request 102063 bytes_out 4121711 102063 bytes_in 58329095 102063 station_ip 5.119.227.93 102063 port 15729724 102063 nas_port_type Virtual 102063 remote_ip 5.5.5.255 102065 username amir 102065 mac 102065 bytes_out 0 102065 bytes_in 0 102065 station_ip 46.225.214.162 102065 port 27 102065 unique_id port 102065 remote_ip 10.8.0.54 102068 username alirr 102068 unique_id port 102068 terminate_cause Lost-Carrier 102068 bytes_out 3955887 102068 bytes_in 81443849 102068 station_ip 5.119.227.93 102068 port 15729728 102068 nas_port_type Virtual 102068 remote_ip 5.5.5.255 102069 username bcboard 102069 unique_id port 102069 terminate_cause User-Request 102069 bytes_out 4429181 102069 bytes_in 88897085 102069 station_ip 113.203.30.212 102069 port 15729714 102069 nas_port_type Virtual 102069 remote_ip 5.5.5.249 102071 username khalili 102071 mac 102071 bytes_out 24969168 102071 bytes_in 45822139 102071 station_ip 5.120.135.75 102071 port 30 102071 unique_id port 102071 remote_ip 10.8.0.78 102074 username sobhan 102074 unique_id port 102074 terminate_cause Lost-Carrier 102074 bytes_out 6189669 102074 bytes_in 115769461 102074 station_ip 5.119.108.78 102074 port 15729731 102074 nas_port_type Virtual 102074 remote_ip 5.5.5.255 102080 username askari 102080 mac 102080 bytes_out 0 102080 bytes_in 0 102080 station_ip 5.119.253.156 102080 port 30 102080 unique_id port 102080 remote_ip 10.8.0.38 102084 username askari 102084 mac 102084 bytes_out 0 102084 bytes_in 0 102084 station_ip 5.120.103.87 102084 port 31 102084 unique_id port 102086 username abbasaskari 102086 mac 102086 bytes_out 0 102086 bytes_in 0 102086 station_ip 37.129.146.235 102086 port 30 102086 unique_id port 102086 remote_ip 10.8.0.94 102087 username alireza1 102087 unique_id port 102087 terminate_cause User-Request 102087 bytes_out 116 102087 bytes_in 122 102087 station_ip 5.119.91.21 102087 port 15729737 102087 nas_port_type Virtual 102087 remote_ip 5.5.5.250 102092 username abbasaskari 102092 mac 102092 bytes_out 26463 102092 bytes_in 64768 102092 station_ip 37.129.146.235 102092 port 30 102092 unique_id port 102092 remote_ip 10.8.0.94 102095 username hashtadani 102095 unique_id port 102095 terminate_cause Lost-Carrier 102095 bytes_out 74322 102095 bytes_in 300243 102095 station_ip 83.122.219.21 102095 port 15729732 102095 nas_port_type Virtual 102095 remote_ip 5.5.5.255 102104 username aminvpn 102104 unique_id port 102104 terminate_cause Lost-Carrier 102104 bytes_out 199535 102104 bytes_in 1214279 102104 station_ip 5.120.68.133 102104 port 15729740 102104 nas_port_type Virtual 102104 remote_ip 5.5.5.229 102105 username alireza 102105 unique_id port 102105 terminate_cause Lost-Carrier 102105 bytes_out 1952860 102105 bytes_in 26216064 102105 station_ip 5.119.173.202 102105 port 15729741 102105 nas_port_type Virtual 102105 remote_ip 5.5.5.234 102106 username aminvpn 102106 mac 102106 bytes_out 2444384 102106 bytes_in 36177722 102106 station_ip 113.203.73.204 102106 port 31 102106 unique_id port 102106 remote_ip 10.8.0.6 102108 username aminvpn 102108 mac 102108 bytes_out 0 102108 bytes_in 0 102108 station_ip 113.203.73.204 102108 port 31 102108 unique_id port 102108 remote_ip 10.8.0.6 102110 username aminvpn 102110 mac 102110 bytes_out 0 102110 bytes_in 0 102110 station_ip 113.203.73.204 102110 port 31 102110 unique_id port 102110 remote_ip 10.8.0.6 102111 username aminvpn 102111 mac 102111 bytes_out 0 102111 bytes_in 0 102111 station_ip 113.203.86.59 102111 port 33 102111 unique_id port 102111 remote_ip 10.8.0.6 102113 username alipour 102113 mac 102113 bytes_out 2544680 102113 bytes_in 41402192 102113 station_ip 37.129.213.111 102113 port 32 102113 unique_id port 102113 remote_ip 10.8.0.70 102114 username mehdizare 102114 mac 102114 bytes_out 0 102114 bytes_in 0 102114 station_ip 5.120.163.85 102114 port 27 102114 unique_id port 102116 username mehdizare 102116 mac 102116 bytes_out 7214 102116 bytes_in 9869 102116 station_ip 5.120.163.85 102116 port 31 102116 unique_id port 102116 remote_ip 10.8.0.22 102117 username aminvpn 102117 mac 102117 bytes_out 0 102117 bytes_in 0 102117 station_ip 113.203.73.204 102117 port 27 102117 unique_id port 102117 remote_ip 10.8.0.6 102120 username madadi2 102120 mac 102120 bytes_out 88296 102120 bytes_in 285619 102120 station_ip 5.120.24.49 102120 port 27 102120 unique_id port 102120 remote_ip 10.8.0.26 102122 username aminvpn 102122 mac 102122 bytes_out 0 102122 bytes_in 0 102122 station_ip 113.203.86.59 102122 port 33 102122 unique_id port 102122 remote_ip 10.8.0.6 102123 username aminvpn 102123 mac 102123 bytes_out 0 102123 bytes_in 0 102123 station_ip 113.203.73.204 102123 port 27 102123 unique_id port 102123 remote_ip 10.8.0.6 102125 username abbasaskari 102125 mac 102125 bytes_out 32300 102125 bytes_in 53662 102125 station_ip 83.122.20.190 102125 port 32 102125 unique_id port 102125 remote_ip 10.8.0.94 102129 username aminvpn 102129 mac 102129 bytes_out 0 102129 bytes_in 0 102129 station_ip 113.203.73.204 102129 port 34 102129 unique_id port 102088 unique_id port 102088 remote_ip 10.8.0.22 102090 username aminvpn 102090 mac 102090 bytes_out 0 102090 bytes_in 0 102090 station_ip 37.129.55.114 102090 port 30 102090 unique_id port 102090 remote_ip 10.8.0.6 102094 username madadi2 102094 mac 102094 bytes_out 0 102094 bytes_in 0 102094 station_ip 5.119.201.139 102094 port 31 102094 unique_id port 102094 remote_ip 10.8.0.26 102097 username forozande 102097 mac 102097 bytes_out 819742 102097 bytes_in 9020951 102097 station_ip 83.123.29.228 102097 port 30 102097 unique_id port 102097 remote_ip 10.8.0.74 102099 username morteza 102099 mac 102099 bytes_out 0 102099 bytes_in 0 102099 station_ip 83.123.243.188 102099 port 32 102099 unique_id port 102099 remote_ip 10.8.0.90 102100 username abbasaskari 102100 mac 102100 bytes_out 0 102100 bytes_in 0 102100 station_ip 83.122.38.90 102100 port 32 102100 unique_id port 102100 remote_ip 10.8.0.94 102101 username mirzaei 102101 kill_reason Another user logged on this global unique id 102101 mac 102101 bytes_out 0 102101 bytes_in 0 102101 station_ip 5.119.19.151 102101 port 30 102101 unique_id port 102101 remote_ip 10.8.0.30 102102 username ahmadipour 102102 unique_id port 102102 terminate_cause Lost-Carrier 102102 bytes_out 298829 102102 bytes_in 3822091 102102 station_ip 83.122.244.19 102102 port 15729743 102102 nas_port_type Virtual 102102 remote_ip 5.5.5.253 102103 username abbasaskari 102103 mac 102103 bytes_out 0 102103 bytes_in 0 102103 station_ip 83.122.38.90 102103 port 33 102103 unique_id port 102103 remote_ip 10.8.0.94 102112 username aminvpn 102112 mac 102112 bytes_out 0 102112 bytes_in 0 102112 station_ip 113.203.73.204 102112 port 31 102112 unique_id port 102112 remote_ip 10.8.0.6 102118 username aminvpn 102118 mac 102118 bytes_out 0 102118 bytes_in 0 102118 station_ip 113.203.86.59 102118 port 33 102118 unique_id port 102118 remote_ip 10.8.0.6 102119 username aminvpn 102119 mac 102119 bytes_out 0 102119 bytes_in 0 102119 station_ip 113.203.73.204 102119 port 34 102119 unique_id port 102119 remote_ip 10.8.0.6 102121 username hashtadani 102121 unique_id port 102121 terminate_cause User-Request 102121 bytes_out 353227 102121 bytes_in 5603467 102121 station_ip 83.122.219.21 102121 port 15729742 102121 nas_port_type Virtual 102121 remote_ip 5.5.5.235 102126 username aminvpn 102126 mac 102126 bytes_out 0 102126 bytes_in 0 102126 station_ip 113.203.73.204 102126 port 27 102126 unique_id port 102126 remote_ip 10.8.0.6 102127 username mehdizare 102127 mac 102127 bytes_out 0 102127 bytes_in 0 102127 station_ip 5.120.163.85 102127 port 31 102127 unique_id port 102127 remote_ip 10.8.0.22 102130 username forozande 102130 mac 102130 bytes_out 0 102130 bytes_in 0 102130 station_ip 83.122.84.232 102130 port 33 102130 unique_id port 102130 remote_ip 10.8.0.74 102132 username mehdizare 102132 mac 102132 bytes_out 14025 102132 bytes_in 16407 102132 station_ip 5.120.163.85 102132 port 31 102132 unique_id port 102132 remote_ip 10.8.0.22 102134 username alireza1 102134 unique_id port 102134 terminate_cause Lost-Carrier 102134 bytes_out 535168 102134 bytes_in 1312000 102134 station_ip 5.119.91.21 102134 port 15729739 102134 nas_port_type Virtual 102134 remote_ip 5.5.5.255 102136 username rezasekonji 102136 unique_id port 102136 terminate_cause Lost-Carrier 102136 bytes_out 43412 102136 bytes_in 921189 102136 station_ip 46.225.208.13 102136 port 15729744 102136 nas_port_type Virtual 102136 remote_ip 5.5.5.226 102137 username mehdizare 102137 mac 102093 port 30 102093 unique_id port 102093 remote_ip 10.8.0.94 102096 username alireza1 102096 unique_id port 102096 terminate_cause User-Request 102096 bytes_out 39750 102096 bytes_in 870804 102096 station_ip 5.119.91.21 102096 port 15729738 102096 nas_port_type Virtual 102096 remote_ip 5.5.5.255 102098 username madadi2 102098 mac 102098 bytes_out 44371 102098 bytes_in 102122 102098 station_ip 5.120.26.131 102098 port 30 102098 unique_id port 102098 remote_ip 10.8.0.26 102107 username aminvpn 102107 mac 102107 bytes_out 0 102107 bytes_in 0 102107 station_ip 113.203.86.59 102107 port 33 102107 unique_id port 102107 remote_ip 10.8.0.6 102109 username aminvpn 102109 mac 102109 bytes_out 103364 102109 bytes_in 195439 102109 station_ip 113.203.86.59 102109 port 33 102109 unique_id port 102109 remote_ip 10.8.0.6 102115 username aminvpn 102115 mac 102115 bytes_out 0 102115 bytes_in 0 102115 station_ip 113.203.86.59 102115 port 33 102115 unique_id port 102115 remote_ip 10.8.0.6 102124 username aminvpn 102124 mac 102124 bytes_out 0 102124 bytes_in 0 102124 station_ip 113.203.86.59 102124 port 34 102124 unique_id port 102124 remote_ip 10.8.0.6 102128 username aminvpn 102128 mac 102128 bytes_out 0 102128 bytes_in 0 102128 station_ip 113.203.86.59 102128 port 32 102128 unique_id port 102128 remote_ip 10.8.0.6 102131 username aminvpn 102131 mac 102131 bytes_out 0 102131 bytes_in 0 102131 station_ip 113.203.86.59 102131 port 32 102131 unique_id port 102131 remote_ip 10.8.0.6 102133 username mehdizare 102133 mac 102133 bytes_out 15660 102133 bytes_in 14973 102133 station_ip 5.120.163.85 102133 port 32 102133 unique_id port 102133 remote_ip 10.8.0.22 102135 username rezasekonji 102135 mac 102135 bytes_out 0 102135 bytes_in 0 102135 station_ip 37.129.127.223 102135 port 31 102135 unique_id port 102135 remote_ip 10.8.0.114 102140 username mehdizare 102140 mac 102140 bytes_out 16145 102140 bytes_in 30166 102140 station_ip 5.120.163.85 102140 port 31 102140 unique_id port 102140 remote_ip 10.8.0.22 102142 username aminvpn 102142 mac 102142 bytes_out 0 102142 bytes_in 0 102142 station_ip 113.203.73.204 102142 port 33 102142 unique_id port 102142 remote_ip 10.8.0.6 102144 username madadi2 102144 mac 102144 bytes_out 713530 102144 bytes_in 1852333 102144 station_ip 5.120.8.254 102144 port 27 102144 unique_id port 102144 remote_ip 10.8.0.26 102147 username mehdizare 102147 mac 102147 bytes_out 0 102147 bytes_in 0 102147 station_ip 5.120.163.85 102147 port 15 102147 unique_id port 102147 remote_ip 10.8.1.22 102150 username mehdizare 102150 mac 102150 bytes_out 6401 102150 bytes_in 9717 102150 station_ip 5.120.163.85 102150 port 31 102150 unique_id port 102150 remote_ip 10.8.0.22 102153 username abbasaskari 102153 mac 102153 bytes_out 0 102153 bytes_in 0 102153 station_ip 83.122.32.114 102153 port 27 102153 unique_id port 102153 remote_ip 10.8.0.94 102155 username alihosseini 102155 mac 102155 bytes_out 0 102155 bytes_in 0 102155 station_ip 5.120.180.52 102155 port 27 102155 unique_id port 102155 remote_ip 10.8.0.14 102158 username ahmadipour 102158 unique_id port 102158 terminate_cause Lost-Carrier 102158 bytes_out 188145 102158 bytes_in 1731921 102158 station_ip 83.122.175.39 102158 port 15729747 102158 nas_port_type Virtual 102158 remote_ip 5.5.5.255 102160 username forozande 102160 mac 102160 bytes_out 482359 102160 bytes_in 6709049 102160 station_ip 37.129.92.219 102160 port 27 102129 remote_ip 10.8.0.6 102138 username rezasekonji 102138 mac 102138 bytes_out 0 102138 bytes_in 0 102138 station_ip 37.129.187.194 102138 port 34 102138 unique_id port 102138 remote_ip 10.8.0.114 102149 username mehdizare 102149 mac 102149 bytes_out 0 102149 bytes_in 0 102149 station_ip 5.120.163.85 102149 port 31 102149 unique_id port 102149 remote_ip 10.8.0.22 102152 username mirzaei 102152 kill_reason Another user logged on this global unique id 102152 mac 102152 bytes_out 0 102152 bytes_in 0 102152 station_ip 5.119.19.151 102152 port 30 102152 unique_id port 102156 username aminvpn 102156 unique_id port 102156 terminate_cause Lost-Carrier 102156 bytes_out 375480 102156 bytes_in 5898995 102156 station_ip 5.120.68.133 102156 port 15729746 102156 nas_port_type Virtual 102156 remote_ip 5.5.5.231 102157 username alihosseini 102157 mac 102157 bytes_out 0 102157 bytes_in 0 102157 station_ip 5.120.180.52 102157 port 32 102157 unique_id port 102157 remote_ip 10.8.0.14 102159 username alihosseini 102159 mac 102159 bytes_out 0 102159 bytes_in 0 102159 station_ip 5.120.180.52 102159 port 15 102159 unique_id port 102159 remote_ip 10.8.1.6 102162 username mehdizare 102162 mac 102162 bytes_out 65446 102162 bytes_in 99010 102162 station_ip 5.120.163.85 102162 port 31 102162 unique_id port 102162 remote_ip 10.8.0.22 102163 username mehdizare 102163 mac 102163 bytes_out 9994 102163 bytes_in 14772 102163 station_ip 5.120.163.85 102163 port 32 102163 unique_id port 102163 remote_ip 10.8.0.22 102165 username mehdizare 102165 mac 102165 bytes_out 15023 102165 bytes_in 40463 102165 station_ip 5.120.163.85 102165 port 31 102165 unique_id port 102165 remote_ip 10.8.0.22 102167 username alihosseini 102167 mac 102167 bytes_out 0 102167 bytes_in 0 102167 station_ip 5.120.180.52 102167 port 15 102167 unique_id port 102167 remote_ip 10.8.1.6 102175 username forozande 102175 mac 102175 bytes_out 158866 102175 bytes_in 214708 102175 station_ip 83.122.56.246 102175 port 16 102175 unique_id port 102175 remote_ip 10.8.1.62 102180 username alireza 102180 unique_id port 102180 terminate_cause Lost-Carrier 102180 bytes_out 1552005 102180 bytes_in 63329112 102180 station_ip 194.15.99.84 102180 port 15729759 102180 nas_port_type Virtual 102180 remote_ip 5.5.5.221 102181 username mehdizare 102181 mac 102181 bytes_out 0 102181 bytes_in 0 102181 station_ip 5.120.163.85 102181 port 31 102181 unique_id port 102181 remote_ip 10.8.0.22 102186 username musa 102186 kill_reason Another user logged on this global unique id 102186 mac 102186 bytes_out 0 102186 bytes_in 0 102186 station_ip 83.123.162.231 102186 port 34 102186 unique_id port 102187 username abbasaskari 102187 mac 102187 bytes_out 0 102187 bytes_in 0 102187 station_ip 83.122.32.114 102187 port 35 102187 unique_id port 102187 remote_ip 10.8.0.94 102191 username abbasaskari 102191 mac 102191 bytes_out 45567 102191 bytes_in 87127 102191 station_ip 83.122.32.114 102191 port 31 102191 unique_id port 102191 remote_ip 10.8.0.94 102199 username mehdizare 102199 mac 102199 bytes_out 20532 102199 bytes_in 39827 102199 station_ip 5.120.163.85 102199 port 31 102199 unique_id port 102199 remote_ip 10.8.0.22 102205 username mehdizare 102205 mac 102205 bytes_out 11375 102205 bytes_in 22042 102205 station_ip 5.120.163.85 102205 port 31 102205 unique_id port 102205 remote_ip 10.8.0.22 102206 username abbasaskari 102206 mac 102206 bytes_out 0 102206 bytes_in 0 102206 station_ip 83.122.32.114 102206 port 31 102206 unique_id port 102137 bytes_out 9493 102137 bytes_in 12372 102137 station_ip 5.120.163.85 102137 port 31 102137 unique_id port 102137 remote_ip 10.8.0.22 102139 username rezasekonji 102139 mac 102139 bytes_out 0 102139 bytes_in 0 102139 station_ip 37.129.187.194 102139 port 34 102139 unique_id port 102139 remote_ip 10.8.0.114 102141 username alihosseini 102141 mac 102141 bytes_out 0 102141 bytes_in 0 102141 station_ip 5.120.109.5 102141 port 32 102141 unique_id port 102141 remote_ip 10.8.0.14 102143 username mahdiyehalizadeh 102143 mac 102143 bytes_out 0 102143 bytes_in 0 102143 station_ip 37.129.15.107 102143 port 32 102143 unique_id port 102143 remote_ip 10.8.0.42 102145 username mehdizare 102145 mac 102145 bytes_out 0 102145 bytes_in 0 102145 station_ip 5.120.163.85 102145 port 31 102145 unique_id port 102145 remote_ip 10.8.0.22 102146 username abbasaskari 102146 mac 102146 bytes_out 37248 102146 bytes_in 66337 102146 station_ip 83.122.32.114 102146 port 34 102146 unique_id port 102146 remote_ip 10.8.0.94 102148 username abbasaskari 102148 mac 102148 bytes_out 0 102148 bytes_in 0 102148 station_ip 83.122.32.114 102148 port 27 102148 unique_id port 102148 remote_ip 10.8.0.94 102151 username mehdizare 102151 mac 102151 bytes_out 17480 102151 bytes_in 31108 102151 station_ip 5.120.163.85 102151 port 31 102151 unique_id port 102151 remote_ip 10.8.0.22 102154 username alihosseini 102154 mac 102154 bytes_out 0 102154 bytes_in 0 102154 station_ip 5.120.180.52 102154 port 32 102154 unique_id port 102154 remote_ip 10.8.0.14 102161 username khalili 102161 unique_id port 102161 terminate_cause User-Request 102161 bytes_out 161964 102161 bytes_in 1707235 102161 station_ip 5.120.135.235 102161 port 15729749 102161 nas_port_type Virtual 102161 remote_ip 5.5.5.255 102164 username alihosseini 102164 mac 102164 bytes_out 0 102164 bytes_in 0 102164 station_ip 5.120.180.52 102164 port 15 102164 unique_id port 102164 remote_ip 10.8.1.6 102170 username aminvpn 102170 mac 102170 bytes_out 0 102170 bytes_in 0 102170 station_ip 113.203.84.196 102170 port 32 102170 unique_id port 102170 remote_ip 10.8.0.6 102171 username alireza 102171 unique_id port 102171 terminate_cause Lost-Carrier 102171 bytes_out 313080 102171 bytes_in 968358 102171 station_ip 194.15.99.84 102171 port 15729748 102171 nas_port_type Virtual 102171 remote_ip 5.5.5.224 102172 username mehdizare 102172 mac 102172 bytes_out 49745 102172 bytes_in 62570 102172 station_ip 5.120.163.85 102172 port 31 102172 unique_id port 102172 remote_ip 10.8.0.22 102173 username mehdizare 102173 mac 102173 bytes_out 0 102173 bytes_in 0 102173 station_ip 5.120.163.85 102173 port 32 102173 unique_id port 102173 remote_ip 10.8.0.22 102182 username mehdizare 102182 mac 102182 bytes_out 10156 102182 bytes_in 21137 102182 station_ip 5.120.163.85 102182 port 16 102182 unique_id port 102182 remote_ip 10.8.1.22 102183 username musa 102183 kill_reason Another user logged on this global unique id 102183 mac 102183 bytes_out 0 102183 bytes_in 0 102183 station_ip 83.123.162.231 102183 port 34 102183 unique_id port 102184 username abbasaskari 102184 mac 102184 bytes_out 40009 102184 bytes_in 212554 102184 station_ip 83.122.32.114 102184 port 35 102184 unique_id port 102184 remote_ip 10.8.0.94 102188 username musa 102188 kill_reason Another user logged on this global unique id 102188 mac 102188 bytes_out 0 102188 bytes_in 0 102188 station_ip 83.123.162.231 102188 port 34 102188 unique_id port 102189 username amir 102189 mac 102160 unique_id port 102160 remote_ip 10.8.0.74 102166 username mehdizare 102166 mac 102166 bytes_out 0 102166 bytes_in 0 102166 station_ip 5.120.163.85 102166 port 32 102166 unique_id port 102166 remote_ip 10.8.0.22 102168 username alihosseini 102168 mac 102168 bytes_out 0 102168 bytes_in 0 102168 station_ip 5.120.180.52 102168 port 32 102168 unique_id port 102168 remote_ip 10.8.0.14 102169 username mehdizare 102169 mac 102169 bytes_out 0 102169 bytes_in 0 102169 station_ip 5.120.163.85 102169 port 31 102169 unique_id port 102169 remote_ip 10.8.0.22 102174 username alirr 102174 unique_id port 102174 terminate_cause User-Request 102174 bytes_out 20893340 102174 bytes_in 389093546 102174 station_ip 37.137.16.207 102174 port 15729745 102174 nas_port_type Virtual 102174 remote_ip 5.5.5.230 102176 username ahmadi 102176 unique_id port 102176 terminate_cause User-Request 102176 bytes_out 26786 102176 bytes_in 104585 102176 station_ip 113.203.27.234 102176 port 15729758 102176 nas_port_type Virtual 102176 remote_ip 5.5.5.217 102177 username musa 102177 kill_reason Another user logged on this global unique id 102177 mac 102177 bytes_out 0 102177 bytes_in 0 102177 station_ip 83.123.162.231 102177 port 34 102177 unique_id port 102177 remote_ip 10.8.0.106 102178 username rezasekonji 102178 mac 102178 bytes_out 0 102178 bytes_in 0 102178 station_ip 37.129.187.194 102178 port 35 102178 unique_id port 102178 remote_ip 10.8.0.114 102179 username aminvpn 102179 unique_id port 102179 terminate_cause Lost-Carrier 102179 bytes_out 306833 102179 bytes_in 412456 102179 station_ip 31.57.128.199 102179 port 15729760 102179 nas_port_type Virtual 102179 remote_ip 5.5.5.216 102185 username mehdizare 102185 mac 102185 bytes_out 0 102185 bytes_in 0 102185 station_ip 5.120.163.85 102185 port 31 102185 unique_id port 102185 remote_ip 10.8.0.22 102190 username khalili 102190 kill_reason Another user logged on this global unique id 102190 mac 102190 bytes_out 0 102190 bytes_in 0 102190 station_ip 5.120.135.235 102190 port 27 102190 unique_id port 102190 remote_ip 10.8.0.78 102193 username mehdizare 102193 mac 102193 bytes_out 66644 102193 bytes_in 119826 102193 station_ip 5.120.163.85 102193 port 36 102193 unique_id port 102193 remote_ip 10.8.0.22 102197 username abbasaskari 102197 mac 102197 bytes_out 10790 102197 bytes_in 33377 102197 station_ip 83.122.32.114 102197 port 35 102197 unique_id port 102197 remote_ip 10.8.0.94 102198 username abbasaskari 102198 mac 102198 bytes_out 0 102198 bytes_in 0 102198 station_ip 83.122.32.114 102198 port 35 102198 unique_id port 102198 remote_ip 10.8.0.94 102200 username khalili 102200 kill_reason Another user logged on this global unique id 102200 mac 102200 bytes_out 0 102200 bytes_in 0 102200 station_ip 5.120.135.235 102200 port 27 102200 unique_id port 102201 username mahdiyehalizadeh 102201 mac 102201 bytes_out 130312 102201 bytes_in 1259411 102201 station_ip 37.129.86.224 102201 port 36 102201 unique_id port 102201 remote_ip 10.8.0.42 102202 username abbasaskari 102202 mac 102202 bytes_out 54789 102202 bytes_in 129469 102202 station_ip 83.122.32.114 102202 port 35 102202 unique_id port 102202 remote_ip 10.8.0.94 102203 username mehdizare 102203 mac 102203 bytes_out 49842 102203 bytes_in 109980 102203 station_ip 5.120.163.85 102203 port 31 102203 unique_id port 102203 remote_ip 10.8.0.22 102204 username khalili 102204 kill_reason Another user logged on this global unique id 102204 mac 102204 bytes_out 0 102204 bytes_in 0 102204 station_ip 5.120.135.235 102204 port 27 102204 unique_id port 102189 bytes_out 4491521 102189 bytes_in 20096158 102189 station_ip 46.225.232.228 102189 port 15 102189 unique_id port 102189 remote_ip 10.8.1.34 102192 username alireza1 102192 unique_id port 102192 terminate_cause Lost-Carrier 102192 bytes_out 119573 102192 bytes_in 322936 102192 station_ip 5.120.64.248 102192 port 15729761 102192 nas_port_type Virtual 102192 remote_ip 5.5.5.254 102194 username abbasaskari 102194 mac 102194 bytes_out 19945 102194 bytes_in 37399 102194 station_ip 83.122.32.114 102194 port 31 102194 unique_id port 102194 remote_ip 10.8.0.94 102195 username musa 102195 kill_reason Another user logged on this global unique id 102195 mac 102195 bytes_out 0 102195 bytes_in 0 102195 station_ip 83.123.162.231 102195 port 34 102195 unique_id port 102196 username khalili 102196 kill_reason Another user logged on this global unique id 102196 mac 102196 bytes_out 0 102196 bytes_in 0 102196 station_ip 5.120.135.235 102196 port 27 102196 unique_id port 102210 username abbasaskari 102210 mac 102210 bytes_out 0 102210 bytes_in 0 102210 station_ip 83.122.32.114 102210 port 34 102210 unique_id port 102210 remote_ip 10.8.0.94 102211 username askari 102211 mac 102211 bytes_out 0 102211 bytes_in 0 102211 station_ip 5.120.34.75 102211 port 34 102211 unique_id port 102211 remote_ip 10.8.0.38 102212 username khalili 102212 kill_reason Another user logged on this global unique id 102212 mac 102212 bytes_out 0 102212 bytes_in 0 102212 station_ip 5.120.135.235 102212 port 27 102212 unique_id port 102213 username khalili 102213 kill_reason Another user logged on this global unique id 102213 mac 102213 bytes_out 0 102213 bytes_in 0 102213 station_ip 5.120.135.235 102213 port 27 102213 unique_id port 102214 username mammad 102214 kill_reason Relative expiration date has reached 102214 unique_id port 102214 bytes_out 0 102214 bytes_in 0 102214 station_ip 78.39.28.226 102214 port 15729762 102214 nas_port_type Virtual 102220 username khalili 102220 kill_reason Another user logged on this global unique id 102220 mac 102220 bytes_out 0 102220 bytes_in 0 102220 station_ip 5.120.135.235 102220 port 27 102220 unique_id port 102221 username mammad 102221 kill_reason Relative expiration date has reached 102221 unique_id port 102221 bytes_out 0 102221 bytes_in 0 102221 station_ip 78.39.28.226 102221 port 15729766 102221 nas_port_type Virtual 102224 username khalili 102224 kill_reason Another user logged on this global unique id 102224 mac 102224 bytes_out 0 102224 bytes_in 0 102224 station_ip 5.120.135.235 102224 port 27 102224 unique_id port 102230 username musa 102230 kill_reason Another user logged on this global unique id 102230 mac 102230 bytes_out 0 102230 bytes_in 0 102230 station_ip 83.123.126.182 102230 port 31 102230 unique_id port 102231 username abbasaskari 102231 mac 102231 bytes_out 0 102231 bytes_in 0 102231 station_ip 83.122.43.250 102231 port 38 102231 unique_id port 102231 remote_ip 10.8.0.94 102233 username musa 102233 mac 102233 bytes_out 0 102233 bytes_in 0 102233 station_ip 83.123.126.182 102233 port 31 102233 unique_id port 102234 username arman1 102234 mac 102234 bytes_out 1938963 102234 bytes_in 16465354 102234 station_ip 5.120.67.174 102234 port 37 102234 unique_id port 102234 remote_ip 10.8.0.86 102236 username forozande 102236 mac 102236 bytes_out 285121 102236 bytes_in 477663 102236 station_ip 83.122.104.60 102236 port 16 102236 unique_id port 102236 remote_ip 10.8.1.62 102240 username mammad 102240 kill_reason Relative expiration date has reached 102240 unique_id port 102240 bytes_out 0 102240 bytes_in 0 102240 station_ip 78.39.28.226 102206 remote_ip 10.8.0.94 102207 username khalili 102207 kill_reason Another user logged on this global unique id 102207 mac 102207 bytes_out 0 102207 bytes_in 0 102207 station_ip 5.120.135.235 102207 port 27 102207 unique_id port 102208 username musa 102208 mac 102208 bytes_out 0 102208 bytes_in 0 102208 station_ip 83.123.162.231 102208 port 34 102208 unique_id port 102216 username mammad 102216 kill_reason Relative expiration date has reached 102216 unique_id port 102216 bytes_out 0 102216 bytes_in 0 102216 station_ip 78.39.28.226 102216 port 15729764 102216 nas_port_type Virtual 102218 username askari 102218 mac 102218 bytes_out 665686 102218 bytes_in 7961583 102218 station_ip 5.120.34.75 102218 port 34 102218 unique_id port 102218 remote_ip 10.8.0.38 102219 username mammad 102219 kill_reason Relative expiration date has reached 102219 unique_id port 102219 bytes_out 0 102219 bytes_in 0 102219 station_ip 78.39.28.226 102219 port 15729765 102219 nas_port_type Virtual 102223 username mammad 102223 kill_reason Relative expiration date has reached 102223 unique_id port 102223 bytes_out 0 102223 bytes_in 0 102223 station_ip 78.39.28.226 102223 port 15729768 102223 nas_port_type Virtual 102227 username mirzaei 102227 kill_reason Another user logged on this global unique id 102227 mac 102227 bytes_out 0 102227 bytes_in 0 102227 station_ip 5.119.19.151 102227 port 30 102227 unique_id port 102232 username alirr 102232 unique_id port 102232 terminate_cause Lost-Carrier 102232 bytes_out 184870 102232 bytes_in 1601516 102232 station_ip 5.120.159.15 102232 port 15729770 102232 nas_port_type Virtual 102232 remote_ip 5.5.5.253 102237 username amir 102237 mac 102237 bytes_out 0 102237 bytes_in 0 102237 station_ip 46.225.215.10 102237 port 31 102237 unique_id port 102237 remote_ip 10.8.0.54 102239 username mammad 102239 kill_reason Relative expiration date has reached 102239 unique_id port 102239 bytes_out 0 102239 bytes_in 0 102239 station_ip 78.39.28.226 102239 port 15729772 102239 nas_port_type Virtual 102245 username bcboard 102245 unique_id port 102245 terminate_cause Lost-Carrier 102245 bytes_out 6761342 102245 bytes_in 161531646 102245 station_ip 37.129.66.248 102245 port 15729750 102245 nas_port_type Virtual 102245 remote_ip 5.5.5.223 102249 username abbasaskari 102249 mac 102249 bytes_out 52708 102249 bytes_in 82817 102249 station_ip 83.122.43.166 102249 port 15 102249 unique_id port 102249 remote_ip 10.8.1.58 102253 username mohammadmahdi 102253 kill_reason Another user logged on this global unique id 102253 mac 102253 bytes_out 0 102253 bytes_in 0 102253 station_ip 5.120.50.235 102253 port 37 102253 unique_id port 102253 remote_ip 10.8.0.34 102254 username mohammadmahdi 102254 kill_reason Another user logged on this global unique id 102254 mac 102254 bytes_out 0 102254 bytes_in 0 102254 station_ip 5.120.50.235 102254 port 37 102254 unique_id port 102257 username mammad 102257 kill_reason Relative expiration date has reached 102257 unique_id port 102257 bytes_out 0 102257 bytes_in 0 102257 station_ip 78.39.28.226 102257 port 15729777 102257 nas_port_type Virtual 102263 username aminvpn 102263 unique_id port 102263 terminate_cause Lost-Carrier 102263 bytes_out 69090 102263 bytes_in 209888 102263 station_ip 31.57.128.199 102263 port 15729780 102263 nas_port_type Virtual 102263 remote_ip 5.5.5.254 102265 username mirzaei 102265 kill_reason Another user logged on this global unique id 102265 mac 102265 bytes_out 0 102265 bytes_in 0 102265 station_ip 5.119.19.151 102265 port 30 102265 unique_id port 102267 username askari 102267 mac 102267 bytes_out 73701 102267 bytes_in 107608 102267 station_ip 5.119.193.152 102267 port 31 102209 username askari 102209 mac 102209 bytes_out 333655 102209 bytes_in 2816275 102209 station_ip 5.120.34.75 102209 port 35 102209 unique_id port 102209 remote_ip 10.8.0.38 102215 username mammad 102215 kill_reason Relative expiration date has reached 102215 unique_id port 102215 bytes_out 0 102215 bytes_in 0 102215 station_ip 78.39.28.226 102215 port 15729763 102215 nas_port_type Virtual 102217 username musa 102217 kill_reason Another user logged on this global unique id 102217 mac 102217 bytes_out 0 102217 bytes_in 0 102217 station_ip 83.123.126.182 102217 port 31 102217 unique_id port 102217 remote_ip 10.8.0.106 102222 username mammad 102222 kill_reason Relative expiration date has reached 102222 unique_id port 102222 bytes_out 0 102222 bytes_in 0 102222 station_ip 78.39.28.226 102222 port 15729767 102222 nas_port_type Virtual 102225 username askari 102225 mac 102225 bytes_out 0 102225 bytes_in 0 102225 station_ip 5.119.205.14 102225 port 34 102225 unique_id port 102225 remote_ip 10.8.0.38 102226 username musa 102226 kill_reason Another user logged on this global unique id 102226 mac 102226 bytes_out 0 102226 bytes_in 0 102226 station_ip 83.123.126.182 102226 port 31 102226 unique_id port 102228 username khalili 102228 kill_reason Another user logged on this global unique id 102228 mac 102228 bytes_out 0 102228 bytes_in 0 102228 station_ip 5.120.135.235 102228 port 27 102228 unique_id port 102229 username khalili 102229 kill_reason Another user logged on this global unique id 102229 mac 102229 bytes_out 0 102229 bytes_in 0 102229 station_ip 5.120.135.235 102229 port 27 102229 unique_id port 102235 username amir 102235 mac 102235 bytes_out 0 102235 bytes_in 0 102235 station_ip 46.225.215.10 102235 port 15 102235 unique_id port 102235 remote_ip 10.8.1.34 102238 username mammad 102238 kill_reason Relative expiration date has reached 102238 unique_id port 102238 bytes_out 0 102238 bytes_in 0 102238 station_ip 78.39.28.226 102238 port 15729771 102238 nas_port_type Virtual 102243 username amir 102243 mac 102243 bytes_out 86083 102243 bytes_in 542367 102243 station_ip 46.225.215.10 102243 port 31 102243 unique_id port 102243 remote_ip 10.8.0.54 102244 username askari 102244 mac 102244 bytes_out 519846 102244 bytes_in 5378966 102244 station_ip 5.119.193.152 102244 port 35 102244 unique_id port 102244 remote_ip 10.8.0.38 102247 username tahmasebi 102247 mac 102247 bytes_out 3469241 102247 bytes_in 34402244 102247 station_ip 5.120.28.50 102247 port 32 102247 unique_id port 102247 remote_ip 10.8.0.66 102251 username alemzadeh 102251 unique_id port 102251 terminate_cause Lost-Carrier 102251 bytes_out 9313017 102251 bytes_in 104182348 102251 station_ip 151.235.107.78 102251 port 15729769 102251 nas_port_type Virtual 102251 remote_ip 5.5.5.254 102252 username asadi 102252 mac 102252 bytes_out 0 102252 bytes_in 0 102252 station_ip 83.122.43.117 102252 port 32 102252 unique_id port 102252 remote_ip 10.8.0.50 102255 username forozande 102255 mac 102255 bytes_out 0 102255 bytes_in 0 102255 station_ip 83.122.99.87 102255 port 16 102255 unique_id port 102255 remote_ip 10.8.1.62 102256 username mammad 102256 kill_reason Relative expiration date has reached 102256 unique_id port 102256 bytes_out 0 102256 bytes_in 0 102256 station_ip 78.39.28.226 102256 port 15729776 102256 nas_port_type Virtual 102262 username abbasaskari 102262 mac 102262 bytes_out 0 102262 bytes_in 0 102262 station_ip 83.122.43.166 102262 port 15 102262 unique_id port 102262 remote_ip 10.8.1.58 102272 username aminvpn 102272 unique_id port 102272 terminate_cause Lost-Carrier 102240 port 15729773 102240 nas_port_type Virtual 102241 username forozande 102241 mac 102241 bytes_out 192403 102241 bytes_in 1179661 102241 station_ip 83.122.104.60 102241 port 15 102241 unique_id port 102241 remote_ip 10.8.1.62 102242 username khalili 102242 kill_reason Another user logged on this global unique id 102242 mac 102242 bytes_out 0 102242 bytes_in 0 102242 station_ip 5.120.135.235 102242 port 27 102242 unique_id port 102246 username askari 102246 mac 102246 bytes_out 0 102246 bytes_in 0 102246 station_ip 5.119.193.152 102246 port 31 102246 unique_id port 102246 remote_ip 10.8.0.38 102248 username abbasaskari 102248 mac 102248 bytes_out 0 102248 bytes_in 0 102248 station_ip 83.122.43.166 102248 port 32 102248 unique_id port 102248 remote_ip 10.8.0.94 102250 username asadi 102250 mac 102250 bytes_out 367554 102250 bytes_in 155629 102250 station_ip 83.122.43.117 102250 port 38 102250 unique_id port 102250 remote_ip 10.8.0.50 102258 username mammad 102258 kill_reason Relative expiration date has reached 102258 unique_id port 102258 bytes_out 0 102258 bytes_in 0 102258 station_ip 78.39.28.226 102258 port 15729778 102258 nas_port_type Virtual 102259 username amir 102259 mac 102259 bytes_out 938470 102259 bytes_in 6982085 102259 station_ip 46.225.215.10 102259 port 38 102259 unique_id port 102259 remote_ip 10.8.0.54 102260 username abbasaskari 102260 mac 102260 bytes_out 0 102260 bytes_in 0 102260 station_ip 83.122.43.166 102260 port 15 102260 unique_id port 102260 remote_ip 10.8.1.58 102261 username aminvpn 102261 unique_id port 102261 terminate_cause Lost-Carrier 102261 bytes_out 203091 102261 bytes_in 799164 102261 station_ip 31.57.128.199 102261 port 15729779 102261 nas_port_type Virtual 102261 remote_ip 5.5.5.233 102264 username amir 102264 mac 102264 bytes_out 78440 102264 bytes_in 436647 102264 station_ip 46.225.215.10 102264 port 32 102264 unique_id port 102264 remote_ip 10.8.0.54 102266 username abbasaskari 102266 mac 102266 bytes_out 0 102266 bytes_in 0 102266 station_ip 83.122.43.166 102266 port 15 102266 unique_id port 102266 remote_ip 10.8.1.58 102270 username amir 102270 mac 102270 bytes_out 0 102270 bytes_in 0 102270 station_ip 46.225.215.10 102270 port 31 102270 unique_id port 102270 remote_ip 10.8.0.54 102279 username abbasaskari 102279 mac 102279 bytes_out 0 102279 bytes_in 0 102279 station_ip 83.122.73.6 102279 port 31 102279 unique_id port 102279 remote_ip 10.8.0.94 102287 username bcboard 102287 unique_id port 102287 terminate_cause Lost-Carrier 102287 bytes_out 307346 102287 bytes_in 1057846 102287 station_ip 37.129.66.248 102287 port 15729782 102287 nas_port_type Virtual 102287 remote_ip 5.5.5.211 102288 username mohammadmahdi 102288 kill_reason Another user logged on this global unique id 102288 mac 102288 bytes_out 0 102288 bytes_in 0 102288 station_ip 5.120.50.235 102288 port 37 102288 unique_id port 102289 username forozande 102289 mac 102289 bytes_out 146383 102289 bytes_in 1381827 102289 station_ip 37.129.13.51 102289 port 15 102289 unique_id port 102289 remote_ip 10.8.1.62 102290 username mohammadmahdi 102290 kill_reason Another user logged on this global unique id 102290 mac 102290 bytes_out 0 102290 bytes_in 0 102290 station_ip 5.120.50.235 102290 port 37 102290 unique_id port 102293 username musa 102293 kill_reason Another user logged on this global unique id 102293 mac 102293 bytes_out 0 102293 bytes_in 0 102293 station_ip 83.122.214.157 102293 port 35 102293 unique_id port 102294 username amir 102294 mac 102294 bytes_out 0 102267 unique_id port 102267 remote_ip 10.8.0.38 102268 username askari 102268 mac 102268 bytes_out 0 102268 bytes_in 0 102268 station_ip 5.119.193.152 102268 port 31 102268 unique_id port 102268 remote_ip 10.8.0.38 102269 username askari 102269 mac 102269 bytes_out 0 102269 bytes_in 0 102269 station_ip 5.120.37.254 102269 port 32 102269 unique_id port 102269 remote_ip 10.8.0.38 102271 username aminvpn 102271 mac 102271 bytes_out 2548472 102271 bytes_in 19724022 102271 station_ip 113.203.93.32 102271 port 33 102271 unique_id port 102271 remote_ip 10.8.0.6 102273 username askari 102273 mac 102273 bytes_out 1840101 102273 bytes_in 25868209 102273 station_ip 5.119.202.50 102273 port 40 102273 unique_id port 102273 remote_ip 10.8.0.38 102275 username amir 102275 mac 102275 bytes_out 61868 102275 bytes_in 544071 102275 station_ip 46.225.215.10 102275 port 31 102275 unique_id port 102275 remote_ip 10.8.0.54 102281 username musa 102281 kill_reason Another user logged on this global unique id 102281 mac 102281 bytes_out 0 102281 bytes_in 0 102281 station_ip 83.122.214.157 102281 port 35 102281 unique_id port 102281 remote_ip 10.8.0.106 102282 username forozande 102282 mac 102282 bytes_out 0 102282 bytes_in 0 102282 station_ip 83.123.204.145 102282 port 15 102282 unique_id port 102282 remote_ip 10.8.1.62 102284 username forozande 102284 mac 102284 bytes_out 428174 102284 bytes_in 3618013 102284 station_ip 113.203.26.31 102284 port 15 102284 unique_id port 102284 remote_ip 10.8.1.62 102285 username asadi 102285 mac 102285 bytes_out 0 102285 bytes_in 0 102285 station_ip 83.122.43.117 102285 port 38 102285 unique_id port 102285 remote_ip 10.8.0.50 102286 username forozande 102286 mac 102286 bytes_out 129893 102286 bytes_in 1098854 102286 station_ip 113.203.26.31 102286 port 15 102286 unique_id port 102286 remote_ip 10.8.1.62 102291 username amir 102291 mac 102291 bytes_out 4259384 102291 bytes_in 37540567 102291 station_ip 46.225.215.10 102291 port 31 102291 unique_id port 102291 remote_ip 10.8.0.54 102292 username alipour 102292 kill_reason Another user logged on this global unique id 102292 mac 102292 bytes_out 0 102292 bytes_in 0 102292 station_ip 37.129.213.111 102292 port 34 102292 unique_id port 102292 remote_ip 10.8.0.70 102303 username amir 102303 mac 102303 bytes_out 1526889 102303 bytes_in 20181278 102303 station_ip 46.225.215.10 102303 port 32 102303 unique_id port 102303 remote_ip 10.8.0.54 102305 username musa 102305 kill_reason Another user logged on this global unique id 102305 mac 102305 bytes_out 0 102305 bytes_in 0 102305 station_ip 83.122.214.157 102305 port 31 102305 unique_id port 102311 username musa 102311 kill_reason Another user logged on this global unique id 102311 mac 102311 bytes_out 0 102311 bytes_in 0 102311 station_ip 83.122.214.157 102311 port 31 102311 unique_id port 102313 username amir 102313 mac 102313 bytes_out 0 102313 bytes_in 0 102313 station_ip 46.225.215.10 102313 port 32 102313 unique_id port 102313 remote_ip 10.8.0.54 102314 username mohammadmahdi 102314 mac 102314 bytes_out 0 102314 bytes_in 0 102314 station_ip 5.120.50.235 102314 port 37 102314 unique_id port 102316 username forozande 102316 mac 102316 bytes_out 0 102316 bytes_in 0 102316 station_ip 37.129.124.210 102316 port 15 102316 unique_id port 102316 remote_ip 10.8.1.62 102318 username amir 102318 mac 102318 bytes_out 1636 102318 bytes_in 4930 102318 station_ip 46.225.215.10 102318 port 32 102318 unique_id port 102272 bytes_out 369841 102272 bytes_in 3474943 102272 station_ip 31.57.128.199 102272 port 15729781 102272 nas_port_type Virtual 102272 remote_ip 5.5.5.210 102274 username abbasaskari 102274 mac 102274 bytes_out 12809 102274 bytes_in 33433 102274 station_ip 83.122.43.166 102274 port 31 102274 unique_id port 102274 remote_ip 10.8.0.94 102276 username mehdizare 102276 kill_reason Another user logged on this global unique id 102276 mac 102276 bytes_out 0 102276 bytes_in 0 102276 station_ip 5.120.163.85 102276 port 36 102276 unique_id port 102276 remote_ip 10.8.0.22 102277 username amir 102277 mac 102277 bytes_out 0 102277 bytes_in 0 102277 station_ip 46.225.215.10 102277 port 31 102277 unique_id port 102277 remote_ip 10.8.0.54 102278 username alireza 102278 kill_reason Maximum check online fails reached 102278 unique_id port 102278 bytes_out 489942 102278 bytes_in 2806228 102278 station_ip 194.15.99.84 102278 port 15729774 102278 nas_port_type Virtual 102278 remote_ip 5.5.5.255 102280 username mehdizare 102280 kill_reason Another user logged on this global unique id 102280 mac 102280 bytes_out 0 102280 bytes_in 0 102280 station_ip 5.120.163.85 102280 port 36 102280 unique_id port 102283 username mohammadmahdi 102283 kill_reason Another user logged on this global unique id 102283 mac 102283 bytes_out 0 102283 bytes_in 0 102283 station_ip 5.120.50.235 102283 port 37 102283 unique_id port 102295 username mirzaei 102295 kill_reason Another user logged on this global unique id 102295 mac 102295 bytes_out 0 102295 bytes_in 0 102295 station_ip 5.119.19.151 102295 port 30 102295 unique_id port 102299 username amir 102299 mac 102299 bytes_out 84350 102299 bytes_in 443053 102299 station_ip 46.225.215.10 102299 port 32 102299 unique_id port 102299 remote_ip 10.8.0.54 102300 username musa 102300 kill_reason Another user logged on this global unique id 102300 mac 102300 bytes_out 0 102300 bytes_in 0 102300 station_ip 83.122.214.157 102300 port 31 102300 unique_id port 102300 remote_ip 10.8.0.106 102301 username alireza1 102301 unique_id port 102301 terminate_cause Lost-Carrier 102301 bytes_out 2843165 102301 bytes_in 24774060 102301 station_ip 5.120.64.248 102301 port 15729775 102301 nas_port_type Virtual 102301 remote_ip 5.5.5.215 102302 username mirzaei 102302 kill_reason Another user logged on this global unique id 102302 mac 102302 bytes_out 0 102302 bytes_in 0 102302 station_ip 5.119.19.151 102302 port 30 102302 unique_id port 102304 username amir 102304 mac 102304 bytes_out 0 102304 bytes_in 0 102304 station_ip 46.225.215.10 102304 port 32 102304 unique_id port 102304 remote_ip 10.8.0.54 102307 username amir 102307 mac 102307 bytes_out 0 102307 bytes_in 0 102307 station_ip 46.225.215.10 102307 port 16 102307 unique_id port 102307 remote_ip 10.8.1.34 102312 username amir 102312 mac 102312 bytes_out 0 102312 bytes_in 0 102312 station_ip 46.225.215.10 102312 port 32 102312 unique_id port 102312 remote_ip 10.8.0.54 102319 username amir 102319 mac 102319 bytes_out 0 102319 bytes_in 0 102319 station_ip 46.225.215.10 102319 port 32 102319 unique_id port 102319 remote_ip 10.8.0.54 102322 username forozande 102322 mac 102322 bytes_out 0 102322 bytes_in 0 102322 station_ip 83.122.212.89 102322 port 15 102322 unique_id port 102322 remote_ip 10.8.1.62 102324 username forozande 102324 mac 102324 bytes_out 0 102324 bytes_in 0 102324 station_ip 83.122.212.89 102324 port 15 102324 unique_id port 102324 remote_ip 10.8.1.62 102327 username abbasaskari 102327 mac 102327 bytes_out 68280 102327 bytes_in 41030 102294 bytes_in 0 102294 station_ip 46.225.215.10 102294 port 31 102294 unique_id port 102294 remote_ip 10.8.0.54 102296 username musa 102296 mac 102296 bytes_out 0 102296 bytes_in 0 102296 station_ip 83.122.214.157 102296 port 35 102296 unique_id port 102297 username mahyaarabpour 102297 mac 102297 bytes_out 2400625 102297 bytes_in 35058978 102297 station_ip 5.119.41.181 102297 port 32 102297 unique_id port 102297 remote_ip 10.8.0.82 102298 username asadi 102298 unique_id port 102298 terminate_cause User-Request 102298 bytes_out 7004 102298 bytes_in 12579 102298 station_ip 83.122.43.117 102298 port 15729783 102298 nas_port_type Virtual 102298 remote_ip 5.5.5.222 102306 username amir 102306 mac 102306 bytes_out 0 102306 bytes_in 0 102306 station_ip 46.225.215.10 102306 port 32 102306 unique_id port 102306 remote_ip 10.8.0.54 102308 username abbasaskari 102308 mac 102308 bytes_out 65868 102308 bytes_in 56289 102308 station_ip 83.122.92.242 102308 port 32 102308 unique_id port 102308 remote_ip 10.8.0.94 102309 username amir 102309 mac 102309 bytes_out 0 102309 bytes_in 0 102309 station_ip 46.225.215.10 102309 port 32 102309 unique_id port 102309 remote_ip 10.8.0.54 102310 username amir 102310 mac 102310 bytes_out 40429 102310 bytes_in 158419 102310 station_ip 46.225.215.10 102310 port 32 102310 unique_id port 102310 remote_ip 10.8.0.54 102315 username amir 102315 mac 102315 bytes_out 0 102315 bytes_in 0 102315 station_ip 46.225.215.10 102315 port 32 102315 unique_id port 102315 remote_ip 10.8.0.54 102317 username amir 102317 mac 102317 bytes_out 188275 102317 bytes_in 498910 102317 station_ip 46.225.215.10 102317 port 32 102317 unique_id port 102317 remote_ip 10.8.0.54 102320 username musa 102320 kill_reason Another user logged on this global unique id 102320 mac 102320 bytes_out 0 102320 bytes_in 0 102320 station_ip 83.122.214.157 102320 port 31 102320 unique_id port 102323 username amir 102323 mac 102323 bytes_out 0 102323 bytes_in 0 102323 station_ip 46.225.215.10 102323 port 32 102323 unique_id port 102323 remote_ip 10.8.0.54 102325 username amir 102325 mac 102325 bytes_out 0 102325 bytes_in 0 102325 station_ip 46.225.215.10 102325 port 16 102325 unique_id port 102325 remote_ip 10.8.1.34 102326 username amir 102326 mac 102326 bytes_out 0 102326 bytes_in 0 102326 station_ip 46.225.215.10 102326 port 15 102326 unique_id port 102326 remote_ip 10.8.1.34 102328 username abbasaskari 102328 mac 102328 bytes_out 0 102328 bytes_in 0 102328 station_ip 83.122.92.242 102328 port 32 102328 unique_id port 102328 remote_ip 10.8.0.94 102330 username abbasaskari 102330 mac 102330 bytes_out 1917 102330 bytes_in 5062 102330 station_ip 83.122.92.242 102330 port 33 102330 unique_id port 102330 remote_ip 10.8.0.94 102332 username musa 102332 kill_reason Another user logged on this global unique id 102332 mac 102332 bytes_out 0 102332 bytes_in 0 102332 station_ip 83.122.214.157 102332 port 31 102332 unique_id port 102333 username aminvpn 102333 unique_id port 102333 terminate_cause Lost-Carrier 102333 bytes_out 9188450 102333 bytes_in 296359066 102333 station_ip 31.57.128.199 102333 port 15729784 102333 nas_port_type Virtual 102333 remote_ip 5.5.5.254 102334 username amir 102334 mac 102334 bytes_out 0 102334 bytes_in 0 102334 station_ip 46.225.215.10 102334 port 15 102334 unique_id port 102334 remote_ip 10.8.1.34 102340 username amir 102340 mac 102340 bytes_out 0 102340 bytes_in 0 102318 remote_ip 10.8.0.54 102321 username amir 102321 mac 102321 bytes_out 29826 102321 bytes_in 126989 102321 station_ip 46.225.215.10 102321 port 32 102321 unique_id port 102321 remote_ip 10.8.0.54 102329 username amir 102329 mac 102329 bytes_out 0 102329 bytes_in 0 102329 station_ip 46.225.215.10 102329 port 15 102329 unique_id port 102329 remote_ip 10.8.1.34 102335 username mirzaei 102335 kill_reason Another user logged on this global unique id 102335 mac 102335 bytes_out 0 102335 bytes_in 0 102335 station_ip 5.119.19.151 102335 port 30 102335 unique_id port 102337 username amir 102337 mac 102337 bytes_out 0 102337 bytes_in 0 102337 station_ip 46.225.215.10 102337 port 32 102337 unique_id port 102337 remote_ip 10.8.0.54 102338 username amir 102338 mac 102338 bytes_out 0 102338 bytes_in 0 102338 station_ip 46.225.215.10 102338 port 32 102338 unique_id port 102338 remote_ip 10.8.0.54 102339 username amir 102339 mac 102339 bytes_out 0 102339 bytes_in 0 102339 station_ip 46.225.215.10 102339 port 32 102339 unique_id port 102339 remote_ip 10.8.0.54 102344 username musa 102344 kill_reason Another user logged on this global unique id 102344 mac 102344 bytes_out 0 102344 bytes_in 0 102344 station_ip 83.122.214.157 102344 port 31 102344 unique_id port 102346 username amir 102346 mac 102346 bytes_out 26263 102346 bytes_in 120746 102346 station_ip 46.225.215.10 102346 port 15 102346 unique_id port 102346 remote_ip 10.8.1.34 102347 username amir 102347 mac 102347 bytes_out 0 102347 bytes_in 0 102347 station_ip 46.225.215.10 102347 port 15 102347 unique_id port 102347 remote_ip 10.8.1.34 102349 username amir 102349 mac 102349 bytes_out 89307 102349 bytes_in 117005 102349 station_ip 46.225.215.10 102349 port 15 102349 unique_id port 102349 remote_ip 10.8.1.34 102350 username amir 102350 mac 102350 bytes_out 0 102350 bytes_in 0 102350 station_ip 46.225.215.10 102350 port 32 102350 unique_id port 102350 remote_ip 10.8.0.54 102356 username amir 102356 mac 102356 bytes_out 0 102356 bytes_in 0 102356 station_ip 46.225.215.10 102356 port 32 102356 unique_id port 102356 remote_ip 10.8.0.54 102357 username amir 102357 mac 102357 bytes_out 0 102357 bytes_in 0 102357 station_ip 46.225.215.10 102357 port 32 102357 unique_id port 102357 remote_ip 10.8.0.54 102358 username amir 102358 mac 102358 bytes_out 0 102358 bytes_in 0 102358 station_ip 46.225.215.10 102358 port 32 102358 unique_id port 102358 remote_ip 10.8.0.54 102359 username amir 102359 mac 102359 bytes_out 0 102359 bytes_in 0 102359 station_ip 46.225.215.10 102359 port 32 102359 unique_id port 102359 remote_ip 10.8.0.54 102360 username amir 102360 mac 102360 bytes_out 0 102360 bytes_in 0 102360 station_ip 46.225.215.10 102360 port 32 102360 unique_id port 102360 remote_ip 10.8.0.54 102369 username amir 102369 mac 102369 bytes_out 36059 102369 bytes_in 40961 102369 station_ip 46.225.215.10 102369 port 16 102369 unique_id port 102369 remote_ip 10.8.1.34 102370 username musa 102370 mac 102370 bytes_out 0 102370 bytes_in 0 102370 station_ip 83.122.214.157 102370 port 31 102370 unique_id port 102374 username abbasaskari 102374 mac 102374 bytes_out 0 102374 bytes_in 0 102374 station_ip 113.203.11.5 102374 port 38 102374 unique_id port 102374 remote_ip 10.8.0.94 102376 username abbasaskari 102376 mac 102376 bytes_out 0 102376 bytes_in 0 102376 station_ip 113.203.11.5 102327 station_ip 83.122.92.242 102327 port 33 102327 unique_id port 102327 remote_ip 10.8.0.94 102331 username amir 102331 mac 102331 bytes_out 0 102331 bytes_in 0 102331 station_ip 46.225.215.10 102331 port 15 102331 unique_id port 102331 remote_ip 10.8.1.34 102336 username forozande 102336 mac 102336 bytes_out 0 102336 bytes_in 0 102336 station_ip 83.122.8.204 102336 port 33 102336 unique_id port 102336 remote_ip 10.8.0.74 102341 username amir 102341 mac 102341 bytes_out 0 102341 bytes_in 0 102341 station_ip 46.225.215.10 102341 port 32 102341 unique_id port 102341 remote_ip 10.8.0.54 102343 username madadi2 102343 mac 102343 bytes_out 0 102343 bytes_in 0 102343 station_ip 5.119.174.146 102343 port 39 102343 unique_id port 102343 remote_ip 10.8.0.26 102351 username musa 102351 kill_reason Another user logged on this global unique id 102351 mac 102351 bytes_out 0 102351 bytes_in 0 102351 station_ip 83.122.214.157 102351 port 31 102351 unique_id port 102353 username aminvpn 102353 mac 102353 bytes_out 0 102353 bytes_in 0 102353 station_ip 83.122.125.193 102353 port 35 102353 unique_id port 102353 remote_ip 10.8.0.6 102354 username amir 102354 mac 102354 bytes_out 0 102354 bytes_in 0 102354 station_ip 46.225.215.10 102354 port 32 102354 unique_id port 102354 remote_ip 10.8.0.54 102361 username amir 102361 mac 102361 bytes_out 0 102361 bytes_in 0 102361 station_ip 46.225.215.10 102361 port 32 102361 unique_id port 102361 remote_ip 10.8.0.54 102362 username amir 102362 mac 102362 bytes_out 0 102362 bytes_in 0 102362 station_ip 46.225.215.10 102362 port 32 102362 unique_id port 102362 remote_ip 10.8.0.54 102364 username alihosseini 102364 mac 102364 bytes_out 0 102364 bytes_in 0 102364 station_ip 5.120.32.26 102364 port 33 102364 unique_id port 102364 remote_ip 10.8.0.14 102367 username amir 102367 kill_reason Maximum check online fails reached 102367 mac 102367 bytes_out 0 102367 bytes_in 0 102367 station_ip 46.225.215.10 102367 port 32 102367 unique_id port 102371 username abbasaskari 102371 mac 102371 bytes_out 0 102371 bytes_in 0 102371 station_ip 113.203.11.5 102371 port 38 102371 unique_id port 102371 remote_ip 10.8.0.94 102372 username abbasaskari 102372 mac 102372 bytes_out 0 102372 bytes_in 0 102372 station_ip 113.203.11.5 102372 port 38 102372 unique_id port 102372 remote_ip 10.8.0.94 102375 username abbasaskari 102375 mac 102375 bytes_out 0 102375 bytes_in 0 102375 station_ip 113.203.11.5 102375 port 38 102375 unique_id port 102375 remote_ip 10.8.0.94 102382 username amir 102382 mac 102382 bytes_out 0 102382 bytes_in 0 102382 station_ip 46.225.215.10 102382 port 38 102382 unique_id port 102382 remote_ip 10.8.0.54 102385 username alihosseini 102385 mac 102385 bytes_out 0 102385 bytes_in 0 102385 station_ip 5.120.32.26 102385 port 16 102385 unique_id port 102385 remote_ip 10.8.1.6 102387 username amir 102387 mac 102387 bytes_out 0 102387 bytes_in 0 102387 station_ip 46.225.215.10 102387 port 31 102387 unique_id port 102387 remote_ip 10.8.0.54 102388 username aminvpn 102388 mac 102388 bytes_out 157411 102388 bytes_in 151091 102388 station_ip 83.122.125.193 102388 port 15 102388 unique_id port 102388 remote_ip 10.8.1.26 102392 username forozande 102392 mac 102392 bytes_out 202405 102392 bytes_in 2596496 102392 station_ip 83.123.217.28 102392 port 33 102392 unique_id port 102392 remote_ip 10.8.0.74 102396 username ahmadi 102340 station_ip 46.225.215.10 102340 port 32 102340 unique_id port 102340 remote_ip 10.8.0.54 102342 username amir 102342 mac 102342 bytes_out 0 102342 bytes_in 0 102342 station_ip 46.225.215.10 102342 port 32 102342 unique_id port 102342 remote_ip 10.8.0.54 102345 username amir 102345 mac 102345 bytes_out 0 102345 bytes_in 0 102345 station_ip 46.225.215.10 102345 port 15 102345 unique_id port 102345 remote_ip 10.8.1.34 102348 username forozande 102348 mac 102348 bytes_out 0 102348 bytes_in 0 102348 station_ip 37.129.21.110 102348 port 32 102348 unique_id port 102348 remote_ip 10.8.0.74 102352 username amir 102352 mac 102352 bytes_out 25362 102352 bytes_in 94097 102352 station_ip 46.225.215.10 102352 port 32 102352 unique_id port 102352 remote_ip 10.8.0.54 102355 username alirr 102355 unique_id port 102355 terminate_cause Lost-Carrier 102355 bytes_out 904449 102355 bytes_in 10822753 102355 station_ip 5.120.161.215 102355 port 15729785 102355 nas_port_type Virtual 102355 remote_ip 5.5.5.46 102363 username alihosseini 102363 mac 102363 bytes_out 0 102363 bytes_in 0 102363 station_ip 5.120.32.26 102363 port 33 102363 unique_id port 102363 remote_ip 10.8.0.14 102365 username amir 102365 mac 102365 bytes_out 0 102365 bytes_in 0 102365 station_ip 46.225.215.10 102365 port 16 102365 unique_id port 102365 remote_ip 10.8.1.34 102366 username amir 102366 mac 102366 bytes_out 25054 102366 bytes_in 66244 102366 station_ip 46.225.215.10 102366 port 16 102366 unique_id port 102366 remote_ip 10.8.1.34 102368 username amir 102368 mac 102368 bytes_out 0 102368 bytes_in 0 102368 station_ip 46.225.215.10 102368 port 16 102368 unique_id port 102368 remote_ip 10.8.1.34 102373 username amir 102373 mac 102373 bytes_out 0 102373 bytes_in 0 102373 station_ip 46.225.215.10 102373 port 33 102373 unique_id port 102373 remote_ip 10.8.0.54 102377 username mehdizare 102377 mac 102377 bytes_out 0 102377 bytes_in 0 102377 station_ip 5.120.163.85 102377 port 36 102377 unique_id port 102379 username forozande 102379 mac 102379 bytes_out 0 102379 bytes_in 0 102379 station_ip 37.129.108.31 102379 port 37 102379 unique_id port 102379 remote_ip 10.8.0.74 102381 username amir 102381 mac 102381 bytes_out 748841 102381 bytes_in 3994160 102381 station_ip 46.225.215.10 102381 port 38 102381 unique_id port 102381 remote_ip 10.8.0.54 102386 username forozande 102386 mac 102386 bytes_out 1036189 102386 bytes_in 12698109 102386 station_ip 83.123.50.24 102386 port 37 102386 unique_id port 102386 remote_ip 10.8.0.74 102389 username abbasaskari 102389 mac 102389 bytes_out 0 102389 bytes_in 0 102389 station_ip 113.203.11.5 102389 port 16 102389 unique_id port 102389 remote_ip 10.8.1.58 102391 username amir 102391 mac 102391 bytes_out 485873 102391 bytes_in 3349059 102391 station_ip 46.225.215.10 102391 port 37 102391 unique_id port 102391 remote_ip 10.8.0.54 102393 username amir 102393 mac 102393 bytes_out 29580 102393 bytes_in 138541 102393 station_ip 46.225.215.10 102393 port 37 102393 unique_id port 102393 remote_ip 10.8.0.54 102400 username amir 102400 mac 102400 bytes_out 224392 102400 bytes_in 802647 102400 station_ip 46.225.215.10 102400 port 33 102400 unique_id port 102400 remote_ip 10.8.0.54 102403 username amir 102403 mac 102403 bytes_out 42099 102403 bytes_in 195547 102403 station_ip 46.225.215.10 102403 port 33 102403 unique_id port 102403 remote_ip 10.8.0.54 102376 port 38 102376 unique_id port 102376 remote_ip 10.8.0.94 102378 username ahmadipour 102378 unique_id port 102378 terminate_cause User-Request 102378 bytes_out 500619 102378 bytes_in 11435461 102378 station_ip 83.122.131.127 102378 port 15729786 102378 nas_port_type Virtual 102378 remote_ip 5.5.5.204 102380 username alipour 102380 kill_reason Another user logged on this global unique id 102380 mac 102380 bytes_out 0 102380 bytes_in 0 102380 station_ip 37.129.213.111 102380 port 34 102380 unique_id port 102383 username alihosseini 102383 mac 102383 bytes_out 2091727 102383 bytes_in 29650053 102383 station_ip 5.120.32.26 102383 port 31 102383 unique_id port 102383 remote_ip 10.8.0.14 102384 username abbasaskari 102384 mac 102384 bytes_out 9027 102384 bytes_in 31230 102384 station_ip 113.203.11.5 102384 port 38 102384 unique_id port 102384 remote_ip 10.8.0.94 102390 username mohammadmahdi 102390 mac 102390 bytes_out 0 102390 bytes_in 0 102390 station_ip 5.120.50.235 102390 port 33 102390 unique_id port 102390 remote_ip 10.8.0.34 102394 username arman1 102394 kill_reason Another user logged on this global unique id 102394 mac 102394 bytes_out 0 102394 bytes_in 0 102394 station_ip 5.120.119.125 102394 port 31 102394 unique_id port 102394 remote_ip 10.8.0.86 102395 username alihosseini 102395 mac 102395 bytes_out 0 102395 bytes_in 0 102395 station_ip 5.120.32.26 102395 port 17 102395 unique_id port 102395 remote_ip 10.8.1.6 102397 username abbasaskari 102397 mac 102397 bytes_out 0 102397 bytes_in 0 102397 station_ip 113.203.11.5 102397 port 15 102397 unique_id port 102397 remote_ip 10.8.1.58 102405 username mammad 102405 kill_reason Relative expiration date has reached 102405 unique_id port 102405 bytes_out 0 102405 bytes_in 0 102405 station_ip 78.39.28.226 102405 port 15729790 102405 nas_port_type Virtual 102411 username amir 102411 mac 102411 bytes_out 0 102411 bytes_in 0 102411 station_ip 46.225.215.10 102411 port 34 102411 unique_id port 102411 remote_ip 10.8.0.54 102416 username khalili 102416 mac 102416 bytes_out 0 102416 bytes_in 0 102416 station_ip 5.120.135.235 102416 port 27 102416 unique_id port 102419 username mehdizare 102419 mac 102419 bytes_out 102873 102419 bytes_in 203679 102419 station_ip 5.120.163.85 102419 port 36 102419 unique_id port 102419 remote_ip 10.8.0.22 102420 username aminvpn 102420 unique_id port 102420 terminate_cause User-Request 102420 bytes_out 12068361 102420 bytes_in 458520299 102420 station_ip 31.57.129.48 102420 port 15729789 102420 nas_port_type Virtual 102420 remote_ip 5.5.5.208 102422 username alihosseini 102422 mac 102422 bytes_out 0 102422 bytes_in 0 102422 station_ip 5.120.32.26 102422 port 36 102422 unique_id port 102422 remote_ip 10.8.0.14 102423 username alipour 102423 mac 102423 bytes_out 0 102423 bytes_in 0 102423 station_ip 37.129.213.111 102423 port 15 102423 unique_id port 102423 remote_ip 10.8.1.38 102424 username musa 102424 kill_reason Another user logged on this global unique id 102424 mac 102424 bytes_out 0 102424 bytes_in 0 102424 station_ip 83.122.154.176 102424 port 35 102424 unique_id port 102431 username musa 102431 kill_reason Another user logged on this global unique id 102431 mac 102431 bytes_out 0 102431 bytes_in 0 102431 station_ip 83.122.154.176 102431 port 35 102431 unique_id port 102433 username aminvpn 102433 kill_reason Another user logged on this global unique id 102433 mac 102433 bytes_out 0 102433 bytes_in 0 102433 station_ip 5.119.134.249 102433 port 33 102433 unique_id port 102433 remote_ip 10.8.0.6 102439 username mehdizare 102396 unique_id port 102396 terminate_cause User-Request 102396 bytes_out 48022 102396 bytes_in 525539 102396 station_ip 37.129.9.109 102396 port 15729787 102396 nas_port_type Virtual 102396 remote_ip 5.5.5.206 102398 username abbasaskari 102398 mac 102398 bytes_out 17069 102398 bytes_in 42351 102398 station_ip 113.203.11.5 102398 port 15 102398 unique_id port 102398 remote_ip 10.8.1.58 102399 username alipour 102399 mac 102399 bytes_out 0 102399 bytes_in 0 102399 station_ip 37.129.213.111 102399 port 34 102399 unique_id port 102401 username amir 102401 mac 102401 bytes_out 0 102401 bytes_in 0 102401 station_ip 46.225.215.10 102401 port 33 102401 unique_id port 102401 remote_ip 10.8.0.54 102402 username forozande 102402 mac 102402 bytes_out 332832 102402 bytes_in 3991054 102402 station_ip 37.129.3.107 102402 port 37 102402 unique_id port 102402 remote_ip 10.8.0.74 102404 username alihosseini 102404 mac 102404 bytes_out 0 102404 bytes_in 0 102404 station_ip 5.120.32.26 102404 port 16 102404 unique_id port 102404 remote_ip 10.8.1.6 102407 username alihosseini 102407 mac 102407 bytes_out 0 102407 bytes_in 0 102407 station_ip 5.120.32.26 102407 port 33 102407 unique_id port 102407 remote_ip 10.8.0.14 102408 username musa 102408 kill_reason Another user logged on this global unique id 102408 mac 102408 bytes_out 0 102408 bytes_in 0 102408 station_ip 83.122.154.176 102408 port 35 102408 unique_id port 102408 remote_ip 10.8.0.106 102409 username alihosseini 102409 mac 102409 bytes_out 0 102409 bytes_in 0 102409 station_ip 5.120.32.26 102409 port 37 102409 unique_id port 102409 remote_ip 10.8.0.14 102410 username amir 102410 mac 102410 bytes_out 0 102410 bytes_in 0 102410 station_ip 46.225.215.10 102410 port 34 102410 unique_id port 102410 remote_ip 10.8.0.54 102412 username alipour 102412 mac 102412 bytes_out 37862 102412 bytes_in 49413 102412 station_ip 37.129.213.111 102412 port 15 102412 unique_id port 102412 remote_ip 10.8.1.38 102413 username forozande 102413 mac 102413 bytes_out 0 102413 bytes_in 0 102413 station_ip 113.203.11.134 102413 port 33 102413 unique_id port 102413 remote_ip 10.8.0.74 102415 username mammad 102415 kill_reason Relative expiration date has reached 102415 unique_id port 102415 bytes_out 0 102415 bytes_in 0 102415 station_ip 78.39.28.226 102415 port 15729793 102415 nas_port_type Virtual 102417 username musa 102417 kill_reason Another user logged on this global unique id 102417 mac 102417 bytes_out 0 102417 bytes_in 0 102417 station_ip 83.122.154.176 102417 port 35 102417 unique_id port 102425 username mohammadmahdi 102425 kill_reason Another user logged on this global unique id 102425 mac 102425 bytes_out 0 102425 bytes_in 0 102425 station_ip 5.120.50.235 102425 port 34 102425 unique_id port 102425 remote_ip 10.8.0.34 102430 username alihosseini 102430 mac 102430 bytes_out 0 102430 bytes_in 0 102430 station_ip 5.120.32.26 102430 port 34 102430 unique_id port 102430 remote_ip 10.8.0.14 102435 username musa 102435 kill_reason Another user logged on this global unique id 102435 mac 102435 bytes_out 0 102435 bytes_in 0 102435 station_ip 83.122.154.176 102435 port 35 102435 unique_id port 102441 username musa 102441 kill_reason Another user logged on this global unique id 102441 mac 102441 bytes_out 0 102441 bytes_in 0 102441 station_ip 83.122.154.176 102441 port 35 102441 unique_id port 102442 username alirr 102442 unique_id port 102442 terminate_cause Lost-Carrier 102442 bytes_out 2454377 102442 bytes_in 16750331 102442 station_ip 5.120.149.183 102442 port 15729794 102406 username mammad 102406 kill_reason Relative expiration date has reached 102406 unique_id port 102406 bytes_out 0 102406 bytes_in 0 102406 station_ip 78.39.28.226 102406 port 15729791 102406 nas_port_type Virtual 102414 username mamal 102414 unique_id port 102414 terminate_cause User-Request 102414 bytes_out 792917 102414 bytes_in 21613013 102414 station_ip 83.122.23.171 102414 port 15729792 102414 nas_port_type Virtual 102414 remote_ip 5.5.5.255 102418 username alihosseini 102418 mac 102418 bytes_out 0 102418 bytes_in 0 102418 station_ip 5.120.32.26 102418 port 34 102418 unique_id port 102418 remote_ip 10.8.0.14 102421 username alihosseini 102421 mac 102421 bytes_out 0 102421 bytes_in 0 102421 station_ip 5.120.32.26 102421 port 36 102421 unique_id port 102421 remote_ip 10.8.0.14 102426 username alihosseini 102426 mac 102426 bytes_out 0 102426 bytes_in 0 102426 station_ip 5.120.32.26 102426 port 36 102426 unique_id port 102426 remote_ip 10.8.0.14 102427 username mohammadmahdi 102427 mac 102427 bytes_out 0 102427 bytes_in 0 102427 station_ip 5.120.50.235 102427 port 34 102427 unique_id port 102428 username forozande 102428 mac 102428 bytes_out 2217266 102428 bytes_in 23790556 102428 station_ip 83.122.176.19 102428 port 33 102428 unique_id port 102428 remote_ip 10.8.0.74 102429 username alihosseini 102429 mac 102429 bytes_out 2323 102429 bytes_in 4621 102429 station_ip 5.120.32.26 102429 port 33 102429 unique_id port 102429 remote_ip 10.8.0.14 102432 username musa 102432 kill_reason Another user logged on this global unique id 102432 mac 102432 bytes_out 0 102432 bytes_in 0 102432 station_ip 83.122.154.176 102432 port 35 102432 unique_id port 102434 username arman1 102434 kill_reason Another user logged on this global unique id 102434 mac 102434 bytes_out 0 102434 bytes_in 0 102434 station_ip 5.120.119.125 102434 port 31 102434 unique_id port 102436 username mammad 102436 kill_reason Relative expiration date has reached 102436 unique_id port 102436 bytes_out 0 102436 bytes_in 0 102436 station_ip 78.39.28.226 102436 port 15729795 102436 nas_port_type Virtual 102437 username forozande 102437 mac 102437 bytes_out 0 102437 bytes_in 0 102437 station_ip 83.122.159.185 102437 port 34 102437 unique_id port 102437 remote_ip 10.8.0.74 102438 username alipour 102438 mac 102438 bytes_out 632850 102438 bytes_in 4789209 102438 station_ip 37.129.213.111 102438 port 15 102438 unique_id port 102438 remote_ip 10.8.1.38 102443 username abbasaskari 102443 mac 102443 bytes_out 98624 102443 bytes_in 93203 102443 station_ip 83.123.46.229 102443 port 36 102443 unique_id port 102443 remote_ip 10.8.0.94 102444 username mehdizare 102444 mac 102444 bytes_out 0 102444 bytes_in 0 102444 station_ip 5.120.163.85 102444 port 34 102444 unique_id port 102444 remote_ip 10.8.0.22 102449 username arman1 102449 mac 102449 bytes_out 0 102449 bytes_in 0 102449 station_ip 5.120.119.125 102449 port 31 102449 unique_id port 102452 username mehdizare 102452 mac 102452 bytes_out 0 102452 bytes_in 0 102452 station_ip 5.120.163.85 102452 port 27 102452 unique_id port 102454 username musa 102454 kill_reason Another user logged on this global unique id 102454 mac 102454 bytes_out 0 102454 bytes_in 0 102454 station_ip 83.122.154.176 102454 port 35 102454 unique_id port 102456 username mahdiyehalizadeh 102456 mac 102456 bytes_out 816953 102456 bytes_in 11969524 102456 station_ip 83.123.41.241 102456 port 34 102456 unique_id port 102456 remote_ip 10.8.0.42 102457 username arman1 102457 mac 102439 mac 102439 bytes_out 0 102439 bytes_in 0 102439 station_ip 5.120.163.85 102439 port 27 102439 unique_id port 102439 remote_ip 10.8.0.22 102440 username forozande 102440 mac 102440 bytes_out 0 102440 bytes_in 0 102440 station_ip 83.122.73.250 102440 port 27 102440 unique_id port 102440 remote_ip 10.8.0.74 102445 username mehdizare 102445 mac 102445 bytes_out 13966 102445 bytes_in 27980 102445 station_ip 5.120.163.85 102445 port 27 102445 unique_id port 102445 remote_ip 10.8.0.22 102446 username mirzaei 102446 kill_reason Another user logged on this global unique id 102446 mac 102446 bytes_out 0 102446 bytes_in 0 102446 station_ip 5.119.19.151 102446 port 30 102446 unique_id port 102451 username forozande 102451 mac 102451 bytes_out 0 102451 bytes_in 0 102451 station_ip 83.122.169.94 102451 port 34 102451 unique_id port 102451 remote_ip 10.8.0.74 102453 username aminvpn 102453 mac 102453 bytes_out 0 102453 bytes_in 0 102453 station_ip 5.119.134.249 102453 port 33 102453 unique_id port 102455 username mammad 102455 kill_reason Relative expiration date has reached 102455 unique_id port 102455 bytes_out 0 102455 bytes_in 0 102455 station_ip 78.39.28.226 102455 port 15729798 102455 nas_port_type Virtual 102458 username abbasaskari 102458 mac 102458 bytes_out 0 102458 bytes_in 0 102458 station_ip 83.123.46.229 102458 port 36 102458 unique_id port 102458 remote_ip 10.8.0.94 102459 username aminvpn 102459 unique_id port 102459 terminate_cause Lost-Carrier 102459 bytes_out 170806 102459 bytes_in 809921 102459 station_ip 5.119.54.167 102459 port 15729796 102459 nas_port_type Virtual 102459 remote_ip 5.5.5.202 102461 username abbasaskari 102461 mac 102461 bytes_out 9496 102461 bytes_in 24677 102461 station_ip 83.123.46.229 102461 port 31 102461 unique_id port 102461 remote_ip 10.8.0.94 102465 username abbasaskari 102465 mac 102465 bytes_out 0 102465 bytes_in 0 102465 station_ip 83.123.46.229 102465 port 17 102465 unique_id port 102465 remote_ip 10.8.1.58 102473 username arman1 102473 mac 102473 bytes_out 0 102473 bytes_in 0 102473 station_ip 5.119.15.241 102473 port 18 102473 unique_id port 102473 remote_ip 10.8.1.86 102475 username alihosseini 102475 mac 102475 bytes_out 117341 102475 bytes_in 515859 102475 station_ip 5.119.134.244 102475 port 16 102475 unique_id port 102475 remote_ip 10.8.1.6 102477 username mammad 102477 kill_reason Relative expiration date has reached 102477 unique_id port 102477 bytes_out 0 102477 bytes_in 0 102477 station_ip 78.39.28.226 102477 port 15729804 102477 nas_port_type Virtual 102480 username mehdizare 102480 mac 102480 bytes_out 0 102480 bytes_in 0 102480 station_ip 5.120.163.85 102480 port 27 102480 unique_id port 102480 remote_ip 10.8.0.22 102481 username mohammadmahdi 102481 mac 102481 bytes_out 0 102481 bytes_in 0 102481 station_ip 5.120.50.235 102481 port 34 102481 unique_id port 102481 remote_ip 10.8.0.34 102482 username mehdizare 102482 mac 102482 bytes_out 6284 102482 bytes_in 10934 102482 station_ip 5.120.163.85 102482 port 27 102482 unique_id port 102482 remote_ip 10.8.0.22 102486 username forozande 102486 mac 102486 bytes_out 1044751 102486 bytes_in 6848780 102486 station_ip 83.123.57.66 102486 port 33 102486 unique_id port 102486 remote_ip 10.8.0.74 102497 username abbasaskari 102497 mac 102497 bytes_out 0 102497 bytes_in 0 102497 station_ip 83.123.51.253 102497 port 15 102497 unique_id port 102497 remote_ip 10.8.1.58 102503 username bcboard 102503 unique_id port 102503 terminate_cause User-Request 102442 nas_port_type Virtual 102442 remote_ip 5.5.5.200 102447 username musa 102447 kill_reason Another user logged on this global unique id 102447 mac 102447 bytes_out 0 102447 bytes_in 0 102447 station_ip 83.122.154.176 102447 port 35 102447 unique_id port 102448 username alipour 102448 mac 102448 bytes_out 0 102448 bytes_in 0 102448 station_ip 37.129.213.111 102448 port 15 102448 unique_id port 102448 remote_ip 10.8.1.38 102450 username mehdizare 102450 kill_reason Another user logged on this global unique id 102450 mac 102450 bytes_out 0 102450 bytes_in 0 102450 station_ip 5.120.163.85 102450 port 27 102450 unique_id port 102450 remote_ip 10.8.0.22 102460 username mehdizare 102460 mac 102460 bytes_out 0 102460 bytes_in 0 102460 station_ip 5.120.163.85 102460 port 27 102460 unique_id port 102460 remote_ip 10.8.0.22 102463 username abbasaskari 102463 mac 102463 bytes_out 0 102463 bytes_in 0 102463 station_ip 83.123.46.229 102463 port 17 102463 unique_id port 102463 remote_ip 10.8.1.58 102467 username mahdiyehalizadeh 102467 mac 102467 bytes_out 651073 102467 bytes_in 7240392 102467 station_ip 83.123.41.241 102467 port 16 102467 unique_id port 102467 remote_ip 10.8.1.14 102471 username abbasaskari 102471 mac 102471 bytes_out 0 102471 bytes_in 0 102471 station_ip 83.123.46.229 102471 port 17 102471 unique_id port 102471 remote_ip 10.8.1.58 102472 username alireza 102472 unique_id port 102472 terminate_cause User-Request 102472 bytes_out 386711 102472 bytes_in 5541507 102472 station_ip 5.120.84.15 102472 port 15729800 102472 nas_port_type Virtual 102472 remote_ip 5.5.5.254 102476 username mammad 102476 kill_reason Relative expiration date has reached 102476 unique_id port 102476 bytes_out 0 102476 bytes_in 0 102476 station_ip 78.39.28.226 102476 port 15729803 102476 nas_port_type Virtual 102478 username alihosseini 102478 mac 102478 bytes_out 5932 102478 bytes_in 15143 102478 station_ip 5.119.134.244 102478 port 31 102478 unique_id port 102478 remote_ip 10.8.0.14 102479 username madadi2 102479 mac 102479 bytes_out 45968 102479 bytes_in 55672 102479 station_ip 5.119.55.55 102479 port 31 102479 unique_id port 102479 remote_ip 10.8.0.26 102483 username mammad 102483 kill_reason Relative expiration date has reached 102483 unique_id port 102483 bytes_out 0 102483 bytes_in 0 102483 station_ip 37.129.200.73 102483 port 15729806 102483 nas_port_type Virtual 102484 username musa 102484 kill_reason Another user logged on this global unique id 102484 mac 102484 bytes_out 0 102484 bytes_in 0 102484 station_ip 83.122.154.176 102484 port 35 102484 unique_id port 102489 username alihosseini 102489 mac 102489 bytes_out 0 102489 bytes_in 0 102489 station_ip 5.119.134.244 102489 port 36 102489 unique_id port 102489 remote_ip 10.8.0.14 102490 username mohammadmahdi 102490 kill_reason Another user logged on this global unique id 102490 mac 102490 bytes_out 0 102490 bytes_in 0 102490 station_ip 5.120.50.235 102490 port 27 102490 unique_id port 102490 remote_ip 10.8.0.34 102491 username alihosseini 102491 mac 102491 bytes_out 0 102491 bytes_in 0 102491 station_ip 5.119.134.244 102491 port 33 102491 unique_id port 102491 remote_ip 10.8.0.14 102492 username mehdizare 102492 mac 102492 bytes_out 0 102492 bytes_in 0 102492 station_ip 5.120.163.85 102492 port 31 102492 unique_id port 102492 remote_ip 10.8.0.22 102494 username musa 102494 kill_reason Another user logged on this global unique id 102494 mac 102494 bytes_out 0 102494 bytes_in 0 102494 station_ip 83.122.154.176 102494 port 35 102494 unique_id port 102495 username alireza1 102457 bytes_out 0 102457 bytes_in 0 102457 station_ip 5.119.15.241 102457 port 31 102457 unique_id port 102457 remote_ip 10.8.0.86 102462 username abbasaskari 102462 mac 102462 bytes_out 0 102462 bytes_in 0 102462 station_ip 83.123.46.229 102462 port 17 102462 unique_id port 102462 remote_ip 10.8.1.58 102464 username alireza 102464 unique_id port 102464 terminate_cause User-Request 102464 bytes_out 360188 102464 bytes_in 7480416 102464 station_ip 5.120.84.15 102464 port 15729799 102464 nas_port_type Virtual 102464 remote_ip 5.5.5.254 102466 username musa 102466 kill_reason Another user logged on this global unique id 102466 mac 102466 bytes_out 0 102466 bytes_in 0 102466 station_ip 83.122.154.176 102466 port 35 102466 unique_id port 102468 username mehdizare 102468 mac 102468 bytes_out 14291 102468 bytes_in 20299 102468 station_ip 5.120.163.85 102468 port 27 102468 unique_id port 102468 remote_ip 10.8.0.22 102469 username morteza 102469 mac 102469 bytes_out 17623951 102469 bytes_in 5109779 102469 station_ip 37.129.142.91 102469 port 38 102469 unique_id port 102469 remote_ip 10.8.0.90 102470 username abbasaskari 102470 mac 102470 bytes_out 0 102470 bytes_in 0 102470 station_ip 83.123.46.229 102470 port 17 102470 unique_id port 102470 remote_ip 10.8.1.58 102474 username abbasaskari 102474 mac 102474 bytes_out 6720 102474 bytes_in 21787 102474 station_ip 83.123.46.229 102474 port 31 102474 unique_id port 102474 remote_ip 10.8.0.94 102485 username mehdizare 102485 mac 102485 bytes_out 8199 102485 bytes_in 11833 102485 station_ip 5.120.163.85 102485 port 27 102485 unique_id port 102485 remote_ip 10.8.0.22 102487 username alireza 102487 unique_id port 102487 terminate_cause Lost-Carrier 102487 bytes_out 655871 102487 bytes_in 24922588 102487 station_ip 5.120.84.15 102487 port 15729801 102487 nas_port_type Virtual 102487 remote_ip 5.5.5.254 102488 username alireza 102488 kill_reason Maximum check online fails reached 102488 unique_id port 102488 bytes_out 941860 102488 bytes_in 11854948 102488 station_ip 5.120.84.15 102488 port 15729807 102488 nas_port_type Virtual 102488 remote_ip 5.5.5.248 102493 username alipour 102493 mac 102493 bytes_out 0 102493 bytes_in 0 102493 station_ip 37.129.213.111 102493 port 15 102493 unique_id port 102493 remote_ip 10.8.1.38 102502 username forozande 102502 mac 102502 bytes_out 0 102502 bytes_in 0 102502 station_ip 83.122.46.212 102502 port 34 102502 unique_id port 102502 remote_ip 10.8.0.74 102508 username musa 102508 kill_reason Another user logged on this global unique id 102508 mac 102508 bytes_out 0 102508 bytes_in 0 102508 station_ip 83.122.154.176 102508 port 35 102508 unique_id port 102510 username alihosseini 102510 mac 102510 bytes_out 0 102510 bytes_in 0 102510 station_ip 5.119.134.244 102510 port 27 102510 unique_id port 102510 remote_ip 10.8.0.14 102515 username alirezazadeh 102515 kill_reason Maximum number of concurrent logins reached 102515 unique_id port 102515 bytes_out 0 102515 bytes_in 0 102515 station_ip 31.59.36.115 102515 port 15729813 102515 nas_port_type Virtual 102517 username arman1 102517 kill_reason Another user logged on this global unique id 102517 mac 102517 bytes_out 0 102517 bytes_in 0 102517 station_ip 5.119.212.112 102517 port 15 102517 unique_id port 102519 username alirezazadeh 102519 unique_id port 102519 terminate_cause User-Request 102519 bytes_out 455655 102519 bytes_in 708021 102519 station_ip 31.59.36.115 102519 port 15729812 102519 nas_port_type Virtual 102519 remote_ip 5.5.5.198 102521 username houshang 102521 mac 102521 bytes_out 0 102521 bytes_in 0 102495 unique_id port 102495 terminate_cause User-Request 102495 bytes_out 1059868 102495 bytes_in 1425821 102495 station_ip 5.120.64.248 102495 port 15729797 102495 nas_port_type Virtual 102495 remote_ip 5.5.5.255 102496 username mohammadmahdi 102496 mac 102496 bytes_out 0 102496 bytes_in 0 102496 station_ip 5.120.50.235 102496 port 27 102496 unique_id port 102498 username mirzaei 102498 kill_reason Another user logged on this global unique id 102498 mac 102498 bytes_out 0 102498 bytes_in 0 102498 station_ip 5.119.19.151 102498 port 30 102498 unique_id port 102499 username musa 102499 kill_reason Another user logged on this global unique id 102499 mac 102499 bytes_out 0 102499 bytes_in 0 102499 station_ip 83.122.154.176 102499 port 35 102499 unique_id port 102500 username musa 102500 kill_reason Another user logged on this global unique id 102500 mac 102500 bytes_out 0 102500 bytes_in 0 102500 station_ip 83.122.154.176 102500 port 35 102500 unique_id port 102501 username ahmadipour 102501 unique_id port 102501 terminate_cause Lost-Carrier 102501 bytes_out 6686888 102501 bytes_in 141178021 102501 station_ip 83.122.190.39 102501 port 15729802 102501 nas_port_type Virtual 102501 remote_ip 5.5.5.252 102504 username madadi2 102504 mac 102504 bytes_out 0 102504 bytes_in 0 102504 station_ip 5.120.129.136 102504 port 34 102504 unique_id port 102504 remote_ip 10.8.0.26 102505 username minaghorbani 102505 mac 102505 bytes_out 0 102505 bytes_in 0 102505 station_ip 46.225.208.13 102505 port 39 102505 unique_id port 102505 remote_ip 10.8.0.118 102509 username arman1 102509 kill_reason Another user logged on this global unique id 102509 mac 102509 bytes_out 0 102509 bytes_in 0 102509 station_ip 5.119.212.112 102509 port 15 102509 unique_id port 102514 username alireza 102514 unique_id port 102514 terminate_cause User-Request 102514 bytes_out 2257718 102514 bytes_in 51419536 102514 station_ip 5.120.84.15 102514 port 15729808 102514 nas_port_type Virtual 102514 remote_ip 5.5.5.255 102516 username houshang 102516 mac 102516 bytes_out 0 102516 bytes_in 0 102516 station_ip 46.225.208.13 102516 port 27 102516 unique_id port 102516 remote_ip 10.8.0.126 102518 username mehdizare 102518 mac 102518 bytes_out 0 102518 bytes_in 0 102518 station_ip 5.120.163.85 102518 port 33 102518 unique_id port 102518 remote_ip 10.8.0.22 102520 username houshang 102520 mac 102520 bytes_out 0 102520 bytes_in 0 102520 station_ip 46.225.208.13 102520 port 27 102520 unique_id port 102520 remote_ip 10.8.0.126 102524 username aminvpn 102524 unique_id port 102524 terminate_cause User-Request 102524 bytes_out 0 102524 bytes_in 0 102524 station_ip 31.59.36.115 102524 port 15729817 102524 nas_port_type Virtual 102524 remote_ip 5.5.5.253 102527 username alihosseini 102527 mac 102527 bytes_out 0 102527 bytes_in 0 102527 station_ip 5.119.134.244 102527 port 16 102527 unique_id port 102527 remote_ip 10.8.1.6 102528 username malekpoir 102528 mac 102528 bytes_out 0 102528 bytes_in 0 102528 station_ip 46.225.208.13 102528 port 27 102528 unique_id port 102528 remote_ip 10.8.0.130 102530 username aminvpn 102530 mac 102530 bytes_out 16181 102530 bytes_in 34103 102530 station_ip 31.59.36.115 102530 port 36 102530 unique_id port 102530 remote_ip 10.8.0.6 102532 username alireza1 102532 unique_id port 102532 terminate_cause Lost-Carrier 102532 bytes_out 548747 102532 bytes_in 10820231 102532 station_ip 5.120.64.248 102532 port 15729809 102532 nas_port_type Virtual 102532 remote_ip 5.5.5.193 102534 username alihosseini 102534 mac 102534 bytes_out 0 102503 bytes_out 5751523 102503 bytes_in 135992234 102503 station_ip 37.129.149.36 102503 port 15729805 102503 nas_port_type Virtual 102503 remote_ip 5.5.5.250 102506 username arman1 102506 kill_reason Another user logged on this global unique id 102506 mac 102506 bytes_out 0 102506 bytes_in 0 102506 station_ip 5.119.212.112 102506 port 15 102506 unique_id port 102506 remote_ip 10.8.1.86 102507 username mammad 102507 kill_reason Relative expiration date has reached 102507 unique_id port 102507 bytes_out 0 102507 bytes_in 0 102507 station_ip 78.39.28.226 102507 port 15729810 102507 nas_port_type Virtual 102511 username arash 102511 mac 102511 bytes_out 0 102511 bytes_in 0 102511 station_ip 46.225.208.13 102511 port 39 102511 unique_id port 102511 remote_ip 10.8.0.122 102512 username abbasaskari 102512 mac 102512 bytes_out 0 102512 bytes_in 0 102512 station_ip 83.123.51.253 102512 port 36 102512 unique_id port 102512 remote_ip 10.8.0.94 102513 username alihosseini 102513 mac 102513 bytes_out 0 102513 bytes_in 0 102513 station_ip 5.119.134.244 102513 port 27 102513 unique_id port 102513 remote_ip 10.8.0.14 102522 username alireza 102522 unique_id port 102522 terminate_cause User-Request 102522 bytes_out 47684 102522 bytes_in 102579 102522 station_ip 5.120.84.15 102522 port 15729814 102522 nas_port_type Virtual 102522 remote_ip 5.5.5.255 102526 username mahdiyehalizadeh 102526 mac 102526 bytes_out 0 102526 bytes_in 0 102526 station_ip 83.123.41.241 102526 port 34 102526 unique_id port 102526 remote_ip 10.8.0.42 102531 username malekpoir 102531 mac 102531 bytes_out 0 102531 bytes_in 0 102531 station_ip 46.225.208.13 102531 port 34 102531 unique_id port 102531 remote_ip 10.8.0.130 102535 username mehdizare 102535 mac 102535 bytes_out 0 102535 bytes_in 0 102535 station_ip 5.120.163.85 102535 port 33 102535 unique_id port 102535 remote_ip 10.8.0.22 102538 username amir 102538 mac 102538 bytes_out 0 102538 bytes_in 0 102538 station_ip 46.225.209.252 102538 port 34 102538 unique_id port 102538 remote_ip 10.8.0.54 102542 username mirzaei 102542 kill_reason Another user logged on this global unique id 102542 mac 102542 bytes_out 0 102542 bytes_in 0 102542 station_ip 5.119.19.151 102542 port 30 102542 unique_id port 102543 username mammad 102543 kill_reason Relative expiration date has reached 102543 unique_id port 102543 bytes_out 0 102543 bytes_in 0 102543 station_ip 78.39.28.226 102543 port 15729820 102543 nas_port_type Virtual 102544 username alihosseini 102544 mac 102544 bytes_out 0 102544 bytes_in 0 102544 station_ip 5.119.134.244 102544 port 34 102544 unique_id port 102544 remote_ip 10.8.0.14 102547 username alihosseini 102547 mac 102547 bytes_out 0 102547 bytes_in 0 102547 station_ip 5.119.134.244 102547 port 27 102547 unique_id port 102547 remote_ip 10.8.0.14 102550 username amir 102550 mac 102550 bytes_out 0 102550 bytes_in 0 102550 station_ip 46.225.209.252 102550 port 36 102550 unique_id port 102550 remote_ip 10.8.0.54 102552 username abbasaskari 102552 mac 102552 bytes_out 0 102552 bytes_in 0 102552 station_ip 83.123.43.17 102552 port 39 102552 unique_id port 102552 remote_ip 10.8.0.94 102553 username ahmadi 102553 unique_id port 102553 terminate_cause User-Request 102553 bytes_out 133124 102553 bytes_in 1868077 102553 station_ip 37.129.40.1 102553 port 15729821 102553 nas_port_type Virtual 102553 remote_ip 5.5.5.253 102557 username mehdizare 102557 mac 102557 bytes_out 0 102557 bytes_in 0 102557 station_ip 5.120.163.85 102557 port 33 102557 unique_id port 102521 station_ip 46.225.208.13 102521 port 33 102521 unique_id port 102521 remote_ip 10.8.0.126 102523 username abbasaskari 102523 mac 102523 bytes_out 0 102523 bytes_in 0 102523 station_ip 83.123.51.253 102523 port 27 102523 unique_id port 102523 remote_ip 10.8.0.94 102525 username houshang 102525 mac 102525 bytes_out 0 102525 bytes_in 0 102525 station_ip 46.225.208.13 102525 port 27 102525 unique_id port 102525 remote_ip 10.8.0.126 102529 username amir 102529 mac 102529 bytes_out 0 102529 bytes_in 0 102529 station_ip 46.225.209.252 102529 port 27 102529 unique_id port 102529 remote_ip 10.8.0.54 102533 username arman1 102533 kill_reason Another user logged on this global unique id 102533 mac 102533 bytes_out 0 102533 bytes_in 0 102533 station_ip 5.119.212.112 102533 port 15 102533 unique_id port 102536 username mahdiyehalizadeh 102536 mac 102536 bytes_out 0 102536 bytes_in 0 102536 station_ip 83.123.41.241 102536 port 40 102536 unique_id port 102536 remote_ip 10.8.0.42 102539 username alihosseini 102539 mac 102539 bytes_out 0 102539 bytes_in 0 102539 station_ip 5.119.134.244 102539 port 33 102539 unique_id port 102539 remote_ip 10.8.0.14 102540 username farhad1 102540 mac 102540 bytes_out 0 102540 bytes_in 0 102540 station_ip 5.119.211.36 102540 port 38 102540 unique_id port 102540 remote_ip 10.8.0.102 102541 username alihosseini 102541 mac 102541 bytes_out 0 102541 bytes_in 0 102541 station_ip 5.119.134.244 102541 port 34 102541 unique_id port 102541 remote_ip 10.8.0.14 102545 username malekpoir 102545 mac 102545 bytes_out 0 102545 bytes_in 0 102545 station_ip 46.225.208.13 102545 port 27 102545 unique_id port 102545 remote_ip 10.8.0.130 102546 username madadi2 102546 mac 102546 bytes_out 0 102546 bytes_in 0 102546 station_ip 5.119.255.158 102546 port 38 102546 unique_id port 102546 remote_ip 10.8.0.26 102548 username malekpoir 102548 mac 102548 bytes_out 0 102548 bytes_in 0 102548 station_ip 5.120.98.80 102548 port 34 102548 unique_id port 102548 remote_ip 10.8.0.130 102551 username mammad 102551 kill_reason Relative expiration date has reached 102551 unique_id port 102551 bytes_out 0 102551 bytes_in 0 102551 station_ip 78.39.28.226 102551 port 15729822 102551 nas_port_type Virtual 102555 username malekpoir 102555 mac 102555 bytes_out 0 102555 bytes_in 0 102555 station_ip 5.120.98.80 102555 port 27 102555 unique_id port 102555 remote_ip 10.8.0.130 102556 username amir 102556 mac 102556 bytes_out 0 102556 bytes_in 0 102556 station_ip 46.225.209.252 102556 port 27 102556 unique_id port 102556 remote_ip 10.8.0.54 102562 username alipour 102562 mac 102562 bytes_out 3080168 102562 bytes_in 44797588 102562 station_ip 37.129.213.111 102562 port 31 102562 unique_id port 102562 remote_ip 10.8.0.70 102564 username amir 102564 mac 102564 bytes_out 0 102564 bytes_in 0 102564 station_ip 46.225.209.252 102564 port 27 102564 unique_id port 102564 remote_ip 10.8.0.54 102570 username mammad 102570 kill_reason Relative expiration date has reached 102570 unique_id port 102570 bytes_out 0 102570 bytes_in 0 102570 station_ip 78.39.28.226 102570 port 15729824 102570 nas_port_type Virtual 102572 username mammad 102572 kill_reason Relative expiration date has reached 102572 unique_id port 102572 bytes_out 0 102572 bytes_in 0 102572 station_ip 78.39.28.226 102572 port 15729825 102572 nas_port_type Virtual 102577 username musa 102577 kill_reason Another user logged on this global unique id 102577 mac 102577 bytes_out 0 102577 bytes_in 0 102534 bytes_in 0 102534 station_ip 5.119.134.244 102534 port 16 102534 unique_id port 102534 remote_ip 10.8.1.6 102537 username houshang 102537 mac 102537 bytes_out 0 102537 bytes_in 0 102537 station_ip 5.119.182.242 102537 port 39 102537 unique_id port 102537 remote_ip 10.8.0.126 102549 username arman1 102549 mac 102549 bytes_out 0 102549 bytes_in 0 102549 station_ip 5.119.212.112 102549 port 15 102549 unique_id port 102554 username musa 102554 kill_reason Another user logged on this global unique id 102554 mac 102554 bytes_out 0 102554 bytes_in 0 102554 station_ip 83.122.154.176 102554 port 35 102554 unique_id port 102558 username mehdizare 102558 mac 102558 bytes_out 0 102558 bytes_in 0 102558 station_ip 5.120.163.85 102558 port 27 102558 unique_id port 102558 remote_ip 10.8.0.22 102559 username amir 102559 mac 102559 bytes_out 0 102559 bytes_in 0 102559 station_ip 46.225.209.252 102559 port 27 102559 unique_id port 102559 remote_ip 10.8.0.54 102563 username amir 102563 mac 102563 bytes_out 0 102563 bytes_in 0 102563 station_ip 46.225.209.252 102563 port 27 102563 unique_id port 102563 remote_ip 10.8.0.54 102566 username amir 102566 mac 102566 bytes_out 0 102566 bytes_in 0 102566 station_ip 46.225.209.252 102566 port 27 102566 unique_id port 102566 remote_ip 10.8.0.54 102567 username alihosseini 102567 mac 102567 bytes_out 0 102567 bytes_in 0 102567 station_ip 5.119.134.244 102567 port 15 102567 unique_id port 102567 remote_ip 10.8.1.6 102568 username alirezazadeh 102568 unique_id port 102568 terminate_cause Lost-Carrier 102568 bytes_out 576049 102568 bytes_in 992919 102568 station_ip 31.59.36.115 102568 port 15729815 102568 nas_port_type Virtual 102568 remote_ip 5.5.5.254 102571 username alihosseini 102571 mac 102571 bytes_out 0 102571 bytes_in 0 102571 station_ip 5.119.134.244 102571 port 15 102571 unique_id port 102571 remote_ip 10.8.1.6 102573 username mammad 102573 kill_reason Relative expiration date has reached 102573 unique_id port 102573 bytes_out 0 102573 bytes_in 0 102573 station_ip 78.39.28.226 102573 port 15729826 102573 nas_port_type Virtual 102575 username amir 102575 mac 102575 bytes_out 66796 102575 bytes_in 494071 102575 station_ip 46.225.209.252 102575 port 33 102575 unique_id port 102575 remote_ip 10.8.0.54 102576 username mammad 102576 kill_reason Relative expiration date has reached 102576 unique_id port 102576 bytes_out 0 102576 bytes_in 0 102576 station_ip 78.39.28.226 102576 port 15729828 102576 nas_port_type Virtual 102579 username mammad 102579 kill_reason Relative expiration date has reached 102579 unique_id port 102579 bytes_out 0 102579 bytes_in 0 102579 station_ip 78.39.28.226 102579 port 15729830 102579 nas_port_type Virtual 102581 username malekpoir 102581 kill_reason Another user logged on this global unique id 102581 mac 102581 bytes_out 0 102581 bytes_in 0 102581 station_ip 5.120.98.80 102581 port 39 102581 unique_id port 102581 remote_ip 10.8.0.130 102582 username abbasaskari 102582 mac 102582 bytes_out 0 102582 bytes_in 0 102582 station_ip 83.123.125.233 102582 port 27 102582 unique_id port 102582 remote_ip 10.8.0.94 102585 username mehdizare 102585 mac 102585 bytes_out 27606 102585 bytes_in 57368 102585 station_ip 5.120.163.85 102585 port 34 102585 unique_id port 102585 remote_ip 10.8.0.22 102589 username amir 102589 mac 102589 bytes_out 54441 102589 bytes_in 402560 102589 station_ip 46.225.209.252 102589 port 36 102589 unique_id port 102589 remote_ip 10.8.0.54 102591 username malekpoir 102591 mac 102591 bytes_out 143649 102557 remote_ip 10.8.0.22 102560 username alihosseini 102560 mac 102560 bytes_out 705016 102560 bytes_in 5530307 102560 station_ip 5.119.134.244 102560 port 34 102560 unique_id port 102560 remote_ip 10.8.0.14 102561 username morteza 102561 mac 102561 bytes_out 7265202 102561 bytes_in 2761660 102561 station_ip 83.123.189.62 102561 port 36 102561 unique_id port 102561 remote_ip 10.8.0.90 102565 username askari 102565 mac 102565 bytes_out 808480 102565 bytes_in 5087665 102565 station_ip 5.120.37.154 102565 port 38 102565 unique_id port 102565 remote_ip 10.8.0.38 102569 username mehdizare 102569 mac 102569 bytes_out 39175 102569 bytes_in 60908 102569 station_ip 5.120.163.85 102569 port 33 102569 unique_id port 102569 remote_ip 10.8.0.22 102574 username mammad 102574 kill_reason Relative expiration date has reached 102574 unique_id port 102574 bytes_out 0 102574 bytes_in 0 102574 station_ip 78.39.28.226 102574 port 15729827 102574 nas_port_type Virtual 102580 username abbasaskari 102580 mac 102580 bytes_out 118816 102580 bytes_in 205518 102580 station_ip 83.123.125.233 102580 port 27 102580 unique_id port 102580 remote_ip 10.8.0.94 102592 username amir 102592 mac 102592 bytes_out 0 102592 bytes_in 0 102592 station_ip 46.225.209.252 102592 port 38 102592 unique_id port 102592 remote_ip 10.8.0.54 102598 username aminvpn 102598 mac 102598 bytes_out 698070 102598 bytes_in 2541308 102598 station_ip 83.122.147.9 102598 port 31 102598 unique_id port 102598 remote_ip 10.8.0.6 102599 username alihosseini 102599 mac 102599 bytes_out 0 102599 bytes_in 0 102599 station_ip 5.119.134.244 102599 port 15 102599 unique_id port 102599 remote_ip 10.8.1.6 102600 username aminvpn 102600 mac 102600 bytes_out 90370 102600 bytes_in 328289 102600 station_ip 83.122.99.152 102600 port 36 102600 unique_id port 102600 remote_ip 10.8.0.6 102602 username aminvpn 102602 mac 102602 bytes_out 0 102602 bytes_in 0 102602 station_ip 83.122.147.9 102602 port 38 102602 unique_id port 102602 remote_ip 10.8.0.6 102608 username aminvpn 102608 mac 102608 bytes_out 12270 102608 bytes_in 17673 102608 station_ip 83.122.147.9 102608 port 36 102608 unique_id port 102608 remote_ip 10.8.0.6 102610 username aminvpn 102610 mac 102610 bytes_out 2343 102610 bytes_in 4337 102610 station_ip 83.122.99.152 102610 port 38 102610 unique_id port 102610 remote_ip 10.8.0.6 102614 username alihosseini 102614 mac 102614 bytes_out 346761 102614 bytes_in 1909053 102614 station_ip 5.119.150.64 102614 port 15 102614 unique_id port 102614 remote_ip 10.8.1.6 102617 username abbasaskari 102617 mac 102617 bytes_out 11633 102617 bytes_in 30449 102617 station_ip 83.123.51.73 102617 port 18 102617 unique_id port 102617 remote_ip 10.8.1.58 102621 username aminvpn 102621 mac 102621 bytes_out 0 102621 bytes_in 0 102621 station_ip 83.122.99.152 102621 port 34 102621 unique_id port 102621 remote_ip 10.8.0.6 102623 username jamali 102623 kill_reason Maximum check online fails reached 102623 mac 102623 bytes_out 0 102623 bytes_in 0 102623 station_ip 5.119.118.241 102623 port 16 102623 unique_id port 102626 username aminvpn 102626 mac 102626 bytes_out 5756 102626 bytes_in 7795 102626 station_ip 83.122.99.152 102626 port 34 102626 unique_id port 102626 remote_ip 10.8.0.6 102628 username aminvpn 102628 mac 102628 bytes_out 11720 102628 bytes_in 22249 102628 station_ip 83.122.147.9 102628 port 39 102628 unique_id port 102628 remote_ip 10.8.0.6 102630 username malekpoir 102577 station_ip 83.122.154.176 102577 port 35 102577 unique_id port 102578 username mammad 102578 kill_reason Relative expiration date has reached 102578 unique_id port 102578 bytes_out 0 102578 bytes_in 0 102578 station_ip 78.39.28.226 102578 port 15729829 102578 nas_port_type Virtual 102583 username amir 102583 mac 102583 bytes_out 49310 102583 bytes_in 171558 102583 station_ip 46.225.209.252 102583 port 27 102583 unique_id port 102583 remote_ip 10.8.0.54 102584 username jamali 102584 mac 102584 bytes_out 242107 102584 bytes_in 1441251 102584 station_ip 5.119.118.241 102584 port 33 102584 unique_id port 102584 remote_ip 10.8.0.62 102586 username jamali 102586 mac 102586 bytes_out 84691 102586 bytes_in 628523 102586 station_ip 5.119.118.241 102586 port 27 102586 unique_id port 102586 remote_ip 10.8.0.62 102587 username musa 102587 kill_reason Another user logged on this global unique id 102587 mac 102587 bytes_out 0 102587 bytes_in 0 102587 station_ip 83.122.154.176 102587 port 35 102587 unique_id port 102588 username malekpoir 102588 mac 102588 bytes_out 0 102588 bytes_in 0 102588 station_ip 5.120.98.80 102588 port 39 102588 unique_id port 102590 username alireza 102590 unique_id port 102590 terminate_cause User-Request 102590 bytes_out 3702831 102590 bytes_in 71159404 102590 station_ip 5.120.84.15 102590 port 15729832 102590 nas_port_type Virtual 102590 remote_ip 5.5.5.218 102594 username mehdizare 102594 mac 102594 bytes_out 0 102594 bytes_in 0 102594 station_ip 5.120.163.85 102594 port 33 102594 unique_id port 102594 remote_ip 10.8.0.22 102595 username askari 102595 mac 102595 bytes_out 136656 102595 bytes_in 252985 102595 station_ip 5.120.37.154 102595 port 16 102595 unique_id port 102595 remote_ip 10.8.1.30 102603 username aminvpn 102603 unique_id port 102603 terminate_cause User-Request 102603 bytes_out 556384 102603 bytes_in 8867448 102603 station_ip 31.57.129.48 102603 port 15729833 102603 nas_port_type Virtual 102603 remote_ip 5.5.5.255 102604 username abbasaskari 102604 mac 102604 bytes_out 0 102604 bytes_in 0 102604 station_ip 83.123.51.73 102604 port 16 102604 unique_id port 102604 remote_ip 10.8.1.58 102606 username jamali 102606 mac 102606 bytes_out 14991 102606 bytes_in 18281 102606 station_ip 5.119.118.241 102606 port 17 102606 unique_id port 102606 remote_ip 10.8.1.54 102609 username jamali 102609 kill_reason Maximum check online fails reached 102609 mac 102609 bytes_out 0 102609 bytes_in 0 102609 station_ip 5.119.118.241 102609 port 17 102609 unique_id port 102613 username aminvpn 102613 mac 102613 bytes_out 12819 102613 bytes_in 23982 102613 station_ip 83.122.147.9 102613 port 36 102613 unique_id port 102613 remote_ip 10.8.0.6 102615 username aminvpn 102615 mac 102615 bytes_out 0 102615 bytes_in 0 102615 station_ip 83.122.99.152 102615 port 34 102615 unique_id port 102615 remote_ip 10.8.0.6 102618 username jamali 102618 mac 102618 bytes_out 0 102618 bytes_in 0 102618 station_ip 5.119.118.241 102618 port 16 102618 unique_id port 102618 remote_ip 10.8.1.54 102622 username aminvpn 102622 unique_id port 102622 terminate_cause User-Request 102622 bytes_out 1158907 102622 bytes_in 35467055 102622 station_ip 31.57.129.48 102622 port 15729834 102622 nas_port_type Virtual 102622 remote_ip 5.5.5.255 102624 username aminvpn 102624 mac 102624 bytes_out 0 102624 bytes_in 0 102624 station_ip 83.122.147.9 102624 port 38 102624 unique_id port 102624 remote_ip 10.8.0.6 102632 username forozande 102632 mac 102632 bytes_out 3043085 102632 bytes_in 36092031 102591 bytes_in 286295 102591 station_ip 5.120.98.80 102591 port 27 102591 unique_id port 102591 remote_ip 10.8.0.130 102593 username jamali 102593 mac 102593 bytes_out 28924 102593 bytes_in 63945 102593 station_ip 5.119.118.241 102593 port 34 102593 unique_id port 102593 remote_ip 10.8.0.62 102596 username aminvpn 102596 unique_id port 102596 terminate_cause User-Request 102596 bytes_out 15671095 102596 bytes_in 544729410 102596 station_ip 31.57.129.48 102596 port 15729819 102596 nas_port_type Virtual 102596 remote_ip 5.5.5.255 102597 username abbasaskari 102597 mac 102597 bytes_out 135135 102597 bytes_in 688109 102597 station_ip 83.123.51.73 102597 port 36 102597 unique_id port 102597 remote_ip 10.8.0.94 102601 username rezasekonji 102601 mac 102601 bytes_out 179392 102601 bytes_in 3149315 102601 station_ip 83.123.149.97 102601 port 34 102601 unique_id port 102601 remote_ip 10.8.0.114 102605 username aminvpn 102605 mac 102605 bytes_out 2177 102605 bytes_in 4310 102605 station_ip 83.122.99.152 102605 port 34 102605 unique_id port 102605 remote_ip 10.8.0.6 102607 username jamali 102607 mac 102607 bytes_out 0 102607 bytes_in 0 102607 station_ip 5.119.118.241 102607 port 16 102607 unique_id port 102607 remote_ip 10.8.1.54 102611 username jamali 102611 mac 102611 bytes_out 0 102611 bytes_in 0 102611 station_ip 5.119.118.241 102611 port 16 102611 unique_id port 102611 remote_ip 10.8.1.54 102612 username amir 102612 mac 102612 bytes_out 301547 102612 bytes_in 2066534 102612 station_ip 46.225.209.252 102612 port 34 102612 unique_id port 102612 remote_ip 10.8.0.54 102616 username mehdizare 102616 mac 102616 bytes_out 17185 102616 bytes_in 23221 102616 station_ip 5.120.163.85 102616 port 33 102616 unique_id port 102616 remote_ip 10.8.0.22 102619 username aminvpn 102619 mac 102619 bytes_out 9007 102619 bytes_in 16613 102619 station_ip 83.122.147.9 102619 port 38 102619 unique_id port 102619 remote_ip 10.8.0.6 102620 username jamali 102620 mac 102620 bytes_out 20844 102620 bytes_in 33598 102620 station_ip 5.119.118.241 102620 port 15 102620 unique_id port 102620 remote_ip 10.8.1.54 102625 username mehdizare 102625 mac 102625 bytes_out 8220 102625 bytes_in 15003 102625 station_ip 5.120.163.85 102625 port 33 102625 unique_id port 102625 remote_ip 10.8.0.22 102627 username jamali 102627 mac 102627 bytes_out 0 102627 bytes_in 0 102627 station_ip 5.119.118.241 102627 port 33 102627 unique_id port 102627 remote_ip 10.8.0.62 102629 username jamali 102629 mac 102629 bytes_out 16390 102629 bytes_in 18514 102629 station_ip 5.119.118.241 102629 port 34 102629 unique_id port 102629 remote_ip 10.8.0.62 102631 username aminvpn 102631 mac 102631 bytes_out 4063 102631 bytes_in 6250 102631 station_ip 83.122.99.152 102631 port 33 102631 unique_id port 102631 remote_ip 10.8.0.6 102635 username aminvpn 102635 mac 102635 bytes_out 48128 102635 bytes_in 139099 102635 station_ip 83.122.147.9 102635 port 34 102635 unique_id port 102635 remote_ip 10.8.0.6 102636 username jamali 102636 kill_reason Maximum check online fails reached 102636 mac 102636 bytes_out 0 102636 bytes_in 0 102636 station_ip 5.119.118.241 102636 port 18 102636 unique_id port 102639 username mehdizare 102639 mac 102639 bytes_out 0 102639 bytes_in 0 102639 station_ip 5.120.163.85 102639 port 38 102639 unique_id port 102639 remote_ip 10.8.0.22 102643 username jamali 102643 mac 102643 bytes_out 504964 102643 bytes_in 4366697 102643 station_ip 5.119.118.241 102630 kill_reason Another user logged on this global unique id 102630 mac 102630 bytes_out 0 102630 bytes_in 0 102630 station_ip 5.120.98.80 102630 port 27 102630 unique_id port 102630 remote_ip 10.8.0.130 102634 username ahmadipour 102634 unique_id port 102634 terminate_cause Lost-Carrier 102634 bytes_out 1232833 102634 bytes_in 27327473 102634 station_ip 83.122.146.87 102634 port 15729835 102634 nas_port_type Virtual 102634 remote_ip 5.5.5.183 102637 username musa 102637 kill_reason Another user logged on this global unique id 102637 mac 102637 bytes_out 0 102637 bytes_in 0 102637 station_ip 83.122.154.176 102637 port 35 102637 unique_id port 102640 username aminvpn 102640 mac 102640 bytes_out 10649 102640 bytes_in 18903 102640 station_ip 83.122.147.9 102640 port 40 102640 unique_id port 102640 remote_ip 10.8.0.6 102645 username aminvpn 102645 mac 102645 bytes_out 3619 102645 bytes_in 5974 102645 station_ip 83.122.99.152 102645 port 38 102645 unique_id port 102645 remote_ip 10.8.0.6 102647 username aminvpn 102647 mac 102647 bytes_out 0 102647 bytes_in 0 102647 station_ip 83.122.147.9 102647 port 31 102647 unique_id port 102647 remote_ip 10.8.0.6 102650 username jamali 102650 mac 102650 bytes_out 0 102650 bytes_in 0 102650 station_ip 5.119.118.241 102650 port 31 102650 unique_id port 102650 remote_ip 10.8.0.62 102653 username amir 102653 kill_reason Another user logged on this global unique id 102653 mac 102653 bytes_out 0 102653 bytes_in 0 102653 station_ip 46.225.209.252 102653 port 36 102653 unique_id port 102653 remote_ip 10.8.0.54 102659 username aminvpn 102659 mac 102659 bytes_out 0 102659 bytes_in 0 102659 station_ip 83.122.99.152 102659 port 34 102659 unique_id port 102659 remote_ip 10.8.0.6 102661 username alireza1 102661 unique_id port 102661 terminate_cause Lost-Carrier 102661 bytes_out 2593731 102661 bytes_in 11091262 102661 station_ip 5.119.176.213 102661 port 15729823 102661 nas_port_type Virtual 102661 remote_ip 5.5.5.191 102662 username aminvpn 102662 mac 102662 bytes_out 0 102662 bytes_in 0 102662 station_ip 83.122.147.9 102662 port 34 102662 unique_id port 102662 remote_ip 10.8.0.6 102663 username aminvpn 102663 mac 102663 bytes_out 0 102663 bytes_in 0 102663 station_ip 83.122.99.152 102663 port 33 102663 unique_id port 102663 remote_ip 10.8.0.6 102667 username aminvpn 102667 mac 102667 bytes_out 0 102667 bytes_in 0 102667 station_ip 83.122.99.152 102667 port 34 102667 unique_id port 102667 remote_ip 10.8.0.6 102670 username aminvpn 102670 mac 102670 bytes_out 0 102670 bytes_in 0 102670 station_ip 113.203.46.51 102670 port 34 102670 unique_id port 102670 remote_ip 10.8.0.6 102672 username ahmadi 102672 unique_id port 102672 terminate_cause User-Request 102672 bytes_out 146631 102672 bytes_in 902182 102672 station_ip 37.129.102.149 102672 port 15729838 102672 nas_port_type Virtual 102672 remote_ip 5.5.5.254 102676 username aminvpn 102676 mac 102676 bytes_out 0 102676 bytes_in 0 102676 station_ip 113.203.46.51 102676 port 33 102676 unique_id port 102676 remote_ip 10.8.0.6 102677 username aminvpn 102677 mac 102677 bytes_out 0 102677 bytes_in 0 102677 station_ip 83.122.99.152 102677 port 34 102677 unique_id port 102677 remote_ip 10.8.0.6 102680 username aminvpn 102680 mac 102680 bytes_out 0 102680 bytes_in 0 102680 station_ip 113.203.46.51 102680 port 33 102680 unique_id port 102680 remote_ip 10.8.0.6 102689 username aminvpn 102689 mac 102689 bytes_out 0 102689 bytes_in 0 102689 station_ip 83.122.99.152 102632 station_ip 83.123.254.21 102632 port 31 102632 unique_id port 102632 remote_ip 10.8.0.74 102633 username jamali 102633 mac 102633 bytes_out 0 102633 bytes_in 0 102633 station_ip 5.119.118.241 102633 port 15 102633 unique_id port 102633 remote_ip 10.8.1.54 102638 username aminvpn 102638 mac 102638 bytes_out 2024 102638 bytes_in 4082 102638 station_ip 83.122.99.152 102638 port 33 102638 unique_id port 102638 remote_ip 10.8.0.6 102641 username aminvpn 102641 mac 102641 bytes_out 0 102641 bytes_in 0 102641 station_ip 83.122.99.152 102641 port 38 102641 unique_id port 102641 remote_ip 10.8.0.6 102642 username aminvpn 102642 mac 102642 bytes_out 0 102642 bytes_in 0 102642 station_ip 83.122.147.9 102642 port 40 102642 unique_id port 102642 remote_ip 10.8.0.6 102646 username mirzaei 102646 kill_reason Another user logged on this global unique id 102646 mac 102646 bytes_out 0 102646 bytes_in 0 102646 station_ip 5.119.19.151 102646 port 30 102646 unique_id port 102654 username aminvpn 102654 mac 102654 bytes_out 0 102654 bytes_in 0 102654 station_ip 83.122.99.152 102654 port 31 102654 unique_id port 102654 remote_ip 10.8.0.6 102657 username jamali 102657 mac 102657 bytes_out 244200 102657 bytes_in 2123795 102657 station_ip 5.119.118.241 102657 port 15 102657 unique_id port 102657 remote_ip 10.8.1.54 102658 username forozande 102658 mac 102658 bytes_out 0 102658 bytes_in 0 102658 station_ip 37.129.100.156 102658 port 19 102658 unique_id port 102658 remote_ip 10.8.1.62 102660 username aminvpn 102660 mac 102660 bytes_out 0 102660 bytes_in 0 102660 station_ip 113.203.46.51 102660 port 33 102660 unique_id port 102660 remote_ip 10.8.0.6 102664 username aminvpn 102664 mac 102664 bytes_out 0 102664 bytes_in 0 102664 station_ip 83.122.147.9 102664 port 34 102664 unique_id port 102664 remote_ip 10.8.0.6 102665 username aminvpn 102665 unique_id port 102665 terminate_cause Lost-Carrier 102665 bytes_out 550205 102665 bytes_in 2817007 102665 station_ip 5.119.54.167 102665 port 15729831 102665 nas_port_type Virtual 102665 remote_ip 5.5.5.197 102669 username khalili 102669 kill_reason Another user logged on this global unique id 102669 mac 102669 bytes_out 0 102669 bytes_in 0 102669 station_ip 5.120.135.235 102669 port 37 102669 unique_id port 102669 remote_ip 10.8.0.78 102671 username aminvpn 102671 mac 102671 bytes_out 0 102671 bytes_in 0 102671 station_ip 83.122.147.9 102671 port 33 102671 unique_id port 102671 remote_ip 10.8.0.6 102673 username aminvpn 102673 mac 102673 bytes_out 0 102673 bytes_in 0 102673 station_ip 83.122.99.152 102673 port 34 102673 unique_id port 102673 remote_ip 10.8.0.6 102678 username aminvpn 102678 mac 102678 bytes_out 0 102678 bytes_in 0 102678 station_ip 113.203.46.51 102678 port 33 102678 unique_id port 102678 remote_ip 10.8.0.6 102681 username aminvpn 102681 mac 102681 bytes_out 0 102681 bytes_in 0 102681 station_ip 83.122.99.152 102681 port 34 102681 unique_id port 102681 remote_ip 10.8.0.6 102685 username mirzaei 102685 kill_reason Another user logged on this global unique id 102685 mac 102685 bytes_out 0 102685 bytes_in 0 102685 station_ip 5.119.19.151 102685 port 30 102685 unique_id port 102686 username aminvpn 102686 mac 102686 bytes_out 0 102686 bytes_in 0 102686 station_ip 83.122.147.9 102686 port 34 102686 unique_id port 102686 remote_ip 10.8.0.6 102690 username aminvpn 102690 mac 102690 bytes_out 0 102690 bytes_in 0 102690 station_ip 83.122.147.9 102643 port 31 102643 unique_id port 102643 remote_ip 10.8.0.62 102644 username abbasaskari 102644 mac 102644 bytes_out 0 102644 bytes_in 0 102644 station_ip 83.123.83.21 102644 port 34 102644 unique_id port 102644 remote_ip 10.8.0.94 102648 username jamali 102648 mac 102648 bytes_out 0 102648 bytes_in 0 102648 station_ip 5.119.118.241 102648 port 40 102648 unique_id port 102648 remote_ip 10.8.0.62 102649 username aminvpn 102649 mac 102649 bytes_out 0 102649 bytes_in 0 102649 station_ip 83.122.99.152 102649 port 34 102649 unique_id port 102649 remote_ip 10.8.0.6 102651 username aminvpn 102651 mac 102651 bytes_out 0 102651 bytes_in 0 102651 station_ip 83.122.147.9 102651 port 38 102651 unique_id port 102651 remote_ip 10.8.0.6 102652 username forozande 102652 mac 102652 bytes_out 0 102652 bytes_in 0 102652 station_ip 37.129.59.82 102652 port 33 102652 unique_id port 102652 remote_ip 10.8.0.74 102655 username musa 102655 mac 102655 bytes_out 0 102655 bytes_in 0 102655 station_ip 83.122.154.176 102655 port 35 102655 unique_id port 102656 username aminvpn 102656 mac 102656 bytes_out 0 102656 bytes_in 0 102656 station_ip 83.122.147.9 102656 port 33 102656 unique_id port 102656 remote_ip 10.8.0.6 102666 username aminvpn 102666 mac 102666 bytes_out 0 102666 bytes_in 0 102666 station_ip 113.203.46.51 102666 port 33 102666 unique_id port 102666 remote_ip 10.8.0.6 102668 username aminvpn 102668 mac 102668 bytes_out 0 102668 bytes_in 0 102668 station_ip 83.122.147.9 102668 port 33 102668 unique_id port 102668 remote_ip 10.8.0.6 102674 username aminvpn 102674 mac 102674 bytes_out 0 102674 bytes_in 0 102674 station_ip 113.203.46.51 102674 port 33 102674 unique_id port 102674 remote_ip 10.8.0.6 102675 username aminvpn 102675 mac 102675 bytes_out 0 102675 bytes_in 0 102675 station_ip 83.122.147.9 102675 port 34 102675 unique_id port 102675 remote_ip 10.8.0.6 102679 username aminvpn 102679 mac 102679 bytes_out 0 102679 bytes_in 0 102679 station_ip 83.122.147.9 102679 port 34 102679 unique_id port 102679 remote_ip 10.8.0.6 102682 username aminvpn 102682 mac 102682 bytes_out 0 102682 bytes_in 0 102682 station_ip 113.203.46.51 102682 port 33 102682 unique_id port 102682 remote_ip 10.8.0.6 102683 username aminvpn 102683 mac 102683 bytes_out 0 102683 bytes_in 0 102683 station_ip 83.122.147.9 102683 port 34 102683 unique_id port 102683 remote_ip 10.8.0.6 102684 username aminvpn 102684 mac 102684 bytes_out 0 102684 bytes_in 0 102684 station_ip 113.203.46.51 102684 port 33 102684 unique_id port 102684 remote_ip 10.8.0.6 102687 username aminvpn 102687 mac 102687 bytes_out 0 102687 bytes_in 0 102687 station_ip 113.203.46.51 102687 port 33 102687 unique_id port 102687 remote_ip 10.8.0.6 102688 username mammad 102688 kill_reason Relative expiration date has reached 102688 unique_id port 102688 bytes_out 0 102688 bytes_in 0 102688 station_ip 78.39.28.226 102688 port 15729839 102688 nas_port_type Virtual 102694 username aminvpn 102694 kill_reason Maximum check online fails reached 102694 mac 102694 bytes_out 0 102694 bytes_in 0 102694 station_ip 83.122.99.152 102694 port 35 102694 unique_id port 102698 username aminvpn 102698 kill_reason Maximum check online fails reached 102698 mac 102698 bytes_out 0 102698 bytes_in 0 102698 station_ip 113.203.46.51 102698 port 34 102698 unique_id port 102701 username musa 102701 kill_reason Another user logged on this global unique id 102689 port 34 102689 unique_id port 102689 remote_ip 10.8.0.6 102691 username jamali 102691 mac 102691 bytes_out 66806 102691 bytes_in 307172 102691 station_ip 5.119.118.241 102691 port 15 102691 unique_id port 102691 remote_ip 10.8.1.54 102692 username aminvpn 102692 mac 102692 bytes_out 0 102692 bytes_in 0 102692 station_ip 113.203.46.51 102692 port 34 102692 unique_id port 102692 remote_ip 10.8.0.6 102693 username aminvpn 102693 mac 102693 bytes_out 0 102693 bytes_in 0 102693 station_ip 83.122.147.9 102693 port 33 102693 unique_id port 102693 remote_ip 10.8.0.6 102695 username aminvpn 102695 mac 102695 bytes_out 0 102695 bytes_in 0 102695 station_ip 113.203.46.51 102695 port 34 102695 unique_id port 102695 remote_ip 10.8.0.6 102699 username amir 102699 kill_reason Another user logged on this global unique id 102699 mac 102699 bytes_out 0 102699 bytes_in 0 102699 station_ip 46.225.209.252 102699 port 36 102699 unique_id port 102700 username alirr 102700 unique_id port 102700 terminate_cause User-Request 102700 bytes_out 4114225 102700 bytes_in 39764045 102700 station_ip 5.134.174.249 102700 port 15729840 102700 nas_port_type Virtual 102700 remote_ip 5.5.5.178 102707 username jamali 102707 mac 102707 bytes_out 0 102707 bytes_in 0 102707 station_ip 5.119.118.241 102707 port 20 102707 unique_id port 102707 remote_ip 10.8.1.54 102709 username mehdizare 102709 mac 102709 bytes_out 163401 102709 bytes_in 239723 102709 station_ip 5.120.163.85 102709 port 41 102709 unique_id port 102709 remote_ip 10.8.0.22 102710 username musa 102710 mac 102710 bytes_out 0 102710 bytes_in 0 102710 station_ip 83.122.154.176 102710 port 31 102710 unique_id port 102712 username aminvpn 102712 mac 102712 bytes_out 0 102712 bytes_in 0 102712 station_ip 83.122.99.152 102712 port 19 102712 unique_id port 102712 remote_ip 10.8.1.26 102714 username amir 102714 kill_reason Another user logged on this global unique id 102714 mac 102714 bytes_out 0 102714 bytes_in 0 102714 station_ip 46.225.209.252 102714 port 36 102714 unique_id port 102715 username houshang 102715 mac 102715 bytes_out 0 102715 bytes_in 0 102715 station_ip 5.119.182.242 102715 port 38 102715 unique_id port 102715 remote_ip 10.8.0.126 102719 username aminvpn 102719 mac 102719 bytes_out 942816 102719 bytes_in 10219169 102719 station_ip 83.122.147.9 102719 port 33 102719 unique_id port 102719 remote_ip 10.8.0.6 102721 username mirzaei 102721 kill_reason Another user logged on this global unique id 102721 mac 102721 bytes_out 0 102721 bytes_in 0 102721 station_ip 5.119.19.151 102721 port 30 102721 unique_id port 102722 username amir 102722 kill_reason Another user logged on this global unique id 102722 mac 102722 bytes_out 0 102722 bytes_in 0 102722 station_ip 46.225.209.252 102722 port 36 102722 unique_id port 102727 username mammad 102727 kill_reason Relative expiration date has reached 102727 unique_id port 102727 bytes_out 0 102727 bytes_in 0 102727 station_ip 78.39.28.226 102727 port 15729848 102727 nas_port_type Virtual 102729 username hoorieh 102729 kill_reason Another user logged on this global unique id 102729 mac 102729 bytes_out 0 102729 bytes_in 0 102729 station_ip 5.119.255.36 102729 port 33 102729 unique_id port 102729 remote_ip 10.8.0.10 102737 username aminvpn 102737 unique_id port 102737 terminate_cause Lost-Carrier 102737 bytes_out 9175931 102737 bytes_in 277606131 102737 station_ip 31.57.129.48 102737 port 15729837 102737 nas_port_type Virtual 102737 remote_ip 5.5.5.192 102738 username mammad 102738 kill_reason Relative expiration date has reached 102690 port 33 102690 unique_id port 102690 remote_ip 10.8.0.6 102696 username aminvpn 102696 mac 102696 bytes_out 0 102696 bytes_in 0 102696 station_ip 83.122.147.9 102696 port 33 102696 unique_id port 102696 remote_ip 10.8.0.6 102697 username aminvpn 102697 mac 102697 bytes_out 0 102697 bytes_in 0 102697 station_ip 113.203.46.51 102697 port 34 102697 unique_id port 102697 remote_ip 10.8.0.6 102704 username arabpour 102704 unique_id port 102704 terminate_cause User-Request 102704 bytes_out 119041 102704 bytes_in 959641 102704 station_ip 83.122.114.253 102704 port 15729841 102704 nas_port_type Virtual 102704 remote_ip 5.5.5.180 102705 username madadi2 102705 mac 102705 bytes_out 2523081 102705 bytes_in 10124727 102705 station_ip 5.119.12.182 102705 port 39 102705 unique_id port 102705 remote_ip 10.8.0.26 102706 username houshang 102706 mac 102706 bytes_out 3714921 102706 bytes_in 25787702 102706 station_ip 5.119.182.242 102706 port 38 102706 unique_id port 102706 remote_ip 10.8.0.126 102713 username jamali 102713 mac 102713 bytes_out 0 102713 bytes_in 0 102713 station_ip 5.119.118.241 102713 port 15 102713 unique_id port 102713 remote_ip 10.8.1.54 102716 username jamali 102716 mac 102716 bytes_out 38014 102716 bytes_in 48251 102716 station_ip 5.119.118.241 102716 port 15 102716 unique_id port 102716 remote_ip 10.8.1.54 102724 username mammad 102724 kill_reason Relative expiration date has reached 102724 unique_id port 102724 bytes_out 0 102724 bytes_in 0 102724 station_ip 78.39.28.226 102724 port 15729845 102724 nas_port_type Virtual 102725 username mammad 102725 kill_reason Relative expiration date has reached 102725 unique_id port 102725 bytes_out 0 102725 bytes_in 0 102725 station_ip 78.39.28.226 102725 port 15729846 102725 nas_port_type Virtual 102728 username mammad 102728 kill_reason Relative expiration date has reached 102728 unique_id port 102728 bytes_out 0 102728 bytes_in 0 102728 station_ip 78.39.28.226 102728 port 15729849 102728 nas_port_type Virtual 102730 username mahyaarabpour 102730 mac 102730 bytes_out 187265 102730 bytes_in 1603839 102730 station_ip 5.119.41.181 102730 port 38 102730 unique_id port 102730 remote_ip 10.8.0.82 102731 username hoorieh 102731 mac 102731 bytes_out 0 102731 bytes_in 0 102731 station_ip 5.119.255.36 102731 port 33 102731 unique_id port 102732 username mammad 102732 kill_reason Relative expiration date has reached 102732 unique_id port 102732 bytes_out 0 102732 bytes_in 0 102732 station_ip 78.39.28.226 102732 port 15729850 102732 nas_port_type Virtual 102733 username mammad 102733 kill_reason Relative expiration date has reached 102733 unique_id port 102733 bytes_out 0 102733 bytes_in 0 102733 station_ip 78.39.28.226 102733 port 15729851 102733 nas_port_type Virtual 102734 username arash 102734 mac 102734 bytes_out 138761 102734 bytes_in 467618 102734 station_ip 37.27.14.166 102734 port 33 102734 unique_id port 102734 remote_ip 10.8.0.122 102736 username mammad 102736 kill_reason Relative expiration date has reached 102736 unique_id port 102736 bytes_out 0 102736 bytes_in 0 102736 station_ip 78.39.28.226 102736 port 15729852 102736 nas_port_type Virtual 102743 username arash 102743 mac 102743 bytes_out 35074 102743 bytes_in 1209201 102743 station_ip 37.27.14.166 102743 port 33 102743 unique_id port 102743 remote_ip 10.8.0.122 102744 username arash 102744 mac 102744 bytes_out 0 102744 bytes_in 0 102744 station_ip 37.27.14.166 102744 port 36 102744 unique_id port 102744 remote_ip 10.8.0.122 102749 username mammad 102749 kill_reason Relative expiration date has reached 102749 unique_id port 102701 mac 102701 bytes_out 0 102701 bytes_in 0 102701 station_ip 83.122.154.176 102701 port 31 102701 unique_id port 102701 remote_ip 10.8.0.106 102702 username mirzaei 102702 kill_reason Another user logged on this global unique id 102702 mac 102702 bytes_out 0 102702 bytes_in 0 102702 station_ip 5.119.19.151 102702 port 30 102702 unique_id port 102703 username jamali 102703 mac 102703 bytes_out 47963 102703 bytes_in 72178 102703 station_ip 5.119.118.241 102703 port 15 102703 unique_id port 102703 remote_ip 10.8.1.54 102708 username mirzaei 102708 kill_reason Another user logged on this global unique id 102708 mac 102708 bytes_out 0 102708 bytes_in 0 102708 station_ip 5.119.19.151 102708 port 30 102708 unique_id port 102711 username aminvpn 102711 unique_id port 102711 terminate_cause User-Request 102711 bytes_out 22004277 102711 bytes_in 956768819 102711 station_ip 5.119.90.81 102711 port 15729836 102711 nas_port_type Virtual 102711 remote_ip 5.5.5.188 102717 username mammad 102717 kill_reason Relative expiration date has reached 102717 unique_id port 102717 bytes_out 0 102717 bytes_in 0 102717 station_ip 78.39.28.226 102717 port 15729843 102717 nas_port_type Virtual 102718 username mehdizare 102718 mac 102718 bytes_out 46233 102718 bytes_in 45800 102718 station_ip 5.120.163.85 102718 port 39 102718 unique_id port 102718 remote_ip 10.8.0.22 102720 username mehdizare 102720 mac 102720 bytes_out 30102 102720 bytes_in 59544 102720 station_ip 5.120.163.85 102720 port 33 102720 unique_id port 102720 remote_ip 10.8.0.22 102723 username mammad 102723 kill_reason Relative expiration date has reached 102723 unique_id port 102723 bytes_out 0 102723 bytes_in 0 102723 station_ip 78.39.28.226 102723 port 15729844 102723 nas_port_type Virtual 102726 username mammad 102726 kill_reason Relative expiration date has reached 102726 unique_id port 102726 bytes_out 0 102726 bytes_in 0 102726 station_ip 78.39.28.226 102726 port 15729847 102726 nas_port_type Virtual 102735 username amir 102735 kill_reason Another user logged on this global unique id 102735 mac 102735 bytes_out 0 102735 bytes_in 0 102735 station_ip 46.225.209.252 102735 port 36 102735 unique_id port 102739 username mammad 102739 kill_reason Relative expiration date has reached 102739 unique_id port 102739 bytes_out 0 102739 bytes_in 0 102739 station_ip 78.39.28.226 102739 port 15729854 102739 nas_port_type Virtual 102741 username arash 102741 mac 102741 bytes_out 0 102741 bytes_in 0 102741 station_ip 37.27.14.166 102741 port 33 102741 unique_id port 102741 remote_ip 10.8.0.122 102746 username hashtadani 102746 unique_id port 102746 terminate_cause Lost-Carrier 102746 bytes_out 25920217 102746 bytes_in 572115024 102746 station_ip 37.129.10.15 102746 port 15729842 102746 nas_port_type Virtual 102746 remote_ip 5.5.5.182 102750 username mohammadmahdi 102750 mac 102750 bytes_out 1562487 102750 bytes_in 11687126 102750 station_ip 5.120.50.235 102750 port 38 102750 unique_id port 102750 remote_ip 10.8.0.34 102751 username askari 102751 mac 102751 bytes_out 0 102751 bytes_in 0 102751 station_ip 5.120.21.62 102751 port 19 102751 unique_id port 102751 remote_ip 10.8.1.30 102752 username askari 102752 mac 102752 bytes_out 713385 102752 bytes_in 9174274 102752 station_ip 5.119.243.207 102752 port 20 102752 unique_id port 102752 remote_ip 10.8.1.30 102756 username abbasaskari 102756 mac 102756 bytes_out 15054 102756 bytes_in 32710 102756 station_ip 83.123.61.225 102756 port 31 102756 unique_id port 102756 remote_ip 10.8.0.94 102759 username abbasaskari 102759 mac 102759 bytes_out 0 102759 bytes_in 0 102738 unique_id port 102738 bytes_out 0 102738 bytes_in 0 102738 station_ip 78.39.28.226 102738 port 15729853 102738 nas_port_type Virtual 102740 username abbasaskari 102740 mac 102740 bytes_out 14919 102740 bytes_in 25049 102740 station_ip 83.123.77.53 102740 port 39 102740 unique_id port 102740 remote_ip 10.8.0.94 102742 username amir 102742 mac 102742 bytes_out 0 102742 bytes_in 0 102742 station_ip 46.225.209.252 102742 port 36 102742 unique_id port 102745 username mammad 102745 kill_reason Relative expiration date has reached 102745 unique_id port 102745 bytes_out 0 102745 bytes_in 0 102745 station_ip 78.39.28.226 102745 port 15729855 102745 nas_port_type Virtual 102747 username musa 102747 mac 102747 bytes_out 0 102747 bytes_in 0 102747 station_ip 37.129.52.67 102747 port 31 102747 unique_id port 102747 remote_ip 10.8.0.106 102748 username mammad 102748 kill_reason Relative expiration date has reached 102748 unique_id port 102748 bytes_out 0 102748 bytes_in 0 102748 station_ip 78.39.28.226 102748 port 15729856 102748 nas_port_type Virtual 102753 username houshang 102753 kill_reason Another user logged on this global unique id 102753 mac 102753 bytes_out 0 102753 bytes_in 0 102753 station_ip 5.119.182.242 102753 port 31 102753 unique_id port 102753 remote_ip 10.8.0.126 102754 username houshang 102754 mac 102754 bytes_out 0 102754 bytes_in 0 102754 station_ip 5.119.182.242 102754 port 31 102754 unique_id port 102760 username morteza 102760 kill_reason Another user logged on this global unique id 102760 mac 102760 bytes_out 0 102760 bytes_in 0 102760 station_ip 83.123.164.198 102760 port 36 102760 unique_id port 102760 remote_ip 10.8.0.90 102762 username askari 102762 kill_reason Another user logged on this global unique id 102762 mac 102762 bytes_out 0 102762 bytes_in 0 102762 station_ip 5.119.243.207 102762 port 33 102762 unique_id port 102762 remote_ip 10.8.0.38 102765 username abbasaskari 102765 mac 102765 bytes_out 0 102765 bytes_in 0 102765 station_ip 83.123.61.225 102765 port 31 102765 unique_id port 102765 remote_ip 10.8.0.94 102766 username abbasaskari 102766 mac 102766 bytes_out 0 102766 bytes_in 0 102766 station_ip 83.123.61.225 102766 port 31 102766 unique_id port 102766 remote_ip 10.8.0.94 102767 username abbasaskari 102767 mac 102767 bytes_out 255380 102767 bytes_in 1394559 102767 station_ip 83.123.61.225 102767 port 31 102767 unique_id port 102767 remote_ip 10.8.0.94 102770 username askari 102770 mac 102770 bytes_out 0 102770 bytes_in 0 102770 station_ip 5.119.243.207 102770 port 36 102770 unique_id port 102770 remote_ip 10.8.0.38 102771 username askari 102771 mac 102771 bytes_out 0 102771 bytes_in 0 102771 station_ip 5.119.243.207 102771 port 33 102771 unique_id port 102771 remote_ip 10.8.0.38 102772 username alireza1 102772 unique_id port 102772 terminate_cause Lost-Carrier 102772 bytes_out 61406 102772 bytes_in 298419 102772 station_ip 5.119.176.213 102772 port 15729858 102772 nas_port_type Virtual 102772 remote_ip 5.5.5.185 102775 username malekpoir 102775 mac 102775 bytes_out 0 102775 bytes_in 0 102775 station_ip 5.120.98.80 102775 port 27 102775 unique_id port 102778 username morteza 102778 mac 102778 bytes_out 0 102778 bytes_in 0 102778 station_ip 83.123.225.66 102778 port 27 102778 unique_id port 102778 remote_ip 10.8.0.90 102781 username mirzaei 102781 kill_reason Another user logged on this global unique id 102781 mac 102781 bytes_out 0 102781 bytes_in 0 102781 station_ip 5.119.19.151 102781 port 30 102781 unique_id port 102784 username abbasaskari 102749 bytes_out 0 102749 bytes_in 0 102749 station_ip 78.39.28.226 102749 port 15729857 102749 nas_port_type Virtual 102755 username abbasaskari 102755 mac 102755 bytes_out 0 102755 bytes_in 0 102755 station_ip 83.123.61.225 102755 port 38 102755 unique_id port 102755 remote_ip 10.8.0.94 102757 username abbasaskari 102757 mac 102757 bytes_out 0 102757 bytes_in 0 102757 station_ip 83.123.61.225 102757 port 31 102757 unique_id port 102757 remote_ip 10.8.0.94 102758 username abbasaskari 102758 mac 102758 bytes_out 0 102758 bytes_in 0 102758 station_ip 83.123.61.225 102758 port 31 102758 unique_id port 102758 remote_ip 10.8.0.94 102763 username abbasaskari 102763 mac 102763 bytes_out 0 102763 bytes_in 0 102763 station_ip 83.123.61.225 102763 port 31 102763 unique_id port 102763 remote_ip 10.8.0.94 102768 username morteza 102768 mac 102768 bytes_out 0 102768 bytes_in 0 102768 station_ip 83.123.164.198 102768 port 36 102768 unique_id port 102773 username askari 102773 mac 102773 bytes_out 0 102773 bytes_in 0 102773 station_ip 5.119.243.207 102773 port 36 102773 unique_id port 102773 remote_ip 10.8.0.38 102776 username morteza 102776 mac 102776 bytes_out 0 102776 bytes_in 0 102776 station_ip 83.123.164.198 102776 port 31 102776 unique_id port 102776 remote_ip 10.8.0.90 102780 username houshang 102780 mac 102780 bytes_out 0 102780 bytes_in 0 102780 station_ip 5.119.182.242 102780 port 31 102780 unique_id port 102780 remote_ip 10.8.0.126 102789 username malekpoir 102789 mac 102789 bytes_out 0 102789 bytes_in 0 102789 station_ip 5.119.68.78 102789 port 27 102789 unique_id port 102789 remote_ip 10.8.0.130 102791 username mehdizare 102791 mac 102791 bytes_out 2948352 102791 bytes_in 14656439 102791 station_ip 5.120.163.85 102791 port 15 102791 unique_id port 102791 remote_ip 10.8.1.22 102792 username khalili 102792 mac 102792 bytes_out 0 102792 bytes_in 0 102792 station_ip 5.120.135.235 102792 port 37 102792 unique_id port 102796 username mehdizare 102796 mac 102796 bytes_out 6108 102796 bytes_in 7717 102796 station_ip 5.120.163.85 102796 port 15 102796 unique_id port 102796 remote_ip 10.8.1.22 102803 username malekpoir 102803 kill_reason Another user logged on this global unique id 102803 mac 102803 bytes_out 0 102803 bytes_in 0 102803 station_ip 5.119.68.78 102803 port 27 102803 unique_id port 102803 remote_ip 10.8.0.130 102804 username khalili 102804 mac 102804 bytes_out 0 102804 bytes_in 0 102804 station_ip 5.120.135.235 102804 port 15 102804 unique_id port 102804 remote_ip 10.8.1.66 102807 username alipour 102807 mac 102807 bytes_out 0 102807 bytes_in 0 102807 station_ip 37.129.95.90 102807 port 31 102807 unique_id port 102807 remote_ip 10.8.0.70 102809 username madadi2 102809 mac 102809 bytes_out 260905 102809 bytes_in 1326695 102809 station_ip 5.120.57.51 102809 port 31 102809 unique_id port 102809 remote_ip 10.8.0.26 102816 username malekpoir 102816 mac 102816 bytes_out 0 102816 bytes_in 0 102816 station_ip 5.119.68.78 102816 port 27 102816 unique_id port 102821 username aminvpn 102821 unique_id port 102821 terminate_cause User-Request 102821 bytes_out 99810 102821 bytes_in 218454 102821 station_ip 31.57.129.227 102821 port 15729870 102821 nas_port_type Virtual 102821 remote_ip 5.5.5.255 102822 username aminvpn 102822 mac 102822 bytes_out 0 102822 bytes_in 0 102822 station_ip 37.129.56.111 102822 port 19 102822 unique_id port 102822 remote_ip 10.8.1.26 102759 station_ip 83.123.61.225 102759 port 31 102759 unique_id port 102759 remote_ip 10.8.0.94 102761 username abbasaskari 102761 mac 102761 bytes_out 0 102761 bytes_in 0 102761 station_ip 83.123.61.225 102761 port 31 102761 unique_id port 102761 remote_ip 10.8.0.94 102764 username khalili 102764 kill_reason Another user logged on this global unique id 102764 mac 102764 bytes_out 0 102764 bytes_in 0 102764 station_ip 5.120.135.235 102764 port 37 102764 unique_id port 102769 username askari 102769 mac 102769 bytes_out 0 102769 bytes_in 0 102769 station_ip 5.119.243.207 102769 port 33 102769 unique_id port 102774 username askari 102774 mac 102774 bytes_out 0 102774 bytes_in 0 102774 station_ip 5.119.243.207 102774 port 33 102774 unique_id port 102774 remote_ip 10.8.0.38 102777 username madadi2 102777 mac 102777 bytes_out 0 102777 bytes_in 0 102777 station_ip 5.119.150.210 102777 port 27 102777 unique_id port 102777 remote_ip 10.8.0.26 102779 username morteza 102779 mac 102779 bytes_out 27238 102779 bytes_in 206771 102779 station_ip 83.123.225.66 102779 port 27 102779 unique_id port 102779 remote_ip 10.8.0.90 102782 username musa 102782 kill_reason Another user logged on this global unique id 102782 mac 102782 bytes_out 0 102782 bytes_in 0 102782 station_ip 37.129.58.171 102782 port 38 102782 unique_id port 102782 remote_ip 10.8.0.106 102783 username mahdiyehalizadeh 102783 mac 102783 bytes_out 0 102783 bytes_in 0 102783 station_ip 83.123.154.39 102783 port 27 102783 unique_id port 102783 remote_ip 10.8.0.42 102785 username mahdiyehalizadeh 102785 mac 102785 bytes_out 0 102785 bytes_in 0 102785 station_ip 83.123.154.39 102785 port 31 102785 unique_id port 102785 remote_ip 10.8.0.42 102786 username mahdiyehalizadeh 102786 mac 102786 bytes_out 0 102786 bytes_in 0 102786 station_ip 83.122.159.223 102786 port 33 102786 unique_id port 102786 remote_ip 10.8.0.42 102788 username forozande 102788 mac 102788 bytes_out 2019913 102788 bytes_in 18456404 102788 station_ip 83.122.217.132 102788 port 19 102788 unique_id port 102788 remote_ip 10.8.1.62 102794 username alireza1 102794 unique_id port 102794 terminate_cause User-Request 102794 bytes_out 60478 102794 bytes_in 171568 102794 station_ip 5.119.176.213 102794 port 15729861 102794 nas_port_type Virtual 102794 remote_ip 5.5.5.175 102795 username mehdizare 102795 mac 102795 bytes_out 0 102795 bytes_in 0 102795 station_ip 5.120.163.85 102795 port 15 102795 unique_id port 102795 remote_ip 10.8.1.22 102797 username mehdizare 102797 mac 102797 bytes_out 0 102797 bytes_in 0 102797 station_ip 5.120.163.85 102797 port 15 102797 unique_id port 102797 remote_ip 10.8.1.22 102798 username madadi2 102798 mac 102798 bytes_out 0 102798 bytes_in 0 102798 station_ip 5.119.67.242 102798 port 31 102798 unique_id port 102798 remote_ip 10.8.0.26 102801 username aminvpn 102801 unique_id port 102801 terminate_cause Lost-Carrier 102801 bytes_out 1708414 102801 bytes_in 20044452 102801 station_ip 5.120.2.7 102801 port 15729859 102801 nas_port_type Virtual 102801 remote_ip 5.5.5.255 102802 username mehdizare 102802 mac 102802 bytes_out 80413 102802 bytes_in 323096 102802 station_ip 5.120.163.85 102802 port 15 102802 unique_id port 102802 remote_ip 10.8.1.22 102805 username khalili 102805 unique_id port 102805 terminate_cause User-Request 102805 bytes_out 4002 102805 bytes_in 5198 102805 station_ip 5.120.135.235 102805 port 15729864 102805 nas_port_type Virtual 102805 remote_ip 5.5.5.255 102806 username abbasaskari 102806 mac 102784 mac 102784 bytes_out 0 102784 bytes_in 0 102784 station_ip 83.123.125.253 102784 port 31 102784 unique_id port 102784 remote_ip 10.8.0.94 102787 username alemzadeh 102787 unique_id port 102787 terminate_cause User-Request 102787 bytes_out 195436 102787 bytes_in 2409361 102787 station_ip 83.122.28.203 102787 port 15729860 102787 nas_port_type Virtual 102787 remote_ip 5.5.5.172 102790 username houshang 102790 mac 102790 bytes_out 0 102790 bytes_in 0 102790 station_ip 5.119.182.242 102790 port 27 102790 unique_id port 102790 remote_ip 10.8.0.126 102793 username aminvpn 102793 unique_id port 102793 terminate_cause User-Request 102793 bytes_out 156065 102793 bytes_in 3161866 102793 station_ip 31.57.129.227 102793 port 15729863 102793 nas_port_type Virtual 102793 remote_ip 5.5.5.254 102799 username forozande 102799 mac 102799 bytes_out 1294227 102799 bytes_in 16234149 102799 station_ip 113.203.26.244 102799 port 19 102799 unique_id port 102799 remote_ip 10.8.1.62 102800 username mehdizare 102800 mac 102800 bytes_out 17961 102800 bytes_in 26177 102800 station_ip 5.120.163.85 102800 port 15 102800 unique_id port 102800 remote_ip 10.8.1.22 102810 username madadi2 102810 mac 102810 bytes_out 0 102810 bytes_in 0 102810 station_ip 5.120.158.179 102810 port 31 102810 unique_id port 102810 remote_ip 10.8.0.26 102811 username arabpour 102811 unique_id port 102811 terminate_cause User-Request 102811 bytes_out 0 102811 bytes_in 304 102811 station_ip 83.122.212.149 102811 port 15729867 102811 nas_port_type Virtual 102811 remote_ip 5.5.5.186 102812 username forozande 102812 mac 102812 bytes_out 0 102812 bytes_in 0 102812 station_ip 83.122.37.63 102812 port 19 102812 unique_id port 102812 remote_ip 10.8.1.62 102813 username forozande 102813 mac 102813 bytes_out 0 102813 bytes_in 0 102813 station_ip 83.122.167.185 102813 port 19 102813 unique_id port 102813 remote_ip 10.8.1.62 102814 username abbasaskari 102814 mac 102814 bytes_out 0 102814 bytes_in 0 102814 station_ip 83.123.75.117 102814 port 37 102814 unique_id port 102814 remote_ip 10.8.0.94 102815 username alireza 102815 unique_id port 102815 terminate_cause User-Request 102815 bytes_out 1997658 102815 bytes_in 33097849 102815 station_ip 5.120.84.15 102815 port 15729868 102815 nas_port_type Virtual 102815 remote_ip 5.5.5.174 102818 username mehdizare 102818 mac 102818 bytes_out 0 102818 bytes_in 0 102818 station_ip 5.120.163.85 102818 port 37 102818 unique_id port 102818 remote_ip 10.8.0.22 102819 username mehdizare 102819 mac 102819 bytes_out 0 102819 bytes_in 0 102819 station_ip 5.120.163.85 102819 port 36 102819 unique_id port 102819 remote_ip 10.8.0.22 102820 username aminvpn 102820 unique_id port 102820 terminate_cause User-Request 102820 bytes_out 9770632 102820 bytes_in 404538292 102820 station_ip 31.57.129.227 102820 port 15729869 102820 nas_port_type Virtual 102820 remote_ip 5.5.5.195 102823 username rezasekonji 102823 mac 102823 bytes_out 0 102823 bytes_in 0 102823 station_ip 37.129.3.177 102823 port 37 102823 unique_id port 102823 remote_ip 10.8.0.114 102828 username forozande 102828 mac 102828 bytes_out 618741 102828 bytes_in 6046438 102828 station_ip 83.122.80.170 102828 port 19 102828 unique_id port 102828 remote_ip 10.8.1.62 102831 username malekpoir 102831 mac 102831 bytes_out 0 102831 bytes_in 0 102831 station_ip 5.119.68.78 102831 port 27 102831 unique_id port 102831 remote_ip 10.8.0.130 102834 username malekpoir 102834 mac 102834 bytes_out 21171 102834 bytes_in 29346 102806 bytes_out 0 102806 bytes_in 0 102806 station_ip 83.123.94.153 102806 port 37 102806 unique_id port 102806 remote_ip 10.8.0.94 102808 username ahmadi 102808 unique_id port 102808 terminate_cause User-Request 102808 bytes_out 46986 102808 bytes_in 443709 102808 station_ip 83.123.50.99 102808 port 15729865 102808 nas_port_type Virtual 102808 remote_ip 5.5.5.173 102817 username mehdizare 102817 mac 102817 bytes_out 0 102817 bytes_in 0 102817 station_ip 5.120.163.85 102817 port 36 102817 unique_id port 102817 remote_ip 10.8.0.22 102825 username malekpoir 102825 mac 102825 bytes_out 0 102825 bytes_in 0 102825 station_ip 5.119.68.78 102825 port 27 102825 unique_id port 102825 remote_ip 10.8.0.130 102826 username malekpoir 102826 mac 102826 bytes_out 0 102826 bytes_in 0 102826 station_ip 5.119.68.78 102826 port 27 102826 unique_id port 102826 remote_ip 10.8.0.130 102827 username abbasaskari 102827 mac 102827 bytes_out 0 102827 bytes_in 0 102827 station_ip 83.123.96.89 102827 port 36 102827 unique_id port 102827 remote_ip 10.8.0.94 102832 username forozande 102832 mac 102832 bytes_out 0 102832 bytes_in 0 102832 station_ip 83.123.166.179 102832 port 19 102832 unique_id port 102832 remote_ip 10.8.1.62 102839 username aminvpn 102839 unique_id port 102839 terminate_cause User-Request 102839 bytes_out 124357 102839 bytes_in 483857 102839 station_ip 31.57.129.227 102839 port 15729873 102839 nas_port_type Virtual 102839 remote_ip 5.5.5.255 102840 username alireza 102840 unique_id port 102840 terminate_cause User-Request 102840 bytes_out 133787 102840 bytes_in 851747 102840 station_ip 5.120.84.15 102840 port 15729874 102840 nas_port_type Virtual 102840 remote_ip 5.5.5.255 102845 username askari 102845 mac 102845 bytes_out 0 102845 bytes_in 0 102845 station_ip 5.119.141.51 102845 port 37 102845 unique_id port 102845 remote_ip 10.8.0.38 102849 username alireza 102849 unique_id port 102849 terminate_cause Lost-Carrier 102849 bytes_out 134136 102849 bytes_in 1459699 102849 station_ip 5.120.84.15 102849 port 15729877 102849 nas_port_type Virtual 102849 remote_ip 5.5.5.255 102858 username alireza1 102858 unique_id port 102858 terminate_cause User-Request 102858 bytes_out 120117 102858 bytes_in 909214 102858 station_ip 5.119.176.213 102858 port 15729879 102858 nas_port_type Virtual 102858 remote_ip 5.5.5.156 102859 username askari 102859 mac 102859 bytes_out 0 102859 bytes_in 0 102859 station_ip 5.119.141.51 102859 port 31 102859 unique_id port 102859 remote_ip 10.8.0.38 102861 username malekpoir 102861 mac 102861 bytes_out 648531 102861 bytes_in 5891186 102861 station_ip 5.119.68.78 102861 port 27 102861 unique_id port 102861 remote_ip 10.8.0.130 102862 username askari 102862 mac 102862 bytes_out 20654 102862 bytes_in 68179 102862 station_ip 5.119.141.51 102862 port 31 102862 unique_id port 102862 remote_ip 10.8.0.38 102866 username askari 102866 mac 102866 bytes_out 0 102866 bytes_in 0 102866 station_ip 5.119.138.24 102866 port 27 102866 unique_id port 102866 remote_ip 10.8.0.38 102870 username aminvpn 102870 mac 102870 bytes_out 0 102870 bytes_in 0 102870 station_ip 83.123.21.137 102870 port 39 102870 unique_id port 102870 remote_ip 10.8.0.6 102872 username sade 102872 unique_id port 102872 terminate_cause Lost-Carrier 102872 bytes_out 577412 102872 bytes_in 3155193 102872 station_ip 5.120.25.203 102872 port 15729878 102872 nas_port_type Virtual 102872 remote_ip 5.5.5.155 102877 username forozande 102877 mac 102877 bytes_out 674066 102877 bytes_in 5406555 102824 username morteza 102824 mac 102824 bytes_out 564191 102824 bytes_in 745383 102824 station_ip 83.122.24.106 102824 port 39 102824 unique_id port 102824 remote_ip 10.8.0.90 102829 username aminvpn 102829 mac 102829 bytes_out 0 102829 bytes_in 0 102829 station_ip 37.129.139.233 102829 port 31 102829 unique_id port 102829 remote_ip 10.8.0.6 102830 username aminvpn 102830 unique_id port 102830 terminate_cause User-Request 102830 bytes_out 247568 102830 bytes_in 1316181 102830 station_ip 31.57.129.227 102830 port 15729871 102830 nas_port_type Virtual 102830 remote_ip 5.5.5.255 102833 username amir 102833 kill_reason Another user logged on this global unique id 102833 mac 102833 bytes_out 0 102833 bytes_in 0 102833 station_ip 46.225.232.117 102833 port 15 102833 unique_id port 102833 remote_ip 10.8.1.34 102835 username malekpoir 102835 mac 102835 bytes_out 0 102835 bytes_in 0 102835 station_ip 5.119.68.78 102835 port 27 102835 unique_id port 102835 remote_ip 10.8.0.130 102837 username aminvpn 102837 unique_id port 102837 terminate_cause User-Request 102837 bytes_out 81142 102837 bytes_in 34542 102837 station_ip 31.57.129.227 102837 port 15729872 102837 nas_port_type Virtual 102837 remote_ip 5.5.5.255 102843 username alireza 102843 unique_id port 102843 terminate_cause User-Request 102843 bytes_out 249204 102843 bytes_in 2131914 102843 station_ip 5.120.84.15 102843 port 15729875 102843 nas_port_type Virtual 102843 remote_ip 5.5.5.255 102846 username morteza 102846 kill_reason Another user logged on this global unique id 102846 mac 102846 bytes_out 0 102846 bytes_in 0 102846 station_ip 83.122.50.30 102846 port 36 102846 unique_id port 102846 remote_ip 10.8.0.90 102848 username morteza 102848 mac 102848 bytes_out 0 102848 bytes_in 0 102848 station_ip 83.122.50.30 102848 port 36 102848 unique_id port 102851 username morteza 102851 mac 102851 bytes_out 0 102851 bytes_in 0 102851 station_ip 83.122.50.30 102851 port 19 102851 unique_id port 102851 remote_ip 10.8.1.46 102852 username morteza 102852 mac 102852 bytes_out 2217 102852 bytes_in 4582 102852 station_ip 83.122.50.30 102852 port 19 102852 unique_id port 102852 remote_ip 10.8.1.46 102853 username musa 102853 kill_reason Another user logged on this global unique id 102853 mac 102853 bytes_out 0 102853 bytes_in 0 102853 station_ip 37.129.58.171 102853 port 38 102853 unique_id port 102854 username morteza 102854 mac 102854 bytes_out 11078 102854 bytes_in 17142 102854 station_ip 83.122.50.30 102854 port 19 102854 unique_id port 102854 remote_ip 10.8.1.46 102855 username mehdizare 102855 mac 102855 bytes_out 0 102855 bytes_in 0 102855 station_ip 5.120.163.85 102855 port 37 102855 unique_id port 102855 remote_ip 10.8.0.22 102857 username musa 102857 kill_reason Another user logged on this global unique id 102857 mac 102857 bytes_out 0 102857 bytes_in 0 102857 station_ip 37.129.58.171 102857 port 38 102857 unique_id port 102863 username askari 102863 mac 102863 bytes_out 0 102863 bytes_in 0 102863 station_ip 5.119.138.24 102863 port 27 102863 unique_id port 102863 remote_ip 10.8.0.38 102864 username aminvpn 102864 unique_id port 102864 terminate_cause User-Request 102864 bytes_out 182289 102864 bytes_in 448973 102864 station_ip 31.57.129.227 102864 port 15729881 102864 nas_port_type Virtual 102864 remote_ip 5.5.5.162 102869 username mehdizare 102869 mac 102869 bytes_out 715529 102869 bytes_in 2642779 102869 station_ip 5.120.163.85 102869 port 19 102869 unique_id port 102869 remote_ip 10.8.1.22 102871 username musa 103441 username mehdizare 102834 station_ip 5.119.68.78 102834 port 31 102834 unique_id port 102834 remote_ip 10.8.0.130 102836 username mehdizare 102836 mac 102836 bytes_out 0 102836 bytes_in 0 102836 station_ip 5.120.163.85 102836 port 40 102836 unique_id port 102836 remote_ip 10.8.0.22 102838 username malekpoir 102838 mac 102838 bytes_out 0 102838 bytes_in 0 102838 station_ip 5.119.68.78 102838 port 27 102838 unique_id port 102838 remote_ip 10.8.0.130 102841 username mehdizare 102841 mac 102841 bytes_out 0 102841 bytes_in 0 102841 station_ip 5.120.163.85 102841 port 31 102841 unique_id port 102841 remote_ip 10.8.0.22 102842 username askari 102842 mac 102842 bytes_out 0 102842 bytes_in 0 102842 station_ip 5.119.141.51 102842 port 37 102842 unique_id port 102842 remote_ip 10.8.0.38 102844 username mehdizare 102844 mac 102844 bytes_out 0 102844 bytes_in 0 102844 station_ip 5.120.163.85 102844 port 31 102844 unique_id port 102844 remote_ip 10.8.0.22 102847 username askari 102847 mac 102847 bytes_out 0 102847 bytes_in 0 102847 station_ip 5.119.141.51 102847 port 31 102847 unique_id port 102847 remote_ip 10.8.0.38 102850 username morteza 102850 mac 102850 bytes_out 0 102850 bytes_in 0 102850 station_ip 83.122.50.30 102850 port 36 102850 unique_id port 102850 remote_ip 10.8.0.90 102856 username morteza 102856 mac 102856 bytes_out 0 102856 bytes_in 0 102856 station_ip 83.122.50.30 102856 port 36 102856 unique_id port 102856 remote_ip 10.8.0.90 102860 username ahmadi 102860 unique_id port 102860 terminate_cause User-Request 102860 bytes_out 34994 102860 bytes_in 180270 102860 station_ip 83.123.29.131 102860 port 15729880 102860 nas_port_type Virtual 102860 remote_ip 5.5.5.161 102865 username musa 102865 kill_reason Another user logged on this global unique id 102865 mac 102865 bytes_out 0 102865 bytes_in 0 102865 station_ip 37.129.58.171 102865 port 38 102865 unique_id port 102867 username malekpoir 102867 mac 102867 bytes_out 0 102867 bytes_in 0 102867 station_ip 5.119.68.78 102867 port 36 102867 unique_id port 102867 remote_ip 10.8.0.130 102868 username amir 102868 kill_reason Another user logged on this global unique id 102868 mac 102868 bytes_out 0 102868 bytes_in 0 102868 station_ip 46.225.232.117 102868 port 15 102868 unique_id port 102874 username tahmasebi 102874 kill_reason Another user logged on this global unique id 102874 mac 102874 bytes_out 0 102874 bytes_in 0 102874 station_ip 5.119.101.189 102874 port 36 102874 unique_id port 102874 remote_ip 10.8.0.66 102878 username askari 102878 mac 102878 bytes_out 0 102878 bytes_in 0 102878 station_ip 5.119.138.24 102878 port 31 102878 unique_id port 102878 remote_ip 10.8.0.38 102884 username musa 102884 mac 102884 bytes_out 0 102884 bytes_in 0 102884 station_ip 37.129.78.127 102884 port 31 102884 unique_id port 102884 remote_ip 10.8.0.106 102891 username mehdizare 102891 mac 102891 bytes_out 21828 102891 bytes_in 35220 102891 station_ip 5.120.163.85 102891 port 21 102891 unique_id port 102891 remote_ip 10.8.1.22 102894 username amir 102894 mac 102894 bytes_out 110715 102894 bytes_in 123596 102894 station_ip 46.225.232.117 102894 port 31 102894 unique_id port 102894 remote_ip 10.8.0.54 102898 username amir 102898 mac 102898 bytes_out 67889 102898 bytes_in 122534 102898 station_ip 46.225.232.117 102898 port 15 102898 unique_id port 102898 remote_ip 10.8.1.34 102902 username ahmadi 102902 unique_id port 102902 terminate_cause User-Request 102902 bytes_out 42916 102902 bytes_in 254381 102871 kill_reason Another user logged on this global unique id 102871 mac 102871 bytes_out 0 102871 bytes_in 0 102871 station_ip 37.129.58.171 102871 port 38 102871 unique_id port 102873 username mehdizare 102873 mac 102873 bytes_out 63870 102873 bytes_in 87423 102873 station_ip 5.120.163.85 102873 port 19 102873 unique_id port 102873 remote_ip 10.8.1.22 102875 username musa 102875 mac 102875 bytes_out 0 102875 bytes_in 0 102875 station_ip 37.129.58.171 102875 port 38 102875 unique_id port 102876 username khalili 102876 kill_reason Another user logged on this global unique id 102876 mac 102876 bytes_out 0 102876 bytes_in 0 102876 station_ip 5.120.135.235 102876 port 33 102876 unique_id port 102876 remote_ip 10.8.0.78 102880 username tahmasebi 102880 kill_reason Another user logged on this global unique id 102880 mac 102880 bytes_out 0 102880 bytes_in 0 102880 station_ip 5.119.101.189 102880 port 36 102880 unique_id port 102881 username arabpour 102881 unique_id port 102881 terminate_cause User-Request 102881 bytes_out 87552 102881 bytes_in 777624 102881 station_ip 113.203.17.121 102881 port 15729883 102881 nas_port_type Virtual 102881 remote_ip 5.5.5.165 102883 username tahmasebi 102883 kill_reason Another user logged on this global unique id 102883 mac 102883 bytes_out 0 102883 bytes_in 0 102883 station_ip 5.119.101.189 102883 port 36 102883 unique_id port 102885 username mehdizare 102885 mac 102885 bytes_out 51070 102885 bytes_in 85872 102885 station_ip 5.120.163.85 102885 port 19 102885 unique_id port 102885 remote_ip 10.8.1.22 102887 username musa 102887 mac 102887 bytes_out 187698 102887 bytes_in 1416563 102887 station_ip 37.129.78.127 102887 port 37 102887 unique_id port 102887 remote_ip 10.8.0.106 102889 username aminvpn 102889 unique_id port 102889 terminate_cause Lost-Carrier 102889 bytes_out 974592 102889 bytes_in 15840601 102889 station_ip 5.120.185.213 102889 port 15729885 102889 nas_port_type Virtual 102889 remote_ip 5.5.5.168 102892 username amir 102892 mac 102892 bytes_out 0 102892 bytes_in 0 102892 station_ip 46.225.232.117 102892 port 15 102892 unique_id port 102893 username aminvpn 102893 unique_id port 102893 terminate_cause Lost-Carrier 102893 bytes_out 269900 102893 bytes_in 1151653 102893 station_ip 5.120.168.241 102893 port 15729886 102893 nas_port_type Virtual 102893 remote_ip 5.5.5.171 102897 username amir 102897 mac 102897 bytes_out 73374 102897 bytes_in 320757 102897 station_ip 46.225.232.117 102897 port 31 102897 unique_id port 102897 remote_ip 10.8.0.54 102900 username forozande 102900 mac 102900 bytes_out 0 102900 bytes_in 0 102900 station_ip 83.123.194.199 102900 port 15 102900 unique_id port 102900 remote_ip 10.8.1.62 102903 username musa 102903 kill_reason Another user logged on this global unique id 102903 mac 102903 bytes_out 0 102903 bytes_in 0 102903 station_ip 37.129.36.3 102903 port 38 102903 unique_id port 102903 remote_ip 10.8.0.106 102905 username mehdizare 102905 mac 102905 bytes_out 0 102905 bytes_in 0 102905 station_ip 5.120.163.85 102905 port 19 102905 unique_id port 102905 remote_ip 10.8.1.22 102908 username mehdizare 102908 mac 102908 bytes_out 25357 102908 bytes_in 37336 102908 station_ip 5.120.163.85 102908 port 15 102908 unique_id port 102908 remote_ip 10.8.1.22 102910 username askari 102910 mac 102910 bytes_out 0 102910 bytes_in 0 102910 station_ip 5.119.215.57 102910 port 20 102910 unique_id port 102910 remote_ip 10.8.1.30 102914 username mehdizare 102914 mac 102914 bytes_out 0 102914 bytes_in 0 102914 station_ip 5.120.163.85 102877 station_ip 83.122.169.24 102877 port 20 102877 unique_id port 102877 remote_ip 10.8.1.62 102879 username houshang 102879 mac 102879 bytes_out 0 102879 bytes_in 0 102879 station_ip 5.119.182.242 102879 port 37 102879 unique_id port 102879 remote_ip 10.8.0.126 102882 username aminvpn 102882 unique_id port 102882 terminate_cause Lost-Carrier 102882 bytes_out 120442 102882 bytes_in 684825 102882 station_ip 5.120.2.7 102882 port 15729884 102882 nas_port_type Virtual 102882 remote_ip 5.5.5.166 102886 username mirzaei 102886 kill_reason Another user logged on this global unique id 102886 mac 102886 bytes_out 0 102886 bytes_in 0 102886 station_ip 5.119.19.151 102886 port 30 102886 unique_id port 102888 username forozande 102888 mac 102888 bytes_out 431933 102888 bytes_in 4239874 102888 station_ip 83.123.83.3 102888 port 19 102888 unique_id port 102888 remote_ip 10.8.1.62 102890 username tahmasebi 102890 kill_reason Another user logged on this global unique id 102890 mac 102890 bytes_out 0 102890 bytes_in 0 102890 station_ip 5.119.101.189 102890 port 36 102890 unique_id port 102895 username tahmasebi 102895 kill_reason Another user logged on this global unique id 102895 mac 102895 bytes_out 0 102895 bytes_in 0 102895 station_ip 5.119.101.189 102895 port 36 102895 unique_id port 102896 username forozande 102896 mac 102896 bytes_out 1075669 102896 bytes_in 13576545 102896 station_ip 37.129.42.145 102896 port 15 102896 unique_id port 102896 remote_ip 10.8.1.62 102899 username tahmasebi 102899 kill_reason Another user logged on this global unique id 102899 mac 102899 bytes_out 0 102899 bytes_in 0 102899 station_ip 5.119.101.189 102899 port 36 102899 unique_id port 102901 username tahmasebi 102901 kill_reason Another user logged on this global unique id 102901 mac 102901 bytes_out 0 102901 bytes_in 0 102901 station_ip 5.119.101.189 102901 port 36 102901 unique_id port 102904 username sobhan 102904 unique_id port 102904 terminate_cause Lost-Carrier 102904 bytes_out 207138 102904 bytes_in 605446 102904 station_ip 5.120.154.119 102904 port 15729887 102904 nas_port_type Virtual 102904 remote_ip 5.5.5.199 102909 username mehdizare 102909 mac 102909 bytes_out 0 102909 bytes_in 0 102909 station_ip 5.120.163.85 102909 port 15 102909 unique_id port 102909 remote_ip 10.8.1.22 102911 username askari 102911 mac 102911 bytes_out 2682 102911 bytes_in 4295 102911 station_ip 5.119.215.57 102911 port 15 102911 unique_id port 102911 remote_ip 10.8.1.30 102918 username tahmasebi 102918 mac 102918 bytes_out 0 102918 bytes_in 0 102918 station_ip 5.119.101.189 102918 port 36 102918 unique_id port 102919 username mammad 102919 kill_reason Relative expiration date has reached 102919 unique_id port 102919 bytes_out 0 102919 bytes_in 0 102919 station_ip 2.183.242.155 102919 port 15729890 102919 nas_port_type Virtual 102923 username rezasekonji 102923 mac 102923 bytes_out 0 102923 bytes_in 0 102923 station_ip 83.122.209.220 102923 port 38 102923 unique_id port 102923 remote_ip 10.8.0.114 102924 username rezasekonji 102924 mac 102924 bytes_out 0 102924 bytes_in 0 102924 station_ip 83.122.209.220 102924 port 38 102924 unique_id port 102924 remote_ip 10.8.0.114 102926 username rezasekonji 102926 mac 102926 bytes_out 4063 102926 bytes_in 6133 102926 station_ip 83.122.209.220 102926 port 38 102926 unique_id port 102926 remote_ip 10.8.0.114 102937 username askari 102937 kill_reason Another user logged on this global unique id 102937 mac 102937 bytes_out 0 102937 bytes_in 0 102937 station_ip 5.119.215.57 102937 port 19 102937 unique_id port 102902 station_ip 83.123.29.131 102902 port 15729889 102902 nas_port_type Virtual 102902 remote_ip 5.5.5.213 102906 username forozande 102906 mac 102906 bytes_out 312380 102906 bytes_in 2310163 102906 station_ip 37.129.190.75 102906 port 19 102906 unique_id port 102906 remote_ip 10.8.1.62 102907 username musa 102907 mac 102907 bytes_out 0 102907 bytes_in 0 102907 station_ip 37.129.36.3 102907 port 38 102907 unique_id port 102912 username aminvpn 102912 mac 102912 bytes_out 1518746 102912 bytes_in 4787946 102912 station_ip 37.129.56.111 102912 port 31 102912 unique_id port 102912 remote_ip 10.8.0.6 102913 username amir 102913 mac 102913 bytes_out 16356700 102913 bytes_in 35192321 102913 station_ip 46.225.232.117 102913 port 37 102913 unique_id port 102913 remote_ip 10.8.0.54 102915 username musa 102915 mac 102915 bytes_out 0 102915 bytes_in 0 102915 station_ip 113.203.121.193 102915 port 39 102915 unique_id port 102915 remote_ip 10.8.0.106 102916 username tahmasebi 102916 kill_reason Another user logged on this global unique id 102916 mac 102916 bytes_out 0 102916 bytes_in 0 102916 station_ip 5.119.101.189 102916 port 36 102916 unique_id port 102920 username mammad 102920 kill_reason Relative expiration date has reached 102920 unique_id port 102920 bytes_out 0 102920 bytes_in 0 102920 station_ip 2.183.242.155 102920 port 15729891 102920 nas_port_type Virtual 102921 username mammad 102921 kill_reason Relative expiration date has reached 102921 unique_id port 102921 bytes_out 0 102921 bytes_in 0 102921 station_ip 2.183.242.155 102921 port 15729892 102921 nas_port_type Virtual 102922 username madadi2 102922 mac 102922 bytes_out 177740 102922 bytes_in 1189645 102922 station_ip 5.119.119.248 102922 port 39 102922 unique_id port 102922 remote_ip 10.8.0.26 102925 username rezasekonji 102925 mac 102925 bytes_out 0 102925 bytes_in 0 102925 station_ip 83.122.209.220 102925 port 38 102925 unique_id port 102925 remote_ip 10.8.0.114 102932 username musa 102932 kill_reason Another user logged on this global unique id 102932 mac 102932 bytes_out 0 102932 bytes_in 0 102932 station_ip 113.203.39.85 102932 port 36 102932 unique_id port 102932 remote_ip 10.8.0.106 102934 username aminvpn 102934 mac 102934 bytes_out 5454 102934 bytes_in 10823 102934 station_ip 37.129.56.111 102934 port 20 102934 unique_id port 102934 remote_ip 10.8.1.26 102936 username aminvpn 102936 mac 102936 bytes_out 0 102936 bytes_in 0 102936 station_ip 37.129.56.111 102936 port 31 102936 unique_id port 102936 remote_ip 10.8.0.6 102938 username forozande 102938 mac 102938 bytes_out 0 102938 bytes_in 0 102938 station_ip 83.123.10.48 102938 port 20 102938 unique_id port 102938 remote_ip 10.8.1.62 102940 username amir 102940 kill_reason Another user logged on this global unique id 102940 mac 102940 bytes_out 0 102940 bytes_in 0 102940 station_ip 46.225.232.117 102940 port 37 102940 unique_id port 102940 remote_ip 10.8.0.54 102943 username madadi2 102943 mac 102943 bytes_out 0 102943 bytes_in 0 102943 station_ip 5.120.169.120 102943 port 21 102943 unique_id port 102943 remote_ip 10.8.1.18 102945 username forozande 102945 mac 102945 bytes_out 0 102945 bytes_in 0 102945 station_ip 83.122.38.13 102945 port 19 102945 unique_id port 102945 remote_ip 10.8.1.62 102946 username mohammadmahdi 102946 mac 102946 bytes_out 0 102946 bytes_in 0 102946 station_ip 5.120.118.166 102946 port 31 102946 unique_id port 102946 remote_ip 10.8.0.34 102950 username mahdiyehalizadeh 102950 mac 102950 bytes_out 948603 102914 port 38 102914 unique_id port 102914 remote_ip 10.8.0.22 102917 username askari 102917 mac 102917 bytes_out 24883 102917 bytes_in 27461 102917 station_ip 5.119.215.57 102917 port 19 102917 unique_id port 102917 remote_ip 10.8.1.30 102927 username rezasekonji 102927 mac 102927 bytes_out 0 102927 bytes_in 0 102927 station_ip 83.122.209.220 102927 port 20 102927 unique_id port 102927 remote_ip 10.8.1.90 102928 username rezasekonji 102928 mac 102928 bytes_out 0 102928 bytes_in 0 102928 station_ip 83.122.209.220 102928 port 21 102928 unique_id port 102928 remote_ip 10.8.1.90 102929 username malekpoir 102929 mac 102929 bytes_out 783685 102929 bytes_in 6446769 102929 station_ip 5.119.68.78 102929 port 27 102929 unique_id port 102929 remote_ip 10.8.0.130 102930 username madadi2 102930 mac 102930 bytes_out 0 102930 bytes_in 0 102930 station_ip 5.119.100.24 102930 port 20 102930 unique_id port 102930 remote_ip 10.8.1.18 102931 username aminvpn 102931 mac 102931 bytes_out 0 102931 bytes_in 0 102931 station_ip 37.129.56.111 102931 port 31 102931 unique_id port 102931 remote_ip 10.8.0.6 102933 username abbasaskari 102933 mac 102933 bytes_out 166674 102933 bytes_in 314501 102933 station_ip 83.123.243.155 102933 port 38 102933 unique_id port 102933 remote_ip 10.8.0.94 102935 username aminvpn 102935 mac 102935 bytes_out 0 102935 bytes_in 0 102935 station_ip 37.129.56.111 102935 port 20 102935 unique_id port 102935 remote_ip 10.8.1.26 102939 username askari 102939 mac 102939 bytes_out 0 102939 bytes_in 0 102939 station_ip 5.119.215.57 102939 port 19 102939 unique_id port 102941 username musa 102941 kill_reason Another user logged on this global unique id 102941 mac 102941 bytes_out 0 102941 bytes_in 0 102941 station_ip 113.203.39.85 102941 port 36 102941 unique_id port 102942 username abbasaskari 102942 mac 102942 bytes_out 0 102942 bytes_in 0 102942 station_ip 83.123.223.39 102942 port 39 102942 unique_id port 102942 remote_ip 10.8.0.94 102944 username musa 102944 mac 102944 bytes_out 0 102944 bytes_in 0 102944 station_ip 113.203.39.85 102944 port 36 102944 unique_id port 102947 username mohammadmahdi 102947 mac 102947 bytes_out 0 102947 bytes_in 0 102947 station_ip 5.120.118.166 102947 port 36 102947 unique_id port 102947 remote_ip 10.8.0.34 102952 username mohammadmahdi 102952 kill_reason Another user logged on this global unique id 102952 mac 102952 bytes_out 0 102952 bytes_in 0 102952 station_ip 5.120.118.166 102952 port 40 102952 unique_id port 102952 remote_ip 10.8.0.34 102953 username malekpoir 102953 mac 102953 bytes_out 98175 102953 bytes_in 112945 102953 station_ip 5.119.68.78 102953 port 27 102953 unique_id port 102953 remote_ip 10.8.0.130 102956 username mohammadmahdi 102956 kill_reason Another user logged on this global unique id 102956 mac 102956 bytes_out 0 102956 bytes_in 0 102956 station_ip 5.120.118.166 102956 port 40 102956 unique_id port 102957 username musa 102957 kill_reason Another user logged on this global unique id 102957 mac 102957 bytes_out 0 102957 bytes_in 0 102957 station_ip 113.203.39.85 102957 port 39 102957 unique_id port 102957 remote_ip 10.8.0.106 102961 username aminvpn 102961 mac 102961 bytes_out 566457 102961 bytes_in 5922558 102961 station_ip 113.203.55.221 102961 port 36 102961 unique_id port 102961 remote_ip 10.8.0.6 102965 username abbasaskari 102965 mac 102965 bytes_out 10184 102965 bytes_in 30697 102965 station_ip 83.123.136.67 102965 port 36 102965 unique_id port 102937 remote_ip 10.8.1.30 102948 username houshang 102948 mac 102948 bytes_out 0 102948 bytes_in 0 102948 station_ip 5.119.182.242 102948 port 31 102948 unique_id port 102948 remote_ip 10.8.0.126 102949 username houshang 102949 mac 102949 bytes_out 240798 102949 bytes_in 1121063 102949 station_ip 5.119.182.242 102949 port 36 102949 unique_id port 102949 remote_ip 10.8.0.126 102951 username madadi2 102951 mac 102951 bytes_out 94796 102951 bytes_in 186586 102951 station_ip 5.120.44.13 102951 port 19 102951 unique_id port 102951 remote_ip 10.8.1.18 102955 username malekpoir 102955 mac 102955 bytes_out 10051 102955 bytes_in 17961 102955 station_ip 5.119.68.78 102955 port 31 102955 unique_id port 102955 remote_ip 10.8.0.130 102958 username musa 102958 kill_reason Another user logged on this global unique id 102958 mac 102958 bytes_out 0 102958 bytes_in 0 102958 station_ip 113.203.39.85 102958 port 39 102958 unique_id port 102963 username musa 102963 kill_reason Another user logged on this global unique id 102963 mac 102963 bytes_out 0 102963 bytes_in 0 102963 station_ip 113.203.39.85 102963 port 39 102963 unique_id port 102968 username abbasaskari 102968 mac 102968 bytes_out 0 102968 bytes_in 0 102968 station_ip 83.123.136.67 102968 port 36 102968 unique_id port 102968 remote_ip 10.8.0.94 102969 username alihosseini 102969 kill_reason Another user logged on this global unique id 102969 mac 102969 bytes_out 0 102969 bytes_in 0 102969 station_ip 5.119.97.246 102969 port 31 102969 unique_id port 102969 remote_ip 10.8.0.14 102976 username alihosseini 102976 mac 102976 bytes_out 0 102976 bytes_in 0 102976 station_ip 5.119.97.246 102976 port 31 102976 unique_id port 102976 remote_ip 10.8.0.14 102978 username alireza 102978 unique_id port 102978 terminate_cause User-Request 102978 bytes_out 1199856 102978 bytes_in 20204159 102978 station_ip 5.120.84.15 102978 port 15729895 102978 nas_port_type Virtual 102978 remote_ip 5.5.5.147 102979 username alihosseini 102979 mac 102979 bytes_out 0 102979 bytes_in 0 102979 station_ip 5.119.97.246 102979 port 31 102979 unique_id port 102979 remote_ip 10.8.0.14 102980 username malekpoir 102980 kill_reason Maximum check online fails reached 102980 mac 102980 bytes_out 0 102980 bytes_in 0 102980 station_ip 5.119.68.78 102980 port 27 102980 unique_id port 102982 username alihosseini 102982 mac 102982 bytes_out 2678 102982 bytes_in 4878 102982 station_ip 5.119.97.246 102982 port 31 102982 unique_id port 102982 remote_ip 10.8.0.14 102986 username mammad 102986 kill_reason Relative expiration date has reached 102986 unique_id port 102986 bytes_out 0 102986 bytes_in 0 102986 station_ip 2.183.242.155 102986 port 15729896 102986 nas_port_type Virtual 102987 username mehdizare 102987 mac 102987 bytes_out 0 102987 bytes_in 0 102987 station_ip 5.119.202.96 102987 port 19 102987 unique_id port 102987 remote_ip 10.8.1.22 102991 username aminvpn 102991 mac 102991 bytes_out 0 102991 bytes_in 0 102991 station_ip 5.119.130.43 102991 port 31 102991 unique_id port 102991 remote_ip 10.8.0.6 102992 username aminvpn 102992 mac 102992 bytes_out 0 102992 bytes_in 0 102992 station_ip 5.119.130.43 102992 port 31 102992 unique_id port 102992 remote_ip 10.8.0.6 102993 username aminvpn 102993 mac 102993 bytes_out 0 102993 bytes_in 0 102993 station_ip 83.123.21.137 102993 port 36 102993 unique_id port 102993 remote_ip 10.8.0.6 102995 username aminvpn 102995 mac 102995 bytes_out 0 102995 bytes_in 0 102995 station_ip 83.123.21.137 102995 port 36 102950 bytes_in 11820948 102950 station_ip 113.203.26.95 102950 port 38 102950 unique_id port 102950 remote_ip 10.8.0.42 102954 username amir 102954 kill_reason Another user logged on this global unique id 102954 mac 102954 bytes_out 0 102954 bytes_in 0 102954 station_ip 46.225.232.117 102954 port 37 102954 unique_id port 102959 username mohammadmahdi 102959 kill_reason Another user logged on this global unique id 102959 mac 102959 bytes_out 0 102959 bytes_in 0 102959 station_ip 5.120.118.166 102959 port 40 102959 unique_id port 102960 username khalili 102960 kill_reason Another user logged on this global unique id 102960 mac 102960 bytes_out 0 102960 bytes_in 0 102960 station_ip 5.120.135.235 102960 port 33 102960 unique_id port 102962 username abbasaskari 102962 mac 102962 bytes_out 0 102962 bytes_in 0 102962 station_ip 83.123.136.67 102962 port 31 102962 unique_id port 102962 remote_ip 10.8.0.94 102964 username mohammadmahdi 102964 mac 102964 bytes_out 0 102964 bytes_in 0 102964 station_ip 5.120.118.166 102964 port 40 102964 unique_id port 102967 username musa 102967 kill_reason Another user logged on this global unique id 102967 mac 102967 bytes_out 0 102967 bytes_in 0 102967 station_ip 113.203.39.85 102967 port 39 102967 unique_id port 102970 username musa 102970 kill_reason Another user logged on this global unique id 102970 mac 102970 bytes_out 0 102970 bytes_in 0 102970 station_ip 113.203.39.85 102970 port 39 102970 unique_id port 102971 username aminvpn 102971 mac 102971 bytes_out 0 102971 bytes_in 0 102971 station_ip 5.119.130.43 102971 port 36 102971 unique_id port 102971 remote_ip 10.8.0.6 102974 username alihosseini 102974 mac 102974 bytes_out 0 102974 bytes_in 0 102974 station_ip 5.119.97.246 102974 port 19 102974 unique_id port 102974 remote_ip 10.8.1.6 102977 username malekpoir 102977 mac 102977 bytes_out 487862 102977 bytes_in 7984774 102977 station_ip 5.119.68.78 102977 port 27 102977 unique_id port 102977 remote_ip 10.8.0.130 102981 username mehdizare 102981 mac 102981 bytes_out 2143252 102981 bytes_in 7526090 102981 station_ip 5.119.202.96 102981 port 15 102981 unique_id port 102981 remote_ip 10.8.1.22 102983 username mehdizare 102983 mac 102983 bytes_out 8571 102983 bytes_in 10412 102983 station_ip 5.119.202.96 102983 port 19 102983 unique_id port 102983 remote_ip 10.8.1.22 102988 username aminvpn 102988 mac 102988 bytes_out 366992 102988 bytes_in 1457644 102988 station_ip 83.123.21.137 102988 port 36 102988 unique_id port 102988 remote_ip 10.8.0.6 102989 username aminvpn 102989 mac 102989 bytes_out 0 102989 bytes_in 0 102989 station_ip 5.119.130.43 102989 port 31 102989 unique_id port 102989 remote_ip 10.8.0.6 102994 username aminvpn 102994 mac 102994 bytes_out 0 102994 bytes_in 0 102994 station_ip 5.119.130.43 102994 port 31 102994 unique_id port 102994 remote_ip 10.8.0.6 102997 username aminvpn 102997 mac 102997 bytes_out 0 102997 bytes_in 0 102997 station_ip 83.123.21.137 102997 port 36 102997 unique_id port 102997 remote_ip 10.8.0.6 102999 username amir 102999 kill_reason Another user logged on this global unique id 102999 mac 102999 bytes_out 0 102999 bytes_in 0 102999 station_ip 46.225.232.117 102999 port 37 102999 unique_id port 103000 username aminvpn 103000 mac 103000 bytes_out 0 103000 bytes_in 0 103000 station_ip 83.123.21.137 103000 port 31 103000 unique_id port 103000 remote_ip 10.8.0.6 103002 username aminvpn 103002 mac 103002 bytes_out 0 103002 bytes_in 0 103002 station_ip 83.123.21.137 102965 remote_ip 10.8.0.94 102966 username amir 102966 kill_reason Another user logged on this global unique id 102966 mac 102966 bytes_out 0 102966 bytes_in 0 102966 station_ip 46.225.232.117 102966 port 37 102966 unique_id port 102972 username abbasaskari 102972 mac 102972 bytes_out 0 102972 bytes_in 0 102972 station_ip 83.123.136.67 102972 port 38 102972 unique_id port 102972 remote_ip 10.8.0.94 102973 username alihosseini 102973 mac 102973 bytes_out 0 102973 bytes_in 0 102973 station_ip 5.119.97.246 102973 port 31 102973 unique_id port 102975 username ahmadipour 102975 unique_id port 102975 terminate_cause User-Request 102975 bytes_out 1930381 102975 bytes_in 41950887 102975 station_ip 83.123.26.86 102975 port 15729894 102975 nas_port_type Virtual 102975 remote_ip 5.5.5.146 102984 username amir 102984 kill_reason Another user logged on this global unique id 102984 mac 102984 bytes_out 0 102984 bytes_in 0 102984 station_ip 46.225.232.117 102984 port 37 102984 unique_id port 102985 username mehdizare 102985 kill_reason Maximum check online fails reached 102985 mac 102985 bytes_out 0 102985 bytes_in 0 102985 station_ip 5.119.202.96 102985 port 15 102985 unique_id port 102990 username aminvpn 102990 mac 102990 bytes_out 0 102990 bytes_in 0 102990 station_ip 83.123.21.137 102990 port 36 102990 unique_id port 102990 remote_ip 10.8.0.6 103006 username aminvpn 103006 mac 103006 bytes_out 0 103006 bytes_in 0 103006 station_ip 5.119.130.43 103006 port 38 103006 unique_id port 103006 remote_ip 10.8.0.6 103009 username aminvpn 103009 mac 103009 bytes_out 0 103009 bytes_in 0 103009 station_ip 5.119.130.43 103009 port 38 103009 unique_id port 103009 remote_ip 10.8.0.6 103011 username mehdizare 103011 mac 103011 bytes_out 8245 103011 bytes_in 11556 103011 station_ip 5.119.202.96 103011 port 19 103011 unique_id port 103011 remote_ip 10.8.1.22 103012 username aminvpn 103012 mac 103012 bytes_out 0 103012 bytes_in 0 103012 station_ip 83.123.21.137 103012 port 39 103012 unique_id port 103012 remote_ip 10.8.0.6 103014 username aminvpn 103014 mac 103014 bytes_out 0 103014 bytes_in 0 103014 station_ip 5.119.130.43 103014 port 41 103014 unique_id port 103014 remote_ip 10.8.0.6 103018 username forozande 103018 mac 103018 bytes_out 96501 103018 bytes_in 209702 103018 station_ip 37.129.85.21 103018 port 19 103018 unique_id port 103018 remote_ip 10.8.1.62 103022 username malekpoir 103022 kill_reason Another user logged on this global unique id 103022 mac 103022 bytes_out 0 103022 bytes_in 0 103022 station_ip 5.119.68.78 103022 port 31 103022 unique_id port 103022 remote_ip 10.8.0.130 103023 username aminvpn 103023 mac 103023 bytes_out 0 103023 bytes_in 0 103023 station_ip 83.123.21.137 103023 port 42 103023 unique_id port 103023 remote_ip 10.8.0.6 103024 username aminvpn 103024 mac 103024 bytes_out 0 103024 bytes_in 0 103024 station_ip 5.119.130.43 103024 port 41 103024 unique_id port 103024 remote_ip 10.8.0.6 103026 username aminvpn 103026 mac 103026 bytes_out 0 103026 bytes_in 0 103026 station_ip 5.119.130.43 103026 port 41 103026 unique_id port 103026 remote_ip 10.8.0.6 103027 username aminvpn 103027 mac 103027 bytes_out 0 103027 bytes_in 0 103027 station_ip 83.123.21.137 103027 port 42 103027 unique_id port 103027 remote_ip 10.8.0.6 103029 username aminvpn 103029 mac 103029 bytes_out 0 103029 bytes_in 0 103029 station_ip 83.123.21.137 103029 port 42 103029 unique_id port 103029 remote_ip 10.8.0.6 103033 username mammad 102995 unique_id port 102995 remote_ip 10.8.0.6 102996 username aminvpn 102996 mac 102996 bytes_out 0 102996 bytes_in 0 102996 station_ip 5.119.130.43 102996 port 31 102996 unique_id port 102996 remote_ip 10.8.0.6 102998 username aminvpn 102998 mac 102998 bytes_out 0 102998 bytes_in 0 102998 station_ip 5.119.130.43 102998 port 31 102998 unique_id port 102998 remote_ip 10.8.0.6 103001 username aminvpn 103001 mac 103001 bytes_out 0 103001 bytes_in 0 103001 station_ip 5.119.130.43 103001 port 38 103001 unique_id port 103001 remote_ip 10.8.0.6 103003 username musa 103003 mac 103003 bytes_out 0 103003 bytes_in 0 103003 station_ip 113.203.39.85 103003 port 39 103003 unique_id port 103008 username mehdizare 103008 mac 103008 bytes_out 46625 103008 bytes_in 36741 103008 station_ip 5.119.202.96 103008 port 20 103008 unique_id port 103008 remote_ip 10.8.1.22 103013 username houshang 103013 mac 103013 bytes_out 0 103013 bytes_in 0 103013 station_ip 5.119.1.214 103013 port 36 103013 unique_id port 103013 remote_ip 10.8.0.126 103017 username aminvpn 103017 mac 103017 bytes_out 0 103017 bytes_in 0 103017 station_ip 83.123.21.137 103017 port 42 103017 unique_id port 103017 remote_ip 10.8.0.6 103019 username aminvpn 103019 mac 103019 bytes_out 0 103019 bytes_in 0 103019 station_ip 5.119.130.43 103019 port 41 103019 unique_id port 103019 remote_ip 10.8.0.6 103020 username aminvpn 103020 mac 103020 bytes_out 0 103020 bytes_in 0 103020 station_ip 83.123.21.137 103020 port 42 103020 unique_id port 103020 remote_ip 10.8.0.6 103021 username aminvpn 103021 mac 103021 bytes_out 0 103021 bytes_in 0 103021 station_ip 5.119.130.43 103021 port 41 103021 unique_id port 103021 remote_ip 10.8.0.6 103025 username aminvpn 103025 mac 103025 bytes_out 0 103025 bytes_in 0 103025 station_ip 83.123.21.137 103025 port 42 103025 unique_id port 103025 remote_ip 10.8.0.6 103028 username aminvpn 103028 mac 103028 bytes_out 0 103028 bytes_in 0 103028 station_ip 5.119.130.43 103028 port 41 103028 unique_id port 103028 remote_ip 10.8.0.6 103030 username aminvpn 103030 mac 103030 bytes_out 0 103030 bytes_in 0 103030 station_ip 5.119.130.43 103030 port 41 103030 unique_id port 103030 remote_ip 10.8.0.6 103031 username mammad 103031 kill_reason Relative expiration date has reached 103031 unique_id port 103031 bytes_out 0 103031 bytes_in 0 103031 station_ip 2.183.242.155 103031 port 15729899 103031 nas_port_type Virtual 103037 username amir 103037 mac 103037 bytes_out 0 103037 bytes_in 0 103037 station_ip 46.225.232.117 103037 port 37 103037 unique_id port 103052 username aminvpn 103052 unique_id port 103052 terminate_cause Lost-Carrier 103052 bytes_out 47158 103052 bytes_in 126698 103052 station_ip 5.119.130.43 103052 port 15729901 103052 nas_port_type Virtual 103052 remote_ip 5.5.5.153 103061 username alireza 103061 unique_id port 103061 terminate_cause User-Request 103061 bytes_out 301072 103061 bytes_in 7804676 103061 station_ip 5.120.84.15 103061 port 15729905 103061 nas_port_type Virtual 103061 remote_ip 5.5.5.159 103065 username malekpoir 103065 mac 103065 bytes_out 1378760 103065 bytes_in 20604926 103065 station_ip 5.119.68.78 103065 port 31 103065 unique_id port 103065 remote_ip 10.8.0.130 103066 username aminvpn 103066 mac 103066 bytes_out 13447 103066 bytes_in 20898 103066 station_ip 83.123.21.137 103066 port 31 103066 unique_id port 103066 remote_ip 10.8.0.6 103068 username alihosseini 103002 port 40 103002 unique_id port 103002 remote_ip 10.8.0.6 103004 username aminvpn 103004 mac 103004 bytes_out 0 103004 bytes_in 0 103004 station_ip 5.119.130.43 103004 port 38 103004 unique_id port 103004 remote_ip 10.8.0.6 103005 username aminvpn 103005 mac 103005 bytes_out 0 103005 bytes_in 0 103005 station_ip 83.123.21.137 103005 port 39 103005 unique_id port 103005 remote_ip 10.8.0.6 103007 username aminvpn 103007 mac 103007 bytes_out 0 103007 bytes_in 0 103007 station_ip 83.123.21.137 103007 port 39 103007 unique_id port 103007 remote_ip 10.8.0.6 103010 username aminvpn 103010 mac 103010 bytes_out 0 103010 bytes_in 0 103010 station_ip 5.119.130.43 103010 port 38 103010 unique_id port 103010 remote_ip 10.8.0.6 103015 username aminvpn 103015 mac 103015 bytes_out 0 103015 bytes_in 0 103015 station_ip 83.123.21.137 103015 port 39 103015 unique_id port 103015 remote_ip 10.8.0.6 103016 username aminvpn 103016 mac 103016 bytes_out 0 103016 bytes_in 0 103016 station_ip 5.119.130.43 103016 port 41 103016 unique_id port 103016 remote_ip 10.8.0.6 103032 username aminvpn 103032 mac 103032 bytes_out 0 103032 bytes_in 0 103032 station_ip 83.123.21.137 103032 port 42 103032 unique_id port 103032 remote_ip 10.8.0.6 103035 username houshang 103035 kill_reason Another user logged on this global unique id 103035 mac 103035 bytes_out 0 103035 bytes_in 0 103035 station_ip 5.119.1.214 103035 port 36 103035 unique_id port 103035 remote_ip 10.8.0.126 103036 username aminvpn 103036 mac 103036 bytes_out 0 103036 bytes_in 0 103036 station_ip 83.123.21.137 103036 port 42 103036 unique_id port 103036 remote_ip 10.8.0.6 103039 username aminvpn 103039 mac 103039 bytes_out 0 103039 bytes_in 0 103039 station_ip 5.119.130.43 103039 port 41 103039 unique_id port 103039 remote_ip 10.8.0.6 103041 username aminvpn 103041 mac 103041 bytes_out 0 103041 bytes_in 0 103041 station_ip 5.119.130.43 103041 port 41 103041 unique_id port 103041 remote_ip 10.8.0.6 103042 username aminvpn 103042 mac 103042 bytes_out 0 103042 bytes_in 0 103042 station_ip 83.123.21.137 103042 port 37 103042 unique_id port 103042 remote_ip 10.8.0.6 103044 username aminvpn 103044 mac 103044 bytes_out 0 103044 bytes_in 0 103044 station_ip 5.119.130.43 103044 port 41 103044 unique_id port 103044 remote_ip 10.8.0.6 103046 username aminvpn 103046 mac 103046 bytes_out 0 103046 bytes_in 0 103046 station_ip 5.119.130.43 103046 port 41 103046 unique_id port 103046 remote_ip 10.8.0.6 103049 username musa 103049 mac 103049 bytes_out 80617 103049 bytes_in 258052 103049 station_ip 113.203.39.85 103049 port 40 103049 unique_id port 103049 remote_ip 10.8.0.106 103050 username aminvpn 103050 mac 103050 bytes_out 0 103050 bytes_in 0 103050 station_ip 83.123.21.137 103050 port 39 103050 unique_id port 103050 remote_ip 10.8.0.6 103051 username aminvpn 103051 mac 103051 bytes_out 0 103051 bytes_in 0 103051 station_ip 5.119.130.43 103051 port 41 103051 unique_id port 103051 remote_ip 10.8.0.6 103054 username houshang 103054 mac 103054 bytes_out 0 103054 bytes_in 0 103054 station_ip 5.119.1.214 103054 port 36 103054 unique_id port 103056 username aminvpn 103056 kill_reason Maximum check online fails reached 103056 unique_id port 103056 bytes_out 4682051 103056 bytes_in 131917519 103056 station_ip 31.57.129.227 103056 port 15729898 103056 nas_port_type Virtual 103056 remote_ip 5.5.5.151 103057 username mammad 103033 kill_reason Relative expiration date has reached 103033 unique_id port 103033 bytes_out 0 103033 bytes_in 0 103033 station_ip 2.183.242.155 103033 port 15729900 103033 nas_port_type Virtual 103034 username aminvpn 103034 mac 103034 bytes_out 0 103034 bytes_in 0 103034 station_ip 5.119.130.43 103034 port 41 103034 unique_id port 103034 remote_ip 10.8.0.6 103038 username madadi2 103038 mac 103038 bytes_out 0 103038 bytes_in 0 103038 station_ip 5.119.242.78 103038 port 19 103038 unique_id port 103038 remote_ip 10.8.1.18 103040 username aminvpn 103040 mac 103040 bytes_out 0 103040 bytes_in 0 103040 station_ip 83.123.21.137 103040 port 37 103040 unique_id port 103040 remote_ip 10.8.0.6 103043 username alihosseini 103043 mac 103043 bytes_out 1884764 103043 bytes_in 18733616 103043 station_ip 5.119.81.212 103043 port 39 103043 unique_id port 103043 remote_ip 10.8.0.14 103045 username aminvpn 103045 mac 103045 bytes_out 0 103045 bytes_in 0 103045 station_ip 83.123.21.137 103045 port 39 103045 unique_id port 103045 remote_ip 10.8.0.6 103047 username aminvpn 103047 mac 103047 bytes_out 0 103047 bytes_in 0 103047 station_ip 83.123.21.137 103047 port 39 103047 unique_id port 103047 remote_ip 10.8.0.6 103048 username aminvpn 103048 mac 103048 bytes_out 0 103048 bytes_in 0 103048 station_ip 5.119.130.43 103048 port 41 103048 unique_id port 103048 remote_ip 10.8.0.6 103053 username aminvpn 103053 unique_id port 103053 terminate_cause Lost-Carrier 103053 bytes_out 211524 103053 bytes_in 1218834 103053 station_ip 5.120.7.36 103053 port 15729897 103053 nas_port_type Virtual 103053 remote_ip 5.5.5.150 103055 username malekpoir 103055 mac 103055 bytes_out 0 103055 bytes_in 0 103055 station_ip 5.119.68.78 103055 port 31 103055 unique_id port 103058 username mammad 103058 kill_reason Relative expiration date has reached 103058 unique_id port 103058 bytes_out 0 103058 bytes_in 0 103058 station_ip 2.183.242.155 103058 port 15729904 103058 nas_port_type Virtual 103059 username mammad 103059 kill_reason Relative expiration date has reached 103059 unique_id port 103059 bytes_out 0 103059 bytes_in 0 103059 station_ip 2.183.242.155 103059 port 15729906 103059 nas_port_type Virtual 103060 username forozande 103060 mac 103060 bytes_out 0 103060 bytes_in 0 103060 station_ip 37.129.8.127 103060 port 19 103060 unique_id port 103060 remote_ip 10.8.1.62 103064 username aminvpn 103064 mac 103064 bytes_out 312516 103064 bytes_in 3975036 103064 station_ip 83.123.21.137 103064 port 39 103064 unique_id port 103064 remote_ip 10.8.0.6 103070 username rezasekonji 103070 mac 103070 bytes_out 0 103070 bytes_in 0 103070 station_ip 37.129.177.106 103070 port 20 103070 unique_id port 103070 remote_ip 10.8.1.90 103071 username rezasekonji 103071 mac 103071 bytes_out 0 103071 bytes_in 0 103071 station_ip 37.129.177.106 103071 port 20 103071 unique_id port 103071 remote_ip 10.8.1.90 103072 username rezasekonji 103072 mac 103072 bytes_out 0 103072 bytes_in 0 103072 station_ip 37.129.177.106 103072 port 20 103072 unique_id port 103072 remote_ip 10.8.1.90 103077 username rezasekonji 103077 mac 103077 bytes_out 0 103077 bytes_in 0 103077 station_ip 37.129.177.106 103077 port 40 103077 unique_id port 103077 remote_ip 10.8.0.114 103079 username mammad 103079 kill_reason Relative expiration date has reached 103079 unique_id port 103079 bytes_out 0 103079 bytes_in 0 103079 station_ip 2.183.242.155 103079 port 15729910 103079 nas_port_type Virtual 103080 username alihosseini 103080 mac 103057 kill_reason Relative expiration date has reached 103057 unique_id port 103057 bytes_out 0 103057 bytes_in 0 103057 station_ip 2.183.242.155 103057 port 15729903 103057 nas_port_type Virtual 103062 username khalili 103062 mac 103062 bytes_out 0 103062 bytes_in 0 103062 station_ip 5.120.135.235 103062 port 33 103062 unique_id port 103063 username aminvpn 103063 unique_id port 103063 terminate_cause Lost-Carrier 103063 bytes_out 10122185 103063 bytes_in 263633230 103063 station_ip 5.119.130.43 103063 port 15729902 103063 nas_port_type Virtual 103063 remote_ip 5.5.5.158 103067 username madadi2 103067 mac 103067 bytes_out 258440 103067 bytes_in 202864 103067 station_ip 5.120.15.166 103067 port 40 103067 unique_id port 103067 remote_ip 10.8.0.26 103069 username aminvpn 103069 mac 103069 bytes_out 1269793 103069 bytes_in 18286339 103069 station_ip 113.203.111.17 103069 port 42 103069 unique_id port 103069 remote_ip 10.8.0.6 103073 username alirr 103073 unique_id port 103073 terminate_cause User-Request 103073 bytes_out 105247 103073 bytes_in 387033 103073 station_ip 5.134.132.166 103073 port 15729908 103073 nas_port_type Virtual 103073 remote_ip 5.5.5.254 103074 username rezasekonji 103074 mac 103074 bytes_out 0 103074 bytes_in 0 103074 station_ip 37.129.177.106 103074 port 40 103074 unique_id port 103074 remote_ip 10.8.0.114 103081 username rezasekonji 103081 mac 103081 bytes_out 0 103081 bytes_in 0 103081 station_ip 37.129.177.106 103081 port 40 103081 unique_id port 103081 remote_ip 10.8.0.114 103087 username alireza 103087 unique_id port 103087 terminate_cause User-Request 103087 bytes_out 2297189 103087 bytes_in 59744475 103087 station_ip 5.120.84.15 103087 port 15729907 103087 nas_port_type Virtual 103087 remote_ip 5.5.5.160 103092 username rezasekonji 103092 mac 103092 bytes_out 0 103092 bytes_in 0 103092 station_ip 37.129.177.106 103092 port 37 103092 unique_id port 103092 remote_ip 10.8.0.114 103094 username forozande 103094 mac 103094 bytes_out 2958141 103094 bytes_in 47912879 103094 station_ip 113.203.8.83 103094 port 19 103094 unique_id port 103094 remote_ip 10.8.1.62 103095 username mehdizare 103095 mac 103095 bytes_out 0 103095 bytes_in 0 103095 station_ip 5.119.202.96 103095 port 31 103095 unique_id port 103095 remote_ip 10.8.0.22 103096 username rezasekonji 103096 mac 103096 bytes_out 0 103096 bytes_in 0 103096 station_ip 37.129.177.106 103096 port 31 103096 unique_id port 103096 remote_ip 10.8.0.114 103100 username rezasekonji 103100 mac 103100 bytes_out 0 103100 bytes_in 0 103100 station_ip 37.129.177.106 103100 port 31 103100 unique_id port 103100 remote_ip 10.8.0.114 103102 username mammad 103102 kill_reason Relative expiration date has reached 103102 unique_id port 103102 bytes_out 0 103102 bytes_in 0 103102 station_ip 2.183.242.155 103102 port 15729912 103102 nas_port_type Virtual 103106 username malekpoir 103106 mac 103106 bytes_out 0 103106 bytes_in 0 103106 station_ip 5.119.68.78 103106 port 33 103106 unique_id port 103111 username khalili 103111 mac 103111 bytes_out 0 103111 bytes_in 0 103111 station_ip 5.120.93.246 103111 port 36 103111 unique_id port 103111 remote_ip 10.8.0.78 103112 username forozande 103112 mac 103112 bytes_out 301178 103112 bytes_in 2424493 103112 station_ip 113.203.6.185 103112 port 19 103112 unique_id port 103112 remote_ip 10.8.1.62 103114 username houshang 103114 mac 103114 bytes_out 0 103114 bytes_in 0 103114 station_ip 5.119.1.214 103114 port 40 103114 unique_id port 103114 remote_ip 10.8.0.126 103068 kill_reason Another user logged on this global unique id 103068 mac 103068 bytes_out 0 103068 bytes_in 0 103068 station_ip 5.119.81.212 103068 port 37 103068 unique_id port 103068 remote_ip 10.8.0.14 103075 username bcboard 103075 unique_id port 103075 terminate_cause Lost-Carrier 103075 bytes_out 10606167 103075 bytes_in 268232156 103075 station_ip 113.203.82.150 103075 port 15729893 103075 nas_port_type Virtual 103075 remote_ip 5.5.5.142 103076 username malekpoir 103076 mac 103076 bytes_out 0 103076 bytes_in 0 103076 station_ip 5.119.68.78 103076 port 33 103076 unique_id port 103076 remote_ip 10.8.0.130 103078 username amir 103078 mac 103078 bytes_out 0 103078 bytes_in 0 103078 station_ip 46.225.232.117 103078 port 39 103078 unique_id port 103078 remote_ip 10.8.0.54 103086 username morteza 103086 mac 103086 bytes_out 0 103086 bytes_in 0 103086 station_ip 83.123.11.168 103086 port 41 103086 unique_id port 103086 remote_ip 10.8.0.90 103088 username amir 103088 mac 103088 bytes_out 0 103088 bytes_in 0 103088 station_ip 46.225.232.117 103088 port 39 103088 unique_id port 103088 remote_ip 10.8.0.54 103089 username rezasekonji 103089 mac 103089 bytes_out 0 103089 bytes_in 0 103089 station_ip 37.129.177.106 103089 port 37 103089 unique_id port 103089 remote_ip 10.8.0.114 103090 username rezasekonji 103090 mac 103090 bytes_out 0 103090 bytes_in 0 103090 station_ip 37.129.177.106 103090 port 37 103090 unique_id port 103090 remote_ip 10.8.0.114 103091 username rezasekonji 103091 mac 103091 bytes_out 0 103091 bytes_in 0 103091 station_ip 37.129.177.106 103091 port 37 103091 unique_id port 103091 remote_ip 10.8.0.114 103093 username rezasekonji 103093 mac 103093 bytes_out 0 103093 bytes_in 0 103093 station_ip 37.129.177.106 103093 port 37 103093 unique_id port 103093 remote_ip 10.8.0.114 103097 username rezasekonji 103097 mac 103097 bytes_out 0 103097 bytes_in 0 103097 station_ip 37.129.177.106 103097 port 31 103097 unique_id port 103097 remote_ip 10.8.0.114 103098 username amir 103098 mac 103098 bytes_out 0 103098 bytes_in 0 103098 station_ip 46.225.232.117 103098 port 38 103098 unique_id port 103098 remote_ip 10.8.0.54 103101 username mammad 103101 kill_reason Relative expiration date has reached 103101 unique_id port 103101 bytes_out 0 103101 bytes_in 0 103101 station_ip 2.183.242.155 103101 port 15729911 103101 nas_port_type Virtual 103109 username forozande 103109 mac 103109 bytes_out 1833078 103109 bytes_in 25920048 103109 station_ip 83.122.173.41 103109 port 19 103109 unique_id port 103109 remote_ip 10.8.1.62 103117 username morteza 103117 mac 103117 bytes_out 0 103117 bytes_in 0 103117 station_ip 83.123.11.168 103117 port 33 103117 unique_id port 103117 remote_ip 10.8.0.90 103122 username mohammadmahdi 103122 mac 103122 bytes_out 150351 103122 bytes_in 2219063 103122 station_ip 5.120.118.166 103122 port 37 103122 unique_id port 103122 remote_ip 10.8.0.34 103124 username malekpoir 103124 mac 103124 bytes_out 0 103124 bytes_in 0 103124 station_ip 5.119.183.38 103124 port 33 103124 unique_id port 103124 remote_ip 10.8.0.130 103126 username madadi2 103126 mac 103126 bytes_out 0 103126 bytes_in 0 103126 station_ip 5.119.223.128 103126 port 33 103126 unique_id port 103126 remote_ip 10.8.0.26 103127 username forozande 103127 mac 103127 bytes_out 101291 103127 bytes_in 206249 103127 station_ip 37.129.160.42 103127 port 22 103127 unique_id port 103127 remote_ip 10.8.1.62 103129 username arabpour 103080 bytes_out 0 103080 bytes_in 0 103080 station_ip 5.119.81.212 103080 port 37 103080 unique_id port 103082 username rezasekonji 103082 mac 103082 bytes_out 0 103082 bytes_in 0 103082 station_ip 37.129.177.106 103082 port 37 103082 unique_id port 103082 remote_ip 10.8.0.114 103083 username aminvpn 103083 mac 103083 bytes_out 0 103083 bytes_in 0 103083 station_ip 83.123.21.137 103083 port 31 103083 unique_id port 103083 remote_ip 10.8.0.6 103084 username mehdizare 103084 mac 103084 bytes_out 46213 103084 bytes_in 51047 103084 station_ip 5.119.202.96 103084 port 38 103084 unique_id port 103084 remote_ip 10.8.0.22 103085 username rezasekonji 103085 mac 103085 bytes_out 0 103085 bytes_in 0 103085 station_ip 37.129.177.106 103085 port 37 103085 unique_id port 103085 remote_ip 10.8.0.114 103099 username forozande 103099 mac 103099 bytes_out 0 103099 bytes_in 0 103099 station_ip 37.129.21.231 103099 port 19 103099 unique_id port 103099 remote_ip 10.8.1.62 103103 username malekpoir 103103 kill_reason Another user logged on this global unique id 103103 mac 103103 bytes_out 0 103103 bytes_in 0 103103 station_ip 5.119.68.78 103103 port 33 103103 unique_id port 103103 remote_ip 10.8.0.130 103104 username amir 103104 mac 103104 bytes_out 0 103104 bytes_in 0 103104 station_ip 46.225.232.117 103104 port 31 103104 unique_id port 103104 remote_ip 10.8.0.54 103105 username ahmadipour 103105 unique_id port 103105 terminate_cause Lost-Carrier 103105 bytes_out 1679179 103105 bytes_in 36309816 103105 station_ip 83.123.52.90 103105 port 15729913 103105 nas_port_type Virtual 103105 remote_ip 5.5.5.131 103107 username malekpoir 103107 kill_reason Maximum check online fails reached 103107 mac 103107 bytes_out 0 103107 bytes_in 0 103107 station_ip 5.119.68.78 103107 port 31 103107 unique_id port 103108 username madadi2 103108 mac 103108 bytes_out 0 103108 bytes_in 0 103108 station_ip 5.119.56.112 103108 port 33 103108 unique_id port 103108 remote_ip 10.8.0.26 103110 username madadi2 103110 mac 103110 bytes_out 0 103110 bytes_in 0 103110 station_ip 5.119.86.104 103110 port 38 103110 unique_id port 103110 remote_ip 10.8.0.26 103113 username houshang 103113 mac 103113 bytes_out 0 103113 bytes_in 0 103113 station_ip 5.119.1.214 103113 port 38 103113 unique_id port 103113 remote_ip 10.8.0.126 103115 username khalili 103115 mac 103115 bytes_out 6448 103115 bytes_in 10539 103115 station_ip 5.120.93.246 103115 port 36 103115 unique_id port 103115 remote_ip 10.8.0.78 103116 username aminvpn 103116 mac 103116 bytes_out 1327791 103116 bytes_in 21832702 103116 station_ip 113.203.111.17 103116 port 20 103116 unique_id port 103116 remote_ip 10.8.1.26 103119 username malekpoir 103119 mac 103119 bytes_out 0 103119 bytes_in 0 103119 station_ip 5.119.68.78 103119 port 21 103119 unique_id port 103119 remote_ip 10.8.1.94 103121 username hamid 103121 mac 103121 bytes_out 3336029 103121 bytes_in 47918904 103121 station_ip 83.122.27.181 103121 port 19 103121 unique_id port 103121 remote_ip 10.8.1.98 103125 username mohammadmahdi 103125 mac 103125 bytes_out 0 103125 bytes_in 0 103125 station_ip 5.120.118.166 103125 port 38 103125 unique_id port 103125 remote_ip 10.8.0.34 103130 username mehdizare 103130 mac 103130 bytes_out 0 103130 bytes_in 0 103130 station_ip 5.119.202.96 103130 port 36 103130 unique_id port 103130 remote_ip 10.8.0.22 103132 username houshang 103132 mac 103132 bytes_out 321456 103132 bytes_in 911508 103118 username hamid 103118 mac 103118 bytes_out 0 103118 bytes_in 0 103118 station_ip 83.122.27.181 103118 port 39 103118 unique_id port 103118 remote_ip 10.8.0.134 103120 username mehdizare 103120 mac 103120 bytes_out 0 103120 bytes_in 0 103120 station_ip 5.119.202.96 103120 port 37 103120 unique_id port 103120 remote_ip 10.8.0.22 103123 username madadi2 103123 mac 103123 bytes_out 132727 103123 bytes_in 1354160 103123 station_ip 5.119.194.202 103123 port 37 103123 unique_id port 103123 remote_ip 10.8.0.26 103128 username hamid 103128 mac 103128 bytes_out 5317037 103128 bytes_in 43039719 103128 station_ip 83.122.27.181 103128 port 19 103128 unique_id port 103128 remote_ip 10.8.1.98 103134 username hamid 103134 kill_reason Another user logged on this global unique id 103134 mac 103134 bytes_out 0 103134 bytes_in 0 103134 station_ip 83.123.7.119 103134 port 33 103134 unique_id port 103134 remote_ip 10.8.0.134 103135 username malekpoir 103135 mac 103135 bytes_out 289209 103135 bytes_in 1748662 103135 station_ip 5.119.183.38 103135 port 21 103135 unique_id port 103135 remote_ip 10.8.1.94 103142 username hamid 103142 mac 103142 bytes_out 0 103142 bytes_in 0 103142 station_ip 83.123.7.119 103142 port 33 103142 unique_id port 103142 remote_ip 10.8.0.134 103148 username morteza 103148 mac 103148 bytes_out 77044 103148 bytes_in 389652 103148 station_ip 83.123.84.164 103148 port 37 103148 unique_id port 103148 remote_ip 10.8.0.90 103152 username mehdizare 103152 mac 103152 bytes_out 74282 103152 bytes_in 105800 103152 station_ip 5.119.202.96 103152 port 36 103152 unique_id port 103152 remote_ip 10.8.0.22 103155 username farhad1 103155 mac 103155 bytes_out 294514 103155 bytes_in 1135424 103155 station_ip 5.120.7.63 103155 port 38 103155 unique_id port 103155 remote_ip 10.8.0.102 103157 username ahmadipour 103157 unique_id port 103157 terminate_cause User-Request 103157 bytes_out 25278 103157 bytes_in 124561 103157 station_ip 83.123.6.194 103157 port 15729925 103157 nas_port_type Virtual 103157 remote_ip 5.5.5.122 103159 username ahmadipour 103159 unique_id port 103159 terminate_cause Lost-Carrier 103159 bytes_out 316 103159 bytes_in 816 103159 station_ip 83.123.6.194 103159 port 15729926 103159 nas_port_type Virtual 103159 remote_ip 5.5.5.123 103161 username malekpoir 103161 mac 103161 bytes_out 66108 103161 bytes_in 257979 103161 station_ip 5.119.183.38 103161 port 37 103161 unique_id port 103161 remote_ip 10.8.0.130 103166 username avaanna 103166 mac 103166 bytes_out 0 103166 bytes_in 0 103166 station_ip 113.203.69.80 103166 port 33 103166 unique_id port 103166 remote_ip 10.8.0.138 103168 username alireza 103168 unique_id port 103168 terminate_cause Lost-Carrier 103168 bytes_out 2054098 103168 bytes_in 72601939 103168 station_ip 5.120.84.15 103168 port 15729927 103168 nas_port_type Virtual 103168 remote_ip 5.5.5.125 103169 username mirzaei 103169 mac 103169 bytes_out 0 103169 bytes_in 0 103169 station_ip 5.119.19.151 103169 port 30 103169 unique_id port 103169 remote_ip 10.8.0.30 103178 username arman1 103178 kill_reason Another user logged on this global unique id 103178 mac 103178 bytes_out 0 103178 bytes_in 0 103178 station_ip 5.119.154.142 103178 port 20 103178 unique_id port 103178 remote_ip 10.8.1.86 103190 username musa 103190 kill_reason Another user logged on this global unique id 103190 mac 103190 bytes_out 0 103190 bytes_in 0 103190 station_ip 113.203.76.93 103190 port 30 103190 unique_id port 103190 remote_ip 10.8.0.106 103191 username arman1 103191 mac 103129 unique_id port 103129 terminate_cause User-Request 103129 bytes_out 250 103129 bytes_in 190 103129 station_ip 37.129.136.249 103129 port 15729919 103129 nas_port_type Virtual 103129 remote_ip 5.5.5.137 103131 username arabpour 103131 unique_id port 103131 terminate_cause User-Request 103131 bytes_out 74392 103131 bytes_in 205810 103131 station_ip 37.129.136.249 103131 port 15729920 103131 nas_port_type Virtual 103131 remote_ip 5.5.5.138 103137 username houshang 103137 mac 103137 bytes_out 0 103137 bytes_in 0 103137 station_ip 5.119.1.214 103137 port 37 103137 unique_id port 103137 remote_ip 10.8.0.126 103140 username houshang 103140 mac 103140 bytes_out 2164488 103140 bytes_in 28384956 103140 station_ip 5.119.1.214 103140 port 39 103140 unique_id port 103140 remote_ip 10.8.0.126 103144 username malekpoir 103144 mac 103144 bytes_out 0 103144 bytes_in 0 103144 station_ip 5.119.183.38 103144 port 37 103144 unique_id port 103144 remote_ip 10.8.0.130 103145 username mirzaei 103145 kill_reason Another user logged on this global unique id 103145 mac 103145 bytes_out 0 103145 bytes_in 0 103145 station_ip 5.119.19.151 103145 port 30 103145 unique_id port 103147 username mehdizare 103147 mac 103147 bytes_out 0 103147 bytes_in 0 103147 station_ip 5.119.202.96 103147 port 36 103147 unique_id port 103147 remote_ip 10.8.0.22 103149 username malekpoir 103149 mac 103149 bytes_out 0 103149 bytes_in 0 103149 station_ip 5.119.183.38 103149 port 38 103149 unique_id port 103149 remote_ip 10.8.0.130 103150 username khalili 103150 mac 103150 bytes_out 6544240 103150 bytes_in 8080768 103150 station_ip 5.120.93.246 103150 port 20 103150 unique_id port 103150 remote_ip 10.8.1.66 103156 username hamid 103156 mac 103156 bytes_out 4008205 103156 bytes_in 43759473 103156 station_ip 83.123.7.119 103156 port 33 103156 unique_id port 103156 remote_ip 10.8.0.134 103160 username madadi2 103160 mac 103160 bytes_out 137330 103160 bytes_in 890184 103160 station_ip 5.119.110.99 103160 port 33 103160 unique_id port 103160 remote_ip 10.8.0.26 103163 username mehdizare 103163 mac 103163 bytes_out 0 103163 bytes_in 0 103163 station_ip 5.119.202.96 103163 port 33 103163 unique_id port 103163 remote_ip 10.8.0.22 103167 username mirzaei 103167 mac 103167 bytes_out 0 103167 bytes_in 0 103167 station_ip 5.119.19.151 103167 port 30 103167 unique_id port 103172 username madadi2 103172 mac 103172 bytes_out 196465 103172 bytes_in 443332 103172 station_ip 5.120.25.54 103172 port 37 103172 unique_id port 103172 remote_ip 10.8.0.26 103174 username mehdizare 103174 mac 103174 bytes_out 65281 103174 bytes_in 58301 103174 station_ip 5.119.202.96 103174 port 19 103174 unique_id port 103174 remote_ip 10.8.1.22 103176 username mehdizare 103176 mac 103176 bytes_out 0 103176 bytes_in 0 103176 station_ip 5.119.202.96 103176 port 19 103176 unique_id port 103176 remote_ip 10.8.1.22 103180 username forozande 103180 mac 103180 bytes_out 0 103180 bytes_in 0 103180 station_ip 37.129.138.214 103180 port 21 103180 unique_id port 103180 remote_ip 10.8.1.62 103181 username madadi2 103181 mac 103181 bytes_out 0 103181 bytes_in 0 103181 station_ip 5.119.247.181 103181 port 36 103181 unique_id port 103181 remote_ip 10.8.0.26 103183 username madadi2 103183 mac 103183 bytes_out 0 103183 bytes_in 0 103183 station_ip 5.119.161.190 103183 port 30 103183 unique_id port 103183 remote_ip 10.8.0.26 103186 username alipour 103186 kill_reason Another user logged on this global unique id 103132 station_ip 5.119.1.214 103132 port 33 103132 unique_id port 103132 remote_ip 10.8.0.126 103133 username hamid 103133 mac 103133 bytes_out 0 103133 bytes_in 0 103133 station_ip 83.123.7.119 103133 port 22 103133 unique_id port 103133 remote_ip 10.8.1.98 103136 username hamid 103136 mac 103136 bytes_out 0 103136 bytes_in 0 103136 station_ip 83.123.7.119 103136 port 33 103136 unique_id port 103138 username ahmadipour 103138 unique_id port 103138 terminate_cause Lost-Carrier 103138 bytes_out 440717 103138 bytes_in 7666464 103138 station_ip 83.123.80.70 103138 port 15729921 103138 nas_port_type Virtual 103138 remote_ip 5.5.5.141 103139 username forozande 103139 mac 103139 bytes_out 0 103139 bytes_in 0 103139 station_ip 83.122.215.229 103139 port 19 103139 unique_id port 103139 remote_ip 10.8.1.62 103141 username mehdizare 103141 mac 103141 bytes_out 21940 103141 bytes_in 24491 103141 station_ip 5.119.202.96 103141 port 36 103141 unique_id port 103141 remote_ip 10.8.0.22 103143 username malekpoir 103143 mac 103143 bytes_out 0 103143 bytes_in 0 103143 station_ip 5.119.183.38 103143 port 38 103143 unique_id port 103143 remote_ip 10.8.0.130 103146 username mehdizare 103146 mac 103146 bytes_out 18898 103146 bytes_in 24622 103146 station_ip 5.119.202.96 103146 port 36 103146 unique_id port 103146 remote_ip 10.8.0.22 103151 username ahmadipour 103151 unique_id port 103151 terminate_cause User-Request 103151 bytes_out 84271 103151 bytes_in 1949105 103151 station_ip 83.123.6.194 103151 port 15729922 103151 nas_port_type Virtual 103151 remote_ip 5.5.5.255 103153 username ahmadipour 103153 unique_id port 103153 terminate_cause User-Request 103153 bytes_out 15839 103153 bytes_in 53567 103153 station_ip 83.123.6.194 103153 port 15729923 103153 nas_port_type Virtual 103153 remote_ip 5.5.5.255 103154 username ahmadipour 103154 unique_id port 103154 terminate_cause Lost-Carrier 103154 bytes_out 14292 103154 bytes_in 45511 103154 station_ip 83.123.6.194 103154 port 15729924 103154 nas_port_type Virtual 103154 remote_ip 5.5.5.255 103158 username mehdizare 103158 mac 103158 bytes_out 13135 103158 bytes_in 18362 103158 station_ip 5.119.202.96 103158 port 40 103158 unique_id port 103158 remote_ip 10.8.0.22 103162 username mehdizare 103162 mac 103162 bytes_out 14815 103162 bytes_in 16477 103162 station_ip 5.119.202.96 103162 port 36 103162 unique_id port 103162 remote_ip 10.8.0.22 103164 username mirzaei 103164 kill_reason Another user logged on this global unique id 103164 mac 103164 bytes_out 0 103164 bytes_in 0 103164 station_ip 5.119.19.151 103164 port 30 103164 unique_id port 103165 username avaanna 103165 mac 103165 bytes_out 0 103165 bytes_in 0 103165 station_ip 113.203.69.80 103165 port 37 103165 unique_id port 103165 remote_ip 10.8.0.138 103170 username malekpoir 103170 mac 103170 bytes_out 1310444 103170 bytes_in 17644804 103170 station_ip 5.119.183.38 103170 port 36 103170 unique_id port 103170 remote_ip 10.8.0.130 103171 username mahdiyehalizadeh 103171 mac 103171 bytes_out 0 103171 bytes_in 0 103171 station_ip 83.122.206.13 103171 port 30 103171 unique_id port 103171 remote_ip 10.8.0.42 103173 username malekpoir 103173 mac 103173 bytes_out 0 103173 bytes_in 0 103173 station_ip 5.119.183.38 103173 port 36 103173 unique_id port 103173 remote_ip 10.8.0.130 103175 username mirzaei 103175 kill_reason Another user logged on this global unique id 103175 mac 103175 bytes_out 0 103175 bytes_in 0 103175 station_ip 5.119.19.151 103175 port 33 103175 unique_id port 103175 remote_ip 10.8.0.30 103177 username mehdizare 103177 mac 103177 bytes_out 3577 103177 bytes_in 19610 103177 station_ip 5.119.202.96 103177 port 19 103177 unique_id port 103177 remote_ip 10.8.1.22 103179 username malekpoir 103179 mac 103179 bytes_out 0 103179 bytes_in 0 103179 station_ip 5.119.183.38 103179 port 30 103179 unique_id port 103179 remote_ip 10.8.0.130 103182 username mehdizare 103182 mac 103182 bytes_out 7079 103182 bytes_in 10175 103182 station_ip 5.119.202.96 103182 port 19 103182 unique_id port 103182 remote_ip 10.8.1.22 103184 username aminvpn 103184 unique_id port 103184 terminate_cause User-Request 103184 bytes_out 26606528 103184 bytes_in 712302655 103184 station_ip 5.119.130.43 103184 port 15729914 103184 nas_port_type Virtual 103184 remote_ip 5.5.5.133 103185 username mirzaei 103185 kill_reason Another user logged on this global unique id 103185 mac 103185 bytes_out 0 103185 bytes_in 0 103185 station_ip 5.119.19.151 103185 port 33 103185 unique_id port 103189 username alipour 103189 mac 103189 bytes_out 0 103189 bytes_in 0 103189 station_ip 83.122.73.74 103189 port 39 103189 unique_id port 103196 username aminvpn 103196 unique_id port 103196 terminate_cause User-Request 103196 bytes_out 20205869 103196 bytes_in 739301433 103196 station_ip 5.119.130.43 103196 port 15729929 103196 nas_port_type Virtual 103196 remote_ip 5.5.5.129 103197 username hashtadani 103197 unique_id port 103197 terminate_cause Lost-Carrier 103197 bytes_out 2827994 103197 bytes_in 37689436 103197 station_ip 5.202.97.177 103197 port 15729928 103197 nas_port_type Virtual 103197 remote_ip 5.5.5.128 103200 username musa 103200 mac 103200 bytes_out 0 103200 bytes_in 0 103200 station_ip 113.203.76.93 103200 port 30 103200 unique_id port 103203 username amir 103203 mac 103203 bytes_out 352698 103203 bytes_in 479428 103203 station_ip 46.225.208.141 103203 port 19 103203 unique_id port 103203 remote_ip 10.8.1.34 103205 username madadi2 103205 mac 103205 bytes_out 0 103205 bytes_in 0 103205 station_ip 5.119.171.162 103205 port 36 103205 unique_id port 103205 remote_ip 10.8.0.26 103209 username mohammadmahdi 103209 kill_reason Another user logged on this global unique id 103209 mac 103209 bytes_out 0 103209 bytes_in 0 103209 station_ip 5.120.118.166 103209 port 38 103209 unique_id port 103216 username khalili 103216 mac 103216 bytes_out 0 103216 bytes_in 0 103216 station_ip 5.120.93.246 103216 port 20 103216 unique_id port 103216 remote_ip 10.8.1.66 103218 username mehdizare 103218 mac 103218 bytes_out 48830 103218 bytes_in 77025 103218 station_ip 5.119.202.96 103218 port 21 103218 unique_id port 103218 remote_ip 10.8.1.22 103221 username ahmadipour 103221 unique_id port 103221 terminate_cause Lost-Carrier 103221 bytes_out 2456013 103221 bytes_in 74565582 103221 station_ip 83.123.57.218 103221 port 15729934 103221 nas_port_type Virtual 103221 remote_ip 5.5.5.110 103222 username amir 103222 mac 103222 bytes_out 0 103222 bytes_in 0 103222 station_ip 46.225.208.141 103222 port 30 103222 unique_id port 103222 remote_ip 10.8.0.54 103223 username khalili 103223 mac 103223 bytes_out 1098296 103223 bytes_in 9186073 103223 station_ip 5.120.93.246 103223 port 22 103223 unique_id port 103223 remote_ip 10.8.1.66 103226 username mehdizare 103226 mac 103226 bytes_out 18712 103226 bytes_in 21296 103226 station_ip 5.119.202.96 103226 port 20 103226 unique_id port 103226 remote_ip 10.8.1.22 103229 username morteza 103229 kill_reason Another user logged on this global unique id 103229 mac 103229 bytes_out 0 103229 bytes_in 0 103186 mac 103186 bytes_out 0 103186 bytes_in 0 103186 station_ip 83.122.73.74 103186 port 39 103186 unique_id port 103186 remote_ip 10.8.0.70 103187 username malekpoir 103187 mac 103187 bytes_out 0 103187 bytes_in 0 103187 station_ip 5.119.183.38 103187 port 36 103187 unique_id port 103187 remote_ip 10.8.0.130 103188 username arman1 103188 kill_reason Another user logged on this global unique id 103188 mac 103188 bytes_out 0 103188 bytes_in 0 103188 station_ip 5.119.154.142 103188 port 20 103188 unique_id port 103195 username malekpoir 103195 mac 103195 bytes_out 244917 103195 bytes_in 662932 103195 station_ip 5.119.183.38 103195 port 36 103195 unique_id port 103195 remote_ip 10.8.0.130 103198 username amir 103198 mac 103198 bytes_out 249683 103198 bytes_in 733108 103198 station_ip 46.225.208.141 103198 port 20 103198 unique_id port 103198 remote_ip 10.8.1.34 103199 username malekpoir 103199 mac 103199 bytes_out 0 103199 bytes_in 0 103199 station_ip 5.119.183.38 103199 port 36 103199 unique_id port 103199 remote_ip 10.8.0.130 103201 username alipour 103201 kill_reason Another user logged on this global unique id 103201 mac 103201 bytes_out 0 103201 bytes_in 0 103201 station_ip 83.122.73.74 103201 port 37 103201 unique_id port 103201 remote_ip 10.8.0.70 103202 username mohammadmahdi 103202 kill_reason Another user logged on this global unique id 103202 mac 103202 bytes_out 0 103202 bytes_in 0 103202 station_ip 5.120.118.166 103202 port 38 103202 unique_id port 103202 remote_ip 10.8.0.34 103206 username mehdizare 103206 mac 103206 bytes_out 58909 103206 bytes_in 72358 103206 station_ip 5.119.202.96 103206 port 21 103206 unique_id port 103206 remote_ip 10.8.1.22 103207 username aminvpn 103207 unique_id port 103207 terminate_cause Lost-Carrier 103207 bytes_out 104697 103207 bytes_in 835853 103207 station_ip 77.237.188.233 103207 port 15729932 103207 nas_port_type Virtual 103207 remote_ip 5.5.5.103 103208 username madadi2 103208 mac 103208 bytes_out 0 103208 bytes_in 0 103208 station_ip 5.119.237.34 103208 port 36 103208 unique_id port 103208 remote_ip 10.8.0.26 103211 username amir 103211 mac 103211 bytes_out 0 103211 bytes_in 0 103211 station_ip 46.225.208.141 103211 port 40 103211 unique_id port 103211 remote_ip 10.8.0.54 103213 username khalili 103213 mac 103213 bytes_out 3177220 103213 bytes_in 18909126 103213 station_ip 5.120.93.246 103213 port 20 103213 unique_id port 103213 remote_ip 10.8.1.66 103217 username mirzaei 103217 kill_reason Another user logged on this global unique id 103217 mac 103217 bytes_out 0 103217 bytes_in 0 103217 station_ip 5.119.19.151 103217 port 33 103217 unique_id port 103219 username mohammadmahdi 103219 kill_reason Another user logged on this global unique id 103219 mac 103219 bytes_out 0 103219 bytes_in 0 103219 station_ip 5.120.118.166 103219 port 38 103219 unique_id port 103224 username khalili 103224 mac 103224 bytes_out 14187 103224 bytes_in 17179 103224 station_ip 5.120.93.246 103224 port 21 103224 unique_id port 103224 remote_ip 10.8.1.66 103228 username amir 103228 mac 103228 bytes_out 0 103228 bytes_in 0 103228 station_ip 46.225.208.141 103228 port 30 103228 unique_id port 103228 remote_ip 10.8.0.54 103233 username aminvpn 103233 unique_id port 103233 terminate_cause User-Request 103233 bytes_out 4128841 103233 bytes_in 147056011 103233 station_ip 5.119.130.43 103233 port 15729935 103233 nas_port_type Virtual 103233 remote_ip 5.5.5.114 103236 username aminvpn 103236 unique_id port 103236 terminate_cause Lost-Carrier 103236 bytes_out 280467 103191 bytes_out 0 103191 bytes_in 0 103191 station_ip 5.119.154.142 103191 port 20 103191 unique_id port 103192 username mehdizare 103192 mac 103192 bytes_out 97761 103192 bytes_in 136346 103192 station_ip 5.119.202.96 103192 port 19 103192 unique_id port 103192 remote_ip 10.8.1.22 103193 username mirzaei 103193 kill_reason Another user logged on this global unique id 103193 mac 103193 bytes_out 0 103193 bytes_in 0 103193 station_ip 5.119.19.151 103193 port 33 103193 unique_id port 103194 username mammad 103194 kill_reason Relative expiration date has reached 103194 unique_id port 103194 bytes_out 0 103194 bytes_in 0 103194 station_ip 2.183.242.155 103194 port 15729930 103194 nas_port_type Virtual 103204 username amir 103204 kill_reason Maximum check online fails reached 103204 mac 103204 bytes_out 0 103204 bytes_in 0 103204 station_ip 46.225.208.141 103204 port 19 103204 unique_id port 103210 username mahdiyehalizadeh 103210 mac 103210 bytes_out 0 103210 bytes_in 0 103210 station_ip 37.129.47.99 103210 port 30 103210 unique_id port 103210 remote_ip 10.8.0.42 103212 username forozande 103212 mac 103212 bytes_out 2558721 103212 bytes_in 23684601 103212 station_ip 37.129.244.89 103212 port 22 103212 unique_id port 103212 remote_ip 10.8.1.62 103214 username alipour 103214 kill_reason Another user logged on this global unique id 103214 mac 103214 bytes_out 0 103214 bytes_in 0 103214 station_ip 83.122.73.74 103214 port 37 103214 unique_id port 103215 username rajaei 103215 mac 103215 bytes_out 0 103215 bytes_in 0 103215 station_ip 46.225.214.233 103215 port 39 103215 unique_id port 103215 remote_ip 10.8.0.142 103220 username mehdizare 103220 mac 103220 bytes_out 3865 103220 bytes_in 9104 103220 station_ip 5.119.202.96 103220 port 20 103220 unique_id port 103220 remote_ip 10.8.1.22 103225 username madadi2 103225 mac 103225 bytes_out 0 103225 bytes_in 0 103225 station_ip 5.120.58.70 103225 port 30 103225 unique_id port 103225 remote_ip 10.8.0.26 103227 username mohammadmahdi 103227 kill_reason Another user logged on this global unique id 103227 mac 103227 bytes_out 0 103227 bytes_in 0 103227 station_ip 5.120.118.166 103227 port 38 103227 unique_id port 103230 username mammad 103230 kill_reason Relative expiration date has reached 103230 unique_id port 103230 bytes_out 0 103230 bytes_in 0 103230 station_ip 2.183.242.155 103230 port 15729936 103230 nas_port_type Virtual 103243 username morteza 103243 mac 103243 bytes_out 0 103243 bytes_in 0 103243 station_ip 37.129.44.4 103243 port 36 103243 unique_id port 103244 username amir 103244 mac 103244 bytes_out 44623 103244 bytes_in 132326 103244 station_ip 46.225.208.141 103244 port 20 103244 unique_id port 103244 remote_ip 10.8.1.34 103249 username mirzaei 103249 kill_reason Another user logged on this global unique id 103249 mac 103249 bytes_out 0 103249 bytes_in 0 103249 station_ip 5.119.19.151 103249 port 33 103249 unique_id port 103251 username arabpour 103251 unique_id port 103251 terminate_cause User-Request 103251 bytes_out 112896 103251 bytes_in 1418658 103251 station_ip 158.58.108.66 103251 port 15729943 103251 nas_port_type Virtual 103251 remote_ip 5.5.5.102 103253 username amir 103253 mac 103253 bytes_out 0 103253 bytes_in 0 103253 station_ip 46.225.208.141 103253 port 36 103253 unique_id port 103253 remote_ip 10.8.0.54 103255 username amir 103255 mac 103255 bytes_out 0 103255 bytes_in 0 103255 station_ip 46.225.208.141 103255 port 36 103255 unique_id port 103255 remote_ip 10.8.0.54 103257 username malekpoir 103257 mac 103229 station_ip 37.129.44.4 103229 port 36 103229 unique_id port 103229 remote_ip 10.8.0.90 103231 username amir 103231 mac 103231 bytes_out 0 103231 bytes_in 0 103231 station_ip 46.225.208.141 103231 port 40 103231 unique_id port 103231 remote_ip 10.8.0.54 103232 username amir 103232 mac 103232 bytes_out 66073 103232 bytes_in 64150 103232 station_ip 46.225.208.141 103232 port 21 103232 unique_id port 103232 remote_ip 10.8.1.34 103234 username forozande 103234 mac 103234 bytes_out 56213 103234 bytes_in 399422 103234 station_ip 83.123.123.255 103234 port 22 103234 unique_id port 103234 remote_ip 10.8.1.62 103235 username abbasaskari 103235 mac 103235 bytes_out 601635 103235 bytes_in 2705025 103235 station_ip 83.122.211.224 103235 port 30 103235 unique_id port 103235 remote_ip 10.8.0.94 103237 username amir 103237 mac 103237 bytes_out 64196 103237 bytes_in 222072 103237 station_ip 46.225.208.141 103237 port 21 103237 unique_id port 103237 remote_ip 10.8.1.34 103238 username amir 103238 mac 103238 bytes_out 51904 103238 bytes_in 250812 103238 station_ip 46.225.208.141 103238 port 21 103238 unique_id port 103238 remote_ip 10.8.1.34 103239 username arabpour 103239 unique_id port 103239 terminate_cause User-Request 103239 bytes_out 124036 103239 bytes_in 1414866 103239 station_ip 158.58.108.66 103239 port 15729939 103239 nas_port_type Virtual 103239 remote_ip 5.5.5.255 103242 username amir 103242 mac 103242 bytes_out 74042 103242 bytes_in 516280 103242 station_ip 46.225.208.141 103242 port 21 103242 unique_id port 103242 remote_ip 10.8.1.34 103245 username arabpour 103245 unique_id port 103245 terminate_cause User-Request 103245 bytes_out 17992 103245 bytes_in 145879 103245 station_ip 158.58.108.66 103245 port 15729941 103245 nas_port_type Virtual 103245 remote_ip 5.5.5.255 103248 username amir 103248 mac 103248 bytes_out 0 103248 bytes_in 0 103248 station_ip 46.225.208.141 103248 port 36 103248 unique_id port 103248 remote_ip 10.8.0.54 103250 username amir 103250 mac 103250 bytes_out 0 103250 bytes_in 0 103250 station_ip 46.225.208.141 103250 port 36 103250 unique_id port 103250 remote_ip 10.8.0.54 103254 username madadi2 103254 mac 103254 bytes_out 1320335 103254 bytes_in 4501788 103254 station_ip 5.119.117.127 103254 port 39 103254 unique_id port 103254 remote_ip 10.8.0.26 103256 username malekpoir 103256 kill_reason Maximum check online fails reached 103256 mac 103256 bytes_out 0 103256 bytes_in 0 103256 station_ip 5.119.232.84 103256 port 39 103256 unique_id port 103258 username amir 103258 mac 103258 bytes_out 34636 103258 bytes_in 128508 103258 station_ip 46.225.208.141 103258 port 36 103258 unique_id port 103258 remote_ip 10.8.0.54 103259 username mammad 103259 kill_reason Relative expiration date has reached 103259 unique_id port 103259 bytes_out 0 103259 bytes_in 0 103259 station_ip 2.183.242.155 103259 port 15729945 103259 nas_port_type Virtual 103260 username amir 103260 mac 103260 bytes_out 0 103260 bytes_in 0 103260 station_ip 46.225.208.141 103260 port 36 103260 unique_id port 103260 remote_ip 10.8.0.54 103266 username alireza1 103266 unique_id port 103266 terminate_cause User-Request 103266 bytes_out 346071 103266 bytes_in 4591238 103266 station_ip 5.120.42.58 103266 port 15729938 103266 nas_port_type Virtual 103266 remote_ip 5.5.5.132 103268 username abbasaskari 103268 mac 103268 bytes_out 0 103268 bytes_in 0 103268 station_ip 83.122.211.224 103268 port 30 103268 unique_id port 103268 remote_ip 10.8.0.94 103269 username abbasaskari 103236 bytes_in 3662450 103236 station_ip 5.119.130.43 103236 port 15729937 103236 nas_port_type Virtual 103236 remote_ip 5.5.5.118 103240 username mammad 103240 kill_reason Relative expiration date has reached 103240 unique_id port 103240 bytes_out 0 103240 bytes_in 0 103240 station_ip 2.183.242.155 103240 port 15729940 103240 nas_port_type Virtual 103241 username mehdizare 103241 mac 103241 bytes_out 354752 103241 bytes_in 1796615 103241 station_ip 5.119.202.96 103241 port 20 103241 unique_id port 103241 remote_ip 10.8.1.22 103246 username amir 103246 mac 103246 bytes_out 0 103246 bytes_in 0 103246 station_ip 46.225.208.141 103246 port 20 103246 unique_id port 103246 remote_ip 10.8.1.34 103247 username aminvpn 103247 unique_id port 103247 terminate_cause Lost-Carrier 103247 bytes_out 441481 103247 bytes_in 1570269 103247 station_ip 77.237.188.233 103247 port 15729933 103247 nas_port_type Virtual 103247 remote_ip 5.5.5.105 103252 username mehdizare 103252 mac 103252 bytes_out 0 103252 bytes_in 0 103252 station_ip 5.119.202.96 103252 port 21 103252 unique_id port 103252 remote_ip 10.8.1.22 103265 username madadi2 103265 mac 103265 bytes_out 0 103265 bytes_in 0 103265 station_ip 5.119.78.181 103265 port 41 103265 unique_id port 103265 remote_ip 10.8.0.26 103267 username askari 103267 mac 103267 bytes_out 1369493 103267 bytes_in 19177844 103267 station_ip 5.120.147.183 103267 port 20 103267 unique_id port 103267 remote_ip 10.8.1.30 103274 username askari 103274 mac 103274 bytes_out 0 103274 bytes_in 0 103274 station_ip 5.119.64.39 103274 port 22 103274 unique_id port 103274 remote_ip 10.8.1.30 103275 username amir 103275 mac 103275 bytes_out 0 103275 bytes_in 0 103275 station_ip 46.225.208.141 103275 port 38 103275 unique_id port 103275 remote_ip 10.8.0.54 103278 username alemzadeh 103278 unique_id port 103278 terminate_cause User-Request 103278 bytes_out 376293 103278 bytes_in 4927910 103278 station_ip 83.122.32.123 103278 port 15729946 103278 nas_port_type Virtual 103278 remote_ip 5.5.5.115 103279 username amir 103279 mac 103279 bytes_out 34732 103279 bytes_in 76261 103279 station_ip 46.225.208.141 103279 port 38 103279 unique_id port 103279 remote_ip 10.8.0.54 103287 username mohammadmahdi 103287 mac 103287 bytes_out 0 103287 bytes_in 0 103287 station_ip 5.120.118.166 103287 port 41 103287 unique_id port 103287 remote_ip 10.8.0.34 103290 username mammad 103290 kill_reason Relative expiration date has reached 103290 unique_id port 103290 bytes_out 0 103290 bytes_in 0 103290 station_ip 2.183.242.155 103290 port 15729948 103290 nas_port_type Virtual 103293 username mammad 103293 kill_reason Relative expiration date has reached 103293 unique_id port 103293 bytes_out 0 103293 bytes_in 0 103293 station_ip 2.183.242.155 103293 port 15729950 103293 nas_port_type Virtual 103299 username mirzaei 103299 kill_reason Another user logged on this global unique id 103299 mac 103299 bytes_out 0 103299 bytes_in 0 103299 station_ip 5.119.19.151 103299 port 33 103299 unique_id port 103303 username rezasekonji 103303 mac 103303 bytes_out 0 103303 bytes_in 0 103303 station_ip 113.203.108.3 103303 port 30 103303 unique_id port 103303 remote_ip 10.8.0.114 103305 username rezasekonji 103305 mac 103305 bytes_out 0 103305 bytes_in 0 103305 station_ip 113.203.108.3 103305 port 30 103305 unique_id port 103305 remote_ip 10.8.0.114 103308 username rezasekonji 103308 mac 103308 bytes_out 0 103308 bytes_in 0 103308 station_ip 113.203.108.3 103308 port 20 103308 unique_id port 103308 remote_ip 10.8.1.90 103257 bytes_out 8228 103257 bytes_in 15414 103257 station_ip 5.119.232.84 103257 port 41 103257 unique_id port 103257 remote_ip 10.8.0.130 103261 username amir 103261 mac 103261 bytes_out 0 103261 bytes_in 0 103261 station_ip 46.225.208.141 103261 port 36 103261 unique_id port 103261 remote_ip 10.8.0.54 103262 username aminvpn 103262 unique_id port 103262 terminate_cause User-Request 103262 bytes_out 3851329 103262 bytes_in 93881679 103262 station_ip 5.119.130.43 103262 port 15729931 103262 nas_port_type Virtual 103262 remote_ip 5.5.5.130 103263 username amir 103263 mac 103263 bytes_out 98126 103263 bytes_in 219914 103263 station_ip 46.225.208.141 103263 port 36 103263 unique_id port 103263 remote_ip 10.8.0.54 103264 username musa 103264 mac 103264 bytes_out 0 103264 bytes_in 0 103264 station_ip 83.122.112.99 103264 port 40 103264 unique_id port 103264 remote_ip 10.8.0.106 103272 username mahdiyehalizadeh 103272 mac 103272 bytes_out 0 103272 bytes_in 0 103272 station_ip 37.129.140.119 103272 port 41 103272 unique_id port 103272 remote_ip 10.8.0.42 103277 username amir 103277 mac 103277 bytes_out 0 103277 bytes_in 0 103277 station_ip 46.225.208.141 103277 port 38 103277 unique_id port 103277 remote_ip 10.8.0.54 103280 username musa 103280 kill_reason Another user logged on this global unique id 103280 mac 103280 bytes_out 0 103280 bytes_in 0 103280 station_ip 83.122.112.99 103280 port 36 103280 unique_id port 103280 remote_ip 10.8.0.106 103282 username amir 103282 mac 103282 bytes_out 0 103282 bytes_in 0 103282 station_ip 46.225.208.141 103282 port 41 103282 unique_id port 103282 remote_ip 10.8.0.54 103283 username alihosseini 103283 mac 103283 bytes_out 0 103283 bytes_in 0 103283 station_ip 5.119.14.98 103283 port 38 103283 unique_id port 103283 remote_ip 10.8.0.14 103285 username amir 103285 mac 103285 bytes_out 0 103285 bytes_in 0 103285 station_ip 46.225.208.141 103285 port 38 103285 unique_id port 103285 remote_ip 10.8.0.54 103288 username bcboard 103288 unique_id port 103288 terminate_cause User-Request 103288 bytes_out 11050651 103288 bytes_in 38591297 103288 station_ip 83.123.5.198 103288 port 15729915 103288 nas_port_type Virtual 103288 remote_ip 5.5.5.135 103289 username ahmadipour 103289 unique_id port 103289 terminate_cause Lost-Carrier 103289 bytes_out 48813 103289 bytes_in 223582 103289 station_ip 83.123.11.82 103289 port 15729947 103289 nas_port_type Virtual 103289 remote_ip 5.5.5.117 103294 username mammad 103294 kill_reason Relative expiration date has reached 103294 unique_id port 103294 bytes_out 0 103294 bytes_in 0 103294 station_ip 2.183.242.155 103294 port 15729951 103294 nas_port_type Virtual 103300 username amir 103300 mac 103300 bytes_out 0 103300 bytes_in 0 103300 station_ip 46.225.208.141 103300 port 40 103300 unique_id port 103300 remote_ip 10.8.0.54 103304 username mohammadmahdi 103304 kill_reason Another user logged on this global unique id 103304 mac 103304 bytes_out 0 103304 bytes_in 0 103304 station_ip 5.120.118.166 103304 port 38 103304 unique_id port 103309 username abbasaskari 103309 mac 103309 bytes_out 0 103309 bytes_in 0 103309 station_ip 83.122.211.224 103309 port 42 103309 unique_id port 103309 remote_ip 10.8.0.94 103311 username musa 103311 kill_reason Another user logged on this global unique id 103311 mac 103311 bytes_out 0 103311 bytes_in 0 103311 station_ip 83.122.112.99 103311 port 36 103311 unique_id port 103313 username houshang 103313 mac 103313 bytes_out 273724 103313 bytes_in 616537 103313 station_ip 5.119.1.214 103313 port 41 103269 mac 103269 bytes_out 0 103269 bytes_in 0 103269 station_ip 83.122.211.224 103269 port 30 103269 unique_id port 103269 remote_ip 10.8.0.94 103270 username amir 103270 mac 103270 bytes_out 0 103270 bytes_in 0 103270 station_ip 46.225.208.141 103270 port 40 103270 unique_id port 103270 remote_ip 10.8.0.54 103271 username amir 103271 mac 103271 bytes_out 0 103271 bytes_in 0 103271 station_ip 46.225.208.141 103271 port 40 103271 unique_id port 103271 remote_ip 10.8.0.54 103273 username mohammadmahdi 103273 mac 103273 bytes_out 0 103273 bytes_in 0 103273 station_ip 5.120.118.166 103273 port 38 103273 unique_id port 103276 username amir 103276 mac 103276 bytes_out 0 103276 bytes_in 0 103276 station_ip 46.225.208.141 103276 port 38 103276 unique_id port 103276 remote_ip 10.8.0.54 103281 username alireza 103281 kill_reason Maximum check online fails reached 103281 unique_id port 103281 bytes_out 4646799 103281 bytes_in 113597150 103281 station_ip 5.120.84.15 103281 port 15729944 103281 nas_port_type Virtual 103281 remote_ip 5.5.5.106 103284 username mohammadmahdi 103284 mac 103284 bytes_out 0 103284 bytes_in 0 103284 station_ip 5.120.118.166 103284 port 40 103284 unique_id port 103284 remote_ip 10.8.0.34 103286 username aminvpn 103286 unique_id port 103286 terminate_cause Lost-Carrier 103286 bytes_out 1137875 103286 bytes_in 16751347 103286 station_ip 5.119.130.43 103286 port 15729942 103286 nas_port_type Virtual 103286 remote_ip 5.5.5.255 103291 username mohammadmahdi 103291 kill_reason Another user logged on this global unique id 103291 mac 103291 bytes_out 0 103291 bytes_in 0 103291 station_ip 5.120.118.166 103291 port 38 103291 unique_id port 103291 remote_ip 10.8.0.34 103292 username mammad 103292 kill_reason Relative expiration date has reached 103292 unique_id port 103292 bytes_out 0 103292 bytes_in 0 103292 station_ip 2.183.242.155 103292 port 15729949 103292 nas_port_type Virtual 103295 username mammad 103295 kill_reason Relative expiration date has reached 103295 unique_id port 103295 bytes_out 0 103295 bytes_in 0 103295 station_ip 2.183.242.155 103295 port 15729952 103295 nas_port_type Virtual 103296 username rezasekonji 103296 mac 103296 bytes_out 0 103296 bytes_in 0 103296 station_ip 113.203.108.3 103296 port 40 103296 unique_id port 103296 remote_ip 10.8.0.114 103297 username rezasekonji 103297 mac 103297 bytes_out 0 103297 bytes_in 0 103297 station_ip 113.203.108.3 103297 port 43 103297 unique_id port 103297 remote_ip 10.8.0.114 103298 username alihosseini 103298 mac 103298 bytes_out 609163 103298 bytes_in 3987432 103298 station_ip 5.120.179.239 103298 port 42 103298 unique_id port 103298 remote_ip 10.8.0.14 103301 username abbasaskari 103301 mac 103301 bytes_out 0 103301 bytes_in 0 103301 station_ip 83.122.211.224 103301 port 30 103301 unique_id port 103301 remote_ip 10.8.0.94 103302 username rezasekonji 103302 mac 103302 bytes_out 0 103302 bytes_in 0 103302 station_ip 113.203.108.3 103302 port 30 103302 unique_id port 103302 remote_ip 10.8.0.114 103306 username rezasekonji 103306 mac 103306 bytes_out 0 103306 bytes_in 0 103306 station_ip 113.203.108.3 103306 port 40 103306 unique_id port 103306 remote_ip 10.8.0.114 103307 username rezasekonji 103307 mac 103307 bytes_out 0 103307 bytes_in 0 103307 station_ip 113.203.108.3 103307 port 30 103307 unique_id port 103307 remote_ip 10.8.0.114 103310 username madadi2 103310 mac 103310 bytes_out 0 103310 bytes_in 0 103310 station_ip 5.120.1.156 103310 port 40 103310 unique_id port 103310 remote_ip 10.8.0.26 103312 username rezasekonji 103312 mac 103312 bytes_out 0 103312 bytes_in 0 103312 station_ip 113.203.108.3 103312 port 40 103312 unique_id port 103312 remote_ip 10.8.0.114 103326 username aminvpn 103326 unique_id port 103326 terminate_cause Lost-Carrier 103326 bytes_out 59630 103326 bytes_in 234195 103326 station_ip 5.120.183.193 103326 port 15729956 103326 nas_port_type Virtual 103326 remote_ip 5.5.5.95 103329 username aminvpn 103329 mac 103329 bytes_out 0 103329 bytes_in 0 103329 station_ip 113.203.58.81 103329 port 38 103329 unique_id port 103329 remote_ip 10.8.0.6 103336 username arabpour 103336 unique_id port 103336 terminate_cause User-Request 103336 bytes_out 97510 103336 bytes_in 1119244 103336 station_ip 158.58.108.66 103336 port 15729957 103336 nas_port_type Virtual 103336 remote_ip 5.5.5.100 103340 username madadi2 103340 mac 103340 bytes_out 392393 103340 bytes_in 1168749 103340 station_ip 5.119.24.37 103340 port 30 103340 unique_id port 103340 remote_ip 10.8.0.26 103345 username houshang 103345 kill_reason Another user logged on this global unique id 103345 mac 103345 bytes_out 0 103345 bytes_in 0 103345 station_ip 5.119.65.26 103345 port 40 103345 unique_id port 103346 username aminvpn 103346 mac 103346 bytes_out 0 103346 bytes_in 0 103346 station_ip 113.203.58.81 103346 port 38 103346 unique_id port 103346 remote_ip 10.8.0.6 103347 username aminvpn 103347 mac 103347 bytes_out 0 103347 bytes_in 0 103347 station_ip 83.123.72.88 103347 port 30 103347 unique_id port 103347 remote_ip 10.8.0.6 103348 username aminvpn 103348 mac 103348 bytes_out 0 103348 bytes_in 0 103348 station_ip 113.203.58.81 103348 port 38 103348 unique_id port 103348 remote_ip 10.8.0.6 103350 username aminvpn 103350 mac 103350 bytes_out 0 103350 bytes_in 0 103350 station_ip 113.203.58.81 103350 port 38 103350 unique_id port 103350 remote_ip 10.8.0.6 103352 username rezasekonji 103352 mac 103352 bytes_out 0 103352 bytes_in 0 103352 station_ip 113.203.108.3 103352 port 36 103352 unique_id port 103352 remote_ip 10.8.0.114 103353 username aminvpn 103353 mac 103353 bytes_out 0 103353 bytes_in 0 103353 station_ip 83.123.72.88 103353 port 30 103353 unique_id port 103353 remote_ip 10.8.0.6 103354 username aminvpn 103354 mac 103354 bytes_out 0 103354 bytes_in 0 103354 station_ip 113.203.58.81 103354 port 38 103354 unique_id port 103354 remote_ip 10.8.0.6 103355 username aminvpn 103355 mac 103355 bytes_out 0 103355 bytes_in 0 103355 station_ip 83.123.72.88 103355 port 30 103355 unique_id port 103355 remote_ip 10.8.0.6 103356 username aminvpn 103356 mac 103356 bytes_out 0 103356 bytes_in 0 103356 station_ip 113.203.58.81 103356 port 38 103356 unique_id port 103356 remote_ip 10.8.0.6 103362 username madadi2 103362 mac 103362 bytes_out 0 103362 bytes_in 0 103362 station_ip 5.120.86.159 103362 port 30 103362 unique_id port 103362 remote_ip 10.8.0.26 103368 username rezasekonji 103368 mac 103368 bytes_out 0 103368 bytes_in 0 103368 station_ip 113.203.108.3 103368 port 38 103368 unique_id port 103368 remote_ip 10.8.0.114 103375 username rezasekonji 103375 mac 103375 bytes_out 0 103375 bytes_in 0 103375 station_ip 113.203.108.3 103375 port 30 103375 unique_id port 103375 remote_ip 10.8.0.114 103379 username rezasekonji 103379 mac 103379 bytes_out 0 103379 bytes_in 0 103379 station_ip 113.203.108.3 103379 port 30 103379 unique_id port 103379 remote_ip 10.8.0.114 103313 unique_id port 103313 remote_ip 10.8.0.126 103316 username aminvpn 103316 unique_id port 103316 terminate_cause Lost-Carrier 103316 bytes_out 11687078 103316 bytes_in 234227482 103316 station_ip 31.57.143.6 103316 port 15729953 103316 nas_port_type Virtual 103316 remote_ip 5.5.5.127 103317 username amir 103317 mac 103317 bytes_out 0 103317 bytes_in 0 103317 station_ip 46.225.208.141 103317 port 30 103317 unique_id port 103317 remote_ip 10.8.0.54 103319 username mohammadmahdi 103319 kill_reason Another user logged on this global unique id 103319 mac 103319 bytes_out 0 103319 bytes_in 0 103319 station_ip 5.120.118.166 103319 port 38 103319 unique_id port 103320 username mehdizare 103320 mac 103320 bytes_out 0 103320 bytes_in 0 103320 station_ip 5.119.202.96 103320 port 21 103320 unique_id port 103320 remote_ip 10.8.1.22 103321 username houshang 103321 kill_reason Another user logged on this global unique id 103321 mac 103321 bytes_out 0 103321 bytes_in 0 103321 station_ip 5.119.65.26 103321 port 40 103321 unique_id port 103321 remote_ip 10.8.0.126 103323 username mohammadmahdi 103323 mac 103323 bytes_out 0 103323 bytes_in 0 103323 station_ip 5.120.118.166 103323 port 30 103323 unique_id port 103323 remote_ip 10.8.0.34 103330 username musa 103330 mac 103330 bytes_out 0 103330 bytes_in 0 103330 station_ip 83.122.112.99 103330 port 36 103330 unique_id port 103332 username aminvpn 103332 mac 103332 bytes_out 0 103332 bytes_in 0 103332 station_ip 83.123.72.88 103332 port 43 103332 unique_id port 103332 remote_ip 10.8.0.6 103334 username aminvpn 103334 mac 103334 bytes_out 0 103334 bytes_in 0 103334 station_ip 113.203.58.81 103334 port 36 103334 unique_id port 103334 remote_ip 10.8.0.6 103337 username rezasekonji 103337 mac 103337 bytes_out 60224 103337 bytes_in 291445 103337 station_ip 113.203.108.3 103337 port 41 103337 unique_id port 103337 remote_ip 10.8.0.114 103338 username aminvpn 103338 mac 103338 bytes_out 0 103338 bytes_in 0 103338 station_ip 113.203.58.81 103338 port 36 103338 unique_id port 103338 remote_ip 10.8.0.6 103341 username aminvpn 103341 mac 103341 bytes_out 0 103341 bytes_in 0 103341 station_ip 83.123.72.88 103341 port 41 103341 unique_id port 103341 remote_ip 10.8.0.6 103343 username aminvpn 103343 mac 103343 bytes_out 0 103343 bytes_in 0 103343 station_ip 113.203.58.81 103343 port 36 103343 unique_id port 103343 remote_ip 10.8.0.6 103351 username rezasekonji 103351 mac 103351 bytes_out 321395 103351 bytes_in 3129054 103351 station_ip 113.203.108.3 103351 port 36 103351 unique_id port 103351 remote_ip 10.8.0.114 103357 username aminvpn 103357 mac 103357 bytes_out 0 103357 bytes_in 0 103357 station_ip 83.123.72.88 103357 port 41 103357 unique_id port 103357 remote_ip 10.8.0.6 103359 username aminvpn 103359 mac 103359 bytes_out 0 103359 bytes_in 0 103359 station_ip 113.203.58.81 103359 port 42 103359 unique_id port 103359 remote_ip 10.8.0.6 103360 username rezasekonji 103360 mac 103360 bytes_out 0 103360 bytes_in 0 103360 station_ip 113.203.108.3 103360 port 41 103360 unique_id port 103360 remote_ip 10.8.0.114 103361 username aminvpn 103361 mac 103361 bytes_out 0 103361 bytes_in 0 103361 station_ip 83.123.72.88 103361 port 38 103361 unique_id port 103361 remote_ip 10.8.0.6 103363 username rezasekonji 103363 mac 103363 bytes_out 0 103363 bytes_in 0 103363 station_ip 113.203.108.3 103363 port 38 103363 unique_id port 103363 remote_ip 10.8.0.114 103314 username abbasaskari 103314 mac 103314 bytes_out 11630 103314 bytes_in 28982 103314 station_ip 83.122.211.224 103314 port 30 103314 unique_id port 103314 remote_ip 10.8.0.94 103315 username madadi2 103315 mac 103315 bytes_out 135551 103315 bytes_in 1094713 103315 station_ip 5.119.46.243 103315 port 41 103315 unique_id port 103315 remote_ip 10.8.0.26 103318 username rezasekonji 103318 mac 103318 bytes_out 0 103318 bytes_in 0 103318 station_ip 113.203.108.3 103318 port 41 103318 unique_id port 103318 remote_ip 10.8.0.114 103322 username mohammadmahdi 103322 mac 103322 bytes_out 0 103322 bytes_in 0 103322 station_ip 5.120.118.166 103322 port 38 103322 unique_id port 103324 username rezasekonji 103324 mac 103324 bytes_out 0 103324 bytes_in 0 103324 station_ip 113.203.108.3 103324 port 41 103324 unique_id port 103324 remote_ip 10.8.0.114 103325 username houshang 103325 kill_reason Another user logged on this global unique id 103325 mac 103325 bytes_out 0 103325 bytes_in 0 103325 station_ip 5.119.65.26 103325 port 40 103325 unique_id port 103327 username mohammadmahdi 103327 mac 103327 bytes_out 663157 103327 bytes_in 8060161 103327 station_ip 5.120.118.166 103327 port 38 103327 unique_id port 103327 remote_ip 10.8.0.34 103328 username aminvpn 103328 mac 103328 bytes_out 0 103328 bytes_in 0 103328 station_ip 83.123.72.88 103328 port 43 103328 unique_id port 103328 remote_ip 10.8.0.6 103331 username amir 103331 mac 103331 bytes_out 0 103331 bytes_in 0 103331 station_ip 46.225.208.141 103331 port 42 103331 unique_id port 103331 remote_ip 10.8.0.54 103333 username houshang 103333 kill_reason Another user logged on this global unique id 103333 mac 103333 bytes_out 0 103333 bytes_in 0 103333 station_ip 5.119.65.26 103333 port 40 103333 unique_id port 103335 username aminvpn 103335 mac 103335 bytes_out 0 103335 bytes_in 0 103335 station_ip 83.123.72.88 103335 port 38 103335 unique_id port 103335 remote_ip 10.8.0.6 103339 username rezasekonji 103339 mac 103339 bytes_out 0 103339 bytes_in 0 103339 station_ip 113.203.108.3 103339 port 38 103339 unique_id port 103339 remote_ip 10.8.0.114 103342 username rezasekonji 103342 mac 103342 bytes_out 0 103342 bytes_in 0 103342 station_ip 113.203.108.3 103342 port 30 103342 unique_id port 103342 remote_ip 10.8.0.114 103344 username aminvpn 103344 mac 103344 bytes_out 0 103344 bytes_in 0 103344 station_ip 83.123.72.88 103344 port 30 103344 unique_id port 103344 remote_ip 10.8.0.6 103349 username aminvpn 103349 mac 103349 bytes_out 0 103349 bytes_in 0 103349 station_ip 83.123.72.88 103349 port 30 103349 unique_id port 103349 remote_ip 10.8.0.6 103358 username rezasekonji 103358 mac 103358 bytes_out 0 103358 bytes_in 0 103358 station_ip 113.203.108.3 103358 port 38 103358 unique_id port 103358 remote_ip 10.8.0.114 103364 username houshang 103364 mac 103364 bytes_out 0 103364 bytes_in 0 103364 station_ip 5.119.65.26 103364 port 40 103364 unique_id port 103366 username rezasekonji 103366 mac 103366 bytes_out 0 103366 bytes_in 0 103366 station_ip 113.203.108.3 103366 port 30 103366 unique_id port 103366 remote_ip 10.8.0.114 103370 username rezasekonji 103370 mac 103370 bytes_out 0 103370 bytes_in 0 103370 station_ip 113.203.108.3 103370 port 38 103370 unique_id port 103370 remote_ip 10.8.0.114 103372 username rezasekonji 103372 mac 103372 bytes_out 0 103372 bytes_in 0 103372 station_ip 113.203.108.3 103365 username aminvpn 103365 mac 103365 bytes_out 0 103365 bytes_in 0 103365 station_ip 113.203.58.81 103365 port 42 103365 unique_id port 103365 remote_ip 10.8.0.6 103367 username aminvpn 103367 mac 103367 bytes_out 0 103367 bytes_in 0 103367 station_ip 83.123.72.88 103367 port 38 103367 unique_id port 103367 remote_ip 10.8.0.6 103369 username aminvpn 103369 mac 103369 bytes_out 0 103369 bytes_in 0 103369 station_ip 113.203.58.81 103369 port 30 103369 unique_id port 103369 remote_ip 10.8.0.6 103371 username arash 103371 mac 103371 bytes_out 352175 103371 bytes_in 4358655 103371 station_ip 37.27.10.230 103371 port 36 103371 unique_id port 103371 remote_ip 10.8.0.122 103376 username aminvpn 103376 mac 103376 bytes_out 56339 103376 bytes_in 68904 103376 station_ip 83.123.72.88 103376 port 40 103376 unique_id port 103376 remote_ip 10.8.0.6 103380 username aminvpn 103380 mac 103380 bytes_out 0 103380 bytes_in 0 103380 station_ip 83.123.72.88 103380 port 40 103380 unique_id port 103380 remote_ip 10.8.0.6 103383 username aminvpn 103383 mac 103383 bytes_out 0 103383 bytes_in 0 103383 station_ip 37.129.25.202 103383 port 42 103383 unique_id port 103383 remote_ip 10.8.0.6 103384 username mammad 103384 kill_reason Relative expiration date has reached 103384 unique_id port 103384 bytes_out 0 103384 bytes_in 0 103384 station_ip 2.183.242.155 103384 port 15729959 103384 nas_port_type Virtual 103390 username aminvpn 103390 mac 103390 bytes_out 0 103390 bytes_in 0 103390 station_ip 37.129.25.202 103390 port 42 103390 unique_id port 103390 remote_ip 10.8.0.6 103391 username aminvpn 103391 mac 103391 bytes_out 0 103391 bytes_in 0 103391 station_ip 83.123.72.88 103391 port 36 103391 unique_id port 103391 remote_ip 10.8.0.6 103393 username aminvpn 103393 mac 103393 bytes_out 0 103393 bytes_in 0 103393 station_ip 37.129.25.202 103393 port 40 103393 unique_id port 103393 remote_ip 10.8.0.6 103394 username aminvpn 103394 mac 103394 bytes_out 0 103394 bytes_in 0 103394 station_ip 83.123.72.88 103394 port 30 103394 unique_id port 103394 remote_ip 10.8.0.6 103395 username aminvpn 103395 mac 103395 bytes_out 0 103395 bytes_in 0 103395 station_ip 37.129.25.202 103395 port 36 103395 unique_id port 103395 remote_ip 10.8.0.6 103396 username aminvpn 103396 mac 103396 bytes_out 0 103396 bytes_in 0 103396 station_ip 83.123.72.88 103396 port 30 103396 unique_id port 103396 remote_ip 10.8.0.6 103399 username musa 103399 kill_reason Another user logged on this global unique id 103399 mac 103399 bytes_out 0 103399 bytes_in 0 103399 station_ip 37.129.113.16 103399 port 41 103399 unique_id port 103399 remote_ip 10.8.0.106 103401 username aminvpn 103401 mac 103401 bytes_out 1087258 103401 bytes_in 7064484 103401 station_ip 37.129.25.202 103401 port 36 103401 unique_id port 103401 remote_ip 10.8.0.6 103402 username aminvpn 103402 mac 103402 bytes_out 0 103402 bytes_in 0 103402 station_ip 83.123.72.88 103402 port 38 103402 unique_id port 103402 remote_ip 10.8.0.6 103403 username aminvpn 103403 mac 103403 bytes_out 655643 103403 bytes_in 3736518 103403 station_ip 37.129.25.202 103403 port 36 103403 unique_id port 103403 remote_ip 10.8.0.6 103405 username rajaei 103405 mac 103405 bytes_out 695330 103405 bytes_in 4795709 103405 station_ip 93.114.18.117 103405 port 30 103405 unique_id port 103405 remote_ip 10.8.0.142 103406 username arash 103406 mac 103406 bytes_out 11836 103372 port 30 103372 unique_id port 103372 remote_ip 10.8.0.114 103373 username rezasekonji 103373 mac 103373 bytes_out 0 103373 bytes_in 0 103373 station_ip 113.203.108.3 103373 port 30 103373 unique_id port 103373 remote_ip 10.8.0.114 103374 username rezasekonji 103374 mac 103374 bytes_out 0 103374 bytes_in 0 103374 station_ip 113.203.108.3 103374 port 30 103374 unique_id port 103374 remote_ip 10.8.0.114 103377 username rezasekonji 103377 mac 103377 bytes_out 0 103377 bytes_in 0 103377 station_ip 113.203.108.3 103377 port 30 103377 unique_id port 103377 remote_ip 10.8.0.114 103378 username aminvpn 103378 mac 103378 bytes_out 0 103378 bytes_in 0 103378 station_ip 37.129.25.202 103378 port 42 103378 unique_id port 103378 remote_ip 10.8.0.6 103381 username rezasekonji 103381 mac 103381 bytes_out 0 103381 bytes_in 0 103381 station_ip 113.203.108.3 103381 port 30 103381 unique_id port 103381 remote_ip 10.8.0.114 103382 username mammad 103382 kill_reason Relative expiration date has reached 103382 unique_id port 103382 bytes_out 0 103382 bytes_in 0 103382 station_ip 2.183.242.155 103382 port 15729958 103382 nas_port_type Virtual 103389 username mammad 103389 kill_reason Relative expiration date has reached 103389 unique_id port 103389 bytes_out 0 103389 bytes_in 0 103389 station_ip 2.183.242.155 103389 port 15729961 103389 nas_port_type Virtual 103392 username rezasekonji 103392 mac 103392 bytes_out 361197 103392 bytes_in 3701314 103392 station_ip 113.203.108.3 103392 port 30 103392 unique_id port 103392 remote_ip 10.8.0.114 103398 username aminvpn 103398 mac 103398 bytes_out 0 103398 bytes_in 0 103398 station_ip 83.123.72.88 103398 port 30 103398 unique_id port 103398 remote_ip 10.8.0.6 103400 username arash 103400 mac 103400 bytes_out 0 103400 bytes_in 0 103400 station_ip 37.27.10.230 103400 port 38 103400 unique_id port 103400 remote_ip 10.8.0.122 103408 username musa 103408 kill_reason Another user logged on this global unique id 103408 mac 103408 bytes_out 0 103408 bytes_in 0 103408 station_ip 37.129.113.16 103408 port 41 103408 unique_id port 103409 username aminvpn 103409 mac 103409 bytes_out 0 103409 bytes_in 0 103409 station_ip 83.123.72.88 103409 port 38 103409 unique_id port 103409 remote_ip 10.8.0.6 103410 username aminvpn 103410 mac 103410 bytes_out 0 103410 bytes_in 0 103410 station_ip 37.129.25.202 103410 port 36 103410 unique_id port 103410 remote_ip 10.8.0.6 103412 username aminvpn 103412 mac 103412 bytes_out 0 103412 bytes_in 0 103412 station_ip 37.129.25.202 103412 port 36 103412 unique_id port 103412 remote_ip 10.8.0.6 103415 username sobhan 103415 unique_id port 103415 terminate_cause Lost-Carrier 103415 bytes_out 123791 103415 bytes_in 2139568 103415 station_ip 5.233.73.150 103415 port 15729963 103415 nas_port_type Virtual 103415 remote_ip 5.5.5.112 103416 username arash 103416 mac 103416 bytes_out 1548580 103416 bytes_in 7851355 103416 station_ip 37.27.10.230 103416 port 30 103416 unique_id port 103416 remote_ip 10.8.0.122 103422 username aminvpn 103422 unique_id port 103422 terminate_cause Lost-Carrier 103422 bytes_out 1703587 103422 bytes_in 11828085 103422 station_ip 5.119.130.43 103422 port 15729965 103422 nas_port_type Virtual 103422 remote_ip 5.5.5.148 103425 username alipour 103425 mac 103425 bytes_out 0 103425 bytes_in 0 103425 station_ip 83.122.73.74 103425 port 37 103425 unique_id port 103432 username rajaei 103432 mac 103432 bytes_out 0 103432 bytes_in 0 103432 station_ip 37.156.50.127 103385 username aminvpn 103385 mac 103385 bytes_out 0 103385 bytes_in 0 103385 station_ip 83.123.72.88 103385 port 40 103385 unique_id port 103385 remote_ip 10.8.0.6 103386 username aminvpn 103386 mac 103386 bytes_out 0 103386 bytes_in 0 103386 station_ip 37.129.25.202 103386 port 42 103386 unique_id port 103386 remote_ip 10.8.0.6 103387 username aminvpn 103387 mac 103387 bytes_out 0 103387 bytes_in 0 103387 station_ip 83.123.72.88 103387 port 40 103387 unique_id port 103387 remote_ip 10.8.0.6 103388 username madadi2 103388 mac 103388 bytes_out 219866 103388 bytes_in 450717 103388 station_ip 5.119.15.38 103388 port 36 103388 unique_id port 103388 remote_ip 10.8.0.26 103397 username aminvpn 103397 mac 103397 bytes_out 0 103397 bytes_in 0 103397 station_ip 37.129.25.202 103397 port 36 103397 unique_id port 103397 remote_ip 10.8.0.6 103404 username aminvpn 103404 mac 103404 bytes_out 0 103404 bytes_in 0 103404 station_ip 83.123.72.88 103404 port 40 103404 unique_id port 103404 remote_ip 10.8.0.6 103413 username sade 103413 unique_id port 103413 terminate_cause User-Request 103413 bytes_out 22778270 103413 bytes_in 451210047 103413 station_ip 5.120.60.122 103413 port 15729954 103413 nas_port_type Virtual 103413 remote_ip 5.5.5.255 103426 username abbasaskari 103426 mac 103426 bytes_out 0 103426 bytes_in 0 103426 station_ip 83.122.157.108 103426 port 37 103426 unique_id port 103426 remote_ip 10.8.0.94 103427 username mahyaarabpour 103427 mac 103427 bytes_out 3085680 103427 bytes_in 47633133 103427 station_ip 5.119.230.216 103427 port 30 103427 unique_id port 103427 remote_ip 10.8.0.82 103428 username musa 103428 mac 103428 bytes_out 0 103428 bytes_in 0 103428 station_ip 37.129.113.16 103428 port 41 103428 unique_id port 103431 username tahmasebi 103431 kill_reason Another user logged on this global unique id 103431 mac 103431 bytes_out 0 103431 bytes_in 0 103431 station_ip 5.119.101.189 103431 port 37 103431 unique_id port 103433 username tahmasebi 103433 kill_reason Another user logged on this global unique id 103433 mac 103433 bytes_out 0 103433 bytes_in 0 103433 station_ip 5.119.101.189 103433 port 37 103433 unique_id port 103438 username mirzaei 103438 mac 103438 bytes_out 0 103438 bytes_in 0 103438 station_ip 5.119.19.151 103438 port 33 103438 unique_id port 103441 mac 103441 bytes_out 0 103441 bytes_in 0 103441 station_ip 5.119.202.96 103441 port 20 103441 unique_id port 103441 remote_ip 10.8.1.22 103442 username mehdizare 103442 mac 103442 bytes_out 0 103442 bytes_in 0 103442 station_ip 5.119.202.96 103442 port 21 103442 unique_id port 103442 remote_ip 10.8.1.22 103443 username mehdizare 103443 mac 103443 bytes_out 62095 103443 bytes_in 106680 103443 station_ip 5.119.202.96 103443 port 20 103443 unique_id port 103443 remote_ip 10.8.1.22 103446 username alirr 103446 unique_id port 103446 terminate_cause Lost-Carrier 103446 bytes_out 1845840 103446 bytes_in 50172000 103446 station_ip 5.62.200.64 103446 port 15729971 103446 nas_port_type Virtual 103446 remote_ip 5.5.5.85 103450 username morteza 103450 mac 103450 bytes_out 1647158 103450 bytes_in 27272068 103450 station_ip 37.129.24.36 103450 port 33 103450 unique_id port 103450 remote_ip 10.8.0.90 103453 username madadi2 103453 mac 103453 bytes_out 158573 103453 bytes_in 669871 103453 station_ip 5.120.183.70 103453 port 40 103453 unique_id port 103453 remote_ip 10.8.0.26 103454 username mehdizare 103454 mac 103454 bytes_out 87119 103406 bytes_in 26736 103406 station_ip 37.27.10.230 103406 port 38 103406 unique_id port 103406 remote_ip 10.8.0.122 103407 username aminvpn 103407 mac 103407 bytes_out 284656 103407 bytes_in 2534009 103407 station_ip 37.129.25.202 103407 port 36 103407 unique_id port 103407 remote_ip 10.8.0.6 103411 username aminvpn 103411 mac 103411 bytes_out 0 103411 bytes_in 0 103411 station_ip 83.123.72.88 103411 port 38 103411 unique_id port 103411 remote_ip 10.8.0.6 103414 username aminvpn 103414 mac 103414 bytes_out 0 103414 bytes_in 0 103414 station_ip 83.123.72.88 103414 port 36 103414 unique_id port 103414 remote_ip 10.8.0.6 103417 username arash 103417 mac 103417 bytes_out 422359 103417 bytes_in 785912 103417 station_ip 37.27.10.230 103417 port 36 103417 unique_id port 103417 remote_ip 10.8.0.122 103418 username aminvpn 103418 unique_id port 103418 terminate_cause User-Request 103418 bytes_out 2304670 103418 bytes_in 49534350 103418 station_ip 5.119.130.43 103418 port 15729955 103418 nas_port_type Virtual 103418 remote_ip 5.5.5.93 103419 username arash 103419 mac 103419 bytes_out 2399232 103419 bytes_in 28698317 103419 station_ip 37.27.10.230 103419 port 30 103419 unique_id port 103419 remote_ip 10.8.0.122 103420 username mohammadmahdi 103420 mac 103420 bytes_out 94349 103420 bytes_in 481979 103420 station_ip 5.120.118.166 103420 port 36 103420 unique_id port 103420 remote_ip 10.8.0.34 103421 username arabpour 103421 unique_id port 103421 terminate_cause User-Request 103421 bytes_out 103202 103421 bytes_in 1250169 103421 station_ip 158.58.108.66 103421 port 15729966 103421 nas_port_type Virtual 103421 remote_ip 5.5.5.255 103423 username rajaei 103423 mac 103423 bytes_out 476485 103423 bytes_in 2556108 103423 station_ip 37.156.50.127 103423 port 30 103423 unique_id port 103423 remote_ip 10.8.0.142 103424 username mohammadmahdi 103424 mac 103424 bytes_out 1837323 103424 bytes_in 25368573 103424 station_ip 5.120.118.166 103424 port 36 103424 unique_id port 103424 remote_ip 10.8.0.34 103429 username tahmasebi 103429 kill_reason Another user logged on this global unique id 103429 mac 103429 bytes_out 0 103429 bytes_in 0 103429 station_ip 5.119.101.189 103429 port 37 103429 unique_id port 103429 remote_ip 10.8.0.66 103430 username rajaei 103430 kill_reason Another user logged on this global unique id 103430 mac 103430 bytes_out 0 103430 bytes_in 0 103430 station_ip 37.156.50.127 103430 port 38 103430 unique_id port 103430 remote_ip 10.8.0.142 103435 username tahmasebi 103435 kill_reason Another user logged on this global unique id 103435 mac 103435 bytes_out 0 103435 bytes_in 0 103435 station_ip 5.119.101.189 103435 port 37 103435 unique_id port 103439 username mohammadmahdi 103439 mac 103439 bytes_out 0 103439 bytes_in 0 103439 station_ip 5.120.118.166 103439 port 30 103439 unique_id port 103439 remote_ip 10.8.0.34 103444 username mehdizare 103444 mac 103444 bytes_out 17465 103444 bytes_in 24763 103444 station_ip 5.119.202.96 103444 port 20 103444 unique_id port 103444 remote_ip 10.8.1.22 103447 username aminvpn 103447 mac 103447 bytes_out 243128 103447 bytes_in 639727 103447 station_ip 113.203.39.25 103447 port 37 103447 unique_id port 103447 remote_ip 10.8.0.6 103448 username mohammadmahdi 103448 kill_reason Another user logged on this global unique id 103448 mac 103448 bytes_out 0 103448 bytes_in 0 103448 station_ip 5.120.118.166 103448 port 33 103448 unique_id port 103448 remote_ip 10.8.0.34 103449 username mohammadmahdi 103449 mac 103449 bytes_out 0 103449 bytes_in 0 103432 port 38 103432 unique_id port 103434 username rajaei 103434 mac 103434 bytes_out 0 103434 bytes_in 0 103434 station_ip 37.156.50.127 103434 port 30 103434 unique_id port 103434 remote_ip 10.8.0.142 103436 username tahmasebi 103436 mac 103436 bytes_out 0 103436 bytes_in 0 103436 station_ip 5.119.101.189 103436 port 37 103436 unique_id port 103437 username rajaei 103437 mac 103437 bytes_out 1032329 103437 bytes_in 11287765 103437 station_ip 5.134.132.25 103437 port 30 103437 unique_id port 103437 remote_ip 10.8.0.142 103440 username mahdixz 103440 unique_id port 103440 terminate_cause Lost-Carrier 103440 bytes_out 7401135 103440 bytes_in 224114691 103440 station_ip 151.235.118.60 103440 port 15729970 103440 nas_port_type Virtual 103440 remote_ip 5.5.5.80 103445 username mehdizare 103445 mac 103445 bytes_out 97249 103445 bytes_in 90133 103445 station_ip 5.119.202.96 103445 port 30 103445 unique_id port 103445 remote_ip 10.8.0.22 103451 username abbasaskari 103451 mac 103451 bytes_out 1241159 103451 bytes_in 17578794 103451 station_ip 83.122.254.72 103451 port 40 103451 unique_id port 103451 remote_ip 10.8.0.94 103457 username abbasaskari 103457 mac 103457 bytes_out 13659 103457 bytes_in 37190 103457 station_ip 83.122.239.252 103457 port 30 103457 unique_id port 103457 remote_ip 10.8.0.94 103463 username aminvpn 103463 mac 103463 bytes_out 0 103463 bytes_in 0 103463 station_ip 83.122.133.187 103463 port 37 103463 unique_id port 103463 remote_ip 10.8.0.6 103480 username mehdizare 103480 mac 103480 bytes_out 0 103480 bytes_in 0 103480 station_ip 5.119.202.96 103480 port 38 103480 unique_id port 103480 remote_ip 10.8.0.22 103482 username malekpoir 103482 kill_reason Another user logged on this global unique id 103482 mac 103482 bytes_out 0 103482 bytes_in 0 103482 station_ip 5.119.65.115 103482 port 42 103482 unique_id port 103487 username malekpoir 103487 kill_reason Another user logged on this global unique id 103487 mac 103487 bytes_out 0 103487 bytes_in 0 103487 station_ip 5.119.65.115 103487 port 42 103487 unique_id port 103491 username mehdizare 103491 mac 103491 bytes_out 0 103491 bytes_in 0 103491 station_ip 5.119.202.96 103491 port 41 103491 unique_id port 103491 remote_ip 10.8.0.22 103494 username madadi2 103494 mac 103494 bytes_out 135062 103494 bytes_in 314655 103494 station_ip 5.119.127.51 103494 port 36 103494 unique_id port 103494 remote_ip 10.8.0.26 103499 username morteza 103499 mac 103499 bytes_out 0 103499 bytes_in 0 103499 station_ip 113.203.30.174 103499 port 36 103499 unique_id port 103499 remote_ip 10.8.0.90 103502 username madadi2 103502 mac 103502 bytes_out 0 103502 bytes_in 0 103502 station_ip 5.120.95.20 103502 port 41 103502 unique_id port 103502 remote_ip 10.8.0.26 103505 username rajaei 103505 mac 103505 bytes_out 0 103505 bytes_in 0 103505 station_ip 89.32.106.7 103505 port 36 103505 unique_id port 103506 username mehdizare 103506 mac 103506 bytes_out 0 103506 bytes_in 0 103506 station_ip 5.119.202.96 103506 port 20 103506 unique_id port 103506 remote_ip 10.8.1.22 103508 username mehdizare 103508 mac 103508 bytes_out 0 103508 bytes_in 0 103508 station_ip 5.119.202.96 103508 port 20 103508 unique_id port 103508 remote_ip 10.8.1.22 103513 username alireza1 103513 unique_id port 103513 terminate_cause Lost-Carrier 103513 bytes_out 1583461 103513 bytes_in 67860162 103513 station_ip 5.120.42.58 103513 port 15729974 103513 nas_port_type Virtual 103513 remote_ip 5.5.5.92 103449 station_ip 5.120.118.166 103449 port 33 103449 unique_id port 103452 username musa 103452 mac 103452 bytes_out 1531456 103452 bytes_in 19798575 103452 station_ip 83.122.98.77 103452 port 33 103452 unique_id port 103452 remote_ip 10.8.0.106 103456 username aminvpn 103456 kill_reason Another user logged on this global unique id 103456 mac 103456 bytes_out 0 103456 bytes_in 0 103456 station_ip 113.203.39.25 103456 port 38 103456 unique_id port 103456 remote_ip 10.8.0.6 103459 username avaanna 103459 mac 103459 bytes_out 0 103459 bytes_in 0 103459 station_ip 37.129.228.120 103459 port 37 103459 unique_id port 103459 remote_ip 10.8.0.138 103461 username avaanna 103461 mac 103461 bytes_out 0 103461 bytes_in 0 103461 station_ip 37.129.228.120 103461 port 20 103461 unique_id port 103461 remote_ip 10.8.1.102 103462 username avaanna 103462 mac 103462 bytes_out 40698 103462 bytes_in 158184 103462 station_ip 37.129.228.120 103462 port 20 103462 unique_id port 103462 remote_ip 10.8.1.102 103464 username mehdizare 103464 mac 103464 bytes_out 789326 103464 bytes_in 16015172 103464 station_ip 5.119.202.96 103464 port 33 103464 unique_id port 103464 remote_ip 10.8.0.22 103465 username mehdizare 103465 mac 103465 bytes_out 7337 103465 bytes_in 4478 103465 station_ip 5.119.202.96 103465 port 38 103465 unique_id port 103465 remote_ip 10.8.0.22 103466 username musa 103466 mac 103466 bytes_out 0 103466 bytes_in 0 103466 station_ip 83.122.12.139 103466 port 40 103466 unique_id port 103466 remote_ip 10.8.0.106 103468 username mehdizare 103468 mac 103468 bytes_out 0 103468 bytes_in 0 103468 station_ip 5.119.202.96 103468 port 41 103468 unique_id port 103468 remote_ip 10.8.0.22 103469 username mehdizare 103469 mac 103469 bytes_out 0 103469 bytes_in 0 103469 station_ip 5.119.202.96 103469 port 41 103469 unique_id port 103469 remote_ip 10.8.0.22 103471 username morteza 103471 mac 103471 bytes_out 0 103471 bytes_in 0 103471 station_ip 37.129.51.196 103471 port 38 103471 unique_id port 103473 username mehdizare 103473 mac 103473 bytes_out 0 103473 bytes_in 0 103473 station_ip 5.119.202.96 103473 port 41 103473 unique_id port 103473 remote_ip 10.8.0.22 103474 username aminvpn 103474 unique_id port 103474 terminate_cause Lost-Carrier 103474 bytes_out 159341 103474 bytes_in 545237 103474 station_ip 31.57.143.30 103474 port 15729977 103474 nas_port_type Virtual 103474 remote_ip 5.5.5.98 103475 username amir 103475 mac 103475 bytes_out 0 103475 bytes_in 0 103475 station_ip 46.225.214.90 103475 port 20 103475 unique_id port 103475 remote_ip 10.8.1.34 103476 username amir 103476 mac 103476 bytes_out 0 103476 bytes_in 0 103476 station_ip 46.225.214.90 103476 port 41 103476 unique_id port 103476 remote_ip 10.8.0.54 103477 username malekpoir 103501 port 43 103477 kill_reason Another user logged on this global unique id 103477 mac 103477 bytes_out 0 103477 bytes_in 0 103477 station_ip 5.119.65.115 103477 port 42 103477 unique_id port 103477 remote_ip 10.8.0.130 103481 username aminvpn 103481 unique_id port 103481 terminate_cause Lost-Carrier 103481 bytes_out 2563 103481 bytes_in 50683 103481 station_ip 31.57.143.30 103481 port 15729978 103481 nas_port_type Virtual 103481 remote_ip 5.5.5.99 103484 username madadi2 103484 mac 103484 bytes_out 0 103484 bytes_in 0 103484 station_ip 5.119.195.41 103484 port 44 103484 unique_id port 103484 remote_ip 10.8.0.26 103486 username aminvpn 103486 unique_id port 103486 terminate_cause Lost-Carrier 103486 bytes_out 533612 103454 bytes_in 92630 103454 station_ip 5.119.202.96 103454 port 30 103454 unique_id port 103454 remote_ip 10.8.0.22 103455 username alirr 103455 unique_id port 103455 terminate_cause User-Request 103455 bytes_out 79599466 103455 bytes_in 2912014579 103455 station_ip 5.62.200.64 103455 port 15729972 103455 nas_port_type Virtual 103455 remote_ip 5.5.5.86 103458 username musa 103458 mac 103458 bytes_out 0 103458 bytes_in 0 103458 station_ip 83.122.226.203 103458 port 20 103458 unique_id port 103458 remote_ip 10.8.1.78 103460 username aminvpn 103460 mac 103460 bytes_out 0 103460 bytes_in 0 103460 station_ip 113.203.39.25 103460 port 38 103460 unique_id port 103467 username mehdizare 103467 mac 103467 bytes_out 0 103467 bytes_in 0 103467 station_ip 5.119.202.96 103467 port 41 103467 unique_id port 103467 remote_ip 10.8.0.22 103470 username morteza 103470 kill_reason Another user logged on this global unique id 103470 mac 103470 bytes_out 0 103470 bytes_in 0 103470 station_ip 37.129.51.196 103470 port 38 103470 unique_id port 103470 remote_ip 10.8.0.90 103472 username amir 103472 mac 103472 bytes_out 40030 103472 bytes_in 123586 103472 station_ip 46.225.214.90 103472 port 20 103472 unique_id port 103472 remote_ip 10.8.1.34 103478 username mehdizare 103478 mac 103478 bytes_out 0 103478 bytes_in 0 103478 station_ip 5.119.202.96 103478 port 38 103478 unique_id port 103478 remote_ip 10.8.0.22 103479 username malekpoir 103479 kill_reason Another user logged on this global unique id 103479 mac 103479 bytes_out 0 103479 bytes_in 0 103479 station_ip 5.119.65.115 103479 port 42 103479 unique_id port 103483 username amir 103483 mac 103483 bytes_out 0 103483 bytes_in 0 103483 station_ip 46.225.214.90 103483 port 43 103483 unique_id port 103483 remote_ip 10.8.0.54 103485 username alipour 103485 kill_reason Another user logged on this global unique id 103485 mac 103485 bytes_out 0 103485 bytes_in 0 103485 station_ip 83.122.73.74 103485 port 36 103485 unique_id port 103485 remote_ip 10.8.0.70 103488 username mehdizare 103488 mac 103488 bytes_out 0 103488 bytes_in 0 103488 station_ip 5.119.202.96 103488 port 41 103488 unique_id port 103488 remote_ip 10.8.0.22 103495 username mehdizare 103495 mac 103495 bytes_out 0 103495 bytes_in 0 103495 station_ip 5.119.202.96 103495 port 20 103495 unique_id port 103495 remote_ip 10.8.1.22 103497 username madadi2 103497 mac 103497 bytes_out 0 103497 bytes_in 0 103497 station_ip 5.120.161.126 103497 port 36 103497 unique_id port 103497 remote_ip 10.8.0.26 103498 username amir 103498 mac 103498 bytes_out 0 103498 bytes_in 0 103498 station_ip 46.225.214.90 103498 port 36 103498 unique_id port 103498 remote_ip 10.8.0.54 103501 username amir 103501 mac 103501 bytes_out 59818 103501 bytes_in 471280 103501 station_ip 46.225.214.90 103501 unique_id port 103501 remote_ip 10.8.0.54 103504 username kamali1 103504 mac 103504 bytes_out 0 103504 bytes_in 0 103504 station_ip 5.120.52.126 103504 port 40 103504 unique_id port 103504 remote_ip 10.8.0.110 103509 username amir 103509 mac 103509 bytes_out 0 103509 bytes_in 0 103509 station_ip 46.225.214.90 103509 port 36 103509 unique_id port 103509 remote_ip 10.8.0.54 103510 username morteza 103510 mac 103510 bytes_out 0 103510 bytes_in 0 103510 station_ip 113.203.30.174 103510 port 36 103510 unique_id port 103510 remote_ip 10.8.0.90 103511 username musa 103511 kill_reason Another user logged on this global unique id 103511 mac 103511 bytes_out 0 103486 bytes_in 7628574 103486 station_ip 5.120.57.152 103486 port 15729979 103486 nas_port_type Virtual 103486 remote_ip 5.5.5.124 103489 username amir 103489 mac 103489 bytes_out 0 103489 bytes_in 0 103489 station_ip 46.225.214.90 103489 port 43 103489 unique_id port 103489 remote_ip 10.8.0.54 103490 username abbasaskari 103490 mac 103490 bytes_out 0 103490 bytes_in 0 103490 station_ip 83.122.178.111 103490 port 38 103490 unique_id port 103490 remote_ip 10.8.0.94 103492 username mehdizare 103492 mac 103492 bytes_out 0 103492 bytes_in 0 103492 station_ip 5.119.202.96 103492 port 38 103492 unique_id port 103492 remote_ip 10.8.0.22 103493 username alipour 103493 mac 103493 bytes_out 0 103493 bytes_in 0 103493 station_ip 83.122.73.74 103493 port 36 103493 unique_id port 103496 username amir 103496 mac 103496 bytes_out 42972 103496 bytes_in 258898 103496 station_ip 46.225.214.90 103496 port 41 103496 unique_id port 103496 remote_ip 10.8.0.54 103500 username aminvpn 103500 unique_id port 103500 terminate_cause Lost-Carrier 103500 bytes_out 5905036 103500 bytes_in 123669245 103500 station_ip 5.120.130.212 103500 port 15729973 103500 nas_port_type Virtual 103500 remote_ip 5.5.5.91 103503 username rajaei 103503 kill_reason Another user logged on this global unique id 103503 mac 103503 bytes_out 0 103503 bytes_in 0 103503 station_ip 89.32.106.7 103503 port 36 103503 unique_id port 103503 remote_ip 10.8.0.142 103507 username mehdizare 103507 mac 103507 bytes_out 0 103507 bytes_in 0 103507 station_ip 5.119.202.96 103507 port 20 103507 unique_id port 103507 remote_ip 10.8.1.22 103512 username ahmadipour 103512 unique_id port 103512 terminate_cause Lost-Carrier 103512 bytes_out 152847 103512 bytes_in 3077497 103512 station_ip 83.123.100.202 103512 port 15729980 103512 nas_port_type Virtual 103512 remote_ip 5.5.5.68 103514 username mehdizare 103514 mac 103514 bytes_out 55902 103514 bytes_in 76551 103514 station_ip 5.119.202.96 103514 port 20 103514 unique_id port 103514 remote_ip 10.8.1.22 103515 username rajaei 103515 mac 103515 bytes_out 743265 103515 bytes_in 6373161 103515 station_ip 5.134.157.122 103515 port 44 103515 unique_id port 103515 remote_ip 10.8.0.142 103517 username malekpoir 103517 kill_reason Another user logged on this global unique id 103517 mac 103517 bytes_out 0 103517 bytes_in 0 103517 station_ip 5.119.65.115 103517 port 42 103517 unique_id port 103518 username malekpoir 103518 mac 103518 bytes_out 0 103518 bytes_in 0 103518 station_ip 5.119.65.115 103518 port 42 103518 unique_id port 103519 username kamali1 103519 mac 103519 bytes_out 161302 103519 bytes_in 179902 103519 station_ip 5.120.52.126 103519 port 41 103519 unique_id port 103519 remote_ip 10.8.0.110 103524 username forozande 103524 mac 103524 bytes_out 376434 103524 bytes_in 1125613 103524 station_ip 83.123.250.160 103524 port 36 103524 unique_id port 103524 remote_ip 10.8.0.74 103525 username alihosseini 103525 mac 103525 bytes_out 0 103525 bytes_in 0 103525 station_ip 5.119.112.59 103525 port 43 103525 unique_id port 103525 remote_ip 10.8.0.14 103535 username alihosseini 103535 mac 103535 bytes_out 0 103535 bytes_in 0 103535 station_ip 5.119.112.59 103535 port 41 103535 unique_id port 103535 remote_ip 10.8.0.14 103539 username forozande 103539 mac 103539 bytes_out 21670 103539 bytes_in 30184 103539 station_ip 83.122.30.140 103539 port 37 103539 unique_id port 103539 remote_ip 10.8.0.74 103540 username malekpoir 103540 kill_reason Another user logged on this global unique id 103511 bytes_in 0 103511 station_ip 83.122.113.39 103511 port 43 103511 unique_id port 103511 remote_ip 10.8.0.106 103520 username musa 103520 mac 103520 bytes_out 0 103520 bytes_in 0 103520 station_ip 83.122.113.39 103520 port 43 103520 unique_id port 103521 username alihosseini 103521 mac 103521 bytes_out 0 103521 bytes_in 0 103521 station_ip 5.119.112.59 103521 port 41 103521 unique_id port 103521 remote_ip 10.8.0.14 103522 username alihosseini 103522 mac 103522 bytes_out 10551 103522 bytes_in 47105 103522 station_ip 5.119.112.59 103522 port 41 103522 unique_id port 103522 remote_ip 10.8.0.14 103523 username mehdizare 103523 mac 103523 bytes_out 59840 103523 bytes_in 55741 103523 station_ip 5.119.202.96 103523 port 20 103523 unique_id port 103523 remote_ip 10.8.1.22 103526 username mahdiyehalizadeh 103526 mac 103526 bytes_out 1080310 103526 bytes_in 16113973 103526 station_ip 113.203.68.191 103526 port 41 103526 unique_id port 103526 remote_ip 10.8.0.42 103527 username alipour 103527 mac 103527 bytes_out 3736760 103527 bytes_in 42116159 103527 station_ip 83.122.73.74 103527 port 38 103527 unique_id port 103527 remote_ip 10.8.0.70 103528 username mehdizare 103528 mac 103528 bytes_out 0 103528 bytes_in 0 103528 station_ip 5.119.202.96 103528 port 20 103528 unique_id port 103528 remote_ip 10.8.1.22 103529 username alipour 103529 mac 103529 bytes_out 0 103529 bytes_in 0 103529 station_ip 83.122.73.74 103529 port 22 103529 unique_id port 103529 remote_ip 10.8.1.38 103530 username mehdizare 103530 mac 103530 bytes_out 0 103530 bytes_in 0 103530 station_ip 5.119.202.96 103530 port 20 103530 unique_id port 103530 remote_ip 10.8.1.22 103532 username forozande 103532 mac 103532 bytes_out 1871313 103532 bytes_in 7788673 103532 station_ip 83.122.30.140 103532 port 36 103532 unique_id port 103532 remote_ip 10.8.0.74 103533 username forozande 103533 mac 103533 bytes_out 190083 103533 bytes_in 958046 103533 station_ip 83.122.30.140 103533 port 37 103533 unique_id port 103533 remote_ip 10.8.0.74 103537 username forozande 103537 mac 103537 bytes_out 2274 103537 bytes_in 5814 103537 station_ip 83.122.30.140 103537 port 37 103537 unique_id port 103537 remote_ip 10.8.0.74 103538 username aminvpn 103538 mac 103538 bytes_out 0 103538 bytes_in 0 103538 station_ip 83.122.133.187 103538 port 36 103538 unique_id port 103538 remote_ip 10.8.0.6 103541 username aminvpn 103541 mac 103541 bytes_out 86282 103541 bytes_in 131436 103541 station_ip 83.123.147.176 103541 port 38 103541 unique_id port 103541 remote_ip 10.8.0.6 103542 username aminvpn 103542 mac 103542 bytes_out 1800 103542 bytes_in 4007 103542 station_ip 83.122.133.187 103542 port 41 103542 unique_id port 103542 remote_ip 10.8.0.6 103543 username forozande 103543 mac 103543 bytes_out 83860 103543 bytes_in 867452 103543 station_ip 83.122.106.14 103543 port 37 103543 unique_id port 103543 remote_ip 10.8.0.74 103545 username aminvpn 103545 mac 103545 bytes_out 10576 103545 bytes_in 15669 103545 station_ip 83.123.147.176 103545 port 38 103545 unique_id port 103545 remote_ip 10.8.0.6 103555 username aminvpn 103555 mac 103555 bytes_out 0 103555 bytes_in 0 103555 station_ip 83.123.147.176 103555 port 40 103555 unique_id port 103555 remote_ip 10.8.0.6 103562 username aminvpn 103562 mac 103562 bytes_out 0 103562 bytes_in 0 103562 station_ip 83.123.147.176 103562 port 40 103562 unique_id port 103562 remote_ip 10.8.0.6 103516 username forozande 103516 mac 103516 bytes_out 1663979 103516 bytes_in 19829548 103516 station_ip 37.129.23.61 103516 port 36 103516 unique_id port 103516 remote_ip 10.8.0.74 103531 username aminvpn 103531 mac 103531 bytes_out 626845 103531 bytes_in 1107535 103531 station_ip 83.122.133.187 103531 port 37 103531 unique_id port 103531 remote_ip 10.8.0.6 103534 username madadi2 103534 mac 103534 bytes_out 111399 103534 bytes_in 735167 103534 station_ip 5.120.175.212 103534 port 36 103534 unique_id port 103534 remote_ip 10.8.0.26 103536 username aminvpn 103536 mac 103536 bytes_out 613980 103536 bytes_in 1132005 103536 station_ip 83.123.147.176 103536 port 38 103536 unique_id port 103536 remote_ip 10.8.0.6 103546 username aminvpn 103546 mac 103546 bytes_out 0 103546 bytes_in 0 103546 station_ip 83.122.133.187 103546 port 37 103546 unique_id port 103546 remote_ip 10.8.0.6 103547 username aminvpn 103547 mac 103547 bytes_out 0 103547 bytes_in 0 103547 station_ip 83.123.147.176 103547 port 41 103547 unique_id port 103547 remote_ip 10.8.0.6 103549 username aminvpn 103549 mac 103549 bytes_out 4003 103549 bytes_in 4983 103549 station_ip 83.122.133.187 103549 port 37 103549 unique_id port 103549 remote_ip 10.8.0.6 103551 username aminvpn 103551 mac 103551 bytes_out 0 103551 bytes_in 0 103551 station_ip 83.123.147.176 103551 port 40 103551 unique_id port 103551 remote_ip 10.8.0.6 103552 username aminvpn 103552 mac 103552 bytes_out 0 103552 bytes_in 0 103552 station_ip 83.122.133.187 103552 port 37 103552 unique_id port 103552 remote_ip 10.8.0.6 103553 username aminvpn 103553 mac 103553 bytes_out 0 103553 bytes_in 0 103553 station_ip 83.123.147.176 103553 port 38 103553 unique_id port 103553 remote_ip 10.8.0.6 103556 username aminvpn 103556 mac 103556 bytes_out 5147 103556 bytes_in 5760 103556 station_ip 83.122.133.187 103556 port 37 103556 unique_id port 103556 remote_ip 10.8.0.6 103559 username aminvpn 103559 mac 103559 bytes_out 0 103559 bytes_in 0 103559 station_ip 83.123.147.176 103559 port 40 103559 unique_id port 103559 remote_ip 10.8.0.6 103561 username aminvpn 103561 mac 103561 bytes_out 0 103561 bytes_in 0 103561 station_ip 83.122.133.187 103561 port 41 103561 unique_id port 103561 remote_ip 10.8.0.6 103564 username aminvpn 103564 mac 103564 bytes_out 0 103564 bytes_in 0 103564 station_ip 83.123.147.176 103564 port 40 103564 unique_id port 103564 remote_ip 10.8.0.6 103566 username alihosseini 103566 mac 103566 bytes_out 0 103566 bytes_in 0 103566 station_ip 5.119.112.59 103566 port 36 103566 unique_id port 103566 remote_ip 10.8.0.14 103570 username malekpoir 103570 mac 103570 bytes_out 0 103570 bytes_in 0 103570 station_ip 5.119.65.115 103570 port 44 103570 unique_id port 103571 username aminvpn 103571 mac 103571 bytes_out 39195 103571 bytes_in 16644 103571 station_ip 83.122.133.187 103571 port 41 103571 unique_id port 103571 remote_ip 10.8.0.6 103574 username mehdizare 103574 mac 103574 bytes_out 8009 103574 bytes_in 14354 103574 station_ip 5.119.202.96 103574 port 20 103574 unique_id port 103574 remote_ip 10.8.1.22 103576 username aminvpn 103576 mac 103576 bytes_out 4788 103576 bytes_in 6106 103576 station_ip 83.122.133.187 103576 port 40 103576 unique_id port 103576 remote_ip 10.8.0.6 103579 username aminvpn 103579 mac 103579 bytes_out 0 103579 bytes_in 0 103579 station_ip 83.122.133.187 103579 port 40 103540 mac 103540 bytes_out 0 103540 bytes_in 0 103540 station_ip 5.119.65.115 103540 port 44 103540 unique_id port 103540 remote_ip 10.8.0.130 103544 username mehdizare 103544 mac 103544 bytes_out 0 103544 bytes_in 0 103544 station_ip 5.119.202.96 103544 port 20 103544 unique_id port 103544 remote_ip 10.8.1.22 103548 username amir 103548 mac 103548 bytes_out 4905871 103548 bytes_in 13889001 103548 station_ip 46.225.214.90 103548 port 40 103548 unique_id port 103548 remote_ip 10.8.0.54 103550 username madadi2 103550 mac 103550 bytes_out 370490 103550 bytes_in 3214080 103550 station_ip 5.119.179.17 103550 port 38 103550 unique_id port 103550 remote_ip 10.8.0.26 103554 username aminvpn 103554 mac 103554 bytes_out 9296 103554 bytes_in 9819 103554 station_ip 83.122.133.187 103554 port 37 103554 unique_id port 103554 remote_ip 10.8.0.6 103557 username aminvpn 103557 mac 103557 bytes_out 0 103557 bytes_in 0 103557 station_ip 83.123.147.176 103557 port 40 103557 unique_id port 103557 remote_ip 10.8.0.6 103558 username aminvpn 103558 mac 103558 bytes_out 0 103558 bytes_in 0 103558 station_ip 83.122.133.187 103558 port 41 103558 unique_id port 103558 remote_ip 10.8.0.6 103560 username kamali1 103560 mac 103560 bytes_out 0 103560 bytes_in 0 103560 station_ip 5.120.52.126 103560 port 42 103560 unique_id port 103560 remote_ip 10.8.0.110 103565 username alihosseini 103565 mac 103565 bytes_out 3156747 103565 bytes_in 33152738 103565 station_ip 5.119.112.59 103565 port 36 103565 unique_id port 103565 remote_ip 10.8.0.14 103567 username amir 103567 mac 103567 bytes_out 0 103567 bytes_in 0 103567 station_ip 46.225.214.90 103567 port 38 103567 unique_id port 103567 remote_ip 10.8.0.54 103568 username alihosseini 103568 mac 103568 bytes_out 0 103568 bytes_in 0 103568 station_ip 5.119.112.59 103568 port 36 103568 unique_id port 103568 remote_ip 10.8.0.14 103572 username amir 103572 mac 103572 bytes_out 0 103572 bytes_in 0 103572 station_ip 46.225.214.90 103572 port 36 103572 unique_id port 103572 remote_ip 10.8.0.54 103573 username aminvpn 103573 mac 103573 bytes_out 0 103573 bytes_in 0 103573 station_ip 83.123.147.176 103573 port 38 103573 unique_id port 103573 remote_ip 10.8.0.6 103577 username aminvpn 103577 mac 103577 bytes_out 0 103577 bytes_in 0 103577 station_ip 83.123.147.176 103577 port 41 103577 unique_id port 103577 remote_ip 10.8.0.6 103578 username alihosseini 103578 mac 103578 bytes_out 0 103578 bytes_in 0 103578 station_ip 5.119.112.59 103578 port 42 103578 unique_id port 103578 remote_ip 10.8.0.14 103586 username alihosseini 103586 mac 103586 bytes_out 0 103586 bytes_in 0 103586 station_ip 5.119.112.59 103586 port 24 103586 unique_id port 103586 remote_ip 10.8.1.6 103587 username aminvpn 103587 mac 103587 bytes_out 0 103587 bytes_in 0 103587 station_ip 83.123.147.176 103587 port 36 103587 unique_id port 103587 remote_ip 10.8.0.6 103589 username alihosseini 103589 mac 103589 bytes_out 0 103589 bytes_in 0 103589 station_ip 5.119.112.59 103589 port 36 103589 unique_id port 103589 remote_ip 10.8.0.14 103592 username forozande 103592 mac 103592 bytes_out 0 103592 bytes_in 0 103592 station_ip 83.122.93.68 103592 port 42 103592 unique_id port 103592 remote_ip 10.8.0.74 103594 username aminvpn 103594 mac 103594 bytes_out 0 103594 bytes_in 0 103594 station_ip 83.123.147.176 103594 port 42 103594 unique_id port 103563 username aminvpn 103563 mac 103563 bytes_out 0 103563 bytes_in 0 103563 station_ip 83.122.133.187 103563 port 41 103563 unique_id port 103563 remote_ip 10.8.0.6 103569 username mehdizare 103569 mac 103569 bytes_out 86979 103569 bytes_in 170076 103569 station_ip 5.119.202.96 103569 port 20 103569 unique_id port 103569 remote_ip 10.8.1.22 103575 username malekpoir 103575 mac 103575 bytes_out 386347 103575 bytes_in 5175362 103575 station_ip 5.119.65.115 103575 port 36 103575 unique_id port 103575 remote_ip 10.8.0.130 103583 username forozande 103583 mac 103583 bytes_out 0 103583 bytes_in 0 103583 station_ip 83.122.93.68 103583 port 36 103583 unique_id port 103583 remote_ip 10.8.0.74 103585 username aminvpn 103585 mac 103585 bytes_out 0 103585 bytes_in 0 103585 station_ip 83.122.133.187 103585 port 40 103585 unique_id port 103585 remote_ip 10.8.0.6 103588 username malekpoir 103588 mac 103588 bytes_out 0 103588 bytes_in 0 103588 station_ip 5.119.65.115 103588 port 41 103588 unique_id port 103588 remote_ip 10.8.0.130 103590 username alipour 103590 mac 103590 bytes_out 69444 103590 bytes_in 247253 103590 station_ip 83.122.73.74 103590 port 22 103590 unique_id port 103590 remote_ip 10.8.1.38 103591 username alihosseini 103591 mac 103591 bytes_out 0 103591 bytes_in 0 103591 station_ip 5.119.112.59 103591 port 43 103591 unique_id port 103591 remote_ip 10.8.0.14 103602 username alipour 103602 mac 103602 bytes_out 240916 103602 bytes_in 1788457 103602 station_ip 83.122.73.74 103602 port 22 103602 unique_id port 103602 remote_ip 10.8.1.38 103604 username alihosseini 103604 mac 103604 bytes_out 0 103604 bytes_in 0 103604 station_ip 5.119.112.59 103604 port 43 103604 unique_id port 103604 remote_ip 10.8.0.14 103610 username madadi2 103610 mac 103610 bytes_out 0 103610 bytes_in 0 103610 station_ip 5.119.48.106 103610 port 42 103610 unique_id port 103610 remote_ip 10.8.0.26 103615 username aminvpn 103615 mac 103615 bytes_out 0 103615 bytes_in 0 103615 station_ip 83.122.133.187 103615 port 43 103615 unique_id port 103615 remote_ip 10.8.0.6 103616 username aminvpn 103616 mac 103616 bytes_out 0 103616 bytes_in 0 103616 station_ip 83.123.147.176 103616 port 40 103616 unique_id port 103616 remote_ip 10.8.0.6 103617 username aminvpn 103617 mac 103617 bytes_out 0 103617 bytes_in 0 103617 station_ip 83.122.133.187 103617 port 41 103617 unique_id port 103617 remote_ip 10.8.0.6 103621 username amir 103621 mac 103621 bytes_out 259284 103621 bytes_in 714456 103621 station_ip 46.225.214.90 103621 port 38 103621 unique_id port 103621 remote_ip 10.8.0.54 103622 username alihosseini 103622 mac 103622 bytes_out 0 103622 bytes_in 0 103622 station_ip 5.119.112.59 103622 port 38 103622 unique_id port 103622 remote_ip 10.8.0.14 103625 username mehdizare 103625 mac 103625 bytes_out 89602 103625 bytes_in 165457 103625 station_ip 5.119.202.96 103625 port 20 103625 unique_id port 103625 remote_ip 10.8.1.22 103626 username aminvpn 103626 mac 103626 bytes_out 0 103626 bytes_in 0 103626 station_ip 83.123.147.176 103626 port 38 103626 unique_id port 103626 remote_ip 10.8.0.6 103627 username aminvpn 103627 mac 103627 bytes_out 0 103627 bytes_in 0 103627 station_ip 83.122.133.187 103627 port 40 103627 unique_id port 103627 remote_ip 10.8.0.6 103633 username aminvpn 103633 mac 103633 bytes_out 0 103633 bytes_in 0 103633 station_ip 83.123.147.176 103579 unique_id port 103579 remote_ip 10.8.0.6 103580 username aminvpn 103580 mac 103580 bytes_out 0 103580 bytes_in 0 103580 station_ip 83.123.147.176 103580 port 42 103580 unique_id port 103580 remote_ip 10.8.0.6 103581 username amir 103581 mac 103581 bytes_out 0 103581 bytes_in 0 103581 station_ip 46.225.214.90 103581 port 38 103581 unique_id port 103581 remote_ip 10.8.0.54 103582 username alipour 103582 mac 103582 bytes_out 419705 103582 bytes_in 2420224 103582 station_ip 83.122.73.74 103582 port 22 103582 unique_id port 103582 remote_ip 10.8.1.38 103584 username alihosseini 103584 mac 103584 bytes_out 0 103584 bytes_in 0 103584 station_ip 5.119.112.59 103584 port 24 103584 unique_id port 103584 remote_ip 10.8.1.6 103593 username aminvpn 103593 mac 103593 bytes_out 0 103593 bytes_in 0 103593 station_ip 83.122.133.187 103593 port 40 103593 unique_id port 103593 remote_ip 10.8.0.6 103595 username aminvpn 103595 mac 103595 bytes_out 0 103595 bytes_in 0 103595 station_ip 83.122.133.187 103595 port 40 103595 unique_id port 103595 remote_ip 10.8.0.6 103596 username aminvpn 103596 mac 103596 bytes_out 0 103596 bytes_in 0 103596 station_ip 83.123.147.176 103596 port 42 103596 unique_id port 103596 remote_ip 10.8.0.6 103598 username madadi2 103598 mac 103598 bytes_out 0 103598 bytes_in 0 103598 station_ip 5.120.30.179 103598 port 37 103598 unique_id port 103598 remote_ip 10.8.0.26 103599 username musa 103599 mac 103599 bytes_out 0 103599 bytes_in 0 103599 station_ip 83.123.85.224 103599 port 41 103599 unique_id port 103599 remote_ip 10.8.0.106 103600 username aminvpn 103600 mac 103600 bytes_out 0 103600 bytes_in 0 103600 station_ip 83.122.133.187 103600 port 40 103600 unique_id port 103600 remote_ip 10.8.0.6 103607 username aminvpn 103607 mac 103607 bytes_out 0 103607 bytes_in 0 103607 station_ip 83.122.133.187 103607 port 40 103607 unique_id port 103607 remote_ip 10.8.0.6 103608 username aminvpn 103608 mac 103608 bytes_out 0 103608 bytes_in 0 103608 station_ip 83.123.147.176 103608 port 41 103608 unique_id port 103608 remote_ip 10.8.0.6 103611 username musa 103611 kill_reason Another user logged on this global unique id 103611 mac 103611 bytes_out 0 103611 bytes_in 0 103611 station_ip 83.122.243.59 103611 port 37 103611 unique_id port 103611 remote_ip 10.8.0.106 103612 username kamali1 103612 mac 103612 bytes_out 13575 103612 bytes_in 25416 103612 station_ip 5.120.52.126 103612 port 23 103612 unique_id port 103612 remote_ip 10.8.1.82 103614 username amir 103614 mac 103614 bytes_out 0 103614 bytes_in 0 103614 station_ip 46.225.214.90 103614 port 38 103614 unique_id port 103614 remote_ip 10.8.0.54 103618 username aminvpn 103618 mac 103618 bytes_out 0 103618 bytes_in 0 103618 station_ip 83.123.147.176 103618 port 42 103618 unique_id port 103618 remote_ip 10.8.0.6 103623 username aminvpn 103623 mac 103623 bytes_out 0 103623 bytes_in 0 103623 station_ip 83.122.133.187 103623 port 41 103623 unique_id port 103623 remote_ip 10.8.0.6 103629 username abbasaskari 103629 mac 103629 bytes_out 0 103629 bytes_in 0 103629 station_ip 83.122.223.143 103629 port 40 103629 unique_id port 103629 remote_ip 10.8.0.94 103630 username aminvpn 103630 mac 103630 bytes_out 0 103630 bytes_in 0 103630 station_ip 83.122.133.187 103630 port 41 103630 unique_id port 103630 remote_ip 10.8.0.6 103631 username aminvpn 103631 mac 103594 remote_ip 10.8.0.6 103597 username forozande 103597 mac 103597 bytes_out 0 103597 bytes_in 0 103597 station_ip 83.122.93.68 103597 port 43 103597 unique_id port 103597 remote_ip 10.8.0.74 103601 username aminvpn 103601 mac 103601 bytes_out 0 103601 bytes_in 0 103601 station_ip 83.123.147.176 103601 port 41 103601 unique_id port 103601 remote_ip 10.8.0.6 103603 username alihosseini 103603 mac 103603 bytes_out 0 103603 bytes_in 0 103603 station_ip 5.119.112.59 103603 port 41 103603 unique_id port 103603 remote_ip 10.8.0.14 103605 username alihosseini 103605 mac 103605 bytes_out 0 103605 bytes_in 0 103605 station_ip 5.119.112.59 103605 port 43 103605 unique_id port 103605 remote_ip 10.8.0.14 103606 username abbasaskari 103606 mac 103606 bytes_out 0 103606 bytes_in 0 103606 station_ip 83.122.223.143 103606 port 41 103606 unique_id port 103606 remote_ip 10.8.0.94 103609 username kamali1 103609 mac 103609 bytes_out 104863 103609 bytes_in 142797 103609 station_ip 5.120.52.126 103609 port 23 103609 unique_id port 103609 remote_ip 10.8.1.82 103613 username alihosseini 103613 mac 103613 bytes_out 0 103613 bytes_in 0 103613 station_ip 5.119.112.59 103613 port 40 103613 unique_id port 103613 remote_ip 10.8.0.14 103619 username alihosseini 103619 mac 103619 bytes_out 0 103619 bytes_in 0 103619 station_ip 5.119.112.59 103619 port 40 103619 unique_id port 103619 remote_ip 10.8.0.14 103620 username alihosseini 103620 mac 103620 bytes_out 0 103620 bytes_in 0 103620 station_ip 5.119.112.59 103620 port 24 103620 unique_id port 103620 remote_ip 10.8.1.6 103624 username ahmadi 103624 unique_id port 103624 terminate_cause User-Request 103624 bytes_out 351730 103624 bytes_in 5634723 103624 station_ip 83.123.158.235 103624 port 15729982 103624 nas_port_type Virtual 103624 remote_ip 5.5.5.76 103628 username aminvpn 103628 mac 103628 bytes_out 0 103628 bytes_in 0 103628 station_ip 83.123.147.176 103628 port 38 103628 unique_id port 103628 remote_ip 10.8.0.6 103634 username aminvpn 103634 mac 103634 bytes_out 0 103634 bytes_in 0 103634 station_ip 83.122.133.187 103634 port 41 103634 unique_id port 103634 remote_ip 10.8.0.6 103636 username aminvpn 103636 mac 103636 bytes_out 0 103636 bytes_in 0 103636 station_ip 83.122.133.187 103636 port 41 103636 unique_id port 103636 remote_ip 10.8.0.6 103637 username aminvpn 103637 mac 103637 bytes_out 0 103637 bytes_in 0 103637 station_ip 83.123.147.176 103637 port 40 103637 unique_id port 103637 remote_ip 10.8.0.6 103639 username malekpoir 103639 mac 103639 bytes_out 279072 103639 bytes_in 3469300 103639 station_ip 5.119.65.115 103639 port 40 103639 unique_id port 103639 remote_ip 10.8.0.130 103641 username aminvpn 103641 mac 103641 bytes_out 0 103641 bytes_in 0 103641 station_ip 83.123.147.176 103641 port 40 103641 unique_id port 103641 remote_ip 10.8.0.6 103646 username aminvpn 103646 mac 103646 bytes_out 0 103646 bytes_in 0 103646 station_ip 83.122.133.187 103646 port 41 103646 unique_id port 103646 remote_ip 10.8.0.6 103650 username amir 103650 mac 103650 bytes_out 0 103650 bytes_in 0 103650 station_ip 46.225.214.90 103650 port 38 103650 unique_id port 103650 remote_ip 10.8.0.54 103656 username madadi2 103656 mac 103656 bytes_out 117355 103656 bytes_in 655411 103656 station_ip 5.119.153.103 103656 port 38 103656 unique_id port 103656 remote_ip 10.8.0.26 103662 username aminvpn 103662 mac 103662 bytes_out 0 103631 bytes_out 0 103631 bytes_in 0 103631 station_ip 83.123.147.176 103631 port 40 103631 unique_id port 103631 remote_ip 10.8.0.6 103632 username aminvpn 103632 mac 103632 bytes_out 0 103632 bytes_in 0 103632 station_ip 83.122.133.187 103632 port 41 103632 unique_id port 103632 remote_ip 10.8.0.6 103635 username aminvpn 103635 mac 103635 bytes_out 0 103635 bytes_in 0 103635 station_ip 83.123.147.176 103635 port 40 103635 unique_id port 103635 remote_ip 10.8.0.6 103638 username malekpoir 103638 mac 103638 bytes_out 0 103638 bytes_in 0 103638 station_ip 5.119.65.115 103638 port 36 103638 unique_id port 103638 remote_ip 10.8.0.130 103640 username aminvpn 103640 mac 103640 bytes_out 0 103640 bytes_in 0 103640 station_ip 83.122.133.187 103640 port 41 103640 unique_id port 103640 remote_ip 10.8.0.6 103642 username aminvpn 103642 mac 103642 bytes_out 0 103642 bytes_in 0 103642 station_ip 83.122.133.187 103642 port 41 103642 unique_id port 103642 remote_ip 10.8.0.6 103643 username aminvpn 103643 mac 103643 bytes_out 0 103643 bytes_in 0 103643 station_ip 83.123.147.176 103643 port 40 103643 unique_id port 103643 remote_ip 10.8.0.6 103644 username aminvpn 103644 mac 103644 bytes_out 0 103644 bytes_in 0 103644 station_ip 83.122.133.187 103644 port 41 103644 unique_id port 103644 remote_ip 10.8.0.6 103645 username aminvpn 103645 mac 103645 bytes_out 0 103645 bytes_in 0 103645 station_ip 83.123.147.176 103645 port 40 103645 unique_id port 103645 remote_ip 10.8.0.6 103648 username aminvpn 103648 mac 103648 bytes_out 0 103648 bytes_in 0 103648 station_ip 83.123.147.176 103648 port 40 103648 unique_id port 103648 remote_ip 10.8.0.6 103649 username aminvpn 103649 mac 103649 bytes_out 0 103649 bytes_in 0 103649 station_ip 83.122.133.187 103649 port 41 103649 unique_id port 103649 remote_ip 10.8.0.6 103651 username aminvpn 103651 mac 103651 bytes_out 0 103651 bytes_in 0 103651 station_ip 83.123.147.176 103651 port 40 103651 unique_id port 103651 remote_ip 10.8.0.6 103652 username aminvpn 103652 mac 103652 bytes_out 0 103652 bytes_in 0 103652 station_ip 83.122.133.187 103652 port 38 103652 unique_id port 103652 remote_ip 10.8.0.6 103655 username aminvpn 103655 mac 103655 bytes_out 0 103655 bytes_in 0 103655 station_ip 83.122.133.187 103655 port 41 103655 unique_id port 103655 remote_ip 10.8.0.6 103657 username aminvpn 103657 mac 103657 bytes_out 0 103657 bytes_in 0 103657 station_ip 83.123.147.176 103657 port 40 103657 unique_id port 103657 remote_ip 10.8.0.6 103660 username malekpoir 103660 kill_reason Another user logged on this global unique id 103660 mac 103660 bytes_out 0 103660 bytes_in 0 103660 station_ip 5.119.65.115 103660 port 36 103660 unique_id port 103660 remote_ip 10.8.0.130 103661 username mirzaei 103661 mac 103661 bytes_out 0 103661 bytes_in 0 103661 station_ip 5.119.27.7 103661 port 33 103661 unique_id port 103661 remote_ip 10.8.0.30 103667 username aminvpn 103667 mac 103667 bytes_out 0 103667 bytes_in 0 103667 station_ip 83.122.133.187 103667 port 37 103667 unique_id port 103667 remote_ip 10.8.0.6 103671 username mehdizare 103671 mac 103671 bytes_out 216603 103671 bytes_in 1481124 103671 station_ip 5.119.202.96 103671 port 20 103671 unique_id port 103671 remote_ip 10.8.1.22 103672 username madadi2 103672 mac 103672 bytes_out 0 103672 bytes_in 0 103672 station_ip 5.119.249.96 103672 port 37 103633 port 40 103633 unique_id port 103633 remote_ip 10.8.0.6 103647 username aminvpn 103647 unique_id port 103647 terminate_cause User-Request 103647 bytes_out 576949 103647 bytes_in 8024928 103647 station_ip 31.57.143.120 103647 port 15729984 103647 nas_port_type Virtual 103647 remote_ip 5.5.5.78 103653 username musa 103653 mac 103653 bytes_out 0 103653 bytes_in 0 103653 station_ip 83.122.243.59 103653 port 37 103653 unique_id port 103654 username aminvpn 103654 mac 103654 bytes_out 10802 103654 bytes_in 17197 103654 station_ip 83.123.147.176 103654 port 40 103654 unique_id port 103654 remote_ip 10.8.0.6 103658 username aminvpn 103658 mac 103658 bytes_out 0 103658 bytes_in 0 103658 station_ip 83.122.133.187 103658 port 38 103658 unique_id port 103658 remote_ip 10.8.0.6 103659 username forozande 103659 mac 103659 bytes_out 0 103659 bytes_in 0 103659 station_ip 37.129.60.25 103659 port 38 103659 unique_id port 103659 remote_ip 10.8.0.74 103664 username amir 103664 mac 103664 bytes_out 0 103664 bytes_in 0 103664 station_ip 46.225.214.90 103664 port 37 103664 unique_id port 103664 remote_ip 10.8.0.54 103665 username amir 103665 mac 103665 bytes_out 0 103665 bytes_in 0 103665 station_ip 46.225.214.90 103665 port 37 103665 unique_id port 103665 remote_ip 10.8.0.54 103666 username aminvpn 103666 mac 103666 bytes_out 0 103666 bytes_in 0 103666 station_ip 83.123.147.176 103666 port 40 103666 unique_id port 103666 remote_ip 10.8.0.6 103668 username amir 103668 mac 103668 bytes_out 0 103668 bytes_in 0 103668 station_ip 46.225.214.90 103668 port 40 103668 unique_id port 103668 remote_ip 10.8.0.54 103669 username aminvpn 103669 mac 103669 bytes_out 0 103669 bytes_in 0 103669 station_ip 83.123.147.176 103669 port 41 103669 unique_id port 103669 remote_ip 10.8.0.6 103670 username aminvpn 103670 mac 103670 bytes_out 0 103670 bytes_in 0 103670 station_ip 83.122.133.187 103670 port 40 103670 unique_id port 103670 remote_ip 10.8.0.6 103675 username aminvpn 103675 mac 103675 bytes_out 0 103675 bytes_in 0 103675 station_ip 83.122.133.187 103675 port 37 103675 unique_id port 103675 remote_ip 10.8.0.6 103680 username mehdizare 103680 mac 103680 bytes_out 23534 103680 bytes_in 28256 103680 station_ip 5.119.202.96 103680 port 20 103680 unique_id port 103680 remote_ip 10.8.1.22 103687 username askari 103687 mac 103687 bytes_out 458218 103687 bytes_in 3294127 103687 station_ip 5.120.44.6 103687 port 41 103687 unique_id port 103687 remote_ip 10.8.0.38 103690 username askari 103690 mac 103690 bytes_out 38700 103690 bytes_in 107204 103690 station_ip 5.120.44.6 103690 port 43 103690 unique_id port 103690 remote_ip 10.8.0.38 103692 username mehdizare 103692 mac 103692 bytes_out 6478 103692 bytes_in 13860 103692 station_ip 5.119.202.96 103692 port 24 103692 unique_id port 103692 remote_ip 10.8.1.22 103703 username amir 103703 kill_reason Another user logged on this global unique id 103703 mac 103703 bytes_out 0 103703 bytes_in 0 103703 station_ip 46.225.214.90 103703 port 37 103703 unique_id port 103708 username alipour 103708 mac 103708 bytes_out 0 103708 bytes_in 0 103708 station_ip 83.122.73.74 103708 port 33 103708 unique_id port 103708 remote_ip 10.8.0.70 103713 username musa 103713 kill_reason Another user logged on this global unique id 103713 mac 103713 bytes_out 0 103713 bytes_in 0 103713 station_ip 83.123.48.36 103713 port 24 103713 unique_id port 103713 remote_ip 10.8.1.78 103662 bytes_in 0 103662 station_ip 83.123.147.176 103662 port 40 103662 unique_id port 103662 remote_ip 10.8.0.6 103663 username aminvpn 103663 mac 103663 bytes_out 0 103663 bytes_in 0 103663 station_ip 83.122.133.187 103663 port 41 103663 unique_id port 103663 remote_ip 10.8.0.6 103677 username aminvpn 103677 mac 103677 bytes_out 0 103677 bytes_in 0 103677 station_ip 83.123.147.176 103677 port 40 103677 unique_id port 103677 remote_ip 10.8.0.6 103678 username alipour 103678 mac 103678 bytes_out 1411984 103678 bytes_in 10767441 103678 station_ip 83.122.73.74 103678 port 22 103678 unique_id port 103678 remote_ip 10.8.1.38 103679 username kamali1 103679 mac 103679 bytes_out 275435 103679 bytes_in 453781 103679 station_ip 5.120.52.126 103679 port 23 103679 unique_id port 103679 remote_ip 10.8.1.82 103682 username alipour 103682 mac 103682 bytes_out 0 103682 bytes_in 0 103682 station_ip 83.122.73.74 103682 port 41 103682 unique_id port 103682 remote_ip 10.8.0.70 103685 username mehdizare 103685 mac 103685 bytes_out 7313 103685 bytes_in 10695 103685 station_ip 5.119.202.96 103685 port 20 103685 unique_id port 103685 remote_ip 10.8.1.22 103686 username rajaei 103686 mac 103686 bytes_out 0 103686 bytes_in 0 103686 station_ip 89.32.104.243 103686 port 33 103686 unique_id port 103693 username amir 103693 kill_reason Another user logged on this global unique id 103693 mac 103693 bytes_out 0 103693 bytes_in 0 103693 station_ip 46.225.214.90 103693 port 37 103693 unique_id port 103693 remote_ip 10.8.0.54 103696 username kamali1 103696 mac 103696 bytes_out 73434 103696 bytes_in 451626 103696 station_ip 5.120.52.126 103696 port 22 103696 unique_id port 103696 remote_ip 10.8.1.82 103697 username abbasaskari 103697 mac 103697 bytes_out 0 103697 bytes_in 0 103697 station_ip 83.122.231.111 103697 port 33 103697 unique_id port 103697 remote_ip 10.8.0.94 103698 username kamali1 103698 mac 103698 bytes_out 8449 103698 bytes_in 12492 103698 station_ip 5.120.52.126 103698 port 22 103698 unique_id port 103698 remote_ip 10.8.1.82 103699 username mehdizare 103699 mac 103699 bytes_out 14480 103699 bytes_in 20690 103699 station_ip 5.119.202.96 103699 port 20 103699 unique_id port 103699 remote_ip 10.8.1.22 103705 username mehdizare 103705 mac 103705 bytes_out 6295 103705 bytes_in 13317 103705 station_ip 5.119.202.96 103705 port 20 103705 unique_id port 103705 remote_ip 10.8.1.22 103706 username aminvpn 103706 unique_id port 103706 terminate_cause Lost-Carrier 103706 bytes_out 68320 103706 bytes_in 132868 103706 station_ip 5.233.58.83 103706 port 15729987 103706 nas_port_type Virtual 103706 remote_ip 5.5.5.88 103709 username aminvpn 103709 mac 103709 bytes_out 0 103709 bytes_in 0 103709 station_ip 83.123.147.176 103709 port 40 103709 unique_id port 103709 remote_ip 10.8.0.6 103712 username khalili 103712 kill_reason Another user logged on this global unique id 103712 mac 103712 bytes_out 0 103712 bytes_in 0 103712 station_ip 5.120.93.246 103712 port 21 103712 unique_id port 103714 username abbasaskari 103714 mac 103714 bytes_out 0 103714 bytes_in 0 103714 station_ip 83.122.181.155 103714 port 41 103714 unique_id port 103714 remote_ip 10.8.0.94 103716 username kamali1 103716 mac 103716 bytes_out 0 103716 bytes_in 0 103716 station_ip 5.120.52.126 103716 port 22 103716 unique_id port 103716 remote_ip 10.8.1.82 103718 username amir 103718 mac 103718 bytes_out 0 103718 bytes_in 0 103718 station_ip 46.225.214.90 103672 unique_id port 103672 remote_ip 10.8.0.26 103673 username aminvpn 103673 mac 103673 bytes_out 0 103673 bytes_in 0 103673 station_ip 83.123.147.176 103673 port 41 103673 unique_id port 103673 remote_ip 10.8.0.6 103674 username musa 103674 mac 103674 bytes_out 0 103674 bytes_in 0 103674 station_ip 83.122.90.89 103674 port 40 103674 unique_id port 103674 remote_ip 10.8.0.106 103676 username amir 103676 mac 103676 bytes_out 128714 103676 bytes_in 719677 103676 station_ip 46.225.214.90 103676 port 41 103676 unique_id port 103676 remote_ip 10.8.0.54 103681 username musa 103681 mac 103681 bytes_out 17511 103681 bytes_in 21484 103681 station_ip 83.122.90.89 103681 port 24 103681 unique_id port 103681 remote_ip 10.8.1.78 103683 username rajaei 103683 kill_reason Another user logged on this global unique id 103683 mac 103683 bytes_out 0 103683 bytes_in 0 103683 station_ip 89.32.104.243 103683 port 33 103683 unique_id port 103683 remote_ip 10.8.0.142 103684 username mehdizare 103684 mac 103684 bytes_out 0 103684 bytes_in 0 103684 station_ip 5.119.202.96 103684 port 20 103684 unique_id port 103684 remote_ip 10.8.1.22 103688 username bcboard 103688 unique_id port 103688 terminate_cause Lost-Carrier 103688 bytes_out 564854 103688 bytes_in 467274 103688 station_ip 37.129.137.50 103688 port 15729985 103688 nas_port_type Virtual 103688 remote_ip 5.5.5.81 103689 username rajaei 103689 mac 103689 bytes_out 0 103689 bytes_in 0 103689 station_ip 89.32.104.243 103689 port 33 103689 unique_id port 103689 remote_ip 10.8.0.142 103691 username mehdizare 103691 mac 103691 bytes_out 0 103691 bytes_in 0 103691 station_ip 5.119.202.96 103691 port 20 103691 unique_id port 103691 remote_ip 10.8.1.22 103694 username abbasaskari 103694 mac 103694 bytes_out 0 103694 bytes_in 0 103694 station_ip 83.122.231.111 103694 port 33 103694 unique_id port 103694 remote_ip 10.8.0.94 103695 username forozande 103695 mac 103695 bytes_out 0 103695 bytes_in 0 103695 station_ip 37.129.76.201 103695 port 41 103695 unique_id port 103695 remote_ip 10.8.0.74 103700 username kamali1 103700 mac 103700 bytes_out 0 103700 bytes_in 0 103700 station_ip 5.120.52.126 103700 port 22 103700 unique_id port 103700 remote_ip 10.8.1.82 103701 username khalili 103701 kill_reason Another user logged on this global unique id 103701 mac 103701 bytes_out 0 103701 bytes_in 0 103701 station_ip 5.120.93.246 103701 port 21 103701 unique_id port 103701 remote_ip 10.8.1.66 103702 username alipour 103702 mac 103702 bytes_out 0 103702 bytes_in 0 103702 station_ip 83.122.73.74 103702 port 23 103702 unique_id port 103702 remote_ip 10.8.1.38 103704 username mehdizare 103704 mac 103704 bytes_out 18834 103704 bytes_in 24364 103704 station_ip 5.119.202.96 103704 port 20 103704 unique_id port 103704 remote_ip 10.8.1.22 103707 username aminvpn 103707 unique_id port 103707 terminate_cause Lost-Carrier 103707 bytes_out 271232 103707 bytes_in 2365441 103707 station_ip 5.119.13.55 103707 port 15729988 103707 nas_port_type Virtual 103707 remote_ip 5.5.5.66 103710 username alipour 103710 mac 103710 bytes_out 0 103710 bytes_in 0 103710 station_ip 83.122.73.74 103710 port 41 103710 unique_id port 103710 remote_ip 10.8.0.70 103711 username mehdizare 103711 mac 103711 bytes_out 8350 103711 bytes_in 15033 103711 station_ip 5.119.202.96 103711 port 20 103711 unique_id port 103711 remote_ip 10.8.1.22 103721 username khalili 103721 kill_reason Another user logged on this global unique id 103721 mac 103721 bytes_out 0 103715 username amir 103715 kill_reason Another user logged on this global unique id 103715 mac 103715 bytes_out 0 103715 bytes_in 0 103715 station_ip 46.225.214.90 103715 port 37 103715 unique_id port 103717 username alipour 103717 mac 103717 bytes_out 0 103717 bytes_in 0 103717 station_ip 83.122.73.74 103717 port 33 103717 unique_id port 103717 remote_ip 10.8.0.70 103719 username forozande 103719 mac 103719 bytes_out 0 103719 bytes_in 0 103719 station_ip 37.129.204.206 103719 port 41 103719 unique_id port 103719 remote_ip 10.8.0.74 103720 username amir 103720 mac 103720 bytes_out 0 103720 bytes_in 0 103720 station_ip 46.225.214.90 103720 port 33 103720 unique_id port 103720 remote_ip 10.8.0.54 103722 username rajaei 103722 mac 103722 bytes_out 0 103722 bytes_in 0 103722 station_ip 89.32.104.243 103722 port 40 103722 unique_id port 103722 remote_ip 10.8.0.142 103724 username rajaei 103724 kill_reason Another user logged on this global unique id 103724 mac 103724 bytes_out 0 103724 bytes_in 0 103724 station_ip 89.32.104.243 103724 port 37 103724 unique_id port 103724 remote_ip 10.8.0.142 103725 username amir 103725 mac 103725 bytes_out 133817 103725 bytes_in 363456 103725 station_ip 46.225.214.90 103725 port 33 103725 unique_id port 103725 remote_ip 10.8.0.54 103726 username amir 103726 mac 103726 bytes_out 0 103726 bytes_in 0 103726 station_ip 46.225.214.90 103726 port 33 103726 unique_id port 103726 remote_ip 10.8.0.54 103729 username amir 103729 mac 103729 bytes_out 0 103729 bytes_in 0 103729 station_ip 46.225.214.90 103729 port 33 103729 unique_id port 103729 remote_ip 10.8.0.54 103731 username mehdizare 103731 mac 103731 bytes_out 22582 103731 bytes_in 40616 103731 station_ip 5.119.202.96 103731 port 23 103731 unique_id port 103731 remote_ip 10.8.1.22 103732 username alipour 103732 mac 103732 bytes_out 133821 103732 bytes_in 277062 103732 station_ip 83.122.73.74 103732 port 43 103732 unique_id port 103732 remote_ip 10.8.0.70 103735 username amir 103735 mac 103735 bytes_out 99108 103735 bytes_in 396247 103735 station_ip 46.225.214.90 103735 port 33 103735 unique_id port 103735 remote_ip 10.8.0.54 103736 username amir 103736 mac 103736 bytes_out 0 103736 bytes_in 0 103736 station_ip 46.225.214.90 103736 port 33 103736 unique_id port 103736 remote_ip 10.8.0.54 103737 username amir 103737 mac 103737 bytes_out 0 103737 bytes_in 0 103737 station_ip 46.225.214.90 103737 port 33 103737 unique_id port 103737 remote_ip 10.8.0.54 103739 username mehdizare 103739 mac 103739 bytes_out 13296 103739 bytes_in 19265 103739 station_ip 5.119.202.96 103739 port 20 103739 unique_id port 103739 remote_ip 10.8.1.22 103741 username amir 103741 kill_reason Maximum check online fails reached 103741 mac 103741 bytes_out 0 103741 bytes_in 0 103741 station_ip 46.225.214.90 103741 port 33 103741 unique_id port 103742 username amir 103742 mac 103742 bytes_out 0 103742 bytes_in 0 103742 station_ip 46.225.214.90 103742 port 41 103742 unique_id port 103742 remote_ip 10.8.0.54 103745 username malekpoir 103745 mac 103745 bytes_out 0 103745 bytes_in 0 103745 station_ip 5.119.65.115 103745 port 36 103745 unique_id port 103752 username amir 103752 mac 103752 bytes_out 0 103752 bytes_in 0 103752 station_ip 46.225.214.90 103752 port 36 103752 unique_id port 103752 remote_ip 10.8.0.54 103756 username aminvpn 103756 mac 103756 bytes_out 0 103756 bytes_in 0 103718 port 37 103718 unique_id port 103727 username amir 103727 mac 103727 bytes_out 0 103727 bytes_in 0 103727 station_ip 46.225.214.90 103727 port 33 103727 unique_id port 103727 remote_ip 10.8.0.54 103728 username khalili 103728 kill_reason Another user logged on this global unique id 103728 mac 103728 bytes_out 0 103728 bytes_in 0 103728 station_ip 5.120.93.246 103728 port 21 103728 unique_id port 103730 username kamali1 103730 mac 103730 bytes_out 132677 103730 bytes_in 57193 103730 station_ip 5.120.52.126 103730 port 20 103730 unique_id port 103730 remote_ip 10.8.1.82 103738 username amir 103738 mac 103738 bytes_out 0 103738 bytes_in 0 103738 station_ip 46.225.214.90 103738 port 33 103738 unique_id port 103738 remote_ip 10.8.0.54 103740 username amir 103740 mac 103740 bytes_out 0 103740 bytes_in 0 103740 station_ip 46.225.214.90 103740 port 41 103740 unique_id port 103740 remote_ip 10.8.0.54 103743 username amir 103743 mac 103743 bytes_out 0 103743 bytes_in 0 103743 station_ip 46.225.214.90 103743 port 41 103743 unique_id port 103743 remote_ip 10.8.0.54 103749 username amir 103749 mac 103749 bytes_out 0 103749 bytes_in 0 103749 station_ip 46.225.214.90 103749 port 41 103749 unique_id port 103749 remote_ip 10.8.0.54 103753 username malekpoir 103753 mac 103753 bytes_out 0 103753 bytes_in 0 103753 station_ip 5.119.65.115 103753 port 41 103753 unique_id port 103753 remote_ip 10.8.0.130 103754 username mehdizare 103754 mac 103754 bytes_out 7463 103754 bytes_in 11022 103754 station_ip 5.119.202.96 103754 port 20 103754 unique_id port 103754 remote_ip 10.8.1.22 103757 username malekpoir 103757 mac 103757 bytes_out 0 103757 bytes_in 0 103757 station_ip 5.119.65.115 103757 port 36 103757 unique_id port 103757 remote_ip 10.8.0.130 103762 username mehdizare 103762 mac 103762 bytes_out 120764 103762 bytes_in 1089756 103762 station_ip 5.119.202.96 103762 port 20 103762 unique_id port 103762 remote_ip 10.8.1.22 103763 username rajaei 103763 kill_reason Another user logged on this global unique id 103763 mac 103763 bytes_out 0 103763 bytes_in 0 103763 station_ip 89.32.104.243 103763 port 37 103763 unique_id port 103765 username aminvpn 103765 unique_id port 103765 terminate_cause User-Request 103765 bytes_out 20165387 103765 bytes_in 433701295 103765 station_ip 5.120.29.21 103765 port 15729981 103765 nas_port_type Virtual 103765 remote_ip 5.5.5.70 103769 username abbasaskari 103769 mac 103769 bytes_out 0 103769 bytes_in 0 103769 station_ip 83.122.231.143 103769 port 47 103769 unique_id port 103769 remote_ip 10.8.0.94 103777 username abbasaskari 103777 mac 103777 bytes_out 12896 103777 bytes_in 34358 103777 station_ip 83.122.187.131 103777 port 36 103777 unique_id port 103777 remote_ip 10.8.0.94 103778 username musa 103778 mac 103778 bytes_out 0 103778 bytes_in 0 103778 station_ip 83.123.48.36 103778 port 24 103778 unique_id port 103781 username amir 103781 mac 103781 bytes_out 0 103781 bytes_in 0 103781 station_ip 46.225.214.90 103781 port 36 103781 unique_id port 103781 remote_ip 10.8.0.54 103783 username abbasaskari 103783 mac 103783 bytes_out 945159 103783 bytes_in 16251527 103783 station_ip 83.122.133.119 103783 port 37 103783 unique_id port 103783 remote_ip 10.8.0.94 103784 username amir 103784 mac 103784 bytes_out 571067 103784 bytes_in 4847028 103784 station_ip 46.225.214.90 103784 port 36 103784 unique_id port 103784 remote_ip 10.8.0.54 103786 username aminvpn 103721 bytes_in 0 103721 station_ip 5.120.93.246 103721 port 21 103721 unique_id port 103723 username amir 103723 mac 103723 bytes_out 0 103723 bytes_in 0 103723 station_ip 46.225.214.90 103723 port 33 103723 unique_id port 103723 remote_ip 10.8.0.54 103733 username amir 103733 mac 103733 bytes_out 0 103733 bytes_in 0 103733 station_ip 46.225.214.90 103733 port 33 103733 unique_id port 103733 remote_ip 10.8.0.54 103734 username khalili 103734 kill_reason Another user logged on this global unique id 103734 mac 103734 bytes_out 0 103734 bytes_in 0 103734 station_ip 5.120.93.246 103734 port 21 103734 unique_id port 103744 username rajaei 103744 kill_reason Another user logged on this global unique id 103744 mac 103744 bytes_out 0 103744 bytes_in 0 103744 station_ip 89.32.104.243 103744 port 37 103744 unique_id port 103746 username mehdizare 103746 mac 103746 bytes_out 0 103746 bytes_in 0 103746 station_ip 5.119.202.96 103746 port 20 103746 unique_id port 103746 remote_ip 10.8.1.22 103747 username khalili 103747 kill_reason Another user logged on this global unique id 103747 mac 103747 bytes_out 0 103747 bytes_in 0 103747 station_ip 5.120.93.246 103747 port 21 103747 unique_id port 103748 username malekpoir 103748 mac 103748 bytes_out 0 103748 bytes_in 0 103748 station_ip 5.119.65.115 103748 port 44 103748 unique_id port 103748 remote_ip 10.8.0.130 103750 username malekpoir 103750 mac 103750 bytes_out 0 103750 bytes_in 0 103750 station_ip 5.119.65.115 103750 port 36 103750 unique_id port 103750 remote_ip 10.8.0.130 103751 username amir 103751 mac 103751 bytes_out 0 103751 bytes_in 0 103751 station_ip 46.225.214.90 103751 port 36 103751 unique_id port 103751 remote_ip 10.8.0.54 103755 username amir 103755 mac 103755 bytes_out 0 103755 bytes_in 0 103755 station_ip 46.225.214.90 103755 port 41 103755 unique_id port 103755 remote_ip 10.8.0.54 103758 username malekpoir 103758 mac 103758 bytes_out 0 103758 bytes_in 0 103758 station_ip 5.119.65.115 103758 port 44 103758 unique_id port 103758 remote_ip 10.8.0.130 103760 username hamid 103760 mac 103760 bytes_out 0 103760 bytes_in 0 103760 station_ip 83.123.181.118 103760 port 30 103760 unique_id port 103760 remote_ip 10.8.0.134 103766 username mohammadmahdi 103766 kill_reason Another user logged on this global unique id 103766 mac 103766 bytes_out 0 103766 bytes_in 0 103766 station_ip 5.120.118.166 103766 port 44 103766 unique_id port 103766 remote_ip 10.8.0.34 103767 username rajaei 103767 kill_reason Another user logged on this global unique id 103767 mac 103767 bytes_out 0 103767 bytes_in 0 103767 station_ip 89.32.104.243 103767 port 37 103767 unique_id port 103768 username mehdizare 103768 kill_reason Maximum check online fails reached 103768 mac 103768 bytes_out 0 103768 bytes_in 0 103768 station_ip 5.119.202.96 103768 port 20 103768 unique_id port 103772 username mohammadmahdi 103772 mac 103772 bytes_out 0 103772 bytes_in 0 103772 station_ip 5.120.118.166 103772 port 44 103772 unique_id port 103773 username forozande 103773 mac 103773 bytes_out 0 103773 bytes_in 0 103773 station_ip 83.122.126.68 103773 port 45 103773 unique_id port 103773 remote_ip 10.8.0.74 103774 username malekpoir 103774 mac 103774 bytes_out 52085 103774 bytes_in 72506 103774 station_ip 5.119.65.115 103774 port 36 103774 unique_id port 103774 remote_ip 10.8.0.130 103780 username afarin1 103780 mac 103780 bytes_out 0 103780 bytes_in 0 103780 station_ip 83.122.151.50 103780 port 42 103756 station_ip 113.203.44.235 103756 port 43 103756 unique_id port 103756 remote_ip 10.8.0.6 103759 username mehdizare 103759 mac 103759 bytes_out 0 103759 bytes_in 0 103759 station_ip 5.119.202.96 103759 port 20 103759 unique_id port 103759 remote_ip 10.8.1.22 103761 username abbasaskari 103761 mac 103761 bytes_out 12907 103761 bytes_in 33981 103761 station_ip 83.122.144.135 103761 port 44 103761 unique_id port 103761 remote_ip 10.8.0.94 103764 username mehdizare 103764 mac 103764 bytes_out 0 103764 bytes_in 0 103764 station_ip 5.119.202.96 103764 port 20 103764 unique_id port 103764 remote_ip 10.8.1.22 103770 username forozande 103770 mac 103770 bytes_out 391892 103770 bytes_in 2762415 103770 station_ip 113.203.92.29 103770 port 45 103770 unique_id port 103770 remote_ip 10.8.0.74 103771 username amir 103771 kill_reason Another user logged on this global unique id 103771 mac 103771 bytes_out 0 103771 bytes_in 0 103771 station_ip 46.225.214.90 103771 port 41 103771 unique_id port 103771 remote_ip 10.8.0.54 103775 username amir 103775 mac 103775 bytes_out 0 103775 bytes_in 0 103775 station_ip 46.225.214.90 103775 port 41 103775 unique_id port 103776 username rajaei 103776 mac 103776 bytes_out 0 103776 bytes_in 0 103776 station_ip 89.32.104.243 103776 port 37 103776 unique_id port 103779 username amir 103779 mac 103779 bytes_out 0 103779 bytes_in 0 103779 station_ip 46.225.214.90 103779 port 36 103779 unique_id port 103779 remote_ip 10.8.0.54 103782 username aminvpn 103782 mac 103782 bytes_out 220361 103782 bytes_in 297861 103782 station_ip 113.203.44.235 103782 port 43 103782 unique_id port 103782 remote_ip 10.8.0.6 103787 username madadi2 103787 mac 103787 bytes_out 0 103787 bytes_in 0 103787 station_ip 5.120.161.134 103787 port 36 103787 unique_id port 103787 remote_ip 10.8.0.26 103795 username alihosseini 103795 mac 103795 bytes_out 1806171 103795 bytes_in 19542585 103795 station_ip 5.119.24.65 103795 port 41 103795 unique_id port 103795 remote_ip 10.8.0.14 103796 username alihosseini 103796 mac 103796 bytes_out 0 103796 bytes_in 0 103796 station_ip 5.120.105.41 103796 port 37 103796 unique_id port 103796 remote_ip 10.8.0.14 103797 username houshang 103797 mac 103797 bytes_out 509666 103797 bytes_in 2985580 103797 station_ip 5.119.198.28 103797 port 42 103797 unique_id port 103797 remote_ip 10.8.0.126 103803 username aminvpn 103803 unique_id port 103803 terminate_cause Lost-Carrier 103803 bytes_out 296326 103803 bytes_in 2758821 103803 station_ip 5.120.24.210 103803 port 15729992 103803 nas_port_type Virtual 103803 remote_ip 5.5.5.253 103807 username amir 103807 mac 103807 bytes_out 131097 103807 bytes_in 586827 103807 station_ip 46.225.214.90 103807 port 42 103807 unique_id port 103807 remote_ip 10.8.0.54 103809 username hoorieh 103809 mac 103809 bytes_out 0 103809 bytes_in 0 103809 station_ip 5.119.255.36 103809 port 43 103809 unique_id port 103811 username forozande 103811 kill_reason Another user logged on this global unique id 103811 mac 103811 bytes_out 0 103811 bytes_in 0 103811 station_ip 83.123.114.218 103811 port 36 103811 unique_id port 103814 username alihosseini 103814 kill_reason Another user logged on this global unique id 103814 mac 103814 bytes_out 0 103814 bytes_in 0 103814 station_ip 5.120.105.41 103814 port 37 103814 unique_id port 103814 remote_ip 10.8.0.14 103815 username aminvpn 103815 kill_reason Another user logged on this global unique id 103815 mac 103815 bytes_out 0 103815 bytes_in 0 103780 unique_id port 103780 remote_ip 10.8.0.146 103785 username abbasaskari 103785 mac 103785 bytes_out 26249 103785 bytes_in 90124 103785 station_ip 83.122.133.119 103785 port 24 103785 unique_id port 103785 remote_ip 10.8.1.58 103788 username amir 103788 mac 103788 bytes_out 98688 103788 bytes_in 358011 103788 station_ip 46.225.214.90 103788 port 37 103788 unique_id port 103788 remote_ip 10.8.0.54 103791 username abbasaskari 103791 mac 103791 bytes_out 11010 103791 bytes_in 13373 103791 station_ip 83.122.133.119 103791 port 36 103791 unique_id port 103791 remote_ip 10.8.0.94 103792 username abbasaskari 103792 mac 103792 bytes_out 0 103792 bytes_in 0 103792 station_ip 83.122.133.119 103792 port 36 103792 unique_id port 103792 remote_ip 10.8.0.94 103793 username amir 103793 mac 103793 bytes_out 387637 103793 bytes_in 2142941 103793 station_ip 46.225.214.90 103793 port 37 103793 unique_id port 103793 remote_ip 10.8.0.54 103798 username abbasaskari 103798 mac 103798 bytes_out 78597 103798 bytes_in 296021 103798 station_ip 83.122.133.119 103798 port 36 103798 unique_id port 103798 remote_ip 10.8.0.94 103799 username aminvpn 103799 unique_id port 103799 terminate_cause Lost-Carrier 103799 bytes_out 25587365 103799 bytes_in 758526388 103799 station_ip 5.233.58.83 103799 port 15729989 103799 nas_port_type Virtual 103799 remote_ip 5.5.5.73 103800 username alireza 103800 unique_id port 103800 terminate_cause Lost-Carrier 103800 bytes_out 2095761 103800 bytes_in 46813135 103800 station_ip 5.120.84.15 103800 port 15729990 103800 nas_port_type Virtual 103800 remote_ip 5.5.5.74 103801 username malekpoir 103801 mac 103801 bytes_out 0 103801 bytes_in 0 103801 station_ip 5.119.65.115 103801 port 44 103801 unique_id port 103801 remote_ip 10.8.0.130 103806 username forozande 103806 kill_reason Another user logged on this global unique id 103806 mac 103806 bytes_out 0 103806 bytes_in 0 103806 station_ip 83.123.114.218 103806 port 36 103806 unique_id port 103806 remote_ip 10.8.0.74 103819 username mirzaei 103819 kill_reason Another user logged on this global unique id 103819 mac 103819 bytes_out 0 103819 bytes_in 0 103819 station_ip 5.119.27.7 103819 port 38 103819 unique_id port 103819 remote_ip 10.8.0.30 103820 username hamid 103820 mac 103820 bytes_out 56610 103820 bytes_in 340665 103820 station_ip 37.129.37.103 103820 port 42 103820 unique_id port 103820 remote_ip 10.8.0.134 103826 username alihosseini 103826 mac 103826 bytes_out 0 103826 bytes_in 0 103826 station_ip 5.120.105.41 103826 port 37 103826 unique_id port 103829 username hamid 103829 kill_reason Another user logged on this global unique id 103829 mac 103829 bytes_out 0 103829 bytes_in 0 103829 station_ip 37.129.37.103 103829 port 43 103829 unique_id port 103832 username amir 103832 kill_reason Another user logged on this global unique id 103832 mac 103832 bytes_out 0 103832 bytes_in 0 103832 station_ip 46.225.214.90 103832 port 36 103832 unique_id port 103832 remote_ip 10.8.0.54 103835 username tahmasebi 103835 kill_reason Another user logged on this global unique id 103835 mac 103835 bytes_out 0 103835 bytes_in 0 103835 station_ip 5.119.243.150 103835 port 37 103835 unique_id port 103835 remote_ip 10.8.0.66 103837 username madadi2 103837 mac 103837 bytes_out 44702 103837 bytes_in 47374 103837 station_ip 5.119.238.253 103837 port 30 103837 unique_id port 103837 remote_ip 10.8.0.26 103840 username alireza 103840 unique_id port 103840 terminate_cause User-Request 103840 bytes_out 690569 103840 bytes_in 16124080 103840 station_ip 5.120.84.15 103840 port 15729998 103786 kill_reason Maximum check online fails reached 103786 unique_id port 103786 bytes_out 90916 103786 bytes_in 452646 103786 station_ip 5.119.1.20 103786 port 15729991 103786 nas_port_type Virtual 103786 remote_ip 5.5.5.255 103789 username abbasaskari 103789 mac 103789 bytes_out 10097 103789 bytes_in 28110 103789 station_ip 83.122.133.119 103789 port 24 103789 unique_id port 103789 remote_ip 10.8.1.58 103790 username madadi2 103790 mac 103790 bytes_out 187624 103790 bytes_in 1796903 103790 station_ip 5.120.126.170 103790 port 42 103790 unique_id port 103790 remote_ip 10.8.0.26 103794 username amir 103794 mac 103794 bytes_out 0 103794 bytes_in 0 103794 station_ip 46.225.214.90 103794 port 37 103794 unique_id port 103794 remote_ip 10.8.0.54 103802 username mehdizare 103802 mac 103802 bytes_out 0 103802 bytes_in 0 103802 station_ip 5.119.202.96 103802 port 46 103802 unique_id port 103802 remote_ip 10.8.0.22 103804 username hoorieh 103804 kill_reason Another user logged on this global unique id 103804 mac 103804 bytes_out 0 103804 bytes_in 0 103804 station_ip 5.119.255.36 103804 port 43 103804 unique_id port 103804 remote_ip 10.8.0.10 103805 username amir 103805 mac 103805 bytes_out 0 103805 bytes_in 0 103805 station_ip 46.225.214.90 103805 port 42 103805 unique_id port 103805 remote_ip 10.8.0.54 103808 username afarin1 103808 mac 103808 bytes_out 0 103808 bytes_in 0 103808 station_ip 83.122.151.50 103808 port 23 103808 unique_id port 103808 remote_ip 10.8.1.106 103810 username afarin1 103810 mac 103810 bytes_out 0 103810 bytes_in 0 103810 station_ip 83.122.151.50 103810 port 23 103810 unique_id port 103810 remote_ip 10.8.1.106 103812 username abbasaskari 103812 mac 103812 bytes_out 697613 103812 bytes_in 7031516 103812 station_ip 83.122.133.119 103812 port 44 103812 unique_id port 103812 remote_ip 10.8.0.94 103813 username hamid 103813 mac 103813 bytes_out 501281 103813 bytes_in 1914981 103813 station_ip 83.123.181.118 103813 port 30 103813 unique_id port 103813 remote_ip 10.8.0.134 103816 username forozande 103816 mac 103816 bytes_out 0 103816 bytes_in 0 103816 station_ip 83.123.114.218 103816 port 36 103816 unique_id port 103817 username amir 103817 mac 103817 bytes_out 63252 103817 bytes_in 537403 103817 station_ip 46.225.214.90 103817 port 30 103817 unique_id port 103817 remote_ip 10.8.0.54 103821 username afarin1 103821 mac 103821 bytes_out 0 103821 bytes_in 0 103821 station_ip 83.122.151.50 103821 port 23 103821 unique_id port 103821 remote_ip 10.8.1.106 103822 username avaanna 103822 mac 103822 bytes_out 1411860 103822 bytes_in 10830365 103822 station_ip 83.122.18.220 103822 port 41 103822 unique_id port 103822 remote_ip 10.8.0.138 103823 username forozande 103823 mac 103823 bytes_out 47995 103823 bytes_in 67569 103823 station_ip 83.123.221.248 103823 port 36 103823 unique_id port 103823 remote_ip 10.8.0.74 103824 username avaanna 103824 mac 103824 bytes_out 0 103824 bytes_in 0 103824 station_ip 83.122.18.220 103824 port 44 103824 unique_id port 103824 remote_ip 10.8.0.138 103828 username hamid 103828 kill_reason Another user logged on this global unique id 103828 mac 103828 bytes_out 0 103828 bytes_in 0 103828 station_ip 37.129.37.103 103828 port 43 103828 unique_id port 103828 remote_ip 10.8.0.134 103830 username aminvpn 103830 unique_id port 103830 terminate_cause Lost-Carrier 103830 bytes_out 4693238 103830 bytes_in 10237631 103830 station_ip 5.119.61.108 103830 port 15729994 103830 nas_port_type Virtual 103815 station_ip 83.122.241.76 103815 port 46 103815 unique_id port 103815 remote_ip 10.8.0.6 103818 username aminvpn 103818 mac 103818 bytes_out 0 103818 bytes_in 0 103818 station_ip 83.122.241.76 103818 port 46 103818 unique_id port 103825 username alihosseini 103825 kill_reason Another user logged on this global unique id 103825 mac 103825 bytes_out 0 103825 bytes_in 0 103825 station_ip 5.120.105.41 103825 port 37 103825 unique_id port 103827 username mirzaei 103827 kill_reason Another user logged on this global unique id 103827 mac 103827 bytes_out 0 103827 bytes_in 0 103827 station_ip 5.119.27.7 103827 port 38 103827 unique_id port 103833 username hamid 103833 kill_reason Another user logged on this global unique id 103833 mac 103833 bytes_out 0 103833 bytes_in 0 103833 station_ip 37.129.37.103 103833 port 43 103833 unique_id port 103834 username aminvpn 103834 mac 103834 bytes_out 3776160 103834 bytes_in 44139616 103834 station_ip 83.122.241.76 103834 port 30 103834 unique_id port 103834 remote_ip 10.8.0.6 103836 username alihosseini 103836 mac 103836 bytes_out 0 103836 bytes_in 0 103836 station_ip 5.120.105.41 103836 port 23 103836 unique_id port 103836 remote_ip 10.8.1.6 103841 username houshang 103841 kill_reason Another user logged on this global unique id 103841 mac 103841 bytes_out 0 103841 bytes_in 0 103841 station_ip 5.119.176.64 103841 port 41 103841 unique_id port 103841 remote_ip 10.8.0.126 103842 username forozande 103842 mac 103842 bytes_out 143689 103842 bytes_in 965663 103842 station_ip 37.129.21.134 103842 port 44 103842 unique_id port 103842 remote_ip 10.8.0.74 103845 username bcboard 103845 unique_id port 103845 terminate_cause Lost-Carrier 103845 bytes_out 4466378 103845 bytes_in 60962515 103845 station_ip 37.129.203.153 103845 port 15729996 103845 nas_port_type Virtual 103845 remote_ip 5.5.5.65 103846 username amir 103846 kill_reason Another user logged on this global unique id 103846 mac 103846 bytes_out 0 103846 bytes_in 0 103846 station_ip 46.225.214.90 103846 port 36 103846 unique_id port 103847 username houshang 103847 kill_reason Another user logged on this global unique id 103847 mac 103847 bytes_out 0 103847 bytes_in 0 103847 station_ip 5.119.176.64 103847 port 41 103847 unique_id port 103852 username amir 103852 mac 103852 bytes_out 0 103852 bytes_in 0 103852 station_ip 46.225.214.90 103852 port 36 103852 unique_id port 103854 username khalili 103854 mac 103854 bytes_out 0 103854 bytes_in 0 103854 station_ip 5.120.93.246 103854 port 21 103854 unique_id port 103861 username amir 103861 mac 103861 bytes_out 0 103861 bytes_in 0 103861 station_ip 46.225.214.90 103861 port 21 103861 unique_id port 103861 remote_ip 10.8.1.34 103862 username amir 103862 kill_reason Maximum check online fails reached 103862 mac 103862 bytes_out 0 103862 bytes_in 0 103862 station_ip 46.225.214.90 103862 port 36 103862 unique_id port 103867 username houshang 103867 kill_reason Another user logged on this global unique id 103867 mac 103867 bytes_out 0 103867 bytes_in 0 103867 station_ip 5.119.176.64 103867 port 41 103867 unique_id port 103868 username alireza1 103868 unique_id port 103868 terminate_cause User-Request 103868 bytes_out 6625 103868 bytes_in 15980 103868 station_ip 5.120.42.58 103868 port 15730004 103868 nas_port_type Virtual 103868 remote_ip 5.5.5.254 103871 username houshang 103871 mac 103871 bytes_out 0 103871 bytes_in 0 103871 station_ip 5.119.176.64 103871 port 41 103871 unique_id port 103873 username hamid 103873 mac 103873 bytes_out 0 103873 bytes_in 0 103830 remote_ip 5.5.5.61 103831 username musa 103831 mac 103831 bytes_out 0 103831 bytes_in 0 103831 station_ip 83.123.48.36 103831 port 22 103831 unique_id port 103831 remote_ip 10.8.1.78 103838 username tahmasebi 103838 kill_reason Another user logged on this global unique id 103838 mac 103838 bytes_out 0 103838 bytes_in 0 103838 station_ip 5.119.243.150 103838 port 37 103838 unique_id port 103839 username mehdizare 103839 mac 103839 bytes_out 496104 103839 bytes_in 959738 103839 station_ip 5.119.202.96 103839 port 45 103839 unique_id port 103839 remote_ip 10.8.0.22 103844 username ahmadipour 103844 unique_id port 103844 terminate_cause Lost-Carrier 103844 bytes_out 2133437 103844 bytes_in 56122572 103844 station_ip 83.123.118.58 103844 port 15729997 103844 nas_port_type Virtual 103844 remote_ip 5.5.5.49 103849 username alireza 103849 unique_id port 103849 terminate_cause User-Request 103849 bytes_out 932370 103849 bytes_in 38932905 103849 station_ip 5.120.84.15 103849 port 15729999 103849 nas_port_type Virtual 103849 remote_ip 5.5.5.254 103850 username mehdizare 103850 mac 103850 bytes_out 7431 103850 bytes_in 10255 103850 station_ip 5.119.202.96 103850 port 44 103850 unique_id port 103850 remote_ip 10.8.0.22 103855 username houshang 103855 kill_reason Another user logged on this global unique id 103855 mac 103855 bytes_out 0 103855 bytes_in 0 103855 station_ip 5.119.176.64 103855 port 41 103855 unique_id port 103856 username mehdizare 103856 mac 103856 bytes_out 20190 103856 bytes_in 30062 103856 station_ip 5.119.202.96 103856 port 45 103856 unique_id port 103856 remote_ip 10.8.0.22 103859 username amir 103859 mac 103859 bytes_out 0 103859 bytes_in 0 103859 station_ip 46.225.214.90 103859 port 36 103859 unique_id port 103859 remote_ip 10.8.0.54 103860 username amir 103860 mac 103860 bytes_out 0 103860 bytes_in 0 103860 station_ip 46.225.214.90 103860 port 36 103860 unique_id port 103860 remote_ip 10.8.0.54 103865 username amir 103865 mac 103865 bytes_out 0 103865 bytes_in 0 103865 station_ip 46.225.214.90 103865 port 47 103865 unique_id port 103865 remote_ip 10.8.0.54 103866 username forozande 103866 mac 103866 bytes_out 441839 103866 bytes_in 4171762 103866 station_ip 83.122.102.147 103866 port 45 103866 unique_id port 103866 remote_ip 10.8.0.74 103870 username tahmasebi 103870 mac 103870 bytes_out 0 103870 bytes_in 0 103870 station_ip 5.119.243.150 103870 port 37 103870 unique_id port 103872 username amir 103872 mac 103872 bytes_out 129018 103872 bytes_in 683058 103872 station_ip 46.225.214.90 103872 port 45 103872 unique_id port 103872 remote_ip 10.8.0.54 103875 username alipour 103875 mac 103875 bytes_out 3055828 103875 bytes_in 38292472 103875 station_ip 83.122.73.74 103875 port 40 103875 unique_id port 103875 remote_ip 10.8.0.70 103879 username zare 103879 mac 103879 bytes_out 119937 103879 bytes_in 438719 103879 station_ip 46.225.214.253 103879 port 38 103879 unique_id port 103879 remote_ip 10.8.0.150 103891 username musa 103891 kill_reason Maximum check online fails reached 103891 mac 103891 bytes_out 0 103891 bytes_in 0 103891 station_ip 37.129.103.10 103891 port 40 103891 unique_id port 103893 username rajaei 103893 kill_reason Another user logged on this global unique id 103893 mac 103893 bytes_out 0 103893 bytes_in 0 103893 station_ip 89.32.98.175 103893 port 43 103893 unique_id port 103893 remote_ip 10.8.0.142 103896 username sobhan 103896 unique_id port 103896 terminate_cause Lost-Carrier 103896 bytes_out 27734438 103896 bytes_in 738743762 103840 nas_port_type Virtual 103840 remote_ip 5.5.5.254 103843 username hamid.e 103843 unique_id port 103843 terminate_cause User-Request 103843 bytes_out 12319659 103843 bytes_in 229578254 103843 station_ip 37.27.9.242 103843 port 15729993 103843 nas_port_type Virtual 103843 remote_ip 5.5.5.57 103848 username mehdizare 103848 mac 103848 bytes_out 0 103848 bytes_in 0 103848 station_ip 5.119.202.96 103848 port 45 103848 unique_id port 103848 remote_ip 10.8.0.22 103851 username houshang 103851 kill_reason Another user logged on this global unique id 103851 mac 103851 bytes_out 0 103851 bytes_in 0 103851 station_ip 5.119.176.64 103851 port 41 103851 unique_id port 103853 username amir 103853 mac 103853 bytes_out 0 103853 bytes_in 0 103853 station_ip 46.225.214.90 103853 port 36 103853 unique_id port 103853 remote_ip 10.8.0.54 103857 username houshang 103857 kill_reason Another user logged on this global unique id 103857 mac 103857 bytes_out 0 103857 bytes_in 0 103857 station_ip 5.119.176.64 103857 port 41 103857 unique_id port 103858 username amir 103858 mac 103858 bytes_out 124561 103858 bytes_in 548942 103858 station_ip 46.225.214.90 103858 port 36 103858 unique_id port 103858 remote_ip 10.8.0.54 103863 username amir 103863 mac 103863 bytes_out 0 103863 bytes_in 0 103863 station_ip 46.225.214.90 103863 port 47 103863 unique_id port 103863 remote_ip 10.8.0.54 103864 username mirzaei 103864 mac 103864 bytes_out 0 103864 bytes_in 0 103864 station_ip 5.119.27.7 103864 port 38 103864 unique_id port 103869 username amir 103869 mac 103869 bytes_out 36810 103869 bytes_in 196617 103869 station_ip 46.225.214.90 103869 port 38 103869 unique_id port 103869 remote_ip 10.8.0.54 103874 username amir 103874 mac 103874 bytes_out 22421 103874 bytes_in 71691 103874 station_ip 46.225.214.90 103874 port 41 103874 unique_id port 103874 remote_ip 10.8.0.54 103878 username hamid 103878 mac 103878 bytes_out 146987 103878 bytes_in 404552 103878 station_ip 83.123.184.166 103878 port 45 103878 unique_id port 103878 remote_ip 10.8.0.134 103882 username aminvpn 103882 unique_id port 103882 terminate_cause Lost-Carrier 103882 bytes_out 7095614 103882 bytes_in 217005175 103882 station_ip 2.183.244.76 103882 port 15730002 103882 nas_port_type Virtual 103882 remote_ip 5.5.5.87 103884 username sade 103884 unique_id port 103884 terminate_cause Lost-Carrier 103884 bytes_out 2018747 103884 bytes_in 33685588 103884 station_ip 5.120.66.133 103884 port 15730005 103884 nas_port_type Virtual 103884 remote_ip 5.5.5.253 103885 username zare 103885 mac 103885 bytes_out 0 103885 bytes_in 0 103885 station_ip 37.27.19.227 103885 port 21 103885 unique_id port 103885 remote_ip 10.8.1.110 103887 username tahmasebi 103887 kill_reason Another user logged on this global unique id 103887 mac 103887 bytes_out 0 103887 bytes_in 0 103887 station_ip 5.119.88.28 103887 port 37 103887 unique_id port 103889 username amir 103889 mac 103889 bytes_out 0 103889 bytes_in 0 103889 station_ip 46.225.214.90 103889 port 40 103889 unique_id port 103889 remote_ip 10.8.0.54 103890 username musa 103890 mac 103890 bytes_out 0 103890 bytes_in 0 103890 station_ip 83.123.48.36 103890 port 22 103890 unique_id port 103890 remote_ip 10.8.1.78 103892 username alipour 103892 mac 103892 bytes_out 806914 103892 bytes_in 10510109 103892 station_ip 83.122.73.74 103892 port 41 103892 unique_id port 103892 remote_ip 10.8.0.70 103901 username zare 103901 kill_reason Another user logged on this global unique id 103901 mac 103901 bytes_out 0 103873 station_ip 37.129.37.103 103873 port 43 103873 unique_id port 103876 username amir 103876 mac 103876 bytes_out 0 103876 bytes_in 0 103876 station_ip 46.225.214.90 103876 port 40 103876 unique_id port 103876 remote_ip 10.8.0.54 103877 username amir 103877 mac 103877 bytes_out 0 103877 bytes_in 0 103877 station_ip 46.225.214.90 103877 port 40 103877 unique_id port 103877 remote_ip 10.8.0.54 103880 username tahmasebi 103880 kill_reason Another user logged on this global unique id 103880 mac 103880 bytes_out 0 103880 bytes_in 0 103880 station_ip 5.119.88.28 103880 port 37 103880 unique_id port 103880 remote_ip 10.8.0.66 103881 username alireza 103881 unique_id port 103881 terminate_cause User-Request 103881 bytes_out 1092851 103881 bytes_in 7322154 103881 station_ip 5.120.84.15 103881 port 15730003 103881 nas_port_type Virtual 103881 remote_ip 5.5.5.101 103883 username afarin1 103883 mac 103883 bytes_out 1556044 103883 bytes_in 11820279 103883 station_ip 83.122.151.50 103883 port 42 103883 unique_id port 103883 remote_ip 10.8.0.146 103886 username amir 103886 mac 103886 bytes_out 13889 103886 bytes_in 81690 103886 station_ip 46.225.214.90 103886 port 40 103886 unique_id port 103886 remote_ip 10.8.0.54 103888 username zare 103888 mac 103888 bytes_out 0 103888 bytes_in 0 103888 station_ip 37.27.19.227 103888 port 21 103888 unique_id port 103888 remote_ip 10.8.1.110 103894 username mehdizare 103894 mac 103894 bytes_out 104348 103894 bytes_in 136461 103894 station_ip 5.119.202.96 103894 port 44 103894 unique_id port 103894 remote_ip 10.8.0.22 103895 username tahmasebi 103895 kill_reason Another user logged on this global unique id 103895 mac 103895 bytes_out 0 103895 bytes_in 0 103895 station_ip 5.119.88.28 103895 port 37 103895 unique_id port 103898 username rajaei 103898 mac 103898 bytes_out 0 103898 bytes_in 0 103898 station_ip 89.32.98.175 103898 port 43 103898 unique_id port 103900 username farhad1 103900 mac 103900 bytes_out 3053455 103900 bytes_in 40589227 103900 station_ip 5.120.180.127 103900 port 42 103900 unique_id port 103900 remote_ip 10.8.0.102 103902 username amir 103902 mac 103902 bytes_out 50592 103902 bytes_in 369338 103902 station_ip 46.225.214.90 103902 port 43 103902 unique_id port 103902 remote_ip 10.8.0.54 103906 username zare 103906 kill_reason Another user logged on this global unique id 103906 mac 103906 bytes_out 0 103906 bytes_in 0 103906 station_ip 37.27.19.227 103906 port 21 103906 unique_id port 103909 username abbasaskari 103909 mac 103909 bytes_out 10092 103909 bytes_in 17884 103909 station_ip 83.122.231.115 103909 port 37 103909 unique_id port 103909 remote_ip 10.8.0.94 103911 username afarin1 103911 mac 103911 bytes_out 1690253 103911 bytes_in 20806019 103911 station_ip 83.122.151.50 103911 port 38 103911 unique_id port 103911 remote_ip 10.8.0.146 103914 username zare 103914 kill_reason Another user logged on this global unique id 103914 mac 103914 bytes_out 0 103914 bytes_in 0 103914 station_ip 37.27.19.227 103914 port 21 103914 unique_id port 103922 username amir 103922 mac 103922 bytes_out 28696 103922 bytes_in 113583 103922 station_ip 46.225.214.90 103922 port 38 103922 unique_id port 103922 remote_ip 10.8.0.54 103928 username amir 103928 kill_reason Maximum check online fails reached 103928 mac 103928 bytes_out 0 103928 bytes_in 0 103928 station_ip 46.225.214.90 103928 port 38 103928 unique_id port 103931 username amir 103931 mac 103931 bytes_out 121484 103931 bytes_in 228722 103896 station_ip 5.233.73.150 103896 port 15730001 103896 nas_port_type Virtual 103896 remote_ip 5.5.5.60 103897 username musa 103897 mac 103897 bytes_out 0 103897 bytes_in 0 103897 station_ip 37.129.103.10 103897 port 22 103897 unique_id port 103897 remote_ip 10.8.1.78 103899 username sobhan 103899 unique_id port 103899 terminate_cause Lost-Carrier 103899 bytes_out 746825 103899 bytes_in 8314671 103899 station_ip 5.119.90.240 103899 port 15730007 103899 nas_port_type Virtual 103899 remote_ip 5.5.5.58 103903 username zare 103903 kill_reason Another user logged on this global unique id 103903 mac 103903 bytes_out 0 103903 bytes_in 0 103903 station_ip 37.27.19.227 103903 port 21 103903 unique_id port 103905 username rezasekonji 103905 mac 103905 bytes_out 148993 103905 bytes_in 2208331 103905 station_ip 83.123.162.34 103905 port 42 103905 unique_id port 103905 remote_ip 10.8.0.114 103908 username tahmasebi 103908 kill_reason Another user logged on this global unique id 103908 mac 103908 bytes_out 0 103908 bytes_in 0 103908 station_ip 5.120.153.62 103908 port 43 103908 unique_id port 103908 remote_ip 10.8.0.66 103910 username zare 103910 kill_reason Another user logged on this global unique id 103910 mac 103910 bytes_out 0 103910 bytes_in 0 103910 station_ip 37.27.19.227 103910 port 21 103910 unique_id port 103912 username tahmasebi 103912 mac 103912 bytes_out 0 103912 bytes_in 0 103912 station_ip 5.120.153.62 103912 port 43 103912 unique_id port 103916 username alipour 103916 mac 103916 bytes_out 430857 103916 bytes_in 2532476 103916 station_ip 83.122.73.74 103916 port 45 103916 unique_id port 103916 remote_ip 10.8.0.70 103919 username alemzadeh 103919 unique_id port 103919 terminate_cause User-Request 103919 bytes_out 466602 103919 bytes_in 7231091 103919 station_ip 37.129.193.181 103919 port 15730010 103919 nas_port_type Virtual 103919 remote_ip 5.5.5.64 103920 username amir 103920 mac 103920 bytes_out 41973 103920 bytes_in 355998 103920 station_ip 46.225.214.90 103920 port 44 103920 unique_id port 103920 remote_ip 10.8.0.54 103921 username mehdizare 103921 mac 103921 bytes_out 75252 103921 bytes_in 186505 103921 station_ip 5.119.202.96 103921 port 38 103921 unique_id port 103921 remote_ip 10.8.0.22 103923 username amir 103923 mac 103923 bytes_out 0 103923 bytes_in 0 103923 station_ip 46.225.214.90 103923 port 38 103923 unique_id port 103923 remote_ip 10.8.0.54 103926 username zare 103926 kill_reason Another user logged on this global unique id 103926 mac 103926 bytes_out 0 103926 bytes_in 0 103926 station_ip 37.27.19.227 103926 port 21 103926 unique_id port 103936 username mehdizare 103936 mac 103936 bytes_out 0 103936 bytes_in 0 103936 station_ip 5.119.202.96 103936 port 30 103936 unique_id port 103936 remote_ip 10.8.0.22 103940 username ahmadipour 103940 unique_id port 103940 terminate_cause Lost-Carrier 103940 bytes_out 130975 103940 bytes_in 975052 103940 station_ip 83.123.26.86 103940 port 15730011 103940 nas_port_type Virtual 103940 remote_ip 5.5.5.84 103943 username afarin1 103943 mac 103943 bytes_out 0 103943 bytes_in 0 103943 station_ip 83.122.151.50 103943 port 37 103943 unique_id port 103945 username afarin1 103945 kill_reason Maximum check online fails reached 103945 mac 103945 bytes_out 0 103945 bytes_in 0 103945 station_ip 83.122.151.50 103945 port 22 103945 unique_id port 103947 username mehdizare 103947 kill_reason Another user logged on this global unique id 103947 mac 103947 bytes_out 0 103947 bytes_in 0 103947 station_ip 5.119.202.96 103947 port 30 103947 unique_id port 103901 bytes_in 0 103901 station_ip 37.27.19.227 103901 port 21 103901 unique_id port 103901 remote_ip 10.8.1.110 103904 username tahmasebi 103904 mac 103904 bytes_out 0 103904 bytes_in 0 103904 station_ip 5.119.88.28 103904 port 37 103904 unique_id port 103907 username amir 103907 mac 103907 bytes_out 64927 103907 bytes_in 240697 103907 station_ip 46.225.214.90 103907 port 37 103907 unique_id port 103907 remote_ip 10.8.0.54 103913 username amir 103913 mac 103913 bytes_out 0 103913 bytes_in 0 103913 station_ip 46.225.214.90 103913 port 38 103913 unique_id port 103913 remote_ip 10.8.0.54 103915 username mehdizare 103915 mac 103915 bytes_out 134395 103915 bytes_in 521876 103915 station_ip 5.119.202.96 103915 port 47 103915 unique_id port 103915 remote_ip 10.8.0.22 103917 username zare 103917 kill_reason Another user logged on this global unique id 103917 mac 103917 bytes_out 0 103917 bytes_in 0 103917 station_ip 37.27.19.227 103917 port 21 103917 unique_id port 103918 username morteza 103918 mac 103918 bytes_out 2326192 103918 bytes_in 36134547 103918 station_ip 37.129.39.248 103918 port 30 103918 unique_id port 103918 remote_ip 10.8.0.90 103924 username amir 103924 mac 103924 bytes_out 0 103924 bytes_in 0 103924 station_ip 46.225.214.90 103924 port 38 103924 unique_id port 103924 remote_ip 10.8.0.54 103925 username amir 103925 mac 103925 bytes_out 0 103925 bytes_in 0 103925 station_ip 46.225.214.90 103925 port 22 103925 unique_id port 103925 remote_ip 10.8.1.34 103927 username aminvpn 103927 unique_id port 103927 terminate_cause User-Request 103927 bytes_out 2980222 103927 bytes_in 40814679 103927 station_ip 5.120.111.33 103927 port 15730006 103927 nas_port_type Virtual 103927 remote_ip 5.5.5.50 103929 username amir 103929 mac 103929 bytes_out 0 103929 bytes_in 0 103929 station_ip 46.225.214.90 103929 port 22 103929 unique_id port 103929 remote_ip 10.8.1.34 103930 username zare 103930 kill_reason Another user logged on this global unique id 103930 mac 103930 bytes_out 0 103930 bytes_in 0 103930 station_ip 37.27.19.227 103930 port 21 103930 unique_id port 103933 username aminvpn 103933 unique_id port 103933 terminate_cause User-Request 103933 bytes_out 8647111 103933 bytes_in 283976059 103933 station_ip 31.57.131.152 103933 port 15730008 103933 nas_port_type Virtual 103933 remote_ip 5.5.5.139 103934 username alireza 103934 unique_id port 103934 terminate_cause Lost-Carrier 103934 bytes_out 3823070 103934 bytes_in 82216679 103934 station_ip 194.15.99.84 103934 port 15730009 103934 nas_port_type Virtual 103934 remote_ip 5.5.5.253 103937 username mehdizare 103937 mac 103937 bytes_out 309536 103937 bytes_in 4183847 103937 station_ip 5.119.202.96 103937 port 30 103937 unique_id port 103937 remote_ip 10.8.0.22 103938 username afarin1 103938 kill_reason Another user logged on this global unique id 103938 mac 103938 bytes_out 0 103938 bytes_in 0 103938 station_ip 83.122.151.50 103938 port 37 103938 unique_id port 103938 remote_ip 10.8.0.146 103941 username musa 103941 mac 103941 bytes_out 0 103941 bytes_in 0 103941 station_ip 83.122.123.191 103941 port 42 103941 unique_id port 103941 remote_ip 10.8.0.106 103951 username zare 103951 kill_reason Another user logged on this global unique id 103951 mac 103951 bytes_out 0 103951 bytes_in 0 103951 station_ip 37.27.19.227 103951 port 21 103951 unique_id port 103953 username mehdizare 103953 mac 103953 bytes_out 0 103953 bytes_in 0 103953 station_ip 5.119.202.96 103953 port 30 103953 unique_id port 103954 username mehdizare 103931 station_ip 46.225.214.90 103931 port 22 103931 unique_id port 103931 remote_ip 10.8.1.34 103932 username amir 103932 mac 103932 bytes_out 0 103932 bytes_in 0 103932 station_ip 46.225.214.90 103932 port 44 103932 unique_id port 103932 remote_ip 10.8.0.54 103935 username zare 103935 kill_reason Another user logged on this global unique id 103935 mac 103935 bytes_out 0 103935 bytes_in 0 103935 station_ip 37.27.19.227 103935 port 21 103935 unique_id port 103939 username aminvpn 103939 mac 103939 bytes_out 334620 103939 bytes_in 718894 103939 station_ip 83.122.141.212 103939 port 46 103939 unique_id port 103939 remote_ip 10.8.0.6 103942 username mehdizare 103942 mac 103942 bytes_out 1818945 103942 bytes_in 28790127 103942 station_ip 5.119.202.96 103942 port 44 103942 unique_id port 103942 remote_ip 10.8.0.22 103944 username avaanna 103944 mac 103944 bytes_out 165979 103944 bytes_in 1555672 103944 station_ip 37.129.152.33 103944 port 37 103944 unique_id port 103944 remote_ip 10.8.0.138 103946 username zare 103946 kill_reason Another user logged on this global unique id 103946 mac 103946 bytes_out 0 103946 bytes_in 0 103946 station_ip 37.27.19.227 103946 port 21 103946 unique_id port 103949 username zare 103949 kill_reason Another user logged on this global unique id 103949 mac 103949 bytes_out 0 103949 bytes_in 0 103949 station_ip 37.27.19.227 103949 port 21 103949 unique_id port 103955 username rajaei 103955 mac 103955 bytes_out 464703 103955 bytes_in 1834668 103955 station_ip 37.153.187.51 103955 port 45 103955 unique_id port 103955 remote_ip 10.8.0.142 103956 username zare 103956 mac 103956 bytes_out 0 103956 bytes_in 0 103956 station_ip 37.27.19.227 103956 port 21 103956 unique_id port 103957 username zare 103957 mac 103957 bytes_out 0 103957 bytes_in 0 103957 station_ip 37.27.19.227 103957 port 21 103957 unique_id port 103957 remote_ip 10.8.1.110 103959 username zare 103959 mac 103959 bytes_out 0 103959 bytes_in 0 103959 station_ip 37.27.19.227 103959 port 21 103959 unique_id port 103959 remote_ip 10.8.1.110 103963 username zare 103963 mac 103963 bytes_out 0 103963 bytes_in 0 103963 station_ip 37.27.19.227 103963 port 21 103963 unique_id port 103963 remote_ip 10.8.1.110 103966 username zare 103966 mac 103966 bytes_out 0 103966 bytes_in 0 103966 station_ip 37.27.19.227 103966 port 44 103966 unique_id port 103966 remote_ip 10.8.0.150 103967 username zare 103967 mac 103967 bytes_out 0 103967 bytes_in 0 103967 station_ip 37.27.19.227 103967 port 44 103967 unique_id port 103967 remote_ip 10.8.0.150 103973 username afarin1 103973 mac 103973 bytes_out 0 103973 bytes_in 0 103973 station_ip 83.122.151.50 103973 port 37 103973 unique_id port 103973 remote_ip 10.8.0.146 103974 username zare 103974 mac 103974 bytes_out 1636 103974 bytes_in 5342 103974 station_ip 37.27.19.227 103974 port 44 103974 unique_id port 103974 remote_ip 10.8.0.150 103978 username afarin1 103978 mac 103978 bytes_out 0 103978 bytes_in 0 103978 station_ip 83.122.151.50 103978 port 42 103978 unique_id port 103978 remote_ip 10.8.0.146 103979 username afarin1 103979 mac 103979 bytes_out 0 103979 bytes_in 0 103979 station_ip 83.122.151.50 103979 port 30 103979 unique_id port 103979 remote_ip 10.8.0.146 103982 username zare 103982 mac 103982 bytes_out 0 103982 bytes_in 0 103982 station_ip 37.27.19.227 103982 port 21 103982 unique_id port 103982 remote_ip 10.8.1.110 103947 remote_ip 10.8.0.22 103948 username abbasaskari 103948 mac 103948 bytes_out 12591 103948 bytes_in 20233 103948 station_ip 83.122.212.111 103948 port 44 103948 unique_id port 103948 remote_ip 10.8.0.94 103950 username abbasaskari 103950 mac 103950 bytes_out 14845 103950 bytes_in 39900 103950 station_ip 83.122.212.111 103950 port 44 103950 unique_id port 103950 remote_ip 10.8.0.94 103952 username aminvpn 103952 mac 103952 bytes_out 0 103952 bytes_in 0 103952 station_ip 83.122.148.12 103952 port 44 103952 unique_id port 103952 remote_ip 10.8.0.6 103960 username abbasaskari 103960 mac 103960 bytes_out 0 103960 bytes_in 0 103960 station_ip 83.122.221.151 103960 port 44 103960 unique_id port 103960 remote_ip 10.8.0.94 103961 username zare 103961 mac 103961 bytes_out 23703 103961 bytes_in 71383 103961 station_ip 37.27.19.227 103961 port 21 103961 unique_id port 103961 remote_ip 10.8.1.110 103962 username zare 103962 mac 103962 bytes_out 0 103962 bytes_in 0 103962 station_ip 37.27.19.227 103962 port 21 103962 unique_id port 103962 remote_ip 10.8.1.110 103964 username zare 103964 mac 103964 bytes_out 0 103964 bytes_in 0 103964 station_ip 37.27.19.227 103964 port 44 103964 unique_id port 103964 remote_ip 10.8.0.150 103965 username aminvpn 103965 unique_id port 103965 terminate_cause Lost-Carrier 103965 bytes_out 175614 103965 bytes_in 292430 103965 station_ip 31.57.140.24 103965 port 15730012 103965 nas_port_type Virtual 103965 remote_ip 5.5.5.28 103969 username zare 103969 mac 103969 bytes_out 0 103969 bytes_in 0 103969 station_ip 37.27.19.227 103969 port 44 103969 unique_id port 103969 remote_ip 10.8.0.150 103971 username zare 103971 mac 103971 bytes_out 0 103971 bytes_in 0 103971 station_ip 37.27.19.227 103971 port 44 103971 unique_id port 103971 remote_ip 10.8.0.150 103976 username morteza 103976 kill_reason Another user logged on this global unique id 103976 mac 103976 bytes_out 0 103976 bytes_in 0 103976 station_ip 37.129.112.24 103976 port 45 103976 unique_id port 103976 remote_ip 10.8.0.90 103977 username askari 103977 mac 103977 bytes_out 0 103977 bytes_in 0 103977 station_ip 5.119.135.80 103977 port 30 103977 unique_id port 103980 username afarin1 103980 mac 103980 bytes_out 0 103980 bytes_in 0 103980 station_ip 83.122.151.50 103980 port 37 103980 unique_id port 103980 remote_ip 10.8.0.146 103985 username zare 103985 mac 103985 bytes_out 0 103985 bytes_in 0 103985 station_ip 37.27.19.227 103985 port 21 103985 unique_id port 103985 remote_ip 10.8.1.110 103987 username zare 103987 mac 103987 bytes_out 0 103987 bytes_in 0 103987 station_ip 37.27.19.227 103987 port 21 103987 unique_id port 103987 remote_ip 10.8.1.110 103988 username mehdizare 103988 mac 103988 bytes_out 79194 103988 bytes_in 40960 103988 station_ip 5.119.202.96 103988 port 37 103988 unique_id port 103988 remote_ip 10.8.0.22 103989 username mehdizare 103989 mac 103989 bytes_out 13929 103989 bytes_in 20291 103989 station_ip 5.119.202.96 103989 port 42 103989 unique_id port 103989 remote_ip 10.8.0.22 103994 username aminvpn 103994 unique_id port 103994 terminate_cause User-Request 103994 bytes_out 2141161 103994 bytes_in 29675266 103994 station_ip 5.119.137.18 103994 port 15730019 103994 nas_port_type Virtual 103994 remote_ip 5.5.5.52 103995 username zare 103995 mac 103995 bytes_out 1636 103995 bytes_in 4649 103995 station_ip 37.27.19.227 103995 port 42 103995 unique_id port 103995 remote_ip 10.8.0.150 103954 mac 103954 bytes_out 0 103954 bytes_in 0 103954 station_ip 5.119.202.96 103954 port 23 103954 unique_id port 103954 remote_ip 10.8.1.22 103958 username aminvpn 103958 unique_id port 103958 terminate_cause User-Request 103958 bytes_out 158896939 103958 bytes_in 991013430 103958 station_ip 31.56.159.84 103958 port 15730000 103958 nas_port_type Virtual 103958 remote_ip 5.5.5.54 103968 username askari 103968 kill_reason Another user logged on this global unique id 103968 mac 103968 bytes_out 0 103968 bytes_in 0 103968 station_ip 5.119.135.80 103968 port 30 103968 unique_id port 103968 remote_ip 10.8.0.38 103970 username aminvpn 103970 unique_id port 103970 terminate_cause User-Request 103970 bytes_out 118311 103970 bytes_in 1024055 103970 station_ip 31.57.131.152 103970 port 15730015 103970 nas_port_type Virtual 103970 remote_ip 5.5.5.30 103972 username morteza 103972 mac 103972 bytes_out 0 103972 bytes_in 0 103972 station_ip 37.129.112.24 103972 port 42 103972 unique_id port 103972 remote_ip 10.8.0.90 103975 username mehdizare 103975 mac 103975 bytes_out 15213 103975 bytes_in 23884 103975 station_ip 5.119.202.96 103975 port 21 103975 unique_id port 103975 remote_ip 10.8.1.22 103981 username zare 103981 mac 103981 bytes_out 0 103981 bytes_in 0 103981 station_ip 37.27.19.227 103981 port 21 103981 unique_id port 103981 remote_ip 10.8.1.110 103984 username mehdizare 103984 mac 103984 bytes_out 0 103984 bytes_in 0 103984 station_ip 5.119.202.96 103984 port 23 103984 unique_id port 103984 remote_ip 10.8.1.22 103990 username zare 103990 mac 103990 bytes_out 0 103990 bytes_in 0 103990 station_ip 37.27.19.227 103990 port 37 103990 unique_id port 103990 remote_ip 10.8.0.150 103991 username zare 103991 mac 103991 bytes_out 0 103991 bytes_in 0 103991 station_ip 37.27.19.227 103991 port 42 103991 unique_id port 103991 remote_ip 10.8.0.150 103992 username zare 103992 mac 103992 bytes_out 0 103992 bytes_in 0 103992 station_ip 37.27.19.227 103992 port 42 103992 unique_id port 103992 remote_ip 10.8.0.150 103997 username zare 103997 mac 103997 bytes_out 0 103997 bytes_in 0 103997 station_ip 37.27.19.227 103997 port 21 103997 unique_id port 103997 remote_ip 10.8.1.110 104003 username zare 104003 mac 104003 bytes_out 1636 104003 bytes_in 4793 104003 station_ip 37.27.19.227 104003 port 30 104003 unique_id port 104003 remote_ip 10.8.0.150 104006 username zare 104006 mac 104006 bytes_out 0 104006 bytes_in 0 104006 station_ip 37.27.19.227 104006 port 21 104006 unique_id port 104006 remote_ip 10.8.1.110 104015 username aminvpn 104015 unique_id port 104015 terminate_cause Lost-Carrier 104015 bytes_out 16275678 104015 bytes_in 565341458 104015 station_ip 31.57.131.152 104015 port 15730016 104015 nas_port_type Virtual 104015 remote_ip 5.5.5.32 104022 username houshang 104022 mac 104022 bytes_out 63037 104022 bytes_in 111295 104022 station_ip 5.119.176.64 104022 port 23 104022 unique_id port 104022 remote_ip 10.8.1.114 104026 username mohammadmahdi 104026 kill_reason Another user logged on this global unique id 104026 mac 104026 bytes_out 0 104026 bytes_in 0 104026 station_ip 5.120.118.166 104026 port 45 104026 unique_id port 104027 username zare 104027 mac 104027 bytes_out 0 104027 bytes_in 0 104027 station_ip 37.27.19.227 104027 port 42 104027 unique_id port 104031 username houshang 104031 kill_reason Another user logged on this global unique id 104031 mac 104031 bytes_out 0 104031 bytes_in 0 104031 station_ip 5.119.176.64 104031 port 44 103983 username zare 103983 mac 103983 bytes_out 0 103983 bytes_in 0 103983 station_ip 37.27.19.227 103983 port 21 103983 unique_id port 103983 remote_ip 10.8.1.110 103986 username zare 103986 mac 103986 bytes_out 0 103986 bytes_in 0 103986 station_ip 37.27.19.227 103986 port 21 103986 unique_id port 103986 remote_ip 10.8.1.110 103993 username zare 103993 mac 103993 bytes_out 0 103993 bytes_in 0 103993 station_ip 37.27.19.227 103993 port 42 103993 unique_id port 103993 remote_ip 10.8.0.150 103998 username zare 103998 mac 103998 bytes_out 0 103998 bytes_in 0 103998 station_ip 37.27.19.227 103998 port 30 103998 unique_id port 103998 remote_ip 10.8.0.150 104000 username alipour 104000 kill_reason Another user logged on this global unique id 104000 mac 104000 bytes_out 0 104000 bytes_in 0 104000 station_ip 83.122.73.74 104000 port 43 104000 unique_id port 104000 remote_ip 10.8.0.70 104002 username zare 104002 mac 104002 bytes_out 0 104002 bytes_in 0 104002 station_ip 37.27.19.227 104002 port 21 104002 unique_id port 104002 remote_ip 10.8.1.110 104005 username mehdizare 104005 mac 104005 bytes_out 18860 104005 bytes_in 22847 104005 station_ip 5.119.202.96 104005 port 37 104005 unique_id port 104005 remote_ip 10.8.0.22 104008 username zare 104008 mac 104008 bytes_out 0 104008 bytes_in 0 104008 station_ip 37.27.19.227 104008 port 30 104008 unique_id port 104008 remote_ip 10.8.0.150 104010 username zare 104010 mac 104010 bytes_out 0 104010 bytes_in 0 104010 station_ip 37.27.19.227 104010 port 42 104010 unique_id port 104010 remote_ip 10.8.0.150 104011 username zare 104011 mac 104011 bytes_out 0 104011 bytes_in 0 104011 station_ip 37.27.19.227 104011 port 42 104011 unique_id port 104011 remote_ip 10.8.0.150 104012 username abbasaskari 104012 mac 104012 bytes_out 204771 104012 bytes_in 993278 104012 station_ip 83.122.203.223 104012 port 44 104012 unique_id port 104012 remote_ip 10.8.0.94 104014 username abbasaskari 104014 mac 104014 bytes_out 0 104014 bytes_in 0 104014 station_ip 83.122.203.223 104014 port 45 104014 unique_id port 104014 remote_ip 10.8.0.94 104017 username zare 104017 kill_reason Another user logged on this global unique id 104017 mac 104017 bytes_out 0 104017 bytes_in 0 104017 station_ip 37.27.19.227 104017 port 42 104017 unique_id port 104017 remote_ip 10.8.0.150 104018 username alinezhad 104018 unique_id port 104018 terminate_cause User-Request 104018 bytes_out 4330830 104018 bytes_in 169426257 104018 station_ip 5.202.135.58 104018 port 15730017 104018 nas_port_type Virtual 104018 remote_ip 5.5.5.43 104019 username mohammadmahdi 104019 kill_reason Another user logged on this global unique id 104019 mac 104019 bytes_out 0 104019 bytes_in 0 104019 station_ip 5.120.118.166 104019 port 45 104019 unique_id port 104019 remote_ip 10.8.0.34 104023 username abbasaskari 104023 mac 104023 bytes_out 0 104023 bytes_in 0 104023 station_ip 83.122.203.223 104023 port 44 104023 unique_id port 104023 remote_ip 10.8.0.94 104025 username forozande 104025 mac 104025 bytes_out 0 104025 bytes_in 0 104025 station_ip 83.123.133.77 104025 port 30 104025 unique_id port 104025 remote_ip 10.8.0.74 104028 username zare 104028 mac 104028 bytes_out 0 104028 bytes_in 0 104028 station_ip 37.27.19.227 104028 port 42 104028 unique_id port 104028 remote_ip 10.8.0.150 104030 username alipour 104030 mac 104030 bytes_out 0 104030 bytes_in 0 104030 station_ip 83.122.73.74 104030 port 43 104030 unique_id port 103996 username afarin1 103996 mac 103996 bytes_out 80220 103996 bytes_in 116342 103996 station_ip 83.122.151.50 103996 port 30 103996 unique_id port 103996 remote_ip 10.8.0.146 103999 username morteza 103999 mac 103999 bytes_out 0 103999 bytes_in 0 103999 station_ip 37.129.112.24 103999 port 45 103999 unique_id port 104001 username afarin1 104001 mac 104001 bytes_out 19599 104001 bytes_in 38571 104001 station_ip 31.56.112.119 104001 port 42 104001 unique_id port 104001 remote_ip 10.8.0.146 104004 username zare 104004 mac 104004 bytes_out 0 104004 bytes_in 0 104004 station_ip 37.27.19.227 104004 port 21 104004 unique_id port 104004 remote_ip 10.8.1.110 104007 username alireza 104007 unique_id port 104007 terminate_cause Lost-Carrier 104007 bytes_out 1007592 104007 bytes_in 14662681 104007 station_ip 194.15.99.84 104007 port 15730018 104007 nas_port_type Virtual 104007 remote_ip 5.5.5.44 104009 username zare 104009 mac 104009 bytes_out 0 104009 bytes_in 0 104009 station_ip 37.27.19.227 104009 port 30 104009 unique_id port 104009 remote_ip 10.8.0.150 104013 username abbasaskari 104013 mac 104013 bytes_out 0 104013 bytes_in 0 104013 station_ip 83.122.203.223 104013 port 44 104013 unique_id port 104013 remote_ip 10.8.0.94 104016 username houshang 104016 mac 104016 bytes_out 0 104016 bytes_in 0 104016 station_ip 5.119.176.64 104016 port 30 104016 unique_id port 104016 remote_ip 10.8.0.126 104020 username abbasaskari 104020 mac 104020 bytes_out 467923 104020 bytes_in 2178372 104020 station_ip 83.122.203.223 104020 port 44 104020 unique_id port 104020 remote_ip 10.8.0.94 104021 username houshang 104021 mac 104021 bytes_out 0 104021 bytes_in 0 104021 station_ip 5.119.176.64 104021 port 30 104021 unique_id port 104021 remote_ip 10.8.0.126 104024 username zare 104024 kill_reason Another user logged on this global unique id 104024 mac 104024 bytes_out 0 104024 bytes_in 0 104024 station_ip 37.27.19.227 104024 port 42 104024 unique_id port 104029 username naeimeh 104029 mac 104029 bytes_out 0 104029 bytes_in 0 104029 station_ip 46.225.213.28 104029 port 30 104029 unique_id port 104029 remote_ip 10.8.0.154 104035 username zare 104035 mac 104035 bytes_out 0 104035 bytes_in 0 104035 station_ip 37.27.19.227 104035 port 42 104035 unique_id port 104035 remote_ip 10.8.0.150 104040 username alinezhad 104040 unique_id port 104040 terminate_cause User-Request 104040 bytes_out 3556423 104040 bytes_in 144180182 104040 station_ip 5.202.135.58 104040 port 15730020 104040 nas_port_type Virtual 104040 remote_ip 5.5.5.53 104044 username houshang 104044 kill_reason Another user logged on this global unique id 104044 mac 104044 bytes_out 0 104044 bytes_in 0 104044 station_ip 5.119.176.64 104044 port 44 104044 unique_id port 104054 username zare 104054 mac 104054 bytes_out 0 104054 bytes_in 0 104054 station_ip 37.27.19.227 104054 port 30 104054 unique_id port 104054 remote_ip 10.8.0.150 104055 username houshang 104055 mac 104055 bytes_out 0 104055 bytes_in 0 104055 station_ip 5.119.176.64 104055 port 44 104055 unique_id port 104057 username mohammadmahdi 104057 kill_reason Another user logged on this global unique id 104057 mac 104057 bytes_out 0 104057 bytes_in 0 104057 station_ip 5.120.118.166 104057 port 45 104057 unique_id port 104059 username zare 104059 mac 104059 bytes_out 0 104059 bytes_in 0 104059 station_ip 37.27.19.227 104059 port 23 104059 unique_id port 104059 remote_ip 10.8.1.110 104060 username zare 104060 mac 104031 unique_id port 104031 remote_ip 10.8.0.126 104033 username zare 104033 mac 104033 bytes_out 0 104033 bytes_in 0 104033 station_ip 37.27.19.227 104033 port 30 104033 unique_id port 104033 remote_ip 10.8.0.150 104034 username zare 104034 mac 104034 bytes_out 0 104034 bytes_in 0 104034 station_ip 37.27.19.227 104034 port 30 104034 unique_id port 104034 remote_ip 10.8.0.150 104039 username zare 104039 mac 104039 bytes_out 0 104039 bytes_in 0 104039 station_ip 37.27.19.227 104039 port 30 104039 unique_id port 104039 remote_ip 10.8.0.150 104046 username mohammadmahdi 104046 kill_reason Another user logged on this global unique id 104046 mac 104046 bytes_out 0 104046 bytes_in 0 104046 station_ip 5.120.118.166 104046 port 45 104046 unique_id port 104049 username amir 104049 mac 104049 bytes_out 2218660 104049 bytes_in 48899356 104049 station_ip 46.225.215.102 104049 port 47 104049 unique_id port 104049 remote_ip 10.8.0.54 104050 username zare 104050 mac 104050 bytes_out 0 104050 bytes_in 0 104050 station_ip 37.27.19.227 104050 port 23 104050 unique_id port 104050 remote_ip 10.8.1.110 104052 username forozande 104052 mac 104052 bytes_out 133104 104052 bytes_in 457842 104052 station_ip 37.129.137.129 104052 port 30 104052 unique_id port 104052 remote_ip 10.8.0.74 104053 username aminvpn 104053 unique_id port 104053 terminate_cause Lost-Carrier 104053 bytes_out 78864 104053 bytes_in 57614 104053 station_ip 77.237.188.233 104053 port 15730022 104053 nas_port_type Virtual 104053 remote_ip 5.5.5.23 104062 username alinezhad 104062 unique_id port 104062 terminate_cause User-Request 104062 bytes_out 2211522 104062 bytes_in 73905585 104062 station_ip 5.202.135.58 104062 port 15730021 104062 nas_port_type Virtual 104062 remote_ip 5.5.5.255 104069 username amir 104069 mac 104069 bytes_out 0 104069 bytes_in 0 104069 station_ip 46.225.215.102 104069 port 47 104069 unique_id port 104069 remote_ip 10.8.0.54 104071 username mohammadmahdi 104071 kill_reason Another user logged on this global unique id 104071 mac 104071 bytes_out 0 104071 bytes_in 0 104071 station_ip 5.120.118.166 104071 port 45 104071 unique_id port 104074 username afarin1 104074 mac 104074 bytes_out 0 104074 bytes_in 0 104074 station_ip 83.123.78.78 104074 port 21 104074 unique_id port 104074 remote_ip 10.8.1.106 104077 username amir 104077 mac 104077 bytes_out 0 104077 bytes_in 0 104077 station_ip 46.225.215.102 104077 port 50 104077 unique_id port 104077 remote_ip 10.8.0.54 104084 username amir 104084 mac 104084 bytes_out 0 104084 bytes_in 0 104084 station_ip 46.225.215.102 104084 port 45 104084 unique_id port 104084 remote_ip 10.8.0.54 104085 username zare 104085 mac 104085 bytes_out 0 104085 bytes_in 0 104085 station_ip 37.27.19.227 104085 port 44 104085 unique_id port 104089 username forozande 104089 mac 104089 bytes_out 0 104089 bytes_in 0 104089 station_ip 83.123.252.83 104089 port 50 104089 unique_id port 104089 remote_ip 10.8.0.74 104092 username mirzaei 104092 kill_reason Another user logged on this global unique id 104092 mac 104092 bytes_out 0 104092 bytes_in 0 104092 station_ip 5.119.120.6 104092 port 42 104092 unique_id port 104092 remote_ip 10.8.0.30 104095 username arabpour 104095 unique_id port 104095 terminate_cause User-Request 104095 bytes_out 142477 104095 bytes_in 940644 104095 station_ip 164.138.184.204 104095 port 15730031 104095 nas_port_type Virtual 104095 remote_ip 5.5.5.255 104096 username aminvpn 104096 mac 104096 bytes_out 1517171 104096 bytes_in 27860924 104032 username zare 104032 mac 104032 bytes_out 16783 104032 bytes_in 34690 104032 station_ip 37.27.19.227 104032 port 30 104032 unique_id port 104032 remote_ip 10.8.0.150 104036 username abbasaskari 104036 mac 104036 bytes_out 0 104036 bytes_in 0 104036 station_ip 83.122.191.11 104036 port 30 104036 unique_id port 104036 remote_ip 10.8.0.94 104037 username zare 104037 mac 104037 bytes_out 0 104037 bytes_in 0 104037 station_ip 37.27.19.227 104037 port 30 104037 unique_id port 104037 remote_ip 10.8.0.150 104038 username zare 104038 mac 104038 bytes_out 0 104038 bytes_in 0 104038 station_ip 37.27.19.227 104038 port 30 104038 unique_id port 104038 remote_ip 10.8.0.150 104041 username zare 104041 mac 104041 bytes_out 0 104041 bytes_in 0 104041 station_ip 37.27.19.227 104041 port 30 104041 unique_id port 104041 remote_ip 10.8.0.150 104042 username zare 104042 mac 104042 bytes_out 0 104042 bytes_in 0 104042 station_ip 37.27.19.227 104042 port 30 104042 unique_id port 104042 remote_ip 10.8.0.150 104043 username zare 104043 mac 104043 bytes_out 0 104043 bytes_in 0 104043 station_ip 37.27.19.227 104043 port 30 104043 unique_id port 104043 remote_ip 10.8.0.150 104045 username zare 104045 mac 104045 bytes_out 0 104045 bytes_in 0 104045 station_ip 37.27.19.227 104045 port 30 104045 unique_id port 104045 remote_ip 10.8.0.150 104047 username zare 104047 mac 104047 bytes_out 0 104047 bytes_in 0 104047 station_ip 37.27.19.227 104047 port 30 104047 unique_id port 104047 remote_ip 10.8.0.150 104048 username zare 104048 mac 104048 bytes_out 0 104048 bytes_in 0 104048 station_ip 37.27.19.227 104048 port 30 104048 unique_id port 104048 remote_ip 10.8.0.150 104051 username zare 104051 mac 104051 bytes_out 0 104051 bytes_in 0 104051 station_ip 37.27.19.227 104051 port 43 104051 unique_id port 104051 remote_ip 10.8.0.150 104056 username zare 104056 kill_reason Maximum check online fails reached 104056 mac 104056 bytes_out 0 104056 bytes_in 0 104056 station_ip 37.27.19.227 104056 port 30 104056 unique_id port 104058 username zare 104058 mac 104058 bytes_out 0 104058 bytes_in 0 104058 station_ip 37.27.19.227 104058 port 23 104058 unique_id port 104058 remote_ip 10.8.1.110 104061 username amir 104061 mac 104061 bytes_out 0 104061 bytes_in 0 104061 station_ip 46.225.215.102 104061 port 44 104061 unique_id port 104061 remote_ip 10.8.0.54 104066 username zare 104066 mac 104066 bytes_out 0 104066 bytes_in 0 104066 station_ip 37.27.19.227 104066 port 23 104066 unique_id port 104066 remote_ip 10.8.1.110 104067 username mahdixz 104067 unique_id port 104067 terminate_cause User-Request 104067 bytes_out 0 104067 bytes_in 0 104067 station_ip 83.122.127.182 104067 port 15730024 104067 nas_port_type Virtual 104067 remote_ip 5.5.5.33 104068 username mahdixz 104068 unique_id port 104068 terminate_cause User-Request 104068 bytes_out 12513 104068 bytes_in 17206 104068 station_ip 83.122.127.182 104068 port 15730025 104068 nas_port_type Virtual 104068 remote_ip 5.5.5.34 104070 username mahdixz 104070 unique_id port 104070 terminate_cause User-Request 104070 bytes_out 506691 104070 bytes_in 7551055 104070 station_ip 83.122.127.182 104070 port 15730026 104070 nas_port_type Virtual 104070 remote_ip 5.5.5.35 104072 username forozande 104072 mac 104072 bytes_out 394953 104072 bytes_in 4406918 104072 station_ip 83.123.28.89 104072 port 43 104072 unique_id port 104072 remote_ip 10.8.0.74 104060 bytes_out 0 104060 bytes_in 0 104060 station_ip 37.27.19.227 104060 port 23 104060 unique_id port 104060 remote_ip 10.8.1.110 104063 username zare 104063 mac 104063 bytes_out 0 104063 bytes_in 0 104063 station_ip 37.27.19.227 104063 port 23 104063 unique_id port 104063 remote_ip 10.8.1.110 104064 username zare 104064 mac 104064 bytes_out 17370 104064 bytes_in 36137 104064 station_ip 37.27.19.227 104064 port 23 104064 unique_id port 104064 remote_ip 10.8.1.110 104065 username hamid.e 104065 unique_id port 104065 terminate_cause User-Request 104065 bytes_out 15258432 104065 bytes_in 160774595 104065 station_ip 37.27.9.242 104065 port 15730013 104065 nas_port_type Virtual 104065 remote_ip 5.5.5.29 104073 username aminvpn 104073 unique_id port 104073 terminate_cause Lost-Carrier 104073 bytes_out 34305 104073 bytes_in 27330 104073 station_ip 109.125.171.105 104073 port 15730027 104073 nas_port_type Virtual 104073 remote_ip 5.5.5.38 104075 username mohammadmahdi 104075 kill_reason Another user logged on this global unique id 104075 mac 104075 bytes_out 0 104075 bytes_in 0 104075 station_ip 5.120.118.166 104075 port 45 104075 unique_id port 104076 username aminvpn 104076 mac 104076 bytes_out 0 104076 bytes_in 0 104076 station_ip 83.122.148.12 104076 port 46 104076 unique_id port 104076 remote_ip 10.8.0.6 104079 username abbasaskari 104079 mac 104079 bytes_out 11171 104079 bytes_in 31475 104079 station_ip 83.122.208.219 104079 port 48 104079 unique_id port 104079 remote_ip 10.8.0.94 104080 username mohammadmahdi 104080 mac 104080 bytes_out 0 104080 bytes_in 0 104080 station_ip 5.120.118.166 104080 port 45 104080 unique_id port 104081 username houshang 104081 mac 104081 bytes_out 0 104081 bytes_in 0 104081 station_ip 5.119.176.64 104081 port 47 104081 unique_id port 104081 remote_ip 10.8.0.126 104082 username zare 104082 kill_reason Another user logged on this global unique id 104082 mac 104082 bytes_out 0 104082 bytes_in 0 104082 station_ip 37.27.19.227 104082 port 44 104082 unique_id port 104082 remote_ip 10.8.0.150 104083 username hamid 104083 mac 104083 bytes_out 0 104083 bytes_in 0 104083 station_ip 83.122.234.65 104083 port 45 104083 unique_id port 104083 remote_ip 10.8.0.134 104087 username aminvpn 104087 unique_id port 104087 terminate_cause User-Request 104087 bytes_out 68472 104087 bytes_in 297095 104087 station_ip 31.57.131.152 104087 port 15730029 104087 nas_port_type Virtual 104087 remote_ip 5.5.5.39 104090 username amir 104090 mac 104090 bytes_out 0 104090 bytes_in 0 104090 station_ip 46.225.215.102 104090 port 45 104090 unique_id port 104090 remote_ip 10.8.0.54 104091 username afarin1 104091 mac 104091 bytes_out 0 104091 bytes_in 0 104091 station_ip 83.123.78.78 104091 port 49 104091 unique_id port 104091 remote_ip 10.8.0.146 104094 username mohammadmahdi 104094 mac 104094 bytes_out 167639 104094 bytes_in 2177468 104094 station_ip 5.120.118.166 104094 port 47 104094 unique_id port 104094 remote_ip 10.8.0.34 104097 username amir 104097 mac 104097 bytes_out 0 104097 bytes_in 0 104097 station_ip 46.225.215.102 104097 port 51 104097 unique_id port 104097 remote_ip 10.8.0.54 104109 username forozande 104109 mac 104109 bytes_out 875663 104109 bytes_in 9439907 104109 station_ip 113.203.38.31 104109 port 46 104109 unique_id port 104109 remote_ip 10.8.0.74 104114 username amir 104114 mac 104114 bytes_out 0 104114 bytes_in 0 104114 station_ip 46.225.215.102 104114 port 49 104114 unique_id port 104114 remote_ip 10.8.0.54 104078 username forozande 104078 mac 104078 bytes_out 0 104078 bytes_in 0 104078 station_ip 37.129.54.151 104078 port 48 104078 unique_id port 104078 remote_ip 10.8.0.74 104086 username mohammadmahdi 104086 kill_reason Another user logged on this global unique id 104086 mac 104086 bytes_out 0 104086 bytes_in 0 104086 station_ip 5.120.118.166 104086 port 47 104086 unique_id port 104086 remote_ip 10.8.0.34 104088 username mohammadmahdi 104088 kill_reason Another user logged on this global unique id 104088 mac 104088 bytes_out 0 104088 bytes_in 0 104088 station_ip 5.120.118.166 104088 port 47 104088 unique_id port 104093 username mohammadmahdi 104093 mac 104093 bytes_out 0 104093 bytes_in 0 104093 station_ip 5.120.118.166 104093 port 47 104093 unique_id port 104099 username mohammadmahdi 104099 mac 104099 bytes_out 0 104099 bytes_in 0 104099 station_ip 5.120.118.166 104099 port 49 104099 unique_id port 104099 remote_ip 10.8.0.34 104101 username arabpour 104101 unique_id port 104101 terminate_cause User-Request 104101 bytes_out 137292 104101 bytes_in 1339306 104101 station_ip 164.138.184.204 104101 port 15730033 104101 nas_port_type Virtual 104101 remote_ip 5.5.5.13 104104 username amir 104104 mac 104104 bytes_out 0 104104 bytes_in 0 104104 station_ip 46.225.215.102 104104 port 46 104104 unique_id port 104104 remote_ip 10.8.0.54 104111 username afarin1 104111 mac 104111 bytes_out 0 104111 bytes_in 0 104111 station_ip 83.123.78.78 104111 port 50 104111 unique_id port 104111 remote_ip 10.8.0.146 104112 username aminvpn 104112 unique_id port 104112 terminate_cause User-Request 104112 bytes_out 4115468 104112 bytes_in 159089784 104112 station_ip 31.57.131.152 104112 port 15730035 104112 nas_port_type Virtual 104112 remote_ip 5.5.5.15 104113 username alireza 104113 unique_id port 104113 terminate_cause Lost-Carrier 104113 bytes_out 3915088 104113 bytes_in 76667560 104113 station_ip 5.120.84.15 104113 port 15730034 104113 nas_port_type Virtual 104113 remote_ip 5.5.5.14 104116 username aminvpn 104116 mac 104116 bytes_out 1301353 104116 bytes_in 11374236 104116 station_ip 83.123.158.9 104116 port 45 104116 unique_id port 104116 remote_ip 10.8.0.6 104117 username malekpoir 104117 mac 104117 bytes_out 0 104117 bytes_in 0 104117 station_ip 5.119.52.219 104117 port 48 104117 unique_id port 104117 remote_ip 10.8.0.130 104119 username houshang 104119 kill_reason Another user logged on this global unique id 104119 mac 104119 bytes_out 0 104119 bytes_in 0 104119 station_ip 5.119.176.64 104119 port 44 104119 unique_id port 104124 username avaanna 104124 mac 104124 bytes_out 0 104124 bytes_in 0 104124 station_ip 37.129.152.33 104124 port 21 104124 unique_id port 104124 remote_ip 10.8.1.102 104127 username amir 104127 mac 104127 bytes_out 52648 104127 bytes_in 272366 104127 station_ip 46.225.215.102 104127 port 48 104127 unique_id port 104127 remote_ip 10.8.0.54 104128 username avaanna 104128 mac 104128 bytes_out 0 104128 bytes_in 0 104128 station_ip 37.129.152.33 104128 port 45 104128 unique_id port 104128 remote_ip 10.8.0.138 104129 username arash 104129 kill_reason Another user logged on this global unique id 104129 mac 104129 bytes_out 0 104129 bytes_in 0 104129 station_ip 188.245.88.86 104129 port 49 104129 unique_id port 104129 remote_ip 10.8.0.122 104130 username mohammadmahdi 104130 mac 104130 bytes_out 0 104130 bytes_in 0 104130 station_ip 5.120.118.166 104130 port 43 104130 unique_id port 104130 remote_ip 10.8.0.34 104132 username arash 104132 kill_reason Another user logged on this global unique id 104096 station_ip 83.123.133.154 104096 port 48 104096 unique_id port 104096 remote_ip 10.8.0.6 104098 username forozande 104098 mac 104098 bytes_out 0 104098 bytes_in 0 104098 station_ip 83.123.252.83 104098 port 44 104098 unique_id port 104098 remote_ip 10.8.0.74 104100 username madadi2 104100 mac 104100 bytes_out 734699 104100 bytes_in 1801432 104100 station_ip 5.120.152.194 104100 port 46 104100 unique_id port 104100 remote_ip 10.8.0.26 104102 username ahmadipour 104102 unique_id port 104102 terminate_cause Lost-Carrier 104102 bytes_out 78991209 104102 bytes_in 18519339 104102 station_ip 83.123.50.82 104102 port 15730030 104102 nas_port_type Virtual 104102 remote_ip 5.5.5.48 104103 username hamid 104103 mac 104103 bytes_out 4177130 104103 bytes_in 17686908 104103 station_ip 83.122.133.158 104103 port 45 104103 unique_id port 104103 remote_ip 10.8.0.134 104105 username houshang 104105 mac 104105 bytes_out 5383390 104105 bytes_in 33769920 104105 station_ip 5.119.176.64 104105 port 47 104105 unique_id port 104105 remote_ip 10.8.0.126 104106 username naeimeh 104106 mac 104106 bytes_out 2923419 104106 bytes_in 43354048 104106 station_ip 37.129.54.5 104106 port 44 104106 unique_id port 104106 remote_ip 10.8.0.154 104107 username amir 104107 mac 104107 bytes_out 0 104107 bytes_in 0 104107 station_ip 46.225.215.102 104107 port 48 104107 unique_id port 104107 remote_ip 10.8.0.54 104108 username musa 104108 mac 104108 bytes_out 0 104108 bytes_in 0 104108 station_ip 83.122.149.8 104108 port 43 104108 unique_id port 104108 remote_ip 10.8.0.106 104110 username houshang 104110 kill_reason Another user logged on this global unique id 104110 mac 104110 bytes_out 0 104110 bytes_in 0 104110 station_ip 5.119.176.64 104110 port 44 104110 unique_id port 104110 remote_ip 10.8.0.126 104115 username hoorieh 104115 mac 104115 bytes_out 0 104115 bytes_in 0 104115 station_ip 5.119.179.119 104115 port 47 104115 unique_id port 104115 remote_ip 10.8.0.10 104121 username houshang 104121 mac 104121 bytes_out 0 104121 bytes_in 0 104121 station_ip 5.119.176.64 104121 port 44 104121 unique_id port 104125 username houshang 104125 mac 104125 bytes_out 0 104125 bytes_in 0 104125 station_ip 5.119.176.64 104125 port 43 104125 unique_id port 104125 remote_ip 10.8.0.126 104126 username bcboard 104126 unique_id port 104126 terminate_cause User-Request 104126 bytes_out 22686706 104126 bytes_in 649602608 104126 station_ip 113.203.122.150 104126 port 15730032 104126 nas_port_type Virtual 104126 remote_ip 5.5.5.11 104140 username ahmadipour 104140 unique_id port 104140 terminate_cause Lost-Carrier 104140 bytes_out 227161 104140 bytes_in 5175357 104140 station_ip 83.123.102.218 104140 port 15730038 104140 nas_port_type Virtual 104140 remote_ip 5.5.5.21 104141 username mehdizare 104141 mac 104141 bytes_out 782972 104141 bytes_in 3535322 104141 station_ip 5.119.202.96 104141 port 37 104141 unique_id port 104141 remote_ip 10.8.0.22 104144 username malekpoir 104144 mac 104144 bytes_out 0 104144 bytes_in 0 104144 station_ip 5.120.180.191 104144 port 44 104144 unique_id port 104146 username alihosseini 104146 mac 104146 bytes_out 258949 104146 bytes_in 3846381 104146 station_ip 5.120.177.231 104146 port 44 104146 unique_id port 104146 remote_ip 10.8.0.14 104153 username alihosseini 104153 mac 104153 bytes_out 0 104153 bytes_in 0 104153 station_ip 5.120.177.231 104153 port 44 104153 unique_id port 104153 remote_ip 10.8.0.14 104158 username rezasekonji 104158 mac 104118 username abbasaskari 104118 mac 104118 bytes_out 0 104118 bytes_in 0 104118 station_ip 83.122.232.155 104118 port 45 104118 unique_id port 104118 remote_ip 10.8.0.94 104120 username avaanna 104120 mac 104120 bytes_out 1147271 104120 bytes_in 13280665 104120 station_ip 37.129.152.33 104120 port 43 104120 unique_id port 104120 remote_ip 10.8.0.138 104122 username amir 104122 mac 104122 bytes_out 0 104122 bytes_in 0 104122 station_ip 46.225.215.102 104122 port 44 104122 unique_id port 104122 remote_ip 10.8.0.54 104123 username malekpoir 104123 mac 104123 bytes_out 0 104123 bytes_in 0 104123 station_ip 5.119.52.219 104123 port 47 104123 unique_id port 104123 remote_ip 10.8.0.130 104131 username houshang 104131 kill_reason Another user logged on this global unique id 104131 mac 104131 bytes_out 0 104131 bytes_in 0 104131 station_ip 5.119.176.64 104131 port 47 104131 unique_id port 104131 remote_ip 10.8.0.126 104133 username houshang 104133 mac 104133 bytes_out 0 104133 bytes_in 0 104133 station_ip 5.119.176.64 104133 port 47 104133 unique_id port 104134 username avaanna 104134 mac 104134 bytes_out 765599 104134 bytes_in 9113743 104134 station_ip 83.123.17.121 104134 port 45 104134 unique_id port 104134 remote_ip 10.8.0.138 104136 username arash 104136 mac 104136 bytes_out 0 104136 bytes_in 0 104136 station_ip 188.245.88.86 104136 port 49 104136 unique_id port 104137 username abbasaskari 104137 mac 104137 bytes_out 14519 104137 bytes_in 20045 104137 station_ip 83.122.153.131 104137 port 45 104137 unique_id port 104137 remote_ip 10.8.0.94 104142 username aminvpn 104142 mac 104142 bytes_out 0 104142 bytes_in 0 104142 station_ip 83.123.211.192 104142 port 48 104142 unique_id port 104142 remote_ip 10.8.0.6 104143 username ahmadi 104143 unique_id port 104143 terminate_cause Lost-Carrier 104143 bytes_out 2518995 104143 bytes_in 38216367 104143 station_ip 113.203.114.96 104143 port 15730036 104143 nas_port_type Virtual 104143 remote_ip 5.5.5.18 104148 username mohammadmahdi 104148 mac 104148 bytes_out 1919764 104148 bytes_in 31975721 104148 station_ip 5.120.118.166 104148 port 37 104148 unique_id port 104148 remote_ip 10.8.0.34 104150 username amir 104150 kill_reason Another user logged on this global unique id 104150 mac 104150 bytes_out 0 104150 bytes_in 0 104150 station_ip 46.225.215.102 104150 port 43 104150 unique_id port 104150 remote_ip 10.8.0.54 104151 username mahdiyehalizadeh 104151 mac 104151 bytes_out 1202784 104151 bytes_in 19729161 104151 station_ip 83.123.155.131 104151 port 49 104151 unique_id port 104151 remote_ip 10.8.0.42 104155 username zare 104155 kill_reason Another user logged on this global unique id 104155 mac 104155 bytes_out 0 104155 bytes_in 0 104155 station_ip 37.27.19.227 104155 port 47 104155 unique_id port 104155 remote_ip 10.8.0.150 104156 username mohammadmahdi 104156 mac 104156 bytes_out 597130 104156 bytes_in 4997018 104156 station_ip 5.120.118.166 104156 port 37 104156 unique_id port 104156 remote_ip 10.8.0.34 104157 username amir 104157 mac 104157 bytes_out 0 104157 bytes_in 0 104157 station_ip 46.225.215.102 104157 port 37 104157 unique_id port 104157 remote_ip 10.8.0.54 104167 username arash 104167 mac 104167 bytes_out 2327626 104167 bytes_in 38717845 104167 station_ip 188.245.88.86 104167 port 37 104167 unique_id port 104167 remote_ip 10.8.0.122 104168 username amir 104168 mac 104168 bytes_out 0 104168 bytes_in 0 104168 station_ip 46.225.215.102 104168 port 37 104168 unique_id port 104132 mac 104132 bytes_out 0 104132 bytes_in 0 104132 station_ip 188.245.88.86 104132 port 49 104132 unique_id port 104135 username madadi2 104135 mac 104135 bytes_out 616549 104135 bytes_in 6507426 104135 station_ip 5.119.189.159 104135 port 50 104135 unique_id port 104135 remote_ip 10.8.0.26 104138 username malekpoir 104138 kill_reason Another user logged on this global unique id 104138 mac 104138 bytes_out 0 104138 bytes_in 0 104138 station_ip 5.120.180.191 104138 port 44 104138 unique_id port 104138 remote_ip 10.8.0.130 104139 username mirzaei 104139 kill_reason Another user logged on this global unique id 104139 mac 104139 bytes_out 0 104139 bytes_in 0 104139 station_ip 5.119.120.6 104139 port 42 104139 unique_id port 104145 username abbasaskari 104145 mac 104145 bytes_out 0 104145 bytes_in 0 104145 station_ip 83.122.236.223 104145 port 50 104145 unique_id port 104145 remote_ip 10.8.0.94 104147 username rajaei 104147 mac 104147 bytes_out 0 104147 bytes_in 0 104147 station_ip 89.32.110.217 104147 port 48 104147 unique_id port 104147 remote_ip 10.8.0.142 104149 username aminvpn 104149 unique_id port 104149 terminate_cause User-Request 104149 bytes_out 4805824 104149 bytes_in 32940390 104149 station_ip 5.119.137.18 104149 port 15730023 104149 nas_port_type Virtual 104149 remote_ip 5.5.5.26 104152 username amir 104152 mac 104152 bytes_out 0 104152 bytes_in 0 104152 station_ip 46.225.215.102 104152 port 43 104152 unique_id port 104154 username alihosseini 104154 mac 104154 bytes_out 0 104154 bytes_in 0 104154 station_ip 5.120.177.231 104154 port 21 104154 unique_id port 104154 remote_ip 10.8.1.6 104161 username zare 104161 kill_reason Another user logged on this global unique id 104161 mac 104161 bytes_out 0 104161 bytes_in 0 104161 station_ip 37.27.19.227 104161 port 47 104161 unique_id port 104163 username mammad 104163 kill_reason Relative expiration date has reached 104163 unique_id port 104163 bytes_out 0 104163 bytes_in 0 104163 station_ip 5.119.196.5 104163 port 15730040 104163 nas_port_type Virtual 104164 username hamid 104164 mac 104164 bytes_out 238263 104164 bytes_in 1155758 104164 station_ip 83.122.99.177 104164 port 44 104164 unique_id port 104164 remote_ip 10.8.0.134 104165 username amir 104165 mac 104165 bytes_out 0 104165 bytes_in 0 104165 station_ip 46.225.215.102 104165 port 44 104165 unique_id port 104165 remote_ip 10.8.0.54 104169 username amir 104169 mac 104169 bytes_out 0 104169 bytes_in 0 104169 station_ip 46.225.215.102 104169 port 44 104169 unique_id port 104169 remote_ip 10.8.0.54 104171 username mohammadmahdi 104171 mac 104171 bytes_out 915901 104171 bytes_in 16504431 104171 station_ip 5.120.118.166 104171 port 37 104171 unique_id port 104171 remote_ip 10.8.0.34 104172 username zare 104172 kill_reason Another user logged on this global unique id 104172 mac 104172 bytes_out 0 104172 bytes_in 0 104172 station_ip 37.27.19.227 104172 port 47 104172 unique_id port 104176 username mahdiyehalizadeh 104176 mac 104176 bytes_out 1494210 104176 bytes_in 24714268 104176 station_ip 83.123.83.176 104176 port 44 104176 unique_id port 104176 remote_ip 10.8.0.42 104188 username aminvpn 104188 mac 104188 bytes_out 0 104188 bytes_in 0 104188 station_ip 37.129.192.232 104188 port 44 104188 unique_id port 104188 remote_ip 10.8.0.6 104195 username mirzaei 104195 kill_reason Another user logged on this global unique id 104195 mac 104195 bytes_out 0 104195 bytes_in 0 104195 station_ip 5.119.120.6 104195 port 42 104195 unique_id port 104158 bytes_out 0 104158 bytes_in 0 104158 station_ip 83.123.210.194 104158 port 44 104158 unique_id port 104158 remote_ip 10.8.0.114 104159 username alihosseini 104159 mac 104159 bytes_out 0 104159 bytes_in 0 104159 station_ip 5.120.177.231 104159 port 21 104159 unique_id port 104159 remote_ip 10.8.1.6 104160 username alireza 104160 unique_id port 104160 terminate_cause Lost-Carrier 104160 bytes_out 415900 104160 bytes_in 3541407 104160 station_ip 5.120.84.15 104160 port 15730037 104160 nas_port_type Virtual 104160 remote_ip 5.5.5.19 104162 username mammad 104162 kill_reason Relative expiration date has reached 104162 unique_id port 104162 bytes_out 0 104162 bytes_in 0 104162 station_ip 5.119.196.5 104162 port 15730039 104162 nas_port_type Virtual 104166 username zare 104166 kill_reason Another user logged on this global unique id 104166 mac 104166 bytes_out 0 104166 bytes_in 0 104166 station_ip 37.27.19.227 104166 port 47 104166 unique_id port 104175 username tahmasebi 104175 kill_reason Another user logged on this global unique id 104175 mac 104175 bytes_out 0 104175 bytes_in 0 104175 station_ip 5.120.74.65 104175 port 48 104175 unique_id port 104175 remote_ip 10.8.0.66 104179 username alinezhad 104179 unique_id port 104179 terminate_cause User-Request 104179 bytes_out 3577799 104179 bytes_in 84833366 104179 station_ip 5.202.22.234 104179 port 15730041 104179 nas_port_type Virtual 104179 remote_ip 5.5.5.24 104182 username mirzaei 104182 kill_reason Another user logged on this global unique id 104182 mac 104182 bytes_out 0 104182 bytes_in 0 104182 station_ip 5.119.120.6 104182 port 42 104182 unique_id port 104186 username amir 104186 mac 104186 bytes_out 0 104186 bytes_in 0 104186 station_ip 46.225.215.102 104186 port 44 104186 unique_id port 104186 remote_ip 10.8.0.54 104187 username aminvpn 104187 mac 104187 bytes_out 0 104187 bytes_in 0 104187 station_ip 37.129.192.232 104187 port 37 104187 unique_id port 104187 remote_ip 10.8.0.6 104190 username mohammadmahdi 104190 kill_reason Another user logged on this global unique id 104190 mac 104190 bytes_out 0 104190 bytes_in 0 104190 station_ip 5.120.118.166 104190 port 43 104190 unique_id port 104196 username zare 104196 mac 104196 bytes_out 1061342 104196 bytes_in 15722475 104196 station_ip 37.27.19.227 104196 port 37 104196 unique_id port 104196 remote_ip 10.8.0.150 104198 username tahmasebi 104198 kill_reason Another user logged on this global unique id 104198 mac 104198 bytes_out 0 104198 bytes_in 0 104198 station_ip 5.120.74.65 104198 port 48 104198 unique_id port 104202 username mirzaei 104202 kill_reason Another user logged on this global unique id 104202 mac 104202 bytes_out 0 104202 bytes_in 0 104202 station_ip 5.119.120.6 104202 port 42 104202 unique_id port 104209 username mirzaei 104209 kill_reason Another user logged on this global unique id 104209 mac 104209 bytes_out 0 104209 bytes_in 0 104209 station_ip 5.119.120.6 104209 port 42 104209 unique_id port 104211 username khalili 104211 mac 104211 bytes_out 2002434 104211 bytes_in 13436659 104211 station_ip 5.120.93.246 104211 port 41 104211 unique_id port 104211 remote_ip 10.8.0.78 104213 username mehdizare 104213 mac 104213 bytes_out 7826 104213 bytes_in 8653 104213 station_ip 5.120.87.175 104213 port 41 104213 unique_id port 104213 remote_ip 10.8.0.22 104214 username mehdizare 104214 mac 104214 bytes_out 21331 104214 bytes_in 20671 104214 station_ip 5.120.87.175 104214 port 41 104214 unique_id port 104214 remote_ip 10.8.0.22 104216 username mehdizare 104216 mac 104216 bytes_out 0 104216 bytes_in 0 104168 remote_ip 10.8.0.54 104170 username aminvpn 104170 kill_reason Another user logged on this global unique id 104170 mac 104170 bytes_out 0 104170 bytes_in 0 104170 station_ip 83.123.183.176 104170 port 43 104170 unique_id port 104170 remote_ip 10.8.0.6 104173 username aminvpn 104173 mac 104173 bytes_out 0 104173 bytes_in 0 104173 station_ip 83.123.183.176 104173 port 43 104173 unique_id port 104174 username amir 104174 mac 104174 bytes_out 0 104174 bytes_in 0 104174 station_ip 46.225.215.102 104174 port 43 104174 unique_id port 104174 remote_ip 10.8.0.54 104177 username amir 104177 mac 104177 bytes_out 0 104177 bytes_in 0 104177 station_ip 46.225.215.102 104177 port 43 104177 unique_id port 104177 remote_ip 10.8.0.54 104178 username tahmasebi 104178 kill_reason Another user logged on this global unique id 104178 mac 104178 bytes_out 0 104178 bytes_in 0 104178 station_ip 5.120.74.65 104178 port 48 104178 unique_id port 104180 username amir 104180 mac 104180 bytes_out 0 104180 bytes_in 0 104180 station_ip 46.225.215.102 104180 port 44 104180 unique_id port 104180 remote_ip 10.8.0.54 104181 username mohammadmahdi 104181 mac 104181 bytes_out 1078148 104181 bytes_in 15037901 104181 station_ip 5.120.118.166 104181 port 43 104181 unique_id port 104181 remote_ip 10.8.0.34 104183 username mohammadmahdi 104183 mac 104183 bytes_out 92489 104183 bytes_in 495834 104183 station_ip 5.120.118.166 104183 port 44 104183 unique_id port 104183 remote_ip 10.8.0.34 104184 username mohammadmahdi 104184 kill_reason Another user logged on this global unique id 104184 mac 104184 bytes_out 0 104184 bytes_in 0 104184 station_ip 5.120.118.166 104184 port 43 104184 unique_id port 104184 remote_ip 10.8.0.34 104185 username zare 104185 kill_reason Another user logged on this global unique id 104185 mac 104185 bytes_out 0 104185 bytes_in 0 104185 station_ip 37.27.19.227 104185 port 47 104185 unique_id port 104189 username mirzaei 104189 kill_reason Another user logged on this global unique id 104189 mac 104189 bytes_out 0 104189 bytes_in 0 104189 station_ip 5.119.120.6 104189 port 42 104189 unique_id port 104191 username mohammadmahdi 104191 mac 104191 bytes_out 0 104191 bytes_in 0 104191 station_ip 5.120.118.166 104191 port 43 104191 unique_id port 104192 username aminvpn 104192 mac 104192 bytes_out 2447006 104192 bytes_in 19521875 104192 station_ip 83.123.158.9 104192 port 23 104192 unique_id port 104192 remote_ip 10.8.1.26 104193 username zare 104193 mac 104193 bytes_out 0 104193 bytes_in 0 104193 station_ip 37.27.19.227 104193 port 47 104193 unique_id port 104194 username mirzaei 104194 kill_reason Another user logged on this global unique id 104194 mac 104194 bytes_out 0 104194 bytes_in 0 104194 station_ip 5.119.120.6 104194 port 42 104194 unique_id port 104197 username zare 104197 mac 104197 bytes_out 1416797 104197 bytes_in 18303204 104197 station_ip 37.27.19.227 104197 port 43 104197 unique_id port 104197 remote_ip 10.8.0.150 104200 username mirzaei 104200 kill_reason Another user logged on this global unique id 104200 mac 104200 bytes_out 0 104200 bytes_in 0 104200 station_ip 5.119.120.6 104200 port 42 104200 unique_id port 104201 username tahmasebi 104201 mac 104201 bytes_out 0 104201 bytes_in 0 104201 station_ip 5.120.74.65 104201 port 48 104201 unique_id port 104203 username alireza1 104203 unique_id port 104203 terminate_cause Lost-Carrier 104203 bytes_out 176523 104203 bytes_in 648435 104203 station_ip 5.119.13.88 104203 port 15730042 104203 nas_port_type Virtual 104203 remote_ip 5.5.5.36 104199 username zare 104199 mac 104199 bytes_out 1231704 104199 bytes_in 23775187 104199 station_ip 37.27.19.227 104199 port 37 104199 unique_id port 104199 remote_ip 10.8.0.150 104205 username zare 104205 kill_reason Another user logged on this global unique id 104205 mac 104205 bytes_out 0 104205 bytes_in 0 104205 station_ip 37.27.19.227 104205 port 43 104205 unique_id port 104205 remote_ip 10.8.0.150 104208 username abbasaskari 104208 mac 104208 bytes_out 19106 104208 bytes_in 54986 104208 station_ip 83.122.161.199 104208 port 43 104208 unique_id port 104208 remote_ip 10.8.0.94 104212 username mehdizare 104212 mac 104212 bytes_out 1160236 104212 bytes_in 3310136 104212 station_ip 5.119.202.96 104212 port 45 104212 unique_id port 104212 remote_ip 10.8.0.22 104215 username mehdizare 104215 mac 104215 bytes_out 0 104215 bytes_in 0 104215 station_ip 5.120.87.175 104215 port 42 104215 unique_id port 104215 remote_ip 10.8.0.22 104219 username mehdizare 104219 mac 104219 bytes_out 70047 104219 bytes_in 82235 104219 station_ip 5.120.87.175 104219 port 43 104219 unique_id port 104219 remote_ip 10.8.0.22 104222 username mehdizare 104222 mac 104222 bytes_out 0 104222 bytes_in 0 104222 station_ip 5.114.115.78 104222 port 21 104222 unique_id port 104222 remote_ip 10.8.1.22 104224 username mehdizare 104224 mac 104224 bytes_out 14754 104224 bytes_in 29279 104224 station_ip 5.119.240.240 104224 port 44 104224 unique_id port 104224 remote_ip 10.8.0.22 104229 username askari 104229 mac 104229 bytes_out 0 104229 bytes_in 0 104229 station_ip 5.119.250.23 104229 port 43 104229 unique_id port 104231 username mehdizare 104231 mac 104231 bytes_out 9158 104231 bytes_in 14026 104231 station_ip 5.119.240.240 104231 port 21 104231 unique_id port 104231 remote_ip 10.8.1.22 104233 username houshang 104233 mac 104233 bytes_out 0 104233 bytes_in 0 104233 station_ip 5.119.176.64 104233 port 43 104233 unique_id port 104233 remote_ip 10.8.0.126 104234 username mehdizare 104234 mac 104234 bytes_out 39747 104234 bytes_in 24755 104234 station_ip 5.119.240.240 104234 port 44 104234 unique_id port 104234 remote_ip 10.8.0.22 104235 username mehdizare 104235 kill_reason Maximum check online fails reached 104235 mac 104235 bytes_out 0 104235 bytes_in 0 104235 station_ip 5.119.240.240 104235 port 43 104235 unique_id port 104238 username musa 104238 mac 104238 bytes_out 1084501 104238 bytes_in 5477744 104238 station_ip 37.129.226.112 104238 port 41 104238 unique_id port 104238 remote_ip 10.8.0.106 104240 username houshang 104240 mac 104240 bytes_out 393289 104240 bytes_in 1910370 104240 station_ip 5.119.176.64 104240 port 45 104240 unique_id port 104240 remote_ip 10.8.0.126 104242 username arabpour 104242 unique_id port 104242 terminate_cause User-Request 104242 bytes_out 100157 104242 bytes_in 1034586 104242 station_ip 93.110.210.7 104242 port 15730045 104242 nas_port_type Virtual 104242 remote_ip 5.5.5.9 104243 username alirr 104243 unique_id port 104243 terminate_cause User-Request 104243 bytes_out 28273433 104243 bytes_in 687244255 104243 station_ip 5.134.141.239 104243 port 15730043 104243 nas_port_type Virtual 104243 remote_ip 5.5.5.255 104246 username mehdizare 104246 mac 104246 bytes_out 0 104246 bytes_in 0 104246 station_ip 5.119.240.240 104246 port 41 104246 unique_id port 104246 remote_ip 10.8.0.22 104248 username mehdizare 104248 mac 104248 bytes_out 4793 104248 bytes_in 8947 104248 station_ip 5.119.240.240 104248 port 41 104248 unique_id port 104204 username mirzaei 104204 kill_reason Another user logged on this global unique id 104204 mac 104204 bytes_out 0 104204 bytes_in 0 104204 station_ip 5.119.120.6 104204 port 42 104204 unique_id port 104206 username zare 104206 mac 104206 bytes_out 0 104206 bytes_in 0 104206 station_ip 37.27.19.227 104206 port 43 104206 unique_id port 104207 username mirzaei 104207 kill_reason Another user logged on this global unique id 104207 mac 104207 bytes_out 0 104207 bytes_in 0 104207 station_ip 5.119.120.6 104207 port 42 104207 unique_id port 104210 username mirzaei 104210 mac 104210 bytes_out 0 104210 bytes_in 0 104210 station_ip 5.119.120.6 104210 port 42 104210 unique_id port 104216 station_ip 5.120.87.175 104216 port 42 104216 unique_id port 104216 remote_ip 10.8.0.22 104217 username musa 104217 mac 104217 bytes_out 0 104217 bytes_in 0 104217 station_ip 83.122.8.40 104217 port 41 104217 unique_id port 104217 remote_ip 10.8.0.106 104218 username musa 104218 mac 104218 bytes_out 24076 104218 bytes_in 30250 104218 station_ip 83.122.8.40 104218 port 42 104218 unique_id port 104218 remote_ip 10.8.0.106 104223 username mehdizare 104223 mac 104223 bytes_out 8695 104223 bytes_in 15006 104223 station_ip 5.119.240.240 104223 port 41 104223 unique_id port 104223 remote_ip 10.8.0.22 104226 username houshang 104226 mac 104226 bytes_out 0 104226 bytes_in 0 104226 station_ip 5.119.176.64 104226 port 23 104226 unique_id port 104226 remote_ip 10.8.1.114 104227 username musa 104227 mac 104227 bytes_out 1999868 104227 bytes_in 4309473 104227 station_ip 37.129.159.120 104227 port 41 104227 unique_id port 104227 remote_ip 10.8.0.106 104228 username mehdizare 104228 mac 104228 bytes_out 0 104228 bytes_in 0 104228 station_ip 5.119.240.240 104228 port 21 104228 unique_id port 104228 remote_ip 10.8.1.22 104236 username mehdizare 104236 mac 104236 bytes_out 7517 104236 bytes_in 14396 104236 station_ip 5.119.240.240 104236 port 21 104236 unique_id port 104236 remote_ip 10.8.1.22 104244 username alinezhad 104244 unique_id port 104244 terminate_cause User-Request 104244 bytes_out 2722126 104244 bytes_in 95662320 104244 station_ip 5.202.29.164 104244 port 15730044 104244 nas_port_type Virtual 104244 remote_ip 5.5.5.6 104245 username avaanna 104245 mac 104245 bytes_out 2327176 104245 bytes_in 31816892 104245 station_ip 37.129.2.233 104245 port 42 104245 unique_id port 104245 remote_ip 10.8.0.138 104249 username mehdizare 104249 mac 104249 bytes_out 8162 104249 bytes_in 12959 104249 station_ip 5.119.240.240 104249 port 48 104249 unique_id port 104249 remote_ip 10.8.0.22 104251 username forozande 104251 mac 104251 bytes_out 1695432 104251 bytes_in 29328969 104251 station_ip 113.203.77.53 104251 port 45 104251 unique_id port 104251 remote_ip 10.8.0.74 104252 username avaanna 104252 mac 104252 bytes_out 1613569 104252 bytes_in 20909832 104252 station_ip 37.129.2.233 104252 port 42 104252 unique_id port 104252 remote_ip 10.8.0.138 104260 username abbasaskari 104260 mac 104260 bytes_out 3055980 104260 bytes_in 42281027 104260 station_ip 83.122.193.147 104260 port 44 104260 unique_id port 104260 remote_ip 10.8.0.94 104262 username forozande 104262 mac 104262 bytes_out 0 104262 bytes_in 0 104262 station_ip 37.129.99.15 104262 port 47 104262 unique_id port 104263 username malekpoir 104263 kill_reason Another user logged on this global unique id 104263 mac 104263 bytes_out 0 104263 bytes_in 0 104263 station_ip 5.120.50.98 104263 port 45 104220 username mehdizare 104220 mac 104220 bytes_out 0 104220 bytes_in 0 104220 station_ip 5.114.115.78 104220 port 21 104220 unique_id port 104220 remote_ip 10.8.1.22 104221 username askari 104221 mac 104221 bytes_out 1174489 104221 bytes_in 11772553 104221 station_ip 5.119.64.233 104221 port 41 104221 unique_id port 104221 remote_ip 10.8.0.38 104225 username askari 104225 kill_reason Another user logged on this global unique id 104225 mac 104225 bytes_out 0 104225 bytes_in 0 104225 station_ip 5.119.250.23 104225 port 43 104225 unique_id port 104225 remote_ip 10.8.0.38 104230 username mehdizare 104230 mac 104230 bytes_out 13099 104230 bytes_in 20601 104230 station_ip 5.119.240.240 104230 port 21 104230 unique_id port 104230 remote_ip 10.8.1.22 104232 username abbasaskari 104232 mac 104232 bytes_out 0 104232 bytes_in 0 104232 station_ip 83.122.193.147 104232 port 41 104232 unique_id port 104232 remote_ip 10.8.0.94 104237 username mehdizare 104237 mac 104237 bytes_out 25078 104237 bytes_in 24343 104237 station_ip 5.119.240.240 104237 port 44 104237 unique_id port 104237 remote_ip 10.8.0.22 104239 username mehdizare 104239 mac 104239 bytes_out 0 104239 bytes_in 0 104239 station_ip 5.119.240.240 104239 port 21 104239 unique_id port 104239 remote_ip 10.8.1.22 104241 username mehdizare 104241 mac 104241 bytes_out 0 104241 bytes_in 0 104241 station_ip 5.119.240.240 104241 port 41 104241 unique_id port 104241 remote_ip 10.8.0.22 104247 username mehdizare 104247 mac 104247 bytes_out 17497 104247 bytes_in 28919 104247 station_ip 5.119.240.240 104247 port 41 104247 unique_id port 104247 remote_ip 10.8.0.22 104250 username mehdizare 104250 mac 104250 bytes_out 0 104250 bytes_in 0 104250 station_ip 5.119.240.240 104250 port 41 104250 unique_id port 104250 remote_ip 10.8.0.22 104255 username mehdizare 104255 mac 104255 bytes_out 12941 104255 bytes_in 16644 104255 station_ip 5.119.240.240 104255 port 42 104255 unique_id port 104255 remote_ip 10.8.0.22 104261 username aminvpn 104261 unique_id port 104261 terminate_cause User-Request 104261 bytes_out 162291 104261 bytes_in 1263195 104261 station_ip 31.57.131.152 104261 port 15730047 104261 nas_port_type Virtual 104261 remote_ip 5.5.5.12 104265 username musa 104265 mac 104265 bytes_out 327328 104265 bytes_in 2376245 104265 station_ip 113.203.51.72 104265 port 23 104265 unique_id port 104265 remote_ip 10.8.1.78 104267 username musa 104267 mac 104267 bytes_out 130532 104267 bytes_in 104402 104267 station_ip 113.203.51.72 104267 port 23 104267 unique_id port 104267 remote_ip 10.8.1.78 104272 username mehdizare 104272 mac 104272 bytes_out 39913 104272 bytes_in 55747 104272 station_ip 5.119.240.240 104272 port 49 104272 unique_id port 104272 remote_ip 10.8.0.22 104274 username mehdizare 104274 mac 104274 bytes_out 22892 104274 bytes_in 24972 104274 station_ip 5.119.240.240 104274 port 49 104274 unique_id port 104274 remote_ip 10.8.0.22 104276 username forozande 104276 mac 104276 bytes_out 2797823 104276 bytes_in 43984009 104276 station_ip 83.122.8.173 104276 port 47 104276 unique_id port 104276 remote_ip 10.8.0.74 104281 username abbasaskari 104281 mac 104281 bytes_out 0 104281 bytes_in 0 104281 station_ip 83.122.250.207 104281 port 51 104281 unique_id port 104281 remote_ip 10.8.0.94 104282 username alihosseini 104282 mac 104282 bytes_out 0 104282 bytes_in 0 104282 station_ip 5.119.129.172 104282 port 49 104282 unique_id port 104282 remote_ip 10.8.0.14 104248 remote_ip 10.8.0.22 104253 username mehdizare 104253 mac 104253 bytes_out 9465 104253 bytes_in 12350 104253 station_ip 5.119.240.240 104253 port 48 104253 unique_id port 104253 remote_ip 10.8.0.22 104254 username musa 104254 mac 104254 bytes_out 678184 104254 bytes_in 2865496 104254 station_ip 113.203.51.72 104254 port 47 104254 unique_id port 104254 remote_ip 10.8.0.106 104256 username mirzaei 104256 mac 104256 bytes_out 0 104256 bytes_in 0 104256 station_ip 5.119.247.55 104256 port 47 104256 unique_id port 104256 remote_ip 10.8.0.30 104257 username forozande 104257 mac 104257 bytes_out 220575 104257 bytes_in 1200050 104257 station_ip 37.129.99.15 104257 port 42 104257 unique_id port 104257 remote_ip 10.8.0.74 104258 username musa 104258 mac 104258 bytes_out 0 104258 bytes_in 0 104258 station_ip 113.203.51.72 104258 port 45 104258 unique_id port 104258 remote_ip 10.8.0.106 104259 username forozande 104259 kill_reason Another user logged on this global unique id 104259 mac 104259 bytes_out 0 104259 bytes_in 0 104259 station_ip 37.129.99.15 104259 port 47 104259 unique_id port 104259 remote_ip 10.8.0.74 104264 username musa 104264 mac 104264 bytes_out 0 104264 bytes_in 0 104264 station_ip 113.203.51.72 104264 port 42 104264 unique_id port 104264 remote_ip 10.8.0.106 104266 username malekpoir 104266 kill_reason Another user logged on this global unique id 104266 mac 104266 bytes_out 0 104266 bytes_in 0 104266 station_ip 5.120.50.98 104266 port 45 104266 unique_id port 104270 username mehdizare 104270 mac 104270 bytes_out 0 104270 bytes_in 0 104270 station_ip 5.119.240.240 104270 port 42 104270 unique_id port 104270 remote_ip 10.8.0.22 104271 username alipour 104271 kill_reason Another user logged on this global unique id 104271 mac 104271 bytes_out 0 104271 bytes_in 0 104271 station_ip 83.123.35.163 104271 port 44 104271 unique_id port 104271 remote_ip 10.8.0.70 104273 username aminvpn 104273 mac 104273 bytes_out 883984 104273 bytes_in 6197662 104273 station_ip 83.123.251.188 104273 port 42 104273 unique_id port 104273 remote_ip 10.8.0.6 104277 username alihosseini 104277 mac 104277 bytes_out 2148784 104277 bytes_in 20117544 104277 station_ip 5.119.129.172 104277 port 21 104277 unique_id port 104277 remote_ip 10.8.1.6 104283 username hashtadani 104283 unique_id port 104283 terminate_cause User-Request 104283 bytes_out 108904 104283 bytes_in 811991 104283 station_ip 113.203.58.73 104283 port 15730048 104283 nas_port_type Virtual 104283 remote_ip 5.5.5.5 104284 username mehdizare 104284 mac 104284 bytes_out 0 104284 bytes_in 0 104284 station_ip 5.119.240.240 104284 port 42 104284 unique_id port 104284 remote_ip 10.8.0.22 104293 username abbasaskari 104293 mac 104293 bytes_out 1046446 104293 bytes_in 6705751 104293 station_ip 113.203.98.137 104293 port 21 104293 unique_id port 104293 remote_ip 10.8.1.58 104294 username abbasaskari 104294 mac 104294 bytes_out 0 104294 bytes_in 0 104294 station_ip 113.203.98.137 104294 port 21 104294 unique_id port 104294 remote_ip 10.8.1.58 104295 username alireza1 104295 unique_id port 104295 terminate_cause Lost-Carrier 104295 bytes_out 1492324 104295 bytes_in 20445158 104295 station_ip 5.119.13.88 104295 port 15730046 104295 nas_port_type Virtual 104295 remote_ip 5.5.5.10 104297 username abbasaskari 104297 mac 104297 bytes_out 194483 104297 bytes_in 1250317 104297 station_ip 113.203.98.137 104297 port 21 104297 unique_id port 104297 remote_ip 10.8.1.58 104302 username hashtadani 104302 unique_id port 104263 unique_id port 104263 remote_ip 10.8.0.130 104268 username mehdizare 104268 mac 104268 bytes_out 95207 104268 bytes_in 192815 104268 station_ip 5.119.240.240 104268 port 21 104268 unique_id port 104268 remote_ip 10.8.1.22 104269 username aminvpn 104269 mac 104269 bytes_out 0 104269 bytes_in 0 104269 station_ip 83.123.251.188 104269 port 47 104269 unique_id port 104269 remote_ip 10.8.0.6 104275 username forozande 104275 mac 104275 bytes_out 0 104275 bytes_in 0 104275 station_ip 83.122.8.173 104275 port 23 104275 unique_id port 104275 remote_ip 10.8.1.62 104278 username alihosseini 104278 kill_reason Maximum check online fails reached 104278 mac 104278 bytes_out 0 104278 bytes_in 0 104278 station_ip 5.119.129.172 104278 port 47 104278 unique_id port 104279 username abbasaskari 104279 mac 104279 bytes_out 0 104279 bytes_in 0 104279 station_ip 83.122.250.207 104279 port 50 104279 unique_id port 104279 remote_ip 10.8.0.94 104280 username abbasaskari 104280 mac 104280 bytes_out 0 104280 bytes_in 0 104280 station_ip 83.122.250.207 104280 port 50 104280 unique_id port 104280 remote_ip 10.8.0.94 104287 username forozande 104287 mac 104287 bytes_out 332257 104287 bytes_in 2421600 104287 station_ip 37.129.53.231 104287 port 23 104287 unique_id port 104287 remote_ip 10.8.1.62 104290 username zare 104290 mac 104290 bytes_out 0 104290 bytes_in 0 104290 station_ip 94.183.214.14 104290 port 42 104290 unique_id port 104290 remote_ip 10.8.0.150 104296 username afarin1 104296 mac 104296 bytes_out 2183955 104296 bytes_in 8304189 104296 station_ip 31.57.210.78 104296 port 46 104296 unique_id port 104296 remote_ip 10.8.0.146 104298 username afarin1 104298 mac 104298 bytes_out 0 104298 bytes_in 0 104298 station_ip 31.57.210.78 104298 port 46 104298 unique_id port 104298 remote_ip 10.8.0.146 104300 username ahmadipour 104300 unique_id port 104300 terminate_cause Lost-Carrier 104300 bytes_out 274311 104300 bytes_in 7332951 104300 station_ip 83.123.79.86 104300 port 15730050 104300 nas_port_type Virtual 104300 remote_ip 5.5.5.254 104304 username malekpoir 104304 mac 104304 bytes_out 0 104304 bytes_in 0 104304 station_ip 5.120.50.98 104304 port 45 104304 unique_id port 104306 username avaanna 104306 mac 104306 bytes_out 0 104306 bytes_in 0 104306 station_ip 37.129.2.233 104306 port 41 104306 unique_id port 104306 remote_ip 10.8.0.138 104309 username mehdizare 104309 mac 104309 bytes_out 0 104309 bytes_in 0 104309 station_ip 5.119.240.240 104309 port 49 104309 unique_id port 104309 remote_ip 10.8.0.22 104315 username aminvpn 104315 mac 104315 bytes_out 0 104315 bytes_in 0 104315 station_ip 83.122.113.36 104315 port 42 104315 unique_id port 104315 remote_ip 10.8.0.6 104317 username avaanna 104317 mac 104317 bytes_out 0 104317 bytes_in 0 104317 station_ip 37.129.148.250 104317 port 50 104317 unique_id port 104317 remote_ip 10.8.0.138 104318 username aminvpn 104318 mac 104318 bytes_out 90221 104318 bytes_in 191996 104318 station_ip 83.122.113.36 104318 port 21 104318 unique_id port 104318 remote_ip 10.8.1.26 104321 username aminvpn 104321 mac 104321 bytes_out 20453 104321 bytes_in 20629 104321 station_ip 83.122.113.36 104321 port 21 104321 unique_id port 104321 remote_ip 10.8.1.26 104328 username zare 104328 mac 104328 bytes_out 0 104328 bytes_in 0 104328 station_ip 94.183.214.14 104328 port 23 104328 unique_id port 104328 remote_ip 10.8.1.110 104331 username amir 104285 username mehdizare 104285 mac 104285 bytes_out 0 104285 bytes_in 0 104285 station_ip 5.119.240.240 104285 port 50 104285 unique_id port 104285 remote_ip 10.8.0.22 104286 username alipour 104286 mac 104286 bytes_out 0 104286 bytes_in 0 104286 station_ip 83.123.35.163 104286 port 44 104286 unique_id port 104288 username zare 104288 mac 104288 bytes_out 0 104288 bytes_in 0 104288 station_ip 94.183.214.14 104288 port 49 104288 unique_id port 104288 remote_ip 10.8.0.150 104289 username mehdizare 104289 mac 104289 bytes_out 7939 104289 bytes_in 11007 104289 station_ip 5.119.240.240 104289 port 24 104289 unique_id port 104289 remote_ip 10.8.1.22 104291 username mehdizare 104291 mac 104291 bytes_out 0 104291 bytes_in 0 104291 station_ip 5.119.240.240 104291 port 23 104291 unique_id port 104291 remote_ip 10.8.1.22 104292 username alirr 104292 unique_id port 104292 terminate_cause User-Request 104292 bytes_out 6689094 104292 bytes_in 151317422 104292 station_ip 5.200.111.54 104292 port 15730049 104292 nas_port_type Virtual 104292 remote_ip 5.5.5.253 104299 username mehdizare 104299 mac 104299 bytes_out 0 104299 bytes_in 0 104299 station_ip 5.119.240.240 104299 port 42 104299 unique_id port 104299 remote_ip 10.8.0.22 104301 username mehdizare 104301 mac 104301 bytes_out 8573 104301 bytes_in 11534 104301 station_ip 5.119.240.240 104301 port 46 104301 unique_id port 104301 remote_ip 10.8.0.22 104303 username zare 104303 mac 104303 bytes_out 476896 104303 bytes_in 985460 104303 station_ip 94.183.214.14 104303 port 44 104303 unique_id port 104303 remote_ip 10.8.0.150 104305 username mehdizare 104305 mac 104305 bytes_out 0 104305 bytes_in 0 104305 station_ip 5.119.240.240 104305 port 42 104305 unique_id port 104305 remote_ip 10.8.0.22 104307 username mehdizare 104307 kill_reason Maximum check online fails reached 104307 mac 104307 bytes_out 0 104307 bytes_in 0 104307 station_ip 5.119.240.240 104307 port 45 104307 unique_id port 104312 username mehdizare 104312 mac 104312 bytes_out 0 104312 bytes_in 0 104312 station_ip 5.119.240.240 104312 port 41 104312 unique_id port 104312 remote_ip 10.8.0.22 104314 username forozande 104314 mac 104314 bytes_out 0 104314 bytes_in 0 104314 station_ip 83.122.252.199 104314 port 21 104314 unique_id port 104314 remote_ip 10.8.1.62 104316 username avaanna 104316 mac 104316 bytes_out 0 104316 bytes_in 0 104316 station_ip 37.129.148.250 104316 port 50 104316 unique_id port 104316 remote_ip 10.8.0.138 104323 username forozande 104323 mac 104323 bytes_out 0 104323 bytes_in 0 104323 station_ip 113.203.21.41 104323 port 23 104323 unique_id port 104323 remote_ip 10.8.1.62 104324 username avaanna 104324 mac 104324 bytes_out 24463 104324 bytes_in 38157 104324 station_ip 37.129.148.250 104324 port 24 104324 unique_id port 104324 remote_ip 10.8.1.102 104326 username zare 104326 mac 104326 bytes_out 0 104326 bytes_in 0 104326 station_ip 94.183.214.14 104326 port 21 104326 unique_id port 104326 remote_ip 10.8.1.110 104327 username zare 104327 mac 104327 bytes_out 0 104327 bytes_in 0 104327 station_ip 94.183.214.14 104327 port 42 104327 unique_id port 104327 remote_ip 10.8.0.150 104329 username rajaei 104329 mac 104329 bytes_out 2432716 104329 bytes_in 25334714 104329 station_ip 37.137.25.114 104329 port 51 104329 unique_id port 104329 remote_ip 10.8.0.142 104334 username afarin1 104334 mac 104334 bytes_out 974982 104302 terminate_cause Lost-Carrier 104302 bytes_out 277258 104302 bytes_in 4162015 104302 station_ip 113.203.58.73 104302 port 15730051 104302 nas_port_type Virtual 104302 remote_ip 5.5.5.255 104308 username zare 104308 mac 104308 bytes_out 0 104308 bytes_in 0 104308 station_ip 94.183.214.14 104308 port 42 104308 unique_id port 104308 remote_ip 10.8.0.150 104310 username forozande 104310 mac 104310 bytes_out 0 104310 bytes_in 0 104310 station_ip 37.129.167.128 104310 port 21 104310 unique_id port 104310 remote_ip 10.8.1.62 104311 username mehdizare 104311 mac 104311 bytes_out 0 104311 bytes_in 0 104311 station_ip 5.119.240.240 104311 port 41 104311 unique_id port 104311 remote_ip 10.8.0.22 104313 username mehdizare 104313 mac 104313 bytes_out 2207 104313 bytes_in 4567 104313 station_ip 5.119.240.240 104313 port 49 104313 unique_id port 104313 remote_ip 10.8.0.22 104319 username mehdizare 104319 mac 104319 bytes_out 19233 104319 bytes_in 22459 104319 station_ip 5.119.240.240 104319 port 41 104319 unique_id port 104319 remote_ip 10.8.0.22 104320 username avaanna 104320 mac 104320 bytes_out 0 104320 bytes_in 0 104320 station_ip 37.129.148.250 104320 port 50 104320 unique_id port 104320 remote_ip 10.8.0.138 104322 username zare 104322 mac 104322 bytes_out 0 104322 bytes_in 0 104322 station_ip 94.183.214.14 104322 port 42 104322 unique_id port 104322 remote_ip 10.8.0.150 104325 username zare 104325 mac 104325 bytes_out 0 104325 bytes_in 0 104325 station_ip 94.183.214.14 104325 port 21 104325 unique_id port 104325 remote_ip 10.8.1.110 104330 username zare 104330 mac 104330 bytes_out 0 104330 bytes_in 0 104330 station_ip 94.183.214.14 104330 port 51 104330 unique_id port 104330 remote_ip 10.8.0.150 104332 username aminvpn 104332 mac 104332 bytes_out 0 104332 bytes_in 0 104332 station_ip 83.122.113.36 104332 port 50 104332 unique_id port 104332 remote_ip 10.8.0.6 104345 username zare 104345 mac 104345 bytes_out 0 104345 bytes_in 0 104345 station_ip 94.183.214.14 104345 port 51 104345 unique_id port 104345 remote_ip 10.8.0.150 104347 username avaanna 104347 mac 104347 bytes_out 0 104347 bytes_in 0 104347 station_ip 37.129.148.250 104347 port 41 104347 unique_id port 104347 remote_ip 10.8.0.138 104349 username amir 104349 mac 104349 bytes_out 0 104349 bytes_in 0 104349 station_ip 46.225.208.43 104349 port 41 104349 unique_id port 104349 remote_ip 10.8.0.54 104350 username amir 104350 mac 104350 bytes_out 0 104350 bytes_in 0 104350 station_ip 46.225.208.43 104350 port 41 104350 unique_id port 104350 remote_ip 10.8.0.54 104357 username amir 104357 mac 104357 bytes_out 0 104357 bytes_in 0 104357 station_ip 46.225.208.43 104357 port 41 104357 unique_id port 104357 remote_ip 10.8.0.54 104358 username mehdizare 104358 mac 104358 bytes_out 0 104358 bytes_in 0 104358 station_ip 5.119.240.240 104358 port 50 104358 unique_id port 104358 remote_ip 10.8.0.22 104360 username zare 104360 mac 104360 bytes_out 0 104360 bytes_in 0 104360 station_ip 94.183.214.14 104360 port 42 104360 unique_id port 104360 remote_ip 10.8.0.150 104361 username amir 104361 kill_reason Maximum check online fails reached 104361 mac 104361 bytes_out 0 104361 bytes_in 0 104361 station_ip 46.225.208.43 104361 port 41 104361 unique_id port 104365 username jamali 104365 mac 104365 bytes_out 0 104365 bytes_in 0 104365 station_ip 5.119.0.221 104365 port 49 104331 mac 104331 bytes_out 0 104331 bytes_in 0 104331 station_ip 46.225.208.43 104331 port 21 104331 unique_id port 104331 remote_ip 10.8.1.34 104333 username amir 104333 mac 104333 bytes_out 79377 104333 bytes_in 466539 104333 station_ip 46.225.208.43 104333 port 52 104333 unique_id port 104333 remote_ip 10.8.0.54 104335 username afarin1 104335 mac 104335 bytes_out 0 104335 bytes_in 0 104335 station_ip 31.57.210.78 104335 port 46 104335 unique_id port 104335 remote_ip 10.8.0.146 104339 username mehdizare 104339 mac 104339 bytes_out 30535 104339 bytes_in 47362 104339 station_ip 5.119.240.240 104339 port 41 104339 unique_id port 104339 remote_ip 10.8.0.22 104342 username avaanna 104342 mac 104342 bytes_out 0 104342 bytes_in 0 104342 station_ip 37.129.148.250 104342 port 41 104342 unique_id port 104342 remote_ip 10.8.0.138 104343 username avaanna 104343 mac 104343 bytes_out 0 104343 bytes_in 0 104343 station_ip 37.129.148.250 104343 port 53 104343 unique_id port 104343 remote_ip 10.8.0.138 104348 username mohammadmahdi 104348 mac 104348 bytes_out 0 104348 bytes_in 0 104348 station_ip 5.119.216.24 104348 port 49 104348 unique_id port 104348 remote_ip 10.8.0.34 104351 username mehdizare 104351 mac 104351 bytes_out 10763 104351 bytes_in 13762 104351 station_ip 5.119.240.240 104351 port 46 104351 unique_id port 104351 remote_ip 10.8.0.22 104352 username jamali 104352 mac 104352 bytes_out 37227 104352 bytes_in 47195 104352 station_ip 5.119.0.221 104352 port 52 104352 unique_id port 104352 remote_ip 10.8.0.62 104353 username mehdizare 104353 mac 104353 bytes_out 0 104353 bytes_in 0 104353 station_ip 5.119.240.240 104353 port 46 104353 unique_id port 104353 remote_ip 10.8.0.22 104356 username amir 104356 mac 104356 bytes_out 0 104356 bytes_in 0 104356 station_ip 46.225.208.43 104356 port 41 104356 unique_id port 104356 remote_ip 10.8.0.54 104359 username zare 104359 mac 104359 bytes_out 0 104359 bytes_in 0 104359 station_ip 94.183.214.14 104359 port 42 104359 unique_id port 104359 remote_ip 10.8.0.150 104362 username mehdizare 104362 mac 104362 bytes_out 0 104362 bytes_in 0 104362 station_ip 5.119.240.240 104362 port 42 104362 unique_id port 104362 remote_ip 10.8.0.22 104370 username mehdizare 104370 mac 104370 bytes_out 0 104370 bytes_in 0 104370 station_ip 5.119.240.240 104370 port 42 104370 unique_id port 104370 remote_ip 10.8.0.22 104373 username jamali 104373 mac 104373 bytes_out 0 104373 bytes_in 0 104373 station_ip 5.119.0.221 104373 port 49 104373 unique_id port 104373 remote_ip 10.8.0.62 104383 username zare 104383 kill_reason Maximum check online fails reached 104383 mac 104383 bytes_out 0 104383 bytes_in 0 104383 station_ip 94.183.214.14 104383 port 42 104383 unique_id port 104387 username zare 104387 mac 104387 bytes_out 0 104387 bytes_in 0 104387 station_ip 94.183.214.14 104387 port 53 104387 unique_id port 104387 remote_ip 10.8.0.150 104388 username zare 104388 mac 104388 bytes_out 0 104388 bytes_in 0 104388 station_ip 94.183.214.14 104388 port 53 104388 unique_id port 104388 remote_ip 10.8.0.150 104389 username jamali 104389 mac 104389 bytes_out 0 104389 bytes_in 0 104389 station_ip 5.119.0.221 104389 port 49 104389 unique_id port 104389 remote_ip 10.8.0.62 104390 username ahmadi 104390 unique_id port 104390 terminate_cause User-Request 104390 bytes_out 19907 104390 bytes_in 66710 104390 station_ip 113.203.25.187 104334 bytes_in 13568234 104334 station_ip 31.57.210.78 104334 port 46 104334 unique_id port 104334 remote_ip 10.8.0.146 104336 username amir 104336 mac 104336 bytes_out 0 104336 bytes_in 0 104336 station_ip 46.225.208.43 104336 port 52 104336 unique_id port 104336 remote_ip 10.8.0.54 104337 username jamali 104337 mac 104337 bytes_out 508349 104337 bytes_in 4328649 104337 station_ip 5.119.0.221 104337 port 49 104337 unique_id port 104337 remote_ip 10.8.0.62 104338 username amir 104338 mac 104338 bytes_out 0 104338 bytes_in 0 104338 station_ip 46.225.208.43 104338 port 46 104338 unique_id port 104338 remote_ip 10.8.0.54 104340 username avaanna 104340 mac 104340 bytes_out 32184 104340 bytes_in 46818 104340 station_ip 37.129.148.250 104340 port 42 104340 unique_id port 104340 remote_ip 10.8.0.138 104341 username amir 104341 mac 104341 bytes_out 0 104341 bytes_in 0 104341 station_ip 46.225.208.43 104341 port 42 104341 unique_id port 104341 remote_ip 10.8.0.54 104344 username aminvpn 104344 mac 104344 bytes_out 77818 104344 bytes_in 296973 104344 station_ip 83.122.113.36 104344 port 50 104344 unique_id port 104344 remote_ip 10.8.0.6 104346 username amir 104346 mac 104346 bytes_out 0 104346 bytes_in 0 104346 station_ip 46.225.208.43 104346 port 42 104346 unique_id port 104346 remote_ip 10.8.0.54 104354 username jamali 104354 mac 104354 bytes_out 0 104354 bytes_in 0 104354 station_ip 5.119.0.221 104354 port 49 104354 unique_id port 104354 remote_ip 10.8.0.62 104355 username amir 104355 mac 104355 bytes_out 479404 104355 bytes_in 2533247 104355 station_ip 46.225.208.43 104355 port 41 104355 unique_id port 104355 remote_ip 10.8.0.54 104363 username amir 104363 mac 104363 bytes_out 53200 104363 bytes_in 250768 104363 station_ip 46.225.208.43 104363 port 23 104363 unique_id port 104363 remote_ip 10.8.1.34 104364 username avaanna 104364 mac 104364 bytes_out 189774 104364 bytes_in 2000692 104364 station_ip 37.129.148.250 104364 port 21 104364 unique_id port 104364 remote_ip 10.8.1.102 104366 username hashtadani 104366 unique_id port 104366 terminate_cause User-Request 104366 bytes_out 444257 104366 bytes_in 3541006 104366 station_ip 5.202.10.219 104366 port 15730053 104366 nas_port_type Virtual 104366 remote_ip 5.5.5.253 104371 username hashtadani 104371 unique_id port 104371 terminate_cause User-Request 104371 bytes_out 36379 104371 bytes_in 492330 104371 station_ip 5.202.10.219 104371 port 15730055 104371 nas_port_type Virtual 104371 remote_ip 5.5.5.254 104374 username zare 104374 mac 104374 bytes_out 443775 104374 bytes_in 1404159 104374 station_ip 94.183.214.14 104374 port 50 104374 unique_id port 104374 remote_ip 10.8.0.150 104375 username jamali 104375 mac 104375 bytes_out 0 104375 bytes_in 0 104375 station_ip 5.119.0.221 104375 port 42 104375 unique_id port 104375 remote_ip 10.8.0.62 104377 username zare 104377 mac 104377 bytes_out 0 104377 bytes_in 0 104377 station_ip 94.183.214.14 104377 port 51 104377 unique_id port 104377 remote_ip 10.8.0.150 104379 username zare 104379 mac 104379 bytes_out 0 104379 bytes_in 0 104379 station_ip 94.183.214.14 104379 port 42 104379 unique_id port 104379 remote_ip 10.8.0.150 104381 username zare 104381 mac 104381 bytes_out 0 104381 bytes_in 0 104381 station_ip 94.183.214.14 104381 port 42 104381 unique_id port 104381 remote_ip 10.8.0.150 104386 username jamali 104386 mac 104386 bytes_out 0 104386 bytes_in 0 104365 unique_id port 104365 remote_ip 10.8.0.62 104367 username avaanna 104367 mac 104367 bytes_out 31375 104367 bytes_in 43362 104367 station_ip 37.129.148.250 104367 port 21 104367 unique_id port 104367 remote_ip 10.8.1.102 104368 username amir 104368 mac 104368 bytes_out 49594 104368 bytes_in 107600 104368 station_ip 46.225.208.43 104368 port 23 104368 unique_id port 104368 remote_ip 10.8.1.34 104369 username jamali 104369 mac 104369 bytes_out 0 104369 bytes_in 0 104369 station_ip 5.119.0.221 104369 port 49 104369 unique_id port 104369 remote_ip 10.8.0.62 104372 username amir 104372 mac 104372 bytes_out 0 104372 bytes_in 0 104372 station_ip 46.225.208.43 104372 port 51 104372 unique_id port 104372 remote_ip 10.8.0.54 104376 username zare 104376 mac 104376 bytes_out 0 104376 bytes_in 0 104376 station_ip 94.183.214.14 104376 port 51 104376 unique_id port 104376 remote_ip 10.8.0.150 104378 username amir 104378 mac 104378 bytes_out 0 104378 bytes_in 0 104378 station_ip 46.225.208.43 104378 port 42 104378 unique_id port 104378 remote_ip 10.8.0.54 104380 username zare 104380 mac 104380 bytes_out 0 104380 bytes_in 0 104380 station_ip 94.183.214.14 104380 port 42 104380 unique_id port 104380 remote_ip 10.8.0.150 104382 username zare 104382 mac 104382 bytes_out 0 104382 bytes_in 0 104382 station_ip 94.183.214.14 104382 port 21 104382 unique_id port 104382 remote_ip 10.8.1.110 104384 username zare 104384 mac 104384 bytes_out 0 104384 bytes_in 0 104384 station_ip 94.183.214.14 104384 port 21 104384 unique_id port 104384 remote_ip 10.8.1.110 104385 username ahmadi 104385 unique_id port 104385 terminate_cause User-Request 104385 bytes_out 60900 104385 bytes_in 722762 104385 station_ip 113.203.25.187 104385 port 15730056 104385 nas_port_type Virtual 104385 remote_ip 5.5.5.253 104393 username zare 104393 mac 104393 bytes_out 20490 104393 bytes_in 38089 104393 station_ip 94.183.214.14 104393 port 49 104393 unique_id port 104393 remote_ip 10.8.0.150 104395 username jamali 104395 mac 104395 bytes_out 11635 104395 bytes_in 13594 104395 station_ip 5.119.0.221 104395 port 50 104395 unique_id port 104395 remote_ip 10.8.0.62 104396 username mehdizare 104396 mac 104396 bytes_out 0 104396 bytes_in 0 104396 station_ip 5.119.240.240 104396 port 52 104396 unique_id port 104396 remote_ip 10.8.0.22 104399 username farhad1 104399 mac 104399 bytes_out 0 104399 bytes_in 0 104399 station_ip 5.120.53.114 104399 port 51 104399 unique_id port 104399 remote_ip 10.8.0.102 104403 username zare 104403 mac 104403 bytes_out 195577 104403 bytes_in 752474 104403 station_ip 94.183.214.14 104403 port 49 104403 unique_id port 104403 remote_ip 10.8.0.150 104404 username alihosseini 104404 mac 104404 bytes_out 3077810 104404 bytes_in 41777529 104404 station_ip 5.119.12.117 104404 port 46 104404 unique_id port 104404 remote_ip 10.8.0.14 104406 username jamali 104406 mac 104406 bytes_out 47946 104406 bytes_in 80616 104406 station_ip 5.119.0.221 104406 port 24 104406 unique_id port 104406 remote_ip 10.8.1.54 104412 username zare 104412 mac 104412 bytes_out 0 104412 bytes_in 0 104412 station_ip 94.183.214.14 104412 port 51 104412 unique_id port 104412 remote_ip 10.8.0.150 104420 username zare 104420 mac 104420 bytes_out 0 104420 bytes_in 0 104420 station_ip 94.183.214.14 104420 port 51 104420 unique_id port 104420 remote_ip 10.8.0.150 104422 username zare 104422 mac 104386 station_ip 5.119.0.221 104386 port 49 104386 unique_id port 104386 remote_ip 10.8.0.62 104391 username avaanna 104391 mac 104391 bytes_out 0 104391 bytes_in 0 104391 station_ip 37.129.148.250 104391 port 50 104391 unique_id port 104391 remote_ip 10.8.0.138 104402 username avaanna 104402 mac 104402 bytes_out 29463 104402 bytes_in 50764 104402 station_ip 37.129.148.250 104402 port 55 104402 unique_id port 104402 remote_ip 10.8.0.138 104413 username zare 104413 mac 104413 bytes_out 0 104413 bytes_in 0 104413 station_ip 94.183.214.14 104413 port 51 104413 unique_id port 104413 remote_ip 10.8.0.150 104414 username zare 104414 mac 104414 bytes_out 0 104414 bytes_in 0 104414 station_ip 94.183.214.14 104414 port 51 104414 unique_id port 104414 remote_ip 10.8.0.150 104415 username zare 104415 mac 104415 bytes_out 0 104415 bytes_in 0 104415 station_ip 94.183.214.14 104415 port 51 104415 unique_id port 104415 remote_ip 10.8.0.150 104416 username zare 104416 mac 104416 bytes_out 1636 104416 bytes_in 5076 104416 station_ip 94.183.214.14 104416 port 51 104416 unique_id port 104416 remote_ip 10.8.0.150 104417 username mehdizare 104417 mac 104417 bytes_out 0 104417 bytes_in 0 104417 station_ip 5.119.240.240 104417 port 23 104417 unique_id port 104417 remote_ip 10.8.1.22 104424 username malekpoir 104424 kill_reason Another user logged on this global unique id 104424 mac 104424 bytes_out 0 104424 bytes_in 0 104424 station_ip 5.120.50.98 104424 port 44 104424 unique_id port 104427 username zare 104427 kill_reason Maximum check online fails reached 104427 mac 104427 bytes_out 0 104427 bytes_in 0 104427 station_ip 94.183.214.14 104427 port 52 104427 unique_id port 104430 username malekpoir 104430 mac 104430 bytes_out 0 104430 bytes_in 0 104430 station_ip 5.120.50.98 104430 port 44 104430 unique_id port 104431 username zare 104431 mac 104431 bytes_out 0 104431 bytes_in 0 104431 station_ip 94.183.214.14 104431 port 21 104431 unique_id port 104431 remote_ip 10.8.1.110 104436 username zare 104436 mac 104436 bytes_out 0 104436 bytes_in 0 104436 station_ip 94.183.214.14 104436 port 21 104436 unique_id port 104436 remote_ip 10.8.1.110 104437 username zare 104437 mac 104437 bytes_out 0 104437 bytes_in 0 104437 station_ip 94.183.214.14 104437 port 21 104437 unique_id port 104437 remote_ip 10.8.1.110 104438 username zare 104438 kill_reason Maximum check online fails reached 104438 mac 104438 bytes_out 0 104438 bytes_in 0 104438 station_ip 94.183.214.14 104438 port 21 104438 unique_id port 104447 username mehdizare 104447 mac 104447 bytes_out 8064 104447 bytes_in 15005 104447 station_ip 5.119.240.240 104447 port 44 104447 unique_id port 104447 remote_ip 10.8.0.22 104449 username alirr 104449 unique_id port 104449 terminate_cause User-Request 104449 bytes_out 1333440 104449 bytes_in 12622306 104449 station_ip 31.56.113.218 104449 port 15730064 104449 nas_port_type Virtual 104449 remote_ip 5.5.5.255 104450 username afarin1 104450 kill_reason Another user logged on this global unique id 104450 mac 104450 bytes_out 0 104450 bytes_in 0 104450 station_ip 31.57.210.78 104450 port 53 104450 unique_id port 104451 username malekpoir 104451 kill_reason Another user logged on this global unique id 104451 mac 104451 bytes_out 0 104451 bytes_in 0 104451 station_ip 5.120.50.98 104451 port 55 104451 unique_id port 104451 remote_ip 10.8.0.130 104452 username mohammadmahdi 104452 mac 104452 bytes_out 0 104452 bytes_in 0 104390 port 15730057 104390 nas_port_type Virtual 104390 remote_ip 5.5.5.254 104392 username jamali 104392 mac 104392 bytes_out 0 104392 bytes_in 0 104392 station_ip 5.119.0.221 104392 port 54 104392 unique_id port 104392 remote_ip 10.8.0.62 104394 username ahmadipour 104394 unique_id port 104394 terminate_cause Lost-Carrier 104394 bytes_out 522087 104394 bytes_in 9467755 104394 station_ip 83.123.56.246 104394 port 15730058 104394 nas_port_type Virtual 104394 remote_ip 5.5.5.250 104397 username jamali 104397 mac 104397 bytes_out 7815 104397 bytes_in 20640 104397 station_ip 5.119.0.221 104397 port 50 104397 unique_id port 104397 remote_ip 10.8.0.62 104398 username jamali 104398 mac 104398 bytes_out 0 104398 bytes_in 0 104398 station_ip 5.119.0.221 104398 port 21 104398 unique_id port 104398 remote_ip 10.8.1.54 104400 username mehdizare 104400 mac 104400 bytes_out 0 104400 bytes_in 0 104400 station_ip 5.119.240.240 104400 port 52 104400 unique_id port 104400 remote_ip 10.8.0.22 104401 username bcboard 104401 unique_id port 104401 terminate_cause Lost-Carrier 104401 bytes_out 84886 104401 bytes_in 166415 104401 station_ip 83.122.42.26 104401 port 15730062 104401 nas_port_type Virtual 104401 remote_ip 5.5.5.253 104405 username avaanna 104405 mac 104405 bytes_out 0 104405 bytes_in 0 104405 station_ip 37.129.148.250 104405 port 52 104405 unique_id port 104405 remote_ip 10.8.0.138 104407 username forozande 104407 mac 104407 bytes_out 0 104407 bytes_in 0 104407 station_ip 83.123.88.155 104407 port 23 104407 unique_id port 104407 remote_ip 10.8.1.62 104408 username mehdizare 104408 mac 104408 bytes_out 10859 104408 bytes_in 13223 104408 station_ip 5.119.240.240 104408 port 51 104408 unique_id port 104408 remote_ip 10.8.0.22 104409 username mehdizare 104409 mac 104409 bytes_out 1628 104409 bytes_in 5541 104409 station_ip 5.119.240.240 104409 port 52 104409 unique_id port 104409 remote_ip 10.8.0.22 104410 username zare 104410 mac 104410 bytes_out 0 104410 bytes_in 0 104410 station_ip 94.183.214.14 104410 port 49 104410 unique_id port 104410 remote_ip 10.8.0.150 104411 username malekpoir 104411 kill_reason Another user logged on this global unique id 104411 mac 104411 bytes_out 0 104411 bytes_in 0 104411 station_ip 5.120.50.98 104411 port 44 104411 unique_id port 104411 remote_ip 10.8.0.130 104418 username jamali 104418 mac 104418 bytes_out 0 104418 bytes_in 0 104418 station_ip 5.119.0.221 104418 port 21 104418 unique_id port 104418 remote_ip 10.8.1.54 104419 username mohammadmahdi 104419 kill_reason Another user logged on this global unique id 104419 mac 104419 bytes_out 0 104419 bytes_in 0 104419 station_ip 5.119.216.24 104419 port 46 104419 unique_id port 104419 remote_ip 10.8.0.34 104421 username mehdizare 104421 mac 104421 bytes_out 0 104421 bytes_in 0 104421 station_ip 5.119.240.240 104421 port 21 104421 unique_id port 104421 remote_ip 10.8.1.22 104426 username alireza 104426 unique_id port 104426 terminate_cause Lost-Carrier 104426 bytes_out 5151856 104426 bytes_in 98832365 104426 station_ip 194.15.99.84 104426 port 15730052 104426 nas_port_type Virtual 104426 remote_ip 5.5.5.255 104429 username zare 104429 mac 104429 bytes_out 0 104429 bytes_in 0 104429 station_ip 94.183.214.14 104429 port 55 104429 unique_id port 104429 remote_ip 10.8.0.150 104435 username afarin1 104435 kill_reason Another user logged on this global unique id 104435 mac 104435 bytes_out 0 104435 bytes_in 0 104435 station_ip 31.57.210.78 104435 port 53 104435 unique_id port 104422 bytes_out 21974 104422 bytes_in 39860 104422 station_ip 94.183.214.14 104422 port 52 104422 unique_id port 104422 remote_ip 10.8.0.150 104423 username zare 104423 mac 104423 bytes_out 0 104423 bytes_in 0 104423 station_ip 94.183.214.14 104423 port 52 104423 unique_id port 104423 remote_ip 10.8.0.150 104425 username zare 104425 mac 104425 bytes_out 0 104425 bytes_in 0 104425 station_ip 94.183.214.14 104425 port 55 104425 unique_id port 104425 remote_ip 10.8.0.150 104428 username alihosseini 104428 mac 104428 bytes_out 1561328 104428 bytes_in 14640874 104428 station_ip 5.119.12.117 104428 port 49 104428 unique_id port 104428 remote_ip 10.8.0.14 104432 username zare 104432 kill_reason Maximum check online fails reached 104432 mac 104432 bytes_out 0 104432 bytes_in 0 104432 station_ip 94.183.214.14 104432 port 49 104432 unique_id port 104433 username jamali 104433 mac 104433 bytes_out 0 104433 bytes_in 0 104433 station_ip 5.119.0.221 104433 port 23 104433 unique_id port 104433 remote_ip 10.8.1.54 104434 username aminvpn 104434 unique_id port 104434 terminate_cause Lost-Carrier 104434 bytes_out 2808969 104434 bytes_in 73002720 104434 station_ip 31.57.142.253 104434 port 15730063 104434 nas_port_type Virtual 104434 remote_ip 5.5.5.2 104439 username afarin1 104439 kill_reason Another user logged on this global unique id 104439 mac 104439 bytes_out 0 104439 bytes_in 0 104439 station_ip 31.57.210.78 104439 port 53 104439 unique_id port 104441 username alihosseini 104441 mac 104441 bytes_out 0 104441 bytes_in 0 104441 station_ip 5.119.104.10 104441 port 24 104441 unique_id port 104441 remote_ip 10.8.1.6 104442 username tahmasebi 104442 kill_reason Another user logged on this global unique id 104442 mac 104442 bytes_out 0 104442 bytes_in 0 104442 station_ip 5.120.74.65 104442 port 37 104442 unique_id port 104442 remote_ip 10.8.0.66 104444 username afarin1 104444 kill_reason Another user logged on this global unique id 104444 mac 104444 bytes_out 0 104444 bytes_in 0 104444 station_ip 31.57.210.78 104444 port 53 104444 unique_id port 104445 username jamali 104445 mac 104445 bytes_out 0 104445 bytes_in 0 104445 station_ip 5.119.0.221 104445 port 23 104445 unique_id port 104445 remote_ip 10.8.1.54 104446 username mehdizare 104446 mac 104446 bytes_out 31269 104446 bytes_in 47523 104446 station_ip 5.119.240.240 104446 port 51 104446 unique_id port 104446 remote_ip 10.8.0.22 104448 username mohammadmahdi 104448 kill_reason Another user logged on this global unique id 104448 mac 104448 bytes_out 0 104448 bytes_in 0 104448 station_ip 5.119.216.24 104448 port 46 104448 unique_id port 104453 username mahdiyehalizadeh 104453 mac 104453 bytes_out 0 104453 bytes_in 0 104453 station_ip 37.129.109.188 104453 port 44 104453 unique_id port 104453 remote_ip 10.8.0.42 104459 username tahmasebi 104459 kill_reason Another user logged on this global unique id 104459 mac 104459 bytes_out 0 104459 bytes_in 0 104459 station_ip 5.120.74.65 104459 port 37 104459 unique_id port 104460 username ahmadi 104460 unique_id port 104460 terminate_cause User-Request 104460 bytes_out 150017 104460 bytes_in 2792029 104460 station_ip 113.203.25.187 104460 port 15730070 104460 nas_port_type Virtual 104460 remote_ip 5.5.5.7 104468 username zare 104468 mac 104468 bytes_out 587403 104468 bytes_in 2236979 104468 station_ip 94.183.214.14 104468 port 24 104468 unique_id port 104468 remote_ip 10.8.1.110 104470 username forozande 104470 mac 104470 bytes_out 0 104470 bytes_in 0 104470 station_ip 83.123.191.34 104470 port 25 104435 remote_ip 10.8.0.146 104440 username mohammadmahdi 104440 kill_reason Another user logged on this global unique id 104440 mac 104440 bytes_out 0 104440 bytes_in 0 104440 station_ip 5.119.216.24 104440 port 46 104440 unique_id port 104443 username ahmadi 104443 unique_id port 104443 terminate_cause User-Request 104443 bytes_out 32093 104443 bytes_in 262628 104443 station_ip 113.203.25.187 104443 port 15730065 104443 nas_port_type Virtual 104443 remote_ip 5.5.5.253 104455 username tahmasebi 104455 kill_reason Another user logged on this global unique id 104455 mac 104455 bytes_out 0 104455 bytes_in 0 104455 station_ip 5.120.74.65 104455 port 37 104455 unique_id port 104456 username mehdizare 104456 mac 104456 bytes_out 0 104456 bytes_in 0 104456 station_ip 5.119.240.240 104456 port 51 104456 unique_id port 104456 remote_ip 10.8.0.22 104457 username malekpoir 104457 mac 104457 bytes_out 0 104457 bytes_in 0 104457 station_ip 5.120.50.98 104457 port 55 104457 unique_id port 104458 username farhad1 104458 mac 104458 bytes_out 0 104458 bytes_in 0 104458 station_ip 5.119.50.29 104458 port 50 104458 unique_id port 104458 remote_ip 10.8.0.102 104461 username jamali 104461 mac 104461 bytes_out 22378 104461 bytes_in 59648 104461 station_ip 5.119.0.221 104461 port 23 104461 unique_id port 104461 remote_ip 10.8.1.54 104463 username forozande 104463 mac 104463 bytes_out 587589 104463 bytes_in 8570571 104463 station_ip 83.123.121.34 104463 port 25 104463 unique_id port 104463 remote_ip 10.8.1.62 104467 username mehdizare 104467 mac 104467 bytes_out 0 104467 bytes_in 0 104467 station_ip 5.119.240.240 104467 port 44 104467 unique_id port 104467 remote_ip 10.8.0.22 104472 username alinezhad 104472 unique_id port 104472 terminate_cause User-Request 104472 bytes_out 1321464 104472 bytes_in 44388101 104472 station_ip 5.202.29.164 104472 port 15730071 104472 nas_port_type Virtual 104472 remote_ip 5.5.5.31 104474 username alihosseini 104474 mac 104474 bytes_out 0 104474 bytes_in 0 104474 station_ip 5.119.210.180 104474 port 23 104474 unique_id port 104474 remote_ip 10.8.1.6 104478 username mehdizare 104478 mac 104478 bytes_out 0 104478 bytes_in 0 104478 station_ip 5.119.240.240 104478 port 44 104478 unique_id port 104478 remote_ip 10.8.0.22 104479 username tahmasebi 104479 kill_reason Another user logged on this global unique id 104479 mac 104479 bytes_out 0 104479 bytes_in 0 104479 station_ip 5.120.74.65 104479 port 37 104479 unique_id port 104482 username mehdizare 104482 mac 104482 bytes_out 0 104482 bytes_in 0 104482 station_ip 5.119.240.240 104482 port 50 104482 unique_id port 104482 remote_ip 10.8.0.22 104484 username zare 104484 kill_reason Maximum check online fails reached 104484 mac 104484 bytes_out 0 104484 bytes_in 0 104484 station_ip 94.183.214.14 104484 port 23 104484 unique_id port 104485 username zare 104485 mac 104485 bytes_out 0 104485 bytes_in 0 104485 station_ip 94.183.214.14 104485 port 44 104485 unique_id port 104485 remote_ip 10.8.0.150 104486 username tahmasebi 104486 kill_reason Another user logged on this global unique id 104486 mac 104486 bytes_out 0 104486 bytes_in 0 104486 station_ip 5.120.74.65 104486 port 37 104486 unique_id port 104488 username zare 104488 mac 104488 bytes_out 1915 104488 bytes_in 6063 104488 station_ip 94.183.214.14 104488 port 44 104488 unique_id port 104488 remote_ip 10.8.0.150 104489 username zare 104489 mac 104489 bytes_out 5031 104489 bytes_in 11084 104489 station_ip 94.183.214.14 104489 port 26 104452 station_ip 5.119.216.24 104452 port 46 104452 unique_id port 104454 username jamali 104454 mac 104454 bytes_out 16378 104454 bytes_in 22577 104454 station_ip 5.119.0.221 104454 port 23 104454 unique_id port 104454 remote_ip 10.8.1.54 104462 username aminvpn 104462 unique_id port 104462 terminate_cause Lost-Carrier 104462 bytes_out 432325 104462 bytes_in 4585841 104462 station_ip 5.119.122.173 104462 port 15730054 104462 nas_port_type Virtual 104462 remote_ip 5.5.5.251 104464 username alinezhad 104464 unique_id port 104464 terminate_cause User-Request 104464 bytes_out 2081656 104464 bytes_in 61463414 104464 station_ip 5.202.29.164 104464 port 15730069 104464 nas_port_type Virtual 104464 remote_ip 5.5.5.255 104465 username tahmasebi 104465 kill_reason Another user logged on this global unique id 104465 mac 104465 bytes_out 0 104465 bytes_in 0 104465 station_ip 5.120.74.65 104465 port 37 104465 unique_id port 104466 username jamali 104466 mac 104466 bytes_out 15130 104466 bytes_in 20762 104466 station_ip 5.119.0.221 104466 port 23 104466 unique_id port 104466 remote_ip 10.8.1.54 104469 username jamali 104469 mac 104469 bytes_out 10478 104469 bytes_in 15087 104469 station_ip 5.119.0.221 104469 port 23 104469 unique_id port 104469 remote_ip 10.8.1.54 104473 username tahmasebi 104473 kill_reason Another user logged on this global unique id 104473 mac 104473 bytes_out 0 104473 bytes_in 0 104473 station_ip 5.120.74.65 104473 port 37 104473 unique_id port 104477 username zare 104477 mac 104477 bytes_out 566220 104477 bytes_in 1241659 104477 station_ip 94.183.214.14 104477 port 24 104477 unique_id port 104477 remote_ip 10.8.1.110 104480 username zare 104480 mac 104480 bytes_out 3318813 104480 bytes_in 28686739 104480 station_ip 94.183.214.14 104480 port 23 104480 unique_id port 104480 remote_ip 10.8.1.110 104483 username zare 104483 mac 104483 bytes_out 0 104483 bytes_in 0 104483 station_ip 94.183.214.14 104483 port 44 104483 unique_id port 104483 remote_ip 10.8.0.150 104487 username zare 104487 mac 104487 bytes_out 0 104487 bytes_in 0 104487 station_ip 94.183.214.14 104487 port 26 104487 unique_id port 104487 remote_ip 10.8.1.110 104490 username ahmadi 104490 unique_id port 104490 terminate_cause User-Request 104490 bytes_out 12845 104490 bytes_in 57395 104490 station_ip 113.203.25.187 104490 port 15730074 104490 nas_port_type Virtual 104490 remote_ip 5.5.5.253 104493 username tahmasebi 104493 kill_reason Another user logged on this global unique id 104493 mac 104493 bytes_out 0 104493 bytes_in 0 104493 station_ip 5.120.74.65 104493 port 37 104493 unique_id port 104494 username avaanna 104494 mac 104494 bytes_out 0 104494 bytes_in 0 104494 station_ip 37.129.148.250 104494 port 54 104494 unique_id port 104494 remote_ip 10.8.0.138 104501 username musa 104501 mac 104501 bytes_out 0 104501 bytes_in 0 104501 station_ip 113.203.51.72 104501 port 51 104501 unique_id port 104501 remote_ip 10.8.0.106 104506 username tahmasebi 104506 kill_reason Another user logged on this global unique id 104506 mac 104506 bytes_out 0 104506 bytes_in 0 104506 station_ip 5.120.74.65 104506 port 37 104506 unique_id port 104508 username mohammadmahdi 104508 mac 104508 bytes_out 2624456 104508 bytes_in 27248083 104508 station_ip 5.119.216.24 104508 port 50 104508 unique_id port 104508 remote_ip 10.8.0.34 104514 username jamali 104514 mac 104514 bytes_out 27318 104514 bytes_in 52839 104514 station_ip 5.119.0.221 104514 port 25 104514 unique_id port 104514 remote_ip 10.8.1.54 104518 username hashtadani 104470 unique_id port 104470 remote_ip 10.8.1.62 104471 username tahmasebi 104471 kill_reason Another user logged on this global unique id 104471 mac 104471 bytes_out 0 104471 bytes_in 0 104471 station_ip 5.120.74.65 104471 port 37 104471 unique_id port 104475 username mehdizare 104475 mac 104475 bytes_out 45105 104475 bytes_in 100301 104475 station_ip 5.119.240.240 104475 port 44 104475 unique_id port 104475 remote_ip 10.8.0.22 104476 username ahmadi 104476 unique_id port 104476 terminate_cause User-Request 104476 bytes_out 12056 104476 bytes_in 39112 104476 station_ip 113.203.25.187 104476 port 15730073 104476 nas_port_type Virtual 104476 remote_ip 5.5.5.253 104481 username zare 104481 mac 104481 bytes_out 0 104481 bytes_in 0 104481 station_ip 94.183.214.14 104481 port 23 104481 unique_id port 104481 remote_ip 10.8.1.110 104491 username jamali 104491 mac 104491 bytes_out 82256 104491 bytes_in 127839 104491 station_ip 5.119.0.221 104491 port 25 104491 unique_id port 104491 remote_ip 10.8.1.54 104497 username mehdizare 104497 mac 104497 bytes_out 5336 104497 bytes_in 9524 104497 station_ip 5.120.109.157 104497 port 54 104497 unique_id port 104497 remote_ip 10.8.0.22 104499 username jamali 104499 mac 104499 bytes_out 0 104499 bytes_in 0 104499 station_ip 5.119.0.221 104499 port 25 104499 unique_id port 104499 remote_ip 10.8.1.54 104500 username abbasaskari 104500 mac 104500 bytes_out 0 104500 bytes_in 0 104500 station_ip 5.22.35.122 104500 port 44 104500 unique_id port 104500 remote_ip 10.8.0.94 104502 username malekpoir 104502 mac 104502 bytes_out 96644 104502 bytes_in 99219 104502 station_ip 5.120.50.98 104502 port 46 104502 unique_id port 104502 remote_ip 10.8.0.130 104503 username afarin1 104503 mac 104503 bytes_out 0 104503 bytes_in 0 104503 station_ip 31.57.210.78 104503 port 53 104503 unique_id port 104504 username jamali 104504 mac 104504 bytes_out 14801 104504 bytes_in 13929 104504 station_ip 5.119.0.221 104504 port 25 104504 unique_id port 104504 remote_ip 10.8.1.54 104505 username avaanna 104505 mac 104505 bytes_out 0 104505 bytes_in 0 104505 station_ip 37.129.148.250 104505 port 55 104505 unique_id port 104505 remote_ip 10.8.0.138 104510 username askari 104510 mac 104510 bytes_out 925253 104510 bytes_in 8276798 104510 station_ip 5.119.148.201 104510 port 24 104510 unique_id port 104510 remote_ip 10.8.1.30 104512 username tahmasebi 104512 kill_reason Another user logged on this global unique id 104512 mac 104512 bytes_out 0 104512 bytes_in 0 104512 station_ip 5.120.74.65 104512 port 37 104512 unique_id port 104513 username mohammadmahdi 104513 mac 104513 bytes_out 0 104513 bytes_in 0 104513 station_ip 5.119.216.24 104513 port 44 104513 unique_id port 104513 remote_ip 10.8.0.34 104515 username mehdizare 104515 mac 104515 bytes_out 38882 104515 bytes_in 61148 104515 station_ip 5.120.109.157 104515 port 54 104515 unique_id port 104515 remote_ip 10.8.0.22 104521 username malekpoir 104521 mac 104521 bytes_out 0 104521 bytes_in 0 104521 station_ip 5.120.50.98 104521 port 46 104521 unique_id port 104521 remote_ip 10.8.0.130 104525 username aminvpn 104525 mac 104525 bytes_out 390139 104525 bytes_in 811210 104525 station_ip 83.122.234.55 104525 port 46 104525 unique_id port 104525 remote_ip 10.8.0.6 104529 username amir 104529 mac 104529 bytes_out 0 104529 bytes_in 0 104529 station_ip 46.225.232.68 104529 port 46 104529 unique_id port 104529 remote_ip 10.8.0.54 104532 username mahdiyehalizadeh 104489 unique_id port 104489 remote_ip 10.8.1.110 104492 username amir 104492 mac 104492 bytes_out 207763 104492 bytes_in 1109909 104492 station_ip 46.225.232.68 104492 port 44 104492 unique_id port 104492 remote_ip 10.8.0.54 104495 username mehdizare 104495 mac 104495 bytes_out 0 104495 bytes_in 0 104495 station_ip 5.120.109.157 104495 port 44 104495 unique_id port 104495 remote_ip 10.8.0.22 104496 username avaanna 104496 mac 104496 bytes_out 0 104496 bytes_in 0 104496 station_ip 37.129.148.250 104496 port 51 104496 unique_id port 104496 remote_ip 10.8.0.138 104498 username avaanna 104498 mac 104498 bytes_out 0 104498 bytes_in 0 104498 station_ip 37.129.148.250 104498 port 44 104498 unique_id port 104498 remote_ip 10.8.0.138 104507 username musa 104507 mac 104507 bytes_out 0 104507 bytes_in 0 104507 station_ip 113.203.51.72 104507 port 44 104507 unique_id port 104507 remote_ip 10.8.0.106 104509 username amir 104509 mac 104509 bytes_out 0 104509 bytes_in 0 104509 station_ip 46.225.232.68 104509 port 53 104509 unique_id port 104509 remote_ip 10.8.0.54 104511 username askari 104511 mac 104511 bytes_out 0 104511 bytes_in 0 104511 station_ip 5.119.148.201 104511 port 27 104511 unique_id port 104511 remote_ip 10.8.1.30 104516 username amir 104516 mac 104516 bytes_out 0 104516 bytes_in 0 104516 station_ip 46.225.232.68 104516 port 44 104516 unique_id port 104516 remote_ip 10.8.0.54 104517 username mehdizare 104517 mac 104517 bytes_out 0 104517 bytes_in 0 104517 station_ip 5.120.109.157 104517 port 50 104517 unique_id port 104517 remote_ip 10.8.0.22 104519 username amir 104519 mac 104519 bytes_out 0 104519 bytes_in 0 104519 station_ip 46.225.232.68 104519 port 44 104519 unique_id port 104519 remote_ip 10.8.0.54 104520 username ahmadipour 104520 unique_id port 104520 terminate_cause Lost-Carrier 104520 bytes_out 196139 104520 bytes_in 4015728 104520 station_ip 83.123.114.70 104520 port 15730076 104520 nas_port_type Virtual 104520 remote_ip 5.5.5.252 104522 username mehdizare 104522 mac 104522 bytes_out 0 104522 bytes_in 0 104522 station_ip 5.120.109.157 104522 port 25 104522 unique_id port 104522 remote_ip 10.8.1.22 104523 username amir 104523 mac 104523 bytes_out 57282 104523 bytes_in 194682 104523 station_ip 46.225.232.68 104523 port 44 104523 unique_id port 104523 remote_ip 10.8.0.54 104526 username askari 104526 mac 104526 bytes_out 0 104526 bytes_in 0 104526 station_ip 5.120.87.39 104526 port 28 104526 unique_id port 104526 remote_ip 10.8.1.30 104530 username alireza1 104530 unique_id port 104530 terminate_cause User-Request 104530 bytes_out 329012 104530 bytes_in 1391975 104530 station_ip 5.119.233.238 104530 port 15730077 104530 nas_port_type Virtual 104530 remote_ip 5.5.5.252 104531 username afarin1 104531 mac 104531 bytes_out 0 104531 bytes_in 0 104531 station_ip 31.59.46.209 104531 port 51 104531 unique_id port 104531 remote_ip 10.8.0.146 104539 username mehdizare 104539 mac 104539 bytes_out 0 104539 bytes_in 0 104539 station_ip 5.120.109.157 104539 port 50 104539 unique_id port 104539 remote_ip 10.8.0.22 104549 username avaanna 104549 mac 104549 bytes_out 0 104549 bytes_in 0 104549 station_ip 37.129.148.250 104549 port 26 104549 unique_id port 104549 remote_ip 10.8.1.102 104550 username malekpoir 104550 mac 104550 bytes_out 775606 104550 bytes_in 4190344 104550 station_ip 5.120.50.98 104550 port 27 104550 unique_id port 104518 unique_id port 104518 terminate_cause User-Request 104518 bytes_out 11429094 104518 bytes_in 8334933 104518 station_ip 83.123.238.141 104518 port 15730075 104518 nas_port_type Virtual 104518 remote_ip 5.5.5.252 104524 username houshang 104524 mac 104524 bytes_out 162489 104524 bytes_in 401213 104524 station_ip 5.120.117.186 104524 port 50 104524 unique_id port 104524 remote_ip 10.8.0.126 104527 username amir 104527 mac 104527 bytes_out 0 104527 bytes_in 0 104527 station_ip 46.225.232.68 104527 port 46 104527 unique_id port 104527 remote_ip 10.8.0.54 104528 username mehdizare 104528 mac 104528 bytes_out 0 104528 bytes_in 0 104528 station_ip 5.120.109.157 104528 port 25 104528 unique_id port 104528 remote_ip 10.8.1.22 104534 username mohammadmahdi 104534 mac 104534 bytes_out 1202204 104534 bytes_in 14212139 104534 station_ip 5.119.216.24 104534 port 46 104534 unique_id port 104534 remote_ip 10.8.0.34 104536 username mohammadmahdi 104536 kill_reason Another user logged on this global unique id 104536 mac 104536 bytes_out 0 104536 bytes_in 0 104536 station_ip 5.119.216.24 104536 port 44 104536 unique_id port 104536 remote_ip 10.8.0.34 104538 username mohammadmahdi 104538 mac 104538 bytes_out 0 104538 bytes_in 0 104538 station_ip 5.119.216.24 104538 port 44 104538 unique_id port 104542 username zare 104542 mac 104542 bytes_out 0 104542 bytes_in 0 104542 station_ip 37.27.19.227 104542 port 50 104542 unique_id port 104542 remote_ip 10.8.0.150 104543 username zare 104543 mac 104543 bytes_out 0 104543 bytes_in 0 104543 station_ip 37.27.19.227 104543 port 44 104543 unique_id port 104543 remote_ip 10.8.0.150 104544 username zare 104544 mac 104544 bytes_out 0 104544 bytes_in 0 104544 station_ip 37.27.19.227 104544 port 44 104544 unique_id port 104544 remote_ip 10.8.0.150 104546 username mohammadmahdi 104546 mac 104546 bytes_out 2378309 104546 bytes_in 36275835 104546 station_ip 5.119.216.24 104546 port 46 104546 unique_id port 104546 remote_ip 10.8.0.34 104548 username zare 104548 kill_reason Maximum check online fails reached 104548 mac 104548 bytes_out 0 104548 bytes_in 0 104548 station_ip 37.27.19.227 104548 port 44 104548 unique_id port 104558 username aminvpn 104558 unique_id port 104558 terminate_cause Lost-Carrier 104558 bytes_out 375153 104558 bytes_in 4854235 104558 station_ip 5.119.185.80 104558 port 15730080 104558 nas_port_type Virtual 104558 remote_ip 5.5.5.250 104562 username morteza 104562 kill_reason Another user logged on this global unique id 104562 mac 104562 bytes_out 0 104562 bytes_in 0 104562 station_ip 113.203.93.216 104562 port 54 104562 unique_id port 104562 remote_ip 10.8.0.90 104565 username askari 104565 mac 104565 bytes_out 0 104565 bytes_in 0 104565 station_ip 5.119.43.245 104565 port 26 104565 unique_id port 104565 remote_ip 10.8.1.30 104567 username askari 104567 mac 104567 bytes_out 268965 104567 bytes_in 2710387 104567 station_ip 5.119.43.245 104567 port 55 104567 unique_id port 104567 remote_ip 10.8.0.38 104569 username askari 104569 mac 104569 bytes_out 537291 104569 bytes_in 6028962 104569 station_ip 5.120.168.75 104569 port 56 104569 unique_id port 104569 remote_ip 10.8.0.38 104571 username khalili 104571 kill_reason Another user logged on this global unique id 104571 mac 104571 bytes_out 0 104571 bytes_in 0 104571 station_ip 5.119.88.140 104571 port 50 104571 unique_id port 104574 username avaanna 104574 mac 104574 bytes_out 0 104574 bytes_in 0 104574 station_ip 37.129.148.250 104574 port 26 104574 unique_id port 104532 mac 104532 bytes_out 840663 104532 bytes_in 9858627 104532 station_ip 83.122.109.198 104532 port 44 104532 unique_id port 104532 remote_ip 10.8.0.42 104533 username mahdiyehalizadeh 104533 mac 104533 bytes_out 2427 104533 bytes_in 4102 104533 station_ip 37.129.87.105 104533 port 44 104533 unique_id port 104533 remote_ip 10.8.0.42 104535 username jamali 104535 mac 104535 bytes_out 134402 104535 bytes_in 433629 104535 station_ip 5.119.0.221 104535 port 24 104535 unique_id port 104535 remote_ip 10.8.1.54 104537 username ahmadi 104537 unique_id port 104537 terminate_cause User-Request 104537 bytes_out 165441 104537 bytes_in 1168032 104537 station_ip 113.203.25.187 104537 port 15730078 104537 nas_port_type Virtual 104537 remote_ip 5.5.5.253 104540 username zare 104540 mac 104540 bytes_out 0 104540 bytes_in 0 104540 station_ip 37.27.19.227 104540 port 28 104540 unique_id port 104540 remote_ip 10.8.1.110 104541 username mehdizare 104541 mac 104541 bytes_out 0 104541 bytes_in 0 104541 station_ip 5.120.109.157 104541 port 44 104541 unique_id port 104541 remote_ip 10.8.0.22 104545 username zare 104545 mac 104545 bytes_out 0 104545 bytes_in 0 104545 station_ip 37.27.19.227 104545 port 44 104545 unique_id port 104545 remote_ip 10.8.0.150 104547 username zare 104547 mac 104547 bytes_out 0 104547 bytes_in 0 104547 station_ip 37.27.19.227 104547 port 28 104547 unique_id port 104547 remote_ip 10.8.1.110 104553 username malekpoir 104553 mac 104553 bytes_out 0 104553 bytes_in 0 104553 station_ip 5.120.50.98 104553 port 26 104553 unique_id port 104553 remote_ip 10.8.1.94 104554 username askari 104554 mac 104554 bytes_out 0 104554 bytes_in 0 104554 station_ip 5.119.118.27 104554 port 25 104554 unique_id port 104554 remote_ip 10.8.1.30 104555 username zare 104555 mac 104555 bytes_out 0 104555 bytes_in 0 104555 station_ip 37.27.19.227 104555 port 50 104555 unique_id port 104555 remote_ip 10.8.0.150 104561 username khalili 104561 kill_reason Another user logged on this global unique id 104561 mac 104561 bytes_out 0 104561 bytes_in 0 104561 station_ip 5.119.88.140 104561 port 50 104561 unique_id port 104561 remote_ip 10.8.0.78 104564 username tahmasebi 104564 kill_reason Another user logged on this global unique id 104564 mac 104564 bytes_out 0 104564 bytes_in 0 104564 station_ip 5.120.74.65 104564 port 37 104564 unique_id port 104568 username avaanna 104568 kill_reason Another user logged on this global unique id 104568 mac 104568 bytes_out 0 104568 bytes_in 0 104568 station_ip 37.129.148.250 104568 port 46 104568 unique_id port 104568 remote_ip 10.8.0.138 104570 username morteza 104570 mac 104570 bytes_out 0 104570 bytes_in 0 104570 station_ip 113.203.93.216 104570 port 54 104570 unique_id port 104572 username avaanna 104572 mac 104572 bytes_out 0 104572 bytes_in 0 104572 station_ip 37.129.148.250 104572 port 46 104572 unique_id port 104577 username zare 104577 kill_reason Another user logged on this global unique id 104577 mac 104577 bytes_out 0 104577 bytes_in 0 104577 station_ip 37.27.19.227 104577 port 25 104577 unique_id port 104579 username tahmasebi 104579 kill_reason Another user logged on this global unique id 104579 mac 104579 bytes_out 0 104579 bytes_in 0 104579 station_ip 5.120.74.65 104579 port 37 104579 unique_id port 104580 username khalili 104580 mac 104580 bytes_out 0 104580 bytes_in 0 104580 station_ip 5.119.88.140 104580 port 50 104580 unique_id port 104583 username morteza 104583 mac 104583 bytes_out 0 104550 remote_ip 10.8.1.94 104551 username zare 104551 mac 104551 bytes_out 0 104551 bytes_in 0 104551 station_ip 37.27.19.227 104551 port 50 104551 unique_id port 104551 remote_ip 10.8.0.150 104552 username zare 104552 mac 104552 bytes_out 0 104552 bytes_in 0 104552 station_ip 37.27.19.227 104552 port 50 104552 unique_id port 104552 remote_ip 10.8.0.150 104556 username zare 104556 mac 104556 bytes_out 0 104556 bytes_in 0 104556 station_ip 37.27.19.227 104556 port 50 104556 unique_id port 104556 remote_ip 10.8.0.150 104557 username zare 104557 kill_reason Maximum check online fails reached 104557 mac 104557 bytes_out 0 104557 bytes_in 0 104557 station_ip 37.27.19.227 104557 port 53 104557 unique_id port 104559 username zare 104559 kill_reason Another user logged on this global unique id 104559 mac 104559 bytes_out 0 104559 bytes_in 0 104559 station_ip 37.27.19.227 104559 port 25 104559 unique_id port 104559 remote_ip 10.8.1.110 104560 username zare 104560 kill_reason Another user logged on this global unique id 104560 mac 104560 bytes_out 0 104560 bytes_in 0 104560 station_ip 37.27.19.227 104560 port 25 104560 unique_id port 104563 username zare 104563 kill_reason Another user logged on this global unique id 104563 mac 104563 bytes_out 0 104563 bytes_in 0 104563 station_ip 37.27.19.227 104563 port 25 104563 unique_id port 104566 username zare 104566 kill_reason Another user logged on this global unique id 104566 mac 104566 bytes_out 0 104566 bytes_in 0 104566 station_ip 37.27.19.227 104566 port 25 104566 unique_id port 104573 username zare 104573 kill_reason Another user logged on this global unique id 104573 mac 104573 bytes_out 0 104573 bytes_in 0 104573 station_ip 37.27.19.227 104573 port 25 104573 unique_id port 104575 username mehdizare 104575 mac 104575 bytes_out 114652 104575 bytes_in 147966 104575 station_ip 5.120.109.157 104575 port 51 104575 unique_id port 104575 remote_ip 10.8.0.22 104576 username mehdizare 104576 mac 104576 bytes_out 0 104576 bytes_in 0 104576 station_ip 5.120.109.157 104576 port 26 104576 unique_id port 104576 remote_ip 10.8.1.22 104585 username mehdizare 104585 mac 104585 bytes_out 26120 104585 bytes_in 41999 104585 station_ip 5.120.109.157 104585 port 46 104585 unique_id port 104585 remote_ip 10.8.0.22 104587 username tahmasebi 104587 kill_reason Another user logged on this global unique id 104587 mac 104587 bytes_out 0 104587 bytes_in 0 104587 station_ip 5.120.74.65 104587 port 37 104587 unique_id port 104589 username zare 104589 kill_reason Another user logged on this global unique id 104589 mac 104589 bytes_out 0 104589 bytes_in 0 104589 station_ip 37.27.19.227 104589 port 25 104589 unique_id port 104590 username alihosseini 104590 mac 104590 bytes_out 0 104590 bytes_in 0 104590 station_ip 5.120.180.100 104590 port 46 104590 unique_id port 104590 remote_ip 10.8.0.14 104594 username jamali 104594 kill_reason Another user logged on this global unique id 104594 mac 104594 bytes_out 0 104594 bytes_in 0 104594 station_ip 5.119.0.221 104594 port 24 104594 unique_id port 104600 username alihosseini 104600 mac 104600 bytes_out 0 104600 bytes_in 0 104600 station_ip 5.120.180.100 104600 port 54 104600 unique_id port 104600 remote_ip 10.8.0.14 104601 username zare 104601 mac 104601 bytes_out 0 104601 bytes_in 0 104601 station_ip 37.27.19.227 104601 port 25 104601 unique_id port 104604 username arman1 104604 mac 104604 bytes_out 0 104604 bytes_in 0 104604 station_ip 5.120.118.156 104604 port 25 104604 unique_id port 104574 remote_ip 10.8.1.102 104578 username mirzaei 104578 kill_reason Another user logged on this global unique id 104578 mac 104578 bytes_out 0 104578 bytes_in 0 104578 station_ip 5.119.247.55 104578 port 48 104578 unique_id port 104578 remote_ip 10.8.0.30 104581 username khalili 104581 mac 104581 bytes_out 20087 104581 bytes_in 45555 104581 station_ip 5.119.88.140 104581 port 51 104581 unique_id port 104581 remote_ip 10.8.0.78 104582 username zare 104582 kill_reason Another user logged on this global unique id 104582 mac 104582 bytes_out 0 104582 bytes_in 0 104582 station_ip 37.27.19.227 104582 port 25 104582 unique_id port 104586 username zare 104586 kill_reason Another user logged on this global unique id 104586 mac 104586 bytes_out 0 104586 bytes_in 0 104586 station_ip 37.27.19.227 104586 port 25 104586 unique_id port 104591 username jamali 104591 kill_reason Another user logged on this global unique id 104591 mac 104591 bytes_out 0 104591 bytes_in 0 104591 station_ip 5.119.0.221 104591 port 24 104591 unique_id port 104591 remote_ip 10.8.1.54 104596 username jamali 104596 kill_reason Another user logged on this global unique id 104596 mac 104596 bytes_out 0 104596 bytes_in 0 104596 station_ip 5.119.0.221 104596 port 24 104596 unique_id port 104598 username mirzaei 104598 kill_reason Another user logged on this global unique id 104598 mac 104598 bytes_out 0 104598 bytes_in 0 104598 station_ip 5.119.247.55 104598 port 48 104598 unique_id port 104599 username jamali 104599 kill_reason Another user logged on this global unique id 104599 mac 104599 bytes_out 0 104599 bytes_in 0 104599 station_ip 5.119.0.221 104599 port 24 104599 unique_id port 104602 username tahmasebi 104602 kill_reason Another user logged on this global unique id 104602 mac 104602 bytes_out 0 104602 bytes_in 0 104602 station_ip 5.120.74.65 104602 port 37 104602 unique_id port 104613 username aminvpn 104613 unique_id port 104613 terminate_cause Lost-Carrier 104613 bytes_out 600135 104613 bytes_in 1503505 104613 station_ip 5.119.182.194 104613 port 15730072 104613 nas_port_type Virtual 104613 remote_ip 5.5.5.254 104620 username tahmasebi 104620 kill_reason Another user logged on this global unique id 104620 mac 104620 bytes_out 0 104620 bytes_in 0 104620 station_ip 5.120.74.65 104620 port 37 104620 unique_id port 104624 username alihosseini 104624 mac 104624 bytes_out 0 104624 bytes_in 0 104624 station_ip 5.120.180.100 104624 port 25 104624 unique_id port 104624 remote_ip 10.8.1.6 104626 username mirzaei 104626 mac 104626 bytes_out 0 104626 bytes_in 0 104626 station_ip 5.119.247.55 104626 port 48 104626 unique_id port 104628 username musa 104628 mac 104628 bytes_out 0 104628 bytes_in 0 104628 station_ip 113.203.51.72 104628 port 51 104628 unique_id port 104628 remote_ip 10.8.0.106 104629 username mirzaei 104629 mac 104629 bytes_out 145014 104629 bytes_in 1243097 104629 station_ip 5.119.247.55 104629 port 25 104629 unique_id port 104629 remote_ip 10.8.1.70 104630 username aminvpn 104630 unique_id port 104630 terminate_cause User-Request 104630 bytes_out 29952328 104630 bytes_in 904051025 104630 station_ip 31.57.143.45 104630 port 15730082 104630 nas_port_type Virtual 104630 remote_ip 5.5.5.249 104632 username mehdizare 104632 mac 104632 bytes_out 0 104632 bytes_in 0 104632 station_ip 5.120.109.157 104632 port 54 104632 unique_id port 104638 username aminvpn 104638 unique_id port 104638 terminate_cause Lost-Carrier 104638 bytes_out 8877933 104638 bytes_in 312039479 104638 station_ip 5.119.246.198 104638 port 15730085 104638 nas_port_type Virtual 104638 remote_ip 5.5.5.248 104583 bytes_in 0 104583 station_ip 113.203.78.68 104583 port 50 104583 unique_id port 104583 remote_ip 10.8.0.90 104584 username zare 104584 kill_reason Another user logged on this global unique id 104584 mac 104584 bytes_out 0 104584 bytes_in 0 104584 station_ip 37.27.19.227 104584 port 25 104584 unique_id port 104588 username alihosseini 104588 mac 104588 bytes_out 0 104588 bytes_in 0 104588 station_ip 5.120.180.100 104588 port 26 104588 unique_id port 104588 remote_ip 10.8.1.6 104592 username mirzaei 104592 kill_reason Another user logged on this global unique id 104592 mac 104592 bytes_out 0 104592 bytes_in 0 104592 station_ip 5.119.247.55 104592 port 48 104592 unique_id port 104593 username alireza 104593 unique_id port 104593 terminate_cause Lost-Carrier 104593 bytes_out 2825621 104593 bytes_in 34188869 104593 station_ip 5.120.84.15 104593 port 15730081 104593 nas_port_type Virtual 104593 remote_ip 5.5.5.251 104595 username zare 104595 kill_reason Another user logged on this global unique id 104595 mac 104595 bytes_out 0 104595 bytes_in 0 104595 station_ip 37.27.19.227 104595 port 25 104595 unique_id port 104597 username alihosseini 104597 kill_reason Maximum check online fails reached 104597 mac 104597 bytes_out 0 104597 bytes_in 0 104597 station_ip 5.120.180.100 104597 port 46 104597 unique_id port 104603 username jamali 104603 kill_reason Another user logged on this global unique id 104603 mac 104603 bytes_out 0 104603 bytes_in 0 104603 station_ip 5.119.0.221 104603 port 24 104603 unique_id port 104607 username forozande 104607 mac 104607 bytes_out 2311276 104607 bytes_in 33149433 104607 station_ip 83.123.103.126 104607 port 54 104607 unique_id port 104607 remote_ip 10.8.0.74 104608 username rajaei 104608 mac 104608 bytes_out 0 104608 bytes_in 0 104608 station_ip 89.47.74.223 104608 port 54 104608 unique_id port 104608 remote_ip 10.8.0.142 104610 username mohammadmahdi 104610 kill_reason Another user logged on this global unique id 104610 mac 104610 bytes_out 0 104610 bytes_in 0 104610 station_ip 5.119.216.24 104610 port 55 104610 unique_id port 104610 remote_ip 10.8.0.34 104611 username mohammadmahdi 104611 mac 104611 bytes_out 0 104611 bytes_in 0 104611 station_ip 5.119.216.24 104611 port 55 104611 unique_id port 104612 username aminvpn 104612 mac 104612 bytes_out 4108 104612 bytes_in 5417 104612 station_ip 83.122.139.104 104612 port 54 104612 unique_id port 104612 remote_ip 10.8.0.6 104617 username tahmasebi 104617 kill_reason Another user logged on this global unique id 104617 mac 104617 bytes_out 0 104617 bytes_in 0 104617 station_ip 5.120.74.65 104617 port 37 104617 unique_id port 104621 username mehdizare 104621 kill_reason Another user logged on this global unique id 104621 mac 104621 bytes_out 0 104621 bytes_in 0 104621 station_ip 5.120.109.157 104621 port 54 104621 unique_id port 104621 remote_ip 10.8.0.22 104622 username tahmasebi 104622 kill_reason Another user logged on this global unique id 104622 mac 104622 bytes_out 0 104622 bytes_in 0 104622 station_ip 5.120.74.65 104622 port 37 104622 unique_id port 104625 username tahmasebi 104625 kill_reason Another user logged on this global unique id 104625 mac 104625 bytes_out 0 104625 bytes_in 0 104625 station_ip 5.120.74.65 104625 port 37 104625 unique_id port 104627 username tahmasebi 104627 kill_reason Another user logged on this global unique id 104627 mac 104627 bytes_out 0 104627 bytes_in 0 104627 station_ip 5.120.74.65 104627 port 37 104627 unique_id port 104631 username malekpoir 104631 mac 104631 bytes_out 5183771 104631 bytes_in 40667704 104631 station_ip 5.120.50.98 104631 port 26 104604 remote_ip 10.8.1.86 104605 username alihosseini 104605 mac 104605 bytes_out 0 104605 bytes_in 0 104605 station_ip 5.120.180.100 104605 port 57 104605 unique_id port 104605 remote_ip 10.8.0.14 104606 username rajaei 104606 mac 104606 bytes_out 498210 104606 bytes_in 4148093 104606 station_ip 89.47.74.223 104606 port 56 104606 unique_id port 104606 remote_ip 10.8.0.142 104609 username rajaei 104609 mac 104609 bytes_out 558494 104609 bytes_in 2636401 104609 station_ip 89.47.74.223 104609 port 56 104609 unique_id port 104609 remote_ip 10.8.0.142 104614 username mehdizare 104614 mac 104614 bytes_out 2439135 104614 bytes_in 24183904 104614 station_ip 5.120.109.157 104614 port 50 104614 unique_id port 104614 remote_ip 10.8.0.22 104615 username jamali 104615 mac 104615 bytes_out 0 104615 bytes_in 0 104615 station_ip 5.119.0.221 104615 port 24 104615 unique_id port 104616 username aminvpn 104616 mac 104616 bytes_out 0 104616 bytes_in 0 104616 station_ip 113.203.80.158 104616 port 50 104616 unique_id port 104616 remote_ip 10.8.0.6 104618 username aminvpn 104618 mac 104618 bytes_out 0 104618 bytes_in 0 104618 station_ip 113.203.80.158 104618 port 50 104618 unique_id port 104618 remote_ip 10.8.0.6 104619 username tahmasebi 104619 kill_reason Another user logged on this global unique id 104619 mac 104619 bytes_out 0 104619 bytes_in 0 104619 station_ip 5.120.74.65 104619 port 37 104619 unique_id port 104623 username hamid.e 104623 unique_id port 104623 terminate_cause User-Request 104623 bytes_out 874588 104623 bytes_in 24117948 104623 station_ip 37.27.21.59 104623 port 15730084 104623 nas_port_type Virtual 104623 remote_ip 5.5.5.254 104633 username malekpoir 104633 mac 104633 bytes_out 5586 104633 bytes_in 9470 104633 station_ip 5.120.50.98 104633 port 26 104633 unique_id port 104633 remote_ip 10.8.1.94 104634 username alihosseini 104634 mac 104634 bytes_out 290286 104634 bytes_in 1000395 104634 station_ip 5.120.180.100 104634 port 24 104634 unique_id port 104634 remote_ip 10.8.1.6 104639 username zare 104639 kill_reason Another user logged on this global unique id 104639 mac 104639 bytes_out 0 104639 bytes_in 0 104639 station_ip 37.27.19.227 104639 port 27 104639 unique_id port 104639 remote_ip 10.8.1.110 104640 username alihosseini 104640 mac 104640 bytes_out 35840 104640 bytes_in 45172 104640 station_ip 5.120.180.100 104640 port 24 104640 unique_id port 104640 remote_ip 10.8.1.6 104647 username zare 104647 kill_reason Another user logged on this global unique id 104647 mac 104647 bytes_out 0 104647 bytes_in 0 104647 station_ip 37.27.19.227 104647 port 27 104647 unique_id port 104648 username mehdizare 104648 mac 104648 bytes_out 0 104648 bytes_in 0 104648 station_ip 5.120.109.157 104648 port 26 104648 unique_id port 104648 remote_ip 10.8.1.22 104650 username alihosseini 104650 mac 104650 bytes_out 0 104650 bytes_in 0 104650 station_ip 5.120.180.100 104650 port 48 104650 unique_id port 104650 remote_ip 10.8.0.14 104657 username forozande 104657 mac 104657 bytes_out 135347 104657 bytes_in 740948 104657 station_ip 113.203.11.83 104657 port 54 104657 unique_id port 104657 remote_ip 10.8.0.74 104661 username mirzaei 104661 mac 104661 bytes_out 0 104661 bytes_in 0 104661 station_ip 5.119.247.55 104661 port 25 104661 unique_id port 104661 remote_ip 10.8.1.70 104665 username zare 104665 kill_reason Another user logged on this global unique id 104665 mac 104665 bytes_out 0 104665 bytes_in 0 104665 station_ip 37.27.19.227 104665 port 27 104631 unique_id port 104631 remote_ip 10.8.1.94 104635 username tahmasebi 104635 kill_reason Another user logged on this global unique id 104635 mac 104635 bytes_out 0 104635 bytes_in 0 104635 station_ip 5.120.74.65 104635 port 37 104635 unique_id port 104636 username malekpoir 104636 mac 104636 bytes_out 7431 104636 bytes_in 10164 104636 station_ip 5.120.50.98 104636 port 26 104636 unique_id port 104636 remote_ip 10.8.1.94 104637 username mehdizare 104637 mac 104637 bytes_out 0 104637 bytes_in 0 104637 station_ip 5.120.109.157 104637 port 48 104637 unique_id port 104637 remote_ip 10.8.0.22 104641 username alihosseini 104641 mac 104641 bytes_out 0 104641 bytes_in 0 104641 station_ip 5.120.180.100 104641 port 48 104641 unique_id port 104641 remote_ip 10.8.0.14 104642 username arman1 104642 kill_reason Another user logged on this global unique id 104642 mac 104642 bytes_out 0 104642 bytes_in 0 104642 station_ip 5.120.104.251 104642 port 24 104642 unique_id port 104642 remote_ip 10.8.1.86 104643 username malekpoir 104643 mac 104643 bytes_out 0 104643 bytes_in 0 104643 station_ip 5.120.50.98 104643 port 28 104643 unique_id port 104643 remote_ip 10.8.1.94 104645 username alireza 104645 unique_id port 104645 terminate_cause User-Request 104645 bytes_out 1202760 104645 bytes_in 19967561 104645 station_ip 5.120.84.15 104645 port 15730083 104645 nas_port_type Virtual 104645 remote_ip 5.5.5.255 104646 username malekpoir 104646 mac 104646 bytes_out 0 104646 bytes_in 0 104646 station_ip 5.120.50.98 104646 port 28 104646 unique_id port 104646 remote_ip 10.8.1.94 104649 username arman1 104649 kill_reason Another user logged on this global unique id 104649 mac 104649 bytes_out 0 104649 bytes_in 0 104649 station_ip 5.120.104.251 104649 port 24 104649 unique_id port 104660 username mehdizare 104660 mac 104660 bytes_out 364780 104660 bytes_in 257968 104660 station_ip 5.120.109.157 104660 port 48 104660 unique_id port 104660 remote_ip 10.8.0.22 104662 username arman1 104662 kill_reason Another user logged on this global unique id 104662 mac 104662 bytes_out 0 104662 bytes_in 0 104662 station_ip 5.120.104.251 104662 port 24 104662 unique_id port 104663 username aminvpn 104663 mac 104663 bytes_out 427758 104663 bytes_in 1104423 104663 station_ip 37.129.220.60 104663 port 51 104663 unique_id port 104663 remote_ip 10.8.0.6 104667 username aminvpn 104667 mac 104667 bytes_out 0 104667 bytes_in 0 104667 station_ip 83.123.195.184 104667 port 48 104667 unique_id port 104667 remote_ip 10.8.0.6 104668 username aminvpn 104668 mac 104668 bytes_out 0 104668 bytes_in 0 104668 station_ip 37.129.220.60 104668 port 51 104668 unique_id port 104668 remote_ip 10.8.0.6 104672 username mirzaei 104672 mac 104672 bytes_out 1638 104672 bytes_in 4155 104672 station_ip 5.119.247.55 104672 port 48 104672 unique_id port 104672 remote_ip 10.8.0.30 104674 username alihosseini 104674 mac 104674 bytes_out 0 104674 bytes_in 0 104674 station_ip 5.120.180.100 104674 port 54 104674 unique_id port 104674 remote_ip 10.8.0.14 104675 username forozande 104675 mac 104675 bytes_out 140733 104675 bytes_in 529034 104675 station_ip 83.122.246.230 104675 port 51 104675 unique_id port 104675 remote_ip 10.8.0.74 104676 username tahmasebi 104676 kill_reason Another user logged on this global unique id 104676 mac 104676 bytes_out 0 104676 bytes_in 0 104676 station_ip 5.120.74.65 104676 port 37 104676 unique_id port 104679 username alihosseini 104679 mac 104679 bytes_out 0 104679 bytes_in 0 104644 username forozande 104644 mac 104644 bytes_out 553421 104644 bytes_in 5561627 104644 station_ip 83.122.150.186 104644 port 48 104644 unique_id port 104644 remote_ip 10.8.0.74 104651 username zare 104651 kill_reason Another user logged on this global unique id 104651 mac 104651 bytes_out 0 104651 bytes_in 0 104651 station_ip 37.27.19.227 104651 port 27 104651 unique_id port 104652 username arman1 104652 kill_reason Another user logged on this global unique id 104652 mac 104652 bytes_out 0 104652 bytes_in 0 104652 station_ip 5.120.104.251 104652 port 24 104652 unique_id port 104653 username zare 104653 kill_reason Another user logged on this global unique id 104653 mac 104653 bytes_out 0 104653 bytes_in 0 104653 station_ip 37.27.19.227 104653 port 27 104653 unique_id port 104654 username alihosseini 104654 mac 104654 bytes_out 0 104654 bytes_in 0 104654 station_ip 5.120.180.100 104654 port 55 104654 unique_id port 104654 remote_ip 10.8.0.14 104655 username arman1 104655 kill_reason Another user logged on this global unique id 104655 mac 104655 bytes_out 0 104655 bytes_in 0 104655 station_ip 5.120.104.251 104655 port 24 104655 unique_id port 104656 username malekpoir 104656 mac 104656 bytes_out 0 104656 bytes_in 0 104656 station_ip 5.120.50.98 104656 port 55 104656 unique_id port 104656 remote_ip 10.8.0.130 104658 username zare 104658 kill_reason Another user logged on this global unique id 104658 mac 104658 bytes_out 0 104658 bytes_in 0 104658 station_ip 37.27.19.227 104658 port 27 104658 unique_id port 104659 username alihosseini 104659 mac 104659 bytes_out 0 104659 bytes_in 0 104659 station_ip 5.120.180.100 104659 port 54 104659 unique_id port 104659 remote_ip 10.8.0.14 104664 username malekpoir 104664 kill_reason Another user logged on this global unique id 104664 mac 104664 bytes_out 0 104664 bytes_in 0 104664 station_ip 5.120.50.98 104664 port 56 104664 unique_id port 104664 remote_ip 10.8.0.130 104669 username mirzaei 104669 mac 104669 bytes_out 0 104669 bytes_in 0 104669 station_ip 5.119.247.55 104669 port 25 104669 unique_id port 104669 remote_ip 10.8.1.70 104671 username aminvpn 104671 mac 104671 bytes_out 0 104671 bytes_in 0 104671 station_ip 37.129.220.60 104671 port 54 104671 unique_id port 104671 remote_ip 10.8.0.6 104673 username aminvpn 104673 mac 104673 bytes_out 0 104673 bytes_in 0 104673 station_ip 83.123.195.184 104673 port 55 104673 unique_id port 104673 remote_ip 10.8.0.6 104677 username zare 104677 kill_reason Another user logged on this global unique id 104677 mac 104677 bytes_out 0 104677 bytes_in 0 104677 station_ip 37.27.19.227 104677 port 27 104677 unique_id port 104678 username bcboard 104678 unique_id port 104678 terminate_cause User-Request 104678 bytes_out 166813 104678 bytes_in 1935640 104678 station_ip 37.129.45.25 104678 port 15730087 104678 nas_port_type Virtual 104678 remote_ip 5.5.5.254 104681 username bcboard 104681 unique_id port 104681 terminate_cause User-Request 104681 bytes_out 121369 104681 bytes_in 1306821 104681 station_ip 37.129.45.25 104681 port 15730089 104681 nas_port_type Virtual 104681 remote_ip 5.5.5.255 104684 username bcboard 104684 unique_id port 104684 terminate_cause User-Request 104684 bytes_out 158568 104684 bytes_in 1315553 104684 station_ip 37.129.45.25 104684 port 15730092 104684 nas_port_type Virtual 104684 remote_ip 5.5.5.247 104686 username zare 104686 kill_reason Another user logged on this global unique id 104686 mac 104686 bytes_out 0 104686 bytes_in 0 104686 station_ip 37.27.19.227 104686 port 27 104686 unique_id port 104688 username alihosseini 104665 unique_id port 104666 username tahmasebi 104666 kill_reason Another user logged on this global unique id 104666 mac 104666 bytes_out 0 104666 bytes_in 0 104666 station_ip 5.120.74.65 104666 port 37 104666 unique_id port 104670 username aminvpn 104670 mac 104670 bytes_out 0 104670 bytes_in 0 104670 station_ip 83.123.195.184 104670 port 48 104670 unique_id port 104670 remote_ip 10.8.0.6 104680 username alipour 104680 kill_reason Another user logged on this global unique id 104680 mac 104680 bytes_out 0 104680 bytes_in 0 104680 station_ip 83.123.35.163 104680 port 50 104680 unique_id port 104680 remote_ip 10.8.0.70 104685 username malekpoir 104685 mac 104685 bytes_out 0 104685 bytes_in 0 104685 station_ip 5.120.50.98 104685 port 56 104685 unique_id port 104701 username askari 104701 mac 104701 bytes_out 18071 104701 bytes_in 30304 104701 station_ip 5.119.182.174 104701 port 51 104701 unique_id port 104701 remote_ip 10.8.0.38 104706 username houshang 104706 mac 104706 bytes_out 0 104706 bytes_in 0 104706 station_ip 5.120.147.99 104706 port 54 104706 unique_id port 104706 remote_ip 10.8.0.126 104711 username aminvpn 104711 mac 104711 bytes_out 0 104711 bytes_in 0 104711 station_ip 37.129.220.60 104711 port 48 104711 unique_id port 104711 remote_ip 10.8.0.6 104714 username aminvpn 104714 mac 104714 bytes_out 0 104714 bytes_in 0 104714 station_ip 37.129.220.60 104714 port 54 104714 unique_id port 104714 remote_ip 10.8.0.6 104717 username ahmadi 104717 unique_id port 104717 terminate_cause User-Request 104717 bytes_out 25062 104717 bytes_in 75189 104717 station_ip 37.129.107.217 104717 port 15730098 104717 nas_port_type Virtual 104717 remote_ip 5.5.5.250 104718 username aminvpn 104718 mac 104718 bytes_out 80995 104718 bytes_in 108907 104718 station_ip 83.123.175.228 104718 port 56 104718 unique_id port 104718 remote_ip 10.8.0.6 104719 username aminvpn 104719 mac 104719 bytes_out 0 104719 bytes_in 0 104719 station_ip 37.129.220.60 104719 port 54 104719 unique_id port 104719 remote_ip 10.8.0.6 104721 username aminvpn 104721 mac 104721 bytes_out 0 104721 bytes_in 0 104721 station_ip 83.123.175.228 104721 port 56 104721 unique_id port 104721 remote_ip 10.8.0.6 104725 username hamid.e 104725 kill_reason Maximum number of concurrent logins reached 104725 unique_id port 104725 bytes_out 0 104725 bytes_in 0 104725 station_ip 37.27.0.24 104725 port 15730100 104725 nas_port_type Virtual 104731 username alirr 104731 unique_id port 104731 terminate_cause User-Request 104731 bytes_out 42419 104731 bytes_in 96296 104731 station_ip 113.203.90.224 104731 port 15730102 104731 nas_port_type Virtual 104731 remote_ip 5.5.5.237 104732 username bcboard 104732 unique_id port 104732 terminate_cause Lost-Carrier 104732 bytes_out 157692 104732 bytes_in 133961 104732 station_ip 83.123.229.94 104732 port 15730097 104732 nas_port_type Virtual 104732 remote_ip 5.5.5.246 104734 username arman1 104727 port 15730091 104734 kill_reason Another user logged on this global unique id 104734 mac 104734 bytes_out 0 104734 bytes_in 0 104734 station_ip 5.119.250.97 104734 port 24 104734 unique_id port 104734 remote_ip 10.8.1.86 104735 username tahmasebi 104735 kill_reason Another user logged on this global unique id 104735 mac 104735 bytes_out 0 104735 bytes_in 0 104735 station_ip 5.120.74.65 104735 port 37 104735 unique_id port 104736 username aminvpn 104736 unique_id port 104736 terminate_cause Lost-Carrier 104736 bytes_out 464959 104736 bytes_in 8175996 104736 station_ip 5.119.167.226 104736 port 15730104 104736 nas_port_type Virtual 104736 remote_ip 5.5.5.244 104679 station_ip 5.120.180.100 104679 port 25 104679 unique_id port 104679 remote_ip 10.8.1.6 104682 username bcboard 104682 unique_id port 104682 terminate_cause User-Request 104682 bytes_out 99592 104682 bytes_in 336865 104682 station_ip 37.129.45.25 104682 port 15730090 104682 nas_port_type Virtual 104682 remote_ip 5.5.5.255 104683 username tahmasebi 104683 kill_reason Another user logged on this global unique id 104683 mac 104683 bytes_out 0 104683 bytes_in 0 104683 station_ip 5.120.74.65 104683 port 37 104683 unique_id port 104687 username mehdizare 104687 mac 104687 bytes_out 221505 104687 bytes_in 485495 104687 station_ip 5.120.109.157 104687 port 51 104687 unique_id port 104687 remote_ip 10.8.0.22 104692 username zare 104692 kill_reason Another user logged on this global unique id 104692 mac 104692 bytes_out 0 104692 bytes_in 0 104692 station_ip 37.27.19.227 104692 port 27 104692 unique_id port 104694 username ahmadi 104694 unique_id port 104694 terminate_cause User-Request 104694 bytes_out 20159 104694 bytes_in 63894 104694 station_ip 37.129.107.217 104694 port 15730095 104694 nas_port_type Virtual 104694 remote_ip 5.5.5.247 104696 username aminvpn 104696 unique_id port 104696 terminate_cause User-Request 104696 bytes_out 9217862 104696 bytes_in 304242572 104696 station_ip 31.57.143.45 104696 port 15730088 104696 nas_port_type Virtual 104696 remote_ip 5.5.5.251 104697 username askari 104697 mac 104697 bytes_out 70447 104697 bytes_in 174655 104697 station_ip 5.119.3.204 104697 port 51 104697 unique_id port 104697 remote_ip 10.8.0.38 104699 username askari 104699 mac 104699 bytes_out 39091 104699 bytes_in 77776 104699 station_ip 5.119.3.204 104699 port 54 104699 unique_id port 104699 remote_ip 10.8.0.38 104703 username zare 104703 mac 104703 bytes_out 0 104703 bytes_in 0 104703 station_ip 37.27.19.227 104703 port 25 104703 unique_id port 104703 remote_ip 10.8.1.110 104705 username zare 104705 mac 104705 bytes_out 0 104705 bytes_in 0 104705 station_ip 37.27.19.227 104705 port 25 104705 unique_id port 104705 remote_ip 10.8.1.110 104708 username aminvpn 104708 mac 104708 bytes_out 0 104708 bytes_in 0 104708 station_ip 37.129.220.60 104708 port 48 104708 unique_id port 104708 remote_ip 10.8.0.6 104709 username aminvpn 104709 mac 104709 bytes_out 0 104709 bytes_in 0 104709 station_ip 83.123.175.228 104709 port 51 104709 unique_id port 104709 remote_ip 10.8.0.6 104712 username mehdizare 104712 mac 104712 bytes_out 141655 104712 bytes_in 203005 104712 station_ip 5.120.109.157 104712 port 56 104712 unique_id port 104712 remote_ip 10.8.0.22 104716 username aminvpn 104716 mac 104716 bytes_out 0 104716 bytes_in 0 104716 station_ip 37.129.220.60 104716 port 54 104716 unique_id port 104716 remote_ip 10.8.0.6 104727 username hamid.e 104727 unique_id port 104727 terminate_cause Lost-Carrier 104727 bytes_out 6852881 104727 bytes_in 87909968 104727 station_ip 37.27.21.59 104727 nas_port_type Virtual 104727 remote_ip 5.5.5.4 104729 username hamid 104729 mac 104729 bytes_out 0 104729 bytes_in 0 104729 station_ip 113.203.63.248 104729 port 56 104729 unique_id port 104729 remote_ip 10.8.0.134 104733 username aminvpn 104733 unique_id port 104733 terminate_cause Lost-Carrier 104733 bytes_out 311256 104733 bytes_in 2084781 104733 station_ip 5.120.88.190 104733 port 15730093 104733 nas_port_type Virtual 104733 remote_ip 5.5.5.254 104742 username naeimeh 104742 mac 104742 bytes_out 0 104742 bytes_in 0 104742 station_ip 83.123.47.29 104742 port 51 104742 unique_id port 104688 mac 104688 bytes_out 19753 104688 bytes_in 66641 104688 station_ip 5.120.180.100 104688 port 54 104688 unique_id port 104688 remote_ip 10.8.0.14 104689 username tahmasebi 104689 kill_reason Another user logged on this global unique id 104689 mac 104689 bytes_out 0 104689 bytes_in 0 104689 station_ip 5.120.74.65 104689 port 37 104689 unique_id port 104690 username zare 104690 kill_reason Another user logged on this global unique id 104690 mac 104690 bytes_out 0 104690 bytes_in 0 104690 station_ip 37.27.19.227 104690 port 27 104690 unique_id port 104691 username houshang 104691 mac 104691 bytes_out 278433 104691 bytes_in 1059327 104691 station_ip 5.120.147.99 104691 port 51 104691 unique_id port 104691 remote_ip 10.8.0.126 104693 username alipour 104693 mac 104693 bytes_out 0 104693 bytes_in 0 104693 station_ip 83.123.35.163 104693 port 50 104693 unique_id port 104695 username ahmadi 104695 unique_id port 104695 terminate_cause User-Request 104695 bytes_out 12074 104695 bytes_in 52019 104695 station_ip 37.129.107.217 104695 port 15730096 104695 nas_port_type Virtual 104695 remote_ip 5.5.5.248 104698 username houshang 104698 mac 104698 bytes_out 132421 104698 bytes_in 915299 104698 station_ip 5.120.147.99 104698 port 50 104698 unique_id port 104698 remote_ip 10.8.0.126 104700 username houshang 104700 mac 104700 bytes_out 0 104700 bytes_in 0 104700 station_ip 5.120.147.99 104700 port 50 104700 unique_id port 104700 remote_ip 10.8.0.126 104702 username zare 104702 mac 104702 bytes_out 0 104702 bytes_in 0 104702 station_ip 37.27.19.227 104702 port 27 104702 unique_id port 104704 username alireza 104704 unique_id port 104704 terminate_cause Lost-Carrier 104704 bytes_out 1074505 104704 bytes_in 16726971 104704 station_ip 5.120.84.15 104704 port 15730094 104704 nas_port_type Virtual 104704 remote_ip 5.5.5.250 104707 username arman1 104707 mac 104707 bytes_out 0 104707 bytes_in 0 104707 station_ip 5.120.104.251 104707 port 24 104707 unique_id port 104710 username mirzaei 104710 mac 104710 bytes_out 228372 104710 bytes_in 1855740 104710 station_ip 5.119.247.55 104710 port 50 104710 unique_id port 104710 remote_ip 10.8.0.30 104713 username aminvpn 104713 mac 104713 bytes_out 0 104713 bytes_in 0 104713 station_ip 83.123.175.228 104713 port 50 104713 unique_id port 104713 remote_ip 10.8.0.6 104715 username aminvpn 104715 mac 104715 bytes_out 0 104715 bytes_in 0 104715 station_ip 83.123.175.228 104715 port 50 104715 unique_id port 104715 remote_ip 10.8.0.6 104720 username forozande 104720 mac 104720 bytes_out 107629 104720 bytes_in 295541 104720 station_ip 83.123.196.118 104720 port 50 104720 unique_id port 104720 remote_ip 10.8.0.74 104722 username hamid 104722 mac 104722 bytes_out 0 104722 bytes_in 0 104722 station_ip 113.203.63.248 104722 port 25 104722 unique_id port 104722 remote_ip 10.8.1.98 104723 username mohammadmahdi 104723 mac 104723 bytes_out 2255947 104723 bytes_in 27394945 104723 station_ip 5.120.50.81 104723 port 51 104723 unique_id port 104723 remote_ip 10.8.0.34 104724 username hamid.e 104724 kill_reason Maximum number of concurrent logins reached 104724 unique_id port 104724 bytes_out 0 104724 bytes_in 0 104724 station_ip 37.27.0.24 104724 port 15730099 104724 nas_port_type Virtual 104726 username hamid.e 104726 kill_reason Maximum number of concurrent logins reached 104726 unique_id port 104726 bytes_out 0 104726 bytes_in 0 104726 station_ip 37.27.0.24 104726 port 15730101 104726 nas_port_type Virtual 104728 username hamid 104728 mac 104728 bytes_out 0 104728 bytes_in 0 104728 station_ip 113.203.63.248 104728 port 54 104728 unique_id port 104728 remote_ip 10.8.0.134 104730 username houshang 104730 mac 104730 bytes_out 0 104730 bytes_in 0 104730 station_ip 5.120.147.99 104730 port 51 104730 unique_id port 104730 remote_ip 10.8.0.126 104738 username amirabbas 104738 unique_id port 104738 terminate_cause User-Request 104738 bytes_out 118748153 104738 bytes_in 3514315335 104738 station_ip 37.27.25.165 104738 port 15730079 104738 nas_port_type Virtual 104738 remote_ip 5.5.5.252 104741 username malekpoir 104741 mac 104741 bytes_out 0 104741 bytes_in 0 104741 station_ip 5.120.50.98 104741 port 55 104741 unique_id port 104746 username houshang 104746 mac 104746 bytes_out 2315049 104746 bytes_in 16553977 104746 station_ip 5.120.147.99 104746 port 48 104746 unique_id port 104746 remote_ip 10.8.0.126 104747 username malekpoir 104747 mac 104747 bytes_out 0 104747 bytes_in 0 104747 station_ip 5.120.50.98 104747 port 25 104747 unique_id port 104747 remote_ip 10.8.1.94 104749 username malekpoir 104749 mac 104749 bytes_out 1488524 104749 bytes_in 22992772 104749 station_ip 5.120.50.98 104749 port 51 104749 unique_id port 104749 remote_ip 10.8.0.130 104754 username hamid.e 104754 kill_reason Maximum number of concurrent logins reached 104754 unique_id port 104754 bytes_out 0 104754 bytes_in 0 104754 station_ip 188.245.90.8 104754 port 15730109 104754 nas_port_type Virtual 104755 username tahmasebi 104755 mac 104755 bytes_out 0 104755 bytes_in 0 104755 station_ip 5.120.74.65 104755 port 37 104755 unique_id port 104760 username ahmadi 104760 unique_id port 104760 terminate_cause User-Request 104760 bytes_out 11766 104760 bytes_in 15404 104760 station_ip 37.129.107.217 104760 port 15730112 104760 nas_port_type Virtual 104760 remote_ip 5.5.5.253 104762 username askari 104762 mac 104762 bytes_out 0 104762 bytes_in 0 104762 station_ip 5.119.167.148 104762 port 24 104762 unique_id port 104762 remote_ip 10.8.1.30 104763 username aminvpn 104763 mac 104763 bytes_out 732067 104763 bytes_in 2591082 104763 station_ip 37.129.220.60 104763 port 50 104763 unique_id port 104763 remote_ip 10.8.0.6 104770 username ahmadi 104770 unique_id port 104770 terminate_cause User-Request 104770 bytes_out 390669 104770 bytes_in 8522708 104770 station_ip 37.129.107.217 104770 port 15730115 104770 nas_port_type Virtual 104770 remote_ip 5.5.5.234 104775 username musa 104775 mac 104775 bytes_out 0 104775 bytes_in 0 104775 station_ip 5.250.49.18 104775 port 37 104775 unique_id port 104775 remote_ip 10.8.0.106 104780 username rezasekonji 104780 mac 104780 bytes_out 0 104780 bytes_in 0 104780 station_ip 83.123.229.92 104780 port 50 104780 unique_id port 104780 remote_ip 10.8.0.114 104781 username rezasekonji 104781 mac 104781 bytes_out 0 104781 bytes_in 0 104781 station_ip 83.123.229.92 104781 port 50 104781 unique_id port 104781 remote_ip 10.8.0.114 104786 username askari 104786 mac 104786 bytes_out 126784 104786 bytes_in 195525 104786 station_ip 5.119.167.148 104786 port 24 104786 unique_id port 104786 remote_ip 10.8.1.30 104793 username rezasekonji 104793 mac 104793 bytes_out 0 104793 bytes_in 0 104793 station_ip 83.123.229.92 104793 port 57 104793 unique_id port 104793 remote_ip 10.8.0.114 104795 username rezasekonji 104795 mac 104795 bytes_out 0 104795 bytes_in 0 104795 station_ip 83.123.229.92 104795 port 50 104795 unique_id port 104795 remote_ip 10.8.0.114 104796 username khalili 104737 username arman1 104737 mac 104737 bytes_out 0 104737 bytes_in 0 104737 station_ip 5.119.250.97 104737 port 24 104737 unique_id port 104739 username malekpoir 104739 kill_reason Another user logged on this global unique id 104739 mac 104739 bytes_out 0 104739 bytes_in 0 104739 station_ip 5.120.50.98 104739 port 55 104739 unique_id port 104739 remote_ip 10.8.0.130 104740 username mehdizare 104740 mac 104740 bytes_out 0 104740 bytes_in 0 104740 station_ip 5.120.109.157 104740 port 48 104740 unique_id port 104740 remote_ip 10.8.0.22 104744 username malekpoir 104744 mac 104744 bytes_out 0 104744 bytes_in 0 104744 station_ip 5.120.50.98 104744 port 48 104744 unique_id port 104744 remote_ip 10.8.0.130 104748 username ahmadi 104748 unique_id port 104748 terminate_cause User-Request 104748 bytes_out 215405 104748 bytes_in 4062675 104748 station_ip 37.129.107.217 104748 port 15730107 104748 nas_port_type Virtual 104748 remote_ip 5.5.5.252 104752 username ahmadi 104752 unique_id port 104752 terminate_cause User-Request 104752 bytes_out 19105 104752 bytes_in 33451 104752 station_ip 37.129.107.217 104752 port 15730108 104752 nas_port_type Virtual 104752 remote_ip 5.5.5.253 104756 username hamid.e 104756 kill_reason Maximum number of concurrent logins reached 104756 unique_id port 104756 bytes_out 0 104756 bytes_in 0 104756 station_ip 37.27.27.126 104756 port 15730110 104756 nas_port_type Virtual 104757 username hamid.e 104757 unique_id port 104757 terminate_cause Lost-Carrier 104757 bytes_out 3293416 104757 bytes_in 54189481 104757 station_ip 37.27.0.24 104757 port 15730103 104757 nas_port_type Virtual 104757 remote_ip 5.5.5.241 104764 username hoorieh 104764 mac 104764 bytes_out 1097325 104764 bytes_in 17982899 104764 station_ip 5.119.179.119 104764 port 54 104764 unique_id port 104764 remote_ip 10.8.0.10 104766 username kamali1 104766 mac 104766 bytes_out 137107 104766 bytes_in 199459 104766 station_ip 5.120.108.114 104766 port 56 104766 unique_id port 104766 remote_ip 10.8.0.110 104767 username hoorieh 104767 mac 104767 bytes_out 0 104767 bytes_in 0 104767 station_ip 5.119.179.119 104767 port 50 104767 unique_id port 104767 remote_ip 10.8.0.10 104769 username mahdiyehalizadeh 104769 mac 104769 bytes_out 1108100 104769 bytes_in 9565456 104769 station_ip 37.129.32.244 104769 port 55 104769 unique_id port 104769 remote_ip 10.8.0.42 104776 username madadi2 104776 mac 104776 bytes_out 0 104776 bytes_in 0 104776 station_ip 5.119.206.67 104776 port 57 104776 unique_id port 104776 remote_ip 10.8.0.26 104778 username mirzaei 104778 mac 104778 bytes_out 0 104778 bytes_in 0 104778 station_ip 5.119.247.55 104778 port 56 104778 unique_id port 104778 remote_ip 10.8.0.30 104782 username rezasekonji 104782 mac 104782 bytes_out 0 104782 bytes_in 0 104782 station_ip 83.123.229.92 104782 port 50 104782 unique_id port 104782 remote_ip 10.8.0.114 104783 username rezasekonji 104783 mac 104783 bytes_out 0 104783 bytes_in 0 104783 station_ip 83.123.229.92 104783 port 50 104783 unique_id port 104783 remote_ip 10.8.0.114 104787 username rezasekonji 104787 mac 104787 bytes_out 0 104787 bytes_in 0 104787 station_ip 83.123.229.92 104787 port 50 104787 unique_id port 104787 remote_ip 10.8.0.114 104791 username mehdizare 104791 mac 104791 bytes_out 0 104791 bytes_in 0 104791 station_ip 5.119.67.248 104791 port 51 104791 unique_id port 104791 remote_ip 10.8.0.22 104797 username rezasekonji 104797 mac 104797 bytes_out 0 104797 bytes_in 0 104797 station_ip 83.123.229.92 104742 remote_ip 10.8.0.154 104743 username morteza 104743 mac 104743 bytes_out 1140426 104743 bytes_in 20170642 104743 station_ip 83.122.99.5 104743 port 54 104743 unique_id port 104743 remote_ip 10.8.0.90 104745 username morteza 104745 mac 104745 bytes_out 0 104745 bytes_in 0 104745 station_ip 83.122.99.5 104745 port 51 104745 unique_id port 104745 remote_ip 10.8.0.90 104750 username forozande 104750 mac 104750 bytes_out 1427220 104750 bytes_in 23662739 104750 station_ip 83.123.174.253 104750 port 48 104750 unique_id port 104750 remote_ip 10.8.0.74 104751 username alireza 104751 unique_id port 104751 terminate_cause Lost-Carrier 104751 bytes_out 402441 104751 bytes_in 8402580 104751 station_ip 5.120.84.15 104751 port 15730106 104751 nas_port_type Virtual 104751 remote_ip 5.5.5.253 104753 username forozande 104753 mac 104753 bytes_out 0 104753 bytes_in 0 104753 station_ip 83.122.32.118 104753 port 51 104753 unique_id port 104753 remote_ip 10.8.0.74 104758 username ahmadi 104758 unique_id port 104758 terminate_cause User-Request 104758 bytes_out 7154 104758 bytes_in 16662 104758 station_ip 37.129.107.217 104758 port 15730111 104758 nas_port_type Virtual 104758 remote_ip 5.5.5.253 104759 username tahmasebi 104759 kill_reason Maximum check online fails reached 104759 mac 104759 bytes_out 45235650 104759 bytes_in 24190589 104759 station_ip 5.120.74.65 104759 port 51 104759 unique_id port 104759 remote_ip 10.8.0.66 104761 username ahmadi 104761 unique_id port 104761 terminate_cause User-Request 104761 bytes_out 5430 104761 bytes_in 10942 104761 station_ip 37.129.107.217 104761 port 15730114 104761 nas_port_type Virtual 104761 remote_ip 5.5.5.232 104765 username tahmasebi 104765 mac 104765 bytes_out 0 104765 bytes_in 0 104765 station_ip 5.120.74.65 104765 port 51 104765 unique_id port 104768 username minaghorbani 104768 mac 104768 bytes_out 0 104768 bytes_in 0 104768 station_ip 46.225.214.177 104768 port 50 104768 unique_id port 104768 remote_ip 10.8.0.118 104771 username forozande 104771 mac 104771 bytes_out 675742 104771 bytes_in 4697129 104771 station_ip 83.122.53.223 104771 port 51 104771 unique_id port 104771 remote_ip 10.8.0.74 104772 username aminvpn 104772 unique_id port 104772 terminate_cause User-Request 104772 bytes_out 4175666 104772 bytes_in 58243206 104772 station_ip 5.120.23.52 104772 port 15730105 104772 nas_port_type Virtual 104772 remote_ip 5.5.5.254 104773 username mohammadmahdi 104773 mac 104773 bytes_out 0 104773 bytes_in 0 104773 station_ip 5.120.32.253 104773 port 55 104773 unique_id port 104773 remote_ip 10.8.0.34 104774 username morteza 104774 mac 104774 bytes_out 0 104774 bytes_in 0 104774 station_ip 83.122.152.84 104774 port 56 104774 unique_id port 104774 remote_ip 10.8.0.90 104777 username forozande 104777 mac 104777 bytes_out 0 104777 bytes_in 0 104777 station_ip 37.129.165.93 104777 port 50 104777 unique_id port 104777 remote_ip 10.8.0.74 104779 username rezasekonji 104779 mac 104779 bytes_out 0 104779 bytes_in 0 104779 station_ip 83.123.229.92 104779 port 55 104779 unique_id port 104779 remote_ip 10.8.0.114 104784 username rezasekonji 104784 mac 104784 bytes_out 0 104784 bytes_in 0 104784 station_ip 83.123.229.92 104784 port 50 104784 unique_id port 104784 remote_ip 10.8.0.114 104785 username hoorieh 104785 mac 104785 bytes_out 0 104785 bytes_in 0 104785 station_ip 5.119.179.119 104785 port 57 104785 unique_id port 104785 remote_ip 10.8.0.10 104788 username rezasekonji 104788 mac 104788 bytes_out 0 104788 bytes_in 0 104788 station_ip 83.123.229.92 104788 port 50 104788 unique_id port 104788 remote_ip 10.8.0.114 104789 username rezasekonji 104789 mac 104789 bytes_out 0 104789 bytes_in 0 104789 station_ip 83.123.229.92 104789 port 50 104789 unique_id port 104789 remote_ip 10.8.0.114 104790 username rezasekonji 104790 mac 104790 bytes_out 0 104790 bytes_in 0 104790 station_ip 83.123.229.92 104790 port 50 104790 unique_id port 104790 remote_ip 10.8.0.114 104792 username rezasekonji 104792 mac 104792 bytes_out 0 104792 bytes_in 0 104792 station_ip 83.123.229.92 104792 port 51 104792 unique_id port 104792 remote_ip 10.8.0.114 104794 username rajaei 104794 mac 104794 bytes_out 0 104794 bytes_in 0 104794 station_ip 5.200.126.97 104794 port 50 104794 unique_id port 104794 remote_ip 10.8.0.142 104802 username khalili 104802 kill_reason Another user logged on this global unique id 104802 mac 104802 bytes_out 0 104802 bytes_in 0 104802 station_ip 5.119.88.140 104802 port 51 104802 unique_id port 104804 username rezasekonji 104804 mac 104804 bytes_out 0 104804 bytes_in 0 104804 station_ip 83.123.229.92 104804 port 50 104804 unique_id port 104804 remote_ip 10.8.0.114 104807 username rezasekonji 104807 mac 104807 bytes_out 0 104807 bytes_in 0 104807 station_ip 83.123.229.92 104807 port 50 104807 unique_id port 104807 remote_ip 10.8.0.114 104808 username rezasekonji 104808 mac 104808 bytes_out 0 104808 bytes_in 0 104808 station_ip 83.123.229.92 104808 port 50 104808 unique_id port 104808 remote_ip 10.8.0.114 104809 username rezasekonji 104809 mac 104809 bytes_out 0 104809 bytes_in 0 104809 station_ip 83.123.229.92 104809 port 50 104809 unique_id port 104809 remote_ip 10.8.0.114 104815 username rezasekonji 104815 mac 104815 bytes_out 0 104815 bytes_in 0 104815 station_ip 83.123.229.92 104815 port 50 104815 unique_id port 104815 remote_ip 10.8.0.114 104817 username rezasekonji 104817 mac 104817 bytes_out 2816 104817 bytes_in 4630 104817 station_ip 83.123.229.92 104817 port 50 104817 unique_id port 104817 remote_ip 10.8.0.114 104819 username mohammadmahdi 104819 mac 104819 bytes_out 0 104819 bytes_in 0 104819 station_ip 5.120.32.253 104819 port 59 104819 unique_id port 104821 username amirabbas 104821 unique_id port 104821 terminate_cause User-Request 104821 bytes_out 6283450 104821 bytes_in 121581563 104821 station_ip 37.27.25.165 104821 port 15730121 104821 nas_port_type Virtual 104821 remote_ip 5.5.5.228 104822 username mehdizare 104822 mac 104822 bytes_out 30809 104822 bytes_in 23993 104822 station_ip 5.119.67.248 104822 port 50 104822 unique_id port 104822 remote_ip 10.8.0.22 104823 username rajaei 104823 kill_reason Another user logged on this global unique id 104823 mac 104823 bytes_out 0 104823 bytes_in 0 104823 station_ip 5.200.126.97 104823 port 57 104823 unique_id port 104825 username farhad1 104825 mac 104825 bytes_out 0 104825 bytes_in 0 104825 station_ip 5.119.151.162 104825 port 56 104825 unique_id port 104825 remote_ip 10.8.0.102 104826 username alirr 104826 unique_id port 104826 terminate_cause User-Request 104826 bytes_out 9571825 104826 bytes_in 98013010 104826 station_ip 31.56.223.117 104826 port 15730117 104826 nas_port_type Virtual 104826 remote_ip 5.5.5.240 104827 username malekpoir 104827 kill_reason Another user logged on this global unique id 104827 mac 104827 bytes_out 0 104827 bytes_in 0 104827 station_ip 5.120.50.98 104827 port 48 104827 unique_id port 104832 username aminvpn 104832 mac 104796 kill_reason Another user logged on this global unique id 104796 mac 104796 bytes_out 0 104796 bytes_in 0 104796 station_ip 5.119.88.140 104796 port 51 104796 unique_id port 104796 remote_ip 10.8.0.78 104801 username mirzaei 104801 kill_reason Another user logged on this global unique id 104801 mac 104801 bytes_out 0 104801 bytes_in 0 104801 station_ip 5.120.38.94 104801 port 55 104801 unique_id port 104801 remote_ip 10.8.0.30 104803 username forozande 104803 mac 104803 bytes_out 70017 104803 bytes_in 194174 104803 station_ip 37.129.212.212 104803 port 50 104803 unique_id port 104803 remote_ip 10.8.0.74 104805 username rezasekonji 104805 mac 104805 bytes_out 0 104805 bytes_in 0 104805 station_ip 83.123.229.92 104805 port 59 104805 unique_id port 104805 remote_ip 10.8.0.114 104806 username ahmadipour 104806 unique_id port 104806 terminate_cause Lost-Carrier 104806 bytes_out 1416558 104806 bytes_in 25464885 104806 station_ip 83.123.16.38 104806 port 15730113 104806 nas_port_type Virtual 104806 remote_ip 5.5.5.229 104810 username rezasekonji 104810 mac 104810 bytes_out 0 104810 bytes_in 0 104810 station_ip 83.123.229.92 104810 port 50 104810 unique_id port 104810 remote_ip 10.8.0.114 104812 username rezasekonji 104812 mac 104812 bytes_out 0 104812 bytes_in 0 104812 station_ip 83.123.229.92 104812 port 50 104812 unique_id port 104812 remote_ip 10.8.0.114 104814 username alihosseini 104814 mac 104814 bytes_out 1117293 104814 bytes_in 11831832 104814 station_ip 5.120.102.183 104814 port 25 104814 unique_id port 104814 remote_ip 10.8.1.6 104818 username malekpoir 104818 kill_reason Another user logged on this global unique id 104818 mac 104818 bytes_out 0 104818 bytes_in 0 104818 station_ip 5.120.50.98 104818 port 48 104818 unique_id port 104818 remote_ip 10.8.0.130 104824 username askari 104824 mac 104824 bytes_out 0 104824 bytes_in 0 104824 station_ip 5.119.167.148 104824 port 24 104824 unique_id port 104824 remote_ip 10.8.1.30 104828 username bcboard 104828 unique_id port 104828 terminate_cause Lost-Carrier 104828 bytes_out 2251342 104828 bytes_in 29915512 104828 station_ip 83.123.160.28 104828 port 15730120 104828 nas_port_type Virtual 104828 remote_ip 5.5.5.255 104831 username malekpoir 104831 mac 104831 bytes_out 0 104831 bytes_in 0 104831 station_ip 5.120.50.98 104831 port 48 104831 unique_id port 104834 username aminvpn 104834 mac 104834 bytes_out 0 104834 bytes_in 0 104834 station_ip 83.123.162.164 104834 port 37 104834 unique_id port 104834 remote_ip 10.8.0.6 104836 username rajaei 104836 mac 104836 bytes_out 0 104836 bytes_in 0 104836 station_ip 5.200.126.97 104836 port 57 104836 unique_id port 104843 username aminvpn 104843 mac 104843 bytes_out 0 104843 bytes_in 0 104843 station_ip 83.123.162.164 104843 port 37 104843 unique_id port 104843 remote_ip 10.8.0.6 104844 username aminvpn 104844 mac 104844 bytes_out 0 104844 bytes_in 0 104844 station_ip 83.122.21.152 104844 port 57 104844 unique_id port 104844 remote_ip 10.8.0.6 104845 username aminvpn 104845 mac 104845 bytes_out 0 104845 bytes_in 0 104845 station_ip 83.123.162.164 104845 port 37 104845 unique_id port 104845 remote_ip 10.8.0.6 104853 username alihosseini 104853 mac 104853 bytes_out 51572 104853 bytes_in 152590 104853 station_ip 5.120.93.182 104853 port 48 104853 unique_id port 104853 remote_ip 10.8.0.14 104856 username alinezhad 104856 unique_id port 104856 terminate_cause User-Request 104856 bytes_out 287475 104856 bytes_in 945701 104856 station_ip 5.202.23.7 104797 port 50 104797 unique_id port 104797 remote_ip 10.8.0.114 104798 username rezasekonji 104798 mac 104798 bytes_out 0 104798 bytes_in 0 104798 station_ip 83.123.229.92 104798 port 50 104798 unique_id port 104798 remote_ip 10.8.0.114 104799 username rajaei 104799 kill_reason Another user logged on this global unique id 104799 mac 104799 bytes_out 0 104799 bytes_in 0 104799 station_ip 5.200.126.97 104799 port 57 104799 unique_id port 104799 remote_ip 10.8.0.142 104800 username rezasekonji 104800 mac 104800 bytes_out 0 104800 bytes_in 0 104800 station_ip 83.123.229.92 104800 port 50 104800 unique_id port 104800 remote_ip 10.8.0.114 104811 username rajaei 104811 kill_reason Another user logged on this global unique id 104811 mac 104811 bytes_out 0 104811 bytes_in 0 104811 station_ip 5.200.126.97 104811 port 57 104811 unique_id port 104813 username rezasekonji 104813 mac 104813 bytes_out 0 104813 bytes_in 0 104813 station_ip 83.123.229.92 104813 port 50 104813 unique_id port 104813 remote_ip 10.8.0.114 104816 username mohammadmahdi 104816 kill_reason Another user logged on this global unique id 104816 mac 104816 bytes_out 0 104816 bytes_in 0 104816 station_ip 5.120.32.253 104816 port 59 104816 unique_id port 104816 remote_ip 10.8.0.34 104820 username mehdizare 104820 mac 104820 bytes_out 0 104820 bytes_in 0 104820 station_ip 5.119.67.248 104820 port 56 104820 unique_id port 104820 remote_ip 10.8.0.22 104829 username rajaei 104829 kill_reason Another user logged on this global unique id 104829 mac 104829 bytes_out 0 104829 bytes_in 0 104829 station_ip 5.200.126.97 104829 port 57 104829 unique_id port 104830 username abbasaskari 104830 mac 104830 bytes_out 0 104830 bytes_in 0 104830 station_ip 113.203.114.55 104830 port 58 104830 unique_id port 104830 remote_ip 10.8.0.94 104837 username aminvpn 104837 mac 104837 bytes_out 0 104837 bytes_in 0 104837 station_ip 83.122.21.152 104837 port 59 104837 unique_id port 104837 remote_ip 10.8.0.6 104839 username aminvpn 104839 mac 104839 bytes_out 0 104839 bytes_in 0 104839 station_ip 83.122.21.152 104839 port 57 104839 unique_id port 104839 remote_ip 10.8.0.6 104841 username aminvpn 104841 mac 104841 bytes_out 0 104841 bytes_in 0 104841 station_ip 83.122.21.152 104841 port 57 104841 unique_id port 104841 remote_ip 10.8.0.6 104846 username aminvpn 104846 mac 104846 bytes_out 0 104846 bytes_in 0 104846 station_ip 83.122.21.152 104846 port 57 104846 unique_id port 104846 remote_ip 10.8.0.6 104847 username aminvpn 104847 mac 104847 bytes_out 0 104847 bytes_in 0 104847 station_ip 83.123.162.164 104847 port 37 104847 unique_id port 104847 remote_ip 10.8.0.6 104850 username aminvpn 104850 mac 104850 bytes_out 0 104850 bytes_in 0 104850 station_ip 83.122.21.152 104850 port 57 104850 unique_id port 104850 remote_ip 10.8.0.6 104852 username aminvpn 104852 mac 104852 bytes_out 0 104852 bytes_in 0 104852 station_ip 83.122.21.152 104852 port 57 104852 unique_id port 104852 remote_ip 10.8.0.6 104854 username aminvpn 104854 mac 104854 bytes_out 0 104854 bytes_in 0 104854 station_ip 83.123.162.164 104854 port 37 104854 unique_id port 104854 remote_ip 10.8.0.6 104855 username aminvpn 104855 mac 104855 bytes_out 0 104855 bytes_in 0 104855 station_ip 83.122.21.152 104855 port 48 104855 unique_id port 104855 remote_ip 10.8.0.6 104859 username aminvpn 104859 mac 104859 bytes_out 0 104859 bytes_in 0 104859 station_ip 5.120.36.9 104859 port 37 104832 bytes_out 803141 104832 bytes_in 2497534 104832 station_ip 83.123.162.164 104832 port 37 104832 unique_id port 104832 remote_ip 10.8.0.6 104833 username aminvpn 104833 mac 104833 bytes_out 0 104833 bytes_in 0 104833 station_ip 83.122.21.152 104833 port 59 104833 unique_id port 104833 remote_ip 10.8.0.6 104835 username malekpoir 104835 mac 104835 bytes_out 318646 104835 bytes_in 3746303 104835 station_ip 5.120.50.98 104835 port 58 104835 unique_id port 104835 remote_ip 10.8.0.130 104838 username aminvpn 104838 mac 104838 bytes_out 0 104838 bytes_in 0 104838 station_ip 83.123.162.164 104838 port 37 104838 unique_id port 104838 remote_ip 10.8.0.6 104840 username aminvpn 104840 mac 104840 bytes_out 0 104840 bytes_in 0 104840 station_ip 83.123.162.164 104840 port 37 104840 unique_id port 104840 remote_ip 10.8.0.6 104842 username ahmadi 104842 unique_id port 104842 terminate_cause User-Request 104842 bytes_out 38155 104842 bytes_in 306933 104842 station_ip 37.129.107.217 104842 port 15730122 104842 nas_port_type Virtual 104842 remote_ip 5.5.5.230 104848 username aminvpn 104848 mac 104848 bytes_out 0 104848 bytes_in 0 104848 station_ip 83.122.21.152 104848 port 57 104848 unique_id port 104848 remote_ip 10.8.0.6 104849 username aminvpn 104849 mac 104849 bytes_out 0 104849 bytes_in 0 104849 station_ip 83.123.162.164 104849 port 37 104849 unique_id port 104849 remote_ip 10.8.0.6 104851 username aminvpn 104851 mac 104851 bytes_out 0 104851 bytes_in 0 104851 station_ip 83.123.162.164 104851 port 37 104851 unique_id port 104851 remote_ip 10.8.0.6 104857 username aminvpn 104857 mac 104857 bytes_out 0 104857 bytes_in 0 104857 station_ip 83.123.162.164 104857 port 37 104857 unique_id port 104857 remote_ip 10.8.0.6 104860 username aminvpn 104860 mac 104860 bytes_out 0 104860 bytes_in 0 104860 station_ip 83.123.162.164 104860 port 48 104860 unique_id port 104860 remote_ip 10.8.0.6 104861 username aminvpn 104861 mac 104861 bytes_out 0 104861 bytes_in 0 104861 station_ip 83.122.21.152 104861 port 37 104861 unique_id port 104861 remote_ip 10.8.0.6 104869 username mehdizare 104869 mac 104869 bytes_out 0 104869 bytes_in 0 104869 station_ip 5.119.67.248 104869 port 50 104869 unique_id port 104869 remote_ip 10.8.0.22 104870 username aminvpn 104870 mac 104870 bytes_out 0 104870 bytes_in 0 104870 station_ip 83.122.21.152 104870 port 48 104870 unique_id port 104870 remote_ip 10.8.0.6 104874 username mehdizare 104874 mac 104874 bytes_out 11130 104874 bytes_in 13911 104874 station_ip 5.119.67.248 104874 port 37 104874 unique_id port 104874 remote_ip 10.8.0.22 104876 username aminvpn 104876 mac 104876 bytes_out 0 104876 bytes_in 0 104876 station_ip 83.123.162.164 104876 port 50 104876 unique_id port 104876 remote_ip 10.8.0.6 104882 username aminvpn 104882 mac 104882 bytes_out 5432 104882 bytes_in 8756 104882 station_ip 83.123.162.164 104882 port 50 104882 unique_id port 104882 remote_ip 10.8.0.6 104886 username aminvpn 104886 mac 104886 bytes_out 0 104886 bytes_in 0 104886 station_ip 83.122.21.152 104886 port 48 104886 unique_id port 104886 remote_ip 10.8.0.6 104891 username aminvpn 104891 mac 104891 bytes_out 88747 104891 bytes_in 1167111 104891 station_ip 5.120.36.9 104891 port 57 104891 unique_id port 104891 remote_ip 10.8.0.6 104898 username aminvpn 104898 mac 104898 bytes_out 888177 104898 bytes_in 21362201 104898 station_ip 5.120.36.9 104856 port 15730123 104856 nas_port_type Virtual 104856 remote_ip 5.5.5.236 104858 username aminvpn 104858 mac 104858 bytes_out 0 104858 bytes_in 0 104858 station_ip 83.122.21.152 104858 port 48 104858 unique_id port 104858 remote_ip 10.8.0.6 104862 username aminvpn 104862 mac 104862 bytes_out 0 104862 bytes_in 0 104862 station_ip 5.120.36.9 104862 port 48 104862 unique_id port 104862 remote_ip 10.8.0.6 104865 username aminvpn 104865 mac 104865 bytes_out 0 104865 bytes_in 0 104865 station_ip 5.120.36.9 104865 port 37 104865 unique_id port 104865 remote_ip 10.8.0.6 104866 username aminvpn 104866 mac 104866 bytes_out 0 104866 bytes_in 0 104866 station_ip 83.123.162.164 104866 port 37 104866 unique_id port 104866 remote_ip 10.8.0.6 104867 username aminvpn 104867 mac 104867 bytes_out 0 104867 bytes_in 0 104867 station_ip 83.122.21.152 104867 port 48 104867 unique_id port 104867 remote_ip 10.8.0.6 104872 username alinezhad 104872 unique_id port 104872 terminate_cause User-Request 104872 bytes_out 1113925 104872 bytes_in 9451609 104872 station_ip 5.202.23.7 104872 port 15730124 104872 nas_port_type Virtual 104872 remote_ip 5.5.5.255 104875 username aminvpn 104875 mac 104875 bytes_out 0 104875 bytes_in 0 104875 station_ip 83.123.74.21 104875 port 24 104875 unique_id port 104875 remote_ip 10.8.1.26 104878 username aminvpn 104878 mac 104878 bytes_out 0 104878 bytes_in 0 104878 station_ip 83.122.21.152 104878 port 48 104878 unique_id port 104878 remote_ip 10.8.0.6 104887 username aminvpn 104887 mac 104887 bytes_out 0 104887 bytes_in 0 104887 station_ip 5.120.36.9 104887 port 57 104887 unique_id port 104887 remote_ip 10.8.0.6 104888 username aminvpn 104888 mac 104888 bytes_out 0 104888 bytes_in 0 104888 station_ip 83.123.162.164 104888 port 48 104888 unique_id port 104888 remote_ip 10.8.0.6 104889 username aminvpn 104889 mac 104889 bytes_out 404623 104889 bytes_in 2819151 104889 station_ip 5.120.36.9 104889 port 57 104889 unique_id port 104889 remote_ip 10.8.0.6 104890 username aminvpn 104890 mac 104890 bytes_out 0 104890 bytes_in 0 104890 station_ip 83.123.162.164 104890 port 48 104890 unique_id port 104890 remote_ip 10.8.0.6 104892 username aminvpn 104892 mac 104892 bytes_out 0 104892 bytes_in 0 104892 station_ip 83.122.21.152 104892 port 48 104892 unique_id port 104892 remote_ip 10.8.0.6 104893 username aminvpn 104893 kill_reason Maximum check online fails reached 104893 mac 104893 bytes_out 0 104893 bytes_in 0 104893 station_ip 83.123.162.164 104893 port 48 104893 unique_id port 104894 username aminvpn 104894 mac 104894 bytes_out 299932 104894 bytes_in 3763799 104894 station_ip 5.120.36.9 104894 port 57 104894 unique_id port 104894 remote_ip 10.8.0.6 104895 username aminvpn 104895 mac 104895 bytes_out 0 104895 bytes_in 0 104895 station_ip 83.122.21.152 104895 port 58 104895 unique_id port 104895 remote_ip 10.8.0.6 104896 username aminvpn 104896 unique_id port 104896 terminate_cause Lost-Carrier 104896 bytes_out 291734 104896 bytes_in 1613690 104896 station_ip 5.233.49.147 104896 port 15730126 104896 nas_port_type Virtual 104896 remote_ip 5.5.5.217 104902 username aminvpn 104902 mac 104902 bytes_out 343856 104902 bytes_in 5000777 104902 station_ip 5.120.36.9 104902 port 57 104902 unique_id port 104902 remote_ip 10.8.0.6 104908 username bcboard 104908 unique_id port 104908 terminate_cause User-Request 104908 bytes_out 108571 104908 bytes_in 2043067 104859 unique_id port 104859 remote_ip 10.8.0.6 104863 username aminvpn 104863 mac 104863 bytes_out 0 104863 bytes_in 0 104863 station_ip 83.123.162.164 104863 port 37 104863 unique_id port 104863 remote_ip 10.8.0.6 104864 username aminvpn 104864 mac 104864 bytes_out 0 104864 bytes_in 0 104864 station_ip 83.122.21.152 104864 port 48 104864 unique_id port 104864 remote_ip 10.8.0.6 104868 username aminvpn 104868 mac 104868 bytes_out 0 104868 bytes_in 0 104868 station_ip 83.123.162.164 104868 port 37 104868 unique_id port 104868 remote_ip 10.8.0.6 104871 username aminvpn 104871 mac 104871 bytes_out 0 104871 bytes_in 0 104871 station_ip 83.123.162.164 104871 port 50 104871 unique_id port 104871 remote_ip 10.8.0.6 104873 username aminvpn 104873 mac 104873 bytes_out 0 104873 bytes_in 0 104873 station_ip 83.122.21.152 104873 port 48 104873 unique_id port 104873 remote_ip 10.8.0.6 104877 username aminvpn 104877 mac 104877 bytes_out 0 104877 bytes_in 0 104877 station_ip 83.123.74.21 104877 port 24 104877 unique_id port 104877 remote_ip 10.8.1.26 104879 username aminvpn 104879 mac 104879 bytes_out 0 104879 bytes_in 0 104879 station_ip 83.123.162.164 104879 port 50 104879 unique_id port 104879 remote_ip 10.8.0.6 104880 username aminvpn 104880 mac 104880 bytes_out 71375 104880 bytes_in 953683 104880 station_ip 83.122.21.152 104880 port 48 104880 unique_id port 104880 remote_ip 10.8.0.6 104881 username aminvpn 104881 mac 104881 bytes_out 0 104881 bytes_in 0 104881 station_ip 83.122.94.33 104881 port 24 104881 unique_id port 104881 remote_ip 10.8.1.26 104883 username ahmadi 104883 unique_id port 104883 terminate_cause User-Request 104883 bytes_out 51372 104883 bytes_in 139503 104883 station_ip 37.129.107.217 104883 port 15730125 104883 nas_port_type Virtual 104883 remote_ip 5.5.5.255 104884 username aminvpn 104884 mac 104884 bytes_out 0 104884 bytes_in 0 104884 station_ip 83.122.94.33 104884 port 48 104884 unique_id port 104884 remote_ip 10.8.0.6 104885 username aminvpn 104885 mac 104885 bytes_out 4678 104885 bytes_in 8620 104885 station_ip 83.123.162.164 104885 port 50 104885 unique_id port 104885 remote_ip 10.8.0.6 104897 username alinezhad 104897 unique_id port 104897 terminate_cause User-Request 104897 bytes_out 0 104897 bytes_in 0 104897 station_ip 5.202.8.99 104897 port 15730127 104897 nas_port_type Virtual 104897 remote_ip 5.5.5.224 104899 username alinezhad 104899 unique_id port 104899 terminate_cause User-Request 104899 bytes_out 111795 104899 bytes_in 125553 104899 station_ip 5.202.8.99 104899 port 15730128 104899 nas_port_type Virtual 104899 remote_ip 5.5.5.227 104901 username bcboard 104901 unique_id port 104901 terminate_cause User-Request 104901 bytes_out 163001 104901 bytes_in 2338302 104901 station_ip 83.123.160.28 104901 port 15730129 104901 nas_port_type Virtual 104901 remote_ip 5.5.5.45 104905 username bcboard 104905 unique_id port 104905 terminate_cause User-Request 104905 bytes_out 138350 104905 bytes_in 2597287 104905 station_ip 83.123.160.28 104905 port 15730130 104905 nas_port_type Virtual 104905 remote_ip 5.5.5.214 104910 username mahdiyehalizadeh 104910 mac 104910 bytes_out 6458317 104910 bytes_in 40283547 104910 station_ip 83.123.71.37 104910 port 56 104910 unique_id port 104910 remote_ip 10.8.0.42 104911 username mehdizare 104911 kill_reason Another user logged on this global unique id 104911 mac 104911 bytes_out 0 104911 bytes_in 0 104911 station_ip 5.119.67.248 104911 port 37 104911 unique_id port 104911 remote_ip 10.8.0.22 104898 port 57 104898 unique_id port 104898 remote_ip 10.8.0.6 104900 username aminvpn 104900 mac 104900 bytes_out 0 104900 bytes_in 0 104900 station_ip 83.122.21.152 104900 port 58 104900 unique_id port 104900 remote_ip 10.8.0.6 104903 username avaanna 104903 mac 104903 bytes_out 42537 104903 bytes_in 94931 104903 station_ip 83.122.176.243 104903 port 58 104903 unique_id port 104903 remote_ip 10.8.0.138 104904 username aminvpn 104904 mac 104904 bytes_out 0 104904 bytes_in 0 104904 station_ip 83.122.21.152 104904 port 59 104904 unique_id port 104904 remote_ip 10.8.0.6 104906 username aminvpn 104906 mac 104906 bytes_out 0 104906 bytes_in 0 104906 station_ip 5.120.36.9 104906 port 57 104906 unique_id port 104906 remote_ip 10.8.0.6 104907 username minaghorbani 104907 kill_reason Another user logged on this global unique id 104907 mac 104907 bytes_out 0 104907 bytes_in 0 104907 station_ip 5.120.88.4 104907 port 54 104907 unique_id port 104907 remote_ip 10.8.0.118 104915 username minaghorbani 104915 kill_reason Another user logged on this global unique id 104915 mac 104915 bytes_out 0 104915 bytes_in 0 104915 station_ip 5.120.88.4 104915 port 54 104915 unique_id port 104918 username minaghorbani 104918 kill_reason Another user logged on this global unique id 104918 mac 104918 bytes_out 0 104918 bytes_in 0 104918 station_ip 5.120.88.4 104918 port 54 104918 unique_id port 104919 username bcboard 104919 unique_id port 104919 terminate_cause User-Request 104919 bytes_out 122921 104919 bytes_in 2104573 104919 station_ip 83.123.160.28 104919 port 15730133 104919 nas_port_type Virtual 104919 remote_ip 5.5.5.255 104922 username bcboard 104922 unique_id port 104922 terminate_cause User-Request 104922 bytes_out 91107 104922 bytes_in 1709612 104922 station_ip 83.123.160.28 104922 port 15730134 104922 nas_port_type Virtual 104922 remote_ip 5.5.5.255 104924 username minaghorbani 104924 kill_reason Another user logged on this global unique id 104924 mac 104924 bytes_out 0 104924 bytes_in 0 104924 station_ip 5.120.88.4 104924 port 54 104924 unique_id port 104929 username amir 104929 mac 104929 bytes_out 0 104929 bytes_in 0 104929 station_ip 46.225.211.34 104929 port 24 104929 unique_id port 104929 remote_ip 10.8.1.34 104931 username bcboard 104931 unique_id port 104931 terminate_cause User-Request 104931 bytes_out 86763 104931 bytes_in 1644569 104931 station_ip 83.123.160.28 104931 port 15730136 104931 nas_port_type Virtual 104931 remote_ip 5.5.5.255 104935 username amir 104935 kill_reason Maximum check online fails reached 104935 mac 104935 bytes_out 0 104935 bytes_in 0 104935 station_ip 46.225.211.34 104935 port 25 104935 unique_id port 104944 username bcboard 104944 unique_id port 104944 terminate_cause User-Request 104944 bytes_out 64860 104944 bytes_in 1347727 104944 station_ip 83.123.160.28 104944 port 15730143 104944 nas_port_type Virtual 104944 remote_ip 5.5.5.205 104947 username bcboard 104947 unique_id port 104947 terminate_cause User-Request 104947 bytes_out 81491 104947 bytes_in 1826178 104947 station_ip 83.123.160.28 104947 port 15730145 104947 nas_port_type Virtual 104947 remote_ip 5.5.5.208 104948 username bcboard 104948 unique_id port 104948 terminate_cause User-Request 104948 bytes_out 80257 104948 bytes_in 1476203 104948 station_ip 83.123.160.28 104948 port 15730146 104948 nas_port_type Virtual 104948 remote_ip 5.5.5.209 104958 username zare 104958 mac 104958 bytes_out 962517 104958 bytes_in 12319464 104958 station_ip 37.27.10.252 104958 port 27 104958 unique_id port 104958 remote_ip 10.8.1.110 104959 username zare 104959 mac 104908 station_ip 83.123.160.28 104908 port 15730131 104908 nas_port_type Virtual 104908 remote_ip 5.5.5.233 104909 username bcboard 104909 unique_id port 104909 terminate_cause User-Request 104909 bytes_out 66084 104909 bytes_in 921886 104909 station_ip 83.123.160.28 104909 port 15730132 104909 nas_port_type Virtual 104909 remote_ip 5.5.5.242 104912 username aminvpn 104912 mac 104912 bytes_out 1065985 104912 bytes_in 16147202 104912 station_ip 83.122.21.152 104912 port 58 104912 unique_id port 104912 remote_ip 10.8.0.6 104913 username aminvpn 104913 mac 104913 bytes_out 0 104913 bytes_in 0 104913 station_ip 5.120.36.9 104913 port 56 104913 unique_id port 104913 remote_ip 10.8.0.6 104914 username aminvpn 104914 kill_reason Maximum check online fails reached 104914 mac 104914 bytes_out 0 104914 bytes_in 0 104914 station_ip 5.120.36.9 104914 port 56 104914 unique_id port 104920 username aminvpn 104920 mac 104920 bytes_out 0 104920 bytes_in 0 104920 station_ip 83.122.21.152 104920 port 57 104920 unique_id port 104920 remote_ip 10.8.0.6 104921 username amir 104921 mac 104921 bytes_out 0 104921 bytes_in 0 104921 station_ip 46.225.211.34 104921 port 58 104921 unique_id port 104921 remote_ip 10.8.0.54 104925 username amir 104925 mac 104925 bytes_out 0 104925 bytes_in 0 104925 station_ip 46.225.211.34 104925 port 58 104925 unique_id port 104925 remote_ip 10.8.0.54 104927 username bcboard 104927 unique_id port 104927 terminate_cause User-Request 104927 bytes_out 119129 104927 bytes_in 2126682 104927 station_ip 83.123.160.28 104927 port 15730135 104927 nas_port_type Virtual 104927 remote_ip 5.5.5.255 104930 username amir 104930 kill_reason Maximum check online fails reached 104930 mac 104930 bytes_out 0 104930 bytes_in 0 104930 station_ip 46.225.211.34 104930 port 24 104930 unique_id port 104932 username bcboard 104932 unique_id port 104932 terminate_cause User-Request 104932 bytes_out 142645 104932 bytes_in 2645181 104932 station_ip 83.123.160.28 104932 port 15730137 104932 nas_port_type Virtual 104932 remote_ip 5.5.5.255 104933 username amir 104933 mac 104933 bytes_out 0 104933 bytes_in 0 104933 station_ip 46.225.211.34 104933 port 58 104933 unique_id port 104933 remote_ip 10.8.0.54 104936 username minaghorbani 104936 kill_reason Another user logged on this global unique id 104936 mac 104936 bytes_out 0 104936 bytes_in 0 104936 station_ip 5.120.88.4 104936 port 54 104936 unique_id port 104938 username amir 104938 mac 104938 bytes_out 0 104938 bytes_in 0 104938 station_ip 46.225.211.34 104938 port 26 104938 unique_id port 104938 remote_ip 10.8.1.34 104940 username bcboard 104940 unique_id port 104940 terminate_cause User-Request 104940 bytes_out 94125 104940 bytes_in 1976414 104940 station_ip 83.123.160.28 104940 port 15730140 104940 nas_port_type Virtual 104940 remote_ip 5.5.5.255 104941 username hashtadani 104941 unique_id port 104941 terminate_cause User-Request 104941 bytes_out 358717 104941 bytes_in 2114421 104941 station_ip 83.123.199.34 104941 port 15730141 104941 nas_port_type Virtual 104941 remote_ip 5.5.5.203 104942 username minaghorbani 104942 kill_reason Another user logged on this global unique id 104942 mac 104942 bytes_out 0 104942 bytes_in 0 104942 station_ip 5.120.88.4 104942 port 54 104942 unique_id port 104943 username bcboard 104943 unique_id port 104943 terminate_cause User-Request 104943 bytes_out 94110 104943 bytes_in 1917088 104943 station_ip 83.123.160.28 104943 port 15730142 104943 nas_port_type Virtual 104943 remote_ip 5.5.5.204 104945 username alihosseini 104945 mac 104945 bytes_out 0 104916 username mehdizare 104916 kill_reason Another user logged on this global unique id 104916 mac 104916 bytes_out 0 104916 bytes_in 0 104916 station_ip 5.119.67.248 104916 port 37 104916 unique_id port 104917 username kamali1 104917 mac 104917 bytes_out 2141713 104917 bytes_in 33013803 104917 station_ip 5.119.194.137 104917 port 58 104917 unique_id port 104917 remote_ip 10.8.0.110 104923 username aminvpn 104923 mac 104923 bytes_out 432309 104923 bytes_in 1497914 104923 station_ip 83.123.34.164 104923 port 24 104923 unique_id port 104923 remote_ip 10.8.1.26 104926 username amir 104926 kill_reason Maximum check online fails reached 104926 mac 104926 bytes_out 0 104926 bytes_in 0 104926 station_ip 46.225.211.34 104926 port 57 104926 unique_id port 104928 username amir 104928 mac 104928 bytes_out 0 104928 bytes_in 0 104928 station_ip 46.225.211.34 104928 port 24 104928 unique_id port 104928 remote_ip 10.8.1.34 104934 username bcboard 104934 unique_id port 104934 terminate_cause User-Request 104934 bytes_out 132829 104934 bytes_in 2359922 104934 station_ip 83.123.160.28 104934 port 15730138 104934 nas_port_type Virtual 104934 remote_ip 5.5.5.255 104937 username bcboard 104937 unique_id port 104937 terminate_cause User-Request 104937 bytes_out 68169 104937 bytes_in 1000307 104937 station_ip 83.123.160.28 104937 port 15730139 104937 nas_port_type Virtual 104937 remote_ip 5.5.5.255 104939 username mirzaei 104939 kill_reason Another user logged on this global unique id 104939 mac 104939 bytes_out 0 104939 bytes_in 0 104939 station_ip 5.120.38.94 104939 port 55 104939 unique_id port 104951 username minaghorbani 104951 kill_reason Another user logged on this global unique id 104951 mac 104951 bytes_out 0 104951 bytes_in 0 104951 station_ip 5.120.88.4 104951 port 54 104951 unique_id port 104952 username bcboard 104952 unique_id port 104952 terminate_cause User-Request 104952 bytes_out 121568 104952 bytes_in 1879359 104952 station_ip 83.123.160.28 104952 port 15730149 104952 nas_port_type Virtual 104952 remote_ip 5.5.5.212 104956 username aminvpn 104956 mac 104956 bytes_out 0 104956 bytes_in 0 104956 station_ip 5.120.36.9 104956 port 50 104956 unique_id port 104956 remote_ip 10.8.0.6 104960 username zare 104960 mac 104960 bytes_out 0 104960 bytes_in 0 104960 station_ip 37.27.10.252 104960 port 50 104960 unique_id port 104960 remote_ip 10.8.0.150 104966 username zare 104966 mac 104966 bytes_out 0 104966 bytes_in 0 104966 station_ip 37.27.10.252 104966 port 58 104966 unique_id port 104966 remote_ip 10.8.0.150 104971 username zare 104971 mac 104971 bytes_out 15756 104971 bytes_in 26011 104971 station_ip 37.27.10.252 104971 port 58 104971 unique_id port 104971 remote_ip 10.8.0.150 104974 username zare 104974 mac 104974 bytes_out 0 104974 bytes_in 0 104974 station_ip 37.27.10.252 104974 port 58 104974 unique_id port 104974 remote_ip 10.8.0.150 104975 username zare 104975 mac 104975 bytes_out 0 104975 bytes_in 0 104975 station_ip 37.27.10.252 104975 port 58 104975 unique_id port 104975 remote_ip 10.8.0.150 104976 username zare 104976 mac 104976 bytes_out 0 104976 bytes_in 0 104976 station_ip 37.27.10.252 104976 port 58 104976 unique_id port 104976 remote_ip 10.8.0.150 104980 username zare 104980 mac 104980 bytes_out 0 104980 bytes_in 0 104980 station_ip 37.27.10.252 104980 port 59 104980 unique_id port 104980 remote_ip 10.8.0.150 104983 username zare 104983 mac 104983 bytes_out 16831 104983 bytes_in 28705 104983 station_ip 37.27.10.252 104945 bytes_in 0 104945 station_ip 5.120.162.36 104945 port 50 104945 unique_id port 104945 remote_ip 10.8.0.14 104946 username bcboard 104946 unique_id port 104946 terminate_cause User-Request 104946 bytes_out 79481 104946 bytes_in 2029944 104946 station_ip 83.123.160.28 104946 port 15730144 104946 nas_port_type Virtual 104946 remote_ip 5.5.5.206 104949 username bcboard 104949 unique_id port 104949 terminate_cause User-Request 104949 bytes_out 49817 104949 bytes_in 1061876 104949 station_ip 83.123.160.28 104949 port 15730147 104949 nas_port_type Virtual 104949 remote_ip 5.5.5.210 104950 username bcboard 104950 unique_id port 104950 terminate_cause User-Request 104950 bytes_out 104539 104950 bytes_in 1982614 104950 station_ip 83.123.160.28 104950 port 15730148 104950 nas_port_type Virtual 104950 remote_ip 5.5.5.211 104953 username bcboard 104953 unique_id port 104953 terminate_cause User-Request 104953 bytes_out 0 104953 bytes_in 0 104953 station_ip 37.129.114.166 104953 port 15730150 104953 nas_port_type Virtual 104953 remote_ip 5.5.5.219 104954 username bcboard 104954 unique_id port 104954 terminate_cause User-Request 104954 bytes_out 619993 104954 bytes_in 26964483 104954 station_ip 37.129.114.166 104954 port 15730151 104954 nas_port_type Virtual 104954 remote_ip 5.5.5.222 104955 username hoorieh 104955 kill_reason Another user logged on this global unique id 104955 mac 104955 bytes_out 0 104955 bytes_in 0 104955 station_ip 5.119.179.119 104955 port 58 104955 unique_id port 104955 remote_ip 10.8.0.10 104957 username hoorieh 104957 mac 104957 bytes_out 0 104957 bytes_in 0 104957 station_ip 5.119.179.119 104957 port 58 104957 unique_id port 104962 username bcboard 104962 unique_id port 104962 terminate_cause User-Request 104962 bytes_out 109022 104962 bytes_in 3487294 104962 station_ip 37.129.114.166 104962 port 15730152 104962 nas_port_type Virtual 104962 remote_ip 5.5.5.223 104963 username zare 104963 kill_reason Maximum check online fails reached 104963 mac 104963 bytes_out 0 104963 bytes_in 0 104963 station_ip 37.27.10.252 104963 port 50 104963 unique_id port 104967 username zare 104967 mac 104967 bytes_out 1636 104967 bytes_in 5576 104967 station_ip 37.27.10.252 104967 port 58 104967 unique_id port 104967 remote_ip 10.8.0.150 104968 username zare 104968 mac 104968 bytes_out 0 104968 bytes_in 0 104968 station_ip 37.27.10.252 104968 port 58 104968 unique_id port 104968 remote_ip 10.8.0.150 104969 username minaghorbani 104969 kill_reason Another user logged on this global unique id 104969 mac 104969 bytes_out 0 104969 bytes_in 0 104969 station_ip 5.120.88.4 104969 port 54 104969 unique_id port 104970 username zare 104970 mac 104970 bytes_out 0 104970 bytes_in 0 104970 station_ip 37.27.10.252 104970 port 58 104970 unique_id port 104970 remote_ip 10.8.0.150 104973 username zare 104973 mac 104973 bytes_out 0 104973 bytes_in 0 104973 station_ip 37.27.10.252 104973 port 58 104973 unique_id port 104973 remote_ip 10.8.0.150 104978 username zare 104978 mac 104978 bytes_out 0 104978 bytes_in 0 104978 station_ip 37.27.10.252 104978 port 59 104978 unique_id port 104978 remote_ip 10.8.0.150 104982 username minaghorbani 104982 kill_reason Another user logged on this global unique id 104982 mac 104982 bytes_out 0 104982 bytes_in 0 104982 station_ip 5.120.88.4 104982 port 54 104982 unique_id port 104987 username minaghorbani 104987 mac 104987 bytes_out 0 104987 bytes_in 0 104987 station_ip 5.120.88.4 104987 port 54 104987 unique_id port 104990 username rajaei 104990 kill_reason Another user logged on this global unique id 104990 mac 104959 bytes_out 0 104959 bytes_in 0 104959 station_ip 37.27.10.252 104959 port 50 104959 unique_id port 104959 remote_ip 10.8.0.150 104961 username zare 104961 mac 104961 bytes_out 0 104961 bytes_in 0 104961 station_ip 37.27.10.252 104961 port 50 104961 unique_id port 104961 remote_ip 10.8.0.150 104964 username bcboard 104964 unique_id port 104964 terminate_cause User-Request 104964 bytes_out 16762 104964 bytes_in 89480 104964 station_ip 37.129.114.166 104964 port 15730153 104964 nas_port_type Virtual 104964 remote_ip 5.5.5.255 104965 username aminvpn 104965 mac 104965 bytes_out 1153728 104965 bytes_in 8380309 104965 station_ip 83.123.49.184 104965 port 26 104965 unique_id port 104965 remote_ip 10.8.1.26 104972 username zare 104972 mac 104972 bytes_out 0 104972 bytes_in 0 104972 station_ip 37.27.10.252 104972 port 58 104972 unique_id port 104972 remote_ip 10.8.0.150 104977 username zare 104977 mac 104977 bytes_out 17137 104977 bytes_in 52992 104977 station_ip 37.27.10.252 104977 port 26 104977 unique_id port 104977 remote_ip 10.8.1.110 104979 username zare 104979 mac 104979 bytes_out 0 104979 bytes_in 0 104979 station_ip 37.27.10.252 104979 port 59 104979 unique_id port 104979 remote_ip 10.8.0.150 104981 username zare 104981 mac 104981 bytes_out 0 104981 bytes_in 0 104981 station_ip 37.27.10.252 104981 port 59 104981 unique_id port 104981 remote_ip 10.8.0.150 104984 username zare 104984 mac 104984 bytes_out 0 104984 bytes_in 0 104984 station_ip 37.27.10.252 104984 port 60 104984 unique_id port 104984 remote_ip 10.8.0.150 104985 username zare 104985 mac 104985 bytes_out 0 104985 bytes_in 0 104985 station_ip 37.27.10.252 104985 port 60 104985 unique_id port 104985 remote_ip 10.8.0.150 104986 username zare 104986 mac 104986 bytes_out 0 104986 bytes_in 0 104986 station_ip 37.27.10.252 104986 port 60 104986 unique_id port 104986 remote_ip 10.8.0.150 104992 username hamid 104992 mac 104992 bytes_out 183096 104992 bytes_in 786412 104992 station_ip 83.123.118.43 104992 port 60 104992 unique_id port 104992 remote_ip 10.8.0.134 104994 username musa 104994 kill_reason Another user logged on this global unique id 104994 mac 104994 bytes_out 0 104994 bytes_in 0 104994 station_ip 158.58.54.100 104994 port 1 104994 unique_id port 104994 remote_ip 10.8.0.6 104998 username abbasaskari 104998 mac 104998 bytes_out 0 104998 bytes_in 0 104998 station_ip 5.211.45.166 104998 port 2 104998 unique_id port 104998 remote_ip 10.8.0.10 105003 username aminvpn 105003 mac 105003 bytes_out 0 105003 bytes_in 0 105003 station_ip 5.120.36.9 105003 port 2 105003 unique_id port 105003 remote_ip 10.8.0.14 105005 username aminvpn 105005 mac 105005 bytes_out 0 105005 bytes_in 0 105005 station_ip 5.120.36.9 105005 port 3 105005 unique_id port 105005 remote_ip 10.8.0.14 105007 username sobhan 105007 unique_id port 105007 terminate_cause Lost-Carrier 105007 bytes_out 35352566 105007 bytes_in 802024724 105007 station_ip 5.119.121.70 105007 port 15728642 105007 nas_port_type Virtual 105007 remote_ip 5.5.5.250 105008 username houshang 105008 mac 105008 bytes_out 295790 105008 bytes_in 1259895 105008 station_ip 5.119.87.127 105008 port 3 105008 unique_id port 105008 remote_ip 10.8.0.22 105014 username musa 105014 kill_reason Maximum check online fails reached 105014 mac 105014 bytes_out 0 105014 bytes_in 0 105014 station_ip 158.58.54.100 105014 port 3 105014 unique_id port 105015 username aminvpn 105015 mac 104983 port 60 104983 unique_id port 104983 remote_ip 10.8.0.150 104988 username zare 104988 mac 104988 bytes_out 0 104988 bytes_in 0 104988 station_ip 37.27.10.252 104988 port 54 104988 unique_id port 104988 remote_ip 10.8.0.150 104989 username hamid 104989 mac 104989 bytes_out 1814392 104989 bytes_in 7895007 104989 station_ip 83.123.118.43 104989 port 58 104989 unique_id port 104989 remote_ip 10.8.0.134 104995 username aminvpn 104995 mac 104995 bytes_out 0 104995 bytes_in 0 104995 station_ip 5.120.36.9 104995 port 1 104995 unique_id port 104995 remote_ip 10.8.1.6 105002 username aminvpn 105002 mac 105002 bytes_out 0 105002 bytes_in 0 105002 station_ip 5.120.36.9 105002 port 2 105002 unique_id port 105002 remote_ip 10.8.0.14 105004 username zare 105004 mac 105004 bytes_out 0 105004 bytes_in 0 105004 station_ip 188.245.88.131 105004 port 2 105004 unique_id port 105004 remote_ip 10.8.0.18 105006 username zare 105006 kill_reason Another user logged on this global unique id 105006 mac 105006 bytes_out 0 105006 bytes_in 0 105006 station_ip 188.245.88.131 105006 port 2 105006 unique_id port 105006 remote_ip 10.8.0.18 105009 username aminvpn 105009 mac 105009 bytes_out 0 105009 bytes_in 0 105009 station_ip 5.120.36.9 105009 port 3 105009 unique_id port 105009 remote_ip 10.8.0.14 105011 username aminvpn 105011 mac 105011 bytes_out 0 105011 bytes_in 0 105011 station_ip 5.120.36.9 105011 port 3 105011 unique_id port 105011 remote_ip 10.8.0.14 105013 username musa 105013 mac 105013 bytes_out 0 105013 bytes_in 0 105013 station_ip 158.58.54.100 105013 port 1 105013 unique_id port 105013 remote_ip 10.8.1.10 105018 username ahmadipour 105018 unique_id port 105018 terminate_cause User-Request 105018 bytes_out 1153278 105018 bytes_in 22574258 105018 station_ip 83.123.108.58 105018 port 15728644 105018 nas_port_type Virtual 105018 remote_ip 5.5.5.246 105019 username aminvpn 105019 mac 105019 bytes_out 0 105019 bytes_in 0 105019 station_ip 5.120.36.9 105019 port 1 105019 unique_id port 105019 remote_ip 10.8.1.6 105020 username aminvpn 105020 mac 105020 bytes_out 0 105020 bytes_in 0 105020 station_ip 5.120.36.9 105020 port 1 105020 unique_id port 105020 remote_ip 10.8.1.6 105028 username alemzadeh 105028 kill_reason Relative expiration date has reached 105028 unique_id port 105028 bytes_out 0 105028 bytes_in 0 105028 station_ip 83.123.148.213 105028 port 15728646 105028 nas_port_type Virtual 105029 username madadi2 105029 mac 105029 bytes_out 0 105029 bytes_in 0 105029 station_ip 5.119.120.241 105029 port 6 105029 unique_id port 105029 remote_ip 10.8.0.30 105032 username aminvpn 105032 mac 105032 bytes_out 0 105032 bytes_in 0 105032 station_ip 5.120.36.9 105032 port 2 105032 unique_id port 105032 remote_ip 10.8.1.6 105036 username zare 105036 kill_reason Maximum check online fails reached 105036 mac 105036 bytes_out 0 105036 bytes_in 0 105036 station_ip 188.245.88.131 105036 port 2 105036 unique_id port 105039 username rajaei 105039 mac 105039 bytes_out 2944336 105039 bytes_in 32176699 105039 station_ip 37.137.9.229 105039 port 2 105039 unique_id port 105039 remote_ip 10.8.0.34 105040 username rajaei 105040 mac 105040 bytes_out 1172260 105040 bytes_in 13503849 105040 station_ip 37.137.9.229 105040 port 4 105040 unique_id port 105040 remote_ip 10.8.0.34 105041 username hoorieh 105041 kill_reason Another user logged on this global unique id 105041 mac 105041 bytes_out 0 105041 bytes_in 0 104990 bytes_out 0 104990 bytes_in 0 104990 station_ip 89.47.146.78 104990 port 59 104990 unique_id port 104990 remote_ip 10.8.0.142 104991 username rajaei 104991 kill_reason Another user logged on this global unique id 104991 mac 104991 bytes_out 0 104991 bytes_in 0 104991 station_ip 89.47.146.78 104991 port 59 104991 unique_id port 104993 username hamid 104993 mac 104993 bytes_out 0 104993 bytes_in 0 104993 station_ip 83.123.118.43 104993 port 62 104993 unique_id port 104993 remote_ip 10.8.0.134 104996 username sobhan 104996 unique_id port 104996 terminate_cause Lost-Carrier 104996 bytes_out 131965 104996 bytes_in 557647 104996 station_ip 5.120.97.91 104996 port 15728641 104996 nas_port_type Virtual 104996 remote_ip 5.5.5.252 104997 username aminvpn 104997 mac 104997 bytes_out 0 104997 bytes_in 0 104997 station_ip 5.120.36.9 104997 port 1 104997 unique_id port 104997 remote_ip 10.8.1.6 104999 username abbasaskari 104999 kill_reason Maximum check online fails reached 104999 mac 104999 bytes_out 0 104999 bytes_in 0 104999 station_ip 5.211.45.166 104999 port 1 104999 unique_id port 105000 username aminvpn 105000 mac 105000 bytes_out 0 105000 bytes_in 0 105000 station_ip 5.120.36.9 105000 port 2 105000 unique_id port 105000 remote_ip 10.8.0.14 105001 username aminvpn 105001 mac 105001 bytes_out 0 105001 bytes_in 0 105001 station_ip 5.120.36.9 105001 port 2 105001 unique_id port 105001 remote_ip 10.8.0.14 105010 username aminvpn 105010 mac 105010 bytes_out 0 105010 bytes_in 0 105010 station_ip 5.120.36.9 105010 port 3 105010 unique_id port 105010 remote_ip 10.8.0.14 105012 username aminvpn 105012 mac 105012 bytes_out 0 105012 bytes_in 0 105012 station_ip 5.120.36.9 105012 port 3 105012 unique_id port 105012 remote_ip 10.8.0.14 105016 username aminvpn 105016 mac 105016 bytes_out 0 105016 bytes_in 0 105016 station_ip 5.120.36.9 105016 port 1 105016 unique_id port 105016 remote_ip 10.8.1.6 105022 username hashtadani 105022 unique_id port 105022 terminate_cause User-Request 105022 bytes_out 101411 105022 bytes_in 677351 105022 station_ip 37.129.165.176 105022 port 15728645 105022 nas_port_type Virtual 105022 remote_ip 5.5.5.244 105023 username aminvpn 105023 mac 105023 bytes_out 0 105023 bytes_in 0 105023 station_ip 5.120.36.9 105023 port 1 105023 unique_id port 105023 remote_ip 10.8.1.6 105024 username aminvpn 105024 kill_reason Maximum check online fails reached 105024 mac 105024 bytes_out 0 105024 bytes_in 0 105024 station_ip 5.120.36.9 105024 port 1 105024 unique_id port 105025 username houshang 105025 mac 105025 bytes_out 703537 105025 bytes_in 11217388 105025 station_ip 5.119.87.127 105025 port 5 105025 unique_id port 105025 remote_ip 10.8.0.22 105026 username zare 105026 kill_reason Another user logged on this global unique id 105026 mac 105026 bytes_out 0 105026 bytes_in 0 105026 station_ip 188.245.88.131 105026 port 2 105026 unique_id port 105027 username houshang 105027 kill_reason Maximum check online fails reached 105027 mac 105027 bytes_out 0 105027 bytes_in 0 105027 station_ip 5.119.87.127 105027 port 5 105027 unique_id port 105031 username aminvpn 105031 mac 105031 bytes_out 0 105031 bytes_in 0 105031 station_ip 5.120.36.9 105031 port 2 105031 unique_id port 105031 remote_ip 10.8.1.6 105034 username farhad1 105034 mac 105034 bytes_out 3006506 105034 bytes_in 10134111 105034 station_ip 5.119.214.3 105034 port 4 105034 unique_id port 105034 remote_ip 10.8.0.26 105037 username farhad1 105037 mac 105015 bytes_out 0 105015 bytes_in 0 105015 station_ip 5.120.36.9 105015 port 1 105015 unique_id port 105015 remote_ip 10.8.1.6 105017 username aminvpn 105017 mac 105017 bytes_out 0 105017 bytes_in 0 105017 station_ip 83.123.31.152 105017 port 4 105017 unique_id port 105017 remote_ip 10.8.0.14 105021 username aminvpn 105021 unique_id port 105021 terminate_cause User-Request 105021 bytes_out 1565695 105021 bytes_in 43326662 105021 station_ip 31.57.141.15 105021 port 15728643 105021 nas_port_type Virtual 105021 remote_ip 5.5.5.248 105030 username zare 105030 kill_reason Another user logged on this global unique id 105030 mac 105030 bytes_out 0 105030 bytes_in 0 105030 station_ip 188.245.88.131 105030 port 2 105030 unique_id port 105033 username aminvpn 105033 unique_id port 105033 terminate_cause User-Request 105033 bytes_out 9060870 105033 bytes_in 407107010 105033 station_ip 5.120.36.9 105033 port 15728640 105033 nas_port_type Virtual 105033 remote_ip 5.5.5.254 105035 username madadi2 105035 mac 105035 bytes_out 0 105035 bytes_in 0 105035 station_ip 5.120.72.94 105035 port 6 105035 unique_id port 105035 remote_ip 10.8.0.30 105038 username madadi2 105038 mac 105038 bytes_out 0 105038 bytes_in 0 105038 station_ip 5.120.78.226 105038 port 2 105038 unique_id port 105038 remote_ip 10.8.0.30 105050 username hashtadani 105050 unique_id port 105050 terminate_cause User-Request 105050 bytes_out 1584306 105050 bytes_in 31664336 105050 station_ip 37.129.165.176 105050 port 15728648 105050 nas_port_type Virtual 105050 remote_ip 5.5.5.243 105055 username abbasaskari 105055 mac 105055 bytes_out 0 105055 bytes_in 0 105055 station_ip 83.123.60.242 105055 port 2 105055 unique_id port 105055 remote_ip 10.8.0.10 105057 username abbasaskari 105057 mac 105057 bytes_out 0 105057 bytes_in 0 105057 station_ip 83.123.60.242 105057 port 2 105057 unique_id port 105057 remote_ip 10.8.0.10 105058 username tahmasebi 105058 kill_reason Another user logged on this global unique id 105058 mac 105058 bytes_out 0 105058 bytes_in 0 105058 station_ip 5.119.42.112 105058 port 4 105058 unique_id port 105059 username morteza 105059 kill_reason Another user logged on this global unique id 105059 mac 105059 bytes_out 0 105059 bytes_in 0 105059 station_ip 37.129.99.130 105059 port 6 105059 unique_id port 105059 remote_ip 10.8.0.46 105066 username farhad1 105066 mac 105066 bytes_out 249627 105066 bytes_in 1199546 105066 station_ip 5.119.201.220 105066 port 7 105066 unique_id port 105066 remote_ip 10.8.0.26 105070 username tahmasebi 105070 kill_reason Another user logged on this global unique id 105070 mac 105070 bytes_out 0 105070 bytes_in 0 105070 station_ip 5.119.42.112 105070 port 4 105070 unique_id port 105073 username abbasaskari 105073 mac 105073 bytes_out 10255 105073 bytes_in 29603 105073 station_ip 83.123.77.42 105073 port 7 105073 unique_id port 105073 remote_ip 10.8.0.10 105077 username amir 105077 mac 105077 bytes_out 56208 105077 bytes_in 191681 105077 station_ip 46.225.215.197 105077 port 2 105077 unique_id port 105077 remote_ip 10.8.0.50 105081 username mohammadmahdi 105081 mac 105081 bytes_out 0 105081 bytes_in 0 105081 station_ip 5.119.157.172 105081 port 6 105081 unique_id port 105081 remote_ip 10.8.0.54 105086 username tahmasebi 105086 kill_reason Another user logged on this global unique id 105086 mac 105086 bytes_out 0 105086 bytes_in 0 105086 station_ip 5.119.42.112 105086 port 4 105086 unique_id port 105087 username amir 105087 mac 105087 bytes_out 0 105087 bytes_in 0 105087 station_ip 46.225.215.197 105037 bytes_out 0 105037 bytes_in 0 105037 station_ip 5.119.166.102 105037 port 4 105037 unique_id port 105037 remote_ip 10.8.0.26 105042 username hoorieh 105042 mac 105042 bytes_out 0 105042 bytes_in 0 105042 station_ip 5.119.179.119 105042 port 2 105042 unique_id port 105045 username abbasaskari 105045 mac 105045 bytes_out 0 105045 bytes_in 0 105045 station_ip 83.123.60.242 105045 port 3 105045 unique_id port 105045 remote_ip 10.8.1.14 105049 username houshang 105049 mac 105049 bytes_out 0 105049 bytes_in 0 105049 station_ip 5.120.153.3 105049 port 2 105049 unique_id port 105049 remote_ip 10.8.0.22 105051 username tahmasebi 105051 kill_reason Another user logged on this global unique id 105051 mac 105051 bytes_out 0 105051 bytes_in 0 105051 station_ip 5.119.42.112 105051 port 4 105051 unique_id port 105051 remote_ip 10.8.0.42 105053 username abbasaskari 105053 mac 105053 bytes_out 0 105053 bytes_in 0 105053 station_ip 83.123.60.242 105053 port 2 105053 unique_id port 105053 remote_ip 10.8.0.10 105060 username musa 105060 mac 105060 bytes_out 0 105060 bytes_in 0 105060 station_ip 93.110.30.75 105060 port 2 105060 unique_id port 105060 remote_ip 10.8.0.6 105062 username tahmasebi 105062 kill_reason Another user logged on this global unique id 105062 mac 105062 bytes_out 0 105062 bytes_in 0 105062 station_ip 5.119.42.112 105062 port 4 105062 unique_id port 105067 username musa 105067 mac 105067 bytes_out 0 105067 bytes_in 0 105067 station_ip 93.110.30.75 105067 port 3 105067 unique_id port 105067 remote_ip 10.8.1.10 105068 username tahmasebi 105068 kill_reason Another user logged on this global unique id 105068 mac 105068 bytes_out 0 105068 bytes_in 0 105068 station_ip 5.119.42.112 105068 port 4 105068 unique_id port 105069 username sobhan 105069 unique_id port 105069 terminate_cause Lost-Carrier 105069 bytes_out 1168915 105069 bytes_in 12910669 105069 station_ip 5.119.100.101 105069 port 15728654 105069 nas_port_type Virtual 105069 remote_ip 5.5.5.232 105071 username musa 105071 mac 105071 bytes_out 19590 105071 bytes_in 47838 105071 station_ip 93.110.30.75 105071 port 7 105071 unique_id port 105071 remote_ip 10.8.0.6 105072 username mohammadmahdi 105072 kill_reason Another user logged on this global unique id 105072 mac 105072 bytes_out 0 105072 bytes_in 0 105072 station_ip 5.119.157.172 105072 port 6 105072 unique_id port 105072 remote_ip 10.8.0.54 105075 username morteza 105075 kill_reason Another user logged on this global unique id 105075 mac 105075 bytes_out 0 105075 bytes_in 0 105075 station_ip 37.129.99.130 105075 port 8 105075 unique_id port 105075 remote_ip 10.8.0.46 105079 username hamid.e 105079 unique_id port 105079 terminate_cause User-Request 105079 bytes_out 6722496 105079 bytes_in 39633098 105079 station_ip 37.27.37.62 105079 port 15728652 105079 nas_port_type Virtual 105079 remote_ip 5.5.5.235 105080 username abbasaskari 105080 mac 105080 bytes_out 0 105080 bytes_in 0 105080 station_ip 83.123.11.130 105080 port 10 105080 unique_id port 105080 remote_ip 10.8.0.10 105083 username farhad1 105083 mac 105083 bytes_out 0 105083 bytes_in 0 105083 station_ip 5.119.77.61 105083 port 7 105083 unique_id port 105083 remote_ip 10.8.0.26 105088 username malekpoir 105088 kill_reason Another user logged on this global unique id 105088 mac 105088 bytes_out 0 105088 bytes_in 0 105088 station_ip 5.120.50.98 105088 port 9 105088 unique_id port 105088 remote_ip 10.8.0.58 105095 username amir 105095 mac 105095 bytes_out 0 105095 bytes_in 0 105095 station_ip 46.225.215.197 105041 station_ip 5.119.179.119 105041 port 2 105041 unique_id port 105041 remote_ip 10.8.0.38 105043 username abbasaskari 105043 kill_reason Another user logged on this global unique id 105043 mac 105043 bytes_out 0 105043 bytes_in 0 105043 station_ip 83.123.60.242 105043 port 2 105043 unique_id port 105043 remote_ip 10.8.0.10 105044 username abbasaskari 105044 mac 105044 bytes_out 0 105044 bytes_in 0 105044 station_ip 83.123.60.242 105044 port 2 105044 unique_id port 105044 remote_ip 10.8.1.14 105046 username ahmadi 105046 unique_id port 105046 terminate_cause User-Request 105046 bytes_out 74090 105046 bytes_in 240299 105046 station_ip 83.123.201.31 105046 port 15728651 105046 nas_port_type Virtual 105046 remote_ip 5.5.5.237 105047 username rajaei 105047 kill_reason Another user logged on this global unique id 105047 mac 105047 bytes_out 0 105047 bytes_in 0 105047 station_ip 5.200.104.220 105047 port 2 105047 unique_id port 105047 remote_ip 10.8.0.34 105048 username khalili 105048 mac 105048 bytes_out 0 105048 bytes_in 0 105048 station_ip 5.119.88.140 105048 port 2 105048 unique_id port 105048 remote_ip 10.8.1.18 105052 username houshang 105052 mac 105052 bytes_out 0 105052 bytes_in 0 105052 station_ip 5.120.153.3 105052 port 6 105052 unique_id port 105052 remote_ip 10.8.0.22 105054 username tahmasebi 105054 kill_reason Another user logged on this global unique id 105054 mac 105054 bytes_out 0 105054 bytes_in 0 105054 station_ip 5.119.42.112 105054 port 4 105054 unique_id port 105056 username ahmadi 105056 unique_id port 105056 terminate_cause User-Request 105056 bytes_out 13690 105056 bytes_in 51752 105056 station_ip 83.123.201.31 105056 port 15728653 105056 nas_port_type Virtual 105056 remote_ip 5.5.5.234 105061 username aminvpn 105061 unique_id port 105061 terminate_cause User-Request 105061 bytes_out 871053 105061 bytes_in 5510800 105061 station_ip 31.57.132.7 105061 port 15728649 105061 nas_port_type Virtual 105061 remote_ip 5.5.5.241 105063 username morteza 105063 kill_reason Another user logged on this global unique id 105063 mac 105063 bytes_out 0 105063 bytes_in 0 105063 station_ip 37.129.99.130 105063 port 6 105063 unique_id port 105064 username farhad1 105064 mac 105064 bytes_out 2337811 105064 bytes_in 20538959 105064 station_ip 5.120.177.50 105064 port 7 105064 unique_id port 105064 remote_ip 10.8.0.26 105065 username morteza 105065 mac 105065 bytes_out 0 105065 bytes_in 0 105065 station_ip 37.129.99.130 105065 port 6 105065 unique_id port 105074 username amir 105074 kill_reason Another user logged on this global unique id 105074 mac 105074 bytes_out 0 105074 bytes_in 0 105074 station_ip 46.225.215.197 105074 port 2 105074 unique_id port 105074 remote_ip 10.8.0.50 105076 username khalili 105076 mac 105076 bytes_out 0 105076 bytes_in 0 105076 station_ip 5.119.88.140 105076 port 2 105076 unique_id port 105076 remote_ip 10.8.1.18 105078 username mohammadmahdi 105078 mac 105078 bytes_out 0 105078 bytes_in 0 105078 station_ip 5.119.157.172 105078 port 6 105078 unique_id port 105082 username amir 105082 mac 105082 bytes_out 0 105082 bytes_in 0 105082 station_ip 46.225.215.197 105082 port 6 105082 unique_id port 105082 remote_ip 10.8.0.50 105084 username morteza 105084 kill_reason Another user logged on this global unique id 105084 mac 105084 bytes_out 0 105084 bytes_in 0 105084 station_ip 37.129.99.130 105084 port 8 105084 unique_id port 105085 username musa 105085 mac 105085 bytes_out 1651250 105085 bytes_in 8430572 105085 station_ip 93.110.118.43 105085 port 2 105085 unique_id port 105085 remote_ip 10.8.0.6 105089 username khalili 105089 mac 105089 bytes_out 366551 105089 bytes_in 1063111 105089 station_ip 5.119.88.140 105089 port 3 105089 unique_id port 105089 remote_ip 10.8.1.18 105090 username alireza 105090 unique_id port 105090 terminate_cause Lost-Carrier 105090 bytes_out 6874296 105090 bytes_in 69070938 105090 station_ip 5.119.76.227 105090 port 15728650 105090 nas_port_type Virtual 105090 remote_ip 5.5.5.239 105091 username amir 105091 mac 105091 bytes_out 46746 105091 bytes_in 378430 105091 station_ip 46.225.215.197 105091 port 10 105091 unique_id port 105091 remote_ip 10.8.0.50 105097 username sobhan 105097 unique_id port 105097 terminate_cause Lost-Carrier 105097 bytes_out 11480619 105097 bytes_in 231444721 105097 station_ip 5.119.100.101 105097 port 15728656 105097 nas_port_type Virtual 105097 remote_ip 5.5.5.230 105100 username alirr 105100 unique_id port 105100 terminate_cause User-Request 105100 bytes_out 221477 105100 bytes_in 4482224 105100 station_ip 151.238.230.111 105100 port 15728658 105100 nas_port_type Virtual 105100 remote_ip 5.5.5.227 105102 username amir 105102 mac 105102 bytes_out 0 105102 bytes_in 0 105102 station_ip 46.225.215.197 105102 port 8 105102 unique_id port 105102 remote_ip 10.8.0.50 105103 username amir 105103 mac 105103 bytes_out 0 105103 bytes_in 0 105103 station_ip 46.225.215.197 105103 port 8 105103 unique_id port 105103 remote_ip 10.8.0.50 105104 username malekpoir 105104 kill_reason Another user logged on this global unique id 105104 mac 105104 bytes_out 0 105104 bytes_in 0 105104 station_ip 5.120.50.98 105104 port 2 105104 unique_id port 105104 remote_ip 10.8.0.58 105108 username aminvpn 105108 mac 105108 bytes_out 0 105108 bytes_in 0 105108 station_ip 83.122.186.204 105108 port 10 105108 unique_id port 105108 remote_ip 10.8.0.14 105114 username aminvpn 105114 mac 105114 bytes_out 0 105114 bytes_in 0 105114 station_ip 83.122.186.204 105114 port 10 105114 unique_id port 105114 remote_ip 10.8.0.14 105115 username musa 105115 mac 105115 bytes_out 0 105115 bytes_in 0 105115 station_ip 93.110.118.43 105115 port 11 105115 unique_id port 105115 remote_ip 10.8.0.6 105121 username tahmasebi 105121 kill_reason Another user logged on this global unique id 105121 mac 105121 bytes_out 0 105121 bytes_in 0 105121 station_ip 5.119.42.112 105121 port 4 105121 unique_id port 105122 username avaanna 105122 kill_reason Maximum check online fails reached 105122 mac 105122 bytes_out 0 105122 bytes_in 0 105122 station_ip 37.129.97.107 105122 port 7 105122 unique_id port 105124 username khalili 105124 mac 105124 bytes_out 1684018 105124 bytes_in 17354259 105124 station_ip 5.119.88.140 105124 port 2 105124 unique_id port 105124 remote_ip 10.8.1.18 105126 username amir 105126 mac 105126 bytes_out 0 105126 bytes_in 0 105126 station_ip 46.225.215.197 105126 port 10 105126 unique_id port 105126 remote_ip 10.8.0.50 105127 username kamali1 105127 mac 105127 bytes_out 365423 105127 bytes_in 3583438 105127 station_ip 5.119.70.68 105127 port 10 105127 unique_id port 105127 remote_ip 10.8.0.70 105130 username amir 105130 mac 105130 bytes_out 0 105130 bytes_in 0 105130 station_ip 46.225.215.197 105130 port 10 105130 unique_id port 105130 remote_ip 10.8.0.50 105134 username arabpour 105134 unique_id port 105134 terminate_cause User-Request 105134 bytes_out 150477 105134 bytes_in 1039899 105134 station_ip 37.129.224.114 105134 port 15728661 105134 nas_port_type Virtual 105134 remote_ip 5.5.5.221 105087 port 6 105087 unique_id port 105087 remote_ip 10.8.0.50 105092 username mohammadmahdi 105092 kill_reason Another user logged on this global unique id 105092 mac 105092 bytes_out 0 105092 bytes_in 0 105092 station_ip 5.119.157.172 105092 port 6 105092 unique_id port 105092 remote_ip 10.8.0.54 105093 username morteza 105093 mac 105093 bytes_out 0 105093 bytes_in 0 105093 station_ip 37.129.99.130 105093 port 8 105093 unique_id port 105094 username malekpoir 105094 mac 105094 bytes_out 0 105094 bytes_in 0 105094 station_ip 5.120.50.98 105094 port 9 105094 unique_id port 105098 username ahmadi 105098 unique_id port 105098 terminate_cause User-Request 105098 bytes_out 147242 105098 bytes_in 1405584 105098 station_ip 83.123.201.31 105098 port 15728657 105098 nas_port_type Virtual 105098 remote_ip 5.5.5.229 105099 username morteza 105099 mac 105099 bytes_out 42531 105099 bytes_in 92463 105099 station_ip 37.129.99.130 105099 port 8 105099 unique_id port 105099 remote_ip 10.8.0.46 105101 username amir 105101 mac 105101 bytes_out 0 105101 bytes_in 0 105101 station_ip 46.225.215.197 105101 port 6 105101 unique_id port 105101 remote_ip 10.8.0.50 105105 username amir 105105 mac 105105 bytes_out 0 105105 bytes_in 0 105105 station_ip 46.225.215.197 105105 port 2 105105 unique_id port 105105 remote_ip 10.8.1.22 105107 username amir 105107 mac 105107 bytes_out 0 105107 bytes_in 0 105107 station_ip 46.225.215.197 105107 port 12 105107 unique_id port 105107 remote_ip 10.8.0.50 105109 username aminvpn 105109 mac 105109 bytes_out 0 105109 bytes_in 0 105109 station_ip 83.122.188.20 105109 port 12 105109 unique_id port 105109 remote_ip 10.8.0.14 105110 username aminvpn 105110 mac 105110 bytes_out 0 105110 bytes_in 0 105110 station_ip 83.122.186.204 105110 port 10 105110 unique_id port 105110 remote_ip 10.8.0.14 105113 username askari 105113 mac 105113 bytes_out 0 105113 bytes_in 0 105113 station_ip 5.119.26.37 105113 port 7 105113 unique_id port 105113 remote_ip 10.8.0.62 105118 username kamali1 105118 mac 105118 bytes_out 0 105118 bytes_in 0 105118 station_ip 5.119.70.68 105118 port 7 105118 unique_id port 105118 remote_ip 10.8.0.70 105129 username aminvpn 105129 mac 105129 bytes_out 561081 105129 bytes_in 2742987 105129 station_ip 37.129.248.24 105129 port 11 105129 unique_id port 105129 remote_ip 10.8.0.14 105131 username aminvpn 105131 kill_reason Maximum check online fails reached 105131 mac 105131 bytes_out 0 105131 bytes_in 0 105131 station_ip 37.129.248.24 105131 port 6 105131 unique_id port 105136 username arabpour 105136 unique_id port 105136 terminate_cause User-Request 105136 bytes_out 83991 105136 bytes_in 1167529 105136 station_ip 37.129.224.114 105136 port 15728662 105136 nas_port_type Virtual 105136 remote_ip 5.5.5.220 105144 username tahmasebi 105144 kill_reason Another user logged on this global unique id 105144 mac 105144 bytes_out 0 105144 bytes_in 0 105144 station_ip 5.119.42.112 105144 port 4 105144 unique_id port 105145 username madadi2 105145 kill_reason Relative expiration date has reached 105145 mac 105145 bytes_out 0 105145 bytes_in 0 105145 station_ip 5.119.167.164 105145 port 11 105145 unique_id port 105149 username amir 105149 mac 105149 bytes_out 0 105149 bytes_in 0 105149 station_ip 46.225.215.197 105149 port 11 105149 unique_id port 105149 remote_ip 10.8.0.50 105151 username mirzaei 105151 kill_reason Another user logged on this global unique id 105151 mac 105151 bytes_out 0 105151 bytes_in 0 105095 port 8 105095 unique_id port 105095 remote_ip 10.8.0.50 105096 username mohammadmahdi 105096 mac 105096 bytes_out 0 105096 bytes_in 0 105096 station_ip 5.119.157.172 105096 port 6 105096 unique_id port 105106 username amir 105106 kill_reason Maximum check online fails reached 105106 mac 105106 bytes_out 0 105106 bytes_in 0 105106 station_ip 46.225.215.197 105106 port 8 105106 unique_id port 105111 username askari 105111 mac 105111 bytes_out 1059014 105111 bytes_in 8005739 105111 station_ip 5.119.26.37 105111 port 7 105111 unique_id port 105111 remote_ip 10.8.0.62 105112 username aminvpn 105112 mac 105112 bytes_out 0 105112 bytes_in 0 105112 station_ip 83.122.188.20 105112 port 12 105112 unique_id port 105112 remote_ip 10.8.0.14 105116 username amir 105116 mac 105116 bytes_out 0 105116 bytes_in 0 105116 station_ip 46.225.215.197 105116 port 10 105116 unique_id port 105116 remote_ip 10.8.0.50 105117 username musa 105117 mac 105117 bytes_out 0 105117 bytes_in 0 105117 station_ip 93.110.118.43 105117 port 13 105117 unique_id port 105117 remote_ip 10.8.0.6 105119 username musa 105119 mac 105119 bytes_out 0 105119 bytes_in 0 105119 station_ip 93.110.118.43 105119 port 10 105119 unique_id port 105119 remote_ip 10.8.0.6 105120 username morteza 105120 mac 105120 bytes_out 4891853 105120 bytes_in 23569573 105120 station_ip 37.129.99.130 105120 port 6 105120 unique_id port 105120 remote_ip 10.8.0.46 105123 username askari 105123 mac 105123 bytes_out 1413566 105123 bytes_in 14978472 105123 station_ip 5.119.26.37 105123 port 12 105123 unique_id port 105123 remote_ip 10.8.0.62 105125 username hashtadani 105125 unique_id port 105125 terminate_cause User-Request 105125 bytes_out 1209840 105125 bytes_in 25905042 105125 station_ip 37.129.165.176 105125 port 15728655 105125 nas_port_type Virtual 105125 remote_ip 5.5.5.231 105128 username musa 105128 mac 105128 bytes_out 0 105128 bytes_in 0 105128 station_ip 93.110.118.43 105128 port 6 105128 unique_id port 105128 remote_ip 10.8.0.6 105132 username tahmasebi 105132 kill_reason Another user logged on this global unique id 105132 mac 105132 bytes_out 0 105132 bytes_in 0 105132 station_ip 5.119.42.112 105132 port 4 105132 unique_id port 105133 username houshang 105133 kill_reason Another user logged on this global unique id 105133 mac 105133 bytes_out 0 105133 bytes_in 0 105133 station_ip 5.120.153.3 105133 port 12 105133 unique_id port 105133 remote_ip 10.8.0.22 105135 username amir 105135 mac 105135 bytes_out 0 105135 bytes_in 0 105135 station_ip 46.225.215.197 105135 port 11 105135 unique_id port 105135 remote_ip 10.8.0.50 105138 username bcboard 105138 unique_id port 105138 terminate_cause Lost-Carrier 105138 bytes_out 1204614 105138 bytes_in 15782785 105138 station_ip 83.123.173.96 105138 port 15728660 105138 nas_port_type Virtual 105138 remote_ip 5.5.5.223 105139 username arabpour 105139 unique_id port 105139 terminate_cause User-Request 105139 bytes_out 75271 105139 bytes_in 1074390 105139 station_ip 37.129.224.114 105139 port 15728664 105139 nas_port_type Virtual 105139 remote_ip 5.5.5.218 105142 username forozande 105142 mac 105142 bytes_out 1199137 105142 bytes_in 12677424 105142 station_ip 83.123.235.218 105142 port 11 105142 unique_id port 105142 remote_ip 10.8.0.74 105143 username musa 105143 kill_reason Another user logged on this global unique id 105143 mac 105143 bytes_out 0 105143 bytes_in 0 105143 station_ip 5.208.216.10 105143 port 2 105143 unique_id port 105143 remote_ip 10.8.1.10 105146 username amir 105137 username arabpour 105137 unique_id port 105137 terminate_cause User-Request 105137 bytes_out 47429 105137 bytes_in 900603 105137 station_ip 37.129.224.114 105137 port 15728663 105137 nas_port_type Virtual 105137 remote_ip 5.5.5.219 105140 username houshang 105140 mac 105140 bytes_out 0 105140 bytes_in 0 105140 station_ip 5.120.153.3 105140 port 12 105140 unique_id port 105141 username mohammadmahdi 105141 mac 105141 bytes_out 1916301 105141 bytes_in 21235450 105141 station_ip 5.119.157.172 105141 port 13 105141 unique_id port 105141 remote_ip 10.8.0.54 105147 username malekpoir 105147 mac 105147 bytes_out 0 105147 bytes_in 0 105147 station_ip 5.120.50.98 105147 port 2 105147 unique_id port 105155 username aminvpn 105155 unique_id port 105155 terminate_cause Lost-Carrier 105155 bytes_out 463614 105155 bytes_in 7584283 105155 station_ip 5.120.127.210 105155 port 15728665 105155 nas_port_type Virtual 105155 remote_ip 5.5.5.216 105161 username farhad1 105161 mac 105161 bytes_out 0 105161 bytes_in 0 105161 station_ip 5.119.41.78 105161 port 9 105161 unique_id port 105161 remote_ip 10.8.0.26 105168 username mirzaei 105168 mac 105168 bytes_out 0 105168 bytes_in 0 105168 station_ip 5.120.132.87 105168 port 2 105168 unique_id port 105168 remote_ip 10.8.0.66 105170 username kamali1 105170 mac 105170 bytes_out 9303392 105170 bytes_in 1062153 105170 station_ip 5.119.77.50 105170 port 2 105170 unique_id port 105170 remote_ip 10.8.1.26 105171 username mirzaei 105171 mac 105171 bytes_out 0 105171 bytes_in 0 105171 station_ip 5.120.132.87 105171 port 12 105171 unique_id port 105171 remote_ip 10.8.0.66 105173 username zare 105173 kill_reason Another user logged on this global unique id 105173 mac 105173 bytes_out 0 105173 bytes_in 0 105173 station_ip 188.245.88.131 105173 port 11 105173 unique_id port 105173 remote_ip 10.8.0.18 105179 username farhad1 105179 mac 105179 bytes_out 0 105179 bytes_in 0 105179 station_ip 5.120.107.240 105179 port 2 105179 unique_id port 105179 remote_ip 10.8.0.26 105181 username mirzaei 105181 mac 105181 bytes_out 0 105181 bytes_in 0 105181 station_ip 5.113.236.46 105181 port 3 105181 unique_id port 105181 remote_ip 10.8.1.30 105185 username kamali1 105185 mac 105185 bytes_out 0 105185 bytes_in 0 105185 station_ip 5.119.77.50 105185 port 2 105185 unique_id port 105185 remote_ip 10.8.1.26 105186 username zare 105186 kill_reason Another user logged on this global unique id 105186 mac 105186 bytes_out 0 105186 bytes_in 0 105186 station_ip 188.245.88.131 105186 port 11 105186 unique_id port 105187 username alirr 105187 unique_id port 105187 terminate_cause Lost-Carrier 105187 bytes_out 2437347 105187 bytes_in 75689742 105187 station_ip 151.238.230.111 105187 port 15728673 105187 nas_port_type Virtual 105187 remote_ip 5.5.5.213 105188 username farhad1 105188 mac 105188 bytes_out 0 105188 bytes_in 0 105188 station_ip 5.119.112.166 105188 port 2 105188 unique_id port 105188 remote_ip 10.8.0.26 105190 username naeimeh 105190 kill_reason Another user logged on this global unique id 105190 mac 105190 bytes_out 0 105190 bytes_in 0 105190 station_ip 83.123.248.202 105190 port 9 105190 unique_id port 105190 remote_ip 10.8.0.78 105191 username alirezazadeh 105191 unique_id port 105191 terminate_cause Lost-Carrier 105191 bytes_out 1212159 105191 bytes_in 7994632 105191 station_ip 5.120.157.234 105191 port 15728674 105191 nas_port_type Virtual 105191 remote_ip 5.5.5.211 105192 username zare 105192 mac 105192 bytes_out 0 105192 bytes_in 0 105146 mac 105146 bytes_out 387083 105146 bytes_in 1153594 105146 station_ip 46.225.215.197 105146 port 12 105146 unique_id port 105146 remote_ip 10.8.0.50 105148 username madadi2 105148 kill_reason Relative expiration date has reached 105148 mac 105148 bytes_out 0 105148 bytes_in 0 105148 station_ip 5.119.167.164 105148 port 2 105148 unique_id port 105150 username mirzaei 105150 mac 105150 bytes_out 28963341 105150 bytes_in 30461017 105150 station_ip 5.119.237.60 105150 port 9 105150 unique_id port 105150 remote_ip 10.8.0.66 105152 username aminvpn 105152 unique_id port 105152 terminate_cause Lost-Carrier 105152 bytes_out 18808262 105152 bytes_in 80351478 105152 station_ip 5.120.127.210 105152 port 15728659 105152 nas_port_type Virtual 105152 remote_ip 5.5.5.225 105154 username farhad1 105154 mac 105154 bytes_out 490329 105154 bytes_in 2361548 105154 station_ip 5.119.112.216 105154 port 9 105154 unique_id port 105154 remote_ip 10.8.0.26 105157 username musa 105157 mac 105157 bytes_out 33920 105157 bytes_in 86090 105157 station_ip 5.208.216.10 105157 port 2 105157 unique_id port 105157 remote_ip 10.8.1.10 105159 username mirzaei 105159 mac 105159 bytes_out 0 105159 bytes_in 0 105159 station_ip 5.119.237.60 105159 port 12 105159 unique_id port 105159 remote_ip 10.8.0.66 105160 username mirzaei 105160 mac 105160 bytes_out 0 105160 bytes_in 0 105160 station_ip 5.119.237.60 105160 port 2 105160 unique_id port 105160 remote_ip 10.8.0.66 105162 username aminvpn 105162 mac 105162 bytes_out 0 105162 bytes_in 0 105162 station_ip 37.129.248.24 105162 port 10 105162 unique_id port 105164 username aminvpn 105164 mac 105164 bytes_out 0 105164 bytes_in 0 105164 station_ip 37.129.248.24 105164 port 10 105164 unique_id port 105164 remote_ip 10.8.0.14 105167 username aminvpn 105167 mac 105167 bytes_out 805555 105167 bytes_in 5353051 105167 station_ip 83.123.217.218 105167 port 3 105167 unique_id port 105167 remote_ip 10.8.1.6 105169 username aminvpn 105169 mac 105169 bytes_out 0 105169 bytes_in 0 105169 station_ip 37.129.157.4 105169 port 9 105169 unique_id port 105169 remote_ip 10.8.0.14 105172 username mirzaei 105172 mac 105172 bytes_out 0 105172 bytes_in 0 105172 station_ip 5.114.239.205 105172 port 3 105172 unique_id port 105172 remote_ip 10.8.1.30 105177 username kamali1 105177 kill_reason Another user logged on this global unique id 105177 mac 105177 bytes_out 0 105177 bytes_in 0 105177 station_ip 5.119.77.50 105177 port 2 105177 unique_id port 105177 remote_ip 10.8.1.26 105180 username tahmasebi 105180 kill_reason Another user logged on this global unique id 105180 mac 105180 bytes_out 0 105180 bytes_in 0 105180 station_ip 5.119.42.112 105180 port 4 105180 unique_id port 105184 username aminvpn 105184 mac 105184 bytes_out 0 105184 bytes_in 0 105184 station_ip 83.123.55.155 105184 port 4 105184 unique_id port 105184 remote_ip 10.8.1.6 105189 username zare 105189 kill_reason Another user logged on this global unique id 105189 mac 105189 bytes_out 0 105189 bytes_in 0 105189 station_ip 188.245.88.131 105189 port 11 105189 unique_id port 105193 username naeimeh 105193 mac 105193 bytes_out 0 105193 bytes_in 0 105193 station_ip 83.123.248.202 105193 port 9 105193 unique_id port 105194 username hashtadani 105194 unique_id port 105194 terminate_cause Lost-Carrier 105194 bytes_out 1539908 105194 bytes_in 31300646 105194 station_ip 37.129.165.176 105194 port 15728666 105194 nas_port_type Virtual 105194 remote_ip 5.5.5.215 105151 station_ip 5.119.237.60 105151 port 2 105151 unique_id port 105151 remote_ip 10.8.0.66 105153 username tahmasebi 105153 kill_reason Another user logged on this global unique id 105153 mac 105153 bytes_out 0 105153 bytes_in 0 105153 station_ip 5.119.42.112 105153 port 4 105153 unique_id port 105156 username aminvpn 105156 kill_reason Another user logged on this global unique id 105156 mac 105156 bytes_out 0 105156 bytes_in 0 105156 station_ip 37.129.248.24 105156 port 10 105156 unique_id port 105156 remote_ip 10.8.0.14 105158 username tahmasebi 105158 kill_reason Another user logged on this global unique id 105158 mac 105158 bytes_out 0 105158 bytes_in 0 105158 station_ip 5.119.42.112 105158 port 4 105158 unique_id port 105163 username rajaei 105163 mac 105163 bytes_out 0 105163 bytes_in 0 105163 station_ip 89.32.108.180 105163 port 12 105163 unique_id port 105163 remote_ip 10.8.0.34 105165 username aminvpn 105165 unique_id port 105165 terminate_cause User-Request 105165 bytes_out 2146660 105165 bytes_in 28402510 105165 station_ip 5.120.127.210 105165 port 15728667 105165 nas_port_type Virtual 105165 remote_ip 5.5.5.214 105166 username farhad1 105166 mac 105166 bytes_out 0 105166 bytes_in 0 105166 station_ip 5.119.44.97 105166 port 9 105166 unique_id port 105166 remote_ip 10.8.0.26 105174 username farhad1 105174 mac 105174 bytes_out 2045297 105174 bytes_in 7432094 105174 station_ip 5.119.44.97 105174 port 9 105174 unique_id port 105174 remote_ip 10.8.0.26 105175 username mirzaei 105175 mac 105175 bytes_out 0 105175 bytes_in 0 105175 station_ip 5.114.239.205 105175 port 3 105175 unique_id port 105175 remote_ip 10.8.1.30 105176 username mirzaei 105176 mac 105176 bytes_out 0 105176 bytes_in 0 105176 station_ip 5.119.202.227 105176 port 3 105176 unique_id port 105176 remote_ip 10.8.1.30 105178 username mirzaei 105178 mac 105178 bytes_out 5426 105178 bytes_in 7058 105178 station_ip 5.119.202.227 105178 port 3 105178 unique_id port 105178 remote_ip 10.8.1.30 105182 username musa 105182 mac 105182 bytes_out 15941349 105182 bytes_in 11491210 105182 station_ip 5.208.216.10 105182 port 10 105182 unique_id port 105182 remote_ip 10.8.0.6 105183 username aminvpn 105183 mac 105183 bytes_out 0 105183 bytes_in 0 105183 station_ip 83.122.186.204 105183 port 9 105183 unique_id port 105183 remote_ip 10.8.0.14 105195 username zare 105195 mac 105195 bytes_out 955592 105195 bytes_in 18929133 105195 station_ip 188.245.88.131 105195 port 2 105195 unique_id port 105195 remote_ip 10.8.0.18 105198 username mirzaei 105198 kill_reason Another user logged on this global unique id 105198 mac 105198 bytes_out 0 105198 bytes_in 0 105198 station_ip 5.120.100.72 105198 port 2 105198 unique_id port 105199 username mirzaei 105199 kill_reason Another user logged on this global unique id 105199 mac 105199 bytes_out 0 105199 bytes_in 0 105199 station_ip 5.120.100.72 105199 port 2 105199 unique_id port 105201 username mirzaei 105201 kill_reason Another user logged on this global unique id 105201 mac 105201 bytes_out 0 105201 bytes_in 0 105201 station_ip 5.120.100.72 105201 port 2 105201 unique_id port 105206 username askari 105206 mac 105206 bytes_out 2301037 105206 bytes_in 26157043 105206 station_ip 5.119.105.203 105206 port 11 105206 unique_id port 105206 remote_ip 10.8.0.62 105207 username askari 105207 mac 105207 bytes_out 288438 105207 bytes_in 2745370 105207 station_ip 5.119.41.223 105207 port 10 105207 unique_id port 105207 remote_ip 10.8.0.62 105209 username mahdiyehalizadeh 105192 station_ip 188.245.88.131 105192 port 11 105192 unique_id port 105200 username mirzaei 105200 kill_reason Another user logged on this global unique id 105200 mac 105200 bytes_out 0 105200 bytes_in 0 105200 station_ip 5.120.100.72 105200 port 2 105200 unique_id port 105202 username abbasaskari 105202 mac 105202 bytes_out 0 105202 bytes_in 0 105202 station_ip 83.123.94.158 105202 port 2 105202 unique_id port 105202 remote_ip 10.8.1.14 105203 username sobhan 105203 unique_id port 105203 terminate_cause Lost-Carrier 105203 bytes_out 2809073 105203 bytes_in 62110063 105203 station_ip 5.119.100.101 105203 port 15728676 105203 nas_port_type Virtual 105203 remote_ip 5.5.5.210 105205 username askari 105205 mac 105205 bytes_out 0 105205 bytes_in 0 105205 station_ip 5.119.185.233 105205 port 10 105205 unique_id port 105205 remote_ip 10.8.0.62 105208 username aminvpn 105208 mac 105208 bytes_out 0 105208 bytes_in 0 105208 station_ip 83.123.54.27 105208 port 9 105208 unique_id port 105208 remote_ip 10.8.0.14 105210 username askari 105210 mac 105210 bytes_out 2329259 105210 bytes_in 28091109 105210 station_ip 5.119.228.120 105210 port 11 105210 unique_id port 105210 remote_ip 10.8.0.62 105212 username mahdiyehalizadeh 105212 mac 105212 bytes_out 0 105212 bytes_in 0 105212 station_ip 37.129.117.58 105212 port 9 105212 unique_id port 105212 remote_ip 10.8.0.82 105214 username madadi2 105214 kill_reason Relative expiration date has reached 105214 mac 105214 bytes_out 0 105214 bytes_in 0 105214 station_ip 5.120.12.125 105214 port 10 105214 unique_id port 105227 username musa 105227 mac 105227 bytes_out 0 105227 bytes_in 0 105227 station_ip 5.209.12.171 105227 port 9 105227 unique_id port 105233 username malekpoir 105233 kill_reason Another user logged on this global unique id 105233 mac 105233 bytes_out 0 105233 bytes_in 0 105233 station_ip 5.120.50.98 105233 port 13 105233 unique_id port 105237 username forozande 105237 mac 105237 bytes_out 1074684 105237 bytes_in 15626551 105237 station_ip 113.203.53.41 105237 port 14 105237 unique_id port 105237 remote_ip 10.8.0.74 105238 username alireza 105238 unique_id port 105238 terminate_cause User-Request 105238 bytes_out 1510131 105238 bytes_in 14561627 105238 station_ip 5.119.76.227 105238 port 15728679 105238 nas_port_type Virtual 105238 remote_ip 5.5.5.206 105245 username musa 105245 mac 105245 bytes_out 0 105245 bytes_in 0 105245 station_ip 5.209.6.135 105245 port 2 105245 unique_id port 105245 remote_ip 10.8.1.10 105247 username musa 105247 mac 105247 bytes_out 0 105247 bytes_in 0 105247 station_ip 5.209.6.135 105247 port 2 105247 unique_id port 105247 remote_ip 10.8.1.10 105248 username musa 105248 mac 105248 bytes_out 0 105248 bytes_in 0 105248 station_ip 5.209.6.135 105248 port 2 105248 unique_id port 105248 remote_ip 10.8.1.10 105252 username kamali1 105252 mac 105252 bytes_out 463109 105252 bytes_in 513688 105252 station_ip 5.120.153.80 105252 port 12 105252 unique_id port 105252 remote_ip 10.8.0.70 105253 username kamali1 105253 mac 105253 bytes_out 0 105253 bytes_in 0 105253 station_ip 5.120.153.80 105253 port 9 105253 unique_id port 105253 remote_ip 10.8.0.70 105256 username musa 105256 mac 105256 bytes_out 0 105256 bytes_in 0 105256 station_ip 5.209.6.135 105256 port 9 105256 unique_id port 105256 remote_ip 10.8.0.6 105258 username abbasaskari 105258 mac 105258 bytes_out 0 105258 bytes_in 0 105258 station_ip 37.129.2.19 105258 port 12 105196 username musa 105196 mac 105196 bytes_out 0 105196 bytes_in 0 105196 station_ip 5.208.216.10 105196 port 10 105196 unique_id port 105196 remote_ip 10.8.0.6 105197 username mirzaei 105197 kill_reason Another user logged on this global unique id 105197 mac 105197 bytes_out 0 105197 bytes_in 0 105197 station_ip 5.120.100.72 105197 port 2 105197 unique_id port 105197 remote_ip 10.8.0.66 105204 username sobhan 105204 unique_id port 105204 terminate_cause Lost-Carrier 105204 bytes_out 31869 105204 bytes_in 47832 105204 station_ip 5.119.100.101 105204 port 15728677 105204 nas_port_type Virtual 105204 remote_ip 5.5.5.209 105213 username kamali1 105213 mac 105213 bytes_out 0 105213 bytes_in 0 105213 station_ip 5.120.153.80 105213 port 10 105213 unique_id port 105213 remote_ip 10.8.0.70 105216 username musa 105216 kill_reason Another user logged on this global unique id 105216 mac 105216 bytes_out 0 105216 bytes_in 0 105216 station_ip 5.209.12.171 105216 port 9 105216 unique_id port 105216 remote_ip 10.8.0.6 105218 username morteza 105218 mac 105218 bytes_out 2419215 105218 bytes_in 45311474 105218 station_ip 37.129.64.245 105218 port 10 105218 unique_id port 105218 remote_ip 10.8.0.46 105220 username kamali1 105220 mac 105220 bytes_out 353081 105220 bytes_in 429362 105220 station_ip 5.120.153.80 105220 port 3 105220 unique_id port 105220 remote_ip 10.8.1.26 105224 username mohammadreza 105224 mac 105224 bytes_out 49122 105224 bytes_in 34210 105224 station_ip 151.235.66.80 105224 port 2 105224 unique_id port 105224 remote_ip 10.8.1.34 105229 username musa 105229 mac 105229 bytes_out 0 105229 bytes_in 0 105229 station_ip 5.209.6.135 105229 port 3 105229 unique_id port 105229 remote_ip 10.8.1.10 105236 username morteza 105236 mac 105236 bytes_out 152772 105236 bytes_in 2665235 105236 station_ip 37.129.13.97 105236 port 9 105236 unique_id port 105236 remote_ip 10.8.0.46 105241 username malekpoir 105241 kill_reason Another user logged on this global unique id 105241 mac 105241 bytes_out 0 105241 bytes_in 0 105241 station_ip 5.120.50.98 105241 port 13 105241 unique_id port 105242 username morteza 105242 mac 105242 bytes_out 0 105242 bytes_in 0 105242 station_ip 37.129.72.33 105242 port 9 105242 unique_id port 105242 remote_ip 10.8.0.46 105244 username forozande 105244 mac 105244 bytes_out 1229879 105244 bytes_in 18146383 105244 station_ip 83.122.191.131 105244 port 15 105244 unique_id port 105244 remote_ip 10.8.0.74 105246 username musa 105246 mac 105246 bytes_out 0 105246 bytes_in 0 105246 station_ip 5.209.6.135 105246 port 2 105246 unique_id port 105246 remote_ip 10.8.1.10 105249 username rajaei 105249 mac 105249 bytes_out 0 105249 bytes_in 0 105249 station_ip 5.134.129.121 105249 port 14 105249 unique_id port 105249 remote_ip 10.8.0.34 105250 username khalili 105250 kill_reason Another user logged on this global unique id 105250 mac 105250 bytes_out 0 105250 bytes_in 0 105250 station_ip 5.119.88.140 105250 port 11 105250 unique_id port 105250 remote_ip 10.8.0.86 105251 username forozande 105251 mac 105251 bytes_out 1468041 105251 bytes_in 26932773 105251 station_ip 37.129.176.132 105251 port 9 105251 unique_id port 105251 remote_ip 10.8.0.74 105255 username musa 105255 mac 105255 bytes_out 0 105255 bytes_in 0 105255 station_ip 5.209.6.135 105255 port 9 105255 unique_id port 105255 remote_ip 10.8.0.6 105262 username malekpoir 105262 kill_reason Another user logged on this global unique id 105262 mac 105262 bytes_out 0 105262 bytes_in 0 105209 mac 105209 bytes_out 0 105209 bytes_in 0 105209 station_ip 37.129.117.58 105209 port 9 105209 unique_id port 105209 remote_ip 10.8.0.82 105211 username askari 105211 mac 105211 bytes_out 0 105211 bytes_in 0 105211 station_ip 5.119.228.120 105211 port 9 105211 unique_id port 105211 remote_ip 10.8.0.62 105215 username kamali1 105215 mac 105215 bytes_out 0 105215 bytes_in 0 105215 station_ip 5.120.153.80 105215 port 2 105215 unique_id port 105215 remote_ip 10.8.1.26 105217 username kamali1 105217 mac 105217 bytes_out 74529 105217 bytes_in 83227 105217 station_ip 5.120.153.80 105217 port 2 105217 unique_id port 105217 remote_ip 10.8.1.26 105219 username forozande 105219 mac 105219 bytes_out 0 105219 bytes_in 0 105219 station_ip 113.203.75.250 105219 port 12 105219 unique_id port 105219 remote_ip 10.8.0.74 105221 username abbasaskari 105221 mac 105221 bytes_out 0 105221 bytes_in 0 105221 station_ip 37.129.3.55 105221 port 10 105221 unique_id port 105221 remote_ip 10.8.0.10 105222 username amir 105222 mac 105222 bytes_out 126618 105222 bytes_in 834716 105222 station_ip 46.225.214.63 105222 port 10 105222 unique_id port 105222 remote_ip 10.8.0.50 105223 username mirzaei 105223 kill_reason Another user logged on this global unique id 105223 mac 105223 bytes_out 0 105223 bytes_in 0 105223 station_ip 5.120.100.72 105223 port 2 105223 unique_id port 105225 username malekpoir 105225 kill_reason Another user logged on this global unique id 105225 mac 105225 bytes_out 0 105225 bytes_in 0 105225 station_ip 5.120.50.98 105225 port 13 105225 unique_id port 105225 remote_ip 10.8.0.58 105226 username malekpoir 105226 kill_reason Another user logged on this global unique id 105226 mac 105226 bytes_out 0 105226 bytes_in 0 105226 station_ip 5.120.50.98 105226 port 13 105226 unique_id port 105228 username amir 105228 kill_reason Another user logged on this global unique id 105228 mac 105228 bytes_out 0 105228 bytes_in 0 105228 station_ip 46.225.214.63 105228 port 10 105228 unique_id port 105228 remote_ip 10.8.0.50 105230 username forozande 105230 mac 105230 bytes_out 0 105230 bytes_in 0 105230 station_ip 113.203.45.125 105230 port 9 105230 unique_id port 105230 remote_ip 10.8.0.74 105231 username malekpoir 105231 kill_reason Another user logged on this global unique id 105231 mac 105231 bytes_out 0 105231 bytes_in 0 105231 station_ip 5.120.50.98 105231 port 13 105231 unique_id port 105232 username mohammadreza 105232 mac 105232 bytes_out 0 105232 bytes_in 0 105232 station_ip 151.235.66.80 105232 port 2 105232 unique_id port 105232 remote_ip 10.8.1.34 105234 username mohammadreza 105234 mac 105234 bytes_out 0 105234 bytes_in 0 105234 station_ip 78.39.25.189 105234 port 2 105234 unique_id port 105234 remote_ip 10.8.1.34 105235 username malekpoir 105235 kill_reason Another user logged on this global unique id 105235 mac 105235 bytes_out 0 105235 bytes_in 0 105235 station_ip 5.120.50.98 105235 port 13 105235 unique_id port 105239 username morteza 105239 mac 105239 bytes_out 157108 105239 bytes_in 2925707 105239 station_ip 37.129.13.97 105239 port 9 105239 unique_id port 105239 remote_ip 10.8.0.46 105240 username morteza 105240 mac 105240 bytes_out 0 105240 bytes_in 0 105240 station_ip 37.129.13.97 105240 port 9 105240 unique_id port 105240 remote_ip 10.8.0.46 105243 username musa 105243 mac 105243 bytes_out 0 105243 bytes_in 0 105243 station_ip 5.209.6.135 105243 port 3 105243 unique_id port 105243 remote_ip 10.8.1.10 105254 username musa 105254 mac 105254 bytes_out 0 105254 bytes_in 0 105254 station_ip 5.209.6.135 105254 port 15 105254 unique_id port 105254 remote_ip 10.8.0.6 105257 username ahmadipour 105257 unique_id port 105257 terminate_cause Lost-Carrier 105257 bytes_out 230587 105257 bytes_in 3835732 105257 station_ip 83.123.229.240 105257 port 15728681 105257 nas_port_type Virtual 105257 remote_ip 5.5.5.202 105259 username arabpour 105259 unique_id port 105259 terminate_cause User-Request 105259 bytes_out 0 105259 bytes_in 0 105259 station_ip 83.122.34.88 105259 port 15728684 105259 nas_port_type Virtual 105259 remote_ip 5.5.5.196 105260 username arabpour 105260 unique_id port 105260 terminate_cause User-Request 105260 bytes_out 44437 105260 bytes_in 137246 105260 station_ip 83.122.34.88 105260 port 15728685 105260 nas_port_type Virtual 105260 remote_ip 5.5.5.195 105261 username mehdizare 105261 kill_reason Another user logged on this global unique id 105261 mac 105261 bytes_out 0 105261 bytes_in 0 105261 station_ip 5.119.107.252 105261 port 12 105261 unique_id port 105261 remote_ip 10.8.0.90 105268 username alireza 105268 unique_id port 105268 terminate_cause Lost-Carrier 105268 bytes_out 696428 105268 bytes_in 29192599 105268 station_ip 194.15.99.84 105268 port 15728682 105268 nas_port_type Virtual 105268 remote_ip 5.5.5.200 105271 username malekpoir 105271 kill_reason Another user logged on this global unique id 105271 mac 105271 bytes_out 0 105271 bytes_in 0 105271 station_ip 5.120.50.98 105271 port 13 105271 unique_id port 105275 username kamali1 105275 mac 105275 bytes_out 0 105275 bytes_in 0 105275 station_ip 5.120.153.80 105275 port 2 105275 unique_id port 105275 remote_ip 10.8.1.26 105277 username musa 105277 mac 105277 bytes_out 1640203 105277 bytes_in 31180459 105277 station_ip 5.209.219.63 105277 port 9 105277 unique_id port 105277 remote_ip 10.8.0.6 105278 username musa 105278 mac 105278 bytes_out 0 105278 bytes_in 0 105278 station_ip 5.209.219.63 105278 port 9 105278 unique_id port 105278 remote_ip 10.8.0.6 105279 username avaanna 105279 kill_reason Another user logged on this global unique id 105279 mac 105279 bytes_out 0 105279 bytes_in 0 105279 station_ip 37.129.2.255 105279 port 9 105279 unique_id port 105279 remote_ip 10.8.0.98 105281 username kamali1 105281 mac 105281 bytes_out 114928 105281 bytes_in 172752 105281 station_ip 5.120.153.80 105281 port 2 105281 unique_id port 105281 remote_ip 10.8.1.26 105282 username aminvpn 105282 mac 105282 bytes_out 0 105282 bytes_in 0 105282 station_ip 37.129.41.142 105282 port 14 105282 unique_id port 105282 remote_ip 10.8.0.14 105283 username musa 105283 mac 105283 bytes_out 0 105283 bytes_in 0 105283 station_ip 5.209.219.63 105283 port 12 105283 unique_id port 105283 remote_ip 10.8.0.6 105284 username aminvpn 105284 unique_id port 105284 terminate_cause Lost-Carrier 105284 bytes_out 484965 105284 bytes_in 1724390 105284 station_ip 5.119.50.209 105284 port 15728683 105284 nas_port_type Virtual 105284 remote_ip 5.5.5.198 105287 username askari 105287 mac 105287 bytes_out 66339 105287 bytes_in 198396 105287 station_ip 5.119.154.245 105287 port 3 105287 unique_id port 105287 remote_ip 10.8.1.38 105288 username alirezazadeh 105288 unique_id port 105288 terminate_cause User-Request 105288 bytes_out 30943974 105288 bytes_in 163115279 105288 station_ip 31.56.152.22 105288 port 15728678 105288 nas_port_type Virtual 105288 remote_ip 5.5.5.207 105294 username musa 105294 mac 105294 bytes_out 7040 105294 bytes_in 8847 105294 station_ip 5.209.219.63 105294 port 3 105294 unique_id port 105258 unique_id port 105258 remote_ip 10.8.0.10 105263 username abbasaskari 105263 mac 105263 bytes_out 0 105263 bytes_in 0 105263 station_ip 37.129.2.19 105263 port 16 105263 unique_id port 105263 remote_ip 10.8.0.10 105264 username amir 105264 kill_reason Another user logged on this global unique id 105264 mac 105264 bytes_out 0 105264 bytes_in 0 105264 station_ip 46.225.214.63 105264 port 10 105264 unique_id port 105266 username zare 105266 mac 105266 bytes_out 1372300 105266 bytes_in 22430845 105266 station_ip 94.183.214.14 105266 port 15 105266 unique_id port 105266 remote_ip 10.8.0.18 105270 username mehdizare 105270 mac 105270 bytes_out 0 105270 bytes_in 0 105270 station_ip 5.119.107.252 105270 port 12 105270 unique_id port 105272 username abbasaskari 105272 mac 105272 bytes_out 0 105272 bytes_in 0 105272 station_ip 37.129.57.167 105272 port 10 105272 unique_id port 105272 remote_ip 10.8.0.10 105273 username askari 105273 mac 105273 bytes_out 0 105273 bytes_in 0 105273 station_ip 5.119.225.0 105273 port 3 105273 unique_id port 105273 remote_ip 10.8.1.38 105285 username tahmasebi 105285 kill_reason Another user logged on this global unique id 105285 mac 105285 bytes_out 0 105285 bytes_in 0 105285 station_ip 5.119.42.112 105285 port 4 105285 unique_id port 105292 username mehdizare 105292 mac 105292 bytes_out 13551 105292 bytes_in 22613 105292 station_ip 5.119.107.252 105292 port 4 105292 unique_id port 105292 remote_ip 10.8.1.42 105293 username musa 105293 mac 105293 bytes_out 12843 105293 bytes_in 23435 105293 station_ip 5.209.219.63 105293 port 3 105293 unique_id port 105293 remote_ip 10.8.1.10 105297 username musa 105297 mac 105297 bytes_out 0 105297 bytes_in 0 105297 station_ip 89.196.150.163 105297 port 3 105297 unique_id port 105297 remote_ip 10.8.1.10 105300 username musa 105300 mac 105300 bytes_out 12243 105300 bytes_in 18685 105300 station_ip 89.196.150.163 105300 port 3 105300 unique_id port 105300 remote_ip 10.8.1.10 105302 username reza2742 105302 unique_id port 105302 terminate_cause Lost-Carrier 105302 bytes_out 12292843 105302 bytes_in 425754339 105302 station_ip 5.202.134.144 105302 port 15728687 105302 nas_port_type Virtual 105302 remote_ip 5.5.5.191 105307 username forozande 105307 mac 105307 bytes_out 812673 105307 bytes_in 8512455 105307 station_ip 37.129.90.18 105307 port 9 105307 unique_id port 105307 remote_ip 10.8.0.74 105308 username avaanna 105308 mac 105308 bytes_out 14717 105308 bytes_in 20317 105308 station_ip 37.129.2.255 105308 port 3 105308 unique_id port 105308 remote_ip 10.8.1.46 105310 username avaanna 105310 mac 105310 bytes_out 10942 105310 bytes_in 16308 105310 station_ip 37.129.2.255 105310 port 3 105310 unique_id port 105310 remote_ip 10.8.1.46 105311 username askari 105311 mac 105311 bytes_out 10939 105311 bytes_in 11029 105311 station_ip 5.119.154.245 105311 port 12 105311 unique_id port 105311 remote_ip 10.8.0.62 105313 username kamali1 105313 mac 105313 bytes_out 0 105313 bytes_in 0 105313 station_ip 5.120.153.80 105313 port 2 105313 unique_id port 105313 remote_ip 10.8.1.26 105314 username alipour 105314 kill_reason Another user logged on this global unique id 105314 mac 105314 bytes_out 0 105314 bytes_in 0 105314 station_ip 83.123.69.20 105314 port 9 105314 unique_id port 105314 remote_ip 10.8.0.102 105316 username hamid.e 105316 unique_id port 105316 terminate_cause User-Request 105316 bytes_out 10000337 105316 bytes_in 80779141 105316 station_ip 37.27.8.186 105262 station_ip 5.120.50.98 105262 port 13 105262 unique_id port 105265 username mohammadreza 105265 mac 105265 bytes_out 15233 105265 bytes_in 20984 105265 station_ip 5.233.80.152 105265 port 14 105265 unique_id port 105265 remote_ip 10.8.0.94 105267 username aminvpn 105267 mac 105267 bytes_out 172679 105267 bytes_in 1443865 105267 station_ip 83.123.77.235 105267 port 16 105267 unique_id port 105267 remote_ip 10.8.0.14 105269 username amir 105269 mac 105269 bytes_out 0 105269 bytes_in 0 105269 station_ip 46.225.214.63 105269 port 10 105269 unique_id port 105274 username mehdizare 105274 mac 105274 bytes_out 11834 105274 bytes_in 18048 105274 station_ip 5.119.107.252 105274 port 15 105274 unique_id port 105274 remote_ip 10.8.0.90 105276 username kamali1 105276 mac 105276 bytes_out 0 105276 bytes_in 0 105276 station_ip 5.120.153.80 105276 port 2 105276 unique_id port 105276 remote_ip 10.8.1.26 105280 username musa 105280 mac 105280 bytes_out 0 105280 bytes_in 0 105280 station_ip 5.209.219.63 105280 port 12 105280 unique_id port 105280 remote_ip 10.8.0.6 105286 username mehdizare 105286 mac 105286 bytes_out 0 105286 bytes_in 0 105286 station_ip 5.119.107.252 105286 port 10 105286 unique_id port 105286 remote_ip 10.8.0.90 105289 username avaanna 105289 mac 105289 bytes_out 0 105289 bytes_in 0 105289 station_ip 37.129.2.255 105289 port 9 105289 unique_id port 105290 username askari 105290 mac 105290 bytes_out 0 105290 bytes_in 0 105290 station_ip 5.119.154.245 105290 port 3 105290 unique_id port 105290 remote_ip 10.8.1.38 105291 username askari 105291 mac 105291 bytes_out 1572 105291 bytes_in 4400 105291 station_ip 5.119.154.245 105291 port 5 105291 unique_id port 105291 remote_ip 10.8.1.38 105295 username musa 105295 mac 105295 bytes_out 196698 105295 bytes_in 1295090 105295 station_ip 89.196.150.163 105295 port 5 105295 unique_id port 105295 remote_ip 10.8.1.10 105296 username avaanna 105296 mac 105296 bytes_out 0 105296 bytes_in 0 105296 station_ip 37.129.2.255 105296 port 9 105296 unique_id port 105296 remote_ip 10.8.0.98 105299 username askari 105299 mac 105299 bytes_out 62674 105299 bytes_in 103773 105299 station_ip 5.119.154.245 105299 port 10 105299 unique_id port 105299 remote_ip 10.8.0.62 105301 username musa 105301 mac 105301 bytes_out 0 105301 bytes_in 0 105301 station_ip 89.196.150.163 105301 port 3 105301 unique_id port 105301 remote_ip 10.8.1.10 105304 username musa 105304 mac 105304 bytes_out 0 105304 bytes_in 0 105304 station_ip 89.196.150.163 105304 port 10 105304 unique_id port 105304 remote_ip 10.8.0.6 105305 username avaanna 105305 mac 105305 bytes_out 0 105305 bytes_in 0 105305 station_ip 37.129.2.255 105305 port 5 105305 unique_id port 105305 remote_ip 10.8.1.46 105309 username mehdizare 105309 mac 105309 bytes_out 0 105309 bytes_in 0 105309 station_ip 5.119.107.252 105309 port 4 105309 unique_id port 105309 remote_ip 10.8.1.42 105315 username askari 105315 mac 105315 bytes_out 0 105315 bytes_in 0 105315 station_ip 5.119.154.245 105315 port 12 105315 unique_id port 105315 remote_ip 10.8.0.62 105320 username alipour 105320 mac 105320 bytes_out 0 105320 bytes_in 0 105320 station_ip 83.123.69.20 105320 port 9 105320 unique_id port 105323 username tahmasebi 105323 kill_reason Another user logged on this global unique id 105323 mac 105323 bytes_out 0 105323 bytes_in 0 105294 remote_ip 10.8.1.10 105298 username zare 105298 mac 105298 bytes_out 0 105298 bytes_in 0 105298 station_ip 94.183.214.14 105298 port 12 105298 unique_id port 105298 remote_ip 10.8.0.18 105303 username mehdizare 105303 mac 105303 bytes_out 16823 105303 bytes_in 24741 105303 station_ip 5.119.107.252 105303 port 4 105303 unique_id port 105303 remote_ip 10.8.1.42 105306 username mehdizare 105306 mac 105306 bytes_out 0 105306 bytes_in 0 105306 station_ip 5.119.107.252 105306 port 10 105306 unique_id port 105306 remote_ip 10.8.0.90 105312 username askari 105312 mac 105312 bytes_out 0 105312 bytes_in 0 105312 station_ip 5.119.154.245 105312 port 12 105312 unique_id port 105312 remote_ip 10.8.0.62 105318 username mehdizare 105318 mac 105318 bytes_out 0 105318 bytes_in 0 105318 station_ip 5.119.107.252 105318 port 5 105318 unique_id port 105318 remote_ip 10.8.1.42 105319 username ahmadi 105319 unique_id port 105319 terminate_cause User-Request 105319 bytes_out 104216 105319 bytes_in 1523875 105319 station_ip 83.123.59.21 105319 port 15728689 105319 nas_port_type Virtual 105319 remote_ip 5.5.5.187 105321 username forozande 105321 mac 105321 bytes_out 739505 105321 bytes_in 13956702 105321 station_ip 83.122.167.56 105321 port 17 105321 unique_id port 105321 remote_ip 10.8.0.74 105324 username amir 105324 mac 105324 bytes_out 571095 105324 bytes_in 2111641 105324 station_ip 46.225.214.63 105324 port 14 105324 unique_id port 105324 remote_ip 10.8.0.50 105326 username malekpoir 105326 mac 105326 bytes_out 0 105326 bytes_in 0 105326 station_ip 5.120.50.98 105326 port 13 105326 unique_id port 105334 username avaanna 105334 mac 105334 bytes_out 0 105334 bytes_in 0 105334 station_ip 37.129.2.255 105334 port 9 105334 unique_id port 105334 remote_ip 10.8.0.98 105335 username avaanna 105335 mac 105335 bytes_out 10883 105335 bytes_in 13056 105335 station_ip 37.129.2.255 105335 port 9 105335 unique_id port 105335 remote_ip 10.8.0.98 105338 username abbasaskari 105338 mac 105338 bytes_out 12986 105338 bytes_in 19149 105338 station_ip 83.122.174.55 105338 port 17 105338 unique_id port 105338 remote_ip 10.8.0.10 105339 username mehdizare 105339 mac 105339 bytes_out 0 105339 bytes_in 0 105339 station_ip 5.119.107.252 105339 port 3 105339 unique_id port 105339 remote_ip 10.8.1.42 105343 username avaanna 105343 mac 105343 bytes_out 10372 105343 bytes_in 13370 105343 station_ip 37.129.2.255 105343 port 9 105343 unique_id port 105343 remote_ip 10.8.0.98 105347 username avaanna 105347 mac 105347 bytes_out 11126 105347 bytes_in 14086 105347 station_ip 37.129.2.255 105347 port 11 105347 unique_id port 105347 remote_ip 10.8.0.98 105364 username forozande 105364 mac 105364 bytes_out 0 105364 bytes_in 0 105364 station_ip 83.123.166.201 105364 port 10 105364 unique_id port 105364 remote_ip 10.8.0.74 105365 username mohammadmahdi 105365 kill_reason Another user logged on this global unique id 105365 mac 105365 bytes_out 0 105365 bytes_in 0 105365 station_ip 5.119.65.94 105365 port 14 105365 unique_id port 105365 remote_ip 10.8.0.54 105367 username alipour 105367 mac 105367 bytes_out 27551 105367 bytes_in 22860 105367 station_ip 83.123.69.20 105367 port 11 105367 unique_id port 105367 remote_ip 10.8.0.102 105376 username askari 105376 kill_reason Another user logged on this global unique id 105376 mac 105376 bytes_out 0 105376 bytes_in 0 105376 station_ip 5.120.112.105 105376 port 9 105376 unique_id port 105376 remote_ip 10.8.0.62 105316 port 15728686 105316 nas_port_type Virtual 105316 remote_ip 5.5.5.193 105317 username forozande 105317 mac 105317 bytes_out 130576 105317 bytes_in 1094068 105317 station_ip 83.122.167.56 105317 port 16 105317 unique_id port 105317 remote_ip 10.8.0.74 105322 username alipour 105322 mac 105322 bytes_out 0 105322 bytes_in 0 105322 station_ip 83.123.69.20 105322 port 9 105322 unique_id port 105322 remote_ip 10.8.0.102 105325 username avaanna 105325 mac 105325 bytes_out 73555 105325 bytes_in 186827 105325 station_ip 37.129.2.255 105325 port 10 105325 unique_id port 105325 remote_ip 10.8.0.98 105329 username mehdizare 105329 mac 105329 bytes_out 72341 105329 bytes_in 99796 105329 station_ip 5.119.107.252 105329 port 2 105329 unique_id port 105329 remote_ip 10.8.1.42 105331 username avaanna 105331 mac 105331 bytes_out 19911 105331 bytes_in 23161 105331 station_ip 37.129.2.255 105331 port 9 105331 unique_id port 105331 remote_ip 10.8.0.98 105332 username avaanna 105332 mac 105332 bytes_out 0 105332 bytes_in 0 105332 station_ip 37.129.2.255 105332 port 17 105332 unique_id port 105332 remote_ip 10.8.0.98 105333 username avaanna 105333 mac 105333 bytes_out 8754 105333 bytes_in 16045 105333 station_ip 37.129.2.255 105333 port 9 105333 unique_id port 105333 remote_ip 10.8.0.98 105336 username mehdizare 105336 mac 105336 bytes_out 21587 105336 bytes_in 31726 105336 station_ip 5.119.107.252 105336 port 2 105336 unique_id port 105336 remote_ip 10.8.1.42 105337 username amir 105337 mac 105337 bytes_out 113803 105337 bytes_in 439157 105337 station_ip 46.225.214.63 105337 port 14 105337 unique_id port 105337 remote_ip 10.8.0.50 105340 username abbasaskari 105340 mac 105340 bytes_out 22935123 105340 bytes_in 272218137 105340 station_ip 83.122.174.55 105340 port 2 105340 unique_id port 105340 remote_ip 10.8.1.14 105342 username aminvpn 105342 mac 105342 bytes_out 201167 105342 bytes_in 364075 105342 station_ip 37.129.41.142 105342 port 16 105342 unique_id port 105342 remote_ip 10.8.0.14 105351 username malekpoir 105351 mac 105351 bytes_out 134571 105351 bytes_in 640439 105351 station_ip 5.120.50.98 105351 port 10 105351 unique_id port 105351 remote_ip 10.8.0.58 105353 username hashtadani 105353 unique_id port 105353 terminate_cause Lost-Carrier 105353 bytes_out 365349 105353 bytes_in 2514338 105353 station_ip 83.122.9.30 105353 port 15728690 105353 nas_port_type Virtual 105353 remote_ip 5.5.5.185 105355 username tahmasebi 105355 kill_reason Another user logged on this global unique id 105355 mac 105355 bytes_out 0 105355 bytes_in 0 105355 station_ip 5.119.42.112 105355 port 4 105355 unique_id port 105357 username rajaei 105357 kill_reason Another user logged on this global unique id 105357 mac 105357 bytes_out 0 105357 bytes_in 0 105357 station_ip 89.47.154.39 105357 port 10 105357 unique_id port 105357 remote_ip 10.8.0.34 105358 username amir 105358 mac 105358 bytes_out 0 105358 bytes_in 0 105358 station_ip 46.225.214.63 105358 port 18 105358 unique_id port 105358 remote_ip 10.8.0.50 105359 username alipour 105359 mac 105359 bytes_out 220353 105359 bytes_in 1556583 105359 station_ip 83.123.69.20 105359 port 13 105359 unique_id port 105359 remote_ip 10.8.0.102 105360 username rajaei 105360 mac 105360 bytes_out 0 105360 bytes_in 0 105360 station_ip 89.47.154.39 105360 port 10 105360 unique_id port 105362 username forozande 105362 mac 105362 bytes_out 800488 105362 bytes_in 11883133 105362 station_ip 83.122.189.214 105362 port 12 105323 station_ip 5.119.42.112 105323 port 4 105323 unique_id port 105327 username tahmasebi 105327 kill_reason Another user logged on this global unique id 105327 mac 105327 bytes_out 0 105327 bytes_in 0 105327 station_ip 5.119.42.112 105327 port 4 105327 unique_id port 105328 username avaanna 105328 mac 105328 bytes_out 0 105328 bytes_in 0 105328 station_ip 37.129.2.255 105328 port 9 105328 unique_id port 105328 remote_ip 10.8.0.98 105330 username alipour 105330 mac 105330 bytes_out 877531 105330 bytes_in 9389797 105330 station_ip 83.123.69.20 105330 port 17 105330 unique_id port 105330 remote_ip 10.8.0.102 105341 username abbasaskari 105341 mac 105341 bytes_out 9238 105341 bytes_in 23174 105341 station_ip 83.122.174.55 105341 port 14 105341 unique_id port 105341 remote_ip 10.8.0.10 105344 username khalili 105344 mac 105344 bytes_out 0 105344 bytes_in 0 105344 station_ip 5.119.88.140 105344 port 11 105344 unique_id port 105345 username avaanna 105345 mac 105345 bytes_out 0 105345 bytes_in 0 105345 station_ip 37.129.2.255 105345 port 3 105345 unique_id port 105345 remote_ip 10.8.1.46 105346 username tahmasebi 105346 kill_reason Another user logged on this global unique id 105346 mac 105346 bytes_out 0 105346 bytes_in 0 105346 station_ip 5.119.42.112 105346 port 4 105346 unique_id port 105348 username khalili 105348 mac 105348 bytes_out 10083 105348 bytes_in 22783 105348 station_ip 5.119.88.140 105348 port 9 105348 unique_id port 105348 remote_ip 10.8.0.86 105349 username avaanna 105349 mac 105349 bytes_out 2260 105349 bytes_in 6814 105349 station_ip 37.129.2.255 105349 port 18 105349 unique_id port 105349 remote_ip 10.8.0.98 105350 username amir 105350 mac 105350 bytes_out 46480 105350 bytes_in 421943 105350 station_ip 46.225.214.63 105350 port 9 105350 unique_id port 105350 remote_ip 10.8.0.50 105352 username askari 105352 mac 105352 bytes_out 219017 105352 bytes_in 1293424 105352 station_ip 5.119.154.245 105352 port 12 105352 unique_id port 105352 remote_ip 10.8.0.62 105354 username forozande 105354 mac 105354 bytes_out 1536554 105354 bytes_in 21263250 105354 station_ip 83.122.96.190 105354 port 14 105354 unique_id port 105354 remote_ip 10.8.0.74 105356 username avaanna 105356 mac 105356 bytes_out 0 105356 bytes_in 0 105356 station_ip 37.129.2.255 105356 port 3 105356 unique_id port 105356 remote_ip 10.8.1.46 105361 username aminvpn 105361 mac 105361 bytes_out 329518 105361 bytes_in 760385 105361 station_ip 37.129.41.142 105361 port 17 105361 unique_id port 105361 remote_ip 10.8.0.14 105372 username amir 105372 mac 105372 bytes_out 0 105372 bytes_in 0 105372 station_ip 46.225.214.63 105372 port 10 105372 unique_id port 105372 remote_ip 10.8.0.50 105374 username mohammadmahdi 105374 kill_reason Another user logged on this global unique id 105374 mac 105374 bytes_out 0 105374 bytes_in 0 105374 station_ip 5.119.65.94 105374 port 14 105374 unique_id port 105375 username amir 105375 mac 105375 bytes_out 0 105375 bytes_in 0 105375 station_ip 46.225.214.63 105375 port 13 105375 unique_id port 105375 remote_ip 10.8.0.50 105377 username mehdizare 105377 mac 105377 bytes_out 223943 105377 bytes_in 364622 105377 station_ip 5.119.107.252 105377 port 2 105377 unique_id port 105377 remote_ip 10.8.1.42 105380 username mohammadmahdi 105380 kill_reason Another user logged on this global unique id 105380 mac 105380 bytes_out 0 105380 bytes_in 0 105380 station_ip 5.119.65.94 105380 port 14 105380 unique_id port 105362 unique_id port 105362 remote_ip 10.8.0.74 105363 username zare 105363 mac 105363 bytes_out 1864023 105363 bytes_in 30972886 105363 station_ip 94.183.214.14 105363 port 11 105363 unique_id port 105363 remote_ip 10.8.0.18 105366 username alipour 105366 mac 105366 bytes_out 257915 105366 bytes_in 2974514 105366 station_ip 83.123.69.20 105366 port 18 105366 unique_id port 105366 remote_ip 10.8.0.102 105368 username alipour 105368 mac 105368 bytes_out 20861 105368 bytes_in 20959 105368 station_ip 83.123.69.20 105368 port 3 105368 unique_id port 105368 remote_ip 10.8.1.50 105369 username avaanna 105369 mac 105369 bytes_out 0 105369 bytes_in 0 105369 station_ip 37.129.2.255 105369 port 4 105369 unique_id port 105369 remote_ip 10.8.1.46 105370 username mohammadmahdi 105370 kill_reason Another user logged on this global unique id 105370 mac 105370 bytes_out 0 105370 bytes_in 0 105370 station_ip 5.119.65.94 105370 port 14 105370 unique_id port 105371 username alipour 105371 mac 105371 bytes_out 28784 105371 bytes_in 37282 105371 station_ip 83.123.69.20 105371 port 3 105371 unique_id port 105371 remote_ip 10.8.1.50 105373 username amir 105373 mac 105373 bytes_out 0 105373 bytes_in 0 105373 station_ip 46.225.214.63 105373 port 10 105373 unique_id port 105373 remote_ip 10.8.0.50 105378 username aminvpn 105378 mac 105378 bytes_out 0 105378 bytes_in 0 105378 station_ip 37.129.41.142 105378 port 12 105378 unique_id port 105378 remote_ip 10.8.0.14 105382 username aminvpn 105382 unique_id port 105382 terminate_cause User-Request 105382 bytes_out 3705446 105382 bytes_in 35605758 105382 station_ip 5.119.122.232 105382 port 15728688 105382 nas_port_type Virtual 105382 remote_ip 5.5.5.189 105385 username amir 105385 mac 105385 bytes_out 0 105385 bytes_in 0 105385 station_ip 46.225.214.63 105385 port 13 105385 unique_id port 105385 remote_ip 10.8.0.50 105394 username abbasaskari 105394 mac 105394 bytes_out 0 105394 bytes_in 0 105394 station_ip 83.122.206.223 105394 port 9 105394 unique_id port 105394 remote_ip 10.8.0.10 105395 username avaanna 105395 mac 105395 bytes_out 0 105395 bytes_in 0 105395 station_ip 37.129.2.255 105395 port 4 105395 unique_id port 105395 remote_ip 10.8.1.46 105397 username ahmadi 105397 unique_id port 105397 terminate_cause User-Request 105397 bytes_out 138185 105397 bytes_in 338481 105397 station_ip 83.123.59.21 105397 port 15728697 105397 nas_port_type Virtual 105397 remote_ip 5.5.5.183 105403 username mohammadmahdi 105403 kill_reason Another user logged on this global unique id 105403 mac 105403 bytes_out 0 105403 bytes_in 0 105403 station_ip 5.119.65.94 105403 port 14 105403 unique_id port 105405 username khalili 105405 kill_reason Another user logged on this global unique id 105405 mac 105405 bytes_out 0 105405 bytes_in 0 105405 station_ip 5.120.90.5 105405 port 19 105405 unique_id port 105406 username amir 105406 mac 105406 bytes_out 0 105406 bytes_in 0 105406 station_ip 46.225.214.63 105406 port 9 105406 unique_id port 105406 remote_ip 10.8.0.50 105408 username mohammadmahdi 105408 mac 105408 bytes_out 0 105408 bytes_in 0 105408 station_ip 5.119.65.94 105408 port 14 105408 unique_id port 105413 username mohammadreza 105413 mac 105413 bytes_out 7580 105413 bytes_in 11105 105413 station_ip 2.183.133.151 105413 port 10 105413 unique_id port 105413 remote_ip 10.8.0.94 105421 username avaanna 105421 kill_reason Another user logged on this global unique id 105421 mac 105421 bytes_out 0 105421 bytes_in 0 105379 username mahdiyehalizadeh 105379 mac 105379 bytes_out 0 105379 bytes_in 0 105379 station_ip 83.123.223.10 105379 port 11 105379 unique_id port 105379 remote_ip 10.8.0.82 105384 username avaanna 105384 mac 105384 bytes_out 0 105384 bytes_in 0 105384 station_ip 37.129.2.255 105384 port 4 105384 unique_id port 105384 remote_ip 10.8.1.46 105387 username mohammadmahdi 105387 kill_reason Another user logged on this global unique id 105387 mac 105387 bytes_out 0 105387 bytes_in 0 105387 station_ip 5.119.65.94 105387 port 14 105387 unique_id port 105388 username farhad1 105388 kill_reason Another user logged on this global unique id 105388 mac 105388 bytes_out 0 105388 bytes_in 0 105388 station_ip 5.120.98.232 105388 port 9 105388 unique_id port 105388 remote_ip 10.8.0.26 105390 username farhad1 105390 mac 105390 bytes_out 0 105390 bytes_in 0 105390 station_ip 5.120.98.232 105390 port 9 105390 unique_id port 105391 username amir 105391 mac 105391 bytes_out 0 105391 bytes_in 0 105391 station_ip 46.225.214.63 105391 port 9 105391 unique_id port 105391 remote_ip 10.8.0.50 105400 username madadi2 105400 kill_reason Relative expiration date has reached 105400 mac 105400 bytes_out 0 105400 bytes_in 0 105400 station_ip 5.119.203.136 105400 port 9 105400 unique_id port 105401 username amir 105401 mac 105401 bytes_out 0 105401 bytes_in 0 105401 station_ip 46.225.214.63 105401 port 9 105401 unique_id port 105401 remote_ip 10.8.0.50 105402 username rajaei 105402 kill_reason Another user logged on this global unique id 105402 mac 105402 bytes_out 0 105402 bytes_in 0 105402 station_ip 89.47.154.39 105402 port 9 105402 unique_id port 105402 remote_ip 10.8.0.34 105411 username musa 105411 mac 105411 bytes_out 0 105411 bytes_in 0 105411 station_ip 91.133.201.88 105411 port 11 105411 unique_id port 105411 remote_ip 10.8.0.6 105416 username alipour 105416 mac 105416 bytes_out 182797 105416 bytes_in 2247725 105416 station_ip 83.123.69.20 105416 port 3 105416 unique_id port 105416 remote_ip 10.8.1.50 105420 username alipour 105420 mac 105420 bytes_out 0 105420 bytes_in 0 105420 station_ip 83.123.69.20 105420 port 3 105420 unique_id port 105420 remote_ip 10.8.1.50 105422 username khalili 105422 kill_reason Another user logged on this global unique id 105422 mac 105422 bytes_out 0 105422 bytes_in 0 105422 station_ip 5.120.90.5 105422 port 19 105422 unique_id port 105423 username tahmasebi 105423 kill_reason Another user logged on this global unique id 105423 mac 105423 bytes_out 0 105423 bytes_in 0 105423 station_ip 5.119.42.112 105423 port 4 105423 unique_id port 105426 username forozande 105426 mac 105426 bytes_out 0 105426 bytes_in 0 105426 station_ip 83.122.249.227 105426 port 9 105426 unique_id port 105426 remote_ip 10.8.0.74 105432 username avaanna 105432 mac 105432 bytes_out 0 105432 bytes_in 0 105432 station_ip 37.129.2.255 105432 port 4 105432 unique_id port 105432 remote_ip 10.8.1.46 105433 username amir 105433 mac 105433 bytes_out 39997 105433 bytes_in 210797 105433 station_ip 46.225.214.63 105433 port 10 105433 unique_id port 105433 remote_ip 10.8.0.50 105436 username alipour 105436 mac 105436 bytes_out 0 105436 bytes_in 0 105436 station_ip 83.123.69.20 105436 port 3 105436 unique_id port 105436 remote_ip 10.8.1.50 105443 username amir 105443 mac 105443 bytes_out 0 105443 bytes_in 0 105443 station_ip 46.225.214.63 105443 port 12 105443 unique_id port 105443 remote_ip 10.8.0.50 105444 username amir 105381 username alireza 105381 unique_id port 105381 terminate_cause Lost-Carrier 105381 bytes_out 3614816 105381 bytes_in 60344794 105381 station_ip 194.15.99.84 105381 port 15728691 105381 nas_port_type Virtual 105381 remote_ip 5.5.5.184 105383 username askari 105383 mac 105383 bytes_out 0 105383 bytes_in 0 105383 station_ip 5.120.112.105 105383 port 9 105383 unique_id port 105386 username houshang 105386 mac 105386 bytes_out 0 105386 bytes_in 0 105386 station_ip 5.120.153.3 105386 port 12 105386 unique_id port 105386 remote_ip 10.8.0.22 105389 username forozande 105389 mac 105389 bytes_out 764611 105389 bytes_in 9639691 105389 station_ip 83.123.191.229 105389 port 10 105389 unique_id port 105389 remote_ip 10.8.0.74 105392 username mohammadmahdi 105392 kill_reason Another user logged on this global unique id 105392 mac 105392 bytes_out 0 105392 bytes_in 0 105392 station_ip 5.119.65.94 105392 port 14 105392 unique_id port 105393 username alemzadeh 105393 kill_reason Relative expiration date has reached 105393 unique_id port 105393 bytes_out 0 105393 bytes_in 0 105393 station_ip 83.123.132.137 105393 port 15728696 105393 nas_port_type Virtual 105396 username amir 105396 mac 105396 bytes_out 0 105396 bytes_in 0 105396 station_ip 46.225.214.63 105396 port 9 105396 unique_id port 105396 remote_ip 10.8.0.50 105398 username avaanna 105398 mac 105398 bytes_out 7605 105398 bytes_in 11248 105398 station_ip 37.129.2.255 105398 port 4 105398 unique_id port 105398 remote_ip 10.8.1.46 105399 username khalili 105399 kill_reason Another user logged on this global unique id 105399 mac 105399 bytes_out 0 105399 bytes_in 0 105399 station_ip 5.120.90.5 105399 port 19 105399 unique_id port 105399 remote_ip 10.8.0.86 105404 username rajaei 105404 mac 105404 bytes_out 0 105404 bytes_in 0 105404 station_ip 89.47.154.39 105404 port 9 105404 unique_id port 105407 username mohammadreza 105407 mac 105407 bytes_out 0 105407 bytes_in 0 105407 station_ip 151.235.65.159 105407 port 16 105407 unique_id port 105407 remote_ip 10.8.0.94 105409 username khalili 105409 kill_reason Another user logged on this global unique id 105409 mac 105409 bytes_out 0 105409 bytes_in 0 105409 station_ip 5.120.90.5 105409 port 19 105409 unique_id port 105410 username amir 105410 mac 105410 bytes_out 0 105410 bytes_in 0 105410 station_ip 46.225.214.63 105410 port 13 105410 unique_id port 105410 remote_ip 10.8.0.50 105412 username alipour 105412 mac 105412 bytes_out 319668 105412 bytes_in 469089 105412 station_ip 83.123.69.20 105412 port 3 105412 unique_id port 105412 remote_ip 10.8.1.50 105414 username mohammadreza 105414 mac 105414 bytes_out 0 105414 bytes_in 0 105414 station_ip 2.183.135.62 105414 port 10 105414 unique_id port 105414 remote_ip 10.8.0.94 105415 username zare 105415 mac 105415 bytes_out 452376 105415 bytes_in 5781619 105415 station_ip 94.183.214.14 105415 port 9 105415 unique_id port 105415 remote_ip 10.8.0.18 105417 username amir 105417 mac 105417 bytes_out 0 105417 bytes_in 0 105417 station_ip 46.225.214.63 105417 port 5 105417 unique_id port 105417 remote_ip 10.8.1.22 105418 username mohammadmahdi 105418 kill_reason Another user logged on this global unique id 105418 mac 105418 bytes_out 0 105418 bytes_in 0 105418 station_ip 5.119.65.94 105418 port 12 105418 unique_id port 105418 remote_ip 10.8.0.54 105419 username askari 105419 mac 105419 bytes_out 33203 105419 bytes_in 48533 105419 station_ip 5.120.122.223 105419 port 10 105419 unique_id port 105419 remote_ip 10.8.0.62 105421 station_ip 37.129.2.255 105421 port 4 105421 unique_id port 105421 remote_ip 10.8.1.46 105424 username mohammadmahdi 105424 kill_reason Another user logged on this global unique id 105424 mac 105424 bytes_out 0 105424 bytes_in 0 105424 station_ip 5.119.65.94 105424 port 12 105424 unique_id port 105425 username musa 105425 mac 105425 bytes_out 0 105425 bytes_in 0 105425 station_ip 91.133.201.88 105425 port 13 105425 unique_id port 105425 remote_ip 10.8.0.6 105427 username mohammadmahdi 105427 mac 105427 bytes_out 0 105427 bytes_in 0 105427 station_ip 5.119.65.94 105427 port 12 105427 unique_id port 105430 username amir 105430 mac 105430 bytes_out 1306670 105430 bytes_in 21013467 105430 station_ip 46.225.214.63 105430 port 10 105430 unique_id port 105430 remote_ip 10.8.0.50 105431 username amir 105431 mac 105431 bytes_out 0 105431 bytes_in 0 105431 station_ip 46.225.214.63 105431 port 9 105431 unique_id port 105431 remote_ip 10.8.0.50 105434 username amir 105434 mac 105434 bytes_out 0 105434 bytes_in 0 105434 station_ip 46.225.214.63 105434 port 10 105434 unique_id port 105434 remote_ip 10.8.0.50 105437 username tahmasebi 105437 kill_reason Another user logged on this global unique id 105437 mac 105437 bytes_out 0 105437 bytes_in 0 105437 station_ip 5.119.42.112 105437 port 4 105437 unique_id port 105440 username tahmasebi 105440 kill_reason Another user logged on this global unique id 105440 mac 105440 bytes_out 0 105440 bytes_in 0 105440 station_ip 5.119.42.112 105440 port 4 105440 unique_id port 105442 username alipour 105442 mac 105442 bytes_out 34678 105442 bytes_in 36008 105442 station_ip 83.123.69.20 105442 port 3 105442 unique_id port 105442 remote_ip 10.8.1.50 105446 username amir 105446 mac 105446 bytes_out 0 105446 bytes_in 0 105446 station_ip 46.225.214.63 105446 port 12 105446 unique_id port 105446 remote_ip 10.8.0.50 105449 username avaanna 105449 mac 105449 bytes_out 0 105449 bytes_in 0 105449 station_ip 37.129.2.255 105449 port 10 105449 unique_id port 105449 remote_ip 10.8.0.98 105450 username tahmasebi 105450 kill_reason Another user logged on this global unique id 105450 mac 105450 bytes_out 0 105450 bytes_in 0 105450 station_ip 5.119.42.112 105450 port 4 105450 unique_id port 105455 username amir 105455 mac 105455 bytes_out 0 105455 bytes_in 0 105455 station_ip 46.225.214.63 105455 port 14 105455 unique_id port 105455 remote_ip 10.8.0.50 105463 username hamid 105463 mac 105463 bytes_out 0 105463 bytes_in 0 105463 station_ip 83.123.23.249 105463 port 12 105463 unique_id port 105466 username abbasaskari 105466 mac 105466 bytes_out 0 105466 bytes_in 0 105466 station_ip 83.122.199.43 105466 port 9 105466 unique_id port 105466 remote_ip 10.8.0.10 105469 username amir 105469 mac 105469 bytes_out 28337854 105469 bytes_in 2258994 105469 station_ip 46.225.214.63 105469 port 11 105469 unique_id port 105469 remote_ip 10.8.0.50 105481 username avaanna 105481 mac 105481 bytes_out 0 105481 bytes_in 0 105481 station_ip 37.129.2.255 105481 port 14 105481 unique_id port 105481 remote_ip 10.8.0.98 105483 username aminvpn 105483 unique_id port 105483 terminate_cause Lost-Carrier 105483 bytes_out 72159 105483 bytes_in 307289 105483 station_ip 109.125.161.110 105483 port 15728699 105483 nas_port_type Virtual 105483 remote_ip 5.5.5.181 105486 username tahmasebi 105486 kill_reason Another user logged on this global unique id 105486 mac 105486 bytes_out 0 105486 bytes_in 0 105486 station_ip 5.119.42.112 105486 port 4 105428 username tahmasebi 105428 kill_reason Another user logged on this global unique id 105428 mac 105428 bytes_out 0 105428 bytes_in 0 105428 station_ip 5.119.42.112 105428 port 4 105428 unique_id port 105429 username tahmasebi 105429 mac 105429 bytes_out 0 105429 bytes_in 0 105429 station_ip 5.119.42.112 105429 port 4 105429 unique_id port 105435 username avaanna 105435 mac 105435 bytes_out 0 105435 bytes_in 0 105435 station_ip 37.129.2.255 105435 port 9 105435 unique_id port 105435 remote_ip 10.8.0.98 105438 username amir 105438 mac 105438 bytes_out 0 105438 bytes_in 0 105438 station_ip 46.225.214.63 105438 port 4 105438 unique_id port 105438 remote_ip 10.8.1.22 105439 username amir 105439 mac 105439 bytes_out 0 105439 bytes_in 0 105439 station_ip 46.225.214.63 105439 port 4 105439 unique_id port 105439 remote_ip 10.8.1.22 105441 username amir 105441 mac 105441 bytes_out 0 105441 bytes_in 0 105441 station_ip 46.225.214.63 105441 port 4 105441 unique_id port 105441 remote_ip 10.8.1.22 105445 username hamid 105445 mac 105445 bytes_out 0 105445 bytes_in 0 105445 station_ip 83.123.23.249 105445 port 13 105445 unique_id port 105445 remote_ip 10.8.0.106 105451 username musa 105451 mac 105451 bytes_out 0 105451 bytes_in 0 105451 station_ip 91.133.201.88 105451 port 14 105451 unique_id port 105451 remote_ip 10.8.0.6 105453 username abbasaskari 105453 mac 105453 bytes_out 0 105453 bytes_in 0 105453 station_ip 83.122.199.43 105453 port 13 105453 unique_id port 105453 remote_ip 10.8.0.10 105461 username forozande 105461 mac 105461 bytes_out 0 105461 bytes_in 0 105461 station_ip 37.129.36.46 105461 port 9 105461 unique_id port 105461 remote_ip 10.8.0.74 105465 username avaanna 105465 kill_reason Another user logged on this global unique id 105465 mac 105465 bytes_out 0 105465 bytes_in 0 105465 station_ip 37.129.2.255 105465 port 4 105465 unique_id port 105465 remote_ip 10.8.1.46 105468 username kamali1 105468 mac 105468 bytes_out 2488951 105468 bytes_in 29519050 105468 station_ip 5.120.153.80 105468 port 15 105468 unique_id port 105468 remote_ip 10.8.0.70 105472 username tahmasebi 105472 kill_reason Another user logged on this global unique id 105472 mac 105472 bytes_out 0 105472 bytes_in 0 105472 station_ip 5.119.42.112 105472 port 4 105472 unique_id port 105475 username mohammadmahdi 105475 kill_reason Another user logged on this global unique id 105475 mac 105475 bytes_out 0 105475 bytes_in 0 105475 station_ip 5.119.65.94 105475 port 9 105475 unique_id port 105475 remote_ip 10.8.0.54 105489 username forozande 105489 kill_reason Another user logged on this global unique id 105489 mac 105489 bytes_out 0 105489 bytes_in 0 105489 station_ip 37.129.197.65 105489 port 10 105489 unique_id port 105489 remote_ip 10.8.0.74 105495 username tahmasebi 105495 mac 105495 bytes_out 0 105495 bytes_in 0 105495 station_ip 5.119.42.112 105495 port 4 105495 unique_id port 105495 remote_ip 10.8.0.42 105500 username amir 105500 mac 105500 bytes_out 96610 105500 bytes_in 239802 105500 station_ip 46.225.214.63 105500 port 4 105500 unique_id port 105500 remote_ip 10.8.1.22 105505 username ahmadipour 105505 unique_id port 105505 terminate_cause Lost-Carrier 105505 bytes_out 168277 105505 bytes_in 3729385 105505 station_ip 83.122.54.209 105505 port 15728706 105505 nas_port_type Virtual 105505 remote_ip 5.5.5.174 105510 username amir 105510 mac 105510 bytes_out 20132 105510 bytes_in 48138 105510 station_ip 46.225.214.63 105510 port 14 105444 mac 105444 bytes_out 0 105444 bytes_in 0 105444 station_ip 46.225.214.63 105444 port 12 105444 unique_id port 105444 remote_ip 10.8.0.50 105447 username khalili 105447 kill_reason Another user logged on this global unique id 105447 mac 105447 bytes_out 0 105447 bytes_in 0 105447 station_ip 5.120.90.5 105447 port 19 105447 unique_id port 105448 username amir 105448 mac 105448 bytes_out 0 105448 bytes_in 0 105448 station_ip 46.225.214.63 105448 port 13 105448 unique_id port 105448 remote_ip 10.8.0.50 105452 username amir 105452 mac 105452 bytes_out 0 105452 bytes_in 0 105452 station_ip 46.225.214.63 105452 port 13 105452 unique_id port 105452 remote_ip 10.8.0.50 105454 username hamid 105454 mac 105454 bytes_out 877458 105454 bytes_in 5059173 105454 station_ip 83.123.23.249 105454 port 12 105454 unique_id port 105454 remote_ip 10.8.0.106 105456 username malekpoir 105456 mac 105456 bytes_out 0 105456 bytes_in 0 105456 station_ip 5.119.26.223 105456 port 11 105456 unique_id port 105456 remote_ip 10.8.0.58 105457 username amir 105457 mac 105457 bytes_out 0 105457 bytes_in 0 105457 station_ip 46.225.214.63 105457 port 11 105457 unique_id port 105457 remote_ip 10.8.0.50 105458 username musa 105458 mac 105458 bytes_out 0 105458 bytes_in 0 105458 station_ip 91.133.201.88 105458 port 10 105458 unique_id port 105458 remote_ip 10.8.0.6 105459 username alipour 105459 mac 105459 bytes_out 207921 105459 bytes_in 841393 105459 station_ip 83.123.69.20 105459 port 3 105459 unique_id port 105459 remote_ip 10.8.1.50 105460 username khalili 105460 kill_reason Another user logged on this global unique id 105460 mac 105460 bytes_out 0 105460 bytes_in 0 105460 station_ip 5.120.90.5 105460 port 19 105460 unique_id port 105462 username hamid 105462 kill_reason Another user logged on this global unique id 105462 mac 105462 bytes_out 0 105462 bytes_in 0 105462 station_ip 83.123.23.249 105462 port 12 105462 unique_id port 105462 remote_ip 10.8.0.106 105464 username forozande 105464 mac 105464 bytes_out 303904 105464 bytes_in 3251723 105464 station_ip 83.122.149.40 105464 port 9 105464 unique_id port 105464 remote_ip 10.8.0.74 105467 username aminvpn 105467 unique_id port 105467 terminate_cause Lost-Carrier 105467 bytes_out 38673111 105467 bytes_in 780160794 105467 station_ip 31.57.131.97 105467 port 15728680 105467 nas_port_type Virtual 105467 remote_ip 5.5.5.204 105470 username khalili 105470 mac 105470 bytes_out 0 105470 bytes_in 0 105470 station_ip 5.120.90.5 105470 port 19 105470 unique_id port 105471 username forozande 105471 mac 105471 bytes_out 0 105471 bytes_in 0 105471 station_ip 37.129.147.54 105471 port 10 105471 unique_id port 105471 remote_ip 10.8.0.74 105473 username tahmasebi 105473 mac 105473 bytes_out 0 105473 bytes_in 0 105473 station_ip 5.119.42.112 105473 port 4 105473 unique_id port 105474 username avaanna 105474 kill_reason Another user logged on this global unique id 105474 mac 105474 bytes_out 0 105474 bytes_in 0 105474 station_ip 37.129.2.255 105474 port 4 105474 unique_id port 105474 remote_ip 10.8.1.46 105476 username tahmasebi 105476 kill_reason Another user logged on this global unique id 105476 mac 105476 bytes_out 0 105476 bytes_in 0 105476 station_ip 5.119.42.112 105476 port 4 105476 unique_id port 105477 username rajaei 105477 kill_reason Another user logged on this global unique id 105477 mac 105477 bytes_out 0 105477 bytes_in 0 105477 station_ip 5.134.174.110 105477 port 11 105477 unique_id port 105477 remote_ip 10.8.0.34 105478 username mohammadmahdi 105478 mac 105478 bytes_out 0 105478 bytes_in 0 105478 station_ip 5.119.65.94 105478 port 9 105478 unique_id port 105479 username tahmasebi 105479 mac 105479 bytes_out 0 105479 bytes_in 0 105479 station_ip 5.119.42.112 105479 port 4 105479 unique_id port 105480 username forozande 105480 mac 105480 bytes_out 110819 105480 bytes_in 268980 105480 station_ip 113.203.28.100 105480 port 9 105480 unique_id port 105480 remote_ip 10.8.0.74 105482 username rajaei 105482 kill_reason Another user logged on this global unique id 105482 mac 105482 bytes_out 0 105482 bytes_in 0 105482 station_ip 5.134.174.110 105482 port 11 105482 unique_id port 105484 username rajaei 105484 mac 105484 bytes_out 0 105484 bytes_in 0 105484 station_ip 5.134.174.110 105484 port 11 105484 unique_id port 105485 username mohammadreza 105485 mac 105485 bytes_out 19356 105485 bytes_in 25735 105485 station_ip 94.176.15.246 105485 port 10 105485 unique_id port 105485 remote_ip 10.8.0.94 105491 username alireza 105491 unique_id port 105491 terminate_cause User-Request 105491 bytes_out 9474 105491 bytes_in 19679 105491 station_ip 5.119.76.227 105491 port 15728701 105491 nas_port_type Virtual 105491 remote_ip 5.5.5.178 105493 username forozande 105493 mac 105493 bytes_out 0 105493 bytes_in 0 105493 station_ip 37.129.197.65 105493 port 10 105493 unique_id port 105497 username kamali1 105497 mac 105497 bytes_out 177137 105497 bytes_in 325561 105497 station_ip 5.120.153.80 105497 port 12 105497 unique_id port 105497 remote_ip 10.8.0.70 105503 username amir 105503 mac 105503 bytes_out 0 105503 bytes_in 0 105503 station_ip 46.225.214.63 105503 port 4 105503 unique_id port 105503 remote_ip 10.8.0.50 105504 username aminvpn 105504 kill_reason Another user logged on this global unique id 105504 mac 105504 bytes_out 0 105504 bytes_in 0 105504 station_ip 83.123.186.155 105504 port 13 105504 unique_id port 105504 remote_ip 10.8.0.14 105506 username amir 105506 mac 105506 bytes_out 50368 105506 bytes_in 317738 105506 station_ip 46.225.214.63 105506 port 12 105506 unique_id port 105506 remote_ip 10.8.0.50 105507 username alipour 105507 kill_reason Another user logged on this global unique id 105507 mac 105507 bytes_out 0 105507 bytes_in 0 105507 station_ip 83.123.69.20 105507 port 3 105507 unique_id port 105509 username amir 105509 mac 105509 bytes_out 0 105509 bytes_in 0 105509 station_ip 46.225.214.63 105509 port 12 105509 unique_id port 105509 remote_ip 10.8.0.50 105513 username forozande 105513 mac 105513 bytes_out 0 105513 bytes_in 0 105513 station_ip 83.122.23.164 105513 port 12 105513 unique_id port 105513 remote_ip 10.8.0.74 105515 username avaanna 105515 mac 105515 bytes_out 0 105515 bytes_in 0 105515 station_ip 37.129.2.255 105515 port 9 105515 unique_id port 105517 username abbasaskari 105517 mac 105517 bytes_out 23225 105517 bytes_in 145189 105517 station_ip 83.122.2.21 105517 port 12 105517 unique_id port 105517 remote_ip 10.8.0.10 105519 username abbasaskari 105519 mac 105519 bytes_out 0 105519 bytes_in 0 105519 station_ip 83.122.2.21 105519 port 12 105519 unique_id port 105519 remote_ip 10.8.0.10 105524 username tahmasebi 105524 kill_reason Another user logged on this global unique id 105524 mac 105524 bytes_out 0 105524 bytes_in 0 105524 station_ip 5.119.42.112 105524 port 4 105524 unique_id port 105525 username tahmasebi 105525 kill_reason Another user logged on this global unique id 105525 mac 105525 bytes_out 0 105525 bytes_in 0 105486 unique_id port 105487 username avaanna 105487 kill_reason Maximum check online fails reached 105487 mac 105487 bytes_out 775985 105487 bytes_in 10906599 105487 station_ip 37.129.2.255 105487 port 9 105487 unique_id port 105487 remote_ip 10.8.0.98 105488 username tahmasebi 105488 kill_reason Another user logged on this global unique id 105488 mac 105488 bytes_out 0 105488 bytes_in 0 105488 station_ip 5.119.42.112 105488 port 4 105488 unique_id port 105490 username ahmadi 105490 unique_id port 105490 terminate_cause User-Request 105490 bytes_out 92164 105490 bytes_in 497506 105490 station_ip 83.123.51.110 105490 port 15728700 105490 nas_port_type Virtual 105490 remote_ip 5.5.5.179 105492 username tahmasebi 105492 kill_reason Another user logged on this global unique id 105492 mac 105492 bytes_out 0 105492 bytes_in 0 105492 station_ip 5.119.42.112 105492 port 4 105492 unique_id port 105494 username tahmasebi 105494 mac 105494 bytes_out 0 105494 bytes_in 0 105494 station_ip 5.119.42.112 105494 port 4 105494 unique_id port 105496 username mehdizare 105496 kill_reason Another user logged on this global unique id 105496 mac 105496 bytes_out 0 105496 bytes_in 0 105496 station_ip 5.119.107.252 105496 port 2 105496 unique_id port 105496 remote_ip 10.8.1.42 105498 username forozande 105498 kill_reason Another user logged on this global unique id 105498 mac 105498 bytes_out 0 105498 bytes_in 0 105498 station_ip 83.123.60.132 105498 port 4 105498 unique_id port 105498 remote_ip 10.8.0.74 105499 username alireza 105499 unique_id port 105499 terminate_cause User-Request 105499 bytes_out 1765763 105499 bytes_in 19445134 105499 station_ip 5.119.76.227 105499 port 15728702 105499 nas_port_type Virtual 105499 remote_ip 5.5.5.177 105501 username amir 105501 mac 105501 bytes_out 60376 105501 bytes_in 252502 105501 station_ip 46.225.214.63 105501 port 11 105501 unique_id port 105501 remote_ip 10.8.0.50 105502 username alipour 105502 kill_reason Another user logged on this global unique id 105502 mac 105502 bytes_out 0 105502 bytes_in 0 105502 station_ip 83.123.69.20 105502 port 3 105502 unique_id port 105502 remote_ip 10.8.1.50 105508 username mirzaei 105508 kill_reason Another user logged on this global unique id 105508 mac 105508 bytes_out 0 105508 bytes_in 0 105508 station_ip 5.120.100.72 105508 port 2 105508 unique_id port 105511 username hashtadani 105511 unique_id port 105511 terminate_cause Lost-Carrier 105511 bytes_out 422220 105511 bytes_in 3220271 105511 station_ip 5.202.28.154 105511 port 15728708 105511 nas_port_type Virtual 105511 remote_ip 5.5.5.171 105512 username tahmasebi 105512 kill_reason Another user logged on this global unique id 105512 mac 105512 bytes_out 0 105512 bytes_in 0 105512 station_ip 5.119.42.112 105512 port 4 105512 unique_id port 105512 remote_ip 10.8.0.42 105516 username amir 105516 mac 105516 bytes_out 0 105516 bytes_in 0 105516 station_ip 46.225.214.63 105516 port 12 105516 unique_id port 105516 remote_ip 10.8.0.50 105520 username amir 105520 mac 105520 bytes_out 0 105520 bytes_in 0 105520 station_ip 46.225.214.63 105520 port 14 105520 unique_id port 105520 remote_ip 10.8.0.50 105521 username aminvpn 105521 unique_id port 105521 terminate_cause Lost-Carrier 105521 bytes_out 1237886 105521 bytes_in 4557944 105521 station_ip 5.119.122.232 105521 port 15728704 105521 nas_port_type Virtual 105521 remote_ip 5.5.5.176 105522 username forozande 105522 mac 105522 bytes_out 0 105522 bytes_in 0 105522 station_ip 83.122.97.223 105522 port 12 105522 unique_id port 105522 remote_ip 10.8.0.74 105527 username mehdizare 105527 mac 105527 bytes_out 0 105510 unique_id port 105510 remote_ip 10.8.0.50 105514 username mohammadmahdi 105514 mac 105514 bytes_out 256842 105514 bytes_in 2234228 105514 station_ip 5.119.65.94 105514 port 14 105514 unique_id port 105514 remote_ip 10.8.0.54 105518 username amir 105518 mac 105518 bytes_out 0 105518 bytes_in 0 105518 station_ip 46.225.214.63 105518 port 12 105518 unique_id port 105518 remote_ip 10.8.0.50 105523 username malekpoir 105523 mac 105523 bytes_out 4707822 105523 bytes_in 44641971 105523 station_ip 5.120.113.248 105523 port 11 105523 unique_id port 105523 remote_ip 10.8.0.58 105526 username aminvpn 105526 unique_id port 105526 terminate_cause Lost-Carrier 105526 bytes_out 326198 105526 bytes_in 1176226 105526 station_ip 5.119.122.232 105526 port 15728710 105526 nas_port_type Virtual 105526 remote_ip 5.5.5.168 105532 username malekpoir 105532 mac 105532 bytes_out 2630 105532 bytes_in 5468 105532 station_ip 5.120.113.248 105532 port 9 105532 unique_id port 105532 remote_ip 10.8.0.58 105534 username avaanna 105534 mac 105534 bytes_out 0 105534 bytes_in 0 105534 station_ip 37.129.2.255 105534 port 15 105534 unique_id port 105534 remote_ip 10.8.0.98 105538 username tahmasebi 105538 kill_reason Another user logged on this global unique id 105538 mac 105538 bytes_out 0 105538 bytes_in 0 105538 station_ip 5.119.42.112 105538 port 4 105538 unique_id port 105539 username mohammadmahdi 105539 kill_reason Another user logged on this global unique id 105539 mac 105539 bytes_out 0 105539 bytes_in 0 105539 station_ip 5.119.65.94 105539 port 9 105539 unique_id port 105539 remote_ip 10.8.0.54 105541 username kamali1 105541 mac 105541 bytes_out 195394 105541 bytes_in 244846 105541 station_ip 5.120.153.80 105541 port 10 105541 unique_id port 105541 remote_ip 10.8.0.70 105543 username mohammadmahdi 105543 mac 105543 bytes_out 0 105543 bytes_in 0 105543 station_ip 5.119.65.94 105543 port 9 105543 unique_id port 105544 username kamali1 105544 mac 105544 bytes_out 18803 105544 bytes_in 26309 105544 station_ip 5.120.153.80 105544 port 10 105544 unique_id port 105544 remote_ip 10.8.0.70 105546 username forozande 105546 mac 105546 bytes_out 0 105546 bytes_in 0 105546 station_ip 83.123.22.217 105546 port 11 105546 unique_id port 105547 username avaanna 105547 mac 105547 bytes_out 494265 105547 bytes_in 9905930 105547 station_ip 37.129.2.255 105547 port 12 105547 unique_id port 105547 remote_ip 10.8.0.98 105548 username avaanna 105548 mac 105548 bytes_out 0 105548 bytes_in 0 105548 station_ip 37.129.2.255 105548 port 10 105548 unique_id port 105548 remote_ip 10.8.0.98 105549 username hamid 105549 mac 105549 bytes_out 236067 105549 bytes_in 1536678 105549 station_ip 83.123.97.129 105549 port 10 105549 unique_id port 105549 remote_ip 10.8.0.106 105557 username ahmadipour 105557 unique_id port 105557 terminate_cause Lost-Carrier 105557 bytes_out 3689184 105557 bytes_in 75811263 105557 station_ip 83.122.105.241 105557 port 15728712 105557 nas_port_type Virtual 105557 remote_ip 5.5.5.164 105559 username mehdizare 105559 mac 105559 bytes_out 0 105559 bytes_in 0 105559 station_ip 5.119.107.252 105559 port 10 105559 unique_id port 105559 remote_ip 10.8.0.90 105563 username musa 105563 kill_reason Another user logged on this global unique id 105563 mac 105563 bytes_out 0 105563 bytes_in 0 105563 station_ip 204.18.219.244 105563 port 14 105563 unique_id port 105563 remote_ip 10.8.0.6 105565 username mirzaei 105565 mac 105565 bytes_out 0 105565 bytes_in 0 105525 station_ip 5.119.42.112 105525 port 4 105525 unique_id port 105529 username avaanna 105529 mac 105529 bytes_out 604276 105529 bytes_in 8933824 105529 station_ip 37.129.2.255 105529 port 9 105529 unique_id port 105529 remote_ip 10.8.0.98 105530 username mehdizare 105530 mac 105530 bytes_out 17950 105530 bytes_in 24451 105530 station_ip 5.119.107.252 105530 port 2 105530 unique_id port 105530 remote_ip 10.8.1.42 105531 username malekpoir 105531 mac 105531 bytes_out 15870 105531 bytes_in 22756 105531 station_ip 5.120.113.248 105531 port 12 105531 unique_id port 105531 remote_ip 10.8.0.58 105537 username abbasaskari 105537 mac 105537 bytes_out 131777 105537 bytes_in 457448 105537 station_ip 83.122.2.21 105537 port 14 105537 unique_id port 105537 remote_ip 10.8.0.10 105540 username forozande 105540 kill_reason Another user logged on this global unique id 105540 mac 105540 bytes_out 0 105540 bytes_in 0 105540 station_ip 83.123.22.217 105540 port 11 105540 unique_id port 105540 remote_ip 10.8.0.74 105542 username arabpour 105542 unique_id port 105542 terminate_cause User-Request 105542 bytes_out 166328 105542 bytes_in 1030586 105542 station_ip 83.122.71.216 105542 port 15728711 105542 nas_port_type Virtual 105542 remote_ip 5.5.5.166 105551 username avaanna 105551 mac 105551 bytes_out 38126 105551 bytes_in 36821 105551 station_ip 37.129.2.255 105551 port 12 105551 unique_id port 105551 remote_ip 10.8.0.98 105553 username forozande 105553 mac 105553 bytes_out 299891 105553 bytes_in 4159839 105553 station_ip 37.129.122.117 105553 port 11 105553 unique_id port 105553 remote_ip 10.8.0.74 105554 username alireza 105554 unique_id port 105554 terminate_cause Lost-Carrier 105554 bytes_out 2615322 105554 bytes_in 62082250 105554 station_ip 194.15.99.84 105554 port 15728707 105554 nas_port_type Virtual 105554 remote_ip 5.5.5.173 105556 username tahmasebi 105556 mac 105556 bytes_out 0 105556 bytes_in 0 105556 station_ip 5.119.42.112 105556 port 4 105556 unique_id port 105561 username forozande 105561 mac 105561 bytes_out 77710 105561 bytes_in 98770 105561 station_ip 113.203.126.142 105561 port 9 105561 unique_id port 105561 remote_ip 10.8.0.74 105564 username alipour 105564 mac 105564 bytes_out 0 105564 bytes_in 0 105564 station_ip 83.123.69.20 105564 port 3 105564 unique_id port 105570 username houshang 105570 kill_reason Another user logged on this global unique id 105570 mac 105570 bytes_out 0 105570 bytes_in 0 105570 station_ip 5.119.17.123 105570 port 9 105570 unique_id port 105570 remote_ip 10.8.0.22 105572 username kamali1 105572 mac 105572 bytes_out 0 105572 bytes_in 0 105572 station_ip 5.120.153.80 105572 port 4 105572 unique_id port 105572 remote_ip 10.8.1.26 105573 username rajaei 105573 mac 105573 bytes_out 0 105573 bytes_in 0 105573 station_ip 37.137.27.28 105573 port 16 105573 unique_id port 105573 remote_ip 10.8.0.34 105588 username mehdizare 105588 kill_reason Another user logged on this global unique id 105588 mac 105588 bytes_out 0 105588 bytes_in 0 105588 station_ip 5.119.107.252 105588 port 2 105588 unique_id port 105588 remote_ip 10.8.1.42 105598 username amir 105598 mac 105598 bytes_out 0 105598 bytes_in 0 105598 station_ip 46.225.211.107 105598 port 3 105598 unique_id port 105598 remote_ip 10.8.1.22 105599 username arabpour 105599 unique_id port 105599 terminate_cause User-Request 105599 bytes_out 107399 105599 bytes_in 865895 105599 station_ip 37.129.28.4 105599 port 15728718 105599 nas_port_type Virtual 105599 remote_ip 5.5.5.155 105601 username amir 105527 bytes_in 0 105527 station_ip 5.119.107.252 105527 port 2 105527 unique_id port 105528 username mehdizare 105528 mac 105528 bytes_out 0 105528 bytes_in 0 105528 station_ip 5.119.107.252 105528 port 2 105528 unique_id port 105528 remote_ip 10.8.1.42 105533 username aminvpn 105533 kill_reason Another user logged on this global unique id 105533 mac 105533 bytes_out 0 105533 bytes_in 0 105533 station_ip 83.123.186.155 105533 port 13 105533 unique_id port 105535 username tahmasebi 105535 kill_reason Another user logged on this global unique id 105535 mac 105535 bytes_out 0 105535 bytes_in 0 105535 station_ip 5.119.42.112 105535 port 4 105535 unique_id port 105536 username malekpoir 105536 kill_reason Another user logged on this global unique id 105536 mac 105536 bytes_out 0 105536 bytes_in 0 105536 station_ip 5.120.113.248 105536 port 4 105536 unique_id port 105536 remote_ip 10.8.1.54 105545 username kamali1 105545 mac 105545 bytes_out 0 105545 bytes_in 0 105545 station_ip 5.120.153.80 105545 port 9 105545 unique_id port 105545 remote_ip 10.8.0.70 105550 username mehdizare 105550 mac 105550 bytes_out 32413047 105550 bytes_in 360893365 105550 station_ip 5.119.107.252 105550 port 2 105550 unique_id port 105550 remote_ip 10.8.1.42 105552 username kamali1 105552 mac 105552 bytes_out 96766 105552 bytes_in 169321 105552 station_ip 5.120.153.80 105552 port 9 105552 unique_id port 105552 remote_ip 10.8.0.70 105555 username kamali1 105555 mac 105555 bytes_out 0 105555 bytes_in 0 105555 station_ip 5.120.153.80 105555 port 15 105555 unique_id port 105555 remote_ip 10.8.0.70 105558 username kamali1 105558 mac 105558 bytes_out 0 105558 bytes_in 0 105558 station_ip 5.120.153.80 105558 port 11 105558 unique_id port 105558 remote_ip 10.8.0.70 105560 username forozande 105560 mac 105560 bytes_out 898425 105560 bytes_in 3298388 105560 station_ip 37.129.92.7 105560 port 9 105560 unique_id port 105560 remote_ip 10.8.0.74 105562 username malekpoir 105562 kill_reason Another user logged on this global unique id 105562 mac 105562 bytes_out 0 105562 bytes_in 0 105562 station_ip 5.120.113.248 105562 port 2 105562 unique_id port 105562 remote_ip 10.8.1.54 105568 username musa 105568 kill_reason Another user logged on this global unique id 105568 mac 105568 bytes_out 0 105568 bytes_in 0 105568 station_ip 204.18.219.244 105568 port 14 105568 unique_id port 105579 username musa 105579 mac 105579 bytes_out 0 105579 bytes_in 0 105579 station_ip 204.18.219.244 105579 port 14 105579 unique_id port 105580 username mehdizare 105580 mac 105580 bytes_out 73147 105580 bytes_in 30955 105580 station_ip 5.119.107.252 105580 port 15 105580 unique_id port 105580 remote_ip 10.8.0.90 105582 username mirzaei 105582 mac 105582 bytes_out 0 105582 bytes_in 0 105582 station_ip 5.120.100.72 105582 port 2 105582 unique_id port 105584 username avaanna 105584 mac 105584 bytes_out 0 105584 bytes_in 0 105584 station_ip 37.129.2.255 105584 port 12 105584 unique_id port 105584 remote_ip 10.8.0.98 105585 username houshang 105585 kill_reason Another user logged on this global unique id 105585 mac 105585 bytes_out 0 105585 bytes_in 0 105585 station_ip 5.119.17.123 105585 port 9 105585 unique_id port 105592 username kamali1 105592 mac 105592 bytes_out 0 105592 bytes_in 0 105592 station_ip 5.120.153.80 105592 port 16 105592 unique_id port 105592 remote_ip 10.8.0.70 105594 username kamali1 105594 mac 105594 bytes_out 88401 105594 bytes_in 123631 105594 station_ip 5.120.153.80 105565 station_ip 5.120.100.72 105565 port 2 105565 unique_id port 105566 username mehdizare 105566 mac 105566 bytes_out 0 105566 bytes_in 0 105566 station_ip 5.119.107.252 105566 port 11 105566 unique_id port 105566 remote_ip 10.8.0.90 105567 username mahdiyehalizadeh 105567 mac 105567 bytes_out 0 105567 bytes_in 0 105567 station_ip 83.123.20.209 105567 port 10 105567 unique_id port 105567 remote_ip 10.8.0.82 105569 username hashtadani 105569 unique_id port 105569 terminate_cause Lost-Carrier 105569 bytes_out 600996 105569 bytes_in 6447212 105569 station_ip 5.202.28.154 105569 port 15728713 105569 nas_port_type Virtual 105569 remote_ip 5.5.5.163 105571 username rajaei 105571 mac 105571 bytes_out 0 105571 bytes_in 0 105571 station_ip 37.137.27.28 105571 port 10 105571 unique_id port 105571 remote_ip 10.8.0.34 105574 username houshang 105574 kill_reason Another user logged on this global unique id 105574 mac 105574 bytes_out 0 105574 bytes_in 0 105574 station_ip 5.119.17.123 105574 port 9 105574 unique_id port 105575 username forozande 105575 mac 105575 bytes_out 0 105575 bytes_in 0 105575 station_ip 83.122.54.25 105575 port 15 105575 unique_id port 105575 remote_ip 10.8.0.74 105576 username mehdizare 105576 mac 105576 bytes_out 0 105576 bytes_in 0 105576 station_ip 5.119.107.252 105576 port 11 105576 unique_id port 105576 remote_ip 10.8.0.90 105577 username malekpoir 105577 kill_reason Another user logged on this global unique id 105577 mac 105577 bytes_out 0 105577 bytes_in 0 105577 station_ip 5.120.113.248 105577 port 2 105577 unique_id port 105577 remote_ip 10.8.1.54 105578 username kamali1 105578 mac 105578 bytes_out 0 105578 bytes_in 0 105578 station_ip 5.120.153.80 105578 port 10 105578 unique_id port 105578 remote_ip 10.8.0.70 105581 username mehdizare 105581 mac 105581 bytes_out 13472 105581 bytes_in 25903 105581 station_ip 5.119.107.252 105581 port 10 105581 unique_id port 105581 remote_ip 10.8.0.90 105583 username malekpoir 105583 mac 105583 bytes_out 0 105583 bytes_in 0 105583 station_ip 5.120.113.248 105583 port 2 105583 unique_id port 105583 remote_ip 10.8.1.54 105586 username malekpoir 105586 mac 105586 bytes_out 2395 105586 bytes_in 4676 105586 station_ip 5.120.113.248 105586 port 10 105586 unique_id port 105586 remote_ip 10.8.0.58 105587 username mehdizare 105587 mac 105587 bytes_out 9249 105587 bytes_in 17889 105587 station_ip 5.119.107.252 105587 port 14 105587 unique_id port 105587 remote_ip 10.8.0.90 105589 username musa 105589 mac 105589 bytes_out 0 105589 bytes_in 0 105589 station_ip 204.18.224.12 105589 port 14 105589 unique_id port 105589 remote_ip 10.8.0.6 105590 username houshang 105590 mac 105590 bytes_out 0 105590 bytes_in 0 105590 station_ip 5.119.17.123 105590 port 9 105590 unique_id port 105591 username musa 105591 mac 105591 bytes_out 7018 105591 bytes_in 10605 105591 station_ip 204.18.224.12 105591 port 17 105591 unique_id port 105591 remote_ip 10.8.0.6 105593 username ahmadi 105593 unique_id port 105593 terminate_cause User-Request 105593 bytes_out 72552 105593 bytes_in 735888 105593 station_ip 37.129.68.36 105593 port 15728715 105593 nas_port_type Virtual 105593 remote_ip 5.5.5.159 105603 username mahdiyehalizadeh 105603 kill_reason Another user logged on this global unique id 105603 mac 105603 bytes_out 0 105603 bytes_in 0 105603 station_ip 83.122.203.120 105603 port 11 105603 unique_id port 105603 remote_ip 10.8.0.82 105604 username aminvpn 105604 unique_id port 105604 terminate_cause User-Request 105594 port 4 105594 unique_id port 105594 remote_ip 10.8.1.26 105595 username hamid 105595 mac 105595 bytes_out 14426 105595 bytes_in 31438 105595 station_ip 83.122.222.215 105595 port 17 105595 unique_id port 105595 remote_ip 10.8.0.106 105596 username arman1 105596 kill_reason Another user logged on this global unique id 105596 mac 105596 bytes_out 0 105596 bytes_in 0 105596 station_ip 5.119.79.47 105596 port 12 105596 unique_id port 105596 remote_ip 10.8.0.110 105597 username arabpour 105597 unique_id port 105597 terminate_cause User-Request 105597 bytes_out 0 105597 bytes_in 0 105597 station_ip 37.129.28.4 105597 port 15728717 105597 nas_port_type Virtual 105597 remote_ip 5.5.5.156 105600 username forozande 105600 mac 105600 bytes_out 0 105600 bytes_in 0 105600 station_ip 83.123.151.82 105600 port 14 105600 unique_id port 105600 remote_ip 10.8.0.74 105602 username arman1 105602 mac 105602 bytes_out 0 105602 bytes_in 0 105602 station_ip 5.119.79.47 105602 port 12 105602 unique_id port 105605 username mohammadmahdi 105605 kill_reason Another user logged on this global unique id 105605 mac 105605 bytes_out 0 105605 bytes_in 0 105605 station_ip 5.119.65.94 105605 port 16 105605 unique_id port 105605 remote_ip 10.8.0.54 105606 username amir 105606 mac 105606 bytes_out 0 105606 bytes_in 0 105606 station_ip 46.225.211.107 105606 port 12 105606 unique_id port 105606 remote_ip 10.8.0.50 105608 username musa 105608 mac 105608 bytes_out 668667 105608 bytes_in 2266821 105608 station_ip 204.18.224.12 105608 port 9 105608 unique_id port 105608 remote_ip 10.8.0.6 105609 username arabpour 105609 unique_id port 105609 terminate_cause User-Request 105609 bytes_out 0 105609 bytes_in 0 105609 station_ip 37.129.28.4 105609 port 15728720 105609 nas_port_type Virtual 105609 remote_ip 5.5.5.153 105610 username mahdiyehalizadeh 105610 mac 105610 bytes_out 0 105610 bytes_in 0 105610 station_ip 83.122.203.120 105610 port 11 105610 unique_id port 105611 username amir 105611 mac 105611 bytes_out 61564 105611 bytes_in 300663 105611 station_ip 46.225.211.107 105611 port 10 105611 unique_id port 105611 remote_ip 10.8.0.50 105613 username mohammadmahdi 105613 mac 105613 bytes_out 0 105613 bytes_in 0 105613 station_ip 5.119.65.94 105613 port 16 105613 unique_id port 105614 username amir 105614 mac 105614 bytes_out 0 105614 bytes_in 0 105614 station_ip 46.225.211.107 105614 port 10 105614 unique_id port 105614 remote_ip 10.8.0.50 105616 username amir 105616 mac 105616 bytes_out 0 105616 bytes_in 0 105616 station_ip 46.225.211.107 105616 port 10 105616 unique_id port 105616 remote_ip 10.8.0.50 105619 username hamid.e 105619 unique_id port 105619 terminate_cause User-Request 105619 bytes_out 1833869 105619 bytes_in 31416237 105619 station_ip 37.27.8.186 105619 port 15728716 105619 nas_port_type Virtual 105619 remote_ip 5.5.5.158 105620 username hamid 105620 mac 105620 bytes_out 3309660 105620 bytes_in 28721939 105620 station_ip 37.129.28.27 105620 port 14 105620 unique_id port 105620 remote_ip 10.8.0.106 105625 username hamid 105625 mac 105625 bytes_out 921961 105625 bytes_in 13183238 105625 station_ip 37.129.28.27 105625 port 11 105625 unique_id port 105625 remote_ip 10.8.0.106 105629 username tahmasebi 105629 kill_reason Another user logged on this global unique id 105629 mac 105629 bytes_out 0 105629 bytes_in 0 105629 station_ip 5.119.42.112 105629 port 4 105629 unique_id port 105633 username ahmadi 105633 unique_id port 105633 terminate_cause User-Request 105633 bytes_out 185814 105601 mac 105601 bytes_out 0 105601 bytes_in 0 105601 station_ip 46.225.211.107 105601 port 17 105601 unique_id port 105601 remote_ip 10.8.0.50 105607 username malekpoir 105607 mac 105607 bytes_out 143442 105607 bytes_in 228448 105607 station_ip 5.120.113.248 105607 port 10 105607 unique_id port 105607 remote_ip 10.8.0.58 105612 username avaanna 105612 kill_reason Another user logged on this global unique id 105612 mac 105612 bytes_out 0 105612 bytes_in 0 105612 station_ip 37.129.2.255 105612 port 15 105612 unique_id port 105612 remote_ip 10.8.0.98 105631 username amir 105631 mac 105631 bytes_out 0 105631 bytes_in 0 105631 station_ip 46.225.211.107 105631 port 9 105631 unique_id port 105631 remote_ip 10.8.0.50 105632 username zare 105632 mac 105632 bytes_out 617685 105632 bytes_in 3194690 105632 station_ip 188.245.91.123 105632 port 13 105632 unique_id port 105632 remote_ip 10.8.0.18 105634 username hashtadani 105634 unique_id port 105634 terminate_cause Lost-Carrier 105634 bytes_out 85769 105634 bytes_in 788683 105634 station_ip 5.202.28.154 105634 port 15728719 105634 nas_port_type Virtual 105634 remote_ip 5.5.5.154 105636 username mirzaei 105636 mac 105636 bytes_out 0 105636 bytes_in 0 105636 station_ip 5.120.100.72 105636 port 2 105636 unique_id port 105638 username zare 105638 mac 105638 bytes_out 0 105638 bytes_in 0 105638 station_ip 188.245.91.123 105638 port 9 105638 unique_id port 105638 remote_ip 10.8.0.18 105639 username alireza 105639 unique_id port 105639 terminate_cause Lost-Carrier 105639 bytes_out 8319238 105639 bytes_in 172190290 105639 station_ip 5.120.89.244 105639 port 15728714 105639 nas_port_type Virtual 105639 remote_ip 5.5.5.161 105642 username tahmasebi 105642 kill_reason Another user logged on this global unique id 105642 mac 105642 bytes_out 0 105642 bytes_in 0 105642 station_ip 5.119.42.112 105642 port 4 105642 unique_id port 105644 username zare 105644 mac 105644 bytes_out 0 105644 bytes_in 0 105644 station_ip 188.245.91.123 105644 port 9 105644 unique_id port 105644 remote_ip 10.8.0.18 105647 username aminvpn 105647 mac 105647 bytes_out 3294560 105647 bytes_in 47375940 105647 station_ip 83.123.186.155 105647 port 16 105647 unique_id port 105647 remote_ip 10.8.0.14 105654 username zare 105654 mac 105654 bytes_out 0 105654 bytes_in 0 105654 station_ip 188.245.91.123 105654 port 4 105654 unique_id port 105654 remote_ip 10.8.1.58 105658 username hamid 105658 kill_reason Another user logged on this global unique id 105658 mac 105658 bytes_out 0 105658 bytes_in 0 105658 station_ip 113.203.92.39 105658 port 9 105658 unique_id port 105658 remote_ip 10.8.0.106 105660 username zare 105660 mac 105660 bytes_out 0 105660 bytes_in 0 105660 station_ip 188.245.91.123 105660 port 4 105660 unique_id port 105660 remote_ip 10.8.1.58 105662 username zare 105662 mac 105662 bytes_out 197026396 105662 bytes_in 519063298 105662 station_ip 188.245.91.123 105662 port 4 105662 unique_id port 105662 remote_ip 10.8.1.58 105664 username arabpour 105664 unique_id port 105664 terminate_cause User-Request 105664 bytes_out 99529 105664 bytes_in 1400821 105664 station_ip 83.123.241.129 105664 port 15728730 105664 nas_port_type Virtual 105664 remote_ip 5.5.5.136 105665 username mirzaei 105665 mac 105665 bytes_out 0 105665 bytes_in 0 105665 station_ip 5.120.100.72 105665 port 2 105665 unique_id port 105666 username zare 105666 mac 105666 bytes_out 0 105666 bytes_in 0 105666 station_ip 188.245.91.123 105666 port 13 105666 unique_id port 105604 bytes_out 2624943 105604 bytes_in 30154228 105604 station_ip 5.119.122.232 105604 port 15728709 105604 nas_port_type Virtual 105604 remote_ip 5.5.5.170 105615 username arabpour 105615 unique_id port 105615 terminate_cause User-Request 105615 bytes_out 77449 105615 bytes_in 845253 105615 station_ip 113.203.67.191 105615 port 15728722 105615 nas_port_type Virtual 105615 remote_ip 5.5.5.149 105617 username arabpour 105617 unique_id port 105617 terminate_cause User-Request 105617 bytes_out 60164 105617 bytes_in 812485 105617 station_ip 83.123.233.247 105617 port 15728723 105617 nas_port_type Virtual 105617 remote_ip 5.5.5.147 105618 username forozande 105618 mac 105618 bytes_out 656633 105618 bytes_in 6658339 105618 station_ip 83.122.203.138 105618 port 11 105618 unique_id port 105618 remote_ip 10.8.0.74 105621 username aminvpn 105621 mac 105621 bytes_out 0 105621 bytes_in 0 105621 station_ip 83.123.186.155 105621 port 13 105621 unique_id port 105622 username aminvpn 105622 mac 105622 bytes_out 0 105622 bytes_in 0 105622 station_ip 37.129.113.7 105622 port 14 105622 unique_id port 105622 remote_ip 10.8.0.14 105623 username amir 105623 mac 105623 bytes_out 44039 105623 bytes_in 334314 105623 station_ip 46.225.211.107 105623 port 14 105623 unique_id port 105623 remote_ip 10.8.0.50 105624 username khalili 105624 mac 105624 bytes_out 3607505 105624 bytes_in 10677448 105624 station_ip 5.120.90.5 105624 port 10 105624 unique_id port 105624 remote_ip 10.8.0.86 105626 username amir 105626 mac 105626 bytes_out 1636 105626 bytes_in 8673 105626 station_ip 46.225.211.107 105626 port 14 105626 unique_id port 105626 remote_ip 10.8.0.50 105627 username mahdiyehalizadeh 105627 mac 105627 bytes_out 486184 105627 bytes_in 3635192 105627 station_ip 83.122.203.120 105627 port 9 105627 unique_id port 105627 remote_ip 10.8.0.82 105628 username abbasaskari 105628 mac 105628 bytes_out 28972 105628 bytes_in 83689 105628 station_ip 83.122.36.53 105628 port 10 105628 unique_id port 105628 remote_ip 10.8.0.10 105630 username amir 105630 mac 105630 bytes_out 0 105630 bytes_in 0 105630 station_ip 46.225.211.107 105630 port 4 105630 unique_id port 105630 remote_ip 10.8.1.22 105635 username arabpour 105635 unique_id port 105635 terminate_cause User-Request 105635 bytes_out 80087 105635 bytes_in 1187611 105635 station_ip 83.123.188.28 105635 port 15728726 105635 nas_port_type Virtual 105635 remote_ip 5.5.5.141 105637 username zare 105637 mac 105637 bytes_out 0 105637 bytes_in 0 105637 station_ip 188.245.91.123 105637 port 9 105637 unique_id port 105637 remote_ip 10.8.0.18 105640 username zare 105640 mac 105640 bytes_out 0 105640 bytes_in 0 105640 station_ip 188.245.91.123 105640 port 9 105640 unique_id port 105640 remote_ip 10.8.0.18 105641 username zare 105641 mac 105641 bytes_out 0 105641 bytes_in 0 105641 station_ip 188.245.91.123 105641 port 9 105641 unique_id port 105641 remote_ip 10.8.0.18 105648 username mamal 105648 unique_id port 105648 terminate_cause User-Request 105648 bytes_out 5622802 105648 bytes_in 180929333 105648 station_ip 37.129.127.187 105648 port 15728724 105648 nas_port_type Virtual 105648 remote_ip 5.5.5.145 105650 username zare 105650 kill_reason Another user logged on this global unique id 105650 mac 105650 bytes_out 0 105650 bytes_in 0 105650 station_ip 188.245.91.123 105650 port 4 105650 unique_id port 105650 remote_ip 10.8.1.58 105651 username tahmasebi 105651 mac 105651 bytes_out 0 105651 bytes_in 0 105651 station_ip 5.119.42.112 105651 port 4 105633 bytes_in 2164311 105633 station_ip 37.129.95.88 105633 port 15728725 105633 nas_port_type Virtual 105633 remote_ip 5.5.5.143 105643 username mohammadmahdi 105643 kill_reason Another user logged on this global unique id 105643 mac 105643 bytes_out 0 105643 bytes_in 0 105643 station_ip 5.119.65.94 105643 port 17 105643 unique_id port 105643 remote_ip 10.8.0.54 105645 username zare 105645 mac 105645 bytes_out 0 105645 bytes_in 0 105645 station_ip 188.245.91.123 105645 port 10 105645 unique_id port 105645 remote_ip 10.8.0.18 105646 username zare 105646 mac 105646 bytes_out 0 105646 bytes_in 0 105646 station_ip 188.245.91.123 105646 port 10 105646 unique_id port 105646 remote_ip 10.8.0.18 105649 username tahmasebi 105649 kill_reason Another user logged on this global unique id 105649 mac 105649 bytes_out 0 105649 bytes_in 0 105649 station_ip 5.119.42.112 105649 port 4 105649 unique_id port 105652 username amir 105652 mac 105652 bytes_out 48803 105652 bytes_in 402940 105652 station_ip 46.225.211.107 105652 port 9 105652 unique_id port 105652 remote_ip 10.8.0.50 105655 username mohammadmahdi 105655 kill_reason Another user logged on this global unique id 105655 mac 105655 bytes_out 0 105655 bytes_in 0 105655 station_ip 5.119.65.94 105655 port 17 105655 unique_id port 105656 username mehdizare 105656 kill_reason Another user logged on this global unique id 105656 mac 105656 bytes_out 0 105656 bytes_in 0 105656 station_ip 5.119.107.252 105656 port 2 105656 unique_id port 105656 remote_ip 10.8.1.42 105659 username arabpour 105659 unique_id port 105659 terminate_cause User-Request 105659 bytes_out 87336 105659 bytes_in 1224620 105659 station_ip 83.123.241.129 105659 port 15728728 105659 nas_port_type Virtual 105659 remote_ip 5.5.5.138 105669 username zare 105669 mac 105669 bytes_out 0 105669 bytes_in 0 105669 station_ip 188.245.91.123 105669 port 9 105669 unique_id port 105669 remote_ip 10.8.0.18 105676 username tahmasebi 105676 kill_reason Another user logged on this global unique id 105676 mac 105676 bytes_out 0 105676 bytes_in 0 105676 station_ip 5.119.42.112 105676 port 4 105676 unique_id port 105679 username arabpour 105679 unique_id port 105679 terminate_cause User-Request 105679 bytes_out 89669 105679 bytes_in 1372932 105679 station_ip 83.123.241.129 105679 port 15728731 105679 nas_port_type Virtual 105679 remote_ip 5.5.5.135 105680 username amir 105680 mac 105680 bytes_out 0 105680 bytes_in 0 105680 station_ip 46.225.211.107 105680 port 13 105680 unique_id port 105680 remote_ip 10.8.0.50 105681 username houshang 105681 mac 105681 bytes_out 0 105681 bytes_in 0 105681 station_ip 5.119.17.123 105681 port 14 105681 unique_id port 105681 remote_ip 10.8.0.22 105682 username amir 105682 mac 105682 bytes_out 0 105682 bytes_in 0 105682 station_ip 46.225.211.107 105682 port 11 105682 unique_id port 105682 remote_ip 10.8.0.50 105684 username tahmasebi 105684 kill_reason Another user logged on this global unique id 105684 mac 105684 bytes_out 0 105684 bytes_in 0 105684 station_ip 5.119.42.112 105684 port 4 105684 unique_id port 105686 username arabpour 105686 unique_id port 105686 terminate_cause User-Request 105686 bytes_out 71133 105686 bytes_in 837668 105686 station_ip 83.123.241.129 105686 port 15728733 105686 nas_port_type Virtual 105686 remote_ip 5.5.5.133 105689 username houshang 105689 mac 105689 bytes_out 0 105689 bytes_in 0 105689 station_ip 5.119.17.123 105689 port 11 105689 unique_id port 105689 remote_ip 10.8.0.22 105691 username mahdiyehalizadeh 105691 mac 105691 bytes_out 0 105691 bytes_in 0 105651 unique_id port 105653 username aminvpn 105653 unique_id port 105653 terminate_cause Lost-Carrier 105653 bytes_out 243719 105653 bytes_in 3788482 105653 station_ip 109.125.161.110 105653 port 15728727 105653 nas_port_type Virtual 105653 remote_ip 5.5.5.140 105657 username zare 105657 mac 105657 bytes_out 196086302 105657 bytes_in 506645625 105657 station_ip 188.245.91.123 105657 port 4 105657 unique_id port 105657 remote_ip 10.8.1.58 105661 username zare 105661 mac 105661 bytes_out 196950439 105661 bytes_in 518941372 105661 station_ip 188.245.91.123 105661 port 4 105661 unique_id port 105661 remote_ip 10.8.1.58 105663 username hamid 105663 mac 105663 bytes_out 0 105663 bytes_in 0 105663 station_ip 113.203.92.39 105663 port 9 105663 unique_id port 105667 username amir 105667 mac 105667 bytes_out 0 105667 bytes_in 0 105667 station_ip 46.225.211.107 105667 port 9 105667 unique_id port 105667 remote_ip 10.8.0.50 105670 username mohammadmahdi 105670 mac 105670 bytes_out 0 105670 bytes_in 0 105670 station_ip 5.119.65.94 105670 port 17 105670 unique_id port 105671 username tahmasebi 105671 kill_reason Another user logged on this global unique id 105671 mac 105671 bytes_out 0 105671 bytes_in 0 105671 station_ip 5.119.42.112 105671 port 4 105671 unique_id port 105674 username mohammadmahdi 105674 mac 105674 bytes_out 0 105674 bytes_in 0 105674 station_ip 5.119.65.94 105674 port 13 105674 unique_id port 105674 remote_ip 10.8.0.54 105678 username houshang 105678 mac 105678 bytes_out 0 105678 bytes_in 0 105678 station_ip 5.119.17.123 105678 port 11 105678 unique_id port 105678 remote_ip 10.8.0.22 105685 username zare 105685 kill_reason Another user logged on this global unique id 105685 mac 105685 bytes_out 0 105685 bytes_in 0 105685 station_ip 188.245.91.123 105685 port 9 105685 unique_id port 105685 remote_ip 10.8.0.18 105688 username zare 105688 kill_reason Another user logged on this global unique id 105688 mac 105688 bytes_out 0 105688 bytes_in 0 105688 station_ip 188.245.91.123 105688 port 9 105688 unique_id port 105694 username avaanna 105694 mac 105694 bytes_out 0 105694 bytes_in 0 105694 station_ip 37.129.2.255 105694 port 15 105694 unique_id port 105699 username aminvpn 105699 unique_id port 105699 terminate_cause Lost-Carrier 105699 bytes_out 11989424 105699 bytes_in 245059864 105699 station_ip 31.57.128.7 105699 port 15728721 105699 nas_port_type Virtual 105699 remote_ip 5.5.5.151 105700 username tahmasebi 105700 kill_reason Another user logged on this global unique id 105700 mac 105700 bytes_out 0 105700 bytes_in 0 105700 station_ip 5.119.42.112 105700 port 4 105700 unique_id port 105703 username malekpoir 105703 mac 105703 bytes_out 0 105703 bytes_in 0 105703 station_ip 5.120.113.248 105703 port 3 105703 unique_id port 105703 remote_ip 10.8.1.54 105706 username mehdizare 105706 kill_reason Another user logged on this global unique id 105706 mac 105706 bytes_out 0 105706 bytes_in 0 105706 station_ip 5.119.107.252 105706 port 2 105706 unique_id port 105706 remote_ip 10.8.1.42 105707 username arash 105707 kill_reason Another user logged on this global unique id 105707 mac 105707 bytes_out 0 105707 bytes_in 0 105707 station_ip 37.27.8.99 105707 port 10 105707 unique_id port 105708 username aminvpn 105708 unique_id port 105708 terminate_cause User-Request 105708 bytes_out 502760 105708 bytes_in 7688138 105708 station_ip 5.120.24.109 105708 port 15728735 105708 nas_port_type Virtual 105708 remote_ip 5.5.5.129 105713 username amir 105713 mac 105713 bytes_out 0 105713 bytes_in 0 105666 remote_ip 10.8.0.18 105668 username zare 105668 mac 105668 bytes_out 0 105668 bytes_in 0 105668 station_ip 188.245.91.123 105668 port 9 105668 unique_id port 105668 remote_ip 10.8.0.18 105672 username zare 105672 mac 105672 bytes_out 0 105672 bytes_in 0 105672 station_ip 188.245.91.123 105672 port 9 105672 unique_id port 105672 remote_ip 10.8.0.18 105673 username zare 105673 mac 105673 bytes_out 0 105673 bytes_in 0 105673 station_ip 188.245.91.123 105673 port 9 105673 unique_id port 105673 remote_ip 10.8.0.18 105675 username amir 105675 mac 105675 bytes_out 0 105675 bytes_in 0 105675 station_ip 46.225.211.107 105675 port 13 105675 unique_id port 105675 remote_ip 10.8.0.50 105677 username alireza 105677 unique_id port 105677 terminate_cause Lost-Carrier 105677 bytes_out 3231752 105677 bytes_in 56848705 105677 station_ip 5.120.89.244 105677 port 15728729 105677 nas_port_type Virtual 105677 remote_ip 5.5.5.137 105683 username arabpour 105683 unique_id port 105683 terminate_cause User-Request 105683 bytes_out 75977 105683 bytes_in 1203589 105683 station_ip 83.123.241.129 105683 port 15728732 105683 nas_port_type Virtual 105683 remote_ip 5.5.5.134 105687 username mehdizare 105687 mac 105687 bytes_out 90250 105687 bytes_in 133523 105687 station_ip 5.119.107.252 105687 port 2 105687 unique_id port 105687 remote_ip 10.8.1.42 105690 username amir 105690 mac 105690 bytes_out 0 105690 bytes_in 0 105690 station_ip 46.225.211.107 105690 port 14 105690 unique_id port 105690 remote_ip 10.8.0.50 105692 username zare 105692 kill_reason Another user logged on this global unique id 105692 mac 105692 bytes_out 0 105692 bytes_in 0 105692 station_ip 188.245.91.123 105692 port 9 105692 unique_id port 105693 username forozande 105693 mac 105693 bytes_out 0 105693 bytes_in 0 105693 station_ip 83.122.76.27 105693 port 10 105693 unique_id port 105693 remote_ip 10.8.0.74 105696 username abbasaskari 105696 mac 105696 bytes_out 0 105696 bytes_in 0 105696 station_ip 83.122.121.161 105696 port 10 105696 unique_id port 105696 remote_ip 10.8.0.10 105698 username amir 105698 mac 105698 bytes_out 0 105698 bytes_in 0 105698 station_ip 46.225.211.107 105698 port 10 105698 unique_id port 105698 remote_ip 10.8.0.50 105705 username mohammadmahdi 105705 mac 105705 bytes_out 537508 105705 bytes_in 4298672 105705 station_ip 5.119.65.94 105705 port 11 105705 unique_id port 105705 remote_ip 10.8.0.54 105709 username amir 105709 mac 105709 bytes_out 0 105709 bytes_in 0 105709 station_ip 46.225.211.107 105709 port 11 105709 unique_id port 105709 remote_ip 10.8.0.50 105711 username arash 105711 kill_reason Another user logged on this global unique id 105711 mac 105711 bytes_out 0 105711 bytes_in 0 105711 station_ip 37.27.8.99 105711 port 10 105711 unique_id port 105712 username ahmadi 105712 unique_id port 105712 terminate_cause User-Request 105712 bytes_out 60723 105712 bytes_in 776520 105712 station_ip 37.129.95.88 105712 port 15728736 105712 nas_port_type Virtual 105712 remote_ip 5.5.5.128 105714 username rajaei 105714 kill_reason Another user logged on this global unique id 105714 mac 105714 bytes_out 0 105714 bytes_in 0 105714 station_ip 37.137.7.11 105714 port 11 105714 unique_id port 105714 remote_ip 10.8.0.34 105716 username mirzaei 105716 kill_reason Another user logged on this global unique id 105716 mac 105716 bytes_out 0 105716 bytes_in 0 105716 station_ip 5.120.100.72 105716 port 2 105716 unique_id port 105717 username rajaei 105717 mac 105717 bytes_out 0 105717 bytes_in 0 105691 station_ip 83.122.147.79 105691 port 13 105691 unique_id port 105691 remote_ip 10.8.0.82 105695 username zare 105695 kill_reason Another user logged on this global unique id 105695 mac 105695 bytes_out 0 105695 bytes_in 0 105695 station_ip 188.245.91.123 105695 port 9 105695 unique_id port 105697 username abbasaskari 105697 mac 105697 bytes_out 0 105697 bytes_in 0 105697 station_ip 83.122.121.161 105697 port 10 105697 unique_id port 105697 remote_ip 10.8.0.10 105701 username arabpour 105701 unique_id port 105701 terminate_cause User-Request 105701 bytes_out 71621 105701 bytes_in 707695 105701 station_ip 83.123.1.2 105701 port 15728734 105701 nas_port_type Virtual 105701 remote_ip 5.5.5.131 105702 username arash 105702 kill_reason Another user logged on this global unique id 105702 mac 105702 bytes_out 0 105702 bytes_in 0 105702 station_ip 37.27.8.99 105702 port 10 105702 unique_id port 105702 remote_ip 10.8.0.114 105704 username amir 105704 mac 105704 bytes_out 0 105704 bytes_in 0 105704 station_ip 46.225.211.107 105704 port 13 105704 unique_id port 105704 remote_ip 10.8.0.50 105710 username zare 105710 kill_reason Another user logged on this global unique id 105710 mac 105710 bytes_out 0 105710 bytes_in 0 105710 station_ip 188.245.91.123 105710 port 9 105710 unique_id port 105715 username arash 105715 kill_reason Another user logged on this global unique id 105715 mac 105715 bytes_out 0 105715 bytes_in 0 105715 station_ip 37.27.8.99 105715 port 10 105715 unique_id port 105718 username arash 105718 kill_reason Another user logged on this global unique id 105718 mac 105718 bytes_out 0 105718 bytes_in 0 105718 station_ip 37.27.8.99 105718 port 10 105718 unique_id port 105719 username forozande 105719 mac 105719 bytes_out 73357 105719 bytes_in 128428 105719 station_ip 83.122.99.162 105719 port 11 105719 unique_id port 105719 remote_ip 10.8.0.74 105723 username arash 105723 kill_reason Another user logged on this global unique id 105723 mac 105723 bytes_out 0 105723 bytes_in 0 105723 station_ip 37.27.8.99 105723 port 10 105723 unique_id port 105724 username arash 105724 kill_reason Another user logged on this global unique id 105724 mac 105724 bytes_out 0 105724 bytes_in 0 105724 station_ip 37.27.8.99 105724 port 10 105724 unique_id port 105728 username hamid 105728 mac 105728 bytes_out 0 105728 bytes_in 0 105728 station_ip 83.122.22.64 105728 port 15 105728 unique_id port 105728 remote_ip 10.8.0.106 105730 username arash 105730 kill_reason Another user logged on this global unique id 105730 mac 105730 bytes_out 0 105730 bytes_in 0 105730 station_ip 37.27.8.99 105730 port 10 105730 unique_id port 105734 username kamali1 105734 mac 105734 bytes_out 6570281 105734 bytes_in 14371353 105734 station_ip 5.119.207.212 105734 port 12 105734 unique_id port 105734 remote_ip 10.8.0.70 105735 username zare 105735 kill_reason Another user logged on this global unique id 105735 mac 105735 bytes_out 0 105735 bytes_in 0 105735 station_ip 188.245.91.123 105735 port 13 105735 unique_id port 105737 username farhad1 105737 mac 105737 bytes_out 1749634 105737 bytes_in 4452737 105737 station_ip 5.119.239.171 105737 port 14 105737 unique_id port 105737 remote_ip 10.8.0.26 105739 username arash 105739 kill_reason Another user logged on this global unique id 105739 mac 105739 bytes_out 0 105739 bytes_in 0 105739 station_ip 37.27.8.99 105739 port 10 105739 unique_id port 105741 username zare 105741 kill_reason Another user logged on this global unique id 105741 mac 105741 bytes_out 0 105741 bytes_in 0 105741 station_ip 188.245.91.123 105741 port 13 105713 station_ip 46.225.211.107 105713 port 13 105713 unique_id port 105713 remote_ip 10.8.0.50 105720 username amir 105720 mac 105720 bytes_out 0 105720 bytes_in 0 105720 station_ip 46.225.211.107 105720 port 14 105720 unique_id port 105720 remote_ip 10.8.0.50 105721 username abbasaskari 105721 mac 105721 bytes_out 0 105721 bytes_in 0 105721 station_ip 83.122.82.29 105721 port 11 105721 unique_id port 105721 remote_ip 10.8.0.10 105725 username zare 105725 kill_reason Another user logged on this global unique id 105725 mac 105725 bytes_out 0 105725 bytes_in 0 105725 station_ip 188.245.91.123 105725 port 9 105725 unique_id port 105727 username forozande 105727 mac 105727 bytes_out 2160225 105727 bytes_in 27539111 105727 station_ip 83.123.208.132 105727 port 14 105727 unique_id port 105727 remote_ip 10.8.0.74 105731 username aminvpn 105731 unique_id port 105731 terminate_cause User-Request 105731 bytes_out 2503793 105731 bytes_in 58458168 105731 station_ip 5.119.45.104 105731 port 15728737 105731 nas_port_type Virtual 105731 remote_ip 5.5.5.126 105733 username zare 105733 kill_reason Another user logged on this global unique id 105733 mac 105733 bytes_out 0 105733 bytes_in 0 105733 station_ip 188.245.91.123 105733 port 13 105733 unique_id port 105733 remote_ip 10.8.0.18 105736 username amir 105736 mac 105736 bytes_out 111987 105736 bytes_in 1058852 105736 station_ip 46.225.211.107 105736 port 12 105736 unique_id port 105736 remote_ip 10.8.0.50 105743 username arash 105743 kill_reason Another user logged on this global unique id 105743 mac 105743 bytes_out 0 105743 bytes_in 0 105743 station_ip 37.27.8.99 105743 port 10 105743 unique_id port 105746 username amir 105746 mac 105746 bytes_out 0 105746 bytes_in 0 105746 station_ip 46.225.211.107 105746 port 9 105746 unique_id port 105746 remote_ip 10.8.0.50 105747 username zare 105747 kill_reason Another user logged on this global unique id 105747 mac 105747 bytes_out 0 105747 bytes_in 0 105747 station_ip 188.245.91.123 105747 port 13 105747 unique_id port 105749 username zare 105749 kill_reason Another user logged on this global unique id 105749 mac 105749 bytes_out 0 105749 bytes_in 0 105749 station_ip 188.245.91.123 105749 port 13 105749 unique_id port 105751 username zare 105751 kill_reason Another user logged on this global unique id 105751 mac 105751 bytes_out 0 105751 bytes_in 0 105751 station_ip 188.245.91.123 105751 port 13 105751 unique_id port 105760 username tahmasebi 105760 kill_reason Another user logged on this global unique id 105760 mac 105760 bytes_out 0 105760 bytes_in 0 105760 station_ip 5.119.42.112 105760 port 4 105760 unique_id port 105765 username aminvpn 105765 mac 105765 bytes_out 1731139 105765 bytes_in 26289574 105765 station_ip 37.129.143.13 105765 port 11 105765 unique_id port 105765 remote_ip 10.8.0.14 105767 username tahmasebi 105767 kill_reason Another user logged on this global unique id 105767 mac 105767 bytes_out 0 105767 bytes_in 0 105767 station_ip 5.119.42.112 105767 port 4 105767 unique_id port 105771 username zare 105768 username tahmasebi 105771 kill_reason Another user logged on this global unique id 105771 mac 105771 bytes_out 0 105771 bytes_in 0 105771 station_ip 188.245.91.123 105771 port 10 105771 unique_id port 105774 username zare 105774 kill_reason Another user logged on this global unique id 105774 mac 105774 bytes_out 0 105774 bytes_in 0 105774 station_ip 188.245.91.123 105774 port 10 105774 unique_id port 105775 username tahmasebi 105775 kill_reason Another user logged on this global unique id 105775 mac 105775 bytes_out 0 105775 bytes_in 0 105775 station_ip 5.119.42.112 105775 port 4 105717 station_ip 37.137.7.11 105717 port 11 105717 unique_id port 105722 username mohammadmahdi 105722 kill_reason Another user logged on this global unique id 105722 mac 105722 bytes_out 0 105722 bytes_in 0 105722 station_ip 5.119.65.94 105722 port 13 105722 unique_id port 105722 remote_ip 10.8.0.54 105726 username amir 105726 mac 105726 bytes_out 63203 105726 bytes_in 636186 105726 station_ip 46.225.211.107 105726 port 16 105726 unique_id port 105726 remote_ip 10.8.0.50 105729 username mohammadmahdi 105729 mac 105729 bytes_out 0 105729 bytes_in 0 105729 station_ip 5.119.65.94 105729 port 13 105729 unique_id port 105732 username zare 105732 mac 105732 bytes_out 0 105732 bytes_in 0 105732 station_ip 188.245.91.123 105732 port 9 105732 unique_id port 105738 username zare 105738 kill_reason Another user logged on this global unique id 105738 mac 105738 bytes_out 0 105738 bytes_in 0 105738 station_ip 188.245.91.123 105738 port 13 105738 unique_id port 105740 username zare 105740 kill_reason Another user logged on this global unique id 105740 mac 105740 bytes_out 0 105740 bytes_in 0 105740 station_ip 188.245.91.123 105740 port 13 105740 unique_id port 105742 username zare 105742 kill_reason Another user logged on this global unique id 105742 mac 105742 bytes_out 0 105742 bytes_in 0 105742 station_ip 188.245.91.123 105742 port 13 105742 unique_id port 105744 username mohammadmahdi 105744 mac 105744 bytes_out 2443307 105744 bytes_in 38663066 105744 station_ip 5.119.65.94 105744 port 9 105744 unique_id port 105744 remote_ip 10.8.0.54 105745 username zare 105745 kill_reason Another user logged on this global unique id 105745 mac 105745 bytes_out 0 105745 bytes_in 0 105745 station_ip 188.245.91.123 105745 port 13 105745 unique_id port 105748 username zare 105748 kill_reason Another user logged on this global unique id 105748 mac 105748 bytes_out 0 105748 bytes_in 0 105748 station_ip 188.245.91.123 105748 port 13 105748 unique_id port 105753 username arash 105753 mac 105753 bytes_out 0 105753 bytes_in 0 105753 station_ip 37.27.8.99 105753 port 10 105753 unique_id port 105755 username zare 105755 kill_reason Another user logged on this global unique id 105755 mac 105755 bytes_out 0 105755 bytes_in 0 105755 station_ip 188.245.91.123 105755 port 13 105755 unique_id port 105756 username zare 105756 kill_reason Another user logged on this global unique id 105756 mac 105756 bytes_out 0 105756 bytes_in 0 105756 station_ip 188.245.91.123 105756 port 13 105756 unique_id port 105757 username hamid 105757 mac 105757 bytes_out 1038881 105757 bytes_in 10536170 105757 station_ip 5.119.20.168 105757 port 9 105757 unique_id port 105757 remote_ip 10.8.0.106 105758 username kamali1 105758 mac 105758 bytes_out 0 105758 bytes_in 0 105758 station_ip 5.119.70.171 105758 port 15 105758 unique_id port 105758 remote_ip 10.8.0.70 105759 username zare 105759 mac 105759 bytes_out 0 105759 bytes_in 0 105759 station_ip 188.245.91.123 105759 port 13 105759 unique_id port 105768 kill_reason Another user logged on this global unique id 105768 mac 105768 bytes_out 0 105768 bytes_in 0 105768 station_ip 5.119.42.112 105768 port 4 105768 unique_id port 105770 username zare 105770 kill_reason Another user logged on this global unique id 105770 mac 105770 bytes_out 0 105770 bytes_in 0 105770 station_ip 188.245.91.123 105770 port 10 105770 unique_id port 105772 username tahmasebi 105772 kill_reason Another user logged on this global unique id 105772 mac 105772 bytes_out 0 105772 bytes_in 0 105772 station_ip 5.119.42.112 105741 unique_id port 105750 username arash 105750 kill_reason Another user logged on this global unique id 105750 mac 105750 bytes_out 0 105750 bytes_in 0 105750 station_ip 37.27.8.99 105750 port 10 105750 unique_id port 105752 username aminvpn 105752 unique_id port 105752 terminate_cause User-Request 105752 bytes_out 4829892 105752 bytes_in 42486925 105752 station_ip 5.119.45.104 105752 port 15728738 105752 nas_port_type Virtual 105752 remote_ip 5.5.5.124 105754 username zare 105754 kill_reason Another user logged on this global unique id 105754 mac 105754 bytes_out 0 105754 bytes_in 0 105754 station_ip 188.245.91.123 105754 port 13 105754 unique_id port 105761 username musa 105761 mac 105761 bytes_out 27937761 105761 bytes_in 49380702 105761 station_ip 89.199.117.185 105761 port 11 105761 unique_id port 105761 remote_ip 10.8.0.6 105762 username amirabbas 105762 unique_id port 105762 terminate_cause User-Request 105762 bytes_out 9234824 105762 bytes_in 239004916 105762 station_ip 37.27.63.22 105762 port 15728739 105762 nas_port_type Virtual 105762 remote_ip 5.5.5.122 105763 username afarin1 105763 mac 105763 bytes_out 212873 105763 bytes_in 2643900 105763 station_ip 151.238.229.223 105763 port 12 105763 unique_id port 105763 remote_ip 10.8.0.118 105764 username rajaei 105764 mac 105764 bytes_out 2927255 105764 bytes_in 34757708 105764 station_ip 5.134.184.92 105764 port 10 105764 unique_id port 105764 remote_ip 10.8.0.34 105766 username naeimeh 105766 mac 105766 bytes_out 1193189 105766 bytes_in 9596334 105766 station_ip 83.122.3.44 105766 port 10 105766 unique_id port 105766 remote_ip 10.8.0.78 105769 username zare 105769 kill_reason Another user logged on this global unique id 105769 mac 105769 bytes_out 0 105769 bytes_in 0 105769 station_ip 188.245.91.123 105769 port 10 105769 unique_id port 105769 remote_ip 10.8.0.18 105773 username zare 105773 kill_reason Another user logged on this global unique id 105773 mac 105773 bytes_out 0 105773 bytes_in 0 105773 station_ip 188.245.91.123 105773 port 10 105773 unique_id port 105778 username alirr 105778 unique_id port 105778 terminate_cause User-Request 105778 bytes_out 5171341 105778 bytes_in 87461145 105778 station_ip 94.24.94.226 105778 port 15728740 105778 nas_port_type Virtual 105778 remote_ip 5.5.5.120 105787 username tahmasebi 105787 kill_reason Another user logged on this global unique id 105787 mac 105787 bytes_out 0 105787 bytes_in 0 105787 station_ip 5.119.42.112 105787 port 4 105787 unique_id port 105789 username tahmasebi 105789 kill_reason Another user logged on this global unique id 105789 mac 105789 bytes_out 0 105789 bytes_in 0 105789 station_ip 5.119.42.112 105789 port 4 105789 unique_id port 105793 username afarin1 105793 mac 105793 bytes_out 0 105793 bytes_in 0 105793 station_ip 31.56.157.154 105793 port 10 105793 unique_id port 105793 remote_ip 10.8.0.118 105795 username mehdizare 105795 mac 105795 bytes_out 0 105795 bytes_in 0 105795 station_ip 5.119.107.252 105795 port 2 105795 unique_id port 105795 remote_ip 10.8.1.42 105797 username mehdizare 105797 mac 105797 bytes_out 0 105797 bytes_in 0 105797 station_ip 5.119.107.252 105797 port 10 105797 unique_id port 105797 remote_ip 10.8.0.90 105798 username mehdizare 105798 mac 105798 bytes_out 0 105798 bytes_in 0 105798 station_ip 5.119.107.252 105798 port 11 105798 unique_id port 105798 remote_ip 10.8.0.90 105799 username mehdizare 105799 mac 105799 bytes_out 0 105799 bytes_in 0 105799 station_ip 5.119.117.216 105799 port 2 105799 unique_id port 105799 remote_ip 10.8.1.42 105803 username mehdizare 105772 port 4 105772 unique_id port 105776 username zare 105776 kill_reason Another user logged on this global unique id 105776 mac 105776 bytes_out 0 105776 bytes_in 0 105776 station_ip 188.245.91.123 105776 port 10 105776 unique_id port 105779 username zare 105779 kill_reason Another user logged on this global unique id 105779 mac 105779 bytes_out 0 105779 bytes_in 0 105779 station_ip 188.245.91.123 105779 port 10 105779 unique_id port 105781 username zare 105781 kill_reason Another user logged on this global unique id 105781 mac 105781 bytes_out 0 105781 bytes_in 0 105781 station_ip 188.245.91.123 105781 port 10 105781 unique_id port 105782 username tahmasebi 105782 kill_reason Another user logged on this global unique id 105782 mac 105782 bytes_out 0 105782 bytes_in 0 105782 station_ip 5.119.42.112 105782 port 4 105782 unique_id port 105783 username zare 105783 kill_reason Another user logged on this global unique id 105783 mac 105783 bytes_out 0 105783 bytes_in 0 105783 station_ip 188.245.91.123 105783 port 10 105783 unique_id port 105784 username zare 105784 kill_reason Another user logged on this global unique id 105784 mac 105784 bytes_out 0 105784 bytes_in 0 105784 station_ip 188.245.91.123 105784 port 10 105784 unique_id port 105786 username naeimeh 105786 mac 105786 bytes_out 0 105786 bytes_in 0 105786 station_ip 37.129.187.35 105786 port 11 105786 unique_id port 105786 remote_ip 10.8.0.78 105790 username tahmasebi 105790 kill_reason Another user logged on this global unique id 105790 mac 105790 bytes_out 0 105790 bytes_in 0 105790 station_ip 5.119.42.112 105790 port 4 105790 unique_id port 105792 username afarin1 105792 mac 105792 bytes_out 106447 105792 bytes_in 388500 105792 station_ip 31.56.157.154 105792 port 10 105792 unique_id port 105792 remote_ip 10.8.0.118 105794 username mirzaei 105794 mac 105794 bytes_out 0 105794 bytes_in 0 105794 station_ip 5.120.100.72 105794 port 2 105794 unique_id port 105796 username mehdizare 105796 mac 105796 bytes_out 0 105796 bytes_in 0 105796 station_ip 5.119.107.252 105796 port 2 105796 unique_id port 105796 remote_ip 10.8.1.42 105801 username mehdizare 105801 mac 105801 bytes_out 88644 105801 bytes_in 37744 105801 station_ip 5.113.39.2 105801 port 10 105801 unique_id port 105801 remote_ip 10.8.0.90 105802 username mehdizare 105802 mac 105802 bytes_out 0 105802 bytes_in 0 105802 station_ip 5.120.40.215 105802 port 10 105802 unique_id port 105802 remote_ip 10.8.0.90 105807 username aminvpn 105807 unique_id port 105807 terminate_cause Lost-Carrier 105807 bytes_out 863265 105807 bytes_in 12484663 105807 station_ip 5.120.67.150 105807 port 15728745 105807 nas_port_type Virtual 105807 remote_ip 5.5.5.116 105812 username aminvpn 105812 unique_id port 105812 terminate_cause User-Request 105812 bytes_out 615627 105812 bytes_in 16525068 105812 station_ip 31.57.130.73 105812 port 15728746 105812 nas_port_type Virtual 105812 remote_ip 5.5.5.115 105817 username forozande 105817 mac 105817 bytes_out 2412603 105817 bytes_in 41143767 105817 station_ip 37.129.250.209 105817 port 10 105817 unique_id port 105817 remote_ip 10.8.0.74 105822 username askari 105822 mac 105822 bytes_out 0 105822 bytes_in 0 105822 station_ip 5.119.75.194 105822 port 10 105822 unique_id port 105822 remote_ip 10.8.0.62 105829 username forozande 105829 mac 105829 bytes_out 317436 105829 bytes_in 2336860 105829 station_ip 83.122.176.65 105829 port 11 105829 unique_id port 105829 remote_ip 10.8.0.74 105831 username askari 105831 mac 105831 bytes_out 0 105831 bytes_in 0 105775 unique_id port 105777 username zare 105777 kill_reason Another user logged on this global unique id 105777 mac 105777 bytes_out 0 105777 bytes_in 0 105777 station_ip 188.245.91.123 105777 port 10 105777 unique_id port 105780 username zare 105780 kill_reason Another user logged on this global unique id 105780 mac 105780 bytes_out 0 105780 bytes_in 0 105780 station_ip 188.245.91.123 105780 port 10 105780 unique_id port 105785 username zare 105785 mac 105785 bytes_out 0 105785 bytes_in 0 105785 station_ip 188.245.91.123 105785 port 10 105785 unique_id port 105788 username tahmasebi 105788 kill_reason Another user logged on this global unique id 105788 mac 105788 bytes_out 0 105788 bytes_in 0 105788 station_ip 5.119.42.112 105788 port 4 105788 unique_id port 105791 username musa 105791 mac 105791 bytes_out 0 105791 bytes_in 0 105791 station_ip 31.2.137.6 105791 port 10 105791 unique_id port 105791 remote_ip 10.8.0.6 105800 username mehdizare 105800 mac 105800 bytes_out 44329 105800 bytes_in 128103 105800 station_ip 5.113.179.161 105800 port 10 105800 unique_id port 105800 remote_ip 10.8.0.90 105804 username mehdizare 105804 mac 105804 bytes_out 6489 105804 bytes_in 9757 105804 station_ip 5.120.40.215 105804 port 10 105804 unique_id port 105804 remote_ip 10.8.0.90 105805 username mahdiyehalizadeh 105805 mac 105805 bytes_out 1075051 105805 bytes_in 18388538 105805 station_ip 37.129.233.252 105805 port 10 105805 unique_id port 105805 remote_ip 10.8.0.82 105806 username abbasaskari 105806 mac 105806 bytes_out 0 105806 bytes_in 0 105806 station_ip 83.122.42.117 105806 port 11 105806 unique_id port 105806 remote_ip 10.8.0.10 105808 username aminvpn 105808 mac 105808 bytes_out 1983423 105808 bytes_in 30979626 105808 station_ip 37.129.94.207 105808 port 10 105808 unique_id port 105808 remote_ip 10.8.0.14 105811 username aminvpn 105811 unique_id port 105811 terminate_cause User-Request 105811 bytes_out 5484108 105811 bytes_in 200403012 105811 station_ip 31.57.130.73 105811 port 15728744 105811 nas_port_type Virtual 105811 remote_ip 5.5.5.118 105813 username forozande 105813 mac 105813 bytes_out 0 105813 bytes_in 0 105813 station_ip 83.123.183.31 105813 port 9 105813 unique_id port 105813 remote_ip 10.8.0.74 105815 username askari 105815 mac 105815 bytes_out 220833 105815 bytes_in 460585 105815 station_ip 5.119.75.194 105815 port 11 105815 unique_id port 105815 remote_ip 10.8.0.62 105816 username askari 105816 mac 105816 bytes_out 0 105816 bytes_in 0 105816 station_ip 5.119.75.194 105816 port 11 105816 unique_id port 105816 remote_ip 10.8.0.62 105826 username alipour 105826 kill_reason Another user logged on this global unique id 105826 mac 105826 bytes_out 0 105826 bytes_in 0 105826 station_ip 83.123.69.20 105826 port 9 105826 unique_id port 105830 username alipour 105830 mac 105830 bytes_out 0 105830 bytes_in 0 105830 station_ip 83.123.69.20 105830 port 9 105830 unique_id port 105833 username alipour 105833 mac 105833 bytes_out 0 105833 bytes_in 0 105833 station_ip 83.123.69.20 105833 port 9 105833 unique_id port 105833 remote_ip 10.8.0.102 105841 username alipour 105841 mac 105841 bytes_out 0 105841 bytes_in 0 105841 station_ip 83.123.69.20 105841 port 14 105841 unique_id port 105841 remote_ip 10.8.0.102 105847 username kamali1 105847 mac 105847 bytes_out 177755 105847 bytes_in 86001 105847 station_ip 5.119.120.97 105847 port 9 105847 unique_id port 105847 remote_ip 10.8.0.70 105848 username alipour 105848 mac 105803 mac 105803 bytes_out 0 105803 bytes_in 0 105803 station_ip 5.120.40.215 105803 port 10 105803 unique_id port 105803 remote_ip 10.8.0.90 105809 username kamali1 105809 mac 105809 bytes_out 0 105809 bytes_in 0 105809 station_ip 5.120.126.207 105809 port 9 105809 unique_id port 105809 remote_ip 10.8.0.70 105810 username aminvpn 105810 mac 105810 bytes_out 0 105810 bytes_in 0 105810 station_ip 37.129.94.207 105810 port 9 105810 unique_id port 105810 remote_ip 10.8.0.14 105814 username malekpoir 105814 kill_reason Another user logged on this global unique id 105814 mac 105814 bytes_out 0 105814 bytes_in 0 105814 station_ip 5.119.21.231 105814 port 2 105814 unique_id port 105814 remote_ip 10.8.1.54 105818 username askari 105818 mac 105818 bytes_out 0 105818 bytes_in 0 105818 station_ip 5.119.75.194 105818 port 10 105818 unique_id port 105818 remote_ip 10.8.0.62 105819 username abbasaskari 105819 mac 105819 bytes_out 0 105819 bytes_in 0 105819 station_ip 83.122.78.33 105819 port 10 105819 unique_id port 105819 remote_ip 10.8.0.10 105820 username malekpoir 105820 kill_reason Another user logged on this global unique id 105820 mac 105820 bytes_out 0 105820 bytes_in 0 105820 station_ip 5.119.21.231 105820 port 2 105820 unique_id port 105821 username askari 105821 mac 105821 bytes_out 0 105821 bytes_in 0 105821 station_ip 5.119.75.194 105821 port 10 105821 unique_id port 105821 remote_ip 10.8.0.62 105823 username alipour 105823 kill_reason Another user logged on this global unique id 105823 mac 105823 bytes_out 0 105823 bytes_in 0 105823 station_ip 83.123.69.20 105823 port 9 105823 unique_id port 105823 remote_ip 10.8.0.102 105824 username askari 105824 mac 105824 bytes_out 0 105824 bytes_in 0 105824 station_ip 5.119.75.194 105824 port 3 105824 unique_id port 105824 remote_ip 10.8.1.38 105825 username kamali1 105825 mac 105825 bytes_out 2811381 105825 bytes_in 10600778 105825 station_ip 5.119.120.97 105825 port 12 105825 unique_id port 105825 remote_ip 10.8.0.70 105827 username kamali1 105827 mac 105827 bytes_out 169263 105827 bytes_in 240276 105827 station_ip 5.119.120.97 105827 port 11 105827 unique_id port 105827 remote_ip 10.8.0.70 105828 username kamali1 105828 mac 105828 bytes_out 80613 105828 bytes_in 78930 105828 station_ip 5.119.120.97 105828 port 14 105828 unique_id port 105828 remote_ip 10.8.0.70 105832 username askari 105832 mac 105832 bytes_out 0 105832 bytes_in 0 105832 station_ip 5.120.175.222 105832 port 3 105832 unique_id port 105832 remote_ip 10.8.1.38 105834 username alipour 105834 mac 105834 bytes_out 0 105834 bytes_in 0 105834 station_ip 83.123.69.20 105834 port 11 105834 unique_id port 105834 remote_ip 10.8.0.102 105837 username alipour 105837 mac 105837 bytes_out 0 105837 bytes_in 0 105837 station_ip 83.123.69.20 105837 port 11 105837 unique_id port 105837 remote_ip 10.8.0.102 105838 username alipour 105838 mac 105838 bytes_out 0 105838 bytes_in 0 105838 station_ip 83.123.69.20 105838 port 9 105838 unique_id port 105838 remote_ip 10.8.0.102 105843 username arash 105843 kill_reason Another user logged on this global unique id 105843 mac 105843 bytes_out 0 105843 bytes_in 0 105843 station_ip 37.27.8.99 105843 port 14 105843 unique_id port 105843 remote_ip 10.8.0.114 105846 username arash 105846 mac 105846 bytes_out 0 105846 bytes_in 0 105846 station_ip 37.27.8.99 105846 port 14 105846 unique_id port 105849 username zare 105849 mac 105849 bytes_out 0 105831 station_ip 5.120.175.222 105831 port 3 105831 unique_id port 105831 remote_ip 10.8.1.38 105835 username rajaei 105835 mac 105835 bytes_out 0 105835 bytes_in 0 105835 station_ip 5.134.181.230 105835 port 12 105835 unique_id port 105835 remote_ip 10.8.0.34 105836 username alipour 105836 mac 105836 bytes_out 0 105836 bytes_in 0 105836 station_ip 83.123.69.20 105836 port 9 105836 unique_id port 105836 remote_ip 10.8.0.102 105839 username zare 105839 kill_reason Another user logged on this global unique id 105839 mac 105839 bytes_out 0 105839 bytes_in 0 105839 station_ip 94.183.214.14 105839 port 11 105839 unique_id port 105839 remote_ip 10.8.0.18 105840 username seyedmostafa 105840 mac 105840 bytes_out 0 105840 bytes_in 0 105840 station_ip 46.225.211.34 105840 port 9 105840 unique_id port 105840 remote_ip 10.8.0.122 105842 username malekpoir 105842 kill_reason Another user logged on this global unique id 105842 mac 105842 bytes_out 0 105842 bytes_in 0 105842 station_ip 5.119.21.231 105842 port 2 105842 unique_id port 105844 username hashtadani 105844 unique_id port 105844 terminate_cause Lost-Carrier 105844 bytes_out 4537715 105844 bytes_in 82854449 105844 station_ip 83.122.46.52 105844 port 15728747 105844 nas_port_type Virtual 105844 remote_ip 5.5.5.113 105845 username abbasaskari 105845 mac 105845 bytes_out 0 105845 bytes_in 0 105845 station_ip 83.122.12.173 105845 port 15 105845 unique_id port 105845 remote_ip 10.8.0.10 105850 username kamali1 105850 mac 105850 bytes_out 0 105850 bytes_in 0 105850 station_ip 5.119.120.97 105850 port 14 105850 unique_id port 105850 remote_ip 10.8.0.70 105855 username seyedmostafa 105855 mac 105855 bytes_out 0 105855 bytes_in 0 105855 station_ip 5.119.192.144 105855 port 9 105855 unique_id port 105856 username alipour 105856 mac 105856 bytes_out 0 105856 bytes_in 0 105856 station_ip 83.123.69.20 105856 port 3 105856 unique_id port 105856 remote_ip 10.8.1.50 105857 username houshang 105857 mac 105857 bytes_out 0 105857 bytes_in 0 105857 station_ip 5.119.17.123 105857 port 9 105857 unique_id port 105857 remote_ip 10.8.0.22 105861 username alipour 105861 mac 105861 bytes_out 0 105861 bytes_in 0 105861 station_ip 83.123.69.20 105861 port 11 105861 unique_id port 105861 remote_ip 10.8.0.102 105862 username malekpoir 105862 kill_reason Another user logged on this global unique id 105862 mac 105862 bytes_out 0 105862 bytes_in 0 105862 station_ip 5.119.21.231 105862 port 2 105862 unique_id port 105865 username ahmadi 105865 unique_id port 105865 terminate_cause User-Request 105865 bytes_out 49401 105865 bytes_in 607451 105865 station_ip 83.122.143.117 105865 port 15728749 105865 nas_port_type Virtual 105865 remote_ip 5.5.5.109 105869 username musa 105869 kill_reason Another user logged on this global unique id 105869 mac 105869 bytes_out 0 105869 bytes_in 0 105869 station_ip 89.199.113.49 105869 port 12 105869 unique_id port 105874 username forozande 105874 kill_reason Another user logged on this global unique id 105874 mac 105874 bytes_out 0 105874 bytes_in 0 105874 station_ip 113.203.86.97 105874 port 2 105874 unique_id port 105874 remote_ip 10.8.0.74 105879 username alipour 105879 mac 105879 bytes_out 0 105879 bytes_in 0 105879 station_ip 83.123.69.20 105879 port 2 105879 unique_id port 105879 remote_ip 10.8.0.102 105888 username tahmasebi 105888 kill_reason Another user logged on this global unique id 105888 mac 105888 bytes_out 0 105888 bytes_in 0 105888 station_ip 5.119.42.112 105888 port 2 105888 unique_id port 105892 username tahmasebi 105848 bytes_out 156463 105848 bytes_in 218021 105848 station_ip 83.123.69.20 105848 port 3 105848 unique_id port 105848 remote_ip 10.8.1.50 105852 username alipour 105852 mac 105852 bytes_out 4643 105852 bytes_in 6299 105852 station_ip 83.123.69.20 105852 port 3 105852 unique_id port 105852 remote_ip 10.8.1.50 105853 username kamali1 105853 mac 105853 bytes_out 52463 105853 bytes_in 89791 105853 station_ip 5.119.120.97 105853 port 11 105853 unique_id port 105853 remote_ip 10.8.0.70 105854 username seyedmostafa 105854 kill_reason Another user logged on this global unique id 105854 mac 105854 bytes_out 0 105854 bytes_in 0 105854 station_ip 5.119.192.144 105854 port 9 105854 unique_id port 105864 username kamali1 105864 mac 105864 bytes_out 0 105864 bytes_in 0 105864 station_ip 5.119.120.97 105864 port 9 105864 unique_id port 105866 username forozande 105866 mac 105866 bytes_out 0 105866 bytes_in 0 105866 station_ip 83.122.163.225 105866 port 11 105866 unique_id port 105866 remote_ip 10.8.0.74 105867 username musa 105867 kill_reason Another user logged on this global unique id 105867 mac 105867 bytes_out 0 105867 bytes_in 0 105867 station_ip 89.199.113.49 105867 port 12 105867 unique_id port 105867 remote_ip 10.8.0.6 105870 username malekpoir 105870 mac 105870 bytes_out 0 105870 bytes_in 0 105870 station_ip 5.119.21.231 105870 port 2 105870 unique_id port 105872 username kamali1 105872 mac 105872 bytes_out 0 105872 bytes_in 0 105872 station_ip 5.119.120.97 105872 port 3 105872 unique_id port 105872 remote_ip 10.8.1.26 105873 username mirzaei 105873 mac 105873 bytes_out 0 105873 bytes_in 0 105873 station_ip 5.120.100.72 105873 port 4 105873 unique_id port 105873 remote_ip 10.8.1.30 105875 username malekpoir 105875 mac 105875 bytes_out 0 105875 bytes_in 0 105875 station_ip 5.119.21.231 105875 port 2 105875 unique_id port 105876 username amir 105876 mac 105876 bytes_out 0 105876 bytes_in 0 105876 station_ip 46.225.209.41 105876 port 10 105876 unique_id port 105876 remote_ip 10.8.0.50 105877 username alipour 105877 mac 105877 bytes_out 256536 105877 bytes_in 1194026 105877 station_ip 83.123.69.20 105877 port 9 105877 unique_id port 105877 remote_ip 10.8.0.102 105878 username kamali1 105878 mac 105878 bytes_out 0 105878 bytes_in 0 105878 station_ip 5.119.120.97 105878 port 3 105878 unique_id port 105878 remote_ip 10.8.1.26 105880 username kamali1 105880 mac 105880 bytes_out 0 105880 bytes_in 0 105880 station_ip 5.119.120.97 105880 port 4 105880 unique_id port 105880 remote_ip 10.8.0.70 105883 username kamali1 105883 mac 105883 bytes_out 2187 105883 bytes_in 5920 105883 station_ip 5.119.120.97 105883 port 4 105883 unique_id port 105883 remote_ip 10.8.0.70 105884 username tahmasebi 105884 kill_reason Another user logged on this global unique id 105884 mac 105884 bytes_out 0 105884 bytes_in 0 105884 station_ip 5.119.42.112 105884 port 2 105884 unique_id port 105884 remote_ip 10.8.0.42 105886 username alipour 105886 mac 105886 bytes_out 0 105886 bytes_in 0 105886 station_ip 83.123.69.20 105886 port 3 105886 unique_id port 105886 remote_ip 10.8.1.50 105890 username khalili 105890 kill_reason Another user logged on this global unique id 105890 mac 105890 bytes_out 0 105890 bytes_in 0 105890 station_ip 5.120.82.0 105890 port 13 105890 unique_id port 105890 remote_ip 10.8.0.86 105893 username alireza 105893 unique_id port 105893 terminate_cause Lost-Carrier 105893 bytes_out 2971585 105893 bytes_in 44167296 105849 bytes_in 0 105849 station_ip 94.183.214.14 105849 port 11 105849 unique_id port 105851 username seyedmostafa 105851 kill_reason Another user logged on this global unique id 105851 mac 105851 bytes_out 0 105851 bytes_in 0 105851 station_ip 5.119.192.144 105851 port 9 105851 unique_id port 105851 remote_ip 10.8.0.122 105858 username kamali1 105858 mac 105858 bytes_out 96264 105858 bytes_in 115635 105858 station_ip 5.119.120.97 105858 port 11 105858 unique_id port 105858 remote_ip 10.8.0.70 105859 username alipour 105859 mac 105859 bytes_out 41515 105859 bytes_in 52699 105859 station_ip 83.123.69.20 105859 port 3 105859 unique_id port 105859 remote_ip 10.8.1.50 105860 username zare 105860 mac 105860 bytes_out 5987565 105860 bytes_in 37252878 105860 station_ip 94.183.214.14 105860 port 14 105860 unique_id port 105860 remote_ip 10.8.0.18 105863 username kamali1 105863 kill_reason Another user logged on this global unique id 105863 mac 105863 bytes_out 0 105863 bytes_in 0 105863 station_ip 5.119.120.97 105863 port 9 105863 unique_id port 105863 remote_ip 10.8.0.70 105868 username forozande 105868 mac 105868 bytes_out 0 105868 bytes_in 0 105868 station_ip 37.129.194.142 105868 port 11 105868 unique_id port 105868 remote_ip 10.8.0.74 105871 username tahmasebi 105871 kill_reason Another user logged on this global unique id 105871 mac 105871 bytes_out 0 105871 bytes_in 0 105871 station_ip 5.119.42.112 105871 port 4 105871 unique_id port 105881 username kamali1 105881 mac 105881 bytes_out 0 105881 bytes_in 0 105881 station_ip 5.119.120.97 105881 port 9 105881 unique_id port 105881 remote_ip 10.8.0.70 105882 username amir 105882 mac 105882 bytes_out 0 105882 bytes_in 0 105882 station_ip 46.225.209.41 105882 port 2 105882 unique_id port 105882 remote_ip 10.8.0.50 105885 username amir 105885 kill_reason Another user logged on this global unique id 105885 mac 105885 bytes_out 0 105885 bytes_in 0 105885 station_ip 46.225.209.41 105885 port 4 105885 unique_id port 105885 remote_ip 10.8.0.50 105887 username alipour 105887 mac 105887 bytes_out 0 105887 bytes_in 0 105887 station_ip 83.123.69.20 105887 port 4 105887 unique_id port 105887 remote_ip 10.8.1.50 105889 username hashtadani 105889 unique_id port 105889 terminate_cause Lost-Carrier 105889 bytes_out 5951996 105889 bytes_in 118709469 105889 station_ip 5.202.24.100 105889 port 15728748 105889 nas_port_type Virtual 105889 remote_ip 5.5.5.111 105891 username amir 105891 mac 105891 bytes_out 198697 105891 bytes_in 530845 105891 station_ip 46.225.209.41 105891 port 4 105891 unique_id port 105891 remote_ip 10.8.0.50 105898 username kamali1 105898 mac 105898 bytes_out 0 105898 bytes_in 0 105898 station_ip 5.119.120.97 105898 port 9 105898 unique_id port 105898 remote_ip 10.8.0.70 105900 username abbasaskari 105900 mac 105900 bytes_out 0 105900 bytes_in 0 105900 station_ip 83.122.36.57 105900 port 9 105900 unique_id port 105900 remote_ip 10.8.0.10 105901 username forozande 105901 mac 105901 bytes_out 0 105901 bytes_in 0 105901 station_ip 113.203.3.0 105901 port 10 105901 unique_id port 105901 remote_ip 10.8.0.74 105904 username tahmasebi 105904 kill_reason Another user logged on this global unique id 105904 mac 105904 bytes_out 0 105904 bytes_in 0 105904 station_ip 5.119.42.112 105904 port 2 105904 unique_id port 105908 username tahmasebi 105908 mac 105908 bytes_out 0 105908 bytes_in 0 105908 station_ip 5.119.42.112 105908 port 2 105908 unique_id port 105914 username amir 105914 mac 105892 kill_reason Another user logged on this global unique id 105892 mac 105892 bytes_out 0 105892 bytes_in 0 105892 station_ip 5.119.42.112 105892 port 2 105892 unique_id port 105899 username khalili 105899 kill_reason Another user logged on this global unique id 105899 mac 105899 bytes_out 0 105899 bytes_in 0 105899 station_ip 5.120.82.0 105899 port 13 105899 unique_id port 105903 username ahmadipour 105903 unique_id port 105903 terminate_cause Lost-Carrier 105903 bytes_out 178851 105903 bytes_in 1567251 105903 station_ip 83.122.5.193 105903 port 15728750 105903 nas_port_type Virtual 105903 remote_ip 5.5.5.107 105912 username tahmasebi 105912 mac 105912 bytes_out 0 105912 bytes_in 0 105912 station_ip 5.119.42.112 105912 port 2 105912 unique_id port 105913 username khalili 105913 kill_reason Another user logged on this global unique id 105913 mac 105913 bytes_out 0 105913 bytes_in 0 105913 station_ip 5.120.82.0 105913 port 13 105913 unique_id port 105915 username forozande 105915 mac 105915 bytes_out 1350532 105915 bytes_in 19438745 105915 station_ip 83.122.84.66 105915 port 10 105915 unique_id port 105915 remote_ip 10.8.0.74 105920 username alipour 105920 mac 105920 bytes_out 0 105920 bytes_in 0 105920 station_ip 83.123.69.20 105920 port 9 105920 unique_id port 105920 remote_ip 10.8.0.102 105921 username alipour 105921 mac 105921 bytes_out 18123 105921 bytes_in 26081 105921 station_ip 83.123.69.20 105921 port 10 105921 unique_id port 105921 remote_ip 10.8.0.102 105923 username amir 105923 mac 105923 bytes_out 132374 105923 bytes_in 875364 105923 station_ip 46.225.209.41 105923 port 10 105923 unique_id port 105923 remote_ip 10.8.0.50 105924 username zare 105924 mac 105924 bytes_out 0 105924 bytes_in 0 105924 station_ip 94.183.214.14 105924 port 4 105924 unique_id port 105924 remote_ip 10.8.1.58 105930 username hashtadani 105930 unique_id port 105930 terminate_cause Lost-Carrier 105930 bytes_out 1070261 105930 bytes_in 14446343 105930 station_ip 5.202.24.100 105930 port 15728757 105930 nas_port_type Virtual 105930 remote_ip 5.5.5.99 105936 username kamali1 105936 mac 105936 bytes_out 0 105936 bytes_in 0 105936 station_ip 5.119.75.64 105936 port 10 105936 unique_id port 105936 remote_ip 10.8.0.70 105939 username shahrooz 105939 unique_id port 105939 terminate_cause Lost-Carrier 105939 bytes_out 6865326 105939 bytes_in 188738726 105939 station_ip 37.129.122.201 105939 port 15728756 105939 nas_port_type Virtual 105939 remote_ip 5.5.5.100 105946 username rajaei 105946 mac 105946 bytes_out 1401092 105946 bytes_in 19762272 105946 station_ip 89.47.68.53 105946 port 9 105946 unique_id port 105946 remote_ip 10.8.0.34 105952 username mohammadmahdi 105952 kill_reason Another user logged on this global unique id 105952 mac 105952 bytes_out 0 105952 bytes_in 0 105952 station_ip 5.119.241.165 105952 port 9 105952 unique_id port 105952 remote_ip 10.8.0.54 105953 username abbasaskari 105953 mac 105953 bytes_out 0 105953 bytes_in 0 105953 station_ip 83.122.120.9 105953 port 16 105953 unique_id port 105953 remote_ip 10.8.0.10 105954 username aminvpn 105954 unique_id port 105954 terminate_cause Lost-Carrier 105954 bytes_out 2218367 105954 bytes_in 27107769 105954 station_ip 5.120.19.53 105954 port 15728754 105954 nas_port_type Virtual 105954 remote_ip 5.5.5.102 105957 username amir 105957 kill_reason Another user logged on this global unique id 105957 mac 105957 bytes_out 0 105957 bytes_in 0 105957 station_ip 46.225.209.41 105957 port 14 105957 unique_id port 105961 username khalili 105961 kill_reason Another user logged on this global unique id 105893 station_ip 5.120.89.244 105893 port 15728751 105893 nas_port_type Virtual 105893 remote_ip 5.5.5.106 105894 username tahmasebi 105894 kill_reason Another user logged on this global unique id 105894 mac 105894 bytes_out 0 105894 bytes_in 0 105894 station_ip 5.119.42.112 105894 port 2 105894 unique_id port 105895 username khalili 105895 kill_reason Another user logged on this global unique id 105895 mac 105895 bytes_out 0 105895 bytes_in 0 105895 station_ip 5.120.82.0 105895 port 13 105895 unique_id port 105896 username tahmasebi 105896 kill_reason Another user logged on this global unique id 105896 mac 105896 bytes_out 0 105896 bytes_in 0 105896 station_ip 5.119.42.112 105896 port 2 105896 unique_id port 105897 username zare 105897 mac 105897 bytes_out 0 105897 bytes_in 0 105897 station_ip 94.183.214.14 105897 port 4 105897 unique_id port 105897 remote_ip 10.8.0.18 105902 username tahmasebi 105902 kill_reason Another user logged on this global unique id 105902 mac 105902 bytes_out 0 105902 bytes_in 0 105902 station_ip 5.119.42.112 105902 port 2 105902 unique_id port 105905 username zare 105905 mac 105905 bytes_out 0 105905 bytes_in 0 105905 station_ip 94.183.214.14 105905 port 4 105905 unique_id port 105905 remote_ip 10.8.0.18 105906 username malekpoir 105906 kill_reason Another user logged on this global unique id 105906 mac 105906 bytes_out 0 105906 bytes_in 0 105906 station_ip 5.119.21.231 105906 port 2 105906 unique_id port 105907 username zare 105907 kill_reason Maximum check online fails reached 105907 mac 105907 bytes_out 0 105907 bytes_in 0 105907 station_ip 94.183.214.14 105907 port 4 105907 unique_id port 105909 username malekpoir 105909 mac 105909 bytes_out 0 105909 bytes_in 0 105909 station_ip 5.119.21.231 105909 port 2 105909 unique_id port 105909 remote_ip 10.8.1.54 105910 username tahmasebi 105910 kill_reason Another user logged on this global unique id 105910 mac 105910 bytes_out 0 105910 bytes_in 0 105910 station_ip 5.119.42.112 105910 port 2 105910 unique_id port 105911 username zare 105911 kill_reason Another user logged on this global unique id 105911 mac 105911 bytes_out 0 105911 bytes_in 0 105911 station_ip 94.183.214.14 105911 port 2 105911 unique_id port 105911 remote_ip 10.8.1.58 105925 username ahmadi 105925 unique_id port 105925 terminate_cause User-Request 105925 bytes_out 244558 105925 bytes_in 570794 105925 station_ip 83.122.143.117 105925 port 15728755 105925 nas_port_type Virtual 105925 remote_ip 5.5.5.101 105929 username kamali1 105929 mac 105929 bytes_out 884463 105929 bytes_in 11260540 105929 station_ip 5.119.75.64 105929 port 10 105929 unique_id port 105929 remote_ip 10.8.0.70 105932 username alipour 105932 kill_reason Another user logged on this global unique id 105932 mac 105932 bytes_out 0 105932 bytes_in 0 105932 station_ip 37.129.113.9 105932 port 2 105932 unique_id port 105932 remote_ip 10.8.1.50 105934 username malekpoir 105934 kill_reason Another user logged on this global unique id 105934 mac 105934 bytes_out 0 105934 bytes_in 0 105934 station_ip 5.119.21.231 105934 port 3 105934 unique_id port 105934 remote_ip 10.8.1.54 105942 username morteza 105942 mac 105942 bytes_out 0 105942 bytes_in 0 105942 station_ip 83.122.222.31 105942 port 9 105942 unique_id port 105943 username mahdiyehalizadeh 105943 kill_reason Wrong password 105943 mac 105943 bytes_out 0 105943 bytes_in 0 105943 station_ip 83.122.171.115 105943 port 15 105943 unique_id port 105947 username mirzaei 105947 kill_reason Another user logged on this global unique id 105947 mac 105947 bytes_out 0 105947 bytes_in 0 105947 station_ip 5.120.100.72 105914 bytes_out 1336238 105914 bytes_in 5786112 105914 station_ip 46.225.209.41 105914 port 14 105914 unique_id port 105914 remote_ip 10.8.0.50 105916 username aminvpn 105916 mac 105916 bytes_out 947806 105916 bytes_in 11572989 105916 station_ip 37.129.137.245 105916 port 9 105916 unique_id port 105916 remote_ip 10.8.0.14 105917 username rajaei 105917 mac 105917 bytes_out 1771490 105917 bytes_in 19758730 105917 station_ip 37.137.1.31 105917 port 16 105917 unique_id port 105917 remote_ip 10.8.0.34 105918 username amir 105918 mac 105918 bytes_out 344326 105918 bytes_in 1401812 105918 station_ip 46.225.209.41 105918 port 9 105918 unique_id port 105918 remote_ip 10.8.0.50 105919 username alipour 105919 mac 105919 bytes_out 1533251 105919 bytes_in 15410439 105919 station_ip 83.123.69.20 105919 port 15 105919 unique_id port 105919 remote_ip 10.8.0.102 105922 username abbasaskari 105922 mac 105922 bytes_out 15053 105922 bytes_in 26303 105922 station_ip 83.122.60.13 105922 port 9 105922 unique_id port 105922 remote_ip 10.8.0.10 105926 username shahrooz 105926 unique_id port 105926 terminate_cause Lost-Carrier 105926 bytes_out 7755496 105926 bytes_in 210906026 105926 station_ip 37.129.122.201 105926 port 15728753 105926 nas_port_type Virtual 105926 remote_ip 5.5.5.104 105927 username alipour 105927 mac 105927 bytes_out 79860 105927 bytes_in 137557 105927 station_ip 37.129.113.9 105927 port 2 105927 unique_id port 105927 remote_ip 10.8.1.50 105928 username morteza 105928 kill_reason Another user logged on this global unique id 105928 mac 105928 bytes_out 0 105928 bytes_in 0 105928 station_ip 83.122.222.31 105928 port 9 105928 unique_id port 105928 remote_ip 10.8.0.46 105931 username mirzaei 105931 kill_reason Another user logged on this global unique id 105931 mac 105931 bytes_out 0 105931 bytes_in 0 105931 station_ip 5.120.100.72 105931 port 11 105931 unique_id port 105931 remote_ip 10.8.0.66 105933 username tahmasebi 105933 mac 105933 bytes_out 0 105933 bytes_in 0 105933 station_ip 5.119.42.112 105933 port 2 105933 unique_id port 105935 username kamali1 105935 mac 105935 bytes_out 58682 105935 bytes_in 88907 105935 station_ip 5.119.75.64 105935 port 16 105935 unique_id port 105935 remote_ip 10.8.0.70 105937 username kamali1 105937 mac 105937 bytes_out 0 105937 bytes_in 0 105937 station_ip 5.119.75.64 105937 port 10 105937 unique_id port 105937 remote_ip 10.8.0.70 105938 username alipour 105938 mac 105938 bytes_out 0 105938 bytes_in 0 105938 station_ip 37.129.113.9 105938 port 16 105938 unique_id port 105938 remote_ip 10.8.0.102 105940 username alipour 105940 mac 105940 bytes_out 8911 105940 bytes_in 15889 105940 station_ip 37.129.113.9 105940 port 10 105940 unique_id port 105940 remote_ip 10.8.0.102 105941 username abbasaskari 105941 mac 105941 bytes_out 0 105941 bytes_in 0 105941 station_ip 83.122.120.9 105941 port 15 105941 unique_id port 105941 remote_ip 10.8.0.10 105944 username mohammadmahdi 105944 mac 105944 bytes_out 120653 105944 bytes_in 589516 105944 station_ip 5.119.241.165 105944 port 9 105944 unique_id port 105944 remote_ip 10.8.0.54 105945 username mahdiyehalizadeh 105945 mac 105945 bytes_out 937978 105945 bytes_in 16304451 105945 station_ip 83.122.171.115 105945 port 16 105945 unique_id port 105945 remote_ip 10.8.0.82 105948 username hamid 105948 mac 105948 bytes_out 158100 105948 bytes_in 962519 105948 station_ip 83.122.247.242 105948 port 16 105948 unique_id port 105948 remote_ip 10.8.0.106 105949 username forozande 105947 port 11 105947 unique_id port 105951 username ahmadipour 105951 unique_id port 105951 terminate_cause Lost-Carrier 105951 bytes_out 46403 105951 bytes_in 204846 105951 station_ip 83.123.172.20 105951 port 15728760 105951 nas_port_type Virtual 105951 remote_ip 5.5.5.93 105955 username abbasaskari 105955 mac 105955 bytes_out 0 105955 bytes_in 0 105955 station_ip 83.122.120.9 105955 port 16 105955 unique_id port 105955 remote_ip 10.8.0.10 105956 username mohammadmahdi 105956 mac 105956 bytes_out 0 105956 bytes_in 0 105956 station_ip 5.119.241.165 105956 port 9 105956 unique_id port 105958 username hashtadani 105958 unique_id port 105958 terminate_cause Lost-Carrier 105958 bytes_out 2056364 105958 bytes_in 29231884 105958 station_ip 83.122.153.132 105958 port 15728758 105958 nas_port_type Virtual 105958 remote_ip 5.5.5.97 105960 username amir 105960 kill_reason Another user logged on this global unique id 105960 mac 105960 bytes_out 0 105960 bytes_in 0 105960 station_ip 46.225.209.41 105960 port 14 105960 unique_id port 105962 username tahmasebi 105962 kill_reason Another user logged on this global unique id 105962 mac 105962 bytes_out 0 105962 bytes_in 0 105962 station_ip 5.119.42.112 105962 port 2 105962 unique_id port 105964 username morteza 105964 mac 105964 bytes_out 0 105964 bytes_in 0 105964 station_ip 83.122.181.175 105964 port 9 105964 unique_id port 105964 remote_ip 10.8.0.46 105968 username alirezazadeh 105968 unique_id port 105968 terminate_cause Lost-Carrier 105968 bytes_out 462236 105968 bytes_in 4295247 105968 station_ip 5.119.70.243 105968 port 15728761 105968 nas_port_type Virtual 105968 remote_ip 5.5.5.91 105970 username houshang 105970 mac 105970 bytes_out 205092 105970 bytes_in 324675 105970 station_ip 5.119.17.123 105970 port 9 105970 unique_id port 105970 remote_ip 10.8.0.22 105974 username amir 105974 mac 105974 bytes_out 0 105974 bytes_in 0 105974 station_ip 46.225.209.41 105974 port 14 105974 unique_id port 105974 remote_ip 10.8.0.50 105976 username malekpoir 105976 mac 105976 bytes_out 0 105976 bytes_in 0 105976 station_ip 5.119.21.231 105976 port 3 105976 unique_id port 105978 username ahmadi 105978 unique_id port 105978 terminate_cause User-Request 105978 bytes_out 65598 105978 bytes_in 477791 105978 station_ip 83.122.184.121 105978 port 15728765 105978 nas_port_type Virtual 105978 remote_ip 5.5.5.84 105980 username zare 105980 mac 105980 bytes_out 0 105980 bytes_in 0 105980 station_ip 94.183.214.14 105980 port 4 105980 unique_id port 105980 remote_ip 10.8.1.58 105982 username zare 105982 mac 105982 bytes_out 7227 105982 bytes_in 17932 105982 station_ip 94.183.214.14 105982 port 4 105982 unique_id port 105982 remote_ip 10.8.1.58 105987 username musa 105987 kill_reason Another user logged on this global unique id 105987 mac 105987 bytes_out 0 105987 bytes_in 0 105987 station_ip 89.199.113.49 105987 port 12 105987 unique_id port 105989 username morteza 105989 mac 105989 bytes_out 2018019 105989 bytes_in 31076932 105989 station_ip 83.122.181.175 105989 port 9 105989 unique_id port 105989 remote_ip 10.8.0.46 105991 username askari 105991 mac 105991 bytes_out 0 105991 bytes_in 0 105991 station_ip 5.119.208.216 105991 port 9 105991 unique_id port 105991 remote_ip 10.8.0.62 105993 username amir 105993 mac 105993 bytes_out 0 105993 bytes_in 0 105993 station_ip 46.225.209.41 105993 port 9 105993 unique_id port 105993 remote_ip 10.8.0.50 105997 username aminvpn 105997 mac 105997 bytes_out 0 105997 bytes_in 0 105949 mac 105949 bytes_out 0 105949 bytes_in 0 105949 station_ip 83.122.36.240 105949 port 17 105949 unique_id port 105949 remote_ip 10.8.0.74 105950 username amir 105950 kill_reason Another user logged on this global unique id 105950 mac 105950 bytes_out 0 105950 bytes_in 0 105950 station_ip 46.225.209.41 105950 port 14 105950 unique_id port 105950 remote_ip 10.8.0.50 105959 username khalili 105959 kill_reason Another user logged on this global unique id 105959 mac 105959 bytes_out 0 105959 bytes_in 0 105959 station_ip 5.120.82.0 105959 port 13 105959 unique_id port 105963 username mohammadmahdi 105963 mac 105963 bytes_out 0 105963 bytes_in 0 105963 station_ip 5.119.241.165 105963 port 16 105963 unique_id port 105963 remote_ip 10.8.0.54 105966 username tahmasebi 105966 kill_reason Another user logged on this global unique id 105966 mac 105966 bytes_out 0 105966 bytes_in 0 105966 station_ip 5.119.42.112 105966 port 2 105966 unique_id port 105967 username malekpoir 105967 kill_reason Another user logged on this global unique id 105967 mac 105967 bytes_out 0 105967 bytes_in 0 105967 station_ip 5.119.21.231 105967 port 3 105967 unique_id port 105969 username morteza 105969 mac 105969 bytes_out 0 105969 bytes_in 0 105969 station_ip 83.122.181.175 105969 port 2 105969 unique_id port 105969 remote_ip 10.8.1.62 105972 username mohammadmahdi 105972 mac 105972 bytes_out 1935989 105972 bytes_in 34298137 105972 station_ip 5.119.241.165 105972 port 16 105972 unique_id port 105972 remote_ip 10.8.0.54 105977 username mirzaei 105977 kill_reason Another user logged on this global unique id 105977 mac 105977 bytes_out 0 105977 bytes_in 0 105977 station_ip 5.120.100.72 105977 port 11 105977 unique_id port 105979 username zare 105979 mac 105979 bytes_out 0 105979 bytes_in 0 105979 station_ip 94.183.214.14 105979 port 4 105979 unique_id port 105979 remote_ip 10.8.1.58 105985 username abbasaskari 105985 mac 105985 bytes_out 12779 105985 bytes_in 27621 105985 station_ip 83.122.71.173 105985 port 15 105985 unique_id port 105985 remote_ip 10.8.0.10 105996 username kamali1 105996 mac 105996 bytes_out 398875 105996 bytes_in 1794923 105996 station_ip 5.119.75.64 105996 port 2 105996 unique_id port 105996 remote_ip 10.8.1.26 105999 username aminvpn 105999 mac 105999 bytes_out 0 105999 bytes_in 0 105999 station_ip 83.123.150.234 105999 port 15 105999 unique_id port 105999 remote_ip 10.8.0.14 106000 username aminvpn 106000 mac 106000 bytes_out 0 106000 bytes_in 0 106000 station_ip 83.123.3.238 106000 port 14 106000 unique_id port 106000 remote_ip 10.8.0.14 106001 username aminvpn 106001 mac 106001 bytes_out 0 106001 bytes_in 0 106001 station_ip 83.123.150.234 106001 port 16 106001 unique_id port 106001 remote_ip 10.8.0.14 106007 username amin.saeedi 106007 unique_id port 106007 terminate_cause User-Request 106007 bytes_out 11676299 106007 bytes_in 453276908 106007 station_ip 31.56.220.154 106007 port 15728759 106007 nas_port_type Virtual 106007 remote_ip 5.5.5.95 106008 username amir 106008 mac 106008 bytes_out 0 106008 bytes_in 0 106008 station_ip 46.225.209.41 106008 port 14 106008 unique_id port 106008 remote_ip 10.8.0.50 106011 username malekpoir 106011 mac 106011 bytes_out 0 106011 bytes_in 0 106011 station_ip 5.119.21.231 106011 port 3 106011 unique_id port 106011 remote_ip 10.8.1.54 106014 username amir 106014 mac 106014 bytes_out 0 106014 bytes_in 0 106014 station_ip 46.225.209.41 106014 port 14 106014 unique_id port 106014 remote_ip 10.8.0.50 105961 mac 105961 bytes_out 0 105961 bytes_in 0 105961 station_ip 5.120.82.0 105961 port 13 105961 unique_id port 105965 username amir 105965 mac 105965 bytes_out 0 105965 bytes_in 0 105965 station_ip 46.225.209.41 105965 port 14 105965 unique_id port 105971 username kamali1 105971 mac 105971 bytes_out 0 105971 bytes_in 0 105971 station_ip 5.119.75.64 105971 port 15 105971 unique_id port 105971 remote_ip 10.8.0.70 105973 username ahmadipour 105973 unique_id port 105973 terminate_cause User-Request 105973 bytes_out 664805 105973 bytes_in 6714991 105973 station_ip 83.123.232.96 105973 port 15728763 105973 nas_port_type Virtual 105973 remote_ip 5.5.5.87 105975 username ahmadipour 105975 unique_id port 105975 terminate_cause Lost-Carrier 105975 bytes_out 21255 105975 bytes_in 45030 105975 station_ip 83.123.232.96 105975 port 15728764 105975 nas_port_type Virtual 105975 remote_ip 5.5.5.86 105981 username zare 105981 mac 105981 bytes_out 0 105981 bytes_in 0 105981 station_ip 94.183.214.14 105981 port 4 105981 unique_id port 105981 remote_ip 10.8.1.58 105983 username morteza 105983 mac 105983 bytes_out 52634 105983 bytes_in 145870 105983 station_ip 83.122.181.175 105983 port 9 105983 unique_id port 105983 remote_ip 10.8.0.46 105984 username amir 105984 mac 105984 bytes_out 0 105984 bytes_in 0 105984 station_ip 46.225.209.41 105984 port 9 105984 unique_id port 105984 remote_ip 10.8.0.50 105986 username abbasaskari 105986 mac 105986 bytes_out 0 105986 bytes_in 0 105986 station_ip 83.122.71.173 105986 port 15 105986 unique_id port 105986 remote_ip 10.8.0.10 105988 username amir 105988 mac 105988 bytes_out 47846 105988 bytes_in 381432 105988 station_ip 46.225.209.41 105988 port 15 105988 unique_id port 105988 remote_ip 10.8.0.50 105990 username mohammadmahdi 105990 mac 105990 bytes_out 18720183 105990 bytes_in 1955698 105990 station_ip 5.119.241.165 105990 port 16 105990 unique_id port 105990 remote_ip 10.8.0.54 105992 username aminvpn 105992 kill_reason Another user logged on this global unique id 105992 mac 105992 bytes_out 0 105992 bytes_in 0 105992 station_ip 83.123.45.86 105992 port 15 105992 unique_id port 105992 remote_ip 10.8.0.14 105994 username aminvpn 105994 mac 105994 bytes_out 0 105994 bytes_in 0 105994 station_ip 83.123.45.86 105994 port 15 105994 unique_id port 105995 username forozande 105995 mac 105995 bytes_out 1604290 105995 bytes_in 24889758 105995 station_ip 37.129.51.227 105995 port 14 105995 unique_id port 105995 remote_ip 10.8.0.74 106002 username aminvpn 106002 mac 106002 bytes_out 0 106002 bytes_in 0 106002 station_ip 83.123.3.238 106002 port 14 106002 unique_id port 106002 remote_ip 10.8.0.14 106009 username kamali1 106009 mac 106009 bytes_out 0 106009 bytes_in 0 106009 station_ip 5.119.75.64 106009 port 2 106009 unique_id port 106009 remote_ip 10.8.1.26 106010 username amirabbas 106010 unique_id port 106010 terminate_cause User-Request 106010 bytes_out 32181152 106010 bytes_in 868824917 106010 station_ip 37.27.9.251 106010 port 15728762 106010 nas_port_type Virtual 106010 remote_ip 5.5.5.89 106012 username alireza1 106012 kill_reason Relative expiration date has reached 106012 unique_id port 106012 bytes_out 0 106012 bytes_in 0 106012 station_ip 5.119.238.52 106012 port 15728772 106012 nas_port_type Virtual 106013 username hamid.e 106013 unique_id port 106013 terminate_cause User-Request 106013 bytes_out 6732990 106013 bytes_in 58911482 106013 station_ip 188.245.88.223 106013 port 15728767 106013 nas_port_type Virtual 105997 station_ip 83.123.3.238 105997 port 14 105997 unique_id port 105997 remote_ip 10.8.0.14 105998 username musa 105998 kill_reason Another user logged on this global unique id 105998 mac 105998 bytes_out 0 105998 bytes_in 0 105998 station_ip 89.199.113.49 105998 port 12 105998 unique_id port 106003 username amir 106003 mac 106003 bytes_out 0 106003 bytes_in 0 106003 station_ip 46.225.209.41 106003 port 15 106003 unique_id port 106003 remote_ip 10.8.0.50 106004 username aminvpn 106004 mac 106004 bytes_out 39149 106004 bytes_in 49085 106004 station_ip 83.123.150.234 106004 port 14 106004 unique_id port 106004 remote_ip 10.8.0.14 106005 username aminvpn 106005 mac 106005 bytes_out 0 106005 bytes_in 0 106005 station_ip 83.123.150.234 106005 port 15 106005 unique_id port 106005 remote_ip 10.8.0.14 106006 username musa 106006 kill_reason Another user logged on this global unique id 106006 mac 106006 bytes_out 0 106006 bytes_in 0 106006 station_ip 89.199.113.49 106006 port 12 106006 unique_id port 106018 username kamali1 106018 mac 106018 bytes_out 59653813 106018 bytes_in 732733334 106018 station_ip 5.119.75.64 106018 port 2 106018 unique_id port 106018 remote_ip 10.8.1.26 106021 username arabpour 106021 unique_id port 106021 terminate_cause Lost-Carrier 106021 bytes_out 410423 106021 bytes_in 5337887 106021 station_ip 5.213.75.186 106021 port 15728770 106021 nas_port_type Virtual 106021 remote_ip 5.5.5.77 106024 username amir 106024 mac 106024 bytes_out 0 106024 bytes_in 0 106024 station_ip 46.225.209.41 106024 port 14 106024 unique_id port 106024 remote_ip 10.8.0.50 106027 username amir 106027 mac 106027 bytes_out 0 106027 bytes_in 0 106027 station_ip 46.225.209.41 106027 port 12 106027 unique_id port 106027 remote_ip 10.8.0.50 106028 username houshang 106028 mac 106028 bytes_out 518145 106028 bytes_in 4422506 106028 station_ip 5.119.17.123 106028 port 12 106028 unique_id port 106028 remote_ip 10.8.0.22 106033 username musa 106033 kill_reason Another user logged on this global unique id 106033 mac 106033 bytes_out 0 106033 bytes_in 0 106033 station_ip 89.199.113.49 106033 port 14 106033 unique_id port 106033 remote_ip 10.8.0.6 106034 username kamali1 106034 mac 106034 bytes_out 67153 106034 bytes_in 232834 106034 station_ip 5.119.75.64 106034 port 2 106034 unique_id port 106034 remote_ip 10.8.1.26 106035 username mirzaei 106035 mac 106035 bytes_out 74505 106035 bytes_in 379287 106035 station_ip 5.120.115.222 106035 port 3 106035 unique_id port 106035 remote_ip 10.8.1.30 106036 username morteza 106036 mac 106036 bytes_out 2994808 106036 bytes_in 481563 106036 station_ip 83.122.235.47 106036 port 9 106036 unique_id port 106036 remote_ip 10.8.0.46 106037 username morteza 106037 mac 106037 bytes_out 0 106037 bytes_in 0 106037 station_ip 83.122.235.47 106037 port 15 106037 unique_id port 106037 remote_ip 10.8.0.46 106041 username houshang 106041 mac 106041 bytes_out 0 106041 bytes_in 0 106041 station_ip 5.119.17.123 106041 port 11 106041 unique_id port 106048 username amir 106048 mac 106048 bytes_out 0 106048 bytes_in 0 106048 station_ip 46.225.209.41 106048 port 11 106048 unique_id port 106048 remote_ip 10.8.0.50 106052 username musa 106052 kill_reason Another user logged on this global unique id 106052 mac 106052 bytes_out 0 106052 bytes_in 0 106052 station_ip 89.199.113.49 106052 port 14 106052 unique_id port 106055 username mohammadmahdi 106055 kill_reason Another user logged on this global unique id 106055 mac 106055 bytes_out 0 106013 remote_ip 5.5.5.80 106017 username khalili 106017 kill_reason Another user logged on this global unique id 106017 mac 106017 bytes_out 0 106017 bytes_in 0 106017 station_ip 5.120.82.0 106017 port 13 106017 unique_id port 106022 username amir 106022 mac 106022 bytes_out 86601 106022 bytes_in 460486 106022 station_ip 46.225.209.41 106022 port 14 106022 unique_id port 106022 remote_ip 10.8.0.50 106023 username amin.saeedi 106023 unique_id port 106023 terminate_cause User-Request 106023 bytes_out 1845936 106023 bytes_in 57531283 106023 station_ip 31.56.220.154 106023 port 15728771 106023 nas_port_type Virtual 106023 remote_ip 5.5.5.76 106025 username musa 106025 mac 106025 bytes_out 0 106025 bytes_in 0 106025 station_ip 89.199.113.49 106025 port 12 106025 unique_id port 106029 username amin.saeedi 106029 unique_id port 106029 terminate_cause User-Request 106029 bytes_out 284296 106029 bytes_in 7998864 106029 station_ip 31.56.220.154 106029 port 15728773 106029 nas_port_type Virtual 106029 remote_ip 5.5.5.75 106030 username houshang 106030 mac 106030 bytes_out 0 106030 bytes_in 0 106030 station_ip 5.119.17.123 106030 port 15 106030 unique_id port 106030 remote_ip 10.8.0.22 106031 username mirzaei 106031 mac 106031 bytes_out 0 106031 bytes_in 0 106031 station_ip 5.120.100.72 106031 port 11 106031 unique_id port 106032 username amir 106032 mac 106032 bytes_out 0 106032 bytes_in 0 106032 station_ip 46.225.209.41 106032 port 11 106032 unique_id port 106032 remote_ip 10.8.0.50 106040 username musa 106040 kill_reason Another user logged on this global unique id 106040 mac 106040 bytes_out 0 106040 bytes_in 0 106040 station_ip 89.199.113.49 106040 port 14 106040 unique_id port 106044 username amir 106044 mac 106044 bytes_out 0 106044 bytes_in 0 106044 station_ip 46.225.209.41 106044 port 11 106044 unique_id port 106044 remote_ip 10.8.0.50 106045 username musa 106045 kill_reason Another user logged on this global unique id 106045 mac 106045 bytes_out 0 106045 bytes_in 0 106045 station_ip 89.199.113.49 106045 port 14 106045 unique_id port 106049 username mohammadmahdi 106049 kill_reason Another user logged on this global unique id 106049 mac 106049 bytes_out 0 106049 bytes_in 0 106049 station_ip 5.119.241.165 106049 port 9 106049 unique_id port 106053 username amir 106053 mac 106053 bytes_out 67093 106053 bytes_in 418147 106053 station_ip 46.225.209.41 106053 port 11 106053 unique_id port 106053 remote_ip 10.8.0.50 106054 username hamid 106054 kill_reason Another user logged on this global unique id 106054 mac 106054 bytes_out 0 106054 bytes_in 0 106054 station_ip 37.129.143.73 106054 port 12 106054 unique_id port 106054 remote_ip 10.8.0.106 106056 username forozande 106056 mac 106056 bytes_out 78218 106056 bytes_in 81427 106056 station_ip 83.122.149.169 106056 port 16 106056 unique_id port 106056 remote_ip 10.8.0.74 106058 username alipour 106058 mac 106058 bytes_out 2697814 106058 bytes_in 31805894 106058 station_ip 37.129.113.9 106058 port 10 106058 unique_id port 106058 remote_ip 10.8.0.102 106060 username khalili 106060 mac 106060 bytes_out 0 106060 bytes_in 0 106060 station_ip 5.120.82.0 106060 port 13 106060 unique_id port 106068 username houshang 106068 mac 106068 bytes_out 0 106068 bytes_in 0 106068 station_ip 5.119.17.123 106068 port 15 106068 unique_id port 106071 username aminvpn 106071 kill_reason Wrong password 106071 unique_id port 106071 bytes_out 0 106071 bytes_in 0 106071 station_ip 31.57.128.229 106071 port 15728781 106071 nas_port_type Virtual 106015 username morteza 106015 mac 106015 bytes_out 162701 106015 bytes_in 1205586 106015 station_ip 83.122.235.47 106015 port 9 106015 unique_id port 106015 remote_ip 10.8.0.46 106016 username kamali1 106016 mac 106016 bytes_out 59650939 106016 bytes_in 732729901 106016 station_ip 5.119.75.64 106016 port 2 106016 unique_id port 106016 remote_ip 10.8.1.26 106019 username aminvpn 106019 unique_id port 106019 terminate_cause User-Request 106019 bytes_out 16603061 106019 bytes_in 537752952 106019 station_ip 5.120.50.197 106019 port 15728766 106019 nas_port_type Virtual 106019 remote_ip 5.5.5.82 106020 username alireza 106020 unique_id port 106020 terminate_cause User-Request 106020 bytes_out 2930928 106020 bytes_in 57075750 106020 station_ip 5.120.89.244 106020 port 15728768 106020 nas_port_type Virtual 106020 remote_ip 5.5.5.79 106026 username kamali1 106026 mac 106026 bytes_out 59658732 106026 bytes_in 732739096 106026 station_ip 5.119.75.64 106026 port 2 106026 unique_id port 106026 remote_ip 10.8.1.26 106038 username houshang 106038 kill_reason Another user logged on this global unique id 106038 mac 106038 bytes_out 0 106038 bytes_in 0 106038 station_ip 5.119.17.123 106038 port 11 106038 unique_id port 106038 remote_ip 10.8.0.22 106039 username amir 106039 mac 106039 bytes_out 0 106039 bytes_in 0 106039 station_ip 46.225.209.41 106039 port 9 106039 unique_id port 106039 remote_ip 10.8.0.50 106042 username forozande 106042 mac 106042 bytes_out 2962007 106042 bytes_in 45152712 106042 station_ip 83.122.174.44 106042 port 12 106042 unique_id port 106042 remote_ip 10.8.0.74 106043 username ahmadipour 106043 unique_id port 106043 terminate_cause Lost-Carrier 106043 bytes_out 454960 106043 bytes_in 3888846 106043 station_ip 83.123.220.108 106043 port 15728774 106043 nas_port_type Virtual 106043 remote_ip 5.5.5.73 106046 username mohammadmahdi 106046 kill_reason Another user logged on this global unique id 106046 mac 106046 bytes_out 0 106046 bytes_in 0 106046 station_ip 5.119.241.165 106046 port 9 106046 unique_id port 106046 remote_ip 10.8.0.54 106047 username amir 106047 mac 106047 bytes_out 72048 106047 bytes_in 497048 106047 station_ip 46.225.209.41 106047 port 11 106047 unique_id port 106047 remote_ip 10.8.0.50 106050 username abbasaskari 106050 mac 106050 bytes_out 0 106050 bytes_in 0 106050 station_ip 83.122.38.213 106050 port 11 106050 unique_id port 106050 remote_ip 10.8.0.10 106051 username mohammadmahdi 106051 kill_reason Another user logged on this global unique id 106051 mac 106051 bytes_out 0 106051 bytes_in 0 106051 station_ip 5.119.241.165 106051 port 9 106051 unique_id port 106057 username abbasaskari 106057 mac 106057 bytes_out 7824 106057 bytes_in 12312 106057 station_ip 83.122.38.213 106057 port 18 106057 unique_id port 106057 remote_ip 10.8.0.10 106064 username askari 106064 mac 106064 bytes_out 121696 106064 bytes_in 728603 106064 station_ip 5.119.119.89 106064 port 3 106064 unique_id port 106064 remote_ip 10.8.1.38 106067 username aminvpn 106067 kill_reason Wrong password 106067 unique_id port 106067 bytes_out 0 106067 bytes_in 0 106067 station_ip 31.57.128.229 106067 port 15728780 106067 nas_port_type Virtual 106070 username askari 106070 mac 106070 bytes_out 0 106070 bytes_in 0 106070 station_ip 5.119.119.89 106070 port 3 106070 unique_id port 106070 remote_ip 10.8.1.38 106072 username forozande 106072 mac 106072 bytes_out 90286 106072 bytes_in 948047 106072 station_ip 83.122.26.173 106072 port 10 106072 unique_id port 106072 remote_ip 10.8.0.74 106075 username zare 106055 bytes_in 0 106055 station_ip 5.119.241.165 106055 port 9 106055 unique_id port 106059 username houshang 106059 kill_reason Another user logged on this global unique id 106059 mac 106059 bytes_out 0 106059 bytes_in 0 106059 station_ip 5.119.17.123 106059 port 15 106059 unique_id port 106059 remote_ip 10.8.0.22 106061 username hamid 106061 kill_reason Another user logged on this global unique id 106061 mac 106061 bytes_out 0 106061 bytes_in 0 106061 station_ip 37.129.143.73 106061 port 12 106061 unique_id port 106062 username mohammadmahdi 106062 kill_reason Another user logged on this global unique id 106062 mac 106062 bytes_out 0 106062 bytes_in 0 106062 station_ip 5.119.241.165 106062 port 9 106062 unique_id port 106063 username hamid 106063 mac 106063 bytes_out 0 106063 bytes_in 0 106063 station_ip 37.129.143.73 106063 port 12 106063 unique_id port 106065 username amir 106065 kill_reason Another user logged on this global unique id 106065 mac 106065 bytes_out 0 106065 bytes_in 0 106065 station_ip 46.225.209.41 106065 port 11 106065 unique_id port 106065 remote_ip 10.8.0.50 106066 username aminvpn 106066 kill_reason Wrong password 106066 unique_id port 106066 bytes_out 0 106066 bytes_in 0 106066 station_ip 31.57.128.229 106066 port 15728779 106066 nas_port_type Virtual 106069 username hashtadani 106069 unique_id port 106069 terminate_cause Lost-Carrier 106069 bytes_out 1145781 106069 bytes_in 17859781 106069 station_ip 5.202.133.240 106069 port 15728776 106069 nas_port_type Virtual 106069 remote_ip 5.5.5.70 106073 username aminvpn 106073 kill_reason Wrong password 106073 unique_id port 106073 bytes_out 0 106073 bytes_in 0 106073 station_ip 31.57.128.229 106073 port 15728783 106073 nas_port_type Virtual 106078 username houshang 106078 kill_reason Another user logged on this global unique id 106078 mac 106078 bytes_out 0 106078 bytes_in 0 106078 station_ip 5.119.17.123 106078 port 12 106078 unique_id port 106078 remote_ip 10.8.0.22 106081 username alipour 106081 kill_reason Another user logged on this global unique id 106081 mac 106081 bytes_out 0 106081 bytes_in 0 106081 station_ip 37.129.113.9 106081 port 2 106081 unique_id port 106081 remote_ip 10.8.1.50 106082 username aminvpn 106082 mac 106082 bytes_out 792719 106082 bytes_in 1888161 106082 station_ip 113.203.119.71 106082 port 17 106082 unique_id port 106082 remote_ip 10.8.0.14 106083 username tahmasebi 106083 mac 106083 bytes_out 0 106083 bytes_in 0 106083 station_ip 5.119.42.112 106083 port 2 106083 unique_id port 106087 username zare 106087 kill_reason Another user logged on this global unique id 106087 mac 106087 bytes_out 0 106087 bytes_in 0 106087 station_ip 188.245.91.123 106087 port 4 106087 unique_id port 106087 remote_ip 10.8.1.58 106091 username zare 106091 kill_reason Another user logged on this global unique id 106091 mac 106091 bytes_out 0 106091 bytes_in 0 106091 station_ip 188.245.91.123 106091 port 4 106091 unique_id port 106093 username mohammadmahdi 106093 mac 106093 bytes_out 0 106093 bytes_in 0 106093 station_ip 5.119.241.165 106093 port 9 106093 unique_id port 106094 username zare 106094 kill_reason Another user logged on this global unique id 106094 mac 106094 bytes_out 0 106094 bytes_in 0 106094 station_ip 188.245.91.123 106094 port 4 106094 unique_id port 106095 username aminvpn 106095 unique_id port 106095 terminate_cause User-Request 106095 bytes_out 768 106095 bytes_in 122 106095 station_ip 5.119.107.251 106095 port 15728787 106095 nas_port_type Virtual 106095 remote_ip 5.5.5.64 106097 username ayobi 106097 mac 106097 bytes_out 0 106097 bytes_in 0 106074 username aminvpn 106074 kill_reason Wrong password 106074 unique_id port 106074 bytes_out 0 106074 bytes_in 0 106074 station_ip 31.57.128.229 106074 port 15728784 106074 nas_port_type Virtual 106076 username amirabbas 106076 unique_id port 106076 terminate_cause User-Request 106076 bytes_out 7866714 106076 bytes_in 228324354 106076 station_ip 37.27.9.251 106076 port 15728775 106076 nas_port_type Virtual 106076 remote_ip 5.5.5.72 106079 username mohammadmahdi 106079 kill_reason Another user logged on this global unique id 106079 mac 106079 bytes_out 0 106079 bytes_in 0 106079 station_ip 5.119.241.165 106079 port 9 106079 unique_id port 106080 username zare 106080 mac 106080 bytes_out 0 106080 bytes_in 0 106080 station_ip 188.245.91.123 106080 port 4 106080 unique_id port 106086 username askari 106086 mac 106086 bytes_out 0 106086 bytes_in 0 106086 station_ip 5.119.119.89 106086 port 3 106086 unique_id port 106086 remote_ip 10.8.1.38 106089 username aminvpn 106089 mac 106089 bytes_out 12849 106089 bytes_in 17037 106089 station_ip 113.203.119.71 106089 port 3 106089 unique_id port 106089 remote_ip 10.8.1.6 106096 username zare 106096 kill_reason Another user logged on this global unique id 106096 mac 106096 bytes_out 0 106096 bytes_in 0 106096 station_ip 188.245.91.123 106096 port 4 106096 unique_id port 106098 username askari 106098 mac 106098 bytes_out 140417 106098 bytes_in 400609 106098 station_ip 5.120.11.157 106098 port 9 106098 unique_id port 106098 remote_ip 10.8.0.62 106105 username alipour 106105 kill_reason Another user logged on this global unique id 106105 mac 106105 bytes_out 0 106105 bytes_in 0 106105 station_ip 37.129.113.9 106105 port 2 106105 unique_id port 106105 remote_ip 10.8.1.50 106108 username mehdizare 106108 mac 106108 bytes_out 0 106108 bytes_in 0 106108 station_ip 5.120.103.237 106108 port 10 106108 unique_id port 106111 username mehdizare 106111 mac 106111 bytes_out 67313 106111 bytes_in 222843 106111 station_ip 5.120.103.237 106111 port 10 106111 unique_id port 106111 remote_ip 10.8.0.90 106113 username hamid.e 106113 unique_id port 106113 terminate_cause Lost-Carrier 106113 bytes_out 1498254 106113 bytes_in 9765151 106113 station_ip 37.27.29.173 106113 port 15728788 106113 nas_port_type Virtual 106113 remote_ip 5.5.5.62 106117 username mehdizare 106117 mac 106117 bytes_out 21505 106117 bytes_in 20974 106117 station_ip 5.119.206.12 106117 port 13 106117 unique_id port 106117 remote_ip 10.8.0.90 106119 username abbasaskari 106119 mac 106119 bytes_out 17649 106119 bytes_in 34385 106119 station_ip 37.129.15.4 106119 port 13 106119 unique_id port 106119 remote_ip 10.8.0.10 106123 username abbasaskari 106123 mac 106123 bytes_out 0 106123 bytes_in 0 106123 station_ip 37.129.15.4 106123 port 11 106123 unique_id port 106123 remote_ip 10.8.0.10 106128 username askari 106128 kill_reason Another user logged on this global unique id 106128 mac 106128 bytes_out 0 106128 bytes_in 0 106128 station_ip 5.120.77.117 106128 port 10 106128 unique_id port 106128 remote_ip 10.8.0.62 106129 username ayobi 106129 kill_reason Another user logged on this global unique id 106129 mac 106129 bytes_out 0 106129 bytes_in 0 106129 station_ip 83.123.196.52 106129 port 9 106129 unique_id port 106133 username hamid 106133 mac 106133 bytes_out 0 106133 bytes_in 0 106133 station_ip 83.122.192.122 106133 port 3 106133 unique_id port 106133 remote_ip 10.8.1.66 106135 username ayobi 106135 kill_reason Another user logged on this global unique id 106135 mac 106135 bytes_out 0 106135 bytes_in 0 106075 kill_reason Another user logged on this global unique id 106075 mac 106075 bytes_out 0 106075 bytes_in 0 106075 station_ip 188.245.91.123 106075 port 4 106075 unique_id port 106075 remote_ip 10.8.1.58 106077 username aminvpn 106077 kill_reason Wrong password 106077 unique_id port 106077 bytes_out 0 106077 bytes_in 0 106077 station_ip 31.57.128.229 106077 port 15728785 106077 nas_port_type Virtual 106084 username houshang 106084 mac 106084 bytes_out 0 106084 bytes_in 0 106084 station_ip 5.119.17.123 106084 port 12 106084 unique_id port 106085 username amir 106085 mac 106085 bytes_out 0 106085 bytes_in 0 106085 station_ip 46.225.209.41 106085 port 11 106085 unique_id port 106088 username aminvpn 106088 mac 106088 bytes_out 0 106088 bytes_in 0 106088 station_ip 113.203.119.71 106088 port 10 106088 unique_id port 106088 remote_ip 10.8.0.14 106090 username mohammadmahdi 106090 kill_reason Another user logged on this global unique id 106090 mac 106090 bytes_out 0 106090 bytes_in 0 106090 station_ip 5.119.241.165 106090 port 9 106090 unique_id port 106092 username hashtadani 106092 unique_id port 106092 terminate_cause Lost-Carrier 106092 bytes_out 134845 106092 bytes_in 1904123 106092 station_ip 5.202.133.240 106092 port 15728782 106092 nas_port_type Virtual 106092 remote_ip 5.5.5.67 106100 username houshang 106100 mac 106100 bytes_out 1708947 106100 bytes_in 16498459 106100 station_ip 5.119.17.123 106100 port 12 106100 unique_id port 106100 remote_ip 10.8.0.22 106103 username zare 106103 kill_reason Another user logged on this global unique id 106103 mac 106103 bytes_out 0 106103 bytes_in 0 106103 station_ip 188.245.91.123 106103 port 4 106103 unique_id port 106104 username mehdizare 106104 kill_reason Another user logged on this global unique id 106104 mac 106104 bytes_out 0 106104 bytes_in 0 106104 station_ip 5.120.103.237 106104 port 10 106104 unique_id port 106104 remote_ip 10.8.0.90 106109 username amir 106109 mac 106109 bytes_out 79675 106109 bytes_in 957309 106109 station_ip 83.122.70.69 106109 port 13 106109 unique_id port 106109 remote_ip 10.8.0.50 106110 username ahmadipour 106110 unique_id port 106110 terminate_cause Lost-Carrier 106110 bytes_out 1583202 106110 bytes_in 18871834 106110 station_ip 83.123.143.204 106110 port 15728789 106110 nas_port_type Virtual 106110 remote_ip 5.5.5.60 106114 username kamali1 106114 mac 106114 bytes_out 52524 106114 bytes_in 92532 106114 station_ip 5.120.152.196 106114 port 10 106114 unique_id port 106114 remote_ip 10.8.0.70 106116 username arman1 106116 mac 106116 bytes_out 3240159 106116 bytes_in 21389463 106116 station_ip 5.119.108.57 106116 port 11 106116 unique_id port 106116 remote_ip 10.8.0.110 106120 username mehdizare 106120 mac 106120 bytes_out 7180 106120 bytes_in 13343 106120 station_ip 5.119.206.12 106120 port 3 106120 unique_id port 106120 remote_ip 10.8.1.42 106126 username mehdizare 106126 mac 106126 bytes_out 17494 106126 bytes_in 23624 106126 station_ip 5.119.206.12 106126 port 11 106126 unique_id port 106126 remote_ip 10.8.0.90 106127 username amirabbas 106127 unique_id port 106127 terminate_cause User-Request 106127 bytes_out 6251407 106127 bytes_in 103567265 106127 station_ip 37.27.9.251 106127 port 15728786 106127 nas_port_type Virtual 106127 remote_ip 5.5.5.66 106130 username abbasaskari 106130 mac 106130 bytes_out 6787 106130 bytes_in 12176 106130 station_ip 37.129.15.4 106130 port 13 106130 unique_id port 106130 remote_ip 10.8.0.10 106132 username askari 106132 mac 106132 bytes_out 0 106132 bytes_in 0 106132 station_ip 5.120.77.117 106097 station_ip 83.123.196.52 106097 port 11 106097 unique_id port 106097 remote_ip 10.8.0.126 106099 username zare 106099 kill_reason Another user logged on this global unique id 106099 mac 106099 bytes_out 0 106099 bytes_in 0 106099 station_ip 188.245.91.123 106099 port 4 106099 unique_id port 106101 username zare 106101 kill_reason Another user logged on this global unique id 106101 mac 106101 bytes_out 0 106101 bytes_in 0 106101 station_ip 188.245.91.123 106101 port 4 106101 unique_id port 106102 username musa 106102 kill_reason Another user logged on this global unique id 106102 mac 106102 bytes_out 0 106102 bytes_in 0 106102 station_ip 89.199.113.49 106102 port 14 106102 unique_id port 106106 username zare 106106 kill_reason Another user logged on this global unique id 106106 mac 106106 bytes_out 0 106106 bytes_in 0 106106 station_ip 188.245.91.123 106106 port 4 106106 unique_id port 106107 username alirr 106107 unique_id port 106107 terminate_cause User-Request 106107 bytes_out 10194976 106107 bytes_in 233261974 106107 station_ip 5.119.124.107 106107 port 15728778 106107 nas_port_type Virtual 106107 remote_ip 5.5.5.68 106112 username zare 106112 kill_reason Another user logged on this global unique id 106112 mac 106112 bytes_out 0 106112 bytes_in 0 106112 station_ip 188.245.91.123 106112 port 4 106112 unique_id port 106115 username ayobi 106115 kill_reason Another user logged on this global unique id 106115 mac 106115 bytes_out 0 106115 bytes_in 0 106115 station_ip 83.123.196.52 106115 port 9 106115 unique_id port 106115 remote_ip 10.8.0.126 106118 username mehdizare 106118 mac 106118 bytes_out 0 106118 bytes_in 0 106118 station_ip 5.119.206.12 106118 port 11 106118 unique_id port 106118 remote_ip 10.8.0.90 106121 username zare 106121 kill_reason Another user logged on this global unique id 106121 mac 106121 bytes_out 0 106121 bytes_in 0 106121 station_ip 188.245.91.123 106121 port 4 106121 unique_id port 106122 username zare 106122 mac 106122 bytes_out 0 106122 bytes_in 0 106122 station_ip 188.245.91.123 106122 port 4 106122 unique_id port 106124 username ayobi 106124 kill_reason Another user logged on this global unique id 106124 mac 106124 bytes_out 0 106124 bytes_in 0 106124 station_ip 83.123.196.52 106124 port 9 106124 unique_id port 106125 username mehdizare 106125 mac 106125 bytes_out 176623 106125 bytes_in 97026 106125 station_ip 5.119.206.12 106125 port 13 106125 unique_id port 106125 remote_ip 10.8.0.90 106131 username mehdizare 106131 mac 106131 bytes_out 26550 106131 bytes_in 28768 106131 station_ip 5.119.206.12 106131 port 11 106131 unique_id port 106131 remote_ip 10.8.0.90 106136 username mehdizare 106136 mac 106136 bytes_out 93325 106136 bytes_in 195276 106136 station_ip 5.119.206.12 106136 port 10 106136 unique_id port 106136 remote_ip 10.8.0.90 106139 username mehdizare 106139 mac 106139 bytes_out 0 106139 bytes_in 0 106139 station_ip 5.119.206.12 106139 port 3 106139 unique_id port 106139 remote_ip 10.8.1.42 106145 username morteza 106145 mac 106145 bytes_out 26147 106145 bytes_in 75253 106145 station_ip 83.123.57.144 106145 port 15 106145 unique_id port 106145 remote_ip 10.8.0.46 106147 username aminvpn 106147 kill_reason Wrong password 106147 unique_id port 106147 bytes_out 0 106147 bytes_in 0 106147 station_ip 31.57.142.27 106147 port 15728792 106147 nas_port_type Virtual 106150 username aminvpn 106150 unique_id port 106150 terminate_cause User-Request 106150 bytes_out 2500792 106150 bytes_in 155741087 106150 station_ip 5.120.50.197 106150 port 15728791 106150 nas_port_type Virtual 106132 port 10 106132 unique_id port 106134 username musa 106134 mac 106134 bytes_out 0 106134 bytes_in 0 106134 station_ip 89.199.113.49 106134 port 14 106134 unique_id port 106137 username houshang 106137 mac 106137 bytes_out 1146451 106137 bytes_in 7195002 106137 station_ip 5.119.17.123 106137 port 15 106137 unique_id port 106137 remote_ip 10.8.0.22 106140 username ayobi 106140 mac 106140 bytes_out 50091 106140 bytes_in 34056 106140 station_ip 37.27.50.83 106140 port 13 106140 unique_id port 106140 remote_ip 10.8.0.126 106144 username malekpoir 106144 mac 106144 bytes_out 0 106144 bytes_in 0 106144 station_ip 5.119.21.231 106144 port 4 106144 unique_id port 106144 remote_ip 10.8.1.54 106148 username houshang 106148 mac 106148 bytes_out 212411 106148 bytes_in 101596 106148 station_ip 5.119.17.123 106148 port 13 106148 unique_id port 106148 remote_ip 10.8.0.22 106149 username mirzaei 106149 mac 106149 bytes_out 877808 106149 bytes_in 7390557 106149 station_ip 5.119.201.131 106149 port 9 106149 unique_id port 106149 remote_ip 10.8.0.66 106153 username musa 106153 mac 106153 bytes_out 1427732 106153 bytes_in 7906297 106153 station_ip 5.52.247.154 106153 port 11 106153 unique_id port 106153 remote_ip 10.8.0.6 106156 username morteza 106156 mac 106156 bytes_out 0 106156 bytes_in 0 106156 station_ip 83.123.37.160 106156 port 5 106156 unique_id port 106156 remote_ip 10.8.1.62 106157 username abbasaskari 106157 mac 106157 bytes_out 0 106157 bytes_in 0 106157 station_ip 37.129.58.164 106157 port 11 106157 unique_id port 106157 remote_ip 10.8.0.10 106159 username aminvpn 106159 mac 106159 bytes_out 254181 106159 bytes_in 559732 106159 station_ip 37.129.41.73 106159 port 16 106159 unique_id port 106159 remote_ip 10.8.0.14 106161 username avaanna 106161 mac 106161 bytes_out 2214526 106161 bytes_in 35620286 106161 station_ip 83.123.24.119 106161 port 10 106161 unique_id port 106161 remote_ip 10.8.0.98 106162 username hashtadani 106162 unique_id port 106162 terminate_cause Lost-Carrier 106162 bytes_out 2335398 106162 bytes_in 44419961 106162 station_ip 5.202.133.240 106162 port 15728793 106162 nas_port_type Virtual 106162 remote_ip 5.5.5.55 106163 username morteza 106163 mac 106163 bytes_out 0 106163 bytes_in 0 106163 station_ip 83.123.158.32 106163 port 4 106163 unique_id port 106163 remote_ip 10.8.1.62 106165 username aminvpn 106165 kill_reason Another user logged on this global unique id 106165 mac 106165 bytes_out 0 106165 bytes_in 0 106165 station_ip 83.123.90.90 106165 port 9 106165 unique_id port 106165 remote_ip 10.8.0.14 106167 username aminvpn 106167 mac 106167 bytes_out 0 106167 bytes_in 0 106167 station_ip 83.123.90.90 106167 port 9 106167 unique_id port 106169 username mehdizare 106169 mac 106169 bytes_out 0 106169 bytes_in 0 106169 station_ip 5.119.206.12 106169 port 3 106169 unique_id port 106169 remote_ip 10.8.1.42 106170 username mirzaei 106170 mac 106170 bytes_out 666358 106170 bytes_in 4444075 106170 station_ip 5.119.201.131 106170 port 10 106170 unique_id port 106170 remote_ip 10.8.0.66 106172 username avaanna 106172 mac 106172 bytes_out 0 106172 bytes_in 0 106172 station_ip 83.123.24.119 106172 port 11 106172 unique_id port 106172 remote_ip 10.8.0.98 106174 username hashtadani 106174 unique_id port 106174 terminate_cause User-Request 106174 bytes_out 952867 106174 bytes_in 16592389 106174 station_ip 5.202.133.240 106174 port 15728795 106174 nas_port_type Virtual 106135 station_ip 83.123.196.52 106135 port 9 106135 unique_id port 106138 username ayobi 106138 mac 106138 bytes_out 0 106138 bytes_in 0 106138 station_ip 83.123.196.52 106138 port 9 106138 unique_id port 106141 username morteza 106141 mac 106141 bytes_out 144291 106141 bytes_in 582023 106141 station_ip 83.123.57.144 106141 port 9 106141 unique_id port 106141 remote_ip 10.8.0.46 106142 username abbasaskari 106142 mac 106142 bytes_out 0 106142 bytes_in 0 106142 station_ip 37.129.58.164 106142 port 9 106142 unique_id port 106142 remote_ip 10.8.0.10 106143 username houshang 106143 mac 106143 bytes_out 322288 106143 bytes_in 2216616 106143 station_ip 5.119.17.123 106143 port 13 106143 unique_id port 106143 remote_ip 10.8.0.22 106146 username forozande 106146 mac 106146 bytes_out 912824 106146 bytes_in 11670145 106146 station_ip 83.123.22.116 106146 port 9 106146 unique_id port 106146 remote_ip 10.8.0.74 106151 username tahmasebi 106151 kill_reason Another user logged on this global unique id 106151 mac 106151 bytes_out 0 106151 bytes_in 0 106151 station_ip 5.119.42.112 106151 port 2 106151 unique_id port 106155 username alipour 106155 kill_reason Another user logged on this global unique id 106155 mac 106155 bytes_out 0 106155 bytes_in 0 106155 station_ip 37.129.113.9 106155 port 2 106155 unique_id port 106158 username mahdiyehalizadeh 106158 mac 106158 bytes_out 0 106158 bytes_in 0 106158 station_ip 37.129.169.91 106158 port 9 106158 unique_id port 106158 remote_ip 10.8.0.82 106166 username abbasaskari 106166 mac 106166 bytes_out 0 106166 bytes_in 0 106166 station_ip 37.129.58.164 106166 port 16 106166 unique_id port 106166 remote_ip 10.8.0.10 106168 username houshang 106168 mac 106168 bytes_out 98887 106168 bytes_in 337165 106168 station_ip 5.119.17.123 106168 port 15 106168 unique_id port 106168 remote_ip 10.8.0.22 106175 username mohammadreza 106175 mac 106175 bytes_out 0 106175 bytes_in 0 106175 station_ip 5.120.178.221 106175 port 11 106175 unique_id port 106175 remote_ip 10.8.0.94 106177 username mohammadreza 106177 mac 106177 bytes_out 0 106177 bytes_in 0 106177 station_ip 5.120.64.199 106177 port 11 106177 unique_id port 106177 remote_ip 10.8.0.94 106178 username ahmadipour 106178 unique_id port 106178 terminate_cause Lost-Carrier 106178 bytes_out 107600 106178 bytes_in 382141 106178 station_ip 83.123.193.244 106178 port 15728796 106178 nas_port_type Virtual 106178 remote_ip 5.5.5.51 106181 username mohammadmahdi 106181 mac 106181 bytes_out 0 106181 bytes_in 0 106181 station_ip 5.119.241.165 106181 port 11 106181 unique_id port 106181 remote_ip 10.8.0.54 106183 username arman1 106183 kill_reason Another user logged on this global unique id 106183 mac 106183 bytes_out 0 106183 bytes_in 0 106183 station_ip 5.120.48.184 106183 port 10 106183 unique_id port 106183 remote_ip 10.8.0.110 106184 username tahmasebi 106184 kill_reason Another user logged on this global unique id 106184 mac 106184 bytes_out 0 106184 bytes_in 0 106184 station_ip 5.119.42.112 106184 port 2 106184 unique_id port 106185 username ayobi 106185 kill_reason Another user logged on this global unique id 106185 mac 106185 bytes_out 0 106185 bytes_in 0 106185 station_ip 83.123.196.52 106185 port 14 106185 unique_id port 106188 username aminvpn 106188 kill_reason Wrong password 106188 unique_id port 106188 bytes_out 0 106188 bytes_in 0 106188 station_ip 31.57.142.27 106188 port 15728798 106188 nas_port_type Virtual 106191 username mirzaei 106191 mac 106191 bytes_out 87095 106191 bytes_in 118407 106150 remote_ip 5.5.5.56 106152 username malekpoir 106152 mac 106152 bytes_out 0 106152 bytes_in 0 106152 station_ip 5.119.21.231 106152 port 4 106152 unique_id port 106152 remote_ip 10.8.1.54 106154 username mirzaei 106154 mac 106154 bytes_out 146261 106154 bytes_in 344140 106154 station_ip 5.119.201.131 106154 port 13 106154 unique_id port 106154 remote_ip 10.8.0.66 106160 username mirzaei 106160 mac 106160 bytes_out 950749 106160 bytes_in 13107868 106160 station_ip 5.119.201.131 106160 port 11 106160 unique_id port 106160 remote_ip 10.8.0.66 106164 username ayobi 106164 kill_reason Another user logged on this global unique id 106164 mac 106164 bytes_out 0 106164 bytes_in 0 106164 station_ip 83.123.196.52 106164 port 14 106164 unique_id port 106164 remote_ip 10.8.0.126 106171 username ayobi 106171 kill_reason Another user logged on this global unique id 106171 mac 106171 bytes_out 0 106171 bytes_in 0 106171 station_ip 83.123.196.52 106171 port 14 106171 unique_id port 106173 username mahdiyehalizadeh 106173 mac 106173 bytes_out 0 106173 bytes_in 0 106173 station_ip 37.129.169.91 106173 port 13 106173 unique_id port 106173 remote_ip 10.8.0.82 106176 username ayobi 106176 kill_reason Another user logged on this global unique id 106176 mac 106176 bytes_out 0 106176 bytes_in 0 106176 station_ip 83.123.196.52 106176 port 14 106176 unique_id port 106180 username ayobi 106180 kill_reason Another user logged on this global unique id 106180 mac 106180 bytes_out 0 106180 bytes_in 0 106180 station_ip 83.123.196.52 106180 port 14 106180 unique_id port 106182 username ayobi 106182 kill_reason Another user logged on this global unique id 106182 mac 106182 bytes_out 0 106182 bytes_in 0 106182 station_ip 83.123.196.52 106182 port 14 106182 unique_id port 106190 username arman1 106190 kill_reason Another user logged on this global unique id 106190 mac 106190 bytes_out 0 106190 bytes_in 0 106190 station_ip 5.120.48.184 106190 port 10 106190 unique_id port 106192 username mohammadreza 106192 mac 106192 bytes_out 0 106192 bytes_in 0 106192 station_ip 5.233.46.34 106192 port 15 106192 unique_id port 106192 remote_ip 10.8.0.94 106195 username hashtadani 106195 unique_id port 106195 terminate_cause User-Request 106195 bytes_out 2175136 106195 bytes_in 27862201 106195 station_ip 5.202.133.240 106195 port 15728797 106195 nas_port_type Virtual 106195 remote_ip 5.5.5.50 106197 username aminvpn 106197 unique_id port 106197 terminate_cause Lost-Carrier 106197 bytes_out 4949690 106197 bytes_in 293079624 106197 station_ip 5.120.50.197 106197 port 15728794 106197 nas_port_type Virtual 106197 remote_ip 5.5.5.54 106199 username ayobi 106199 kill_reason Another user logged on this global unique id 106199 mac 106199 bytes_out 0 106199 bytes_in 0 106199 station_ip 83.123.196.52 106199 port 14 106199 unique_id port 106200 username forozande 106200 mac 106200 bytes_out 0 106200 bytes_in 0 106200 station_ip 83.123.32.64 106200 port 11 106200 unique_id port 106200 remote_ip 10.8.0.74 106202 username avaanna 106228 bytes_in 0 106202 kill_reason Another user logged on this global unique id 106202 mac 106202 bytes_out 0 106202 bytes_in 0 106202 station_ip 83.122.20.181 106202 port 15 106202 unique_id port 106202 remote_ip 10.8.0.98 106208 username amir 106208 mac 106208 bytes_out 0 106208 bytes_in 0 106208 station_ip 46.225.208.61 106208 port 10 106208 unique_id port 106208 remote_ip 10.8.0.50 106209 username mehdizare 106209 mac 106209 bytes_out 169541 106209 bytes_in 193862 106209 station_ip 5.119.206.12 106209 port 9 106209 unique_id port 106209 remote_ip 10.8.0.90 106174 remote_ip 5.5.5.53 106179 username tahmasebi 106179 kill_reason Another user logged on this global unique id 106179 mac 106179 bytes_out 0 106179 bytes_in 0 106179 station_ip 5.119.42.112 106179 port 2 106179 unique_id port 106186 username kamali1 106186 mac 106186 bytes_out 133142 106186 bytes_in 217617 106186 station_ip 5.119.46.179 106186 port 11 106186 unique_id port 106186 remote_ip 10.8.0.70 106187 username tahmasebi 106187 kill_reason Another user logged on this global unique id 106187 mac 106187 bytes_out 0 106187 bytes_in 0 106187 station_ip 5.119.42.112 106187 port 2 106187 unique_id port 106189 username aminvpn 106189 kill_reason Wrong password 106189 unique_id port 106189 bytes_out 0 106189 bytes_in 0 106189 station_ip 31.57.142.27 106189 port 15728799 106189 nas_port_type Virtual 106193 username tahmasebi 106193 kill_reason Another user logged on this global unique id 106193 mac 106193 bytes_out 0 106193 bytes_in 0 106193 station_ip 5.119.42.112 106193 port 2 106193 unique_id port 106198 username arman1 106198 mac 106198 bytes_out 0 106198 bytes_in 0 106198 station_ip 5.120.48.184 106198 port 10 106198 unique_id port 106204 username amir 106204 mac 106204 bytes_out 2074568 106204 bytes_in 36441788 106204 station_ip 46.225.208.61 106204 port 13 106204 unique_id port 106204 remote_ip 10.8.0.50 106205 username amir 106205 mac 106205 bytes_out 0 106205 bytes_in 0 106205 station_ip 46.225.208.61 106205 port 11 106205 unique_id port 106205 remote_ip 10.8.0.50 106206 username askari 106206 mac 106206 bytes_out 878405 106206 bytes_in 11509157 106206 station_ip 5.119.216.111 106206 port 10 106206 unique_id port 106206 remote_ip 10.8.0.62 106210 username amir 106210 mac 106210 bytes_out 0 106210 bytes_in 0 106210 station_ip 46.225.208.61 106210 port 10 106210 unique_id port 106210 remote_ip 10.8.0.50 106212 username tahmasebi 106212 mac 106212 bytes_out 0 106212 bytes_in 0 106212 station_ip 5.119.42.112 106212 port 2 106212 unique_id port 106214 username amir 106214 mac 106214 bytes_out 17252 106214 bytes_in 58663 106214 station_ip 46.225.208.61 106214 port 10 106214 unique_id port 106214 remote_ip 10.8.0.50 106216 username mehdizare 106216 mac 106216 bytes_out 108285 106216 bytes_in 30605 106216 station_ip 5.119.206.12 106216 port 13 106216 unique_id port 106216 remote_ip 10.8.0.90 106221 username abbasaskari 106221 mac 106221 bytes_out 0 106221 bytes_in 0 106221 station_ip 37.129.63.160 106221 port 13 106221 unique_id port 106221 remote_ip 10.8.0.10 106226 username amir 106226 mac 106226 bytes_out 22004 106226 bytes_in 86157 106226 station_ip 46.225.208.61 106226 port 14 106226 unique_id port 106226 remote_ip 10.8.0.50 106227 username amir 106227 mac 106227 bytes_out 0 106227 bytes_in 0 106227 station_ip 46.225.208.61 106227 port 14 106227 unique_id port 106227 remote_ip 10.8.0.50 106228 username amir 106228 mac 106228 bytes_out 0 106228 station_ip 46.225.208.61 106228 port 14 106228 unique_id port 106228 remote_ip 10.8.0.50 106231 username avaanna 106231 mac 106231 bytes_out 0 106231 bytes_in 0 106231 station_ip 83.122.20.181 106231 port 15 106231 unique_id port 106233 username amir 106233 mac 106233 bytes_out 0 106233 bytes_in 0 106233 station_ip 46.225.208.61 106233 port 14 106233 unique_id port 106233 remote_ip 10.8.0.50 106235 username aminvpn 106235 unique_id port 106235 terminate_cause Lost-Carrier 106235 bytes_out 266992 106235 bytes_in 4275000 106191 station_ip 5.119.201.131 106191 port 11 106191 unique_id port 106191 remote_ip 10.8.0.66 106194 username arman1 106194 kill_reason Another user logged on this global unique id 106194 mac 106194 bytes_out 0 106194 bytes_in 0 106194 station_ip 5.120.48.184 106194 port 10 106194 unique_id port 106196 username abbasaskari 106196 mac 106196 bytes_out 0 106196 bytes_in 0 106196 station_ip 37.129.119.52 106196 port 15 106196 unique_id port 106196 remote_ip 10.8.0.10 106201 username tahmasebi 106201 kill_reason Another user logged on this global unique id 106201 mac 106201 bytes_out 0 106201 bytes_in 0 106201 station_ip 5.119.42.112 106201 port 2 106201 unique_id port 106203 username ayobi 106203 mac 106203 bytes_out 0 106203 bytes_in 0 106203 station_ip 83.123.196.52 106203 port 14 106203 unique_id port 106207 username amir 106207 mac 106207 bytes_out 0 106207 bytes_in 0 106207 station_ip 46.225.208.61 106207 port 11 106207 unique_id port 106207 remote_ip 10.8.0.50 106211 username avaanna 106211 kill_reason Another user logged on this global unique id 106211 mac 106211 bytes_out 0 106211 bytes_in 0 106211 station_ip 83.122.20.181 106211 port 15 106211 unique_id port 106222 username amir 106222 mac 106222 bytes_out 0 106222 bytes_in 0 106222 station_ip 46.225.208.61 106222 port 14 106222 unique_id port 106222 remote_ip 10.8.0.50 106224 username amir 106224 mac 106224 bytes_out 0 106224 bytes_in 0 106224 station_ip 46.225.208.61 106224 port 14 106224 unique_id port 106224 remote_ip 10.8.0.50 106225 username amir 106225 mac 106225 bytes_out 0 106225 bytes_in 0 106225 station_ip 46.225.208.61 106225 port 14 106225 unique_id port 106225 remote_ip 10.8.0.50 106229 username aminvpn 106229 unique_id port 106229 terminate_cause Lost-Carrier 106229 bytes_out 3399905 106229 bytes_in 55687888 106229 station_ip 5.120.50.197 106229 port 15728800 106229 nas_port_type Virtual 106229 remote_ip 5.5.5.49 106230 username morteza 106230 kill_reason Another user logged on this global unique id 106230 mac 106230 bytes_out 0 106230 bytes_in 0 106230 station_ip 83.123.201.40 106230 port 13 106230 unique_id port 106230 remote_ip 10.8.0.46 106236 username morteza 106236 kill_reason Another user logged on this global unique id 106236 mac 106236 bytes_out 0 106236 bytes_in 0 106236 station_ip 83.123.201.40 106236 port 13 106236 unique_id port 106238 username amir 106238 mac 106238 bytes_out 38381 106238 bytes_in 120086 106238 station_ip 46.225.208.61 106238 port 14 106238 unique_id port 106238 remote_ip 10.8.0.50 106239 username amir 106239 mac 106239 bytes_out 26113 106239 bytes_in 156484 106239 station_ip 46.225.208.61 106239 port 14 106239 unique_id port 106239 remote_ip 10.8.0.50 106242 username amir 106242 mac 106242 bytes_out 0 106242 bytes_in 0 106242 station_ip 46.225.208.61 106242 port 14 106242 unique_id port 106242 remote_ip 10.8.0.50 106244 username amir 106244 mac 106244 bytes_out 0 106244 bytes_in 0 106244 station_ip 46.225.208.61 106244 port 14 106244 unique_id port 106244 remote_ip 10.8.0.50 106245 username alipour 106245 mac 106245 bytes_out 331742642 106245 bytes_in 1152514361 106245 station_ip 37.129.113.9 106245 port 2 106245 unique_id port 106245 remote_ip 10.8.1.50 106246 username alipour 106246 mac 106246 bytes_out 331743488 106246 bytes_in 1152515255 106246 station_ip 37.129.113.9 106246 port 2 106246 unique_id port 106246 remote_ip 10.8.1.50 106252 username avaanna 106252 mac 106252 bytes_out 14919 106252 bytes_in 100695 106213 username forozande 106213 mac 106213 bytes_out 0 106213 bytes_in 0 106213 station_ip 83.123.175.203 106213 port 9 106213 unique_id port 106213 remote_ip 10.8.0.74 106215 username hamid.e 106215 unique_id port 106215 terminate_cause User-Request 106215 bytes_out 15194046 106215 bytes_in 216761482 106215 station_ip 37.27.23.191 106215 port 15728790 106215 nas_port_type Virtual 106215 remote_ip 5.5.5.58 106217 username amir 106217 mac 106217 bytes_out 20462 106217 bytes_in 74850 106217 station_ip 46.225.208.61 106217 port 9 106217 unique_id port 106217 remote_ip 10.8.0.50 106218 username amir 106218 mac 106218 bytes_out 15536 106218 bytes_in 54335 106218 station_ip 46.225.208.61 106218 port 9 106218 unique_id port 106218 remote_ip 10.8.0.50 106219 username amir 106219 mac 106219 bytes_out 0 106219 bytes_in 0 106219 station_ip 46.225.208.61 106219 port 13 106219 unique_id port 106219 remote_ip 10.8.0.50 106220 username amir 106220 mac 106220 bytes_out 0 106220 bytes_in 0 106220 station_ip 46.225.208.61 106220 port 13 106220 unique_id port 106220 remote_ip 10.8.0.50 106223 username amir 106223 mac 106223 bytes_out 0 106223 bytes_in 0 106223 station_ip 46.225.208.61 106223 port 13 106223 unique_id port 106223 remote_ip 10.8.0.50 106232 username amir 106232 mac 106232 bytes_out 39078 106232 bytes_in 135092 106232 station_ip 46.225.208.61 106232 port 14 106232 unique_id port 106232 remote_ip 10.8.0.50 106234 username avaanna 106234 mac 106234 bytes_out 0 106234 bytes_in 0 106234 station_ip 37.129.149.47 106234 port 15 106234 unique_id port 106234 remote_ip 10.8.0.98 106237 username amir 106237 mac 106237 bytes_out 0 106237 bytes_in 0 106237 station_ip 46.225.208.61 106237 port 14 106237 unique_id port 106237 remote_ip 10.8.0.50 106240 username amir 106240 mac 106240 bytes_out 0 106240 bytes_in 0 106240 station_ip 46.225.208.61 106240 port 14 106240 unique_id port 106240 remote_ip 10.8.0.50 106241 username houshang 106241 mac 106241 bytes_out 0 106241 bytes_in 0 106241 station_ip 5.119.17.123 106241 port 16 106241 unique_id port 106241 remote_ip 10.8.0.22 106243 username ayobi 106243 kill_reason Another user logged on this global unique id 106243 mac 106243 bytes_out 0 106243 bytes_in 0 106243 station_ip 37.27.25.37 106243 port 11 106243 unique_id port 106243 remote_ip 10.8.0.126 106247 username amir 106247 mac 106247 bytes_out 51555 106247 bytes_in 174665 106247 station_ip 46.225.208.61 106247 port 14 106247 unique_id port 106247 remote_ip 10.8.0.50 106248 username amir 106248 mac 106248 bytes_out 0 106248 bytes_in 0 106248 station_ip 46.225.208.61 106248 port 14 106248 unique_id port 106248 remote_ip 10.8.0.50 106251 username amir 106251 mac 106251 bytes_out 13097 106251 bytes_in 76309 106251 station_ip 46.225.208.61 106251 port 14 106251 unique_id port 106251 remote_ip 10.8.0.50 106254 username morteza 106254 mac 106254 bytes_out 1616831 106254 bytes_in 20071433 106254 station_ip 83.123.201.40 106254 port 13 106254 unique_id port 106254 remote_ip 10.8.0.46 106257 username morteza 106257 mac 106257 bytes_out 0 106257 bytes_in 0 106257 station_ip 83.123.201.40 106257 port 15 106257 unique_id port 106257 remote_ip 10.8.0.46 106262 username ayobi 106262 kill_reason Another user logged on this global unique id 106262 mac 106262 bytes_out 0 106262 bytes_in 0 106262 station_ip 37.27.25.37 106262 port 11 106262 unique_id port 106264 username aminvpn 106235 station_ip 5.120.50.197 106235 port 15728801 106235 nas_port_type Virtual 106235 remote_ip 5.5.5.48 106249 username morteza 106249 mac 106249 bytes_out 0 106249 bytes_in 0 106249 station_ip 83.123.201.40 106249 port 13 106249 unique_id port 106250 username amir 106250 mac 106250 bytes_out 0 106250 bytes_in 0 106250 station_ip 46.225.208.61 106250 port 13 106250 unique_id port 106250 remote_ip 10.8.0.50 106253 username houshang 106253 mac 106253 bytes_out 75754 106253 bytes_in 156247 106253 station_ip 5.119.17.123 106253 port 15 106253 unique_id port 106253 remote_ip 10.8.0.22 106255 username alipour 106255 mac 106255 bytes_out 331840299 106255 bytes_in 1152763843 106255 station_ip 37.129.113.9 106255 port 2 106255 unique_id port 106255 remote_ip 10.8.1.50 106258 username forozande 106258 mac 106258 bytes_out 859962 106258 bytes_in 10586422 106258 station_ip 83.122.169.94 106258 port 14 106258 unique_id port 106258 remote_ip 10.8.0.74 106261 username morteza 106261 mac 106261 bytes_out 8907 106261 bytes_in 9188 106261 station_ip 83.123.201.40 106261 port 12 106261 unique_id port 106261 remote_ip 10.8.0.46 106263 username arabpour 106263 unique_id port 106263 terminate_cause Lost-Carrier 106263 bytes_out 68897 106263 bytes_in 432461 106263 station_ip 5.215.105.64 106263 port 15728803 106263 nas_port_type Virtual 106263 remote_ip 5.5.5.45 106266 username alipour 106266 mac 106266 bytes_out 64874 106266 bytes_in 82717 106266 station_ip 37.129.113.9 106266 port 2 106266 unique_id port 106266 remote_ip 10.8.1.50 106269 username kamali1 106269 mac 106269 bytes_out 0 106269 bytes_in 0 106269 station_ip 5.119.153.181 106269 port 10 106269 unique_id port 106269 remote_ip 10.8.0.70 106271 username houshang 106271 mac 106271 bytes_out 48816 106271 bytes_in 74434 106271 station_ip 5.119.17.123 106271 port 13 106271 unique_id port 106271 remote_ip 10.8.0.22 106274 username mahdiyehalizadeh 106274 mac 106274 bytes_out 710684 106274 bytes_in 9983708 106274 station_ip 37.129.169.91 106274 port 12 106274 unique_id port 106274 remote_ip 10.8.0.82 106277 username mohammadmahdi 106277 mac 106277 bytes_out 0 106277 bytes_in 0 106277 station_ip 5.119.241.165 106277 port 13 106277 unique_id port 106278 username ahmadi 106278 unique_id port 106278 terminate_cause User-Request 106278 bytes_out 152444 106278 bytes_in 1648678 106278 station_ip 83.123.237.141 106278 port 15728808 106278 nas_port_type Virtual 106278 remote_ip 5.5.5.37 106282 username bcboard 106282 unique_id port 106282 terminate_cause User-Request 106282 bytes_out 332983 106282 bytes_in 5342698 106282 station_ip 113.203.38.153 106282 port 15728807 106282 nas_port_type Virtual 106282 remote_ip 5.5.5.39 106287 username amir 106287 mac 106287 bytes_out 0 106287 bytes_in 0 106287 station_ip 46.225.208.61 106287 port 16 106287 unique_id port 106288 username ayobi 106288 kill_reason Another user logged on this global unique id 106288 mac 106288 bytes_out 0 106288 bytes_in 0 106288 station_ip 37.27.25.37 106288 port 11 106288 unique_id port 106289 username rezasekonji 106289 mac 106289 bytes_out 49623 106289 bytes_in 508435 106289 station_ip 37.129.219.33 106289 port 13 106289 unique_id port 106289 remote_ip 10.8.0.130 106291 username amirabbas 106291 unique_id port 106291 terminate_cause User-Request 106291 bytes_out 7116794 106291 bytes_in 176573480 106291 station_ip 37.27.9.251 106291 port 15728804 106291 nas_port_type Virtual 106291 remote_ip 5.5.5.44 106294 username ayobi 106294 kill_reason Another user logged on this global unique id 106252 station_ip 37.129.149.47 106252 port 14 106252 unique_id port 106252 remote_ip 10.8.0.98 106256 username khalili 106256 mac 106256 bytes_out 3828666 106256 bytes_in 33413066 106256 station_ip 5.120.82.0 106256 port 12 106256 unique_id port 106256 remote_ip 10.8.0.86 106259 username avaanna 106259 mac 106259 bytes_out 172996 106259 bytes_in 317841 106259 station_ip 37.129.149.47 106259 port 17 106259 unique_id port 106259 remote_ip 10.8.0.98 106260 username abbasaskari 106260 mac 106260 bytes_out 0 106260 bytes_in 0 106260 station_ip 37.129.95.100 106260 port 13 106260 unique_id port 106260 remote_ip 10.8.0.10 106267 username alinezhad 106267 unique_id port 106267 terminate_cause User-Request 106267 bytes_out 0 106267 bytes_in 0 106267 station_ip 5.202.135.20 106267 port 15728806 106267 nas_port_type Virtual 106267 remote_ip 5.5.5.41 106268 username ayobi 106268 kill_reason Another user logged on this global unique id 106268 mac 106268 bytes_out 0 106268 bytes_in 0 106268 station_ip 37.27.25.37 106268 port 11 106268 unique_id port 106270 username alipour 106270 mac 106270 bytes_out 331893888 106270 bytes_in 1152933240 106270 station_ip 37.129.113.9 106270 port 2 106270 unique_id port 106270 remote_ip 10.8.1.50 106273 username mohammadmahdi 106273 mac 106273 bytes_out 2705213 106273 bytes_in 38125738 106273 station_ip 5.119.241.165 106273 port 10 106273 unique_id port 106273 remote_ip 10.8.0.54 106276 username houshang 106276 mac 106276 bytes_out 0 106276 bytes_in 0 106276 station_ip 5.119.17.123 106276 port 5 106276 unique_id port 106276 remote_ip 10.8.1.70 106279 username aminvpn 106279 mac 106279 bytes_out 3116558 106279 bytes_in 37783519 106279 station_ip 37.129.36.149 106279 port 9 106279 unique_id port 106279 remote_ip 10.8.0.14 106281 username aminvpn 106281 mac 106281 bytes_out 0 106281 bytes_in 0 106281 station_ip 37.129.1.249 106281 port 12 106281 unique_id port 106281 remote_ip 10.8.0.14 106285 username aminvpn 106285 mac 106285 bytes_out 0 106285 bytes_in 0 106285 station_ip 37.129.36.149 106285 port 12 106285 unique_id port 106285 remote_ip 10.8.0.14 106286 username aminvpn 106286 mac 106286 bytes_out 0 106286 bytes_in 0 106286 station_ip 37.129.1.249 106286 port 10 106286 unique_id port 106286 remote_ip 10.8.0.14 106292 username alireza 106292 unique_id port 106292 terminate_cause Lost-Carrier 106292 bytes_out 3151814 106292 bytes_in 37579000 106292 station_ip 5.120.89.244 106292 port 15728805 106292 nas_port_type Virtual 106292 remote_ip 5.5.5.43 106293 username alipour 106293 mac 106293 bytes_out 0 106293 bytes_in 0 106293 station_ip 37.129.113.9 106293 port 2 106293 unique_id port 106293 remote_ip 10.8.1.50 106295 username mehdizare 106295 mac 106295 bytes_out 0 106295 bytes_in 0 106295 station_ip 5.119.206.12 106295 port 4 106295 unique_id port 106295 remote_ip 10.8.1.42 106300 username aminvpn 106300 mac 106300 bytes_out 0 106300 bytes_in 0 106300 station_ip 37.129.1.249 106300 port 4 106300 unique_id port 106300 remote_ip 10.8.1.6 106303 username aminvpn 106303 mac 106303 bytes_out 0 106303 bytes_in 0 106303 station_ip 5.120.40.98 106303 port 5 106303 unique_id port 106303 remote_ip 10.8.1.6 106305 username aminvpn 106305 mac 106305 bytes_out 0 106305 bytes_in 0 106305 station_ip 37.129.1.249 106305 port 4 106305 unique_id port 106305 remote_ip 10.8.1.6 106307 username aminvpn 106307 mac 106307 bytes_out 0 106307 bytes_in 0 106307 station_ip 37.129.1.249 106264 unique_id port 106264 terminate_cause Lost-Carrier 106264 bytes_out 2904839 106264 bytes_in 45973210 106264 station_ip 5.120.50.197 106264 port 15728802 106264 nas_port_type Virtual 106264 remote_ip 5.5.5.47 106265 username mehdizare 106265 mac 106265 bytes_out 176894 106265 bytes_in 126983 106265 station_ip 5.119.206.12 106265 port 10 106265 unique_id port 106265 remote_ip 10.8.0.90 106272 username amir 106272 kill_reason Another user logged on this global unique id 106272 mac 106272 bytes_out 0 106272 bytes_in 0 106272 station_ip 46.225.208.61 106272 port 16 106272 unique_id port 106272 remote_ip 10.8.0.50 106275 username mohammadmahdi 106275 kill_reason Another user logged on this global unique id 106275 mac 106275 bytes_out 0 106275 bytes_in 0 106275 station_ip 5.119.241.165 106275 port 13 106275 unique_id port 106275 remote_ip 10.8.0.54 106280 username houshang 106280 mac 106280 bytes_out 39270 106280 bytes_in 80234 106280 station_ip 5.119.17.123 106280 port 10 106280 unique_id port 106280 remote_ip 10.8.0.22 106283 username aminvpn 106283 mac 106283 bytes_out 0 106283 bytes_in 0 106283 station_ip 37.129.36.149 106283 port 9 106283 unique_id port 106283 remote_ip 10.8.0.14 106284 username aminvpn 106284 mac 106284 bytes_out 0 106284 bytes_in 0 106284 station_ip 37.129.1.249 106284 port 10 106284 unique_id port 106284 remote_ip 10.8.0.14 106290 username rezasekonji 106290 mac 106290 bytes_out 0 106290 bytes_in 0 106290 station_ip 37.129.219.33 106290 port 13 106290 unique_id port 106290 remote_ip 10.8.0.130 106296 username rezasekonji 106296 mac 106296 bytes_out 0 106296 bytes_in 0 106296 station_ip 37.129.219.33 106296 port 14 106296 unique_id port 106296 remote_ip 10.8.0.130 106298 username aminvpn 106298 mac 106298 bytes_out 0 106298 bytes_in 0 106298 station_ip 37.129.1.249 106298 port 5 106298 unique_id port 106298 remote_ip 10.8.1.6 106302 username aminvpn 106302 mac 106302 bytes_out 0 106302 bytes_in 0 106302 station_ip 37.129.1.249 106302 port 4 106302 unique_id port 106302 remote_ip 10.8.1.6 106304 username amir 106304 mac 106304 bytes_out 1458669 106304 bytes_in 15931469 106304 station_ip 46.225.208.61 106304 port 10 106304 unique_id port 106304 remote_ip 10.8.0.50 106306 username aminvpn 106306 mac 106306 bytes_out 0 106306 bytes_in 0 106306 station_ip 5.120.40.98 106306 port 5 106306 unique_id port 106306 remote_ip 10.8.1.6 106308 username ahmadipour 106308 unique_id port 106308 terminate_cause Lost-Carrier 106308 bytes_out 4456639 106308 bytes_in 97598159 106308 station_ip 83.123.151.236 106308 port 15728809 106308 nas_port_type Virtual 106308 remote_ip 5.5.5.35 106312 username malekpoir 106312 kill_reason Another user logged on this global unique id 106312 mac 106312 bytes_out 0 106312 bytes_in 0 106312 station_ip 5.119.21.231 106312 port 3 106312 unique_id port 106312 remote_ip 10.8.1.54 106313 username aminvpn 106313 mac 106313 bytes_out 1429932 106313 bytes_in 18209868 106313 station_ip 37.129.36.149 106313 port 12 106313 unique_id port 106313 remote_ip 10.8.0.14 106316 username aminvpn 106316 mac 106316 bytes_out 0 106316 bytes_in 0 106316 station_ip 37.129.36.149 106316 port 12 106316 unique_id port 106316 remote_ip 10.8.0.14 106319 username amir 106319 mac 106319 bytes_out 0 106319 bytes_in 0 106319 station_ip 46.225.208.61 106319 port 10 106319 unique_id port 106319 remote_ip 10.8.0.50 106321 username amir 106321 mac 106321 bytes_out 25760 106321 bytes_in 128961 106321 station_ip 46.225.208.61 106294 mac 106294 bytes_out 0 106294 bytes_in 0 106294 station_ip 37.27.25.37 106294 port 11 106294 unique_id port 106297 username naeimeh 106297 kill_reason Another user logged on this global unique id 106297 mac 106297 bytes_out 0 106297 bytes_in 0 106297 station_ip 83.122.103.25 106297 port 9 106297 unique_id port 106297 remote_ip 10.8.0.78 106299 username alipour 106299 mac 106299 bytes_out 332994980 106299 bytes_in 1162425376 106299 station_ip 37.129.113.9 106299 port 2 106299 unique_id port 106299 remote_ip 10.8.1.50 106301 username aminvpn 106301 mac 106301 bytes_out 0 106301 bytes_in 0 106301 station_ip 5.120.40.98 106301 port 5 106301 unique_id port 106301 remote_ip 10.8.1.6 106310 username aminvpn 106310 mac 106310 bytes_out 0 106310 bytes_in 0 106310 station_ip 37.129.1.249 106310 port 4 106310 unique_id port 106310 remote_ip 10.8.1.6 106315 username amir 106315 mac 106315 bytes_out 0 106315 bytes_in 0 106315 station_ip 46.225.208.61 106315 port 10 106315 unique_id port 106315 remote_ip 10.8.0.50 106317 username aminvpn 106317 mac 106317 bytes_out 0 106317 bytes_in 0 106317 station_ip 37.129.1.249 106317 port 10 106317 unique_id port 106317 remote_ip 10.8.0.14 106320 username aminvpn 106320 mac 106320 bytes_out 0 106320 bytes_in 0 106320 station_ip 37.129.1.249 106320 port 16 106320 unique_id port 106320 remote_ip 10.8.0.14 106324 username amir 106324 mac 106324 bytes_out 11972 106324 bytes_in 69305 106324 station_ip 46.225.208.61 106324 port 10 106324 unique_id port 106324 remote_ip 10.8.0.50 106325 username mehdizare 106325 mac 106325 bytes_out 100004 106325 bytes_in 38855 106325 station_ip 5.119.206.12 106325 port 13 106325 unique_id port 106325 remote_ip 10.8.0.90 106326 username aminvpn 106326 mac 106326 bytes_out 38318 106326 bytes_in 179122 106326 station_ip 37.129.36.149 106326 port 15 106326 unique_id port 106326 remote_ip 10.8.0.14 106327 username aminvpn 106327 mac 106327 bytes_out 0 106327 bytes_in 0 106327 station_ip 37.129.1.249 106327 port 13 106327 unique_id port 106327 remote_ip 10.8.0.14 106331 username rezasekonji 106331 mac 106331 bytes_out 1040472 106331 bytes_in 13174993 106331 station_ip 37.129.219.33 106331 port 14 106331 unique_id port 106331 remote_ip 10.8.0.130 106334 username aminvpn 106334 mac 106334 bytes_out 0 106334 bytes_in 0 106334 station_ip 37.129.36.149 106334 port 14 106334 unique_id port 106334 remote_ip 10.8.0.14 106341 username rezasekonji 106341 mac 106341 bytes_out 0 106341 bytes_in 0 106341 station_ip 37.129.219.33 106341 port 10 106341 unique_id port 106341 remote_ip 10.8.0.130 106344 username aminvpn 106344 mac 106344 bytes_out 0 106344 bytes_in 0 106344 station_ip 37.129.1.249 106344 port 9 106344 unique_id port 106344 remote_ip 10.8.0.14 106346 username khalili 106346 kill_reason Another user logged on this global unique id 106346 mac 106346 bytes_out 0 106346 bytes_in 0 106346 station_ip 5.119.5.145 106346 port 12 106346 unique_id port 106347 username abbasaskari 106347 mac 106347 bytes_out 0 106347 bytes_in 0 106347 station_ip 37.129.46.176 106347 port 13 106347 unique_id port 106347 remote_ip 10.8.0.10 106351 username aminvpn 106351 mac 106351 bytes_out 0 106351 bytes_in 0 106351 station_ip 5.120.40.98 106351 port 5 106351 unique_id port 106353 username arash 106353 kill_reason Another user logged on this global unique id 106353 mac 106353 bytes_out 0 106353 bytes_in 0 106307 port 4 106307 unique_id port 106307 remote_ip 10.8.1.6 106309 username aminvpn 106309 mac 106309 bytes_out 0 106309 bytes_in 0 106309 station_ip 5.120.40.98 106309 port 5 106309 unique_id port 106309 remote_ip 10.8.1.6 106311 username amir 106311 mac 106311 bytes_out 0 106311 bytes_in 0 106311 station_ip 46.225.208.61 106311 port 10 106311 unique_id port 106311 remote_ip 10.8.0.50 106314 username aminvpn 106314 mac 106314 bytes_out 0 106314 bytes_in 0 106314 station_ip 37.129.1.249 106314 port 15 106314 unique_id port 106314 remote_ip 10.8.0.14 106318 username aminvpn 106318 mac 106318 bytes_out 0 106318 bytes_in 0 106318 station_ip 37.129.36.149 106318 port 15 106318 unique_id port 106318 remote_ip 10.8.0.14 106323 username aminvpn 106323 mac 106323 bytes_out 0 106323 bytes_in 0 106323 station_ip 37.129.1.249 106323 port 16 106323 unique_id port 106323 remote_ip 10.8.0.14 106328 username amir 106328 mac 106328 bytes_out 15846 106328 bytes_in 69043 106328 station_ip 46.225.208.61 106328 port 10 106328 unique_id port 106328 remote_ip 10.8.0.50 106329 username aminvpn 106329 mac 106329 bytes_out 28190 106329 bytes_in 69636 106329 station_ip 37.129.36.149 106329 port 17 106329 unique_id port 106329 remote_ip 10.8.0.14 106333 username naeimeh 106333 mac 106333 bytes_out 0 106333 bytes_in 0 106333 station_ip 83.122.103.25 106333 port 9 106333 unique_id port 106335 username khalili 106335 kill_reason Another user logged on this global unique id 106335 mac 106335 bytes_out 0 106335 bytes_in 0 106335 station_ip 5.119.5.145 106335 port 12 106335 unique_id port 106335 remote_ip 10.8.0.86 106336 username arash 106336 kill_reason Another user logged on this global unique id 106336 mac 106336 bytes_out 0 106336 bytes_in 0 106336 station_ip 37.27.8.99 106336 port 6 106336 unique_id port 106336 remote_ip 10.8.1.74 106337 username amir 106337 mac 106337 bytes_out 292058 106337 bytes_in 1669674 106337 station_ip 46.225.208.61 106337 port 10 106337 unique_id port 106337 remote_ip 10.8.0.50 106342 username aminvpn 106342 kill_reason Another user logged on this global unique id 106342 mac 106342 bytes_out 0 106342 bytes_in 0 106342 station_ip 5.120.40.98 106342 port 5 106342 unique_id port 106342 remote_ip 10.8.1.6 106345 username rezasekonji 106345 mac 106345 bytes_out 0 106345 bytes_in 0 106345 station_ip 37.129.219.33 106345 port 9 106345 unique_id port 106345 remote_ip 10.8.0.130 106348 username mohammadmahdi 106348 mac 106348 bytes_out 0 106348 bytes_in 0 106348 station_ip 5.119.241.165 106348 port 9 106348 unique_id port 106348 remote_ip 10.8.0.54 106352 username rezasekonji 106352 mac 106352 bytes_out 0 106352 bytes_in 0 106352 station_ip 37.129.219.33 106352 port 9 106352 unique_id port 106352 remote_ip 10.8.0.130 106355 username khalili 106355 mac 106355 bytes_out 0 106355 bytes_in 0 106355 station_ip 5.119.5.145 106355 port 12 106355 unique_id port 106360 username ayobi 106360 mac 106360 bytes_out 0 106360 bytes_in 0 106360 station_ip 37.27.25.37 106360 port 11 106360 unique_id port 106362 username arabpour 106362 unique_id port 106362 terminate_cause Lost-Carrier 106362 bytes_out 413430 106362 bytes_in 5091885 106362 station_ip 95.64.86.15 106362 port 15728811 106362 nas_port_type Virtual 106362 remote_ip 5.5.5.31 106366 username alipour 106366 mac 106366 bytes_out 0 106366 bytes_in 0 106366 station_ip 37.129.113.9 106366 port 2 106366 unique_id port 106321 port 10 106321 unique_id port 106321 remote_ip 10.8.0.50 106322 username aminvpn 106322 mac 106322 bytes_out 44306 106322 bytes_in 211200 106322 station_ip 37.129.36.149 106322 port 15 106322 unique_id port 106322 remote_ip 10.8.0.14 106330 username mohammadmahdi 106330 mac 106330 bytes_out 454156 106330 bytes_in 5140273 106330 station_ip 5.119.241.165 106330 port 15 106330 unique_id port 106330 remote_ip 10.8.0.54 106332 username aminvpn 106332 mac 106332 bytes_out 0 106332 bytes_in 0 106332 station_ip 37.129.1.249 106332 port 18 106332 unique_id port 106332 remote_ip 10.8.0.14 106338 username rezasekonji 106338 mac 106338 bytes_out 4483 106338 bytes_in 5750 106338 station_ip 37.129.219.33 106338 port 14 106338 unique_id port 106338 remote_ip 10.8.0.130 106339 username aminvpn 106339 mac 106339 bytes_out 0 106339 bytes_in 0 106339 station_ip 37.129.1.249 106339 port 9 106339 unique_id port 106339 remote_ip 10.8.0.14 106340 username aminvpn 106340 mac 106340 bytes_out 0 106340 bytes_in 0 106340 station_ip 37.129.36.149 106340 port 14 106340 unique_id port 106340 remote_ip 10.8.0.14 106343 username alipour 106343 kill_reason Another user logged on this global unique id 106343 mac 106343 bytes_out 0 106343 bytes_in 0 106343 station_ip 37.129.113.9 106343 port 2 106343 unique_id port 106343 remote_ip 10.8.1.50 106349 username rezasekonji 106349 mac 106349 bytes_out 0 106349 bytes_in 0 106349 station_ip 37.129.219.33 106349 port 13 106349 unique_id port 106349 remote_ip 10.8.0.130 106350 username rezasekonji 106350 mac 106350 bytes_out 0 106350 bytes_in 0 106350 station_ip 37.129.219.33 106350 port 9 106350 unique_id port 106350 remote_ip 10.8.0.130 106357 username rezasekonji 106357 mac 106357 bytes_out 0 106357 bytes_in 0 106357 station_ip 37.129.219.33 106357 port 12 106357 unique_id port 106357 remote_ip 10.8.0.130 106359 username rezasekonji 106359 mac 106359 bytes_out 313005 106359 bytes_in 5771518 106359 station_ip 37.129.219.33 106359 port 12 106359 unique_id port 106359 remote_ip 10.8.0.130 106361 username arash 106361 kill_reason Another user logged on this global unique id 106361 mac 106361 bytes_out 0 106361 bytes_in 0 106361 station_ip 37.27.2.29 106361 port 11 106361 unique_id port 106361 remote_ip 10.8.0.114 106363 username alipour 106363 mac 106363 bytes_out 67327 106363 bytes_in 68397 106363 station_ip 37.129.113.9 106363 port 2 106363 unique_id port 106363 remote_ip 10.8.1.50 106364 username sobhan 106364 unique_id port 106364 terminate_cause Lost-Carrier 106364 bytes_out 2374340 106364 bytes_in 28666448 106364 station_ip 5.119.46.56 106364 port 15728812 106364 nas_port_type Virtual 106364 remote_ip 5.5.5.29 106367 username arash 106367 kill_reason Another user logged on this global unique id 106367 mac 106367 bytes_out 0 106367 bytes_in 0 106367 station_ip 37.27.2.29 106367 port 11 106367 unique_id port 106376 username rajaei 106376 kill_reason Another user logged on this global unique id 106376 mac 106376 bytes_out 0 106376 bytes_in 0 106376 station_ip 93.114.21.95 106376 port 13 106376 unique_id port 106376 remote_ip 10.8.0.34 106381 username zare 106381 kill_reason Another user logged on this global unique id 106381 mac 106381 bytes_out 0 106381 bytes_in 0 106381 station_ip 188.245.91.123 106381 port 4 106381 unique_id port 106382 username zare 106382 kill_reason Another user logged on this global unique id 106382 mac 106382 bytes_out 0 106382 bytes_in 0 106382 station_ip 188.245.91.123 106382 port 4 106382 unique_id port 106353 station_ip 37.27.8.99 106353 port 6 106353 unique_id port 106354 username arash 106354 mac 106354 bytes_out 0 106354 bytes_in 0 106354 station_ip 37.27.8.99 106354 port 6 106354 unique_id port 106356 username ahmadi 106356 unique_id port 106356 terminate_cause User-Request 106356 bytes_out 27058 106356 bytes_in 150231 106356 station_ip 37.129.93.120 106356 port 15728810 106356 nas_port_type Virtual 106356 remote_ip 5.5.5.33 106358 username tahmasebi 106358 mac 106358 bytes_out 0 106358 bytes_in 0 106358 station_ip 5.119.42.112 106358 port 2 106358 unique_id port 106365 username arash 106365 kill_reason Another user logged on this global unique id 106365 mac 106365 bytes_out 0 106365 bytes_in 0 106365 station_ip 37.27.2.29 106365 port 11 106365 unique_id port 106368 username zare 106368 kill_reason Another user logged on this global unique id 106368 mac 106368 bytes_out 0 106368 bytes_in 0 106368 station_ip 188.245.91.123 106368 port 4 106368 unique_id port 106368 remote_ip 10.8.1.58 106369 username mahdiyehalizadeh 106369 mac 106369 bytes_out 0 106369 bytes_in 0 106369 station_ip 37.129.169.91 106369 port 13 106369 unique_id port 106369 remote_ip 10.8.0.82 106370 username alipour 106370 mac 106370 bytes_out 0 106370 bytes_in 0 106370 station_ip 37.129.113.9 106370 port 2 106370 unique_id port 106370 remote_ip 10.8.1.50 106373 username zare 106373 kill_reason Another user logged on this global unique id 106373 mac 106373 bytes_out 0 106373 bytes_in 0 106373 station_ip 188.245.91.123 106373 port 4 106373 unique_id port 106374 username arash 106374 kill_reason Another user logged on this global unique id 106374 mac 106374 bytes_out 0 106374 bytes_in 0 106374 station_ip 37.27.2.29 106374 port 11 106374 unique_id port 106379 username zare 106379 kill_reason Another user logged on this global unique id 106379 mac 106379 bytes_out 0 106379 bytes_in 0 106379 station_ip 188.245.91.123 106379 port 4 106379 unique_id port 106380 username zare 106380 kill_reason Another user logged on this global unique id 106380 mac 106380 bytes_out 0 106380 bytes_in 0 106380 station_ip 188.245.91.123 106380 port 4 106380 unique_id port 106384 username zare 106384 kill_reason Another user logged on this global unique id 106384 mac 106384 bytes_out 0 106384 bytes_in 0 106384 station_ip 188.245.91.123 106384 port 4 106384 unique_id port 106386 username zare 106386 kill_reason Another user logged on this global unique id 106386 mac 106386 bytes_out 0 106386 bytes_in 0 106386 station_ip 188.245.91.123 106386 port 4 106386 unique_id port 106387 username tahmasebi 106387 kill_reason Another user logged on this global unique id 106387 mac 106387 bytes_out 0 106387 bytes_in 0 106387 station_ip 5.119.42.112 106387 port 2 106387 unique_id port 106394 username tahmasebi 106394 mac 106394 bytes_out 0 106394 bytes_in 0 106394 station_ip 5.119.42.112 106394 port 2 106394 unique_id port 106397 username aminvpn 106397 mac 106397 bytes_out 0 106397 bytes_in 0 106397 station_ip 37.129.36.149 106397 port 10 106397 unique_id port 106397 remote_ip 10.8.0.14 106398 username zare 106398 kill_reason Another user logged on this global unique id 106398 mac 106398 bytes_out 0 106398 bytes_in 0 106398 station_ip 188.245.91.123 106398 port 4 106398 unique_id port 106399 username farhad1 106399 mac 106399 bytes_out 0 106399 bytes_in 0 106399 station_ip 5.120.32.14 106399 port 2 106399 unique_id port 106399 remote_ip 10.8.0.26 106400 username alipour 106400 mac 106400 bytes_out 0 106400 bytes_in 0 106400 station_ip 37.129.113.9 106366 remote_ip 10.8.1.50 106371 username arash 106371 kill_reason Another user logged on this global unique id 106371 mac 106371 bytes_out 0 106371 bytes_in 0 106371 station_ip 37.27.2.29 106371 port 11 106371 unique_id port 106372 username zare 106372 kill_reason Another user logged on this global unique id 106372 mac 106372 bytes_out 0 106372 bytes_in 0 106372 station_ip 188.245.91.123 106372 port 4 106372 unique_id port 106375 username arash 106375 mac 106375 bytes_out 0 106375 bytes_in 0 106375 station_ip 37.27.2.29 106375 port 11 106375 unique_id port 106377 username zare 106377 kill_reason Another user logged on this global unique id 106377 mac 106377 bytes_out 0 106377 bytes_in 0 106377 station_ip 188.245.91.123 106377 port 4 106377 unique_id port 106378 username rajaei 106378 mac 106378 bytes_out 0 106378 bytes_in 0 106378 station_ip 93.114.21.95 106378 port 13 106378 unique_id port 106383 username alipour 106383 kill_reason Another user logged on this global unique id 106383 mac 106383 bytes_out 0 106383 bytes_in 0 106383 station_ip 37.129.113.9 106383 port 2 106383 unique_id port 106383 remote_ip 10.8.1.50 106389 username zare 106389 kill_reason Another user logged on this global unique id 106389 mac 106389 bytes_out 0 106389 bytes_in 0 106389 station_ip 188.245.91.123 106389 port 4 106389 unique_id port 106390 username alipour 106390 kill_reason Another user logged on this global unique id 106390 mac 106390 bytes_out 0 106390 bytes_in 0 106390 station_ip 37.129.113.9 106390 port 2 106390 unique_id port 106390 remote_ip 10.8.1.50 106391 username farhad1 106391 mac 106391 bytes_out 0 106391 bytes_in 0 106391 station_ip 5.119.198.110 106391 port 11 106391 unique_id port 106391 remote_ip 10.8.0.26 106392 username naeimeh 106392 mac 106392 bytes_out 0 106392 bytes_in 0 106392 station_ip 37.129.64.77 106392 port 12 106392 unique_id port 106392 remote_ip 10.8.0.78 106393 username zare 106393 kill_reason Another user logged on this global unique id 106393 mac 106393 bytes_out 0 106393 bytes_in 0 106393 station_ip 188.245.91.123 106393 port 4 106393 unique_id port 106396 username rajaei 106396 mac 106396 bytes_out 0 106396 bytes_in 0 106396 station_ip 89.47.79.199 106396 port 11 106396 unique_id port 106396 remote_ip 10.8.0.34 106402 username zare 106402 kill_reason Another user logged on this global unique id 106402 mac 106402 bytes_out 0 106402 bytes_in 0 106402 station_ip 188.245.91.123 106402 port 4 106402 unique_id port 106405 username zare 106405 kill_reason Another user logged on this global unique id 106405 mac 106405 bytes_out 0 106405 bytes_in 0 106405 station_ip 188.245.91.123 106405 port 4 106405 unique_id port 106407 username zare 106407 kill_reason Another user logged on this global unique id 106407 mac 106407 bytes_out 0 106407 bytes_in 0 106407 station_ip 188.245.91.123 106407 port 4 106407 unique_id port 106414 username zare 106414 mac 106414 bytes_out 8645 106414 bytes_in 14829 106414 station_ip 188.245.91.123 106414 port 2 106414 unique_id port 106414 remote_ip 10.8.0.18 106416 username alipour 106416 kill_reason Another user logged on this global unique id 106416 mac 106416 bytes_out 0 106416 bytes_in 0 106416 station_ip 37.129.113.9 106416 port 2 106416 unique_id port 106416 remote_ip 10.8.1.50 106417 username houshang 106417 mac 106417 bytes_out 162764 106417 bytes_in 771766 106417 station_ip 5.119.17.123 106417 port 9 106417 unique_id port 106417 remote_ip 10.8.0.22 106422 username zare 106422 mac 106422 bytes_out 1775159 106422 bytes_in 32921865 106385 username naeimeh 106385 mac 106385 bytes_out 0 106385 bytes_in 0 106385 station_ip 83.123.188.153 106385 port 12 106385 unique_id port 106385 remote_ip 10.8.0.78 106388 username tahmasebi 106388 mac 106388 bytes_out 0 106388 bytes_in 0 106388 station_ip 5.119.42.112 106388 port 2 106388 unique_id port 106395 username alipour 106395 kill_reason Another user logged on this global unique id 106395 mac 106395 bytes_out 0 106395 bytes_in 0 106395 station_ip 37.129.113.9 106395 port 2 106395 unique_id port 106395 remote_ip 10.8.1.50 106401 username rajaei 106401 kill_reason Another user logged on this global unique id 106401 mac 106401 bytes_out 0 106401 bytes_in 0 106401 station_ip 89.47.79.199 106401 port 12 106401 unique_id port 106401 remote_ip 10.8.0.34 106406 username khalili 106406 mac 106406 bytes_out 1772905 106406 bytes_in 7578567 106406 station_ip 5.119.5.145 106406 port 9 106406 unique_id port 106406 remote_ip 10.8.0.86 106408 username alipour 106408 mac 106408 bytes_out 0 106408 bytes_in 0 106408 station_ip 37.129.113.9 106408 port 2 106408 unique_id port 106408 remote_ip 10.8.1.50 106410 username alipour 106410 mac 106410 bytes_out 4467 106410 bytes_in 7217 106410 station_ip 37.129.113.9 106410 port 2 106410 unique_id port 106410 remote_ip 10.8.1.50 106411 username zare 106411 mac 106411 bytes_out 0 106411 bytes_in 0 106411 station_ip 188.245.91.123 106411 port 2 106411 unique_id port 106411 remote_ip 10.8.0.18 106413 username zare 106413 mac 106413 bytes_out 3719 106413 bytes_in 5785 106413 station_ip 188.245.91.123 106413 port 2 106413 unique_id port 106413 remote_ip 10.8.0.18 106421 username zare 106421 mac 106421 bytes_out 0 106421 bytes_in 0 106421 station_ip 188.245.91.123 106421 port 9 106421 unique_id port 106421 remote_ip 10.8.0.18 106423 username alipour 106423 kill_reason Another user logged on this global unique id 106423 mac 106423 bytes_out 0 106423 bytes_in 0 106423 station_ip 37.129.113.9 106423 port 2 106423 unique_id port 106423 remote_ip 10.8.1.50 106428 username alipour 106428 kill_reason Another user logged on this global unique id 106428 mac 106428 bytes_out 0 106428 bytes_in 0 106428 station_ip 37.129.113.9 106428 port 2 106428 unique_id port 106428 remote_ip 10.8.1.50 106434 username alipour 106434 mac 106434 bytes_out 0 106434 bytes_in 0 106434 station_ip 37.129.113.9 106434 port 2 106434 unique_id port 106434 remote_ip 10.8.1.50 106437 username abbasaskari 106437 mac 106437 bytes_out 0 106437 bytes_in 0 106437 station_ip 37.129.30.228 106437 port 9 106437 unique_id port 106437 remote_ip 10.8.0.10 106439 username alipour 106439 mac 106439 bytes_out 0 106439 bytes_in 0 106439 station_ip 37.129.113.9 106439 port 2 106439 unique_id port 106439 remote_ip 10.8.1.50 106449 username alipour 106449 kill_reason Another user logged on this global unique id 106449 mac 106449 bytes_out 0 106449 bytes_in 0 106449 station_ip 37.129.113.9 106449 port 2 106449 unique_id port 106449 remote_ip 10.8.1.50 106451 username avaanna 106451 mac 106451 bytes_out 5824 106451 bytes_in 9533 106451 station_ip 113.203.47.73 106451 port 2 106451 unique_id port 106451 remote_ip 10.8.0.98 106455 username mehdizare 106455 mac 106455 bytes_out 0 106455 bytes_in 0 106455 station_ip 5.119.206.12 106455 port 9 106455 unique_id port 106455 remote_ip 10.8.0.90 106457 username morteza 106457 mac 106457 bytes_out 1404795 106457 bytes_in 24942719 106457 station_ip 83.123.138.52 106457 port 10 106400 port 2 106400 unique_id port 106400 remote_ip 10.8.1.50 106403 username rajaei 106403 mac 106403 bytes_out 0 106403 bytes_in 0 106403 station_ip 89.47.79.199 106403 port 12 106403 unique_id port 106404 username zare 106404 kill_reason Another user logged on this global unique id 106404 mac 106404 bytes_out 0 106404 bytes_in 0 106404 station_ip 188.245.91.123 106404 port 4 106404 unique_id port 106409 username zare 106409 mac 106409 bytes_out 0 106409 bytes_in 0 106409 station_ip 188.245.91.123 106409 port 4 106409 unique_id port 106412 username alipour 106412 kill_reason Another user logged on this global unique id 106412 mac 106412 bytes_out 0 106412 bytes_in 0 106412 station_ip 37.129.113.9 106412 port 2 106412 unique_id port 106412 remote_ip 10.8.1.50 106415 username alipour 106415 mac 106415 bytes_out 2368099 106415 bytes_in 41354177 106415 station_ip 37.129.113.9 106415 port 2 106415 unique_id port 106415 remote_ip 10.8.1.50 106418 username houshang 106418 mac 106418 bytes_out 4357 106418 bytes_in 5214 106418 station_ip 5.119.17.123 106418 port 10 106418 unique_id port 106418 remote_ip 10.8.0.22 106419 username zare 106419 mac 106419 bytes_out 0 106419 bytes_in 0 106419 station_ip 188.245.91.123 106419 port 2 106419 unique_id port 106420 username alipour 106420 kill_reason Another user logged on this global unique id 106420 mac 106420 bytes_out 0 106420 bytes_in 0 106420 station_ip 37.129.113.9 106420 port 2 106420 unique_id port 106420 remote_ip 10.8.1.50 106425 username houshang 106425 mac 106425 bytes_out 10992 106425 bytes_in 26709 106425 station_ip 5.119.17.123 106425 port 2 106425 unique_id port 106425 remote_ip 10.8.0.22 106426 username alipour 106426 mac 106426 bytes_out 0 106426 bytes_in 0 106426 station_ip 37.129.113.9 106426 port 2 106426 unique_id port 106426 remote_ip 10.8.1.50 106427 username alipour 106427 mac 106427 bytes_out 0 106427 bytes_in 0 106427 station_ip 37.129.113.9 106427 port 2 106427 unique_id port 106427 remote_ip 10.8.1.50 106429 username houshang 106429 mac 106429 bytes_out 15270 106429 bytes_in 17875 106429 station_ip 5.119.17.123 106429 port 2 106429 unique_id port 106429 remote_ip 10.8.0.22 106430 username houshang 106430 mac 106430 bytes_out 20573 106430 bytes_in 37411 106430 station_ip 5.119.17.123 106430 port 2 106430 unique_id port 106430 remote_ip 10.8.0.22 106431 username alipour 106431 mac 106431 bytes_out 0 106431 bytes_in 0 106431 station_ip 37.129.113.9 106431 port 2 106431 unique_id port 106431 remote_ip 10.8.1.50 106432 username alipour 106432 mac 106432 bytes_out 0 106432 bytes_in 0 106432 station_ip 37.129.113.9 106432 port 2 106432 unique_id port 106432 remote_ip 10.8.1.50 106433 username alipour 106433 mac 106433 bytes_out 0 106433 bytes_in 0 106433 station_ip 37.129.113.9 106433 port 2 106433 unique_id port 106433 remote_ip 10.8.1.50 106436 username mehdizare 106436 mac 106436 bytes_out 527115 106436 bytes_in 720275 106436 station_ip 5.119.206.12 106436 port 16 106436 unique_id port 106436 remote_ip 10.8.0.90 106438 username mehdizare 106438 mac 106438 bytes_out 21646 106438 bytes_in 28751 106438 station_ip 5.119.206.12 106438 port 2 106438 unique_id port 106438 remote_ip 10.8.0.90 106440 username alipour 106440 mac 106440 bytes_out 0 106440 bytes_in 0 106440 station_ip 37.129.113.9 106440 port 2 106440 unique_id port 106440 remote_ip 10.8.1.50 106444 username alipour 106444 mac 106422 station_ip 113.203.63.227 106422 port 2 106422 unique_id port 106422 remote_ip 10.8.0.18 106424 username zare 106424 mac 106424 bytes_out 858550 106424 bytes_in 15818398 106424 station_ip 188.245.91.123 106424 port 9 106424 unique_id port 106424 remote_ip 10.8.0.18 106435 username alipour 106435 kill_reason Another user logged on this global unique id 106435 mac 106435 bytes_out 0 106435 bytes_in 0 106435 station_ip 37.129.113.9 106435 port 2 106435 unique_id port 106435 remote_ip 10.8.1.50 106441 username alipour 106441 mac 106441 bytes_out 13537 106441 bytes_in 22275 106441 station_ip 37.129.113.9 106441 port 2 106441 unique_id port 106441 remote_ip 10.8.1.50 106442 username alipour 106442 mac 106442 bytes_out 5790 106442 bytes_in 9245 106442 station_ip 37.129.113.9 106442 port 2 106442 unique_id port 106442 remote_ip 10.8.1.50 106443 username alipour 106443 mac 106443 bytes_out 0 106443 bytes_in 0 106443 station_ip 37.129.113.9 106443 port 2 106443 unique_id port 106443 remote_ip 10.8.1.50 106446 username alipour 106446 mac 106446 bytes_out 0 106446 bytes_in 0 106446 station_ip 37.129.113.9 106446 port 2 106446 unique_id port 106446 remote_ip 10.8.1.50 106448 username mehdizare 106448 mac 106448 bytes_out 689800 106448 bytes_in 4922604 106448 station_ip 5.119.206.12 106448 port 4 106448 unique_id port 106448 remote_ip 10.8.1.42 106452 username alipour 106452 mac 106452 bytes_out 0 106452 bytes_in 0 106452 station_ip 37.129.113.9 106452 port 2 106452 unique_id port 106452 remote_ip 10.8.1.50 106456 username alipour 106456 kill_reason Another user logged on this global unique id 106456 mac 106456 bytes_out 0 106456 bytes_in 0 106456 station_ip 37.129.113.9 106456 port 2 106456 unique_id port 106456 remote_ip 10.8.1.50 106458 username mehdizare 106458 mac 106458 bytes_out 23916 106458 bytes_in 32286 106458 station_ip 5.119.206.12 106458 port 2 106458 unique_id port 106458 remote_ip 10.8.0.90 106462 username alipour 106462 mac 106462 bytes_out 0 106462 bytes_in 0 106462 station_ip 37.129.113.9 106462 port 2 106462 unique_id port 106462 remote_ip 10.8.1.50 106463 username alipour 106463 mac 106463 bytes_out 48648 106463 bytes_in 61327 106463 station_ip 37.129.113.9 106463 port 2 106463 unique_id port 106463 remote_ip 10.8.1.50 106467 username mohammadmahdi 106467 mac 106467 bytes_out 118040 106467 bytes_in 624303 106467 station_ip 5.120.17.32 106467 port 9 106467 unique_id port 106467 remote_ip 10.8.0.54 106474 username malekpoir 106474 mac 106474 bytes_out 0 106474 bytes_in 0 106474 station_ip 5.119.21.231 106474 port 9 106474 unique_id port 106474 remote_ip 10.8.0.58 106478 username tahmasebi 106478 mac 106478 bytes_out 96218 106478 bytes_in 129390 106478 station_ip 5.119.42.112 106478 port 9 106478 unique_id port 106478 remote_ip 10.8.0.42 106480 username alipour 106480 mac 106480 bytes_out 0 106480 bytes_in 0 106480 station_ip 37.129.113.9 106480 port 2 106480 unique_id port 106480 remote_ip 10.8.1.50 106481 username forozande 106481 kill_reason Another user logged on this global unique id 106481 mac 106481 bytes_out 0 106481 bytes_in 0 106481 station_ip 37.129.111.173 106481 port 11 106481 unique_id port 106485 username alipour 106485 mac 106485 bytes_out 4226 106485 bytes_in 5900 106485 station_ip 37.129.113.9 106485 port 12 106485 unique_id port 106485 remote_ip 10.8.0.102 106486 username forozande 106486 mac 106486 bytes_out 0 106486 bytes_in 0 106486 station_ip 37.129.111.173 106444 bytes_out 0 106444 bytes_in 0 106444 station_ip 37.129.113.9 106444 port 2 106444 unique_id port 106444 remote_ip 10.8.1.50 106445 username sobhan 106445 unique_id port 106445 terminate_cause User-Request 106445 bytes_out 2497735 106445 bytes_in 47654923 106445 station_ip 5.119.46.56 106445 port 15728813 106445 nas_port_type Virtual 106445 remote_ip 5.5.5.28 106447 username alipour 106447 mac 106447 bytes_out 6899 106447 bytes_in 10789 106447 station_ip 37.129.113.9 106447 port 2 106447 unique_id port 106447 remote_ip 10.8.1.50 106450 username mehdizare 106450 mac 106450 bytes_out 5241 106450 bytes_in 8213 106450 station_ip 5.119.206.12 106450 port 2 106450 unique_id port 106450 remote_ip 10.8.0.90 106453 username mehdizare 106453 mac 106453 bytes_out 44999 106453 bytes_in 56613 106453 station_ip 5.119.206.12 106453 port 9 106453 unique_id port 106453 remote_ip 10.8.0.90 106454 username alipour 106454 mac 106454 bytes_out 903236 106454 bytes_in 5827018 106454 station_ip 37.129.113.9 106454 port 2 106454 unique_id port 106454 remote_ip 10.8.1.50 106459 username morteza 106459 mac 106459 bytes_out 0 106459 bytes_in 0 106459 station_ip 83.123.138.52 106459 port 9 106459 unique_id port 106459 remote_ip 10.8.0.46 106461 username alipour 106461 mac 106461 bytes_out 31252 106461 bytes_in 39671 106461 station_ip 37.129.113.9 106461 port 2 106461 unique_id port 106461 remote_ip 10.8.1.50 106464 username alipour 106464 mac 106464 bytes_out 56340 106464 bytes_in 80233 106464 station_ip 37.129.113.9 106464 port 2 106464 unique_id port 106464 remote_ip 10.8.1.50 106471 username forozande 106471 mac 106471 bytes_out 0 106471 bytes_in 0 106471 station_ip 113.203.40.182 106471 port 11 106471 unique_id port 106471 remote_ip 10.8.0.74 106479 username forozande 106479 kill_reason Another user logged on this global unique id 106479 mac 106479 bytes_out 0 106479 bytes_in 0 106479 station_ip 37.129.111.173 106479 port 11 106479 unique_id port 106479 remote_ip 10.8.0.74 106484 username abbasaskari 106484 mac 106484 bytes_out 0 106484 bytes_in 0 106484 station_ip 37.129.15.28 106484 port 12 106484 unique_id port 106484 remote_ip 10.8.0.10 106493 username malekpoir 106493 kill_reason Another user logged on this global unique id 106493 mac 106493 bytes_out 0 106493 bytes_in 0 106493 station_ip 5.119.21.231 106493 port 10 106493 unique_id port 106494 username houshang 106494 kill_reason Another user logged on this global unique id 106494 mac 106494 bytes_out 0 106494 bytes_in 0 106494 station_ip 5.120.60.202 106494 port 2 106494 unique_id port 106495 username ahmadipour 106495 unique_id port 106495 terminate_cause Lost-Carrier 106495 bytes_out 10776112 106495 bytes_in 5089756 106495 station_ip 83.123.193.224 106495 port 15728817 106495 nas_port_type Virtual 106495 remote_ip 5.5.5.22 106500 username avaanna 106500 mac 106500 bytes_out 0 106500 bytes_in 0 106500 station_ip 113.203.76.13 106500 port 13 106500 unique_id port 106500 remote_ip 10.8.0.98 106501 username mehdizare 106501 mac 106501 bytes_out 0 106501 bytes_in 0 106501 station_ip 5.119.206.12 106501 port 12 106501 unique_id port 106502 username avaanna 106502 mac 106502 bytes_out 0 106502 bytes_in 0 106502 station_ip 113.203.76.13 106502 port 15 106502 unique_id port 106502 remote_ip 10.8.0.98 106505 username avaanna 106505 mac 106505 bytes_out 0 106505 bytes_in 0 106505 station_ip 113.203.76.13 106505 port 15 106505 unique_id port 106505 remote_ip 10.8.0.98 106506 username avaanna 106457 unique_id port 106457 remote_ip 10.8.0.46 106460 username alipour 106460 mac 106460 bytes_out 23446 106460 bytes_in 33297 106460 station_ip 37.129.113.9 106460 port 2 106460 unique_id port 106460 remote_ip 10.8.1.50 106465 username mahdiyehalizadeh 106465 mac 106465 bytes_out 44984 106465 bytes_in 54888 106465 station_ip 37.129.170.82 106465 port 9 106465 unique_id port 106465 remote_ip 10.8.0.82 106466 username aminvpn 106466 mac 106466 bytes_out 810129 106466 bytes_in 7358175 106466 station_ip 83.123.85.82 106466 port 9 106466 unique_id port 106466 remote_ip 10.8.0.14 106468 username malekpoir 106468 mac 106468 bytes_out 0 106468 bytes_in 0 106468 station_ip 5.119.21.231 106468 port 3 106468 unique_id port 106469 username mahdiyehalizadeh 106469 mac 106469 bytes_out 0 106469 bytes_in 0 106469 station_ip 113.203.19.206 106469 port 10 106469 unique_id port 106469 remote_ip 10.8.0.82 106470 username malekpoir 106470 mac 106470 bytes_out 6123 106470 bytes_in 7152 106470 station_ip 5.119.21.231 106470 port 3 106470 unique_id port 106470 remote_ip 10.8.1.54 106472 username alipour 106472 mac 106472 bytes_out 139655 106472 bytes_in 1022215 106472 station_ip 37.129.113.9 106472 port 2 106472 unique_id port 106472 remote_ip 10.8.1.50 106473 username malekpoir 106473 mac 106473 bytes_out 3578 106473 bytes_in 5728 106473 station_ip 5.119.21.231 106473 port 4 106473 unique_id port 106473 remote_ip 10.8.1.54 106475 username alipour 106475 mac 106475 bytes_out 0 106475 bytes_in 0 106475 station_ip 37.129.113.9 106475 port 2 106475 unique_id port 106475 remote_ip 10.8.1.50 106476 username mehdizare 106476 mac 106476 bytes_out 14150 106476 bytes_in 18577 106476 station_ip 5.119.206.12 106476 port 2 106476 unique_id port 106476 remote_ip 10.8.0.90 106477 username rezasekonji 106477 mac 106477 bytes_out 398220 106477 bytes_in 6843143 106477 station_ip 83.122.221.103 106477 port 9 106477 unique_id port 106477 remote_ip 10.8.0.130 106482 username alipour 106482 mac 106482 bytes_out 0 106482 bytes_in 0 106482 station_ip 37.129.113.9 106482 port 2 106482 unique_id port 106482 remote_ip 10.8.1.50 106483 username forozande 106483 kill_reason Another user logged on this global unique id 106483 mac 106483 bytes_out 0 106483 bytes_in 0 106483 station_ip 37.129.111.173 106483 port 11 106483 unique_id port 106489 username mehdizare 106489 kill_reason Another user logged on this global unique id 106489 mac 106489 bytes_out 0 106489 bytes_in 0 106489 station_ip 5.119.206.12 106489 port 12 106489 unique_id port 106492 username malekpoir 106492 kill_reason Another user logged on this global unique id 106492 mac 106492 bytes_out 0 106492 bytes_in 0 106492 station_ip 5.119.21.231 106492 port 10 106492 unique_id port 106499 username avaanna 106499 mac 106499 bytes_out 623223 106499 bytes_in 7494462 106499 station_ip 113.203.76.13 106499 port 13 106499 unique_id port 106499 remote_ip 10.8.0.98 106504 username houshang 106504 kill_reason Another user logged on this global unique id 106504 mac 106504 bytes_out 0 106504 bytes_in 0 106504 station_ip 5.120.60.202 106504 port 2 106504 unique_id port 106507 username houshang 106507 kill_reason Another user logged on this global unique id 106507 mac 106507 bytes_out 0 106507 bytes_in 0 106507 station_ip 5.120.60.202 106507 port 2 106507 unique_id port 106509 username malekpoir 106509 kill_reason Another user logged on this global unique id 106509 mac 106509 bytes_out 0 106509 bytes_in 0 106509 station_ip 5.119.21.231 106509 port 10 106486 port 11 106486 unique_id port 106487 username mehdizare 106487 kill_reason Another user logged on this global unique id 106487 mac 106487 bytes_out 0 106487 bytes_in 0 106487 station_ip 5.119.206.12 106487 port 12 106487 unique_id port 106487 remote_ip 10.8.0.90 106488 username malekpoir 106488 kill_reason Another user logged on this global unique id 106488 mac 106488 bytes_out 0 106488 bytes_in 0 106488 station_ip 5.119.21.231 106488 port 10 106488 unique_id port 106488 remote_ip 10.8.0.58 106490 username houshang 106490 kill_reason Another user logged on this global unique id 106490 mac 106490 bytes_out 0 106490 bytes_in 0 106490 station_ip 5.120.60.202 106490 port 2 106490 unique_id port 106490 remote_ip 10.8.0.22 106491 username hashtadani 106491 unique_id port 106491 terminate_cause User-Request 106491 bytes_out 2432681 106491 bytes_in 30472546 106491 station_ip 83.123.176.13 106491 port 15728815 106491 nas_port_type Virtual 106491 remote_ip 5.5.5.26 106496 username houshang 106496 kill_reason Another user logged on this global unique id 106496 mac 106496 bytes_out 0 106496 bytes_in 0 106496 station_ip 5.120.60.202 106496 port 2 106496 unique_id port 106497 username houshang 106497 kill_reason Another user logged on this global unique id 106497 mac 106497 bytes_out 0 106497 bytes_in 0 106497 station_ip 5.120.60.202 106497 port 2 106497 unique_id port 106498 username houshang 106498 kill_reason Another user logged on this global unique id 106498 mac 106498 bytes_out 0 106498 bytes_in 0 106498 station_ip 5.120.60.202 106498 port 2 106498 unique_id port 106503 username avaanna 106503 mac 106503 bytes_out 0 106503 bytes_in 0 106503 station_ip 113.203.76.13 106503 port 12 106503 unique_id port 106503 remote_ip 10.8.0.98 106508 username kordestani 106508 mac 106508 bytes_out 147207 106508 bytes_in 749137 106508 station_ip 46.225.208.14 106508 port 15 106508 unique_id port 106508 remote_ip 10.8.0.134 106510 username kamali1 106510 mac 106510 bytes_out 0 106510 bytes_in 0 106510 station_ip 5.120.168.134 106510 port 9 106510 unique_id port 106510 remote_ip 10.8.0.70 106516 username aminvpn 106516 kill_reason Another user logged on this global unique id 106516 mac 106516 bytes_out 0 106516 bytes_in 0 106516 station_ip 37.129.22.233 106516 port 12 106516 unique_id port 106516 remote_ip 10.8.0.14 106518 username alirr 106518 unique_id port 106518 terminate_cause Lost-Carrier 106518 bytes_out 7334697 106518 bytes_in 88190579 106518 station_ip 5.120.98.15 106518 port 15728816 106518 nas_port_type Virtual 106518 remote_ip 5.5.5.24 106520 username amir 106520 mac 106520 bytes_out 0 106520 bytes_in 0 106520 station_ip 46.225.210.126 106520 port 2 106520 unique_id port 106520 remote_ip 10.8.0.50 106524 username aminvpn 106524 kill_reason Another user logged on this global unique id 106524 mac 106524 bytes_out 0 106524 bytes_in 0 106524 station_ip 37.129.22.233 106524 port 12 106524 unique_id port 106531 username mehdizare 106531 mac 106531 bytes_out 4334 106531 bytes_in 8688 106531 station_ip 5.119.206.12 106531 port 11 106531 unique_id port 106531 remote_ip 10.8.0.90 106532 username forozande 106532 mac 106532 bytes_out 577091 106532 bytes_in 7224530 106532 station_ip 83.122.84.21 106532 port 9 106532 unique_id port 106532 remote_ip 10.8.0.74 106534 username malekpoir 106534 kill_reason Another user logged on this global unique id 106534 mac 106534 bytes_out 0 106534 bytes_in 0 106534 station_ip 5.119.21.231 106534 port 10 106534 unique_id port 106538 username aminvpn 106538 mac 106538 bytes_out 0 106538 bytes_in 0 106538 station_ip 37.129.22.233 106506 mac 106506 bytes_out 0 106506 bytes_in 0 106506 station_ip 113.203.76.13 106506 port 12 106506 unique_id port 106506 remote_ip 10.8.0.98 106513 username houshang 106513 kill_reason Another user logged on this global unique id 106513 mac 106513 bytes_out 0 106513 bytes_in 0 106513 station_ip 5.120.60.202 106513 port 2 106513 unique_id port 106515 username avaanna 106515 mac 106515 bytes_out 24143390 106515 bytes_in 452493867 106515 station_ip 113.203.76.13 106515 port 2 106515 unique_id port 106515 remote_ip 10.8.1.46 106517 username malekpoir 106517 kill_reason Another user logged on this global unique id 106517 mac 106517 bytes_out 0 106517 bytes_in 0 106517 station_ip 5.119.21.231 106517 port 10 106517 unique_id port 106523 username zare 106523 mac 106523 bytes_out 213722 106523 bytes_in 1339935 106523 station_ip 94.183.214.14 106523 port 9 106523 unique_id port 106523 remote_ip 10.8.0.18 106525 username zare 106525 mac 106525 bytes_out 1205248 106525 bytes_in 2256306 106525 station_ip 94.183.214.14 106525 port 2 106525 unique_id port 106525 remote_ip 10.8.1.58 106527 username mehdizare 106527 mac 106527 bytes_out 46206 106527 bytes_in 26765 106527 station_ip 5.119.206.12 106527 port 11 106527 unique_id port 106527 remote_ip 10.8.0.90 106529 username mehdizare 106529 mac 106529 bytes_out 0 106529 bytes_in 0 106529 station_ip 5.119.206.12 106529 port 16 106529 unique_id port 106529 remote_ip 10.8.0.90 106533 username mehdizare 106533 mac 106533 bytes_out 15112 106533 bytes_in 16422 106533 station_ip 5.119.206.12 106533 port 3 106533 unique_id port 106533 remote_ip 10.8.1.42 106539 username zare 106539 mac 106539 bytes_out 0 106539 bytes_in 0 106539 station_ip 94.183.214.14 106539 port 15 106539 unique_id port 106539 remote_ip 10.8.0.18 106540 username zare 106540 mac 106540 bytes_out 0 106540 bytes_in 0 106540 station_ip 94.183.214.14 106540 port 12 106540 unique_id port 106540 remote_ip 10.8.0.18 106544 username aminvpn 106544 mac 106544 bytes_out 0 106544 bytes_in 0 106544 station_ip 37.129.22.233 106544 port 12 106544 unique_id port 106544 remote_ip 10.8.0.14 106546 username aminvpn 106546 mac 106546 bytes_out 22451 106546 bytes_in 28377 106546 station_ip 37.129.92.70 106546 port 15 106546 unique_id port 106546 remote_ip 10.8.0.14 106549 username zare 106549 mac 106549 bytes_out 0 106549 bytes_in 0 106549 station_ip 94.183.214.14 106549 port 15 106549 unique_id port 106549 remote_ip 10.8.0.18 106558 username avaanna 106558 mac 106558 bytes_out 712329 106558 bytes_in 11920855 106558 station_ip 113.203.76.13 106558 port 13 106558 unique_id port 106558 remote_ip 10.8.0.98 106559 username zare 106559 mac 106559 bytes_out 0 106559 bytes_in 0 106559 station_ip 94.183.214.14 106559 port 13 106559 unique_id port 106559 remote_ip 10.8.0.18 106562 username zare 106562 mac 106562 bytes_out 0 106562 bytes_in 0 106562 station_ip 94.183.214.14 106562 port 13 106562 unique_id port 106562 remote_ip 10.8.0.18 106573 username aminvpn 106573 kill_reason Another user logged on this global unique id 106573 mac 106573 bytes_out 0 106573 bytes_in 0 106573 station_ip 37.129.22.233 106573 port 12 106573 unique_id port 106573 remote_ip 10.8.0.14 106575 username aminvpn 106575 kill_reason Another user logged on this global unique id 106575 mac 106575 bytes_out 0 106575 bytes_in 0 106575 station_ip 37.129.22.233 106575 port 12 106575 unique_id port 106582 username avaanna 106582 mac 106509 unique_id port 106511 username avaanna 106511 mac 106511 bytes_out 49184 106511 bytes_in 86554 106511 station_ip 113.203.76.13 106511 port 2 106511 unique_id port 106511 remote_ip 10.8.1.46 106512 username forozande 106512 mac 106512 bytes_out 0 106512 bytes_in 0 106512 station_ip 113.203.118.209 106512 port 11 106512 unique_id port 106512 remote_ip 10.8.0.74 106514 username avaanna 106514 mac 106514 bytes_out 22915287 106514 bytes_in 427568431 106514 station_ip 113.203.76.13 106514 port 2 106514 unique_id port 106514 remote_ip 10.8.1.46 106519 username mehdizare 106519 mac 106519 bytes_out 0 106519 bytes_in 0 106519 station_ip 5.119.206.12 106519 port 13 106519 unique_id port 106519 remote_ip 10.8.0.90 106521 username mehdizare 106521 mac 106521 bytes_out 17124 106521 bytes_in 16494 106521 station_ip 5.119.206.12 106521 port 11 106521 unique_id port 106521 remote_ip 10.8.0.90 106522 username mehdizare 106522 mac 106522 bytes_out 13767 106522 bytes_in 20056 106522 station_ip 5.119.206.12 106522 port 15 106522 unique_id port 106522 remote_ip 10.8.0.90 106526 username zare 106526 mac 106526 bytes_out 0 106526 bytes_in 0 106526 station_ip 94.183.214.14 106526 port 2 106526 unique_id port 106526 remote_ip 10.8.1.58 106528 username kordestani 106528 mac 106528 bytes_out 3518512 106528 bytes_in 53437427 106528 station_ip 151.235.83.69 106528 port 15 106528 unique_id port 106528 remote_ip 10.8.0.134 106530 username zare 106530 mac 106530 bytes_out 4289444 106530 bytes_in 4727504 106530 station_ip 94.183.214.14 106530 port 2 106530 unique_id port 106530 remote_ip 10.8.1.58 106535 username zare 106535 mac 106535 bytes_out 84119 106535 bytes_in 277793 106535 station_ip 94.183.214.14 106535 port 4 106535 unique_id port 106535 remote_ip 10.8.1.58 106536 username mehdizare 106536 mac 106536 bytes_out 25672 106536 bytes_in 43471 106536 station_ip 5.119.206.12 106536 port 3 106536 unique_id port 106536 remote_ip 10.8.1.42 106537 username zare 106537 kill_reason Maximum check online fails reached 106537 mac 106537 bytes_out 0 106537 bytes_in 0 106537 station_ip 94.183.214.14 106537 port 4 106537 unique_id port 106541 username zare 106541 mac 106541 bytes_out 0 106541 bytes_in 0 106541 station_ip 94.183.214.14 106541 port 12 106541 unique_id port 106541 remote_ip 10.8.0.18 106545 username zare 106545 mac 106545 bytes_out 0 106545 bytes_in 0 106545 station_ip 94.183.214.14 106545 port 3 106545 unique_id port 106545 remote_ip 10.8.1.58 106550 username aminvpn 106550 mac 106550 bytes_out 0 106550 bytes_in 0 106550 station_ip 37.129.92.70 106550 port 16 106550 unique_id port 106550 remote_ip 10.8.0.14 106551 username zare 106551 mac 106551 bytes_out 0 106551 bytes_in 0 106551 station_ip 94.183.214.14 106551 port 15 106551 unique_id port 106551 remote_ip 10.8.0.18 106553 username zare 106553 mac 106553 bytes_out 0 106553 bytes_in 0 106553 station_ip 94.183.214.14 106553 port 3 106553 unique_id port 106553 remote_ip 10.8.1.58 106563 username mehdizare 106563 kill_reason Maximum number of concurrent logins reached 106563 mac 106563 bytes_out 0 106563 bytes_in 0 106563 station_ip 5.119.206.12 106563 port 13 106563 unique_id port 106568 username zare 106568 mac 106568 bytes_out 0 106568 bytes_in 0 106568 station_ip 94.183.214.14 106568 port 9 106568 unique_id port 106568 remote_ip 10.8.0.18 106572 username mohammadreza 106572 mac 106572 bytes_out 0 106538 port 12 106538 unique_id port 106542 username aminvpn 106542 mac 106542 bytes_out 96342 106542 bytes_in 324919 106542 station_ip 37.129.92.70 106542 port 16 106542 unique_id port 106542 remote_ip 10.8.0.14 106543 username zare 106543 mac 106543 bytes_out 0 106543 bytes_in 0 106543 station_ip 94.183.214.14 106543 port 15 106543 unique_id port 106543 remote_ip 10.8.0.18 106547 username zare 106547 mac 106547 bytes_out 0 106547 bytes_in 0 106547 station_ip 94.183.214.14 106547 port 3 106547 unique_id port 106547 remote_ip 10.8.1.58 106548 username aminvpn 106548 mac 106548 bytes_out 0 106548 bytes_in 0 106548 station_ip 37.129.22.233 106548 port 12 106548 unique_id port 106548 remote_ip 10.8.0.14 106552 username aminvpn 106552 mac 106552 bytes_out 0 106552 bytes_in 0 106552 station_ip 37.129.22.233 106552 port 12 106552 unique_id port 106552 remote_ip 10.8.0.14 106554 username aminvpn 106554 mac 106554 bytes_out 0 106554 bytes_in 0 106554 station_ip 37.129.92.70 106554 port 15 106554 unique_id port 106554 remote_ip 10.8.0.14 106555 username aminvpn 106555 mac 106555 bytes_out 0 106555 bytes_in 0 106555 station_ip 37.129.22.233 106555 port 12 106555 unique_id port 106555 remote_ip 10.8.0.14 106556 username aminvpn 106556 mac 106556 bytes_out 0 106556 bytes_in 0 106556 station_ip 37.129.92.70 106556 port 15 106556 unique_id port 106556 remote_ip 10.8.0.14 106557 username zare 106557 mac 106557 bytes_out 0 106557 bytes_in 0 106557 station_ip 94.183.214.14 106557 port 15 106557 unique_id port 106557 remote_ip 10.8.0.18 106560 username avaanna 106560 mac 106560 bytes_out 0 106560 bytes_in 0 106560 station_ip 113.203.76.13 106560 port 15 106560 unique_id port 106560 remote_ip 10.8.0.98 106561 username malekpoir 106561 mac 106561 bytes_out 0 106561 bytes_in 0 106561 station_ip 5.119.21.231 106561 port 10 106561 unique_id port 106564 username mehdizare 106564 mac 106564 bytes_out 51233 106564 bytes_in 68205 106564 station_ip 5.119.206.12 106564 port 9 106564 unique_id port 106564 remote_ip 10.8.0.90 106565 username zare 106565 mac 106565 bytes_out 0 106565 bytes_in 0 106565 station_ip 94.183.214.14 106565 port 9 106565 unique_id port 106565 remote_ip 10.8.0.18 106566 username zare 106566 mac 106566 bytes_out 0 106566 bytes_in 0 106566 station_ip 94.183.214.14 106566 port 9 106566 unique_id port 106566 remote_ip 10.8.0.18 106567 username alirr 106567 unique_id port 106567 terminate_cause User-Request 106567 bytes_out 3274345 106567 bytes_in 51730007 106567 station_ip 31.56.112.19 106567 port 15728819 106567 nas_port_type Virtual 106567 remote_ip 5.5.5.19 106569 username abbasaskari 106569 mac 106569 bytes_out 0 106569 bytes_in 0 106569 station_ip 37.129.121.76 106569 port 17 106569 unique_id port 106569 remote_ip 10.8.0.10 106570 username abbasaskari 106570 mac 106570 bytes_out 0 106570 bytes_in 0 106570 station_ip 37.129.121.76 106570 port 17 106570 unique_id port 106570 remote_ip 10.8.0.10 106571 username zare 106571 mac 106571 bytes_out 22565 106571 bytes_in 92257 106571 station_ip 94.183.214.14 106571 port 9 106571 unique_id port 106571 remote_ip 10.8.0.18 106577 username zare 106577 mac 106577 bytes_out 0 106577 bytes_in 0 106577 station_ip 94.183.214.14 106577 port 9 106577 unique_id port 106577 remote_ip 10.8.0.18 106579 username zare 106579 mac 106579 bytes_out 0 106579 bytes_in 0 106572 bytes_in 0 106572 station_ip 94.176.15.124 106572 port 14 106572 unique_id port 106572 remote_ip 10.8.0.94 106574 username zare 106574 mac 106574 bytes_out 0 106574 bytes_in 0 106574 station_ip 94.183.214.14 106574 port 9 106574 unique_id port 106574 remote_ip 10.8.0.18 106576 username zare 106576 mac 106576 bytes_out 0 106576 bytes_in 0 106576 station_ip 94.183.214.14 106576 port 9 106576 unique_id port 106576 remote_ip 10.8.0.18 106578 username zare 106578 mac 106578 bytes_out 0 106578 bytes_in 0 106578 station_ip 94.183.214.14 106578 port 9 106578 unique_id port 106578 remote_ip 10.8.0.18 106587 username malekpoir 106587 kill_reason Another user logged on this global unique id 106587 mac 106587 bytes_out 0 106587 bytes_in 0 106587 station_ip 5.119.21.231 106587 port 15 106587 unique_id port 106587 remote_ip 10.8.0.58 106588 username amir 106588 mac 106588 bytes_out 0 106588 bytes_in 0 106588 station_ip 46.225.210.126 106588 port 2 106588 unique_id port 106588 remote_ip 10.8.0.50 106589 username malekpoir 106589 kill_reason Another user logged on this global unique id 106589 mac 106589 bytes_out 0 106589 bytes_in 0 106589 station_ip 5.119.21.231 106589 port 15 106589 unique_id port 106591 username avaanna 106591 mac 106591 bytes_out 0 106591 bytes_in 0 106591 station_ip 113.203.76.13 106591 port 16 106591 unique_id port 106591 remote_ip 10.8.0.98 106593 username amir 106593 mac 106593 bytes_out 176744 106593 bytes_in 671770 106593 station_ip 46.225.210.126 106593 port 2 106593 unique_id port 106593 remote_ip 10.8.0.50 106595 username avaanna 106595 mac 106595 bytes_out 13090 106595 bytes_in 20942 106595 station_ip 113.203.76.13 106595 port 13 106595 unique_id port 106595 remote_ip 10.8.0.98 106598 username mosi 106598 mac 106598 bytes_out 0 106598 bytes_in 0 106598 station_ip 93.114.27.183 106598 port 16 106598 unique_id port 106598 remote_ip 10.8.0.138 106599 username mosi 106599 mac 106599 bytes_out 0 106599 bytes_in 0 106599 station_ip 93.114.27.183 106599 port 16 106599 unique_id port 106599 remote_ip 10.8.0.138 106600 username avaanna 106600 mac 106600 bytes_out 25068 106600 bytes_in 32681 106600 station_ip 113.203.76.13 106600 port 13 106600 unique_id port 106600 remote_ip 10.8.0.98 106602 username avaanna 106602 mac 106602 bytes_out 0 106602 bytes_in 0 106602 station_ip 113.203.76.13 106602 port 13 106602 unique_id port 106602 remote_ip 10.8.0.98 106603 username amir 106603 mac 106603 bytes_out 2004847 106603 bytes_in 12510773 106603 station_ip 46.225.210.126 106603 port 2 106603 unique_id port 106603 remote_ip 10.8.0.50 106607 username avaanna 106607 mac 106607 bytes_out 0 106607 bytes_in 0 106607 station_ip 113.203.76.13 106607 port 3 106607 unique_id port 106607 remote_ip 10.8.1.46 106612 username amir 106612 mac 106612 bytes_out 492770 106612 bytes_in 2165134 106612 station_ip 46.225.210.126 106612 port 2 106612 unique_id port 106612 remote_ip 10.8.0.50 106613 username abbasaskari 106613 mac 106613 bytes_out 4205 106613 bytes_in 6778 106613 station_ip 37.129.124.248 106613 port 13 106613 unique_id port 106613 remote_ip 10.8.0.10 106619 username amir 106619 mac 106619 bytes_out 215351 106619 bytes_in 995777 106619 station_ip 46.225.210.126 106619 port 2 106619 unique_id port 106619 remote_ip 10.8.0.50 106621 username houshang 106621 mac 106621 bytes_out 106308 106621 bytes_in 178777 106621 station_ip 5.120.184.3 106579 station_ip 94.183.214.14 106579 port 9 106579 unique_id port 106579 remote_ip 10.8.0.18 106580 username zare 106580 kill_reason Maximum check online fails reached 106580 mac 106580 bytes_out 0 106580 bytes_in 0 106580 station_ip 94.183.214.14 106580 port 14 106580 unique_id port 106581 username avaanna 106581 mac 106581 bytes_out 86878 106581 bytes_in 112077 106581 station_ip 113.203.76.13 106581 port 16 106581 unique_id port 106581 remote_ip 10.8.0.98 106583 username kordestani 106583 mac 106583 bytes_out 2800823 106583 bytes_in 31713075 106583 station_ip 151.235.83.69 106583 port 13 106583 unique_id port 106583 remote_ip 10.8.0.134 106586 username mehdizare 106586 mac 106586 bytes_out 0 106586 bytes_in 0 106586 station_ip 5.119.206.12 106586 port 2 106586 unique_id port 106590 username zare 106590 mac 106590 bytes_out 524604 106590 bytes_in 2353077 106590 station_ip 94.183.214.14 106590 port 17 106590 unique_id port 106590 remote_ip 10.8.0.18 106592 username ahmadi 106592 unique_id port 106592 terminate_cause User-Request 106592 bytes_out 86870 106592 bytes_in 737304 106592 station_ip 83.122.4.68 106592 port 15728820 106592 nas_port_type Virtual 106592 remote_ip 5.5.5.17 106594 username amir 106594 mac 106594 bytes_out 0 106594 bytes_in 0 106594 station_ip 46.225.210.126 106594 port 2 106594 unique_id port 106594 remote_ip 10.8.0.50 106596 username kordestani 106596 mac 106596 bytes_out 416620 106596 bytes_in 464146 106596 station_ip 151.235.83.69 106596 port 16 106596 unique_id port 106596 remote_ip 10.8.0.134 106597 username zare 106597 mac 106597 bytes_out 500904 106597 bytes_in 8357447 106597 station_ip 94.183.214.14 106597 port 17 106597 unique_id port 106597 remote_ip 10.8.0.18 106601 username avaanna 106601 mac 106601 bytes_out 0 106601 bytes_in 0 106601 station_ip 113.203.76.13 106601 port 16 106601 unique_id port 106601 remote_ip 10.8.0.98 106606 username kamali1 106606 mac 106606 bytes_out 0 106606 bytes_in 0 106606 station_ip 5.120.168.134 106606 port 10 106606 unique_id port 106606 remote_ip 10.8.0.70 106608 username forozande 106608 mac 106608 bytes_out 214159 106608 bytes_in 335424 106608 station_ip 37.129.118.34 106608 port 13 106608 unique_id port 106608 remote_ip 10.8.0.74 106610 username amir 106610 mac 106610 bytes_out 29443 106610 bytes_in 118851 106610 station_ip 46.225.210.126 106610 port 2 106610 unique_id port 106610 remote_ip 10.8.0.50 106614 username tahmasebi 106614 kill_reason Another user logged on this global unique id 106614 mac 106614 bytes_out 0 106614 bytes_in 0 106614 station_ip 5.119.42.112 106614 port 16 106614 unique_id port 106614 remote_ip 10.8.0.42 106615 username zare 106615 mac 106615 bytes_out 0 106615 bytes_in 0 106615 station_ip 94.183.214.14 106615 port 13 106615 unique_id port 106615 remote_ip 10.8.0.18 106618 username avaanna 106618 mac 106618 bytes_out 0 106618 bytes_in 0 106618 station_ip 113.203.76.13 106618 port 5 106618 unique_id port 106618 remote_ip 10.8.1.46 106620 username tahmasebi 106620 kill_reason Another user logged on this global unique id 106620 mac 106620 bytes_out 0 106620 bytes_in 0 106620 station_ip 5.119.42.112 106620 port 16 106620 unique_id port 106625 username mosi 106625 mac 106625 bytes_out 0 106625 bytes_in 0 106625 station_ip 151.235.112.178 106625 port 17 106625 unique_id port 106625 remote_ip 10.8.0.138 106631 username tahmasebi 106631 kill_reason Another user logged on this global unique id 106631 mac 106631 bytes_out 0 106582 bytes_out 0 106582 bytes_in 0 106582 station_ip 113.203.76.13 106582 port 18 106582 unique_id port 106582 remote_ip 10.8.0.98 106584 username avaanna 106584 mac 106584 bytes_out 345078 106584 bytes_in 6353478 106584 station_ip 113.203.76.13 106584 port 3 106584 unique_id port 106584 remote_ip 10.8.1.46 106585 username kordestani 106585 mac 106585 bytes_out 434436 106585 bytes_in 5858384 106585 station_ip 151.235.83.69 106585 port 13 106585 unique_id port 106585 remote_ip 10.8.0.134 106604 username avaanna 106604 mac 106604 bytes_out 31569 106604 bytes_in 42527 106604 station_ip 113.203.76.13 106604 port 3 106604 unique_id port 106604 remote_ip 10.8.1.46 106605 username amir 106605 mac 106605 bytes_out 40907 106605 bytes_in 183230 106605 station_ip 46.225.210.126 106605 port 2 106605 unique_id port 106605 remote_ip 10.8.0.50 106609 username avaanna 106609 mac 106609 bytes_out 0 106609 bytes_in 0 106609 station_ip 113.203.76.13 106609 port 3 106609 unique_id port 106609 remote_ip 10.8.1.46 106611 username avaanna 106611 mac 106611 bytes_out 0 106611 bytes_in 0 106611 station_ip 113.203.76.13 106611 port 3 106611 unique_id port 106611 remote_ip 10.8.1.46 106616 username zare 106616 mac 106616 bytes_out 0 106616 bytes_in 0 106616 station_ip 94.183.214.14 106616 port 13 106616 unique_id port 106616 remote_ip 10.8.0.18 106617 username zare 106617 mac 106617 bytes_out 22155 106617 bytes_in 29468 106617 station_ip 94.183.214.14 106617 port 13 106617 unique_id port 106617 remote_ip 10.8.0.18 106626 username tahmasebi 106626 kill_reason Another user logged on this global unique id 106626 mac 106626 bytes_out 0 106626 bytes_in 0 106626 station_ip 5.119.42.112 106626 port 16 106626 unique_id port 106627 username hashtadani 106627 unique_id port 106627 terminate_cause Lost-Carrier 106627 bytes_out 150583 106627 bytes_in 2456536 106627 station_ip 5.202.11.190 106627 port 15728825 106627 nas_port_type Virtual 106627 remote_ip 5.5.5.12 106629 username askari 106629 mac 106629 bytes_out 0 106629 bytes_in 0 106629 station_ip 5.119.148.14 106629 port 13 106629 unique_id port 106629 remote_ip 10.8.0.62 106633 username aminvpn 106633 unique_id port 106633 terminate_cause User-Request 106633 bytes_out 1111829 106633 bytes_in 14420118 106633 station_ip 5.120.40.98 106633 port 15728826 106633 nas_port_type Virtual 106633 remote_ip 5.5.5.10 106639 username ayobi 106639 kill_reason Another user logged on this global unique id 106639 mac 106639 bytes_out 0 106639 bytes_in 0 106639 station_ip 83.122.108.183 106639 port 13 106639 unique_id port 106639 remote_ip 10.8.0.126 106645 username ayobi 106645 kill_reason Another user logged on this global unique id 106645 mac 106645 bytes_out 0 106645 bytes_in 0 106645 station_ip 83.122.108.183 106645 port 13 106645 unique_id port 106646 username forozande 106646 mac 106646 bytes_out 0 106646 bytes_in 0 106646 station_ip 37.129.214.172 106646 port 19 106646 unique_id port 106646 remote_ip 10.8.0.74 106653 username aminvpn 106653 mac 106653 bytes_out 0 106653 bytes_in 0 106653 station_ip 83.123.73.154 106653 port 2 106653 unique_id port 106653 remote_ip 10.8.0.14 106654 username forozande 106654 mac 106654 bytes_out 0 106654 bytes_in 0 106654 station_ip 37.129.214.172 106654 port 10 106654 unique_id port 106654 remote_ip 10.8.0.74 106658 username forozande 106658 mac 106658 bytes_out 0 106658 bytes_in 0 106658 station_ip 83.123.137.159 106658 port 2 106658 unique_id port 106658 remote_ip 10.8.0.74 106621 port 17 106621 unique_id port 106621 remote_ip 10.8.0.22 106622 username aminvpn 106622 kill_reason Wrong password 106622 unique_id port 106622 bytes_out 0 106622 bytes_in 0 106622 station_ip 31.57.141.111 106622 port 15728822 106622 nas_port_type Virtual 106623 username kordestani 106623 mac 106623 bytes_out 1347417 106623 bytes_in 6385781 106623 station_ip 151.235.83.69 106623 port 18 106623 unique_id port 106623 remote_ip 10.8.0.134 106624 username aminvpn 106624 unique_id port 106624 terminate_cause User-Request 106624 bytes_out 79826 106624 bytes_in 121998 106624 station_ip 31.57.141.111 106624 port 15728823 106624 nas_port_type Virtual 106624 remote_ip 5.5.5.15 106628 username avaanna 106628 mac 106628 bytes_out 0 106628 bytes_in 0 106628 station_ip 113.203.76.13 106628 port 2 106628 unique_id port 106628 remote_ip 10.8.0.98 106630 username amir 106630 mac 106630 bytes_out 0 106630 bytes_in 0 106630 station_ip 46.225.210.126 106630 port 17 106630 unique_id port 106630 remote_ip 10.8.0.50 106636 username amir 106636 mac 106636 bytes_out 0 106636 bytes_in 0 106636 station_ip 46.225.210.126 106636 port 17 106636 unique_id port 106636 remote_ip 10.8.0.50 106637 username malekpoir 106637 kill_reason Another user logged on this global unique id 106637 mac 106637 bytes_out 0 106637 bytes_in 0 106637 station_ip 5.119.21.231 106637 port 15 106637 unique_id port 106638 username malekpoir 106638 kill_reason Another user logged on this global unique id 106638 mac 106638 bytes_out 0 106638 bytes_in 0 106638 station_ip 5.119.21.231 106638 port 15 106638 unique_id port 106642 username aminvpn 106642 mac 106642 bytes_out 0 106642 bytes_in 0 106642 station_ip 83.123.73.154 106642 port 10 106642 unique_id port 106642 remote_ip 10.8.0.14 106647 username aminvpn 106647 mac 106647 bytes_out 0 106647 bytes_in 0 106647 station_ip 83.123.73.154 106647 port 17 106647 unique_id port 106647 remote_ip 10.8.0.14 106648 username aminvpn 106648 mac 106648 bytes_out 0 106648 bytes_in 0 106648 station_ip 37.129.22.233 106648 port 12 106648 unique_id port 106648 remote_ip 10.8.0.14 106650 username kamali1 106650 mac 106650 bytes_out 0 106650 bytes_in 0 106650 station_ip 5.120.168.134 106650 port 2 106650 unique_id port 106650 remote_ip 10.8.0.70 106651 username aminvpn 106651 mac 106651 bytes_out 0 106651 bytes_in 0 106651 station_ip 37.129.22.233 106651 port 12 106651 unique_id port 106651 remote_ip 10.8.0.14 106652 username kamali1 106652 mac 106652 bytes_out 0 106652 bytes_in 0 106652 station_ip 5.120.168.134 106652 port 17 106652 unique_id port 106652 remote_ip 10.8.0.70 106656 username aminvpn 106656 mac 106656 bytes_out 0 106656 bytes_in 0 106656 station_ip 37.129.22.233 106656 port 17 106656 unique_id port 106656 remote_ip 10.8.0.14 106659 username aminvpn 106659 mac 106659 bytes_out 0 106659 bytes_in 0 106659 station_ip 83.123.73.154 106659 port 10 106659 unique_id port 106659 remote_ip 10.8.0.14 106660 username aminvpn 106660 unique_id port 106660 terminate_cause Lost-Carrier 106660 bytes_out 394377 106660 bytes_in 4721386 106660 station_ip 5.119.9.253 106660 port 15728831 106660 nas_port_type Virtual 106660 remote_ip 5.5.5.6 106665 username avaanna 106665 mac 106665 bytes_out 0 106665 bytes_in 0 106665 station_ip 113.203.76.13 106665 port 3 106665 unique_id port 106665 remote_ip 10.8.1.46 106666 username aminvpn 106666 mac 106666 bytes_out 0 106666 bytes_in 0 106666 station_ip 37.129.22.233 106631 bytes_in 0 106631 station_ip 5.119.42.112 106631 port 16 106631 unique_id port 106632 username aminvpn 106632 unique_id port 106632 terminate_cause User-Request 106632 bytes_out 9585206 106632 bytes_in 368032885 106632 station_ip 31.57.141.111 106632 port 15728824 106632 nas_port_type Virtual 106632 remote_ip 5.5.5.14 106634 username mosi 106634 kill_reason Another user logged on this global unique id 106634 mac 106634 bytes_out 0 106634 bytes_in 0 106634 station_ip 151.235.112.178 106634 port 2 106634 unique_id port 106634 remote_ip 10.8.0.138 106635 username mosi 106635 mac 106635 bytes_out 0 106635 bytes_in 0 106635 station_ip 151.235.112.178 106635 port 2 106635 unique_id port 106640 username kamali1 106640 mac 106640 bytes_out 0 106640 bytes_in 0 106640 station_ip 5.120.168.134 106640 port 10 106640 unique_id port 106640 remote_ip 10.8.0.70 106641 username aminvpn 106641 mac 106641 bytes_out 0 106641 bytes_in 0 106641 station_ip 37.129.22.233 106641 port 12 106641 unique_id port 106643 username aminvpn 106643 mac 106643 bytes_out 0 106643 bytes_in 0 106643 station_ip 37.129.22.233 106643 port 12 106643 unique_id port 106643 remote_ip 10.8.0.14 106644 username abbasaskari 106644 mac 106644 bytes_out 0 106644 bytes_in 0 106644 station_ip 37.129.124.68 106644 port 10 106644 unique_id port 106644 remote_ip 10.8.0.10 106649 username aminvpn 106649 mac 106649 bytes_out 0 106649 bytes_in 0 106649 station_ip 83.123.73.154 106649 port 17 106649 unique_id port 106649 remote_ip 10.8.0.14 106655 username aminvpn 106655 unique_id port 106655 terminate_cause User-Request 106655 bytes_out 2177372 106655 bytes_in 92353464 106655 station_ip 31.57.141.111 106655 port 15728830 106655 nas_port_type Virtual 106655 remote_ip 5.5.5.8 106657 username amir 106657 mac 106657 bytes_out 161020 106657 bytes_in 174580 106657 station_ip 46.225.210.126 106657 port 3 106657 unique_id port 106657 remote_ip 10.8.1.22 106661 username avaanna 106661 mac 106661 bytes_out 0 106661 bytes_in 0 106661 station_ip 113.203.76.13 106661 port 18 106661 unique_id port 106661 remote_ip 10.8.0.98 106663 username ahmadi 106663 unique_id port 106663 terminate_cause User-Request 106663 bytes_out 47592 106663 bytes_in 345541 106663 station_ip 83.122.5.168 106663 port 15728832 106663 nas_port_type Virtual 106663 remote_ip 5.5.5.4 106670 username amir 106670 mac 106670 bytes_out 63823 106670 bytes_in 445431 106670 station_ip 46.225.210.126 106670 port 3 106670 unique_id port 106670 remote_ip 10.8.1.22 106671 username kamali1 106671 mac 106671 bytes_out 0 106671 bytes_in 0 106671 station_ip 5.120.168.134 106671 port 12 106671 unique_id port 106671 remote_ip 10.8.0.70 106679 username amir 106679 mac 106679 bytes_out 0 106679 bytes_in 0 106679 station_ip 46.225.210.126 106679 port 5 106679 unique_id port 106679 remote_ip 10.8.1.22 106682 username tahmasebi 106682 kill_reason Another user logged on this global unique id 106682 mac 106682 bytes_out 0 106682 bytes_in 0 106682 station_ip 5.119.42.112 106682 port 16 106682 unique_id port 106685 username askari 106685 mac 106685 bytes_out 0 106685 bytes_in 0 106685 station_ip 5.119.141.250 106685 port 12 106685 unique_id port 106685 remote_ip 10.8.0.62 106688 username amir 106688 mac 106688 bytes_out 27222 106688 bytes_in 84081 106688 station_ip 46.225.210.126 106688 port 5 106688 unique_id port 106688 remote_ip 10.8.1.22 106689 username aminvpn 106689 mac 106689 bytes_out 0 106689 bytes_in 0 106662 username aminvpn 106662 mac 106662 bytes_out 0 106662 bytes_in 0 106662 station_ip 37.129.22.233 106662 port 2 106662 unique_id port 106662 remote_ip 10.8.0.14 106664 username aminvpn 106664 mac 106664 bytes_out 0 106664 bytes_in 0 106664 station_ip 83.123.73.154 106664 port 17 106664 unique_id port 106664 remote_ip 10.8.0.14 106668 username amir 106668 mac 106668 bytes_out 0 106668 bytes_in 0 106668 station_ip 46.225.210.126 106668 port 5 106668 unique_id port 106668 remote_ip 10.8.1.22 106669 username avaanna 106669 mac 106669 bytes_out 28632 106669 bytes_in 39848 106669 station_ip 113.203.76.13 106669 port 6 106669 unique_id port 106669 remote_ip 10.8.1.46 106673 username aminvpn 106673 mac 106673 bytes_out 13194 106673 bytes_in 21083 106673 station_ip 83.123.73.154 106673 port 6 106673 unique_id port 106673 remote_ip 10.8.1.6 106675 username aminvpn 106675 mac 106675 bytes_out 0 106675 bytes_in 0 106675 station_ip 5.120.40.98 106675 port 7 106675 unique_id port 106675 remote_ip 10.8.1.6 106676 username aminvpn 106676 mac 106676 bytes_out 0 106676 bytes_in 0 106676 station_ip 5.120.40.98 106676 port 3 106676 unique_id port 106676 remote_ip 10.8.1.6 106678 username kamali1 106678 mac 106678 bytes_out 0 106678 bytes_in 0 106678 station_ip 5.120.168.134 106678 port 17 106678 unique_id port 106678 remote_ip 10.8.0.70 106681 username amir 106681 mac 106681 bytes_out 49098 106681 bytes_in 140688 106681 station_ip 46.225.210.126 106681 port 5 106681 unique_id port 106681 remote_ip 10.8.1.22 106684 username aminvpn 106684 unique_id port 106684 terminate_cause Lost-Carrier 106684 bytes_out 503098 106684 bytes_in 5367033 106684 station_ip 5.120.40.98 106684 port 15728827 106684 nas_port_type Virtual 106684 remote_ip 5.5.5.9 106692 username aminvpn 106692 mac 106692 bytes_out 0 106692 bytes_in 0 106692 station_ip 37.129.22.233 106692 port 20 106692 unique_id port 106692 remote_ip 10.8.0.14 106695 username aminvpn 106695 mac 106695 bytes_out 0 106695 bytes_in 0 106695 station_ip 37.129.22.233 106695 port 20 106695 unique_id port 106695 remote_ip 10.8.0.14 106696 username aminvpn 106696 mac 106696 bytes_out 0 106696 bytes_in 0 106696 station_ip 5.120.40.98 106696 port 9 106696 unique_id port 106696 remote_ip 10.8.0.14 106698 username askari 106698 mac 106698 bytes_out 0 106698 bytes_in 0 106698 station_ip 5.119.141.250 106698 port 12 106698 unique_id port 106698 remote_ip 10.8.0.62 106699 username aminvpn 106699 mac 106699 bytes_out 0 106699 bytes_in 0 106699 station_ip 37.129.22.233 106699 port 21 106699 unique_id port 106699 remote_ip 10.8.0.14 106701 username mirzaei 106701 mac 106701 bytes_out 0 106701 bytes_in 0 106701 station_ip 5.114.219.8 106701 port 17 106701 unique_id port 106701 remote_ip 10.8.0.66 106703 username aminvpn 106703 mac 106703 bytes_out 0 106703 bytes_in 0 106703 station_ip 5.120.40.98 106703 port 12 106703 unique_id port 106703 remote_ip 10.8.0.14 106708 username aminvpn 106708 mac 106708 bytes_out 0 106708 bytes_in 0 106708 station_ip 5.120.40.98 106708 port 13 106708 unique_id port 106708 remote_ip 10.8.0.14 106711 username aminvpn 106711 mac 106711 bytes_out 0 106711 bytes_in 0 106711 station_ip 5.120.40.98 106711 port 12 106711 unique_id port 106711 remote_ip 10.8.0.14 106714 username aminvpn 106714 mac 106714 bytes_out 0 106714 bytes_in 0 106666 port 2 106666 unique_id port 106666 remote_ip 10.8.0.14 106667 username aminvpn 106667 mac 106667 bytes_out 0 106667 bytes_in 0 106667 station_ip 83.123.73.154 106667 port 17 106667 unique_id port 106667 remote_ip 10.8.0.14 106672 username mohammadmahdi 106672 mac 106672 bytes_out 0 106672 bytes_in 0 106672 station_ip 5.120.17.32 106672 port 10 106672 unique_id port 106672 remote_ip 10.8.0.54 106674 username avaanna 106674 mac 106674 bytes_out 14245 106674 bytes_in 17591 106674 station_ip 113.203.76.13 106674 port 3 106674 unique_id port 106674 remote_ip 10.8.1.46 106677 username aminvpn 106677 mac 106677 bytes_out 0 106677 bytes_in 0 106677 station_ip 5.120.40.98 106677 port 3 106677 unique_id port 106677 remote_ip 10.8.1.6 106680 username mohammadmahdi 106680 mac 106680 bytes_out 0 106680 bytes_in 0 106680 station_ip 5.120.17.32 106680 port 10 106680 unique_id port 106680 remote_ip 10.8.0.54 106683 username aminvpn 106683 kill_reason Maximum check online fails reached 106683 mac 106683 bytes_out 0 106683 bytes_in 0 106683 station_ip 5.120.40.98 106683 port 3 106683 unique_id port 106686 username amir 106686 mac 106686 bytes_out 67135 106686 bytes_in 439543 106686 station_ip 46.225.210.126 106686 port 5 106686 unique_id port 106686 remote_ip 10.8.1.22 106687 username mirzaei 106687 mac 106687 bytes_out 0 106687 bytes_in 0 106687 station_ip 5.119.242.3 106687 port 9 106687 unique_id port 106687 remote_ip 10.8.0.66 106690 username alirezazadeh 106690 unique_id port 106690 terminate_cause User-Request 106690 bytes_out 34404935 106690 bytes_in 616856530 106690 station_ip 31.56.152.22 106690 port 15728818 106690 nas_port_type Virtual 106690 remote_ip 5.5.5.21 106693 username askari 106693 mac 106693 bytes_out 0 106693 bytes_in 0 106693 station_ip 5.119.141.250 106693 port 12 106693 unique_id port 106693 remote_ip 10.8.0.62 106694 username aminvpn 106694 mac 106694 bytes_out 0 106694 bytes_in 0 106694 station_ip 5.120.40.98 106694 port 9 106694 unique_id port 106694 remote_ip 10.8.0.14 106705 username aminvpn 106705 mac 106705 bytes_out 0 106705 bytes_in 0 106705 station_ip 5.120.40.98 106705 port 12 106705 unique_id port 106705 remote_ip 10.8.0.14 106706 username askari 106706 mac 106706 bytes_out 0 106706 bytes_in 0 106706 station_ip 5.119.141.250 106706 port 9 106706 unique_id port 106706 remote_ip 10.8.0.62 106707 username aminvpn 106707 mac 106707 bytes_out 0 106707 bytes_in 0 106707 station_ip 37.129.22.233 106707 port 12 106707 unique_id port 106707 remote_ip 10.8.0.14 106709 username askari 106709 mac 106709 bytes_out 0 106709 bytes_in 0 106709 station_ip 5.119.141.250 106709 port 9 106709 unique_id port 106709 remote_ip 10.8.0.62 106710 username aminvpn 106710 mac 106710 bytes_out 0 106710 bytes_in 0 106710 station_ip 5.120.40.98 106710 port 12 106710 unique_id port 106710 remote_ip 10.8.0.14 106712 username aminvpn 106712 mac 106712 bytes_out 0 106712 bytes_in 0 106712 station_ip 5.120.40.98 106712 port 12 106712 unique_id port 106712 remote_ip 10.8.0.14 106715 username aminvpn 106715 mac 106715 bytes_out 196999 106715 bytes_in 355307 106715 station_ip 83.123.73.154 106715 port 6 106715 unique_id port 106715 remote_ip 10.8.1.6 106716 username amir 106716 mac 106716 bytes_out 0 106716 bytes_in 0 106716 station_ip 46.225.210.126 106716 port 5 106716 unique_id port 106716 remote_ip 10.8.1.22 106719 username askari 106689 station_ip 37.129.22.233 106689 port 2 106689 unique_id port 106689 remote_ip 10.8.0.14 106691 username aminvpn 106691 mac 106691 bytes_out 0 106691 bytes_in 0 106691 station_ip 5.120.40.98 106691 port 9 106691 unique_id port 106691 remote_ip 10.8.0.14 106697 username abbasaskari 106697 mac 106697 bytes_out 0 106697 bytes_in 0 106697 station_ip 37.129.78.120 106697 port 20 106697 unique_id port 106697 remote_ip 10.8.0.10 106700 username amir 106700 mac 106700 bytes_out 40493 106700 bytes_in 192815 106700 station_ip 46.225.210.126 106700 port 5 106700 unique_id port 106700 remote_ip 10.8.1.22 106702 username ayobi 106702 mac 106702 bytes_out 0 106702 bytes_in 0 106702 station_ip 83.122.108.183 106702 port 13 106702 unique_id port 106704 username aminvpn 106704 mac 106704 bytes_out 0 106704 bytes_in 0 106704 station_ip 37.129.22.233 106704 port 13 106704 unique_id port 106704 remote_ip 10.8.0.14 106713 username askari 106713 mac 106713 bytes_out 0 106713 bytes_in 0 106713 station_ip 5.119.141.250 106713 port 9 106713 unique_id port 106713 remote_ip 10.8.0.62 106718 username mohammadmahdi 106718 mac 106718 bytes_out 0 106718 bytes_in 0 106718 station_ip 5.120.17.32 106718 port 10 106718 unique_id port 106718 remote_ip 10.8.0.54 106726 username aminvpn 106726 mac 106726 bytes_out 0 106726 bytes_in 0 106726 station_ip 5.120.40.98 106726 port 9 106726 unique_id port 106726 remote_ip 10.8.0.14 106727 username aminvpn 106727 mac 106727 bytes_out 0 106727 bytes_in 0 106727 station_ip 37.129.22.233 106727 port 10 106727 unique_id port 106727 remote_ip 10.8.0.14 106732 username kamali1 106732 mac 106732 bytes_out 0 106732 bytes_in 0 106732 station_ip 5.120.168.134 106732 port 19 106732 unique_id port 106732 remote_ip 10.8.0.70 106739 username aminvpn 106739 mac 106739 bytes_out 0 106739 bytes_in 0 106739 station_ip 37.129.22.233 106739 port 9 106739 unique_id port 106739 remote_ip 10.8.0.14 106741 username aminvpn 106741 mac 106741 bytes_out 0 106741 bytes_in 0 106741 station_ip 5.120.40.98 106741 port 13 106741 unique_id port 106741 remote_ip 10.8.0.14 106745 username aminvpn 106745 mac 106745 bytes_out 0 106745 bytes_in 0 106745 station_ip 5.120.40.98 106745 port 17 106745 unique_id port 106745 remote_ip 10.8.0.14 106746 username aminvpn 106746 mac 106746 bytes_out 0 106746 bytes_in 0 106746 station_ip 5.120.40.98 106746 port 17 106746 unique_id port 106746 remote_ip 10.8.0.14 106752 username aminvpn 106752 mac 106752 bytes_out 0 106752 bytes_in 0 106752 station_ip 5.120.40.98 106752 port 5 106752 unique_id port 106752 remote_ip 10.8.1.6 106754 username aminvpn 106754 mac 106754 bytes_out 0 106754 bytes_in 0 106754 station_ip 5.120.40.98 106754 port 5 106754 unique_id port 106754 remote_ip 10.8.1.6 106755 username aminvpn 106755 mac 106755 bytes_out 0 106755 bytes_in 0 106755 station_ip 5.120.40.98 106755 port 5 106755 unique_id port 106755 remote_ip 10.8.1.6 106756 username tahmasebi 106756 kill_reason Another user logged on this global unique id 106756 mac 106756 bytes_out 0 106756 bytes_in 0 106756 station_ip 5.119.42.112 106756 port 16 106756 unique_id port 106757 username mosi 106757 kill_reason Another user logged on this global unique id 106757 mac 106757 bytes_out 0 106757 bytes_in 0 106757 station_ip 151.235.112.178 106757 port 18 106757 unique_id port 106757 remote_ip 10.8.0.138 106758 username aminvpn 106714 station_ip 5.120.40.98 106714 port 12 106714 unique_id port 106714 remote_ip 10.8.0.14 106717 username forozande 106717 mac 106717 bytes_out 0 106717 bytes_in 0 106717 station_ip 37.129.22.135 106717 port 2 106717 unique_id port 106717 remote_ip 10.8.0.74 106721 username aminvpn 106721 mac 106721 bytes_out 0 106721 bytes_in 0 106721 station_ip 5.120.40.98 106721 port 10 106721 unique_id port 106721 remote_ip 10.8.0.14 106723 username askari 106723 mac 106723 bytes_out 0 106723 bytes_in 0 106723 station_ip 5.119.141.250 106723 port 2 106723 unique_id port 106723 remote_ip 10.8.0.62 106725 username aminvpn 106725 mac 106725 bytes_out 0 106725 bytes_in 0 106725 station_ip 37.129.22.233 106725 port 2 106725 unique_id port 106725 remote_ip 10.8.0.14 106731 username aminvpn 106731 mac 106731 bytes_out 0 106731 bytes_in 0 106731 station_ip 5.120.40.98 106731 port 13 106731 unique_id port 106731 remote_ip 10.8.0.14 106736 username aminvpn 106736 mac 106736 bytes_out 0 106736 bytes_in 0 106736 station_ip 5.120.40.98 106736 port 17 106736 unique_id port 106736 remote_ip 10.8.0.14 106737 username amir 106737 mac 106737 bytes_out 62913 106737 bytes_in 452688 106737 station_ip 46.225.210.126 106737 port 9 106737 unique_id port 106737 remote_ip 10.8.0.50 106740 username aminvpn 106740 mac 106740 bytes_out 0 106740 bytes_in 0 106740 station_ip 5.120.40.98 106740 port 2 106740 unique_id port 106740 remote_ip 10.8.0.14 106742 username avaanna 106742 mac 106742 bytes_out 0 106742 bytes_in 0 106742 station_ip 113.203.76.13 106742 port 18 106742 unique_id port 106742 remote_ip 10.8.0.98 106743 username aminvpn 106743 mac 106743 bytes_out 0 106743 bytes_in 0 106743 station_ip 5.120.40.98 106743 port 17 106743 unique_id port 106743 remote_ip 10.8.0.14 106747 username aminvpn 106747 mac 106747 bytes_out 0 106747 bytes_in 0 106747 station_ip 83.123.78.86 106747 port 5 106747 unique_id port 106747 remote_ip 10.8.1.6 106749 username askari 106749 mac 106749 bytes_out 32438 106749 bytes_in 135585 106749 station_ip 5.119.141.250 106749 port 2 106749 unique_id port 106749 remote_ip 10.8.0.62 106750 username amir 106750 mac 106750 bytes_out 0 106750 bytes_in 0 106750 station_ip 46.225.210.126 106750 port 9 106750 unique_id port 106750 remote_ip 10.8.0.50 106753 username abbasaskari 106753 mac 106753 bytes_out 0 106753 bytes_in 0 106753 station_ip 37.129.78.120 106753 port 12 106753 unique_id port 106753 remote_ip 10.8.0.10 106759 username aminvpn 106759 mac 106759 bytes_out 0 106759 bytes_in 0 106759 station_ip 5.120.40.98 106759 port 5 106759 unique_id port 106759 remote_ip 10.8.1.6 106760 username alirezazadeh 106760 unique_id port 106760 terminate_cause User-Request 106760 bytes_out 334 106760 bytes_in 172 106760 station_ip 5.119.173.157 106760 port 15728833 106760 nas_port_type Virtual 106760 remote_ip 5.5.5.2 106766 username houshang 106766 mac 106766 bytes_out 0 106766 bytes_in 0 106766 station_ip 5.120.184.3 106766 port 13 106766 unique_id port 106766 remote_ip 10.8.0.22 106768 username mosi 106768 kill_reason Another user logged on this global unique id 106768 mac 106768 bytes_out 0 106768 bytes_in 0 106768 station_ip 151.235.112.178 106768 port 18 106768 unique_id port 106770 username aminvpn 106770 mac 106770 bytes_out 0 106770 bytes_in 0 106770 station_ip 37.129.22.233 106770 port 13 106770 unique_id port 106770 remote_ip 10.8.0.14 106719 mac 106719 bytes_out 0 106719 bytes_in 0 106719 station_ip 5.119.141.250 106719 port 12 106719 unique_id port 106719 remote_ip 10.8.0.62 106720 username aminvpn 106720 mac 106720 bytes_out 0 106720 bytes_in 0 106720 station_ip 37.129.22.233 106720 port 13 106720 unique_id port 106720 remote_ip 10.8.0.14 106722 username abbasaskari 106722 mac 106722 bytes_out 0 106722 bytes_in 0 106722 station_ip 37.129.78.120 106722 port 9 106722 unique_id port 106722 remote_ip 10.8.0.10 106724 username aminvpn 106724 mac 106724 bytes_out 0 106724 bytes_in 0 106724 station_ip 5.120.40.98 106724 port 2 106724 unique_id port 106724 remote_ip 10.8.0.14 106728 username aminvpn 106728 mac 106728 bytes_out 0 106728 bytes_in 0 106728 station_ip 5.120.40.98 106728 port 13 106728 unique_id port 106728 remote_ip 10.8.0.14 106729 username aminvpn 106729 mac 106729 bytes_out 0 106729 bytes_in 0 106729 station_ip 5.120.40.98 106729 port 10 106729 unique_id port 106729 remote_ip 10.8.0.14 106730 username aminvpn 106730 mac 106730 bytes_out 0 106730 bytes_in 0 106730 station_ip 37.129.22.233 106730 port 10 106730 unique_id port 106730 remote_ip 10.8.0.14 106733 username aminvpn 106733 mac 106733 bytes_out 0 106733 bytes_in 0 106733 station_ip 5.120.40.98 106733 port 10 106733 unique_id port 106733 remote_ip 10.8.0.14 106734 username aminvpn 106734 mac 106734 bytes_out 0 106734 bytes_in 0 106734 station_ip 5.120.40.98 106734 port 10 106734 unique_id port 106734 remote_ip 10.8.0.14 106735 username aminvpn 106735 mac 106735 bytes_out 0 106735 bytes_in 0 106735 station_ip 37.129.22.233 106735 port 13 106735 unique_id port 106735 remote_ip 10.8.0.14 106738 username askari 106738 mac 106738 bytes_out 45328 106738 bytes_in 46807 106738 station_ip 5.119.141.250 106738 port 2 106738 unique_id port 106738 remote_ip 10.8.0.62 106744 username aminvpn 106744 mac 106744 bytes_out 0 106744 bytes_in 0 106744 station_ip 37.129.22.233 106744 port 18 106744 unique_id port 106744 remote_ip 10.8.0.14 106748 username aminvpn 106748 mac 106748 bytes_out 0 106748 bytes_in 0 106748 station_ip 5.120.40.98 106748 port 17 106748 unique_id port 106748 remote_ip 10.8.0.14 106751 username aminvpn 106751 mac 106751 bytes_out 0 106751 bytes_in 0 106751 station_ip 5.120.40.98 106751 port 5 106751 unique_id port 106751 remote_ip 10.8.1.6 106761 username alirezazadeh 106761 unique_id port 106761 terminate_cause User-Request 106761 bytes_out 0 106761 bytes_in 0 106761 station_ip 5.119.173.157 106761 port 15728834 106761 nas_port_type Virtual 106761 remote_ip 5.5.5.1 106762 username askari 106762 mac 106762 bytes_out 0 106762 bytes_in 0 106762 station_ip 5.119.141.250 106762 port 2 106762 unique_id port 106762 remote_ip 10.8.0.62 106763 username avaanna 106763 mac 106763 bytes_out 0 106763 bytes_in 0 106763 station_ip 113.203.76.13 106763 port 13 106763 unique_id port 106763 remote_ip 10.8.0.98 106767 username amir 106767 kill_reason Another user logged on this global unique id 106767 mac 106767 bytes_out 0 106767 bytes_in 0 106767 station_ip 46.225.210.126 106767 port 9 106767 unique_id port 106767 remote_ip 10.8.0.50 106769 username aminvpn 106769 mac 106769 bytes_out 0 106769 bytes_in 0 106769 station_ip 37.129.22.233 106769 port 19 106769 unique_id port 106769 remote_ip 10.8.0.14 106771 username bcboard 106771 unique_id port 106771 terminate_cause User-Request 106771 bytes_out 233734 106758 mac 106758 bytes_out 0 106758 bytes_in 0 106758 station_ip 5.120.40.98 106758 port 5 106758 unique_id port 106758 remote_ip 10.8.1.6 106764 username aminvpn 106764 mac 106764 bytes_out 1432082 106764 bytes_in 18805932 106764 station_ip 5.120.40.98 106764 port 5 106764 unique_id port 106764 remote_ip 10.8.1.6 106765 username mosi 106765 kill_reason Another user logged on this global unique id 106765 mac 106765 bytes_out 0 106765 bytes_in 0 106765 station_ip 151.235.112.178 106765 port 18 106765 unique_id port 106775 username amir 106775 kill_reason Another user logged on this global unique id 106775 mac 106775 bytes_out 0 106775 bytes_in 0 106775 station_ip 46.225.210.126 106775 port 9 106775 unique_id port 106777 username avaanna 106777 mac 106777 bytes_out 0 106777 bytes_in 0 106777 station_ip 113.203.76.13 106777 port 2 106777 unique_id port 106777 remote_ip 10.8.0.98 106778 username mosi 106778 mac 106778 bytes_out 0 106778 bytes_in 0 106778 station_ip 151.235.112.178 106778 port 18 106778 unique_id port 106780 username naeimeh 106780 kill_reason Another user logged on this global unique id 106780 mac 106780 bytes_out 0 106780 bytes_in 0 106780 station_ip 83.123.21.87 106780 port 17 106780 unique_id port 106780 remote_ip 10.8.0.78 106781 username alipour 106781 mac 106781 bytes_out 0 106781 bytes_in 0 106781 station_ip 83.122.126.201 106781 port 12 106781 unique_id port 106781 remote_ip 10.8.0.102 106784 username amir 106784 kill_reason Another user logged on this global unique id 106784 mac 106784 bytes_out 0 106784 bytes_in 0 106784 station_ip 46.225.210.126 106784 port 9 106784 unique_id port 106791 username avaanna 106791 mac 106791 bytes_out 780578 106791 bytes_in 8407810 106791 station_ip 113.203.76.13 106791 port 10 106791 unique_id port 106791 remote_ip 10.8.0.98 106795 username aminvpn 106795 unique_id port 106795 terminate_cause Lost-Carrier 106795 bytes_out 9036019 106795 bytes_in 225855099 106795 station_ip 5.120.40.98 106795 port 15728836 106795 nas_port_type Virtual 106795 remote_ip 5.5.5.255 106798 username kordestani 106798 mac 106798 bytes_out 0 106798 bytes_in 0 106798 station_ip 151.235.81.109 106798 port 15 106798 unique_id port 106798 remote_ip 10.8.0.134 106800 username tahmasebi 106800 kill_reason Another user logged on this global unique id 106800 mac 106800 bytes_out 0 106800 bytes_in 0 106800 station_ip 5.119.42.112 106800 port 16 106800 unique_id port 106803 username morteza 106803 mac 106803 bytes_out 0 106803 bytes_in 0 106803 station_ip 37.129.19.92 106803 port 18 106803 unique_id port 106803 remote_ip 10.8.0.46 106815 username houshang 106815 mac 106815 bytes_out 33259 106815 bytes_in 100987 106815 station_ip 5.120.65.78 106815 port 17 106815 unique_id port 106815 remote_ip 10.8.0.22 106817 username hashtadani 106817 unique_id port 106817 terminate_cause User-Request 106817 bytes_out 8970583 106817 bytes_in 89010239 106817 station_ip 83.123.179.208 106817 port 15728839 106817 nas_port_type Virtual 106817 remote_ip 5.5.5.251 106818 username hamid.e 106818 unique_id port 106818 terminate_cause User-Request 106818 bytes_out 15357433 106818 bytes_in 310628899 106818 station_ip 37.27.29.74 106818 port 15728843 106818 nas_port_type Virtual 106818 remote_ip 5.5.5.248 106820 username morteza 106820 mac 106820 bytes_out 1789447 106820 bytes_in 23425272 106820 station_ip 37.129.19.92 106820 port 10 106820 unique_id port 106820 remote_ip 10.8.0.46 106827 username khalili 106827 kill_reason Another user logged on this global unique id 106827 mac 106827 bytes_out 0 106771 bytes_in 1114450 106771 station_ip 83.123.135.103 106771 port 15728837 106771 nas_port_type Virtual 106771 remote_ip 5.5.5.253 106773 username ayobi 106773 mac 106773 bytes_out 348116 106773 bytes_in 3276050 106773 station_ip 37.27.12.56 106773 port 13 106773 unique_id port 106773 remote_ip 10.8.0.126 106774 username mosi 106774 kill_reason Another user logged on this global unique id 106774 mac 106774 bytes_out 0 106774 bytes_in 0 106774 station_ip 151.235.112.178 106774 port 18 106774 unique_id port 106776 username kamali1 106776 mac 106776 bytes_out 0 106776 bytes_in 0 106776 station_ip 5.120.168.134 106776 port 10 106776 unique_id port 106776 remote_ip 10.8.0.70 106782 username bcboard 106782 unique_id port 106782 terminate_cause User-Request 106782 bytes_out 5757423 106782 bytes_in 110789473 106782 station_ip 83.123.135.103 106782 port 15728838 106782 nas_port_type Virtual 106782 remote_ip 5.5.5.254 106786 username naeimeh 106786 mac 106786 bytes_out 0 106786 bytes_in 0 106786 station_ip 83.123.21.87 106786 port 17 106786 unique_id port 106788 username aminvpn 106788 unique_id port 106788 terminate_cause Lost-Carrier 106788 bytes_out 102746 106788 bytes_in 194316 106788 station_ip 31.57.141.111 106788 port 15728841 106788 nas_port_type Virtual 106788 remote_ip 5.5.5.254 106789 username amir 106789 kill_reason Another user logged on this global unique id 106789 mac 106789 bytes_out 0 106789 bytes_in 0 106789 station_ip 46.225.210.126 106789 port 9 106789 unique_id port 106792 username aminvpn 106792 mac 106792 bytes_out 103652 106792 bytes_in 370393 106792 station_ip 83.122.64.170 106792 port 17 106792 unique_id port 106792 remote_ip 10.8.0.14 106794 username avaanna 106794 mac 106794 bytes_out 0 106794 bytes_in 0 106794 station_ip 113.203.76.13 106794 port 5 106794 unique_id port 106794 remote_ip 10.8.1.46 106796 username ahmadi 106796 unique_id port 106796 terminate_cause User-Request 106796 bytes_out 259623 106796 bytes_in 527175 106796 station_ip 83.122.175.93 106796 port 15728846 106796 nas_port_type Virtual 106796 remote_ip 5.5.5.244 106799 username kordestani 106799 mac 106799 bytes_out 322106 106799 bytes_in 63278 106799 station_ip 151.235.81.109 106799 port 12 106799 unique_id port 106799 remote_ip 10.8.0.134 106802 username askari 106802 mac 106802 bytes_out 0 106802 bytes_in 0 106802 station_ip 5.119.82.137 106802 port 5 106802 unique_id port 106802 remote_ip 10.8.1.38 106804 username aminvpn 106804 mac 106804 bytes_out 487651 106804 bytes_in 1761220 106804 station_ip 83.122.64.170 106804 port 10 106804 unique_id port 106804 remote_ip 10.8.0.14 106808 username avaanna 106808 mac 106808 bytes_out 10063 106808 bytes_in 13801 106808 station_ip 37.129.71.161 106808 port 5 106808 unique_id port 106808 remote_ip 10.8.1.46 106810 username askari 106810 mac 106810 bytes_out 0 106810 bytes_in 0 106810 station_ip 5.119.82.137 106810 port 12 106810 unique_id port 106810 remote_ip 10.8.0.62 106811 username tahmasebi 106811 kill_reason Another user logged on this global unique id 106811 mac 106811 bytes_out 0 106811 bytes_in 0 106811 station_ip 5.119.42.112 106811 port 16 106811 unique_id port 106812 username askari 106812 mac 106812 bytes_out 4102 106812 bytes_in 13909 106812 station_ip 5.119.82.137 106812 port 12 106812 unique_id port 106812 remote_ip 10.8.0.62 106816 username amir 106816 kill_reason Another user logged on this global unique id 106816 mac 106816 bytes_out 0 106816 bytes_in 0 106816 station_ip 46.225.210.126 106816 port 9 106816 unique_id port 106772 username mosi 106772 kill_reason Another user logged on this global unique id 106772 mac 106772 bytes_out 0 106772 bytes_in 0 106772 station_ip 151.235.112.178 106772 port 18 106772 unique_id port 106779 username malekpoir 106779 mac 106779 bytes_out 0 106779 bytes_in 0 106779 station_ip 5.119.21.231 106779 port 15 106779 unique_id port 106783 username mirzaei 106783 mac 106783 bytes_out 0 106783 bytes_in 0 106783 station_ip 5.119.18.150 106783 port 20 106783 unique_id port 106783 remote_ip 10.8.0.66 106785 username ahmadi 106785 unique_id port 106785 terminate_cause User-Request 106785 bytes_out 31411 106785 bytes_in 134501 106785 station_ip 83.122.126.184 106785 port 15728840 106785 nas_port_type Virtual 106785 remote_ip 5.5.5.253 106787 username alirezazadeh 106787 unique_id port 106787 terminate_cause Lost-Carrier 106787 bytes_out 2778920 106787 bytes_in 28500848 106787 station_ip 5.119.173.157 106787 port 15728835 106787 nas_port_type Virtual 106787 remote_ip 5.5.5.0 106790 username forozande 106790 mac 106790 bytes_out 0 106790 bytes_in 0 106790 station_ip 83.122.201.204 106790 port 12 106790 unique_id port 106790 remote_ip 10.8.0.74 106793 username alipour 106793 mac 106793 bytes_out 946119 106793 bytes_in 20114418 106793 station_ip 83.122.126.201 106793 port 15 106793 unique_id port 106793 remote_ip 10.8.0.102 106797 username houshang 106797 mac 106797 bytes_out 0 106797 bytes_in 0 106797 station_ip 5.119.161.31 106797 port 12 106797 unique_id port 106797 remote_ip 10.8.0.22 106801 username amir 106801 kill_reason Another user logged on this global unique id 106801 mac 106801 bytes_out 0 106801 bytes_in 0 106801 station_ip 46.225.210.126 106801 port 9 106801 unique_id port 106805 username tahmasebi 106805 kill_reason Another user logged on this global unique id 106805 mac 106805 bytes_out 0 106805 bytes_in 0 106805 station_ip 5.119.42.112 106805 port 16 106805 unique_id port 106806 username ahmadipour 106806 unique_id port 106806 terminate_cause Lost-Carrier 106806 bytes_out 586857 106806 bytes_in 12187700 106806 station_ip 37.129.78.189 106806 port 15728848 106806 nas_port_type Virtual 106806 remote_ip 5.5.5.245 106807 username tahmasebi 106807 kill_reason Another user logged on this global unique id 106807 mac 106807 bytes_out 0 106807 bytes_in 0 106807 station_ip 5.119.42.112 106807 port 16 106807 unique_id port 106809 username askari 106809 mac 106809 bytes_out 22012 106809 bytes_in 85613 106809 station_ip 5.119.82.137 106809 port 12 106809 unique_id port 106809 remote_ip 10.8.0.62 106813 username reza2742 106813 unique_id port 106813 terminate_cause Lost-Carrier 106813 bytes_out 8061381 106813 bytes_in 157079464 106813 station_ip 5.202.96.249 106813 port 15728844 106813 nas_port_type Virtual 106813 remote_ip 5.5.5.247 106814 username askari 106814 mac 106814 bytes_out 202743 106814 bytes_in 218747 106814 station_ip 5.119.120.158 106814 port 12 106814 unique_id port 106814 remote_ip 10.8.0.62 106819 username tahmasebi 106819 kill_reason Another user logged on this global unique id 106819 mac 106819 bytes_out 0 106819 bytes_in 0 106819 station_ip 5.119.42.112 106819 port 16 106819 unique_id port 106823 username amir 106823 mac 106823 bytes_out 0 106823 bytes_in 0 106823 station_ip 46.225.210.126 106823 port 9 106823 unique_id port 106826 username forozande 106826 mac 106826 bytes_out 520712 106826 bytes_in 4302450 106826 station_ip 37.129.43.80 106826 port 19 106826 unique_id port 106826 remote_ip 10.8.0.74 106829 username mohammadmahdi 106829 mac 106829 bytes_out 10419635 106829 bytes_in 3793593 106821 username khalili 106821 kill_reason Another user logged on this global unique id 106821 mac 106821 bytes_out 0 106821 bytes_in 0 106821 station_ip 5.119.126.0 106821 port 11 106821 unique_id port 106821 remote_ip 10.8.0.86 106822 username kamali1 106822 mac 106822 bytes_out 519913 106822 bytes_in 1372597 106822 station_ip 5.120.168.134 106822 port 13 106822 unique_id port 106822 remote_ip 10.8.0.70 106824 username mahdiyehalizadeh 106824 mac 106824 bytes_out 135377 106824 bytes_in 1257519 106824 station_ip 83.123.116.160 106824 port 13 106824 unique_id port 106824 remote_ip 10.8.0.82 106825 username mosi 106825 mac 106825 bytes_out 1387624 106825 bytes_in 8426413 106825 station_ip 151.235.112.178 106825 port 12 106825 unique_id port 106825 remote_ip 10.8.0.138 106828 username amir 106828 mac 106828 bytes_out 0 106828 bytes_in 0 106828 station_ip 46.225.210.126 106828 port 9 106828 unique_id port 106828 remote_ip 10.8.0.50 106830 username mehdizare 106830 mac 106830 bytes_out 583073 106830 bytes_in 33570234 106830 station_ip 5.119.206.12 106830 port 15 106830 unique_id port 106830 remote_ip 10.8.0.90 106833 username amirabbas 106833 unique_id port 106833 terminate_cause User-Request 106833 bytes_out 20457452 106833 bytes_in 580606722 106833 station_ip 37.27.3.36 106833 port 15728842 106833 nas_port_type Virtual 106833 remote_ip 5.5.5.250 106834 username alipour 106834 mac 106834 bytes_out 0 106834 bytes_in 0 106834 station_ip 83.122.126.201 106834 port 6 106834 unique_id port 106834 remote_ip 10.8.1.50 106835 username amir 106835 mac 106835 bytes_out 73353 106835 bytes_in 471106 106835 station_ip 46.225.210.126 106835 port 9 106835 unique_id port 106835 remote_ip 10.8.0.50 106837 username amir 106837 mac 106837 bytes_out 0 106837 bytes_in 0 106837 station_ip 46.225.210.126 106837 port 6 106837 unique_id port 106837 remote_ip 10.8.1.22 106838 username mahdiyehalizadeh 106838 mac 106838 bytes_out 865624 106838 bytes_in 13873679 106838 station_ip 83.123.116.160 106838 port 12 106838 unique_id port 106838 remote_ip 10.8.0.82 106840 username zare 106840 mac 106840 bytes_out 0 106840 bytes_in 0 106840 station_ip 94.183.214.14 106840 port 10 106840 unique_id port 106840 remote_ip 10.8.0.18 106844 username mosi 106844 kill_reason Another user logged on this global unique id 106844 mac 106844 bytes_out 0 106844 bytes_in 0 106844 station_ip 151.235.112.178 106844 port 12 106844 unique_id port 106844 remote_ip 10.8.0.138 106849 username zare 106849 mac 106849 bytes_out 49963 106849 bytes_in 134323 106849 station_ip 94.183.214.14 106849 port 10 106849 unique_id port 106849 remote_ip 10.8.0.18 106851 username amir 106851 kill_reason Another user logged on this global unique id 106851 mac 106851 bytes_out 0 106851 bytes_in 0 106851 station_ip 46.225.210.126 106851 port 6 106851 unique_id port 106851 remote_ip 10.8.1.22 106854 username zare 106854 mac 106854 bytes_out 0 106854 bytes_in 0 106854 station_ip 94.183.214.14 106854 port 10 106854 unique_id port 106854 remote_ip 10.8.0.18 106855 username zare 106855 mac 106855 bytes_out 0 106855 bytes_in 0 106855 station_ip 94.183.214.14 106855 port 10 106855 unique_id port 106855 remote_ip 10.8.0.18 106856 username zare 106856 mac 106856 bytes_out 0 106856 bytes_in 0 106856 station_ip 94.183.214.14 106856 port 10 106856 unique_id port 106856 remote_ip 10.8.0.18 106857 username mosi 106857 kill_reason Another user logged on this global unique id 106857 mac 106857 bytes_out 0 106857 bytes_in 0 106827 bytes_in 0 106827 station_ip 5.119.126.0 106827 port 11 106827 unique_id port 106832 username houshang 106832 mac 106832 bytes_out 24860 106832 bytes_in 48822 106832 station_ip 5.120.65.78 106832 port 9 106832 unique_id port 106832 remote_ip 10.8.0.22 106836 username amir 106836 kill_reason Maximum check online fails reached 106836 mac 106836 bytes_out 0 106836 bytes_in 0 106836 station_ip 46.225.210.126 106836 port 9 106836 unique_id port 106839 username amin.saeedi 106839 unique_id port 106839 terminate_cause User-Request 106839 bytes_out 14123559 106839 bytes_in 461378347 106839 station_ip 31.56.220.154 106839 port 15728845 106839 nas_port_type Virtual 106839 remote_ip 5.5.5.246 106843 username kordestani 106843 mac 106843 bytes_out 1436383 106843 bytes_in 16284962 106843 station_ip 151.235.83.69 106843 port 17 106843 unique_id port 106843 remote_ip 10.8.0.134 106845 username alireza 106845 unique_id port 106845 terminate_cause User-Request 106845 bytes_out 6283342 106845 bytes_in 104965771 106845 station_ip 5.120.89.244 106845 port 15728847 106845 nas_port_type Virtual 106845 remote_ip 5.5.5.243 106847 username houshang 106847 mac 106847 bytes_out 721840 106847 bytes_in 5391419 106847 station_ip 5.120.65.78 106847 port 13 106847 unique_id port 106847 remote_ip 10.8.0.22 106850 username mosi 106850 kill_reason Another user logged on this global unique id 106850 mac 106850 bytes_out 0 106850 bytes_in 0 106850 station_ip 151.235.112.178 106850 port 12 106850 unique_id port 106852 username zare 106852 mac 106852 bytes_out 0 106852 bytes_in 0 106852 station_ip 94.183.214.14 106852 port 10 106852 unique_id port 106852 remote_ip 10.8.0.18 106860 username amir 106860 mac 106860 bytes_out 0 106860 bytes_in 0 106860 station_ip 46.225.210.126 106860 port 6 106860 unique_id port 106862 username zare 106862 mac 106862 bytes_out 0 106862 bytes_in 0 106862 station_ip 94.183.214.14 106862 port 10 106862 unique_id port 106862 remote_ip 10.8.0.18 106865 username zare 106865 mac 106865 bytes_out 0 106865 bytes_in 0 106865 station_ip 94.183.214.14 106865 port 10 106865 unique_id port 106865 remote_ip 10.8.0.18 106867 username amir 106867 mac 106867 bytes_out 0 106867 bytes_in 0 106867 station_ip 46.225.210.126 106867 port 6 106867 unique_id port 106867 remote_ip 10.8.1.22 106871 username zare 106871 mac 106871 bytes_out 0 106871 bytes_in 0 106871 station_ip 94.183.214.14 106871 port 10 106871 unique_id port 106871 remote_ip 10.8.0.18 106872 username khalili 106872 mac 106872 bytes_out 0 106872 bytes_in 0 106872 station_ip 5.119.126.0 106872 port 11 106872 unique_id port 106873 username mosi 106873 kill_reason Another user logged on this global unique id 106873 mac 106873 bytes_out 0 106873 bytes_in 0 106873 station_ip 151.235.112.178 106873 port 12 106873 unique_id port 106874 username amir 106874 mac 106874 bytes_out 0 106874 bytes_in 0 106874 station_ip 46.225.210.126 106874 port 11 106874 unique_id port 106874 remote_ip 10.8.0.50 106877 username mosi 106877 kill_reason Another user logged on this global unique id 106877 mac 106877 bytes_out 0 106877 bytes_in 0 106877 station_ip 151.235.112.178 106877 port 12 106877 unique_id port 106879 username tahmasebi 106879 kill_reason Another user logged on this global unique id 106879 mac 106879 bytes_out 0 106879 bytes_in 0 106879 station_ip 5.119.42.112 106879 port 16 106879 unique_id port 106882 username mosi 106882 kill_reason Another user logged on this global unique id 106882 mac 106882 bytes_out 0 106829 station_ip 5.120.17.32 106829 port 17 106829 unique_id port 106829 remote_ip 10.8.0.54 106831 username arabpour 106831 unique_id port 106831 terminate_cause Lost-Carrier 106831 bytes_out 300473 106831 bytes_in 4089867 106831 station_ip 5.216.75.131 106831 port 15728850 106831 nas_port_type Virtual 106831 remote_ip 5.5.5.254 106841 username forozande 106841 mac 106841 bytes_out 1025667 106841 bytes_in 13851869 106841 station_ip 83.122.105.231 106841 port 15 106841 unique_id port 106841 remote_ip 10.8.0.74 106842 username houshang 106842 mac 106842 bytes_out 120297 106842 bytes_in 454574 106842 station_ip 5.120.65.78 106842 port 13 106842 unique_id port 106842 remote_ip 10.8.0.22 106846 username zare 106846 mac 106846 bytes_out 173323 106846 bytes_in 2313942 106846 station_ip 94.183.214.14 106846 port 10 106846 unique_id port 106846 remote_ip 10.8.0.18 106848 username mosi 106848 kill_reason Another user logged on this global unique id 106848 mac 106848 bytes_out 0 106848 bytes_in 0 106848 station_ip 151.235.112.178 106848 port 12 106848 unique_id port 106853 username mosi 106853 kill_reason Another user logged on this global unique id 106853 mac 106853 bytes_out 0 106853 bytes_in 0 106853 station_ip 151.235.112.178 106853 port 12 106853 unique_id port 106858 username zare 106858 mac 106858 bytes_out 0 106858 bytes_in 0 106858 station_ip 94.183.214.14 106858 port 7 106858 unique_id port 106858 remote_ip 10.8.1.58 106859 username zare 106859 mac 106859 bytes_out 0 106859 bytes_in 0 106859 station_ip 94.183.214.14 106859 port 10 106859 unique_id port 106859 remote_ip 10.8.0.18 106866 username zare 106866 mac 106866 bytes_out 0 106866 bytes_in 0 106866 station_ip 94.183.214.14 106866 port 10 106866 unique_id port 106866 remote_ip 10.8.0.18 106869 username zare 106869 mac 106869 bytes_out 26217 106869 bytes_in 97625 106869 station_ip 94.183.214.14 106869 port 10 106869 unique_id port 106869 remote_ip 10.8.0.18 106870 username zare 106870 mac 106870 bytes_out 13408 106870 bytes_in 34015 106870 station_ip 94.183.214.14 106870 port 10 106870 unique_id port 106870 remote_ip 10.8.0.18 106878 username morteza 106878 mac 106878 bytes_out 0 106878 bytes_in 0 106878 station_ip 37.129.19.92 106878 port 10 106878 unique_id port 106878 remote_ip 10.8.0.46 106886 username mosi 106886 kill_reason Another user logged on this global unique id 106886 mac 106886 bytes_out 0 106886 bytes_in 0 106886 station_ip 151.235.112.178 106886 port 12 106886 unique_id port 106888 username arman1 106888 kill_reason Another user logged on this global unique id 106888 mac 106888 bytes_out 0 106888 bytes_in 0 106888 station_ip 5.120.114.16 106888 port 15 106888 unique_id port 106888 remote_ip 10.8.0.110 106889 username mosi 106889 mac 106889 bytes_out 0 106889 bytes_in 0 106889 station_ip 151.235.112.178 106889 port 12 106889 unique_id port 106891 username zare 106891 mac 106891 bytes_out 0 106891 bytes_in 0 106891 station_ip 188.245.91.123 106891 port 18 106891 unique_id port 106891 remote_ip 10.8.0.18 106895 username hamid 106895 kill_reason Another user logged on this global unique id 106895 mac 106895 bytes_out 0 106895 bytes_in 0 106895 station_ip 83.123.202.201 106895 port 12 106895 unique_id port 106895 remote_ip 10.8.0.106 106896 username zare 106896 mac 106896 bytes_out 0 106896 bytes_in 0 106896 station_ip 188.245.91.123 106896 port 11 106896 unique_id port 106896 remote_ip 10.8.0.18 106897 username zare 106897 mac 106897 bytes_out 0 106857 station_ip 151.235.112.178 106857 port 12 106857 unique_id port 106861 username mosi 106861 kill_reason Another user logged on this global unique id 106861 mac 106861 bytes_out 0 106861 bytes_in 0 106861 station_ip 151.235.112.178 106861 port 12 106861 unique_id port 106863 username amir 106863 mac 106863 bytes_out 0 106863 bytes_in 0 106863 station_ip 46.225.210.126 106863 port 6 106863 unique_id port 106863 remote_ip 10.8.1.22 106864 username zare 106864 mac 106864 bytes_out 0 106864 bytes_in 0 106864 station_ip 94.183.214.14 106864 port 10 106864 unique_id port 106864 remote_ip 10.8.0.18 106868 username amir 106868 mac 106868 bytes_out 0 106868 bytes_in 0 106868 station_ip 46.225.210.126 106868 port 10 106868 unique_id port 106868 remote_ip 10.8.0.50 106875 username zare 106875 mac 106875 bytes_out 0 106875 bytes_in 0 106875 station_ip 94.183.214.14 106875 port 10 106875 unique_id port 106875 remote_ip 10.8.0.18 106876 username ahmadipour 106876 unique_id port 106876 terminate_cause Lost-Carrier 106876 bytes_out 25295 106876 bytes_in 157615 106876 station_ip 37.129.87.205 106876 port 15728854 106876 nas_port_type Virtual 106876 remote_ip 5.5.5.254 106880 username mosi 106880 kill_reason Another user logged on this global unique id 106880 mac 106880 bytes_out 0 106880 bytes_in 0 106880 station_ip 151.235.112.178 106880 port 12 106880 unique_id port 106881 username houshang 106881 kill_reason Another user logged on this global unique id 106881 mac 106881 bytes_out 0 106881 bytes_in 0 106881 station_ip 5.120.65.78 106881 port 17 106881 unique_id port 106881 remote_ip 10.8.0.22 106883 username houshang 106883 mac 106883 bytes_out 0 106883 bytes_in 0 106883 station_ip 5.120.65.78 106883 port 17 106883 unique_id port 106885 username amir 106885 mac 106885 bytes_out 0 106885 bytes_in 0 106885 station_ip 46.225.210.126 106885 port 19 106885 unique_id port 106885 remote_ip 10.8.0.50 106887 username kordestani 106887 mac 106887 bytes_out 0 106887 bytes_in 0 106887 station_ip 151.235.83.69 106887 port 17 106887 unique_id port 106887 remote_ip 10.8.0.134 106892 username morteza 106892 mac 106892 bytes_out 0 106892 bytes_in 0 106892 station_ip 37.129.51.24 106892 port 6 106892 unique_id port 106892 remote_ip 10.8.1.62 106894 username zare 106894 mac 106894 bytes_out 0 106894 bytes_in 0 106894 station_ip 188.245.91.123 106894 port 19 106894 unique_id port 106894 remote_ip 10.8.0.18 106901 username zare 106901 kill_reason Maximum check online fails reached 106901 mac 106901 bytes_out 0 106901 bytes_in 0 106901 station_ip 188.245.91.123 106901 port 11 106901 unique_id port 106903 username kamali1 106903 mac 106903 bytes_out 0 106903 bytes_in 0 106903 station_ip 5.120.168.134 106903 port 17 106903 unique_id port 106903 remote_ip 10.8.0.70 106904 username hamid 106904 kill_reason Another user logged on this global unique id 106904 mac 106904 bytes_out 0 106904 bytes_in 0 106904 station_ip 83.123.202.201 106904 port 12 106904 unique_id port 106905 username zare 106905 mac 106905 bytes_out 0 106905 bytes_in 0 106905 station_ip 188.245.91.123 106905 port 17 106905 unique_id port 106905 remote_ip 10.8.0.18 106911 username mehdizare 106911 mac 106911 bytes_out 18515 106911 bytes_in 40884 106911 station_ip 5.120.160.182 106911 port 13 106911 unique_id port 106911 remote_ip 10.8.0.90 106913 username zare 106913 mac 106913 bytes_out 0 106913 bytes_in 0 106913 station_ip 188.245.91.123 106913 port 17 106882 bytes_in 0 106882 station_ip 151.235.112.178 106882 port 12 106882 unique_id port 106884 username houshang 106884 mac 106884 bytes_out 0 106884 bytes_in 0 106884 station_ip 5.120.65.78 106884 port 11 106884 unique_id port 106884 remote_ip 10.8.0.22 106890 username kamali1 106890 mac 106890 bytes_out 0 106890 bytes_in 0 106890 station_ip 5.120.168.134 106890 port 18 106890 unique_id port 106890 remote_ip 10.8.0.70 106893 username morteza 106893 mac 106893 bytes_out 880010 106893 bytes_in 15581268 106893 station_ip 37.129.51.24 106893 port 11 106893 unique_id port 106893 remote_ip 10.8.0.46 106909 username zare 106909 mac 106909 bytes_out 0 106909 bytes_in 0 106909 station_ip 188.245.91.123 106909 port 17 106909 unique_id port 106909 remote_ip 10.8.0.18 106915 username zare 106915 mac 106915 bytes_out 0 106915 bytes_in 0 106915 station_ip 188.245.91.123 106915 port 17 106915 unique_id port 106915 remote_ip 10.8.0.18 106916 username mehdizare 106916 mac 106916 bytes_out 0 106916 bytes_in 0 106916 station_ip 5.120.160.182 106916 port 13 106916 unique_id port 106916 remote_ip 10.8.0.90 106918 username zare 106918 mac 106918 bytes_out 0 106918 bytes_in 0 106918 station_ip 188.245.91.123 106918 port 19 106918 unique_id port 106918 remote_ip 10.8.0.18 106921 username arman1 106921 mac 106921 bytes_out 0 106921 bytes_in 0 106921 station_ip 5.120.114.16 106921 port 15 106921 unique_id port 106927 username khalili 106927 mac 106927 bytes_out 345969 106927 bytes_in 2009529 106927 station_ip 5.119.126.0 106927 port 10 106927 unique_id port 106927 remote_ip 10.8.0.86 106928 username tahmasebi 106928 kill_reason Another user logged on this global unique id 106928 mac 106928 bytes_out 0 106928 bytes_in 0 106928 station_ip 5.119.42.112 106928 port 16 106928 unique_id port 106930 username mehdizare 106930 mac 106930 bytes_out 0 106930 bytes_in 0 106930 station_ip 5.120.160.182 106930 port 15 106930 unique_id port 106930 remote_ip 10.8.0.90 106932 username zare 106932 mac 106932 bytes_out 0 106932 bytes_in 0 106932 station_ip 188.245.91.123 106932 port 10 106932 unique_id port 106932 remote_ip 10.8.0.18 106937 username zare 106937 mac 106937 bytes_out 0 106937 bytes_in 0 106937 station_ip 188.245.91.123 106937 port 10 106937 unique_id port 106937 remote_ip 10.8.0.18 106939 username zare 106939 mac 106939 bytes_out 0 106939 bytes_in 0 106939 station_ip 188.245.91.123 106939 port 16 106939 unique_id port 106939 remote_ip 10.8.0.18 106940 username zare 106940 mac 106940 bytes_out 0 106940 bytes_in 0 106940 station_ip 188.245.91.123 106940 port 16 106940 unique_id port 106940 remote_ip 10.8.0.18 106941 username zare 106941 mac 106941 bytes_out 0 106941 bytes_in 0 106941 station_ip 188.245.91.123 106941 port 19 106941 unique_id port 106941 remote_ip 10.8.0.18 106943 username mohammadjavad 106943 kill_reason Another user logged on this global unique id 106943 mac 106943 bytes_out 0 106943 bytes_in 0 106943 station_ip 83.122.249.221 106943 port 13 106943 unique_id port 106943 remote_ip 10.8.0.142 106944 username naeimeh 106944 kill_reason Another user logged on this global unique id 106944 mac 106944 bytes_out 0 106944 bytes_in 0 106944 station_ip 83.123.216.25 106944 port 16 106944 unique_id port 106944 remote_ip 10.8.0.78 106946 username naeimeh 106946 mac 106946 bytes_out 0 106946 bytes_in 0 106946 station_ip 83.123.216.25 106946 port 16 106946 unique_id port 106897 bytes_in 0 106897 station_ip 188.245.91.123 106897 port 11 106897 unique_id port 106897 remote_ip 10.8.0.18 106898 username morteza 106898 mac 106898 bytes_out 34263 106898 bytes_in 102118 106898 station_ip 37.129.51.24 106898 port 6 106898 unique_id port 106898 remote_ip 10.8.1.62 106899 username zare 106899 mac 106899 bytes_out 0 106899 bytes_in 0 106899 station_ip 188.245.91.123 106899 port 11 106899 unique_id port 106899 remote_ip 10.8.0.18 106900 username malekpoir 106900 mac 106900 bytes_out 0 106900 bytes_in 0 106900 station_ip 5.119.21.231 106900 port 2 106900 unique_id port 106900 remote_ip 10.8.0.58 106902 username hamid 106902 kill_reason Another user logged on this global unique id 106902 mac 106902 bytes_out 0 106902 bytes_in 0 106902 station_ip 83.123.202.201 106902 port 12 106902 unique_id port 106906 username alemzadeh 106906 kill_reason Relative expiration date has reached 106906 unique_id port 106906 bytes_out 0 106906 bytes_in 0 106906 station_ip 83.123.33.56 106906 port 15728857 106906 nas_port_type Virtual 106907 username zare 106907 mac 106907 bytes_out 0 106907 bytes_in 0 106907 station_ip 188.245.91.123 106907 port 17 106907 unique_id port 106907 remote_ip 10.8.0.18 106908 username mehdizare 106908 mac 106908 bytes_out 0 106908 bytes_in 0 106908 station_ip 5.120.160.182 106908 port 13 106908 unique_id port 106908 remote_ip 10.8.0.90 106910 username alipour 106910 mac 106910 bytes_out 1865905 106910 bytes_in 20805774 106910 station_ip 83.122.126.201 106910 port 5 106910 unique_id port 106910 remote_ip 10.8.1.50 106912 username hamid 106912 kill_reason Another user logged on this global unique id 106912 mac 106912 bytes_out 0 106912 bytes_in 0 106912 station_ip 83.123.202.201 106912 port 12 106912 unique_id port 106922 username zare 106922 mac 106922 bytes_out 0 106922 bytes_in 0 106922 station_ip 188.245.91.123 106922 port 6 106922 unique_id port 106922 remote_ip 10.8.1.58 106924 username zare 106924 mac 106924 bytes_out 26410 106924 bytes_in 125734 106924 station_ip 188.245.91.123 106924 port 6 106924 unique_id port 106924 remote_ip 10.8.1.58 106925 username zare 106925 mac 106925 bytes_out 0 106925 bytes_in 0 106925 station_ip 188.245.91.123 106925 port 15 106925 unique_id port 106925 remote_ip 10.8.0.18 106929 username alipour 106929 mac 106929 bytes_out 0 106929 bytes_in 0 106929 station_ip 83.122.126.201 106929 port 5 106929 unique_id port 106929 remote_ip 10.8.1.50 106931 username zare 106931 mac 106931 bytes_out 11882 106931 bytes_in 54918 106931 station_ip 188.245.91.123 106931 port 10 106931 unique_id port 106931 remote_ip 10.8.0.18 106934 username zare 106934 mac 106934 bytes_out 0 106934 bytes_in 0 106934 station_ip 188.245.91.123 106934 port 10 106934 unique_id port 106934 remote_ip 10.8.0.18 106938 username zare 106938 kill_reason Maximum check online fails reached 106938 mac 106938 bytes_out 0 106938 bytes_in 0 106938 station_ip 188.245.91.123 106938 port 10 106938 unique_id port 106947 username mohammadjavad 106947 mac 106947 bytes_out 0 106947 bytes_in 0 106947 station_ip 83.122.249.221 106947 port 13 106947 unique_id port 106954 username abravesh 106954 unique_id port 106954 terminate_cause User-Request 106954 bytes_out 112971 106954 bytes_in 611094 106954 station_ip 5.120.50.98 106954 port 15728859 106954 nas_port_type Virtual 106954 remote_ip 5.5.5.255 106955 username zare 106955 kill_reason Another user logged on this global unique id 106955 mac 106955 bytes_out 0 106955 bytes_in 0 106913 unique_id port 106913 remote_ip 10.8.0.18 106914 username zare 106914 mac 106914 bytes_out 0 106914 bytes_in 0 106914 station_ip 188.245.91.123 106914 port 13 106914 unique_id port 106914 remote_ip 10.8.0.18 106917 username arman1 106917 kill_reason Another user logged on this global unique id 106917 mac 106917 bytes_out 0 106917 bytes_in 0 106917 station_ip 5.120.114.16 106917 port 15 106917 unique_id port 106919 username hamid 106919 mac 106919 bytes_out 0 106919 bytes_in 0 106919 station_ip 83.123.202.201 106919 port 12 106919 unique_id port 106920 username zare 106920 mac 106920 bytes_out 0 106920 bytes_in 0 106920 station_ip 188.245.91.123 106920 port 12 106920 unique_id port 106920 remote_ip 10.8.0.18 106923 username zare 106923 kill_reason Maximum check online fails reached 106923 mac 106923 bytes_out 0 106923 bytes_in 0 106923 station_ip 188.245.91.123 106923 port 12 106923 unique_id port 106926 username mehdizare 106926 mac 106926 bytes_out 150848 106926 bytes_in 210128 106926 station_ip 5.120.160.182 106926 port 17 106926 unique_id port 106926 remote_ip 10.8.0.90 106933 username mehdizare 106933 mac 106933 bytes_out 0 106933 bytes_in 0 106933 station_ip 5.120.160.182 106933 port 19 106933 unique_id port 106933 remote_ip 10.8.0.90 106935 username zare 106935 mac 106935 bytes_out 0 106935 bytes_in 0 106935 station_ip 188.245.91.123 106935 port 10 106935 unique_id port 106935 remote_ip 10.8.0.18 106936 username tahmasebi 106936 mac 106936 bytes_out 0 106936 bytes_in 0 106936 station_ip 5.119.42.112 106936 port 16 106936 unique_id port 106942 username zare 106942 kill_reason Maximum check online fails reached 106942 mac 106942 bytes_out 0 106942 bytes_in 0 106942 station_ip 188.245.91.123 106942 port 19 106942 unique_id port 106945 username aminvpn 106945 unique_id port 106945 terminate_cause Lost-Carrier 106945 bytes_out 3257957 106945 bytes_in 32137910 106945 station_ip 5.119.248.59 106945 port 15728855 106945 nas_port_type Virtual 106945 remote_ip 5.5.5.254 106950 username zare 106950 mac 106950 bytes_out 0 106950 bytes_in 0 106950 station_ip 188.245.91.123 106950 port 6 106950 unique_id port 106959 username kordestani 106959 mac 106959 bytes_out 0 106959 bytes_in 0 106959 station_ip 151.235.83.69 106959 port 16 106959 unique_id port 106959 remote_ip 10.8.0.134 106961 username ahmadipour 106961 unique_id port 106961 terminate_cause Lost-Carrier 106961 bytes_out 335649 106961 bytes_in 1291479 106961 station_ip 37.129.21.1 106961 port 15728861 106961 nas_port_type Virtual 106961 remote_ip 5.5.5.252 106969 username alipour 106969 mac 106969 bytes_out 15048 106969 bytes_in 28423 106969 station_ip 83.122.126.201 106969 port 5 106969 unique_id port 106969 remote_ip 10.8.1.50 106972 username mahdiyehalizadeh 106972 mac 106972 bytes_out 425701 106972 bytes_in 8634188 106972 station_ip 37.129.143.186 106972 port 20 106972 unique_id port 106972 remote_ip 10.8.0.82 106973 username houshang 106973 kill_reason Another user logged on this global unique id 106973 mac 106973 bytes_out 0 106973 bytes_in 0 106973 station_ip 5.120.65.78 106973 port 21 106973 unique_id port 106973 remote_ip 10.8.0.22 106974 username abravesh 106974 unique_id port 106974 terminate_cause Lost-Carrier 106974 bytes_out 787687 106974 bytes_in 6357477 106974 station_ip 5.120.50.98 106974 port 15728860 106974 nas_port_type Virtual 106974 remote_ip 5.5.5.255 106975 username alireza 106975 unique_id port 106975 terminate_cause User-Request 106975 bytes_out 3392527 106975 bytes_in 55189844 106948 username zare 106948 kill_reason Another user logged on this global unique id 106948 mac 106948 bytes_out 0 106948 bytes_in 0 106948 station_ip 188.245.91.123 106948 port 6 106948 unique_id port 106948 remote_ip 10.8.1.58 106949 username malekpoir 106949 mac 106949 bytes_out 616772 106949 bytes_in 8334582 106949 station_ip 5.119.21.231 106949 port 2 106949 unique_id port 106949 remote_ip 10.8.0.58 106951 username abravesh 106951 unique_id port 106951 terminate_cause User-Request 106951 bytes_out 450 106951 bytes_in 206 106951 station_ip 5.120.50.98 106951 port 15728858 106951 nas_port_type Virtual 106951 remote_ip 5.5.5.254 106952 username alipour 106952 kill_reason Another user logged on this global unique id 106952 mac 106952 bytes_out 0 106952 bytes_in 0 106952 station_ip 83.122.126.201 106952 port 5 106952 unique_id port 106952 remote_ip 10.8.1.50 106953 username hamid 106953 mac 106953 bytes_out 0 106953 bytes_in 0 106953 station_ip 83.123.202.201 106953 port 16 106953 unique_id port 106953 remote_ip 10.8.0.106 106957 username tahmasebi 106957 kill_reason Another user logged on this global unique id 106957 mac 106957 bytes_out 0 106957 bytes_in 0 106957 station_ip 5.119.42.112 106957 port 13 106957 unique_id port 106957 remote_ip 10.8.0.42 106960 username forozande 106960 mac 106960 bytes_out 63316 106960 bytes_in 110071 106960 station_ip 83.122.223.138 106960 port 22 106960 unique_id port 106960 remote_ip 10.8.0.74 106963 username hamid 106963 mac 106963 bytes_out 0 106963 bytes_in 0 106963 station_ip 83.123.202.201 106963 port 20 106963 unique_id port 106964 username alipour 106964 mac 106964 bytes_out 0 106964 bytes_in 0 106964 station_ip 83.122.126.201 106964 port 5 106964 unique_id port 106967 username zare 106967 mac 106967 bytes_out 0 106967 bytes_in 0 106967 station_ip 37.27.1.72 106967 port 7 106967 unique_id port 106970 username mehdizare 106970 mac 106970 bytes_out 1477067 106970 bytes_in 11833850 106970 station_ip 5.120.160.182 106970 port 15 106970 unique_id port 106970 remote_ip 10.8.0.90 106986 username houshang 106986 mac 106986 bytes_out 0 106986 bytes_in 0 106986 station_ip 5.120.65.78 106986 port 21 106986 unique_id port 106988 username kamali1 106988 mac 106988 bytes_out 47037 106988 bytes_in 127265 106988 station_ip 5.120.168.134 106988 port 22 106988 unique_id port 106988 remote_ip 10.8.0.70 106989 username mohammadjavad 106989 mac 106989 bytes_out 0 106989 bytes_in 0 106989 station_ip 37.129.240.138 106989 port 16 106989 unique_id port 106990 username mosi 106990 kill_reason Another user logged on this global unique id 106990 mac 106990 bytes_out 0 106990 bytes_in 0 106990 station_ip 151.235.112.178 106990 port 23 106990 unique_id port 106996 username mosi 106996 kill_reason Another user logged on this global unique id 106996 mac 106996 bytes_out 0 106996 bytes_in 0 106996 station_ip 151.235.112.178 106996 port 23 106996 unique_id port 106998 username forozande 106998 mac 106998 bytes_out 0 106998 bytes_in 0 106998 station_ip 37.129.73.3 106998 port 22 106998 unique_id port 106998 remote_ip 10.8.0.74 106999 username mosi 106999 kill_reason Another user logged on this global unique id 106999 mac 106999 bytes_out 0 106999 bytes_in 0 106999 station_ip 151.235.112.178 106999 port 23 106999 unique_id port 107000 username mohammadjavad 107000 mac 107000 bytes_out 878124 107000 bytes_in 16911161 107000 station_ip 83.123.133.0 107000 port 18 107000 unique_id port 107000 remote_ip 10.8.0.142 107002 username mosi 106955 station_ip 37.27.1.72 106955 port 7 106955 unique_id port 106955 remote_ip 10.8.1.58 106956 username forozande 106956 mac 106956 bytes_out 0 106956 bytes_in 0 106956 station_ip 83.122.166.41 106956 port 16 106956 unique_id port 106956 remote_ip 10.8.0.74 106958 username hamid 106958 kill_reason Another user logged on this global unique id 106958 mac 106958 bytes_out 0 106958 bytes_in 0 106958 station_ip 83.123.202.201 106958 port 20 106958 unique_id port 106958 remote_ip 10.8.0.106 106962 username zare 106962 kill_reason Another user logged on this global unique id 106962 mac 106962 bytes_out 0 106962 bytes_in 0 106962 station_ip 37.27.1.72 106962 port 7 106962 unique_id port 106965 username hamid.e 106965 kill_reason Maximum number of concurrent logins reached 106965 unique_id port 106965 bytes_out 0 106965 bytes_in 0 106965 station_ip 37.27.27.83 106965 port 15728864 106965 nas_port_type Virtual 106966 username hamid.e 106966 kill_reason Maximum number of concurrent logins reached 106966 unique_id port 106966 bytes_out 0 106966 bytes_in 0 106966 station_ip 37.27.27.83 106966 port 15728865 106966 nas_port_type Virtual 106968 username hamid.e 106968 unique_id port 106968 terminate_cause Lost-Carrier 106968 bytes_out 450954 106968 bytes_in 2169494 106968 station_ip 37.27.27.83 106968 port 15728863 106968 nas_port_type Virtual 106968 remote_ip 5.5.5.252 106971 username mohammadjavad 106971 kill_reason Another user logged on this global unique id 106971 mac 106971 bytes_out 0 106971 bytes_in 0 106971 station_ip 37.129.240.138 106971 port 16 106971 unique_id port 106971 remote_ip 10.8.0.142 106976 username kordestani 106976 mac 106976 bytes_out 2334834 106976 bytes_in 36621230 106976 station_ip 151.235.83.69 106976 port 22 106976 unique_id port 106976 remote_ip 10.8.0.134 106980 username mohammadjavad 106980 kill_reason Another user logged on this global unique id 106980 mac 106980 bytes_out 0 106980 bytes_in 0 106980 station_ip 37.129.240.138 106980 port 16 106980 unique_id port 106987 username aminvpn 106987 mac 106987 bytes_out 277422 106987 bytes_in 1081235 106987 station_ip 83.123.90.86 106987 port 18 106987 unique_id port 106987 remote_ip 10.8.0.14 106991 username mehdizare 106991 mac 106991 bytes_out 0 106991 bytes_in 0 106991 station_ip 5.120.160.182 106991 port 6 106991 unique_id port 106991 remote_ip 10.8.1.42 106992 username mosi 106992 kill_reason Another user logged on this global unique id 106992 mac 106992 bytes_out 0 106992 bytes_in 0 106992 station_ip 151.235.112.178 106992 port 23 106992 unique_id port 106993 username kamali1 106993 mac 106993 bytes_out 61043 106993 bytes_in 69922 106993 station_ip 5.120.168.134 106993 port 18 106993 unique_id port 106993 remote_ip 10.8.0.70 106994 username mohammadjavad 106994 mac 106994 bytes_out 943886 106994 bytes_in 20398870 106994 station_ip 83.123.133.0 106994 port 21 106994 unique_id port 106994 remote_ip 10.8.0.142 107005 username mehdizare 107005 mac 107005 bytes_out 46854 107005 bytes_in 63366 107005 station_ip 5.120.160.182 107005 port 16 107005 unique_id port 107005 remote_ip 10.8.0.90 107006 username tahmasebi 107006 mac 107006 bytes_out 0 107006 bytes_in 0 107006 station_ip 5.119.42.112 107006 port 13 107006 unique_id port 107012 username mohammadmahdi 107012 mac 107012 bytes_out 128345 107012 bytes_in 1674970 107012 station_ip 5.119.53.161 107012 port 13 107012 unique_id port 107012 remote_ip 10.8.0.54 107016 username rajaei 107016 mac 107016 bytes_out 727990 107016 bytes_in 2716438 107016 station_ip 5.200.108.39 107016 port 13 107016 unique_id port 106975 station_ip 5.120.89.244 106975 port 15728862 106975 nas_port_type Virtual 106975 remote_ip 5.5.5.251 106977 username hamid.e 106977 unique_id port 106977 terminate_cause Lost-Carrier 106977 bytes_out 78196 106977 bytes_in 606563 106977 station_ip 37.27.27.83 106977 port 15728866 106977 nas_port_type Virtual 106977 remote_ip 5.5.5.253 106978 username mehdizare 106978 mac 106978 bytes_out 0 106978 bytes_in 0 106978 station_ip 5.120.160.182 106978 port 15 106978 unique_id port 106978 remote_ip 10.8.0.90 106979 username kamali1 106979 mac 106979 bytes_out 1281650 106979 bytes_in 28168354 106979 station_ip 5.120.168.134 106979 port 18 106979 unique_id port 106979 remote_ip 10.8.0.70 106981 username houshang 106981 kill_reason Another user logged on this global unique id 106981 mac 106981 bytes_out 0 106981 bytes_in 0 106981 station_ip 5.120.65.78 106981 port 21 106981 unique_id port 106982 username kamali1 106982 mac 106982 bytes_out 46949 106982 bytes_in 199724 106982 station_ip 5.120.168.134 106982 port 22 106982 unique_id port 106982 remote_ip 10.8.0.70 106983 username mosi 106983 kill_reason Another user logged on this global unique id 106983 mac 106983 bytes_out 0 106983 bytes_in 0 106983 station_ip 151.235.112.178 106983 port 23 106983 unique_id port 106983 remote_ip 10.8.0.138 106984 username tahmasebi 106984 kill_reason Another user logged on this global unique id 106984 mac 106984 bytes_out 0 106984 bytes_in 0 106984 station_ip 5.119.42.112 106984 port 13 106984 unique_id port 106985 username mosi 106985 kill_reason Another user logged on this global unique id 106985 mac 106985 bytes_out 0 106985 bytes_in 0 106985 station_ip 151.235.112.178 106985 port 23 106985 unique_id port 106995 username mohammadmahdi 106995 kill_reason Another user logged on this global unique id 106995 mac 106995 bytes_out 0 106995 bytes_in 0 106995 station_ip 5.120.17.32 106995 port 15 106995 unique_id port 106995 remote_ip 10.8.0.54 106997 username malekpoir 106997 kill_reason Another user logged on this global unique id 106997 mac 106997 bytes_out 0 106997 bytes_in 0 106997 station_ip 5.119.21.231 106997 port 2 106997 unique_id port 106997 remote_ip 10.8.0.58 107001 username mosi 107001 kill_reason Another user logged on this global unique id 107001 mac 107001 bytes_out 0 107001 bytes_in 0 107001 station_ip 151.235.112.178 107001 port 23 107001 unique_id port 107004 username mosi 107004 kill_reason Another user logged on this global unique id 107004 mac 107004 bytes_out 0 107004 bytes_in 0 107004 station_ip 151.235.112.178 107004 port 23 107004 unique_id port 107008 username mohammadmahdi 107008 kill_reason Another user logged on this global unique id 107008 mac 107008 bytes_out 0 107008 bytes_in 0 107008 station_ip 5.120.17.32 107008 port 15 107008 unique_id port 107009 username mohammadjavad 107009 kill_reason Another user logged on this global unique id 107009 mac 107009 bytes_out 0 107009 bytes_in 0 107009 station_ip 37.129.125.235 107009 port 2 107009 unique_id port 107009 remote_ip 10.8.0.142 107014 username mohammadjavad 107014 kill_reason Another user logged on this global unique id 107014 mac 107014 bytes_out 0 107014 bytes_in 0 107014 station_ip 37.129.125.235 107014 port 2 107014 unique_id port 107015 username mehdizare 107015 mac 107015 bytes_out 0 107015 bytes_in 0 107015 station_ip 5.120.160.182 107015 port 6 107015 unique_id port 107015 remote_ip 10.8.1.42 107023 username zare 107023 mac 107023 bytes_out 0 107023 bytes_in 0 107023 station_ip 37.27.49.103 107023 port 13 107023 unique_id port 107023 remote_ip 10.8.0.18 107025 username kordestani 107025 mac 107025 bytes_out 0 107002 kill_reason Another user logged on this global unique id 107002 mac 107002 bytes_out 0 107002 bytes_in 0 107002 station_ip 151.235.112.178 107002 port 23 107002 unique_id port 107003 username malekpoir 107003 mac 107003 bytes_out 0 107003 bytes_in 0 107003 station_ip 5.119.21.231 107003 port 2 107003 unique_id port 107007 username mehdizare 107007 mac 107007 bytes_out 4082 107007 bytes_in 9180 107007 station_ip 5.120.160.182 107007 port 16 107007 unique_id port 107007 remote_ip 10.8.0.90 107010 username mohammadjavad 107010 kill_reason Another user logged on this global unique id 107010 mac 107010 bytes_out 0 107010 bytes_in 0 107010 station_ip 37.129.125.235 107010 port 2 107010 unique_id port 107011 username mohammadmahdi 107011 mac 107011 bytes_out 0 107011 bytes_in 0 107011 station_ip 5.120.17.32 107011 port 15 107011 unique_id port 107013 username mehdizare 107013 mac 107013 bytes_out 0 107013 bytes_in 0 107013 station_ip 5.120.160.182 107013 port 6 107013 unique_id port 107013 remote_ip 10.8.1.42 107017 username alipour 107017 mac 107017 bytes_out 0 107017 bytes_in 0 107017 station_ip 83.122.126.201 107017 port 5 107017 unique_id port 107017 remote_ip 10.8.1.50 107021 username zare 107021 mac 107021 bytes_out 0 107021 bytes_in 0 107021 station_ip 37.27.49.103 107021 port 13 107021 unique_id port 107021 remote_ip 10.8.0.18 107024 username zare 107024 mac 107024 bytes_out 0 107024 bytes_in 0 107024 station_ip 37.27.49.103 107024 port 16 107024 unique_id port 107024 remote_ip 10.8.0.18 107026 username zare 107026 mac 107026 bytes_out 0 107026 bytes_in 0 107026 station_ip 37.27.49.103 107026 port 16 107026 unique_id port 107026 remote_ip 10.8.0.18 107031 username arman1 107031 kill_reason Another user logged on this global unique id 107031 mac 107031 bytes_out 0 107031 bytes_in 0 107031 station_ip 5.119.153.21 107031 port 20 107031 unique_id port 107031 remote_ip 10.8.0.110 107034 username zare 107034 mac 107034 bytes_out 0 107034 bytes_in 0 107034 station_ip 37.27.49.103 107034 port 16 107034 unique_id port 107034 remote_ip 10.8.0.18 107036 username zare 107036 mac 107036 bytes_out 0 107036 bytes_in 0 107036 station_ip 37.27.49.103 107036 port 16 107036 unique_id port 107036 remote_ip 10.8.0.18 107039 username mohammadjavad 107039 mac 107039 bytes_out 0 107039 bytes_in 0 107039 station_ip 37.129.125.235 107039 port 2 107039 unique_id port 107043 username zare 107043 mac 107043 bytes_out 16645 107043 bytes_in 56383 107043 station_ip 37.27.49.103 107043 port 2 107043 unique_id port 107043 remote_ip 10.8.0.18 107048 username zare 107048 mac 107048 bytes_out 0 107048 bytes_in 0 107048 station_ip 37.27.49.103 107048 port 2 107048 unique_id port 107048 remote_ip 10.8.0.18 107061 username arman1 107061 kill_reason Another user logged on this global unique id 107061 mac 107061 bytes_out 0 107061 bytes_in 0 107061 station_ip 5.119.153.21 107061 port 20 107061 unique_id port 107064 username mohammadmahdi 107064 kill_reason Another user logged on this global unique id 107064 mac 107064 bytes_out 0 107064 bytes_in 0 107064 station_ip 5.120.9.232 107064 port 22 107064 unique_id port 107064 remote_ip 10.8.0.54 107065 username alipour 107065 mac 107065 bytes_out 365610 107065 bytes_in 3038530 107065 station_ip 83.122.126.201 107065 port 5 107065 unique_id port 107065 remote_ip 10.8.1.50 107068 username tahmasebi 107068 kill_reason Another user logged on this global unique id 107068 mac 107068 bytes_out 0 107016 remote_ip 10.8.0.34 107018 username zare 107018 mac 107018 bytes_out 303817 107018 bytes_in 1402009 107018 station_ip 37.27.49.103 107018 port 7 107018 unique_id port 107018 remote_ip 10.8.1.58 107019 username mohammadjavad 107019 kill_reason Another user logged on this global unique id 107019 mac 107019 bytes_out 0 107019 bytes_in 0 107019 station_ip 37.129.125.235 107019 port 2 107019 unique_id port 107020 username aminvpn 107020 unique_id port 107020 terminate_cause Lost-Carrier 107020 bytes_out 1466838 107020 bytes_in 25326494 107020 station_ip 5.120.40.98 107020 port 15728868 107020 nas_port_type Virtual 107020 remote_ip 5.5.5.254 107022 username forozande 107022 mac 107022 bytes_out 0 107022 bytes_in 0 107022 station_ip 37.129.252.106 107022 port 16 107022 unique_id port 107022 remote_ip 10.8.0.74 107027 username mohammadjavad 107027 kill_reason Another user logged on this global unique id 107027 mac 107027 bytes_out 0 107027 bytes_in 0 107027 station_ip 37.129.125.235 107027 port 2 107027 unique_id port 107029 username hashtadani 107029 unique_id port 107029 terminate_cause Lost-Carrier 107029 bytes_out 176211 107029 bytes_in 2589352 107029 station_ip 5.202.6.2 107029 port 15728870 107029 nas_port_type Virtual 107029 remote_ip 5.5.5.251 107032 username zare 107032 mac 107032 bytes_out 38653 107032 bytes_in 158484 107032 station_ip 37.27.49.103 107032 port 16 107032 unique_id port 107032 remote_ip 10.8.0.18 107037 username zare 107037 mac 107037 bytes_out 0 107037 bytes_in 0 107037 station_ip 37.27.49.103 107037 port 16 107037 unique_id port 107037 remote_ip 10.8.0.18 107038 username zare 107038 mac 107038 bytes_out 0 107038 bytes_in 0 107038 station_ip 37.27.49.103 107038 port 16 107038 unique_id port 107038 remote_ip 10.8.0.18 107041 username morteza 107041 kill_reason Another user logged on this global unique id 107041 mac 107041 bytes_out 0 107041 bytes_in 0 107041 station_ip 83.122.139.26 107041 port 15 107041 unique_id port 107041 remote_ip 10.8.0.46 107045 username arabpour 107045 unique_id port 107045 terminate_cause Lost-Carrier 107045 bytes_out 24637 107045 bytes_in 79090 107045 station_ip 95.64.61.192 107045 port 15728872 107045 nas_port_type Virtual 107045 remote_ip 5.5.5.248 107047 username arman1 107047 kill_reason Another user logged on this global unique id 107047 mac 107047 bytes_out 0 107047 bytes_in 0 107047 station_ip 5.119.153.21 107047 port 20 107047 unique_id port 107049 username aminvpn 107049 mac 107049 bytes_out 0 107049 bytes_in 0 107049 station_ip 83.123.24.54 107049 port 13 107049 unique_id port 107049 remote_ip 10.8.0.14 107050 username zare 107050 mac 107050 bytes_out 0 107050 bytes_in 0 107050 station_ip 37.27.49.103 107050 port 2 107050 unique_id port 107050 remote_ip 10.8.0.18 107052 username zare 107052 mac 107052 bytes_out 0 107052 bytes_in 0 107052 station_ip 37.27.49.103 107052 port 2 107052 unique_id port 107052 remote_ip 10.8.0.18 107054 username mosi 107054 mac 107054 bytes_out 0 107054 bytes_in 0 107054 station_ip 151.235.112.178 107054 port 23 107054 unique_id port 107055 username zare 107055 mac 107055 bytes_out 0 107055 bytes_in 0 107055 station_ip 37.27.49.103 107055 port 2 107055 unique_id port 107055 remote_ip 10.8.0.18 107057 username zare 107057 mac 107057 bytes_out 0 107057 bytes_in 0 107057 station_ip 37.27.49.103 107057 port 2 107057 unique_id port 107057 remote_ip 10.8.0.18 107058 username zare 107058 mac 107058 bytes_out 0 107058 bytes_in 0 107058 station_ip 37.27.49.103 107025 bytes_in 0 107025 station_ip 151.235.118.145 107025 port 15 107025 unique_id port 107025 remote_ip 10.8.0.134 107028 username zare 107028 mac 107028 bytes_out 0 107028 bytes_in 0 107028 station_ip 37.27.49.103 107028 port 16 107028 unique_id port 107028 remote_ip 10.8.0.18 107030 username zare 107030 mac 107030 bytes_out 0 107030 bytes_in 0 107030 station_ip 37.27.49.103 107030 port 16 107030 unique_id port 107030 remote_ip 10.8.0.18 107033 username zare 107033 mac 107033 bytes_out 0 107033 bytes_in 0 107033 station_ip 37.27.49.103 107033 port 16 107033 unique_id port 107033 remote_ip 10.8.0.18 107035 username mohammadjavad 107035 kill_reason Another user logged on this global unique id 107035 mac 107035 bytes_out 0 107035 bytes_in 0 107035 station_ip 37.129.125.235 107035 port 2 107035 unique_id port 107040 username zare 107040 mac 107040 bytes_out 0 107040 bytes_in 0 107040 station_ip 37.27.49.103 107040 port 2 107040 unique_id port 107040 remote_ip 10.8.0.18 107042 username alireza 107042 unique_id port 107042 terminate_cause Lost-Carrier 107042 bytes_out 1840941 107042 bytes_in 31822364 107042 station_ip 5.120.89.244 107042 port 15728869 107042 nas_port_type Virtual 107042 remote_ip 5.5.5.253 107044 username hashtadani 107044 unique_id port 107044 terminate_cause Lost-Carrier 107044 bytes_out 680816 107044 bytes_in 10022269 107044 station_ip 5.202.6.2 107044 port 15728874 107044 nas_port_type Virtual 107044 remote_ip 5.5.5.252 107046 username zare 107046 mac 107046 bytes_out 0 107046 bytes_in 0 107046 station_ip 37.27.49.103 107046 port 2 107046 unique_id port 107046 remote_ip 10.8.0.18 107051 username zare 107051 mac 107051 bytes_out 0 107051 bytes_in 0 107051 station_ip 37.27.49.103 107051 port 2 107051 unique_id port 107051 remote_ip 10.8.0.18 107053 username aminvpn 107053 unique_id port 107053 terminate_cause User-Request 107053 bytes_out 7387669 107053 bytes_in 252449725 107053 station_ip 31.57.141.111 107053 port 15728871 107053 nas_port_type Virtual 107053 remote_ip 5.5.5.254 107056 username zare 107056 mac 107056 bytes_out 0 107056 bytes_in 0 107056 station_ip 37.27.49.103 107056 port 2 107056 unique_id port 107056 remote_ip 10.8.0.18 107063 username forozande 107063 mac 107063 bytes_out 58041 107063 bytes_in 76030 107063 station_ip 83.122.211.216 107063 port 23 107063 unique_id port 107063 remote_ip 10.8.0.74 107066 username mohammadmahdi 107066 kill_reason Another user logged on this global unique id 107066 mac 107066 bytes_out 0 107066 bytes_in 0 107066 station_ip 5.120.9.232 107066 port 22 107066 unique_id port 107067 username forozande 107067 mac 107067 bytes_out 0 107067 bytes_in 0 107067 station_ip 83.122.52.7 107067 port 16 107067 unique_id port 107067 remote_ip 10.8.0.74 107070 username ahmadi 107070 unique_id port 107070 terminate_cause User-Request 107070 bytes_out 119181 107070 bytes_in 687990 107070 station_ip 83.122.72.66 107070 port 15728876 107070 nas_port_type Virtual 107070 remote_ip 5.5.5.251 107071 username tahmasebi 107071 mac 107071 bytes_out 0 107071 bytes_in 0 107071 station_ip 5.119.42.112 107071 port 21 107071 unique_id port 107076 username arman1 107076 kill_reason Another user logged on this global unique id 107076 mac 107076 bytes_out 0 107076 bytes_in 0 107076 station_ip 5.119.153.21 107076 port 20 107076 unique_id port 107077 username arman1 107077 mac 107077 bytes_out 0 107077 bytes_in 0 107077 station_ip 5.119.153.21 107077 port 20 107077 unique_id port 107078 username zare 107204 username mehdizare 107058 port 2 107058 unique_id port 107058 remote_ip 10.8.0.18 107059 username zare 107059 mac 107059 bytes_out 0 107059 bytes_in 0 107059 station_ip 37.27.49.103 107059 port 2 107059 unique_id port 107059 remote_ip 10.8.0.18 107060 username alipour 107060 mac 107060 bytes_out 159139 107060 bytes_in 461657 107060 station_ip 83.122.126.201 107060 port 5 107060 unique_id port 107060 remote_ip 10.8.1.50 107062 username forozande 107062 mac 107062 bytes_out 0 107062 bytes_in 0 107062 station_ip 83.123.172.93 107062 port 16 107062 unique_id port 107062 remote_ip 10.8.0.74 107075 username morteza 107075 mac 107075 bytes_out 0 107075 bytes_in 0 107075 station_ip 83.122.139.26 107075 port 15 107075 unique_id port 107083 username mohammadmahdi 107083 kill_reason Another user logged on this global unique id 107083 mac 107083 bytes_out 0 107083 bytes_in 0 107083 station_ip 5.120.9.232 107083 port 22 107083 unique_id port 107084 username abravesh 107084 unique_id port 107084 terminate_cause User-Request 107084 bytes_out 1403128 107084 bytes_in 18894940 107084 station_ip 5.120.182.85 107084 port 15728875 107084 nas_port_type Virtual 107084 remote_ip 5.5.5.253 107089 username rajaei 107089 kill_reason Another user logged on this global unique id 107089 mac 107089 bytes_out 0 107089 bytes_in 0 107089 station_ip 37.137.43.58 107089 port 21 107089 unique_id port 107089 remote_ip 10.8.0.34 107092 username aminvpn 107092 mac 107092 bytes_out 1930836 107092 bytes_in 18382163 107092 station_ip 83.123.104.254 107092 port 20 107092 unique_id port 107092 remote_ip 10.8.0.14 107101 username zare 107101 mac 107101 bytes_out 0 107101 bytes_in 0 107101 station_ip 37.27.49.103 107101 port 23 107101 unique_id port 107101 remote_ip 10.8.0.18 107102 username mohammadjavad 107102 mac 107102 bytes_out 0 107102 bytes_in 0 107102 station_ip 83.123.107.50 107102 port 2 107102 unique_id port 107109 username houshang 107109 mac 107109 bytes_out 704719 107109 bytes_in 5512130 107109 station_ip 5.120.65.78 107109 port 23 107109 unique_id port 107109 remote_ip 10.8.0.22 107113 username mohammadjavad 107113 kill_reason Another user logged on this global unique id 107113 mac 107113 bytes_out 0 107113 bytes_in 0 107113 station_ip 37.129.8.220 107113 port 24 107113 unique_id port 107113 remote_ip 10.8.0.142 107120 username mohammadmahdi 107120 mac 107120 bytes_out 0 107120 bytes_in 0 107120 station_ip 5.120.9.232 107120 port 22 107120 unique_id port 107132 username mohammadmahdi 107132 mac 107132 bytes_out 1349329 107132 bytes_in 11533746 107132 station_ip 5.120.9.232 107132 port 22 107132 unique_id port 107132 remote_ip 10.8.0.54 107140 username kordestani 107140 mac 107140 bytes_out 3432616 107140 bytes_in 48885309 107140 station_ip 151.235.118.145 107140 port 16 107140 unique_id port 107140 remote_ip 10.8.0.134 107150 username amir 107150 mac 107150 bytes_out 3030388 107150 bytes_in 44533837 107150 station_ip 46.225.210.46 107150 port 22 107150 unique_id port 107150 remote_ip 10.8.0.50 107151 username amir 107151 mac 107151 bytes_out 22165 107151 bytes_in 49455 107151 station_ip 46.225.210.46 107151 port 15 107151 unique_id port 107151 remote_ip 10.8.0.50 107155 username amir 107155 mac 107155 bytes_out 633551 107155 bytes_in 4739004 107155 station_ip 46.225.210.46 107155 port 15 107155 unique_id port 107155 remote_ip 10.8.0.50 107159 username ahmadi 107159 unique_id port 107159 terminate_cause User-Request 107159 bytes_out 20899 107159 bytes_in 87927 107159 station_ip 83.122.43.234 107068 bytes_in 0 107068 station_ip 5.119.42.112 107068 port 21 107068 unique_id port 107068 remote_ip 10.8.0.42 107069 username mohammadmahdi 107069 kill_reason Another user logged on this global unique id 107069 mac 107069 bytes_out 0 107069 bytes_in 0 107069 station_ip 5.120.9.232 107069 port 22 107069 unique_id port 107072 username mehdizare 107072 mac 107072 bytes_out 75340 107072 bytes_in 133185 107072 station_ip 5.120.160.182 107072 port 6 107072 unique_id port 107072 remote_ip 10.8.1.42 107073 username alipour 107073 mac 107073 bytes_out 0 107073 bytes_in 0 107073 station_ip 83.122.126.201 107073 port 5 107073 unique_id port 107073 remote_ip 10.8.1.50 107074 username mohammadmahdi 107074 kill_reason Another user logged on this global unique id 107074 mac 107074 bytes_out 0 107074 bytes_in 0 107074 station_ip 5.120.9.232 107074 port 22 107074 unique_id port 107079 username mohammadmahdi 107079 kill_reason Another user logged on this global unique id 107079 mac 107079 bytes_out 0 107079 bytes_in 0 107079 station_ip 5.120.9.232 107079 port 22 107079 unique_id port 107080 username aminvpn 107080 unique_id port 107080 terminate_cause User-Request 107080 bytes_out 168402 107080 bytes_in 1039562 107080 station_ip 5.119.3.8 107080 port 15728877 107080 nas_port_type Virtual 107080 remote_ip 5.5.5.251 107082 username houshang 107082 mac 107082 bytes_out 494271 107082 bytes_in 6090562 107082 station_ip 5.120.65.78 107082 port 21 107082 unique_id port 107082 remote_ip 10.8.0.22 107086 username mirzaei 107086 kill_reason Another user logged on this global unique id 107086 mac 107086 bytes_out 0 107086 bytes_in 0 107086 station_ip 5.119.18.54 107086 port 18 107086 unique_id port 107086 remote_ip 10.8.0.66 107087 username zare 107087 mac 107087 bytes_out 0 107087 bytes_in 0 107087 station_ip 37.27.49.103 107087 port 2 107087 unique_id port 107087 remote_ip 10.8.0.18 107088 username zare 107088 mac 107088 bytes_out 0 107088 bytes_in 0 107088 station_ip 37.27.49.103 107088 port 2 107088 unique_id port 107088 remote_ip 10.8.0.18 107090 username zare 107090 mac 107090 bytes_out 0 107090 bytes_in 0 107090 station_ip 37.27.49.103 107090 port 23 107090 unique_id port 107090 remote_ip 10.8.0.18 107095 username zare 107095 kill_reason Maximum check online fails reached 107095 mac 107095 bytes_out 0 107095 bytes_in 0 107095 station_ip 37.27.49.103 107095 port 20 107095 unique_id port 107098 username zare 107098 mac 107098 bytes_out 18557 107098 bytes_in 64615 107098 station_ip 37.27.49.103 107098 port 23 107098 unique_id port 107098 remote_ip 10.8.0.18 107104 username forozande 107104 mac 107104 bytes_out 0 107104 bytes_in 0 107104 station_ip 37.129.98.85 107104 port 24 107104 unique_id port 107104 remote_ip 10.8.0.74 107106 username rajaei 107106 mac 107106 bytes_out 0 107106 bytes_in 0 107106 station_ip 37.137.43.58 107106 port 21 107106 unique_id port 107107 username mohammadmahdi 107107 kill_reason Another user logged on this global unique id 107107 mac 107107 bytes_out 0 107107 bytes_in 0 107107 station_ip 5.120.9.232 107107 port 22 107107 unique_id port 107108 username morteza 107108 mac 107108 bytes_out 0 107108 bytes_in 0 107108 station_ip 83.122.207.10 107108 port 15 107108 unique_id port 107108 remote_ip 10.8.0.46 107111 username seyedmostafa 107111 kill_reason Another user logged on this global unique id 107111 mac 107111 bytes_out 0 107111 bytes_in 0 107111 station_ip 5.119.8.42 107111 port 21 107111 unique_id port 107111 remote_ip 10.8.0.122 107115 username rezasekonji 107078 kill_reason Another user logged on this global unique id 107078 mac 107078 bytes_out 0 107078 bytes_in 0 107078 station_ip 37.27.49.103 107078 port 2 107078 unique_id port 107078 remote_ip 10.8.0.18 107081 username forozande 107081 mac 107081 bytes_out 328359 107081 bytes_in 1053646 107081 station_ip 37.129.164.205 107081 port 15 107081 unique_id port 107081 remote_ip 10.8.0.74 107085 username zare 107085 mac 107085 bytes_out 0 107085 bytes_in 0 107085 station_ip 37.27.49.103 107085 port 2 107085 unique_id port 107091 username zare 107091 mac 107091 bytes_out 0 107091 bytes_in 0 107091 station_ip 37.27.49.103 107091 port 23 107091 unique_id port 107091 remote_ip 10.8.0.18 107093 username zare 107093 mac 107093 bytes_out 0 107093 bytes_in 0 107093 station_ip 37.27.49.103 107093 port 20 107093 unique_id port 107093 remote_ip 10.8.0.18 107094 username mohammadmahdi 107094 kill_reason Another user logged on this global unique id 107094 mac 107094 bytes_out 0 107094 bytes_in 0 107094 station_ip 5.120.9.232 107094 port 22 107094 unique_id port 107096 username kordestani 107096 mac 107096 bytes_out 0 107096 bytes_in 0 107096 station_ip 151.235.118.145 107096 port 13 107096 unique_id port 107096 remote_ip 10.8.0.134 107097 username rajaei 107097 kill_reason Another user logged on this global unique id 107097 mac 107097 bytes_out 0 107097 bytes_in 0 107097 station_ip 37.137.43.58 107097 port 21 107097 unique_id port 107099 username houshang 107099 mac 107099 bytes_out 17013 107099 bytes_in 56029 107099 station_ip 5.120.65.78 107099 port 24 107099 unique_id port 107099 remote_ip 10.8.0.22 107100 username mohammadjavad 107100 kill_reason Another user logged on this global unique id 107100 mac 107100 bytes_out 0 107100 bytes_in 0 107100 station_ip 83.123.107.50 107100 port 2 107100 unique_id port 107100 remote_ip 10.8.0.142 107103 username houshang 107103 mac 107103 bytes_out 30405 107103 bytes_in 72417 107103 station_ip 5.120.65.78 107103 port 23 107103 unique_id port 107103 remote_ip 10.8.0.22 107105 username amirabbas 107105 unique_id port 107105 terminate_cause User-Request 107105 bytes_out 32304301 107105 bytes_in 886692994 107105 station_ip 37.27.3.36 107105 port 15728867 107105 nas_port_type Virtual 107105 remote_ip 5.5.5.255 107110 username tahmasebi 107110 kill_reason Another user logged on this global unique id 107110 mac 107110 bytes_out 0 107110 bytes_in 0 107110 station_ip 5.119.42.112 107110 port 16 107110 unique_id port 107110 remote_ip 10.8.0.42 107112 username zare 107112 kill_reason Another user logged on this global unique id 107112 mac 107112 bytes_out 0 107112 bytes_in 0 107112 station_ip 37.27.49.103 107112 port 2 107112 unique_id port 107112 remote_ip 10.8.0.18 107114 username mohammadjavad 107114 kill_reason Another user logged on this global unique id 107114 mac 107114 bytes_out 0 107114 bytes_in 0 107114 station_ip 37.129.8.220 107114 port 24 107114 unique_id port 107116 username seyedmostafa 107116 kill_reason Another user logged on this global unique id 107116 mac 107116 bytes_out 0 107116 bytes_in 0 107116 station_ip 5.119.8.42 107116 port 21 107116 unique_id port 107119 username tahmasebi 107119 kill_reason Another user logged on this global unique id 107119 mac 107119 bytes_out 0 107119 bytes_in 0 107119 station_ip 5.119.42.112 107119 port 16 107119 unique_id port 107121 username mohammadjavad 107121 kill_reason Another user logged on this global unique id 107121 mac 107121 bytes_out 0 107121 bytes_in 0 107121 station_ip 37.129.8.220 107121 port 24 107121 unique_id port 107122 username seyedmostafa 107204 mac 107115 mac 107115 bytes_out 93497 107115 bytes_in 1494263 107115 station_ip 37.129.90.142 107115 port 23 107115 unique_id port 107115 remote_ip 10.8.0.130 107117 username zare 107117 kill_reason Another user logged on this global unique id 107117 mac 107117 bytes_out 0 107117 bytes_in 0 107117 station_ip 37.27.49.103 107117 port 2 107117 unique_id port 107118 username houshang 107118 mac 107118 bytes_out 0 107118 bytes_in 0 107118 station_ip 5.120.65.78 107118 port 23 107118 unique_id port 107118 remote_ip 10.8.0.22 107126 username aminvpn 107126 unique_id port 107126 terminate_cause User-Request 107126 bytes_out 4315406 107126 bytes_in 140149902 107126 station_ip 31.57.141.111 107126 port 15728878 107126 nas_port_type Virtual 107126 remote_ip 5.5.5.255 107127 username seyedmostafa 107127 mac 107127 bytes_out 0 107127 bytes_in 0 107127 station_ip 5.119.8.42 107127 port 21 107127 unique_id port 107130 username mohammadjavad 107130 kill_reason Another user logged on this global unique id 107130 mac 107130 bytes_out 0 107130 bytes_in 0 107130 station_ip 37.129.8.220 107130 port 24 107130 unique_id port 107131 username mohammadjavad 107131 mac 107131 bytes_out 0 107131 bytes_in 0 107131 station_ip 37.129.8.220 107131 port 24 107131 unique_id port 107136 username amir 107136 mac 107136 bytes_out 0 107136 bytes_in 0 107136 station_ip 46.225.210.46 107136 port 15 107136 unique_id port 107139 username hashtadani 107139 unique_id port 107139 terminate_cause Lost-Carrier 107139 bytes_out 1195322 107139 bytes_in 12788129 107139 station_ip 37.129.127.22 107139 port 15728879 107139 nas_port_type Virtual 107139 remote_ip 5.5.5.253 107144 username ahmadipour 107144 unique_id port 107144 terminate_cause Lost-Carrier 107144 bytes_out 1099836 107144 bytes_in 30135414 107144 station_ip 37.129.99.225 107144 port 15728881 107144 nas_port_type Virtual 107144 remote_ip 5.5.5.254 107145 username aminvpn 107145 unique_id port 107145 terminate_cause User-Request 107145 bytes_out 15074994 107145 bytes_in 475386492 107145 station_ip 5.120.40.98 107145 port 15728873 107145 nas_port_type Virtual 107145 remote_ip 5.5.5.246 107146 username kamali1 107146 mac 107146 bytes_out 101912 107146 bytes_in 266404 107146 station_ip 5.120.46.32 107146 port 16 107146 unique_id port 107146 remote_ip 10.8.0.70 107147 username kamali1 107147 mac 107147 bytes_out 6639 107147 bytes_in 10785 107147 station_ip 5.120.46.32 107147 port 21 107147 unique_id port 107147 remote_ip 10.8.0.70 107148 username avaanna 107148 mac 107148 bytes_out 2804885 107148 bytes_in 32434865 107148 station_ip 83.122.114.18 107148 port 15 107148 unique_id port 107148 remote_ip 10.8.0.98 107153 username kamali1 107153 mac 107153 bytes_out 37762 107153 bytes_in 70421 107153 station_ip 5.120.46.32 107153 port 15 107153 unique_id port 107153 remote_ip 10.8.0.70 107156 username mehdizare 107156 kill_reason Another user logged on this global unique id 107156 mac 107156 bytes_out 0 107156 bytes_in 0 107156 station_ip 5.120.160.182 107156 port 6 107156 unique_id port 107161 username zare 107161 kill_reason Another user logged on this global unique id 107161 mac 107161 bytes_out 0 107161 bytes_in 0 107161 station_ip 37.27.49.103 107161 port 7 107161 unique_id port 107161 remote_ip 10.8.1.58 107163 username aminvpn 107163 mac 107163 bytes_out 269826 107163 bytes_in 586692 107163 station_ip 83.123.136.190 107163 port 21 107163 unique_id port 107163 remote_ip 10.8.0.14 107164 username alirezazadeh 107164 unique_id port 107164 terminate_cause Lost-Carrier 107164 bytes_out 3845259 107164 bytes_in 101984239 107122 kill_reason Another user logged on this global unique id 107122 mac 107122 bytes_out 0 107122 bytes_in 0 107122 station_ip 5.119.8.42 107122 port 21 107122 unique_id port 107123 username mohammadjavad 107123 kill_reason Another user logged on this global unique id 107123 mac 107123 bytes_out 0 107123 bytes_in 0 107123 station_ip 37.129.8.220 107123 port 24 107123 unique_id port 107124 username amir 107124 kill_reason Another user logged on this global unique id 107124 mac 107124 bytes_out 0 107124 bytes_in 0 107124 station_ip 46.225.210.46 107124 port 15 107124 unique_id port 107124 remote_ip 10.8.0.50 107125 username mohammadmahdi 107125 mac 107125 bytes_out 0 107125 bytes_in 0 107125 station_ip 5.120.9.232 107125 port 22 107125 unique_id port 107125 remote_ip 10.8.0.54 107128 username tahmasebi 107128 mac 107128 bytes_out 0 107128 bytes_in 0 107128 station_ip 5.119.42.112 107128 port 16 107128 unique_id port 107129 username zare 107129 kill_reason Another user logged on this global unique id 107129 mac 107129 bytes_out 0 107129 bytes_in 0 107129 station_ip 37.27.49.103 107129 port 2 107129 unique_id port 107133 username kamali1 107133 mac 107133 bytes_out 0 107133 bytes_in 0 107133 station_ip 5.120.46.32 107133 port 22 107133 unique_id port 107133 remote_ip 10.8.0.70 107134 username mohammadmahdi 107134 mac 107134 bytes_out 0 107134 bytes_in 0 107134 station_ip 5.120.9.232 107134 port 22 107134 unique_id port 107134 remote_ip 10.8.0.54 107135 username zare 107135 mac 107135 bytes_out 0 107135 bytes_in 0 107135 station_ip 37.27.49.103 107135 port 2 107135 unique_id port 107137 username zare 107137 kill_reason Maximum check online fails reached 107137 mac 107137 bytes_out 0 107137 bytes_in 0 107137 station_ip 37.27.49.103 107137 port 2 107137 unique_id port 107138 username forozande 107138 mac 107138 bytes_out 2101782 107138 bytes_in 30235967 107138 station_ip 83.123.93.103 107138 port 21 107138 unique_id port 107138 remote_ip 10.8.0.74 107141 username houshang 107141 mac 107141 bytes_out 221831 107141 bytes_in 662742 107141 station_ip 5.120.163.22 107141 port 21 107141 unique_id port 107141 remote_ip 10.8.0.22 107142 username ahmadi 107142 unique_id port 107142 terminate_cause User-Request 107142 bytes_out 38907 107142 bytes_in 272454 107142 station_ip 83.122.43.234 107142 port 15728880 107142 nas_port_type Virtual 107142 remote_ip 5.5.5.254 107143 username kamali1 107143 mac 107143 bytes_out 143312 107143 bytes_in 216503 107143 station_ip 5.120.46.32 107143 port 23 107143 unique_id port 107143 remote_ip 10.8.0.70 107149 username kamali1 107149 mac 107149 bytes_out 33814 107149 bytes_in 67646 107149 station_ip 5.120.46.32 107149 port 16 107149 unique_id port 107149 remote_ip 10.8.0.70 107152 username aminvpn 107152 mac 107152 bytes_out 379108 107152 bytes_in 1796376 107152 station_ip 83.123.136.190 107152 port 24 107152 unique_id port 107152 remote_ip 10.8.0.14 107154 username mehdizare 107154 kill_reason Another user logged on this global unique id 107154 mac 107154 bytes_out 0 107154 bytes_in 0 107154 station_ip 5.120.160.182 107154 port 6 107154 unique_id port 107154 remote_ip 10.8.1.42 107157 username amir 107157 mac 107157 bytes_out 104834 107157 bytes_in 465037 107157 station_ip 46.225.210.46 107157 port 15 107157 unique_id port 107157 remote_ip 10.8.0.50 107158 username mosi 107158 mac 107158 bytes_out 2431816 107158 bytes_in 22377618 107158 station_ip 151.235.112.178 107158 port 16 107158 unique_id port 107158 remote_ip 10.8.0.138 107159 port 15728884 107159 nas_port_type Virtual 107159 remote_ip 5.5.5.250 107160 username malekpoir 107160 mac 107160 bytes_out 5075370 107160 bytes_in 43939408 107160 station_ip 5.119.21.231 107160 port 13 107160 unique_id port 107160 remote_ip 10.8.0.58 107168 username amirabbas 107168 unique_id port 107168 terminate_cause User-Request 107168 bytes_out 5242414 107168 bytes_in 113813415 107168 station_ip 37.27.3.36 107168 port 15728886 107168 nas_port_type Virtual 107168 remote_ip 5.5.5.254 107172 username mahdiyehalizadeh 107172 mac 107172 bytes_out 1696503 107172 bytes_in 20618459 107172 station_ip 37.129.20.161 107172 port 16 107172 unique_id port 107172 remote_ip 10.8.0.82 107173 username mirzaei 107173 kill_reason Another user logged on this global unique id 107173 mac 107173 bytes_out 0 107173 bytes_in 0 107173 station_ip 5.119.18.54 107173 port 18 107173 unique_id port 107178 username zare 107178 mac 107178 bytes_out 0 107178 bytes_in 0 107178 station_ip 37.27.49.103 107178 port 15 107178 unique_id port 107178 remote_ip 10.8.0.18 107180 username zare 107180 mac 107180 bytes_out 0 107180 bytes_in 0 107180 station_ip 37.27.49.103 107180 port 15 107180 unique_id port 107180 remote_ip 10.8.0.18 107182 username mirzaei 107182 kill_reason Another user logged on this global unique id 107182 mac 107182 bytes_out 0 107182 bytes_in 0 107182 station_ip 5.119.18.54 107182 port 18 107182 unique_id port 107189 username abravesh 107189 unique_id port 107189 terminate_cause User-Request 107189 bytes_out 5796876 107189 bytes_in 98477380 107189 station_ip 5.119.11.124 107189 port 15728889 107189 nas_port_type Virtual 107189 remote_ip 5.5.5.254 107193 username tahmasebi 107193 mac 107193 bytes_out 3973232 107193 bytes_in 29106699 107193 station_ip 5.119.99.238 107193 port 13 107193 unique_id port 107193 remote_ip 10.8.0.42 107196 username mirzaei 107196 mac 107196 bytes_out 0 107196 bytes_in 0 107196 station_ip 5.119.18.54 107196 port 13 107196 unique_id port 107196 remote_ip 10.8.0.66 107202 username tahmasebi 107202 kill_reason Another user logged on this global unique id 107202 mac 107202 bytes_out 0 107202 bytes_in 0 107202 station_ip 5.120.77.102 107202 port 15 107202 unique_id port 107203 username mehdizare 107203 mac 107203 bytes_out 0 107203 bytes_in 0 107203 station_ip 5.119.196.53 107203 port 6 107203 unique_id port 107203 remote_ip 10.8.1.42 107204 bytes_out 21693 107204 bytes_in 38158 107204 station_ip 5.119.196.53 107204 port 16 107204 unique_id port 107204 remote_ip 10.8.0.90 107205 username mehdizare 107205 mac 107205 bytes_out 0 107205 bytes_in 0 107205 station_ip 5.119.196.53 107205 port 6 107205 unique_id port 107205 remote_ip 10.8.1.42 107210 username mehdizare 107210 mac 107210 bytes_out 10841 107210 bytes_in 15025 107210 station_ip 5.119.196.53 107210 port 13 107210 unique_id port 107210 remote_ip 10.8.0.90 107211 username mehdizare 107211 mac 107211 bytes_out 12605 107211 bytes_in 16627 107211 station_ip 5.119.196.53 107211 port 16 107211 unique_id port 107211 remote_ip 10.8.0.90 107213 username morteza 107213 mac 107213 bytes_out 610263 107213 bytes_in 4448633 107213 station_ip 83.122.207.30 107213 port 16 107213 unique_id port 107213 remote_ip 10.8.0.46 107214 username alipour 107214 mac 107214 bytes_out 247680 107214 bytes_in 1167650 107214 station_ip 83.122.126.201 107214 port 5 107214 unique_id port 107214 remote_ip 10.8.1.50 107215 username mohammadjavad 107215 kill_reason Another user logged on this global unique id 107215 mac 107215 bytes_out 0 107215 bytes_in 0 107162 username zare 107162 kill_reason Another user logged on this global unique id 107162 mac 107162 bytes_out 0 107162 bytes_in 0 107162 station_ip 37.27.49.103 107162 port 7 107162 unique_id port 107165 username aminvpn 107165 mac 107165 bytes_out 62849 107165 bytes_in 122651 107165 station_ip 83.123.136.190 107165 port 15 107165 unique_id port 107165 remote_ip 10.8.0.14 107166 username kordestani 107166 kill_reason Another user logged on this global unique id 107166 mac 107166 bytes_out 0 107166 bytes_in 0 107166 station_ip 151.235.111.160 107166 port 21 107166 unique_id port 107166 remote_ip 10.8.0.134 107167 username kordestani 107167 mac 107167 bytes_out 0 107167 bytes_in 0 107167 station_ip 151.235.111.160 107167 port 21 107167 unique_id port 107169 username kordestani 107169 mac 107169 bytes_out 269819 107169 bytes_in 3729541 107169 station_ip 151.235.104.51 107169 port 15 107169 unique_id port 107169 remote_ip 10.8.0.134 107170 username alipour 107170 mac 107170 bytes_out 720037 107170 bytes_in 4966930 107170 station_ip 83.122.126.201 107170 port 5 107170 unique_id port 107170 remote_ip 10.8.1.50 107171 username aminvpn 107171 mac 107171 bytes_out 681925 107171 bytes_in 5414823 107171 station_ip 37.129.150.10 107171 port 15 107171 unique_id port 107171 remote_ip 10.8.0.14 107174 username zare 107174 mac 107174 bytes_out 0 107174 bytes_in 0 107174 station_ip 37.27.49.103 107174 port 7 107174 unique_id port 107176 username zare 107176 mac 107176 bytes_out 15071 107176 bytes_in 25054 107176 station_ip 37.27.49.103 107176 port 15 107176 unique_id port 107176 remote_ip 10.8.0.18 107177 username zare 107177 mac 107177 bytes_out 0 107177 bytes_in 0 107177 station_ip 37.27.49.103 107177 port 15 107177 unique_id port 107177 remote_ip 10.8.0.18 107181 username zare 107181 mac 107181 bytes_out 0 107181 bytes_in 0 107181 station_ip 37.27.49.103 107181 port 15 107181 unique_id port 107181 remote_ip 10.8.0.18 107183 username arabpour 107183 unique_id port 107183 terminate_cause Lost-Carrier 107183 bytes_out 398137 107183 bytes_in 6725989 107183 station_ip 5.213.170.231 107183 port 15728887 107183 nas_port_type Virtual 107183 remote_ip 5.5.5.254 107185 username bcboard 107185 unique_id port 107185 terminate_cause User-Request 107185 bytes_out 6585697 107185 bytes_in 95704088 107185 station_ip 37.129.163.9 107185 port 15728888 107185 nas_port_type Virtual 107185 remote_ip 5.5.5.248 107186 username zare 107186 kill_reason Another user logged on this global unique id 107186 mac 107186 bytes_out 0 107186 bytes_in 0 107186 station_ip 37.27.49.103 107186 port 15 107186 unique_id port 107186 remote_ip 10.8.0.18 107192 username mirzaei 107192 mac 107192 bytes_out 0 107192 bytes_in 0 107192 station_ip 5.119.18.54 107192 port 18 107192 unique_id port 107194 username khalili 107194 mac 107194 bytes_out 2025428 107194 bytes_in 12366420 107194 station_ip 5.119.126.0 107194 port 17 107194 unique_id port 107194 remote_ip 10.8.0.86 107195 username mehdizare 107195 mac 107195 bytes_out 0 107195 bytes_in 0 107195 station_ip 5.120.160.182 107195 port 6 107195 unique_id port 107199 username tahmasebi 107199 kill_reason Another user logged on this global unique id 107199 mac 107199 bytes_out 0 107199 bytes_in 0 107199 station_ip 5.120.77.102 107199 port 15 107199 unique_id port 107201 username tahmasebi 107201 kill_reason Another user logged on this global unique id 107201 mac 107201 bytes_out 0 107201 bytes_in 0 107201 station_ip 5.120.77.102 107201 port 15 107201 unique_id port 107164 station_ip 5.119.75.130 107164 port 15728882 107164 nas_port_type Virtual 107164 remote_ip 5.5.5.254 107175 username zare 107175 kill_reason Maximum check online fails reached 107175 mac 107175 bytes_out 0 107175 bytes_in 0 107175 station_ip 37.27.49.103 107175 port 7 107175 unique_id port 107179 username zare 107179 mac 107179 bytes_out 0 107179 bytes_in 0 107179 station_ip 37.27.49.103 107179 port 15 107179 unique_id port 107179 remote_ip 10.8.0.18 107184 username mirzaei 107184 kill_reason Another user logged on this global unique id 107184 mac 107184 bytes_out 0 107184 bytes_in 0 107184 station_ip 5.119.18.54 107184 port 18 107184 unique_id port 107187 username bcboard 107187 unique_id port 107187 terminate_cause Lost-Carrier 107187 bytes_out 657311 107187 bytes_in 8011250 107187 station_ip 37.129.163.9 107187 port 15728890 107187 nas_port_type Virtual 107187 remote_ip 5.5.5.249 107188 username zare 107188 mac 107188 bytes_out 0 107188 bytes_in 0 107188 station_ip 37.27.49.103 107188 port 15 107188 unique_id port 107190 username alirr 107190 unique_id port 107190 terminate_cause User-Request 107190 bytes_out 32232463 107190 bytes_in 696617883 107190 station_ip 86.57.112.68 107190 port 15728885 107190 nas_port_type Virtual 107190 remote_ip 5.5.5.250 107191 username naeimeh 107191 mac 107191 bytes_out 3074844 107191 bytes_in 44158059 107191 station_ip 37.129.251.46 107191 port 15 107191 unique_id port 107191 remote_ip 10.8.0.78 107197 username tahmasebi 107197 kill_reason Another user logged on this global unique id 107197 mac 107197 bytes_out 0 107197 bytes_in 0 107197 station_ip 5.120.77.102 107197 port 15 107197 unique_id port 107197 remote_ip 10.8.0.42 107198 username alipour 107198 mac 107198 bytes_out 1048119 107198 bytes_in 18163174 107198 station_ip 83.122.126.201 107198 port 5 107198 unique_id port 107198 remote_ip 10.8.1.50 107200 username farhad1 107200 mac 107200 bytes_out 2718000 107200 bytes_in 10981574 107200 station_ip 5.120.41.224 107200 port 16 107200 unique_id port 107200 remote_ip 10.8.0.26 107206 username tahmasebi 107206 mac 107206 bytes_out 0 107206 bytes_in 0 107206 station_ip 5.120.77.102 107206 port 15 107206 unique_id port 107207 username mirzaei 107207 mac 107207 bytes_out 0 107207 bytes_in 0 107207 station_ip 5.119.18.54 107207 port 13 107207 unique_id port 107207 remote_ip 10.8.0.66 107208 username tahmasebi 107208 mac 107208 bytes_out 23709 107208 bytes_in 33262 107208 station_ip 5.120.77.102 107208 port 16 107208 unique_id port 107208 remote_ip 10.8.0.42 107212 username tahmasebi 107212 mac 107212 bytes_out 17041 107212 bytes_in 36365 107212 station_ip 5.120.77.102 107212 port 15 107212 unique_id port 107212 remote_ip 10.8.0.42 107216 username avaanna 107216 kill_reason Another user logged on this global unique id 107216 mac 107216 bytes_out 0 107216 bytes_in 0 107216 station_ip 83.122.14.146 107216 port 16 107216 unique_id port 107216 remote_ip 10.8.0.98 107225 username avaanna 107225 mac 107225 bytes_out 0 107225 bytes_in 0 107225 station_ip 83.122.14.146 107225 port 16 107225 unique_id port 107225 remote_ip 10.8.0.98 107228 username mohammadmahdi 107228 mac 107228 bytes_out 0 107228 bytes_in 0 107228 station_ip 5.120.9.232 107228 port 13 107228 unique_id port 107228 remote_ip 10.8.0.54 107230 username farhad1 107230 mac 107230 bytes_out 0 107230 bytes_in 0 107230 station_ip 5.120.65.241 107230 port 16 107230 unique_id port 107230 remote_ip 10.8.0.26 107236 username mohammadjavad 107236 mac 107236 bytes_out 0 107209 username mirzaei 107209 mac 107209 bytes_out 7303 107209 bytes_in 8107 107209 station_ip 5.119.18.54 107209 port 15 107209 unique_id port 107209 remote_ip 10.8.0.66 107220 username avaanna 107220 mac 107220 bytes_out 0 107220 bytes_in 0 107220 station_ip 83.122.14.146 107220 port 13 107220 unique_id port 107220 remote_ip 10.8.0.98 107221 username mohammadjavad 107221 mac 107221 bytes_out 0 107221 bytes_in 0 107221 station_ip 37.129.6.212 107221 port 18 107221 unique_id port 107222 username ahmadi 107222 unique_id port 107222 terminate_cause User-Request 107222 bytes_out 30203 107222 bytes_in 185915 107222 station_ip 83.122.22.143 107222 port 15728891 107222 nas_port_type Virtual 107222 remote_ip 5.5.5.254 107229 username mahdiyehalizadeh 107229 kill_reason Wrong password 107229 mac 107229 bytes_out 0 107229 bytes_in 0 107229 station_ip 83.123.98.192 107229 port 18 107229 unique_id port 107232 username morteza 107232 mac 107232 bytes_out 0 107232 bytes_in 0 107232 station_ip 83.122.130.10 107232 port 17 107232 unique_id port 107232 remote_ip 10.8.0.46 107234 username morteza 107234 mac 107234 bytes_out 17930 107234 bytes_in 41386 107234 station_ip 83.122.130.10 107234 port 8 107234 unique_id port 107234 remote_ip 10.8.1.62 107242 username mehdizare 107242 kill_reason Another user logged on this global unique id 107242 mac 107242 bytes_out 0 107242 bytes_in 0 107242 station_ip 5.119.196.53 107242 port 6 107242 unique_id port 107242 remote_ip 10.8.1.42 107243 username farhad1 107243 mac 107243 bytes_out 0 107243 bytes_in 0 107243 station_ip 5.120.48.225 107243 port 17 107243 unique_id port 107243 remote_ip 10.8.0.26 107247 username mahdiyehalizadeh 107247 mac 107247 bytes_out 0 107247 bytes_in 0 107247 station_ip 83.123.5.16 107247 port 22 107247 unique_id port 107247 remote_ip 10.8.0.82 107248 username morteza 107248 mac 107248 bytes_out 0 107248 bytes_in 0 107248 station_ip 83.122.238.30 107248 port 6 107248 unique_id port 107248 remote_ip 10.8.1.62 107253 username forozande 107253 mac 107253 bytes_out 0 107253 bytes_in 0 107253 station_ip 37.129.40.97 107253 port 17 107253 unique_id port 107254 username arman1 107254 kill_reason Another user logged on this global unique id 107254 mac 107254 bytes_out 0 107254 bytes_in 0 107254 station_ip 5.119.122.54 107254 port 23 107254 unique_id port 107254 remote_ip 10.8.0.110 107257 username mehdizare 107257 mac 107257 bytes_out 0 107257 bytes_in 0 107257 station_ip 5.119.196.53 107257 port 5 107257 unique_id port 107257 remote_ip 10.8.1.42 107259 username malekpoir 107259 mac 107259 bytes_out 0 107259 bytes_in 0 107259 station_ip 5.120.19.238 107259 port 21 107259 unique_id port 107259 remote_ip 10.8.0.58 107261 username avaanna 107261 mac 107261 bytes_out 0 107261 bytes_in 0 107261 station_ip 83.122.14.146 107261 port 21 107261 unique_id port 107261 remote_ip 10.8.0.98 107262 username avaanna 107262 mac 107262 bytes_out 0 107262 bytes_in 0 107262 station_ip 83.122.14.146 107262 port 16 107262 unique_id port 107262 remote_ip 10.8.0.98 107263 username avaanna 107263 mac 107263 bytes_out 0 107263 bytes_in 0 107263 station_ip 83.122.14.146 107263 port 26 107263 unique_id port 107263 remote_ip 10.8.0.98 107267 username forozande 107267 mac 107267 bytes_out 0 107267 bytes_in 0 107267 station_ip 83.122.24.151 107267 port 21 107267 unique_id port 107268 username zare 107268 mac 107268 bytes_out 1380808 107268 bytes_in 20473252 107215 station_ip 37.129.6.212 107215 port 18 107215 unique_id port 107215 remote_ip 10.8.0.142 107217 username mohammadjavad 107217 kill_reason Another user logged on this global unique id 107217 mac 107217 bytes_out 0 107217 bytes_in 0 107217 station_ip 37.129.6.212 107217 port 18 107217 unique_id port 107218 username mirzaei 107218 mac 107218 bytes_out 443352 107218 bytes_in 978975 107218 station_ip 5.119.18.54 107218 port 13 107218 unique_id port 107218 remote_ip 10.8.0.66 107219 username avaanna 107219 mac 107219 bytes_out 0 107219 bytes_in 0 107219 station_ip 83.122.14.146 107219 port 16 107219 unique_id port 107223 username mahdiyehalizadeh 107223 mac 107223 bytes_out 3201 107223 bytes_in 3784 107223 station_ip 83.123.172.51 107223 port 13 107223 unique_id port 107223 remote_ip 10.8.0.82 107224 username alipour 107224 mac 107224 bytes_out 0 107224 bytes_in 0 107224 station_ip 83.122.126.201 107224 port 17 107224 unique_id port 107224 remote_ip 10.8.0.102 107226 username avaanna 107226 mac 107226 bytes_out 38785 107226 bytes_in 62877 107226 station_ip 83.122.14.146 107226 port 5 107226 unique_id port 107226 remote_ip 10.8.1.46 107227 username mohammadjavad 107227 mac 107227 bytes_out 0 107227 bytes_in 0 107227 station_ip 113.203.26.33 107227 port 13 107227 unique_id port 107227 remote_ip 10.8.0.142 107231 username mahdiyehalizadeh 107231 mac 107231 bytes_out 0 107231 bytes_in 0 107231 station_ip 83.123.98.192 107231 port 18 107231 unique_id port 107231 remote_ip 10.8.0.82 107233 username farhad1 107233 kill_reason Another user logged on this global unique id 107233 mac 107233 bytes_out 0 107233 bytes_in 0 107233 station_ip 5.120.65.241 107233 port 21 107233 unique_id port 107233 remote_ip 10.8.0.26 107235 username farhad1 107235 mac 107235 bytes_out 0 107235 bytes_in 0 107235 station_ip 5.120.65.241 107235 port 21 107235 unique_id port 107240 username avaanna 107240 mac 107240 bytes_out 124300 107240 bytes_in 143466 107240 station_ip 83.122.14.146 107240 port 18 107240 unique_id port 107240 remote_ip 10.8.0.98 107249 username forozande 107249 kill_reason Another user logged on this global unique id 107249 mac 107249 bytes_out 0 107249 bytes_in 0 107249 station_ip 37.129.40.97 107249 port 17 107249 unique_id port 107249 remote_ip 10.8.0.74 107252 username hashtadani 107252 kill_reason Relative expiration date has reached 107252 bytes_out 24611915 107252 nas_port_type Virtual 107252 station_ip 83.123.76.171 107252 port 15728883 107252 terminate_cause Lost-Carrier 107252 bytes_in 302300296 107252 unique_id port 107252 remote_ip 5.5.5.252 107255 username arman1 107255 kill_reason Another user logged on this global unique id 107255 mac 107255 bytes_out 0 107255 bytes_in 0 107255 station_ip 5.119.122.54 107255 port 23 107255 unique_id port 107256 username aminvpn 107256 unique_id port 107256 terminate_cause Lost-Carrier 107256 bytes_out 741509 107256 bytes_in 9642204 107256 station_ip 5.119.206.231 107256 port 15728893 107256 nas_port_type Virtual 107256 remote_ip 5.5.5.254 107260 username avaanna 107260 mac 107260 bytes_out 248590 107260 bytes_in 398248 107260 station_ip 83.122.14.146 107260 port 16 107260 unique_id port 107260 remote_ip 10.8.0.98 107264 username rezasekonji 107264 mac 107264 bytes_out 0 107264 bytes_in 0 107264 station_ip 37.129.30.165 107264 port 24 107264 unique_id port 107264 remote_ip 10.8.0.130 107269 username forozande 107269 mac 107269 bytes_out 541805 107269 bytes_in 8415588 107269 station_ip 37.129.114.190 107269 port 17 107269 unique_id port 107236 bytes_in 0 107236 station_ip 37.129.120.64 107236 port 16 107236 unique_id port 107236 remote_ip 10.8.0.142 107237 username avaanna 107237 mac 107237 bytes_out 73951 107237 bytes_in 114324 107237 station_ip 83.122.14.146 107237 port 5 107237 unique_id port 107237 remote_ip 10.8.1.46 107238 username kamali1 107238 kill_reason Another user logged on this global unique id 107238 mac 107238 bytes_out 0 107238 bytes_in 0 107238 station_ip 5.119.100.31 107238 port 13 107238 unique_id port 107238 remote_ip 10.8.0.70 107239 username forozande 107239 mac 107239 bytes_out 0 107239 bytes_in 0 107239 station_ip 83.122.83.29 107239 port 16 107239 unique_id port 107239 remote_ip 10.8.0.74 107241 username kamali1 107241 mac 107241 bytes_out 0 107241 bytes_in 0 107241 station_ip 5.119.100.31 107241 port 13 107241 unique_id port 107244 username mahdiyehalizadeh 107244 mac 107244 bytes_out 13508 107244 bytes_in 21766 107244 station_ip 83.123.5.16 107244 port 13 107244 unique_id port 107244 remote_ip 10.8.0.82 107245 username alireza1 107245 kill_reason Relative expiration date has reached 107245 unique_id port 107245 bytes_out 0 107245 bytes_in 0 107245 station_ip 5.120.172.223 107245 port 15728892 107245 nas_port_type Virtual 107246 username mehdizare 107246 mac 107246 bytes_out 0 107246 bytes_in 0 107246 station_ip 5.119.196.53 107246 port 6 107246 unique_id port 107250 username mehdizare 107250 mac 107250 bytes_out 940612 107250 bytes_in 6249659 107250 station_ip 5.119.196.53 107250 port 5 107250 unique_id port 107250 remote_ip 10.8.1.42 107251 username forozande 107251 kill_reason Another user logged on this global unique id 107251 mac 107251 bytes_out 0 107251 bytes_in 0 107251 station_ip 37.129.40.97 107251 port 17 107251 unique_id port 107258 username kamali1 107258 mac 107258 bytes_out 911989 107258 bytes_in 4319262 107258 station_ip 5.119.100.31 107258 port 18 107258 unique_id port 107258 remote_ip 10.8.0.70 107265 username arman1 107265 mac 107265 bytes_out 0 107265 bytes_in 0 107265 station_ip 5.119.122.54 107265 port 23 107265 unique_id port 107266 username forozande 107266 kill_reason Another user logged on this global unique id 107266 mac 107266 bytes_out 0 107266 bytes_in 0 107266 station_ip 83.122.24.151 107266 port 21 107266 unique_id port 107266 remote_ip 10.8.0.74 107270 username mehdizare 107270 mac 107270 bytes_out 58151 107270 bytes_in 85323 107270 station_ip 5.119.196.53 107270 port 16 107270 unique_id port 107270 remote_ip 10.8.0.90 107273 username forozande 107273 mac 107273 bytes_out 4149 107273 bytes_in 8341 107273 station_ip 83.122.94.193 107273 port 21 107273 unique_id port 107273 remote_ip 10.8.0.74 107275 username mehdizare 107275 mac 107275 bytes_out 33502 107275 bytes_in 43400 107275 station_ip 5.119.196.53 107275 port 16 107275 unique_id port 107275 remote_ip 10.8.0.90 107277 username forozande 107277 mac 107277 bytes_out 193604 107277 bytes_in 979523 107277 station_ip 83.122.238.17 107277 port 16 107277 unique_id port 107277 remote_ip 10.8.0.74 107285 username kamali1 107285 mac 107285 bytes_out 173740 107285 bytes_in 1030738 107285 station_ip 5.119.100.31 107285 port 25 107285 unique_id port 107285 remote_ip 10.8.0.70 107289 username kordestani 107289 mac 107289 bytes_out 0 107289 bytes_in 0 107289 station_ip 151.235.93.82 107289 port 16 107289 unique_id port 107289 remote_ip 10.8.0.134 107292 username musa 107292 mac 107292 bytes_out 155915 107292 bytes_in 299007 107292 station_ip 91.251.240.11 107268 station_ip 94.183.214.14 107268 port 17 107268 unique_id port 107268 remote_ip 10.8.0.18 107271 username sedighe 107271 mac 107271 bytes_out 0 107271 bytes_in 0 107271 station_ip 83.122.62.113 107271 port 23 107271 unique_id port 107271 remote_ip 10.8.0.146 107272 username kordestani 107272 mac 107272 bytes_out 2728130 107272 bytes_in 35158091 107272 station_ip 151.235.93.82 107272 port 22 107272 unique_id port 107272 remote_ip 10.8.0.134 107274 username malekpoir 107274 mac 107274 bytes_out 0 107274 bytes_in 0 107274 station_ip 5.120.19.238 107274 port 18 107274 unique_id port 107274 remote_ip 10.8.0.58 107276 username mehdizare 107276 mac 107276 bytes_out 2114 107276 bytes_in 4113 107276 station_ip 5.119.196.53 107276 port 21 107276 unique_id port 107276 remote_ip 10.8.0.90 107279 username kordestani 107279 mac 107279 bytes_out 0 107279 bytes_in 0 107279 station_ip 151.235.93.82 107279 port 17 107279 unique_id port 107279 remote_ip 10.8.0.134 107280 username mehdizare 107280 mac 107280 bytes_out 0 107280 bytes_in 0 107280 station_ip 5.119.196.53 107280 port 5 107280 unique_id port 107280 remote_ip 10.8.1.42 107282 username mehdizare 107282 mac 107282 bytes_out 5653 107282 bytes_in 14318 107282 station_ip 5.119.196.53 107282 port 21 107282 unique_id port 107282 remote_ip 10.8.0.90 107284 username alireza 107284 unique_id port 107284 terminate_cause User-Request 107284 bytes_out 1309475 107284 bytes_in 15010583 107284 station_ip 5.120.89.244 107284 port 15728894 107284 nas_port_type Virtual 107284 remote_ip 5.5.5.255 107286 username zare 107286 mac 107286 bytes_out 11129 107286 bytes_in 28514 107286 station_ip 94.183.214.14 107286 port 24 107286 unique_id port 107286 remote_ip 10.8.0.18 107288 username forozande 107288 mac 107288 bytes_out 1057144 107288 bytes_in 16890159 107288 station_ip 83.122.170.189 107288 port 17 107288 unique_id port 107288 remote_ip 10.8.0.74 107291 username alireza 107291 unique_id port 107291 terminate_cause Lost-Carrier 107291 bytes_out 43153 107291 bytes_in 552326 107291 station_ip 5.120.89.244 107291 port 15728896 107291 nas_port_type Virtual 107291 remote_ip 5.5.5.255 107293 username avaanna 107293 mac 107293 bytes_out 0 107293 bytes_in 0 107293 station_ip 83.122.14.146 107293 port 26 107293 unique_id port 107293 remote_ip 10.8.0.98 107298 username forozande 107298 mac 107298 bytes_out 0 107298 bytes_in 0 107298 station_ip 37.129.178.50 107298 port 21 107298 unique_id port 107298 remote_ip 10.8.0.74 107300 username mehdizare 107300 mac 107300 bytes_out 0 107300 bytes_in 0 107300 station_ip 5.119.196.53 107300 port 5 107300 unique_id port 107300 remote_ip 10.8.1.42 107301 username avaanna 107301 mac 107301 bytes_out 0 107301 bytes_in 0 107301 station_ip 83.122.14.146 107301 port 24 107301 unique_id port 107301 remote_ip 10.8.0.98 107305 username sedighe 107305 mac 107305 bytes_out 188850 107305 bytes_in 1610401 107305 station_ip 37.129.201.45 107305 port 24 107305 unique_id port 107305 remote_ip 10.8.0.146 107306 username musa 107306 mac 107306 bytes_out 241288 107306 bytes_in 1547892 107306 station_ip 89.196.190.160 107306 port 16 107306 unique_id port 107306 remote_ip 10.8.0.6 107312 username sedighe 107312 mac 107312 bytes_out 0 107312 bytes_in 0 107312 station_ip 37.129.201.45 107312 port 5 107312 unique_id port 107312 remote_ip 10.8.1.78 107318 username ahmadi 107318 unique_id port 107318 terminate_cause User-Request 107318 bytes_out 78855 107269 remote_ip 10.8.0.74 107278 username ahmadipour 107278 unique_id port 107278 terminate_cause Lost-Carrier 107278 bytes_out 161646 107278 bytes_in 2511470 107278 station_ip 37.129.187.85 107278 port 15728895 107278 nas_port_type Virtual 107278 remote_ip 5.5.5.253 107281 username mehdizare 107281 mac 107281 bytes_out 0 107281 bytes_in 0 107281 station_ip 5.119.196.53 107281 port 17 107281 unique_id port 107281 remote_ip 10.8.0.90 107283 username mehdizare 107283 mac 107283 bytes_out 8836 107283 bytes_in 11806 107283 station_ip 5.119.196.53 107283 port 17 107283 unique_id port 107283 remote_ip 10.8.0.90 107287 username musa 107287 mac 107287 bytes_out 444359 107287 bytes_in 2187651 107287 station_ip 5.52.153.146 107287 port 22 107287 unique_id port 107287 remote_ip 10.8.0.6 107290 username mehdizare 107290 mac 107290 bytes_out 34522 107290 bytes_in 36877 107290 station_ip 5.119.196.53 107290 port 21 107290 unique_id port 107290 remote_ip 10.8.0.90 107294 username musa 107294 mac 107294 bytes_out 14813 107294 bytes_in 22013 107294 station_ip 91.251.240.11 107294 port 22 107294 unique_id port 107294 remote_ip 10.8.0.6 107296 username mehdizare 107296 mac 107296 bytes_out 0 107296 bytes_in 0 107296 station_ip 5.119.196.53 107296 port 5 107296 unique_id port 107296 remote_ip 10.8.1.42 107302 username musa 107302 mac 107302 bytes_out 18957 107302 bytes_in 37722 107302 station_ip 91.251.148.100 107302 port 16 107302 unique_id port 107302 remote_ip 10.8.0.6 107308 username sedighe 107308 mac 107308 bytes_out 0 107308 bytes_in 0 107308 station_ip 37.129.201.45 107308 port 5 107308 unique_id port 107308 remote_ip 10.8.1.78 107311 username aminvpn 107311 mac 107311 bytes_out 148554 107311 bytes_in 282083 107311 station_ip 113.203.125.187 107311 port 17 107311 unique_id port 107311 remote_ip 10.8.0.14 107314 username jamali 107314 mac 107314 bytes_out 0 107314 bytes_in 0 107314 station_ip 5.119.90.41 107314 port 17 107314 unique_id port 107314 remote_ip 10.8.0.150 107315 username amir 107315 mac 107315 bytes_out 0 107315 bytes_in 0 107315 station_ip 46.225.211.129 107315 port 6 107315 unique_id port 107315 remote_ip 10.8.1.22 107316 username jamali 107316 mac 107316 bytes_out 0 107316 bytes_in 0 107316 station_ip 5.119.90.41 107316 port 24 107316 unique_id port 107316 remote_ip 10.8.0.150 107317 username tahmasebi 107317 kill_reason Another user logged on this global unique id 107317 mac 107317 bytes_out 0 107317 bytes_in 0 107317 station_ip 5.120.77.102 107317 port 15 107317 unique_id port 107317 remote_ip 10.8.0.42 107319 username malekpoir 107319 mac 107319 bytes_out 1542758 107319 bytes_in 18463200 107319 station_ip 5.120.19.238 107319 port 18 107319 unique_id port 107319 remote_ip 10.8.0.58 107324 username mehdizare 107324 mac 107324 bytes_out 179238 107324 bytes_in 227022 107324 station_ip 5.119.196.53 107324 port 26 107324 unique_id port 107324 remote_ip 10.8.0.90 107327 username kamali1 107327 mac 107327 bytes_out 0 107327 bytes_in 0 107327 station_ip 5.119.100.31 107327 port 23 107327 unique_id port 107327 remote_ip 10.8.0.70 107331 username malekpoir 107331 mac 107331 bytes_out 0 107331 bytes_in 0 107331 station_ip 5.119.223.96 107331 port 10 107331 unique_id port 107331 remote_ip 10.8.1.54 107332 username alipour 107332 mac 107332 bytes_out 0 107332 bytes_in 0 107332 station_ip 83.123.32.71 107332 port 22 107332 unique_id port 107332 remote_ip 10.8.0.102 107337 username mirzaei 107292 port 16 107292 unique_id port 107292 remote_ip 10.8.0.6 107295 username mohammadjavad 107295 mac 107295 bytes_out 349833 107295 bytes_in 856193 107295 station_ip 83.123.165.0 107295 port 25 107295 unique_id port 107295 remote_ip 10.8.0.142 107297 username avaanna 107297 mac 107297 bytes_out 0 107297 bytes_in 0 107297 station_ip 83.122.14.146 107297 port 16 107297 unique_id port 107297 remote_ip 10.8.0.98 107299 username musa 107299 mac 107299 bytes_out 0 107299 bytes_in 0 107299 station_ip 91.251.148.100 107299 port 22 107299 unique_id port 107299 remote_ip 10.8.0.6 107303 username avaanna 107303 mac 107303 bytes_out 117476 107303 bytes_in 461508 107303 station_ip 83.122.14.146 107303 port 5 107303 unique_id port 107303 remote_ip 10.8.1.46 107304 username mehdizare 107304 mac 107304 bytes_out 31639 107304 bytes_in 49965 107304 station_ip 5.119.196.53 107304 port 21 107304 unique_id port 107304 remote_ip 10.8.0.90 107307 username avaanna 107307 mac 107307 bytes_out 28812 107307 bytes_in 56942 107307 station_ip 83.122.14.146 107307 port 25 107307 unique_id port 107307 remote_ip 10.8.0.98 107309 username avaanna 107309 mac 107309 bytes_out 226538 107309 bytes_in 2173864 107309 station_ip 83.122.14.146 107309 port 16 107309 unique_id port 107309 remote_ip 10.8.0.98 107310 username avaanna 107310 mac 107310 bytes_out 24662 107310 bytes_in 43960 107310 station_ip 83.122.14.146 107310 port 24 107310 unique_id port 107310 remote_ip 10.8.0.98 107313 username jamali 107313 mac 107313 bytes_out 83535 107313 bytes_in 299243 107313 station_ip 5.119.90.41 107313 port 17 107313 unique_id port 107313 remote_ip 10.8.0.150 107320 username sedighe 107320 mac 107320 bytes_out 111021 107320 bytes_in 511992 107320 station_ip 37.129.201.45 107320 port 17 107320 unique_id port 107320 remote_ip 10.8.0.146 107321 username avaanna 107321 mac 107321 bytes_out 0 107321 bytes_in 0 107321 station_ip 83.122.25.158 107321 port 6 107321 unique_id port 107321 remote_ip 10.8.1.46 107322 username malekpoir 107322 mac 107322 bytes_out 29560 107322 bytes_in 24020 107322 station_ip 5.120.19.238 107322 port 18 107322 unique_id port 107322 remote_ip 10.8.0.58 107325 username mirzaei 107325 mac 107325 bytes_out 1107085 107325 bytes_in 2994619 107325 station_ip 5.120.124.82 107325 port 13 107325 unique_id port 107325 remote_ip 10.8.0.66 107333 username mosi 107333 mac 107333 bytes_out 0 107333 bytes_in 0 107333 station_ip 151.235.75.16 107333 port 10 107333 unique_id port 107333 remote_ip 10.8.1.86 107335 username kamali1 107335 mac 107335 bytes_out 10556 107335 bytes_in 16460 107335 station_ip 5.119.83.49 107335 port 15 107335 unique_id port 107335 remote_ip 10.8.0.70 107338 username mehdizare 107338 mac 107338 bytes_out 0 107338 bytes_in 0 107338 station_ip 5.119.174.144 107338 port 6 107338 unique_id port 107338 remote_ip 10.8.1.42 107341 username houshang 107341 mac 107341 bytes_out 1196705 107341 bytes_in 18787983 107341 station_ip 5.120.43.194 107341 port 18 107341 unique_id port 107341 remote_ip 10.8.0.22 107343 username avaanna 107343 mac 107343 bytes_out 0 107343 bytes_in 0 107343 station_ip 83.122.25.158 107343 port 10 107343 unique_id port 107343 remote_ip 10.8.1.46 107347 username alipour 107347 mac 107347 bytes_out 0 107347 bytes_in 0 107347 station_ip 83.123.32.71 107347 port 13 107347 unique_id port 107347 remote_ip 10.8.0.102 107352 username malekpoir 107318 bytes_in 398340 107318 station_ip 37.129.84.70 107318 port 15728899 107318 nas_port_type Virtual 107318 remote_ip 5.5.5.250 107323 username jamali 107323 mac 107323 bytes_out 473013 107323 bytes_in 4157259 107323 station_ip 5.119.90.41 107323 port 25 107323 unique_id port 107323 remote_ip 10.8.0.150 107326 username tahmasebi 107326 mac 107326 bytes_out 0 107326 bytes_in 0 107326 station_ip 5.120.77.102 107326 port 15 107326 unique_id port 107328 username mohammadjavad 107328 mac 107328 bytes_out 468618 107328 bytes_in 2154221 107328 station_ip 37.129.227.44 107328 port 27 107328 unique_id port 107328 remote_ip 10.8.0.142 107329 username jamali 107329 mac 107329 bytes_out 0 107329 bytes_in 0 107329 station_ip 5.119.249.212 107329 port 8 107329 unique_id port 107329 remote_ip 10.8.1.82 107330 username sedighe 107330 mac 107330 bytes_out 4357 107330 bytes_in 7760 107330 station_ip 37.129.201.45 107330 port 13 107330 unique_id port 107330 remote_ip 10.8.0.146 107334 username avaanna 107334 mac 107334 bytes_out 43792 107334 bytes_in 68594 107334 station_ip 83.122.25.158 107334 port 17 107334 unique_id port 107334 remote_ip 10.8.0.98 107336 username malekpoir 107336 mac 107336 bytes_out 0 107336 bytes_in 0 107336 station_ip 5.119.54.142 107336 port 11 107336 unique_id port 107336 remote_ip 10.8.1.54 107339 username jamali 107339 mac 107339 bytes_out 17164 107339 bytes_in 20323 107339 station_ip 5.119.249.212 107339 port 8 107339 unique_id port 107339 remote_ip 10.8.1.82 107342 username forozande 107342 mac 107342 bytes_out 0 107342 bytes_in 0 107342 station_ip 83.122.158.205 107342 port 16 107342 unique_id port 107342 remote_ip 10.8.0.74 107349 username tahmasebi 107349 mac 107349 bytes_out 0 107349 bytes_in 0 107349 station_ip 5.119.115.157 107349 port 9 107349 unique_id port 107349 remote_ip 10.8.1.90 107350 username tahmasebi 107350 mac 107350 bytes_out 12172 107350 bytes_in 17541 107350 station_ip 5.119.228.144 107350 port 11 107350 unique_id port 107350 remote_ip 10.8.1.90 107354 username alirr 107354 unique_id port 107354 terminate_cause Lost-Carrier 107354 bytes_out 21247089 107354 bytes_in 433703131 107354 station_ip 86.57.14.133 107354 port 15728898 107354 nas_port_type Virtual 107354 remote_ip 5.5.5.252 107357 username musa 107357 mac 107357 bytes_out 0 107357 bytes_in 0 107357 station_ip 89.196.190.160 107357 port 8 107357 unique_id port 107357 remote_ip 10.8.1.10 107360 username alipour 107360 mac 107360 bytes_out 0 107360 bytes_in 0 107360 station_ip 83.123.32.71 107360 port 8 107360 unique_id port 107360 remote_ip 10.8.1.50 107367 username zare 107367 mac 107367 bytes_out 352253 107367 bytes_in 1353309 107367 station_ip 94.183.214.14 107367 port 15 107367 unique_id port 107367 remote_ip 10.8.0.18 107369 username hashtadani 107369 kill_reason Relative expiration date has reached 107369 unique_id port 107369 bytes_out 0 107369 bytes_in 0 107369 station_ip 5.202.97.34 107369 port 15728901 107369 nas_port_type Virtual 107372 username forozande 107372 kill_reason Another user logged on this global unique id 107372 mac 107372 bytes_out 0 107372 bytes_in 0 107372 station_ip 83.122.62.210 107372 port 13 107372 unique_id port 107372 remote_ip 10.8.0.74 107374 username mehdizare 107374 mac 107374 bytes_out 0 107374 bytes_in 0 107374 station_ip 5.119.174.144 107374 port 6 107374 unique_id port 107374 remote_ip 10.8.1.42 107377 username forozande 107377 mac 107377 bytes_out 0 107377 bytes_in 0 107337 mac 107337 bytes_out 0 107337 bytes_in 0 107337 station_ip 5.119.163.29 107337 port 9 107337 unique_id port 107337 remote_ip 10.8.1.30 107340 username tahmasebi 107340 mac 107340 bytes_out 166453 107340 bytes_in 1553389 107340 station_ip 5.119.115.157 107340 port 13 107340 unique_id port 107340 remote_ip 10.8.0.42 107344 username musa 107344 mac 107344 bytes_out 0 107344 bytes_in 0 107344 station_ip 89.196.190.160 107344 port 21 107344 unique_id port 107344 remote_ip 10.8.0.6 107345 username mehdizare 107345 mac 107345 bytes_out 0 107345 bytes_in 0 107345 station_ip 5.119.174.144 107345 port 8 107345 unique_id port 107345 remote_ip 10.8.1.42 107346 username musa 107346 mac 107346 bytes_out 13058 107346 bytes_in 17319 107346 station_ip 89.196.190.160 107346 port 15 107346 unique_id port 107346 remote_ip 10.8.0.6 107348 username kordestani 107348 mac 107348 bytes_out 0 107348 bytes_in 0 107348 station_ip 151.235.93.82 107348 port 17 107348 unique_id port 107348 remote_ip 10.8.0.134 107351 username mehdizare 107351 mac 107351 bytes_out 15895 107351 bytes_in 30319 107351 station_ip 5.119.174.144 107351 port 8 107351 unique_id port 107351 remote_ip 10.8.1.42 107353 username musa 107353 mac 107353 bytes_out 0 107353 bytes_in 0 107353 station_ip 89.196.190.160 107353 port 10 107353 unique_id port 107353 remote_ip 10.8.1.10 107356 username alipour 107356 mac 107356 bytes_out 0 107356 bytes_in 0 107356 station_ip 83.123.32.71 107356 port 9 107356 unique_id port 107356 remote_ip 10.8.1.50 107362 username avaanna 107362 mac 107362 bytes_out 69886 107362 bytes_in 125169 107362 station_ip 83.122.25.158 107362 port 6 107362 unique_id port 107362 remote_ip 10.8.1.46 107363 username mehdizare 107363 mac 107363 bytes_out 0 107363 bytes_in 0 107363 station_ip 5.119.174.144 107363 port 8 107363 unique_id port 107363 remote_ip 10.8.1.42 107365 username avaanna 107365 mac 107365 bytes_out 0 107365 bytes_in 0 107365 station_ip 83.122.25.158 107365 port 17 107365 unique_id port 107365 remote_ip 10.8.0.98 107368 username mehdizare 107368 mac 107368 bytes_out 0 107368 bytes_in 0 107368 station_ip 5.119.174.144 107368 port 6 107368 unique_id port 107368 remote_ip 10.8.1.42 107373 username tahmasebi 107373 kill_reason Another user logged on this global unique id 107373 mac 107373 bytes_out 0 107373 bytes_in 0 107373 station_ip 5.119.164.99 107373 port 15 107373 unique_id port 107373 remote_ip 10.8.0.42 107375 username mehdizare 107375 mac 107375 bytes_out 0 107375 bytes_in 0 107375 station_ip 5.119.174.144 107375 port 18 107375 unique_id port 107375 remote_ip 10.8.0.90 107376 username mehdizare 107376 mac 107376 bytes_out 0 107376 bytes_in 0 107376 station_ip 5.119.174.144 107376 port 21 107376 unique_id port 107376 remote_ip 10.8.0.90 107380 username amir 107380 mac 107380 bytes_out 0 107380 bytes_in 0 107380 station_ip 46.225.211.129 107380 port 5 107380 unique_id port 107380 remote_ip 10.8.1.22 107384 username avaanna 107384 mac 107384 bytes_out 0 107384 bytes_in 0 107384 station_ip 83.122.25.158 107384 port 8 107384 unique_id port 107384 remote_ip 10.8.1.46 107385 username avaanna 107385 mac 107385 bytes_out 54068 107385 bytes_in 66780 107385 station_ip 83.122.25.158 107385 port 17 107385 unique_id port 107385 remote_ip 10.8.0.98 107388 username forozande 107388 mac 107388 bytes_out 388900 107388 bytes_in 2172665 107388 station_ip 83.122.52.223 107352 mac 107352 bytes_out 4087 107352 bytes_in 6874 107352 station_ip 5.119.29.241 107352 port 9 107352 unique_id port 107352 remote_ip 10.8.1.54 107355 username alipour 107355 mac 107355 bytes_out 0 107355 bytes_in 0 107355 station_ip 83.123.32.71 107355 port 13 107355 unique_id port 107355 remote_ip 10.8.0.102 107358 username alipour 107358 mac 107358 bytes_out 0 107358 bytes_in 0 107358 station_ip 83.123.32.71 107358 port 9 107358 unique_id port 107358 remote_ip 10.8.1.50 107359 username hamid.e 107359 unique_id port 107359 terminate_cause User-Request 107359 bytes_out 6880812 107359 bytes_in 37267520 107359 station_ip 37.27.8.133 107359 port 15728897 107359 nas_port_type Virtual 107359 remote_ip 5.5.5.254 107361 username mehdizare 107361 mac 107361 bytes_out 0 107361 bytes_in 0 107361 station_ip 5.119.174.144 107361 port 10 107361 unique_id port 107361 remote_ip 10.8.1.42 107364 username mehdizare 107364 mac 107364 bytes_out 0 107364 bytes_in 0 107364 station_ip 5.119.174.144 107364 port 6 107364 unique_id port 107364 remote_ip 10.8.1.42 107366 username avaanna 107366 mac 107366 bytes_out 0 107366 bytes_in 0 107366 station_ip 83.122.25.158 107366 port 18 107366 unique_id port 107366 remote_ip 10.8.0.98 107370 username hashtadani 107370 kill_reason Relative expiration date has reached 107370 unique_id port 107370 bytes_out 0 107370 bytes_in 0 107370 station_ip 5.202.97.34 107370 port 15728902 107370 nas_port_type Virtual 107371 username hashtadani 107371 kill_reason Relative expiration date has reached 107371 unique_id port 107371 bytes_out 0 107371 bytes_in 0 107371 station_ip 5.202.97.34 107371 port 15728903 107371 nas_port_type Virtual 107378 username tahmasebi 107378 kill_reason Another user logged on this global unique id 107378 mac 107378 bytes_out 0 107378 bytes_in 0 107378 station_ip 5.119.164.99 107378 port 15 107378 unique_id port 107381 username amir 107381 mac 107381 bytes_out 0 107381 bytes_in 0 107381 station_ip 46.225.211.129 107381 port 5 107381 unique_id port 107381 remote_ip 10.8.1.22 107386 username tahmasebi 107386 kill_reason Another user logged on this global unique id 107386 mac 107386 bytes_out 0 107386 bytes_in 0 107386 station_ip 5.119.164.99 107386 port 15 107386 unique_id port 107387 username avaanna 107387 mac 107387 bytes_out 26477 107387 bytes_in 44552 107387 station_ip 83.122.25.158 107387 port 18 107387 unique_id port 107387 remote_ip 10.8.0.98 107389 username amir 107389 mac 107389 bytes_out 568212 107389 bytes_in 1545025 107389 station_ip 46.225.211.129 107389 port 5 107389 unique_id port 107389 remote_ip 10.8.1.22 107390 username amir 107390 mac 107390 bytes_out 0 107390 bytes_in 0 107390 station_ip 46.225.211.129 107390 port 5 107390 unique_id port 107390 remote_ip 10.8.1.22 107393 username zare 107393 mac 107393 bytes_out 20867 107393 bytes_in 59220 107393 station_ip 94.183.214.14 107393 port 13 107393 unique_id port 107393 remote_ip 10.8.0.18 107394 username hamid.e 107394 unique_id port 107394 terminate_cause Lost-Carrier 107394 bytes_out 4680803 107394 bytes_in 16012026 107394 station_ip 37.27.8.133 107394 port 15728904 107394 nas_port_type Virtual 107394 remote_ip 5.5.5.255 107395 username avaanna 107395 mac 107395 bytes_out 102845 107395 bytes_in 180738 107395 station_ip 83.122.25.158 107395 port 17 107395 unique_id port 107395 remote_ip 10.8.0.98 107404 username avaanna 107404 mac 107404 bytes_out 0 107404 bytes_in 0 107404 station_ip 83.122.25.158 107404 port 18 107404 unique_id port 107377 station_ip 83.122.62.210 107377 port 13 107377 unique_id port 107379 username avaanna 107379 mac 107379 bytes_out 0 107379 bytes_in 0 107379 station_ip 83.122.25.158 107379 port 17 107379 unique_id port 107379 remote_ip 10.8.0.98 107382 username avaanna 107382 mac 107382 bytes_out 254160 107382 bytes_in 3918230 107382 station_ip 83.122.25.158 107382 port 17 107382 unique_id port 107382 remote_ip 10.8.0.98 107383 username avaanna 107383 mac 107383 bytes_out 80293 107383 bytes_in 498357 107383 station_ip 83.122.25.158 107383 port 17 107383 unique_id port 107383 remote_ip 10.8.0.98 107397 username forozande 107397 mac 107397 bytes_out 162264 107397 bytes_in 569359 107397 station_ip 37.129.218.242 107397 port 13 107397 unique_id port 107397 remote_ip 10.8.0.74 107398 username amir 107398 mac 107398 bytes_out 0 107398 bytes_in 0 107398 station_ip 46.225.211.129 107398 port 5 107398 unique_id port 107398 remote_ip 10.8.1.22 107400 username mehdizare 107400 mac 107400 bytes_out 0 107400 bytes_in 0 107400 station_ip 5.119.174.144 107400 port 6 107400 unique_id port 107400 remote_ip 10.8.1.42 107401 username forozande 107401 mac 107401 bytes_out 78776 107401 bytes_in 243514 107401 station_ip 83.123.25.76 107401 port 18 107401 unique_id port 107401 remote_ip 10.8.0.74 107406 username amir 107406 kill_reason Another user logged on this global unique id 107406 mac 107406 bytes_out 0 107406 bytes_in 0 107406 station_ip 46.225.211.129 107406 port 13 107406 unique_id port 107406 remote_ip 10.8.0.50 107414 username amir 107414 kill_reason Another user logged on this global unique id 107414 mac 107414 bytes_out 0 107414 bytes_in 0 107414 station_ip 46.225.211.129 107414 port 13 107414 unique_id port 107418 username musa 107418 mac 107418 bytes_out 0 107418 bytes_in 0 107418 station_ip 188.210.197.110 107418 port 22 107418 unique_id port 107418 remote_ip 10.8.0.6 107425 username avaanna 107425 kill_reason Another user logged on this global unique id 107425 mac 107425 bytes_out 0 107425 bytes_in 0 107425 station_ip 83.122.25.158 107425 port 17 107425 unique_id port 107425 remote_ip 10.8.0.98 107427 username amir 107427 mac 107427 bytes_out 0 107427 bytes_in 0 107427 station_ip 46.225.211.129 107427 port 13 107427 unique_id port 107427 remote_ip 10.8.0.50 107430 username mohammadmahdi 107430 kill_reason Another user logged on this global unique id 107430 mac 107430 bytes_out 0 107430 bytes_in 0 107430 station_ip 5.120.165.66 107430 port 23 107430 unique_id port 107430 remote_ip 10.8.0.54 107433 username amir 107433 mac 107433 bytes_out 0 107433 bytes_in 0 107433 station_ip 46.225.211.129 107433 port 6 107433 unique_id port 107433 remote_ip 10.8.1.22 107440 username amir 107440 mac 107440 bytes_out 0 107440 bytes_in 0 107440 station_ip 46.225.211.129 107440 port 18 107440 unique_id port 107440 remote_ip 10.8.0.50 107444 username mahdiyehalizadeh 107444 mac 107444 bytes_out 27375 107444 bytes_in 45167 107444 station_ip 83.123.253.181 107444 port 27 107444 unique_id port 107444 remote_ip 10.8.0.82 107448 username mohammadmahdi 107448 kill_reason Another user logged on this global unique id 107448 mac 107448 bytes_out 0 107448 bytes_in 0 107448 station_ip 5.120.165.66 107448 port 23 107448 unique_id port 107449 username mohammadjavad 107449 mac 107449 bytes_out 1048602 107449 bytes_in 14559769 107449 station_ip 83.122.167.184 107449 port 21 107449 unique_id port 107449 remote_ip 10.8.0.142 107450 username amir 107450 mac 107450 bytes_out 1636 107388 port 13 107388 unique_id port 107388 remote_ip 10.8.0.74 107391 username zare 107391 mac 107391 bytes_out 152541 107391 bytes_in 665286 107391 station_ip 94.183.214.14 107391 port 13 107391 unique_id port 107391 remote_ip 10.8.0.18 107392 username zare 107392 mac 107392 bytes_out 0 107392 bytes_in 0 107392 station_ip 94.183.214.14 107392 port 13 107392 unique_id port 107392 remote_ip 10.8.0.18 107396 username avaanna 107396 mac 107396 bytes_out 0 107396 bytes_in 0 107396 station_ip 83.122.25.158 107396 port 8 107396 unique_id port 107396 remote_ip 10.8.1.46 107399 username amir 107399 mac 107399 bytes_out 45653 107399 bytes_in 125477 107399 station_ip 46.225.211.129 107399 port 13 107399 unique_id port 107399 remote_ip 10.8.0.50 107402 username avaanna 107402 mac 107402 bytes_out 136203 107402 bytes_in 1459804 107402 station_ip 83.122.25.158 107402 port 17 107402 unique_id port 107402 remote_ip 10.8.0.98 107403 username tahmasebi 107403 kill_reason Another user logged on this global unique id 107403 mac 107403 bytes_out 0 107403 bytes_in 0 107403 station_ip 5.119.164.99 107403 port 15 107403 unique_id port 107409 username mohammadmahdi 107409 mac 107409 bytes_out 0 107409 bytes_in 0 107409 station_ip 5.120.165.66 107409 port 17 107409 unique_id port 107409 remote_ip 10.8.0.54 107410 username mohammadmahdi 107410 kill_reason Another user logged on this global unique id 107410 mac 107410 bytes_out 0 107410 bytes_in 0 107410 station_ip 5.120.165.66 107410 port 21 107410 unique_id port 107410 remote_ip 10.8.0.54 107412 username arman1 107412 mac 107412 bytes_out 1152519 107412 bytes_in 11314981 107412 station_ip 5.119.27.64 107412 port 18 107412 unique_id port 107412 remote_ip 10.8.0.110 107423 username alirezazadeh 107423 unique_id port 107423 terminate_cause User-Request 107423 bytes_out 22681173 107423 bytes_in 592481792 107423 station_ip 31.59.40.18 107423 port 15728900 107423 nas_port_type Virtual 107423 remote_ip 5.5.5.250 107424 username sedighe 107424 mac 107424 bytes_out 0 107424 bytes_in 0 107424 station_ip 83.122.98.188 107424 port 21 107424 unique_id port 107424 remote_ip 10.8.0.146 107426 username amir 107426 mac 107426 bytes_out 0 107426 bytes_in 0 107426 station_ip 46.225.211.129 107426 port 13 107426 unique_id port 107428 username mahdiyehalizadeh 107428 mac 107428 bytes_out 334444 107428 bytes_in 4618970 107428 station_ip 83.123.151.161 107428 port 18 107428 unique_id port 107428 remote_ip 10.8.0.82 107431 username amir 107431 mac 107431 bytes_out 0 107431 bytes_in 0 107431 station_ip 46.225.211.129 107431 port 13 107431 unique_id port 107431 remote_ip 10.8.0.50 107435 username amir 107435 mac 107435 bytes_out 0 107435 bytes_in 0 107435 station_ip 46.225.211.129 107435 port 21 107435 unique_id port 107435 remote_ip 10.8.0.50 107437 username mohammadmahdi 107437 kill_reason Another user logged on this global unique id 107437 mac 107437 bytes_out 0 107437 bytes_in 0 107437 station_ip 5.120.165.66 107437 port 23 107437 unique_id port 107439 username amir 107439 mac 107439 bytes_out 0 107439 bytes_in 0 107439 station_ip 46.225.211.129 107439 port 21 107439 unique_id port 107439 remote_ip 10.8.0.50 107445 username amir 107445 mac 107445 bytes_out 0 107445 bytes_in 0 107445 station_ip 46.225.211.129 107445 port 18 107445 unique_id port 107445 remote_ip 10.8.0.50 107453 username sedighe 107453 mac 107453 bytes_out 0 107453 bytes_in 0 107453 station_ip 83.122.83.146 107453 port 25 107404 remote_ip 10.8.0.98 107405 username zare 107405 mac 107405 bytes_out 0 107405 bytes_in 0 107405 station_ip 94.183.214.14 107405 port 17 107405 unique_id port 107405 remote_ip 10.8.0.18 107407 username alipour 107407 mac 107407 bytes_out 0 107407 bytes_in 0 107407 station_ip 83.123.32.71 107407 port 17 107407 unique_id port 107407 remote_ip 10.8.0.102 107408 username avaanna 107408 mac 107408 bytes_out 28859 107408 bytes_in 27221 107408 station_ip 83.122.25.158 107408 port 21 107408 unique_id port 107408 remote_ip 10.8.0.98 107411 username mohammadmahdi 107411 mac 107411 bytes_out 0 107411 bytes_in 0 107411 station_ip 5.120.165.66 107411 port 21 107411 unique_id port 107413 username mehdizare 107413 mac 107413 bytes_out 135020 107413 bytes_in 679478 107413 station_ip 5.119.174.144 107413 port 5 107413 unique_id port 107413 remote_ip 10.8.1.42 107415 username tahmasebi 107415 kill_reason Another user logged on this global unique id 107415 mac 107415 bytes_out 0 107415 bytes_in 0 107415 station_ip 5.119.164.99 107415 port 15 107415 unique_id port 107416 username musa 107416 mac 107416 bytes_out 0 107416 bytes_in 0 107416 station_ip 188.210.197.110 107416 port 21 107416 unique_id port 107416 remote_ip 10.8.0.6 107417 username alirr 107417 unique_id port 107417 terminate_cause User-Request 107417 bytes_out 51328039 107417 bytes_in 1053024514 107417 station_ip 86.57.14.133 107417 port 15728905 107417 nas_port_type Virtual 107417 remote_ip 5.5.5.253 107419 username musa 107419 mac 107419 bytes_out 0 107419 bytes_in 0 107419 station_ip 188.210.197.110 107419 port 23 107419 unique_id port 107419 remote_ip 10.8.0.6 107420 username mohammadjavad 107420 mac 107420 bytes_out 0 107420 bytes_in 0 107420 station_ip 83.123.32.113 107420 port 18 107420 unique_id port 107420 remote_ip 10.8.0.142 107421 username forozande 107421 mac 107421 bytes_out 0 107421 bytes_in 0 107421 station_ip 83.122.187.142 107421 port 21 107421 unique_id port 107421 remote_ip 10.8.0.74 107422 username amir 107422 kill_reason Another user logged on this global unique id 107422 mac 107422 bytes_out 0 107422 bytes_in 0 107422 station_ip 46.225.211.129 107422 port 13 107422 unique_id port 107429 username sedighe 107429 mac 107429 bytes_out 0 107429 bytes_in 0 107429 station_ip 83.122.98.188 107429 port 21 107429 unique_id port 107429 remote_ip 10.8.0.146 107432 username amir 107432 kill_reason Maximum check online fails reached 107432 mac 107432 bytes_out 0 107432 bytes_in 0 107432 station_ip 46.225.211.129 107432 port 13 107432 unique_id port 107434 username amir 107434 mac 107434 bytes_out 0 107434 bytes_in 0 107434 station_ip 46.225.211.129 107434 port 21 107434 unique_id port 107434 remote_ip 10.8.0.50 107436 username mosi 107436 kill_reason Another user logged on this global unique id 107436 mac 107436 bytes_out 0 107436 bytes_in 0 107436 station_ip 151.235.75.16 107436 port 25 107436 unique_id port 107436 remote_ip 10.8.0.138 107438 username forozande 107438 mac 107438 bytes_out 0 107438 bytes_in 0 107438 station_ip 83.122.152.165 107438 port 18 107438 unique_id port 107438 remote_ip 10.8.0.74 107441 username mosi 107441 mac 107441 bytes_out 0 107441 bytes_in 0 107441 station_ip 151.235.75.16 107441 port 25 107441 unique_id port 107442 username ahmadi 107442 unique_id port 107442 terminate_cause User-Request 107442 bytes_out 14119 107442 bytes_in 87082 107442 station_ip 37.129.18.86 107442 port 15728908 107442 nas_port_type Virtual 107442 remote_ip 5.5.5.252 107443 username amir 107443 mac 107443 bytes_out 116104 107443 bytes_in 507362 107443 station_ip 46.225.211.129 107443 port 18 107443 unique_id port 107443 remote_ip 10.8.0.50 107446 username bcboard 107446 unique_id port 107446 terminate_cause User-Request 107446 bytes_out 661387 107446 bytes_in 1648686 107446 station_ip 83.123.197.32 107446 port 15728907 107446 nas_port_type Virtual 107446 remote_ip 5.5.5.254 107447 username amir 107447 mac 107447 bytes_out 55649 107447 bytes_in 227087 107447 station_ip 46.225.211.129 107447 port 18 107447 unique_id port 107447 remote_ip 10.8.0.50 107451 username amir 107451 mac 107451 bytes_out 38130 107451 bytes_in 162247 107451 station_ip 46.225.211.129 107451 port 6 107451 unique_id port 107451 remote_ip 10.8.1.22 107452 username amir 107452 mac 107452 bytes_out 45571 107452 bytes_in 173017 107452 station_ip 46.225.211.129 107452 port 18 107452 unique_id port 107452 remote_ip 10.8.0.50 107454 username arman1 107454 kill_reason Another user logged on this global unique id 107454 mac 107454 bytes_out 0 107454 bytes_in 0 107454 station_ip 5.119.140.51 107454 port 26 107454 unique_id port 107454 remote_ip 10.8.0.110 107458 username kamali1 107458 mac 107458 bytes_out 0 107458 bytes_in 0 107458 station_ip 5.119.69.103 107458 port 6 107458 unique_id port 107458 remote_ip 10.8.1.26 107461 username aminvpn 107461 mac 107461 bytes_out 3632888 107461 bytes_in 44624963 107461 station_ip 113.203.125.187 107461 port 24 107461 unique_id port 107461 remote_ip 10.8.0.14 107463 username kamali1 107463 mac 107463 bytes_out 3710 107463 bytes_in 12569 107463 station_ip 5.119.69.103 107463 port 6 107463 unique_id port 107463 remote_ip 10.8.1.26 107467 username arman1 107467 mac 107467 bytes_out 0 107467 bytes_in 0 107467 station_ip 5.119.140.51 107467 port 26 107467 unique_id port 107469 username tahmasebi 107469 kill_reason Another user logged on this global unique id 107469 mac 107469 bytes_out 0 107469 bytes_in 0 107469 station_ip 5.119.164.99 107469 port 15 107469 unique_id port 107470 username amir 107470 mac 107470 bytes_out 0 107470 bytes_in 0 107470 station_ip 46.225.211.129 107470 port 16 107470 unique_id port 107470 remote_ip 10.8.0.50 107472 username mohammadmahdi 107472 mac 107472 bytes_out 0 107472 bytes_in 0 107472 station_ip 5.120.165.66 107472 port 18 107472 unique_id port 107472 remote_ip 10.8.0.54 107477 username hashtadani 107477 kill_reason Relative expiration date has reached 107477 unique_id port 107477 bytes_out 0 107477 bytes_in 0 107477 station_ip 37.129.114.169 107477 port 15728916 107477 nas_port_type Virtual 107479 username avaanna 107479 mac 107479 bytes_out 0 107479 bytes_in 0 107479 station_ip 83.122.25.158 107479 port 17 107479 unique_id port 107480 username amir 107480 mac 107480 bytes_out 0 107480 bytes_in 0 107480 station_ip 46.225.211.129 107480 port 24 107480 unique_id port 107480 remote_ip 10.8.0.50 107481 username amir 107481 mac 107481 bytes_out 39069 107481 bytes_in 91029 107481 station_ip 46.225.211.129 107481 port 24 107481 unique_id port 107481 remote_ip 10.8.0.50 107483 username aminvpn 107483 mac 107483 bytes_out 744109 107483 bytes_in 6183212 107483 station_ip 113.203.7.171 107483 port 21 107483 unique_id port 107483 remote_ip 10.8.0.14 107485 username kordestani 107485 mac 107485 bytes_out 517926 107485 bytes_in 8569341 107485 station_ip 83.122.34.65 107485 port 25 107485 unique_id port 107485 remote_ip 10.8.0.134 107489 username bcboard 107450 bytes_in 4983 107450 station_ip 46.225.211.129 107450 port 18 107450 unique_id port 107450 remote_ip 10.8.0.50 107457 username kamali1 107457 mac 107457 bytes_out 0 107457 bytes_in 0 107457 station_ip 5.119.69.103 107457 port 16 107457 unique_id port 107457 remote_ip 10.8.0.70 107462 username amir 107462 mac 107462 bytes_out 0 107462 bytes_in 0 107462 station_ip 46.225.211.129 107462 port 18 107462 unique_id port 107462 remote_ip 10.8.0.50 107465 username tahmasebi 107465 kill_reason Another user logged on this global unique id 107465 mac 107465 bytes_out 0 107465 bytes_in 0 107465 station_ip 5.119.164.99 107465 port 15 107465 unique_id port 107466 username avaanna 107466 kill_reason Another user logged on this global unique id 107466 mac 107466 bytes_out 0 107466 bytes_in 0 107466 station_ip 83.122.25.158 107466 port 17 107466 unique_id port 107471 username amir 107471 mac 107471 bytes_out 53284 107471 bytes_in 516076 107471 station_ip 46.225.211.129 107471 port 21 107471 unique_id port 107471 remote_ip 10.8.0.50 107473 username forozande 107473 mac 107473 bytes_out 418148 107473 bytes_in 4462205 107473 station_ip 37.129.164.81 107473 port 23 107473 unique_id port 107473 remote_ip 10.8.0.74 107474 username ahmadi 107474 unique_id port 107474 terminate_cause User-Request 107474 bytes_out 45360 107474 bytes_in 241260 107474 station_ip 37.129.72.26 107474 port 15728911 107474 nas_port_type Virtual 107474 remote_ip 5.5.5.252 107476 username hashtadani 107476 kill_reason Relative expiration date has reached 107476 unique_id port 107476 bytes_out 0 107476 bytes_in 0 107476 station_ip 83.123.39.30 107476 port 15728915 107476 nas_port_type Virtual 107478 username ahmadipour 107478 unique_id port 107478 terminate_cause Lost-Carrier 107478 bytes_out 255930 107478 bytes_in 4579840 107478 station_ip 113.203.104.203 107478 port 15728914 107478 nas_port_type Virtual 107478 remote_ip 5.5.5.252 107482 username zare 107482 mac 107482 bytes_out 0 107482 bytes_in 0 107482 station_ip 94.183.214.14 107482 port 18 107482 unique_id port 107482 remote_ip 10.8.0.18 107486 username houshang 107486 mac 107486 bytes_out 634470 107486 bytes_in 9919650 107486 station_ip 5.120.128.34 107486 port 18 107486 unique_id port 107486 remote_ip 10.8.0.22 107488 username tahmasebi 107488 mac 107488 bytes_out 0 107488 bytes_in 0 107488 station_ip 5.119.164.99 107488 port 15 107488 unique_id port 107490 username alireza 107490 unique_id port 107490 terminate_cause User-Request 107490 bytes_out 2478370 107490 bytes_in 29968404 107490 station_ip 5.120.73.139 107490 port 15728913 107490 nas_port_type Virtual 107490 remote_ip 5.5.5.248 107492 username amir 107492 mac 107492 bytes_out 0 107492 bytes_in 0 107492 station_ip 46.225.211.129 107492 port 18 107492 unique_id port 107492 remote_ip 10.8.0.50 107505 username naeimeh 107505 mac 107505 bytes_out 0 107505 bytes_in 0 107505 station_ip 83.122.38.71 107505 port 27 107505 unique_id port 107505 remote_ip 10.8.0.78 107509 username naeimeh 107509 mac 107509 bytes_out 0 107509 bytes_in 0 107509 station_ip 83.122.38.71 107509 port 28 107509 unique_id port 107509 remote_ip 10.8.0.78 107510 username mosi 107510 mac 107510 bytes_out 0 107510 bytes_in 0 107510 station_ip 151.235.75.16 107510 port 25 107510 unique_id port 107511 username houshang 107511 kill_reason Another user logged on this global unique id 107511 mac 107511 bytes_out 0 107511 bytes_in 0 107511 station_ip 5.119.35.56 107511 port 27 107511 unique_id port 107511 remote_ip 10.8.0.22 107512 username kamali1 107453 unique_id port 107453 remote_ip 10.8.0.146 107455 username tahmasebi 107455 kill_reason Another user logged on this global unique id 107455 mac 107455 bytes_out 0 107455 bytes_in 0 107455 station_ip 5.119.164.99 107455 port 15 107455 unique_id port 107456 username mohammadmahdi 107456 mac 107456 bytes_out 0 107456 bytes_in 0 107456 station_ip 5.120.165.66 107456 port 23 107456 unique_id port 107459 username farhad1 107459 mac 107459 bytes_out 665318 107459 bytes_in 2609377 107459 station_ip 5.120.58.227 107459 port 21 107459 unique_id port 107459 remote_ip 10.8.0.26 107460 username kamali1 107460 mac 107460 bytes_out 13984 107460 bytes_in 17949 107460 station_ip 5.119.69.103 107460 port 6 107460 unique_id port 107460 remote_ip 10.8.1.26 107464 username mohammadjavad 107464 mac 107464 bytes_out 0 107464 bytes_in 0 107464 station_ip 37.129.119.90 107464 port 16 107464 unique_id port 107464 remote_ip 10.8.0.142 107468 username aminvpn 107468 unique_id port 107468 terminate_cause Lost-Carrier 107468 bytes_out 145757 107468 bytes_in 761500 107468 station_ip 5.120.147.113 107468 port 15728909 107468 nas_port_type Virtual 107468 remote_ip 5.5.5.254 107475 username amir 107475 mac 107475 bytes_out 0 107475 bytes_in 0 107475 station_ip 46.225.211.129 107475 port 18 107475 unique_id port 107475 remote_ip 10.8.0.50 107484 username farhad1 107484 mac 107484 bytes_out 2793294 107484 bytes_in 45982347 107484 station_ip 5.119.34.105 107484 port 23 107484 unique_id port 107484 remote_ip 10.8.0.26 107487 username amirabbas 107487 unique_id port 107487 terminate_cause User-Request 107487 bytes_out 12865812 107487 bytes_in 346226535 107487 station_ip 37.27.21.243 107487 port 15728910 107487 nas_port_type Virtual 107487 remote_ip 5.5.5.254 107497 username amir 107497 mac 107497 bytes_out 0 107497 bytes_in 0 107497 station_ip 46.225.211.129 107497 port 18 107497 unique_id port 107497 remote_ip 10.8.0.50 107499 username amin.saeedi 107499 unique_id port 107499 terminate_cause User-Request 107499 bytes_out 4101241 107499 bytes_in 83411531 107499 station_ip 31.59.38.189 107499 port 15728918 107499 nas_port_type Virtual 107499 remote_ip 5.5.5.254 107501 username forozande 107501 mac 107501 bytes_out 0 107501 bytes_in 0 107501 station_ip 83.123.112.129 107501 port 26 107501 unique_id port 107501 remote_ip 10.8.0.74 107503 username mirzaei 107503 kill_reason Another user logged on this global unique id 107503 mac 107503 bytes_out 0 107503 bytes_in 0 107503 station_ip 5.119.163.29 107503 port 22 107503 unique_id port 107503 remote_ip 10.8.0.66 107504 username hamid.e 107504 unique_id port 107504 terminate_cause User-Request 107504 bytes_out 11330616 107504 bytes_in 259358255 107504 station_ip 37.27.24.159 107504 port 15728912 107504 nas_port_type Virtual 107504 remote_ip 5.5.5.250 107508 username amir 107508 mac 107508 bytes_out 0 107508 bytes_in 0 107508 station_ip 46.225.211.129 107508 port 18 107508 unique_id port 107508 remote_ip 10.8.0.50 107518 username mirzaei 107518 kill_reason Another user logged on this global unique id 107518 mac 107518 bytes_out 0 107518 bytes_in 0 107518 station_ip 5.119.163.29 107518 port 22 107518 unique_id port 107520 username amir 107520 mac 107520 bytes_out 0 107520 bytes_in 0 107520 station_ip 46.225.211.129 107520 port 18 107520 unique_id port 107520 remote_ip 10.8.0.50 107521 username kamali1 107521 mac 107521 bytes_out 127456 107521 bytes_in 429042 107521 station_ip 5.120.28.157 107521 port 26 107521 unique_id port 107521 remote_ip 10.8.0.70 107526 username houshang 107489 unique_id port 107489 terminate_cause User-Request 107489 bytes_out 1261139 107489 bytes_in 19236425 107489 station_ip 37.129.48.251 107489 port 15728917 107489 nas_port_type Virtual 107489 remote_ip 5.5.5.252 107491 username bcboard 107491 unique_id port 107491 terminate_cause User-Request 107491 bytes_out 708566 107491 bytes_in 9786372 107491 station_ip 37.129.48.251 107491 port 15728919 107491 nas_port_type Virtual 107491 remote_ip 5.5.5.253 107493 username tahmasebi 107493 kill_reason Another user logged on this global unique id 107493 mac 107493 bytes_out 0 107493 bytes_in 0 107493 station_ip 5.120.109.220 107493 port 15 107493 unique_id port 107493 remote_ip 10.8.0.42 107494 username mohammadmahdi 107494 kill_reason Another user logged on this global unique id 107494 mac 107494 bytes_out 0 107494 bytes_in 0 107494 station_ip 5.120.165.66 107494 port 23 107494 unique_id port 107494 remote_ip 10.8.0.54 107495 username amir 107495 mac 107495 bytes_out 0 107495 bytes_in 0 107495 station_ip 46.225.211.129 107495 port 18 107495 unique_id port 107495 remote_ip 10.8.0.50 107496 username amir 107496 mac 107496 bytes_out 0 107496 bytes_in 0 107496 station_ip 46.225.211.129 107496 port 18 107496 unique_id port 107496 remote_ip 10.8.0.50 107498 username amir 107498 mac 107498 bytes_out 0 107498 bytes_in 0 107498 station_ip 46.225.211.129 107498 port 18 107498 unique_id port 107498 remote_ip 10.8.0.50 107500 username mohammadmahdi 107500 kill_reason Another user logged on this global unique id 107500 mac 107500 bytes_out 0 107500 bytes_in 0 107500 station_ip 5.120.165.66 107500 port 23 107500 unique_id port 107502 username mosi 107502 kill_reason Another user logged on this global unique id 107502 mac 107502 bytes_out 0 107502 bytes_in 0 107502 station_ip 151.235.75.16 107502 port 25 107502 unique_id port 107502 remote_ip 10.8.0.138 107506 username houshang 107506 mac 107506 bytes_out 0 107506 bytes_in 0 107506 station_ip 5.119.35.56 107506 port 26 107506 unique_id port 107506 remote_ip 10.8.0.22 107507 username mohammadmahdi 107507 kill_reason Another user logged on this global unique id 107507 mac 107507 bytes_out 0 107507 bytes_in 0 107507 station_ip 5.120.165.66 107507 port 23 107507 unique_id port 107513 username alireza 107513 unique_id port 107513 terminate_cause User-Request 107513 bytes_out 4403266 107513 bytes_in 66226426 107513 station_ip 5.120.73.139 107513 port 15728920 107513 nas_port_type Virtual 107513 remote_ip 5.5.5.255 107515 username tahmasebi 107515 kill_reason Another user logged on this global unique id 107515 mac 107515 bytes_out 0 107515 bytes_in 0 107515 station_ip 5.120.109.220 107515 port 15 107515 unique_id port 107517 username kamali1 107517 mac 107517 bytes_out 27664 107517 bytes_in 182621 107517 station_ip 5.120.28.157 107517 port 25 107517 unique_id port 107517 remote_ip 10.8.0.70 107523 username mohammadjavad 107523 kill_reason Another user logged on this global unique id 107523 mac 107523 bytes_out 0 107523 bytes_in 0 107523 station_ip 83.123.77.170 107523 port 24 107523 unique_id port 107523 remote_ip 10.8.0.142 107524 username houshang 107524 kill_reason Another user logged on this global unique id 107524 mac 107524 bytes_out 0 107524 bytes_in 0 107524 station_ip 5.119.35.56 107524 port 25 107524 unique_id port 107524 remote_ip 10.8.0.22 107525 username kamali1 107525 mac 107525 bytes_out 0 107525 bytes_in 0 107525 station_ip 5.120.28.157 107525 port 18 107525 unique_id port 107525 remote_ip 10.8.0.70 107532 username houshang 107532 mac 107532 bytes_out 0 107532 bytes_in 0 107532 station_ip 5.119.35.56 107532 port 25 107512 mac 107512 bytes_out 126399 107512 bytes_in 320113 107512 station_ip 5.119.119.110 107512 port 26 107512 unique_id port 107512 remote_ip 10.8.0.70 107514 username mohammadmahdi 107514 kill_reason Another user logged on this global unique id 107514 mac 107514 bytes_out 0 107514 bytes_in 0 107514 station_ip 5.120.165.66 107514 port 23 107514 unique_id port 107516 username houshang 107516 mac 107516 bytes_out 0 107516 bytes_in 0 107516 station_ip 5.119.35.56 107516 port 27 107516 unique_id port 107519 username houshang 107519 mac 107519 bytes_out 0 107519 bytes_in 0 107519 station_ip 5.119.35.56 107519 port 25 107519 unique_id port 107519 remote_ip 10.8.0.22 107522 username tahmasebi 107522 kill_reason Another user logged on this global unique id 107522 mac 107522 bytes_out 0 107522 bytes_in 0 107522 station_ip 5.120.109.220 107522 port 15 107522 unique_id port 107527 username tahmasebi 107527 kill_reason Another user logged on this global unique id 107527 mac 107527 bytes_out 0 107527 bytes_in 0 107527 station_ip 5.120.109.220 107527 port 15 107527 unique_id port 107528 username forozande 107528 mac 107528 bytes_out 289198 107528 bytes_in 2742607 107528 station_ip 113.203.99.237 107528 port 29 107528 unique_id port 107528 remote_ip 10.8.0.74 107529 username farhad1 107529 kill_reason Another user logged on this global unique id 107529 mac 107529 bytes_out 0 107529 bytes_in 0 107529 station_ip 5.120.131.236 107529 port 28 107529 unique_id port 107529 remote_ip 10.8.0.26 107531 username mohammadjavad 107531 mac 107531 bytes_out 0 107531 bytes_in 0 107531 station_ip 83.123.77.170 107531 port 24 107531 unique_id port 107534 username kamali1 107534 mac 107534 bytes_out 0 107534 bytes_in 0 107534 station_ip 5.120.28.157 107534 port 18 107534 unique_id port 107534 remote_ip 10.8.0.70 107538 username tahmasebi 107538 kill_reason Another user logged on this global unique id 107538 mac 107538 bytes_out 0 107538 bytes_in 0 107538 station_ip 5.120.109.220 107538 port 15 107538 unique_id port 107541 username zare 107541 mac 107541 bytes_out 0 107541 bytes_in 0 107541 station_ip 94.183.214.14 107541 port 24 107541 unique_id port 107541 remote_ip 10.8.0.18 107543 username tahmasebi 107543 kill_reason Another user logged on this global unique id 107543 mac 107543 bytes_out 0 107543 bytes_in 0 107543 station_ip 5.120.109.220 107543 port 15 107543 unique_id port 107546 username kamali1 107546 mac 107546 bytes_out 8940 107546 bytes_in 13212 107546 station_ip 5.120.28.157 107546 port 24 107546 unique_id port 107546 remote_ip 10.8.0.70 107547 username avaanna 107547 kill_reason Another user logged on this global unique id 107547 mac 107547 bytes_out 0 107547 bytes_in 0 107547 station_ip 83.122.25.158 107547 port 17 107547 unique_id port 107547 remote_ip 10.8.0.98 107548 username bcboard 107548 unique_id port 107548 terminate_cause Lost-Carrier 107548 bytes_out 123791 107548 bytes_in 704885 107548 station_ip 37.129.57.150 107548 port 15728922 107548 nas_port_type Virtual 107548 remote_ip 5.5.5.254 107556 username khalili 107556 mac 107556 bytes_out 858905 107556 bytes_in 6436699 107556 station_ip 5.119.89.178 107556 port 26 107556 unique_id port 107556 remote_ip 10.8.0.86 107558 username mohammadmahdi 107558 kill_reason Another user logged on this global unique id 107558 mac 107558 bytes_out 0 107558 bytes_in 0 107558 station_ip 5.120.165.66 107558 port 23 107558 unique_id port 107561 username houshang 107561 mac 107561 bytes_out 0 107561 bytes_in 0 107561 station_ip 5.119.35.56 107561 port 17 107561 unique_id port 107526 kill_reason Another user logged on this global unique id 107526 mac 107526 bytes_out 0 107526 bytes_in 0 107526 station_ip 5.119.35.56 107526 port 25 107526 unique_id port 107530 username mohammadmahdi 107530 kill_reason Another user logged on this global unique id 107530 mac 107530 bytes_out 0 107530 bytes_in 0 107530 station_ip 5.120.165.66 107530 port 23 107530 unique_id port 107533 username farhad1 107533 mac 107533 bytes_out 0 107533 bytes_in 0 107533 station_ip 5.120.131.236 107533 port 28 107533 unique_id port 107536 username alirr 107536 unique_id port 107536 terminate_cause User-Request 107536 bytes_out 2116701 107536 bytes_in 33489182 107536 station_ip 86.57.14.133 107536 port 15728921 107536 nas_port_type Virtual 107536 remote_ip 5.5.5.254 107540 username zare 107540 mac 107540 bytes_out 393252 107540 bytes_in 3578818 107540 station_ip 94.183.214.14 107540 port 24 107540 unique_id port 107540 remote_ip 10.8.0.18 107542 username mohammadmahdi 107542 kill_reason Another user logged on this global unique id 107542 mac 107542 bytes_out 0 107542 bytes_in 0 107542 station_ip 5.120.165.66 107542 port 23 107542 unique_id port 107544 username kamali1 107544 mac 107544 bytes_out 69953 107544 bytes_in 54224 107544 station_ip 5.120.28.157 107544 port 18 107544 unique_id port 107544 remote_ip 10.8.0.70 107545 username tahmasebi 107545 kill_reason Another user logged on this global unique id 107545 mac 107545 bytes_out 0 107545 bytes_in 0 107545 station_ip 5.120.109.220 107545 port 15 107545 unique_id port 107549 username kamali1 107549 mac 107549 bytes_out 10301 107549 bytes_in 19325 107549 station_ip 5.120.28.157 107549 port 18 107549 unique_id port 107549 remote_ip 10.8.0.70 107550 username avaanna 107550 mac 107550 bytes_out 0 107550 bytes_in 0 107550 station_ip 83.122.25.158 107550 port 17 107550 unique_id port 107552 username alipour 107552 mac 107552 bytes_out 2837638 107552 bytes_in 25870224 107552 station_ip 113.203.78.117 107552 port 16 107552 unique_id port 107552 remote_ip 10.8.0.102 107553 username houshang 107553 mac 107553 bytes_out 44917 107553 bytes_in 171015 107553 station_ip 5.119.35.56 107553 port 17 107553 unique_id port 107553 remote_ip 10.8.0.22 107560 username amir 107560 mac 107560 bytes_out 40815 107560 bytes_in 185167 107560 station_ip 46.225.211.129 107560 port 25 107560 unique_id port 107560 remote_ip 10.8.0.50 107564 username amir 107564 mac 107564 bytes_out 0 107564 bytes_in 0 107564 station_ip 46.225.211.129 107564 port 26 107564 unique_id port 107564 remote_ip 10.8.0.50 107565 username amir 107565 mac 107565 bytes_out 0 107565 bytes_in 0 107565 station_ip 46.225.211.129 107565 port 26 107565 unique_id port 107565 remote_ip 10.8.0.50 107570 username sobhan 107570 unique_id port 107570 terminate_cause Lost-Carrier 107570 bytes_out 5438604 107570 bytes_in 2383082 107570 station_ip 31.59.40.18 107570 port 15728923 107570 nas_port_type Virtual 107570 remote_ip 5.5.5.254 107575 username amir 107575 mac 107575 bytes_out 0 107575 bytes_in 0 107575 station_ip 46.225.211.129 107575 port 17 107575 unique_id port 107575 remote_ip 10.8.0.50 107578 username mehdizare 107578 mac 107578 bytes_out 0 107578 bytes_in 0 107578 station_ip 5.119.174.144 107578 port 5 107578 unique_id port 107578 remote_ip 10.8.1.42 107580 username mohammadjavad 107580 kill_reason Another user logged on this global unique id 107580 mac 107580 bytes_out 0 107580 bytes_in 0 107580 station_ip 83.122.182.132 107580 port 23 107580 unique_id port 107580 remote_ip 10.8.0.142 107532 unique_id port 107535 username kordestani 107535 mac 107535 bytes_out 0 107535 bytes_in 0 107535 station_ip 83.123.251.212 107535 port 24 107535 unique_id port 107535 remote_ip 10.8.0.134 107537 username amir 107537 mac 107537 bytes_out 0 107537 bytes_in 0 107537 station_ip 46.225.211.129 107537 port 27 107537 unique_id port 107537 remote_ip 10.8.0.50 107539 username houshang 107539 mac 107539 bytes_out 0 107539 bytes_in 0 107539 station_ip 5.119.35.56 107539 port 24 107539 unique_id port 107539 remote_ip 10.8.0.22 107551 username avaanna 107551 mac 107551 bytes_out 26740 107551 bytes_in 64476 107551 station_ip 83.122.25.158 107551 port 17 107551 unique_id port 107551 remote_ip 10.8.0.98 107554 username amir 107554 mac 107554 bytes_out 0 107554 bytes_in 0 107554 station_ip 46.225.211.129 107554 port 25 107554 unique_id port 107554 remote_ip 10.8.0.50 107555 username amir 107555 mac 107555 bytes_out 77086 107555 bytes_in 372042 107555 station_ip 46.225.211.129 107555 port 25 107555 unique_id port 107555 remote_ip 10.8.0.50 107557 username houshang 107557 kill_reason Another user logged on this global unique id 107557 mac 107557 bytes_out 0 107557 bytes_in 0 107557 station_ip 5.119.35.56 107557 port 17 107557 unique_id port 107557 remote_ip 10.8.0.22 107559 username tahmasebi 107559 kill_reason Another user logged on this global unique id 107559 mac 107559 bytes_out 0 107559 bytes_in 0 107559 station_ip 5.120.109.220 107559 port 15 107559 unique_id port 107562 username amir 107562 mac 107562 bytes_out 0 107562 bytes_in 0 107562 station_ip 46.225.211.129 107562 port 26 107562 unique_id port 107562 remote_ip 10.8.0.50 107569 username alipour 107569 mac 107569 bytes_out 71189 107569 bytes_in 153677 107569 station_ip 113.203.78.117 107569 port 16 107569 unique_id port 107569 remote_ip 10.8.0.102 107571 username mahdiyehalizadeh 107571 mac 107571 bytes_out 0 107571 bytes_in 0 107571 station_ip 83.123.176.158 107571 port 23 107571 unique_id port 107571 remote_ip 10.8.0.82 107573 username forozande 107573 mac 107573 bytes_out 498574 107573 bytes_in 1703222 107573 station_ip 37.129.189.53 107573 port 24 107573 unique_id port 107573 remote_ip 10.8.0.74 107574 username bcboard 107574 unique_id port 107574 terminate_cause Lost-Carrier 107574 bytes_out 1191248 107574 bytes_in 162429 107574 station_ip 113.203.94.45 107574 port 15728925 107574 nas_port_type Virtual 107574 remote_ip 5.5.5.250 107577 username amir 107577 mac 107577 bytes_out 51758 107577 bytes_in 174774 107577 station_ip 46.225.211.129 107577 port 17 107577 unique_id port 107577 remote_ip 10.8.0.50 107583 username bcboard 107583 unique_id port 107583 terminate_cause User-Request 107583 bytes_out 756825 107583 bytes_in 4394753 107583 station_ip 83.122.19.0 107583 port 15728928 107583 nas_port_type Virtual 107583 remote_ip 5.5.5.248 107587 username mohammadmahdi 107587 mac 107587 bytes_out 0 107587 bytes_in 0 107587 station_ip 5.120.165.66 107587 port 25 107587 unique_id port 107587 remote_ip 10.8.0.54 107592 username bcboard 107592 unique_id port 107592 terminate_cause Lost-Carrier 107592 bytes_out 85575 107592 bytes_in 34525 107592 station_ip 83.123.246.86 107592 port 15728931 107592 nas_port_type Virtual 107592 remote_ip 5.5.5.248 107593 username bcboard 107593 unique_id port 107593 terminate_cause User-Request 107593 bytes_out 107987 107593 bytes_in 360067 107593 station_ip 37.129.98.133 107593 port 15728932 107593 nas_port_type Virtual 107593 remote_ip 5.5.5.248 107598 username bcboard 107598 unique_id port 107563 username houshang 107563 kill_reason Another user logged on this global unique id 107563 mac 107563 bytes_out 0 107563 bytes_in 0 107563 station_ip 5.119.35.56 107563 port 17 107563 unique_id port 107563 remote_ip 10.8.0.22 107566 username mohammadjavad 107566 mac 107566 bytes_out 386736 107566 bytes_in 2402167 107566 station_ip 113.203.53.193 107566 port 25 107566 unique_id port 107566 remote_ip 10.8.0.142 107567 username tahmasebi 107567 kill_reason Another user logged on this global unique id 107567 mac 107567 bytes_out 0 107567 bytes_in 0 107567 station_ip 5.120.109.220 107567 port 15 107567 unique_id port 107568 username mohammadmahdi 107568 mac 107568 bytes_out 0 107568 bytes_in 0 107568 station_ip 5.120.165.66 107568 port 23 107568 unique_id port 107572 username houshang 107572 mac 107572 bytes_out 0 107572 bytes_in 0 107572 station_ip 5.119.35.56 107572 port 17 107572 unique_id port 107576 username mehdizare 107576 mac 107576 bytes_out 0 107576 bytes_in 0 107576 station_ip 5.119.174.144 107576 port 5 107576 unique_id port 107576 remote_ip 10.8.1.42 107579 username alirr 107579 unique_id port 107579 terminate_cause Lost-Carrier 107579 bytes_out 915995 107579 bytes_in 7523298 107579 station_ip 31.56.221.211 107579 port 15728924 107579 nas_port_type Virtual 107579 remote_ip 5.5.5.252 107582 username avaanna 107582 mac 107582 bytes_out 3309377 107582 bytes_in 15223136 107582 station_ip 83.122.25.158 107582 port 18 107582 unique_id port 107582 remote_ip 10.8.0.98 107584 username mohammadjavad 107584 kill_reason Another user logged on this global unique id 107584 mac 107584 bytes_out 0 107584 bytes_in 0 107584 station_ip 83.122.182.132 107584 port 23 107584 unique_id port 107586 username alipour 107586 mac 107586 bytes_out 70603 107586 bytes_in 95635 107586 station_ip 113.203.78.117 107586 port 16 107586 unique_id port 107586 remote_ip 10.8.0.102 107588 username tahmasebi 107588 kill_reason Another user logged on this global unique id 107588 mac 107588 bytes_out 0 107588 bytes_in 0 107588 station_ip 5.120.109.220 107588 port 15 107588 unique_id port 107589 username amir 107589 mac 107589 bytes_out 46863 107589 bytes_in 355040 107589 station_ip 46.225.211.129 107589 port 16 107589 unique_id port 107589 remote_ip 10.8.0.50 107591 username mohammadjavad 107591 kill_reason Another user logged on this global unique id 107591 mac 107591 bytes_out 0 107591 bytes_in 0 107591 station_ip 83.122.182.132 107591 port 23 107591 unique_id port 107594 username mohammadjavad 107594 kill_reason Another user logged on this global unique id 107594 mac 107594 bytes_out 0 107594 bytes_in 0 107594 station_ip 83.122.182.132 107594 port 23 107594 unique_id port 107595 username bcboard 107595 unique_id port 107595 terminate_cause User-Request 107595 bytes_out 92944 107595 bytes_in 63073 107595 station_ip 37.129.98.133 107595 port 15728933 107595 nas_port_type Virtual 107595 remote_ip 5.5.5.249 107596 username kamali1 107596 mac 107596 bytes_out 475079 107596 bytes_in 697343 107596 station_ip 5.120.28.157 107596 port 27 107596 unique_id port 107596 remote_ip 10.8.0.70 107599 username amir 107599 mac 107599 bytes_out 43805 107599 bytes_in 392539 107599 station_ip 46.225.211.129 107599 port 26 107599 unique_id port 107599 remote_ip 10.8.0.50 107601 username alirr 107601 unique_id port 107601 terminate_cause User-Request 107601 bytes_out 10943490 107601 bytes_in 180805502 107601 station_ip 86.57.14.133 107601 port 15728929 107601 nas_port_type Virtual 107601 remote_ip 5.5.5.252 107603 username mahdiyehalizadeh 107603 mac 107603 bytes_out 65043 107581 username mehdizare 107581 mac 107581 bytes_out 257534 107581 bytes_in 3136807 107581 station_ip 5.119.174.144 107581 port 5 107581 unique_id port 107581 remote_ip 10.8.1.42 107585 username bcboard 107585 unique_id port 107585 terminate_cause Lost-Carrier 107585 bytes_out 75236 107585 bytes_in 5096 107585 station_ip 113.203.94.36 107585 port 15728930 107585 nas_port_type Virtual 107585 remote_ip 5.5.5.248 107590 username sedighe 107590 mac 107590 bytes_out 150967 107590 bytes_in 1060376 107590 station_ip 113.203.72.74 107590 port 18 107590 unique_id port 107590 remote_ip 10.8.0.146 107597 username mehdizare 107597 kill_reason Another user logged on this global unique id 107597 mac 107597 bytes_out 0 107597 bytes_in 0 107597 station_ip 5.119.174.144 107597 port 8 107597 unique_id port 107597 remote_ip 10.8.1.42 107604 username mohammadmahdi 107604 kill_reason Another user logged on this global unique id 107604 mac 107604 bytes_out 0 107604 bytes_in 0 107604 station_ip 5.120.165.66 107604 port 16 107604 unique_id port 107604 remote_ip 10.8.0.54 107605 username mehdizare 107605 mac 107605 bytes_out 0 107605 bytes_in 0 107605 station_ip 5.119.174.144 107605 port 8 107605 unique_id port 107610 username forozande 107610 mac 107610 bytes_out 717579 107610 bytes_in 8090400 107610 station_ip 83.122.176.225 107610 port 25 107610 unique_id port 107610 remote_ip 10.8.0.74 107614 username mohammadmahdi 107614 kill_reason Another user logged on this global unique id 107614 mac 107614 bytes_out 0 107614 bytes_in 0 107614 station_ip 5.120.165.66 107614 port 16 107614 unique_id port 107616 username mohammadjavad 107616 kill_reason Another user logged on this global unique id 107616 mac 107616 bytes_out 0 107616 bytes_in 0 107616 station_ip 83.122.182.132 107616 port 23 107616 unique_id port 107621 username mohammadmahdi 107621 mac 107621 bytes_out 0 107621 bytes_in 0 107621 station_ip 5.120.165.66 107621 port 16 107621 unique_id port 107624 username ahmadipour 107624 unique_id port 107624 terminate_cause Lost-Carrier 107624 bytes_out 285855 107624 bytes_in 5053302 107624 station_ip 113.203.104.203 107624 port 15728938 107624 nas_port_type Virtual 107624 remote_ip 5.5.5.248 107627 username naeimeh 107627 mac 107627 bytes_out 0 107627 bytes_in 0 107627 station_ip 83.122.66.154 107627 port 27 107627 unique_id port 107627 remote_ip 10.8.0.78 107630 username alipour 107630 mac 107630 bytes_out 195964 107630 bytes_in 628012 107630 station_ip 113.203.78.117 107630 port 24 107630 unique_id port 107630 remote_ip 10.8.0.102 107632 username mehdizare 107632 mac 107632 bytes_out 0 107632 bytes_in 0 107632 station_ip 5.119.174.144 107632 port 29 107632 unique_id port 107632 remote_ip 10.8.0.90 107634 username forozande 107634 mac 107634 bytes_out 819881 107634 bytes_in 8064323 107634 station_ip 37.129.31.5 107634 port 16 107634 unique_id port 107634 remote_ip 10.8.0.74 107637 username tahmasebi 107637 kill_reason Another user logged on this global unique id 107637 mac 107637 bytes_out 0 107637 bytes_in 0 107637 station_ip 5.120.109.220 107637 port 15 107637 unique_id port 107639 username malekpoir 107639 mac 107639 bytes_out 2027876 107639 bytes_in 27470722 107639 station_ip 5.119.29.241 107639 port 25 107639 unique_id port 107639 remote_ip 10.8.0.58 107640 username aminvpn 107640 unique_id port 107640 terminate_cause User-Request 107640 bytes_out 2730590 107640 bytes_in 52135483 107640 station_ip 5.119.89.251 107640 port 15728939 107640 nas_port_type Virtual 107640 remote_ip 5.5.5.252 107644 username avaanna 107644 mac 107598 terminate_cause Port-Error 107598 bytes_out 0 107598 bytes_in 0 107598 station_ip 37.129.98.133 107598 port 15728934 107598 nas_port_type Virtual 107598 remote_ip 5.5.5.249 107600 username amir 107600 mac 107600 bytes_out 0 107600 bytes_in 0 107600 station_ip 46.225.211.129 107600 port 26 107600 unique_id port 107600 remote_ip 10.8.0.50 107602 username amir 107602 mac 107602 bytes_out 0 107602 bytes_in 0 107602 station_ip 46.225.211.129 107602 port 26 107602 unique_id port 107602 remote_ip 10.8.0.50 107606 username ahmadipour 107606 unique_id port 107606 terminate_cause Lost-Carrier 107606 bytes_out 1644356 107606 bytes_in 29685730 107606 station_ip 113.203.113.67 107606 port 15728935 107606 nas_port_type Virtual 107606 remote_ip 5.5.5.248 107608 username mehdizare 107608 mac 107608 bytes_out 0 107608 bytes_in 0 107608 station_ip 5.119.174.144 107608 port 5 107608 unique_id port 107608 remote_ip 10.8.1.42 107609 username tahmasebi 107609 kill_reason Another user logged on this global unique id 107609 mac 107609 bytes_out 0 107609 bytes_in 0 107609 station_ip 5.120.109.220 107609 port 15 107609 unique_id port 107611 username mehdizare 107611 mac 107611 bytes_out 19144 107611 bytes_in 30085 107611 station_ip 5.119.174.144 107611 port 26 107611 unique_id port 107611 remote_ip 10.8.0.90 107612 username avaanna 107612 kill_reason Another user logged on this global unique id 107612 mac 107612 bytes_out 0 107612 bytes_in 0 107612 station_ip 83.122.25.158 107612 port 17 107612 unique_id port 107612 remote_ip 10.8.0.98 107613 username amir 107613 mac 107613 bytes_out 30147 107613 bytes_in 208608 107613 station_ip 46.225.211.129 107613 port 25 107613 unique_id port 107613 remote_ip 10.8.0.50 107617 username mohammadjavad 107617 kill_reason Another user logged on this global unique id 107617 mac 107617 bytes_out 0 107617 bytes_in 0 107617 station_ip 83.122.182.132 107617 port 23 107617 unique_id port 107622 username tahmasebi 107622 kill_reason Another user logged on this global unique id 107622 mac 107622 bytes_out 0 107622 bytes_in 0 107622 station_ip 5.120.109.220 107622 port 15 107622 unique_id port 107623 username alireza 107623 unique_id port 107623 terminate_cause Lost-Carrier 107623 bytes_out 411935 107623 bytes_in 2814261 107623 station_ip 5.120.73.139 107623 port 15728936 107623 nas_port_type Virtual 107623 remote_ip 5.5.5.252 107626 username forozande 107626 mac 107626 bytes_out 0 107626 bytes_in 0 107626 station_ip 113.203.78.33 107626 port 30 107626 unique_id port 107626 remote_ip 10.8.0.74 107629 username mohammadmahdi 107629 mac 107629 bytes_out 0 107629 bytes_in 0 107629 station_ip 5.120.165.66 107629 port 16 107629 unique_id port 107629 remote_ip 10.8.0.54 107631 username kamali1 107631 mac 107631 bytes_out 0 107631 bytes_in 0 107631 station_ip 5.120.28.157 107631 port 18 107631 unique_id port 107631 remote_ip 10.8.0.70 107635 username mohammadmahdi 107635 mac 107635 bytes_out 1159756 107635 bytes_in 31432280 107635 station_ip 5.120.165.66 107635 port 27 107635 unique_id port 107635 remote_ip 10.8.0.54 107636 username amir 107636 mac 107636 bytes_out 57104 107636 bytes_in 366498 107636 station_ip 46.225.232.106 107636 port 16 107636 unique_id port 107636 remote_ip 10.8.0.50 107638 username mehdizare 107638 mac 107638 bytes_out 73787 107638 bytes_in 118825 107638 station_ip 5.119.174.144 107638 port 18 107638 unique_id port 107638 remote_ip 10.8.0.90 107643 username bcboard 107643 unique_id port 107643 terminate_cause Lost-Carrier 107643 bytes_out 134301 107643 bytes_in 84580 107603 bytes_in 66822 107603 station_ip 113.203.121.224 107603 port 25 107603 unique_id port 107603 remote_ip 10.8.0.82 107607 username amir 107607 mac 107607 bytes_out 0 107607 bytes_in 0 107607 station_ip 46.225.211.129 107607 port 26 107607 unique_id port 107607 remote_ip 10.8.0.50 107615 username mehdizare 107615 mac 107615 bytes_out 0 107615 bytes_in 0 107615 station_ip 5.119.174.144 107615 port 25 107615 unique_id port 107615 remote_ip 10.8.0.90 107618 username hashtadani 107618 kill_reason Relative expiration date has reached 107618 unique_id port 107618 bytes_out 0 107618 bytes_in 0 107618 station_ip 5.202.96.241 107618 port 15728937 107618 nas_port_type Virtual 107619 username aminvpn 107619 mac 107619 bytes_out 0 107619 bytes_in 0 107619 station_ip 113.203.7.171 107619 port 21 107619 unique_id port 107619 remote_ip 10.8.0.14 107620 username aminvpn 107620 mac 107620 bytes_out 0 107620 bytes_in 0 107620 station_ip 37.129.205.149 107620 port 29 107620 unique_id port 107620 remote_ip 10.8.0.14 107625 username mehdizare 107625 mac 107625 bytes_out 0 107625 bytes_in 0 107625 station_ip 5.119.174.144 107625 port 26 107625 unique_id port 107625 remote_ip 10.8.0.90 107628 username forozande 107628 mac 107628 bytes_out 72334 107628 bytes_in 141679 107628 station_ip 83.123.249.159 107628 port 31 107628 unique_id port 107628 remote_ip 10.8.0.74 107633 username sedighe 107633 mac 107633 bytes_out 135848 107633 bytes_in 703371 107633 station_ip 113.203.72.74 107633 port 26 107633 unique_id port 107633 remote_ip 10.8.0.146 107641 username alirezazadeh 107641 unique_id port 107641 terminate_cause User-Request 107641 bytes_out 45227 107641 bytes_in 57664 107641 station_ip 86.57.20.52 107641 port 15728941 107641 nas_port_type Virtual 107641 remote_ip 5.5.5.252 107642 username mehdizare 107642 mac 107642 bytes_out 0 107642 bytes_in 0 107642 station_ip 5.119.174.144 107642 port 18 107642 unique_id port 107642 remote_ip 10.8.0.90 107645 username amir 107645 mac 107645 bytes_out 0 107645 bytes_in 0 107645 station_ip 46.225.232.106 107645 port 16 107645 unique_id port 107645 remote_ip 10.8.0.50 107647 username mirzaei 107647 kill_reason Another user logged on this global unique id 107647 mac 107647 bytes_out 0 107647 bytes_in 0 107647 station_ip 5.119.163.29 107647 port 22 107647 unique_id port 107655 username mosi 107655 kill_reason Another user logged on this global unique id 107655 mac 107655 bytes_out 0 107655 bytes_in 0 107655 station_ip 151.235.75.16 107655 port 16 107655 unique_id port 107658 username mohammadjavad 107658 mac 107658 bytes_out 0 107658 bytes_in 0 107658 station_ip 83.122.182.132 107658 port 23 107658 unique_id port 107659 username mosi 107659 kill_reason Another user logged on this global unique id 107659 mac 107659 bytes_out 0 107659 bytes_in 0 107659 station_ip 151.235.75.16 107659 port 16 107659 unique_id port 107664 username sedighe 107664 mac 107664 bytes_out 202829 107664 bytes_in 559121 107664 station_ip 113.203.72.74 107664 port 25 107664 unique_id port 107664 remote_ip 10.8.0.146 107667 username musa 107667 mac 107667 bytes_out 199797 107667 bytes_in 698726 107667 station_ip 91.133.239.151 107667 port 28 107667 unique_id port 107667 remote_ip 10.8.0.6 107669 username mehdizare 107669 mac 107669 bytes_out 0 107669 bytes_in 0 107669 station_ip 5.119.174.144 107669 port 18 107669 unique_id port 107669 remote_ip 10.8.0.90 107670 username alireza 107670 unique_id port 107670 terminate_cause User-Request 107670 bytes_out 1346131 107643 station_ip 113.203.40.136 107643 port 15728940 107643 nas_port_type Virtual 107643 remote_ip 5.5.5.248 107648 username avaanna 107648 mac 107648 bytes_out 0 107648 bytes_in 0 107648 station_ip 83.122.25.158 107648 port 29 107648 unique_id port 107648 remote_ip 10.8.0.98 107652 username musa 107652 mac 107652 bytes_out 0 107652 bytes_in 0 107652 station_ip 91.133.239.151 107652 port 25 107652 unique_id port 107652 remote_ip 10.8.0.6 107653 username amir 107653 mac 107653 bytes_out 47591 107653 bytes_in 392180 107653 station_ip 46.225.232.106 107653 port 16 107653 unique_id port 107653 remote_ip 10.8.0.50 107654 username mosi 107654 kill_reason Another user logged on this global unique id 107654 mac 107654 bytes_out 0 107654 bytes_in 0 107654 station_ip 151.235.75.16 107654 port 16 107654 unique_id port 107654 remote_ip 10.8.0.138 107660 username forozande 107660 mac 107660 bytes_out 0 107660 bytes_in 0 107660 station_ip 113.203.55.206 107660 port 17 107660 unique_id port 107660 remote_ip 10.8.0.74 107665 username sedighe 107665 mac 107665 bytes_out 1572 107665 bytes_in 4970 107665 station_ip 113.203.72.74 107665 port 23 107665 unique_id port 107665 remote_ip 10.8.0.146 107674 username houshang 107674 mac 107674 bytes_out 0 107674 bytes_in 0 107674 station_ip 5.120.60.35 107674 port 18 107674 unique_id port 107674 remote_ip 10.8.0.22 107676 username aminvpn 107676 unique_id port 107676 terminate_cause Lost-Carrier 107676 bytes_out 2338745 107676 bytes_in 17870245 107676 station_ip 5.120.47.24 107676 port 15728944 107676 nas_port_type Virtual 107676 remote_ip 5.5.5.250 107678 username mehdizare 107678 mac 107678 bytes_out 0 107678 bytes_in 0 107678 station_ip 5.119.174.144 107678 port 15 107678 unique_id port 107678 remote_ip 10.8.0.90 107680 username mehdizare 107680 mac 107680 bytes_out 11868 107680 bytes_in 20690 107680 station_ip 5.119.174.144 107680 port 15 107680 unique_id port 107680 remote_ip 10.8.0.90 107683 username amir 107683 mac 107683 bytes_out 44998 107683 bytes_in 308522 107683 station_ip 46.225.232.106 107683 port 18 107683 unique_id port 107683 remote_ip 10.8.0.50 107684 username kamali1 107684 mac 107684 bytes_out 10582 107684 bytes_in 16217 107684 station_ip 5.120.28.157 107684 port 23 107684 unique_id port 107684 remote_ip 10.8.0.70 107687 username alirezazadeh 107687 unique_id port 107687 terminate_cause Lost-Carrier 107687 bytes_out 2154739 107687 bytes_in 14386715 107687 station_ip 5.120.111.101 107687 port 15728946 107687 nas_port_type Virtual 107687 remote_ip 5.5.5.248 107688 username mohammadmahdi 107688 kill_reason Another user logged on this global unique id 107688 mac 107688 bytes_out 0 107688 bytes_in 0 107688 station_ip 5.120.165.66 107688 port 17 107688 unique_id port 107688 remote_ip 10.8.0.54 107691 username musa 107691 mac 107691 bytes_out 1169746 107691 bytes_in 4307089 107691 station_ip 91.133.130.124 107691 port 16 107691 unique_id port 107691 remote_ip 10.8.0.6 107695 username mahdixz 107695 unique_id port 107695 terminate_cause User-Request 107695 bytes_out 195177 107695 bytes_in 2925492 107695 station_ip 151.235.70.107 107695 port 15728947 107695 nas_port_type Virtual 107695 remote_ip 5.5.5.252 107700 username houshang 107700 kill_reason Another user logged on this global unique id 107700 mac 107700 bytes_out 0 107700 bytes_in 0 107700 station_ip 5.120.60.35 107700 port 8 107700 unique_id port 107703 username mohammadmahdi 107703 kill_reason Another user logged on this global unique id 107703 mac 107703 bytes_out 0 107703 bytes_in 0 107644 bytes_out 0 107644 bytes_in 0 107644 station_ip 83.122.25.158 107644 port 17 107644 unique_id port 107646 username bcboard 107646 unique_id port 107646 terminate_cause Lost-Carrier 107646 bytes_out 1113170 107646 bytes_in 27095966 107646 station_ip 83.123.66.6 107646 port 15728943 107646 nas_port_type Virtual 107646 remote_ip 5.5.5.248 107649 username mosi 107649 mac 107649 bytes_out 2268793 107649 bytes_in 19896386 107649 station_ip 151.235.75.16 107649 port 28 107649 unique_id port 107649 remote_ip 10.8.0.138 107650 username forozande 107650 mac 107650 bytes_out 102606 107650 bytes_in 490650 107650 station_ip 37.129.23.240 107650 port 16 107650 unique_id port 107650 remote_ip 10.8.0.74 107651 username hamid.e 107651 unique_id port 107651 terminate_cause Lost-Carrier 107651 bytes_out 6428926 107651 bytes_in 72844983 107651 station_ip 37.27.24.159 107651 port 15728927 107651 nas_port_type Virtual 107651 remote_ip 5.5.5.250 107656 username mosi 107656 kill_reason Another user logged on this global unique id 107656 mac 107656 bytes_out 0 107656 bytes_in 0 107656 station_ip 151.235.75.16 107656 port 16 107656 unique_id port 107657 username amir 107657 mac 107657 bytes_out 0 107657 bytes_in 0 107657 station_ip 46.225.232.106 107657 port 28 107657 unique_id port 107657 remote_ip 10.8.0.50 107661 username mosi 107661 kill_reason Another user logged on this global unique id 107661 mac 107661 bytes_out 0 107661 bytes_in 0 107661 station_ip 151.235.75.16 107661 port 16 107661 unique_id port 107662 username alirr 107662 unique_id port 107662 terminate_cause User-Request 107662 bytes_out 3352968 107662 bytes_in 41896910 107662 station_ip 86.57.14.133 107662 port 15728942 107662 nas_port_type Virtual 107662 remote_ip 5.5.5.252 107663 username forozande 107663 mac 107663 bytes_out 0 107663 bytes_in 0 107663 station_ip 113.203.55.206 107663 port 23 107663 unique_id port 107663 remote_ip 10.8.0.74 107666 username amir 107666 mac 107666 bytes_out 41760 107666 bytes_in 323322 107666 station_ip 46.225.232.106 107666 port 23 107666 unique_id port 107666 remote_ip 10.8.0.50 107668 username tahmasebi 107668 mac 107668 bytes_out 0 107668 bytes_in 0 107668 station_ip 5.120.109.220 107668 port 15 107668 unique_id port 107672 username kamali1 107672 mac 107672 bytes_out 0 107672 bytes_in 0 107672 station_ip 5.120.28.157 107672 port 26 107672 unique_id port 107672 remote_ip 10.8.0.70 107675 username mohammadjavad 107675 mac 107675 bytes_out 0 107675 bytes_in 0 107675 station_ip 37.129.158.151 107675 port 17 107675 unique_id port 107675 remote_ip 10.8.0.142 107681 username kordestani 107681 kill_reason Another user logged on this global unique id 107681 mac 107681 bytes_out 0 107681 bytes_in 0 107681 station_ip 151.235.91.114 107681 port 25 107681 unique_id port 107681 remote_ip 10.8.0.134 107682 username mosi 107682 mac 107682 bytes_out 0 107682 bytes_in 0 107682 station_ip 151.235.75.16 107682 port 16 107682 unique_id port 107685 username kordestani 107685 mac 107685 bytes_out 0 107685 bytes_in 0 107685 station_ip 151.235.91.114 107685 port 25 107685 unique_id port 107689 username kordestani 107689 mac 107689 bytes_out 222530 107689 bytes_in 2610418 107689 station_ip 151.235.91.114 107689 port 23 107689 unique_id port 107689 remote_ip 10.8.0.134 107693 username houshang 107693 kill_reason Another user logged on this global unique id 107693 mac 107693 bytes_out 0 107693 bytes_in 0 107693 station_ip 5.120.60.35 107693 port 8 107693 unique_id port 107698 username avaanna 107698 mac 107670 bytes_in 16678442 107670 station_ip 5.120.73.139 107670 port 15728945 107670 nas_port_type Virtual 107670 remote_ip 5.5.5.252 107671 username amir 107671 mac 107671 bytes_out 0 107671 bytes_in 0 107671 station_ip 46.225.232.106 107671 port 18 107671 unique_id port 107671 remote_ip 10.8.0.50 107673 username kamali1 107673 mac 107673 bytes_out 6770 107673 bytes_in 10265 107673 station_ip 5.120.28.157 107673 port 28 107673 unique_id port 107673 remote_ip 10.8.0.70 107677 username tahmasebi 107677 mac 107677 bytes_out 0 107677 bytes_in 0 107677 station_ip 5.120.109.220 107677 port 23 107677 unique_id port 107677 remote_ip 10.8.0.42 107679 username kamali1 107679 mac 107679 bytes_out 79360 107679 bytes_in 845643 107679 station_ip 5.120.28.157 107679 port 26 107679 unique_id port 107679 remote_ip 10.8.0.70 107686 username houshang 107686 kill_reason Another user logged on this global unique id 107686 mac 107686 bytes_out 0 107686 bytes_in 0 107686 station_ip 5.120.60.35 107686 port 8 107686 unique_id port 107686 remote_ip 10.8.1.70 107690 username mohammadjavad 107690 kill_reason Another user logged on this global unique id 107690 mac 107690 bytes_out 0 107690 bytes_in 0 107690 station_ip 113.203.27.154 107690 port 15 107690 unique_id port 107690 remote_ip 10.8.0.142 107692 username amir 107692 mac 107692 bytes_out 98456 107692 bytes_in 591317 107692 station_ip 46.225.232.106 107692 port 26 107692 unique_id port 107692 remote_ip 10.8.0.50 107694 username malekpoir 107694 mac 107694 bytes_out 2362249 107694 bytes_in 20817490 107694 station_ip 5.119.29.241 107694 port 27 107694 unique_id port 107694 remote_ip 10.8.0.58 107696 username mohammadjavad 107696 kill_reason Another user logged on this global unique id 107696 mac 107696 bytes_out 0 107696 bytes_in 0 107696 station_ip 113.203.27.154 107696 port 15 107696 unique_id port 107697 username sedighe 107697 mac 107697 bytes_out 773275 107697 bytes_in 4520694 107697 station_ip 113.203.72.74 107697 port 25 107697 unique_id port 107697 remote_ip 10.8.0.146 107705 username mohammadjavad 107705 mac 107705 bytes_out 0 107705 bytes_in 0 107705 station_ip 113.203.27.154 107705 port 15 107705 unique_id port 107707 username forozande 107707 mac 107707 bytes_out 0 107707 bytes_in 0 107707 station_ip 83.122.27.219 107707 port 15 107707 unique_id port 107707 remote_ip 10.8.0.74 107709 username bcboard 107709 unique_id port 107709 terminate_cause User-Request 107709 bytes_out 1126044 107709 bytes_in 2785712 107709 station_ip 83.123.169.194 107709 port 15728949 107709 nas_port_type Virtual 107709 remote_ip 5.5.5.252 107712 username avaanna 107712 mac 107712 bytes_out 275820 107712 bytes_in 3261657 107712 station_ip 83.122.202.245 107712 port 5 107712 unique_id port 107712 remote_ip 10.8.1.46 107717 username ahmadipour 107717 unique_id port 107717 terminate_cause Lost-Carrier 107717 bytes_out 201552 107717 bytes_in 3683818 107717 station_ip 113.203.65.207 107717 port 15728954 107717 nas_port_type Virtual 107717 remote_ip 5.5.5.249 107719 username mohammadmahdi 107719 kill_reason Another user logged on this global unique id 107719 mac 107719 bytes_out 0 107719 bytes_in 0 107719 station_ip 5.120.165.66 107719 port 17 107719 unique_id port 107722 username bcboard 107722 unique_id port 107722 terminate_cause User-Request 107722 bytes_out 4264174 107722 bytes_in 74374266 107722 station_ip 83.123.169.194 107722 port 15728953 107722 nas_port_type Virtual 107722 remote_ip 5.5.5.251 107725 username mohammadjavad 107725 mac 107725 bytes_out 354759 107725 bytes_in 5991256 107698 bytes_out 0 107698 bytes_in 0 107698 station_ip 83.122.202.245 107698 port 5 107698 unique_id port 107698 remote_ip 10.8.1.46 107699 username ahmadi 107699 unique_id port 107699 terminate_cause User-Request 107699 bytes_out 52930 107699 bytes_in 371673 107699 station_ip 37.129.38.70 107699 port 15728948 107699 nas_port_type Virtual 107699 remote_ip 5.5.5.252 107701 username avaanna 107701 mac 107701 bytes_out 0 107701 bytes_in 0 107701 station_ip 83.122.202.245 107701 port 5 107701 unique_id port 107701 remote_ip 10.8.1.46 107702 username amir 107702 mac 107702 bytes_out 0 107702 bytes_in 0 107702 station_ip 46.225.232.106 107702 port 16 107702 unique_id port 107702 remote_ip 10.8.0.50 107710 username amir 107710 mac 107710 bytes_out 112619 107710 bytes_in 632391 107710 station_ip 46.225.232.106 107710 port 16 107710 unique_id port 107710 remote_ip 10.8.0.50 107711 username aminvpn 107711 unique_id port 107711 terminate_cause Lost-Carrier 107711 bytes_out 635865 107711 bytes_in 10168257 107711 station_ip 5.119.164.36 107711 port 15728950 107711 nas_port_type Virtual 107711 remote_ip 5.5.5.250 107713 username mohammadmahdi 107713 kill_reason Another user logged on this global unique id 107713 mac 107713 bytes_out 0 107713 bytes_in 0 107713 station_ip 5.120.165.66 107713 port 17 107713 unique_id port 107718 username amir 107718 mac 107718 bytes_out 46051 107718 bytes_in 398281 107718 station_ip 46.225.232.106 107718 port 16 107718 unique_id port 107718 remote_ip 10.8.0.50 107723 username avaanna 107723 mac 107723 bytes_out 0 107723 bytes_in 0 107723 station_ip 83.122.202.245 107723 port 5 107723 unique_id port 107723 remote_ip 10.8.1.46 107727 username kamali1 107727 kill_reason Another user logged on this global unique id 107727 mac 107727 bytes_out 0 107727 bytes_in 0 107727 station_ip 5.120.28.157 107727 port 18 107727 unique_id port 107727 remote_ip 10.8.0.70 107728 username sedighe 107728 mac 107728 bytes_out 1767826 107728 bytes_in 23232314 107728 station_ip 113.203.72.74 107728 port 26 107728 unique_id port 107728 remote_ip 10.8.0.146 107729 username aminvpn 107729 mac 107729 bytes_out 586282 107729 bytes_in 2529280 107729 station_ip 113.203.7.171 107729 port 21 107729 unique_id port 107729 remote_ip 10.8.0.14 107731 username mohammadmahdi 107731 mac 107731 bytes_out 0 107731 bytes_in 0 107731 station_ip 5.120.165.66 107731 port 17 107731 unique_id port 107733 username amir 107733 mac 107733 bytes_out 0 107733 bytes_in 0 107733 station_ip 46.225.232.106 107733 port 21 107733 unique_id port 107733 remote_ip 10.8.0.50 107735 username abravesh 107735 unique_id port 107735 terminate_cause User-Request 107735 bytes_out 2087 107735 bytes_in 244 107735 station_ip 5.120.86.62 107735 port 15728955 107735 nas_port_type Virtual 107735 remote_ip 5.5.5.233 107736 username kamali1 107736 kill_reason Another user logged on this global unique id 107736 mac 107736 bytes_out 0 107736 bytes_in 0 107736 station_ip 5.120.28.157 107736 port 18 107736 unique_id port 107741 username amir 107741 mac 107741 bytes_out 0 107741 bytes_in 0 107741 station_ip 46.225.232.106 107741 port 23 107741 unique_id port 107741 remote_ip 10.8.0.50 107748 username malekpoir 107748 mac 107748 bytes_out 95123 107748 bytes_in 613649 107748 station_ip 5.119.29.241 107748 port 5 107748 unique_id port 107748 remote_ip 10.8.1.54 107759 username mahdiyehalizadeh 107759 mac 107759 bytes_out 0 107759 bytes_in 0 107759 station_ip 37.129.206.82 107759 port 23 107759 unique_id port 107703 station_ip 5.120.165.66 107703 port 17 107703 unique_id port 107704 username houshang 107704 mac 107704 bytes_out 0 107704 bytes_in 0 107704 station_ip 5.120.60.35 107704 port 8 107704 unique_id port 107706 username sedighe 107706 mac 107706 bytes_out 250514 107706 bytes_in 1257072 107706 station_ip 113.203.72.74 107706 port 23 107706 unique_id port 107706 remote_ip 10.8.0.146 107708 username khalili 107708 mac 107708 bytes_out 3572609 107708 bytes_in 34241237 107708 station_ip 5.119.89.178 107708 port 6 107708 unique_id port 107708 remote_ip 10.8.1.18 107714 username amir 107714 mac 107714 bytes_out 0 107714 bytes_in 0 107714 station_ip 46.225.232.106 107714 port 15 107714 unique_id port 107714 remote_ip 10.8.0.50 107715 username aminvpn 107715 unique_id port 107715 terminate_cause Lost-Carrier 107715 bytes_out 1898512 107715 bytes_in 2246745 107715 station_ip 5.119.13.170 107715 port 15728951 107715 nas_port_type Virtual 107715 remote_ip 5.5.5.248 107716 username malekpoir 107716 mac 107716 bytes_out 535063 107716 bytes_in 2421531 107716 station_ip 5.119.29.241 107716 port 25 107716 unique_id port 107716 remote_ip 10.8.0.58 107720 username houshang 107720 mac 107720 bytes_out 0 107720 bytes_in 0 107720 station_ip 5.120.60.35 107720 port 23 107720 unique_id port 107720 remote_ip 10.8.0.22 107721 username houshang 107721 mac 107721 bytes_out 70764 107721 bytes_in 149527 107721 station_ip 5.120.60.35 107721 port 25 107721 unique_id port 107721 remote_ip 10.8.0.22 107724 username amir 107724 mac 107724 bytes_out 0 107724 bytes_in 0 107724 station_ip 46.225.232.106 107724 port 25 107724 unique_id port 107724 remote_ip 10.8.0.50 107726 username mohammadmahdi 107726 kill_reason Another user logged on this global unique id 107726 mac 107726 bytes_out 0 107726 bytes_in 0 107726 station_ip 5.120.165.66 107726 port 17 107726 unique_id port 107732 username alipour 107732 kill_reason Another user logged on this global unique id 107732 mac 107732 bytes_out 0 107732 bytes_in 0 107732 station_ip 113.203.78.117 107732 port 24 107732 unique_id port 107732 remote_ip 10.8.0.102 107734 username sedighe 107734 mac 107734 bytes_out 148960 107734 bytes_in 898254 107734 station_ip 113.203.72.74 107734 port 23 107734 unique_id port 107734 remote_ip 10.8.0.146 107737 username mohammadjavad 107737 mac 107737 bytes_out 1420602 107737 bytes_in 370005 107737 station_ip 83.123.243.179 107737 port 21 107737 unique_id port 107737 remote_ip 10.8.0.142 107738 username mohammadmahdi 107738 kill_reason Another user logged on this global unique id 107738 mac 107738 bytes_out 0 107738 bytes_in 0 107738 station_ip 5.120.165.66 107738 port 25 107738 unique_id port 107738 remote_ip 10.8.0.54 107740 username bcboard 107740 unique_id port 107740 terminate_cause Lost-Carrier 107740 bytes_out 625895 107740 bytes_in 3691079 107740 station_ip 83.123.169.194 107740 port 15728957 107740 nas_port_type Virtual 107740 remote_ip 5.5.5.236 107742 username mohammadmahdi 107742 kill_reason Another user logged on this global unique id 107742 mac 107742 bytes_out 0 107742 bytes_in 0 107742 station_ip 5.120.165.66 107742 port 25 107742 unique_id port 107744 username forozande 107744 mac 107744 bytes_out 1924023 107744 bytes_in 23316015 107744 station_ip 83.123.78.124 107744 port 17 107744 unique_id port 107744 remote_ip 10.8.0.74 107745 username malekpoir 107745 mac 107745 bytes_out 6184 107745 bytes_in 7018 107745 station_ip 5.119.29.241 107745 port 21 107745 unique_id port 107745 remote_ip 10.8.0.58 107747 username aminvpn 107725 station_ip 113.203.20.23 107725 port 23 107725 unique_id port 107725 remote_ip 10.8.0.142 107730 username amirabbas 107730 unique_id port 107730 terminate_cause User-Request 107730 bytes_out 101422323 107730 bytes_in 2185113412 107730 station_ip 37.27.58.97 107730 port 15728926 107730 nas_port_type Virtual 107730 remote_ip 5.5.5.254 107739 username amir 107739 mac 107739 bytes_out 0 107739 bytes_in 0 107739 station_ip 46.225.232.106 107739 port 21 107739 unique_id port 107739 remote_ip 10.8.0.50 107743 username malekpoir 107743 mac 107743 bytes_out 236920 107743 bytes_in 180990 107743 station_ip 5.119.29.241 107743 port 15 107743 unique_id port 107743 remote_ip 10.8.0.58 107746 username mohammadmahdi 107746 mac 107746 bytes_out 0 107746 bytes_in 0 107746 station_ip 5.120.165.66 107746 port 25 107746 unique_id port 107749 username malekpoir 107749 mac 107749 bytes_out 6606 107749 bytes_in 7961 107749 station_ip 5.119.29.241 107749 port 17 107749 unique_id port 107749 remote_ip 10.8.0.58 107753 username abravesh 107753 kill_reason Maximum check online fails reached 107753 unique_id port 107753 bytes_out 12289085 107753 bytes_in 15322630 107753 station_ip 5.120.86.62 107753 port 15728956 107753 nas_port_type Virtual 107753 remote_ip 5.5.5.235 107755 username malekpoir 107755 mac 107755 bytes_out 763556 107755 bytes_in 6005699 107755 station_ip 5.119.29.241 107755 port 17 107755 unique_id port 107755 remote_ip 10.8.0.58 107757 username sedighe 107757 mac 107757 bytes_out 120512 107757 bytes_in 1313404 107757 station_ip 83.122.71.212 107757 port 15 107757 unique_id port 107757 remote_ip 10.8.0.146 107758 username zare 107758 mac 107758 bytes_out 0 107758 bytes_in 0 107758 station_ip 37.27.35.154 107758 port 5 107758 unique_id port 107758 remote_ip 10.8.1.58 107760 username mohammadmahdi 107760 kill_reason Another user logged on this global unique id 107760 mac 107760 bytes_out 0 107760 bytes_in 0 107760 station_ip 5.120.165.66 107760 port 21 107760 unique_id port 107760 remote_ip 10.8.0.54 107762 username amir 107762 mac 107762 bytes_out 81286 107762 bytes_in 533282 107762 station_ip 46.225.232.106 107762 port 15 107762 unique_id port 107762 remote_ip 10.8.0.50 107765 username mohammadmahdi 107765 mac 107765 bytes_out 0 107765 bytes_in 0 107765 station_ip 5.120.165.66 107765 port 21 107765 unique_id port 107775 username zare 107775 kill_reason Another user logged on this global unique id 107775 mac 107775 bytes_out 0 107775 bytes_in 0 107775 station_ip 37.27.35.154 107775 port 5 107775 unique_id port 107775 remote_ip 10.8.1.58 107776 username malekpoir 107776 mac 107776 bytes_out 5068790 107776 bytes_in 50237818 107776 station_ip 5.119.29.241 107776 port 17 107776 unique_id port 107776 remote_ip 10.8.0.58 107779 username zare 107779 kill_reason Another user logged on this global unique id 107779 mac 107779 bytes_out 0 107779 bytes_in 0 107779 station_ip 37.27.35.154 107779 port 5 107779 unique_id port 107784 username amir 107784 mac 107784 bytes_out 0 107784 bytes_in 0 107784 station_ip 46.225.232.106 107784 port 21 107784 unique_id port 107784 remote_ip 10.8.0.50 107785 username zare 107785 mac 107785 bytes_out 0 107785 bytes_in 0 107785 station_ip 37.27.35.154 107785 port 5 107785 unique_id port 107785 remote_ip 10.8.1.58 107786 username amir 107786 mac 107786 bytes_out 0 107786 bytes_in 0 107786 station_ip 46.225.232.106 107786 port 21 107786 unique_id port 107786 remote_ip 10.8.0.50 107794 username aminvpn 107794 kill_reason Another user logged on this global unique id 107747 unique_id port 107747 terminate_cause Lost-Carrier 107747 bytes_out 810764 107747 bytes_in 2498498 107747 station_ip 5.119.13.170 107747 port 15728952 107747 nas_port_type Virtual 107747 remote_ip 5.5.5.252 107750 username malekpoir 107750 mac 107750 bytes_out 8739 107750 bytes_in 8325 107750 station_ip 5.119.29.241 107750 port 21 107750 unique_id port 107750 remote_ip 10.8.0.58 107751 username amir 107751 mac 107751 bytes_out 24800 107751 bytes_in 227319 107751 station_ip 46.225.232.106 107751 port 21 107751 unique_id port 107751 remote_ip 10.8.0.50 107752 username mohammadmahdi 107752 mac 107752 bytes_out 975336 107752 bytes_in 11828368 107752 station_ip 5.120.165.66 107752 port 15 107752 unique_id port 107752 remote_ip 10.8.0.54 107754 username zare 107754 mac 107754 bytes_out 0 107754 bytes_in 0 107754 station_ip 37.27.35.154 107754 port 5 107754 unique_id port 107754 remote_ip 10.8.1.58 107756 username zare 107756 mac 107756 bytes_out 0 107756 bytes_in 0 107756 station_ip 37.27.35.154 107756 port 5 107756 unique_id port 107756 remote_ip 10.8.1.58 107763 username alireza 107763 unique_id port 107763 terminate_cause Lost-Carrier 107763 bytes_out 1012822 107763 bytes_in 10331544 107763 station_ip 5.120.73.139 107763 port 15728960 107763 nas_port_type Virtual 107763 remote_ip 5.5.5.232 107764 username bcboard 107764 unique_id port 107764 terminate_cause Lost-Carrier 107764 bytes_out 968090 107764 bytes_in 15337861 107764 station_ip 83.122.41.73 107764 port 15728958 107764 nas_port_type Virtual 107764 remote_ip 5.5.5.240 107766 username mehdizare 107766 mac 107766 bytes_out 0 107766 bytes_in 0 107766 station_ip 5.119.174.144 107766 port 9 107766 unique_id port 107766 remote_ip 10.8.1.42 107771 username mehdizare 107771 mac 107771 bytes_out 20147 107771 bytes_in 23675 107771 station_ip 5.119.174.144 107771 port 21 107771 unique_id port 107771 remote_ip 10.8.0.90 107773 username kamali1 107773 mac 107773 bytes_out 0 107773 bytes_in 0 107773 station_ip 5.119.251.42 107773 port 9 107773 unique_id port 107773 remote_ip 10.8.1.26 107774 username alirr 107774 unique_id port 107774 terminate_cause User-Request 107774 bytes_out 71027 107774 bytes_in 258839 107774 station_ip 37.137.19.101 107774 port 15728963 107774 nas_port_type Virtual 107774 remote_ip 5.5.5.234 107777 username amir 107777 mac 107777 bytes_out 1367687 107777 bytes_in 8048391 107777 station_ip 46.225.232.106 107777 port 18 107777 unique_id port 107777 remote_ip 10.8.0.50 107778 username amir 107778 mac 107778 bytes_out 0 107778 bytes_in 0 107778 station_ip 46.225.232.106 107778 port 17 107778 unique_id port 107778 remote_ip 10.8.0.50 107780 username amir 107780 mac 107780 bytes_out 236860 107780 bytes_in 1251172 107780 station_ip 46.225.232.106 107780 port 17 107780 unique_id port 107780 remote_ip 10.8.0.50 107781 username amir 107781 mac 107781 bytes_out 0 107781 bytes_in 0 107781 station_ip 46.225.232.106 107781 port 17 107781 unique_id port 107781 remote_ip 10.8.0.50 107782 username zare 107782 kill_reason Another user logged on this global unique id 107782 mac 107782 bytes_out 0 107782 bytes_in 0 107782 station_ip 37.27.35.154 107782 port 5 107782 unique_id port 107783 username zare 107783 mac 107783 bytes_out 0 107783 bytes_in 0 107783 station_ip 37.27.35.154 107783 port 5 107783 unique_id port 107791 username zare 107791 mac 107791 bytes_out 16964 107791 bytes_in 45085 107791 station_ip 37.27.35.154 107791 port 21 107791 unique_id port 107759 remote_ip 10.8.0.82 107761 username kamali1 107761 kill_reason Another user logged on this global unique id 107761 mac 107761 bytes_out 0 107761 bytes_in 0 107761 station_ip 5.120.28.157 107761 port 18 107761 unique_id port 107767 username amin.saeedi 107767 unique_id port 107767 terminate_cause User-Request 107767 bytes_out 2491586 107767 bytes_in 19891407 107767 station_ip 31.59.40.42 107767 port 15728959 107767 nas_port_type Virtual 107767 remote_ip 5.5.5.242 107768 username amir 107768 mac 107768 bytes_out 298401 107768 bytes_in 1387974 107768 station_ip 46.225.232.106 107768 port 15 107768 unique_id port 107768 remote_ip 10.8.0.50 107769 username ahmadi 107769 unique_id port 107769 terminate_cause User-Request 107769 bytes_out 33403 107769 bytes_in 161699 107769 station_ip 37.129.4.70 107769 port 15728962 107769 nas_port_type Virtual 107769 remote_ip 5.5.5.228 107770 username kamali1 107770 mac 107770 bytes_out 0 107770 bytes_in 0 107770 station_ip 5.120.28.157 107770 port 18 107770 unique_id port 107772 username mirzaei 107772 kill_reason Another user logged on this global unique id 107772 mac 107772 bytes_out 0 107772 bytes_in 0 107772 station_ip 5.119.163.29 107772 port 22 107772 unique_id port 107787 username zare 107787 mac 107787 bytes_out 0 107787 bytes_in 0 107787 station_ip 37.27.35.154 107787 port 21 107787 unique_id port 107787 remote_ip 10.8.0.18 107788 username zare 107788 mac 107788 bytes_out 0 107788 bytes_in 0 107788 station_ip 37.27.35.154 107788 port 21 107788 unique_id port 107788 remote_ip 10.8.0.18 107789 username ahmadipour 107789 unique_id port 107789 terminate_cause Lost-Carrier 107789 bytes_out 613459 107789 bytes_in 6995318 107789 station_ip 113.203.83.255 107789 port 15728965 107789 nas_port_type Virtual 107789 remote_ip 5.5.5.222 107790 username zare 107790 mac 107790 bytes_out 21947 107790 bytes_in 42379 107790 station_ip 37.27.35.154 107790 port 21 107790 unique_id port 107790 remote_ip 10.8.0.18 107793 username zare 107793 mac 107793 bytes_out 0 107793 bytes_in 0 107793 station_ip 37.27.35.154 107793 port 21 107793 unique_id port 107793 remote_ip 10.8.0.18 107795 username zare 107795 mac 107795 bytes_out 18680 107795 bytes_in 48750 107795 station_ip 37.27.35.154 107795 port 21 107795 unique_id port 107795 remote_ip 10.8.0.18 107797 username tahmasebi 107797 kill_reason Another user logged on this global unique id 107797 mac 107797 bytes_out 0 107797 bytes_in 0 107797 station_ip 5.120.109.220 107797 port 15 107797 unique_id port 107797 remote_ip 10.8.0.42 107801 username bcboard 107801 unique_id port 107801 terminate_cause Lost-Carrier 107801 bytes_out 2005251 107801 bytes_in 9544570 107801 station_ip 37.129.169.213 107801 port 15728964 107801 nas_port_type Virtual 107801 remote_ip 5.5.5.220 107802 username musa 107802 mac 107802 bytes_out 0 107802 bytes_in 0 107802 station_ip 89.199.65.246 107802 port 16 107802 unique_id port 107802 remote_ip 10.8.0.6 107808 username tahmasebi 107808 kill_reason Another user logged on this global unique id 107808 mac 107808 bytes_out 0 107808 bytes_in 0 107808 station_ip 5.120.109.220 107808 port 15 107808 unique_id port 107814 username mirzaei 107814 mac 107814 bytes_out 0 107814 bytes_in 0 107814 station_ip 5.119.163.29 107814 port 22 107814 unique_id port 107818 username aminvpn 107818 mac 107818 bytes_out 0 107818 bytes_in 0 107818 station_ip 5.119.89.251 107818 port 17 107818 unique_id port 107818 remote_ip 10.8.0.14 107822 username aminvpn 107822 mac 107822 bytes_out 0 107822 bytes_in 0 107791 remote_ip 10.8.0.18 107792 username zare 107792 mac 107792 bytes_out 0 107792 bytes_in 0 107792 station_ip 37.27.35.154 107792 port 21 107792 unique_id port 107792 remote_ip 10.8.0.18 107796 username zare 107796 mac 107796 bytes_out 16997 107796 bytes_in 27004 107796 station_ip 37.27.35.154 107796 port 21 107796 unique_id port 107796 remote_ip 10.8.0.18 107799 username rezasekonji 107799 mac 107799 bytes_out 0 107799 bytes_in 0 107799 station_ip 37.129.25.197 107799 port 23 107799 unique_id port 107799 remote_ip 10.8.0.130 107804 username zare 107804 kill_reason Another user logged on this global unique id 107804 mac 107804 bytes_out 0 107804 bytes_in 0 107804 station_ip 37.27.35.154 107804 port 21 107804 unique_id port 107804 remote_ip 10.8.0.18 107805 username farhad1 107805 kill_reason Another user logged on this global unique id 107805 mac 107805 bytes_out 0 107805 bytes_in 0 107805 station_ip 5.119.134.184 107805 port 18 107805 unique_id port 107805 remote_ip 10.8.0.26 107809 username aminvpn 107809 mac 107809 bytes_out 0 107809 bytes_in 0 107809 station_ip 5.119.89.251 107809 port 17 107809 unique_id port 107810 username aminvpn 107810 mac 107810 bytes_out 0 107810 bytes_in 0 107810 station_ip 5.119.89.251 107810 port 16 107810 unique_id port 107810 remote_ip 10.8.0.14 107812 username tahmasebi 107812 kill_reason Another user logged on this global unique id 107812 mac 107812 bytes_out 0 107812 bytes_in 0 107812 station_ip 5.120.109.220 107812 port 15 107812 unique_id port 107813 username bcboard 107813 unique_id port 107813 terminate_cause User-Request 107813 bytes_out 226444 107813 bytes_in 28286 107813 station_ip 37.129.169.213 107813 port 15728968 107813 nas_port_type Virtual 107813 remote_ip 5.5.5.218 107815 username aminvpn 107815 mac 107815 bytes_out 0 107815 bytes_in 0 107815 station_ip 5.119.89.251 107815 port 17 107815 unique_id port 107815 remote_ip 10.8.0.14 107816 username aminvpn 107816 mac 107816 bytes_out 0 107816 bytes_in 0 107816 station_ip 5.119.89.251 107816 port 17 107816 unique_id port 107816 remote_ip 10.8.0.14 107817 username aminvpn 107817 mac 107817 bytes_out 0 107817 bytes_in 0 107817 station_ip 5.119.89.251 107817 port 17 107817 unique_id port 107817 remote_ip 10.8.0.14 107820 username aminvpn 107820 mac 107820 bytes_out 0 107820 bytes_in 0 107820 station_ip 5.119.89.251 107820 port 17 107820 unique_id port 107820 remote_ip 10.8.0.14 107823 username tahmasebi 107823 kill_reason Another user logged on this global unique id 107823 mac 107823 bytes_out 0 107823 bytes_in 0 107823 station_ip 5.120.109.220 107823 port 15 107823 unique_id port 107826 username aminvpn 107826 mac 107826 bytes_out 0 107826 bytes_in 0 107826 station_ip 5.119.89.251 107826 port 16 107826 unique_id port 107826 remote_ip 10.8.0.14 107827 username aminvpn 107827 mac 107827 bytes_out 0 107827 bytes_in 0 107827 station_ip 5.119.89.251 107827 port 16 107827 unique_id port 107827 remote_ip 10.8.0.14 107829 username tahmasebi 107829 kill_reason Another user logged on this global unique id 107829 mac 107829 bytes_out 0 107829 bytes_in 0 107829 station_ip 5.120.109.220 107829 port 15 107829 unique_id port 107833 username zare 107833 kill_reason Another user logged on this global unique id 107833 mac 107833 bytes_out 0 107833 bytes_in 0 107833 station_ip 37.27.35.154 107833 port 21 107833 unique_id port 107836 username aminvpn 107836 mac 107836 bytes_out 0 107836 bytes_in 0 107836 station_ip 5.119.89.251 107836 port 9 107794 mac 107794 bytes_out 0 107794 bytes_in 0 107794 station_ip 5.119.89.251 107794 port 17 107794 unique_id port 107794 remote_ip 10.8.0.14 107798 username mohammadmahdi 107798 mac 107798 bytes_out 0 107798 bytes_in 0 107798 station_ip 5.120.28.207 107798 port 23 107798 unique_id port 107798 remote_ip 10.8.0.54 107800 username kordestani 107800 kill_reason Another user logged on this global unique id 107800 mac 107800 bytes_out 0 107800 bytes_in 0 107800 station_ip 151.235.96.196 107800 port 25 107800 unique_id port 107800 remote_ip 10.8.0.134 107803 username kordestani 107803 mac 107803 bytes_out 0 107803 bytes_in 0 107803 station_ip 151.235.96.196 107803 port 25 107803 unique_id port 107806 username farhad1 107806 mac 107806 bytes_out 0 107806 bytes_in 0 107806 station_ip 5.119.134.184 107806 port 18 107806 unique_id port 107807 username aminvpn 107807 kill_reason Another user logged on this global unique id 107807 mac 107807 bytes_out 0 107807 bytes_in 0 107807 station_ip 5.119.89.251 107807 port 17 107807 unique_id port 107811 username bcboard 107811 unique_id port 107811 terminate_cause User-Request 107811 bytes_out 424615 107811 bytes_in 388473 107811 station_ip 37.129.169.213 107811 port 15728966 107811 nas_port_type Virtual 107811 remote_ip 5.5.5.223 107819 username alirr 107819 unique_id port 107819 terminate_cause User-Request 107819 bytes_out 26158878 107819 bytes_in 409019744 107819 station_ip 86.57.61.152 107819 port 15728961 107819 nas_port_type Virtual 107819 remote_ip 5.5.5.253 107821 username farhad1 107821 mac 107821 bytes_out 0 107821 bytes_in 0 107821 station_ip 5.119.134.184 107821 port 16 107821 unique_id port 107821 remote_ip 10.8.0.26 107824 username aminvpn 107824 mac 107824 bytes_out 0 107824 bytes_in 0 107824 station_ip 5.119.89.251 107824 port 16 107824 unique_id port 107824 remote_ip 10.8.0.14 107825 username aminvpn 107825 mac 107825 bytes_out 0 107825 bytes_in 0 107825 station_ip 5.119.89.251 107825 port 16 107825 unique_id port 107825 remote_ip 10.8.0.14 107831 username aminvpn 107831 mac 107831 bytes_out 0 107831 bytes_in 0 107831 station_ip 5.119.89.251 107831 port 5 107831 unique_id port 107831 remote_ip 10.8.1.6 107832 username aminvpn 107832 kill_reason Maximum check online fails reached 107832 mac 107832 bytes_out 0 107832 bytes_in 0 107832 station_ip 5.119.89.251 107832 port 5 107832 unique_id port 107835 username aminvpn 107835 mac 107835 bytes_out 0 107835 bytes_in 0 107835 station_ip 5.119.89.251 107835 port 9 107835 unique_id port 107835 remote_ip 10.8.1.6 107844 username zare 107844 kill_reason Another user logged on this global unique id 107844 mac 107844 bytes_out 0 107844 bytes_in 0 107844 station_ip 37.27.35.154 107844 port 21 107844 unique_id port 107845 username bcboard 107845 unique_id port 107845 terminate_cause Lost-Carrier 107845 bytes_out 575115 107845 bytes_in 10309861 107845 station_ip 37.129.169.213 107845 port 15728971 107845 nas_port_type Virtual 107845 remote_ip 5.5.5.214 107852 username aminvpn 107852 unique_id port 107852 terminate_cause User-Request 107852 bytes_out 9390047 107852 bytes_in 35541301 107852 station_ip 5.119.89.251 107852 port 15728969 107852 nas_port_type Virtual 107852 remote_ip 5.5.5.225 107861 username zare 107861 kill_reason Another user logged on this global unique id 107861 mac 107861 bytes_out 0 107861 bytes_in 0 107861 station_ip 37.27.35.154 107861 port 21 107861 unique_id port 107867 username alirr 107867 unique_id port 107867 terminate_cause Lost-Carrier 107867 bytes_out 3862175 107867 bytes_in 19248470 107822 station_ip 5.119.89.251 107822 port 16 107822 unique_id port 107822 remote_ip 10.8.0.14 107828 username aminvpn 107828 mac 107828 bytes_out 0 107828 bytes_in 0 107828 station_ip 5.119.89.251 107828 port 16 107828 unique_id port 107828 remote_ip 10.8.0.14 107830 username alirr 107830 unique_id port 107830 terminate_cause User-Request 107830 bytes_out 110417024 107830 bytes_in 20912880 107830 station_ip 31.56.221.211 107830 port 15728967 107830 nas_port_type Virtual 107830 remote_ip 5.5.5.255 107834 username aminvpn 107834 mac 107834 bytes_out 0 107834 bytes_in 0 107834 station_ip 5.119.89.251 107834 port 9 107834 unique_id port 107834 remote_ip 10.8.1.6 107837 username aminvpn 107837 mac 107837 bytes_out 0 107837 bytes_in 0 107837 station_ip 5.119.89.251 107837 port 9 107837 unique_id port 107837 remote_ip 10.8.1.6 107838 username zare 107838 kill_reason Another user logged on this global unique id 107838 mac 107838 bytes_out 0 107838 bytes_in 0 107838 station_ip 37.27.35.154 107838 port 21 107838 unique_id port 107840 username aminvpn 107840 mac 107840 bytes_out 0 107840 bytes_in 0 107840 station_ip 5.119.89.251 107840 port 10 107840 unique_id port 107840 remote_ip 10.8.1.6 107841 username aminvpn 107841 kill_reason Maximum check online fails reached 107841 mac 107841 bytes_out 0 107841 bytes_in 0 107841 station_ip 5.119.89.251 107841 port 9 107841 unique_id port 107843 username aminvpn 107843 mac 107843 bytes_out 0 107843 bytes_in 0 107843 station_ip 5.119.89.251 107843 port 10 107843 unique_id port 107843 remote_ip 10.8.1.6 107846 username abravesh 107846 unique_id port 107846 terminate_cause Lost-Carrier 107846 bytes_out 317242 107846 bytes_in 417724 107846 station_ip 5.119.144.9 107846 port 15728970 107846 nas_port_type Virtual 107846 remote_ip 5.5.5.254 107848 username tahmasebi 107848 kill_reason Another user logged on this global unique id 107848 mac 107848 bytes_out 0 107848 bytes_in 0 107848 station_ip 5.120.109.220 107848 port 15 107848 unique_id port 107849 username aminvpn 107849 mac 107849 bytes_out 0 107849 bytes_in 0 107849 station_ip 5.119.89.251 107849 port 17 107849 unique_id port 107849 remote_ip 10.8.0.14 107851 username zare 107851 kill_reason Another user logged on this global unique id 107851 mac 107851 bytes_out 0 107851 bytes_in 0 107851 station_ip 37.27.35.154 107851 port 21 107851 unique_id port 107853 username aminvpn 107853 mac 107853 bytes_out 0 107853 bytes_in 0 107853 station_ip 5.119.89.251 107853 port 10 107853 unique_id port 107853 remote_ip 10.8.1.6 107854 username aminvpn 107854 mac 107854 bytes_out 0 107854 bytes_in 0 107854 station_ip 5.119.89.251 107854 port 10 107854 unique_id port 107854 remote_ip 10.8.1.6 107856 username zare 107856 kill_reason Another user logged on this global unique id 107856 mac 107856 bytes_out 0 107856 bytes_in 0 107856 station_ip 37.27.35.154 107856 port 21 107856 unique_id port 107857 username tahmasebi 107857 kill_reason Another user logged on this global unique id 107857 mac 107857 bytes_out 0 107857 bytes_in 0 107857 station_ip 5.120.109.220 107857 port 15 107857 unique_id port 107860 username aminvpn 107860 mac 107860 bytes_out 0 107860 bytes_in 0 107860 station_ip 5.119.89.251 107860 port 10 107860 unique_id port 107860 remote_ip 10.8.1.6 107868 username aminvpn 107868 mac 107868 bytes_out 0 107868 bytes_in 0 107868 station_ip 5.119.89.251 107868 port 22 107868 unique_id port 107868 remote_ip 10.8.0.14 107869 username aminvpn 107869 mac 107869 bytes_out 0 107836 unique_id port 107836 remote_ip 10.8.1.6 107839 username aminvpn 107839 mac 107839 bytes_out 0 107839 bytes_in 0 107839 station_ip 5.119.89.251 107839 port 10 107839 unique_id port 107839 remote_ip 10.8.1.6 107842 username aminvpn 107842 mac 107842 bytes_out 0 107842 bytes_in 0 107842 station_ip 5.119.89.251 107842 port 10 107842 unique_id port 107842 remote_ip 10.8.1.6 107847 username aminvpn 107847 mac 107847 bytes_out 0 107847 bytes_in 0 107847 station_ip 5.119.89.251 107847 port 17 107847 unique_id port 107847 remote_ip 10.8.0.14 107850 username aminvpn 107850 mac 107850 bytes_out 0 107850 bytes_in 0 107850 station_ip 5.119.89.251 107850 port 17 107850 unique_id port 107850 remote_ip 10.8.0.14 107855 username aminvpn 107855 kill_reason Maximum check online fails reached 107855 mac 107855 bytes_out 0 107855 bytes_in 0 107855 station_ip 5.119.89.251 107855 port 17 107855 unique_id port 107858 username zare 107858 kill_reason Another user logged on this global unique id 107858 mac 107858 bytes_out 0 107858 bytes_in 0 107858 station_ip 37.27.35.154 107858 port 21 107858 unique_id port 107859 username aminvpn 107859 mac 107859 bytes_out 0 107859 bytes_in 0 107859 station_ip 5.119.89.251 107859 port 10 107859 unique_id port 107859 remote_ip 10.8.1.6 107862 username zare 107862 kill_reason Another user logged on this global unique id 107862 mac 107862 bytes_out 0 107862 bytes_in 0 107862 station_ip 37.27.35.154 107862 port 21 107862 unique_id port 107863 username aminvpn 107863 mac 107863 bytes_out 0 107863 bytes_in 0 107863 station_ip 5.119.89.251 107863 port 22 107863 unique_id port 107863 remote_ip 10.8.0.14 107864 username aminvpn 107864 mac 107864 bytes_out 0 107864 bytes_in 0 107864 station_ip 5.119.89.251 107864 port 22 107864 unique_id port 107864 remote_ip 10.8.0.14 107865 username aminvpn 107865 mac 107865 bytes_out 0 107865 bytes_in 0 107865 station_ip 5.119.89.251 107865 port 22 107865 unique_id port 107865 remote_ip 10.8.0.14 107866 username aminvpn 107866 mac 107866 bytes_out 0 107866 bytes_in 0 107866 station_ip 5.119.89.251 107866 port 22 107866 unique_id port 107866 remote_ip 10.8.0.14 107873 username aminvpn 107873 mac 107873 bytes_out 0 107873 bytes_in 0 107873 station_ip 5.119.89.251 107873 port 22 107873 unique_id port 107873 remote_ip 10.8.0.14 107874 username aminvpn 107874 mac 107874 bytes_out 0 107874 bytes_in 0 107874 station_ip 5.119.89.251 107874 port 22 107874 unique_id port 107874 remote_ip 10.8.0.14 107877 username aminvpn 107877 mac 107877 bytes_out 0 107877 bytes_in 0 107877 station_ip 5.119.89.251 107877 port 22 107877 unique_id port 107877 remote_ip 10.8.0.14 107878 username aminvpn 107878 mac 107878 bytes_out 0 107878 bytes_in 0 107878 station_ip 5.119.89.251 107878 port 22 107878 unique_id port 107878 remote_ip 10.8.0.14 107879 username aminvpn 107879 mac 107879 bytes_out 0 107879 bytes_in 0 107879 station_ip 5.119.89.251 107879 port 22 107879 unique_id port 107879 remote_ip 10.8.0.14 107883 username aminvpn 107883 mac 107883 bytes_out 0 107883 bytes_in 0 107883 station_ip 5.119.89.251 107883 port 22 107883 unique_id port 107883 remote_ip 10.8.0.14 107884 username aminvpn 107884 mac 107884 bytes_out 0 107884 bytes_in 0 107884 station_ip 5.119.89.251 107884 port 22 107884 unique_id port 107884 remote_ip 10.8.0.14 107888 username aminvpn 107888 mac 107888 bytes_out 0 107888 bytes_in 0 107867 station_ip 31.56.221.211 107867 port 15728972 107867 nas_port_type Virtual 107867 remote_ip 5.5.5.216 107871 username tahmasebi 107871 kill_reason Another user logged on this global unique id 107871 mac 107871 bytes_out 0 107871 bytes_in 0 107871 station_ip 5.120.109.220 107871 port 15 107871 unique_id port 107872 username aminvpn 107872 mac 107872 bytes_out 0 107872 bytes_in 0 107872 station_ip 5.119.89.251 107872 port 22 107872 unique_id port 107872 remote_ip 10.8.0.14 107875 username aminvpn 107875 mac 107875 bytes_out 0 107875 bytes_in 0 107875 station_ip 5.119.89.251 107875 port 22 107875 unique_id port 107875 remote_ip 10.8.0.14 107876 username aminvpn 107876 mac 107876 bytes_out 0 107876 bytes_in 0 107876 station_ip 5.119.89.251 107876 port 22 107876 unique_id port 107876 remote_ip 10.8.0.14 107881 username zare 107881 kill_reason Another user logged on this global unique id 107881 mac 107881 bytes_out 0 107881 bytes_in 0 107881 station_ip 37.27.35.154 107881 port 21 107881 unique_id port 107882 username aminvpn 107882 mac 107882 bytes_out 0 107882 bytes_in 0 107882 station_ip 5.119.89.251 107882 port 22 107882 unique_id port 107882 remote_ip 10.8.0.14 107886 username aminvpn 107886 mac 107886 bytes_out 0 107886 bytes_in 0 107886 station_ip 5.119.89.251 107886 port 16 107886 unique_id port 107886 remote_ip 10.8.0.14 107887 username aminvpn 107887 mac 107887 bytes_out 0 107887 bytes_in 0 107887 station_ip 5.119.89.251 107887 port 16 107887 unique_id port 107887 remote_ip 10.8.0.14 107893 username zare 107893 kill_reason Another user logged on this global unique id 107893 mac 107893 bytes_out 0 107893 bytes_in 0 107893 station_ip 37.27.35.154 107893 port 21 107893 unique_id port 107901 username houshang 107901 mac 107901 bytes_out 0 107901 bytes_in 0 107901 station_ip 5.120.60.35 107901 port 16 107901 unique_id port 107901 remote_ip 10.8.0.22 107906 username mehdizare 107906 mac 107906 bytes_out 22916 107906 bytes_in 31425 107906 station_ip 5.119.174.144 107906 port 6 107906 unique_id port 107906 remote_ip 10.8.1.42 107907 username mosi 107907 mac 107907 bytes_out 0 107907 bytes_in 0 107907 station_ip 5.134.173.45 107907 port 16 107907 unique_id port 107907 remote_ip 10.8.0.138 107908 username abravesh 107908 unique_id port 107908 terminate_cause Lost-Carrier 107908 bytes_out 12631063 107908 bytes_in 289156261 107908 station_ip 5.119.135.117 107908 port 15728980 107908 nas_port_type Virtual 107908 remote_ip 5.5.5.195 107909 username houshang 107909 mac 107909 bytes_out 0 107909 bytes_in 0 107909 station_ip 5.120.60.35 107909 port 16 107909 unique_id port 107909 remote_ip 10.8.0.22 107912 username mohammadjavad 107912 kill_reason Another user logged on this global unique id 107912 mac 107912 bytes_out 0 107912 bytes_in 0 107912 station_ip 83.123.178.11 107912 port 18 107912 unique_id port 107915 username mohammadjavad 107915 kill_reason Another user logged on this global unique id 107915 mac 107915 bytes_out 0 107915 bytes_in 0 107915 station_ip 83.123.178.11 107915 port 18 107915 unique_id port 107916 username houshang 107916 mac 107916 bytes_out 0 107916 bytes_in 0 107916 station_ip 5.120.60.35 107916 port 22 107916 unique_id port 107916 remote_ip 10.8.0.22 107917 username hamid.e 107917 unique_id port 107917 terminate_cause User-Request 107917 bytes_out 2051722 107917 bytes_in 10060354 107917 station_ip 37.27.13.238 107917 port 15728984 107917 nas_port_type Virtual 107917 remote_ip 5.5.5.197 107919 username sedighe 107919 mac 107869 bytes_in 0 107869 station_ip 5.119.89.251 107869 port 22 107869 unique_id port 107869 remote_ip 10.8.0.14 107870 username aminvpn 107870 mac 107870 bytes_out 0 107870 bytes_in 0 107870 station_ip 5.119.89.251 107870 port 22 107870 unique_id port 107870 remote_ip 10.8.0.14 107880 username aminvpn 107880 mac 107880 bytes_out 0 107880 bytes_in 0 107880 station_ip 5.119.89.251 107880 port 22 107880 unique_id port 107880 remote_ip 10.8.0.14 107885 username naeimeh 107885 mac 107885 bytes_out 4766535 107885 bytes_in 35397862 107885 station_ip 113.203.35.53 107885 port 16 107885 unique_id port 107885 remote_ip 10.8.0.78 107889 username aminvpn 107889 mac 107889 bytes_out 0 107889 bytes_in 0 107889 station_ip 5.119.89.251 107889 port 16 107889 unique_id port 107889 remote_ip 10.8.0.14 107894 username bcboard 107894 unique_id port 107894 terminate_cause User-Request 107894 bytes_out 168470 107894 bytes_in 1734346 107894 station_ip 83.122.120.43 107894 port 15728973 107894 nas_port_type Virtual 107894 remote_ip 5.5.5.227 107897 username bcboard 107897 unique_id port 107897 terminate_cause User-Request 107897 bytes_out 47118 107897 bytes_in 149404 107897 station_ip 83.122.120.43 107897 port 15728976 107897 nas_port_type Virtual 107897 remote_ip 5.5.5.239 107899 username bcboard 107899 unique_id port 107899 terminate_cause User-Request 107899 bytes_out 28471 107899 bytes_in 51384 107899 station_ip 83.122.120.43 107899 port 15728978 107899 nas_port_type Virtual 107899 remote_ip 5.5.5.255 107904 username mosi 107904 mac 107904 bytes_out 0 107904 bytes_in 0 107904 station_ip 5.134.173.45 107904 port 16 107904 unique_id port 107910 username sedighe 107910 mac 107910 bytes_out 0 107910 bytes_in 0 107910 station_ip 83.123.192.29 107910 port 16 107910 unique_id port 107910 remote_ip 10.8.0.146 107913 username avaanna 107913 mac 107913 bytes_out 314601 107913 bytes_in 835665 107913 station_ip 83.122.186.71 107913 port 10 107913 unique_id port 107913 remote_ip 10.8.1.46 107922 username sedighe 107922 mac 107922 bytes_out 0 107922 bytes_in 0 107922 station_ip 83.122.85.140 107922 port 22 107922 unique_id port 107922 remote_ip 10.8.0.146 107923 username mohammadjavad 107923 mac 107923 bytes_out 0 107923 bytes_in 0 107923 station_ip 83.123.178.11 107923 port 18 107923 unique_id port 107925 username sedighe 107925 mac 107925 bytes_out 0 107925 bytes_in 0 107925 station_ip 83.123.235.62 107925 port 18 107925 unique_id port 107925 remote_ip 10.8.0.146 107927 username mahdiyehalizadeh 107927 mac 107927 bytes_out 529845 107927 bytes_in 9036125 107927 station_ip 83.122.134.46 107927 port 18 107927 unique_id port 107927 remote_ip 10.8.0.82 107929 username mehdizare 107929 kill_reason Another user logged on this global unique id 107929 mac 107929 bytes_out 0 107929 bytes_in 0 107929 station_ip 5.119.174.144 107929 port 21 107929 unique_id port 107929 remote_ip 10.8.0.90 107935 username malekpoir 107935 kill_reason Another user logged on this global unique id 107935 mac 107935 bytes_out 0 107935 bytes_in 0 107935 station_ip 5.119.29.241 107935 port 23 107935 unique_id port 107935 remote_ip 10.8.0.58 107941 username khalili 107941 mac 107941 bytes_out 0 107941 bytes_in 0 107941 station_ip 5.119.89.178 107941 port 10 107941 unique_id port 107941 remote_ip 10.8.1.18 107942 username mehdizare 107942 mac 107942 bytes_out 33961 107942 bytes_in 44988 107942 station_ip 5.119.174.144 107942 port 6 107942 unique_id port 107942 remote_ip 10.8.1.42 107944 username malekpoir 107888 station_ip 5.119.89.251 107888 port 16 107888 unique_id port 107888 remote_ip 10.8.0.14 107890 username aminvpn 107890 mac 107890 bytes_out 0 107890 bytes_in 0 107890 station_ip 5.119.89.251 107890 port 16 107890 unique_id port 107890 remote_ip 10.8.0.14 107891 username aminvpn 107891 mac 107891 bytes_out 0 107891 bytes_in 0 107891 station_ip 5.119.89.251 107891 port 16 107891 unique_id port 107891 remote_ip 10.8.0.14 107892 username sedighe 107892 mac 107892 bytes_out 2364124 107892 bytes_in 25772921 107892 station_ip 83.123.39.237 107892 port 18 107892 unique_id port 107892 remote_ip 10.8.0.146 107895 username bcboard 107895 unique_id port 107895 terminate_cause User-Request 107895 bytes_out 30149 107895 bytes_in 105556 107895 station_ip 83.122.120.43 107895 port 15728974 107895 nas_port_type Virtual 107895 remote_ip 5.5.5.230 107896 username bcboard 107896 unique_id port 107896 terminate_cause User-Request 107896 bytes_out 75628 107896 bytes_in 514842 107896 station_ip 83.122.120.43 107896 port 15728975 107896 nas_port_type Virtual 107896 remote_ip 5.5.5.231 107898 username bcboard 107898 unique_id port 107898 terminate_cause User-Request 107898 bytes_out 185821 107898 bytes_in 869238 107898 station_ip 83.122.120.43 107898 port 15728977 107898 nas_port_type Virtual 107898 remote_ip 5.5.5.255 107900 username bcboard 107900 unique_id port 107900 terminate_cause User-Request 107900 bytes_out 10880 107900 bytes_in 7423 107900 station_ip 83.122.120.43 107900 port 15728979 107900 nas_port_type Virtual 107900 remote_ip 5.5.5.255 107902 username zare 107902 mac 107902 bytes_out 0 107902 bytes_in 0 107902 station_ip 37.27.35.154 107902 port 21 107902 unique_id port 107903 username mosi 107903 kill_reason Another user logged on this global unique id 107903 mac 107903 bytes_out 0 107903 bytes_in 0 107903 station_ip 5.134.173.45 107903 port 16 107903 unique_id port 107903 remote_ip 10.8.0.138 107905 username mehdizare 107905 mac 107905 bytes_out 2468802 107905 bytes_in 18722614 107905 station_ip 5.119.174.144 107905 port 6 107905 unique_id port 107905 remote_ip 10.8.1.42 107911 username mohammadjavad 107911 kill_reason Another user logged on this global unique id 107911 mac 107911 bytes_out 0 107911 bytes_in 0 107911 station_ip 83.123.178.11 107911 port 18 107911 unique_id port 107911 remote_ip 10.8.0.142 107914 username mohammadjavad 107914 kill_reason Another user logged on this global unique id 107914 mac 107914 bytes_out 0 107914 bytes_in 0 107914 station_ip 83.123.178.11 107914 port 18 107914 unique_id port 107918 username houshang 107918 mac 107918 bytes_out 0 107918 bytes_in 0 107918 station_ip 5.120.60.35 107918 port 22 107918 unique_id port 107918 remote_ip 10.8.0.22 107926 username alirr 107926 unique_id port 107926 terminate_cause User-Request 107926 bytes_out 53766387 107926 bytes_in 110053418 107926 station_ip 92.114.73.106 107926 port 15728986 107926 nas_port_type Virtual 107926 remote_ip 5.5.5.201 107933 username avaanna 107933 mac 107933 bytes_out 68955 107933 bytes_in 222465 107933 station_ip 83.122.186.71 107933 port 16 107933 unique_id port 107933 remote_ip 10.8.0.98 107940 username avaanna 107940 mac 107940 bytes_out 78324 107940 bytes_in 148255 107940 station_ip 83.122.186.71 107940 port 10 107940 unique_id port 107940 remote_ip 10.8.1.46 107946 username forozande 107946 mac 107946 bytes_out 384704 107946 bytes_in 3619320 107946 station_ip 37.129.25.198 107946 port 21 107946 unique_id port 107946 remote_ip 10.8.0.74 107949 username sedighe 107949 mac 107949 bytes_out 0 107949 bytes_in 0 107919 bytes_out 198466 107919 bytes_in 242166 107919 station_ip 83.123.192.29 107919 port 21 107919 unique_id port 107919 remote_ip 10.8.0.146 107920 username houshang 107920 mac 107920 bytes_out 0 107920 bytes_in 0 107920 station_ip 5.120.60.35 107920 port 21 107920 unique_id port 107920 remote_ip 10.8.0.22 107921 username alirr 107921 unique_id port 107921 terminate_cause Lost-Carrier 107921 bytes_out 34659 107921 bytes_in 82986 107921 station_ip 92.114.73.106 107921 port 15728985 107921 nas_port_type Virtual 107921 remote_ip 5.5.5.199 107924 username mehdizare 107924 mac 107924 bytes_out 0 107924 bytes_in 0 107924 station_ip 5.119.174.144 107924 port 6 107924 unique_id port 107924 remote_ip 10.8.1.42 107928 username rezasekonji 107928 mac 107928 bytes_out 0 107928 bytes_in 0 107928 station_ip 113.203.62.100 107928 port 18 107928 unique_id port 107928 remote_ip 10.8.0.130 107930 username alirr 107930 unique_id port 107930 terminate_cause User-Request 107930 bytes_out 212735 107930 bytes_in 3327839 107930 station_ip 92.114.73.106 107930 port 15728987 107930 nas_port_type Virtual 107930 remote_ip 5.5.5.202 107931 username avaanna 107931 mac 107931 bytes_out 724443 107931 bytes_in 5135178 107931 station_ip 83.122.186.71 107931 port 16 107931 unique_id port 107931 remote_ip 10.8.0.98 107932 username forozande 107932 mac 107932 bytes_out 3299314 107932 bytes_in 45836273 107932 station_ip 83.122.38.208 107932 port 22 107932 unique_id port 107932 remote_ip 10.8.0.74 107934 username mehdizare 107934 mac 107934 bytes_out 0 107934 bytes_in 0 107934 station_ip 5.119.174.144 107934 port 21 107934 unique_id port 107936 username forozande 107936 mac 107936 bytes_out 165059 107936 bytes_in 1064611 107936 station_ip 113.203.25.66 107936 port 22 107936 unique_id port 107936 remote_ip 10.8.0.74 107937 username malekpoir 107937 kill_reason Another user logged on this global unique id 107937 mac 107937 bytes_out 0 107937 bytes_in 0 107937 station_ip 5.119.29.241 107937 port 23 107937 unique_id port 107938 username khalili 107938 mac 107938 bytes_out 0 107938 bytes_in 0 107938 station_ip 5.119.89.178 107938 port 8 107938 unique_id port 107938 remote_ip 10.8.1.18 107939 username khalili 107939 mac 107939 bytes_out 5840 107939 bytes_in 12657 107939 station_ip 5.119.89.178 107939 port 8 107939 unique_id port 107939 remote_ip 10.8.1.18 107943 username kordestani 107943 mac 107943 bytes_out 429242 107943 bytes_in 1547307 107943 station_ip 151.235.112.213 107943 port 21 107943 unique_id port 107943 remote_ip 10.8.0.134 107945 username kordestani 107945 mac 107945 bytes_out 746515 107945 bytes_in 8898934 107945 station_ip 151.235.112.213 107945 port 22 107945 unique_id port 107945 remote_ip 10.8.0.134 107947 username alipour 107947 mac 107947 bytes_out 0 107947 bytes_in 0 107947 station_ip 113.203.78.117 107947 port 24 107947 unique_id port 107952 username amir 107952 mac 107952 bytes_out 206791 107952 bytes_in 1424525 107952 station_ip 46.225.213.89 107952 port 23 107952 unique_id port 107952 remote_ip 10.8.0.50 107955 username askari 107955 kill_reason Relative expiration date has reached 107955 mac 107955 bytes_out 0 107955 bytes_in 0 107955 station_ip 5.119.24.126 107955 port 27 107955 unique_id port 107958 username malekpoir 107958 mac 107958 bytes_out 0 107958 bytes_in 0 107958 station_ip 5.119.29.241 107958 port 27 107958 unique_id port 107958 remote_ip 10.8.0.58 107962 username malekpoir 107962 mac 107962 bytes_out 10715 107944 kill_reason Another user logged on this global unique id 107944 mac 107944 bytes_out 0 107944 bytes_in 0 107944 station_ip 5.119.29.241 107944 port 23 107944 unique_id port 107948 username alireza 107948 unique_id port 107948 terminate_cause Lost-Carrier 107948 bytes_out 413420 107948 bytes_in 10646436 107948 station_ip 5.120.73.139 107948 port 15728988 107948 nas_port_type Virtual 107948 remote_ip 5.5.5.203 107951 username forozande 107951 mac 107951 bytes_out 0 107951 bytes_in 0 107951 station_ip 37.129.209.135 107951 port 21 107951 unique_id port 107951 remote_ip 10.8.0.74 107953 username mehdizare 107953 mac 107953 bytes_out 1058967 107953 bytes_in 16755170 107953 station_ip 5.119.174.144 107953 port 16 107953 unique_id port 107953 remote_ip 10.8.0.90 107954 username mehdizare 107954 mac 107954 bytes_out 9202 107954 bytes_in 9534 107954 station_ip 5.119.174.144 107954 port 16 107954 unique_id port 107954 remote_ip 10.8.0.90 107957 username askari 107957 kill_reason Relative expiration date has reached 107957 mac 107957 bytes_out 0 107957 bytes_in 0 107957 station_ip 5.119.24.126 107957 port 22 107957 unique_id port 107959 username mehdizare 107959 mac 107959 bytes_out 13515 107959 bytes_in 35910 107959 station_ip 5.119.174.144 107959 port 16 107959 unique_id port 107959 remote_ip 10.8.0.90 107960 username alipour 107960 mac 107960 bytes_out 427068 107960 bytes_in 3728757 107960 station_ip 83.123.170.15 107960 port 25 107960 unique_id port 107960 remote_ip 10.8.0.102 107961 username mehdizare 107961 mac 107961 bytes_out 5621 107961 bytes_in 7745 107961 station_ip 5.119.174.144 107961 port 27 107961 unique_id port 107961 remote_ip 10.8.0.90 107964 username zare 107964 mac 107964 bytes_out 265081 107964 bytes_in 3426410 107964 station_ip 94.183.214.14 107964 port 21 107964 unique_id port 107964 remote_ip 10.8.0.18 107965 username mehdizare 107965 mac 107965 bytes_out 11629 107965 bytes_in 15500 107965 station_ip 5.119.174.144 107965 port 22 107965 unique_id port 107965 remote_ip 10.8.0.90 107966 username mehdizare 107966 mac 107966 bytes_out 8318 107966 bytes_in 11532 107966 station_ip 5.119.174.144 107966 port 27 107966 unique_id port 107966 remote_ip 10.8.0.90 107969 username forozande 107969 mac 107969 bytes_out 641895 107969 bytes_in 6283718 107969 station_ip 37.129.61.102 107969 port 26 107969 unique_id port 107969 remote_ip 10.8.0.74 107974 username mahdiyehalizadeh 107974 mac 107974 bytes_out 337774 107974 bytes_in 3271448 107974 station_ip 113.203.108.87 107974 port 16 107974 unique_id port 107974 remote_ip 10.8.0.82 107976 username alipour 107976 mac 107976 bytes_out 0 107976 bytes_in 0 107976 station_ip 83.123.170.15 107976 port 6 107976 unique_id port 107976 remote_ip 10.8.1.50 107977 username malekpoir 107977 mac 107977 bytes_out 2146260 107977 bytes_in 36712806 107977 station_ip 5.119.29.241 107977 port 25 107977 unique_id port 107977 remote_ip 10.8.0.58 107978 username aminvpn 107978 mac 107978 bytes_out 127422 107978 bytes_in 294937 107978 station_ip 37.129.154.17 107978 port 22 107978 unique_id port 107978 remote_ip 10.8.0.14 107989 username hashtadani3 107989 mac 107989 bytes_out 78437 107989 bytes_in 333701 107989 station_ip 37.129.140.245 107989 port 21 107989 unique_id port 107989 remote_ip 10.8.0.154 107990 username hashtadani3 107990 mac 107990 bytes_out 0 107990 bytes_in 0 107990 station_ip 37.129.140.245 107990 port 21 107990 unique_id port 107990 remote_ip 10.8.0.154 107949 station_ip 83.123.186.191 107949 port 22 107949 unique_id port 107949 remote_ip 10.8.0.146 107950 username malekpoir 107950 mac 107950 bytes_out 0 107950 bytes_in 0 107950 station_ip 5.119.29.241 107950 port 23 107950 unique_id port 107956 username malekpoir 107956 mac 107956 bytes_out 364189 107956 bytes_in 2957142 107956 station_ip 5.119.29.241 107956 port 22 107956 unique_id port 107956 remote_ip 10.8.0.58 107970 username mehdizare 107970 mac 107970 bytes_out 6270 107970 bytes_in 10181 107970 station_ip 5.119.174.144 107970 port 27 107970 unique_id port 107970 remote_ip 10.8.0.90 107972 username amir 107972 kill_reason Another user logged on this global unique id 107972 mac 107972 bytes_out 0 107972 bytes_in 0 107972 station_ip 46.225.213.89 107972 port 23 107972 unique_id port 107972 remote_ip 10.8.0.50 107973 username aminvpn 107973 mac 107973 bytes_out 0 107973 bytes_in 0 107973 station_ip 37.129.238.145 107973 port 22 107973 unique_id port 107973 remote_ip 10.8.0.14 107980 username avaanna 107980 mac 107980 bytes_out 0 107980 bytes_in 0 107980 station_ip 83.122.186.71 107980 port 8 107980 unique_id port 107980 remote_ip 10.8.1.46 107981 username hashtadani3 107981 mac 107981 bytes_out 101389 107981 bytes_in 1203188 107981 station_ip 37.129.140.245 107981 port 22 107981 unique_id port 107981 remote_ip 10.8.0.154 107982 username avaanna 107982 mac 107982 bytes_out 0 107982 bytes_in 0 107982 station_ip 83.122.186.71 107982 port 8 107982 unique_id port 107982 remote_ip 10.8.1.46 107985 username forozande 107985 kill_reason Another user logged on this global unique id 107985 mac 107985 bytes_out 0 107985 bytes_in 0 107985 station_ip 37.129.1.36 107985 port 25 107985 unique_id port 107985 remote_ip 10.8.0.74 107988 username mehdizare 107988 mac 107988 bytes_out 0 107988 bytes_in 0 107988 station_ip 5.119.174.144 107988 port 22 107988 unique_id port 107988 remote_ip 10.8.0.90 107995 username hashtadani3 107995 mac 107995 bytes_out 0 107995 bytes_in 0 107995 station_ip 37.129.140.245 107995 port 21 107995 unique_id port 107995 remote_ip 10.8.0.154 107996 username hashtadani3 107996 mac 107996 bytes_out 0 107996 bytes_in 0 107996 station_ip 37.129.140.245 107996 port 21 107996 unique_id port 107996 remote_ip 10.8.0.154 107997 username hashtadani3 107997 mac 107997 bytes_out 0 107997 bytes_in 0 107997 station_ip 5.202.59.196 107997 port 21 107997 unique_id port 107997 remote_ip 10.8.0.154 108000 username hashtadani3 108000 mac 108000 bytes_out 0 108000 bytes_in 0 108000 station_ip 5.202.59.196 108000 port 21 108000 unique_id port 108000 remote_ip 10.8.0.154 108003 username malekpoir 108003 mac 108003 bytes_out 496922 108003 bytes_in 4873418 108003 station_ip 5.119.29.241 108003 port 16 108003 unique_id port 108003 remote_ip 10.8.0.58 108004 username hashtadani3 108004 mac 108004 bytes_out 0 108004 bytes_in 0 108004 station_ip 5.202.59.196 108004 port 16 108004 unique_id port 108004 remote_ip 10.8.0.154 108006 username amir 108006 kill_reason Another user logged on this global unique id 108006 mac 108006 bytes_out 0 108006 bytes_in 0 108006 station_ip 46.225.213.89 108006 port 23 108006 unique_id port 108007 username mehdizare 108007 mac 108007 bytes_out 34016 108007 bytes_in 47184 108007 station_ip 5.119.174.144 108007 port 10 108007 unique_id port 108007 remote_ip 10.8.1.42 108008 username alipour 108008 mac 108008 bytes_out 60331 108008 bytes_in 418424 108008 station_ip 83.123.170.15 107962 bytes_in 11298 107962 station_ip 5.119.29.241 107962 port 22 107962 unique_id port 107962 remote_ip 10.8.0.58 107963 username mehdizare 107963 mac 107963 bytes_out 10347 107963 bytes_in 13806 107963 station_ip 5.119.174.144 107963 port 22 107963 unique_id port 107963 remote_ip 10.8.0.90 107967 username zare 107967 mac 107967 bytes_out 11678 107967 bytes_in 19788 107967 station_ip 94.183.214.14 107967 port 21 107967 unique_id port 107967 remote_ip 10.8.0.18 107968 username zare 107968 mac 107968 bytes_out 0 107968 bytes_in 0 107968 station_ip 94.183.214.14 107968 port 21 107968 unique_id port 107968 remote_ip 10.8.0.18 107971 username zare 107971 mac 107971 bytes_out 0 107971 bytes_in 0 107971 station_ip 94.183.214.14 107971 port 21 107971 unique_id port 107971 remote_ip 10.8.0.18 107975 username zare 107975 mac 107975 bytes_out 0 107975 bytes_in 0 107975 station_ip 94.183.214.14 107975 port 10 107975 unique_id port 107975 remote_ip 10.8.1.58 107979 username forozande 107979 mac 107979 bytes_out 273623 107979 bytes_in 2992358 107979 station_ip 83.122.232.61 107979 port 25 107979 unique_id port 107979 remote_ip 10.8.0.74 107983 username alirr 107983 unique_id port 107983 terminate_cause User-Request 107983 bytes_out 37348348 107983 bytes_in 910629741 107983 station_ip 86.57.36.147 107983 port 15728989 107983 nas_port_type Virtual 107983 remote_ip 5.5.5.209 107984 username hashtadani3 107984 mac 107984 bytes_out 17739 107984 bytes_in 34091 107984 station_ip 37.129.140.245 107984 port 22 107984 unique_id port 107984 remote_ip 10.8.0.154 107986 username forozande 107986 mac 107986 bytes_out 0 107986 bytes_in 0 107986 station_ip 37.129.1.36 107986 port 25 107986 unique_id port 107987 username mehdizare 107987 mac 107987 bytes_out 0 107987 bytes_in 0 107987 station_ip 5.119.174.144 107987 port 21 107987 unique_id port 107987 remote_ip 10.8.0.90 107992 username hashtadani3 107992 mac 107992 bytes_out 0 107992 bytes_in 0 107992 station_ip 37.129.140.245 107992 port 21 107992 unique_id port 107992 remote_ip 10.8.0.154 107994 username hashtadani3 107994 mac 107994 bytes_out 0 107994 bytes_in 0 107994 station_ip 37.129.140.245 107994 port 21 107994 unique_id port 107994 remote_ip 10.8.0.154 107998 username forozande 107998 mac 107998 bytes_out 0 107998 bytes_in 0 107998 station_ip 37.129.54.169 107998 port 25 107998 unique_id port 107998 remote_ip 10.8.0.74 108001 username mahdiyehalizadeh 108001 mac 108001 bytes_out 69524 108001 bytes_in 232429 108001 station_ip 83.123.25.28 108001 port 22 108001 unique_id port 108001 remote_ip 10.8.0.82 108005 username mirzaei 108005 mac 108005 bytes_out 0 108005 bytes_in 0 108005 station_ip 5.120.8.203 108005 port 18 108005 unique_id port 108005 remote_ip 10.8.0.66 108009 username hashtadani3 108009 mac 108009 bytes_out 0 108009 bytes_in 0 108009 station_ip 5.202.59.196 108009 port 16 108009 unique_id port 108009 remote_ip 10.8.0.154 108014 username avaanna 108014 mac 108014 bytes_out 92941 108014 bytes_in 140996 108014 station_ip 83.122.186.71 108014 port 8 108014 unique_id port 108014 remote_ip 10.8.1.46 108016 username hashtadani3 108016 mac 108016 bytes_out 0 108016 bytes_in 0 108016 station_ip 5.202.59.196 108016 port 25 108016 unique_id port 108016 remote_ip 10.8.0.154 108017 username zare 108017 mac 108017 bytes_out 792377 108017 bytes_in 5868174 108017 station_ip 94.183.214.14 108017 port 6 108017 unique_id port 107991 username hashtadani3 107991 mac 107991 bytes_out 0 107991 bytes_in 0 107991 station_ip 37.129.140.245 107991 port 11 107991 unique_id port 107991 remote_ip 10.8.1.94 107993 username hashtadani3 107993 mac 107993 bytes_out 0 107993 bytes_in 0 107993 station_ip 37.129.140.245 107993 port 25 107993 unique_id port 107993 remote_ip 10.8.0.154 107999 username hashtadani3 107999 mac 107999 bytes_out 0 107999 bytes_in 0 107999 station_ip 5.202.59.196 107999 port 21 107999 unique_id port 107999 remote_ip 10.8.0.154 108002 username alipour 108002 mac 108002 bytes_out 242828 108002 bytes_in 536723 108002 station_ip 83.123.170.15 108002 port 6 108002 unique_id port 108002 remote_ip 10.8.1.50 108010 username ahmadi 108010 unique_id port 108010 terminate_cause User-Request 108010 bytes_out 50584 108010 bytes_in 157456 108010 station_ip 37.129.49.35 108010 port 15728991 108010 nas_port_type Virtual 108010 remote_ip 5.5.5.211 108011 username hashtadani3 108011 mac 108011 bytes_out 40489 108011 bytes_in 323680 108011 station_ip 5.202.59.196 108011 port 6 108011 unique_id port 108011 remote_ip 10.8.1.94 108012 username hashtadani3 108012 mac 108012 bytes_out 0 108012 bytes_in 0 108012 station_ip 5.202.59.196 108012 port 16 108012 unique_id port 108012 remote_ip 10.8.0.154 108013 username mehdizare 108013 mac 108013 bytes_out 0 108013 bytes_in 0 108013 station_ip 5.119.174.144 108013 port 18 108013 unique_id port 108013 remote_ip 10.8.0.90 108018 username mehdizare 108018 mac 108018 bytes_out 0 108018 bytes_in 0 108018 station_ip 5.119.174.144 108018 port 16 108018 unique_id port 108018 remote_ip 10.8.0.90 108020 username mehdizare 108020 mac 108020 bytes_out 14548 108020 bytes_in 13035 108020 station_ip 5.119.174.144 108020 port 8 108020 unique_id port 108020 remote_ip 10.8.1.42 108021 username hashtadani3 108021 mac 108021 bytes_out 0 108021 bytes_in 0 108021 station_ip 5.202.59.196 108021 port 8 108021 unique_id port 108021 remote_ip 10.8.1.94 108022 username avaanna 108022 mac 108022 bytes_out 0 108022 bytes_in 0 108022 station_ip 83.122.186.71 108022 port 18 108022 unique_id port 108022 remote_ip 10.8.0.98 108026 username mehdizare 108026 mac 108026 bytes_out 17292 108026 bytes_in 17970 108026 station_ip 5.119.174.144 108026 port 6 108026 unique_id port 108026 remote_ip 10.8.1.42 108028 username hashtadani3 108028 mac 108028 bytes_out 0 108028 bytes_in 0 108028 station_ip 5.202.59.196 108028 port 10 108028 unique_id port 108028 remote_ip 10.8.1.94 108030 username hashtadani3 108030 mac 108030 bytes_out 0 108030 bytes_in 0 108030 station_ip 5.202.59.196 108030 port 25 108030 unique_id port 108030 remote_ip 10.8.0.154 108031 username mohammadjavad 108031 mac 108031 bytes_out 188390 108031 bytes_in 1853697 108031 station_ip 83.123.231.178 108031 port 16 108031 unique_id port 108031 remote_ip 10.8.0.142 108033 username amir 108033 kill_reason Another user logged on this global unique id 108033 mac 108033 bytes_out 0 108033 bytes_in 0 108033 station_ip 46.225.213.89 108033 port 23 108033 unique_id port 108042 username hashtadani3 108042 mac 108042 bytes_out 0 108042 bytes_in 0 108042 station_ip 5.202.59.196 108042 port 26 108042 unique_id port 108042 remote_ip 10.8.0.154 108044 username malekpoir 108044 mac 108044 bytes_out 0 108044 bytes_in 0 108044 station_ip 5.119.29.241 108044 port 21 108044 unique_id port 108044 remote_ip 10.8.0.58 108048 username mehdizare 108048 mac 108008 port 6 108008 unique_id port 108008 remote_ip 10.8.1.50 108015 username hashtadani3 108015 mac 108015 bytes_out 0 108015 bytes_in 0 108015 station_ip 5.202.59.196 108015 port 25 108015 unique_id port 108015 remote_ip 10.8.0.154 108027 username hashtadani3 108027 mac 108027 bytes_out 0 108027 bytes_in 0 108027 station_ip 5.202.59.196 108027 port 10 108027 unique_id port 108027 remote_ip 10.8.1.94 108037 username mehdizare 108037 mac 108037 bytes_out 0 108037 bytes_in 0 108037 station_ip 5.119.174.144 108037 port 25 108037 unique_id port 108037 remote_ip 10.8.0.90 108038 username hashtadani3 108038 mac 108038 bytes_out 0 108038 bytes_in 0 108038 station_ip 5.202.59.196 108038 port 25 108038 unique_id port 108038 remote_ip 10.8.0.154 108039 username hashtadani3 108039 mac 108039 bytes_out 0 108039 bytes_in 0 108039 station_ip 5.202.59.196 108039 port 25 108039 unique_id port 108039 remote_ip 10.8.0.154 108040 username hashtadani3 108040 mac 108040 bytes_out 0 108040 bytes_in 0 108040 station_ip 5.202.59.196 108040 port 25 108040 unique_id port 108040 remote_ip 10.8.0.154 108051 username mohammadjavad 108051 mac 108051 bytes_out 190285 108051 bytes_in 2112080 108051 station_ip 37.129.113.88 108051 port 21 108051 unique_id port 108051 remote_ip 10.8.0.142 108053 username forozande 108053 mac 108053 bytes_out 1808392 108053 bytes_in 31823627 108053 station_ip 113.203.89.168 108053 port 27 108053 unique_id port 108053 remote_ip 10.8.0.74 108054 username hashtadani3 108054 mac 108054 bytes_out 0 108054 bytes_in 0 108054 station_ip 5.202.59.196 108054 port 21 108054 unique_id port 108054 remote_ip 10.8.0.154 108057 username hashtadani3 108057 mac 108057 bytes_out 0 108057 bytes_in 0 108057 station_ip 5.202.59.196 108057 port 16 108057 unique_id port 108057 remote_ip 10.8.0.154 108060 username hashtadani3 108060 mac 108060 bytes_out 0 108060 bytes_in 0 108060 station_ip 5.202.59.196 108060 port 21 108060 unique_id port 108060 remote_ip 10.8.0.154 108061 username hashtadani3 108061 mac 108061 bytes_out 0 108061 bytes_in 0 108061 station_ip 5.202.59.196 108061 port 10 108061 unique_id port 108061 remote_ip 10.8.1.94 108063 username hashtadani3 108063 kill_reason Maximum check online fails reached 108063 mac 108063 bytes_out 0 108063 bytes_in 0 108063 station_ip 5.202.59.196 108063 port 22 108063 unique_id port 108066 username hashtadani3 108066 mac 108066 bytes_out 0 108066 bytes_in 0 108066 station_ip 5.202.59.196 108066 port 10 108066 unique_id port 108066 remote_ip 10.8.1.94 108071 username alipour 108071 mac 108071 bytes_out 206673 108071 bytes_in 1178259 108071 station_ip 83.123.170.15 108071 port 25 108071 unique_id port 108071 remote_ip 10.8.0.102 108072 username rezasekonji 108072 mac 108072 bytes_out 890530 108072 bytes_in 10603688 108072 station_ip 113.203.62.100 108072 port 21 108072 unique_id port 108072 remote_ip 10.8.0.130 108076 username hashtadani3 108076 mac 108076 bytes_out 8150 108076 bytes_in 9927 108076 station_ip 5.202.59.196 108076 port 25 108076 unique_id port 108076 remote_ip 10.8.0.154 108078 username avaanna 108078 mac 108078 bytes_out 0 108078 bytes_in 0 108078 station_ip 83.122.186.71 108078 port 8 108078 unique_id port 108078 remote_ip 10.8.1.46 108082 username alipour 108082 mac 108082 bytes_out 0 108082 bytes_in 0 108082 station_ip 83.123.170.15 108082 port 6 108082 unique_id port 108082 remote_ip 10.8.1.50 108017 remote_ip 10.8.1.58 108019 username hashtadani3 108019 mac 108019 bytes_out 42974 108019 bytes_in 208071 108019 station_ip 5.202.59.196 108019 port 6 108019 unique_id port 108019 remote_ip 10.8.1.94 108023 username avaanna 108023 mac 108023 bytes_out 0 108023 bytes_in 0 108023 station_ip 83.122.186.71 108023 port 25 108023 unique_id port 108023 remote_ip 10.8.0.98 108024 username hashtadani3 108024 kill_reason Maximum check online fails reached 108024 mac 108024 bytes_out 0 108024 bytes_in 0 108024 station_ip 5.202.59.196 108024 port 18 108024 unique_id port 108025 username forozande 108025 mac 108025 bytes_out 0 108025 bytes_in 0 108025 station_ip 113.203.85.145 108025 port 16 108025 unique_id port 108025 remote_ip 10.8.0.74 108029 username mehdizare 108029 mac 108029 bytes_out 0 108029 bytes_in 0 108029 station_ip 5.119.174.144 108029 port 6 108029 unique_id port 108029 remote_ip 10.8.1.42 108032 username mehdizare 108032 mac 108032 bytes_out 0 108032 bytes_in 0 108032 station_ip 5.119.174.144 108032 port 25 108032 unique_id port 108032 remote_ip 10.8.0.90 108034 username hashtadani3 108034 mac 108034 bytes_out 0 108034 bytes_in 0 108034 station_ip 5.202.59.196 108034 port 16 108034 unique_id port 108034 remote_ip 10.8.0.154 108035 username hashtadani3 108035 mac 108035 bytes_out 0 108035 bytes_in 0 108035 station_ip 5.202.59.196 108035 port 16 108035 unique_id port 108035 remote_ip 10.8.0.154 108036 username hashtadani3 108036 mac 108036 bytes_out 0 108036 bytes_in 0 108036 station_ip 5.202.59.196 108036 port 16 108036 unique_id port 108036 remote_ip 10.8.0.154 108041 username mehdizare 108041 kill_reason Another user logged on this global unique id 108041 mac 108041 bytes_out 0 108041 bytes_in 0 108041 station_ip 5.119.174.144 108041 port 16 108041 unique_id port 108041 remote_ip 10.8.0.90 108043 username forozande 108043 mac 108043 bytes_out 115392 108043 bytes_in 145772 108043 station_ip 37.129.126.229 108043 port 25 108043 unique_id port 108043 remote_ip 10.8.0.74 108045 username malekpoir 108045 mac 108045 bytes_out 0 108045 bytes_in 0 108045 station_ip 5.119.29.241 108045 port 26 108045 unique_id port 108045 remote_ip 10.8.0.58 108046 username hashtadani3 108046 mac 108046 bytes_out 0 108046 bytes_in 0 108046 station_ip 5.202.59.196 108046 port 25 108046 unique_id port 108046 remote_ip 10.8.0.154 108047 username malekpoir 108047 mac 108047 bytes_out 0 108047 bytes_in 0 108047 station_ip 5.119.29.241 108047 port 21 108047 unique_id port 108047 remote_ip 10.8.0.58 108052 username hashtadani3 108052 mac 108052 bytes_out 224460 108052 bytes_in 2904503 108052 station_ip 5.202.59.196 108052 port 10 108052 unique_id port 108052 remote_ip 10.8.1.94 108056 username malekpoir 108056 mac 108056 bytes_out 0 108056 bytes_in 0 108056 station_ip 5.119.29.241 108056 port 16 108056 unique_id port 108056 remote_ip 10.8.0.58 108069 username mehdizare 108069 mac 108069 bytes_out 0 108069 bytes_in 0 108069 station_ip 5.119.174.144 108069 port 6 108069 unique_id port 108070 username hashtadani3 108070 mac 108070 bytes_out 0 108070 bytes_in 0 108070 station_ip 5.202.59.196 108070 port 24 108070 unique_id port 108070 remote_ip 10.8.0.154 108075 username alipour 108075 mac 108075 bytes_out 0 108075 bytes_in 0 108075 station_ip 83.123.170.15 108075 port 6 108075 unique_id port 108075 remote_ip 10.8.1.50 108079 username rezasekonji 108079 mac 108079 bytes_out 0 108048 bytes_out 0 108048 bytes_in 0 108048 station_ip 5.119.174.144 108048 port 16 108048 unique_id port 108049 username malekpoir 108049 mac 108049 bytes_out 10141 108049 bytes_in 9784 108049 station_ip 5.119.29.241 108049 port 25 108049 unique_id port 108049 remote_ip 10.8.0.58 108050 username kordestani 108050 mac 108050 bytes_out 1802863 108050 bytes_in 21772400 108050 station_ip 151.235.123.176 108050 port 26 108050 unique_id port 108050 remote_ip 10.8.0.134 108055 username mehdizare 108055 kill_reason Another user logged on this global unique id 108055 mac 108055 bytes_out 0 108055 bytes_in 0 108055 station_ip 5.119.174.144 108055 port 6 108055 unique_id port 108055 remote_ip 10.8.1.42 108058 username hashtadani3 108058 mac 108058 bytes_out 0 108058 bytes_in 0 108058 station_ip 5.202.59.196 108058 port 21 108058 unique_id port 108058 remote_ip 10.8.0.154 108059 username alipour 108059 mac 108059 bytes_out 2504771 108059 bytes_in 31955700 108059 station_ip 83.123.170.15 108059 port 22 108059 unique_id port 108059 remote_ip 10.8.0.102 108062 username hashtadani3 108062 mac 108062 bytes_out 0 108062 bytes_in 0 108062 station_ip 5.202.59.196 108062 port 10 108062 unique_id port 108062 remote_ip 10.8.1.94 108064 username musa 108064 mac 108064 bytes_out 0 108064 bytes_in 0 108064 station_ip 91.133.247.139 108064 port 24 108064 unique_id port 108064 remote_ip 10.8.0.6 108065 username hashtadani3 108065 mac 108065 bytes_out 0 108065 bytes_in 0 108065 station_ip 5.202.59.196 108065 port 10 108065 unique_id port 108065 remote_ip 10.8.1.94 108067 username amir 108067 kill_reason Another user logged on this global unique id 108067 mac 108067 bytes_out 0 108067 bytes_in 0 108067 station_ip 46.225.213.89 108067 port 23 108067 unique_id port 108068 username forozande 108068 mac 108068 bytes_out 0 108068 bytes_in 0 108068 station_ip 37.129.98.128 108068 port 24 108068 unique_id port 108068 remote_ip 10.8.0.74 108073 username rezasekonji 108073 mac 108073 bytes_out 2631 108073 bytes_in 4715 108073 station_ip 113.203.62.100 108073 port 21 108073 unique_id port 108073 remote_ip 10.8.0.130 108074 username kordestani 108074 kill_reason Another user logged on this global unique id 108074 mac 108074 bytes_out 0 108074 bytes_in 0 108074 station_ip 151.235.123.176 108074 port 27 108074 unique_id port 108074 remote_ip 10.8.0.134 108077 username rezasekonji 108077 mac 108077 bytes_out 3534 108077 bytes_in 5544 108077 station_ip 113.203.62.100 108077 port 21 108077 unique_id port 108077 remote_ip 10.8.0.130 108080 username rezasekonji 108080 mac 108080 bytes_out 0 108080 bytes_in 0 108080 station_ip 113.203.62.100 108080 port 21 108080 unique_id port 108080 remote_ip 10.8.0.130 108086 username alipour 108086 mac 108086 bytes_out 19643 108086 bytes_in 19443 108086 station_ip 83.123.170.15 108086 port 29 108086 unique_id port 108086 remote_ip 10.8.0.102 108088 username zare 108088 mac 108088 bytes_out 533339 108088 bytes_in 5582473 108088 station_ip 94.183.214.14 108088 port 13 108088 unique_id port 108088 remote_ip 10.8.1.58 108091 username rezasekonji 108091 mac 108091 bytes_out 2404 108091 bytes_in 4640 108091 station_ip 113.203.62.100 108091 port 29 108091 unique_id port 108091 remote_ip 10.8.0.130 108092 username mehdizare 108092 mac 108092 bytes_out 220164 108092 bytes_in 106102 108092 station_ip 5.119.174.144 108092 port 24 108092 unique_id port 108092 remote_ip 10.8.0.90 108095 username rezasekonji 108095 mac 108079 bytes_in 0 108079 station_ip 113.203.62.100 108079 port 21 108079 unique_id port 108079 remote_ip 10.8.0.130 108081 username kordestani 108081 kill_reason Another user logged on this global unique id 108081 mac 108081 bytes_out 0 108081 bytes_in 0 108081 station_ip 151.235.123.176 108081 port 27 108081 unique_id port 108083 username rezasekonji 108083 mac 108083 bytes_out 2871 108083 bytes_in 4953 108083 station_ip 113.203.62.100 108083 port 21 108083 unique_id port 108083 remote_ip 10.8.0.130 108084 username rezasekonji 108084 mac 108084 bytes_out 4299 108084 bytes_in 6211 108084 station_ip 113.203.62.100 108084 port 21 108084 unique_id port 108084 remote_ip 10.8.0.130 108085 username forozande 108085 mac 108085 bytes_out 204498 108085 bytes_in 1797193 108085 station_ip 37.129.199.160 108085 port 28 108085 unique_id port 108085 remote_ip 10.8.0.74 108089 username tahmasebi 108089 kill_reason Another user logged on this global unique id 108089 mac 108089 bytes_out 0 108089 bytes_in 0 108089 station_ip 5.120.109.220 108089 port 15 108089 unique_id port 108093 username hashtadani3 108093 mac 108093 bytes_out 928255 108093 bytes_in 9102316 108093 station_ip 5.202.59.196 108093 port 28 108093 unique_id port 108093 remote_ip 10.8.0.154 108094 username mehdizare 108094 mac 108094 bytes_out 12918 108094 bytes_in 17509 108094 station_ip 5.119.174.144 108094 port 29 108094 unique_id port 108094 remote_ip 10.8.0.90 108096 username rezasekonji 108096 mac 108096 bytes_out 0 108096 bytes_in 0 108096 station_ip 113.203.62.100 108096 port 24 108096 unique_id port 108096 remote_ip 10.8.0.130 108099 username rajaei 108099 kill_reason Another user logged on this global unique id 108099 mac 108099 bytes_out 0 108099 bytes_in 0 108099 station_ip 37.137.6.53 108099 port 25 108099 unique_id port 108099 remote_ip 10.8.0.34 108100 username hashtadani3 108100 kill_reason Maximum check online fails reached 108100 mac 108100 bytes_out 0 108100 bytes_in 0 108100 station_ip 5.202.59.196 108100 port 8 108100 unique_id port 108106 username hashtadani3 108106 mac 108106 bytes_out 0 108106 bytes_in 0 108106 station_ip 5.202.59.196 108106 port 25 108106 unique_id port 108106 remote_ip 10.8.0.154 108109 username tahmasebi 108109 kill_reason Another user logged on this global unique id 108109 mac 108109 bytes_out 0 108109 bytes_in 0 108109 station_ip 5.120.109.220 108109 port 15 108109 unique_id port 108110 username avaanna 108110 mac 108110 bytes_out 0 108110 bytes_in 0 108110 station_ip 83.122.186.71 108110 port 27 108110 unique_id port 108110 remote_ip 10.8.0.98 108112 username khalili 108112 kill_reason Another user logged on this global unique id 108112 mac 108112 bytes_out 0 108112 bytes_in 0 108112 station_ip 5.119.89.178 108112 port 12 108112 unique_id port 108112 remote_ip 10.8.1.18 108113 username avaanna 108113 mac 108113 bytes_out 0 108113 bytes_in 0 108113 station_ip 83.122.186.71 108113 port 29 108113 unique_id port 108113 remote_ip 10.8.0.98 108114 username malekpoir 108114 mac 108114 bytes_out 94633 108114 bytes_in 114508 108114 station_ip 5.119.29.241 108114 port 16 108114 unique_id port 108114 remote_ip 10.8.0.58 108118 username hashtadani3 108118 kill_reason Another user logged on this global unique id 108118 mac 108118 bytes_out 0 108118 bytes_in 0 108118 station_ip 5.202.59.196 108118 port 28 108118 unique_id port 108118 remote_ip 10.8.0.154 108120 username hashtadani3 108120 mac 108120 bytes_out 0 108120 bytes_in 0 108120 station_ip 5.202.59.196 108120 port 28 108120 unique_id port 108087 username hashtadani3 108087 mac 108087 bytes_out 0 108087 bytes_in 0 108087 station_ip 5.202.59.196 108087 port 6 108087 unique_id port 108087 remote_ip 10.8.1.94 108090 username rezasekonji 108090 mac 108090 bytes_out 2717 108090 bytes_in 4961 108090 station_ip 113.203.62.100 108090 port 28 108090 unique_id port 108090 remote_ip 10.8.0.130 108098 username hashtadani3 108098 mac 108098 bytes_out 0 108098 bytes_in 0 108098 station_ip 5.202.59.196 108098 port 24 108098 unique_id port 108098 remote_ip 10.8.0.154 108101 username avaanna 108101 mac 108101 bytes_out 0 108101 bytes_in 0 108101 station_ip 83.122.186.71 108101 port 10 108101 unique_id port 108101 remote_ip 10.8.1.46 108103 username tahmasebi 108103 kill_reason Another user logged on this global unique id 108103 mac 108103 bytes_out 0 108103 bytes_in 0 108103 station_ip 5.120.109.220 108103 port 15 108103 unique_id port 108107 username tahmasebi 108107 kill_reason Another user logged on this global unique id 108107 mac 108107 bytes_out 0 108107 bytes_in 0 108107 station_ip 5.120.109.220 108107 port 15 108107 unique_id port 108108 username rezasekonji 108108 mac 108108 bytes_out 0 108108 bytes_in 0 108108 station_ip 113.203.62.100 108108 port 25 108108 unique_id port 108108 remote_ip 10.8.0.130 108111 username rezasekonji 108111 mac 108111 bytes_out 2496 108111 bytes_in 4724 108111 station_ip 113.203.62.100 108111 port 25 108111 unique_id port 108111 remote_ip 10.8.0.130 108115 username avaanna 108115 mac 108115 bytes_out 0 108115 bytes_in 0 108115 station_ip 83.122.186.71 108115 port 13 108115 unique_id port 108115 remote_ip 10.8.1.46 108121 username alipour 108121 mac 108121 bytes_out 156168 108121 bytes_in 252480 108121 station_ip 83.123.170.15 108121 port 21 108121 unique_id port 108121 remote_ip 10.8.0.102 108125 username forozande 108125 mac 108125 bytes_out 183706 108125 bytes_in 1384933 108125 station_ip 83.123.18.189 108125 port 16 108125 unique_id port 108125 remote_ip 10.8.0.74 108127 username tahmasebi 108127 kill_reason Another user logged on this global unique id 108127 mac 108127 bytes_out 0 108127 bytes_in 0 108127 station_ip 5.120.109.220 108127 port 15 108127 unique_id port 108130 username tahmasebi 108130 kill_reason Another user logged on this global unique id 108130 mac 108130 bytes_out 0 108130 bytes_in 0 108130 station_ip 5.120.109.220 108130 port 15 108130 unique_id port 108131 username hashtadani3 108131 mac 108131 bytes_out 0 108131 bytes_in 0 108131 station_ip 5.202.59.196 108131 port 29 108131 unique_id port 108131 remote_ip 10.8.0.154 108133 username amir 108133 kill_reason Another user logged on this global unique id 108133 mac 108133 bytes_out 0 108133 bytes_in 0 108133 station_ip 46.225.213.89 108133 port 23 108133 unique_id port 108135 username tahmasebi 108135 kill_reason Another user logged on this global unique id 108135 mac 108135 bytes_out 0 108135 bytes_in 0 108135 station_ip 5.120.109.220 108135 port 15 108135 unique_id port 108136 username mehdizare 108136 mac 108136 bytes_out 0 108136 bytes_in 0 108136 station_ip 5.119.174.144 108136 port 6 108136 unique_id port 108136 remote_ip 10.8.1.42 108139 username kordestani 108139 mac 108139 bytes_out 0 108139 bytes_in 0 108139 station_ip 151.235.123.176 108139 port 10 108139 unique_id port 108139 remote_ip 10.8.1.98 108142 username hashtadani3 108142 mac 108142 bytes_out 532260 108142 bytes_in 4002252 108142 station_ip 5.202.59.196 108142 port 29 108142 unique_id port 108142 remote_ip 10.8.0.154 108095 bytes_out 0 108095 bytes_in 0 108095 station_ip 113.203.62.100 108095 port 24 108095 unique_id port 108095 remote_ip 10.8.0.130 108097 username kordestani 108097 mac 108097 bytes_out 0 108097 bytes_in 0 108097 station_ip 151.235.123.176 108097 port 27 108097 unique_id port 108102 username rajaei 108102 mac 108102 bytes_out 0 108102 bytes_in 0 108102 station_ip 37.137.6.53 108102 port 25 108102 unique_id port 108104 username rezasekonji 108104 mac 108104 bytes_out 2780 108104 bytes_in 4612 108104 station_ip 113.203.62.100 108104 port 24 108104 unique_id port 108104 remote_ip 10.8.0.130 108105 username avaanna 108105 mac 108105 bytes_out 0 108105 bytes_in 0 108105 station_ip 83.122.186.71 108105 port 13 108105 unique_id port 108105 remote_ip 10.8.1.46 108116 username forozande 108116 mac 108116 bytes_out 0 108116 bytes_in 0 108116 station_ip 37.129.83.154 108116 port 24 108116 unique_id port 108116 remote_ip 10.8.0.74 108117 username tahmasebi 108117 kill_reason Another user logged on this global unique id 108117 mac 108117 bytes_out 0 108117 bytes_in 0 108117 station_ip 5.120.109.220 108117 port 15 108117 unique_id port 108119 username rezasekonji 108119 mac 108119 bytes_out 6782 108119 bytes_in 17285 108119 station_ip 113.203.62.100 108119 port 16 108119 unique_id port 108119 remote_ip 10.8.0.130 108124 username alipour 108124 mac 108124 bytes_out 20318 108124 bytes_in 24003 108124 station_ip 83.123.170.15 108124 port 14 108124 unique_id port 108124 remote_ip 10.8.1.50 108126 username alireza 108126 unique_id port 108126 terminate_cause Lost-Carrier 108126 bytes_out 1821248 108126 bytes_in 24623913 108126 station_ip 5.120.73.139 108126 port 15728992 108126 nas_port_type Virtual 108126 remote_ip 5.5.5.212 108134 username mohammadjavad 108134 mac 108134 bytes_out 306752 108134 bytes_in 3433610 108134 station_ip 37.129.176.225 108134 port 16 108134 unique_id port 108134 remote_ip 10.8.0.142 108137 username zare 108137 mac 108137 bytes_out 140135 108137 bytes_in 397247 108137 station_ip 94.183.214.14 108137 port 13 108137 unique_id port 108137 remote_ip 10.8.1.58 108138 username forozande 108138 mac 108138 bytes_out 319356 108138 bytes_in 1653941 108138 station_ip 113.203.51.41 108138 port 25 108138 unique_id port 108138 remote_ip 10.8.0.74 108143 username kordestani 108143 mac 108143 bytes_out 0 108143 bytes_in 0 108143 station_ip 151.235.123.176 108143 port 25 108143 unique_id port 108143 remote_ip 10.8.0.134 108146 username hashtadani3 108146 mac 108146 bytes_out 0 108146 bytes_in 0 108146 station_ip 5.202.59.196 108146 port 28 108146 unique_id port 108146 remote_ip 10.8.0.154 108153 username rajaei 108153 kill_reason Another user logged on this global unique id 108153 mac 108153 bytes_out 0 108153 bytes_in 0 108153 station_ip 89.47.146.185 108153 port 27 108153 unique_id port 108153 remote_ip 10.8.0.34 108157 username musa 108157 mac 108157 bytes_out 0 108157 bytes_in 0 108157 station_ip 91.133.247.139 108157 port 10 108157 unique_id port 108157 remote_ip 10.8.1.10 108158 username arman1 108158 kill_reason Another user logged on this global unique id 108158 mac 108158 bytes_out 0 108158 bytes_in 0 108158 station_ip 5.120.37.146 108158 port 24 108158 unique_id port 108160 username musa 108160 mac 108160 bytes_out 0 108160 bytes_in 0 108160 station_ip 91.133.247.139 108160 port 10 108160 unique_id port 108160 remote_ip 10.8.1.10 108162 username mosi 108162 mac 108162 bytes_out 1376504 108122 username mehdizare 108122 mac 108122 bytes_out 51043 108122 bytes_in 78061 108122 station_ip 5.119.174.144 108122 port 6 108122 unique_id port 108122 remote_ip 10.8.1.42 108123 username avaanna 108123 mac 108123 bytes_out 341980 108123 bytes_in 3833747 108123 station_ip 83.122.186.71 108123 port 13 108123 unique_id port 108123 remote_ip 10.8.1.46 108128 username malekpoir 108128 mac 108128 bytes_out 1716260 108128 bytes_in 20320074 108128 station_ip 5.119.29.241 108128 port 25 108128 unique_id port 108128 remote_ip 10.8.0.58 108129 username malekpoir 108129 mac 108129 bytes_out 2729 108129 bytes_in 5257 108129 station_ip 5.119.29.241 108129 port 16 108129 unique_id port 108129 remote_ip 10.8.0.58 108132 username reza2742 108132 unique_id port 108132 terminate_cause Lost-Carrier 108132 bytes_out 3808006 108132 bytes_in 98611137 108132 station_ip 5.202.4.254 108132 port 15728993 108132 nas_port_type Virtual 108132 remote_ip 5.5.5.215 108140 username alipour 108140 mac 108140 bytes_out 105782 108140 bytes_in 249105 108140 station_ip 83.123.170.15 108140 port 28 108140 unique_id port 108140 remote_ip 10.8.0.102 108141 username tahmasebi 108141 kill_reason Another user logged on this global unique id 108141 mac 108141 bytes_out 0 108141 bytes_in 0 108141 station_ip 5.120.109.220 108141 port 15 108141 unique_id port 108145 username alipour 108145 mac 108145 bytes_out 0 108145 bytes_in 0 108145 station_ip 83.123.170.15 108145 port 10 108145 unique_id port 108145 remote_ip 10.8.1.50 108149 username arman1 108149 kill_reason Another user logged on this global unique id 108149 mac 108149 bytes_out 0 108149 bytes_in 0 108149 station_ip 5.120.37.146 108149 port 24 108149 unique_id port 108149 remote_ip 10.8.0.110 108150 username musa 108150 mac 108150 bytes_out 646994 108150 bytes_in 5640399 108150 station_ip 91.133.247.139 108150 port 26 108150 unique_id port 108150 remote_ip 10.8.0.6 108154 username avaanna 108154 mac 108154 bytes_out 3597392 108154 bytes_in 43067828 108154 station_ip 83.122.186.71 108154 port 21 108154 unique_id port 108154 remote_ip 10.8.0.98 108159 username hashtadani3 108159 kill_reason Another user logged on this global unique id 108159 mac 108159 bytes_out 0 108159 bytes_in 0 108159 station_ip 5.202.59.196 108159 port 30 108159 unique_id port 108159 remote_ip 10.8.0.154 108164 username arabpour 108164 unique_id port 108164 terminate_cause User-Request 108164 bytes_out 242259 108164 bytes_in 889167 108164 station_ip 83.122.66.19 108164 port 15728994 108164 nas_port_type Virtual 108164 remote_ip 5.5.5.179 108167 username malekpoir 108167 mac 108167 bytes_out 2242763 108167 bytes_in 28635276 108167 station_ip 5.119.29.241 108167 port 16 108167 unique_id port 108167 remote_ip 10.8.0.58 108169 username musa 108169 mac 108169 bytes_out 37883 108169 bytes_in 53066 108169 station_ip 91.133.247.139 108169 port 10 108169 unique_id port 108169 remote_ip 10.8.1.10 108173 username arman1 108173 kill_reason Another user logged on this global unique id 108173 mac 108173 bytes_out 0 108173 bytes_in 0 108173 station_ip 5.120.37.146 108173 port 24 108173 unique_id port 108174 username tahmasebi 108174 kill_reason Another user logged on this global unique id 108174 mac 108174 bytes_out 0 108174 bytes_in 0 108174 station_ip 5.120.109.220 108174 port 15 108174 unique_id port 108179 username musa 108179 mac 108179 bytes_out 0 108179 bytes_in 0 108179 station_ip 89.199.180.123 108179 port 10 108179 unique_id port 108179 remote_ip 10.8.1.10 108183 username ahmadi 108183 unique_id port 108144 username mohammadjavad 108144 mac 108144 bytes_out 240818 108144 bytes_in 429085 108144 station_ip 83.122.128.250 108144 port 28 108144 unique_id port 108144 remote_ip 10.8.0.142 108147 username houshang 108147 mac 108147 bytes_out 0 108147 bytes_in 0 108147 station_ip 5.119.34.58 108147 port 30 108147 unique_id port 108147 remote_ip 10.8.0.22 108148 username tahmasebi 108148 kill_reason Another user logged on this global unique id 108148 mac 108148 bytes_out 0 108148 bytes_in 0 108148 station_ip 5.120.109.220 108148 port 15 108148 unique_id port 108151 username forozande 108151 mac 108151 bytes_out 0 108151 bytes_in 0 108151 station_ip 83.123.128.114 108151 port 29 108151 unique_id port 108151 remote_ip 10.8.0.74 108152 username mehdizare 108152 mac 108152 bytes_out 38196 108152 bytes_in 51998 108152 station_ip 5.119.174.144 108152 port 6 108152 unique_id port 108152 remote_ip 10.8.1.42 108155 username tahmasebi 108155 kill_reason Another user logged on this global unique id 108155 mac 108155 bytes_out 0 108155 bytes_in 0 108155 station_ip 5.120.109.220 108155 port 15 108155 unique_id port 108156 username arman1 108156 kill_reason Another user logged on this global unique id 108156 mac 108156 bytes_out 0 108156 bytes_in 0 108156 station_ip 5.120.37.146 108156 port 24 108156 unique_id port 108161 username alipour 108161 mac 108161 bytes_out 73100 108161 bytes_in 84701 108161 station_ip 83.123.170.15 108161 port 25 108161 unique_id port 108161 remote_ip 10.8.0.102 108163 username hashtadani3 108163 mac 108163 bytes_out 0 108163 bytes_in 0 108163 station_ip 5.202.59.196 108163 port 30 108163 unique_id port 108165 username rajaei 108165 mac 108165 bytes_out 0 108165 bytes_in 0 108165 station_ip 89.47.146.185 108165 port 27 108165 unique_id port 108171 username mosi 108171 kill_reason Another user logged on this global unique id 108171 mac 108171 bytes_out 0 108171 bytes_in 0 108171 station_ip 151.235.125.25 108171 port 25 108171 unique_id port 108171 remote_ip 10.8.0.138 108172 username avaanna 108172 mac 108172 bytes_out 992674 108172 bytes_in 18329414 108172 station_ip 83.122.186.71 108172 port 29 108172 unique_id port 108172 remote_ip 10.8.0.98 108178 username hashtadani3 108178 mac 108178 bytes_out 0 108178 bytes_in 0 108178 station_ip 5.202.59.196 108178 port 16 108178 unique_id port 108178 remote_ip 10.8.0.154 108180 username avaanna 108180 mac 108180 bytes_out 0 108180 bytes_in 0 108180 station_ip 83.122.186.71 108180 port 13 108180 unique_id port 108180 remote_ip 10.8.1.46 108181 username amir 108181 kill_reason Another user logged on this global unique id 108181 mac 108181 bytes_out 0 108181 bytes_in 0 108181 station_ip 46.225.213.89 108181 port 23 108181 unique_id port 108186 username tahmasebi 108186 kill_reason Another user logged on this global unique id 108186 mac 108186 bytes_out 0 108186 bytes_in 0 108186 station_ip 5.120.109.220 108186 port 15 108186 unique_id port 108196 username hashtadani3 108196 mac 108196 bytes_out 508763 108196 bytes_in 5251684 108196 station_ip 5.202.59.196 108196 port 16 108196 unique_id port 108196 remote_ip 10.8.0.154 108197 username avaanna 108197 mac 108197 bytes_out 146319 108197 bytes_in 1994511 108197 station_ip 83.122.186.71 108197 port 21 108197 unique_id port 108197 remote_ip 10.8.0.98 108200 username amir 108200 kill_reason Another user logged on this global unique id 108200 mac 108200 bytes_out 0 108200 bytes_in 0 108200 station_ip 46.225.213.89 108200 port 23 108200 unique_id port 108162 bytes_in 11584099 108162 station_ip 37.156.48.122 108162 port 26 108162 unique_id port 108162 remote_ip 10.8.0.138 108166 username hashtadani3 108166 mac 108166 bytes_out 0 108166 bytes_in 0 108166 station_ip 5.202.59.196 108166 port 27 108166 unique_id port 108166 remote_ip 10.8.0.154 108168 username arman1 108168 kill_reason Another user logged on this global unique id 108168 mac 108168 bytes_out 0 108168 bytes_in 0 108168 station_ip 5.120.37.146 108168 port 24 108168 unique_id port 108170 username hashtadani3 108170 mac 108170 bytes_out 177596 108170 bytes_in 1716352 108170 station_ip 5.202.59.196 108170 port 16 108170 unique_id port 108170 remote_ip 10.8.0.154 108175 username arman1 108175 kill_reason Another user logged on this global unique id 108175 mac 108175 bytes_out 0 108175 bytes_in 0 108175 station_ip 5.120.37.146 108175 port 24 108175 unique_id port 108176 username musa 108176 mac 108176 bytes_out 26431 108176 bytes_in 21747 108176 station_ip 89.199.180.123 108176 port 16 108176 unique_id port 108176 remote_ip 10.8.0.6 108177 username mehdizare 108177 mac 108177 bytes_out 0 108177 bytes_in 0 108177 station_ip 5.119.174.144 108177 port 6 108177 unique_id port 108177 remote_ip 10.8.1.42 108182 username mosi 108182 kill_reason Another user logged on this global unique id 108182 mac 108182 bytes_out 0 108182 bytes_in 0 108182 station_ip 151.235.125.25 108182 port 25 108182 unique_id port 108184 username mehdizare 108184 mac 108184 bytes_out 0 108184 bytes_in 0 108184 station_ip 5.119.174.144 108184 port 6 108184 unique_id port 108184 remote_ip 10.8.1.42 108185 username amir 108185 mac 108185 bytes_out 0 108185 bytes_in 0 108185 station_ip 46.225.213.89 108185 port 23 108185 unique_id port 108188 username mosi 108188 kill_reason Another user logged on this global unique id 108188 mac 108188 bytes_out 0 108188 bytes_in 0 108188 station_ip 151.235.125.25 108188 port 25 108188 unique_id port 108189 username mosi 108189 kill_reason Another user logged on this global unique id 108189 mac 108189 bytes_out 0 108189 bytes_in 0 108189 station_ip 151.235.125.25 108189 port 25 108189 unique_id port 108192 username mosi 108192 kill_reason Another user logged on this global unique id 108192 mac 108192 bytes_out 0 108192 bytes_in 0 108192 station_ip 151.235.125.25 108192 port 25 108192 unique_id port 108194 username avaanna 108194 mac 108194 bytes_out 0 108194 bytes_in 0 108194 station_ip 83.122.186.71 108194 port 10 108194 unique_id port 108194 remote_ip 10.8.1.46 108198 username musa 108198 kill_reason Another user logged on this global unique id 108198 mac 108198 bytes_out 0 108198 bytes_in 0 108198 station_ip 89.199.180.123 108198 port 27 108198 unique_id port 108198 remote_ip 10.8.0.6 108202 username hashtadani3 108202 mac 108202 bytes_out 0 108202 bytes_in 0 108202 station_ip 83.122.216.168 108202 port 25 108202 unique_id port 108202 remote_ip 10.8.0.154 108205 username rajaei 108205 kill_reason Another user logged on this global unique id 108205 mac 108205 bytes_out 0 108205 bytes_in 0 108205 station_ip 89.32.98.2 108205 port 24 108205 unique_id port 108205 remote_ip 10.8.0.34 108207 username mehdizare 108207 mac 108207 bytes_out 0 108207 bytes_in 0 108207 station_ip 5.119.174.144 108207 port 6 108207 unique_id port 108207 remote_ip 10.8.1.42 108208 username hashtadani3 108208 mac 108208 bytes_out 0 108208 bytes_in 0 108208 station_ip 83.122.216.168 108208 port 27 108208 unique_id port 108208 remote_ip 10.8.0.154 108210 username forozande 108210 mac 108183 terminate_cause User-Request 108183 bytes_out 69808 108183 bytes_in 957789 108183 station_ip 37.129.116.99 108183 port 15728995 108183 nas_port_type Virtual 108183 remote_ip 5.5.5.182 108187 username forozande 108187 mac 108187 bytes_out 1979029 108187 bytes_in 28341790 108187 station_ip 83.122.127.228 108187 port 21 108187 unique_id port 108187 remote_ip 10.8.0.74 108190 username hashtadani3 108190 mac 108190 bytes_out 0 108190 bytes_in 0 108190 station_ip 5.202.59.196 108190 port 16 108190 unique_id port 108190 remote_ip 10.8.0.154 108191 username hashtadani3 108191 mac 108191 bytes_out 0 108191 bytes_in 0 108191 station_ip 5.202.59.196 108191 port 16 108191 unique_id port 108191 remote_ip 10.8.0.154 108193 username mosi 108193 mac 108193 bytes_out 0 108193 bytes_in 0 108193 station_ip 151.235.125.25 108193 port 25 108193 unique_id port 108195 username arman1 108195 mac 108195 bytes_out 0 108195 bytes_in 0 108195 station_ip 5.120.37.146 108195 port 24 108195 unique_id port 108199 username mirzaei 108199 kill_reason Another user logged on this global unique id 108199 mac 108199 bytes_out 0 108199 bytes_in 0 108199 station_ip 5.119.238.32 108199 port 11 108199 unique_id port 108199 remote_ip 10.8.1.30 108201 username avaanna 108201 mac 108201 bytes_out 65872 108201 bytes_in 187837 108201 station_ip 83.122.186.71 108201 port 16 108201 unique_id port 108201 remote_ip 10.8.0.98 108203 username mehdizare 108203 mac 108203 bytes_out 0 108203 bytes_in 0 108203 station_ip 5.119.174.144 108203 port 6 108203 unique_id port 108203 remote_ip 10.8.1.42 108204 username avaanna 108204 mac 108204 bytes_out 75376 108204 bytes_in 446410 108204 station_ip 83.122.186.71 108204 port 16 108204 unique_id port 108204 remote_ip 10.8.0.98 108206 username musa 108206 mac 108206 bytes_out 0 108206 bytes_in 0 108206 station_ip 89.199.180.123 108206 port 27 108206 unique_id port 108209 username hashtadani3 108209 mac 108209 bytes_out 0 108209 bytes_in 0 108209 station_ip 5.202.10.137 108209 port 27 108209 unique_id port 108209 remote_ip 10.8.0.154 108211 username mohammadjavad 108211 mac 108211 bytes_out 61614 108211 bytes_in 145224 108211 station_ip 83.123.222.201 108211 port 16 108211 unique_id port 108211 remote_ip 10.8.0.142 108212 username mehdizare 108212 mac 108212 bytes_out 0 108212 bytes_in 0 108212 station_ip 5.119.174.144 108212 port 6 108212 unique_id port 108212 remote_ip 10.8.1.42 108213 username hashtadani3 108213 mac 108213 bytes_out 0 108213 bytes_in 0 108213 station_ip 83.122.216.168 108213 port 16 108213 unique_id port 108213 remote_ip 10.8.0.154 108214 username rajaei 108214 kill_reason Another user logged on this global unique id 108214 mac 108214 bytes_out 0 108214 bytes_in 0 108214 station_ip 89.32.98.2 108214 port 24 108214 unique_id port 108218 username amir 108218 kill_reason Another user logged on this global unique id 108218 mac 108218 bytes_out 0 108218 bytes_in 0 108218 station_ip 46.225.213.89 108218 port 23 108218 unique_id port 108223 username hashtadani3 108223 mac 108223 bytes_out 0 108223 bytes_in 0 108223 station_ip 83.122.216.168 108223 port 24 108223 unique_id port 108223 remote_ip 10.8.0.154 108225 username hashtadani3 108225 mac 108225 bytes_out 0 108225 bytes_in 0 108225 station_ip 83.122.216.168 108225 port 24 108225 unique_id port 108225 remote_ip 10.8.0.154 108229 username alirr 108229 unique_id port 108229 terminate_cause User-Request 108229 bytes_out 8232262 108229 bytes_in 180527322 108200 remote_ip 10.8.0.50 108216 username hashtadani3 108216 mac 108216 bytes_out 0 108216 bytes_in 0 108216 station_ip 83.122.216.168 108216 port 21 108216 unique_id port 108216 remote_ip 10.8.0.154 108217 username tahmasebi 108217 kill_reason Another user logged on this global unique id 108217 mac 108217 bytes_out 0 108217 bytes_in 0 108217 station_ip 5.120.109.220 108217 port 15 108217 unique_id port 108221 username rajaei 108221 mac 108221 bytes_out 0 108221 bytes_in 0 108221 station_ip 89.32.98.2 108221 port 24 108221 unique_id port 108222 username hashtadani3 108222 mac 108222 bytes_out 0 108222 bytes_in 0 108222 station_ip 83.122.216.168 108222 port 24 108222 unique_id port 108222 remote_ip 10.8.0.154 108224 username mohammadmahdi 108224 mac 108224 bytes_out 2242673 108224 bytes_in 32144855 108224 station_ip 5.120.28.207 108224 port 16 108224 unique_id port 108224 remote_ip 10.8.0.54 108227 username hashtadani3 108227 mac 108227 bytes_out 0 108227 bytes_in 0 108227 station_ip 83.122.216.168 108227 port 21 108227 unique_id port 108227 remote_ip 10.8.0.154 108228 username hashtadani3 108228 mac 108228 bytes_out 0 108228 bytes_in 0 108228 station_ip 83.122.216.168 108228 port 21 108228 unique_id port 108228 remote_ip 10.8.0.154 108230 username amir 108230 kill_reason Another user logged on this global unique id 108230 mac 108230 bytes_out 0 108230 bytes_in 0 108230 station_ip 46.225.213.89 108230 port 23 108230 unique_id port 108234 username amir 108234 mac 108234 bytes_out 0 108234 bytes_in 0 108234 station_ip 46.225.213.89 108234 port 23 108234 unique_id port 108235 username mohammadmahdi 108235 kill_reason Another user logged on this global unique id 108235 mac 108235 bytes_out 0 108235 bytes_in 0 108235 station_ip 5.120.28.207 108235 port 16 108235 unique_id port 108236 username amir 108236 mac 108236 bytes_out 136690 108236 bytes_in 696197 108236 station_ip 46.225.213.89 108236 port 23 108236 unique_id port 108236 remote_ip 10.8.0.50 108241 username mohammadmahdi 108241 kill_reason Another user logged on this global unique id 108241 mac 108241 bytes_out 0 108241 bytes_in 0 108241 station_ip 5.120.28.207 108241 port 16 108241 unique_id port 108242 username mehdizare 108242 mac 108242 bytes_out 0 108242 bytes_in 0 108242 station_ip 5.119.174.144 108242 port 6 108242 unique_id port 108242 remote_ip 10.8.1.42 108246 username hashtadani3 108246 mac 108246 bytes_out 0 108246 bytes_in 0 108246 station_ip 37.129.161.55 108246 port 25 108246 unique_id port 108246 remote_ip 10.8.0.154 108248 username hashtadani3 108248 mac 108248 bytes_out 0 108248 bytes_in 0 108248 station_ip 37.129.161.55 108248 port 25 108248 unique_id port 108248 remote_ip 10.8.0.154 108251 username amir 108251 mac 108251 bytes_out 0 108251 bytes_in 0 108251 station_ip 46.225.213.89 108251 port 21 108251 unique_id port 108251 remote_ip 10.8.0.50 108252 username hashtadani3 108252 mac 108252 bytes_out 0 108252 bytes_in 0 108252 station_ip 37.129.161.55 108252 port 25 108252 unique_id port 108252 remote_ip 10.8.0.154 108256 username amir 108256 mac 108256 bytes_out 69618 108256 bytes_in 266052 108256 station_ip 46.225.213.89 108256 port 21 108256 unique_id port 108256 remote_ip 10.8.0.50 108259 username amir 108259 mac 108259 bytes_out 0 108259 bytes_in 0 108259 station_ip 46.225.213.89 108259 port 25 108259 unique_id port 108259 remote_ip 10.8.0.50 108264 username amir 108264 mac 108264 bytes_out 0 108210 bytes_out 1708636 108210 bytes_in 23882771 108210 station_ip 83.123.152.188 108210 port 21 108210 unique_id port 108210 remote_ip 10.8.0.74 108215 username mohammadmahdi 108215 mac 108215 bytes_out 0 108215 bytes_in 0 108215 station_ip 5.120.28.207 108215 port 16 108215 unique_id port 108215 remote_ip 10.8.0.54 108219 username kordestani 108219 mac 108219 bytes_out 2648863 108219 bytes_in 39289703 108219 station_ip 151.235.123.176 108219 port 28 108219 unique_id port 108219 remote_ip 10.8.0.134 108220 username hashtadani3 108220 mac 108220 bytes_out 0 108220 bytes_in 0 108220 station_ip 83.122.216.168 108220 port 21 108220 unique_id port 108220 remote_ip 10.8.0.154 108226 username mohammadjavad 108226 mac 108226 bytes_out 0 108226 bytes_in 0 108226 station_ip 37.129.203.162 108226 port 21 108226 unique_id port 108226 remote_ip 10.8.0.142 108231 username hashtadani3 108231 mac 108231 bytes_out 0 108231 bytes_in 0 108231 station_ip 83.122.216.168 108231 port 21 108231 unique_id port 108231 remote_ip 10.8.0.154 108233 username avaanna 108233 mac 108233 bytes_out 484718 108233 bytes_in 4568159 108233 station_ip 83.122.186.71 108233 port 25 108233 unique_id port 108233 remote_ip 10.8.0.98 108238 username forozande 108238 mac 108238 bytes_out 0 108238 bytes_in 0 108238 station_ip 83.122.230.97 108238 port 21 108238 unique_id port 108239 username hashtadani3 108239 mac 108239 bytes_out 0 108239 bytes_in 0 108239 station_ip 37.129.161.55 108239 port 13 108239 unique_id port 108239 remote_ip 10.8.1.94 108250 username mohammadmahdi 108250 kill_reason Another user logged on this global unique id 108250 mac 108250 bytes_out 0 108250 bytes_in 0 108250 station_ip 5.120.28.207 108250 port 16 108250 unique_id port 108253 username hashtadani3 108253 mac 108253 bytes_out 0 108253 bytes_in 0 108253 station_ip 37.129.161.55 108253 port 25 108253 unique_id port 108253 remote_ip 10.8.0.154 108254 username hashtadani3 108254 mac 108254 bytes_out 0 108254 bytes_in 0 108254 station_ip 37.129.161.55 108254 port 25 108254 unique_id port 108254 remote_ip 10.8.0.154 108257 username hashtadani3 108257 mac 108257 bytes_out 0 108257 bytes_in 0 108257 station_ip 37.129.161.55 108257 port 21 108257 unique_id port 108257 remote_ip 10.8.0.154 108258 username amir 108258 mac 108258 bytes_out 0 108258 bytes_in 0 108258 station_ip 46.225.213.89 108258 port 25 108258 unique_id port 108258 remote_ip 10.8.0.50 108260 username amir 108260 mac 108260 bytes_out 0 108260 bytes_in 0 108260 station_ip 46.225.213.89 108260 port 25 108260 unique_id port 108260 remote_ip 10.8.0.50 108261 username mohammadmahdi 108261 kill_reason Another user logged on this global unique id 108261 mac 108261 bytes_out 0 108261 bytes_in 0 108261 station_ip 5.120.28.207 108261 port 16 108261 unique_id port 108262 username malekpoir 108262 kill_reason Another user logged on this global unique id 108262 mac 108262 bytes_out 0 108262 bytes_in 0 108262 station_ip 5.119.29.241 108262 port 24 108262 unique_id port 108262 remote_ip 10.8.0.58 108263 username amir 108263 mac 108263 bytes_out 0 108263 bytes_in 0 108263 station_ip 46.225.213.89 108263 port 25 108263 unique_id port 108263 remote_ip 10.8.0.50 108266 username forozande 108266 mac 108266 bytes_out 296101 108266 bytes_in 1247473 108266 station_ip 37.129.87.50 108266 port 27 108266 unique_id port 108266 remote_ip 10.8.0.74 108269 username mahyaarabpour 108269 mac 108269 bytes_out 0 108269 bytes_in 0 108229 station_ip 86.57.41.176 108229 port 15728996 108229 nas_port_type Virtual 108229 remote_ip 5.5.5.185 108232 username mohammadmahdi 108232 kill_reason Another user logged on this global unique id 108232 mac 108232 bytes_out 0 108232 bytes_in 0 108232 station_ip 5.120.28.207 108232 port 16 108232 unique_id port 108232 remote_ip 10.8.0.54 108237 username forozande 108237 kill_reason Another user logged on this global unique id 108237 mac 108237 bytes_out 0 108237 bytes_in 0 108237 station_ip 83.122.230.97 108237 port 21 108237 unique_id port 108237 remote_ip 10.8.0.74 108240 username amir 108240 mac 108240 bytes_out 0 108240 bytes_in 0 108240 station_ip 46.225.213.89 108240 port 23 108240 unique_id port 108240 remote_ip 10.8.0.50 108243 username avaanna 108243 mac 108243 bytes_out 148336 108243 bytes_in 401903 108243 station_ip 83.122.186.71 108243 port 10 108243 unique_id port 108243 remote_ip 10.8.1.46 108244 username hashtadani3 108244 mac 108244 bytes_out 0 108244 bytes_in 0 108244 station_ip 37.129.161.55 108244 port 10 108244 unique_id port 108244 remote_ip 10.8.1.94 108245 username hashtadani3 108245 mac 108245 bytes_out 0 108245 bytes_in 0 108245 station_ip 37.129.161.55 108245 port 13 108245 unique_id port 108245 remote_ip 10.8.1.94 108247 username hashtadani3 108247 mac 108247 bytes_out 0 108247 bytes_in 0 108247 station_ip 37.129.161.55 108247 port 13 108247 unique_id port 108247 remote_ip 10.8.1.94 108249 username amir 108249 mac 108249 bytes_out 65960 108249 bytes_in 310832 108249 station_ip 46.225.213.89 108249 port 21 108249 unique_id port 108249 remote_ip 10.8.0.50 108255 username mohammadmahdi 108255 kill_reason Another user logged on this global unique id 108255 mac 108255 bytes_out 0 108255 bytes_in 0 108255 station_ip 5.120.28.207 108255 port 16 108255 unique_id port 108267 username hashtadani3 108267 kill_reason Another user logged on this global unique id 108267 mac 108267 bytes_out 0 108267 bytes_in 0 108267 station_ip 37.129.161.55 108267 port 21 108267 unique_id port 108267 remote_ip 10.8.0.154 108271 username musa 108271 mac 108271 bytes_out 0 108271 bytes_in 0 108271 station_ip 89.199.120.68 108271 port 27 108271 unique_id port 108271 remote_ip 10.8.0.6 108273 username mohammadmahdi 108273 kill_reason Another user logged on this global unique id 108273 mac 108273 bytes_out 0 108273 bytes_in 0 108273 station_ip 5.120.28.207 108273 port 16 108273 unique_id port 108275 username amir 108275 mac 108275 bytes_out 0 108275 bytes_in 0 108275 station_ip 46.225.213.89 108275 port 25 108275 unique_id port 108275 remote_ip 10.8.0.50 108276 username amir 108276 mac 108276 bytes_out 0 108276 bytes_in 0 108276 station_ip 46.225.213.89 108276 port 25 108276 unique_id port 108276 remote_ip 10.8.0.50 108280 username alipour 108280 mac 108280 bytes_out 339622 108280 bytes_in 656290 108280 station_ip 83.123.170.15 108280 port 26 108280 unique_id port 108280 remote_ip 10.8.0.102 108283 username hashtadani3 108283 mac 108283 bytes_out 68650 108283 bytes_in 149833 108283 station_ip 37.129.161.55 108283 port 21 108283 unique_id port 108283 remote_ip 10.8.0.154 108288 username mohammadmahdi 108288 kill_reason Another user logged on this global unique id 108288 mac 108288 bytes_out 0 108288 bytes_in 0 108288 station_ip 5.120.28.207 108288 port 16 108288 unique_id port 108293 username mohammadmahdi 108293 kill_reason Another user logged on this global unique id 108293 mac 108293 bytes_out 0 108293 bytes_in 0 108293 station_ip 5.120.28.207 108293 port 16 108293 unique_id port 108264 bytes_in 0 108264 station_ip 46.225.213.89 108264 port 25 108264 unique_id port 108264 remote_ip 10.8.0.50 108265 username mehdizare 108265 kill_reason Another user logged on this global unique id 108265 mac 108265 bytes_out 0 108265 bytes_in 0 108265 station_ip 5.119.174.144 108265 port 6 108265 unique_id port 108265 remote_ip 10.8.1.42 108268 username mohammadmahdi 108268 kill_reason Another user logged on this global unique id 108268 mac 108268 bytes_out 0 108268 bytes_in 0 108268 station_ip 5.120.28.207 108268 port 16 108268 unique_id port 108270 username mehdizare 108270 kill_reason Another user logged on this global unique id 108270 mac 108270 bytes_out 0 108270 bytes_in 0 108270 station_ip 5.119.174.144 108270 port 6 108270 unique_id port 108272 username amirabbas 108272 unique_id port 108272 terminate_cause User-Request 108272 bytes_out 5099797 108272 bytes_in 134820486 108272 station_ip 37.27.14.167 108272 port 15728998 108272 nas_port_type Virtual 108272 remote_ip 5.5.5.188 108274 username amir 108274 mac 108274 bytes_out 0 108274 bytes_in 0 108274 station_ip 46.225.213.89 108274 port 25 108274 unique_id port 108274 remote_ip 10.8.0.50 108278 username amir 108278 mac 108278 bytes_out 90240 108278 bytes_in 275132 108278 station_ip 46.225.213.89 108278 port 25 108278 unique_id port 108278 remote_ip 10.8.0.50 108279 username amir 108279 mac 108279 bytes_out 0 108279 bytes_in 0 108279 station_ip 46.225.213.89 108279 port 25 108279 unique_id port 108279 remote_ip 10.8.0.50 108281 username khalili 108281 kill_reason Another user logged on this global unique id 108281 mac 108281 bytes_out 0 108281 bytes_in 0 108281 station_ip 5.119.89.178 108281 port 12 108281 unique_id port 108282 username amir 108282 mac 108282 bytes_out 0 108282 bytes_in 0 108282 station_ip 46.225.213.89 108282 port 25 108282 unique_id port 108282 remote_ip 10.8.0.50 108286 username alipour 108286 mac 108286 bytes_out 0 108286 bytes_in 0 108286 station_ip 83.123.170.15 108286 port 26 108286 unique_id port 108286 remote_ip 10.8.0.102 108287 username avaanna 108287 mac 108287 bytes_out 2809230 108287 bytes_in 11246372 108287 station_ip 83.122.186.71 108287 port 10 108287 unique_id port 108287 remote_ip 10.8.1.46 108289 username hashtadani3 108289 mac 108289 bytes_out 0 108289 bytes_in 0 108289 station_ip 37.129.161.55 108289 port 13 108289 unique_id port 108289 remote_ip 10.8.1.94 108291 username aminvpn 108291 mac 108291 bytes_out 468503 108291 bytes_in 4142177 108291 station_ip 113.203.23.35 108291 port 29 108291 unique_id port 108291 remote_ip 10.8.0.14 108292 username hashtadani3 108292 mac 108292 bytes_out 0 108292 bytes_in 0 108292 station_ip 37.129.161.55 108292 port 28 108292 unique_id port 108292 remote_ip 10.8.0.154 108295 username mohammadjavad 108295 mac 108295 bytes_out 0 108295 bytes_in 0 108295 station_ip 83.122.160.202 108295 port 26 108295 unique_id port 108295 remote_ip 10.8.0.142 108297 username ahmadi 108297 unique_id port 108297 terminate_cause User-Request 108297 bytes_out 133663 108297 bytes_in 573074 108297 station_ip 113.203.38.68 108297 port 15729000 108297 nas_port_type Virtual 108297 remote_ip 5.5.5.200 108301 username hashtadani3 108301 mac 108301 bytes_out 0 108301 bytes_in 0 108301 station_ip 37.129.161.55 108301 port 16 108301 unique_id port 108301 remote_ip 10.8.0.154 108304 username tahmasebi 108304 kill_reason Another user logged on this global unique id 108304 mac 108304 bytes_out 0 108304 bytes_in 0 108304 station_ip 5.120.109.220 108304 port 15 108269 station_ip 37.153.191.30 108269 port 28 108269 unique_id port 108269 remote_ip 10.8.0.158 108277 username hashtadani3 108277 mac 108277 bytes_out 0 108277 bytes_in 0 108277 station_ip 37.129.161.55 108277 port 21 108277 unique_id port 108284 username musa 108284 mac 108284 bytes_out 0 108284 bytes_in 0 108284 station_ip 89.199.120.68 108284 port 13 108284 unique_id port 108284 remote_ip 10.8.1.10 108285 username aminvpn 108285 unique_id port 108285 terminate_cause Lost-Carrier 108285 bytes_out 172642 108285 bytes_in 1161503 108285 station_ip 5.119.55.142 108285 port 15728999 108285 nas_port_type Virtual 108285 remote_ip 5.5.5.192 108290 username hashtadani3 108290 mac 108290 bytes_out 0 108290 bytes_in 0 108290 station_ip 37.129.161.55 108290 port 26 108290 unique_id port 108290 remote_ip 10.8.0.154 108294 username hashtadani3 108294 mac 108294 bytes_out 0 108294 bytes_in 0 108294 station_ip 37.129.161.55 108294 port 28 108294 unique_id port 108294 remote_ip 10.8.0.154 108296 username hashtadani3 108296 mac 108296 bytes_out 0 108296 bytes_in 0 108296 station_ip 37.129.161.55 108296 port 26 108296 unique_id port 108296 remote_ip 10.8.0.154 108299 username hashtadani3 108299 mac 108299 bytes_out 0 108299 bytes_in 0 108299 station_ip 37.129.161.55 108299 port 13 108299 unique_id port 108299 remote_ip 10.8.1.94 108302 username alirr 108302 unique_id port 108302 terminate_cause User-Request 108302 bytes_out 18246085 108302 bytes_in 367745289 108302 station_ip 86.57.41.176 108302 port 15728997 108302 nas_port_type Virtual 108302 remote_ip 5.5.5.186 108306 username kordestani 108306 mac 108306 bytes_out 0 108306 bytes_in 0 108306 station_ip 151.235.96.239 108306 port 23 108306 unique_id port 108308 username hashtadani3 108308 mac 108308 bytes_out 0 108308 bytes_in 0 108308 station_ip 37.129.161.55 108308 port 21 108308 unique_id port 108308 remote_ip 10.8.0.154 108310 username hashtadani3 108310 mac 108310 bytes_out 0 108310 bytes_in 0 108310 station_ip 37.129.161.55 108310 port 21 108310 unique_id port 108310 remote_ip 10.8.0.154 108311 username hashtadani3 108311 mac 108311 bytes_out 0 108311 bytes_in 0 108311 station_ip 37.129.161.55 108311 port 21 108311 unique_id port 108311 remote_ip 10.8.0.154 108313 username tahmasebi 108313 kill_reason Another user logged on this global unique id 108313 mac 108313 bytes_out 0 108313 bytes_in 0 108313 station_ip 5.120.109.220 108313 port 15 108313 unique_id port 108319 username arabpour 108319 unique_id port 108319 terminate_cause User-Request 108319 bytes_out 158791 108319 bytes_in 971869 108319 station_ip 83.122.121.100 108319 port 15729004 108319 nas_port_type Virtual 108319 remote_ip 5.5.5.164 108328 username hashtadani3 108328 mac 108328 bytes_out 0 108328 bytes_in 0 108328 station_ip 37.129.161.55 108328 port 16 108328 unique_id port 108328 remote_ip 10.8.0.154 108331 username amir 108331 mac 108331 bytes_out 0 108331 bytes_in 0 108331 station_ip 46.225.213.89 108331 port 21 108331 unique_id port 108331 remote_ip 10.8.0.50 108333 username hashtadani3 108333 mac 108333 bytes_out 0 108333 bytes_in 0 108333 station_ip 37.129.161.55 108333 port 16 108333 unique_id port 108333 remote_ip 10.8.0.154 108334 username amir 108334 mac 108334 bytes_out 0 108334 bytes_in 0 108334 station_ip 46.225.213.89 108334 port 23 108334 unique_id port 108334 remote_ip 10.8.0.50 108335 username hashtadani3 108335 mac 108335 bytes_out 0 108335 bytes_in 0 108298 username mohammadmahdi 108298 mac 108298 bytes_out 0 108298 bytes_in 0 108298 station_ip 5.120.28.207 108298 port 16 108298 unique_id port 108300 username ahmadi 108300 unique_id port 108300 terminate_cause User-Request 108300 bytes_out 6078 108300 bytes_in 36056 108300 station_ip 113.203.38.68 108300 port 15729001 108300 nas_port_type Virtual 108300 remote_ip 5.5.5.204 108303 username kordestani 108303 kill_reason Another user logged on this global unique id 108303 mac 108303 bytes_out 0 108303 bytes_in 0 108303 station_ip 151.235.96.239 108303 port 23 108303 unique_id port 108303 remote_ip 10.8.0.134 108309 username ahmadipour 108309 unique_id port 108309 terminate_cause Lost-Carrier 108309 bytes_out 1133046 108309 bytes_in 30178390 108309 station_ip 37.129.221.63 108309 port 15729003 108309 nas_port_type Virtual 108309 remote_ip 5.5.5.255 108312 username hashtadani3 108312 mac 108312 bytes_out 0 108312 bytes_in 0 108312 station_ip 37.129.161.55 108312 port 21 108312 unique_id port 108312 remote_ip 10.8.0.154 108314 username hashtadani3 108314 mac 108314 bytes_out 2472 108314 bytes_in 4860 108314 station_ip 37.129.161.55 108314 port 10 108314 unique_id port 108314 remote_ip 10.8.1.94 108315 username hoorieh 108315 kill_reason Another user logged on this global unique id 108315 mac 108315 bytes_out 0 108315 bytes_in 0 108315 station_ip 5.120.31.70 108315 port 16 108315 unique_id port 108315 remote_ip 10.8.0.38 108318 username hoorieh 108318 mac 108318 bytes_out 0 108318 bytes_in 0 108318 station_ip 5.120.31.70 108318 port 16 108318 unique_id port 108320 username tahmasebi 108320 kill_reason Another user logged on this global unique id 108320 mac 108320 bytes_out 0 108320 bytes_in 0 108320 station_ip 5.120.109.220 108320 port 15 108320 unique_id port 108321 username hashtadani3 108321 mac 108321 bytes_out 0 108321 bytes_in 0 108321 station_ip 37.129.161.55 108321 port 16 108321 unique_id port 108321 remote_ip 10.8.0.154 108323 username hashtadani3 108323 mac 108323 bytes_out 0 108323 bytes_in 0 108323 station_ip 37.129.161.55 108323 port 16 108323 unique_id port 108323 remote_ip 10.8.0.154 108324 username arabpour 108324 unique_id port 108324 terminate_cause User-Request 108324 bytes_out 250 108324 bytes_in 190 108324 station_ip 83.122.121.100 108324 port 15729006 108324 nas_port_type Virtual 108324 remote_ip 5.5.5.166 108325 username tahmasebi 108325 kill_reason Another user logged on this global unique id 108325 mac 108325 bytes_out 0 108325 bytes_in 0 108325 station_ip 5.120.109.220 108325 port 15 108325 unique_id port 108329 username hashtadani3 108329 mac 108329 bytes_out 0 108329 bytes_in 0 108329 station_ip 37.129.161.55 108329 port 16 108329 unique_id port 108329 remote_ip 10.8.0.154 108330 username amir 108330 mac 108330 bytes_out 0 108330 bytes_in 0 108330 station_ip 46.225.213.89 108330 port 25 108330 unique_id port 108330 remote_ip 10.8.0.50 108338 username amir 108338 mac 108338 bytes_out 0 108338 bytes_in 0 108338 station_ip 46.225.213.89 108338 port 23 108338 unique_id port 108338 remote_ip 10.8.0.50 108339 username hashtadani3 108339 mac 108339 bytes_out 0 108339 bytes_in 0 108339 station_ip 37.129.161.55 108339 port 23 108339 unique_id port 108339 remote_ip 10.8.0.154 108343 username hashtadani3 108343 mac 108343 bytes_out 0 108343 bytes_in 0 108343 station_ip 37.129.161.55 108343 port 16 108343 unique_id port 108343 remote_ip 10.8.0.154 108344 username hashtadani3 108344 mac 108344 bytes_out 0 108344 bytes_in 0 108304 unique_id port 108305 username musa 108305 mac 108305 bytes_out 0 108305 bytes_in 0 108305 station_ip 89.199.120.68 108305 port 21 108305 unique_id port 108305 remote_ip 10.8.0.6 108307 username avaanna 108307 mac 108307 bytes_out 0 108307 bytes_in 0 108307 station_ip 83.122.186.71 108307 port 10 108307 unique_id port 108307 remote_ip 10.8.1.46 108316 username hashtadani3 108316 mac 108316 bytes_out 2543 108316 bytes_in 4912 108316 station_ip 37.129.161.55 108316 port 10 108316 unique_id port 108316 remote_ip 10.8.1.94 108317 username hashtadani3 108317 mac 108317 bytes_out 0 108317 bytes_in 0 108317 station_ip 37.129.161.55 108317 port 21 108317 unique_id port 108317 remote_ip 10.8.0.154 108322 username arabpour 108322 unique_id port 108322 terminate_cause User-Request 108322 bytes_out 200357 108322 bytes_in 806397 108322 station_ip 83.122.121.100 108322 port 15729005 108322 nas_port_type Virtual 108322 remote_ip 5.5.5.165 108326 username hashtadani3 108326 mac 108326 bytes_out 0 108326 bytes_in 0 108326 station_ip 37.129.161.55 108326 port 16 108326 unique_id port 108326 remote_ip 10.8.0.154 108327 username hashtadani3 108327 mac 108327 bytes_out 0 108327 bytes_in 0 108327 station_ip 37.129.161.55 108327 port 16 108327 unique_id port 108327 remote_ip 10.8.0.154 108332 username amir 108332 mac 108332 bytes_out 0 108332 bytes_in 0 108332 station_ip 46.225.213.89 108332 port 10 108332 unique_id port 108332 remote_ip 10.8.1.22 108336 username hashtadani3 108336 mac 108336 bytes_out 0 108336 bytes_in 0 108336 station_ip 37.129.161.55 108336 port 16 108336 unique_id port 108336 remote_ip 10.8.0.154 108337 username hashtadani3 108337 mac 108337 bytes_out 0 108337 bytes_in 0 108337 station_ip 37.129.161.55 108337 port 16 108337 unique_id port 108337 remote_ip 10.8.0.154 108345 username mahdiyehalizadeh 108345 mac 108345 bytes_out 0 108345 bytes_in 0 108345 station_ip 37.129.218.89 108345 port 21 108345 unique_id port 108345 remote_ip 10.8.0.82 108346 username hashtadani3 108346 mac 108346 bytes_out 0 108346 bytes_in 0 108346 station_ip 37.129.161.55 108346 port 16 108346 unique_id port 108346 remote_ip 10.8.0.154 108348 username hashtadani3 108348 mac 108348 bytes_out 0 108348 bytes_in 0 108348 station_ip 37.129.161.55 108348 port 16 108348 unique_id port 108348 remote_ip 10.8.0.154 108353 username mahdiyehalizadeh 108353 mac 108353 bytes_out 0 108353 bytes_in 0 108353 station_ip 37.129.218.89 108353 port 23 108353 unique_id port 108353 remote_ip 10.8.0.82 108356 username khalili 108356 mac 108356 bytes_out 0 108356 bytes_in 0 108356 station_ip 5.119.89.178 108356 port 12 108356 unique_id port 108357 username aminvpn 108357 mac 108357 bytes_out 0 108357 bytes_in 0 108357 station_ip 113.203.74.191 108357 port 21 108357 unique_id port 108357 remote_ip 10.8.0.14 108360 username aminvpn 108360 mac 108360 bytes_out 0 108360 bytes_in 0 108360 station_ip 113.203.74.191 108360 port 21 108360 unique_id port 108360 remote_ip 10.8.0.14 108364 username aminvpn 108364 mac 108364 bytes_out 0 108364 bytes_in 0 108364 station_ip 113.203.74.191 108364 port 21 108364 unique_id port 108364 remote_ip 10.8.0.14 108368 username aminvpn 108368 mac 108368 bytes_out 0 108368 bytes_in 0 108368 station_ip 113.203.74.191 108368 port 21 108368 unique_id port 108368 remote_ip 10.8.0.14 108373 username hashtadani3 108373 mac 108373 bytes_out 0 108335 station_ip 37.129.161.55 108335 port 16 108335 unique_id port 108335 remote_ip 10.8.0.154 108340 username amir 108340 mac 108340 bytes_out 0 108340 bytes_in 0 108340 station_ip 46.225.213.89 108340 port 16 108340 unique_id port 108340 remote_ip 10.8.0.50 108341 username hashtadani3 108341 mac 108341 bytes_out 0 108341 bytes_in 0 108341 station_ip 37.129.161.55 108341 port 16 108341 unique_id port 108341 remote_ip 10.8.0.154 108342 username amir 108342 mac 108342 bytes_out 0 108342 bytes_in 0 108342 station_ip 46.225.213.89 108342 port 23 108342 unique_id port 108342 remote_ip 10.8.0.50 108349 username hashtadani3 108349 mac 108349 bytes_out 0 108349 bytes_in 0 108349 station_ip 37.129.161.55 108349 port 16 108349 unique_id port 108349 remote_ip 10.8.0.154 108351 username mehdizare 108351 mac 108351 bytes_out 0 108351 bytes_in 0 108351 station_ip 5.119.174.144 108351 port 6 108351 unique_id port 108352 username forozande 108352 mac 108352 bytes_out 847151 108352 bytes_in 8579342 108352 station_ip 83.123.155.1 108352 port 25 108352 unique_id port 108352 remote_ip 10.8.0.74 108354 username forozande 108354 mac 108354 bytes_out 0 108354 bytes_in 0 108354 station_ip 37.129.57.70 108354 port 23 108354 unique_id port 108354 remote_ip 10.8.0.74 108358 username forozande 108358 kill_reason Another user logged on this global unique id 108358 mac 108358 bytes_out 0 108358 bytes_in 0 108358 station_ip 37.129.25.186 108358 port 25 108358 unique_id port 108358 remote_ip 10.8.0.74 108359 username aminvpn 108359 mac 108359 bytes_out 0 108359 bytes_in 0 108359 station_ip 37.129.191.1 108359 port 23 108359 unique_id port 108359 remote_ip 10.8.0.14 108361 username aminvpn 108361 mac 108361 bytes_out 0 108361 bytes_in 0 108361 station_ip 37.129.191.1 108361 port 26 108361 unique_id port 108361 remote_ip 10.8.0.14 108362 username aminvpn 108362 mac 108362 bytes_out 0 108362 bytes_in 0 108362 station_ip 113.203.74.191 108362 port 21 108362 unique_id port 108362 remote_ip 10.8.0.14 108366 username mirzaei 108366 mac 108366 bytes_out 0 108366 bytes_in 0 108366 station_ip 5.119.238.32 108366 port 11 108366 unique_id port 108367 username mehdizare 108367 mac 108367 bytes_out 0 108367 bytes_in 0 108367 station_ip 5.119.174.144 108367 port 6 108367 unique_id port 108367 remote_ip 10.8.1.42 108370 username hashtadani3 108370 kill_reason Another user logged on this global unique id 108370 mac 108370 bytes_out 0 108370 bytes_in 0 108370 station_ip 37.129.161.55 108370 port 16 108370 unique_id port 108371 username alirr 108371 unique_id port 108371 terminate_cause Lost-Carrier 108371 bytes_out 2237274 108371 bytes_in 46757824 108371 station_ip 86.57.41.176 108371 port 15729007 108371 nas_port_type Virtual 108371 remote_ip 5.5.5.167 108372 username mahdiyehalizadeh 108372 mac 108372 bytes_out 0 108372 bytes_in 0 108372 station_ip 37.129.218.89 108372 port 23 108372 unique_id port 108372 remote_ip 10.8.0.82 108374 username ahmadi 108374 unique_id port 108374 terminate_cause User-Request 108374 bytes_out 65712 108374 bytes_in 334791 108374 station_ip 37.129.189.27 108374 port 15729008 108374 nas_port_type Virtual 108374 remote_ip 5.5.5.169 108375 username houshang 108375 mac 108375 bytes_out 112498 108375 bytes_in 153620 108375 station_ip 5.119.251.38 108375 port 21 108375 unique_id port 108375 remote_ip 10.8.0.22 108389 username alipour 108389 mac 108389 bytes_out 283538 108389 bytes_in 1841529 108389 station_ip 83.123.170.15 108344 station_ip 37.129.161.55 108344 port 16 108344 unique_id port 108344 remote_ip 10.8.0.154 108347 username tahmasebi 108347 kill_reason Another user logged on this global unique id 108347 mac 108347 bytes_out 0 108347 bytes_in 0 108347 station_ip 5.120.109.220 108347 port 15 108347 unique_id port 108350 username alirr 108350 unique_id port 108350 terminate_cause User-Request 108350 bytes_out 6109553 108350 bytes_in 83793929 108350 station_ip 86.57.41.176 108350 port 15729002 108350 nas_port_type Virtual 108350 remote_ip 5.5.5.205 108355 username hashtadani3 108355 kill_reason Another user logged on this global unique id 108355 mac 108355 bytes_out 0 108355 bytes_in 0 108355 station_ip 37.129.161.55 108355 port 16 108355 unique_id port 108355 remote_ip 10.8.0.154 108363 username aminvpn 108363 mac 108363 bytes_out 0 108363 bytes_in 0 108363 station_ip 37.129.191.1 108363 port 26 108363 unique_id port 108363 remote_ip 10.8.0.14 108365 username aminvpn 108365 mac 108365 bytes_out 0 108365 bytes_in 0 108365 station_ip 37.129.191.1 108365 port 26 108365 unique_id port 108365 remote_ip 10.8.0.14 108369 username forozande 108369 mac 108369 bytes_out 0 108369 bytes_in 0 108369 station_ip 37.129.25.186 108369 port 25 108369 unique_id port 108377 username forozande 108377 mac 108377 bytes_out 167181 108377 bytes_in 212863 108377 station_ip 83.123.59.130 108377 port 23 108377 unique_id port 108377 remote_ip 10.8.0.74 108378 username arman1 108378 mac 108378 bytes_out 2110639 108378 bytes_in 12116305 108378 station_ip 5.119.11.148 108378 port 16 108378 unique_id port 108378 remote_ip 10.8.0.110 108379 username tahmasebi 108379 kill_reason Another user logged on this global unique id 108379 mac 108379 bytes_out 0 108379 bytes_in 0 108379 station_ip 5.120.109.220 108379 port 15 108379 unique_id port 108380 username malekpoir 108380 mac 108380 bytes_out 0 108380 bytes_in 0 108380 station_ip 5.119.29.241 108380 port 24 108380 unique_id port 108381 username avaanna 108381 mac 108381 bytes_out 2668662 108381 bytes_in 7612960 108381 station_ip 83.122.186.71 108381 port 23 108381 unique_id port 108381 remote_ip 10.8.0.98 108382 username mehdizare 108382 mac 108382 bytes_out 0 108382 bytes_in 0 108382 station_ip 5.119.174.144 108382 port 10 108382 unique_id port 108382 remote_ip 10.8.1.42 108383 username khalili 108383 mac 108383 bytes_out 0 108383 bytes_in 0 108383 station_ip 5.119.89.178 108383 port 28 108383 unique_id port 108383 remote_ip 10.8.0.86 108384 username mirzaei 108384 kill_reason Another user logged on this global unique id 108384 mac 108384 bytes_out 0 108384 bytes_in 0 108384 station_ip 5.120.139.126 108384 port 21 108384 unique_id port 108384 remote_ip 10.8.0.66 108385 username alipour 108385 mac 108385 bytes_out 3591187 108385 bytes_in 47517018 108385 station_ip 83.123.170.15 108385 port 27 108385 unique_id port 108385 remote_ip 10.8.0.102 108388 username malekpoir 108388 mac 108388 bytes_out 0 108388 bytes_in 0 108388 station_ip 5.119.29.241 108388 port 29 108388 unique_id port 108388 remote_ip 10.8.0.58 108392 username mohammadmahdi 108392 kill_reason Another user logged on this global unique id 108392 mac 108392 bytes_out 0 108392 bytes_in 0 108392 station_ip 5.119.71.151 108392 port 26 108392 unique_id port 108394 username mohammadmahdi 108394 mac 108394 bytes_out 0 108394 bytes_in 0 108394 station_ip 5.119.71.151 108394 port 26 108394 unique_id port 108397 username tahmasebi 108397 kill_reason Another user logged on this global unique id 108397 mac 108373 bytes_in 0 108373 station_ip 37.129.161.55 108373 port 16 108373 unique_id port 108376 username forozande 108376 mac 108376 bytes_out 0 108376 bytes_in 0 108376 station_ip 37.129.25.21 108376 port 21 108376 unique_id port 108376 remote_ip 10.8.0.74 108386 username mohammadmahdi 108386 kill_reason Another user logged on this global unique id 108386 mac 108386 bytes_out 0 108386 bytes_in 0 108386 station_ip 5.119.71.151 108386 port 26 108386 unique_id port 108386 remote_ip 10.8.0.54 108387 username malekpoir 108387 mac 108387 bytes_out 0 108387 bytes_in 0 108387 station_ip 5.119.29.241 108387 port 6 108387 unique_id port 108387 remote_ip 10.8.1.54 108390 username sedighe 108390 mac 108390 bytes_out 907098 108390 bytes_in 8245696 108390 station_ip 83.122.4.177 108390 port 24 108390 unique_id port 108390 remote_ip 10.8.0.146 108393 username mehdizare 108393 mac 108393 bytes_out 1189573 108393 bytes_in 9086014 108393 station_ip 5.119.174.144 108393 port 23 108393 unique_id port 108393 remote_ip 10.8.0.90 108395 username arman1 108395 kill_reason Another user logged on this global unique id 108395 mac 108395 bytes_out 0 108395 bytes_in 0 108395 station_ip 5.119.139.65 108395 port 16 108395 unique_id port 108395 remote_ip 10.8.0.110 108398 username musa 108398 mac 108398 bytes_out 0 108398 bytes_in 0 108398 station_ip 5.106.40.163 108398 port 28 108398 unique_id port 108398 remote_ip 10.8.0.6 108405 username hashtadani3 108405 mac 108405 bytes_out 0 108405 bytes_in 0 108405 station_ip 5.202.2.14 108405 port 27 108405 unique_id port 108405 remote_ip 10.8.0.154 108411 username avaanna 108411 kill_reason Maximum check online fails reached 108411 mac 108411 bytes_out 0 108411 bytes_in 0 108411 station_ip 83.122.186.71 108411 port 6 108411 unique_id port 108415 username arman1 108415 kill_reason Another user logged on this global unique id 108415 mac 108415 bytes_out 0 108415 bytes_in 0 108415 station_ip 5.119.139.65 108415 port 16 108415 unique_id port 108422 username alipour 108422 mac 108422 bytes_out 0 108422 bytes_in 0 108422 station_ip 83.123.170.15 108422 port 26 108422 unique_id port 108422 remote_ip 10.8.0.102 108424 username tahmasebi 108424 kill_reason Another user logged on this global unique id 108424 mac 108424 bytes_out 0 108424 bytes_in 0 108424 station_ip 5.120.109.220 108424 port 15 108424 unique_id port 108425 username alipour 108425 mac 108425 bytes_out 1739 108425 bytes_in 6448 108425 station_ip 83.123.170.15 108425 port 11 108425 unique_id port 108425 remote_ip 10.8.1.50 108426 username arman1 108426 kill_reason Another user logged on this global unique id 108426 mac 108426 bytes_out 0 108426 bytes_in 0 108426 station_ip 5.119.139.65 108426 port 16 108426 unique_id port 108433 username hashtadani3 108433 kill_reason Maximum check online fails reached 108433 mac 108433 bytes_out 0 108433 bytes_in 0 108433 station_ip 83.122.240.179 108433 port 28 108433 unique_id port 108435 username houshang 108435 mac 108435 bytes_out 0 108435 bytes_in 0 108435 station_ip 5.119.251.38 108435 port 26 108435 unique_id port 108435 remote_ip 10.8.0.22 108437 username musa 108437 mac 108437 bytes_out 217448 108437 bytes_in 960558 108437 station_ip 5.106.40.163 108437 port 25 108437 unique_id port 108437 remote_ip 10.8.0.6 108439 username musa 108439 mac 108439 bytes_out 7318 108439 bytes_in 11847 108439 station_ip 5.106.40.163 108439 port 10 108439 unique_id port 108439 remote_ip 10.8.1.10 108441 username alireza 108441 kill_reason Wrong password 108389 port 10 108389 unique_id port 108389 remote_ip 10.8.1.50 108391 username mahdiyehalizadeh 108391 mac 108391 bytes_out 1522951 108391 bytes_in 25994348 108391 station_ip 37.129.218.89 108391 port 27 108391 unique_id port 108391 remote_ip 10.8.0.82 108396 username avaanna 108396 mac 108396 bytes_out 0 108396 bytes_in 0 108396 station_ip 83.122.186.71 108396 port 25 108396 unique_id port 108396 remote_ip 10.8.0.98 108399 username alipour 108399 mac 108399 bytes_out 0 108399 bytes_in 0 108399 station_ip 83.123.170.15 108399 port 29 108399 unique_id port 108399 remote_ip 10.8.0.102 108402 username mohammadmahdi 108402 kill_reason Another user logged on this global unique id 108402 mac 108402 bytes_out 0 108402 bytes_in 0 108402 station_ip 5.119.71.151 108402 port 23 108402 unique_id port 108402 remote_ip 10.8.0.54 108403 username tahmasebi 108403 kill_reason Another user logged on this global unique id 108403 mac 108403 bytes_out 0 108403 bytes_in 0 108403 station_ip 5.120.109.220 108403 port 15 108403 unique_id port 108408 username musa 108408 mac 108408 bytes_out 0 108408 bytes_in 0 108408 station_ip 5.106.40.163 108408 port 10 108408 unique_id port 108408 remote_ip 10.8.1.10 108409 username ahmadipour 108409 unique_id port 108409 terminate_cause Lost-Carrier 108409 bytes_out 361355 108409 bytes_in 8506376 108409 station_ip 37.129.222.83 108409 port 15729011 108409 nas_port_type Virtual 108409 remote_ip 5.5.5.174 108412 username hashtadani3 108412 mac 108412 bytes_out 0 108412 bytes_in 0 108412 station_ip 5.202.2.14 108412 port 25 108412 unique_id port 108412 remote_ip 10.8.0.154 108414 username hashtadani3 108414 mac 108414 bytes_out 0 108414 bytes_in 0 108414 station_ip 5.202.2.14 108414 port 25 108414 unique_id port 108414 remote_ip 10.8.0.154 108419 username hashtadani3 108419 mac 108419 bytes_out 0 108419 bytes_in 0 108419 station_ip 5.202.2.14 108419 port 23 108419 unique_id port 108419 remote_ip 10.8.0.154 108421 username arman1 108421 kill_reason Another user logged on this global unique id 108421 mac 108421 bytes_out 0 108421 bytes_in 0 108421 station_ip 5.119.139.65 108421 port 16 108421 unique_id port 108427 username musa 108427 mac 108427 bytes_out 2339544 108427 bytes_in 34282690 108427 station_ip 5.106.40.163 108427 port 10 108427 unique_id port 108427 remote_ip 10.8.1.10 108428 username hashtadani3 108428 mac 108428 bytes_out 4298310 108428 bytes_in 36992571 108428 station_ip 83.122.240.179 108428 port 25 108428 unique_id port 108428 remote_ip 10.8.0.154 108429 username hashtadani3 108429 mac 108429 bytes_out 0 108429 bytes_in 0 108429 station_ip 83.122.240.179 108429 port 25 108429 unique_id port 108429 remote_ip 10.8.0.154 108431 username hashtadani3 108431 mac 108431 bytes_out 0 108431 bytes_in 0 108431 station_ip 83.122.240.179 108431 port 29 108431 unique_id port 108431 remote_ip 10.8.0.154 108436 username hashtadani3 108436 mac 108436 bytes_out 0 108436 bytes_in 0 108436 station_ip 83.122.240.179 108436 port 26 108436 unique_id port 108436 remote_ip 10.8.0.154 108438 username arman1 108438 mac 108438 bytes_out 0 108438 bytes_in 0 108438 station_ip 5.119.139.65 108438 port 16 108438 unique_id port 108442 username alireza 108442 kill_reason Wrong password 108442 unique_id port 108442 bytes_out 0 108442 bytes_in 0 108442 station_ip 94.183.213.166 108442 port 15729014 108442 nas_port_type Virtual 108444 username alireza 108444 kill_reason Wrong password 108444 unique_id port 108444 bytes_out 0 108444 bytes_in 0 108397 bytes_out 0 108397 bytes_in 0 108397 station_ip 5.120.109.220 108397 port 15 108397 unique_id port 108400 username musa 108400 mac 108400 bytes_out 0 108400 bytes_in 0 108400 station_ip 5.106.40.163 108400 port 25 108400 unique_id port 108400 remote_ip 10.8.0.6 108401 username avaanna 108401 mac 108401 bytes_out 4148056 108401 bytes_in 10720169 108401 station_ip 83.122.186.71 108401 port 6 108401 unique_id port 108401 remote_ip 10.8.1.46 108404 username musa 108404 mac 108404 bytes_out 0 108404 bytes_in 0 108404 station_ip 5.106.40.163 108404 port 25 108404 unique_id port 108404 remote_ip 10.8.0.6 108406 username avaanna 108406 mac 108406 bytes_out 2153377 108406 bytes_in 11031506 108406 station_ip 83.122.186.71 108406 port 6 108406 unique_id port 108406 remote_ip 10.8.1.46 108407 username avaanna 108407 mac 108407 bytes_out 89110 108407 bytes_in 438853 108407 station_ip 83.122.186.71 108407 port 6 108407 unique_id port 108407 remote_ip 10.8.1.46 108410 username arman1 108410 kill_reason Another user logged on this global unique id 108410 mac 108410 bytes_out 0 108410 bytes_in 0 108410 station_ip 5.119.139.65 108410 port 16 108410 unique_id port 108413 username musa 108413 mac 108413 bytes_out 0 108413 bytes_in 0 108413 station_ip 5.106.40.163 108413 port 11 108413 unique_id port 108413 remote_ip 10.8.1.10 108416 username tahmasebi 108416 kill_reason Another user logged on this global unique id 108416 mac 108416 bytes_out 0 108416 bytes_in 0 108416 station_ip 5.120.109.220 108416 port 15 108416 unique_id port 108417 username mohammadmahdi 108417 mac 108417 bytes_out 0 108417 bytes_in 0 108417 station_ip 5.119.71.151 108417 port 23 108417 unique_id port 108418 username mirzaei 108418 kill_reason Another user logged on this global unique id 108418 mac 108418 bytes_out 0 108418 bytes_in 0 108418 station_ip 5.120.139.126 108418 port 21 108418 unique_id port 108420 username mehdizare 108420 mac 108420 bytes_out 322368 108420 bytes_in 264649 108420 station_ip 5.119.174.144 108420 port 24 108420 unique_id port 108420 remote_ip 10.8.0.90 108423 username alipour 108423 mac 108423 bytes_out 0 108423 bytes_in 0 108423 station_ip 83.123.170.15 108423 port 11 108423 unique_id port 108423 remote_ip 10.8.1.50 108430 username arman1 108430 kill_reason Another user logged on this global unique id 108430 mac 108430 bytes_out 0 108430 bytes_in 0 108430 station_ip 5.119.139.65 108430 port 16 108430 unique_id port 108432 username hashtadani3 108432 mac 108432 bytes_out 0 108432 bytes_in 0 108432 station_ip 83.122.240.179 108432 port 29 108432 unique_id port 108432 remote_ip 10.8.0.154 108434 username forozande 108434 mac 108434 bytes_out 0 108434 bytes_in 0 108434 station_ip 37.129.81.53 108434 port 26 108434 unique_id port 108434 remote_ip 10.8.0.74 108440 username houshang 108440 kill_reason Another user logged on this global unique id 108440 mac 108440 bytes_out 0 108440 bytes_in 0 108440 station_ip 5.119.251.38 108440 port 29 108440 unique_id port 108440 remote_ip 10.8.0.22 108449 username sadegh 108449 kill_reason Wrong password 108449 unique_id port 108449 bytes_out 0 108449 bytes_in 0 108449 station_ip 94.183.213.166 108449 port 15729020 108449 nas_port_type Virtual 108451 username sade 108451 kill_reason Wrong password 108451 unique_id port 108451 bytes_out 0 108451 bytes_in 0 108451 station_ip 94.183.213.166 108451 port 15729025 108451 nas_port_type Virtual 108453 username hashtadani3 108453 mac 108453 bytes_out 0 108453 bytes_in 0 108441 unique_id port 108441 bytes_out 0 108441 bytes_in 0 108441 station_ip 94.183.213.166 108441 port 15729013 108441 nas_port_type Virtual 108443 username musa 108443 mac 108443 bytes_out 0 108443 bytes_in 0 108443 station_ip 5.106.40.163 108443 port 10 108443 unique_id port 108443 remote_ip 10.8.1.10 108446 username mehdizare 108446 mac 108446 bytes_out 0 108446 bytes_in 0 108446 station_ip 5.119.174.144 108446 port 23 108446 unique_id port 108446 remote_ip 10.8.0.90 108450 username sade 108450 kill_reason Wrong password 108450 unique_id port 108450 bytes_out 0 108450 bytes_in 0 108450 station_ip 94.183.213.166 108450 port 15729021 108450 nas_port_type Virtual 108452 username hashtadani3 108452 mac 108452 bytes_out 4258944 108452 bytes_in 39314705 108452 station_ip 83.122.240.179 108452 port 16 108452 unique_id port 108452 remote_ip 10.8.0.154 108458 username houshang 108458 mac 108458 bytes_out 0 108458 bytes_in 0 108458 station_ip 5.119.251.38 108458 port 29 108458 unique_id port 108463 username aminvpn 108463 mac 108463 bytes_out 1952127 108463 bytes_in 13484286 108463 station_ip 37.129.51.225 108463 port 27 108463 unique_id port 108463 remote_ip 10.8.0.14 108466 username hashtadani3 108466 mac 108466 bytes_out 0 108466 bytes_in 0 108466 station_ip 83.122.240.179 108466 port 30 108466 unique_id port 108466 remote_ip 10.8.0.154 108474 username avaanna 108474 mac 108474 bytes_out 4835623 108474 bytes_in 36814279 108474 station_ip 83.122.186.71 108474 port 23 108474 unique_id port 108474 remote_ip 10.8.0.98 108476 username hashtadani3 108476 kill_reason Maximum check online fails reached 108476 mac 108476 bytes_out 0 108476 bytes_in 0 108476 station_ip 83.122.240.179 108476 port 25 108476 unique_id port 108478 username hashtadani3 108478 kill_reason Maximum number of concurrent logins reached 108478 mac 108478 bytes_out 0 108478 bytes_in 0 108478 station_ip 83.122.240.179 108478 port 31 108478 unique_id port 108481 username hashtadani3 108481 kill_reason Maximum check online fails reached 108481 mac 108481 bytes_out 0 108481 bytes_in 0 108481 station_ip 83.122.240.179 108481 port 23 108481 unique_id port 108483 username mehdizare 108483 mac 108483 bytes_out 0 108483 bytes_in 0 108483 station_ip 5.119.174.144 108483 port 31 108483 unique_id port 108483 remote_ip 10.8.0.90 108491 username amir 108491 kill_reason Another user logged on this global unique id 108491 mac 108491 bytes_out 0 108491 bytes_in 0 108491 station_ip 46.225.212.80 108491 port 32 108491 unique_id port 108491 remote_ip 10.8.0.50 108498 username amir 108498 mac 108498 bytes_out 0 108498 bytes_in 0 108498 station_ip 46.225.212.80 108498 port 32 108498 unique_id port 108500 username hashtadani3 108500 mac 108500 bytes_out 0 108500 bytes_in 0 108500 station_ip 5.202.2.14 108500 port 32 108500 unique_id port 108500 remote_ip 10.8.0.154 108502 username hashtadani3 108502 mac 108502 bytes_out 0 108502 bytes_in 0 108502 station_ip 5.202.2.14 108502 port 32 108502 unique_id port 108502 remote_ip 10.8.0.154 108503 username hamid.e 108503 unique_id port 108503 terminate_cause User-Request 108503 bytes_out 28866346 108503 bytes_in 354247568 108503 station_ip 37.27.28.248 108503 port 15729010 108503 nas_port_type Virtual 108503 remote_ip 5.5.5.172 108509 username alipour 108509 mac 108509 bytes_out 0 108509 bytes_in 0 108509 station_ip 83.123.170.15 108509 port 31 108509 unique_id port 108509 remote_ip 10.8.0.102 108510 username forozande 108510 mac 108510 bytes_out 0 108444 station_ip 94.183.213.166 108444 port 15729015 108444 nas_port_type Virtual 108445 username alireza 108445 kill_reason Wrong password 108445 unique_id port 108445 bytes_out 0 108445 bytes_in 0 108445 station_ip 94.183.213.166 108445 port 15729016 108445 nas_port_type Virtual 108447 username sadegh 108447 kill_reason Relative expiration date has reached 108447 unique_id port 108447 bytes_out 0 108447 bytes_in 0 108447 station_ip 94.183.213.166 108447 port 15729018 108447 nas_port_type Virtual 108448 username sadegh 108448 kill_reason Relative expiration date has reached 108448 unique_id port 108448 bytes_out 0 108448 bytes_in 0 108448 station_ip 94.183.213.166 108448 port 15729019 108448 nas_port_type Virtual 108456 username musa 108456 mac 108456 bytes_out 8729 108456 bytes_in 12816 108456 station_ip 5.106.40.163 108456 port 25 108456 unique_id port 108456 remote_ip 10.8.0.6 108457 username malekpoir 108457 mac 108457 bytes_out 3497743 108457 bytes_in 48031188 108457 station_ip 5.119.29.241 108457 port 30 108457 unique_id port 108457 remote_ip 10.8.0.58 108460 username mehdizare 108460 mac 108460 bytes_out 0 108460 bytes_in 0 108460 station_ip 5.119.174.144 108460 port 26 108460 unique_id port 108460 remote_ip 10.8.0.90 108465 username hashtadani3 108465 mac 108465 bytes_out 0 108465 bytes_in 0 108465 station_ip 83.122.240.179 108465 port 30 108465 unique_id port 108465 remote_ip 10.8.0.154 108469 username hashtadani3 108469 mac 108469 bytes_out 0 108469 bytes_in 0 108469 station_ip 83.122.240.179 108469 port 32 108469 unique_id port 108469 remote_ip 10.8.0.154 108471 username hashtadani3 108471 mac 108471 bytes_out 0 108471 bytes_in 0 108471 station_ip 83.122.240.179 108471 port 30 108471 unique_id port 108471 remote_ip 10.8.0.154 108472 username houshang 108472 mac 108472 bytes_out 0 108472 bytes_in 0 108472 station_ip 5.119.251.38 108472 port 25 108472 unique_id port 108479 username hashtadani3 108479 kill_reason Maximum number of concurrent logins reached 108479 mac 108479 bytes_out 0 108479 bytes_in 0 108479 station_ip 83.122.240.179 108479 port 31 108479 unique_id port 108480 username mehdizare 108480 mac 108480 bytes_out 0 108480 bytes_in 0 108480 station_ip 5.119.174.144 108480 port 27 108480 unique_id port 108480 remote_ip 10.8.0.90 108485 username mehdizare 108485 mac 108485 bytes_out 0 108485 bytes_in 0 108485 station_ip 5.119.174.144 108485 port 33 108485 unique_id port 108485 remote_ip 10.8.0.90 108486 username alipour 108486 mac 108486 bytes_out 0 108486 bytes_in 0 108486 station_ip 83.123.170.15 108486 port 26 108486 unique_id port 108486 remote_ip 10.8.0.102 108488 username sedighe 108488 mac 108488 bytes_out 0 108488 bytes_in 0 108488 station_ip 83.122.80.220 108488 port 27 108488 unique_id port 108488 remote_ip 10.8.0.146 108489 username rajaei 108489 kill_reason Another user logged on this global unique id 108489 mac 108489 bytes_out 0 108489 bytes_in 0 108489 station_ip 92.114.74.205 108489 port 24 108489 unique_id port 108490 username rajaei 108490 mac 108490 bytes_out 0 108490 bytes_in 0 108490 station_ip 92.114.74.205 108490 port 24 108490 unique_id port 108492 username mahdixz 108492 unique_id port 108492 terminate_cause Lost-Carrier 108492 bytes_out 12534115 108492 bytes_in 442006612 108492 station_ip 151.235.70.107 108492 port 15729012 108492 nas_port_type Virtual 108492 remote_ip 5.5.5.176 108494 username hashtadani3 108494 mac 108494 bytes_out 13368 108494 bytes_in 46749 108494 station_ip 5.202.2.14 108494 port 33 108453 station_ip 83.122.240.179 108453 port 16 108453 unique_id port 108453 remote_ip 10.8.0.154 108454 username houshang 108454 kill_reason Another user logged on this global unique id 108454 mac 108454 bytes_out 0 108454 bytes_in 0 108454 station_ip 5.119.251.38 108454 port 29 108454 unique_id port 108455 username hashtadani3 108455 kill_reason Maximum check online fails reached 108455 mac 108455 bytes_out 0 108455 bytes_in 0 108455 station_ip 83.122.240.179 108455 port 16 108455 unique_id port 108459 username alipour 108459 mac 108459 bytes_out 235901 108459 bytes_in 1439439 108459 station_ip 83.123.170.15 108459 port 24 108459 unique_id port 108459 remote_ip 10.8.0.102 108461 username hashtadani3 108461 mac 108461 bytes_out 0 108461 bytes_in 0 108461 station_ip 83.122.240.179 108461 port 26 108461 unique_id port 108461 remote_ip 10.8.0.154 108462 username hashtadani3 108462 mac 108462 bytes_out 0 108462 bytes_in 0 108462 station_ip 83.122.240.179 108462 port 26 108462 unique_id port 108462 remote_ip 10.8.0.154 108464 username hashtadani3 108464 mac 108464 bytes_out 0 108464 bytes_in 0 108464 station_ip 83.122.240.179 108464 port 30 108464 unique_id port 108464 remote_ip 10.8.0.154 108467 username houshang 108467 kill_reason Another user logged on this global unique id 108467 mac 108467 bytes_out 0 108467 bytes_in 0 108467 station_ip 5.119.251.38 108467 port 25 108467 unique_id port 108467 remote_ip 10.8.0.22 108468 username hashtadani3 108468 mac 108468 bytes_out 8359 108468 bytes_in 23456 108468 station_ip 83.122.240.179 108468 port 30 108468 unique_id port 108468 remote_ip 10.8.0.154 108470 username hashtadani3 108470 mac 108470 bytes_out 0 108470 bytes_in 0 108470 station_ip 83.122.240.179 108470 port 30 108470 unique_id port 108470 remote_ip 10.8.0.154 108473 username forozande 108473 mac 108473 bytes_out 393378 108473 bytes_in 4918358 108473 station_ip 83.122.96.70 108473 port 31 108473 unique_id port 108473 remote_ip 10.8.0.74 108475 username rajaei 108475 kill_reason Another user logged on this global unique id 108475 mac 108475 bytes_out 0 108475 bytes_in 0 108475 station_ip 92.114.74.205 108475 port 24 108475 unique_id port 108475 remote_ip 10.8.0.34 108477 username avaanna 108477 mac 108477 bytes_out 0 108477 bytes_in 0 108477 station_ip 83.122.186.71 108477 port 31 108477 unique_id port 108477 remote_ip 10.8.0.98 108482 username hashtadani3 108482 kill_reason Maximum check online fails reached 108482 mac 108482 bytes_out 0 108482 bytes_in 0 108482 station_ip 83.122.240.179 108482 port 10 108482 unique_id port 108484 username hamid 108484 mac 108484 bytes_out 0 108484 bytes_in 0 108484 station_ip 83.123.172.73 108484 port 30 108484 unique_id port 108484 remote_ip 10.8.0.106 108487 username mehdizare 108487 mac 108487 bytes_out 0 108487 bytes_in 0 108487 station_ip 5.119.174.144 108487 port 30 108487 unique_id port 108487 remote_ip 10.8.0.90 108493 username forozande 108493 mac 108493 bytes_out 0 108493 bytes_in 0 108493 station_ip 37.129.89.47 108493 port 30 108493 unique_id port 108493 remote_ip 10.8.0.74 108495 username arman1 108495 kill_reason Another user logged on this global unique id 108495 mac 108495 bytes_out 0 108495 bytes_in 0 108495 station_ip 5.119.21.75 108495 port 24 108495 unique_id port 108495 remote_ip 10.8.0.110 108497 username hashtadani3 108497 mac 108497 bytes_out 0 108497 bytes_in 0 108497 station_ip 5.202.2.14 108497 port 33 108497 unique_id port 108497 remote_ip 10.8.0.154 108504 username hashtadani3 108494 unique_id port 108494 remote_ip 10.8.0.154 108496 username amirabbas 108496 unique_id port 108496 terminate_cause User-Request 108496 bytes_out 47906491 108496 bytes_in 1434352783 108496 station_ip 37.27.14.167 108496 port 15729009 108496 nas_port_type Virtual 108496 remote_ip 5.5.5.170 108499 username hashtadani3 108499 mac 108499 bytes_out 0 108499 bytes_in 0 108499 station_ip 5.202.2.14 108499 port 32 108499 unique_id port 108499 remote_ip 10.8.0.154 108501 username arman1 108501 kill_reason Another user logged on this global unique id 108501 mac 108501 bytes_out 0 108501 bytes_in 0 108501 station_ip 5.119.21.75 108501 port 24 108501 unique_id port 108506 username hashtadani3 108506 mac 108506 bytes_out 0 108506 bytes_in 0 108506 station_ip 5.202.2.14 108506 port 32 108506 unique_id port 108506 remote_ip 10.8.0.154 108513 username mehdizare 108513 mac 108513 bytes_out 0 108513 bytes_in 0 108513 station_ip 5.119.174.144 108513 port 26 108513 unique_id port 108513 remote_ip 10.8.0.90 108514 username mehdizare 108514 mac 108514 bytes_out 0 108514 bytes_in 0 108514 station_ip 5.119.174.144 108514 port 31 108514 unique_id port 108514 remote_ip 10.8.0.90 108515 username mohammadmahdi 108515 kill_reason Another user logged on this global unique id 108515 mac 108515 bytes_out 0 108515 bytes_in 0 108515 station_ip 5.119.71.151 108515 port 30 108515 unique_id port 108516 username arman1 108516 kill_reason Another user logged on this global unique id 108516 mac 108516 bytes_out 0 108516 bytes_in 0 108516 station_ip 5.119.21.75 108516 port 24 108516 unique_id port 108517 username askari 108517 kill_reason Relative expiration date has reached 108517 mac 108517 bytes_out 0 108517 bytes_in 0 108517 station_ip 5.119.165.247 108517 port 32 108517 unique_id port 108519 username arman1 108519 kill_reason Another user logged on this global unique id 108519 mac 108519 bytes_out 0 108519 bytes_in 0 108519 station_ip 5.119.21.75 108519 port 24 108519 unique_id port 108527 username arman1 108527 kill_reason Another user logged on this global unique id 108527 mac 108527 bytes_out 0 108527 bytes_in 0 108527 station_ip 5.119.21.75 108527 port 24 108527 unique_id port 108528 username mohammadjavad 108528 mac 108528 bytes_out 0 108528 bytes_in 0 108528 station_ip 83.122.253.250 108528 port 27 108528 unique_id port 108528 remote_ip 10.8.0.142 108530 username amir 108530 mac 108530 bytes_out 0 108530 bytes_in 0 108530 station_ip 46.225.212.80 108530 port 27 108530 unique_id port 108530 remote_ip 10.8.0.50 108531 username kordestani 108531 mac 108531 bytes_out 1081272 108531 bytes_in 12657090 108531 station_ip 151.235.90.232 108531 port 34 108531 unique_id port 108531 remote_ip 10.8.0.134 108535 username avaanna 108535 kill_reason Another user logged on this global unique id 108535 mac 108535 bytes_out 0 108535 bytes_in 0 108535 station_ip 83.122.186.71 108535 port 32 108535 unique_id port 108535 remote_ip 10.8.0.98 108537 username forozande 108537 mac 108537 bytes_out 0 108537 bytes_in 0 108537 station_ip 83.122.100.181 108537 port 27 108537 unique_id port 108537 remote_ip 10.8.0.74 108544 username hashtadani3 108544 mac 108544 bytes_out 0 108544 bytes_in 0 108544 station_ip 5.202.2.14 108544 port 24 108544 unique_id port 108544 remote_ip 10.8.0.154 108545 username amir 108545 mac 108545 bytes_out 0 108545 bytes_in 0 108545 station_ip 46.225.212.80 108545 port 24 108545 unique_id port 108545 remote_ip 10.8.0.50 108547 username hashtadani3 108547 mac 108547 bytes_out 0 108547 bytes_in 0 108504 mac 108504 bytes_out 0 108504 bytes_in 0 108504 station_ip 5.202.2.14 108504 port 32 108504 unique_id port 108504 remote_ip 10.8.0.154 108505 username hashtadani3 108505 mac 108505 bytes_out 0 108505 bytes_in 0 108505 station_ip 5.202.2.14 108505 port 32 108505 unique_id port 108505 remote_ip 10.8.0.154 108507 username arman1 108507 kill_reason Another user logged on this global unique id 108507 mac 108507 bytes_out 0 108507 bytes_in 0 108507 station_ip 5.119.21.75 108507 port 24 108507 unique_id port 108508 username mohammadmahdi 108508 kill_reason Another user logged on this global unique id 108508 mac 108508 bytes_out 0 108508 bytes_in 0 108508 station_ip 5.119.71.151 108508 port 30 108508 unique_id port 108508 remote_ip 10.8.0.54 108511 username hashtadani3 108511 mac 108511 bytes_out 0 108511 bytes_in 0 108511 station_ip 5.202.2.14 108511 port 32 108511 unique_id port 108511 remote_ip 10.8.0.154 108518 username alireza 108518 kill_reason Maximum check online fails reached 108518 unique_id port 108518 bytes_out 2225867 108518 bytes_in 15429616 108518 station_ip 5.119.181.10 108518 port 15729029 108518 nas_port_type Virtual 108518 remote_ip 5.5.5.184 108520 username farhad1 108520 kill_reason Another user logged on this global unique id 108520 mac 108520 bytes_out 0 108520 bytes_in 0 108520 station_ip 5.119.171.101 108520 port 33 108520 unique_id port 108520 remote_ip 10.8.0.26 108521 username amir 108521 mac 108521 bytes_out 63539 108521 bytes_in 467352 108521 station_ip 46.225.212.80 108521 port 34 108521 unique_id port 108521 remote_ip 10.8.0.50 108523 username arman1 108523 kill_reason Another user logged on this global unique id 108523 mac 108523 bytes_out 0 108523 bytes_in 0 108523 station_ip 5.119.21.75 108523 port 24 108523 unique_id port 108524 username hashtadani3 108524 mac 108524 bytes_out 5361283 108524 bytes_in 49189069 108524 station_ip 5.202.2.14 108524 port 31 108524 unique_id port 108524 remote_ip 10.8.0.154 108525 username hashtadani3 108525 mac 108525 bytes_out 0 108525 bytes_in 0 108525 station_ip 5.202.2.14 108525 port 31 108525 unique_id port 108525 remote_ip 10.8.0.154 108526 username tahmasebi 108526 kill_reason Another user logged on this global unique id 108526 mac 108526 bytes_out 0 108526 bytes_in 0 108526 station_ip 5.120.109.220 108526 port 15 108526 unique_id port 108529 username farhad1 108529 mac 108529 bytes_out 0 108529 bytes_in 0 108529 station_ip 5.119.171.101 108529 port 33 108529 unique_id port 108533 username hashtadani3 108533 kill_reason Another user logged on this global unique id 108533 mac 108533 bytes_out 0 108533 bytes_in 0 108533 station_ip 5.202.2.14 108533 port 31 108533 unique_id port 108533 remote_ip 10.8.0.154 108534 username hashtadani3 108534 mac 108534 bytes_out 0 108534 bytes_in 0 108534 station_ip 5.202.2.14 108534 port 31 108534 unique_id port 108536 username hashtadani3 108536 mac 108536 bytes_out 0 108536 bytes_in 0 108536 station_ip 5.202.2.14 108536 port 27 108536 unique_id port 108536 remote_ip 10.8.0.154 108539 username hashtadani3 108539 mac 108539 bytes_out 0 108539 bytes_in 0 108539 station_ip 5.202.2.14 108539 port 27 108539 unique_id port 108539 remote_ip 10.8.0.154 108542 username hashtadani3 108542 mac 108542 bytes_out 0 108542 bytes_in 0 108542 station_ip 5.202.2.14 108542 port 27 108542 unique_id port 108542 remote_ip 10.8.0.154 108543 username hashtadani3 108543 mac 108543 bytes_out 0 108543 bytes_in 0 108543 station_ip 5.202.2.14 108543 port 24 108543 unique_id port 108510 bytes_in 0 108510 station_ip 83.122.121.100 108510 port 32 108510 unique_id port 108510 remote_ip 10.8.0.74 108512 username amir 108512 mac 108512 bytes_out 0 108512 bytes_in 0 108512 station_ip 46.225.212.80 108512 port 31 108512 unique_id port 108512 remote_ip 10.8.0.50 108522 username farhad1 108522 kill_reason Another user logged on this global unique id 108522 mac 108522 bytes_out 0 108522 bytes_in 0 108522 station_ip 5.119.171.101 108522 port 33 108522 unique_id port 108532 username farhad1 108532 mac 108532 bytes_out 48520 108532 bytes_in 286918 108532 station_ip 5.119.171.101 108532 port 33 108532 unique_id port 108532 remote_ip 10.8.0.26 108538 username amir 108538 mac 108538 bytes_out 0 108538 bytes_in 0 108538 station_ip 46.225.212.80 108538 port 31 108538 unique_id port 108538 remote_ip 10.8.0.50 108540 username mehdizare 108540 mac 108540 bytes_out 74800 108540 bytes_in 120039 108540 station_ip 5.119.174.144 108540 port 26 108540 unique_id port 108540 remote_ip 10.8.0.90 108541 username arman1 108541 mac 108541 bytes_out 0 108541 bytes_in 0 108541 station_ip 5.119.21.75 108541 port 24 108541 unique_id port 108548 username mohammadjavad 108548 mac 108548 bytes_out 0 108548 bytes_in 0 108548 station_ip 83.122.253.250 108548 port 27 108548 unique_id port 108548 remote_ip 10.8.0.142 108549 username hashtadani3 108549 mac 108549 bytes_out 0 108549 bytes_in 0 108549 station_ip 5.202.2.14 108549 port 24 108549 unique_id port 108549 remote_ip 10.8.0.154 108550 username mohammadmahdi 108550 kill_reason Another user logged on this global unique id 108550 mac 108550 bytes_out 0 108550 bytes_in 0 108550 station_ip 5.119.71.151 108550 port 30 108550 unique_id port 108557 username mohammadmahdi 108557 mac 108557 bytes_out 0 108557 bytes_in 0 108557 station_ip 5.119.71.151 108557 port 30 108557 unique_id port 108558 username amir 108558 mac 108558 bytes_out 0 108558 bytes_in 0 108558 station_ip 46.225.212.80 108558 port 24 108558 unique_id port 108558 remote_ip 10.8.0.50 108560 username alirr 108560 kill_reason Maximum check online fails reached 108560 unique_id port 108560 bytes_out 991721 108560 bytes_in 25138733 108560 station_ip 86.57.28.130 108560 port 15729030 108560 nas_port_type Virtual 108560 remote_ip 5.5.5.190 108563 username avaanna 108563 mac 108563 bytes_out 0 108563 bytes_in 0 108563 station_ip 83.122.186.71 108563 port 32 108563 unique_id port 108569 username jamali 108569 kill_reason Another user logged on this global unique id 108569 mac 108569 bytes_out 0 108569 bytes_in 0 108569 station_ip 5.119.163.127 108569 port 15 108569 unique_id port 108570 username amir 108570 kill_reason Another user logged on this global unique id 108570 mac 108570 bytes_out 0 108570 bytes_in 0 108570 station_ip 46.225.212.80 108570 port 30 108570 unique_id port 108570 remote_ip 10.8.0.50 108572 username houshang 108572 kill_reason Another user logged on this global unique id 108572 mac 108572 bytes_out 0 108572 bytes_in 0 108572 station_ip 5.119.240.27 108572 port 32 108572 unique_id port 108572 remote_ip 10.8.0.22 108573 username houshang 108573 mac 108573 bytes_out 0 108573 bytes_in 0 108573 station_ip 5.119.240.27 108573 port 32 108573 unique_id port 108576 username amir 108576 mac 108576 bytes_out 0 108576 bytes_in 0 108576 station_ip 46.225.212.80 108576 port 30 108576 unique_id port 108581 username jamali 108581 kill_reason Another user logged on this global unique id 108581 mac 108581 bytes_out 0 108581 bytes_in 0 108581 station_ip 5.119.163.127 108543 remote_ip 10.8.0.154 108546 username hashtadani3 108546 mac 108546 bytes_out 0 108546 bytes_in 0 108546 station_ip 5.202.2.14 108546 port 24 108546 unique_id port 108546 remote_ip 10.8.0.154 108551 username hashtadani3 108551 mac 108551 bytes_out 0 108551 bytes_in 0 108551 station_ip 5.202.2.14 108551 port 24 108551 unique_id port 108551 remote_ip 10.8.0.154 108552 username amir 108552 mac 108552 bytes_out 0 108552 bytes_in 0 108552 station_ip 46.225.212.80 108552 port 27 108552 unique_id port 108552 remote_ip 10.8.0.50 108556 username hashtadani3 108556 mac 108556 bytes_out 0 108556 bytes_in 0 108556 station_ip 5.202.2.14 108556 port 24 108556 unique_id port 108556 remote_ip 10.8.0.154 108559 username jamali 108559 kill_reason Another user logged on this global unique id 108559 mac 108559 bytes_out 0 108559 bytes_in 0 108559 station_ip 5.119.163.127 108559 port 15 108559 unique_id port 108559 remote_ip 10.8.0.150 108564 username kamali1 108564 kill_reason Another user logged on this global unique id 108564 mac 108564 bytes_out 0 108564 bytes_in 0 108564 station_ip 5.120.162.37 108564 port 24 108564 unique_id port 108564 remote_ip 10.8.0.70 108565 username malekpoir 108565 mac 108565 bytes_out 0 108565 bytes_in 0 108565 station_ip 5.119.29.241 108565 port 29 108565 unique_id port 108566 username houshang 108566 mac 108566 bytes_out 0 108566 bytes_in 0 108566 station_ip 5.119.240.27 108566 port 29 108566 unique_id port 108566 remote_ip 10.8.0.22 108571 username avaanna 108571 kill_reason Another user logged on this global unique id 108571 mac 108571 bytes_out 0 108571 bytes_in 0 108571 station_ip 83.122.186.71 108571 port 33 108571 unique_id port 108571 remote_ip 10.8.0.98 108577 username houshang 108577 mac 108577 bytes_out 79149 108577 bytes_in 197485 108577 station_ip 5.119.65.199 108577 port 37 108577 unique_id port 108577 remote_ip 10.8.0.22 108579 username musa 108579 mac 108579 bytes_out 0 108579 bytes_in 0 108579 station_ip 89.199.183.255 108579 port 31 108579 unique_id port 108579 remote_ip 10.8.0.6 108580 username hashtadani3 108580 mac 108580 bytes_out 0 108580 bytes_in 0 108580 station_ip 83.122.130.15 108580 port 11 108580 unique_id port 108580 remote_ip 10.8.1.94 108585 username musa 108585 mac 108585 bytes_out 0 108585 bytes_in 0 108585 station_ip 89.199.183.255 108585 port 30 108585 unique_id port 108585 remote_ip 10.8.0.6 108586 username hashtadani3 108586 mac 108586 bytes_out 0 108586 bytes_in 0 108586 station_ip 83.122.130.15 108586 port 30 108586 unique_id port 108586 remote_ip 10.8.0.154 108587 username amir 108587 mac 108587 bytes_out 0 108587 bytes_in 0 108587 station_ip 46.225.212.80 108587 port 31 108587 unique_id port 108587 remote_ip 10.8.0.50 108588 username musa 108588 mac 108588 bytes_out 3830 108588 bytes_in 8476 108588 station_ip 89.199.183.255 108588 port 30 108588 unique_id port 108588 remote_ip 10.8.0.6 108589 username mehdizare 108589 mac 108589 bytes_out 235504 108589 bytes_in 164866 108589 station_ip 5.119.174.144 108589 port 26 108589 unique_id port 108589 remote_ip 10.8.0.90 108590 username mehdizare 108590 mac 108590 bytes_out 10625 108590 bytes_in 16237 108590 station_ip 5.119.174.144 108590 port 11 108590 unique_id port 108590 remote_ip 10.8.1.42 108591 username sedighe 108591 mac 108591 bytes_out 262629 108591 bytes_in 764891 108591 station_ip 83.123.123.166 108591 port 34 108591 unique_id port 108591 remote_ip 10.8.0.146 108547 station_ip 5.202.2.14 108547 port 24 108547 unique_id port 108547 remote_ip 10.8.0.154 108553 username mirzaei 108553 kill_reason Another user logged on this global unique id 108553 mac 108553 bytes_out 0 108553 bytes_in 0 108553 station_ip 5.120.139.126 108553 port 21 108553 unique_id port 108554 username tahmasebi 108554 mac 108554 bytes_out 0 108554 bytes_in 0 108554 station_ip 5.120.109.220 108554 port 15 108554 unique_id port 108555 username mohammadmahdi 108555 kill_reason Another user logged on this global unique id 108555 mac 108555 bytes_out 0 108555 bytes_in 0 108555 station_ip 5.119.71.151 108555 port 30 108555 unique_id port 108561 username malekpoir 108561 kill_reason Another user logged on this global unique id 108561 mac 108561 bytes_out 0 108561 bytes_in 0 108561 station_ip 5.119.29.241 108561 port 29 108561 unique_id port 108561 remote_ip 10.8.0.58 108562 username jamali 108562 kill_reason Another user logged on this global unique id 108562 mac 108562 bytes_out 0 108562 bytes_in 0 108562 station_ip 5.119.163.127 108562 port 15 108562 unique_id port 108567 username mohammadmahdi 108567 kill_reason Another user logged on this global unique id 108567 mac 108567 bytes_out 0 108567 bytes_in 0 108567 station_ip 5.119.71.151 108567 port 27 108567 unique_id port 108567 remote_ip 10.8.0.54 108568 username kamali1 108568 kill_reason Another user logged on this global unique id 108568 mac 108568 bytes_out 0 108568 bytes_in 0 108568 station_ip 5.120.162.37 108568 port 24 108568 unique_id port 108574 username naeimeh 108574 mac 108574 bytes_out 0 108574 bytes_in 0 108574 station_ip 83.122.23.75 108574 port 36 108574 unique_id port 108574 remote_ip 10.8.0.78 108575 username hashtadani3 108575 mac 108575 bytes_out 0 108575 bytes_in 0 108575 station_ip 83.122.130.15 108575 port 32 108575 unique_id port 108575 remote_ip 10.8.0.154 108578 username hashtadani3 108578 mac 108578 bytes_out 0 108578 bytes_in 0 108578 station_ip 83.122.130.15 108578 port 11 108578 unique_id port 108578 remote_ip 10.8.1.94 108582 username hashtadani3 108582 mac 108582 bytes_out 0 108582 bytes_in 0 108582 station_ip 83.122.130.15 108582 port 31 108582 unique_id port 108582 remote_ip 10.8.0.154 108595 username musa 108595 mac 108595 bytes_out 0 108595 bytes_in 0 108595 station_ip 89.199.183.255 108595 port 31 108595 unique_id port 108595 remote_ip 10.8.0.6 108596 username musa 108596 mac 108596 bytes_out 0 108596 bytes_in 0 108596 station_ip 89.199.183.255 108596 port 15 108596 unique_id port 108596 remote_ip 10.8.0.6 108598 username musa 108598 mac 108598 bytes_out 0 108598 bytes_in 0 108598 station_ip 89.199.183.255 108598 port 31 108598 unique_id port 108598 remote_ip 10.8.0.6 108604 username amir 108604 mac 108604 bytes_out 47858 108604 bytes_in 352768 108604 station_ip 46.225.212.80 108604 port 15 108604 unique_id port 108604 remote_ip 10.8.0.50 108606 username mahdixz 108606 unique_id port 108606 terminate_cause User-Request 108606 bytes_out 3131303 108606 bytes_in 74585468 108606 station_ip 151.235.70.107 108606 port 15729032 108606 nas_port_type Virtual 108606 remote_ip 5.5.5.255 108608 username hashtadani3 108608 mac 108608 bytes_out 0 108608 bytes_in 0 108608 station_ip 83.122.130.15 108608 port 15 108608 unique_id port 108608 remote_ip 10.8.0.154 108614 username hashtadani3 108614 mac 108614 bytes_out 0 108614 bytes_in 0 108614 station_ip 83.122.130.15 108614 port 31 108614 unique_id port 108614 remote_ip 10.8.0.154 108615 username jamali 108615 mac 108581 port 15 108581 unique_id port 108583 username hashtadani3 108583 mac 108583 bytes_out 0 108583 bytes_in 0 108583 station_ip 83.122.130.15 108583 port 31 108583 unique_id port 108583 remote_ip 10.8.0.154 108584 username hashtadani3 108584 mac 108584 bytes_out 0 108584 bytes_in 0 108584 station_ip 83.122.130.15 108584 port 31 108584 unique_id port 108584 remote_ip 10.8.0.154 108592 username musa 108592 mac 108592 bytes_out 6010 108592 bytes_in 11119 108592 station_ip 89.199.183.255 108592 port 31 108592 unique_id port 108592 remote_ip 10.8.0.6 108593 username musa 108593 mac 108593 bytes_out 0 108593 bytes_in 0 108593 station_ip 89.199.183.255 108593 port 32 108593 unique_id port 108593 remote_ip 10.8.0.6 108594 username jamali 108594 mac 108594 bytes_out 0 108594 bytes_in 0 108594 station_ip 5.119.163.127 108594 port 15 108594 unique_id port 108597 username jamali 108597 mac 108597 bytes_out 72110 108597 bytes_in 359661 108597 station_ip 5.119.163.127 108597 port 32 108597 unique_id port 108597 remote_ip 10.8.0.150 108607 username hashtadani3 108607 mac 108607 bytes_out 0 108607 bytes_in 0 108607 station_ip 83.122.130.15 108607 port 12 108607 unique_id port 108607 remote_ip 10.8.1.94 108611 username jamali 108611 mac 108611 bytes_out 28336 108611 bytes_in 29562 108611 station_ip 5.119.163.127 108611 port 31 108611 unique_id port 108611 remote_ip 10.8.0.150 108612 username hashtadani3 108612 mac 108612 bytes_out 0 108612 bytes_in 0 108612 station_ip 83.122.130.15 108612 port 31 108612 unique_id port 108612 remote_ip 10.8.0.154 108613 username jamali 108613 mac 108613 bytes_out 11158 108613 bytes_in 13018 108613 station_ip 5.119.163.127 108613 port 15 108613 unique_id port 108613 remote_ip 10.8.0.150 108616 username aminvpn 108616 unique_id port 108616 terminate_cause User-Request 108616 bytes_out 9402655 108616 bytes_in 301631890 108616 station_ip 5.119.89.251 108616 port 15729027 108616 nas_port_type Virtual 108616 remote_ip 5.5.5.177 108619 username mohammadmahdi 108619 kill_reason Another user logged on this global unique id 108619 mac 108619 bytes_out 0 108619 bytes_in 0 108619 station_ip 5.119.71.151 108619 port 27 108619 unique_id port 108622 username kamali1 108622 kill_reason Another user logged on this global unique id 108622 mac 108622 bytes_out 0 108622 bytes_in 0 108622 station_ip 5.120.162.37 108622 port 24 108622 unique_id port 108623 username hashtadani3 108623 mac 108623 bytes_out 0 108623 bytes_in 0 108623 station_ip 83.122.130.15 108623 port 31 108623 unique_id port 108623 remote_ip 10.8.0.154 108625 username amir 108625 mac 108625 bytes_out 81119 108625 bytes_in 712552 108625 station_ip 46.225.212.80 108625 port 26 108625 unique_id port 108625 remote_ip 10.8.0.50 108626 username hashtadani3 108626 mac 108626 bytes_out 0 108626 bytes_in 0 108626 station_ip 83.122.130.15 108626 port 33 108626 unique_id port 108626 remote_ip 10.8.0.154 108628 username hashtadani3 108628 mac 108628 bytes_out 0 108628 bytes_in 0 108628 station_ip 83.122.130.15 108628 port 13 108628 unique_id port 108628 remote_ip 10.8.1.94 108630 username hashtadani3 108630 mac 108630 bytes_out 0 108630 bytes_in 0 108630 station_ip 83.122.130.15 108630 port 13 108630 unique_id port 108630 remote_ip 10.8.1.94 108634 username hashtadani3 108634 mac 108634 bytes_out 0 108634 bytes_in 0 108634 station_ip 83.122.130.15 108634 port 13 108634 unique_id port 108634 remote_ip 10.8.1.94 108599 username forozande 108599 mac 108599 bytes_out 0 108599 bytes_in 0 108599 station_ip 113.203.74.180 108599 port 15 108599 unique_id port 108599 remote_ip 10.8.0.74 108600 username mohammadmahdi 108600 kill_reason Another user logged on this global unique id 108600 mac 108600 bytes_out 0 108600 bytes_in 0 108600 station_ip 5.119.71.151 108600 port 27 108600 unique_id port 108601 username hashtadani3 108601 mac 108601 bytes_out 3305741 108601 bytes_in 39651975 108601 station_ip 83.122.130.15 108601 port 30 108601 unique_id port 108601 remote_ip 10.8.0.154 108602 username mehdizare 108602 mac 108602 bytes_out 13005 108602 bytes_in 17046 108602 station_ip 5.119.174.144 108602 port 11 108602 unique_id port 108602 remote_ip 10.8.1.42 108603 username avaanna 108603 mac 108603 bytes_out 0 108603 bytes_in 0 108603 station_ip 83.122.186.71 108603 port 33 108603 unique_id port 108605 username houshang 108605 mac 108605 bytes_out 0 108605 bytes_in 0 108605 station_ip 5.119.59.164 108605 port 34 108605 unique_id port 108605 remote_ip 10.8.0.22 108609 username sedighe 108609 mac 108609 bytes_out 79917 108609 bytes_in 89274 108609 station_ip 113.203.40.161 108609 port 26 108609 unique_id port 108609 remote_ip 10.8.0.146 108610 username hashtadani3 108610 mac 108610 bytes_out 22879 108610 bytes_in 43929 108610 station_ip 83.122.130.15 108610 port 15 108610 unique_id port 108610 remote_ip 10.8.0.154 108618 username hashtadani3 108618 mac 108618 bytes_out 1735895 108618 bytes_in 25961764 108618 station_ip 83.122.130.15 108618 port 31 108618 unique_id port 108618 remote_ip 10.8.0.154 108620 username hashtadani3 108620 mac 108620 bytes_out 0 108620 bytes_in 0 108620 station_ip 83.122.130.15 108620 port 31 108620 unique_id port 108620 remote_ip 10.8.0.154 108624 username hashtadani3 108624 mac 108624 bytes_out 0 108624 bytes_in 0 108624 station_ip 83.122.130.15 108624 port 33 108624 unique_id port 108624 remote_ip 10.8.0.154 108629 username hashtadani3 108629 mac 108629 bytes_out 0 108629 bytes_in 0 108629 station_ip 83.122.130.15 108629 port 13 108629 unique_id port 108629 remote_ip 10.8.1.94 108632 username hashtadani3 108632 mac 108632 bytes_out 0 108632 bytes_in 0 108632 station_ip 83.122.130.15 108632 port 13 108632 unique_id port 108632 remote_ip 10.8.1.94 108633 username houshang 108633 kill_reason Another user logged on this global unique id 108633 mac 108633 bytes_out 0 108633 bytes_in 0 108633 station_ip 5.119.59.164 108633 port 15 108633 unique_id port 108633 remote_ip 10.8.0.22 108636 username hashtadani3 108636 mac 108636 bytes_out 0 108636 bytes_in 0 108636 station_ip 83.122.130.15 108636 port 33 108636 unique_id port 108636 remote_ip 10.8.0.154 108637 username hashtadani3 108637 mac 108637 bytes_out 0 108637 bytes_in 0 108637 station_ip 83.122.130.15 108637 port 33 108637 unique_id port 108637 remote_ip 10.8.0.154 108638 username rajaei 108638 kill_reason Another user logged on this global unique id 108638 mac 108638 bytes_out 0 108638 bytes_in 0 108638 station_ip 89.34.151.3 108638 port 26 108638 unique_id port 108638 remote_ip 10.8.0.34 108641 username zare 108641 kill_reason Another user logged on this global unique id 108641 mac 108641 bytes_out 0 108641 bytes_in 0 108641 station_ip 37.27.35.154 108641 port 12 108641 unique_id port 108641 remote_ip 10.8.1.58 108643 username rajaei 108643 kill_reason Another user logged on this global unique id 108643 mac 108643 bytes_out 0 108643 bytes_in 0 108643 station_ip 89.34.151.3 108615 bytes_out 0 108615 bytes_in 0 108615 station_ip 5.119.163.127 108615 port 31 108615 unique_id port 108615 remote_ip 10.8.0.150 108617 username amir 108617 mac 108617 bytes_out 0 108617 bytes_in 0 108617 station_ip 46.225.212.80 108617 port 31 108617 unique_id port 108617 remote_ip 10.8.0.50 108621 username sedighe 108621 mac 108621 bytes_out 36915 108621 bytes_in 31620 108621 station_ip 113.203.40.161 108621 port 26 108621 unique_id port 108621 remote_ip 10.8.0.146 108627 username aminvpn 108627 unique_id port 108627 terminate_cause User-Request 108627 bytes_out 1468049 108627 bytes_in 10596028 108627 station_ip 5.119.89.251 108627 port 15729033 108627 nas_port_type Virtual 108627 remote_ip 5.5.5.255 108631 username hashtadani3 108631 mac 108631 bytes_out 0 108631 bytes_in 0 108631 station_ip 83.122.130.15 108631 port 13 108631 unique_id port 108631 remote_ip 10.8.1.94 108635 username hashtadani3 108635 mac 108635 bytes_out 0 108635 bytes_in 0 108635 station_ip 83.122.130.15 108635 port 33 108635 unique_id port 108635 remote_ip 10.8.0.154 108639 username mahdixz 108639 unique_id port 108639 terminate_cause User-Request 108639 bytes_out 222678 108639 bytes_in 1836383 108639 station_ip 83.122.42.122 108639 port 15729035 108639 nas_port_type Virtual 108639 remote_ip 5.5.5.145 108651 username amirabbas 108651 unique_id port 108651 terminate_cause User-Request 108651 bytes_out 22920299 108651 bytes_in 615029532 108651 station_ip 37.27.14.167 108651 port 15729031 108651 nas_port_type Virtual 108651 remote_ip 5.5.5.193 108653 username kamali1 108653 kill_reason Another user logged on this global unique id 108653 mac 108653 bytes_out 0 108653 bytes_in 0 108653 station_ip 5.120.162.37 108653 port 24 108653 unique_id port 108656 username mahdixz 108656 unique_id port 108656 terminate_cause Lost-Carrier 108656 bytes_out 1129997 108656 bytes_in 25686863 108656 station_ip 151.235.70.107 108656 port 15729036 108656 nas_port_type Virtual 108656 remote_ip 5.5.5.146 108657 username hashtadani3 108657 mac 108657 bytes_out 0 108657 bytes_in 0 108657 station_ip 83.122.130.15 108657 port 33 108657 unique_id port 108657 remote_ip 10.8.0.154 108660 username musa 108660 kill_reason Another user logged on this global unique id 108660 mac 108660 bytes_out 0 108660 bytes_in 0 108660 station_ip 89.199.183.255 108660 port 32 108660 unique_id port 108660 remote_ip 10.8.0.6 108661 username hashtadani3 108661 mac 108661 bytes_out 0 108661 bytes_in 0 108661 station_ip 83.122.130.15 108661 port 33 108661 unique_id port 108661 remote_ip 10.8.0.154 108662 username kamali1 108662 kill_reason Another user logged on this global unique id 108662 mac 108662 bytes_out 0 108662 bytes_in 0 108662 station_ip 5.120.162.37 108662 port 24 108662 unique_id port 108663 username rajaei 108663 kill_reason Another user logged on this global unique id 108663 mac 108663 bytes_out 0 108663 bytes_in 0 108663 station_ip 89.34.151.3 108663 port 26 108663 unique_id port 108668 username hashtadani3 108668 mac 108668 bytes_out 0 108668 bytes_in 0 108668 station_ip 83.123.220.71 108668 port 31 108668 unique_id port 108668 remote_ip 10.8.0.154 108669 username hashtadani3 108669 mac 108669 bytes_out 0 108669 bytes_in 0 108669 station_ip 83.123.220.71 108669 port 31 108669 unique_id port 108669 remote_ip 10.8.0.154 108671 username amir 108671 mac 108671 bytes_out 26026 108671 bytes_in 49667 108671 station_ip 46.225.212.80 108671 port 13 108671 unique_id port 108671 remote_ip 10.8.1.22 108676 username ahmadipour 108676 unique_id port 108640 username tahmasebi 108640 kill_reason Another user logged on this global unique id 108640 mac 108640 bytes_out 0 108640 bytes_in 0 108640 station_ip 5.120.176.53 108640 port 35 108640 unique_id port 108640 remote_ip 10.8.0.42 108642 username hashtadani3 108642 mac 108642 bytes_out 0 108642 bytes_in 0 108642 station_ip 83.122.130.15 108642 port 13 108642 unique_id port 108642 remote_ip 10.8.1.94 108646 username hashtadani3 108646 mac 108646 bytes_out 0 108646 bytes_in 0 108646 station_ip 83.122.130.15 108646 port 34 108646 unique_id port 108646 remote_ip 10.8.0.154 108648 username sedighe 108648 mac 108648 bytes_out 0 108648 bytes_in 0 108648 station_ip 113.203.40.161 108648 port 31 108648 unique_id port 108648 remote_ip 10.8.0.146 108649 username mehdizare 108649 mac 108649 bytes_out 38947 108649 bytes_in 53245 108649 station_ip 5.119.174.144 108649 port 11 108649 unique_id port 108649 remote_ip 10.8.1.42 108652 username tahmasebi 108652 kill_reason Another user logged on this global unique id 108652 mac 108652 bytes_out 0 108652 bytes_in 0 108652 station_ip 5.120.176.53 108652 port 35 108652 unique_id port 108655 username rajaei 108655 kill_reason Another user logged on this global unique id 108655 mac 108655 bytes_out 0 108655 bytes_in 0 108655 station_ip 89.34.151.3 108655 port 26 108655 unique_id port 108658 username mirzaei 108658 kill_reason Another user logged on this global unique id 108658 mac 108658 bytes_out 0 108658 bytes_in 0 108658 station_ip 5.120.139.126 108658 port 21 108658 unique_id port 108665 username hashtadani3 108665 mac 108665 bytes_out 0 108665 bytes_in 0 108665 station_ip 83.122.130.15 108665 port 31 108665 unique_id port 108665 remote_ip 10.8.0.154 108667 username amir 108667 mac 108667 bytes_out 30805 108667 bytes_in 136731 108667 station_ip 46.225.212.80 108667 port 13 108667 unique_id port 108667 remote_ip 10.8.1.22 108670 username kamali1 108670 kill_reason Another user logged on this global unique id 108670 mac 108670 bytes_out 0 108670 bytes_in 0 108670 station_ip 5.120.162.37 108670 port 24 108670 unique_id port 108672 username hamid 108672 mac 108672 bytes_out 0 108672 bytes_in 0 108672 station_ip 83.123.134.244 108672 port 34 108672 unique_id port 108672 remote_ip 10.8.0.106 108674 username hashtadani3 108674 mac 108674 bytes_out 0 108674 bytes_in 0 108674 station_ip 83.123.220.71 108674 port 31 108674 unique_id port 108674 remote_ip 10.8.0.154 108675 username morteza 108675 mac 108675 bytes_out 0 108675 bytes_in 0 108675 station_ip 37.129.132.104 108675 port 33 108675 unique_id port 108675 remote_ip 10.8.0.46 108678 username rajaei 108678 kill_reason Another user logged on this global unique id 108678 mac 108678 bytes_out 0 108678 bytes_in 0 108678 station_ip 89.34.151.3 108678 port 26 108678 unique_id port 108679 username malekpoir 108679 kill_reason Another user logged on this global unique id 108679 mac 108679 bytes_out 0 108679 bytes_in 0 108679 station_ip 5.119.29.241 108679 port 29 108679 unique_id port 108679 remote_ip 10.8.0.58 108683 username hashtadani3 108683 mac 108683 bytes_out 2231 108683 bytes_in 4834 108683 station_ip 83.123.220.71 108683 port 33 108683 unique_id port 108683 remote_ip 10.8.0.154 108688 username zare 108688 kill_reason Another user logged on this global unique id 108688 mac 108688 bytes_out 0 108688 bytes_in 0 108688 station_ip 37.27.35.154 108688 port 12 108688 unique_id port 108697 username houshang 108697 mac 108697 bytes_out 0 108697 bytes_in 0 108697 station_ip 5.119.59.164 108697 port 15 108643 port 26 108643 unique_id port 108644 username mahdixz 108644 unique_id port 108644 terminate_cause User-Request 108644 bytes_out 776592 108644 bytes_in 19538708 108644 station_ip 83.122.87.68 108644 port 15729037 108644 nas_port_type Virtual 108644 remote_ip 5.5.5.148 108645 username tahmasebi 108645 kill_reason Another user logged on this global unique id 108645 mac 108645 bytes_out 0 108645 bytes_in 0 108645 station_ip 5.120.176.53 108645 port 35 108645 unique_id port 108647 username amir 108647 mac 108647 bytes_out 0 108647 bytes_in 0 108647 station_ip 46.225.212.80 108647 port 33 108647 unique_id port 108647 remote_ip 10.8.0.50 108650 username hashtadani3 108650 mac 108650 bytes_out 0 108650 bytes_in 0 108650 station_ip 83.122.130.15 108650 port 31 108650 unique_id port 108650 remote_ip 10.8.0.154 108654 username tahmasebi 108654 kill_reason Another user logged on this global unique id 108654 mac 108654 bytes_out 0 108654 bytes_in 0 108654 station_ip 5.120.176.53 108654 port 35 108654 unique_id port 108659 username houshang 108659 mac 108659 bytes_out 0 108659 bytes_in 0 108659 station_ip 5.119.59.164 108659 port 15 108659 unique_id port 108664 username amir 108664 mac 108664 bytes_out 0 108664 bytes_in 0 108664 station_ip 46.225.212.80 108664 port 31 108664 unique_id port 108664 remote_ip 10.8.0.50 108666 username hashtadani3 108666 mac 108666 bytes_out 0 108666 bytes_in 0 108666 station_ip 83.122.130.15 108666 port 31 108666 unique_id port 108666 remote_ip 10.8.0.154 108673 username amir 108673 mac 108673 bytes_out 0 108673 bytes_in 0 108673 station_ip 46.225.212.80 108673 port 13 108673 unique_id port 108673 remote_ip 10.8.1.22 108677 username alirr 108677 unique_id port 108677 terminate_cause Lost-Carrier 108677 bytes_out 21585436 108677 bytes_in 521502603 108677 station_ip 5.119.185.205 108677 port 15729034 108677 nas_port_type Virtual 108677 remote_ip 5.5.5.142 108680 username hashtadani3 108680 mac 108680 bytes_out 0 108680 bytes_in 0 108680 station_ip 83.123.220.71 108680 port 31 108680 unique_id port 108680 remote_ip 10.8.0.154 108682 username tahmasebi 108682 kill_reason Another user logged on this global unique id 108682 mac 108682 bytes_out 0 108682 bytes_in 0 108682 station_ip 5.120.176.53 108682 port 35 108682 unique_id port 108684 username mosi 108684 mac 108684 bytes_out 0 108684 bytes_in 0 108684 station_ip 151.235.125.25 108684 port 34 108684 unique_id port 108684 remote_ip 10.8.0.138 108686 username forozande 108686 mac 108686 bytes_out 0 108686 bytes_in 0 108686 station_ip 83.123.15.101 108686 port 31 108686 unique_id port 108686 remote_ip 10.8.0.74 108690 username kamali1 108690 mac 108690 bytes_out 0 108690 bytes_in 0 108690 station_ip 5.120.162.37 108690 port 24 108690 unique_id port 108694 username ahmadipour 108694 unique_id port 108694 terminate_cause Lost-Carrier 108694 bytes_out 354702 108694 bytes_in 9320212 108694 station_ip 37.129.166.95 108694 port 15729040 108694 nas_port_type Virtual 108694 remote_ip 5.5.5.155 108696 username musa 108696 mac 108696 bytes_out 0 108696 bytes_in 0 108696 station_ip 89.199.183.255 108696 port 32 108696 unique_id port 108698 username zare 108698 kill_reason Another user logged on this global unique id 108698 mac 108698 bytes_out 0 108698 bytes_in 0 108698 station_ip 37.27.35.154 108698 port 12 108698 unique_id port 108700 username aminvpn 108700 unique_id port 108700 terminate_cause User-Request 108700 bytes_out 0 108700 bytes_in 140 108700 station_ip 109.125.128.116 108676 terminate_cause Lost-Carrier 108676 bytes_out 96686 108676 bytes_in 1746966 108676 station_ip 37.129.212.251 108676 port 15729038 108676 nas_port_type Virtual 108676 remote_ip 5.5.5.150 108681 username forozande 108681 mac 108681 bytes_out 0 108681 bytes_in 0 108681 station_ip 37.129.47.22 108681 port 15 108681 unique_id port 108681 remote_ip 10.8.0.74 108685 username mirzaei 108685 kill_reason Another user logged on this global unique id 108685 mac 108685 bytes_out 0 108685 bytes_in 0 108685 station_ip 5.120.139.126 108685 port 21 108685 unique_id port 108687 username mehdizare 108687 mac 108687 bytes_out 57907 108687 bytes_in 90721 108687 station_ip 5.119.174.144 108687 port 11 108687 unique_id port 108687 remote_ip 10.8.1.42 108689 username malekpoir 108689 mac 108689 bytes_out 0 108689 bytes_in 0 108689 station_ip 5.119.29.241 108689 port 29 108689 unique_id port 108691 username mehdizare 108691 mac 108691 bytes_out 10425 108691 bytes_in 20114 108691 station_ip 5.119.174.144 108691 port 11 108691 unique_id port 108691 remote_ip 10.8.1.42 108692 username houshang 108692 kill_reason Another user logged on this global unique id 108692 mac 108692 bytes_out 0 108692 bytes_in 0 108692 station_ip 5.119.59.164 108692 port 15 108692 unique_id port 108692 remote_ip 10.8.0.22 108693 username rajaei 108693 kill_reason Another user logged on this global unique id 108693 mac 108693 bytes_out 0 108693 bytes_in 0 108693 station_ip 89.34.151.3 108693 port 26 108693 unique_id port 108695 username mehdizare 108695 mac 108695 bytes_out 12121 108695 bytes_in 14985 108695 station_ip 5.119.174.144 108695 port 11 108695 unique_id port 108695 remote_ip 10.8.1.42 108699 username aminvpn 108699 unique_id port 108699 terminate_cause User-Request 108699 bytes_out 0 108699 bytes_in 0 108699 station_ip 109.125.128.116 108699 port 15729041 108699 nas_port_type Virtual 108699 remote_ip 5.5.5.157 108701 username hashtadani3 108701 mac 108701 bytes_out 0 108701 bytes_in 0 108701 station_ip 83.123.239.175 108701 port 11 108701 unique_id port 108701 remote_ip 10.8.1.94 108702 username hashtadani3 108702 mac 108702 bytes_out 0 108702 bytes_in 0 108702 station_ip 83.123.239.175 108702 port 11 108702 unique_id port 108702 remote_ip 10.8.1.94 108706 username rajaei 108706 kill_reason Another user logged on this global unique id 108706 mac 108706 bytes_out 0 108706 bytes_in 0 108706 station_ip 89.34.151.3 108706 port 26 108706 unique_id port 108710 username hashtadani3 108710 mac 108710 bytes_out 0 108710 bytes_in 0 108710 station_ip 83.123.239.175 108710 port 15 108710 unique_id port 108710 remote_ip 10.8.0.154 108715 username amir 108715 mac 108715 bytes_out 1710990 108715 bytes_in 3719621 108715 station_ip 46.225.212.80 108715 port 13 108715 unique_id port 108715 remote_ip 10.8.1.22 108718 username rezasekonji 108718 mac 108718 bytes_out 47216 108718 bytes_in 457096 108718 station_ip 83.123.219.115 108718 port 24 108718 unique_id port 108718 remote_ip 10.8.0.130 108720 username morteza 108720 mac 108720 bytes_out 0 108720 bytes_in 0 108720 station_ip 37.129.162.136 108720 port 33 108720 unique_id port 108720 remote_ip 10.8.0.46 108724 username rezasekonji 108724 mac 108724 bytes_out 0 108724 bytes_in 0 108724 station_ip 83.123.219.115 108724 port 24 108724 unique_id port 108724 remote_ip 10.8.0.130 108726 username rezasekonji 108726 mac 108726 bytes_out 0 108726 bytes_in 0 108726 station_ip 83.123.219.115 108726 port 24 108726 unique_id port 108726 remote_ip 10.8.0.130 108697 unique_id port 108704 username hashtadani3 108704 mac 108704 bytes_out 0 108704 bytes_in 0 108704 station_ip 83.123.239.175 108704 port 11 108704 unique_id port 108704 remote_ip 10.8.1.94 108705 username zare 108705 kill_reason Another user logged on this global unique id 108705 mac 108705 bytes_out 0 108705 bytes_in 0 108705 station_ip 37.27.35.154 108705 port 12 108705 unique_id port 108713 username zare 108713 kill_reason Another user logged on this global unique id 108713 mac 108713 bytes_out 0 108713 bytes_in 0 108713 station_ip 37.27.35.154 108713 port 12 108713 unique_id port 108714 username hashtadani3 108714 mac 108714 bytes_out 0 108714 bytes_in 0 108714 station_ip 83.123.239.175 108714 port 31 108714 unique_id port 108714 remote_ip 10.8.0.154 108717 username rajaei 108717 mac 108717 bytes_out 0 108717 bytes_in 0 108717 station_ip 89.34.151.3 108717 port 26 108717 unique_id port 108721 username rezasekonji 108721 mac 108721 bytes_out 0 108721 bytes_in 0 108721 station_ip 83.123.219.115 108721 port 24 108721 unique_id port 108721 remote_ip 10.8.0.130 108725 username hashtadani3 108725 mac 108725 bytes_out 0 108725 bytes_in 0 108725 station_ip 83.123.239.175 108725 port 26 108725 unique_id port 108725 remote_ip 10.8.0.154 108727 username hashtadani3 108727 mac 108727 bytes_out 0 108727 bytes_in 0 108727 station_ip 83.123.239.175 108727 port 26 108727 unique_id port 108727 remote_ip 10.8.0.154 108730 username rezasekonji 108730 mac 108730 bytes_out 0 108730 bytes_in 0 108730 station_ip 83.123.219.115 108730 port 26 108730 unique_id port 108730 remote_ip 10.8.0.130 108740 username mahdiyehalizadeh 108740 mac 108740 bytes_out 0 108740 bytes_in 0 108740 station_ip 37.129.91.76 108740 port 15 108740 unique_id port 108740 remote_ip 10.8.0.82 108742 username hashtadani3 108742 mac 108742 bytes_out 0 108742 bytes_in 0 108742 station_ip 83.123.239.175 108742 port 27 108742 unique_id port 108742 remote_ip 10.8.0.154 108744 username mosi 108744 mac 108744 bytes_out 0 108744 bytes_in 0 108744 station_ip 151.235.125.25 108744 port 24 108744 unique_id port 108744 remote_ip 10.8.0.138 108747 username zare 108747 kill_reason Another user logged on this global unique id 108747 mac 108747 bytes_out 0 108747 bytes_in 0 108747 station_ip 37.27.35.154 108747 port 12 108747 unique_id port 108755 username mohammadmahdi 108755 mac 108755 bytes_out 0 108755 bytes_in 0 108755 station_ip 5.119.71.151 108755 port 15 108755 unique_id port 108755 remote_ip 10.8.0.54 108758 username hashtadani3 108758 mac 108758 bytes_out 0 108758 bytes_in 0 108758 station_ip 83.123.239.175 108758 port 11 108758 unique_id port 108758 remote_ip 10.8.1.94 108763 username hashtadani3 108763 mac 108763 bytes_out 0 108763 bytes_in 0 108763 station_ip 83.123.239.175 108763 port 27 108763 unique_id port 108763 remote_ip 10.8.0.154 108766 username rezasekonji 108766 mac 108766 bytes_out 0 108766 bytes_in 0 108766 station_ip 83.123.219.115 108766 port 26 108766 unique_id port 108766 remote_ip 10.8.0.130 108767 username hashtadani3 108767 mac 108767 bytes_out 0 108767 bytes_in 0 108767 station_ip 83.123.239.175 108767 port 15 108767 unique_id port 108767 remote_ip 10.8.0.154 108770 username hashtadani3 108770 mac 108770 bytes_out 0 108770 bytes_in 0 108770 station_ip 83.123.239.175 108770 port 15 108770 unique_id port 108770 remote_ip 10.8.0.154 108771 username kamali1 108771 kill_reason Another user logged on this global unique id 108700 port 15729042 108700 nas_port_type Virtual 108700 remote_ip 5.5.5.158 108703 username hashtadani3 108703 mac 108703 bytes_out 0 108703 bytes_in 0 108703 station_ip 83.123.239.175 108703 port 11 108703 unique_id port 108703 remote_ip 10.8.1.94 108707 username hashtadani3 108707 mac 108707 bytes_out 0 108707 bytes_in 0 108707 station_ip 83.123.239.175 108707 port 15 108707 unique_id port 108707 remote_ip 10.8.0.154 108708 username hashtadani3 108708 mac 108708 bytes_out 0 108708 bytes_in 0 108708 station_ip 83.123.239.175 108708 port 15 108708 unique_id port 108708 remote_ip 10.8.0.154 108709 username hashtadani3 108709 mac 108709 bytes_out 0 108709 bytes_in 0 108709 station_ip 83.123.239.175 108709 port 15 108709 unique_id port 108709 remote_ip 10.8.0.154 108711 username hashtadani3 108711 mac 108711 bytes_out 0 108711 bytes_in 0 108711 station_ip 83.123.239.175 108711 port 15 108711 unique_id port 108711 remote_ip 10.8.0.154 108712 username ahmadi 108712 unique_id port 108712 terminate_cause User-Request 108712 bytes_out 56362 108712 bytes_in 550118 108712 station_ip 37.129.249.11 108712 port 15729050 108712 nas_port_type Virtual 108712 remote_ip 5.5.5.162 108716 username hashtadani3 108716 mac 108716 bytes_out 0 108716 bytes_in 0 108716 station_ip 83.123.239.175 108716 port 32 108716 unique_id port 108716 remote_ip 10.8.0.154 108719 username rezasekonji 108719 mac 108719 bytes_out 0 108719 bytes_in 0 108719 station_ip 83.123.219.115 108719 port 24 108719 unique_id port 108719 remote_ip 10.8.0.130 108722 username zare 108722 kill_reason Another user logged on this global unique id 108722 mac 108722 bytes_out 0 108722 bytes_in 0 108722 station_ip 37.27.35.154 108722 port 12 108722 unique_id port 108723 username aminvpn 108723 unique_id port 108723 terminate_cause Lost-Carrier 108723 bytes_out 6470078 108723 bytes_in 111374032 108723 station_ip 109.125.128.116 108723 port 15729048 108723 nas_port_type Virtual 108723 remote_ip 5.5.5.159 108734 username hashtadani3 108734 mac 108734 bytes_out 0 108734 bytes_in 0 108734 station_ip 83.123.239.175 108734 port 27 108734 unique_id port 108734 remote_ip 10.8.0.154 108736 username zare 108736 kill_reason Another user logged on this global unique id 108736 mac 108736 bytes_out 0 108736 bytes_in 0 108736 station_ip 37.27.35.154 108736 port 12 108736 unique_id port 108737 username hashtadani3 108737 mac 108737 bytes_out 0 108737 bytes_in 0 108737 station_ip 83.123.239.175 108737 port 26 108737 unique_id port 108737 remote_ip 10.8.0.154 108739 username rezasekonji 108739 mac 108739 bytes_out 0 108739 bytes_in 0 108739 station_ip 83.123.219.115 108739 port 26 108739 unique_id port 108739 remote_ip 10.8.0.130 108741 username hashtadani3 108741 mac 108741 bytes_out 0 108741 bytes_in 0 108741 station_ip 83.123.239.175 108741 port 15 108741 unique_id port 108741 remote_ip 10.8.0.154 108745 username mohammadmahdi 108745 mac 108745 bytes_out 0 108745 bytes_in 0 108745 station_ip 5.119.71.151 108745 port 32 108745 unique_id port 108745 remote_ip 10.8.0.54 108746 username kamali1 108746 kill_reason Another user logged on this global unique id 108746 mac 108746 bytes_out 0 108746 bytes_in 0 108746 station_ip 5.120.162.37 108746 port 29 108746 unique_id port 108748 username hashtadani3 108748 mac 108748 bytes_out 0 108748 bytes_in 0 108748 station_ip 83.123.239.175 108748 port 26 108748 unique_id port 108748 remote_ip 10.8.0.154 108750 username hashtadani3 108750 mac 108750 bytes_out 0 108728 username rezasekonji 108728 mac 108728 bytes_out 0 108728 bytes_in 0 108728 station_ip 83.123.219.115 108728 port 26 108728 unique_id port 108728 remote_ip 10.8.0.130 108729 username rezasekonji 108729 mac 108729 bytes_out 0 108729 bytes_in 0 108729 station_ip 83.123.219.115 108729 port 26 108729 unique_id port 108729 remote_ip 10.8.0.130 108731 username rezasekonji 108731 mac 108731 bytes_out 0 108731 bytes_in 0 108731 station_ip 83.123.219.115 108731 port 26 108731 unique_id port 108731 remote_ip 10.8.0.130 108732 username mohammadmahdi 108732 mac 108732 bytes_out 0 108732 bytes_in 0 108732 station_ip 5.119.71.151 108732 port 27 108732 unique_id port 108733 username rezasekonji 108733 mac 108733 bytes_out 0 108733 bytes_in 0 108733 station_ip 83.123.219.115 108733 port 26 108733 unique_id port 108733 remote_ip 10.8.0.130 108735 username rezasekonji 108735 mac 108735 bytes_out 0 108735 bytes_in 0 108735 station_ip 83.123.219.115 108735 port 26 108735 unique_id port 108735 remote_ip 10.8.0.130 108738 username kamali1 108738 kill_reason Another user logged on this global unique id 108738 mac 108738 bytes_out 0 108738 bytes_in 0 108738 station_ip 5.120.162.37 108738 port 29 108738 unique_id port 108738 remote_ip 10.8.0.70 108743 username mahdiyehalizadeh 108743 mac 108743 bytes_out 0 108743 bytes_in 0 108743 station_ip 37.129.91.76 108743 port 26 108743 unique_id port 108743 remote_ip 10.8.0.82 108749 username tahmasebi 108749 kill_reason Another user logged on this global unique id 108749 mac 108749 bytes_out 0 108749 bytes_in 0 108749 station_ip 5.120.176.53 108749 port 35 108749 unique_id port 108751 username rezasekonji 108751 mac 108751 bytes_out 0 108751 bytes_in 0 108751 station_ip 83.123.219.115 108751 port 15 108751 unique_id port 108751 remote_ip 10.8.0.130 108752 username mohammadmahdi 108752 mac 108752 bytes_out 174070 108752 bytes_in 243913 108752 station_ip 5.119.71.151 108752 port 24 108752 unique_id port 108752 remote_ip 10.8.0.54 108753 username alihosseini 108753 kill_reason Relative expiration date has reached 108753 mac 108753 bytes_out 0 108753 bytes_in 0 108753 station_ip 5.120.22.198 108753 port 15 108753 unique_id port 108754 username kamali1 108754 kill_reason Another user logged on this global unique id 108754 mac 108754 bytes_out 0 108754 bytes_in 0 108754 station_ip 5.120.162.37 108754 port 29 108754 unique_id port 108756 username alihosseini 108756 kill_reason Relative expiration date has reached 108756 mac 108756 bytes_out 0 108756 bytes_in 0 108756 station_ip 5.120.22.198 108756 port 13 108756 unique_id port 108761 username rezasekonji 108761 mac 108761 bytes_out 0 108761 bytes_in 0 108761 station_ip 83.123.219.115 108761 port 26 108761 unique_id port 108761 remote_ip 10.8.0.130 108764 username mosi 108764 mac 108764 bytes_out 0 108764 bytes_in 0 108764 station_ip 151.235.125.25 108764 port 15 108764 unique_id port 108764 remote_ip 10.8.0.138 108773 username zare 108773 kill_reason Another user logged on this global unique id 108773 mac 108773 bytes_out 0 108773 bytes_in 0 108773 station_ip 37.27.35.154 108773 port 12 108773 unique_id port 108775 username mehdizare 108775 mac 108775 bytes_out 82182 108775 bytes_in 90278 108775 station_ip 5.119.174.144 108775 port 14 108775 unique_id port 108775 remote_ip 10.8.1.42 108777 username mehdizare 108777 mac 108777 bytes_out 0 108777 bytes_in 0 108777 station_ip 5.119.174.144 108777 port 15 108777 unique_id port 108777 remote_ip 10.8.0.90 108782 username tahmasebi 108750 bytes_in 0 108750 station_ip 83.123.239.175 108750 port 26 108750 unique_id port 108750 remote_ip 10.8.0.154 108757 username zare 108757 kill_reason Another user logged on this global unique id 108757 mac 108757 bytes_out 0 108757 bytes_in 0 108757 station_ip 37.27.35.154 108757 port 12 108757 unique_id port 108759 username hashtadani3 108759 mac 108759 bytes_out 0 108759 bytes_in 0 108759 station_ip 83.123.239.175 108759 port 11 108759 unique_id port 108759 remote_ip 10.8.1.94 108760 username hashtadani3 108760 mac 108760 bytes_out 0 108760 bytes_in 0 108760 station_ip 83.123.239.175 108760 port 27 108760 unique_id port 108760 remote_ip 10.8.0.154 108762 username rezasekonji 108762 mac 108762 bytes_out 0 108762 bytes_in 0 108762 station_ip 83.123.219.115 108762 port 26 108762 unique_id port 108762 remote_ip 10.8.0.130 108765 username hashtadani3 108765 mac 108765 bytes_out 0 108765 bytes_in 0 108765 station_ip 83.123.239.175 108765 port 15 108765 unique_id port 108765 remote_ip 10.8.0.154 108768 username mohammadmahdi 108768 mac 108768 bytes_out 0 108768 bytes_in 0 108768 station_ip 5.119.71.151 108768 port 24 108768 unique_id port 108768 remote_ip 10.8.0.54 108769 username tahmasebi 108769 kill_reason Another user logged on this global unique id 108769 mac 108769 bytes_out 0 108769 bytes_in 0 108769 station_ip 5.120.176.53 108769 port 35 108769 unique_id port 108774 username rezasekonji 108774 mac 108774 bytes_out 0 108774 bytes_in 0 108774 station_ip 83.123.219.115 108774 port 15 108774 unique_id port 108774 remote_ip 10.8.0.130 108780 username hashtadani3 108780 mac 108780 bytes_out 0 108780 bytes_in 0 108780 station_ip 83.123.239.175 108780 port 15 108780 unique_id port 108780 remote_ip 10.8.0.154 108783 username kamali1 108783 kill_reason Another user logged on this global unique id 108783 mac 108783 bytes_out 0 108783 bytes_in 0 108783 station_ip 5.120.162.37 108783 port 29 108783 unique_id port 108790 username rezasekonji 108790 mac 108790 bytes_out 0 108790 bytes_in 0 108790 station_ip 83.123.219.115 108790 port 15 108790 unique_id port 108790 remote_ip 10.8.0.130 108793 username zare 108793 mac 108793 bytes_out 32359 108793 bytes_in 70351 108793 station_ip 37.27.35.154 108793 port 12 108793 unique_id port 108793 remote_ip 10.8.1.58 108795 username hashtadani3 108795 mac 108795 bytes_out 0 108795 bytes_in 0 108795 station_ip 83.123.239.175 108795 port 12 108795 unique_id port 108795 remote_ip 10.8.1.94 108796 username hashtadani3 108796 mac 108796 bytes_out 0 108796 bytes_in 0 108796 station_ip 83.123.239.175 108796 port 32 108796 unique_id port 108796 remote_ip 10.8.0.154 108798 username kamali1 108798 mac 108798 bytes_out 0 108798 bytes_in 0 108798 station_ip 5.120.162.37 108798 port 29 108798 unique_id port 108800 username rezasekonji 108800 mac 108800 bytes_out 162400 108800 bytes_in 2677790 108800 station_ip 83.123.219.115 108800 port 27 108800 unique_id port 108800 remote_ip 10.8.0.130 108801 username rezasekonji 108801 mac 108801 bytes_out 0 108801 bytes_in 0 108801 station_ip 83.123.219.115 108801 port 27 108801 unique_id port 108801 remote_ip 10.8.0.130 108805 username farhad1 108805 mac 108805 bytes_out 0 108805 bytes_in 0 108805 station_ip 5.119.150.225 108805 port 15 108805 unique_id port 108805 remote_ip 10.8.0.26 108808 username hashtadani3 108808 kill_reason Another user logged on this global unique id 108808 mac 108808 bytes_out 0 108808 bytes_in 0 108771 mac 108771 bytes_out 0 108771 bytes_in 0 108771 station_ip 5.120.162.37 108771 port 29 108771 unique_id port 108772 username hashtadani3 108772 mac 108772 bytes_out 0 108772 bytes_in 0 108772 station_ip 83.123.239.175 108772 port 15 108772 unique_id port 108772 remote_ip 10.8.0.154 108776 username alihosseini 108776 kill_reason Relative expiration date has reached 108776 mac 108776 bytes_out 0 108776 bytes_in 0 108776 station_ip 5.119.188.232 108776 port 24 108776 unique_id port 108778 username alihosseini 108778 kill_reason Relative expiration date has reached 108778 mac 108778 bytes_out 0 108778 bytes_in 0 108778 station_ip 5.119.188.232 108778 port 15 108778 unique_id port 108779 username alihosseini 108779 kill_reason Relative expiration date has reached 108779 mac 108779 bytes_out 0 108779 bytes_in 0 108779 station_ip 5.119.188.232 108779 port 24 108779 unique_id port 108781 username zare 108781 kill_reason Another user logged on this global unique id 108781 mac 108781 bytes_out 0 108781 bytes_in 0 108781 station_ip 37.27.35.154 108781 port 12 108781 unique_id port 108786 username rezasekonji 108786 mac 108786 bytes_out 0 108786 bytes_in 0 108786 station_ip 83.123.219.115 108786 port 15 108786 unique_id port 108786 remote_ip 10.8.0.130 108788 username kamali1 108788 kill_reason Another user logged on this global unique id 108788 mac 108788 bytes_out 0 108788 bytes_in 0 108788 station_ip 5.120.162.37 108788 port 29 108788 unique_id port 108791 username zare 108791 mac 108791 bytes_out 0 108791 bytes_in 0 108791 station_ip 37.27.35.154 108791 port 12 108791 unique_id port 108802 username alihosseini 108802 kill_reason Relative expiration date has reached 108802 mac 108802 bytes_out 0 108802 bytes_in 0 108802 station_ip 5.119.188.232 108802 port 29 108802 unique_id port 108803 username alihosseini 108803 kill_reason Relative expiration date has reached 108803 mac 108803 bytes_out 0 108803 bytes_in 0 108803 station_ip 5.119.188.232 108803 port 29 108803 unique_id port 108809 username kordestani 108809 mac 108809 bytes_out 0 108809 bytes_in 0 108809 station_ip 151.235.90.86 108809 port 26 108809 unique_id port 108810 username mehdizare 108810 mac 108810 bytes_out 116287 108810 bytes_in 194724 108810 station_ip 5.119.174.144 108810 port 11 108810 unique_id port 108810 remote_ip 10.8.1.42 108811 username tahmasebi 108811 kill_reason Another user logged on this global unique id 108811 mac 108811 bytes_out 0 108811 bytes_in 0 108811 station_ip 5.120.176.53 108811 port 35 108811 unique_id port 108817 username hashtadani3 108817 mac 108817 bytes_out 0 108817 bytes_in 0 108817 station_ip 83.123.239.175 108817 port 24 108817 unique_id port 108817 remote_ip 10.8.0.154 108818 username hashtadani3 108818 mac 108818 bytes_out 0 108818 bytes_in 0 108818 station_ip 83.123.239.175 108818 port 11 108818 unique_id port 108818 remote_ip 10.8.1.94 108819 username hashtadani3 108819 mac 108819 bytes_out 0 108819 bytes_in 0 108819 station_ip 83.123.239.175 108819 port 24 108819 unique_id port 108819 remote_ip 10.8.0.154 108825 username hashtadani3 108825 mac 108825 bytes_out 0 108825 bytes_in 0 108825 station_ip 83.123.239.175 108825 port 15 108825 unique_id port 108825 remote_ip 10.8.0.154 108827 username tahmasebi 108827 kill_reason Another user logged on this global unique id 108827 mac 108827 bytes_out 0 108827 bytes_in 0 108827 station_ip 5.120.176.53 108827 port 35 108827 unique_id port 108828 username hashtadani3 108828 mac 108828 bytes_out 0 108828 bytes_in 0 108782 kill_reason Another user logged on this global unique id 108782 mac 108782 bytes_out 0 108782 bytes_in 0 108782 station_ip 5.120.176.53 108782 port 35 108782 unique_id port 108784 username zare 108784 kill_reason Another user logged on this global unique id 108784 mac 108784 bytes_out 0 108784 bytes_in 0 108784 station_ip 37.27.35.154 108784 port 12 108784 unique_id port 108785 username hashtadani3 108785 mac 108785 bytes_out 0 108785 bytes_in 0 108785 station_ip 83.123.239.175 108785 port 27 108785 unique_id port 108785 remote_ip 10.8.0.154 108787 username rezasekonji 108787 mac 108787 bytes_out 0 108787 bytes_in 0 108787 station_ip 83.123.219.115 108787 port 15 108787 unique_id port 108787 remote_ip 10.8.0.130 108789 username rezasekonji 108789 mac 108789 bytes_out 0 108789 bytes_in 0 108789 station_ip 83.123.219.115 108789 port 15 108789 unique_id port 108789 remote_ip 10.8.0.130 108792 username kordestani 108792 kill_reason Another user logged on this global unique id 108792 mac 108792 bytes_out 0 108792 bytes_in 0 108792 station_ip 151.235.90.86 108792 port 26 108792 unique_id port 108792 remote_ip 10.8.0.134 108794 username hashtadani3 108794 mac 108794 bytes_out 0 108794 bytes_in 0 108794 station_ip 83.123.239.175 108794 port 13 108794 unique_id port 108794 remote_ip 10.8.1.94 108797 username mahdiyehalizadeh 108797 mac 108797 bytes_out 0 108797 bytes_in 0 108797 station_ip 83.122.225.53 108797 port 24 108797 unique_id port 108797 remote_ip 10.8.0.82 108799 username hashtadani3 108799 kill_reason Another user logged on this global unique id 108799 mac 108799 bytes_out 0 108799 bytes_in 0 108799 station_ip 83.123.239.175 108799 port 24 108799 unique_id port 108799 remote_ip 10.8.0.154 108804 username alihosseini 108804 kill_reason Relative expiration date has reached 108804 mac 108804 bytes_out 0 108804 bytes_in 0 108804 station_ip 5.119.188.232 108804 port 29 108804 unique_id port 108806 username rezasekonji 108806 mac 108806 bytes_out 0 108806 bytes_in 0 108806 station_ip 83.123.219.115 108806 port 27 108806 unique_id port 108806 remote_ip 10.8.0.130 108807 username aminvpn 108807 mac 108807 bytes_out 2226420 108807 bytes_in 16256989 108807 station_ip 37.129.176.218 108807 port 31 108807 unique_id port 108807 remote_ip 10.8.0.14 108812 username mehdizare 108812 mac 108812 bytes_out 0 108812 bytes_in 0 108812 station_ip 5.119.174.144 108812 port 11 108812 unique_id port 108812 remote_ip 10.8.1.42 108820 username alireza 108820 unique_id port 108820 terminate_cause Lost-Carrier 108820 bytes_out 851182 108820 bytes_in 19235600 108820 station_ip 5.119.181.10 108820 port 15729049 108820 nas_port_type Virtual 108820 remote_ip 5.5.5.160 108821 username hashtadani3 108821 mac 108821 bytes_out 0 108821 bytes_in 0 108821 station_ip 83.123.239.175 108821 port 24 108821 unique_id port 108821 remote_ip 10.8.0.154 108822 username rajaei 108822 kill_reason Another user logged on this global unique id 108822 mac 108822 bytes_out 0 108822 bytes_in 0 108822 station_ip 89.34.151.3 108822 port 15 108822 unique_id port 108826 username hashtadani3 108826 mac 108826 bytes_out 0 108826 bytes_in 0 108826 station_ip 83.123.239.175 108826 port 15 108826 unique_id port 108826 remote_ip 10.8.0.154 108829 username hashtadani3 108829 mac 108829 bytes_out 0 108829 bytes_in 0 108829 station_ip 83.123.239.175 108829 port 15 108829 unique_id port 108829 remote_ip 10.8.0.154 108834 username hashtadani3 108834 mac 108834 bytes_out 0 108834 bytes_in 0 108834 station_ip 83.123.239.175 108808 station_ip 83.123.239.175 108808 port 24 108808 unique_id port 108813 username hashtadani3 108813 mac 108813 bytes_out 0 108813 bytes_in 0 108813 station_ip 83.123.239.175 108813 port 24 108813 unique_id port 108814 username hashtadani3 108814 mac 108814 bytes_out 0 108814 bytes_in 0 108814 station_ip 83.123.239.175 108814 port 24 108814 unique_id port 108814 remote_ip 10.8.0.154 108815 username hashtadani3 108815 mac 108815 bytes_out 0 108815 bytes_in 0 108815 station_ip 83.123.239.175 108815 port 11 108815 unique_id port 108815 remote_ip 10.8.1.94 108816 username rajaei 108816 kill_reason Another user logged on this global unique id 108816 mac 108816 bytes_out 0 108816 bytes_in 0 108816 station_ip 89.34.151.3 108816 port 15 108816 unique_id port 108816 remote_ip 10.8.0.34 108823 username tahmasebi 108823 kill_reason Another user logged on this global unique id 108823 mac 108823 bytes_out 0 108823 bytes_in 0 108823 station_ip 5.120.176.53 108823 port 35 108823 unique_id port 108824 username rajaei 108824 mac 108824 bytes_out 0 108824 bytes_in 0 108824 station_ip 89.34.151.3 108824 port 15 108824 unique_id port 108830 username hashtadani3 108830 mac 108830 bytes_out 0 108830 bytes_in 0 108830 station_ip 83.123.239.175 108830 port 15 108830 unique_id port 108830 remote_ip 10.8.0.154 108832 username tahmasebi 108832 kill_reason Another user logged on this global unique id 108832 mac 108832 bytes_out 0 108832 bytes_in 0 108832 station_ip 5.120.176.53 108832 port 35 108832 unique_id port 108840 username hashtadani3 108840 mac 108840 bytes_out 0 108840 bytes_in 0 108840 station_ip 83.123.239.175 108840 port 15 108840 unique_id port 108840 remote_ip 10.8.0.154 108844 username hashtadani3 108844 mac 108844 bytes_out 0 108844 bytes_in 0 108844 station_ip 83.123.239.175 108844 port 15 108844 unique_id port 108844 remote_ip 10.8.0.154 108847 username hashtadani3 108847 mac 108847 bytes_out 0 108847 bytes_in 0 108847 station_ip 83.123.239.175 108847 port 15 108847 unique_id port 108847 remote_ip 10.8.0.154 108850 username hashtadani3 108850 mac 108850 bytes_out 0 108850 bytes_in 0 108850 station_ip 83.123.239.175 108850 port 15 108850 unique_id port 108850 remote_ip 10.8.0.154 108854 username hashtadani3 108854 mac 108854 bytes_out 0 108854 bytes_in 0 108854 station_ip 83.123.239.175 108854 port 24 108854 unique_id port 108854 remote_ip 10.8.0.154 108857 username hashtadani3 108857 mac 108857 bytes_out 0 108857 bytes_in 0 108857 station_ip 83.123.239.175 108857 port 24 108857 unique_id port 108857 remote_ip 10.8.0.154 108860 username hashtadani3 108860 mac 108860 bytes_out 0 108860 bytes_in 0 108860 station_ip 83.123.239.175 108860 port 24 108860 unique_id port 108860 remote_ip 10.8.0.154 108862 username hashtadani3 108862 mac 108862 bytes_out 0 108862 bytes_in 0 108862 station_ip 83.123.239.175 108862 port 15 108862 unique_id port 108862 remote_ip 10.8.0.154 108865 username hashtadani3 108865 mac 108865 bytes_out 0 108865 bytes_in 0 108865 station_ip 83.123.239.175 108865 port 15 108865 unique_id port 108865 remote_ip 10.8.0.154 108866 username hashtadani3 108866 mac 108866 bytes_out 0 108866 bytes_in 0 108866 station_ip 83.123.239.175 108866 port 15 108866 unique_id port 108866 remote_ip 10.8.0.154 108867 username hashtadani3 108867 mac 108867 bytes_out 0 108867 bytes_in 0 108867 station_ip 83.123.239.175 108867 port 15 108867 unique_id port 108867 remote_ip 10.8.0.154 108828 station_ip 83.123.239.175 108828 port 13 108828 unique_id port 108828 remote_ip 10.8.1.94 108831 username hashtadani3 108831 mac 108831 bytes_out 0 108831 bytes_in 0 108831 station_ip 83.123.239.175 108831 port 15 108831 unique_id port 108831 remote_ip 10.8.0.154 108833 username hashtadani3 108833 mac 108833 bytes_out 0 108833 bytes_in 0 108833 station_ip 83.123.239.175 108833 port 15 108833 unique_id port 108833 remote_ip 10.8.0.154 108835 username tahmasebi 108835 kill_reason Another user logged on this global unique id 108835 mac 108835 bytes_out 0 108835 bytes_in 0 108835 station_ip 5.120.176.53 108835 port 35 108835 unique_id port 108836 username hashtadani3 108836 mac 108836 bytes_out 0 108836 bytes_in 0 108836 station_ip 83.123.239.175 108836 port 15 108836 unique_id port 108836 remote_ip 10.8.0.154 108838 username hashtadani3 108838 mac 108838 bytes_out 0 108838 bytes_in 0 108838 station_ip 83.123.239.175 108838 port 15 108838 unique_id port 108838 remote_ip 10.8.0.154 108841 username tahmasebi 108841 mac 108841 bytes_out 0 108841 bytes_in 0 108841 station_ip 5.120.176.53 108841 port 35 108841 unique_id port 108842 username zare 108842 mac 108842 bytes_out 0 108842 bytes_in 0 108842 station_ip 37.27.35.154 108842 port 11 108842 unique_id port 108842 remote_ip 10.8.1.58 108845 username hashtadani3 108845 mac 108845 bytes_out 0 108845 bytes_in 0 108845 station_ip 83.123.239.175 108845 port 15 108845 unique_id port 108845 remote_ip 10.8.0.154 108848 username hashtadani3 108848 mac 108848 bytes_out 0 108848 bytes_in 0 108848 station_ip 83.123.239.175 108848 port 15 108848 unique_id port 108848 remote_ip 10.8.0.154 108849 username hashtadani3 108849 mac 108849 bytes_out 0 108849 bytes_in 0 108849 station_ip 83.123.239.175 108849 port 15 108849 unique_id port 108849 remote_ip 10.8.0.154 108851 username avaanna 108851 mac 108851 bytes_out 2926676 108851 bytes_in 20828511 108851 station_ip 83.122.186.71 108851 port 30 108851 unique_id port 108851 remote_ip 10.8.0.98 108855 username hashtadani3 108855 mac 108855 bytes_out 0 108855 bytes_in 0 108855 station_ip 83.123.239.175 108855 port 24 108855 unique_id port 108855 remote_ip 10.8.0.154 108858 username hashtadani3 108858 mac 108858 bytes_out 0 108858 bytes_in 0 108858 station_ip 83.123.239.175 108858 port 24 108858 unique_id port 108858 remote_ip 10.8.0.154 108861 username avaanna 108861 mac 108861 bytes_out 136652 108861 bytes_in 365795 108861 station_ip 83.122.186.71 108861 port 15 108861 unique_id port 108861 remote_ip 10.8.0.98 108863 username hashtadani3 108863 mac 108863 bytes_out 0 108863 bytes_in 0 108863 station_ip 83.123.239.175 108863 port 11 108863 unique_id port 108863 remote_ip 10.8.1.94 108864 username hashtadani3 108864 mac 108864 bytes_out 0 108864 bytes_in 0 108864 station_ip 83.123.239.175 108864 port 15 108864 unique_id port 108864 remote_ip 10.8.0.154 108868 username hashtadani3 108868 mac 108868 bytes_out 0 108868 bytes_in 0 108868 station_ip 83.123.239.175 108868 port 15 108868 unique_id port 108868 remote_ip 10.8.0.154 108871 username hashtadani3 108871 mac 108871 bytes_out 0 108871 bytes_in 0 108871 station_ip 83.123.239.175 108871 port 15 108871 unique_id port 108871 remote_ip 10.8.0.154 108877 username hashtadani3 108877 mac 108877 bytes_out 0 108877 bytes_in 0 108877 station_ip 83.123.239.175 108877 port 15 108877 unique_id port 108877 remote_ip 10.8.0.154 108834 port 15 108834 unique_id port 108834 remote_ip 10.8.0.154 108837 username alirr 108837 unique_id port 108837 terminate_cause Lost-Carrier 108837 bytes_out 26661836 108837 bytes_in 617533128 108837 station_ip 86.57.28.130 108837 port 15729039 108837 nas_port_type Virtual 108837 remote_ip 5.5.5.153 108839 username hashtadani3 108839 mac 108839 bytes_out 0 108839 bytes_in 0 108839 station_ip 83.123.239.175 108839 port 15 108839 unique_id port 108839 remote_ip 10.8.0.154 108843 username hashtadani3 108843 mac 108843 bytes_out 0 108843 bytes_in 0 108843 station_ip 83.123.239.175 108843 port 15 108843 unique_id port 108843 remote_ip 10.8.0.154 108846 username hashtadani3 108846 mac 108846 bytes_out 0 108846 bytes_in 0 108846 station_ip 83.123.239.175 108846 port 15 108846 unique_id port 108846 remote_ip 10.8.0.154 108852 username hashtadani3 108852 mac 108852 bytes_out 0 108852 bytes_in 0 108852 station_ip 83.123.239.175 108852 port 15 108852 unique_id port 108852 remote_ip 10.8.0.154 108853 username hashtadani3 108853 mac 108853 bytes_out 0 108853 bytes_in 0 108853 station_ip 83.123.239.175 108853 port 24 108853 unique_id port 108853 remote_ip 10.8.0.154 108856 username hashtadani3 108856 mac 108856 bytes_out 0 108856 bytes_in 0 108856 station_ip 83.123.239.175 108856 port 24 108856 unique_id port 108856 remote_ip 10.8.0.154 108859 username hashtadani3 108859 mac 108859 bytes_out 0 108859 bytes_in 0 108859 station_ip 83.123.239.175 108859 port 11 108859 unique_id port 108859 remote_ip 10.8.1.94 108869 username hashtadani3 108869 mac 108869 bytes_out 0 108869 bytes_in 0 108869 station_ip 83.123.239.175 108869 port 15 108869 unique_id port 108869 remote_ip 10.8.0.154 108872 username hashtadani3 108872 mac 108872 bytes_out 0 108872 bytes_in 0 108872 station_ip 83.123.239.175 108872 port 15 108872 unique_id port 108872 remote_ip 10.8.0.154 108875 username hashtadani3 108875 mac 108875 bytes_out 0 108875 bytes_in 0 108875 station_ip 83.123.239.175 108875 port 15 108875 unique_id port 108875 remote_ip 10.8.0.154 108881 username hashtadani3 108881 mac 108881 bytes_out 0 108881 bytes_in 0 108881 station_ip 83.123.239.175 108881 port 15 108881 unique_id port 108881 remote_ip 10.8.0.154 108882 username hashtadani3 108882 mac 108882 bytes_out 0 108882 bytes_in 0 108882 station_ip 83.123.239.175 108882 port 15 108882 unique_id port 108882 remote_ip 10.8.0.154 108883 username hashtadani3 108883 mac 108883 bytes_out 0 108883 bytes_in 0 108883 station_ip 83.123.239.175 108883 port 15 108883 unique_id port 108883 remote_ip 10.8.0.154 108886 username mehdizare 108886 mac 108886 bytes_out 0 108886 bytes_in 0 108886 station_ip 5.119.226.18 108886 port 11 108886 unique_id port 108886 remote_ip 10.8.1.42 108888 username hashtadani3 108888 mac 108888 bytes_out 0 108888 bytes_in 0 108888 station_ip 83.123.239.175 108888 port 15 108888 unique_id port 108888 remote_ip 10.8.0.154 108891 username hashtadani3 108891 mac 108891 bytes_out 0 108891 bytes_in 0 108891 station_ip 83.123.239.175 108891 port 12 108891 unique_id port 108891 remote_ip 10.8.1.94 108894 username hashtadani3 108894 mac 108894 bytes_out 0 108894 bytes_in 0 108894 station_ip 83.123.239.175 108894 port 15 108894 unique_id port 108894 remote_ip 10.8.0.154 108898 username sedighe 108898 mac 108898 bytes_out 63144 108898 bytes_in 685063 108898 station_ip 37.129.151.88 108898 port 15 108898 unique_id port 108870 username hashtadani3 108870 mac 108870 bytes_out 0 108870 bytes_in 0 108870 station_ip 83.123.239.175 108870 port 15 108870 unique_id port 108870 remote_ip 10.8.0.154 108873 username hashtadani3 108873 mac 108873 bytes_out 0 108873 bytes_in 0 108873 station_ip 83.123.239.175 108873 port 15 108873 unique_id port 108873 remote_ip 10.8.0.154 108874 username hashtadani3 108874 mac 108874 bytes_out 0 108874 bytes_in 0 108874 station_ip 83.123.239.175 108874 port 15 108874 unique_id port 108874 remote_ip 10.8.0.154 108876 username hashtadani3 108876 mac 108876 bytes_out 0 108876 bytes_in 0 108876 station_ip 83.123.239.175 108876 port 15 108876 unique_id port 108876 remote_ip 10.8.0.154 108878 username hashtadani3 108878 mac 108878 bytes_out 0 108878 bytes_in 0 108878 station_ip 83.123.239.175 108878 port 15 108878 unique_id port 108878 remote_ip 10.8.0.154 108879 username hashtadani3 108879 mac 108879 bytes_out 0 108879 bytes_in 0 108879 station_ip 83.123.239.175 108879 port 15 108879 unique_id port 108879 remote_ip 10.8.0.154 108880 username hashtadani3 108880 mac 108880 bytes_out 0 108880 bytes_in 0 108880 station_ip 83.123.239.175 108880 port 15 108880 unique_id port 108880 remote_ip 10.8.0.154 108884 username mehdizare 108884 mac 108884 bytes_out 0 108884 bytes_in 0 108884 station_ip 5.120.162.232 108884 port 12 108884 unique_id port 108884 remote_ip 10.8.1.42 108885 username hashtadani3 108885 mac 108885 bytes_out 0 108885 bytes_in 0 108885 station_ip 83.123.239.175 108885 port 15 108885 unique_id port 108885 remote_ip 10.8.0.154 108887 username abravesh 108887 unique_id port 108887 terminate_cause Lost-Carrier 108887 bytes_out 3565280 108887 bytes_in 187760589 108887 station_ip 5.119.30.135 108887 port 15729055 108887 nas_port_type Virtual 108887 remote_ip 5.5.5.181 108889 username mehdizare 108889 mac 108889 bytes_out 0 108889 bytes_in 0 108889 station_ip 5.119.226.18 108889 port 11 108889 unique_id port 108889 remote_ip 10.8.1.42 108892 username hashtadani3 108892 mac 108892 bytes_out 0 108892 bytes_in 0 108892 station_ip 83.123.239.175 108892 port 15 108892 unique_id port 108892 remote_ip 10.8.0.154 108895 username hashtadani3 108895 mac 108895 bytes_out 0 108895 bytes_in 0 108895 station_ip 83.123.239.175 108895 port 15 108895 unique_id port 108895 remote_ip 10.8.0.154 108902 username hashtadani3 108902 mac 108902 bytes_out 0 108902 bytes_in 0 108902 station_ip 83.123.239.175 108902 port 15 108902 unique_id port 108902 remote_ip 10.8.0.154 108903 username hashtadani3 108903 mac 108903 bytes_out 0 108903 bytes_in 0 108903 station_ip 83.123.239.175 108903 port 15 108903 unique_id port 108903 remote_ip 10.8.0.154 108904 username hashtadani3 108904 mac 108904 bytes_out 0 108904 bytes_in 0 108904 station_ip 83.123.239.175 108904 port 24 108904 unique_id port 108904 remote_ip 10.8.0.154 108909 username alirr 108909 unique_id port 108909 terminate_cause User-Request 108909 bytes_out 35297803 108909 bytes_in 972047942 108909 station_ip 5.134.157.77 108909 port 15729056 108909 nas_port_type Virtual 108909 remote_ip 5.5.5.120 108911 username morteza 108911 mac 108911 bytes_out 0 108911 bytes_in 0 108911 station_ip 37.129.145.116 108911 port 15 108911 unique_id port 108911 remote_ip 10.8.0.46 108917 username hashtadani3 108917 mac 108917 bytes_out 0 108917 bytes_in 0 108917 station_ip 83.123.239.175 108917 port 15 108917 unique_id port 108917 remote_ip 10.8.0.154 108890 username hashtadani3 108890 mac 108890 bytes_out 0 108890 bytes_in 0 108890 station_ip 83.123.239.175 108890 port 15 108890 unique_id port 108890 remote_ip 10.8.0.154 108893 username hashtadani3 108893 mac 108893 bytes_out 0 108893 bytes_in 0 108893 station_ip 83.123.239.175 108893 port 15 108893 unique_id port 108893 remote_ip 10.8.0.154 108896 username hashtadani3 108896 mac 108896 bytes_out 0 108896 bytes_in 0 108896 station_ip 83.123.239.175 108896 port 15 108896 unique_id port 108896 remote_ip 10.8.0.154 108897 username hashtadani3 108897 mac 108897 bytes_out 0 108897 bytes_in 0 108897 station_ip 83.123.239.175 108897 port 24 108897 unique_id port 108897 remote_ip 10.8.0.154 108899 username hashtadani3 108899 mac 108899 bytes_out 0 108899 bytes_in 0 108899 station_ip 83.123.239.175 108899 port 15 108899 unique_id port 108899 remote_ip 10.8.0.154 108906 username hashtadani3 108906 mac 108906 bytes_out 0 108906 bytes_in 0 108906 station_ip 83.123.239.175 108906 port 24 108906 unique_id port 108906 remote_ip 10.8.0.154 108907 username hashtadani3 108907 mac 108907 bytes_out 0 108907 bytes_in 0 108907 station_ip 83.123.239.175 108907 port 26 108907 unique_id port 108907 remote_ip 10.8.0.154 108908 username mohammadjavad 108908 mac 108908 bytes_out 526907 108908 bytes_in 3462506 108908 station_ip 37.129.17.241 108908 port 24 108908 unique_id port 108908 remote_ip 10.8.0.142 108915 username sedighe 108915 mac 108915 bytes_out 115001 108915 bytes_in 884631 108915 station_ip 37.129.172.59 108915 port 26 108915 unique_id port 108915 remote_ip 10.8.0.146 108918 username hashtadani3 108918 mac 108918 bytes_out 0 108918 bytes_in 0 108918 station_ip 83.123.239.175 108918 port 24 108918 unique_id port 108918 remote_ip 10.8.0.154 108923 username hashtadani3 108923 mac 108923 bytes_out 0 108923 bytes_in 0 108923 station_ip 83.123.239.175 108923 port 15 108923 unique_id port 108923 remote_ip 10.8.0.154 108936 username hashtadani3 108936 mac 108936 bytes_out 0 108936 bytes_in 0 108936 station_ip 83.123.239.175 108936 port 24 108936 unique_id port 108936 remote_ip 10.8.0.154 108937 username hashtadani3 108937 mac 108937 bytes_out 0 108937 bytes_in 0 108937 station_ip 83.123.239.175 108937 port 24 108937 unique_id port 108937 remote_ip 10.8.0.154 108943 username hashtadani3 108943 mac 108943 bytes_out 0 108943 bytes_in 0 108943 station_ip 83.123.239.175 108943 port 26 108943 unique_id port 108943 remote_ip 10.8.0.154 108944 username mohammadjavad 108944 kill_reason Another user logged on this global unique id 108944 mac 108944 bytes_out 0 108944 bytes_in 0 108944 station_ip 83.122.253.37 108944 port 24 108944 unique_id port 108944 remote_ip 10.8.0.142 108951 username hashtadani3 108951 mac 108951 bytes_out 0 108951 bytes_in 0 108951 station_ip 83.123.239.175 108951 port 26 108951 unique_id port 108951 remote_ip 10.8.0.154 108957 username hashtadani3 108957 mac 108957 bytes_out 0 108957 bytes_in 0 108957 station_ip 83.123.239.175 108957 port 27 108957 unique_id port 108957 remote_ip 10.8.0.154 108959 username hashtadani3 108959 mac 108959 bytes_out 0 108959 bytes_in 0 108959 station_ip 83.123.239.175 108959 port 12 108959 unique_id port 108959 remote_ip 10.8.1.94 108963 username hashtadani3 108963 mac 108963 bytes_out 0 108963 bytes_in 0 108963 station_ip 83.123.239.175 108963 port 12 108963 unique_id port 108963 remote_ip 10.8.1.94 108972 username hashtadani3 108898 remote_ip 10.8.0.146 108900 username hashtadani3 108900 mac 108900 bytes_out 0 108900 bytes_in 0 108900 station_ip 83.123.239.175 108900 port 15 108900 unique_id port 108900 remote_ip 10.8.0.154 108901 username hashtadani3 108901 mac 108901 bytes_out 0 108901 bytes_in 0 108901 station_ip 83.123.239.175 108901 port 15 108901 unique_id port 108901 remote_ip 10.8.0.154 108905 username hashtadani3 108905 mac 108905 bytes_out 0 108905 bytes_in 0 108905 station_ip 83.123.239.175 108905 port 24 108905 unique_id port 108905 remote_ip 10.8.0.154 108910 username hashtadani3 108910 mac 108910 bytes_out 0 108910 bytes_in 0 108910 station_ip 83.123.239.175 108910 port 24 108910 unique_id port 108910 remote_ip 10.8.0.154 108912 username hashtadani3 108912 mac 108912 bytes_out 0 108912 bytes_in 0 108912 station_ip 83.123.239.175 108912 port 24 108912 unique_id port 108912 remote_ip 10.8.0.154 108913 username hamid.e 108913 unique_id port 108913 terminate_cause User-Request 108913 bytes_out 2310287 108913 bytes_in 12396901 108913 station_ip 37.27.24.38 108913 port 15729057 108913 nas_port_type Virtual 108913 remote_ip 5.5.5.122 108914 username hashtadani3 108914 mac 108914 bytes_out 0 108914 bytes_in 0 108914 station_ip 83.123.239.175 108914 port 15 108914 unique_id port 108914 remote_ip 10.8.0.154 108916 username hashtadani3 108916 mac 108916 bytes_out 0 108916 bytes_in 0 108916 station_ip 83.123.239.175 108916 port 15 108916 unique_id port 108916 remote_ip 10.8.0.154 108921 username sedighe 108921 mac 108921 bytes_out 202506 108921 bytes_in 997794 108921 station_ip 37.129.172.59 108921 port 15 108921 unique_id port 108921 remote_ip 10.8.0.146 108922 username hashtadani3 108922 mac 108922 bytes_out 0 108922 bytes_in 0 108922 station_ip 83.123.239.175 108922 port 15 108922 unique_id port 108922 remote_ip 10.8.0.154 108925 username hashtadani3 108925 mac 108925 bytes_out 0 108925 bytes_in 0 108925 station_ip 83.123.239.175 108925 port 15 108925 unique_id port 108925 remote_ip 10.8.0.154 108928 username hashtadani3 108928 mac 108928 bytes_out 0 108928 bytes_in 0 108928 station_ip 83.123.239.175 108928 port 15 108928 unique_id port 108928 remote_ip 10.8.0.154 108930 username hashtadani3 108930 mac 108930 bytes_out 2005 108930 bytes_in 4441 108930 station_ip 83.123.239.175 108930 port 15 108930 unique_id port 108930 remote_ip 10.8.0.154 108931 username hashtadani3 108931 mac 108931 bytes_out 0 108931 bytes_in 0 108931 station_ip 83.123.239.175 108931 port 24 108931 unique_id port 108931 remote_ip 10.8.0.154 108934 username hashtadani3 108934 mac 108934 bytes_out 0 108934 bytes_in 0 108934 station_ip 83.123.239.175 108934 port 24 108934 unique_id port 108934 remote_ip 10.8.0.154 108935 username hashtadani3 108935 mac 108935 bytes_out 0 108935 bytes_in 0 108935 station_ip 83.123.239.175 108935 port 24 108935 unique_id port 108935 remote_ip 10.8.0.154 108938 username hashtadani3 108938 mac 108938 bytes_out 0 108938 bytes_in 0 108938 station_ip 83.123.239.175 108938 port 24 108938 unique_id port 108938 remote_ip 10.8.0.154 108940 username hashtadani3 108940 mac 108940 bytes_out 0 108940 bytes_in 0 108940 station_ip 83.123.239.175 108940 port 12 108940 unique_id port 108940 remote_ip 10.8.1.94 108942 username hashtadani3 108942 mac 108942 bytes_out 0 108942 bytes_in 0 108942 station_ip 83.123.239.175 108942 port 12 108942 unique_id port 108942 remote_ip 10.8.1.94 108919 username hashtadani3 108919 mac 108919 bytes_out 0 108919 bytes_in 0 108919 station_ip 83.123.239.175 108919 port 26 108919 unique_id port 108919 remote_ip 10.8.0.154 108920 username houshang 108920 mac 108920 bytes_out 129091 108920 bytes_in 357271 108920 station_ip 5.119.59.164 108920 port 24 108920 unique_id port 108920 remote_ip 10.8.0.22 108924 username hashtadani3 108924 mac 108924 bytes_out 0 108924 bytes_in 0 108924 station_ip 83.123.239.175 108924 port 15 108924 unique_id port 108924 remote_ip 10.8.0.154 108926 username hashtadani3 108926 mac 108926 bytes_out 0 108926 bytes_in 0 108926 station_ip 83.123.239.175 108926 port 15 108926 unique_id port 108926 remote_ip 10.8.0.154 108927 username hashtadani3 108927 mac 108927 bytes_out 0 108927 bytes_in 0 108927 station_ip 83.123.239.175 108927 port 15 108927 unique_id port 108927 remote_ip 10.8.0.154 108929 username hashtadani3 108929 mac 108929 bytes_out 0 108929 bytes_in 0 108929 station_ip 83.123.239.175 108929 port 15 108929 unique_id port 108929 remote_ip 10.8.0.154 108932 username hashtadani3 108932 mac 108932 bytes_out 0 108932 bytes_in 0 108932 station_ip 83.123.239.175 108932 port 24 108932 unique_id port 108932 remote_ip 10.8.0.154 108933 username hashtadani3 108933 mac 108933 bytes_out 0 108933 bytes_in 0 108933 station_ip 83.123.239.175 108933 port 24 108933 unique_id port 108933 remote_ip 10.8.0.154 108939 username hashtadani3 108939 mac 108939 bytes_out 0 108939 bytes_in 0 108939 station_ip 83.123.239.175 108939 port 12 108939 unique_id port 108939 remote_ip 10.8.1.94 108941 username hashtadani3 108941 mac 108941 bytes_out 0 108941 bytes_in 0 108941 station_ip 83.123.239.175 108941 port 24 108941 unique_id port 108941 remote_ip 10.8.0.154 108945 username hashtadani3 108945 mac 108945 bytes_out 0 108945 bytes_in 0 108945 station_ip 83.123.239.175 108945 port 26 108945 unique_id port 108945 remote_ip 10.8.0.154 108946 username hashtadani3 108946 mac 108946 bytes_out 0 108946 bytes_in 0 108946 station_ip 83.123.239.175 108946 port 12 108946 unique_id port 108946 remote_ip 10.8.1.94 108949 username hashtadani3 108949 mac 108949 bytes_out 0 108949 bytes_in 0 108949 station_ip 83.123.239.175 108949 port 26 108949 unique_id port 108949 remote_ip 10.8.0.154 108952 username hashtadani3 108952 mac 108952 bytes_out 0 108952 bytes_in 0 108952 station_ip 83.123.239.175 108952 port 27 108952 unique_id port 108952 remote_ip 10.8.0.154 108954 username hashtadani3 108954 mac 108954 bytes_out 0 108954 bytes_in 0 108954 station_ip 83.123.239.175 108954 port 27 108954 unique_id port 108954 remote_ip 10.8.0.154 108956 username mehdizare 108956 mac 108956 bytes_out 0 108956 bytes_in 0 108956 station_ip 5.119.226.18 108956 port 11 108956 unique_id port 108956 remote_ip 10.8.1.42 108962 username hashtadani3 108962 mac 108962 bytes_out 0 108962 bytes_in 0 108962 station_ip 83.123.239.175 108962 port 12 108962 unique_id port 108962 remote_ip 10.8.1.94 108968 username hashtadani3 108968 mac 108968 bytes_out 0 108968 bytes_in 0 108968 station_ip 83.123.239.175 108968 port 29 108968 unique_id port 108968 remote_ip 10.8.0.154 108969 username sedighe 108969 mac 108969 bytes_out 0 108969 bytes_in 0 108969 station_ip 83.122.139.79 108969 port 27 108969 unique_id port 108969 remote_ip 10.8.0.146 108970 username mohammadjavad 108970 kill_reason Another user logged on this global unique id 108970 mac 108947 username hashtadani3 108947 mac 108947 bytes_out 0 108947 bytes_in 0 108947 station_ip 83.123.239.175 108947 port 26 108947 unique_id port 108947 remote_ip 10.8.0.154 108948 username mohammadjavad 108948 mac 108948 bytes_out 0 108948 bytes_in 0 108948 station_ip 83.122.253.37 108948 port 24 108948 unique_id port 108950 username hashtadani3 108950 mac 108950 bytes_out 0 108950 bytes_in 0 108950 station_ip 83.123.239.175 108950 port 24 108950 unique_id port 108950 remote_ip 10.8.0.154 108953 username hashtadani3 108953 mac 108953 bytes_out 0 108953 bytes_in 0 108953 station_ip 83.123.239.175 108953 port 12 108953 unique_id port 108953 remote_ip 10.8.1.94 108955 username hashtadani3 108955 mac 108955 bytes_out 0 108955 bytes_in 0 108955 station_ip 83.123.239.175 108955 port 27 108955 unique_id port 108955 remote_ip 10.8.0.154 108958 username hashtadani3 108958 mac 108958 bytes_out 0 108958 bytes_in 0 108958 station_ip 83.123.239.175 108958 port 27 108958 unique_id port 108958 remote_ip 10.8.0.154 108960 username amirabbas 108960 unique_id port 108960 terminate_cause User-Request 108960 bytes_out 7655329 108960 bytes_in 235583583 108960 station_ip 37.27.14.167 108960 port 15729058 108960 nas_port_type Virtual 108960 remote_ip 5.5.5.123 108961 username forozande 108961 mac 108961 bytes_out 988894 108961 bytes_in 7114190 108961 station_ip 37.129.88.28 108961 port 26 108961 unique_id port 108961 remote_ip 10.8.0.74 108964 username hashtadani3 108964 mac 108964 bytes_out 0 108964 bytes_in 0 108964 station_ip 83.123.239.175 108964 port 29 108964 unique_id port 108964 remote_ip 10.8.0.154 108965 username mohammadjavad 108965 kill_reason Another user logged on this global unique id 108965 mac 108965 bytes_out 0 108965 bytes_in 0 108965 station_ip 83.122.18.111 108965 port 26 108965 unique_id port 108965 remote_ip 10.8.0.142 108966 username mohammadjavad 108966 kill_reason Another user logged on this global unique id 108966 mac 108966 bytes_out 0 108966 bytes_in 0 108966 station_ip 83.122.18.111 108966 port 26 108966 unique_id port 108967 username hashtadani3 108967 mac 108967 bytes_out 0 108967 bytes_in 0 108967 station_ip 83.123.239.175 108967 port 12 108967 unique_id port 108967 remote_ip 10.8.1.94 108971 username hashtadani3 108971 mac 108971 bytes_out 0 108971 bytes_in 0 108971 station_ip 83.123.239.175 108971 port 29 108971 unique_id port 108971 remote_ip 10.8.0.154 108974 username mahyaarabpour 108974 kill_reason Relative expiration date has reached 108974 mac 108974 bytes_out 0 108974 bytes_in 0 108974 station_ip 5.62.217.106 108974 port 29 108974 unique_id port 108975 username mahyaarabpour 108975 kill_reason Relative expiration date has reached 108975 mac 108975 bytes_out 0 108975 bytes_in 0 108975 station_ip 5.62.217.106 108975 port 29 108975 unique_id port 108977 username hashtadani3 108977 mac 108977 bytes_out 0 108977 bytes_in 0 108977 station_ip 83.123.239.175 108977 port 29 108977 unique_id port 108977 remote_ip 10.8.0.154 108980 username hashtadani3 108980 mac 108980 bytes_out 0 108980 bytes_in 0 108980 station_ip 83.123.239.175 108980 port 30 108980 unique_id port 108980 remote_ip 10.8.0.154 108984 username forozande 108984 mac 108984 bytes_out 0 108984 bytes_in 0 108984 station_ip 83.123.205.157 108984 port 29 108984 unique_id port 108984 remote_ip 10.8.0.74 108985 username aminvpn 108985 kill_reason Another user logged on this global unique id 108985 mac 108985 bytes_out 0 108985 bytes_in 0 108985 station_ip 5.119.89.251 108985 port 27 108970 bytes_out 0 108970 bytes_in 0 108970 station_ip 83.122.18.111 108970 port 26 108970 unique_id port 108979 username mohammadjavad 108979 mac 108979 bytes_out 0 108979 bytes_in 0 108979 station_ip 83.122.18.111 108979 port 26 108979 unique_id port 108981 username morteza 108981 mac 108981 bytes_out 777036 108981 bytes_in 10229967 108981 station_ip 83.122.148.159 108981 port 26 108981 unique_id port 108981 remote_ip 10.8.0.46 108983 username rezasekonji 108983 mac 108983 bytes_out 0 108983 bytes_in 0 108983 station_ip 83.122.59.156 108983 port 26 108983 unique_id port 108983 remote_ip 10.8.0.130 108986 username hashtadani3 108986 mac 108986 bytes_out 0 108986 bytes_in 0 108986 station_ip 83.123.239.175 108986 port 30 108986 unique_id port 108986 remote_ip 10.8.0.154 108987 username hashtadani3 108987 mac 108987 bytes_out 0 108987 bytes_in 0 108987 station_ip 83.123.239.175 108987 port 12 108987 unique_id port 108987 remote_ip 10.8.1.94 109000 username hashtadani3 109000 mac 109000 bytes_out 0 109000 bytes_in 0 109000 station_ip 83.123.239.175 109000 port 27 109000 unique_id port 109000 remote_ip 10.8.0.154 109002 username hashtadani3 109002 mac 109002 bytes_out 0 109002 bytes_in 0 109002 station_ip 83.123.239.175 109002 port 27 109002 unique_id port 109002 remote_ip 10.8.0.154 109007 username hashtadani3 109007 mac 109007 bytes_out 770724 109007 bytes_in 10313030 109007 station_ip 83.123.239.175 109007 port 27 109007 unique_id port 109007 remote_ip 10.8.0.154 109008 username mohammadmahdi 109008 mac 109008 bytes_out 0 109008 bytes_in 0 109008 station_ip 5.119.149.118 109008 port 29 109008 unique_id port 109008 remote_ip 10.8.0.54 109012 username malekpoir 109012 mac 109012 bytes_out 4218550 109012 bytes_in 45055767 109012 station_ip 5.119.29.241 109012 port 15 109012 unique_id port 109012 remote_ip 10.8.0.58 109014 username hashtadani3 109014 mac 109014 bytes_out 0 109014 bytes_in 0 109014 station_ip 83.123.239.175 109014 port 31 109014 unique_id port 109014 remote_ip 10.8.0.154 109015 username aminvpn 109015 mac 109015 bytes_out 0 109015 bytes_in 0 109015 station_ip 83.122.233.206 109015 port 30 109015 unique_id port 109015 remote_ip 10.8.0.14 109016 username hashtadani3 109016 mac 109016 bytes_out 0 109016 bytes_in 0 109016 station_ip 83.123.239.175 109016 port 30 109016 unique_id port 109016 remote_ip 10.8.0.154 109017 username aminvpn 109017 mac 109017 bytes_out 0 109017 bytes_in 0 109017 station_ip 83.122.233.206 109017 port 31 109017 unique_id port 109017 remote_ip 10.8.0.14 109020 username hashtadani3 109020 mac 109020 bytes_out 0 109020 bytes_in 0 109020 station_ip 83.123.239.175 109020 port 30 109020 unique_id port 109020 remote_ip 10.8.0.154 109022 username aminvpn 109022 mac 109022 bytes_out 19580 109022 bytes_in 22358 109022 station_ip 83.122.233.206 109022 port 32 109022 unique_id port 109022 remote_ip 10.8.0.14 109026 username hashtadani3 109026 mac 109026 bytes_out 0 109026 bytes_in 0 109026 station_ip 83.123.239.175 109026 port 32 109026 unique_id port 109026 remote_ip 10.8.0.154 109029 username morteza 109029 mac 109029 bytes_out 294075 109029 bytes_in 2550442 109029 station_ip 83.122.176.87 109029 port 30 109029 unique_id port 109029 remote_ip 10.8.0.46 109035 username hashtadani3 109035 mac 109035 bytes_out 0 109035 bytes_in 0 109035 station_ip 83.123.239.175 109035 port 27 109035 unique_id port 108972 mac 108972 bytes_out 0 108972 bytes_in 0 108972 station_ip 83.123.239.175 108972 port 29 108972 unique_id port 108972 remote_ip 10.8.0.154 108973 username mahyaarabpour 108973 kill_reason Relative expiration date has reached 108973 mac 108973 bytes_out 0 108973 bytes_in 0 108973 station_ip 5.62.217.106 108973 port 29 108973 unique_id port 108976 username mohammadjavad 108976 kill_reason Another user logged on this global unique id 108976 mac 108976 bytes_out 0 108976 bytes_in 0 108976 station_ip 83.122.18.111 108976 port 26 108976 unique_id port 108978 username hashtadani3 108978 mac 108978 bytes_out 0 108978 bytes_in 0 108978 station_ip 83.123.239.175 108978 port 29 108978 unique_id port 108978 remote_ip 10.8.0.154 108982 username hashtadani3 108982 mac 108982 bytes_out 0 108982 bytes_in 0 108982 station_ip 83.123.239.175 108982 port 30 108982 unique_id port 108982 remote_ip 10.8.0.154 108988 username hashtadani3 108988 mac 108988 bytes_out 0 108988 bytes_in 0 108988 station_ip 83.123.239.175 108988 port 12 108988 unique_id port 108988 remote_ip 10.8.1.94 108989 username hashtadani3 108989 mac 108989 bytes_out 86400 108989 bytes_in 975261 108989 station_ip 83.123.239.175 108989 port 12 108989 unique_id port 108989 remote_ip 10.8.1.94 108990 username hashtadani3 108990 mac 108990 bytes_out 0 108990 bytes_in 0 108990 station_ip 83.123.239.175 108990 port 29 108990 unique_id port 108990 remote_ip 10.8.0.154 108991 username hashtadani3 108991 mac 108991 bytes_out 0 108991 bytes_in 0 108991 station_ip 83.123.239.175 108991 port 29 108991 unique_id port 108991 remote_ip 10.8.0.154 108993 username hashtadani3 108993 mac 108993 bytes_out 0 108993 bytes_in 0 108993 station_ip 83.123.239.175 108993 port 29 108993 unique_id port 108993 remote_ip 10.8.0.154 108994 username hashtadani3 108994 mac 108994 bytes_out 0 108994 bytes_in 0 108994 station_ip 83.123.239.175 108994 port 29 108994 unique_id port 108994 remote_ip 10.8.0.154 108996 username hashtadani3 108996 mac 108996 bytes_out 0 108996 bytes_in 0 108996 station_ip 83.123.239.175 108996 port 29 108996 unique_id port 108996 remote_ip 10.8.0.154 108998 username hashtadani3 108998 mac 108998 bytes_out 0 108998 bytes_in 0 108998 station_ip 83.123.239.175 108998 port 27 108998 unique_id port 108998 remote_ip 10.8.0.154 109003 username hashtadani3 109003 mac 109003 bytes_out 0 109003 bytes_in 0 109003 station_ip 83.123.239.175 109003 port 27 109003 unique_id port 109003 remote_ip 10.8.0.154 109004 username mehdizare 109004 mac 109004 bytes_out 0 109004 bytes_in 0 109004 station_ip 5.119.226.18 109004 port 11 109004 unique_id port 109004 remote_ip 10.8.1.42 109006 username zare 109006 mac 109006 bytes_out 0 109006 bytes_in 0 109006 station_ip 94.183.214.14 109006 port 12 109006 unique_id port 109006 remote_ip 10.8.1.58 109009 username mehdizare 109009 mac 109009 bytes_out 0 109009 bytes_in 0 109009 station_ip 5.119.226.18 109009 port 11 109009 unique_id port 109009 remote_ip 10.8.1.42 109018 username hashtadani3 109018 mac 109018 bytes_out 0 109018 bytes_in 0 109018 station_ip 83.123.239.175 109018 port 30 109018 unique_id port 109018 remote_ip 10.8.0.154 109019 username hashtadani3 109019 mac 109019 bytes_out 0 109019 bytes_in 0 109019 station_ip 83.123.239.175 109019 port 30 109019 unique_id port 109019 remote_ip 10.8.0.154 109021 username hashtadani3 109021 mac 109021 bytes_out 0 109021 bytes_in 0 108985 unique_id port 108985 remote_ip 10.8.0.14 108992 username hashtadani3 108992 mac 108992 bytes_out 0 108992 bytes_in 0 108992 station_ip 83.123.239.175 108992 port 29 108992 unique_id port 108992 remote_ip 10.8.0.154 108995 username aminvpn 108995 mac 108995 bytes_out 0 108995 bytes_in 0 108995 station_ip 5.119.89.251 108995 port 27 108995 unique_id port 108997 username hashtadani3 108997 mac 108997 bytes_out 0 108997 bytes_in 0 108997 station_ip 83.123.239.175 108997 port 27 108997 unique_id port 108997 remote_ip 10.8.0.154 108999 username hashtadani3 108999 mac 108999 bytes_out 0 108999 bytes_in 0 108999 station_ip 83.123.239.175 108999 port 27 108999 unique_id port 108999 remote_ip 10.8.0.154 109001 username hashtadani3 109001 mac 109001 bytes_out 0 109001 bytes_in 0 109001 station_ip 83.123.239.175 109001 port 27 109001 unique_id port 109001 remote_ip 10.8.0.154 109005 username mehdizare 109005 mac 109005 bytes_out 0 109005 bytes_in 0 109005 station_ip 5.119.226.18 109005 port 11 109005 unique_id port 109005 remote_ip 10.8.1.42 109010 username hashtadani3 109010 mac 109010 bytes_out 0 109010 bytes_in 0 109010 station_ip 83.123.239.175 109010 port 29 109010 unique_id port 109010 remote_ip 10.8.0.154 109011 username hashtadani3 109011 mac 109011 bytes_out 0 109011 bytes_in 0 109011 station_ip 83.123.239.175 109011 port 30 109011 unique_id port 109011 remote_ip 10.8.0.154 109013 username hashtadani3 109013 mac 109013 bytes_out 0 109013 bytes_in 0 109013 station_ip 83.123.239.175 109013 port 15 109013 unique_id port 109013 remote_ip 10.8.0.154 109024 username zare 109024 mac 109024 bytes_out 0 109024 bytes_in 0 109024 station_ip 94.183.214.14 109024 port 12 109024 unique_id port 109024 remote_ip 10.8.1.58 109025 username hashtadani3 109025 mac 109025 bytes_out 0 109025 bytes_in 0 109025 station_ip 83.123.239.175 109025 port 32 109025 unique_id port 109025 remote_ip 10.8.0.154 109028 username hashtadani3 109028 mac 109028 bytes_out 0 109028 bytes_in 0 109028 station_ip 83.123.239.175 109028 port 32 109028 unique_id port 109028 remote_ip 10.8.0.154 109031 username mohammadmahdi 109031 mac 109031 bytes_out 8039333 109031 bytes_in 19692612 109031 station_ip 5.119.149.118 109031 port 27 109031 unique_id port 109031 remote_ip 10.8.0.54 109033 username hashtadani3 109033 mac 109033 bytes_out 0 109033 bytes_in 0 109033 station_ip 83.123.239.175 109033 port 27 109033 unique_id port 109033 remote_ip 10.8.0.154 109034 username hashtadani3 109034 mac 109034 bytes_out 0 109034 bytes_in 0 109034 station_ip 83.123.239.175 109034 port 27 109034 unique_id port 109034 remote_ip 10.8.0.154 109039 username hashtadani3 109039 mac 109039 bytes_out 0 109039 bytes_in 0 109039 station_ip 83.123.239.175 109039 port 30 109039 unique_id port 109039 remote_ip 10.8.0.154 109042 username forozande 109042 mac 109042 bytes_out 2772 109042 bytes_in 4643 109042 station_ip 37.129.115.230 109042 port 30 109042 unique_id port 109042 remote_ip 10.8.0.74 109045 username hashtadani3 109045 mac 109045 bytes_out 68507 109045 bytes_in 64986 109045 station_ip 83.123.239.175 109045 port 27 109045 unique_id port 109045 remote_ip 10.8.0.154 109049 username amir 109049 mac 109049 bytes_out 0 109049 bytes_in 0 109049 station_ip 46.225.215.34 109049 port 12 109049 unique_id port 109049 remote_ip 10.8.1.22 109051 username amir 109051 mac 109051 bytes_out 0 109021 station_ip 83.123.239.175 109021 port 30 109021 unique_id port 109021 remote_ip 10.8.0.154 109023 username hashtadani3 109023 mac 109023 bytes_out 0 109023 bytes_in 0 109023 station_ip 83.123.239.175 109023 port 32 109023 unique_id port 109023 remote_ip 10.8.0.154 109027 username hashtadani3 109027 mac 109027 bytes_out 0 109027 bytes_in 0 109027 station_ip 83.123.239.175 109027 port 32 109027 unique_id port 109027 remote_ip 10.8.0.154 109030 username hashtadani3 109030 mac 109030 bytes_out 0 109030 bytes_in 0 109030 station_ip 83.123.239.175 109030 port 30 109030 unique_id port 109030 remote_ip 10.8.0.154 109032 username forozande 109032 mac 109032 bytes_out 0 109032 bytes_in 0 109032 station_ip 83.122.119.102 109032 port 13 109032 unique_id port 109032 remote_ip 10.8.1.102 109036 username hashtadani3 109036 mac 109036 bytes_out 0 109036 bytes_in 0 109036 station_ip 83.123.239.175 109036 port 27 109036 unique_id port 109036 remote_ip 10.8.0.154 109040 username aminvpn 109040 mac 109040 bytes_out 28375 109040 bytes_in 34018 109040 station_ip 83.122.233.206 109040 port 27 109040 unique_id port 109040 remote_ip 10.8.0.14 109048 username hashtadani3 109048 mac 109048 bytes_out 0 109048 bytes_in 0 109048 station_ip 83.123.239.175 109048 port 30 109048 unique_id port 109048 remote_ip 10.8.0.154 109050 username mehdizare 109050 mac 109050 bytes_out 0 109050 bytes_in 0 109050 station_ip 5.119.226.18 109050 port 11 109050 unique_id port 109050 remote_ip 10.8.1.42 109053 username aminvpn 109053 mac 109053 bytes_out 17477 109053 bytes_in 21879 109053 station_ip 83.122.233.206 109053 port 27 109053 unique_id port 109053 remote_ip 10.8.0.14 109054 username hashtadani3 109054 mac 109054 bytes_out 0 109054 bytes_in 0 109054 station_ip 83.123.239.175 109054 port 27 109054 unique_id port 109054 remote_ip 10.8.0.154 109058 username hashtadani3 109058 mac 109058 bytes_out 0 109058 bytes_in 0 109058 station_ip 83.123.239.175 109058 port 27 109058 unique_id port 109058 remote_ip 10.8.0.154 109062 username zare 109062 mac 109062 bytes_out 0 109062 bytes_in 0 109062 station_ip 94.183.214.14 109062 port 30 109062 unique_id port 109062 remote_ip 10.8.0.18 109074 username amir 109074 mac 109074 bytes_out 0 109074 bytes_in 0 109074 station_ip 46.225.215.34 109074 port 12 109074 unique_id port 109074 remote_ip 10.8.1.22 109078 username amir 109078 mac 109078 bytes_out 92981 109078 bytes_in 514707 109078 station_ip 46.225.215.34 109078 port 12 109078 unique_id port 109078 remote_ip 10.8.1.22 109083 username mehdizare 109083 mac 109083 bytes_out 11233 109083 bytes_in 13493 109083 station_ip 5.119.226.18 109083 port 11 109083 unique_id port 109083 remote_ip 10.8.1.42 109086 username forozande 109086 mac 109086 bytes_out 72756 109086 bytes_in 180009 109086 station_ip 83.123.207.229 109086 port 29 109086 unique_id port 109086 remote_ip 10.8.0.74 109087 username mehdizare 109087 mac 109087 bytes_out 10728 109087 bytes_in 19874 109087 station_ip 5.119.226.18 109087 port 29 109087 unique_id port 109087 remote_ip 10.8.0.90 109090 username alipour 109090 mac 109090 bytes_out 0 109090 bytes_in 0 109090 station_ip 83.123.114.25 109090 port 26 109090 unique_id port 109090 remote_ip 10.8.0.102 109091 username amir 109091 mac 109091 bytes_out 0 109091 bytes_in 0 109091 station_ip 46.225.215.34 109091 port 26 109091 unique_id port 109091 remote_ip 10.8.0.50 109035 remote_ip 10.8.0.154 109037 username aminvpn 109037 mac 109037 bytes_out 53680 109037 bytes_in 60596 109037 station_ip 83.122.233.206 109037 port 31 109037 unique_id port 109037 remote_ip 10.8.0.14 109038 username hashtadani3 109038 mac 109038 bytes_out 0 109038 bytes_in 0 109038 station_ip 83.123.239.175 109038 port 13 109038 unique_id port 109038 remote_ip 10.8.1.94 109041 username forozande 109041 mac 109041 bytes_out 0 109041 bytes_in 0 109041 station_ip 37.129.115.230 109041 port 12 109041 unique_id port 109041 remote_ip 10.8.1.102 109043 username mehdizare 109043 mac 109043 bytes_out 0 109043 bytes_in 0 109043 station_ip 5.119.226.18 109043 port 11 109043 unique_id port 109043 remote_ip 10.8.1.42 109044 username aminvpn 109044 mac 109044 bytes_out 0 109044 bytes_in 0 109044 station_ip 83.122.233.206 109044 port 13 109044 unique_id port 109044 remote_ip 10.8.1.6 109046 username aminvpn 109046 mac 109046 bytes_out 0 109046 bytes_in 0 109046 station_ip 83.122.233.206 109046 port 12 109046 unique_id port 109046 remote_ip 10.8.1.6 109047 username hashtadani3 109047 mac 109047 bytes_out 0 109047 bytes_in 0 109047 station_ip 83.123.239.175 109047 port 30 109047 unique_id port 109047 remote_ip 10.8.0.154 109052 username hashtadani3 109052 mac 109052 bytes_out 0 109052 bytes_in 0 109052 station_ip 83.123.239.175 109052 port 30 109052 unique_id port 109052 remote_ip 10.8.0.154 109055 username forozande 109055 mac 109055 bytes_out 129051 109055 bytes_in 1688183 109055 station_ip 37.129.115.230 109055 port 31 109055 unique_id port 109055 remote_ip 10.8.0.74 109057 username zare 109057 mac 109057 bytes_out 0 109057 bytes_in 0 109057 station_ip 94.183.214.14 109057 port 11 109057 unique_id port 109057 remote_ip 10.8.1.58 109059 username aminvpn 109059 mac 109059 bytes_out 5603 109059 bytes_in 5839 109059 station_ip 83.122.233.206 109059 port 30 109059 unique_id port 109059 remote_ip 10.8.0.14 109060 username amir 109060 mac 109060 bytes_out 0 109060 bytes_in 0 109060 station_ip 46.225.215.34 109060 port 11 109060 unique_id port 109060 remote_ip 10.8.1.22 109063 username malekpoir 109063 mac 109063 bytes_out 1454038 109063 bytes_in 9556016 109063 station_ip 5.120.170.159 109063 port 15 109063 unique_id port 109063 remote_ip 10.8.0.58 109064 username alipour 109064 mac 109064 bytes_out 0 109064 bytes_in 0 109064 station_ip 83.123.114.25 109064 port 26 109064 unique_id port 109064 remote_ip 10.8.0.102 109067 username amir 109067 mac 109067 bytes_out 0 109067 bytes_in 0 109067 station_ip 46.225.215.34 109067 port 11 109067 unique_id port 109067 remote_ip 10.8.1.22 109068 username amir 109068 mac 109068 bytes_out 0 109068 bytes_in 0 109068 station_ip 46.225.215.34 109068 port 11 109068 unique_id port 109068 remote_ip 10.8.1.22 109069 username amir 109069 mac 109069 bytes_out 0 109069 bytes_in 0 109069 station_ip 46.225.215.34 109069 port 15 109069 unique_id port 109069 remote_ip 10.8.0.50 109070 username amir 109070 mac 109070 bytes_out 0 109070 bytes_in 0 109070 station_ip 46.225.215.34 109070 port 30 109070 unique_id port 109070 remote_ip 10.8.0.50 109072 username amir 109072 mac 109072 bytes_out 0 109072 bytes_in 0 109072 station_ip 46.225.215.34 109072 port 30 109072 unique_id port 109072 remote_ip 10.8.0.50 109079 username arman1 109079 mac 109079 bytes_out 0 109079 bytes_in 0 109051 bytes_in 0 109051 station_ip 46.225.215.34 109051 port 11 109051 unique_id port 109051 remote_ip 10.8.1.22 109056 username amir 109056 mac 109056 bytes_out 0 109056 bytes_in 0 109056 station_ip 46.225.215.34 109056 port 12 109056 unique_id port 109056 remote_ip 10.8.1.22 109061 username zare 109061 mac 109061 bytes_out 12860 109061 bytes_in 27297 109061 station_ip 94.183.214.14 109061 port 30 109061 unique_id port 109061 remote_ip 10.8.0.18 109065 username mehdizare 109065 mac 109065 bytes_out 10000 109065 bytes_in 12861 109065 station_ip 5.119.226.18 109065 port 11 109065 unique_id port 109065 remote_ip 10.8.1.42 109066 username zare 109066 mac 109066 bytes_out 0 109066 bytes_in 0 109066 station_ip 94.183.214.14 109066 port 15 109066 unique_id port 109066 remote_ip 10.8.0.18 109071 username amir 109071 kill_reason Maximum check online fails reached 109071 mac 109071 bytes_out 0 109071 bytes_in 0 109071 station_ip 46.225.215.34 109071 port 15 109071 unique_id port 109073 username amir 109073 kill_reason Maximum check online fails reached 109073 mac 109073 bytes_out 0 109073 bytes_in 0 109073 station_ip 46.225.215.34 109073 port 31 109073 unique_id port 109075 username mohammadmahdi 109075 mac 109075 bytes_out 0 109075 bytes_in 0 109075 station_ip 5.119.149.118 109075 port 30 109075 unique_id port 109075 remote_ip 10.8.0.54 109076 username amir 109076 mac 109076 bytes_out 0 109076 bytes_in 0 109076 station_ip 46.225.215.34 109076 port 12 109076 unique_id port 109076 remote_ip 10.8.1.22 109077 username mehdizare 109077 mac 109077 bytes_out 0 109077 bytes_in 0 109077 station_ip 5.119.226.18 109077 port 11 109077 unique_id port 109077 remote_ip 10.8.1.42 109080 username amir 109080 mac 109080 bytes_out 0 109080 bytes_in 0 109080 station_ip 46.225.215.34 109080 port 11 109080 unique_id port 109080 remote_ip 10.8.1.22 109081 username amir 109081 mac 109081 bytes_out 134296 109081 bytes_in 605248 109081 station_ip 46.225.215.34 109081 port 29 109081 unique_id port 109081 remote_ip 10.8.0.50 109082 username amir 109082 mac 109082 bytes_out 0 109082 bytes_in 0 109082 station_ip 46.225.215.34 109082 port 29 109082 unique_id port 109082 remote_ip 10.8.0.50 109085 username amir 109085 kill_reason Maximum check online fails reached 109085 mac 109085 bytes_out 0 109085 bytes_in 0 109085 station_ip 46.225.215.34 109085 port 30 109085 unique_id port 109089 username amir 109089 mac 109089 bytes_out 182697 109089 bytes_in 803950 109089 station_ip 46.225.215.34 109089 port 12 109089 unique_id port 109089 remote_ip 10.8.1.22 109092 username mehdizare 109092 mac 109092 bytes_out 12037 109092 bytes_in 17473 109092 station_ip 5.119.226.18 109092 port 29 109092 unique_id port 109092 remote_ip 10.8.0.90 109093 username alireza 109093 unique_id port 109093 terminate_cause User-Request 109093 bytes_out 1931816 109093 bytes_in 56653980 109093 station_ip 5.119.181.10 109093 port 15729061 109093 nas_port_type Virtual 109093 remote_ip 5.5.5.126 109094 username amir 109094 mac 109094 bytes_out 0 109094 bytes_in 0 109094 station_ip 46.225.215.34 109094 port 26 109094 unique_id port 109094 remote_ip 10.8.0.50 109095 username amir 109095 mac 109095 bytes_out 0 109095 bytes_in 0 109095 station_ip 46.225.215.34 109095 port 26 109095 unique_id port 109095 remote_ip 10.8.0.50 109097 username ehsun 109097 kill_reason Maximum check online fails reached 109097 mac 109097 bytes_out 0 109097 bytes_in 0 109079 station_ip 5.120.51.122 109079 port 29 109079 unique_id port 109079 remote_ip 10.8.0.110 109084 username mehdizare 109084 mac 109084 bytes_out 0 109084 bytes_in 0 109084 station_ip 5.119.226.18 109084 port 11 109084 unique_id port 109084 remote_ip 10.8.1.42 109088 username aminvpn 109088 mac 109088 bytes_out 0 109088 bytes_in 0 109088 station_ip 83.122.233.206 109088 port 27 109088 unique_id port 109088 remote_ip 10.8.0.14 109098 username amir 109098 mac 109098 bytes_out 76780 109098 bytes_in 244970 109098 station_ip 46.225.215.34 109098 port 26 109098 unique_id port 109098 remote_ip 10.8.0.50 109099 username amir 109099 mac 109099 bytes_out 0 109099 bytes_in 0 109099 station_ip 46.225.215.34 109099 port 26 109099 unique_id port 109099 remote_ip 10.8.0.50 109102 username mehdizare 109102 mac 109102 bytes_out 0 109102 bytes_in 0 109102 station_ip 5.119.226.18 109102 port 32 109102 unique_id port 109102 remote_ip 10.8.0.90 109103 username amir 109103 mac 109103 bytes_out 129620 109103 bytes_in 498374 109103 station_ip 46.225.215.34 109103 port 33 109103 unique_id port 109103 remote_ip 10.8.0.50 109109 username amir 109109 mac 109109 bytes_out 0 109109 bytes_in 0 109109 station_ip 46.225.215.34 109109 port 27 109109 unique_id port 109109 remote_ip 10.8.0.50 109110 username mehdizare 109110 mac 109110 bytes_out 19279 109110 bytes_in 21316 109110 station_ip 5.119.226.18 109110 port 32 109110 unique_id port 109110 remote_ip 10.8.0.90 109111 username mehdizare 109111 mac 109111 bytes_out 0 109111 bytes_in 0 109111 station_ip 5.119.226.18 109111 port 27 109111 unique_id port 109111 remote_ip 10.8.0.90 109114 username aminvpn 109114 mac 109114 bytes_out 0 109114 bytes_in 0 109114 station_ip 83.122.233.206 109114 port 11 109114 unique_id port 109114 remote_ip 10.8.1.6 109117 username amir 109117 mac 109117 bytes_out 0 109117 bytes_in 0 109117 station_ip 46.225.215.34 109117 port 34 109117 unique_id port 109117 remote_ip 10.8.0.50 109119 username amir 109119 mac 109119 bytes_out 0 109119 bytes_in 0 109119 station_ip 46.225.215.34 109119 port 34 109119 unique_id port 109119 remote_ip 10.8.0.50 109120 username amir 109120 mac 109120 bytes_out 0 109120 bytes_in 0 109120 station_ip 46.225.215.34 109120 port 34 109120 unique_id port 109120 remote_ip 10.8.0.50 109121 username amir 109121 mac 109121 bytes_out 0 109121 bytes_in 0 109121 station_ip 46.225.215.34 109121 port 34 109121 unique_id port 109121 remote_ip 10.8.0.50 109130 username amir 109130 mac 109130 bytes_out 0 109130 bytes_in 0 109130 station_ip 46.225.215.34 109130 port 34 109130 unique_id port 109130 remote_ip 10.8.0.50 109131 username morteza 109131 mac 109131 bytes_out 0 109131 bytes_in 0 109131 station_ip 83.122.213.243 109131 port 33 109131 unique_id port 109131 remote_ip 10.8.0.46 109135 username aminvpn 109135 mac 109135 bytes_out 945644 109135 bytes_in 10878106 109135 station_ip 37.129.247.229 109135 port 35 109135 unique_id port 109135 remote_ip 10.8.0.14 109141 username hashtadani3 109141 kill_reason Another user logged on this global unique id 109141 mac 109141 bytes_out 0 109141 bytes_in 0 109141 station_ip 5.202.5.201 109141 port 27 109141 unique_id port 109141 remote_ip 10.8.0.154 109142 username amir 109142 mac 109142 bytes_out 100306 109142 bytes_in 305224 109142 station_ip 46.225.215.34 109142 port 35 109142 unique_id port 109142 remote_ip 10.8.0.50 109096 username ehsun 109096 mac 109096 bytes_out 0 109096 bytes_in 0 109096 station_ip 5.120.90.124 109096 port 32 109096 unique_id port 109096 remote_ip 10.8.0.162 109100 username amir 109100 mac 109100 bytes_out 0 109100 bytes_in 0 109100 station_ip 46.225.215.34 109100 port 32 109100 unique_id port 109100 remote_ip 10.8.0.50 109106 username mohammadjavad 109106 mac 109106 bytes_out 469835 109106 bytes_in 6540492 109106 station_ip 83.123.217.37 109106 port 27 109106 unique_id port 109106 remote_ip 10.8.0.142 109107 username sedighe 109107 mac 109107 bytes_out 138790 109107 bytes_in 151903 109107 station_ip 83.122.222.209 109107 port 26 109107 unique_id port 109107 remote_ip 10.8.0.146 109113 username amir 109113 mac 109113 bytes_out 0 109113 bytes_in 0 109113 station_ip 46.225.215.34 109113 port 26 109113 unique_id port 109113 remote_ip 10.8.0.50 109123 username mohammadmahdi 109123 mac 109123 bytes_out 0 109123 bytes_in 0 109123 station_ip 5.119.149.118 109123 port 35 109123 unique_id port 109123 remote_ip 10.8.0.54 109124 username aminvpn 109124 mac 109124 bytes_out 0 109124 bytes_in 0 109124 station_ip 83.122.233.206 109124 port 27 109124 unique_id port 109124 remote_ip 10.8.0.14 109127 username hashtadani3 109127 mac 109127 bytes_out 0 109127 bytes_in 0 109127 station_ip 5.202.5.201 109127 port 27 109127 unique_id port 109127 remote_ip 10.8.0.154 109129 username amir 109129 mac 109129 bytes_out 0 109129 bytes_in 0 109129 station_ip 46.225.215.34 109129 port 11 109129 unique_id port 109129 remote_ip 10.8.1.22 109132 username amir 109132 mac 109132 bytes_out 0 109132 bytes_in 0 109132 station_ip 46.225.215.34 109132 port 34 109132 unique_id port 109132 remote_ip 10.8.0.50 109134 username amir 109134 mac 109134 bytes_out 0 109134 bytes_in 0 109134 station_ip 46.225.215.34 109134 port 34 109134 unique_id port 109134 remote_ip 10.8.0.50 109136 username amir 109136 mac 109136 bytes_out 0 109136 bytes_in 0 109136 station_ip 46.225.215.34 109136 port 35 109136 unique_id port 109136 remote_ip 10.8.0.50 109137 username amir 109137 mac 109137 bytes_out 0 109137 bytes_in 0 109137 station_ip 46.225.215.34 109137 port 35 109137 unique_id port 109137 remote_ip 10.8.0.50 109138 username amir 109138 mac 109138 bytes_out 0 109138 bytes_in 0 109138 station_ip 46.225.215.34 109138 port 35 109138 unique_id port 109138 remote_ip 10.8.0.50 109146 username hashtadani3 109146 mac 109146 bytes_out 0 109146 bytes_in 0 109146 station_ip 5.202.5.201 109146 port 27 109146 unique_id port 109148 username amir 109148 mac 109148 bytes_out 0 109148 bytes_in 0 109148 station_ip 46.225.215.34 109148 port 36 109148 unique_id port 109148 remote_ip 10.8.0.50 109152 username amir 109152 mac 109152 bytes_out 0 109152 bytes_in 0 109152 station_ip 46.225.215.34 109152 port 27 109152 unique_id port 109152 remote_ip 10.8.0.50 109153 username mehdizare 109153 mac 109153 bytes_out 0 109153 bytes_in 0 109153 station_ip 5.119.226.18 109153 port 27 109153 unique_id port 109153 remote_ip 10.8.0.90 109154 username mehdizare 109154 mac 109154 bytes_out 0 109154 bytes_in 0 109154 station_ip 5.119.226.18 109154 port 35 109154 unique_id port 109154 remote_ip 10.8.0.90 109156 username amir 109156 mac 109156 bytes_out 0 109156 bytes_in 0 109156 station_ip 46.225.215.34 109156 port 32 109156 unique_id port 109097 station_ip 5.120.90.124 109097 port 29 109097 unique_id port 109101 username mehdizare 109101 mac 109101 bytes_out 22369 109101 bytes_in 28620 109101 station_ip 5.119.226.18 109101 port 27 109101 unique_id port 109101 remote_ip 10.8.0.90 109104 username aminvpn 109104 mac 109104 bytes_out 0 109104 bytes_in 0 109104 station_ip 83.122.233.206 109104 port 11 109104 unique_id port 109104 remote_ip 10.8.1.6 109105 username amir 109105 mac 109105 bytes_out 0 109105 bytes_in 0 109105 station_ip 46.225.215.34 109105 port 33 109105 unique_id port 109105 remote_ip 10.8.0.50 109108 username mirzaei 109108 kill_reason Another user logged on this global unique id 109108 mac 109108 bytes_out 0 109108 bytes_in 0 109108 station_ip 5.120.139.126 109108 port 21 109108 unique_id port 109112 username amir 109112 mac 109112 bytes_out 0 109112 bytes_in 0 109112 station_ip 46.225.215.34 109112 port 26 109112 unique_id port 109112 remote_ip 10.8.0.50 109115 username morteza 109115 mac 109115 bytes_out 1710846 109115 bytes_in 28370094 109115 station_ip 83.122.213.243 109115 port 34 109115 unique_id port 109115 remote_ip 10.8.0.46 109116 username amir 109116 mac 109116 bytes_out 0 109116 bytes_in 0 109116 station_ip 46.225.215.34 109116 port 26 109116 unique_id port 109116 remote_ip 10.8.0.50 109118 username mehdizare 109118 mac 109118 bytes_out 0 109118 bytes_in 0 109118 station_ip 5.119.226.18 109118 port 32 109118 unique_id port 109118 remote_ip 10.8.0.90 109122 username amir 109122 mac 109122 bytes_out 28567 109122 bytes_in 119709 109122 station_ip 46.225.215.34 109122 port 11 109122 unique_id port 109122 remote_ip 10.8.1.22 109125 username amir 109125 mac 109125 bytes_out 0 109125 bytes_in 0 109125 station_ip 46.225.215.34 109125 port 11 109125 unique_id port 109125 remote_ip 10.8.1.22 109126 username sedighe 109126 mac 109126 bytes_out 0 109126 bytes_in 0 109126 station_ip 83.122.222.209 109126 port 36 109126 unique_id port 109126 remote_ip 10.8.0.146 109128 username amir 109128 mac 109128 bytes_out 0 109128 bytes_in 0 109128 station_ip 46.225.215.34 109128 port 11 109128 unique_id port 109128 remote_ip 10.8.1.22 109133 username morteza 109133 kill_reason Maximum check online fails reached 109133 mac 109133 bytes_out 0 109133 bytes_in 0 109133 station_ip 83.122.213.243 109133 port 33 109133 unique_id port 109139 username amir 109139 mac 109139 bytes_out 0 109139 bytes_in 0 109139 station_ip 46.225.215.34 109139 port 35 109139 unique_id port 109139 remote_ip 10.8.0.50 109140 username malekpoir 109140 mac 109140 bytes_out 0 109140 bytes_in 0 109140 station_ip 5.120.170.159 109140 port 26 109140 unique_id port 109140 remote_ip 10.8.0.58 109144 username mahdiyehalizadeh 109144 mac 109144 bytes_out 0 109144 bytes_in 0 109144 station_ip 37.129.137.175 109144 port 36 109144 unique_id port 109144 remote_ip 10.8.0.82 109145 username amir 109145 mac 109145 bytes_out 0 109145 bytes_in 0 109145 station_ip 46.225.215.34 109145 port 35 109145 unique_id port 109145 remote_ip 10.8.0.50 109151 username mehdizare 109151 mac 109151 bytes_out 0 109151 bytes_in 0 109151 station_ip 5.119.226.18 109151 port 32 109151 unique_id port 109151 remote_ip 10.8.0.90 109157 username mehdizare 109157 mac 109157 bytes_out 14629 109157 bytes_in 16592 109157 station_ip 5.119.226.18 109157 port 27 109157 unique_id port 109157 remote_ip 10.8.0.90 109163 username hashtadani3 109163 mac 109143 username amir 109143 mac 109143 bytes_out 0 109143 bytes_in 0 109143 station_ip 46.225.215.34 109143 port 35 109143 unique_id port 109143 remote_ip 10.8.0.50 109147 username hashtadani3 109147 mac 109147 bytes_out 0 109147 bytes_in 0 109147 station_ip 5.202.5.201 109147 port 27 109147 unique_id port 109147 remote_ip 10.8.0.154 109149 username sedighe 109149 mac 109149 bytes_out 0 109149 bytes_in 0 109149 station_ip 83.122.222.209 109149 port 35 109149 unique_id port 109149 remote_ip 10.8.0.146 109150 username hashtadani3 109150 mac 109150 bytes_out 0 109150 bytes_in 0 109150 station_ip 5.202.5.201 109150 port 27 109150 unique_id port 109150 remote_ip 10.8.0.154 109155 username amir 109155 mac 109155 bytes_out 0 109155 bytes_in 0 109155 station_ip 46.225.215.34 109155 port 32 109155 unique_id port 109155 remote_ip 10.8.0.50 109158 username amir 109158 mac 109158 bytes_out 71944 109158 bytes_in 163481 109158 station_ip 46.225.215.34 109158 port 12 109158 unique_id port 109158 remote_ip 10.8.1.22 109160 username hashtadani3 109160 mac 109160 bytes_out 0 109160 bytes_in 0 109160 station_ip 5.202.5.201 109160 port 12 109160 unique_id port 109160 remote_ip 10.8.1.94 109161 username hashtadani3 109161 mac 109161 bytes_out 0 109161 bytes_in 0 109161 station_ip 5.202.5.201 109161 port 12 109161 unique_id port 109161 remote_ip 10.8.1.94 109162 username amir 109162 mac 109162 bytes_out 0 109162 bytes_in 0 109162 station_ip 46.225.215.34 109162 port 32 109162 unique_id port 109162 remote_ip 10.8.0.50 109165 username amir 109165 mac 109165 bytes_out 0 109165 bytes_in 0 109165 station_ip 46.225.215.34 109165 port 27 109165 unique_id port 109165 remote_ip 10.8.0.50 109167 username hashtadani3 109167 mac 109167 bytes_out 10675 109167 bytes_in 13457 109167 station_ip 5.202.5.201 109167 port 12 109167 unique_id port 109167 remote_ip 10.8.1.94 109171 username amir 109171 mac 109171 bytes_out 0 109171 bytes_in 0 109171 station_ip 46.225.215.34 109171 port 36 109171 unique_id port 109171 remote_ip 10.8.0.50 109173 username amir 109173 mac 109173 bytes_out 0 109173 bytes_in 0 109173 station_ip 46.225.215.34 109173 port 32 109173 unique_id port 109173 remote_ip 10.8.0.50 109176 username hashtadani3 109176 mac 109176 bytes_out 0 109176 bytes_in 0 109176 station_ip 5.202.5.201 109176 port 38 109176 unique_id port 109176 remote_ip 10.8.0.154 109178 username amir 109178 mac 109178 bytes_out 189529 109178 bytes_in 444182 109178 station_ip 46.225.215.34 109178 port 32 109178 unique_id port 109178 remote_ip 10.8.0.50 109179 username zare 109179 mac 109179 bytes_out 0 109179 bytes_in 0 109179 station_ip 94.183.214.14 109179 port 32 109179 unique_id port 109179 remote_ip 10.8.0.18 109183 username zare 109183 mac 109183 bytes_out 0 109183 bytes_in 0 109183 station_ip 94.183.214.14 109183 port 37 109183 unique_id port 109183 remote_ip 10.8.0.18 109185 username zare 109185 mac 109185 bytes_out 0 109185 bytes_in 0 109185 station_ip 94.183.214.14 109185 port 24 109185 unique_id port 109185 remote_ip 10.8.0.18 109186 username amir 109186 mac 109186 bytes_out 0 109186 bytes_in 0 109186 station_ip 46.225.215.34 109186 port 24 109186 unique_id port 109186 remote_ip 10.8.0.50 109188 username amir 109188 mac 109188 bytes_out 0 109188 bytes_in 0 109188 station_ip 46.225.215.34 109188 port 24 109156 remote_ip 10.8.0.50 109159 username amir 109159 mac 109159 bytes_out 0 109159 bytes_in 0 109159 station_ip 46.225.215.34 109159 port 32 109159 unique_id port 109159 remote_ip 10.8.0.50 109168 username hashtadani3 109168 mac 109168 bytes_out 0 109168 bytes_in 0 109168 station_ip 5.202.5.201 109168 port 12 109168 unique_id port 109168 remote_ip 10.8.1.94 109169 username mohammadjavad 109169 mac 109169 bytes_out 143319 109169 bytes_in 827875 109169 station_ip 83.123.195.86 109169 port 35 109169 unique_id port 109169 remote_ip 10.8.0.142 109170 username mehdizare 109170 mac 109170 bytes_out 0 109170 bytes_in 0 109170 station_ip 5.119.226.18 109170 port 32 109170 unique_id port 109170 remote_ip 10.8.0.90 109174 username amir 109174 mac 109174 bytes_out 0 109174 bytes_in 0 109174 station_ip 46.225.215.34 109174 port 32 109174 unique_id port 109174 remote_ip 10.8.0.50 109177 username zare 109177 mac 109177 bytes_out 751413 109177 bytes_in 17105220 109177 station_ip 94.183.214.14 109177 port 37 109177 unique_id port 109177 remote_ip 10.8.0.18 109182 username amir 109182 mac 109182 bytes_out 0 109182 bytes_in 0 109182 station_ip 46.225.215.34 109182 port 32 109182 unique_id port 109182 remote_ip 10.8.0.50 109189 username amir 109189 mac 109189 bytes_out 0 109189 bytes_in 0 109189 station_ip 46.225.215.34 109189 port 24 109189 unique_id port 109189 remote_ip 10.8.0.50 109190 username amir 109190 mac 109190 bytes_out 0 109190 bytes_in 0 109190 station_ip 46.225.215.34 109190 port 24 109190 unique_id port 109190 remote_ip 10.8.0.50 109193 username amir 109193 mac 109193 bytes_out 0 109193 bytes_in 0 109193 station_ip 46.225.215.34 109193 port 13 109193 unique_id port 109193 remote_ip 10.8.1.22 109195 username amir 109195 kill_reason Maximum check online fails reached 109195 mac 109195 bytes_out 0 109195 bytes_in 0 109195 station_ip 46.225.215.34 109195 port 27 109195 unique_id port 109203 username hashtadani3 109203 mac 109203 bytes_out 0 109203 bytes_in 0 109203 station_ip 5.202.5.201 109203 port 32 109203 unique_id port 109203 remote_ip 10.8.0.154 109205 username amir 109205 mac 109205 bytes_out 0 109205 bytes_in 0 109205 station_ip 46.225.215.34 109205 port 12 109205 unique_id port 109205 remote_ip 10.8.1.22 109211 username hashtadani3 109211 mac 109211 bytes_out 0 109211 bytes_in 0 109211 station_ip 5.202.5.201 109211 port 36 109211 unique_id port 109211 remote_ip 10.8.0.154 109212 username amir 109212 mac 109212 bytes_out 188457 109212 bytes_in 374873 109212 station_ip 46.225.215.34 109212 port 12 109212 unique_id port 109212 remote_ip 10.8.1.22 109213 username amir 109213 mac 109213 bytes_out 0 109213 bytes_in 0 109213 station_ip 46.225.215.34 109213 port 36 109213 unique_id port 109213 remote_ip 10.8.0.50 109221 username hashtadani3 109221 mac 109221 bytes_out 0 109221 bytes_in 0 109221 station_ip 5.202.5.201 109221 port 26 109221 unique_id port 109221 remote_ip 10.8.0.154 109224 username aminvpn 109224 mac 109224 bytes_out 0 109224 bytes_in 0 109224 station_ip 83.122.129.242 109224 port 38 109224 unique_id port 109224 remote_ip 10.8.0.14 109225 username tahmasebi 109225 kill_reason Another user logged on this global unique id 109225 mac 109225 bytes_out 0 109225 bytes_in 0 109225 station_ip 5.120.176.53 109225 port 34 109225 unique_id port 109226 username amir 109226 mac 109226 bytes_out 0 109226 bytes_in 0 109163 bytes_out 0 109163 bytes_in 0 109163 station_ip 5.202.5.201 109163 port 12 109163 unique_id port 109163 remote_ip 10.8.1.94 109164 username mehdizare 109164 mac 109164 bytes_out 0 109164 bytes_in 0 109164 station_ip 5.119.226.18 109164 port 27 109164 unique_id port 109164 remote_ip 10.8.0.90 109166 username mehdizare 109166 mac 109166 bytes_out 6979 109166 bytes_in 10528 109166 station_ip 5.119.226.18 109166 port 32 109166 unique_id port 109166 remote_ip 10.8.0.90 109172 username hashtadani3 109172 mac 109172 bytes_out 0 109172 bytes_in 0 109172 station_ip 5.202.5.201 109172 port 12 109172 unique_id port 109172 remote_ip 10.8.1.94 109175 username hashtadani3 109175 mac 109175 bytes_out 0 109175 bytes_in 0 109175 station_ip 5.202.5.201 109175 port 12 109175 unique_id port 109175 remote_ip 10.8.1.94 109180 username sedighe 109180 mac 109180 bytes_out 0 109180 bytes_in 0 109180 station_ip 37.129.98.252 109180 port 27 109180 unique_id port 109180 remote_ip 10.8.0.146 109181 username rajaei 109181 mac 109181 bytes_out 0 109181 bytes_in 0 109181 station_ip 37.153.182.42 109181 port 27 109181 unique_id port 109181 remote_ip 10.8.0.34 109184 username kamali1 109184 mac 109184 bytes_out 0 109184 bytes_in 0 109184 station_ip 5.120.162.37 109184 port 24 109184 unique_id port 109184 remote_ip 10.8.0.70 109187 username zare 109187 mac 109187 bytes_out 0 109187 bytes_in 0 109187 station_ip 94.183.214.14 109187 port 27 109187 unique_id port 109187 remote_ip 10.8.0.18 109191 username zare 109191 mac 109191 bytes_out 0 109191 bytes_in 0 109191 station_ip 94.183.214.14 109191 port 12 109191 unique_id port 109191 remote_ip 10.8.1.58 109194 username rajaei 109194 mac 109194 bytes_out 0 109194 bytes_in 0 109194 station_ip 89.47.68.23 109194 port 38 109194 unique_id port 109194 remote_ip 10.8.0.34 109196 username mehdizare 109196 mac 109196 bytes_out 0 109196 bytes_in 0 109196 station_ip 5.119.226.18 109196 port 35 109196 unique_id port 109196 remote_ip 10.8.0.90 109197 username mehdizare 109197 mac 109197 bytes_out 0 109197 bytes_in 0 109197 station_ip 5.119.226.18 109197 port 13 109197 unique_id port 109197 remote_ip 10.8.1.42 109202 username zare 109202 mac 109202 bytes_out 145390 109202 bytes_in 529613 109202 station_ip 94.183.214.14 109202 port 32 109202 unique_id port 109202 remote_ip 10.8.0.18 109206 username morteza 109206 mac 109206 bytes_out 0 109206 bytes_in 0 109206 station_ip 83.122.213.243 109206 port 11 109206 unique_id port 109214 username morteza 109214 mac 109214 bytes_out 176315 109214 bytes_in 2396617 109214 station_ip 83.122.213.243 109214 port 11 109214 unique_id port 109214 remote_ip 10.8.1.62 109215 username amir 109215 mac 109215 bytes_out 0 109215 bytes_in 0 109215 station_ip 46.225.215.34 109215 port 36 109215 unique_id port 109215 remote_ip 10.8.0.50 109219 username mohammadmahdi 109219 mac 109219 bytes_out 1796589 109219 bytes_in 21785149 109219 station_ip 5.119.149.118 109219 port 37 109219 unique_id port 109219 remote_ip 10.8.0.54 109222 username hashtadani3 109222 mac 109222 bytes_out 0 109222 bytes_in 0 109222 station_ip 5.202.5.201 109222 port 38 109222 unique_id port 109222 remote_ip 10.8.0.154 109229 username morteza 109229 mac 109229 bytes_out 117400 109229 bytes_in 784039 109229 station_ip 83.122.213.243 109229 port 11 109229 unique_id port 109229 remote_ip 10.8.1.62 109231 username alipour 109188 unique_id port 109188 remote_ip 10.8.0.50 109192 username zare 109192 mac 109192 bytes_out 0 109192 bytes_in 0 109192 station_ip 94.183.214.14 109192 port 12 109192 unique_id port 109192 remote_ip 10.8.1.58 109198 username morteza 109198 kill_reason Another user logged on this global unique id 109198 mac 109198 bytes_out 0 109198 bytes_in 0 109198 station_ip 83.122.213.243 109198 port 11 109198 unique_id port 109198 remote_ip 10.8.1.62 109199 username mehdizare 109199 mac 109199 bytes_out 0 109199 bytes_in 0 109199 station_ip 5.119.226.18 109199 port 13 109199 unique_id port 109199 remote_ip 10.8.1.42 109200 username amir 109200 mac 109200 bytes_out 319673 109200 bytes_in 617536 109200 station_ip 46.225.215.34 109200 port 12 109200 unique_id port 109200 remote_ip 10.8.1.22 109201 username amir 109201 mac 109201 bytes_out 0 109201 bytes_in 0 109201 station_ip 46.225.215.34 109201 port 12 109201 unique_id port 109201 remote_ip 10.8.1.22 109204 username hashtadani3 109204 mac 109204 bytes_out 0 109204 bytes_in 0 109204 station_ip 5.202.5.201 109204 port 32 109204 unique_id port 109204 remote_ip 10.8.0.154 109207 username hashtadani3 109207 mac 109207 bytes_out 0 109207 bytes_in 0 109207 station_ip 5.202.5.201 109207 port 32 109207 unique_id port 109207 remote_ip 10.8.0.154 109208 username hashtadani3 109208 mac 109208 bytes_out 0 109208 bytes_in 0 109208 station_ip 5.202.5.201 109208 port 32 109208 unique_id port 109208 remote_ip 10.8.0.154 109209 username forozande 109209 mac 109209 bytes_out 105708 109209 bytes_in 167589 109209 station_ip 83.123.162.58 109209 port 37 109209 unique_id port 109209 remote_ip 10.8.0.74 109210 username mohammadmahdi 109210 mac 109210 bytes_out 0 109210 bytes_in 0 109210 station_ip 5.119.149.118 109210 port 36 109210 unique_id port 109210 remote_ip 10.8.0.54 109216 username morteza 109216 mac 109216 bytes_out 0 109216 bytes_in 0 109216 station_ip 83.122.213.243 109216 port 11 109216 unique_id port 109216 remote_ip 10.8.1.62 109217 username alipour 109217 mac 109217 bytes_out 0 109217 bytes_in 0 109217 station_ip 83.123.114.25 109217 port 35 109217 unique_id port 109217 remote_ip 10.8.0.102 109218 username tahmasebi 109218 kill_reason Another user logged on this global unique id 109218 mac 109218 bytes_out 0 109218 bytes_in 0 109218 station_ip 5.120.176.53 109218 port 34 109218 unique_id port 109218 remote_ip 10.8.0.42 109220 username malekpoir 109220 mac 109220 bytes_out 0 109220 bytes_in 0 109220 station_ip 5.120.170.159 109220 port 26 109220 unique_id port 109220 remote_ip 10.8.0.58 109223 username morteza 109223 mac 109223 bytes_out 2212484 109223 bytes_in 32885405 109223 station_ip 83.122.213.243 109223 port 11 109223 unique_id port 109223 remote_ip 10.8.1.62 109235 username mehdizare 109235 mac 109235 bytes_out 0 109235 bytes_in 0 109235 station_ip 5.119.226.18 109235 port 11 109235 unique_id port 109235 remote_ip 10.8.1.42 109236 username mirzaei 109236 mac 109236 bytes_out 0 109236 bytes_in 0 109236 station_ip 5.120.139.126 109236 port 21 109236 unique_id port 109239 username mehdizare 109239 mac 109239 bytes_out 0 109239 bytes_in 0 109239 station_ip 5.119.226.18 109239 port 21 109239 unique_id port 109239 remote_ip 10.8.0.90 109242 username aminvpn 109242 mac 109242 bytes_out 0 109242 bytes_in 0 109242 station_ip 83.122.129.242 109242 port 39 109242 unique_id port 109242 remote_ip 10.8.0.14 109244 username mehdizare 109226 station_ip 46.225.215.34 109226 port 37 109226 unique_id port 109226 remote_ip 10.8.0.50 109227 username forozande 109227 mac 109227 bytes_out 69687 109227 bytes_in 125621 109227 station_ip 83.123.162.58 109227 port 32 109227 unique_id port 109227 remote_ip 10.8.0.74 109228 username hashtadani3 109228 mac 109228 bytes_out 0 109228 bytes_in 0 109228 station_ip 5.202.5.201 109228 port 32 109228 unique_id port 109228 remote_ip 10.8.0.154 109230 username mohammadmahdi 109230 kill_reason Another user logged on this global unique id 109230 mac 109230 bytes_out 0 109230 bytes_in 0 109230 station_ip 5.119.149.118 109230 port 26 109230 unique_id port 109230 remote_ip 10.8.0.54 109233 username mohammadmahdi 109233 mac 109233 bytes_out 0 109233 bytes_in 0 109233 station_ip 5.119.149.118 109233 port 26 109233 unique_id port 109241 username amir 109241 mac 109241 bytes_out 170499 109241 bytes_in 631553 109241 station_ip 46.225.215.34 109241 port 32 109241 unique_id port 109241 remote_ip 10.8.0.50 109243 username hashtadani3 109243 mac 109243 bytes_out 0 109243 bytes_in 0 109243 station_ip 5.202.5.201 109243 port 32 109243 unique_id port 109243 remote_ip 10.8.0.154 109250 username hashtadani3 109250 mac 109250 bytes_out 0 109250 bytes_in 0 109250 station_ip 5.202.5.201 109250 port 40 109250 unique_id port 109250 remote_ip 10.8.0.154 109260 username malekpoir 109260 mac 109260 bytes_out 0 109260 bytes_in 0 109260 station_ip 5.120.170.159 109260 port 36 109260 unique_id port 109260 remote_ip 10.8.0.58 109269 username hashtadani3 109269 mac 109269 bytes_out 0 109269 bytes_in 0 109269 station_ip 83.122.199.4 109269 port 39 109269 unique_id port 109269 remote_ip 10.8.0.154 109271 username hashtadani3 109271 mac 109271 bytes_out 0 109271 bytes_in 0 109271 station_ip 83.122.199.4 109271 port 35 109271 unique_id port 109271 remote_ip 10.8.0.154 109273 username hashtadani3 109273 mac 109273 bytes_out 0 109273 bytes_in 0 109273 station_ip 83.122.199.4 109273 port 39 109273 unique_id port 109273 remote_ip 10.8.0.154 109276 username musa 109276 kill_reason Another user logged on this global unique id 109276 mac 109276 bytes_out 0 109276 bytes_in 0 109276 station_ip 91.251.144.149 109276 port 38 109276 unique_id port 109278 username hashtadani3 109278 kill_reason Maximum check online fails reached 109278 mac 109278 bytes_out 0 109278 bytes_in 0 109278 station_ip 83.122.199.4 109278 port 39 109278 unique_id port 109280 username mirzaei 109280 mac 109280 bytes_out 0 109280 bytes_in 0 109280 station_ip 5.119.228.5 109280 port 26 109280 unique_id port 109280 remote_ip 10.8.0.66 109281 username aminvpn 109281 mac 109281 bytes_out 0 109281 bytes_in 0 109281 station_ip 83.122.129.242 109281 port 32 109281 unique_id port 109281 remote_ip 10.8.0.14 109284 username aminvpn 109284 mac 109284 bytes_out 0 109284 bytes_in 0 109284 station_ip 83.122.129.242 109284 port 26 109284 unique_id port 109284 remote_ip 10.8.0.14 109288 username aminvpn 109288 mac 109288 bytes_out 0 109288 bytes_in 0 109288 station_ip 83.122.129.242 109288 port 32 109288 unique_id port 109288 remote_ip 10.8.0.14 109289 username aminvpn 109289 mac 109289 bytes_out 0 109289 bytes_in 0 109289 station_ip 5.119.89.251 109289 port 26 109289 unique_id port 109289 remote_ip 10.8.0.14 109293 username aminvpn 109293 mac 109293 bytes_out 0 109293 bytes_in 0 109293 station_ip 83.122.129.242 109293 port 41 109293 unique_id port 109231 kill_reason Another user logged on this global unique id 109231 mac 109231 bytes_out 0 109231 bytes_in 0 109231 station_ip 83.123.114.25 109231 port 35 109231 unique_id port 109231 remote_ip 10.8.0.102 109232 username mehdizare 109232 mac 109232 bytes_out 0 109232 bytes_in 0 109232 station_ip 5.119.226.18 109232 port 13 109232 unique_id port 109232 remote_ip 10.8.1.42 109234 username mehdizare 109234 mac 109234 bytes_out 0 109234 bytes_in 0 109234 station_ip 5.119.226.18 109234 port 26 109234 unique_id port 109234 remote_ip 10.8.0.90 109237 username tahmasebi 109237 kill_reason Another user logged on this global unique id 109237 mac 109237 bytes_out 0 109237 bytes_in 0 109237 station_ip 5.120.176.53 109237 port 34 109237 unique_id port 109238 username mehdizare 109238 mac 109238 bytes_out 0 109238 bytes_in 0 109238 station_ip 5.119.226.18 109238 port 32 109238 unique_id port 109238 remote_ip 10.8.0.90 109240 username hashtadani3 109240 mac 109240 bytes_out 0 109240 bytes_in 0 109240 station_ip 5.202.5.201 109240 port 37 109240 unique_id port 109240 remote_ip 10.8.0.154 109247 username hashtadani3 109247 mac 109247 bytes_out 0 109247 bytes_in 0 109247 station_ip 5.202.5.201 109247 port 38 109247 unique_id port 109247 remote_ip 10.8.0.154 109248 username hashtadani3 109248 mac 109248 bytes_out 0 109248 bytes_in 0 109248 station_ip 5.202.5.201 109248 port 38 109248 unique_id port 109248 remote_ip 10.8.0.154 109249 username hashtadani3 109249 mac 109249 bytes_out 0 109249 bytes_in 0 109249 station_ip 5.202.5.201 109249 port 38 109249 unique_id port 109249 remote_ip 10.8.0.154 109251 username hashtadani3 109251 mac 109251 bytes_out 0 109251 bytes_in 0 109251 station_ip 5.202.5.201 109251 port 40 109251 unique_id port 109251 remote_ip 10.8.0.154 109253 username musa 109253 kill_reason Another user logged on this global unique id 109253 mac 109253 bytes_out 0 109253 bytes_in 0 109253 station_ip 91.251.144.149 109253 port 38 109253 unique_id port 109253 remote_ip 10.8.0.6 109255 username malekpoir 109255 mac 109255 bytes_out 0 109255 bytes_in 0 109255 station_ip 5.120.170.159 109255 port 36 109255 unique_id port 109255 remote_ip 10.8.0.58 109256 username hashtadani3 109256 mac 109256 bytes_out 0 109256 bytes_in 0 109256 station_ip 5.202.5.201 109256 port 26 109256 unique_id port 109256 remote_ip 10.8.0.154 109258 username arman1 109258 mac 109258 bytes_out 2126376 109258 bytes_in 13718969 109258 station_ip 5.120.102.85 109258 port 37 109258 unique_id port 109258 remote_ip 10.8.0.110 109259 username hashtadani3 109259 mac 109259 bytes_out 0 109259 bytes_in 0 109259 station_ip 5.202.5.201 109259 port 39 109259 unique_id port 109259 remote_ip 10.8.0.154 109262 username amir 109262 mac 109262 bytes_out 65578 109262 bytes_in 453655 109262 station_ip 46.225.215.34 109262 port 37 109262 unique_id port 109262 remote_ip 10.8.0.50 109263 username alirr 109263 unique_id port 109263 terminate_cause Lost-Carrier 109263 bytes_out 17033019 109263 bytes_in 311295360 109263 station_ip 86.57.37.104 109263 port 15729059 109263 nas_port_type Virtual 109263 remote_ip 5.5.5.125 109264 username hashtadani3 109264 mac 109264 bytes_out 0 109264 bytes_in 0 109264 station_ip 5.202.5.201 109264 port 11 109264 unique_id port 109264 remote_ip 10.8.1.94 109265 username alipour 109265 mac 109265 bytes_out 40136 109265 bytes_in 70672 109265 station_ip 83.123.114.25 109265 port 35 109265 unique_id port 109265 remote_ip 10.8.0.102 109244 mac 109244 bytes_out 29534 109244 bytes_in 55257 109244 station_ip 5.119.226.18 109244 port 21 109244 unique_id port 109244 remote_ip 10.8.0.90 109245 username morteza 109245 mac 109245 bytes_out 0 109245 bytes_in 0 109245 station_ip 83.122.199.247 109245 port 11 109245 unique_id port 109245 remote_ip 10.8.1.62 109246 username mehdizare 109246 mac 109246 bytes_out 9034 109246 bytes_in 12042 109246 station_ip 5.120.166.206 109246 port 37 109246 unique_id port 109246 remote_ip 10.8.0.90 109252 username amir 109252 mac 109252 bytes_out 330649 109252 bytes_in 1246812 109252 station_ip 46.225.215.34 109252 port 39 109252 unique_id port 109252 remote_ip 10.8.0.50 109254 username mohammadjavad 109254 mac 109254 bytes_out 1438328 109254 bytes_in 23029117 109254 station_ip 37.129.162.236 109254 port 26 109254 unique_id port 109254 remote_ip 10.8.0.142 109257 username mirzaei 109257 mac 109257 bytes_out 0 109257 bytes_in 0 109257 station_ip 5.119.228.5 109257 port 39 109257 unique_id port 109257 remote_ip 10.8.0.66 109261 username alipour 109261 mac 109261 bytes_out 0 109261 bytes_in 0 109261 station_ip 83.123.114.25 109261 port 35 109261 unique_id port 109266 username hashtadani3 109266 mac 109266 bytes_out 0 109266 bytes_in 0 109266 station_ip 83.122.199.4 109266 port 12 109266 unique_id port 109266 remote_ip 10.8.1.94 109268 username hashtadani3 109268 mac 109268 bytes_out 0 109268 bytes_in 0 109268 station_ip 83.122.199.4 109268 port 12 109268 unique_id port 109268 remote_ip 10.8.1.94 109270 username amir 109270 mac 109270 bytes_out 0 109270 bytes_in 0 109270 station_ip 46.225.215.34 109270 port 35 109270 unique_id port 109270 remote_ip 10.8.0.50 109279 username amir 109279 mac 109279 bytes_out 0 109279 bytes_in 0 109279 station_ip 46.225.215.34 109279 port 40 109279 unique_id port 109279 remote_ip 10.8.0.50 109282 username hashtadani3 109282 mac 109282 bytes_out 0 109282 bytes_in 0 109282 station_ip 83.122.199.4 109282 port 26 109282 unique_id port 109282 remote_ip 10.8.0.154 109283 username aminvpn 109283 mac 109283 bytes_out 0 109283 bytes_in 0 109283 station_ip 5.119.89.251 109283 port 40 109283 unique_id port 109283 remote_ip 10.8.0.14 109286 username aminvpn 109286 mac 109286 bytes_out 0 109286 bytes_in 0 109286 station_ip 5.119.89.251 109286 port 26 109286 unique_id port 109286 remote_ip 10.8.0.14 109290 username bcboard 109290 unique_id port 109290 terminate_cause User-Request 109290 bytes_out 62488 109290 bytes_in 224958 109290 station_ip 83.122.127.166 109290 port 15729064 109290 nas_port_type Virtual 109290 remote_ip 5.5.5.131 109294 username hashtadani3 109294 mac 109294 bytes_out 0 109294 bytes_in 0 109294 station_ip 83.122.199.4 109294 port 26 109294 unique_id port 109294 remote_ip 10.8.0.154 109297 username aminvpn 109297 mac 109297 bytes_out 0 109297 bytes_in 0 109297 station_ip 5.119.89.251 109297 port 40 109297 unique_id port 109297 remote_ip 10.8.0.14 109300 username forozande 109300 mac 109300 bytes_out 0 109300 bytes_in 0 109300 station_ip 83.123.239.4 109300 port 36 109300 unique_id port 109304 username tahmasebi 109304 kill_reason Another user logged on this global unique id 109304 mac 109304 bytes_out 0 109304 bytes_in 0 109304 station_ip 5.120.176.53 109304 port 34 109304 unique_id port 109305 username alipour 109305 mac 109305 bytes_out 231699 109305 bytes_in 614615 109305 station_ip 83.123.114.25 109305 port 11 109267 username alipour 109267 mac 109267 bytes_out 0 109267 bytes_in 0 109267 station_ip 83.123.114.25 109267 port 11 109267 unique_id port 109267 remote_ip 10.8.1.50 109272 username hashtadani3 109272 mac 109272 bytes_out 0 109272 bytes_in 0 109272 station_ip 83.122.199.4 109272 port 39 109272 unique_id port 109272 remote_ip 10.8.0.154 109274 username hashtadani3 109274 mac 109274 bytes_out 0 109274 bytes_in 0 109274 station_ip 83.122.199.4 109274 port 39 109274 unique_id port 109274 remote_ip 10.8.0.154 109275 username hashtadani3 109275 mac 109275 bytes_out 0 109275 bytes_in 0 109275 station_ip 83.122.199.4 109275 port 39 109275 unique_id port 109275 remote_ip 10.8.0.154 109277 username forozande 109277 kill_reason Another user logged on this global unique id 109277 mac 109277 bytes_out 0 109277 bytes_in 0 109277 station_ip 83.123.239.4 109277 port 36 109277 unique_id port 109277 remote_ip 10.8.0.74 109285 username aminvpn 109285 mac 109285 bytes_out 0 109285 bytes_in 0 109285 station_ip 5.119.89.251 109285 port 32 109285 unique_id port 109285 remote_ip 10.8.0.14 109287 username aminvpn 109287 mac 109287 bytes_out 0 109287 bytes_in 0 109287 station_ip 5.119.89.251 109287 port 26 109287 unique_id port 109287 remote_ip 10.8.0.14 109291 username hashtadani3 109291 mac 109291 bytes_out 0 109291 bytes_in 0 109291 station_ip 83.122.199.4 109291 port 40 109291 unique_id port 109291 remote_ip 10.8.0.154 109292 username forozande 109292 kill_reason Another user logged on this global unique id 109292 mac 109292 bytes_out 0 109292 bytes_in 0 109292 station_ip 83.123.239.4 109292 port 36 109292 unique_id port 109295 username bcboard 109295 unique_id port 109295 terminate_cause User-Request 109295 bytes_out 38441 109295 bytes_in 140793 109295 station_ip 83.122.127.166 109295 port 15729065 109295 nas_port_type Virtual 109295 remote_ip 5.5.5.132 109296 username hashtadani3 109296 mac 109296 bytes_out 0 109296 bytes_in 0 109296 station_ip 83.122.199.4 109296 port 26 109296 unique_id port 109296 remote_ip 10.8.0.154 109299 username hashtadani3 109299 mac 109299 bytes_out 0 109299 bytes_in 0 109299 station_ip 83.122.199.4 109299 port 40 109299 unique_id port 109299 remote_ip 10.8.0.154 109302 username aminvpn 109302 mac 109302 bytes_out 0 109302 bytes_in 0 109302 station_ip 83.122.129.242 109302 port 26 109302 unique_id port 109302 remote_ip 10.8.0.14 109306 username mohammadjavad 109306 mac 109306 bytes_out 0 109306 bytes_in 0 109306 station_ip 37.129.233.155 109306 port 32 109306 unique_id port 109306 remote_ip 10.8.0.142 109310 username aminvpn 109310 mac 109310 bytes_out 0 109310 bytes_in 0 109310 station_ip 83.122.129.242 109310 port 36 109310 unique_id port 109310 remote_ip 10.8.0.14 109312 username rajaei 109312 kill_reason Another user logged on this global unique id 109312 mac 109312 bytes_out 0 109312 bytes_in 0 109312 station_ip 89.47.68.23 109312 port 35 109312 unique_id port 109314 username forozande 109314 kill_reason Another user logged on this global unique id 109314 mac 109314 bytes_out 0 109314 bytes_in 0 109314 station_ip 83.122.247.209 109314 port 26 109314 unique_id port 109314 remote_ip 10.8.0.74 109315 username amirabbas 109315 unique_id port 109315 terminate_cause User-Request 109315 bytes_out 334211 109315 bytes_in 2693834 109315 station_ip 37.27.14.167 109315 port 15729066 109315 nas_port_type Virtual 109315 remote_ip 5.5.5.133 109317 username hashtadani3 109317 mac 109317 bytes_out 37193 109317 bytes_in 89241 109293 remote_ip 10.8.0.14 109298 username hashtadani3 109298 mac 109298 bytes_out 0 109298 bytes_in 0 109298 station_ip 83.122.199.4 109298 port 40 109298 unique_id port 109298 remote_ip 10.8.0.154 109301 username rajaei 109301 kill_reason Another user logged on this global unique id 109301 mac 109301 bytes_out 0 109301 bytes_in 0 109301 station_ip 89.47.68.23 109301 port 35 109301 unique_id port 109301 remote_ip 10.8.0.34 109303 username hashtadani3 109303 mac 109303 bytes_out 0 109303 bytes_in 0 109303 station_ip 83.122.199.4 109303 port 12 109303 unique_id port 109303 remote_ip 10.8.1.94 109307 username alipour 109307 mac 109307 bytes_out 30027 109307 bytes_in 35212 109307 station_ip 83.123.114.25 109307 port 11 109307 unique_id port 109307 remote_ip 10.8.1.50 109308 username tahmasebi 109308 kill_reason Another user logged on this global unique id 109308 mac 109308 bytes_out 0 109308 bytes_in 0 109308 station_ip 5.120.176.53 109308 port 34 109308 unique_id port 109313 username tahmasebi 109313 kill_reason Another user logged on this global unique id 109313 mac 109313 bytes_out 0 109313 bytes_in 0 109313 station_ip 5.120.176.53 109313 port 34 109313 unique_id port 109316 username amin.saeedi 109316 unique_id port 109316 terminate_cause User-Request 109316 bytes_out 9221553 109316 bytes_in 326222867 109316 station_ip 31.56.222.3 109316 port 15729063 109316 nas_port_type Virtual 109316 remote_ip 5.5.5.129 109318 username hashtadani3 109318 mac 109318 bytes_out 0 109318 bytes_in 0 109318 station_ip 37.129.149.43 109318 port 36 109318 unique_id port 109318 remote_ip 10.8.0.154 109322 username hashtadani3 109322 mac 109322 bytes_out 0 109322 bytes_in 0 109322 station_ip 37.129.149.43 109322 port 11 109322 unique_id port 109322 remote_ip 10.8.1.94 109323 username kamali1 109323 mac 109323 bytes_out 7343445 109323 bytes_in 48098100 109323 station_ip 5.120.162.37 109323 port 24 109323 unique_id port 109323 remote_ip 10.8.0.70 109326 username forozande 109326 kill_reason Another user logged on this global unique id 109326 mac 109326 bytes_out 0 109326 bytes_in 0 109326 station_ip 83.122.247.209 109326 port 26 109326 unique_id port 109332 username forozande 109332 kill_reason Another user logged on this global unique id 109332 mac 109332 bytes_out 0 109332 bytes_in 0 109332 station_ip 83.122.247.209 109332 port 26 109332 unique_id port 109333 username hashtadani3 109333 mac 109333 bytes_out 2594 109333 bytes_in 4834 109333 station_ip 37.129.149.43 109333 port 24 109333 unique_id port 109333 remote_ip 10.8.0.154 109335 username forozande 109335 kill_reason Another user logged on this global unique id 109335 mac 109335 bytes_out 0 109335 bytes_in 0 109335 station_ip 83.122.247.209 109335 port 26 109335 unique_id port 109347 username forozande 109347 mac 109347 bytes_out 0 109347 bytes_in 0 109347 station_ip 83.122.247.209 109347 port 26 109347 unique_id port 109348 username mahdiyehalizadeh 109348 mac 109348 bytes_out 0 109348 bytes_in 0 109348 station_ip 83.123.228.183 109348 port 35 109348 unique_id port 109348 remote_ip 10.8.0.82 109351 username zare 109351 kill_reason Another user logged on this global unique id 109351 mac 109351 bytes_out 0 109351 bytes_in 0 109351 station_ip 37.27.38.8 109351 port 35 109351 unique_id port 109351 remote_ip 10.8.0.18 109352 username mohammadjavad 109352 mac 109352 bytes_out 0 109352 bytes_in 0 109352 station_ip 37.129.248.100 109352 port 24 109352 unique_id port 109355 username hashtadani3 109355 mac 109355 bytes_out 0 109355 bytes_in 0 109355 station_ip 37.129.149.43 109305 unique_id port 109305 remote_ip 10.8.1.50 109309 username amirabbas 109309 unique_id port 109309 terminate_cause Lost-Carrier 109309 bytes_out 5447789 109309 bytes_in 112845163 109309 station_ip 37.27.14.167 109309 port 15729062 109309 nas_port_type Virtual 109309 remote_ip 5.5.5.127 109311 username alipour 109311 mac 109311 bytes_out 25067 109311 bytes_in 25186 109311 station_ip 83.123.114.25 109311 port 11 109311 unique_id port 109311 remote_ip 10.8.1.50 109319 username musa 109319 kill_reason Another user logged on this global unique id 109319 mac 109319 bytes_out 0 109319 bytes_in 0 109319 station_ip 91.251.144.149 109319 port 38 109319 unique_id port 109321 username hashtadani3 109321 mac 109321 bytes_out 0 109321 bytes_in 0 109321 station_ip 37.129.149.43 109321 port 36 109321 unique_id port 109321 remote_ip 10.8.0.154 109325 username mehdizare 109325 kill_reason Another user logged on this global unique id 109325 mac 109325 bytes_out 0 109325 bytes_in 0 109325 station_ip 5.120.166.206 109325 port 21 109325 unique_id port 109325 remote_ip 10.8.0.90 109328 username mehdizare 109328 kill_reason Another user logged on this global unique id 109328 mac 109328 bytes_out 0 109328 bytes_in 0 109328 station_ip 5.120.166.206 109328 port 21 109328 unique_id port 109329 username tahmasebi 109329 kill_reason Another user logged on this global unique id 109329 mac 109329 bytes_out 0 109329 bytes_in 0 109329 station_ip 5.120.176.53 109329 port 34 109329 unique_id port 109330 username hashtadani3 109330 mac 109330 bytes_out 0 109330 bytes_in 0 109330 station_ip 37.129.149.43 109330 port 24 109330 unique_id port 109330 remote_ip 10.8.0.154 109339 username hashtadani3 109339 mac 109339 bytes_out 3854 109339 bytes_in 14747 109339 station_ip 37.129.149.43 109339 port 24 109339 unique_id port 109339 remote_ip 10.8.0.154 109340 username hashtadani3 109340 mac 109340 bytes_out 0 109340 bytes_in 0 109340 station_ip 37.129.149.43 109340 port 21 109340 unique_id port 109340 remote_ip 10.8.0.154 109342 username hashtadani3 109342 mac 109342 bytes_out 0 109342 bytes_in 0 109342 station_ip 37.129.149.43 109342 port 21 109342 unique_id port 109342 remote_ip 10.8.0.154 109343 username hashtadani3 109343 mac 109343 bytes_out 0 109343 bytes_in 0 109343 station_ip 37.129.149.43 109343 port 24 109343 unique_id port 109343 remote_ip 10.8.0.154 109345 username hashtadani3 109345 mac 109345 bytes_out 0 109345 bytes_in 0 109345 station_ip 37.129.149.43 109345 port 35 109345 unique_id port 109345 remote_ip 10.8.0.154 109353 username hashtadani3 109353 kill_reason Another user logged on this global unique id 109353 mac 109353 bytes_out 0 109353 bytes_in 0 109353 station_ip 37.129.149.43 109353 port 26 109353 unique_id port 109356 username hashtadani3 109356 mac 109356 bytes_out 0 109356 bytes_in 0 109356 station_ip 37.129.149.43 109356 port 24 109356 unique_id port 109356 remote_ip 10.8.0.154 109363 username hashtadani3 109363 mac 109363 bytes_out 0 109363 bytes_in 0 109363 station_ip 37.129.149.43 109363 port 11 109363 unique_id port 109363 remote_ip 10.8.1.94 109364 username hashtadani3 109364 mac 109364 bytes_out 0 109364 bytes_in 0 109364 station_ip 37.129.149.43 109364 port 26 109364 unique_id port 109364 remote_ip 10.8.0.154 109365 username hashtadani3 109365 mac 109365 bytes_out 0 109365 bytes_in 0 109365 station_ip 37.129.149.43 109365 port 26 109365 unique_id port 109365 remote_ip 10.8.0.154 109367 username malekpoir 109367 mac 109367 bytes_out 5392286 109317 station_ip 37.129.149.43 109317 port 12 109317 unique_id port 109317 remote_ip 10.8.1.94 109320 username hashtadani3 109320 mac 109320 bytes_out 0 109320 bytes_in 0 109320 station_ip 37.129.149.43 109320 port 36 109320 unique_id port 109320 remote_ip 10.8.0.154 109324 username hashtadani3 109324 mac 109324 bytes_out 0 109324 bytes_in 0 109324 station_ip 37.129.149.43 109324 port 36 109324 unique_id port 109324 remote_ip 10.8.0.154 109327 username rajaei 109327 mac 109327 bytes_out 0 109327 bytes_in 0 109327 station_ip 89.47.68.23 109327 port 35 109327 unique_id port 109331 username hashtadani3 109331 mac 109331 bytes_out 0 109331 bytes_in 0 109331 station_ip 37.129.149.43 109331 port 24 109331 unique_id port 109331 remote_ip 10.8.0.154 109334 username hashtadani3 109334 mac 109334 bytes_out 0 109334 bytes_in 0 109334 station_ip 37.129.149.43 109334 port 24 109334 unique_id port 109334 remote_ip 10.8.0.154 109336 username hashtadani3 109336 mac 109336 bytes_out 0 109336 bytes_in 0 109336 station_ip 37.129.149.43 109336 port 11 109336 unique_id port 109336 remote_ip 10.8.1.94 109337 username hashtadani3 109337 mac 109337 bytes_out 0 109337 bytes_in 0 109337 station_ip 37.129.149.43 109337 port 24 109337 unique_id port 109337 remote_ip 10.8.0.154 109338 username mehdizare 109338 mac 109338 bytes_out 0 109338 bytes_in 0 109338 station_ip 5.120.166.206 109338 port 21 109338 unique_id port 109341 username forozande 109341 kill_reason Another user logged on this global unique id 109341 mac 109341 bytes_out 0 109341 bytes_in 0 109341 station_ip 83.122.247.209 109341 port 26 109341 unique_id port 109344 username forozande 109344 kill_reason Another user logged on this global unique id 109344 mac 109344 bytes_out 0 109344 bytes_in 0 109344 station_ip 83.122.247.209 109344 port 26 109344 unique_id port 109346 username hashtadani3 109346 mac 109346 bytes_out 0 109346 bytes_in 0 109346 station_ip 37.129.149.43 109346 port 35 109346 unique_id port 109346 remote_ip 10.8.0.154 109349 username mohammadjavad 109349 kill_reason Another user logged on this global unique id 109349 mac 109349 bytes_out 0 109349 bytes_in 0 109349 station_ip 37.129.248.100 109349 port 24 109349 unique_id port 109349 remote_ip 10.8.0.142 109350 username hashtadani3 109350 kill_reason Another user logged on this global unique id 109350 mac 109350 bytes_out 0 109350 bytes_in 0 109350 station_ip 37.129.149.43 109350 port 26 109350 unique_id port 109350 remote_ip 10.8.0.154 109354 username ahmadipour 109354 unique_id port 109354 terminate_cause Lost-Carrier 109354 bytes_out 1206458 109354 bytes_in 28445782 109354 station_ip 37.129.213.91 109354 port 15729069 109354 nas_port_type Virtual 109354 remote_ip 5.5.5.138 109357 username zare 109357 mac 109357 bytes_out 0 109357 bytes_in 0 109357 station_ip 37.27.38.8 109357 port 35 109357 unique_id port 109360 username abravesh 109360 unique_id port 109360 terminate_cause Lost-Carrier 109360 bytes_out 2758709 109360 bytes_in 58244899 109360 station_ip 5.119.16.50 109360 port 15729067 109360 nas_port_type Virtual 109360 remote_ip 5.5.5.135 109361 username hashtadani3 109361 mac 109361 bytes_out 0 109361 bytes_in 0 109361 station_ip 37.129.149.43 109361 port 35 109361 unique_id port 109361 remote_ip 10.8.0.154 109362 username amirabbas 109362 unique_id port 109362 terminate_cause User-Request 109362 bytes_out 18916667 109362 bytes_in 523072530 109362 station_ip 37.27.14.167 109362 port 15729068 109362 nas_port_type Virtual 109362 remote_ip 5.5.5.136 109366 username kamali1 109355 port 26 109355 unique_id port 109358 username hashtadani3 109358 mac 109358 bytes_out 0 109358 bytes_in 0 109358 station_ip 37.129.149.43 109358 port 26 109358 unique_id port 109358 remote_ip 10.8.0.154 109359 username zare 109359 mac 109359 bytes_out 20349 109359 bytes_in 57534 109359 station_ip 37.27.38.8 109359 port 26 109359 unique_id port 109359 remote_ip 10.8.0.18 109369 username hashtadani3 109369 mac 109369 bytes_out 0 109369 bytes_in 0 109369 station_ip 37.129.149.43 109369 port 35 109369 unique_id port 109369 remote_ip 10.8.0.154 109371 username mirzaei 109371 mac 109371 bytes_out 624257 109371 bytes_in 5190332 109371 station_ip 5.120.113.227 109371 port 36 109371 unique_id port 109371 remote_ip 10.8.0.66 109374 username hashtadani3 109374 kill_reason Maximum check online fails reached 109374 mac 109374 bytes_out 0 109374 bytes_in 0 109374 station_ip 37.129.149.43 109374 port 35 109374 unique_id port 109381 username forozande 109381 kill_reason Another user logged on this global unique id 109381 mac 109381 bytes_out 0 109381 bytes_in 0 109381 station_ip 37.129.46.16 109381 port 24 109381 unique_id port 109383 username forozande 109383 kill_reason Another user logged on this global unique id 109383 mac 109383 bytes_out 0 109383 bytes_in 0 109383 station_ip 37.129.46.16 109383 port 24 109383 unique_id port 109388 username forozande 109388 kill_reason Another user logged on this global unique id 109388 mac 109388 bytes_out 0 109388 bytes_in 0 109388 station_ip 37.129.46.16 109388 port 24 109388 unique_id port 109390 username malekpoir 109390 mac 109390 bytes_out 1260874 109390 bytes_in 12349698 109390 station_ip 5.120.170.159 109390 port 26 109390 unique_id port 109390 remote_ip 10.8.0.58 109391 username tahmasebi 109391 kill_reason Another user logged on this global unique id 109391 mac 109391 bytes_out 0 109391 bytes_in 0 109391 station_ip 5.120.176.53 109391 port 34 109391 unique_id port 109394 username forozande 109394 mac 109394 bytes_out 0 109394 bytes_in 0 109394 station_ip 37.129.46.16 109394 port 24 109394 unique_id port 109399 username hamid 109399 mac 109399 bytes_out 0 109399 bytes_in 0 109399 station_ip 113.203.8.175 109399 port 37 109399 unique_id port 109403 username malekpoir 109403 mac 109403 bytes_out 42316 109403 bytes_in 54295 109403 station_ip 5.120.170.159 109403 port 24 109403 unique_id port 109403 remote_ip 10.8.0.58 109404 username hashtadani3 109404 mac 109404 bytes_out 0 109404 bytes_in 0 109404 station_ip 37.129.149.43 109404 port 40 109404 unique_id port 109405 username ahmadipour 109405 unique_id port 109405 terminate_cause User-Request 109405 bytes_out 5551489 109405 bytes_in 137686793 109405 station_ip 37.129.182.31 109405 port 15729072 109405 nas_port_type Virtual 109405 remote_ip 5.5.5.152 109409 username mohammadmahdi 109409 kill_reason Another user logged on this global unique id 109409 mac 109409 bytes_out 0 109409 bytes_in 0 109409 station_ip 5.119.149.118 109409 port 37 109409 unique_id port 109409 remote_ip 10.8.0.54 109414 username arman1 109414 mac 109414 bytes_out 0 109414 bytes_in 0 109414 station_ip 5.120.16.7 109414 port 26 109414 unique_id port 109414 remote_ip 10.8.0.110 109420 username kamali1 109420 mac 109420 bytes_out 843834 109420 bytes_in 8743115 109420 station_ip 5.119.107.80 109420 port 26 109420 unique_id port 109420 remote_ip 10.8.0.70 109421 username aminvpn 109421 unique_id port 109421 terminate_cause Lost-Carrier 109421 bytes_out 1387795 109421 bytes_in 19862891 109421 station_ip 5.120.65.69 109366 mac 109366 bytes_out 392550 109366 bytes_in 1316691 109366 station_ip 5.120.162.37 109366 port 40 109366 unique_id port 109366 remote_ip 10.8.0.70 109368 username hashtadani3 109368 mac 109368 bytes_out 0 109368 bytes_in 0 109368 station_ip 37.129.149.43 109368 port 35 109368 unique_id port 109368 remote_ip 10.8.0.154 109372 username hashtadani3 109372 mac 109372 bytes_out 0 109372 bytes_in 0 109372 station_ip 37.129.149.43 109372 port 36 109372 unique_id port 109372 remote_ip 10.8.0.154 109373 username mirzaei 109373 mac 109373 bytes_out 6037 109373 bytes_in 9924 109373 station_ip 5.120.113.227 109373 port 37 109373 unique_id port 109373 remote_ip 10.8.0.66 109375 username hashtadani3 109375 mac 109375 bytes_out 0 109375 bytes_in 0 109375 station_ip 37.129.149.43 109375 port 36 109375 unique_id port 109375 remote_ip 10.8.0.154 109376 username mirzaei 109376 mac 109376 bytes_out 6150 109376 bytes_in 7723 109376 station_ip 5.120.113.227 109376 port 40 109376 unique_id port 109376 remote_ip 10.8.0.66 109378 username mohammadmahdi 109378 mac 109378 bytes_out 2782474 109378 bytes_in 39547108 109378 station_ip 5.119.149.118 109378 port 37 109378 unique_id port 109378 remote_ip 10.8.0.54 109380 username forozande 109380 kill_reason Another user logged on this global unique id 109380 mac 109380 bytes_out 0 109380 bytes_in 0 109380 station_ip 37.129.46.16 109380 port 24 109380 unique_id port 109380 remote_ip 10.8.0.74 109389 username mohammadjavad 109389 mac 109389 bytes_out 0 109389 bytes_in 0 109389 station_ip 113.203.14.168 109389 port 37 109389 unique_id port 109389 remote_ip 10.8.0.142 109395 username hamid 109395 kill_reason Another user logged on this global unique id 109395 mac 109395 bytes_out 0 109395 bytes_in 0 109395 station_ip 113.203.8.175 109395 port 37 109395 unique_id port 109395 remote_ip 10.8.0.106 109396 username hashtadani3 109396 kill_reason Another user logged on this global unique id 109396 mac 109396 bytes_out 0 109396 bytes_in 0 109396 station_ip 37.129.149.43 109396 port 40 109396 unique_id port 109398 username malekpoir 109398 mac 109398 bytes_out 35804 109398 bytes_in 41688 109398 station_ip 5.120.170.159 109398 port 26 109398 unique_id port 109398 remote_ip 10.8.0.58 109400 username mohammadmahdi 109400 mac 109400 bytes_out 6783 109400 bytes_in 21586 109400 station_ip 5.119.149.118 109400 port 26 109400 unique_id port 109400 remote_ip 10.8.0.54 109402 username forozande 109402 mac 109402 bytes_out 367653 109402 bytes_in 4486850 109402 station_ip 37.129.235.125 109402 port 26 109402 unique_id port 109402 remote_ip 10.8.0.74 109406 username aminvpn 109406 unique_id port 109406 terminate_cause Lost-Carrier 109406 bytes_out 180916 109406 bytes_in 1206670 109406 station_ip 5.120.65.69 109406 port 15729074 109406 nas_port_type Virtual 109406 remote_ip 5.5.5.94 109407 username malekpoir 109407 mac 109407 bytes_out 0 109407 bytes_in 0 109407 station_ip 5.120.170.159 109407 port 24 109407 unique_id port 109407 remote_ip 10.8.0.58 109408 username aminvpn 109408 mac 109408 bytes_out 0 109408 bytes_in 0 109408 station_ip 83.122.15.82 109408 port 26 109408 unique_id port 109408 remote_ip 10.8.0.14 109410 username alirr 109410 unique_id port 109410 terminate_cause User-Request 109410 bytes_out 68353792 109410 bytes_in 1458736849 109410 station_ip 86.57.58.13 109410 port 15729070 109410 nas_port_type Virtual 109410 remote_ip 5.5.5.140 109413 username kamali1 109413 mac 109413 bytes_out 0 109413 bytes_in 0 109413 station_ip 5.119.107.80 109367 bytes_in 48189454 109367 station_ip 5.120.170.159 109367 port 37 109367 unique_id port 109367 remote_ip 10.8.0.58 109370 username hashtadani3 109370 mac 109370 bytes_out 0 109370 bytes_in 0 109370 station_ip 37.129.149.43 109370 port 11 109370 unique_id port 109370 remote_ip 10.8.1.94 109377 username mirzaei 109377 mac 109377 bytes_out 27380 109377 bytes_in 34408 109377 station_ip 5.120.113.227 109377 port 40 109377 unique_id port 109377 remote_ip 10.8.0.66 109379 username aminvpn 109379 mac 109379 bytes_out 489166 109379 bytes_in 4745429 109379 station_ip 37.129.197.153 109379 port 41 109379 unique_id port 109379 remote_ip 10.8.0.14 109382 username mirzaei 109382 mac 109382 bytes_out 33368 109382 bytes_in 45436 109382 station_ip 5.120.113.227 109382 port 37 109382 unique_id port 109382 remote_ip 10.8.0.66 109384 username mohammadjavad 109384 mac 109384 bytes_out 433581 109384 bytes_in 1251507 109384 station_ip 37.129.78.42 109384 port 40 109384 unique_id port 109384 remote_ip 10.8.0.142 109385 username forozande 109385 kill_reason Another user logged on this global unique id 109385 mac 109385 bytes_out 0 109385 bytes_in 0 109385 station_ip 37.129.46.16 109385 port 24 109385 unique_id port 109386 username amirabbas 109386 unique_id port 109386 terminate_cause User-Request 109386 bytes_out 3490510 109386 bytes_in 76640875 109386 station_ip 37.27.14.167 109386 port 15729071 109386 nas_port_type Virtual 109386 remote_ip 5.5.5.143 109387 username hashtadani3 109387 mac 109387 bytes_out 2292506 109387 bytes_in 35103378 109387 station_ip 37.129.149.43 109387 port 36 109387 unique_id port 109387 remote_ip 10.8.0.154 109392 username malekpoir 109392 mac 109392 bytes_out 3250 109392 bytes_in 7559 109392 station_ip 5.120.170.159 109392 port 26 109392 unique_id port 109392 remote_ip 10.8.0.58 109393 username hashtadani3 109393 kill_reason Another user logged on this global unique id 109393 mac 109393 bytes_out 0 109393 bytes_in 0 109393 station_ip 37.129.149.43 109393 port 40 109393 unique_id port 109393 remote_ip 10.8.0.154 109397 username sedighe 109397 mac 109397 bytes_out 319608 109397 bytes_in 1134317 109397 station_ip 83.123.5.24 109397 port 41 109397 unique_id port 109397 remote_ip 10.8.0.146 109401 username musa 109401 kill_reason Another user logged on this global unique id 109401 mac 109401 bytes_out 0 109401 bytes_in 0 109401 station_ip 91.251.144.149 109401 port 38 109401 unique_id port 109411 username kordestani 109411 mac 109411 bytes_out 0 109411 bytes_in 0 109411 station_ip 151.235.95.228 109411 port 40 109411 unique_id port 109411 remote_ip 10.8.0.134 109412 username mohammadmahdi 109412 mac 109412 bytes_out 0 109412 bytes_in 0 109412 station_ip 5.119.149.118 109412 port 37 109412 unique_id port 109418 username amin.saeedi 109418 unique_id port 109418 terminate_cause User-Request 109418 bytes_out 16620800 109418 bytes_in 570361514 109418 station_ip 31.56.222.3 109418 port 15729073 109418 nas_port_type Virtual 109418 remote_ip 5.5.5.255 109423 username forozande 109423 mac 109423 bytes_out 0 109423 bytes_in 0 109423 station_ip 37.129.37.163 109423 port 21 109423 unique_id port 109423 remote_ip 10.8.0.74 109430 username alihosseini1 109430 mac 109430 bytes_out 0 109430 bytes_in 0 109430 station_ip 5.120.2.91 109430 port 41 109430 unique_id port 109430 remote_ip 10.8.0.166 109435 username aminvpn 109435 mac 109435 bytes_out 0 109435 bytes_in 0 109435 station_ip 83.122.15.82 109435 port 40 109435 unique_id port 109435 remote_ip 10.8.0.14 109413 port 40 109413 unique_id port 109413 remote_ip 10.8.0.70 109415 username mehdizare 109415 mac 109415 bytes_out 0 109415 bytes_in 0 109415 station_ip 5.120.166.206 109415 port 21 109415 unique_id port 109415 remote_ip 10.8.0.90 109416 username alipour 109416 kill_reason Another user logged on this global unique id 109416 mac 109416 bytes_out 0 109416 bytes_in 0 109416 station_ip 83.123.114.25 109416 port 32 109416 unique_id port 109416 remote_ip 10.8.0.102 109417 username malekpoir 109417 kill_reason Another user logged on this global unique id 109417 mac 109417 bytes_out 0 109417 bytes_in 0 109417 station_ip 5.120.170.159 109417 port 41 109417 unique_id port 109417 remote_ip 10.8.0.58 109419 username mohammadjavad 109419 mac 109419 bytes_out 0 109419 bytes_in 0 109419 station_ip 83.123.43.225 109419 port 21 109419 unique_id port 109419 remote_ip 10.8.0.142 109424 username forozande 109424 mac 109424 bytes_out 0 109424 bytes_in 0 109424 station_ip 83.123.113.22 109424 port 21 109424 unique_id port 109424 remote_ip 10.8.0.74 109425 username aminvpn 109425 unique_id port 109425 terminate_cause User-Request 109425 bytes_out 91660 109425 bytes_in 548458 109425 station_ip 5.120.65.69 109425 port 15729077 109425 nas_port_type Virtual 109425 remote_ip 5.5.5.99 109427 username alihosseini1 109427 mac 109427 bytes_out 0 109427 bytes_in 0 109427 station_ip 5.120.2.91 109427 port 21 109427 unique_id port 109427 remote_ip 10.8.0.166 109429 username musa 109429 kill_reason Another user logged on this global unique id 109429 mac 109429 bytes_out 0 109429 bytes_in 0 109429 station_ip 91.251.144.149 109429 port 38 109429 unique_id port 109433 username alihosseini1 109433 mac 109433 bytes_out 0 109433 bytes_in 0 109433 station_ip 5.120.2.91 109433 port 11 109433 unique_id port 109433 remote_ip 10.8.1.106 109441 username aminvpn 109441 mac 109441 bytes_out 0 109441 bytes_in 0 109441 station_ip 83.122.15.82 109441 port 11 109441 unique_id port 109441 remote_ip 10.8.1.6 109445 username kordestani 109445 mac 109445 bytes_out 168831 109445 bytes_in 671560 109445 station_ip 151.235.95.228 109445 port 40 109445 unique_id port 109445 remote_ip 10.8.0.134 109448 username mohammadjavad 109448 mac 109448 bytes_out 297523 109448 bytes_in 4278316 109448 station_ip 83.123.212.39 109448 port 40 109448 unique_id port 109448 remote_ip 10.8.0.142 109450 username amir 109450 mac 109450 bytes_out 0 109450 bytes_in 0 109450 station_ip 83.123.76.134 109450 port 11 109450 unique_id port 109450 remote_ip 10.8.1.22 109451 username mehdizare 109451 mac 109451 bytes_out 65920 109451 bytes_in 92605 109451 station_ip 5.120.166.206 109451 port 21 109451 unique_id port 109451 remote_ip 10.8.0.90 109453 username sedighe 109453 mac 109453 bytes_out 0 109453 bytes_in 0 109453 station_ip 37.129.33.94 109453 port 37 109453 unique_id port 109453 remote_ip 10.8.0.146 109455 username amin.saeedi 109455 unique_id port 109455 terminate_cause User-Request 109455 bytes_out 225854 109455 bytes_in 6976820 109455 station_ip 31.56.222.3 109455 port 15729079 109455 nas_port_type Virtual 109455 remote_ip 5.5.5.101 109457 username mohammadjavad 109457 mac 109457 bytes_out 0 109457 bytes_in 0 109457 station_ip 113.203.110.230 109457 port 37 109457 unique_id port 109457 remote_ip 10.8.0.142 109460 username musa 109460 mac 109460 bytes_out 0 109460 bytes_in 0 109460 station_ip 91.251.144.149 109460 port 37 109460 unique_id port 109460 remote_ip 10.8.0.6 109462 username musa 109462 mac 109421 port 15729075 109421 nas_port_type Virtual 109421 remote_ip 5.5.5.97 109422 username alihosseini 109422 kill_reason Relative expiration date has reached 109422 mac 109422 bytes_out 0 109422 bytes_in 0 109422 station_ip 5.120.2.91 109422 port 40 109422 unique_id port 109426 username aminvpn 109426 mac 109426 bytes_out 0 109426 bytes_in 0 109426 station_ip 83.122.15.82 109426 port 24 109426 unique_id port 109426 remote_ip 10.8.0.14 109428 username malekpoir 109428 mac 109428 bytes_out 0 109428 bytes_in 0 109428 station_ip 5.120.170.159 109428 port 41 109428 unique_id port 109431 username forozande 109431 mac 109431 bytes_out 0 109431 bytes_in 0 109431 station_ip 83.122.197.213 109431 port 24 109431 unique_id port 109431 remote_ip 10.8.0.74 109432 username mehdizare 109432 mac 109432 bytes_out 0 109432 bytes_in 0 109432 station_ip 5.120.166.206 109432 port 37 109432 unique_id port 109432 remote_ip 10.8.0.90 109434 username malekpoir 109434 mac 109434 bytes_out 14996 109434 bytes_in 23612 109434 station_ip 5.120.170.159 109434 port 21 109434 unique_id port 109434 remote_ip 10.8.0.58 109436 username malekpoir 109436 mac 109436 bytes_out 22010 109436 bytes_in 35110 109436 station_ip 5.120.170.159 109436 port 41 109436 unique_id port 109436 remote_ip 10.8.0.58 109439 username amir 109439 mac 109439 bytes_out 0 109439 bytes_in 0 109439 station_ip 113.203.109.172 109439 port 11 109439 unique_id port 109439 remote_ip 10.8.1.22 109442 username aminvpn 109442 mac 109442 bytes_out 9211 109442 bytes_in 12131 109442 station_ip 83.122.15.82 109442 port 11 109442 unique_id port 109442 remote_ip 10.8.1.6 109446 username tahmasebi 109446 kill_reason Another user logged on this global unique id 109446 mac 109446 bytes_out 0 109446 bytes_in 0 109446 station_ip 5.120.176.53 109446 port 34 109446 unique_id port 109447 username aminvpn 109447 mac 109447 bytes_out 68049 109447 bytes_in 331530 109447 station_ip 83.122.15.82 109447 port 43 109447 unique_id port 109447 remote_ip 10.8.0.14 109452 username hashtadani3 109452 mac 109452 bytes_out 0 109452 bytes_in 0 109452 station_ip 5.202.97.140 109452 port 40 109452 unique_id port 109452 remote_ip 10.8.0.154 109454 username hashtadani3 109454 mac 109454 bytes_out 0 109454 bytes_in 0 109454 station_ip 5.202.97.140 109454 port 12 109454 unique_id port 109454 remote_ip 10.8.1.94 109458 username musa 109458 mac 109458 bytes_out 0 109458 bytes_in 0 109458 station_ip 91.251.144.149 109458 port 38 109458 unique_id port 109461 username hashtadani3 109461 mac 109461 bytes_out 0 109461 bytes_in 0 109461 station_ip 5.202.97.140 109461 port 11 109461 unique_id port 109461 remote_ip 10.8.1.94 109463 username musa 109463 mac 109463 bytes_out 10386 109463 bytes_in 13817 109463 station_ip 91.251.144.149 109463 port 37 109463 unique_id port 109463 remote_ip 10.8.0.6 109464 username mahdiyehalizadeh 109464 mac 109464 bytes_out 107266 109464 bytes_in 516902 109464 station_ip 83.122.217.190 109464 port 41 109464 unique_id port 109464 remote_ip 10.8.0.82 109465 username mohammadmahdi 109465 kill_reason Another user logged on this global unique id 109465 mac 109465 bytes_out 0 109465 bytes_in 0 109465 station_ip 5.119.149.77 109465 port 42 109465 unique_id port 109465 remote_ip 10.8.0.54 109466 username hashtadani3 109466 mac 109466 bytes_out 616421 109466 bytes_in 7284091 109466 station_ip 5.202.97.140 109466 port 11 109466 unique_id port 109466 remote_ip 10.8.1.94 109468 username hashtadani3 109437 username farhad1 109437 mac 109437 bytes_out 0 109437 bytes_in 0 109437 station_ip 5.120.9.187 109437 port 21 109437 unique_id port 109437 remote_ip 10.8.0.26 109438 username mehdizare 109438 mac 109438 bytes_out 48987 109438 bytes_in 60605 109438 station_ip 5.120.166.206 109438 port 24 109438 unique_id port 109438 remote_ip 10.8.0.90 109440 username aminvpn 109440 mac 109440 bytes_out 74711 109440 bytes_in 158817 109440 station_ip 83.122.15.82 109440 port 42 109440 unique_id port 109440 remote_ip 10.8.0.14 109443 username hashtadani3 109443 mac 109443 bytes_out 0 109443 bytes_in 0 109443 station_ip 5.202.97.140 109443 port 41 109443 unique_id port 109443 remote_ip 10.8.0.154 109444 username aminvpn 109444 mac 109444 bytes_out 0 109444 bytes_in 0 109444 station_ip 83.122.15.82 109444 port 11 109444 unique_id port 109444 remote_ip 10.8.1.6 109449 username hashtadani3 109449 mac 109449 bytes_out 3374874 109449 bytes_in 34298147 109449 station_ip 5.202.97.140 109449 port 41 109449 unique_id port 109449 remote_ip 10.8.0.154 109456 username amir 109456 mac 109456 bytes_out 306099 109456 bytes_in 1137844 109456 station_ip 37.129.196.151 109456 port 11 109456 unique_id port 109456 remote_ip 10.8.1.22 109459 username hashtadani3 109459 kill_reason Maximum check online fails reached 109459 mac 109459 bytes_out 0 109459 bytes_in 0 109459 station_ip 5.202.97.140 109459 port 43 109459 unique_id port 109467 username hashtadani3 109467 mac 109467 bytes_out 0 109467 bytes_in 0 109467 station_ip 5.202.97.140 109467 port 11 109467 unique_id port 109467 remote_ip 10.8.1.94 109472 username hashtadani3 109472 mac 109472 bytes_out 0 109472 bytes_in 0 109472 station_ip 5.202.97.140 109472 port 37 109472 unique_id port 109472 remote_ip 10.8.0.154 109473 username hashtadani3 109473 mac 109473 bytes_out 0 109473 bytes_in 0 109473 station_ip 5.202.97.140 109473 port 37 109473 unique_id port 109473 remote_ip 10.8.0.154 109476 username forozande 109476 mac 109476 bytes_out 145776 109476 bytes_in 263227 109476 station_ip 37.129.145.140 109476 port 40 109476 unique_id port 109476 remote_ip 10.8.0.74 109481 username hashtadani3 109481 mac 109481 bytes_out 0 109481 bytes_in 0 109481 station_ip 5.202.97.140 109481 port 37 109481 unique_id port 109481 remote_ip 10.8.0.154 109482 username hashtadani3 109482 mac 109482 bytes_out 0 109482 bytes_in 0 109482 station_ip 5.202.97.140 109482 port 45 109482 unique_id port 109482 remote_ip 10.8.0.154 109484 username alipour 109484 kill_reason Another user logged on this global unique id 109484 mac 109484 bytes_out 0 109484 bytes_in 0 109484 station_ip 83.123.114.25 109484 port 32 109484 unique_id port 109486 username musa 109486 mac 109486 bytes_out 18751 109486 bytes_in 27341 109486 station_ip 91.251.144.149 109486 port 38 109486 unique_id port 109486 remote_ip 10.8.0.6 109488 username hashtadani3 109488 mac 109488 bytes_out 0 109488 bytes_in 0 109488 station_ip 5.202.97.140 109488 port 37 109488 unique_id port 109488 remote_ip 10.8.0.154 109491 username musa 109491 mac 109491 bytes_out 4793 109491 bytes_in 10014 109491 station_ip 91.251.144.149 109491 port 11 109491 unique_id port 109491 remote_ip 10.8.1.10 109492 username hashtadani3 109492 mac 109492 bytes_out 0 109492 bytes_in 0 109492 station_ip 5.202.97.140 109492 port 37 109492 unique_id port 109492 remote_ip 10.8.0.154 109494 username musa 109494 mac 109494 bytes_out 4886 109462 bytes_out 0 109462 bytes_in 0 109462 station_ip 91.251.144.149 109462 port 38 109462 unique_id port 109462 remote_ip 10.8.0.6 109470 username hashtadani3 109470 mac 109470 bytes_out 0 109470 bytes_in 0 109470 station_ip 5.202.97.140 109470 port 11 109470 unique_id port 109470 remote_ip 10.8.1.94 109477 username hashtadani3 109477 mac 109477 bytes_out 0 109477 bytes_in 0 109477 station_ip 5.202.97.140 109477 port 37 109477 unique_id port 109477 remote_ip 10.8.0.154 109479 username hashtadani3 109479 mac 109479 bytes_out 0 109479 bytes_in 0 109479 station_ip 5.202.97.140 109479 port 37 109479 unique_id port 109479 remote_ip 10.8.0.154 109483 username mohammadmahdi 109483 mac 109483 bytes_out 0 109483 bytes_in 0 109483 station_ip 5.119.149.77 109483 port 42 109483 unique_id port 109487 username musa 109487 mac 109487 bytes_out 4639 109487 bytes_in 9695 109487 station_ip 91.251.144.149 109487 port 11 109487 unique_id port 109487 remote_ip 10.8.1.10 109490 username hashtadani3 109490 mac 109490 bytes_out 0 109490 bytes_in 0 109490 station_ip 5.202.97.140 109490 port 37 109490 unique_id port 109490 remote_ip 10.8.0.154 109502 username hashtadani3 109502 mac 109502 bytes_out 0 109502 bytes_in 0 109502 station_ip 5.202.97.140 109502 port 37 109502 unique_id port 109502 remote_ip 10.8.0.154 109503 username hashtadani3 109503 mac 109503 bytes_out 0 109503 bytes_in 0 109503 station_ip 5.202.97.140 109503 port 37 109503 unique_id port 109503 remote_ip 10.8.0.154 109505 username hashtadani3 109505 mac 109505 bytes_out 0 109505 bytes_in 0 109505 station_ip 5.202.97.140 109505 port 37 109505 unique_id port 109505 remote_ip 10.8.0.154 109507 username musa 109507 kill_reason Another user logged on this global unique id 109507 mac 109507 bytes_out 0 109507 bytes_in 0 109507 station_ip 91.251.144.149 109507 port 11 109507 unique_id port 109507 remote_ip 10.8.1.10 109512 username hashtadani3 109512 mac 109512 bytes_out 0 109512 bytes_in 0 109512 station_ip 5.202.97.140 109512 port 37 109512 unique_id port 109512 remote_ip 10.8.0.154 109515 username hashtadani3 109515 mac 109515 bytes_out 0 109515 bytes_in 0 109515 station_ip 5.202.97.140 109515 port 37 109515 unique_id port 109515 remote_ip 10.8.0.154 109521 username hashtadani3 109521 mac 109521 bytes_out 0 109521 bytes_in 0 109521 station_ip 5.202.97.140 109521 port 11 109521 unique_id port 109521 remote_ip 10.8.1.94 109529 username hashtadani3 109529 mac 109529 bytes_out 0 109529 bytes_in 0 109529 station_ip 37.129.168.23 109529 port 37 109529 unique_id port 109529 remote_ip 10.8.0.154 109531 username hashtadani3 109531 mac 109531 bytes_out 0 109531 bytes_in 0 109531 station_ip 5.202.97.140 109531 port 37 109531 unique_id port 109531 remote_ip 10.8.0.154 109532 username hashtadani3 109532 mac 109532 bytes_out 0 109532 bytes_in 0 109532 station_ip 5.202.97.140 109532 port 37 109532 unique_id port 109532 remote_ip 10.8.0.154 109533 username hashtadani3 109533 mac 109533 bytes_out 0 109533 bytes_in 0 109533 station_ip 5.202.97.140 109533 port 11 109533 unique_id port 109533 remote_ip 10.8.1.94 109534 username hashtadani3 109534 mac 109534 bytes_out 0 109534 bytes_in 0 109534 station_ip 5.202.97.140 109534 port 11 109534 unique_id port 109534 remote_ip 10.8.1.94 109535 username hashtadani3 109535 mac 109535 bytes_out 0 109535 bytes_in 0 109535 station_ip 5.202.97.140 109535 port 40 109468 mac 109468 bytes_out 0 109468 bytes_in 0 109468 station_ip 5.202.97.140 109468 port 11 109468 unique_id port 109468 remote_ip 10.8.1.94 109469 username hashtadani3 109469 mac 109469 bytes_out 0 109469 bytes_in 0 109469 station_ip 5.202.97.140 109469 port 11 109469 unique_id port 109469 remote_ip 10.8.1.94 109471 username aminvpn 109471 unique_id port 109471 terminate_cause Lost-Carrier 109471 bytes_out 6927610 109471 bytes_in 90527521 109471 station_ip 5.120.65.69 109471 port 15729078 109471 nas_port_type Virtual 109471 remote_ip 5.5.5.100 109474 username hashtadani3 109474 mac 109474 bytes_out 0 109474 bytes_in 0 109474 station_ip 5.202.97.140 109474 port 37 109474 unique_id port 109474 remote_ip 10.8.0.154 109475 username hashtadani3 109475 mac 109475 bytes_out 0 109475 bytes_in 0 109475 station_ip 5.202.97.140 109475 port 37 109475 unique_id port 109475 remote_ip 10.8.0.154 109478 username hashtadani3 109478 mac 109478 bytes_out 0 109478 bytes_in 0 109478 station_ip 5.202.97.140 109478 port 37 109478 unique_id port 109478 remote_ip 10.8.0.154 109480 username hashtadani3 109480 mac 109480 bytes_out 0 109480 bytes_in 0 109480 station_ip 5.202.97.140 109480 port 37 109480 unique_id port 109480 remote_ip 10.8.0.154 109485 username bcboard 109485 kill_reason Maximum check online fails reached 109485 unique_id port 109485 bytes_out 135744 109485 bytes_in 470618 109485 station_ip 113.203.10.182 109485 port 15729080 109485 nas_port_type Virtual 109485 remote_ip 5.5.5.103 109489 username mohammadjavad 109489 mac 109489 bytes_out 0 109489 bytes_in 0 109489 station_ip 83.122.107.204 109489 port 40 109489 unique_id port 109489 remote_ip 10.8.0.142 109493 username hashtadani3 109493 mac 109493 bytes_out 0 109493 bytes_in 0 109493 station_ip 5.202.97.140 109493 port 37 109493 unique_id port 109493 remote_ip 10.8.0.154 109495 username hashtadani3 109495 mac 109495 bytes_out 0 109495 bytes_in 0 109495 station_ip 5.202.97.140 109495 port 37 109495 unique_id port 109495 remote_ip 10.8.0.154 109497 username hashtadani3 109497 mac 109497 bytes_out 0 109497 bytes_in 0 109497 station_ip 5.202.97.140 109497 port 37 109497 unique_id port 109497 remote_ip 10.8.0.154 109498 username hashtadani3 109498 mac 109498 bytes_out 0 109498 bytes_in 0 109498 station_ip 5.202.97.140 109498 port 37 109498 unique_id port 109498 remote_ip 10.8.0.154 109501 username tahmasebi 109501 kill_reason Another user logged on this global unique id 109501 mac 109501 bytes_out 0 109501 bytes_in 0 109501 station_ip 5.120.176.53 109501 port 34 109501 unique_id port 109504 username hashtadani3 109504 mac 109504 bytes_out 0 109504 bytes_in 0 109504 station_ip 5.202.97.140 109504 port 37 109504 unique_id port 109504 remote_ip 10.8.0.154 109506 username hashtadani3 109506 mac 109506 bytes_out 0 109506 bytes_in 0 109506 station_ip 5.202.97.140 109506 port 37 109506 unique_id port 109506 remote_ip 10.8.0.154 109510 username musa 109510 mac 109510 bytes_out 0 109510 bytes_in 0 109510 station_ip 91.251.144.149 109510 port 11 109510 unique_id port 109517 username zare 109517 mac 109517 bytes_out 2897194 109517 bytes_in 46637809 109517 station_ip 37.27.48.235 109517 port 44 109517 unique_id port 109517 remote_ip 10.8.0.18 109519 username hashtadani3 109519 mac 109519 bytes_out 0 109519 bytes_in 0 109519 station_ip 5.202.97.140 109519 port 11 109519 unique_id port 109519 remote_ip 10.8.1.94 109520 username hashtadani3 109520 mac 109494 bytes_in 9809 109494 station_ip 91.251.144.149 109494 port 11 109494 unique_id port 109494 remote_ip 10.8.1.10 109496 username musa 109496 mac 109496 bytes_out 0 109496 bytes_in 0 109496 station_ip 91.251.144.149 109496 port 11 109496 unique_id port 109496 remote_ip 10.8.1.10 109499 username hashtadani3 109499 mac 109499 bytes_out 2429 109499 bytes_in 4706 109499 station_ip 5.202.97.140 109499 port 37 109499 unique_id port 109499 remote_ip 10.8.0.154 109500 username hashtadani3 109500 mac 109500 bytes_out 0 109500 bytes_in 0 109500 station_ip 5.202.97.140 109500 port 37 109500 unique_id port 109500 remote_ip 10.8.0.154 109508 username hashtadani3 109508 mac 109508 bytes_out 0 109508 bytes_in 0 109508 station_ip 5.202.97.140 109508 port 37 109508 unique_id port 109508 remote_ip 10.8.0.154 109509 username hashtadani3 109509 mac 109509 bytes_out 0 109509 bytes_in 0 109509 station_ip 5.202.97.140 109509 port 37 109509 unique_id port 109509 remote_ip 10.8.0.154 109511 username hashtadani3 109511 mac 109511 bytes_out 0 109511 bytes_in 0 109511 station_ip 5.202.97.140 109511 port 37 109511 unique_id port 109511 remote_ip 10.8.0.154 109513 username hashtadani3 109513 mac 109513 bytes_out 0 109513 bytes_in 0 109513 station_ip 5.202.97.140 109513 port 37 109513 unique_id port 109513 remote_ip 10.8.0.154 109514 username musa 109514 mac 109514 bytes_out 0 109514 bytes_in 0 109514 station_ip 91.251.144.149 109514 port 11 109514 unique_id port 109514 remote_ip 10.8.1.10 109516 username hashtadani3 109516 mac 109516 bytes_out 0 109516 bytes_in 0 109516 station_ip 5.202.97.140 109516 port 11 109516 unique_id port 109516 remote_ip 10.8.1.94 109518 username hashtadani3 109518 mac 109518 bytes_out 0 109518 bytes_in 0 109518 station_ip 5.202.97.140 109518 port 11 109518 unique_id port 109518 remote_ip 10.8.1.94 109525 username rajaei 109525 kill_reason Another user logged on this global unique id 109525 mac 109525 bytes_out 0 109525 bytes_in 0 109525 station_ip 5.200.125.26 109525 port 38 109525 unique_id port 109525 remote_ip 10.8.0.34 109526 username hashtadani3 109526 mac 109526 bytes_out 0 109526 bytes_in 0 109526 station_ip 5.202.97.140 109526 port 11 109526 unique_id port 109526 remote_ip 10.8.1.94 109530 username hashtadani3 109530 mac 109530 bytes_out 0 109530 bytes_in 0 109530 station_ip 5.202.97.140 109530 port 37 109530 unique_id port 109530 remote_ip 10.8.0.154 109538 username hashtadani3 109538 mac 109538 bytes_out 0 109538 bytes_in 0 109538 station_ip 5.202.97.140 109538 port 40 109538 unique_id port 109538 remote_ip 10.8.0.154 109542 username hashtadani3 109542 mac 109542 bytes_out 0 109542 bytes_in 0 109542 station_ip 5.202.97.140 109542 port 11 109542 unique_id port 109542 remote_ip 10.8.1.94 109543 username hashtadani3 109543 mac 109543 bytes_out 0 109543 bytes_in 0 109543 station_ip 5.202.97.140 109543 port 41 109543 unique_id port 109543 remote_ip 10.8.0.154 109546 username hashtadani3 109546 mac 109546 bytes_out 0 109546 bytes_in 0 109546 station_ip 5.202.97.140 109546 port 41 109546 unique_id port 109546 remote_ip 10.8.0.154 109548 username hashtadani3 109548 mac 109548 bytes_out 0 109548 bytes_in 0 109548 station_ip 5.202.97.140 109548 port 11 109548 unique_id port 109548 remote_ip 10.8.1.94 109549 username hashtadani3 109549 mac 109549 bytes_out 0 109549 bytes_in 0 109549 station_ip 5.202.97.140 109549 port 11 109549 unique_id port 109520 bytes_out 0 109520 bytes_in 0 109520 station_ip 5.202.97.140 109520 port 11 109520 unique_id port 109520 remote_ip 10.8.1.94 109522 username forozande 109522 mac 109522 bytes_out 1765726 109522 bytes_in 13133083 109522 station_ip 83.123.208.179 109522 port 41 109522 unique_id port 109522 remote_ip 10.8.0.74 109523 username hashtadani3 109523 mac 109523 bytes_out 0 109523 bytes_in 0 109523 station_ip 5.202.97.140 109523 port 11 109523 unique_id port 109523 remote_ip 10.8.1.94 109524 username hashtadani3 109524 mac 109524 bytes_out 0 109524 bytes_in 0 109524 station_ip 5.202.97.140 109524 port 11 109524 unique_id port 109524 remote_ip 10.8.1.94 109527 username hashtadani3 109527 mac 109527 bytes_out 0 109527 bytes_in 0 109527 station_ip 5.202.97.140 109527 port 11 109527 unique_id port 109527 remote_ip 10.8.1.94 109528 username hashtadani3 109528 mac 109528 bytes_out 0 109528 bytes_in 0 109528 station_ip 5.202.97.140 109528 port 11 109528 unique_id port 109528 remote_ip 10.8.1.94 109536 username hashtadani3 109536 kill_reason Maximum check online fails reached 109536 mac 109536 bytes_out 0 109536 bytes_in 0 109536 station_ip 5.202.97.140 109536 port 37 109536 unique_id port 109539 username hashtadani3 109539 mac 109539 bytes_out 0 109539 bytes_in 0 109539 station_ip 5.202.97.140 109539 port 40 109539 unique_id port 109539 remote_ip 10.8.0.154 109541 username hashtadani3 109541 mac 109541 bytes_out 0 109541 bytes_in 0 109541 station_ip 5.202.97.140 109541 port 11 109541 unique_id port 109541 remote_ip 10.8.1.94 109544 username hashtadani3 109544 mac 109544 bytes_out 0 109544 bytes_in 0 109544 station_ip 5.202.97.140 109544 port 41 109544 unique_id port 109544 remote_ip 10.8.0.154 109552 username hashtadani3 109552 mac 109552 bytes_out 0 109552 bytes_in 0 109552 station_ip 5.202.97.140 109552 port 11 109552 unique_id port 109552 remote_ip 10.8.1.94 109555 username aminvpn 109555 unique_id port 109555 terminate_cause Lost-Carrier 109555 bytes_out 6197664 109555 bytes_in 126932666 109555 station_ip 5.120.65.69 109555 port 15729082 109555 nas_port_type Virtual 109555 remote_ip 5.5.5.107 109563 username alipour 109563 mac 109563 bytes_out 0 109563 bytes_in 0 109563 station_ip 83.123.114.25 109563 port 32 109563 unique_id port 109564 username hashtadani3 109564 mac 109564 bytes_out 0 109564 bytes_in 0 109564 station_ip 5.202.97.140 109564 port 11 109564 unique_id port 109564 remote_ip 10.8.1.94 109566 username mehdizare 109566 mac 109566 bytes_out 212400 109566 bytes_in 209655 109566 station_ip 5.120.166.206 109566 port 21 109566 unique_id port 109566 remote_ip 10.8.0.90 109567 username hashtadani3 109567 mac 109567 bytes_out 0 109567 bytes_in 0 109567 station_ip 5.202.97.140 109567 port 11 109567 unique_id port 109567 remote_ip 10.8.1.94 109568 username hashtadani3 109568 mac 109568 bytes_out 0 109568 bytes_in 0 109568 station_ip 5.202.97.140 109568 port 11 109568 unique_id port 109568 remote_ip 10.8.1.94 109571 username hashtadani3 109571 mac 109571 bytes_out 0 109571 bytes_in 0 109571 station_ip 5.202.97.140 109571 port 11 109571 unique_id port 109571 remote_ip 10.8.1.94 109573 username hashtadani3 109573 mac 109573 bytes_out 0 109573 bytes_in 0 109573 station_ip 5.202.97.140 109573 port 11 109573 unique_id port 109573 remote_ip 10.8.1.94 109574 username hashtadani3 109574 mac 109574 bytes_out 0 109574 bytes_in 0 109574 station_ip 5.202.97.140 109574 port 11 109535 unique_id port 109535 remote_ip 10.8.0.154 109537 username hashtadani3 109537 mac 109537 bytes_out 0 109537 bytes_in 0 109537 station_ip 5.202.97.140 109537 port 40 109537 unique_id port 109537 remote_ip 10.8.0.154 109540 username hashtadani3 109540 mac 109540 bytes_out 0 109540 bytes_in 0 109540 station_ip 5.202.97.140 109540 port 40 109540 unique_id port 109540 remote_ip 10.8.0.154 109545 username mohammadjavad 109545 mac 109545 bytes_out 69626 109545 bytes_in 129154 109545 station_ip 83.123.158.167 109545 port 40 109545 unique_id port 109545 remote_ip 10.8.0.142 109547 username kamali1 109547 mac 109547 bytes_out 393741 109547 bytes_in 1001753 109547 station_ip 5.119.107.80 109547 port 26 109547 unique_id port 109547 remote_ip 10.8.0.70 109551 username hashtadani3 109551 mac 109551 bytes_out 0 109551 bytes_in 0 109551 station_ip 5.202.97.140 109551 port 42 109551 unique_id port 109551 remote_ip 10.8.0.154 109554 username hashtadani3 109554 mac 109554 bytes_out 0 109554 bytes_in 0 109554 station_ip 5.202.97.140 109554 port 26 109554 unique_id port 109554 remote_ip 10.8.0.154 109556 username hashtadani3 109556 mac 109556 bytes_out 0 109556 bytes_in 0 109556 station_ip 5.202.97.140 109556 port 26 109556 unique_id port 109556 remote_ip 10.8.0.154 109557 username rajaei 109557 kill_reason Another user logged on this global unique id 109557 mac 109557 bytes_out 0 109557 bytes_in 0 109557 station_ip 5.200.125.26 109557 port 38 109557 unique_id port 109559 username hashtadani3 109559 mac 109559 bytes_out 0 109559 bytes_in 0 109559 station_ip 5.202.97.140 109559 port 26 109559 unique_id port 109559 remote_ip 10.8.0.154 109560 username hashtadani3 109560 mac 109560 bytes_out 0 109560 bytes_in 0 109560 station_ip 5.202.97.140 109560 port 26 109560 unique_id port 109560 remote_ip 10.8.0.154 109565 username hashtadani3 109565 mac 109565 bytes_out 0 109565 bytes_in 0 109565 station_ip 5.202.97.140 109565 port 11 109565 unique_id port 109565 remote_ip 10.8.1.94 109569 username hashtadani3 109569 mac 109569 bytes_out 0 109569 bytes_in 0 109569 station_ip 5.202.97.140 109569 port 11 109569 unique_id port 109569 remote_ip 10.8.1.94 109570 username hashtadani3 109570 mac 109570 bytes_out 0 109570 bytes_in 0 109570 station_ip 5.202.97.140 109570 port 11 109570 unique_id port 109570 remote_ip 10.8.1.94 109572 username hashtadani3 109572 mac 109572 bytes_out 0 109572 bytes_in 0 109572 station_ip 5.202.97.140 109572 port 11 109572 unique_id port 109572 remote_ip 10.8.1.94 109575 username hashtadani3 109575 mac 109575 bytes_out 0 109575 bytes_in 0 109575 station_ip 5.202.97.140 109575 port 42 109575 unique_id port 109575 remote_ip 10.8.0.154 109578 username hashtadani3 109578 mac 109578 bytes_out 0 109578 bytes_in 0 109578 station_ip 5.202.97.140 109578 port 42 109578 unique_id port 109578 remote_ip 10.8.0.154 109580 username houshang 109580 kill_reason Another user logged on this global unique id 109580 mac 109580 bytes_out 0 109580 bytes_in 0 109580 station_ip 5.120.190.114 109580 port 21 109580 unique_id port 109580 remote_ip 10.8.0.22 109584 username mahdiyehalizadeh 109584 mac 109584 bytes_out 270356 109584 bytes_in 741934 109584 station_ip 37.129.251.53 109584 port 44 109584 unique_id port 109584 remote_ip 10.8.0.82 109586 username houshang 109586 mac 109586 bytes_out 1343883 109586 bytes_in 4619440 109586 station_ip 5.120.190.114 109586 port 21 109586 unique_id port 109586 remote_ip 10.8.0.22 109549 remote_ip 10.8.1.94 109550 username hashtadani3 109550 kill_reason Maximum check online fails reached 109550 mac 109550 bytes_out 0 109550 bytes_in 0 109550 station_ip 5.202.97.140 109550 port 40 109550 unique_id port 109553 username forozande 109553 mac 109553 bytes_out 268845 109553 bytes_in 2618713 109553 station_ip 83.123.74.210 109553 port 26 109553 unique_id port 109553 remote_ip 10.8.0.74 109558 username aminvpn 109558 unique_id port 109558 terminate_cause Lost-Carrier 109558 bytes_out 258923 109558 bytes_in 2618148 109558 station_ip 5.120.65.69 109558 port 15729083 109558 nas_port_type Virtual 109558 remote_ip 5.5.5.108 109561 username hashtadani3 109561 mac 109561 bytes_out 0 109561 bytes_in 0 109561 station_ip 5.202.97.140 109561 port 11 109561 unique_id port 109561 remote_ip 10.8.1.94 109562 username hashtadani3 109562 mac 109562 bytes_out 0 109562 bytes_in 0 109562 station_ip 5.202.97.140 109562 port 11 109562 unique_id port 109562 remote_ip 10.8.1.94 109576 username hashtadani3 109576 mac 109576 bytes_out 0 109576 bytes_in 0 109576 station_ip 5.202.97.140 109576 port 42 109576 unique_id port 109576 remote_ip 10.8.0.154 109581 username houshang 109581 kill_reason Another user logged on this global unique id 109581 mac 109581 bytes_out 0 109581 bytes_in 0 109581 station_ip 5.120.190.114 109581 port 21 109581 unique_id port 109582 username mohammadmahdi 109582 mac 109582 bytes_out 29306 109582 bytes_in 45899 109582 station_ip 5.119.156.110 109582 port 42 109582 unique_id port 109582 remote_ip 10.8.0.54 109583 username houshang 109583 mac 109583 bytes_out 0 109583 bytes_in 0 109583 station_ip 5.120.190.114 109583 port 21 109583 unique_id port 109587 username aminvpn 109587 mac 109587 bytes_out 106665 109587 bytes_in 312584 109587 station_ip 83.123.132.125 109587 port 42 109587 unique_id port 109587 remote_ip 10.8.0.14 109588 username ahmadipour 109588 unique_id port 109588 terminate_cause User-Request 109588 bytes_out 50179 109588 bytes_in 352069 109588 station_ip 37.129.136.39 109588 port 15729085 109588 nas_port_type Virtual 109588 remote_ip 5.5.5.111 109589 username avaanna 109589 mac 109589 bytes_out 1823091 109589 bytes_in 22985322 109589 station_ip 83.122.38.154 109589 port 32 109589 unique_id port 109589 remote_ip 10.8.0.98 109590 username naeimeh 109590 mac 109590 bytes_out 1511650 109590 bytes_in 13719155 109590 station_ip 37.129.157.46 109590 port 38 109590 unique_id port 109590 remote_ip 10.8.0.78 109592 username mirzaei 109592 kill_reason Another user logged on this global unique id 109592 mac 109592 bytes_out 0 109592 bytes_in 0 109592 station_ip 5.120.106.181 109592 port 36 109592 unique_id port 109592 remote_ip 10.8.0.66 109593 username alihosseini1 109593 kill_reason Another user logged on this global unique id 109593 mac 109593 bytes_out 0 109593 bytes_in 0 109593 station_ip 5.120.93.213 109593 port 13 109593 unique_id port 109593 remote_ip 10.8.1.106 109597 username hashtadani3 109597 mac 109597 bytes_out 0 109597 bytes_in 0 109597 station_ip 5.202.97.140 109597 port 38 109597 unique_id port 109597 remote_ip 10.8.0.154 109598 username hashtadani3 109598 mac 109598 bytes_out 0 109598 bytes_in 0 109598 station_ip 5.202.97.140 109598 port 38 109598 unique_id port 109598 remote_ip 10.8.0.154 109600 username hamid.e 109600 kill_reason Maximum number of concurrent logins reached 109600 unique_id port 109600 bytes_out 0 109600 bytes_in 0 109600 station_ip 37.27.58.237 109600 port 15729088 109600 nas_port_type Virtual 109603 username hamid.e 109993 username hashtadani3 109574 unique_id port 109574 remote_ip 10.8.1.94 109577 username rajaei 109577 mac 109577 bytes_out 0 109577 bytes_in 0 109577 station_ip 5.200.125.26 109577 port 38 109577 unique_id port 109579 username tahmasebi 109579 kill_reason Another user logged on this global unique id 109579 mac 109579 bytes_out 0 109579 bytes_in 0 109579 station_ip 5.120.176.53 109579 port 34 109579 unique_id port 109585 username kordestani 109585 mac 109585 bytes_out 0 109585 bytes_in 0 109585 station_ip 151.235.95.228 109585 port 12 109585 unique_id port 109585 remote_ip 10.8.1.98 109591 username kamali1 109591 mac 109591 bytes_out 603936 109591 bytes_in 3421228 109591 station_ip 5.119.107.80 109591 port 41 109591 unique_id port 109591 remote_ip 10.8.0.70 109594 username hashtadani3 109594 mac 109594 bytes_out 0 109594 bytes_in 0 109594 station_ip 5.202.97.140 109594 port 11 109594 unique_id port 109594 remote_ip 10.8.1.94 109596 username hashtadani3 109596 kill_reason Maximum check online fails reached 109596 mac 109596 bytes_out 0 109596 bytes_in 0 109596 station_ip 5.202.97.140 109596 port 11 109596 unique_id port 109602 username mahdiyehalizadeh 109602 mac 109602 bytes_out 485926 109602 bytes_in 1833663 109602 station_ip 83.123.143.111 109602 port 41 109602 unique_id port 109602 remote_ip 10.8.0.82 109606 username hashtadani3 109606 mac 109606 bytes_out 0 109606 bytes_in 0 109606 station_ip 5.202.97.140 109606 port 44 109606 unique_id port 109606 remote_ip 10.8.0.154 109608 username houshang 109608 mac 109608 bytes_out 500558 109608 bytes_in 3757511 109608 station_ip 5.120.190.114 109608 port 41 109608 unique_id port 109608 remote_ip 10.8.0.22 109611 username mahdiyehalizadeh 109611 mac 109611 bytes_out 1009038 109611 bytes_in 9740471 109611 station_ip 83.122.7.215 109611 port 32 109611 unique_id port 109611 remote_ip 10.8.0.82 109618 username hashtadani3 109618 mac 109618 bytes_out 0 109618 bytes_in 0 109618 station_ip 5.202.97.140 109618 port 41 109618 unique_id port 109618 remote_ip 10.8.0.154 109619 username aminvpn 109619 mac 109619 bytes_out 1374383 109619 bytes_in 48167835 109619 station_ip 83.123.184.141 109619 port 21 109619 unique_id port 109619 remote_ip 10.8.0.14 109625 username mahdiyehalizadeh 109625 mac 109625 bytes_out 0 109625 bytes_in 0 109625 station_ip 83.122.7.215 109625 port 13 109625 unique_id port 109625 remote_ip 10.8.1.110 109629 username tahmasebi 109629 kill_reason Another user logged on this global unique id 109629 mac 109629 bytes_out 0 109629 bytes_in 0 109629 station_ip 5.120.176.53 109629 port 34 109629 unique_id port 109637 username avaanna 109637 mac 109637 bytes_out 0 109637 bytes_in 0 109637 station_ip 83.122.38.154 109637 port 32 109637 unique_id port 109637 remote_ip 10.8.0.98 109638 username kordestani 109638 kill_reason Another user logged on this global unique id 109638 mac 109638 bytes_out 0 109638 bytes_in 0 109638 station_ip 151.235.95.228 109638 port 12 109638 unique_id port 109638 remote_ip 10.8.1.98 109639 username kordestani 109639 mac 109639 bytes_out 0 109639 bytes_in 0 109639 station_ip 151.235.95.228 109639 port 12 109639 unique_id port 109640 username malekpoir 109640 mac 109640 bytes_out 61112 109640 bytes_in 72948 109640 station_ip 5.120.170.159 109640 port 24 109640 unique_id port 109640 remote_ip 10.8.0.58 109641 username sedighe 109641 mac 109641 bytes_out 149378 109641 bytes_in 510173 109641 station_ip 37.129.229.120 109641 port 13 109641 unique_id port 109641 remote_ip 10.8.1.78 109595 username hashtadani3 109595 mac 109595 bytes_out 0 109595 bytes_in 0 109595 station_ip 5.202.97.140 109595 port 38 109595 unique_id port 109595 remote_ip 10.8.0.154 109599 username mahdiyehalizadeh 109599 mac 109599 bytes_out 0 109599 bytes_in 0 109599 station_ip 83.123.143.111 109599 port 32 109599 unique_id port 109599 remote_ip 10.8.0.82 109601 username hashtadani3 109601 mac 109601 bytes_out 0 109601 bytes_in 0 109601 station_ip 5.202.97.140 109601 port 32 109601 unique_id port 109601 remote_ip 10.8.0.154 109604 username hashtadani3 109604 mac 109604 bytes_out 0 109604 bytes_in 0 109604 station_ip 5.202.97.140 109604 port 32 109604 unique_id port 109604 remote_ip 10.8.0.154 109605 username aminvpn 109605 unique_id port 109605 terminate_cause Lost-Carrier 109605 bytes_out 696731 109605 bytes_in 3323017 109605 station_ip 5.120.65.69 109605 port 15729084 109605 nas_port_type Virtual 109605 remote_ip 5.5.5.109 109609 username alihosseini1 109609 mac 109609 bytes_out 0 109609 bytes_in 0 109609 station_ip 5.120.93.213 109609 port 13 109609 unique_id port 109613 username avaanna 109613 mac 109613 bytes_out 2780545 109613 bytes_in 43425992 109613 station_ip 83.122.38.154 109613 port 21 109613 unique_id port 109613 remote_ip 10.8.0.98 109615 username hashtadani3 109615 mac 109615 bytes_out 0 109615 bytes_in 0 109615 station_ip 5.202.97.140 109615 port 21 109615 unique_id port 109615 remote_ip 10.8.0.154 109620 username hashtadani3 109620 mac 109620 bytes_out 0 109620 bytes_in 0 109620 station_ip 5.202.97.140 109620 port 21 109620 unique_id port 109620 remote_ip 10.8.0.154 109623 username hamid.e 109623 unique_id port 109623 terminate_cause User-Request 109623 bytes_out 1749524 109623 bytes_in 7663817 109623 station_ip 37.27.7.108 109623 port 15729090 109623 nas_port_type Virtual 109623 remote_ip 5.5.5.117 109624 username bcboard 109624 unique_id port 109624 terminate_cause User-Request 109624 bytes_out 772844 109624 bytes_in 1646664 109624 station_ip 113.203.10.182 109624 port 15729091 109624 nas_port_type Virtual 109624 remote_ip 5.5.5.118 109626 username kordestani 109626 mac 109626 bytes_out 374034 109626 bytes_in 3823032 109626 station_ip 151.235.95.228 109626 port 12 109626 unique_id port 109626 remote_ip 10.8.1.98 109627 username hashtadani3 109627 mac 109627 bytes_out 0 109627 bytes_in 0 109627 station_ip 5.202.97.140 109627 port 21 109627 unique_id port 109627 remote_ip 10.8.0.154 109630 username malekpoir 109630 mac 109630 bytes_out 0 109630 bytes_in 0 109630 station_ip 5.120.170.159 109630 port 21 109630 unique_id port 109630 remote_ip 10.8.0.58 109633 username hamid 109633 kill_reason Another user logged on this global unique id 109633 mac 109633 bytes_out 0 109633 bytes_in 0 109633 station_ip 113.203.95.29 109633 port 42 109633 unique_id port 109636 username ahmadipour 109636 unique_id port 109636 terminate_cause Lost-Carrier 109636 bytes_out 6920987 109636 bytes_in 1680281 109636 station_ip 37.129.213.91 109636 port 15729092 109636 nas_port_type Virtual 109636 remote_ip 5.5.5.119 109648 username asma2026 109648 mac 109648 bytes_out 0 109648 bytes_in 0 109648 station_ip 37.129.23.201 109648 port 24 109648 unique_id port 109648 remote_ip 10.8.0.170 109649 username mohammadmahdi 109649 mac 109649 bytes_out 0 109649 bytes_in 0 109649 station_ip 5.119.156.110 109649 port 24 109649 unique_id port 109649 remote_ip 10.8.0.54 109661 username tahmasebi 109661 kill_reason Another user logged on this global unique id 109661 mac 109661 bytes_out 0 109603 kill_reason Maximum number of concurrent logins reached 109603 unique_id port 109603 bytes_out 0 109603 bytes_in 0 109603 station_ip 37.27.7.108 109603 port 15729089 109603 nas_port_type Virtual 109607 username hamid.e 109607 unique_id port 109607 terminate_cause Lost-Carrier 109607 bytes_out 609273 109607 bytes_in 1939991 109607 station_ip 37.27.27.151 109607 port 15729087 109607 nas_port_type Virtual 109607 remote_ip 5.5.5.115 109610 username hashtadani3 109610 mac 109610 bytes_out 0 109610 bytes_in 0 109610 station_ip 5.202.97.140 109610 port 44 109610 unique_id port 109610 remote_ip 10.8.0.154 109612 username abravesh 109612 unique_id port 109612 terminate_cause Lost-Carrier 109612 bytes_out 2171104 109612 bytes_in 59412424 109612 station_ip 5.119.74.194 109612 port 15729086 109612 nas_port_type Virtual 109612 remote_ip 5.5.5.113 109614 username hashtadani3 109614 mac 109614 bytes_out 0 109614 bytes_in 0 109614 station_ip 5.202.97.140 109614 port 21 109614 unique_id port 109614 remote_ip 10.8.0.154 109616 username alihosseini1 109616 mac 109616 bytes_out 13145 109616 bytes_in 18274 109616 station_ip 5.120.93.213 109616 port 41 109616 unique_id port 109616 remote_ip 10.8.0.166 109617 username hamid 109617 kill_reason Another user logged on this global unique id 109617 mac 109617 bytes_out 0 109617 bytes_in 0 109617 station_ip 113.203.95.29 109617 port 42 109617 unique_id port 109617 remote_ip 10.8.0.106 109621 username hashtadani3 109621 mac 109621 bytes_out 0 109621 bytes_in 0 109621 station_ip 5.202.97.140 109621 port 21 109621 unique_id port 109621 remote_ip 10.8.0.154 109622 username hashtadani3 109622 mac 109622 bytes_out 0 109622 bytes_in 0 109622 station_ip 5.202.97.140 109622 port 21 109622 unique_id port 109622 remote_ip 10.8.0.154 109628 username malekpoir 109628 mac 109628 bytes_out 0 109628 bytes_in 0 109628 station_ip 5.120.170.159 109628 port 24 109628 unique_id port 109628 remote_ip 10.8.0.58 109631 username hashtadani3 109631 mac 109631 bytes_out 0 109631 bytes_in 0 109631 station_ip 5.202.97.140 109631 port 21 109631 unique_id port 109631 remote_ip 10.8.0.154 109632 username hashtadani3 109632 mac 109632 bytes_out 0 109632 bytes_in 0 109632 station_ip 5.202.97.140 109632 port 41 109632 unique_id port 109632 remote_ip 10.8.0.154 109634 username hamid 109634 mac 109634 bytes_out 0 109634 bytes_in 0 109634 station_ip 113.203.95.29 109634 port 42 109634 unique_id port 109635 username arman1 109635 mac 109635 bytes_out 0 109635 bytes_in 0 109635 station_ip 5.119.104.230 109635 port 21 109635 unique_id port 109635 remote_ip 10.8.0.110 109642 username ahmadi 109642 unique_id port 109642 terminate_cause User-Request 109642 bytes_out 103587 109642 bytes_in 934503 109642 station_ip 83.123.143.73 109642 port 15729096 109642 nas_port_type Virtual 109642 remote_ip 5.5.5.73 109643 username asma2026 109643 mac 109643 bytes_out 0 109643 bytes_in 0 109643 station_ip 37.129.23.201 109643 port 42 109643 unique_id port 109643 remote_ip 10.8.0.170 109647 username mirzaei 109647 kill_reason Another user logged on this global unique id 109647 mac 109647 bytes_out 0 109647 bytes_in 0 109647 station_ip 5.120.106.181 109647 port 36 109647 unique_id port 109651 username asma2026 109651 kill_reason Maximum check online fails reached 109651 mac 109651 bytes_out 0 109651 bytes_in 0 109651 station_ip 37.129.23.201 109651 port 42 109651 unique_id port 109654 username asma2026 109654 mac 109654 bytes_out 0 109654 bytes_in 0 109654 station_ip 37.129.23.201 109644 username alipour 109644 mac 109644 bytes_out 0 109644 bytes_in 0 109644 station_ip 83.122.58.136 109644 port 32 109644 unique_id port 109644 remote_ip 10.8.0.102 109645 username hashtadani3 109645 mac 109645 bytes_out 0 109645 bytes_in 0 109645 station_ip 5.202.97.140 109645 port 24 109645 unique_id port 109645 remote_ip 10.8.0.154 109646 username asma2026 109646 mac 109646 bytes_out 4265 109646 bytes_in 6603 109646 station_ip 37.129.23.201 109646 port 42 109646 unique_id port 109646 remote_ip 10.8.0.170 109650 username hashtadani3 109650 mac 109650 bytes_out 0 109650 bytes_in 0 109650 station_ip 5.202.97.140 109650 port 32 109650 unique_id port 109650 remote_ip 10.8.0.154 109652 username hashtadani3 109652 mac 109652 bytes_out 0 109652 bytes_in 0 109652 station_ip 5.202.97.140 109652 port 24 109652 unique_id port 109652 remote_ip 10.8.0.154 109653 username hashtadani3 109653 mac 109653 bytes_out 0 109653 bytes_in 0 109653 station_ip 5.202.97.140 109653 port 44 109653 unique_id port 109653 remote_ip 10.8.0.154 109655 username asma2026 109655 kill_reason Maximum check online fails reached 109655 mac 109655 bytes_out 0 109655 bytes_in 0 109655 station_ip 37.129.23.201 109655 port 24 109655 unique_id port 109656 username forozande 109656 mac 109656 bytes_out 100741 109656 bytes_in 165995 109656 station_ip 83.122.18.232 109656 port 44 109656 unique_id port 109656 remote_ip 10.8.0.74 109658 username asma2026 109658 mac 109658 bytes_out 0 109658 bytes_in 0 109658 station_ip 37.129.23.201 109658 port 44 109658 unique_id port 109658 remote_ip 10.8.0.170 109659 username asma2026 109659 mac 109659 bytes_out 0 109659 bytes_in 0 109659 station_ip 37.129.23.201 109659 port 44 109659 unique_id port 109659 remote_ip 10.8.0.170 109671 username asma2026 109671 mac 109671 bytes_out 0 109671 bytes_in 0 109671 station_ip 37.129.23.201 109671 port 45 109671 unique_id port 109671 remote_ip 10.8.0.170 109672 username amirabbas 109672 unique_id port 109672 terminate_cause User-Request 109672 bytes_out 46788062 109672 bytes_in 1270149954 109672 station_ip 37.27.22.40 109672 port 15729093 109672 nas_port_type Virtual 109672 remote_ip 5.5.5.64 109673 username asma2026 109673 mac 109673 bytes_out 0 109673 bytes_in 0 109673 station_ip 37.129.23.201 109673 port 45 109673 unique_id port 109673 remote_ip 10.8.0.170 109678 username hashtadani3 109678 mac 109678 bytes_out 5399388 109678 bytes_in 45784522 109678 station_ip 5.202.97.140 109678 port 44 109678 unique_id port 109678 remote_ip 10.8.0.154 109682 username asma2026 109682 mac 109682 bytes_out 0 109682 bytes_in 0 109682 station_ip 37.129.23.201 109682 port 32 109682 unique_id port 109682 remote_ip 10.8.0.170 109684 username forozande 109684 mac 109684 bytes_out 2861148 109684 bytes_in 42432663 109684 station_ip 83.122.18.232 109684 port 46 109684 unique_id port 109684 remote_ip 10.8.0.74 109687 username asma2026 109687 mac 109687 bytes_out 0 109687 bytes_in 0 109687 station_ip 37.129.23.201 109687 port 46 109687 unique_id port 109687 remote_ip 10.8.0.170 109690 username farhad1 109690 kill_reason Another user logged on this global unique id 109690 mac 109690 bytes_out 0 109690 bytes_in 0 109690 station_ip 5.120.88.23 109690 port 38 109690 unique_id port 109693 username forozande 109693 mac 109693 bytes_out 514709 109693 bytes_in 4665986 109693 station_ip 37.129.4.6 109693 port 46 109693 unique_id port 109693 remote_ip 10.8.0.74 109694 username asma2026 109654 port 45 109654 unique_id port 109654 remote_ip 10.8.0.170 109657 username asma2026 109657 mac 109657 bytes_out 0 109657 bytes_in 0 109657 station_ip 37.129.23.201 109657 port 45 109657 unique_id port 109657 remote_ip 10.8.0.170 109660 username asma2026 109660 mac 109660 bytes_out 0 109660 bytes_in 0 109660 station_ip 37.129.23.201 109660 port 44 109660 unique_id port 109660 remote_ip 10.8.0.170 109662 username asma2026 109662 mac 109662 bytes_out 0 109662 bytes_in 0 109662 station_ip 37.129.23.201 109662 port 44 109662 unique_id port 109662 remote_ip 10.8.0.170 109663 username asma2026 109663 mac 109663 bytes_out 0 109663 bytes_in 0 109663 station_ip 37.129.23.201 109663 port 44 109663 unique_id port 109663 remote_ip 10.8.0.170 109667 username arman1 109667 kill_reason Another user logged on this global unique id 109667 mac 109667 bytes_out 0 109667 bytes_in 0 109667 station_ip 5.120.127.51 109667 port 41 109667 unique_id port 109667 remote_ip 10.8.0.110 109669 username hashtadani3 109669 mac 109669 bytes_out 0 109669 bytes_in 0 109669 station_ip 5.202.97.140 109669 port 44 109669 unique_id port 109669 remote_ip 10.8.0.154 109670 username bcboard 109670 unique_id port 109670 terminate_cause Lost-Carrier 109670 bytes_out 10569892 109670 bytes_in 7552212 109670 station_ip 113.203.10.182 109670 port 15729095 109670 nas_port_type Virtual 109670 remote_ip 5.5.5.70 109675 username sedighe 109675 mac 109675 bytes_out 45892 109675 bytes_in 64936 109675 station_ip 37.129.229.120 109675 port 12 109675 unique_id port 109675 remote_ip 10.8.1.78 109677 username mahdixz 109677 unique_id port 109677 terminate_cause User-Request 109677 bytes_out 4070926 109677 bytes_in 61335761 109677 station_ip 151.235.70.107 109677 port 15729097 109677 nas_port_type Virtual 109677 remote_ip 5.5.5.74 109681 username malekpoir 109681 mac 109681 bytes_out 1442754 109681 bytes_in 15047310 109681 station_ip 5.120.170.159 109681 port 32 109681 unique_id port 109681 remote_ip 10.8.0.58 109685 username mehdizare 109685 mac 109685 bytes_out 600855 109685 bytes_in 1623499 109685 station_ip 5.120.166.206 109685 port 26 109685 unique_id port 109685 remote_ip 10.8.0.90 109686 username alirr 109686 unique_id port 109686 terminate_cause Lost-Carrier 109686 bytes_out 25959199 109686 bytes_in 584170314 109686 station_ip 86.57.20.197 109686 port 15729081 109686 nas_port_type Virtual 109686 remote_ip 5.5.5.105 109688 username arman1 109688 kill_reason Another user logged on this global unique id 109688 mac 109688 bytes_out 0 109688 bytes_in 0 109688 station_ip 5.120.127.51 109688 port 41 109688 unique_id port 109691 username hashtadani3 109691 mac 109691 bytes_out 0 109691 bytes_in 0 109691 station_ip 5.202.97.140 109691 port 44 109691 unique_id port 109691 remote_ip 10.8.0.154 109696 username arman1 109696 kill_reason Another user logged on this global unique id 109696 mac 109696 bytes_out 0 109696 bytes_in 0 109696 station_ip 5.120.127.51 109696 port 41 109696 unique_id port 109699 username hashtadani3 109699 mac 109699 bytes_out 2263556 109699 bytes_in 26370826 109699 station_ip 5.202.97.140 109699 port 44 109699 unique_id port 109699 remote_ip 10.8.0.154 109702 username asma2026 109702 kill_reason Another user logged on this global unique id 109702 mac 109702 bytes_out 0 109702 bytes_in 0 109702 station_ip 37.129.23.201 109702 port 46 109702 unique_id port 109702 remote_ip 10.8.0.170 109703 username hashtadani3 109703 mac 109703 bytes_out 0 109703 bytes_in 0 109703 station_ip 5.202.97.140 109703 port 44 109661 bytes_in 0 109661 station_ip 5.120.176.53 109661 port 34 109661 unique_id port 109664 username sedighe 109664 mac 109664 bytes_out 0 109664 bytes_in 0 109664 station_ip 37.129.229.120 109664 port 12 109664 unique_id port 109664 remote_ip 10.8.1.78 109665 username hashtadani3 109665 mac 109665 bytes_out 0 109665 bytes_in 0 109665 station_ip 5.202.97.140 109665 port 44 109665 unique_id port 109665 remote_ip 10.8.0.154 109666 username asma2026 109666 mac 109666 bytes_out 0 109666 bytes_in 0 109666 station_ip 37.129.23.201 109666 port 44 109666 unique_id port 109666 remote_ip 10.8.0.170 109668 username farhad1 109668 kill_reason Another user logged on this global unique id 109668 mac 109668 bytes_out 0 109668 bytes_in 0 109668 station_ip 5.120.88.23 109668 port 38 109668 unique_id port 109668 remote_ip 10.8.0.26 109674 username asma2026 109674 mac 109674 bytes_out 0 109674 bytes_in 0 109674 station_ip 37.129.23.201 109674 port 45 109674 unique_id port 109674 remote_ip 10.8.0.170 109676 username asma2026 109676 mac 109676 bytes_out 0 109676 bytes_in 0 109676 station_ip 37.129.23.201 109676 port 45 109676 unique_id port 109676 remote_ip 10.8.0.170 109679 username kordestani 109679 mac 109679 bytes_out 0 109679 bytes_in 0 109679 station_ip 151.235.95.228 109679 port 13 109679 unique_id port 109679 remote_ip 10.8.1.98 109680 username sedighe 109680 mac 109680 bytes_out 36937 109680 bytes_in 69757 109680 station_ip 37.129.175.229 109680 port 14 109680 unique_id port 109680 remote_ip 10.8.1.78 109683 username arabpour 109683 unique_id port 109683 terminate_cause User-Request 109683 bytes_out 215965 109683 bytes_in 904219 109683 station_ip 83.122.57.244 109683 port 15729099 109683 nas_port_type Virtual 109683 remote_ip 5.5.5.78 109689 username hashtadani3 109689 mac 109689 bytes_out 4678532 109689 bytes_in 40242563 109689 station_ip 5.202.97.140 109689 port 44 109689 unique_id port 109689 remote_ip 10.8.0.154 109692 username asma2026 109692 mac 109692 bytes_out 0 109692 bytes_in 0 109692 station_ip 37.129.23.201 109692 port 44 109692 unique_id port 109692 remote_ip 10.8.0.170 109695 username asma2026 109695 mac 109695 bytes_out 0 109695 bytes_in 0 109695 station_ip 37.129.23.201 109695 port 46 109695 unique_id port 109695 remote_ip 10.8.0.170 109697 username tahmasebi 109697 kill_reason Another user logged on this global unique id 109697 mac 109697 bytes_out 0 109697 bytes_in 0 109697 station_ip 5.120.176.53 109697 port 34 109697 unique_id port 109698 username alireza 109698 unique_id port 109698 terminate_cause User-Request 109698 bytes_out 4646608 109698 bytes_in 64363580 109698 station_ip 5.119.181.10 109698 port 15729094 109698 nas_port_type Virtual 109698 remote_ip 5.5.5.65 109704 username hashtadani3 109704 mac 109704 bytes_out 0 109704 bytes_in 0 109704 station_ip 5.202.97.140 109704 port 13 109704 unique_id port 109704 remote_ip 10.8.1.94 109705 username alihosseini1 109705 mac 109705 bytes_out 3106195 109705 bytes_in 35924895 109705 station_ip 5.119.237.203 109705 port 26 109705 unique_id port 109705 remote_ip 10.8.0.166 109707 username tahmasebi 109707 kill_reason Another user logged on this global unique id 109707 mac 109707 bytes_out 0 109707 bytes_in 0 109707 station_ip 5.120.176.53 109707 port 34 109707 unique_id port 109708 username mehdizare 109708 mac 109708 bytes_out 35115 109708 bytes_in 60205 109708 station_ip 5.120.166.206 109708 port 32 109708 unique_id port 109708 remote_ip 10.8.0.90 109710 username alihosseini1 109694 mac 109694 bytes_out 0 109694 bytes_in 0 109694 station_ip 37.129.23.201 109694 port 46 109694 unique_id port 109694 remote_ip 10.8.0.170 109700 username tahmasebi 109700 kill_reason Another user logged on this global unique id 109700 mac 109700 bytes_out 0 109700 bytes_in 0 109700 station_ip 5.120.176.53 109700 port 34 109700 unique_id port 109701 username hashtadani3 109701 mac 109701 bytes_out 0 109701 bytes_in 0 109701 station_ip 5.202.97.140 109701 port 44 109701 unique_id port 109701 remote_ip 10.8.0.154 109711 username asma2026 109711 kill_reason Another user logged on this global unique id 109711 mac 109711 bytes_out 0 109711 bytes_in 0 109711 station_ip 37.129.23.201 109711 port 46 109711 unique_id port 109718 username asma2026 109718 kill_reason Another user logged on this global unique id 109718 mac 109718 bytes_out 0 109718 bytes_in 0 109718 station_ip 37.129.23.201 109718 port 46 109718 unique_id port 109719 username hashtadani3 109719 mac 109719 bytes_out 0 109719 bytes_in 0 109719 station_ip 83.122.33.102 109719 port 47 109719 unique_id port 109719 remote_ip 10.8.0.154 109720 username hoorieh 109720 kill_reason Another user logged on this global unique id 109720 mac 109720 bytes_out 0 109720 bytes_in 0 109720 station_ip 5.119.39.11 109720 port 44 109720 unique_id port 109720 remote_ip 10.8.0.38 109722 username hashtadani3 109722 mac 109722 bytes_out 0 109722 bytes_in 0 109722 station_ip 83.122.33.102 109722 port 47 109722 unique_id port 109722 remote_ip 10.8.0.154 109724 username asma2026 109724 kill_reason Another user logged on this global unique id 109724 mac 109724 bytes_out 0 109724 bytes_in 0 109724 station_ip 37.129.23.201 109724 port 46 109724 unique_id port 109738 username hashtadani3 109738 mac 109738 bytes_out 0 109738 bytes_in 0 109738 station_ip 83.122.33.102 109738 port 26 109738 unique_id port 109738 remote_ip 10.8.0.154 109741 username avaanna 109741 mac 109741 bytes_out 0 109741 bytes_in 0 109741 station_ip 83.122.38.154 109741 port 21 109741 unique_id port 109741 remote_ip 10.8.0.98 109742 username hashtadani3 109742 mac 109742 bytes_out 0 109742 bytes_in 0 109742 station_ip 83.122.33.102 109742 port 21 109742 unique_id port 109742 remote_ip 10.8.0.154 109744 username mamal 109744 unique_id port 109744 terminate_cause Lost-Carrier 109744 bytes_out 6185380 109744 bytes_in 196986216 109744 station_ip 37.129.190.44 109744 port 15729101 109744 nas_port_type Virtual 109744 remote_ip 5.5.5.82 109749 username hashtadani3 109749 mac 109749 bytes_out 0 109749 bytes_in 0 109749 station_ip 83.122.33.102 109749 port 48 109749 unique_id port 109749 remote_ip 10.8.0.154 109753 username ahmadipour 109753 unique_id port 109753 terminate_cause Lost-Carrier 109753 bytes_out 153406 109753 bytes_in 3553292 109753 station_ip 37.129.144.71 109753 port 15729103 109753 nas_port_type Virtual 109753 remote_ip 5.5.5.85 109755 username hashtadani3 109755 mac 109755 bytes_out 0 109755 bytes_in 0 109755 station_ip 83.122.33.102 109755 port 21 109755 unique_id port 109755 remote_ip 10.8.0.154 109756 username hashtadani3 109756 mac 109756 bytes_out 0 109756 bytes_in 0 109756 station_ip 83.122.33.102 109756 port 12 109756 unique_id port 109756 remote_ip 10.8.1.94 109757 username asma2026 109757 kill_reason Another user logged on this global unique id 109757 mac 109757 bytes_out 0 109757 bytes_in 0 109757 station_ip 37.129.23.201 109757 port 46 109757 unique_id port 109760 username rezasekonji 109760 mac 109760 bytes_out 0 109760 bytes_in 0 109703 unique_id port 109703 remote_ip 10.8.0.154 109706 username hashtadani3 109706 mac 109706 bytes_out 0 109706 bytes_in 0 109706 station_ip 5.202.97.140 109706 port 13 109706 unique_id port 109706 remote_ip 10.8.1.94 109709 username hashtadani3 109709 mac 109709 bytes_out 0 109709 bytes_in 0 109709 station_ip 5.202.97.140 109709 port 26 109709 unique_id port 109709 remote_ip 10.8.0.154 109713 username hashtadani3 109713 mac 109713 bytes_out 0 109713 bytes_in 0 109713 station_ip 83.122.33.102 109713 port 32 109713 unique_id port 109713 remote_ip 10.8.0.154 109714 username farhad1 109714 mac 109714 bytes_out 0 109714 bytes_in 0 109714 station_ip 5.120.88.23 109714 port 38 109714 unique_id port 109715 username hashtadani3 109715 mac 109715 bytes_out 0 109715 bytes_in 0 109715 station_ip 83.122.33.102 109715 port 13 109715 unique_id port 109715 remote_ip 10.8.1.94 109716 username hashtadani3 109716 mac 109716 bytes_out 0 109716 bytes_in 0 109716 station_ip 83.122.33.102 109716 port 38 109716 unique_id port 109716 remote_ip 10.8.0.154 109723 username sedighe 109723 mac 109723 bytes_out 0 109723 bytes_in 0 109723 station_ip 37.129.175.229 109723 port 12 109723 unique_id port 109723 remote_ip 10.8.1.78 109727 username arman1 109727 mac 109727 bytes_out 353744 109727 bytes_in 1203171 109727 station_ip 5.120.90.150 109727 port 48 109727 unique_id port 109727 remote_ip 10.8.0.110 109730 username asma2026 109730 kill_reason Another user logged on this global unique id 109730 mac 109730 bytes_out 0 109730 bytes_in 0 109730 station_ip 37.129.23.201 109730 port 46 109730 unique_id port 109732 username hashtadani3 109732 mac 109732 bytes_out 0 109732 bytes_in 0 109732 station_ip 83.122.33.102 109732 port 26 109732 unique_id port 109732 remote_ip 10.8.0.154 109734 username alihosseini1 109734 kill_reason Maximum check online fails reached 109734 mac 109734 bytes_out 0 109734 bytes_in 0 109734 station_ip 5.119.237.203 109734 port 38 109734 unique_id port 109736 username hashtadani3 109736 mac 109736 bytes_out 0 109736 bytes_in 0 109736 station_ip 83.122.33.102 109736 port 26 109736 unique_id port 109736 remote_ip 10.8.0.154 109745 username alihosseini1 109745 mac 109745 bytes_out 265190 109745 bytes_in 997262 109745 station_ip 5.119.237.203 109745 port 12 109745 unique_id port 109745 remote_ip 10.8.1.106 109746 username hashtadani3 109746 mac 109746 bytes_out 0 109746 bytes_in 0 109746 station_ip 83.122.33.102 109746 port 48 109746 unique_id port 109746 remote_ip 10.8.0.154 109754 username hashtadani3 109754 mac 109754 bytes_out 0 109754 bytes_in 0 109754 station_ip 83.122.33.102 109754 port 21 109754 unique_id port 109754 remote_ip 10.8.0.154 109761 username mehdizare 109761 mac 109761 bytes_out 46886 109761 bytes_in 76436 109761 station_ip 5.120.166.206 109761 port 41 109761 unique_id port 109761 remote_ip 10.8.0.90 109763 username hashtadani3 109763 kill_reason Maximum check online fails reached 109763 mac 109763 bytes_out 0 109763 bytes_in 0 109763 station_ip 83.122.33.102 109763 port 21 109763 unique_id port 109764 username hashtadani3 109764 mac 109764 bytes_out 0 109764 bytes_in 0 109764 station_ip 83.122.33.102 109764 port 12 109764 unique_id port 109764 remote_ip 10.8.1.94 109767 username hashtadani3 109767 mac 109767 bytes_out 0 109767 bytes_in 0 109767 station_ip 83.122.33.102 109767 port 48 109767 unique_id port 109767 remote_ip 10.8.0.154 109777 username rezasekonji 109710 mac 109710 bytes_out 29168 109710 bytes_in 81968 109710 station_ip 5.119.237.203 109710 port 44 109710 unique_id port 109710 remote_ip 10.8.0.166 109712 username alihosseini1 109712 mac 109712 bytes_out 0 109712 bytes_in 0 109712 station_ip 5.119.237.203 109712 port 13 109712 unique_id port 109712 remote_ip 10.8.1.106 109717 username asma2026 109717 kill_reason Another user logged on this global unique id 109717 mac 109717 bytes_out 0 109717 bytes_in 0 109717 station_ip 37.129.23.201 109717 port 46 109717 unique_id port 109721 username arman1 109721 mac 109721 bytes_out 0 109721 bytes_in 0 109721 station_ip 5.120.127.51 109721 port 41 109721 unique_id port 109725 username farhad1 109725 mac 109725 bytes_out 1119834 109725 bytes_in 2104985 109725 station_ip 5.119.68.2 109725 port 38 109725 unique_id port 109725 remote_ip 10.8.0.26 109726 username tahmasebi 109726 kill_reason Another user logged on this global unique id 109726 mac 109726 bytes_out 0 109726 bytes_in 0 109726 station_ip 5.120.176.53 109726 port 34 109726 unique_id port 109728 username alihosseini1 109728 mac 109728 bytes_out 0 109728 bytes_in 0 109728 station_ip 5.119.237.203 109728 port 32 109728 unique_id port 109728 remote_ip 10.8.0.166 109729 username mehdizare 109729 mac 109729 bytes_out 0 109729 bytes_in 0 109729 station_ip 5.120.166.206 109729 port 26 109729 unique_id port 109729 remote_ip 10.8.0.90 109731 username mehdizare 109731 mac 109731 bytes_out 6890 109731 bytes_in 13451 109731 station_ip 5.120.166.206 109731 port 26 109731 unique_id port 109731 remote_ip 10.8.0.90 109733 username alireza 109733 unique_id port 109733 terminate_cause User-Request 109733 bytes_out 1993865 109733 bytes_in 35334593 109733 station_ip 5.119.181.10 109733 port 15729100 109733 nas_port_type Virtual 109733 remote_ip 5.5.5.80 109735 username asma2026 109735 kill_reason Another user logged on this global unique id 109735 mac 109735 bytes_out 0 109735 bytes_in 0 109735 station_ip 37.129.23.201 109735 port 46 109735 unique_id port 109737 username hashtadani3 109737 mac 109737 bytes_out 0 109737 bytes_in 0 109737 station_ip 83.122.33.102 109737 port 26 109737 unique_id port 109737 remote_ip 10.8.0.154 109739 username hashtadani3 109739 mac 109739 bytes_out 0 109739 bytes_in 0 109739 station_ip 83.122.33.102 109739 port 26 109739 unique_id port 109739 remote_ip 10.8.0.154 109740 username tahmasebi 109740 kill_reason Another user logged on this global unique id 109740 mac 109740 bytes_out 0 109740 bytes_in 0 109740 station_ip 5.120.176.53 109740 port 34 109740 unique_id port 109743 username hoorieh 109743 mac 109743 bytes_out 0 109743 bytes_in 0 109743 station_ip 5.119.39.11 109743 port 44 109743 unique_id port 109747 username tahmasebi 109747 kill_reason Another user logged on this global unique id 109747 mac 109747 bytes_out 0 109747 bytes_in 0 109747 station_ip 5.120.176.53 109747 port 34 109747 unique_id port 109748 username hashtadani3 109748 mac 109748 bytes_out 0 109748 bytes_in 0 109748 station_ip 83.122.33.102 109748 port 48 109748 unique_id port 109748 remote_ip 10.8.0.154 109750 username rezasekonji 109750 mac 109750 bytes_out 0 109750 bytes_in 0 109750 station_ip 83.122.166.221 109750 port 21 109750 unique_id port 109750 remote_ip 10.8.0.130 109751 username rezasekonji 109751 mac 109751 bytes_out 0 109751 bytes_in 0 109751 station_ip 83.122.166.221 109751 port 21 109751 unique_id port 109751 remote_ip 10.8.0.130 109752 username hashtadani3 109752 mac 109752 bytes_out 0 109752 bytes_in 0 109752 station_ip 83.122.33.102 109752 port 21 109752 unique_id port 109752 remote_ip 10.8.0.154 109758 username rezasekonji 109758 mac 109758 bytes_out 0 109758 bytes_in 0 109758 station_ip 83.122.166.221 109758 port 48 109758 unique_id port 109758 remote_ip 10.8.0.130 109759 username farhad1 109759 mac 109759 bytes_out 2873554 109759 bytes_in 17465503 109759 station_ip 5.120.21.167 109759 port 26 109759 unique_id port 109759 remote_ip 10.8.0.26 109762 username alirr 109762 unique_id port 109762 terminate_cause User-Request 109762 bytes_out 51722 109762 bytes_in 80054 109762 station_ip 83.123.126.160 109762 port 15729104 109762 nas_port_type Virtual 109762 remote_ip 5.5.5.87 109768 username mohammadmahdi 109768 kill_reason Another user logged on this global unique id 109768 mac 109768 bytes_out 0 109768 bytes_in 0 109768 station_ip 5.119.249.19 109768 port 44 109768 unique_id port 109768 remote_ip 10.8.0.54 109769 username alirr 109769 unique_id port 109769 terminate_cause User-Request 109769 bytes_out 49811 109769 bytes_in 72488 109769 station_ip 83.123.126.160 109769 port 15729106 109769 nas_port_type Virtual 109769 remote_ip 5.5.5.89 109770 username tahmasebi 109770 kill_reason Another user logged on this global unique id 109770 mac 109770 bytes_out 0 109770 bytes_in 0 109770 station_ip 5.120.176.53 109770 port 34 109770 unique_id port 109771 username rezasekonji 109771 mac 109771 bytes_out 0 109771 bytes_in 0 109771 station_ip 83.122.166.221 109771 port 48 109771 unique_id port 109771 remote_ip 10.8.0.130 109774 username mohammadmahdi 109774 kill_reason Another user logged on this global unique id 109774 mac 109774 bytes_out 0 109774 bytes_in 0 109774 station_ip 5.119.249.19 109774 port 44 109774 unique_id port 109779 username rezasekonji 109779 mac 109779 bytes_out 0 109779 bytes_in 0 109779 station_ip 83.122.166.221 109779 port 47 109779 unique_id port 109779 remote_ip 10.8.0.130 109781 username hashtadani3 109781 mac 109781 bytes_out 0 109781 bytes_in 0 109781 station_ip 83.122.33.102 109781 port 48 109781 unique_id port 109781 remote_ip 10.8.0.154 109784 username rezasekonji 109784 mac 109784 bytes_out 0 109784 bytes_in 0 109784 station_ip 83.122.166.221 109784 port 48 109784 unique_id port 109784 remote_ip 10.8.0.130 109786 username mahdiyehalizadeh 109786 mac 109786 bytes_out 0 109786 bytes_in 0 109786 station_ip 83.122.7.215 109786 port 47 109786 unique_id port 109786 remote_ip 10.8.0.82 109787 username mohammadmahdi 109787 mac 109787 bytes_out 0 109787 bytes_in 0 109787 station_ip 5.119.249.19 109787 port 44 109787 unique_id port 109796 username hashtadani3 109796 mac 109796 bytes_out 0 109796 bytes_in 0 109796 station_ip 83.122.33.102 109796 port 44 109796 unique_id port 109796 remote_ip 10.8.0.154 109802 username alirr 109802 unique_id port 109802 terminate_cause Lost-Carrier 109802 bytes_out 14715069 109802 bytes_in 310526670 109802 station_ip 86.57.20.197 109802 port 15729102 109802 nas_port_type Virtual 109802 remote_ip 5.5.5.83 109803 username hashtadani3 109803 mac 109803 bytes_out 0 109803 bytes_in 0 109803 station_ip 83.122.33.102 109803 port 44 109803 unique_id port 109803 remote_ip 10.8.0.154 109804 username hashtadani3 109804 mac 109804 bytes_out 0 109804 bytes_in 0 109804 station_ip 83.122.33.102 109804 port 44 109804 unique_id port 109804 remote_ip 10.8.0.154 109807 username rezasekonji 109807 mac 109807 bytes_out 0 109807 bytes_in 0 109807 station_ip 83.122.166.221 109807 port 44 109807 unique_id port 109760 station_ip 83.122.166.221 109760 port 48 109760 unique_id port 109760 remote_ip 10.8.0.130 109765 username hashtadani3 109765 mac 109765 bytes_out 0 109765 bytes_in 0 109765 station_ip 83.122.33.102 109765 port 12 109765 unique_id port 109765 remote_ip 10.8.1.94 109766 username avaanna 109766 mac 109766 bytes_out 2525086 109766 bytes_in 20303962 109766 station_ip 83.122.38.154 109766 port 47 109766 unique_id port 109766 remote_ip 10.8.0.98 109772 username hashtadani3 109772 mac 109772 bytes_out 0 109772 bytes_in 0 109772 station_ip 83.122.33.102 109772 port 47 109772 unique_id port 109772 remote_ip 10.8.0.154 109773 username asma2026 109773 mac 109773 bytes_out 0 109773 bytes_in 0 109773 station_ip 37.129.23.201 109773 port 46 109773 unique_id port 109775 username hashtadani3 109775 mac 109775 bytes_out 0 109775 bytes_in 0 109775 station_ip 83.122.33.102 109775 port 48 109775 unique_id port 109775 remote_ip 10.8.0.154 109776 username asma2026 109776 mac 109776 bytes_out 0 109776 bytes_in 0 109776 station_ip 37.129.23.201 109776 port 48 109776 unique_id port 109776 remote_ip 10.8.0.170 109782 username aminvpn 109782 kill_reason Another user logged on this global unique id 109782 mac 109782 bytes_out 0 109782 bytes_in 0 109782 station_ip 83.122.231.148 109782 port 46 109782 unique_id port 109782 remote_ip 10.8.0.14 109783 username asma2026 109783 mac 109783 bytes_out 971474 109783 bytes_in 13514344 109783 station_ip 37.129.23.201 109783 port 49 109783 unique_id port 109783 remote_ip 10.8.0.170 109791 username rezasekonji 109791 mac 109791 bytes_out 0 109791 bytes_in 0 109791 station_ip 83.122.166.221 109791 port 44 109791 unique_id port 109791 remote_ip 10.8.0.130 109797 username rezasekonji 109797 mac 109797 bytes_out 0 109797 bytes_in 0 109797 station_ip 83.122.166.221 109797 port 47 109797 unique_id port 109797 remote_ip 10.8.0.130 109798 username hashtadani3 109798 mac 109798 bytes_out 0 109798 bytes_in 0 109798 station_ip 83.122.33.102 109798 port 47 109798 unique_id port 109798 remote_ip 10.8.0.154 109805 username mohammadmahdi 109805 mac 109805 bytes_out 769399 109805 bytes_in 10764546 109805 station_ip 5.119.249.19 109805 port 46 109805 unique_id port 109805 remote_ip 10.8.0.54 109809 username hashtadani3 109809 mac 109809 bytes_out 0 109809 bytes_in 0 109809 station_ip 83.122.33.102 109809 port 41 109809 unique_id port 109809 remote_ip 10.8.0.154 109810 username hashtadani3 109810 mac 109810 bytes_out 0 109810 bytes_in 0 109810 station_ip 83.122.33.102 109810 port 41 109810 unique_id port 109810 remote_ip 10.8.0.154 109813 username rezasekonji 109813 mac 109813 bytes_out 0 109813 bytes_in 0 109813 station_ip 83.122.166.221 109813 port 41 109813 unique_id port 109813 remote_ip 10.8.0.130 109815 username hashtadani3 109815 mac 109815 bytes_out 0 109815 bytes_in 0 109815 station_ip 83.122.33.102 109815 port 46 109815 unique_id port 109815 remote_ip 10.8.0.154 109817 username hashtadani3 109817 mac 109817 bytes_out 0 109817 bytes_in 0 109817 station_ip 83.122.33.102 109817 port 46 109817 unique_id port 109817 remote_ip 10.8.0.154 109819 username tahmasebi 109819 kill_reason Another user logged on this global unique id 109819 mac 109819 bytes_out 0 109819 bytes_in 0 109819 station_ip 5.120.176.53 109819 port 34 109819 unique_id port 109820 username hashtadani3 109820 mac 109820 bytes_out 0 109820 bytes_in 0 109820 station_ip 83.122.33.102 109820 port 47 109777 mac 109777 bytes_out 4037 109777 bytes_in 13167 109777 station_ip 83.122.166.221 109777 port 47 109777 unique_id port 109777 remote_ip 10.8.0.130 109778 username hashtadani3 109778 mac 109778 bytes_out 0 109778 bytes_in 0 109778 station_ip 83.122.33.102 109778 port 48 109778 unique_id port 109778 remote_ip 10.8.0.154 109780 username hashtadani3 109780 mac 109780 bytes_out 0 109780 bytes_in 0 109780 station_ip 83.122.33.102 109780 port 47 109780 unique_id port 109780 remote_ip 10.8.0.154 109785 username asma2026 109785 mac 109785 bytes_out 0 109785 bytes_in 0 109785 station_ip 37.129.23.201 109785 port 48 109785 unique_id port 109785 remote_ip 10.8.0.170 109788 username hashtadani3 109788 mac 109788 bytes_out 0 109788 bytes_in 0 109788 station_ip 83.122.33.102 109788 port 47 109788 unique_id port 109788 remote_ip 10.8.0.154 109789 username rezasekonji 109789 mac 109789 bytes_out 1978 109789 bytes_in 3998 109789 station_ip 83.122.166.221 109789 port 44 109789 unique_id port 109789 remote_ip 10.8.0.130 109790 username rezasekonji 109790 mac 109790 bytes_out 0 109790 bytes_in 0 109790 station_ip 83.122.166.221 109790 port 47 109790 unique_id port 109790 remote_ip 10.8.0.130 109792 username aminvpn 109792 mac 109792 bytes_out 0 109792 bytes_in 0 109792 station_ip 83.122.231.148 109792 port 46 109792 unique_id port 109793 username hashtadani3 109793 mac 109793 bytes_out 0 109793 bytes_in 0 109793 station_ip 83.122.33.102 109793 port 44 109793 unique_id port 109793 remote_ip 10.8.0.154 109794 username asma2026 109794 mac 109794 bytes_out 0 109794 bytes_in 0 109794 station_ip 37.129.23.201 109794 port 44 109794 unique_id port 109794 remote_ip 10.8.0.170 109795 username mamal 109795 unique_id port 109795 terminate_cause Lost-Carrier 109795 bytes_out 9952532 109795 bytes_in 317750190 109795 station_ip 37.129.190.44 109795 port 15729105 109795 nas_port_type Virtual 109795 remote_ip 5.5.5.88 109799 username asma2026 109799 mac 109799 bytes_out 626070 109799 bytes_in 9600587 109799 station_ip 37.129.23.201 109799 port 44 109799 unique_id port 109799 remote_ip 10.8.0.170 109800 username asma2026 109800 mac 109800 bytes_out 0 109800 bytes_in 0 109800 station_ip 37.129.23.201 109800 port 44 109800 unique_id port 109800 remote_ip 10.8.0.170 109801 username rezasekonji 109801 mac 109801 bytes_out 0 109801 bytes_in 0 109801 station_ip 83.122.166.221 109801 port 44 109801 unique_id port 109801 remote_ip 10.8.0.130 109806 username hashtadani3 109806 mac 109806 bytes_out 0 109806 bytes_in 0 109806 station_ip 83.122.33.102 109806 port 44 109806 unique_id port 109806 remote_ip 10.8.0.154 109808 username farhad1 109808 mac 109808 bytes_out 4913396 109808 bytes_in 27025453 109808 station_ip 5.119.247.195 109808 port 41 109808 unique_id port 109808 remote_ip 10.8.0.26 109811 username rezasekonji 109811 mac 109811 bytes_out 0 109811 bytes_in 0 109811 station_ip 83.122.166.221 109811 port 44 109811 unique_id port 109811 remote_ip 10.8.0.130 109812 username rezasekonji 109812 mac 109812 bytes_out 0 109812 bytes_in 0 109812 station_ip 83.122.166.221 109812 port 41 109812 unique_id port 109812 remote_ip 10.8.0.130 109814 username hashtadani3 109814 mac 109814 bytes_out 0 109814 bytes_in 0 109814 station_ip 83.122.33.102 109814 port 46 109814 unique_id port 109814 remote_ip 10.8.0.154 109816 username hashtadani3 109816 mac 109816 bytes_out 0 109807 remote_ip 10.8.0.130 109818 username rezasekonji 109818 mac 109818 bytes_out 0 109818 bytes_in 0 109818 station_ip 83.122.166.221 109818 port 46 109818 unique_id port 109818 remote_ip 10.8.0.130 109822 username houshang 109822 mac 109822 bytes_out 23972 109822 bytes_in 52069 109822 station_ip 5.119.105.227 109822 port 46 109822 unique_id port 109822 remote_ip 10.8.0.22 109824 username morteza 109824 kill_reason Another user logged on this global unique id 109824 mac 109824 bytes_out 0 109824 bytes_in 0 109824 station_ip 83.123.225.46 109824 port 41 109824 unique_id port 109824 remote_ip 10.8.0.46 109826 username hashtadani3 109826 mac 109826 bytes_out 0 109826 bytes_in 0 109826 station_ip 83.122.33.102 109826 port 46 109826 unique_id port 109826 remote_ip 10.8.0.154 109828 username hashtadani3 109828 mac 109828 bytes_out 0 109828 bytes_in 0 109828 station_ip 83.122.33.102 109828 port 12 109828 unique_id port 109828 remote_ip 10.8.1.94 109831 username rezasekonji 109831 mac 109831 bytes_out 0 109831 bytes_in 0 109831 station_ip 83.122.166.221 109831 port 46 109831 unique_id port 109831 remote_ip 10.8.0.130 109832 username malekpoir 109832 mac 109832 bytes_out 3563463 109832 bytes_in 29688579 109832 station_ip 5.120.170.159 109832 port 32 109832 unique_id port 109832 remote_ip 10.8.0.58 109834 username hashtadani3 109834 mac 109834 bytes_out 0 109834 bytes_in 0 109834 station_ip 83.122.33.102 109834 port 32 109834 unique_id port 109834 remote_ip 10.8.0.154 109836 username morteza 109836 mac 109836 bytes_out 0 109836 bytes_in 0 109836 station_ip 83.123.225.46 109836 port 46 109836 unique_id port 109836 remote_ip 10.8.0.46 109839 username rezasekonji 109839 mac 109839 bytes_out 0 109839 bytes_in 0 109839 station_ip 83.122.166.221 109839 port 41 109839 unique_id port 109839 remote_ip 10.8.0.130 109841 username aminvpn 109841 unique_id port 109841 terminate_cause User-Request 109841 bytes_out 594696 109841 bytes_in 8691303 109841 station_ip 5.120.65.69 109841 port 15729109 109841 nas_port_type Virtual 109841 remote_ip 5.5.5.95 109843 username aminvpn 109843 unique_id port 109843 terminate_cause User-Request 109843 bytes_out 20112155 109843 bytes_in 387721227 109843 station_ip 151.238.232.130 109843 port 15729107 109843 nas_port_type Virtual 109843 remote_ip 5.5.5.91 109846 username aminvpn 109846 kill_reason Another user logged on this global unique id 109846 mac 109846 bytes_out 0 109846 bytes_in 0 109846 station_ip 5.120.65.69 109846 port 41 109846 unique_id port 109846 remote_ip 10.8.0.14 109849 username aminvpn 109849 mac 109849 bytes_out 0 109849 bytes_in 0 109849 station_ip 5.120.65.69 109849 port 41 109849 unique_id port 109852 username hashtadani3 109852 mac 109852 bytes_out 0 109852 bytes_in 0 109852 station_ip 83.122.33.102 109852 port 32 109852 unique_id port 109852 remote_ip 10.8.0.154 109853 username rezasekonji 109853 mac 109853 bytes_out 0 109853 bytes_in 0 109853 station_ip 83.122.166.221 109853 port 46 109853 unique_id port 109853 remote_ip 10.8.0.130 109856 username rezasekonji 109856 mac 109856 bytes_out 0 109856 bytes_in 0 109856 station_ip 83.122.166.221 109856 port 41 109856 unique_id port 109856 remote_ip 10.8.0.130 109857 username farhad1 109857 kill_reason Another user logged on this global unique id 109857 mac 109857 bytes_out 0 109857 bytes_in 0 109857 station_ip 5.119.247.195 109857 port 44 109857 unique_id port 109859 username asma2026 109859 kill_reason Another user logged on this global unique id 109859 mac 109816 bytes_in 0 109816 station_ip 83.122.33.102 109816 port 46 109816 unique_id port 109816 remote_ip 10.8.0.154 109829 username hashtadani3 109829 mac 109829 bytes_out 0 109829 bytes_in 0 109829 station_ip 83.122.33.102 109829 port 46 109829 unique_id port 109829 remote_ip 10.8.0.154 109833 username mirzaei 109833 kill_reason Another user logged on this global unique id 109833 mac 109833 bytes_out 0 109833 bytes_in 0 109833 station_ip 5.120.106.181 109833 port 36 109833 unique_id port 109835 username morteza 109835 mac 109835 bytes_out 0 109835 bytes_in 0 109835 station_ip 83.123.225.46 109835 port 41 109835 unique_id port 109840 username hashtadani3 109840 mac 109840 bytes_out 1601698 109840 bytes_in 14280697 109840 station_ip 83.122.33.102 109840 port 32 109840 unique_id port 109840 remote_ip 10.8.0.154 109842 username tahmasebi 109842 kill_reason Another user logged on this global unique id 109842 mac 109842 bytes_out 0 109842 bytes_in 0 109842 station_ip 5.120.176.53 109842 port 34 109842 unique_id port 109844 username farhad1 109844 kill_reason Another user logged on this global unique id 109844 mac 109844 bytes_out 0 109844 bytes_in 0 109844 station_ip 5.119.247.195 109844 port 44 109844 unique_id port 109844 remote_ip 10.8.0.26 109845 username rezasekonji 109845 mac 109845 bytes_out 0 109845 bytes_in 0 109845 station_ip 83.122.166.221 109845 port 41 109845 unique_id port 109845 remote_ip 10.8.0.130 109848 username hashtadani3 109848 mac 109848 bytes_out 0 109848 bytes_in 0 109848 station_ip 83.122.33.102 109848 port 32 109848 unique_id port 109848 remote_ip 10.8.0.154 109850 username hashtadani3 109850 mac 109850 bytes_out 844698 109850 bytes_in 13976678 109850 station_ip 83.122.33.102 109850 port 32 109850 unique_id port 109850 remote_ip 10.8.0.154 109854 username tahmasebi 109854 kill_reason Another user logged on this global unique id 109854 mac 109854 bytes_out 0 109854 bytes_in 0 109854 station_ip 5.120.176.53 109854 port 34 109854 unique_id port 109858 username hashtadani3 109858 mac 109858 bytes_out 0 109858 bytes_in 0 109858 station_ip 83.122.33.102 109858 port 41 109858 unique_id port 109858 remote_ip 10.8.0.154 109862 username bcboard 109862 unique_id port 109862 terminate_cause User-Request 109862 bytes_out 4004513 109862 bytes_in 33545546 109862 station_ip 113.203.10.182 109862 port 15729098 109862 nas_port_type Virtual 109862 remote_ip 5.5.5.76 109866 username hashtadani3 109866 mac 109866 bytes_out 0 109866 bytes_in 0 109866 station_ip 83.122.33.102 109866 port 45 109866 unique_id port 109866 remote_ip 10.8.0.154 109869 username hashtadani3 109869 mac 109869 bytes_out 0 109869 bytes_in 0 109869 station_ip 83.122.33.102 109869 port 45 109869 unique_id port 109869 remote_ip 10.8.0.154 109870 username asma2026 109870 kill_reason Another user logged on this global unique id 109870 mac 109870 bytes_out 0 109870 bytes_in 0 109870 station_ip 37.129.23.201 109870 port 32 109870 unique_id port 109872 username asma2026 109872 kill_reason Another user logged on this global unique id 109872 mac 109872 bytes_out 0 109872 bytes_in 0 109872 station_ip 37.129.23.201 109872 port 32 109872 unique_id port 109874 username asma2026 109874 mac 109874 bytes_out 0 109874 bytes_in 0 109874 station_ip 37.129.23.201 109874 port 32 109874 unique_id port 109877 username hashtadani3 109877 mac 109877 bytes_out 0 109877 bytes_in 0 109877 station_ip 83.122.33.102 109877 port 34 109877 unique_id port 109877 remote_ip 10.8.0.154 109879 username hashtadani3 109820 unique_id port 109820 remote_ip 10.8.0.154 109821 username hashtadani3 109821 mac 109821 bytes_out 0 109821 bytes_in 0 109821 station_ip 83.122.33.102 109821 port 47 109821 unique_id port 109821 remote_ip 10.8.0.154 109823 username rezasekonji 109823 mac 109823 bytes_out 1833 109823 bytes_in 3914 109823 station_ip 83.122.166.221 109823 port 46 109823 unique_id port 109823 remote_ip 10.8.0.130 109825 username hashtadani3 109825 mac 109825 bytes_out 0 109825 bytes_in 0 109825 station_ip 83.122.33.102 109825 port 12 109825 unique_id port 109825 remote_ip 10.8.1.94 109827 username hashtadani3 109827 mac 109827 bytes_out 0 109827 bytes_in 0 109827 station_ip 83.122.33.102 109827 port 12 109827 unique_id port 109827 remote_ip 10.8.1.94 109830 username hashtadani3 109830 mac 109830 bytes_out 0 109830 bytes_in 0 109830 station_ip 83.122.33.102 109830 port 46 109830 unique_id port 109830 remote_ip 10.8.0.154 109837 username aminvpn 109837 unique_id port 109837 terminate_cause Lost-Carrier 109837 bytes_out 2675330 109837 bytes_in 37682932 109837 station_ip 5.120.65.69 109837 port 15729108 109837 nas_port_type Virtual 109837 remote_ip 5.5.5.92 109838 username rezasekonji 109838 mac 109838 bytes_out 0 109838 bytes_in 0 109838 station_ip 83.122.166.221 109838 port 41 109838 unique_id port 109838 remote_ip 10.8.0.130 109847 username hashtadani3 109847 mac 109847 bytes_out 1475288 109847 bytes_in 25372999 109847 station_ip 83.122.33.102 109847 port 32 109847 unique_id port 109847 remote_ip 10.8.0.154 109851 username alipour 109851 mac 109851 bytes_out 1156438 109851 bytes_in 8200273 109851 station_ip 37.129.107.159 109851 port 45 109851 unique_id port 109851 remote_ip 10.8.0.102 109855 username mahdiyehalizadeh 109855 mac 109855 bytes_out 2110967 109855 bytes_in 26781531 109855 station_ip 113.203.43.44 109855 port 47 109855 unique_id port 109855 remote_ip 10.8.0.82 109860 username hashtadani3 109860 mac 109860 bytes_out 0 109860 bytes_in 0 109860 station_ip 83.122.33.102 109860 port 45 109860 unique_id port 109860 remote_ip 10.8.0.154 109861 username asma2026 109861 kill_reason Another user logged on this global unique id 109861 mac 109861 bytes_out 0 109861 bytes_in 0 109861 station_ip 37.129.23.201 109861 port 32 109861 unique_id port 109863 username asma2026 109863 kill_reason Another user logged on this global unique id 109863 mac 109863 bytes_out 0 109863 bytes_in 0 109863 station_ip 37.129.23.201 109863 port 32 109863 unique_id port 109868 username asma2026 109868 kill_reason Another user logged on this global unique id 109868 mac 109868 bytes_out 0 109868 bytes_in 0 109868 station_ip 37.129.23.201 109868 port 32 109868 unique_id port 109871 username rezasekonji 109871 mac 109871 bytes_out 0 109871 bytes_in 0 109871 station_ip 83.122.166.221 109871 port 41 109871 unique_id port 109871 remote_ip 10.8.0.130 109884 username kordestani 109884 mac 109884 bytes_out 0 109884 bytes_in 0 109884 station_ip 151.235.74.32 109884 port 12 109884 unique_id port 109884 remote_ip 10.8.1.98 109885 username mirzaei 109885 kill_reason Another user logged on this global unique id 109885 mac 109885 bytes_out 0 109885 bytes_in 0 109885 station_ip 5.120.106.181 109885 port 36 109885 unique_id port 109886 username hashtadani3 109886 mac 109886 bytes_out 0 109886 bytes_in 0 109886 station_ip 83.122.33.102 109886 port 46 109886 unique_id port 109886 remote_ip 10.8.0.154 109892 username rajaei 109892 mac 109892 bytes_out 0 109892 bytes_in 0 109859 bytes_out 0 109859 bytes_in 0 109859 station_ip 37.129.23.201 109859 port 32 109859 unique_id port 109859 remote_ip 10.8.0.170 109864 username hashtadani3 109864 mac 109864 bytes_out 0 109864 bytes_in 0 109864 station_ip 83.122.33.102 109864 port 45 109864 unique_id port 109864 remote_ip 10.8.0.154 109865 username hashtadani3 109865 mac 109865 bytes_out 0 109865 bytes_in 0 109865 station_ip 83.122.33.102 109865 port 12 109865 unique_id port 109865 remote_ip 10.8.1.94 109867 username tahmasebi 109867 kill_reason Another user logged on this global unique id 109867 mac 109867 bytes_out 0 109867 bytes_in 0 109867 station_ip 5.120.176.53 109867 port 34 109867 unique_id port 109873 username hashtadani3 109873 mac 109873 bytes_out 0 109873 bytes_in 0 109873 station_ip 83.122.33.102 109873 port 41 109873 unique_id port 109873 remote_ip 10.8.0.154 109875 username tahmasebi 109875 mac 109875 bytes_out 0 109875 bytes_in 0 109875 station_ip 5.120.176.53 109875 port 34 109875 unique_id port 109876 username ahmadipour 109876 unique_id port 109876 terminate_cause Lost-Carrier 109876 bytes_out 48063 109876 bytes_in 142883 109876 station_ip 37.129.139.79 109876 port 15729111 109876 nas_port_type Virtual 109876 remote_ip 5.5.5.106 109878 username rajaei 109878 mac 109878 bytes_out 0 109878 bytes_in 0 109878 station_ip 37.153.185.189 109878 port 41 109878 unique_id port 109878 remote_ip 10.8.0.34 109880 username hashtadani3 109880 mac 109880 bytes_out 0 109880 bytes_in 0 109880 station_ip 83.122.33.102 109880 port 34 109880 unique_id port 109880 remote_ip 10.8.0.154 109881 username farhad1 109881 kill_reason Another user logged on this global unique id 109881 mac 109881 bytes_out 0 109881 bytes_in 0 109881 station_ip 5.119.247.195 109881 port 44 109881 unique_id port 109888 username hashtadani3 109888 mac 109888 bytes_out 0 109888 bytes_in 0 109888 station_ip 83.122.33.102 109888 port 47 109888 unique_id port 109888 remote_ip 10.8.0.154 109901 username zare 109901 kill_reason Another user logged on this global unique id 109901 mac 109901 bytes_out 0 109901 bytes_in 0 109901 station_ip 37.27.48.235 109901 port 45 109901 unique_id port 109904 username zare 109904 kill_reason Another user logged on this global unique id 109904 mac 109904 bytes_out 0 109904 bytes_in 0 109904 station_ip 37.27.48.235 109904 port 45 109904 unique_id port 109905 username hashtadani3 109905 mac 109905 bytes_out 0 109905 bytes_in 0 109905 station_ip 83.122.33.102 109905 port 46 109905 unique_id port 109905 remote_ip 10.8.0.154 109910 username hashtadani3 109910 mac 109910 bytes_out 0 109910 bytes_in 0 109910 station_ip 83.122.33.102 109910 port 12 109910 unique_id port 109910 remote_ip 10.8.1.94 109913 username alirr 109913 unique_id port 109913 terminate_cause User-Request 109913 bytes_out 23588869 109913 bytes_in 505218670 109913 station_ip 86.57.20.197 109913 port 15729112 109913 nas_port_type Virtual 109913 remote_ip 5.5.5.255 109916 username hashtadani3 109916 mac 109916 bytes_out 0 109916 bytes_in 0 109916 station_ip 83.122.33.102 109916 port 46 109916 unique_id port 109916 remote_ip 10.8.0.154 109919 username rajaei 109919 mac 109919 bytes_out 1131833 109919 bytes_in 2970148 109919 station_ip 37.156.53.112 109919 port 41 109919 unique_id port 109919 remote_ip 10.8.0.34 109922 username hashtadani3 109922 mac 109922 bytes_out 0 109922 bytes_in 0 109922 station_ip 83.122.33.102 109922 port 41 109922 unique_id port 109922 remote_ip 10.8.0.154 109924 username zare 109879 mac 109879 bytes_out 0 109879 bytes_in 0 109879 station_ip 83.122.33.102 109879 port 34 109879 unique_id port 109879 remote_ip 10.8.0.154 109882 username hashtadani3 109882 mac 109882 bytes_out 0 109882 bytes_in 0 109882 station_ip 83.122.33.102 109882 port 41 109882 unique_id port 109882 remote_ip 10.8.0.154 109883 username mehdizare 109883 kill_reason Another user logged on this global unique id 109883 mac 109883 bytes_out 0 109883 bytes_in 0 109883 station_ip 5.120.166.206 109883 port 26 109883 unique_id port 109883 remote_ip 10.8.0.90 109887 username farhad1 109887 kill_reason Another user logged on this global unique id 109887 mac 109887 bytes_out 0 109887 bytes_in 0 109887 station_ip 5.119.247.195 109887 port 44 109887 unique_id port 109889 username hashtadani3 109889 mac 109889 bytes_out 0 109889 bytes_in 0 109889 station_ip 83.122.33.102 109889 port 47 109889 unique_id port 109889 remote_ip 10.8.0.154 109890 username kordestani 109890 kill_reason Another user logged on this global unique id 109890 mac 109890 bytes_out 0 109890 bytes_in 0 109890 station_ip 151.235.74.32 109890 port 41 109890 unique_id port 109890 remote_ip 10.8.0.134 109891 username zare 109891 kill_reason Another user logged on this global unique id 109891 mac 109891 bytes_out 0 109891 bytes_in 0 109891 station_ip 37.27.48.235 109891 port 45 109891 unique_id port 109891 remote_ip 10.8.0.18 109893 username tahmasebi 109893 kill_reason Another user logged on this global unique id 109893 mac 109893 bytes_out 0 109893 bytes_in 0 109893 station_ip 5.120.176.53 109893 port 32 109893 unique_id port 109893 remote_ip 10.8.0.42 109896 username zare 109896 kill_reason Another user logged on this global unique id 109896 mac 109896 bytes_out 0 109896 bytes_in 0 109896 station_ip 37.27.48.235 109896 port 45 109896 unique_id port 109897 username kordestani 109897 mac 109897 bytes_out 0 109897 bytes_in 0 109897 station_ip 151.235.74.32 109897 port 41 109897 unique_id port 109899 username hashtadani3 109899 mac 109899 bytes_out 0 109899 bytes_in 0 109899 station_ip 83.122.33.102 109899 port 12 109899 unique_id port 109899 remote_ip 10.8.1.94 109902 username hashtadani3 109902 mac 109902 bytes_out 0 109902 bytes_in 0 109902 station_ip 83.122.33.102 109902 port 41 109902 unique_id port 109902 remote_ip 10.8.0.154 109906 username tahmasebi 109906 kill_reason Another user logged on this global unique id 109906 mac 109906 bytes_out 0 109906 bytes_in 0 109906 station_ip 5.120.176.53 109906 port 32 109906 unique_id port 109908 username hashtadani3 109908 mac 109908 bytes_out 0 109908 bytes_in 0 109908 station_ip 83.122.33.102 109908 port 41 109908 unique_id port 109908 remote_ip 10.8.0.154 109911 username hashtadani3 109911 mac 109911 bytes_out 0 109911 bytes_in 0 109911 station_ip 83.122.33.102 109911 port 41 109911 unique_id port 109911 remote_ip 10.8.0.154 109917 username hashtadani3 109917 mac 109917 bytes_out 0 109917 bytes_in 0 109917 station_ip 83.122.33.102 109917 port 46 109917 unique_id port 109917 remote_ip 10.8.0.154 109920 username hashtadani3 109920 mac 109920 bytes_out 0 109920 bytes_in 0 109920 station_ip 83.122.33.102 109920 port 41 109920 unique_id port 109920 remote_ip 10.8.0.154 109926 username hashtadani3 109926 mac 109926 bytes_out 0 109926 bytes_in 0 109926 station_ip 83.122.33.102 109926 port 12 109926 unique_id port 109926 remote_ip 10.8.1.94 109927 username hashtadani3 109927 mac 109927 bytes_out 0 109927 bytes_in 0 109927 station_ip 83.122.33.102 109927 port 41 109892 station_ip 37.153.185.189 109892 port 46 109892 unique_id port 109892 remote_ip 10.8.0.34 109894 username farhad1 109894 kill_reason Another user logged on this global unique id 109894 mac 109894 bytes_out 0 109894 bytes_in 0 109894 station_ip 5.119.247.195 109894 port 44 109894 unique_id port 109895 username hashtadani3 109895 mac 109895 bytes_out 0 109895 bytes_in 0 109895 station_ip 83.122.33.102 109895 port 46 109895 unique_id port 109895 remote_ip 10.8.0.154 109898 username zare 109898 kill_reason Another user logged on this global unique id 109898 mac 109898 bytes_out 0 109898 bytes_in 0 109898 station_ip 37.27.48.235 109898 port 45 109898 unique_id port 109900 username hashtadani3 109900 mac 109900 bytes_out 0 109900 bytes_in 0 109900 station_ip 83.122.33.102 109900 port 41 109900 unique_id port 109900 remote_ip 10.8.0.154 109903 username zare 109903 kill_reason Another user logged on this global unique id 109903 mac 109903 bytes_out 0 109903 bytes_in 0 109903 station_ip 37.27.48.235 109903 port 45 109903 unique_id port 109907 username rajaei 109907 mac 109907 bytes_out 0 109907 bytes_in 0 109907 station_ip 37.153.185.189 109907 port 41 109907 unique_id port 109907 remote_ip 10.8.0.34 109909 username hashtadani3 109909 mac 109909 bytes_out 0 109909 bytes_in 0 109909 station_ip 83.122.33.102 109909 port 41 109909 unique_id port 109909 remote_ip 10.8.0.154 109912 username farhad1 109912 kill_reason Another user logged on this global unique id 109912 mac 109912 bytes_out 0 109912 bytes_in 0 109912 station_ip 5.119.247.195 109912 port 44 109912 unique_id port 109914 username hashtadani3 109914 mac 109914 bytes_out 0 109914 bytes_in 0 109914 station_ip 83.122.33.102 109914 port 41 109914 unique_id port 109914 remote_ip 10.8.0.154 109915 username mirzaei 109915 kill_reason Another user logged on this global unique id 109915 mac 109915 bytes_out 0 109915 bytes_in 0 109915 station_ip 5.120.106.181 109915 port 36 109915 unique_id port 109918 username hashtadani3 109918 mac 109918 bytes_out 0 109918 bytes_in 0 109918 station_ip 83.122.33.102 109918 port 46 109918 unique_id port 109918 remote_ip 10.8.0.154 109921 username aminvpn 109921 mac 109921 bytes_out 0 109921 bytes_in 0 109921 station_ip 83.122.73.234 109921 port 34 109921 unique_id port 109921 remote_ip 10.8.0.14 109923 username farhad1 109923 kill_reason Another user logged on this global unique id 109923 mac 109923 bytes_out 0 109923 bytes_in 0 109923 station_ip 5.119.247.195 109923 port 44 109923 unique_id port 109928 username rajaei 109928 mac 109928 bytes_out 1745953 109928 bytes_in 26877706 109928 station_ip 92.114.77.217 109928 port 34 109928 unique_id port 109928 remote_ip 10.8.0.34 109930 username hashtadani3 109930 mac 109930 bytes_out 0 109930 bytes_in 0 109930 station_ip 83.122.33.102 109930 port 34 109930 unique_id port 109930 remote_ip 10.8.0.154 109936 username hashtadani3 109936 mac 109936 bytes_out 0 109936 bytes_in 0 109936 station_ip 83.122.33.102 109936 port 34 109936 unique_id port 109936 remote_ip 10.8.0.154 109937 username hashtadani3 109937 mac 109937 bytes_out 0 109937 bytes_in 0 109937 station_ip 83.122.33.102 109937 port 41 109937 unique_id port 109937 remote_ip 10.8.0.154 109939 username hashtadani3 109939 mac 109939 bytes_out 0 109939 bytes_in 0 109939 station_ip 83.122.33.102 109939 port 41 109939 unique_id port 109939 remote_ip 10.8.0.154 109940 username tahmasebi 109940 kill_reason Another user logged on this global unique id 109940 mac 109924 kill_reason Another user logged on this global unique id 109924 mac 109924 bytes_out 0 109924 bytes_in 0 109924 station_ip 37.27.48.235 109924 port 45 109924 unique_id port 109925 username hashtadani3 109925 mac 109925 bytes_out 0 109925 bytes_in 0 109925 station_ip 83.122.33.102 109925 port 41 109925 unique_id port 109925 remote_ip 10.8.0.154 109933 username farhad1 109933 kill_reason Another user logged on this global unique id 109933 mac 109933 bytes_out 0 109933 bytes_in 0 109933 station_ip 5.119.247.195 109933 port 44 109933 unique_id port 109934 username hashtadani3 109934 mac 109934 bytes_out 0 109934 bytes_in 0 109934 station_ip 83.122.33.102 109934 port 34 109934 unique_id port 109934 remote_ip 10.8.0.154 109935 username tahmasebi 109935 kill_reason Another user logged on this global unique id 109935 mac 109935 bytes_out 0 109935 bytes_in 0 109935 station_ip 5.120.176.53 109935 port 32 109935 unique_id port 109938 username naeimeh 109938 mac 109938 bytes_out 0 109938 bytes_in 0 109938 station_ip 37.129.6.84 109938 port 46 109938 unique_id port 109941 username hashtadani3 109941 mac 109941 bytes_out 0 109941 bytes_in 0 109941 station_ip 83.122.33.102 109941 port 46 109941 unique_id port 109941 remote_ip 10.8.0.154 109943 username hashtadani3 109943 mac 109943 bytes_out 0 109943 bytes_in 0 109943 station_ip 83.122.33.102 109943 port 44 109943 unique_id port 109943 remote_ip 10.8.0.154 109945 username aminvpn 109945 mac 109945 bytes_out 409271 109945 bytes_in 4044992 109945 station_ip 83.122.92.126 109945 port 34 109945 unique_id port 109945 remote_ip 10.8.0.14 109948 username mehdizare 109948 kill_reason Maximum check online fails reached 109948 mac 109948 bytes_out 0 109948 bytes_in 0 109948 station_ip 5.120.166.206 109948 port 26 109948 unique_id port 109954 username hashtadani3 109954 mac 109954 bytes_out 0 109954 bytes_in 0 109954 station_ip 83.122.33.102 109954 port 34 109954 unique_id port 109954 remote_ip 10.8.0.154 109957 username hashtadani3 109957 mac 109957 bytes_out 0 109957 bytes_in 0 109957 station_ip 83.122.33.102 109957 port 34 109957 unique_id port 109957 remote_ip 10.8.0.154 109961 username zare 109961 kill_reason Another user logged on this global unique id 109961 mac 109961 bytes_out 0 109961 bytes_in 0 109961 station_ip 37.27.48.235 109961 port 45 109961 unique_id port 109963 username hashtadani3 109963 mac 109963 bytes_out 0 109963 bytes_in 0 109963 station_ip 83.122.33.102 109963 port 34 109963 unique_id port 109963 remote_ip 10.8.0.154 109968 username zare 109968 kill_reason Another user logged on this global unique id 109968 mac 109968 bytes_out 0 109968 bytes_in 0 109968 station_ip 37.27.48.235 109968 port 45 109968 unique_id port 109972 username tahmasebi 109972 kill_reason Another user logged on this global unique id 109972 mac 109972 bytes_out 0 109972 bytes_in 0 109972 station_ip 5.120.176.53 109972 port 32 109972 unique_id port 109973 username zare 109973 kill_reason Another user logged on this global unique id 109973 mac 109973 bytes_out 0 109973 bytes_in 0 109973 station_ip 37.27.48.235 109973 port 45 109973 unique_id port 109974 username hashtadani3 109974 mac 109974 bytes_out 0 109974 bytes_in 0 109974 station_ip 83.122.33.102 109974 port 26 109974 unique_id port 109974 remote_ip 10.8.0.154 109980 username zare 109980 kill_reason Another user logged on this global unique id 109980 mac 109980 bytes_out 0 109980 bytes_in 0 109980 station_ip 37.27.48.235 109980 port 45 109980 unique_id port 109983 username zare 109927 unique_id port 109927 remote_ip 10.8.0.154 109929 username hashtadani3 109929 mac 109929 bytes_out 0 109929 bytes_in 0 109929 station_ip 83.122.33.102 109929 port 34 109929 unique_id port 109929 remote_ip 10.8.0.154 109931 username naeimeh 109931 kill_reason Another user logged on this global unique id 109931 mac 109931 bytes_out 0 109931 bytes_in 0 109931 station_ip 37.129.6.84 109931 port 46 109931 unique_id port 109931 remote_ip 10.8.0.78 109932 username hashtadani3 109932 mac 109932 bytes_out 0 109932 bytes_in 0 109932 station_ip 83.122.33.102 109932 port 34 109932 unique_id port 109932 remote_ip 10.8.0.154 109944 username hashtadani3 109944 mac 109944 bytes_out 0 109944 bytes_in 0 109944 station_ip 83.122.33.102 109944 port 44 109944 unique_id port 109944 remote_ip 10.8.0.154 109946 username naeimeh 109946 mac 109946 bytes_out 1468667 109946 bytes_in 10474385 109946 station_ip 37.129.85.124 109946 port 41 109946 unique_id port 109946 remote_ip 10.8.0.78 109947 username tahmasebi 109947 kill_reason Maximum check online fails reached 109947 mac 109947 bytes_out 0 109947 bytes_in 0 109947 station_ip 5.120.176.53 109947 port 32 109947 unique_id port 109949 username hashtadani3 109949 mac 109949 bytes_out 0 109949 bytes_in 0 109949 station_ip 83.122.33.102 109949 port 34 109949 unique_id port 109949 remote_ip 10.8.0.154 109952 username hashtadani3 109952 mac 109952 bytes_out 0 109952 bytes_in 0 109952 station_ip 83.122.33.102 109952 port 34 109952 unique_id port 109952 remote_ip 10.8.0.154 109958 username zare 109958 kill_reason Another user logged on this global unique id 109958 mac 109958 bytes_out 0 109958 bytes_in 0 109958 station_ip 37.27.48.235 109958 port 45 109958 unique_id port 109959 username tahmasebi 109959 kill_reason Another user logged on this global unique id 109959 mac 109959 bytes_out 0 109959 bytes_in 0 109959 station_ip 5.120.176.53 109959 port 32 109959 unique_id port 109964 username mirzaei 109964 mac 109964 bytes_out 0 109964 bytes_in 0 109964 station_ip 5.120.106.181 109964 port 36 109964 unique_id port 109966 username zare 109966 kill_reason Another user logged on this global unique id 109966 mac 109966 bytes_out 0 109966 bytes_in 0 109966 station_ip 37.27.48.235 109966 port 45 109966 unique_id port 109971 username zare 109971 kill_reason Another user logged on this global unique id 109971 mac 109971 bytes_out 0 109971 bytes_in 0 109971 station_ip 37.27.48.235 109971 port 45 109971 unique_id port 109978 username zare 109978 kill_reason Another user logged on this global unique id 109978 mac 109978 bytes_out 0 109978 bytes_in 0 109978 station_ip 37.27.48.235 109978 port 45 109978 unique_id port 109981 username zare 109981 kill_reason Another user logged on this global unique id 109981 mac 109981 bytes_out 0 109981 bytes_in 0 109981 station_ip 37.27.48.235 109981 port 45 109981 unique_id port 109984 username tahmasebi 109984 kill_reason Another user logged on this global unique id 109984 mac 109984 bytes_out 0 109984 bytes_in 0 109984 station_ip 5.120.176.53 109984 port 32 109984 unique_id port 109985 username zare 109985 kill_reason Another user logged on this global unique id 109985 mac 109985 bytes_out 0 109985 bytes_in 0 109985 station_ip 37.27.48.235 109985 port 45 109985 unique_id port 109993 mac 109993 bytes_out 0 109993 bytes_in 0 109993 station_ip 83.122.33.102 109993 port 26 109993 unique_id port 109993 remote_ip 10.8.0.154 109996 username hashtadani3 109996 mac 109996 bytes_out 0 109996 bytes_in 0 109996 station_ip 83.122.33.102 109996 port 26 109940 bytes_out 0 109940 bytes_in 0 109940 station_ip 5.120.176.53 109940 port 32 109940 unique_id port 109942 username farhad1 109942 mac 109942 bytes_out 0 109942 bytes_in 0 109942 station_ip 5.119.247.195 109942 port 44 109942 unique_id port 109950 username hashtadani3 109950 mac 109950 bytes_out 0 109950 bytes_in 0 109950 station_ip 83.122.33.102 109950 port 34 109950 unique_id port 109950 remote_ip 10.8.0.154 109951 username hashtadani3 109951 mac 109951 bytes_out 0 109951 bytes_in 0 109951 station_ip 83.122.33.102 109951 port 34 109951 unique_id port 109951 remote_ip 10.8.0.154 109953 username zare 109953 kill_reason Another user logged on this global unique id 109953 mac 109953 bytes_out 0 109953 bytes_in 0 109953 station_ip 37.27.48.235 109953 port 45 109953 unique_id port 109955 username tahmasebi 109955 kill_reason Another user logged on this global unique id 109955 mac 109955 bytes_out 0 109955 bytes_in 0 109955 station_ip 5.120.176.53 109955 port 32 109955 unique_id port 109956 username hashtadani3 109956 mac 109956 bytes_out 0 109956 bytes_in 0 109956 station_ip 83.122.33.102 109956 port 34 109956 unique_id port 109956 remote_ip 10.8.0.154 109960 username hashtadani3 109960 mac 109960 bytes_out 2217 109960 bytes_in 4600 109960 station_ip 83.122.33.102 109960 port 34 109960 unique_id port 109960 remote_ip 10.8.0.154 109962 username zare 109962 kill_reason Another user logged on this global unique id 109962 mac 109962 bytes_out 0 109962 bytes_in 0 109962 station_ip 37.27.48.235 109962 port 45 109962 unique_id port 109965 username zare 109965 kill_reason Another user logged on this global unique id 109965 mac 109965 bytes_out 0 109965 bytes_in 0 109965 station_ip 37.27.48.235 109965 port 45 109965 unique_id port 109967 username hashtadani3 109967 mac 109967 bytes_out 0 109967 bytes_in 0 109967 station_ip 83.122.33.102 109967 port 34 109967 unique_id port 109967 remote_ip 10.8.0.154 109969 username zare 109969 kill_reason Another user logged on this global unique id 109969 mac 109969 bytes_out 0 109969 bytes_in 0 109969 station_ip 37.27.48.235 109969 port 45 109969 unique_id port 109970 username hashtadani3 109970 mac 109970 bytes_out 0 109970 bytes_in 0 109970 station_ip 83.122.33.102 109970 port 26 109970 unique_id port 109970 remote_ip 10.8.0.154 109975 username zare 109975 kill_reason Another user logged on this global unique id 109975 mac 109975 bytes_out 0 109975 bytes_in 0 109975 station_ip 37.27.48.235 109975 port 45 109975 unique_id port 109976 username hashtadani3 109976 mac 109976 bytes_out 0 109976 bytes_in 0 109976 station_ip 83.122.33.102 109976 port 26 109976 unique_id port 109976 remote_ip 10.8.0.154 109977 username zare 109977 kill_reason Another user logged on this global unique id 109977 mac 109977 bytes_out 0 109977 bytes_in 0 109977 station_ip 37.27.48.235 109977 port 45 109977 unique_id port 109979 username hashtadani3 109979 mac 109979 bytes_out 0 109979 bytes_in 0 109979 station_ip 83.122.33.102 109979 port 26 109979 unique_id port 109979 remote_ip 10.8.0.154 109982 username hashtadani3 109982 mac 109982 bytes_out 0 109982 bytes_in 0 109982 station_ip 83.122.33.102 109982 port 26 109982 unique_id port 109982 remote_ip 10.8.0.154 109986 username hashtadani3 109986 mac 109986 bytes_out 0 109986 bytes_in 0 109986 station_ip 83.122.33.102 109986 port 26 109986 unique_id port 109986 remote_ip 10.8.0.154 109988 username zare 109988 kill_reason Another user logged on this global unique id 109988 mac 109988 bytes_out 0 109983 kill_reason Another user logged on this global unique id 109983 mac 109983 bytes_out 0 109983 bytes_in 0 109983 station_ip 37.27.48.235 109983 port 45 109983 unique_id port 109987 username zare 109987 kill_reason Another user logged on this global unique id 109987 mac 109987 bytes_out 0 109987 bytes_in 0 109987 station_ip 37.27.48.235 109987 port 45 109987 unique_id port 109989 username zare 109989 kill_reason Another user logged on this global unique id 109989 mac 109989 bytes_out 0 109989 bytes_in 0 109989 station_ip 37.27.48.235 109989 port 45 109989 unique_id port 109990 username hashtadani3 109990 mac 109990 bytes_out 0 109990 bytes_in 0 109990 station_ip 83.122.33.102 109990 port 26 109990 unique_id port 109990 remote_ip 10.8.0.154 109992 username zare 109992 kill_reason Another user logged on this global unique id 109992 mac 109992 bytes_out 0 109992 bytes_in 0 109992 station_ip 37.27.48.235 109992 port 45 109992 unique_id port 109994 username tahmasebi 109994 kill_reason Another user logged on this global unique id 109994 mac 109994 bytes_out 0 109994 bytes_in 0 109994 station_ip 5.120.176.53 109994 port 32 109994 unique_id port 109997 username zare 109997 mac 109997 bytes_out 0 109997 bytes_in 0 109997 station_ip 37.27.48.235 109997 port 45 109997 unique_id port 109998 username hashtadani3 109998 mac 109998 bytes_out 0 109998 bytes_in 0 109998 station_ip 83.122.33.102 109998 port 34 109998 unique_id port 109998 remote_ip 10.8.0.154 110000 username tahmasebi 110000 kill_reason Another user logged on this global unique id 110000 mac 110000 bytes_out 0 110000 bytes_in 0 110000 station_ip 5.120.176.53 110000 port 32 110000 unique_id port 110008 username hashtadani3 110008 mac 110008 bytes_out 0 110008 bytes_in 0 110008 station_ip 83.122.33.102 110008 port 34 110008 unique_id port 110008 remote_ip 10.8.0.154 110009 username hashtadani3 110009 mac 110009 bytes_out 0 110009 bytes_in 0 110009 station_ip 83.122.33.102 110009 port 34 110009 unique_id port 110009 remote_ip 10.8.0.154 110012 username hashtadani3 110012 mac 110012 bytes_out 0 110012 bytes_in 0 110012 station_ip 83.122.33.102 110012 port 34 110012 unique_id port 110012 remote_ip 10.8.0.154 110013 username hashtadani3 110013 mac 110013 bytes_out 0 110013 bytes_in 0 110013 station_ip 83.122.33.102 110013 port 14 110013 unique_id port 110013 remote_ip 10.8.1.94 110015 username tahmasebi 110015 kill_reason Another user logged on this global unique id 110015 mac 110015 bytes_out 0 110015 bytes_in 0 110015 station_ip 5.120.176.53 110015 port 32 110015 unique_id port 110017 username hashtadani3 110017 mac 110017 bytes_out 0 110017 bytes_in 0 110017 station_ip 83.122.33.102 110017 port 34 110017 unique_id port 110017 remote_ip 10.8.0.154 110020 username hashtadani3 110020 mac 110020 bytes_out 0 110020 bytes_in 0 110020 station_ip 83.122.33.102 110020 port 34 110020 unique_id port 110020 remote_ip 10.8.0.154 110030 username zare 110030 mac 110030 bytes_out 0 110030 bytes_in 0 110030 station_ip 37.27.48.235 110030 port 34 110030 unique_id port 110030 remote_ip 10.8.0.18 110031 username zare 110031 mac 110031 bytes_out 0 110031 bytes_in 0 110031 station_ip 37.27.48.235 110031 port 34 110031 unique_id port 110031 remote_ip 10.8.0.18 110032 username tahmasebi 110032 kill_reason Another user logged on this global unique id 110032 mac 110032 bytes_out 0 110032 bytes_in 0 110032 station_ip 5.120.176.53 110032 port 32 110032 unique_id port 110036 username zare 110036 mac 109988 bytes_in 0 109988 station_ip 37.27.48.235 109988 port 45 109988 unique_id port 109991 username zare 109991 kill_reason Another user logged on this global unique id 109991 mac 109991 bytes_out 0 109991 bytes_in 0 109991 station_ip 37.27.48.235 109991 port 45 109991 unique_id port 109995 username zare 109995 kill_reason Another user logged on this global unique id 109995 mac 109995 bytes_out 0 109995 bytes_in 0 109995 station_ip 37.27.48.235 109995 port 45 109995 unique_id port 110004 username hashtadani3 110004 kill_reason Maximum check online fails reached 110004 mac 110004 bytes_out 0 110004 bytes_in 0 110004 station_ip 83.122.33.102 110004 port 13 110004 unique_id port 110005 username hashtadani3 110005 mac 110005 bytes_out 0 110005 bytes_in 0 110005 station_ip 83.122.33.102 110005 port 34 110005 unique_id port 110005 remote_ip 10.8.0.154 110006 username hashtadani3 110006 mac 110006 bytes_out 0 110006 bytes_in 0 110006 station_ip 83.122.33.102 110006 port 34 110006 unique_id port 110006 remote_ip 10.8.0.154 110011 username hashtadani3 110011 mac 110011 bytes_out 0 110011 bytes_in 0 110011 station_ip 83.122.33.102 110011 port 34 110011 unique_id port 110011 remote_ip 10.8.0.154 110016 username tahmasebi 110016 kill_reason Maximum check online fails reached 110016 mac 110016 bytes_out 0 110016 bytes_in 0 110016 station_ip 5.120.176.53 110016 port 32 110016 unique_id port 110025 username tahmasebi 110025 kill_reason Another user logged on this global unique id 110025 mac 110025 bytes_out 0 110025 bytes_in 0 110025 station_ip 5.120.176.53 110025 port 32 110025 unique_id port 110026 username aminvpn 110026 mac 110026 bytes_out 0 110026 bytes_in 0 110026 station_ip 5.233.59.241 110026 port 36 110026 unique_id port 110026 remote_ip 10.8.0.14 110027 username hashtadani3 110027 mac 110027 bytes_out 0 110027 bytes_in 0 110027 station_ip 83.122.33.102 110027 port 36 110027 unique_id port 110027 remote_ip 10.8.0.154 110029 username zare 110029 mac 110029 bytes_out 0 110029 bytes_in 0 110029 station_ip 37.27.48.235 110029 port 34 110029 unique_id port 110029 remote_ip 10.8.0.18 110037 username tahmasebi 110037 kill_reason Another user logged on this global unique id 110037 mac 110037 bytes_out 0 110037 bytes_in 0 110037 station_ip 5.120.176.53 110037 port 32 110037 unique_id port 110039 username hashtadani3 110039 mac 110039 bytes_out 0 110039 bytes_in 0 110039 station_ip 83.122.33.102 110039 port 34 110039 unique_id port 110039 remote_ip 10.8.0.154 110040 username zare 110040 mac 110040 bytes_out 0 110040 bytes_in 0 110040 station_ip 37.27.48.235 110040 port 34 110040 unique_id port 110040 remote_ip 10.8.0.18 110041 username zare 110041 mac 110041 bytes_out 0 110041 bytes_in 0 110041 station_ip 37.27.48.235 110041 port 34 110041 unique_id port 110041 remote_ip 10.8.0.18 110046 username hashtadani3 110046 mac 110046 bytes_out 0 110046 bytes_in 0 110046 station_ip 83.122.33.102 110046 port 34 110046 unique_id port 110046 remote_ip 10.8.0.154 110048 username tahmasebi 110048 kill_reason Another user logged on this global unique id 110048 mac 110048 bytes_out 0 110048 bytes_in 0 110048 station_ip 5.120.176.53 110048 port 32 110048 unique_id port 110050 username zare 110050 mac 110050 bytes_out 0 110050 bytes_in 0 110050 station_ip 37.27.48.235 110050 port 14 110050 unique_id port 110050 remote_ip 10.8.1.58 110051 username hashtadani3 110051 mac 110051 bytes_out 0 110051 bytes_in 0 110051 station_ip 83.122.33.102 110051 port 14 109996 unique_id port 109996 remote_ip 10.8.0.154 109999 username hashtadani3 109999 mac 109999 bytes_out 26894 109999 bytes_in 119115 109999 station_ip 83.122.33.102 109999 port 13 109999 unique_id port 109999 remote_ip 10.8.1.94 110001 username hashtadani3 110001 mac 110001 bytes_out 0 110001 bytes_in 0 110001 station_ip 83.122.33.102 110001 port 13 110001 unique_id port 110001 remote_ip 10.8.1.94 110002 username hashtadani3 110002 mac 110002 bytes_out 0 110002 bytes_in 0 110002 station_ip 83.122.33.102 110002 port 34 110002 unique_id port 110002 remote_ip 10.8.0.154 110003 username hashtadani3 110003 mac 110003 bytes_out 0 110003 bytes_in 0 110003 station_ip 83.122.33.102 110003 port 34 110003 unique_id port 110003 remote_ip 10.8.0.154 110007 username hashtadani3 110007 mac 110007 bytes_out 0 110007 bytes_in 0 110007 station_ip 83.122.33.102 110007 port 34 110007 unique_id port 110007 remote_ip 10.8.0.154 110010 username hashtadani3 110010 mac 110010 bytes_out 0 110010 bytes_in 0 110010 station_ip 83.122.33.102 110010 port 34 110010 unique_id port 110010 remote_ip 10.8.0.154 110014 username hashtadani3 110014 mac 110014 bytes_out 0 110014 bytes_in 0 110014 station_ip 83.122.33.102 110014 port 34 110014 unique_id port 110014 remote_ip 10.8.0.154 110018 username hashtadani3 110018 mac 110018 bytes_out 0 110018 bytes_in 0 110018 station_ip 83.122.33.102 110018 port 14 110018 unique_id port 110018 remote_ip 10.8.1.94 110019 username hashtadani3 110019 mac 110019 bytes_out 0 110019 bytes_in 0 110019 station_ip 83.122.33.102 110019 port 34 110019 unique_id port 110019 remote_ip 10.8.0.154 110021 username zare 110021 mac 110021 bytes_out 0 110021 bytes_in 0 110021 station_ip 37.27.48.235 110021 port 26 110021 unique_id port 110021 remote_ip 10.8.0.18 110022 username hashtadani3 110022 mac 110022 bytes_out 0 110022 bytes_in 0 110022 station_ip 83.122.33.102 110022 port 36 110022 unique_id port 110022 remote_ip 10.8.0.154 110023 username hashtadani3 110023 mac 110023 bytes_out 0 110023 bytes_in 0 110023 station_ip 83.122.33.102 110023 port 36 110023 unique_id port 110023 remote_ip 10.8.0.154 110024 username hashtadani3 110024 mac 110024 bytes_out 0 110024 bytes_in 0 110024 station_ip 83.122.33.102 110024 port 41 110024 unique_id port 110024 remote_ip 10.8.0.154 110028 username tahmasebi 110028 kill_reason Another user logged on this global unique id 110028 mac 110028 bytes_out 0 110028 bytes_in 0 110028 station_ip 5.120.176.53 110028 port 32 110028 unique_id port 110033 username zare 110033 mac 110033 bytes_out 0 110033 bytes_in 0 110033 station_ip 37.27.48.235 110033 port 14 110033 unique_id port 110033 remote_ip 10.8.1.58 110034 username zare 110034 mac 110034 bytes_out 0 110034 bytes_in 0 110034 station_ip 37.27.48.235 110034 port 34 110034 unique_id port 110034 remote_ip 10.8.0.18 110035 username zare 110035 mac 110035 bytes_out 0 110035 bytes_in 0 110035 station_ip 37.27.48.235 110035 port 34 110035 unique_id port 110035 remote_ip 10.8.0.18 110038 username hashtadani3 110038 mac 110038 bytes_out 0 110038 bytes_in 0 110038 station_ip 83.122.33.102 110038 port 14 110038 unique_id port 110038 remote_ip 10.8.1.94 110044 username hashtadani3 110044 mac 110044 bytes_out 0 110044 bytes_in 0 110044 station_ip 83.122.33.102 110044 port 34 110044 unique_id port 110044 remote_ip 10.8.0.154 110045 username hashtadani3 110045 mac 110036 bytes_out 0 110036 bytes_in 0 110036 station_ip 37.27.48.235 110036 port 34 110036 unique_id port 110036 remote_ip 10.8.0.18 110042 username tahmasebi 110042 kill_reason Another user logged on this global unique id 110042 mac 110042 bytes_out 0 110042 bytes_in 0 110042 station_ip 5.120.176.53 110042 port 32 110042 unique_id port 110043 username zare 110043 mac 110043 bytes_out 0 110043 bytes_in 0 110043 station_ip 37.27.48.235 110043 port 34 110043 unique_id port 110043 remote_ip 10.8.0.18 110047 username hashtadani3 110047 mac 110047 bytes_out 0 110047 bytes_in 0 110047 station_ip 83.122.33.102 110047 port 34 110047 unique_id port 110047 remote_ip 10.8.0.154 110052 username hashtadani3 110052 mac 110052 bytes_out 0 110052 bytes_in 0 110052 station_ip 83.122.33.102 110052 port 34 110052 unique_id port 110052 remote_ip 10.8.0.154 110056 username hashtadani3 110056 mac 110056 bytes_out 0 110056 bytes_in 0 110056 station_ip 83.122.33.102 110056 port 36 110056 unique_id port 110056 remote_ip 10.8.0.154 110058 username sedighe 110058 mac 110058 bytes_out 0 110058 bytes_in 0 110058 station_ip 37.129.64.88 110058 port 34 110058 unique_id port 110058 remote_ip 10.8.0.146 110062 username hashtadani3 110062 mac 110062 bytes_out 0 110062 bytes_in 0 110062 station_ip 83.122.33.102 110062 port 14 110062 unique_id port 110062 remote_ip 10.8.1.94 110064 username hashtadani3 110064 mac 110064 bytes_out 0 110064 bytes_in 0 110064 station_ip 83.122.33.102 110064 port 34 110064 unique_id port 110064 remote_ip 10.8.0.154 110065 username hashtadani3 110065 mac 110065 bytes_out 0 110065 bytes_in 0 110065 station_ip 83.122.33.102 110065 port 14 110065 unique_id port 110065 remote_ip 10.8.1.94 110070 username asma2026 110070 kill_reason Another user logged on this global unique id 110070 mac 110070 bytes_out 0 110070 bytes_in 0 110070 station_ip 37.129.117.205 110070 port 36 110070 unique_id port 110070 remote_ip 10.8.0.170 110072 username asma2026 110072 kill_reason Another user logged on this global unique id 110072 mac 110072 bytes_out 0 110072 bytes_in 0 110072 station_ip 37.129.117.205 110072 port 36 110072 unique_id port 110073 username mohammadjavad 110073 mac 110073 bytes_out 522081 110073 bytes_in 2782687 110073 station_ip 113.203.108.141 110073 port 34 110073 unique_id port 110073 remote_ip 10.8.0.142 110075 username asma2026 110075 kill_reason Another user logged on this global unique id 110075 mac 110075 bytes_out 0 110075 bytes_in 0 110075 station_ip 37.129.117.205 110075 port 36 110075 unique_id port 110080 username asma2026 110080 kill_reason Another user logged on this global unique id 110080 mac 110080 bytes_out 0 110080 bytes_in 0 110080 station_ip 37.129.117.205 110080 port 36 110080 unique_id port 110082 username hashtadani3 110082 mac 110082 bytes_out 0 110082 bytes_in 0 110082 station_ip 83.122.33.102 110082 port 34 110082 unique_id port 110082 remote_ip 10.8.0.154 110088 username hashtadani3 110088 mac 110088 bytes_out 0 110088 bytes_in 0 110088 station_ip 83.122.33.102 110088 port 36 110088 unique_id port 110088 remote_ip 10.8.0.154 110090 username asma2026 110090 mac 110090 bytes_out 0 110090 bytes_in 0 110090 station_ip 37.129.117.205 110090 port 34 110090 unique_id port 110092 username tahmasebi 110092 kill_reason Maximum check online fails reached 110092 mac 110092 bytes_out 0 110092 bytes_in 0 110092 station_ip 5.120.176.53 110092 port 32 110092 unique_id port 110095 username hashtadani3 110095 mac 110045 bytes_out 0 110045 bytes_in 0 110045 station_ip 83.122.33.102 110045 port 34 110045 unique_id port 110045 remote_ip 10.8.0.154 110049 username hashtadani3 110049 mac 110049 bytes_out 0 110049 bytes_in 0 110049 station_ip 83.122.33.102 110049 port 34 110049 unique_id port 110049 remote_ip 10.8.0.154 110053 username hashtadani3 110053 mac 110053 bytes_out 0 110053 bytes_in 0 110053 station_ip 83.122.33.102 110053 port 34 110053 unique_id port 110053 remote_ip 10.8.0.154 110063 username hashtadani3 110063 mac 110063 bytes_out 0 110063 bytes_in 0 110063 station_ip 83.122.33.102 110063 port 34 110063 unique_id port 110063 remote_ip 10.8.0.154 110066 username hashtadani3 110066 mac 110066 bytes_out 0 110066 bytes_in 0 110066 station_ip 83.122.33.102 110066 port 34 110066 unique_id port 110066 remote_ip 10.8.0.154 110069 username hashtadani3 110069 mac 110069 bytes_out 0 110069 bytes_in 0 110069 station_ip 83.122.33.102 110069 port 36 110069 unique_id port 110069 remote_ip 10.8.0.154 110077 username hashtadani3 110077 mac 110077 bytes_out 0 110077 bytes_in 0 110077 station_ip 83.122.33.102 110077 port 34 110077 unique_id port 110077 remote_ip 10.8.0.154 110078 username hashtadani3 110078 mac 110078 bytes_out 0 110078 bytes_in 0 110078 station_ip 83.122.33.102 110078 port 14 110078 unique_id port 110078 remote_ip 10.8.1.94 110083 username asma2026 110083 kill_reason Another user logged on this global unique id 110083 mac 110083 bytes_out 0 110083 bytes_in 0 110083 station_ip 37.129.117.205 110083 port 36 110083 unique_id port 110084 username asma2026 110084 mac 110084 bytes_out 0 110084 bytes_in 0 110084 station_ip 37.129.117.205 110084 port 36 110084 unique_id port 110087 username hashtadani3 110087 mac 110087 bytes_out 0 110087 bytes_in 0 110087 station_ip 83.122.33.102 110087 port 41 110087 unique_id port 110087 remote_ip 10.8.0.154 110089 username asma2026 110089 kill_reason Another user logged on this global unique id 110089 mac 110089 bytes_out 0 110089 bytes_in 0 110089 station_ip 37.129.117.205 110089 port 34 110089 unique_id port 110089 remote_ip 10.8.0.170 110091 username hashtadani3 110091 mac 110091 bytes_out 0 110091 bytes_in 0 110091 station_ip 83.122.33.102 110091 port 34 110091 unique_id port 110091 remote_ip 10.8.0.154 110093 username hashtadani3 110093 mac 110093 bytes_out 0 110093 bytes_in 0 110093 station_ip 83.122.33.102 110093 port 14 110093 unique_id port 110093 remote_ip 10.8.1.94 110097 username hashtadani3 110097 mac 110097 bytes_out 0 110097 bytes_in 0 110097 station_ip 83.122.33.102 110097 port 34 110097 unique_id port 110097 remote_ip 10.8.0.154 110099 username forozande 110099 kill_reason Another user logged on this global unique id 110099 mac 110099 bytes_out 0 110099 bytes_in 0 110099 station_ip 83.122.171.254 110099 port 36 110099 unique_id port 110099 remote_ip 10.8.0.74 110100 username hashtadani3 110100 mac 110100 bytes_out 0 110100 bytes_in 0 110100 station_ip 83.122.33.102 110100 port 34 110100 unique_id port 110100 remote_ip 10.8.0.154 110103 username forozande 110103 kill_reason Another user logged on this global unique id 110103 mac 110103 bytes_out 0 110103 bytes_in 0 110103 station_ip 83.122.171.254 110103 port 36 110103 unique_id port 110107 username hashtadani3 110107 mac 110107 bytes_out 0 110107 bytes_in 0 110107 station_ip 83.122.33.102 110107 port 34 110107 unique_id port 110107 remote_ip 10.8.0.154 110112 username hashtadani3 110112 mac 110051 unique_id port 110051 remote_ip 10.8.1.94 110054 username tahmasebi 110054 kill_reason Another user logged on this global unique id 110054 mac 110054 bytes_out 0 110054 bytes_in 0 110054 station_ip 5.120.176.53 110054 port 32 110054 unique_id port 110055 username hashtadani3 110055 mac 110055 bytes_out 0 110055 bytes_in 0 110055 station_ip 83.122.33.102 110055 port 14 110055 unique_id port 110055 remote_ip 10.8.1.94 110057 username hashtadani3 110057 mac 110057 bytes_out 0 110057 bytes_in 0 110057 station_ip 83.122.33.102 110057 port 36 110057 unique_id port 110057 remote_ip 10.8.0.154 110059 username hashtadani3 110059 mac 110059 bytes_out 0 110059 bytes_in 0 110059 station_ip 83.122.33.102 110059 port 34 110059 unique_id port 110059 remote_ip 10.8.0.154 110060 username hashtadani3 110060 mac 110060 bytes_out 0 110060 bytes_in 0 110060 station_ip 83.122.33.102 110060 port 34 110060 unique_id port 110060 remote_ip 10.8.0.154 110061 username hashtadani3 110061 mac 110061 bytes_out 0 110061 bytes_in 0 110061 station_ip 83.122.33.102 110061 port 34 110061 unique_id port 110061 remote_ip 10.8.0.154 110067 username hashtadani3 110067 mac 110067 bytes_out 0 110067 bytes_in 0 110067 station_ip 83.122.33.102 110067 port 34 110067 unique_id port 110067 remote_ip 10.8.0.154 110068 username hashtadani3 110068 mac 110068 bytes_out 0 110068 bytes_in 0 110068 station_ip 83.122.33.102 110068 port 36 110068 unique_id port 110068 remote_ip 10.8.0.154 110071 username hashtadani3 110071 mac 110071 bytes_out 0 110071 bytes_in 0 110071 station_ip 83.122.33.102 110071 port 41 110071 unique_id port 110071 remote_ip 10.8.0.154 110074 username asma2026 110074 kill_reason Another user logged on this global unique id 110074 mac 110074 bytes_out 0 110074 bytes_in 0 110074 station_ip 37.129.117.205 110074 port 36 110074 unique_id port 110076 username hashtadani3 110076 mac 110076 bytes_out 0 110076 bytes_in 0 110076 station_ip 83.122.33.102 110076 port 14 110076 unique_id port 110076 remote_ip 10.8.1.94 110079 username hashtadani3 110079 mac 110079 bytes_out 0 110079 bytes_in 0 110079 station_ip 83.122.33.102 110079 port 34 110079 unique_id port 110079 remote_ip 10.8.0.154 110081 username hashtadani3 110081 mac 110081 bytes_out 0 110081 bytes_in 0 110081 station_ip 83.122.33.102 110081 port 34 110081 unique_id port 110081 remote_ip 10.8.0.154 110085 username asma2026 110085 mac 110085 bytes_out 0 110085 bytes_in 0 110085 station_ip 37.129.117.205 110085 port 34 110085 unique_id port 110085 remote_ip 10.8.0.170 110086 username hashtadani3 110086 mac 110086 bytes_out 0 110086 bytes_in 0 110086 station_ip 83.122.33.102 110086 port 36 110086 unique_id port 110086 remote_ip 10.8.0.154 110094 username hashtadani3 110094 mac 110094 bytes_out 0 110094 bytes_in 0 110094 station_ip 83.122.33.102 110094 port 14 110094 unique_id port 110094 remote_ip 10.8.1.94 110098 username hashtadani3 110098 mac 110098 bytes_out 0 110098 bytes_in 0 110098 station_ip 83.122.33.102 110098 port 34 110098 unique_id port 110098 remote_ip 10.8.0.154 110101 username hashtadani3 110101 mac 110101 bytes_out 0 110101 bytes_in 0 110101 station_ip 83.122.33.102 110101 port 34 110101 unique_id port 110101 remote_ip 10.8.0.154 110104 username hashtadani3 110104 mac 110104 bytes_out 0 110104 bytes_in 0 110104 station_ip 83.122.33.102 110104 port 34 110104 unique_id port 110104 remote_ip 10.8.0.154 110095 bytes_out 0 110095 bytes_in 0 110095 station_ip 83.122.33.102 110095 port 34 110095 unique_id port 110095 remote_ip 10.8.0.154 110096 username forozande 110096 mac 110096 bytes_out 163752 110096 bytes_in 266112 110096 station_ip 37.129.118.118 110096 port 34 110096 unique_id port 110096 remote_ip 10.8.0.74 110102 username hashtadani3 110102 mac 110102 bytes_out 0 110102 bytes_in 0 110102 station_ip 83.122.33.102 110102 port 34 110102 unique_id port 110102 remote_ip 10.8.0.154 110105 username hashtadani3 110105 mac 110105 bytes_out 0 110105 bytes_in 0 110105 station_ip 83.122.33.102 110105 port 34 110105 unique_id port 110105 remote_ip 10.8.0.154 110106 username hashtadani3 110106 mac 110106 bytes_out 0 110106 bytes_in 0 110106 station_ip 83.122.33.102 110106 port 34 110106 unique_id port 110106 remote_ip 10.8.0.154 110109 username hashtadani3 110109 mac 110109 bytes_out 0 110109 bytes_in 0 110109 station_ip 83.122.33.102 110109 port 34 110109 unique_id port 110109 remote_ip 10.8.0.154 110110 username forozande 110110 mac 110110 bytes_out 0 110110 bytes_in 0 110110 station_ip 83.122.171.254 110110 port 36 110110 unique_id port 110111 username hashtadani3 110111 mac 110111 bytes_out 0 110111 bytes_in 0 110111 station_ip 83.122.33.102 110111 port 14 110111 unique_id port 110111 remote_ip 10.8.1.94 110115 username hashtadani3 110115 mac 110115 bytes_out 0 110115 bytes_in 0 110115 station_ip 83.122.33.102 110115 port 36 110115 unique_id port 110115 remote_ip 10.8.0.154 110116 username mehdizare 110116 mac 110116 bytes_out 0 110116 bytes_in 0 110116 station_ip 5.119.14.239 110116 port 12 110116 unique_id port 110125 username hashtadani3 110125 mac 110125 bytes_out 0 110125 bytes_in 0 110125 station_ip 83.122.33.102 110125 port 34 110125 unique_id port 110125 remote_ip 10.8.0.154 110132 username forozande 110132 mac 110132 bytes_out 1275521 110132 bytes_in 17117005 110132 station_ip 83.123.86.8 110132 port 34 110132 unique_id port 110132 remote_ip 10.8.0.74 110137 username forozande 110137 mac 110137 bytes_out 0 110137 bytes_in 0 110137 station_ip 83.122.11.14 110137 port 41 110137 unique_id port 110137 remote_ip 10.8.0.74 110138 username hashtadani3 110138 mac 110138 bytes_out 0 110138 bytes_in 0 110138 station_ip 83.122.33.102 110138 port 34 110138 unique_id port 110138 remote_ip 10.8.0.154 110141 username hashtadani3 110141 mac 110141 bytes_out 0 110141 bytes_in 0 110141 station_ip 83.122.33.102 110141 port 34 110141 unique_id port 110141 remote_ip 10.8.0.154 110142 username hashtadani3 110142 mac 110142 bytes_out 0 110142 bytes_in 0 110142 station_ip 83.122.33.102 110142 port 34 110142 unique_id port 110142 remote_ip 10.8.0.154 110143 username hashtadani3 110143 mac 110143 bytes_out 0 110143 bytes_in 0 110143 station_ip 83.122.33.102 110143 port 41 110143 unique_id port 110143 remote_ip 10.8.0.154 110144 username mehdizare 110144 mac 110144 bytes_out 2526724 110144 bytes_in 26570173 110144 station_ip 5.120.13.2 110144 port 15 110144 unique_id port 110144 remote_ip 10.8.1.42 110148 username hashtadani3 110148 mac 110148 bytes_out 0 110148 bytes_in 0 110148 station_ip 5.202.97.140 110148 port 34 110148 unique_id port 110148 remote_ip 10.8.0.154 110157 username mehdizare 110157 mac 110157 bytes_out 0 110157 bytes_in 0 110157 station_ip 5.120.13.2 110157 port 12 110157 unique_id port 110157 remote_ip 10.8.1.42 110108 username mehdizare 110108 kill_reason Another user logged on this global unique id 110108 mac 110108 bytes_out 0 110108 bytes_in 0 110108 station_ip 5.119.14.239 110108 port 12 110108 unique_id port 110108 remote_ip 10.8.1.42 110117 username mohammadjavad 110117 mac 110117 bytes_out 0 110117 bytes_in 0 110117 station_ip 83.122.225.25 110117 port 34 110117 unique_id port 110117 remote_ip 10.8.0.142 110118 username mohammadjavad 110118 mac 110118 bytes_out 0 110118 bytes_in 0 110118 station_ip 83.122.91.221 110118 port 34 110118 unique_id port 110118 remote_ip 10.8.0.142 110119 username alirr 110119 unique_id port 110119 terminate_cause Lost-Carrier 110119 bytes_out 4345361 110119 bytes_in 34436675 110119 station_ip 5.119.18.104 110119 port 15729114 110119 nas_port_type Virtual 110119 remote_ip 5.5.5.39 110121 username hamid.e 110121 unique_id port 110121 terminate_cause User-Request 110121 bytes_out 2509043 110121 bytes_in 12439381 110121 station_ip 37.27.22.131 110121 port 15729115 110121 nas_port_type Virtual 110121 remote_ip 5.5.5.37 110124 username forozande 110124 mac 110124 bytes_out 228151 110124 bytes_in 688653 110124 station_ip 83.123.27.141 110124 port 34 110124 unique_id port 110124 remote_ip 10.8.0.74 110129 username hashtadani3 110129 mac 110129 bytes_out 0 110129 bytes_in 0 110129 station_ip 83.122.33.102 110129 port 14 110129 unique_id port 110129 remote_ip 10.8.1.94 110130 username hashtadani3 110130 mac 110130 bytes_out 0 110130 bytes_in 0 110130 station_ip 83.122.33.102 110130 port 36 110130 unique_id port 110130 remote_ip 10.8.0.154 110134 username hashtadani3 110134 mac 110134 bytes_out 0 110134 bytes_in 0 110134 station_ip 83.122.33.102 110134 port 34 110134 unique_id port 110134 remote_ip 10.8.0.154 110136 username mohammadmahdi 110136 mac 110136 bytes_out 0 110136 bytes_in 0 110136 station_ip 5.120.136.254 110136 port 34 110136 unique_id port 110136 remote_ip 10.8.0.54 110140 username hashtadani3 110140 mac 110140 bytes_out 0 110140 bytes_in 0 110140 station_ip 83.122.33.102 110140 port 34 110140 unique_id port 110140 remote_ip 10.8.0.154 110146 username hashtadani3 110146 mac 110146 bytes_out 0 110146 bytes_in 0 110146 station_ip 83.122.33.102 110146 port 41 110146 unique_id port 110146 remote_ip 10.8.0.154 110147 username forozande 110147 mac 110147 bytes_out 0 110147 bytes_in 0 110147 station_ip 83.122.196.166 110147 port 34 110147 unique_id port 110147 remote_ip 10.8.0.74 110151 username hashtadani3 110151 mac 110151 bytes_out 0 110151 bytes_in 0 110151 station_ip 83.122.33.102 110151 port 34 110151 unique_id port 110151 remote_ip 10.8.0.154 110152 username mehdizare 110152 mac 110152 bytes_out 0 110152 bytes_in 0 110152 station_ip 5.120.13.2 110152 port 12 110152 unique_id port 110152 remote_ip 10.8.1.42 110154 username mehdizare 110154 mac 110154 bytes_out 2465 110154 bytes_in 4684 110154 station_ip 5.120.13.2 110154 port 14 110154 unique_id port 110154 remote_ip 10.8.1.42 110161 username mehdizare 110161 kill_reason Maximum check online fails reached 110161 mac 110161 bytes_out 0 110161 bytes_in 0 110161 station_ip 5.120.13.2 110161 port 12 110161 unique_id port 110163 username hashtadani3 110163 mac 110163 bytes_out 0 110163 bytes_in 0 110163 station_ip 83.122.33.102 110163 port 14 110163 unique_id port 110163 remote_ip 10.8.1.94 110164 username hashtadani3 110164 mac 110164 bytes_out 0 110164 bytes_in 0 110164 station_ip 83.122.33.102 110164 port 45 110112 bytes_out 0 110112 bytes_in 0 110112 station_ip 83.122.33.102 110112 port 34 110112 unique_id port 110112 remote_ip 10.8.0.154 110113 username hashtadani3 110113 mac 110113 bytes_out 0 110113 bytes_in 0 110113 station_ip 83.122.33.102 110113 port 34 110113 unique_id port 110113 remote_ip 10.8.0.154 110114 username hashtadani3 110114 mac 110114 bytes_out 0 110114 bytes_in 0 110114 station_ip 83.122.33.102 110114 port 34 110114 unique_id port 110114 remote_ip 10.8.0.154 110120 username hashtadani3 110120 mac 110120 bytes_out 0 110120 bytes_in 0 110120 station_ip 83.122.33.102 110120 port 34 110120 unique_id port 110120 remote_ip 10.8.0.154 110122 username khalili 110122 mac 110122 bytes_out 0 110122 bytes_in 0 110122 station_ip 5.120.55.54 110122 port 14 110122 unique_id port 110122 remote_ip 10.8.1.18 110123 username hashtadani3 110123 mac 110123 bytes_out 0 110123 bytes_in 0 110123 station_ip 83.122.33.102 110123 port 34 110123 unique_id port 110123 remote_ip 10.8.0.154 110126 username mahdiyehalizadeh 110126 mac 110126 bytes_out 392286 110126 bytes_in 2754579 110126 station_ip 83.123.161.106 110126 port 34 110126 unique_id port 110126 remote_ip 10.8.0.82 110127 username hashtadani3 110127 mac 110127 bytes_out 0 110127 bytes_in 0 110127 station_ip 83.122.33.102 110127 port 14 110127 unique_id port 110127 remote_ip 10.8.1.94 110128 username hashtadani3 110128 mac 110128 bytes_out 0 110128 bytes_in 0 110128 station_ip 83.122.33.102 110128 port 14 110128 unique_id port 110128 remote_ip 10.8.1.94 110131 username hashtadani3 110131 mac 110131 bytes_out 0 110131 bytes_in 0 110131 station_ip 83.122.33.102 110131 port 36 110131 unique_id port 110131 remote_ip 10.8.0.154 110133 username hashtadani3 110133 mac 110133 bytes_out 0 110133 bytes_in 0 110133 station_ip 83.122.33.102 110133 port 34 110133 unique_id port 110133 remote_ip 10.8.0.154 110135 username hashtadani3 110135 mac 110135 bytes_out 0 110135 bytes_in 0 110135 station_ip 83.122.33.102 110135 port 44 110135 unique_id port 110135 remote_ip 10.8.0.154 110139 username hashtadani3 110139 mac 110139 bytes_out 0 110139 bytes_in 0 110139 station_ip 83.122.33.102 110139 port 34 110139 unique_id port 110139 remote_ip 10.8.0.154 110145 username khalili 110145 mac 110145 bytes_out 4135853 110145 bytes_in 3533574 110145 station_ip 5.120.55.54 110145 port 12 110145 unique_id port 110145 remote_ip 10.8.1.18 110149 username mehdizare 110149 mac 110149 bytes_out 10713 110149 bytes_in 16246 110149 station_ip 5.120.13.2 110149 port 12 110149 unique_id port 110149 remote_ip 10.8.1.42 110150 username mehdizare 110150 mac 110150 bytes_out 0 110150 bytes_in 0 110150 station_ip 5.120.13.2 110150 port 12 110150 unique_id port 110150 remote_ip 10.8.1.42 110153 username hashtadani3 110153 mac 110153 bytes_out 0 110153 bytes_in 0 110153 station_ip 83.122.33.102 110153 port 34 110153 unique_id port 110153 remote_ip 10.8.0.154 110155 username hashtadani3 110155 mac 110155 bytes_out 0 110155 bytes_in 0 110155 station_ip 83.122.33.102 110155 port 34 110155 unique_id port 110155 remote_ip 10.8.0.154 110156 username hashtadani3 110156 mac 110156 bytes_out 0 110156 bytes_in 0 110156 station_ip 83.122.33.102 110156 port 34 110156 unique_id port 110156 remote_ip 10.8.0.154 110162 username ahmadi 110162 unique_id port 110162 terminate_cause User-Request 110162 bytes_out 15864 110162 bytes_in 65830 110158 username hashtadani3 110158 mac 110158 bytes_out 12598 110158 bytes_in 23287 110158 station_ip 83.122.33.102 110158 port 34 110158 unique_id port 110158 remote_ip 10.8.0.154 110159 username mehdizare 110159 mac 110159 bytes_out 0 110159 bytes_in 0 110159 station_ip 5.120.13.2 110159 port 12 110159 unique_id port 110159 remote_ip 10.8.1.42 110160 username sedighe 110160 mac 110160 bytes_out 0 110160 bytes_in 0 110160 station_ip 83.122.41.47 110160 port 44 110160 unique_id port 110160 remote_ip 10.8.0.146 110165 username hashtadani3 110165 mac 110165 bytes_out 0 110165 bytes_in 0 110165 station_ip 83.122.33.102 110165 port 45 110165 unique_id port 110165 remote_ip 10.8.0.154 110167 username hashtadani3 110167 mac 110167 bytes_out 0 110167 bytes_in 0 110167 station_ip 83.122.33.102 110167 port 46 110167 unique_id port 110167 remote_ip 10.8.0.154 110168 username hashtadani3 110168 mac 110168 bytes_out 0 110168 bytes_in 0 110168 station_ip 83.122.33.102 110168 port 46 110168 unique_id port 110168 remote_ip 10.8.0.154 110172 username mehdizare 110172 mac 110172 bytes_out 43583 110172 bytes_in 58546 110172 station_ip 5.120.13.2 110172 port 44 110172 unique_id port 110172 remote_ip 10.8.0.90 110173 username forozande 110173 mac 110173 bytes_out 737542 110173 bytes_in 6494198 110173 station_ip 113.203.114.10 110173 port 41 110173 unique_id port 110173 remote_ip 10.8.0.74 110180 username hashtadani3 110180 mac 110180 bytes_out 0 110180 bytes_in 0 110180 station_ip 83.122.33.102 110180 port 44 110180 unique_id port 110180 remote_ip 10.8.0.154 110182 username hashtadani3 110182 mac 110182 bytes_out 0 110182 bytes_in 0 110182 station_ip 83.123.95.129 110182 port 47 110182 unique_id port 110182 remote_ip 10.8.0.154 110183 username hashtadani3 110183 mac 110183 bytes_out 0 110183 bytes_in 0 110183 station_ip 83.123.95.129 110183 port 47 110183 unique_id port 110183 remote_ip 10.8.0.154 110184 username hashtadani3 110184 mac 110184 bytes_out 0 110184 bytes_in 0 110184 station_ip 83.123.95.129 110184 port 48 110184 unique_id port 110184 remote_ip 10.8.0.154 110188 username aminvpn 110188 unique_id port 110188 terminate_cause User-Request 110188 bytes_out 1113139 110188 bytes_in 14637886 110188 station_ip 5.120.65.69 110188 port 15729121 110188 nas_port_type Virtual 110188 remote_ip 5.5.5.46 110190 username aminvpn 110190 mac 110190 bytes_out 0 110190 bytes_in 0 110190 station_ip 83.122.88.254 110190 port 47 110190 unique_id port 110190 remote_ip 10.8.0.14 110191 username aminvpn 110191 mac 110191 bytes_out 0 110191 bytes_in 0 110191 station_ip 31.56.113.9 110191 port 45 110191 unique_id port 110191 remote_ip 10.8.0.14 110195 username ehsun 110195 kill_reason Another user logged on this global unique id 110195 mac 110195 bytes_out 0 110195 bytes_in 0 110195 station_ip 46.225.212.16 110195 port 48 110195 unique_id port 110195 remote_ip 10.8.0.162 110205 username mohammadjavad 110205 mac 110205 bytes_out 94999 110205 bytes_in 831322 110205 station_ip 37.129.183.214 110205 port 41 110205 unique_id port 110205 remote_ip 10.8.0.142 110206 username forozande 110206 kill_reason Another user logged on this global unique id 110206 mac 110206 bytes_out 0 110206 bytes_in 0 110206 station_ip 83.122.81.47 110206 port 45 110206 unique_id port 110206 remote_ip 10.8.0.74 110207 username ehsun 110207 kill_reason Another user logged on this global unique id 110207 mac 110207 bytes_out 0 110207 bytes_in 0 110207 station_ip 46.225.212.16 110162 station_ip 37.129.56.199 110162 port 15729118 110162 nas_port_type Virtual 110162 remote_ip 5.5.5.45 110169 username sedighe 110169 mac 110169 bytes_out 194937 110169 bytes_in 284775 110169 station_ip 83.122.41.47 110169 port 34 110169 unique_id port 110169 remote_ip 10.8.0.146 110170 username sedighe 110170 mac 110170 bytes_out 1850 110170 bytes_in 4216 110170 station_ip 83.122.41.47 110170 port 46 110170 unique_id port 110170 remote_ip 10.8.0.146 110177 username hashtadani3 110177 mac 110177 bytes_out 0 110177 bytes_in 0 110177 station_ip 83.122.33.102 110177 port 44 110177 unique_id port 110177 remote_ip 10.8.0.154 110181 username hashtadani3 110181 mac 110181 bytes_out 0 110181 bytes_in 0 110181 station_ip 83.122.33.102 110181 port 44 110181 unique_id port 110181 remote_ip 10.8.0.154 110189 username aminvpn 110189 mac 110189 bytes_out 0 110189 bytes_in 0 110189 station_ip 83.122.88.254 110189 port 45 110189 unique_id port 110189 remote_ip 10.8.0.14 110193 username aminvpn 110193 mac 110193 bytes_out 0 110193 bytes_in 0 110193 station_ip 83.122.88.254 110193 port 47 110193 unique_id port 110193 remote_ip 10.8.0.14 110194 username hashtadani3 110194 kill_reason Another user logged on this global unique id 110194 mac 110194 bytes_out 0 110194 bytes_in 0 110194 station_ip 83.123.95.129 110194 port 46 110194 unique_id port 110194 remote_ip 10.8.0.154 110196 username mehdizare 110196 mac 110196 bytes_out 439011 110196 bytes_in 2403980 110196 station_ip 5.120.13.2 110196 port 34 110196 unique_id port 110196 remote_ip 10.8.0.90 110198 username ehsun 110198 mac 110198 bytes_out 0 110198 bytes_in 0 110198 station_ip 46.225.212.16 110198 port 48 110198 unique_id port 110199 username sedighe 110199 mac 110199 bytes_out 0 110199 bytes_in 0 110199 station_ip 113.203.43.219 110199 port 34 110199 unique_id port 110199 remote_ip 10.8.0.146 110200 username hashtadani3 110200 kill_reason Another user logged on this global unique id 110200 mac 110200 bytes_out 0 110200 bytes_in 0 110200 station_ip 83.123.95.129 110200 port 46 110200 unique_id port 110201 username mohammadmahdi 110201 mac 110201 bytes_out 0 110201 bytes_in 0 110201 station_ip 5.120.136.254 110201 port 41 110201 unique_id port 110201 remote_ip 10.8.0.54 110202 username sedighe 110202 mac 110202 bytes_out 0 110202 bytes_in 0 110202 station_ip 113.203.43.219 110202 port 45 110202 unique_id port 110202 remote_ip 10.8.0.146 110210 username ehsun 110210 kill_reason Another user logged on this global unique id 110210 mac 110210 bytes_out 0 110210 bytes_in 0 110210 station_ip 46.225.212.16 110210 port 47 110210 unique_id port 110214 username forozande 110214 mac 110214 bytes_out 0 110214 bytes_in 0 110214 station_ip 83.122.81.47 110214 port 45 110214 unique_id port 110216 username ehsun 110216 mac 110216 bytes_out 0 110216 bytes_in 0 110216 station_ip 46.225.212.16 110216 port 47 110216 unique_id port 110218 username hashtadani3 110218 kill_reason Another user logged on this global unique id 110218 mac 110218 bytes_out 0 110218 bytes_in 0 110218 station_ip 83.123.95.129 110218 port 46 110218 unique_id port 110223 username farhad1 110223 kill_reason Another user logged on this global unique id 110223 mac 110223 bytes_out 0 110223 bytes_in 0 110223 station_ip 5.119.141.92 110223 port 49 110223 unique_id port 110223 remote_ip 10.8.0.26 110224 username sedighe 110224 mac 110224 bytes_out 0 110224 bytes_in 0 110224 station_ip 83.122.24.208 110224 port 48 110164 unique_id port 110164 remote_ip 10.8.0.154 110166 username hashtadani3 110166 kill_reason Maximum check online fails reached 110166 mac 110166 bytes_out 0 110166 bytes_in 0 110166 station_ip 83.122.33.102 110166 port 14 110166 unique_id port 110171 username hashtadani3 110171 mac 110171 bytes_out 0 110171 bytes_in 0 110171 station_ip 83.122.33.102 110171 port 34 110171 unique_id port 110171 remote_ip 10.8.0.154 110174 username hashtadani3 110174 mac 110174 bytes_out 0 110174 bytes_in 0 110174 station_ip 83.122.33.102 110174 port 44 110174 unique_id port 110174 remote_ip 10.8.0.154 110175 username sedighe 110175 mac 110175 bytes_out 23623 110175 bytes_in 39106 110175 station_ip 83.122.41.47 110175 port 47 110175 unique_id port 110175 remote_ip 10.8.0.146 110176 username hashtadani3 110176 mac 110176 bytes_out 0 110176 bytes_in 0 110176 station_ip 83.122.33.102 110176 port 44 110176 unique_id port 110176 remote_ip 10.8.0.154 110178 username hashtadani3 110178 mac 110178 bytes_out 0 110178 bytes_in 0 110178 station_ip 83.122.33.102 110178 port 44 110178 unique_id port 110178 remote_ip 10.8.0.154 110179 username hashtadani3 110179 mac 110179 bytes_out 0 110179 bytes_in 0 110179 station_ip 83.122.33.102 110179 port 44 110179 unique_id port 110179 remote_ip 10.8.0.154 110185 username alirr 110185 unique_id port 110185 terminate_cause User-Request 110185 bytes_out 27307717 110185 bytes_in 830554039 110185 station_ip 5.120.163.22 110185 port 15729116 110185 nas_port_type Virtual 110185 remote_ip 5.5.5.41 110186 username forozande 110186 mac 110186 bytes_out 488626 110186 bytes_in 4630131 110186 station_ip 113.203.107.247 110186 port 46 110186 unique_id port 110186 remote_ip 10.8.0.74 110187 username ehsun 110187 mac 110187 bytes_out 273201 110187 bytes_in 2329273 110187 station_ip 46.225.212.16 110187 port 47 110187 unique_id port 110187 remote_ip 10.8.0.162 110192 username mosi 110192 mac 110192 bytes_out 0 110192 bytes_in 0 110192 station_ip 5.134.156.247 110192 port 44 110192 unique_id port 110192 remote_ip 10.8.0.138 110197 username sedighe 110197 mac 110197 bytes_out 224406 110197 bytes_in 246897 110197 station_ip 113.203.43.219 110197 port 41 110197 unique_id port 110197 remote_ip 10.8.0.146 110203 username hashtadani3 110203 kill_reason Another user logged on this global unique id 110203 mac 110203 bytes_out 0 110203 bytes_in 0 110203 station_ip 83.123.95.129 110203 port 46 110203 unique_id port 110204 username sedighe 110204 mac 110204 bytes_out 0 110204 bytes_in 0 110204 station_ip 83.122.24.208 110204 port 41 110204 unique_id port 110204 remote_ip 10.8.0.146 110208 username mohammadjavad 110208 mac 110208 bytes_out 208398 110208 bytes_in 4580591 110208 station_ip 37.129.183.214 110208 port 41 110208 unique_id port 110208 remote_ip 10.8.0.142 110209 username hashtadani3 110209 kill_reason Another user logged on this global unique id 110209 mac 110209 bytes_out 0 110209 bytes_in 0 110209 station_ip 83.123.95.129 110209 port 46 110209 unique_id port 110212 username ehsun 110212 kill_reason Another user logged on this global unique id 110212 mac 110212 bytes_out 0 110212 bytes_in 0 110212 station_ip 46.225.212.16 110212 port 47 110212 unique_id port 110215 username hashtadani3 110215 kill_reason Another user logged on this global unique id 110215 mac 110215 bytes_out 0 110215 bytes_in 0 110215 station_ip 83.123.95.129 110215 port 46 110215 unique_id port 110217 username kordestani 110217 mac 110217 bytes_out 0 110217 bytes_in 0 110207 port 47 110207 unique_id port 110207 remote_ip 10.8.0.162 110211 username farhad1 110211 mac 110211 bytes_out 0 110211 bytes_in 0 110211 station_ip 5.120.19.227 110211 port 49 110211 unique_id port 110211 remote_ip 10.8.0.26 110213 username malekpoir 110213 kill_reason Another user logged on this global unique id 110213 mac 110213 bytes_out 0 110213 bytes_in 0 110213 station_ip 5.120.170.159 110213 port 36 110213 unique_id port 110213 remote_ip 10.8.0.58 110219 username mohammadmahdi 110219 mac 110219 bytes_out 73530 110219 bytes_in 324303 110219 station_ip 5.120.136.254 110219 port 45 110219 unique_id port 110219 remote_ip 10.8.0.54 110221 username hashtadani3 110221 mac 110221 bytes_out 0 110221 bytes_in 0 110221 station_ip 83.123.95.129 110221 port 45 110221 unique_id port 110221 remote_ip 10.8.0.154 110225 username asma2026 110225 mac 110225 bytes_out 3659174 110225 bytes_in 30923779 110225 station_ip 37.129.6.201 110225 port 46 110225 unique_id port 110225 remote_ip 10.8.0.170 110227 username forozande 110227 mac 110227 bytes_out 844182 110227 bytes_in 12410377 110227 station_ip 37.129.77.138 110227 port 47 110227 unique_id port 110227 remote_ip 10.8.0.74 110229 username afarin1 110229 mac 110229 bytes_out 0 110229 bytes_in 0 110229 station_ip 83.123.84.152 110229 port 47 110229 unique_id port 110229 remote_ip 10.8.0.118 110233 username hashtadani3 110233 mac 110233 bytes_out 0 110233 bytes_in 0 110233 station_ip 83.123.95.129 110233 port 46 110233 unique_id port 110233 remote_ip 10.8.0.154 110237 username alipour 110237 mac 110237 bytes_out 0 110237 bytes_in 0 110237 station_ip 37.129.230.35 110237 port 50 110237 unique_id port 110237 remote_ip 10.8.0.102 110238 username hashtadani3 110238 mac 110238 bytes_out 0 110238 bytes_in 0 110238 station_ip 83.123.95.129 110238 port 46 110238 unique_id port 110238 remote_ip 10.8.0.154 110241 username hashtadani3 110241 mac 110241 bytes_out 0 110241 bytes_in 0 110241 station_ip 83.123.95.129 110241 port 46 110241 unique_id port 110241 remote_ip 10.8.0.154 110246 username afarin1 110246 mac 110246 bytes_out 64332 110246 bytes_in 113940 110246 station_ip 83.123.84.152 110246 port 48 110246 unique_id port 110246 remote_ip 10.8.0.118 110248 username afarin1 110248 mac 110248 bytes_out 0 110248 bytes_in 0 110248 station_ip 83.123.84.152 110248 port 16 110248 unique_id port 110248 remote_ip 10.8.1.114 110249 username afarin1 110249 mac 110249 bytes_out 0 110249 bytes_in 0 110249 station_ip 83.123.84.152 110249 port 16 110249 unique_id port 110249 remote_ip 10.8.1.114 110250 username hashtadani3 110250 mac 110250 bytes_out 3128783 110250 bytes_in 41340019 110250 station_ip 83.123.95.129 110250 port 34 110250 unique_id port 110250 remote_ip 10.8.0.154 110256 username afarin1 110256 mac 110256 bytes_out 7641 110256 bytes_in 10942 110256 station_ip 31.56.154.202 110256 port 46 110256 unique_id port 110256 remote_ip 10.8.0.118 110257 username hashtadani3 110257 mac 110257 bytes_out 0 110257 bytes_in 0 110257 station_ip 83.123.95.129 110257 port 46 110257 unique_id port 110257 remote_ip 10.8.0.154 110262 username tahmasebi 110262 kill_reason Another user logged on this global unique id 110262 mac 110262 bytes_out 0 110262 bytes_in 0 110262 station_ip 5.120.176.53 110262 port 32 110262 unique_id port 110271 username aminvpn 110271 mac 110271 bytes_out 358321 110271 bytes_in 4264723 110271 station_ip 83.122.82.74 110271 port 34 110217 station_ip 151.235.86.27 110217 port 50 110217 unique_id port 110217 remote_ip 10.8.0.134 110220 username hashtadani3 110220 mac 110220 bytes_out 0 110220 bytes_in 0 110220 station_ip 83.123.95.129 110220 port 46 110220 unique_id port 110222 username hashtadani3 110222 mac 110222 bytes_out 0 110222 bytes_in 0 110222 station_ip 83.123.95.129 110222 port 45 110222 unique_id port 110222 remote_ip 10.8.0.154 110230 username farhad1 110230 mac 110230 bytes_out 0 110230 bytes_in 0 110230 station_ip 5.119.141.92 110230 port 49 110230 unique_id port 110231 username aminvpn 110231 unique_id port 110231 terminate_cause Lost-Carrier 110231 bytes_out 3237734 110231 bytes_in 49187344 110231 station_ip 5.120.65.69 110231 port 15729117 110231 nas_port_type Virtual 110231 remote_ip 5.5.5.42 110234 username alipour 110234 mac 110234 bytes_out 0 110234 bytes_in 0 110234 station_ip 37.129.230.35 110234 port 34 110234 unique_id port 110239 username mehdizare 110239 mac 110239 bytes_out 292275 110239 bytes_in 492426 110239 station_ip 5.120.13.2 110239 port 44 110239 unique_id port 110239 remote_ip 10.8.0.90 110240 username sedighe 110240 mac 110240 bytes_out 52754 110240 bytes_in 110239 110240 station_ip 83.122.63.164 110240 port 47 110240 unique_id port 110240 remote_ip 10.8.0.146 110247 username afarin1 110247 mac 110247 bytes_out 0 110247 bytes_in 0 110247 station_ip 83.123.84.152 110247 port 16 110247 unique_id port 110247 remote_ip 10.8.1.114 110252 username hashtadani3 110252 mac 110252 bytes_out 0 110252 bytes_in 0 110252 station_ip 83.123.95.129 110252 port 46 110252 unique_id port 110252 remote_ip 10.8.0.154 110255 username hashtadani3 110255 mac 110255 bytes_out 0 110255 bytes_in 0 110255 station_ip 83.123.95.129 110255 port 34 110255 unique_id port 110255 remote_ip 10.8.0.154 110259 username afarin1 110259 mac 110259 bytes_out 7658 110259 bytes_in 16647 110259 station_ip 83.122.185.242 110259 port 34 110259 unique_id port 110259 remote_ip 10.8.0.118 110264 username aminvpn 110264 mac 110264 bytes_out 484152 110264 bytes_in 6306416 110264 station_ip 37.129.182.214 110264 port 44 110264 unique_id port 110264 remote_ip 10.8.0.14 110269 username hashtadani3 110269 mac 110269 bytes_out 0 110269 bytes_in 0 110269 station_ip 83.123.95.129 110269 port 44 110269 unique_id port 110269 remote_ip 10.8.0.154 110270 username hashtadani3 110270 mac 110270 bytes_out 0 110270 bytes_in 0 110270 station_ip 83.123.95.129 110270 port 17 110270 unique_id port 110270 remote_ip 10.8.1.94 110273 username hashtadani3 110273 mac 110273 bytes_out 0 110273 bytes_in 0 110273 station_ip 83.123.95.129 110273 port 34 110273 unique_id port 110273 remote_ip 10.8.0.154 110278 username hashtadani3 110278 mac 110278 bytes_out 0 110278 bytes_in 0 110278 station_ip 83.123.95.129 110278 port 44 110278 unique_id port 110278 remote_ip 10.8.0.154 110279 username hashtadani3 110279 mac 110279 bytes_out 0 110279 bytes_in 0 110279 station_ip 83.123.95.129 110279 port 44 110279 unique_id port 110279 remote_ip 10.8.0.154 110281 username tahmasebi 110281 kill_reason Another user logged on this global unique id 110281 mac 110281 bytes_out 0 110281 bytes_in 0 110281 station_ip 5.120.176.53 110281 port 32 110281 unique_id port 110282 username hashtadani3 110282 mac 110282 bytes_out 0 110282 bytes_in 0 110282 station_ip 83.123.95.129 110282 port 44 110282 unique_id port 110282 remote_ip 10.8.0.154 110224 unique_id port 110224 remote_ip 10.8.0.146 110226 username alipour 110226 kill_reason Another user logged on this global unique id 110226 mac 110226 bytes_out 0 110226 bytes_in 0 110226 station_ip 37.129.230.35 110226 port 34 110226 unique_id port 110226 remote_ip 10.8.0.102 110228 username afarin1 110228 mac 110228 bytes_out 0 110228 bytes_in 0 110228 station_ip 83.123.84.152 110228 port 41 110228 unique_id port 110228 remote_ip 10.8.0.118 110232 username mirzaei 110232 kill_reason Another user logged on this global unique id 110232 mac 110232 bytes_out 0 110232 bytes_in 0 110232 station_ip 5.120.182.49 110232 port 26 110232 unique_id port 110232 remote_ip 10.8.0.66 110235 username hashtadani3 110235 mac 110235 bytes_out 0 110235 bytes_in 0 110235 station_ip 83.123.95.129 110235 port 46 110235 unique_id port 110235 remote_ip 10.8.0.154 110236 username forozande 110236 mac 110236 bytes_out 360329 110236 bytes_in 12518329 110236 station_ip 83.122.62.165 110236 port 49 110236 unique_id port 110236 remote_ip 10.8.0.74 110242 username forozande 110242 mac 110242 bytes_out 0 110242 bytes_in 0 110242 station_ip 83.122.62.165 110242 port 34 110242 unique_id port 110242 remote_ip 10.8.0.74 110243 username hashtadani3 110243 mac 110243 bytes_out 0 110243 bytes_in 0 110243 station_ip 83.123.95.129 110243 port 34 110243 unique_id port 110243 remote_ip 10.8.0.154 110244 username hashtadani3 110244 mac 110244 bytes_out 0 110244 bytes_in 0 110244 station_ip 83.123.95.129 110244 port 34 110244 unique_id port 110244 remote_ip 10.8.0.154 110245 username aminvpn 110245 mac 110245 bytes_out 0 110245 bytes_in 0 110245 station_ip 37.129.182.214 110245 port 41 110245 unique_id port 110245 remote_ip 10.8.0.14 110251 username afarin1 110251 mac 110251 bytes_out 0 110251 bytes_in 0 110251 station_ip 83.123.84.152 110251 port 16 110251 unique_id port 110251 remote_ip 10.8.1.114 110253 username tahmasebi 110253 kill_reason Another user logged on this global unique id 110253 mac 110253 bytes_out 0 110253 bytes_in 0 110253 station_ip 5.120.176.53 110253 port 32 110253 unique_id port 110254 username afarin1 110254 mac 110254 bytes_out 13521 110254 bytes_in 16595 110254 station_ip 83.123.84.152 110254 port 34 110254 unique_id port 110254 remote_ip 10.8.0.118 110258 username afarin1 110258 mac 110258 bytes_out 0 110258 bytes_in 0 110258 station_ip 83.122.185.242 110258 port 16 110258 unique_id port 110258 remote_ip 10.8.1.114 110260 username hashtadani3 110260 mac 110260 bytes_out 0 110260 bytes_in 0 110260 station_ip 83.123.95.129 110260 port 46 110260 unique_id port 110260 remote_ip 10.8.0.154 110261 username hashtadani3 110261 mac 110261 bytes_out 0 110261 bytes_in 0 110261 station_ip 83.123.95.129 110261 port 34 110261 unique_id port 110261 remote_ip 10.8.0.154 110263 username hashtadani3 110263 mac 110263 bytes_out 0 110263 bytes_in 0 110263 station_ip 83.123.95.129 110263 port 34 110263 unique_id port 110263 remote_ip 10.8.0.154 110265 username amirabbas 110265 unique_id port 110265 terminate_cause User-Request 110265 bytes_out 6792321 110265 bytes_in 159509972 110265 station_ip 188.245.91.191 110265 port 15729122 110265 nas_port_type Virtual 110265 remote_ip 5.5.5.48 110266 username hashtadani3 110266 mac 110266 bytes_out 0 110266 bytes_in 0 110266 station_ip 83.123.95.129 110266 port 44 110266 unique_id port 110266 remote_ip 10.8.0.154 110267 username hashtadani3 110267 mac 110267 bytes_out 0 110267 bytes_in 0 110267 station_ip 83.123.95.129 110267 port 44 110267 unique_id port 110267 remote_ip 10.8.0.154 110268 username hashtadani3 110268 mac 110268 bytes_out 0 110268 bytes_in 0 110268 station_ip 83.123.95.129 110268 port 44 110268 unique_id port 110268 remote_ip 10.8.0.154 110272 username hashtadani3 110272 mac 110272 bytes_out 0 110272 bytes_in 0 110272 station_ip 83.123.95.129 110272 port 17 110272 unique_id port 110272 remote_ip 10.8.1.94 110275 username aminvpn 110275 mac 110275 bytes_out 0 110275 bytes_in 0 110275 station_ip 37.129.182.214 110275 port 44 110275 unique_id port 110275 remote_ip 10.8.0.14 110277 username hashtadani3 110277 mac 110277 bytes_out 0 110277 bytes_in 0 110277 station_ip 83.123.95.129 110277 port 44 110277 unique_id port 110277 remote_ip 10.8.0.154 110288 username hashtadani3 110288 mac 110288 bytes_out 0 110288 bytes_in 0 110288 station_ip 83.123.95.129 110288 port 44 110288 unique_id port 110288 remote_ip 10.8.0.154 110291 username hashtadani3 110291 mac 110291 bytes_out 0 110291 bytes_in 0 110291 station_ip 83.123.95.129 110291 port 34 110291 unique_id port 110291 remote_ip 10.8.0.154 110292 username hashtadani3 110292 mac 110292 bytes_out 0 110292 bytes_in 0 110292 station_ip 83.123.95.129 110292 port 34 110292 unique_id port 110292 remote_ip 10.8.0.154 110295 username hashtadani3 110295 mac 110295 bytes_out 0 110295 bytes_in 0 110295 station_ip 83.123.95.129 110295 port 17 110295 unique_id port 110295 remote_ip 10.8.1.94 110299 username hashtadani3 110299 mac 110299 bytes_out 0 110299 bytes_in 0 110299 station_ip 83.123.95.129 110299 port 44 110299 unique_id port 110299 remote_ip 10.8.0.154 110302 username hashtadani3 110302 mac 110302 bytes_out 0 110302 bytes_in 0 110302 station_ip 83.123.95.129 110302 port 17 110302 unique_id port 110302 remote_ip 10.8.1.94 110306 username hashtadani3 110306 mac 110306 bytes_out 0 110306 bytes_in 0 110306 station_ip 83.123.95.129 110306 port 34 110306 unique_id port 110306 remote_ip 10.8.0.154 110311 username hashtadani3 110311 mac 110311 bytes_out 0 110311 bytes_in 0 110311 station_ip 83.123.95.129 110311 port 34 110311 unique_id port 110311 remote_ip 10.8.0.154 110312 username hashtadani3 110312 mac 110312 bytes_out 0 110312 bytes_in 0 110312 station_ip 83.123.95.129 110312 port 34 110312 unique_id port 110312 remote_ip 10.8.0.154 110317 username aminvpn 110317 mac 110317 bytes_out 0 110317 bytes_in 0 110317 station_ip 37.129.182.214 110317 port 44 110317 unique_id port 110317 remote_ip 10.8.0.14 110318 username tahmasebi 110318 kill_reason Another user logged on this global unique id 110318 mac 110318 bytes_out 0 110318 bytes_in 0 110318 station_ip 5.120.176.53 110318 port 32 110318 unique_id port 110319 username aminvpn 110319 mac 110319 bytes_out 0 110319 bytes_in 0 110319 station_ip 83.122.82.74 110319 port 41 110319 unique_id port 110319 remote_ip 10.8.0.14 110323 username aminvpn 110323 mac 110323 bytes_out 0 110323 bytes_in 0 110323 station_ip 83.122.82.74 110323 port 41 110323 unique_id port 110323 remote_ip 10.8.0.14 110326 username hashtadani3 110326 mac 110326 bytes_out 0 110326 bytes_in 0 110326 station_ip 83.123.95.129 110326 port 41 110326 unique_id port 110326 remote_ip 10.8.0.154 110330 username hashtadani3 110330 mac 110330 bytes_out 0 110330 bytes_in 0 110330 station_ip 83.123.95.129 110330 port 44 110330 unique_id port 110271 unique_id port 110271 remote_ip 10.8.0.14 110274 username hashtadani3 110274 mac 110274 bytes_out 0 110274 bytes_in 0 110274 station_ip 83.123.95.129 110274 port 34 110274 unique_id port 110274 remote_ip 10.8.0.154 110276 username hashtadani3 110276 mac 110276 bytes_out 0 110276 bytes_in 0 110276 station_ip 83.123.95.129 110276 port 17 110276 unique_id port 110276 remote_ip 10.8.1.94 110280 username hashtadani3 110280 mac 110280 bytes_out 0 110280 bytes_in 0 110280 station_ip 83.123.95.129 110280 port 17 110280 unique_id port 110280 remote_ip 10.8.1.94 110283 username hashtadani3 110283 mac 110283 bytes_out 0 110283 bytes_in 0 110283 station_ip 83.123.95.129 110283 port 44 110283 unique_id port 110283 remote_ip 10.8.0.154 110286 username hashtadani3 110286 mac 110286 bytes_out 0 110286 bytes_in 0 110286 station_ip 83.123.95.129 110286 port 44 110286 unique_id port 110286 remote_ip 10.8.0.154 110290 username hashtadani3 110290 mac 110290 bytes_out 0 110290 bytes_in 0 110290 station_ip 83.123.95.129 110290 port 34 110290 unique_id port 110290 remote_ip 10.8.0.154 110294 username hashtadani3 110294 mac 110294 bytes_out 0 110294 bytes_in 0 110294 station_ip 83.123.95.129 110294 port 44 110294 unique_id port 110294 remote_ip 10.8.0.154 110298 username hashtadani3 110298 mac 110298 bytes_out 0 110298 bytes_in 0 110298 station_ip 83.123.95.129 110298 port 17 110298 unique_id port 110298 remote_ip 10.8.1.94 110304 username hashtadani3 110304 mac 110304 bytes_out 0 110304 bytes_in 0 110304 station_ip 83.123.95.129 110304 port 17 110304 unique_id port 110304 remote_ip 10.8.1.94 110305 username hashtadani3 110305 mac 110305 bytes_out 0 110305 bytes_in 0 110305 station_ip 83.123.95.129 110305 port 34 110305 unique_id port 110305 remote_ip 10.8.0.154 110308 username arman1 110308 mac 110308 bytes_out 4272758 110308 bytes_in 16788516 110308 station_ip 5.119.162.245 110308 port 41 110308 unique_id port 110308 remote_ip 10.8.0.110 110310 username hashtadani3 110310 mac 110310 bytes_out 0 110310 bytes_in 0 110310 station_ip 83.123.95.129 110310 port 34 110310 unique_id port 110310 remote_ip 10.8.0.154 110314 username aminvpn 110314 mac 110314 bytes_out 0 110314 bytes_in 0 110314 station_ip 37.129.182.214 110314 port 44 110314 unique_id port 110314 remote_ip 10.8.0.14 110315 username aminvpn 110315 mac 110315 bytes_out 0 110315 bytes_in 0 110315 station_ip 83.122.82.74 110315 port 34 110315 unique_id port 110315 remote_ip 10.8.0.14 110322 username hashtadani3 110322 mac 110322 bytes_out 0 110322 bytes_in 0 110322 station_ip 83.123.95.129 110322 port 17 110322 unique_id port 110322 remote_ip 10.8.1.94 110325 username hashtadani3 110325 mac 110325 bytes_out 0 110325 bytes_in 0 110325 station_ip 83.123.95.129 110325 port 41 110325 unique_id port 110325 remote_ip 10.8.0.154 110328 username hashtadani3 110328 mac 110328 bytes_out 0 110328 bytes_in 0 110328 station_ip 83.123.95.129 110328 port 17 110328 unique_id port 110328 remote_ip 10.8.1.94 110329 username hashtadani3 110329 mac 110329 bytes_out 0 110329 bytes_in 0 110329 station_ip 83.123.95.129 110329 port 44 110329 unique_id port 110329 remote_ip 10.8.0.154 110332 username hashtadani3 110332 mac 110332 bytes_out 0 110332 bytes_in 0 110332 station_ip 83.123.95.129 110332 port 44 110332 unique_id port 110332 remote_ip 10.8.0.154 110343 username ehsun 110343 mac 110284 username khalili 110284 kill_reason Another user logged on this global unique id 110284 mac 110284 bytes_out 0 110284 bytes_in 0 110284 station_ip 5.120.55.54 110284 port 15 110284 unique_id port 110284 remote_ip 10.8.1.18 110285 username hashtadani3 110285 mac 110285 bytes_out 0 110285 bytes_in 0 110285 station_ip 83.123.95.129 110285 port 44 110285 unique_id port 110285 remote_ip 10.8.0.154 110287 username aminvpn 110287 mac 110287 bytes_out 257529 110287 bytes_in 4481282 110287 station_ip 83.122.82.74 110287 port 34 110287 unique_id port 110287 remote_ip 10.8.0.14 110289 username hashtadani3 110289 mac 110289 bytes_out 0 110289 bytes_in 0 110289 station_ip 83.123.95.129 110289 port 34 110289 unique_id port 110289 remote_ip 10.8.0.154 110293 username aminvpn 110293 mac 110293 bytes_out 0 110293 bytes_in 0 110293 station_ip 37.129.182.214 110293 port 46 110293 unique_id port 110293 remote_ip 10.8.0.14 110296 username hashtadani3 110296 mac 110296 bytes_out 0 110296 bytes_in 0 110296 station_ip 83.123.95.129 110296 port 44 110296 unique_id port 110296 remote_ip 10.8.0.154 110297 username hashtadani3 110297 mac 110297 bytes_out 0 110297 bytes_in 0 110297 station_ip 83.123.95.129 110297 port 44 110297 unique_id port 110297 remote_ip 10.8.0.154 110300 username hashtadani3 110300 mac 110300 bytes_out 0 110300 bytes_in 0 110300 station_ip 83.123.95.129 110300 port 44 110300 unique_id port 110300 remote_ip 10.8.0.154 110301 username ahmadi 110301 unique_id port 110301 terminate_cause User-Request 110301 bytes_out 47191 110301 bytes_in 600294 110301 station_ip 37.129.121.219 110301 port 15729123 110301 nas_port_type Virtual 110301 remote_ip 5.5.5.50 110303 username aminvpn 110303 mac 110303 bytes_out 435583 110303 bytes_in 6273942 110303 station_ip 83.122.82.74 110303 port 34 110303 unique_id port 110303 remote_ip 10.8.0.14 110307 username tahmasebi 110307 kill_reason Another user logged on this global unique id 110307 mac 110307 bytes_out 0 110307 bytes_in 0 110307 station_ip 5.120.176.53 110307 port 32 110307 unique_id port 110309 username hashtadani3 110309 mac 110309 bytes_out 0 110309 bytes_in 0 110309 station_ip 83.123.95.129 110309 port 17 110309 unique_id port 110309 remote_ip 10.8.1.94 110313 username hashtadani3 110313 mac 110313 bytes_out 0 110313 bytes_in 0 110313 station_ip 83.123.95.129 110313 port 34 110313 unique_id port 110313 remote_ip 10.8.0.154 110316 username hashtadani3 110316 mac 110316 bytes_out 0 110316 bytes_in 0 110316 station_ip 83.123.95.129 110316 port 41 110316 unique_id port 110316 remote_ip 10.8.0.154 110320 username aminvpn 110320 mac 110320 bytes_out 0 110320 bytes_in 0 110320 station_ip 37.129.182.214 110320 port 44 110320 unique_id port 110320 remote_ip 10.8.0.14 110321 username hashtadani3 110321 mac 110321 bytes_out 0 110321 bytes_in 0 110321 station_ip 83.123.95.129 110321 port 44 110321 unique_id port 110321 remote_ip 10.8.0.154 110324 username hashtadani3 110324 mac 110324 bytes_out 0 110324 bytes_in 0 110324 station_ip 83.123.95.129 110324 port 41 110324 unique_id port 110324 remote_ip 10.8.0.154 110327 username aminvpn 110327 mac 110327 bytes_out 0 110327 bytes_in 0 110327 station_ip 37.129.182.214 110327 port 44 110327 unique_id port 110327 remote_ip 10.8.0.14 110331 username hashtadani3 110331 mac 110331 bytes_out 0 110331 bytes_in 0 110331 station_ip 83.123.95.129 110331 port 44 110331 unique_id port 110331 remote_ip 10.8.0.154 110330 remote_ip 10.8.0.154 110333 username hashtadani3 110333 mac 110333 bytes_out 0 110333 bytes_in 0 110333 station_ip 83.123.95.129 110333 port 17 110333 unique_id port 110333 remote_ip 10.8.1.94 110337 username hashtadani3 110337 mac 110337 bytes_out 0 110337 bytes_in 0 110337 station_ip 83.123.95.129 110337 port 44 110337 unique_id port 110337 remote_ip 10.8.0.154 110338 username hashtadani3 110338 mac 110338 bytes_out 0 110338 bytes_in 0 110338 station_ip 83.123.95.129 110338 port 44 110338 unique_id port 110338 remote_ip 10.8.0.154 110339 username aminvpn 110339 mac 110339 bytes_out 279245 110339 bytes_in 3566734 110339 station_ip 83.122.82.74 110339 port 41 110339 unique_id port 110339 remote_ip 10.8.0.14 110340 username hashtadani3 110340 mac 110340 bytes_out 0 110340 bytes_in 0 110340 station_ip 83.123.95.129 110340 port 41 110340 unique_id port 110340 remote_ip 10.8.0.154 110341 username tahmasebi 110341 kill_reason Another user logged on this global unique id 110341 mac 110341 bytes_out 0 110341 bytes_in 0 110341 station_ip 5.120.176.53 110341 port 32 110341 unique_id port 110342 username mosi 110342 mac 110342 bytes_out 602162 110342 bytes_in 1546963 110342 station_ip 5.134.156.247 110342 port 34 110342 unique_id port 110342 remote_ip 10.8.0.138 110344 username hashtadani3 110344 mac 110344 bytes_out 0 110344 bytes_in 0 110344 station_ip 83.123.95.129 110344 port 17 110344 unique_id port 110344 remote_ip 10.8.1.94 110346 username hashtadani3 110346 mac 110346 bytes_out 0 110346 bytes_in 0 110346 station_ip 83.123.95.129 110346 port 34 110346 unique_id port 110346 remote_ip 10.8.0.154 110353 username hashtadani3 110353 mac 110353 bytes_out 2217 110353 bytes_in 4600 110353 station_ip 83.122.89.78 110353 port 45 110353 unique_id port 110353 remote_ip 10.8.0.154 110355 username tahmasebi 110355 kill_reason Another user logged on this global unique id 110355 mac 110355 bytes_out 0 110355 bytes_in 0 110355 station_ip 5.120.176.53 110355 port 32 110355 unique_id port 110362 username tahmasebi 110362 kill_reason Another user logged on this global unique id 110362 mac 110362 bytes_out 0 110362 bytes_in 0 110362 station_ip 5.120.176.53 110362 port 32 110362 unique_id port 110365 username musa 110365 mac 110365 bytes_out 6618 110365 bytes_in 10497 110365 station_ip 5.210.201.69 110365 port 46 110365 unique_id port 110365 remote_ip 10.8.0.6 110368 username mehdizare 110368 mac 110368 bytes_out 0 110368 bytes_in 0 110368 station_ip 5.120.13.2 110368 port 49 110368 unique_id port 110368 remote_ip 10.8.0.90 110369 username tahmasebi 110369 kill_reason Another user logged on this global unique id 110369 mac 110369 bytes_out 0 110369 bytes_in 0 110369 station_ip 5.120.176.53 110369 port 32 110369 unique_id port 110370 username musa 110370 mac 110370 bytes_out 5830 110370 bytes_in 7684 110370 station_ip 5.210.201.69 110370 port 45 110370 unique_id port 110370 remote_ip 10.8.0.6 110377 username hashtadani3 110377 mac 110377 bytes_out 0 110377 bytes_in 0 110377 station_ip 83.122.89.78 110377 port 17 110377 unique_id port 110377 remote_ip 10.8.1.94 110378 username hashtadani3 110378 mac 110378 bytes_out 0 110378 bytes_in 0 110378 station_ip 83.122.89.78 110378 port 17 110378 unique_id port 110378 remote_ip 10.8.1.94 110382 username hashtadani3 110382 mac 110382 bytes_out 0 110382 bytes_in 0 110382 station_ip 83.122.89.78 110382 port 17 110382 unique_id port 110382 remote_ip 10.8.1.94 110383 username hashtadani3 110334 username hashtadani3 110334 mac 110334 bytes_out 0 110334 bytes_in 0 110334 station_ip 83.123.95.129 110334 port 17 110334 unique_id port 110334 remote_ip 10.8.1.94 110335 username hashtadani3 110335 mac 110335 bytes_out 0 110335 bytes_in 0 110335 station_ip 83.123.95.129 110335 port 44 110335 unique_id port 110335 remote_ip 10.8.0.154 110336 username hashtadani3 110336 mac 110336 bytes_out 19353 110336 bytes_in 32430 110336 station_ip 83.123.95.129 110336 port 44 110336 unique_id port 110336 remote_ip 10.8.0.154 110348 username tahmasebi 110348 kill_reason Another user logged on this global unique id 110348 mac 110348 bytes_out 0 110348 bytes_in 0 110348 station_ip 5.120.176.53 110348 port 32 110348 unique_id port 110350 username hashtadani3 110350 mac 110350 bytes_out 0 110350 bytes_in 0 110350 station_ip 83.122.89.78 110350 port 34 110350 unique_id port 110350 remote_ip 10.8.0.154 110351 username hashtadani3 110351 mac 110351 bytes_out 0 110351 bytes_in 0 110351 station_ip 83.122.89.78 110351 port 34 110351 unique_id port 110351 remote_ip 10.8.0.154 110354 username hashtadani3 110354 mac 110354 bytes_out 0 110354 bytes_in 0 110354 station_ip 83.122.89.78 110354 port 34 110354 unique_id port 110354 remote_ip 10.8.0.154 110357 username hashtadani3 110357 mac 110357 bytes_out 0 110357 bytes_in 0 110357 station_ip 83.122.89.78 110357 port 17 110357 unique_id port 110357 remote_ip 10.8.1.94 110358 username tahmasebi 110358 kill_reason Another user logged on this global unique id 110358 mac 110358 bytes_out 0 110358 bytes_in 0 110358 station_ip 5.120.176.53 110358 port 32 110358 unique_id port 110359 username hashtadani3 110359 mac 110359 bytes_out 4740 110359 bytes_in 12534 110359 station_ip 83.122.89.78 110359 port 17 110359 unique_id port 110359 remote_ip 10.8.1.94 110360 username hashtadani3 110360 mac 110360 bytes_out 4703 110360 bytes_in 12286 110360 station_ip 83.122.89.78 110360 port 45 110360 unique_id port 110360 remote_ip 10.8.0.154 110361 username hashtadani3 110361 mac 110361 bytes_out 0 110361 bytes_in 0 110361 station_ip 83.122.89.78 110361 port 45 110361 unique_id port 110361 remote_ip 10.8.0.154 110364 username hashtadani3 110364 mac 110364 bytes_out 0 110364 bytes_in 0 110364 station_ip 83.122.89.78 110364 port 45 110364 unique_id port 110364 remote_ip 10.8.0.154 110372 username hashtadani3 110372 mac 110372 bytes_out 0 110372 bytes_in 0 110372 station_ip 83.122.89.78 110372 port 41 110372 unique_id port 110372 remote_ip 10.8.0.154 110373 username hashtadani3 110373 mac 110373 bytes_out 0 110373 bytes_in 0 110373 station_ip 83.122.89.78 110373 port 17 110373 unique_id port 110373 remote_ip 10.8.1.94 110374 username hashtadani3 110374 mac 110374 bytes_out 0 110374 bytes_in 0 110374 station_ip 83.122.89.78 110374 port 17 110374 unique_id port 110374 remote_ip 10.8.1.94 110379 username hashtadani3 110379 mac 110379 bytes_out 0 110379 bytes_in 0 110379 station_ip 83.122.89.78 110379 port 41 110379 unique_id port 110379 remote_ip 10.8.0.154 110386 username hashtadani3 110386 mac 110386 bytes_out 0 110386 bytes_in 0 110386 station_ip 83.122.89.78 110386 port 41 110386 unique_id port 110386 remote_ip 10.8.0.154 110391 username tahmasebi 110391 kill_reason Another user logged on this global unique id 110391 mac 110391 bytes_out 0 110391 bytes_in 0 110391 station_ip 5.120.176.53 110391 port 32 110391 unique_id port 110392 username khalili 110392 mac 110392 bytes_out 0 110343 bytes_out 0 110343 bytes_in 0 110343 station_ip 46.225.212.16 110343 port 45 110343 unique_id port 110343 remote_ip 10.8.0.162 110345 username tahmasebi 110345 kill_reason Another user logged on this global unique id 110345 mac 110345 bytes_out 0 110345 bytes_in 0 110345 station_ip 5.120.176.53 110345 port 32 110345 unique_id port 110347 username amirabbas 110347 unique_id port 110347 terminate_cause User-Request 110347 bytes_out 796013 110347 bytes_in 2476955 110347 station_ip 188.245.91.191 110347 port 15729124 110347 nas_port_type Virtual 110347 remote_ip 5.5.5.51 110349 username hashtadani3 110349 mac 110349 bytes_out 4039 110349 bytes_in 13654 110349 station_ip 83.123.95.129 110349 port 34 110349 unique_id port 110349 remote_ip 10.8.0.154 110352 username hashtadani3 110352 mac 110352 bytes_out 0 110352 bytes_in 0 110352 station_ip 83.122.89.78 110352 port 34 110352 unique_id port 110352 remote_ip 10.8.0.154 110356 username hashtadani3 110356 mac 110356 bytes_out 0 110356 bytes_in 0 110356 station_ip 83.122.89.78 110356 port 34 110356 unique_id port 110356 remote_ip 10.8.0.154 110363 username musa 110363 mac 110363 bytes_out 1271751 110363 bytes_in 11460927 110363 station_ip 5.210.201.69 110363 port 41 110363 unique_id port 110363 remote_ip 10.8.0.6 110366 username hashtadani3 110366 mac 110366 bytes_out 0 110366 bytes_in 0 110366 station_ip 83.122.89.78 110366 port 41 110366 unique_id port 110366 remote_ip 10.8.0.154 110367 username hashtadani3 110367 mac 110367 bytes_out 0 110367 bytes_in 0 110367 station_ip 83.122.89.78 110367 port 41 110367 unique_id port 110367 remote_ip 10.8.0.154 110371 username hashtadani3 110371 mac 110371 bytes_out 101117 110371 bytes_in 529422 110371 station_ip 83.122.89.78 110371 port 41 110371 unique_id port 110371 remote_ip 10.8.0.154 110375 username khalili 110375 kill_reason Another user logged on this global unique id 110375 mac 110375 bytes_out 0 110375 bytes_in 0 110375 station_ip 5.120.55.54 110375 port 15 110375 unique_id port 110376 username tahmasebi 110376 kill_reason Another user logged on this global unique id 110376 mac 110376 bytes_out 0 110376 bytes_in 0 110376 station_ip 5.120.176.53 110376 port 32 110376 unique_id port 110380 username hashtadani3 110380 mac 110380 bytes_out 0 110380 bytes_in 0 110380 station_ip 83.122.89.78 110380 port 41 110380 unique_id port 110380 remote_ip 10.8.0.154 110381 username hashtadani3 110381 mac 110381 bytes_out 0 110381 bytes_in 0 110381 station_ip 83.122.89.78 110381 port 41 110381 unique_id port 110381 remote_ip 10.8.0.154 110384 username hashtadani3 110384 mac 110384 bytes_out 0 110384 bytes_in 0 110384 station_ip 83.122.89.78 110384 port 41 110384 unique_id port 110384 remote_ip 10.8.0.154 110387 username aminvpn 110387 kill_reason Another user logged on this global unique id 110387 mac 110387 bytes_out 0 110387 bytes_in 0 110387 station_ip 37.129.182.214 110387 port 44 110387 unique_id port 110387 remote_ip 10.8.0.14 110388 username musa 110388 mac 110388 bytes_out 105055 110388 bytes_in 436750 110388 station_ip 5.210.201.69 110388 port 47 110388 unique_id port 110388 remote_ip 10.8.0.6 110390 username hashtadani3 110390 mac 110390 bytes_out 2323 110390 bytes_in 4600 110390 station_ip 83.122.89.78 110390 port 41 110390 unique_id port 110390 remote_ip 10.8.0.154 110393 username aminvpn 110393 mac 110393 bytes_out 0 110393 bytes_in 0 110393 station_ip 37.129.182.214 110393 port 44 110393 unique_id port 110395 username hashtadani3 110383 mac 110383 bytes_out 0 110383 bytes_in 0 110383 station_ip 83.122.89.78 110383 port 17 110383 unique_id port 110383 remote_ip 10.8.1.94 110385 username tahmasebi 110385 kill_reason Another user logged on this global unique id 110385 mac 110385 bytes_out 0 110385 bytes_in 0 110385 station_ip 5.120.176.53 110385 port 32 110385 unique_id port 110389 username hashtadani3 110389 mac 110389 bytes_out 2206 110389 bytes_in 4666 110389 station_ip 83.122.89.78 110389 port 41 110389 unique_id port 110389 remote_ip 10.8.0.154 110396 username hashtadani3 110396 mac 110396 bytes_out 0 110396 bytes_in 0 110396 station_ip 83.122.89.78 110396 port 41 110396 unique_id port 110396 remote_ip 10.8.0.154 110401 username hashtadani3 110401 mac 110401 bytes_out 0 110401 bytes_in 0 110401 station_ip 83.122.89.78 110401 port 36 110401 unique_id port 110401 remote_ip 10.8.0.154 110405 username hashtadani3 110405 mac 110405 bytes_out 0 110405 bytes_in 0 110405 station_ip 83.122.89.78 110405 port 36 110405 unique_id port 110405 remote_ip 10.8.0.154 110406 username hashtadani3 110406 mac 110406 bytes_out 0 110406 bytes_in 0 110406 station_ip 83.122.89.78 110406 port 36 110406 unique_id port 110406 remote_ip 10.8.0.154 110409 username malekpoir 110409 mac 110409 bytes_out 0 110409 bytes_in 0 110409 station_ip 5.120.170.159 110409 port 15 110409 unique_id port 110409 remote_ip 10.8.1.54 110413 username hashtadani3 110413 mac 110413 bytes_out 0 110413 bytes_in 0 110413 station_ip 83.122.89.78 110413 port 36 110413 unique_id port 110413 remote_ip 10.8.0.154 110420 username morteza 110420 kill_reason Another user logged on this global unique id 110420 mac 110420 bytes_out 0 110420 bytes_in 0 110420 station_ip 83.123.135.22 110420 port 45 110420 unique_id port 110421 username hashtadani3 110421 mac 110421 bytes_out 0 110421 bytes_in 0 110421 station_ip 83.122.89.78 110421 port 17 110421 unique_id port 110421 remote_ip 10.8.1.94 110423 username musa 110423 kill_reason Another user logged on this global unique id 110423 mac 110423 bytes_out 0 110423 bytes_in 0 110423 station_ip 89.196.185.213 110423 port 47 110423 unique_id port 110423 remote_ip 10.8.0.6 110424 username hashtadani3 110424 mac 110424 bytes_out 0 110424 bytes_in 0 110424 station_ip 83.122.89.78 110424 port 41 110424 unique_id port 110424 remote_ip 10.8.0.154 110430 username hashtadani3 110430 mac 110430 bytes_out 0 110430 bytes_in 0 110430 station_ip 83.122.89.78 110430 port 41 110430 unique_id port 110430 remote_ip 10.8.0.154 110432 username tahmasebi 110432 kill_reason Another user logged on this global unique id 110432 mac 110432 bytes_out 0 110432 bytes_in 0 110432 station_ip 5.120.176.53 110432 port 32 110432 unique_id port 110435 username arman1 110435 mac 110435 bytes_out 0 110435 bytes_in 0 110435 station_ip 5.119.195.109 110435 port 41 110435 unique_id port 110435 remote_ip 10.8.0.110 110442 username tahmasebi 110442 kill_reason Another user logged on this global unique id 110442 mac 110442 bytes_out 0 110442 bytes_in 0 110442 station_ip 5.120.176.53 110442 port 32 110442 unique_id port 110444 username hashtadani3 110444 mac 110444 bytes_out 5886 110444 bytes_in 11601 110444 station_ip 83.122.89.78 110444 port 15 110444 unique_id port 110444 remote_ip 10.8.1.94 110446 username hashtadani3 110446 mac 110446 bytes_out 0 110446 bytes_in 0 110446 station_ip 83.122.89.78 110446 port 15 110446 unique_id port 110446 remote_ip 10.8.1.94 110448 username hashtadani3 110448 mac 110392 bytes_in 0 110392 station_ip 5.120.55.54 110392 port 15 110392 unique_id port 110394 username morteza 110394 kill_reason Another user logged on this global unique id 110394 mac 110394 bytes_out 0 110394 bytes_in 0 110394 station_ip 83.123.135.22 110394 port 45 110394 unique_id port 110394 remote_ip 10.8.0.46 110397 username malekpoir 110397 mac 110397 bytes_out 0 110397 bytes_in 0 110397 station_ip 5.120.170.159 110397 port 36 110397 unique_id port 110400 username tahmasebi 110400 kill_reason Another user logged on this global unique id 110400 mac 110400 bytes_out 0 110400 bytes_in 0 110400 station_ip 5.120.176.53 110400 port 32 110400 unique_id port 110402 username hashtadani3 110402 mac 110402 bytes_out 0 110402 bytes_in 0 110402 station_ip 83.122.89.78 110402 port 36 110402 unique_id port 110402 remote_ip 10.8.0.154 110404 username mehdizare 110404 mac 110404 bytes_out 0 110404 bytes_in 0 110404 station_ip 5.120.13.2 110404 port 46 110404 unique_id port 110404 remote_ip 10.8.0.90 110407 username arman1 110407 kill_reason Another user logged on this global unique id 110407 mac 110407 bytes_out 0 110407 bytes_in 0 110407 station_ip 5.119.131.33 110407 port 34 110407 unique_id port 110407 remote_ip 10.8.0.110 110410 username hashtadani3 110410 mac 110410 bytes_out 0 110410 bytes_in 0 110410 station_ip 83.122.89.78 110410 port 36 110410 unique_id port 110410 remote_ip 10.8.0.154 110411 username hashtadani3 110411 mac 110411 bytes_out 0 110411 bytes_in 0 110411 station_ip 83.122.89.78 110411 port 36 110411 unique_id port 110411 remote_ip 10.8.0.154 110412 username mehdizare 110412 mac 110412 bytes_out 16187 110412 bytes_in 24546 110412 station_ip 5.120.13.2 110412 port 41 110412 unique_id port 110412 remote_ip 10.8.0.90 110415 username hashtadani3 110415 mac 110415 bytes_out 0 110415 bytes_in 0 110415 station_ip 83.122.89.78 110415 port 17 110415 unique_id port 110415 remote_ip 10.8.1.94 110418 username tahmasebi 110418 kill_reason Another user logged on this global unique id 110418 mac 110418 bytes_out 0 110418 bytes_in 0 110418 station_ip 5.120.176.53 110418 port 32 110418 unique_id port 110425 username hashtadani3 110425 mac 110425 bytes_out 0 110425 bytes_in 0 110425 station_ip 83.122.89.78 110425 port 41 110425 unique_id port 110425 remote_ip 10.8.0.154 110426 username hashtadani3 110426 mac 110426 bytes_out 0 110426 bytes_in 0 110426 station_ip 83.122.89.78 110426 port 41 110426 unique_id port 110426 remote_ip 10.8.0.154 110433 username arman1 110433 mac 110433 bytes_out 0 110433 bytes_in 0 110433 station_ip 5.119.131.33 110433 port 34 110433 unique_id port 110441 username malekpoir 110441 mac 110441 bytes_out 0 110441 bytes_in 0 110441 station_ip 5.120.170.159 110441 port 15 110441 unique_id port 110441 remote_ip 10.8.1.54 110443 username hashtadani3 110443 mac 110443 bytes_out 2496 110443 bytes_in 4861 110443 station_ip 83.122.89.78 110443 port 34 110443 unique_id port 110443 remote_ip 10.8.0.154 110445 username hashtadani3 110445 mac 110445 bytes_out 0 110445 bytes_in 0 110445 station_ip 83.122.89.78 110445 port 15 110445 unique_id port 110445 remote_ip 10.8.1.94 110451 username arman1 110451 kill_reason Another user logged on this global unique id 110451 mac 110451 bytes_out 0 110451 bytes_in 0 110451 station_ip 5.119.211.215 110451 port 44 110451 unique_id port 110451 remote_ip 10.8.0.110 110452 username mohammadmahdi 110452 mac 110452 bytes_out 0 110452 bytes_in 0 110452 station_ip 5.120.136.254 110395 mac 110395 bytes_out 0 110395 bytes_in 0 110395 station_ip 83.122.89.78 110395 port 41 110395 unique_id port 110395 remote_ip 10.8.0.154 110398 username hashtadani3 110398 mac 110398 bytes_out 0 110398 bytes_in 0 110398 station_ip 83.122.89.78 110398 port 41 110398 unique_id port 110398 remote_ip 10.8.0.154 110399 username hashtadani3 110399 mac 110399 bytes_out 0 110399 bytes_in 0 110399 station_ip 83.122.89.78 110399 port 36 110399 unique_id port 110399 remote_ip 10.8.0.154 110403 username hashtadani3 110403 mac 110403 bytes_out 2482 110403 bytes_in 4759 110403 station_ip 83.122.89.78 110403 port 36 110403 unique_id port 110403 remote_ip 10.8.0.154 110408 username hashtadani3 110408 mac 110408 bytes_out 0 110408 bytes_in 0 110408 station_ip 83.122.89.78 110408 port 36 110408 unique_id port 110408 remote_ip 10.8.0.154 110414 username hashtadani3 110414 mac 110414 bytes_out 0 110414 bytes_in 0 110414 station_ip 83.122.89.78 110414 port 17 110414 unique_id port 110414 remote_ip 10.8.1.94 110416 username malekpoir 110416 mac 110416 bytes_out 0 110416 bytes_in 0 110416 station_ip 5.120.170.159 110416 port 15 110416 unique_id port 110416 remote_ip 10.8.1.54 110417 username hashtadani3 110417 mac 110417 bytes_out 0 110417 bytes_in 0 110417 station_ip 83.122.89.78 110417 port 17 110417 unique_id port 110417 remote_ip 10.8.1.94 110419 username hashtadani3 110419 mac 110419 bytes_out 0 110419 bytes_in 0 110419 station_ip 83.122.89.78 110419 port 17 110419 unique_id port 110419 remote_ip 10.8.1.94 110422 username hashtadani3 110422 mac 110422 bytes_out 0 110422 bytes_in 0 110422 station_ip 83.122.89.78 110422 port 17 110422 unique_id port 110422 remote_ip 10.8.1.94 110427 username aminvpn 110427 mac 110427 bytes_out 1089048 110427 bytes_in 9229734 110427 station_ip 83.122.82.74 110427 port 18 110427 unique_id port 110427 remote_ip 10.8.1.6 110428 username hashtadani3 110428 mac 110428 bytes_out 0 110428 bytes_in 0 110428 station_ip 83.122.89.78 110428 port 41 110428 unique_id port 110428 remote_ip 10.8.0.154 110429 username malekpoir 110429 mac 110429 bytes_out 0 110429 bytes_in 0 110429 station_ip 5.120.170.159 110429 port 15 110429 unique_id port 110429 remote_ip 10.8.1.54 110431 username hashtadani3 110431 mac 110431 bytes_out 0 110431 bytes_in 0 110431 station_ip 83.122.89.78 110431 port 41 110431 unique_id port 110431 remote_ip 10.8.0.154 110434 username hashtadani3 110434 mac 110434 bytes_out 0 110434 bytes_in 0 110434 station_ip 83.122.89.78 110434 port 41 110434 unique_id port 110434 remote_ip 10.8.0.154 110436 username hashtadani3 110436 mac 110436 bytes_out 2323 110436 bytes_in 4600 110436 station_ip 83.122.89.78 110436 port 34 110436 unique_id port 110436 remote_ip 10.8.0.154 110437 username hashtadani3 110437 mac 110437 bytes_out 0 110437 bytes_in 0 110437 station_ip 83.122.89.78 110437 port 34 110437 unique_id port 110437 remote_ip 10.8.0.154 110438 username hashtadani3 110438 mac 110438 bytes_out 0 110438 bytes_in 0 110438 station_ip 83.122.89.78 110438 port 34 110438 unique_id port 110438 remote_ip 10.8.0.154 110439 username hashtadani3 110439 mac 110439 bytes_out 0 110439 bytes_in 0 110439 station_ip 83.122.89.78 110439 port 34 110439 unique_id port 110439 remote_ip 10.8.0.154 110440 username hashtadani3 110440 mac 110440 bytes_out 0 110440 bytes_in 0 110440 station_ip 83.122.89.78 110440 port 34 110440 unique_id port 110440 remote_ip 10.8.0.154 110447 username hashtadani3 110447 mac 110447 bytes_out 0 110447 bytes_in 0 110447 station_ip 83.122.89.78 110447 port 15 110447 unique_id port 110447 remote_ip 10.8.1.94 110449 username hashtadani3 110449 mac 110449 bytes_out 0 110449 bytes_in 0 110449 station_ip 83.122.89.78 110449 port 15 110449 unique_id port 110449 remote_ip 10.8.1.94 110450 username hashtadani3 110450 mac 110450 bytes_out 0 110450 bytes_in 0 110450 station_ip 83.122.89.78 110450 port 48 110450 unique_id port 110450 remote_ip 10.8.0.154 110453 username kordestani 110453 kill_reason Another user logged on this global unique id 110453 mac 110453 bytes_out 0 110453 bytes_in 0 110453 station_ip 151.235.124.27 110453 port 41 110453 unique_id port 110453 remote_ip 10.8.0.134 110456 username hashtadani3 110456 mac 110456 bytes_out 2323 110456 bytes_in 4600 110456 station_ip 83.122.89.78 110456 port 48 110456 unique_id port 110456 remote_ip 10.8.0.154 110457 username tahmasebi 110457 mac 110457 bytes_out 0 110457 bytes_in 0 110457 station_ip 5.120.176.53 110457 port 32 110457 unique_id port 110460 username morteza 110460 mac 110460 bytes_out 0 110460 bytes_in 0 110460 station_ip 83.123.135.22 110460 port 34 110460 unique_id port 110460 remote_ip 10.8.0.46 110468 username hashtadani3 110468 mac 110468 bytes_out 0 110468 bytes_in 0 110468 station_ip 83.122.89.78 110468 port 45 110468 unique_id port 110468 remote_ip 10.8.0.154 110469 username hashtadani3 110469 mac 110469 bytes_out 0 110469 bytes_in 0 110469 station_ip 83.122.89.78 110469 port 15 110469 unique_id port 110469 remote_ip 10.8.1.94 110471 username mohammadjavad 110471 kill_reason Maximum check online fails reached 110471 mac 110471 bytes_out 0 110471 bytes_in 0 110471 station_ip 113.203.64.158 110471 port 45 110471 unique_id port 110474 username hashtadani3 110474 mac 110474 bytes_out 0 110474 bytes_in 0 110474 station_ip 83.123.8.10 110474 port 18 110474 unique_id port 110474 remote_ip 10.8.1.94 110477 username hashtadani3 110477 mac 110477 bytes_out 0 110477 bytes_in 0 110477 station_ip 83.123.8.10 110477 port 32 110477 unique_id port 110477 remote_ip 10.8.0.154 110491 username hashtadani3 110491 mac 110491 bytes_out 0 110491 bytes_in 0 110491 station_ip 83.123.8.10 110491 port 44 110491 unique_id port 110491 remote_ip 10.8.0.154 110493 username mohammadjavad 110493 mac 110493 bytes_out 122918 110493 bytes_in 232672 110493 station_ip 37.129.143.215 110493 port 48 110493 unique_id port 110493 remote_ip 10.8.0.142 110498 username mohammadjavad 110498 mac 110498 bytes_out 3539 110498 bytes_in 4613 110498 station_ip 37.129.143.215 110498 port 48 110498 unique_id port 110498 remote_ip 10.8.0.142 110505 username rajaei 110505 mac 110505 bytes_out 738171 110505 bytes_in 5063649 110505 station_ip 89.34.39.35 110505 port 32 110505 unique_id port 110505 remote_ip 10.8.0.34 110510 username hashtadani3 110510 mac 110510 bytes_out 0 110510 bytes_in 0 110510 station_ip 83.123.8.10 110510 port 41 110510 unique_id port 110510 remote_ip 10.8.0.154 110511 username hashtadani3 110511 mac 110511 bytes_out 0 110511 bytes_in 0 110511 station_ip 83.123.8.10 110511 port 41 110511 unique_id port 110511 remote_ip 10.8.0.154 110515 username hashtadani3 110515 mac 110515 bytes_out 0 110515 bytes_in 0 110515 station_ip 83.123.8.10 110515 port 15 110515 unique_id port 110515 remote_ip 10.8.1.94 110517 username hashtadani3 110448 bytes_out 0 110448 bytes_in 0 110448 station_ip 83.122.89.78 110448 port 15 110448 unique_id port 110448 remote_ip 10.8.1.94 110454 username morteza 110454 mac 110454 bytes_out 0 110454 bytes_in 0 110454 station_ip 83.123.135.22 110454 port 45 110454 unique_id port 110461 username hashtadani3 110461 mac 110461 bytes_out 0 110461 bytes_in 0 110461 station_ip 83.122.89.78 110461 port 32 110461 unique_id port 110461 remote_ip 10.8.0.154 110462 username houshang 110462 mac 110462 bytes_out 0 110462 bytes_in 0 110462 station_ip 5.119.145.22 110462 port 46 110462 unique_id port 110462 remote_ip 10.8.0.22 110466 username arman1 110466 kill_reason Another user logged on this global unique id 110466 mac 110466 bytes_out 0 110466 bytes_in 0 110466 station_ip 5.119.211.215 110466 port 44 110466 unique_id port 110467 username hashtadani3 110467 mac 110467 bytes_out 82381 110467 bytes_in 150463 110467 station_ip 83.122.89.78 110467 port 46 110467 unique_id port 110467 remote_ip 10.8.0.154 110476 username mohammadjavad 110476 mac 110476 bytes_out 388209 110476 bytes_in 1527859 110476 station_ip 113.203.64.158 110476 port 46 110476 unique_id port 110476 remote_ip 10.8.0.142 110478 username hashtadani3 110478 mac 110478 bytes_out 0 110478 bytes_in 0 110478 station_ip 83.123.8.10 110478 port 49 110478 unique_id port 110478 remote_ip 10.8.0.154 110482 username hashtadani3 110482 mac 110482 bytes_out 2231 110482 bytes_in 4516 110482 station_ip 83.123.8.10 110482 port 32 110482 unique_id port 110482 remote_ip 10.8.0.154 110483 username hashtadani3 110483 mac 110483 bytes_out 2323 110483 bytes_in 4653 110483 station_ip 83.123.8.10 110483 port 49 110483 unique_id port 110483 remote_ip 10.8.0.154 110486 username hashtadani3 110486 mac 110486 bytes_out 0 110486 bytes_in 0 110486 station_ip 83.123.8.10 110486 port 49 110486 unique_id port 110486 remote_ip 10.8.0.154 110487 username hashtadani3 110487 mac 110487 bytes_out 0 110487 bytes_in 0 110487 station_ip 83.123.8.10 110487 port 44 110487 unique_id port 110487 remote_ip 10.8.0.154 110490 username hashtadani3 110490 mac 110490 bytes_out 0 110490 bytes_in 0 110490 station_ip 83.123.8.10 110490 port 44 110490 unique_id port 110490 remote_ip 10.8.0.154 110495 username kordestani 110495 kill_reason Another user logged on this global unique id 110495 mac 110495 bytes_out 0 110495 bytes_in 0 110495 station_ip 151.235.124.27 110495 port 41 110495 unique_id port 110496 username tahmasebi 110496 kill_reason Another user logged on this global unique id 110496 mac 110496 bytes_out 0 110496 bytes_in 0 110496 station_ip 5.119.117.36 110496 port 34 110496 unique_id port 110499 username hashtadani3 110499 mac 110499 bytes_out 0 110499 bytes_in 0 110499 station_ip 83.123.8.10 110499 port 15 110499 unique_id port 110499 remote_ip 10.8.1.94 110502 username zare 110502 kill_reason Another user logged on this global unique id 110502 mac 110502 bytes_out 0 110502 bytes_in 0 110502 station_ip 37.27.48.235 110502 port 19 110502 unique_id port 110512 username tahmasebi 110512 kill_reason Another user logged on this global unique id 110512 mac 110512 bytes_out 0 110512 bytes_in 0 110512 station_ip 5.119.117.36 110512 port 34 110512 unique_id port 110520 username hashtadani3 110520 mac 110520 bytes_out 0 110520 bytes_in 0 110520 station_ip 83.123.8.10 110520 port 32 110520 unique_id port 110520 remote_ip 10.8.0.154 110529 username hashtadani3 110529 mac 110529 bytes_out 0 110529 bytes_in 0 110452 port 34 110452 unique_id port 110452 remote_ip 10.8.0.54 110455 username zare 110455 kill_reason Another user logged on this global unique id 110455 mac 110455 bytes_out 0 110455 bytes_in 0 110455 station_ip 37.27.48.235 110455 port 19 110455 unique_id port 110455 remote_ip 10.8.1.58 110458 username hashtadani3 110458 mac 110458 bytes_out 0 110458 bytes_in 0 110458 station_ip 83.122.89.78 110458 port 45 110458 unique_id port 110458 remote_ip 10.8.0.154 110459 username hashtadani3 110459 mac 110459 bytes_out 0 110459 bytes_in 0 110459 station_ip 83.122.89.78 110459 port 32 110459 unique_id port 110459 remote_ip 10.8.0.154 110463 username tahmasebi 110463 mac 110463 bytes_out 0 110463 bytes_in 0 110463 station_ip 5.120.176.53 110463 port 34 110463 unique_id port 110463 remote_ip 10.8.0.42 110464 username tahmasebi 110464 mac 110464 bytes_out 0 110464 bytes_in 0 110464 station_ip 5.119.117.36 110464 port 46 110464 unique_id port 110464 remote_ip 10.8.0.42 110465 username hashtadani3 110465 mac 110465 bytes_out 2217 110465 bytes_in 4494 110465 station_ip 83.122.89.78 110465 port 45 110465 unique_id port 110465 remote_ip 10.8.0.154 110470 username mohammadmahdi 110470 mac 110470 bytes_out 358860 110470 bytes_in 3275140 110470 station_ip 5.120.136.254 110470 port 32 110470 unique_id port 110470 remote_ip 10.8.0.54 110472 username tahmasebi 110472 kill_reason Another user logged on this global unique id 110472 mac 110472 bytes_out 0 110472 bytes_in 0 110472 station_ip 5.119.117.36 110472 port 34 110472 unique_id port 110472 remote_ip 10.8.0.42 110473 username hashtadani3 110473 mac 110473 bytes_out 0 110473 bytes_in 0 110473 station_ip 83.122.89.78 110473 port 15 110473 unique_id port 110473 remote_ip 10.8.1.94 110475 username kordestani 110475 kill_reason Another user logged on this global unique id 110475 mac 110475 bytes_out 0 110475 bytes_in 0 110475 station_ip 151.235.124.27 110475 port 41 110475 unique_id port 110479 username tahmasebi 110479 kill_reason Another user logged on this global unique id 110479 mac 110479 bytes_out 0 110479 bytes_in 0 110479 station_ip 5.119.117.36 110479 port 34 110479 unique_id port 110480 username hashtadani3 110480 mac 110480 bytes_out 0 110480 bytes_in 0 110480 station_ip 83.123.8.10 110480 port 32 110480 unique_id port 110480 remote_ip 10.8.0.154 110481 username amirabbas 110481 kill_reason Maximum check online fails reached 110481 unique_id port 110481 bytes_out 14918784 110481 bytes_in 391325288 110481 station_ip 188.245.91.191 110481 port 15729125 110481 nas_port_type Virtual 110481 remote_ip 5.5.5.52 110484 username hashtadani3 110484 mac 110484 bytes_out 0 110484 bytes_in 0 110484 station_ip 83.123.8.10 110484 port 49 110484 unique_id port 110484 remote_ip 10.8.0.154 110485 username arman1 110485 mac 110485 bytes_out 0 110485 bytes_in 0 110485 station_ip 5.119.211.215 110485 port 44 110485 unique_id port 110488 username tahmasebi 110488 kill_reason Another user logged on this global unique id 110488 mac 110488 bytes_out 0 110488 bytes_in 0 110488 station_ip 5.119.117.36 110488 port 34 110488 unique_id port 110489 username alireza 110489 unique_id port 110489 terminate_cause User-Request 110489 bytes_out 1433 110489 bytes_in 280 110489 station_ip 5.120.60.241 110489 port 15729127 110489 nas_port_type Virtual 110489 remote_ip 5.5.5.55 110492 username hashtadani3 110492 mac 110492 bytes_out 0 110492 bytes_in 0 110492 station_ip 83.123.8.10 110492 port 44 110492 unique_id port 110492 remote_ip 10.8.0.154 110494 username hashtadani3 110494 mac 110494 bytes_out 0 110494 bytes_in 0 110494 station_ip 83.123.8.10 110494 port 44 110494 unique_id port 110494 remote_ip 10.8.0.154 110497 username hashtadani3 110497 mac 110497 bytes_out 2429 110497 bytes_in 4706 110497 station_ip 83.123.8.10 110497 port 44 110497 unique_id port 110497 remote_ip 10.8.0.154 110500 username hashtadani3 110500 mac 110500 bytes_out 0 110500 bytes_in 0 110500 station_ip 83.123.8.10 110500 port 15 110500 unique_id port 110500 remote_ip 10.8.1.94 110501 username hashtadani3 110501 mac 110501 bytes_out 2490 110501 bytes_in 4857 110501 station_ip 83.123.8.10 110501 port 15 110501 unique_id port 110501 remote_ip 10.8.1.94 110503 username hashtadani3 110503 mac 110503 bytes_out 0 110503 bytes_in 0 110503 station_ip 83.123.8.10 110503 port 15 110503 unique_id port 110503 remote_ip 10.8.1.94 110504 username kordestani 110504 mac 110504 bytes_out 0 110504 bytes_in 0 110504 station_ip 151.235.124.27 110504 port 41 110504 unique_id port 110506 username hashtadani3 110506 mac 110506 bytes_out 0 110506 bytes_in 0 110506 station_ip 83.123.8.10 110506 port 15 110506 unique_id port 110506 remote_ip 10.8.1.94 110507 username hashtadani3 110507 mac 110507 bytes_out 0 110507 bytes_in 0 110507 station_ip 83.123.8.10 110507 port 32 110507 unique_id port 110507 remote_ip 10.8.0.154 110508 username hashtadani3 110508 mac 110508 bytes_out 0 110508 bytes_in 0 110508 station_ip 83.123.8.10 110508 port 15 110508 unique_id port 110508 remote_ip 10.8.1.94 110509 username hashtadani3 110509 mac 110509 bytes_out 0 110509 bytes_in 0 110509 station_ip 83.123.8.10 110509 port 41 110509 unique_id port 110509 remote_ip 10.8.0.154 110513 username hashtadani3 110513 mac 110513 bytes_out 0 110513 bytes_in 0 110513 station_ip 83.123.8.10 110513 port 41 110513 unique_id port 110513 remote_ip 10.8.0.154 110514 username hashtadani3 110514 mac 110514 bytes_out 0 110514 bytes_in 0 110514 station_ip 83.123.8.10 110514 port 15 110514 unique_id port 110514 remote_ip 10.8.1.94 110516 username rajaei 110516 mac 110516 bytes_out 7960 110516 bytes_in 8431 110516 station_ip 89.34.39.35 110516 port 32 110516 unique_id port 110516 remote_ip 10.8.0.34 110518 username zare 110518 kill_reason Another user logged on this global unique id 110518 mac 110518 bytes_out 0 110518 bytes_in 0 110518 station_ip 37.27.48.235 110518 port 19 110518 unique_id port 110521 username hashtadani3 110521 mac 110521 bytes_out 0 110521 bytes_in 0 110521 station_ip 83.123.8.10 110521 port 32 110521 unique_id port 110521 remote_ip 10.8.0.154 110523 username hashtadani3 110523 mac 110523 bytes_out 0 110523 bytes_in 0 110523 station_ip 83.123.8.10 110523 port 32 110523 unique_id port 110523 remote_ip 10.8.0.154 110525 username hashtadani3 110525 mac 110525 bytes_out 0 110525 bytes_in 0 110525 station_ip 83.123.8.10 110525 port 32 110525 unique_id port 110525 remote_ip 10.8.0.154 110526 username hashtadani3 110526 mac 110526 bytes_out 0 110526 bytes_in 0 110526 station_ip 83.123.8.10 110526 port 32 110526 unique_id port 110526 remote_ip 10.8.0.154 110527 username hashtadani3 110527 mac 110527 bytes_out 0 110527 bytes_in 0 110527 station_ip 83.123.8.10 110527 port 32 110527 unique_id port 110527 remote_ip 10.8.0.154 110530 username hashtadani3 110530 mac 110530 bytes_out 0 110530 bytes_in 0 110530 station_ip 83.123.8.10 110530 port 32 110530 unique_id port 110517 mac 110517 bytes_out 0 110517 bytes_in 0 110517 station_ip 83.123.8.10 110517 port 32 110517 unique_id port 110517 remote_ip 10.8.0.154 110519 username hashtadani3 110519 mac 110519 bytes_out 0 110519 bytes_in 0 110519 station_ip 83.123.8.10 110519 port 32 110519 unique_id port 110519 remote_ip 10.8.0.154 110522 username hashtadani3 110522 mac 110522 bytes_out 0 110522 bytes_in 0 110522 station_ip 83.123.8.10 110522 port 32 110522 unique_id port 110522 remote_ip 10.8.0.154 110524 username afarin1 110524 mac 110524 bytes_out 0 110524 bytes_in 0 110524 station_ip 83.122.185.242 110524 port 16 110524 unique_id port 110524 remote_ip 10.8.1.114 110528 username hashtadani3 110528 mac 110528 bytes_out 0 110528 bytes_in 0 110528 station_ip 83.123.8.10 110528 port 32 110528 unique_id port 110528 remote_ip 10.8.0.154 110531 username hashtadani3 110531 mac 110531 bytes_out 0 110531 bytes_in 0 110531 station_ip 83.123.8.10 110531 port 32 110531 unique_id port 110531 remote_ip 10.8.0.154 110532 username hashtadani3 110532 mac 110532 bytes_out 0 110532 bytes_in 0 110532 station_ip 83.123.8.10 110532 port 16 110532 unique_id port 110532 remote_ip 10.8.1.94 110535 username hashtadani3 110535 mac 110535 bytes_out 0 110535 bytes_in 0 110535 station_ip 83.123.8.10 110535 port 32 110535 unique_id port 110535 remote_ip 10.8.0.154 110537 username hashtadani3 110537 mac 110537 bytes_out 0 110537 bytes_in 0 110537 station_ip 83.123.8.10 110537 port 32 110537 unique_id port 110537 remote_ip 10.8.0.154 110539 username hashtadani3 110539 mac 110539 bytes_out 0 110539 bytes_in 0 110539 station_ip 83.123.8.10 110539 port 16 110539 unique_id port 110539 remote_ip 10.8.1.94 110540 username tahmasebi 110540 kill_reason Another user logged on this global unique id 110540 mac 110540 bytes_out 0 110540 bytes_in 0 110540 station_ip 5.119.117.36 110540 port 34 110540 unique_id port 110543 username hashtadani3 110543 mac 110543 bytes_out 0 110543 bytes_in 0 110543 station_ip 83.123.8.10 110543 port 16 110543 unique_id port 110543 remote_ip 10.8.1.94 110545 username hashtadani3 110545 mac 110545 bytes_out 0 110545 bytes_in 0 110545 station_ip 83.123.8.10 110545 port 32 110545 unique_id port 110545 remote_ip 10.8.0.154 110548 username hashtadani3 110548 mac 110548 bytes_out 0 110548 bytes_in 0 110548 station_ip 83.123.8.10 110548 port 16 110548 unique_id port 110548 remote_ip 10.8.1.94 110551 username kordestani 110551 mac 110551 bytes_out 0 110551 bytes_in 0 110551 station_ip 151.235.102.46 110551 port 44 110551 unique_id port 110556 username afarin1 110556 mac 110556 bytes_out 0 110556 bytes_in 0 110556 station_ip 83.122.185.242 110556 port 15 110556 unique_id port 110556 remote_ip 10.8.1.114 110566 username hashtadani3 110566 mac 110566 bytes_out 0 110566 bytes_in 0 110566 station_ip 83.123.8.10 110566 port 44 110566 unique_id port 110566 remote_ip 10.8.0.154 110568 username hashtadani3 110568 mac 110568 bytes_out 0 110568 bytes_in 0 110568 station_ip 83.123.8.10 110568 port 44 110568 unique_id port 110568 remote_ip 10.8.0.154 110570 username hashtadani3 110570 mac 110570 bytes_out 0 110570 bytes_in 0 110570 station_ip 83.123.8.10 110570 port 44 110570 unique_id port 110570 remote_ip 10.8.0.154 110572 username hashtadani3 110572 mac 110572 bytes_out 0 110572 bytes_in 0 110572 station_ip 83.123.8.10 110572 port 44 110572 unique_id port 110529 station_ip 83.123.8.10 110529 port 32 110529 unique_id port 110529 remote_ip 10.8.0.154 110533 username hashtadani3 110533 mac 110533 bytes_out 0 110533 bytes_in 0 110533 station_ip 83.123.8.10 110533 port 32 110533 unique_id port 110533 remote_ip 10.8.0.154 110536 username hashtadani3 110536 mac 110536 bytes_out 0 110536 bytes_in 0 110536 station_ip 83.123.8.10 110536 port 32 110536 unique_id port 110536 remote_ip 10.8.0.154 110541 username hashtadani3 110541 mac 110541 bytes_out 0 110541 bytes_in 0 110541 station_ip 83.123.8.10 110541 port 16 110541 unique_id port 110541 remote_ip 10.8.1.94 110546 username hashtadani3 110546 mac 110546 bytes_out 0 110546 bytes_in 0 110546 station_ip 83.123.8.10 110546 port 16 110546 unique_id port 110546 remote_ip 10.8.1.94 110549 username hashtadani3 110549 mac 110549 bytes_out 0 110549 bytes_in 0 110549 station_ip 83.123.8.10 110549 port 32 110549 unique_id port 110549 remote_ip 10.8.0.154 110552 username hashtadani3 110552 mac 110552 bytes_out 0 110552 bytes_in 0 110552 station_ip 83.123.8.10 110552 port 32 110552 unique_id port 110552 remote_ip 10.8.0.154 110554 username reza2742 110554 unique_id port 110554 terminate_cause Lost-Carrier 110554 bytes_out 233788 110554 bytes_in 3675553 110554 station_ip 5.202.6.121 110554 port 15729129 110554 nas_port_type Virtual 110554 remote_ip 5.5.5.58 110558 username hashtadani3 110558 mac 110558 bytes_out 0 110558 bytes_in 0 110558 station_ip 83.123.8.10 110558 port 32 110558 unique_id port 110558 remote_ip 10.8.0.154 110562 username musa 110562 mac 110562 bytes_out 0 110562 bytes_in 0 110562 station_ip 89.196.185.213 110562 port 47 110562 unique_id port 110565 username tahmasebi 110565 kill_reason Another user logged on this global unique id 110565 mac 110565 bytes_out 0 110565 bytes_in 0 110565 station_ip 5.119.117.36 110565 port 34 110565 unique_id port 110569 username hashtadani3 110569 mac 110569 bytes_out 0 110569 bytes_in 0 110569 station_ip 83.123.8.10 110569 port 44 110569 unique_id port 110569 remote_ip 10.8.0.154 110574 username zare 110574 kill_reason Another user logged on this global unique id 110574 mac 110574 bytes_out 0 110574 bytes_in 0 110574 station_ip 37.27.48.235 110574 port 19 110574 unique_id port 110578 username hashtadani3 110578 mac 110578 bytes_out 0 110578 bytes_in 0 110578 station_ip 83.123.8.10 110578 port 44 110578 unique_id port 110578 remote_ip 10.8.0.154 110583 username hashtadani3 110583 mac 110583 bytes_out 0 110583 bytes_in 0 110583 station_ip 83.123.8.10 110583 port 44 110583 unique_id port 110583 remote_ip 10.8.0.154 110585 username hashtadani3 110585 mac 110585 bytes_out 0 110585 bytes_in 0 110585 station_ip 83.123.8.10 110585 port 44 110585 unique_id port 110585 remote_ip 10.8.0.154 110588 username hashtadani3 110588 mac 110588 bytes_out 0 110588 bytes_in 0 110588 station_ip 83.123.8.10 110588 port 44 110588 unique_id port 110588 remote_ip 10.8.0.154 110592 username hashtadani3 110592 mac 110592 bytes_out 0 110592 bytes_in 0 110592 station_ip 83.123.8.10 110592 port 16 110592 unique_id port 110592 remote_ip 10.8.1.94 110595 username hashtadani3 110595 mac 110595 bytes_out 0 110595 bytes_in 0 110595 station_ip 83.123.8.10 110595 port 44 110595 unique_id port 110595 remote_ip 10.8.0.154 110596 username hashtadani3 110596 mac 110596 bytes_out 0 110596 bytes_in 0 110596 station_ip 83.123.8.10 110596 port 44 110596 unique_id port 110530 remote_ip 10.8.0.154 110534 username hashtadani3 110534 mac 110534 bytes_out 0 110534 bytes_in 0 110534 station_ip 83.123.8.10 110534 port 32 110534 unique_id port 110534 remote_ip 10.8.0.154 110538 username hashtadani3 110538 mac 110538 bytes_out 0 110538 bytes_in 0 110538 station_ip 83.123.8.10 110538 port 49 110538 unique_id port 110538 remote_ip 10.8.0.154 110542 username zare 110542 kill_reason Another user logged on this global unique id 110542 mac 110542 bytes_out 0 110542 bytes_in 0 110542 station_ip 37.27.48.235 110542 port 19 110542 unique_id port 110544 username kordestani 110544 kill_reason Another user logged on this global unique id 110544 mac 110544 bytes_out 0 110544 bytes_in 0 110544 station_ip 151.235.102.46 110544 port 44 110544 unique_id port 110544 remote_ip 10.8.0.134 110547 username hashtadani3 110547 mac 110547 bytes_out 0 110547 bytes_in 0 110547 station_ip 83.123.8.10 110547 port 32 110547 unique_id port 110547 remote_ip 10.8.0.154 110550 username afarin1 110550 mac 110550 bytes_out 0 110550 bytes_in 0 110550 station_ip 83.122.185.242 110550 port 15 110550 unique_id port 110550 remote_ip 10.8.1.114 110553 username hashtadani3 110553 mac 110553 bytes_out 0 110553 bytes_in 0 110553 station_ip 83.123.8.10 110553 port 16 110553 unique_id port 110553 remote_ip 10.8.1.94 110555 username hashtadani3 110555 mac 110555 bytes_out 0 110555 bytes_in 0 110555 station_ip 83.123.8.10 110555 port 32 110555 unique_id port 110555 remote_ip 10.8.0.154 110557 username hashtadani3 110557 mac 110557 bytes_out 0 110557 bytes_in 0 110557 station_ip 83.123.8.10 110557 port 16 110557 unique_id port 110557 remote_ip 10.8.1.94 110559 username hashtadani3 110559 mac 110559 bytes_out 0 110559 bytes_in 0 110559 station_ip 83.123.8.10 110559 port 32 110559 unique_id port 110559 remote_ip 10.8.0.154 110560 username hashtadani3 110560 mac 110560 bytes_out 0 110560 bytes_in 0 110560 station_ip 83.123.8.10 110560 port 44 110560 unique_id port 110560 remote_ip 10.8.0.154 110561 username hashtadani3 110561 mac 110561 bytes_out 0 110561 bytes_in 0 110561 station_ip 83.123.8.10 110561 port 44 110561 unique_id port 110561 remote_ip 10.8.0.154 110563 username hashtadani3 110563 mac 110563 bytes_out 0 110563 bytes_in 0 110563 station_ip 83.123.8.10 110563 port 44 110563 unique_id port 110563 remote_ip 10.8.0.154 110564 username hashtadani3 110564 mac 110564 bytes_out 0 110564 bytes_in 0 110564 station_ip 83.123.8.10 110564 port 44 110564 unique_id port 110564 remote_ip 10.8.0.154 110567 username aminvpn 110567 unique_id port 110567 terminate_cause Lost-Carrier 110567 bytes_out 1460466 110567 bytes_in 21179696 110567 station_ip 5.120.65.69 110567 port 15729126 110567 nas_port_type Virtual 110567 remote_ip 5.5.5.53 110571 username alireza 110571 unique_id port 110571 terminate_cause User-Request 110571 bytes_out 2646481 110571 bytes_in 40832078 110571 station_ip 5.120.60.241 110571 port 15729128 110571 nas_port_type Virtual 110571 remote_ip 5.5.5.56 110575 username hashtadani3 110575 mac 110575 bytes_out 0 110575 bytes_in 0 110575 station_ip 83.123.8.10 110575 port 16 110575 unique_id port 110575 remote_ip 10.8.1.94 110579 username hashtadani3 110579 mac 110579 bytes_out 0 110579 bytes_in 0 110579 station_ip 83.123.8.10 110579 port 44 110579 unique_id port 110579 remote_ip 10.8.0.154 110582 username tahmasebi 110582 kill_reason Another user logged on this global unique id 110582 mac 110582 bytes_out 0 110582 bytes_in 0 110572 remote_ip 10.8.0.154 110573 username hashtadani3 110573 mac 110573 bytes_out 0 110573 bytes_in 0 110573 station_ip 83.123.8.10 110573 port 16 110573 unique_id port 110573 remote_ip 10.8.1.94 110576 username hashtadani3 110576 mac 110576 bytes_out 0 110576 bytes_in 0 110576 station_ip 83.123.8.10 110576 port 44 110576 unique_id port 110576 remote_ip 10.8.0.154 110577 username hashtadani3 110577 mac 110577 bytes_out 0 110577 bytes_in 0 110577 station_ip 83.123.8.10 110577 port 44 110577 unique_id port 110577 remote_ip 10.8.0.154 110580 username hashtadani3 110580 mac 110580 bytes_out 0 110580 bytes_in 0 110580 station_ip 83.123.8.10 110580 port 44 110580 unique_id port 110580 remote_ip 10.8.0.154 110581 username hashtadani3 110581 mac 110581 bytes_out 0 110581 bytes_in 0 110581 station_ip 83.123.8.10 110581 port 44 110581 unique_id port 110581 remote_ip 10.8.0.154 110584 username kordestani 110584 kill_reason Another user logged on this global unique id 110584 mac 110584 bytes_out 0 110584 bytes_in 0 110584 station_ip 151.235.102.46 110584 port 32 110584 unique_id port 110584 remote_ip 10.8.0.134 110587 username hashtadani3 110587 mac 110587 bytes_out 0 110587 bytes_in 0 110587 station_ip 83.123.8.10 110587 port 44 110587 unique_id port 110587 remote_ip 10.8.0.154 110591 username hashtadani3 110591 mac 110591 bytes_out 0 110591 bytes_in 0 110591 station_ip 83.123.8.10 110591 port 44 110591 unique_id port 110591 remote_ip 10.8.0.154 110594 username hashtadani3 110594 mac 110594 bytes_out 0 110594 bytes_in 0 110594 station_ip 83.123.8.10 110594 port 44 110594 unique_id port 110594 remote_ip 10.8.0.154 110600 username zare 110600 kill_reason Another user logged on this global unique id 110600 mac 110600 bytes_out 0 110600 bytes_in 0 110600 station_ip 37.27.48.235 110600 port 19 110600 unique_id port 110603 username hashtadani3 110603 mac 110603 bytes_out 0 110603 bytes_in 0 110603 station_ip 83.123.8.10 110603 port 48 110603 unique_id port 110603 remote_ip 10.8.0.154 110609 username hashtadani3 110609 mac 110609 bytes_out 0 110609 bytes_in 0 110609 station_ip 83.123.8.10 110609 port 48 110609 unique_id port 110609 remote_ip 10.8.0.154 110614 username hashtadani3 110614 mac 110614 bytes_out 0 110614 bytes_in 0 110614 station_ip 83.123.8.10 110614 port 47 110614 unique_id port 110614 remote_ip 10.8.0.154 110617 username hashtadani3 110617 mac 110617 bytes_out 0 110617 bytes_in 0 110617 station_ip 83.123.8.10 110617 port 47 110617 unique_id port 110617 remote_ip 10.8.0.154 110618 username hashtadani3 110618 mac 110618 bytes_out 0 110618 bytes_in 0 110618 station_ip 83.123.8.10 110618 port 16 110618 unique_id port 110618 remote_ip 10.8.1.94 110622 username hashtadani3 110622 mac 110622 bytes_out 0 110622 bytes_in 0 110622 station_ip 83.123.8.10 110622 port 47 110622 unique_id port 110622 remote_ip 10.8.0.154 110623 username zare 110623 kill_reason Another user logged on this global unique id 110623 mac 110623 bytes_out 0 110623 bytes_in 0 110623 station_ip 37.27.48.235 110623 port 19 110623 unique_id port 110625 username hashtadani3 110625 mac 110625 bytes_out 0 110625 bytes_in 0 110625 station_ip 83.123.8.10 110625 port 47 110625 unique_id port 110625 remote_ip 10.8.0.154 110626 username hashtadani3 110626 mac 110626 bytes_out 2403 110626 bytes_in 4768 110626 station_ip 83.123.8.10 110626 port 47 110626 unique_id port 110626 remote_ip 10.8.0.154 110582 station_ip 5.119.117.36 110582 port 34 110582 unique_id port 110586 username hashtadani3 110586 mac 110586 bytes_out 0 110586 bytes_in 0 110586 station_ip 83.123.8.10 110586 port 44 110586 unique_id port 110586 remote_ip 10.8.0.154 110589 username hashtadani3 110589 mac 110589 bytes_out 0 110589 bytes_in 0 110589 station_ip 83.123.8.10 110589 port 44 110589 unique_id port 110589 remote_ip 10.8.0.154 110590 username hashtadani3 110590 mac 110590 bytes_out 0 110590 bytes_in 0 110590 station_ip 83.123.8.10 110590 port 44 110590 unique_id port 110590 remote_ip 10.8.0.154 110593 username hashtadani3 110593 mac 110593 bytes_out 0 110593 bytes_in 0 110593 station_ip 83.123.8.10 110593 port 44 110593 unique_id port 110593 remote_ip 10.8.0.154 110598 username rajaei 110598 mac 110598 bytes_out 30485 110598 bytes_in 57257 110598 station_ip 89.34.39.35 110598 port 48 110598 unique_id port 110598 remote_ip 10.8.0.34 110602 username hashtadani3 110602 mac 110602 bytes_out 0 110602 bytes_in 0 110602 station_ip 83.123.8.10 110602 port 48 110602 unique_id port 110602 remote_ip 10.8.0.154 110606 username hashtadani3 110606 kill_reason Maximum check online fails reached 110606 mac 110606 bytes_out 0 110606 bytes_in 0 110606 station_ip 83.123.8.10 110606 port 44 110606 unique_id port 110608 username hashtadani3 110608 mac 110608 bytes_out 0 110608 bytes_in 0 110608 station_ip 83.123.8.10 110608 port 16 110608 unique_id port 110608 remote_ip 10.8.1.94 110610 username rajaei 110610 mac 110610 bytes_out 980380 110610 bytes_in 4181030 110610 station_ip 89.32.102.132 110610 port 47 110610 unique_id port 110610 remote_ip 10.8.0.34 110612 username hashtadani3 110612 mac 110612 bytes_out 0 110612 bytes_in 0 110612 station_ip 83.123.8.10 110612 port 47 110612 unique_id port 110612 remote_ip 10.8.0.154 110613 username hashtadani3 110613 mac 110613 bytes_out 0 110613 bytes_in 0 110613 station_ip 83.123.8.10 110613 port 16 110613 unique_id port 110613 remote_ip 10.8.1.94 110616 username tahmasebi 110616 kill_reason Another user logged on this global unique id 110616 mac 110616 bytes_out 0 110616 bytes_in 0 110616 station_ip 5.119.117.36 110616 port 34 110616 unique_id port 110621 username kordestani 110621 kill_reason Another user logged on this global unique id 110621 mac 110621 bytes_out 0 110621 bytes_in 0 110621 station_ip 151.235.102.46 110621 port 32 110621 unique_id port 110628 username hashtadani3 110628 mac 110628 bytes_out 0 110628 bytes_in 0 110628 station_ip 83.123.8.10 110628 port 47 110628 unique_id port 110628 remote_ip 10.8.0.154 110633 username hashtadani3 110633 kill_reason Maximum check online fails reached 110633 mac 110633 bytes_out 0 110633 bytes_in 0 110633 station_ip 83.123.8.10 110633 port 16 110633 unique_id port 110636 username hashtadani3 110636 mac 110636 bytes_out 0 110636 bytes_in 0 110636 station_ip 83.123.8.10 110636 port 49 110636 unique_id port 110636 remote_ip 10.8.0.154 110638 username hashtadani3 110638 mac 110638 bytes_out 0 110638 bytes_in 0 110638 station_ip 83.123.8.10 110638 port 18 110638 unique_id port 110638 remote_ip 10.8.1.94 110640 username hashtadani3 110640 mac 110640 bytes_out 0 110640 bytes_in 0 110640 station_ip 83.123.8.10 110640 port 49 110640 unique_id port 110640 remote_ip 10.8.0.154 110641 username hashtadani3 110641 mac 110641 bytes_out 0 110641 bytes_in 0 110641 station_ip 83.123.8.10 110641 port 49 110641 unique_id port 110641 remote_ip 10.8.0.154 110596 remote_ip 10.8.0.154 110597 username hashtadani3 110597 mac 110597 bytes_out 0 110597 bytes_in 0 110597 station_ip 83.123.8.10 110597 port 47 110597 unique_id port 110597 remote_ip 10.8.0.154 110599 username hashtadani3 110599 mac 110599 bytes_out 0 110599 bytes_in 0 110599 station_ip 83.123.8.10 110599 port 47 110599 unique_id port 110599 remote_ip 10.8.0.154 110601 username hashtadani3 110601 mac 110601 bytes_out 0 110601 bytes_in 0 110601 station_ip 83.123.8.10 110601 port 16 110601 unique_id port 110601 remote_ip 10.8.1.94 110604 username hashtadani3 110604 mac 110604 bytes_out 0 110604 bytes_in 0 110604 station_ip 83.123.8.10 110604 port 48 110604 unique_id port 110604 remote_ip 10.8.0.154 110605 username hashtadani3 110605 mac 110605 bytes_out 0 110605 bytes_in 0 110605 station_ip 83.123.8.10 110605 port 48 110605 unique_id port 110605 remote_ip 10.8.0.154 110607 username hashtadani3 110607 mac 110607 bytes_out 0 110607 bytes_in 0 110607 station_ip 83.123.8.10 110607 port 48 110607 unique_id port 110607 remote_ip 10.8.0.154 110611 username hashtadani3 110611 mac 110611 bytes_out 0 110611 bytes_in 0 110611 station_ip 83.123.8.10 110611 port 48 110611 unique_id port 110611 remote_ip 10.8.0.154 110615 username hashtadani3 110615 mac 110615 bytes_out 0 110615 bytes_in 0 110615 station_ip 83.123.8.10 110615 port 47 110615 unique_id port 110615 remote_ip 10.8.0.154 110619 username hashtadani3 110619 mac 110619 bytes_out 0 110619 bytes_in 0 110619 station_ip 83.123.8.10 110619 port 47 110619 unique_id port 110619 remote_ip 10.8.0.154 110620 username hashtadani3 110620 mac 110620 bytes_out 0 110620 bytes_in 0 110620 station_ip 83.123.8.10 110620 port 47 110620 unique_id port 110620 remote_ip 10.8.0.154 110624 username hashtadani3 110624 mac 110624 bytes_out 0 110624 bytes_in 0 110624 station_ip 83.123.8.10 110624 port 47 110624 unique_id port 110624 remote_ip 10.8.0.154 110627 username hashtadani3 110627 mac 110627 bytes_out 0 110627 bytes_in 0 110627 station_ip 83.123.8.10 110627 port 47 110627 unique_id port 110627 remote_ip 10.8.0.154 110629 username hashtadani3 110629 mac 110629 bytes_out 0 110629 bytes_in 0 110629 station_ip 83.123.8.10 110629 port 16 110629 unique_id port 110629 remote_ip 10.8.1.94 110630 username hashtadani3 110630 mac 110630 bytes_out 0 110630 bytes_in 0 110630 station_ip 83.123.8.10 110630 port 49 110630 unique_id port 110630 remote_ip 10.8.0.154 110635 username zare 110635 kill_reason Another user logged on this global unique id 110635 mac 110635 bytes_out 0 110635 bytes_in 0 110635 station_ip 37.27.48.235 110635 port 19 110635 unique_id port 110637 username hashtadani3 110637 mac 110637 bytes_out 0 110637 bytes_in 0 110637 station_ip 83.123.8.10 110637 port 49 110637 unique_id port 110637 remote_ip 10.8.0.154 110639 username aminvpn 110639 mac 110639 bytes_out 0 110639 bytes_in 0 110639 station_ip 83.122.82.74 110639 port 17 110639 unique_id port 110639 remote_ip 10.8.1.6 110645 username aminvpn 110645 unique_id port 110645 terminate_cause User-Request 110645 bytes_out 1193831 110645 bytes_in 15911929 110645 station_ip 5.120.65.69 110645 port 15729130 110645 nas_port_type Virtual 110645 remote_ip 5.5.5.59 110646 username hashtadani3 110646 mac 110646 bytes_out 0 110646 bytes_in 0 110646 station_ip 83.123.8.10 110646 port 17 110646 unique_id port 110646 remote_ip 10.8.1.94 110647 username mehdizare 110631 username hashtadani3 110631 mac 110631 bytes_out 0 110631 bytes_in 0 110631 station_ip 83.123.8.10 110631 port 49 110631 unique_id port 110631 remote_ip 10.8.0.154 110632 username hashtadani3 110632 mac 110632 bytes_out 0 110632 bytes_in 0 110632 station_ip 83.123.8.10 110632 port 18 110632 unique_id port 110632 remote_ip 10.8.1.94 110634 username hashtadani3 110634 mac 110634 bytes_out 0 110634 bytes_in 0 110634 station_ip 83.123.8.10 110634 port 49 110634 unique_id port 110634 remote_ip 10.8.0.154 110642 username mehdizare 110642 mac 110642 bytes_out 111057 110642 bytes_in 133333 110642 station_ip 5.120.13.2 110642 port 36 110642 unique_id port 110642 remote_ip 10.8.0.90 110649 username zare 110649 kill_reason Another user logged on this global unique id 110649 mac 110649 bytes_out 0 110649 bytes_in 0 110649 station_ip 37.27.48.235 110649 port 19 110649 unique_id port 110650 username mehdizare 110650 mac 110650 bytes_out 0 110650 bytes_in 0 110650 station_ip 5.120.13.2 110650 port 49 110650 unique_id port 110650 remote_ip 10.8.0.90 110659 username tahmasebi 110659 kill_reason Another user logged on this global unique id 110659 mac 110659 bytes_out 0 110659 bytes_in 0 110659 station_ip 5.119.117.36 110659 port 34 110659 unique_id port 110660 username aminvpn 110660 mac 110660 bytes_out 0 110660 bytes_in 0 110660 station_ip 83.122.82.74 110660 port 17 110660 unique_id port 110660 remote_ip 10.8.1.6 110661 username tahmasebi 110661 kill_reason Another user logged on this global unique id 110661 mac 110661 bytes_out 0 110661 bytes_in 0 110661 station_ip 5.119.117.36 110661 port 34 110661 unique_id port 110663 username tahmasebi 110663 kill_reason Another user logged on this global unique id 110663 mac 110663 bytes_out 0 110663 bytes_in 0 110663 station_ip 5.119.117.36 110663 port 34 110663 unique_id port 110665 username tahmasebi 110665 kill_reason Another user logged on this global unique id 110665 mac 110665 bytes_out 0 110665 bytes_in 0 110665 station_ip 5.119.117.36 110665 port 34 110665 unique_id port 110674 username tahmasebi 110674 kill_reason Another user logged on this global unique id 110674 mac 110674 bytes_out 0 110674 bytes_in 0 110674 station_ip 5.119.117.36 110674 port 34 110674 unique_id port 110675 username tahmasebi 110675 kill_reason Another user logged on this global unique id 110675 mac 110675 bytes_out 0 110675 bytes_in 0 110675 station_ip 5.119.117.36 110675 port 34 110675 unique_id port 110688 username houshang 110688 mac 110688 bytes_out 14847586 110688 bytes_in 50283333 110688 station_ip 5.119.145.22 110688 port 47 110688 unique_id port 110688 remote_ip 10.8.0.22 110689 username alireza 110689 unique_id port 110689 terminate_cause User-Request 110689 bytes_out 3087857 110689 bytes_in 38517576 110689 station_ip 5.120.60.241 110689 port 15729137 110689 nas_port_type Virtual 110689 remote_ip 5.5.5.66 110690 username alipour 110690 mac 110690 bytes_out 2257035 110690 bytes_in 30531333 110690 station_ip 83.122.226.36 110690 port 48 110690 unique_id port 110690 remote_ip 10.8.0.102 110695 username naeimeh 110695 mac 110695 bytes_out 193046 110695 bytes_in 775127 110695 station_ip 37.129.62.118 110695 port 36 110695 unique_id port 110695 remote_ip 10.8.0.78 110697 username tahmasebi 110697 kill_reason Another user logged on this global unique id 110697 mac 110697 bytes_out 0 110697 bytes_in 0 110697 station_ip 5.119.117.36 110697 port 34 110697 unique_id port 110704 username tahmasebi 110704 kill_reason Maximum check online fails reached 110704 mac 110704 bytes_out 0 110704 bytes_in 0 110643 username hashtadani3 110643 mac 110643 bytes_out 0 110643 bytes_in 0 110643 station_ip 83.123.8.10 110643 port 17 110643 unique_id port 110643 remote_ip 10.8.1.94 110644 username hashtadani3 110644 mac 110644 bytes_out 0 110644 bytes_in 0 110644 station_ip 83.123.8.10 110644 port 36 110644 unique_id port 110644 remote_ip 10.8.0.154 110648 username tahmasebi 110648 kill_reason Another user logged on this global unique id 110648 mac 110648 bytes_out 0 110648 bytes_in 0 110648 station_ip 5.119.117.36 110648 port 34 110648 unique_id port 110652 username mehdizare 110652 mac 110652 bytes_out 0 110652 bytes_in 0 110652 station_ip 5.120.13.2 110652 port 50 110652 unique_id port 110652 remote_ip 10.8.0.90 110653 username zare 110653 mac 110653 bytes_out 0 110653 bytes_in 0 110653 station_ip 37.27.48.235 110653 port 19 110653 unique_id port 110655 username mahdiyehalizadeh 110655 mac 110655 bytes_out 1524704 110655 bytes_in 24298398 110655 station_ip 83.122.2.110 110655 port 47 110655 unique_id port 110655 remote_ip 10.8.0.82 110656 username aminvpn 110656 mac 110656 bytes_out 15001 110656 bytes_in 28865 110656 station_ip 83.122.82.74 110656 port 17 110656 unique_id port 110656 remote_ip 10.8.1.6 110658 username kordestani 110658 kill_reason Another user logged on this global unique id 110658 mac 110658 bytes_out 0 110658 bytes_in 0 110658 station_ip 151.235.102.46 110658 port 32 110658 unique_id port 110664 username kordestani 110664 mac 110664 bytes_out 0 110664 bytes_in 0 110664 station_ip 151.235.102.46 110664 port 32 110664 unique_id port 110668 username tahmasebi 110668 kill_reason Another user logged on this global unique id 110668 mac 110668 bytes_out 0 110668 bytes_in 0 110668 station_ip 5.119.117.36 110668 port 34 110668 unique_id port 110669 username mehdizare 110669 mac 110669 bytes_out 0 110669 bytes_in 0 110669 station_ip 5.120.13.2 110669 port 41 110669 unique_id port 110669 remote_ip 10.8.0.90 110673 username tahmasebi 110673 kill_reason Another user logged on this global unique id 110673 mac 110673 bytes_out 0 110673 bytes_in 0 110673 station_ip 5.119.117.36 110673 port 34 110673 unique_id port 110677 username musa 110677 mac 110677 bytes_out 3317662 110677 bytes_in 46375681 110677 station_ip 89.196.213.182 110677 port 46 110677 unique_id port 110677 remote_ip 10.8.0.6 110679 username amirabbas 110679 unique_id port 110679 terminate_cause Lost-Carrier 110679 bytes_out 4630 110679 bytes_in 1377 110679 station_ip 188.245.91.191 110679 port 15729132 110679 nas_port_type Virtual 110679 remote_ip 5.5.5.62 110680 username tahmasebi 110680 kill_reason Another user logged on this global unique id 110680 mac 110680 bytes_out 0 110680 bytes_in 0 110680 station_ip 5.119.117.36 110680 port 34 110680 unique_id port 110683 username mehdizare 110683 mac 110683 bytes_out 48508 110683 bytes_in 573340 110683 station_ip 5.120.13.2 110683 port 32 110683 unique_id port 110683 remote_ip 10.8.0.90 110685 username tahmasebi 110685 kill_reason Maximum check online fails reached 110685 mac 110685 bytes_out 0 110685 bytes_in 0 110685 station_ip 5.119.117.36 110685 port 34 110685 unique_id port 110686 username mohammadjavad 110686 mac 110686 bytes_out 327522 110686 bytes_in 1470473 110686 station_ip 83.123.149.38 110686 port 46 110686 unique_id port 110686 remote_ip 10.8.0.142 110687 username aminvpn 110687 unique_id port 110687 terminate_cause Lost-Carrier 110687 bytes_out 1356420 110687 bytes_in 9179109 110687 station_ip 5.119.210.231 110687 port 15729138 110687 nas_port_type Virtual 110647 mac 110647 bytes_out 11596 110647 bytes_in 27696 110647 station_ip 5.120.13.2 110647 port 18 110647 unique_id port 110647 remote_ip 10.8.1.42 110651 username farhad1 110651 mac 110651 bytes_out 6083626 110651 bytes_in 47746049 110651 station_ip 5.120.68.50 110651 port 41 110651 unique_id port 110651 remote_ip 10.8.0.26 110654 username kordestani 110654 kill_reason Another user logged on this global unique id 110654 mac 110654 bytes_out 0 110654 bytes_in 0 110654 station_ip 151.235.102.46 110654 port 32 110654 unique_id port 110657 username tahmasebi 110657 kill_reason Another user logged on this global unique id 110657 mac 110657 bytes_out 0 110657 bytes_in 0 110657 station_ip 5.119.117.36 110657 port 34 110657 unique_id port 110662 username mohammadmahdi 110662 mac 110662 bytes_out 699455 110662 bytes_in 5274272 110662 station_ip 5.120.136.254 110662 port 46 110662 unique_id port 110662 remote_ip 10.8.0.54 110666 username hashtadani3 110666 mac 110666 bytes_out 0 110666 bytes_in 0 110666 station_ip 83.123.8.10 110666 port 36 110666 unique_id port 110666 remote_ip 10.8.0.154 110667 username ahmadi 110667 unique_id port 110667 terminate_cause User-Request 110667 bytes_out 23814 110667 bytes_in 118693 110667 station_ip 37.129.42.47 110667 port 15729131 110667 nas_port_type Virtual 110667 remote_ip 5.5.5.61 110670 username mehdizare 110670 mac 110670 bytes_out 0 110670 bytes_in 0 110670 station_ip 5.120.13.2 110670 port 32 110670 unique_id port 110670 remote_ip 10.8.0.90 110671 username tahmasebi 110671 kill_reason Another user logged on this global unique id 110671 mac 110671 bytes_out 0 110671 bytes_in 0 110671 station_ip 5.119.117.36 110671 port 34 110671 unique_id port 110672 username mirzaei 110672 kill_reason Another user logged on this global unique id 110672 mac 110672 bytes_out 0 110672 bytes_in 0 110672 station_ip 5.120.182.49 110672 port 26 110672 unique_id port 110676 username afarin1 110676 mac 110676 bytes_out 268026 110676 bytes_in 583414 110676 station_ip 83.122.185.242 110676 port 15 110676 unique_id port 110676 remote_ip 10.8.1.114 110678 username amirabbas 110678 unique_id port 110678 terminate_cause User-Request 110678 bytes_out 423137 110678 bytes_in 11042100 110678 station_ip 188.245.91.191 110678 port 15729133 110678 nas_port_type Virtual 110678 remote_ip 5.5.5.63 110681 username hashtadani3 110681 mac 110681 bytes_out 0 110681 bytes_in 0 110681 station_ip 83.123.8.10 110681 port 41 110681 unique_id port 110681 remote_ip 10.8.0.154 110682 username mehdizare 110682 mac 110682 bytes_out 227538 110682 bytes_in 340520 110682 station_ip 5.120.13.2 110682 port 32 110682 unique_id port 110682 remote_ip 10.8.0.90 110684 username rajaei 110684 kill_reason Another user logged on this global unique id 110684 mac 110684 bytes_out 0 110684 bytes_in 0 110684 station_ip 94.24.83.186 110684 port 41 110684 unique_id port 110684 remote_ip 10.8.0.34 110691 username tahmasebi 110691 kill_reason Another user logged on this global unique id 110691 mac 110691 bytes_out 0 110691 bytes_in 0 110691 station_ip 5.119.117.36 110691 port 34 110691 unique_id port 110692 username ahmadipour 110692 unique_id port 110692 terminate_cause Lost-Carrier 110692 bytes_out 249484 110692 bytes_in 4838205 110692 station_ip 83.122.201.88 110692 port 15729140 110692 nas_port_type Virtual 110692 remote_ip 5.5.5.79 110699 username kordestani 110699 mac 110699 bytes_out 2429129 110699 bytes_in 42097129 110699 station_ip 83.122.156.113 110699 port 46 110699 unique_id port 110699 remote_ip 10.8.0.134 110701 username afarin1 110701 mac 110687 remote_ip 5.5.5.68 110693 username avaanna 110693 mac 110693 bytes_out 254613 110693 bytes_in 931675 110693 station_ip 83.122.159.158 110693 port 36 110693 unique_id port 110693 remote_ip 10.8.0.98 110694 username aminvpn 110694 unique_id port 110694 terminate_cause Lost-Carrier 110694 bytes_out 242754 110694 bytes_in 814401 110694 station_ip 5.119.210.231 110694 port 15729139 110694 nas_port_type Virtual 110694 remote_ip 5.5.5.69 110696 username rajaei 110696 mac 110696 bytes_out 0 110696 bytes_in 0 110696 station_ip 94.24.83.186 110696 port 41 110696 unique_id port 110698 username alipour 110698 mac 110698 bytes_out 128769 110698 bytes_in 645185 110698 station_ip 83.122.226.36 110698 port 46 110698 unique_id port 110698 remote_ip 10.8.0.102 110700 username mahdiyehalizadeh 110700 mac 110700 bytes_out 51926 110700 bytes_in 267905 110700 station_ip 37.129.52.241 110700 port 47 110700 unique_id port 110700 remote_ip 10.8.0.82 110702 username malekpoir 110702 mac 110702 bytes_out 350152 110702 bytes_in 4073680 110702 station_ip 5.119.228.82 110702 port 46 110702 unique_id port 110702 remote_ip 10.8.0.58 110706 username mahdiyehalizadeh 110706 mac 110706 bytes_out 0 110706 bytes_in 0 110706 station_ip 37.129.52.241 110706 port 50 110706 unique_id port 110706 remote_ip 10.8.0.82 110710 username sedighe 110710 mac 110710 bytes_out 51991 110710 bytes_in 289562 110710 station_ip 83.123.135.119 110710 port 46 110710 unique_id port 110710 remote_ip 10.8.0.146 110713 username houshang 110713 mac 110713 bytes_out 799846 110713 bytes_in 9517099 110713 station_ip 5.119.145.22 110713 port 51 110713 unique_id port 110713 remote_ip 10.8.0.22 110718 username mohammadjavad 110718 mac 110718 bytes_out 67738 110718 bytes_in 733766 110718 station_ip 37.27.13.241 110718 port 49 110718 unique_id port 110718 remote_ip 10.8.0.142 110719 username aminvpn 110719 mac 110719 bytes_out 0 110719 bytes_in 0 110719 station_ip 83.122.108.252 110719 port 15 110719 unique_id port 110719 remote_ip 10.8.1.6 110720 username mohammadmahdi 110720 mac 110720 bytes_out 720362 110720 bytes_in 2829249 110720 station_ip 5.119.49.204 110720 port 36 110720 unique_id port 110720 remote_ip 10.8.0.54 110724 username arman1 110724 mac 110724 bytes_out 0 110724 bytes_in 0 110724 station_ip 5.120.89.68 110724 port 19 110724 unique_id port 110724 remote_ip 10.8.1.118 110726 username avaanna 110726 mac 110726 bytes_out 645847 110726 bytes_in 2841554 110726 station_ip 83.122.159.158 110726 port 46 110726 unique_id port 110726 remote_ip 10.8.0.98 110729 username rajaei 110729 mac 110729 bytes_out 0 110729 bytes_in 0 110729 station_ip 94.24.83.186 110729 port 49 110729 unique_id port 110733 username mohammadjavad 110733 mac 110733 bytes_out 0 110733 bytes_in 0 110733 station_ip 37.27.13.241 110733 port 50 110733 unique_id port 110736 username farhad1 110736 kill_reason Another user logged on this global unique id 110736 mac 110736 bytes_out 0 110736 bytes_in 0 110736 station_ip 5.120.111.59 110736 port 48 110736 unique_id port 110741 username afarin1 110741 mac 110741 bytes_out 1344884 110741 bytes_in 11563184 110741 station_ip 83.122.185.242 110741 port 47 110741 unique_id port 110741 remote_ip 10.8.0.118 110743 username aminvpn 110743 mac 110743 bytes_out 1149298 110743 bytes_in 25977830 110743 station_ip 83.122.108.252 110743 port 18 110743 unique_id port 110743 remote_ip 10.8.1.6 110745 username farhad1 110745 kill_reason Another user logged on this global unique id 110701 bytes_out 0 110701 bytes_in 0 110701 station_ip 83.122.185.242 110701 port 15 110701 unique_id port 110701 remote_ip 10.8.1.114 110703 username farhad1 110703 mac 110703 bytes_out 184537 110703 bytes_in 503667 110703 station_ip 5.119.156.179 110703 port 48 110703 unique_id port 110703 remote_ip 10.8.0.26 110707 username malekpoir 110707 mac 110707 bytes_out 28563 110707 bytes_in 42845 110707 station_ip 5.119.228.82 110707 port 49 110707 unique_id port 110707 remote_ip 10.8.0.58 110708 username mahdiyehalizadeh 110708 mac 110708 bytes_out 488397 110708 bytes_in 8269288 110708 station_ip 37.129.52.241 110708 port 48 110708 unique_id port 110708 remote_ip 10.8.0.82 110714 username avaanna 110714 mac 110714 bytes_out 604060 110714 bytes_in 7679884 110714 station_ip 83.122.159.158 110714 port 36 110714 unique_id port 110714 remote_ip 10.8.0.98 110715 username mohammadmahdi 110715 mac 110715 bytes_out 842057 110715 bytes_in 16950608 110715 station_ip 5.119.49.204 110715 port 46 110715 unique_id port 110715 remote_ip 10.8.0.54 110722 username aminvpn 110722 mac 110722 bytes_out 0 110722 bytes_in 0 110722 station_ip 83.122.108.252 110722 port 15 110722 unique_id port 110722 remote_ip 10.8.1.6 110723 username farhad1 110723 kill_reason Another user logged on this global unique id 110723 mac 110723 bytes_out 0 110723 bytes_in 0 110723 station_ip 5.120.111.59 110723 port 48 110723 unique_id port 110723 remote_ip 10.8.0.26 110728 username avaanna 110728 mac 110728 bytes_out 65604 110728 bytes_in 259536 110728 station_ip 83.122.159.158 110728 port 36 110728 unique_id port 110728 remote_ip 10.8.0.98 110731 username mahdixz 110731 unique_id port 110731 terminate_cause User-Request 110731 bytes_out 808050 110731 bytes_in 6227674 110731 station_ip 151.235.84.86 110731 port 15729143 110731 nas_port_type Virtual 110731 remote_ip 5.5.5.5 110734 username malekpoir 110734 mac 110734 bytes_out 531967 110734 bytes_in 1839137 110734 station_ip 5.119.228.82 110734 port 18 110734 unique_id port 110734 remote_ip 10.8.1.54 110735 username sedighe 110735 mac 110735 bytes_out 0 110735 bytes_in 0 110735 station_ip 83.123.135.119 110735 port 46 110735 unique_id port 110735 remote_ip 10.8.0.146 110738 username aminvpn 110738 mac 110738 bytes_out 0 110738 bytes_in 0 110738 station_ip 83.122.108.252 110738 port 15 110738 unique_id port 110738 remote_ip 10.8.1.6 110742 username arabpour 110742 unique_id port 110742 terminate_cause User-Request 110742 bytes_out 56122 110742 bytes_in 237184 110742 station_ip 83.123.248.211 110742 port 15729145 110742 nas_port_type Virtual 110742 remote_ip 5.5.5.10 110748 username farhad1 110748 kill_reason Another user logged on this global unique id 110748 mac 110748 bytes_out 0 110748 bytes_in 0 110748 station_ip 5.120.111.59 110748 port 48 110748 unique_id port 110749 username farhad1 110749 kill_reason Another user logged on this global unique id 110749 mac 110749 bytes_out 0 110749 bytes_in 0 110749 station_ip 5.120.111.59 110749 port 48 110749 unique_id port 110750 username farhad1 110746 bytes_out 0 110750 kill_reason Another user logged on this global unique id 110750 mac 110750 bytes_out 0 110750 bytes_in 0 110750 station_ip 5.120.111.59 110750 port 48 110750 unique_id port 110752 username mohammadjavad 110752 kill_reason Another user logged on this global unique id 110752 mac 110752 bytes_out 0 110752 bytes_in 0 110752 station_ip 37.27.13.241 110752 port 46 110752 unique_id port 110752 remote_ip 10.8.0.142 110755 username asma2026 110755 mac 110755 bytes_out 0 110755 bytes_in 0 110704 station_ip 5.119.117.36 110704 port 34 110704 unique_id port 110705 username mahdiyehalizadeh 110705 mac 110705 bytes_out 10428 110705 bytes_in 8212 110705 station_ip 37.129.52.241 110705 port 48 110705 unique_id port 110705 remote_ip 10.8.0.82 110709 username farhad1 110709 mac 110709 bytes_out 2049457 110709 bytes_in 10980020 110709 station_ip 5.120.111.59 110709 port 46 110709 unique_id port 110709 remote_ip 10.8.0.26 110711 username mohammadmahdi 110711 mac 110711 bytes_out 17058850 110711 bytes_in 3910092 110711 station_ip 5.119.49.204 110711 port 49 110711 unique_id port 110711 remote_ip 10.8.0.54 110712 username malekpoir 110712 mac 110712 bytes_out 25143 110712 bytes_in 40722 110712 station_ip 5.119.228.82 110712 port 50 110712 unique_id port 110712 remote_ip 10.8.0.58 110716 username bcboard 110716 unique_id port 110716 terminate_cause User-Request 110716 bytes_out 269864 110716 bytes_in 2372086 110716 station_ip 37.129.213.77 110716 port 15729142 110716 nas_port_type Virtual 110716 remote_ip 5.5.5.3 110717 username mehdizare 110717 mac 110717 bytes_out 959162 110717 bytes_in 10021817 110717 station_ip 5.120.13.2 110717 port 32 110717 unique_id port 110717 remote_ip 10.8.0.90 110721 username rajaei 110721 kill_reason Another user logged on this global unique id 110721 mac 110721 bytes_out 0 110721 bytes_in 0 110721 station_ip 94.24.83.186 110721 port 49 110721 unique_id port 110721 remote_ip 10.8.0.34 110725 username mohammadjavad 110725 kill_reason Another user logged on this global unique id 110725 mac 110725 bytes_out 0 110725 bytes_in 0 110725 station_ip 37.27.13.241 110725 port 50 110725 unique_id port 110725 remote_ip 10.8.0.142 110727 username mohammadjavad 110727 kill_reason Another user logged on this global unique id 110727 mac 110727 bytes_out 0 110727 bytes_in 0 110727 station_ip 37.27.13.241 110727 port 50 110727 unique_id port 110730 username forozande 110730 mac 110730 bytes_out 1166392 110730 bytes_in 13545168 110730 station_ip 83.122.51.157 110730 port 51 110730 unique_id port 110730 remote_ip 10.8.0.74 110732 username alirezazadeh 110732 unique_id port 110732 terminate_cause Lost-Carrier 110732 bytes_out 2204051 110732 bytes_in 19798062 110732 station_ip 31.56.159.18 110732 port 15729141 110732 nas_port_type Virtual 110732 remote_ip 5.5.5.255 110737 username sedighe 110737 mac 110737 bytes_out 2975 110737 bytes_in 5072 110737 station_ip 83.123.135.119 110737 port 36 110737 unique_id port 110737 remote_ip 10.8.0.146 110739 username bcboard 110739 unique_id port 110739 terminate_cause User-Request 110739 bytes_out 56085 110739 bytes_in 200835 110739 station_ip 37.129.213.77 110739 port 15729144 110739 nas_port_type Virtual 110739 remote_ip 5.5.5.6 110740 username mehdizare 110740 mac 110740 bytes_out 0 110740 bytes_in 0 110740 station_ip 5.120.13.2 110740 port 32 110740 unique_id port 110740 remote_ip 10.8.0.90 110744 username afarin1 110744 mac 110744 bytes_out 0 110744 bytes_in 0 110744 station_ip 83.122.185.242 110744 port 36 110744 unique_id port 110744 remote_ip 10.8.0.118 110746 username mehdizare 110746 mac 110746 bytes_in 0 110746 station_ip 5.120.13.2 110746 port 32 110746 unique_id port 110746 remote_ip 10.8.0.90 110753 username forozande 110753 mac 110753 bytes_out 0 110753 bytes_in 0 110753 station_ip 83.123.183.220 110753 port 32 110753 unique_id port 110753 remote_ip 10.8.0.74 110754 username farhad1 110754 kill_reason Another user logged on this global unique id 110754 mac 110754 bytes_out 0 110754 bytes_in 0 110754 station_ip 5.120.111.59 110745 mac 110745 bytes_out 0 110745 bytes_in 0 110745 station_ip 5.120.111.59 110745 port 48 110745 unique_id port 110747 username mehdizare 110747 mac 110747 bytes_out 0 110747 bytes_in 0 110747 station_ip 5.120.13.2 110747 port 18 110747 unique_id port 110747 remote_ip 10.8.1.42 110751 username aminvpn 110751 mac 110751 bytes_out 16987 110751 bytes_in 18209 110751 station_ip 83.122.108.252 110751 port 20 110751 unique_id port 110751 remote_ip 10.8.1.6 110756 username asma2026 110756 mac 110756 bytes_out 0 110756 bytes_in 0 110756 station_ip 37.129.188.69 110756 port 36 110756 unique_id port 110756 remote_ip 10.8.0.170 110759 username asma2026 110759 mac 110759 bytes_out 0 110759 bytes_in 0 110759 station_ip 83.122.60.123 110759 port 47 110759 unique_id port 110759 remote_ip 10.8.0.170 110761 username aminvpn 110761 mac 110761 bytes_out 0 110761 bytes_in 0 110761 station_ip 83.122.108.252 110761 port 32 110761 unique_id port 110761 remote_ip 10.8.0.14 110768 username mohammadjavad 110768 mac 110768 bytes_out 0 110768 bytes_in 0 110768 station_ip 37.27.13.241 110768 port 46 110768 unique_id port 110770 username tahmasebi 110770 kill_reason Another user logged on this global unique id 110770 mac 110770 bytes_out 0 110770 bytes_in 0 110770 station_ip 5.119.117.36 110770 port 34 110770 unique_id port 110773 username mohammadjavad 110773 mac 110773 bytes_out 11734 110773 bytes_in 12507 110773 station_ip 37.27.13.241 110773 port 32 110773 unique_id port 110773 remote_ip 10.8.0.142 110775 username avaanna 110775 mac 110775 bytes_out 0 110775 bytes_in 0 110775 station_ip 83.122.190.174 110775 port 15 110775 unique_id port 110775 remote_ip 10.8.1.46 110778 username hamid.e 110778 unique_id port 110778 terminate_cause User-Request 110778 bytes_out 1845546 110778 bytes_in 39082844 110778 station_ip 37.27.36.54 110778 port 15729147 110778 nas_port_type Virtual 110778 remote_ip 5.5.5.13 110789 username asma2026 110789 mac 110789 bytes_out 0 110789 bytes_in 0 110789 station_ip 83.122.60.123 110789 port 49 110789 unique_id port 110789 remote_ip 10.8.0.170 110790 username asma2026 110790 mac 110790 bytes_out 0 110790 bytes_in 0 110790 station_ip 83.122.60.123 110790 port 49 110790 unique_id port 110790 remote_ip 10.8.0.170 110794 username asma2026 110794 mac 110794 bytes_out 0 110794 bytes_in 0 110794 station_ip 83.122.60.123 110794 port 50 110794 unique_id port 110794 remote_ip 10.8.0.170 110795 username asma2026 110795 mac 110795 bytes_out 0 110795 bytes_in 0 110795 station_ip 83.122.60.123 110795 port 49 110795 unique_id port 110795 remote_ip 10.8.0.170 110798 username malekpoir 110798 mac 110798 bytes_out 0 110798 bytes_in 0 110798 station_ip 5.119.228.82 110798 port 19 110798 unique_id port 110798 remote_ip 10.8.1.54 110799 username mohammadmahdi 110799 mac 110799 bytes_out 0 110799 bytes_in 0 110799 station_ip 5.119.28.68 110799 port 50 110799 unique_id port 110799 remote_ip 10.8.0.54 110802 username kordestani 110802 mac 110802 bytes_out 0 110802 bytes_in 0 110802 station_ip 151.235.98.220 110802 port 51 110802 unique_id port 110802 remote_ip 10.8.0.134 110806 username mehdizare 110806 kill_reason Another user logged on this global unique id 110806 mac 110806 bytes_out 0 110806 bytes_in 0 110806 station_ip 5.120.13.2 110806 port 18 110806 unique_id port 110809 username arman1 110809 mac 110809 bytes_out 0 110809 bytes_in 0 110809 station_ip 5.119.209.250 110754 port 48 110754 unique_id port 110757 username asma2026 110757 mac 110757 bytes_out 0 110757 bytes_in 0 110757 station_ip 83.122.60.123 110757 port 47 110757 unique_id port 110757 remote_ip 10.8.0.170 110760 username mehdizare 110760 kill_reason Another user logged on this global unique id 110760 mac 110760 bytes_out 0 110760 bytes_in 0 110760 station_ip 5.120.13.2 110760 port 18 110760 unique_id port 110760 remote_ip 10.8.1.42 110762 username asma2026 110762 mac 110762 bytes_out 0 110762 bytes_in 0 110762 station_ip 83.122.60.123 110762 port 32 110762 unique_id port 110762 remote_ip 10.8.0.170 110763 username asma2026 110763 mac 110763 bytes_out 0 110763 bytes_in 0 110763 station_ip 83.122.60.123 110763 port 32 110763 unique_id port 110763 remote_ip 10.8.0.170 110764 username asma2026 110764 mac 110764 bytes_out 0 110764 bytes_in 0 110764 station_ip 83.122.60.123 110764 port 32 110764 unique_id port 110764 remote_ip 10.8.0.170 110769 username mehdizare 110769 kill_reason Another user logged on this global unique id 110769 mac 110769 bytes_out 0 110769 bytes_in 0 110769 station_ip 5.120.13.2 110769 port 18 110769 unique_id port 110784 username asma2026 110784 mac 110784 bytes_out 0 110784 bytes_in 0 110784 station_ip 83.122.60.123 110784 port 48 110784 unique_id port 110784 remote_ip 10.8.0.170 110785 username amir 110785 mac 110785 bytes_out 0 110785 bytes_in 0 110785 station_ip 46.225.232.139 110785 port 49 110785 unique_id port 110785 remote_ip 10.8.0.50 110786 username farhad1 110786 kill_reason Another user logged on this global unique id 110786 mac 110786 bytes_out 0 110786 bytes_in 0 110786 station_ip 5.120.111.59 110786 port 32 110786 unique_id port 110786 remote_ip 10.8.0.26 110787 username morteza 110787 mac 110787 bytes_out 0 110787 bytes_in 0 110787 station_ip 113.203.89.121 110787 port 46 110787 unique_id port 110787 remote_ip 10.8.0.46 110791 username asma2026 110791 mac 110791 bytes_out 0 110791 bytes_in 0 110791 station_ip 83.122.60.123 110791 port 15 110791 unique_id port 110791 remote_ip 10.8.1.122 110797 username asma2026 110797 mac 110797 bytes_out 0 110797 bytes_in 0 110797 station_ip 83.122.60.123 110797 port 50 110797 unique_id port 110797 remote_ip 10.8.0.170 110807 username asma2026 110807 mac 110807 bytes_out 0 110807 bytes_in 0 110807 station_ip 83.122.60.123 110807 port 46 110807 unique_id port 110807 remote_ip 10.8.0.170 110808 username sedighe 110808 mac 110808 bytes_out 0 110808 bytes_in 0 110808 station_ip 37.129.81.239 110808 port 47 110808 unique_id port 110808 remote_ip 10.8.0.146 110812 username bcboard 110812 unique_id port 110812 terminate_cause User-Request 110812 bytes_out 1425781 110812 bytes_in 8541422 110812 station_ip 83.122.131.183 110812 port 15729151 110812 nas_port_type Virtual 110812 remote_ip 5.5.5.18 110813 username kordestani 110813 kill_reason Another user logged on this global unique id 110813 mac 110813 bytes_out 0 110813 bytes_in 0 110813 station_ip 151.235.104.144 110813 port 53 110813 unique_id port 110813 remote_ip 10.8.0.134 110822 username mohammadmahdi 110822 mac 110822 bytes_out 1179644 110822 bytes_in 47163079 110822 station_ip 5.119.28.68 110822 port 52 110822 unique_id port 110822 remote_ip 10.8.0.54 110826 username asma2026 110826 mac 110826 bytes_out 0 110826 bytes_in 0 110826 station_ip 83.122.60.123 110826 port 32 110826 unique_id port 110826 remote_ip 10.8.0.170 110841 username asma2026 110841 mac 110841 bytes_out 0 110755 station_ip 37.129.188.69 110755 port 36 110755 unique_id port 110755 remote_ip 10.8.0.170 110758 username asma2026 110758 kill_reason Maximum check online fails reached 110758 mac 110758 bytes_out 0 110758 bytes_in 0 110758 station_ip 83.122.60.123 110758 port 36 110758 unique_id port 110765 username asma2026 110765 mac 110765 bytes_out 0 110765 bytes_in 0 110765 station_ip 83.122.60.123 110765 port 32 110765 unique_id port 110765 remote_ip 10.8.0.170 110766 username farhad1 110766 mac 110766 bytes_out 0 110766 bytes_in 0 110766 station_ip 5.120.111.59 110766 port 48 110766 unique_id port 110767 username asma2026 110767 mac 110767 bytes_out 0 110767 bytes_in 0 110767 station_ip 83.122.60.123 110767 port 32 110767 unique_id port 110767 remote_ip 10.8.0.170 110771 username asma2026 110771 mac 110771 bytes_out 0 110771 bytes_in 0 110771 station_ip 83.122.60.123 110771 port 47 110771 unique_id port 110771 remote_ip 10.8.0.170 110772 username houshang 110772 mac 110772 bytes_out 0 110772 bytes_in 0 110772 station_ip 5.119.64.177 110772 port 46 110772 unique_id port 110772 remote_ip 10.8.0.22 110774 username mohammadjavad 110774 mac 110774 bytes_out 0 110774 bytes_in 0 110774 station_ip 37.27.13.241 110774 port 46 110774 unique_id port 110774 remote_ip 10.8.0.142 110776 username mohammadjavad 110776 mac 110776 bytes_out 1874 110776 bytes_in 4379 110776 station_ip 37.27.13.241 110776 port 32 110776 unique_id port 110776 remote_ip 10.8.0.142 110777 username asma2026 110777 mac 110777 bytes_out 0 110777 bytes_in 0 110777 station_ip 83.122.60.123 110777 port 32 110777 unique_id port 110777 remote_ip 10.8.0.170 110779 username asma2026 110779 mac 110779 bytes_out 0 110779 bytes_in 0 110779 station_ip 83.122.60.123 110779 port 48 110779 unique_id port 110779 remote_ip 10.8.0.170 110780 username tahmasebi 110780 kill_reason Maximum check online fails reached 110780 mac 110780 bytes_out 0 110780 bytes_in 0 110780 station_ip 5.119.117.36 110780 port 34 110780 unique_id port 110781 username forozande 110781 mac 110781 bytes_out 0 110781 bytes_in 0 110781 station_ip 83.122.157.10 110781 port 48 110781 unique_id port 110781 remote_ip 10.8.0.74 110782 username asma2026 110782 mac 110782 bytes_out 0 110782 bytes_in 0 110782 station_ip 83.122.60.123 110782 port 48 110782 unique_id port 110782 remote_ip 10.8.0.170 110783 username mohammadjavad 110783 mac 110783 bytes_out 0 110783 bytes_in 0 110783 station_ip 37.27.13.241 110783 port 46 110783 unique_id port 110783 remote_ip 10.8.0.142 110788 username mehdizare 110788 kill_reason Another user logged on this global unique id 110788 mac 110788 bytes_out 0 110788 bytes_in 0 110788 station_ip 5.120.13.2 110788 port 18 110788 unique_id port 110792 username asma2026 110792 mac 110792 bytes_out 0 110792 bytes_in 0 110792 station_ip 83.122.60.123 110792 port 49 110792 unique_id port 110792 remote_ip 10.8.0.170 110793 username asma2026 110793 mac 110793 bytes_out 0 110793 bytes_in 0 110793 station_ip 83.122.60.123 110793 port 49 110793 unique_id port 110793 remote_ip 10.8.0.170 110796 username mehdizare 110796 kill_reason Another user logged on this global unique id 110796 mac 110796 bytes_out 0 110796 bytes_in 0 110796 station_ip 5.120.13.2 110796 port 18 110796 unique_id port 110800 username morteza 110800 mac 110800 bytes_out 0 110800 bytes_in 0 110800 station_ip 113.203.89.121 110800 port 46 110800 unique_id port 110800 remote_ip 10.8.0.46 110801 username aminvpn 110801 unique_id port 110801 terminate_cause User-Request 110801 bytes_out 158702 110801 bytes_in 1513846 110801 station_ip 5.120.65.69 110801 port 15729149 110801 nas_port_type Virtual 110801 remote_ip 5.5.5.15 110803 username morteza 110803 mac 110803 bytes_out 0 110803 bytes_in 0 110803 station_ip 113.203.89.121 110803 port 50 110803 unique_id port 110803 remote_ip 10.8.0.46 110804 username amirabbas 110804 unique_id port 110804 terminate_cause User-Request 110804 bytes_out 1694610 110804 bytes_in 34474970 110804 station_ip 188.245.91.191 110804 port 15729150 110804 nas_port_type Virtual 110804 remote_ip 5.5.5.16 110805 username alihosseini1 110805 kill_reason Another user logged on this global unique id 110805 mac 110805 bytes_out 0 110805 bytes_in 0 110805 station_ip 5.119.229.44 110805 port 48 110805 unique_id port 110805 remote_ip 10.8.0.166 110811 username alipour 110811 kill_reason Another user logged on this global unique id 110811 mac 110811 bytes_out 0 110811 bytes_in 0 110811 station_ip 83.122.226.36 110811 port 41 110811 unique_id port 110811 remote_ip 10.8.0.102 110816 username hamid 110816 kill_reason Another user logged on this global unique id 110816 mac 110816 bytes_out 0 110816 bytes_in 0 110816 station_ip 113.203.76.37 110816 port 50 110816 unique_id port 110816 remote_ip 10.8.0.106 110817 username asma2026 110817 mac 110817 bytes_out 0 110817 bytes_in 0 110817 station_ip 83.122.60.123 110817 port 46 110817 unique_id port 110817 remote_ip 10.8.0.170 110820 username bcboard 110820 unique_id port 110820 terminate_cause User-Request 110820 bytes_out 285706 110820 bytes_in 933359 110820 station_ip 83.122.131.183 110820 port 15729154 110820 nas_port_type Virtual 110820 remote_ip 5.5.5.22 110823 username farhad1 110823 mac 110823 bytes_out 0 110823 bytes_in 0 110823 station_ip 5.120.111.59 110823 port 32 110823 unique_id port 110824 username alihosseini1 110824 kill_reason Another user logged on this global unique id 110824 mac 110824 bytes_out 0 110824 bytes_in 0 110824 station_ip 5.119.229.44 110824 port 48 110824 unique_id port 110829 username bcboard 110829 unique_id port 110829 terminate_cause User-Request 110829 bytes_out 177754 110829 bytes_in 1709669 110829 station_ip 83.122.131.183 110829 port 15729155 110829 nas_port_type Virtual 110829 remote_ip 5.5.5.23 110831 username amir 110831 kill_reason Another user logged on this global unique id 110831 mac 110831 bytes_out 0 110831 bytes_in 0 110831 station_ip 46.225.232.139 110831 port 49 110831 unique_id port 110831 remote_ip 10.8.0.50 110832 username asma2026 110832 mac 110832 bytes_out 0 110832 bytes_in 0 110832 station_ip 83.122.60.123 110832 port 46 110832 unique_id port 110832 remote_ip 10.8.0.170 110833 username rezasekonji 110833 mac 110833 bytes_out 0 110833 bytes_in 0 110833 station_ip 37.129.20.242 110833 port 46 110833 unique_id port 110833 remote_ip 10.8.0.130 110834 username asma2026 110834 mac 110834 bytes_out 0 110834 bytes_in 0 110834 station_ip 83.122.60.123 110834 port 50 110834 unique_id port 110834 remote_ip 10.8.0.170 110835 username alihosseini1 110835 mac 110835 bytes_out 0 110835 bytes_in 0 110835 station_ip 5.119.229.44 110835 port 48 110835 unique_id port 110837 username farhad1 110837 kill_reason Another user logged on this global unique id 110837 mac 110837 bytes_out 0 110837 bytes_in 0 110837 station_ip 5.119.206.143 110837 port 47 110837 unique_id port 110837 remote_ip 10.8.0.26 110839 username asma2026 110839 mac 110839 bytes_out 0 110839 bytes_in 0 110839 station_ip 83.122.60.123 110839 port 15 110809 port 51 110809 unique_id port 110809 remote_ip 10.8.0.110 110810 username asma2026 110810 mac 110810 bytes_out 0 110810 bytes_in 0 110810 station_ip 83.122.60.123 110810 port 47 110810 unique_id port 110810 remote_ip 10.8.0.170 110814 username sedighe 110814 mac 110814 bytes_out 502543 110814 bytes_in 11013030 110814 station_ip 37.129.81.239 110814 port 46 110814 unique_id port 110814 remote_ip 10.8.0.146 110815 username naeimeh 110815 mac 110815 bytes_out 0 110815 bytes_in 0 110815 station_ip 83.123.25.84 110815 port 47 110815 unique_id port 110815 remote_ip 10.8.0.78 110818 username farhad1 110818 kill_reason Another user logged on this global unique id 110818 mac 110818 bytes_out 0 110818 bytes_in 0 110818 station_ip 5.120.111.59 110818 port 32 110818 unique_id port 110819 username alireza 110819 unique_id port 110819 terminate_cause Lost-Carrier 110819 bytes_out 8276443 110819 bytes_in 140636603 110819 station_ip 5.120.60.241 110819 port 15729146 110819 nas_port_type Virtual 110819 remote_ip 5.5.5.11 110821 username hamid 110821 mac 110821 bytes_out 0 110821 bytes_in 0 110821 station_ip 113.203.76.37 110821 port 50 110821 unique_id port 110825 username asma2026 110825 mac 110825 bytes_out 0 110825 bytes_in 0 110825 station_ip 83.122.60.123 110825 port 15 110825 unique_id port 110825 remote_ip 10.8.1.122 110827 username kordestani 110827 kill_reason Another user logged on this global unique id 110827 mac 110827 bytes_out 0 110827 bytes_in 0 110827 station_ip 151.235.104.144 110827 port 53 110827 unique_id port 110828 username rezasekonji 110828 mac 110828 bytes_out 237740 110828 bytes_in 3746674 110828 station_ip 37.129.20.242 110828 port 46 110828 unique_id port 110828 remote_ip 10.8.0.130 110830 username ahmadipour 110830 unique_id port 110830 terminate_cause Lost-Carrier 110830 bytes_out 803646 110830 bytes_in 6464347 110830 station_ip 83.122.252.168 110830 port 15729153 110830 nas_port_type Virtual 110830 remote_ip 5.5.5.21 110836 username rezasekonji 110836 mac 110836 bytes_out 0 110836 bytes_in 0 110836 station_ip 37.129.20.242 110836 port 48 110836 unique_id port 110836 remote_ip 10.8.0.130 110838 username rezasekonji 110838 mac 110838 bytes_out 0 110838 bytes_in 0 110838 station_ip 37.129.20.242 110838 port 48 110838 unique_id port 110838 remote_ip 10.8.0.130 110840 username asma2026 110840 mac 110840 bytes_out 0 110840 bytes_in 0 110840 station_ip 83.122.60.123 110840 port 48 110840 unique_id port 110840 remote_ip 10.8.0.170 110847 username asma2026 110847 mac 110847 bytes_out 0 110847 bytes_in 0 110847 station_ip 83.122.60.123 110847 port 52 110847 unique_id port 110847 remote_ip 10.8.0.170 110851 username rezasekonji 110851 mac 110851 bytes_out 198985 110851 bytes_in 1670628 110851 station_ip 37.129.20.242 110851 port 48 110851 unique_id port 110851 remote_ip 10.8.0.130 110853 username kordestani 110853 kill_reason Another user logged on this global unique id 110853 mac 110853 bytes_out 0 110853 bytes_in 0 110853 station_ip 151.235.104.144 110853 port 53 110853 unique_id port 110856 username rezasekonji 110856 mac 110856 bytes_out 0 110856 bytes_in 0 110856 station_ip 37.129.20.242 110856 port 26 110856 unique_id port 110856 remote_ip 10.8.0.130 110859 username mohammadjavad 110859 kill_reason Another user logged on this global unique id 110859 mac 110859 bytes_out 0 110859 bytes_in 0 110859 station_ip 83.122.49.153 110859 port 51 110859 unique_id port 110859 remote_ip 10.8.0.142 110867 username bcboard 110839 unique_id port 110839 remote_ip 10.8.1.122 110842 username rezasekonji 110842 mac 110842 bytes_out 0 110842 bytes_in 0 110842 station_ip 37.129.20.242 110842 port 48 110842 unique_id port 110842 remote_ip 10.8.0.130 110843 username asma2026 110843 mac 110843 bytes_out 0 110843 bytes_in 0 110843 station_ip 83.122.60.123 110843 port 48 110843 unique_id port 110843 remote_ip 10.8.0.170 110844 username rezasekonji 110844 mac 110844 bytes_out 0 110844 bytes_in 0 110844 station_ip 37.129.20.242 110844 port 48 110844 unique_id port 110844 remote_ip 10.8.0.130 110846 username sedighe 110846 mac 110846 bytes_out 0 110846 bytes_in 0 110846 station_ip 37.129.81.239 110846 port 50 110846 unique_id port 110846 remote_ip 10.8.0.146 110849 username sedighe 110849 mac 110849 bytes_out 47224 110849 bytes_in 184249 110849 station_ip 37.129.81.239 110849 port 50 110849 unique_id port 110849 remote_ip 10.8.0.146 110852 username rezasekonji 110852 mac 110852 bytes_out 0 110852 bytes_in 0 110852 station_ip 37.129.20.242 110852 port 26 110852 unique_id port 110852 remote_ip 10.8.0.130 110854 username rezasekonji 110854 mac 110854 bytes_out 0 110854 bytes_in 0 110854 station_ip 37.129.20.242 110854 port 26 110854 unique_id port 110854 remote_ip 10.8.0.130 110858 username rezasekonji 110858 mac 110858 bytes_out 0 110858 bytes_in 0 110858 station_ip 37.129.20.242 110858 port 47 110858 unique_id port 110858 remote_ip 10.8.0.130 110860 username asma2026 110860 mac 110860 bytes_out 0 110860 bytes_in 0 110860 station_ip 83.122.60.123 110860 port 47 110860 unique_id port 110860 remote_ip 10.8.0.170 110861 username mohammadjavad 110861 mac 110861 bytes_out 0 110861 bytes_in 0 110861 station_ip 83.122.49.153 110861 port 51 110861 unique_id port 110862 username mirzaei 110862 mac 110862 bytes_out 44038 110862 bytes_in 110955 110862 station_ip 5.120.182.49 110862 port 15 110862 unique_id port 110862 remote_ip 10.8.1.30 110865 username bcboard 110865 kill_reason Maximum number of concurrent logins reached 110865 unique_id port 110865 bytes_out 0 110865 bytes_in 0 110865 station_ip 83.122.131.183 110865 port 15729160 110865 nas_port_type Virtual 110873 username kordestani 110873 kill_reason Another user logged on this global unique id 110873 mac 110873 bytes_out 0 110873 bytes_in 0 110873 station_ip 151.235.104.144 110873 port 53 110873 unique_id port 110879 username mohammadmahdi 110879 kill_reason Another user logged on this global unique id 110879 mac 110879 bytes_out 0 110879 bytes_in 0 110879 station_ip 5.119.28.68 110879 port 26 110879 unique_id port 110879 remote_ip 10.8.0.54 110880 username kordestani 110880 kill_reason Another user logged on this global unique id 110880 mac 110880 bytes_out 0 110880 bytes_in 0 110880 station_ip 151.235.104.144 110880 port 53 110880 unique_id port 110881 username aminvpn 110881 unique_id port 110881 terminate_cause User-Request 110881 bytes_out 5890643 110881 bytes_in 61480960 110881 station_ip 5.120.65.69 110881 port 15729152 110881 nas_port_type Virtual 110881 remote_ip 5.5.5.19 110885 username alihosseini1 110885 mac 110885 bytes_out 2846971 110885 bytes_in 42295452 110885 station_ip 5.119.131.43 110885 port 20 110885 unique_id port 110885 remote_ip 10.8.1.106 110886 username mirzaei 110886 mac 110886 bytes_out 89607 110886 bytes_in 209651 110886 station_ip 5.120.182.49 110886 port 15 110886 unique_id port 110886 remote_ip 10.8.1.30 110888 username sobhan 110888 unique_id port 110888 terminate_cause User-Request 110888 bytes_out 892836 110841 bytes_in 0 110841 station_ip 83.122.60.123 110841 port 48 110841 unique_id port 110841 remote_ip 10.8.0.170 110845 username amir 110845 kill_reason Another user logged on this global unique id 110845 mac 110845 bytes_out 0 110845 bytes_in 0 110845 station_ip 46.225.232.139 110845 port 49 110845 unique_id port 110848 username farhad1 110848 mac 110848 bytes_out 0 110848 bytes_in 0 110848 station_ip 5.119.206.143 110848 port 47 110848 unique_id port 110850 username mirzaei 110850 mac 110850 bytes_out 0 110850 bytes_in 0 110850 station_ip 5.120.182.49 110850 port 26 110850 unique_id port 110855 username asma2026 110855 mac 110855 bytes_out 0 110855 bytes_in 0 110855 station_ip 83.122.60.123 110855 port 26 110855 unique_id port 110855 remote_ip 10.8.0.170 110857 username rezasekonji 110857 mac 110857 bytes_out 0 110857 bytes_in 0 110857 station_ip 37.129.20.242 110857 port 47 110857 unique_id port 110857 remote_ip 10.8.0.130 110863 username bcboard 110863 unique_id port 110863 terminate_cause User-Request 110863 bytes_out 13254621 110863 bytes_in 15021116 110863 station_ip 83.122.131.183 110863 port 15729156 110863 nas_port_type Virtual 110863 remote_ip 5.5.5.24 110864 username bcboard 110864 kill_reason Maximum number of concurrent logins reached 110864 unique_id port 110864 bytes_out 0 110864 bytes_in 0 110864 station_ip 83.122.131.183 110864 port 15729159 110864 nas_port_type Virtual 110866 username amir 110866 kill_reason Another user logged on this global unique id 110866 mac 110866 bytes_out 0 110866 bytes_in 0 110866 station_ip 46.225.232.139 110866 port 49 110866 unique_id port 110869 username rezasekonji 110869 mac 110869 bytes_out 0 110869 bytes_in 0 110869 station_ip 37.129.20.242 110869 port 47 110869 unique_id port 110869 remote_ip 10.8.0.130 110871 username mohammadjavad 110871 mac 110871 bytes_out 0 110871 bytes_in 0 110871 station_ip 83.122.203.178 110871 port 48 110871 unique_id port 110871 remote_ip 10.8.0.142 110875 username amir 110875 mac 110875 bytes_out 0 110875 bytes_in 0 110875 station_ip 46.225.232.139 110875 port 49 110875 unique_id port 110876 username mehdizare 110876 mac 110876 bytes_out 0 110876 bytes_in 0 110876 station_ip 5.120.13.2 110876 port 18 110876 unique_id port 110878 username mohammadjavad 110878 mac 110878 bytes_out 20519 110878 bytes_in 28874 110878 station_ip 37.27.13.241 110878 port 47 110878 unique_id port 110878 remote_ip 10.8.0.142 110883 username asma2026 110883 kill_reason Another user logged on this global unique id 110883 mac 110883 bytes_out 0 110883 bytes_in 0 110883 station_ip 83.122.60.123 110883 port 19 110883 unique_id port 110884 username kordestani 110884 kill_reason Another user logged on this global unique id 110884 mac 110884 bytes_out 0 110884 bytes_in 0 110884 station_ip 151.235.104.144 110884 port 53 110884 unique_id port 110889 username mosi 110889 mac 110889 bytes_out 0 110889 bytes_in 0 110889 station_ip 151.235.111.162 110889 port 47 110889 unique_id port 110889 remote_ip 10.8.0.138 110891 username aminvpn 110891 mac 110891 bytes_out 8728 110891 bytes_in 17480 110891 station_ip 83.122.43.96 110891 port 21 110891 unique_id port 110891 remote_ip 10.8.1.6 110899 username alihosseini1 110899 kill_reason Another user logged on this global unique id 110899 mac 110899 bytes_out 0 110899 bytes_in 0 110899 station_ip 5.119.94.167 110899 port 20 110899 unique_id port 110899 remote_ip 10.8.1.106 110900 username mohammadmahdi 110900 kill_reason Another user logged on this global unique id 110900 mac 110900 bytes_out 0 110867 kill_reason Maximum number of concurrent logins reached 110867 unique_id port 110867 bytes_out 0 110867 bytes_in 0 110867 station_ip 83.122.131.183 110867 port 15729161 110867 nas_port_type Virtual 110868 username bcboard 110868 kill_reason Maximum check online fails reached 110868 unique_id port 110868 bytes_out 0 110868 bytes_in 0 110868 station_ip 83.122.131.183 110868 port 15729157 110868 nas_port_type Virtual 110870 username bcboard 110870 kill_reason Maximum check online fails reached 110870 unique_id port 110870 bytes_out 0 110870 bytes_in 0 110870 station_ip 83.122.131.183 110870 port 15729158 110870 nas_port_type Virtual 110872 username rezasekonji 110872 mac 110872 bytes_out 0 110872 bytes_in 0 110872 station_ip 37.129.20.242 110872 port 48 110872 unique_id port 110872 remote_ip 10.8.0.130 110874 username mohammadjavad 110874 mac 110874 bytes_out 0 110874 bytes_in 0 110874 station_ip 37.27.13.241 110874 port 47 110874 unique_id port 110874 remote_ip 10.8.0.142 110877 username asma2026 110877 kill_reason Another user logged on this global unique id 110877 mac 110877 bytes_out 0 110877 bytes_in 0 110877 station_ip 83.122.60.123 110877 port 19 110877 unique_id port 110877 remote_ip 10.8.1.122 110882 username asma2026 110882 kill_reason Another user logged on this global unique id 110882 mac 110882 bytes_out 0 110882 bytes_in 0 110882 station_ip 83.122.60.123 110882 port 19 110882 unique_id port 110887 username mohammadmahdi 110887 mac 110887 bytes_out 0 110887 bytes_in 0 110887 station_ip 5.119.28.68 110887 port 26 110887 unique_id port 110893 username kordestani 110893 kill_reason Another user logged on this global unique id 110893 mac 110893 bytes_out 0 110893 bytes_in 0 110893 station_ip 151.235.104.144 110893 port 53 110893 unique_id port 110895 username mohammadmahdi 110895 kill_reason Another user logged on this global unique id 110895 mac 110895 bytes_out 0 110895 bytes_in 0 110895 station_ip 5.119.28.68 110895 port 48 110895 unique_id port 110895 remote_ip 10.8.0.54 110896 username mirzaei 110896 mac 110896 bytes_out 137653 110896 bytes_in 212748 110896 station_ip 5.112.115.191 110896 port 15 110896 unique_id port 110896 remote_ip 10.8.1.30 110898 username rajaei 110898 kill_reason Another user logged on this global unique id 110898 mac 110898 bytes_out 0 110898 bytes_in 0 110898 station_ip 89.32.97.201 110898 port 26 110898 unique_id port 110898 remote_ip 10.8.0.34 110906 username alihosseini1 110906 kill_reason Another user logged on this global unique id 110906 mac 110906 bytes_out 0 110906 bytes_in 0 110906 station_ip 5.119.94.167 110906 port 20 110906 unique_id port 110909 username aminvpn 110909 mac 110909 bytes_out 125867 110909 bytes_in 236030 110909 station_ip 83.122.43.96 110909 port 21 110909 unique_id port 110909 remote_ip 10.8.1.6 110915 username alihosseini1 110915 mac 110915 bytes_out 0 110915 bytes_in 0 110915 station_ip 5.119.94.167 110915 port 26 110915 unique_id port 110915 remote_ip 10.8.0.166 110916 username malekpoir 110916 mac 110916 bytes_out 0 110916 bytes_in 0 110916 station_ip 5.119.228.82 110916 port 32 110916 unique_id port 110916 remote_ip 10.8.0.58 110926 username tahmasebi 110926 mac 110926 bytes_out 0 110926 bytes_in 0 110926 station_ip 5.119.117.36 110926 port 34 110926 unique_id port 110931 username farhad1 110931 kill_reason Another user logged on this global unique id 110931 mac 110931 bytes_out 0 110931 bytes_in 0 110931 station_ip 5.120.191.0 110931 port 32 110931 unique_id port 110934 username farhad1 110934 mac 110934 bytes_out 0 110934 bytes_in 0 110934 station_ip 5.120.191.0 110888 bytes_in 2649483 110888 station_ip 5.120.67.78 110888 port 15729162 110888 nas_port_type Virtual 110888 remote_ip 5.5.5.26 110890 username aminvpn 110890 mac 110890 bytes_out 0 110890 bytes_in 0 110890 station_ip 83.122.43.96 110890 port 46 110890 unique_id port 110890 remote_ip 10.8.0.14 110892 username aminvpn 110892 unique_id port 110892 terminate_cause Lost-Carrier 110892 bytes_out 3820003 110892 bytes_in 96843198 110892 station_ip 5.120.65.69 110892 port 15729148 110892 nas_port_type Virtual 110892 remote_ip 5.5.5.14 110894 username asma2026 110894 mac 110894 bytes_out 0 110894 bytes_in 0 110894 station_ip 83.122.60.123 110894 port 19 110894 unique_id port 110897 username ahmadi 110897 unique_id port 110897 terminate_cause User-Request 110897 bytes_out 41131 110897 bytes_in 531391 110897 station_ip 37.129.126.99 110897 port 15729163 110897 nas_port_type Virtual 110897 remote_ip 5.5.5.28 110901 username kordestani 110901 kill_reason Another user logged on this global unique id 110901 mac 110901 bytes_out 0 110901 bytes_in 0 110901 station_ip 151.235.104.144 110901 port 53 110901 unique_id port 110902 username mohammadmahdi 110902 mac 110902 bytes_out 0 110902 bytes_in 0 110902 station_ip 5.119.28.68 110902 port 48 110902 unique_id port 110904 username mehdizare 110904 mac 110904 bytes_out 0 110904 bytes_in 0 110904 station_ip 5.120.13.2 110904 port 15 110904 unique_id port 110904 remote_ip 10.8.1.42 110910 username rajaei 110910 mac 110910 bytes_out 0 110910 bytes_in 0 110910 station_ip 89.32.97.201 110910 port 26 110910 unique_id port 110912 username mehdizare 110912 mac 110912 bytes_out 0 110912 bytes_in 0 110912 station_ip 5.120.13.2 110912 port 48 110912 unique_id port 110912 remote_ip 10.8.0.90 110913 username alihosseini1 110913 mac 110913 bytes_out 0 110913 bytes_in 0 110913 station_ip 5.119.94.167 110913 port 20 110913 unique_id port 110914 username mohammadmahdi 110914 mac 110914 bytes_out 0 110914 bytes_in 0 110914 station_ip 5.119.28.68 110914 port 26 110914 unique_id port 110914 remote_ip 10.8.0.54 110917 username alihosseini1 110917 mac 110917 bytes_out 0 110917 bytes_in 0 110917 station_ip 5.119.94.167 110917 port 26 110917 unique_id port 110917 remote_ip 10.8.0.166 110918 username alihosseini1 110918 mac 110918 bytes_out 0 110918 bytes_in 0 110918 station_ip 5.119.94.167 110918 port 19 110918 unique_id port 110918 remote_ip 10.8.1.106 110919 username alihosseini1 110919 mac 110919 bytes_out 0 110919 bytes_in 0 110919 station_ip 5.119.94.167 110919 port 19 110919 unique_id port 110919 remote_ip 10.8.1.106 110921 username farhad1 110921 mac 110921 bytes_out 0 110921 bytes_in 0 110921 station_ip 5.119.241.131 110921 port 32 110921 unique_id port 110921 remote_ip 10.8.0.26 110923 username zare 110923 mac 110923 bytes_out 2265232 110923 bytes_in 30360358 110923 station_ip 37.27.48.235 110923 port 15 110923 unique_id port 110923 remote_ip 10.8.1.58 110925 username farhad1 110925 kill_reason Another user logged on this global unique id 110925 mac 110925 bytes_out 0 110925 bytes_in 0 110925 station_ip 5.120.191.0 110925 port 32 110925 unique_id port 110925 remote_ip 10.8.0.26 110928 username mahdiyehalizadeh 110928 mac 110928 bytes_out 0 110928 bytes_in 0 110928 station_ip 37.129.136.1 110928 port 47 110928 unique_id port 110928 remote_ip 10.8.0.82 110933 username alihosseini1 110933 mac 110933 bytes_out 4756634 110933 bytes_in 49212324 110933 station_ip 5.120.170.222 110933 port 46 110900 bytes_in 0 110900 station_ip 5.119.28.68 110900 port 48 110900 unique_id port 110903 username mehdizare 110903 mac 110903 bytes_out 121277 110903 bytes_in 225482 110903 station_ip 5.120.13.2 110903 port 18 110903 unique_id port 110903 remote_ip 10.8.1.42 110905 username mehdizare 110905 mac 110905 bytes_out 10147 110905 bytes_in 16033 110905 station_ip 5.120.13.2 110905 port 48 110905 unique_id port 110905 remote_ip 10.8.0.90 110907 username rajaei 110907 kill_reason Another user logged on this global unique id 110907 mac 110907 bytes_out 0 110907 bytes_in 0 110907 station_ip 89.32.97.201 110907 port 26 110907 unique_id port 110908 username kordestani 110908 mac 110908 bytes_out 0 110908 bytes_in 0 110908 station_ip 151.235.104.144 110908 port 53 110908 unique_id port 110911 username mohammadmahdi 110911 mac 110911 bytes_out 0 110911 bytes_in 0 110911 station_ip 5.119.28.68 110911 port 46 110911 unique_id port 110911 remote_ip 10.8.0.54 110920 username alihosseini1 110920 mac 110920 bytes_out 0 110920 bytes_in 0 110920 station_ip 5.119.94.167 110920 port 26 110920 unique_id port 110920 remote_ip 10.8.0.166 110922 username aminvpn 110922 mac 110922 bytes_out 0 110922 bytes_in 0 110922 station_ip 37.129.134.142 110922 port 47 110922 unique_id port 110922 remote_ip 10.8.0.14 110924 username alipour 110924 mac 110924 bytes_out 0 110924 bytes_in 0 110924 station_ip 83.122.226.36 110924 port 41 110924 unique_id port 110927 username tahmasebi 110927 mac 110927 bytes_out 1871 110927 bytes_in 6008 110927 station_ip 5.113.216.74 110927 port 15 110927 unique_id port 110927 remote_ip 10.8.1.90 110929 username rajaei 110929 mac 110929 bytes_out 2981901 110929 bytes_in 32177438 110929 station_ip 89.32.97.201 110929 port 26 110929 unique_id port 110929 remote_ip 10.8.0.34 110930 username kordestani 110930 mac 110930 bytes_out 0 110930 bytes_in 0 110930 station_ip 151.235.87.170 110930 port 26 110930 unique_id port 110930 remote_ip 10.8.0.134 110932 username tahmasebi 110932 mac 110932 bytes_out 0 110932 bytes_in 0 110932 station_ip 5.113.216.74 110932 port 34 110932 unique_id port 110932 remote_ip 10.8.0.42 110940 username farhad1 110940 mac 110940 bytes_out 0 110940 bytes_in 0 110940 station_ip 5.120.191.0 110940 port 34 110940 unique_id port 110940 remote_ip 10.8.0.26 110941 username mirzaei 110941 kill_reason Another user logged on this global unique id 110941 mac 110941 bytes_out 0 110941 bytes_in 0 110941 station_ip 5.120.191.187 110941 port 32 110941 unique_id port 110942 username tahmasebi 110942 kill_reason Another user logged on this global unique id 110942 mac 110942 bytes_out 0 110942 bytes_in 0 110942 station_ip 5.120.128.4 110942 port 26 110942 unique_id port 110942 remote_ip 10.8.0.42 110956 username farhad1 110956 kill_reason Another user logged on this global unique id 110956 mac 110956 bytes_out 0 110956 bytes_in 0 110956 station_ip 5.119.38.115 110956 port 26 110956 unique_id port 110956 remote_ip 10.8.0.26 110963 username mohammadjavad 110963 mac 110963 bytes_out 0 110963 bytes_in 0 110963 station_ip 113.203.8.24 110963 port 34 110963 unique_id port 110963 remote_ip 10.8.0.142 110967 username sedighe 110967 mac 110967 bytes_out 47064 110967 bytes_in 51459 110967 station_ip 83.122.149.94 110967 port 26 110967 unique_id port 110967 remote_ip 10.8.0.146 110968 username sedighe 110968 mac 110968 bytes_out 93302 110968 bytes_in 115466 110968 station_ip 37.129.153.167 110968 port 34 110968 unique_id port 110933 unique_id port 110933 remote_ip 10.8.0.166 110935 username tahmasebi 110935 mac 110935 bytes_out 336995 110935 bytes_in 554926 110935 station_ip 5.113.216.74 110935 port 26 110935 unique_id port 110935 remote_ip 10.8.0.42 110951 username rasoul56 110951 kill_reason Another user logged on this global unique id 110951 mac 110951 bytes_out 0 110951 bytes_in 0 110951 station_ip 83.122.130.182 110951 port 26 110951 unique_id port 110953 username rasoul56 110953 kill_reason Another user logged on this global unique id 110953 mac 110953 bytes_out 0 110953 bytes_in 0 110953 station_ip 83.122.130.182 110953 port 26 110953 unique_id port 110957 username farhad1 110957 kill_reason Another user logged on this global unique id 110957 mac 110957 bytes_out 0 110957 bytes_in 0 110957 station_ip 5.119.38.115 110957 port 26 110957 unique_id port 110959 username farhad1 110959 mac 110959 bytes_out 0 110959 bytes_in 0 110959 station_ip 5.119.38.115 110959 port 26 110959 unique_id port 110960 username sedighe 110960 mac 110960 bytes_out 0 110960 bytes_in 0 110960 station_ip 83.123.15.255 110960 port 26 110960 unique_id port 110960 remote_ip 10.8.0.146 110961 username sedighe 110961 mac 110961 bytes_out 0 110961 bytes_in 0 110961 station_ip 113.203.88.204 110961 port 34 110961 unique_id port 110961 remote_ip 10.8.0.146 110962 username sedighe 110962 mac 110962 bytes_out 0 110962 bytes_in 0 110962 station_ip 113.203.88.204 110962 port 26 110962 unique_id port 110962 remote_ip 10.8.0.146 110964 username mohammadjavad 110964 mac 110964 bytes_out 0 110964 bytes_in 0 110964 station_ip 113.203.8.24 110964 port 34 110964 unique_id port 110964 remote_ip 10.8.0.142 110965 username sedighe 110965 mac 110965 bytes_out 333682 110965 bytes_in 5368281 110965 station_ip 113.203.88.204 110965 port 26 110965 unique_id port 110965 remote_ip 10.8.0.146 110972 username mehdizare 110972 mac 110972 bytes_out 10793 110972 bytes_in 16560 110972 station_ip 5.120.13.2 110972 port 15 110972 unique_id port 110972 remote_ip 10.8.1.42 110975 username sedighe 110975 mac 110975 bytes_out 0 110975 bytes_in 0 110975 station_ip 37.129.52.141 110975 port 34 110975 unique_id port 110975 remote_ip 10.8.0.146 110980 username aminvpn 110980 mac 110980 bytes_out 0 110980 bytes_in 0 110980 station_ip 37.129.129.56 110980 port 26 110980 unique_id port 110980 remote_ip 10.8.0.14 110982 username ehsun 110982 kill_reason Another user logged on this global unique id 110982 mac 110982 bytes_out 0 110982 bytes_in 0 110982 station_ip 46.225.212.16 110982 port 34 110982 unique_id port 110982 remote_ip 10.8.0.162 110983 username morteza 110983 mac 110983 bytes_out 105051 110983 bytes_in 1628082 110983 station_ip 113.203.60.93 110983 port 26 110983 unique_id port 110983 remote_ip 10.8.0.46 110984 username ehsun 110984 kill_reason Another user logged on this global unique id 110984 mac 110984 bytes_out 0 110984 bytes_in 0 110984 station_ip 46.225.212.16 110984 port 34 110984 unique_id port 110986 username ehsun 110986 kill_reason Another user logged on this global unique id 110986 mac 110986 bytes_out 0 110986 bytes_in 0 110986 station_ip 46.225.212.16 110986 port 34 110986 unique_id port 110988 username ehsun 110988 kill_reason Another user logged on this global unique id 110988 mac 110988 bytes_out 0 110988 bytes_in 0 110988 station_ip 46.225.212.16 110988 port 34 110988 unique_id port 110992 username mirzaei 110992 mac 110992 bytes_out 0 110992 bytes_in 0 110992 station_ip 5.120.191.187 110992 port 32 110934 port 32 110934 unique_id port 110936 username mirzaei 110936 kill_reason Another user logged on this global unique id 110936 mac 110936 bytes_out 0 110936 bytes_in 0 110936 station_ip 5.120.191.187 110936 port 32 110936 unique_id port 110936 remote_ip 10.8.0.66 110937 username tahmasebi 110937 mac 110937 bytes_out 7144 110937 bytes_in 9195 110937 station_ip 5.113.216.74 110937 port 26 110937 unique_id port 110937 remote_ip 10.8.0.42 110938 username mirzaei 110938 kill_reason Another user logged on this global unique id 110938 mac 110938 bytes_out 0 110938 bytes_in 0 110938 station_ip 5.120.191.187 110938 port 32 110938 unique_id port 110939 username mirzaei 110939 kill_reason Another user logged on this global unique id 110939 mac 110939 bytes_out 0 110939 bytes_in 0 110939 station_ip 5.120.191.187 110939 port 32 110939 unique_id port 110943 username tahmasebi 110943 mac 110943 bytes_out 0 110943 bytes_in 0 110943 station_ip 5.120.128.4 110943 port 26 110943 unique_id port 110944 username rasoul56 110944 kill_reason Another user logged on this global unique id 110944 mac 110944 bytes_out 0 110944 bytes_in 0 110944 station_ip 83.122.130.182 110944 port 26 110944 unique_id port 110944 remote_ip 10.8.0.174 110945 username rasoul56 110945 kill_reason Another user logged on this global unique id 110945 mac 110945 bytes_out 0 110945 bytes_in 0 110945 station_ip 83.122.130.182 110945 port 26 110945 unique_id port 110946 username rasoul56 110946 kill_reason Another user logged on this global unique id 110946 mac 110946 bytes_out 0 110946 bytes_in 0 110946 station_ip 83.122.130.182 110946 port 26 110946 unique_id port 110947 username farhad1 110947 mac 110947 bytes_out 4788918 110947 bytes_in 9523176 110947 station_ip 5.119.135.10 110947 port 34 110947 unique_id port 110947 remote_ip 10.8.0.26 110948 username mirzaei 110948 kill_reason Another user logged on this global unique id 110948 mac 110948 bytes_out 0 110948 bytes_in 0 110948 station_ip 5.120.191.187 110948 port 32 110948 unique_id port 110949 username rasoul56 110949 kill_reason Another user logged on this global unique id 110949 mac 110949 bytes_out 0 110949 bytes_in 0 110949 station_ip 83.122.130.182 110949 port 26 110949 unique_id port 110950 username rasoul56 110950 kill_reason Another user logged on this global unique id 110950 mac 110950 bytes_out 0 110950 bytes_in 0 110950 station_ip 83.122.130.182 110950 port 26 110950 unique_id port 110952 username rasoul56 110952 kill_reason Another user logged on this global unique id 110952 mac 110952 bytes_out 0 110952 bytes_in 0 110952 station_ip 83.122.130.182 110952 port 26 110952 unique_id port 110954 username rasoul56 110954 kill_reason Another user logged on this global unique id 110954 mac 110954 bytes_out 0 110954 bytes_in 0 110954 station_ip 83.122.130.182 110954 port 26 110954 unique_id port 110955 username rasoul56 110955 mac 110955 bytes_out 0 110955 bytes_in 0 110955 station_ip 83.122.130.182 110955 port 26 110955 unique_id port 110958 username morteza 110958 mac 110958 bytes_out 599187 110958 bytes_in 12712975 110958 station_ip 113.203.124.225 110958 port 34 110958 unique_id port 110958 remote_ip 10.8.0.46 110966 username sedighe 110966 mac 110966 bytes_out 41753 110966 bytes_in 39288 110966 station_ip 37.129.30.99 110966 port 34 110966 unique_id port 110966 remote_ip 10.8.0.146 110970 username sedighe 110970 mac 110970 bytes_out 116385 110970 bytes_in 161418 110970 station_ip 83.123.57.62 110970 port 26 110970 unique_id port 110970 remote_ip 10.8.0.146 110973 username mohammadjavad 110973 mac 110973 bytes_out 0 110968 remote_ip 10.8.0.146 110969 username mehdizare 110969 mac 110969 bytes_out 0 110969 bytes_in 0 110969 station_ip 5.120.13.2 110969 port 18 110969 unique_id port 110969 remote_ip 10.8.1.42 110971 username sedighe 110971 mac 110971 bytes_out 0 110971 bytes_in 0 110971 station_ip 37.129.40.69 110971 port 47 110971 unique_id port 110971 remote_ip 10.8.0.146 110974 username sedighe 110974 mac 110974 bytes_out 0 110974 bytes_in 0 110974 station_ip 37.129.52.141 110974 port 26 110974 unique_id port 110974 remote_ip 10.8.0.146 110976 username sedighe 110976 mac 110976 bytes_out 0 110976 bytes_in 0 110976 station_ip 37.129.52.141 110976 port 26 110976 unique_id port 110976 remote_ip 10.8.0.146 110978 username bcboard 110978 unique_id port 110978 terminate_cause User-Request 110978 bytes_out 96637 110978 bytes_in 347799 110978 station_ip 37.129.101.85 110978 port 15729164 110978 nas_port_type Virtual 110978 remote_ip 5.5.5.30 110985 username sedighe 110985 mac 110985 bytes_out 2145504 110985 bytes_in 31354901 110985 station_ip 113.203.112.240 110985 port 47 110985 unique_id port 110985 remote_ip 10.8.0.146 110987 username ehsun 110987 kill_reason Another user logged on this global unique id 110987 mac 110987 bytes_out 0 110987 bytes_in 0 110987 station_ip 46.225.212.16 110987 port 34 110987 unique_id port 110990 username ehsun 110990 mac 110990 bytes_out 0 110990 bytes_in 0 110990 station_ip 46.225.212.16 110990 port 34 110990 unique_id port 110999 username malekpoir 110999 kill_reason Another user logged on this global unique id 110999 mac 110999 bytes_out 0 110999 bytes_in 0 110999 station_ip 5.119.228.82 110999 port 26 110999 unique_id port 110999 remote_ip 10.8.0.58 111001 username mehdizare 111001 mac 111001 bytes_out 0 111001 bytes_in 0 111001 station_ip 5.120.13.2 111001 port 15 111001 unique_id port 111001 remote_ip 10.8.1.42 111004 username sedighe 111004 mac 111004 bytes_out 1054401 111004 bytes_in 19740624 111004 station_ip 113.203.53.203 111004 port 32 111004 unique_id port 111004 remote_ip 10.8.0.146 111008 username mohammadjavad 111008 mac 111008 bytes_out 243693 111008 bytes_in 615123 111008 station_ip 83.123.186.29 111008 port 41 111008 unique_id port 111008 remote_ip 10.8.0.142 111012 username mehdizare 111012 mac 111012 bytes_out 0 111012 bytes_in 0 111012 station_ip 5.120.37.44 111012 port 19 111012 unique_id port 111012 remote_ip 10.8.1.42 111013 username mahdiyehalizadeh 111013 mac 111013 bytes_out 33295 111013 bytes_in 38875 111013 station_ip 113.203.111.49 111013 port 17 111013 unique_id port 111013 remote_ip 10.8.1.110 111017 username mirzaei 111017 mac 111017 bytes_out 0 111017 bytes_in 0 111017 station_ip 5.120.191.187 111017 port 18 111017 unique_id port 111017 remote_ip 10.8.1.30 111019 username mehdizare 111019 mac 111019 bytes_out 0 111019 bytes_in 0 111019 station_ip 5.119.132.42 111019 port 15 111019 unique_id port 111019 remote_ip 10.8.1.42 111023 username alipour 111023 mac 111023 bytes_out 0 111023 bytes_in 0 111023 station_ip 83.122.226.36 111023 port 15 111023 unique_id port 111023 remote_ip 10.8.1.50 111026 username zare 111026 mac 111026 bytes_out 0 111026 bytes_in 0 111026 station_ip 94.183.214.14 111026 port 34 111026 unique_id port 111026 remote_ip 10.8.0.18 111028 username zare 111028 mac 111028 bytes_out 0 111028 bytes_in 0 111028 station_ip 94.183.214.14 111028 port 41 111028 unique_id port 111028 remote_ip 10.8.0.18 110973 bytes_in 0 110973 station_ip 113.203.37.210 110973 port 34 110973 unique_id port 110973 remote_ip 10.8.0.142 110977 username sedighe 110977 mac 110977 bytes_out 0 110977 bytes_in 0 110977 station_ip 113.203.112.240 110977 port 34 110977 unique_id port 110977 remote_ip 10.8.0.146 110979 username mehdizare 110979 mac 110979 bytes_out 0 110979 bytes_in 0 110979 station_ip 5.120.13.2 110979 port 15 110979 unique_id port 110979 remote_ip 10.8.1.42 110981 username mehdizare 110981 mac 110981 bytes_out 10791 110981 bytes_in 12363 110981 station_ip 5.120.13.2 110981 port 15 110981 unique_id port 110981 remote_ip 10.8.1.42 110989 username mirzaei 110989 mac 110989 bytes_out 0 110989 bytes_in 0 110989 station_ip 5.120.191.187 110989 port 32 110989 unique_id port 110991 username mosi 110991 mac 110991 bytes_out 0 110991 bytes_in 0 110991 station_ip 151.235.111.162 110991 port 26 110991 unique_id port 110991 remote_ip 10.8.0.138 110993 username mirzaei 110993 mac 110993 bytes_out 40576 110993 bytes_in 102522 110993 station_ip 5.120.191.187 110993 port 26 110993 unique_id port 110993 remote_ip 10.8.0.66 110994 username forozande 110994 mac 110994 bytes_out 0 110994 bytes_in 0 110994 station_ip 83.122.120.108 110994 port 26 110994 unique_id port 110994 remote_ip 10.8.0.74 110996 username alipour 110996 kill_reason Another user logged on this global unique id 110996 mac 110996 bytes_out 0 110996 bytes_in 0 110996 station_ip 83.122.226.36 110996 port 41 110996 unique_id port 110996 remote_ip 10.8.0.102 110997 username mohammadjavad 110997 mac 110997 bytes_out 413604 110997 bytes_in 1726190 110997 station_ip 113.203.81.184 110997 port 26 110997 unique_id port 110997 remote_ip 10.8.0.142 111000 username mehdizare 111000 mac 111000 bytes_out 10795 111000 bytes_in 22971 111000 station_ip 5.120.13.2 111000 port 15 111000 unique_id port 111000 remote_ip 10.8.1.42 111002 username malekpoir 111002 kill_reason Another user logged on this global unique id 111002 mac 111002 bytes_out 0 111002 bytes_in 0 111002 station_ip 5.119.228.82 111002 port 26 111002 unique_id port 111005 username morteza 111005 mac 111005 bytes_out 214545 111005 bytes_in 3576372 111005 station_ip 37.129.58.37 111005 port 32 111005 unique_id port 111005 remote_ip 10.8.0.46 111006 username morteza 111006 mac 111006 bytes_out 312347 111006 bytes_in 976173 111006 station_ip 37.129.58.37 111006 port 32 111006 unique_id port 111006 remote_ip 10.8.0.46 111007 username houshang 111007 mac 111007 bytes_out 329268 111007 bytes_in 648768 111007 station_ip 5.119.207.232 111007 port 32 111007 unique_id port 111007 remote_ip 10.8.0.22 111009 username forozande 111009 mac 111009 bytes_out 364788 111009 bytes_in 2143955 111009 station_ip 83.123.218.60 111009 port 32 111009 unique_id port 111009 remote_ip 10.8.0.74 111010 username alipour 111010 mac 111010 bytes_out 0 111010 bytes_in 0 111010 station_ip 83.122.226.36 111010 port 34 111010 unique_id port 111010 remote_ip 10.8.0.102 111016 username mirzaei 111016 mac 111016 bytes_out 0 111016 bytes_in 0 111016 station_ip 5.120.191.187 111016 port 18 111016 unique_id port 111016 remote_ip 10.8.1.30 111020 username alipour 111020 mac 111020 bytes_out 184809 111020 bytes_in 1235046 111020 station_ip 83.122.226.36 111020 port 34 111020 unique_id port 111020 remote_ip 10.8.0.102 111024 username zare 111024 mac 111024 bytes_out 0 111024 bytes_in 0 111024 station_ip 94.183.214.14 110992 unique_id port 110992 remote_ip 10.8.0.66 110995 username khalili 110995 mac 110995 bytes_out 6684460 110995 bytes_in 44240584 110995 station_ip 5.120.55.54 110995 port 17 110995 unique_id port 110995 remote_ip 10.8.1.18 110998 username mehdizare 110998 mac 110998 bytes_out 1283771 110998 bytes_in 17551334 110998 station_ip 5.120.13.2 110998 port 15 110998 unique_id port 110998 remote_ip 10.8.1.42 111003 username alipour 111003 mac 111003 bytes_out 0 111003 bytes_in 0 111003 station_ip 83.122.226.36 111003 port 41 111003 unique_id port 111011 username mehdizare 111011 mac 111011 bytes_out 0 111011 bytes_in 0 111011 station_ip 5.120.13.2 111011 port 15 111011 unique_id port 111011 remote_ip 10.8.1.42 111014 username mirzaei 111014 mac 111014 bytes_out 0 111014 bytes_in 0 111014 station_ip 5.120.191.187 111014 port 18 111014 unique_id port 111014 remote_ip 10.8.1.30 111015 username mirzaei 111015 mac 111015 bytes_out 0 111015 bytes_in 0 111015 station_ip 5.120.191.187 111015 port 18 111015 unique_id port 111015 remote_ip 10.8.1.30 111018 username mehdizare 111018 mac 111018 bytes_out 0 111018 bytes_in 0 111018 station_ip 5.120.37.44 111018 port 15 111018 unique_id port 111018 remote_ip 10.8.1.42 111021 username alipour 111021 mac 111021 bytes_out 2743 111021 bytes_in 6934 111021 station_ip 83.122.226.36 111021 port 49 111021 unique_id port 111021 remote_ip 10.8.0.102 111022 username mahdiyehalizadeh 111022 mac 111022 bytes_out 0 111022 bytes_in 0 111022 station_ip 113.203.111.49 111022 port 41 111022 unique_id port 111022 remote_ip 10.8.0.82 111025 username zare 111025 mac 111025 bytes_out 0 111025 bytes_in 0 111025 station_ip 94.183.214.14 111025 port 34 111025 unique_id port 111025 remote_ip 10.8.0.18 111027 username zare 111027 mac 111027 bytes_out 0 111027 bytes_in 0 111027 station_ip 94.183.214.14 111027 port 41 111027 unique_id port 111027 remote_ip 10.8.0.18 111029 username zare 111029 mac 111029 bytes_out 0 111029 bytes_in 0 111029 station_ip 94.183.214.14 111029 port 41 111029 unique_id port 111029 remote_ip 10.8.0.18 111032 username forozande 111032 mac 111032 bytes_out 0 111032 bytes_in 0 111032 station_ip 113.203.49.214 111032 port 17 111032 unique_id port 111032 remote_ip 10.8.1.102 111034 username mehdizare 111034 mac 111034 bytes_out 79533 111034 bytes_in 154006 111034 station_ip 5.119.132.42 111034 port 48 111034 unique_id port 111034 remote_ip 10.8.0.90 111035 username alipour 111035 mac 111035 bytes_out 538648 111035 bytes_in 6843302 111035 station_ip 83.122.226.36 111035 port 19 111035 unique_id port 111035 remote_ip 10.8.1.50 111037 username forozande 111037 mac 111037 bytes_out 0 111037 bytes_in 0 111037 station_ip 113.203.49.214 111037 port 17 111037 unique_id port 111037 remote_ip 10.8.1.102 111038 username morteza 111038 mac 111038 bytes_out 0 111038 bytes_in 0 111038 station_ip 113.203.100.197 111038 port 47 111038 unique_id port 111038 remote_ip 10.8.0.46 111040 username alipour 111040 mac 111040 bytes_out 28540 111040 bytes_in 37103 111040 station_ip 83.123.12.163 111040 port 17 111040 unique_id port 111040 remote_ip 10.8.1.50 111044 username mehdizare 111044 mac 111044 bytes_out 79405 111044 bytes_in 82733 111044 station_ip 5.119.132.42 111044 port 34 111044 unique_id port 111044 remote_ip 10.8.0.90 111046 username sedighe 111046 mac 111046 bytes_out 539423 111046 bytes_in 13667285 111024 port 17 111024 unique_id port 111024 remote_ip 10.8.1.58 111030 username amir 111030 kill_reason Another user logged on this global unique id 111030 mac 111030 bytes_out 0 111030 bytes_in 0 111030 station_ip 46.225.213.183 111030 port 32 111030 unique_id port 111030 remote_ip 10.8.0.50 111031 username forozande 111031 mac 111031 bytes_out 180162 111031 bytes_in 251002 111031 station_ip 113.203.49.214 111031 port 47 111031 unique_id port 111031 remote_ip 10.8.0.74 111033 username alipour 111033 mac 111033 bytes_out 53441 111033 bytes_in 59990 111033 station_ip 83.122.226.36 111033 port 34 111033 unique_id port 111033 remote_ip 10.8.0.102 111036 username alipour 111036 mac 111036 bytes_out 21505 111036 bytes_in 29052 111036 station_ip 83.122.226.36 111036 port 19 111036 unique_id port 111036 remote_ip 10.8.1.50 111041 username forozande 111041 mac 111041 bytes_out 324381 111041 bytes_in 2258599 111041 station_ip 83.123.103.177 111041 port 47 111041 unique_id port 111041 remote_ip 10.8.0.74 111042 username aminvpn 111042 unique_id port 111042 terminate_cause Lost-Carrier 111042 bytes_out 386351 111042 bytes_in 1414506 111042 station_ip 5.120.115.141 111042 port 15729165 111042 nas_port_type Virtual 111042 remote_ip 5.5.5.32 111043 username amir 111043 kill_reason Another user logged on this global unique id 111043 mac 111043 bytes_out 0 111043 bytes_in 0 111043 station_ip 46.225.213.183 111043 port 32 111043 unique_id port 111054 username zare 111054 mac 111054 bytes_out 0 111054 bytes_in 0 111054 station_ip 94.183.214.14 111054 port 32 111054 unique_id port 111054 remote_ip 10.8.0.18 111059 username sedighe 111059 mac 111059 bytes_out 0 111059 bytes_in 0 111059 station_ip 37.129.112.209 111059 port 47 111059 unique_id port 111059 remote_ip 10.8.0.146 111060 username alipour 111060 mac 111060 bytes_out 16350 111060 bytes_in 25788 111060 station_ip 83.123.12.163 111060 port 17 111060 unique_id port 111060 remote_ip 10.8.1.50 111063 username zare 111063 mac 111063 bytes_out 0 111063 bytes_in 0 111063 station_ip 94.183.214.14 111063 port 41 111063 unique_id port 111063 remote_ip 10.8.0.18 111064 username zare 111064 mac 111064 bytes_out 0 111064 bytes_in 0 111064 station_ip 94.183.214.14 111064 port 41 111064 unique_id port 111064 remote_ip 10.8.0.18 111067 username alipour 111067 mac 111067 bytes_out 72737 111067 bytes_in 88218 111067 station_ip 83.123.12.163 111067 port 47 111067 unique_id port 111067 remote_ip 10.8.0.102 111069 username zare 111069 mac 111069 bytes_out 0 111069 bytes_in 0 111069 station_ip 94.183.214.14 111069 port 48 111069 unique_id port 111069 remote_ip 10.8.0.18 111071 username zare 111071 mac 111071 bytes_out 0 111071 bytes_in 0 111071 station_ip 94.183.214.14 111071 port 48 111071 unique_id port 111071 remote_ip 10.8.0.18 111074 username kordestani 111074 mac 111074 bytes_out 0 111074 bytes_in 0 111074 station_ip 151.235.97.227 111074 port 48 111074 unique_id port 111074 remote_ip 10.8.0.134 111080 username kordestani 111080 mac 111080 bytes_out 0 111080 bytes_in 0 111080 station_ip 151.235.97.227 111080 port 47 111080 unique_id port 111080 remote_ip 10.8.0.134 111082 username mehdizare 111082 mac 111082 bytes_out 0 111082 bytes_in 0 111082 station_ip 5.119.132.42 111082 port 32 111082 unique_id port 111082 remote_ip 10.8.0.90 111084 username asma2026 111084 kill_reason Another user logged on this global unique id 111084 mac 111084 bytes_out 0 111084 bytes_in 0 111039 username alipour 111039 mac 111039 bytes_out 137389 111039 bytes_in 571673 111039 station_ip 83.123.12.163 111039 port 41 111039 unique_id port 111039 remote_ip 10.8.0.102 111045 username alipour 111045 mac 111045 bytes_out 0 111045 bytes_in 0 111045 station_ip 83.123.12.163 111045 port 17 111045 unique_id port 111045 remote_ip 10.8.1.50 111048 username aminvpn 111048 unique_id port 111048 terminate_cause Lost-Carrier 111048 bytes_out 338532 111048 bytes_in 1864698 111048 station_ip 5.120.115.141 111048 port 15729166 111048 nas_port_type Virtual 111048 remote_ip 5.5.5.33 111049 username amir 111049 mac 111049 bytes_out 0 111049 bytes_in 0 111049 station_ip 46.225.213.183 111049 port 32 111049 unique_id port 111055 username alipour 111055 mac 111055 bytes_out 0 111055 bytes_in 0 111055 station_ip 83.123.12.163 111055 port 17 111055 unique_id port 111055 remote_ip 10.8.1.50 111057 username amir 111057 mac 111057 bytes_out 0 111057 bytes_in 0 111057 station_ip 46.225.213.183 111057 port 34 111057 unique_id port 111057 remote_ip 10.8.0.50 111062 username aminvpn 111062 mac 111062 bytes_out 168952 111062 bytes_in 1033705 111062 station_ip 37.129.129.56 111062 port 48 111062 unique_id port 111062 remote_ip 10.8.0.14 111065 username zare 111065 mac 111065 bytes_out 1636 111065 bytes_in 4983 111065 station_ip 94.183.214.14 111065 port 41 111065 unique_id port 111065 remote_ip 10.8.0.18 111070 username zare 111070 mac 111070 bytes_out 0 111070 bytes_in 0 111070 station_ip 94.183.214.14 111070 port 48 111070 unique_id port 111070 remote_ip 10.8.0.18 111072 username aminvpn 111072 kill_reason Maximum check online fails reached 111072 unique_id port 111072 bytes_out 0 111072 bytes_in 0 111072 station_ip 5.120.190.25 111072 port 15729167 111072 nas_port_type Virtual 111073 username sedighe 111073 mac 111073 bytes_out 1988105 111073 bytes_in 27651129 111073 station_ip 37.129.112.209 111073 port 15 111073 unique_id port 111073 remote_ip 10.8.1.78 111075 username arman1 111075 kill_reason Another user logged on this global unique id 111075 mac 111075 bytes_out 0 111075 bytes_in 0 111075 station_ip 5.120.97.141 111075 port 41 111075 unique_id port 111075 remote_ip 10.8.0.110 111076 username mohammadjavad 111076 mac 111076 bytes_out 0 111076 bytes_in 0 111076 station_ip 37.129.117.135 111076 port 47 111076 unique_id port 111076 remote_ip 10.8.0.142 111077 username arman1 111077 mac 111077 bytes_out 0 111077 bytes_in 0 111077 station_ip 5.120.97.141 111077 port 41 111077 unique_id port 111078 username mohammadjavad 111078 mac 111078 bytes_out 0 111078 bytes_in 0 111078 station_ip 37.129.117.135 111078 port 48 111078 unique_id port 111078 remote_ip 10.8.0.142 111081 username aminvpn 111081 unique_id port 111081 terminate_cause Lost-Carrier 111081 bytes_out 446210 111081 bytes_in 9151395 111081 station_ip 5.120.190.25 111081 port 15729168 111081 nas_port_type Virtual 111081 remote_ip 5.5.5.35 111083 username tahmasebi 111083 kill_reason Another user logged on this global unique id 111083 mac 111083 bytes_out 0 111083 bytes_in 0 111083 station_ip 5.120.128.4 111083 port 46 111083 unique_id port 111083 remote_ip 10.8.0.42 111088 username arman1 111088 mac 111088 bytes_out 0 111088 bytes_in 0 111088 station_ip 5.119.224.143 111088 port 48 111088 unique_id port 111088 remote_ip 10.8.0.110 111090 username zare 111090 mac 111090 bytes_out 752728 111090 bytes_in 3714524 111090 station_ip 94.183.214.14 111090 port 19 111090 unique_id port 111046 station_ip 37.129.112.209 111046 port 41 111046 unique_id port 111046 remote_ip 10.8.0.146 111047 username alipour 111047 mac 111047 bytes_out 43980 111047 bytes_in 65307 111047 station_ip 83.123.12.163 111047 port 17 111047 unique_id port 111047 remote_ip 10.8.1.50 111050 username zare 111050 mac 111050 bytes_out 0 111050 bytes_in 0 111050 station_ip 94.183.214.14 111050 port 15 111050 unique_id port 111050 remote_ip 10.8.1.58 111051 username malekpoir 111051 kill_reason Another user logged on this global unique id 111051 mac 111051 bytes_out 0 111051 bytes_in 0 111051 station_ip 5.119.228.82 111051 port 26 111051 unique_id port 111052 username sedighe 111052 mac 111052 bytes_out 1305457 111052 bytes_in 34592501 111052 station_ip 37.129.112.209 111052 port 34 111052 unique_id port 111052 remote_ip 10.8.0.146 111053 username sedighe 111053 mac 111053 bytes_out 12962 111053 bytes_in 11215 111053 station_ip 37.129.112.209 111053 port 32 111053 unique_id port 111053 remote_ip 10.8.0.146 111056 username mehdizare 111056 mac 111056 bytes_out 57514 111056 bytes_in 44965 111056 station_ip 5.119.132.42 111056 port 47 111056 unique_id port 111056 remote_ip 10.8.0.90 111058 username alipour 111058 mac 111058 bytes_out 0 111058 bytes_in 0 111058 station_ip 83.123.12.163 111058 port 15 111058 unique_id port 111058 remote_ip 10.8.1.50 111061 username mehdizare 111061 mac 111061 bytes_out 0 111061 bytes_in 0 111061 station_ip 5.119.132.42 111061 port 32 111061 unique_id port 111061 remote_ip 10.8.0.90 111066 username zare 111066 mac 111066 bytes_out 0 111066 bytes_in 0 111066 station_ip 94.183.214.14 111066 port 19 111066 unique_id port 111066 remote_ip 10.8.1.58 111068 username zare 111068 mac 111068 bytes_out 0 111068 bytes_in 0 111068 station_ip 94.183.214.14 111068 port 19 111068 unique_id port 111068 remote_ip 10.8.1.58 111079 username arman1 111079 mac 111079 bytes_out 0 111079 bytes_in 0 111079 station_ip 5.120.83.136 111079 port 41 111079 unique_id port 111079 remote_ip 10.8.0.110 111085 username amir 111085 kill_reason Another user logged on this global unique id 111085 mac 111085 bytes_out 0 111085 bytes_in 0 111085 station_ip 46.225.213.183 111085 port 34 111085 unique_id port 111085 remote_ip 10.8.0.50 111089 username asma2026 111089 kill_reason Another user logged on this global unique id 111089 mac 111089 bytes_out 0 111089 bytes_in 0 111089 station_ip 37.129.57.249 111089 port 41 111089 unique_id port 111091 username tahmasebi 111091 kill_reason Another user logged on this global unique id 111091 mac 111091 bytes_out 0 111091 bytes_in 0 111091 station_ip 5.120.128.4 111091 port 46 111091 unique_id port 111092 username sedighe 111092 mac 111092 bytes_out 35712 111092 bytes_in 45185 111092 station_ip 37.129.112.209 111092 port 15 111092 unique_id port 111092 remote_ip 10.8.1.78 111098 username mohammadjavad 111098 mac 111098 bytes_out 0 111098 bytes_in 0 111098 station_ip 37.129.112.224 111098 port 47 111098 unique_id port 111098 remote_ip 10.8.0.142 111109 username malekpoir 111109 mac 111109 bytes_out 0 111109 bytes_in 0 111109 station_ip 5.119.228.82 111109 port 26 111109 unique_id port 111109 remote_ip 10.8.0.58 111112 username kordestani 111112 mac 111112 bytes_out 0 111112 bytes_in 0 111112 station_ip 151.235.97.227 111112 port 47 111112 unique_id port 111112 remote_ip 10.8.0.134 111116 username kordestani 111116 mac 111116 bytes_out 0 111116 bytes_in 0 111116 station_ip 151.235.97.227 111084 station_ip 37.129.57.249 111084 port 41 111084 unique_id port 111084 remote_ip 10.8.0.170 111086 username malekpoir 111086 mac 111086 bytes_out 0 111086 bytes_in 0 111086 station_ip 5.119.228.82 111086 port 26 111086 unique_id port 111087 username kordestani 111087 mac 111087 bytes_out 0 111087 bytes_in 0 111087 station_ip 151.235.97.227 111087 port 47 111087 unique_id port 111087 remote_ip 10.8.0.134 111095 username zare 111095 mac 111095 bytes_out 0 111095 bytes_in 0 111095 station_ip 94.183.214.14 111095 port 19 111095 unique_id port 111095 remote_ip 10.8.1.58 111096 username amir 111096 kill_reason Another user logged on this global unique id 111096 mac 111096 bytes_out 0 111096 bytes_in 0 111096 station_ip 46.225.213.183 111096 port 34 111096 unique_id port 111100 username sedighe 111100 mac 111100 bytes_out 90006 111100 bytes_in 118848 111100 station_ip 37.129.112.209 111100 port 15 111100 unique_id port 111100 remote_ip 10.8.1.78 111103 username alipour 111103 mac 111103 bytes_out 0 111103 bytes_in 0 111103 station_ip 83.123.12.163 111103 port 48 111103 unique_id port 111103 remote_ip 10.8.0.102 111104 username reza2742 111104 unique_id port 111104 terminate_cause Lost-Carrier 111104 bytes_out 1083045 111104 bytes_in 34140739 111104 station_ip 5.202.98.207 111104 port 15729171 111104 nas_port_type Virtual 111104 remote_ip 5.5.5.245 111108 username zare 111108 mac 111108 bytes_out 212707 111108 bytes_in 2253165 111108 station_ip 94.183.214.14 111108 port 17 111108 unique_id port 111108 remote_ip 10.8.1.58 111113 username sedighe 111113 mac 111113 bytes_out 232477 111113 bytes_in 714646 111113 station_ip 37.129.112.209 111113 port 15 111113 unique_id port 111113 remote_ip 10.8.1.78 111115 username tahmasebi 111115 kill_reason Another user logged on this global unique id 111115 mac 111115 bytes_out 0 111115 bytes_in 0 111115 station_ip 5.120.128.4 111115 port 46 111115 unique_id port 111117 username alipour 111117 mac 111117 bytes_out 57017 111117 bytes_in 107440 111117 station_ip 83.123.12.163 111117 port 19 111117 unique_id port 111117 remote_ip 10.8.1.50 111118 username asma2026 111118 kill_reason Another user logged on this global unique id 111118 mac 111118 bytes_out 0 111118 bytes_in 0 111118 station_ip 37.129.57.249 111118 port 41 111118 unique_id port 111121 username sedighe 111121 mac 111121 bytes_out 116177 111121 bytes_in 234979 111121 station_ip 37.129.112.209 111121 port 48 111121 unique_id port 111121 remote_ip 10.8.0.146 111122 username kordestani 111122 mac 111122 bytes_out 295664 111122 bytes_in 278942 111122 station_ip 151.235.97.227 111122 port 17 111122 unique_id port 111122 remote_ip 10.8.1.98 111126 username zare 111126 mac 111126 bytes_out 0 111126 bytes_in 0 111126 station_ip 94.183.214.14 111126 port 15 111126 unique_id port 111126 remote_ip 10.8.1.58 111130 username sedighe 111130 mac 111130 bytes_out 0 111130 bytes_in 0 111130 station_ip 37.129.112.209 111130 port 48 111130 unique_id port 111130 remote_ip 10.8.0.146 111134 username zare 111134 mac 111134 bytes_out 0 111134 bytes_in 0 111134 station_ip 94.183.214.14 111134 port 48 111134 unique_id port 111134 remote_ip 10.8.0.18 111135 username zare 111135 mac 111135 bytes_out 0 111135 bytes_in 0 111135 station_ip 94.183.214.14 111135 port 32 111135 unique_id port 111135 remote_ip 10.8.0.18 111140 username zare 111140 mac 111140 bytes_out 0 111140 bytes_in 0 111140 station_ip 94.183.214.14 111140 port 17 111090 remote_ip 10.8.1.58 111093 username zare 111093 mac 111093 bytes_out 0 111093 bytes_in 0 111093 station_ip 94.183.214.14 111093 port 47 111093 unique_id port 111093 remote_ip 10.8.0.18 111094 username asma2026 111094 kill_reason Another user logged on this global unique id 111094 mac 111094 bytes_out 0 111094 bytes_in 0 111094 station_ip 37.129.57.249 111094 port 41 111094 unique_id port 111097 username alipour 111097 mac 111097 bytes_out 843299 111097 bytes_in 6443908 111097 station_ip 83.123.12.163 111097 port 17 111097 unique_id port 111097 remote_ip 10.8.1.50 111099 username tahmasebi 111099 kill_reason Another user logged on this global unique id 111099 mac 111099 bytes_out 0 111099 bytes_in 0 111099 station_ip 5.120.128.4 111099 port 46 111099 unique_id port 111101 username amir 111101 mac 111101 bytes_out 0 111101 bytes_in 0 111101 station_ip 46.225.213.183 111101 port 34 111101 unique_id port 111102 username sedighe 111102 mac 111102 bytes_out 3107 111102 bytes_in 5554 111102 station_ip 37.129.112.209 111102 port 19 111102 unique_id port 111102 remote_ip 10.8.1.78 111105 username tahmasebi 111105 kill_reason Another user logged on this global unique id 111105 mac 111105 bytes_out 0 111105 bytes_in 0 111105 station_ip 5.120.128.4 111105 port 46 111105 unique_id port 111106 username amir 111106 mac 111106 bytes_out 0 111106 bytes_in 0 111106 station_ip 46.225.213.183 111106 port 47 111106 unique_id port 111106 remote_ip 10.8.0.50 111107 username alipour 111107 mac 111107 bytes_out 0 111107 bytes_in 0 111107 station_ip 83.123.12.163 111107 port 34 111107 unique_id port 111107 remote_ip 10.8.0.102 111110 username hamid 111110 mac 111110 bytes_out 0 111110 bytes_in 0 111110 station_ip 113.203.126.105 111110 port 47 111110 unique_id port 111110 remote_ip 10.8.0.106 111111 username aminvpn 111111 unique_id port 111111 terminate_cause Lost-Carrier 111111 bytes_out 176311 111111 bytes_in 1750709 111111 station_ip 5.120.115.141 111111 port 15729172 111111 nas_port_type Virtual 111111 remote_ip 5.5.5.255 111114 username zare 111114 mac 111114 bytes_out 130663 111114 bytes_in 463765 111114 station_ip 94.183.214.14 111114 port 17 111114 unique_id port 111114 remote_ip 10.8.1.58 111119 username aminvpn 111119 unique_id port 111119 terminate_cause Lost-Carrier 111119 bytes_out 298369 111119 bytes_in 3499745 111119 station_ip 5.120.65.69 111119 port 15729170 111119 nas_port_type Virtual 111119 remote_ip 5.5.5.243 111120 username asma2026 111120 mac 111120 bytes_out 0 111120 bytes_in 0 111120 station_ip 37.129.57.249 111120 port 41 111120 unique_id port 111127 username tahmasebi 111127 kill_reason Another user logged on this global unique id 111127 mac 111127 bytes_out 0 111127 bytes_in 0 111127 station_ip 5.120.128.4 111127 port 46 111127 unique_id port 111128 username zare 111128 mac 111128 bytes_out 0 111128 bytes_in 0 111128 station_ip 94.183.214.14 111128 port 15 111128 unique_id port 111128 remote_ip 10.8.1.58 111131 username zare 111131 mac 111131 bytes_out 0 111131 bytes_in 0 111131 station_ip 94.183.214.14 111131 port 17 111131 unique_id port 111131 remote_ip 10.8.1.58 111136 username zare 111136 kill_reason Maximum check online fails reached 111136 mac 111136 bytes_out 0 111136 bytes_in 0 111136 station_ip 94.183.214.14 111136 port 15 111136 unique_id port 111138 username zare 111138 mac 111138 bytes_out 0 111138 bytes_in 0 111138 station_ip 94.183.214.14 111138 port 17 111138 unique_id port 111138 remote_ip 10.8.1.58 111116 port 47 111116 unique_id port 111116 remote_ip 10.8.0.134 111123 username tahmasebi 111123 kill_reason Another user logged on this global unique id 111123 mac 111123 bytes_out 0 111123 bytes_in 0 111123 station_ip 5.120.128.4 111123 port 46 111123 unique_id port 111124 username aminvpn 111124 mac 111124 bytes_out 0 111124 bytes_in 0 111124 station_ip 37.129.184.88 111124 port 50 111124 unique_id port 111124 remote_ip 10.8.0.14 111125 username sedighe 111125 mac 111125 bytes_out 0 111125 bytes_in 0 111125 station_ip 37.129.112.209 111125 port 41 111125 unique_id port 111125 remote_ip 10.8.0.146 111129 username rasoul56 111129 mac 111129 bytes_out 0 111129 bytes_in 0 111129 station_ip 83.122.145.170 111129 port 47 111129 unique_id port 111129 remote_ip 10.8.0.174 111132 username tahmasebi 111132 kill_reason Another user logged on this global unique id 111132 mac 111132 bytes_out 0 111132 bytes_in 0 111132 station_ip 5.120.128.4 111132 port 46 111132 unique_id port 111133 username mehdizare 111133 mac 111133 bytes_out 0 111133 bytes_in 0 111133 station_ip 5.119.132.42 111133 port 32 111133 unique_id port 111133 remote_ip 10.8.0.90 111137 username zare 111137 mac 111137 bytes_out 0 111137 bytes_in 0 111137 station_ip 94.183.214.14 111137 port 17 111137 unique_id port 111137 remote_ip 10.8.1.58 111141 username mehdizare 111141 mac 111141 bytes_out 0 111141 bytes_in 0 111141 station_ip 5.119.132.42 111141 port 51 111141 unique_id port 111141 remote_ip 10.8.0.90 111143 username alipour 111143 mac 111143 bytes_out 148988 111143 bytes_in 396447 111143 station_ip 83.123.12.163 111143 port 49 111143 unique_id port 111143 remote_ip 10.8.0.102 111144 username tahmasebi 111144 kill_reason Another user logged on this global unique id 111144 mac 111144 bytes_out 0 111144 bytes_in 0 111144 station_ip 5.120.128.4 111144 port 46 111144 unique_id port 111149 username amir 111149 kill_reason Another user logged on this global unique id 111149 mac 111149 bytes_out 0 111149 bytes_in 0 111149 station_ip 46.225.213.183 111149 port 26 111149 unique_id port 111149 remote_ip 10.8.0.50 111152 username seyedmostafa 111152 mac 111152 bytes_out 0 111152 bytes_in 0 111152 station_ip 5.120.106.214 111152 port 50 111152 unique_id port 111152 remote_ip 10.8.0.122 111154 username ahmadipour 111154 unique_id port 111154 terminate_cause Lost-Carrier 111154 bytes_out 62196 111154 bytes_in 367827 111154 station_ip 37.129.50.108 111154 port 15729173 111154 nas_port_type Virtual 111154 remote_ip 5.5.5.0 111159 username malekpoir 111159 kill_reason Another user logged on this global unique id 111159 mac 111159 bytes_out 0 111159 bytes_in 0 111159 station_ip 5.119.228.82 111159 port 34 111159 unique_id port 111159 remote_ip 10.8.0.58 111167 username bcboard 111167 unique_id port 111167 terminate_cause User-Request 111167 bytes_out 85125 111167 bytes_in 931528 111167 station_ip 83.122.131.14 111167 port 15729178 111167 nas_port_type Virtual 111167 remote_ip 5.5.5.255 111172 username aminvpn 111172 unique_id port 111172 terminate_cause Lost-Carrier 111172 bytes_out 70274 111172 bytes_in 125543 111172 station_ip 5.120.115.141 111172 port 15729180 111172 nas_port_type Virtual 111172 remote_ip 5.5.5.255 111174 username alihosseini1 111174 mac 111174 bytes_out 0 111174 bytes_in 0 111174 station_ip 5.120.56.81 111174 port 17 111174 unique_id port 111174 remote_ip 10.8.1.106 111175 username tahmasebi 111175 kill_reason Another user logged on this global unique id 111175 mac 111175 bytes_out 0 111175 bytes_in 0 111175 station_ip 5.120.128.4 111139 username tahmasebi 111139 kill_reason Another user logged on this global unique id 111139 mac 111139 bytes_out 0 111139 bytes_in 0 111139 station_ip 5.120.128.4 111139 port 46 111139 unique_id port 111145 username zare 111145 mac 111145 bytes_out 0 111145 bytes_in 0 111145 station_ip 94.183.214.14 111145 port 17 111145 unique_id port 111145 remote_ip 10.8.1.58 111146 username alirr 111146 unique_id port 111146 terminate_cause Lost-Carrier 111146 bytes_out 27801474 111146 bytes_in 553073995 111146 station_ip 185.177.156.93 111146 port 15729169 111146 nas_port_type Virtual 111146 remote_ip 5.5.5.75 111148 username mehdizare 111148 mac 111148 bytes_out 0 111148 bytes_in 0 111148 station_ip 5.119.132.42 111148 port 32 111148 unique_id port 111148 remote_ip 10.8.0.90 111150 username zare 111150 mac 111150 bytes_out 0 111150 bytes_in 0 111150 station_ip 94.183.214.14 111150 port 49 111150 unique_id port 111150 remote_ip 10.8.0.18 111151 username mehdizare 111151 mac 111151 bytes_out 25451 111151 bytes_in 30818 111151 station_ip 5.119.132.42 111151 port 32 111151 unique_id port 111151 remote_ip 10.8.0.90 111157 username mehdizare 111157 mac 111157 bytes_out 8923 111157 bytes_in 12000 111157 station_ip 5.119.132.42 111157 port 49 111157 unique_id port 111157 remote_ip 10.8.0.90 111160 username mehdizare 111160 mac 111160 bytes_out 36952 111160 bytes_in 68563 111160 station_ip 5.119.132.42 111160 port 50 111160 unique_id port 111160 remote_ip 10.8.0.90 111163 username bcboard 111163 unique_id port 111163 terminate_cause User-Request 111163 bytes_out 109538 111163 bytes_in 366321 111163 station_ip 83.122.131.14 111163 port 15729177 111163 nas_port_type Virtual 111163 remote_ip 5.5.5.254 111166 username mohammadjavad 111166 mac 111166 bytes_out 1693072 111166 bytes_in 35511105 111166 station_ip 83.123.221.26 111166 port 32 111166 unique_id port 111166 remote_ip 10.8.0.142 111169 username kordestani 111169 mac 111169 bytes_out 1284740 111169 bytes_in 15258210 111169 station_ip 151.235.97.227 111169 port 41 111169 unique_id port 111169 remote_ip 10.8.0.134 111170 username tahmasebi 111170 kill_reason Another user logged on this global unique id 111170 mac 111170 bytes_out 0 111170 bytes_in 0 111170 station_ip 5.120.128.4 111170 port 46 111170 unique_id port 111171 username mehdizare 111171 mac 111171 bytes_out 13538 111171 bytes_in 19752 111171 station_ip 5.119.132.42 111171 port 51 111171 unique_id port 111171 remote_ip 10.8.0.90 111179 username alihosseini1 111179 mac 111179 bytes_out 281258 111179 bytes_in 224340 111179 station_ip 5.120.56.81 111179 port 47 111179 unique_id port 111179 remote_ip 10.8.0.166 111186 username amir 111186 mac 111186 bytes_out 196961 111186 bytes_in 899345 111186 station_ip 46.225.213.183 111186 port 26 111186 unique_id port 111186 remote_ip 10.8.0.50 111188 username alipour 111188 mac 111188 bytes_out 0 111188 bytes_in 0 111188 station_ip 83.123.12.163 111188 port 48 111188 unique_id port 111188 remote_ip 10.8.0.102 111189 username zare 111189 mac 111189 bytes_out 0 111189 bytes_in 0 111189 station_ip 94.183.214.14 111189 port 26 111189 unique_id port 111189 remote_ip 10.8.0.18 111192 username alipour 111192 mac 111192 bytes_out 35596 111192 bytes_in 52235 111192 station_ip 83.123.12.163 111192 port 17 111192 unique_id port 111192 remote_ip 10.8.1.50 111194 username morteza 111194 mac 111194 bytes_out 0 111194 bytes_in 0 111194 station_ip 113.203.19.65 111194 port 32 111194 unique_id port 111140 unique_id port 111140 remote_ip 10.8.1.58 111142 username rasoul56 111142 mac 111142 bytes_out 0 111142 bytes_in 0 111142 station_ip 83.122.145.170 111142 port 47 111142 unique_id port 111142 remote_ip 10.8.0.174 111147 username mohammadjavad 111147 mac 111147 bytes_out 1261216 111147 bytes_in 23585866 111147 station_ip 83.122.138.81 111147 port 47 111147 unique_id port 111147 remote_ip 10.8.0.142 111153 username kamali1 111153 mac 111153 bytes_out 0 111153 bytes_in 0 111153 station_ip 5.119.59.229 111153 port 32 111153 unique_id port 111153 remote_ip 10.8.0.70 111155 username aminvpn 111155 unique_id port 111155 terminate_cause Lost-Carrier 111155 bytes_out 62441 111155 bytes_in 367010 111155 station_ip 5.120.115.141 111155 port 15729174 111155 nas_port_type Virtual 111155 remote_ip 5.5.5.1 111156 username mehdizare 111156 mac 111156 bytes_out 29201 111156 bytes_in 40667 111156 station_ip 5.119.132.42 111156 port 47 111156 unique_id port 111156 remote_ip 10.8.0.90 111158 username amir 111158 kill_reason Another user logged on this global unique id 111158 mac 111158 bytes_out 0 111158 bytes_in 0 111158 station_ip 46.225.213.183 111158 port 26 111158 unique_id port 111161 username aminvpn 111161 unique_id port 111161 terminate_cause User-Request 111161 bytes_out 0 111161 bytes_in 0 111161 station_ip 5.120.115.141 111161 port 15729176 111161 nas_port_type Virtual 111161 remote_ip 5.5.5.255 111162 username aminvpn 111162 unique_id port 111162 terminate_cause Lost-Carrier 111162 bytes_out 37160 111162 bytes_in 63319 111162 station_ip 5.120.115.141 111162 port 15729175 111162 nas_port_type Virtual 111162 remote_ip 5.5.5.9 111164 username alihosseini1 111164 mac 111164 bytes_out 0 111164 bytes_in 0 111164 station_ip 5.120.56.81 111164 port 50 111164 unique_id port 111164 remote_ip 10.8.0.166 111165 username naeimeh 111165 mac 111165 bytes_out 0 111165 bytes_in 0 111165 station_ip 83.123.250.244 111165 port 47 111165 unique_id port 111165 remote_ip 10.8.0.78 111168 username bcboard 111168 unique_id port 111168 terminate_cause User-Request 111168 bytes_out 38705 111168 bytes_in 131994 111168 station_ip 83.122.131.14 111168 port 15729179 111168 nas_port_type Virtual 111168 remote_ip 5.5.5.255 111173 username alihosseini1 111173 mac 111173 bytes_out 0 111173 bytes_in 0 111173 station_ip 5.120.56.81 111173 port 17 111173 unique_id port 111173 remote_ip 10.8.1.106 111176 username alihosseini1 111176 mac 111176 bytes_out 0 111176 bytes_in 0 111176 station_ip 5.120.56.81 111176 port 17 111176 unique_id port 111176 remote_ip 10.8.1.106 111178 username alihosseini1 111178 mac 111178 bytes_out 0 111178 bytes_in 0 111178 station_ip 5.120.56.81 111178 port 17 111178 unique_id port 111178 remote_ip 10.8.1.106 111182 username tahmasebi 111182 kill_reason Another user logged on this global unique id 111182 mac 111182 bytes_out 0 111182 bytes_in 0 111182 station_ip 5.120.128.4 111182 port 46 111182 unique_id port 111183 username morteza 111183 kill_reason Another user logged on this global unique id 111183 mac 111183 bytes_out 0 111183 bytes_in 0 111183 station_ip 113.203.19.65 111183 port 32 111183 unique_id port 111183 remote_ip 10.8.0.46 111184 username alihosseini1 111184 mac 111184 bytes_out 0 111184 bytes_in 0 111184 station_ip 5.120.56.81 111184 port 47 111184 unique_id port 111184 remote_ip 10.8.0.166 111187 username zare 111187 mac 111187 bytes_out 2986307 111187 bytes_in 35092816 111187 station_ip 94.183.214.14 111187 port 49 111187 unique_id port 111187 remote_ip 10.8.0.18 111175 port 46 111175 unique_id port 111177 username amir 111177 mac 111177 bytes_out 0 111177 bytes_in 0 111177 station_ip 46.225.213.183 111177 port 26 111177 unique_id port 111180 username kordestani 111180 mac 111180 bytes_out 0 111180 bytes_in 0 111180 station_ip 151.235.73.208 111180 port 47 111180 unique_id port 111180 remote_ip 10.8.0.134 111181 username alireza 111181 kill_reason Maximum check online fails reached 111181 unique_id port 111181 bytes_out 742573 111181 bytes_in 15499612 111181 station_ip 5.120.60.241 111181 port 15729181 111181 nas_port_type Virtual 111181 remote_ip 5.5.5.255 111185 username mahdiyehalizadeh 111185 mac 111185 bytes_out 263544 111185 bytes_in 3292726 111185 station_ip 83.123.158.248 111185 port 50 111185 unique_id port 111185 remote_ip 10.8.0.82 111196 username alihosseini1 111196 mac 111196 bytes_out 0 111196 bytes_in 0 111196 station_ip 5.120.56.81 111196 port 20 111196 unique_id port 111196 remote_ip 10.8.1.106 111199 username mahdiyehalizadeh 111199 mac 111199 bytes_out 345836 111199 bytes_in 5161827 111199 station_ip 83.123.191.52 111199 port 49 111199 unique_id port 111199 remote_ip 10.8.0.82 111200 username mohammadmahdi 111200 kill_reason Another user logged on this global unique id 111200 mac 111200 bytes_out 0 111200 bytes_in 0 111200 station_ip 5.120.171.107 111200 port 32 111200 unique_id port 111200 remote_ip 10.8.0.54 111206 username ahmadipour 111206 unique_id port 111206 terminate_cause Lost-Carrier 111206 bytes_out 2928491 111206 bytes_in 61043191 111206 station_ip 37.129.49.212 111206 port 15729182 111206 nas_port_type Virtual 111206 remote_ip 5.5.5.8 111208 username alihosseini1 111208 kill_reason Another user logged on this global unique id 111208 mac 111208 bytes_out 0 111208 bytes_in 0 111208 station_ip 5.120.56.81 111208 port 26 111208 unique_id port 111216 username ahmadi 111216 unique_id port 111216 terminate_cause User-Request 111216 bytes_out 31054 111216 bytes_in 256763 111216 station_ip 113.203.37.13 111216 port 15729185 111216 nas_port_type Virtual 111216 remote_ip 5.5.5.251 111219 username tahmasebi 111219 kill_reason Another user logged on this global unique id 111219 mac 111219 bytes_out 0 111219 bytes_in 0 111219 station_ip 5.120.128.4 111219 port 46 111219 unique_id port 111223 username amir 111223 mac 111223 bytes_out 0 111223 bytes_in 0 111223 station_ip 46.225.213.183 111223 port 48 111223 unique_id port 111223 remote_ip 10.8.0.50 111227 username aminvpn 111227 mac 111227 bytes_out 961988 111227 bytes_in 15697856 111227 station_ip 37.129.242.32 111227 port 48 111227 unique_id port 111227 remote_ip 10.8.0.14 111228 username aminvpn 111228 mac 111228 bytes_out 0 111228 bytes_in 0 111228 station_ip 37.129.190.140 111228 port 50 111228 unique_id port 111228 remote_ip 10.8.0.14 111234 username aminvpn 111234 mac 111234 bytes_out 0 111234 bytes_in 0 111234 station_ip 37.129.242.32 111234 port 48 111234 unique_id port 111234 remote_ip 10.8.0.14 111235 username aminvpn 111235 mac 111235 bytes_out 0 111235 bytes_in 0 111235 station_ip 37.129.190.140 111235 port 50 111235 unique_id port 111235 remote_ip 10.8.0.14 111238 username amir 111238 mac 111238 bytes_out 0 111238 bytes_in 0 111238 station_ip 46.225.213.183 111238 port 48 111238 unique_id port 111238 remote_ip 10.8.0.50 111239 username aminvpn 111239 mac 111239 bytes_out 0 111239 bytes_in 0 111239 station_ip 37.129.242.32 111239 port 51 111239 unique_id port 111239 remote_ip 10.8.0.14 111241 username aminvpn 111241 mac 111241 bytes_out 0 111190 username zare 111190 mac 111190 bytes_out 0 111190 bytes_in 0 111190 station_ip 94.183.214.14 111190 port 19 111190 unique_id port 111190 remote_ip 10.8.1.58 111191 username zare 111191 mac 111191 bytes_out 0 111191 bytes_in 0 111191 station_ip 94.183.214.14 111191 port 19 111191 unique_id port 111191 remote_ip 10.8.1.58 111193 username zare 111193 kill_reason Maximum check online fails reached 111193 mac 111193 bytes_out 0 111193 bytes_in 0 111193 station_ip 94.183.214.14 111193 port 47 111193 unique_id port 111195 username mohammadmahdi 111195 mac 111195 bytes_out 530085 111195 bytes_in 6008402 111195 station_ip 5.120.171.107 111195 port 26 111195 unique_id port 111195 remote_ip 10.8.0.54 111202 username mohammadmahdi 111202 mac 111202 bytes_out 0 111202 bytes_in 0 111202 station_ip 5.120.171.107 111202 port 32 111202 unique_id port 111203 username mehdizare 111203 mac 111203 bytes_out 0 111203 bytes_in 0 111203 station_ip 5.119.132.42 111203 port 41 111203 unique_id port 111203 remote_ip 10.8.0.90 111205 username alihosseini1 111205 kill_reason Another user logged on this global unique id 111205 mac 111205 bytes_out 0 111205 bytes_in 0 111205 station_ip 5.120.56.81 111205 port 26 111205 unique_id port 111205 remote_ip 10.8.0.166 111207 username malekpoir 111207 mac 111207 bytes_out 0 111207 bytes_in 0 111207 station_ip 5.119.228.82 111207 port 34 111207 unique_id port 111209 username amir 111209 kill_reason Another user logged on this global unique id 111209 mac 111209 bytes_out 0 111209 bytes_in 0 111209 station_ip 46.225.213.183 111209 port 49 111209 unique_id port 111209 remote_ip 10.8.0.50 111210 username kordestani 111210 mac 111210 bytes_out 0 111210 bytes_in 0 111210 station_ip 113.203.42.74 111210 port 34 111210 unique_id port 111210 remote_ip 10.8.0.134 111213 username alihosseini1 111213 mac 111213 bytes_out 0 111213 bytes_in 0 111213 station_ip 5.120.56.81 111213 port 26 111213 unique_id port 111217 username mehdizare 111217 mac 111217 bytes_out 54300 111217 bytes_in 75588 111217 station_ip 5.119.132.42 111217 port 32 111217 unique_id port 111217 remote_ip 10.8.0.90 111220 username amir 111220 mac 111220 bytes_out 41610 111220 bytes_in 245569 111220 station_ip 46.225.213.183 111220 port 50 111220 unique_id port 111220 remote_ip 10.8.0.50 111221 username aminvpn 111221 mac 111221 bytes_out 0 111221 bytes_in 0 111221 station_ip 37.129.190.140 111221 port 51 111221 unique_id port 111221 remote_ip 10.8.0.14 111224 username aminvpn 111224 mac 111224 bytes_out 0 111224 bytes_in 0 111224 station_ip 37.129.242.32 111224 port 50 111224 unique_id port 111224 remote_ip 10.8.0.14 111226 username aminvpn 111226 mac 111226 bytes_out 0 111226 bytes_in 0 111226 station_ip 37.129.190.140 111226 port 51 111226 unique_id port 111226 remote_ip 10.8.0.14 111231 username aminvpn 111231 mac 111231 bytes_out 0 111231 bytes_in 0 111231 station_ip 37.129.242.32 111231 port 48 111231 unique_id port 111231 remote_ip 10.8.0.14 111232 username aminvpn 111232 mac 111232 bytes_out 0 111232 bytes_in 0 111232 station_ip 37.129.190.140 111232 port 50 111232 unique_id port 111232 remote_ip 10.8.0.14 111240 username sedighe 111240 mac 111240 bytes_out 0 111240 bytes_in 0 111240 station_ip 37.129.89.122 111240 port 41 111240 unique_id port 111240 remote_ip 10.8.0.146 111243 username aminvpn 111243 mac 111243 bytes_out 0 111243 bytes_in 0 111243 station_ip 37.129.190.140 111197 username amir 111197 mac 111197 bytes_out 71827 111197 bytes_in 440787 111197 station_ip 46.225.213.183 111197 port 26 111197 unique_id port 111197 remote_ip 10.8.0.50 111198 username alihosseini1 111198 mac 111198 bytes_out 1331769 111198 bytes_in 25316160 111198 station_ip 5.120.56.81 111198 port 26 111198 unique_id port 111198 remote_ip 10.8.0.166 111201 username alipour 111201 mac 111201 bytes_out 0 111201 bytes_in 0 111201 station_ip 83.123.12.163 111201 port 19 111201 unique_id port 111201 remote_ip 10.8.1.50 111204 username alipour 111204 mac 111204 bytes_out 0 111204 bytes_in 0 111204 station_ip 83.123.12.163 111204 port 19 111204 unique_id port 111204 remote_ip 10.8.1.50 111211 username amir 111211 mac 111211 bytes_out 0 111211 bytes_in 0 111211 station_ip 46.225.213.183 111211 port 49 111211 unique_id port 111212 username morteza 111212 kill_reason Another user logged on this global unique id 111212 mac 111212 bytes_out 0 111212 bytes_in 0 111212 station_ip 113.203.122.65 111212 port 41 111212 unique_id port 111212 remote_ip 10.8.0.46 111214 username mohammadjavad 111214 mac 111214 bytes_out 425384 111214 bytes_in 2780177 111214 station_ip 37.129.18.63 111214 port 34 111214 unique_id port 111214 remote_ip 10.8.0.142 111215 username morteza 111215 mac 111215 bytes_out 0 111215 bytes_in 0 111215 station_ip 113.203.122.65 111215 port 41 111215 unique_id port 111218 username aminvpn 111218 mac 111218 bytes_out 0 111218 bytes_in 0 111218 station_ip 37.129.190.140 111218 port 48 111218 unique_id port 111218 remote_ip 10.8.0.14 111222 username alipour 111222 mac 111222 bytes_out 0 111222 bytes_in 0 111222 station_ip 83.123.12.163 111222 port 19 111222 unique_id port 111222 remote_ip 10.8.1.50 111225 username amir 111225 mac 111225 bytes_out 0 111225 bytes_in 0 111225 station_ip 46.225.213.183 111225 port 48 111225 unique_id port 111225 remote_ip 10.8.0.50 111229 username aminvpn 111229 mac 111229 bytes_out 0 111229 bytes_in 0 111229 station_ip 37.129.242.32 111229 port 48 111229 unique_id port 111229 remote_ip 10.8.0.14 111230 username aminvpn 111230 mac 111230 bytes_out 0 111230 bytes_in 0 111230 station_ip 37.129.190.140 111230 port 50 111230 unique_id port 111230 remote_ip 10.8.0.14 111233 username alihosseini1 111233 mac 111233 bytes_out 0 111233 bytes_in 0 111233 station_ip 5.119.243.62 111233 port 26 111233 unique_id port 111233 remote_ip 10.8.0.166 111236 username aminvpn 111236 mac 111236 bytes_out 0 111236 bytes_in 0 111236 station_ip 37.129.242.32 111236 port 48 111236 unique_id port 111236 remote_ip 10.8.0.14 111237 username aminvpn 111237 mac 111237 bytes_out 0 111237 bytes_in 0 111237 station_ip 37.129.190.140 111237 port 50 111237 unique_id port 111237 remote_ip 10.8.0.14 111244 username aminvpn 111244 mac 111244 bytes_out 65730 111244 bytes_in 86313 111244 station_ip 37.129.242.32 111244 port 50 111244 unique_id port 111244 remote_ip 10.8.0.14 111246 username aminvpn 111246 mac 111246 bytes_out 0 111246 bytes_in 0 111246 station_ip 37.129.190.140 111246 port 48 111246 unique_id port 111246 remote_ip 10.8.0.14 111247 username sedighe 111247 mac 111247 bytes_out 10440 111247 bytes_in 23160 111247 station_ip 37.129.89.122 111247 port 41 111247 unique_id port 111247 remote_ip 10.8.0.146 111249 username aminvpn 111249 mac 111249 bytes_out 191603 111249 bytes_in 965428 111249 station_ip 37.129.242.32 111241 bytes_in 0 111241 station_ip 37.129.190.140 111241 port 48 111241 unique_id port 111241 remote_ip 10.8.0.14 111242 username aminvpn 111242 mac 111242 bytes_out 0 111242 bytes_in 0 111242 station_ip 37.129.242.32 111242 port 41 111242 unique_id port 111242 remote_ip 10.8.0.14 111245 username mohammadjavad 111245 mac 111245 bytes_out 502890 111245 bytes_in 6269906 111245 station_ip 83.122.252.39 111245 port 26 111245 unique_id port 111245 remote_ip 10.8.0.142 111248 username hamid.e 111248 unique_id port 111248 terminate_cause User-Request 111248 bytes_out 863223 111248 bytes_in 11135866 111248 station_ip 37.27.2.189 111248 port 15729184 111248 nas_port_type Virtual 111248 remote_ip 5.5.5.253 111251 username mehdizare 111251 mac 111251 bytes_out 0 111251 bytes_in 0 111251 station_ip 5.119.132.42 111251 port 32 111251 unique_id port 111251 remote_ip 10.8.0.90 111254 username aminvpn 111254 mac 111254 bytes_out 0 111254 bytes_in 0 111254 station_ip 37.129.242.32 111254 port 26 111254 unique_id port 111254 remote_ip 10.8.0.14 111257 username aminvpn 111257 mac 111257 bytes_out 229481 111257 bytes_in 346666 111257 station_ip 37.129.242.32 111257 port 26 111257 unique_id port 111257 remote_ip 10.8.0.14 111258 username aminvpn 111258 mac 111258 bytes_out 0 111258 bytes_in 0 111258 station_ip 37.129.190.140 111258 port 34 111258 unique_id port 111258 remote_ip 10.8.0.14 111263 username aminvpn 111263 mac 111263 bytes_out 0 111263 bytes_in 0 111263 station_ip 37.129.242.32 111263 port 26 111263 unique_id port 111263 remote_ip 10.8.0.14 111267 username zare 111267 kill_reason Maximum check online fails reached 111267 mac 111267 bytes_out 0 111267 bytes_in 0 111267 station_ip 94.183.214.14 111267 port 17 111267 unique_id port 111268 username aminvpn 111268 mac 111268 bytes_out 0 111268 bytes_in 0 111268 station_ip 37.129.242.32 111268 port 26 111268 unique_id port 111268 remote_ip 10.8.0.14 111270 username aminvpn 111270 mac 111270 bytes_out 0 111270 bytes_in 0 111270 station_ip 37.129.190.140 111270 port 50 111270 unique_id port 111270 remote_ip 10.8.0.14 111271 username aminvpn 111271 mac 111271 bytes_out 0 111271 bytes_in 0 111271 station_ip 37.129.242.32 111271 port 26 111271 unique_id port 111271 remote_ip 10.8.0.14 111273 username mohammadmahdi 111273 kill_reason Another user logged on this global unique id 111273 mac 111273 bytes_out 0 111273 bytes_in 0 111273 station_ip 5.120.171.107 111273 port 48 111273 unique_id port 111273 remote_ip 10.8.0.54 111274 username aminvpn 111274 mac 111274 bytes_out 0 111274 bytes_in 0 111274 station_ip 37.129.242.32 111274 port 50 111274 unique_id port 111274 remote_ip 10.8.0.14 111276 username zare 111276 mac 111276 bytes_out 0 111276 bytes_in 0 111276 station_ip 94.183.214.14 111276 port 20 111276 unique_id port 111276 remote_ip 10.8.1.58 111281 username aminvpn 111281 unique_id port 111281 terminate_cause User-Request 111281 bytes_out 4022512 111281 bytes_in 95310045 111281 station_ip 5.120.65.69 111281 port 15729183 111281 nas_port_type Virtual 111281 remote_ip 5.5.5.255 111283 username asma2026 111283 mac 111283 bytes_out 0 111283 bytes_in 0 111283 station_ip 83.122.142.155 111283 port 26 111283 unique_id port 111283 remote_ip 10.8.0.170 111284 username aminvpn 111284 mac 111284 bytes_out 0 111284 bytes_in 0 111284 station_ip 37.129.242.32 111284 port 48 111284 unique_id port 111284 remote_ip 10.8.0.14 111286 username aminvpn 111286 mac 111243 port 48 111243 unique_id port 111243 remote_ip 10.8.0.14 111252 username zare 111252 mac 111252 bytes_out 0 111252 bytes_in 0 111252 station_ip 94.183.214.14 111252 port 17 111252 unique_id port 111252 remote_ip 10.8.1.58 111253 username alihosseini1 111253 mac 111253 bytes_out 0 111253 bytes_in 0 111253 station_ip 5.119.39.131 111253 port 21 111253 unique_id port 111253 remote_ip 10.8.1.106 111255 username asma2026 111255 mac 111255 bytes_out 1806280 111255 bytes_in 20729371 111255 station_ip 83.122.142.155 111255 port 34 111255 unique_id port 111255 remote_ip 10.8.0.170 111260 username aminvpn 111260 mac 111260 bytes_out 0 111260 bytes_in 0 111260 station_ip 37.129.242.32 111260 port 26 111260 unique_id port 111260 remote_ip 10.8.0.14 111262 username aminvpn 111262 mac 111262 bytes_out 0 111262 bytes_in 0 111262 station_ip 37.129.190.140 111262 port 34 111262 unique_id port 111262 remote_ip 10.8.0.14 111264 username asma2026 111264 mac 111264 bytes_out 0 111264 bytes_in 0 111264 station_ip 83.122.142.155 111264 port 34 111264 unique_id port 111264 remote_ip 10.8.0.170 111269 username zare 111269 mac 111269 bytes_out 0 111269 bytes_in 0 111269 station_ip 94.183.214.14 111269 port 20 111269 unique_id port 111269 remote_ip 10.8.1.58 111272 username zare 111272 mac 111272 bytes_out 0 111272 bytes_in 0 111272 station_ip 94.183.214.14 111272 port 20 111272 unique_id port 111272 remote_ip 10.8.1.58 111275 username arman1 111275 kill_reason Another user logged on this global unique id 111275 mac 111275 bytes_out 0 111275 bytes_in 0 111275 station_ip 5.119.113.52 111275 port 41 111275 unique_id port 111275 remote_ip 10.8.0.110 111278 username asma2026 111278 mac 111278 bytes_out 0 111278 bytes_in 0 111278 station_ip 83.122.142.155 111278 port 50 111278 unique_id port 111278 remote_ip 10.8.0.170 111279 username mohammadmahdi 111279 mac 111279 bytes_out 0 111279 bytes_in 0 111279 station_ip 5.120.171.107 111279 port 48 111279 unique_id port 111282 username aminvpn 111282 mac 111282 bytes_out 0 111282 bytes_in 0 111282 station_ip 37.129.190.140 111282 port 26 111282 unique_id port 111282 remote_ip 10.8.0.14 111285 username aminvpn 111285 mac 111285 bytes_out 0 111285 bytes_in 0 111285 station_ip 37.129.190.140 111285 port 26 111285 unique_id port 111285 remote_ip 10.8.0.14 111293 username zare 111293 mac 111293 bytes_out 0 111293 bytes_in 0 111293 station_ip 94.183.214.14 111293 port 20 111293 unique_id port 111293 remote_ip 10.8.1.58 111294 username arman1 111294 mac 111294 bytes_out 0 111294 bytes_in 0 111294 station_ip 5.119.113.52 111294 port 41 111294 unique_id port 111295 username zare 111295 mac 111295 bytes_out 0 111295 bytes_in 0 111295 station_ip 94.183.214.14 111295 port 20 111295 unique_id port 111295 remote_ip 10.8.1.58 111298 username zare 111298 mac 111298 bytes_out 0 111298 bytes_in 0 111298 station_ip 94.183.214.14 111298 port 26 111298 unique_id port 111298 remote_ip 10.8.0.18 111300 username asma2026 111300 mac 111300 bytes_out 0 111300 bytes_in 0 111300 station_ip 83.122.142.155 111300 port 41 111300 unique_id port 111300 remote_ip 10.8.0.170 111301 username tahmasebi 111301 kill_reason Another user logged on this global unique id 111301 mac 111301 bytes_out 0 111301 bytes_in 0 111301 station_ip 5.120.128.4 111301 port 46 111301 unique_id port 111304 username hashtadani3 111304 mac 111304 bytes_out 145336 111249 port 26 111249 unique_id port 111249 remote_ip 10.8.0.14 111250 username aminvpn 111250 mac 111250 bytes_out 0 111250 bytes_in 0 111250 station_ip 37.129.190.140 111250 port 51 111250 unique_id port 111250 remote_ip 10.8.0.14 111256 username aminvpn 111256 mac 111256 bytes_out 0 111256 bytes_in 0 111256 station_ip 37.129.190.140 111256 port 32 111256 unique_id port 111256 remote_ip 10.8.0.14 111259 username malekpoir 111259 mac 111259 bytes_out 2645552 111259 bytes_in 27319120 111259 station_ip 5.119.201.117 111259 port 20 111259 unique_id port 111259 remote_ip 10.8.1.54 111261 username zare 111261 mac 111261 bytes_out 0 111261 bytes_in 0 111261 station_ip 94.183.214.14 111261 port 17 111261 unique_id port 111261 remote_ip 10.8.1.58 111265 username sedighe 111265 mac 111265 bytes_out 7359 111265 bytes_in 10427 111265 station_ip 37.129.89.122 111265 port 50 111265 unique_id port 111265 remote_ip 10.8.0.146 111266 username aminvpn 111266 mac 111266 bytes_out 0 111266 bytes_in 0 111266 station_ip 37.129.190.140 111266 port 51 111266 unique_id port 111266 remote_ip 10.8.0.14 111277 username asma2026 111277 mac 111277 bytes_out 0 111277 bytes_in 0 111277 station_ip 83.122.142.155 111277 port 50 111277 unique_id port 111277 remote_ip 10.8.0.170 111280 username alihosseini1 111280 mac 111280 bytes_out 0 111280 bytes_in 0 111280 station_ip 5.119.41.188 111280 port 21 111280 unique_id port 111280 remote_ip 10.8.1.106 111289 username aminvpn 111289 mac 111289 bytes_out 0 111289 bytes_in 0 111289 station_ip 37.129.190.140 111289 port 26 111289 unique_id port 111289 remote_ip 10.8.0.14 111292 username asma2026 111292 mac 111292 bytes_out 0 111292 bytes_in 0 111292 station_ip 83.122.142.155 111292 port 26 111292 unique_id port 111292 remote_ip 10.8.0.170 111296 username zare 111296 mac 111296 bytes_out 0 111296 bytes_in 0 111296 station_ip 94.183.214.14 111296 port 20 111296 unique_id port 111296 remote_ip 10.8.1.58 111297 username asma2026 111297 mac 111297 bytes_out 0 111297 bytes_in 0 111297 station_ip 83.122.142.155 111297 port 26 111297 unique_id port 111297 remote_ip 10.8.0.170 111305 username hashtadani3 111305 mac 111305 bytes_out 0 111305 bytes_in 0 111305 station_ip 83.123.209.79 111305 port 41 111305 unique_id port 111305 remote_ip 10.8.0.154 111307 username zare 111307 mac 111307 bytes_out 0 111307 bytes_in 0 111307 station_ip 94.183.214.14 111307 port 20 111307 unique_id port 111307 remote_ip 10.8.1.58 111308 username zare 111308 kill_reason Maximum check online fails reached 111308 mac 111308 bytes_out 0 111308 bytes_in 0 111308 station_ip 94.183.214.14 111308 port 20 111308 unique_id port 111311 username asma2026 111311 mac 111311 bytes_out 0 111311 bytes_in 0 111311 station_ip 83.122.142.155 111311 port 26 111311 unique_id port 111311 remote_ip 10.8.0.170 111316 username zare 111316 mac 111316 bytes_out 0 111316 bytes_in 0 111316 station_ip 94.183.214.14 111316 port 48 111316 unique_id port 111316 remote_ip 10.8.0.18 111318 username zare 111318 mac 111318 bytes_out 0 111318 bytes_in 0 111318 station_ip 94.183.214.14 111318 port 26 111318 unique_id port 111318 remote_ip 10.8.0.18 111321 username alipour 111321 mac 111321 bytes_out 0 111321 bytes_in 0 111321 station_ip 83.123.12.163 111321 port 19 111321 unique_id port 111321 remote_ip 10.8.1.50 111327 username asma2026 111327 mac 111286 bytes_out 0 111286 bytes_in 0 111286 station_ip 37.129.242.32 111286 port 48 111286 unique_id port 111286 remote_ip 10.8.0.14 111287 username aminvpn 111287 mac 111287 bytes_out 0 111287 bytes_in 0 111287 station_ip 37.129.190.140 111287 port 26 111287 unique_id port 111287 remote_ip 10.8.0.14 111288 username aminvpn 111288 mac 111288 bytes_out 0 111288 bytes_in 0 111288 station_ip 37.129.242.32 111288 port 48 111288 unique_id port 111288 remote_ip 10.8.0.14 111290 username aminvpn 111290 mac 111290 bytes_out 0 111290 bytes_in 0 111290 station_ip 37.129.242.32 111290 port 48 111290 unique_id port 111290 remote_ip 10.8.0.14 111291 username aminvpn 111291 mac 111291 bytes_out 0 111291 bytes_in 0 111291 station_ip 37.129.190.140 111291 port 26 111291 unique_id port 111291 remote_ip 10.8.0.14 111299 username zare 111299 mac 111299 bytes_out 0 111299 bytes_in 0 111299 station_ip 94.183.214.14 111299 port 41 111299 unique_id port 111299 remote_ip 10.8.0.18 111302 username asma2026 111302 mac 111302 bytes_out 0 111302 bytes_in 0 111302 station_ip 83.122.142.155 111302 port 48 111302 unique_id port 111302 remote_ip 10.8.0.170 111303 username zare 111303 mac 111303 bytes_out 0 111303 bytes_in 0 111303 station_ip 94.183.214.14 111303 port 20 111303 unique_id port 111303 remote_ip 10.8.1.58 111310 username asma2026 111310 mac 111310 bytes_out 0 111310 bytes_in 0 111310 station_ip 83.122.142.155 111310 port 26 111310 unique_id port 111310 remote_ip 10.8.0.170 111314 username rasoul56 111314 kill_reason Another user logged on this global unique id 111314 mac 111314 bytes_out 0 111314 bytes_in 0 111314 station_ip 83.122.173.170 111314 port 49 111314 unique_id port 111314 remote_ip 10.8.0.174 111317 username mohammadjavad 111317 mac 111317 bytes_out 0 111317 bytes_in 0 111317 station_ip 113.203.116.27 111317 port 41 111317 unique_id port 111317 remote_ip 10.8.0.142 111322 username asma2026 111322 mac 111322 bytes_out 0 111322 bytes_in 0 111322 station_ip 83.122.142.155 111322 port 41 111322 unique_id port 111322 remote_ip 10.8.0.170 111323 username asma2026 111323 mac 111323 bytes_out 0 111323 bytes_in 0 111323 station_ip 83.122.142.155 111323 port 41 111323 unique_id port 111323 remote_ip 10.8.0.170 111326 username sedighe 111326 mac 111326 bytes_out 425129 111326 bytes_in 8018774 111326 station_ip 37.129.89.122 111326 port 34 111326 unique_id port 111326 remote_ip 10.8.0.146 111329 username rasoul56 111329 kill_reason Another user logged on this global unique id 111329 mac 111329 bytes_out 0 111329 bytes_in 0 111329 station_ip 83.122.173.170 111329 port 49 111329 unique_id port 111330 username aminvpn 111330 unique_id port 111330 terminate_cause User-Request 111330 bytes_out 1380950 111330 bytes_in 27016764 111330 station_ip 5.160.113.205 111330 port 15729186 111330 nas_port_type Virtual 111330 remote_ip 5.5.5.246 111332 username arman1 111332 mac 111332 bytes_out 0 111332 bytes_in 0 111332 station_ip 5.120.82.115 111332 port 21 111332 unique_id port 111332 remote_ip 10.8.1.118 111338 username rasoul56 111338 kill_reason Another user logged on this global unique id 111338 mac 111338 bytes_out 0 111338 bytes_in 0 111338 station_ip 83.122.173.170 111338 port 49 111338 unique_id port 111339 username asma2026 111339 mac 111339 bytes_out 0 111339 bytes_in 0 111339 station_ip 83.122.142.155 111339 port 51 111339 unique_id port 111339 remote_ip 10.8.0.170 111340 username asma2026 111340 mac 111304 bytes_in 1618199 111304 station_ip 83.123.209.79 111304 port 41 111304 unique_id port 111304 remote_ip 10.8.0.154 111306 username hashtadani3 111306 mac 111306 bytes_out 0 111306 bytes_in 0 111306 station_ip 83.123.209.79 111306 port 41 111306 unique_id port 111306 remote_ip 10.8.0.154 111309 username mahdiyehalizadeh 111309 mac 111309 bytes_out 2267510 111309 bytes_in 14741634 111309 station_ip 83.123.140.183 111309 port 26 111309 unique_id port 111309 remote_ip 10.8.0.82 111312 username zare 111312 mac 111312 bytes_out 0 111312 bytes_in 0 111312 station_ip 94.183.214.14 111312 port 22 111312 unique_id port 111312 remote_ip 10.8.1.58 111313 username asma2026 111313 mac 111313 bytes_out 0 111313 bytes_in 0 111313 station_ip 83.122.142.155 111313 port 48 111313 unique_id port 111313 remote_ip 10.8.0.170 111315 username hashtadani3 111315 mac 111315 bytes_out 611031 111315 bytes_in 4711096 111315 station_ip 83.123.209.79 111315 port 26 111315 unique_id port 111315 remote_ip 10.8.0.154 111319 username hashtadani3 111319 mac 111319 bytes_out 0 111319 bytes_in 0 111319 station_ip 83.123.209.79 111319 port 22 111319 unique_id port 111319 remote_ip 10.8.1.94 111320 username zare 111320 mac 111320 bytes_out 0 111320 bytes_in 0 111320 station_ip 94.183.214.14 111320 port 26 111320 unique_id port 111320 remote_ip 10.8.0.18 111324 username zare 111324 mac 111324 bytes_out 0 111324 bytes_in 0 111324 station_ip 94.183.214.14 111324 port 48 111324 unique_id port 111324 remote_ip 10.8.0.18 111325 username zare 111325 kill_reason Maximum check online fails reached 111325 mac 111325 bytes_out 0 111325 bytes_in 0 111325 station_ip 94.183.214.14 111325 port 26 111325 unique_id port 111331 username sedighe 111331 mac 111331 bytes_out 505282 111331 bytes_in 10594132 111331 station_ip 37.129.171.224 111331 port 50 111331 unique_id port 111331 remote_ip 10.8.0.146 111333 username asma2026 111333 mac 111333 bytes_out 0 111333 bytes_in 0 111333 station_ip 83.122.142.155 111333 port 19 111333 unique_id port 111333 remote_ip 10.8.1.122 111334 username asma2026 111334 mac 111334 bytes_out 0 111334 bytes_in 0 111334 station_ip 83.122.142.155 111334 port 19 111334 unique_id port 111334 remote_ip 10.8.1.122 111335 username asma2026 111335 kill_reason Maximum check online fails reached 111335 mac 111335 bytes_out 0 111335 bytes_in 0 111335 station_ip 83.122.142.155 111335 port 50 111335 unique_id port 111337 username amir 111337 mac 111337 bytes_out 46404 111337 bytes_in 169260 111337 station_ip 46.225.213.183 111337 port 52 111337 unique_id port 111337 remote_ip 10.8.0.50 111346 username rasoul56 111346 mac 111346 bytes_out 10464 111346 bytes_in 15501 111346 station_ip 83.123.119.85 111346 port 41 111346 unique_id port 111346 remote_ip 10.8.0.174 111352 username hashtadani3 111352 kill_reason Another user logged on this global unique id 111352 mac 111352 bytes_out 0 111352 bytes_in 0 111352 station_ip 83.123.209.79 111352 port 22 111352 unique_id port 111352 remote_ip 10.8.1.94 111353 username rasoul56 111353 mac 111353 bytes_out 91968 111353 bytes_in 164321 111353 station_ip 83.123.119.85 111353 port 32 111353 unique_id port 111353 remote_ip 10.8.0.174 111354 username amir 111354 mac 111354 bytes_out 509840 111354 bytes_in 5905275 111354 station_ip 46.225.213.183 111354 port 51 111354 unique_id port 111354 remote_ip 10.8.0.50 111356 username asma2026 111356 mac 111356 bytes_out 0 111356 bytes_in 0 111327 bytes_out 0 111327 bytes_in 0 111327 station_ip 83.122.142.155 111327 port 34 111327 unique_id port 111327 remote_ip 10.8.0.170 111328 username asma2026 111328 mac 111328 bytes_out 0 111328 bytes_in 0 111328 station_ip 83.122.142.155 111328 port 34 111328 unique_id port 111328 remote_ip 10.8.0.170 111336 username asma2026 111336 mac 111336 bytes_out 0 111336 bytes_in 0 111336 station_ip 83.122.142.155 111336 port 51 111336 unique_id port 111336 remote_ip 10.8.0.170 111343 username rasoul56 111343 mac 111343 bytes_out 0 111343 bytes_in 0 111343 station_ip 83.122.173.170 111343 port 49 111343 unique_id port 111347 username mehdizare 111347 mac 111347 bytes_out 100914 111347 bytes_in 186969 111347 station_ip 5.119.132.42 111347 port 32 111347 unique_id port 111347 remote_ip 10.8.0.90 111349 username asma2026 111349 mac 111349 bytes_out 0 111349 bytes_in 0 111349 station_ip 83.122.142.155 111349 port 49 111349 unique_id port 111349 remote_ip 10.8.0.170 111355 username houshang 111355 mac 111355 bytes_out 538660 111355 bytes_in 7165788 111355 station_ip 5.119.54.14 111355 port 32 111355 unique_id port 111355 remote_ip 10.8.0.22 111360 username ahmadi 111360 unique_id port 111360 terminate_cause User-Request 111360 bytes_out 32344 111360 bytes_in 390952 111360 station_ip 37.129.83.0 111360 port 15729187 111360 nas_port_type Virtual 111360 remote_ip 5.5.5.255 111365 username zare 111365 mac 111365 bytes_out 0 111365 bytes_in 0 111365 station_ip 94.183.214.14 111365 port 19 111365 unique_id port 111365 remote_ip 10.8.1.58 111369 username zare 111369 mac 111369 bytes_out 0 111369 bytes_in 0 111369 station_ip 94.183.214.14 111369 port 19 111369 unique_id port 111369 remote_ip 10.8.1.58 111372 username asma2026 111372 mac 111372 bytes_out 0 111372 bytes_in 0 111372 station_ip 83.122.142.155 111372 port 48 111372 unique_id port 111372 remote_ip 10.8.0.170 111373 username mehdizare 111373 mac 111373 bytes_out 13118 111373 bytes_in 14809 111373 station_ip 5.119.132.42 111373 port 52 111373 unique_id port 111373 remote_ip 10.8.0.90 111375 username arman1 111375 mac 111375 bytes_out 0 111375 bytes_in 0 111375 station_ip 5.119.108.73 111375 port 19 111375 unique_id port 111375 remote_ip 10.8.1.118 111382 username amir 111382 mac 111382 bytes_out 0 111382 bytes_in 0 111382 station_ip 46.225.213.183 111382 port 34 111382 unique_id port 111382 remote_ip 10.8.0.50 111386 username rasoul56 111386 kill_reason Another user logged on this global unique id 111386 mac 111386 bytes_out 0 111386 bytes_in 0 111386 station_ip 83.123.119.85 111386 port 51 111386 unique_id port 111386 remote_ip 10.8.0.174 111388 username arman1 111388 mac 111388 bytes_out 1811160 111388 bytes_in 9358821 111388 station_ip 5.119.108.73 111388 port 41 111388 unique_id port 111388 remote_ip 10.8.0.110 111389 username mehdizare 111389 mac 111389 bytes_out 261722 111389 bytes_in 189719 111389 station_ip 5.119.132.42 111389 port 48 111389 unique_id port 111389 remote_ip 10.8.0.90 111391 username amir 111391 mac 111391 bytes_out 0 111391 bytes_in 0 111391 station_ip 46.225.213.183 111391 port 48 111391 unique_id port 111391 remote_ip 10.8.0.50 111395 username asma2026 111395 mac 111395 bytes_out 0 111395 bytes_in 0 111395 station_ip 83.122.142.155 111395 port 34 111395 unique_id port 111395 remote_ip 10.8.0.170 111396 username zare 111396 mac 111396 bytes_out 0 111396 bytes_in 0 111396 station_ip 37.27.48.235 111340 bytes_out 0 111340 bytes_in 0 111340 station_ip 83.122.142.155 111340 port 51 111340 unique_id port 111340 remote_ip 10.8.0.170 111341 username zare 111341 mac 111341 bytes_out 250065 111341 bytes_in 991793 111341 station_ip 94.183.214.14 111341 port 41 111341 unique_id port 111341 remote_ip 10.8.0.18 111342 username zare 111342 mac 111342 bytes_out 0 111342 bytes_in 0 111342 station_ip 94.183.214.14 111342 port 41 111342 unique_id port 111342 remote_ip 10.8.0.18 111344 username mahdiyehalizadeh 111344 mac 111344 bytes_out 0 111344 bytes_in 0 111344 station_ip 83.123.140.183 111344 port 48 111344 unique_id port 111344 remote_ip 10.8.0.82 111345 username zare 111345 mac 111345 bytes_out 0 111345 bytes_in 0 111345 station_ip 94.183.214.14 111345 port 48 111345 unique_id port 111345 remote_ip 10.8.0.18 111348 username asma2026 111348 mac 111348 bytes_out 0 111348 bytes_in 0 111348 station_ip 83.122.142.155 111348 port 49 111348 unique_id port 111348 remote_ip 10.8.0.170 111350 username zare 111350 mac 111350 bytes_out 0 111350 bytes_in 0 111350 station_ip 94.183.214.14 111350 port 41 111350 unique_id port 111350 remote_ip 10.8.0.18 111351 username zare 111351 mac 111351 bytes_out 1636 111351 bytes_in 5036 111351 station_ip 94.183.214.14 111351 port 41 111351 unique_id port 111351 remote_ip 10.8.0.18 111357 username mirzaei 111357 kill_reason Another user logged on this global unique id 111357 mac 111357 bytes_out 0 111357 bytes_in 0 111357 station_ip 5.120.191.187 111357 port 18 111357 unique_id port 111357 remote_ip 10.8.1.30 111359 username amir 111359 mac 111359 bytes_out 51741 111359 bytes_in 818812 111359 station_ip 46.225.213.183 111359 port 32 111359 unique_id port 111359 remote_ip 10.8.0.50 111361 username asma2026 111361 mac 111361 bytes_out 0 111361 bytes_in 0 111361 station_ip 83.122.142.155 111361 port 32 111361 unique_id port 111361 remote_ip 10.8.0.170 111362 username amir 111362 mac 111362 bytes_out 0 111362 bytes_in 0 111362 station_ip 46.225.213.183 111362 port 41 111362 unique_id port 111362 remote_ip 10.8.0.50 111368 username zare 111368 mac 111368 bytes_out 0 111368 bytes_in 0 111368 station_ip 94.183.214.14 111368 port 19 111368 unique_id port 111368 remote_ip 10.8.1.58 111370 username kordestani 111370 mac 111370 bytes_out 2408691 111370 bytes_in 34030742 111370 station_ip 151.235.101.232 111370 port 49 111370 unique_id port 111370 remote_ip 10.8.0.134 111376 username asma2026 111376 mac 111376 bytes_out 0 111376 bytes_in 0 111376 station_ip 83.122.142.155 111376 port 53 111376 unique_id port 111376 remote_ip 10.8.0.170 111379 username houshang 111379 mac 111379 bytes_out 38751 111379 bytes_in 103282 111379 station_ip 5.119.54.14 111379 port 49 111379 unique_id port 111379 remote_ip 10.8.0.22 111381 username alipour 111381 mac 111381 bytes_out 5050545 111381 bytes_in 43645961 111381 station_ip 83.122.230.63 111381 port 34 111381 unique_id port 111381 remote_ip 10.8.0.102 111383 username kordestani 111383 mac 111383 bytes_out 0 111383 bytes_in 0 111383 station_ip 151.235.101.232 111383 port 21 111383 unique_id port 111383 remote_ip 10.8.1.98 111387 username sedighe 111387 mac 111387 bytes_out 101927 111387 bytes_in 219777 111387 station_ip 37.129.171.224 111387 port 53 111387 unique_id port 111387 remote_ip 10.8.0.146 111390 username houshang 111390 mac 111390 bytes_out 4762808 111390 bytes_in 22499314 111356 station_ip 83.122.142.155 111356 port 32 111356 unique_id port 111356 remote_ip 10.8.0.170 111358 username rasoul56 111358 mac 111358 bytes_out 113528 111358 bytes_in 689389 111358 station_ip 83.123.119.85 111358 port 41 111358 unique_id port 111358 remote_ip 10.8.0.174 111363 username zare 111363 mac 111363 bytes_out 52805 111363 bytes_in 132147 111363 station_ip 94.183.214.14 111363 port 19 111363 unique_id port 111363 remote_ip 10.8.1.58 111364 username mehdizare 111364 mac 111364 bytes_out 47560 111364 bytes_in 66326 111364 station_ip 5.119.132.42 111364 port 48 111364 unique_id port 111364 remote_ip 10.8.0.90 111366 username zare 111366 mac 111366 bytes_out 0 111366 bytes_in 0 111366 station_ip 94.183.214.14 111366 port 19 111366 unique_id port 111366 remote_ip 10.8.1.58 111367 username asma2026 111367 mac 111367 bytes_out 0 111367 bytes_in 0 111367 station_ip 83.122.142.155 111367 port 48 111367 unique_id port 111367 remote_ip 10.8.0.170 111371 username hashtadani3 111371 kill_reason Another user logged on this global unique id 111371 mac 111371 bytes_out 0 111371 bytes_in 0 111371 station_ip 83.123.209.79 111371 port 22 111371 unique_id port 111374 username houshang 111374 mac 111374 bytes_out 2696375 111374 bytes_in 38362020 111374 station_ip 5.119.54.14 111374 port 41 111374 unique_id port 111374 remote_ip 10.8.0.22 111377 username amir 111377 mac 111377 bytes_out 651162 111377 bytes_in 13554706 111377 station_ip 46.225.213.183 111377 port 49 111377 unique_id port 111377 remote_ip 10.8.0.50 111378 username houshang 111378 mac 111378 bytes_out 831735 111378 bytes_in 10701887 111378 station_ip 5.119.54.14 111378 port 52 111378 unique_id port 111378 remote_ip 10.8.0.22 111380 username asma2026 111380 mac 111380 bytes_out 0 111380 bytes_in 0 111380 station_ip 83.122.142.155 111380 port 49 111380 unique_id port 111380 remote_ip 10.8.0.170 111384 username asma2026 111384 mac 111384 bytes_out 28131 111384 bytes_in 86497 111384 station_ip 83.122.142.155 111384 port 34 111384 unique_id port 111384 remote_ip 10.8.0.170 111385 username ahmadipour 111385 unique_id port 111385 terminate_cause Lost-Carrier 111385 bytes_out 295109 111385 bytes_in 5581329 111385 station_ip 37.129.6.244 111385 port 15729188 111385 nas_port_type Virtual 111385 remote_ip 5.5.5.254 111399 username zare 111399 mac 111399 bytes_out 6579 111399 bytes_in 9397 111399 station_ip 37.27.48.235 111399 port 48 111399 unique_id port 111399 remote_ip 10.8.0.18 111403 username hashtadani3 111403 mac 111403 bytes_out 0 111403 bytes_in 0 111403 station_ip 83.123.209.79 111403 port 48 111403 unique_id port 111403 remote_ip 10.8.0.154 111409 username asma2026 111409 mac 111409 bytes_out 0 111409 bytes_in 0 111409 station_ip 83.122.142.155 111409 port 21 111409 unique_id port 111409 remote_ip 10.8.1.122 111421 username asma2026 111421 mac 111421 bytes_out 0 111421 bytes_in 0 111421 station_ip 83.122.142.155 111421 port 21 111421 unique_id port 111421 remote_ip 10.8.1.122 111424 username asma2026 111424 mac 111424 bytes_out 0 111424 bytes_in 0 111424 station_ip 83.122.142.155 111424 port 54 111424 unique_id port 111424 remote_ip 10.8.0.170 111430 username asma2026 111430 kill_reason Maximum check online fails reached 111430 mac 111430 bytes_out 0 111430 bytes_in 0 111430 station_ip 83.122.142.155 111430 port 21 111430 unique_id port 111433 username amir 111433 mac 111433 bytes_out 0 111433 bytes_in 0 111433 station_ip 46.225.213.183 111390 station_ip 5.119.54.14 111390 port 52 111390 unique_id port 111390 remote_ip 10.8.0.22 111392 username asma2026 111392 mac 111392 bytes_out 84891 111392 bytes_in 614444 111392 station_ip 83.122.142.155 111392 port 34 111392 unique_id port 111392 remote_ip 10.8.0.170 111393 username hashtadani3 111393 kill_reason Another user logged on this global unique id 111393 mac 111393 bytes_out 0 111393 bytes_in 0 111393 station_ip 83.123.209.79 111393 port 22 111393 unique_id port 111394 username asma2026 111394 mac 111394 bytes_out 4001 111394 bytes_in 12194 111394 station_ip 83.122.142.155 111394 port 34 111394 unique_id port 111394 remote_ip 10.8.0.170 111400 username hashtadani3 111400 mac 111400 bytes_out 0 111400 bytes_in 0 111400 station_ip 83.123.209.79 111400 port 22 111400 unique_id port 111405 username kordestani 111405 mac 111405 bytes_out 378647 111405 bytes_in 5354330 111405 station_ip 151.235.101.232 111405 port 54 111405 unique_id port 111405 remote_ip 10.8.0.134 111408 username asma2026 111408 mac 111408 bytes_out 0 111408 bytes_in 0 111408 station_ip 83.122.142.155 111408 port 34 111408 unique_id port 111408 remote_ip 10.8.0.170 111412 username asma2026 111412 kill_reason Maximum check online fails reached 111412 mac 111412 bytes_out 0 111412 bytes_in 0 111412 station_ip 83.122.142.155 111412 port 48 111412 unique_id port 111413 username asma2026 111413 mac 111413 bytes_out 0 111413 bytes_in 0 111413 station_ip 83.122.142.155 111413 port 21 111413 unique_id port 111413 remote_ip 10.8.1.122 111418 username asma2026 111418 mac 111418 bytes_out 0 111418 bytes_in 0 111418 station_ip 83.122.142.155 111418 port 34 111418 unique_id port 111418 remote_ip 10.8.0.170 111419 username amir 111419 mac 111419 bytes_out 48617 111419 bytes_in 432167 111419 station_ip 46.225.213.183 111419 port 54 111419 unique_id port 111419 remote_ip 10.8.0.50 111427 username hashtadani3 111427 mac 111427 bytes_out 279461 111427 bytes_in 1342635 111427 station_ip 5.202.58.39 111427 port 34 111427 unique_id port 111427 remote_ip 10.8.0.154 111428 username hashtadani3 111428 mac 111428 bytes_out 0 111428 bytes_in 0 111428 station_ip 5.202.58.39 111428 port 34 111428 unique_id port 111428 remote_ip 10.8.0.154 111432 username mohammadjavad 111432 mac 111432 bytes_out 1723867 111432 bytes_in 15325204 111432 station_ip 83.122.205.197 111432 port 32 111432 unique_id port 111432 remote_ip 10.8.0.142 111435 username hashtadani3 111435 mac 111435 bytes_out 0 111435 bytes_in 0 111435 station_ip 5.202.58.39 111435 port 23 111435 unique_id port 111435 remote_ip 10.8.1.94 111436 username hashtadani3 111436 mac 111436 bytes_out 0 111436 bytes_in 0 111436 station_ip 5.202.58.39 111436 port 32 111436 unique_id port 111436 remote_ip 10.8.0.154 111437 username hashtadani3 111437 mac 111437 bytes_out 0 111437 bytes_in 0 111437 station_ip 5.202.58.39 111437 port 32 111437 unique_id port 111437 remote_ip 10.8.0.154 111442 username hashtadani3 111442 mac 111442 bytes_out 0 111442 bytes_in 0 111442 station_ip 5.202.58.39 111442 port 32 111442 unique_id port 111442 remote_ip 10.8.0.154 111443 username avaanna 111443 mac 111443 bytes_out 0 111443 bytes_in 0 111443 station_ip 83.123.144.127 111443 port 22 111443 unique_id port 111443 remote_ip 10.8.1.46 111444 username hashtadani3 111444 mac 111444 bytes_out 0 111444 bytes_in 0 111444 station_ip 5.202.58.39 111444 port 34 111444 unique_id port 111396 port 48 111396 unique_id port 111396 remote_ip 10.8.0.18 111397 username zare 111397 mac 111397 bytes_out 0 111397 bytes_in 0 111397 station_ip 37.27.48.235 111397 port 48 111397 unique_id port 111397 remote_ip 10.8.0.18 111398 username asma2026 111398 mac 111398 bytes_out 3943 111398 bytes_in 6622 111398 station_ip 83.122.142.155 111398 port 34 111398 unique_id port 111398 remote_ip 10.8.0.170 111401 username hashtadani3 111401 mac 111401 bytes_out 0 111401 bytes_in 0 111401 station_ip 83.123.209.79 111401 port 48 111401 unique_id port 111401 remote_ip 10.8.0.154 111402 username hashtadani3 111402 mac 111402 bytes_out 0 111402 bytes_in 0 111402 station_ip 83.123.209.79 111402 port 48 111402 unique_id port 111402 remote_ip 10.8.0.154 111404 username amir 111404 mac 111404 bytes_out 52744 111404 bytes_in 353513 111404 station_ip 46.225.213.183 111404 port 52 111404 unique_id port 111404 remote_ip 10.8.0.50 111406 username asma2026 111406 mac 111406 bytes_out 0 111406 bytes_in 0 111406 station_ip 83.122.142.155 111406 port 34 111406 unique_id port 111406 remote_ip 10.8.0.170 111407 username hashtadani3 111407 mac 111407 bytes_out 3935631 111407 bytes_in 2982793 111407 station_ip 83.123.209.79 111407 port 48 111407 unique_id port 111407 remote_ip 10.8.0.154 111410 username hashtadani3 111410 mac 111410 bytes_out 0 111410 bytes_in 0 111410 station_ip 5.202.58.39 111410 port 34 111410 unique_id port 111410 remote_ip 10.8.0.154 111411 username hashtadani3 111411 mac 111411 bytes_out 0 111411 bytes_in 0 111411 station_ip 5.202.58.39 111411 port 34 111411 unique_id port 111411 remote_ip 10.8.0.154 111414 username asma2026 111414 mac 111414 bytes_out 0 111414 bytes_in 0 111414 station_ip 83.122.142.155 111414 port 21 111414 unique_id port 111414 remote_ip 10.8.1.122 111415 username asma2026 111415 mac 111415 bytes_out 0 111415 bytes_in 0 111415 station_ip 83.122.142.155 111415 port 34 111415 unique_id port 111415 remote_ip 10.8.0.170 111416 username hashtadani3 111416 mac 111416 bytes_out 0 111416 bytes_in 0 111416 station_ip 5.202.58.39 111416 port 21 111416 unique_id port 111416 remote_ip 10.8.1.94 111417 username hashtadani3 111417 mac 111417 bytes_out 0 111417 bytes_in 0 111417 station_ip 5.202.58.39 111417 port 21 111417 unique_id port 111417 remote_ip 10.8.1.94 111420 username tahmasebi 111420 kill_reason Another user logged on this global unique id 111420 mac 111420 bytes_out 0 111420 bytes_in 0 111420 station_ip 5.120.128.4 111420 port 46 111420 unique_id port 111422 username asma2026 111422 mac 111422 bytes_out 0 111422 bytes_in 0 111422 station_ip 83.122.142.155 111422 port 54 111422 unique_id port 111422 remote_ip 10.8.0.170 111423 username asma2026 111423 mac 111423 bytes_out 0 111423 bytes_in 0 111423 station_ip 83.122.142.155 111423 port 54 111423 unique_id port 111423 remote_ip 10.8.0.170 111425 username asma2026 111425 mac 111425 bytes_out 0 111425 bytes_in 0 111425 station_ip 83.122.142.155 111425 port 21 111425 unique_id port 111425 remote_ip 10.8.1.122 111426 username asma2026 111426 kill_reason Maximum number of concurrent logins reached 111426 mac 111426 bytes_out 0 111426 bytes_in 0 111426 station_ip 83.122.142.155 111426 port 55 111426 unique_id port 111429 username avaanna 111429 mac 111429 bytes_out 2271876 111429 bytes_in 17843436 111429 station_ip 83.123.144.127 111429 port 52 111429 unique_id port 111429 remote_ip 10.8.0.98 111431 username asma2026 111431 kill_reason Maximum check online fails reached 111431 mac 111431 bytes_out 0 111431 bytes_in 0 111431 station_ip 83.122.142.155 111431 port 54 111431 unique_id port 111434 username avaanna 111434 mac 111434 bytes_out 451781 111434 bytes_in 7321279 111434 station_ip 83.123.144.127 111434 port 34 111434 unique_id port 111434 remote_ip 10.8.0.98 111440 username hashtadani3 111440 mac 111440 bytes_out 0 111440 bytes_in 0 111440 station_ip 5.202.58.39 111440 port 32 111440 unique_id port 111440 remote_ip 10.8.0.154 111445 username rasoul56 111445 kill_reason Another user logged on this global unique id 111445 mac 111445 bytes_out 0 111445 bytes_in 0 111445 station_ip 83.123.119.85 111445 port 51 111445 unique_id port 111450 username hashtadani3 111450 mac 111450 bytes_out 326061 111450 bytes_in 103053 111450 station_ip 5.202.58.39 111450 port 32 111450 unique_id port 111450 remote_ip 10.8.0.154 111452 username kordestani 111452 mac 111452 bytes_out 0 111452 bytes_in 0 111452 station_ip 151.235.101.232 111452 port 19 111452 unique_id port 111452 remote_ip 10.8.1.98 111454 username alihosseini1 111454 mac 111454 bytes_out 0 111454 bytes_in 0 111454 station_ip 5.119.62.54 111454 port 23 111454 unique_id port 111454 remote_ip 10.8.1.106 111455 username mehdizare 111455 kill_reason Another user logged on this global unique id 111455 mac 111455 bytes_out 0 111455 bytes_in 0 111455 station_ip 5.119.132.42 111455 port 41 111455 unique_id port 111455 remote_ip 10.8.0.90 111461 username arman1 111461 mac 111461 bytes_out 5696273 111461 bytes_in 45015480 111461 station_ip 5.119.200.37 111461 port 53 111461 unique_id port 111461 remote_ip 10.8.0.110 111462 username aminvpn 111462 unique_id port 111462 terminate_cause Lost-Carrier 111462 bytes_out 396940 111462 bytes_in 7587446 111462 station_ip 5.120.115.141 111462 port 15729195 111462 nas_port_type Virtual 111462 remote_ip 5.5.5.250 111464 username hashtadani3 111464 mac 111464 bytes_out 0 111464 bytes_in 0 111464 station_ip 5.202.58.39 111464 port 52 111464 unique_id port 111464 remote_ip 10.8.0.154 111471 username morteza 111471 mac 111471 bytes_out 0 111471 bytes_in 0 111471 station_ip 37.129.227.217 111471 port 56 111471 unique_id port 111471 remote_ip 10.8.0.46 111473 username aminvpn 111473 mac 111473 bytes_out 0 111473 bytes_in 0 111473 station_ip 31.59.35.83 111473 port 55 111473 unique_id port 111473 remote_ip 10.8.0.14 111475 username houshang 111475 mac 111475 bytes_out 0 111475 bytes_in 0 111475 station_ip 5.119.54.14 111475 port 52 111475 unique_id port 111480 username zare 111480 mac 111480 bytes_out 0 111480 bytes_in 0 111480 station_ip 37.27.17.184 111480 port 56 111480 unique_id port 111480 remote_ip 10.8.0.18 111485 username zare 111485 mac 111485 bytes_out 0 111485 bytes_in 0 111485 station_ip 37.27.17.184 111485 port 55 111485 unique_id port 111485 remote_ip 10.8.0.18 111492 username amir 111492 mac 111492 bytes_out 0 111492 bytes_in 0 111492 station_ip 46.225.213.183 111492 port 55 111492 unique_id port 111492 remote_ip 10.8.0.50 111495 username alipour 111495 mac 111495 bytes_out 12951981 111495 bytes_in 47623184 111495 station_ip 83.122.230.63 111495 port 49 111495 unique_id port 111495 remote_ip 10.8.0.102 111501 username hashtadani3 111501 mac 111501 bytes_out 0 111501 bytes_in 0 111501 station_ip 5.202.58.39 111501 port 55 111501 unique_id port 111501 remote_ip 10.8.0.154 111502 username hashtadani3 111433 port 32 111433 unique_id port 111433 remote_ip 10.8.0.50 111438 username hashtadani3 111438 mac 111438 bytes_out 0 111438 bytes_in 0 111438 station_ip 5.202.58.39 111438 port 32 111438 unique_id port 111438 remote_ip 10.8.0.154 111439 username aminvpn 111439 unique_id port 111439 terminate_cause User-Request 111439 bytes_out 157698 111439 bytes_in 469771 111439 station_ip 5.120.115.141 111439 port 15729192 111439 nas_port_type Virtual 111439 remote_ip 5.5.5.250 111441 username hashtadani3 111441 mac 111441 bytes_out 0 111441 bytes_in 0 111441 station_ip 5.202.58.39 111441 port 32 111441 unique_id port 111441 remote_ip 10.8.0.154 111446 username aminvpn 111446 unique_id port 111446 terminate_cause Lost-Carrier 111446 bytes_out 59648 111446 bytes_in 213216 111446 station_ip 5.120.115.141 111446 port 15729193 111446 nas_port_type Virtual 111446 remote_ip 5.5.5.250 111448 username amir 111448 mac 111448 bytes_out 54526 111448 bytes_in 421547 111448 station_ip 46.225.213.183 111448 port 32 111448 unique_id port 111448 remote_ip 10.8.0.50 111449 username hashtadani3 111449 mac 111449 bytes_out 0 111449 bytes_in 0 111449 station_ip 5.202.58.39 111449 port 25 111449 unique_id port 111449 remote_ip 10.8.1.94 111451 username hashtadani3 111451 mac 111451 bytes_out 0 111451 bytes_in 0 111451 station_ip 5.202.58.39 111451 port 32 111451 unique_id port 111451 remote_ip 10.8.0.154 111453 username avaanna 111453 mac 111453 bytes_out 0 111453 bytes_in 0 111453 station_ip 83.123.144.127 111453 port 22 111453 unique_id port 111453 remote_ip 10.8.1.46 111460 username amir 111460 mac 111460 bytes_out 102677 111460 bytes_in 387439 111460 station_ip 46.225.213.183 111460 port 34 111460 unique_id port 111460 remote_ip 10.8.0.50 111466 username kordestani 111466 mac 111466 bytes_out 0 111466 bytes_in 0 111466 station_ip 151.235.101.232 111466 port 34 111466 unique_id port 111466 remote_ip 10.8.0.134 111469 username alihosseini1 111469 mac 111469 bytes_out 0 111469 bytes_in 0 111469 station_ip 5.119.62.54 111469 port 55 111469 unique_id port 111469 remote_ip 10.8.0.166 111470 username houshang 111470 kill_reason Another user logged on this global unique id 111470 mac 111470 bytes_out 0 111470 bytes_in 0 111470 station_ip 5.119.54.14 111470 port 52 111470 unique_id port 111470 remote_ip 10.8.0.22 111474 username mehdizare 111474 mac 111474 bytes_out 0 111474 bytes_in 0 111474 station_ip 5.119.132.42 111474 port 41 111474 unique_id port 111476 username zare 111476 mac 111476 bytes_out 74999 111476 bytes_in 237729 111476 station_ip 37.27.17.184 111476 port 19 111476 unique_id port 111476 remote_ip 10.8.1.58 111477 username zare 111477 mac 111477 bytes_out 0 111477 bytes_in 0 111477 station_ip 37.27.17.184 111477 port 58 111477 unique_id port 111477 remote_ip 10.8.0.18 111478 username amir 111478 mac 111478 bytes_out 53127 111478 bytes_in 233433 111478 station_ip 46.225.213.183 111478 port 41 111478 unique_id port 111478 remote_ip 10.8.0.50 111483 username mehdizare 111483 mac 111483 bytes_out 0 111483 bytes_in 0 111483 station_ip 5.119.132.42 111483 port 55 111483 unique_id port 111483 remote_ip 10.8.0.90 111486 username mehdizare 111486 mac 111486 bytes_out 0 111486 bytes_in 0 111486 station_ip 5.119.132.42 111486 port 56 111486 unique_id port 111486 remote_ip 10.8.0.90 111487 username kordestani 111487 mac 111487 bytes_out 0 111487 bytes_in 0 111487 station_ip 151.235.101.232 111487 port 34 111444 remote_ip 10.8.0.154 111447 username hashtadani3 111447 mac 111447 bytes_out 0 111447 bytes_in 0 111447 station_ip 5.202.58.39 111447 port 34 111447 unique_id port 111447 remote_ip 10.8.0.154 111456 username hashtadani3 111456 mac 111456 bytes_out 18796 111456 bytes_in 18732 111456 station_ip 5.202.58.39 111456 port 32 111456 unique_id port 111456 remote_ip 10.8.0.154 111457 username alihosseini1 111457 mac 111457 bytes_out 0 111457 bytes_in 0 111457 station_ip 5.119.62.54 111457 port 19 111457 unique_id port 111457 remote_ip 10.8.1.106 111458 username hashtadani3 111458 mac 111458 bytes_out 0 111458 bytes_in 0 111458 station_ip 5.202.58.39 111458 port 32 111458 unique_id port 111458 remote_ip 10.8.0.154 111459 username hashtadani3 111459 mac 111459 bytes_out 0 111459 bytes_in 0 111459 station_ip 5.202.58.39 111459 port 32 111459 unique_id port 111459 remote_ip 10.8.0.154 111463 username alihosseini1 111463 mac 111463 bytes_out 0 111463 bytes_in 0 111463 station_ip 5.119.62.54 111463 port 34 111463 unique_id port 111463 remote_ip 10.8.0.166 111465 username mehdizare 111465 kill_reason Another user logged on this global unique id 111465 mac 111465 bytes_out 0 111465 bytes_in 0 111465 station_ip 5.119.132.42 111465 port 41 111465 unique_id port 111467 username amir 111467 mac 111467 bytes_out 51351 111467 bytes_in 217003 111467 station_ip 46.225.213.183 111467 port 55 111467 unique_id port 111467 remote_ip 10.8.0.50 111468 username malekpoir 111468 kill_reason Another user logged on this global unique id 111468 mac 111468 bytes_out 0 111468 bytes_in 0 111468 station_ip 5.119.201.117 111468 port 24 111468 unique_id port 111468 remote_ip 10.8.1.54 111472 username malekpoir 111472 mac 111472 bytes_out 0 111472 bytes_in 0 111472 station_ip 5.119.201.117 111472 port 24 111472 unique_id port 111479 username aminvpn 111479 mac 111479 bytes_out 0 111479 bytes_in 0 111479 station_ip 113.203.94.164 111479 port 56 111479 unique_id port 111479 remote_ip 10.8.0.14 111481 username zare 111481 kill_reason Maximum check online fails reached 111481 mac 111481 bytes_out 0 111481 bytes_in 0 111481 station_ip 37.27.17.184 111481 port 58 111481 unique_id port 111482 username zare 111482 mac 111482 bytes_out 0 111482 bytes_in 0 111482 station_ip 37.27.17.184 111482 port 56 111482 unique_id port 111482 remote_ip 10.8.0.18 111484 username zare 111484 mac 111484 bytes_out 0 111484 bytes_in 0 111484 station_ip 37.27.17.184 111484 port 55 111484 unique_id port 111484 remote_ip 10.8.0.18 111488 username mehdizare 111488 mac 111488 bytes_out 0 111488 bytes_in 0 111488 station_ip 5.119.132.42 111488 port 55 111488 unique_id port 111488 remote_ip 10.8.0.90 111489 username houshang 111489 mac 111489 bytes_out 0 111489 bytes_in 0 111489 station_ip 5.119.54.14 111489 port 57 111489 unique_id port 111489 remote_ip 10.8.0.22 111490 username mehdizare 111490 mac 111490 bytes_out 0 111490 bytes_in 0 111490 station_ip 5.119.132.42 111490 port 55 111490 unique_id port 111490 remote_ip 10.8.0.90 111491 username alihosseini1 111491 mac 111491 bytes_out 0 111491 bytes_in 0 111491 station_ip 5.119.62.54 111491 port 55 111491 unique_id port 111491 remote_ip 10.8.0.166 111493 username alihosseini1 111493 mac 111493 bytes_out 0 111493 bytes_in 0 111493 station_ip 5.119.62.54 111493 port 56 111493 unique_id port 111493 remote_ip 10.8.0.166 111496 username mehdizare 111496 mac 111496 bytes_out 60709 111487 unique_id port 111487 remote_ip 10.8.0.134 111494 username hashtadani3 111494 mac 111494 bytes_out 32662 111494 bytes_in 35833 111494 station_ip 5.202.58.39 111494 port 53 111494 unique_id port 111494 remote_ip 10.8.0.154 111497 username hashtadani3 111497 mac 111497 bytes_out 0 111497 bytes_in 0 111497 station_ip 5.202.58.39 111497 port 53 111497 unique_id port 111497 remote_ip 10.8.0.154 111498 username hashtadani3 111498 mac 111498 bytes_out 0 111498 bytes_in 0 111498 station_ip 5.202.58.39 111498 port 49 111498 unique_id port 111498 remote_ip 10.8.0.154 111500 username alihosseini1 111500 kill_reason Maximum check online fails reached 111500 mac 111500 bytes_out 0 111500 bytes_in 0 111500 station_ip 5.119.62.54 111500 port 53 111500 unique_id port 111505 username hashtadani3 111505 mac 111505 bytes_out 0 111505 bytes_in 0 111505 station_ip 5.202.58.39 111505 port 57 111505 unique_id port 111505 remote_ip 10.8.0.154 111507 username hashtadani3 111507 mac 111507 bytes_out 0 111507 bytes_in 0 111507 station_ip 5.202.58.39 111507 port 23 111507 unique_id port 111507 remote_ip 10.8.1.94 111508 username hashtadani3 111508 mac 111508 bytes_out 0 111508 bytes_in 0 111508 station_ip 5.202.58.39 111508 port 55 111508 unique_id port 111508 remote_ip 10.8.0.154 111511 username zare 111511 mac 111511 bytes_out 0 111511 bytes_in 0 111511 station_ip 37.27.17.184 111511 port 34 111511 unique_id port 111511 remote_ip 10.8.0.18 111517 username zare 111517 mac 111517 bytes_out 0 111517 bytes_in 0 111517 station_ip 37.27.17.184 111517 port 24 111517 unique_id port 111517 remote_ip 10.8.1.58 111525 username zare 111525 mac 111525 bytes_out 0 111525 bytes_in 0 111525 station_ip 37.27.17.184 111525 port 55 111525 unique_id port 111525 remote_ip 10.8.0.18 111529 username arman1 111529 mac 111529 bytes_out 0 111529 bytes_in 0 111529 station_ip 5.120.22.251 111529 port 59 111529 unique_id port 111529 remote_ip 10.8.0.110 111533 username hashtadani3 111533 mac 111533 bytes_out 0 111533 bytes_in 0 111533 station_ip 5.202.58.39 111533 port 57 111533 unique_id port 111533 remote_ip 10.8.0.154 111535 username mohammadi1 111535 mac 111535 bytes_out 0 111535 bytes_in 0 111535 station_ip 46.225.232.102 111535 port 59 111535 unique_id port 111535 remote_ip 10.8.0.178 111536 username mohammadi1 111536 mac 111536 bytes_out 0 111536 bytes_in 0 111536 station_ip 46.225.232.102 111536 port 60 111536 unique_id port 111536 remote_ip 10.8.0.178 111540 username amir 111540 mac 111540 bytes_out 0 111540 bytes_in 0 111540 station_ip 46.225.213.183 111540 port 57 111540 unique_id port 111540 remote_ip 10.8.0.50 111542 username malekpoir 111542 mac 111542 bytes_out 0 111542 bytes_in 0 111542 station_ip 5.119.201.117 111542 port 52 111542 unique_id port 111542 remote_ip 10.8.0.58 111545 username tahmasebi 111545 kill_reason Another user logged on this global unique id 111545 mac 111545 bytes_out 0 111545 bytes_in 0 111545 station_ip 5.120.128.4 111545 port 46 111545 unique_id port 111548 username mohammadi1 111548 mac 111548 bytes_out 0 111548 bytes_in 0 111548 station_ip 83.123.206.90 111548 port 52 111548 unique_id port 111548 remote_ip 10.8.0.178 111549 username mohammadi1 111549 mac 111549 bytes_out 0 111549 bytes_in 0 111549 station_ip 83.123.206.90 111549 port 41 111549 unique_id port 111549 remote_ip 10.8.0.178 111552 username aminvpn 111552 mac 111552 bytes_out 0 111496 bytes_in 107794 111496 station_ip 5.119.132.42 111496 port 55 111496 unique_id port 111496 remote_ip 10.8.0.90 111499 username hashtadani3 111499 mac 111499 bytes_out 0 111499 bytes_in 0 111499 station_ip 5.202.58.39 111499 port 55 111499 unique_id port 111499 remote_ip 10.8.0.154 111504 username hashtadani3 111504 mac 111504 bytes_out 0 111504 bytes_in 0 111504 station_ip 5.202.58.39 111504 port 57 111504 unique_id port 111504 remote_ip 10.8.0.154 111509 username hashtadani3 111509 mac 111509 bytes_out 0 111509 bytes_in 0 111509 station_ip 5.202.58.39 111509 port 55 111509 unique_id port 111509 remote_ip 10.8.0.154 111513 username hashtadani3 111513 mac 111513 bytes_out 0 111513 bytes_in 0 111513 station_ip 5.202.58.39 111513 port 23 111513 unique_id port 111513 remote_ip 10.8.1.94 111515 username hashtadani3 111515 mac 111515 bytes_out 0 111515 bytes_in 0 111515 station_ip 5.202.58.39 111515 port 23 111515 unique_id port 111515 remote_ip 10.8.1.94 111516 username zare 111516 mac 111516 bytes_out 0 111516 bytes_in 0 111516 station_ip 37.27.17.184 111516 port 24 111516 unique_id port 111516 remote_ip 10.8.1.58 111519 username alihosseini1 111519 mac 111519 bytes_out 574614 111519 bytes_in 4951051 111519 station_ip 5.119.62.54 111519 port 22 111519 unique_id port 111519 remote_ip 10.8.1.106 111520 username amir 111520 mac 111520 bytes_out 0 111520 bytes_in 0 111520 station_ip 46.225.213.183 111520 port 55 111520 unique_id port 111520 remote_ip 10.8.0.50 111523 username alihosseini1 111523 mac 111523 bytes_out 0 111523 bytes_in 0 111523 station_ip 5.119.62.54 111523 port 22 111523 unique_id port 111523 remote_ip 10.8.1.106 111524 username hashtadani3 111524 mac 111524 bytes_out 0 111524 bytes_in 0 111524 station_ip 5.202.58.39 111524 port 55 111524 unique_id port 111524 remote_ip 10.8.0.154 111528 username zare 111528 mac 111528 bytes_out 0 111528 bytes_in 0 111528 station_ip 37.27.17.184 111528 port 55 111528 unique_id port 111528 remote_ip 10.8.0.18 111530 username alihosseini1 49884 username mehrdad 49884 kill_reason Maximum check online fails reached 49884 mac 5.116.15.212:1308: Unknown host 49884 bytes_out 0 49884 bytes_in 0 49884 station_ip 5.116.15.212:1308 49884 port 1017 49884 unique_id port 111530 mac 111530 bytes_out 0 111530 bytes_in 0 111530 station_ip 5.119.62.54 111530 port 22 111530 unique_id port 111530 remote_ip 10.8.1.106 111532 username houshang 111532 mac 111532 bytes_out 0 111532 bytes_in 0 111532 station_ip 5.119.54.14 111532 port 59 111532 unique_id port 111532 remote_ip 10.8.0.22 111534 username mohammadi1 111534 kill_reason Wrong password 111534 mac 111534 bytes_out 0 111534 bytes_in 0 111534 station_ip 46.225.232.102 111534 port 59 111534 unique_id port 111537 username mehdizare 111537 mac 111537 bytes_out 116680 111537 bytes_in 542094 111537 station_ip 5.119.132.42 111537 port 49 111537 unique_id port 111537 remote_ip 10.8.0.90 111538 username mohammadi1 111538 mac 111538 bytes_out 0 111538 bytes_in 0 111538 station_ip 83.123.206.90 111538 port 59 111538 unique_id port 111538 remote_ip 10.8.0.178 111539 username ehsun 111539 mac 111539 bytes_out 0 111539 bytes_in 0 111539 station_ip 46.225.232.102 111539 port 49 111539 unique_id port 111539 remote_ip 10.8.0.162 111541 username aminvpn 111541 mac 111541 bytes_out 304647 111541 bytes_in 1809381 111541 station_ip 31.59.35.83 111541 port 41 111541 unique_id port 111502 mac 111502 bytes_out 0 111502 bytes_in 0 111502 station_ip 5.202.58.39 111502 port 57 111502 unique_id port 111502 remote_ip 10.8.0.154 111503 username hamid.e 111503 unique_id port 111503 terminate_cause User-Request 111503 bytes_out 12726125 111503 bytes_in 22116679 111503 station_ip 37.27.26.220 111503 port 15729189 111503 nas_port_type Virtual 111503 remote_ip 5.5.5.254 111506 username amir 111506 mac 111506 bytes_out 0 111506 bytes_in 0 111506 station_ip 46.225.213.183 111506 port 55 111506 unique_id port 111506 remote_ip 10.8.0.50 111510 username zare 111510 mac 111510 bytes_out 0 111510 bytes_in 0 111510 station_ip 37.27.17.184 111510 port 34 111510 unique_id port 111510 remote_ip 10.8.0.18 111512 username zare 111512 mac 111512 bytes_out 0 111512 bytes_in 0 111512 station_ip 37.27.17.184 111512 port 34 111512 unique_id port 111512 remote_ip 10.8.0.18 111514 username zare 111514 mac 111514 bytes_out 0 111514 bytes_in 0 111514 station_ip 37.27.17.184 111514 port 34 111514 unique_id port 111514 remote_ip 10.8.0.18 111518 username hashtadani3 111518 mac 111518 bytes_out 0 111518 bytes_in 0 111518 station_ip 5.202.58.39 111518 port 23 111518 unique_id port 111518 remote_ip 10.8.1.94 111521 username hashtadani3 111521 mac 111521 bytes_out 424862 111521 bytes_in 1607706 111521 station_ip 5.202.58.39 111521 port 23 111521 unique_id port 111521 remote_ip 10.8.1.94 111522 username zare 111522 mac 111522 bytes_out 0 111522 bytes_in 0 111522 station_ip 37.27.17.184 111522 port 55 111522 unique_id port 111522 remote_ip 10.8.0.18 111526 username zare 111526 mac 111526 bytes_out 0 111526 bytes_in 0 111526 station_ip 37.27.17.184 111526 port 55 111526 unique_id port 111526 remote_ip 10.8.0.18 111527 username houshang 111527 mac 111527 bytes_out 0 111527 bytes_in 0 111527 station_ip 5.119.54.14 111527 port 34 111527 unique_id port 111527 remote_ip 10.8.0.22 111531 username hashtadani3 111531 mac 111531 bytes_out 0 111531 bytes_in 0 111531 station_ip 5.202.58.39 111531 port 57 111531 unique_id port 111531 remote_ip 10.8.0.154 111546 username aminvpn 111546 mac 111546 bytes_out 0 111546 bytes_in 0 111546 station_ip 31.59.35.83 111546 port 41 111546 unique_id port 111546 remote_ip 10.8.0.14 111550 username alihosseini1 111550 mac 111550 bytes_out 0 111550 bytes_in 0 111550 station_ip 5.119.62.54 111550 port 55 111550 unique_id port 111550 remote_ip 10.8.0.166 111551 username mohammadi1 111551 mac 111551 bytes_out 0 111551 bytes_in 0 111551 station_ip 83.123.206.90 111551 port 52 111551 unique_id port 111551 remote_ip 10.8.0.178 111554 username mohammadi1 111554 mac 111554 bytes_out 0 111554 bytes_in 0 111554 station_ip 46.225.232.102 111554 port 49 111554 unique_id port 111554 remote_ip 10.8.0.178 111559 username mohammadi1 111559 mac 111559 bytes_out 0 111559 bytes_in 0 111559 station_ip 46.225.232.102 111559 port 41 111559 unique_id port 111559 remote_ip 10.8.0.178 111562 username musa 111562 mac 111562 bytes_out 15206 111562 bytes_in 17628 111562 station_ip 158.58.86.57 111562 port 52 111562 unique_id port 111562 remote_ip 10.8.0.6 111564 username aminvpn 111564 mac 111564 bytes_out 0 111564 bytes_in 0 111564 station_ip 31.59.35.83 111564 port 55 111564 unique_id port 111564 remote_ip 10.8.0.14 111567 username aminvpn 111567 mac 111567 bytes_out 0 111567 bytes_in 0 111567 station_ip 37.129.226.204 111567 port 49 111541 remote_ip 10.8.0.14 111543 username mohammadi1 111543 mac 111543 bytes_out 0 49899 username mehrdad 49899 kill_reason Maximum check online fails reached 49899 mac 5.116.15.212:1264: Unknown host 49899 bytes_out 0 49899 bytes_in 0 49899 station_ip 5.116.15.212:1264 49899 port 1017 49899 unique_id port 111543 bytes_in 0 111543 station_ip 83.123.206.90 111543 port 41 111543 unique_id port 111543 remote_ip 10.8.0.178 111544 username aminvpn 111544 mac 111544 bytes_out 0 111544 bytes_in 0 111544 station_ip 37.129.226.204 111544 port 49 111544 unique_id port 111544 remote_ip 10.8.0.14 111547 username ehsun 111547 mac 111547 bytes_out 0 111547 bytes_in 0 111547 station_ip 46.225.232.102 111547 port 59 111547 unique_id port 111547 remote_ip 10.8.0.162 111553 username mohammadi1 111553 mac 111553 bytes_out 0 111553 bytes_in 0 111553 station_ip 46.225.232.102 111553 port 41 111553 unique_id port 111553 remote_ip 10.8.0.178 111556 username musa 111556 mac 111556 bytes_out 1632511 111556 bytes_in 9744811 111556 station_ip 158.58.86.57 111556 port 32 111556 unique_id port 111556 remote_ip 10.8.0.6 111557 username mohammadi 111557 kill_reason Wrong password 111557 mac 111557 bytes_out 0 111557 bytes_in 0 111557 station_ip 46.225.232.102 111557 port 32 111557 unique_id port 111563 username alirezazadeh 111563 unique_id port 111563 terminate_cause Lost-Carrier 111563 bytes_out 7824684 111563 bytes_in 4214522 111563 station_ip 31.56.159.18 111563 port 15729190 111563 nas_port_type Virtual 111563 remote_ip 5.5.5.253 111566 username mohammadi1 111566 mac 111566 bytes_out 0 111566 bytes_in 0 111566 station_ip 46.225.232.102 111566 port 41 111566 unique_id port 111566 remote_ip 10.8.0.178 111570 username aminvpn 111570 mac 111570 bytes_out 0 111570 bytes_in 0 111570 station_ip 31.59.35.83 111570 port 55 111570 unique_id port 111570 remote_ip 10.8.0.14 111575 username farhad1 111575 mac 111575 bytes_out 0 111575 bytes_in 0 111575 station_ip 5.120.58.33 111575 port 41 111575 unique_id port 111575 remote_ip 10.8.0.26 111586 username kordestani 111586 mac 111586 bytes_out 758543 111586 bytes_in 14109193 111586 station_ip 151.235.101.232 111586 port 19 111586 unique_id port 111586 remote_ip 10.8.1.98 111588 username ehsun 111588 mac 111588 bytes_out 0 111588 bytes_in 0 111588 station_ip 46.225.232.102 111588 port 49 111588 unique_id port 111588 remote_ip 10.8.0.162 111589 username farhad1 111589 mac 111589 bytes_out 0 111589 bytes_in 0 111589 station_ip 5.119.151.238 111589 port 41 111589 unique_id port 111589 remote_ip 10.8.0.26 111591 username hashtadani3 111591 mac 111591 bytes_out 0 111591 bytes_in 0 111591 station_ip 5.202.58.39 111591 port 32 111591 unique_id port 111591 remote_ip 10.8.0.154 111594 username hashtadani3 111594 mac 111594 bytes_out 0 111594 bytes_in 0 111594 station_ip 5.202.58.39 111594 port 32 111594 unique_id port 111594 remote_ip 10.8.0.154 111598 username aminvpn 111598 mac 111598 bytes_out 0 111598 bytes_in 0 111598 station_ip 31.59.35.83 111598 port 61 111598 unique_id port 111598 remote_ip 10.8.0.14 111602 username sedighe 111602 mac 111602 bytes_out 0 111602 bytes_in 0 111602 station_ip 37.129.206.112 111602 port 59 111602 unique_id port 111602 remote_ip 10.8.0.146 111603 username aminvpn 111603 mac 111603 bytes_out 0 111603 bytes_in 0 111603 station_ip 31.59.35.83 111603 port 41 111603 unique_id port 111603 remote_ip 10.8.0.14 111605 username aminvpn 111552 bytes_in 0 111552 station_ip 37.129.226.204 111552 port 49 111552 unique_id port 111552 remote_ip 10.8.0.14 111555 username aminvpn 111555 mac 111555 bytes_out 0 111555 bytes_in 0 111555 station_ip 31.59.35.83 111555 port 52 111555 unique_id port 111555 remote_ip 10.8.0.14 111558 username mohammadi1 111558 mac 111558 bytes_out 0 111558 bytes_in 0 111558 station_ip 46.225.232.102 111558 port 41 111558 unique_id port 111558 remote_ip 10.8.0.178 111560 username mohammadi1 111560 mac 111560 bytes_out 0 111560 bytes_in 0 111560 station_ip 46.225.232.102 111560 port 55 111560 unique_id port 111560 remote_ip 10.8.0.178 111561 username aminvpn 111561 mac 111561 bytes_out 0 111561 bytes_in 0 111561 station_ip 37.129.226.204 111561 port 49 111561 unique_id port 111561 remote_ip 10.8.0.14 111565 username alihosseini1 111565 mac 111565 bytes_out 0 111565 bytes_in 0 111565 station_ip 5.119.62.54 111565 port 22 111565 unique_id port 111565 remote_ip 10.8.1.106 111568 username aminvpn 111568 mac 111568 bytes_out 0 111568 bytes_in 0 111568 station_ip 31.59.35.83 111568 port 41 111568 unique_id port 111568 remote_ip 10.8.0.14 111574 username aminvpn 111574 mac 111574 bytes_out 0 111574 bytes_in 0 111574 station_ip 31.59.35.83 111574 port 55 111574 unique_id port 111574 remote_ip 10.8.0.14 111577 username malekpoir 111577 kill_reason Maximum check online fails reached 111577 mac 111577 bytes_out 0 111577 bytes_in 0 111577 station_ip 5.119.201.117 111577 port 22 111577 unique_id port 111581 username amir 111581 mac 111581 bytes_out 0 111581 bytes_in 0 111581 station_ip 46.225.213.183 111581 port 32 111581 unique_id port 111581 remote_ip 10.8.0.50 111583 username malekpoir 111583 kill_reason Maximum check online fails reached 111583 mac 111583 bytes_out 0 111583 bytes_in 0 111583 station_ip 5.119.201.117 111583 port 23 111583 unique_id port 111584 username aminvpn 111584 mac 111584 bytes_out 0 111584 bytes_in 0 111584 station_ip 37.129.226.204 111584 port 49 111584 unique_id port 111584 remote_ip 10.8.0.14 111585 username aminvpn 111585 mac 111585 bytes_out 0 111585 bytes_in 0 111585 station_ip 31.59.35.83 111585 port 55 111585 unique_id port 111585 remote_ip 10.8.0.14 111592 username aminvpn 111592 mac 111592 bytes_out 0 111592 bytes_in 0 111592 station_ip 37.129.226.204 111592 port 41 111592 unique_id port 111592 remote_ip 10.8.0.14 111595 username aminvpn 111595 mac 111595 bytes_out 0 111595 bytes_in 0 111595 station_ip 31.59.35.83 111595 port 61 111595 unique_id port 111595 remote_ip 10.8.0.14 111596 username aminvpn 111596 mac 111596 bytes_out 0 111596 bytes_in 0 111596 station_ip 37.129.226.204 111596 port 41 111596 unique_id port 111596 remote_ip 10.8.0.14 111600 username alipour 111600 mac 111600 bytes_out 0 111600 bytes_in 0 111600 station_ip 83.122.230.63 111600 port 56 111600 unique_id port 111600 remote_ip 10.8.0.102 111604 username aminvpn 111604 mac 111604 bytes_out 0 111604 bytes_in 0 111604 station_ip 37.129.226.204 111604 port 56 111604 unique_id port 111604 remote_ip 10.8.0.14 111610 username hashtadani3 111610 mac 111610 bytes_out 0 111610 bytes_in 0 111610 station_ip 5.202.58.39 111610 port 24 111610 unique_id port 111610 remote_ip 10.8.1.94 111614 username mohammadjavad 111614 mac 111614 bytes_out 780886 111614 bytes_in 5622139 111614 station_ip 83.122.72.254 111614 port 41 111614 unique_id port 111614 remote_ip 10.8.0.142 111567 unique_id port 111567 remote_ip 10.8.0.14 111569 username aminvpn 111569 mac 111569 bytes_out 180866 111569 bytes_in 774956 111569 station_ip 37.129.226.204 111569 port 49 111569 unique_id port 111569 remote_ip 10.8.0.14 111571 username hashtadani3 111571 mac 111571 bytes_out 0 111571 bytes_in 0 111571 station_ip 5.202.58.39 111571 port 32 111571 unique_id port 111571 remote_ip 10.8.0.154 111572 username aminvpn 111572 mac 111572 bytes_out 0 111572 bytes_in 0 111572 station_ip 37.129.226.204 111572 port 49 111572 unique_id port 111572 remote_ip 10.8.0.14 111573 username malekpoir 111573 mac 111573 bytes_out 0 111573 bytes_in 0 111573 station_ip 5.119.201.117 111573 port 57 111573 unique_id port 111573 remote_ip 10.8.0.58 111576 username hashtadani3 111576 mac 111576 bytes_out 0 111576 bytes_in 0 111576 station_ip 5.202.58.39 111576 port 32 111576 unique_id port 111576 remote_ip 10.8.0.154 111578 username amir 111578 mac 111578 bytes_out 0 111578 bytes_in 0 111578 station_ip 46.225.213.183 111578 port 41 111578 unique_id port 111578 remote_ip 10.8.0.50 111579 username hashtadani3 111579 mac 111579 bytes_out 0 111579 bytes_in 0 111579 station_ip 5.202.58.39 111579 port 41 111579 unique_id port 111579 remote_ip 10.8.0.154 111580 username hashtadani3 111580 mac 111580 bytes_out 0 111580 bytes_in 0 111580 station_ip 5.202.58.39 111580 port 41 111580 unique_id port 111580 remote_ip 10.8.0.154 111582 username ehsun 111582 mac 111582 bytes_out 0 111582 bytes_in 0 111582 station_ip 46.225.232.102 111582 port 55 111582 unique_id port 111582 remote_ip 10.8.0.162 111587 username aminvpn 111587 mac 111587 bytes_out 0 111587 bytes_in 0 111587 station_ip 37.129.226.204 111587 port 59 111587 unique_id port 111587 remote_ip 10.8.0.14 111590 username aminvpn 111590 mac 111590 bytes_out 0 111590 bytes_in 0 111590 station_ip 31.59.35.83 111590 port 55 111590 unique_id port 111590 remote_ip 10.8.0.14 111593 username ehsun 111593 mac 111593 bytes_out 0 111593 bytes_in 0 111593 station_ip 46.225.232.102 111593 port 59 111593 unique_id port 111593 remote_ip 10.8.0.162 111597 username ehsun 111597 mac 111597 bytes_out 1636 111597 bytes_in 5182 111597 station_ip 46.225.232.102 111597 port 32 111597 unique_id port 111597 remote_ip 10.8.0.162 111599 username aminvpn 111599 mac 111599 bytes_out 0 111599 bytes_in 0 111599 station_ip 37.129.226.204 111599 port 32 111599 unique_id port 111599 remote_ip 10.8.0.14 111601 username mehdizare 111601 mac 111601 bytes_out 527522 111601 bytes_in 4627291 111601 station_ip 5.119.132.42 111601 port 60 111601 unique_id port 111601 remote_ip 10.8.0.90 111607 username ehsun 111607 mac 111607 bytes_out 0 111607 bytes_in 0 111607 station_ip 46.225.232.102 111607 port 24 111607 unique_id port 111607 remote_ip 10.8.1.126 111612 username hashtadani3 111612 mac 111612 bytes_out 0 111612 bytes_in 0 111612 station_ip 5.202.58.39 111612 port 59 111612 unique_id port 111612 remote_ip 10.8.0.154 111617 username mirzaei 111617 kill_reason Another user logged on this global unique id 111617 mac 111617 bytes_out 0 111617 bytes_in 0 111617 station_ip 5.120.191.187 111617 port 18 111617 unique_id port 111618 username arabpour 111618 unique_id port 111618 terminate_cause User-Request 111618 bytes_out 0 111618 bytes_in 0 111618 station_ip 37.129.167.43 111618 port 15729198 111618 nas_port_type Virtual 111618 remote_ip 5.5.5.250 111625 username kordestani 111605 mac 111605 bytes_out 0 111605 bytes_in 0 111605 station_ip 31.59.35.83 111605 port 41 111605 unique_id port 111605 remote_ip 10.8.0.14 111606 username aminvpn 111606 mac 111606 bytes_out 0 111606 bytes_in 0 111606 station_ip 37.129.226.204 111606 port 56 111606 unique_id port 111606 remote_ip 10.8.0.14 111608 username zare 111608 mac 111608 bytes_out 682249 111608 bytes_in 6109855 111608 station_ip 37.27.17.184 111608 port 34 111608 unique_id port 111608 remote_ip 10.8.0.18 111609 username alireza 111609 unique_id port 111609 terminate_cause User-Request 111609 bytes_out 822981 111609 bytes_in 6781319 111609 station_ip 5.120.60.241 111609 port 15729196 111609 nas_port_type Virtual 111609 remote_ip 5.5.5.255 111611 username ehsun 111611 mac 111611 bytes_out 0 111611 bytes_in 0 111611 station_ip 46.225.232.102 111611 port 24 111611 unique_id port 111611 remote_ip 10.8.1.126 111613 username hashtadani3 111613 mac 111613 bytes_out 2161369 111613 bytes_in 20942485 111613 station_ip 5.202.58.39 111613 port 59 111613 unique_id port 111613 remote_ip 10.8.0.154 111619 username arabpour 111619 unique_id port 111619 terminate_cause User-Request 111619 bytes_out 0 111619 bytes_in 0 111619 station_ip 37.129.167.43 111619 port 15729199 111619 nas_port_type Virtual 111619 remote_ip 5.5.5.255 111620 username arabpour 111620 unique_id port 111620 terminate_cause User-Request 111620 bytes_out 48 111620 bytes_in 98 111620 station_ip 37.129.167.43 111620 port 15729200 111620 nas_port_type Virtual 111620 remote_ip 5.5.5.255 111623 username arabpour 111623 unique_id port 111623 terminate_cause User-Request 111623 bytes_out 148094 111623 bytes_in 611809 111623 station_ip 37.129.167.43 111623 port 15729201 111623 nas_port_type Virtual 111623 remote_ip 5.5.5.255 111627 username mosi 111627 mac 111627 bytes_out 0 111627 bytes_in 0 111627 station_ip 151.235.111.162 111627 port 46 111627 unique_id port 111627 remote_ip 10.8.0.138 111628 username alihosseini1 111628 mac 111628 bytes_out 0 111628 bytes_in 0 111628 station_ip 5.120.156.185 111628 port 61 111628 unique_id port 111628 remote_ip 10.8.0.166 111631 username amirabbas 111631 unique_id port 111631 terminate_cause User-Request 111631 bytes_out 14277731 111631 bytes_in 385079666 111631 station_ip 37.27.45.82 111631 port 15729197 111631 nas_port_type Virtual 111631 remote_ip 5.5.5.253 111632 username hashtadani3 111632 mac 111632 bytes_out 0 111632 bytes_in 0 111632 station_ip 5.202.58.39 111632 port 19 111632 unique_id port 111632 remote_ip 10.8.1.94 111634 username hashtadani3 111634 mac 111634 bytes_out 0 111634 bytes_in 0 111634 station_ip 5.202.58.39 111634 port 19 111634 unique_id port 111634 remote_ip 10.8.1.94 111636 username kordestani 111636 mac 111636 bytes_out 36065 111636 bytes_in 54831 111636 station_ip 151.235.101.232 111636 port 59 111636 unique_id port 111636 remote_ip 10.8.0.134 111638 username hashtadani3 111638 mac 111638 bytes_out 0 111638 bytes_in 0 111638 station_ip 5.202.58.39 111638 port 32 111638 unique_id port 111638 remote_ip 10.8.0.154 111640 username hashtadani3 111640 mac 111640 bytes_out 0 111640 bytes_in 0 111640 station_ip 5.202.58.39 111640 port 32 111640 unique_id port 111640 remote_ip 10.8.0.154 111642 username alihosseini1 111642 mac 111642 bytes_out 0 111642 bytes_in 0 111642 station_ip 5.120.156.185 111642 port 46 111642 unique_id port 111642 remote_ip 10.8.0.166 111644 username ehsun 111644 mac 111644 bytes_out 0 111644 bytes_in 0 111615 username ehsun 111615 mac 111615 bytes_out 0 111615 bytes_in 0 111615 station_ip 46.225.232.102 111615 port 24 111615 unique_id port 111615 remote_ip 10.8.1.126 111616 username malekpoir 111616 mac 111616 bytes_out 30336 111616 bytes_in 36053 111616 station_ip 5.119.201.117 111616 port 57 111616 unique_id port 111616 remote_ip 10.8.0.58 111621 username tahmasebi 111621 mac 111621 bytes_out 0 111621 bytes_in 0 111621 station_ip 5.120.128.4 111621 port 46 111621 unique_id port 111622 username hashtadani3 111622 kill_reason Maximum check online fails reached 111622 mac 111622 bytes_out 0 111622 bytes_in 0 111622 station_ip 5.202.58.39 111622 port 57 111622 unique_id port 111624 username ehsun 111624 mac 111624 bytes_out 0 111624 bytes_in 0 111624 station_ip 46.225.232.102 111624 port 59 111624 unique_id port 111624 remote_ip 10.8.0.162 111626 username ehsun 111626 mac 111626 bytes_out 0 111626 bytes_in 0 111626 station_ip 46.225.232.102 111626 port 59 111626 unique_id port 111626 remote_ip 10.8.0.162 111629 username hashtadani3 111629 mac 111629 bytes_out 0 111629 bytes_in 0 111629 station_ip 5.202.58.39 111629 port 19 111629 unique_id port 111629 remote_ip 10.8.1.94 111635 username hashtadani3 111635 mac 111635 bytes_out 0 111635 bytes_in 0 111635 station_ip 5.202.58.39 111635 port 32 111635 unique_id port 111635 remote_ip 10.8.0.154 111637 username hashtadani3 111637 mac 111637 bytes_out 0 111637 bytes_in 0 111637 station_ip 5.202.58.39 111637 port 32 111637 unique_id port 111637 remote_ip 10.8.0.154 111643 username amir 111643 mac 111643 bytes_out 5060220 111643 bytes_in 46609152 111643 station_ip 46.225.213.183 111643 port 49 111643 unique_id port 111643 remote_ip 10.8.0.50 111645 username alihosseini1 111645 mac 111645 bytes_out 0 111645 bytes_in 0 111645 station_ip 5.120.156.185 111645 port 46 111645 unique_id port 111645 remote_ip 10.8.0.166 111647 username mohammadjavad 111647 mac 111647 bytes_out 0 111647 bytes_in 0 111647 station_ip 83.122.71.104 111647 port 32 111647 unique_id port 111647 remote_ip 10.8.0.142 111650 username aminvpn 111650 mac 111650 bytes_out 0 111650 bytes_in 0 111650 station_ip 5.119.173.26 111650 port 32 111650 unique_id port 111650 remote_ip 10.8.0.14 111651 username aminvpn 111651 mac 111651 bytes_out 0 111651 bytes_in 0 111651 station_ip 37.129.15.27 111651 port 46 111651 unique_id port 111651 remote_ip 10.8.0.14 111657 username aminvpn 111657 mac 111657 bytes_out 0 111657 bytes_in 0 111657 station_ip 5.119.173.26 111657 port 34 111657 unique_id port 111657 remote_ip 10.8.0.14 111661 username hashtadani3 111661 mac 111661 bytes_out 0 111661 bytes_in 0 111661 station_ip 5.202.58.39 111661 port 46 111661 unique_id port 111661 remote_ip 10.8.0.154 111665 username ehsun 111665 mac 111665 bytes_out 0 111665 bytes_in 0 111665 station_ip 46.225.232.102 111665 port 32 111665 unique_id port 111665 remote_ip 10.8.0.162 111666 username zare 111666 mac 111666 bytes_out 0 111666 bytes_in 0 111666 station_ip 37.27.17.184 111666 port 32 111666 unique_id port 111666 remote_ip 10.8.0.18 111669 username farhad1 111669 kill_reason Another user logged on this global unique id 111669 mac 111669 bytes_out 0 111669 bytes_in 0 111669 station_ip 5.119.44.106 111669 port 55 111669 unique_id port 111669 remote_ip 10.8.0.26 111670 username zare 111670 kill_reason Maximum check online fails reached 111670 mac 111670 bytes_out 0 111625 mac 111625 bytes_out 0 111625 bytes_in 0 111625 station_ip 151.235.101.232 111625 port 19 111625 unique_id port 111625 remote_ip 10.8.1.98 111630 username mehdizare 111630 mac 111630 bytes_out 0 111630 bytes_in 0 111630 station_ip 5.119.132.42 111630 port 32 111630 unique_id port 111630 remote_ip 10.8.0.90 111633 username hashtadani3 111633 mac 111633 bytes_out 0 111633 bytes_in 0 111633 station_ip 5.202.58.39 111633 port 19 111633 unique_id port 111633 remote_ip 10.8.1.94 111639 username alihosseini1 111639 mac 111639 bytes_out 0 111639 bytes_in 0 111639 station_ip 5.120.156.185 111639 port 19 111639 unique_id port 111639 remote_ip 10.8.1.106 111641 username mahdiyehalizadeh 111641 mac 111641 bytes_out 0 111641 bytes_in 0 111641 station_ip 83.123.86.47 111641 port 46 111641 unique_id port 111641 remote_ip 10.8.0.82 111648 username ehsun 111648 mac 111648 bytes_out 0 111648 bytes_in 0 111648 station_ip 46.225.232.102 111648 port 49 111648 unique_id port 111648 remote_ip 10.8.0.162 111649 username aminvpn 111649 mac 111649 bytes_out 0 111649 bytes_in 0 111649 station_ip 37.129.15.27 111649 port 46 111649 unique_id port 111649 remote_ip 10.8.0.14 111652 username aminvpn 111652 mac 111652 bytes_out 0 111652 bytes_in 0 111652 station_ip 5.119.173.26 111652 port 32 111652 unique_id port 111652 remote_ip 10.8.0.14 111654 username zare 111654 mac 111654 bytes_out 0 111654 bytes_in 0 111654 station_ip 37.27.17.184 111654 port 34 111654 unique_id port 111654 remote_ip 10.8.0.18 111659 username zare 111659 mac 111659 bytes_out 0 111659 bytes_in 0 111659 station_ip 37.27.17.184 111659 port 46 111659 unique_id port 111659 remote_ip 10.8.0.18 111660 username aminvpn 111660 mac 111660 bytes_out 0 111660 bytes_in 0 111660 station_ip 37.129.15.27 111660 port 32 111660 unique_id port 111660 remote_ip 10.8.0.14 111663 username sedighe 111663 mac 111663 bytes_out 0 111663 bytes_in 0 111663 station_ip 37.129.180.76 111663 port 34 111663 unique_id port 111663 remote_ip 10.8.0.146 111664 username ehsun 111664 mac 111664 bytes_out 0 111664 bytes_in 0 111664 station_ip 46.225.232.102 111664 port 24 111664 unique_id port 111664 remote_ip 10.8.1.126 111672 username aminvpn 111672 mac 111672 bytes_out 0 111672 bytes_in 0 111672 station_ip 5.119.173.26 111672 port 46 111672 unique_id port 111672 remote_ip 10.8.0.14 111674 username ehsun 111674 mac 111674 bytes_out 0 111674 bytes_in 0 111674 station_ip 46.225.232.102 111674 port 32 111674 unique_id port 111674 remote_ip 10.8.0.162 111677 username zare 111677 mac 111677 bytes_out 0 111677 bytes_in 0 111677 station_ip 37.27.17.184 111677 port 32 111677 unique_id port 111677 remote_ip 10.8.0.18 111679 username zare 111679 mac 111679 bytes_out 0 111679 bytes_in 0 111679 station_ip 37.27.17.184 111679 port 46 111679 unique_id port 111679 remote_ip 10.8.0.18 111682 username hashtadani3 111682 mac 111682 bytes_out 0 111682 bytes_in 0 111682 station_ip 5.202.58.39 111682 port 49 111682 unique_id port 111682 remote_ip 10.8.0.154 111684 username tahmasebi 111684 mac 111684 bytes_out 154636 111684 bytes_in 135326 111684 station_ip 5.120.128.4 111684 port 19 111684 unique_id port 111684 remote_ip 10.8.1.90 111688 username aminvpn 111688 mac 111688 bytes_out 0 111688 bytes_in 0 111688 station_ip 5.119.173.26 111688 port 60 111688 unique_id port 111688 remote_ip 10.8.0.14 111644 station_ip 46.225.232.102 111644 port 19 111644 unique_id port 111644 remote_ip 10.8.1.126 111646 username aminvpn 111646 mac 111646 bytes_out 0 111646 bytes_in 0 111646 station_ip 31.59.35.83 111646 port 56 111646 unique_id port 111646 remote_ip 10.8.0.14 111653 username amir 111653 mac 111653 bytes_out 0 111653 bytes_in 0 111653 station_ip 46.225.213.183 111653 port 46 111653 unique_id port 111653 remote_ip 10.8.0.50 111655 username tahmasebi 111655 mac 111655 bytes_out 0 111655 bytes_in 0 111655 station_ip 5.120.128.4 111655 port 24 111655 unique_id port 111655 remote_ip 10.8.1.90 111656 username aminvpn 111656 mac 111656 bytes_out 10275 111656 bytes_in 17861 111656 station_ip 37.129.15.27 111656 port 32 111656 unique_id port 111656 remote_ip 10.8.0.14 111658 username sedighe 111658 mac 111658 bytes_out 0 111658 bytes_in 0 111658 station_ip 37.129.180.76 111658 port 60 111658 unique_id port 111658 remote_ip 10.8.0.146 111662 username ehsun 111662 mac 111662 bytes_out 0 111662 bytes_in 0 111662 station_ip 46.225.232.102 111662 port 32 111662 unique_id port 111662 remote_ip 10.8.0.162 111667 username zare 111667 mac 111667 bytes_out 0 111667 bytes_in 0 111667 station_ip 37.27.17.184 111667 port 32 111667 unique_id port 111667 remote_ip 10.8.0.18 111668 username ehsun 111668 mac 111668 bytes_out 0 111668 bytes_in 0 111668 station_ip 46.225.232.102 111668 port 32 111668 unique_id port 111668 remote_ip 10.8.0.162 111671 username aminvpn 111671 mac 111671 bytes_out 98552 111671 bytes_in 301046 111671 station_ip 31.59.35.83 111671 port 49 111671 unique_id port 111671 remote_ip 10.8.0.14 111675 username zare 111675 mac 111675 bytes_out 0 111675 bytes_in 0 111675 station_ip 37.27.17.184 111675 port 49 111675 unique_id port 111675 remote_ip 10.8.0.18 111676 username alihosseini1 111676 mac 111676 bytes_out 0 111676 bytes_in 0 111676 station_ip 5.120.156.185 111676 port 32 111676 unique_id port 111676 remote_ip 10.8.0.166 111678 username ehsun 111678 mac 111678 bytes_out 0 111678 bytes_in 0 111678 station_ip 46.225.232.102 111678 port 24 111678 unique_id port 111678 remote_ip 10.8.1.126 111681 username amir 111681 mac 111681 bytes_out 0 111681 bytes_in 0 111681 station_ip 46.225.213.183 111681 port 49 111681 unique_id port 111681 remote_ip 10.8.0.50 111683 username aminvpn 111683 mac 111683 bytes_out 164690 111683 bytes_in 1065291 111683 station_ip 31.59.35.83 111683 port 56 111683 unique_id port 111683 remote_ip 10.8.0.14 111685 username aminvpn 111685 mac 111685 bytes_out 0 111685 bytes_in 0 111685 station_ip 5.119.173.26 111685 port 49 111685 unique_id port 111685 remote_ip 10.8.0.14 111686 username aminvpn 111686 mac 111686 bytes_out 0 111686 bytes_in 0 111686 station_ip 5.119.173.26 111686 port 49 111686 unique_id port 111686 remote_ip 10.8.0.14 111689 username irannezhad 111689 mac 111689 bytes_out 0 111689 bytes_in 0 111689 station_ip 46.225.232.102 111689 port 60 111689 unique_id port 111689 remote_ip 10.8.0.182 111692 username tahmasebi 111692 mac 111692 bytes_out 0 111692 bytes_in 0 111692 station_ip 5.119.50.227 111692 port 49 111692 unique_id port 111692 remote_ip 10.8.0.42 111696 username zare 111696 mac 111696 bytes_out 0 111696 bytes_in 0 111696 station_ip 37.27.17.184 111696 port 60 111696 unique_id port 111696 remote_ip 10.8.0.18 111699 username hashtadani3 111699 mac 111670 bytes_in 0 111670 station_ip 37.27.17.184 111670 port 34 111670 unique_id port 111673 username aminvpn 111673 mac 111673 bytes_out 0 111673 bytes_in 0 111673 station_ip 5.119.173.26 111673 port 46 111673 unique_id port 111673 remote_ip 10.8.0.14 111680 username hashtadani3 111680 mac 111680 bytes_out 0 111680 bytes_in 0 111680 station_ip 5.202.58.39 111680 port 46 111680 unique_id port 111680 remote_ip 10.8.0.154 111687 username aminvpn 111687 mac 111687 bytes_out 0 111687 bytes_in 0 111687 station_ip 31.59.35.83 111687 port 59 111687 unique_id port 111687 remote_ip 10.8.0.14 111697 username aminvpn 111697 mac 111697 bytes_out 0 111697 bytes_in 0 111697 station_ip 5.119.173.26 111697 port 62 111697 unique_id port 111697 remote_ip 10.8.0.14 111701 username ehsun 111701 mac 111701 bytes_out 0 111701 bytes_in 0 111701 station_ip 46.225.232.102 111701 port 60 111701 unique_id port 111701 remote_ip 10.8.0.162 111705 username ahmadipour 111705 unique_id port 111705 terminate_cause Lost-Carrier 111705 bytes_out 181022 111705 bytes_in 1315941 111705 station_ip 113.203.68.19 111705 port 15729202 111705 nas_port_type Virtual 111705 remote_ip 5.5.5.43 111708 username hashtadani3 111708 mac 111708 bytes_out 0 111708 bytes_in 0 111708 station_ip 5.202.58.39 111708 port 59 111708 unique_id port 111708 remote_ip 10.8.0.154 111709 username hashtadani3 111709 mac 111709 bytes_out 0 111709 bytes_in 0 111709 station_ip 5.202.58.39 111709 port 59 111709 unique_id port 111709 remote_ip 10.8.0.154 111712 username aminvpn 111712 mac 111712 bytes_out 0 111712 bytes_in 0 111712 station_ip 5.119.173.26 111712 port 59 111712 unique_id port 111712 remote_ip 10.8.0.14 111715 username irannezhad 111715 mac 111715 bytes_out 0 111715 bytes_in 0 111715 station_ip 83.122.169.31 111715 port 49 111715 unique_id port 111715 remote_ip 10.8.0.182 111721 username tahmasebi 111721 mac 111721 bytes_out 0 111721 bytes_in 0 111721 station_ip 5.119.50.227 111721 port 46 111721 unique_id port 111721 remote_ip 10.8.0.42 111722 username malekpoir 111722 mac 111722 bytes_out 0 111722 bytes_in 0 111722 station_ip 5.119.201.117 111722 port 41 111722 unique_id port 111722 remote_ip 10.8.0.58 111732 username aminvpn 111732 mac 111732 bytes_out 0 111732 bytes_in 0 111732 station_ip 5.119.173.26 111732 port 55 111732 unique_id port 111732 remote_ip 10.8.0.14 111734 username mohammadjavad 111734 mac 111734 bytes_out 150283 111734 bytes_in 2203782 111734 station_ip 37.129.252.197 111734 port 55 111734 unique_id port 111734 remote_ip 10.8.0.142 111735 username aminvpn 111735 mac 111735 bytes_out 71022 111735 bytes_in 343210 111735 station_ip 31.59.35.83 111735 port 41 111735 unique_id port 111735 remote_ip 10.8.0.14 111743 username hashtadani3 111743 mac 111743 bytes_out 0 111743 bytes_in 0 111743 station_ip 5.202.58.39 111743 port 64 111743 unique_id port 111743 remote_ip 10.8.0.154 111745 username aminvpn 111745 mac 111745 bytes_out 104361 111745 bytes_in 976972 111745 station_ip 31.59.35.83 111745 port 41 111745 unique_id port 111745 remote_ip 10.8.0.14 111748 username rezasekonji 111748 mac 111748 bytes_out 2199 111748 bytes_in 4190 111748 station_ip 83.123.14.223 111748 port 41 111748 unique_id port 111748 remote_ip 10.8.0.130 111756 username malekpoir 111756 mac 111756 bytes_out 42067 111756 bytes_in 48718 111756 station_ip 5.119.201.117 111756 port 46 111756 unique_id port 111690 username irannezhad 111690 mac 111690 bytes_out 0 111690 bytes_in 0 111690 station_ip 37.129.163.155 111690 port 60 111690 unique_id port 111690 remote_ip 10.8.0.182 111691 username irannezhad 111691 mac 111691 bytes_out 0 111691 bytes_in 0 111691 station_ip 37.129.163.155 111691 port 60 111691 unique_id port 111691 remote_ip 10.8.0.182 111693 username zare 111693 mac 111693 bytes_out 0 111693 bytes_in 0 111693 station_ip 37.27.17.184 111693 port 46 111693 unique_id port 111693 remote_ip 10.8.0.18 111694 username zare 111694 mac 111694 bytes_out 0 111694 bytes_in 0 111694 station_ip 37.27.17.184 111694 port 60 111694 unique_id port 111694 remote_ip 10.8.0.18 111695 username aminvpn 111695 mac 111695 bytes_out 49614 111695 bytes_in 148786 111695 station_ip 31.59.35.83 111695 port 59 111695 unique_id port 111695 remote_ip 10.8.0.14 111698 username zare 111698 mac 111698 bytes_out 0 111698 bytes_in 0 111698 station_ip 37.27.17.184 111698 port 60 111698 unique_id port 111698 remote_ip 10.8.0.18 111700 username ehsun 111700 mac 111700 bytes_out 8977 111700 bytes_in 9582 111700 station_ip 46.225.232.102 111700 port 19 111700 unique_id port 111700 remote_ip 10.8.1.126 111707 username aminvpn 111707 mac 111707 bytes_out 0 111707 bytes_in 0 111707 station_ip 5.119.173.26 111707 port 49 111707 unique_id port 111707 remote_ip 10.8.0.14 111711 username ehsun 111711 mac 111711 bytes_out 0 111711 bytes_in 0 111711 station_ip 46.225.232.102 111711 port 63 111711 unique_id port 111711 remote_ip 10.8.0.162 111713 username farhad1 111713 mac 111713 bytes_out 0 111713 bytes_in 0 111713 station_ip 5.119.44.106 111713 port 55 111713 unique_id port 111718 username ehsun 111718 mac 111718 bytes_out 0 111718 bytes_in 0 111718 station_ip 46.225.232.102 111718 port 19 111718 unique_id port 111718 remote_ip 10.8.1.126 111724 username mehdizare 111724 mac 111724 bytes_out 0 111724 bytes_in 0 111724 station_ip 5.119.132.42 111724 port 61 111724 unique_id port 111724 remote_ip 10.8.0.90 111725 username aminvpn 111725 mac 111725 bytes_out 0 111725 bytes_in 0 111725 station_ip 31.59.35.83 111725 port 59 111725 unique_id port 111725 remote_ip 10.8.0.14 111727 username mehdizare 111727 mac 111727 bytes_out 22879 111727 bytes_in 39070 111727 station_ip 5.119.132.42 111727 port 41 111727 unique_id port 111727 remote_ip 10.8.0.90 111729 username hashtadani3 111729 mac 111729 bytes_out 0 111729 bytes_in 0 111729 station_ip 5.202.58.39 111729 port 55 111729 unique_id port 111729 remote_ip 10.8.0.154 111730 username aminvpn 111730 mac 111730 bytes_out 0 111730 bytes_in 0 111730 station_ip 31.59.35.83 111730 port 41 111730 unique_id port 111730 remote_ip 10.8.0.14 111733 username sabaghnezhad 111733 mac 111733 bytes_out 412145 111733 bytes_in 581286 111733 station_ip 83.122.56.40 111733 port 64 111733 unique_id port 111733 remote_ip 10.8.0.186 111736 username aminvpn 111736 mac 111736 bytes_out 0 111736 bytes_in 0 111736 station_ip 5.119.173.26 111736 port 64 111736 unique_id port 111736 remote_ip 10.8.0.14 111738 username hashtadani3 111738 mac 111738 bytes_out 0 111738 bytes_in 0 111738 station_ip 5.202.58.39 111738 port 19 111738 unique_id port 111738 remote_ip 10.8.1.94 111739 username hashtadani3 111739 mac 111739 bytes_out 0 111739 bytes_in 0 111739 station_ip 5.202.58.39 111739 port 64 111739 unique_id port 111699 bytes_out 0 111699 bytes_in 0 111699 station_ip 5.202.58.39 111699 port 56 111699 unique_id port 111699 remote_ip 10.8.0.154 111702 username zare 111702 kill_reason Maximum check online fails reached 111702 mac 111702 bytes_out 0 111702 bytes_in 0 111702 station_ip 37.27.17.184 111702 port 56 111702 unique_id port 111703 username irannezhad 111703 mac 111703 bytes_out 554553 111703 bytes_in 1883330 111703 station_ip 83.122.169.31 111703 port 49 111703 unique_id port 111703 remote_ip 10.8.0.182 111704 username irannezhad 111704 mac 111704 bytes_out 0 111704 bytes_in 0 111704 station_ip 83.122.169.31 111704 port 49 111704 unique_id port 111704 remote_ip 10.8.0.182 111706 username aminvpn 111706 mac 111706 bytes_out 66723 111706 bytes_in 326786 111706 station_ip 31.59.35.83 111706 port 59 111706 unique_id port 111706 remote_ip 10.8.0.14 111710 username aminvpn 111710 mac 111710 bytes_out 0 111710 bytes_in 0 111710 station_ip 31.59.35.83 111710 port 63 111710 unique_id port 111710 remote_ip 10.8.0.14 111714 username aminvpn 111714 mac 111714 bytes_out 0 111714 bytes_in 0 111714 station_ip 5.119.173.26 111714 port 55 111714 unique_id port 111714 remote_ip 10.8.0.14 111716 username ehsun 111716 mac 111716 bytes_out 0 111716 bytes_in 0 111716 station_ip 46.225.232.102 111716 port 63 111716 unique_id port 111716 remote_ip 10.8.0.162 111717 username malekpoir 111717 mac 111717 bytes_out 0 111717 bytes_in 0 111717 station_ip 5.119.201.117 111717 port 41 111717 unique_id port 111717 remote_ip 10.8.0.58 111719 username hashtadani3 111719 mac 111719 bytes_out 0 111719 bytes_in 0 111719 station_ip 5.202.58.39 111719 port 41 111719 unique_id port 111719 remote_ip 10.8.0.154 111720 username malekpoir 111720 mac 111720 bytes_out 0 111720 bytes_in 0 111720 station_ip 5.119.201.117 111720 port 55 111720 unique_id port 111720 remote_ip 10.8.0.58 111723 username hashtadani3 111723 mac 111723 bytes_out 0 111723 bytes_in 0 111723 station_ip 5.202.58.39 111723 port 41 111723 unique_id port 111723 remote_ip 10.8.0.154 111726 username irannezhad 111726 mac 111726 bytes_out 0 111726 bytes_in 0 111726 station_ip 83.122.169.31 111726 port 63 111726 unique_id port 111726 remote_ip 10.8.0.182 111728 username aminvpn 111728 mac 111728 bytes_out 0 111728 bytes_in 0 111728 station_ip 5.119.173.26 111728 port 65 111728 unique_id port 111728 remote_ip 10.8.0.14 111731 username amir 111731 mac 111731 bytes_out 70126 111731 bytes_in 418191 111731 station_ip 46.225.213.183 111731 port 62 111731 unique_id port 111731 remote_ip 10.8.0.50 111737 username alihosseini1 111737 kill_reason Another user logged on this global unique id 111737 mac 111737 bytes_out 0 111737 bytes_in 0 111737 station_ip 5.120.156.185 111737 port 32 111737 unique_id port 111737 remote_ip 10.8.0.166 111740 username rezasekonji 111740 mac 111740 bytes_out 584253 111740 bytes_in 2848468 111740 station_ip 83.123.14.223 111740 port 61 111740 unique_id port 111740 remote_ip 10.8.0.130 111742 username rezasekonji 111742 mac 111742 bytes_out 0 111742 bytes_in 0 111742 station_ip 83.123.14.223 111742 port 64 111742 unique_id port 111742 remote_ip 10.8.0.130 111750 username rezasekonji 111750 mac 111750 bytes_out 2079 111750 bytes_in 4115 111750 station_ip 83.123.14.223 111750 port 41 111750 unique_id port 111750 remote_ip 10.8.0.130 111751 username zare 111751 mac 111751 bytes_out 0 111751 bytes_in 0 111739 remote_ip 10.8.0.154 111741 username kamali1 111741 mac 111741 bytes_out 0 111741 bytes_in 0 111741 station_ip 5.119.200.157 111741 port 63 111741 unique_id port 111741 remote_ip 10.8.0.70 111744 username hashtadani3 111744 mac 111744 bytes_out 0 111744 bytes_in 0 111744 station_ip 5.202.58.39 111744 port 64 111744 unique_id port 111744 remote_ip 10.8.0.154 111746 username aminvpn 111746 mac 111746 bytes_out 0 111746 bytes_in 0 111746 station_ip 5.119.173.26 111746 port 64 111746 unique_id port 111746 remote_ip 10.8.0.14 111747 username rezasekonji 111747 mac 111747 bytes_out 2862 111747 bytes_in 4287 111747 station_ip 83.123.14.223 111747 port 63 111747 unique_id port 111747 remote_ip 10.8.0.130 111749 username mohammadmahdi 111749 mac 111749 bytes_out 0 111749 bytes_in 0 111749 station_ip 5.120.171.107 111749 port 61 111749 unique_id port 111749 remote_ip 10.8.0.54 111752 username aminvpn 111752 mac 111752 bytes_out 0 111752 bytes_in 0 111752 station_ip 31.59.35.83 111752 port 63 111752 unique_id port 111752 remote_ip 10.8.0.14 111753 username ehsun 111753 mac 111753 bytes_out 13942 111753 bytes_in 28878 111753 station_ip 46.225.232.102 111753 port 19 111753 unique_id port 111753 remote_ip 10.8.1.126 111754 username aminvpn 111754 mac 111754 bytes_out 0 111754 bytes_in 0 111754 station_ip 5.119.173.26 111754 port 41 111754 unique_id port 111754 remote_ip 10.8.0.14 111755 username rezasekonji 111755 mac 111755 bytes_out 2291 111755 bytes_in 4327 111755 station_ip 83.123.14.223 111755 port 61 111755 unique_id port 111755 remote_ip 10.8.0.130 111758 username aminvpn 111758 mac 111758 bytes_out 0 111758 bytes_in 0 111758 station_ip 5.119.173.26 111758 port 41 111758 unique_id port 111758 remote_ip 10.8.0.14 111759 username ehsun 111759 mac 111759 bytes_out 0 111759 bytes_in 0 111759 station_ip 46.225.232.102 111759 port 46 111759 unique_id port 111759 remote_ip 10.8.0.162 111761 username aminvpn 111761 mac 111761 bytes_out 0 111761 bytes_in 0 111761 station_ip 31.59.35.83 111761 port 63 111761 unique_id port 111761 remote_ip 10.8.0.14 111762 username amir 111762 mac 111762 bytes_out 105195 111762 bytes_in 535531 111762 station_ip 46.225.213.183 111762 port 65 111762 unique_id port 111762 remote_ip 10.8.0.50 111764 username hashtadani3 111764 mac 111764 bytes_out 0 111764 bytes_in 0 111764 station_ip 5.202.58.39 111764 port 19 111764 unique_id port 111764 remote_ip 10.8.1.94 111769 username rezasekonji 111769 mac 111769 bytes_out 2115 111769 bytes_in 4088 111769 station_ip 83.123.14.223 111769 port 41 111769 unique_id port 111769 remote_ip 10.8.0.130 111771 username aminvpn 111771 mac 111771 bytes_out 0 111771 bytes_in 0 111771 station_ip 31.59.35.83 111771 port 61 111771 unique_id port 111771 remote_ip 10.8.0.14 111774 username aminvpn 111774 mac 111774 bytes_out 0 111774 bytes_in 0 111774 station_ip 5.119.173.26 111774 port 41 111774 unique_id port 111774 remote_ip 10.8.0.14 111775 username rezasekonji 111775 mac 111775 bytes_out 0 111775 bytes_in 0 111775 station_ip 83.123.14.223 111775 port 41 111775 unique_id port 111775 remote_ip 10.8.0.130 111778 username hashtadani3 111778 mac 111778 bytes_out 0 111778 bytes_in 0 111778 station_ip 5.202.58.39 111778 port 19 111778 unique_id port 111778 remote_ip 10.8.1.94 111782 username ehsun 111782 mac 111782 bytes_out 0 111782 bytes_in 0 111751 station_ip 37.27.17.184 111751 port 60 111751 unique_id port 111751 remote_ip 10.8.0.18 111757 username alireza 111757 unique_id port 111757 terminate_cause User-Request 111757 bytes_out 1105411 111757 bytes_in 26565871 111757 station_ip 5.120.60.241 111757 port 15729204 111757 nas_port_type Virtual 111757 remote_ip 5.5.5.255 111760 username rezasekonji 111760 mac 111760 bytes_out 2235 111760 bytes_in 4269 111760 station_ip 83.123.14.223 111760 port 61 111760 unique_id port 111760 remote_ip 10.8.0.130 111763 username rezasekonji 111763 mac 111763 bytes_out 0 111763 bytes_in 0 111763 station_ip 83.123.14.223 111763 port 46 111763 unique_id port 111763 remote_ip 10.8.0.130 111766 username rezasekonji 111766 mac 111766 bytes_out 2185 111766 bytes_in 4221 111766 station_ip 83.123.14.223 111766 port 61 111766 unique_id port 111766 remote_ip 10.8.0.130 111770 username alihosseini1 111770 kill_reason Another user logged on this global unique id 111770 mac 111770 bytes_out 0 111770 bytes_in 0 111770 station_ip 5.120.156.185 111770 port 32 111770 unique_id port 111773 username alihosseini1 111773 mac 111773 bytes_out 0 111773 bytes_in 0 111773 station_ip 5.120.156.185 111773 port 32 111773 unique_id port 111776 username aminvpn 111776 mac 111776 bytes_out 0 111776 bytes_in 0 111776 station_ip 31.59.35.83 111776 port 32 111776 unique_id port 111776 remote_ip 10.8.0.14 111781 username rezasekonji 111781 mac 111781 bytes_out 3045 111781 bytes_in 9275 111781 station_ip 83.123.14.223 111781 port 32 111781 unique_id port 111781 remote_ip 10.8.0.130 111786 username musa 111786 kill_reason Another user logged on this global unique id 111786 mac 111786 bytes_out 0 111786 bytes_in 0 111786 station_ip 158.58.86.57 111786 port 52 111786 unique_id port 111786 remote_ip 10.8.0.6 111787 username rezasekonji 111787 mac 111787 bytes_out 0 111787 bytes_in 0 111787 station_ip 83.123.14.223 111787 port 62 111787 unique_id port 111787 remote_ip 10.8.0.130 111789 username aminvpn 111789 mac 111789 bytes_out 0 111789 bytes_in 0 111789 station_ip 5.119.173.26 111789 port 19 111789 unique_id port 111789 remote_ip 10.8.1.6 111792 username rezasekonji 111792 mac 111792 bytes_out 0 111792 bytes_in 0 111792 station_ip 83.123.14.223 111792 port 62 111792 unique_id port 111792 remote_ip 10.8.0.130 111794 username aminvpn 111794 mac 111794 bytes_out 45908 111794 bytes_in 175196 111794 station_ip 31.59.35.83 111794 port 41 111794 unique_id port 111794 remote_ip 10.8.0.14 111798 username rasoul56 111798 mac 111798 bytes_out 0 111798 bytes_in 0 111798 station_ip 83.123.119.85 111798 port 51 111798 unique_id port 111799 username aminvpn 111799 mac 111799 bytes_out 0 111799 bytes_in 0 111799 station_ip 5.119.173.26 111799 port 51 111799 unique_id port 111799 remote_ip 10.8.0.14 111801 username aminvpn 111801 mac 111801 bytes_out 0 111801 bytes_in 0 111801 station_ip 5.119.173.26 111801 port 51 111801 unique_id port 111801 remote_ip 10.8.0.14 111805 username ehsun 111805 mac 111805 bytes_out 0 111805 bytes_in 0 111805 station_ip 46.225.232.102 111805 port 62 111805 unique_id port 111805 remote_ip 10.8.0.162 111810 username aminvpn 111810 mac 111810 bytes_out 0 111810 bytes_in 0 111810 station_ip 5.119.173.26 111810 port 51 111810 unique_id port 111810 remote_ip 10.8.0.14 111813 username mahdiyehalizadeh 111813 mac 111813 bytes_out 672599 111813 bytes_in 9766079 111813 station_ip 113.203.14.64 111813 port 41 111756 remote_ip 10.8.0.58 111765 username aminvpn 111765 mac 111765 bytes_out 345337 111765 bytes_in 3829525 111765 station_ip 5.119.173.26 111765 port 41 111765 unique_id port 111765 remote_ip 10.8.0.14 111767 username aminvpn 111767 mac 111767 bytes_out 0 111767 bytes_in 0 111767 station_ip 5.119.173.26 111767 port 61 111767 unique_id port 111767 remote_ip 10.8.0.14 111768 username sabaghnezhad 111768 mac 111768 bytes_out 0 111768 bytes_in 0 111768 station_ip 83.122.56.40 111768 port 62 111768 unique_id port 111768 remote_ip 10.8.0.186 111772 username aminvpn 111772 mac 111772 bytes_out 0 111772 bytes_in 0 111772 station_ip 5.119.173.26 111772 port 41 111772 unique_id port 111772 remote_ip 10.8.0.14 111777 username aminvpn 111777 mac 111777 bytes_out 0 111777 bytes_in 0 111777 station_ip 5.119.173.26 111777 port 62 111777 unique_id port 111777 remote_ip 10.8.0.14 111779 username rezasekonji 111779 mac 111779 bytes_out 2305 111779 bytes_in 4402 111779 station_ip 83.123.14.223 111779 port 41 111779 unique_id port 111779 remote_ip 10.8.0.130 111780 username hashtadani3 111780 mac 111780 bytes_out 0 111780 bytes_in 0 111780 station_ip 5.202.58.39 111780 port 19 111780 unique_id port 111780 remote_ip 10.8.1.94 111785 username amir 111785 mac 111785 bytes_out 0 111785 bytes_in 0 111785 station_ip 46.225.213.183 111785 port 32 111785 unique_id port 111785 remote_ip 10.8.0.50 111788 username aminvpn 111788 mac 111788 bytes_out 0 111788 bytes_in 0 111788 station_ip 5.119.173.26 111788 port 19 111788 unique_id port 111788 remote_ip 10.8.1.6 111791 username aminvpn 111791 mac 111791 bytes_out 0 111791 bytes_in 0 111791 station_ip 5.119.173.26 111791 port 19 111791 unique_id port 111791 remote_ip 10.8.1.6 111793 username hashtadani3 111793 mac 111793 bytes_out 0 111793 bytes_in 0 111793 station_ip 5.202.58.39 111793 port 24 111793 unique_id port 111793 remote_ip 10.8.1.94 111795 username aminvpn 111795 mac 111795 bytes_out 0 111795 bytes_in 0 111795 station_ip 5.119.173.26 111795 port 62 111795 unique_id port 111795 remote_ip 10.8.0.14 111796 username aminvpn 111796 mac 111796 bytes_out 0 111796 bytes_in 0 111796 station_ip 5.119.173.26 111796 port 62 111796 unique_id port 111796 remote_ip 10.8.0.14 111803 username ehsun 111803 mac 111803 bytes_out 0 111803 bytes_in 0 111803 station_ip 46.225.232.102 111803 port 62 111803 unique_id port 111803 remote_ip 10.8.0.162 111806 username aminvpn 111806 mac 111806 bytes_out 0 111806 bytes_in 0 111806 station_ip 5.119.173.26 111806 port 51 111806 unique_id port 111806 remote_ip 10.8.0.14 111807 username sedighe 111807 mac 111807 bytes_out 105820 111807 bytes_in 292144 111807 station_ip 37.129.180.76 111807 port 63 111807 unique_id port 111807 remote_ip 10.8.0.146 111809 username hashtadani3 111809 mac 111809 bytes_out 0 111809 bytes_in 0 111809 station_ip 5.202.58.39 111809 port 24 111809 unique_id port 111809 remote_ip 10.8.1.94 111814 username hashtadani3 111814 mac 111814 bytes_out 0 111814 bytes_in 0 111814 station_ip 5.202.58.39 111814 port 24 111814 unique_id port 111814 remote_ip 10.8.1.94 111815 username aminvpn 111815 mac 111815 bytes_out 0 111815 bytes_in 0 111815 station_ip 5.119.173.26 111815 port 41 111815 unique_id port 111815 remote_ip 10.8.0.14 111820 username rezasekonji 111820 mac 111820 bytes_out 1864 111820 bytes_in 3908 111820 station_ip 83.123.14.223 111782 station_ip 46.225.232.102 111782 port 24 111782 unique_id port 111782 remote_ip 10.8.1.126 111783 username rezasekonji 111783 mac 111783 bytes_out 0 111783 bytes_in 0 111783 station_ip 83.123.14.223 111783 port 32 111783 unique_id port 111783 remote_ip 10.8.0.130 111784 username farhad1 111784 kill_reason Another user logged on this global unique id 111784 mac 111784 bytes_out 0 111784 bytes_in 0 111784 station_ip 5.120.54.200 111784 port 49 111784 unique_id port 111784 remote_ip 10.8.0.26 111790 username aminvpn 111790 mac 111790 bytes_out 0 111790 bytes_in 0 111790 station_ip 5.119.173.26 111790 port 19 111790 unique_id port 111790 remote_ip 10.8.1.6 111797 username aminvpn 111797 mac 111797 bytes_out 0 111797 bytes_in 0 111797 station_ip 5.119.173.26 111797 port 65 111797 unique_id port 111797 remote_ip 10.8.0.14 111800 username amir 111800 mac 111800 bytes_out 43637 111800 bytes_in 415489 111800 station_ip 46.225.213.183 111800 port 62 111800 unique_id port 111800 remote_ip 10.8.0.50 111802 username aminvpn 111802 mac 111802 bytes_out 0 111802 bytes_in 0 111802 station_ip 5.119.173.26 111802 port 51 111802 unique_id port 111802 remote_ip 10.8.0.14 111804 username rezasekonji 111804 mac 111804 bytes_out 3335 111804 bytes_in 12515 111804 station_ip 83.123.14.223 111804 port 51 111804 unique_id port 111804 remote_ip 10.8.0.130 111808 username aminvpn 111808 mac 111808 bytes_out 0 111808 bytes_in 0 111808 station_ip 5.119.173.26 111808 port 51 111808 unique_id port 111808 remote_ip 10.8.0.14 111811 username aminvpn 111811 mac 111811 bytes_out 0 111811 bytes_in 0 111811 station_ip 5.119.173.26 111811 port 51 111811 unique_id port 111811 remote_ip 10.8.0.14 111812 username aminvpn 111812 unique_id port 111812 terminate_cause Lost-Carrier 111812 bytes_out 4119797 111812 bytes_in 18213874 111812 station_ip 5.119.178.35 111812 port 15729208 111812 nas_port_type Virtual 111812 remote_ip 5.5.5.247 111816 username alireza 111816 unique_id port 111816 terminate_cause User-Request 111816 bytes_out 4763153 111816 bytes_in 99114162 111816 station_ip 5.120.60.241 111816 port 15729205 111816 nas_port_type Virtual 111816 remote_ip 5.5.5.255 111817 username hashtadani3 111817 mac 111817 bytes_out 0 111817 bytes_in 0 111817 station_ip 5.202.58.39 111817 port 24 111817 unique_id port 111817 remote_ip 10.8.1.94 111818 username ehsun 111818 mac 111818 bytes_out 0 111818 bytes_in 0 111818 station_ip 46.225.232.102 111818 port 51 111818 unique_id port 111818 remote_ip 10.8.0.162 111823 username rezasekonji 111823 mac 111823 bytes_out 0 111823 bytes_in 0 111823 station_ip 83.123.14.223 111823 port 41 111823 unique_id port 111823 remote_ip 10.8.0.130 111827 username morteza 111827 kill_reason Another user logged on this global unique id 111827 mac 111827 bytes_out 0 111827 bytes_in 0 111827 station_ip 37.129.213.114 111827 port 32 111827 unique_id port 111827 remote_ip 10.8.0.46 111829 username rezasekonji 111829 mac 111829 bytes_out 0 111829 bytes_in 0 111829 station_ip 83.123.14.223 111829 port 62 111829 unique_id port 111829 remote_ip 10.8.0.130 111840 username rezasekonji 111840 mac 111840 bytes_out 2748 111840 bytes_in 4715 111840 station_ip 83.123.14.223 111840 port 32 111840 unique_id port 111840 remote_ip 10.8.0.130 111843 username sedighe 111843 mac 111843 bytes_out 34674 111843 bytes_in 57299 111843 station_ip 83.122.240.231 111843 port 61 111843 unique_id port 111843 remote_ip 10.8.0.146 111845 username hashtadani3 111813 unique_id port 111813 remote_ip 10.8.0.82 111819 username sabaghnezhad 111819 mac 111819 bytes_out 500249 111819 bytes_in 1140498 111819 station_ip 83.122.56.40 111819 port 61 111819 unique_id port 111819 remote_ip 10.8.0.186 111821 username aminvpn 111821 unique_id port 111821 terminate_cause Lost-Carrier 111821 bytes_out 11695666 111821 bytes_in 61000360 111821 station_ip 31.59.35.83 111821 port 15729191 111821 nas_port_type Virtual 111821 remote_ip 5.5.5.251 111826 username rezasekonji 111826 mac 111826 bytes_out 2103 111826 bytes_in 4155 111826 station_ip 83.123.14.223 111826 port 41 111826 unique_id port 111826 remote_ip 10.8.0.130 111830 username hashtadani3 111830 mac 111830 bytes_out 27631 111830 bytes_in 155592 111830 station_ip 5.202.58.39 111830 port 63 111830 unique_id port 111830 remote_ip 10.8.0.154 111834 username morteza 111834 mac 111834 bytes_out 0 111834 bytes_in 0 111834 station_ip 37.129.213.114 111834 port 32 111834 unique_id port 111836 username amir 111836 mac 111836 bytes_out 711670 111836 bytes_in 6029744 111836 station_ip 46.225.213.183 111836 port 51 111836 unique_id port 111836 remote_ip 10.8.0.50 111837 username hashtadani3 111837 mac 111837 bytes_out 0 111837 bytes_in 0 111837 station_ip 5.202.58.39 111837 port 32 111837 unique_id port 111837 remote_ip 10.8.0.154 111838 username musa 111838 mac 111838 bytes_out 0 111838 bytes_in 0 111838 station_ip 158.58.86.57 111838 port 52 111838 unique_id port 111842 username rezasekonji 111842 mac 111842 bytes_out 0 111842 bytes_in 0 111842 station_ip 83.123.14.223 111842 port 51 111842 unique_id port 111842 remote_ip 10.8.0.130 111844 username aminvpn 111844 mac 111844 bytes_out 0 111844 bytes_in 0 111844 station_ip 5.119.173.26 111844 port 61 111844 unique_id port 111844 remote_ip 10.8.0.14 111847 username farhad1 111847 mac 111847 bytes_out 0 111847 bytes_in 0 111847 station_ip 5.120.54.200 111847 port 49 111847 unique_id port 111849 username rezasekonji 111849 mac 111849 bytes_out 0 111849 bytes_in 0 111849 station_ip 83.123.14.223 111849 port 49 111849 unique_id port 111849 remote_ip 10.8.0.130 111851 username rezasekonji 111851 mac 111851 bytes_out 0 111851 bytes_in 0 111851 station_ip 83.123.14.223 111851 port 49 111851 unique_id port 111851 remote_ip 10.8.0.130 111854 username hashtadani3 111854 mac 111854 bytes_out 0 111854 bytes_in 0 111854 station_ip 5.202.58.39 111854 port 25 111854 unique_id port 111854 remote_ip 10.8.1.94 111858 username zare 111858 kill_reason Another user logged on this global unique id 111858 mac 111858 bytes_out 0 111858 bytes_in 0 111858 station_ip 37.27.17.184 111858 port 60 111858 unique_id port 111858 remote_ip 10.8.0.18 111862 username aminvpn 111862 mac 111862 bytes_out 0 111862 bytes_in 0 111862 station_ip 5.119.173.26 111862 port 61 111862 unique_id port 111862 remote_ip 10.8.0.14 111864 username rezasekonji 111864 mac 111864 bytes_out 0 111864 bytes_in 0 111864 station_ip 83.123.14.223 111864 port 51 111864 unique_id port 111864 remote_ip 10.8.0.130 111868 username forozande 111868 mac 111868 bytes_out 0 111868 bytes_in 0 111868 station_ip 83.123.232.115 111868 port 46 111868 unique_id port 111868 remote_ip 10.8.0.74 111869 username hamid.e 111869 unique_id port 111869 terminate_cause User-Request 111869 bytes_out 5541104 111869 bytes_in 69681219 111869 station_ip 37.27.42.162 111869 port 15729207 111869 nas_port_type Virtual 111869 remote_ip 5.5.5.249 111820 port 41 111820 unique_id port 111820 remote_ip 10.8.0.130 111822 username sedighe 111822 mac 111822 bytes_out 35594 111822 bytes_in 36213 111822 station_ip 37.129.180.76 111822 port 62 111822 unique_id port 111822 remote_ip 10.8.0.146 111824 username aminvpn 111824 mac 111824 bytes_out 0 111824 bytes_in 0 111824 station_ip 5.119.173.26 111824 port 51 111824 unique_id port 111824 remote_ip 10.8.0.14 111825 username aminvpn 111825 mac 111825 bytes_out 0 111825 bytes_in 0 111825 station_ip 5.119.173.26 111825 port 51 111825 unique_id port 111825 remote_ip 10.8.0.14 111828 username amir 111828 mac 111828 bytes_out 54865 111828 bytes_in 397893 111828 station_ip 46.225.213.183 111828 port 51 111828 unique_id port 111828 remote_ip 10.8.0.50 111831 username rezasekonji 111831 mac 111831 bytes_out 2064 111831 bytes_in 4124 111831 station_ip 83.123.14.223 111831 port 62 111831 unique_id port 111831 remote_ip 10.8.0.130 111832 username aminvpn 111832 mac 111832 bytes_out 0 111832 bytes_in 0 111832 station_ip 5.119.173.26 111832 port 62 111832 unique_id port 111832 remote_ip 10.8.0.14 111833 username aminvpn 111833 mac 111833 bytes_out 0 111833 bytes_in 0 111833 station_ip 5.119.173.26 111833 port 62 111833 unique_id port 111833 remote_ip 10.8.0.14 111835 username rezasekonji 111835 mac 111835 bytes_out 1931 111835 bytes_in 3983 111835 station_ip 83.123.14.223 111835 port 63 111835 unique_id port 111835 remote_ip 10.8.0.130 111839 username morteza 111839 mac 111839 bytes_out 147377 111839 bytes_in 2949422 111839 station_ip 37.129.213.114 111839 port 62 111839 unique_id port 111839 remote_ip 10.8.0.46 111841 username aminvpn 111841 mac 111841 bytes_out 0 111841 bytes_in 0 111841 station_ip 5.119.173.26 111841 port 51 111841 unique_id port 111841 remote_ip 10.8.0.14 111855 username amir 111855 mac 111855 bytes_out 0 111855 bytes_in 0 111855 station_ip 46.225.213.183 111855 port 52 111855 unique_id port 111855 remote_ip 10.8.0.50 111856 username aminvpn 111856 mac 111856 bytes_out 0 111856 bytes_in 0 111856 station_ip 37.129.254.196 111856 port 51 111856 unique_id port 111856 remote_ip 10.8.0.14 111860 username malekpoir 111860 mac 111860 bytes_out 0 111860 bytes_in 0 111860 station_ip 5.119.201.117 111860 port 61 111860 unique_id port 111860 remote_ip 10.8.0.58 111865 username sabaghnezhad 111865 mac 111865 bytes_out 585093 111865 bytes_in 1956513 111865 station_ip 83.122.56.40 111865 port 24 111865 unique_id port 111865 remote_ip 10.8.1.130 111866 username aminvpn 111866 mac 111866 bytes_out 0 111866 bytes_in 0 111866 station_ip 37.129.254.196 111866 port 52 111866 unique_id port 111866 remote_ip 10.8.0.14 111870 username aminvpn 111870 unique_id port 111870 terminate_cause Lost-Carrier 111870 bytes_out 1237702 111870 bytes_in 11084092 111870 station_ip 5.119.173.26 111870 port 15729206 111870 nas_port_type Virtual 111870 remote_ip 5.5.5.253 111871 username hashtadani3 111871 mac 111871 bytes_out 0 111871 bytes_in 0 111871 station_ip 5.202.58.39 111871 port 24 111871 unique_id port 111871 remote_ip 10.8.1.94 111873 username aminvpn 111873 mac 111873 bytes_out 0 111873 bytes_in 0 111873 station_ip 37.129.254.196 111873 port 52 111873 unique_id port 111873 remote_ip 10.8.0.14 111875 username aminvpn 111875 mac 111875 bytes_out 0 111875 bytes_in 0 111875 station_ip 37.129.254.196 111875 port 52 111875 unique_id port 111875 remote_ip 10.8.0.14 111845 mac 111845 bytes_out 0 111845 bytes_in 0 111845 station_ip 5.202.58.39 111845 port 52 111845 unique_id port 111845 remote_ip 10.8.0.154 111846 username malekpoir 111846 mac 111846 bytes_out 0 111846 bytes_in 0 111846 station_ip 5.119.201.117 111846 port 46 111846 unique_id port 111846 remote_ip 10.8.0.58 111848 username hashtadani3 111848 mac 111848 bytes_out 0 111848 bytes_in 0 111848 station_ip 5.202.58.39 111848 port 46 111848 unique_id port 111848 remote_ip 10.8.0.154 111850 username aminvpn 111850 mac 111850 bytes_out 0 111850 bytes_in 0 111850 station_ip 5.119.173.26 111850 port 63 111850 unique_id port 111850 remote_ip 10.8.0.14 111852 username sedighe 111852 mac 111852 bytes_out 0 111852 bytes_in 0 111852 station_ip 83.123.224.20 111852 port 51 111852 unique_id port 111852 remote_ip 10.8.0.146 111853 username aminvpn 111853 mac 111853 bytes_out 0 111853 bytes_in 0 111853 station_ip 5.119.173.26 111853 port 51 111853 unique_id port 111853 remote_ip 10.8.0.14 111857 username aminvpn 111857 mac 111857 bytes_out 0 111857 bytes_in 0 111857 station_ip 5.119.173.26 111857 port 52 111857 unique_id port 111857 remote_ip 10.8.0.14 111859 username jamali 111859 kill_reason Another user logged on this global unique id 111859 mac 111859 bytes_out 0 111859 bytes_in 0 111859 station_ip 5.119.87.121 111859 port 64 111859 unique_id port 111859 remote_ip 10.8.0.150 111861 username aminvpn 111861 mac 111861 bytes_out 0 111861 bytes_in 0 111861 station_ip 37.129.254.196 111861 port 52 111861 unique_id port 111861 remote_ip 10.8.0.14 111863 username hashtadani3 111863 mac 111863 bytes_out 0 111863 bytes_in 0 111863 station_ip 5.202.58.39 111863 port 25 111863 unique_id port 111863 remote_ip 10.8.1.94 111867 username aminvpn 111867 mac 111867 bytes_out 0 111867 bytes_in 0 111867 station_ip 5.119.173.26 111867 port 66 111867 unique_id port 111867 remote_ip 10.8.0.14 111872 username aminvpn 111872 unique_id port 111872 terminate_cause Lost-Carrier 111872 bytes_out 2929730 111872 bytes_in 122762135 111872 station_ip 5.119.178.35 111872 port 15729209 111872 nas_port_type Virtual 111872 remote_ip 5.5.5.255 111874 username aminvpn 111874 mac 111874 bytes_out 0 111874 bytes_in 0 111874 station_ip 5.120.4.224 111874 port 66 111874 unique_id port 111874 remote_ip 10.8.0.14 111876 username aminvpn 111876 mac 111876 bytes_out 0 111876 bytes_in 0 111876 station_ip 5.120.4.224 111876 port 66 111876 unique_id port 111876 remote_ip 10.8.0.14 111877 username aminvpn 111877 mac 111877 bytes_out 0 111877 bytes_in 0 111877 station_ip 37.129.254.196 111877 port 52 111877 unique_id port 111877 remote_ip 10.8.0.14 111882 username zare 111882 mac 111882 bytes_out 0 111882 bytes_in 0 111882 station_ip 37.27.17.184 111882 port 60 111882 unique_id port 111882 remote_ip 10.8.0.18 111885 username aminvpn 111885 mac 111885 bytes_out 0 111885 bytes_in 0 111885 station_ip 37.129.254.196 111885 port 52 111885 unique_id port 111885 remote_ip 10.8.0.14 111889 username hashtadani3 111889 mac 111889 bytes_out 0 111889 bytes_in 0 111889 station_ip 37.129.28.122 111889 port 25 111889 unique_id port 111889 remote_ip 10.8.1.94 111892 username hashtadani3 111892 kill_reason Maximum check online fails reached 111892 mac 111892 bytes_out 0 111892 bytes_in 0 111892 station_ip 5.202.58.39 111892 port 24 111892 unique_id port 111899 username hashtadani3 111899 mac 111899 bytes_out 0 111878 username aminvpn 111878 mac 111878 bytes_out 0 111878 bytes_in 0 111878 station_ip 5.120.4.224 111878 port 68 111878 unique_id port 111878 remote_ip 10.8.0.14 111880 username zare 111880 mac 111880 bytes_out 0 111880 bytes_in 0 111880 station_ip 37.27.17.184 111880 port 60 111880 unique_id port 111880 remote_ip 10.8.0.18 111881 username zare 111881 mac 111881 bytes_out 0 111881 bytes_in 0 111881 station_ip 37.27.17.184 111881 port 60 111881 unique_id port 111881 remote_ip 10.8.0.18 111883 username rezasekonji 111883 mac 111883 bytes_out 0 111883 bytes_in 0 111883 station_ip 83.123.14.223 111883 port 46 111883 unique_id port 111883 remote_ip 10.8.0.130 111886 username hashtadani3 111886 mac 111886 bytes_out 0 111886 bytes_in 0 111886 station_ip 5.202.58.39 111886 port 68 111886 unique_id port 111886 remote_ip 10.8.0.154 111891 username hashtadani3 111891 mac 111891 bytes_out 0 111891 bytes_in 0 111891 station_ip 37.129.28.122 111891 port 68 111891 unique_id port 111891 remote_ip 10.8.0.154 111893 username zare 111893 kill_reason Maximum check online fails reached 111893 mac 111893 bytes_out 0 111893 bytes_in 0 111893 station_ip 37.27.17.184 111893 port 46 111893 unique_id port 111895 username hashtadani3 111895 mac 111895 bytes_out 0 111895 bytes_in 0 111895 station_ip 37.129.28.122 111895 port 68 111895 unique_id port 111895 remote_ip 10.8.0.154 111896 username mahdiyehalizadeh 111896 mac 111896 bytes_out 0 111896 bytes_in 0 111896 station_ip 37.129.78.167 111896 port 60 111896 unique_id port 111896 remote_ip 10.8.0.82 111898 username hashtadani3 111898 mac 111898 bytes_out 0 111898 bytes_in 0 111898 station_ip 37.129.28.122 111898 port 60 111898 unique_id port 111898 remote_ip 10.8.0.154 111900 username hashtadani3 111900 mac 111900 bytes_out 0 111900 bytes_in 0 111900 station_ip 37.129.28.122 111900 port 68 111900 unique_id port 111900 remote_ip 10.8.0.154 111901 username hashtadani3 111901 mac 111901 bytes_out 0 111901 bytes_in 0 111901 station_ip 37.129.28.122 111901 port 69 111901 unique_id port 111901 remote_ip 10.8.0.154 111903 username hashtadani3 111903 mac 111903 bytes_out 0 111903 bytes_in 0 111903 station_ip 37.129.28.122 111903 port 69 111903 unique_id port 111903 remote_ip 10.8.0.154 111906 username irannezhad 111906 mac 111906 bytes_out 0 111906 bytes_in 0 111906 station_ip 83.122.184.11 111906 port 63 111906 unique_id port 111906 remote_ip 10.8.0.182 111907 username irannezhad 111907 mac 111907 bytes_out 0 111907 bytes_in 0 111907 station_ip 83.122.184.11 111907 port 52 111907 unique_id port 111907 remote_ip 10.8.0.182 111911 username hashtadani3 111911 mac 111911 bytes_out 0 111911 bytes_in 0 111911 station_ip 37.129.28.122 111911 port 63 111911 unique_id port 111911 remote_ip 10.8.0.154 111918 username hashtadani3 111918 mac 111918 bytes_out 0 111918 bytes_in 0 111918 station_ip 37.129.28.122 111918 port 63 111918 unique_id port 111918 remote_ip 10.8.0.154 111924 username hashtadani3 111924 mac 111924 bytes_out 0 111924 bytes_in 0 111924 station_ip 37.129.28.122 111924 port 61 111924 unique_id port 111924 remote_ip 10.8.0.154 111925 username irannezhad 111925 mac 111925 bytes_out 0 111925 bytes_in 0 111925 station_ip 83.122.184.11 111925 port 63 111925 unique_id port 111925 remote_ip 10.8.0.182 111928 username irannezhad 111928 mac 111928 bytes_out 0 111928 bytes_in 0 111879 username zare 111879 mac 111879 bytes_out 0 111879 bytes_in 0 111879 station_ip 37.27.17.184 111879 port 60 111879 unique_id port 111884 username avaanna 111884 kill_reason Another user logged on this global unique id 111884 mac 111884 bytes_out 0 111884 bytes_in 0 111884 station_ip 83.122.223.50 111884 port 62 111884 unique_id port 111884 remote_ip 10.8.0.98 111887 username aminvpn 111887 mac 111887 bytes_out 0 111887 bytes_in 0 111887 station_ip 5.120.4.224 111887 port 69 111887 unique_id port 111887 remote_ip 10.8.0.14 111888 username aminvpn 111888 mac 111888 bytes_out 0 111888 bytes_in 0 111888 station_ip 5.120.4.224 111888 port 52 111888 unique_id port 111888 remote_ip 10.8.0.14 111890 username hashtadani3 111890 mac 111890 bytes_out 0 111890 bytes_in 0 111890 station_ip 37.129.28.122 111890 port 68 111890 unique_id port 111890 remote_ip 10.8.0.154 111894 username hashtadani3 111894 mac 111894 bytes_out 0 111894 bytes_in 0 111894 station_ip 37.129.28.122 111894 port 68 111894 unique_id port 111894 remote_ip 10.8.0.154 111897 username hashtadani3 111897 mac 111897 bytes_out 0 111897 bytes_in 0 111897 station_ip 37.129.28.122 111897 port 68 111897 unique_id port 111897 remote_ip 10.8.0.154 111902 username hashtadani3 111902 mac 111902 bytes_out 0 111902 bytes_in 0 111902 station_ip 37.129.28.122 111902 port 69 111902 unique_id port 111902 remote_ip 10.8.0.154 111908 username hashtadani3 111908 mac 111908 bytes_out 0 111908 bytes_in 0 111908 station_ip 37.129.28.122 111908 port 69 111908 unique_id port 111908 remote_ip 10.8.0.154 111910 username aminvpn 111910 mac 111910 bytes_out 0 111910 bytes_in 0 111910 station_ip 5.120.4.224 111910 port 70 111910 unique_id port 111910 remote_ip 10.8.0.14 111913 username hashtadani3 111913 mac 111913 bytes_out 0 111913 bytes_in 0 111913 station_ip 37.129.28.122 111913 port 63 111913 unique_id port 111913 remote_ip 10.8.0.154 111916 username hashtadani3 111916 mac 111916 bytes_out 0 111916 bytes_in 0 111916 station_ip 37.129.28.122 111916 port 63 111916 unique_id port 111916 remote_ip 10.8.0.154 111917 username hashtadani3 111917 mac 111917 bytes_out 0 111917 bytes_in 0 111917 station_ip 37.129.28.122 111917 port 25 111917 unique_id port 111917 remote_ip 10.8.1.94 111919 username sabaghnezhad 111919 mac 111919 bytes_out 0 111919 bytes_in 0 111919 station_ip 83.122.56.40 111919 port 61 111919 unique_id port 111919 remote_ip 10.8.0.186 111921 username hashtadani3 111921 mac 111921 bytes_out 0 111921 bytes_in 0 111921 station_ip 37.129.28.122 111921 port 25 111921 unique_id port 111921 remote_ip 10.8.1.94 111922 username hashtadani3 111922 mac 111922 bytes_out 0 111922 bytes_in 0 111922 station_ip 37.129.28.122 111922 port 61 111922 unique_id port 111922 remote_ip 10.8.0.154 111923 username hashtadani3 111923 mac 111923 bytes_out 0 111923 bytes_in 0 111923 station_ip 37.129.28.122 111923 port 61 111923 unique_id port 111923 remote_ip 10.8.0.154 111926 username irannezhad 111926 mac 111926 bytes_out 0 111926 bytes_in 0 111926 station_ip 83.122.184.11 111926 port 61 111926 unique_id port 111926 remote_ip 10.8.0.182 111929 username mohammadmahdi 111929 mac 111929 bytes_out 0 111929 bytes_in 0 111929 station_ip 5.120.171.107 111929 port 67 111929 unique_id port 111930 username sedighe 111930 mac 111930 bytes_out 0 111930 bytes_in 0 111930 station_ip 83.123.224.20 111899 bytes_in 0 111899 station_ip 37.129.28.122 111899 port 60 111899 unique_id port 111899 remote_ip 10.8.0.154 111904 username hashtadani3 111904 mac 111904 bytes_out 0 111904 bytes_in 0 111904 station_ip 37.129.28.122 111904 port 69 111904 unique_id port 111904 remote_ip 10.8.0.154 111905 username aminvpn 111905 mac 111905 bytes_out 0 111905 bytes_in 0 111905 station_ip 37.129.254.196 111905 port 52 111905 unique_id port 111905 remote_ip 10.8.0.14 111909 username amir 111909 mac 111909 bytes_out 0 111909 bytes_in 0 111909 station_ip 46.225.213.183 111909 port 66 111909 unique_id port 111909 remote_ip 10.8.0.50 111912 username mahdiyehalizadeh 111912 mac 111912 bytes_out 0 111912 bytes_in 0 111912 station_ip 37.129.78.167 111912 port 60 111912 unique_id port 111912 remote_ip 10.8.0.82 111914 username mohammadmahdi 111914 kill_reason Another user logged on this global unique id 111914 mac 111914 bytes_out 0 111914 bytes_in 0 111914 station_ip 5.120.171.107 111914 port 67 111914 unique_id port 111914 remote_ip 10.8.0.54 111915 username hashtadani3 111915 mac 111915 bytes_out 0 111915 bytes_in 0 111915 station_ip 37.129.28.122 111915 port 60 111915 unique_id port 111915 remote_ip 10.8.0.154 111920 username hashtadani3 111920 mac 111920 bytes_out 0 111920 bytes_in 0 111920 station_ip 37.129.28.122 111920 port 63 111920 unique_id port 111920 remote_ip 10.8.0.154 111927 username mahdixz 111927 unique_id port 111927 terminate_cause User-Request 111927 bytes_out 471697 111927 bytes_in 9813474 111927 station_ip 151.235.84.86 111927 port 15729211 111927 nas_port_type Virtual 111927 remote_ip 5.5.5.255 111931 username hashtadani3 111931 mac 111931 bytes_out 0 111931 bytes_in 0 111931 station_ip 37.129.28.122 111931 port 69 111931 unique_id port 111931 remote_ip 10.8.0.154 111936 username sedighe 111936 mac 111936 bytes_out 0 111936 bytes_in 0 111936 station_ip 83.123.224.20 111936 port 61 111936 unique_id port 111936 remote_ip 10.8.0.146 111940 username irannezhad 111940 mac 111940 bytes_out 0 111940 bytes_in 0 111940 station_ip 83.122.184.11 111940 port 62 111940 unique_id port 111940 remote_ip 10.8.0.182 111943 username hashtadani3 111943 mac 111943 bytes_out 0 111943 bytes_in 0 111943 station_ip 37.129.28.122 111943 port 61 111943 unique_id port 111943 remote_ip 10.8.0.154 111944 username houshang 111944 kill_reason Another user logged on this global unique id 111944 mac 111944 bytes_out 0 111944 bytes_in 0 111944 station_ip 5.119.54.14 111944 port 49 111944 unique_id port 111944 remote_ip 10.8.0.22 111946 username zare 111946 kill_reason Maximum check online fails reached 111946 mac 111946 bytes_out 0 111946 bytes_in 0 111946 station_ip 37.27.17.184 111946 port 25 111946 unique_id port 111947 username hashtadani3 111947 mac 111947 bytes_out 12454 111947 bytes_in 27828 111947 station_ip 37.129.28.122 111947 port 26 111947 unique_id port 111947 remote_ip 10.8.1.94 111952 username houshang 111952 kill_reason Another user logged on this global unique id 111952 mac 111952 bytes_out 0 111952 bytes_in 0 111952 station_ip 5.119.54.14 111952 port 49 111952 unique_id port 111953 username hashtadani3 111953 mac 111953 bytes_out 0 111953 bytes_in 0 111953 station_ip 37.129.28.122 111953 port 63 111953 unique_id port 111953 remote_ip 10.8.0.154 111954 username amir 111954 mac 111954 bytes_out 0 111954 bytes_in 0 111954 station_ip 46.225.213.183 111954 port 62 111954 unique_id port 111954 remote_ip 10.8.0.50 111956 username irannezhad 111928 station_ip 83.122.184.11 111928 port 61 111928 unique_id port 111928 remote_ip 10.8.0.182 111933 username irannezhad 111933 mac 111933 bytes_out 0 111933 bytes_in 0 111933 station_ip 83.122.184.11 111933 port 63 111933 unique_id port 111933 remote_ip 10.8.0.182 111934 username amir 111934 mac 111934 bytes_out 73200 111934 bytes_in 315638 111934 station_ip 46.225.213.183 111934 port 67 111934 unique_id port 111934 remote_ip 10.8.0.50 111937 username avaanna 111937 mac 111937 bytes_out 0 111937 bytes_in 0 111937 station_ip 83.122.223.50 111937 port 62 111937 unique_id port 111938 username irannezhad 111938 mac 111938 bytes_out 0 111938 bytes_in 0 111938 station_ip 83.122.184.11 111938 port 25 111938 unique_id port 111938 remote_ip 10.8.1.134 111941 username hashtadani3 111941 mac 111941 bytes_out 0 111941 bytes_in 0 111941 station_ip 37.129.28.122 111941 port 61 111941 unique_id port 111941 remote_ip 10.8.0.154 111942 username zare 111942 mac 111942 bytes_out 0 111942 bytes_in 0 111942 station_ip 37.27.17.184 111942 port 25 111942 unique_id port 111942 remote_ip 10.8.1.58 111945 username irannezhad 111945 mac 111945 bytes_out 0 111945 bytes_in 0 111945 station_ip 83.122.184.11 111945 port 28 111945 unique_id port 111945 remote_ip 10.8.1.134 111949 username irannezhad 111949 mac 111949 bytes_out 0 111949 bytes_in 0 111949 station_ip 83.122.184.11 111949 port 26 111949 unique_id port 111949 remote_ip 10.8.1.134 111957 username irannezhad 111957 mac 111957 bytes_out 0 111957 bytes_in 0 111957 station_ip 83.122.184.11 111957 port 62 111957 unique_id port 111957 remote_ip 10.8.0.182 111959 username hashtadani3 111959 mac 111959 bytes_out 0 111959 bytes_in 0 111959 station_ip 37.129.28.122 111959 port 28 111959 unique_id port 111959 remote_ip 10.8.1.94 111963 username naeimeh 111963 kill_reason Another user logged on this global unique id 111963 mac 111963 bytes_out 0 111963 bytes_in 0 111963 station_ip 83.122.143.128 111963 port 60 111963 unique_id port 111963 remote_ip 10.8.0.78 111964 username hashtadani3 111964 mac 111964 bytes_out 0 111964 bytes_in 0 111964 station_ip 37.129.28.122 111964 port 62 111964 unique_id port 111964 remote_ip 10.8.0.154 111966 username zare 111966 mac 111966 bytes_out 4407711 111966 bytes_in 41645576 111966 station_ip 37.27.17.184 111966 port 27 111966 unique_id port 111966 remote_ip 10.8.1.58 111970 username hashtadani3 111970 mac 111970 bytes_out 0 111970 bytes_in 0 111970 station_ip 37.129.28.122 111970 port 62 111970 unique_id port 111970 remote_ip 10.8.0.154 111973 username hashtadani3 111973 mac 111973 bytes_out 0 111973 bytes_in 0 111973 station_ip 37.129.28.122 111973 port 62 111973 unique_id port 111973 remote_ip 10.8.0.154 111978 username hashtadani3 111978 mac 111978 bytes_out 0 111978 bytes_in 0 111978 station_ip 37.129.28.122 111978 port 62 111978 unique_id port 111978 remote_ip 10.8.0.154 111984 username hashtadani3 111984 mac 111984 bytes_out 0 111984 bytes_in 0 111984 station_ip 37.129.28.122 111984 port 29 111984 unique_id port 111984 remote_ip 10.8.1.94 111987 username rasoul56 111987 mac 111987 bytes_out 0 111987 bytes_in 0 111987 station_ip 83.123.119.85 111987 port 62 111987 unique_id port 111987 remote_ip 10.8.0.174 112000 username sabaghnezhad 112000 mac 112000 bytes_out 0 112000 bytes_in 0 112000 station_ip 37.129.185.10 112000 port 66 112000 unique_id port 111930 port 49 111930 unique_id port 111930 remote_ip 10.8.0.146 111932 username irannezhad 111932 mac 111932 bytes_out 0 111932 bytes_in 0 111932 station_ip 83.122.184.11 111932 port 63 111932 unique_id port 111932 remote_ip 10.8.0.182 111935 username mahdiyehalizadeh 111935 mac 111935 bytes_out 0 111935 bytes_in 0 111935 station_ip 37.129.78.167 111935 port 60 111935 unique_id port 111935 remote_ip 10.8.0.82 111939 username zare 111939 mac 111939 bytes_out 1609726 111939 bytes_in 35692248 111939 station_ip 37.27.17.184 111939 port 26 111939 unique_id port 111939 remote_ip 10.8.1.58 111948 username irannezhad 111948 mac 111948 bytes_out 0 111948 bytes_in 0 111948 station_ip 83.122.184.11 111948 port 28 111948 unique_id port 111948 remote_ip 10.8.1.134 111950 username irannezhad 111950 mac 111950 bytes_out 0 111950 bytes_in 0 111950 station_ip 83.122.184.11 111950 port 61 111950 unique_id port 111950 remote_ip 10.8.0.182 111951 username irannezhad 111951 mac 111951 bytes_out 0 111951 bytes_in 0 111951 station_ip 83.122.184.11 111951 port 26 111951 unique_id port 111951 remote_ip 10.8.1.134 111955 username hashtadani3 111955 mac 111955 bytes_out 0 111955 bytes_in 0 111955 station_ip 37.129.28.122 111955 port 28 111955 unique_id port 111955 remote_ip 10.8.1.94 111958 username hashtadani3 111958 kill_reason Maximum check online fails reached 111958 mac 111958 bytes_out 0 111958 bytes_in 0 111958 station_ip 37.129.28.122 111958 port 26 111958 unique_id port 111961 username hashtadani3 111961 mac 111961 bytes_out 0 111961 bytes_in 0 111961 station_ip 37.129.28.122 111961 port 29 111961 unique_id port 111961 remote_ip 10.8.1.94 111962 username hashtadani3 111962 mac 111962 bytes_out 0 111962 bytes_in 0 111962 station_ip 37.129.28.122 111962 port 62 111962 unique_id port 111962 remote_ip 10.8.0.154 111965 username hashtadani3 111965 mac 111965 bytes_out 0 111965 bytes_in 0 111965 station_ip 37.129.28.122 111965 port 63 111965 unique_id port 111965 remote_ip 10.8.0.154 111967 username hashtadani3 111967 mac 111967 bytes_out 0 111967 bytes_in 0 111967 station_ip 37.129.28.122 111967 port 62 111967 unique_id port 111967 remote_ip 10.8.0.154 111968 username hashtadani3 111968 mac 111968 bytes_out 0 111968 bytes_in 0 111968 station_ip 37.129.28.122 111968 port 27 111968 unique_id port 111968 remote_ip 10.8.1.94 111976 username zare 111976 mac 111976 bytes_out 0 111976 bytes_in 0 111976 station_ip 37.27.17.184 111976 port 27 111976 unique_id port 111976 remote_ip 10.8.1.58 111980 username rasoul56 111980 mac 111980 bytes_out 0 111980 bytes_in 0 111980 station_ip 83.123.119.85 111980 port 63 111980 unique_id port 111980 remote_ip 10.8.0.174 111981 username hashtadani3 111981 mac 111981 bytes_out 0 111981 bytes_in 0 111981 station_ip 37.129.28.122 111981 port 63 111981 unique_id port 111981 remote_ip 10.8.0.154 111983 username hashtadani3 111983 mac 111983 bytes_out 0 111983 bytes_in 0 111983 station_ip 37.129.28.122 111983 port 63 111983 unique_id port 111983 remote_ip 10.8.0.154 111986 username hashtadani3 111986 mac 111986 bytes_out 0 111986 bytes_in 0 111986 station_ip 37.129.28.122 111986 port 29 111986 unique_id port 111986 remote_ip 10.8.1.94 111988 username hashtadani3 111988 mac 111988 bytes_out 0 111988 bytes_in 0 111988 station_ip 37.129.28.122 111988 port 63 111988 unique_id port 111988 remote_ip 10.8.0.154 111989 username hashtadani3 111956 kill_reason Maximum check online fails reached 111956 mac 111956 bytes_out 0 111956 bytes_in 0 111956 station_ip 83.122.184.11 111956 port 61 111956 unique_id port 111960 username hashtadani3 111960 mac 111960 bytes_out 0 111960 bytes_in 0 111960 station_ip 37.129.28.122 111960 port 62 111960 unique_id port 111960 remote_ip 10.8.0.154 111969 username rasoul56 111969 mac 111969 bytes_out 0 111969 bytes_in 0 111969 station_ip 83.123.119.85 111969 port 65 111969 unique_id port 111969 remote_ip 10.8.0.174 111971 username hashtadani3 111971 mac 111971 bytes_out 0 111971 bytes_in 0 111971 station_ip 37.129.28.122 111971 port 62 111971 unique_id port 111971 remote_ip 10.8.0.154 111972 username zare 111972 mac 111972 bytes_out 0 111972 bytes_in 0 111972 station_ip 37.27.17.184 111972 port 29 111972 unique_id port 111972 remote_ip 10.8.1.58 111974 username hashtadani3 111974 mac 111974 bytes_out 0 111974 bytes_in 0 111974 station_ip 37.129.28.122 111974 port 62 111974 unique_id port 111974 remote_ip 10.8.0.154 111975 username hashtadani3 111975 mac 111975 bytes_out 0 111975 bytes_in 0 111975 station_ip 37.129.28.122 111975 port 62 111975 unique_id port 111975 remote_ip 10.8.0.154 111977 username alihosseini1 111977 mac 111977 bytes_out 0 111977 bytes_in 0 111977 station_ip 5.120.98.48 111977 port 68 111977 unique_id port 111977 remote_ip 10.8.0.166 111979 username hashtadani3 111979 mac 111979 bytes_out 0 111979 bytes_in 0 111979 station_ip 37.129.28.122 111979 port 62 111979 unique_id port 111979 remote_ip 10.8.0.154 111982 username houshang 111982 kill_reason Another user logged on this global unique id 111982 mac 111982 bytes_out 0 111982 bytes_in 0 111982 station_ip 5.119.54.14 111982 port 49 111982 unique_id port 111985 username hashtadani3 111985 mac 111985 bytes_out 0 111985 bytes_in 0 111985 station_ip 37.129.28.122 111985 port 63 111985 unique_id port 111985 remote_ip 10.8.0.154 111993 username hashtadani3 111993 mac 111993 bytes_out 0 111993 bytes_in 0 111993 station_ip 37.129.28.122 111993 port 62 111993 unique_id port 111993 remote_ip 10.8.0.154 111994 username hashtadani3 111994 mac 111994 bytes_out 0 111994 bytes_in 0 111994 station_ip 37.129.28.122 111994 port 49 111994 unique_id port 111994 remote_ip 10.8.0.154 111995 username hashtadani3 111995 mac 111995 bytes_out 0 111995 bytes_in 0 111995 station_ip 37.129.28.122 111995 port 62 111995 unique_id port 111995 remote_ip 10.8.0.154 111999 username hashtadani3 111999 mac 111999 bytes_out 0 111999 bytes_in 0 111999 station_ip 37.129.28.122 111999 port 62 111999 unique_id port 111999 remote_ip 10.8.0.154 112002 username sabaghnezhad 112002 mac 112002 bytes_out 0 112002 bytes_in 0 112002 station_ip 37.129.185.10 112002 port 62 112002 unique_id port 112002 remote_ip 10.8.0.186 112006 username aminvpn 112006 mac 112006 bytes_out 0 112006 bytes_in 0 112006 station_ip 37.129.254.196 112006 port 52 112006 unique_id port 112011 username zare 112011 kill_reason Maximum check online fails reached 112011 mac 112011 bytes_out 0 112011 bytes_in 0 112011 station_ip 37.27.17.184 112011 port 27 112011 unique_id port 112012 username amir 112012 mac 112012 bytes_out 0 112012 bytes_in 0 112012 station_ip 46.225.213.183 112012 port 52 112012 unique_id port 112012 remote_ip 10.8.0.50 112015 username aminvpn 112015 unique_id port 112015 terminate_cause Lost-Carrier 112015 bytes_out 826571 111989 mac 111989 bytes_out 0 111989 bytes_in 0 111989 station_ip 37.129.28.122 111989 port 62 111989 unique_id port 111989 remote_ip 10.8.0.154 111990 username hashtadani3 111990 mac 111990 bytes_out 0 111990 bytes_in 0 111990 station_ip 37.129.28.122 111990 port 62 111990 unique_id port 111990 remote_ip 10.8.0.154 111991 username hashtadani3 111991 mac 111991 bytes_out 0 111991 bytes_in 0 111991 station_ip 37.129.28.122 111991 port 62 111991 unique_id port 111991 remote_ip 10.8.0.154 111992 username houshang 111992 mac 111992 bytes_out 0 111992 bytes_in 0 111992 station_ip 5.119.54.14 111992 port 49 111992 unique_id port 111996 username aminvpn 111996 kill_reason Another user logged on this global unique id 111996 mac 111996 bytes_out 0 111996 bytes_in 0 111996 station_ip 37.129.254.196 111996 port 52 111996 unique_id port 111996 remote_ip 10.8.0.14 111997 username hashtadani3 111997 kill_reason Maximum number of concurrent logins reached 111997 mac 111997 bytes_out 0 111997 bytes_in 0 111997 station_ip 37.129.28.122 111997 port 63 111997 unique_id port 111998 username hashtadani3 111998 kill_reason Maximum check online fails reached 111998 mac 111998 bytes_out 0 111998 bytes_in 0 111998 station_ip 37.129.28.122 111998 port 30 111998 unique_id port 112005 username aminvpn 112005 unique_id port 112005 terminate_cause User-Request 112005 bytes_out 5792138 112005 bytes_in 160247612 112005 station_ip 5.120.4.224 112005 port 15729212 112005 nas_port_type Virtual 112005 remote_ip 5.5.5.254 112008 username zare 112008 mac 112008 bytes_out 78170 112008 bytes_in 70916 112008 station_ip 37.27.17.184 112008 port 27 112008 unique_id port 112008 remote_ip 10.8.1.58 112009 username alipour 112009 kill_reason Another user logged on this global unique id 112009 mac 112009 bytes_out 0 112009 bytes_in 0 112009 station_ip 83.123.217.110 112009 port 32 112009 unique_id port 112009 remote_ip 10.8.0.102 112010 username zare 112010 mac 112010 bytes_out 0 112010 bytes_in 0 112010 station_ip 37.27.17.184 112010 port 32 112010 unique_id port 112010 remote_ip 10.8.1.58 112013 username zare 112013 mac 112013 bytes_out 0 112013 bytes_in 0 112013 station_ip 37.27.17.184 112013 port 60 112013 unique_id port 112013 remote_ip 10.8.0.18 112014 username zare 112014 mac 112014 bytes_out 0 112014 bytes_in 0 112014 station_ip 37.27.17.184 112014 port 52 112014 unique_id port 112014 remote_ip 10.8.0.18 112018 username zare 112018 mac 112018 bytes_out 0 112018 bytes_in 0 112018 station_ip 37.27.17.184 112018 port 52 112018 unique_id port 112018 remote_ip 10.8.0.18 112019 username zare 112019 mac 112019 bytes_out 0 112019 bytes_in 0 112019 station_ip 37.27.17.184 112019 port 52 112019 unique_id port 112019 remote_ip 10.8.0.18 112020 username alihosseini1 112020 mac 112020 bytes_out 0 112020 bytes_in 0 112020 station_ip 5.120.98.48 112020 port 60 112020 unique_id port 112020 remote_ip 10.8.0.166 112024 username zare 112024 mac 112024 bytes_out 0 112024 bytes_in 0 112024 station_ip 37.27.17.184 112024 port 52 112024 unique_id port 112024 remote_ip 10.8.0.18 112026 username zare 112026 mac 112026 bytes_out 0 112026 bytes_in 0 112026 station_ip 37.27.17.184 112026 port 32 112026 unique_id port 112026 remote_ip 10.8.1.58 112028 username zare 112028 kill_reason Maximum check online fails reached 112028 mac 112028 bytes_out 0 112028 bytes_in 0 112028 station_ip 37.27.17.184 112028 port 60 112028 unique_id port 112029 username hashtadani3 112000 remote_ip 10.8.0.186 112001 username amir 112001 mac 112001 bytes_out 0 112001 bytes_in 0 112001 station_ip 46.225.213.183 112001 port 49 112001 unique_id port 112001 remote_ip 10.8.0.50 112003 username sobhan 112003 unique_id port 112003 terminate_cause User-Request 112003 bytes_out 1585376 112003 bytes_in 14570979 112003 station_ip 5.120.4.224 112003 port 15729213 112003 nas_port_type Virtual 112003 remote_ip 5.5.5.251 112004 username naeimeh 112004 mac 112004 bytes_out 0 112004 bytes_in 0 112004 station_ip 83.122.143.128 112004 port 60 112004 unique_id port 112007 username amin.saeedi 112007 unique_id port 112007 terminate_cause User-Request 112007 bytes_out 14412861 112007 bytes_in 426999497 112007 station_ip 31.56.222.3 112007 port 15729210 112007 nas_port_type Virtual 112007 remote_ip 5.5.5.252 112016 username malekpoir 112016 mac 112016 bytes_out 0 112016 bytes_in 0 112016 station_ip 5.119.201.117 112016 port 51 112016 unique_id port 112016 remote_ip 10.8.0.58 112017 username alihosseini1 112017 mac 112017 bytes_out 0 112017 bytes_in 0 112017 station_ip 5.120.98.48 112017 port 65 112017 unique_id port 112017 remote_ip 10.8.0.166 112021 username zare 112021 mac 112021 bytes_out 0 112021 bytes_in 0 112021 station_ip 37.27.17.184 112021 port 52 112021 unique_id port 112021 remote_ip 10.8.0.18 112023 username farhad1 112023 mac 112023 bytes_out 0 112023 bytes_in 0 112023 station_ip 5.119.164.217 112023 port 49 112023 unique_id port 112023 remote_ip 10.8.0.26 112027 username zare 112027 mac 112027 bytes_out 0 112027 bytes_in 0 112027 station_ip 37.27.17.184 112027 port 28 112027 unique_id port 112027 remote_ip 10.8.1.58 112034 username hashtadani3 112034 mac 112034 bytes_out 0 112034 bytes_in 0 112034 station_ip 37.129.28.122 112034 port 52 112034 unique_id port 112034 remote_ip 10.8.0.154 112035 username hashtadani3 112035 mac 112035 bytes_out 0 112035 bytes_in 0 112035 station_ip 37.129.28.122 112035 port 52 112035 unique_id port 112035 remote_ip 10.8.0.154 112041 username hashtadani3 112041 mac 112041 bytes_out 0 112041 bytes_in 0 112041 station_ip 37.129.28.122 112041 port 52 112041 unique_id port 112041 remote_ip 10.8.0.154 112043 username hashtadani3 112043 mac 112043 bytes_out 0 112043 bytes_in 0 112043 station_ip 37.129.28.122 112043 port 52 112043 unique_id port 112043 remote_ip 10.8.0.154 112044 username hashtadani3 112044 mac 112044 bytes_out 0 112044 bytes_in 0 112044 station_ip 37.129.28.122 112044 port 52 112044 unique_id port 112044 remote_ip 10.8.0.154 112047 username irannezhad 112047 mac 112047 bytes_out 0 112047 bytes_in 0 112047 station_ip 83.122.244.135 112047 port 29 112047 unique_id port 112047 remote_ip 10.8.1.134 112049 username zare 112049 mac 112049 bytes_out 0 112049 bytes_in 0 112049 station_ip 37.27.17.184 112049 port 29 112049 unique_id port 112049 remote_ip 10.8.1.58 112055 username farhad1 112055 kill_reason Another user logged on this global unique id 112055 mac 112055 bytes_out 0 112055 bytes_in 0 112055 station_ip 5.119.106.91 112055 port 55 112055 unique_id port 112055 remote_ip 10.8.0.26 112057 username hashtadani3 112057 kill_reason Another user logged on this global unique id 112057 mac 112057 bytes_out 0 112057 bytes_in 0 112057 station_ip 37.129.28.122 112057 port 62 112057 unique_id port 112057 remote_ip 10.8.0.154 112059 username mehdizare 112059 kill_reason Another user logged on this global unique id 112059 mac 112059 bytes_out 0 112059 bytes_in 0 112015 bytes_in 27071696 112015 station_ip 5.160.113.205 112015 port 15729215 112015 nas_port_type Virtual 112015 remote_ip 5.5.5.248 112022 username zare 112022 mac 112022 bytes_out 0 112022 bytes_in 0 112022 station_ip 37.27.17.184 112022 port 52 112022 unique_id port 112022 remote_ip 10.8.0.18 112025 username irannezhad 112025 mac 112025 bytes_out 0 112025 bytes_in 0 112025 station_ip 83.122.184.11 112025 port 28 112025 unique_id port 112025 remote_ip 10.8.1.134 112030 username zare 112030 mac 112030 bytes_out 0 112030 bytes_in 0 112030 station_ip 37.27.17.184 112030 port 28 112030 unique_id port 112030 remote_ip 10.8.1.58 112031 username farhad1 112031 mac 112031 bytes_out 0 112031 bytes_in 0 112031 station_ip 5.120.144.114 112031 port 62 112031 unique_id port 112031 remote_ip 10.8.0.26 112032 username zare 112032 mac 112032 bytes_out 0 112032 bytes_in 0 112032 station_ip 37.27.17.184 112032 port 62 112032 unique_id port 112032 remote_ip 10.8.0.18 112033 username zare 112033 mac 112033 bytes_out 0 112033 bytes_in 0 112033 station_ip 37.27.17.184 112033 port 62 112033 unique_id port 112033 remote_ip 10.8.0.18 112036 username zare 112036 mac 112036 bytes_out 0 112036 bytes_in 0 112036 station_ip 37.27.17.184 112036 port 28 112036 unique_id port 112036 remote_ip 10.8.1.58 112037 username jamali 112037 kill_reason Another user logged on this global unique id 112037 mac 112037 bytes_out 0 112037 bytes_in 0 112037 station_ip 5.119.87.121 112037 port 64 112037 unique_id port 112038 username rasoul56 112038 mac 112038 bytes_out 482988 112038 bytes_in 2608286 112038 station_ip 83.123.119.85 112038 port 29 112038 unique_id port 112038 remote_ip 10.8.1.138 112040 username tahmasebi 112040 mac 112040 bytes_out 0 112040 bytes_in 0 112040 station_ip 5.119.50.227 112040 port 55 112040 unique_id port 112040 remote_ip 10.8.0.42 112042 username zare 112042 mac 112042 bytes_out 0 112042 bytes_in 0 112042 station_ip 37.27.17.184 112042 port 52 112042 unique_id port 112042 remote_ip 10.8.0.18 112050 username zare 112050 mac 112050 bytes_out 0 112050 bytes_in 0 112050 station_ip 37.27.17.184 112050 port 29 112050 unique_id port 112050 remote_ip 10.8.1.58 112051 username jamali 112051 kill_reason Another user logged on this global unique id 112051 mac 112051 bytes_out 0 112051 bytes_in 0 112051 station_ip 5.119.87.121 112051 port 64 112051 unique_id port 112053 username zare 112053 kill_reason Maximum check online fails reached 112053 mac 112053 bytes_out 0 112053 bytes_in 0 112053 station_ip 37.27.17.184 112053 port 65 112053 unique_id port 112054 username zare 112054 kill_reason Maximum check online fails reached 112054 mac 112054 bytes_out 0 112054 bytes_in 0 112054 station_ip 37.27.17.184 112054 port 66 112054 unique_id port 112058 username zare 112058 kill_reason Maximum check online fails reached 112058 mac 112058 bytes_out 0 112058 bytes_in 0 112058 station_ip 37.27.17.184 112058 port 67 112058 unique_id port 112063 username hashtadani3 112063 kill_reason Another user logged on this global unique id 112063 mac 112063 bytes_out 0 112063 bytes_in 0 112063 station_ip 37.129.28.122 112063 port 62 112063 unique_id port 112066 username hashtadani3 112066 mac 112066 bytes_out 0 112066 bytes_in 0 112066 station_ip 37.129.28.122 112066 port 62 112066 unique_id port 112078 username hashtadani3 112078 mac 112078 bytes_out 0 112078 bytes_in 0 112078 station_ip 37.129.28.122 112078 port 55 112078 unique_id port 112029 mac 112029 bytes_out 0 112029 bytes_in 0 112029 station_ip 37.129.28.122 112029 port 52 112029 unique_id port 112029 remote_ip 10.8.0.154 112039 username hashtadani3 112039 mac 112039 bytes_out 0 112039 bytes_in 0 112039 station_ip 37.129.28.122 112039 port 52 112039 unique_id port 112039 remote_ip 10.8.0.154 112045 username farhad1 112045 mac 112045 bytes_out 0 112045 bytes_in 0 112045 station_ip 5.119.110.131 112045 port 63 112045 unique_id port 112045 remote_ip 10.8.0.26 112046 username hashtadani3 112046 mac 112046 bytes_out 0 112046 bytes_in 0 112046 station_ip 37.129.28.122 112046 port 62 112046 unique_id port 112046 remote_ip 10.8.0.154 112048 username zare 112048 mac 112048 bytes_out 0 112048 bytes_in 0 112048 station_ip 37.27.17.184 112048 port 32 112048 unique_id port 112048 remote_ip 10.8.1.58 112052 username alirr 112052 unique_id port 112052 terminate_cause User-Request 112052 bytes_out 15738879 112052 bytes_in 357746135 112052 station_ip 5.119.222.109 112052 port 15729214 112052 nas_port_type Virtual 112052 remote_ip 5.5.5.249 112056 username jamali 112056 mac 112056 bytes_out 0 112056 bytes_in 0 112056 station_ip 5.119.87.121 112056 port 64 112056 unique_id port 112065 username tahmasebi 112065 kill_reason Another user logged on this global unique id 112065 mac 112065 bytes_out 0 112065 bytes_in 0 112065 station_ip 5.119.50.227 112065 port 52 112065 unique_id port 112065 remote_ip 10.8.0.42 112067 username hashtadani3 112067 mac 112067 bytes_out 0 112067 bytes_in 0 112067 station_ip 37.129.28.122 112067 port 19 112067 unique_id port 112067 remote_ip 10.8.1.94 112070 username zare 112070 mac 112070 bytes_out 0 112070 bytes_in 0 112070 station_ip 37.27.17.184 112070 port 64 112070 unique_id port 112070 remote_ip 10.8.0.18 112072 username zare 112072 mac 112072 bytes_out 0 112072 bytes_in 0 112072 station_ip 37.27.17.184 112072 port 19 112072 unique_id port 112072 remote_ip 10.8.1.58 112073 username zare 112073 mac 112073 bytes_out 0 112073 bytes_in 0 112073 station_ip 37.27.17.184 112073 port 19 112073 unique_id port 112073 remote_ip 10.8.1.58 112074 username hashtadani3 112074 mac 112074 bytes_out 0 112074 bytes_in 0 112074 station_ip 37.129.28.122 112074 port 55 112074 unique_id port 112074 remote_ip 10.8.0.154 112075 username kordestani 112075 mac 112075 bytes_out 0 112075 bytes_in 0 112075 station_ip 151.235.99.86 112075 port 63 112075 unique_id port 112075 remote_ip 10.8.0.134 112076 username hashtadani3 112076 mac 112076 bytes_out 0 112076 bytes_in 0 112076 station_ip 37.129.28.122 112076 port 55 112076 unique_id port 112076 remote_ip 10.8.0.154 112079 username aminvpn 112079 unique_id port 112079 terminate_cause Lost-Carrier 112079 bytes_out 2578276 112079 bytes_in 39775297 112079 station_ip 5.120.169.59 112079 port 15729216 112079 nas_port_type Virtual 112079 remote_ip 5.5.5.254 112080 username farhad1 112080 kill_reason Another user logged on this global unique id 112080 mac 112080 bytes_out 0 112080 bytes_in 0 112080 station_ip 5.119.106.91 112080 port 49 112080 unique_id port 112080 remote_ip 10.8.0.26 112081 username hashtadani3 112081 mac 112081 bytes_out 0 112081 bytes_in 0 112081 station_ip 37.129.28.122 112081 port 55 112081 unique_id port 112081 remote_ip 10.8.0.154 112087 username hashtadani3 112087 mac 112087 bytes_out 0 112087 bytes_in 0 112087 station_ip 37.129.28.122 112087 port 55 112087 unique_id port 112087 remote_ip 10.8.0.154 112059 station_ip 5.119.132.42 112059 port 59 112059 unique_id port 112059 remote_ip 10.8.0.90 112060 username rasoul56 112060 kill_reason Another user logged on this global unique id 112060 mac 112060 bytes_out 0 112060 bytes_in 0 112060 station_ip 83.123.119.85 112060 port 28 112060 unique_id port 112060 remote_ip 10.8.1.138 112061 username alihosseini1 112061 mac 112061 bytes_out 0 112061 bytes_in 0 112061 station_ip 5.119.252.178 112061 port 49 112061 unique_id port 112061 remote_ip 10.8.0.166 112062 username farhad1 112062 mac 112062 bytes_out 0 112062 bytes_in 0 112062 station_ip 5.119.106.91 112062 port 55 112062 unique_id port 112064 username aminvpn 112064 mac 112064 bytes_out 5822818 112064 bytes_in 12877219 112064 station_ip 37.129.51.39 112064 port 19 112064 unique_id port 112064 remote_ip 10.8.1.6 112068 username hashtadani3 112068 mac 112068 bytes_out 0 112068 bytes_in 0 112068 station_ip 37.129.28.122 112068 port 55 112068 unique_id port 112068 remote_ip 10.8.0.154 112069 username hashtadani3 112069 mac 112069 bytes_out 0 112069 bytes_in 0 112069 station_ip 37.129.28.122 112069 port 55 112069 unique_id port 112069 remote_ip 10.8.0.154 112071 username hashtadani3 112071 mac 112071 bytes_out 0 112071 bytes_in 0 112071 station_ip 37.129.28.122 112071 port 55 112071 unique_id port 112071 remote_ip 10.8.0.154 112077 username hashtadani3 112077 mac 112077 bytes_out 0 112077 bytes_in 0 112077 station_ip 37.129.28.122 112077 port 55 112077 unique_id port 112077 remote_ip 10.8.0.154 112082 username hashtadani3 112082 mac 112082 bytes_out 0 112082 bytes_in 0 112082 station_ip 37.129.28.122 112082 port 55 112082 unique_id port 112082 remote_ip 10.8.0.154 112085 username hashtadani3 112085 mac 112085 bytes_out 0 112085 bytes_in 0 112085 station_ip 37.129.28.122 112085 port 29 112085 unique_id port 112085 remote_ip 10.8.1.94 112086 username hashtadani3 112086 mac 112086 bytes_out 0 112086 bytes_in 0 112086 station_ip 37.129.28.122 112086 port 55 112086 unique_id port 112086 remote_ip 10.8.0.154 112089 username tahmasebi 112089 kill_reason Another user logged on this global unique id 112089 mac 112089 bytes_out 0 112089 bytes_in 0 112089 station_ip 5.119.50.227 112089 port 52 112089 unique_id port 112090 username farhad1 112090 kill_reason Another user logged on this global unique id 112090 mac 112090 bytes_out 0 112090 bytes_in 0 112090 station_ip 5.119.106.91 112090 port 49 112090 unique_id port 112091 username hashtadani3 112091 mac 112091 bytes_out 0 112091 bytes_in 0 112091 station_ip 37.129.28.122 112091 port 55 112091 unique_id port 112091 remote_ip 10.8.0.154 112092 username hashtadani3 112092 mac 112092 bytes_out 0 112092 bytes_in 0 112092 station_ip 37.129.28.122 112092 port 55 112092 unique_id port 112092 remote_ip 10.8.0.154 112093 username tahmasebi 112093 kill_reason Another user logged on this global unique id 112093 mac 112093 bytes_out 0 112093 bytes_in 0 112093 station_ip 5.119.50.227 112093 port 52 112093 unique_id port 112095 username farhad1 112095 kill_reason Another user logged on this global unique id 112095 mac 112095 bytes_out 0 112095 bytes_in 0 112095 station_ip 5.119.106.91 112095 port 49 112095 unique_id port 112098 username farhad1 112098 mac 112098 bytes_out 0 112098 bytes_in 0 112098 station_ip 5.119.106.91 112098 port 49 112098 unique_id port 112099 username hashtadani3 112099 mac 112099 bytes_out 0 112099 bytes_in 0 112099 station_ip 37.129.28.122 112099 port 49 112078 remote_ip 10.8.0.154 112083 username hashtadani3 112083 mac 112083 bytes_out 0 112083 bytes_in 0 112083 station_ip 37.129.28.122 112083 port 55 112083 unique_id port 112083 remote_ip 10.8.0.154 112084 username tahmasebi 112084 kill_reason Another user logged on this global unique id 112084 mac 112084 bytes_out 0 112084 bytes_in 0 112084 station_ip 5.119.50.227 112084 port 52 112084 unique_id port 112096 username hashtadani3 112096 mac 112096 bytes_out 0 112096 bytes_in 0 112096 station_ip 37.129.28.122 112096 port 55 112096 unique_id port 112096 remote_ip 10.8.0.154 112097 username sabaghnezhad 112097 mac 112097 bytes_out 0 112097 bytes_in 0 112097 station_ip 37.129.185.10 112097 port 31 112097 unique_id port 112097 remote_ip 10.8.1.130 112100 username rasoul56 112100 kill_reason Another user logged on this global unique id 112100 mac 112100 bytes_out 0 112100 bytes_in 0 112100 station_ip 83.123.119.85 112100 port 28 112100 unique_id port 112103 username zare 112103 mac 112103 bytes_out 0 112103 bytes_in 0 112103 station_ip 37.27.17.184 112103 port 19 112103 unique_id port 112103 remote_ip 10.8.1.58 112105 username hashtadani3 112105 mac 112105 bytes_out 0 112105 bytes_in 0 112105 station_ip 37.129.28.122 112105 port 49 112105 unique_id port 112105 remote_ip 10.8.0.154 112106 username zare 112106 kill_reason Maximum check online fails reached 112106 mac 112106 bytes_out 0 112106 bytes_in 0 112106 station_ip 37.27.17.184 112106 port 49 112106 unique_id port 112108 username irannezhad 112108 mac 112108 bytes_out 82732 112108 bytes_in 191492 112108 station_ip 83.122.244.135 112108 port 62 112108 unique_id port 112108 remote_ip 10.8.0.182 112118 username zare 112118 mac 112118 bytes_out 0 112118 bytes_in 0 112118 station_ip 37.27.17.184 112118 port 55 112118 unique_id port 112118 remote_ip 10.8.0.18 112120 username hashtadani3 112120 mac 112120 bytes_out 0 112120 bytes_in 0 112120 station_ip 37.129.28.122 112120 port 62 112120 unique_id port 112120 remote_ip 10.8.0.154 112126 username zare 112126 mac 112126 bytes_out 0 112126 bytes_in 0 112126 station_ip 37.27.17.184 112126 port 19 112126 unique_id port 112126 remote_ip 10.8.1.58 112131 username zare 112131 mac 112131 bytes_out 0 112131 bytes_in 0 112131 station_ip 37.27.17.184 112131 port 62 112131 unique_id port 112131 remote_ip 10.8.0.18 112133 username hashtadani3 112133 mac 112133 bytes_out 0 112133 bytes_in 0 112133 station_ip 37.129.28.122 112133 port 62 112133 unique_id port 112133 remote_ip 10.8.0.154 112135 username mohammadjavad 112135 mac 112135 bytes_out 0 112135 bytes_in 0 112135 station_ip 83.123.49.231 112135 port 41 112135 unique_id port 112135 remote_ip 10.8.0.142 112136 username hashtadani3 112136 mac 112136 bytes_out 0 112136 bytes_in 0 112136 station_ip 37.129.28.122 112136 port 62 112136 unique_id port 112136 remote_ip 10.8.0.154 112138 username hashtadani3 112138 mac 112138 bytes_out 0 112138 bytes_in 0 112138 station_ip 37.129.28.122 112138 port 62 112138 unique_id port 112138 remote_ip 10.8.0.154 112143 username hashtadani3 112143 mac 112143 bytes_out 2005 112143 bytes_in 4759 112143 station_ip 37.129.28.122 112143 port 62 112143 unique_id port 112143 remote_ip 10.8.0.154 112144 username hashtadani3 112144 mac 112144 bytes_out 0 112144 bytes_in 0 112144 station_ip 37.129.28.122 112144 port 62 112144 unique_id port 112144 remote_ip 10.8.0.154 112147 username hashtadani3 112147 mac 112088 username farhad1 112088 kill_reason Another user logged on this global unique id 112088 mac 112088 bytes_out 0 112088 bytes_in 0 112088 station_ip 5.119.106.91 112088 port 49 112088 unique_id port 112094 username hashtadani3 112094 mac 112094 bytes_out 0 112094 bytes_in 0 112094 station_ip 37.129.28.122 112094 port 55 112094 unique_id port 112094 remote_ip 10.8.0.154 112101 username hashtadani3 112101 mac 112101 bytes_out 0 112101 bytes_in 0 112101 station_ip 37.129.28.122 112101 port 49 112101 unique_id port 112101 remote_ip 10.8.0.154 112109 username hashtadani3 112109 mac 112109 bytes_out 0 112109 bytes_in 0 112109 station_ip 37.129.28.122 112109 port 55 112109 unique_id port 112109 remote_ip 10.8.0.154 112110 username zare 112110 mac 112110 bytes_out 0 112110 bytes_in 0 112110 station_ip 37.27.17.184 112110 port 55 112110 unique_id port 112110 remote_ip 10.8.0.18 112116 username zare 112116 mac 112116 bytes_out 0 112116 bytes_in 0 112116 station_ip 37.27.17.184 112116 port 55 112116 unique_id port 112116 remote_ip 10.8.0.18 112117 username zare 112117 mac 112117 bytes_out 0 112117 bytes_in 0 112117 station_ip 37.27.17.184 112117 port 55 112117 unique_id port 112117 remote_ip 10.8.0.18 112121 username zare 112121 kill_reason Maximum check online fails reached 112121 mac 112121 bytes_out 0 112121 bytes_in 0 112121 station_ip 37.27.17.184 112121 port 55 112121 unique_id port 112122 username hashtadani3 112122 mac 112122 bytes_out 0 112122 bytes_in 0 112122 station_ip 37.129.28.122 112122 port 62 112122 unique_id port 112122 remote_ip 10.8.0.154 112123 username zare 112123 mac 112123 bytes_out 0 112123 bytes_in 0 112123 station_ip 37.27.17.184 112123 port 62 112123 unique_id port 112123 remote_ip 10.8.0.18 112124 username zare 112124 mac 112124 bytes_out 0 112124 bytes_in 0 112124 station_ip 37.27.17.184 112124 port 62 112124 unique_id port 112124 remote_ip 10.8.0.18 112125 username hashtadani3 112125 mac 112125 bytes_out 0 112125 bytes_in 0 112125 station_ip 37.129.28.122 112125 port 63 112125 unique_id port 112125 remote_ip 10.8.0.154 112128 username zare 112128 mac 112128 bytes_out 0 112128 bytes_in 0 112128 station_ip 37.27.17.184 112128 port 62 112128 unique_id port 112128 remote_ip 10.8.0.18 112129 username hashtadani3 112129 mac 112129 bytes_out 0 112129 bytes_in 0 112129 station_ip 37.129.28.122 112129 port 63 112129 unique_id port 112129 remote_ip 10.8.0.154 112134 username hashtadani3 112134 mac 112134 bytes_out 0 112134 bytes_in 0 112134 station_ip 37.129.28.122 112134 port 62 112134 unique_id port 112134 remote_ip 10.8.0.154 112137 username rasoul56 112137 mac 112137 bytes_out 0 112137 bytes_in 0 112137 station_ip 83.123.119.85 112137 port 28 112137 unique_id port 112139 username hashtadani3 112139 mac 112139 bytes_out 0 112139 bytes_in 0 112139 station_ip 37.129.28.122 112139 port 62 112139 unique_id port 112139 remote_ip 10.8.0.154 112142 username shahrooz 112142 unique_id port 112142 terminate_cause Lost-Carrier 112142 bytes_out 2896998 112142 bytes_in 36507690 112142 station_ip 83.122.42.142 112142 port 15729217 112142 nas_port_type Virtual 112142 remote_ip 5.5.5.252 112145 username hashtadani3 112145 mac 112145 bytes_out 0 112145 bytes_in 0 112145 station_ip 37.129.28.122 112145 port 19 112145 unique_id port 112145 remote_ip 10.8.1.94 112148 username hashtadani3 112148 mac 112148 bytes_out 0 112148 bytes_in 0 112099 unique_id port 112099 remote_ip 10.8.0.154 112102 username hashtadani3 112102 mac 112102 bytes_out 0 112102 bytes_in 0 112102 station_ip 37.129.28.122 112102 port 49 112102 unique_id port 112102 remote_ip 10.8.0.154 112104 username hashtadani3 112104 mac 112104 bytes_out 0 112104 bytes_in 0 112104 station_ip 37.129.28.122 112104 port 49 112104 unique_id port 112104 remote_ip 10.8.0.154 112107 username zare 112107 mac 112107 bytes_out 89511 112107 bytes_in 1758596 112107 station_ip 37.27.17.184 112107 port 55 112107 unique_id port 112107 remote_ip 10.8.0.18 112111 username zare 112111 mac 112111 bytes_out 0 112111 bytes_in 0 112111 station_ip 37.27.17.184 112111 port 55 112111 unique_id port 112111 remote_ip 10.8.0.18 112112 username zare 112112 mac 112112 bytes_out 0 112112 bytes_in 0 112112 station_ip 37.27.17.184 112112 port 55 112112 unique_id port 112112 remote_ip 10.8.0.18 112113 username zare 112113 mac 112113 bytes_out 0 112113 bytes_in 0 112113 station_ip 37.27.17.184 112113 port 55 112113 unique_id port 112113 remote_ip 10.8.0.18 112114 username hashtadani3 112114 mac 112114 bytes_out 0 112114 bytes_in 0 112114 station_ip 37.129.28.122 112114 port 19 112114 unique_id port 112114 remote_ip 10.8.1.94 112115 username hashtadani3 112115 mac 112115 bytes_out 0 112115 bytes_in 0 112115 station_ip 37.129.28.122 112115 port 62 112115 unique_id port 112115 remote_ip 10.8.0.154 112119 username hashtadani3 112119 mac 112119 bytes_out 0 112119 bytes_in 0 112119 station_ip 37.129.28.122 112119 port 62 112119 unique_id port 112119 remote_ip 10.8.0.154 112127 username hashtadani3 112127 mac 112127 bytes_out 0 112127 bytes_in 0 112127 station_ip 37.129.28.122 112127 port 64 112127 unique_id port 112127 remote_ip 10.8.0.154 112130 username hashtadani3 112130 mac 112130 bytes_out 0 112130 bytes_in 0 112130 station_ip 37.129.28.122 112130 port 63 112130 unique_id port 112130 remote_ip 10.8.0.154 112132 username hashtadani3 112132 mac 112132 bytes_out 0 112132 bytes_in 0 112132 station_ip 37.129.28.122 112132 port 62 112132 unique_id port 112132 remote_ip 10.8.0.154 112140 username hashtadani3 112140 mac 112140 bytes_out 0 112140 bytes_in 0 112140 station_ip 37.129.28.122 112140 port 62 112140 unique_id port 112140 remote_ip 10.8.0.154 112141 username hashtadani3 112141 mac 112141 bytes_out 0 112141 bytes_in 0 112141 station_ip 37.129.28.122 112141 port 62 112141 unique_id port 112141 remote_ip 10.8.0.154 112146 username hashtadani3 112146 mac 112146 bytes_out 0 112146 bytes_in 0 112146 station_ip 37.129.28.122 112146 port 62 112146 unique_id port 112146 remote_ip 10.8.0.154 112149 username hashtadani3 112149 mac 112149 bytes_out 0 112149 bytes_in 0 112149 station_ip 37.129.28.122 112149 port 62 112149 unique_id port 112149 remote_ip 10.8.0.154 112151 username hashtadani3 112151 mac 112151 bytes_out 0 112151 bytes_in 0 112151 station_ip 37.129.28.122 112151 port 62 112151 unique_id port 112151 remote_ip 10.8.0.154 112152 username hashtadani3 112152 mac 112152 bytes_out 0 112152 bytes_in 0 112152 station_ip 37.129.28.122 112152 port 62 112152 unique_id port 112152 remote_ip 10.8.0.154 112155 username hashtadani3 112155 mac 112155 bytes_out 0 112155 bytes_in 0 112155 station_ip 37.129.28.122 112155 port 62 112155 unique_id port 112155 remote_ip 10.8.0.154 112156 username hashtadani3 112156 mac 112147 bytes_out 0 112147 bytes_in 0 112147 station_ip 37.129.28.122 112147 port 62 112147 unique_id port 112147 remote_ip 10.8.0.154 112150 username hashtadani3 112150 mac 112150 bytes_out 0 112150 bytes_in 0 112150 station_ip 37.129.28.122 112150 port 62 112150 unique_id port 112150 remote_ip 10.8.0.154 112153 username hashtadani3 112153 mac 112153 bytes_out 0 112153 bytes_in 0 112153 station_ip 37.129.28.122 112153 port 62 112153 unique_id port 112153 remote_ip 10.8.0.154 112158 username hashtadani3 112158 mac 112158 bytes_out 0 112158 bytes_in 0 112158 station_ip 37.129.28.122 112158 port 62 112158 unique_id port 112158 remote_ip 10.8.0.154 112159 username mirzaei 112159 kill_reason Another user logged on this global unique id 112159 mac 112159 bytes_out 0 112159 bytes_in 0 112159 station_ip 5.120.191.187 112159 port 18 112159 unique_id port 112163 username hashtadani3 112163 mac 112163 bytes_out 0 112163 bytes_in 0 112163 station_ip 37.129.28.122 112163 port 59 112163 unique_id port 112163 remote_ip 10.8.0.154 112165 username hashtadani3 112165 mac 112165 bytes_out 0 112165 bytes_in 0 112165 station_ip 37.129.28.122 112165 port 59 112165 unique_id port 112165 remote_ip 10.8.0.154 112171 username hashtadani3 112171 mac 112171 bytes_out 0 112171 bytes_in 0 112171 station_ip 37.129.28.122 112171 port 19 112171 unique_id port 112171 remote_ip 10.8.1.94 112175 username hashtadani3 112175 mac 112175 bytes_out 0 112175 bytes_in 0 112175 station_ip 37.129.28.122 112175 port 59 112175 unique_id port 112175 remote_ip 10.8.0.154 112180 username hashtadani3 112180 mac 112180 bytes_out 0 112180 bytes_in 0 112180 station_ip 37.129.28.122 112180 port 59 112180 unique_id port 112180 remote_ip 10.8.0.154 112186 username mohammadjavad 112186 mac 112186 bytes_out 0 112186 bytes_in 0 112186 station_ip 83.123.49.231 112186 port 41 112186 unique_id port 112186 remote_ip 10.8.0.142 112189 username hashtadani3 112189 mac 112189 bytes_out 0 112189 bytes_in 0 112189 station_ip 37.129.28.122 112189 port 19 112189 unique_id port 112189 remote_ip 10.8.1.94 112192 username hashtadani3 112192 mac 112192 bytes_out 0 112192 bytes_in 0 112192 station_ip 37.129.28.122 112192 port 41 112192 unique_id port 112192 remote_ip 10.8.0.154 112194 username hashtadani3 112194 mac 112194 bytes_out 0 112194 bytes_in 0 112194 station_ip 37.129.28.122 112194 port 41 112194 unique_id port 112194 remote_ip 10.8.0.154 112195 username hashtadani3 112195 mac 112195 bytes_out 0 112195 bytes_in 0 112195 station_ip 37.129.28.122 112195 port 41 112195 unique_id port 112195 remote_ip 10.8.0.154 112201 username sedighe 112201 mac 112201 bytes_out 387300 112201 bytes_in 2268516 112201 station_ip 83.123.243.41 112201 port 59 112201 unique_id port 112201 remote_ip 10.8.0.146 112203 username arabpour 112203 unique_id port 112203 terminate_cause User-Request 112203 bytes_out 112277 112203 bytes_in 968543 112203 station_ip 83.123.8.109 112203 port 15729218 112203 nas_port_type Virtual 112203 remote_ip 5.5.5.254 112206 username hashtadani3 112206 mac 112206 bytes_out 0 112206 bytes_in 0 112206 station_ip 37.129.28.122 112206 port 63 112206 unique_id port 112206 remote_ip 10.8.0.154 112211 username hashtadani3 112211 mac 112211 bytes_out 0 112211 bytes_in 0 112211 station_ip 37.129.28.122 112211 port 63 112211 unique_id port 112211 remote_ip 10.8.0.154 112215 username hashtadani3 112215 mac 112215 bytes_out 0 112148 station_ip 37.129.28.122 112148 port 62 112148 unique_id port 112148 remote_ip 10.8.0.154 112154 username hashtadani3 112154 mac 112154 bytes_out 0 112154 bytes_in 0 112154 station_ip 37.129.28.122 112154 port 62 112154 unique_id port 112154 remote_ip 10.8.0.154 112157 username hashtadani3 112157 mac 112157 bytes_out 0 112157 bytes_in 0 112157 station_ip 37.129.28.122 112157 port 62 112157 unique_id port 112157 remote_ip 10.8.0.154 112160 username hashtadani3 112160 mac 112160 bytes_out 0 112160 bytes_in 0 112160 station_ip 37.129.28.122 112160 port 62 112160 unique_id port 112160 remote_ip 10.8.0.154 112161 username mehdizare 112161 mac 112161 bytes_out 0 112161 bytes_in 0 112161 station_ip 5.119.132.42 112161 port 59 112161 unique_id port 112166 username hashtadani3 112166 mac 112166 bytes_out 0 112166 bytes_in 0 112166 station_ip 37.129.28.122 112166 port 59 112166 unique_id port 112166 remote_ip 10.8.0.154 112170 username hashtadani3 112170 mac 112170 bytes_out 0 112170 bytes_in 0 112170 station_ip 37.129.28.122 112170 port 59 112170 unique_id port 112170 remote_ip 10.8.0.154 112176 username hashtadani3 112176 mac 112176 bytes_out 0 112176 bytes_in 0 112176 station_ip 37.129.28.122 112176 port 59 112176 unique_id port 112176 remote_ip 10.8.0.154 112177 username hashtadani3 112177 mac 112177 bytes_out 0 112177 bytes_in 0 112177 station_ip 37.129.28.122 112177 port 59 112177 unique_id port 112177 remote_ip 10.8.0.154 112178 username hashtadani3 112178 mac 112178 bytes_out 0 112178 bytes_in 0 112178 station_ip 37.129.28.122 112178 port 59 112178 unique_id port 112178 remote_ip 10.8.0.154 112181 username hashtadani3 112181 mac 112181 bytes_out 0 112181 bytes_in 0 112181 station_ip 37.129.28.122 112181 port 19 112181 unique_id port 112181 remote_ip 10.8.1.94 112182 username hashtadani3 112182 mac 112182 bytes_out 0 112182 bytes_in 0 112182 station_ip 37.129.28.122 112182 port 59 112182 unique_id port 112182 remote_ip 10.8.0.154 112184 username sedighe 112184 mac 112184 bytes_out 0 112184 bytes_in 0 112184 station_ip 37.129.147.109 112184 port 59 112184 unique_id port 112184 remote_ip 10.8.0.146 112185 username hashtadani3 112185 mac 112185 bytes_out 0 112185 bytes_in 0 112185 station_ip 37.129.28.122 112185 port 59 112185 unique_id port 112185 remote_ip 10.8.0.154 112190 username hashtadani3 112190 mac 112190 bytes_out 0 112190 bytes_in 0 112190 station_ip 37.129.28.122 112190 port 19 112190 unique_id port 112190 remote_ip 10.8.1.94 112193 username hashtadani3 112193 mac 112193 bytes_out 0 112193 bytes_in 0 112193 station_ip 37.129.28.122 112193 port 41 112193 unique_id port 112193 remote_ip 10.8.0.154 112198 username hashtadani3 112198 mac 112198 bytes_out 0 112198 bytes_in 0 112198 station_ip 37.129.28.122 112198 port 63 112198 unique_id port 112198 remote_ip 10.8.0.154 112202 username avaanna 112202 mac 112202 bytes_out 0 112202 bytes_in 0 112202 station_ip 83.122.206.10 112202 port 63 112202 unique_id port 112202 remote_ip 10.8.0.98 112204 username hashtadani3 112204 mac 112204 bytes_out 0 112204 bytes_in 0 112204 station_ip 37.129.28.122 112204 port 19 112204 unique_id port 112204 remote_ip 10.8.1.94 112207 username hashtadani3 112207 mac 112207 bytes_out 0 112207 bytes_in 0 112207 station_ip 37.129.28.122 112207 port 63 112207 unique_id port 112207 remote_ip 10.8.0.154 112208 username hashtadani3 112156 bytes_out 0 112156 bytes_in 0 112156 station_ip 37.129.28.122 112156 port 62 112156 unique_id port 112156 remote_ip 10.8.0.154 112162 username hashtadani3 112162 mac 112162 bytes_out 0 112162 bytes_in 0 112162 station_ip 37.129.28.122 112162 port 19 112162 unique_id port 112162 remote_ip 10.8.1.94 112164 username mohammadjavad 112164 mac 112164 bytes_out 171426 112164 bytes_in 237573 112164 station_ip 83.123.49.231 112164 port 41 112164 unique_id port 112164 remote_ip 10.8.0.142 112167 username hashtadani3 112167 mac 112167 bytes_out 0 112167 bytes_in 0 112167 station_ip 37.129.28.122 112167 port 59 112167 unique_id port 112167 remote_ip 10.8.0.154 112168 username hashtadani3 112168 mac 112168 bytes_out 0 112168 bytes_in 0 112168 station_ip 37.129.28.122 112168 port 59 112168 unique_id port 112168 remote_ip 10.8.0.154 112169 username hashtadani3 112169 mac 112169 bytes_out 0 112169 bytes_in 0 112169 station_ip 37.129.28.122 112169 port 59 112169 unique_id port 112169 remote_ip 10.8.0.154 112172 username hashtadani3 112172 mac 112172 bytes_out 0 112172 bytes_in 0 112172 station_ip 37.129.28.122 112172 port 59 112172 unique_id port 112172 remote_ip 10.8.0.154 112173 username hashtadani3 112173 mac 112173 bytes_out 0 112173 bytes_in 0 112173 station_ip 37.129.28.122 112173 port 59 112173 unique_id port 112173 remote_ip 10.8.0.154 112174 username hashtadani3 112174 mac 112174 bytes_out 0 112174 bytes_in 0 112174 station_ip 37.129.28.122 112174 port 59 112174 unique_id port 112174 remote_ip 10.8.0.154 112179 username hashtadani3 112179 mac 112179 bytes_out 0 112179 bytes_in 0 112179 station_ip 37.129.28.122 112179 port 59 112179 unique_id port 112179 remote_ip 10.8.0.154 112183 username hashtadani3 112183 mac 112183 bytes_out 0 112183 bytes_in 0 112183 station_ip 37.129.28.122 112183 port 63 112183 unique_id port 112183 remote_ip 10.8.0.154 112187 username hashtadani3 112187 mac 112187 bytes_out 0 112187 bytes_in 0 112187 station_ip 37.129.28.122 112187 port 41 112187 unique_id port 112187 remote_ip 10.8.0.154 112188 username hashtadani3 112188 mac 112188 bytes_out 0 112188 bytes_in 0 112188 station_ip 37.129.28.122 112188 port 41 112188 unique_id port 112188 remote_ip 10.8.0.154 112191 username hashtadani3 112191 mac 112191 bytes_out 0 112191 bytes_in 0 112191 station_ip 37.129.28.122 112191 port 41 112191 unique_id port 112191 remote_ip 10.8.0.154 112196 username mohammadjavad 112196 mac 112196 bytes_out 0 112196 bytes_in 0 112196 station_ip 83.122.22.7 112196 port 41 112196 unique_id port 112196 remote_ip 10.8.0.142 112197 username hashtadani3 112197 mac 112197 bytes_out 0 112197 bytes_in 0 112197 station_ip 37.129.28.122 112197 port 59 112197 unique_id port 112197 remote_ip 10.8.0.154 112199 username hashtadani3 112199 mac 112199 bytes_out 0 112199 bytes_in 0 112199 station_ip 37.129.28.122 112199 port 63 112199 unique_id port 112199 remote_ip 10.8.0.154 112200 username morteza 112200 mac 112200 bytes_out 0 112200 bytes_in 0 112200 station_ip 37.129.222.162 112200 port 63 112200 unique_id port 112200 remote_ip 10.8.0.46 112205 username hashtadani3 112205 mac 112205 bytes_out 0 112205 bytes_in 0 112205 station_ip 37.129.28.122 112205 port 63 112205 unique_id port 112205 remote_ip 10.8.0.154 112209 username hashtadani3 112209 mac 112209 bytes_out 0 112209 bytes_in 0 112209 station_ip 37.129.28.122 112208 mac 112208 bytes_out 0 112208 bytes_in 0 112208 station_ip 37.129.28.122 112208 port 64 112208 unique_id port 112208 remote_ip 10.8.0.154 112212 username hashtadani3 112212 mac 112212 bytes_out 0 112212 bytes_in 0 112212 station_ip 37.129.28.122 112212 port 63 112212 unique_id port 112212 remote_ip 10.8.0.154 112216 username hashtadani3 112216 mac 112216 bytes_out 0 112216 bytes_in 0 112216 station_ip 37.129.28.122 112216 port 63 112216 unique_id port 112216 remote_ip 10.8.0.154 112218 username hashtadani3 112218 mac 112218 bytes_out 0 112218 bytes_in 0 112218 station_ip 37.129.28.122 112218 port 64 112218 unique_id port 112218 remote_ip 10.8.0.154 112220 username forozande 112220 mac 112220 bytes_out 1262158 112220 bytes_in 19818756 112220 station_ip 113.203.28.4 112220 port 63 112220 unique_id port 112220 remote_ip 10.8.0.74 112224 username hashtadani3 112224 mac 112224 bytes_out 0 112224 bytes_in 0 112224 station_ip 37.129.28.122 112224 port 41 112224 unique_id port 112224 remote_ip 10.8.0.154 112229 username hashtadani3 112229 mac 112229 bytes_out 0 112229 bytes_in 0 112229 station_ip 37.129.28.122 112229 port 63 112229 unique_id port 112229 remote_ip 10.8.0.154 112232 username hashtadani3 112232 mac 112232 bytes_out 0 112232 bytes_in 0 112232 station_ip 37.129.28.122 112232 port 59 112232 unique_id port 112232 remote_ip 10.8.0.154 112237 username hashtadani3 112237 mac 112237 bytes_out 0 112237 bytes_in 0 112237 station_ip 37.129.28.122 112237 port 41 112237 unique_id port 112237 remote_ip 10.8.0.154 112240 username hashtadani3 112240 mac 112240 bytes_out 0 112240 bytes_in 0 112240 station_ip 37.129.28.122 112240 port 19 112240 unique_id port 112240 remote_ip 10.8.1.94 112244 username hashtadani3 112244 mac 112244 bytes_out 0 112244 bytes_in 0 112244 station_ip 37.129.28.122 112244 port 59 112244 unique_id port 112244 remote_ip 10.8.0.154 112249 username morteza 112249 mac 112249 bytes_out 259880 112249 bytes_in 4663829 112249 station_ip 37.129.240.54 112249 port 59 112249 unique_id port 112249 remote_ip 10.8.0.46 112252 username hashtadani3 112252 mac 112252 bytes_out 0 112252 bytes_in 0 112252 station_ip 37.129.28.122 112252 port 59 112252 unique_id port 112252 remote_ip 10.8.0.154 112255 username mohammadjavad 112255 mac 112255 bytes_out 1087323 112255 bytes_in 22808675 112255 station_ip 83.122.228.152 112255 port 41 112255 unique_id port 112255 remote_ip 10.8.0.142 112256 username hashtadani3 112256 mac 112256 bytes_out 0 112256 bytes_in 0 112256 station_ip 37.129.28.122 112256 port 64 112256 unique_id port 112256 remote_ip 10.8.0.154 112259 username hashtadani3 112259 mac 112259 bytes_out 0 112259 bytes_in 0 112259 station_ip 37.129.28.122 112259 port 41 112259 unique_id port 112259 remote_ip 10.8.0.154 112260 username hashtadani3 112260 mac 112260 bytes_out 0 112260 bytes_in 0 112260 station_ip 37.129.28.122 112260 port 41 112260 unique_id port 112260 remote_ip 10.8.0.154 112265 username hashtadani3 112265 mac 112265 bytes_out 0 112265 bytes_in 0 112265 station_ip 37.129.28.122 112265 port 28 112265 unique_id port 112265 remote_ip 10.8.1.94 112268 username forozande 112268 mac 112268 bytes_out 0 112268 bytes_in 0 112268 station_ip 83.123.44.178 112268 port 41 112268 unique_id port 112268 remote_ip 10.8.0.74 112270 username avaanna 112270 mac 112270 bytes_out 44574 112270 bytes_in 50115 112209 port 64 112209 unique_id port 112209 remote_ip 10.8.0.154 112210 username forozande 112210 mac 112210 bytes_out 1355498 112210 bytes_in 15069618 112210 station_ip 83.123.49.159 112210 port 63 112210 unique_id port 112210 remote_ip 10.8.0.74 112213 username hashtadani3 112213 mac 112213 bytes_out 0 112213 bytes_in 0 112213 station_ip 37.129.28.122 112213 port 64 112213 unique_id port 112213 remote_ip 10.8.0.154 112214 username mahdiyehalizadeh 112214 mac 112214 bytes_out 0 112214 bytes_in 0 112214 station_ip 83.123.233.138 112214 port 63 112214 unique_id port 112214 remote_ip 10.8.0.82 112217 username irannezhad 112217 mac 112217 bytes_out 0 112217 bytes_in 0 112217 station_ip 83.122.224.187 112217 port 63 112217 unique_id port 112217 remote_ip 10.8.0.182 112227 username hashtadani3 112227 mac 112227 bytes_out 0 112227 bytes_in 0 112227 station_ip 37.129.28.122 112227 port 19 112227 unique_id port 112227 remote_ip 10.8.1.94 112230 username avaanna 112230 mac 112230 bytes_out 0 112230 bytes_in 0 112230 station_ip 83.122.206.10 112230 port 59 112230 unique_id port 112230 remote_ip 10.8.0.98 112234 username hashtadani3 112234 mac 112234 bytes_out 0 112234 bytes_in 0 112234 station_ip 37.129.28.122 112234 port 59 112234 unique_id port 112234 remote_ip 10.8.0.154 112238 username hashtadani3 112238 mac 112238 bytes_out 0 112238 bytes_in 0 112238 station_ip 37.129.28.122 112238 port 41 112238 unique_id port 112238 remote_ip 10.8.0.154 112241 username hashtadani3 112241 mac 112241 bytes_out 0 112241 bytes_in 0 112241 station_ip 37.129.28.122 112241 port 59 112241 unique_id port 112241 remote_ip 10.8.0.154 112242 username hashtadani3 112242 mac 112242 bytes_out 0 112242 bytes_in 0 112242 station_ip 37.129.28.122 112242 port 59 112242 unique_id port 112242 remote_ip 10.8.0.154 112247 username hashtadani3 112247 mac 112247 bytes_out 0 112247 bytes_in 0 112247 station_ip 37.129.28.122 112247 port 59 112247 unique_id port 112247 remote_ip 10.8.0.154 112251 username arabpour 112251 unique_id port 112251 terminate_cause User-Request 112251 bytes_out 124017 112251 bytes_in 1174820 112251 station_ip 83.122.181.45 112251 port 15729219 112251 nas_port_type Virtual 112251 remote_ip 5.5.5.254 112254 username hashtadani3 112254 mac 112254 bytes_out 0 112254 bytes_in 0 112254 station_ip 37.129.28.122 112254 port 59 112254 unique_id port 112254 remote_ip 10.8.0.154 112258 username hashtadani3 112258 mac 112258 bytes_out 0 112258 bytes_in 0 112258 station_ip 37.129.28.122 112258 port 41 112258 unique_id port 112258 remote_ip 10.8.0.154 112261 username hashtadani3 112261 mac 112261 bytes_out 0 112261 bytes_in 0 112261 station_ip 37.129.28.122 112261 port 41 112261 unique_id port 112261 remote_ip 10.8.0.154 112262 username hashtadani3 112262 mac 112262 bytes_out 0 112262 bytes_in 0 112262 station_ip 37.129.28.122 112262 port 41 112262 unique_id port 112262 remote_ip 10.8.0.154 112263 username hashtadani3 112263 mac 112263 bytes_out 0 112263 bytes_in 0 112263 station_ip 37.129.28.122 112263 port 59 112263 unique_id port 112263 remote_ip 10.8.0.154 112266 username hashtadani3 112266 mac 112266 bytes_out 0 112266 bytes_in 0 112266 station_ip 37.129.28.122 112266 port 64 112266 unique_id port 112266 remote_ip 10.8.0.154 112267 username hashtadani3 112267 mac 112267 bytes_out 0 112267 bytes_in 0 112267 station_ip 37.129.28.122 112267 port 64 112267 unique_id port 112215 bytes_in 0 112215 station_ip 37.129.28.122 112215 port 63 112215 unique_id port 112215 remote_ip 10.8.0.154 112219 username hashtadani3 112219 mac 112219 bytes_out 0 112219 bytes_in 0 112219 station_ip 37.129.28.122 112219 port 64 112219 unique_id port 112219 remote_ip 10.8.0.154 112221 username hashtadani3 112221 mac 112221 bytes_out 0 112221 bytes_in 0 112221 station_ip 37.129.28.122 112221 port 63 112221 unique_id port 112221 remote_ip 10.8.0.154 112222 username mohammadjavad 112222 mac 112222 bytes_out 0 112222 bytes_in 0 112222 station_ip 83.122.22.7 112222 port 41 112222 unique_id port 112222 remote_ip 10.8.0.142 112223 username hashtadani3 112223 mac 112223 bytes_out 0 112223 bytes_in 0 112223 station_ip 37.129.28.122 112223 port 41 112223 unique_id port 112223 remote_ip 10.8.0.154 112225 username hashtadani3 112225 mac 112225 bytes_out 0 112225 bytes_in 0 112225 station_ip 37.129.28.122 112225 port 41 112225 unique_id port 112225 remote_ip 10.8.0.154 112226 username hashtadani3 112226 mac 112226 bytes_out 0 112226 bytes_in 0 112226 station_ip 37.129.28.122 112226 port 41 112226 unique_id port 112226 remote_ip 10.8.0.154 112228 username hashtadani3 112228 mac 112228 bytes_out 0 112228 bytes_in 0 112228 station_ip 37.129.28.122 112228 port 41 112228 unique_id port 112228 remote_ip 10.8.0.154 112231 username hashtadani3 112231 mac 112231 bytes_out 0 112231 bytes_in 0 112231 station_ip 37.129.28.122 112231 port 59 112231 unique_id port 112231 remote_ip 10.8.0.154 112233 username hashtadani3 112233 mac 112233 bytes_out 0 112233 bytes_in 0 112233 station_ip 37.129.28.122 112233 port 59 112233 unique_id port 112233 remote_ip 10.8.0.154 112235 username forozande 112235 mac 112235 bytes_out 1346100 112235 bytes_in 22481798 112235 station_ip 113.203.105.198 112235 port 41 112235 unique_id port 112235 remote_ip 10.8.0.74 112236 username hashtadani3 112236 mac 112236 bytes_out 0 112236 bytes_in 0 112236 station_ip 37.129.28.122 112236 port 41 112236 unique_id port 112236 remote_ip 10.8.0.154 112239 username hashtadani3 112239 mac 112239 bytes_out 0 112239 bytes_in 0 112239 station_ip 37.129.28.122 112239 port 41 112239 unique_id port 112239 remote_ip 10.8.0.154 112243 username hashtadani3 112243 mac 112243 bytes_out 0 112243 bytes_in 0 112243 station_ip 37.129.28.122 112243 port 59 112243 unique_id port 112243 remote_ip 10.8.0.154 112245 username hashtadani3 112245 mac 112245 bytes_out 0 112245 bytes_in 0 112245 station_ip 37.129.28.122 112245 port 59 112245 unique_id port 112245 remote_ip 10.8.0.154 112246 username hashtadani3 112246 mac 112246 bytes_out 0 112246 bytes_in 0 112246 station_ip 37.129.28.122 112246 port 59 112246 unique_id port 112246 remote_ip 10.8.0.154 112248 username hashtadani3 112248 mac 112248 bytes_out 0 112248 bytes_in 0 112248 station_ip 37.129.28.122 112248 port 64 112248 unique_id port 112248 remote_ip 10.8.0.154 112250 username hashtadani3 112250 mac 112250 bytes_out 0 112250 bytes_in 0 112250 station_ip 37.129.28.122 112250 port 59 112250 unique_id port 112250 remote_ip 10.8.0.154 112253 username hashtadani3 112253 mac 112253 bytes_out 0 112253 bytes_in 0 112253 station_ip 37.129.28.122 112253 port 59 112253 unique_id port 112253 remote_ip 10.8.0.154 112257 username hashtadani3 112257 mac 112257 bytes_out 0 112257 bytes_in 0 112257 station_ip 37.129.28.122 112257 port 41 112257 unique_id port 112257 remote_ip 10.8.0.154 112264 username hashtadani3 112264 kill_reason Maximum check online fails reached 112264 mac 112264 bytes_out 0 112264 bytes_in 0 112264 station_ip 37.129.28.122 112264 port 19 112264 unique_id port 112269 username hashtadani3 112269 mac 112269 bytes_out 0 112269 bytes_in 0 112269 station_ip 37.129.28.122 112269 port 41 112269 unique_id port 112269 remote_ip 10.8.0.154 112272 username hashtadani3 112272 mac 112272 bytes_out 0 112272 bytes_in 0 112272 station_ip 37.129.28.122 112272 port 63 112272 unique_id port 112272 remote_ip 10.8.0.154 112273 username hashtadani3 112273 mac 112273 bytes_out 0 112273 bytes_in 0 112273 station_ip 37.129.28.122 112273 port 29 112273 unique_id port 112273 remote_ip 10.8.1.94 112276 username hashtadani3 112276 kill_reason Maximum check online fails reached 112276 mac 112276 bytes_out 0 112276 bytes_in 0 112276 station_ip 37.129.28.122 112276 port 28 112276 unique_id port 112277 username hashtadani3 112277 mac 112277 bytes_out 0 112277 bytes_in 0 112277 station_ip 37.129.28.122 112277 port 64 112277 unique_id port 112277 remote_ip 10.8.0.154 112279 username alipour 112279 mac 112279 bytes_out 0 112279 bytes_in 0 112279 station_ip 83.123.217.110 112279 port 32 112279 unique_id port 112281 username hashtadani3 112281 mac 112281 bytes_out 0 112281 bytes_in 0 112281 station_ip 37.129.28.122 112281 port 64 112281 unique_id port 112281 remote_ip 10.8.0.154 112282 username aminvpn 112282 mac 112282 bytes_out 236015 112282 bytes_in 698023 112282 station_ip 83.122.135.133 112282 port 32 112282 unique_id port 112282 remote_ip 10.8.0.14 112284 username hashtadani3 112284 mac 112284 bytes_out 0 112284 bytes_in 0 112284 station_ip 37.129.28.122 112284 port 64 112284 unique_id port 112284 remote_ip 10.8.0.154 112286 username avaanna 112286 mac 112286 bytes_out 35687 112286 bytes_in 42541 112286 station_ip 37.129.57.219 112286 port 41 112286 unique_id port 112286 remote_ip 10.8.0.98 112290 username mohammadjavad 112290 mac 112290 bytes_out 1643740 112290 bytes_in 31139280 112290 station_ip 83.123.200.215 112290 port 63 112290 unique_id port 112290 remote_ip 10.8.0.142 112291 username hashtadani3 112291 kill_reason Another user logged on this global unique id 112291 mac 112291 bytes_out 0 112291 bytes_in 0 112291 station_ip 37.129.28.122 112291 port 32 112291 unique_id port 112291 remote_ip 10.8.0.154 112292 username mirzaei 112292 kill_reason Another user logged on this global unique id 112292 mac 112292 bytes_out 0 112292 bytes_in 0 112292 station_ip 5.120.191.187 112292 port 18 112292 unique_id port 112293 username forozande 112293 mac 112293 bytes_out 245862 112293 bytes_in 1743028 112293 station_ip 83.123.220.111 112293 port 59 112293 unique_id port 112293 remote_ip 10.8.0.74 112301 username hashtadani3 112301 mac 112301 bytes_out 0 112301 bytes_in 0 112301 station_ip 37.129.28.122 112301 port 32 112301 unique_id port 112301 remote_ip 10.8.0.154 112307 username hashtadani3 112307 mac 112307 bytes_out 0 112307 bytes_in 0 112307 station_ip 37.129.28.122 112307 port 32 112307 unique_id port 112307 remote_ip 10.8.0.154 112309 username hashtadani3 112309 mac 112309 bytes_out 0 112309 bytes_in 0 112309 station_ip 37.129.28.122 112309 port 32 112309 unique_id port 112309 remote_ip 10.8.0.154 112314 username mehdizare 112314 mac 112314 bytes_out 0 112314 bytes_in 0 112314 station_ip 5.119.132.42 112314 port 62 112314 unique_id port 112267 remote_ip 10.8.0.154 112271 username hashtadani3 112271 mac 112271 bytes_out 0 112271 bytes_in 0 112271 station_ip 37.129.28.122 112271 port 28 112271 unique_id port 112271 remote_ip 10.8.1.94 112275 username hashtadani3 112275 mac 112275 bytes_out 0 112275 bytes_in 0 112275 station_ip 37.129.28.122 112275 port 64 112275 unique_id port 112275 remote_ip 10.8.0.154 112283 username hashtadani3 112283 mac 112283 bytes_out 0 112283 bytes_in 0 112283 station_ip 37.129.28.122 112283 port 64 112283 unique_id port 112283 remote_ip 10.8.0.154 112285 username hashtadani3 112285 mac 112285 bytes_out 0 112285 bytes_in 0 112285 station_ip 37.129.28.122 112285 port 64 112285 unique_id port 112285 remote_ip 10.8.0.154 112287 username hashtadani3 112287 mac 112287 bytes_out 0 112287 bytes_in 0 112287 station_ip 37.129.28.122 112287 port 64 112287 unique_id port 112287 remote_ip 10.8.0.154 112289 username mahdiyehalizadeh 112289 mac 112289 bytes_out 64404 112289 bytes_in 269312 112289 station_ip 83.123.78.33 112289 port 32 112289 unique_id port 112289 remote_ip 10.8.0.82 112296 username morteza 112296 mac 112296 bytes_out 4981 112296 bytes_in 10332 112296 station_ip 37.129.254.50 112296 port 63 112296 unique_id port 112296 remote_ip 10.8.0.46 112298 username hashtadani3 112298 mac 112298 bytes_out 0 112298 bytes_in 0 112298 station_ip 37.129.28.122 112298 port 32 112298 unique_id port 112298 remote_ip 10.8.0.154 112299 username hashtadani3 112299 mac 112299 bytes_out 0 112299 bytes_in 0 112299 station_ip 37.129.28.122 112299 port 32 112299 unique_id port 112299 remote_ip 10.8.0.154 112304 username hashtadani3 112304 mac 112304 bytes_out 0 112304 bytes_in 0 112304 station_ip 37.129.28.122 112304 port 31 112304 unique_id port 112304 remote_ip 10.8.1.94 112310 username hashtadani3 112310 mac 112310 bytes_out 0 112310 bytes_in 0 112310 station_ip 37.129.28.122 112310 port 32 112310 unique_id port 112310 remote_ip 10.8.0.154 112311 username hashtadani3 112311 mac 112311 bytes_out 0 112311 bytes_in 0 112311 station_ip 37.129.28.122 112311 port 32 112311 unique_id port 112311 remote_ip 10.8.0.154 112312 username hashtadani3 112312 mac 112312 bytes_out 0 112312 bytes_in 0 112312 station_ip 37.129.28.122 112312 port 32 112312 unique_id port 112312 remote_ip 10.8.0.154 112316 username hashtadani3 112316 mac 112316 bytes_out 0 112316 bytes_in 0 112316 station_ip 37.129.28.122 112316 port 32 112316 unique_id port 112316 remote_ip 10.8.0.154 112318 username alipour 112318 mac 112318 bytes_out 0 112318 bytes_in 0 112318 station_ip 83.123.217.110 112318 port 29 112318 unique_id port 112318 remote_ip 10.8.1.50 112320 username hashtadani3 112320 mac 112320 bytes_out 0 112320 bytes_in 0 112320 station_ip 37.129.28.122 112320 port 31 112320 unique_id port 112320 remote_ip 10.8.1.94 112322 username hashtadani3 112322 mac 112322 bytes_out 0 112322 bytes_in 0 112322 station_ip 37.129.28.122 112322 port 62 112322 unique_id port 112322 remote_ip 10.8.0.154 112329 username hashtadani3 112329 mac 112329 bytes_out 0 112329 bytes_in 0 112329 station_ip 37.129.28.122 112329 port 41 112329 unique_id port 112329 remote_ip 10.8.0.154 112331 username hashtadani3 112331 mac 112331 bytes_out 0 112331 bytes_in 0 112331 station_ip 37.129.28.122 112331 port 41 112331 unique_id port 112331 remote_ip 10.8.0.154 112333 username hashtadani3 112333 mac 112270 station_ip 37.129.57.219 112270 port 63 112270 unique_id port 112270 remote_ip 10.8.0.98 112274 username hashtadani3 112274 mac 112274 bytes_out 0 112274 bytes_in 0 112274 station_ip 37.129.28.122 112274 port 29 112274 unique_id port 112274 remote_ip 10.8.1.94 112278 username hashtadani3 112278 mac 112278 bytes_out 0 112278 bytes_in 0 112278 station_ip 37.129.28.122 112278 port 64 112278 unique_id port 112278 remote_ip 10.8.0.154 112280 username hashtadani3 112280 mac 112280 bytes_out 0 112280 bytes_in 0 112280 station_ip 37.129.28.122 112280 port 32 112280 unique_id port 112280 remote_ip 10.8.0.154 112288 username morteza 112288 mac 112288 bytes_out 104248 112288 bytes_in 219358 112288 station_ip 37.129.220.46 112288 port 59 112288 unique_id port 112288 remote_ip 10.8.0.46 112294 username mahdiyehalizadeh 112294 mac 112294 bytes_out 358027 112294 bytes_in 3033821 112294 station_ip 83.123.78.33 112294 port 63 112294 unique_id port 112294 remote_ip 10.8.0.82 112295 username morteza 112295 mac 112295 bytes_out 222625 112295 bytes_in 578781 112295 station_ip 37.129.254.50 112295 port 59 112295 unique_id port 112295 remote_ip 10.8.0.46 112297 username hashtadani3 112297 mac 112297 bytes_out 0 112297 bytes_in 0 112297 station_ip 37.129.28.122 112297 port 32 112297 unique_id port 112300 username hashtadani3 112300 mac 112300 bytes_out 0 112300 bytes_in 0 112300 station_ip 37.129.28.122 112300 port 32 112300 unique_id port 112300 remote_ip 10.8.0.154 112302 username hashtadani3 112302 mac 112302 bytes_out 0 112302 bytes_in 0 112302 station_ip 37.129.28.122 112302 port 32 112302 unique_id port 112302 remote_ip 10.8.0.154 112303 username hashtadani3 112303 mac 112303 bytes_out 0 112303 bytes_in 0 112303 station_ip 37.129.28.122 112303 port 31 112303 unique_id port 112303 remote_ip 10.8.1.94 112305 username hashtadani3 112305 mac 112305 bytes_out 0 112305 bytes_in 0 112305 station_ip 37.129.28.122 112305 port 31 112305 unique_id port 112305 remote_ip 10.8.1.94 112306 username hashtadani3 112306 mac 112306 bytes_out 0 112306 bytes_in 0 112306 station_ip 37.129.28.122 112306 port 32 112306 unique_id port 112306 remote_ip 10.8.0.154 112308 username hashtadani3 112308 mac 112308 bytes_out 0 112308 bytes_in 0 112308 station_ip 37.129.28.122 112308 port 32 112308 unique_id port 112308 remote_ip 10.8.0.154 112313 username forozande 112313 mac 112313 bytes_out 147860 112313 bytes_in 351283 112313 station_ip 83.122.44.40 112313 port 59 112313 unique_id port 112313 remote_ip 10.8.0.74 112315 username hashtadani3 112315 mac 112315 bytes_out 6629 112315 bytes_in 14122 112315 station_ip 37.129.28.122 112315 port 32 112315 unique_id port 112315 remote_ip 10.8.0.154 112317 username hashtadani3 112317 mac 112317 bytes_out 0 112317 bytes_in 0 112317 station_ip 37.129.28.122 112317 port 32 112317 unique_id port 112317 remote_ip 10.8.0.154 112319 username hashtadani3 112319 mac 112319 bytes_out 0 112319 bytes_in 0 112319 station_ip 37.129.28.122 112319 port 31 112319 unique_id port 112319 remote_ip 10.8.1.94 112321 username hashtadani3 112321 mac 112321 bytes_out 0 112321 bytes_in 0 112321 station_ip 37.129.28.122 112321 port 62 112321 unique_id port 112321 remote_ip 10.8.0.154 112323 username hashtadani3 112323 kill_reason Maximum check online fails reached 112323 mac 112323 bytes_out 0 112323 bytes_in 0 112323 station_ip 37.129.28.122 112323 port 32 112314 remote_ip 10.8.0.90 112324 username hashtadani3 112324 mac 112324 bytes_out 0 112324 bytes_in 0 112324 station_ip 37.129.28.122 112324 port 31 112324 unique_id port 112324 remote_ip 10.8.1.94 112326 username hashtadani3 112326 mac 112326 bytes_out 0 112326 bytes_in 0 112326 station_ip 37.129.28.122 112326 port 63 112326 unique_id port 112326 remote_ip 10.8.0.154 112330 username hashtadani3 112330 mac 112330 bytes_out 0 112330 bytes_in 0 112330 station_ip 37.129.28.122 112330 port 41 112330 unique_id port 112330 remote_ip 10.8.0.154 112332 username hashtadani3 112332 mac 112332 bytes_out 0 112332 bytes_in 0 112332 station_ip 37.129.28.122 112332 port 41 112332 unique_id port 112332 remote_ip 10.8.0.154 112336 username hashtadani3 112336 mac 112336 bytes_out 0 112336 bytes_in 0 112336 station_ip 37.129.28.122 112336 port 29 112336 unique_id port 112336 remote_ip 10.8.1.94 112337 username hashtadani3 112337 mac 112337 bytes_out 0 112337 bytes_in 0 112337 station_ip 37.129.28.122 112337 port 59 112337 unique_id port 112337 remote_ip 10.8.0.154 112339 username sedighe 112339 mac 112339 bytes_out 582236 112339 bytes_in 6642266 112339 station_ip 83.122.65.5 112339 port 62 112339 unique_id port 112339 remote_ip 10.8.0.146 112342 username hashtadani3 112342 mac 112342 bytes_out 14353 112342 bytes_in 26389 112342 station_ip 37.129.28.122 112342 port 59 112342 unique_id port 112342 remote_ip 10.8.0.154 112344 username ahmadi 112344 unique_id port 112344 terminate_cause User-Request 112344 bytes_out 192135 112344 bytes_in 2094351 112344 station_ip 37.129.189.134 112344 port 15729220 112344 nas_port_type Virtual 112344 remote_ip 5.5.5.254 112347 username hashtadani3 112347 mac 112347 bytes_out 0 112347 bytes_in 0 112347 station_ip 37.129.64.38 112347 port 62 112347 unique_id port 112347 remote_ip 10.8.0.154 112350 username hashtadani3 112350 mac 112350 bytes_out 0 112350 bytes_in 0 112350 station_ip 37.129.64.38 112350 port 68 112350 unique_id port 112350 remote_ip 10.8.0.154 112351 username hashtadani3 112351 mac 112351 bytes_out 0 112351 bytes_in 0 112351 station_ip 37.129.64.38 112351 port 68 112351 unique_id port 112351 remote_ip 10.8.0.154 112359 username hashtadani3 112359 kill_reason Another user logged on this global unique id 112359 mac 112359 bytes_out 0 112359 bytes_in 0 112359 station_ip 37.129.64.38 112359 port 62 112359 unique_id port 112359 remote_ip 10.8.0.154 112368 username forozande 112368 mac 112368 bytes_out 0 112368 bytes_in 0 112368 station_ip 37.129.105.212 112368 port 64 112368 unique_id port 112368 remote_ip 10.8.0.74 112370 username hashtadani3 112370 mac 112370 bytes_out 0 112370 bytes_in 0 112370 station_ip 37.129.64.38 112370 port 64 112370 unique_id port 112370 remote_ip 10.8.0.154 112374 username malekpoir 112374 mac 112374 bytes_out 0 112374 bytes_in 0 112374 station_ip 5.119.201.117 112374 port 51 112374 unique_id port 112375 username forozande 112375 mac 112375 bytes_out 0 112375 bytes_in 0 112375 station_ip 37.129.4.170 112375 port 69 112375 unique_id port 112375 remote_ip 10.8.0.74 112378 username hashtadani3 112378 mac 112378 bytes_out 0 112378 bytes_in 0 112378 station_ip 37.129.64.38 112378 port 64 112378 unique_id port 112378 remote_ip 10.8.0.154 112390 username hashtadani3 112390 mac 112390 bytes_out 0 112390 bytes_in 0 112390 station_ip 37.129.64.38 112390 port 41 112390 unique_id port 112390 remote_ip 10.8.0.154 112323 unique_id port 112325 username hashtadani3 112325 mac 112325 bytes_out 0 112325 bytes_in 0 112325 station_ip 37.129.28.122 112325 port 63 112325 unique_id port 112325 remote_ip 10.8.0.154 112327 username hashtadani3 112327 mac 112327 bytes_out 0 112327 bytes_in 0 112327 station_ip 37.129.28.122 112327 port 63 112327 unique_id port 112327 remote_ip 10.8.0.154 112328 username avaanna 112328 mac 112328 bytes_out 0 112328 bytes_in 0 112328 station_ip 37.129.57.219 112328 port 41 112328 unique_id port 112328 remote_ip 10.8.0.98 112334 username alipour 112334 mac 112334 bytes_out 0 112334 bytes_in 0 112334 station_ip 83.123.217.110 112334 port 29 112334 unique_id port 112334 remote_ip 10.8.1.50 112335 username mehdizare 112335 mac 112335 bytes_out 98066 112335 bytes_in 170045 112335 station_ip 5.119.132.42 112335 port 59 112335 unique_id port 112335 remote_ip 10.8.0.90 112338 username hashtadani3 112338 mac 112338 bytes_out 0 112338 bytes_in 0 112338 station_ip 37.129.28.122 112338 port 68 112338 unique_id port 112338 remote_ip 10.8.0.154 112341 username tahmasebi 112341 kill_reason Another user logged on this global unique id 112341 mac 112341 bytes_out 0 112341 bytes_in 0 112341 station_ip 5.119.50.227 112341 port 52 112341 unique_id port 112343 username mehdizare 112343 mac 112343 bytes_out 262980 112343 bytes_in 1695585 112343 station_ip 5.119.132.42 112343 port 29 112343 unique_id port 112343 remote_ip 10.8.1.42 112345 username malekpoir 112345 kill_reason Another user logged on this global unique id 112345 mac 112345 bytes_out 0 112345 bytes_in 0 112345 station_ip 5.119.201.117 112345 port 51 112345 unique_id port 112345 remote_ip 10.8.0.58 112346 username hashtadani3 112346 mac 112346 bytes_out 0 112346 bytes_in 0 112346 station_ip 37.129.64.38 112346 port 31 112346 unique_id port 112346 remote_ip 10.8.1.94 112349 username hashtadani3 112349 kill_reason Maximum check online fails reached 112349 mac 112349 bytes_out 0 112349 bytes_in 0 112349 station_ip 37.129.64.38 112349 port 31 112349 unique_id port 112353 username malekpoir 112353 kill_reason Another user logged on this global unique id 112353 mac 112353 bytes_out 0 112353 bytes_in 0 112353 station_ip 5.119.201.117 112353 port 51 112353 unique_id port 112355 username alipour 112355 kill_reason Another user logged on this global unique id 112355 mac 112355 bytes_out 0 112355 bytes_in 0 112355 station_ip 83.123.217.110 112355 port 64 112355 unique_id port 112355 remote_ip 10.8.0.102 112356 username forozande 112356 mac 112356 bytes_out 0 112356 bytes_in 0 112356 station_ip 83.122.164.37 112356 port 41 112356 unique_id port 112356 remote_ip 10.8.0.74 112357 username avaanna 112357 mac 112357 bytes_out 114673 112357 bytes_in 150466 112357 station_ip 37.129.57.219 112357 port 63 112357 unique_id port 112357 remote_ip 10.8.0.98 112360 username hashtadani3 112360 mac 112360 bytes_out 0 112360 bytes_in 0 112360 station_ip 37.129.64.38 112360 port 62 112360 unique_id port 112361 username hashtadani3 112361 mac 112361 bytes_out 0 112361 bytes_in 0 112361 station_ip 37.129.64.38 112361 port 62 112361 unique_id port 112361 remote_ip 10.8.0.154 112365 username avaanna 112365 kill_reason Another user logged on this global unique id 112365 mac 112365 bytes_out 0 112365 bytes_in 0 112365 station_ip 37.129.57.219 112365 port 41 112365 unique_id port 112365 remote_ip 10.8.0.98 112367 username hashtadani3 112367 mac 112367 bytes_out 0 112367 bytes_in 0 112367 station_ip 37.129.64.38 112367 port 62 112333 bytes_out 0 112333 bytes_in 0 112333 station_ip 37.129.28.122 112333 port 64 112333 unique_id port 112333 remote_ip 10.8.0.154 112340 username mehdizare 112340 mac 112340 bytes_out 33829 112340 bytes_in 70033 112340 station_ip 5.119.132.42 112340 port 62 112340 unique_id port 112340 remote_ip 10.8.0.90 112348 username hashtadani3 112348 mac 112348 bytes_out 0 112348 bytes_in 0 112348 station_ip 37.129.64.38 112348 port 62 112348 unique_id port 112348 remote_ip 10.8.0.154 112352 username kamali1 112352 mac 112352 bytes_out 47994 112352 bytes_in 84898 112352 station_ip 5.119.100.18 112352 port 62 112352 unique_id port 112352 remote_ip 10.8.0.70 112354 username forozande 112354 mac 112354 bytes_out 791172 112354 bytes_in 3959698 112354 station_ip 83.123.42.163 112354 port 41 112354 unique_id port 112354 remote_ip 10.8.0.74 112358 username alipour 112358 mac 112358 bytes_out 0 112358 bytes_in 0 112358 station_ip 83.123.217.110 112358 port 64 112358 unique_id port 112362 username hashtadani3 112362 mac 112362 bytes_out 0 112362 bytes_in 0 112362 station_ip 37.129.64.38 112362 port 62 112362 unique_id port 112362 remote_ip 10.8.0.154 112363 username hashtadani3 112363 mac 112363 bytes_out 0 112363 bytes_in 0 112363 station_ip 37.129.64.38 112363 port 62 112363 unique_id port 112363 remote_ip 10.8.0.154 112364 username hashtadani3 112364 mac 112364 bytes_out 0 112364 bytes_in 0 112364 station_ip 37.129.64.38 112364 port 62 112364 unique_id port 112364 remote_ip 10.8.0.154 112366 username amir 112366 mac 112366 bytes_out 0 112366 bytes_in 0 112366 station_ip 46.225.209.249 112366 port 59 112366 unique_id port 112366 remote_ip 10.8.0.50 112369 username hashtadani3 112369 mac 112369 bytes_out 274255 112369 bytes_in 3938764 112369 station_ip 37.129.64.38 112369 port 32 112369 unique_id port 112369 remote_ip 10.8.1.94 112372 username hashtadani3 112372 mac 112372 bytes_out 0 112372 bytes_in 0 112372 station_ip 37.129.64.38 112372 port 64 112372 unique_id port 112372 remote_ip 10.8.0.154 112376 username hashtadani3 112376 mac 112376 bytes_out 97333 112376 bytes_in 947775 112376 station_ip 37.129.64.38 112376 port 32 112376 unique_id port 112376 remote_ip 10.8.1.94 112377 username hashtadani3 112377 mac 112377 bytes_out 0 112377 bytes_in 0 112377 station_ip 37.129.64.38 112377 port 64 112377 unique_id port 112377 remote_ip 10.8.0.154 112381 username hashtadani3 112381 mac 112381 bytes_out 0 112381 bytes_in 0 112381 station_ip 37.129.64.38 112381 port 32 112381 unique_id port 112381 remote_ip 10.8.1.94 112384 username avaanna 112384 mac 112384 bytes_out 0 112384 bytes_in 0 112384 station_ip 37.129.57.219 112384 port 41 112384 unique_id port 112385 username mehdizare 112385 mac 112385 bytes_out 0 112385 bytes_in 0 112385 station_ip 5.119.132.42 112385 port 69 112385 unique_id port 112385 remote_ip 10.8.0.90 112388 username alirr 112388 unique_id port 112388 terminate_cause Lost-Carrier 112388 bytes_out 1537981 112388 bytes_in 28103250 112388 station_ip 5.120.5.119 112388 port 15729221 112388 nas_port_type Virtual 112388 remote_ip 5.5.5.254 112397 username hashtadani3 112397 mac 112397 bytes_out 0 112397 bytes_in 0 112397 station_ip 37.129.64.38 112397 port 32 112397 unique_id port 112397 remote_ip 10.8.1.94 112398 username hashtadani3 112398 mac 112398 bytes_out 0 112398 bytes_in 0 112398 station_ip 37.129.64.38 112398 port 71 112398 unique_id port 112367 unique_id port 112367 remote_ip 10.8.0.154 112371 username zare 112371 mac 112371 bytes_out 0 112371 bytes_in 0 112371 station_ip 94.183.214.14 112371 port 59 112371 unique_id port 112371 remote_ip 10.8.0.18 112373 username hashtadani3 112373 mac 112373 bytes_out 0 112373 bytes_in 0 112373 station_ip 37.129.64.38 112373 port 64 112373 unique_id port 112373 remote_ip 10.8.0.154 112379 username hashtadani3 112379 kill_reason Maximum check online fails reached 112379 mac 112379 bytes_out 0 112379 bytes_in 0 112379 station_ip 37.129.64.38 112379 port 64 112379 unique_id port 112380 username mehdizare 112380 mac 112380 bytes_out 2041632 112380 bytes_in 8518345 112380 station_ip 5.119.132.42 112380 port 29 112380 unique_id port 112380 remote_ip 10.8.1.42 112382 username hashtadani3 112382 mac 112382 bytes_out 0 112382 bytes_in 0 112382 station_ip 37.129.64.38 112382 port 29 112382 unique_id port 112382 remote_ip 10.8.1.94 112383 username hashtadani3 112383 mac 112383 bytes_out 0 112383 bytes_in 0 112383 station_ip 37.129.64.38 112383 port 71 112383 unique_id port 112383 remote_ip 10.8.0.154 112386 username malekpoir 112386 mac 112386 bytes_out 0 112386 bytes_in 0 112386 station_ip 5.119.201.117 112386 port 51 112386 unique_id port 112386 remote_ip 10.8.0.58 112387 username mehdizare 112387 mac 112387 bytes_out 0 112387 bytes_in 0 112387 station_ip 5.119.132.42 112387 port 72 112387 unique_id port 112387 remote_ip 10.8.0.90 112389 username avaanna 112389 mac 112389 bytes_out 0 112389 bytes_in 0 112389 station_ip 37.129.57.219 112389 port 71 112389 unique_id port 112389 remote_ip 10.8.0.98 112392 username morteza 112392 mac 112392 bytes_out 348380 112392 bytes_in 8135533 112392 station_ip 37.129.249.26 112392 port 70 112392 unique_id port 112392 remote_ip 10.8.0.46 112394 username hashtadani3 112394 mac 112394 bytes_out 0 112394 bytes_in 0 112394 station_ip 37.129.64.38 112394 port 32 112394 unique_id port 112394 remote_ip 10.8.1.94 112396 username hashtadani3 112396 mac 112396 bytes_out 0 112396 bytes_in 0 112396 station_ip 37.129.64.38 112396 port 71 112396 unique_id port 112396 remote_ip 10.8.0.154 112399 username ahmadi 112399 unique_id port 112399 terminate_cause User-Request 112399 bytes_out 343269 112399 bytes_in 4599019 112399 station_ip 37.129.189.134 112399 port 15729222 112399 nas_port_type Virtual 112399 remote_ip 5.5.5.254 112406 username morteza 112406 mac 112406 bytes_out 11737 112406 bytes_in 20675 112406 station_ip 37.129.249.26 112406 port 41 112406 unique_id port 112406 remote_ip 10.8.0.46 112408 username zare 112408 mac 112408 bytes_out 0 112408 bytes_in 0 112408 station_ip 94.183.214.14 112408 port 41 112408 unique_id port 112408 remote_ip 10.8.0.18 112410 username avaanna 112410 mac 112410 bytes_out 55137 112410 bytes_in 73000 112410 station_ip 37.129.57.219 112410 port 29 112410 unique_id port 112410 remote_ip 10.8.1.46 112417 username mohammadjavad 112417 mac 112417 bytes_out 0 112417 bytes_in 0 112417 station_ip 37.129.18.55 112417 port 70 112417 unique_id port 112417 remote_ip 10.8.0.142 112418 username avaanna 112418 mac 112418 bytes_out 337326 112418 bytes_in 4982252 112418 station_ip 37.129.57.219 112418 port 41 112418 unique_id port 112418 remote_ip 10.8.0.98 112419 username hashtadani3 112419 mac 112419 bytes_out 0 112419 bytes_in 0 112419 station_ip 113.203.86.142 112419 port 29 112419 unique_id port 112419 remote_ip 10.8.1.94 112391 username hashtadani3 112391 mac 112391 bytes_out 0 112391 bytes_in 0 112391 station_ip 37.129.64.38 112391 port 41 112391 unique_id port 112391 remote_ip 10.8.0.154 112393 username hashtadani3 112393 mac 112393 bytes_out 0 112393 bytes_in 0 112393 station_ip 37.129.64.38 112393 port 32 112393 unique_id port 112393 remote_ip 10.8.1.94 112395 username hashtadani3 112395 mac 112395 bytes_out 0 112395 bytes_in 0 112395 station_ip 37.129.64.38 112395 port 71 112395 unique_id port 112395 remote_ip 10.8.0.154 112401 username hashtadani3 112401 mac 112401 bytes_out 0 112401 bytes_in 0 112401 station_ip 37.129.64.38 112401 port 71 112401 unique_id port 112401 remote_ip 10.8.0.154 112402 username hashtadani3 112402 mac 112402 bytes_out 0 112402 bytes_in 0 112402 station_ip 37.129.64.38 112402 port 32 112402 unique_id port 112402 remote_ip 10.8.1.94 112403 username kordestani 112403 mac 112403 bytes_out 0 112403 bytes_in 0 112403 station_ip 151.235.77.111 112403 port 72 112403 unique_id port 112403 remote_ip 10.8.0.134 112405 username morteza 112405 mac 112405 bytes_out 438056 112405 bytes_in 8157346 112405 station_ip 37.129.249.26 112405 port 41 112405 unique_id port 112405 remote_ip 10.8.0.46 112407 username zare 112407 mac 112407 bytes_out 0 112407 bytes_in 0 112407 station_ip 94.183.214.14 112407 port 59 112407 unique_id port 112407 remote_ip 10.8.0.18 112411 username zare 112411 mac 112411 bytes_out 0 112411 bytes_in 0 112411 station_ip 94.183.214.14 112411 port 59 112411 unique_id port 112411 remote_ip 10.8.0.18 112412 username aminvpn 112412 unique_id port 112412 terminate_cause Lost-Carrier 112412 bytes_out 238271 112412 bytes_in 1981300 112412 station_ip 5.119.172.223 112412 port 15729223 112412 nas_port_type Virtual 112412 remote_ip 5.5.5.254 112413 username zare 112413 mac 112413 bytes_out 0 112413 bytes_in 0 112413 station_ip 94.183.214.14 112413 port 29 112413 unique_id port 112413 remote_ip 10.8.1.58 112415 username khalili 112415 mac 112415 bytes_out 2761325 112415 bytes_in 24664712 112415 station_ip 5.120.17.157 112415 port 68 112415 unique_id port 112415 remote_ip 10.8.0.86 112421 username hashtadani3 112421 mac 112421 bytes_out 0 112421 bytes_in 0 112421 station_ip 5.202.2.145 112421 port 29 112421 unique_id port 112421 remote_ip 10.8.1.94 112422 username zare 112422 mac 112422 bytes_out 0 112422 bytes_in 0 112422 station_ip 94.183.214.14 112422 port 59 112422 unique_id port 112422 remote_ip 10.8.0.18 112428 username hashtadani3 112428 mac 112428 bytes_out 0 112428 bytes_in 0 112428 station_ip 5.202.2.145 112428 port 63 112428 unique_id port 112428 remote_ip 10.8.0.154 112430 username alipour 112430 mac 112430 bytes_out 28865 112430 bytes_in 36884 112430 station_ip 83.123.217.110 112430 port 73 112430 unique_id port 112430 remote_ip 10.8.0.102 112432 username mehdizare 112432 mac 112432 bytes_out 0 112432 bytes_in 0 112432 station_ip 5.119.132.42 112432 port 69 112432 unique_id port 112432 remote_ip 10.8.0.90 112433 username zare 112433 mac 112433 bytes_out 0 112433 bytes_in 0 112433 station_ip 94.183.214.14 112433 port 69 112433 unique_id port 112433 remote_ip 10.8.0.18 112434 username alipour 112434 mac 112434 bytes_out 0 112434 bytes_in 0 112434 station_ip 83.123.217.110 112434 port 74 112434 unique_id port 112434 remote_ip 10.8.0.102 112439 username mehdizare 112439 mac 112439 bytes_out 0 112398 remote_ip 10.8.0.154 112400 username hashtadani3 112400 mac 112400 bytes_out 0 112400 bytes_in 0 112400 station_ip 37.129.64.38 112400 port 71 112400 unique_id port 112400 remote_ip 10.8.0.154 112404 username hashtadani3 112404 mac 112404 bytes_out 14326 112404 bytes_in 46125 112404 station_ip 5.202.24.89 112404 port 32 112404 unique_id port 112404 remote_ip 10.8.1.94 112409 username zare 112409 mac 112409 bytes_out 0 112409 bytes_in 0 112409 station_ip 94.183.214.14 112409 port 41 112409 unique_id port 112409 remote_ip 10.8.0.18 112414 username zare 112414 mac 112414 bytes_out 0 112414 bytes_in 0 112414 station_ip 94.183.214.14 112414 port 59 112414 unique_id port 112414 remote_ip 10.8.0.18 112416 username alipour 112416 mac 112416 bytes_out 781275 112416 bytes_in 5910131 112416 station_ip 83.123.217.110 112416 port 63 112416 unique_id port 112416 remote_ip 10.8.0.102 112423 username hashtadani3 112423 mac 112423 bytes_out 0 112423 bytes_in 0 112423 station_ip 5.202.2.145 112423 port 29 112423 unique_id port 112423 remote_ip 10.8.1.94 112426 username alipour 112426 mac 112426 bytes_out 88883 112426 bytes_in 97218 112426 station_ip 83.123.217.110 112426 port 63 112426 unique_id port 112426 remote_ip 10.8.0.102 112429 username hashtadani3 112429 kill_reason Maximum check online fails reached 112429 mac 112429 bytes_out 0 112429 bytes_in 0 112429 station_ip 5.202.2.145 112429 port 72 112429 unique_id port 112431 username zare 112431 mac 112431 bytes_out 0 112431 bytes_in 0 112431 station_ip 94.183.214.14 112431 port 63 112431 unique_id port 112431 remote_ip 10.8.0.18 112436 username zare 112436 mac 112436 bytes_out 0 112436 bytes_in 0 112436 station_ip 94.183.214.14 112436 port 32 112436 unique_id port 112436 remote_ip 10.8.1.58 112440 username zare 112440 mac 112440 bytes_out 0 112440 bytes_in 0 112440 station_ip 94.183.214.14 112440 port 63 112440 unique_id port 112440 remote_ip 10.8.0.18 112442 username zare 112442 mac 112442 bytes_out 0 112442 bytes_in 0 112442 station_ip 94.183.214.14 112442 port 63 112442 unique_id port 112442 remote_ip 10.8.0.18 112443 username zare 112443 mac 112443 bytes_out 0 112443 bytes_in 0 112443 station_ip 94.183.214.14 112443 port 63 112443 unique_id port 112443 remote_ip 10.8.0.18 112445 username alipour 112445 mac 112445 bytes_out 0 112445 bytes_in 0 112445 station_ip 83.123.217.110 112445 port 29 112445 unique_id port 112445 remote_ip 10.8.1.50 112446 username malekpoir 112446 kill_reason Another user logged on this global unique id 112446 mac 112446 bytes_out 0 112446 bytes_in 0 112446 station_ip 5.119.201.117 112446 port 51 112446 unique_id port 112446 remote_ip 10.8.0.58 112450 username hashtadani3 112450 mac 112450 bytes_out 174756 112450 bytes_in 161737 112450 station_ip 5.202.2.145 112450 port 59 112450 unique_id port 112450 remote_ip 10.8.0.154 112455 username alipour 112455 mac 112455 bytes_out 55314 112455 bytes_in 105621 112455 station_ip 83.123.217.110 112455 port 59 112455 unique_id port 112455 remote_ip 10.8.0.102 112465 username mehdizare 112465 mac 112465 bytes_out 0 112465 bytes_in 0 112465 station_ip 5.119.132.42 112465 port 33 112465 unique_id port 112465 remote_ip 10.8.1.42 112467 username mehdizare 112467 mac 112467 bytes_out 20875 112467 bytes_in 43288 112467 station_ip 5.119.132.42 112467 port 59 112467 unique_id port 112467 remote_ip 10.8.0.90 112470 username kamali1 112470 mac 112420 username hashtadani3 112420 mac 112420 bytes_out 142008 112420 bytes_in 976163 112420 station_ip 5.202.2.145 112420 port 29 112420 unique_id port 112420 remote_ip 10.8.1.94 112424 username tahmasebi 112424 kill_reason Another user logged on this global unique id 112424 mac 112424 bytes_out 0 112424 bytes_in 0 112424 station_ip 5.119.50.227 112424 port 52 112424 unique_id port 112425 username hashtadani3 112425 kill_reason Maximum check online fails reached 112425 mac 112425 bytes_out 0 112425 bytes_in 0 112425 station_ip 5.202.2.145 112425 port 70 112425 unique_id port 112427 username zare 112427 mac 112427 bytes_out 0 112427 bytes_in 0 112427 station_ip 94.183.214.14 112427 port 59 112427 unique_id port 112427 remote_ip 10.8.0.18 112435 username alipour 112435 mac 112435 bytes_out 34416 112435 bytes_in 39397 112435 station_ip 83.123.217.110 112435 port 29 112435 unique_id port 112435 remote_ip 10.8.1.50 112437 username hashtadani3 112437 mac 112437 bytes_out 185304 112437 bytes_in 897688 112437 station_ip 5.202.2.145 112437 port 59 112437 unique_id port 112437 remote_ip 10.8.0.154 112438 username hashtadani3 112438 mac 112438 bytes_out 0 112438 bytes_in 0 112438 station_ip 5.202.2.145 112438 port 59 112438 unique_id port 112438 remote_ip 10.8.0.154 112448 username kordestani 112448 mac 112448 bytes_out 530661 112448 bytes_in 2406931 112448 station_ip 151.235.77.111 112448 port 68 112448 unique_id port 112448 remote_ip 10.8.0.134 112449 username mehdizare 112449 mac 112449 bytes_out 21660 112449 bytes_in 38472 112449 station_ip 5.119.132.42 112449 port 32 112449 unique_id port 112449 remote_ip 10.8.1.42 112457 username kamali1 112457 mac 112457 bytes_out 509253 112457 bytes_in 2020451 112457 station_ip 5.119.100.18 112457 port 63 112457 unique_id port 112457 remote_ip 10.8.0.70 112459 username kamali1 112459 mac 112459 bytes_out 0 112459 bytes_in 0 112459 station_ip 5.119.100.18 112459 port 32 112459 unique_id port 112459 remote_ip 10.8.1.26 112460 username mehdizare 112460 mac 112460 bytes_out 50741 112460 bytes_in 158183 112460 station_ip 5.119.132.42 112460 port 29 112460 unique_id port 112460 remote_ip 10.8.1.42 112462 username amir 112462 kill_reason Another user logged on this global unique id 112462 mac 112462 bytes_out 0 112462 bytes_in 0 112462 station_ip 46.225.208.86 112462 port 68 112462 unique_id port 112462 remote_ip 10.8.0.50 112463 username alipour 112463 mac 112463 bytes_out 647127 112463 bytes_in 4337170 112463 station_ip 83.123.217.110 112463 port 69 112463 unique_id port 112463 remote_ip 10.8.0.102 112464 username mehdizare 112464 mac 112464 bytes_out 10574 112464 bytes_in 17686 112464 station_ip 5.119.132.42 112464 port 32 112464 unique_id port 112464 remote_ip 10.8.1.42 112466 username rajaei 112466 mac 112466 bytes_out 0 112466 bytes_in 0 112466 station_ip 37.137.24.46 112466 port 73 112466 unique_id port 112466 remote_ip 10.8.0.34 112472 username kordestani 112472 mac 112472 bytes_out 1163029 112472 bytes_in 12580205 112472 station_ip 151.235.77.111 112472 port 59 112472 unique_id port 112472 remote_ip 10.8.0.134 112477 username zare 112477 mac 112477 bytes_out 0 112477 bytes_in 0 112477 station_ip 94.183.214.14 112477 port 63 112477 unique_id port 112477 remote_ip 10.8.0.18 112481 username zare 112481 mac 112481 bytes_out 0 112481 bytes_in 0 112481 station_ip 94.183.214.14 112481 port 29 112481 unique_id port 112481 remote_ip 10.8.1.58 112485 username mehdizare 112439 bytes_in 0 112439 station_ip 5.119.132.42 112439 port 63 112439 unique_id port 112439 remote_ip 10.8.0.90 112441 username alipour 112441 mac 112441 bytes_out 0 112441 bytes_in 0 112441 station_ip 83.123.217.110 112441 port 29 112441 unique_id port 112441 remote_ip 10.8.1.50 112444 username mehdizare 112444 mac 112444 bytes_out 0 112444 bytes_in 0 112444 station_ip 5.119.132.42 112444 port 69 112444 unique_id port 112444 remote_ip 10.8.0.90 112447 username alipour 112447 mac 112447 bytes_out 0 112447 bytes_in 0 112447 station_ip 83.123.217.110 112447 port 29 112447 unique_id port 112447 remote_ip 10.8.1.50 112451 username amir 112451 mac 112451 bytes_out 6262501 112451 bytes_in 33266605 112451 station_ip 46.225.209.249 112451 port 62 112451 unique_id port 112451 remote_ip 10.8.0.50 112452 username amir 112452 mac 112452 bytes_out 0 112452 bytes_in 0 112452 station_ip 46.225.214.237 112452 port 59 112452 unique_id port 112452 remote_ip 10.8.0.50 112453 username asma2026 112453 mac 112453 bytes_out 0 112453 bytes_in 0 112453 station_ip 83.123.177.128 112453 port 59 112453 unique_id port 112453 remote_ip 10.8.0.170 112454 username kordestani 112454 mac 112454 bytes_out 52647 112454 bytes_in 341760 112454 station_ip 151.235.77.111 112454 port 69 112454 unique_id port 112454 remote_ip 10.8.0.134 112456 username mehdizare 112456 mac 112456 bytes_out 0 112456 bytes_in 0 112456 station_ip 5.119.132.42 112456 port 29 112456 unique_id port 112456 remote_ip 10.8.1.42 112458 username kamali1 112458 mac 112458 bytes_out 29637 112458 bytes_in 63685 112458 station_ip 5.119.100.18 112458 port 32 112458 unique_id port 112458 remote_ip 10.8.1.26 112461 username kamali1 112461 mac 112461 bytes_out 8761 112461 bytes_in 14963 112461 station_ip 5.119.100.18 112461 port 32 112461 unique_id port 112461 remote_ip 10.8.1.26 112468 username mehdizare 112468 mac 112468 bytes_out 75759 112468 bytes_in 166005 112468 station_ip 5.119.132.42 112468 port 63 112468 unique_id port 112468 remote_ip 10.8.0.90 112469 username malekpoir 112469 mac 112469 bytes_out 0 112469 bytes_in 0 112469 station_ip 5.119.201.117 112469 port 51 112469 unique_id port 112471 username kamali1 112471 mac 112471 bytes_out 7443 112471 bytes_in 11136 112471 station_ip 5.119.100.18 112471 port 29 112471 unique_id port 112471 remote_ip 10.8.1.26 112474 username amir 112474 kill_reason Another user logged on this global unique id 112474 mac 112474 bytes_out 0 112474 bytes_in 0 112474 station_ip 46.225.208.86 112474 port 68 112474 unique_id port 112475 username zare 112475 mac 112475 bytes_out 576172 112475 bytes_in 6612125 112475 station_ip 94.183.214.14 112475 port 63 112475 unique_id port 112475 remote_ip 10.8.0.18 112476 username amir 112476 mac 112476 bytes_out 0 112476 bytes_in 0 112476 station_ip 46.225.208.86 112476 port 68 112476 unique_id port 112478 username mehdizare 112478 mac 112478 bytes_out 0 112478 bytes_in 0 112478 station_ip 5.119.132.42 112478 port 69 112478 unique_id port 112478 remote_ip 10.8.0.90 112480 username zare 112480 mac 112480 bytes_out 0 112480 bytes_in 0 112480 station_ip 94.183.214.14 112480 port 29 112480 unique_id port 112480 remote_ip 10.8.1.58 112483 username amir 112483 mac 112483 bytes_out 668593 112483 bytes_in 8657234 112483 station_ip 46.225.214.31 112483 port 68 112483 unique_id port 112483 remote_ip 10.8.0.50 112486 username mehdizare 112486 mac 112470 bytes_out 0 112470 bytes_in 0 112470 station_ip 5.119.100.18 112470 port 29 112470 unique_id port 112470 remote_ip 10.8.1.26 112473 username tahmasebi 112473 kill_reason Another user logged on this global unique id 112473 mac 112473 bytes_out 0 112473 bytes_in 0 112473 station_ip 5.119.50.227 112473 port 52 112473 unique_id port 112479 username zare 112479 mac 112479 bytes_out 0 112479 bytes_in 0 112479 station_ip 94.183.214.14 112479 port 68 112479 unique_id port 112479 remote_ip 10.8.0.18 112482 username amir 112482 mac 112482 bytes_out 767557 112482 bytes_in 9631037 112482 station_ip 46.225.208.86 112482 port 59 112482 unique_id port 112482 remote_ip 10.8.0.190 112484 username amir 112484 mac 112484 bytes_out 267492 112484 bytes_in 4430860 112484 station_ip 46.225.214.113 112484 port 69 112484 unique_id port 112484 remote_ip 10.8.0.50 112489 username tahmasebi 112489 kill_reason Another user logged on this global unique id 112489 mac 112489 bytes_out 0 112489 bytes_in 0 112489 station_ip 5.119.50.227 112489 port 52 112489 unique_id port 112490 username zare 112490 mac 112490 bytes_out 0 112490 bytes_in 0 112490 station_ip 94.183.214.14 112490 port 29 112490 unique_id port 112490 remote_ip 10.8.1.58 112491 username amir 112491 mac 112491 bytes_out 0 112491 bytes_in 0 112491 station_ip 46.225.212.111 112491 port 59 112491 unique_id port 112491 remote_ip 10.8.0.50 112492 username mehdizare 112492 mac 112492 bytes_out 177395 112492 bytes_in 77617 112492 station_ip 5.119.132.42 112492 port 69 112492 unique_id port 112492 remote_ip 10.8.0.90 112494 username zare 112494 mac 112494 bytes_out 0 112494 bytes_in 0 112494 station_ip 94.183.214.14 112494 port 29 112494 unique_id port 112494 remote_ip 10.8.1.58 112500 username zare 112500 mac 112500 bytes_out 0 112500 bytes_in 0 112500 station_ip 94.183.214.14 112500 port 33 112500 unique_id port 112500 remote_ip 10.8.1.58 112509 username sedighe 112509 mac 112509 bytes_out 0 112509 bytes_in 0 112509 station_ip 113.203.2.203 112509 port 69 112509 unique_id port 112509 remote_ip 10.8.0.146 112510 username amir 112510 kill_reason Another user logged on this global unique id 112510 mac 112510 bytes_out 0 112510 bytes_in 0 112510 station_ip 46.225.212.111 112510 port 63 112510 unique_id port 112511 username malekpoir 112511 mac 112511 bytes_out 0 112511 bytes_in 0 112511 station_ip 5.119.43.245 112511 port 68 112511 unique_id port 112511 remote_ip 10.8.0.58 112512 username alirr 112512 unique_id port 112512 terminate_cause Lost-Carrier 112512 bytes_out 21026708 112512 bytes_in 395402789 112512 station_ip 185.179.220.161 112512 port 15729224 112512 nas_port_type Virtual 112512 remote_ip 5.5.5.254 112515 username mohammadjavad 112515 mac 112515 bytes_out 0 112515 bytes_in 0 112515 station_ip 83.122.183.32 112515 port 68 112515 unique_id port 112515 remote_ip 10.8.0.142 112519 username alihosseini1 112519 mac 112519 bytes_out 0 112519 bytes_in 0 112519 station_ip 5.120.85.211 112519 port 68 112519 unique_id port 112519 remote_ip 10.8.0.166 112521 username amir 112521 kill_reason Another user logged on this global unique id 112521 mac 112521 bytes_out 0 112521 bytes_in 0 112521 station_ip 46.225.212.111 112521 port 63 112521 unique_id port 112522 username mehdizare 112522 mac 112522 bytes_out 0 112522 bytes_in 0 112522 station_ip 5.119.132.42 112522 port 74 112522 unique_id port 112522 remote_ip 10.8.0.90 112526 username mahdiyehalizadeh 112526 mac 112526 bytes_out 0 112485 mac 112485 bytes_out 348608 112485 bytes_in 4504744 112485 station_ip 5.119.132.42 112485 port 63 112485 unique_id port 112485 remote_ip 10.8.0.90 112487 username rezasekonji 112487 mac 112487 bytes_out 136120 112487 bytes_in 2190656 112487 station_ip 83.122.238.170 112487 port 59 112487 unique_id port 112487 remote_ip 10.8.0.130 112493 username zare 112493 mac 112493 bytes_out 0 112493 bytes_in 0 112493 station_ip 94.183.214.14 112493 port 29 112493 unique_id port 112493 remote_ip 10.8.1.58 112502 username amir 112502 kill_reason Another user logged on this global unique id 112502 mac 112502 bytes_out 0 112502 bytes_in 0 112502 station_ip 46.225.212.111 112502 port 63 112502 unique_id port 112502 remote_ip 10.8.0.50 112503 username mehdizare 112503 mac 112503 bytes_out 0 112503 bytes_in 0 112503 station_ip 5.119.132.42 112503 port 29 112503 unique_id port 112503 remote_ip 10.8.1.42 112506 username kordestani 112506 mac 112506 bytes_out 0 112506 bytes_in 0 112506 station_ip 151.235.77.111 112506 port 68 112506 unique_id port 112506 remote_ip 10.8.0.134 112507 username sedighe 112507 mac 112507 bytes_out 0 112507 bytes_in 0 112507 station_ip 113.203.2.203 112507 port 51 112507 unique_id port 112507 remote_ip 10.8.0.146 112508 username avaanna 112508 mac 112508 bytes_out 0 112508 bytes_in 0 112508 station_ip 37.129.57.219 112508 port 41 112508 unique_id port 112508 remote_ip 10.8.0.98 112516 username sabaghnezhad 112516 mac 112516 bytes_out 0 112516 bytes_in 0 112516 station_ip 37.129.253.255 112516 port 62 112516 unique_id port 112516 remote_ip 10.8.0.186 112517 username tahmasebi 112517 kill_reason Another user logged on this global unique id 112517 mac 112517 bytes_out 0 112517 bytes_in 0 112517 station_ip 5.119.50.227 112517 port 52 112517 unique_id port 112518 username avaanna 112518 mac 112518 bytes_out 0 112518 bytes_in 0 112518 station_ip 37.129.57.219 112518 port 51 112518 unique_id port 112518 remote_ip 10.8.0.98 112520 username mehdizare 112520 mac 112520 bytes_out 155141 112520 bytes_in 223406 112520 station_ip 5.119.132.42 112520 port 29 112520 unique_id port 112520 remote_ip 10.8.1.42 112523 username avaanna 112523 mac 112523 bytes_out 0 112523 bytes_in 0 112523 station_ip 37.129.57.219 112523 port 73 112523 unique_id port 112523 remote_ip 10.8.0.98 112524 username sedighe 112524 mac 112524 bytes_out 0 112524 bytes_in 0 112524 station_ip 113.203.2.203 112524 port 41 112524 unique_id port 112524 remote_ip 10.8.0.146 112525 username malekpoir 112525 kill_reason Another user logged on this global unique id 112525 mac 112525 bytes_out 0 112525 bytes_in 0 112525 station_ip 5.119.43.245 112525 port 34 112525 unique_id port 112525 remote_ip 10.8.1.54 112528 username sedighe 112528 mac 112528 bytes_out 0 112528 bytes_in 0 112528 station_ip 83.122.255.78 112528 port 41 112528 unique_id port 112528 remote_ip 10.8.0.146 112529 username avaanna 112529 mac 112529 bytes_out 39006 112529 bytes_in 187633 112529 station_ip 37.129.57.219 112529 port 29 112529 unique_id port 112529 remote_ip 10.8.1.46 112532 username sedighe 112532 mac 112532 bytes_out 0 112532 bytes_in 0 112532 station_ip 83.122.255.78 112532 port 68 112532 unique_id port 112532 remote_ip 10.8.0.146 112533 username mohammadjavad 112533 mac 112533 bytes_out 0 112533 bytes_in 0 112533 station_ip 83.122.183.32 112533 port 69 112533 unique_id port 112533 remote_ip 10.8.0.142 112536 username avaanna 112486 bytes_out 0 112486 bytes_in 0 112486 station_ip 5.119.132.42 112486 port 63 112486 unique_id port 112486 remote_ip 10.8.0.90 112488 username amir 112488 mac 112488 bytes_out 1198431 112488 bytes_in 14345450 112488 station_ip 46.225.213.197 112488 port 68 112488 unique_id port 112488 remote_ip 10.8.0.50 112495 username alihosseini1 112495 mac 112495 bytes_out 1166332 112495 bytes_in 20140723 112495 station_ip 5.119.67.128 112495 port 59 112495 unique_id port 112495 remote_ip 10.8.0.166 112496 username mehdizare 112496 mac 112496 bytes_out 0 112496 bytes_in 0 112496 station_ip 5.119.132.42 112496 port 33 112496 unique_id port 112496 remote_ip 10.8.1.42 112497 username zare 112497 mac 112497 bytes_out 9995 112497 bytes_in 18434 112497 station_ip 94.183.214.14 112497 port 59 112497 unique_id port 112497 remote_ip 10.8.0.18 112498 username zare 112498 mac 112498 bytes_out 0 112498 bytes_in 0 112498 station_ip 94.183.214.14 112498 port 59 112498 unique_id port 112498 remote_ip 10.8.0.18 112499 username zare 112499 kill_reason Maximum check online fails reached 112499 mac 112499 bytes_out 0 112499 bytes_in 0 112499 station_ip 94.183.214.14 112499 port 59 112499 unique_id port 112501 username mehdizare 112501 mac 112501 bytes_out 0 112501 bytes_in 0 112501 station_ip 5.119.132.42 112501 port 29 112501 unique_id port 112501 remote_ip 10.8.1.42 112504 username malekpoir 112504 mac 112504 bytes_out 0 112504 bytes_in 0 112504 station_ip 5.119.201.117 112504 port 51 112504 unique_id port 112504 remote_ip 10.8.0.58 112505 username sedighe 112505 mac 112505 bytes_out 0 112505 bytes_in 0 112505 station_ip 113.203.2.203 112505 port 69 112505 unique_id port 112505 remote_ip 10.8.0.146 112513 username ahmadi 112513 unique_id port 112513 terminate_cause User-Request 112513 bytes_out 64767 112513 bytes_in 703053 112513 station_ip 37.129.189.134 112513 port 15729226 112513 nas_port_type Virtual 112513 remote_ip 5.5.5.250 112514 username malekpoir 112514 kill_reason Maximum check online fails reached 112514 mac 112514 bytes_out 0 112514 bytes_in 0 112514 station_ip 5.119.43.245 112514 port 33 112514 unique_id port 112531 username avaanna 112531 mac 112531 bytes_out 6403 112531 bytes_in 9542 112531 station_ip 37.129.57.219 112531 port 29 112531 unique_id port 112531 remote_ip 10.8.1.46 112535 username avaanna 112535 mac 112535 bytes_out 0 112535 bytes_in 0 112535 station_ip 37.129.57.219 112535 port 29 112535 unique_id port 112535 remote_ip 10.8.1.46 112537 username sedighe 112537 mac 112537 bytes_out 0 112537 bytes_in 0 112537 station_ip 83.122.255.78 112537 port 68 112537 unique_id port 112537 remote_ip 10.8.0.146 112541 username mosi 112541 mac 112541 bytes_out 0 112541 bytes_in 0 112541 station_ip 37.137.45.31 112541 port 75 112541 unique_id port 112541 remote_ip 10.8.0.138 112543 username sedighe 112543 mac 112543 bytes_out 0 112543 bytes_in 0 112543 station_ip 83.122.255.78 112543 port 41 112543 unique_id port 112543 remote_ip 10.8.0.146 112549 username zare 112549 mac 112549 bytes_out 0 112549 bytes_in 0 112549 station_ip 94.183.214.14 112549 port 71 112549 unique_id port 112549 remote_ip 10.8.0.18 112550 username hamid.e 112550 unique_id port 112550 terminate_cause User-Request 112550 bytes_out 2852401 112550 bytes_in 35010790 112550 station_ip 37.27.37.188 112550 port 15729227 112550 nas_port_type Virtual 112550 remote_ip 5.5.5.254 112553 username tahmasebi 112553 kill_reason Another user logged on this global unique id 112526 bytes_in 0 112526 station_ip 83.123.197.2 112526 port 68 112526 unique_id port 112526 remote_ip 10.8.0.82 112527 username sedighe 112527 mac 112527 bytes_out 0 112527 bytes_in 0 112527 station_ip 37.129.41.188 112527 port 74 112527 unique_id port 112527 remote_ip 10.8.0.146 112530 username sedighe 112530 mac 112530 bytes_out 0 112530 bytes_in 0 112530 station_ip 83.122.255.78 112530 port 41 112530 unique_id port 112530 remote_ip 10.8.0.146 112534 username sedighe 112534 mac 112534 bytes_out 0 112534 bytes_in 0 112534 station_ip 83.122.255.78 112534 port 41 112534 unique_id port 112534 remote_ip 10.8.0.146 112538 username aminvpn 112538 unique_id port 112538 terminate_cause Lost-Carrier 112538 bytes_out 756102 112538 bytes_in 1990619 112538 station_ip 5.120.7.192 112538 port 15729228 112538 nas_port_type Virtual 112538 remote_ip 5.5.5.250 112540 username amir 112540 kill_reason Another user logged on this global unique id 112540 mac 112540 bytes_out 0 112540 bytes_in 0 112540 station_ip 46.225.212.111 112540 port 63 112540 unique_id port 112542 username alirr 112542 unique_id port 112542 terminate_cause User-Request 112542 bytes_out 11866725 112542 bytes_in 1567478 112542 station_ip 94.182.26.2 112542 port 15729225 112542 nas_port_type Virtual 112542 remote_ip 5.5.5.252 112544 username sedighe 112544 mac 112544 bytes_out 0 112544 bytes_in 0 112544 station_ip 83.122.255.78 112544 port 68 112544 unique_id port 112544 remote_ip 10.8.0.146 112545 username zare 112545 mac 112545 bytes_out 51419 112545 bytes_in 210803 112545 station_ip 94.183.214.14 112545 port 29 112545 unique_id port 112545 remote_ip 10.8.1.58 112546 username sedighe 112546 mac 112546 bytes_out 0 112546 bytes_in 0 112546 station_ip 83.122.255.78 112546 port 69 112546 unique_id port 112546 remote_ip 10.8.0.146 112551 username zare 112551 mac 112551 bytes_out 0 112551 bytes_in 0 112551 station_ip 94.183.214.14 112551 port 71 112551 unique_id port 112551 remote_ip 10.8.0.18 112555 username mohammadjavad 112555 mac 112555 bytes_out 0 112555 bytes_in 0 112555 station_ip 83.122.182.138 112555 port 68 112555 unique_id port 112555 remote_ip 10.8.0.142 112556 username amir 112556 kill_reason Another user logged on this global unique id 112556 mac 112556 bytes_out 0 112556 bytes_in 0 112556 station_ip 46.225.212.111 112556 port 63 112556 unique_id port 112560 username zare 112560 mac 112560 bytes_out 0 112560 bytes_in 0 112560 station_ip 94.183.214.14 112560 port 68 112560 unique_id port 112560 remote_ip 10.8.0.18 112561 username zare 112561 mac 112561 bytes_out 0 112561 bytes_in 0 112561 station_ip 94.183.214.14 112561 port 68 112561 unique_id port 112561 remote_ip 10.8.0.18 112565 username zare 112565 mac 112565 bytes_out 0 112565 bytes_in 0 112565 station_ip 94.183.214.14 112565 port 35 112565 unique_id port 112565 remote_ip 10.8.1.58 112572 username zare 112572 mac 112572 bytes_out 0 112572 bytes_in 0 112572 station_ip 94.183.214.14 112572 port 71 112572 unique_id port 112572 remote_ip 10.8.0.18 112574 username zare 112574 mac 112574 bytes_out 1636 112574 bytes_in 5036 112574 station_ip 94.183.214.14 112574 port 68 112574 unique_id port 112574 remote_ip 10.8.0.18 112583 username tahmasebi 112583 kill_reason Another user logged on this global unique id 112583 mac 112583 bytes_out 0 112583 bytes_in 0 112583 station_ip 5.119.50.227 112583 port 52 112583 unique_id port 112584 username zare 112584 kill_reason Maximum check online fails reached 112536 mac 112536 bytes_out 0 112536 bytes_in 0 112536 station_ip 37.129.57.219 112536 port 35 112536 unique_id port 112536 remote_ip 10.8.1.46 112539 username khalili 112539 mac 112539 bytes_out 0 112539 bytes_in 0 112539 station_ip 5.120.45.208 112539 port 71 112539 unique_id port 112539 remote_ip 10.8.0.86 112547 username zare 112547 kill_reason Maximum check online fails reached 112547 mac 112547 bytes_out 0 112547 bytes_in 0 112547 station_ip 94.183.214.14 112547 port 29 112547 unique_id port 112548 username sedighe 112548 mac 112548 bytes_out 0 112548 bytes_in 0 112548 station_ip 83.122.255.78 112548 port 74 112548 unique_id port 112548 remote_ip 10.8.0.146 112552 username sedighe 112552 mac 112552 bytes_out 0 112552 bytes_in 0 112552 station_ip 83.122.255.78 112552 port 75 112552 unique_id port 112552 remote_ip 10.8.0.146 112554 username zare 112554 kill_reason Maximum check online fails reached 112554 mac 112554 bytes_out 0 112554 bytes_in 0 112554 station_ip 94.183.214.14 112554 port 74 112554 unique_id port 112559 username zare 112559 mac 112559 bytes_out 0 112559 bytes_in 0 112559 station_ip 94.183.214.14 112559 port 68 112559 unique_id port 112559 remote_ip 10.8.0.18 112562 username zare 112562 mac 112562 bytes_out 0 112562 bytes_in 0 112562 station_ip 94.183.214.14 112562 port 68 112562 unique_id port 112562 remote_ip 10.8.0.18 112564 username zare 112564 mac 112564 bytes_out 1636 112564 bytes_in 5262 112564 station_ip 94.183.214.14 112564 port 75 112564 unique_id port 112564 remote_ip 10.8.0.18 112567 username zare 112567 mac 112567 bytes_out 0 112567 bytes_in 0 112567 station_ip 94.183.214.14 112567 port 35 112567 unique_id port 112567 remote_ip 10.8.1.58 112569 username zare 112569 mac 112569 bytes_out 0 112569 bytes_in 0 112569 station_ip 94.183.214.14 112569 port 75 112569 unique_id port 112569 remote_ip 10.8.0.18 112570 username sedighe 112570 mac 112570 bytes_out 0 112570 bytes_in 0 112570 station_ip 83.122.255.78 112570 port 71 112570 unique_id port 112570 remote_ip 10.8.0.146 112575 username zare 112575 mac 112575 bytes_out 0 112575 bytes_in 0 112575 station_ip 94.183.214.14 112575 port 68 112575 unique_id port 112575 remote_ip 10.8.0.18 112577 username kamali1 112577 mac 112577 bytes_out 782327 112577 bytes_in 1911552 112577 station_ip 5.119.100.18 112577 port 32 112577 unique_id port 112577 remote_ip 10.8.1.26 112579 username mosi 112579 mac 112579 bytes_out 0 112579 bytes_in 0 112579 station_ip 37.137.45.31 112579 port 41 112579 unique_id port 112579 remote_ip 10.8.0.138 112581 username amir 112581 mac 112581 bytes_out 0 112581 bytes_in 0 112581 station_ip 46.225.212.111 112581 port 63 112581 unique_id port 112581 remote_ip 10.8.0.50 112587 username zare 112587 mac 112587 bytes_out 0 112587 bytes_in 0 112587 station_ip 94.183.214.14 112587 port 37 112587 unique_id port 112587 remote_ip 10.8.1.58 112588 username zare 112588 kill_reason Maximum check online fails reached 112588 mac 112588 bytes_out 0 112588 bytes_in 0 112588 station_ip 94.183.214.14 112588 port 36 112588 unique_id port 112594 username zare 112594 mac 112594 bytes_out 0 112594 bytes_in 0 112594 station_ip 94.183.214.14 112594 port 76 112594 unique_id port 112594 remote_ip 10.8.0.18 112598 username zare 112598 mac 112598 bytes_out 0 112598 bytes_in 0 112598 station_ip 94.183.214.14 112598 port 37 112553 mac 112553 bytes_out 0 112553 bytes_in 0 112553 station_ip 5.119.50.227 112553 port 52 112553 unique_id port 112557 username zare 112557 mac 112557 bytes_out 0 112557 bytes_in 0 112557 station_ip 94.183.214.14 112557 port 68 112557 unique_id port 112557 remote_ip 10.8.0.18 112558 username zare 112558 mac 112558 bytes_out 0 112558 bytes_in 0 112558 station_ip 94.183.214.14 112558 port 68 112558 unique_id port 112558 remote_ip 10.8.0.18 112563 username zare 112563 mac 112563 bytes_out 0 112563 bytes_in 0 112563 station_ip 94.183.214.14 112563 port 75 112563 unique_id port 112563 remote_ip 10.8.0.18 112566 username tahmasebi 112566 kill_reason Another user logged on this global unique id 112566 mac 112566 bytes_out 0 112566 bytes_in 0 112566 station_ip 5.119.50.227 112566 port 52 112566 unique_id port 112568 username zare 112568 mac 112568 bytes_out 0 112568 bytes_in 0 112568 station_ip 94.183.214.14 112568 port 75 112568 unique_id port 112568 remote_ip 10.8.0.18 112571 username amir 112571 mac 112571 bytes_out 0 112571 bytes_in 0 112571 station_ip 46.225.212.111 112571 port 63 112571 unique_id port 112573 username alihosseini1 112573 mac 112573 bytes_out 1055745 112573 bytes_in 11508780 112573 station_ip 5.120.13.193 112573 port 68 112573 unique_id port 112573 remote_ip 10.8.0.166 112576 username tahmasebi 112576 kill_reason Another user logged on this global unique id 112576 mac 112576 bytes_out 0 112576 bytes_in 0 112576 station_ip 5.119.50.227 112576 port 52 112576 unique_id port 112578 username zare 112578 mac 112578 bytes_out 0 112578 bytes_in 0 112578 station_ip 94.183.214.14 112578 port 68 112578 unique_id port 112578 remote_ip 10.8.0.18 112580 username zare 112580 mac 112580 bytes_out 0 112580 bytes_in 0 112580 station_ip 94.183.214.14 112580 port 68 112580 unique_id port 112580 remote_ip 10.8.0.18 112582 username zare 112582 mac 112582 bytes_out 0 112582 bytes_in 0 112582 station_ip 94.183.214.14 112582 port 41 112582 unique_id port 112582 remote_ip 10.8.0.18 112585 username mehdizare 112585 mac 112585 bytes_out 0 112585 bytes_in 0 112585 station_ip 5.119.132.42 112585 port 73 112585 unique_id port 112585 remote_ip 10.8.0.90 112589 username zare 112589 mac 112589 bytes_out 0 112589 bytes_in 0 112589 station_ip 94.183.214.14 112589 port 37 112589 unique_id port 112589 remote_ip 10.8.1.58 112590 username zare 112590 mac 112590 bytes_out 0 112590 bytes_in 0 112590 station_ip 94.183.214.14 112590 port 73 112590 unique_id port 112590 remote_ip 10.8.0.18 112593 username malekpoir 112593 mac 112593 bytes_out 0 112593 bytes_in 0 112593 station_ip 5.119.43.245 112593 port 34 112593 unique_id port 112595 username alihosseini1 112595 mac 112595 bytes_out 0 112595 bytes_in 0 112595 station_ip 5.120.159.39 112595 port 71 112595 unique_id port 112595 remote_ip 10.8.0.166 112596 username rajaei 112596 mac 112596 bytes_out 0 112596 bytes_in 0 112596 station_ip 5.62.204.198 112596 port 76 112596 unique_id port 112596 remote_ip 10.8.0.34 112599 username amir 112599 mac 112599 bytes_out 0 112599 bytes_in 0 112599 station_ip 46.225.212.111 112599 port 73 112599 unique_id port 112599 remote_ip 10.8.0.50 112603 username forozande 112603 mac 112603 bytes_out 0 112603 bytes_in 0 112603 station_ip 83.123.46.131 112603 port 69 112603 unique_id port 112603 remote_ip 10.8.0.74 112606 username tahmasebi 112584 mac 112584 bytes_out 0 112584 bytes_in 0 112584 station_ip 94.183.214.14 112584 port 41 112584 unique_id port 112586 username zare 112586 mac 112586 bytes_out 0 112586 bytes_in 0 112586 station_ip 94.183.214.14 112586 port 36 112586 unique_id port 112586 remote_ip 10.8.1.58 112591 username tahmasebi 112591 kill_reason Another user logged on this global unique id 112591 mac 112591 bytes_out 0 112591 bytes_in 0 112591 station_ip 5.119.50.227 112591 port 52 112591 unique_id port 112592 username zare 112592 mac 112592 bytes_out 0 112592 bytes_in 0 112592 station_ip 94.183.214.14 112592 port 73 112592 unique_id port 112592 remote_ip 10.8.0.18 112597 username zare 112597 mac 112597 bytes_out 0 112597 bytes_in 0 112597 station_ip 94.183.214.14 112597 port 71 112597 unique_id port 112597 remote_ip 10.8.0.18 112610 username forozande 112610 mac 112610 bytes_out 0 112610 bytes_in 0 112610 station_ip 37.129.64.86 112610 port 75 112610 unique_id port 112610 remote_ip 10.8.0.74 112612 username sedighe 112612 mac 112612 bytes_out 15871 112612 bytes_in 25778 112612 station_ip 83.122.255.78 112612 port 69 112612 unique_id port 112612 remote_ip 10.8.0.146 112613 username amir 112613 mac 112613 bytes_out 0 112613 bytes_in 0 112613 station_ip 46.225.212.111 112613 port 71 112613 unique_id port 112613 remote_ip 10.8.0.50 112614 username alihosseini1 112614 mac 112614 bytes_out 0 112614 bytes_in 0 112614 station_ip 5.120.159.39 112614 port 71 112614 unique_id port 112614 remote_ip 10.8.0.166 112616 username tahmasebi 112616 kill_reason Another user logged on this global unique id 112616 mac 112616 bytes_out 0 112616 bytes_in 0 112616 station_ip 5.119.50.227 112616 port 52 112616 unique_id port 112618 username hashtadani3 112618 mac 112618 bytes_out 0 112618 bytes_in 0 112618 station_ip 113.203.87.66 112618 port 37 112618 unique_id port 112618 remote_ip 10.8.1.94 112619 username aminvpn 112619 mac 112619 bytes_out 1624073 112619 bytes_in 26177497 112619 station_ip 5.120.4.224 112619 port 73 112619 unique_id port 112619 remote_ip 10.8.0.14 112628 username zare 112628 mac 112628 bytes_out 0 112628 bytes_in 0 112628 station_ip 94.183.214.14 112628 port 37 112628 unique_id port 112628 remote_ip 10.8.1.58 112631 username tahmasebi 112631 kill_reason Another user logged on this global unique id 112631 mac 112631 bytes_out 0 112631 bytes_in 0 112631 station_ip 5.119.50.227 112631 port 52 112631 unique_id port 112633 username zare 112633 mac 112633 bytes_out 0 112633 bytes_in 0 112633 station_ip 94.183.214.14 112633 port 34 112633 unique_id port 112633 remote_ip 10.8.1.58 112636 username tahmasebi 112636 kill_reason Another user logged on this global unique id 112636 mac 112636 bytes_out 0 112636 bytes_in 0 112636 station_ip 5.119.50.227 112636 port 52 112636 unique_id port 112641 username alireza 112641 unique_id port 112641 terminate_cause User-Request 112641 bytes_out 1645202 112641 bytes_in 17946507 112641 station_ip 5.120.60.241 112641 port 15729229 112641 nas_port_type Virtual 112641 remote_ip 5.5.5.255 112643 username kordestani 112643 mac 112643 bytes_out 0 112643 bytes_in 0 112643 station_ip 83.122.166.83 112643 port 68 112643 unique_id port 112643 remote_ip 10.8.0.134 112646 username ehsun 112646 mac 112646 bytes_out 0 112646 bytes_in 0 112646 station_ip 46.225.208.208 112646 port 51 112646 unique_id port 112646 remote_ip 10.8.0.162 112649 username hashtadani3 112649 mac 112649 bytes_out 1268439 112598 unique_id port 112598 remote_ip 10.8.1.58 112600 username hashtadani3 112600 mac 112600 bytes_out 0 112600 bytes_in 0 112600 station_ip 113.203.86.142 112600 port 68 112600 unique_id port 112600 remote_ip 10.8.0.154 112601 username zare 112601 mac 112601 bytes_out 0 112601 bytes_in 0 112601 station_ip 94.183.214.14 112601 port 73 112601 unique_id port 112601 remote_ip 10.8.0.18 112602 username zare 112602 mac 112602 bytes_out 0 112602 bytes_in 0 112602 station_ip 94.183.214.14 112602 port 68 112602 unique_id port 112602 remote_ip 10.8.0.18 112604 username sedighe 112604 mac 112604 bytes_out 0 112604 bytes_in 0 112604 station_ip 83.122.255.78 112604 port 75 112604 unique_id port 112604 remote_ip 10.8.0.146 112605 username alihosseini1 112605 mac 112605 bytes_out 0 112605 bytes_in 0 112605 station_ip 5.120.159.39 112605 port 73 112605 unique_id port 112605 remote_ip 10.8.0.166 112608 username ehsun 112608 mac 112608 bytes_out 0 112608 bytes_in 0 112608 station_ip 46.225.208.208 112608 port 78 112608 unique_id port 112608 remote_ip 10.8.0.162 112609 username houshang 112609 mac 112609 bytes_out 0 112609 bytes_in 0 112609 station_ip 5.119.54.14 112609 port 71 112609 unique_id port 112609 remote_ip 10.8.0.22 112611 username houshang 112611 mac 112611 bytes_out 0 112611 bytes_in 0 112611 station_ip 5.119.54.14 112611 port 78 112611 unique_id port 112611 remote_ip 10.8.0.22 112620 username hashtadani3 112620 mac 112620 bytes_out 2119 112620 bytes_in 4692 112620 station_ip 113.203.87.66 112620 port 37 112620 unique_id port 112620 remote_ip 10.8.1.94 112623 username zare 112623 mac 112623 bytes_out 93314 112623 bytes_in 293984 112623 station_ip 94.183.214.14 112623 port 76 112623 unique_id port 112623 remote_ip 10.8.0.18 112624 username forozande 112624 mac 112624 bytes_out 2610117 112624 bytes_in 32830541 112624 station_ip 113.203.81.245 112624 port 69 112624 unique_id port 112624 remote_ip 10.8.0.74 112625 username amir 112625 mac 112625 bytes_out 72822 112625 bytes_in 296478 112625 station_ip 46.225.212.111 112625 port 73 112625 unique_id port 112625 remote_ip 10.8.0.50 112626 username tahmasebi 112626 kill_reason Another user logged on this global unique id 112626 mac 112626 bytes_out 0 112626 bytes_in 0 112626 station_ip 5.119.50.227 112626 port 52 112626 unique_id port 112629 username morteza 112629 mac 112629 bytes_out 0 112629 bytes_in 0 112629 station_ip 37.129.198.27 112629 port 68 112629 unique_id port 112629 remote_ip 10.8.0.46 112634 username houshang 112634 kill_reason Another user logged on this global unique id 112634 mac 112634 bytes_out 0 112634 bytes_in 0 112634 station_ip 5.120.190.181 112634 port 71 112634 unique_id port 112634 remote_ip 10.8.0.22 112638 username houshang 112638 mac 112638 bytes_out 0 112638 bytes_in 0 112638 station_ip 5.120.190.181 112638 port 71 112638 unique_id port 112639 username zare 112639 mac 112639 bytes_out 9819 112639 bytes_in 11461 112639 station_ip 94.183.214.14 112639 port 37 112639 unique_id port 112639 remote_ip 10.8.1.58 112640 username tahmasebi 112640 kill_reason Another user logged on this global unique id 112640 mac 112640 bytes_out 0 112640 bytes_in 0 112640 station_ip 5.119.50.227 112640 port 52 112640 unique_id port 112642 username mahdiyehalizadeh 112642 mac 112642 bytes_out 0 112642 bytes_in 0 112642 station_ip 113.203.81.241 112642 port 51 112642 unique_id port 112642 remote_ip 10.8.0.82 112644 username amir 112606 kill_reason Another user logged on this global unique id 112606 mac 112606 bytes_out 0 112606 bytes_in 0 112606 station_ip 5.119.50.227 112606 port 52 112606 unique_id port 112607 username zare 112607 mac 112607 bytes_out 516497 112607 bytes_in 7980003 112607 station_ip 94.183.214.14 112607 port 76 112607 unique_id port 112607 remote_ip 10.8.0.18 112615 username alihosseini1 112615 mac 112615 bytes_out 0 112615 bytes_in 0 112615 station_ip 5.120.159.39 112615 port 71 112615 unique_id port 112615 remote_ip 10.8.0.166 112617 username mohammadmahdi 112617 mac 112617 bytes_out 2470987 112617 bytes_in 46148095 112617 station_ip 5.119.192.50 112617 port 77 112617 unique_id port 112617 remote_ip 10.8.0.54 112621 username kamali1 112621 mac 112621 bytes_out 303713 112621 bytes_in 489732 112621 station_ip 5.119.100.18 112621 port 32 112621 unique_id port 112621 remote_ip 10.8.1.26 112622 username tahmasebi 112622 kill_reason Another user logged on this global unique id 112622 mac 112622 bytes_out 0 112622 bytes_in 0 112622 station_ip 5.119.50.227 112622 port 52 112622 unique_id port 112627 username hashtadani3 112627 mac 112627 bytes_out 0 112627 bytes_in 0 112627 station_ip 113.203.87.66 112627 port 69 112627 unique_id port 112627 remote_ip 10.8.0.154 112630 username malekpoir 112630 mac 112630 bytes_out 72326 112630 bytes_in 92643 112630 station_ip 5.119.43.245 112630 port 34 112630 unique_id port 112630 remote_ip 10.8.1.54 112632 username zare 112632 mac 112632 bytes_out 0 112632 bytes_in 0 112632 station_ip 94.183.214.14 112632 port 34 112632 unique_id port 112632 remote_ip 10.8.1.58 112635 username kordestani 112635 mac 112635 bytes_out 0 112635 bytes_in 0 112635 station_ip 83.122.166.83 112635 port 51 112635 unique_id port 112635 remote_ip 10.8.0.134 112637 username hashtadani3 112637 mac 112637 bytes_out 623501 112637 bytes_in 7015500 112637 station_ip 113.203.87.66 112637 port 69 112637 unique_id port 112637 remote_ip 10.8.0.154 112645 username ehsun 112645 mac 112645 bytes_out 1296447 112645 bytes_in 17927914 112645 station_ip 46.225.208.208 112645 port 69 112645 unique_id port 112645 remote_ip 10.8.0.162 112650 username aminvpn 112650 mac 112650 bytes_out 0 112650 bytes_in 0 112650 station_ip 5.120.4.224 112650 port 73 112650 unique_id port 112650 remote_ip 10.8.0.14 112651 username aminvpn 112651 mac 112651 bytes_out 0 112651 bytes_in 0 112651 station_ip 83.122.149.99 112651 port 69 112651 unique_id port 112651 remote_ip 10.8.0.14 112652 username aminvpn 112652 mac 112652 bytes_out 0 112652 bytes_in 0 112652 station_ip 5.120.4.224 112652 port 75 112652 unique_id port 112652 remote_ip 10.8.0.14 112654 username mohammadjavad 112654 mac 112654 bytes_out 0 112654 bytes_in 0 112654 station_ip 37.129.193.0 112654 port 68 112654 unique_id port 112654 remote_ip 10.8.0.142 112658 username aminvpn 112658 mac 112658 bytes_out 0 112658 bytes_in 0 112658 station_ip 83.122.149.99 112658 port 69 112658 unique_id port 112658 remote_ip 10.8.0.14 112662 username hashtadani3 112662 mac 112662 bytes_out 0 112662 bytes_in 0 112662 station_ip 113.203.87.66 112662 port 77 112662 unique_id port 112662 remote_ip 10.8.0.154 112670 username hashtadani3 112670 kill_reason Maximum check online fails reached 112670 mac 112670 bytes_out 0 112670 bytes_in 0 112670 station_ip 113.203.87.66 112670 port 71 112670 unique_id port 112674 username hashtadani3 112674 mac 112674 bytes_out 0 112644 mac 112644 bytes_out 0 112644 bytes_in 0 112644 station_ip 46.225.212.111 112644 port 75 112644 unique_id port 112644 remote_ip 10.8.0.50 112647 username mahdixz 112647 unique_id port 112647 terminate_cause User-Request 112647 bytes_out 2366877 112647 bytes_in 15443926 112647 station_ip 151.235.84.86 112647 port 15729230 112647 nas_port_type Virtual 112647 remote_ip 5.5.5.254 112648 username tahmasebi 112648 kill_reason Another user logged on this global unique id 112648 mac 112648 bytes_out 0 112648 bytes_in 0 112648 station_ip 5.119.50.227 112648 port 52 112648 unique_id port 112653 username malekpoir 112653 mac 112653 bytes_out 0 112653 bytes_in 0 112653 station_ip 5.119.43.245 112653 port 34 112653 unique_id port 112653 remote_ip 10.8.1.54 112655 username hashtadani3 112655 kill_reason Maximum check online fails reached 112655 mac 112655 bytes_out 0 112655 bytes_in 0 112655 station_ip 113.203.87.66 112655 port 73 112655 unique_id port 112659 username hashtadani3 112659 mac 112659 bytes_out 0 112659 bytes_in 0 112659 station_ip 113.203.87.66 112659 port 38 112659 unique_id port 112659 remote_ip 10.8.1.94 112664 username forozande 112664 mac 112664 bytes_out 0 112664 bytes_in 0 112664 station_ip 113.203.69.254 112664 port 71 112664 unique_id port 112664 remote_ip 10.8.0.74 112665 username hashtadani3 112665 mac 112665 bytes_out 0 112665 bytes_in 0 112665 station_ip 113.203.87.66 112665 port 71 112665 unique_id port 112665 remote_ip 10.8.0.154 112666 username hashtadani3 112666 mac 112666 bytes_out 0 112666 bytes_in 0 112666 station_ip 113.203.87.66 112666 port 71 112666 unique_id port 112666 remote_ip 10.8.0.154 112667 username hashtadani3 112667 mac 112667 bytes_out 0 112667 bytes_in 0 112667 station_ip 113.203.87.66 112667 port 77 112667 unique_id port 112667 remote_ip 10.8.0.154 112669 username amir 112669 mac 112669 bytes_out 68831 112669 bytes_in 480267 112669 station_ip 46.225.212.111 112669 port 76 112669 unique_id port 112669 remote_ip 10.8.0.50 112675 username mahdixz 112675 unique_id port 112675 terminate_cause User-Request 112675 bytes_out 306068 112675 bytes_in 21310350 112675 station_ip 151.235.84.86 112675 port 15729233 112675 nas_port_type Virtual 112675 remote_ip 5.5.5.251 112680 username amir 112680 mac 112680 bytes_out 0 112680 bytes_in 0 112680 station_ip 46.225.212.111 112680 port 77 112680 unique_id port 112680 remote_ip 10.8.0.50 112681 username forozande 112681 mac 112681 bytes_out 0 112681 bytes_in 0 112681 station_ip 83.123.61.161 112681 port 75 112681 unique_id port 112681 remote_ip 10.8.0.74 112683 username hashtadani3 112683 mac 112683 bytes_out 0 112683 bytes_in 0 112683 station_ip 113.203.87.66 112683 port 75 112683 unique_id port 112683 remote_ip 10.8.0.154 112687 username irannezhad 112687 mac 112687 bytes_out 0 112687 bytes_in 0 112687 station_ip 83.122.163.126 112687 port 34 112687 unique_id port 112687 remote_ip 10.8.1.134 112688 username amir 112688 mac 112688 bytes_out 58556 112688 bytes_in 402754 112688 station_ip 46.225.212.111 112688 port 69 112688 unique_id port 112688 remote_ip 10.8.0.50 112690 username irannezhad 112690 mac 112690 bytes_out 0 112690 bytes_in 0 112690 station_ip 83.122.163.126 112690 port 69 112690 unique_id port 112690 remote_ip 10.8.0.182 112693 username zare 112693 mac 112693 bytes_out 0 112693 bytes_in 0 112693 station_ip 94.183.214.14 112693 port 79 112693 unique_id port 112693 remote_ip 10.8.0.18 112696 username irannezhad 112649 bytes_in 8983401 112649 station_ip 113.203.87.66 112649 port 38 112649 unique_id port 112649 remote_ip 10.8.1.94 112656 username aminvpn 112656 mac 112656 bytes_out 0 112656 bytes_in 0 112656 station_ip 83.122.149.99 112656 port 69 112656 unique_id port 112656 remote_ip 10.8.0.14 112657 username aminvpn 112657 mac 112657 bytes_out 0 112657 bytes_in 0 112657 station_ip 5.120.4.224 112657 port 75 112657 unique_id port 112657 remote_ip 10.8.0.14 112660 username hashtadani3 112660 mac 112660 bytes_out 0 112660 bytes_in 0 112660 station_ip 113.203.87.66 112660 port 34 112660 unique_id port 112660 remote_ip 10.8.1.94 112661 username hashtadani3 112661 mac 112661 bytes_out 0 112661 bytes_in 0 112661 station_ip 113.203.87.66 112661 port 34 112661 unique_id port 112661 remote_ip 10.8.1.94 112663 username hashtadani3 112663 mac 112663 bytes_out 0 112663 bytes_in 0 112663 station_ip 113.203.87.66 112663 port 77 112663 unique_id port 112663 remote_ip 10.8.0.154 112668 username hashtadani3 112668 mac 112668 bytes_out 0 112668 bytes_in 0 112668 station_ip 113.203.87.66 112668 port 77 112668 unique_id port 112668 remote_ip 10.8.0.154 112671 username hashtadani3 112671 mac 112671 bytes_out 15141 112671 bytes_in 33338 112671 station_ip 113.203.87.66 112671 port 77 112671 unique_id port 112671 remote_ip 10.8.0.154 112672 username zare 112672 mac 112672 bytes_out 227532 112672 bytes_in 2628721 112672 station_ip 94.183.214.14 112672 port 37 112672 unique_id port 112672 remote_ip 10.8.1.58 112673 username hashtadani3 112673 mac 112673 bytes_out 0 112673 bytes_in 0 112673 station_ip 113.203.87.66 112673 port 76 112673 unique_id port 112673 remote_ip 10.8.0.154 112676 username forozande 112676 mac 112676 bytes_out 173713 112676 bytes_in 667789 112676 station_ip 37.129.251.92 112676 port 77 112676 unique_id port 112676 remote_ip 10.8.0.74 112677 username aminvpn 112677 mac 112677 bytes_out 2345957 112677 bytes_in 35044677 112677 station_ip 5.120.4.224 112677 port 75 112677 unique_id port 112677 remote_ip 10.8.0.14 112679 username alihosseini1 112679 mac 112679 bytes_out 0 112679 bytes_in 0 112679 station_ip 5.120.102.180 112679 port 76 112679 unique_id port 112679 remote_ip 10.8.0.166 112685 username irannezhad 112685 mac 112685 bytes_out 3114191 112685 bytes_in 49193103 112685 station_ip 83.122.163.126 112685 port 69 112685 unique_id port 112685 remote_ip 10.8.0.182 112692 username irannezhad 112692 mac 112692 bytes_out 0 112692 bytes_in 0 112692 station_ip 83.122.163.126 112692 port 69 112692 unique_id port 112692 remote_ip 10.8.0.182 112694 username aminvpn 112694 unique_id port 112694 terminate_cause Lost-Carrier 112694 bytes_out 1393020 112694 bytes_in 24514085 112694 station_ip 5.120.7.192 112694 port 15729235 112694 nas_port_type Virtual 112694 remote_ip 5.5.5.250 112695 username irannezhad 112695 mac 112695 bytes_out 1644 112695 bytes_in 5129 112695 station_ip 83.122.163.126 112695 port 69 112695 unique_id port 112695 remote_ip 10.8.0.182 112698 username irannezhad 112698 mac 112698 bytes_out 0 112698 bytes_in 0 112698 station_ip 83.122.163.126 112698 port 34 112698 unique_id port 112698 remote_ip 10.8.1.134 112701 username irannezhad 112701 mac 112701 bytes_out 0 112701 bytes_in 0 112701 station_ip 83.122.163.126 112701 port 69 112701 unique_id port 112701 remote_ip 10.8.0.182 112703 username aminvpn 112703 mac 112703 bytes_out 0 112703 bytes_in 0 112674 bytes_in 0 112674 station_ip 113.203.87.66 112674 port 78 112674 unique_id port 112674 remote_ip 10.8.0.154 112678 username arabpour 112678 unique_id port 112678 terminate_cause User-Request 112678 bytes_out 286453 112678 bytes_in 735956 112678 station_ip 83.122.148.236 112678 port 15729234 112678 nas_port_type Virtual 112678 remote_ip 5.5.5.250 112682 username hashtadani3 112682 mac 112682 bytes_out 0 112682 bytes_in 0 112682 station_ip 113.203.87.66 112682 port 34 112682 unique_id port 112682 remote_ip 10.8.1.94 112684 username aminvpn 112684 mac 112684 bytes_out 0 112684 bytes_in 0 112684 station_ip 5.120.4.224 112684 port 76 112684 unique_id port 112684 remote_ip 10.8.0.14 112686 username forozande 112686 mac 112686 bytes_out 286971 112686 bytes_in 4566851 112686 station_ip 37.129.241.107 112686 port 76 112686 unique_id port 112686 remote_ip 10.8.0.74 112689 username irannezhad 112689 mac 112689 bytes_out 0 112689 bytes_in 0 112689 station_ip 83.122.163.126 112689 port 76 112689 unique_id port 112689 remote_ip 10.8.0.182 112691 username aminvpn 112691 mac 112691 bytes_out 0 112691 bytes_in 0 112691 station_ip 5.120.4.224 112691 port 76 112691 unique_id port 112691 remote_ip 10.8.0.14 112697 username zare 112697 mac 112697 bytes_out 0 112697 bytes_in 0 112697 station_ip 94.183.214.14 112697 port 69 112697 unique_id port 112697 remote_ip 10.8.0.18 112699 username kamali1 112699 mac 112699 bytes_out 0 112699 bytes_in 0 112699 station_ip 5.119.100.18 112699 port 32 112699 unique_id port 112699 remote_ip 10.8.1.26 112702 username amir 112702 mac 112702 bytes_out 0 112702 bytes_in 0 112702 station_ip 46.225.212.111 112702 port 69 112702 unique_id port 112702 remote_ip 10.8.0.50 112705 username mirzaei 112705 mac 112705 bytes_out 0 112705 bytes_in 0 112705 station_ip 5.120.191.187 112705 port 18 112705 unique_id port 112707 username rajaei 112707 kill_reason Another user logged on this global unique id 112707 mac 112707 bytes_out 0 112707 bytes_in 0 112707 station_ip 37.156.155.188 112707 port 77 112707 unique_id port 112707 remote_ip 10.8.0.34 112708 username amirabbas 112708 unique_id port 112708 terminate_cause User-Request 112708 bytes_out 16664981 112708 bytes_in 470209380 112708 station_ip 37.27.63.234 112708 port 15729231 112708 nas_port_type Virtual 112708 remote_ip 5.5.5.254 112709 username hashtadani3 112709 kill_reason Another user logged on this global unique id 112709 mac 112709 bytes_out 0 112709 bytes_in 0 112709 station_ip 113.203.87.66 112709 port 75 112709 unique_id port 112709 remote_ip 10.8.0.154 112713 username alirr 112713 unique_id port 112713 terminate_cause User-Request 112713 bytes_out 6559694 112713 bytes_in 155523540 112713 station_ip 5.119.10.97 112713 port 15729232 112713 nas_port_type Virtual 112713 remote_ip 5.5.5.252 112714 username irannezhad 112714 kill_reason Another user logged on this global unique id 112714 mac 112714 bytes_out 0 112714 bytes_in 0 112714 station_ip 83.122.163.126 112714 port 34 112714 unique_id port 112714 remote_ip 10.8.1.134 112716 username sabaghnezhad 112716 mac 112716 bytes_out 0 112716 bytes_in 0 112716 station_ip 37.129.253.255 112716 port 62 112716 unique_id port 112716 remote_ip 10.8.0.186 112720 username alihosseini1 112720 mac 112720 bytes_out 881067 112720 bytes_in 6737344 112720 station_ip 5.119.17.91 112720 port 78 112720 unique_id port 112720 remote_ip 10.8.0.166 112724 username aminvpn 112724 mac 112724 bytes_out 0 112724 bytes_in 0 112724 station_ip 5.120.4.224 112724 port 79 112696 mac 112696 bytes_out 0 112696 bytes_in 0 112696 station_ip 83.122.163.126 112696 port 34 112696 unique_id port 112696 remote_ip 10.8.1.134 112700 username zare 112700 mac 112700 bytes_out 0 112700 bytes_in 0 112700 station_ip 94.183.214.14 112700 port 69 112700 unique_id port 112700 remote_ip 10.8.0.18 112704 username mahdixz 112704 unique_id port 112704 terminate_cause Lost-Carrier 112704 bytes_out 327083 112704 bytes_in 3934552 112704 station_ip 151.235.84.86 112704 port 15729236 112704 nas_port_type Virtual 112704 remote_ip 5.5.5.249 112710 username aminvpn 112710 mac 112710 bytes_out 0 112710 bytes_in 0 112710 station_ip 5.120.4.224 112710 port 79 112710 unique_id port 112710 remote_ip 10.8.0.14 112712 username amir 112712 mac 112712 bytes_out 32527 112712 bytes_in 285847 112712 station_ip 46.225.212.111 112712 port 78 112712 unique_id port 112712 remote_ip 10.8.0.50 112718 username houshang 112718 mac 112718 bytes_out 0 112718 bytes_in 0 112718 station_ip 5.120.190.181 112718 port 69 112718 unique_id port 112718 remote_ip 10.8.0.22 112725 username amir 112725 mac 112725 bytes_out 54096 112725 bytes_in 202297 112725 station_ip 46.225.212.111 112725 port 78 112725 unique_id port 112725 remote_ip 10.8.0.50 112728 username hashtadani3 112728 mac 112728 bytes_out 0 112728 bytes_in 0 112728 station_ip 113.203.87.66 112728 port 75 112728 unique_id port 112729 username forozande 112729 mac 112729 bytes_out 347763 112729 bytes_in 3445797 112729 station_ip 113.203.78.203 112729 port 62 112729 unique_id port 112729 remote_ip 10.8.0.74 112730 username hashtadani3 112730 mac 112730 bytes_out 0 112730 bytes_in 0 112730 station_ip 113.203.87.66 112730 port 18 112730 unique_id port 112730 remote_ip 10.8.1.94 112736 username hashtadani3 112736 mac 112736 bytes_out 0 112736 bytes_in 0 112736 station_ip 113.203.87.66 112736 port 62 112736 unique_id port 112736 remote_ip 10.8.0.154 112740 username hashtadani3 112740 mac 112740 bytes_out 0 112740 bytes_in 0 112740 station_ip 113.203.87.66 112740 port 62 112740 unique_id port 112740 remote_ip 10.8.0.154 112741 username hashtadani3 112741 mac 112741 bytes_out 0 112741 bytes_in 0 112741 station_ip 113.203.87.66 112741 port 62 112741 unique_id port 112741 remote_ip 10.8.0.154 112742 username rajaei 112742 mac 112742 bytes_out 0 112742 bytes_in 0 112742 station_ip 37.156.155.188 112742 port 77 112742 unique_id port 112743 username aminvpn 112743 mac 112743 bytes_out 0 112743 bytes_in 0 112743 station_ip 5.120.4.224 112743 port 63 112743 unique_id port 112743 remote_ip 10.8.0.14 112749 username hashtadani3 112749 mac 112749 bytes_out 0 112749 bytes_in 0 112749 station_ip 113.203.87.66 112749 port 62 112749 unique_id port 112749 remote_ip 10.8.0.154 112752 username alihosseini1 112752 kill_reason Another user logged on this global unique id 112752 mac 112752 bytes_out 0 112752 bytes_in 0 112752 station_ip 5.119.17.91 112752 port 78 112752 unique_id port 112752 remote_ip 10.8.0.166 112763 username hashtadani3 112763 mac 112763 bytes_out 0 112763 bytes_in 0 112763 station_ip 113.203.87.66 112763 port 75 112763 unique_id port 112763 remote_ip 10.8.0.154 112764 username malekpoir 112764 mac 112764 bytes_out 0 112764 bytes_in 0 112764 station_ip 5.119.43.245 112764 port 68 112764 unique_id port 112764 remote_ip 10.8.0.58 112765 username avaanna 112765 mac 112765 bytes_out 2871635 112765 bytes_in 26893873 112703 station_ip 5.120.4.224 112703 port 76 112703 unique_id port 112703 remote_ip 10.8.0.14 112706 username forozande 112706 mac 112706 bytes_out 0 112706 bytes_in 0 112706 station_ip 83.123.165.105 112706 port 69 112706 unique_id port 112706 remote_ip 10.8.0.74 112711 username aminvpn 112711 mac 112711 bytes_out 0 112711 bytes_in 0 112711 station_ip 5.120.4.224 112711 port 79 112711 unique_id port 112711 remote_ip 10.8.0.14 112715 username sabaghnezhad 112715 mac 112715 bytes_out 0 112715 bytes_in 0 112715 station_ip 37.129.253.255 112715 port 62 112715 unique_id port 112715 remote_ip 10.8.0.186 112717 username forozande 112717 mac 112717 bytes_out 115460 112717 bytes_in 831127 112717 station_ip 83.123.102.134 112717 port 79 112717 unique_id port 112717 remote_ip 10.8.0.74 112719 username irannezhad 112719 mac 112719 bytes_out 0 112719 bytes_in 0 112719 station_ip 83.122.163.126 112719 port 34 112719 unique_id port 112721 username rajaei 112721 kill_reason Another user logged on this global unique id 112721 mac 112721 bytes_out 0 112721 bytes_in 0 112721 station_ip 37.156.155.188 112721 port 77 112721 unique_id port 112722 username amin.saeedi 112722 unique_id port 112722 terminate_cause Lost-Carrier 112722 bytes_out 1472213 112722 bytes_in 52390545 112722 station_ip 31.59.35.209 112722 port 15729237 112722 nas_port_type Virtual 112722 remote_ip 5.5.5.250 112723 username ahmadi 112723 unique_id port 112723 terminate_cause User-Request 112723 bytes_out 223043 112723 bytes_in 3114578 112723 station_ip 83.123.61.165 112723 port 15729240 112723 nas_port_type Virtual 112723 remote_ip 5.5.5.248 112727 username mehdizare 112727 mac 112727 bytes_out 245101 112727 bytes_in 339206 112727 station_ip 5.119.132.42 112727 port 63 112727 unique_id port 112727 remote_ip 10.8.0.90 112731 username hashtadani3 112731 mac 112731 bytes_out 0 112731 bytes_in 0 112731 station_ip 113.203.87.66 112731 port 62 112731 unique_id port 112731 remote_ip 10.8.0.154 112733 username hashtadani3 112733 mac 112733 bytes_out 0 112733 bytes_in 0 112733 station_ip 113.203.87.66 112733 port 62 112733 unique_id port 112733 remote_ip 10.8.0.154 112735 username rajaei 112735 kill_reason Another user logged on this global unique id 112735 mac 112735 bytes_out 0 112735 bytes_in 0 112735 station_ip 37.156.155.188 112735 port 77 112735 unique_id port 112737 username hashtadani3 112737 mac 112737 bytes_out 0 112737 bytes_in 0 112737 station_ip 113.203.87.66 112737 port 62 112737 unique_id port 112737 remote_ip 10.8.0.154 112744 username ehsun 112744 kill_reason Another user logged on this global unique id 112744 mac 112744 bytes_out 0 112744 bytes_in 0 112744 station_ip 46.225.208.208 112744 port 51 112744 unique_id port 112744 remote_ip 10.8.0.162 112746 username amir 112746 mac 112746 bytes_out 54532 112746 bytes_in 408837 112746 station_ip 46.225.212.111 112746 port 63 112746 unique_id port 112746 remote_ip 10.8.0.50 112750 username hashtadani3 112750 mac 112750 bytes_out 0 112750 bytes_in 0 112750 station_ip 113.203.87.66 112750 port 62 112750 unique_id port 112750 remote_ip 10.8.0.154 112751 username hashtadani3 112751 mac 112751 bytes_out 0 112751 bytes_in 0 112751 station_ip 113.203.87.66 112751 port 62 112751 unique_id port 112751 remote_ip 10.8.0.154 112753 username hashtadani3 112753 mac 112753 bytes_out 0 112753 bytes_in 0 112753 station_ip 113.203.87.66 112753 port 18 112753 unique_id port 112753 remote_ip 10.8.1.94 112754 username hashtadani3 112754 mac 112724 unique_id port 112724 remote_ip 10.8.0.14 112726 username alihosseini1 112726 mac 112726 bytes_out 0 112726 bytes_in 0 112726 station_ip 5.119.17.91 112726 port 78 112726 unique_id port 112726 remote_ip 10.8.0.166 112732 username hashtadani3 112732 mac 112732 bytes_out 0 112732 bytes_in 0 112732 station_ip 113.203.87.66 112732 port 62 112732 unique_id port 112732 remote_ip 10.8.0.154 112734 username hashtadani3 112734 mac 112734 bytes_out 0 112734 bytes_in 0 112734 station_ip 113.203.87.66 112734 port 62 112734 unique_id port 112734 remote_ip 10.8.0.154 112738 username hashtadani3 112738 mac 112738 bytes_out 0 112738 bytes_in 0 112738 station_ip 113.203.87.66 112738 port 62 112738 unique_id port 112738 remote_ip 10.8.0.154 112739 username hashtadani3 112739 mac 112739 bytes_out 0 112739 bytes_in 0 112739 station_ip 113.203.87.66 112739 port 62 112739 unique_id port 112739 remote_ip 10.8.0.154 112745 username alirr 112745 unique_id port 112745 terminate_cause Lost-Carrier 112745 bytes_out 1947020 112745 bytes_in 52383540 112745 station_ip 5.119.10.97 112745 port 15729239 112745 nas_port_type Virtual 112745 remote_ip 5.5.5.253 112747 username forozande 112747 mac 112747 bytes_out 159396 112747 bytes_in 495199 112747 station_ip 83.123.101.159 112747 port 75 112747 unique_id port 112747 remote_ip 10.8.0.74 112748 username hashtadani3 112748 mac 112748 bytes_out 661806 112748 bytes_in 7213564 112748 station_ip 113.203.87.66 112748 port 62 112748 unique_id port 112748 remote_ip 10.8.0.154 112757 username hashtadani3 112757 kill_reason Maximum check online fails reached 112757 mac 112757 bytes_out 0 112757 bytes_in 0 112757 station_ip 113.203.87.66 112757 port 63 112757 unique_id port 112760 username aminvpn 112760 mac 112760 bytes_out 0 112760 bytes_in 0 112760 station_ip 5.120.4.224 112760 port 51 112760 unique_id port 112760 remote_ip 10.8.0.14 112761 username forozande 112761 mac 112761 bytes_out 0 112761 bytes_in 0 112761 station_ip 113.203.67.108 112761 port 62 112761 unique_id port 112761 remote_ip 10.8.0.74 112762 username amir 112762 mac 112762 bytes_out 0 112762 bytes_in 0 112762 station_ip 46.225.212.111 112762 port 51 112762 unique_id port 112762 remote_ip 10.8.0.50 112767 username malekpoir 112767 mac 112767 bytes_out 7269 112767 bytes_in 8620 112767 station_ip 5.119.43.245 112767 port 62 112767 unique_id port 112767 remote_ip 10.8.0.58 112770 username amir 112770 mac 112770 bytes_out 0 112770 bytes_in 0 112770 station_ip 46.225.212.111 112770 port 62 112770 unique_id port 112770 remote_ip 10.8.0.50 112773 username mirzaei 112773 mac 112773 bytes_out 0 112773 bytes_in 0 112773 station_ip 5.120.80.96 112773 port 34 112773 unique_id port 112773 remote_ip 10.8.1.30 112774 username khalili 112774 mac 112774 bytes_out 0 112774 bytes_in 0 112774 station_ip 5.120.45.208 112774 port 35 112774 unique_id port 112774 remote_ip 10.8.1.18 112776 username mahdiyehalizadeh 112776 mac 112776 bytes_out 868921 112776 bytes_in 11475545 112776 station_ip 113.203.90.99 112776 port 51 112776 unique_id port 112776 remote_ip 10.8.0.82 112777 username forozande 112777 mac 112777 bytes_out 326653 112777 bytes_in 2758232 112777 station_ip 37.129.0.174 112777 port 62 112777 unique_id port 112777 remote_ip 10.8.0.74 112783 username hashtadani3 112783 mac 112783 bytes_out 0 112783 bytes_in 0 112783 station_ip 113.203.69.162 112783 port 69 112783 unique_id port 112783 remote_ip 10.8.0.154 112754 bytes_out 0 112754 bytes_in 0 112754 station_ip 113.203.87.66 112754 port 18 112754 unique_id port 112754 remote_ip 10.8.1.94 112755 username hashtadani3 112755 mac 112755 bytes_out 0 112755 bytes_in 0 112755 station_ip 113.203.87.66 112755 port 18 112755 unique_id port 112755 remote_ip 10.8.1.94 112756 username alireza 112756 unique_id port 112756 terminate_cause User-Request 112756 bytes_out 965066 112756 bytes_in 22536390 112756 station_ip 5.120.60.241 112756 port 15729242 112756 nas_port_type Virtual 112756 remote_ip 5.5.5.251 112758 username alihosseini1 112758 mac 112758 bytes_out 0 112758 bytes_in 0 112758 station_ip 5.119.17.91 112758 port 78 112758 unique_id port 112759 username ehsun 112759 mac 112759 bytes_out 0 112759 bytes_in 0 112759 station_ip 46.225.208.208 112759 port 51 112759 unique_id port 112768 username aminvpn 112768 mac 112768 bytes_out 0 112768 bytes_in 0 112768 station_ip 5.120.4.224 112768 port 62 112768 unique_id port 112768 remote_ip 10.8.0.14 112771 username malekpoir 112771 kill_reason Maximum check online fails reached 112771 mac 112771 bytes_out 0 112771 bytes_in 0 112771 station_ip 5.119.43.245 112771 port 18 112771 unique_id port 112772 username mirzaei 112772 mac 112772 bytes_out 0 112772 bytes_in 0 112772 station_ip 5.112.63.26 112772 port 34 112772 unique_id port 112772 remote_ip 10.8.1.30 112779 username kamali1 112779 mac 112779 bytes_out 0 112779 bytes_in 0 112779 station_ip 5.119.100.18 112779 port 32 112779 unique_id port 112779 remote_ip 10.8.1.26 112780 username mirzaei 112780 mac 112780 bytes_out 0 112780 bytes_in 0 112780 station_ip 5.113.134.197 112780 port 69 112780 unique_id port 112780 remote_ip 10.8.0.66 112781 username hashtadani3 112781 mac 112781 bytes_out 424178 112781 bytes_in 3704745 112781 station_ip 113.203.69.162 112781 port 37 112781 unique_id port 112781 remote_ip 10.8.1.94 112784 username amir 112784 mac 112784 bytes_out 88227 112784 bytes_in 589034 112784 station_ip 46.225.212.111 112784 port 51 112784 unique_id port 112784 remote_ip 10.8.0.50 112786 username hashtadani3 112786 mac 112786 bytes_out 0 112786 bytes_in 0 112786 station_ip 113.203.69.162 112786 port 35 112786 unique_id port 112786 remote_ip 10.8.1.94 112788 username amin.saeedi 112788 unique_id port 112788 terminate_cause Lost-Carrier 112788 bytes_out 5008746 112788 bytes_in 197269136 112788 station_ip 31.59.35.209 112788 port 15729241 112788 nas_port_type Virtual 112788 remote_ip 5.5.5.246 112790 username mirzaei 112790 mac 112790 bytes_out 30421 112790 bytes_in 41217 112790 station_ip 5.113.134.197 112790 port 75 112790 unique_id port 112790 remote_ip 10.8.0.66 112793 username kamali1 112793 mac 112793 bytes_out 19711 112793 bytes_in 27029 112793 station_ip 5.119.100.18 112793 port 32 112793 unique_id port 112793 remote_ip 10.8.1.26 112795 username forozande 112795 mac 112795 bytes_out 128187 112795 bytes_in 921251 112795 station_ip 113.203.64.242 112795 port 51 112795 unique_id port 112795 remote_ip 10.8.0.74 112799 username amir 112799 mac 112799 bytes_out 32290 112799 bytes_in 252230 112799 station_ip 46.225.212.111 112799 port 69 112799 unique_id port 112799 remote_ip 10.8.0.50 112801 username sabaghnezhad 112801 mac 112801 bytes_out 0 112801 bytes_in 0 112801 station_ip 37.129.253.255 112801 port 75 112801 unique_id port 112801 remote_ip 10.8.0.186 112804 username mirzaei 112804 mac 112804 bytes_out 0 112804 bytes_in 0 112804 station_ip 5.113.134.197 112765 station_ip 83.123.80.41 112765 port 69 112765 unique_id port 112765 remote_ip 10.8.0.98 112766 username mirzaei 112766 mac 112766 bytes_out 470814 112766 bytes_in 2973533 112766 station_ip 5.120.191.187 112766 port 76 112766 unique_id port 112766 remote_ip 10.8.0.66 112769 username ahmadipour 112769 unique_id port 112769 terminate_cause Lost-Carrier 112769 bytes_out 878899 112769 bytes_in 15599620 112769 station_ip 5.210.52.149 112769 port 15729243 112769 nas_port_type Virtual 112769 remote_ip 5.5.5.252 112775 username amirabbas 112775 unique_id port 112775 terminate_cause Lost-Carrier 112775 bytes_out 9947549 112775 bytes_in 267473431 112775 station_ip 37.27.63.234 112775 port 15729238 112775 nas_port_type Virtual 112775 remote_ip 5.5.5.255 112778 username aminvpn 112778 mac 112778 bytes_out 0 112778 bytes_in 0 112778 station_ip 5.120.4.224 112778 port 51 112778 unique_id port 112778 remote_ip 10.8.0.14 112782 username mirzaei 112782 mac 112782 bytes_out 2568 112782 bytes_in 4849 112782 station_ip 5.113.134.197 112782 port 62 112782 unique_id port 112782 remote_ip 10.8.0.66 112785 username tahmasebi 112785 kill_reason Another user logged on this global unique id 112785 mac 112785 bytes_out 0 112785 bytes_in 0 112785 station_ip 5.119.50.227 112785 port 52 112785 unique_id port 112787 username kamali1 112787 mac 112787 bytes_out 0 112787 bytes_in 0 112787 station_ip 5.119.100.18 112787 port 32 112787 unique_id port 112787 remote_ip 10.8.1.26 112789 username hashtadani3 112789 kill_reason Maximum check online fails reached 112789 mac 112789 bytes_out 0 112789 bytes_in 0 112789 station_ip 113.203.69.162 112789 port 62 112789 unique_id port 112791 username mirzaei 112791 mac 112791 bytes_out 26500 112791 bytes_in 28099 112791 station_ip 5.113.134.197 112791 port 51 112791 unique_id port 112791 remote_ip 10.8.0.66 112802 username aminvpn 112802 mac 112802 bytes_out 0 112802 bytes_in 0 112802 station_ip 5.120.4.224 112802 port 75 112802 unique_id port 112802 remote_ip 10.8.0.14 112809 username sabaghnezhad 112809 mac 112809 bytes_out 9911 112809 bytes_in 14744 112809 station_ip 37.129.253.255 112809 port 75 112809 unique_id port 112809 remote_ip 10.8.0.186 112812 username mahdiyehalizadeh 112812 mac 112812 bytes_out 0 112812 bytes_in 0 112812 station_ip 113.203.90.99 112812 port 78 112812 unique_id port 112812 remote_ip 10.8.0.82 112813 username mirzaei 112813 mac 112813 bytes_out 18697 112813 bytes_in 24121 112813 station_ip 5.113.210.68 112813 port 69 112813 unique_id port 112813 remote_ip 10.8.0.66 112816 username forozande 112816 mac 112816 bytes_out 33686 112816 bytes_in 53736 112816 station_ip 83.123.176.10 112816 port 69 112816 unique_id port 112816 remote_ip 10.8.0.74 112820 username farhad1 112820 mac 112820 bytes_out 1169168 112820 bytes_in 5946827 112820 station_ip 5.120.130.94 112820 port 75 112820 unique_id port 112820 remote_ip 10.8.0.26 112823 username amir 112823 mac 112823 bytes_out 0 112823 bytes_in 0 112823 station_ip 46.225.212.111 112823 port 75 112823 unique_id port 112823 remote_ip 10.8.0.50 112824 username morteza 112824 mac 112824 bytes_out 9042835 112824 bytes_in 39530109 112824 station_ip 37.129.253.199 112824 port 76 112824 unique_id port 112824 remote_ip 10.8.0.46 112828 username aminvpn 112828 mac 112828 bytes_out 159678 112828 bytes_in 278548 112828 station_ip 31.59.45.214 112828 port 69 112828 unique_id port 112828 remote_ip 10.8.0.14 112830 username sedighe 112830 mac 112830 bytes_out 156708 112792 username mirzaei 112792 mac 112792 bytes_out 2540 112792 bytes_in 6835 112792 station_ip 5.113.134.197 112792 port 37 112792 unique_id port 112792 remote_ip 10.8.1.30 112794 username aminvpn 112794 mac 112794 bytes_out 0 112794 bytes_in 0 112794 station_ip 5.120.4.224 112794 port 76 112794 unique_id port 112794 remote_ip 10.8.0.14 112796 username houshang 112796 mac 112796 bytes_out 252234 112796 bytes_in 1463895 112796 station_ip 5.120.190.181 112796 port 69 112796 unique_id port 112796 remote_ip 10.8.0.22 112797 username mirzaei 112797 mac 112797 bytes_out 65116 112797 bytes_in 85676 112797 station_ip 5.113.134.197 112797 port 75 112797 unique_id port 112797 remote_ip 10.8.0.66 112798 username houshang 112798 mac 112798 bytes_out 21374 112798 bytes_in 40699 112798 station_ip 5.120.190.181 112798 port 51 112798 unique_id port 112798 remote_ip 10.8.0.22 112800 username mirzaei 112800 mac 112800 bytes_out 24910 112800 bytes_in 41635 112800 station_ip 5.113.134.197 112800 port 69 112800 unique_id port 112800 remote_ip 10.8.0.66 112803 username sabaghnezhad 112803 mac 112803 bytes_out 14786 112803 bytes_in 17042 112803 station_ip 37.129.253.255 112803 port 69 112803 unique_id port 112803 remote_ip 10.8.0.186 112807 username mirzaei 112807 mac 112807 bytes_out 0 112807 bytes_in 0 112807 station_ip 5.120.176.175 112807 port 69 112807 unique_id port 112807 remote_ip 10.8.0.66 112808 username hashtadani3 112808 mac 112808 bytes_out 0 112808 bytes_in 0 112808 station_ip 113.203.69.162 112808 port 35 112808 unique_id port 112808 remote_ip 10.8.1.94 112810 username amir 112810 mac 112810 bytes_out 54183 112810 bytes_in 414664 112810 station_ip 46.225.212.111 112810 port 69 112810 unique_id port 112810 remote_ip 10.8.0.50 112811 username khalili 112811 mac 112811 bytes_out 0 112811 bytes_in 0 112811 station_ip 5.120.45.208 112811 port 34 112811 unique_id port 112811 remote_ip 10.8.1.18 112814 username aminvpn 112814 mac 112814 bytes_out 0 112814 bytes_in 0 112814 station_ip 31.59.45.214 112814 port 77 112814 unique_id port 112814 remote_ip 10.8.0.14 112818 username sabaghnezhad 112818 mac 112818 bytes_out 0 112818 bytes_in 0 112818 station_ip 37.129.253.255 112818 port 80 112818 unique_id port 112818 remote_ip 10.8.0.186 112821 username sabaghnezhad 112821 mac 112821 bytes_out 14437 112821 bytes_in 20526 112821 station_ip 37.129.253.255 112821 port 34 112821 unique_id port 112821 remote_ip 10.8.1.130 112822 username houshang 112822 mac 112822 bytes_out 0 112822 bytes_in 0 112822 station_ip 5.120.190.181 112822 port 51 112822 unique_id port 112825 username amir 112825 mac 112825 bytes_out 0 112825 bytes_in 0 112825 station_ip 46.225.212.111 112825 port 78 112825 unique_id port 112825 remote_ip 10.8.0.50 112827 username kamali1 112827 mac 112827 bytes_out 0 112827 bytes_in 0 112827 station_ip 5.119.100.18 112827 port 32 112827 unique_id port 112827 remote_ip 10.8.1.26 112829 username aminvpn 112829 mac 112829 bytes_out 0 112829 bytes_in 0 112829 station_ip 5.120.4.224 112829 port 78 112829 unique_id port 112829 remote_ip 10.8.0.14 112831 username aminvpn 112831 kill_reason Maximum check online fails reached 112831 mac 112831 bytes_out 0 112831 bytes_in 0 112831 station_ip 31.59.45.214 112831 port 76 112831 unique_id port 112832 username aminvpn 112832 mac 112832 bytes_out 0 112832 bytes_in 0 112832 station_ip 5.120.4.224 112832 port 51 112804 port 37 112804 unique_id port 112804 remote_ip 10.8.1.30 112805 username hashtadani3 112805 mac 112805 bytes_out 0 112805 bytes_in 0 112805 station_ip 113.203.69.162 112805 port 35 112805 unique_id port 112805 remote_ip 10.8.1.94 112806 username houshang 112806 kill_reason Another user logged on this global unique id 112806 mac 112806 bytes_out 0 112806 bytes_in 0 112806 station_ip 5.120.190.181 112806 port 51 112806 unique_id port 112806 remote_ip 10.8.0.22 112815 username aminvpn 112815 mac 112815 bytes_out 0 112815 bytes_in 0 112815 station_ip 5.120.4.224 112815 port 78 112815 unique_id port 112815 remote_ip 10.8.0.14 112817 username khalili 112817 mac 112817 bytes_out 0 112817 bytes_in 0 112817 station_ip 5.120.45.208 112817 port 34 112817 unique_id port 112817 remote_ip 10.8.1.18 112819 username houshang 112819 kill_reason Another user logged on this global unique id 112819 mac 112819 bytes_out 0 112819 bytes_in 0 112819 station_ip 5.120.190.181 112819 port 51 112819 unique_id port 112826 username morteza 112826 mac 112826 bytes_out 47815 112826 bytes_in 133893 112826 station_ip 37.129.253.199 112826 port 76 112826 unique_id port 112826 remote_ip 10.8.0.46 112835 username farhad1 112835 mac 112835 bytes_out 2022501 112835 bytes_in 16015437 112835 station_ip 5.119.168.95 112835 port 75 112835 unique_id port 112835 remote_ip 10.8.0.26 112839 username hashtadani3 112839 mac 112839 bytes_out 2535 112839 bytes_in 5130 112839 station_ip 113.203.69.162 112839 port 82 112839 unique_id port 112839 remote_ip 10.8.0.154 112843 username hashtadani3 112843 mac 112843 bytes_out 0 112843 bytes_in 0 112843 station_ip 113.203.69.162 112843 port 69 112843 unique_id port 112843 remote_ip 10.8.0.154 112844 username arman1 112844 mac 112844 bytes_out 2181326 112844 bytes_in 13057803 112844 station_ip 5.119.53.106 112844 port 77 112844 unique_id port 112844 remote_ip 10.8.0.110 112847 username aminvpn 112847 mac 112847 bytes_out 700267 112847 bytes_in 8088862 112847 station_ip 31.56.153.219 112847 port 78 112847 unique_id port 112847 remote_ip 10.8.0.14 112849 username hashtadani3 112849 mac 112849 bytes_out 0 112849 bytes_in 0 112849 station_ip 113.203.69.162 112849 port 35 112849 unique_id port 112849 remote_ip 10.8.1.94 112853 username forozande 112853 kill_reason Another user logged on this global unique id 112853 mac 112853 bytes_out 0 112853 bytes_in 0 112853 station_ip 83.122.252.194 112853 port 75 112853 unique_id port 112853 remote_ip 10.8.0.74 112854 username ahmadipour 112854 kill_reason Maximum check online fails reached 112854 unique_id port 112854 bytes_out 1029297 112854 bytes_in 28491071 112854 station_ip 5.210.117.29 112854 port 15729246 112854 nas_port_type Virtual 112854 remote_ip 5.5.5.254 112857 username sedighe 112857 mac 112857 bytes_out 5808 112857 bytes_in 7756 112857 station_ip 83.122.25.197 112857 port 69 112857 unique_id port 112857 remote_ip 10.8.0.146 112861 username amir 112861 kill_reason Another user logged on this global unique id 112861 mac 112861 bytes_out 0 112861 bytes_in 0 112861 station_ip 46.225.212.111 112861 port 81 112861 unique_id port 112861 remote_ip 10.8.0.50 112865 username hashtadani3 112865 mac 112865 bytes_out 0 112865 bytes_in 0 112865 station_ip 37.129.98.200 112865 port 35 112865 unique_id port 112865 remote_ip 10.8.1.94 112867 username hashtadani3 112867 mac 112867 bytes_out 0 112867 bytes_in 0 112867 station_ip 37.129.98.200 112867 port 35 112867 unique_id port 112867 remote_ip 10.8.1.94 112868 username hashtadani3 112830 bytes_in 967010 112830 station_ip 83.122.25.197 112830 port 51 112830 unique_id port 112830 remote_ip 10.8.0.146 112833 username aminvpn 112833 mac 112833 bytes_out 0 112833 bytes_in 0 112833 station_ip 31.56.220.135 112833 port 78 112833 unique_id port 112833 remote_ip 10.8.0.14 112834 username hashtadani3 112834 mac 112834 bytes_out 0 112834 bytes_in 0 112834 station_ip 113.203.69.162 112834 port 35 112834 unique_id port 112834 remote_ip 10.8.1.94 112836 username aminvpn 112836 mac 112836 bytes_out 65021 112836 bytes_in 25762 112836 station_ip 5.120.4.224 112836 port 51 112836 unique_id port 112836 remote_ip 10.8.0.14 112838 username sedighe 112838 mac 112838 bytes_out 80668 112838 bytes_in 153687 112838 station_ip 83.122.25.197 112838 port 69 112838 unique_id port 112838 remote_ip 10.8.0.146 112840 username hashtadani3 112840 mac 112840 bytes_out 0 112840 bytes_in 0 112840 station_ip 113.203.69.162 112840 port 34 112840 unique_id port 112840 remote_ip 10.8.1.94 112841 username amirabbas 112841 unique_id port 112841 terminate_cause User-Request 112841 bytes_out 19165217 112841 bytes_in 599111835 112841 station_ip 37.27.42.107 112841 port 15729244 112841 nas_port_type Virtual 112841 remote_ip 5.5.5.254 112845 username hashtadani3 112845 mac 112845 bytes_out 2071 112845 bytes_in 5398 112845 station_ip 113.203.69.162 112845 port 69 112845 unique_id port 112845 remote_ip 10.8.0.154 112846 username farhad1 112846 kill_reason Another user logged on this global unique id 112846 mac 112846 bytes_out 0 112846 bytes_in 0 112846 station_ip 5.119.130.30 112846 port 80 112846 unique_id port 112846 remote_ip 10.8.0.26 112848 username sedighe 112848 mac 112848 bytes_out 17783 112848 bytes_in 98806 112848 station_ip 83.122.25.197 112848 port 85 112848 unique_id port 112848 remote_ip 10.8.0.146 112851 username hashtadani3 112851 mac 112851 bytes_out 0 112851 bytes_in 0 112851 station_ip 37.129.98.200 112851 port 35 112851 unique_id port 112851 remote_ip 10.8.1.94 112852 username hashtadani3 112852 mac 112852 bytes_out 0 112852 bytes_in 0 112852 station_ip 37.129.98.200 112852 port 35 112852 unique_id port 112852 remote_ip 10.8.1.94 112855 username jamali 112855 mac 112855 bytes_out 766277 112855 bytes_in 8553741 112855 station_ip 5.119.87.121 112855 port 84 112855 unique_id port 112855 remote_ip 10.8.0.150 112858 username mirzaei 112858 mac 112858 bytes_out 57302 112858 bytes_in 121515 112858 station_ip 5.119.194.63 112858 port 83 112858 unique_id port 112858 remote_ip 10.8.0.66 112860 username hashtadani3 112860 mac 112860 bytes_out 0 112860 bytes_in 0 112860 station_ip 37.129.98.200 112860 port 69 112860 unique_id port 112860 remote_ip 10.8.0.154 112871 username amir 112871 mac 112871 bytes_out 0 112871 bytes_in 0 112871 station_ip 46.225.212.111 112871 port 81 112871 unique_id port 112875 username hashtadani3 112875 mac 112875 bytes_out 0 112875 bytes_in 0 112875 station_ip 37.129.98.200 112875 port 78 112875 unique_id port 112875 remote_ip 10.8.0.154 112881 username mirzaei 112881 mac 112881 bytes_out 46592 112881 bytes_in 78107 112881 station_ip 5.120.28.79 112881 port 82 112881 unique_id port 112881 remote_ip 10.8.0.66 112884 username amir 112884 mac 112884 bytes_out 65670 112884 bytes_in 486978 112884 station_ip 46.225.212.111 112884 port 82 112884 unique_id port 112884 remote_ip 10.8.0.50 112886 username aminvpn 112886 unique_id port 112886 terminate_cause User-Request 112886 bytes_out 3957710 112832 unique_id port 112832 remote_ip 10.8.0.14 112837 username hashtadani3 112837 mac 112837 bytes_out 0 112837 bytes_in 0 112837 station_ip 113.203.69.162 112837 port 34 112837 unique_id port 112837 remote_ip 10.8.1.94 112842 username mosi 112842 kill_reason Another user logged on this global unique id 112842 mac 112842 bytes_out 0 112842 bytes_in 0 112842 station_ip 151.235.111.162 112842 port 51 112842 unique_id port 112842 remote_ip 10.8.0.138 112850 username hashtadani3 112850 mac 112850 bytes_out 0 112850 bytes_in 0 112850 station_ip 37.129.98.200 112850 port 35 112850 unique_id port 112850 remote_ip 10.8.1.94 112856 username kamali1 112856 mac 112856 bytes_out 46115 112856 bytes_in 62468 112856 station_ip 5.119.100.18 112856 port 32 112856 unique_id port 112856 remote_ip 10.8.1.26 112859 username hashtadani3 112859 mac 112859 bytes_out 274986 112859 bytes_in 1239952 112859 station_ip 37.129.98.200 112859 port 77 112859 unique_id port 112859 remote_ip 10.8.0.154 112862 username kamali1 112862 mac 112862 bytes_out 0 112862 bytes_in 0 112862 station_ip 5.119.100.18 112862 port 32 112862 unique_id port 112862 remote_ip 10.8.1.26 112863 username mosi 112863 kill_reason Another user logged on this global unique id 112863 mac 112863 bytes_out 0 112863 bytes_in 0 112863 station_ip 151.235.111.162 112863 port 51 112863 unique_id port 112864 username hashtadani3 112864 kill_reason Maximum check online fails reached 112864 mac 112864 bytes_out 0 112864 bytes_in 0 112864 station_ip 37.129.98.200 112864 port 69 112864 unique_id port 112866 username mosi 112866 mac 112866 bytes_out 0 112866 bytes_in 0 112866 station_ip 151.235.111.162 112866 port 51 112866 unique_id port 112870 username sedighe 112870 mac 112870 bytes_out 10317 112870 bytes_in 18114 112870 station_ip 83.122.25.197 112870 port 78 112870 unique_id port 112870 remote_ip 10.8.0.146 112872 username hashtadani3 112872 mac 112872 bytes_out 0 112872 bytes_in 0 112872 station_ip 37.129.98.200 112872 port 35 112872 unique_id port 112872 remote_ip 10.8.1.94 112873 username kamali1 112873 mac 112873 bytes_out 0 112873 bytes_in 0 112873 station_ip 5.119.100.18 112873 port 32 112873 unique_id port 112873 remote_ip 10.8.1.26 112874 username hashtadani3 112874 mac 112874 bytes_out 9345 112874 bytes_in 16635 112874 station_ip 37.129.98.200 112874 port 78 112874 unique_id port 112874 remote_ip 10.8.0.154 112882 username sedighe 112882 mac 112882 bytes_out 33938 112882 bytes_in 54325 112882 station_ip 83.122.25.197 112882 port 51 112882 unique_id port 112882 remote_ip 10.8.0.146 112887 username khalili 112887 mac 112887 bytes_out 32910 112887 bytes_in 35045 112887 station_ip 5.120.45.208 112887 port 83 112887 unique_id port 112887 remote_ip 10.8.0.86 112889 username hashtadani3 112889 mac 112889 bytes_out 1329689 112889 bytes_in 210279 112889 station_ip 37.129.98.200 112889 port 81 112889 unique_id port 112889 remote_ip 10.8.0.154 112898 username hashtadani3 112898 mac 112898 bytes_out 0 112898 bytes_in 0 112898 station_ip 37.129.98.200 112898 port 37 112898 unique_id port 112898 remote_ip 10.8.1.94 112905 username hashtadani3 112905 kill_reason Maximum number of concurrent logins reached 112905 mac 112905 bytes_out 0 112905 bytes_in 0 112905 station_ip 37.129.98.200 112905 port 37 112905 unique_id port 112906 username sedighe 112906 mac 112906 bytes_out 0 112906 bytes_in 0 112906 station_ip 83.123.76.102 112906 port 75 112906 unique_id port 112868 mac 112868 bytes_out 0 112868 bytes_in 0 112868 station_ip 37.129.98.200 112868 port 35 112868 unique_id port 112868 remote_ip 10.8.1.94 112869 username hashtadani3 112869 mac 112869 bytes_out 0 112869 bytes_in 0 112869 station_ip 37.129.98.200 112869 port 51 112869 unique_id port 112869 remote_ip 10.8.0.154 112876 username hashtadani3 112876 mac 112876 bytes_out 0 112876 bytes_in 0 112876 station_ip 37.129.98.200 112876 port 35 112876 unique_id port 112876 remote_ip 10.8.1.94 112877 username hashtadani3 112877 mac 112877 bytes_out 0 112877 bytes_in 0 112877 station_ip 37.129.98.200 112877 port 81 112877 unique_id port 112877 remote_ip 10.8.0.154 112878 username hashtadani3 112878 kill_reason Maximum check online fails reached 112878 mac 112878 bytes_out 0 112878 bytes_in 0 112878 station_ip 37.129.98.200 112878 port 78 112878 unique_id port 112879 username hashtadani3 112879 mac 112879 bytes_out 9125 112879 bytes_in 15154 112879 station_ip 37.129.98.200 112879 port 81 112879 unique_id port 112879 remote_ip 10.8.0.154 112880 username mehdizare 112880 mac 112880 bytes_out 566174 112880 bytes_in 590523 112880 station_ip 5.119.132.42 112880 port 79 112880 unique_id port 112880 remote_ip 10.8.0.90 112883 username sedighe 112883 mac 112883 bytes_out 1744 112883 bytes_in 4328 112883 station_ip 83.122.25.197 112883 port 84 112883 unique_id port 112883 remote_ip 10.8.0.146 112885 username mehdizare 112885 mac 112885 bytes_out 586195 112885 bytes_in 7854386 112885 station_ip 5.119.132.42 112885 port 79 112885 unique_id port 112885 remote_ip 10.8.0.90 112888 username kamali1 112888 mac 112888 bytes_out 0 112888 bytes_in 0 112888 station_ip 5.119.100.18 112888 port 32 112888 unique_id port 112888 remote_ip 10.8.1.26 112891 username sedighe 112891 mac 112891 bytes_out 5722 112891 bytes_in 8122 112891 station_ip 83.122.25.197 112891 port 85 112891 unique_id port 112891 remote_ip 10.8.0.146 112893 username forozande 112893 mac 112893 bytes_out 0 112893 bytes_in 0 112893 station_ip 83.122.252.194 112893 port 75 112893 unique_id port 112894 username hashtadani3 112894 mac 112894 bytes_out 0 112894 bytes_in 0 112894 station_ip 37.129.98.200 112894 port 37 112894 unique_id port 112894 remote_ip 10.8.1.94 112895 username sedighe 112895 mac 112895 bytes_out 20338 112895 bytes_in 19412 112895 station_ip 83.122.25.197 112895 port 83 112895 unique_id port 112895 remote_ip 10.8.0.146 112901 username kamali1 112901 mac 112901 bytes_out 0 112901 bytes_in 0 112901 station_ip 5.119.100.18 112901 port 32 112901 unique_id port 112901 remote_ip 10.8.1.26 112903 username hashtadani3 112903 mac 112903 bytes_out 0 112903 bytes_in 0 112903 station_ip 37.129.98.200 112903 port 37 112903 unique_id port 112903 remote_ip 10.8.1.94 112907 username hashtadani3 112907 kill_reason Maximum check online fails reached 112907 mac 112907 bytes_out 0 112907 bytes_in 0 112907 station_ip 37.129.98.200 112907 port 84 112907 unique_id port 112910 username amir 112910 mac 112910 bytes_out 0 112910 bytes_in 0 112910 station_ip 46.225.212.111 112910 port 75 112910 unique_id port 112910 remote_ip 10.8.0.50 112916 username kamali1 112916 mac 112916 bytes_out 64990 112916 bytes_in 38402 112916 station_ip 5.119.100.18 112916 port 32 112916 unique_id port 112916 remote_ip 10.8.1.26 112919 username mehdizare 112919 mac 112919 bytes_out 0 112919 bytes_in 0 112919 station_ip 5.119.132.42 112886 bytes_in 91399539 112886 station_ip 31.56.153.219 112886 port 15729245 112886 nas_port_type Virtual 112886 remote_ip 5.5.5.252 112890 username hashtadani3 112890 mac 112890 bytes_out 0 112890 bytes_in 0 112890 station_ip 37.129.98.200 112890 port 81 112890 unique_id port 112890 remote_ip 10.8.0.154 112892 username hashtadani3 112892 mac 112892 bytes_out 0 112892 bytes_in 0 112892 station_ip 37.129.98.200 112892 port 37 112892 unique_id port 112892 remote_ip 10.8.1.94 112896 username hashtadani3 112896 mac 112896 bytes_out 0 112896 bytes_in 0 112896 station_ip 37.129.98.200 112896 port 37 112896 unique_id port 112896 remote_ip 10.8.1.94 112897 username hashtadani3 112897 kill_reason Maximum check online fails reached 112897 mac 112897 bytes_out 0 112897 bytes_in 0 112897 station_ip 37.129.98.200 112897 port 81 112897 unique_id port 112899 username hashtadani3 112899 mac 112899 bytes_out 0 112899 bytes_in 0 112899 station_ip 37.129.98.200 112899 port 37 112899 unique_id port 112899 remote_ip 10.8.1.94 112900 username farhad1 112900 kill_reason Another user logged on this global unique id 112900 mac 112900 bytes_out 0 112900 bytes_in 0 112900 station_ip 5.119.130.30 112900 port 80 112900 unique_id port 112902 username hashtadani3 112902 mac 112902 bytes_out 0 112902 bytes_in 0 112902 station_ip 37.129.98.200 112902 port 83 112902 unique_id port 112902 remote_ip 10.8.0.154 112904 username kamali1 112904 mac 112904 bytes_out 0 112904 bytes_in 0 112904 station_ip 5.119.100.18 112904 port 32 112904 unique_id port 112904 remote_ip 10.8.1.26 112908 username hashtadani3 112908 kill_reason Maximum check online fails reached 112908 mac 112908 bytes_out 0 112908 bytes_in 0 112908 station_ip 37.129.98.200 112908 port 83 112908 unique_id port 112911 username jamali 112911 mac 112911 bytes_out 138517 112911 bytes_in 189100 112911 station_ip 5.119.87.121 112911 port 77 112911 unique_id port 112911 remote_ip 10.8.0.150 112913 username hashtadani3 112913 mac 112913 bytes_out 0 112913 bytes_in 0 112913 station_ip 37.129.98.200 112913 port 75 112913 unique_id port 112913 remote_ip 10.8.0.154 112914 username hashtadani3 112914 kill_reason Maximum check online fails reached 112914 mac 112914 bytes_out 0 112914 bytes_in 0 112914 station_ip 37.129.98.200 112914 port 75 112914 unique_id port 112917 username jamali 112917 mac 112917 bytes_out 13051 112917 bytes_in 13939 112917 station_ip 5.119.87.121 112917 port 86 112917 unique_id port 112917 remote_ip 10.8.0.150 112920 username sedighe 112920 mac 112920 bytes_out 0 112920 bytes_in 0 112920 station_ip 83.123.76.102 112920 port 85 112920 unique_id port 112920 remote_ip 10.8.0.146 112923 username avaanna 112923 mac 112923 bytes_out 0 112923 bytes_in 0 112923 station_ip 83.123.80.41 112923 port 68 112923 unique_id port 112923 remote_ip 10.8.0.98 112929 username farhad1 112929 kill_reason Another user logged on this global unique id 112929 mac 112929 bytes_out 0 112929 bytes_in 0 112929 station_ip 5.119.130.30 112929 port 68 112929 unique_id port 112929 remote_ip 10.8.0.26 112932 username farhad1 112932 kill_reason Another user logged on this global unique id 112932 mac 112932 bytes_out 0 112932 bytes_in 0 112932 station_ip 5.119.130.30 112932 port 68 112932 unique_id port 112940 username sedighe 112940 mac 112940 bytes_out 236171 112940 bytes_in 1238563 112940 station_ip 83.123.76.102 112940 port 79 112940 unique_id port 112940 remote_ip 10.8.0.146 112947 username sedighe 112947 mac 112906 remote_ip 10.8.0.146 112909 username alihosseini1 112909 mac 112909 bytes_out 1055856 112909 bytes_in 8164068 112909 station_ip 5.120.176.197 112909 port 35 112909 unique_id port 112909 remote_ip 10.8.1.106 112912 username hashtadani3 112912 mac 112912 bytes_out 0 112912 bytes_in 0 112912 station_ip 37.129.98.200 112912 port 75 112912 unique_id port 112912 remote_ip 10.8.0.154 112915 username khalili 112915 mac 112915 bytes_out 0 112915 bytes_in 0 112915 station_ip 5.120.45.208 112915 port 82 112915 unique_id port 112915 remote_ip 10.8.0.86 112918 username farhad1 112918 mac 112918 bytes_out 0 112918 bytes_in 0 112918 station_ip 5.119.130.30 112918 port 80 112918 unique_id port 112921 username tahmasebi 112921 mac 112921 bytes_out 0 112921 bytes_in 0 112921 station_ip 5.119.50.227 112921 port 52 112921 unique_id port 112924 username irannezhad 112924 mac 112924 bytes_out 1459539 112924 bytes_in 3436928 112924 station_ip 83.122.191.158 112924 port 34 112924 unique_id port 112924 remote_ip 10.8.1.134 112927 username khalili 112927 kill_reason Maximum check online fails reached 112927 mac 112927 bytes_out 0 112927 bytes_in 0 112927 station_ip 5.120.45.208 112927 port 32 112927 unique_id port 112928 username ahmadipour 112928 unique_id port 112928 terminate_cause Lost-Carrier 112928 bytes_out 10874 112928 bytes_in 22600 112928 station_ip 5.210.123.181 112928 port 15729251 112928 nas_port_type Virtual 112928 remote_ip 5.5.5.254 112930 username amir 112930 mac 112930 bytes_out 0 112930 bytes_in 0 112930 station_ip 46.225.212.111 112930 port 77 112930 unique_id port 112930 remote_ip 10.8.0.50 112935 username rajaei 112935 mac 112935 bytes_out 0 112935 bytes_in 0 112935 station_ip 5.134.163.3 112935 port 52 112935 unique_id port 112935 remote_ip 10.8.0.34 112936 username amir 112936 mac 112936 bytes_out 0 112936 bytes_in 0 112936 station_ip 46.225.212.111 112936 port 85 112936 unique_id port 112936 remote_ip 10.8.0.50 112938 username hashtadani3 112938 mac 112938 bytes_out 0 112938 bytes_in 0 112938 station_ip 37.129.98.200 112938 port 80 112938 unique_id port 112938 remote_ip 10.8.0.154 112941 username rajaei 112941 kill_reason Another user logged on this global unique id 112941 mac 112941 bytes_out 0 112941 bytes_in 0 112941 station_ip 89.47.139.32 112941 port 85 112941 unique_id port 112941 remote_ip 10.8.0.34 112942 username sedighe 112942 mac 112942 bytes_out 0 112942 bytes_in 0 112942 station_ip 83.122.245.125 112942 port 82 112942 unique_id port 112942 remote_ip 10.8.0.146 112944 username avaanna 112944 mac 112944 bytes_out 0 112944 bytes_in 0 112944 station_ip 83.123.120.57 112944 port 77 112944 unique_id port 112944 remote_ip 10.8.0.98 112946 username mohammadmahdi 112946 mac 112946 bytes_out 946710 112946 bytes_in 24438906 112946 station_ip 5.119.192.50 112946 port 82 112946 unique_id port 112946 remote_ip 10.8.0.54 112952 username hashtadani3 112952 mac 112952 bytes_out 0 112952 bytes_in 0 112952 station_ip 37.129.98.200 112952 port 77 112952 unique_id port 112952 remote_ip 10.8.0.154 112953 username avaanna 112953 mac 112953 bytes_out 26450 112953 bytes_in 139611 112953 station_ip 83.123.120.57 112953 port 38 112953 unique_id port 112953 remote_ip 10.8.1.46 112954 username hashtadani3 112954 mac 112954 bytes_out 0 112954 bytes_in 0 112954 station_ip 37.129.98.200 112954 port 38 112954 unique_id port 112954 remote_ip 10.8.1.94 112960 username mehdizare 112960 mac 112919 port 79 112919 unique_id port 112919 remote_ip 10.8.0.90 112922 username mirzaei 112922 mac 112922 bytes_out 0 112922 bytes_in 0 112922 station_ip 5.119.142.244 112922 port 51 112922 unique_id port 112922 remote_ip 10.8.0.66 112925 username hashtadani3 112925 mac 112925 bytes_out 0 112925 bytes_in 0 112925 station_ip 37.129.98.200 112925 port 35 112925 unique_id port 112925 remote_ip 10.8.1.94 112926 username amirabbas 112926 kill_reason Maximum check online fails reached 112926 unique_id port 112926 bytes_out 3845272 112926 bytes_in 86325633 112926 station_ip 37.27.42.107 112926 port 15729247 112926 nas_port_type Virtual 112926 remote_ip 5.5.5.254 112931 username avaanna 112931 mac 112931 bytes_out 0 112931 bytes_in 0 112931 station_ip 83.123.80.41 112931 port 52 112931 unique_id port 112931 remote_ip 10.8.0.98 112933 username amir 112933 mac 112933 bytes_out 0 112933 bytes_in 0 112933 station_ip 46.225.212.111 112933 port 52 112933 unique_id port 112933 remote_ip 10.8.0.50 112934 username sedighe 112934 mac 112934 bytes_out 0 112934 bytes_in 0 112934 station_ip 83.123.76.102 112934 port 77 112934 unique_id port 112934 remote_ip 10.8.0.146 112937 username hashtadani3 112937 mac 112937 bytes_out 0 112937 bytes_in 0 112937 station_ip 37.129.98.200 112937 port 80 112937 unique_id port 112937 remote_ip 10.8.0.154 112939 username mohammadmahdi 112939 mac 112939 bytes_out 0 112939 bytes_in 0 112939 station_ip 5.119.192.50 112939 port 82 112939 unique_id port 112939 remote_ip 10.8.0.54 112943 username sedighe 112943 mac 112943 bytes_out 2433 112943 bytes_in 5746 112943 station_ip 83.122.245.125 112943 port 86 112943 unique_id port 112943 remote_ip 10.8.0.146 112945 username mohammadjavad 112945 mac 112945 bytes_out 0 112945 bytes_in 0 112945 station_ip 37.129.150.176 112945 port 52 112945 unique_id port 112945 remote_ip 10.8.0.142 112948 username avaanna 112948 mac 112948 bytes_out 47212 112948 bytes_in 161342 112948 station_ip 83.123.120.57 112948 port 77 112948 unique_id port 112948 remote_ip 10.8.0.98 112949 username mehdizare 112949 mac 112949 bytes_out 20791 112949 bytes_in 26836 112949 station_ip 5.119.132.42 112949 port 38 112949 unique_id port 112949 remote_ip 10.8.1.42 112951 username hashtadani3 112951 mac 112951 bytes_out 3722739 112951 bytes_in 37814976 112951 station_ip 37.129.98.200 112951 port 80 112951 unique_id port 112951 remote_ip 10.8.0.154 112955 username hashtadani3 112955 mac 112955 bytes_out 0 112955 bytes_in 0 112955 station_ip 37.129.98.200 112955 port 38 112955 unique_id port 112955 remote_ip 10.8.1.94 112956 username hashtadani3 112956 kill_reason Maximum check online fails reached 112956 mac 112956 bytes_out 0 112956 bytes_in 0 112956 station_ip 37.129.98.200 112956 port 77 112956 unique_id port 112958 username hashtadani3 112958 mac 112958 bytes_out 0 112958 bytes_in 0 112958 station_ip 37.129.98.200 112958 port 38 112958 unique_id port 112958 remote_ip 10.8.1.94 112964 username hashtadani3 112964 mac 112964 bytes_out 0 112964 bytes_in 0 112964 station_ip 37.129.98.200 112964 port 89 112964 unique_id port 112964 remote_ip 10.8.0.154 112974 username hashtadani3 112974 mac 112974 bytes_out 0 112974 bytes_in 0 112974 station_ip 37.129.98.200 112974 port 38 112974 unique_id port 112974 remote_ip 10.8.1.94 112977 username forozande 112977 mac 112977 bytes_out 0 112977 bytes_in 0 112977 station_ip 113.203.9.155 112977 port 93 112977 unique_id port 112947 bytes_out 0 112947 bytes_in 0 112947 station_ip 83.122.245.125 112947 port 87 112947 unique_id port 112947 remote_ip 10.8.0.146 112950 username avaanna 112950 mac 112950 bytes_out 0 112950 bytes_in 0 112950 station_ip 83.123.120.57 112950 port 77 112950 unique_id port 112950 remote_ip 10.8.0.98 112957 username hashtadani3 112957 mac 112957 bytes_out 0 112957 bytes_in 0 112957 station_ip 37.129.98.200 112957 port 38 112957 unique_id port 112957 remote_ip 10.8.1.94 112959 username hashtadani3 112959 mac 112959 bytes_out 0 112959 bytes_in 0 112959 station_ip 37.129.98.200 112959 port 38 112959 unique_id port 112959 remote_ip 10.8.1.94 112961 username hashtadani3 112961 kill_reason Maximum check online fails reached 112961 mac 112961 bytes_out 0 112961 bytes_in 0 112961 station_ip 37.129.98.200 112961 port 82 112961 unique_id port 112966 username sedighe 112966 mac 112966 bytes_out 73127 112966 bytes_in 108018 112966 station_ip 83.122.245.125 112966 port 40 112966 unique_id port 112966 remote_ip 10.8.1.78 112968 username hashtadani3 112968 kill_reason Maximum check online fails reached 112968 mac 112968 bytes_out 0 112968 bytes_in 0 112968 station_ip 37.129.98.200 112968 port 90 112968 unique_id port 112970 username sedighe 112970 mac 112970 bytes_out 0 112970 bytes_in 0 112970 station_ip 83.122.245.125 112970 port 38 112970 unique_id port 112970 remote_ip 10.8.1.78 112971 username mehdizare 112971 mac 112971 bytes_out 549109 112971 bytes_in 7860328 112971 station_ip 5.119.132.42 112971 port 87 112971 unique_id port 112971 remote_ip 10.8.0.90 112978 username avaanna 112978 mac 112978 bytes_out 349349 112978 bytes_in 4678404 112978 station_ip 83.123.120.57 112978 port 39 112978 unique_id port 112978 remote_ip 10.8.1.46 112980 username farhad1 112980 mac 112980 bytes_out 0 112980 bytes_in 0 112980 station_ip 5.119.130.30 112980 port 68 112980 unique_id port 112981 username hashtadani3 112981 mac 112981 bytes_out 0 112981 bytes_in 0 112981 station_ip 37.129.98.200 112981 port 52 112981 unique_id port 112981 remote_ip 10.8.0.154 112983 username hashtadani3 112983 mac 112983 bytes_out 2588 112983 bytes_in 4865 112983 station_ip 37.129.98.200 112983 port 80 112983 unique_id port 112983 remote_ip 10.8.0.154 112985 username mehdizare 112985 mac 112985 bytes_out 1053842 112985 bytes_in 19979578 112985 station_ip 5.119.132.42 112985 port 95 112985 unique_id port 112985 remote_ip 10.8.0.90 112988 username hashtadani3 112988 kill_reason Maximum check online fails reached 112988 mac 112988 bytes_out 0 112988 bytes_in 0 112988 station_ip 37.129.98.200 112988 port 93 112988 unique_id port 112993 username hamid.e 112993 unique_id port 112993 terminate_cause Lost-Carrier 112993 bytes_out 485805 112993 bytes_in 7054521 112993 station_ip 37.27.37.188 112993 port 15729253 112993 nas_port_type Virtual 112993 remote_ip 5.5.5.254 112994 username hashtadani3 112994 mac 112994 bytes_out 0 112994 bytes_in 0 112994 station_ip 37.129.98.200 112994 port 39 112994 unique_id port 112994 remote_ip 10.8.1.94 112996 username hashtadani3 112996 mac 112996 bytes_out 0 112996 bytes_in 0 112996 station_ip 37.129.98.200 112996 port 39 112996 unique_id port 112996 remote_ip 10.8.1.94 112998 username hashtadani3 112998 mac 112998 bytes_out 0 112998 bytes_in 0 112998 station_ip 37.129.98.200 112998 port 39 112998 unique_id port 112998 remote_ip 10.8.1.94 113002 username mohammadmahdi 113002 kill_reason Another user logged on this global unique id 113002 mac 112960 bytes_out 23935 112960 bytes_in 42678 112960 station_ip 5.119.132.42 112960 port 80 112960 unique_id port 112960 remote_ip 10.8.0.90 112962 username forozande 112962 mac 112962 bytes_out 0 112962 bytes_in 0 112962 station_ip 83.123.212.135 112962 port 79 112962 unique_id port 112962 remote_ip 10.8.0.74 112963 username hashtadani3 112963 mac 112963 bytes_out 0 112963 bytes_in 0 112963 station_ip 37.129.98.200 112963 port 89 112963 unique_id port 112963 remote_ip 10.8.0.154 112965 username hashtadani3 112965 kill_reason Maximum check online fails reached 112965 mac 112965 bytes_out 0 112965 bytes_in 0 112965 station_ip 37.129.98.200 112965 port 79 112965 unique_id port 112967 username hashtadani3 112967 kill_reason Maximum number of concurrent logins reached 112967 mac 112967 bytes_out 0 112967 bytes_in 0 112967 station_ip 37.129.98.200 112967 port 92 112967 unique_id port 112969 username hashtadani3 112969 kill_reason Maximum check online fails reached 112969 mac 112969 bytes_out 0 112969 bytes_in 0 112969 station_ip 37.129.98.200 112969 port 89 112969 unique_id port 112972 username hashtadani3 112972 kill_reason Maximum check online fails reached 112972 mac 112972 bytes_out 0 112972 bytes_in 0 112972 station_ip 37.129.98.200 112972 port 92 112972 unique_id port 112973 username mohammadmahdi 112973 mac 112973 bytes_out 1374000 112973 bytes_in 15032278 112973 station_ip 5.119.192.50 112973 port 52 112973 unique_id port 112973 remote_ip 10.8.0.54 112975 username rajaei 112975 mac 112975 bytes_out 0 112975 bytes_in 0 112975 station_ip 89.47.139.32 112975 port 85 112975 unique_id port 112976 username hashtadani3 112976 kill_reason Maximum check online fails reached 112976 mac 112976 bytes_out 0 112976 bytes_in 0 112976 station_ip 37.129.98.200 112976 port 94 112976 unique_id port 112979 username aminvpn 112979 mac 112979 bytes_out 0 112979 bytes_in 0 112979 station_ip 5.120.4.224 112979 port 80 112979 unique_id port 112979 remote_ip 10.8.0.14 112982 username hamid.e 112982 kill_reason Maximum number of concurrent logins reached 112982 unique_id port 112982 bytes_out 0 112982 bytes_in 0 112982 station_ip 37.27.62.15 112982 port 15729256 112982 nas_port_type Virtual 112987 username hashtadani3 112987 mac 112987 bytes_out 0 112987 bytes_in 0 112987 station_ip 37.129.98.200 112987 port 39 112987 unique_id port 112987 remote_ip 10.8.1.94 112990 username mohammadmahdi 112990 kill_reason Another user logged on this global unique id 112990 mac 112990 bytes_out 0 112990 bytes_in 0 112990 station_ip 5.119.192.50 112990 port 87 112990 unique_id port 112990 remote_ip 10.8.0.54 112992 username hashtadani3 112992 mac 112992 bytes_out 0 112992 bytes_in 0 112992 station_ip 37.129.98.200 112992 port 85 112992 unique_id port 112992 remote_ip 10.8.0.154 112997 username hashtadani3 112997 mac 112997 bytes_out 0 112997 bytes_in 0 112997 station_ip 37.129.98.200 112997 port 39 112997 unique_id port 112997 remote_ip 10.8.1.94 112999 username aminvpn 112999 mac 112999 bytes_out 0 112999 bytes_in 0 112999 station_ip 5.120.4.224 112999 port 85 112999 unique_id port 112999 remote_ip 10.8.0.14 113005 username mohammadmahdi 113005 kill_reason Another user logged on this global unique id 113005 mac 113005 bytes_out 0 113005 bytes_in 0 113005 station_ip 5.119.192.50 113005 port 87 113005 unique_id port 113010 username sedighe 113010 mac 113010 bytes_out 61049 113010 bytes_in 57288 113010 station_ip 37.129.227.13 113010 port 101 113010 unique_id port 113010 remote_ip 10.8.0.146 113013 username mohammadmahdi 112977 remote_ip 10.8.0.74 112984 username hashtadani3 112984 kill_reason Maximum check online fails reached 112984 mac 112984 bytes_out 0 112984 bytes_in 0 112984 station_ip 37.129.98.200 112984 port 52 112984 unique_id port 112986 username hashtadani3 112986 kill_reason Maximum check online fails reached 112986 mac 112986 bytes_out 0 112986 bytes_in 0 112986 station_ip 37.129.98.200 112986 port 80 112986 unique_id port 112989 username mehdizare 112989 mac 112989 bytes_out 0 112989 bytes_in 0 112989 station_ip 5.119.132.42 112989 port 85 112989 unique_id port 112989 remote_ip 10.8.0.90 112991 username mehdizare 112991 mac 112991 bytes_out 0 112991 bytes_in 0 112991 station_ip 5.119.132.42 112991 port 96 112991 unique_id port 112991 remote_ip 10.8.0.90 112995 username hashtadani3 112995 mac 112995 bytes_out 0 112995 bytes_in 0 112995 station_ip 37.129.98.200 112995 port 96 112995 unique_id port 112995 remote_ip 10.8.0.154 113000 username aminvpn 113000 unique_id port 113000 terminate_cause User-Request 113000 bytes_out 2136839 113000 bytes_in 32205370 113000 station_ip 31.56.153.219 113000 port 15729254 113000 nas_port_type Virtual 113000 remote_ip 5.5.5.250 113001 username hashtadani3 113001 kill_reason Another user logged on this global unique id 113001 mac 113001 bytes_out 0 113001 bytes_in 0 113001 station_ip 5.202.134.209 113001 port 39 113001 unique_id port 113001 remote_ip 10.8.1.94 113007 username kordestani 113007 mac 113007 bytes_out 0 113007 bytes_in 0 113007 station_ip 151.235.77.111 113007 port 96 113007 unique_id port 113007 remote_ip 10.8.0.134 113008 username sedighe 113008 mac 113008 bytes_out 134726 113008 bytes_in 148988 113008 station_ip 83.122.184.221 113008 port 98 113008 unique_id port 113008 remote_ip 10.8.0.146 113012 username mehdizare 113012 mac 113012 bytes_out 0 113012 bytes_in 0 113012 station_ip 5.119.132.42 113012 port 99 113012 unique_id port 113012 remote_ip 10.8.0.90 113015 username aminvpn 113015 mac 113015 bytes_out 0 113015 bytes_in 0 113015 station_ip 5.120.4.224 113015 port 96 113015 unique_id port 113015 remote_ip 10.8.0.14 113018 username sabaghnezhad 113018 mac 113018 bytes_out 0 113018 bytes_in 0 113018 station_ip 37.129.238.68 113018 port 37 113018 unique_id port 113018 remote_ip 10.8.1.130 113019 username amir 113019 mac 113019 bytes_out 0 113019 bytes_in 0 113019 station_ip 46.225.212.111 113019 port 96 113019 unique_id port 113019 remote_ip 10.8.0.50 113030 username hashtadani3 113030 mac 113030 bytes_out 0 113030 bytes_in 0 113030 station_ip 5.202.134.209 113030 port 37 113030 unique_id port 113030 remote_ip 10.8.1.94 113033 username sabaghnezhad 113033 mac 113033 bytes_out 14928 113033 bytes_in 17941 113033 station_ip 37.129.238.68 113033 port 38 113033 unique_id port 113033 remote_ip 10.8.1.130 113036 username hashtadani3 113036 kill_reason Maximum check online fails reached 113036 mac 113036 bytes_out 0 113036 bytes_in 0 113036 station_ip 5.202.134.209 113036 port 99 113036 unique_id port 113040 username aminvpn 113040 mac 113040 bytes_out 0 113040 bytes_in 0 113040 station_ip 5.120.4.224 113040 port 96 113040 unique_id port 113040 remote_ip 10.8.0.14 113051 username mehdizare 113051 mac 113051 bytes_out 0 113051 bytes_in 0 113051 station_ip 5.119.132.42 113051 port 95 113051 unique_id port 113051 remote_ip 10.8.0.90 113053 username amir 113053 mac 113053 bytes_out 71001 113053 bytes_in 524373 113053 station_ip 46.225.212.111 113053 port 91 113053 unique_id port 113002 bytes_out 0 113002 bytes_in 0 113002 station_ip 5.119.192.50 113002 port 87 113002 unique_id port 113003 username mehdizare 113003 mac 113003 bytes_out 0 113003 bytes_in 0 113003 station_ip 5.119.132.42 113003 port 97 113003 unique_id port 113003 remote_ip 10.8.0.90 113004 username amirabbas 113004 unique_id port 113004 terminate_cause User-Request 113004 bytes_out 9257698 113004 bytes_in 205791047 113004 station_ip 37.27.20.247 113004 port 15729252 113004 nas_port_type Virtual 113004 remote_ip 5.5.5.252 113006 username hashtadani3 113006 kill_reason Another user logged on this global unique id 113006 mac 113006 bytes_out 0 113006 bytes_in 0 113006 station_ip 5.202.134.209 113006 port 39 113006 unique_id port 113009 username amir 113009 kill_reason Another user logged on this global unique id 113009 mac 113009 bytes_out 0 113009 bytes_in 0 113009 station_ip 46.225.212.111 113009 port 86 113009 unique_id port 113009 remote_ip 10.8.0.50 113011 username naeimeh 113011 mac 113011 bytes_out 3481836 113011 bytes_in 43637082 113011 station_ip 37.129.16.136 113011 port 95 113011 unique_id port 113011 remote_ip 10.8.0.78 113016 username amir 113016 mac 113016 bytes_out 0 113016 bytes_in 0 113016 station_ip 46.225.212.111 113016 port 86 113016 unique_id port 113020 username mostafa_es78 113020 mac 113020 bytes_out 1099876 113020 bytes_in 8069870 113020 station_ip 178.236.35.96 113020 port 100 113020 unique_id port 113020 remote_ip 10.8.0.198 113021 username forozande 113021 mac 113021 bytes_out 0 113021 bytes_in 0 113021 station_ip 83.122.93.144 113021 port 85 113021 unique_id port 113021 remote_ip 10.8.0.74 113022 username avaanna 113022 mac 113022 bytes_out 0 113022 bytes_in 0 113022 station_ip 83.123.120.57 113022 port 86 113022 unique_id port 113022 remote_ip 10.8.0.98 113025 username avaanna 113025 mac 113025 bytes_out 25365 113025 bytes_in 39476 113025 station_ip 83.123.120.57 113025 port 85 113025 unique_id port 113025 remote_ip 10.8.0.98 113027 username mohammadmahdi 113027 mac 113027 bytes_out 0 113027 bytes_in 0 113027 station_ip 5.119.192.50 113027 port 87 113027 unique_id port 113028 username sedighe 113028 mac 113028 bytes_out 584712 113028 bytes_in 13067017 113028 station_ip 37.129.111.195 113028 port 98 113028 unique_id port 113028 remote_ip 10.8.0.146 113029 username hashtadani3 113029 mac 113029 bytes_out 0 113029 bytes_in 0 113029 station_ip 5.202.134.209 113029 port 39 113029 unique_id port 113032 username arman1 113032 kill_reason Another user logged on this global unique id 113032 mac 113032 bytes_out 0 113032 bytes_in 0 113032 station_ip 5.120.121.169 113032 port 91 113032 unique_id port 113032 remote_ip 10.8.0.110 113035 username mohammadjavad 113035 mac 113035 bytes_out 0 113035 bytes_in 0 113035 station_ip 37.129.58.186 113035 port 97 113035 unique_id port 113035 remote_ip 10.8.0.142 113041 username forozande 113041 mac 113041 bytes_out 0 113041 bytes_in 0 113041 station_ip 83.123.47.77 113041 port 87 113041 unique_id port 113041 remote_ip 10.8.0.74 113043 username hashtadani3 113043 mac 113043 bytes_out 0 113043 bytes_in 0 113043 station_ip 5.202.134.209 113043 port 87 113043 unique_id port 113043 remote_ip 10.8.0.154 113045 username mostafa_es78 113045 mac 113045 bytes_out 0 113045 bytes_in 0 113045 station_ip 178.236.35.96 113045 port 98 113045 unique_id port 113045 remote_ip 10.8.0.198 113046 username hashtadani3 113046 mac 113046 bytes_out 0 113046 bytes_in 0 113013 kill_reason Another user logged on this global unique id 113013 mac 113013 bytes_out 0 113013 bytes_in 0 113013 station_ip 5.119.192.50 113013 port 87 113013 unique_id port 113014 username avaanna 113014 mac 113014 bytes_out 3253998 113014 bytes_in 34627430 113014 station_ip 83.123.120.57 113014 port 38 113014 unique_id port 113014 remote_ip 10.8.1.46 113017 username hashtadani3 113017 kill_reason Another user logged on this global unique id 113017 mac 113017 bytes_out 0 113017 bytes_in 0 113017 station_ip 5.202.134.209 113017 port 39 113017 unique_id port 113023 username mohammadmahdi 113023 kill_reason Another user logged on this global unique id 113023 mac 113023 bytes_out 0 113023 bytes_in 0 113023 station_ip 5.119.192.50 113023 port 87 113023 unique_id port 113024 username hashtadani3 113024 kill_reason Another user logged on this global unique id 113024 mac 113024 bytes_out 0 113024 bytes_in 0 113024 station_ip 5.202.134.209 113024 port 39 113024 unique_id port 113026 username mostafa_es78 113026 unique_id port 113026 terminate_cause User-Request 113026 bytes_out 215736 113026 bytes_in 4508189 113026 station_ip 178.236.35.96 113026 port 15729257 113026 nas_port_type Virtual 113026 remote_ip 5.5.5.254 113031 username hashtadani3 113031 mac 113031 bytes_out 0 113031 bytes_in 0 113031 station_ip 5.202.134.209 113031 port 37 113031 unique_id port 113031 remote_ip 10.8.1.94 113034 username amir 113034 mac 113034 bytes_out 0 113034 bytes_in 0 113034 station_ip 46.225.212.111 113034 port 96 113034 unique_id port 113034 remote_ip 10.8.0.50 113037 username hashtadani3 113037 mac 113037 bytes_out 0 113037 bytes_in 0 113037 station_ip 5.202.134.209 113037 port 96 113037 unique_id port 113037 remote_ip 10.8.0.154 113038 username sedighe 113038 mac 113038 bytes_out 23213 113038 bytes_in 26084 113038 station_ip 37.129.101.230 113038 port 86 113038 unique_id port 113038 remote_ip 10.8.0.146 113039 username hashtadani3 113039 mac 113039 bytes_out 0 113039 bytes_in 0 113039 station_ip 5.202.134.209 113039 port 86 113039 unique_id port 113039 remote_ip 10.8.0.154 113042 username hashtadani3 113042 mac 113042 bytes_out 0 113042 bytes_in 0 113042 station_ip 5.202.134.209 113042 port 86 113042 unique_id port 113042 remote_ip 10.8.0.154 113044 username mostafa_es78 113044 unique_id port 113044 terminate_cause User-Request 113044 bytes_out 9667 113044 bytes_in 12640 113044 station_ip 178.236.35.96 113044 port 15729258 113044 nas_port_type Virtual 113044 remote_ip 5.5.5.255 113049 username aminvpn 113049 mac 113049 bytes_out 0 113049 bytes_in 0 113049 station_ip 5.120.4.224 113049 port 87 113049 unique_id port 113049 remote_ip 10.8.0.14 113052 username forozande 113052 mac 113052 bytes_out 0 113052 bytes_in 0 113052 station_ip 83.122.247.59 113052 port 86 113052 unique_id port 113052 remote_ip 10.8.0.74 113054 username sedighe 113054 mac 113054 bytes_out 0 113054 bytes_in 0 113054 station_ip 83.123.190.248 113054 port 87 113054 unique_id port 113054 remote_ip 10.8.0.146 113059 username forozande 113059 mac 113059 bytes_out 0 113059 bytes_in 0 113059 station_ip 37.129.167.13 113059 port 91 113059 unique_id port 113059 remote_ip 10.8.0.74 113066 username sabaghnezhad 113066 mac 113066 bytes_out 0 113066 bytes_in 0 113066 station_ip 37.129.238.68 113066 port 37 113066 unique_id port 113066 remote_ip 10.8.1.130 113073 username sabaghnezhad 113073 mac 113073 bytes_out 0 113073 bytes_in 0 113073 station_ip 37.129.238.68 113073 port 86 113073 unique_id port 113046 station_ip 5.202.134.209 113046 port 87 113046 unique_id port 113046 remote_ip 10.8.0.154 113047 username hashtadani3 113047 mac 113047 bytes_out 0 113047 bytes_in 0 113047 station_ip 5.202.134.209 113047 port 87 113047 unique_id port 113047 remote_ip 10.8.0.154 113048 username arman1 113048 mac 113048 bytes_out 0 113048 bytes_in 0 113048 station_ip 5.120.121.169 113048 port 91 113048 unique_id port 113050 username sedighe 113050 mac 113050 bytes_out 0 113050 bytes_in 0 113050 station_ip 37.129.101.230 113050 port 97 113050 unique_id port 113050 remote_ip 10.8.0.146 113056 username mehdizare 113056 mac 113056 bytes_out 0 113056 bytes_in 0 113056 station_ip 5.119.132.42 113056 port 96 113056 unique_id port 113056 remote_ip 10.8.0.90 113060 username hashtadani3 113060 mac 113060 bytes_out 0 113060 bytes_in 0 113060 station_ip 5.202.134.209 113060 port 38 113060 unique_id port 113060 remote_ip 10.8.1.94 113061 username hashtadani3 113061 mac 113061 bytes_out 0 113061 bytes_in 0 113061 station_ip 5.202.134.209 113061 port 38 113061 unique_id port 113061 remote_ip 10.8.1.94 113065 username farhad1 113065 mac 113065 bytes_out 6521131 113065 bytes_in 23906578 113065 station_ip 5.119.130.30 113065 port 68 113065 unique_id port 113065 remote_ip 10.8.0.26 113068 username hashtadani3 113068 mac 113068 bytes_out 0 113068 bytes_in 0 113068 station_ip 5.202.134.209 113068 port 96 113068 unique_id port 113068 remote_ip 10.8.0.154 113069 username amir 113069 mac 113069 bytes_out 0 113069 bytes_in 0 113069 station_ip 46.225.212.111 113069 port 91 113069 unique_id port 113069 remote_ip 10.8.0.50 113071 username hashtadani3 113071 mac 113071 bytes_out 0 113071 bytes_in 0 113071 station_ip 5.202.134.209 113071 port 37 113071 unique_id port 113071 remote_ip 10.8.1.94 113075 username sabaghnezhad 113075 mac 113075 bytes_out 0 113075 bytes_in 0 113075 station_ip 37.129.238.68 113075 port 86 113075 unique_id port 113075 remote_ip 10.8.0.186 113079 username ahmadi 113079 unique_id port 113079 terminate_cause User-Request 113079 bytes_out 29581 113079 bytes_in 204027 113079 station_ip 83.123.61.165 113079 port 15729260 113079 nas_port_type Virtual 113079 remote_ip 5.5.5.236 113085 username hashtadani3 113085 mac 113085 bytes_out 0 113085 bytes_in 0 113085 station_ip 5.202.134.209 113085 port 97 113085 unique_id port 113085 remote_ip 10.8.0.154 113088 username hashtadani3 113088 mac 113088 bytes_out 0 113088 bytes_in 0 113088 station_ip 5.202.134.209 113088 port 68 113088 unique_id port 113088 remote_ip 10.8.0.154 113092 username rostami 113092 mac 113092 bytes_out 0 113092 bytes_in 0 113092 station_ip 5.120.130.140 113092 port 88 113092 unique_id port 113092 remote_ip 10.8.0.194 113097 username hashtadani3 113097 kill_reason Maximum check online fails reached 113097 mac 113097 bytes_out 0 113097 bytes_in 0 113097 station_ip 5.202.134.209 113097 port 87 113097 unique_id port 113101 username hashtadani3 113101 kill_reason Maximum check online fails reached 113101 mac 113101 bytes_out 0 113101 bytes_in 0 113101 station_ip 5.202.134.209 113101 port 88 113101 unique_id port 113104 username amir 113104 mac 113104 bytes_out 0 113104 bytes_in 0 113104 station_ip 46.225.212.111 113104 port 68 113104 unique_id port 113104 remote_ip 10.8.0.50 113115 username irannezhad 113115 mac 113115 bytes_out 0 113115 bytes_in 0 113115 station_ip 83.122.191.158 113115 port 38 113115 unique_id port 113053 remote_ip 10.8.0.50 113055 username hashtadani3 113055 mac 113055 bytes_out 0 113055 bytes_in 0 113055 station_ip 5.202.134.209 113055 port 38 113055 unique_id port 113055 remote_ip 10.8.1.94 113057 username mehdizare 113057 mac 113057 bytes_out 0 113057 bytes_in 0 113057 station_ip 5.119.132.42 113057 port 87 113057 unique_id port 113057 remote_ip 10.8.0.90 113058 username hashtadani3 113058 mac 113058 bytes_out 0 113058 bytes_in 0 113058 station_ip 5.202.134.209 113058 port 38 113058 unique_id port 113058 remote_ip 10.8.1.94 113062 username hashtadani3 113062 mac 113062 bytes_out 0 113062 bytes_in 0 113062 station_ip 5.202.134.209 113062 port 91 113062 unique_id port 113062 remote_ip 10.8.0.154 113063 username hashtadani3 113063 mac 113063 bytes_out 0 113063 bytes_in 0 113063 station_ip 5.202.134.209 113063 port 91 113063 unique_id port 113063 remote_ip 10.8.0.154 113064 username hashtadani3 113064 mac 113064 bytes_out 0 113064 bytes_in 0 113064 station_ip 5.202.134.209 113064 port 91 113064 unique_id port 113064 remote_ip 10.8.0.154 113067 username hashtadani3 113067 mac 113067 bytes_out 0 113067 bytes_in 0 113067 station_ip 5.202.134.209 113067 port 91 113067 unique_id port 113067 remote_ip 10.8.0.154 113070 username sabaghnezhad 113070 mac 113070 bytes_out 0 113070 bytes_in 0 113070 station_ip 37.129.238.68 113070 port 68 113070 unique_id port 113070 remote_ip 10.8.0.186 113072 username sedighe 113072 mac 113072 bytes_out 50621 113072 bytes_in 56380 113072 station_ip 83.123.190.248 113072 port 86 113072 unique_id port 113072 remote_ip 10.8.0.146 113074 username forozande 113074 mac 113074 bytes_out 34475 113074 bytes_in 26453 113074 station_ip 37.129.72.52 113074 port 91 113074 unique_id port 113074 remote_ip 10.8.0.74 113076 username hashtadani3 113076 mac 113076 bytes_out 0 113076 bytes_in 0 113076 station_ip 5.202.134.209 113076 port 97 113076 unique_id port 113076 remote_ip 10.8.0.154 113078 username hashtadani3 113078 mac 113078 bytes_out 0 113078 bytes_in 0 113078 station_ip 5.202.134.209 113078 port 91 113078 unique_id port 113078 remote_ip 10.8.0.154 113080 username hashtadani3 113080 mac 113080 bytes_out 0 113080 bytes_in 0 113080 station_ip 5.202.134.209 113080 port 91 113080 unique_id port 113080 remote_ip 10.8.0.154 113082 username sedighe 113082 mac 113082 bytes_out 0 113082 bytes_in 0 113082 station_ip 83.123.190.248 113082 port 68 113082 unique_id port 113082 remote_ip 10.8.0.146 113086 username hashtadani3 113086 mac 113086 bytes_out 0 113086 bytes_in 0 113086 station_ip 5.202.134.209 113086 port 97 113086 unique_id port 113086 remote_ip 10.8.0.154 113095 username mahdiyehalizadeh 113095 mac 113095 bytes_out 0 113095 bytes_in 0 113095 station_ip 83.122.144.187 113095 port 68 113095 unique_id port 113095 remote_ip 10.8.0.82 113096 username forozande 113096 mac 113096 bytes_out 97742 113096 bytes_in 174287 113096 station_ip 37.129.112.128 113096 port 88 113096 unique_id port 113096 remote_ip 10.8.0.74 113098 username farhad1 113098 mac 113098 bytes_out 0 113098 bytes_in 0 113098 station_ip 5.120.187.61 113098 port 91 113098 unique_id port 113098 remote_ip 10.8.0.26 113100 username irannezhad 113100 mac 113100 bytes_out 0 113100 bytes_in 0 113100 station_ip 83.122.191.158 113100 port 97 113100 unique_id port 113100 remote_ip 10.8.0.182 113105 username hashtadani3 113105 kill_reason Maximum check online fails reached 113073 remote_ip 10.8.0.186 113077 username farhad1 113077 mac 113077 bytes_out 0 113077 bytes_in 0 113077 station_ip 5.119.244.20 113077 port 96 113077 unique_id port 113077 remote_ip 10.8.0.26 113081 username hashtadani3 113081 mac 113081 bytes_out 0 113081 bytes_in 0 113081 station_ip 5.202.134.209 113081 port 91 113081 unique_id port 113081 remote_ip 10.8.0.154 113083 username hashtadani3 113083 mac 113083 bytes_out 0 113083 bytes_in 0 113083 station_ip 5.202.134.209 113083 port 68 113083 unique_id port 113083 remote_ip 10.8.0.154 113084 username hashtadani3 113084 mac 113084 bytes_out 0 113084 bytes_in 0 113084 station_ip 5.202.134.209 113084 port 68 113084 unique_id port 113084 remote_ip 10.8.0.154 113087 username amir 113087 mac 113087 bytes_out 0 113087 bytes_in 0 113087 station_ip 46.225.212.111 113087 port 68 113087 unique_id port 113087 remote_ip 10.8.0.50 113089 username morteza 113089 mac 113089 bytes_out 0 113089 bytes_in 0 113089 station_ip 37.129.222.187 113089 port 87 113089 unique_id port 113089 remote_ip 10.8.0.46 113090 username rajaei 113090 kill_reason Another user logged on this global unique id 113090 mac 113090 bytes_out 0 113090 bytes_in 0 113090 station_ip 89.47.139.32 113090 port 98 113090 unique_id port 113090 remote_ip 10.8.0.34 113091 username sedighe 113091 mac 113091 bytes_out 0 113091 bytes_in 0 113091 station_ip 83.123.190.248 113091 port 96 113091 unique_id port 113091 remote_ip 10.8.0.146 113093 username hashtadani3 113093 mac 113093 bytes_out 0 113093 bytes_in 0 113093 station_ip 5.202.134.209 113093 port 87 113093 unique_id port 113093 remote_ip 10.8.0.154 113094 username hashtadani3 113094 mac 113094 bytes_out 0 113094 bytes_in 0 113094 station_ip 5.202.134.209 113094 port 87 113094 unique_id port 113094 remote_ip 10.8.0.154 113099 username avaanna 113099 mac 113099 bytes_out 0 113099 bytes_in 0 113099 station_ip 83.123.120.57 113099 port 85 113099 unique_id port 113099 remote_ip 10.8.0.98 113102 username irannezhad 113102 mac 113102 bytes_out 0 113102 bytes_in 0 113102 station_ip 83.122.191.158 113102 port 85 113102 unique_id port 113102 remote_ip 10.8.0.182 113103 username hashtadani3 113103 mac 113103 bytes_out 0 113103 bytes_in 0 113103 station_ip 5.202.134.209 113103 port 91 113103 unique_id port 113103 remote_ip 10.8.0.154 113106 username irannezhad 113106 mac 113106 bytes_out 0 113106 bytes_in 0 113106 station_ip 83.122.191.158 113106 port 38 113106 unique_id port 113106 remote_ip 10.8.1.134 113108 username alihosseini1 113108 mac 113108 bytes_out 0 113108 bytes_in 0 113108 station_ip 5.119.39.104 113108 port 37 113108 unique_id port 113108 remote_ip 10.8.1.106 113110 username mohammadjavad 113110 mac 113110 bytes_out 0 113110 bytes_in 0 113110 station_ip 37.129.3.191 113110 port 68 113110 unique_id port 113110 remote_ip 10.8.0.142 113112 username mehdizare 113112 kill_reason Another user logged on this global unique id 113112 mac 113112 bytes_out 0 113112 bytes_in 0 113112 station_ip 5.119.132.42 113112 port 95 113112 unique_id port 113112 remote_ip 10.8.0.90 113114 username sedighe 113114 mac 113114 bytes_out 0 113114 bytes_in 0 113114 station_ip 83.123.190.248 113114 port 100 113114 unique_id port 113114 remote_ip 10.8.0.146 113117 username sedighe 113117 mac 113117 bytes_out 0 113117 bytes_in 0 113117 station_ip 83.122.126.167 113117 port 101 113117 unique_id port 113117 remote_ip 10.8.0.146 113105 mac 113105 bytes_out 0 113105 bytes_in 0 113105 station_ip 5.202.134.209 113105 port 91 113105 unique_id port 113107 username tahmasebi 113107 kill_reason Another user logged on this global unique id 113107 mac 113107 bytes_out 0 113107 bytes_in 0 113107 station_ip 5.119.50.227 113107 port 35 113107 unique_id port 113107 remote_ip 10.8.1.90 113109 username irannezhad 113109 mac 113109 bytes_out 0 113109 bytes_in 0 113109 station_ip 83.122.191.158 113109 port 101 113109 unique_id port 113109 remote_ip 10.8.0.182 113111 username hashtadani3 113111 mac 113111 bytes_out 0 113111 bytes_in 0 113111 station_ip 5.202.134.209 113111 port 101 113111 unique_id port 113111 remote_ip 10.8.0.154 113113 username hashtadani3 113113 mac 113113 bytes_out 0 113113 bytes_in 0 113113 station_ip 5.202.134.209 113113 port 68 113113 unique_id port 113113 remote_ip 10.8.0.154 113116 username sedighe 113116 mac 113116 bytes_out 40570 113116 bytes_in 48849 113116 station_ip 83.122.126.167 113116 port 68 113116 unique_id port 113116 remote_ip 10.8.0.146 113119 username arabpour 113119 unique_id port 113119 terminate_cause User-Request 113119 bytes_out 110830 113119 bytes_in 401693 113119 station_ip 83.123.30.137 113119 port 15729262 113119 nas_port_type Virtual 113119 remote_ip 5.5.5.252 113122 username zare 113122 mac 113122 bytes_out 714502 113122 bytes_in 15803516 113122 station_ip 37.27.17.184 113122 port 100 113122 unique_id port 113122 remote_ip 10.8.0.18 113123 username zare 113123 mac 113123 bytes_out 0 113123 bytes_in 0 113123 station_ip 37.27.17.184 113123 port 100 113123 unique_id port 113123 remote_ip 10.8.0.18 113125 username aminvpn 113125 unique_id port 113125 terminate_cause User-Request 113125 bytes_out 8214430 113125 bytes_in 47325470 113125 station_ip 31.56.153.219 113125 port 15729261 113125 nas_port_type Virtual 113125 remote_ip 5.5.5.238 113126 username zare 113126 mac 113126 bytes_out 0 113126 bytes_in 0 113126 station_ip 37.27.17.184 113126 port 100 113126 unique_id port 113126 remote_ip 10.8.0.18 113130 username hashtadani3 113130 mac 113130 bytes_out 0 113130 bytes_in 0 113130 station_ip 5.202.133.251 113130 port 101 113130 unique_id port 113130 remote_ip 10.8.0.154 113131 username zare 113131 mac 113131 bytes_out 0 113131 bytes_in 0 113131 station_ip 37.27.17.184 113131 port 38 113131 unique_id port 113131 remote_ip 10.8.1.58 113132 username sedighe 113132 mac 113132 bytes_out 24515 113132 bytes_in 112292 113132 station_ip 83.123.172.169 113132 port 37 113132 unique_id port 113132 remote_ip 10.8.1.78 113135 username arabpour 113135 unique_id port 113135 terminate_cause User-Request 113135 bytes_out 87587 113135 bytes_in 1116492 113135 station_ip 83.123.30.137 113135 port 15729264 113135 nas_port_type Virtual 113135 remote_ip 5.5.5.253 113141 username mostafa_es78 113141 unique_id port 113141 terminate_cause Lost-Carrier 113141 bytes_out 10742293 113141 bytes_in 182726402 113141 station_ip 178.236.35.96 113141 port 15729259 113141 nas_port_type Virtual 113141 remote_ip 5.5.5.255 113142 username hashtadani3 113142 kill_reason Maximum check online fails reached 113142 mac 113142 bytes_out 0 113142 bytes_in 0 113142 station_ip 5.202.133.251 113142 port 85 113142 unique_id port 113144 username arabpour 113144 unique_id port 113144 terminate_cause User-Request 113144 bytes_out 47345 113144 bytes_in 695188 113144 station_ip 83.123.30.137 113144 port 15729266 113144 nas_port_type Virtual 113144 remote_ip 5.5.5.255 113145 username amir 113145 mac 113145 bytes_out 0 113115 remote_ip 10.8.1.134 113120 username hashtadani3 113120 mac 113120 bytes_out 1027402 113120 bytes_in 4635362 113120 station_ip 5.202.134.209 113120 port 37 113120 unique_id port 113120 remote_ip 10.8.1.94 113133 username mehdizare 113133 kill_reason Another user logged on this global unique id 113133 mac 113133 bytes_out 0 113133 bytes_in 0 113133 station_ip 5.119.132.42 113133 port 95 113133 unique_id port 113136 username houshang 113136 mac 113136 bytes_out 0 113136 bytes_in 0 113136 station_ip 5.120.190.181 113136 port 85 113136 unique_id port 113136 remote_ip 10.8.0.22 113138 username hashtadani3 113138 mac 113138 bytes_out 0 113138 bytes_in 0 113138 station_ip 5.202.133.251 113138 port 85 113138 unique_id port 113138 remote_ip 10.8.0.154 113143 username aminvpn 113143 mac 113143 bytes_out 0 113143 bytes_in 0 113143 station_ip 31.56.153.219 113143 port 34 113143 unique_id port 113143 remote_ip 10.8.1.6 113146 username rajaei 113146 mac 113146 bytes_out 0 113146 bytes_in 0 113146 station_ip 89.47.139.32 113146 port 98 113146 unique_id port 113147 username hashtadani3 113147 mac 113147 bytes_out 0 113147 bytes_in 0 113147 station_ip 5.202.133.251 113147 port 98 113147 unique_id port 113147 remote_ip 10.8.0.154 113150 username mehdizare 113150 mac 113150 bytes_out 0 113150 bytes_in 0 113150 station_ip 5.119.132.42 113150 port 95 113150 unique_id port 113151 username hashtadani3 113151 mac 113151 bytes_out 0 113151 bytes_in 0 113151 station_ip 5.202.133.251 113151 port 95 113151 unique_id port 113151 remote_ip 10.8.0.154 113154 username hashtadani3 113154 mac 113154 bytes_out 0 113154 bytes_in 0 113154 station_ip 5.202.133.251 113154 port 95 113154 unique_id port 113154 remote_ip 10.8.0.154 113159 username aminvpn 113159 mac 113159 bytes_out 42454 113159 bytes_in 520012 113159 station_ip 151.238.247.191 113159 port 34 113159 unique_id port 113159 remote_ip 10.8.1.6 113163 username zare 113163 mac 113163 bytes_out 0 113163 bytes_in 0 113163 station_ip 37.27.17.184 113163 port 98 113163 unique_id port 113163 remote_ip 10.8.0.18 113169 username hashtadani3 113169 mac 113169 bytes_out 0 113169 bytes_in 0 113169 station_ip 5.202.133.251 113169 port 34 113169 unique_id port 113169 remote_ip 10.8.1.94 113175 username sedighe 113175 mac 113175 bytes_out 0 113175 bytes_in 0 113175 station_ip 113.203.24.163 113175 port 39 113175 unique_id port 113175 remote_ip 10.8.1.78 113180 username hashtadani3 113180 mac 113180 bytes_out 0 113180 bytes_in 0 113180 station_ip 5.202.133.251 113180 port 95 113180 unique_id port 113180 remote_ip 10.8.0.154 113184 username zare 113184 mac 113184 bytes_out 0 113184 bytes_in 0 113184 station_ip 37.27.17.184 113184 port 39 113184 unique_id port 113184 remote_ip 10.8.1.58 113187 username hashtadani3 113187 mac 113187 bytes_out 0 113187 bytes_in 0 113187 station_ip 5.202.133.251 113187 port 100 113187 unique_id port 113187 remote_ip 10.8.0.154 113192 username amir 113192 mac 113192 bytes_out 79556 113192 bytes_in 293759 113192 station_ip 46.225.212.111 113192 port 97 113192 unique_id port 113192 remote_ip 10.8.0.50 113193 username zare 113193 mac 113193 bytes_out 0 113193 bytes_in 0 113193 station_ip 37.27.17.184 113193 port 100 113193 unique_id port 113193 remote_ip 10.8.0.18 113199 username forozande 113199 mac 113199 bytes_out 0 113199 bytes_in 0 113199 station_ip 83.122.200.116 113118 username amir 113118 mac 113118 bytes_out 0 113118 bytes_in 0 113118 station_ip 46.225.212.111 113118 port 102 113118 unique_id port 113118 remote_ip 10.8.0.50 113121 username irannezhad 113121 mac 113121 bytes_out 0 113121 bytes_in 0 113121 station_ip 83.122.191.158 113121 port 102 113121 unique_id port 113121 remote_ip 10.8.0.182 113124 username sedighe 113124 mac 113124 bytes_out 39112 113124 bytes_in 82350 113124 station_ip 83.122.126.167 113124 port 38 113124 unique_id port 113124 remote_ip 10.8.1.78 113127 username tahmasebi 113127 kill_reason Another user logged on this global unique id 113127 mac 113127 bytes_out 0 113127 bytes_in 0 113127 station_ip 5.119.50.227 113127 port 35 113127 unique_id port 113128 username arabpour 113128 unique_id port 113128 terminate_cause User-Request 113128 bytes_out 33350 113128 bytes_in 168364 113128 station_ip 83.123.30.137 113128 port 15729263 113128 nas_port_type Virtual 113128 remote_ip 5.5.5.253 113129 username zare 113129 mac 113129 bytes_out 0 113129 bytes_in 0 113129 station_ip 37.27.17.184 113129 port 38 113129 unique_id port 113129 remote_ip 10.8.1.58 113134 username hashtadani3 113134 mac 113134 bytes_out 0 113134 bytes_in 0 113134 station_ip 5.202.133.251 113134 port 100 113134 unique_id port 113134 remote_ip 10.8.0.154 113137 username irannezhad 113137 mac 113137 bytes_out 0 113137 bytes_in 0 113137 station_ip 83.122.191.158 113137 port 39 113137 unique_id port 113137 remote_ip 10.8.1.134 113139 username sedighe 113139 mac 113139 bytes_out 0 113139 bytes_in 0 113139 station_ip 113.203.24.163 113139 port 40 113139 unique_id port 113139 remote_ip 10.8.1.78 113140 username arabpour 113140 unique_id port 113140 terminate_cause User-Request 113140 bytes_out 69848 113140 bytes_in 1282432 113140 station_ip 83.123.30.137 113140 port 15729265 113140 nas_port_type Virtual 113140 remote_ip 5.5.5.253 113148 username kordestani 113148 mac 113148 bytes_out 0 113148 bytes_in 0 113148 station_ip 151.235.77.111 113148 port 97 113148 unique_id port 113148 remote_ip 10.8.0.134 113149 username hashtadani3 113149 mac 113149 bytes_out 0 113149 bytes_in 0 113149 station_ip 5.202.133.251 113149 port 97 113149 unique_id port 113149 remote_ip 10.8.0.154 113152 username irannezhad 113152 kill_reason Another user logged on this global unique id 113152 mac 113152 bytes_out 0 113152 bytes_in 0 113152 station_ip 83.122.191.158 113152 port 102 113152 unique_id port 113152 remote_ip 10.8.0.182 113153 username mohammadjavad 113153 mac 113153 bytes_out 0 113153 bytes_in 0 113153 station_ip 113.203.7.83 113153 port 100 113153 unique_id port 113153 remote_ip 10.8.0.142 113155 username sedighe 113155 mac 113155 bytes_out 0 113155 bytes_in 0 113155 station_ip 113.203.24.163 113155 port 37 113155 unique_id port 113155 remote_ip 10.8.1.78 113156 username zare 113156 mac 113156 bytes_out 694090 113156 bytes_in 12865431 113156 station_ip 37.27.17.184 113156 port 38 113156 unique_id port 113156 remote_ip 10.8.1.58 113157 username hashtadani3 113157 mac 113157 bytes_out 0 113157 bytes_in 0 113157 station_ip 5.202.133.251 113157 port 98 113157 unique_id port 113157 remote_ip 10.8.0.154 113160 username irannezhad 113160 kill_reason Another user logged on this global unique id 113160 mac 113160 bytes_out 0 113160 bytes_in 0 113160 station_ip 83.122.191.158 113160 port 102 113160 unique_id port 113164 username irannezhad 113164 mac 113164 bytes_out 0 113164 bytes_in 0 113164 station_ip 83.122.191.158 113145 bytes_in 0 113145 station_ip 46.225.212.111 113145 port 101 113145 unique_id port 113145 remote_ip 10.8.0.50 113158 username hashtadani3 113158 mac 113158 bytes_out 0 113158 bytes_in 0 113158 station_ip 5.202.133.251 113158 port 98 113158 unique_id port 113158 remote_ip 10.8.0.154 113161 username zare 113161 kill_reason Maximum check online fails reached 113161 mac 113161 bytes_out 0 113161 bytes_in 0 113161 station_ip 37.27.17.184 113161 port 37 113161 unique_id port 113162 username hashtadani3 113162 mac 113162 bytes_out 0 113162 bytes_in 0 113162 station_ip 5.202.133.251 113162 port 100 113162 unique_id port 113162 remote_ip 10.8.0.154 113165 username irannezhad 113165 mac 113165 bytes_out 0 113165 bytes_in 0 113165 station_ip 83.122.191.158 113165 port 98 113165 unique_id port 113165 remote_ip 10.8.0.182 113167 username sedighe 113167 mac 113167 bytes_out 0 113167 bytes_in 0 113167 station_ip 113.203.24.163 113167 port 34 113167 unique_id port 113167 remote_ip 10.8.1.78 113168 username zare 113168 mac 113168 bytes_out 0 113168 bytes_in 0 113168 station_ip 37.27.17.184 113168 port 100 113168 unique_id port 113168 remote_ip 10.8.0.18 113172 username zare 113172 mac 113172 bytes_out 0 113172 bytes_in 0 113172 station_ip 37.27.17.184 113172 port 97 113172 unique_id port 113172 remote_ip 10.8.0.18 113173 username zare 113173 mac 113173 bytes_out 0 113173 bytes_in 0 113173 station_ip 37.27.17.184 113173 port 97 113173 unique_id port 113173 remote_ip 10.8.0.18 113176 username houshang 113176 mac 113176 bytes_out 0 113176 bytes_in 0 113176 station_ip 5.120.190.181 113176 port 95 113176 unique_id port 113176 remote_ip 10.8.0.22 113177 username irannezhad 113177 mac 113177 bytes_out 0 113177 bytes_in 0 113177 station_ip 83.122.191.158 113177 port 95 113177 unique_id port 113177 remote_ip 10.8.0.182 113178 username hashtadani3 113178 mac 113178 bytes_out 0 113178 bytes_in 0 113178 station_ip 5.202.133.251 113178 port 95 113178 unique_id port 113178 remote_ip 10.8.0.154 113183 username irannezhad 113183 mac 113183 bytes_out 0 113183 bytes_in 0 113183 station_ip 83.122.191.158 113183 port 97 113183 unique_id port 113183 remote_ip 10.8.0.182 113186 username hashtadani3 113186 mac 113186 bytes_out 0 113186 bytes_in 0 113186 station_ip 5.202.133.251 113186 port 39 113186 unique_id port 113186 remote_ip 10.8.1.94 113188 username irannezhad 113188 mac 113188 bytes_out 0 113188 bytes_in 0 113188 station_ip 83.122.191.158 113188 port 39 113188 unique_id port 113188 remote_ip 10.8.1.134 113194 username irannezhad 113194 mac 113194 bytes_out 0 113194 bytes_in 0 113194 station_ip 83.122.191.158 113194 port 42 113194 unique_id port 113194 remote_ip 10.8.1.134 113198 username zare 113198 mac 113198 bytes_out 0 113198 bytes_in 0 113198 station_ip 37.27.17.184 113198 port 97 113198 unique_id port 113198 remote_ip 10.8.0.18 113203 username irannezhad 113203 mac 113203 bytes_out 0 113203 bytes_in 0 113203 station_ip 83.122.191.158 113203 port 97 113203 unique_id port 113203 remote_ip 10.8.0.182 113205 username zare 113205 mac 113205 bytes_out 0 113205 bytes_in 0 113205 station_ip 37.27.17.184 113205 port 38 113205 unique_id port 113205 remote_ip 10.8.1.58 113209 username mehdizare 113209 mac 113209 bytes_out 0 113209 bytes_in 0 113209 station_ip 5.119.132.42 113209 port 34 113209 unique_id port 113209 remote_ip 10.8.1.42 113164 port 102 113164 unique_id port 113166 username zare 113166 mac 113166 bytes_out 0 113166 bytes_in 0 113166 station_ip 37.27.17.184 113166 port 98 113166 unique_id port 113166 remote_ip 10.8.0.18 113170 username mehdizare 113170 mac 113170 bytes_out 0 113170 bytes_in 0 113170 station_ip 5.119.132.42 113170 port 97 113170 unique_id port 113170 remote_ip 10.8.0.90 113171 username aminvpn 113171 mac 113171 bytes_out 0 113171 bytes_in 0 113171 station_ip 151.238.247.191 113171 port 38 113171 unique_id port 113171 remote_ip 10.8.1.6 113174 username hashtadani3 113174 mac 113174 bytes_out 0 113174 bytes_in 0 113174 station_ip 5.202.133.251 113174 port 97 113174 unique_id port 113174 remote_ip 10.8.0.154 113179 username irannezhad 113179 mac 113179 bytes_out 0 113179 bytes_in 0 113179 station_ip 83.122.191.158 113179 port 95 113179 unique_id port 113179 remote_ip 10.8.0.182 113181 username irannezhad 113181 mac 113181 bytes_out 0 113181 bytes_in 0 113181 station_ip 83.122.191.158 113181 port 95 113181 unique_id port 113181 remote_ip 10.8.0.182 113182 username amir 113182 mac 113182 bytes_out 0 113182 bytes_in 0 113182 station_ip 46.225.212.111 113182 port 98 113182 unique_id port 113182 remote_ip 10.8.0.50 113185 username hashtadani3 113185 kill_reason Maximum check online fails reached 113185 mac 113185 bytes_out 0 113185 bytes_in 0 113185 station_ip 5.202.133.251 113185 port 95 113185 unique_id port 113189 username zare 113189 mac 113189 bytes_out 0 113189 bytes_in 0 113189 station_ip 37.27.17.184 113189 port 41 113189 unique_id port 113189 remote_ip 10.8.1.58 113190 username forozande 113190 mac 113190 bytes_out 479126 113190 bytes_in 5777213 113190 station_ip 83.122.139.236 113190 port 98 113190 unique_id port 113190 remote_ip 10.8.0.74 113191 username zare 113191 kill_reason Maximum check online fails reached 113191 mac 113191 bytes_out 0 113191 bytes_in 0 113191 station_ip 37.27.17.184 113191 port 41 113191 unique_id port 113195 username zare 113195 mac 113195 bytes_out 0 113195 bytes_in 0 113195 station_ip 37.27.17.184 113195 port 97 113195 unique_id port 113195 remote_ip 10.8.0.18 113196 username irannezhad 113196 mac 113196 bytes_out 0 113196 bytes_in 0 113196 station_ip 83.122.191.158 113196 port 42 113196 unique_id port 113196 remote_ip 10.8.1.134 113197 username sedighe 113197 mac 113197 bytes_out 121913 113197 bytes_in 280743 113197 station_ip 37.129.238.232 113197 port 38 113197 unique_id port 113197 remote_ip 10.8.1.78 113200 username aminvpn 113200 mac 113200 bytes_out 162186 113200 bytes_in 534016 113200 station_ip 151.238.247.191 113200 port 40 113200 unique_id port 113200 remote_ip 10.8.1.6 113201 username irannezhad 113201 mac 113201 bytes_out 0 113201 bytes_in 0 113201 station_ip 83.122.191.158 113201 port 38 113201 unique_id port 113201 remote_ip 10.8.1.134 113204 username alireza 113204 unique_id port 113204 terminate_cause User-Request 113204 bytes_out 130427 113204 bytes_in 546656 113204 station_ip 5.120.60.241 113204 port 15729267 113204 nas_port_type Virtual 113204 remote_ip 5.5.5.255 113206 username avaanna 113206 mac 113206 bytes_out 0 113206 bytes_in 0 113206 station_ip 83.123.120.57 113206 port 96 113206 unique_id port 113206 remote_ip 10.8.0.98 113207 username irannezhad 113207 mac 113207 bytes_out 0 113207 bytes_in 0 113207 station_ip 83.122.191.158 113207 port 40 113207 unique_id port 113207 remote_ip 10.8.1.134 113216 username zare 113199 port 98 113199 unique_id port 113199 remote_ip 10.8.0.74 113202 username irannezhad 113202 mac 113202 bytes_out 0 113202 bytes_in 0 113202 station_ip 83.122.191.158 113202 port 38 113202 unique_id port 113202 remote_ip 10.8.1.134 113208 username forozande 113208 mac 113208 bytes_out 0 113208 bytes_in 0 113208 station_ip 83.122.96.146 113208 port 97 113208 unique_id port 113208 remote_ip 10.8.0.74 113211 username hashtadani3 113211 mac 113211 bytes_out 0 113211 bytes_in 0 113211 station_ip 5.202.133.251 113211 port 39 113211 unique_id port 113211 remote_ip 10.8.1.94 113213 username amir 113213 mac 113213 bytes_out 0 113213 bytes_in 0 113213 station_ip 46.225.212.111 113213 port 96 113213 unique_id port 113213 remote_ip 10.8.0.50 113215 username hashtadani3 113215 mac 113215 bytes_out 0 113215 bytes_in 0 113215 station_ip 5.202.133.251 113215 port 96 113215 unique_id port 113215 remote_ip 10.8.0.154 113217 username hashtadani3 113217 mac 113217 bytes_out 0 113217 bytes_in 0 113217 station_ip 83.122.141.234 113217 port 97 113217 unique_id port 113217 remote_ip 10.8.0.154 113219 username zare 113219 mac 113219 bytes_out 0 113219 bytes_in 0 113219 station_ip 37.27.17.184 113219 port 34 113219 unique_id port 113219 remote_ip 10.8.1.58 113224 username hashtadani3 113224 mac 113224 bytes_out 0 113224 bytes_in 0 113224 station_ip 83.122.141.234 113224 port 96 113224 unique_id port 113224 remote_ip 10.8.0.154 113225 username hashtadani3 113225 mac 113225 bytes_out 0 113225 bytes_in 0 113225 station_ip 83.122.141.234 113225 port 96 113225 unique_id port 113225 remote_ip 10.8.0.154 113232 username amir 113232 mac 113232 bytes_out 0 113232 bytes_in 0 113232 station_ip 46.225.212.111 113232 port 96 113232 unique_id port 113232 remote_ip 10.8.0.50 113233 username hashtadani3 113233 mac 113233 bytes_out 0 113233 bytes_in 0 113233 station_ip 83.122.141.234 113233 port 96 113233 unique_id port 113233 remote_ip 10.8.0.154 113234 username hashtadani3 113234 mac 113234 bytes_out 0 113234 bytes_in 0 113234 station_ip 83.122.141.234 113234 port 96 113234 unique_id port 113234 remote_ip 10.8.0.154 113239 username hashtadani3 113239 mac 113239 bytes_out 0 113239 bytes_in 0 113239 station_ip 83.122.141.234 113239 port 96 113239 unique_id port 113239 remote_ip 10.8.0.154 113240 username mohammadmahdi 113240 mac 113240 bytes_out 770034 113240 bytes_in 5844360 113240 station_ip 5.119.192.50 113240 port 102 113240 unique_id port 113240 remote_ip 10.8.0.54 113242 username hashtadani3 113242 mac 113242 bytes_out 0 113242 bytes_in 0 113242 station_ip 83.122.141.234 113242 port 96 113242 unique_id port 113242 remote_ip 10.8.0.154 113245 username hashtadani3 113245 mac 113245 bytes_out 0 113245 bytes_in 0 113245 station_ip 83.122.141.234 113245 port 96 113245 unique_id port 113245 remote_ip 10.8.0.154 113248 username mohammadmahdi 113248 mac 113248 bytes_out 0 113248 bytes_in 0 113248 station_ip 5.119.192.50 113248 port 96 113248 unique_id port 113248 remote_ip 10.8.0.54 113250 username forozande 113250 mac 113250 bytes_out 0 113250 bytes_in 0 113250 station_ip 37.129.168.34 113250 port 68 113250 unique_id port 113250 remote_ip 10.8.0.74 113252 username houshang 113252 mac 113252 bytes_out 0 113252 bytes_in 0 113252 station_ip 5.120.190.181 113252 port 106 113252 unique_id port 113252 remote_ip 10.8.0.22 113255 username hashtadani3 113210 username zare 113210 mac 113210 bytes_out 0 113210 bytes_in 0 113210 station_ip 37.27.17.184 113210 port 34 113210 unique_id port 113210 remote_ip 10.8.1.58 113212 username amir 113212 mac 113212 bytes_out 0 113212 bytes_in 0 113212 station_ip 46.225.212.111 113212 port 96 113212 unique_id port 113212 remote_ip 10.8.0.50 113214 username alireza 113214 unique_id port 113214 terminate_cause User-Request 113214 bytes_out 1445810 113214 bytes_in 27924236 113214 station_ip 5.120.60.241 113214 port 15729268 113214 nas_port_type Virtual 113214 remote_ip 5.5.5.255 113223 username hashtadani3 113223 mac 113223 bytes_out 0 113223 bytes_in 0 113223 station_ip 83.122.141.234 113223 port 96 113223 unique_id port 113223 remote_ip 10.8.0.154 113227 username hashtadani3 113227 mac 113227 bytes_out 0 113227 bytes_in 0 113227 station_ip 83.122.141.234 113227 port 96 113227 unique_id port 113227 remote_ip 10.8.0.154 113228 username hashtadani3 113228 mac 113228 bytes_out 0 113228 bytes_in 0 113228 station_ip 83.122.141.234 113228 port 96 113228 unique_id port 113228 remote_ip 10.8.0.154 113230 username hashtadani3 113230 mac 113230 bytes_out 0 113230 bytes_in 0 113230 station_ip 83.122.141.234 113230 port 104 113230 unique_id port 113230 remote_ip 10.8.0.154 113236 username irannezhad 113236 mac 113236 bytes_out 2828838 113236 bytes_in 47140260 113236 station_ip 83.122.191.158 113236 port 38 113236 unique_id port 113236 remote_ip 10.8.1.134 113241 username sedighe 113241 mac 113241 bytes_out 0 113241 bytes_in 0 113241 station_ip 83.123.243.225 113241 port 39 113241 unique_id port 113241 remote_ip 10.8.1.78 113247 username farhad1 113247 mac 113247 bytes_out 0 113247 bytes_in 0 113247 station_ip 5.119.168.191 113247 port 98 113247 unique_id port 113247 remote_ip 10.8.0.26 113249 username amir 113249 mac 113249 bytes_out 0 113249 bytes_in 0 113249 station_ip 46.225.212.111 113249 port 102 113249 unique_id port 113249 remote_ip 10.8.0.50 113251 username amir 113251 mac 113251 bytes_out 0 113251 bytes_in 0 113251 station_ip 46.225.212.111 113251 port 68 113251 unique_id port 113251 remote_ip 10.8.0.50 113254 username hashtadani3 113254 mac 113254 bytes_out 0 113254 bytes_in 0 113254 station_ip 83.122.141.234 113254 port 105 113254 unique_id port 113254 remote_ip 10.8.0.154 113256 username houshang 113256 mac 113256 bytes_out 14555 113256 bytes_in 30727 113256 station_ip 5.120.190.181 113256 port 68 113256 unique_id port 113256 remote_ip 10.8.0.22 113257 username hashtadani3 113257 mac 113257 bytes_out 0 113257 bytes_in 0 113257 station_ip 83.122.141.234 113257 port 68 113257 unique_id port 113257 remote_ip 10.8.0.154 113258 username musa 113258 kill_reason Another user logged on this global unique id 113258 mac 113258 bytes_out 0 113258 bytes_in 0 113258 station_ip 86.55.34.92 113258 port 101 113258 unique_id port 113258 remote_ip 10.8.0.6 113260 username rezasekonji 113260 mac 113260 bytes_out 657564 113260 bytes_in 6145467 113260 station_ip 83.122.52.92 113260 port 104 113260 unique_id port 113260 remote_ip 10.8.0.130 113262 username rezasekonji 113262 mac 113262 bytes_out 0 113262 bytes_in 0 113262 station_ip 83.122.52.92 113262 port 68 113262 unique_id port 113262 remote_ip 10.8.0.130 113263 username hashtadani3 113263 mac 113263 bytes_out 0 113263 bytes_in 0 113263 station_ip 83.122.141.234 113263 port 38 113263 unique_id port 113263 remote_ip 10.8.1.94 113216 mac 113216 bytes_out 16001 113216 bytes_in 33524 113216 station_ip 37.27.17.184 113216 port 34 113216 unique_id port 113216 remote_ip 10.8.1.58 113218 username malekpoir 113218 mac 113218 bytes_out 188542 113218 bytes_in 255373 113218 station_ip 5.119.43.245 113218 port 68 113218 unique_id port 113218 remote_ip 10.8.0.58 113220 username hashtadani3 113220 mac 113220 bytes_out 0 113220 bytes_in 0 113220 station_ip 83.122.141.234 113220 port 96 113220 unique_id port 113220 remote_ip 10.8.0.154 113221 username hashtadani3 113221 mac 113221 bytes_out 0 113221 bytes_in 0 113221 station_ip 83.122.141.234 113221 port 96 113221 unique_id port 113221 remote_ip 10.8.0.154 113222 username zare 113222 mac 113222 bytes_out 0 113222 bytes_in 0 113222 station_ip 37.27.17.184 113222 port 34 113222 unique_id port 113222 remote_ip 10.8.1.58 113226 username aminvpn 113226 unique_id port 113226 terminate_cause User-Request 113226 bytes_out 1358313 113226 bytes_in 9879806 113226 station_ip 5.160.112.92 113226 port 15729269 113226 nas_port_type Virtual 113226 remote_ip 5.5.5.222 113229 username hashtadani3 113229 mac 113229 bytes_out 0 113229 bytes_in 0 113229 station_ip 83.122.141.234 113229 port 103 113229 unique_id port 113229 remote_ip 10.8.0.154 113231 username hashtadani3 113231 mac 113231 bytes_out 0 113231 bytes_in 0 113231 station_ip 83.122.141.234 113231 port 104 113231 unique_id port 113231 remote_ip 10.8.0.154 113235 username houshang 113235 mac 113235 bytes_out 40826 113235 bytes_in 49279 113235 station_ip 5.120.190.181 113235 port 98 113235 unique_id port 113235 remote_ip 10.8.0.22 113237 username hashtadani3 113237 mac 113237 bytes_out 0 113237 bytes_in 0 113237 station_ip 83.122.141.234 113237 port 96 113237 unique_id port 113237 remote_ip 10.8.0.154 113238 username hashtadani3 113238 mac 113238 bytes_out 0 113238 bytes_in 0 113238 station_ip 83.122.141.234 113238 port 96 113238 unique_id port 113238 remote_ip 10.8.0.154 113243 username kordestani 113243 mac 113243 bytes_out 0 113243 bytes_in 0 113243 station_ip 151.235.77.111 113243 port 101 113243 unique_id port 113243 remote_ip 10.8.0.134 113244 username hashtadani3 113244 mac 113244 bytes_out 0 113244 bytes_in 0 113244 station_ip 83.122.141.234 113244 port 96 113244 unique_id port 113244 remote_ip 10.8.0.154 113246 username hashtadani3 113246 mac 113246 bytes_out 0 113246 bytes_in 0 113246 station_ip 83.122.141.234 113246 port 102 113246 unique_id port 113246 remote_ip 10.8.0.154 113253 username houshang 113253 mac 113253 bytes_out 0 113253 bytes_in 0 113253 station_ip 5.120.190.181 113253 port 68 113253 unique_id port 113253 remote_ip 10.8.0.22 113261 username hashtadani3 113261 mac 113261 bytes_out 0 113261 bytes_in 0 113261 station_ip 83.122.141.234 113261 port 68 113261 unique_id port 113261 remote_ip 10.8.0.154 113267 username houshang 113267 kill_reason Another user logged on this global unique id 113267 mac 113267 bytes_out 0 113267 bytes_in 0 113267 station_ip 5.120.190.181 113267 port 98 113267 unique_id port 113267 remote_ip 10.8.0.22 113273 username zare 113273 mac 113273 bytes_out 0 113273 bytes_in 0 113273 station_ip 37.27.17.184 113273 port 34 113273 unique_id port 113273 remote_ip 10.8.1.58 113275 username tahmasebi 113275 kill_reason Another user logged on this global unique id 113275 mac 113275 bytes_out 0 113275 bytes_in 0 113275 station_ip 5.119.50.227 113275 port 35 113275 unique_id port 113279 username zare 113255 mac 113255 bytes_out 0 113255 bytes_in 0 113255 station_ip 83.122.141.234 113255 port 98 113255 unique_id port 113255 remote_ip 10.8.0.154 113259 username hashtadani3 113259 mac 113259 bytes_out 0 113259 bytes_in 0 113259 station_ip 83.122.141.234 113259 port 68 113259 unique_id port 113259 remote_ip 10.8.0.154 113265 username amir 113265 mac 113265 bytes_out 0 113265 bytes_in 0 113265 station_ip 46.225.212.111 113265 port 68 113265 unique_id port 113265 remote_ip 10.8.0.50 113268 username hashtadani3 113268 mac 113268 bytes_out 0 113268 bytes_in 0 113268 station_ip 83.122.141.234 113268 port 38 113268 unique_id port 113268 remote_ip 10.8.1.94 113269 username zare 113269 mac 113269 bytes_out 411427 113269 bytes_in 2387494 113269 station_ip 37.27.17.184 113269 port 34 113269 unique_id port 113269 remote_ip 10.8.1.58 113271 username zare 113271 mac 113271 bytes_out 0 113271 bytes_in 0 113271 station_ip 37.27.17.184 113271 port 34 113271 unique_id port 113271 remote_ip 10.8.1.58 113272 username zare 113272 mac 113272 bytes_out 0 113272 bytes_in 0 113272 station_ip 37.27.17.184 113272 port 34 113272 unique_id port 113272 remote_ip 10.8.1.58 113276 username zare 113276 mac 113276 bytes_out 0 113276 bytes_in 0 113276 station_ip 37.27.17.184 113276 port 34 113276 unique_id port 113276 remote_ip 10.8.1.58 113277 username rezasekonji 113277 mac 113277 bytes_out 141295 113277 bytes_in 803403 113277 station_ip 83.122.52.92 113277 port 102 113277 unique_id port 113277 remote_ip 10.8.0.130 113278 username houshang 113278 kill_reason Another user logged on this global unique id 113278 mac 113278 bytes_out 0 113278 bytes_in 0 113278 station_ip 5.120.190.181 113278 port 98 113278 unique_id port 113280 username mohammadmahdi 113280 mac 113280 bytes_out 166519 113280 bytes_in 479086 113280 station_ip 5.119.192.50 113280 port 68 113280 unique_id port 113280 remote_ip 10.8.0.54 113284 username amir 113284 mac 113284 bytes_out 0 113284 bytes_in 0 113284 station_ip 46.225.212.111 113284 port 68 113284 unique_id port 113284 remote_ip 10.8.0.50 113286 username houshang 113286 kill_reason Another user logged on this global unique id 113286 mac 113286 bytes_out 0 113286 bytes_in 0 113286 station_ip 5.120.190.181 113286 port 98 113286 unique_id port 113296 username sabaghnezhad 113296 mac 113296 bytes_out 0 113296 bytes_in 0 113296 station_ip 37.129.238.68 113296 port 86 113296 unique_id port 113296 remote_ip 10.8.0.186 113302 username zare 113302 mac 113302 bytes_out 1597315 113302 bytes_in 27368191 113302 station_ip 37.27.17.184 113302 port 34 113302 unique_id port 113302 remote_ip 10.8.1.58 113306 username hashtadani3 113306 mac 113306 bytes_out 0 113306 bytes_in 0 113306 station_ip 83.122.141.234 113306 port 38 113306 unique_id port 113312 username hashtadani3 113312 mac 113312 bytes_out 0 113312 bytes_in 0 113312 station_ip 83.122.141.234 113312 port 102 113312 unique_id port 113312 remote_ip 10.8.0.154 113314 username kordestani 113314 kill_reason Another user logged on this global unique id 113314 mac 113314 bytes_out 0 113314 bytes_in 0 113314 station_ip 151.235.87.52 113314 port 98 113314 unique_id port 113314 remote_ip 10.8.0.134 113315 username houshang 113315 mac 113315 bytes_out 0 113315 bytes_in 0 113315 station_ip 5.120.190.181 113315 port 68 113315 unique_id port 113320 username hashtadani3 113320 mac 113320 bytes_out 0 113320 bytes_in 0 113320 station_ip 83.122.141.234 113264 username hashtadani3 113264 mac 113264 bytes_out 0 113264 bytes_in 0 113264 station_ip 83.122.141.234 113264 port 38 113264 unique_id port 113264 remote_ip 10.8.1.94 113266 username hashtadani3 113266 mac 113266 bytes_out 0 113266 bytes_in 0 113266 station_ip 83.122.141.234 113266 port 68 113266 unique_id port 113266 remote_ip 10.8.0.154 113270 username hashtadani3 113270 mac 113270 bytes_out 0 113270 bytes_in 0 113270 station_ip 83.122.141.234 113270 port 68 113270 unique_id port 113270 remote_ip 10.8.0.154 113274 username farhad1 113274 kill_reason Another user logged on this global unique id 113274 mac 113274 bytes_out 0 113274 bytes_in 0 113274 station_ip 5.119.15.99 113274 port 96 113274 unique_id port 113274 remote_ip 10.8.0.26 113281 username amir 113281 mac 113281 bytes_out 71979 113281 bytes_in 349170 113281 station_ip 46.225.212.111 113281 port 102 113281 unique_id port 113281 remote_ip 10.8.0.50 113283 username malekpoir 113283 mac 113283 bytes_out 0 113283 bytes_in 0 113283 station_ip 5.120.117.201 113283 port 97 113283 unique_id port 113288 username mohammadmahdi 113288 mac 113288 bytes_out 1054951 113288 bytes_in 13724134 113288 station_ip 5.119.192.50 113288 port 104 113288 unique_id port 113288 remote_ip 10.8.0.54 113290 username alemzadeh 113290 kill_reason Relative expiration date has reached 113290 unique_id port 113290 bytes_out 0 113290 bytes_in 0 113290 station_ip 113.203.92.104 113290 port 15729272 113290 nas_port_type Virtual 113293 username houshang 113293 mac 113293 bytes_out 0 113293 bytes_in 0 113293 station_ip 5.120.190.181 113293 port 98 113293 unique_id port 113295 username khalili 113295 mac 113295 bytes_out 17397 113295 bytes_in 25082 113295 station_ip 5.119.229.224 113295 port 68 113295 unique_id port 113295 remote_ip 10.8.0.86 113297 username hashtadani3 113297 kill_reason Another user logged on this global unique id 113297 mac 113297 bytes_out 0 113297 bytes_in 0 113297 station_ip 83.122.141.234 113297 port 38 113297 unique_id port 113297 remote_ip 10.8.1.94 113298 username farhad1 113298 kill_reason Another user logged on this global unique id 113298 mac 113298 bytes_out 0 113298 bytes_in 0 113298 station_ip 5.119.15.99 113298 port 96 113298 unique_id port 113300 username alihosseini1 113300 kill_reason Another user logged on this global unique id 113300 mac 113300 bytes_out 0 113300 bytes_in 0 113300 station_ip 5.119.23.140 113300 port 97 113300 unique_id port 113300 remote_ip 10.8.0.166 113301 username khalili 113301 mac 113301 bytes_out 4652 113301 bytes_in 6711 113301 station_ip 5.119.229.224 113301 port 100 113301 unique_id port 113301 remote_ip 10.8.0.86 113307 username hashtadani3 113307 mac 113307 bytes_out 0 113307 bytes_in 0 113307 station_ip 83.122.141.234 113307 port 38 113307 unique_id port 113307 remote_ip 10.8.1.94 113308 username hashtadani3 113308 mac 113308 bytes_out 0 113308 bytes_in 0 113308 station_ip 83.122.141.234 113308 port 39 113308 unique_id port 113308 remote_ip 10.8.1.94 113310 username zare 113310 mac 113310 bytes_out 0 113310 bytes_in 0 113310 station_ip 37.27.17.184 113310 port 38 113310 unique_id port 113310 remote_ip 10.8.1.58 113311 username aminvpn 113311 mac 113311 bytes_out 0 113311 bytes_in 0 113311 station_ip 83.123.131.250 113311 port 102 113311 unique_id port 113311 remote_ip 10.8.0.14 113316 username hashtadani3 113316 mac 113316 bytes_out 0 113316 bytes_in 0 113316 station_ip 83.122.141.234 113316 port 68 113316 unique_id port 113279 mac 113279 bytes_out 0 113279 bytes_in 0 113279 station_ip 37.27.17.184 113279 port 34 113279 unique_id port 113279 remote_ip 10.8.1.58 113282 username malekpoir 113282 kill_reason Another user logged on this global unique id 113282 mac 113282 bytes_out 0 113282 bytes_in 0 113282 station_ip 5.120.117.201 113282 port 97 113282 unique_id port 113282 remote_ip 10.8.0.58 113285 username alihosseini1 113285 mac 113285 bytes_out 3121 113285 bytes_in 8456 113285 station_ip 5.119.76.100 113285 port 39 113285 unique_id port 113285 remote_ip 10.8.1.106 113287 username khalili 113287 mac 113287 bytes_out 1455169 113287 bytes_in 16275856 113287 station_ip 5.119.229.224 113287 port 100 113287 unique_id port 113287 remote_ip 10.8.0.86 113289 username tahmasebi 113289 kill_reason Another user logged on this global unique id 113289 mac 113289 bytes_out 0 113289 bytes_in 0 113289 station_ip 5.119.50.227 113289 port 35 113289 unique_id port 113291 username mirzaei 113291 kill_reason Another user logged on this global unique id 113291 mac 113291 bytes_out 0 113291 bytes_in 0 113291 station_ip 5.119.142.244 113291 port 51 113291 unique_id port 113291 remote_ip 10.8.0.66 113292 username alihosseini1 113292 mac 113292 bytes_out 31795 113292 bytes_in 203415 113292 station_ip 5.119.23.140 113292 port 39 113292 unique_id port 113292 remote_ip 10.8.1.106 113294 username aminvpn 113294 unique_id port 113294 terminate_cause Lost-Carrier 113294 bytes_out 16646846 113294 bytes_in 131753399 113294 station_ip 5.160.112.92 113294 port 15729270 113294 nas_port_type Virtual 113294 remote_ip 5.5.5.223 113299 username amir 113299 mac 113299 bytes_out 701126 113299 bytes_in 2634439 113299 station_ip 46.225.212.111 113299 port 100 113299 unique_id port 113299 remote_ip 10.8.0.50 113303 username houshang 113303 kill_reason Another user logged on this global unique id 113303 mac 113303 bytes_out 0 113303 bytes_in 0 113303 station_ip 5.120.190.181 113303 port 68 113303 unique_id port 113303 remote_ip 10.8.0.22 113304 username zare 113304 mac 113304 bytes_out 0 113304 bytes_in 0 113304 station_ip 37.27.17.184 113304 port 100 113304 unique_id port 113304 remote_ip 10.8.0.18 113305 username zare 113305 kill_reason Maximum check online fails reached 113305 mac 113305 bytes_out 0 113305 bytes_in 0 113305 station_ip 37.27.17.184 113305 port 34 113305 unique_id port 113309 username hashtadani3 113309 mac 113309 bytes_out 0 113309 bytes_in 0 113309 station_ip 83.122.141.234 113309 port 100 113309 unique_id port 113309 remote_ip 10.8.0.154 113313 username alihosseini1 113313 mac 113313 bytes_out 0 113313 bytes_in 0 113313 station_ip 5.119.23.140 113313 port 97 113313 unique_id port 113319 username hashtadani3 113319 mac 113319 bytes_out 0 113319 bytes_in 0 113319 station_ip 83.122.141.234 113319 port 68 113319 unique_id port 113319 remote_ip 10.8.0.154 113321 username naeimeh 113321 mac 113321 bytes_out 0 113321 bytes_in 0 113321 station_ip 113.203.5.152 113321 port 86 113321 unique_id port 113321 remote_ip 10.8.0.78 113322 username hashtadani3 113322 mac 113322 bytes_out 0 113322 bytes_in 0 113322 station_ip 83.122.141.234 113322 port 68 113322 unique_id port 113322 remote_ip 10.8.0.154 113324 username hashtadani3 113324 mac 113324 bytes_out 0 113324 bytes_in 0 113324 station_ip 83.122.141.234 113324 port 68 113324 unique_id port 113324 remote_ip 10.8.0.154 113326 username mosi 113326 mac 113326 bytes_out 0 113326 bytes_in 0 113326 station_ip 151.235.111.162 113326 port 86 113316 remote_ip 10.8.0.154 113317 username hashtadani3 113317 mac 113317 bytes_out 0 113317 bytes_in 0 113317 station_ip 83.122.141.234 113317 port 68 113317 unique_id port 113317 remote_ip 10.8.0.154 113318 username hashtadani3 113318 mac 113318 bytes_out 0 113318 bytes_in 0 113318 station_ip 83.122.141.234 113318 port 68 113318 unique_id port 113318 remote_ip 10.8.0.154 113325 username houshang 113325 kill_reason Another user logged on this global unique id 113325 mac 113325 bytes_out 0 113325 bytes_in 0 113325 station_ip 5.120.190.181 113325 port 97 113325 unique_id port 113325 remote_ip 10.8.0.22 113330 username hashtadani3 113330 mac 113330 bytes_out 0 113330 bytes_in 0 113330 station_ip 83.122.141.234 113330 port 68 113330 unique_id port 113330 remote_ip 10.8.0.154 113331 username hashtadani3 113331 mac 113331 bytes_out 0 113331 bytes_in 0 113331 station_ip 83.122.141.234 113331 port 68 113331 unique_id port 113331 remote_ip 10.8.0.154 113339 username houshang 113339 kill_reason Another user logged on this global unique id 113339 mac 113339 bytes_out 0 113339 bytes_in 0 113339 station_ip 5.120.190.181 113339 port 97 113339 unique_id port 113341 username musa 113341 kill_reason Maximum check online fails reached 113341 mac 113341 bytes_out 0 113341 bytes_in 0 113341 station_ip 86.55.34.92 113341 port 101 113341 unique_id port 113343 username hashtadani3 113343 mac 113343 bytes_out 0 113343 bytes_in 0 113343 station_ip 83.122.141.234 113343 port 86 113343 unique_id port 113343 remote_ip 10.8.0.154 113344 username aminvpn 113344 kill_reason Another user logged on this global unique id 113344 mac 113344 bytes_out 0 113344 bytes_in 0 113344 station_ip 5.119.178.248 113344 port 100 113344 unique_id port 113344 remote_ip 10.8.0.14 113346 username farhad1 113346 mac 113346 bytes_out 0 113346 bytes_in 0 113346 station_ip 5.119.15.99 113346 port 96 113346 unique_id port 113347 username hashtadani3 113347 mac 113347 bytes_out 0 113347 bytes_in 0 113347 station_ip 83.122.141.234 113347 port 86 113347 unique_id port 113347 remote_ip 10.8.0.154 113351 username alihosseini1 113351 mac 113351 bytes_out 31691 113351 bytes_in 100937 113351 station_ip 5.119.249.113 113351 port 35 113351 unique_id port 113351 remote_ip 10.8.1.106 113352 username hashtadani3 113352 mac 113352 bytes_out 0 113352 bytes_in 0 113352 station_ip 83.122.141.234 113352 port 86 113352 unique_id port 113352 remote_ip 10.8.0.154 113358 username hashtadani3 113358 mac 113358 bytes_out 0 113358 bytes_in 0 113358 station_ip 83.122.141.234 113358 port 96 113358 unique_id port 113358 remote_ip 10.8.0.154 113365 username hashtadani3 113365 mac 113365 bytes_out 0 113365 bytes_in 0 113365 station_ip 83.122.141.234 113365 port 96 113365 unique_id port 113365 remote_ip 10.8.0.154 113366 username hashtadani3 113366 mac 113366 bytes_out 0 113366 bytes_in 0 113366 station_ip 83.122.141.234 113366 port 96 113366 unique_id port 113366 remote_ip 10.8.0.154 113367 username alihosseini1 113367 mac 113367 bytes_out 0 113367 bytes_in 0 113367 station_ip 5.119.249.113 113367 port 96 113367 unique_id port 113367 remote_ip 10.8.0.166 113369 username aminvpn 113369 kill_reason Another user logged on this global unique id 113369 mac 113369 bytes_out 0 113369 bytes_in 0 113369 station_ip 5.119.178.248 113369 port 100 113369 unique_id port 113371 username alihosseini1 113371 mac 113371 bytes_out 0 113371 bytes_in 0 113371 station_ip 5.119.249.113 113371 port 96 113320 port 68 113320 unique_id port 113320 remote_ip 10.8.0.154 113323 username hashtadani3 113323 mac 113323 bytes_out 0 113323 bytes_in 0 113323 station_ip 83.122.141.234 113323 port 68 113323 unique_id port 113323 remote_ip 10.8.0.154 113327 username hashtadani3 113327 mac 113327 bytes_out 0 113327 bytes_in 0 113327 station_ip 83.122.141.234 113327 port 68 113327 unique_id port 113327 remote_ip 10.8.0.154 113328 username alirr 113328 unique_id port 113328 terminate_cause User-Request 113328 bytes_out 5667963 113328 bytes_in 115441038 113328 station_ip 5.120.51.217 113328 port 15729271 113328 nas_port_type Virtual 113328 remote_ip 5.5.5.229 113333 username hashtadani3 113333 mac 113333 bytes_out 0 113333 bytes_in 0 113333 station_ip 83.122.141.234 113333 port 35 113333 unique_id port 113333 remote_ip 10.8.1.94 113334 username hashtadani3 113334 mac 113334 bytes_out 0 113334 bytes_in 0 113334 station_ip 83.122.141.234 113334 port 68 113334 unique_id port 113334 remote_ip 10.8.0.154 113340 username hashtadani3 113340 mac 113340 bytes_out 0 113340 bytes_in 0 113340 station_ip 83.122.141.234 113340 port 68 113340 unique_id port 113340 remote_ip 10.8.0.154 113342 username aminvpn 113342 unique_id port 113342 terminate_cause Lost-Carrier 113342 bytes_out 0 113342 bytes_in 280 113342 station_ip 5.119.14.127 113342 port 15729275 113342 nas_port_type Virtual 113342 remote_ip 5.5.5.237 113353 username hashtadani3 113353 mac 113353 bytes_out 0 113353 bytes_in 0 113353 station_ip 83.122.141.234 113353 port 86 113353 unique_id port 113353 remote_ip 10.8.0.154 113355 username kordestani 113355 kill_reason Another user logged on this global unique id 113355 mac 113355 bytes_out 0 113355 bytes_in 0 113355 station_ip 151.235.87.52 113355 port 98 113355 unique_id port 113356 username hashtadani3 113356 mac 113356 bytes_out 0 113356 bytes_in 0 113356 station_ip 83.122.141.234 113356 port 86 113356 unique_id port 113356 remote_ip 10.8.0.154 113357 username hashtadani3 113357 mac 113357 bytes_out 0 113357 bytes_in 0 113357 station_ip 83.122.141.234 113357 port 86 113357 unique_id port 113357 remote_ip 10.8.0.154 113359 username alihosseini1 113359 mac 113359 bytes_out 0 113359 bytes_in 0 113359 station_ip 5.119.249.113 113359 port 102 113359 unique_id port 113359 remote_ip 10.8.0.166 113361 username mosi 113361 mac 113361 bytes_out 0 113361 bytes_in 0 113361 station_ip 151.235.111.162 113361 port 96 113361 unique_id port 113361 remote_ip 10.8.0.138 113364 username alihosseini1 113364 mac 113364 bytes_out 0 113364 bytes_in 0 113364 station_ip 5.119.249.113 113364 port 96 113364 unique_id port 113364 remote_ip 10.8.0.166 113372 username aminvpn 113372 mac 113372 bytes_out 0 113372 bytes_in 0 113372 station_ip 5.119.178.248 113372 port 100 113372 unique_id port 113376 username hashtadani3 113376 mac 113376 bytes_out 0 113376 bytes_in 0 113376 station_ip 83.122.141.234 113376 port 100 113376 unique_id port 113376 remote_ip 10.8.0.154 113377 username alihosseini1 113377 mac 113377 bytes_out 25136 113377 bytes_in 92828 113377 station_ip 5.119.249.113 113377 port 96 113377 unique_id port 113377 remote_ip 10.8.0.166 113378 username hashtadani3 113378 mac 113378 bytes_out 0 113378 bytes_in 0 113378 station_ip 83.122.141.234 113378 port 96 113378 unique_id port 113378 remote_ip 10.8.0.154 113383 username zare 113383 kill_reason Another user logged on this global unique id 113383 mac 113383 bytes_out 0 113383 bytes_in 0 113326 unique_id port 113326 remote_ip 10.8.0.138 113329 username tahmasebi 113329 mac 113329 bytes_out 0 113329 bytes_in 0 113329 station_ip 5.119.50.227 113329 port 35 113329 unique_id port 113332 username hashtadani3 113332 mac 113332 bytes_out 0 113332 bytes_in 0 113332 station_ip 83.122.141.234 113332 port 68 113332 unique_id port 113332 remote_ip 10.8.0.154 113335 username kordestani 113335 kill_reason Another user logged on this global unique id 113335 mac 113335 bytes_out 0 113335 bytes_in 0 113335 station_ip 151.235.87.52 113335 port 98 113335 unique_id port 113336 username hashtadani3 113336 mac 113336 bytes_out 0 113336 bytes_in 0 113336 station_ip 83.122.141.234 113336 port 68 113336 unique_id port 113336 remote_ip 10.8.0.154 113337 username hashtadani3 113337 mac 113337 bytes_out 0 113337 bytes_in 0 113337 station_ip 83.122.141.234 113337 port 68 113337 unique_id port 113337 remote_ip 10.8.0.154 113338 username hashtadani3 113338 mac 113338 bytes_out 0 113338 bytes_in 0 113338 station_ip 83.122.141.234 113338 port 68 113338 unique_id port 113338 remote_ip 10.8.0.154 113345 username hashtadani3 113345 mac 113345 bytes_out 0 113345 bytes_in 0 113345 station_ip 83.122.141.234 113345 port 35 113345 unique_id port 113345 remote_ip 10.8.1.94 113348 username houshang 113348 kill_reason Another user logged on this global unique id 113348 mac 113348 bytes_out 0 113348 bytes_in 0 113348 station_ip 5.120.190.181 113348 port 97 113348 unique_id port 113349 username hashtadani3 113349 mac 113349 bytes_out 0 113349 bytes_in 0 113349 station_ip 83.122.141.234 113349 port 39 113349 unique_id port 113349 remote_ip 10.8.1.94 113350 username hashtadani3 113350 mac 113350 bytes_out 0 113350 bytes_in 0 113350 station_ip 83.122.141.234 113350 port 86 113350 unique_id port 113350 remote_ip 10.8.0.154 113354 username hashtadani3 113354 mac 113354 bytes_out 0 113354 bytes_in 0 113354 station_ip 83.122.141.234 113354 port 86 113354 unique_id port 113354 remote_ip 10.8.0.154 113360 username hashtadani3 113360 mac 113360 bytes_out 0 113360 bytes_in 0 113360 station_ip 83.122.141.234 113360 port 102 113360 unique_id port 113360 remote_ip 10.8.0.154 113362 username hashtadani3 113362 mac 113362 bytes_out 0 113362 bytes_in 0 113362 station_ip 83.122.141.234 113362 port 102 113362 unique_id port 113362 remote_ip 10.8.0.154 113363 username alirr 113363 unique_id port 113363 terminate_cause Lost-Carrier 113363 bytes_out 443529 113363 bytes_in 1838366 113363 station_ip 5.120.51.217 113363 port 15729273 113363 nas_port_type Virtual 113363 remote_ip 5.5.5.233 113368 username hashtadani3 113368 mac 113368 bytes_out 0 113368 bytes_in 0 113368 station_ip 83.122.141.234 113368 port 96 113368 unique_id port 113368 remote_ip 10.8.0.154 113370 username houshang 113370 mac 113370 bytes_out 0 113370 bytes_in 0 113370 station_ip 5.120.190.181 113370 port 97 113370 unique_id port 113374 username hashtadani3 113374 mac 113374 bytes_out 0 113374 bytes_in 0 113374 station_ip 83.122.141.234 113374 port 35 113374 unique_id port 113374 remote_ip 10.8.1.94 113375 username hashtadani3 113375 mac 113375 bytes_out 0 113375 bytes_in 0 113375 station_ip 83.122.141.234 113375 port 35 113375 unique_id port 113375 remote_ip 10.8.1.94 113379 username kordestani 113379 kill_reason Another user logged on this global unique id 113379 mac 113379 bytes_out 0 113379 bytes_in 0 113379 station_ip 151.235.87.52 113379 port 98 113379 unique_id port 113371 unique_id port 113371 remote_ip 10.8.0.166 113373 username hashtadani3 113373 mac 113373 bytes_out 0 113373 bytes_in 0 113373 station_ip 83.122.141.234 113373 port 97 113373 unique_id port 113373 remote_ip 10.8.0.154 113381 username houshang 113381 mac 113381 bytes_out 115025 113381 bytes_in 145676 113381 station_ip 5.120.190.181 113381 port 97 113381 unique_id port 113381 remote_ip 10.8.0.22 113388 username hashtadani3 113388 mac 113388 bytes_out 0 113388 bytes_in 0 113388 station_ip 83.122.141.234 113388 port 68 113388 unique_id port 113388 remote_ip 10.8.0.154 113395 username mirzaei 113395 mac 113395 bytes_out 0 113395 bytes_in 0 113395 station_ip 5.119.142.244 113395 port 51 113395 unique_id port 113396 username hashtadani3 113396 mac 113396 bytes_out 0 113396 bytes_in 0 113396 station_ip 83.122.141.234 113396 port 51 113396 unique_id port 113396 remote_ip 10.8.0.154 113398 username mahdiyehalizadeh 113398 mac 113398 bytes_out 3189087 113398 bytes_in 43190228 113398 station_ip 37.129.50.167 113398 port 86 113398 unique_id port 113398 remote_ip 10.8.0.82 113400 username mahdiyehalizadeh 113400 mac 113400 bytes_out 47467 113400 bytes_in 529399 113400 station_ip 37.129.113.58 113400 port 51 113400 unique_id port 113400 remote_ip 10.8.0.82 113401 username hashtadani3 113401 mac 113401 bytes_out 0 113401 bytes_in 0 113401 station_ip 83.122.141.234 113401 port 51 113401 unique_id port 113401 remote_ip 10.8.0.154 113404 username aminvpn 113404 mac 113404 bytes_out 0 113404 bytes_in 0 113404 station_ip 5.119.178.248 113404 port 51 113404 unique_id port 113404 remote_ip 10.8.0.14 113405 username hashtadani3 113405 mac 113405 bytes_out 0 113405 bytes_in 0 113405 station_ip 83.122.141.234 113405 port 51 113405 unique_id port 113405 remote_ip 10.8.0.154 113406 username hashtadani3 113406 mac 113406 bytes_out 0 113406 bytes_in 0 113406 station_ip 83.122.141.234 113406 port 51 113406 unique_id port 113406 remote_ip 10.8.0.154 113409 username hashtadani3 113409 mac 113409 bytes_out 0 113409 bytes_in 0 113409 station_ip 83.122.141.234 113409 port 98 113409 unique_id port 113409 remote_ip 10.8.0.154 113412 username hashtadani3 113412 mac 113412 bytes_out 1644 113412 bytes_in 3789 113412 station_ip 83.122.141.234 113412 port 100 113412 unique_id port 113412 remote_ip 10.8.0.154 113415 username hashtadani3 113415 mac 113415 bytes_out 0 113415 bytes_in 0 113415 station_ip 83.122.141.234 113415 port 97 113415 unique_id port 113415 remote_ip 10.8.0.154 113418 username alihosseini1 113418 mac 113418 bytes_out 0 113418 bytes_in 0 113418 station_ip 5.119.30.199 113418 port 96 113418 unique_id port 113418 remote_ip 10.8.0.166 113420 username farhad1 113420 kill_reason Another user logged on this global unique id 113420 mac 113420 bytes_out 0 113420 bytes_in 0 113420 station_ip 5.119.89.108 113420 port 86 113420 unique_id port 113420 remote_ip 10.8.0.26 113422 username hashtadani3 113422 mac 113422 bytes_out 0 113422 bytes_in 0 113422 station_ip 83.122.141.234 113422 port 39 113422 unique_id port 113422 remote_ip 10.8.1.94 113424 username alihosseini1 113424 mac 113424 bytes_out 0 113424 bytes_in 0 113424 station_ip 5.119.30.199 113424 port 96 113424 unique_id port 113424 remote_ip 10.8.0.166 113426 username mohammadmahdi 113426 mac 113426 bytes_out 0 113426 bytes_in 0 113426 station_ip 5.119.192.50 113426 port 51 113426 unique_id port 113427 username hashtadani3 113380 username alihosseini1 113380 mac 113380 bytes_out 0 113380 bytes_in 0 113380 station_ip 5.119.249.113 113380 port 100 113380 unique_id port 113380 remote_ip 10.8.0.166 113382 username hashtadani3 113382 mac 113382 bytes_out 0 113382 bytes_in 0 113382 station_ip 83.122.141.234 113382 port 96 113382 unique_id port 113382 remote_ip 10.8.0.154 113387 username sabaghnezhad 113387 mac 113387 bytes_out 0 113387 bytes_in 0 113387 station_ip 113.203.91.89 113387 port 68 113387 unique_id port 113387 remote_ip 10.8.0.186 113390 username kordestani 113390 mac 113390 bytes_out 0 113390 bytes_in 0 113390 station_ip 151.235.87.52 113390 port 98 113390 unique_id port 113391 username hashtadani3 113391 mac 113391 bytes_out 0 113391 bytes_in 0 113391 station_ip 83.122.141.234 113391 port 35 113391 unique_id port 113391 remote_ip 10.8.1.94 113393 username hashtadani3 113393 mac 113393 bytes_out 1644 113393 bytes_in 5129 113393 station_ip 83.122.141.234 113393 port 68 113393 unique_id port 113393 remote_ip 10.8.0.154 113394 username hashtadani3 113394 mac 113394 bytes_out 0 113394 bytes_in 0 113394 station_ip 83.122.141.234 113394 port 68 113394 unique_id port 113394 remote_ip 10.8.0.154 113399 username hashtadani3 113399 mac 113399 bytes_out 0 113399 bytes_in 0 113399 station_ip 83.122.141.234 113399 port 96 113399 unique_id port 113399 remote_ip 10.8.0.154 113402 username aminvpn 113402 mac 113402 bytes_out 0 113402 bytes_in 0 113402 station_ip 5.119.178.248 113402 port 51 113402 unique_id port 113402 remote_ip 10.8.0.14 113408 username mostafa_es78 113408 unique_id port 113408 terminate_cause Lost-Carrier 113408 bytes_out 1982264 113408 bytes_in 10309252 113408 station_ip 178.236.35.96 113408 port 15729274 113408 nas_port_type Virtual 113408 remote_ip 5.5.5.234 113413 username irannezhad 113413 mac 113413 bytes_out 0 113413 bytes_in 0 113413 station_ip 37.129.247.91 113413 port 97 113413 unique_id port 113413 remote_ip 10.8.0.182 113414 username hashtadani3 113414 mac 113414 bytes_out 0 113414 bytes_in 0 113414 station_ip 83.122.141.234 113414 port 97 113414 unique_id port 113414 remote_ip 10.8.0.154 113419 username hashtadani3 113419 mac 113419 bytes_out 0 113419 bytes_in 0 113419 station_ip 83.122.141.234 113419 port 96 113419 unique_id port 113419 remote_ip 10.8.0.154 113421 username mostafa_es78 113421 unique_id port 113421 terminate_cause User-Request 113421 bytes_out 346705 113421 bytes_in 4754266 113421 station_ip 178.236.35.96 113421 port 15729278 113421 nas_port_type Virtual 113421 remote_ip 5.5.5.214 113423 username hashtadani3 113423 mac 113423 bytes_out 0 113423 bytes_in 0 113423 station_ip 83.122.141.234 113423 port 96 113423 unique_id port 113423 remote_ip 10.8.0.154 113428 username hashtadani3 113428 mac 113428 bytes_out 0 113428 bytes_in 0 113428 station_ip 83.122.141.234 113428 port 51 113428 unique_id port 113428 remote_ip 10.8.0.154 113429 username hashtadani3 113429 mac 113429 bytes_out 0 113429 bytes_in 0 113429 station_ip 83.122.141.234 113429 port 51 113429 unique_id port 113429 remote_ip 10.8.0.154 113434 username hashtadani3 113434 mac 113434 bytes_out 0 113434 bytes_in 0 113434 station_ip 83.122.141.234 113434 port 51 113434 unique_id port 113434 remote_ip 10.8.0.154 113438 username aminvpn 113438 mac 113438 bytes_out 0 113438 bytes_in 0 113438 station_ip 5.119.178.248 113438 port 98 113438 unique_id port 113453 username irannezhad 113453 mac 113383 station_ip 37.27.17.184 113383 port 38 113383 unique_id port 113383 remote_ip 10.8.1.58 113384 username hashtadani3 113384 mac 113384 bytes_out 0 113384 bytes_in 0 113384 station_ip 83.122.141.234 113384 port 96 113384 unique_id port 113384 remote_ip 10.8.0.154 113385 username hashtadani3 113385 mac 113385 bytes_out 0 113385 bytes_in 0 113385 station_ip 83.122.141.234 113385 port 96 113385 unique_id port 113385 remote_ip 10.8.0.154 113386 username aminvpn 113386 mac 113386 bytes_out 0 113386 bytes_in 0 113386 station_ip 5.119.178.248 113386 port 96 113386 unique_id port 113386 remote_ip 10.8.0.14 113389 username alihosseini1 113389 mac 113389 bytes_out 0 113389 bytes_in 0 113389 station_ip 5.119.249.113 113389 port 35 113389 unique_id port 113389 remote_ip 10.8.1.106 113392 username hashtadani3 113392 mac 113392 bytes_out 0 113392 bytes_in 0 113392 station_ip 83.122.141.234 113392 port 68 113392 unique_id port 113392 remote_ip 10.8.0.154 113397 username hashtadani3 113397 mac 113397 bytes_out 0 113397 bytes_in 0 113397 station_ip 83.122.141.234 113397 port 51 113397 unique_id port 113397 remote_ip 10.8.0.154 113403 username aminvpn 113403 mac 113403 bytes_out 0 113403 bytes_in 0 113403 station_ip 5.119.178.248 113403 port 51 113403 unique_id port 113403 remote_ip 10.8.0.14 113407 username hashtadani3 113407 mac 113407 bytes_out 0 113407 bytes_in 0 113407 station_ip 83.122.141.234 113407 port 35 113407 unique_id port 113407 remote_ip 10.8.1.94 113410 username mohammadmahdi 113410 kill_reason Another user logged on this global unique id 113410 mac 113410 bytes_out 0 113410 bytes_in 0 113410 station_ip 5.119.192.50 113410 port 51 113410 unique_id port 113410 remote_ip 10.8.0.54 113411 username irannezhad 113411 mac 113411 bytes_out 302438 113411 bytes_in 4417600 113411 station_ip 37.129.247.91 113411 port 97 113411 unique_id port 113411 remote_ip 10.8.0.182 113416 username alirr 113416 unique_id port 113416 terminate_cause User-Request 113416 bytes_out 6568705 113416 bytes_in 102562949 113416 station_ip 5.119.98.222 113416 port 15729277 113416 nas_port_type Virtual 113416 remote_ip 5.5.5.242 113417 username hashtadani3 113417 mac 113417 bytes_out 0 113417 bytes_in 0 113417 station_ip 83.122.141.234 113417 port 97 113417 unique_id port 113417 remote_ip 10.8.0.154 113425 username hashtadani3 113425 mac 113425 bytes_out 0 113425 bytes_in 0 113425 station_ip 83.122.141.234 113425 port 97 113425 unique_id port 113425 remote_ip 10.8.0.154 113432 username hashtadani3 113432 mac 113432 bytes_out 0 113432 bytes_in 0 113432 station_ip 83.122.141.234 113432 port 39 113432 unique_id port 113432 remote_ip 10.8.1.94 113444 username irannezhad 113444 mac 113444 bytes_out 1885236 113444 bytes_in 29279415 113444 station_ip 37.129.247.91 113444 port 35 113444 unique_id port 113444 remote_ip 10.8.1.134 113445 username hashtadani3 113445 mac 113445 bytes_out 0 113445 bytes_in 0 113445 station_ip 83.122.141.234 113445 port 51 113445 unique_id port 113445 remote_ip 10.8.0.154 113446 username hashtadani3 113446 mac 113446 bytes_out 0 113446 bytes_in 0 113446 station_ip 83.122.141.234 113446 port 51 113446 unique_id port 113446 remote_ip 10.8.0.154 113449 username irannezhad 113449 mac 113449 bytes_out 0 113449 bytes_in 0 113449 station_ip 37.129.247.91 113449 port 35 113449 unique_id port 113449 remote_ip 10.8.1.134 113451 username irannezhad 113451 mac 113451 bytes_out 0 113451 bytes_in 0 113427 mac 113427 bytes_out 0 113427 bytes_in 0 113427 station_ip 83.122.141.234 113427 port 51 113427 unique_id port 113427 remote_ip 10.8.0.154 113430 username aminvpn 113430 unique_id port 113430 terminate_cause User-Request 113430 bytes_out 682963 113430 bytes_in 6360992 113430 station_ip 5.119.14.127 113430 port 15729276 113430 nas_port_type Virtual 113430 remote_ip 5.5.5.240 113431 username mahdixz 113431 unique_id port 113431 terminate_cause User-Request 113431 bytes_out 75363 113431 bytes_in 107035 113431 station_ip 151.235.84.86 113431 port 15729279 113431 nas_port_type Virtual 113431 remote_ip 5.5.5.216 113433 username hashtadani3 113433 mac 113433 bytes_out 0 113433 bytes_in 0 113433 station_ip 83.122.141.234 113433 port 39 113433 unique_id port 113433 remote_ip 10.8.1.94 113435 username hashtadani3 113435 mac 113435 bytes_out 0 113435 bytes_in 0 113435 station_ip 83.122.141.234 113435 port 51 113435 unique_id port 113435 remote_ip 10.8.0.154 113436 username aminvpn 113436 kill_reason Another user logged on this global unique id 113436 mac 113436 bytes_out 0 113436 bytes_in 0 113436 station_ip 5.119.178.248 113436 port 98 113436 unique_id port 113436 remote_ip 10.8.0.14 113437 username hashtadani3 113437 mac 113437 bytes_out 0 113437 bytes_in 0 113437 station_ip 83.122.141.234 113437 port 51 113437 unique_id port 113437 remote_ip 10.8.0.154 113439 username hashtadani3 113439 kill_reason Maximum check online fails reached 113439 mac 113439 bytes_out 0 113439 bytes_in 0 113439 station_ip 83.122.141.234 113439 port 42 113439 unique_id port 113440 username hashtadani3 113440 mac 113440 bytes_out 0 113440 bytes_in 0 113440 station_ip 83.122.141.234 113440 port 51 113440 unique_id port 113440 remote_ip 10.8.0.154 113441 username alihosseini1 113441 mac 113441 bytes_out 0 113441 bytes_in 0 113441 station_ip 5.119.30.199 113441 port 39 113441 unique_id port 113441 remote_ip 10.8.1.106 113442 username hashtadani3 113442 mac 113442 bytes_out 0 113442 bytes_in 0 113442 station_ip 83.122.141.234 113442 port 39 113442 unique_id port 113442 remote_ip 10.8.1.94 113443 username aminvpn 113443 unique_id port 113443 terminate_cause Lost-Carrier 113443 bytes_out 65343 113443 bytes_in 114123 113443 station_ip 5.119.14.127 113443 port 15729280 113443 nas_port_type Virtual 113443 remote_ip 5.5.5.218 113447 username farhad1 113447 kill_reason Another user logged on this global unique id 113447 mac 113447 bytes_out 0 113447 bytes_in 0 113447 station_ip 5.119.89.108 113447 port 86 113447 unique_id port 113448 username hashtadani3 113448 mac 113448 bytes_out 0 113448 bytes_in 0 113448 station_ip 83.122.141.234 113448 port 51 113448 unique_id port 113448 remote_ip 10.8.0.154 113450 username irannezhad 113450 mac 113450 bytes_out 0 113450 bytes_in 0 113450 station_ip 37.129.247.91 113450 port 51 113450 unique_id port 113450 remote_ip 10.8.0.182 113452 username hashtadani3 113452 mac 113452 bytes_out 0 113452 bytes_in 0 113452 station_ip 83.122.141.234 113452 port 51 113452 unique_id port 113452 remote_ip 10.8.0.154 113454 username irannezhad 113454 mac 113454 bytes_out 0 113454 bytes_in 0 113454 station_ip 37.129.247.91 113454 port 35 113454 unique_id port 113454 remote_ip 10.8.1.134 113455 username hashtadani3 113455 mac 113455 bytes_out 0 113455 bytes_in 0 113455 station_ip 83.122.141.234 113455 port 51 113455 unique_id port 113455 remote_ip 10.8.0.154 113459 username farhad1 113459 mac 113459 bytes_out 0 113459 bytes_in 0 113459 station_ip 5.119.89.108 113451 station_ip 37.129.247.91 113451 port 51 113451 unique_id port 113451 remote_ip 10.8.0.182 113456 username hashtadani3 113456 mac 113456 bytes_out 0 113456 bytes_in 0 113456 station_ip 83.122.141.234 113456 port 51 113456 unique_id port 113456 remote_ip 10.8.0.154 113468 username hashtadani3 113468 mac 113468 bytes_out 0 113468 bytes_in 0 113468 station_ip 83.122.141.234 113468 port 97 113468 unique_id port 113468 remote_ip 10.8.0.154 113474 username farhad1 113474 kill_reason Another user logged on this global unique id 113474 mac 113474 bytes_out 0 113474 bytes_in 0 113474 station_ip 5.120.55.8 113474 port 51 113474 unique_id port 113476 username hashtadani3 113476 mac 113476 bytes_out 1171027 113476 bytes_in 7754515 113476 station_ip 83.122.141.234 113476 port 86 113476 unique_id port 113476 remote_ip 10.8.0.154 113479 username hashtadani3 113479 mac 113479 bytes_out 0 113479 bytes_in 0 113479 station_ip 83.122.141.234 113479 port 86 113479 unique_id port 113479 remote_ip 10.8.0.154 113480 username mosi 113480 kill_reason Another user logged on this global unique id 113480 mac 113480 bytes_out 0 113480 bytes_in 0 113480 station_ip 151.235.111.162 113480 port 97 113480 unique_id port 113480 remote_ip 10.8.0.138 113481 username hashtadani3 113481 mac 113481 bytes_out 0 113481 bytes_in 0 113481 station_ip 83.122.141.234 113481 port 86 113481 unique_id port 113481 remote_ip 10.8.0.154 113484 username hashtadani3 113484 mac 113484 bytes_out 0 113484 bytes_in 0 113484 station_ip 83.122.141.234 113484 port 86 113484 unique_id port 113484 remote_ip 10.8.0.154 113485 username farhad1 113485 kill_reason Another user logged on this global unique id 113485 mac 113485 bytes_out 0 113485 bytes_in 0 113485 station_ip 5.120.55.8 113485 port 51 113485 unique_id port 113486 username hashtadani3 113486 mac 113486 bytes_out 0 113486 bytes_in 0 113486 station_ip 83.122.141.234 113486 port 38 113486 unique_id port 113486 remote_ip 10.8.1.94 113487 username hashtadani3 113487 mac 113487 bytes_out 0 113487 bytes_in 0 113487 station_ip 83.122.141.234 113487 port 86 113487 unique_id port 113487 remote_ip 10.8.0.154 113492 username hashtadani3 113492 mac 113492 bytes_out 0 113492 bytes_in 0 113492 station_ip 83.122.141.234 113492 port 97 113492 unique_id port 113492 remote_ip 10.8.0.154 113497 username irannezhad 113497 mac 113497 bytes_out 0 113497 bytes_in 0 113497 station_ip 37.129.247.91 113497 port 96 113497 unique_id port 113507 username hashtadani3 113507 mac 113507 bytes_out 0 113507 bytes_in 0 113507 station_ip 83.122.141.234 113507 port 96 113507 unique_id port 113507 remote_ip 10.8.0.154 113510 username irannezhad 113510 mac 113510 bytes_out 0 113510 bytes_in 0 113510 station_ip 37.129.247.91 113510 port 97 113510 unique_id port 113510 remote_ip 10.8.0.182 113512 username irannezhad 113512 mac 113512 bytes_out 0 113512 bytes_in 0 113512 station_ip 37.129.247.91 113512 port 97 113512 unique_id port 113512 remote_ip 10.8.0.182 113515 username irannezhad 113515 mac 113515 bytes_out 0 113515 bytes_in 0 113515 station_ip 37.129.247.91 113515 port 97 113515 unique_id port 113515 remote_ip 10.8.0.182 113523 username hashtadani3 113523 mac 113523 bytes_out 0 113523 bytes_in 0 113523 station_ip 83.122.141.234 113523 port 97 113523 unique_id port 113523 remote_ip 10.8.0.154 113524 username irannezhad 113524 mac 113524 bytes_out 0 113524 bytes_in 0 113524 station_ip 37.129.247.91 113524 port 97 113453 bytes_out 0 113453 bytes_in 0 113453 station_ip 37.129.247.91 113453 port 51 113453 unique_id port 113453 remote_ip 10.8.0.182 113457 username irannezhad 113457 mac 113457 bytes_out 0 113457 bytes_in 0 113457 station_ip 37.129.247.91 113457 port 35 113457 unique_id port 113457 remote_ip 10.8.1.134 113458 username hashtadani3 113458 mac 113458 bytes_out 0 113458 bytes_in 0 113458 station_ip 83.122.141.234 113458 port 51 113458 unique_id port 113458 remote_ip 10.8.0.154 113460 username zare 113460 mac 113460 bytes_out 0 113460 bytes_in 0 113460 station_ip 37.27.17.184 113460 port 38 113460 unique_id port 113461 username hashtadani3 113461 mac 113461 bytes_out 0 113461 bytes_in 0 113461 station_ip 83.122.141.234 113461 port 51 113461 unique_id port 113461 remote_ip 10.8.0.154 113462 username hashtadani3 113462 mac 113462 bytes_out 0 113462 bytes_in 0 113462 station_ip 83.122.141.234 113462 port 96 113462 unique_id port 113462 remote_ip 10.8.0.154 113465 username hashtadani3 113465 mac 113465 bytes_out 0 113465 bytes_in 0 113465 station_ip 83.122.141.234 113465 port 96 113465 unique_id port 113465 remote_ip 10.8.0.154 113466 username hashtadani3 113466 mac 113466 bytes_out 0 113466 bytes_in 0 113466 station_ip 83.122.141.234 113466 port 35 113466 unique_id port 113466 remote_ip 10.8.1.94 113473 username farhad1 113473 kill_reason Another user logged on this global unique id 113473 mac 113473 bytes_out 0 113473 bytes_in 0 113473 station_ip 5.120.55.8 113473 port 51 113473 unique_id port 113473 remote_ip 10.8.0.26 113475 username farhad1 113475 kill_reason Another user logged on this global unique id 113475 mac 113475 bytes_out 0 113475 bytes_in 0 113475 station_ip 5.120.55.8 113475 port 51 113475 unique_id port 113477 username aminvpn 113477 unique_id port 113477 terminate_cause Lost-Carrier 113477 bytes_out 268133 113477 bytes_in 718561 113477 station_ip 5.119.14.127 113477 port 15729281 113477 nas_port_type Virtual 113477 remote_ip 5.5.5.220 113478 username hashtadani3 113478 mac 113478 bytes_out 0 113478 bytes_in 0 113478 station_ip 83.122.141.234 113478 port 38 113478 unique_id port 113478 remote_ip 10.8.1.94 113488 username irannezhad 113488 kill_reason Another user logged on this global unique id 113488 mac 113488 bytes_out 0 113488 bytes_in 0 113488 station_ip 37.129.247.91 113488 port 96 113488 unique_id port 113488 remote_ip 10.8.0.182 113489 username hashtadani3 113489 mac 113489 bytes_out 0 113489 bytes_in 0 113489 station_ip 83.122.141.234 113489 port 97 113489 unique_id port 113489 remote_ip 10.8.0.154 113491 username hashtadani3 113491 kill_reason Maximum check online fails reached 113491 mac 113491 bytes_out 0 113491 bytes_in 0 113491 station_ip 83.122.141.234 113491 port 86 113491 unique_id port 113495 username hashtadani3 113495 mac 113495 bytes_out 0 113495 bytes_in 0 113495 station_ip 83.122.141.234 113495 port 97 113495 unique_id port 113495 remote_ip 10.8.0.154 113496 username hashtadani3 113496 mac 113496 bytes_out 0 113496 bytes_in 0 113496 station_ip 83.122.141.234 113496 port 97 113496 unique_id port 113496 remote_ip 10.8.0.154 113499 username zare 113499 mac 113499 bytes_out 133018 113499 bytes_in 203444 113499 station_ip 37.27.17.184 113499 port 35 113499 unique_id port 113499 remote_ip 10.8.1.58 113500 username hashtadani3 113500 mac 113500 bytes_out 0 113500 bytes_in 0 113500 station_ip 83.122.141.234 113500 port 96 113500 unique_id port 113500 remote_ip 10.8.0.154 113503 username hashtadani3 113459 port 86 113459 unique_id port 113463 username irannezhad 113463 mac 113463 bytes_out 0 113463 bytes_in 0 113463 station_ip 37.129.247.91 113463 port 86 113463 unique_id port 113463 remote_ip 10.8.0.182 113464 username zare 113464 mac 113464 bytes_out 8169 113464 bytes_in 10200 113464 station_ip 37.27.17.184 113464 port 35 113464 unique_id port 113464 remote_ip 10.8.1.58 113467 username hashtadani3 113467 mac 113467 bytes_out 0 113467 bytes_in 0 113467 station_ip 83.122.141.234 113467 port 96 113467 unique_id port 113467 remote_ip 10.8.0.154 113469 username irannezhad 113469 mac 113469 bytes_out 22223 113469 bytes_in 44927 113469 station_ip 37.129.247.91 113469 port 86 113469 unique_id port 113469 remote_ip 10.8.0.182 113470 username irannezhad 113470 mac 113470 bytes_out 0 113470 bytes_in 0 113470 station_ip 37.129.247.91 113470 port 96 113470 unique_id port 113470 remote_ip 10.8.0.182 113471 username irannezhad 113471 mac 113471 bytes_out 2228 113471 bytes_in 4537 113471 station_ip 37.129.247.91 113471 port 96 113471 unique_id port 113471 remote_ip 10.8.0.182 113472 username irannezhad 113472 mac 113472 bytes_out 0 113472 bytes_in 0 113472 station_ip 37.129.247.91 113472 port 96 113472 unique_id port 113472 remote_ip 10.8.0.182 113482 username mosi 113482 mac 113482 bytes_out 0 113482 bytes_in 0 113482 station_ip 151.235.111.162 113482 port 97 113482 unique_id port 113483 username hashtadani3 113483 mac 113483 bytes_out 0 113483 bytes_in 0 113483 station_ip 83.122.141.234 113483 port 86 113483 unique_id port 113483 remote_ip 10.8.0.154 113490 username alihosseini1 113490 kill_reason Another user logged on this global unique id 113490 mac 113490 bytes_out 0 113490 bytes_in 0 113490 station_ip 5.120.167.59 113490 port 100 113490 unique_id port 113490 remote_ip 10.8.0.166 113493 username hashtadani3 113493 mac 113493 bytes_out 0 113493 bytes_in 0 113493 station_ip 83.122.141.234 113493 port 97 113493 unique_id port 113493 remote_ip 10.8.0.154 113494 username hashtadani3 113494 mac 113494 bytes_out 0 113494 bytes_in 0 113494 station_ip 83.122.141.234 113494 port 38 113494 unique_id port 113494 remote_ip 10.8.1.94 113498 username hashtadani3 113498 mac 113498 bytes_out 0 113498 bytes_in 0 113498 station_ip 83.122.141.234 113498 port 96 113498 unique_id port 113498 remote_ip 10.8.0.154 113501 username irannezhad 113501 mac 113501 bytes_out 0 113501 bytes_in 0 113501 station_ip 37.129.247.91 113501 port 35 113501 unique_id port 113501 remote_ip 10.8.1.134 113502 username alihosseini1 113502 mac 113502 bytes_out 0 113502 bytes_in 0 113502 station_ip 5.120.167.59 113502 port 100 113502 unique_id port 113504 username hashtadani3 113504 mac 113504 bytes_out 0 113504 bytes_in 0 113504 station_ip 83.122.141.234 113504 port 35 113504 unique_id port 113504 remote_ip 10.8.1.94 113506 username irannezhad 113506 mac 113506 bytes_out 0 113506 bytes_in 0 113506 station_ip 37.129.247.91 113506 port 96 113506 unique_id port 113506 remote_ip 10.8.0.182 113511 username irannezhad 113511 mac 113511 bytes_out 0 113511 bytes_in 0 113511 station_ip 37.129.247.91 113511 port 96 113511 unique_id port 113511 remote_ip 10.8.0.182 113513 username irannezhad 113513 mac 113513 bytes_out 0 113513 bytes_in 0 113513 station_ip 37.129.247.91 113513 port 97 113513 unique_id port 113513 remote_ip 10.8.0.182 113516 username hashtadani3 113516 mac 113516 bytes_out 0 113503 mac 113503 bytes_out 0 113503 bytes_in 0 113503 station_ip 83.122.141.234 113503 port 96 113503 unique_id port 113503 remote_ip 10.8.0.154 113505 username hashtadani3 113505 mac 113505 bytes_out 0 113505 bytes_in 0 113505 station_ip 83.122.141.234 113505 port 97 113505 unique_id port 113505 remote_ip 10.8.0.154 113508 username irannezhad 113508 mac 113508 bytes_out 0 113508 bytes_in 0 113508 station_ip 37.129.247.91 113508 port 97 113508 unique_id port 113508 remote_ip 10.8.0.182 113509 username hashtadani3 113509 mac 113509 bytes_out 0 113509 bytes_in 0 113509 station_ip 83.122.141.234 113509 port 96 113509 unique_id port 113509 remote_ip 10.8.0.154 113514 username hashtadani3 113514 mac 113514 bytes_out 0 113514 bytes_in 0 113514 station_ip 83.122.141.234 113514 port 97 113514 unique_id port 113514 remote_ip 10.8.0.154 113517 username sabaghnezhad 113517 mac 113517 bytes_out 0 113517 bytes_in 0 113517 station_ip 83.123.36.196 113517 port 98 113517 unique_id port 113517 remote_ip 10.8.0.186 113519 username hashtadani3 113519 mac 113519 bytes_out 0 113519 bytes_in 0 113519 station_ip 83.122.141.234 113519 port 97 113519 unique_id port 113519 remote_ip 10.8.0.154 113520 username farhad1 113520 kill_reason Another user logged on this global unique id 113520 mac 113520 bytes_out 0 113520 bytes_in 0 113520 station_ip 5.120.55.8 113520 port 51 113520 unique_id port 113521 username hashtadani3 113521 mac 113521 bytes_out 0 113521 bytes_in 0 113521 station_ip 83.122.141.234 113521 port 97 113521 unique_id port 113521 remote_ip 10.8.0.154 113522 username hashtadani3 113522 mac 113522 bytes_out 145252 113522 bytes_in 1090091 113522 station_ip 83.122.141.234 113522 port 35 113522 unique_id port 113522 remote_ip 10.8.1.94 113528 username hashtadani3 113528 mac 113528 bytes_out 0 113528 bytes_in 0 113528 station_ip 83.122.141.234 113528 port 97 113528 unique_id port 113528 remote_ip 10.8.0.154 113529 username irannezhad 113529 mac 113529 bytes_out 0 113529 bytes_in 0 113529 station_ip 37.129.247.91 113529 port 35 113529 unique_id port 113529 remote_ip 10.8.1.134 113543 username asma2026 113543 kill_reason Another user logged on this global unique id 113543 mac 113543 bytes_out 0 113543 bytes_in 0 113543 station_ip 37.129.224.179 113543 port 97 113543 unique_id port 113551 username rostami 113551 mac 113551 bytes_out 1497093 113551 bytes_in 4845773 113551 station_ip 5.119.11.105 113551 port 103 113551 unique_id port 113551 remote_ip 10.8.0.194 113552 username hashtadani3 113552 mac 113552 bytes_out 0 113552 bytes_in 0 113552 station_ip 83.122.141.234 113552 port 100 113552 unique_id port 113552 remote_ip 10.8.0.154 113553 username hashtadani3 113553 mac 113553 bytes_out 0 113553 bytes_in 0 113553 station_ip 83.122.141.234 113553 port 100 113553 unique_id port 113553 remote_ip 10.8.0.154 113554 username hashtadani3 113554 mac 113554 bytes_out 0 113554 bytes_in 0 113554 station_ip 83.122.141.234 113554 port 100 113554 unique_id port 113554 remote_ip 10.8.0.154 113572 username hashtadani3 113572 mac 113572 bytes_out 0 113572 bytes_in 0 113572 station_ip 83.122.141.234 113572 port 97 113572 unique_id port 113572 remote_ip 10.8.0.154 113576 username tahmasebi 113576 kill_reason Another user logged on this global unique id 113576 mac 113576 bytes_out 0 113576 bytes_in 0 113576 station_ip 5.119.63.197 113576 port 98 113576 unique_id port 113578 username hashtadani3 113578 mac 113516 bytes_in 0 113516 station_ip 83.122.141.234 113516 port 100 113516 unique_id port 113516 remote_ip 10.8.0.154 113518 username irannezhad 113518 mac 113518 bytes_out 0 113518 bytes_in 0 113518 station_ip 37.129.247.91 113518 port 97 113518 unique_id port 113518 remote_ip 10.8.0.182 113525 username hashtadani3 113525 mac 113525 bytes_out 0 113525 bytes_in 0 113525 station_ip 83.122.141.234 113525 port 97 113525 unique_id port 113525 remote_ip 10.8.0.154 113526 username hashtadani3 113526 mac 113526 bytes_out 0 113526 bytes_in 0 113526 station_ip 83.122.141.234 113526 port 97 113526 unique_id port 113526 remote_ip 10.8.0.154 113532 username irannezhad 113532 mac 113532 bytes_out 0 113532 bytes_in 0 113532 station_ip 37.129.247.91 113532 port 98 113532 unique_id port 113532 remote_ip 10.8.0.182 113538 username hashtadani3 113538 mac 113538 bytes_out 0 113538 bytes_in 0 113538 station_ip 83.122.141.234 113538 port 51 113538 unique_id port 113538 remote_ip 10.8.0.154 113539 username hashtadani3 113539 mac 113539 bytes_out 0 113539 bytes_in 0 113539 station_ip 83.122.141.234 113539 port 51 113539 unique_id port 113539 remote_ip 10.8.0.154 113540 username hashtadani3 113540 mac 113540 bytes_out 0 113540 bytes_in 0 113540 station_ip 83.122.141.234 113540 port 98 113540 unique_id port 113540 remote_ip 10.8.0.154 113544 username hashtadani3 113544 mac 113544 bytes_out 0 113544 bytes_in 0 113544 station_ip 83.122.141.234 113544 port 98 113544 unique_id port 113544 remote_ip 10.8.0.154 113547 username hashtadani3 113547 mac 113547 bytes_out 0 113547 bytes_in 0 113547 station_ip 83.122.141.234 113547 port 35 113547 unique_id port 113547 remote_ip 10.8.1.94 113548 username hashtadani3 113548 mac 113548 bytes_out 0 113548 bytes_in 0 113548 station_ip 83.122.141.234 113548 port 100 113548 unique_id port 113548 remote_ip 10.8.0.154 113550 username hashtadani3 113550 mac 113550 bytes_out 0 113550 bytes_in 0 113550 station_ip 83.122.141.234 113550 port 100 113550 unique_id port 113550 remote_ip 10.8.0.154 113555 username asma2026 113555 kill_reason Another user logged on this global unique id 113555 mac 113555 bytes_out 0 113555 bytes_in 0 113555 station_ip 37.129.224.179 113555 port 97 113555 unique_id port 113556 username hashtadani3 113556 mac 113556 bytes_out 0 113556 bytes_in 0 113556 station_ip 83.122.141.234 113556 port 100 113556 unique_id port 113556 remote_ip 10.8.0.154 113559 username hashtadani3 113559 mac 113559 bytes_out 0 113559 bytes_in 0 113559 station_ip 83.122.141.234 113559 port 96 113559 unique_id port 113559 remote_ip 10.8.0.154 113560 username asma2026 113560 mac 113560 bytes_out 0 113560 bytes_in 0 113560 station_ip 37.129.224.179 113560 port 97 113560 unique_id port 113561 username asma2026 113561 mac 113561 bytes_out 0 113561 bytes_in 0 113561 station_ip 37.129.224.179 113561 port 96 113561 unique_id port 113561 remote_ip 10.8.0.170 113564 username hashtadani3 113564 mac 113564 bytes_out 0 113564 bytes_in 0 113564 station_ip 83.122.141.234 113564 port 96 113564 unique_id port 113564 remote_ip 10.8.0.154 113565 username hashtadani3 113565 mac 113565 bytes_out 0 113565 bytes_in 0 113565 station_ip 83.122.141.234 113565 port 97 113565 unique_id port 113565 remote_ip 10.8.0.154 113570 username hashtadani3 113570 mac 113570 bytes_out 0 113570 bytes_in 0 113570 station_ip 83.122.141.234 113570 port 35 113570 unique_id port 113524 unique_id port 113524 remote_ip 10.8.0.182 113527 username hashtadani3 113527 mac 113527 bytes_out 0 113527 bytes_in 0 113527 station_ip 83.122.141.234 113527 port 97 113527 unique_id port 113527 remote_ip 10.8.0.154 113530 username hashtadani3 113530 mac 113530 bytes_out 0 113530 bytes_in 0 113530 station_ip 83.122.141.234 113530 port 98 113530 unique_id port 113530 remote_ip 10.8.0.154 113531 username hashtadani3 113531 mac 113531 bytes_out 0 113531 bytes_in 0 113531 station_ip 83.122.141.234 113531 port 100 113531 unique_id port 113531 remote_ip 10.8.0.154 113533 username farhad1 113533 mac 113533 bytes_out 0 113533 bytes_in 0 113533 station_ip 5.120.55.8 113533 port 51 113533 unique_id port 113534 username asma2026 113534 kill_reason Another user logged on this global unique id 113534 mac 113534 bytes_out 0 113534 bytes_in 0 113534 station_ip 37.129.224.179 113534 port 97 113534 unique_id port 113534 remote_ip 10.8.0.170 113535 username hashtadani3 113535 mac 113535 bytes_out 0 113535 bytes_in 0 113535 station_ip 83.122.141.234 113535 port 51 113535 unique_id port 113535 remote_ip 10.8.0.154 113536 username irannezhad 113536 mac 113536 bytes_out 0 113536 bytes_in 0 113536 station_ip 37.129.247.91 113536 port 51 113536 unique_id port 113536 remote_ip 10.8.0.182 113537 username hashtadani3 113537 mac 113537 bytes_out 0 113537 bytes_in 0 113537 station_ip 83.122.141.234 113537 port 51 113537 unique_id port 113537 remote_ip 10.8.0.154 113541 username hashtadani3 113541 mac 113541 bytes_out 0 113541 bytes_in 0 113541 station_ip 83.122.141.234 113541 port 98 113541 unique_id port 113541 remote_ip 10.8.0.154 113542 username hashtadani3 113542 mac 113542 bytes_out 0 113542 bytes_in 0 113542 station_ip 83.122.141.234 113542 port 98 113542 unique_id port 113542 remote_ip 10.8.0.154 113545 username hashtadani3 113545 mac 113545 bytes_out 0 113545 bytes_in 0 113545 station_ip 83.122.141.234 113545 port 100 113545 unique_id port 113545 remote_ip 10.8.0.154 113546 username hashtadani3 113546 mac 113546 bytes_out 0 113546 bytes_in 0 113546 station_ip 83.122.141.234 113546 port 100 113546 unique_id port 113546 remote_ip 10.8.0.154 113549 username asma2026 113549 kill_reason Another user logged on this global unique id 113549 mac 113549 bytes_out 0 113549 bytes_in 0 113549 station_ip 37.129.224.179 113549 port 97 113549 unique_id port 113557 username tahmasebi 113557 kill_reason Another user logged on this global unique id 113557 mac 113557 bytes_out 0 113557 bytes_in 0 113557 station_ip 5.119.63.197 113557 port 98 113557 unique_id port 113557 remote_ip 10.8.0.42 113558 username musa 113558 mac 113558 bytes_out 0 113558 bytes_in 0 113558 station_ip 5.208.194.38 113558 port 96 113558 unique_id port 113558 remote_ip 10.8.0.6 113562 username hashtadani3 113562 mac 113562 bytes_out 0 113562 bytes_in 0 113562 station_ip 83.122.141.234 113562 port 35 113562 unique_id port 113562 remote_ip 10.8.1.94 113563 username asma2026 113563 mac 113563 bytes_out 0 113563 bytes_in 0 113563 station_ip 37.129.224.179 113563 port 96 113563 unique_id port 113563 remote_ip 10.8.0.170 113566 username asma2026 113566 mac 113566 bytes_out 54056 113566 bytes_in 412712 113566 station_ip 37.129.224.179 113566 port 96 113566 unique_id port 113566 remote_ip 10.8.0.170 113567 username tahmasebi 113567 kill_reason Another user logged on this global unique id 113567 mac 113567 bytes_out 0 113567 bytes_in 0 113567 station_ip 5.119.63.197 113567 port 98 113567 unique_id port 113568 username asma2026 113568 kill_reason Another user logged on this global unique id 113568 mac 113568 bytes_out 0 113568 bytes_in 0 113568 station_ip 37.129.224.179 113568 port 96 113568 unique_id port 113568 remote_ip 10.8.0.170 113569 username hashtadani3 113569 mac 113569 bytes_out 0 113569 bytes_in 0 113569 station_ip 83.122.141.234 113569 port 35 113569 unique_id port 113569 remote_ip 10.8.1.94 113574 username irannezhad 113574 mac 113574 bytes_out 0 113574 bytes_in 0 113574 station_ip 37.129.247.91 113574 port 51 113574 unique_id port 113574 remote_ip 10.8.0.182 113575 username hashtadani3 113575 mac 113575 bytes_out 0 113575 bytes_in 0 113575 station_ip 83.122.141.234 113575 port 97 113575 unique_id port 113575 remote_ip 10.8.0.154 113577 username asma2026 113577 kill_reason Another user logged on this global unique id 113577 mac 113577 bytes_out 0 113577 bytes_in 0 113577 station_ip 37.129.224.179 113577 port 96 113577 unique_id port 113579 username asma2026 113579 mac 113579 bytes_out 0 113579 bytes_in 0 113579 station_ip 37.129.224.179 113579 port 96 113579 unique_id port 113582 username hashtadani3 113582 mac 113582 bytes_out 0 113582 bytes_in 0 113582 station_ip 83.122.141.234 113582 port 35 113582 unique_id port 113582 remote_ip 10.8.1.94 113584 username hashtadani3 113584 mac 113584 bytes_out 0 113584 bytes_in 0 113584 station_ip 83.122.141.234 113584 port 96 113584 unique_id port 113584 remote_ip 10.8.0.154 113588 username tahmasebi 113588 kill_reason Another user logged on this global unique id 113588 mac 113588 bytes_out 0 113588 bytes_in 0 113588 station_ip 5.119.63.197 113588 port 98 113588 unique_id port 113592 username hashtadani3 113592 mac 113592 bytes_out 0 113592 bytes_in 0 113592 station_ip 83.122.141.234 113592 port 96 113592 unique_id port 113592 remote_ip 10.8.0.154 113593 username tahmasebi 113593 kill_reason Another user logged on this global unique id 113593 mac 113593 bytes_out 0 113593 bytes_in 0 113593 station_ip 5.119.63.197 113593 port 98 113593 unique_id port 113594 username hashtadani3 113594 mac 113594 bytes_out 0 113594 bytes_in 0 113594 station_ip 83.122.141.234 113594 port 35 113594 unique_id port 113594 remote_ip 10.8.1.94 113596 username hashtadani3 113596 mac 113596 bytes_out 0 113596 bytes_in 0 113596 station_ip 83.122.141.234 113596 port 96 113596 unique_id port 113596 remote_ip 10.8.0.154 113598 username hashtadani3 113598 mac 113598 bytes_out 0 113598 bytes_in 0 113598 station_ip 83.122.141.234 113598 port 96 113598 unique_id port 113598 remote_ip 10.8.0.154 113600 username irannezhad 113600 mac 113600 bytes_out 0 113600 bytes_in 0 113600 station_ip 37.129.247.91 113600 port 51 113600 unique_id port 113600 remote_ip 10.8.0.182 113602 username hashtadani3 113602 mac 113602 bytes_out 0 113602 bytes_in 0 113602 station_ip 83.122.141.234 113602 port 51 113602 unique_id port 113602 remote_ip 10.8.0.154 113605 username hashtadani3 113605 mac 113605 bytes_out 0 113605 bytes_in 0 113605 station_ip 83.122.141.234 113605 port 51 113605 unique_id port 113605 remote_ip 10.8.0.154 113610 username musa 113610 mac 113610 bytes_out 0 113610 bytes_in 0 113610 station_ip 5.208.194.38 113610 port 100 113610 unique_id port 113610 remote_ip 10.8.0.6 113611 username asma2026 113611 kill_reason Another user logged on this global unique id 113611 mac 113611 bytes_out 0 113611 bytes_in 0 113611 station_ip 37.129.224.179 113611 port 97 113570 remote_ip 10.8.1.94 113571 username hashtadani3 113571 mac 113571 bytes_out 0 113571 bytes_in 0 113571 station_ip 83.122.141.234 113571 port 97 113571 unique_id port 113571 remote_ip 10.8.0.154 113573 username hashtadani3 113573 mac 113573 bytes_out 0 113573 bytes_in 0 113573 station_ip 83.122.141.234 113573 port 97 113573 unique_id port 113573 remote_ip 10.8.0.154 113583 username hashtadani3 113583 mac 113583 bytes_out 0 113583 bytes_in 0 113583 station_ip 83.122.141.234 113583 port 96 113583 unique_id port 113583 remote_ip 10.8.0.154 113586 username hashtadani3 113586 mac 113586 bytes_out 0 113586 bytes_in 0 113586 station_ip 83.122.141.234 113586 port 101 113586 unique_id port 113586 remote_ip 10.8.0.154 113587 username hashtadani3 113587 mac 113587 bytes_out 0 113587 bytes_in 0 113587 station_ip 83.122.141.234 113587 port 96 113587 unique_id port 113587 remote_ip 10.8.0.154 113591 username hashtadani3 113591 mac 113591 bytes_out 0 113591 bytes_in 0 113591 station_ip 83.122.141.234 113591 port 96 113591 unique_id port 113591 remote_ip 10.8.0.154 113595 username hashtadani3 113595 mac 113595 bytes_out 0 113595 bytes_in 0 113595 station_ip 83.122.141.234 113595 port 96 113595 unique_id port 113595 remote_ip 10.8.0.154 113597 username asma2026 113597 kill_reason Another user logged on this global unique id 113597 mac 113597 bytes_out 0 113597 bytes_in 0 113597 station_ip 37.129.224.179 113597 port 97 113597 unique_id port 113597 remote_ip 10.8.0.170 113599 username hashtadani3 113599 mac 113599 bytes_out 0 113599 bytes_in 0 113599 station_ip 83.122.141.234 113599 port 96 113599 unique_id port 113599 remote_ip 10.8.0.154 113607 username hashtadani3 113607 mac 113607 bytes_out 0 113607 bytes_in 0 113607 station_ip 83.122.141.234 113607 port 51 113607 unique_id port 113607 remote_ip 10.8.0.154 113609 username asma2026 113609 kill_reason Another user logged on this global unique id 113609 mac 113609 bytes_out 0 113609 bytes_in 0 113609 station_ip 37.129.224.179 113609 port 97 113609 unique_id port 113613 username asma2026 113613 kill_reason Another user logged on this global unique id 113613 mac 113613 bytes_out 0 113613 bytes_in 0 113613 station_ip 37.129.224.179 113613 port 97 113613 unique_id port 113616 username musa 113616 mac 113616 bytes_out 40198 113616 bytes_in 68229 113616 station_ip 5.208.194.38 113616 port 35 113616 unique_id port 113616 remote_ip 10.8.1.10 113618 username houshang 113618 mac 113618 bytes_out 0 113618 bytes_in 0 113618 station_ip 5.120.190.181 113618 port 96 113618 unique_id port 113618 remote_ip 10.8.0.22 113621 username houshang 113621 mac 113621 bytes_out 0 113621 bytes_in 0 113621 station_ip 5.120.190.181 113621 port 96 113621 unique_id port 113621 remote_ip 10.8.0.22 113627 username mehdizare 113627 mac 113627 bytes_out 0 113627 bytes_in 0 113627 station_ip 5.119.132.42 113627 port 35 113627 unique_id port 113627 remote_ip 10.8.1.42 113633 username houshang 113633 mac 113633 bytes_out 0 113633 bytes_in 0 113633 station_ip 5.120.190.181 113633 port 97 113633 unique_id port 113633 remote_ip 10.8.0.22 113634 username aminvpn 113634 mac 113634 bytes_out 453117 113634 bytes_in 4923458 113634 station_ip 83.122.171.175 113634 port 97 113634 unique_id port 113634 remote_ip 10.8.0.14 113637 username mehdizare 113637 mac 113637 bytes_out 0 113637 bytes_in 0 113637 station_ip 5.119.132.42 113637 port 35 113637 unique_id port 113637 remote_ip 10.8.1.42 113578 bytes_out 0 113578 bytes_in 0 113578 station_ip 83.122.141.234 113578 port 97 113578 unique_id port 113578 remote_ip 10.8.0.154 113580 username hashtadani3 113580 mac 113580 bytes_out 0 113580 bytes_in 0 113580 station_ip 83.122.141.234 113580 port 96 113580 unique_id port 113580 remote_ip 10.8.0.154 113581 username hashtadani3 113581 mac 113581 bytes_out 0 113581 bytes_in 0 113581 station_ip 83.122.141.234 113581 port 35 113581 unique_id port 113581 remote_ip 10.8.1.94 113585 username hashtadani3 113585 mac 113585 bytes_out 0 113585 bytes_in 0 113585 station_ip 83.122.141.234 113585 port 96 113585 unique_id port 113585 remote_ip 10.8.0.154 113589 username hashtadani3 113589 mac 113589 bytes_out 0 113589 bytes_in 0 113589 station_ip 83.122.141.234 113589 port 96 113589 unique_id port 113589 remote_ip 10.8.0.154 113590 username hashtadani3 113590 mac 113590 bytes_out 0 113590 bytes_in 0 113590 station_ip 83.122.141.234 113590 port 96 113590 unique_id port 113590 remote_ip 10.8.0.154 113601 username hashtadani3 113601 mac 113601 bytes_out 0 113601 bytes_in 0 113601 station_ip 83.122.141.234 113601 port 51 113601 unique_id port 113601 remote_ip 10.8.0.154 113603 username irannezhad 113603 mac 113603 bytes_out 0 113603 bytes_in 0 113603 station_ip 37.129.247.91 113603 port 96 113603 unique_id port 113603 remote_ip 10.8.0.182 113604 username hashtadani3 113604 mac 113604 bytes_out 0 113604 bytes_in 0 113604 station_ip 83.122.141.234 113604 port 51 113604 unique_id port 113604 remote_ip 10.8.0.154 113606 username irannezhad 113606 mac 113606 bytes_out 0 113606 bytes_in 0 113606 station_ip 37.129.247.91 113606 port 96 113606 unique_id port 113606 remote_ip 10.8.0.182 113608 username asma2026 113608 kill_reason Another user logged on this global unique id 113608 mac 113608 bytes_out 0 113608 bytes_in 0 113608 station_ip 37.129.224.179 113608 port 97 113608 unique_id port 113617 username tahmasebi 113617 kill_reason Maximum check online fails reached 113617 mac 113617 bytes_out 0 113617 bytes_in 0 113617 station_ip 5.119.63.197 113617 port 98 113617 unique_id port 113620 username houshang 113620 mac 113620 bytes_out 0 113620 bytes_in 0 113620 station_ip 5.120.190.181 113620 port 97 113620 unique_id port 113620 remote_ip 10.8.0.22 113622 username houshang 113622 mac 113622 bytes_out 867879 113622 bytes_in 14571062 113622 station_ip 5.120.190.181 113622 port 97 113622 unique_id port 113622 remote_ip 10.8.0.22 113623 username sobhan 113623 unique_id port 113623 terminate_cause User-Request 113623 bytes_out 883553 113623 bytes_in 13030847 113623 station_ip 5.120.138.97 113623 port 15729284 113623 nas_port_type Virtual 113623 remote_ip 5.5.5.230 113628 username shahrooz 113628 unique_id port 113628 terminate_cause Lost-Carrier 113628 bytes_out 29007075 113628 bytes_in 776089934 113628 station_ip 83.122.96.143 113628 port 15729282 113628 nas_port_type Virtual 113628 remote_ip 5.5.5.225 113630 username mehdizare 113630 mac 113630 bytes_out 0 113630 bytes_in 0 113630 station_ip 5.119.132.42 113630 port 35 113630 unique_id port 113630 remote_ip 10.8.1.42 113632 username avaanna 113632 mac 113632 bytes_out 0 113632 bytes_in 0 113632 station_ip 83.123.79.218 113632 port 96 113632 unique_id port 113632 remote_ip 10.8.0.98 113635 username houshang 113635 mac 113635 bytes_out 687814 113635 bytes_in 197422 113635 station_ip 5.120.190.181 113635 port 97 113635 unique_id port 113635 remote_ip 10.8.0.22 113636 username afarin1 113611 unique_id port 113612 username asma2026 113612 kill_reason Another user logged on this global unique id 113612 mac 113612 bytes_out 0 113612 bytes_in 0 113612 station_ip 37.129.224.179 113612 port 97 113612 unique_id port 113614 username asma2026 113614 mac 113614 bytes_out 0 113614 bytes_in 0 113614 station_ip 37.129.224.179 113614 port 97 113614 unique_id port 113615 username sobhan 113615 unique_id port 113615 terminate_cause Lost-Carrier 113615 bytes_out 5070499 113615 bytes_in 84322600 113615 station_ip 5.120.138.97 113615 port 15729283 113615 nas_port_type Virtual 113615 remote_ip 5.5.5.227 113619 username houshang 113619 mac 113619 bytes_out 0 113619 bytes_in 0 113619 station_ip 5.120.190.181 113619 port 96 113619 unique_id port 113619 remote_ip 10.8.0.22 113624 username mehdizare 113624 mac 113624 bytes_out 0 113624 bytes_in 0 113624 station_ip 5.119.132.42 113624 port 40 113624 unique_id port 113624 remote_ip 10.8.1.42 113625 username musa 113625 mac 113625 bytes_out 274052 113625 bytes_in 1230867 113625 station_ip 5.208.194.38 113625 port 51 113625 unique_id port 113625 remote_ip 10.8.0.6 113626 username avaanna 113626 kill_reason Maximum check online fails reached 113626 mac 113626 bytes_out 3054341 113626 bytes_in 41449972 113626 station_ip 83.123.79.218 113626 port 96 113626 unique_id port 113626 remote_ip 10.8.0.98 113629 username mehdizare 113629 mac 113629 bytes_out 0 113629 bytes_in 0 113629 station_ip 5.119.132.42 113629 port 35 113629 unique_id port 113629 remote_ip 10.8.1.42 113631 username morteza 113631 mac 113631 bytes_out 0 113631 bytes_in 0 113631 station_ip 113.203.62.153 113631 port 51 113631 unique_id port 113631 remote_ip 10.8.0.46 113642 username alirr 113642 unique_id port 113642 terminate_cause Lost-Carrier 113642 bytes_out 239142 113642 bytes_in 1626283 113642 station_ip 5.120.125.197 113642 port 15729285 113642 nas_port_type Virtual 113642 remote_ip 5.5.5.239 113645 username mohammadjavad 113645 mac 113645 bytes_out 648730 113645 bytes_in 5063001 113645 station_ip 37.129.186.187 113645 port 96 113645 unique_id port 113645 remote_ip 10.8.0.142 113650 username malekpoir 113650 kill_reason Another user logged on this global unique id 113650 mac 113650 bytes_out 0 113650 bytes_in 0 113650 station_ip 5.120.117.201 113650 port 51 113650 unique_id port 113650 remote_ip 10.8.0.58 113651 username mehdizare 113651 mac 113651 bytes_out 0 113651 bytes_in 0 113651 station_ip 5.119.132.42 113651 port 35 113651 unique_id port 113651 remote_ip 10.8.1.42 113653 username avaanna 113653 mac 113653 bytes_out 103105 113653 bytes_in 812671 113653 station_ip 83.123.79.218 113653 port 96 113653 unique_id port 113653 remote_ip 10.8.0.98 113657 username hashtadani3 113657 mac 113657 bytes_out 0 113657 bytes_in 0 113657 station_ip 37.129.16.45 113657 port 39 113657 unique_id port 113657 remote_ip 10.8.1.94 113660 username hashtadani3 113660 mac 113660 bytes_out 0 113660 bytes_in 0 113660 station_ip 37.129.16.45 113660 port 97 113660 unique_id port 113660 remote_ip 10.8.0.154 113663 username mehdizare 113663 mac 113663 bytes_out 0 113663 bytes_in 0 113663 station_ip 5.119.132.42 113663 port 35 113663 unique_id port 113663 remote_ip 10.8.1.42 113664 username mehdizare 113664 mac 113664 bytes_out 0 113664 bytes_in 0 113664 station_ip 5.119.132.42 113664 port 35 113664 unique_id port 113664 remote_ip 10.8.1.42 113670 username mehdizare 113670 mac 113670 bytes_out 0 113670 bytes_in 0 113670 station_ip 5.119.132.42 113636 kill_reason Another user logged on this global unique id 113636 mac 113636 bytes_out 0 113636 bytes_in 0 113636 station_ip 37.129.143.149 113636 port 96 113636 unique_id port 113636 remote_ip 10.8.0.118 113638 username mehdizare 113638 mac 113638 bytes_out 0 113638 bytes_in 0 113638 station_ip 5.119.132.42 113638 port 35 113638 unique_id port 113638 remote_ip 10.8.1.42 113640 username avaanna 113640 kill_reason Another user logged on this global unique id 113640 mac 113640 bytes_out 0 113640 bytes_in 0 113640 station_ip 83.123.79.218 113640 port 51 113640 unique_id port 113640 remote_ip 10.8.0.98 113646 username mehdizare 113646 mac 113646 bytes_out 0 113646 bytes_in 0 113646 station_ip 5.119.132.42 113646 port 38 113646 unique_id port 113646 remote_ip 10.8.1.42 113647 username avaanna 113647 mac 113647 bytes_out 0 113647 bytes_in 0 113647 station_ip 83.123.79.218 113647 port 51 113647 unique_id port 113649 username mahdiyehalizadeh 113649 mac 113649 bytes_out 335547 113649 bytes_in 1153925 113649 station_ip 37.129.255.226 113649 port 97 113649 unique_id port 113649 remote_ip 10.8.0.82 113658 username sedighe 113658 mac 113658 bytes_out 51328 113658 bytes_in 72866 113658 station_ip 83.123.50.116 113658 port 38 113658 unique_id port 113658 remote_ip 10.8.1.78 113662 username sedighe 113662 mac 113662 bytes_out 0 113662 bytes_in 0 113662 station_ip 83.123.50.116 113662 port 100 113662 unique_id port 113662 remote_ip 10.8.0.146 113666 username hashtadani3 113666 kill_reason Another user logged on this global unique id 113666 mac 113666 bytes_out 0 113666 bytes_in 0 113666 station_ip 37.129.16.45 113666 port 97 113666 unique_id port 113666 remote_ip 10.8.0.154 113667 username malekpoir 113667 mac 113667 bytes_out 0 113667 bytes_in 0 113667 station_ip 5.120.117.201 113667 port 51 113667 unique_id port 113671 username avaanna 113671 mac 113671 bytes_out 167748 113671 bytes_in 870329 113671 station_ip 83.123.79.218 113671 port 96 113671 unique_id port 113671 remote_ip 10.8.0.98 113676 username sabaghnezhad 113676 mac 113676 bytes_out 0 113676 bytes_in 0 113676 station_ip 83.122.134.89 113676 port 100 113676 unique_id port 113676 remote_ip 10.8.0.186 113678 username hashtadani3 113678 mac 113678 bytes_out 0 113678 bytes_in 0 113678 station_ip 5.202.61.156 113678 port 97 113678 unique_id port 113678 remote_ip 10.8.0.154 113683 username rostami 113683 mac 113683 bytes_out 0 113683 bytes_in 0 113683 station_ip 5.119.11.105 113683 port 38 113683 unique_id port 113683 remote_ip 10.8.1.142 113685 username mohammadjavad 113685 mac 113685 bytes_out 881225 113685 bytes_in 10460581 113685 station_ip 83.123.239.254 113685 port 101 113685 unique_id port 113685 remote_ip 10.8.0.142 113692 username alihosseini1 113692 mac 113692 bytes_out 0 113692 bytes_in 0 113692 station_ip 5.119.50.67 113692 port 97 113692 unique_id port 113692 remote_ip 10.8.0.166 113693 username mehdizare 113693 mac 113693 bytes_out 6801 113693 bytes_in 9670 113693 station_ip 5.119.132.42 113693 port 96 113693 unique_id port 113693 remote_ip 10.8.0.90 113695 username avaanna 113695 mac 113695 bytes_out 12438 113695 bytes_in 15984 113695 station_ip 83.123.79.218 113695 port 100 113695 unique_id port 113695 remote_ip 10.8.0.98 113697 username mehdizare 113697 mac 113697 bytes_out 0 113697 bytes_in 0 113697 station_ip 5.119.132.42 113697 port 96 113697 unique_id port 113697 remote_ip 10.8.0.90 113702 username houshang 113702 mac 113639 username sedighe 113639 mac 113639 bytes_out 0 113639 bytes_in 0 113639 station_ip 83.122.223.31 113639 port 35 113639 unique_id port 113639 remote_ip 10.8.1.78 113641 username afarin1 113641 mac 113641 bytes_out 0 113641 bytes_in 0 113641 station_ip 37.129.143.149 113641 port 96 113641 unique_id port 113643 username alihosseini1 113643 mac 113643 bytes_out 0 113643 bytes_in 0 113643 station_ip 5.119.171.174 113643 port 97 113643 unique_id port 113643 remote_ip 10.8.0.166 113644 username alihosseini1 113644 mac 113644 bytes_out 2858 113644 bytes_in 5170 113644 station_ip 5.119.171.174 113644 port 97 113644 unique_id port 113644 remote_ip 10.8.0.166 113648 username alihosseini1 113648 mac 113648 bytes_out 8313 113648 bytes_in 10333 113648 station_ip 5.119.171.174 113648 port 100 113648 unique_id port 113648 remote_ip 10.8.0.166 113652 username mahdiyehalizadeh 113652 mac 113652 bytes_out 32429 113652 bytes_in 179624 113652 station_ip 37.129.255.226 113652 port 100 113652 unique_id port 113652 remote_ip 10.8.0.82 113654 username alihosseini1 113654 mac 113654 bytes_out 28418 113654 bytes_in 34527 113654 station_ip 5.119.171.174 113654 port 97 113654 unique_id port 113654 remote_ip 10.8.0.166 113655 username mehdizare 113655 mac 113655 bytes_out 35606 113655 bytes_in 51440 113655 station_ip 5.119.132.42 113655 port 35 113655 unique_id port 113655 remote_ip 10.8.1.42 113656 username hashtadani3 113656 mac 113656 bytes_out 0 113656 bytes_in 0 113656 station_ip 37.129.16.45 113656 port 97 113656 unique_id port 113656 remote_ip 10.8.0.154 113659 username hashtadani3 113659 mac 113659 bytes_out 0 113659 bytes_in 0 113659 station_ip 37.129.16.45 113659 port 39 113659 unique_id port 113659 remote_ip 10.8.1.94 113661 username mehdizare 113661 mac 113661 bytes_out 12037 113661 bytes_in 15159 113661 station_ip 5.119.132.42 113661 port 35 113661 unique_id port 113661 remote_ip 10.8.1.42 113665 username rostami 113665 mac 113665 bytes_out 150297 113665 bytes_in 302111 113665 station_ip 5.119.11.105 113665 port 38 113665 unique_id port 113665 remote_ip 10.8.1.142 113668 username sabaghnezhad 113668 mac 113668 bytes_out 0 113668 bytes_in 0 113668 station_ip 37.129.226.214 113668 port 101 113668 unique_id port 113668 remote_ip 10.8.0.186 113669 username rostami 113669 mac 113669 bytes_out 348931 113669 bytes_in 4126931 113669 station_ip 5.119.11.105 113669 port 35 113669 unique_id port 113669 remote_ip 10.8.1.142 113672 username mehdizare 113672 mac 113672 bytes_out 10109 113672 bytes_in 18660 113672 station_ip 5.119.132.42 113672 port 101 113672 unique_id port 113672 remote_ip 10.8.0.90 113674 username ahmadipour 113674 unique_id port 113674 terminate_cause Lost-Carrier 113674 bytes_out 413364 113674 bytes_in 9102677 113674 station_ip 83.123.0.205 113674 port 15729286 113674 nas_port_type Virtual 113674 remote_ip 5.5.5.195 113675 username mehdizare 113675 mac 113675 bytes_out 0 113675 bytes_in 0 113675 station_ip 5.119.132.42 113675 port 103 113675 unique_id port 113675 remote_ip 10.8.0.90 113677 username hashtadani3 113677 mac 113677 bytes_out 0 113677 bytes_in 0 113677 station_ip 37.129.16.45 113677 port 97 113677 unique_id port 113681 username hashtadani3 113681 mac 113681 bytes_out 0 113681 bytes_in 0 113681 station_ip 5.202.61.156 113681 port 97 113681 unique_id port 113681 remote_ip 10.8.0.154 113682 username hashtadani3 113682 mac 113682 bytes_out 0 113682 bytes_in 0 113670 port 100 113670 unique_id port 113670 remote_ip 10.8.0.90 113673 username hashtadani3 113673 kill_reason Another user logged on this global unique id 113673 mac 113673 bytes_out 0 113673 bytes_in 0 113673 station_ip 37.129.16.45 113673 port 97 113673 unique_id port 113679 username mehdizare 113679 mac 113679 bytes_out 18474 113679 bytes_in 30174 113679 station_ip 5.119.132.42 113679 port 104 113679 unique_id port 113679 remote_ip 10.8.0.90 113680 username mehdizare 113680 mac 113680 bytes_out 0 113680 bytes_in 0 113680 station_ip 5.119.132.42 113680 port 100 113680 unique_id port 113680 remote_ip 10.8.0.90 113688 username rostami 113688 mac 113688 bytes_out 0 113688 bytes_in 0 113688 station_ip 5.119.11.105 113688 port 38 113688 unique_id port 113688 remote_ip 10.8.1.142 113689 username morteza 113689 mac 113689 bytes_out 208606 113689 bytes_in 695196 113689 station_ip 113.203.46.217 113689 port 100 113689 unique_id port 113689 remote_ip 10.8.0.46 113691 username avaanna 113691 mac 113691 bytes_out 15419 113691 bytes_in 20260 113691 station_ip 83.123.79.218 113691 port 103 113691 unique_id port 113691 remote_ip 10.8.0.98 113698 username mehdizare 113698 mac 113698 bytes_out 0 113698 bytes_in 0 113698 station_ip 5.119.132.42 113698 port 96 113698 unique_id port 113698 remote_ip 10.8.0.90 113699 username alihosseini1 113699 kill_reason Maximum check online fails reached 113699 mac 113699 bytes_out 0 113699 bytes_in 0 113699 station_ip 5.119.50.67 113699 port 38 113699 unique_id port 113701 username avaanna 113701 mac 113701 bytes_out 0 113701 bytes_in 0 113701 station_ip 83.123.79.218 113701 port 40 113701 unique_id port 113701 remote_ip 10.8.1.46 113703 username mehdizare 113703 mac 113703 bytes_out 20310 113703 bytes_in 32186 113703 station_ip 5.119.132.42 113703 port 97 113703 unique_id port 113703 remote_ip 10.8.0.90 113707 username khalili 113707 mac 113707 bytes_out 3524983 113707 bytes_in 23011112 113707 station_ip 5.125.46.113 113707 port 51 113707 unique_id port 113707 remote_ip 10.8.0.86 113709 username zare 113709 mac 113709 bytes_out 301745 113709 bytes_in 835988 113709 station_ip 94.183.214.14 113709 port 39 113709 unique_id port 113709 remote_ip 10.8.1.58 113710 username mehdizare 113710 mac 113710 bytes_out 18733 113710 bytes_in 25942 113710 station_ip 5.119.132.42 113710 port 51 113710 unique_id port 113710 remote_ip 10.8.0.90 113711 username forozande 113711 mac 113711 bytes_out 2562850 113711 bytes_in 41355485 113711 station_ip 83.123.153.7 113711 port 97 113711 unique_id port 113711 remote_ip 10.8.0.74 113718 username mohammadjavad 113718 mac 113718 bytes_out 194045 113718 bytes_in 1034455 113718 station_ip 37.129.22.154 113718 port 97 113718 unique_id port 113718 remote_ip 10.8.0.142 113722 username mohammadjavad 113722 mac 113722 bytes_out 9143 113722 bytes_in 8013 113722 station_ip 37.129.22.154 113722 port 104 113722 unique_id port 113722 remote_ip 10.8.0.142 113726 username zare 113726 mac 113726 bytes_out 0 113726 bytes_in 0 113726 station_ip 94.183.214.14 113726 port 39 113726 unique_id port 113726 remote_ip 10.8.1.58 113727 username amirabbas 113727 unique_id port 113727 terminate_cause User-Request 113727 bytes_out 2340038 113727 bytes_in 60959700 113727 station_ip 37.27.4.241 113727 port 15729288 113727 nas_port_type Virtual 113727 remote_ip 5.5.5.199 113730 username zare 113730 mac 113730 bytes_out 890127 113730 bytes_in 18772750 113730 station_ip 94.183.214.14 113682 station_ip 37.129.16.45 113682 port 38 113682 unique_id port 113682 remote_ip 10.8.1.94 113684 username amir 113684 mac 113684 bytes_out 0 113684 bytes_in 0 113684 station_ip 46.225.210.2 113684 port 35 113684 unique_id port 113684 remote_ip 10.8.1.22 113686 username mehdizare 113686 mac 113686 bytes_out 18925 113686 bytes_in 23063 113686 station_ip 5.119.132.42 113686 port 103 113686 unique_id port 113686 remote_ip 10.8.0.90 113687 username avaanna 113687 mac 113687 bytes_out 500452 113687 bytes_in 4408484 113687 station_ip 83.123.79.218 113687 port 96 113687 unique_id port 113687 remote_ip 10.8.0.98 113690 username mehdizare 113690 mac 113690 bytes_out 15343 113690 bytes_in 30690 113690 station_ip 5.119.132.42 113690 port 104 113690 unique_id port 113690 remote_ip 10.8.0.90 113694 username alihosseini1 113694 mac 113694 bytes_out 0 113694 bytes_in 0 113694 station_ip 5.119.50.67 113694 port 97 113694 unique_id port 113694 remote_ip 10.8.0.166 113696 username mehdizare 113696 mac 113696 bytes_out 0 113696 bytes_in 0 113696 station_ip 5.119.132.42 113696 port 103 113696 unique_id port 113696 remote_ip 10.8.0.90 113700 username forozande 113700 mac 113700 bytes_out 0 113700 bytes_in 0 113700 station_ip 83.122.237.178 113700 port 101 113700 unique_id port 113700 remote_ip 10.8.0.74 113705 username alihosseini1 113705 mac 113705 bytes_out 0 113705 bytes_in 0 113705 station_ip 5.119.50.67 113705 port 96 113705 unique_id port 113705 remote_ip 10.8.0.166 113716 username amir 113716 kill_reason Another user logged on this global unique id 113716 mac 113716 bytes_out 0 113716 bytes_in 0 113716 station_ip 46.225.210.2 113716 port 35 113716 unique_id port 113716 remote_ip 10.8.1.22 113719 username aminvpn 113719 unique_id port 113719 terminate_cause User-Request 113719 bytes_out 113653 113719 bytes_in 435099 113719 station_ip 5.120.60.171 113719 port 15729290 113719 nas_port_type Virtual 113719 remote_ip 5.5.5.255 113720 username alihosseini1 113720 mac 113720 bytes_out 0 113720 bytes_in 0 113720 station_ip 5.119.84.119 113720 port 101 113720 unique_id port 113720 remote_ip 10.8.0.166 113725 username zare 113725 mac 113725 bytes_out 0 113725 bytes_in 0 113725 station_ip 94.183.214.14 113725 port 39 113725 unique_id port 113725 remote_ip 10.8.1.58 113731 username mehdizare 113731 mac 113731 bytes_out 10876 113731 bytes_in 17008 113731 station_ip 5.119.132.42 113731 port 100 113731 unique_id port 113731 remote_ip 10.8.0.90 113736 username zare 113736 mac 113736 bytes_out 0 113736 bytes_in 0 113736 station_ip 94.183.214.14 113736 port 39 113736 unique_id port 113736 remote_ip 10.8.1.58 113742 username kordestani 113742 mac 113742 bytes_out 18282 113742 bytes_in 19492 113742 station_ip 151.235.103.198 113742 port 51 113742 unique_id port 113742 remote_ip 10.8.0.134 113749 username mehdizare 113749 mac 113749 bytes_out 0 113749 bytes_in 0 113749 station_ip 5.119.132.42 113749 port 40 113749 unique_id port 113749 remote_ip 10.8.1.42 113750 username alihosseini1 113750 mac 113750 bytes_out 636248 113750 bytes_in 3064990 113750 station_ip 5.119.55.99 113750 port 97 113750 unique_id port 113750 remote_ip 10.8.0.166 113753 username zare 113753 mac 113753 bytes_out 0 113753 bytes_in 0 113753 station_ip 94.183.214.14 113753 port 101 113753 unique_id port 113753 remote_ip 10.8.0.18 113756 username zare 113756 mac 113756 bytes_out 0 113756 bytes_in 0 113756 station_ip 94.183.214.14 113702 bytes_out 18467 113702 bytes_in 55871 113702 station_ip 5.120.190.181 113702 port 100 113702 unique_id port 113702 remote_ip 10.8.0.22 113704 username forozande 113704 mac 113704 bytes_out 0 113704 bytes_in 0 113704 station_ip 83.122.220.48 113704 port 101 113704 unique_id port 113704 remote_ip 10.8.0.74 113706 username mehdizare 113706 mac 113706 bytes_out 0 113706 bytes_in 0 113706 station_ip 5.119.132.42 113706 port 96 113706 unique_id port 113706 remote_ip 10.8.0.90 113708 username mehdizare 113708 mac 113708 bytes_out 0 113708 bytes_in 0 113708 station_ip 5.119.132.42 113708 port 100 113708 unique_id port 113708 remote_ip 10.8.0.90 113712 username mehdizare 113712 mac 113712 bytes_out 0 113712 bytes_in 0 113712 station_ip 5.119.132.42 113712 port 51 113712 unique_id port 113712 remote_ip 10.8.0.90 113713 username mohammadjavad 113713 mac 113713 bytes_out 0 113713 bytes_in 0 113713 station_ip 37.129.173.52 113713 port 101 113713 unique_id port 113713 remote_ip 10.8.0.142 113714 username mehdizare 113714 mac 113714 bytes_out 0 113714 bytes_in 0 113714 station_ip 5.119.132.42 113714 port 97 113714 unique_id port 113714 remote_ip 10.8.0.90 113715 username zare 113715 mac 113715 bytes_out 0 113715 bytes_in 0 113715 station_ip 94.183.214.14 113715 port 39 113715 unique_id port 113715 remote_ip 10.8.1.58 113717 username mosi 113717 mac 113717 bytes_out 749855 113717 bytes_in 7866321 113717 station_ip 151.235.111.162 113717 port 97 113717 unique_id port 113717 remote_ip 10.8.0.138 113721 username forozande 113721 mac 113721 bytes_out 0 113721 bytes_in 0 113721 station_ip 83.122.188.39 113721 port 103 113721 unique_id port 113721 remote_ip 10.8.0.74 113723 username mehdizare 113723 mac 113723 bytes_out 27407 113723 bytes_in 37000 113723 station_ip 5.119.132.42 113723 port 51 113723 unique_id port 113723 remote_ip 10.8.0.90 113724 username zare 113724 mac 113724 bytes_out 59795 113724 bytes_in 283280 113724 station_ip 94.183.214.14 113724 port 39 113724 unique_id port 113724 remote_ip 10.8.1.58 113728 username avaanna 113728 mac 113728 bytes_out 0 113728 bytes_in 0 113728 station_ip 83.123.87.2 113728 port 100 113728 unique_id port 113728 remote_ip 10.8.0.98 113729 username mehdizare 113729 mac 113729 bytes_out 0 113729 bytes_in 0 113729 station_ip 5.119.132.42 113729 port 97 113729 unique_id port 113729 remote_ip 10.8.0.90 113732 username khalili 113732 mac 113732 bytes_out 207669 113732 bytes_in 774122 113732 station_ip 5.125.46.113 113732 port 96 113732 unique_id port 113732 remote_ip 10.8.0.86 113739 username avaanna 113739 mac 113739 bytes_out 22165 113739 bytes_in 21193 113739 station_ip 83.123.87.2 113739 port 97 113739 unique_id port 113739 remote_ip 10.8.0.98 113743 username zare 113743 mac 113743 bytes_out 0 113743 bytes_in 0 113743 station_ip 94.183.214.14 113743 port 39 113743 unique_id port 113743 remote_ip 10.8.1.58 113745 username mehdizare 113745 mac 113745 bytes_out 0 113745 bytes_in 0 113745 station_ip 5.119.132.42 113745 port 39 113745 unique_id port 113745 remote_ip 10.8.1.42 113747 username avaanna 113747 mac 113747 bytes_out 0 113747 bytes_in 0 113747 station_ip 83.123.87.2 113747 port 43 113747 unique_id port 113747 remote_ip 10.8.1.46 113752 username amir 113752 kill_reason Another user logged on this global unique id 113752 mac 113752 bytes_out 0 113752 bytes_in 0 113752 station_ip 46.225.210.2 113752 port 35 113730 port 103 113730 unique_id port 113730 remote_ip 10.8.0.18 113733 username avaanna 113733 mac 113733 bytes_out 8677 113733 bytes_in 14140 113733 station_ip 83.123.87.2 113733 port 97 113733 unique_id port 113733 remote_ip 10.8.0.98 113734 username mehdizare 113734 mac 113734 bytes_out 10036 113734 bytes_in 12943 113734 station_ip 5.119.132.42 113734 port 103 113734 unique_id port 113734 remote_ip 10.8.0.90 113735 username avaanna 113735 mac 113735 bytes_out 0 113735 bytes_in 0 113735 station_ip 83.123.87.2 113735 port 96 113735 unique_id port 113735 remote_ip 10.8.0.98 113737 username amir 113737 kill_reason Another user logged on this global unique id 113737 mac 113737 bytes_out 0 113737 bytes_in 0 113737 station_ip 46.225.210.2 113737 port 35 113737 unique_id port 113738 username sabaghnezhad 113738 mac 113738 bytes_out 43179 113738 bytes_in 47289 113738 station_ip 83.122.65.155 113738 port 101 113738 unique_id port 113738 remote_ip 10.8.0.186 113740 username kordestani 113740 mac 113740 bytes_out 0 113740 bytes_in 0 113740 station_ip 151.235.103.198 113740 port 51 113740 unique_id port 113740 remote_ip 10.8.0.134 113741 username sabaghnezhad 113741 mac 113741 bytes_out 20711 113741 bytes_in 24545 113741 station_ip 83.122.65.155 113741 port 96 113741 unique_id port 113741 remote_ip 10.8.0.186 113744 username mehdizare 113744 mac 113744 bytes_out 115510 113744 bytes_in 139969 113744 station_ip 5.119.132.42 113744 port 40 113744 unique_id port 113744 remote_ip 10.8.1.42 113746 username zare 113746 mac 113746 bytes_out 0 113746 bytes_in 0 113746 station_ip 94.183.214.14 113746 port 39 113746 unique_id port 113746 remote_ip 10.8.1.58 113748 username malekpoir 113748 kill_reason Another user logged on this global unique id 113748 mac 113748 bytes_out 0 113748 bytes_in 0 113748 station_ip 5.120.117.201 113748 port 102 113748 unique_id port 113748 remote_ip 10.8.0.58 113751 username avaanna 113751 mac 113751 bytes_out 0 113751 bytes_in 0 113751 station_ip 83.123.87.2 113751 port 101 113751 unique_id port 113751 remote_ip 10.8.0.98 113754 username sabaghnezhad 113754 mac 113754 bytes_out 50478 113754 bytes_in 74576 113754 station_ip 83.122.65.155 113754 port 96 113754 unique_id port 113754 remote_ip 10.8.0.186 113757 username zare 113757 mac 113757 bytes_out 0 113757 bytes_in 0 113757 station_ip 94.183.214.14 113757 port 96 113757 unique_id port 113757 remote_ip 10.8.0.18 113758 username aminvpn 113758 mac 113758 bytes_out 0 113758 bytes_in 0 113758 station_ip 5.119.178.248 113758 port 51 113758 unique_id port 113758 remote_ip 10.8.0.14 113760 username mehdizare 113760 mac 113760 bytes_out 0 113760 bytes_in 0 113760 station_ip 5.119.132.42 113760 port 39 113760 unique_id port 113760 remote_ip 10.8.1.42 113762 username zare 113762 mac 113762 bytes_out 6565 113762 bytes_in 9177 113762 station_ip 94.183.214.14 113762 port 51 113762 unique_id port 113762 remote_ip 10.8.0.18 113767 username forozande 113767 mac 113767 bytes_out 2887175 113767 bytes_in 40150171 113767 station_ip 83.122.126.100 113767 port 100 113767 unique_id port 113767 remote_ip 10.8.0.74 113769 username amir 113769 mac 113769 bytes_out 0 113769 bytes_in 0 113769 station_ip 46.225.210.2 113769 port 35 113769 unique_id port 113771 username avaanna 113771 mac 113771 bytes_out 0 113771 bytes_in 0 113771 station_ip 83.123.87.2 113771 port 97 113771 unique_id port 113771 remote_ip 10.8.0.98 113752 unique_id port 113755 username zare 113755 mac 113755 bytes_out 0 113755 bytes_in 0 113755 station_ip 94.183.214.14 113755 port 103 113755 unique_id port 113755 remote_ip 10.8.0.18 113761 username mehdizare 113761 mac 113761 bytes_out 0 113761 bytes_in 0 113761 station_ip 5.119.132.42 113761 port 104 113761 unique_id port 113761 remote_ip 10.8.0.90 113763 username mohammadjavad 113763 mac 113763 bytes_out 338585 113763 bytes_in 2433848 113763 station_ip 83.122.87.116 113763 port 101 113763 unique_id port 113763 remote_ip 10.8.0.142 113764 username avaanna 113764 mac 113764 bytes_out 84871 113764 bytes_in 100782 113764 station_ip 83.123.87.2 113764 port 97 113764 unique_id port 113764 remote_ip 10.8.0.98 113775 username mehdizare 113775 mac 113775 bytes_out 0 113775 bytes_in 0 113775 station_ip 5.119.132.42 113775 port 105 113775 unique_id port 113775 remote_ip 10.8.0.90 113778 username zare 113778 mac 113778 bytes_out 0 113778 bytes_in 0 113778 station_ip 94.183.214.14 113778 port 97 113778 unique_id port 113778 remote_ip 10.8.0.18 113779 username kordestani 113779 mac 113779 bytes_out 0 113779 bytes_in 0 113779 station_ip 151.235.103.198 113779 port 44 113779 unique_id port 113779 remote_ip 10.8.1.98 113782 username avaanna 113782 mac 113782 bytes_out 0 113782 bytes_in 0 113782 station_ip 83.123.87.2 113782 port 101 113782 unique_id port 113782 remote_ip 10.8.0.98 113787 username zare 113787 mac 113787 bytes_out 26060 113787 bytes_in 81576 113787 station_ip 94.183.214.14 113787 port 101 113787 unique_id port 113787 remote_ip 10.8.0.18 113790 username zare 113790 mac 113790 bytes_out 0 113790 bytes_in 0 113790 station_ip 94.183.214.14 113790 port 96 113790 unique_id port 113790 remote_ip 10.8.0.18 113797 username zare 113797 mac 113797 bytes_out 0 113797 bytes_in 0 113797 station_ip 94.183.214.14 113797 port 51 113797 unique_id port 113797 remote_ip 10.8.0.18 113801 username hashtadani3 113801 mac 113801 bytes_out 38214 113801 bytes_in 55370 113801 station_ip 5.202.61.156 113801 port 102 113801 unique_id port 113801 remote_ip 10.8.0.154 113805 username zare 113805 mac 113805 bytes_out 0 113805 bytes_in 0 113805 station_ip 94.183.214.14 113805 port 44 113805 unique_id port 113805 remote_ip 10.8.1.58 113808 username zare 113808 kill_reason Maximum check online fails reached 113808 mac 113808 bytes_out 0 113808 bytes_in 0 113808 station_ip 94.183.214.14 113808 port 44 113808 unique_id port 113809 username hashtadani3 113809 mac 113809 bytes_out 0 113809 bytes_in 0 113809 station_ip 5.202.61.156 113809 port 46 113809 unique_id port 113809 remote_ip 10.8.1.94 113811 username zare 113811 mac 113811 bytes_out 0 113811 bytes_in 0 113811 station_ip 94.183.214.14 113811 port 45 113811 unique_id port 113811 remote_ip 10.8.1.58 113813 username hashtadani3 113813 kill_reason Maximum number of concurrent logins reached 113813 mac 113813 bytes_out 0 113813 bytes_in 0 113813 station_ip 5.202.99.53 113813 port 102 113813 unique_id port 113817 username malekpoir 113817 mac 113817 bytes_out 770275 113817 bytes_in 8496903 113817 station_ip 5.120.117.201 113817 port 100 113817 unique_id port 113817 remote_ip 10.8.0.58 113818 username rostami 113818 kill_reason Another user logged on this global unique id 113818 mac 113818 bytes_out 0 113818 bytes_in 0 113818 station_ip 5.119.11.105 113818 port 43 113818 unique_id port 113818 remote_ip 10.8.1.142 113820 username mosi 113756 port 96 113756 unique_id port 113756 remote_ip 10.8.0.18 113759 username zare 113759 mac 113759 bytes_out 0 113759 bytes_in 0 113759 station_ip 94.183.214.14 113759 port 96 113759 unique_id port 113759 remote_ip 10.8.0.18 113765 username avaanna 113765 mac 113765 bytes_out 0 113765 bytes_in 0 113765 station_ip 83.123.87.2 113765 port 51 113765 unique_id port 113765 remote_ip 10.8.0.98 113766 username zare 113766 mac 113766 bytes_out 0 113766 bytes_in 0 113766 station_ip 94.183.214.14 113766 port 39 113766 unique_id port 113766 remote_ip 10.8.1.58 113768 username zare 113768 mac 113768 bytes_out 0 113768 bytes_in 0 113768 station_ip 94.183.214.14 113768 port 40 113768 unique_id port 113768 remote_ip 10.8.1.58 113770 username zare 113770 kill_reason Maximum check online fails reached 113770 mac 113770 bytes_out 0 113770 bytes_in 0 113770 station_ip 94.183.214.14 113770 port 39 113770 unique_id port 113772 username zare 113772 mac 113772 bytes_out 0 113772 bytes_in 0 113772 station_ip 94.183.214.14 113772 port 40 113772 unique_id port 113772 remote_ip 10.8.1.58 113773 username zare 113773 mac 113773 bytes_out 0 113773 bytes_in 0 113773 station_ip 94.183.214.14 113773 port 51 113773 unique_id port 113773 remote_ip 10.8.0.18 113777 username avaanna 113777 mac 113777 bytes_out 12388 113777 bytes_in 18327 113777 station_ip 83.123.87.2 113777 port 43 113777 unique_id port 113777 remote_ip 10.8.1.46 113780 username zare 113780 mac 113780 bytes_out 0 113780 bytes_in 0 113780 station_ip 94.183.214.14 113780 port 97 113780 unique_id port 113780 remote_ip 10.8.0.18 113784 username zare 113784 mac 113784 bytes_out 0 113784 bytes_in 0 113784 station_ip 94.183.214.14 113784 port 101 113784 unique_id port 113784 remote_ip 10.8.0.18 113788 username zare 113788 mac 113788 bytes_out 0 113788 bytes_in 0 113788 station_ip 94.183.214.14 113788 port 96 113788 unique_id port 113788 remote_ip 10.8.0.18 113793 username mehdizare 113793 mac 113793 bytes_out 74283 113793 bytes_in 607919 113793 station_ip 5.119.132.42 113793 port 51 113793 unique_id port 113793 remote_ip 10.8.0.90 113794 username alihosseini1 113794 mac 113794 bytes_out 75754 113794 bytes_in 79811 113794 station_ip 5.120.100.25 113794 port 97 113794 unique_id port 113794 remote_ip 10.8.0.166 113795 username zare 113795 mac 113795 bytes_out 0 113795 bytes_in 0 113795 station_ip 94.183.214.14 113795 port 51 113795 unique_id port 113795 remote_ip 10.8.0.18 113796 username malekpoir 113796 mac 113796 bytes_out 0 113796 bytes_in 0 113796 station_ip 5.120.117.201 113796 port 102 113796 unique_id port 113798 username alipour 113798 mac 113798 bytes_out 0 113798 bytes_in 0 113798 station_ip 113.203.15.247 113798 port 96 113798 unique_id port 113798 remote_ip 10.8.0.102 113800 username avaanna 113800 mac 113800 bytes_out 21068 113800 bytes_in 44732 113800 station_ip 83.123.87.2 113800 port 105 113800 unique_id port 113800 remote_ip 10.8.0.98 113807 username zare 113807 mac 113807 bytes_out 0 113807 bytes_in 0 113807 station_ip 94.183.214.14 113807 port 45 113807 unique_id port 113807 remote_ip 10.8.1.58 113810 username hashtadani3 113810 mac 113810 bytes_out 0 113810 bytes_in 0 113810 station_ip 5.202.61.156 113810 port 46 113810 unique_id port 113810 remote_ip 10.8.1.94 113815 username forozande 113815 mac 113815 bytes_out 0 113815 bytes_in 0 113774 username zare 113774 mac 113774 bytes_out 0 113774 bytes_in 0 113774 station_ip 94.183.214.14 113774 port 51 113774 unique_id port 113774 remote_ip 10.8.0.18 113776 username zare 113776 mac 113776 bytes_out 0 113776 bytes_in 0 113776 station_ip 94.183.214.14 113776 port 51 113776 unique_id port 113776 remote_ip 10.8.0.18 113781 username alihosseini1 113781 mac 113781 bytes_out 0 113781 bytes_in 0 113781 station_ip 5.120.100.25 113781 port 97 113781 unique_id port 113781 remote_ip 10.8.0.166 113783 username zare 113783 mac 113783 bytes_out 69819 113783 bytes_in 619343 113783 station_ip 94.183.214.14 113783 port 100 113783 unique_id port 113783 remote_ip 10.8.0.18 113785 username avaanna 113785 mac 113785 bytes_out 13326 113785 bytes_in 14500 113785 station_ip 83.123.87.2 113785 port 100 113785 unique_id port 113785 remote_ip 10.8.0.98 113786 username alipour 113786 mac 113786 bytes_out 0 113786 bytes_in 0 113786 station_ip 113.203.15.247 113786 port 96 113786 unique_id port 113786 remote_ip 10.8.0.102 113789 username zare 113789 mac 113789 bytes_out 0 113789 bytes_in 0 113789 station_ip 94.183.214.14 113789 port 96 113789 unique_id port 113789 remote_ip 10.8.0.18 113791 username malekpoir 113791 kill_reason Another user logged on this global unique id 113791 mac 113791 bytes_out 0 113791 bytes_in 0 113791 station_ip 5.120.117.201 113791 port 102 113791 unique_id port 113792 username alipour 113792 mac 113792 bytes_out 0 113792 bytes_in 0 113792 station_ip 113.203.15.247 113792 port 40 113792 unique_id port 113792 remote_ip 10.8.1.50 113799 username mostafa_es78 113799 unique_id port 113799 terminate_cause User-Request 113799 bytes_out 119771348 113799 bytes_in 1022783690 113799 station_ip 5.125.31.128 113799 port 15729291 113799 nas_port_type Virtual 113799 remote_ip 5.5.5.198 113802 username zare 113802 mac 113802 bytes_out 0 113802 bytes_in 0 113802 station_ip 94.183.214.14 113802 port 101 113802 unique_id port 113802 remote_ip 10.8.0.18 113803 username amir 113803 kill_reason Another user logged on this global unique id 113803 mac 113803 bytes_out 0 113803 bytes_in 0 113803 station_ip 46.225.210.2 113803 port 35 113803 unique_id port 113803 remote_ip 10.8.1.22 113804 username hashtadani3 113804 mac 113804 bytes_out 0 113804 bytes_in 0 113804 station_ip 5.202.61.156 113804 port 101 113804 unique_id port 113804 remote_ip 10.8.0.154 113806 username aminvpn 113806 unique_id port 113806 terminate_cause User-Request 113806 bytes_out 206452 113806 bytes_in 453383 113806 station_ip 5.120.60.171 113806 port 15729292 113806 nas_port_type Virtual 113806 remote_ip 5.5.5.202 113812 username hashtadani3 113812 kill_reason Maximum number of concurrent logins reached 113812 mac 113812 bytes_out 0 113812 bytes_in 0 113812 station_ip 5.202.99.53 113812 port 45 113812 unique_id port 113814 username hashtadani3 113814 mac 113814 bytes_out 0 113814 bytes_in 0 113814 station_ip 5.202.61.156 113814 port 47 113814 unique_id port 113814 remote_ip 10.8.1.94 113816 username hashtadani3 113816 kill_reason Maximum check online fails reached 113816 mac 113816 bytes_out 0 113816 bytes_in 0 113816 station_ip 5.202.61.156 113816 port 46 113816 unique_id port 113822 username mosi 113822 mac 113822 bytes_out 0 113822 bytes_in 0 113822 station_ip 151.235.111.162 113822 port 101 113822 unique_id port 113823 username kordestani 113823 mac 113823 bytes_out 1603725 113823 bytes_in 22448159 113823 station_ip 151.235.103.198 113823 port 100 113823 unique_id port 113815 station_ip 113.203.77.5 113815 port 96 113815 unique_id port 113815 remote_ip 10.8.0.74 113819 username kordestani 113819 mac 113819 bytes_out 0 113819 bytes_in 0 113819 station_ip 151.235.103.198 113819 port 104 113819 unique_id port 113819 remote_ip 10.8.0.134 113825 username zare 113825 mac 113825 bytes_out 0 113825 bytes_in 0 113825 station_ip 94.183.214.14 113825 port 45 113825 unique_id port 113825 remote_ip 10.8.1.58 113829 username avaanna 113829 mac 113829 bytes_out 519052 113829 bytes_in 3444044 113829 station_ip 83.123.87.2 113829 port 40 113829 unique_id port 113829 remote_ip 10.8.1.46 113837 username mehdizare 113837 mac 113837 bytes_out 1790 113837 bytes_in 5090 113837 station_ip 5.119.132.42 113837 port 47 113837 unique_id port 113837 remote_ip 10.8.1.42 113840 username alirr 113840 unique_id port 113840 terminate_cause User-Request 113840 bytes_out 25271044 113840 bytes_in 561160671 113840 station_ip 5.119.98.222 113840 port 15729289 113840 nas_port_type Virtual 113840 remote_ip 5.5.5.201 113844 username mehdizare 113844 mac 113844 bytes_out 0 113844 bytes_in 0 113844 station_ip 5.119.132.42 113844 port 47 113844 unique_id port 113844 remote_ip 10.8.1.42 113845 username rostami 113845 kill_reason Another user logged on this global unique id 113845 mac 113845 bytes_out 0 113845 bytes_in 0 113845 station_ip 5.119.11.105 113845 port 43 113845 unique_id port 113847 username zare 113847 mac 113847 bytes_out 211914 113847 bytes_in 1172358 113847 station_ip 94.183.214.14 113847 port 45 113847 unique_id port 113847 remote_ip 10.8.1.58 113854 username mehdizare 113854 mac 113854 bytes_out 0 113854 bytes_in 0 113854 station_ip 5.119.132.42 113854 port 45 113854 unique_id port 113854 remote_ip 10.8.1.42 113857 username zare 113857 mac 113857 bytes_out 0 113857 bytes_in 0 113857 station_ip 94.183.214.14 113857 port 51 113857 unique_id port 113857 remote_ip 10.8.0.18 113858 username zare 113858 mac 113858 bytes_out 23763 113858 bytes_in 103428 113858 station_ip 94.183.214.14 113858 port 51 113858 unique_id port 113858 remote_ip 10.8.0.18 113859 username zare 113859 mac 113859 bytes_out 0 113859 bytes_in 0 113859 station_ip 94.183.214.14 113859 port 51 113859 unique_id port 113859 remote_ip 10.8.0.18 113860 username mehdizare 113860 mac 113860 bytes_out 17967 113860 bytes_in 25104 113860 station_ip 5.119.132.42 113860 port 96 113860 unique_id port 113860 remote_ip 10.8.0.90 113864 username zare 113864 mac 113864 bytes_out 0 113864 bytes_in 0 113864 station_ip 94.183.214.14 113864 port 96 113864 unique_id port 113864 remote_ip 10.8.0.18 113867 username mehdizare 113867 mac 113867 bytes_out 15426 113867 bytes_in 26975 113867 station_ip 5.119.132.42 113867 port 101 113867 unique_id port 113867 remote_ip 10.8.0.90 113870 username avaanna 113870 mac 113870 bytes_out 0 113870 bytes_in 0 113870 station_ip 83.123.87.2 113870 port 40 113870 unique_id port 113870 remote_ip 10.8.1.46 113872 username zare 113872 kill_reason Maximum check online fails reached 113872 mac 113872 bytes_out 0 113872 bytes_in 0 113872 station_ip 94.183.214.14 113872 port 47 113872 unique_id port 113873 username sedighe 113873 mac 113873 bytes_out 151659 113873 bytes_in 850229 113873 station_ip 83.123.32.110 113873 port 96 113873 unique_id port 113873 remote_ip 10.8.0.146 113876 username alipour 113876 mac 113876 bytes_out 0 113876 bytes_in 0 113876 station_ip 113.203.15.247 113876 port 45 113820 kill_reason Another user logged on this global unique id 113820 mac 113820 bytes_out 0 113820 bytes_in 0 113820 station_ip 151.235.111.162 113820 port 101 113820 unique_id port 113820 remote_ip 10.8.0.138 113821 username mehdizare 113821 mac 113821 bytes_out 65847 113821 bytes_in 68831 113821 station_ip 5.119.132.42 113821 port 97 113821 unique_id port 113821 remote_ip 10.8.0.90 113824 username zare 113824 mac 113824 bytes_out 0 113824 bytes_in 0 113824 station_ip 94.183.214.14 113824 port 45 113824 unique_id port 113824 remote_ip 10.8.1.58 113826 username zare 113826 mac 113826 bytes_out 0 113826 bytes_in 0 113826 station_ip 94.183.214.14 113826 port 45 113826 unique_id port 113826 remote_ip 10.8.1.58 113830 username amir 113830 kill_reason Another user logged on this global unique id 113830 mac 113830 bytes_out 0 113830 bytes_in 0 113830 station_ip 46.225.210.2 113830 port 35 113830 unique_id port 113832 username alipour 113832 mac 113832 bytes_out 2691867 113832 bytes_in 34067425 113832 station_ip 113.203.15.247 113832 port 51 113832 unique_id port 113832 remote_ip 10.8.0.102 113834 username rostami 113834 kill_reason Another user logged on this global unique id 113834 mac 113834 bytes_out 0 113834 bytes_in 0 113834 station_ip 5.119.11.105 113834 port 43 113834 unique_id port 113836 username mehdizare 113836 mac 113836 bytes_out 0 113836 bytes_in 0 113836 station_ip 5.119.132.42 113836 port 102 113836 unique_id port 113836 remote_ip 10.8.0.90 113839 username mehdizare 113839 mac 113839 bytes_out 0 113839 bytes_in 0 113839 station_ip 5.119.132.42 113839 port 100 113839 unique_id port 113839 remote_ip 10.8.0.90 113842 username mehdizare 113842 mac 113842 bytes_out 0 113842 bytes_in 0 113842 station_ip 5.119.132.42 113842 port 100 113842 unique_id port 113842 remote_ip 10.8.0.90 113843 username mehdizare 113843 mac 113843 bytes_out 17385 113843 bytes_in 38224 113843 station_ip 5.119.132.42 113843 port 51 113843 unique_id port 113843 remote_ip 10.8.0.90 113852 username zare 113852 mac 113852 bytes_out 16560 113852 bytes_in 28118 113852 station_ip 94.183.214.14 113852 port 51 113852 unique_id port 113852 remote_ip 10.8.0.18 113855 username alipour 113855 mac 113855 bytes_out 50716 113855 bytes_in 105827 113855 station_ip 113.203.15.247 113855 port 47 113855 unique_id port 113855 remote_ip 10.8.1.50 113865 username zare 113865 mac 113865 bytes_out 0 113865 bytes_in 0 113865 station_ip 94.183.214.14 113865 port 51 113865 unique_id port 113865 remote_ip 10.8.0.18 113871 username rostami 113871 kill_reason Another user logged on this global unique id 113871 mac 113871 bytes_out 0 113871 bytes_in 0 113871 station_ip 5.119.11.105 113871 port 43 113871 unique_id port 113874 username morteza 113874 kill_reason Another user logged on this global unique id 113874 mac 113874 bytes_out 0 113874 bytes_in 0 113874 station_ip 113.203.101.185 113874 port 100 113874 unique_id port 113874 remote_ip 10.8.0.46 113878 username hashtadani3 113878 mac 113878 bytes_out 398530 113878 bytes_in 4866341 113878 station_ip 5.202.99.53 113878 port 96 113878 unique_id port 113878 remote_ip 10.8.0.154 113880 username zare 113880 mac 113880 bytes_out 0 113880 bytes_in 0 113880 station_ip 94.183.214.14 113880 port 104 113880 unique_id port 113880 remote_ip 10.8.0.18 113881 username mehdizare 113881 mac 113881 bytes_out 0 113881 bytes_in 0 113881 station_ip 5.119.132.42 113881 port 51 113881 unique_id port 113881 remote_ip 10.8.0.90 113823 remote_ip 10.8.0.134 113827 username forozande 113827 mac 113827 bytes_out 172625 113827 bytes_in 898113 113827 station_ip 37.129.230.69 113827 port 97 113827 unique_id port 113827 remote_ip 10.8.0.74 113828 username mohammadjavad 113828 mac 113828 bytes_out 101915 113828 bytes_in 424174 113828 station_ip 83.122.53.254 113828 port 100 113828 unique_id port 113828 remote_ip 10.8.0.142 113831 username malekpoir 113831 mac 113831 bytes_out 398352 113831 bytes_in 3329391 113831 station_ip 5.120.117.201 113831 port 96 113831 unique_id port 113831 remote_ip 10.8.0.58 113833 username zare 113833 mac 113833 bytes_out 100932 113833 bytes_in 615956 113833 station_ip 94.183.214.14 113833 port 45 113833 unique_id port 113833 remote_ip 10.8.1.58 113835 username mostafa_es78 113835 unique_id port 113835 terminate_cause User-Request 113835 bytes_out 2462751 113835 bytes_in 27983557 113835 station_ip 5.125.31.128 113835 port 15729293 113835 nas_port_type Virtual 113835 remote_ip 5.5.5.208 113838 username mehdizare 113838 mac 113838 bytes_out 17715 113838 bytes_in 42113 113838 station_ip 5.119.132.42 113838 port 51 113838 unique_id port 113838 remote_ip 10.8.0.90 113841 username mehdizare 113841 mac 113841 bytes_out 0 113841 bytes_in 0 113841 station_ip 5.119.132.42 113841 port 51 113841 unique_id port 113841 remote_ip 10.8.0.90 113846 username amir 113846 mac 113846 bytes_out 0 113846 bytes_in 0 113846 station_ip 46.225.210.2 113846 port 35 113846 unique_id port 113848 username amir 113848 mac 113848 bytes_out 0 113848 bytes_in 0 113848 station_ip 46.225.210.2 113848 port 35 113848 unique_id port 113848 remote_ip 10.8.1.22 113849 username zare 113849 mac 113849 bytes_out 0 113849 bytes_in 0 113849 station_ip 94.183.214.14 113849 port 45 113849 unique_id port 113849 remote_ip 10.8.1.58 113850 username ahmadi 113850 unique_id port 113850 terminate_cause User-Request 113850 bytes_out 48996 113850 bytes_in 523494 113850 station_ip 37.129.67.220 113850 port 15729294 113850 nas_port_type Virtual 113850 remote_ip 5.5.5.210 113851 username mehdizare 113851 mac 113851 bytes_out 0 113851 bytes_in 0 113851 station_ip 5.119.132.42 113851 port 47 113851 unique_id port 113851 remote_ip 10.8.1.42 113853 username alipour 113853 mac 113853 bytes_out 646133 113853 bytes_in 5941245 113853 station_ip 113.203.15.247 113853 port 96 113853 unique_id port 113853 remote_ip 10.8.0.102 113856 username alipour 113856 mac 113856 bytes_out 0 113856 bytes_in 0 113856 station_ip 113.203.15.247 113856 port 45 113856 unique_id port 113856 remote_ip 10.8.1.50 113861 username zare 113861 mac 113861 bytes_out 0 113861 bytes_in 0 113861 station_ip 94.183.214.14 113861 port 96 113861 unique_id port 113861 remote_ip 10.8.0.18 113862 username zare 113862 mac 113862 bytes_out 0 113862 bytes_in 0 113862 station_ip 94.183.214.14 113862 port 96 113862 unique_id port 113862 remote_ip 10.8.0.18 113863 username mehdizare 113863 mac 113863 bytes_out 10960 113863 bytes_in 17014 113863 station_ip 5.119.132.42 113863 port 51 113863 unique_id port 113863 remote_ip 10.8.0.90 113866 username zare 113866 mac 113866 bytes_out 0 113866 bytes_in 0 113866 station_ip 94.183.214.14 113866 port 51 113866 unique_id port 113866 remote_ip 10.8.0.18 113868 username zare 113868 mac 113868 bytes_out 0 113868 bytes_in 0 113868 station_ip 94.183.214.14 113868 port 47 113868 unique_id port 113868 remote_ip 10.8.1.58 113869 username mahdiyehalizadeh 113869 mac 113869 bytes_out 385583 113869 bytes_in 6491139 113869 station_ip 83.122.153.234 113869 port 96 113869 unique_id port 113869 remote_ip 10.8.0.82 113875 username zare 113875 mac 113875 bytes_out 0 113875 bytes_in 0 113875 station_ip 94.183.214.14 113875 port 102 113875 unique_id port 113875 remote_ip 10.8.0.18 113882 username hashtadani3 113882 mac 113882 bytes_out 130588 113882 bytes_in 70079 113882 station_ip 5.202.99.53 113882 port 96 113882 unique_id port 113882 remote_ip 10.8.0.154 113884 username mehdizare 113884 mac 113884 bytes_out 8464 113884 bytes_in 13913 113884 station_ip 5.119.132.42 113884 port 103 113884 unique_id port 113884 remote_ip 10.8.0.90 113889 username zare 113889 mac 113889 bytes_out 10763 113889 bytes_in 19505 113889 station_ip 94.183.214.14 113889 port 45 113889 unique_id port 113889 remote_ip 10.8.1.58 113892 username mohammadjavad 113892 mac 113892 bytes_out 488182 113892 bytes_in 2322254 113892 station_ip 37.129.209.240 113892 port 105 113892 unique_id port 113892 remote_ip 10.8.0.142 113894 username forozande 113894 mac 113894 bytes_out 0 113894 bytes_in 0 113894 station_ip 83.122.132.155 113894 port 101 113894 unique_id port 113894 remote_ip 10.8.0.74 113896 username zare 113896 mac 113896 bytes_out 0 113896 bytes_in 0 113896 station_ip 94.183.214.14 113896 port 45 113896 unique_id port 113896 remote_ip 10.8.1.58 113897 username hashtadani3 113897 mac 113897 bytes_out 11450 113897 bytes_in 11854 113897 station_ip 5.202.61.156 113897 port 96 113897 unique_id port 113897 remote_ip 10.8.0.154 113902 username alihosseini1 113902 mac 113902 bytes_out 49863 113902 bytes_in 57350 113902 station_ip 5.120.169.215 113902 port 101 113902 unique_id port 113902 remote_ip 10.8.0.166 113905 username avaanna 113905 mac 113905 bytes_out 128677 113905 bytes_in 108091 113905 station_ip 83.123.87.2 113905 port 102 113905 unique_id port 113905 remote_ip 10.8.0.98 113907 username alipour 113907 mac 113907 bytes_out 23163 113907 bytes_in 25137 113907 station_ip 113.203.15.247 113907 port 40 113907 unique_id port 113907 remote_ip 10.8.1.50 113911 username alipour 113911 mac 113911 bytes_out 0 113911 bytes_in 0 113911 station_ip 113.203.15.247 113911 port 40 113911 unique_id port 113911 remote_ip 10.8.1.50 113916 username rostami 113916 mac 113916 bytes_out 0 113916 bytes_in 0 113916 station_ip 5.119.11.105 113916 port 43 113916 unique_id port 113917 username zare 113917 mac 113917 bytes_out 0 113917 bytes_in 0 113917 station_ip 94.183.214.14 113917 port 45 113917 unique_id port 113917 remote_ip 10.8.1.58 113919 username mehdizare 113919 mac 113919 bytes_out 7365 113919 bytes_in 10157 113919 station_ip 5.119.132.42 113919 port 51 113919 unique_id port 113919 remote_ip 10.8.0.90 113921 username hashtadani3 113921 mac 113921 bytes_out 0 113921 bytes_in 0 113921 station_ip 83.122.156.33 113921 port 43 113921 unique_id port 113921 remote_ip 10.8.1.94 113925 username hashtadani3 113925 mac 113925 bytes_out 0 113925 bytes_in 0 113925 station_ip 83.122.156.33 113925 port 104 113925 unique_id port 113925 remote_ip 10.8.0.154 113929 username alihosseini1 113929 mac 113929 bytes_out 0 113929 bytes_in 0 113929 station_ip 5.120.169.215 113929 port 96 113929 unique_id port 113929 remote_ip 10.8.0.166 113931 username hashtadani3 113931 mac 113931 bytes_out 0 113931 bytes_in 0 113931 station_ip 83.122.156.33 113876 unique_id port 113876 remote_ip 10.8.1.50 113877 username sabaghnezhad 113877 mac 113877 bytes_out 919279 113877 bytes_in 6929660 113877 station_ip 83.122.65.155 113877 port 103 113877 unique_id port 113877 remote_ip 10.8.0.186 113879 username morteza 113879 kill_reason Another user logged on this global unique id 113879 mac 113879 bytes_out 0 113879 bytes_in 0 113879 station_ip 113.203.101.185 113879 port 100 113879 unique_id port 113883 username tahmasebi 113883 kill_reason Another user logged on this global unique id 113883 mac 113883 bytes_out 0 113883 bytes_in 0 113883 station_ip 5.119.63.197 113883 port 98 113883 unique_id port 113886 username morteza 113886 kill_reason Another user logged on this global unique id 113886 mac 113886 bytes_out 0 113886 bytes_in 0 113886 station_ip 113.203.101.185 113886 port 100 113886 unique_id port 113887 username hashtadani3 113887 mac 113887 bytes_out 0 113887 bytes_in 0 113887 station_ip 5.202.61.156 113887 port 48 113887 unique_id port 113887 remote_ip 10.8.1.94 113890 username hashtadani3 113890 mac 113890 bytes_out 319274 113890 bytes_in 2469246 113890 station_ip 5.202.61.156 113890 port 48 113890 unique_id port 113890 remote_ip 10.8.1.94 113893 username mehdizare 113893 mac 113893 bytes_out 24244 113893 bytes_in 36099 113893 station_ip 5.119.132.42 113893 port 51 113893 unique_id port 113893 remote_ip 10.8.0.90 113895 username amir 113895 kill_reason Another user logged on this global unique id 113895 mac 113895 bytes_out 0 113895 bytes_in 0 113895 station_ip 46.225.210.2 113895 port 35 113895 unique_id port 113895 remote_ip 10.8.1.22 113898 username alirezazadeh 113898 unique_id port 113898 terminate_cause User-Request 113898 bytes_out 18941131 113898 bytes_in 76075966 113898 station_ip 31.56.159.18 113898 port 15729287 113898 nas_port_type Virtual 113898 remote_ip 5.5.5.196 113899 username kordestani 113899 mac 113899 bytes_out 982927 113899 bytes_in 14491384 113899 station_ip 83.122.192.25 113899 port 103 113899 unique_id port 113899 remote_ip 10.8.0.134 113903 username hashtadani3 113903 mac 113903 bytes_out 2483483 113903 bytes_in 30289577 113903 station_ip 5.202.61.156 113903 port 96 113903 unique_id port 113903 remote_ip 10.8.0.154 113913 username hashtadani3 113913 mac 113913 bytes_out 0 113913 bytes_in 0 113913 station_ip 5.202.61.156 113913 port 103 113913 unique_id port 113913 remote_ip 10.8.0.154 113914 username ahmadi 113914 unique_id port 113914 terminate_cause User-Request 113914 bytes_out 369620 113914 bytes_in 2071618 113914 station_ip 37.129.67.220 113914 port 15729297 113914 nas_port_type Virtual 113914 remote_ip 5.5.5.232 113918 username hashtadani3 113918 mac 113918 bytes_out 0 113918 bytes_in 0 113918 station_ip 5.202.61.156 113918 port 103 113918 unique_id port 113918 remote_ip 10.8.0.154 113920 username rostami 113920 mac 113920 bytes_out 0 113920 bytes_in 0 113920 station_ip 5.119.11.105 113920 port 43 113920 unique_id port 113920 remote_ip 10.8.1.142 113923 username hashtadani3 113923 mac 113923 bytes_out 0 113923 bytes_in 0 113923 station_ip 83.122.156.33 113923 port 51 113923 unique_id port 113923 remote_ip 10.8.0.154 113927 username hashtadani3 113927 mac 113927 bytes_out 0 113927 bytes_in 0 113927 station_ip 83.122.156.33 113927 port 104 113927 unique_id port 113927 remote_ip 10.8.0.154 113930 username forozande 113930 mac 113930 bytes_out 195953 113930 bytes_in 2409609 113930 station_ip 37.129.3.120 113930 port 51 113930 unique_id port 113930 remote_ip 10.8.0.74 113933 username avaanna 113885 username hashtadani3 113885 mac 113885 bytes_out 0 113885 bytes_in 0 113885 station_ip 5.202.99.53 113885 port 51 113885 unique_id port 113885 remote_ip 10.8.0.154 113888 username mirzaei 113888 kill_reason Another user logged on this global unique id 113888 mac 113888 bytes_out 0 113888 bytes_in 0 113888 station_ip 5.119.142.244 113888 port 68 113888 unique_id port 113888 remote_ip 10.8.0.66 113891 username morteza 113891 kill_reason Another user logged on this global unique id 113891 mac 113891 bytes_out 0 113891 bytes_in 0 113891 station_ip 113.203.101.185 113891 port 100 113891 unique_id port 113900 username alipour 113900 mac 113900 bytes_out 0 113900 bytes_in 0 113900 station_ip 113.203.15.247 113900 port 40 113900 unique_id port 113900 remote_ip 10.8.1.50 113901 username mahdiyehalizadeh 113901 mac 113901 bytes_out 21072 113901 bytes_in 12591 113901 station_ip 83.123.60.123 113901 port 104 113901 unique_id port 113901 remote_ip 10.8.0.82 113904 username alihosseini1 113904 mac 113904 bytes_out 0 113904 bytes_in 0 113904 station_ip 5.120.169.215 113904 port 48 113904 unique_id port 113904 remote_ip 10.8.1.106 113906 username avaanna 113906 mac 113906 bytes_out 0 113906 bytes_in 0 113906 station_ip 83.123.87.2 113906 port 96 113906 unique_id port 113906 remote_ip 10.8.0.98 113908 username mahdiyehalizadeh 113908 mac 113908 bytes_out 293368 113908 bytes_in 2515215 113908 station_ip 83.123.60.123 113908 port 101 113908 unique_id port 113908 remote_ip 10.8.0.82 113909 username morteza 113909 mac 113909 bytes_out 0 113909 bytes_in 0 113909 station_ip 113.203.101.185 113909 port 100 113909 unique_id port 113910 username hashtadani3 113910 kill_reason Maximum check online fails reached 113910 mac 113910 bytes_out 0 113910 bytes_in 0 113910 station_ip 5.202.61.156 113910 port 102 113910 unique_id port 113912 username morteza 113912 mac 113912 bytes_out 25340 113912 bytes_in 321814 113912 station_ip 113.203.101.185 113912 port 103 113912 unique_id port 113912 remote_ip 10.8.0.46 113915 username mehdizare 113915 mac 113915 bytes_out 145788 113915 bytes_in 63473 113915 station_ip 5.119.132.42 113915 port 51 113915 unique_id port 113915 remote_ip 10.8.0.90 113922 username hashtadani3 113922 mac 113922 bytes_out 0 113922 bytes_in 0 113922 station_ip 83.122.156.33 113922 port 51 113922 unique_id port 113922 remote_ip 10.8.0.154 113924 username aminvpn 113924 unique_id port 113924 terminate_cause Lost-Carrier 113924 bytes_out 52088 113924 bytes_in 184499 113924 station_ip 5.120.60.171 113924 port 15729298 113924 nas_port_type Virtual 113924 remote_ip 5.5.5.255 113926 username hashtadani3 113926 mac 113926 bytes_out 0 113926 bytes_in 0 113926 station_ip 83.122.156.33 113926 port 104 113926 unique_id port 113926 remote_ip 10.8.0.154 113928 username rostami 113928 mac 113928 bytes_out 7600 113928 bytes_in 15448 113928 station_ip 5.119.11.105 113928 port 43 113928 unique_id port 113928 remote_ip 10.8.1.142 113932 username mehdizare 113932 mac 113932 bytes_out 9133 113932 bytes_in 12065 113932 station_ip 5.119.132.42 113932 port 103 113932 unique_id port 113932 remote_ip 10.8.0.90 113935 username alipour 113935 mac 113935 bytes_out 0 113935 bytes_in 0 113935 station_ip 113.203.15.247 113935 port 40 113935 unique_id port 113935 remote_ip 10.8.1.50 113936 username zare 113936 mac 113936 bytes_out 0 113936 bytes_in 0 113936 station_ip 94.183.214.14 113936 port 100 113936 unique_id port 113936 remote_ip 10.8.0.18 113931 port 105 113931 unique_id port 113931 remote_ip 10.8.0.154 113934 username rostami 113934 mac 113934 bytes_out 0 113934 bytes_in 0 113934 station_ip 5.119.11.105 113934 port 43 113934 unique_id port 113934 remote_ip 10.8.1.142 113937 username avaanna 113937 mac 113937 bytes_out 171817 113937 bytes_in 2331345 113937 station_ip 83.123.87.2 113937 port 96 113937 unique_id port 113937 remote_ip 10.8.0.98 113939 username hashtadani3 113939 mac 113939 bytes_out 0 113939 bytes_in 0 113939 station_ip 83.122.156.33 113939 port 104 113939 unique_id port 113939 remote_ip 10.8.0.154 113943 username zare 113943 mac 113943 bytes_out 0 113943 bytes_in 0 113943 station_ip 94.183.214.14 113943 port 51 113943 unique_id port 113943 remote_ip 10.8.0.18 113945 username zare 113945 mac 113945 bytes_out 0 113945 bytes_in 0 113945 station_ip 94.183.214.14 113945 port 51 113945 unique_id port 113945 remote_ip 10.8.0.18 113949 username hashtadani3 113949 mac 113949 bytes_out 2058 113949 bytes_in 4335 113949 station_ip 83.122.156.33 113949 port 51 113949 unique_id port 113949 remote_ip 10.8.0.154 113951 username mohammadmahdi 113951 mac 113951 bytes_out 1563816 113951 bytes_in 18679332 113951 station_ip 5.120.147.236 113951 port 101 113951 unique_id port 113951 remote_ip 10.8.0.54 113953 username amin.saeedi 113953 unique_id port 113953 terminate_cause Lost-Carrier 113953 bytes_out 6073117 113953 bytes_in 222394418 113953 station_ip 151.238.243.25 113953 port 15729296 113953 nas_port_type Virtual 113953 remote_ip 5.5.5.215 113956 username amir 113956 mac 113956 bytes_out 0 113956 bytes_in 0 113956 station_ip 46.225.210.2 113956 port 35 113956 unique_id port 113965 username alipour 113965 mac 113965 bytes_out 0 113965 bytes_in 0 113965 station_ip 113.203.15.247 113965 port 40 113965 unique_id port 113965 remote_ip 10.8.1.50 113968 username sabaghnezhad 113968 mac 113968 bytes_out 175954 113968 bytes_in 663027 113968 station_ip 83.122.65.155 113968 port 106 113968 unique_id port 113968 remote_ip 10.8.0.186 113971 username zare 113971 mac 113971 bytes_out 0 113971 bytes_in 0 113971 station_ip 94.183.214.14 113971 port 101 113971 unique_id port 113971 remote_ip 10.8.0.18 113972 username hashtadani3 113972 mac 113972 bytes_out 0 113972 bytes_in 0 113972 station_ip 83.122.156.33 113972 port 101 113972 unique_id port 113972 remote_ip 10.8.0.154 113977 username zare 113977 mac 113977 bytes_out 0 113977 bytes_in 0 113977 station_ip 94.183.214.14 113977 port 101 113977 unique_id port 113977 remote_ip 10.8.0.18 113980 username zare 113980 mac 113980 bytes_out 0 113980 bytes_in 0 113980 station_ip 94.183.214.14 113980 port 105 113980 unique_id port 113980 remote_ip 10.8.0.18 113984 username zare 113984 mac 113984 bytes_out 7075 113984 bytes_in 9657 113984 station_ip 94.183.214.14 113984 port 48 113984 unique_id port 113984 remote_ip 10.8.1.58 113987 username zare 113987 mac 113987 bytes_out 0 113987 bytes_in 0 113987 station_ip 94.183.214.14 113987 port 45 113987 unique_id port 113987 remote_ip 10.8.1.58 113992 username tahmasebi 113992 kill_reason Another user logged on this global unique id 113992 mac 113992 bytes_out 0 113992 bytes_in 0 113992 station_ip 5.119.63.197 113992 port 98 113992 unique_id port 113994 username zare 113994 mac 113994 bytes_out 0 113994 bytes_in 0 113994 station_ip 94.183.214.14 113994 port 48 113994 unique_id port 113994 remote_ip 10.8.1.58 113933 mac 113933 bytes_out 32956 113933 bytes_in 70053 113933 station_ip 83.123.87.2 113933 port 100 113933 unique_id port 113933 remote_ip 10.8.0.98 113940 username zare 113940 mac 113940 bytes_out 0 113940 bytes_in 0 113940 station_ip 94.183.214.14 113940 port 51 113940 unique_id port 113940 remote_ip 10.8.0.18 113944 username rostami 113944 mac 113944 bytes_out 23126 113944 bytes_in 22456 113944 station_ip 5.119.11.105 113944 port 100 113944 unique_id port 113944 remote_ip 10.8.0.194 113950 username zare 113950 mac 113950 bytes_out 0 113950 bytes_in 0 113950 station_ip 94.183.214.14 113950 port 104 113950 unique_id port 113950 remote_ip 10.8.0.18 113952 username zare 113952 mac 113952 bytes_out 0 113952 bytes_in 0 113952 station_ip 94.183.214.14 113952 port 51 113952 unique_id port 113952 remote_ip 10.8.0.18 113955 username mehdizare 113955 mac 113955 bytes_out 15871 113955 bytes_in 21415 113955 station_ip 5.119.132.42 113955 port 96 113955 unique_id port 113955 remote_ip 10.8.0.90 113958 username hashtadani3 113958 mac 113958 bytes_out 0 113958 bytes_in 0 113958 station_ip 83.122.156.33 113958 port 101 113958 unique_id port 113958 remote_ip 10.8.0.154 113960 username amir 113960 mac 113960 bytes_out 0 113960 bytes_in 0 113960 station_ip 46.225.210.2 113960 port 35 113960 unique_id port 113960 remote_ip 10.8.1.22 113962 username hashtadani3 113962 mac 113962 bytes_out 0 113962 bytes_in 0 113962 station_ip 83.122.156.33 113962 port 35 113962 unique_id port 113962 remote_ip 10.8.1.94 113963 username hashtadani3 113963 mac 113963 bytes_out 0 113963 bytes_in 0 113963 station_ip 83.122.156.33 113963 port 105 113963 unique_id port 113963 remote_ip 10.8.0.154 113966 username amir 113966 mac 113966 bytes_out 0 113966 bytes_in 0 113966 station_ip 46.225.210.2 113966 port 43 113966 unique_id port 113966 remote_ip 10.8.1.22 113969 username rajaei 113969 mac 113969 bytes_out 2472370 113969 bytes_in 30622644 113969 station_ip 89.34.141.94 113969 port 104 113969 unique_id port 113969 remote_ip 10.8.0.34 113970 username zare 113970 mac 113970 bytes_out 0 113970 bytes_in 0 113970 station_ip 94.183.214.14 113970 port 101 113970 unique_id port 113970 remote_ip 10.8.0.18 113973 username alipour 113973 mac 113973 bytes_out 23517 113973 bytes_in 26317 113973 station_ip 113.203.15.247 113973 port 35 113973 unique_id port 113973 remote_ip 10.8.1.50 113975 username mehdizare 113975 mac 113975 bytes_out 14861 113975 bytes_in 17484 113975 station_ip 5.119.132.42 113975 port 105 113975 unique_id port 113975 remote_ip 10.8.0.90 113976 username zare 113976 kill_reason Maximum check online fails reached 113976 mac 113976 bytes_out 0 113976 bytes_in 0 113976 station_ip 94.183.214.14 113976 port 104 113976 unique_id port 113978 username hamid.e 113978 unique_id port 113978 terminate_cause User-Request 113978 bytes_out 1337942 113978 bytes_in 20966601 113978 station_ip 188.245.88.157 113978 port 15729295 113978 nas_port_type Virtual 113978 remote_ip 5.5.5.212 113979 username zare 113979 mac 113979 bytes_out 0 113979 bytes_in 0 113979 station_ip 94.183.214.14 113979 port 105 113979 unique_id port 113979 remote_ip 10.8.0.18 113981 username amir 113981 mac 113981 bytes_out 0 113981 bytes_in 0 113981 station_ip 46.225.210.2 113981 port 40 113981 unique_id port 113981 remote_ip 10.8.1.22 113985 username mehdizare 113985 mac 113985 bytes_out 0 113985 bytes_in 0 113938 username alihosseini1 113938 mac 113938 bytes_out 13668 113938 bytes_in 20776 113938 station_ip 5.120.169.215 113938 port 51 113938 unique_id port 113938 remote_ip 10.8.0.166 113941 username alihosseini1 113941 mac 113941 bytes_out 0 113941 bytes_in 0 113941 station_ip 5.120.169.215 113941 port 43 113941 unique_id port 113941 remote_ip 10.8.1.106 113942 username zare 113942 mac 113942 bytes_out 0 113942 bytes_in 0 113942 station_ip 94.183.214.14 113942 port 51 113942 unique_id port 113942 remote_ip 10.8.0.18 113946 username forozande 113946 mac 113946 bytes_out 863970 113946 bytes_in 13887731 113946 station_ip 83.123.58.228 113946 port 103 113946 unique_id port 113946 remote_ip 10.8.0.74 113947 username zare 113947 mac 113947 bytes_out 0 113947 bytes_in 0 113947 station_ip 94.183.214.14 113947 port 51 113947 unique_id port 113947 remote_ip 10.8.0.18 113948 username rostami 113948 mac 113948 bytes_out 9309 113948 bytes_in 14951 113948 station_ip 5.120.39.178 113948 port 104 113948 unique_id port 113948 remote_ip 10.8.0.194 113954 username zare 113954 mac 113954 bytes_out 0 113954 bytes_in 0 113954 station_ip 94.183.214.14 113954 port 51 113954 unique_id port 113954 remote_ip 10.8.0.18 113957 username zare 113957 mac 113957 bytes_out 0 113957 bytes_in 0 113957 station_ip 94.183.214.14 113957 port 51 113957 unique_id port 113957 remote_ip 10.8.0.18 113959 username zare 113959 mac 113959 bytes_out 0 113959 bytes_in 0 113959 station_ip 94.183.214.14 113959 port 51 113959 unique_id port 113959 remote_ip 10.8.0.18 113961 username hashtadani3 113961 mac 113961 bytes_out 0 113961 bytes_in 0 113961 station_ip 83.122.156.33 113961 port 51 113961 unique_id port 113961 remote_ip 10.8.0.154 113964 username zare 113964 mac 113964 bytes_out 0 113964 bytes_in 0 113964 station_ip 94.183.214.14 113964 port 101 113964 unique_id port 113964 remote_ip 10.8.0.18 113967 username zare 113967 mac 113967 bytes_out 0 113967 bytes_in 0 113967 station_ip 94.183.214.14 113967 port 101 113967 unique_id port 113967 remote_ip 10.8.0.18 113974 username amir 113974 mac 113974 bytes_out 0 113974 bytes_in 0 113974 station_ip 46.225.210.2 113974 port 40 113974 unique_id port 113974 remote_ip 10.8.1.22 113982 username hashtadani3 113982 mac 113982 bytes_out 0 113982 bytes_in 0 113982 station_ip 83.122.156.33 113982 port 101 113982 unique_id port 113982 remote_ip 10.8.0.154 113983 username zare 113983 mac 113983 bytes_out 1636 113983 bytes_in 4910 113983 station_ip 94.183.214.14 113983 port 105 113983 unique_id port 113983 remote_ip 10.8.0.18 113989 username hashtadani3 113989 mac 113989 bytes_out 0 113989 bytes_in 0 113989 station_ip 83.122.156.33 113989 port 101 113989 unique_id port 113989 remote_ip 10.8.0.154 113990 username hashtadani3 113990 mac 113990 bytes_out 0 113990 bytes_in 0 113990 station_ip 83.122.1.75 113990 port 101 113990 unique_id port 113990 remote_ip 10.8.0.154 113993 username hashtadani3 113993 mac 113993 bytes_out 0 113993 bytes_in 0 113993 station_ip 83.122.1.75 113993 port 101 113993 unique_id port 113993 remote_ip 10.8.0.154 113996 username mehdizare 113996 mac 113996 bytes_out 0 113996 bytes_in 0 113996 station_ip 5.119.132.42 113996 port 45 113996 unique_id port 113996 remote_ip 10.8.1.42 113998 username musa 113998 mac 113998 bytes_out 464902 113998 bytes_in 5494316 113985 station_ip 5.119.132.42 113985 port 45 113985 unique_id port 113985 remote_ip 10.8.1.42 113986 username rajaei 113986 mac 113986 bytes_out 1796811 113986 bytes_in 20734169 113986 station_ip 89.34.141.94 113986 port 106 113986 unique_id port 113986 remote_ip 10.8.0.34 113988 username alihosseini1 113988 mac 113988 bytes_out 47131 113988 bytes_in 62172 113988 station_ip 5.120.160.6 113988 port 103 113988 unique_id port 113988 remote_ip 10.8.0.166 113991 username mohammadmahdi 113991 kill_reason Another user logged on this global unique id 113991 mac 113991 bytes_out 0 113991 bytes_in 0 113991 station_ip 5.120.147.236 113991 port 96 113991 unique_id port 113991 remote_ip 10.8.0.54 113995 username sabaghnezhad 113995 mac 113995 bytes_out 0 113995 bytes_in 0 113995 station_ip 83.122.65.155 113995 port 43 113995 unique_id port 113995 remote_ip 10.8.1.130 113999 username mohammadmahdi 113999 mac 113999 bytes_out 0 113999 bytes_in 0 113999 station_ip 5.120.147.236 113999 port 96 113999 unique_id port 114000 username zare 114000 mac 114000 bytes_out 0 114000 bytes_in 0 114000 station_ip 94.183.214.14 114000 port 43 114000 unique_id port 114000 remote_ip 10.8.1.58 114002 username hashtadani3 114002 mac 114002 bytes_out 0 114002 bytes_in 0 114002 station_ip 83.122.1.75 114002 port 96 114002 unique_id port 114002 remote_ip 10.8.0.154 114003 username musa 114003 mac 114003 bytes_out 13986 114003 bytes_in 17157 114003 station_ip 5.250.74.77 114003 port 101 114003 unique_id port 114003 remote_ip 10.8.0.6 114006 username zare 114006 mac 114006 bytes_out 0 114006 bytes_in 0 114006 station_ip 94.183.214.14 114006 port 43 114006 unique_id port 114006 remote_ip 10.8.1.58 114010 username hashtadani3 114010 mac 114010 bytes_out 9886 114010 bytes_in 17167 114010 station_ip 83.122.1.75 114010 port 101 114010 unique_id port 114010 remote_ip 10.8.0.154 114012 username hashtadani3 114012 mac 114012 bytes_out 0 114012 bytes_in 0 114012 station_ip 83.122.1.75 114012 port 101 114012 unique_id port 114012 remote_ip 10.8.0.154 114015 username zare 114015 mac 114015 bytes_out 0 114015 bytes_in 0 114015 station_ip 94.183.214.14 114015 port 35 114015 unique_id port 114015 remote_ip 10.8.1.58 114016 username alihosseini1 114016 mac 114016 bytes_out 20064 114016 bytes_in 30304 114016 station_ip 5.120.160.6 114016 port 106 114016 unique_id port 114016 remote_ip 10.8.0.166 114018 username hashtadani3 114018 mac 114018 bytes_out 0 114018 bytes_in 0 114018 station_ip 83.122.1.75 114018 port 106 114018 unique_id port 114018 remote_ip 10.8.0.154 114020 username hashtadani3 114020 mac 114020 bytes_out 0 114020 bytes_in 0 114020 station_ip 83.122.1.75 114020 port 96 114020 unique_id port 114020 remote_ip 10.8.0.154 114021 username zare 114021 mac 114021 bytes_out 0 114021 bytes_in 0 114021 station_ip 94.183.214.14 114021 port 35 114021 unique_id port 114021 remote_ip 10.8.1.58 114024 username zare 114024 mac 114024 bytes_out 0 114024 bytes_in 0 114024 station_ip 94.183.214.14 114024 port 106 114024 unique_id port 114024 remote_ip 10.8.0.18 114025 username sabaghnezhad 114025 mac 114025 bytes_out 20733 114025 bytes_in 24676 114025 station_ip 83.122.65.155 114025 port 103 114025 unique_id port 114025 remote_ip 10.8.0.186 114027 username mehdizare 114027 mac 114027 bytes_out 156135 114027 bytes_in 68315 114027 station_ip 5.119.132.42 114027 port 51 114027 unique_id port 113997 username hashtadani3 113997 mac 113997 bytes_out 0 113997 bytes_in 0 113997 station_ip 83.122.1.75 113997 port 101 113997 unique_id port 113997 remote_ip 10.8.0.154 114007 username hashtadani3 114007 mac 114007 bytes_out 87564 114007 bytes_in 194168 114007 station_ip 83.122.1.75 114007 port 96 114007 unique_id port 114007 remote_ip 10.8.0.154 114011 username alipour 114011 mac 114011 bytes_out 0 114011 bytes_in 0 114011 station_ip 113.203.15.247 114011 port 35 114011 unique_id port 114011 remote_ip 10.8.1.50 114013 username mehdizare 114013 mac 114013 bytes_out 14290 114013 bytes_in 27531 114013 station_ip 5.119.132.42 114013 port 51 114013 unique_id port 114013 remote_ip 10.8.0.90 114017 username forozande 114017 mac 114017 bytes_out 250622 114017 bytes_in 1229716 114017 station_ip 113.203.34.24 114017 port 96 114017 unique_id port 114017 remote_ip 10.8.0.74 114022 username hashtadani3 114022 mac 114022 bytes_out 0 114022 bytes_in 0 114022 station_ip 83.122.1.75 114022 port 96 114022 unique_id port 114022 remote_ip 10.8.0.154 114023 username hashtadani3 114023 mac 114023 bytes_out 0 114023 bytes_in 0 114023 station_ip 83.122.1.75 114023 port 96 114023 unique_id port 114023 remote_ip 10.8.0.154 114026 username sabaghnezhad 114026 mac 114026 bytes_out 0 114026 bytes_in 0 114026 station_ip 83.122.65.155 114026 port 96 114026 unique_id port 114026 remote_ip 10.8.0.186 114030 username amin.saeedi 114030 unique_id port 114030 terminate_cause Lost-Carrier 114030 bytes_out 826100 114030 bytes_in 30727623 114030 station_ip 151.238.243.25 114030 port 15729301 114030 nas_port_type Virtual 114030 remote_ip 5.5.5.182 114035 username zare 114035 mac 114035 bytes_out 0 114035 bytes_in 0 114035 station_ip 94.183.214.14 114035 port 97 114035 unique_id port 114035 remote_ip 10.8.0.18 114038 username zare 114038 mac 114038 bytes_out 0 114038 bytes_in 0 114038 station_ip 94.183.214.14 114038 port 97 114038 unique_id port 114038 remote_ip 10.8.0.18 114042 username avaanna 114042 mac 114042 bytes_out 1634985 114042 bytes_in 9843947 114042 station_ip 83.123.87.2 114042 port 100 114042 unique_id port 114042 remote_ip 10.8.0.98 114043 username zare 114043 kill_reason Maximum check online fails reached 114043 mac 114043 bytes_out 0 114043 bytes_in 0 114043 station_ip 94.183.214.14 114043 port 97 114043 unique_id port 114045 username amir 114045 kill_reason Another user logged on this global unique id 114045 mac 114045 bytes_out 0 114045 bytes_in 0 114045 station_ip 46.225.210.2 114045 port 40 114045 unique_id port 114045 remote_ip 10.8.1.22 114046 username zare 114046 mac 114046 bytes_out 0 114046 bytes_in 0 114046 station_ip 94.183.214.14 114046 port 100 114046 unique_id port 114046 remote_ip 10.8.0.18 114048 username mohammadjavad 114048 mac 114048 bytes_out 148429 114048 bytes_in 781013 114048 station_ip 113.203.84.105 114048 port 110 114048 unique_id port 114048 remote_ip 10.8.0.142 114054 username zare 114054 mac 114054 bytes_out 0 114054 bytes_in 0 114054 station_ip 94.183.214.14 114054 port 109 114054 unique_id port 114054 remote_ip 10.8.0.18 114055 username malekpoir 114055 mac 114055 bytes_out 0 114055 bytes_in 0 114055 station_ip 5.120.117.201 114055 port 108 114055 unique_id port 114055 remote_ip 10.8.0.58 114056 username mohammadmahdi 114056 kill_reason Another user logged on this global unique id 114056 mac 114056 bytes_out 0 114056 bytes_in 0 114056 station_ip 5.120.147.236 114056 port 105 113998 station_ip 5.250.74.77 113998 port 51 113998 unique_id port 113998 remote_ip 10.8.0.6 114001 username hashtadani3 114001 mac 114001 bytes_out 0 114001 bytes_in 0 114001 station_ip 83.122.1.75 114001 port 96 114001 unique_id port 114001 remote_ip 10.8.0.154 114004 username alihosseini1 114004 mac 114004 bytes_out 0 114004 bytes_in 0 114004 station_ip 5.120.160.6 114004 port 96 114004 unique_id port 114004 remote_ip 10.8.0.166 114005 username mehdizare 114005 mac 114005 bytes_out 35658 114005 bytes_in 39903 114005 station_ip 5.119.132.42 114005 port 51 114005 unique_id port 114005 remote_ip 10.8.0.90 114008 username zare 114008 mac 114008 bytes_out 0 114008 bytes_in 0 114008 station_ip 94.183.214.14 114008 port 43 114008 unique_id port 114008 remote_ip 10.8.1.58 114009 username morteza 114009 mac 114009 bytes_out 247021 114009 bytes_in 4040255 114009 station_ip 113.203.55.245 114009 port 105 114009 unique_id port 114009 remote_ip 10.8.0.46 114014 username zare 114014 mac 114014 bytes_out 0 114014 bytes_in 0 114014 station_ip 94.183.214.14 114014 port 105 114014 unique_id port 114014 remote_ip 10.8.0.18 114019 username hashtadani3 114019 mac 114019 bytes_out 0 114019 bytes_in 0 114019 station_ip 83.122.1.75 114019 port 96 114019 unique_id port 114019 remote_ip 10.8.0.154 114028 username sabaghnezhad 114028 mac 114028 bytes_out 0 114028 bytes_in 0 114028 station_ip 83.122.65.155 114028 port 107 114028 unique_id port 114028 remote_ip 10.8.0.186 114029 username zare 114029 mac 114029 bytes_out 33790 114029 bytes_in 147733 114029 station_ip 94.183.214.14 114029 port 103 114029 unique_id port 114029 remote_ip 10.8.0.18 114033 username alireza 114033 unique_id port 114033 terminate_cause Lost-Carrier 114033 bytes_out 1457937 114033 bytes_in 26555793 114033 station_ip 5.120.60.241 114033 port 15729300 114033 nas_port_type Virtual 114033 remote_ip 5.5.5.180 114036 username zare 114036 mac 114036 bytes_out 0 114036 bytes_in 0 114036 station_ip 94.183.214.14 114036 port 97 114036 unique_id port 114036 remote_ip 10.8.0.18 114039 username zare 114039 mac 114039 bytes_out 0 114039 bytes_in 0 114039 station_ip 94.183.214.14 114039 port 97 114039 unique_id port 114039 remote_ip 10.8.0.18 114050 username zare 114050 mac 114050 bytes_out 0 114050 bytes_in 0 114050 station_ip 94.183.214.14 114050 port 100 114050 unique_id port 114050 remote_ip 10.8.0.18 114053 username mehdizare 114053 mac 114053 bytes_out 154767 114053 bytes_in 44419 114053 station_ip 5.119.132.42 114053 port 51 114053 unique_id port 114053 remote_ip 10.8.0.90 114057 username zare 114057 mac 114057 bytes_out 0 114057 bytes_in 0 114057 station_ip 94.183.214.14 114057 port 51 114057 unique_id port 114057 remote_ip 10.8.0.18 114059 username zare 114059 mac 114059 bytes_out 0 114059 bytes_in 0 114059 station_ip 94.183.214.14 114059 port 51 114059 unique_id port 114059 remote_ip 10.8.0.18 114061 username mehdizare 114061 mac 114061 bytes_out 0 114061 bytes_in 0 114061 station_ip 5.119.132.42 114061 port 110 114061 unique_id port 114061 remote_ip 10.8.0.90 114068 username sabaghnezhad 114068 kill_reason Maximum check online fails reached 114068 mac 114068 bytes_out 0 114068 bytes_in 0 114068 station_ip 83.122.65.155 114068 port 107 114068 unique_id port 114069 username amir 114069 mac 114069 bytes_out 0 114069 bytes_in 0 114069 station_ip 46.225.210.2 114069 port 40 114069 unique_id port 114027 remote_ip 10.8.0.90 114031 username zare 114031 mac 114031 bytes_out 0 114031 bytes_in 0 114031 station_ip 94.183.214.14 114031 port 108 114031 unique_id port 114031 remote_ip 10.8.0.18 114032 username malekpoir 114032 mac 114032 bytes_out 2960446 114032 bytes_in 43004096 114032 station_ip 5.120.117.201 114032 port 97 114032 unique_id port 114032 remote_ip 10.8.0.58 114034 username mehdizare 114034 mac 114034 bytes_out 34827 114034 bytes_in 44116 114034 station_ip 5.119.132.42 114034 port 51 114034 unique_id port 114034 remote_ip 10.8.0.90 114037 username ahmadipour 114037 unique_id port 114037 terminate_cause Lost-Carrier 114037 bytes_out 126656 114037 bytes_in 2422353 114037 station_ip 83.122.187.168 114037 port 15729302 114037 nas_port_type Virtual 114037 remote_ip 5.5.5.186 114040 username mohammadmahdi 114040 kill_reason Another user logged on this global unique id 114040 mac 114040 bytes_out 0 114040 bytes_in 0 114040 station_ip 5.120.147.236 114040 port 105 114040 unique_id port 114040 remote_ip 10.8.0.54 114041 username zare 114041 mac 114041 bytes_out 0 114041 bytes_in 0 114041 station_ip 94.183.214.14 114041 port 97 114041 unique_id port 114041 remote_ip 10.8.0.18 114044 username zare 114044 mac 114044 bytes_out 0 114044 bytes_in 0 114044 station_ip 94.183.214.14 114044 port 100 114044 unique_id port 114044 remote_ip 10.8.0.18 114047 username mohammadmahdi 114047 kill_reason Another user logged on this global unique id 114047 mac 114047 bytes_out 0 114047 bytes_in 0 114047 station_ip 5.120.147.236 114047 port 105 114047 unique_id port 114049 username avaanna 114049 mac 114049 bytes_out 27860 114049 bytes_in 31463 114049 station_ip 83.123.87.2 114049 port 109 114049 unique_id port 114049 remote_ip 10.8.0.98 114051 username zare 114051 mac 114051 bytes_out 0 114051 bytes_in 0 114051 station_ip 94.183.214.14 114051 port 109 114051 unique_id port 114051 remote_ip 10.8.0.18 114052 username zare 114052 mac 114052 bytes_out 0 114052 bytes_in 0 114052 station_ip 94.183.214.14 114052 port 109 114052 unique_id port 114052 remote_ip 10.8.0.18 114058 username zare 114058 mac 114058 bytes_out 0 114058 bytes_in 0 114058 station_ip 94.183.214.14 114058 port 51 114058 unique_id port 114058 remote_ip 10.8.0.18 114060 username avaanna 114060 mac 114060 bytes_out 0 114060 bytes_in 0 114060 station_ip 83.123.87.2 114060 port 100 114060 unique_id port 114060 remote_ip 10.8.0.98 114062 username rajaei 114062 mac 114062 bytes_out 2282374 114062 bytes_in 19157944 114062 station_ip 89.34.141.94 114062 port 103 114062 unique_id port 114062 remote_ip 10.8.0.34 114064 username hashtadani3 114064 mac 114064 bytes_out 0 114064 bytes_in 0 114064 station_ip 83.122.1.75 114064 port 107 114064 unique_id port 114064 remote_ip 10.8.0.154 114065 username zare 114065 mac 114065 bytes_out 0 114065 bytes_in 0 114065 station_ip 94.183.214.14 114065 port 103 114065 unique_id port 114065 remote_ip 10.8.0.18 114066 username sabaghnezhad 114066 mac 114066 bytes_out 0 114066 bytes_in 0 114066 station_ip 83.122.65.155 114066 port 96 114066 unique_id port 114066 remote_ip 10.8.0.186 114072 username amir 114072 mac 114072 bytes_out 0 114072 bytes_in 0 114072 station_ip 46.225.210.2 114072 port 40 114072 unique_id port 114072 remote_ip 10.8.1.22 114077 username hashtadani3 114077 mac 114077 bytes_out 0 114077 bytes_in 0 114077 station_ip 83.122.1.75 114077 port 100 114077 unique_id port 114056 unique_id port 114063 username zare 114063 mac 114063 bytes_out 0 114063 bytes_in 0 114063 station_ip 94.183.214.14 114063 port 100 114063 unique_id port 114063 remote_ip 10.8.0.18 114067 username zare 114067 mac 114067 bytes_out 0 114067 bytes_in 0 114067 station_ip 94.183.214.14 114067 port 103 114067 unique_id port 114067 remote_ip 10.8.0.18 114071 username amir 114071 kill_reason Maximum check online fails reached 114071 mac 114071 bytes_out 0 114071 bytes_in 0 114071 station_ip 46.225.210.2 114071 port 35 114071 unique_id port 114075 username hashtadani3 114075 mac 114075 bytes_out 0 114075 bytes_in 0 114075 station_ip 83.122.1.75 114075 port 100 114075 unique_id port 114075 remote_ip 10.8.0.154 114076 username amir 114076 mac 114076 bytes_out 0 114076 bytes_in 0 114076 station_ip 46.225.210.2 114076 port 105 114076 unique_id port 114076 remote_ip 10.8.0.50 114080 username malekpoir 114080 mac 114080 bytes_out 0 114080 bytes_in 0 114080 station_ip 5.120.117.201 114080 port 96 114080 unique_id port 114080 remote_ip 10.8.0.58 114083 username sedighe 114083 mac 114083 bytes_out 1592901 114083 bytes_in 23155334 114083 station_ip 37.129.250.146 114083 port 110 114083 unique_id port 114083 remote_ip 10.8.0.146 114087 username hashtadani3 114087 mac 114087 bytes_out 1778775 114087 bytes_in 15770651 114087 station_ip 83.122.1.75 114087 port 100 114087 unique_id port 114087 remote_ip 10.8.0.154 114091 username sedighe 114091 mac 114091 bytes_out 1292605 114091 bytes_in 28348617 114091 station_ip 37.129.250.146 114091 port 111 114091 unique_id port 114091 remote_ip 10.8.0.146 114108 username mahdiyehalizadeh 114108 mac 114108 bytes_out 0 114108 bytes_in 0 114108 station_ip 83.123.158.241 114108 port 106 114108 unique_id port 114108 remote_ip 10.8.0.82 114113 username hashtadani3 114113 mac 114113 bytes_out 0 114113 bytes_in 0 114113 station_ip 83.122.1.75 114113 port 96 114113 unique_id port 114113 remote_ip 10.8.0.154 114115 username malekpoir 114115 mac 114115 bytes_out 0 114115 bytes_in 0 114115 station_ip 5.120.117.201 114115 port 105 114115 unique_id port 114122 username amir 114122 mac 114122 bytes_out 68066 114122 bytes_in 313531 114122 station_ip 46.225.210.2 114122 port 105 114122 unique_id port 114122 remote_ip 10.8.0.50 114124 username mohammadmahdi 114124 mac 114124 bytes_out 0 114124 bytes_in 0 114124 station_ip 5.120.147.236 114124 port 100 114124 unique_id port 114125 username hashtadani3 114125 mac 114125 bytes_out 413504 114125 bytes_in 580241 114125 station_ip 83.122.1.75 114125 port 105 114125 unique_id port 114125 remote_ip 10.8.0.154 114127 username hashtadani3 114127 mac 114127 bytes_out 0 114127 bytes_in 0 114127 station_ip 83.122.1.75 114127 port 100 114127 unique_id port 114127 remote_ip 10.8.0.154 114129 username mehdizare 114129 mac 114129 bytes_out 36040 114129 bytes_in 49956 114129 station_ip 5.119.132.42 114129 port 106 114129 unique_id port 114129 remote_ip 10.8.0.90 114140 username tahmasebi 114140 kill_reason Another user logged on this global unique id 114140 mac 114140 bytes_out 0 114140 bytes_in 0 114140 station_ip 5.119.63.197 114140 port 98 114140 unique_id port 114143 username alipour 114143 mac 114143 bytes_out 0 114143 bytes_in 0 114143 station_ip 113.203.15.247 114143 port 101 114143 unique_id port 114143 remote_ip 10.8.0.102 114146 username mohammadmahdi 114146 mac 114146 bytes_out 0 114070 username malekpoir 114070 mac 114070 bytes_out 0 114070 bytes_in 0 114070 station_ip 5.120.117.201 114070 port 108 114070 unique_id port 114070 remote_ip 10.8.0.58 114073 username mohammadmahdi 114073 mac 114073 bytes_out 0 114073 bytes_in 0 114073 station_ip 5.120.147.236 114073 port 105 114073 unique_id port 114074 username mehdizare 114074 mac 114074 bytes_out 0 114074 bytes_in 0 114074 station_ip 5.119.132.42 114074 port 109 114074 unique_id port 114074 remote_ip 10.8.0.90 114079 username sabaghnezhad 114079 mac 114079 bytes_out 62602 114079 bytes_in 45727 114079 station_ip 83.122.65.155 114079 port 43 114079 unique_id port 114079 remote_ip 10.8.1.130 114081 username aminvpn 114081 unique_id port 114081 terminate_cause Lost-Carrier 114081 bytes_out 5297928 114081 bytes_in 81034931 114081 station_ip 5.119.178.248 114081 port 15729299 114081 nas_port_type Virtual 114081 remote_ip 5.5.5.179 114086 username kamali1 114086 mac 114086 bytes_out 0 114086 bytes_in 0 114086 station_ip 5.120.25.162 114086 port 106 114086 unique_id port 114086 remote_ip 10.8.0.70 114096 username malekpoir 114096 kill_reason Another user logged on this global unique id 114096 mac 114096 bytes_out 0 114096 bytes_in 0 114096 station_ip 5.120.117.201 114096 port 105 114096 unique_id port 114096 remote_ip 10.8.0.58 114097 username mehdizare 114097 mac 114097 bytes_out 0 114097 bytes_in 0 114097 station_ip 5.119.132.42 114097 port 108 114097 unique_id port 114097 remote_ip 10.8.0.90 114100 username mehdizare 114100 mac 114100 bytes_out 0 114100 bytes_in 0 114100 station_ip 5.119.132.42 114100 port 96 114100 unique_id port 114100 remote_ip 10.8.0.90 114105 username mehdizare 114105 mac 114105 bytes_out 21163 114105 bytes_in 33836 114105 station_ip 5.119.132.42 114105 port 43 114105 unique_id port 114105 remote_ip 10.8.1.42 114106 username ehsun 114106 kill_reason Another user logged on this global unique id 114106 mac 114106 bytes_out 0 114106 bytes_in 0 114106 station_ip 46.225.208.208 114106 port 96 114106 unique_id port 114106 remote_ip 10.8.0.162 114109 username amir 114109 mac 114109 bytes_out 0 114109 bytes_in 0 114109 station_ip 46.225.210.2 114109 port 96 114109 unique_id port 114109 remote_ip 10.8.0.50 114110 username malekpoir 114110 kill_reason Another user logged on this global unique id 114110 mac 114110 bytes_out 0 114110 bytes_in 0 114110 station_ip 5.120.117.201 114110 port 105 114110 unique_id port 114111 username mehdizare 114111 mac 114111 bytes_out 18950 114111 bytes_in 25440 114111 station_ip 5.119.132.42 114111 port 40 114111 unique_id port 114111 remote_ip 10.8.1.42 114118 username hashtadani3 114118 mac 114118 bytes_out 0 114118 bytes_in 0 114118 station_ip 83.122.1.75 114118 port 105 114118 unique_id port 114118 remote_ip 10.8.0.154 114123 username mehdizare 114123 kill_reason Maximum check online fails reached 114123 mac 114123 bytes_out 0 114123 bytes_in 0 114123 station_ip 5.119.132.42 114123 port 40 114123 unique_id port 114128 username afarin1 114128 mac 114128 bytes_out 1053258 114128 bytes_in 18442046 114128 station_ip 113.203.20.109 114128 port 105 114128 unique_id port 114128 remote_ip 10.8.0.118 114131 username forozande 114131 mac 114131 bytes_out 2297210 114131 bytes_in 13359993 114131 station_ip 37.129.43.181 114131 port 103 114131 unique_id port 114131 remote_ip 10.8.0.74 114137 username reza2742 114137 unique_id port 114137 terminate_cause User-Request 114137 bytes_out 0 114137 bytes_in 342 114137 station_ip 5.202.58.255 114077 remote_ip 10.8.0.154 114078 username hashtadani3 114078 mac 114078 bytes_out 0 114078 bytes_in 0 114078 station_ip 83.122.1.75 114078 port 100 114078 unique_id port 114078 remote_ip 10.8.0.154 114082 username malekpoir 114082 mac 114082 bytes_out 4727 114082 bytes_in 5352 114082 station_ip 5.120.117.201 114082 port 96 114082 unique_id port 114082 remote_ip 10.8.0.58 114084 username amir 114084 mac 114084 bytes_out 0 114084 bytes_in 0 114084 station_ip 46.225.210.2 114084 port 96 114084 unique_id port 114084 remote_ip 10.8.0.50 114085 username mohammadmahdi 114085 mac 114085 bytes_out 1138853 114085 bytes_in 12500429 114085 station_ip 5.120.147.236 114085 port 109 114085 unique_id port 114085 remote_ip 10.8.0.54 114088 username mohammadjavad 114088 mac 114088 bytes_out 1226893 114088 bytes_in 23983430 114088 station_ip 37.129.76.245 114088 port 103 114088 unique_id port 114088 remote_ip 10.8.0.142 114089 username hashtadani3 114089 mac 114089 bytes_out 0 114089 bytes_in 0 114089 station_ip 83.122.1.75 114089 port 96 114089 unique_id port 114089 remote_ip 10.8.0.154 114090 username ahmadi 114090 unique_id port 114090 terminate_cause User-Request 114090 bytes_out 231069 114090 bytes_in 4595497 114090 station_ip 37.129.67.220 114090 port 15729303 114090 nas_port_type Virtual 114090 remote_ip 5.5.5.188 114092 username hashtadani3 114092 mac 114092 bytes_out 0 114092 bytes_in 0 114092 station_ip 83.122.1.75 114092 port 96 114092 unique_id port 114092 remote_ip 10.8.0.154 114093 username hashtadani3 114093 mac 114093 bytes_out 0 114093 bytes_in 0 114093 station_ip 83.122.1.75 114093 port 96 114093 unique_id port 114093 remote_ip 10.8.0.154 114094 username amir 114094 mac 114094 bytes_out 0 114094 bytes_in 0 114094 station_ip 46.225.210.2 114094 port 96 114094 unique_id port 114094 remote_ip 10.8.0.50 114095 username houshang 114095 mac 114095 bytes_out 0 114095 bytes_in 0 114095 station_ip 5.120.190.181 114095 port 100 114095 unique_id port 114095 remote_ip 10.8.0.22 114098 username hashtadani3 114098 mac 114098 bytes_out 0 114098 bytes_in 0 114098 station_ip 83.122.1.75 114098 port 100 114098 unique_id port 114098 remote_ip 10.8.0.154 114099 username hashtadani3 114099 mac 114099 bytes_out 0 114099 bytes_in 0 114099 station_ip 83.122.1.75 114099 port 100 114099 unique_id port 114099 remote_ip 10.8.0.154 114101 username hashtadani3 114101 mac 114101 bytes_out 0 114101 bytes_in 0 114101 station_ip 83.122.1.75 114101 port 103 114101 unique_id port 114101 remote_ip 10.8.0.154 114102 username mehdizare 114102 mac 114102 bytes_out 1642 114102 bytes_in 6592 114102 station_ip 5.119.132.42 114102 port 100 114102 unique_id port 114102 remote_ip 10.8.0.90 114103 username mehdizare 114103 mac 114103 bytes_out 0 114103 bytes_in 0 114103 station_ip 5.119.132.42 114103 port 40 114103 unique_id port 114103 remote_ip 10.8.1.42 114104 username hashtadani3 114104 mac 114104 bytes_out 0 114104 bytes_in 0 114104 station_ip 83.122.1.75 114104 port 103 114104 unique_id port 114104 remote_ip 10.8.0.154 114107 username ehsun 114107 mac 114107 bytes_out 0 114107 bytes_in 0 114107 station_ip 46.225.208.208 114107 port 96 114107 unique_id port 114112 username hashtadani3 114112 mac 114112 bytes_out 1626937 114112 bytes_in 15971554 114112 station_ip 83.122.1.75 114112 port 108 114112 unique_id port 114112 remote_ip 10.8.0.154 114114 username mohammadmahdi 114114 kill_reason Another user logged on this global unique id 114114 mac 114114 bytes_out 0 114114 bytes_in 0 114114 station_ip 5.120.147.236 114114 port 100 114114 unique_id port 114114 remote_ip 10.8.0.54 114116 username mehdizare 114116 mac 114116 bytes_out 0 114116 bytes_in 0 114116 station_ip 5.119.132.42 114116 port 40 114116 unique_id port 114116 remote_ip 10.8.1.42 114117 username hashtadani3 114117 kill_reason Maximum check online fails reached 114117 mac 114117 bytes_out 0 114117 bytes_in 0 114117 station_ip 83.122.1.75 114117 port 96 114117 unique_id port 114119 username hashtadani3 114119 mac 114119 bytes_out 0 114119 bytes_in 0 114119 station_ip 83.122.1.75 114119 port 105 114119 unique_id port 114119 remote_ip 10.8.0.154 114120 username mehdizare 114120 mac 114120 bytes_out 0 114120 bytes_in 0 114120 station_ip 5.119.132.42 114120 port 40 114120 unique_id port 114120 remote_ip 10.8.1.42 114121 username mohammadmahdi 114121 kill_reason Another user logged on this global unique id 114121 mac 114121 bytes_out 0 114121 bytes_in 0 114121 station_ip 5.120.147.236 114121 port 100 114121 unique_id port 114126 username hashtadani3 114126 mac 114126 bytes_out 0 114126 bytes_in 0 114126 station_ip 83.122.1.75 114126 port 100 114126 unique_id port 114126 remote_ip 10.8.0.154 114130 username amir 114130 mac 114130 bytes_out 146859 114130 bytes_in 659077 114130 station_ip 46.225.210.2 114130 port 100 114130 unique_id port 114130 remote_ip 10.8.0.50 114132 username mohammadjavad 114132 mac 114132 bytes_out 1027333 114132 bytes_in 22773193 114132 station_ip 83.123.14.48 114132 port 109 114132 unique_id port 114132 remote_ip 10.8.0.142 114133 username tahmasebi 114133 kill_reason Another user logged on this global unique id 114133 mac 114133 bytes_out 0 114133 bytes_in 0 114133 station_ip 5.119.63.197 114133 port 98 114133 unique_id port 114134 username mehdizare 114134 mac 114134 bytes_out 18696 114134 bytes_in 25904 114134 station_ip 5.119.132.42 114134 port 108 114134 unique_id port 114134 remote_ip 10.8.0.90 114135 username tahmasebi 114135 kill_reason Another user logged on this global unique id 114135 mac 114135 bytes_out 0 114135 bytes_in 0 114135 station_ip 5.119.63.197 114135 port 98 114135 unique_id port 114136 username tahmasebi 114136 kill_reason Another user logged on this global unique id 114136 mac 114136 bytes_out 0 114136 bytes_in 0 114136 station_ip 5.119.63.197 114136 port 98 114136 unique_id port 114139 username naeimeh 114139 mac 114139 bytes_out 1061658 114139 bytes_in 8496841 114139 station_ip 37.129.245.165 114139 port 106 114139 unique_id port 114139 remote_ip 10.8.0.78 114144 username mehdizare 114144 mac 114144 bytes_out 0 114144 bytes_in 0 114144 station_ip 5.119.132.42 114144 port 100 114144 unique_id port 114144 remote_ip 10.8.0.90 114145 username tahmasebi 114145 kill_reason Another user logged on this global unique id 114145 mac 114145 bytes_out 0 114145 bytes_in 0 114145 station_ip 5.119.63.197 114145 port 98 114145 unique_id port 114151 username mehdizare 114151 mac 114151 bytes_out 0 114151 bytes_in 0 114151 station_ip 5.119.132.42 114151 port 101 114151 unique_id port 114151 remote_ip 10.8.0.90 114152 username mehdizare 114152 mac 114152 bytes_out 24201 114152 bytes_in 39691 114152 station_ip 5.119.132.42 114152 port 45 114152 unique_id port 114152 remote_ip 10.8.1.42 114153 username houshang 114153 mac 114153 bytes_out 0 114153 bytes_in 0 114153 station_ip 5.120.71.0 114153 port 51 114153 unique_id port 114153 remote_ip 10.8.0.22 114137 port 15729306 114137 nas_port_type Virtual 114137 remote_ip 5.5.5.203 114138 username mohammadmahdi 114138 kill_reason Another user logged on this global unique id 114138 mac 114138 bytes_out 0 114138 bytes_in 0 114138 station_ip 5.120.147.236 114138 port 103 114138 unique_id port 114138 remote_ip 10.8.0.54 114141 username hashtadani3 114141 mac 114141 bytes_out 0 114141 bytes_in 0 114141 station_ip 83.122.1.75 114141 port 105 114141 unique_id port 114141 remote_ip 10.8.0.154 114142 username tahmasebi 114142 kill_reason Another user logged on this global unique id 114142 mac 114142 bytes_out 0 114142 bytes_in 0 114142 station_ip 5.119.63.197 114142 port 98 114142 unique_id port 114149 username forozande 114149 mac 114149 bytes_out 0 114149 bytes_in 0 114149 station_ip 83.122.156.146 114149 port 105 114149 unique_id port 114149 remote_ip 10.8.0.74 114158 username sabaghnezhad 114158 mac 114158 bytes_out 0 114158 bytes_in 0 114158 station_ip 37.129.15.147 114158 port 43 114158 unique_id port 114158 remote_ip 10.8.1.130 114160 username kordestani 114160 mac 114160 bytes_out 0 114160 bytes_in 0 114160 station_ip 217.219.43.207 114160 port 103 114160 unique_id port 114160 remote_ip 10.8.0.134 114162 username amirabbas 114162 unique_id port 114162 terminate_cause User-Request 114162 bytes_out 15917345 114162 bytes_in 432650981 114162 station_ip 37.27.4.241 114162 port 15729304 114162 nas_port_type Virtual 114162 remote_ip 5.5.5.191 114165 username mohammadjavad 114165 mac 114165 bytes_out 0 114165 bytes_in 0 114165 station_ip 83.122.182.239 114165 port 51 114165 unique_id port 114165 remote_ip 10.8.0.142 114168 username zare 114168 mac 114168 bytes_out 0 114168 bytes_in 0 114168 station_ip 94.183.214.14 114168 port 51 114168 unique_id port 114168 remote_ip 10.8.0.18 114169 username zare 114169 mac 114169 bytes_out 0 114169 bytes_in 0 114169 station_ip 94.183.214.14 114169 port 51 114169 unique_id port 114169 remote_ip 10.8.0.18 114175 username zare 114175 mac 114175 bytes_out 0 114175 bytes_in 0 114175 station_ip 94.183.214.14 114175 port 51 114175 unique_id port 114175 remote_ip 10.8.0.18 114188 username jamali 114188 mac 114188 bytes_out 0 114188 bytes_in 0 114188 station_ip 5.119.87.121 114188 port 103 114188 unique_id port 114188 remote_ip 10.8.0.150 114191 username mohammadjavad 114191 mac 114191 bytes_out 0 114191 bytes_in 0 114191 station_ip 83.122.1.64 114191 port 109 114191 unique_id port 114191 remote_ip 10.8.0.142 114196 username houshang 114196 mac 114196 bytes_out 0 114196 bytes_in 0 114196 station_ip 5.120.71.0 114196 port 101 114196 unique_id port 114200 username hashtadani3 114200 mac 114200 bytes_out 0 114200 bytes_in 0 114200 station_ip 83.123.69.29 114200 port 101 114200 unique_id port 114200 remote_ip 10.8.0.154 114202 username tahmasebi 114202 kill_reason Another user logged on this global unique id 114202 mac 114202 bytes_out 0 114202 bytes_in 0 114202 station_ip 5.119.63.197 114202 port 98 114202 unique_id port 114205 username hashtadani3 114205 mac 114205 bytes_out 0 114205 bytes_in 0 114205 station_ip 5.202.4.202 114205 port 101 114205 unique_id port 114205 remote_ip 10.8.0.154 114206 username alireza 114206 unique_id port 114206 terminate_cause User-Request 114206 bytes_out 2630079 114206 bytes_in 29409082 114206 station_ip 5.120.60.241 114206 port 15729307 114206 nas_port_type Virtual 114206 remote_ip 5.5.5.204 114207 username alihosseini1 114207 mac 114207 bytes_out 0 114207 bytes_in 0 114146 bytes_in 0 114146 station_ip 5.120.147.236 114146 port 103 114146 unique_id port 114147 username mehdizare 114147 mac 114147 bytes_out 0 114147 bytes_in 0 114147 station_ip 5.119.132.42 114147 port 101 114147 unique_id port 114147 remote_ip 10.8.0.90 114148 username alihosseini1 114148 mac 114148 bytes_out 0 114148 bytes_in 0 114148 station_ip 5.120.44.210 114148 port 109 114148 unique_id port 114148 remote_ip 10.8.0.166 114150 username avaanna 114150 mac 114150 bytes_out 1309480 114150 bytes_in 10325690 114150 station_ip 83.123.87.2 114150 port 51 114150 unique_id port 114150 remote_ip 10.8.0.98 114155 username zare 114155 mac 114155 bytes_out 0 114155 bytes_in 0 114155 station_ip 94.183.214.14 114155 port 101 114155 unique_id port 114155 remote_ip 10.8.0.18 114159 username zare 114159 mac 114159 bytes_out 0 114159 bytes_in 0 114159 station_ip 94.183.214.14 114159 port 101 114159 unique_id port 114159 remote_ip 10.8.0.18 114163 username alirr 114163 unique_id port 114163 terminate_cause User-Request 114163 bytes_out 3483380 114163 bytes_in 67803602 114163 station_ip 5.119.73.172 114163 port 15729305 114163 nas_port_type Virtual 114163 remote_ip 5.5.5.194 114171 username zare 114171 mac 114171 bytes_out 0 114171 bytes_in 0 114171 station_ip 94.183.214.14 114171 port 51 114171 unique_id port 114171 remote_ip 10.8.0.18 114173 username tahmasebi 114173 kill_reason Another user logged on this global unique id 114173 mac 114173 bytes_out 0 114173 bytes_in 0 114173 station_ip 5.119.63.197 114173 port 98 114173 unique_id port 114174 username zare 114174 mac 114174 bytes_out 0 114174 bytes_in 0 114174 station_ip 94.183.214.14 114174 port 51 114174 unique_id port 114174 remote_ip 10.8.0.18 114179 username jamali 114179 mac 114179 bytes_out 0 114179 bytes_in 0 114179 station_ip 5.119.87.121 114179 port 109 114179 unique_id port 114179 remote_ip 10.8.0.150 114181 username zare 114181 mac 114181 bytes_out 14463 114181 bytes_in 15041 114181 station_ip 94.183.214.14 114181 port 45 114181 unique_id port 114181 remote_ip 10.8.1.58 114186 username kordestani 114186 mac 114186 bytes_out 0 114186 bytes_in 0 114186 station_ip 151.235.82.196 114186 port 108 114186 unique_id port 114186 remote_ip 10.8.0.134 114193 username farhad1 114193 kill_reason Another user logged on this global unique id 114193 mac 114193 bytes_out 0 114193 bytes_in 0 114193 station_ip 5.119.89.81 114193 port 110 114193 unique_id port 114193 remote_ip 10.8.0.26 114195 username tahmasebi 114195 kill_reason Another user logged on this global unique id 114195 mac 114195 bytes_out 0 114195 bytes_in 0 114195 station_ip 5.119.63.197 114195 port 98 114195 unique_id port 114201 username forozande 114201 mac 114201 bytes_out 484105 114201 bytes_in 2940834 114201 station_ip 83.123.164.51 114201 port 103 114201 unique_id port 114201 remote_ip 10.8.0.74 114203 username hashtadani3 114203 mac 114203 bytes_out 0 114203 bytes_in 0 114203 station_ip 5.202.4.202 114203 port 101 114203 unique_id port 114203 remote_ip 10.8.0.154 114204 username hashtadani3 114204 mac 114204 bytes_out 0 114204 bytes_in 0 114204 station_ip 5.202.4.202 114204 port 101 114204 unique_id port 114204 remote_ip 10.8.0.154 114208 username hashtadani3 114208 mac 114208 bytes_out 0 114208 bytes_in 0 114208 station_ip 5.202.4.202 114208 port 101 114208 unique_id port 114208 remote_ip 10.8.0.154 114214 username sabaghnezhad 114214 mac 114214 bytes_out 396655 114154 username tahmasebi 114154 kill_reason Another user logged on this global unique id 114154 mac 114154 bytes_out 0 114154 bytes_in 0 114154 station_ip 5.119.63.197 114154 port 98 114154 unique_id port 114156 username zare 114156 mac 114156 bytes_out 0 114156 bytes_in 0 114156 station_ip 94.183.214.14 114156 port 101 114156 unique_id port 114156 remote_ip 10.8.0.18 114157 username amir 114157 kill_reason Another user logged on this global unique id 114157 mac 114157 bytes_out 0 114157 bytes_in 0 114157 station_ip 46.225.210.2 114157 port 108 114157 unique_id port 114157 remote_ip 10.8.0.50 114161 username zare 114161 mac 114161 bytes_out 0 114161 bytes_in 0 114161 station_ip 94.183.214.14 114161 port 103 114161 unique_id port 114161 remote_ip 10.8.0.18 114164 username zare 114164 mac 114164 bytes_out 0 114164 bytes_in 0 114164 station_ip 94.183.214.14 114164 port 103 114164 unique_id port 114164 remote_ip 10.8.0.18 114166 username mehdizare 114166 mac 114166 bytes_out 0 114166 bytes_in 0 114166 station_ip 5.119.132.42 114166 port 45 114166 unique_id port 114166 remote_ip 10.8.1.42 114167 username zare 114167 mac 114167 bytes_out 0 114167 bytes_in 0 114167 station_ip 94.183.214.14 114167 port 51 114167 unique_id port 114167 remote_ip 10.8.0.18 114170 username zare 114170 mac 114170 bytes_out 0 114170 bytes_in 0 114170 station_ip 94.183.214.14 114170 port 51 114170 unique_id port 114170 remote_ip 10.8.0.18 114172 username zare 114172 mac 114172 bytes_out 0 114172 bytes_in 0 114172 station_ip 94.183.214.14 114172 port 51 114172 unique_id port 114172 remote_ip 10.8.0.18 114176 username zare 114176 mac 114176 bytes_out 0 114176 bytes_in 0 114176 station_ip 94.183.214.14 114176 port 51 114176 unique_id port 114176 remote_ip 10.8.0.18 114177 username zare 114177 mac 114177 bytes_out 0 114177 bytes_in 0 114177 station_ip 94.183.214.14 114177 port 45 114177 unique_id port 114177 remote_ip 10.8.1.58 114178 username zare 114178 kill_reason Maximum check online fails reached 114178 mac 114178 bytes_out 0 114178 bytes_in 0 114178 station_ip 94.183.214.14 114178 port 51 114178 unique_id port 114180 username farhad1 114180 mac 114180 bytes_out 0 114180 bytes_in 0 114180 station_ip 5.120.180.152 114180 port 101 114180 unique_id port 114180 remote_ip 10.8.0.26 114182 username alihosseini1 114182 kill_reason Another user logged on this global unique id 114182 mac 114182 bytes_out 0 114182 bytes_in 0 114182 station_ip 5.119.100.172 114182 port 106 114182 unique_id port 114182 remote_ip 10.8.0.166 114183 username mehdizare 114183 mac 114183 bytes_out 0 114183 bytes_in 0 114183 station_ip 5.119.132.42 114183 port 48 114183 unique_id port 114183 remote_ip 10.8.1.42 114184 username amir 114184 mac 114184 bytes_out 0 114184 bytes_in 0 114184 station_ip 46.225.210.2 114184 port 108 114184 unique_id port 114185 username kordestani 114185 mac 114185 bytes_out 104105 114185 bytes_in 390053 114185 station_ip 151.235.82.196 114185 port 43 114185 unique_id port 114185 remote_ip 10.8.1.98 114187 username houshang 114187 kill_reason Another user logged on this global unique id 114187 mac 114187 bytes_out 0 114187 bytes_in 0 114187 station_ip 5.120.71.0 114187 port 101 114187 unique_id port 114187 remote_ip 10.8.0.22 114189 username mehdizare 114189 mac 114189 bytes_out 15213 114189 bytes_in 23170 114189 station_ip 5.119.132.42 114189 port 48 114189 unique_id port 114189 remote_ip 10.8.1.42 114190 username tahmasebi 114190 kill_reason Another user logged on this global unique id 114190 mac 114190 bytes_out 0 114190 bytes_in 0 114190 station_ip 5.119.63.197 114190 port 98 114190 unique_id port 114192 username houshang 114192 kill_reason Another user logged on this global unique id 114192 mac 114192 bytes_out 0 114192 bytes_in 0 114192 station_ip 5.120.71.0 114192 port 101 114192 unique_id port 114194 username houshang 114194 kill_reason Another user logged on this global unique id 114194 mac 114194 bytes_out 0 114194 bytes_in 0 114194 station_ip 5.120.71.0 114194 port 101 114194 unique_id port 114197 username alirr 114197 unique_id port 114197 terminate_cause Lost-Carrier 114197 bytes_out 295519 114197 bytes_in 6429178 114197 station_ip 5.120.29.106 114197 port 15729309 114197 nas_port_type Virtual 114197 remote_ip 5.5.5.206 114198 username alihosseini1 114198 kill_reason Another user logged on this global unique id 114198 mac 114198 bytes_out 0 114198 bytes_in 0 114198 station_ip 5.119.100.172 114198 port 106 114198 unique_id port 114199 username jamali 114199 mac 114199 bytes_out 0 114199 bytes_in 0 114199 station_ip 5.119.87.121 114199 port 108 114199 unique_id port 114199 remote_ip 10.8.0.150 114212 username zare 114212 mac 114212 bytes_out 0 114212 bytes_in 0 114212 station_ip 37.27.17.184 114212 port 103 114212 unique_id port 114212 remote_ip 10.8.0.18 114217 username kordestani 114217 mac 114217 bytes_out 148601 114217 bytes_in 237745 114217 station_ip 151.235.82.196 114217 port 112 114217 unique_id port 114217 remote_ip 10.8.0.134 114219 username aminvpn 114219 mac 114219 bytes_out 0 114219 bytes_in 0 114219 station_ip 31.59.38.179 114219 port 100 114219 unique_id port 114219 remote_ip 10.8.0.14 114221 username tahmasebi 114221 kill_reason Another user logged on this global unique id 114221 mac 114221 bytes_out 0 114221 bytes_in 0 114221 station_ip 5.119.63.197 114221 port 98 114221 unique_id port 114228 username mehdizare 114228 mac 114228 bytes_out 172092 114228 bytes_in 196997 114228 station_ip 5.119.132.42 114228 port 43 114228 unique_id port 114228 remote_ip 10.8.1.42 114231 username tahmasebi 114231 kill_reason Another user logged on this global unique id 114231 mac 114231 bytes_out 0 114231 bytes_in 0 114231 station_ip 5.119.63.197 114231 port 98 114231 unique_id port 114233 username avaanna 114233 mac 114233 bytes_out 0 114233 bytes_in 0 114233 station_ip 83.123.87.2 114233 port 105 114233 unique_id port 114233 remote_ip 10.8.0.98 114235 username zare 114235 mac 114235 bytes_out 0 114235 bytes_in 0 114235 station_ip 37.27.17.184 114235 port 100 114235 unique_id port 114235 remote_ip 10.8.0.18 114238 username mehdizare 114238 mac 114238 bytes_out 14985 114238 bytes_in 19631 114238 station_ip 5.119.132.42 114238 port 43 114238 unique_id port 114238 remote_ip 10.8.1.42 114240 username farhad1 114240 kill_reason Another user logged on this global unique id 114240 mac 114240 bytes_out 0 114240 bytes_in 0 114240 station_ip 5.119.89.81 114240 port 110 114240 unique_id port 114241 username zare 114241 mac 114241 bytes_out 0 114241 bytes_in 0 114241 station_ip 37.27.17.184 114241 port 109 114241 unique_id port 114241 remote_ip 10.8.0.18 114243 username avaanna 114243 mac 114243 bytes_out 16202 114243 bytes_in 18703 114243 station_ip 83.123.87.2 114243 port 105 114243 unique_id port 114243 remote_ip 10.8.0.98 114247 username hashtadani3 114247 mac 114247 bytes_out 0 114247 bytes_in 0 114247 station_ip 5.202.4.202 114247 port 105 114207 station_ip 5.119.100.172 114207 port 106 114207 unique_id port 114209 username alipour 114209 mac 114209 bytes_out 0 114209 bytes_in 0 114209 station_ip 113.203.15.247 114209 port 100 114209 unique_id port 114209 remote_ip 10.8.0.102 114210 username tahmasebi 114210 kill_reason Another user logged on this global unique id 114210 mac 114210 bytes_out 0 114210 bytes_in 0 114210 station_ip 5.119.63.197 114210 port 98 114210 unique_id port 114211 username zare 114211 mac 114211 bytes_out 0 114211 bytes_in 0 114211 station_ip 37.27.17.184 114211 port 103 114211 unique_id port 114211 remote_ip 10.8.0.18 114213 username abravesh 114213 unique_id port 114213 terminate_cause Lost-Carrier 114213 bytes_out 776743 114213 bytes_in 7003887 114213 station_ip 5.119.228.11 114213 port 15729311 114213 nas_port_type Virtual 114213 remote_ip 5.5.5.165 114218 username farhad1 114218 kill_reason Another user logged on this global unique id 114218 mac 114218 bytes_out 0 114218 bytes_in 0 114218 station_ip 5.119.89.81 114218 port 110 114218 unique_id port 114220 username hashtadani3 114220 mac 114220 bytes_out 0 114220 bytes_in 0 114220 station_ip 5.202.4.202 114220 port 108 114220 unique_id port 114220 remote_ip 10.8.0.154 114223 username hashtadani3 114223 mac 114223 bytes_out 0 114223 bytes_in 0 114223 station_ip 5.202.4.202 114223 port 100 114223 unique_id port 114223 remote_ip 10.8.0.154 114224 username hashtadani3 114224 mac 114224 bytes_out 0 114224 bytes_in 0 114224 station_ip 5.202.4.202 114224 port 100 114224 unique_id port 114224 remote_ip 10.8.0.154 114225 username sabaghnezhad 114225 mac 114225 bytes_out 380149 114225 bytes_in 4467889 114225 station_ip 83.122.11.114 114225 port 45 114225 unique_id port 114225 remote_ip 10.8.1.130 114229 username hashtadani3 114229 mac 114229 bytes_out 0 114229 bytes_in 0 114229 station_ip 5.202.4.202 114229 port 100 114229 unique_id port 114229 remote_ip 10.8.0.154 114234 username zare 114234 mac 114234 bytes_out 1636 114234 bytes_in 5142 114234 station_ip 37.27.17.184 114234 port 100 114234 unique_id port 114234 remote_ip 10.8.0.18 114236 username zare 114236 mac 114236 bytes_out 0 114236 bytes_in 0 114236 station_ip 37.27.17.184 114236 port 108 114236 unique_id port 114236 remote_ip 10.8.0.18 114237 username zare 114237 mac 114237 bytes_out 0 114237 bytes_in 0 114237 station_ip 37.27.17.184 114237 port 108 114237 unique_id port 114237 remote_ip 10.8.0.18 114242 username malekpoir 114242 kill_reason Another user logged on this global unique id 114242 mac 114242 bytes_out 0 114242 bytes_in 0 114242 station_ip 5.120.117.201 114242 port 111 114242 unique_id port 114242 remote_ip 10.8.0.58 114244 username forozande 114244 mac 114244 bytes_out 673682 114244 bytes_in 8506625 114244 station_ip 37.129.76.19 114244 port 100 114244 unique_id port 114244 remote_ip 10.8.0.74 114249 username hashtadani3 114249 mac 114249 bytes_out 0 114249 bytes_in 0 114249 station_ip 5.202.4.202 114249 port 105 114249 unique_id port 114249 remote_ip 10.8.0.154 114256 username hashtadani3 114256 mac 114256 bytes_out 2201419 114256 bytes_in 25836265 114256 station_ip 5.202.4.202 114256 port 103 114256 unique_id port 114256 remote_ip 10.8.0.154 114257 username zare 114257 mac 114257 bytes_out 0 114257 bytes_in 0 114257 station_ip 37.27.17.184 114257 port 100 114257 unique_id port 114257 remote_ip 10.8.0.18 114264 username hashtadani3 114264 mac 114264 bytes_out 0 114264 bytes_in 0 114214 bytes_in 1025747 114214 station_ip 113.203.90.232 114214 port 45 114214 unique_id port 114214 remote_ip 10.8.1.130 114215 username jamali 114215 mac 114215 bytes_out 30644 114215 bytes_in 31466 114215 station_ip 5.119.87.121 114215 port 109 114215 unique_id port 114215 remote_ip 10.8.0.150 114216 username jamali 114216 mac 114216 bytes_out 10716 114216 bytes_in 8305 114216 station_ip 5.119.87.121 114216 port 103 114216 unique_id port 114216 remote_ip 10.8.0.150 114222 username zare 114222 mac 114222 bytes_out 44680 114222 bytes_in 163965 114222 station_ip 37.27.17.184 114222 port 48 114222 unique_id port 114222 remote_ip 10.8.1.58 114226 username farhad1 114226 kill_reason Another user logged on this global unique id 114226 mac 114226 bytes_out 0 114226 bytes_in 0 114226 station_ip 5.119.89.81 114226 port 110 114226 unique_id port 114227 username zare 114227 mac 114227 bytes_out 0 114227 bytes_in 0 114227 station_ip 37.27.17.184 114227 port 45 114227 unique_id port 114227 remote_ip 10.8.1.58 114230 username zare 114230 mac 114230 bytes_out 0 114230 bytes_in 0 114230 station_ip 37.27.17.184 114230 port 100 114230 unique_id port 114230 remote_ip 10.8.0.18 114232 username hashtadani3 114232 mac 114232 bytes_out 0 114232 bytes_in 0 114232 station_ip 5.202.4.202 114232 port 108 114232 unique_id port 114232 remote_ip 10.8.0.154 114239 username zare 114239 mac 114239 bytes_out 0 114239 bytes_in 0 114239 station_ip 37.27.17.184 114239 port 108 114239 unique_id port 114239 remote_ip 10.8.0.18 114245 username zare 114245 mac 114245 bytes_out 0 114245 bytes_in 0 114245 station_ip 37.27.17.184 114245 port 109 114245 unique_id port 114245 remote_ip 10.8.0.18 114246 username zare 114246 mac 114246 bytes_out 0 114246 bytes_in 0 114246 station_ip 37.27.17.184 114246 port 100 114246 unique_id port 114246 remote_ip 10.8.0.18 114248 username mohammadjavad 114248 mac 114248 bytes_out 0 114248 bytes_in 0 114248 station_ip 37.129.86.39 114248 port 108 114248 unique_id port 114248 remote_ip 10.8.0.142 114250 username hashtadani3 114250 mac 114250 bytes_out 0 114250 bytes_in 0 114250 station_ip 5.202.4.202 114250 port 108 114250 unique_id port 114250 remote_ip 10.8.0.154 114251 username malekpoir 114251 kill_reason Another user logged on this global unique id 114251 mac 114251 bytes_out 0 114251 bytes_in 0 114251 station_ip 5.120.117.201 114251 port 111 114251 unique_id port 114252 username jamali 114252 mac 114252 bytes_out 0 114252 bytes_in 0 114252 station_ip 5.119.87.121 114252 port 103 114252 unique_id port 114252 remote_ip 10.8.0.150 114253 username jamali 114253 mac 114253 bytes_out 15597 114253 bytes_in 25462 114253 station_ip 5.119.87.121 114253 port 108 114253 unique_id port 114253 remote_ip 10.8.0.150 114254 username hashtadani3 114254 mac 114254 bytes_out 2810758 114254 bytes_in 28166800 114254 station_ip 5.202.4.202 114254 port 103 114254 unique_id port 114254 remote_ip 10.8.0.154 114255 username forozande 114255 mac 114255 bytes_out 121397 114255 bytes_in 306546 114255 station_ip 113.203.4.128 114255 port 108 114255 unique_id port 114255 remote_ip 10.8.0.74 114258 username mehdizare 114258 mac 114258 bytes_out 2971898 114258 bytes_in 37402905 114258 station_ip 5.119.132.42 114258 port 43 114258 unique_id port 114258 remote_ip 10.8.1.42 114261 username mohammadjavad 114261 mac 114261 bytes_out 0 114261 bytes_in 0 114261 station_ip 83.122.177.190 114261 port 105 114247 unique_id port 114247 remote_ip 10.8.0.154 114259 username hashtadani3 114259 mac 114259 bytes_out 0 114259 bytes_in 0 114259 station_ip 5.202.4.202 114259 port 100 114259 unique_id port 114259 remote_ip 10.8.0.154 114260 username alipour 114260 kill_reason Another user logged on this global unique id 114260 mac 114260 bytes_out 0 114260 bytes_in 0 114260 station_ip 113.203.15.247 114260 port 101 114260 unique_id port 114260 remote_ip 10.8.0.102 114263 username morteza 114263 mac 114263 bytes_out 157892 114263 bytes_in 946420 114263 station_ip 113.203.101.181 114263 port 103 114263 unique_id port 114263 remote_ip 10.8.0.46 114265 username hashtadani3 114265 mac 114265 bytes_out 0 114265 bytes_in 0 114265 station_ip 5.202.4.202 114265 port 103 114265 unique_id port 114265 remote_ip 10.8.0.154 114268 username mehdizare 114268 mac 114268 bytes_out 0 114268 bytes_in 0 114268 station_ip 5.119.132.42 114268 port 43 114268 unique_id port 114268 remote_ip 10.8.1.42 114270 username malekpoir 114270 mac 114270 bytes_out 0 114270 bytes_in 0 114270 station_ip 5.120.117.201 114270 port 111 114270 unique_id port 114272 username forozande 114272 mac 114272 bytes_out 0 114272 bytes_in 0 114272 station_ip 37.129.131.108 114272 port 110 114272 unique_id port 114272 remote_ip 10.8.0.74 114273 username alihosseini1 114273 mac 114273 bytes_out 1070822 114273 bytes_in 7770971 114273 station_ip 5.119.54.247 114273 port 106 114273 unique_id port 114273 remote_ip 10.8.0.166 114278 username kordestani 114278 mac 114278 bytes_out 0 114278 bytes_in 0 114278 station_ip 151.235.82.196 114278 port 45 114278 unique_id port 114278 remote_ip 10.8.1.98 114280 username mehdizare 114280 mac 114280 bytes_out 0 114280 bytes_in 0 114280 station_ip 5.119.132.42 114280 port 43 114280 unique_id port 114280 remote_ip 10.8.1.42 114282 username aminvpn 114282 mac 114282 bytes_out 0 114282 bytes_in 0 114282 station_ip 31.56.154.118 114282 port 49 114282 unique_id port 114282 remote_ip 10.8.1.6 114283 username hashtadani3 114283 mac 114283 bytes_out 1455801 114283 bytes_in 13009470 114283 station_ip 5.202.4.202 114283 port 109 114283 unique_id port 114283 remote_ip 10.8.0.154 114285 username hashtadani3 114285 mac 114285 bytes_out 0 114285 bytes_in 0 114285 station_ip 5.202.10.13 114285 port 112 114285 unique_id port 114285 remote_ip 10.8.0.154 114287 username ahmadi 114287 unique_id port 114287 terminate_cause User-Request 114287 bytes_out 99502 114287 bytes_in 1257892 114287 station_ip 37.129.22.204 114287 port 15729312 114287 nas_port_type Virtual 114287 remote_ip 5.5.5.167 114289 username alihosseini1 114289 mac 114289 bytes_out 26415 114289 bytes_in 23103 114289 station_ip 5.119.54.247 114289 port 110 114289 unique_id port 114289 remote_ip 10.8.0.166 114290 username sedighe 114290 mac 114290 bytes_out 2924 114290 bytes_in 6225 114290 station_ip 37.129.239.13 114290 port 115 114290 unique_id port 114290 remote_ip 10.8.0.146 114292 username kordestani 114292 mac 114292 bytes_out 0 114292 bytes_in 0 114292 station_ip 151.235.82.196 114292 port 113 114292 unique_id port 114295 username mahdixz 114295 unique_id port 114295 terminate_cause User-Request 114295 bytes_out 238079 114295 bytes_in 5116358 114295 station_ip 151.235.84.86 114295 port 15729313 114295 nas_port_type Virtual 114295 remote_ip 5.5.5.168 114296 username alihosseini1 114296 mac 114296 bytes_out 6979 114296 bytes_in 13159 114296 station_ip 5.119.54.247 114296 port 106 114261 unique_id port 114261 remote_ip 10.8.0.142 114262 username farhad1 114262 mac 114262 bytes_out 0 114262 bytes_in 0 114262 station_ip 5.119.89.81 114262 port 110 114262 unique_id port 114267 username houshang 114267 mac 114267 bytes_out 653310 114267 bytes_in 5358561 114267 station_ip 5.120.71.0 114267 port 100 114267 unique_id port 114267 remote_ip 10.8.0.22 114269 username zare 114269 mac 114269 bytes_out 0 114269 bytes_in 0 114269 station_ip 37.27.17.184 114269 port 100 114269 unique_id port 114269 remote_ip 10.8.0.18 114271 username jamali 114271 mac 114271 bytes_out 3162746 114271 bytes_in 45164090 114271 station_ip 5.119.87.121 114271 port 112 114271 unique_id port 114271 remote_ip 10.8.0.150 114274 username hashtadani3 114274 mac 114274 bytes_out 0 114274 bytes_in 0 114274 station_ip 5.202.4.202 114274 port 106 114274 unique_id port 114274 remote_ip 10.8.0.154 114276 username jamali 114276 mac 114276 bytes_out 41670 114276 bytes_in 100508 114276 station_ip 5.119.87.121 114276 port 108 114276 unique_id port 114276 remote_ip 10.8.0.150 114286 username hashtadani3 114286 mac 114286 bytes_out 0 114286 bytes_in 0 114286 station_ip 5.202.10.13 114286 port 106 114286 unique_id port 114286 remote_ip 10.8.0.154 114288 username kordestani 114288 kill_reason Another user logged on this global unique id 114288 mac 114288 bytes_out 0 114288 bytes_in 0 114288 station_ip 151.235.82.196 114288 port 113 114288 unique_id port 114288 remote_ip 10.8.0.134 114299 username malekpoir 114299 mac 114299 bytes_out 0 114299 bytes_in 0 114299 station_ip 5.120.117.201 114299 port 103 114299 unique_id port 114299 remote_ip 10.8.0.58 114301 username houshang 114301 mac 114301 bytes_out 0 114301 bytes_in 0 114301 station_ip 5.120.71.0 114301 port 103 114301 unique_id port 114301 remote_ip 10.8.0.22 114302 username zare 114302 mac 114302 bytes_out 0 114302 bytes_in 0 114302 station_ip 37.27.17.184 114302 port 100 114302 unique_id port 114302 remote_ip 10.8.0.18 114304 username zare 114304 mac 114304 bytes_out 0 114304 bytes_in 0 114304 station_ip 37.27.17.184 114304 port 100 114304 unique_id port 114304 remote_ip 10.8.0.18 114308 username musa 114308 mac 114308 bytes_out 0 114308 bytes_in 0 114308 station_ip 37.129.157.177 114308 port 100 114308 unique_id port 114308 remote_ip 10.8.0.6 114314 username zare 114314 mac 114314 bytes_out 0 114314 bytes_in 0 114314 station_ip 37.27.17.184 114314 port 109 114314 unique_id port 114314 remote_ip 10.8.0.18 114316 username mehdizare 114316 mac 114316 bytes_out 0 114316 bytes_in 0 114316 station_ip 5.119.132.42 114316 port 43 114316 unique_id port 114316 remote_ip 10.8.1.42 114317 username zare 114317 mac 114317 bytes_out 0 114317 bytes_in 0 114317 station_ip 37.27.17.184 114317 port 109 114317 unique_id port 114317 remote_ip 10.8.0.18 114319 username zare 114319 mac 114319 bytes_out 0 114319 bytes_in 0 114319 station_ip 37.27.17.184 114319 port 101 114319 unique_id port 114319 remote_ip 10.8.0.18 114320 username zare 114320 mac 114320 bytes_out 0 114320 bytes_in 0 114320 station_ip 37.27.17.184 114320 port 101 114320 unique_id port 114320 remote_ip 10.8.0.18 114323 username forozande 114323 mac 114323 bytes_out 330045 114323 bytes_in 6956061 114323 station_ip 37.129.7.204 114323 port 101 114323 unique_id port 114323 remote_ip 10.8.0.74 114324 username zare 114324 mac 114264 station_ip 5.202.4.202 114264 port 108 114264 unique_id port 114264 remote_ip 10.8.0.154 114266 username zare 114266 mac 114266 bytes_out 54262 114266 bytes_in 160057 114266 station_ip 37.27.17.184 114266 port 103 114266 unique_id port 114266 remote_ip 10.8.0.18 114275 username kordestani 114275 mac 114275 bytes_out 854831 114275 bytes_in 17799757 114275 station_ip 151.235.82.196 114275 port 45 114275 unique_id port 114275 remote_ip 10.8.1.98 114277 username avaanna 114277 mac 114277 bytes_out 0 114277 bytes_in 0 114277 station_ip 83.123.87.2 114277 port 109 114277 unique_id port 114277 remote_ip 10.8.0.98 114279 username jamali 114279 mac 114279 bytes_out 0 114279 bytes_in 0 114279 station_ip 5.119.87.121 114279 port 106 114279 unique_id port 114279 remote_ip 10.8.0.150 114281 username mehdizare 114281 mac 114281 bytes_out 0 114281 bytes_in 0 114281 station_ip 5.119.132.42 114281 port 112 114281 unique_id port 114281 remote_ip 10.8.0.90 114284 username sedighe 114284 mac 114284 bytes_out 13489 114284 bytes_in 12584 114284 station_ip 37.129.239.13 114284 port 106 114284 unique_id port 114284 remote_ip 10.8.0.146 114291 username jamali 114291 mac 114291 bytes_out 20150 114291 bytes_in 30646 114291 station_ip 5.119.87.121 114291 port 111 114291 unique_id port 114291 remote_ip 10.8.0.150 114293 username forozande 114293 kill_reason Another user logged on this global unique id 114293 mac 114293 bytes_out 0 114293 bytes_in 0 114293 station_ip 37.129.7.204 114293 port 114 114293 unique_id port 114293 remote_ip 10.8.0.74 114294 username sedighe 114294 mac 114294 bytes_out 42564 114294 bytes_in 45869 114294 station_ip 37.129.239.13 114294 port 109 114294 unique_id port 114294 remote_ip 10.8.0.146 114297 username jamali 114297 mac 114297 bytes_out 17305 114297 bytes_in 20229 114297 station_ip 5.119.87.121 114297 port 110 114297 unique_id port 114297 remote_ip 10.8.0.150 114303 username hashtadani3 114303 mac 114303 bytes_out 912355 114303 bytes_in 8599723 114303 station_ip 5.202.10.13 114303 port 111 114303 unique_id port 114303 remote_ip 10.8.0.154 114306 username zare 114306 mac 114306 bytes_out 0 114306 bytes_in 0 114306 station_ip 37.27.17.184 114306 port 100 114306 unique_id port 114306 remote_ip 10.8.0.18 114310 username musa 114310 mac 114310 bytes_out 219807 114310 bytes_in 3156926 114310 station_ip 37.129.157.177 114310 port 103 114310 unique_id port 114310 remote_ip 10.8.0.6 114312 username zare 114312 mac 114312 bytes_out 0 114312 bytes_in 0 114312 station_ip 37.27.17.184 114312 port 103 114312 unique_id port 114312 remote_ip 10.8.0.18 114315 username forozande 114315 mac 114315 bytes_out 0 114315 bytes_in 0 114315 station_ip 37.129.7.204 114315 port 114 114315 unique_id port 114325 username zare 114325 mac 114325 bytes_out 0 114325 bytes_in 0 114325 station_ip 37.27.17.184 114325 port 48 114325 unique_id port 114325 remote_ip 10.8.1.58 114327 username farhad1 114327 kill_reason Another user logged on this global unique id 114327 mac 114327 bytes_out 0 114327 bytes_in 0 114327 station_ip 5.120.152.46 114327 port 105 114327 unique_id port 114338 username hashtadani3 114338 mac 114338 bytes_out 0 114338 bytes_in 0 114338 station_ip 5.202.10.13 114338 port 111 114338 unique_id port 114338 remote_ip 10.8.0.154 114340 username zare 114340 mac 114340 bytes_out 0 114340 bytes_in 0 114340 station_ip 37.27.17.184 114340 port 101 114340 unique_id port 114296 unique_id port 114296 remote_ip 10.8.0.166 114298 username sedighe 114298 mac 114298 bytes_out 0 114298 bytes_in 0 114298 station_ip 83.122.230.110 114298 port 112 114298 unique_id port 114298 remote_ip 10.8.0.146 114300 username houshang 114300 mac 114300 bytes_out 1638 114300 bytes_in 4102 114300 station_ip 5.120.71.0 114300 port 106 114300 unique_id port 114300 remote_ip 10.8.0.22 114305 username sedighe 114305 mac 114305 bytes_out 0 114305 bytes_in 0 114305 station_ip 83.122.230.110 114305 port 110 114305 unique_id port 114305 remote_ip 10.8.0.146 114307 username mohammadjavad 114307 mac 114307 bytes_out 175950 114307 bytes_in 513085 114307 station_ip 37.129.21.129 114307 port 103 114307 unique_id port 114307 remote_ip 10.8.0.142 114309 username farhad1 114309 kill_reason Another user logged on this global unique id 114309 mac 114309 bytes_out 0 114309 bytes_in 0 114309 station_ip 5.120.152.46 114309 port 105 114309 unique_id port 114309 remote_ip 10.8.0.26 114311 username hashtadani3 114311 mac 114311 bytes_out 0 114311 bytes_in 0 114311 station_ip 5.202.10.13 114311 port 103 114311 unique_id port 114311 remote_ip 10.8.0.154 114313 username alihosseini1 114313 mac 114313 bytes_out 40383 114313 bytes_in 136567 114313 station_ip 5.119.54.247 114313 port 109 114313 unique_id port 114313 remote_ip 10.8.0.166 114318 username alipour 114318 mac 114318 bytes_out 0 114318 bytes_in 0 114318 station_ip 113.203.15.247 114318 port 101 114318 unique_id port 114321 username zare 114321 mac 114321 bytes_out 0 114321 bytes_in 0 114321 station_ip 37.27.17.184 114321 port 110 114321 unique_id port 114321 remote_ip 10.8.0.18 114322 username alihosseini1 114322 mac 114322 bytes_out 3863 114322 bytes_in 6388 114322 station_ip 5.119.54.247 114322 port 103 114322 unique_id port 114322 remote_ip 10.8.0.166 114326 username hashtadani3 114326 mac 114326 bytes_out 514994 114326 bytes_in 8597126 114326 station_ip 5.202.10.13 114326 port 101 114326 unique_id port 114326 remote_ip 10.8.0.154 114330 username mehdizare 114330 mac 114330 bytes_out 0 114330 bytes_in 0 114330 station_ip 5.119.132.42 114330 port 43 114330 unique_id port 114330 remote_ip 10.8.1.42 114332 username hashtadani3 114332 mac 114332 bytes_out 7466 114332 bytes_in 9166 114332 station_ip 5.202.10.13 114332 port 101 114332 unique_id port 114332 remote_ip 10.8.0.154 114333 username zare 114333 mac 114333 bytes_out 0 114333 bytes_in 0 114333 station_ip 37.27.17.184 114333 port 106 114333 unique_id port 114333 remote_ip 10.8.0.18 114334 username zare 114334 mac 114334 bytes_out 0 114334 bytes_in 0 114334 station_ip 37.27.17.184 114334 port 111 114334 unique_id port 114334 remote_ip 10.8.0.18 114335 username hashtadani3 114335 mac 114335 bytes_out 337907 114335 bytes_in 5149292 114335 station_ip 5.202.10.13 114335 port 101 114335 unique_id port 114335 remote_ip 10.8.0.154 114336 username zare 114336 mac 114336 bytes_out 14749 114336 bytes_in 25391 114336 station_ip 37.27.17.184 114336 port 111 114336 unique_id port 114336 remote_ip 10.8.0.18 114337 username zare 114337 mac 114337 bytes_out 0 114337 bytes_in 0 114337 station_ip 37.27.17.184 114337 port 101 114337 unique_id port 114337 remote_ip 10.8.0.18 114342 username farhad1 114342 kill_reason Another user logged on this global unique id 114342 mac 114342 bytes_out 0 114342 bytes_in 0 114342 station_ip 5.120.152.46 114342 port 105 114342 unique_id port 114324 bytes_out 0 114324 bytes_in 0 114324 station_ip 37.27.17.184 114324 port 48 114324 unique_id port 114324 remote_ip 10.8.1.58 114328 username jamali 114328 mac 114328 bytes_out 0 114328 bytes_in 0 114328 station_ip 5.119.87.121 114328 port 106 114328 unique_id port 114328 remote_ip 10.8.0.150 114329 username zare 114329 mac 114329 bytes_out 0 114329 bytes_in 0 114329 station_ip 37.27.17.184 114329 port 48 114329 unique_id port 114329 remote_ip 10.8.1.58 114331 username zare 114331 mac 114331 bytes_out 0 114331 bytes_in 0 114331 station_ip 37.27.17.184 114331 port 106 114331 unique_id port 114331 remote_ip 10.8.0.18 114339 username zare 114339 mac 114339 bytes_out 0 114339 bytes_in 0 114339 station_ip 37.27.17.184 114339 port 101 114339 unique_id port 114339 remote_ip 10.8.0.18 114354 username zare 114354 mac 114354 bytes_out 0 114354 bytes_in 0 114354 station_ip 37.27.17.184 114354 port 68 114354 unique_id port 114354 remote_ip 10.8.0.18 114356 username hashtadani3 114356 mac 114356 bytes_out 0 114356 bytes_in 0 114356 station_ip 5.202.24.10 114356 port 106 114356 unique_id port 114356 remote_ip 10.8.0.154 114358 username hashtadani3 114358 mac 114358 bytes_out 0 114358 bytes_in 0 114358 station_ip 5.202.24.10 114358 port 106 114358 unique_id port 114358 remote_ip 10.8.0.154 114360 username hashtadani3 114360 mac 114360 bytes_out 0 114360 bytes_in 0 114360 station_ip 5.202.24.10 114360 port 112 114360 unique_id port 114360 remote_ip 10.8.0.154 114361 username mirzaei 114361 mac 114361 bytes_out 0 114361 bytes_in 0 114361 station_ip 5.120.96.200 114361 port 48 114361 unique_id port 114361 remote_ip 10.8.1.30 114367 username hashtadani3 114367 mac 114367 bytes_out 0 114367 bytes_in 0 114367 station_ip 5.202.24.10 114367 port 115 114367 unique_id port 114367 remote_ip 10.8.0.154 114371 username mohammadjavad 114371 mac 114371 bytes_out 0 114371 bytes_in 0 114371 station_ip 83.122.253.140 114371 port 111 114371 unique_id port 114371 remote_ip 10.8.0.142 114373 username mirzaei 114373 mac 114373 bytes_out 0 114373 bytes_in 0 114373 station_ip 5.120.96.200 114373 port 106 114373 unique_id port 114373 remote_ip 10.8.0.66 114374 username zare 114374 kill_reason Maximum check online fails reached 114374 mac 114374 bytes_out 0 114374 bytes_in 0 114374 station_ip 37.27.17.184 114374 port 43 114374 unique_id port 114383 username alihosseini1 114383 mac 114383 bytes_out 0 114383 bytes_in 0 114383 station_ip 5.119.54.247 114383 port 110 114383 unique_id port 114383 remote_ip 10.8.0.166 114389 username aminvpn 114389 mac 114389 bytes_out 0 114389 bytes_in 0 114389 station_ip 37.129.74.121 114389 port 112 114389 unique_id port 114389 remote_ip 10.8.0.14 114390 username mehdizare 114390 mac 114390 bytes_out 0 114390 bytes_in 0 114390 station_ip 5.119.132.42 114390 port 113 114390 unique_id port 114390 remote_ip 10.8.0.90 114391 username hamid 114391 mac 114391 bytes_out 0 114391 bytes_in 0 114391 station_ip 37.129.168.244 114391 port 106 114391 unique_id port 114391 remote_ip 10.8.0.106 114393 username jamali 114393 mac 114393 bytes_out 0 114393 bytes_in 0 114393 station_ip 5.119.87.121 114393 port 103 114393 unique_id port 114393 remote_ip 10.8.0.150 114395 username sedighe 114395 mac 114395 bytes_out 0 114395 bytes_in 0 114395 station_ip 83.123.190.14 114395 port 110 114395 unique_id port 114340 remote_ip 10.8.0.18 114341 username zare 114341 mac 114341 bytes_out 0 114341 bytes_in 0 114341 station_ip 37.27.17.184 114341 port 101 114341 unique_id port 114341 remote_ip 10.8.0.18 114344 username zare 114344 mac 114344 bytes_out 0 114344 bytes_in 0 114344 station_ip 37.27.17.184 114344 port 48 114344 unique_id port 114344 remote_ip 10.8.1.58 114346 username mirzaei 114346 mac 114346 bytes_out 0 114346 bytes_in 0 114346 station_ip 5.119.142.244 114346 port 68 114346 unique_id port 114348 username amirabbas 114348 unique_id port 114348 terminate_cause User-Request 114348 bytes_out 31587696 114348 bytes_in 901896571 114348 station_ip 37.27.4.241 114348 port 15729310 114348 nas_port_type Virtual 114348 remote_ip 5.5.5.255 114350 username hashtadani3 114350 mac 114350 bytes_out 943286 114350 bytes_in 7682895 114350 station_ip 5.202.24.10 114350 port 113 114350 unique_id port 114350 remote_ip 10.8.0.154 114352 username zare 114352 mac 114352 bytes_out 0 114352 bytes_in 0 114352 station_ip 37.27.17.184 114352 port 106 114352 unique_id port 114352 remote_ip 10.8.0.18 114362 username malekpoir 114362 mac 114362 bytes_out 0 114362 bytes_in 0 114362 station_ip 5.120.117.201 114362 port 49 114362 unique_id port 114362 remote_ip 10.8.1.54 114365 username zare 114365 mac 114365 bytes_out 0 114365 bytes_in 0 114365 station_ip 37.27.17.184 114365 port 106 114365 unique_id port 114365 remote_ip 10.8.0.18 114366 username zare 114366 mac 114366 bytes_out 0 114366 bytes_in 0 114366 station_ip 37.27.17.184 114366 port 116 114366 unique_id port 114366 remote_ip 10.8.0.18 114368 username zare 114368 mac 114368 bytes_out 0 114368 bytes_in 0 114368 station_ip 37.27.17.184 114368 port 43 114368 unique_id port 114368 remote_ip 10.8.1.58 114369 username zare 114369 kill_reason Maximum number of concurrent logins reached 114369 mac 114369 bytes_out 0 114369 bytes_in 0 114369 station_ip 37.27.17.184 114369 port 116 114369 unique_id port 114372 username zare 114372 kill_reason Maximum check online fails reached 114372 mac 114372 bytes_out 0 114372 bytes_in 0 114372 station_ip 37.27.17.184 114372 port 115 114372 unique_id port 114376 username mirzaei 114376 mac 114376 bytes_out 5057 114376 bytes_in 6625 114376 station_ip 5.120.96.200 114376 port 48 114376 unique_id port 114376 remote_ip 10.8.1.30 114377 username amir 114377 mac 114377 bytes_out 0 114377 bytes_in 0 114377 station_ip 83.122.171.165 114377 port 106 114377 unique_id port 114377 remote_ip 10.8.0.50 114379 username rajaei 114379 kill_reason Another user logged on this global unique id 114379 mac 114379 bytes_out 0 114379 bytes_in 0 114379 station_ip 92.114.74.222 114379 port 101 114379 unique_id port 114379 remote_ip 10.8.0.34 114380 username mehdizare 114380 mac 114380 bytes_out 0 114380 bytes_in 0 114380 station_ip 5.119.132.42 114380 port 111 114380 unique_id port 114380 remote_ip 10.8.0.90 114382 username sedighe 114382 mac 114382 bytes_out 0 114382 bytes_in 0 114382 station_ip 83.123.98.250 114382 port 112 114382 unique_id port 114382 remote_ip 10.8.0.146 114384 username sedighe 114384 mac 114384 bytes_out 0 114384 bytes_in 0 114384 station_ip 83.123.190.14 114384 port 111 114384 unique_id port 114384 remote_ip 10.8.0.146 114386 username farhad1 114386 mac 114386 bytes_out 0 114386 bytes_in 0 114386 station_ip 5.120.152.46 114386 port 105 114386 unique_id port 114388 username hashtadani3 114388 mac 114343 username hashtadani3 114343 mac 114343 bytes_out 1782851 114343 bytes_in 23048368 114343 station_ip 5.202.10.13 114343 port 111 114343 unique_id port 114343 remote_ip 10.8.0.154 114345 username zare 114345 mac 114345 bytes_out 0 114345 bytes_in 0 114345 station_ip 37.27.17.184 114345 port 48 114345 unique_id port 114345 remote_ip 10.8.1.58 114347 username kordestani 114347 mac 114347 bytes_out 740550 114347 bytes_in 7004405 114347 station_ip 151.235.82.196 114347 port 106 114347 unique_id port 114347 remote_ip 10.8.0.134 114349 username zare 114349 mac 114349 bytes_out 0 114349 bytes_in 0 114349 station_ip 37.27.17.184 114349 port 68 114349 unique_id port 114349 remote_ip 10.8.0.18 114351 username hashtadani3 114351 mac 114351 bytes_out 0 114351 bytes_in 0 114351 station_ip 5.202.24.10 114351 port 68 114351 unique_id port 114351 remote_ip 10.8.0.154 114353 username malekpoir 114353 mac 114353 bytes_out 76732 114353 bytes_in 49466 114353 station_ip 5.120.117.201 114353 port 112 114353 unique_id port 114353 remote_ip 10.8.0.58 114355 username mehdizare 114355 mac 114355 bytes_out 0 114355 bytes_in 0 114355 station_ip 5.119.132.42 114355 port 43 114355 unique_id port 114355 remote_ip 10.8.1.42 114357 username musa 114357 kill_reason Another user logged on this global unique id 114357 mac 114357 bytes_out 0 114357 bytes_in 0 114357 station_ip 37.129.157.177 114357 port 100 114357 unique_id port 114357 remote_ip 10.8.0.6 114359 username zare 114359 kill_reason Maximum check online fails reached 114359 mac 114359 bytes_out 0 114359 bytes_in 0 114359 station_ip 37.27.17.184 114359 port 68 114359 unique_id port 114363 username mehdizare 114363 mac 114363 bytes_out 20480 114363 bytes_in 33966 114363 station_ip 5.119.132.42 114363 port 106 114363 unique_id port 114363 remote_ip 10.8.0.90 114364 username houshang 114364 mac 114364 bytes_out 34297 114364 bytes_in 80628 114364 station_ip 5.120.139.54 114364 port 112 114364 unique_id port 114364 remote_ip 10.8.0.22 114370 username mirzaei 114370 mac 114370 bytes_out 20874 114370 bytes_in 23218 114370 station_ip 5.120.96.200 114370 port 106 114370 unique_id port 114370 remote_ip 10.8.0.66 114375 username mehdizare 114375 mac 114375 bytes_out 0 114375 bytes_in 0 114375 station_ip 5.119.132.42 114375 port 112 114375 unique_id port 114375 remote_ip 10.8.0.90 114378 username sedighe 114378 mac 114378 bytes_out 0 114378 bytes_in 0 114378 station_ip 83.123.98.250 114378 port 113 114378 unique_id port 114378 remote_ip 10.8.0.146 114381 username hashtadani3 114381 mac 114381 bytes_out 0 114381 bytes_in 0 114381 station_ip 5.202.24.10 114381 port 111 114381 unique_id port 114381 remote_ip 10.8.0.154 114385 username rajaei 114385 mac 114385 bytes_out 0 114385 bytes_in 0 114385 station_ip 92.114.74.222 114385 port 101 114385 unique_id port 114387 username hashtadani3 114387 mac 114387 bytes_out 0 114387 bytes_in 0 114387 station_ip 5.202.24.10 114387 port 101 114387 unique_id port 114387 remote_ip 10.8.0.154 114392 username mehdizare 114392 mac 114392 bytes_out 0 114392 bytes_in 0 114392 station_ip 5.119.132.42 114392 port 101 114392 unique_id port 114392 remote_ip 10.8.0.90 114394 username hashtadani3 114394 mac 114394 bytes_out 0 114394 bytes_in 0 114394 station_ip 5.202.24.10 114394 port 101 114394 unique_id port 114394 remote_ip 10.8.0.154 114400 username hashtadani3 114400 mac 114400 bytes_out 0 114388 bytes_out 0 114388 bytes_in 0 114388 station_ip 5.202.24.10 114388 port 101 114388 unique_id port 114388 remote_ip 10.8.0.154 114397 username sedighe 114397 mac 114397 bytes_out 0 114397 bytes_in 0 114397 station_ip 83.123.190.14 114397 port 103 114397 unique_id port 114397 remote_ip 10.8.0.146 114399 username sedighe 114399 mac 114399 bytes_out 0 114399 bytes_in 0 114399 station_ip 83.123.190.14 114399 port 106 114399 unique_id port 114399 remote_ip 10.8.0.146 114402 username mehdizare 114402 mac 114402 bytes_out 0 114402 bytes_in 0 114402 station_ip 5.119.132.42 114402 port 101 114402 unique_id port 114402 remote_ip 10.8.0.90 114403 username ahmadi 114403 unique_id port 114403 terminate_cause User-Request 114403 bytes_out 81746 114403 bytes_in 1305012 114403 station_ip 37.129.22.204 114403 port 15729316 114403 nas_port_type Virtual 114403 remote_ip 5.5.5.174 114409 username mehdizare 114409 mac 114409 bytes_out 0 114409 bytes_in 0 114409 station_ip 5.119.132.42 114409 port 105 114409 unique_id port 114409 remote_ip 10.8.0.90 114411 username hashtadani3 114411 mac 114411 bytes_out 0 114411 bytes_in 0 114411 station_ip 5.202.24.10 114411 port 101 114411 unique_id port 114411 remote_ip 10.8.0.154 114415 username hashtadani3 114415 mac 114415 bytes_out 0 114415 bytes_in 0 114415 station_ip 5.202.16.166 114415 port 112 114415 unique_id port 114415 remote_ip 10.8.0.154 114418 username hamid.e 114418 unique_id port 114418 terminate_cause User-Request 114418 bytes_out 3581370 114418 bytes_in 19691698 114418 station_ip 37.27.63.213 114418 port 15729314 114418 nas_port_type Virtual 114418 remote_ip 5.5.5.171 114424 username alihosseini1 114424 mac 114424 bytes_out 0 114424 bytes_in 0 114424 station_ip 5.119.54.247 114424 port 106 114424 unique_id port 114424 remote_ip 10.8.0.166 114427 username hashtadani3 114427 kill_reason Maximum check online fails reached 114427 mac 114427 bytes_out 0 114427 bytes_in 0 114427 station_ip 5.202.16.166 114427 port 48 114427 unique_id port 114431 username aminvpn 114431 unique_id port 114431 terminate_cause User-Request 114431 bytes_out 1025523 114431 bytes_in 10006613 114431 station_ip 5.126.172.241 114431 port 15729318 114431 nas_port_type Virtual 114431 remote_ip 5.5.5.187 114433 username sedighe 114433 mac 114433 bytes_out 0 114433 bytes_in 0 114433 station_ip 83.123.190.14 114433 port 112 114433 unique_id port 114433 remote_ip 10.8.0.146 114435 username sedighe 114435 mac 114435 bytes_out 10397 114435 bytes_in 13565 114435 station_ip 83.123.190.14 114435 port 49 114435 unique_id port 114435 remote_ip 10.8.1.78 114436 username sedighe 114436 mac 114436 bytes_out 0 114436 bytes_in 0 114436 station_ip 83.123.190.14 114436 port 49 114436 unique_id port 114436 remote_ip 10.8.1.78 114438 username alirr 114438 unique_id port 114438 terminate_cause User-Request 114438 bytes_out 1846146 114438 bytes_in 26872394 114438 station_ip 5.120.62.218 114438 port 15729315 114438 nas_port_type Virtual 114438 remote_ip 5.5.5.173 114443 username jamali 114443 mac 114443 bytes_out 0 114443 bytes_in 0 114443 station_ip 5.119.87.121 114443 port 103 114443 unique_id port 114445 username sedighe 114445 mac 114445 bytes_out 3295 114445 bytes_in 6377 114445 station_ip 113.203.84.216 114445 port 49 114445 unique_id port 114445 remote_ip 10.8.1.78 114454 username hashtadani3 114454 mac 114454 bytes_out 0 114454 bytes_in 0 114454 station_ip 37.129.6.74 114454 port 110 114454 unique_id port 114395 remote_ip 10.8.0.146 114396 username sedighe 114396 mac 114396 bytes_out 0 114396 bytes_in 0 114396 station_ip 83.123.190.14 114396 port 101 114396 unique_id port 114396 remote_ip 10.8.0.146 114398 username alihosseini1 114398 mac 114398 bytes_out 0 114398 bytes_in 0 114398 station_ip 5.119.54.247 114398 port 116 114398 unique_id port 114398 remote_ip 10.8.0.166 114401 username mahdiyehalizadeh 114401 mac 114401 bytes_out 0 114401 bytes_in 0 114401 station_ip 83.123.145.35 114401 port 105 114401 unique_id port 114401 remote_ip 10.8.0.82 114404 username sabaghnezhad 114404 mac 114404 bytes_out 755557 114404 bytes_in 2831687 114404 station_ip 37.129.77.115 114404 port 45 114404 unique_id port 114404 remote_ip 10.8.1.130 114405 username mirzaei 114405 mac 114405 bytes_out 164519 114405 bytes_in 383657 114405 station_ip 5.120.137.251 114405 port 48 114405 unique_id port 114405 remote_ip 10.8.1.30 114407 username sedighe 114407 mac 114407 bytes_out 0 114407 bytes_in 0 114407 station_ip 83.123.190.14 114407 port 110 114407 unique_id port 114407 remote_ip 10.8.0.146 114408 username mirzaei 114408 mac 114408 bytes_out 0 114408 bytes_in 0 114408 station_ip 5.120.137.251 114408 port 45 114408 unique_id port 114408 remote_ip 10.8.1.30 114412 username hashtadani3 114412 mac 114412 bytes_out 0 114412 bytes_in 0 114412 station_ip 5.202.16.166 114412 port 111 114412 unique_id port 114412 remote_ip 10.8.0.154 114413 username arman1 114413 mac 114413 bytes_out 0 114413 bytes_in 0 114413 station_ip 5.119.219.101 114413 port 105 114413 unique_id port 114413 remote_ip 10.8.0.110 114414 username hashtadani3 114414 mac 114414 bytes_out 0 114414 bytes_in 0 114414 station_ip 5.202.16.166 114414 port 105 114414 unique_id port 114414 remote_ip 10.8.0.154 114416 username alihosseini1 114416 mac 114416 bytes_out 0 114416 bytes_in 0 114416 station_ip 5.119.54.247 114416 port 112 114416 unique_id port 114416 remote_ip 10.8.0.166 114419 username sabaghnezhad 114419 mac 114419 bytes_out 0 114419 bytes_in 0 114419 station_ip 37.129.77.115 114419 port 106 114419 unique_id port 114419 remote_ip 10.8.0.186 114423 username aminvpn 114423 mac 114423 bytes_out 0 114423 bytes_in 0 114423 station_ip 37.129.74.121 114423 port 49 114423 unique_id port 114423 remote_ip 10.8.1.6 114425 username alihosseini1 114425 mac 114425 bytes_out 0 114425 bytes_in 0 114425 station_ip 5.119.54.247 114425 port 106 114425 unique_id port 114425 remote_ip 10.8.0.166 114428 username hashtadani3 114428 mac 114428 bytes_out 0 114428 bytes_in 0 114428 station_ip 5.202.16.166 114428 port 49 114428 unique_id port 114428 remote_ip 10.8.1.94 114432 username jamali 114432 kill_reason Another user logged on this global unique id 114432 mac 114432 bytes_out 0 114432 bytes_in 0 114432 station_ip 5.119.87.121 114432 port 103 114432 unique_id port 114432 remote_ip 10.8.0.150 114437 username mehdizare 114437 mac 114437 bytes_out 94593 114437 bytes_in 40420 114437 station_ip 5.119.132.42 114437 port 110 114437 unique_id port 114437 remote_ip 10.8.0.90 114439 username hashtadani3 114439 mac 114439 bytes_out 0 114439 bytes_in 0 114439 station_ip 5.202.24.10 114439 port 110 114439 unique_id port 114439 remote_ip 10.8.0.154 114440 username sedighe 114440 mac 114440 bytes_out 45711 114440 bytes_in 37526 114440 station_ip 83.123.190.14 114440 port 50 114440 unique_id port 114440 remote_ip 10.8.1.78 114400 bytes_in 0 114400 station_ip 5.202.24.10 114400 port 106 114400 unique_id port 114400 remote_ip 10.8.0.154 114406 username alihosseini1 114406 mac 114406 bytes_out 0 114406 bytes_in 0 114406 station_ip 5.119.54.247 114406 port 111 114406 unique_id port 114406 remote_ip 10.8.0.166 114410 username arman1 114410 mac 114410 bytes_out 0 114410 bytes_in 0 114410 station_ip 5.120.26.122 114410 port 101 114410 unique_id port 114410 remote_ip 10.8.0.110 114417 username hashtadani3 114417 mac 114417 bytes_out 0 114417 bytes_in 0 114417 station_ip 5.202.16.166 114417 port 113 114417 unique_id port 114417 remote_ip 10.8.0.154 114420 username houshang 114420 mac 114420 bytes_out 0 114420 bytes_in 0 114420 station_ip 5.120.139.54 114420 port 101 114420 unique_id port 114420 remote_ip 10.8.0.22 114421 username hashtadani3 114421 mac 114421 bytes_out 0 114421 bytes_in 0 114421 station_ip 5.202.16.166 114421 port 48 114421 unique_id port 114421 remote_ip 10.8.1.94 114422 username musa 114422 kill_reason Another user logged on this global unique id 114422 mac 114422 bytes_out 0 114422 bytes_in 0 114422 station_ip 37.129.157.177 114422 port 100 114422 unique_id port 114426 username hashtadani3 114426 kill_reason Maximum check online fails reached 114426 mac 114426 bytes_out 0 114426 bytes_in 0 114426 station_ip 5.202.16.166 114426 port 101 114426 unique_id port 114429 username hashtadani3 114429 mac 114429 bytes_out 0 114429 bytes_in 0 114429 station_ip 5.202.16.166 114429 port 106 114429 unique_id port 114429 remote_ip 10.8.0.154 114430 username hashtadani3 114430 mac 114430 bytes_out 0 114430 bytes_in 0 114430 station_ip 5.202.16.166 114430 port 106 114430 unique_id port 114430 remote_ip 10.8.0.154 114434 username hashtadani3 114434 mac 114434 bytes_out 0 114434 bytes_in 0 114434 station_ip 5.202.16.166 114434 port 106 114434 unique_id port 114434 remote_ip 10.8.0.154 114441 username sedighe 114441 mac 114441 bytes_out 0 114441 bytes_in 0 114441 station_ip 83.123.190.14 114441 port 49 114441 unique_id port 114441 remote_ip 10.8.1.78 114442 username sedighe 114442 mac 114442 bytes_out 8882 114442 bytes_in 7066 114442 station_ip 113.203.84.216 114442 port 50 114442 unique_id port 114442 remote_ip 10.8.1.78 114444 username hashtadani3 114444 mac 114444 bytes_out 0 114444 bytes_in 0 114444 station_ip 5.202.24.10 114444 port 103 114444 unique_id port 114444 remote_ip 10.8.0.154 114448 username amir 114448 mac 114448 bytes_out 0 114448 bytes_in 0 114448 station_ip 46.225.214.132 114448 port 50 114448 unique_id port 114448 remote_ip 10.8.1.22 114449 username avaanna 114449 mac 114449 bytes_out 0 114449 bytes_in 0 114449 station_ip 83.123.87.2 114449 port 108 114449 unique_id port 114449 remote_ip 10.8.0.98 114451 username alihosseini1 114451 kill_reason Another user logged on this global unique id 114451 mac 114451 bytes_out 0 114451 bytes_in 0 114451 station_ip 5.119.54.247 114451 port 106 114451 unique_id port 114451 remote_ip 10.8.0.166 114452 username mehdizare 114452 mac 114452 bytes_out 0 114452 bytes_in 0 114452 station_ip 5.119.132.42 114452 port 110 114452 unique_id port 114452 remote_ip 10.8.0.90 114453 username hashtadani3 114453 mac 114453 bytes_out 0 114453 bytes_in 0 114453 station_ip 5.202.24.10 114453 port 105 114453 unique_id port 114453 remote_ip 10.8.0.154 114456 username hashtadani3 114456 mac 114456 bytes_out 0 114456 bytes_in 0 114446 username amir 114446 mac 114446 bytes_out 0 114446 bytes_in 0 114446 station_ip 46.225.214.132 114446 port 50 114446 unique_id port 114446 remote_ip 10.8.1.22 114447 username mosi 114447 mac 114447 bytes_out 0 114447 bytes_in 0 114447 station_ip 151.235.124.217 114447 port 105 114447 unique_id port 114447 remote_ip 10.8.0.138 114450 username sedighe 114450 mac 114450 bytes_out 18399 114450 bytes_in 14078 114450 station_ip 113.203.84.216 114450 port 49 114450 unique_id port 114450 remote_ip 10.8.1.78 114455 username mehdizare 114455 mac 114455 bytes_out 0 114455 bytes_in 0 114455 station_ip 5.119.132.42 114455 port 108 114455 unique_id port 114455 remote_ip 10.8.0.90 114457 username sedighe 114457 mac 114457 bytes_out 41646 114457 bytes_in 37660 114457 station_ip 113.203.84.216 114457 port 50 114457 unique_id port 114457 remote_ip 10.8.1.78 114465 username arman1 114465 kill_reason Another user logged on this global unique id 114465 mac 114465 bytes_out 0 114465 bytes_in 0 114465 station_ip 5.119.231.186 114465 port 111 114465 unique_id port 114465 remote_ip 10.8.0.110 114466 username sedighe 114466 mac 114466 bytes_out 0 114466 bytes_in 0 114466 station_ip 113.203.84.216 114466 port 110 114466 unique_id port 114466 remote_ip 10.8.0.146 114468 username alihosseini1 114468 mac 114468 bytes_out 0 114468 bytes_in 0 114468 station_ip 5.119.54.247 114468 port 106 114468 unique_id port 114471 username aminvpn 114471 unique_id port 114471 terminate_cause User-Request 114471 bytes_out 524546 114471 bytes_in 16218876 114471 station_ip 5.120.60.171 114471 port 15729329 114471 nas_port_type Virtual 114471 remote_ip 5.5.5.255 114472 username alipour 114472 mac 114472 bytes_out 0 114472 bytes_in 0 114472 station_ip 113.203.15.247 114472 port 109 114472 unique_id port 114472 remote_ip 10.8.0.102 114476 username alirr 114476 unique_id port 114476 terminate_cause Lost-Carrier 114476 bytes_out 1298512 114476 bytes_in 24060752 114476 station_ip 5.120.62.218 114476 port 15729319 114476 nas_port_type Virtual 114476 remote_ip 5.5.5.190 114477 username amirabbas 114477 unique_id port 114477 terminate_cause User-Request 114477 bytes_out 1398550 114477 bytes_in 32245920 114477 station_ip 37.27.4.241 114477 port 15729328 114477 nas_port_type Virtual 114477 remote_ip 5.5.5.219 114483 username arman1 114483 mac 114483 bytes_out 0 114483 bytes_in 0 114483 station_ip 5.119.231.186 114483 port 111 114483 unique_id port 114485 username hashtadani3 114485 mac 114485 bytes_out 0 114485 bytes_in 0 114485 station_ip 5.202.24.10 114485 port 106 114485 unique_id port 114485 remote_ip 10.8.0.154 114486 username zare 114486 mac 114486 bytes_out 0 114486 bytes_in 0 114486 station_ip 37.27.17.184 114486 port 106 114486 unique_id port 114486 remote_ip 10.8.0.18 114487 username zare 114487 mac 114487 bytes_out 0 114487 bytes_in 0 114487 station_ip 37.27.17.184 114487 port 106 114487 unique_id port 114487 remote_ip 10.8.0.18 114493 username zare 114493 mac 114493 bytes_out 0 114493 bytes_in 0 114493 station_ip 37.27.17.184 114493 port 116 114493 unique_id port 114493 remote_ip 10.8.0.18 114498 username zare 114498 mac 114498 bytes_out 0 114498 bytes_in 0 114498 station_ip 37.27.17.184 114498 port 108 114498 unique_id port 114498 remote_ip 10.8.0.18 114499 username hashtadani3 114499 mac 114499 bytes_out 0 114499 bytes_in 0 114499 station_ip 5.202.24.10 114499 port 108 114499 unique_id port 114499 remote_ip 10.8.0.154 114454 remote_ip 10.8.0.154 114460 username hashtadani3 114460 mac 114460 bytes_out 0 114460 bytes_in 0 114460 station_ip 5.202.24.10 114460 port 105 114460 unique_id port 114460 remote_ip 10.8.0.154 114464 username sedighe 114464 mac 114464 bytes_out 19006 114464 bytes_in 25275 114464 station_ip 113.203.84.216 114464 port 49 114464 unique_id port 114464 remote_ip 10.8.1.78 114467 username amir 114467 mac 114467 bytes_out 0 114467 bytes_in 0 114467 station_ip 46.225.214.132 114467 port 113 114467 unique_id port 114467 remote_ip 10.8.0.50 114474 username hashtadani3 114474 mac 114474 bytes_out 0 114474 bytes_in 0 114474 station_ip 5.202.24.10 114474 port 109 114474 unique_id port 114474 remote_ip 10.8.0.154 114478 username morteza 114478 mac 114478 bytes_out 0 114478 bytes_in 0 114478 station_ip 37.129.228.223 114478 port 105 114478 unique_id port 114478 remote_ip 10.8.0.46 114479 username houshang 114479 mac 114479 bytes_out 0 114479 bytes_in 0 114479 station_ip 5.120.139.54 114479 port 112 114479 unique_id port 114479 remote_ip 10.8.0.22 114481 username bcboard 114481 unique_id port 114481 terminate_cause Lost-Carrier 114481 bytes_out 3490859 114481 bytes_in 32848882 114481 station_ip 113.203.6.206 114481 port 15729317 114481 nas_port_type Virtual 114481 remote_ip 5.5.5.183 114482 username alihosseini1 114482 mac 114482 bytes_out 60401 114482 bytes_in 145617 114482 station_ip 5.119.54.247 114482 port 106 114482 unique_id port 114482 remote_ip 10.8.0.166 114484 username zare 114484 mac 114484 bytes_out 0 114484 bytes_in 0 114484 station_ip 37.27.17.184 114484 port 113 114484 unique_id port 114484 remote_ip 10.8.0.18 114488 username morteza 114488 kill_reason Another user logged on this global unique id 114488 mac 114488 bytes_out 0 114488 bytes_in 0 114488 station_ip 37.129.228.223 114488 port 109 114488 unique_id port 114488 remote_ip 10.8.0.202 114489 username hashtadani3 114489 mac 114489 bytes_out 0 114489 bytes_in 0 114489 station_ip 5.202.24.10 114489 port 116 114489 unique_id port 114489 remote_ip 10.8.0.154 114492 username amir 114492 mac 114492 bytes_out 58045 114492 bytes_in 456282 114492 station_ip 46.225.214.132 114492 port 113 114492 unique_id port 114492 remote_ip 10.8.0.50 114495 username alihosseini1 114495 mac 114495 bytes_out 0 114495 bytes_in 0 114495 station_ip 5.119.54.247 114495 port 105 114495 unique_id port 114495 remote_ip 10.8.0.166 114503 username houshang 114503 mac 114503 bytes_out 0 114503 bytes_in 0 114503 station_ip 5.120.139.54 114503 port 108 114503 unique_id port 114503 remote_ip 10.8.0.22 114506 username zare 114506 mac 114506 bytes_out 0 114506 bytes_in 0 114506 station_ip 37.27.17.184 114506 port 49 114506 unique_id port 114506 remote_ip 10.8.1.58 114507 username zare 114507 mac 114507 bytes_out 0 114507 bytes_in 0 114507 station_ip 37.27.17.184 114507 port 49 114507 unique_id port 114507 remote_ip 10.8.1.58 114511 username mehdizare 114511 mac 114511 bytes_out 128052 114511 bytes_in 110382 114511 station_ip 5.119.132.42 114511 port 50 114511 unique_id port 114511 remote_ip 10.8.1.42 114517 username alihosseini1 114517 mac 114517 bytes_out 0 114517 bytes_in 0 114517 station_ip 5.119.54.247 114517 port 112 114517 unique_id port 114517 remote_ip 10.8.0.166 114528 username mohammadmahdi 114528 mac 114528 bytes_out 0 114528 bytes_in 0 114528 station_ip 5.120.147.236 114528 port 105 114528 unique_id port 114456 station_ip 5.202.24.10 114456 port 105 114456 unique_id port 114456 remote_ip 10.8.0.154 114458 username amir 114458 mac 114458 bytes_out 109140 114458 bytes_in 453251 114458 station_ip 46.225.214.132 114458 port 113 114458 unique_id port 114458 remote_ip 10.8.0.50 114459 username hashtadani3 114459 mac 114459 bytes_out 0 114459 bytes_in 0 114459 station_ip 5.202.24.10 114459 port 105 114459 unique_id port 114459 remote_ip 10.8.0.154 114461 username hashtadani3 114461 mac 114461 bytes_out 0 114461 bytes_in 0 114461 station_ip 5.202.24.10 114461 port 105 114461 unique_id port 114461 remote_ip 10.8.0.154 114462 username avaanna 114462 mac 114462 bytes_out 0 114462 bytes_in 0 114462 station_ip 83.123.87.2 114462 port 116 114462 unique_id port 114462 remote_ip 10.8.0.98 114463 username hashtadani3 114463 mac 114463 bytes_out 0 114463 bytes_in 0 114463 station_ip 5.202.24.10 114463 port 105 114463 unique_id port 114463 remote_ip 10.8.0.154 114469 username sedighe 114469 mac 114469 bytes_out 89011 114469 bytes_in 172782 114469 station_ip 83.122.211.111 114469 port 116 114469 unique_id port 114469 remote_ip 10.8.0.146 114470 username alihosseini1 114470 mac 114470 bytes_out 0 114470 bytes_in 0 114470 station_ip 5.119.54.247 114470 port 106 114470 unique_id port 114470 remote_ip 10.8.0.166 114473 username hashtadani3 114473 mac 114473 bytes_out 0 114473 bytes_in 0 114473 station_ip 5.202.24.10 114473 port 109 114473 unique_id port 114473 remote_ip 10.8.0.154 114475 username hashtadani3 114475 mac 114475 bytes_out 0 114475 bytes_in 0 114475 station_ip 5.202.24.10 114475 port 109 114475 unique_id port 114475 remote_ip 10.8.0.154 114480 username amir 114480 mac 114480 bytes_out 0 114480 bytes_in 0 114480 station_ip 46.225.214.132 114480 port 105 114480 unique_id port 114480 remote_ip 10.8.0.50 114490 username zare 114490 kill_reason Maximum check online fails reached 114490 mac 114490 bytes_out 0 114490 bytes_in 0 114490 station_ip 37.27.17.184 114490 port 106 114490 unique_id port 114491 username zare 114491 mac 114491 bytes_out 0 114491 bytes_in 0 114491 station_ip 37.27.17.184 114491 port 116 114491 unique_id port 114491 remote_ip 10.8.0.18 114494 username avaanna 114494 mac 114494 bytes_out 0 114494 bytes_in 0 114494 station_ip 83.123.87.2 114494 port 108 114494 unique_id port 114494 remote_ip 10.8.0.98 114496 username aminvpn 114496 mac 114496 bytes_out 304321 114496 bytes_in 1927822 114496 station_ip 83.122.142.99 114496 port 111 114496 unique_id port 114496 remote_ip 10.8.0.14 114497 username zare 114497 mac 114497 bytes_out 0 114497 bytes_in 0 114497 station_ip 37.27.17.184 114497 port 108 114497 unique_id port 114497 remote_ip 10.8.0.18 114501 username hashtadani3 114501 mac 114501 bytes_out 0 114501 bytes_in 0 114501 station_ip 5.202.24.10 114501 port 108 114501 unique_id port 114501 remote_ip 10.8.0.154 114502 username houshang 114502 mac 114502 bytes_out 0 114502 bytes_in 0 114502 station_ip 5.120.139.54 114502 port 112 114502 unique_id port 114502 remote_ip 10.8.0.22 114504 username hashtadani3 114504 mac 114504 bytes_out 0 114504 bytes_in 0 114504 station_ip 5.202.24.10 114504 port 108 114504 unique_id port 114504 remote_ip 10.8.0.154 114508 username amir 114508 mac 114508 bytes_out 0 114508 bytes_in 0 114508 station_ip 46.225.214.132 114508 port 109 114508 unique_id port 114500 username morteza 114500 mac 114500 bytes_out 0 114500 bytes_in 0 114500 station_ip 37.129.228.223 114500 port 109 114500 unique_id port 114505 username jamali 114505 mac 114505 bytes_out 0 114505 bytes_in 0 114505 station_ip 5.119.87.121 114505 port 103 114505 unique_id port 114505 remote_ip 10.8.0.150 114509 username hashtadani3 114509 mac 114509 bytes_out 0 114509 bytes_in 0 114509 station_ip 5.202.24.10 114509 port 111 114509 unique_id port 114509 remote_ip 10.8.0.154 114513 username zare 114513 mac 114513 bytes_out 0 114513 bytes_in 0 114513 station_ip 37.27.17.184 114513 port 111 114513 unique_id port 114513 remote_ip 10.8.0.18 114514 username alihosseini1 114514 mac 114514 bytes_out 0 114514 bytes_in 0 114514 station_ip 5.119.54.247 114514 port 105 114514 unique_id port 114514 remote_ip 10.8.0.166 114515 username sedighe 114515 mac 114515 bytes_out 0 114515 bytes_in 0 114515 station_ip 113.203.1.159 114515 port 109 114515 unique_id port 114515 remote_ip 10.8.0.146 114519 username alihosseini1 114519 mac 114519 bytes_out 0 114519 bytes_in 0 114519 station_ip 5.119.54.247 114519 port 51 114519 unique_id port 114519 remote_ip 10.8.1.106 114522 username zare 114522 mac 114522 bytes_out 0 114522 bytes_in 0 114522 station_ip 37.27.17.184 114522 port 112 114522 unique_id port 114522 remote_ip 10.8.0.18 114523 username zare 114523 mac 114523 bytes_out 0 114523 bytes_in 0 114523 station_ip 37.27.17.184 114523 port 109 114523 unique_id port 114523 remote_ip 10.8.0.18 114525 username hashtadani3 114525 mac 114525 bytes_out 0 114525 bytes_in 0 114525 station_ip 5.202.24.10 114525 port 109 114525 unique_id port 114525 remote_ip 10.8.0.154 114527 username alihosseini1 114527 mac 114527 bytes_out 0 114527 bytes_in 0 114527 station_ip 5.119.54.247 114527 port 112 114527 unique_id port 114527 remote_ip 10.8.0.166 114530 username rostami 114530 kill_reason Another user logged on this global unique id 114530 mac 114530 bytes_out 0 114530 bytes_in 0 114530 station_ip 5.120.19.235 114530 port 50 114530 unique_id port 114530 remote_ip 10.8.1.142 114532 username alihosseini1 114532 mac 114532 bytes_out 0 114532 bytes_in 0 114532 station_ip 5.119.54.247 114532 port 112 114532 unique_id port 114532 remote_ip 10.8.0.166 114533 username amir 114533 mac 114533 bytes_out 0 114533 bytes_in 0 114533 station_ip 46.225.214.132 114533 port 112 114533 unique_id port 114533 remote_ip 10.8.0.50 114535 username zare 114535 kill_reason Another user logged on this global unique id 114535 mac 114535 bytes_out 0 114535 bytes_in 0 114535 station_ip 37.27.17.184 114535 port 109 114535 unique_id port 114535 remote_ip 10.8.0.18 114536 username aminvpn 114536 mac 114536 bytes_out 0 114536 bytes_in 0 114536 station_ip 113.203.49.63 114536 port 108 114536 unique_id port 114536 remote_ip 10.8.0.14 114538 username hashtadani3 114538 mac 114538 bytes_out 221862 114538 bytes_in 1166896 114538 station_ip 5.202.24.10 114538 port 112 114538 unique_id port 114538 remote_ip 10.8.0.154 114539 username malekpoir 114539 mac 114539 bytes_out 0 114539 bytes_in 0 114539 station_ip 5.120.117.201 114539 port 114 114539 unique_id port 114539 remote_ip 10.8.0.58 114540 username hashtadani3 114540 mac 114540 bytes_out 0 114540 bytes_in 0 114540 station_ip 5.202.24.10 114540 port 118 114540 unique_id port 114540 remote_ip 10.8.0.154 114544 username hashtadani3 114544 mac 114508 remote_ip 10.8.0.50 114510 username zare 114510 mac 114510 bytes_out 0 114510 bytes_in 0 114510 station_ip 37.27.17.184 114510 port 109 114510 unique_id port 114510 remote_ip 10.8.0.18 114512 username zare 114512 mac 114512 bytes_out 0 114512 bytes_in 0 114512 station_ip 37.27.17.184 114512 port 111 114512 unique_id port 114512 remote_ip 10.8.0.18 114516 username zare 114516 kill_reason Maximum check online fails reached 114516 mac 114516 bytes_out 0 114516 bytes_in 0 114516 station_ip 37.27.17.184 114516 port 111 114516 unique_id port 114518 username zare 114518 mac 114518 bytes_out 0 114518 bytes_in 0 114518 station_ip 37.27.17.184 114518 port 109 114518 unique_id port 114518 remote_ip 10.8.0.18 114520 username hashtadani3 114520 mac 114520 bytes_out 0 114520 bytes_in 0 114520 station_ip 5.202.24.10 114520 port 109 114520 unique_id port 114520 remote_ip 10.8.0.154 114521 username hashtadani3 114521 mac 114521 bytes_out 0 114521 bytes_in 0 114521 station_ip 5.202.24.10 114521 port 109 114521 unique_id port 114521 remote_ip 10.8.0.154 114524 username alihosseini1 114524 mac 114524 bytes_out 0 114524 bytes_in 0 114524 station_ip 5.119.54.247 114524 port 109 114524 unique_id port 114524 remote_ip 10.8.0.166 114526 username amir 114526 mac 114526 bytes_out 0 114526 bytes_in 0 114526 station_ip 46.225.214.132 114526 port 112 114526 unique_id port 114526 remote_ip 10.8.0.50 114529 username alihosseini1 114529 mac 114529 bytes_out 0 114529 bytes_in 0 114529 station_ip 5.119.54.247 114529 port 105 114529 unique_id port 114529 remote_ip 10.8.0.166 114531 username hashtadani3 114531 mac 114531 bytes_out 501542 114531 bytes_in 4354024 114531 station_ip 5.202.24.10 114531 port 105 114531 unique_id port 114531 remote_ip 10.8.0.154 114541 username amir 114541 mac 114541 bytes_out 58614 114541 bytes_in 490085 114541 station_ip 46.225.214.132 114541 port 112 114541 unique_id port 114541 remote_ip 10.8.0.50 114549 username hashtadani3 114549 mac 114549 bytes_out 0 114549 bytes_in 0 114549 station_ip 37.129.28.250 114549 port 116 114549 unique_id port 114549 remote_ip 10.8.0.154 114551 username amir 114551 mac 114551 bytes_out 0 114551 bytes_in 0 114551 station_ip 46.225.214.132 114551 port 53 114551 unique_id port 114551 remote_ip 10.8.1.22 114552 username alihosseini1 114552 mac 114552 bytes_out 207187 114552 bytes_in 2237649 114552 station_ip 5.119.54.247 114552 port 52 114552 unique_id port 114552 remote_ip 10.8.1.106 114555 username hashtadani3 114555 mac 114555 bytes_out 0 114555 bytes_in 0 114555 station_ip 37.129.28.250 114555 port 116 114555 unique_id port 114555 remote_ip 10.8.0.154 114560 username hashtadani3 114560 mac 114560 bytes_out 0 114560 bytes_in 0 114560 station_ip 37.129.28.250 114560 port 116 114560 unique_id port 114560 remote_ip 10.8.0.154 114562 username bcboard 114562 unique_id port 114562 terminate_cause Lost-Carrier 114562 bytes_out 2127552 114562 bytes_in 27029913 114562 station_ip 113.203.6.206 114562 port 15729331 114562 nas_port_type Virtual 114562 remote_ip 5.5.5.144 114566 username hashtadani3 114566 mac 114566 bytes_out 0 114566 bytes_in 0 114566 station_ip 37.129.28.250 114566 port 51 114566 unique_id port 114566 remote_ip 10.8.1.94 114567 username hashtadani3 114567 mac 114567 bytes_out 0 114567 bytes_in 0 114567 station_ip 37.129.28.250 114567 port 50 114567 unique_id port 114567 remote_ip 10.8.1.94 114528 remote_ip 10.8.0.54 114534 username alihosseini1 114534 mac 114534 bytes_out 0 114534 bytes_in 0 114534 station_ip 5.119.54.247 114534 port 113 114534 unique_id port 114534 remote_ip 10.8.0.166 114537 username alihosseini1 114537 mac 114537 bytes_out 0 114537 bytes_in 0 114537 station_ip 5.119.54.247 114537 port 108 114537 unique_id port 114537 remote_ip 10.8.0.166 114542 username hashtadani3 114542 mac 114542 bytes_out 0 114542 bytes_in 0 114542 station_ip 37.129.28.250 114542 port 114 114542 unique_id port 114542 remote_ip 10.8.0.154 114543 username rostami 114543 mac 114543 bytes_out 0 114543 bytes_in 0 114543 station_ip 5.120.19.235 114543 port 50 114543 unique_id port 114545 username hashtadani3 114545 mac 114545 bytes_out 0 114545 bytes_in 0 114545 station_ip 37.129.28.250 114545 port 114 114545 unique_id port 114545 remote_ip 10.8.0.154 114547 username mirzaei 114547 mac 114547 bytes_out 138124 114547 bytes_in 749769 114547 station_ip 5.120.142.4 114547 port 116 114547 unique_id port 114547 remote_ip 10.8.0.66 114548 username naeimeh 114548 kill_reason Another user logged on this global unique id 114548 mac 114548 bytes_out 0 114548 bytes_in 0 114548 station_ip 83.123.35.99 114548 port 113 114548 unique_id port 114548 remote_ip 10.8.0.78 114554 username naeimeh 114554 kill_reason Another user logged on this global unique id 114554 mac 114554 bytes_out 0 114554 bytes_in 0 114554 station_ip 83.123.35.99 114554 port 113 114554 unique_id port 114556 username avaanna 114556 mac 114556 bytes_out 0 114556 bytes_in 0 114556 station_ip 83.123.87.2 114556 port 51 114556 unique_id port 114556 remote_ip 10.8.1.46 114558 username zare 114558 kill_reason Another user logged on this global unique id 114558 mac 114558 bytes_out 0 114558 bytes_in 0 114558 station_ip 37.27.17.184 114558 port 109 114558 unique_id port 114563 username avaanna 114563 mac 114563 bytes_out 0 114563 bytes_in 0 114563 station_ip 83.123.87.2 114563 port 51 114563 unique_id port 114563 remote_ip 10.8.1.46 114569 username alihosseini1 114569 mac 114569 bytes_out 0 114569 bytes_in 0 114569 station_ip 5.119.54.247 114569 port 50 114569 unique_id port 114569 remote_ip 10.8.1.106 114575 username alihosseini1 114575 mac 114575 bytes_out 0 114575 bytes_in 0 114575 station_ip 5.119.54.247 114575 port 118 114575 unique_id port 114575 remote_ip 10.8.0.166 114577 username rostami 114577 mac 114577 bytes_out 4034683 114577 bytes_in 24594638 114577 station_ip 5.119.209.199 114577 port 54 114577 unique_id port 114577 remote_ip 10.8.1.142 114579 username alihosseini1 114579 mac 114579 bytes_out 0 114579 bytes_in 0 114579 station_ip 5.119.54.247 114579 port 50 114579 unique_id port 114579 remote_ip 10.8.1.106 114581 username hashtadani3 114581 mac 114581 bytes_out 0 114581 bytes_in 0 114581 station_ip 37.129.28.250 114581 port 119 114581 unique_id port 114581 remote_ip 10.8.0.154 114584 username alihosseini1 114584 mac 114584 bytes_out 0 114584 bytes_in 0 114584 station_ip 5.119.54.247 114584 port 50 114584 unique_id port 114584 remote_ip 10.8.1.106 114586 username mehdizare 114586 mac 114586 bytes_out 0 114586 bytes_in 0 114586 station_ip 5.119.132.42 114586 port 49 114586 unique_id port 114586 remote_ip 10.8.1.42 114588 username jamali 114588 kill_reason Another user logged on this global unique id 114588 mac 114588 bytes_out 0 114588 bytes_in 0 114588 station_ip 5.119.87.121 114588 port 103 114588 unique_id port 114544 bytes_out 0 114544 bytes_in 0 114544 station_ip 37.129.28.250 114544 port 118 114544 unique_id port 114544 remote_ip 10.8.0.154 114546 username amir 114546 mac 114546 bytes_out 0 114546 bytes_in 0 114546 station_ip 46.225.214.132 114546 port 112 114546 unique_id port 114546 remote_ip 10.8.0.50 114550 username hashtadani3 114550 mac 114550 bytes_out 0 114550 bytes_in 0 114550 station_ip 37.129.28.250 114550 port 116 114550 unique_id port 114550 remote_ip 10.8.0.154 114553 username amir 114553 mac 114553 bytes_out 0 114553 bytes_in 0 114553 station_ip 46.225.214.132 114553 port 116 114553 unique_id port 114553 remote_ip 10.8.0.50 114557 username khalili 114557 kill_reason Another user logged on this global unique id 114557 mac 114557 bytes_out 0 114557 bytes_in 0 114557 station_ip 5.125.237.105 114557 port 117 114557 unique_id port 114557 remote_ip 10.8.0.86 114559 username naeimeh 114559 mac 114559 bytes_out 0 114559 bytes_in 0 114559 station_ip 83.123.35.99 114559 port 113 114559 unique_id port 114561 username zare 114561 kill_reason Another user logged on this global unique id 114561 mac 114561 bytes_out 0 114561 bytes_in 0 114561 station_ip 37.27.17.184 114561 port 109 114561 unique_id port 114564 username alihosseini1 114564 mac 114564 bytes_out 332484 114564 bytes_in 1948752 114564 station_ip 5.119.54.247 114564 port 50 114564 unique_id port 114564 remote_ip 10.8.1.106 114565 username alihosseini1 114565 mac 114565 bytes_out 0 114565 bytes_in 0 114565 station_ip 5.119.54.247 114565 port 50 114565 unique_id port 114565 remote_ip 10.8.1.106 114570 username farhad1 114570 mac 114570 bytes_out 2523495 114570 bytes_in 18997731 114570 station_ip 5.120.110.84 114570 port 108 114570 unique_id port 114570 remote_ip 10.8.0.26 114573 username hashtadani3 114573 mac 114573 bytes_out 0 114573 bytes_in 0 114573 station_ip 37.129.28.250 114573 port 118 114573 unique_id port 114573 remote_ip 10.8.0.154 114576 username khalili 114576 kill_reason Another user logged on this global unique id 114576 mac 114576 bytes_out 0 114576 bytes_in 0 114576 station_ip 5.125.237.105 114576 port 117 114576 unique_id port 114578 username mahdiyehalizadeh 114578 mac 114578 bytes_out 0 114578 bytes_in 0 114578 station_ip 83.123.145.35 114578 port 120 114578 unique_id port 114578 remote_ip 10.8.0.82 114580 username zare 114580 kill_reason Another user logged on this global unique id 114580 mac 114580 bytes_out 0 114580 bytes_in 0 114580 station_ip 37.27.17.184 114580 port 109 114580 unique_id port 114585 username khalili 114585 kill_reason Another user logged on this global unique id 114585 mac 114585 bytes_out 0 114585 bytes_in 0 114585 station_ip 5.125.237.105 114585 port 117 114585 unique_id port 114587 username hashtadani3 114587 mac 114587 bytes_out 0 114587 bytes_in 0 114587 station_ip 37.129.28.250 114587 port 119 114587 unique_id port 114587 remote_ip 10.8.0.154 114595 username amir 114595 kill_reason Another user logged on this global unique id 114595 mac 114595 bytes_out 0 114595 bytes_in 0 114595 station_ip 46.225.214.132 114595 port 113 114595 unique_id port 114595 remote_ip 10.8.0.50 114602 username hashtadani3 114602 mac 114602 bytes_out 0 114602 bytes_in 0 114602 station_ip 37.129.28.250 114602 port 118 114602 unique_id port 114602 remote_ip 10.8.0.154 114607 username aminvpn 114607 mac 114607 bytes_out 0 114607 bytes_in 0 114607 station_ip 113.203.49.63 114607 port 116 114607 unique_id port 114607 remote_ip 10.8.0.14 114568 username hashtadani3 114568 mac 114568 bytes_out 0 114568 bytes_in 0 114568 station_ip 37.129.28.250 114568 port 113 114568 unique_id port 114568 remote_ip 10.8.0.154 114571 username khalili 114571 kill_reason Another user logged on this global unique id 114571 mac 114571 bytes_out 0 114571 bytes_in 0 114571 station_ip 5.125.237.105 114571 port 117 114571 unique_id port 114572 username hamid 114572 mac 114572 bytes_out 2273876 114572 bytes_in 32401443 114572 station_ip 37.129.168.244 114572 port 118 114572 unique_id port 114572 remote_ip 10.8.0.106 114574 username forozande 114574 mac 114574 bytes_out 0 114574 bytes_in 0 114574 station_ip 37.129.52.138 114574 port 119 114574 unique_id port 114574 remote_ip 10.8.0.74 114582 username mahdiyehalizadeh 114582 mac 114582 bytes_out 0 114582 bytes_in 0 114582 station_ip 83.123.145.35 114582 port 118 114582 unique_id port 114582 remote_ip 10.8.0.82 114583 username alihosseini1 114583 mac 114583 bytes_out 0 114583 bytes_in 0 114583 station_ip 5.119.54.247 114583 port 50 114583 unique_id port 114583 remote_ip 10.8.1.106 114590 username houshang 114590 mac 114590 bytes_out 0 114590 bytes_in 0 114590 station_ip 5.120.139.54 114590 port 112 114590 unique_id port 114590 remote_ip 10.8.0.22 114592 username mehdizare 114592 mac 114592 bytes_out 0 114592 bytes_in 0 114592 station_ip 5.119.132.42 114592 port 50 114592 unique_id port 114592 remote_ip 10.8.1.42 114593 username kordestani 114593 mac 114593 bytes_out 3850412 114593 bytes_in 50104718 114593 station_ip 151.235.82.196 114593 port 105 114593 unique_id port 114593 remote_ip 10.8.0.134 114594 username mehdizare 114594 mac 114594 bytes_out 0 114594 bytes_in 0 114594 station_ip 5.119.132.42 114594 port 49 114594 unique_id port 114594 remote_ip 10.8.1.42 114598 username forozande 114598 mac 114598 bytes_out 0 114598 bytes_in 0 114598 station_ip 37.129.251.189 114598 port 118 114598 unique_id port 114598 remote_ip 10.8.0.74 114600 username hashtadani3 114600 mac 114600 bytes_out 0 114600 bytes_in 0 114600 station_ip 37.129.28.250 114600 port 118 114600 unique_id port 114600 remote_ip 10.8.0.154 114605 username aminvpn 114605 mac 114605 bytes_out 0 114605 bytes_in 0 114605 station_ip 83.122.142.119 114605 port 118 114605 unique_id port 114605 remote_ip 10.8.0.14 114606 username hashtadani3 114606 mac 114606 bytes_out 0 114606 bytes_in 0 114606 station_ip 37.129.28.250 114606 port 118 114606 unique_id port 114606 remote_ip 10.8.0.154 114609 username aminvpn 114609 mac 114609 bytes_out 0 114609 bytes_in 0 114609 station_ip 83.122.142.119 114609 port 118 114609 unique_id port 114609 remote_ip 10.8.0.14 114610 username aminvpn 114610 mac 114610 bytes_out 0 114610 bytes_in 0 114610 station_ip 113.203.49.63 114610 port 116 114610 unique_id port 114610 remote_ip 10.8.0.14 114611 username aminvpn 114611 mac 114611 bytes_out 0 114611 bytes_in 0 114611 station_ip 83.122.142.119 114611 port 118 114611 unique_id port 114611 remote_ip 10.8.0.14 114615 username tahmasebi 114615 kill_reason Another user logged on this global unique id 114615 mac 114615 bytes_out 0 114615 bytes_in 0 114615 station_ip 5.119.63.197 114615 port 98 114615 unique_id port 114616 username aminvpn 114616 mac 114616 bytes_out 0 114616 bytes_in 0 114616 station_ip 113.203.49.63 114616 port 119 114616 unique_id port 114616 remote_ip 10.8.0.14 114618 username aminvpn 114618 mac 114588 remote_ip 10.8.0.150 114589 username mehdizare 114589 mac 114589 bytes_out 0 114589 bytes_in 0 114589 station_ip 5.119.132.42 114589 port 49 114589 unique_id port 114589 remote_ip 10.8.1.42 114591 username alihosseini1 114591 mac 114591 bytes_out 17426 114591 bytes_in 63165 114591 station_ip 5.119.54.247 114591 port 119 114591 unique_id port 114591 remote_ip 10.8.0.166 114596 username aminvpn 114596 unique_id port 114596 terminate_cause User-Request 114596 bytes_out 84821 114596 bytes_in 440431 114596 station_ip 5.125.50.9 114596 port 15729333 114596 nas_port_type Virtual 114596 remote_ip 5.5.5.147 114597 username hashtadani3 114597 mac 114597 bytes_out 0 114597 bytes_in 0 114597 station_ip 37.129.28.250 114597 port 119 114597 unique_id port 114597 remote_ip 10.8.0.154 114599 username hashtadani3 114599 mac 114599 bytes_out 0 114599 bytes_in 0 114599 station_ip 37.129.28.250 114599 port 120 114599 unique_id port 114599 remote_ip 10.8.0.154 114601 username khalili 114601 kill_reason Another user logged on this global unique id 114601 mac 114601 bytes_out 0 114601 bytes_in 0 114601 station_ip 5.125.237.105 114601 port 117 114601 unique_id port 114603 username aminvpn 114603 mac 114603 bytes_out 2451019 114603 bytes_in 36710898 114603 station_ip 113.203.49.63 114603 port 116 114603 unique_id port 114603 remote_ip 10.8.0.14 114604 username sabaghnezhad 114604 mac 114604 bytes_out 0 114604 bytes_in 0 114604 station_ip 37.129.77.115 114604 port 45 114604 unique_id port 114604 remote_ip 10.8.1.130 114608 username hashtadani3 114608 mac 114608 bytes_out 0 114608 bytes_in 0 114608 station_ip 37.129.28.250 114608 port 116 114608 unique_id port 114608 remote_ip 10.8.0.154 114612 username aminvpn 114612 mac 114612 bytes_out 0 114612 bytes_in 0 114612 station_ip 113.203.49.63 114612 port 120 114612 unique_id port 114612 remote_ip 10.8.0.14 114614 username aminvpn 114614 mac 114614 bytes_out 0 114614 bytes_in 0 114614 station_ip 83.122.142.119 114614 port 121 114614 unique_id port 114614 remote_ip 10.8.0.14 114617 username farhad1 114617 mac 114617 bytes_out 0 114617 bytes_in 0 114617 station_ip 5.120.110.84 114617 port 108 114617 unique_id port 114617 remote_ip 10.8.0.26 114619 username farhad1 114619 mac 114619 bytes_out 0 114619 bytes_in 0 114619 station_ip 5.120.110.84 114619 port 108 114619 unique_id port 114619 remote_ip 10.8.0.26 114622 username aminvpn 114622 mac 114622 bytes_out 0 114622 bytes_in 0 114622 station_ip 83.122.142.119 114622 port 108 114622 unique_id port 114622 remote_ip 10.8.0.14 114626 username hashtadani3 114626 mac 114626 bytes_out 2027750 114626 bytes_in 26656949 114626 station_ip 37.129.28.250 114626 port 118 114626 unique_id port 114626 remote_ip 10.8.0.154 114629 username aminvpn 114629 mac 114629 bytes_out 0 114629 bytes_in 0 114629 station_ip 113.203.49.63 114629 port 114 114629 unique_id port 114629 remote_ip 10.8.0.14 114632 username mohammadmahdi 114632 mac 114632 bytes_out 0 114632 bytes_in 0 114632 station_ip 5.120.147.236 114632 port 116 114632 unique_id port 114632 remote_ip 10.8.0.54 114633 username aminvpn 114633 mac 114633 bytes_out 0 114633 bytes_in 0 114633 station_ip 113.203.49.63 114633 port 114 114633 unique_id port 114633 remote_ip 10.8.0.14 114635 username rezasekonji 114635 mac 114635 bytes_out 2393 114635 bytes_in 4711 114635 station_ip 83.122.249.160 114635 port 118 114635 unique_id port 114613 username rezasekonji 114613 mac 114613 bytes_out 273892 114613 bytes_in 4928747 114613 station_ip 83.122.249.160 114613 port 119 114613 unique_id port 114613 remote_ip 10.8.0.130 114621 username zare 114621 kill_reason Another user logged on this global unique id 114621 mac 114621 bytes_out 0 114621 bytes_in 0 114621 station_ip 37.27.17.184 114621 port 109 114621 unique_id port 114623 username rezasekonji 114623 mac 114623 bytes_out 0 114623 bytes_in 0 114623 station_ip 83.122.249.160 114623 port 120 114623 unique_id port 114623 remote_ip 10.8.0.130 114625 username aminvpn 114625 mac 114625 bytes_out 0 114625 bytes_in 0 114625 station_ip 113.203.49.63 114625 port 121 114625 unique_id port 114625 remote_ip 10.8.0.14 114628 username khalili 114628 kill_reason Another user logged on this global unique id 114628 mac 114628 bytes_out 0 114628 bytes_in 0 114628 station_ip 5.125.237.105 114628 port 117 114628 unique_id port 114630 username hashtadani3 114630 mac 114630 bytes_out 0 114630 bytes_in 0 114630 station_ip 37.129.28.250 114630 port 108 114630 unique_id port 114630 remote_ip 10.8.0.154 114631 username aminvpn 114631 mac 114631 bytes_out 0 114631 bytes_in 0 114631 station_ip 83.122.142.119 114631 port 120 114631 unique_id port 114631 remote_ip 10.8.0.14 114634 username hashtadani3 114634 mac 114634 bytes_out 0 114634 bytes_in 0 114634 station_ip 37.129.28.250 114634 port 108 114634 unique_id port 114634 remote_ip 10.8.0.154 114637 username aminvpn 114637 mac 114637 bytes_out 0 114637 bytes_in 0 114637 station_ip 113.203.49.63 114637 port 114 114637 unique_id port 114637 remote_ip 10.8.0.14 114644 username hashtadani3 114644 mac 114644 bytes_out 1217547 114644 bytes_in 20093430 114644 station_ip 37.129.28.250 114644 port 108 114644 unique_id port 114644 remote_ip 10.8.0.154 114645 username aminvpn 114645 mac 114645 bytes_out 0 114645 bytes_in 0 114645 station_ip 113.203.49.63 114645 port 120 114645 unique_id port 114645 remote_ip 10.8.0.14 114648 username aminvpn 114648 mac 114648 bytes_out 0 114648 bytes_in 0 114648 station_ip 113.203.49.63 114648 port 108 114648 unique_id port 114648 remote_ip 10.8.0.14 114649 username aminvpn 114649 mac 114649 bytes_out 0 114649 bytes_in 0 114649 station_ip 83.122.142.119 114649 port 118 114649 unique_id port 114649 remote_ip 10.8.0.14 114651 username aminvpn 114651 mac 114651 bytes_out 0 114651 bytes_in 0 114651 station_ip 83.122.142.119 114651 port 118 114651 unique_id port 114651 remote_ip 10.8.0.14 114652 username hashtadani3 114652 mac 114652 bytes_out 0 114652 bytes_in 0 114652 station_ip 37.129.28.250 114652 port 118 114652 unique_id port 114652 remote_ip 10.8.0.154 114654 username aminvpn 114654 mac 114654 bytes_out 36887 114654 bytes_in 281858 114654 station_ip 113.203.49.63 114654 port 108 114654 unique_id port 114654 remote_ip 10.8.0.14 114655 username aminvpn 114655 mac 114655 bytes_out 0 114655 bytes_in 0 114655 station_ip 83.122.142.119 114655 port 118 114655 unique_id port 114655 remote_ip 10.8.0.14 114656 username hoorieh 114656 kill_reason Another user logged on this global unique id 114656 mac 114656 bytes_out 0 114656 bytes_in 0 114656 station_ip 5.119.132.26 114656 port 105 114656 unique_id port 114656 remote_ip 10.8.0.38 114663 username mahdiyehalizadeh 114663 mac 114663 bytes_out 582840 114663 bytes_in 7707963 114663 station_ip 83.123.145.35 114663 port 114 114663 unique_id port 114618 bytes_out 0 114618 bytes_in 0 114618 station_ip 83.122.142.119 114618 port 120 114618 unique_id port 114618 remote_ip 10.8.0.14 114620 username aminvpn 114620 mac 114620 bytes_out 0 114620 bytes_in 0 114620 station_ip 113.203.49.63 114620 port 119 114620 unique_id port 114620 remote_ip 10.8.0.14 114624 username mirzaei 114624 mac 114624 bytes_out 77611 114624 bytes_in 143951 114624 station_ip 5.119.186.111 114624 port 114 114624 unique_id port 114624 remote_ip 10.8.0.66 114627 username aminvpn 114627 mac 114627 bytes_out 0 114627 bytes_in 0 114627 station_ip 83.122.142.119 114627 port 108 114627 unique_id port 114627 remote_ip 10.8.0.14 114636 username aminvpn 114636 mac 114636 bytes_out 0 114636 bytes_in 0 114636 station_ip 83.122.142.119 114636 port 116 114636 unique_id port 114636 remote_ip 10.8.0.14 114639 username aminvpn 114639 mac 114639 bytes_out 0 114639 bytes_in 0 114639 station_ip 83.122.142.119 114639 port 118 114639 unique_id port 114639 remote_ip 10.8.0.14 114640 username aminvpn 114640 mac 114640 bytes_out 0 114640 bytes_in 0 114640 station_ip 113.203.49.63 114640 port 119 114640 unique_id port 114640 remote_ip 10.8.0.14 114647 username aminvpn 114647 mac 114647 bytes_out 0 114647 bytes_in 0 114647 station_ip 83.122.142.119 114647 port 118 114647 unique_id port 114647 remote_ip 10.8.0.14 114653 username mehdizare 114653 mac 114653 bytes_out 0 114653 bytes_in 0 114653 station_ip 5.119.132.42 114653 port 49 114653 unique_id port 114653 remote_ip 10.8.1.42 114658 username aminvpn 114658 mac 114658 bytes_out 0 114658 bytes_in 0 114658 station_ip 113.203.49.63 114658 port 108 114658 unique_id port 114658 remote_ip 10.8.0.14 114659 username aminvpn 114659 mac 114659 bytes_out 0 114659 bytes_in 0 114659 station_ip 83.122.142.119 114659 port 112 114659 unique_id port 114659 remote_ip 10.8.0.14 114661 username amir 114661 mac 114661 bytes_out 0 114661 bytes_in 0 114661 station_ip 46.225.214.132 114661 port 113 114661 unique_id port 114664 username aminvpn 114664 mac 114664 bytes_out 41180 114664 bytes_in 93032 114664 station_ip 113.203.49.63 114664 port 108 114664 unique_id port 114664 remote_ip 10.8.0.14 114668 username aminvpn 114668 mac 114668 bytes_out 52117 114668 bytes_in 146765 114668 station_ip 113.203.49.63 114668 port 114 114668 unique_id port 114668 remote_ip 10.8.0.14 114669 username aminvpn 114669 mac 114669 bytes_out 0 114669 bytes_in 0 114669 station_ip 83.122.142.119 114669 port 117 114669 unique_id port 114669 remote_ip 10.8.0.14 114673 username aminvpn 114673 mac 114673 bytes_out 12640 114673 bytes_in 82381 114673 station_ip 113.203.49.63 114673 port 117 114673 unique_id port 114673 remote_ip 10.8.0.14 114674 username aminvpn 114674 mac 114674 bytes_out 0 114674 bytes_in 0 114674 station_ip 83.122.142.119 114674 port 120 114674 unique_id port 114674 remote_ip 10.8.0.14 114676 username aminvpn 114676 mac 114676 bytes_out 0 114676 bytes_in 0 114676 station_ip 83.122.142.119 114676 port 120 114676 unique_id port 114676 remote_ip 10.8.0.14 114682 username aminvpn 114682 mac 114682 bytes_out 0 114682 bytes_in 0 114682 station_ip 83.122.142.119 114682 port 105 114682 unique_id port 114682 remote_ip 10.8.0.14 114684 username sobhan 114684 unique_id port 114684 terminate_cause User-Request 114684 bytes_out 838797 114684 bytes_in 8788650 114684 station_ip 5.120.83.32 114684 port 15729334 114635 remote_ip 10.8.0.130 114638 username farhad1 114638 mac 114638 bytes_out 0 114638 bytes_in 0 114638 station_ip 5.120.110.84 114638 port 119 114638 unique_id port 114638 remote_ip 10.8.0.26 114641 username amir 114641 kill_reason Another user logged on this global unique id 114641 mac 114641 bytes_out 0 114641 bytes_in 0 114641 station_ip 46.225.214.132 114641 port 113 114641 unique_id port 114642 username mohammadmahdi 114642 mac 114642 bytes_out 0 114642 bytes_in 0 114642 station_ip 5.120.147.236 114642 port 120 114642 unique_id port 114642 remote_ip 10.8.0.54 114643 username aminvpn 114643 mac 114643 bytes_out 0 114643 bytes_in 0 114643 station_ip 83.122.142.119 114643 port 118 114643 unique_id port 114643 remote_ip 10.8.0.14 114646 username hashtadani3 114646 mac 114646 bytes_out 0 114646 bytes_in 0 114646 station_ip 37.129.28.250 114646 port 108 114646 unique_id port 114646 remote_ip 10.8.0.154 114650 username aminvpn 114650 mac 114650 bytes_out 0 114650 bytes_in 0 114650 station_ip 113.203.49.63 114650 port 108 114650 unique_id port 114650 remote_ip 10.8.0.14 114657 username alihosseini1 114657 mac 114657 bytes_out 209669 114657 bytes_in 265543 114657 station_ip 5.119.54.247 114657 port 112 114657 unique_id port 114657 remote_ip 10.8.0.166 114660 username hashtadani3 114660 mac 114660 bytes_out 0 114660 bytes_in 0 114660 station_ip 37.129.28.250 114660 port 118 114660 unique_id port 114660 remote_ip 10.8.0.154 114662 username alireza 114662 unique_id port 114662 terminate_cause Lost-Carrier 114662 bytes_out 6753784 114662 bytes_in 123937530 114662 station_ip 5.120.60.241 114662 port 15729330 114662 nas_port_type Virtual 114662 remote_ip 5.5.5.255 114665 username khalili 114665 mac 114665 bytes_out 0 114665 bytes_in 0 114665 station_ip 5.125.237.105 114665 port 117 114665 unique_id port 114678 username hashtadani3 114678 mac 114678 bytes_out 0 114678 bytes_in 0 114678 station_ip 37.129.28.250 114678 port 45 114678 unique_id port 114678 remote_ip 10.8.1.94 114680 username aminvpn 114680 mac 114680 bytes_out 17296 114680 bytes_in 79196 114680 station_ip 113.203.49.63 114680 port 117 114680 unique_id port 114680 remote_ip 10.8.0.14 114681 username amir 114681 mac 114681 bytes_out 623503 114681 bytes_in 2824558 114681 station_ip 46.225.214.132 114681 port 113 114681 unique_id port 114681 remote_ip 10.8.0.50 114685 username hashtadani3 114685 mac 114685 bytes_out 948943 114685 bytes_in 9306301 114685 station_ip 37.129.28.250 114685 port 112 114685 unique_id port 114685 remote_ip 10.8.0.154 114687 username amir 114687 mac 114687 bytes_out 0 114687 bytes_in 0 114687 station_ip 46.225.214.132 114687 port 105 114687 unique_id port 114687 remote_ip 10.8.0.50 114688 username aminvpn 114688 mac 114688 bytes_out 21134 114688 bytes_in 75983 114688 station_ip 113.203.49.63 114688 port 113 114688 unique_id port 114688 remote_ip 10.8.0.14 114689 username amir 114689 mac 114689 bytes_out 0 114689 bytes_in 0 114689 station_ip 46.225.214.132 114689 port 113 114689 unique_id port 114689 remote_ip 10.8.0.50 114696 username hashtadani3 114696 mac 114696 bytes_out 0 114696 bytes_in 0 114696 station_ip 37.129.28.250 114696 port 112 114696 unique_id port 114696 remote_ip 10.8.0.154 114702 username aminvpn 114702 mac 114702 bytes_out 0 114702 bytes_in 0 114702 station_ip 83.122.142.119 114702 port 117 114702 unique_id port 114702 remote_ip 10.8.0.14 114663 remote_ip 10.8.0.82 114666 username zare 114666 kill_reason Another user logged on this global unique id 114666 mac 114666 bytes_out 0 114666 bytes_in 0 114666 station_ip 37.27.17.184 114666 port 109 114666 unique_id port 114667 username aminvpn 114667 kill_reason Maximum check online fails reached 114667 mac 114667 bytes_out 0 114667 bytes_in 0 114667 station_ip 113.203.49.63 114667 port 118 114667 unique_id port 114670 username aminvpn 114670 mac 114670 bytes_out 11142 114670 bytes_in 18133 114670 station_ip 113.203.49.63 114670 port 114 114670 unique_id port 114670 remote_ip 10.8.0.14 114671 username aminvpn 114671 mac 114671 bytes_out 0 114671 bytes_in 0 114671 station_ip 113.203.49.63 114671 port 117 114671 unique_id port 114671 remote_ip 10.8.0.14 114672 username aminvpn 114672 mac 114672 bytes_out 0 114672 bytes_in 0 114672 station_ip 83.122.142.119 114672 port 114 114672 unique_id port 114672 remote_ip 10.8.0.14 114675 username aminvpn 114675 mac 114675 bytes_out 0 114675 bytes_in 0 114675 station_ip 113.203.49.63 114675 port 117 114675 unique_id port 114675 remote_ip 10.8.0.14 114677 username hashtadani3 114677 mac 114677 bytes_out 19984 114677 bytes_in 35039 114677 station_ip 37.129.28.250 114677 port 112 114677 unique_id port 114677 remote_ip 10.8.0.154 114679 username hoorieh 114679 mac 114679 bytes_out 0 114679 bytes_in 0 114679 station_ip 5.119.132.26 114679 port 105 114679 unique_id port 114683 username farhad1 114683 mac 114683 bytes_out 0 114683 bytes_in 0 114683 station_ip 5.120.12.193 114683 port 119 114683 unique_id port 114683 remote_ip 10.8.0.26 114686 username amir 114686 mac 114686 bytes_out 72201 114686 bytes_in 436317 114686 station_ip 46.225.214.132 114686 port 105 114686 unique_id port 114686 remote_ip 10.8.0.50 114690 username ahmadi 114690 unique_id port 114690 terminate_cause User-Request 114690 bytes_out 125196 114690 bytes_in 2114830 114690 station_ip 37.129.15.156 114690 port 15729335 114690 nas_port_type Virtual 114690 remote_ip 5.5.5.154 114692 username aminvpn 114692 mac 114692 bytes_out 0 114692 bytes_in 0 114692 station_ip 83.122.142.119 114692 port 112 114692 unique_id port 114692 remote_ip 10.8.0.14 114695 username amir 114695 mac 114695 bytes_out 0 114695 bytes_in 0 114695 station_ip 46.225.214.132 114695 port 45 114695 unique_id port 114695 remote_ip 10.8.1.22 114699 username amir 114699 mac 114699 bytes_out 0 114699 bytes_in 0 114699 station_ip 46.225.214.132 114699 port 45 114699 unique_id port 114699 remote_ip 10.8.1.22 114701 username aminvpn 114701 mac 114701 bytes_out 0 114701 bytes_in 0 114701 station_ip 113.203.49.63 114701 port 113 114701 unique_id port 114701 remote_ip 10.8.0.14 114703 username amir 114703 mac 114703 bytes_out 0 114703 bytes_in 0 114703 station_ip 46.225.214.132 114703 port 113 114703 unique_id port 114703 remote_ip 10.8.0.50 114706 username aminvpn 114706 mac 114706 bytes_out 0 114706 bytes_in 0 114706 station_ip 113.203.49.63 114706 port 119 114706 unique_id port 114706 remote_ip 10.8.0.14 114713 username aminvpn 114713 mac 114713 bytes_out 0 114713 bytes_in 0 114713 station_ip 113.203.49.63 114713 port 119 114713 unique_id port 114713 remote_ip 10.8.0.14 114722 username aminvpn 114722 mac 114722 bytes_out 0 114722 bytes_in 0 114722 station_ip 83.122.142.119 114722 port 117 114722 unique_id port 114722 remote_ip 10.8.0.14 114725 username zare 114725 mac 114684 nas_port_type Virtual 114684 remote_ip 5.5.5.149 114691 username hashtadani3 114691 mac 114691 bytes_out 0 114691 bytes_in 0 114691 station_ip 37.129.28.250 114691 port 117 114691 unique_id port 114691 remote_ip 10.8.0.154 114693 username aminvpn 114693 mac 114693 bytes_out 0 114693 bytes_in 0 114693 station_ip 113.203.49.63 114693 port 113 114693 unique_id port 114693 remote_ip 10.8.0.14 114694 username aminvpn 114694 mac 114694 bytes_out 0 114694 bytes_in 0 114694 station_ip 83.122.142.119 114694 port 112 114694 unique_id port 114694 remote_ip 10.8.0.14 114697 username amir 114697 mac 114697 bytes_out 0 114697 bytes_in 0 114697 station_ip 46.225.214.132 114697 port 45 114697 unique_id port 114697 remote_ip 10.8.1.22 114698 username hashtadani3 114698 mac 114698 bytes_out 0 114698 bytes_in 0 114698 station_ip 37.129.28.250 114698 port 112 114698 unique_id port 114698 remote_ip 10.8.0.154 114700 username amir 114700 mac 114700 bytes_out 0 114700 bytes_in 0 114700 station_ip 46.225.214.132 114700 port 117 114700 unique_id port 114700 remote_ip 10.8.0.50 114707 username amir 114707 mac 114707 bytes_out 0 114707 bytes_in 0 114707 station_ip 46.225.214.132 114707 port 113 114707 unique_id port 114707 remote_ip 10.8.0.50 114708 username aminvpn 114708 mac 114708 bytes_out 26008 114708 bytes_in 45545 114708 station_ip 113.203.49.63 114708 port 45 114708 unique_id port 114708 remote_ip 10.8.1.6 114710 username aminvpn 114710 mac 114710 bytes_out 0 114710 bytes_in 0 114710 station_ip 83.122.142.119 114710 port 117 114710 unique_id port 114710 remote_ip 10.8.0.14 114715 username amir 114715 mac 114715 bytes_out 0 114715 bytes_in 0 114715 station_ip 46.225.214.132 114715 port 113 114715 unique_id port 114715 remote_ip 10.8.0.50 114717 username amir 114717 mac 114717 bytes_out 0 114717 bytes_in 0 114717 station_ip 46.225.214.132 114717 port 113 114717 unique_id port 114717 remote_ip 10.8.0.50 114720 username kordestani 114720 kill_reason Another user logged on this global unique id 114720 mac 114720 bytes_out 0 114720 bytes_in 0 114720 station_ip 151.235.83.45 114720 port 105 114720 unique_id port 114720 remote_ip 10.8.0.134 114721 username rostami 114721 mac 114721 bytes_out 0 114721 bytes_in 0 114721 station_ip 5.119.131.115 114721 port 108 114721 unique_id port 114721 remote_ip 10.8.0.194 114723 username aminvpn 114723 mac 114723 bytes_out 0 114723 bytes_in 0 114723 station_ip 31.56.154.118 114723 port 108 114723 unique_id port 114723 remote_ip 10.8.0.14 114726 username hashtadani3 114726 mac 114726 bytes_out 0 114726 bytes_in 0 114726 station_ip 37.129.28.250 114726 port 112 114726 unique_id port 114730 username hashtadani3 114730 mac 114730 bytes_out 0 114730 bytes_in 0 114730 station_ip 37.129.28.250 114730 port 112 114730 unique_id port 114730 remote_ip 10.8.0.154 114735 username kordestani 114735 mac 114735 bytes_out 0 114735 bytes_in 0 114735 station_ip 151.235.83.45 114735 port 105 114735 unique_id port 114736 username hashtadani3 114736 mac 114736 bytes_out 0 114736 bytes_in 0 114736 station_ip 37.129.28.250 114736 port 105 114736 unique_id port 114736 remote_ip 10.8.0.154 114737 username zare 114737 mac 114737 bytes_out 0 114737 bytes_in 0 114737 station_ip 37.27.17.184 114737 port 112 114737 unique_id port 114737 remote_ip 10.8.0.18 114738 username zare 114738 mac 114738 bytes_out 0 114704 username amir 114704 mac 114704 bytes_out 0 114704 bytes_in 0 114704 station_ip 46.225.214.132 114704 port 113 114704 unique_id port 114704 remote_ip 10.8.0.50 114705 username amir 114705 mac 114705 bytes_out 0 114705 bytes_in 0 114705 station_ip 46.225.214.132 114705 port 113 114705 unique_id port 114705 remote_ip 10.8.0.50 114709 username aminvpn 114709 kill_reason Maximum check online fails reached 114709 mac 114709 bytes_out 0 114709 bytes_in 0 114709 station_ip 113.203.49.63 114709 port 120 114709 unique_id port 114711 username amir 114711 mac 114711 bytes_out 0 114711 bytes_in 0 114711 station_ip 46.225.214.132 114711 port 113 114711 unique_id port 114711 remote_ip 10.8.0.50 114712 username amir 114712 mac 114712 bytes_out 0 114712 bytes_in 0 114712 station_ip 46.225.214.132 114712 port 113 114712 unique_id port 114712 remote_ip 10.8.0.50 114714 username amir 114714 mac 114714 bytes_out 0 114714 bytes_in 0 114714 station_ip 46.225.214.132 114714 port 113 114714 unique_id port 114714 remote_ip 10.8.0.50 114716 username hashtadani3 114716 kill_reason Another user logged on this global unique id 114716 mac 114716 bytes_out 0 114716 bytes_in 0 114716 station_ip 37.129.28.250 114716 port 112 114716 unique_id port 114716 remote_ip 10.8.0.154 114718 username rostami 114718 mac 114718 bytes_out 0 114718 bytes_in 0 114718 station_ip 5.119.131.115 114718 port 108 114718 unique_id port 114718 remote_ip 10.8.0.194 114719 username amir 114719 mac 114719 bytes_out 62503 114719 bytes_in 106147 114719 station_ip 46.225.214.132 114719 port 113 114719 unique_id port 114719 remote_ip 10.8.0.50 114724 username hashtadani3 114724 kill_reason Another user logged on this global unique id 114724 mac 114724 bytes_out 0 114724 bytes_in 0 114724 station_ip 37.129.28.250 114724 port 112 114724 unique_id port 114729 username zare 114729 mac 114729 bytes_out 0 114729 bytes_in 0 114729 station_ip 37.27.17.184 114729 port 117 114729 unique_id port 114729 remote_ip 10.8.0.18 114733 username mirzaei 114733 kill_reason Another user logged on this global unique id 114733 mac 114733 bytes_out 0 114733 bytes_in 0 114733 station_ip 5.119.186.111 114733 port 116 114733 unique_id port 114733 remote_ip 10.8.0.66 114740 username zare 114740 kill_reason Maximum check online fails reached 114740 mac 114740 bytes_out 0 114740 bytes_in 0 114740 station_ip 37.27.17.184 114740 port 105 114740 unique_id port 114743 username jamali 114743 kill_reason Another user logged on this global unique id 114743 mac 114743 bytes_out 0 114743 bytes_in 0 114743 station_ip 5.119.87.121 114743 port 103 114743 unique_id port 114756 username zare 114756 mac 114756 bytes_out 0 114756 bytes_in 0 114756 station_ip 37.27.17.184 114756 port 103 114756 unique_id port 114756 remote_ip 10.8.0.18 114757 username zare 114757 mac 114757 bytes_out 0 114757 bytes_in 0 114757 station_ip 37.27.17.184 114757 port 103 114757 unique_id port 114757 remote_ip 10.8.0.18 114759 username zare 114759 mac 114759 bytes_out 0 114759 bytes_in 0 114759 station_ip 37.27.17.184 114759 port 45 114759 unique_id port 114759 remote_ip 10.8.1.58 114760 username mirzaei 114760 kill_reason Another user logged on this global unique id 114760 mac 114760 bytes_out 0 114760 bytes_in 0 114760 station_ip 5.119.186.111 114760 port 116 114760 unique_id port 114761 username zare 114761 mac 114761 bytes_out 0 114761 bytes_in 0 114761 station_ip 37.27.17.184 114761 port 103 114761 unique_id port 114725 bytes_out 0 114725 bytes_in 0 114725 station_ip 37.27.17.184 114725 port 109 114725 unique_id port 114727 username kordestani 114727 kill_reason Another user logged on this global unique id 114727 mac 114727 bytes_out 0 114727 bytes_in 0 114727 station_ip 151.235.83.45 114727 port 105 114727 unique_id port 114728 username rajaei 114728 kill_reason Another user logged on this global unique id 114728 mac 114728 bytes_out 0 114728 bytes_in 0 114728 station_ip 5.134.132.151 114728 port 114 114728 unique_id port 114728 remote_ip 10.8.0.34 114731 username zare 114731 mac 114731 bytes_out 0 114731 bytes_in 0 114731 station_ip 37.27.17.184 114731 port 112 114731 unique_id port 114731 remote_ip 10.8.0.18 114732 username jamali 114732 kill_reason Another user logged on this global unique id 114732 mac 114732 bytes_out 0 114732 bytes_in 0 114732 station_ip 5.119.87.121 114732 port 103 114732 unique_id port 114734 username ahmadipour 114734 unique_id port 114734 terminate_cause User-Request 114734 bytes_out 93707 114734 bytes_in 1637647 114734 station_ip 83.122.145.48 114734 port 15729336 114734 nas_port_type Virtual 114734 remote_ip 5.5.5.157 114741 username hashtadani3 114741 mac 114741 bytes_out 0 114741 bytes_in 0 114741 station_ip 37.129.28.250 114741 port 112 114741 unique_id port 114741 remote_ip 10.8.0.154 114742 username kamali1 114742 mac 114742 bytes_out 0 114742 bytes_in 0 114742 station_ip 5.119.119.37 114742 port 112 114742 unique_id port 114742 remote_ip 10.8.0.70 114745 username zare 114745 mac 114745 bytes_out 0 114745 bytes_in 0 114745 station_ip 37.27.17.184 114745 port 112 114745 unique_id port 114745 remote_ip 10.8.0.18 114747 username jamali 114747 mac 114747 bytes_out 0 114747 bytes_in 0 114747 station_ip 5.119.87.121 114747 port 103 114747 unique_id port 114749 username hashtadani3 114749 mac 114749 bytes_out 0 114749 bytes_in 0 114749 station_ip 37.129.28.250 114749 port 103 114749 unique_id port 114749 remote_ip 10.8.0.154 114750 username hashtadani3 114750 mac 114750 bytes_out 0 114750 bytes_in 0 114750 station_ip 37.129.28.250 114750 port 45 114750 unique_id port 114750 remote_ip 10.8.1.94 114752 username hashtadani3 114752 mac 114752 bytes_out 0 114752 bytes_in 0 114752 station_ip 37.129.28.250 114752 port 103 114752 unique_id port 114752 remote_ip 10.8.0.154 114755 username mosi 114755 mac 114755 bytes_out 0 114755 bytes_in 0 114755 station_ip 151.235.124.217 114755 port 103 114755 unique_id port 114755 remote_ip 10.8.0.138 114763 username hashtadani3 114763 mac 114763 bytes_out 0 114763 bytes_in 0 114763 station_ip 37.129.28.250 114763 port 103 114763 unique_id port 114763 remote_ip 10.8.0.154 114764 username zare 114764 mac 114764 bytes_out 0 114764 bytes_in 0 114764 station_ip 37.27.17.184 114764 port 103 114764 unique_id port 114764 remote_ip 10.8.0.18 114765 username zare 114765 mac 114765 bytes_out 0 114765 bytes_in 0 114765 station_ip 37.27.17.184 114765 port 103 114765 unique_id port 114765 remote_ip 10.8.0.18 114771 username hashtadani3 114771 mac 114771 bytes_out 0 114771 bytes_in 0 114771 station_ip 37.129.28.250 114771 port 103 114771 unique_id port 114771 remote_ip 10.8.0.154 114772 username hashtadani3 114772 mac 114772 bytes_out 0 114772 bytes_in 0 114772 station_ip 37.129.28.250 114772 port 103 114772 unique_id port 114772 remote_ip 10.8.0.154 114773 username hashtadani3 114773 mac 114773 bytes_out 0 114773 bytes_in 0 114738 bytes_in 0 114738 station_ip 37.27.17.184 114738 port 105 114738 unique_id port 114738 remote_ip 10.8.0.18 114739 username zare 114739 mac 114739 bytes_out 0 114739 bytes_in 0 114739 station_ip 37.27.17.184 114739 port 105 114739 unique_id port 114739 remote_ip 10.8.0.18 114744 username amir 114744 mac 114744 bytes_out 3643372 114744 bytes_in 30352357 114744 station_ip 46.225.214.132 114744 port 108 114744 unique_id port 114744 remote_ip 10.8.0.50 114746 username rajaei 114746 kill_reason Another user logged on this global unique id 114746 mac 114746 bytes_out 0 114746 bytes_in 0 114746 station_ip 5.134.132.151 114746 port 114 114746 unique_id port 114748 username zare 114748 mac 114748 bytes_out 0 114748 bytes_in 0 114748 station_ip 37.27.17.184 114748 port 112 114748 unique_id port 114748 remote_ip 10.8.0.18 114751 username sedighe 114751 mac 114751 bytes_out 156446 114751 bytes_in 1484861 114751 station_ip 83.123.25.25 114751 port 108 114751 unique_id port 114751 remote_ip 10.8.0.146 114753 username rajaei 114753 kill_reason Another user logged on this global unique id 114753 mac 114753 bytes_out 0 114753 bytes_in 0 114753 station_ip 5.134.132.151 114753 port 114 114753 unique_id port 114754 username hashtadani3 114754 mac 114754 bytes_out 0 114754 bytes_in 0 114754 station_ip 37.129.28.250 114754 port 108 114754 unique_id port 114754 remote_ip 10.8.0.154 114758 username hashtadani3 114758 mac 114758 bytes_out 0 114758 bytes_in 0 114758 station_ip 37.129.28.250 114758 port 103 114758 unique_id port 114758 remote_ip 10.8.0.154 114762 username zare 114762 mac 114762 bytes_out 11646 114762 bytes_in 24104 114762 station_ip 37.27.17.184 114762 port 103 114762 unique_id port 114762 remote_ip 10.8.0.18 114769 username sabaghnezhad 114769 mac 114769 bytes_out 121143 114769 bytes_in 235413 114769 station_ip 37.129.150.223 114769 port 45 114769 unique_id port 114769 remote_ip 10.8.1.130 114770 username hashtadani3 114770 mac 114770 bytes_out 0 114770 bytes_in 0 114770 station_ip 37.129.28.250 114770 port 103 114770 unique_id port 114770 remote_ip 10.8.0.154 114778 username hashtadani3 114778 mac 114778 bytes_out 0 114778 bytes_in 0 114778 station_ip 37.129.28.250 114778 port 108 114778 unique_id port 114778 remote_ip 10.8.0.154 114781 username tahmasebi 114781 kill_reason Another user logged on this global unique id 114781 mac 114781 bytes_out 0 114781 bytes_in 0 114781 station_ip 5.119.63.197 114781 port 98 114781 unique_id port 114783 username zare 114783 kill_reason Maximum check online fails reached 114783 mac 114783 bytes_out 0 114783 bytes_in 0 114783 station_ip 37.27.17.184 114783 port 108 114783 unique_id port 114787 username rasoul56 114787 kill_reason Another user logged on this global unique id 114787 mac 114787 bytes_out 0 114787 bytes_in 0 114787 station_ip 37.129.185.101 114787 port 103 114787 unique_id port 114802 username rajaei 114802 kill_reason Another user logged on this global unique id 114802 mac 114802 bytes_out 0 114802 bytes_in 0 114802 station_ip 5.134.132.151 114802 port 114 114802 unique_id port 114805 username hashtadani3 114805 mac 114805 bytes_out 0 114805 bytes_in 0 114805 station_ip 37.129.28.250 114805 port 112 114805 unique_id port 114805 remote_ip 10.8.0.154 114806 username rajaei 114806 kill_reason Another user logged on this global unique id 114806 mac 114806 bytes_out 0 114806 bytes_in 0 114806 station_ip 5.134.132.151 114806 port 114 114806 unique_id port 114810 username rasoul56 114761 remote_ip 10.8.0.18 114766 username rostami 114766 kill_reason Another user logged on this global unique id 114766 mac 114766 bytes_out 0 114766 bytes_in 0 114766 station_ip 5.119.131.115 114766 port 109 114766 unique_id port 114766 remote_ip 10.8.0.194 114767 username rajaei 114767 kill_reason Another user logged on this global unique id 114767 mac 114767 bytes_out 0 114767 bytes_in 0 114767 station_ip 5.134.132.151 114767 port 114 114767 unique_id port 114768 username hashtadani3 114768 mac 114768 bytes_out 0 114768 bytes_in 0 114768 station_ip 37.129.28.250 114768 port 103 114768 unique_id port 114768 remote_ip 10.8.0.154 114775 username mirzaei 114775 kill_reason Another user logged on this global unique id 114775 mac 114775 bytes_out 0 114775 bytes_in 0 114775 station_ip 5.119.186.111 114775 port 116 114775 unique_id port 114776 username hashtadani3 114776 mac 114776 bytes_out 0 114776 bytes_in 0 114776 station_ip 37.129.28.250 114776 port 108 114776 unique_id port 114776 remote_ip 10.8.0.154 114777 username hashtadani3 114777 mac 114777 bytes_out 0 114777 bytes_in 0 114777 station_ip 37.129.28.250 114777 port 108 114777 unique_id port 114777 remote_ip 10.8.0.154 114779 username rostami 114779 kill_reason Another user logged on this global unique id 114779 mac 114779 bytes_out 0 114779 bytes_in 0 114779 station_ip 5.119.131.115 114779 port 109 114779 unique_id port 114784 username hashtadani3 114784 mac 114784 bytes_out 0 114784 bytes_in 0 114784 station_ip 37.129.28.250 114784 port 121 114784 unique_id port 114784 remote_ip 10.8.0.154 114789 username hashtadani3 114789 mac 114789 bytes_out 0 114789 bytes_in 0 114789 station_ip 37.129.28.250 114789 port 121 114789 unique_id port 114789 remote_ip 10.8.0.154 114791 username rasoul56 114791 kill_reason Another user logged on this global unique id 114791 mac 114791 bytes_out 0 114791 bytes_in 0 114791 station_ip 37.129.185.101 114791 port 103 114791 unique_id port 114792 username farhad1 114792 mac 114792 bytes_out 228181 114792 bytes_in 1052021 114792 station_ip 5.119.112.79 114792 port 112 114792 unique_id port 114792 remote_ip 10.8.0.26 114794 username rajaei 114794 kill_reason Another user logged on this global unique id 114794 mac 114794 bytes_out 0 114794 bytes_in 0 114794 station_ip 5.134.132.151 114794 port 114 114794 unique_id port 114796 username hoorieh 114796 kill_reason Another user logged on this global unique id 114796 mac 114796 bytes_out 0 114796 bytes_in 0 114796 station_ip 5.119.132.26 114796 port 117 114796 unique_id port 114796 remote_ip 10.8.0.38 114797 username rasoul56 114797 kill_reason Another user logged on this global unique id 114797 mac 114797 bytes_out 0 114797 bytes_in 0 114797 station_ip 37.129.185.101 114797 port 103 114797 unique_id port 114798 username hashtadani3 114798 mac 114798 bytes_out 0 114798 bytes_in 0 114798 station_ip 37.129.28.250 114798 port 50 114798 unique_id port 114798 remote_ip 10.8.1.94 114799 username hashtadani3 114799 mac 114799 bytes_out 0 114799 bytes_in 0 114799 station_ip 37.129.28.250 114799 port 112 114799 unique_id port 114799 remote_ip 10.8.0.154 114800 username rostami 114800 mac 114800 bytes_out 0 114800 bytes_in 0 114800 station_ip 5.119.131.115 114800 port 109 114800 unique_id port 114803 username hoorieh 114803 mac 114803 bytes_out 0 114803 bytes_in 0 114803 station_ip 5.119.132.26 114803 port 117 114803 unique_id port 114804 username rasoul56 114804 kill_reason Another user logged on this global unique id 114804 mac 114804 bytes_out 0 114773 station_ip 37.129.28.250 114773 port 103 114773 unique_id port 114773 remote_ip 10.8.0.154 114774 username hashtadani3 114774 kill_reason Maximum check online fails reached 114774 mac 114774 bytes_out 0 114774 bytes_in 0 114774 station_ip 37.129.28.250 114774 port 45 114774 unique_id port 114780 username hashtadani3 114780 mac 114780 bytes_out 0 114780 bytes_in 0 114780 station_ip 37.129.28.250 114780 port 108 114780 unique_id port 114780 remote_ip 10.8.0.154 114782 username rasoul56 114782 kill_reason Another user logged on this global unique id 114782 mac 114782 bytes_out 0 114782 bytes_in 0 114782 station_ip 37.129.185.101 114782 port 103 114782 unique_id port 114782 remote_ip 10.8.0.174 114785 username rajaei 114785 kill_reason Another user logged on this global unique id 114785 mac 114785 bytes_out 0 114785 bytes_in 0 114785 station_ip 5.134.132.151 114785 port 114 114785 unique_id port 114786 username zare 114786 kill_reason Maximum check online fails reached 114786 mac 114786 bytes_out 0 114786 bytes_in 0 114786 station_ip 37.27.17.184 114786 port 119 114786 unique_id port 114788 username alirr 114788 unique_id port 114788 terminate_cause User-Request 114788 bytes_out 13323540 114788 bytes_in 231396794 114788 station_ip 5.120.86.151 114788 port 15729337 114788 nas_port_type Virtual 114788 remote_ip 5.5.5.161 114790 username farhad1 114790 mac 114790 bytes_out 829914 114790 bytes_in 3104316 114790 station_ip 5.120.87.66 114790 port 112 114790 unique_id port 114790 remote_ip 10.8.0.26 114793 username hashtadani3 114793 mac 114793 bytes_out 0 114793 bytes_in 0 114793 station_ip 37.129.28.250 114793 port 112 114793 unique_id port 114793 remote_ip 10.8.0.154 114795 username rostami 114795 kill_reason Another user logged on this global unique id 114795 mac 114795 bytes_out 0 114795 bytes_in 0 114795 station_ip 5.119.131.115 114795 port 109 114795 unique_id port 114801 username hashtadani3 114801 mac 114801 bytes_out 0 114801 bytes_in 0 114801 station_ip 37.129.28.250 114801 port 112 114801 unique_id port 114801 remote_ip 10.8.0.154 114808 username hashtadani3 114808 mac 114808 bytes_out 0 114808 bytes_in 0 114808 station_ip 37.129.28.250 114808 port 112 114808 unique_id port 114808 remote_ip 10.8.0.154 114809 username rostami 114809 mac 114809 bytes_out 0 114809 bytes_in 0 114809 station_ip 5.119.131.115 114809 port 109 114809 unique_id port 114809 remote_ip 10.8.0.194 114823 username zare 114823 kill_reason Another user logged on this global unique id 114823 mac 114823 bytes_out 0 114823 bytes_in 0 114823 station_ip 37.27.17.184 114823 port 49 114823 unique_id port 114823 remote_ip 10.8.1.58 114824 username hashtadani3 114824 mac 114824 bytes_out 0 114824 bytes_in 0 114824 station_ip 37.129.28.250 114824 port 114 114824 unique_id port 114824 remote_ip 10.8.0.154 114826 username tahmasebi 114826 kill_reason Another user logged on this global unique id 114826 mac 114826 bytes_out 0 114826 bytes_in 0 114826 station_ip 5.119.63.197 114826 port 98 114826 unique_id port 114832 username hashtadani3 114832 mac 114832 bytes_out 0 114832 bytes_in 0 114832 station_ip 37.129.28.250 114832 port 114 114832 unique_id port 114832 remote_ip 10.8.0.154 114835 username hashtadani3 114835 mac 114835 bytes_out 0 114835 bytes_in 0 114835 station_ip 37.129.28.250 114835 port 114 114835 unique_id port 114835 remote_ip 10.8.0.154 114837 username farhad1 114837 kill_reason Another user logged on this global unique id 114837 mac 114837 bytes_out 0 114837 bytes_in 0 114837 station_ip 5.120.1.54 114804 bytes_in 0 114804 station_ip 37.129.185.101 114804 port 103 114804 unique_id port 114807 username hashtadani3 114807 mac 114807 bytes_out 0 114807 bytes_in 0 114807 station_ip 37.129.28.250 114807 port 112 114807 unique_id port 114807 remote_ip 10.8.0.154 114811 username rajaei 114811 kill_reason Another user logged on this global unique id 114811 mac 114811 bytes_out 0 114811 bytes_in 0 114811 station_ip 5.134.132.151 114811 port 114 114811 unique_id port 114813 username rostami 114813 mac 114813 bytes_out 10337 114813 bytes_in 15102 114813 station_ip 5.119.131.115 114813 port 109 114813 unique_id port 114813 remote_ip 10.8.0.194 114815 username hashtadani3 114815 mac 114815 bytes_out 0 114815 bytes_in 0 114815 station_ip 37.129.28.250 114815 port 109 114815 unique_id port 114815 remote_ip 10.8.0.154 114816 username mirzaei 114816 kill_reason Another user logged on this global unique id 114816 mac 114816 bytes_out 0 114816 bytes_in 0 114816 station_ip 5.119.186.111 114816 port 116 114816 unique_id port 114818 username hashtadani3 114818 mac 114818 bytes_out 0 114818 bytes_in 0 114818 station_ip 37.129.28.250 114818 port 114 114818 unique_id port 114818 remote_ip 10.8.0.154 114819 username hashtadani3 114819 mac 114819 bytes_out 0 114819 bytes_in 0 114819 station_ip 37.129.28.250 114819 port 114 114819 unique_id port 114819 remote_ip 10.8.0.154 114820 username mirzaei 114820 kill_reason Another user logged on this global unique id 114820 mac 114820 bytes_out 0 114820 bytes_in 0 114820 station_ip 5.119.186.111 114820 port 116 114820 unique_id port 114821 username rasoul56 114821 kill_reason Another user logged on this global unique id 114821 mac 114821 bytes_out 0 114821 bytes_in 0 114821 station_ip 37.129.185.101 114821 port 103 114821 unique_id port 114822 username hashtadani3 114822 mac 114822 bytes_out 0 114822 bytes_in 0 114822 station_ip 37.129.28.250 114822 port 114 114822 unique_id port 114822 remote_ip 10.8.0.154 114825 username farhad1 114825 mac 114825 bytes_out 0 114825 bytes_in 0 114825 station_ip 5.119.112.79 114825 port 112 114825 unique_id port 114825 remote_ip 10.8.0.26 114828 username hashtadani3 114828 mac 114828 bytes_out 0 114828 bytes_in 0 114828 station_ip 37.129.28.250 114828 port 114 114828 unique_id port 114828 remote_ip 10.8.0.154 114829 username rasoul56 114829 kill_reason Another user logged on this global unique id 114829 mac 114829 bytes_out 0 114829 bytes_in 0 114829 station_ip 37.129.185.101 114829 port 103 114829 unique_id port 114831 username alirr 114831 unique_id port 114831 terminate_cause User-Request 114831 bytes_out 7471053 114831 bytes_in 142330391 114831 station_ip 5.120.86.151 114831 port 15729339 114831 nas_port_type Virtual 114831 remote_ip 5.5.5.175 114842 username zare 114842 kill_reason Another user logged on this global unique id 114842 mac 114842 bytes_out 0 114842 bytes_in 0 114842 station_ip 37.27.17.184 114842 port 49 114842 unique_id port 114843 username hashtadani3 114843 mac 114843 bytes_out 0 114843 bytes_in 0 114843 station_ip 37.129.28.250 114843 port 112 114843 unique_id port 114843 remote_ip 10.8.0.154 114844 username hashtadani3 114844 mac 114844 bytes_out 0 114844 bytes_in 0 114844 station_ip 37.129.28.250 114844 port 50 114844 unique_id port 114844 remote_ip 10.8.1.94 114847 username tahmasebi 114847 kill_reason Another user logged on this global unique id 114847 mac 114847 bytes_out 0 114847 bytes_in 0 114847 station_ip 5.119.63.197 114847 port 98 114847 unique_id port 114810 kill_reason Another user logged on this global unique id 114810 mac 114810 bytes_out 0 114810 bytes_in 0 114810 station_ip 37.129.185.101 114810 port 103 114810 unique_id port 114812 username hashtadani3 114812 mac 114812 bytes_out 0 114812 bytes_in 0 114812 station_ip 37.129.28.250 114812 port 117 114812 unique_id port 114812 remote_ip 10.8.0.154 114814 username rajaei 114814 mac 114814 bytes_out 0 114814 bytes_in 0 114814 station_ip 5.134.132.151 114814 port 114 114814 unique_id port 114817 username rasoul56 114817 kill_reason Another user logged on this global unique id 114817 mac 114817 bytes_out 0 114817 bytes_in 0 114817 station_ip 37.129.185.101 114817 port 103 114817 unique_id port 114827 username rostami 114827 mac 114827 bytes_out 0 114827 bytes_in 0 114827 station_ip 5.119.131.115 114827 port 114 114827 unique_id port 114827 remote_ip 10.8.0.194 114830 username mirzaei 114830 kill_reason Another user logged on this global unique id 114830 mac 114830 bytes_out 0 114830 bytes_in 0 114830 station_ip 5.119.186.111 114830 port 116 114830 unique_id port 114833 username farhad1 114833 kill_reason Another user logged on this global unique id 114833 mac 114833 bytes_out 0 114833 bytes_in 0 114833 station_ip 5.120.1.54 114833 port 112 114833 unique_id port 114833 remote_ip 10.8.0.26 114834 username tahmasebi 114834 kill_reason Another user logged on this global unique id 114834 mac 114834 bytes_out 0 114834 bytes_in 0 114834 station_ip 5.119.63.197 114834 port 98 114834 unique_id port 114836 username rasoul56 114836 kill_reason Another user logged on this global unique id 114836 mac 114836 bytes_out 0 114836 bytes_in 0 114836 station_ip 37.129.185.101 114836 port 103 114836 unique_id port 114839 username hashtadani3 114839 mac 114839 bytes_out 0 114839 bytes_in 0 114839 station_ip 37.129.28.250 114839 port 114 114839 unique_id port 114839 remote_ip 10.8.0.154 114840 username rasoul56 114840 kill_reason Another user logged on this global unique id 114840 mac 114840 bytes_out 0 114840 bytes_in 0 114840 station_ip 37.129.185.101 114840 port 103 114840 unique_id port 114845 username rasoul56 114845 kill_reason Another user logged on this global unique id 114845 mac 114845 bytes_out 0 114845 bytes_in 0 114845 station_ip 37.129.185.101 114845 port 103 114845 unique_id port 114846 username hashtadani3 114846 mac 114846 bytes_out 0 114846 bytes_in 0 114846 station_ip 37.129.28.250 114846 port 50 114846 unique_id port 114846 remote_ip 10.8.1.94 114849 username hashtadani3 114849 mac 114849 bytes_out 0 114849 bytes_in 0 114849 station_ip 37.129.28.250 114849 port 50 114849 unique_id port 114849 remote_ip 10.8.1.94 114850 username hashtadani3 114850 mac 114850 bytes_out 0 114850 bytes_in 0 114850 station_ip 37.129.28.250 114850 port 50 114850 unique_id port 114850 remote_ip 10.8.1.94 114856 username hashtadani3 114856 mac 114856 bytes_out 0 114856 bytes_in 0 114856 station_ip 37.129.28.250 114856 port 112 114856 unique_id port 114856 remote_ip 10.8.0.154 114857 username tahmasebi 114857 kill_reason Another user logged on this global unique id 114857 mac 114857 bytes_out 0 114857 bytes_in 0 114857 station_ip 5.119.63.197 114857 port 98 114857 unique_id port 114858 username zare 114858 kill_reason Another user logged on this global unique id 114858 mac 114858 bytes_out 0 114858 bytes_in 0 114858 station_ip 37.27.17.184 114858 port 49 114858 unique_id port 114860 username hashtadani3 114860 mac 114860 bytes_out 0 114860 bytes_in 0 114860 station_ip 37.129.28.250 114860 port 114 114837 port 112 114837 unique_id port 114838 username hashtadani3 114838 mac 114838 bytes_out 0 114838 bytes_in 0 114838 station_ip 37.129.28.250 114838 port 114 114838 unique_id port 114838 remote_ip 10.8.0.154 114841 username farhad1 114841 mac 114841 bytes_out 0 114841 bytes_in 0 114841 station_ip 5.120.1.54 114841 port 112 114841 unique_id port 114851 username hashtadani3 114851 mac 114851 bytes_out 0 114851 bytes_in 0 114851 station_ip 37.129.28.250 114851 port 114 114851 unique_id port 114851 remote_ip 10.8.0.154 114852 username hashtadani3 114852 mac 114852 bytes_out 0 114852 bytes_in 0 114852 station_ip 37.129.28.250 114852 port 114 114852 unique_id port 114852 remote_ip 10.8.0.154 114853 username zare 114853 kill_reason Another user logged on this global unique id 114853 mac 114853 bytes_out 0 114853 bytes_in 0 114853 station_ip 37.27.17.184 114853 port 49 114853 unique_id port 114854 username rasoul56 114854 kill_reason Another user logged on this global unique id 114854 mac 114854 bytes_out 0 114854 bytes_in 0 114854 station_ip 37.129.185.101 114854 port 103 114854 unique_id port 114861 username hashtadani3 114861 mac 114861 bytes_out 0 114861 bytes_in 0 114861 station_ip 37.129.28.250 114861 port 114 114861 unique_id port 114861 remote_ip 10.8.0.154 114862 username tahmasebi 114862 kill_reason Another user logged on this global unique id 114862 mac 114862 bytes_out 0 114862 bytes_in 0 114862 station_ip 5.119.63.197 114862 port 98 114862 unique_id port 114863 username rasoul56 114863 mac 114863 bytes_out 0 114863 bytes_in 0 114863 station_ip 37.129.185.101 114863 port 103 114863 unique_id port 114864 username zare 114864 kill_reason Another user logged on this global unique id 114864 mac 114864 bytes_out 0 114864 bytes_in 0 114864 station_ip 37.27.17.184 114864 port 49 114864 unique_id port 114867 username tahmasebi 114867 kill_reason Another user logged on this global unique id 114867 mac 114867 bytes_out 0 114867 bytes_in 0 114867 station_ip 5.119.63.197 114867 port 98 114867 unique_id port 114869 username zare 114869 kill_reason Another user logged on this global unique id 114869 mac 114869 bytes_out 0 114869 bytes_in 0 114869 station_ip 37.27.17.184 114869 port 49 114869 unique_id port 114873 username mosi 114873 kill_reason Another user logged on this global unique id 114873 mac 114873 bytes_out 0 114873 bytes_in 0 114873 station_ip 151.235.124.217 114873 port 112 114873 unique_id port 114873 remote_ip 10.8.0.138 114875 username zare 114875 kill_reason Another user logged on this global unique id 114875 mac 114875 bytes_out 0 114875 bytes_in 0 114875 station_ip 37.27.17.184 114875 port 49 114875 unique_id port 114882 username rasoul56 114882 mac 114882 bytes_out 0 114882 bytes_in 0 114882 station_ip 37.129.185.101 114882 port 114 114882 unique_id port 114884 username abravesh 114884 unique_id port 114884 terminate_cause Lost-Carrier 114884 bytes_out 1811858 114884 bytes_in 35275950 114884 station_ip 5.119.159.106 114884 port 15729340 114884 nas_port_type Virtual 114884 remote_ip 5.5.5.178 114885 username hashtadani3 114885 mac 114885 bytes_out 0 114885 bytes_in 0 114885 station_ip 37.129.28.250 114885 port 114 114885 unique_id port 114885 remote_ip 10.8.0.154 114887 username hashtadani3 114887 mac 114887 bytes_out 0 114887 bytes_in 0 114887 station_ip 37.129.28.250 114887 port 98 114887 unique_id port 114887 remote_ip 10.8.0.154 114890 username hashtadani3 114890 mac 114890 bytes_out 0 114890 bytes_in 0 114890 station_ip 37.129.28.250 114848 username hashtadani3 114848 mac 114848 bytes_out 0 114848 bytes_in 0 114848 station_ip 37.129.28.250 114848 port 50 114848 unique_id port 114848 remote_ip 10.8.1.94 114855 username rostami 114855 mac 114855 bytes_out 0 114855 bytes_in 0 114855 station_ip 5.119.131.115 114855 port 112 114855 unique_id port 114855 remote_ip 10.8.0.194 114859 username rasoul56 114859 kill_reason Another user logged on this global unique id 114859 mac 114859 bytes_out 0 114859 bytes_in 0 114859 station_ip 37.129.185.101 114859 port 103 114859 unique_id port 114865 username hashtadani3 114865 mac 114865 bytes_out 0 114865 bytes_in 0 114865 station_ip 37.129.28.250 114865 port 103 114865 unique_id port 114865 remote_ip 10.8.0.154 114868 username hashtadani3 114868 mac 114868 bytes_out 0 114868 bytes_in 0 114868 station_ip 37.129.28.250 114868 port 112 114868 unique_id port 114868 remote_ip 10.8.0.154 114872 username zare 114872 kill_reason Another user logged on this global unique id 114872 mac 114872 bytes_out 0 114872 bytes_in 0 114872 station_ip 37.27.17.184 114872 port 49 114872 unique_id port 114876 username mosi 114876 mac 114876 bytes_out 0 114876 bytes_in 0 114876 station_ip 151.235.124.217 114876 port 112 114876 unique_id port 114879 username rasoul56 114879 kill_reason Another user logged on this global unique id 114879 mac 114879 bytes_out 0 114879 bytes_in 0 114879 station_ip 37.129.185.101 114879 port 114 114879 unique_id port 114879 remote_ip 10.8.0.174 114880 username hashtadani3 114880 mac 114880 bytes_out 0 114880 bytes_in 0 114880 station_ip 37.129.28.250 114880 port 98 114880 unique_id port 114880 remote_ip 10.8.0.154 114881 username hashtadani3 114881 mac 114881 bytes_out 0 114881 bytes_in 0 114881 station_ip 37.129.28.250 114881 port 98 114881 unique_id port 114881 remote_ip 10.8.0.154 114883 username zare 114883 kill_reason Another user logged on this global unique id 114883 mac 114883 bytes_out 0 114883 bytes_in 0 114883 station_ip 37.27.17.184 114883 port 49 114883 unique_id port 114886 username rostami 114886 mac 114886 bytes_out 1303146 114886 bytes_in 15584887 114886 station_ip 5.119.131.115 114886 port 98 114886 unique_id port 114886 remote_ip 10.8.0.194 114893 username zare 114893 mac 114893 bytes_out 0 114893 bytes_in 0 114893 station_ip 37.27.17.184 114893 port 49 114893 unique_id port 114896 username aminvpn 114896 mac 114896 bytes_out 0 114896 bytes_in 0 114896 station_ip 83.122.142.119 114896 port 113 114896 unique_id port 114896 remote_ip 10.8.0.14 114900 username hashtadani3 114900 mac 114900 bytes_out 0 114900 bytes_in 0 114900 station_ip 37.129.28.250 114900 port 113 114900 unique_id port 114900 remote_ip 10.8.0.154 114901 username hashtadani3 114901 mac 114901 bytes_out 0 114901 bytes_in 0 114901 station_ip 37.129.28.250 114901 port 113 114901 unique_id port 114901 remote_ip 10.8.0.154 114905 username rostami 114905 mac 114905 bytes_out 283793 114905 bytes_in 727686 114905 station_ip 5.119.131.115 114905 port 113 114905 unique_id port 114905 remote_ip 10.8.0.194 114908 username hashtadani3 114908 mac 114908 bytes_out 0 114908 bytes_in 0 114908 station_ip 37.129.28.250 114908 port 98 114908 unique_id port 114908 remote_ip 10.8.0.154 114909 username hashtadani3 114909 mac 114909 bytes_out 0 114909 bytes_in 0 114909 station_ip 37.129.28.250 114909 port 98 114909 unique_id port 114909 remote_ip 10.8.0.154 114912 username hashtadani3 114912 mac 114860 unique_id port 114860 remote_ip 10.8.0.154 114866 username rostami 114866 mac 114866 bytes_out 1227933 114866 bytes_in 13463755 114866 station_ip 5.119.131.115 114866 port 112 114866 unique_id port 114866 remote_ip 10.8.0.194 114870 username rostami 114870 mac 114870 bytes_out 0 114870 bytes_in 0 114870 station_ip 5.119.131.115 114870 port 103 114870 unique_id port 114870 remote_ip 10.8.0.194 114871 username hashtadani3 114871 mac 114871 bytes_out 2005 114871 bytes_in 4388 114871 station_ip 37.129.28.250 114871 port 103 114871 unique_id port 114871 remote_ip 10.8.0.154 114874 username hashtadani3 114874 mac 114874 bytes_out 0 114874 bytes_in 0 114874 station_ip 37.129.28.250 114874 port 103 114874 unique_id port 114874 remote_ip 10.8.0.154 114877 username mirzaei 114877 mac 114877 bytes_out 0 114877 bytes_in 0 114877 station_ip 5.119.186.111 114877 port 116 114877 unique_id port 114878 username tahmasebi 114878 mac 114878 bytes_out 0 114878 bytes_in 0 114878 station_ip 5.119.63.197 114878 port 98 114878 unique_id port 114888 username zare 114888 kill_reason Another user logged on this global unique id 114888 mac 114888 bytes_out 0 114888 bytes_in 0 114888 station_ip 37.27.17.184 114888 port 49 114888 unique_id port 114889 username hashtadani3 114889 mac 114889 bytes_out 0 114889 bytes_in 0 114889 station_ip 37.129.28.250 114889 port 98 114889 unique_id port 114889 remote_ip 10.8.0.154 114892 username hashtadani3 114892 mac 114892 bytes_out 0 114892 bytes_in 0 114892 station_ip 37.129.28.250 114892 port 98 114892 unique_id port 114892 remote_ip 10.8.0.154 114894 username hashtadani3 114894 mac 114894 bytes_out 0 114894 bytes_in 0 114894 station_ip 37.129.28.250 114894 port 98 114894 unique_id port 114894 remote_ip 10.8.0.154 114897 username hashtadani3 114897 mac 114897 bytes_out 0 114897 bytes_in 0 114897 station_ip 37.129.28.250 114897 port 98 114897 unique_id port 114897 remote_ip 10.8.0.154 114903 username rostami 114903 mac 114903 bytes_out 0 114903 bytes_in 0 114903 station_ip 5.119.131.115 114903 port 98 114903 unique_id port 114904 username hashtadani3 114904 mac 114904 bytes_out 0 114904 bytes_in 0 114904 station_ip 37.129.28.250 114904 port 98 114904 unique_id port 114904 remote_ip 10.8.0.154 114907 username hashtadani3 114907 mac 114907 bytes_out 0 114907 bytes_in 0 114907 station_ip 37.129.28.250 114907 port 98 114907 unique_id port 114907 remote_ip 10.8.0.154 114910 username hashtadani3 114910 mac 114910 bytes_out 0 114910 bytes_in 0 114910 station_ip 37.129.28.250 114910 port 98 114910 unique_id port 114910 remote_ip 10.8.0.154 114911 username hashtadani3 114911 mac 114911 bytes_out 0 114911 bytes_in 0 114911 station_ip 37.129.28.250 114911 port 98 114911 unique_id port 114911 remote_ip 10.8.0.154 114913 username hashtadani3 114913 mac 114913 bytes_out 0 114913 bytes_in 0 114913 station_ip 37.129.28.250 114913 port 98 114913 unique_id port 114913 remote_ip 10.8.0.154 114916 username hashtadani3 114916 mac 114916 bytes_out 0 114916 bytes_in 0 114916 station_ip 37.129.28.250 114916 port 98 114916 unique_id port 114916 remote_ip 10.8.0.154 114920 username hashtadani3 114920 mac 114920 bytes_out 0 114920 bytes_in 0 114920 station_ip 37.129.28.250 114920 port 98 114920 unique_id port 114920 remote_ip 10.8.0.154 114926 username musa 114926 kill_reason Another user logged on this global unique id 114926 mac 114890 port 98 114890 unique_id port 114890 remote_ip 10.8.0.154 114891 username zare 114891 kill_reason Another user logged on this global unique id 114891 mac 114891 bytes_out 0 114891 bytes_in 0 114891 station_ip 37.27.17.184 114891 port 49 114891 unique_id port 114895 username hashtadani3 114895 mac 114895 bytes_out 0 114895 bytes_in 0 114895 station_ip 37.129.28.250 114895 port 98 114895 unique_id port 114895 remote_ip 10.8.0.154 114898 username hashtadani3 114898 mac 114898 bytes_out 0 114898 bytes_in 0 114898 station_ip 37.129.28.250 114898 port 113 114898 unique_id port 114898 remote_ip 10.8.0.154 114899 username rostami 114899 kill_reason Another user logged on this global unique id 114899 mac 114899 bytes_out 0 114899 bytes_in 0 114899 station_ip 5.119.131.115 114899 port 98 114899 unique_id port 114899 remote_ip 10.8.0.194 114902 username hashtadani3 114902 mac 114902 bytes_out 0 114902 bytes_in 0 114902 station_ip 37.129.28.250 114902 port 113 114902 unique_id port 114902 remote_ip 10.8.0.154 114906 username hashtadani3 114906 mac 114906 bytes_out 0 114906 bytes_in 0 114906 station_ip 37.129.28.250 114906 port 98 114906 unique_id port 114906 remote_ip 10.8.0.154 114912 bytes_out 0 114912 bytes_in 0 114912 station_ip 37.129.28.250 114912 port 98 114912 unique_id port 114912 remote_ip 10.8.0.154 114915 username hashtadani3 114915 mac 114915 bytes_out 0 114915 bytes_in 0 114915 station_ip 37.129.28.250 114915 port 98 114915 unique_id port 114915 remote_ip 10.8.0.154 114919 username hashtadani3 114919 mac 114919 bytes_out 0 114919 bytes_in 0 114919 station_ip 37.129.28.250 114919 port 98 114919 unique_id port 114919 remote_ip 10.8.0.154 114921 username mirzaei 114921 mac 114921 bytes_out 580712 114921 bytes_in 1319256 114921 station_ip 5.120.109.51 114921 port 103 114921 unique_id port 114921 remote_ip 10.8.0.66 114923 username afarin1 114923 mac 114923 bytes_out 0 114923 bytes_in 0 114923 station_ip 83.122.192.255 114923 port 109 114923 unique_id port 114923 remote_ip 10.8.0.118 114924 username hashtadani3 114924 mac 114924 bytes_out 0 114924 bytes_in 0 114924 station_ip 37.129.28.250 114924 port 103 114924 unique_id port 114924 remote_ip 10.8.0.154 114930 username hashtadani3 114930 mac 114930 bytes_out 0 114930 bytes_in 0 114930 station_ip 37.129.28.250 114930 port 49 114930 unique_id port 114930 remote_ip 10.8.1.94 114931 username hashtadani3 114931 mac 114931 bytes_out 0 114931 bytes_in 0 114931 station_ip 37.129.28.250 114931 port 109 114931 unique_id port 114931 remote_ip 10.8.0.154 114933 username hashtadani3 114933 mac 114933 bytes_out 2005 114933 bytes_in 4812 114933 station_ip 37.129.28.250 114933 port 103 114933 unique_id port 114933 remote_ip 10.8.0.154 114936 username hashtadani3 114936 mac 114936 bytes_out 0 114936 bytes_in 0 114936 station_ip 37.129.28.250 114936 port 109 114936 unique_id port 114936 remote_ip 10.8.0.154 114942 username hashtadani3 114942 mac 114942 bytes_out 0 114942 bytes_in 0 114942 station_ip 37.129.28.250 114942 port 109 114942 unique_id port 114942 remote_ip 10.8.0.154 114946 username hashtadani3 114946 mac 114946 bytes_out 0 114946 bytes_in 0 114946 station_ip 37.129.28.250 114946 port 49 114946 unique_id port 114946 remote_ip 10.8.1.94 114948 username hashtadani3 114948 mac 114948 bytes_out 0 114948 bytes_in 0 114948 station_ip 37.129.28.250 114948 port 109 114948 unique_id port 114914 username hashtadani3 114914 mac 114914 bytes_out 0 114914 bytes_in 0 114914 station_ip 37.129.28.250 114914 port 98 114914 unique_id port 114914 remote_ip 10.8.0.154 114917 username hashtadani3 114917 mac 114917 bytes_out 0 114917 bytes_in 0 114917 station_ip 37.129.28.250 114917 port 98 114917 unique_id port 114917 remote_ip 10.8.0.154 114918 username hashtadani3 114918 mac 114918 bytes_out 0 114918 bytes_in 0 114918 station_ip 37.129.28.250 114918 port 98 114918 unique_id port 114918 remote_ip 10.8.0.154 114922 username tahmasebi 114922 mac 114922 bytes_out 838954 114922 bytes_in 1315826 114922 station_ip 5.119.63.197 114922 port 112 114922 unique_id port 114922 remote_ip 10.8.0.42 114925 username hashtadani3 114925 mac 114925 bytes_out 0 114925 bytes_in 0 114925 station_ip 37.129.28.250 114925 port 103 114925 unique_id port 114925 remote_ip 10.8.0.154 114928 username hashtadani3 114928 mac 114928 bytes_out 0 114928 bytes_in 0 114928 station_ip 37.129.28.250 114928 port 49 114928 unique_id port 114928 remote_ip 10.8.1.94 114929 username hashtadani3 114929 mac 114929 bytes_out 0 114929 bytes_in 0 114929 station_ip 37.129.28.250 114929 port 49 114929 unique_id port 114929 remote_ip 10.8.1.94 114932 username houshang 114932 mac 114932 bytes_out 167355 114932 bytes_in 255635 114932 station_ip 5.120.139.54 114932 port 103 114932 unique_id port 114932 remote_ip 10.8.0.22 114934 username hashtadani3 114934 mac 114934 bytes_out 0 114934 bytes_in 0 114934 station_ip 37.129.28.250 114934 port 103 114934 unique_id port 114934 remote_ip 10.8.0.154 114935 username hashtadani3 114935 mac 114935 bytes_out 0 114935 bytes_in 0 114935 station_ip 37.129.28.250 114935 port 109 114935 unique_id port 114935 remote_ip 10.8.0.154 114939 username hashtadani3 114939 mac 114939 bytes_out 0 114939 bytes_in 0 114939 station_ip 37.129.28.250 114939 port 112 114939 unique_id port 114939 remote_ip 10.8.0.154 114940 username houshang 114940 mac 114940 bytes_out 91144 114940 bytes_in 120410 114940 station_ip 5.120.139.54 114940 port 109 114940 unique_id port 114940 remote_ip 10.8.0.22 114941 username hashtadani3 114941 mac 114941 bytes_out 0 114941 bytes_in 0 114941 station_ip 37.129.28.250 114941 port 109 114941 unique_id port 114941 remote_ip 10.8.0.154 114945 username hashtadani3 114945 mac 114945 bytes_out 0 114945 bytes_in 0 114945 station_ip 37.129.28.250 114945 port 49 114945 unique_id port 114945 remote_ip 10.8.1.94 114950 username hashtadani3 114950 mac 114950 bytes_out 0 114950 bytes_in 0 114950 station_ip 37.129.28.250 114950 port 109 114950 unique_id port 114950 remote_ip 10.8.0.154 114956 username hashtadani3 114956 mac 114956 bytes_out 0 114956 bytes_in 0 114956 station_ip 37.129.28.250 114956 port 100 114956 unique_id port 114956 remote_ip 10.8.0.154 114957 username hashtadani3 114957 mac 114957 bytes_out 0 114957 bytes_in 0 114957 station_ip 37.129.28.250 114957 port 100 114957 unique_id port 114957 remote_ip 10.8.0.154 114959 username hashtadani3 114959 mac 114959 bytes_out 0 114959 bytes_in 0 114959 station_ip 37.129.28.250 114959 port 100 114959 unique_id port 114959 remote_ip 10.8.0.154 114966 username hashtadani3 114966 mac 114966 bytes_out 0 114966 bytes_in 0 114966 station_ip 37.129.28.250 114966 port 50 114966 unique_id port 114966 remote_ip 10.8.1.94 114970 username hashtadani3 114970 mac 114970 bytes_out 0 114926 bytes_out 0 114926 bytes_in 0 114926 station_ip 37.129.157.177 114926 port 100 114926 unique_id port 114927 username hashtadani3 114927 mac 114927 bytes_out 0 114927 bytes_in 0 114927 station_ip 37.129.28.250 114927 port 49 114927 unique_id port 114927 remote_ip 10.8.1.94 114937 username hashtadani3 114937 mac 114937 bytes_out 0 114937 bytes_in 0 114937 station_ip 37.129.28.250 114937 port 49 114937 unique_id port 114937 remote_ip 10.8.1.94 114938 username hashtadani3 114938 mac 114938 bytes_out 0 114938 bytes_in 0 114938 station_ip 37.129.28.250 114938 port 109 114938 unique_id port 114938 remote_ip 10.8.0.154 114943 username hashtadani3 114943 mac 114943 bytes_out 0 114943 bytes_in 0 114943 station_ip 37.129.28.250 114943 port 109 114943 unique_id port 114943 remote_ip 10.8.0.154 114944 username hashtadani3 114944 mac 114944 bytes_out 0 114944 bytes_in 0 114944 station_ip 37.129.28.250 114944 port 109 114944 unique_id port 114944 remote_ip 10.8.0.154 114947 username hashtadani3 114947 mac 114947 bytes_out 0 114947 bytes_in 0 114947 station_ip 37.129.28.250 114947 port 49 114947 unique_id port 114947 remote_ip 10.8.1.94 114951 username musa 114951 mac 114951 bytes_out 0 114951 bytes_in 0 114951 station_ip 37.129.157.177 114951 port 100 114951 unique_id port 114952 username hashtadani3 114952 mac 114952 bytes_out 0 114952 bytes_in 0 114952 station_ip 37.129.28.250 114952 port 100 114952 unique_id port 114952 remote_ip 10.8.0.154 114955 username hashtadani3 114955 mac 114955 bytes_out 0 114955 bytes_in 0 114955 station_ip 37.129.28.250 114955 port 100 114955 unique_id port 114955 remote_ip 10.8.0.154 114960 username hashtadani3 114960 mac 114960 bytes_out 0 114960 bytes_in 0 114960 station_ip 37.129.28.250 114960 port 100 114960 unique_id port 114960 remote_ip 10.8.0.154 114962 username alirr 114962 unique_id port 114962 terminate_cause Lost-Carrier 114962 bytes_out 130259 114962 bytes_in 681099 114962 station_ip 5.120.191.75 114962 port 15729342 114962 nas_port_type Virtual 114962 remote_ip 5.5.5.141 114964 username hashtadani3 114964 mac 114964 bytes_out 0 114964 bytes_in 0 114964 station_ip 37.129.28.250 114964 port 50 114964 unique_id port 114964 remote_ip 10.8.1.94 114965 username hashtadani3 114965 mac 114965 bytes_out 0 114965 bytes_in 0 114965 station_ip 37.129.28.250 114965 port 50 114965 unique_id port 114965 remote_ip 10.8.1.94 114968 username hashtadani3 114968 mac 114968 bytes_out 0 114968 bytes_in 0 114968 station_ip 37.129.28.250 114968 port 100 114968 unique_id port 114968 remote_ip 10.8.0.154 114969 username morteza 114969 mac 114969 bytes_out 0 114969 bytes_in 0 114969 station_ip 113.203.85.28 114969 port 49 114969 unique_id port 114969 remote_ip 10.8.1.62 114972 username hashtadani3 114972 mac 114972 bytes_out 0 114972 bytes_in 0 114972 station_ip 37.129.28.250 114972 port 103 114972 unique_id port 114972 remote_ip 10.8.0.154 114973 username mohammadjavad 114973 mac 114973 bytes_out 318054 114973 bytes_in 1405115 114973 station_ip 113.203.53.81 114973 port 100 114973 unique_id port 114973 remote_ip 10.8.0.142 114974 username hashtadani3 114974 mac 114974 bytes_out 0 114974 bytes_in 0 114974 station_ip 37.129.28.250 114974 port 100 114974 unique_id port 114974 remote_ip 10.8.0.154 114979 username hashtadani3 114979 mac 114979 bytes_out 0 114979 bytes_in 0 114979 station_ip 37.129.28.250 114948 remote_ip 10.8.0.154 114949 username hashtadani3 114949 mac 114949 bytes_out 0 114949 bytes_in 0 114949 station_ip 37.129.28.250 114949 port 109 114949 unique_id port 114949 remote_ip 10.8.0.154 114953 username morteza 114953 mac 114953 bytes_out 0 114953 bytes_in 0 114953 station_ip 113.203.85.28 114953 port 103 114953 unique_id port 114953 remote_ip 10.8.0.46 114954 username hashtadani3 114954 mac 114954 bytes_out 0 114954 bytes_in 0 114954 station_ip 37.129.28.250 114954 port 100 114954 unique_id port 114954 remote_ip 10.8.0.154 114958 username hashtadani3 114958 mac 114958 bytes_out 0 114958 bytes_in 0 114958 station_ip 37.129.28.250 114958 port 50 114958 unique_id port 114958 remote_ip 10.8.1.94 114961 username hashtadani3 114961 mac 114961 bytes_out 2058 114961 bytes_in 4812 114961 station_ip 37.129.28.250 114961 port 100 114961 unique_id port 114961 remote_ip 10.8.0.154 114963 username hashtadani3 114963 mac 114963 bytes_out 0 114963 bytes_in 0 114963 station_ip 37.129.28.250 114963 port 100 114963 unique_id port 114963 remote_ip 10.8.0.154 114967 username hashtadani3 114967 mac 114967 bytes_out 0 114967 bytes_in 0 114967 station_ip 37.129.28.250 114967 port 100 114967 unique_id port 114967 remote_ip 10.8.0.154 114978 username hashtadani3 114978 mac 114978 bytes_out 0 114978 bytes_in 0 114978 station_ip 37.129.28.250 114978 port 109 114978 unique_id port 114978 remote_ip 10.8.0.154 114980 username houshang 114980 mac 114980 bytes_out 0 114980 bytes_in 0 114980 station_ip 5.120.139.54 114980 port 103 114980 unique_id port 114980 remote_ip 10.8.0.22 114981 username hashtadani3 114981 mac 114981 bytes_out 0 114981 bytes_in 0 114981 station_ip 37.129.28.250 114981 port 103 114981 unique_id port 114981 remote_ip 10.8.0.154 114983 username hashtadani3 114983 mac 114983 bytes_out 0 114983 bytes_in 0 114983 station_ip 37.129.28.250 114983 port 103 114983 unique_id port 114983 remote_ip 10.8.0.154 114986 username hashtadani3 114986 mac 114986 bytes_out 0 114986 bytes_in 0 114986 station_ip 37.129.28.250 114986 port 112 114986 unique_id port 114986 remote_ip 10.8.0.154 114988 username mohammadjavad 114988 mac 114988 bytes_out 0 114988 bytes_in 0 114988 station_ip 37.129.64.108 114988 port 103 114988 unique_id port 114988 remote_ip 10.8.0.142 114989 username forozande 114989 mac 114989 bytes_out 0 114989 bytes_in 0 114989 station_ip 37.129.33.42 114989 port 109 114989 unique_id port 114989 remote_ip 10.8.0.74 114995 username morteza 114995 kill_reason Another user logged on this global unique id 114995 mac 114995 bytes_out 0 114995 bytes_in 0 114995 station_ip 113.203.17.0 114995 port 103 114995 unique_id port 114995 remote_ip 10.8.0.46 115000 username alihosseini1 115000 mac 115000 bytes_out 2000711 115000 bytes_in 19760617 115000 station_ip 5.119.241.95 115000 port 100 115000 unique_id port 115000 remote_ip 10.8.0.166 115009 username hashtadani3 115009 mac 115009 bytes_out 0 115009 bytes_in 0 115009 station_ip 37.129.28.250 115009 port 109 115009 unique_id port 115009 remote_ip 10.8.0.154 115016 username hashtadani3 115016 mac 115016 bytes_out 0 115016 bytes_in 0 115016 station_ip 37.129.28.250 115016 port 100 115016 unique_id port 115016 remote_ip 10.8.0.154 115017 username hashtadani3 115017 mac 115017 bytes_out 0 115017 bytes_in 0 115017 station_ip 37.129.28.250 115017 port 100 115017 unique_id port 114970 bytes_in 0 114970 station_ip 37.129.28.250 114970 port 100 114970 unique_id port 114970 remote_ip 10.8.0.154 114971 username hamid.e 114971 unique_id port 114971 terminate_cause User-Request 114971 bytes_out 692476 114971 bytes_in 11614392 114971 station_ip 188.245.91.32 114971 port 15729341 114971 nas_port_type Virtual 114971 remote_ip 5.5.5.193 114975 username hashtadani3 114975 mac 114975 bytes_out 0 114975 bytes_in 0 114975 station_ip 37.129.28.250 114975 port 100 114975 unique_id port 114975 remote_ip 10.8.0.154 114976 username hashtadani3 114976 mac 114976 bytes_out 0 114976 bytes_in 0 114976 station_ip 37.129.28.250 114976 port 103 114976 unique_id port 114976 remote_ip 10.8.0.154 114977 username hashtadani3 114977 mac 114977 bytes_out 0 114977 bytes_in 0 114977 station_ip 37.129.28.250 114977 port 103 114977 unique_id port 114977 remote_ip 10.8.0.154 114982 username hashtadani3 114982 mac 114982 bytes_out 0 114982 bytes_in 0 114982 station_ip 37.129.28.250 114982 port 103 114982 unique_id port 114982 remote_ip 10.8.0.154 114987 username mostafa_es78 114987 unique_id port 114987 terminate_cause Lost-Carrier 114987 bytes_out 394115 114987 bytes_in 1719461 114987 station_ip 178.236.35.96 114987 port 15729338 114987 nas_port_type Virtual 114987 remote_ip 5.5.5.162 114991 username morteza 114991 mac 114991 bytes_out 390458 114991 bytes_in 6703447 114991 station_ip 113.203.17.0 114991 port 49 114991 unique_id port 114991 remote_ip 10.8.1.62 114992 username hashtadani3 114992 mac 114992 bytes_out 0 114992 bytes_in 0 114992 station_ip 37.129.28.250 114992 port 109 114992 unique_id port 114992 remote_ip 10.8.0.154 114993 username alihosseini1 114993 mac 114993 bytes_out 0 114993 bytes_in 0 114993 station_ip 5.119.241.95 114993 port 109 114993 unique_id port 114993 remote_ip 10.8.0.166 114994 username aminvpn 114994 mac 114994 bytes_out 650772 114994 bytes_in 4203838 114994 station_ip 37.129.92.251 114994 port 100 114994 unique_id port 114994 remote_ip 10.8.0.14 114996 username hashtadani3 114996 mac 114996 bytes_out 0 114996 bytes_in 0 114996 station_ip 37.129.28.250 114996 port 112 114996 unique_id port 114996 remote_ip 10.8.0.154 114999 username hashtadani3 114999 mac 114999 bytes_out 0 114999 bytes_in 0 114999 station_ip 37.129.28.250 114999 port 103 114999 unique_id port 114999 remote_ip 10.8.0.154 115001 username hashtadani3 115001 mac 115001 bytes_out 0 115001 bytes_in 0 115001 station_ip 37.129.28.250 115001 port 100 115001 unique_id port 115001 remote_ip 10.8.0.154 115003 username hashtadani3 115003 mac 115003 bytes_out 0 115003 bytes_in 0 115003 station_ip 37.129.28.250 115003 port 100 115003 unique_id port 115003 remote_ip 10.8.0.154 115004 username hashtadani3 115004 mac 115004 bytes_out 0 115004 bytes_in 0 115004 station_ip 37.129.28.250 115004 port 100 115004 unique_id port 115004 remote_ip 10.8.0.154 115005 username hashtadani3 115005 mac 115005 bytes_out 0 115005 bytes_in 0 115005 station_ip 37.129.28.250 115005 port 100 115005 unique_id port 115005 remote_ip 10.8.0.154 115006 username hashtadani3 115006 mac 115006 bytes_out 0 115006 bytes_in 0 115006 station_ip 37.129.28.250 115006 port 100 115006 unique_id port 115006 remote_ip 10.8.0.154 115008 username hashtadani3 115008 mac 115008 bytes_out 0 115008 bytes_in 0 115008 station_ip 37.129.28.250 115008 port 109 115008 unique_id port 115008 remote_ip 10.8.0.154 115010 username sabaghnezhad 114979 port 109 114979 unique_id port 114979 remote_ip 10.8.0.154 114984 username hashtadani3 114984 mac 114984 bytes_out 0 114984 bytes_in 0 114984 station_ip 37.129.28.250 114984 port 103 114984 unique_id port 114984 remote_ip 10.8.0.154 114985 username hashtadani3 114985 mac 114985 bytes_out 0 114985 bytes_in 0 114985 station_ip 37.129.28.250 114985 port 109 114985 unique_id port 114985 remote_ip 10.8.0.154 114990 username hashtadani3 114990 mac 114990 bytes_out 0 114990 bytes_in 0 114990 station_ip 37.129.28.250 114990 port 103 114990 unique_id port 114990 remote_ip 10.8.0.154 114997 username morteza 114997 mac 114997 bytes_out 0 114997 bytes_in 0 114997 station_ip 113.203.17.0 114997 port 103 114997 unique_id port 114998 username mohammadjavad 114998 mac 114998 bytes_out 434503 114998 bytes_in 16254225 114998 station_ip 83.122.68.212 114998 port 109 114998 unique_id port 114998 remote_ip 10.8.0.142 115002 username hashtadani3 115002 mac 115002 bytes_out 0 115002 bytes_in 0 115002 station_ip 37.129.28.250 115002 port 100 115002 unique_id port 115002 remote_ip 10.8.0.154 115007 username mirzaei 115007 kill_reason Another user logged on this global unique id 115007 mac 115007 bytes_out 0 115007 bytes_in 0 115007 station_ip 5.120.109.51 115007 port 98 115007 unique_id port 115007 remote_ip 10.8.0.66 115012 username hashtadani3 115012 mac 115012 bytes_out 0 115012 bytes_in 0 115012 station_ip 37.129.28.250 115012 port 100 115012 unique_id port 115012 remote_ip 10.8.0.154 115013 username hashtadani3 115013 mac 115013 bytes_out 0 115013 bytes_in 0 115013 station_ip 37.129.28.250 115013 port 100 115013 unique_id port 115013 remote_ip 10.8.0.154 115014 username hashtadani3 115014 mac 115014 bytes_out 0 115014 bytes_in 0 115014 station_ip 37.129.28.250 115014 port 100 115014 unique_id port 115014 remote_ip 10.8.0.154 115015 username hashtadani3 115015 mac 115015 bytes_out 0 115015 bytes_in 0 115015 station_ip 37.129.28.250 115015 port 100 115015 unique_id port 115015 remote_ip 10.8.0.154 115021 username hashtadani3 115021 mac 115021 bytes_out 0 115021 bytes_in 0 115021 station_ip 37.129.28.250 115021 port 100 115021 unique_id port 115021 remote_ip 10.8.0.154 115022 username hashtadani3 115022 mac 115022 bytes_out 0 115022 bytes_in 0 115022 station_ip 37.129.28.250 115022 port 100 115022 unique_id port 115022 remote_ip 10.8.0.154 115024 username hashtadani3 115024 mac 115024 bytes_out 0 115024 bytes_in 0 115024 station_ip 37.129.28.250 115024 port 113 115024 unique_id port 115024 remote_ip 10.8.0.154 115025 username hashtadani3 115025 mac 115025 bytes_out 0 115025 bytes_in 0 115025 station_ip 37.129.28.250 115025 port 113 115025 unique_id port 115025 remote_ip 10.8.0.154 115026 username forozande 115026 mac 115026 bytes_out 0 115026 bytes_in 0 115026 station_ip 83.123.190.77 115026 port 109 115026 unique_id port 115026 remote_ip 10.8.0.74 115028 username hashtadani3 115028 mac 115028 bytes_out 0 115028 bytes_in 0 115028 station_ip 37.129.28.250 115028 port 109 115028 unique_id port 115028 remote_ip 10.8.0.154 115029 username hashtadani3 115029 mac 115029 bytes_out 0 115029 bytes_in 0 115029 station_ip 37.129.28.250 115029 port 109 115029 unique_id port 115029 remote_ip 10.8.0.154 115030 username hashtadani3 115030 mac 115030 bytes_out 0 115030 bytes_in 0 115030 station_ip 37.129.28.250 115030 port 109 115010 mac 115010 bytes_out 118818 115010 bytes_in 99790 115010 station_ip 37.129.59.225 115010 port 100 115010 unique_id port 115010 remote_ip 10.8.0.186 115011 username hashtadani3 115011 mac 115011 bytes_out 0 115011 bytes_in 0 115011 station_ip 37.129.28.250 115011 port 100 115011 unique_id port 115011 remote_ip 10.8.0.154 115018 username hashtadani3 115018 mac 115018 bytes_out 0 115018 bytes_in 0 115018 station_ip 37.129.28.250 115018 port 109 115018 unique_id port 115018 remote_ip 10.8.0.154 115019 username kordestani 115019 mac 115019 bytes_out 0 115019 bytes_in 0 115019 station_ip 217.219.43.138 115019 port 100 115019 unique_id port 115019 remote_ip 10.8.0.134 115034 username hashtadani3 115034 mac 115034 bytes_out 0 115034 bytes_in 0 115034 station_ip 37.129.28.250 115034 port 113 115034 unique_id port 115034 remote_ip 10.8.0.154 115043 username sabaghnezhad 115043 mac 115043 bytes_out 0 115043 bytes_in 0 115043 station_ip 83.122.56.231 115043 port 113 115043 unique_id port 115043 remote_ip 10.8.0.186 115051 username kordestani 115051 mac 115051 bytes_out 784092 115051 bytes_in 9459317 115051 station_ip 217.219.43.138 115051 port 100 115051 unique_id port 115051 remote_ip 10.8.0.134 115052 username hashtadani3 115052 mac 115052 bytes_out 195050 115052 bytes_in 1945120 115052 station_ip 37.129.28.250 115052 port 103 115052 unique_id port 115052 remote_ip 10.8.0.154 115054 username hashtadani3 115054 mac 115054 bytes_out 0 115054 bytes_in 0 115054 station_ip 37.129.28.250 115054 port 52 115054 unique_id port 115054 remote_ip 10.8.1.94 115058 username hashtadani3 115058 mac 115058 bytes_out 0 115058 bytes_in 0 115058 station_ip 37.129.28.250 115058 port 113 115058 unique_id port 115058 remote_ip 10.8.0.154 115062 username forozande 115062 mac 115062 bytes_out 0 115062 bytes_in 0 115062 station_ip 83.122.236.49 115062 port 112 115062 unique_id port 115062 remote_ip 10.8.0.74 115069 username sedighe 115069 mac 115069 bytes_out 271173 115069 bytes_in 700408 115069 station_ip 83.122.106.215 115069 port 112 115069 unique_id port 115069 remote_ip 10.8.0.146 115070 username hashtadani3 115070 mac 115070 bytes_out 0 115070 bytes_in 0 115070 station_ip 37.129.28.250 115070 port 100 115070 unique_id port 115070 remote_ip 10.8.0.154 115075 username hashtadani3 115075 mac 115075 bytes_out 0 115075 bytes_in 0 115075 station_ip 37.129.28.250 115075 port 100 115075 unique_id port 115075 remote_ip 10.8.0.154 115076 username hashtadani3 115076 mac 115076 bytes_out 0 115076 bytes_in 0 115076 station_ip 37.129.28.250 115076 port 100 115076 unique_id port 115076 remote_ip 10.8.0.154 115077 username hashtadani3 115077 mac 115077 bytes_out 0 115077 bytes_in 0 115077 station_ip 37.129.28.250 115077 port 100 115077 unique_id port 115077 remote_ip 10.8.0.154 115079 username hashtadani3 115079 mac 115079 bytes_out 0 115079 bytes_in 0 115079 station_ip 37.129.28.250 115079 port 103 115079 unique_id port 115079 remote_ip 10.8.0.154 115082 username hashtadani3 115082 mac 115082 bytes_out 0 115082 bytes_in 0 115082 station_ip 37.129.28.250 115082 port 103 115082 unique_id port 115082 remote_ip 10.8.0.154 115085 username hashtadani3 115085 mac 115085 bytes_out 0 115085 bytes_in 0 115085 station_ip 37.129.28.250 115085 port 103 115085 unique_id port 115085 remote_ip 10.8.0.154 115087 username hashtadani3 115087 mac 115017 remote_ip 10.8.0.154 115020 username hashtadani3 115020 mac 115020 bytes_out 0 115020 bytes_in 0 115020 station_ip 37.129.28.250 115020 port 100 115020 unique_id port 115020 remote_ip 10.8.0.154 115023 username hashtadani3 115023 mac 115023 bytes_out 0 115023 bytes_in 0 115023 station_ip 37.129.28.250 115023 port 112 115023 unique_id port 115023 remote_ip 10.8.0.154 115027 username hashtadani3 115027 mac 115027 bytes_out 0 115027 bytes_in 0 115027 station_ip 37.129.28.250 115027 port 50 115027 unique_id port 115027 remote_ip 10.8.1.94 115031 username hashtadani3 115031 mac 115031 bytes_out 0 115031 bytes_in 0 115031 station_ip 37.129.28.250 115031 port 50 115031 unique_id port 115031 remote_ip 10.8.1.94 115033 username hashtadani3 115033 mac 115033 bytes_out 0 115033 bytes_in 0 115033 station_ip 37.129.28.250 115033 port 109 115033 unique_id port 115033 remote_ip 10.8.0.154 115035 username rostami 115035 mac 115035 bytes_out 343301 115035 bytes_in 1362883 115035 station_ip 5.119.131.115 115035 port 109 115035 unique_id port 115035 remote_ip 10.8.0.194 115036 username hashtadani3 115036 mac 115036 bytes_out 0 115036 bytes_in 0 115036 station_ip 37.129.28.250 115036 port 109 115036 unique_id port 115036 remote_ip 10.8.0.154 115039 username hashtadani3 115039 mac 115039 bytes_out 1644 115039 bytes_in 4970 115039 station_ip 37.129.28.250 115039 port 109 115039 unique_id port 115039 remote_ip 10.8.0.154 115049 username hashtadani3 115049 mac 115049 bytes_out 1149633 115049 bytes_in 17691124 115049 station_ip 37.129.28.250 115049 port 109 115049 unique_id port 115049 remote_ip 10.8.0.154 115055 username hashtadani3 115055 mac 115055 bytes_out 0 115055 bytes_in 0 115055 station_ip 37.129.28.250 115055 port 52 115055 unique_id port 115055 remote_ip 10.8.1.94 115056 username hashtadani3 115056 mac 115056 bytes_out 0 115056 bytes_in 0 115056 station_ip 37.129.28.250 115056 port 113 115056 unique_id port 115056 remote_ip 10.8.0.154 115059 username sabaghnezhad 115059 mac 115059 bytes_out 39269 115059 bytes_in 32291 115059 station_ip 83.122.56.231 115059 port 103 115059 unique_id port 115059 remote_ip 10.8.0.186 115060 username hashtadani3 115060 mac 115060 bytes_out 0 115060 bytes_in 0 115060 station_ip 37.129.28.250 115060 port 103 115060 unique_id port 115060 remote_ip 10.8.0.154 115064 username hashtadani3 115064 mac 115064 bytes_out 0 115064 bytes_in 0 115064 station_ip 37.129.28.250 115064 port 100 115064 unique_id port 115064 remote_ip 10.8.0.154 115065 username hashtadani3 115065 mac 115065 bytes_out 0 115065 bytes_in 0 115065 station_ip 37.129.28.250 115065 port 52 115065 unique_id port 115065 remote_ip 10.8.1.94 115068 username hashtadani3 115068 mac 115068 bytes_out 0 115068 bytes_in 0 115068 station_ip 37.129.28.250 115068 port 103 115068 unique_id port 115068 remote_ip 10.8.0.154 115071 username hashtadani3 115071 mac 115071 bytes_out 0 115071 bytes_in 0 115071 station_ip 37.129.28.250 115071 port 100 115071 unique_id port 115071 remote_ip 10.8.0.154 115072 username hashtadani3 115072 mac 115072 bytes_out 0 115072 bytes_in 0 115072 station_ip 37.129.28.250 115072 port 103 115072 unique_id port 115072 remote_ip 10.8.0.154 115080 username arabpour 115080 unique_id port 115080 terminate_cause User-Request 115080 bytes_out 356 115080 bytes_in 244 115080 station_ip 85.239.202.3 115080 port 15729344 115080 nas_port_type Virtual 115030 unique_id port 115030 remote_ip 10.8.0.154 115032 username hashtadani3 115032 mac 115032 bytes_out 0 115032 bytes_in 0 115032 station_ip 37.129.28.250 115032 port 109 115032 unique_id port 115032 remote_ip 10.8.0.154 115037 username hashtadani3 115037 mac 115037 bytes_out 0 115037 bytes_in 0 115037 station_ip 37.129.28.250 115037 port 109 115037 unique_id port 115037 remote_ip 10.8.0.154 115038 username hashtadani3 115038 mac 115038 bytes_out 0 115038 bytes_in 0 115038 station_ip 37.129.28.250 115038 port 51 115038 unique_id port 115038 remote_ip 10.8.1.94 115040 username hashtadani3 115040 mac 115040 bytes_out 0 115040 bytes_in 0 115040 station_ip 37.129.28.250 115040 port 109 115040 unique_id port 115040 remote_ip 10.8.0.154 115041 username malekpoir 115041 kill_reason Another user logged on this global unique id 115041 mac 115041 bytes_out 0 115041 bytes_in 0 115041 station_ip 5.120.72.175 115041 port 103 115041 unique_id port 115041 remote_ip 10.8.0.58 115042 username sabaghnezhad 115042 mac 115042 bytes_out 264016 115042 bytes_in 136278 115042 station_ip 83.122.56.231 115042 port 112 115042 unique_id port 115042 remote_ip 10.8.0.186 115044 username tahmasebi 115044 mac 115044 bytes_out 60390 115044 bytes_in 81212 115044 station_ip 5.119.63.197 115044 port 49 115044 unique_id port 115044 remote_ip 10.8.1.90 115045 username malekpoir 115045 mac 115045 bytes_out 0 115045 bytes_in 0 115045 station_ip 5.120.72.175 115045 port 103 115045 unique_id port 115046 username mirzaei 115046 mac 115046 bytes_out 0 115046 bytes_in 0 115046 station_ip 5.120.109.51 115046 port 98 115046 unique_id port 115047 username forozande 115047 mac 115047 bytes_out 0 115047 bytes_in 0 115047 station_ip 37.129.191.150 115047 port 98 115047 unique_id port 115047 remote_ip 10.8.0.74 115048 username kordestani 115048 mac 115048 bytes_out 0 115048 bytes_in 0 115048 station_ip 217.219.43.138 115048 port 100 115048 unique_id port 115048 remote_ip 10.8.0.134 115050 username malekpoir 115050 kill_reason Another user logged on this global unique id 115050 mac 115050 bytes_out 0 115050 bytes_in 0 115050 station_ip 5.120.72.175 115050 port 51 115050 unique_id port 115050 remote_ip 10.8.1.54 115053 username hashtadani3 115053 kill_reason Maximum check online fails reached 115053 mac 115053 bytes_out 0 115053 bytes_in 0 115053 station_ip 37.129.28.250 115053 port 109 115053 unique_id port 115057 username hashtadani3 115057 mac 115057 bytes_out 0 115057 bytes_in 0 115057 station_ip 37.129.28.250 115057 port 113 115057 unique_id port 115057 remote_ip 10.8.0.154 115061 username hashtadani3 115061 mac 115061 bytes_out 0 115061 bytes_in 0 115061 station_ip 37.129.28.250 115061 port 103 115061 unique_id port 115061 remote_ip 10.8.0.154 115063 username sedighe 115063 mac 115063 bytes_out 0 115063 bytes_in 0 115063 station_ip 83.123.99.244 115063 port 100 115063 unique_id port 115063 remote_ip 10.8.0.146 115066 username forozande 115066 mac 115066 bytes_out 0 115066 bytes_in 0 115066 station_ip 83.122.236.49 115066 port 103 115066 unique_id port 115066 remote_ip 10.8.0.74 115067 username rostami 115067 mac 115067 bytes_out 140050 115067 bytes_in 463566 115067 station_ip 5.119.131.115 115067 port 100 115067 unique_id port 115067 remote_ip 10.8.0.194 115073 username hashtadani3 115073 mac 115073 bytes_out 0 115073 bytes_in 0 115073 station_ip 37.129.28.250 115073 port 103 115073 unique_id port 115073 remote_ip 10.8.0.154 115074 username forozande 115074 mac 115074 bytes_out 73060 115074 bytes_in 624009 115074 station_ip 83.122.159.210 115074 port 100 115074 unique_id port 115074 remote_ip 10.8.0.74 115078 username hashtadani3 115078 mac 115078 bytes_out 0 115078 bytes_in 0 115078 station_ip 37.129.28.250 115078 port 52 115078 unique_id port 115078 remote_ip 10.8.1.94 115081 username hashtadani3 115081 mac 115081 bytes_out 0 115081 bytes_in 0 115081 station_ip 37.129.28.250 115081 port 103 115081 unique_id port 115081 remote_ip 10.8.0.154 115084 username hashtadani3 115084 kill_reason Maximum check online fails reached 115084 mac 115084 bytes_out 0 115084 bytes_in 0 115084 station_ip 37.129.28.250 115084 port 100 115084 unique_id port 115086 username hashtadani3 115086 mac 115086 bytes_out 0 115086 bytes_in 0 115086 station_ip 37.129.28.250 115086 port 103 115086 unique_id port 115086 remote_ip 10.8.0.154 115092 username aminvpn 115092 unique_id port 115092 terminate_cause Lost-Carrier 115092 bytes_out 7083 115092 bytes_in 26824 115092 station_ip 5.125.22.56 115092 port 15729345 115092 nas_port_type Virtual 115092 remote_ip 5.5.5.159 115093 username hashtadani3 115093 mac 115093 bytes_out 0 115093 bytes_in 0 115093 station_ip 5.202.60.179 115093 port 112 115093 unique_id port 115093 remote_ip 10.8.0.154 115096 username rostami 115096 kill_reason Another user logged on this global unique id 115096 mac 115096 bytes_out 0 115096 bytes_in 0 115096 station_ip 5.119.131.115 115096 port 103 115096 unique_id port 115096 remote_ip 10.8.0.194 115097 username kordestani 115097 mac 115097 bytes_out 0 115097 bytes_in 0 115097 station_ip 217.219.43.138 115097 port 112 115097 unique_id port 115097 remote_ip 10.8.0.134 115098 username malekpoir 115098 mac 115098 bytes_out 0 115098 bytes_in 0 115098 station_ip 5.120.72.175 115098 port 51 115098 unique_id port 115102 username hashtadani3 115102 mac 115102 bytes_out 0 115102 bytes_in 0 115102 station_ip 5.202.60.179 115102 port 113 115102 unique_id port 115102 remote_ip 10.8.0.154 115103 username alireza 115103 unique_id port 115103 terminate_cause Lost-Carrier 115103 bytes_out 92297 115103 bytes_in 423432 115103 station_ip 194.15.99.84 115103 port 15729346 115103 nas_port_type Virtual 115103 remote_ip 5.5.5.163 115105 username hashtadani3 115105 mac 115105 bytes_out 0 115105 bytes_in 0 115105 station_ip 5.202.60.179 115105 port 103 115105 unique_id port 115105 remote_ip 10.8.0.154 115111 username hashtadani3 115111 mac 115111 bytes_out 0 115111 bytes_in 0 115111 station_ip 5.202.60.179 115111 port 50 115111 unique_id port 115111 remote_ip 10.8.1.94 115112 username hashtadani3 115112 mac 115112 bytes_out 0 115112 bytes_in 0 115112 station_ip 5.202.60.179 115112 port 117 115112 unique_id port 115112 remote_ip 10.8.0.154 115117 username hashtadani3 115117 mac 115117 bytes_out 0 115117 bytes_in 0 115117 station_ip 5.202.60.179 115117 port 117 115117 unique_id port 115117 remote_ip 10.8.0.154 115119 username alipour 115119 mac 115119 bytes_out 1313604 115119 bytes_in 39323321 115119 station_ip 37.129.15.154 115119 port 113 115119 unique_id port 115119 remote_ip 10.8.0.102 115120 username malekpoir 115120 mac 115120 bytes_out 0 115120 bytes_in 0 115120 station_ip 5.120.68.123 115120 port 50 115120 unique_id port 115120 remote_ip 10.8.1.54 115121 username hashtadani3 115121 mac 115121 bytes_out 0 115121 bytes_in 0 115121 station_ip 5.202.60.179 115121 port 50 115080 remote_ip 5.5.5.153 115083 username hashtadani3 115083 mac 115083 bytes_out 0 115083 bytes_in 0 115083 station_ip 37.129.28.250 115083 port 103 115083 unique_id port 115083 remote_ip 10.8.0.154 115094 username alipour 115094 mac 115094 bytes_out 0 115094 bytes_in 0 115094 station_ip 37.129.15.154 115094 port 110 115094 unique_id port 115094 remote_ip 10.8.0.102 115095 username malekpoir 115095 kill_reason Another user logged on this global unique id 115095 mac 115095 bytes_out 0 115095 bytes_in 0 115095 station_ip 5.120.72.175 115095 port 51 115095 unique_id port 115099 username amir 115099 mac 115099 bytes_out 0 115099 bytes_in 0 115099 station_ip 46.225.208.226 115099 port 50 115099 unique_id port 115099 remote_ip 10.8.1.22 115100 username hashtadani3 115100 mac 115100 bytes_out 0 115100 bytes_in 0 115100 station_ip 5.202.60.179 115100 port 112 115100 unique_id port 115100 remote_ip 10.8.0.154 115104 username rostami 115104 mac 115104 bytes_out 0 115104 bytes_in 0 115104 station_ip 5.119.131.115 115104 port 103 115104 unique_id port 115107 username alipour 115107 mac 115107 bytes_out 0 115107 bytes_in 0 115107 station_ip 37.129.15.154 115107 port 52 115107 unique_id port 115107 remote_ip 10.8.1.50 115108 username forozande 115108 mac 115108 bytes_out 0 115108 bytes_in 0 115108 station_ip 37.129.233.160 115108 port 112 115108 unique_id port 115108 remote_ip 10.8.0.74 115118 username hashtadani3 115118 mac 115118 bytes_out 0 115118 bytes_in 0 115118 station_ip 5.202.60.179 115118 port 51 115118 unique_id port 115118 remote_ip 10.8.1.94 115132 username sabaghnezhad 115132 mac 115132 bytes_out 0 115132 bytes_in 0 115132 station_ip 37.129.11.49 115132 port 110 115132 unique_id port 115132 remote_ip 10.8.0.186 115134 username kordestani 115134 mac 115134 bytes_out 0 115134 bytes_in 0 115134 station_ip 217.219.43.138 115134 port 113 115134 unique_id port 115134 remote_ip 10.8.0.134 115137 username alipour 115137 mac 115137 bytes_out 35810 115137 bytes_in 39700 115137 station_ip 37.129.15.154 115137 port 103 115137 unique_id port 115137 remote_ip 10.8.0.102 115141 username hashtadani3 115141 mac 115141 bytes_out 0 115141 bytes_in 0 115141 station_ip 5.202.60.179 115141 port 116 115141 unique_id port 115141 remote_ip 10.8.0.154 115144 username hashtadani3 115144 mac 115144 bytes_out 0 115144 bytes_in 0 115144 station_ip 5.202.60.179 115144 port 103 115144 unique_id port 115144 remote_ip 10.8.0.154 115145 username mohammadjavad 115145 mac 115145 bytes_out 85865 115145 bytes_in 156922 115145 station_ip 37.129.132.194 115145 port 110 115145 unique_id port 115145 remote_ip 10.8.0.142 115149 username amir 115149 mac 115149 bytes_out 477190 115149 bytes_in 1586726 115149 station_ip 46.225.208.226 115149 port 113 115149 unique_id port 115149 remote_ip 10.8.0.50 115151 username alipour 115151 mac 115151 bytes_out 539590 115151 bytes_in 5159865 115151 station_ip 37.129.15.154 115151 port 116 115151 unique_id port 115151 remote_ip 10.8.0.102 115152 username hashtadani3 115152 mac 115152 bytes_out 0 115152 bytes_in 0 115152 station_ip 5.202.60.179 115152 port 103 115152 unique_id port 115152 remote_ip 10.8.0.154 115155 username alipour 115155 mac 115155 bytes_out 0 115155 bytes_in 0 115155 station_ip 37.129.15.154 115155 port 51 115155 unique_id port 115155 remote_ip 10.8.1.50 115170 username mosi 115170 mac 115170 bytes_out 0 115087 bytes_out 0 115087 bytes_in 0 115087 station_ip 37.129.28.250 115087 port 103 115087 unique_id port 115087 remote_ip 10.8.0.154 115088 username hashtadani3 115088 mac 115088 bytes_out 0 115088 bytes_in 0 115088 station_ip 37.129.28.250 115088 port 103 115088 unique_id port 115088 remote_ip 10.8.0.154 115089 username hashtadani3 115089 mac 115089 bytes_out 0 115089 bytes_in 0 115089 station_ip 37.129.28.250 115089 port 103 115089 unique_id port 115089 remote_ip 10.8.0.154 115090 username hashtadani3 115090 mac 115090 bytes_out 0 115090 bytes_in 0 115090 station_ip 37.129.28.250 115090 port 103 115090 unique_id port 115090 remote_ip 10.8.0.154 115091 username rostami 115091 mac 115091 bytes_out 0 115091 bytes_in 0 115091 station_ip 5.119.131.115 115091 port 112 115091 unique_id port 115091 remote_ip 10.8.0.194 115101 username rostami 115101 kill_reason Another user logged on this global unique id 115101 mac 115101 bytes_out 0 115101 bytes_in 0 115101 station_ip 5.119.131.115 115101 port 103 115101 unique_id port 115106 username amir 115106 mac 115106 bytes_out 441778 115106 bytes_in 1437190 115106 station_ip 46.225.208.226 115106 port 112 115106 unique_id port 115106 remote_ip 10.8.0.50 115109 username hashtadani3 115109 kill_reason Maximum check online fails reached 115109 mac 115109 bytes_out 0 115109 bytes_in 0 115109 station_ip 5.202.60.179 115109 port 114 115109 unique_id port 115110 username hashtadani3 115110 mac 115110 bytes_out 0 115110 bytes_in 0 115110 station_ip 5.202.60.179 115110 port 50 115110 unique_id port 115110 remote_ip 10.8.1.94 115113 username hashtadani3 115113 mac 115113 bytes_out 0 115113 bytes_in 0 115113 station_ip 5.202.60.179 115113 port 117 115113 unique_id port 115113 remote_ip 10.8.0.154 115114 username forozande 115114 mac 115114 bytes_out 0 115114 bytes_in 0 115114 station_ip 83.122.103.119 115114 port 117 115114 unique_id port 115114 remote_ip 10.8.0.74 115115 username rostami 115115 kill_reason Another user logged on this global unique id 115115 mac 115115 bytes_out 0 115115 bytes_in 0 115115 station_ip 5.119.131.115 115115 port 112 115115 unique_id port 115115 remote_ip 10.8.0.194 115116 username malekpoir 115116 mac 115116 bytes_out 0 115116 bytes_in 0 115116 station_ip 5.120.72.175 115116 port 53 115116 unique_id port 115116 remote_ip 10.8.1.54 115124 username rezasekonji 115124 mac 115124 bytes_out 0 115124 bytes_in 0 115124 station_ip 37.129.235.41 115124 port 103 115124 unique_id port 115124 remote_ip 10.8.0.130 115125 username hashtadani3 115125 mac 115125 bytes_out 0 115125 bytes_in 0 115125 station_ip 5.202.60.179 115125 port 51 115125 unique_id port 115125 remote_ip 10.8.1.94 115126 username bcboard 115126 unique_id port 115126 terminate_cause Lost-Carrier 115126 bytes_out 778050 115126 bytes_in 3848187 115126 station_ip 83.122.181.124 115126 port 15729347 115126 nas_port_type Virtual 115126 remote_ip 5.5.5.255 115128 username hashtadani3 115128 mac 115128 bytes_out 0 115128 bytes_in 0 115128 station_ip 5.202.60.179 115128 port 113 115128 unique_id port 115128 remote_ip 10.8.0.154 115129 username forozande 115129 mac 115129 bytes_out 0 115129 bytes_in 0 115129 station_ip 83.123.179.236 115129 port 103 115129 unique_id port 115129 remote_ip 10.8.0.74 115133 username hashtadani3 115133 mac 115133 bytes_out 0 115133 bytes_in 0 115133 station_ip 5.202.60.179 115133 port 103 115133 unique_id port 115133 remote_ip 10.8.0.154 115121 unique_id port 115121 remote_ip 10.8.1.94 115122 username alireza 115122 unique_id port 115122 terminate_cause Lost-Carrier 115122 bytes_out 75005 115122 bytes_in 322755 115122 station_ip 194.15.99.84 115122 port 15729348 115122 nas_port_type Virtual 115122 remote_ip 5.5.5.120 115123 username malekpoir 115123 mac 115123 bytes_out 0 115123 bytes_in 0 115123 station_ip 5.120.152.151 115123 port 51 115123 unique_id port 115123 remote_ip 10.8.1.54 115127 username hashtadani3 115127 mac 115127 bytes_out 0 115127 bytes_in 0 115127 station_ip 5.202.60.179 115127 port 113 115127 unique_id port 115127 remote_ip 10.8.0.154 115130 username hashtadani3 115130 mac 115130 bytes_out 0 115130 bytes_in 0 115130 station_ip 5.202.60.179 115130 port 113 115130 unique_id port 115130 remote_ip 10.8.0.154 115131 username hashtadani3 115131 mac 115131 bytes_out 0 115131 bytes_in 0 115131 station_ip 5.202.60.179 115131 port 103 115131 unique_id port 115131 remote_ip 10.8.0.154 115135 username hashtadani3 115135 mac 115135 bytes_out 0 115135 bytes_in 0 115135 station_ip 5.202.60.179 115135 port 103 115135 unique_id port 115135 remote_ip 10.8.0.154 115136 username alipour 115136 mac 115136 bytes_out 466348 115136 bytes_in 1701181 115136 station_ip 37.129.15.154 115136 port 117 115136 unique_id port 115136 remote_ip 10.8.0.102 115138 username amir 115138 mac 115138 bytes_out 0 115138 bytes_in 0 115138 station_ip 46.225.208.226 115138 port 116 115138 unique_id port 115138 remote_ip 10.8.0.50 115140 username hashtadani3 115140 mac 115140 bytes_out 0 115140 bytes_in 0 115140 station_ip 5.202.60.179 115140 port 113 115140 unique_id port 115140 remote_ip 10.8.0.154 115146 username hashtadani3 115146 mac 115146 bytes_out 0 115146 bytes_in 0 115146 station_ip 5.202.60.179 115146 port 51 115146 unique_id port 115146 remote_ip 10.8.1.94 115150 username hashtadani3 115150 mac 115150 bytes_out 0 115150 bytes_in 0 115150 station_ip 5.202.60.179 115150 port 103 115150 unique_id port 115150 remote_ip 10.8.0.154 115157 username rostami 115157 mac 115157 bytes_out 0 115157 bytes_in 0 115157 station_ip 5.119.131.115 115157 port 112 115157 unique_id port 115159 username forozande 115159 mac 115159 bytes_out 187486 115159 bytes_in 1167683 115159 station_ip 37.129.228.222 115159 port 110 115159 unique_id port 115159 remote_ip 10.8.0.74 115161 username forozande 115161 mac 115161 bytes_out 1370015 115161 bytes_in 29376985 115161 station_ip 37.129.253.70 115161 port 110 115161 unique_id port 115161 remote_ip 10.8.0.74 115164 username hashtadani3 115164 mac 115164 bytes_out 0 115164 bytes_in 0 115164 station_ip 5.202.60.179 115164 port 103 115164 unique_id port 115164 remote_ip 10.8.0.154 115169 username alipour 115169 mac 115169 bytes_out 0 115169 bytes_in 0 115169 station_ip 37.129.15.154 115169 port 51 115169 unique_id port 115169 remote_ip 10.8.1.50 115171 username musa 115171 mac 115171 bytes_out 930840 115171 bytes_in 13931613 115171 station_ip 83.122.120.217 115171 port 52 115171 unique_id port 115171 remote_ip 10.8.1.10 115174 username mohammadjavad 115174 mac 115174 bytes_out 1341133 115174 bytes_in 32550777 115174 station_ip 37.129.135.151 115174 port 116 115174 unique_id port 115174 remote_ip 10.8.0.142 115175 username forozande 115175 mac 115175 bytes_out 162254 115175 bytes_in 810210 115175 station_ip 37.129.128.76 115175 port 116 115175 unique_id port 115175 remote_ip 10.8.0.74 115139 username alipour 115139 mac 115139 bytes_out 0 115139 bytes_in 0 115139 station_ip 37.129.15.154 115139 port 113 115139 unique_id port 115139 remote_ip 10.8.0.102 115142 username hashtadani3 115142 mac 115142 bytes_out 0 115142 bytes_in 0 115142 station_ip 5.202.60.179 115142 port 116 115142 unique_id port 115142 remote_ip 10.8.0.154 115143 username alipour 115143 mac 115143 bytes_out 0 115143 bytes_in 0 115143 station_ip 37.129.15.154 115143 port 103 115143 unique_id port 115143 remote_ip 10.8.0.102 115147 username hashtadani3 115147 mac 115147 bytes_out 0 115147 bytes_in 0 115147 station_ip 5.202.60.179 115147 port 110 115147 unique_id port 115147 remote_ip 10.8.0.154 115148 username mohammadjavad 115148 mac 115148 bytes_out 250979 115148 bytes_in 2381533 115148 station_ip 37.129.132.194 115148 port 103 115148 unique_id port 115148 remote_ip 10.8.0.142 115153 username hashtadani3 115153 mac 115153 bytes_out 0 115153 bytes_in 0 115153 station_ip 5.202.60.179 115153 port 103 115153 unique_id port 115153 remote_ip 10.8.0.154 115154 username malekpoir 115154 kill_reason Another user logged on this global unique id 115154 mac 115154 bytes_out 0 115154 bytes_in 0 115154 station_ip 5.120.157.225 115154 port 50 115154 unique_id port 115154 remote_ip 10.8.1.54 115156 username hashtadani3 115156 mac 115156 bytes_out 0 115156 bytes_in 0 115156 station_ip 5.202.60.179 115156 port 113 115156 unique_id port 115156 remote_ip 10.8.0.154 115158 username hashtadani3 115158 mac 115158 bytes_out 0 115158 bytes_in 0 115158 station_ip 5.202.60.179 115158 port 112 115158 unique_id port 115158 remote_ip 10.8.0.154 115160 username hashtadani3 115160 kill_reason Maximum check online fails reached 115160 mac 115160 bytes_out 0 115160 bytes_in 0 115160 station_ip 5.202.60.179 115160 port 112 115160 unique_id port 115162 username amir 115162 mac 115162 bytes_out 347141 115162 bytes_in 1998040 115162 station_ip 46.225.208.226 115162 port 103 115162 unique_id port 115162 remote_ip 10.8.0.50 115163 username hashtadani3 115163 mac 115163 bytes_out 0 115163 bytes_in 0 115163 station_ip 5.202.60.179 115163 port 103 115163 unique_id port 115163 remote_ip 10.8.0.154 115165 username houshang 115165 mac 115165 bytes_out 75724 115165 bytes_in 124808 115165 station_ip 5.120.139.54 115165 port 103 115165 unique_id port 115165 remote_ip 10.8.0.22 115166 username musa 115166 mac 115166 bytes_out 16587 115166 bytes_in 32008 115166 station_ip 83.122.120.217 115166 port 116 115166 unique_id port 115166 remote_ip 10.8.0.6 115167 username kordestani 115167 mac 115167 bytes_out 965817 115167 bytes_in 376769 115167 station_ip 217.219.43.138 115167 port 103 115167 unique_id port 115167 remote_ip 10.8.0.134 115168 username reza2742 115168 unique_id port 115168 terminate_cause Lost-Carrier 115168 bytes_out 5503320 115168 bytes_in 170583899 115168 station_ip 5.202.16.153 115168 port 15729349 115168 nas_port_type Virtual 115168 remote_ip 5.5.5.122 115179 username tahmasebi 115179 kill_reason Another user logged on this global unique id 115179 mac 115179 bytes_out 0 115179 bytes_in 0 115179 station_ip 5.119.63.197 115179 port 98 115179 unique_id port 115179 remote_ip 10.8.0.42 115180 username zare 115180 mac 115180 bytes_out 0 115180 bytes_in 0 115180 station_ip 94.183.214.14 115180 port 51 115180 unique_id port 115180 remote_ip 10.8.1.58 115181 username zare 115181 mac 115181 bytes_out 0 115181 bytes_in 0 115181 station_ip 94.183.214.14 115170 bytes_in 0 115170 station_ip 151.235.101.217 115170 port 117 115170 unique_id port 115170 remote_ip 10.8.0.138 115172 username forozande 115172 mac 115172 bytes_out 0 115172 bytes_in 0 115172 station_ip 83.123.81.19 115172 port 121 115172 unique_id port 115172 remote_ip 10.8.0.74 115173 username malekpoir 115173 mac 115173 bytes_out 0 115173 bytes_in 0 115173 station_ip 5.120.157.225 115173 port 50 115173 unique_id port 115176 username hashtadani3 115176 mac 115176 bytes_out 74888 115176 bytes_in 814194 115176 station_ip 5.202.60.179 115176 port 110 115176 unique_id port 115176 remote_ip 10.8.0.154 115182 username zare 115182 mac 115182 bytes_out 0 115182 bytes_in 0 115182 station_ip 94.183.214.14 115182 port 51 115182 unique_id port 115182 remote_ip 10.8.1.58 115183 username mohammadjavad 115183 mac 115183 bytes_out 168943 115183 bytes_in 805789 115183 station_ip 37.129.228.38 115183 port 116 115183 unique_id port 115183 remote_ip 10.8.0.142 115187 username zare 115187 mac 115187 bytes_out 0 115187 bytes_in 0 115187 station_ip 94.183.214.14 115187 port 50 115187 unique_id port 115187 remote_ip 10.8.1.58 115189 username hashtadani3 115189 mac 115189 bytes_out 333160 115189 bytes_in 61235 115189 station_ip 5.202.60.179 115189 port 110 115189 unique_id port 115189 remote_ip 10.8.0.154 115190 username hashtadani3 115190 mac 115190 bytes_out 0 115190 bytes_in 0 115190 station_ip 5.202.60.179 115190 port 110 115190 unique_id port 115190 remote_ip 10.8.0.154 115193 username hashtadani3 115193 mac 115193 bytes_out 93436 115193 bytes_in 991326 115193 station_ip 5.202.60.179 115193 port 117 115193 unique_id port 115193 remote_ip 10.8.0.154 115194 username hashtadani3 115194 mac 115194 bytes_out 0 115194 bytes_in 0 115194 station_ip 5.202.60.179 115194 port 117 115194 unique_id port 115194 remote_ip 10.8.0.154 115196 username forozande 115196 mac 115196 bytes_out 555335 115196 bytes_in 5287398 115196 station_ip 113.203.6.19 115196 port 113 115196 unique_id port 115196 remote_ip 10.8.0.74 115197 username hashtadani3 115197 mac 115197 bytes_out 0 115197 bytes_in 0 115197 station_ip 5.202.60.179 115197 port 113 115197 unique_id port 115197 remote_ip 10.8.0.154 115200 username hashtadani3 115200 mac 115200 bytes_out 1644 115200 bytes_in 4702 115200 station_ip 5.202.60.179 115200 port 113 115200 unique_id port 115200 remote_ip 10.8.0.154 115202 username zare 115202 mac 115202 bytes_out 183983 115202 bytes_in 754370 115202 station_ip 94.183.214.14 115202 port 110 115202 unique_id port 115202 remote_ip 10.8.0.18 115203 username zare 115203 mac 115203 bytes_out 0 115203 bytes_in 0 115203 station_ip 94.183.214.14 115203 port 52 115203 unique_id port 115203 remote_ip 10.8.1.58 115205 username forozande 115205 mac 115205 bytes_out 442910 115205 bytes_in 3213795 115205 station_ip 83.123.214.191 115205 port 113 115205 unique_id port 115205 remote_ip 10.8.0.74 115206 username zare 115206 mac 115206 bytes_out 0 115206 bytes_in 0 115206 station_ip 94.183.214.14 115206 port 110 115206 unique_id port 115206 remote_ip 10.8.0.18 115210 username hashtadani3 115210 mac 115210 bytes_out 0 115210 bytes_in 0 115210 station_ip 5.202.60.179 115210 port 116 115210 unique_id port 115210 remote_ip 10.8.0.154 115212 username zare 115212 mac 115212 bytes_out 0 115212 bytes_in 0 115212 station_ip 94.183.214.14 115212 port 53 115212 unique_id port 115177 username rostami 115177 mac 115177 bytes_out 4854410 115177 bytes_in 32063893 115177 station_ip 5.120.27.86 115177 port 113 115177 unique_id port 115177 remote_ip 10.8.0.194 115178 username musa 115178 mac 115178 bytes_out 0 115178 bytes_in 0 115178 station_ip 83.122.47.133 115178 port 52 115178 unique_id port 115178 remote_ip 10.8.1.10 115185 username zare 115185 mac 115185 bytes_out 0 115185 bytes_in 0 115185 station_ip 94.183.214.14 115185 port 116 115185 unique_id port 115185 remote_ip 10.8.0.18 115186 username malekpoir 115186 mac 115186 bytes_out 0 115186 bytes_in 0 115186 station_ip 5.120.157.225 115186 port 50 115186 unique_id port 115186 remote_ip 10.8.1.54 115188 username zare 115188 mac 115188 bytes_out 0 115188 bytes_in 0 115188 station_ip 94.183.214.14 115188 port 50 115188 unique_id port 115188 remote_ip 10.8.1.58 115191 username musa 115191 mac 115191 bytes_out 0 115191 bytes_in 0 115191 station_ip 83.122.47.133 115191 port 52 115191 unique_id port 115191 remote_ip 10.8.1.10 115192 username alirr 115192 unique_id port 115192 terminate_cause Lost-Carrier 115192 bytes_out 4769487 115192 bytes_in 106917082 115192 station_ip 5.120.86.151 115192 port 15729350 115192 nas_port_type Virtual 115192 remote_ip 5.5.5.124 115195 username hashtadani3 115195 mac 115195 bytes_out 0 115195 bytes_in 0 115195 station_ip 5.202.60.179 115195 port 121 115195 unique_id port 115195 remote_ip 10.8.0.154 115199 username kordestani 115199 mac 115199 bytes_out 331036 115199 bytes_in 3705653 115199 station_ip 217.219.43.138 115199 port 116 115199 unique_id port 115199 remote_ip 10.8.0.134 115201 username musa 115201 mac 115201 bytes_out 0 115201 bytes_in 0 115201 station_ip 83.122.47.133 115201 port 50 115201 unique_id port 115201 remote_ip 10.8.1.10 115208 username zare 115208 kill_reason Maximum check online fails reached 115208 mac 115208 bytes_out 0 115208 bytes_in 0 115208 station_ip 94.183.214.14 115208 port 110 115208 unique_id port 115211 username kordestani 115211 mac 115211 bytes_out 33992 115211 bytes_in 85966 115211 station_ip 217.219.43.138 115211 port 113 115211 unique_id port 115211 remote_ip 10.8.0.134 115213 username zare 115213 mac 115213 bytes_out 0 115213 bytes_in 0 115213 station_ip 94.183.214.14 115213 port 52 115213 unique_id port 115213 remote_ip 10.8.1.58 115215 username musa 115215 kill_reason Another user logged on this global unique id 115215 mac 115215 bytes_out 0 115215 bytes_in 0 115215 station_ip 83.122.47.133 115215 port 50 115215 unique_id port 115215 remote_ip 10.8.1.10 115217 username malekpoir 115217 mac 115217 bytes_out 0 115217 bytes_in 0 115217 station_ip 5.120.157.225 115217 port 51 115217 unique_id port 115217 remote_ip 10.8.1.54 115220 username zare 115220 mac 115220 bytes_out 0 115220 bytes_in 0 115220 station_ip 94.183.214.14 115220 port 52 115220 unique_id port 115220 remote_ip 10.8.1.58 115222 username zare 115222 mac 115222 bytes_out 0 115222 bytes_in 0 115222 station_ip 94.183.214.14 115222 port 52 115222 unique_id port 115222 remote_ip 10.8.1.58 115223 username hashtadani3 115223 mac 115223 bytes_out 0 115223 bytes_in 0 115223 station_ip 5.202.60.179 115223 port 117 115223 unique_id port 115223 remote_ip 10.8.0.154 115224 username hashtadani3 115224 mac 115224 bytes_out 0 115224 bytes_in 0 115224 station_ip 37.129.168.177 115224 port 53 115224 unique_id port 115224 remote_ip 10.8.1.94 115227 username hashtadani3 115181 port 51 115181 unique_id port 115181 remote_ip 10.8.1.58 115184 username zare 115184 mac 115184 bytes_out 0 115184 bytes_in 0 115184 station_ip 94.183.214.14 115184 port 51 115184 unique_id port 115184 remote_ip 10.8.1.58 115198 username sabaghnezhad 115198 mac 115198 bytes_out 48245 115198 bytes_in 40893 115198 station_ip 37.129.155.223 115198 port 117 115198 unique_id port 115198 remote_ip 10.8.0.186 115204 username zare 115204 mac 115204 bytes_out 0 115204 bytes_in 0 115204 station_ip 94.183.214.14 115204 port 110 115204 unique_id port 115204 remote_ip 10.8.0.18 115207 username kordestani 115207 mac 115207 bytes_out 0 115207 bytes_in 0 115207 station_ip 217.219.43.138 115207 port 52 115207 unique_id port 115207 remote_ip 10.8.1.98 115209 username hashtadani3 115209 mac 115209 bytes_out 0 115209 bytes_in 0 115209 station_ip 5.202.60.179 115209 port 116 115209 unique_id port 115209 remote_ip 10.8.0.154 115214 username hashtadani3 115214 mac 115214 bytes_out 0 115214 bytes_in 0 115214 station_ip 5.202.60.179 115214 port 116 115214 unique_id port 115214 remote_ip 10.8.0.154 115216 username amir 115216 mac 115216 bytes_out 6801424 115216 bytes_in 43461195 115216 station_ip 46.225.208.226 115216 port 103 115216 unique_id port 115216 remote_ip 10.8.0.50 115218 username hashtadani3 115218 mac 115218 bytes_out 0 115218 bytes_in 0 115218 station_ip 5.202.60.179 115218 port 103 115218 unique_id port 115218 remote_ip 10.8.0.154 115219 username kordestani 115219 mac 115219 bytes_out 60651 115219 bytes_in 124775 115219 station_ip 217.219.43.138 115219 port 113 115219 unique_id port 115219 remote_ip 10.8.0.134 115225 username hashtadani3 115225 mac 115225 bytes_out 0 115225 bytes_in 0 115225 station_ip 5.202.60.179 115225 port 121 115225 unique_id port 115225 remote_ip 10.8.0.154 115228 username zare 115228 mac 115228 bytes_out 0 115228 bytes_in 0 115228 station_ip 94.183.214.14 115228 port 52 115228 unique_id port 115228 remote_ip 10.8.1.58 115230 username hashtadani3 115230 mac 115230 bytes_out 0 115230 bytes_in 0 115230 station_ip 37.129.168.177 115230 port 117 115230 unique_id port 115230 remote_ip 10.8.0.154 115237 username zare 115237 mac 115237 bytes_out 0 115237 bytes_in 0 115237 station_ip 94.183.214.14 115237 port 52 115237 unique_id port 115237 remote_ip 10.8.1.58 115240 username hashtadani3 115240 mac 115240 bytes_out 0 115240 bytes_in 0 115240 station_ip 37.129.168.177 115240 port 117 115240 unique_id port 115240 remote_ip 10.8.0.154 115244 username hashtadani3 115244 mac 115244 bytes_out 0 115244 bytes_in 0 115244 station_ip 37.129.168.177 115244 port 121 115244 unique_id port 115244 remote_ip 10.8.0.154 115246 username hashtadani3 115246 mac 115246 bytes_out 0 115246 bytes_in 0 115246 station_ip 37.129.168.177 115246 port 50 115246 unique_id port 115246 remote_ip 10.8.1.94 115248 username alihosseini1 115248 mac 115248 bytes_out 4470 115248 bytes_in 15697 115248 station_ip 5.119.172.240 115248 port 103 115248 unique_id port 115248 remote_ip 10.8.0.166 115250 username zare 115250 mac 115250 bytes_out 0 115250 bytes_in 0 115250 station_ip 94.183.214.14 115250 port 52 115250 unique_id port 115250 remote_ip 10.8.1.58 115251 username hashtadani3 115251 mac 115251 bytes_out 0 115251 bytes_in 0 115251 station_ip 37.129.168.177 115251 port 103 115251 unique_id port 115251 remote_ip 10.8.0.154 115212 remote_ip 10.8.1.58 115221 username hashtadani3 115221 mac 115221 bytes_out 0 115221 bytes_in 0 115221 station_ip 5.202.60.179 115221 port 113 115221 unique_id port 115221 remote_ip 10.8.0.154 115226 username hashtadani3 115226 mac 115226 bytes_out 0 115226 bytes_in 0 115226 station_ip 37.129.168.177 115226 port 117 115226 unique_id port 115226 remote_ip 10.8.0.154 115231 username hashtadani3 115231 mac 115231 bytes_out 0 115231 bytes_in 0 115231 station_ip 37.129.168.177 115231 port 117 115231 unique_id port 115231 remote_ip 10.8.0.154 115232 username hashtadani3 115232 mac 115232 bytes_out 0 115232 bytes_in 0 115232 station_ip 37.129.168.177 115232 port 117 115232 unique_id port 115232 remote_ip 10.8.0.154 115234 username hashtadani3 115234 mac 115234 bytes_out 0 115234 bytes_in 0 115234 station_ip 37.129.168.177 115234 port 117 115234 unique_id port 115234 remote_ip 10.8.0.154 115235 username hashtadani3 115235 mac 115235 bytes_out 0 115235 bytes_in 0 115235 station_ip 37.129.168.177 115235 port 117 115235 unique_id port 115235 remote_ip 10.8.0.154 115241 username hashtadani3 115241 mac 115241 bytes_out 0 115241 bytes_in 0 115241 station_ip 37.129.168.177 115241 port 117 115241 unique_id port 115241 remote_ip 10.8.0.154 115242 username hashtadani3 115242 mac 115242 bytes_out 0 115242 bytes_in 0 115242 station_ip 37.129.168.177 115242 port 117 115242 unique_id port 115242 remote_ip 10.8.0.154 115247 username hashtadani3 115247 mac 115247 bytes_out 0 115247 bytes_in 0 115247 station_ip 37.129.168.177 115247 port 121 115247 unique_id port 115247 remote_ip 10.8.0.154 115249 username hashtadani3 115249 mac 115249 bytes_out 0 115249 bytes_in 0 115249 station_ip 37.129.168.177 115249 port 103 115249 unique_id port 115249 remote_ip 10.8.0.154 115253 username hashtadani3 115253 mac 115253 bytes_out 0 115253 bytes_in 0 115253 station_ip 5.202.64.208 115253 port 103 115253 unique_id port 115253 remote_ip 10.8.0.154 115259 username hashtadani3 115259 mac 115259 bytes_out 0 115259 bytes_in 0 115259 station_ip 5.202.64.208 115259 port 123 115259 unique_id port 115259 remote_ip 10.8.0.154 115260 username avaanna 115260 mac 115260 bytes_out 128992 115260 bytes_in 1052116 115260 station_ip 113.203.108.3 115260 port 52 115260 unique_id port 115260 remote_ip 10.8.1.46 115262 username hashtadani3 115262 mac 115262 bytes_out 0 115262 bytes_in 0 115262 station_ip 5.202.64.208 115262 port 123 115262 unique_id port 115262 remote_ip 10.8.0.154 115267 username amir 115267 mac 115267 bytes_out 0 115267 bytes_in 0 115267 station_ip 46.225.208.226 115267 port 116 115267 unique_id port 115267 remote_ip 10.8.0.50 115269 username hashtadani3 115269 mac 115269 bytes_out 0 115269 bytes_in 0 115269 station_ip 5.202.64.208 115269 port 103 115269 unique_id port 115269 remote_ip 10.8.0.154 115270 username tahmasebi 115270 kill_reason Another user logged on this global unique id 115270 mac 115270 bytes_out 0 115270 bytes_in 0 115270 station_ip 5.119.63.197 115270 port 98 115270 unique_id port 115272 username malekpoir 115272 kill_reason Another user logged on this global unique id 115272 mac 115272 bytes_out 0 115272 bytes_in 0 115272 station_ip 5.120.157.225 115272 port 51 115272 unique_id port 115272 remote_ip 10.8.1.54 115273 username aminvpn 115273 unique_id port 115273 terminate_cause Lost-Carrier 115273 bytes_out 76308 115273 bytes_in 103088 115273 station_ip 5.120.124.1 115273 port 15729354 115227 mac 115227 bytes_out 0 115227 bytes_in 0 115227 station_ip 37.129.168.177 115227 port 117 115227 unique_id port 115227 remote_ip 10.8.0.154 115229 username hashtadani3 115229 mac 115229 bytes_out 0 115229 bytes_in 0 115229 station_ip 37.129.168.177 115229 port 117 115229 unique_id port 115229 remote_ip 10.8.0.154 115233 username hashtadani3 115233 mac 115233 bytes_out 0 115233 bytes_in 0 115233 station_ip 37.129.168.177 115233 port 52 115233 unique_id port 115233 remote_ip 10.8.1.94 115236 username forozande 115236 mac 115236 bytes_out 452987 115236 bytes_in 5549649 115236 station_ip 83.122.189.92 115236 port 103 115236 unique_id port 115236 remote_ip 10.8.0.74 115238 username hashtadani3 115238 mac 115238 bytes_out 0 115238 bytes_in 0 115238 station_ip 37.129.168.177 115238 port 103 115238 unique_id port 115238 remote_ip 10.8.0.154 115239 username zare 115239 mac 115239 bytes_out 0 115239 bytes_in 0 115239 station_ip 94.183.214.14 115239 port 52 115239 unique_id port 115239 remote_ip 10.8.1.58 115243 username hashtadani3 115243 mac 115243 bytes_out 0 115243 bytes_in 0 115243 station_ip 37.129.168.177 115243 port 52 115243 unique_id port 115243 remote_ip 10.8.1.94 115245 username musa 115245 mac 115245 bytes_out 0 115245 bytes_in 0 115245 station_ip 83.122.47.133 115245 port 50 115245 unique_id port 115257 username zare 115257 mac 115257 bytes_out 0 115257 bytes_in 0 115257 station_ip 94.183.214.14 115257 port 123 115257 unique_id port 115257 remote_ip 10.8.0.18 115263 username alihosseini1 115263 mac 115263 bytes_out 11387 115263 bytes_in 18740 115263 station_ip 5.120.151.198 115263 port 103 115263 unique_id port 115263 remote_ip 10.8.0.166 115265 username mohammadjavad 115265 mac 115265 bytes_out 0 115265 bytes_in 0 115265 station_ip 83.123.17.74 115265 port 117 115265 unique_id port 115265 remote_ip 10.8.0.142 115268 username ahmadi 115268 unique_id port 115268 terminate_cause User-Request 115268 bytes_out 15843 115268 bytes_in 50603 115268 station_ip 83.123.248.75 115268 port 15729352 115268 nas_port_type Virtual 115268 remote_ip 5.5.5.127 115271 username aminvpn 115271 unique_id port 115271 terminate_cause Lost-Carrier 115271 bytes_out 905819 115271 bytes_in 10210279 115271 station_ip 5.120.124.1 115271 port 15729353 115271 nas_port_type Virtual 115271 remote_ip 5.5.5.130 115277 username tahmasebi 115277 kill_reason Another user logged on this global unique id 115277 mac 115277 bytes_out 0 115277 bytes_in 0 115277 station_ip 5.119.63.197 115277 port 98 115277 unique_id port 115278 username amir 115278 mac 115278 bytes_out 0 115278 bytes_in 0 115278 station_ip 46.225.208.226 115278 port 113 115278 unique_id port 115278 remote_ip 10.8.0.50 115280 username tahmasebi 115280 kill_reason Another user logged on this global unique id 115280 mac 115280 bytes_out 0 115280 bytes_in 0 115280 station_ip 5.119.63.197 115280 port 98 115280 unique_id port 115281 username hashtadani3 115281 mac 115281 bytes_out 0 115281 bytes_in 0 115281 station_ip 37.129.248.185 115281 port 125 115281 unique_id port 115281 remote_ip 10.8.0.154 115284 username tahmasebi 115284 kill_reason Another user logged on this global unique id 115284 mac 115284 bytes_out 0 115284 bytes_in 0 115284 station_ip 5.119.63.197 115284 port 98 115284 unique_id port 115286 username mohammadjavad 115286 mac 115286 bytes_out 0 115286 bytes_in 0 115286 station_ip 83.123.85.26 115286 port 117 115286 unique_id port 115286 remote_ip 10.8.0.142 115252 username hashtadani3 115252 mac 115252 bytes_out 0 115252 bytes_in 0 115252 station_ip 37.129.168.177 115252 port 103 115252 unique_id port 115252 remote_ip 10.8.0.154 115254 username tahmasebi 115254 kill_reason Another user logged on this global unique id 115254 mac 115254 bytes_out 0 115254 bytes_in 0 115254 station_ip 5.119.63.197 115254 port 98 115254 unique_id port 115255 username hashtadani3 115255 mac 115255 bytes_out 0 115255 bytes_in 0 115255 station_ip 5.202.64.208 115255 port 123 115255 unique_id port 115255 remote_ip 10.8.0.154 115256 username zare 115256 mac 115256 bytes_out 0 115256 bytes_in 0 115256 station_ip 94.183.214.14 115256 port 123 115256 unique_id port 115256 remote_ip 10.8.0.18 115258 username hashtadani3 115258 mac 115258 bytes_out 0 115258 bytes_in 0 115258 station_ip 5.202.64.208 115258 port 123 115258 unique_id port 115258 remote_ip 10.8.0.154 115261 username alihosseini1 115261 mac 115261 bytes_out 0 115261 bytes_in 0 115261 station_ip 5.120.151.198 115261 port 103 115261 unique_id port 115261 remote_ip 10.8.0.166 115264 username hashtadani3 115264 mac 115264 bytes_out 0 115264 bytes_in 0 115264 station_ip 5.202.64.208 115264 port 103 115264 unique_id port 115264 remote_ip 10.8.0.154 115266 username kordestani 115266 mac 115266 bytes_out 1885899 115266 bytes_in 24080296 115266 station_ip 217.219.43.138 115266 port 113 115266 unique_id port 115266 remote_ip 10.8.0.134 115276 username hashtadani3 115276 mac 115276 bytes_out 0 115276 bytes_in 0 115276 station_ip 5.202.60.179 115276 port 125 115276 unique_id port 115276 remote_ip 10.8.0.154 115282 username musa 115282 mac 115282 bytes_out 0 115282 bytes_in 0 115282 station_ip 83.122.47.133 115282 port 121 115282 unique_id port 115283 username hashtadani3 115283 mac 115283 bytes_out 0 115283 bytes_in 0 115283 station_ip 37.129.248.185 115283 port 121 115283 unique_id port 115283 remote_ip 10.8.0.154 115291 username hashtadani3 115291 kill_reason Maximum check online fails reached 115291 mac 115291 bytes_out 0 115291 bytes_in 0 115291 station_ip 37.129.248.185 115291 port 126 115291 unique_id port 115296 username hashtadani3 115296 mac 115296 bytes_out 0 115296 bytes_in 0 115296 station_ip 37.129.248.185 115296 port 50 115296 unique_id port 115296 remote_ip 10.8.1.94 115298 username hashtadani3 115298 mac 115298 bytes_out 0 115298 bytes_in 0 115298 station_ip 37.129.248.185 115298 port 50 115298 unique_id port 115298 remote_ip 10.8.1.94 115299 username rajaei 115299 kill_reason Another user logged on this global unique id 115299 mac 115299 bytes_out 0 115299 bytes_in 0 115299 station_ip 5.134.149.114 115299 port 116 115299 unique_id port 115299 remote_ip 10.8.0.34 115300 username zare 115300 mac 115300 bytes_out 0 115300 bytes_in 0 115300 station_ip 94.183.214.14 115300 port 50 115300 unique_id port 115300 remote_ip 10.8.1.58 115306 username forozande 115306 mac 115306 bytes_out 0 115306 bytes_in 0 115306 station_ip 37.129.28.124 115306 port 127 115306 unique_id port 115306 remote_ip 10.8.0.74 115309 username amir 115309 mac 115309 bytes_out 102560 115309 bytes_in 232266 115309 station_ip 46.225.208.226 115309 port 117 115309 unique_id port 115309 remote_ip 10.8.0.50 115310 username alihosseini1 115310 mac 115310 bytes_out 0 115310 bytes_in 0 115310 station_ip 5.120.167.182 115310 port 103 115310 unique_id port 115312 username hashtadani3 115312 mac 115312 bytes_out 0 115273 nas_port_type Virtual 115273 remote_ip 5.5.5.131 115274 username musa 115274 kill_reason Another user logged on this global unique id 115274 mac 115274 bytes_out 0 115274 bytes_in 0 115274 station_ip 83.122.47.133 115274 port 121 115274 unique_id port 115274 remote_ip 10.8.0.6 115275 username hashtadani3 115275 mac 115275 bytes_out 0 115275 bytes_in 0 115275 station_ip 5.202.64.208 115275 port 103 115275 unique_id port 115275 remote_ip 10.8.0.154 115279 username forozande 115279 mac 115279 bytes_out 0 115279 bytes_in 0 115279 station_ip 83.122.127.214 115279 port 123 115279 unique_id port 115279 remote_ip 10.8.0.74 115285 username musa 115285 mac 115285 bytes_out 0 115285 bytes_in 0 115285 station_ip 83.122.47.133 115285 port 125 115285 unique_id port 115285 remote_ip 10.8.0.6 115288 username tahmasebi 115288 kill_reason Another user logged on this global unique id 115288 mac 115288 bytes_out 0 115288 bytes_in 0 115288 station_ip 5.119.63.197 115288 port 98 115288 unique_id port 115295 username tahmasebi 115295 kill_reason Another user logged on this global unique id 115295 mac 115295 bytes_out 0 115295 bytes_in 0 115295 station_ip 5.119.63.197 115295 port 98 115295 unique_id port 115297 username hashtadani3 115297 mac 115297 bytes_out 0 115297 bytes_in 0 115297 station_ip 37.129.248.185 115297 port 113 115297 unique_id port 115297 remote_ip 10.8.0.154 115302 username hashtadani3 115302 kill_reason Maximum check online fails reached 115302 mac 115302 bytes_out 0 115302 bytes_in 0 115302 station_ip 37.129.248.185 115302 port 113 115302 unique_id port 115305 username hashtadani3 115305 mac 115305 bytes_out 0 115305 bytes_in 0 115305 station_ip 37.129.248.185 115305 port 128 115305 unique_id port 115305 remote_ip 10.8.0.154 115307 username alihosseini1 115307 kill_reason Another user logged on this global unique id 115307 mac 115307 bytes_out 0 115307 bytes_in 0 115307 station_ip 5.120.167.182 115307 port 103 115307 unique_id port 115307 remote_ip 10.8.0.166 115313 username hamid.e 115313 unique_id port 115313 terminate_cause User-Request 115313 bytes_out 537458 115313 bytes_in 7806443 115313 station_ip 37.27.29.115 115313 port 15729355 115313 nas_port_type Virtual 115313 remote_ip 5.5.5.133 115316 username zare 115316 mac 115316 bytes_out 0 115316 bytes_in 0 115316 station_ip 94.183.214.14 115316 port 117 115316 unique_id port 115316 remote_ip 10.8.0.18 115317 username hashtadani3 115317 mac 115317 bytes_out 0 115317 bytes_in 0 115317 station_ip 37.129.248.185 115317 port 50 115317 unique_id port 115317 remote_ip 10.8.1.94 115319 username alihosseini1 115319 mac 115319 bytes_out 0 115319 bytes_in 0 115319 station_ip 5.120.167.182 115319 port 129 115319 unique_id port 115319 remote_ip 10.8.0.166 115321 username mohammadmahdi 115321 kill_reason Another user logged on this global unique id 115321 mac 115321 bytes_out 0 115321 bytes_in 0 115321 station_ip 5.120.57.128 115321 port 125 115321 unique_id port 115321 remote_ip 10.8.0.54 115322 username hashtadani3 115322 kill_reason Maximum check online fails reached 115322 mac 115322 bytes_out 0 115322 bytes_in 0 115322 station_ip 37.129.248.185 115322 port 130 115322 unique_id port 115323 username hashtadani3 115323 mac 115323 bytes_out 2225 115323 bytes_in 4582 115323 station_ip 37.129.248.185 115323 port 50 115323 unique_id port 115323 remote_ip 10.8.1.94 115331 username hashtadani3 115331 mac 115331 bytes_out 0 115331 bytes_in 0 115331 station_ip 37.129.248.185 115331 port 51 115331 unique_id port 115331 remote_ip 10.8.1.94 115287 username hashtadani3 115287 kill_reason Maximum check online fails reached 115287 mac 115287 bytes_out 0 115287 bytes_in 0 115287 station_ip 37.129.248.185 115287 port 121 115287 unique_id port 115289 username hashtadani3 115289 mac 115289 bytes_out 0 115289 bytes_in 0 115289 station_ip 37.129.248.185 115289 port 126 115289 unique_id port 115289 remote_ip 10.8.0.154 115290 username zare 115290 mac 115290 bytes_out 593827 115290 bytes_in 3584192 115290 station_ip 94.183.214.14 115290 port 50 115290 unique_id port 115290 remote_ip 10.8.1.58 115292 username kamali1 115292 kill_reason Another user logged on this global unique id 115292 mac 115292 bytes_out 0 115292 bytes_in 0 115292 station_ip 5.120.108.157 115292 port 124 115292 unique_id port 115292 remote_ip 10.8.0.70 115293 username rasoul56 115293 mac 115293 bytes_out 0 115293 bytes_in 0 115293 station_ip 83.123.254.194 115293 port 117 115293 unique_id port 115293 remote_ip 10.8.0.174 115294 username amir 115294 mac 115294 bytes_out 0 115294 bytes_in 0 115294 station_ip 46.225.208.226 115294 port 113 115294 unique_id port 115294 remote_ip 10.8.0.50 115301 username hashtadani3 115301 mac 115301 bytes_out 0 115301 bytes_in 0 115301 station_ip 37.129.248.185 115301 port 117 115301 unique_id port 115301 remote_ip 10.8.0.154 115303 username zare 115303 mac 115303 bytes_out 47052 115303 bytes_in 215267 115303 station_ip 94.183.214.14 115303 port 50 115303 unique_id port 115303 remote_ip 10.8.1.58 115304 username amir 115304 mac 115304 bytes_out 0 115304 bytes_in 0 115304 station_ip 46.225.208.226 115304 port 117 115304 unique_id port 115304 remote_ip 10.8.0.50 115308 username tahmasebi 115308 kill_reason Another user logged on this global unique id 115308 mac 115308 bytes_out 0 115308 bytes_in 0 115308 station_ip 5.119.63.197 115308 port 98 115308 unique_id port 115311 username rajaei 115311 kill_reason Another user logged on this global unique id 115311 mac 115311 bytes_out 0 115311 bytes_in 0 115311 station_ip 5.134.149.114 115311 port 116 115311 unique_id port 115314 username hashtadani3 115314 kill_reason Maximum check online fails reached 115314 mac 115314 bytes_out 0 115314 bytes_in 0 115314 station_ip 37.129.248.185 115314 port 103 115314 unique_id port 115324 username rajaei 115324 mac 115324 bytes_out 0 115324 bytes_in 0 115324 station_ip 5.134.149.114 115324 port 116 115324 unique_id port 115326 username hashtadani3 115326 mac 115326 bytes_out 0 115326 bytes_in 0 115326 station_ip 37.129.248.185 115326 port 131 115326 unique_id port 115326 remote_ip 10.8.0.154 115329 username hashtadani3 115329 mac 115329 bytes_out 0 115329 bytes_in 0 115329 station_ip 37.129.248.185 115329 port 125 115329 unique_id port 115329 remote_ip 10.8.0.154 115330 username zare 115330 mac 115330 bytes_out 2485938 115330 bytes_in 31105903 115330 station_ip 94.183.214.14 115330 port 117 115330 unique_id port 115330 remote_ip 10.8.0.18 115332 username amir 115332 mac 115332 bytes_out 0 115332 bytes_in 0 115332 station_ip 46.225.208.226 115332 port 116 115332 unique_id port 115332 remote_ip 10.8.0.50 115333 username sedighe 115333 mac 115333 bytes_out 118697 115333 bytes_in 525658 115333 station_ip 37.129.68.235 115333 port 131 115333 unique_id port 115333 remote_ip 10.8.0.146 115337 username zare 115337 mac 115337 bytes_out 0 115337 bytes_in 0 115337 station_ip 94.183.214.14 115337 port 51 115337 unique_id port 115337 remote_ip 10.8.1.58 115312 bytes_in 0 115312 station_ip 37.129.248.185 115312 port 117 115312 unique_id port 115312 remote_ip 10.8.0.154 115315 username zare 115315 mac 115315 bytes_out 0 115315 bytes_in 0 115315 station_ip 94.183.214.14 115315 port 117 115315 unique_id port 115315 remote_ip 10.8.0.18 115318 username hashtadani3 115318 kill_reason Maximum check online fails reached 115318 mac 115318 bytes_out 0 115318 bytes_in 0 115318 station_ip 37.129.248.185 115318 port 128 115318 unique_id port 115320 username malekpoir 115320 kill_reason Another user logged on this global unique id 115320 mac 115320 bytes_out 0 115320 bytes_in 0 115320 station_ip 5.120.157.225 115320 port 51 115320 unique_id port 115325 username hashtadani3 115325 mac 115325 bytes_out 0 115325 bytes_in 0 115325 station_ip 37.129.248.185 115325 port 131 115325 unique_id port 115325 remote_ip 10.8.0.154 115327 username mohammadmahdi 115327 mac 115327 bytes_out 0 115327 bytes_in 0 115327 station_ip 5.120.57.128 115327 port 125 115327 unique_id port 115328 username malekpoir 115328 mac 115328 bytes_out 0 115328 bytes_in 0 115328 station_ip 5.120.157.225 115328 port 51 115328 unique_id port 115335 username zare 115335 mac 115335 bytes_out 88068 115335 bytes_in 1671387 115335 station_ip 94.183.214.14 115335 port 51 115335 unique_id port 115335 remote_ip 10.8.1.58 115339 username forozande 115339 mac 115339 bytes_out 0 115339 bytes_in 0 115339 station_ip 83.122.213.35 115339 port 117 115339 unique_id port 115339 remote_ip 10.8.0.74 115341 username ehsun 115341 mac 115341 bytes_out 0 115341 bytes_in 0 115341 station_ip 46.225.208.208 115341 port 116 115341 unique_id port 115341 remote_ip 10.8.0.162 115344 username hashtadani3 115344 mac 115344 bytes_out 0 115344 bytes_in 0 115344 station_ip 37.129.248.185 115344 port 51 115344 unique_id port 115344 remote_ip 10.8.1.94 115347 username kamali1 115347 mac 115347 bytes_out 0 115347 bytes_in 0 115347 station_ip 5.120.108.157 115347 port 124 115347 unique_id port 115353 username musa 115353 kill_reason Another user logged on this global unique id 115353 mac 115353 bytes_out 0 115353 bytes_in 0 115353 station_ip 83.122.48.169 115353 port 127 115353 unique_id port 115353 remote_ip 10.8.0.6 115354 username amir 115354 mac 115354 bytes_out 0 115354 bytes_in 0 115354 station_ip 46.225.208.226 115354 port 125 115354 unique_id port 115354 remote_ip 10.8.0.50 115355 username houshang 115355 mac 115355 bytes_out 0 115355 bytes_in 0 115355 station_ip 5.120.139.54 115355 port 124 115355 unique_id port 115355 remote_ip 10.8.0.22 115365 username hashtadani3 115365 kill_reason Maximum check online fails reached 115365 mac 115365 bytes_out 0 115365 bytes_in 0 115365 station_ip 37.129.248.185 115365 port 129 115365 unique_id port 115367 username zare 115367 mac 115367 bytes_out 0 115367 bytes_in 0 115367 station_ip 94.183.214.14 115367 port 117 115367 unique_id port 115367 remote_ip 10.8.0.18 115369 username zare 115369 mac 115369 bytes_out 0 115369 bytes_in 0 115369 station_ip 94.183.214.14 115369 port 52 115369 unique_id port 115369 remote_ip 10.8.1.58 115371 username forozande 115371 mac 115371 bytes_out 0 115371 bytes_in 0 115371 station_ip 113.203.106.100 115371 port 125 115371 unique_id port 115371 remote_ip 10.8.0.74 115372 username musa 115372 kill_reason Another user logged on this global unique id 115372 mac 115372 bytes_out 0 115372 bytes_in 0 115372 station_ip 83.122.48.169 115372 port 127 115334 username mohammadjavad 115334 mac 115334 bytes_out 0 115334 bytes_in 0 115334 station_ip 83.123.35.228 115334 port 125 115334 unique_id port 115334 remote_ip 10.8.0.142 115336 username zare 115336 mac 115336 bytes_out 0 115336 bytes_in 0 115336 station_ip 94.183.214.14 115336 port 51 115336 unique_id port 115336 remote_ip 10.8.1.58 115338 username hashtadani3 115338 mac 115338 bytes_out 0 115338 bytes_in 0 115338 station_ip 37.129.248.185 115338 port 116 115338 unique_id port 115338 remote_ip 10.8.0.154 115340 username zare 115340 mac 115340 bytes_out 30652 115340 bytes_in 62882 115340 station_ip 94.183.214.14 115340 port 51 115340 unique_id port 115340 remote_ip 10.8.1.58 115342 username amir 115342 mac 115342 bytes_out 0 115342 bytes_in 0 115342 station_ip 46.225.208.226 115342 port 117 115342 unique_id port 115342 remote_ip 10.8.0.50 115343 username alihosseini1 115343 kill_reason Another user logged on this global unique id 115343 mac 115343 bytes_out 0 115343 bytes_in 0 115343 station_ip 5.120.167.182 115343 port 129 115343 unique_id port 115343 remote_ip 10.8.0.166 115345 username zare 115345 mac 115345 bytes_out 0 115345 bytes_in 0 115345 station_ip 94.183.214.14 115345 port 116 115345 unique_id port 115345 remote_ip 10.8.0.18 115346 username hashtadani3 115346 mac 115346 bytes_out 0 115346 bytes_in 0 115346 station_ip 37.129.248.185 115346 port 117 115346 unique_id port 115346 remote_ip 10.8.0.154 115349 username alihosseini1 115349 mac 115349 bytes_out 0 115349 bytes_in 0 115349 station_ip 5.120.167.182 115349 port 129 115349 unique_id port 115350 username alihosseini1 115350 mac 115350 bytes_out 14525 115350 bytes_in 41084 115350 station_ip 5.120.185.142 115350 port 51 115350 unique_id port 115350 remote_ip 10.8.1.106 115356 username amir 115356 mac 115356 bytes_out 0 115356 bytes_in 0 115356 station_ip 46.225.208.226 115356 port 125 115356 unique_id port 115356 remote_ip 10.8.0.50 115357 username ehsun 115357 mac 115357 bytes_out 0 115357 bytes_in 0 115357 station_ip 46.225.208.208 115357 port 116 115357 unique_id port 115357 remote_ip 10.8.0.162 115358 username hashtadani3 115358 kill_reason Maximum check online fails reached 115358 mac 115358 bytes_out 0 115358 bytes_in 0 115358 station_ip 37.129.248.185 115358 port 124 115358 unique_id port 115363 username forozande 115363 mac 115363 bytes_out 0 115363 bytes_in 0 115363 station_ip 113.203.124.18 115363 port 117 115363 unique_id port 115363 remote_ip 10.8.0.74 115370 username alihosseini1 115370 kill_reason Another user logged on this global unique id 115370 mac 115370 bytes_out 0 115370 bytes_in 0 115370 station_ip 5.119.238.38 115370 port 51 115370 unique_id port 115370 remote_ip 10.8.1.106 115373 username hashtadani3 115373 mac 115373 bytes_out 0 115373 bytes_in 0 115373 station_ip 37.129.248.185 115373 port 125 115373 unique_id port 115373 remote_ip 10.8.0.154 115375 username hashtadani3 115375 mac 115375 bytes_out 0 115375 bytes_in 0 115375 station_ip 37.129.248.185 115375 port 131 115375 unique_id port 115375 remote_ip 10.8.0.154 115377 username alihosseini1 115377 mac 115377 bytes_out 0 115377 bytes_in 0 115377 station_ip 5.119.238.38 115377 port 51 115377 unique_id port 115379 username musa 115379 kill_reason Another user logged on this global unique id 115379 mac 115379 bytes_out 0 115379 bytes_in 0 115379 station_ip 83.122.48.169 115379 port 127 115379 unique_id port 115385 username forozande 115348 username ehsun 115348 mac 115348 bytes_out 0 115348 bytes_in 0 115348 station_ip 46.225.208.208 115348 port 125 115348 unique_id port 115348 remote_ip 10.8.0.162 115351 username zare 115351 mac 115351 bytes_out 0 115351 bytes_in 0 115351 station_ip 94.183.214.14 115351 port 116 115351 unique_id port 115351 remote_ip 10.8.0.18 115352 username hashtadani3 115352 mac 115352 bytes_out 0 115352 bytes_in 0 115352 station_ip 37.129.248.185 115352 port 125 115352 unique_id port 115352 remote_ip 10.8.0.154 115359 username hashtadani3 115359 mac 115359 bytes_out 0 115359 bytes_in 0 115359 station_ip 37.129.248.185 115359 port 52 115359 unique_id port 115359 remote_ip 10.8.1.94 115360 username hashtadani3 115360 mac 115360 bytes_out 0 115360 bytes_in 0 115360 station_ip 37.129.248.185 115360 port 52 115360 unique_id port 115360 remote_ip 10.8.1.94 115361 username forozande 115361 mac 115361 bytes_out 0 115361 bytes_in 0 115361 station_ip 83.122.103.6 115361 port 117 115361 unique_id port 115361 remote_ip 10.8.0.74 115362 username hashtadani3 115362 kill_reason Maximum check online fails reached 115362 mac 115362 bytes_out 0 115362 bytes_in 0 115362 station_ip 37.129.248.185 115362 port 116 115362 unique_id port 115364 username amir 115364 mac 115364 bytes_out 0 115364 bytes_in 0 115364 station_ip 46.225.208.226 115364 port 125 115364 unique_id port 115364 remote_ip 10.8.0.50 115366 username hashtadani3 115366 mac 115366 bytes_out 0 115366 bytes_in 0 115366 station_ip 37.129.248.185 115366 port 125 115366 unique_id port 115366 remote_ip 10.8.0.154 115368 username zare 115368 kill_reason Maximum check online fails reached 115368 mac 115368 bytes_out 0 115368 bytes_in 0 115368 station_ip 94.183.214.14 115368 port 117 115368 unique_id port 115374 username hashtadani3 115374 mac 115374 bytes_out 0 115374 bytes_in 0 115374 station_ip 37.129.248.185 115374 port 125 115374 unique_id port 115374 remote_ip 10.8.0.154 115381 username alihosseini1 115381 mac 115381 bytes_out 781884 115381 bytes_in 3355081 115381 station_ip 5.119.238.38 115381 port 51 115381 unique_id port 115381 remote_ip 10.8.1.106 115383 username amir 115383 mac 115383 bytes_out 57005 115383 bytes_in 216064 115383 station_ip 46.225.208.226 115383 port 135 115383 unique_id port 115383 remote_ip 10.8.0.50 115388 username hashtadani3 115388 kill_reason Another user logged on this global unique id 115388 mac 115388 bytes_out 0 115388 bytes_in 0 115388 station_ip 37.129.248.185 115388 port 131 115388 unique_id port 115389 username musa 115389 kill_reason Another user logged on this global unique id 115389 mac 115389 bytes_out 0 115389 bytes_in 0 115389 station_ip 83.122.48.169 115389 port 127 115389 unique_id port 115395 username hashtadani3 115395 mac 115395 bytes_out 0 115395 bytes_in 0 115395 station_ip 37.129.248.185 115395 port 131 115395 unique_id port 115395 remote_ip 10.8.0.154 115396 username hashtadani3 115396 mac 115396 bytes_out 0 115396 bytes_in 0 115396 station_ip 37.129.248.185 115396 port 131 115396 unique_id port 115396 remote_ip 10.8.0.154 115400 username sabaghnezhad 115400 mac 115400 bytes_out 642862 115400 bytes_in 3032084 115400 station_ip 83.122.83.239 115400 port 134 115400 unique_id port 115400 remote_ip 10.8.0.186 115401 username tahmasebi 115401 kill_reason Another user logged on this global unique id 115401 mac 115401 bytes_out 0 115401 bytes_in 0 115401 station_ip 5.119.63.197 115401 port 98 115401 unique_id port 115372 unique_id port 115376 username amir 115376 mac 115376 bytes_out 0 115376 bytes_in 0 115376 station_ip 46.225.208.226 115376 port 125 115376 unique_id port 115376 remote_ip 10.8.0.50 115378 username forozande 115378 mac 115378 bytes_out 0 115378 bytes_in 0 115378 station_ip 83.123.53.81 115378 port 132 115378 unique_id port 115378 remote_ip 10.8.0.74 115380 username malekpoir 115380 mac 115380 bytes_out 261238 115380 bytes_in 2418705 115380 station_ip 5.120.157.225 115380 port 50 115380 unique_id port 115380 remote_ip 10.8.1.54 115382 username zare 115382 mac 115382 bytes_out 0 115382 bytes_in 0 115382 station_ip 94.183.214.14 115382 port 125 115382 unique_id port 115382 remote_ip 10.8.0.18 115384 username hashtadani3 115384 kill_reason Another user logged on this global unique id 115384 mac 115384 bytes_out 0 115384 bytes_in 0 115384 station_ip 37.129.248.185 115384 port 131 115384 unique_id port 115384 remote_ip 10.8.0.154 115386 username musa 115386 kill_reason Another user logged on this global unique id 115386 mac 115386 bytes_out 0 115386 bytes_in 0 115386 station_ip 83.122.48.169 115386 port 127 115386 unique_id port 115387 username rasoul56 115387 kill_reason Another user logged on this global unique id 115387 mac 115387 bytes_out 0 115387 bytes_in 0 115387 station_ip 83.123.233.162 115387 port 132 115387 unique_id port 115387 remote_ip 10.8.0.174 115390 username aminvpn 115390 mac 115390 bytes_out 0 115390 bytes_in 0 115390 station_ip 83.122.248.63 115390 port 123 115390 unique_id port 115390 remote_ip 10.8.0.14 115391 username hashtadani3 115391 mac 115391 bytes_out 0 115391 bytes_in 0 115391 station_ip 37.129.248.185 115391 port 131 115391 unique_id port 115392 username hashtadani3 115392 mac 115392 bytes_out 0 115392 bytes_in 0 115392 station_ip 37.129.248.185 115392 port 131 115392 unique_id port 115392 remote_ip 10.8.0.154 115398 username amir 115398 kill_reason Another user logged on this global unique id 115398 mac 115398 bytes_out 0 115398 bytes_in 0 115398 station_ip 46.225.208.226 115398 port 133 115398 unique_id port 115398 remote_ip 10.8.0.50 115399 username aminvpn 115399 mac 115399 bytes_out 0 115399 bytes_in 0 115399 station_ip 37.129.28.175 115399 port 123 115399 unique_id port 115399 remote_ip 10.8.0.14 115402 username hashtadani3 115402 kill_reason Another user logged on this global unique id 115402 mac 115402 bytes_out 0 115402 bytes_in 0 115402 station_ip 37.129.248.185 115402 port 131 115402 unique_id port 115402 remote_ip 10.8.0.154 115404 username arman1 115404 mac 115404 bytes_out 0 115404 bytes_in 0 115404 station_ip 5.119.138.165 115404 port 123 115404 unique_id port 115404 remote_ip 10.8.0.110 115406 username forozande 115406 mac 115406 bytes_out 0 115406 bytes_in 0 115406 station_ip 83.122.218.10 115406 port 123 115406 unique_id port 115406 remote_ip 10.8.0.74 115407 username hashtadani3 115407 kill_reason Another user logged on this global unique id 115407 mac 115407 bytes_out 0 115407 bytes_in 0 115407 station_ip 37.129.248.185 115407 port 131 115407 unique_id port 115411 username mohammadjavad 115411 mac 115411 bytes_out 0 115411 bytes_in 0 115411 station_ip 83.122.227.104 115411 port 135 115411 unique_id port 115411 remote_ip 10.8.0.142 115416 username amir 115416 kill_reason Another user logged on this global unique id 115416 mac 115416 bytes_out 0 115416 bytes_in 0 115416 station_ip 46.225.208.226 115416 port 133 115416 unique_id port 115418 username arman1 115418 kill_reason Another user logged on this global unique id 115385 mac 115385 bytes_out 0 115385 bytes_in 0 115385 station_ip 83.122.91.84 115385 port 133 115385 unique_id port 115385 remote_ip 10.8.0.74 115393 username hashtadani3 115393 mac 115393 bytes_out 0 115393 bytes_in 0 115393 station_ip 37.129.248.185 115393 port 131 115393 unique_id port 115393 remote_ip 10.8.0.154 115394 username alirr 115394 unique_id port 115394 terminate_cause Lost-Carrier 115394 bytes_out 2086285 115394 bytes_in 10726066 115394 station_ip 5.119.87.213 115394 port 15729360 115394 nas_port_type Virtual 115394 remote_ip 5.5.5.138 115397 username alihosseini1 115397 mac 115397 bytes_out 0 115397 bytes_in 0 115397 station_ip 5.119.94.72 115397 port 51 115397 unique_id port 115397 remote_ip 10.8.1.106 115408 username alihosseini1 115408 mac 115408 bytes_out 0 115408 bytes_in 0 115408 station_ip 5.119.188.163 115408 port 51 115408 unique_id port 115408 remote_ip 10.8.1.106 115414 username alihosseini1 115414 mac 115414 bytes_out 28259 115414 bytes_in 82226 115414 station_ip 5.119.188.163 115414 port 125 115414 unique_id port 115414 remote_ip 10.8.0.166 115415 username zare 115415 mac 115415 bytes_out 0 115415 bytes_in 0 115415 station_ip 94.183.214.14 115415 port 125 115415 unique_id port 115415 remote_ip 10.8.0.18 115417 username zare 115417 mac 115417 bytes_out 0 115417 bytes_in 0 115417 station_ip 94.183.214.14 115417 port 131 115417 unique_id port 115417 remote_ip 10.8.0.18 115421 username alipour 115421 kill_reason Another user logged on this global unique id 115421 mac 115421 bytes_out 0 115421 bytes_in 0 115421 station_ip 37.129.15.154 115421 port 122 115421 unique_id port 115421 remote_ip 10.8.0.102 115422 username hashtadani3 115422 kill_reason Maximum number of concurrent logins reached 115422 mac 115422 bytes_out 0 115422 bytes_in 0 115422 station_ip 37.129.248.185 115422 port 136 115422 unique_id port 115425 username mostafa_es78 115425 unique_id port 115425 terminate_cause User-Request 115425 bytes_out 60327 115425 bytes_in 641966 115425 station_ip 37.129.233.117 115425 port 15729362 115425 nas_port_type Virtual 115425 remote_ip 5.5.5.123 115431 username mostafa_es78 115431 unique_id port 115431 terminate_cause User-Request 115431 bytes_out 22874 115431 bytes_in 104249 115431 station_ip 37.129.233.117 115431 port 15729364 115431 nas_port_type Virtual 115431 remote_ip 5.5.5.152 115434 username rasoul56 115434 kill_reason Another user logged on this global unique id 115434 mac 115434 bytes_out 0 115434 bytes_in 0 115434 station_ip 83.123.233.162 115434 port 132 115434 unique_id port 115435 username arman1 115435 kill_reason Another user logged on this global unique id 115435 mac 115435 bytes_out 0 115435 bytes_in 0 115435 station_ip 5.120.70.178 115435 port 134 115435 unique_id port 115437 username amir 115437 kill_reason Another user logged on this global unique id 115437 mac 115437 bytes_out 0 115437 bytes_in 0 115437 station_ip 46.225.208.226 115437 port 133 115437 unique_id port 115445 username amir 115445 mac 115445 bytes_out 70830 115445 bytes_in 295680 115445 station_ip 46.225.208.226 115445 port 127 115445 unique_id port 115445 remote_ip 10.8.0.50 115448 username sabaghnezhad 115448 mac 115448 bytes_out 301038 115448 bytes_in 1587182 115448 station_ip 83.123.52.245 115448 port 134 115448 unique_id port 115448 remote_ip 10.8.0.186 115455 username alipour 115455 kill_reason Another user logged on this global unique id 115455 mac 115455 bytes_out 0 115455 bytes_in 0 115455 station_ip 37.129.15.154 115455 port 122 115455 unique_id port 115464 username rasoul56 115464 mac 115403 username arman1 115403 mac 115403 bytes_out 0 115403 bytes_in 0 115403 station_ip 5.119.134.99 115403 port 123 115403 unique_id port 115403 remote_ip 10.8.0.110 115405 username amir 115405 kill_reason Another user logged on this global unique id 115405 mac 115405 bytes_out 0 115405 bytes_in 0 115405 station_ip 46.225.208.226 115405 port 133 115405 unique_id port 115409 username hashtadani3 115409 mac 115409 bytes_out 0 115409 bytes_in 0 115409 station_ip 37.129.248.185 115409 port 131 115409 unique_id port 115410 username zare 115410 mac 115410 bytes_out 462662 115410 bytes_in 1029117 115410 station_ip 94.183.214.14 115410 port 125 115410 unique_id port 115410 remote_ip 10.8.0.18 115412 username malekpoir 115412 mac 115412 bytes_out 3222253 115412 bytes_in 28340333 115412 station_ip 5.120.157.225 115412 port 50 115412 unique_id port 115412 remote_ip 10.8.1.54 115413 username zare 115413 mac 115413 bytes_out 0 115413 bytes_in 0 115413 station_ip 94.183.214.14 115413 port 131 115413 unique_id port 115413 remote_ip 10.8.0.18 115420 username hashtadani3 115420 mac 115420 bytes_out 0 115420 bytes_in 0 115420 station_ip 37.129.248.185 115420 port 131 115420 unique_id port 115420 remote_ip 10.8.0.154 115423 username hashtadani3 115423 kill_reason Maximum check online fails reached 115423 mac 115423 bytes_out 0 115423 bytes_in 0 115423 station_ip 37.129.248.185 115423 port 123 115423 unique_id port 115424 username hashtadani3 115424 kill_reason Maximum check online fails reached 115424 mac 115424 bytes_out 0 115424 bytes_in 0 115424 station_ip 37.129.248.185 115424 port 131 115424 unique_id port 115426 username alihosseini1 115426 mac 115426 bytes_out 0 115426 bytes_in 0 115426 station_ip 5.119.188.163 115426 port 125 115426 unique_id port 115426 remote_ip 10.8.0.166 115427 username zare 115427 mac 115427 bytes_out 17373 115427 bytes_in 59760 115427 station_ip 94.183.214.14 115427 port 135 115427 unique_id port 115427 remote_ip 10.8.0.18 115428 username ehsun 115428 unique_id port 115428 terminate_cause User-Request 115428 bytes_out 1544637 115428 bytes_in 60521328 115428 station_ip 46.225.208.208 115428 port 15729361 115428 nas_port_type Virtual 115428 remote_ip 5.5.5.170 115429 username mostafa_es78 115429 unique_id port 115429 terminate_cause User-Request 115429 bytes_out 23891 115429 bytes_in 54965 115429 station_ip 37.129.233.117 115429 port 15729363 115429 nas_port_type Virtual 115429 remote_ip 5.5.5.151 115436 username zare 115436 mac 115436 bytes_out 15022 115436 bytes_in 68230 115436 station_ip 94.183.214.14 115436 port 127 115436 unique_id port 115436 remote_ip 10.8.0.18 115439 username alipour 115439 kill_reason Another user logged on this global unique id 115439 mac 115439 bytes_out 0 115439 bytes_in 0 115439 station_ip 37.129.15.154 115439 port 122 115439 unique_id port 115440 username amir 115440 mac 115440 bytes_out 0 115440 bytes_in 0 115440 station_ip 46.225.208.226 115440 port 133 115440 unique_id port 115446 username amir 115446 mac 115446 bytes_out 0 115446 bytes_in 0 115446 station_ip 46.225.208.226 115446 port 127 115446 unique_id port 115446 remote_ip 10.8.0.50 115454 username amir 115454 mac 115454 bytes_out 67697 115454 bytes_in 243787 115454 station_ip 46.225.208.226 115454 port 133 115454 unique_id port 115454 remote_ip 10.8.0.50 115457 username sabaghnezhad 115457 mac 115457 bytes_out 0 115457 bytes_in 0 115457 station_ip 83.122.177.129 115457 port 132 115457 unique_id port 115418 mac 115418 bytes_out 0 115418 bytes_in 0 115418 station_ip 5.120.70.178 115418 port 134 115418 unique_id port 115418 remote_ip 10.8.0.110 115419 username hashtadani3 115419 mac 115419 bytes_out 0 115419 bytes_in 0 115419 station_ip 37.129.248.185 115419 port 123 115419 unique_id port 115419 remote_ip 10.8.0.154 115430 username musa 115430 mac 115430 bytes_out 0 115430 bytes_in 0 115430 station_ip 83.122.48.169 115430 port 127 115430 unique_id port 115432 username tahmasebi 115432 kill_reason Another user logged on this global unique id 115432 mac 115432 bytes_out 0 115432 bytes_in 0 115432 station_ip 5.119.63.197 115432 port 98 115432 unique_id port 115433 username sabaghnezhad 115433 mac 115433 bytes_out 155622 115433 bytes_in 403414 115433 station_ip 83.122.233.205 115433 port 125 115433 unique_id port 115433 remote_ip 10.8.0.186 115438 username arman1 115438 mac 115438 bytes_out 0 115438 bytes_in 0 115438 station_ip 5.120.70.178 115438 port 134 115438 unique_id port 115441 username amir 115441 mac 115441 bytes_out 0 115441 bytes_in 0 115441 station_ip 46.225.208.226 115441 port 127 115441 unique_id port 115441 remote_ip 10.8.0.50 115442 username amir 115442 mac 115442 bytes_out 0 115442 bytes_in 0 115442 station_ip 46.225.208.226 115442 port 127 115442 unique_id port 115442 remote_ip 10.8.0.50 115443 username amir 115443 mac 115443 bytes_out 0 115443 bytes_in 0 115443 station_ip 46.225.208.226 115443 port 127 115443 unique_id port 115443 remote_ip 10.8.0.50 115444 username alirezazadeh 115444 unique_id port 115444 terminate_cause Lost-Carrier 115444 bytes_out 2353142 115444 bytes_in 10820245 115444 station_ip 5.119.203.39 115444 port 15729356 115444 nas_port_type Virtual 115444 remote_ip 5.5.5.135 115447 username amir 115447 mac 115447 bytes_out 0 115447 bytes_in 0 115447 station_ip 46.225.208.226 115447 port 127 115447 unique_id port 115447 remote_ip 10.8.0.50 115449 username amir 115449 mac 115449 bytes_out 0 115449 bytes_in 0 115449 station_ip 46.225.208.226 115449 port 127 115449 unique_id port 115449 remote_ip 10.8.0.50 115450 username houshang 115450 mac 115450 bytes_out 1556714 115450 bytes_in 24607601 115450 station_ip 5.120.57.131 115450 port 133 115450 unique_id port 115450 remote_ip 10.8.0.22 115451 username alipour 115451 kill_reason Another user logged on this global unique id 115451 mac 115451 bytes_out 0 115451 bytes_in 0 115451 station_ip 37.129.15.154 115451 port 122 115451 unique_id port 115452 username amir 115452 mac 115452 bytes_out 0 115452 bytes_in 0 115452 station_ip 46.225.208.226 115452 port 133 115452 unique_id port 115452 remote_ip 10.8.0.50 115453 username rasoul56 115453 mac 115453 bytes_out 0 115453 bytes_in 0 115453 station_ip 83.123.233.162 115453 port 132 115453 unique_id port 115456 username tahmasebi 115456 kill_reason Another user logged on this global unique id 115456 mac 115456 bytes_out 0 115456 bytes_in 0 115456 station_ip 5.119.63.197 115456 port 98 115456 unique_id port 115458 username forozande 115458 mac 115458 bytes_out 0 115458 bytes_in 0 115458 station_ip 83.122.53.217 115458 port 127 115458 unique_id port 115458 remote_ip 10.8.0.74 115472 username sabaghnezhad 115472 mac 115472 bytes_out 0 115472 bytes_in 0 115472 station_ip 83.123.220.9 115472 port 137 115472 unique_id port 115472 remote_ip 10.8.0.186 115479 username zare 115479 mac 115479 bytes_out 0 115479 bytes_in 0 115479 station_ip 37.27.17.184 115457 remote_ip 10.8.0.186 115459 username hashtadani3 115459 mac 115459 bytes_out 0 115459 bytes_in 0 115459 station_ip 37.129.248.185 115459 port 133 115459 unique_id port 115459 remote_ip 10.8.0.154 115460 username hashtadani3 115460 mac 115460 bytes_out 0 115460 bytes_in 0 115460 station_ip 37.129.248.185 115460 port 127 115460 unique_id port 115460 remote_ip 10.8.0.154 115461 username hashtadani3 115461 mac 115461 bytes_out 0 115461 bytes_in 0 115461 station_ip 37.129.248.185 115461 port 127 115461 unique_id port 115461 remote_ip 10.8.0.154 115462 username zare 115462 mac 115462 bytes_out 0 115462 bytes_in 0 115462 station_ip 94.183.214.14 115462 port 137 115462 unique_id port 115462 remote_ip 10.8.0.18 115463 username zare 115463 mac 115463 bytes_out 0 115463 bytes_in 0 115463 station_ip 94.183.214.14 115463 port 133 115463 unique_id port 115463 remote_ip 10.8.0.18 115465 username zare 115465 mac 115465 bytes_out 0 115465 bytes_in 0 115465 station_ip 94.183.214.14 115465 port 134 115465 unique_id port 115465 remote_ip 10.8.0.18 115466 username zare 115466 kill_reason Maximum check online fails reached 115466 mac 115466 bytes_out 0 115466 bytes_in 0 115466 station_ip 94.183.214.14 115466 port 134 115466 unique_id port 115467 username ahmadipour 115467 unique_id port 115467 terminate_cause Lost-Carrier 115467 bytes_out 2287846 115467 bytes_in 66564950 115467 station_ip 83.122.145.254 115467 port 15729366 115467 nas_port_type Virtual 115467 remote_ip 5.5.5.140 115468 username alihosseini1 115468 mac 115468 bytes_out 0 115468 bytes_in 0 115468 station_ip 5.119.188.163 115468 port 136 115468 unique_id port 115468 remote_ip 10.8.0.166 115469 username kordestani 115469 mac 115469 bytes_out 3209690 115469 bytes_in 37638081 115469 station_ip 151.235.127.61 115469 port 132 115469 unique_id port 115469 remote_ip 10.8.0.134 115470 username houshang 115470 mac 115470 bytes_out 0 115470 bytes_in 0 115470 station_ip 5.120.16.196 115470 port 136 115470 unique_id port 115470 remote_ip 10.8.0.22 115473 username zare 115473 mac 115473 bytes_out 0 115473 bytes_in 0 115473 station_ip 37.27.17.184 115473 port 137 115473 unique_id port 115473 remote_ip 10.8.0.18 115478 username mehdizare 115478 mac 115478 bytes_out 0 115478 bytes_in 0 115478 station_ip 5.119.212.172 115478 port 125 115478 unique_id port 115478 remote_ip 10.8.0.90 115483 username sedighe 115483 mac 115483 bytes_out 0 115483 bytes_in 0 115483 station_ip 113.203.44.45 115483 port 139 115483 unique_id port 115483 remote_ip 10.8.0.146 115484 username mehdizare 115484 mac 115484 bytes_out 0 115484 bytes_in 0 115484 station_ip 5.119.212.172 115484 port 125 115484 unique_id port 115484 remote_ip 10.8.0.90 115488 username mirzaei 115488 mac 115488 bytes_out 5251457 115488 bytes_in 40285044 115488 station_ip 5.120.109.51 115488 port 49 115488 unique_id port 115488 remote_ip 10.8.1.30 115491 username amir 115491 kill_reason Another user logged on this global unique id 115491 mac 115491 bytes_out 0 115491 bytes_in 0 115491 station_ip 46.225.208.226 115491 port 138 115491 unique_id port 115491 remote_ip 10.8.0.50 115495 username forozande 115495 mac 115495 bytes_out 0 115495 bytes_in 0 115495 station_ip 83.123.25.225 115495 port 127 115495 unique_id port 115500 username alipour 115500 mac 115500 bytes_out 0 115500 bytes_in 0 115500 station_ip 37.129.15.154 115500 port 122 115500 unique_id port 115464 bytes_out 0 115464 bytes_in 0 115464 station_ip 83.123.233.162 115464 port 134 115464 unique_id port 115464 remote_ip 10.8.0.174 115471 username hashtadani3 115471 mac 115471 bytes_out 0 115471 bytes_in 0 115471 station_ip 37.129.248.185 115471 port 127 115471 unique_id port 115471 remote_ip 10.8.0.154 115474 username alipour 115474 kill_reason Another user logged on this global unique id 115474 mac 115474 bytes_out 0 115474 bytes_in 0 115474 station_ip 37.129.15.154 115474 port 122 115474 unique_id port 115475 username alirr 115475 unique_id port 115475 terminate_cause Lost-Carrier 115475 bytes_out 2647446 115475 bytes_in 45455296 115475 station_ip 5.119.168.177 115475 port 15729365 115475 nas_port_type Virtual 115475 remote_ip 5.5.5.97 115476 username sedighe 115476 mac 115476 bytes_out 159462 115476 bytes_in 1055557 115476 station_ip 113.203.44.45 115476 port 136 115476 unique_id port 115476 remote_ip 10.8.0.146 115477 username houshang 115477 kill_reason Another user logged on this global unique id 115477 mac 115477 bytes_out 0 115477 bytes_in 0 115477 station_ip 5.120.166.204 115477 port 132 115477 unique_id port 115477 remote_ip 10.8.0.22 115480 username musa 115480 kill_reason Another user logged on this global unique id 115480 mac 115480 bytes_out 0 115480 bytes_in 0 115480 station_ip 83.123.113.87 115480 port 135 115480 unique_id port 115480 remote_ip 10.8.0.6 115482 username houshang 115482 mac 115482 bytes_out 0 115482 bytes_in 0 115482 station_ip 5.120.166.204 115482 port 132 115482 unique_id port 115485 username zare 115485 mac 115485 bytes_out 0 115485 bytes_in 0 115485 station_ip 37.27.17.184 115485 port 125 115485 unique_id port 115485 remote_ip 10.8.0.18 115489 username forozande 115489 kill_reason Another user logged on this global unique id 115489 mac 115489 bytes_out 0 115489 bytes_in 0 115489 station_ip 83.123.25.225 115489 port 127 115489 unique_id port 115489 remote_ip 10.8.0.74 115490 username mehdizare 115490 mac 115490 bytes_out 294551 115490 bytes_in 2033939 115490 station_ip 5.119.212.172 115490 port 51 115490 unique_id port 115490 remote_ip 10.8.1.42 115492 username aminvpn 115492 unique_id port 115492 terminate_cause Lost-Carrier 115492 bytes_out 602163 115492 bytes_in 3180959 115492 station_ip 5.119.203.82 115492 port 15729368 115492 nas_port_type Virtual 115492 remote_ip 5.5.5.128 115496 username alipour 115496 mac 115496 bytes_out 0 115496 bytes_in 0 115496 station_ip 37.129.15.154 115496 port 122 115496 unique_id port 115496 remote_ip 10.8.0.102 115499 username alinezhad 115499 kill_reason Absolute expiration date has reached 115499 unique_id port 115499 bytes_out 0 115499 bytes_in 0 115499 station_ip 83.123.188.148 115499 port 15729369 115499 nas_port_type Virtual 115502 username mirzaei 115502 mac 115502 bytes_out 7899 115502 bytes_in 9345 115502 station_ip 5.120.109.51 115502 port 52 115502 unique_id port 115502 remote_ip 10.8.1.30 115507 username forozande 115507 mac 115507 bytes_out 137598 115507 bytes_in 407890 115507 station_ip 83.123.5.174 115507 port 132 115507 unique_id port 115507 remote_ip 10.8.0.74 115509 username rajaei 115509 kill_reason Another user logged on this global unique id 115509 mac 115509 bytes_out 0 115509 bytes_in 0 115509 station_ip 93.114.22.162 115509 port 136 115509 unique_id port 115509 remote_ip 10.8.0.34 115510 username houshang 115510 mac 115510 bytes_out 0 115510 bytes_in 0 115510 station_ip 5.119.93.248 115510 port 132 115510 unique_id port 115510 remote_ip 10.8.0.22 115512 username rajaei 115512 mac 115479 port 136 115479 unique_id port 115479 remote_ip 10.8.0.18 115481 username sedighe 115481 mac 115481 bytes_out 0 115481 bytes_in 0 115481 station_ip 113.203.44.45 115481 port 137 115481 unique_id port 115481 remote_ip 10.8.0.146 115486 username sabaghnezhad 115486 mac 115486 bytes_out 33550 115486 bytes_in 36620 115486 station_ip 83.122.79.254 115486 port 137 115486 unique_id port 115486 remote_ip 10.8.0.186 115487 username rasoul56 115487 kill_reason Another user logged on this global unique id 115487 mac 115487 bytes_out 0 115487 bytes_in 0 115487 station_ip 83.123.233.162 115487 port 133 115487 unique_id port 115487 remote_ip 10.8.0.174 115493 username zare 115493 mac 115493 bytes_out 0 115493 bytes_in 0 115493 station_ip 37.27.17.184 115493 port 132 115493 unique_id port 115493 remote_ip 10.8.0.18 115494 username alipour 115494 mac 115494 bytes_out 0 115494 bytes_in 0 115494 station_ip 37.129.15.154 115494 port 122 115494 unique_id port 115497 username alihosseini1 115497 mac 115497 bytes_out 0 115497 bytes_in 0 115497 station_ip 5.119.237.219 115497 port 136 115497 unique_id port 115497 remote_ip 10.8.0.166 115498 username mirzaei 115498 mac 115498 bytes_out 372112 115498 bytes_in 2241374 115498 station_ip 5.120.109.51 115498 port 52 115498 unique_id port 115498 remote_ip 10.8.1.30 115501 username zare 115501 mac 115501 bytes_out 0 115501 bytes_in 0 115501 station_ip 37.27.17.184 115501 port 122 115501 unique_id port 115501 remote_ip 10.8.0.18 115503 username sabaghnezhad 115503 mac 115503 bytes_out 134554 115503 bytes_in 689778 115503 station_ip 83.122.131.21 115503 port 51 115503 unique_id port 115503 remote_ip 10.8.1.130 115504 username mehdizare 115504 mac 115504 bytes_out 1167263 115504 bytes_in 8857529 115504 station_ip 5.119.212.172 115504 port 49 115504 unique_id port 115504 remote_ip 10.8.1.42 115511 username sabaghnezhad 115511 mac 115511 bytes_out 58783 115511 bytes_in 52278 115511 station_ip 83.122.131.21 115511 port 127 115511 unique_id port 115511 remote_ip 10.8.0.186 115514 username rasoul56 115514 mac 115514 bytes_out 0 115514 bytes_in 0 115514 station_ip 83.123.233.162 115514 port 133 115514 unique_id port 115515 username houshang 115515 mac 115515 bytes_out 0 115515 bytes_in 0 115515 station_ip 5.119.93.248 115515 port 133 115515 unique_id port 115515 remote_ip 10.8.0.22 115517 username mohammadjavad 115517 mac 115517 bytes_out 262497 115517 bytes_in 1567225 115517 station_ip 83.122.253.111 115517 port 132 115517 unique_id port 115517 remote_ip 10.8.0.142 115519 username alihosseini1 115519 mac 115519 bytes_out 0 115519 bytes_in 0 115519 station_ip 5.119.201.199 115519 port 136 115519 unique_id port 115519 remote_ip 10.8.0.166 115524 username alihosseini1 115524 mac 115524 bytes_out 0 115524 bytes_in 0 115524 station_ip 5.119.201.199 115524 port 127 115524 unique_id port 115524 remote_ip 10.8.0.166 115528 username tahmasebi 115528 kill_reason Another user logged on this global unique id 115528 mac 115528 bytes_out 0 115528 bytes_in 0 115528 station_ip 5.119.63.197 115528 port 98 115528 unique_id port 115529 username musa 115529 mac 115529 bytes_out 0 115529 bytes_in 0 115529 station_ip 83.123.11.67 115529 port 133 115529 unique_id port 115529 remote_ip 10.8.0.6 115532 username mirzaei 115532 mac 115532 bytes_out 0 115532 bytes_in 0 115532 station_ip 5.120.109.51 115532 port 122 115532 unique_id port 115532 remote_ip 10.8.0.66 115500 remote_ip 10.8.0.102 115505 username amir 115505 mac 115505 bytes_out 0 115505 bytes_in 0 115505 station_ip 46.225.208.226 115505 port 138 115505 unique_id port 115506 username farhad1 115506 kill_reason Another user logged on this global unique id 115506 mac 115506 bytes_out 0 115506 bytes_in 0 115506 station_ip 5.120.95.59 115506 port 125 115506 unique_id port 115506 remote_ip 10.8.0.26 115508 username musa 115508 mac 115508 bytes_out 0 115508 bytes_in 0 115508 station_ip 83.123.113.87 115508 port 135 115508 unique_id port 115520 username tahmasebi 115520 kill_reason Another user logged on this global unique id 115520 mac 115520 bytes_out 0 115520 bytes_in 0 115520 station_ip 5.119.63.197 115520 port 98 115520 unique_id port 115521 username sabaghnezhad 115521 mac 115521 bytes_out 0 115521 bytes_in 0 115521 station_ip 37.129.58.138 115521 port 133 115521 unique_id port 115521 remote_ip 10.8.0.186 115522 username alipour 115522 mac 115522 bytes_out 0 115522 bytes_in 0 115522 station_ip 37.129.15.154 115522 port 53 115522 unique_id port 115522 remote_ip 10.8.1.50 115523 username musa 115523 mac 115523 bytes_out 0 115523 bytes_in 0 115523 station_ip 37.129.91.6 115523 port 127 115523 unique_id port 115523 remote_ip 10.8.0.6 115525 username alihosseini1 115525 mac 115525 bytes_out 0 115525 bytes_in 0 115525 station_ip 5.119.220.194 115525 port 139 115525 unique_id port 115525 remote_ip 10.8.0.166 115526 username farhad1 115526 kill_reason Another user logged on this global unique id 115526 mac 115526 bytes_out 0 115526 bytes_in 0 115526 station_ip 5.120.95.59 115526 port 125 115526 unique_id port 115530 username alihosseini1 115530 mac 115530 bytes_out 0 115530 bytes_in 0 115530 station_ip 5.119.220.194 115530 port 133 115530 unique_id port 115530 remote_ip 10.8.0.166 115531 username musa 115531 mac 115531 bytes_out 0 115531 bytes_in 0 115531 station_ip 83.123.11.67 115531 port 127 115531 unique_id port 115531 remote_ip 10.8.0.6 115533 username aminvpn 115533 unique_id port 115533 terminate_cause Lost-Carrier 115533 bytes_out 434958 115533 bytes_in 3514182 115533 station_ip 5.126.228.130 115533 port 15729372 115533 nas_port_type Virtual 115533 remote_ip 5.5.5.253 115535 username forozande 115535 mac 115535 bytes_out 191868 115535 bytes_in 1406324 115535 station_ip 83.122.30.76 115535 port 127 115535 unique_id port 115535 remote_ip 10.8.0.74 115538 username tahmasebi 115538 kill_reason Another user logged on this global unique id 115538 mac 115538 bytes_out 0 115538 bytes_in 0 115538 station_ip 5.119.63.197 115538 port 98 115538 unique_id port 115544 username farhad1 115544 kill_reason Another user logged on this global unique id 115544 mac 115544 bytes_out 0 115544 bytes_in 0 115544 station_ip 5.120.95.59 115544 port 125 115544 unique_id port 115545 username alihosseini1 115545 mac 115545 bytes_out 0 115545 bytes_in 0 115545 station_ip 5.119.220.194 115545 port 137 115545 unique_id port 115545 remote_ip 10.8.0.166 115547 username aminvpn 115547 mac 115547 bytes_out 0 115547 bytes_in 0 115547 station_ip 151.238.231.5 115547 port 127 115547 unique_id port 115547 remote_ip 10.8.0.14 115550 username aminvpn 115550 unique_id port 115550 terminate_cause User-Request 115550 bytes_out 5402485 115550 bytes_in 21699740 115550 station_ip 151.238.231.5 115550 port 15729371 115550 nas_port_type Virtual 115550 remote_ip 5.5.5.255 115554 username arabpour 115554 unique_id port 115554 terminate_cause User-Request 115554 bytes_out 12495 115554 bytes_in 4394 115512 bytes_out 0 115512 bytes_in 0 115512 station_ip 93.114.22.162 115512 port 136 115512 unique_id port 115513 username ahmadipour 115513 unique_id port 115513 terminate_cause Lost-Carrier 115513 bytes_out 33558770 115513 bytes_in 44307399 115513 station_ip 83.122.161.98 115513 port 15729370 115513 nas_port_type Virtual 115513 remote_ip 5.5.5.100 115516 username sabaghnezhad 115516 mac 115516 bytes_out 0 115516 bytes_in 0 115516 station_ip 83.122.166.47 115516 port 137 115516 unique_id port 115516 remote_ip 10.8.0.186 115518 username alihosseini1 115518 mac 115518 bytes_out 0 115518 bytes_in 0 115518 station_ip 5.119.201.199 115518 port 136 115518 unique_id port 115518 remote_ip 10.8.0.166 115527 username forozande 115527 mac 115527 bytes_out 0 115527 bytes_in 0 115527 station_ip 83.122.4.11 115527 port 127 115527 unique_id port 115527 remote_ip 10.8.0.74 115536 username alihosseini1 115536 mac 115536 bytes_out 0 115536 bytes_in 0 115536 station_ip 5.119.220.194 115536 port 127 115536 unique_id port 115536 remote_ip 10.8.0.166 115537 username mirzaei 115537 mac 115537 bytes_out 46343 115537 bytes_in 138699 115537 station_ip 5.120.109.51 115537 port 122 115537 unique_id port 115537 remote_ip 10.8.0.66 115540 username mehdizare 115540 mac 115540 bytes_out 0 115540 bytes_in 0 115540 station_ip 5.119.212.172 115540 port 135 115540 unique_id port 115540 remote_ip 10.8.0.90 115548 username forozande 115548 mac 115548 bytes_out 0 115548 bytes_in 0 115548 station_ip 113.203.87.110 115548 port 135 115548 unique_id port 115548 remote_ip 10.8.0.74 115551 username alipour 115551 mac 115551 bytes_out 0 115551 bytes_in 0 115551 station_ip 37.129.15.154 115551 port 49 115551 unique_id port 115551 remote_ip 10.8.1.50 115552 username arabpour 115552 unique_id port 115552 terminate_cause User-Request 115552 bytes_out 264 115552 bytes_in 244 115552 station_ip 93.110.190.252 115552 port 15729376 115552 nas_port_type Virtual 115552 remote_ip 5.5.5.109 115555 username alipour 115555 mac 115555 bytes_out 4489 115555 bytes_in 8108 115555 station_ip 37.129.15.154 115555 port 49 115555 unique_id port 115555 remote_ip 10.8.1.50 115556 username mehdizare 115556 mac 115556 bytes_out 0 115556 bytes_in 0 115556 station_ip 5.119.212.172 115556 port 122 115556 unique_id port 115556 remote_ip 10.8.0.90 115563 username mehdizare 115563 mac 115563 bytes_out 0 115563 bytes_in 0 115563 station_ip 5.119.212.172 115563 port 122 115563 unique_id port 115563 remote_ip 10.8.0.90 115566 username houshang 115566 mac 115566 bytes_out 0 115566 bytes_in 0 115566 station_ip 5.119.93.248 115566 port 122 115566 unique_id port 115566 remote_ip 10.8.0.22 115575 username forozande 115575 mac 115575 bytes_out 471390 115575 bytes_in 4584080 115575 station_ip 37.129.163.19 115575 port 132 115575 unique_id port 115575 remote_ip 10.8.0.74 115580 username houshang 115580 mac 115580 bytes_out 0 115580 bytes_in 0 115580 station_ip 5.119.93.248 115580 port 122 115580 unique_id port 115583 username farhad1 115583 mac 115583 bytes_out 0 115583 bytes_in 0 115583 station_ip 5.120.74.109 115583 port 125 115583 unique_id port 115585 username mohammadjavad 115585 mac 115585 bytes_out 303577 115585 bytes_in 1215520 115585 station_ip 83.122.151.126 115585 port 137 115585 unique_id port 115585 remote_ip 10.8.0.142 115589 username mohammadmahdi 115589 mac 115589 bytes_out 0 115589 bytes_in 0 115589 station_ip 5.120.57.128 115534 username alihosseini1 115534 mac 115534 bytes_out 0 115534 bytes_in 0 115534 station_ip 5.119.220.194 115534 port 139 115534 unique_id port 115534 remote_ip 10.8.0.166 115539 username alirr 115539 unique_id port 115539 terminate_cause Lost-Carrier 115539 bytes_out 2405110 115539 bytes_in 41278891 115539 station_ip 5.120.183.82 115539 port 15729373 115539 nas_port_type Virtual 115539 remote_ip 5.5.5.251 115541 username aminvpn 115541 mac 115541 bytes_out 415573 115541 bytes_in 3307395 115541 station_ip 151.238.231.5 115541 port 132 115541 unique_id port 115541 remote_ip 10.8.0.14 115542 username alihosseini1 115542 mac 115542 bytes_out 0 115542 bytes_in 0 115542 station_ip 5.119.220.194 115542 port 51 115542 unique_id port 115542 remote_ip 10.8.1.106 115543 username mohammadjavad 115543 mac 115543 bytes_out 0 115543 bytes_in 0 115543 station_ip 83.122.210.165 115543 port 137 115543 unique_id port 115543 remote_ip 10.8.0.142 115546 username sabaghnezhad 115546 mac 115546 bytes_out 0 115546 bytes_in 0 115546 station_ip 37.129.27.67 115546 port 132 115546 unique_id port 115546 remote_ip 10.8.0.186 115549 username amirabbas 115549 unique_id port 115549 terminate_cause User-Request 115549 bytes_out 1565702 115549 bytes_in 22419224 115549 station_ip 37.27.58.182 115549 port 15729374 115549 nas_port_type Virtual 115549 remote_ip 5.5.5.249 115553 username forozande 115553 mac 115553 bytes_out 101305 115553 bytes_in 933834 115553 station_ip 37.129.47.108 115553 port 127 115553 unique_id port 115553 remote_ip 10.8.0.74 115557 username mirzaei 115557 mac 115557 bytes_out 0 115557 bytes_in 0 115557 station_ip 5.120.109.51 115557 port 51 115557 unique_id port 115557 remote_ip 10.8.1.30 115559 username mehdizare 115559 mac 115559 bytes_out 0 115559 bytes_in 0 115559 station_ip 5.119.212.172 115559 port 127 115559 unique_id port 115559 remote_ip 10.8.0.90 115560 username mehdizare 115560 mac 115560 bytes_out 13223 115560 bytes_in 25776 115560 station_ip 5.119.212.172 115560 port 122 115560 unique_id port 115560 remote_ip 10.8.0.90 115564 username farhad1 115564 mac 115564 bytes_out 0 115564 bytes_in 0 115564 station_ip 5.120.95.59 115564 port 125 115564 unique_id port 115567 username mehdizare 115567 mac 115567 bytes_out 0 115567 bytes_in 0 115567 station_ip 5.119.212.172 115567 port 49 115567 unique_id port 115567 remote_ip 10.8.1.42 115570 username houshang 115570 mac 115570 bytes_out 158946 115570 bytes_in 2159009 115570 station_ip 5.119.93.248 115570 port 125 115570 unique_id port 115570 remote_ip 10.8.0.22 115571 username sabaghnezhad 115571 mac 115571 bytes_out 137336 115571 bytes_in 129627 115571 station_ip 37.129.47.151 115571 port 132 115571 unique_id port 115571 remote_ip 10.8.0.186 115574 username houshang 115574 kill_reason Another user logged on this global unique id 115574 mac 115574 bytes_out 0 115574 bytes_in 0 115574 station_ip 5.119.93.248 115574 port 122 115574 unique_id port 115574 remote_ip 10.8.0.22 115576 username rasoul56 115576 kill_reason Another user logged on this global unique id 115576 mac 115576 bytes_out 0 115576 bytes_in 0 115576 station_ip 83.123.233.162 115576 port 138 115576 unique_id port 115578 username mehdizare 115578 mac 115578 bytes_out 17894 115578 bytes_in 22076 115578 station_ip 5.119.212.172 115578 port 49 115578 unique_id port 115578 remote_ip 10.8.1.42 115581 username mehdizare 115581 mac 115581 bytes_out 0 115581 bytes_in 0 115581 station_ip 5.119.212.172 115581 port 49 115554 station_ip 93.110.190.252 115554 port 15729377 115554 nas_port_type Virtual 115554 remote_ip 5.5.5.110 115558 username arabpour 115558 unique_id port 115558 terminate_cause User-Request 115558 bytes_out 24729 115558 bytes_in 7621 115558 station_ip 93.110.190.252 115558 port 15729378 115558 nas_port_type Virtual 115558 remote_ip 5.5.5.111 115561 username mirzaei 115561 mac 115561 bytes_out 3231 115561 bytes_in 5309 115561 station_ip 5.112.181.97 115561 port 135 115561 unique_id port 115561 remote_ip 10.8.0.66 115562 username arman1 115562 mac 115562 bytes_out 0 115562 bytes_in 0 115562 station_ip 5.119.158.122 115562 port 135 115562 unique_id port 115562 remote_ip 10.8.0.110 115565 username tahmasebi 115565 kill_reason Another user logged on this global unique id 115565 mac 115565 bytes_out 0 115565 bytes_in 0 115565 station_ip 5.119.63.197 115565 port 98 115565 unique_id port 115568 username rasoul56 115568 kill_reason Another user logged on this global unique id 115568 mac 115568 bytes_out 0 115568 bytes_in 0 115568 station_ip 83.123.233.162 115568 port 138 115568 unique_id port 115568 remote_ip 10.8.0.174 115569 username mehdizare 115569 mac 115569 bytes_out 0 115569 bytes_in 0 115569 station_ip 5.119.212.172 115569 port 122 115569 unique_id port 115569 remote_ip 10.8.0.90 115572 username rasoul56 115572 kill_reason Another user logged on this global unique id 115572 mac 115572 bytes_out 0 115572 bytes_in 0 115572 station_ip 83.123.233.162 115572 port 138 115572 unique_id port 115573 username malekpoir 115573 kill_reason Another user logged on this global unique id 115573 mac 115573 bytes_out 0 115573 bytes_in 0 115573 station_ip 5.120.157.225 115573 port 50 115573 unique_id port 115573 remote_ip 10.8.1.54 115577 username farhad1 115577 kill_reason Another user logged on this global unique id 115577 mac 115577 bytes_out 0 115577 bytes_in 0 115577 station_ip 5.120.74.109 115577 port 125 115577 unique_id port 115577 remote_ip 10.8.0.26 115579 username musa 115579 kill_reason Another user logged on this global unique id 115579 mac 115579 bytes_out 0 115579 bytes_in 0 115579 station_ip 83.123.11.67 115579 port 133 115579 unique_id port 115579 remote_ip 10.8.0.6 115582 username mostafa_es78 115582 mac 115582 bytes_out 0 115582 bytes_in 0 115582 station_ip 178.236.35.96 115582 port 136 115582 unique_id port 115582 remote_ip 10.8.0.198 115586 username musa 115586 mac 115586 bytes_out 0 115586 bytes_in 0 115586 station_ip 83.123.11.67 115586 port 133 115586 unique_id port 115587 username mehdizare 115587 mac 115587 bytes_out 0 115587 bytes_in 0 115587 station_ip 5.119.212.172 115587 port 52 115587 unique_id port 115587 remote_ip 10.8.1.42 115592 username hamid.e 115592 unique_id port 115592 terminate_cause User-Request 115592 bytes_out 4728936 115592 bytes_in 106756720 115592 station_ip 37.27.29.21 115592 port 15729375 115592 nas_port_type Virtual 115592 remote_ip 5.5.5.94 115593 username arman1 115593 kill_reason Another user logged on this global unique id 115593 mac 115593 bytes_out 0 115593 bytes_in 0 115593 station_ip 5.119.184.21 115593 port 139 115593 unique_id port 115593 remote_ip 10.8.0.110 115596 username alihosseini1 115596 mac 115596 bytes_out 608398 115596 bytes_in 9789409 115596 station_ip 5.119.1.174 115596 port 135 115596 unique_id port 115596 remote_ip 10.8.0.166 115606 username mohammadmahdi 115606 mac 115606 bytes_out 11998 115606 bytes_in 19667 115606 station_ip 5.120.57.128 115606 port 98 115606 unique_id port 115606 remote_ip 10.8.0.54 115614 username mohammadjavad 115614 mac 115614 bytes_out 0 115581 unique_id port 115581 remote_ip 10.8.1.42 115584 username rasoul56 115584 kill_reason Another user logged on this global unique id 115584 mac 115584 bytes_out 0 115584 bytes_in 0 115584 station_ip 83.123.233.162 115584 port 138 115584 unique_id port 115588 username rasoul56 115588 kill_reason Another user logged on this global unique id 115588 mac 115588 bytes_out 0 115588 bytes_in 0 115588 station_ip 83.123.233.162 115588 port 138 115588 unique_id port 115590 username musa 115590 mac 115590 bytes_out 0 115590 bytes_in 0 115590 station_ip 83.123.11.67 115590 port 122 115590 unique_id port 115590 remote_ip 10.8.0.6 115595 username mosi 115595 kill_reason Another user logged on this global unique id 115595 mac 115595 bytes_out 0 115595 bytes_in 0 115595 station_ip 151.235.101.217 115595 port 133 115595 unique_id port 115595 remote_ip 10.8.0.138 115597 username arman1 115597 mac 115597 bytes_out 0 115597 bytes_in 0 115597 station_ip 5.119.184.21 115597 port 139 115597 unique_id port 115598 username mahdiyehalizadeh 115598 mac 115598 bytes_out 931127 115598 bytes_in 15982940 115598 station_ip 83.123.219.45 115598 port 132 115598 unique_id port 115598 remote_ip 10.8.0.82 115601 username arman1 115601 mac 115601 bytes_out 1987469 115601 bytes_in 12844600 115601 station_ip 5.120.85.149 115601 port 135 115601 unique_id port 115601 remote_ip 10.8.0.110 115602 username mosi 115602 mac 115602 bytes_out 0 115602 bytes_in 0 115602 station_ip 151.235.101.217 115602 port 133 115602 unique_id port 115608 username mohammadmahdi 115608 mac 115608 bytes_out 1158837 115608 bytes_in 14520551 115608 station_ip 5.120.57.128 115608 port 137 115608 unique_id port 115608 remote_ip 10.8.0.54 115609 username sedighe 115609 mac 115609 bytes_out 0 115609 bytes_in 0 115609 station_ip 113.203.47.207 115609 port 136 115609 unique_id port 115609 remote_ip 10.8.0.146 115610 username sedighe 115610 mac 115610 bytes_out 0 115610 bytes_in 0 115610 station_ip 113.203.47.207 115610 port 137 115610 unique_id port 115610 remote_ip 10.8.0.146 115611 username mohammadmahdi 115611 kill_reason Another user logged on this global unique id 115611 mac 115611 bytes_out 0 115611 bytes_in 0 115611 station_ip 5.120.57.128 115611 port 98 115611 unique_id port 115611 remote_ip 10.8.0.54 115612 username alihosseini1 115612 mac 115612 bytes_out 2530 115612 bytes_in 4876 115612 station_ip 5.120.138.10 115612 port 140 115612 unique_id port 115612 remote_ip 10.8.0.166 115619 username sedighe 115619 mac 115619 bytes_out 0 115619 bytes_in 0 115619 station_ip 83.122.203.189 115619 port 140 115619 unique_id port 115619 remote_ip 10.8.0.146 115621 username alipour 115621 mac 115621 bytes_out 0 115621 bytes_in 0 115621 station_ip 37.129.15.154 115621 port 127 115621 unique_id port 115621 remote_ip 10.8.0.102 115625 username mirzaei 115625 mac 115625 bytes_out 121223 115625 bytes_in 315521 115625 station_ip 5.119.138.41 115625 port 136 115625 unique_id port 115625 remote_ip 10.8.0.66 115628 username hamid 115628 mac 115628 bytes_out 0 115628 bytes_in 0 115628 station_ip 83.123.185.211 115628 port 132 115628 unique_id port 115628 remote_ip 10.8.0.106 115634 username khalili 115634 kill_reason Another user logged on this global unique id 115634 mac 115634 bytes_out 0 115634 bytes_in 0 115634 station_ip 5.119.171.127 115634 port 125 115634 unique_id port 115634 remote_ip 10.8.0.86 115635 username mehdizare 115635 mac 115635 bytes_out 0 115635 bytes_in 0 115589 port 135 115589 unique_id port 115589 remote_ip 10.8.0.54 115591 username alirr 115591 unique_id port 115591 terminate_cause Lost-Carrier 115591 bytes_out 2846548 115591 bytes_in 22315320 115591 station_ip 5.120.183.82 115591 port 15729379 115591 nas_port_type Virtual 115591 remote_ip 5.5.5.112 115594 username mahdiyehalizadeh 115594 mac 115594 bytes_out 1768468 115594 bytes_in 12061337 115594 station_ip 83.123.219.45 115594 port 132 115594 unique_id port 115594 remote_ip 10.8.0.82 115599 username tahmasebi 115599 mac 115599 bytes_out 0 115599 bytes_in 0 115599 station_ip 5.119.63.197 115599 port 98 115599 unique_id port 115600 username mohammadjavad 115600 mac 115600 bytes_out 373432 115600 bytes_in 5810109 115600 station_ip 83.122.7.115 115600 port 136 115600 unique_id port 115600 remote_ip 10.8.0.142 115603 username arman1 115603 mac 115603 bytes_out 0 115603 bytes_in 0 115603 station_ip 5.120.52.100 115603 port 132 115603 unique_id port 115603 remote_ip 10.8.0.110 115604 username sabaghnezhad 115604 mac 115604 bytes_out 0 115604 bytes_in 0 115604 station_ip 37.129.47.151 115604 port 51 115604 unique_id port 115604 remote_ip 10.8.1.130 115605 username mohammadjavad 115605 mac 115605 bytes_out 796278 115605 bytes_in 9964007 115605 station_ip 83.122.7.115 115605 port 98 115605 unique_id port 115605 remote_ip 10.8.0.142 115607 username amir 115607 mac 115607 bytes_out 54659 115607 bytes_in 495737 115607 station_ip 46.225.214.168 115607 port 98 115607 unique_id port 115607 remote_ip 10.8.0.50 115613 username sedighe 115613 mac 115613 bytes_out 0 115613 bytes_in 0 115613 station_ip 83.122.203.189 115613 port 141 115613 unique_id port 115613 remote_ip 10.8.0.146 115617 username mahdiyehalizadeh 115617 mac 115617 bytes_out 2598881 115617 bytes_in 41710847 115617 station_ip 83.123.219.45 115617 port 132 115617 unique_id port 115617 remote_ip 10.8.0.82 115618 username houshang 115618 mac 115618 bytes_out 0 115618 bytes_in 0 115618 station_ip 5.119.93.248 115618 port 137 115618 unique_id port 115618 remote_ip 10.8.0.22 115620 username mohammadmahdi 115620 mac 115620 bytes_out 0 115620 bytes_in 0 115620 station_ip 5.120.57.128 115620 port 98 115620 unique_id port 115622 username mehdizare 115622 mac 115622 bytes_out 155328 115622 bytes_in 316732 115622 station_ip 5.119.212.172 115622 port 49 115622 unique_id port 115622 remote_ip 10.8.1.42 115624 username musa 115624 kill_reason Another user logged on this global unique id 115624 mac 115624 bytes_out 0 115624 bytes_in 0 115624 station_ip 83.123.11.67 115624 port 122 115624 unique_id port 115624 remote_ip 10.8.0.6 115626 username mohammadjavad 115626 kill_reason Maximum check online fails reached 115626 mac 115626 bytes_out 0 115626 bytes_in 0 115626 station_ip 113.203.46.83 115626 port 127 115626 unique_id port 115629 username malekpoir 115629 mac 115629 bytes_out 0 115629 bytes_in 0 115629 station_ip 5.120.157.225 115629 port 50 115629 unique_id port 115631 username zare 115631 kill_reason Another user logged on this global unique id 115631 mac 115631 bytes_out 0 115631 bytes_in 0 115631 station_ip 37.27.17.184 115631 port 49 115631 unique_id port 115631 remote_ip 10.8.1.58 115633 username arman1 115633 kill_reason Another user logged on this global unique id 115633 mac 115633 bytes_out 0 115633 bytes_in 0 115633 station_ip 5.120.174.1 115633 port 133 115633 unique_id port 115633 remote_ip 10.8.0.110 115639 username zare 115639 mac 115639 bytes_out 0 115639 bytes_in 0 115614 bytes_in 0 115614 station_ip 113.203.46.83 115614 port 139 115614 unique_id port 115614 remote_ip 10.8.0.142 115615 username mehdizare 115615 mac 115615 bytes_out 0 115615 bytes_in 0 115615 station_ip 5.119.212.172 115615 port 125 115615 unique_id port 115615 remote_ip 10.8.0.90 115616 username sabaghnezhad 115616 mac 115616 bytes_out 0 115616 bytes_in 0 115616 station_ip 37.129.47.151 115616 port 135 115616 unique_id port 115616 remote_ip 10.8.0.186 115623 username alipour 115623 mac 115623 bytes_out 26518 115623 bytes_in 29897 115623 station_ip 37.129.15.154 115623 port 51 115623 unique_id port 115623 remote_ip 10.8.1.50 115627 username alipour 115627 mac 115627 bytes_out 22817 115627 bytes_in 34564 115627 station_ip 37.129.15.154 115627 port 49 115627 unique_id port 115627 remote_ip 10.8.1.50 115630 username alireza 115630 unique_id port 115630 terminate_cause User-Request 115630 bytes_out 2365310 115630 bytes_in 32938882 115630 station_ip 5.119.111.34 115630 port 15729380 115630 nas_port_type Virtual 115630 remote_ip 5.5.5.114 115632 username amir 115632 mac 115632 bytes_out 0 115632 bytes_in 0 115632 station_ip 46.225.214.168 115632 port 139 115632 unique_id port 115632 remote_ip 10.8.0.50 115636 username zare 115636 kill_reason Another user logged on this global unique id 115636 mac 115636 bytes_out 0 115636 bytes_in 0 115636 station_ip 37.27.17.184 115636 port 49 115636 unique_id port 115637 username forozande 115637 mac 115637 bytes_out 0 115637 bytes_in 0 115637 station_ip 83.123.123.251 115637 port 135 115637 unique_id port 115637 remote_ip 10.8.0.74 115645 username hamid 115645 mac 115645 bytes_out 0 115645 bytes_in 0 115645 station_ip 83.123.185.211 115645 port 137 115645 unique_id port 115646 username mamal 115646 unique_id port 115646 terminate_cause User-Request 115646 bytes_out 3675925 115646 bytes_in 119206628 115646 station_ip 83.123.34.59 115646 port 15729381 115646 nas_port_type Virtual 115646 remote_ip 5.5.5.116 115652 username sabaghnezhad 115652 mac 115652 bytes_out 0 115652 bytes_in 0 115652 station_ip 37.129.47.151 115652 port 51 115652 unique_id port 115652 remote_ip 10.8.1.130 115657 username forozande 115657 mac 115657 bytes_out 99211 115657 bytes_in 269233 115657 station_ip 83.123.216.171 115657 port 133 115657 unique_id port 115657 remote_ip 10.8.0.74 115659 username forozande 115659 kill_reason Another user logged on this global unique id 115659 mac 115659 bytes_out 0 115659 bytes_in 0 115659 station_ip 37.129.54.218 115659 port 98 115659 unique_id port 115662 username amir 115662 mac 115662 bytes_out 85699 115662 bytes_in 783846 115662 station_ip 46.225.214.168 115662 port 133 115662 unique_id port 115662 remote_ip 10.8.0.50 115666 username rasoul56 115666 kill_reason Another user logged on this global unique id 115666 mac 115666 bytes_out 0 115666 bytes_in 0 115666 station_ip 83.123.233.162 115666 port 135 115666 unique_id port 115666 remote_ip 10.8.0.174 115667 username amir 115667 mac 115667 bytes_out 0 115667 bytes_in 0 115667 station_ip 46.225.214.168 115667 port 133 115667 unique_id port 115667 remote_ip 10.8.0.50 115668 username rasoul56 115668 kill_reason Another user logged on this global unique id 115668 mac 115668 bytes_out 0 115668 bytes_in 0 115668 station_ip 83.123.233.162 115668 port 135 115668 unique_id port 115669 username sabaghnezhad 115669 mac 115669 bytes_out 0 115669 bytes_in 0 115669 station_ip 37.129.112.2 115669 port 49 115669 unique_id port 115669 remote_ip 10.8.1.130 115635 station_ip 5.119.212.172 115635 port 51 115635 unique_id port 115635 remote_ip 10.8.1.42 115638 username sabaghnezhad 115638 mac 115638 bytes_out 0 115638 bytes_in 0 115638 station_ip 37.129.47.151 115638 port 98 115638 unique_id port 115638 remote_ip 10.8.0.186 115640 username alihosseini1 115640 mac 115640 bytes_out 0 115640 bytes_in 0 115640 station_ip 5.120.138.10 115640 port 142 115640 unique_id port 115640 remote_ip 10.8.0.166 115643 username amir 115643 mac 115643 bytes_out 43785 115643 bytes_in 190379 115643 station_ip 46.225.214.168 115643 port 98 115643 unique_id port 115643 remote_ip 10.8.0.50 115647 username arman1 115647 kill_reason Another user logged on this global unique id 115647 mac 115647 bytes_out 0 115647 bytes_in 0 115647 station_ip 5.120.174.1 115647 port 133 115647 unique_id port 115648 username amir 115648 mac 115648 bytes_out 0 115648 bytes_in 0 115648 station_ip 46.225.214.168 115648 port 98 115648 unique_id port 115648 remote_ip 10.8.0.50 115649 username arman1 115649 mac 115649 bytes_out 0 115649 bytes_in 0 115649 station_ip 5.120.174.1 115649 port 133 115649 unique_id port 115650 username mohammadjavad 115650 mac 115650 bytes_out 0 115650 bytes_in 0 115650 station_ip 113.203.69.188 115650 port 49 115650 unique_id port 115650 remote_ip 10.8.1.146 115651 username mohammadjavad 115651 mac 115651 bytes_out 0 115651 bytes_in 0 115651 station_ip 113.203.69.188 115651 port 49 115651 unique_id port 115651 remote_ip 10.8.1.146 115653 username mohammadjavad 115653 mac 115653 bytes_out 0 115653 bytes_in 0 115653 station_ip 37.129.126.99 115653 port 49 115653 unique_id port 115653 remote_ip 10.8.1.146 115654 username amir 115654 mac 115654 bytes_out 0 115654 bytes_in 0 115654 station_ip 46.225.214.168 115654 port 133 115654 unique_id port 115654 remote_ip 10.8.0.50 115655 username khalili 115655 mac 115655 bytes_out 0 115655 bytes_in 0 115655 station_ip 5.119.171.127 115655 port 125 115655 unique_id port 115656 username mohammadmahdi 115656 mac 115656 bytes_out 0 115656 bytes_in 0 115656 station_ip 5.120.57.128 115656 port 98 115656 unique_id port 115656 remote_ip 10.8.0.54 115658 username forozande 115658 kill_reason Another user logged on this global unique id 115658 mac 115658 bytes_out 0 115658 bytes_in 0 115658 station_ip 37.129.54.218 115658 port 98 115658 unique_id port 115658 remote_ip 10.8.0.74 115661 username mohammadmahdi 115661 mac 115661 bytes_out 2282755 115661 bytes_in 34476876 115661 station_ip 5.120.57.128 115661 port 125 115661 unique_id port 115661 remote_ip 10.8.0.54 115663 username amir 115663 mac 115663 bytes_out 0 115663 bytes_in 0 115663 station_ip 46.225.214.168 115663 port 125 115663 unique_id port 115663 remote_ip 10.8.0.50 115665 username amir 115665 mac 115665 bytes_out 0 115665 bytes_in 0 115665 station_ip 46.225.214.168 115665 port 125 115665 unique_id port 115665 remote_ip 10.8.0.50 115671 username aminvpn 115671 mac 115671 bytes_out 278911 115671 bytes_in 1189893 115671 station_ip 83.122.145.74 115671 port 137 115671 unique_id port 115671 remote_ip 10.8.0.14 115673 username amir 115673 mac 115673 bytes_out 0 115673 bytes_in 0 115673 station_ip 46.225.214.168 115673 port 125 115673 unique_id port 115673 remote_ip 10.8.0.50 115675 username rajaei 115675 kill_reason Another user logged on this global unique id 115675 mac 115675 bytes_out 0 115675 bytes_in 0 115675 station_ip 93.114.22.162 115675 port 138 115639 station_ip 37.27.17.184 115639 port 49 115639 unique_id port 115641 username amir 115641 mac 115641 bytes_out 0 115641 bytes_in 0 115641 station_ip 46.225.214.168 115641 port 98 115641 unique_id port 115641 remote_ip 10.8.0.50 115642 username hamid 115642 kill_reason Another user logged on this global unique id 115642 mac 115642 bytes_out 0 115642 bytes_in 0 115642 station_ip 83.123.185.211 115642 port 137 115642 unique_id port 115642 remote_ip 10.8.0.106 115644 username alihosseini1 115644 mac 115644 bytes_out 0 115644 bytes_in 0 115644 station_ip 5.120.138.10 115644 port 135 115644 unique_id port 115644 remote_ip 10.8.0.166 115660 username rasoul56 115660 mac 115660 bytes_out 0 115660 bytes_in 0 115660 station_ip 83.123.233.162 115660 port 138 115660 unique_id port 115664 username amir 115664 mac 115664 bytes_out 0 115664 bytes_in 0 115664 station_ip 46.225.214.168 115664 port 125 115664 unique_id port 115664 remote_ip 10.8.0.50 115672 username musa 115672 kill_reason Another user logged on this global unique id 115672 mac 115672 bytes_out 0 115672 bytes_in 0 115672 station_ip 83.123.11.67 115672 port 122 115672 unique_id port 115674 username mahdixz 115674 unique_id port 115674 terminate_cause User-Request 115674 bytes_out 0 115674 bytes_in 0 115674 station_ip 151.235.95.39 115674 port 15729382 115674 nas_port_type Virtual 115674 remote_ip 5.5.5.118 115676 username rostami 115676 mac 115676 bytes_out 0 115676 bytes_in 0 115676 station_ip 5.119.85.5 115676 port 125 115676 unique_id port 115676 remote_ip 10.8.0.194 115677 username mahdixz 115677 unique_id port 115677 terminate_cause User-Request 115677 bytes_out 72979 115677 bytes_in 198133 115677 station_ip 151.235.95.39 115677 port 15729384 115677 nas_port_type Virtual 115677 remote_ip 5.5.5.137 115679 username musa 115679 mac 115679 bytes_out 0 115679 bytes_in 0 115679 station_ip 83.123.11.67 115679 port 122 115679 unique_id port 115685 username mehdizare 115685 mac 115685 bytes_out 0 115685 bytes_in 0 115685 station_ip 5.119.126.154 115685 port 52 115685 unique_id port 115685 remote_ip 10.8.1.42 115686 username amir 115686 mac 115686 bytes_out 931806 115686 bytes_in 1072045 115686 station_ip 46.225.214.168 115686 port 139 115686 unique_id port 115686 remote_ip 10.8.0.50 115690 username malekpoir 115690 kill_reason Another user logged on this global unique id 115690 mac 115690 bytes_out 0 115690 bytes_in 0 115690 station_ip 5.120.157.225 115690 port 132 115690 unique_id port 115690 remote_ip 10.8.0.58 115695 username mirzaei 115695 mac 115695 bytes_out 5211908 115695 bytes_in 42535069 115695 station_ip 5.119.138.41 115695 port 50 115695 unique_id port 115695 remote_ip 10.8.1.30 115696 username ahmadi 115696 unique_id port 115696 terminate_cause User-Request 115696 bytes_out 185048 115696 bytes_in 1100183 115696 station_ip 83.123.202.207 115696 port 15729386 115696 nas_port_type Virtual 115696 remote_ip 5.5.5.71 115698 username aminvpn 115698 unique_id port 115698 terminate_cause Lost-Carrier 115698 bytes_out 1285623 115698 bytes_in 13684490 115698 station_ip 5.125.192.201 115698 port 15729385 115698 nas_port_type Virtual 115698 remote_ip 5.5.5.255 115700 username rostami 115700 mac 115700 bytes_out 0 115700 bytes_in 0 115700 station_ip 5.119.125.82 115700 port 140 115700 unique_id port 115700 remote_ip 10.8.0.194 115708 username amin.saeedi 115708 unique_id port 115708 terminate_cause Lost-Carrier 115708 bytes_out 2843457 115708 bytes_in 43446540 115708 station_ip 31.56.155.237 115708 port 15729387 115670 username mosi 115670 mac 115670 bytes_out 0 115670 bytes_in 0 115670 station_ip 151.235.101.217 115670 port 125 115670 unique_id port 115670 remote_ip 10.8.0.138 115678 username musa 115678 kill_reason Another user logged on this global unique id 115678 mac 115678 bytes_out 0 115678 bytes_in 0 115678 station_ip 83.123.11.67 115678 port 122 115678 unique_id port 115680 username rostami 115680 mac 115680 bytes_out 307102 115680 bytes_in 5659647 115680 station_ip 5.119.125.82 115680 port 125 115680 unique_id port 115680 remote_ip 10.8.0.194 115682 username mahdiyehalizadeh 115682 mac 115682 bytes_out 1772383 115682 bytes_in 24674417 115682 station_ip 83.123.22.126 115682 port 133 115682 unique_id port 115682 remote_ip 10.8.0.82 115683 username forozande 115683 mac 115683 bytes_out 0 115683 bytes_in 0 115683 station_ip 37.129.54.218 115683 port 98 115683 unique_id port 115688 username rajaei 115688 mac 115688 bytes_out 0 115688 bytes_in 0 115688 station_ip 93.114.22.162 115688 port 138 115688 unique_id port 115689 username avaanna 115689 mac 115689 bytes_out 0 115689 bytes_in 0 115689 station_ip 83.123.48.255 115689 port 52 115689 unique_id port 115689 remote_ip 10.8.1.46 115691 username tahmasebi 115691 kill_reason Another user logged on this global unique id 115691 mac 115691 bytes_out 0 115691 bytes_in 0 115691 station_ip 5.119.63.197 115691 port 137 115691 unique_id port 115691 remote_ip 10.8.0.42 115692 username rostami 115692 mac 115692 bytes_out 2266092 115692 bytes_in 27676680 115692 station_ip 5.119.125.82 115692 port 125 115692 unique_id port 115692 remote_ip 10.8.0.194 115693 username amir 115693 mac 115693 bytes_out 0 115693 bytes_in 0 115693 station_ip 46.225.214.168 115693 port 138 115693 unique_id port 115693 remote_ip 10.8.0.50 115694 username musa 115694 mac 115694 bytes_out 1618946 115694 bytes_in 14092016 115694 station_ip 83.123.220.231 115694 port 49 115694 unique_id port 115694 remote_ip 10.8.1.10 115697 username houshang 115697 mac 115697 bytes_out 2470267 115697 bytes_in 46101064 115697 station_ip 5.119.93.248 115697 port 133 115697 unique_id port 115697 remote_ip 10.8.0.22 115699 username mirzaei 115699 kill_reason Maximum check online fails reached 115699 mac 115699 bytes_out 0 115699 bytes_in 0 115699 station_ip 5.119.138.41 115699 port 49 115699 unique_id port 115705 username amir 115705 mac 115705 bytes_out 0 115705 bytes_in 0 115705 station_ip 46.225.214.168 115705 port 98 115705 unique_id port 115705 remote_ip 10.8.0.50 115712 username alirr 115712 unique_id port 115712 terminate_cause User-Request 115712 bytes_out 14843769 115712 bytes_in 13949962 115712 station_ip 5.120.57.231 115712 port 15729393 115712 nas_port_type Virtual 115712 remote_ip 5.5.5.103 115717 username farhad1 115717 mac 115717 bytes_out 371066 115717 bytes_in 2057398 115717 station_ip 5.120.70.241 115717 port 122 115717 unique_id port 115717 remote_ip 10.8.0.26 115718 username ahmadipour 115718 unique_id port 115718 terminate_cause Lost-Carrier 115718 bytes_out 90355 115718 bytes_in 1937426 115718 station_ip 83.122.198.66 115718 port 15729394 115718 nas_port_type Virtual 115718 remote_ip 5.5.5.126 115720 username rostami 115720 mac 115720 bytes_out 360408 115720 bytes_in 2425836 115720 station_ip 5.119.125.82 115720 port 122 115720 unique_id port 115720 remote_ip 10.8.0.194 115723 username rostami 115723 mac 115723 bytes_out 9902 115723 bytes_in 17253 115723 station_ip 5.119.125.82 115723 port 122 115723 unique_id port 115675 unique_id port 115675 remote_ip 10.8.0.34 115681 username mahdixz 115681 unique_id port 115681 terminate_cause Lost-Carrier 115681 bytes_out 390409 115681 bytes_in 2366426 115681 station_ip 151.235.95.39 115681 port 15729383 115681 nas_port_type Virtual 115681 remote_ip 5.5.5.119 115684 username houshang 115684 mac 115684 bytes_out 0 115684 bytes_in 0 115684 station_ip 5.119.93.248 115684 port 125 115684 unique_id port 115684 remote_ip 10.8.0.22 115687 username amir 115687 mac 115687 bytes_out 0 115687 bytes_in 0 115687 station_ip 46.225.214.168 115687 port 53 115687 unique_id port 115687 remote_ip 10.8.1.22 115701 username aminvpn 115701 mac 115701 bytes_out 177068 115701 bytes_in 414432 115701 station_ip 83.122.174.254 115701 port 125 115701 unique_id port 115701 remote_ip 10.8.0.14 115702 username mahdiyehalizadeh 115702 mac 115702 bytes_out 539712 115702 bytes_in 2669716 115702 station_ip 83.123.22.126 115702 port 98 115702 unique_id port 115702 remote_ip 10.8.0.82 115703 username avaanna 115703 kill_reason Another user logged on this global unique id 115703 mac 115703 bytes_out 0 115703 bytes_in 0 115703 station_ip 83.123.48.255 115703 port 139 115703 unique_id port 115703 remote_ip 10.8.0.98 115704 username mahdixz 115704 unique_id port 115704 terminate_cause User-Request 115704 bytes_out 309426 115704 bytes_in 7795225 115704 station_ip 151.235.95.39 115704 port 15729391 115704 nas_port_type Virtual 115704 remote_ip 5.5.5.77 115706 username farhad1 115706 mac 115706 bytes_out 0 115706 bytes_in 0 115706 station_ip 5.119.231.243 115706 port 122 115706 unique_id port 115706 remote_ip 10.8.0.26 115707 username malekpoir 115707 mac 115707 bytes_out 0 115707 bytes_in 0 115707 station_ip 5.120.157.225 115707 port 132 115707 unique_id port 115710 username kordestani 115710 mac 115710 bytes_out 1373413 115710 bytes_in 18625074 115710 station_ip 151.235.99.195 115710 port 98 115710 unique_id port 115710 remote_ip 10.8.0.134 115711 username musa 115711 kill_reason Another user logged on this global unique id 115711 mac 115711 bytes_out 0 115711 bytes_in 0 115711 station_ip 37.129.37.227 115711 port 133 115711 unique_id port 115711 remote_ip 10.8.0.6 115713 username rostami 115713 mac 115713 bytes_out 4711591 115713 bytes_in 55826383 115713 station_ip 5.119.125.82 115713 port 138 115713 unique_id port 115713 remote_ip 10.8.0.194 115715 username farhad1 115715 mac 115715 bytes_out 2356168 115715 bytes_in 16712249 115715 station_ip 5.120.70.241 115715 port 122 115715 unique_id port 115715 remote_ip 10.8.0.26 115716 username amir 115716 mac 115716 bytes_out 583959 115716 bytes_in 1486625 115716 station_ip 46.225.214.168 115716 port 132 115716 unique_id port 115716 remote_ip 10.8.0.50 115719 username tahmasebi 115719 kill_reason Another user logged on this global unique id 115719 mac 115719 bytes_out 0 115719 bytes_in 0 115719 station_ip 5.119.63.197 115719 port 137 115719 unique_id port 115721 username mehdizare 115721 mac 115721 bytes_out 0 115721 bytes_in 0 115721 station_ip 5.119.126.154 115721 port 51 115721 unique_id port 115721 remote_ip 10.8.1.42 115724 username avaanna 115724 kill_reason Another user logged on this global unique id 115724 mac 115724 bytes_out 0 115724 bytes_in 0 115724 station_ip 83.123.48.255 115724 port 139 115724 unique_id port 115726 username avaanna 115726 mac 115726 bytes_out 0 115726 bytes_in 0 115726 station_ip 83.123.48.255 115726 port 139 115726 unique_id port 115731 username rasoul56 115791 username abravesh 115708 nas_port_type Virtual 115708 remote_ip 5.5.5.74 115709 username amin.saeedi 115709 unique_id port 115709 terminate_cause User-Request 115709 bytes_out 2105232 115709 bytes_in 42599843 115709 station_ip 31.56.155.237 115709 port 15729392 115709 nas_port_type Virtual 115709 remote_ip 5.5.5.80 115714 username rasoul56 115714 mac 115714 bytes_out 0 115714 bytes_in 0 115714 station_ip 83.123.233.162 115714 port 135 115714 unique_id port 115722 username kordestani 115722 kill_reason Another user logged on this global unique id 115722 mac 115722 bytes_out 0 115722 bytes_in 0 115722 station_ip 151.235.99.195 115722 port 98 115722 unique_id port 115722 remote_ip 10.8.0.134 115729 username kordestani 115729 kill_reason Another user logged on this global unique id 115729 mac 115729 bytes_out 0 115729 bytes_in 0 115729 station_ip 151.235.99.195 115729 port 98 115729 unique_id port 115734 username mostafa_es78 115734 unique_id port 115734 terminate_cause Lost-Carrier 115734 bytes_out 732384 115734 bytes_in 1030124 115734 station_ip 178.236.35.96 115734 port 15729395 115734 nas_port_type Virtual 115734 remote_ip 5.5.5.255 115735 username zare 115735 mac 115735 bytes_out 0 115735 bytes_in 0 115735 station_ip 37.27.17.184 115735 port 50 115735 unique_id port 115735 remote_ip 10.8.1.58 115740 username tahmasebi 115740 kill_reason Another user logged on this global unique id 115740 mac 115740 bytes_out 0 115740 bytes_in 0 115740 station_ip 5.119.63.197 115740 port 137 115740 unique_id port 115745 username tahmasebi 115745 kill_reason Another user logged on this global unique id 115745 mac 115745 bytes_out 0 115745 bytes_in 0 115745 station_ip 5.119.63.197 115745 port 137 115745 unique_id port 115750 username zare 115750 mac 115750 bytes_out 0 115750 bytes_in 0 115750 station_ip 37.27.17.184 115750 port 139 115750 unique_id port 115753 username mostafa_es78 115753 unique_id port 115753 terminate_cause Lost-Carrier 115753 bytes_out 887205 115753 bytes_in 14306565 115753 station_ip 178.236.35.96 115753 port 15729397 115753 nas_port_type Virtual 115753 remote_ip 5.5.5.84 115755 username zare 115755 mac 115755 bytes_out 0 115755 bytes_in 0 115755 station_ip 37.27.17.184 115755 port 98 115755 unique_id port 115755 remote_ip 10.8.0.18 115760 username rasoul56 115760 mac 115760 bytes_out 0 115760 bytes_in 0 115760 station_ip 83.122.227.75 115760 port 138 115760 unique_id port 115761 username aminvpn 115761 mac 115761 bytes_out 328216 115761 bytes_in 2614610 115761 station_ip 37.129.104.67 115761 port 125 115761 unique_id port 115761 remote_ip 10.8.0.14 115762 username zare 115762 mac 115762 bytes_out 0 115762 bytes_in 0 115762 station_ip 37.27.17.184 115762 port 125 115762 unique_id port 115762 remote_ip 10.8.0.18 115763 username sabaghnezhad 115763 mac 115763 bytes_out 403133 115763 bytes_in 528202 115763 station_ip 83.122.227.141 115763 port 50 115763 unique_id port 115763 remote_ip 10.8.1.130 115764 username zare 115764 mac 115764 bytes_out 0 115764 bytes_in 0 115764 station_ip 37.27.17.184 115764 port 132 115764 unique_id port 115764 remote_ip 10.8.0.18 115765 username mahdiyehalizadeh 115765 mac 115765 bytes_out 514777 115765 bytes_in 8049248 115765 station_ip 37.129.174.179 115765 port 125 115765 unique_id port 115765 remote_ip 10.8.0.82 115766 username zare 115766 mac 115766 bytes_out 0 115766 bytes_in 0 115766 station_ip 37.27.17.184 115766 port 125 115766 unique_id port 115766 remote_ip 10.8.0.18 115767 username sabaghnezhad 115767 mac 115767 bytes_out 0 115767 bytes_in 0 115723 remote_ip 10.8.0.194 115725 username mehdizare 115725 mac 115725 bytes_out 9680 115725 bytes_in 15584 115725 station_ip 5.119.126.154 115725 port 132 115725 unique_id port 115725 remote_ip 10.8.0.90 115727 username rasoul56 115727 kill_reason Another user logged on this global unique id 115727 mac 115727 bytes_out 0 115727 bytes_in 0 115727 station_ip 83.122.227.75 115727 port 138 115727 unique_id port 115727 remote_ip 10.8.0.174 115728 username rezasekonji 115728 mac 115728 bytes_out 0 115728 bytes_in 0 115728 station_ip 37.129.169.109 115728 port 122 115728 unique_id port 115728 remote_ip 10.8.0.130 115730 username houshang 115730 mac 115730 bytes_out 0 115730 bytes_in 0 115730 station_ip 5.119.93.248 115730 port 135 115730 unique_id port 115730 remote_ip 10.8.0.22 115741 username zare 115741 mac 115741 bytes_out 0 115741 bytes_in 0 115741 station_ip 37.27.17.184 115741 port 139 115741 unique_id port 115741 remote_ip 10.8.0.18 115743 username musa 115743 kill_reason Another user logged on this global unique id 115743 mac 115743 bytes_out 0 115743 bytes_in 0 115743 station_ip 37.129.37.227 115743 port 133 115743 unique_id port 115746 username rasoul56 115746 kill_reason Another user logged on this global unique id 115746 mac 115746 bytes_out 0 115746 bytes_in 0 115746 station_ip 83.122.227.75 115746 port 138 115746 unique_id port 115747 username kordestani 115747 kill_reason Another user logged on this global unique id 115747 mac 115747 bytes_out 0 115747 bytes_in 0 115747 station_ip 151.235.99.195 115747 port 98 115747 unique_id port 115748 username zare 115748 kill_reason Another user logged on this global unique id 115748 mac 115748 bytes_out 0 115748 bytes_in 0 115748 station_ip 37.27.17.184 115748 port 139 115748 unique_id port 115748 remote_ip 10.8.0.18 115749 username farhad1 115749 mac 115749 bytes_out 2370701 115749 bytes_in 8237858 115749 station_ip 5.119.102.9 115749 port 132 115749 unique_id port 115749 remote_ip 10.8.0.26 115751 username zare 115751 mac 115751 bytes_out 0 115751 bytes_in 0 115751 station_ip 37.27.17.184 115751 port 132 115751 unique_id port 115751 remote_ip 10.8.0.18 115756 username aminvpn 115756 mac 115756 bytes_out 0 115756 bytes_in 0 115756 station_ip 37.129.104.67 115756 port 132 115756 unique_id port 115756 remote_ip 10.8.0.14 115758 username mirzaei 115758 mac 115758 bytes_out 897050 115758 bytes_in 3344439 115758 station_ip 5.119.138.41 115758 port 125 115758 unique_id port 115758 remote_ip 10.8.0.66 115771 username musa 115771 mac 115771 bytes_out 0 115771 bytes_in 0 115771 station_ip 37.129.37.227 115771 port 133 115771 unique_id port 115774 username mirzaei 115774 mac 115774 bytes_out 0 115774 bytes_in 0 115774 station_ip 5.120.124.3 115774 port 133 115774 unique_id port 115774 remote_ip 10.8.0.66 115777 username farhad1 115777 mac 115777 bytes_out 0 115777 bytes_in 0 115777 station_ip 5.120.110.14 115777 port 132 115777 unique_id port 115777 remote_ip 10.8.0.26 115778 username mirzaei 115778 mac 115778 bytes_out 0 115778 bytes_in 0 115778 station_ip 5.120.124.3 115778 port 133 115778 unique_id port 115778 remote_ip 10.8.0.66 115782 username naeimeh 115782 mac 115782 bytes_out 0 115782 bytes_in 0 115782 station_ip 113.203.91.234 115782 port 98 115782 unique_id port 115782 remote_ip 10.8.0.78 115791 unique_id port 115791 terminate_cause Lost-Carrier 115791 bytes_out 5206348 115791 bytes_in 245287636 115791 station_ip 5.120.101.5 115791 port 15729399 115731 kill_reason Another user logged on this global unique id 115731 mac 115731 bytes_out 0 115731 bytes_in 0 115731 station_ip 83.122.227.75 115731 port 138 115731 unique_id port 115732 username avaanna 115732 mac 115732 bytes_out 0 115732 bytes_in 0 115732 station_ip 83.123.48.255 115732 port 50 115732 unique_id port 115732 remote_ip 10.8.1.46 115733 username alirr 115733 unique_id port 115733 terminate_cause NAS-Error 115733 bytes_out 53 115733 bytes_in 289 115733 station_ip 5.120.100.24 115733 port 15729396 115733 nas_port_type Virtual 115733 remote_ip 5.5.5.82 115736 username rostami 115736 mac 115736 bytes_out 0 115736 bytes_in 0 115736 station_ip 5.119.125.82 115736 port 122 115736 unique_id port 115736 remote_ip 10.8.0.194 115737 username zare 115737 mac 115737 bytes_out 0 115737 bytes_in 0 115737 station_ip 37.27.17.184 115737 port 50 115737 unique_id port 115737 remote_ip 10.8.1.58 115738 username rasoul56 115738 kill_reason Another user logged on this global unique id 115738 mac 115738 bytes_out 0 115738 bytes_in 0 115738 station_ip 83.122.227.75 115738 port 138 115738 unique_id port 115739 username kordestani 115739 kill_reason Another user logged on this global unique id 115739 mac 115739 bytes_out 0 115739 bytes_in 0 115739 station_ip 151.235.99.195 115739 port 98 115739 unique_id port 115742 username rasoul56 115742 kill_reason Another user logged on this global unique id 115742 mac 115742 bytes_out 0 115742 bytes_in 0 115742 station_ip 83.122.227.75 115742 port 138 115742 unique_id port 115744 username rajaei 115744 mac 115744 bytes_out 0 115744 bytes_in 0 115744 station_ip 93.114.22.162 115744 port 132 115744 unique_id port 115744 remote_ip 10.8.0.34 115752 username aminvpn 115752 mac 115752 bytes_out 0 115752 bytes_in 0 115752 station_ip 37.129.104.67 115752 port 135 115752 unique_id port 115752 remote_ip 10.8.0.14 115754 username kordestani 115754 mac 115754 bytes_out 0 115754 bytes_in 0 115754 station_ip 151.235.99.195 115754 port 98 115754 unique_id port 115757 username mostafa_es78 115757 unique_id port 115757 terminate_cause Lost-Carrier 115757 bytes_out 226087 115757 bytes_in 2586653 115757 station_ip 178.236.35.96 115757 port 15729398 115757 nas_port_type Virtual 115757 remote_ip 5.5.5.85 115759 username zare 115759 mac 115759 bytes_out 0 115759 bytes_in 0 115759 station_ip 37.27.17.184 115759 port 125 115759 unique_id port 115759 remote_ip 10.8.0.18 115769 username alihosseini1 115769 mac 115769 bytes_out 34132 115769 bytes_in 60803 115769 station_ip 5.120.96.211 115769 port 98 115769 unique_id port 115769 remote_ip 10.8.0.166 115770 username mirzaei 115770 mac 115770 bytes_out 98544 115770 bytes_in 368387 115770 station_ip 5.119.221.24 115770 port 135 115770 unique_id port 115770 remote_ip 10.8.0.66 115776 username zare 115776 kill_reason Another user logged on this global unique id 115776 mac 115776 bytes_out 0 115776 bytes_in 0 115776 station_ip 37.27.17.184 115776 port 125 115776 unique_id port 115776 remote_ip 10.8.0.18 115780 username mirzaei 115780 mac 115780 bytes_out 0 115780 bytes_in 0 115780 station_ip 5.120.124.3 115780 port 98 115780 unique_id port 115780 remote_ip 10.8.0.66 115785 username zare 115785 mac 115785 bytes_out 0 115785 bytes_in 0 115785 station_ip 37.27.17.184 115785 port 125 115785 unique_id port 115786 username zare 115786 mac 115786 bytes_out 0 115786 bytes_in 0 115786 station_ip 37.27.17.184 115786 port 98 115786 unique_id port 115786 remote_ip 10.8.0.18 115767 station_ip 37.129.232.5 115767 port 50 115767 unique_id port 115767 remote_ip 10.8.1.130 115768 username mirzaei 115768 mac 115768 bytes_out 0 115768 bytes_in 0 115768 station_ip 5.119.138.41 115768 port 98 115768 unique_id port 115768 remote_ip 10.8.0.66 115772 username mirzaei 115772 mac 115772 bytes_out 0 115772 bytes_in 0 115772 station_ip 5.112.205.58 115772 port 50 115772 unique_id port 115772 remote_ip 10.8.1.30 115773 username mosi 115773 kill_reason Another user logged on this global unique id 115773 mac 115773 bytes_out 0 115773 bytes_in 0 115773 station_ip 151.235.101.217 115773 port 98 115773 unique_id port 115773 remote_ip 10.8.0.138 115775 username mosi 115775 mac 115775 bytes_out 0 115775 bytes_in 0 115775 station_ip 151.235.101.217 115775 port 98 115775 unique_id port 115779 username sabaghnezhad 115779 mac 115779 bytes_out 0 115779 bytes_in 0 115779 station_ip 83.123.71.159 115779 port 135 115779 unique_id port 115779 remote_ip 10.8.0.186 115781 username tahmasebi 115781 kill_reason Another user logged on this global unique id 115781 mac 115781 bytes_out 0 115781 bytes_in 0 115781 station_ip 5.119.63.197 115781 port 137 115781 unique_id port 115783 username zare 115783 kill_reason Another user logged on this global unique id 115783 mac 115783 bytes_out 0 115783 bytes_in 0 115783 station_ip 37.27.17.184 115783 port 125 115783 unique_id port 115784 username naeimeh 115784 mac 115784 bytes_out 2361574 115784 bytes_in 30714656 115784 station_ip 37.129.221.28 115784 port 98 115784 unique_id port 115784 remote_ip 10.8.0.78 115787 username zare 115787 mac 115787 bytes_out 10252 115787 bytes_in 18932 115787 station_ip 37.27.17.184 115787 port 51 115787 unique_id port 115787 remote_ip 10.8.1.58 115790 username mirzaei 115790 kill_reason Another user logged on this global unique id 115790 mac 115790 bytes_out 0 115790 bytes_in 0 115790 station_ip 5.120.124.3 115790 port 50 115790 unique_id port 115790 remote_ip 10.8.1.30 115791 nas_port_type Virtual 115791 remote_ip 5.5.5.87 115793 username alirr 115793 unique_id port 115793 terminate_cause Lost-Carrier 115793 bytes_out 1465693 115793 bytes_in 15595913 115793 station_ip 5.119.33.69 115793 port 15729400 115793 nas_port_type Virtual 115793 remote_ip 5.5.5.89 115795 username mehdizare 115795 mac 115795 bytes_out 0 115795 bytes_in 0 115795 station_ip 5.119.126.154 115795 port 98 115795 unique_id port 115795 remote_ip 10.8.0.90 115797 username mohammadjavad 115797 mac 115797 bytes_out 542189 115797 bytes_in 2180868 115797 station_ip 83.122.19.78 115797 port 52 115797 unique_id port 115797 remote_ip 10.8.1.146 115802 username houshang 115802 mac 115802 bytes_out 0 115802 bytes_in 0 115802 station_ip 5.119.93.248 115802 port 98 115802 unique_id port 115802 remote_ip 10.8.0.22 115806 username houshang 115806 mac 115806 bytes_out 40153 115806 bytes_in 78408 115806 station_ip 5.119.93.248 115806 port 98 115806 unique_id port 115806 remote_ip 10.8.0.22 115808 username mehdizare 115808 mac 115808 bytes_out 0 115808 bytes_in 0 115808 station_ip 5.119.126.154 115808 port 52 115808 unique_id port 115808 remote_ip 10.8.1.42 115810 username alipour 115810 mac 115810 bytes_out 0 115810 bytes_in 0 115810 station_ip 37.129.15.154 115810 port 136 115810 unique_id port 115819 username sedighe 115819 mac 115819 bytes_out 81723 115819 bytes_in 645291 115819 station_ip 83.123.248.228 115819 port 122 115819 unique_id port 115819 remote_ip 10.8.0.146 115823 username forozande 115823 mac 115788 username zare 115788 mac 115788 bytes_out 8570 115788 bytes_in 10827 115788 station_ip 37.27.17.184 115788 port 51 115788 unique_id port 115788 remote_ip 10.8.1.58 115789 username afarin1 115789 mac 115789 bytes_out 0 115789 bytes_in 0 115789 station_ip 83.122.44.126 115789 port 122 115789 unique_id port 115789 remote_ip 10.8.0.118 115792 username mehdizare 115792 mac 115792 bytes_out 0 115792 bytes_in 0 115792 station_ip 5.119.126.154 115792 port 140 115792 unique_id port 115792 remote_ip 10.8.0.90 115794 username mirzaei 115794 kill_reason Another user logged on this global unique id 115794 mac 115794 bytes_out 0 115794 bytes_in 0 115794 station_ip 5.120.124.3 115794 port 50 115794 unique_id port 115800 username mehdizare 115800 mac 115800 bytes_out 9116 115800 bytes_in 16060 115800 station_ip 5.119.126.154 115800 port 51 115800 unique_id port 115800 remote_ip 10.8.1.42 115803 username mehdizare 115803 mac 115803 bytes_out 0 115803 bytes_in 0 115803 station_ip 5.119.126.154 115803 port 51 115803 unique_id port 115803 remote_ip 10.8.1.42 115804 username mohammadjavad 115804 mac 115804 bytes_out 0 115804 bytes_in 0 115804 station_ip 113.203.81.163 115804 port 52 115804 unique_id port 115804 remote_ip 10.8.1.146 115807 username alipour 115807 kill_reason Another user logged on this global unique id 115807 mac 115807 bytes_out 0 115807 bytes_in 0 115807 station_ip 37.129.15.154 115807 port 136 115807 unique_id port 115807 remote_ip 10.8.0.102 115813 username sedighe 115813 mac 115813 bytes_out 0 115813 bytes_in 0 115813 station_ip 83.122.30.113 115813 port 135 115813 unique_id port 115813 remote_ip 10.8.0.146 115815 username houshang 115815 mac 115815 bytes_out 0 115815 bytes_in 0 115815 station_ip 5.119.93.248 115815 port 133 115815 unique_id port 115817 username mirzaei 115817 kill_reason Another user logged on this global unique id 115817 mac 115817 bytes_out 0 115817 bytes_in 0 115817 station_ip 5.120.124.3 115817 port 50 115817 unique_id port 115817 remote_ip 10.8.1.30 115818 username mohammadjavad 115818 mac 115818 bytes_out 0 115818 bytes_in 0 115818 station_ip 37.27.27.141 115818 port 52 115818 unique_id port 115818 remote_ip 10.8.1.146 115821 username rostami 115821 mac 115821 bytes_out 304324 115821 bytes_in 1468308 115821 station_ip 5.119.125.82 115821 port 122 115821 unique_id port 115821 remote_ip 10.8.0.194 115824 username forozande 115824 mac 115824 bytes_out 137501 115824 bytes_in 1185227 115824 station_ip 83.123.129.99 115824 port 125 115824 unique_id port 115824 remote_ip 10.8.0.74 115826 username sabaghnezhad 115826 mac 115826 bytes_out 0 115826 bytes_in 0 115826 station_ip 83.123.131.20 115826 port 122 115826 unique_id port 115826 remote_ip 10.8.0.186 115827 username rostami 115827 mac 115827 bytes_out 453138 115827 bytes_in 2121540 115827 station_ip 5.119.125.82 115827 port 98 115827 unique_id port 115827 remote_ip 10.8.0.194 115832 username mohammadjavad 115832 mac 115832 bytes_out 0 115832 bytes_in 0 115832 station_ip 37.27.27.141 115832 port 52 115832 unique_id port 115832 remote_ip 10.8.1.146 115838 username aminvpn 115838 unique_id port 115838 terminate_cause User-Request 115838 bytes_out 2759 115838 bytes_in 332 115838 station_ip 5.120.22.206 115838 port 15729403 115838 nas_port_type Virtual 115838 remote_ip 5.5.5.104 115842 username mehdizare 115842 mac 115842 bytes_out 0 115842 bytes_in 0 115842 station_ip 5.119.126.154 115842 port 51 115842 unique_id port 115796 username houshang 115796 mac 115796 bytes_out 0 115796 bytes_in 0 115796 station_ip 5.119.93.248 115796 port 98 115796 unique_id port 115796 remote_ip 10.8.0.22 115798 username mirzaei 115798 mac 115798 bytes_out 0 115798 bytes_in 0 115798 station_ip 5.120.124.3 115798 port 50 115798 unique_id port 115799 username mehdizare 115799 mac 115799 bytes_out 236580 115799 bytes_in 362110 115799 station_ip 5.119.126.154 115799 port 51 115799 unique_id port 115799 remote_ip 10.8.1.42 115801 username mehdizare 115801 mac 115801 bytes_out 14526 115801 bytes_in 29937 115801 station_ip 5.119.126.154 115801 port 51 115801 unique_id port 115801 remote_ip 10.8.1.42 115805 username mehdizare 115805 mac 115805 bytes_out 0 115805 bytes_in 0 115805 station_ip 5.119.126.154 115805 port 51 115805 unique_id port 115805 remote_ip 10.8.1.42 115809 username mehdizare 115809 mac 115809 bytes_out 0 115809 bytes_in 0 115809 station_ip 5.119.126.154 115809 port 125 115809 unique_id port 115809 remote_ip 10.8.0.90 115811 username mehdizare 115811 kill_reason Maximum check online fails reached 115811 mac 115811 bytes_out 0 115811 bytes_in 0 115811 station_ip 5.119.126.154 115811 port 132 115811 unique_id port 115812 username forozande 115812 mac 115812 bytes_out 0 115812 bytes_in 0 115812 station_ip 83.123.219.8 115812 port 122 115812 unique_id port 115812 remote_ip 10.8.0.74 115814 username houshang 115814 kill_reason Another user logged on this global unique id 115814 mac 115814 bytes_out 0 115814 bytes_in 0 115814 station_ip 5.119.93.248 115814 port 133 115814 unique_id port 115814 remote_ip 10.8.0.22 115816 username alipour 115816 mac 115816 bytes_out 0 115816 bytes_in 0 115816 station_ip 37.129.15.154 115816 port 125 115816 unique_id port 115816 remote_ip 10.8.0.102 115820 username rostami 115820 mac 115820 bytes_out 202256 115820 bytes_in 414697 115820 station_ip 5.119.125.82 115820 port 125 115820 unique_id port 115820 remote_ip 10.8.0.194 115822 username sabaghnezhad 115822 mac 115822 bytes_out 0 115822 bytes_in 0 115822 station_ip 83.123.131.20 115822 port 125 115822 unique_id port 115822 remote_ip 10.8.0.186 115825 username malekpoir 115825 mac 115825 bytes_out 4527153 115825 bytes_in 48979465 115825 station_ip 5.120.157.225 115825 port 98 115825 unique_id port 115825 remote_ip 10.8.0.58 115829 username hamid 115829 kill_reason Another user logged on this global unique id 115829 mac 115829 bytes_out 0 115829 bytes_in 0 115829 station_ip 83.123.185.211 115829 port 122 115829 unique_id port 115829 remote_ip 10.8.0.106 115830 username alipour 115830 kill_reason Another user logged on this global unique id 115830 mac 115830 bytes_out 0 115830 bytes_in 0 115830 station_ip 37.129.15.154 115830 port 53 115830 unique_id port 115830 remote_ip 10.8.1.50 115834 username hamid 115834 kill_reason Another user logged on this global unique id 115834 mac 115834 bytes_out 0 115834 bytes_in 0 115834 station_ip 83.123.185.211 115834 port 122 115834 unique_id port 115835 username hamid 115835 mac 115835 bytes_out 0 115835 bytes_in 0 115835 station_ip 83.123.185.211 115835 port 122 115835 unique_id port 115836 username sabaghnezhad 115836 mac 115836 bytes_out 172477 115836 bytes_in 139979 115836 station_ip 83.123.131.20 115836 port 133 115836 unique_id port 115836 remote_ip 10.8.0.186 115837 username rostami 115837 mac 115837 bytes_out 465525 115837 bytes_in 3880671 115837 station_ip 5.119.125.82 115837 port 125 115837 unique_id port 115823 bytes_out 0 115823 bytes_in 0 115823 station_ip 37.129.108.151 115823 port 125 115823 unique_id port 115823 remote_ip 10.8.0.74 115828 username forozande 115828 kill_reason Another user logged on this global unique id 115828 mac 115828 bytes_out 0 115828 bytes_in 0 115828 station_ip 37.129.246.21 115828 port 125 115828 unique_id port 115828 remote_ip 10.8.0.74 115831 username forozande 115831 mac 115831 bytes_out 0 115831 bytes_in 0 115831 station_ip 37.129.246.21 115831 port 125 115831 unique_id port 115833 username kordestani 115833 mac 115833 bytes_out 889307 115833 bytes_in 8033015 115833 station_ip 151.235.91.173 115833 port 125 115833 unique_id port 115833 remote_ip 10.8.0.134 115839 username aminvpn 115839 unique_id port 115839 terminate_cause Lost-Carrier 115839 bytes_out 1923273 115839 bytes_in 1865897 115839 station_ip 5.125.192.201 115839 port 15729402 115839 nas_port_type Virtual 115839 remote_ip 5.5.5.91 115841 username forozande 115841 mac 115841 bytes_out 30880 115841 bytes_in 34937 115841 station_ip 83.123.108.169 115841 port 122 115841 unique_id port 115841 remote_ip 10.8.0.74 115852 username sedighe 115852 mac 115852 bytes_out 0 115852 bytes_in 0 115852 station_ip 83.123.99.99 115852 port 122 115852 unique_id port 115852 remote_ip 10.8.0.146 115855 username aminvpn 115855 unique_id port 115855 terminate_cause Lost-Carrier 115855 bytes_out 1631822 115855 bytes_in 6493450 115855 station_ip 5.125.192.201 115855 port 15729404 115855 nas_port_type Virtual 115855 remote_ip 5.5.5.106 115856 username forozande 115856 mac 115856 bytes_out 298326 115856 bytes_in 1814487 115856 station_ip 37.129.134.137 115856 port 133 115856 unique_id port 115856 remote_ip 10.8.0.74 115862 username mehdizare 115862 mac 115862 bytes_out 11389 115862 bytes_in 16978 115862 station_ip 5.119.126.154 115862 port 51 115862 unique_id port 115862 remote_ip 10.8.1.42 115866 username forozande 115866 mac 115866 bytes_out 662038 115866 bytes_in 7700912 115866 station_ip 83.123.74.172 115866 port 125 115866 unique_id port 115866 remote_ip 10.8.0.74 115872 username mohammadjavad 115872 mac 115872 bytes_out 0 115872 bytes_in 0 115872 station_ip 83.123.163.204 115872 port 133 115872 unique_id port 115872 remote_ip 10.8.0.142 115877 username forozande 115877 mac 115877 bytes_out 775707 115877 bytes_in 7539752 115877 station_ip 37.129.177.181 115877 port 139 115877 unique_id port 115877 remote_ip 10.8.0.74 115878 username amir 115878 mac 115878 bytes_out 1137664 115878 bytes_in 3079044 115878 station_ip 46.225.215.0 115878 port 125 115878 unique_id port 115878 remote_ip 10.8.0.50 115880 username rezaei 115880 mac 115880 bytes_out 0 115880 bytes_in 0 115880 station_ip 5.120.48.140 115880 port 125 115880 unique_id port 115880 remote_ip 10.8.0.206 115883 username jamali 115883 mac 115883 bytes_out 122186 115883 bytes_in 224305 115883 station_ip 5.119.78.70 115883 port 138 115883 unique_id port 115883 remote_ip 10.8.0.150 115885 username houshang 115885 mac 115885 bytes_out 0 115885 bytes_in 0 115885 station_ip 5.119.93.248 115885 port 125 115885 unique_id port 115885 remote_ip 10.8.0.22 115888 username mehdizare 115888 mac 115888 bytes_out 16505 115888 bytes_in 17258 115888 station_ip 5.119.126.154 115888 port 51 115888 unique_id port 115888 remote_ip 10.8.1.42 115889 username tahmasebi 115889 kill_reason Another user logged on this global unique id 115889 mac 115889 bytes_out 0 115889 bytes_in 0 115889 station_ip 5.119.63.197 115889 port 137 115837 remote_ip 10.8.0.194 115840 username forozande 115840 mac 115840 bytes_out 179781 115840 bytes_in 1384935 115840 station_ip 37.129.224.49 115840 port 122 115840 unique_id port 115840 remote_ip 10.8.0.74 115843 username rostami 115843 mac 115843 bytes_out 0 115843 bytes_in 0 115843 station_ip 5.119.125.82 115843 port 122 115843 unique_id port 115843 remote_ip 10.8.0.194 115846 username alireza 115846 unique_id port 115846 terminate_cause Lost-Carrier 115846 bytes_out 1057723 115846 bytes_in 7895365 115846 station_ip 5.119.111.34 115846 port 15729401 115846 nas_port_type Virtual 115846 remote_ip 5.5.5.90 115849 username mehdizare 115849 mac 115849 bytes_out 67379 115849 bytes_in 45169 115849 station_ip 5.119.126.154 115849 port 135 115849 unique_id port 115849 remote_ip 10.8.0.90 115851 username ahmadi 115851 unique_id port 115851 terminate_cause User-Request 115851 bytes_out 30548 115851 bytes_in 264662 115851 station_ip 83.122.40.138 115851 port 15729405 115851 nas_port_type Virtual 115851 remote_ip 5.5.5.38 115854 username amir 115854 kill_reason Another user logged on this global unique id 115854 mac 115854 bytes_out 0 115854 bytes_in 0 115854 station_ip 46.225.215.0 115854 port 52 115854 unique_id port 115857 username mosi 115857 mac 115857 bytes_out 191928 115857 bytes_in 561228 115857 station_ip 151.235.101.217 115857 port 133 115857 unique_id port 115857 remote_ip 10.8.0.138 115858 username kordestani 115858 mac 115858 bytes_out 462739 115858 bytes_in 4021991 115858 station_ip 151.235.91.173 115858 port 125 115858 unique_id port 115858 remote_ip 10.8.0.134 115860 username kordestani 115860 mac 115860 bytes_out 216215 115860 bytes_in 2697055 115860 station_ip 151.235.91.173 115860 port 125 115860 unique_id port 115860 remote_ip 10.8.0.134 115864 username amir 115864 mac 115864 bytes_out 0 115864 bytes_in 0 115864 station_ip 46.225.215.0 115864 port 52 115864 unique_id port 115865 username alipour 115865 mac 115865 bytes_out 0 115865 bytes_in 0 115865 station_ip 37.129.15.154 115865 port 122 115865 unique_id port 115865 remote_ip 10.8.0.102 115868 username tahmasebi 115868 kill_reason Another user logged on this global unique id 115868 mac 115868 bytes_out 0 115868 bytes_in 0 115868 station_ip 5.119.63.197 115868 port 137 115868 unique_id port 115869 username mehdizare 115869 mac 115869 bytes_out 20403 115869 bytes_in 41447 115869 station_ip 5.119.126.154 115869 port 133 115869 unique_id port 115869 remote_ip 10.8.0.90 115871 username jamali 115871 mac 115871 bytes_out 0 115871 bytes_in 0 115871 station_ip 5.119.78.70 115871 port 138 115871 unique_id port 115871 remote_ip 10.8.0.150 115874 username mehdizare 115874 mac 115874 bytes_out 0 115874 bytes_in 0 115874 station_ip 5.119.126.154 115874 port 122 115874 unique_id port 115874 remote_ip 10.8.0.90 115875 username mehdizare 115875 mac 115875 bytes_out 0 115875 bytes_in 0 115875 station_ip 5.119.126.154 115875 port 122 115875 unique_id port 115875 remote_ip 10.8.0.90 115876 username tahmasebi 115894 remote_ip 5.5.5.44 115876 kill_reason Another user logged on this global unique id 115876 mac 115876 bytes_out 0 115876 bytes_in 0 115876 station_ip 5.119.63.197 115876 port 137 115876 unique_id port 115879 username zare 115879 mac 115879 bytes_out 0 115879 bytes_in 0 115879 station_ip 94.183.214.14 115879 port 51 115879 unique_id port 115879 remote_ip 10.8.1.58 115881 username mehdizare 115881 mac 115881 bytes_out 272070 115881 bytes_in 104920 115881 station_ip 5.119.126.154 115881 port 52 115842 remote_ip 10.8.1.42 115844 username amir 115844 kill_reason Another user logged on this global unique id 115844 mac 115844 bytes_out 0 115844 bytes_in 0 115844 station_ip 46.225.215.0 115844 port 52 115844 unique_id port 115844 remote_ip 10.8.1.22 115845 username alipour 115845 mac 115845 bytes_out 0 115845 bytes_in 0 115845 station_ip 37.129.15.154 115845 port 53 115845 unique_id port 115847 username forozande 115847 mac 115847 bytes_out 834037 115847 bytes_in 4953319 115847 station_ip 83.123.232.80 115847 port 133 115847 unique_id port 115847 remote_ip 10.8.0.74 115848 username sedighe 115848 mac 115848 bytes_out 0 115848 bytes_in 0 115848 station_ip 37.129.91.72 115848 port 122 115848 unique_id port 115848 remote_ip 10.8.0.146 115850 username alipour 115850 mac 115850 bytes_out 10257 115850 bytes_in 13177 115850 station_ip 37.129.15.154 115850 port 133 115850 unique_id port 115850 remote_ip 10.8.0.102 115853 username alipour 115853 mac 115853 bytes_out 0 115853 bytes_in 0 115853 station_ip 37.129.15.154 115853 port 135 115853 unique_id port 115853 remote_ip 10.8.0.102 115859 username mehdizare 115859 mac 115859 bytes_out 56060 115859 bytes_in 82839 115859 station_ip 5.119.126.154 115859 port 51 115859 unique_id port 115859 remote_ip 10.8.1.42 115861 username amir 115861 kill_reason Another user logged on this global unique id 115861 mac 115861 bytes_out 0 115861 bytes_in 0 115861 station_ip 46.225.215.0 115861 port 52 115861 unique_id port 115863 username mehdizare 115863 mac 115863 bytes_out 0 115863 bytes_in 0 115863 station_ip 5.119.126.154 115863 port 133 115863 unique_id port 115863 remote_ip 10.8.0.90 115867 username mohammadjavad 115867 mac 115867 bytes_out 51829 115867 bytes_in 56930 115867 station_ip 83.122.127.106 115867 port 135 115867 unique_id port 115867 remote_ip 10.8.0.142 115870 username malekpoir 115870 kill_reason Another user logged on this global unique id 115870 mac 115870 bytes_out 0 115870 bytes_in 0 115870 station_ip 5.120.156.76 115870 port 98 115870 unique_id port 115870 remote_ip 10.8.0.58 115873 username kordestani 115873 mac 115873 bytes_out 365246 115873 bytes_in 4312137 115873 station_ip 151.235.91.173 115873 port 135 115873 unique_id port 115873 remote_ip 10.8.0.134 115882 username tahmasebi 115882 kill_reason Another user logged on this global unique id 115882 mac 115882 bytes_out 0 115882 bytes_in 0 115882 station_ip 5.119.63.197 115882 port 137 115882 unique_id port 115887 username amir 115887 mac 115887 bytes_out 0 115887 bytes_in 0 115887 station_ip 46.225.215.0 115887 port 122 115887 unique_id port 115887 remote_ip 10.8.0.50 115893 username mehdizare 115893 mac 115893 bytes_out 156163 115893 bytes_in 227152 115893 station_ip 5.119.126.154 115893 port 51 115893 unique_id port 115893 remote_ip 10.8.1.42 115894 username shahrooz 115894 unique_id port 115894 terminate_cause Lost-Carrier 115894 bytes_out 749617 115894 bytes_in 3985160 115894 station_ip 37.129.193.248 115894 port 15729406 115894 nas_port_type Virtual 115898 username rostami 115898 mac 115898 bytes_out 286614 115898 bytes_in 264740 115898 station_ip 5.119.125.82 115898 port 135 115898 unique_id port 115898 remote_ip 10.8.0.194 115899 username forozande 115899 mac 115899 bytes_out 86400 115899 bytes_in 195673 115899 station_ip 83.123.190.116 115899 port 138 115899 unique_id port 115899 remote_ip 10.8.0.74 115907 username alipour 115907 mac 115907 bytes_out 0 115907 bytes_in 0 115881 unique_id port 115881 remote_ip 10.8.1.42 115884 username rezaei 115884 mac 115884 bytes_out 409394 115884 bytes_in 6106152 115884 station_ip 5.120.48.140 115884 port 135 115884 unique_id port 115884 remote_ip 10.8.0.206 115886 username alipour 115886 mac 115886 bytes_out 0 115886 bytes_in 0 115886 station_ip 37.129.15.154 115886 port 136 115886 unique_id port 115886 remote_ip 10.8.0.102 115892 username forozande 115892 mac 115892 bytes_out 0 115892 bytes_in 0 115892 station_ip 37.129.66.101 115892 port 133 115892 unique_id port 115896 username kordestani 115896 mac 115896 bytes_out 0 115896 bytes_in 0 115896 station_ip 151.235.91.173 115896 port 135 115896 unique_id port 115896 remote_ip 10.8.0.134 115897 username ehsun 115897 mac 115897 bytes_out 0 115897 bytes_in 0 115897 station_ip 46.225.212.173 115897 port 133 115897 unique_id port 115901 username mehdizare 115901 mac 115901 bytes_out 0 115901 bytes_in 0 115901 station_ip 5.119.126.154 115901 port 52 115901 unique_id port 115901 remote_ip 10.8.1.42 115903 username alipour 115903 mac 115903 bytes_out 0 115903 bytes_in 0 115903 station_ip 37.129.15.154 115903 port 125 115903 unique_id port 115903 remote_ip 10.8.0.102 115904 username mehdizare 115904 mac 115904 bytes_out 0 115904 bytes_in 0 115904 station_ip 5.119.126.154 115904 port 52 115904 unique_id port 115904 remote_ip 10.8.1.42 115905 username mehdizare 115905 mac 115905 bytes_out 0 115905 bytes_in 0 115905 station_ip 5.119.126.154 115905 port 52 115905 unique_id port 115905 remote_ip 10.8.1.42 115906 username rezaei 115906 mac 115906 bytes_out 788360 115906 bytes_in 7711417 115906 station_ip 5.120.48.140 115906 port 125 115906 unique_id port 115906 remote_ip 10.8.0.206 115910 username forozande 115910 mac 115910 bytes_out 1494808 115910 bytes_in 19927621 115910 station_ip 37.129.179.51 115910 port 125 115910 unique_id port 115910 remote_ip 10.8.0.74 115911 username zare 115911 mac 115911 bytes_out 390279 115911 bytes_in 1475593 115911 station_ip 94.183.214.14 115911 port 51 115911 unique_id port 115911 remote_ip 10.8.1.58 115914 username jamali 115914 mac 115914 bytes_out 0 115914 bytes_in 0 115914 station_ip 5.119.78.70 115914 port 125 115914 unique_id port 115914 remote_ip 10.8.0.150 115915 username kordestani 115915 mac 115915 bytes_out 0 115915 bytes_in 0 115915 station_ip 151.235.91.173 115915 port 54 115915 unique_id port 115915 remote_ip 10.8.1.98 115920 username zare 115920 mac 115920 bytes_out 0 115920 bytes_in 0 115920 station_ip 94.183.214.14 115920 port 51 115920 unique_id port 115920 remote_ip 10.8.1.58 115925 username zare 115925 kill_reason Maximum check online fails reached 115925 mac 115925 bytes_out 0 115925 bytes_in 0 115925 station_ip 94.183.214.14 115925 port 135 115925 unique_id port 115929 username musa 115929 mac 115929 bytes_out 1122671 115929 bytes_in 13069923 115929 station_ip 83.122.146.216 115929 port 133 115929 unique_id port 115929 remote_ip 10.8.0.6 115931 username mahdiyehalizadeh 115931 mac 115931 bytes_out 33367 115931 bytes_in 45650 115931 station_ip 83.122.190.129 115931 port 140 115931 unique_id port 115931 remote_ip 10.8.0.82 115932 username mohammadjavad 115932 mac 115932 bytes_out 771823 115932 bytes_in 10006119 115932 station_ip 37.129.112.26 115932 port 144 115932 unique_id port 115932 remote_ip 10.8.0.142 115937 username rostami 115937 kill_reason Another user logged on this global unique id 115889 unique_id port 115890 username forozande 115890 kill_reason Another user logged on this global unique id 115890 mac 115890 bytes_out 0 115890 bytes_in 0 115890 station_ip 37.129.66.101 115890 port 133 115890 unique_id port 115890 remote_ip 10.8.0.74 115891 username kordestani 115891 mac 115891 bytes_out 836765 115891 bytes_in 4919683 115891 station_ip 151.235.91.173 115891 port 135 115891 unique_id port 115891 remote_ip 10.8.0.134 115895 username ehsun 115895 kill_reason Another user logged on this global unique id 115895 mac 115895 bytes_out 0 115895 bytes_in 0 115895 station_ip 46.225.212.173 115895 port 133 115895 unique_id port 115895 remote_ip 10.8.0.162 115900 username mehdizare 115900 mac 115900 bytes_out 0 115900 bytes_in 0 115900 station_ip 5.119.126.154 115900 port 52 115900 unique_id port 115900 remote_ip 10.8.1.42 115902 username zare 115902 mac 115902 bytes_out 0 115902 bytes_in 0 115902 station_ip 94.183.214.14 115902 port 51 115902 unique_id port 115902 remote_ip 10.8.1.58 115908 username musa 115908 mac 115908 bytes_out 92290 115908 bytes_in 187324 115908 station_ip 83.122.146.216 115908 port 133 115908 unique_id port 115908 remote_ip 10.8.0.6 115913 username mehdizare 115913 mac 115913 bytes_out 0 115913 bytes_in 0 115913 station_ip 5.119.126.154 115913 port 52 115913 unique_id port 115913 remote_ip 10.8.1.42 115916 username zare 115916 mac 115916 bytes_out 0 115916 bytes_in 0 115916 station_ip 94.183.214.14 115916 port 51 115916 unique_id port 115916 remote_ip 10.8.1.58 115917 username malekpoir 115917 mac 115917 bytes_out 0 115917 bytes_in 0 115917 station_ip 5.120.156.76 115917 port 98 115917 unique_id port 115922 username mehdizare 115922 mac 115922 bytes_out 200876 115922 bytes_in 372189 115922 station_ip 5.119.126.154 115922 port 138 115922 unique_id port 115922 remote_ip 10.8.0.90 115923 username mehdizare 115923 mac 115923 bytes_out 0 115923 bytes_in 0 115923 station_ip 5.119.126.154 115923 port 51 115923 unique_id port 115923 remote_ip 10.8.1.42 115926 username mehdizare 115926 mac 115926 bytes_out 0 115926 bytes_in 0 115926 station_ip 5.119.126.154 115926 port 51 115926 unique_id port 115926 remote_ip 10.8.1.42 115928 username zare 115928 mac 115928 bytes_out 0 115928 bytes_in 0 115928 station_ip 94.183.214.14 115928 port 140 115928 unique_id port 115928 remote_ip 10.8.0.18 115934 username avaanna 115934 mac 115934 bytes_out 1744228 115934 bytes_in 28093973 115934 station_ip 83.123.36.87 115934 port 98 115934 unique_id port 115934 remote_ip 10.8.0.98 115935 username mehdizare 115935 mac 115935 bytes_out 1124497 115935 bytes_in 23204174 115935 station_ip 5.119.126.154 115935 port 138 115935 unique_id port 115935 remote_ip 10.8.0.90 115936 username forozande 115936 mac 115936 bytes_out 520215 115936 bytes_in 3977599 115936 station_ip 83.122.240.220 115936 port 143 115936 unique_id port 115936 remote_ip 10.8.0.74 115939 username mahdiyehalizadeh 115939 mac 115939 bytes_out 0 115939 bytes_in 0 115939 station_ip 83.122.213.141 115939 port 142 115939 unique_id port 115939 remote_ip 10.8.0.82 115943 username avaanna 115943 mac 115943 bytes_out 0 115943 bytes_in 0 115943 station_ip 83.123.36.87 115943 port 140 115943 unique_id port 115943 remote_ip 10.8.0.98 115944 username rezaei 115944 kill_reason Another user logged on this global unique id 115944 mac 115944 bytes_out 0 115944 bytes_in 0 115944 station_ip 5.120.48.140 115944 port 142 115944 unique_id port 115907 station_ip 37.129.15.154 115907 port 53 115907 unique_id port 115907 remote_ip 10.8.1.50 115909 username mirzaei 115909 kill_reason Another user logged on this global unique id 115909 mac 115909 bytes_out 0 115909 bytes_in 0 115909 station_ip 5.120.124.3 115909 port 50 115909 unique_id port 115912 username jamali 115912 mac 115912 bytes_out 406090 115912 bytes_in 1685439 115912 station_ip 5.119.78.70 115912 port 139 115912 unique_id port 115912 remote_ip 10.8.0.150 115918 username alipour 115918 mac 115918 bytes_out 88205 115918 bytes_in 269621 115918 station_ip 37.129.15.154 115918 port 135 115918 unique_id port 115918 remote_ip 10.8.0.102 115919 username zare 115919 mac 115919 bytes_out 0 115919 bytes_in 0 115919 station_ip 94.183.214.14 115919 port 51 115919 unique_id port 115919 remote_ip 10.8.1.58 115921 username zare 115921 mac 115921 bytes_out 13866 115921 bytes_in 26742 115921 station_ip 94.183.214.14 115921 port 135 115921 unique_id port 115921 remote_ip 10.8.0.18 115924 username forozande 115924 mac 115924 bytes_out 1088082 115924 bytes_in 12806173 115924 station_ip 113.203.89.207 115924 port 140 115924 unique_id port 115924 remote_ip 10.8.0.74 115927 username jamali 115927 mac 115927 bytes_out 206394 115927 bytes_in 172083 115927 station_ip 5.119.78.70 115927 port 139 115927 unique_id port 115927 remote_ip 10.8.0.150 115930 username zare 115930 mac 115930 bytes_out 0 115930 bytes_in 0 115930 station_ip 94.183.214.14 115930 port 142 115930 unique_id port 115930 remote_ip 10.8.0.18 115933 username alipour 115933 mac 115933 bytes_out 0 115933 bytes_in 0 115933 station_ip 37.129.15.154 115933 port 52 115933 unique_id port 115933 remote_ip 10.8.1.50 115938 username jamali 115938 mac 115938 bytes_out 129520 115938 bytes_in 275516 115938 station_ip 5.119.78.70 115938 port 139 115938 unique_id port 115938 remote_ip 10.8.0.150 115947 username mehdizare 115947 mac 115947 bytes_out 0 115947 bytes_in 0 115947 station_ip 5.119.126.154 115947 port 140 115947 unique_id port 115947 remote_ip 10.8.0.90 115954 username ahmadi 115954 unique_id port 115954 terminate_cause User-Request 115954 bytes_out 421171 115954 bytes_in 3220590 115954 station_ip 83.122.20.118 115954 port 15729407 115954 nas_port_type Virtual 115954 remote_ip 5.5.5.70 115956 username mehdizare 115956 mac 115956 bytes_out 45080 115956 bytes_in 65722 115956 station_ip 5.119.126.154 115956 port 98 115956 unique_id port 115956 remote_ip 10.8.0.90 115958 username malekpoir 115958 mac 115958 bytes_out 0 115958 bytes_in 0 115958 station_ip 5.120.156.76 115958 port 141 115958 unique_id port 115958 remote_ip 10.8.0.58 115963 username amir 115963 kill_reason Another user logged on this global unique id 115963 mac 115963 bytes_out 0 115963 bytes_in 0 115963 station_ip 46.225.215.0 115963 port 122 115963 unique_id port 115963 remote_ip 10.8.0.50 115968 username rezaei 115968 mac 115968 bytes_out 0 115968 bytes_in 0 115968 station_ip 5.120.48.140 115968 port 142 115968 unique_id port 115969 username forozande 115969 mac 115969 bytes_out 0 115969 bytes_in 0 115969 station_ip 37.129.200.138 115969 port 139 115969 unique_id port 115969 remote_ip 10.8.0.74 115973 username mehdizare 115973 mac 115973 bytes_out 62971 115973 bytes_in 99011 115973 station_ip 5.119.126.154 115973 port 51 115973 unique_id port 115973 remote_ip 10.8.1.42 115975 username sabaghnezhad 115975 mac 115975 bytes_out 19490 115975 bytes_in 39662 115937 mac 115937 bytes_out 0 115937 bytes_in 0 115937 station_ip 5.119.125.82 115937 port 125 115937 unique_id port 115937 remote_ip 10.8.0.194 115940 username rostami 115940 kill_reason Another user logged on this global unique id 115940 mac 115940 bytes_out 0 115940 bytes_in 0 115940 station_ip 5.119.125.82 115940 port 125 115940 unique_id port 115941 username mirzaei 115941 kill_reason Another user logged on this global unique id 115941 mac 115941 bytes_out 0 115941 bytes_in 0 115941 station_ip 5.120.124.3 115941 port 50 115941 unique_id port 115942 username alihosseini1 115942 mac 115942 bytes_out 0 115942 bytes_in 0 115942 station_ip 5.119.138.214 115942 port 143 115942 unique_id port 115942 remote_ip 10.8.0.166 115945 username mehdizare 115945 mac 115945 bytes_out 179347 115945 bytes_in 139449 115945 station_ip 5.119.126.154 115945 port 98 115945 unique_id port 115945 remote_ip 10.8.0.90 115949 username forozande 115949 mac 115949 bytes_out 2405699 115949 bytes_in 41924671 115949 station_ip 37.129.85.255 115949 port 144 115949 unique_id port 115949 remote_ip 10.8.0.74 115950 username rostami 115950 mac 115950 bytes_out 0 115950 bytes_in 0 115950 station_ip 5.119.125.82 115950 port 125 115950 unique_id port 115951 username mehdizare 115951 mac 115951 bytes_out 9382 115951 bytes_in 13083 115951 station_ip 5.119.126.154 115951 port 140 115951 unique_id port 115951 remote_ip 10.8.0.90 115952 username rezaei 115952 kill_reason Another user logged on this global unique id 115952 mac 115952 bytes_out 0 115952 bytes_in 0 115952 station_ip 5.120.48.140 115952 port 142 115952 unique_id port 115953 username rostami 115953 mac 115953 bytes_out 0 115953 bytes_in 0 115953 station_ip 5.119.125.82 115953 port 140 115953 unique_id port 115953 remote_ip 10.8.0.194 115955 username mohammadjavad 115955 mac 115955 bytes_out 0 115955 bytes_in 0 115955 station_ip 37.129.162.19 115955 port 125 115955 unique_id port 115955 remote_ip 10.8.0.142 115957 username irannezhad 115957 mac 115957 bytes_out 0 115957 bytes_in 0 115957 station_ip 37.129.64.33 115957 port 98 115957 unique_id port 115957 remote_ip 10.8.0.182 115959 username mehdizare 115959 mac 115959 bytes_out 9318 115959 bytes_in 13889 115959 station_ip 5.119.126.154 115959 port 125 115959 unique_id port 115959 remote_ip 10.8.0.90 115961 username rasoul56 115961 kill_reason Another user logged on this global unique id 115961 mac 115961 bytes_out 0 115961 bytes_in 0 115961 station_ip 83.122.197.79 115961 port 138 115961 unique_id port 115961 remote_ip 10.8.0.174 115962 username rasoul56 115962 mac 115962 bytes_out 0 115962 bytes_in 0 115962 station_ip 83.122.197.79 115962 port 138 115962 unique_id port 115964 username jamali 115964 mac 115964 bytes_out 0 115964 bytes_in 0 115964 station_ip 5.119.78.70 115964 port 139 115964 unique_id port 115964 remote_ip 10.8.0.150 115966 username rostami 115966 kill_reason Another user logged on this global unique id 115966 mac 115966 bytes_out 0 115966 bytes_in 0 115966 station_ip 5.119.125.82 115966 port 98 115966 unique_id port 115966 remote_ip 10.8.0.194 115971 username rostami 115971 mac 115971 bytes_out 0 115971 bytes_in 0 115971 station_ip 5.119.125.82 115971 port 98 115971 unique_id port 115974 username sabaghnezhad 115974 mac 115974 bytes_out 0 115974 bytes_in 0 115974 station_ip 113.203.114.142 115974 port 125 115974 unique_id port 115974 remote_ip 10.8.0.186 115978 username forozande 115978 mac 115944 remote_ip 10.8.0.206 115946 username rostami 115946 kill_reason Another user logged on this global unique id 115946 mac 115946 bytes_out 0 115946 bytes_in 0 115946 station_ip 5.119.125.82 115946 port 125 115946 unique_id port 115948 username mehdizare 115948 mac 115948 bytes_out 0 115948 bytes_in 0 115948 station_ip 5.119.126.154 115948 port 98 115948 unique_id port 115948 remote_ip 10.8.0.90 115960 username avaanna 115960 mac 115960 bytes_out 73171 115960 bytes_in 121736 115960 station_ip 83.123.36.87 115960 port 51 115960 unique_id port 115960 remote_ip 10.8.1.46 115965 username mehdizare 115965 mac 115965 bytes_out 123084 115965 bytes_in 120793 115965 station_ip 5.119.126.154 115965 port 51 115965 unique_id port 115965 remote_ip 10.8.1.42 115967 username avaanna 115967 mac 115967 bytes_out 1685572 115967 bytes_in 10668999 115967 station_ip 83.123.36.87 115967 port 125 115967 unique_id port 115967 remote_ip 10.8.0.98 115970 username amirabbas 115970 unique_id port 115970 terminate_cause User-Request 115970 bytes_out 10530535 115970 bytes_in 274856050 115970 station_ip 37.27.58.182 115970 port 15729408 115970 nas_port_type Virtual 115970 remote_ip 5.5.5.76 115972 username amir 115972 mac 115972 bytes_out 0 115972 bytes_in 0 115972 station_ip 46.225.215.0 115972 port 122 115972 unique_id port 115976 username farhad1 115976 mac 115976 bytes_out 0 115976 bytes_in 0 115976 station_ip 5.119.45.95 115976 port 98 115976 unique_id port 115976 remote_ip 10.8.0.26 115977 username arabpour 115977 unique_id port 115977 terminate_cause User-Request 115977 bytes_out 0 115977 bytes_in 0 115977 station_ip 5.250.89.10 115977 port 15729414 115977 nas_port_type Virtual 115977 remote_ip 5.5.5.255 115980 username mostafa_es78 115980 unique_id port 115980 terminate_cause User-Request 115980 bytes_out 475836 115980 bytes_in 5970798 115980 station_ip 178.236.35.96 115980 port 15729410 115980 nas_port_type Virtual 115980 remote_ip 5.5.5.83 115982 username mostafa_es78 115982 unique_id port 115982 terminate_cause Lost-Carrier 115982 bytes_out 26975 115982 bytes_in 127623 115982 station_ip 178.236.35.96 115982 port 15729409 115982 nas_port_type Virtual 115982 remote_ip 5.5.5.81 115984 username jamali 115984 mac 115984 bytes_out 6471313 115984 bytes_in 33960172 115984 station_ip 5.119.78.70 115984 port 138 115984 unique_id port 115984 remote_ip 10.8.0.150 115987 username arabpour 115987 unique_id port 115987 terminate_cause User-Request 115987 bytes_out 328 115987 bytes_in 270 115987 station_ip 5.250.89.10 115987 port 15729418 115987 nas_port_type Virtual 115987 remote_ip 5.5.5.41 115991 username mehdizare 115991 mac 115991 bytes_out 0 115991 bytes_in 0 115991 station_ip 5.119.126.154 115991 port 51 115991 unique_id port 115991 remote_ip 10.8.1.42 115994 username aminvpn 115994 unique_id port 115994 terminate_cause Lost-Carrier 115994 bytes_out 437965 115994 bytes_in 3211774 115994 station_ip 5.125.72.41 115994 port 15729419 115994 nas_port_type Virtual 115994 remote_ip 5.5.5.50 115998 username sabaghnezhad 115998 mac 115998 bytes_out 146767 115998 bytes_in 165442 115998 station_ip 113.203.114.142 115998 port 98 115998 unique_id port 115998 remote_ip 10.8.0.186 116001 username mehdizare 116001 mac 116001 bytes_out 67008 116001 bytes_in 522131 116001 station_ip 5.119.126.154 116001 port 125 116001 unique_id port 116001 remote_ip 10.8.0.90 116007 username avaanna 116007 mac 116007 bytes_out 0 116007 bytes_in 0 116007 station_ip 83.123.36.87 116007 port 140 116007 unique_id port 116007 remote_ip 10.8.0.98 115975 station_ip 113.203.114.142 115975 port 122 115975 unique_id port 115975 remote_ip 10.8.0.186 115981 username mehdizare 115981 mac 115981 bytes_out 20757 115981 bytes_in 26259 115981 station_ip 5.119.126.154 115981 port 125 115981 unique_id port 115981 remote_ip 10.8.0.90 115983 username amir 115983 mac 115983 bytes_out 126371 115983 bytes_in 692917 115983 station_ip 46.225.215.0 115983 port 141 115983 unique_id port 115983 remote_ip 10.8.0.50 115985 username arabpour 115985 unique_id port 115985 terminate_cause User-Request 115985 bytes_out 0 115985 bytes_in 0 115985 station_ip 5.250.89.10 115985 port 15729417 115985 nas_port_type Virtual 115985 remote_ip 5.5.5.40 115986 username mehdizare 115986 mac 115986 bytes_out 0 115986 bytes_in 0 115986 station_ip 5.119.126.154 115986 port 51 115986 unique_id port 115986 remote_ip 10.8.1.42 115989 username aminvpn 115989 unique_id port 115989 terminate_cause Lost-Carrier 115989 bytes_out 2271516 115989 bytes_in 44187003 115989 station_ip 5.125.72.41 115989 port 15729411 115989 nas_port_type Virtual 115989 remote_ip 5.5.5.98 115990 username forozande 115990 mac 115990 bytes_out 0 115990 bytes_in 0 115990 station_ip 83.123.32.75 115990 port 125 115990 unique_id port 115990 remote_ip 10.8.0.74 115993 username forozande 115993 mac 115993 bytes_out 0 115993 bytes_in 0 115993 station_ip 83.123.62.155 115993 port 138 115993 unique_id port 115993 remote_ip 10.8.0.74 115995 username jamali 115995 mac 115995 bytes_out 0 115995 bytes_in 0 115995 station_ip 5.119.78.70 115995 port 122 115995 unique_id port 115995 remote_ip 10.8.0.150 115997 username aminvpn 115997 unique_id port 115997 terminate_cause User-Request 115997 bytes_out 1084524 115997 bytes_in 23366450 115997 station_ip 37.129.22.35 115997 port 15729416 115997 nas_port_type Virtual 115997 remote_ip 5.5.5.37 116000 username aminvpn 116000 unique_id port 116000 terminate_cause Lost-Carrier 116000 bytes_out 175836 116000 bytes_in 904792 116000 station_ip 5.119.137.196 116000 port 15729420 116000 nas_port_type Virtual 116000 remote_ip 5.5.5.53 116002 username amir 116002 mac 116002 bytes_out 2850086 116002 bytes_in 26074918 116002 station_ip 46.225.215.0 116002 port 139 116002 unique_id port 116002 remote_ip 10.8.0.50 116003 username forozande 116003 mac 116003 bytes_out 552707 116003 bytes_in 13903795 116003 station_ip 113.203.50.191 116003 port 125 116003 unique_id port 116003 remote_ip 10.8.0.74 116006 username amin.saeedi 116006 unique_id port 116006 terminate_cause User-Request 116006 bytes_out 3933298 116006 bytes_in 103619984 116006 station_ip 31.56.155.237 116006 port 15729421 116006 nas_port_type Virtual 116006 remote_ip 5.5.5.55 116015 username amir 116015 mac 116015 bytes_out 0 116015 bytes_in 0 116015 station_ip 46.225.215.0 116015 port 125 116015 unique_id port 116015 remote_ip 10.8.0.50 116016 username amir 116016 mac 116016 bytes_out 32558 116016 bytes_in 158579 116016 station_ip 46.225.215.0 116016 port 125 116016 unique_id port 116016 remote_ip 10.8.0.50 116018 username jamali 116029 mac 116018 kill_reason Another user logged on this global unique id 116018 mac 116018 bytes_out 0 116018 bytes_in 0 116018 station_ip 5.119.78.70 116018 port 138 116018 unique_id port 116018 remote_ip 10.8.0.150 116022 username jamali 116022 kill_reason Another user logged on this global unique id 116022 mac 116022 bytes_out 0 116022 bytes_in 0 116022 station_ip 5.119.78.70 116022 port 138 116022 unique_id port 116024 username amir 116024 mac 116024 bytes_out 54304 116024 bytes_in 424139 115978 bytes_out 556026 115978 bytes_in 6806385 115978 station_ip 37.129.58.219 115978 port 139 115978 unique_id port 115978 remote_ip 10.8.0.74 115979 username arabpour 115979 unique_id port 115979 terminate_cause User-Request 115979 bytes_out 0 115979 bytes_in 0 115979 station_ip 5.250.89.10 115979 port 15729415 115979 nas_port_type Virtual 115979 remote_ip 5.5.5.255 115988 username mehdizare 115988 mac 115988 bytes_out 0 115988 bytes_in 0 115988 station_ip 5.119.126.154 115988 port 51 115988 unique_id port 115988 remote_ip 10.8.1.42 115992 username tahmasebi 115992 kill_reason Another user logged on this global unique id 115992 mac 115992 bytes_out 0 115992 bytes_in 0 115992 station_ip 5.119.63.197 115992 port 137 115992 unique_id port 115996 username musa 115996 kill_reason Another user logged on this global unique id 115996 mac 115996 bytes_out 0 115996 bytes_in 0 115996 station_ip 83.122.146.216 115996 port 133 115996 unique_id port 115996 remote_ip 10.8.0.6 115999 username mehdizare 115999 mac 115999 bytes_out 0 115999 bytes_in 0 115999 station_ip 5.119.126.154 115999 port 125 115999 unique_id port 115999 remote_ip 10.8.0.90 116004 username zare 116004 mac 116004 bytes_out 0 116004 bytes_in 0 116004 station_ip 94.183.214.14 116004 port 141 116004 unique_id port 116004 remote_ip 10.8.0.18 116005 username zare 116005 mac 116005 bytes_out 0 116005 bytes_in 0 116005 station_ip 94.183.214.14 116005 port 141 116005 unique_id port 116005 remote_ip 10.8.0.18 116008 username amir 116008 mac 116008 bytes_out 93703 116008 bytes_in 262204 116008 station_ip 46.225.215.0 116008 port 139 116008 unique_id port 116008 remote_ip 10.8.0.50 116009 username farhad1 116009 mac 116009 bytes_out 0 116009 bytes_in 0 116009 station_ip 5.119.45.95 116009 port 122 116009 unique_id port 116009 remote_ip 10.8.0.26 116011 username amin.saeedi 116011 unique_id port 116011 terminate_cause User-Request 116011 bytes_out 1148522 116011 bytes_in 33078181 116011 station_ip 31.56.155.237 116011 port 15729422 116011 nas_port_type Virtual 116011 remote_ip 5.5.5.56 116013 username sedighe 116013 mac 116013 bytes_out 123618 116013 bytes_in 410953 116013 station_ip 83.122.147.168 116013 port 125 116013 unique_id port 116013 remote_ip 10.8.0.146 116019 username jamali 116019 kill_reason Another user logged on this global unique id 116019 mac 116019 bytes_out 0 116019 bytes_in 0 116019 station_ip 5.119.78.70 116019 port 138 116019 unique_id port 116020 username zare 116020 mac 116020 bytes_out 0 116020 bytes_in 0 116020 station_ip 94.183.214.14 116020 port 125 116020 unique_id port 116020 remote_ip 10.8.0.18 116021 username jamali 116021 kill_reason Another user logged on this global unique id 116021 mac 116021 bytes_out 0 116021 bytes_in 0 116021 station_ip 5.119.78.70 116021 port 138 116021 unique_id port 116023 username jamali 116023 kill_reason Another user logged on this global unique id 116023 mac 116023 bytes_out 0 116023 bytes_in 0 116023 station_ip 5.119.78.70 116023 port 138 116023 unique_id port 116029 username sedighe 116029 bytes_out 0 116029 bytes_in 0 116029 station_ip 37.129.38.212 116029 port 139 116029 unique_id port 116029 remote_ip 10.8.0.146 116031 username ahmadipour 116031 kill_reason Maximum check online fails reached 116031 unique_id port 116031 bytes_out 986935 116031 bytes_in 22624468 116031 station_ip 37.129.21.38 116031 port 15729426 116031 nas_port_type Virtual 116031 remote_ip 5.5.5.61 116035 username afarin1 116035 mac 116035 bytes_out 261230 116035 bytes_in 783185 116010 username zare 116010 mac 116010 bytes_out 0 116010 bytes_in 0 116010 station_ip 94.183.214.14 116010 port 139 116010 unique_id port 116010 remote_ip 10.8.0.18 116012 username forozande 116012 mac 116012 bytes_out 415117 116012 bytes_in 4290124 116012 station_ip 83.123.154.129 116012 port 143 116012 unique_id port 116012 remote_ip 10.8.0.74 116014 username amir 116014 mac 116014 bytes_out 0 116014 bytes_in 0 116014 station_ip 46.225.215.0 116014 port 140 116014 unique_id port 116014 remote_ip 10.8.0.50 116017 username alihosseini1 116017 mac 116017 bytes_out 121148 116017 bytes_in 1113080 116017 station_ip 5.119.113.16 116017 port 54 116017 unique_id port 116017 remote_ip 10.8.1.106 116026 username amin.saeedi 116026 unique_id port 116026 terminate_cause User-Request 116026 bytes_out 121432 116026 bytes_in 221714 116026 station_ip 31.56.155.237 116026 port 15729425 116026 nas_port_type Virtual 116026 remote_ip 5.5.5.59 116028 username farhad1 116028 mac 116028 bytes_out 0 116028 bytes_in 0 116028 station_ip 5.120.75.104 116028 port 122 116028 unique_id port 116028 remote_ip 10.8.0.26 116033 username forozande 116033 kill_reason Another user logged on this global unique id 116033 mac 116033 bytes_out 0 116033 bytes_in 0 116033 station_ip 37.129.98.252 116033 port 98 116033 unique_id port 116033 remote_ip 10.8.0.74 116038 username jamali 116038 mac 116038 bytes_out 0 116038 bytes_in 0 116038 station_ip 5.119.78.70 116038 port 138 116038 unique_id port 116040 username zare 116040 mac 116040 bytes_out 0 116040 bytes_in 0 116040 station_ip 94.183.214.14 116040 port 143 116040 unique_id port 116040 remote_ip 10.8.0.18 116042 username amir 116042 mac 116042 bytes_out 111782 116042 bytes_in 471278 116042 station_ip 46.225.215.0 116042 port 139 116042 unique_id port 116042 remote_ip 10.8.0.50 116046 username forozande 116046 mac 116046 bytes_out 0 116046 bytes_in 0 116046 station_ip 113.203.76.213 116046 port 98 116046 unique_id port 116046 remote_ip 10.8.0.74 116055 username aminvpn 116055 mac 116055 bytes_out 273099 116055 bytes_in 861523 116055 station_ip 83.123.59.139 116055 port 140 116055 unique_id port 116055 remote_ip 10.8.0.14 116056 username amirabbas 116056 unique_id port 116056 terminate_cause User-Request 116056 bytes_out 8214737 116056 bytes_in 213639226 116056 station_ip 37.27.58.182 116056 port 15729424 116056 nas_port_type Virtual 116056 remote_ip 5.5.5.58 116059 username forozande 116059 mac 116059 bytes_out 534267 116059 bytes_in 4608074 116059 station_ip 113.203.4.99 116059 port 122 116059 unique_id port 116059 remote_ip 10.8.0.74 116061 username tahmasebi 116061 kill_reason Another user logged on this global unique id 116061 mac 116061 bytes_out 0 116061 bytes_in 0 116061 station_ip 5.119.63.197 116061 port 137 116061 unique_id port 116062 username aminvpn 116062 mac 116062 bytes_out 180897 116062 bytes_in 547664 116062 station_ip 83.123.59.139 116062 port 98 116062 unique_id port 116062 remote_ip 10.8.0.14 116069 username sedighe 116069 mac 116069 bytes_out 0 116069 bytes_in 0 116069 station_ip 37.129.38.212 116069 port 139 116069 unique_id port 116069 remote_ip 10.8.0.146 116070 username amir 116070 mac 116070 bytes_out 0 116070 bytes_in 0 116070 station_ip 46.225.215.0 116070 port 125 116070 unique_id port 116073 username alipour 116073 mac 116073 bytes_out 0 116073 bytes_in 0 116073 station_ip 83.123.164.214 116073 port 53 116073 unique_id port 116073 remote_ip 10.8.1.50 116024 station_ip 46.225.215.0 116024 port 140 116024 unique_id port 116024 remote_ip 10.8.0.50 116025 username sabaghnezhad 116025 mac 116025 bytes_out 0 116025 bytes_in 0 116025 station_ip 113.203.114.142 116025 port 98 116025 unique_id port 116025 remote_ip 10.8.0.186 116027 username sedighe 116027 mac 116027 bytes_out 0 116027 bytes_in 0 116027 station_ip 37.129.38.212 116027 port 139 116027 unique_id port 116027 remote_ip 10.8.0.146 116030 username amir 116030 mac 116030 bytes_out 0 116030 bytes_in 0 116030 station_ip 46.225.215.0 116030 port 141 116030 unique_id port 116030 remote_ip 10.8.0.50 116032 username zare 116032 mac 116032 bytes_out 0 116032 bytes_in 0 116032 station_ip 94.183.214.14 116032 port 125 116032 unique_id port 116032 remote_ip 10.8.0.18 116034 username amir 116034 mac 116034 bytes_out 51756 116034 bytes_in 430718 116034 station_ip 46.225.215.0 116034 port 125 116034 unique_id port 116034 remote_ip 10.8.0.50 116037 username ehsun 116037 mac 116037 bytes_out 675424 116037 bytes_in 8511519 116037 station_ip 46.225.208.208 116037 port 125 116037 unique_id port 116037 remote_ip 10.8.0.162 116041 username forozande 116041 mac 116041 bytes_out 0 116041 bytes_in 0 116041 station_ip 37.129.98.252 116041 port 98 116041 unique_id port 116044 username zare 116044 mac 116044 bytes_out 14974 116044 bytes_in 18181 116044 station_ip 94.183.214.14 116044 port 141 116044 unique_id port 116044 remote_ip 10.8.0.18 116047 username ehsun 116047 mac 116047 bytes_out 0 116047 bytes_in 0 116047 station_ip 46.225.208.208 116047 port 125 116047 unique_id port 116047 remote_ip 10.8.0.162 116049 username farhad1 116049 kill_reason Another user logged on this global unique id 116049 mac 116049 bytes_out 0 116049 bytes_in 0 116049 station_ip 5.119.202.29 116049 port 122 116049 unique_id port 116049 remote_ip 10.8.0.26 116054 username farhad1 116054 mac 116054 bytes_out 0 116054 bytes_in 0 116054 station_ip 5.119.202.29 116054 port 122 116054 unique_id port 116057 username rasoul56 116057 mac 116057 bytes_out 126380 116057 bytes_in 71309 116057 station_ip 37.129.153.235 116057 port 141 116057 unique_id port 116057 remote_ip 10.8.0.174 116058 username mehdizare 116058 mac 116058 bytes_out 230748 116058 bytes_in 245928 116058 station_ip 5.119.127.238 116058 port 142 116058 unique_id port 116058 remote_ip 10.8.0.90 116060 username afarin1 116060 mac 116060 bytes_out 0 116060 bytes_in 0 116060 station_ip 83.122.168.231 116060 port 138 116060 unique_id port 116065 username hamid.e 116065 unique_id port 116065 terminate_cause User-Request 116065 bytes_out 986286 116065 bytes_in 10400613 116065 station_ip 188.245.91.197 116065 port 15729428 116065 nas_port_type Virtual 116065 remote_ip 5.5.5.68 116066 username amir 116066 kill_reason Another user logged on this global unique id 116066 mac 116066 bytes_out 0 116066 bytes_in 0 116066 station_ip 46.225.215.0 116066 port 125 116066 unique_id port 116066 remote_ip 10.8.0.50 116067 username ahmadi 116067 unique_id port 116067 terminate_cause User-Request 116067 bytes_out 53679 116067 bytes_in 454275 116067 station_ip 83.122.99.22 116067 port 15729430 116067 nas_port_type Virtual 116067 remote_ip 5.5.5.92 116072 username amir 116072 mac 116072 bytes_out 0 116072 bytes_in 0 116072 station_ip 46.225.215.0 116072 port 139 116072 unique_id port 116072 remote_ip 10.8.0.50 116078 username sabaghnezhad 116078 mac 116078 bytes_out 1435372 116078 bytes_in 23801599 116035 station_ip 83.122.168.231 116035 port 139 116035 unique_id port 116035 remote_ip 10.8.0.118 116036 username afarin1 116036 mac 116036 bytes_out 4712 116036 bytes_in 7156 116036 station_ip 83.122.168.231 116036 port 141 116036 unique_id port 116036 remote_ip 10.8.0.118 116039 username afarin1 116039 mac 116039 bytes_out 47530 116039 bytes_in 406693 116039 station_ip 83.122.168.231 116039 port 144 116039 unique_id port 116039 remote_ip 10.8.0.118 116043 username sabaghnezhad 116043 mac 116043 bytes_out 366052 116043 bytes_in 2354474 116043 station_ip 113.203.114.142 116043 port 140 116043 unique_id port 116043 remote_ip 10.8.0.186 116045 username amir 116045 mac 116045 bytes_out 0 116045 bytes_in 0 116045 station_ip 46.225.215.0 116045 port 140 116045 unique_id port 116045 remote_ip 10.8.0.50 116048 username kordestani 116048 mac 116048 bytes_out 0 116048 bytes_in 0 116048 station_ip 113.203.27.207 116048 port 51 116048 unique_id port 116048 remote_ip 10.8.1.98 116050 username afarin1 116050 kill_reason Another user logged on this global unique id 116050 mac 116050 bytes_out 0 116050 bytes_in 0 116050 station_ip 83.122.168.231 116050 port 138 116050 unique_id port 116050 remote_ip 10.8.0.118 116051 username malekpoir 116051 mac 116051 bytes_out 0 116051 bytes_in 0 116051 station_ip 5.120.156.76 116051 port 52 116051 unique_id port 116051 remote_ip 10.8.1.54 116052 username zare 116052 mac 116052 bytes_out 28206 116052 bytes_in 104745 116052 station_ip 94.183.214.14 116052 port 125 116052 unique_id port 116052 remote_ip 10.8.0.18 116053 username amir 116053 mac 116053 bytes_out 1409853 116053 bytes_in 14020852 116053 station_ip 46.225.215.0 116053 port 98 116053 unique_id port 116053 remote_ip 10.8.0.50 116063 username alirr 116063 unique_id port 116063 terminate_cause Lost-Carrier 116063 bytes_out 227340 116063 bytes_in 999757 116063 station_ip 5.120.55.33 116063 port 15729427 116063 nas_port_type Virtual 116063 remote_ip 5.5.5.63 116064 username mirzaei 116064 mac 116064 bytes_out 0 116064 bytes_in 0 116064 station_ip 5.120.124.3 116064 port 50 116064 unique_id port 116068 username musa 116068 kill_reason Another user logged on this global unique id 116068 mac 116068 bytes_out 0 116068 bytes_in 0 116068 station_ip 83.122.146.216 116068 port 133 116068 unique_id port 116071 username alirr 116071 unique_id port 116071 terminate_cause User-Request 116071 bytes_out 622099 116071 bytes_in 4035650 116071 station_ip 5.119.152.13 116071 port 15729429 116071 nas_port_type Virtual 116071 remote_ip 5.5.5.72 116076 username sedighe 116076 mac 116076 bytes_out 91452 116076 bytes_in 143616 116076 station_ip 37.129.38.212 116076 port 98 116076 unique_id port 116076 remote_ip 10.8.0.146 116081 username alirr 116081 unique_id port 116081 terminate_cause Lost-Carrier 116081 bytes_out 307537 116081 bytes_in 2194927 116081 station_ip 5.119.152.13 116081 port 15729431 116081 nas_port_type Virtual 116081 remote_ip 5.5.5.93 116086 username aminvpn 116086 mac 116086 bytes_out 0 116086 bytes_in 0 116086 station_ip 83.123.59.139 116086 port 125 116086 unique_id port 116086 remote_ip 10.8.0.14 116089 username kordestani 116089 mac 116089 bytes_out 0 116089 bytes_in 0 116089 station_ip 151.235.98.169 116089 port 139 116089 unique_id port 116089 remote_ip 10.8.0.134 116093 username amir 116093 mac 116093 bytes_out 78496 116093 bytes_in 535732 116093 station_ip 46.225.215.0 116093 port 139 116093 unique_id port 116093 remote_ip 10.8.0.50 116074 username amir 116074 mac 116074 bytes_out 0 116074 bytes_in 0 116074 station_ip 46.225.215.0 116074 port 139 116074 unique_id port 116074 remote_ip 10.8.0.50 116075 username aminvpn 116075 mac 116075 bytes_out 2051343 116075 bytes_in 27589880 116075 station_ip 83.123.59.139 116075 port 125 116075 unique_id port 116075 remote_ip 10.8.0.14 116077 username amir 116077 mac 116077 bytes_out 27013 116077 bytes_in 86299 116077 station_ip 46.225.215.0 116077 port 139 116077 unique_id port 116077 remote_ip 10.8.0.50 116079 username rezasekonji 116079 mac 116079 bytes_out 0 116079 bytes_in 0 116079 station_ip 37.129.82.99 116079 port 139 116079 unique_id port 116079 remote_ip 10.8.0.130 116082 username sedighe 116082 mac 116082 bytes_out 0 116082 bytes_in 0 116082 station_ip 37.129.38.212 116082 port 125 116082 unique_id port 116082 remote_ip 10.8.0.146 116083 username mohammadjavad 116083 mac 116083 bytes_out 0 116083 bytes_in 0 116083 station_ip 83.122.180.92 116083 port 138 116083 unique_id port 116083 remote_ip 10.8.0.142 116084 username mehdizare 116084 mac 116084 bytes_out 0 116084 bytes_in 0 116084 station_ip 5.119.127.238 116084 port 122 116084 unique_id port 116084 remote_ip 10.8.0.90 116088 username aminvpn 116088 mac 116088 bytes_out 0 116088 bytes_in 0 116088 station_ip 83.123.59.139 116088 port 140 116088 unique_id port 116088 remote_ip 10.8.0.14 116091 username sabaghnezhad 116091 kill_reason Another user logged on this global unique id 116091 mac 116091 bytes_out 0 116091 bytes_in 0 116091 station_ip 113.203.91.151 116091 port 98 116091 unique_id port 116091 remote_ip 10.8.0.186 116095 username rezasekonji 116095 mac 116095 bytes_out 0 116095 bytes_in 0 116095 station_ip 37.129.115.63 116095 port 133 116095 unique_id port 116095 remote_ip 10.8.0.130 116097 username forozande 116097 mac 116097 bytes_out 0 116097 bytes_in 0 116097 station_ip 37.129.47.6 116097 port 125 116097 unique_id port 116097 remote_ip 10.8.0.74 116105 username mahdiyehalizadeh 116105 mac 116105 bytes_out 2102381 116105 bytes_in 34073761 116105 station_ip 113.203.99.65 116105 port 140 116105 unique_id port 116105 remote_ip 10.8.0.82 116107 username alipour 116107 mac 116107 bytes_out 14288 116107 bytes_in 17208 116107 station_ip 83.123.164.214 116107 port 50 116107 unique_id port 116107 remote_ip 10.8.1.50 116109 username alipour 116109 mac 116109 bytes_out 5815 116109 bytes_in 10845 116109 station_ip 83.123.164.214 116109 port 52 116109 unique_id port 116109 remote_ip 10.8.1.50 116112 username amir 116112 mac 116112 bytes_out 0 116112 bytes_in 0 116112 station_ip 46.225.215.0 116112 port 122 116112 unique_id port 116112 remote_ip 10.8.0.50 116115 username farhad1 116115 kill_reason Another user logged on this global unique id 116115 mac 116115 bytes_out 0 116115 bytes_in 0 116115 station_ip 5.119.27.191 116115 port 138 116115 unique_id port 116115 remote_ip 10.8.0.26 116116 username mohammadjavad 116116 mac 116116 bytes_out 0 116116 bytes_in 0 116116 station_ip 113.203.108.167 116116 port 125 116116 unique_id port 116116 remote_ip 10.8.0.142 116118 username amin.saeedi 116118 unique_id port 116118 terminate_cause User-Request 116118 bytes_out 11075052 116118 bytes_in 306820359 116118 station_ip 31.56.155.237 116118 port 15729423 116118 nas_port_type Virtual 116118 remote_ip 5.5.5.57 116122 username kordestani 116122 kill_reason Another user logged on this global unique id 116122 mac 116122 bytes_out 0 116122 bytes_in 0 116078 station_ip 113.203.91.151 116078 port 140 116078 unique_id port 116078 remote_ip 10.8.0.186 116080 username amir 116080 mac 116080 bytes_out 0 116080 bytes_in 0 116080 station_ip 46.225.215.0 116080 port 140 116080 unique_id port 116080 remote_ip 10.8.0.50 116085 username amir 116085 mac 116085 bytes_out 0 116085 bytes_in 0 116085 station_ip 46.225.215.0 116085 port 140 116085 unique_id port 116085 remote_ip 10.8.0.50 116087 username mehdizare 116087 mac 116087 bytes_out 12084 116087 bytes_in 14293 116087 station_ip 5.119.127.238 116087 port 122 116087 unique_id port 116087 remote_ip 10.8.0.90 116090 username musa 116090 mac 116090 bytes_out 0 116090 bytes_in 0 116090 station_ip 83.122.146.216 116090 port 133 116090 unique_id port 116092 username tahmasebi 116092 kill_reason Another user logged on this global unique id 116092 mac 116092 bytes_out 0 116092 bytes_in 0 116092 station_ip 5.119.63.197 116092 port 137 116092 unique_id port 116099 username alipour 116099 mac 116099 bytes_out 1911796 116099 bytes_in 27247481 116099 station_ip 83.123.164.214 116099 port 50 116099 unique_id port 116099 remote_ip 10.8.1.50 116100 username mehdizare 116100 mac 116100 bytes_out 0 116100 bytes_in 0 116100 station_ip 5.119.127.238 116100 port 139 116100 unique_id port 116100 remote_ip 10.8.0.90 116101 username mansur 116101 mac 116101 bytes_out 0 116101 bytes_in 0 116101 station_ip 5.120.98.180 116101 port 125 116101 unique_id port 116101 remote_ip 10.8.0.210 116103 username alipour 116103 mac 116103 bytes_out 0 116103 bytes_in 0 116103 station_ip 83.123.164.214 116103 port 50 116103 unique_id port 116103 remote_ip 10.8.1.50 116104 username mehdizare 116104 mac 116104 bytes_out 30747 116104 bytes_in 50788 116104 station_ip 5.119.127.238 116104 port 52 116104 unique_id port 116104 remote_ip 10.8.1.42 116110 username mehdizare 116110 mac 116110 bytes_out 18337 116110 bytes_in 31938 116110 station_ip 5.119.127.238 116110 port 50 116110 unique_id port 116110 remote_ip 10.8.1.42 116111 username alipour 116111 mac 116111 bytes_out 5551 116111 bytes_in 7575 116111 station_ip 83.123.164.214 116111 port 52 116111 unique_id port 116111 remote_ip 10.8.1.50 116120 username kordestani 116120 kill_reason Another user logged on this global unique id 116120 mac 116120 bytes_out 0 116120 bytes_in 0 116120 station_ip 83.123.165.152 116120 port 133 116120 unique_id port 116120 remote_ip 10.8.0.134 116121 username kordestani 116121 mac 116121 bytes_out 0 116121 bytes_in 0 116121 station_ip 83.123.165.152 116121 port 133 116121 unique_id port 116124 username kordestani 116124 kill_reason Another user logged on this global unique id 116124 mac 116124 bytes_out 0 116124 bytes_in 0 116124 station_ip 83.123.165.152 116124 port 122 116124 unique_id port 116127 username kordestani 116127 kill_reason Another user logged on this global unique id 116127 mac 116127 bytes_out 0 116127 bytes_in 0 116127 station_ip 83.123.165.152 116127 port 122 116127 unique_id port 116128 username kordestani 116144 bytes_in 0 116128 kill_reason Another user logged on this global unique id 116128 mac 116128 bytes_out 0 116128 bytes_in 0 116128 station_ip 83.123.165.152 116128 port 122 116128 unique_id port 116129 username kordestani 116129 kill_reason Another user logged on this global unique id 116129 mac 116129 bytes_out 0 116129 bytes_in 0 116129 station_ip 83.123.165.152 116129 port 122 116129 unique_id port 116132 username kordestani 116132 kill_reason Another user logged on this global unique id 116132 mac 116132 bytes_out 0 116094 username mehdizare 116094 mac 116094 bytes_out 0 116094 bytes_in 0 116094 station_ip 5.119.127.238 116094 port 122 116094 unique_id port 116094 remote_ip 10.8.0.90 116096 username sabaghnezhad 116096 mac 116096 bytes_out 0 116096 bytes_in 0 116096 station_ip 113.203.91.151 116096 port 98 116096 unique_id port 116098 username forozande 116098 mac 116098 bytes_out 419134 116098 bytes_in 2231536 116098 station_ip 83.122.206.129 116098 port 125 116098 unique_id port 116098 remote_ip 10.8.0.74 116102 username mansur 116102 mac 116102 bytes_out 0 116102 bytes_in 0 116102 station_ip 5.120.98.180 116102 port 125 116102 unique_id port 116102 remote_ip 10.8.0.210 116106 username mehdizare 116106 mac 116106 bytes_out 15998 116106 bytes_in 22427 116106 station_ip 5.119.127.238 116106 port 52 116106 unique_id port 116106 remote_ip 10.8.1.42 116108 username amir 116108 mac 116108 bytes_out 1278182 116108 bytes_in 2522305 116108 station_ip 46.225.215.0 116108 port 122 116108 unique_id port 116108 remote_ip 10.8.0.50 116113 username sabaghnezhad 116113 mac 116113 bytes_out 0 116113 bytes_in 0 116113 station_ip 113.203.91.151 116113 port 98 116113 unique_id port 116113 remote_ip 10.8.0.186 116114 username alipour 116114 mac 116114 bytes_out 0 116114 bytes_in 0 116114 station_ip 83.123.164.214 116114 port 50 116114 unique_id port 116114 remote_ip 10.8.1.50 116117 username amir 116117 mac 116117 bytes_out 0 116117 bytes_in 0 116117 station_ip 46.225.215.0 116117 port 122 116117 unique_id port 116117 remote_ip 10.8.0.50 116119 username forozande 116119 mac 116119 bytes_out 0 116119 bytes_in 0 116119 station_ip 83.123.204.216 116119 port 122 116119 unique_id port 116119 remote_ip 10.8.0.74 116125 username kordestani 116125 kill_reason Another user logged on this global unique id 116125 mac 116125 bytes_out 0 116125 bytes_in 0 116125 station_ip 83.123.165.152 116125 port 122 116125 unique_id port 116130 username kordestani 116130 kill_reason Another user logged on this global unique id 116130 mac 116130 bytes_out 0 116130 bytes_in 0 116130 station_ip 83.123.165.152 116130 port 122 116130 unique_id port 116133 username kordestani 116133 kill_reason Another user logged on this global unique id 116133 mac 116133 bytes_out 0 116133 bytes_in 0 116133 station_ip 83.123.165.152 116133 port 122 116133 unique_id port 116137 username kordestani 116137 kill_reason Another user logged on this global unique id 116137 mac 116137 bytes_out 0 116137 bytes_in 0 116137 station_ip 83.123.165.152 116137 port 122 116137 unique_id port 116138 username kordestani 116138 kill_reason Another user logged on this global unique id 116138 mac 116138 bytes_out 0 116138 bytes_in 0 116138 station_ip 83.123.165.152 116138 port 122 116138 unique_id port 116142 username khalili 116142 mac 116142 bytes_out 0 116142 bytes_in 0 116142 station_ip 5.120.84.124 116142 port 136 116142 unique_id port 116142 remote_ip 10.8.0.86 116144 username kordestani 116144 kill_reason Another user logged on this global unique id 116144 mac 116144 bytes_out 0 116144 station_ip 83.123.165.152 116144 port 122 116144 unique_id port 116147 username kordestani 116147 kill_reason Another user logged on this global unique id 116147 mac 116147 bytes_out 0 116147 bytes_in 0 116147 station_ip 83.123.165.152 116147 port 122 116147 unique_id port 116151 username kordestani 116151 kill_reason Another user logged on this global unique id 116151 mac 116151 bytes_out 0 116151 bytes_in 0 116151 station_ip 83.123.165.152 116151 port 122 116122 station_ip 83.123.165.152 116122 port 122 116122 unique_id port 116122 remote_ip 10.8.0.134 116123 username kordestani 116123 kill_reason Another user logged on this global unique id 116123 mac 116123 bytes_out 0 116123 bytes_in 0 116123 station_ip 83.123.165.152 116123 port 122 116123 unique_id port 116126 username kordestani 116126 kill_reason Another user logged on this global unique id 116126 mac 116126 bytes_out 0 116126 bytes_in 0 116126 station_ip 83.123.165.152 116126 port 122 116126 unique_id port 116131 username kordestani 116131 kill_reason Another user logged on this global unique id 116131 mac 116131 bytes_out 0 116131 bytes_in 0 116131 station_ip 83.123.165.152 116131 port 122 116131 unique_id port 116134 username kordestani 116134 kill_reason Another user logged on this global unique id 116134 mac 116134 bytes_out 0 116134 bytes_in 0 116134 station_ip 83.123.165.152 116134 port 122 116134 unique_id port 116135 username kordestani 116135 kill_reason Another user logged on this global unique id 116135 mac 116135 bytes_out 0 116135 bytes_in 0 116135 station_ip 83.123.165.152 116135 port 122 116135 unique_id port 116139 username kordestani 116139 kill_reason Another user logged on this global unique id 116139 mac 116139 bytes_out 0 116139 bytes_in 0 116139 station_ip 83.123.165.152 116139 port 122 116139 unique_id port 116145 username kordestani 116145 kill_reason Another user logged on this global unique id 116145 mac 116145 bytes_out 0 116145 bytes_in 0 116145 station_ip 83.123.165.152 116145 port 122 116145 unique_id port 116148 username kordestani 116148 kill_reason Another user logged on this global unique id 116148 mac 116148 bytes_out 0 116148 bytes_in 0 116148 station_ip 83.123.165.152 116148 port 122 116148 unique_id port 116152 username kordestani 116152 kill_reason Another user logged on this global unique id 116152 mac 116152 bytes_out 0 116152 bytes_in 0 116152 station_ip 83.123.165.152 116152 port 122 116152 unique_id port 116153 username kordestani 116153 kill_reason Another user logged on this global unique id 116153 mac 116153 bytes_out 0 116153 bytes_in 0 116153 station_ip 83.123.165.152 116153 port 122 116153 unique_id port 116156 username kordestani 116156 kill_reason Another user logged on this global unique id 116156 mac 116156 bytes_out 0 116156 bytes_in 0 116156 station_ip 83.123.165.152 116156 port 122 116156 unique_id port 116160 username kordestani 116160 kill_reason Another user logged on this global unique id 116160 mac 116160 bytes_out 0 116160 bytes_in 0 116160 station_ip 83.123.165.152 116160 port 122 116160 unique_id port 116168 username kordestani 116168 kill_reason Another user logged on this global unique id 116168 mac 116168 bytes_out 0 116168 bytes_in 0 116168 station_ip 83.123.165.152 116168 port 122 116168 unique_id port 116172 username mehdizare 116172 mac 116172 bytes_out 0 116172 bytes_in 0 116172 station_ip 5.119.127.238 116172 port 139 116172 unique_id port 116172 remote_ip 10.8.0.90 116175 username kordestani 116175 kill_reason Another user logged on this global unique id 116175 mac 116175 bytes_out 0 116175 bytes_in 0 116175 station_ip 83.123.165.152 116175 port 122 116175 unique_id port 116180 username kordestani 116180 kill_reason Another user logged on this global unique id 116180 mac 116180 bytes_out 0 116180 bytes_in 0 116180 station_ip 83.123.165.152 116180 port 122 116180 unique_id port 116183 username kordestani 116183 kill_reason Another user logged on this global unique id 116183 mac 116183 bytes_out 0 116183 bytes_in 0 116183 station_ip 83.123.165.152 116183 port 122 116183 unique_id port 116187 username kordestani 116187 kill_reason Another user logged on this global unique id 116187 mac 116132 bytes_in 0 116132 station_ip 83.123.165.152 116132 port 122 116132 unique_id port 116136 username kordestani 116136 kill_reason Another user logged on this global unique id 116136 mac 116136 bytes_out 0 116136 bytes_in 0 116136 station_ip 83.123.165.152 116136 port 122 116136 unique_id port 116140 username kordestani 116140 kill_reason Another user logged on this global unique id 116140 mac 116140 bytes_out 0 116140 bytes_in 0 116140 station_ip 83.123.165.152 116140 port 122 116140 unique_id port 116141 username kordestani 116141 kill_reason Another user logged on this global unique id 116141 mac 116141 bytes_out 0 116141 bytes_in 0 116141 station_ip 83.123.165.152 116141 port 122 116141 unique_id port 116143 username kordestani 116143 kill_reason Another user logged on this global unique id 116143 mac 116143 bytes_out 0 116143 bytes_in 0 116143 station_ip 83.123.165.152 116143 port 122 116143 unique_id port 116146 username kordestani 116146 kill_reason Another user logged on this global unique id 116146 mac 116146 bytes_out 0 116146 bytes_in 0 116146 station_ip 83.123.165.152 116146 port 122 116146 unique_id port 116149 username kordestani 116149 kill_reason Another user logged on this global unique id 116149 mac 116149 bytes_out 0 116149 bytes_in 0 116149 station_ip 83.123.165.152 116149 port 122 116149 unique_id port 116150 username kordestani 116150 kill_reason Another user logged on this global unique id 116150 mac 116150 bytes_out 0 116150 bytes_in 0 116150 station_ip 83.123.165.152 116150 port 122 116150 unique_id port 116154 username kordestani 116154 kill_reason Another user logged on this global unique id 116154 mac 116154 bytes_out 0 116154 bytes_in 0 116154 station_ip 83.123.165.152 116154 port 122 116154 unique_id port 116157 username kordestani 116157 kill_reason Another user logged on this global unique id 116157 mac 116157 bytes_out 0 116157 bytes_in 0 116157 station_ip 83.123.165.152 116157 port 122 116157 unique_id port 116161 username kordestani 116161 kill_reason Another user logged on this global unique id 116161 mac 116161 bytes_out 0 116161 bytes_in 0 116161 station_ip 83.123.165.152 116161 port 122 116161 unique_id port 116164 username kordestani 116164 kill_reason Another user logged on this global unique id 116164 mac 116164 bytes_out 0 116164 bytes_in 0 116164 station_ip 83.123.165.152 116164 port 122 116164 unique_id port 116169 username kordestani 116169 kill_reason Another user logged on this global unique id 116169 mac 116169 bytes_out 0 116169 bytes_in 0 116169 station_ip 83.123.165.152 116169 port 122 116169 unique_id port 116173 username kordestani 116173 kill_reason Another user logged on this global unique id 116173 mac 116173 bytes_out 0 116173 bytes_in 0 116173 station_ip 83.123.165.152 116173 port 122 116173 unique_id port 116176 username kordestani 116176 kill_reason Another user logged on this global unique id 116176 mac 116176 bytes_out 0 116176 bytes_in 0 116176 station_ip 83.123.165.152 116176 port 122 116176 unique_id port 116178 username kordestani 116178 kill_reason Another user logged on this global unique id 116178 mac 116178 bytes_out 0 116178 bytes_in 0 116178 station_ip 83.123.165.152 116178 port 122 116178 unique_id port 116181 username kordestani 116181 kill_reason Another user logged on this global unique id 116181 mac 116181 bytes_out 0 116181 bytes_in 0 116181 station_ip 83.123.165.152 116181 port 122 116181 unique_id port 116184 username kordestani 116184 mac 116184 bytes_out 0 116184 bytes_in 0 116184 station_ip 83.123.165.152 116184 port 122 116184 unique_id port 116185 username kordestani 116185 kill_reason Another user logged on this global unique id 116185 mac 116185 bytes_out 0 116185 bytes_in 0 116151 unique_id port 116155 username kordestani 116155 kill_reason Another user logged on this global unique id 116155 mac 116155 bytes_out 0 116155 bytes_in 0 116155 station_ip 83.123.165.152 116155 port 122 116155 unique_id port 116158 username kordestani 116158 kill_reason Another user logged on this global unique id 116158 mac 116158 bytes_out 0 116158 bytes_in 0 116158 station_ip 83.123.165.152 116158 port 122 116158 unique_id port 116159 username kordestani 116159 kill_reason Another user logged on this global unique id 116159 mac 116159 bytes_out 0 116159 bytes_in 0 116159 station_ip 83.123.165.152 116159 port 122 116159 unique_id port 116162 username kordestani 116162 kill_reason Another user logged on this global unique id 116162 mac 116162 bytes_out 0 116162 bytes_in 0 116162 station_ip 83.123.165.152 116162 port 122 116162 unique_id port 116163 username aminvpn 116163 mac 116163 bytes_out 65866 116163 bytes_in 194668 116163 station_ip 151.238.228.104 116163 port 141 116163 unique_id port 116163 remote_ip 10.8.0.14 116165 username kordestani 116165 kill_reason Another user logged on this global unique id 116165 mac 116165 bytes_out 0 116165 bytes_in 0 116165 station_ip 83.123.165.152 116165 port 122 116165 unique_id port 116166 username kordestani 116166 kill_reason Another user logged on this global unique id 116166 mac 116166 bytes_out 0 116166 bytes_in 0 116166 station_ip 83.123.165.152 116166 port 122 116166 unique_id port 116167 username kordestani 116167 kill_reason Another user logged on this global unique id 116167 mac 116167 bytes_out 0 116167 bytes_in 0 116167 station_ip 83.123.165.152 116167 port 122 116167 unique_id port 116170 username kordestani 116170 kill_reason Another user logged on this global unique id 116170 mac 116170 bytes_out 0 116170 bytes_in 0 116170 station_ip 83.123.165.152 116170 port 122 116170 unique_id port 116171 username kordestani 116171 kill_reason Another user logged on this global unique id 116171 mac 116171 bytes_out 0 116171 bytes_in 0 116171 station_ip 83.123.165.152 116171 port 122 116171 unique_id port 116174 username kordestani 116174 kill_reason Another user logged on this global unique id 116174 mac 116174 bytes_out 0 116174 bytes_in 0 116174 station_ip 83.123.165.152 116174 port 122 116174 unique_id port 116177 username kordestani 116177 kill_reason Another user logged on this global unique id 116177 mac 116177 bytes_out 0 116177 bytes_in 0 116177 station_ip 83.123.165.152 116177 port 122 116177 unique_id port 116179 username kordestani 116179 kill_reason Another user logged on this global unique id 116179 mac 116179 bytes_out 0 116179 bytes_in 0 116179 station_ip 83.123.165.152 116179 port 122 116179 unique_id port 116182 username kordestani 116182 kill_reason Another user logged on this global unique id 116182 mac 116182 bytes_out 0 116182 bytes_in 0 116182 station_ip 83.123.165.152 116182 port 122 116182 unique_id port 116186 username kordestani 116186 kill_reason Another user logged on this global unique id 116186 mac 116186 bytes_out 0 116186 bytes_in 0 116186 station_ip 83.123.165.152 116186 port 122 116186 unique_id port 116189 username kordestani 116189 kill_reason Another user logged on this global unique id 116189 mac 116189 bytes_out 0 116189 bytes_in 0 116189 station_ip 83.123.165.152 116189 port 122 116189 unique_id port 116193 username ahmadipour 116193 unique_id port 116193 terminate_cause Lost-Carrier 116193 bytes_out 398422 116193 bytes_in 9717023 116193 station_ip 37.129.115.62 116193 port 15729434 116193 nas_port_type Virtual 116193 remote_ip 5.5.5.5 116195 username kordestani 116195 kill_reason Another user logged on this global unique id 116195 mac 116195 bytes_out 0 116195 bytes_in 0 116185 station_ip 83.123.165.152 116185 port 122 116185 unique_id port 116185 remote_ip 10.8.0.134 116188 username kordestani 116188 kill_reason Another user logged on this global unique id 116188 mac 116188 bytes_out 0 116188 bytes_in 0 116188 station_ip 83.123.165.152 116188 port 122 116188 unique_id port 116192 username kordestani 116192 kill_reason Another user logged on this global unique id 116192 mac 116192 bytes_out 0 116192 bytes_in 0 116192 station_ip 83.123.165.152 116192 port 122 116192 unique_id port 116194 username kordestani 116194 kill_reason Another user logged on this global unique id 116194 mac 116194 bytes_out 0 116194 bytes_in 0 116194 station_ip 83.123.165.152 116194 port 122 116194 unique_id port 116197 username kordestani 116197 kill_reason Another user logged on this global unique id 116197 mac 116197 bytes_out 0 116197 bytes_in 0 116197 station_ip 83.123.165.152 116197 port 122 116197 unique_id port 116198 username mehdizare 116198 mac 116198 bytes_out 0 116198 bytes_in 0 116198 station_ip 5.119.127.238 116198 port 141 116198 unique_id port 116198 remote_ip 10.8.0.90 116201 username kordestani 116201 kill_reason Another user logged on this global unique id 116201 mac 116201 bytes_out 0 116201 bytes_in 0 116201 station_ip 83.123.165.152 116201 port 122 116201 unique_id port 116206 username mehdizare 116206 mac 116206 bytes_out 8025 116206 bytes_in 14839 116206 station_ip 5.119.127.238 116206 port 139 116206 unique_id port 116206 remote_ip 10.8.0.90 116211 username alihosseini1 116211 mac 116211 bytes_out 0 116211 bytes_in 0 116211 station_ip 5.119.133.92 116211 port 133 116211 unique_id port 116211 remote_ip 10.8.0.166 116215 username mahdiyehalizadeh 116215 mac 116215 bytes_out 0 116215 bytes_in 0 116215 station_ip 37.129.28.235 116215 port 53 116215 unique_id port 116215 remote_ip 10.8.1.110 116222 username mirzaei 116222 kill_reason Another user logged on this global unique id 116222 mac 116222 bytes_out 0 116222 bytes_in 0 116222 station_ip 5.120.84.108 116222 port 122 116222 unique_id port 116222 remote_ip 10.8.0.66 116224 username alihosseini1 116224 mac 116224 bytes_out 0 116224 bytes_in 0 116224 station_ip 5.119.25.182 116224 port 143 116224 unique_id port 116224 remote_ip 10.8.0.166 116225 username alihosseini1 116225 mac 116225 bytes_out 0 116225 bytes_in 0 116225 station_ip 5.119.25.182 116225 port 143 116225 unique_id port 116225 remote_ip 10.8.0.166 116226 username alihosseini1 116226 mac 116226 bytes_out 0 116226 bytes_in 0 116226 station_ip 5.119.25.182 116226 port 143 116226 unique_id port 116226 remote_ip 10.8.0.166 116228 username alireza 116228 unique_id port 116228 terminate_cause User-Request 116228 bytes_out 2822458 116228 bytes_in 44209873 116228 station_ip 5.120.136.61 116228 port 15729440 116228 nas_port_type Virtual 116228 remote_ip 5.5.5.13 116230 username musa 116230 kill_reason Another user logged on this global unique id 116230 mac 116230 bytes_out 0 116230 bytes_in 0 116230 station_ip 83.123.208.91 116230 port 143 116230 unique_id port 116230 remote_ip 10.8.0.6 116235 username irannezhad 116235 mac 116235 bytes_out 0 116235 bytes_in 0 116235 station_ip 83.123.30.205 116235 port 98 116235 unique_id port 116235 remote_ip 10.8.0.182 116239 username musa 116239 kill_reason Another user logged on this global unique id 116239 mac 116239 bytes_out 0 116239 bytes_in 0 116239 station_ip 83.123.208.91 116239 port 143 116239 unique_id port 116243 username farhad1 116243 kill_reason Another user logged on this global unique id 116243 mac 116243 bytes_out 0 116243 bytes_in 0 116187 bytes_out 0 116187 bytes_in 0 116187 station_ip 83.123.165.152 116187 port 122 116187 unique_id port 116190 username kordestani 116190 kill_reason Another user logged on this global unique id 116190 mac 116190 bytes_out 0 116190 bytes_in 0 116190 station_ip 83.123.165.152 116190 port 122 116190 unique_id port 116191 username kordestani 116191 kill_reason Another user logged on this global unique id 116191 mac 116191 bytes_out 0 116191 bytes_in 0 116191 station_ip 83.123.165.152 116191 port 122 116191 unique_id port 116196 username kordestani 116196 kill_reason Another user logged on this global unique id 116196 mac 116196 bytes_out 0 116196 bytes_in 0 116196 station_ip 83.123.165.152 116196 port 122 116196 unique_id port 116199 username kordestani 116199 kill_reason Another user logged on this global unique id 116199 mac 116199 bytes_out 0 116199 bytes_in 0 116199 station_ip 83.123.165.152 116199 port 122 116199 unique_id port 116200 username kordestani 116200 kill_reason Another user logged on this global unique id 116200 mac 116200 bytes_out 0 116200 bytes_in 0 116200 station_ip 83.123.165.152 116200 port 122 116200 unique_id port 116203 username forozande 116203 mac 116203 bytes_out 253406 116203 bytes_in 1509881 116203 station_ip 37.129.204.219 116203 port 133 116203 unique_id port 116203 remote_ip 10.8.0.74 116209 username alihosseini1 116209 mac 116209 bytes_out 3301974 116209 bytes_in 37714809 116209 station_ip 5.119.133.92 116209 port 136 116209 unique_id port 116209 remote_ip 10.8.0.166 116210 username forozande 116210 mac 116210 bytes_out 106581 116210 bytes_in 537690 116210 station_ip 37.129.50.43 116210 port 133 116210 unique_id port 116210 remote_ip 10.8.0.74 116212 username alihosseini1 116212 mac 116212 bytes_out 0 116212 bytes_in 0 116212 station_ip 5.119.133.92 116212 port 133 116212 unique_id port 116212 remote_ip 10.8.0.166 116216 username alihosseini1 116216 kill_reason Maximum check online fails reached 116216 mac 116216 bytes_out 0 116216 bytes_in 0 116216 station_ip 5.119.25.182 116216 port 52 116216 unique_id port 116218 username amirabbas 116218 unique_id port 116218 terminate_cause User-Request 116218 bytes_out 10143921 116218 bytes_in 274022229 116218 station_ip 37.27.58.182 116218 port 15729435 116218 nas_port_type Virtual 116218 remote_ip 5.5.5.6 116221 username alihosseini1 116221 kill_reason Maximum check online fails reached 116221 mac 116221 bytes_out 0 116221 bytes_in 0 116221 station_ip 5.119.25.182 116221 port 136 116221 unique_id port 116227 username houshang 116227 kill_reason Another user logged on this global unique id 116227 mac 116227 bytes_out 0 116227 bytes_in 0 116227 station_ip 5.119.5.200 116227 port 138 116227 unique_id port 116232 username morteza 116232 kill_reason Another user logged on this global unique id 116232 mac 116232 bytes_out 0 116232 bytes_in 0 116232 station_ip 113.203.35.179 116232 port 139 116232 unique_id port 116233 username alipour 116233 mac 116233 bytes_out 2542897 116233 bytes_in 31525364 116233 station_ip 83.123.164.214 116233 port 98 116233 unique_id port 116233 remote_ip 10.8.0.102 116236 username alihosseini1 116236 mac 116236 bytes_out 0 116236 bytes_in 0 116236 station_ip 5.119.119.169 116236 port 98 116236 unique_id port 116236 remote_ip 10.8.0.166 116237 username alihosseini1 116237 kill_reason Maximum check online fails reached 116237 mac 116237 bytes_out 0 116237 bytes_in 0 116237 station_ip 5.119.119.169 116237 port 53 116237 unique_id port 116241 username alihosseini1 116241 kill_reason Maximum check online fails reached 116241 mac 116241 bytes_out 0 116241 bytes_in 0 116195 station_ip 83.123.165.152 116195 port 122 116195 unique_id port 116202 username kordestani 116202 kill_reason Another user logged on this global unique id 116202 mac 116202 bytes_out 0 116202 bytes_in 0 116202 station_ip 83.123.165.152 116202 port 122 116202 unique_id port 116204 username kordestani 116204 kill_reason Another user logged on this global unique id 116204 mac 116204 bytes_out 0 116204 bytes_in 0 116204 station_ip 83.123.165.152 116204 port 122 116204 unique_id port 116205 username kordestani 116205 mac 116205 bytes_out 0 116205 bytes_in 0 116205 station_ip 83.123.165.152 116205 port 122 116205 unique_id port 116207 username mohammadjavad 116207 mac 116207 bytes_out 0 116207 bytes_in 0 116207 station_ip 83.122.232.36 116207 port 125 116207 unique_id port 116207 remote_ip 10.8.0.142 116208 username farhad1 116208 mac 116208 bytes_out 0 116208 bytes_in 0 116208 station_ip 5.119.27.191 116208 port 138 116208 unique_id port 116213 username avaanna 116213 mac 116213 bytes_out 0 116213 bytes_in 0 116213 station_ip 83.123.36.87 116213 port 52 116213 unique_id port 116213 remote_ip 10.8.1.46 116214 username alihosseini1 116214 mac 116214 bytes_out 0 116214 bytes_in 0 116214 station_ip 5.119.25.182 116214 port 52 116214 unique_id port 116214 remote_ip 10.8.1.106 116217 username alihosseini1 116217 mac 116217 bytes_out 0 116217 bytes_in 0 116217 station_ip 5.119.25.182 116217 port 141 116217 unique_id port 116217 remote_ip 10.8.0.166 116219 username kamali1 116219 mac 116219 bytes_out 9174419 116219 bytes_in 34838574 116219 station_ip 5.119.146.32 116219 port 136 116219 unique_id port 116219 remote_ip 10.8.0.70 116220 username houshang 116220 kill_reason Another user logged on this global unique id 116220 mac 116220 bytes_out 0 116220 bytes_in 0 116220 station_ip 5.119.5.200 116220 port 138 116220 unique_id port 116220 remote_ip 10.8.0.22 116223 username morteza 116223 kill_reason Another user logged on this global unique id 116223 mac 116223 bytes_out 0 116223 bytes_in 0 116223 station_ip 113.203.35.179 116223 port 139 116223 unique_id port 116223 remote_ip 10.8.0.46 116229 username houshang 116229 mac 116229 bytes_out 0 116229 bytes_in 0 116229 station_ip 5.119.5.200 116229 port 138 116229 unique_id port 116231 username alihosseini1 116231 mac 116231 bytes_out 0 116231 bytes_in 0 116231 station_ip 5.119.25.182 116231 port 144 116231 unique_id port 116231 remote_ip 10.8.0.166 116234 username alipour 116234 mac 116234 bytes_out 0 116234 bytes_in 0 116234 station_ip 83.123.164.214 116234 port 144 116234 unique_id port 116234 remote_ip 10.8.0.102 116238 username morteza 116238 mac 116238 bytes_out 0 116238 bytes_in 0 116238 station_ip 113.203.35.179 116238 port 139 116238 unique_id port 116240 username alihosseini1 116240 mac 116240 bytes_out 57022 116240 bytes_in 362397 116240 station_ip 5.119.119.169 116240 port 144 116240 unique_id port 116240 remote_ip 10.8.0.166 116245 username alihosseini1 116245 mac 116245 bytes_out 0 116245 bytes_in 0 116245 station_ip 5.119.119.169 116245 port 54 116245 unique_id port 116245 remote_ip 10.8.1.106 116246 username alirezazadeh 116246 unique_id port 116246 terminate_cause User-Request 116246 bytes_out 6699634 116246 bytes_in 31656102 116246 station_ip 31.56.159.18 116246 port 15729433 116246 nas_port_type Virtual 116246 remote_ip 5.5.5.2 116248 username morteza 116248 mac 116248 bytes_out 0 116248 bytes_in 0 116248 station_ip 113.203.35.179 116248 port 54 116241 station_ip 5.119.119.169 116241 port 139 116241 unique_id port 116242 username morteza 116242 mac 116242 bytes_out 0 116242 bytes_in 0 116242 station_ip 113.203.35.179 116242 port 54 116242 unique_id port 116242 remote_ip 10.8.1.62 116244 username farhad1 116244 mac 116244 bytes_out 0 116244 bytes_in 0 116244 station_ip 5.119.192.34 116244 port 125 116244 unique_id port 116247 username mahdiyehalizadeh 116247 mac 116247 bytes_out 502148 116247 bytes_in 3385668 116247 station_ip 83.123.1.202 116247 port 138 116247 unique_id port 116247 remote_ip 10.8.0.82 116249 username mohammadjavad 116249 mac 116249 bytes_out 667870 116249 bytes_in 3689046 116249 station_ip 83.122.175.204 116249 port 98 116249 unique_id port 116249 remote_ip 10.8.0.142 116251 username morteza 116251 mac 116251 bytes_out 0 116251 bytes_in 0 116251 station_ip 113.203.35.179 116251 port 147 116251 unique_id port 116251 remote_ip 10.8.0.46 116253 username alipour 116253 mac 116253 bytes_out 69592 116253 bytes_in 246605 116253 station_ip 83.123.164.214 116253 port 145 116253 unique_id port 116253 remote_ip 10.8.0.102 116255 username roka 116255 mac 116255 bytes_out 180627 116255 bytes_in 396697 116255 station_ip 83.123.169.208 116255 port 144 116255 unique_id port 116255 remote_ip 10.8.0.214 116256 username hamid.e 116256 kill_reason Maximum number of concurrent logins reached 116256 unique_id port 116256 bytes_out 0 116256 bytes_in 0 116256 station_ip 37.27.29.69 116256 port 15729442 116256 nas_port_type Virtual 116258 username musa 116258 kill_reason Another user logged on this global unique id 116258 mac 116258 bytes_out 0 116258 bytes_in 0 116258 station_ip 83.123.208.91 116258 port 143 116258 unique_id port 116259 username farhad1 116259 mac 116259 bytes_out 1254862 116259 bytes_in 9469508 116259 station_ip 5.119.192.34 116259 port 125 116259 unique_id port 116259 remote_ip 10.8.0.26 116264 username morteza 116264 mac 116264 bytes_out 0 116264 bytes_in 0 116264 station_ip 113.203.120.151 116264 port 133 116264 unique_id port 116264 remote_ip 10.8.0.46 116265 username alihosseini1 116265 mac 116265 bytes_out 1920532 116265 bytes_in 16363746 116265 station_ip 5.119.119.169 116265 port 146 116265 unique_id port 116265 remote_ip 10.8.0.166 116270 username musa 116270 kill_reason Another user logged on this global unique id 116270 mac 116270 bytes_out 0 116270 bytes_in 0 116270 station_ip 83.123.208.91 116270 port 143 116270 unique_id port 116272 username avaanna 116272 mac 116272 bytes_out 290575 116272 bytes_in 2334389 116272 station_ip 83.123.36.87 116272 port 138 116272 unique_id port 116272 remote_ip 10.8.0.98 116274 username rezaei 116274 kill_reason Another user logged on this global unique id 116274 mac 116274 bytes_out 0 116274 bytes_in 0 116274 station_ip 5.120.76.177 116274 port 125 116274 unique_id port 116274 remote_ip 10.8.0.206 116278 username rezaei 116278 mac 116278 bytes_out 0 116278 bytes_in 0 116278 station_ip 5.120.76.177 116278 port 125 116278 unique_id port 116280 username alihosseini1 116280 mac 116280 bytes_out 952273 116280 bytes_in 172966 116280 station_ip 5.119.45.215 116280 port 54 116280 unique_id port 116280 remote_ip 10.8.1.106 116289 username rezaei 116289 mac 116289 bytes_out 0 116289 bytes_in 0 116289 station_ip 5.120.76.177 116289 port 125 116289 unique_id port 116289 remote_ip 10.8.0.206 116295 username morteza 116295 mac 116295 bytes_out 0 116295 bytes_in 0 116295 station_ip 83.123.229.38 116295 port 125 116243 station_ip 5.119.192.34 116243 port 125 116243 unique_id port 116243 remote_ip 10.8.0.26 116254 username aminvpn 116254 mac 116254 bytes_out 530437 116254 bytes_in 2287835 116254 station_ip 151.238.246.223 116254 port 142 116254 unique_id port 116254 remote_ip 10.8.0.14 116257 username hamid.e 116257 kill_reason Maximum number of concurrent logins reached 116257 unique_id port 116257 bytes_out 0 116257 bytes_in 0 116257 station_ip 37.27.29.69 116257 port 15729443 116257 nas_port_type Virtual 116260 username rezaei 116260 mac 116260 bytes_out 980457 116260 bytes_in 1249277 116260 station_ip 5.120.76.177 116260 port 141 116260 unique_id port 116260 remote_ip 10.8.0.206 116262 username forozande 116262 mac 116262 bytes_out 648789 116262 bytes_in 7405317 116262 station_ip 83.122.16.57 116262 port 138 116262 unique_id port 116262 remote_ip 10.8.0.74 116263 username roka 116263 mac 116263 bytes_out 655093 116263 bytes_in 2939601 116263 station_ip 83.123.169.208 116263 port 133 116263 unique_id port 116263 remote_ip 10.8.0.214 116269 username mansur 116269 mac 116269 bytes_out 398759 116269 bytes_in 2616204 116269 station_ip 5.119.143.11 116269 port 133 116269 unique_id port 116269 remote_ip 10.8.0.210 116271 username alihosseini1 116271 mac 116271 bytes_out 977096 116271 bytes_in 10683927 116271 station_ip 5.119.119.169 116271 port 54 116271 unique_id port 116271 remote_ip 10.8.1.106 116276 username rezaei 116276 kill_reason Another user logged on this global unique id 116276 mac 116276 bytes_out 0 116276 bytes_in 0 116276 station_ip 5.120.76.177 116276 port 125 116276 unique_id port 116277 username mehdizare 116277 mac 116277 bytes_out 1032004 116277 bytes_in 23906891 116277 station_ip 5.119.127.238 116277 port 133 116277 unique_id port 116277 remote_ip 10.8.0.90 116281 username malekpoir 116281 mac 116281 bytes_out 3614224 116281 bytes_in 34034055 116281 station_ip 5.120.156.76 116281 port 51 116281 unique_id port 116281 remote_ip 10.8.1.54 116282 username mehdizare 116282 mac 116282 bytes_out 14022 116282 bytes_in 21180 116282 station_ip 5.119.127.238 116282 port 133 116282 unique_id port 116282 remote_ip 10.8.0.90 116284 username forozande 116284 mac 116284 bytes_out 0 116284 bytes_in 0 116284 station_ip 113.203.20.21 116284 port 125 116284 unique_id port 116284 remote_ip 10.8.0.74 116285 username rezasekonji 116285 mac 116285 bytes_out 0 116285 bytes_in 0 116285 station_ip 83.122.250.216 116285 port 125 116285 unique_id port 116285 remote_ip 10.8.0.130 116286 username forozande 116286 mac 116286 bytes_out 0 116286 bytes_in 0 116286 station_ip 83.122.195.192 116286 port 133 116286 unique_id port 116286 remote_ip 10.8.0.74 116291 username abravesh 116291 unique_id port 116291 terminate_cause Lost-Carrier 116291 bytes_out 1311617 116291 bytes_in 11757670 116291 station_ip 5.120.68.247 116291 port 15729444 116291 nas_port_type Virtual 116291 remote_ip 5.5.5.47 116294 username morteza 116294 kill_reason Another user logged on this global unique id 116294 mac 116294 bytes_out 0 116294 bytes_in 0 116294 station_ip 83.123.229.38 116294 port 125 116294 unique_id port 116294 remote_ip 10.8.0.46 116299 username morteza 116299 mac 116299 bytes_out 0 116299 bytes_in 0 116299 station_ip 83.123.229.38 116299 port 138 116299 unique_id port 116299 remote_ip 10.8.0.46 116303 username morteza 116303 mac 116303 bytes_out 0 116303 bytes_in 0 116303 station_ip 83.123.229.38 116303 port 138 116303 unique_id port 116303 remote_ip 10.8.0.46 116306 username aminvpn 116248 unique_id port 116248 remote_ip 10.8.1.62 116250 username aminvpn 116250 unique_id port 116250 terminate_cause User-Request 116250 bytes_out 2435940 116250 bytes_in 32612682 116250 station_ip 151.238.246.223 116250 port 15729439 116250 nas_port_type Virtual 116250 remote_ip 5.5.5.10 116252 username avaanna 116252 mac 116252 bytes_out 2850501 116252 bytes_in 44173843 116252 station_ip 83.123.36.87 116252 port 133 116252 unique_id port 116252 remote_ip 10.8.0.98 116261 username hamid.e 116261 unique_id port 116261 terminate_cause Lost-Carrier 116261 bytes_out 15760629 116261 bytes_in 302209691 116261 station_ip 188.245.91.197 116261 port 15729432 116261 nas_port_type Virtual 116261 remote_ip 5.5.5.255 116266 username abravesh 116266 unique_id port 116266 terminate_cause User-Request 116266 bytes_out 3280253 116266 bytes_in 83368528 116266 station_ip 5.120.68.247 116266 port 15729441 116266 nas_port_type Virtual 116266 remote_ip 5.5.5.46 116267 username mehdizare 116267 mac 116267 bytes_out 0 116267 bytes_in 0 116267 station_ip 5.119.127.238 116267 port 50 116267 unique_id port 116267 remote_ip 10.8.1.42 116268 username morteza 116268 mac 116268 bytes_out 0 116268 bytes_in 0 116268 station_ip 113.203.120.151 116268 port 141 116268 unique_id port 116268 remote_ip 10.8.0.46 116273 username morteza 116273 mac 116273 bytes_out 0 116273 bytes_in 0 116273 station_ip 113.203.120.151 116273 port 138 116273 unique_id port 116273 remote_ip 10.8.0.46 116275 username alihosseini1 116275 mac 116275 bytes_out 254607 116275 bytes_in 71978 116275 station_ip 5.119.45.215 116275 port 54 116275 unique_id port 116275 remote_ip 10.8.1.106 116279 username forozande 116279 mac 116279 bytes_out 0 116279 bytes_in 0 116279 station_ip 83.122.138.217 116279 port 138 116279 unique_id port 116279 remote_ip 10.8.0.74 116283 username alihosseini1 116283 mac 116283 bytes_out 0 116283 bytes_in 0 116283 station_ip 5.119.45.215 116283 port 138 116283 unique_id port 116283 remote_ip 10.8.0.166 116287 username avaanna 116287 mac 116287 bytes_out 707574 116287 bytes_in 13498636 116287 station_ip 83.123.36.87 116287 port 50 116287 unique_id port 116287 remote_ip 10.8.1.46 116288 username malekpoir 116288 kill_reason Another user logged on this global unique id 116288 mac 116288 bytes_out 0 116288 bytes_in 0 116288 station_ip 5.120.156.76 116288 port 141 116288 unique_id port 116288 remote_ip 10.8.0.58 116290 username mehdizare 116290 mac 116290 bytes_out 152597 116290 bytes_in 121355 116290 station_ip 5.119.127.238 116290 port 142 116290 unique_id port 116290 remote_ip 10.8.0.90 116292 username tahmasebi 116292 kill_reason Another user logged on this global unique id 116292 mac 116292 bytes_out 0 116292 bytes_in 0 116292 station_ip 5.119.63.197 116292 port 137 116292 unique_id port 116293 username alirezazadeh 116293 unique_id port 116293 terminate_cause User-Request 116293 bytes_out 3926381 116293 bytes_in 39566238 116293 station_ip 31.56.159.18 116293 port 15729445 116293 nas_port_type Virtual 116293 remote_ip 5.5.5.48 116298 username mehdizare 116298 mac 116298 bytes_out 2189568 116298 bytes_in 34727751 116298 station_ip 5.119.127.238 116298 port 133 116298 unique_id port 116298 remote_ip 10.8.0.90 116301 username morteza 116301 mac 116301 bytes_out 0 116301 bytes_in 0 116301 station_ip 83.123.229.38 116301 port 51 116301 unique_id port 116301 remote_ip 10.8.1.62 116304 username morteza 116304 mac 116304 bytes_out 0 116304 bytes_in 0 116304 station_ip 83.123.229.38 116304 port 142 116304 unique_id port 116295 unique_id port 116296 username mirzaei 116296 kill_reason Another user logged on this global unique id 116296 mac 116296 bytes_out 0 116296 bytes_in 0 116296 station_ip 5.120.84.108 116296 port 122 116296 unique_id port 116297 username musa 116297 mac 116297 bytes_out 0 116297 bytes_in 0 116297 station_ip 83.123.208.91 116297 port 143 116297 unique_id port 116300 username houshang 116300 mac 116300 bytes_out 33151 116300 bytes_in 118758 116300 station_ip 5.120.154.156 116300 port 125 116300 unique_id port 116300 remote_ip 10.8.0.22 116302 username morteza 116302 mac 116302 bytes_out 0 116302 bytes_in 0 116302 station_ip 83.123.229.38 116302 port 125 116302 unique_id port 116302 remote_ip 10.8.0.46 116305 username morteza 116305 mac 116305 bytes_out 29474 116305 bytes_in 48284 116305 station_ip 83.123.229.38 116305 port 142 116305 unique_id port 116305 remote_ip 10.8.0.46 116309 username zare 116309 mac 116309 bytes_out 0 116309 bytes_in 0 116309 station_ip 37.27.14.172 116309 port 50 116309 unique_id port 116309 remote_ip 10.8.1.58 116315 username aminvpn 116315 unique_id port 116315 terminate_cause User-Request 116315 bytes_out 70130 116315 bytes_in 342403 116315 station_ip 5.119.176.181 116315 port 15729449 116315 nas_port_type Virtual 116315 remote_ip 5.5.5.21 116319 username morteza 116319 mac 116319 bytes_out 0 116319 bytes_in 0 116319 station_ip 37.129.37.118 116319 port 144 116319 unique_id port 116319 remote_ip 10.8.0.46 116320 username avaanna 116320 mac 116320 bytes_out 241449 116320 bytes_in 1894628 116320 station_ip 83.123.36.87 116320 port 142 116320 unique_id port 116320 remote_ip 10.8.0.98 116321 username morteza 116321 mac 116321 bytes_out 27442 116321 bytes_in 471186 116321 station_ip 37.129.37.118 116321 port 50 116321 unique_id port 116321 remote_ip 10.8.1.62 116324 username irannezhad 116324 mac 116324 bytes_out 0 116324 bytes_in 0 116324 station_ip 83.123.30.205 116324 port 142 116324 unique_id port 116324 remote_ip 10.8.0.182 116328 username irannezhad 116328 mac 116328 bytes_out 0 116328 bytes_in 0 116328 station_ip 83.123.30.205 116328 port 50 116328 unique_id port 116328 remote_ip 10.8.1.134 116330 username mahdixz 116330 unique_id port 116330 terminate_cause User-Request 116330 bytes_out 24859327 116330 bytes_in 6567732 116330 station_ip 151.235.112.254 116330 port 15729448 116330 nas_port_type Virtual 116330 remote_ip 5.5.5.18 116332 username alihosseini1 116332 mac 116332 bytes_out 0 116332 bytes_in 0 116332 station_ip 5.119.215.84 116332 port 50 116332 unique_id port 116332 remote_ip 10.8.1.106 116334 username amir 116334 mac 116334 bytes_out 241828 116334 bytes_in 1040903 116334 station_ip 46.225.212.132 116334 port 142 116334 unique_id port 116334 remote_ip 10.8.0.50 116335 username musa 116335 kill_reason Another user logged on this global unique id 116335 mac 116335 bytes_out 0 116335 bytes_in 0 116335 station_ip 83.122.70.159 116335 port 125 116335 unique_id port 116338 username forozande 116338 mac 116338 bytes_out 0 116338 bytes_in 0 116338 station_ip 83.122.226.238 116338 port 142 116338 unique_id port 116338 remote_ip 10.8.0.74 116344 username morteza 116344 mac 116344 bytes_out 0 116344 bytes_in 0 116344 station_ip 37.129.37.118 116344 port 144 116344 unique_id port 116344 remote_ip 10.8.0.46 116347 username amir 116347 mac 116347 bytes_out 108235 116347 bytes_in 531805 116347 station_ip 46.225.212.132 116347 port 142 116347 unique_id port 116304 remote_ip 10.8.0.46 116307 username morteza 116307 mac 116307 bytes_out 1042508 116307 bytes_in 22563434 116307 station_ip 37.129.114.106 116307 port 142 116307 unique_id port 116307 remote_ip 10.8.0.46 116308 username aminvpn 116308 mac 116308 bytes_out 0 116308 bytes_in 0 116308 station_ip 113.203.66.172 116308 port 51 116308 unique_id port 116308 remote_ip 10.8.1.6 116311 username aminvpn 116311 mac 116311 bytes_out 0 116311 bytes_in 0 116311 station_ip 113.203.66.172 116311 port 50 116311 unique_id port 116311 remote_ip 10.8.1.6 116316 username avaanna 116316 mac 116316 bytes_out 0 116316 bytes_in 0 116316 station_ip 83.123.36.87 116316 port 142 116316 unique_id port 116316 remote_ip 10.8.0.98 116323 username irannezhad 116323 mac 116323 bytes_out 511880 116323 bytes_in 1988234 116323 station_ip 83.123.30.205 116323 port 142 116323 unique_id port 116323 remote_ip 10.8.0.182 116325 username forozande 116325 mac 116325 bytes_out 630350 116325 bytes_in 122669 116325 station_ip 83.123.188.74 116325 port 145 116325 unique_id port 116325 remote_ip 10.8.0.74 116326 username irannezhad 116326 mac 116326 bytes_out 0 116326 bytes_in 0 116326 station_ip 83.123.30.205 116326 port 142 116326 unique_id port 116326 remote_ip 10.8.0.182 116327 username irannezhad 116327 mac 116327 bytes_out 0 116327 bytes_in 0 116327 station_ip 83.123.30.205 116327 port 142 116327 unique_id port 116327 remote_ip 10.8.0.182 116331 username malekpoir 116331 kill_reason Another user logged on this global unique id 116331 mac 116331 bytes_out 0 116331 bytes_in 0 116331 station_ip 5.120.156.76 116331 port 141 116331 unique_id port 116333 username naeimeh 116333 mac 116333 bytes_out 973416 116333 bytes_in 21114423 116333 station_ip 83.123.123.1 116333 port 145 116333 unique_id port 116333 remote_ip 10.8.0.78 116337 username aminvpn 116337 mac 116337 bytes_out 0 116337 bytes_in 0 116337 station_ip 113.203.66.172 116337 port 146 116337 unique_id port 116337 remote_ip 10.8.0.14 116343 username musa 116343 kill_reason Another user logged on this global unique id 116343 mac 116343 bytes_out 0 116343 bytes_in 0 116343 station_ip 83.122.70.159 116343 port 125 116343 unique_id port 116348 username mehdizare 116348 mac 116348 bytes_out 173300 116348 bytes_in 174711 116348 station_ip 5.119.127.238 116348 port 133 116348 unique_id port 116348 remote_ip 10.8.0.90 116349 username morteza 116349 mac 116349 bytes_out 0 116349 bytes_in 0 116349 station_ip 37.129.37.118 116349 port 50 116349 unique_id port 116349 remote_ip 10.8.1.62 116353 username houshang 116353 mac 116353 bytes_out 798944 116353 bytes_in 5474813 116353 station_ip 5.119.51.167 116353 port 143 116353 unique_id port 116353 remote_ip 10.8.0.22 116358 username amir 116358 mac 116358 bytes_out 69628 116358 bytes_in 373021 116358 station_ip 46.225.212.132 116358 port 146 116358 unique_id port 116358 remote_ip 10.8.0.50 116359 username morteza 116359 kill_reason Another user logged on this global unique id 116359 mac 116359 bytes_out 0 116359 bytes_in 0 116359 station_ip 37.129.37.118 116359 port 145 116359 unique_id port 116359 remote_ip 10.8.0.46 116360 username kordestani 116360 kill_reason Another user logged on this global unique id 116360 mac 116360 bytes_out 0 116360 bytes_in 0 116360 station_ip 83.123.10.127 116360 port 144 116360 unique_id port 116361 username amir 116361 mac 116361 bytes_out 0 116361 bytes_in 0 116361 station_ip 46.225.212.132 116361 port 146 116306 mac 116306 bytes_out 292961 116306 bytes_in 777057 116306 station_ip 113.203.66.172 116306 port 125 116306 unique_id port 116306 remote_ip 10.8.0.14 116310 username aminvpn 116310 mac 116310 bytes_out 0 116310 bytes_in 0 116310 station_ip 113.203.66.172 116310 port 51 116310 unique_id port 116310 remote_ip 10.8.1.6 116312 username irannezhad 116312 mac 116312 bytes_out 0 116312 bytes_in 0 116312 station_ip 83.123.30.205 116312 port 142 116312 unique_id port 116312 remote_ip 10.8.0.182 116313 username alihosseini1 116313 mac 116313 bytes_out 0 116313 bytes_in 0 116313 station_ip 5.119.226.200 116313 port 143 116313 unique_id port 116313 remote_ip 10.8.0.166 116314 username aminvpn 116314 unique_id port 116314 terminate_cause User-Request 116314 bytes_out 1285320 116314 bytes_in 2628880 116314 station_ip 5.125.120.36 116314 port 15729446 116314 nas_port_type Virtual 116314 remote_ip 5.5.5.54 116317 username musa 116317 kill_reason Another user logged on this global unique id 116317 mac 116317 bytes_out 0 116317 bytes_in 0 116317 station_ip 83.122.70.159 116317 port 125 116317 unique_id port 116317 remote_ip 10.8.0.6 116318 username amir 116318 mac 116318 bytes_out 0 116318 bytes_in 0 116318 station_ip 46.225.212.132 116318 port 145 116318 unique_id port 116318 remote_ip 10.8.0.50 116322 username alireza 116322 unique_id port 116322 terminate_cause Lost-Carrier 116322 bytes_out 1614773 116322 bytes_in 32766591 116322 station_ip 5.119.163.110 116322 port 15729447 116322 nas_port_type Virtual 116322 remote_ip 5.5.5.255 116329 username sedighe 116329 mac 116329 bytes_out 112960 116329 bytes_in 519892 116329 station_ip 37.129.81.143 116329 port 147 116329 unique_id port 116329 remote_ip 10.8.0.146 116336 username avaanna 116336 mac 116336 bytes_out 0 116336 bytes_in 0 116336 station_ip 83.123.36.87 116336 port 143 116336 unique_id port 116336 remote_ip 10.8.0.98 116339 username musa 116339 kill_reason Another user logged on this global unique id 116339 mac 116339 bytes_out 0 116339 bytes_in 0 116339 station_ip 83.122.70.159 116339 port 125 116339 unique_id port 116340 username morteza 116340 kill_reason Another user logged on this global unique id 116340 mac 116340 bytes_out 0 116340 bytes_in 0 116340 station_ip 37.129.37.118 116340 port 144 116340 unique_id port 116340 remote_ip 10.8.0.46 116341 username aminvpn 116341 mac 116341 bytes_out 906835 116341 bytes_in 4228336 116341 station_ip 113.203.66.172 116341 port 50 116341 unique_id port 116341 remote_ip 10.8.1.6 116342 username morteza 116342 mac 116342 bytes_out 0 116342 bytes_in 0 116342 station_ip 37.129.37.118 116342 port 144 116342 unique_id port 116345 username alirezazadeh 116345 unique_id port 116345 terminate_cause User-Request 116345 bytes_out 0 116345 bytes_in 0 116345 station_ip 5.119.175.134 116345 port 15729451 116345 nas_port_type Virtual 116345 remote_ip 5.5.5.24 116346 username morteza 116346 mac 116346 bytes_out 0 116346 bytes_in 0 116346 station_ip 37.129.37.118 116346 port 50 116346 unique_id port 116346 remote_ip 10.8.1.62 116350 username musa 116350 kill_reason Another user logged on this global unique id 116350 mac 116350 bytes_out 0 116350 bytes_in 0 116350 station_ip 83.122.70.159 116350 port 125 116350 unique_id port 116351 username tahmasebi 116351 kill_reason Another user logged on this global unique id 116351 mac 116351 bytes_out 0 116351 bytes_in 0 116351 station_ip 5.119.63.197 116351 port 137 116351 unique_id port 116354 username khalili 116354 kill_reason Another user logged on this global unique id 116347 remote_ip 10.8.0.50 116352 username mahdiyehalizadeh 116352 mac 116352 bytes_out 138865 116352 bytes_in 1549090 116352 station_ip 37.129.173.47 116352 port 146 116352 unique_id port 116352 remote_ip 10.8.0.82 116355 username kordestani 116355 kill_reason Another user logged on this global unique id 116355 mac 116355 bytes_out 0 116355 bytes_in 0 116355 station_ip 83.123.10.127 116355 port 144 116355 unique_id port 116355 remote_ip 10.8.0.134 116356 username aminvpn 116356 mac 116356 bytes_out 0 116356 bytes_in 0 116356 station_ip 83.123.124.208 116356 port 146 116356 unique_id port 116356 remote_ip 10.8.0.14 116363 username morteza 116363 kill_reason Another user logged on this global unique id 116363 mac 116363 bytes_out 0 116363 bytes_in 0 116363 station_ip 37.129.37.118 116363 port 145 116363 unique_id port 116366 username alipour 116366 kill_reason Another user logged on this global unique id 116366 mac 116366 bytes_out 0 116366 bytes_in 0 116366 station_ip 83.123.164.214 116366 port 98 116366 unique_id port 116366 remote_ip 10.8.0.102 116368 username forozande 116368 mac 116368 bytes_out 1259033 116368 bytes_in 13890295 116368 station_ip 37.129.207.233 116368 port 143 116368 unique_id port 116368 remote_ip 10.8.0.74 116374 username khalili 116374 kill_reason Another user logged on this global unique id 116374 mac 116374 bytes_out 0 116374 bytes_in 0 116374 station_ip 5.120.84.124 116374 port 138 116374 unique_id port 116375 username morteza 116375 kill_reason Another user logged on this global unique id 116375 mac 116375 bytes_out 0 116375 bytes_in 0 116375 station_ip 37.129.37.118 116375 port 145 116375 unique_id port 116377 username amir 116377 mac 116377 bytes_out 62159 116377 bytes_in 247663 116377 station_ip 46.225.212.132 116377 port 143 116377 unique_id port 116377 remote_ip 10.8.0.50 116381 username rezaei 116381 kill_reason Another user logged on this global unique id 116381 mac 116381 bytes_out 0 116381 bytes_in 0 116381 station_ip 5.120.169.220 116381 port 144 116381 unique_id port 116381 remote_ip 10.8.0.206 116383 username rezaei 116383 mac 116383 bytes_out 0 116383 bytes_in 0 116383 station_ip 5.120.169.220 116383 port 144 116383 unique_id port 116384 username amir 116384 mac 116384 bytes_out 0 116384 bytes_in 0 116384 station_ip 46.225.212.132 116384 port 51 116384 unique_id port 116384 remote_ip 10.8.1.22 116386 username amir 116386 mac 116386 bytes_out 0 116386 bytes_in 0 116386 station_ip 46.225.212.132 116386 port 51 116386 unique_id port 116386 remote_ip 10.8.1.22 116387 username tahmasebi 116387 kill_reason Another user logged on this global unique id 116387 mac 116387 bytes_out 0 116387 bytes_in 0 116387 station_ip 5.119.63.197 116387 port 137 116387 unique_id port 116388 username morteza 116388 kill_reason Another user logged on this global unique id 116388 mac 116388 bytes_out 0 116388 bytes_in 0 116388 station_ip 37.129.37.118 116388 port 145 116388 unique_id port 116391 username ehsun 116391 kill_reason Another user logged on this global unique id 116391 mac 116391 bytes_out 0 116391 bytes_in 0 116391 station_ip 37.129.121.51 116391 port 143 116391 unique_id port 116394 username tahmasebi 116394 kill_reason Another user logged on this global unique id 116394 mac 116394 bytes_out 0 116394 bytes_in 0 116394 station_ip 5.119.63.197 116394 port 137 116394 unique_id port 116396 username ehsun 116396 kill_reason Another user logged on this global unique id 116396 mac 116396 bytes_out 0 116396 bytes_in 0 116396 station_ip 37.129.121.51 116396 port 143 116396 unique_id port 116401 username rezaei 116354 mac 116354 bytes_out 0 116354 bytes_in 0 116354 station_ip 5.120.84.124 116354 port 138 116354 unique_id port 116354 remote_ip 10.8.0.86 116357 username alirezazadeh 116357 unique_id port 116357 terminate_cause Lost-Carrier 116357 bytes_out 207359 116357 bytes_in 1419906 116357 station_ip 5.119.175.134 116357 port 15729452 116357 nas_port_type Virtual 116357 remote_ip 5.5.5.25 116362 username kordestani 116362 mac 116362 bytes_out 0 116362 bytes_in 0 116362 station_ip 83.123.10.127 116362 port 144 116362 unique_id port 116364 username aminvpn 116364 unique_id port 116364 terminate_cause Lost-Carrier 116364 bytes_out 5135518 116364 bytes_in 101237360 116364 station_ip 5.125.120.36 116364 port 15729450 116364 nas_port_type Virtual 116364 remote_ip 5.5.5.22 116367 username aminvpn 116367 kill_reason Another user logged on this global unique id 116367 mac 116367 bytes_out 0 116367 bytes_in 0 116367 station_ip 83.123.124.208 116367 port 146 116367 unique_id port 116369 username amir 116369 mac 116369 bytes_out 57109 116369 bytes_in 328610 116369 station_ip 46.225.212.132 116369 port 147 116369 unique_id port 116369 remote_ip 10.8.0.50 116373 username aminvpn 116373 mac 116373 bytes_out 0 116373 bytes_in 0 116373 station_ip 83.123.124.208 116373 port 146 116373 unique_id port 116376 username ehsun 116376 mac 116376 bytes_out 0 116376 bytes_in 0 116376 station_ip 37.129.121.51 116376 port 143 116376 unique_id port 116376 remote_ip 10.8.0.162 116378 username morteza 116378 kill_reason Another user logged on this global unique id 116378 mac 116378 bytes_out 0 116378 bytes_in 0 116378 station_ip 37.129.37.118 116378 port 145 116378 unique_id port 116379 username khalili 116379 kill_reason Another user logged on this global unique id 116379 mac 116379 bytes_out 0 116379 bytes_in 0 116379 station_ip 5.120.84.124 116379 port 138 116379 unique_id port 116380 username amir 116380 mac 116380 bytes_out 0 116380 bytes_in 0 116380 station_ip 46.225.212.132 116380 port 51 116380 unique_id port 116380 remote_ip 10.8.1.22 116382 username amir 116382 mac 116382 bytes_out 0 116382 bytes_in 0 116382 station_ip 46.225.212.132 116382 port 51 116382 unique_id port 116382 remote_ip 10.8.1.22 116389 username amir 116389 mac 116389 bytes_out 0 116389 bytes_in 0 116389 station_ip 46.225.212.132 116389 port 144 116389 unique_id port 116389 remote_ip 10.8.0.50 116390 username khalili 116390 kill_reason Another user logged on this global unique id 116390 mac 116390 bytes_out 0 116390 bytes_in 0 116390 station_ip 5.120.84.124 116390 port 138 116390 unique_id port 116392 username khalili 116392 mac 116392 bytes_out 0 116392 bytes_in 0 116392 station_ip 5.120.84.124 116392 port 138 116392 unique_id port 116393 username mohammadmahdi 116393 mac 116393 bytes_out 0 116393 bytes_in 0 116393 station_ip 83.122.100.90 116393 port 148 116393 unique_id port 116393 remote_ip 10.8.0.54 116395 username morteza 116395 kill_reason Another user logged on this global unique id 116395 mac 116395 bytes_out 0 116395 bytes_in 0 116395 station_ip 37.129.37.118 116395 port 145 116395 unique_id port 116397 username ehsun 116397 mac 116397 bytes_out 0 116397 bytes_in 0 116397 station_ip 37.129.121.51 116397 port 143 116397 unique_id port 116398 username ehsun 116398 mac 116398 bytes_out 0 116398 bytes_in 0 116398 station_ip 37.129.121.51 116398 port 143 116398 unique_id port 116398 remote_ip 10.8.0.162 116405 username hoorieh 116405 mac 116405 bytes_out 0 116361 unique_id port 116361 remote_ip 10.8.0.50 116365 username aminvpn 116365 kill_reason Another user logged on this global unique id 116365 mac 116365 bytes_out 0 116365 bytes_in 0 116365 station_ip 83.123.124.208 116365 port 146 116365 unique_id port 116365 remote_ip 10.8.0.14 116370 username avaanna 116370 kill_reason Another user logged on this global unique id 116370 mac 116370 bytes_out 0 116370 bytes_in 0 116370 station_ip 83.122.26.189 116370 port 142 116370 unique_id port 116370 remote_ip 10.8.0.98 116371 username aminvpn 116371 kill_reason Another user logged on this global unique id 116371 mac 116371 bytes_out 0 116371 bytes_in 0 116371 station_ip 83.123.124.208 116371 port 146 116371 unique_id port 116372 username ehsun 116372 mac 116372 bytes_out 56610 116372 bytes_in 93476 116372 station_ip 46.225.208.208 116372 port 143 116372 unique_id port 116372 remote_ip 10.8.0.162 116385 username ehsun 116385 kill_reason Another user logged on this global unique id 116385 mac 116385 bytes_out 0 116385 bytes_in 0 116385 station_ip 37.129.121.51 116385 port 143 116385 unique_id port 116385 remote_ip 10.8.0.162 116399 username avaanna 116399 kill_reason Another user logged on this global unique id 116399 mac 116399 bytes_out 0 116399 bytes_in 0 116399 station_ip 83.122.26.189 116399 port 142 116399 unique_id port 116400 username kordestani 116400 kill_reason Another user logged on this global unique id 116400 mac 116400 bytes_out 0 116400 bytes_in 0 116400 station_ip 151.235.106.179 116400 port 146 116400 unique_id port 116400 remote_ip 10.8.0.134 116409 username alirr 116409 unique_id port 116409 terminate_cause Lost-Carrier 116409 bytes_out 1058656 116409 bytes_in 20841804 116409 station_ip 5.120.89.225 116409 port 15729453 116409 nas_port_type Virtual 116409 remote_ip 5.5.5.27 116411 username ehsun 116411 mac 116411 bytes_out 0 116411 bytes_in 0 116411 station_ip 37.129.121.51 116411 port 51 116411 unique_id port 116412 username amir 116412 mac 116412 bytes_out 0 116412 bytes_in 0 116412 station_ip 46.225.212.132 116412 port 144 116412 unique_id port 116412 remote_ip 10.8.0.50 116415 username kordestani 116415 kill_reason Another user logged on this global unique id 116415 mac 116415 bytes_out 0 116415 bytes_in 0 116415 station_ip 151.235.106.179 116415 port 146 116415 unique_id port 116417 username mahdixz 116417 unique_id port 116417 terminate_cause User-Request 116417 bytes_out 924551 116417 bytes_in 12496145 116417 station_ip 151.235.112.254 116417 port 15729456 116417 nas_port_type Virtual 116417 remote_ip 5.5.5.32 116424 username sabaghnezhad 116424 mac 116424 bytes_out 0 116424 bytes_in 0 116424 station_ip 113.203.91.151 116424 port 140 116424 unique_id port 116424 remote_ip 10.8.0.186 116425 username ahmadipour 116425 unique_id port 116425 terminate_cause Lost-Carrier 116425 bytes_out 71491 116425 bytes_in 740173 116425 station_ip 37.129.113.42 116425 port 15729457 116425 nas_port_type Virtual 116425 remote_ip 5.5.5.34 116426 username musa 116426 kill_reason Another user logged on this global unique id 116426 mac 116426 bytes_out 0 116426 bytes_in 0 116426 station_ip 83.122.70.159 116426 port 125 116426 unique_id port 116430 username sabaghnezhad 116430 mac 116430 bytes_out 0 116430 bytes_in 0 116430 station_ip 113.203.91.151 116430 port 140 116430 unique_id port 116430 remote_ip 10.8.0.186 116431 username mohammadmahdi 116431 mac 116431 bytes_out 0 116431 bytes_in 0 116431 station_ip 5.119.248.28 116431 port 142 116431 unique_id port 116431 remote_ip 10.8.0.54 116441 username zare 116441 mac 116441 bytes_out 1667384 116401 mac 116401 bytes_out 3329369 116401 bytes_in 37095267 116401 station_ip 5.120.169.220 116401 port 138 116401 unique_id port 116401 remote_ip 10.8.0.206 116402 username avaanna 116402 mac 116402 bytes_out 0 116402 bytes_in 0 116402 station_ip 83.122.26.189 116402 port 142 116402 unique_id port 116403 username ahmadi 116403 unique_id port 116403 terminate_cause User-Request 116403 bytes_out 48043 116403 bytes_in 501359 116403 station_ip 83.123.28.102 116403 port 15729454 116403 nas_port_type Virtual 116403 remote_ip 5.5.5.29 116404 username morteza 116404 mac 116404 bytes_out 0 116404 bytes_in 0 116404 station_ip 37.129.37.118 116404 port 145 116404 unique_id port 116406 username kordestani 116406 kill_reason Another user logged on this global unique id 116406 mac 116406 bytes_out 0 116406 bytes_in 0 116406 station_ip 151.235.106.179 116406 port 146 116406 unique_id port 116413 username kordestani 116413 kill_reason Another user logged on this global unique id 116413 mac 116413 bytes_out 0 116413 bytes_in 0 116413 station_ip 151.235.106.179 116413 port 146 116413 unique_id port 116414 username musa 116414 kill_reason Another user logged on this global unique id 116414 mac 116414 bytes_out 0 116414 bytes_in 0 116414 station_ip 83.122.70.159 116414 port 125 116414 unique_id port 116416 username kordestani 116416 mac 116416 bytes_out 0 116416 bytes_in 0 116416 station_ip 151.235.106.179 116416 port 146 116416 unique_id port 116421 username malekpoir 116421 mac 116421 bytes_out 0 116421 bytes_in 0 116421 station_ip 5.120.156.76 116421 port 141 116421 unique_id port 116422 username musa 116422 kill_reason Another user logged on this global unique id 116422 mac 116422 bytes_out 0 116422 bytes_in 0 116422 station_ip 83.122.70.159 116422 port 125 116422 unique_id port 116427 username rezasekonji 116427 mac 116427 bytes_out 0 116427 bytes_in 0 116427 station_ip 83.122.250.216 116427 port 141 116427 unique_id port 116427 remote_ip 10.8.0.130 116428 username rezasekonji 116428 mac 116428 bytes_out 0 116428 bytes_in 0 116428 station_ip 83.122.250.216 116428 port 141 116428 unique_id port 116428 remote_ip 10.8.0.130 116429 username rezasekonji 116429 mac 116429 bytes_out 0 116429 bytes_in 0 116429 station_ip 83.122.250.216 116429 port 141 116429 unique_id port 116429 remote_ip 10.8.0.130 116432 username rezasekonji 116432 mac 116432 bytes_out 0 116432 bytes_in 0 116432 station_ip 83.122.250.216 116432 port 140 116432 unique_id port 116432 remote_ip 10.8.0.130 116433 username rezasekonji 116433 mac 116433 bytes_out 0 116433 bytes_in 0 116433 station_ip 83.122.250.216 116433 port 140 116433 unique_id port 116433 remote_ip 10.8.0.130 116434 username alihosseini1 116434 mac 116434 bytes_out 0 116434 bytes_in 0 116434 station_ip 5.120.117.153 116434 port 138 116434 unique_id port 116434 remote_ip 10.8.0.166 116438 username musa 116438 mac 116438 bytes_out 0 116438 bytes_in 0 116438 station_ip 83.122.70.159 116438 port 125 116438 unique_id port 116439 username mahdixz 116439 unique_id port 116439 terminate_cause Lost-Carrier 116439 bytes_out 3857635 116439 bytes_in 123086415 116439 station_ip 151.235.112.254 116439 port 15729458 116439 nas_port_type Virtual 116439 remote_ip 5.5.5.35 116445 username bcboard 116445 unique_id port 116445 terminate_cause User-Request 116445 bytes_out 2140367 116445 bytes_in 80899507 116445 station_ip 113.203.44.238 116445 port 15729461 116445 nas_port_type Virtual 116445 remote_ip 5.5.5.244 116449 username sabaghnezhad 116405 bytes_in 0 116405 station_ip 5.120.108.158 116405 port 147 116405 unique_id port 116405 remote_ip 10.8.0.38 116407 username ehsun 116407 kill_reason Another user logged on this global unique id 116407 mac 116407 bytes_out 0 116407 bytes_in 0 116407 station_ip 37.129.121.51 116407 port 51 116407 unique_id port 116407 remote_ip 10.8.1.126 116408 username musa 116408 kill_reason Another user logged on this global unique id 116408 mac 116408 bytes_out 0 116408 bytes_in 0 116408 station_ip 83.122.70.159 116408 port 125 116408 unique_id port 116410 username mosi 116410 mac 116410 bytes_out 0 116410 bytes_in 0 116410 station_ip 94.176.13.123 116410 port 143 116410 unique_id port 116410 remote_ip 10.8.0.138 116418 username musa 116418 kill_reason Another user logged on this global unique id 116418 mac 116418 bytes_out 0 116418 bytes_in 0 116418 station_ip 83.122.70.159 116418 port 125 116418 unique_id port 116419 username ehsun 116419 mac 116419 bytes_out 0 116419 bytes_in 0 116419 station_ip 46.225.208.208 116419 port 138 116419 unique_id port 116419 remote_ip 10.8.0.162 116420 username rezasekonji 116420 mac 116420 bytes_out 0 116420 bytes_in 0 116420 station_ip 83.122.250.216 116420 port 143 116420 unique_id port 116420 remote_ip 10.8.0.130 116423 username tahmasebi 116423 kill_reason Another user logged on this global unique id 116423 mac 116423 bytes_out 0 116423 bytes_in 0 116423 station_ip 5.119.63.197 116423 port 137 116423 unique_id port 116435 username tahmasebi 116435 kill_reason Another user logged on this global unique id 116435 mac 116435 bytes_out 0 116435 bytes_in 0 116435 station_ip 5.119.63.197 116435 port 137 116435 unique_id port 116436 username mostafa_es78 116436 unique_id port 116436 terminate_cause Lost-Carrier 116436 bytes_out 787712 116436 bytes_in 6230984 116436 station_ip 178.236.35.96 116436 port 15729455 116436 nas_port_type Virtual 116436 remote_ip 5.5.5.30 116437 username bcboard 116437 unique_id port 116437 terminate_cause User-Request 116437 bytes_out 26130 116437 bytes_in 51666 116437 station_ip 113.203.44.238 116437 port 15729459 116437 nas_port_type Virtual 116437 remote_ip 5.5.5.42 116440 username tahmasebi 116440 kill_reason Another user logged on this global unique id 116440 mac 116440 bytes_out 0 116440 bytes_in 0 116440 station_ip 5.119.63.197 116440 port 137 116440 unique_id port 116443 username tahmasebi 116443 kill_reason Another user logged on this global unique id 116443 mac 116443 bytes_out 0 116443 bytes_in 0 116443 station_ip 5.119.63.197 116443 port 137 116443 unique_id port 116446 username tahmasebi 116446 kill_reason Another user logged on this global unique id 116446 mac 116446 bytes_out 0 116446 bytes_in 0 116446 station_ip 5.119.63.197 116446 port 137 116446 unique_id port 116448 username sabaghnezhad 116448 mac 116448 bytes_out 0 116448 bytes_in 0 116448 station_ip 83.123.57.188 116448 port 125 116448 unique_id port 116448 remote_ip 10.8.0.186 116450 username sabaghnezhad 116450 mac 116450 bytes_out 7780 116450 bytes_in 15330 116450 station_ip 83.123.57.188 116450 port 51 116450 unique_id port 116450 remote_ip 10.8.1.130 116455 username tahmasebi 116455 kill_reason Another user logged on this global unique id 116455 mac 116455 bytes_out 0 116455 bytes_in 0 116455 station_ip 5.119.63.197 116455 port 137 116455 unique_id port 116456 username zare 116456 kill_reason Another user logged on this global unique id 116456 mac 116456 bytes_out 0 116456 bytes_in 0 116456 station_ip 37.27.14.172 116456 port 50 116456 unique_id port 116460 username zare 116460 kill_reason Another user logged on this global unique id 116441 bytes_in 10838198 116441 station_ip 37.27.14.172 116441 port 50 116441 unique_id port 116441 remote_ip 10.8.1.58 116442 username bcboard 116442 unique_id port 116442 terminate_cause User-Request 116442 bytes_out 175788 116442 bytes_in 650905 116442 station_ip 113.203.44.238 116442 port 15729460 116442 nas_port_type Virtual 116442 remote_ip 5.5.5.243 116444 username mahdiyehalizadeh 116444 mac 116444 bytes_out 1306893 116444 bytes_in 18160236 116444 station_ip 113.203.53.219 116444 port 138 116444 unique_id port 116444 remote_ip 10.8.0.82 116447 username abravesh 116447 unique_id port 116447 terminate_cause User-Request 116447 bytes_out 260 116447 bytes_in 176 116447 station_ip 5.119.75.218 116447 port 15729462 116447 nas_port_type Virtual 116447 remote_ip 5.5.5.255 116451 username zare 116451 kill_reason Another user logged on this global unique id 116451 mac 116451 bytes_out 0 116451 bytes_in 0 116451 station_ip 37.27.14.172 116451 port 50 116451 unique_id port 116451 remote_ip 10.8.1.58 116452 username zare 116452 kill_reason Another user logged on this global unique id 116452 mac 116452 bytes_out 0 116452 bytes_in 0 116452 station_ip 37.27.14.172 116452 port 50 116452 unique_id port 116453 username zare 116453 kill_reason Another user logged on this global unique id 116453 mac 116453 bytes_out 0 116453 bytes_in 0 116453 station_ip 37.27.14.172 116453 port 50 116453 unique_id port 116459 username tahmasebi 116459 kill_reason Another user logged on this global unique id 116459 mac 116459 bytes_out 0 116459 bytes_in 0 116459 station_ip 5.119.63.197 116459 port 137 116459 unique_id port 116462 username tahmasebi 116462 kill_reason Another user logged on this global unique id 116462 mac 116462 bytes_out 0 116462 bytes_in 0 116462 station_ip 5.119.63.197 116462 port 137 116462 unique_id port 116464 username zare 116464 kill_reason Another user logged on this global unique id 116464 mac 116464 bytes_out 0 116464 bytes_in 0 116464 station_ip 37.27.14.172 116464 port 50 116464 unique_id port 116465 username tahmasebi 116465 kill_reason Another user logged on this global unique id 116465 mac 116465 bytes_out 0 116465 bytes_in 0 116465 station_ip 5.119.63.197 116465 port 137 116465 unique_id port 116468 username tahmasebi 116468 kill_reason Another user logged on this global unique id 116468 mac 116468 bytes_out 0 116468 bytes_in 0 116468 station_ip 5.119.63.197 116468 port 137 116468 unique_id port 116470 username zare 116470 kill_reason Another user logged on this global unique id 116470 mac 116470 bytes_out 0 116470 bytes_in 0 116470 station_ip 37.27.14.172 116470 port 50 116470 unique_id port 116476 username mehdizare 116476 mac 116476 bytes_out 999215 116476 bytes_in 1214624 116476 station_ip 5.119.127.238 116476 port 133 116476 unique_id port 116476 remote_ip 10.8.0.90 116481 username tahmasebi 116481 kill_reason Another user logged on this global unique id 116481 mac 116481 bytes_out 0 116481 bytes_in 0 116481 station_ip 5.119.63.197 116481 port 137 116481 unique_id port 116482 username mehdizare 116482 mac 116482 bytes_out 0 116482 bytes_in 0 116482 station_ip 5.119.127.238 116482 port 50 116482 unique_id port 116482 remote_ip 10.8.1.42 116485 username morteza 116485 mac 116485 bytes_out 7905883 116485 bytes_in 23797860 116485 station_ip 37.129.12.154 116485 port 98 116485 unique_id port 116485 remote_ip 10.8.0.46 116486 username houshang 116486 mac 116486 bytes_out 0 116486 bytes_in 0 116486 station_ip 5.119.51.167 116486 port 98 116486 unique_id port 116486 remote_ip 10.8.0.22 116487 username rostami 116487 mac 116487 bytes_out 0 116487 bytes_in 0 116449 mac 116449 bytes_out 0 116449 bytes_in 0 116449 station_ip 83.123.57.188 116449 port 138 116449 unique_id port 116449 remote_ip 10.8.0.186 116454 username mosi 116454 kill_reason Another user logged on this global unique id 116454 mac 116454 bytes_out 0 116454 bytes_in 0 116454 station_ip 94.176.13.123 116454 port 125 116454 unique_id port 116454 remote_ip 10.8.0.138 116457 username sobhan 116457 unique_id port 116457 terminate_cause Lost-Carrier 116457 bytes_out 1354599 116457 bytes_in 22690241 116457 station_ip 5.120.137.140 116457 port 15729463 116457 nas_port_type Virtual 116457 remote_ip 5.5.5.0 116458 username zare 116458 kill_reason Another user logged on this global unique id 116458 mac 116458 bytes_out 0 116458 bytes_in 0 116458 station_ip 37.27.14.172 116458 port 50 116458 unique_id port 116466 username zare 116466 kill_reason Another user logged on this global unique id 116466 mac 116466 bytes_out 0 116466 bytes_in 0 116466 station_ip 37.27.14.172 116466 port 50 116466 unique_id port 116472 username zare 116472 kill_reason Another user logged on this global unique id 116472 mac 116472 bytes_out 0 116472 bytes_in 0 116472 station_ip 37.27.14.172 116472 port 50 116472 unique_id port 116474 username zare 116474 mac 116474 bytes_out 0 116474 bytes_in 0 116474 station_ip 37.27.14.172 116474 port 50 116474 unique_id port 116477 username asma2026 116477 mac 116477 bytes_out 4269409 116477 bytes_in 45615471 116477 station_ip 83.122.196.36 116477 port 138 116477 unique_id port 116477 remote_ip 10.8.0.170 116480 username mehdizare 116480 mac 116480 bytes_out 0 116480 bytes_in 0 116480 station_ip 5.119.127.238 116480 port 50 116480 unique_id port 116480 remote_ip 10.8.1.42 116484 username mohammadjavad 116484 mac 116484 bytes_out 142490 116484 bytes_in 1460904 116484 station_ip 37.129.108.172 116484 port 98 116484 unique_id port 116484 remote_ip 10.8.0.142 116489 username rostami 116489 mac 116489 bytes_out 324870 116489 bytes_in 1373602 116489 station_ip 5.120.150.99 116489 port 54 116489 unique_id port 116489 remote_ip 10.8.1.142 116490 username mosi 116490 kill_reason Another user logged on this global unique id 116490 mac 116490 bytes_out 0 116490 bytes_in 0 116490 station_ip 94.176.13.123 116490 port 125 116490 unique_id port 116498 username morteza 116498 mac 116498 bytes_out 0 116498 bytes_in 0 116498 station_ip 37.129.68.98 116498 port 98 116498 unique_id port 116498 remote_ip 10.8.0.46 116499 username rostami 116499 kill_reason Another user logged on this global unique id 116499 mac 116499 bytes_out 0 116499 bytes_in 0 116499 station_ip 5.120.150.99 116499 port 54 116499 unique_id port 116499 remote_ip 10.8.1.142 116502 username mehdizare 116502 mac 116502 bytes_out 420960 116502 bytes_in 686470 116502 station_ip 5.119.127.238 116502 port 133 116502 unique_id port 116502 remote_ip 10.8.0.90 116504 username mohammadjavad 116504 mac 116504 bytes_out 0 116504 bytes_in 0 116504 station_ip 83.123.3.224 116504 port 140 116504 unique_id port 116504 remote_ip 10.8.0.142 116506 username mirzaei 116506 mac 116506 bytes_out 0 116506 bytes_in 0 116506 station_ip 5.120.84.108 116506 port 122 116506 unique_id port 116510 username mohammadjavad 116510 mac 116510 bytes_out 0 116510 bytes_in 0 116510 station_ip 83.122.51.255 116510 port 140 116510 unique_id port 116510 remote_ip 10.8.0.142 116513 username alipour 116513 mac 116513 bytes_out 0 116513 bytes_in 0 116513 station_ip 83.123.164.214 116513 port 50 116513 unique_id port 116460 mac 116460 bytes_out 0 116460 bytes_in 0 116460 station_ip 37.27.14.172 116460 port 50 116460 unique_id port 116461 username zare 116461 kill_reason Another user logged on this global unique id 116461 mac 116461 bytes_out 0 116461 bytes_in 0 116461 station_ip 37.27.14.172 116461 port 50 116461 unique_id port 116463 username zare 116463 kill_reason Another user logged on this global unique id 116463 mac 116463 bytes_out 0 116463 bytes_in 0 116463 station_ip 37.27.14.172 116463 port 50 116463 unique_id port 116467 username zare 116467 kill_reason Another user logged on this global unique id 116467 mac 116467 bytes_out 0 116467 bytes_in 0 116467 station_ip 37.27.14.172 116467 port 50 116467 unique_id port 116469 username zare 116469 kill_reason Another user logged on this global unique id 116469 mac 116469 bytes_out 0 116469 bytes_in 0 116469 station_ip 37.27.14.172 116469 port 50 116469 unique_id port 116471 username tahmasebi 116471 kill_reason Another user logged on this global unique id 116471 mac 116471 bytes_out 0 116471 bytes_in 0 116471 station_ip 5.119.63.197 116471 port 137 116471 unique_id port 116473 username zare 116473 kill_reason Another user logged on this global unique id 116473 mac 116473 bytes_out 0 116473 bytes_in 0 116473 station_ip 37.27.14.172 116473 port 50 116473 unique_id port 116475 username tahmasebi 116475 kill_reason Another user logged on this global unique id 116475 mac 116475 bytes_out 0 116475 bytes_in 0 116475 station_ip 5.119.63.197 116475 port 137 116475 unique_id port 116478 username mehdizare 116478 mac 116478 bytes_out 23342 116478 bytes_in 38795 116478 station_ip 5.119.127.238 116478 port 140 116478 unique_id port 116478 remote_ip 10.8.0.90 116479 username tahmasebi 116479 kill_reason Another user logged on this global unique id 116479 mac 116479 bytes_out 0 116479 bytes_in 0 116479 station_ip 5.119.63.197 116479 port 137 116479 unique_id port 116483 username alipour 116483 mac 116483 bytes_out 0 116483 bytes_in 0 116483 station_ip 83.123.164.214 116483 port 98 116483 unique_id port 116491 username avaanna 116491 mac 116491 bytes_out 0 116491 bytes_in 0 116491 station_ip 113.203.77.63 116491 port 98 116491 unique_id port 116491 remote_ip 10.8.0.98 116493 username hamid.e 116493 unique_id port 116493 terminate_cause User-Request 116493 bytes_out 2627651 116493 bytes_in 21812445 116493 station_ip 37.27.15.104 116493 port 15729464 116493 nas_port_type Virtual 116493 remote_ip 5.5.5.15 116494 username rostami 116494 mac 116494 bytes_out 3341386 116494 bytes_in 38939351 116494 station_ip 5.120.150.99 116494 port 54 116494 unique_id port 116494 remote_ip 10.8.1.142 116497 username rostami 116497 mac 116497 bytes_out 0 116497 bytes_in 0 116497 station_ip 5.120.150.99 116497 port 54 116497 unique_id port 116497 remote_ip 10.8.1.142 116507 username forozande 116507 mac 116507 bytes_out 641645 116507 bytes_in 11099016 116507 station_ip 83.123.50.132 116507 port 133 116507 unique_id port 116507 remote_ip 10.8.0.74 116508 username alipour 116508 mac 116508 bytes_out 0 116508 bytes_in 0 116508 station_ip 83.123.164.214 116508 port 50 116508 unique_id port 116508 remote_ip 10.8.1.50 116509 username rostami 116509 mac 116509 bytes_out 120859 116509 bytes_in 446848 116509 station_ip 5.120.150.99 116509 port 55 116509 unique_id port 116509 remote_ip 10.8.1.142 116511 username forozande 116511 mac 116511 bytes_out 1667325 116511 bytes_in 23335311 116511 station_ip 113.203.41.47 116511 port 133 116511 unique_id port 116511 remote_ip 10.8.0.74 116487 station_ip 5.120.150.99 116487 port 98 116487 unique_id port 116487 remote_ip 10.8.0.194 116488 username rostami 116488 mac 116488 bytes_out 31488 116488 bytes_in 107220 116488 station_ip 5.120.150.99 116488 port 54 116488 unique_id port 116488 remote_ip 10.8.1.142 116492 username mohammadjavad 116492 mac 116492 bytes_out 307058 116492 bytes_in 985592 116492 station_ip 113.203.64.1 116492 port 138 116492 unique_id port 116492 remote_ip 10.8.0.142 116495 username rostami 116495 mac 116495 bytes_out 0 116495 bytes_in 0 116495 station_ip 5.120.150.99 116495 port 54 116495 unique_id port 116495 remote_ip 10.8.1.142 116496 username morteza 116496 mac 116496 bytes_out 0 116496 bytes_in 0 116496 station_ip 37.129.29.154 116496 port 98 116496 unique_id port 116496 remote_ip 10.8.0.46 116500 username morteza 116500 mac 116500 bytes_out 2281 116500 bytes_in 5119 116500 station_ip 37.129.68.98 116500 port 55 116500 unique_id port 116500 remote_ip 10.8.1.62 116501 username rostami 116501 mac 116501 bytes_out 0 116501 bytes_in 0 116501 station_ip 5.120.150.99 116501 port 54 116501 unique_id port 116503 username rostami 116503 mac 116503 bytes_out 570441 116503 bytes_in 7525194 116503 station_ip 5.120.150.99 116503 port 54 116503 unique_id port 116503 remote_ip 10.8.1.142 116505 username mehdizare 116505 mac 116505 bytes_out 0 116505 bytes_in 0 116505 station_ip 5.119.127.238 116505 port 141 116505 unique_id port 116505 remote_ip 10.8.0.90 116512 username morteza 116512 mac 116512 bytes_out 242768 116512 bytes_in 2360186 116512 station_ip 37.129.63.42 116512 port 55 116512 unique_id port 116512 remote_ip 10.8.1.62 116518 username alipour 116518 mac 116518 bytes_out 0 116518 bytes_in 0 116518 station_ip 83.123.164.214 116518 port 50 116518 unique_id port 116518 remote_ip 10.8.1.50 116532 username morteza 116532 mac 116532 bytes_out 0 116532 bytes_in 0 116532 station_ip 37.129.63.42 116532 port 125 116532 unique_id port 116532 remote_ip 10.8.0.46 116536 username alipour 116536 kill_reason Another user logged on this global unique id 116536 mac 116536 bytes_out 0 116536 bytes_in 0 116536 station_ip 83.123.164.214 116536 port 50 116536 unique_id port 116536 remote_ip 10.8.1.50 116539 username mosi 116539 mac 116539 bytes_out 238900 116539 bytes_in 364636 116539 station_ip 94.176.13.123 116539 port 133 116539 unique_id port 116539 remote_ip 10.8.0.138 116547 username alihosseini1 116547 mac 116547 bytes_out 0 116547 bytes_in 0 116547 station_ip 5.120.110.150 116547 port 133 116547 unique_id port 116547 remote_ip 10.8.0.166 116550 username zare 116550 mac 116550 bytes_out 758327 116550 bytes_in 11218588 116550 station_ip 94.183.214.14 116550 port 50 116550 unique_id port 116550 remote_ip 10.8.1.58 116554 username alihosseini1 116554 kill_reason Another user logged on this global unique id 116554 mac 116554 bytes_out 0 116554 bytes_in 0 116554 station_ip 5.120.110.150 116554 port 133 116554 unique_id port 116554 remote_ip 10.8.0.166 116557 username mehdizare 116557 mac 116557 bytes_out 56545 116557 bytes_in 73903 116557 station_ip 5.119.127.238 116557 port 51 116557 unique_id port 116557 remote_ip 10.8.1.42 116558 username alirr 116558 unique_id port 116558 terminate_cause User-Request 116558 bytes_out 4053001 116558 bytes_in 101845623 116558 station_ip 37.27.18.224 116558 port 15729465 116558 nas_port_type Virtual 116558 remote_ip 5.5.5.31 116559 username musa 116559 kill_reason Another user logged on this global unique id 116513 remote_ip 10.8.1.50 116514 username mehdizare 116514 mac 116514 bytes_out 74891 116514 bytes_in 222159 116514 station_ip 5.119.127.238 116514 port 54 116514 unique_id port 116514 remote_ip 10.8.1.42 116516 username morteza 116516 mac 116516 bytes_out 1997 116516 bytes_in 4592 116516 station_ip 37.129.63.42 116516 port 133 116516 unique_id port 116516 remote_ip 10.8.0.46 116519 username mosi 116519 mac 116519 bytes_out 0 116519 bytes_in 0 116519 station_ip 94.176.13.123 116519 port 55 116519 unique_id port 116519 remote_ip 10.8.1.86 116523 username morteza 116523 mac 116523 bytes_out 0 116523 bytes_in 0 116523 station_ip 37.129.63.42 116523 port 133 116523 unique_id port 116523 remote_ip 10.8.0.46 116526 username mosi 116526 mac 116526 bytes_out 0 116526 bytes_in 0 116526 station_ip 37.153.181.210 116526 port 125 116526 unique_id port 116526 remote_ip 10.8.0.138 116528 username rostami 116528 mac 116528 bytes_out 0 116528 bytes_in 0 116528 station_ip 5.120.150.99 116528 port 55 116528 unique_id port 116528 remote_ip 10.8.1.142 116529 username morteza 116529 mac 116529 bytes_out 0 116529 bytes_in 0 116529 station_ip 37.129.63.42 116529 port 55 116529 unique_id port 116529 remote_ip 10.8.1.62 116530 username morteza 116530 mac 116530 bytes_out 0 116530 bytes_in 0 116530 station_ip 37.129.63.42 116530 port 125 116530 unique_id port 116530 remote_ip 10.8.0.46 116533 username morteza 116533 mac 116533 bytes_out 0 116533 bytes_in 0 116533 station_ip 37.129.63.42 116533 port 51 116533 unique_id port 116533 remote_ip 10.8.1.62 116534 username forozande 116534 mac 116534 bytes_out 522471 116534 bytes_in 2663758 116534 station_ip 113.203.41.47 116534 port 140 116534 unique_id port 116534 remote_ip 10.8.0.74 116538 username mehdizare 116538 mac 116538 bytes_out 0 116538 bytes_in 0 116538 station_ip 5.119.127.238 116538 port 54 116538 unique_id port 116538 remote_ip 10.8.1.42 116541 username morteza 116541 mac 116541 bytes_out 0 116541 bytes_in 0 116541 station_ip 37.129.80.102 116541 port 133 116541 unique_id port 116541 remote_ip 10.8.0.46 116542 username alipour 116542 mac 116542 bytes_out 0 116542 bytes_in 0 116542 station_ip 83.123.164.214 116542 port 50 116542 unique_id port 116543 username aminvpn 116543 mac 116543 bytes_out 932562 116543 bytes_in 2743737 116543 station_ip 37.129.227.160 116543 port 125 116543 unique_id port 116543 remote_ip 10.8.0.14 116544 username alihosseini1 116544 mac 116544 bytes_out 914563 116544 bytes_in 9632341 116544 station_ip 5.120.110.150 116544 port 50 116544 unique_id port 116544 remote_ip 10.8.1.106 116548 username mehdizare 116548 mac 116548 bytes_out 0 116548 bytes_in 0 116548 station_ip 5.119.127.238 116548 port 51 116548 unique_id port 116548 remote_ip 10.8.1.42 116549 username musa 116549 kill_reason Another user logged on this global unique id 116549 mac 116549 bytes_out 0 116549 bytes_in 0 116549 station_ip 83.122.3.207 116549 port 125 116549 unique_id port 116549 remote_ip 10.8.0.6 116551 username zare 116551 mac 116551 bytes_out 0 116551 bytes_in 0 116551 station_ip 94.183.214.14 116551 port 50 116551 unique_id port 116551 remote_ip 10.8.1.58 116552 username forozande 116552 mac 116552 bytes_out 2322366 116552 bytes_in 45854560 116552 station_ip 83.122.244.14 116552 port 140 116552 unique_id port 116552 remote_ip 10.8.0.74 116555 username zare 116555 mac 116555 bytes_out 116283 116515 username morteza 116515 mac 116515 bytes_out 255388 116515 bytes_in 1917228 116515 station_ip 37.129.63.42 116515 port 133 116515 unique_id port 116515 remote_ip 10.8.0.46 116517 username mosi 116517 mac 116517 bytes_out 0 116517 bytes_in 0 116517 station_ip 94.176.13.123 116517 port 125 116517 unique_id port 116520 username morteza 116520 mac 116520 bytes_out 0 116520 bytes_in 0 116520 station_ip 37.129.63.42 116520 port 125 116520 unique_id port 116520 remote_ip 10.8.0.46 116521 username morteza 116521 mac 116521 bytes_out 0 116521 bytes_in 0 116521 station_ip 37.129.63.42 116521 port 133 116521 unique_id port 116521 remote_ip 10.8.0.46 116522 username morteza 116522 mac 116522 bytes_out 0 116522 bytes_in 0 116522 station_ip 37.129.63.42 116522 port 133 116522 unique_id port 116522 remote_ip 10.8.0.46 116524 username morteza 116524 mac 116524 bytes_out 0 116524 bytes_in 0 116524 station_ip 37.129.63.42 116524 port 133 116524 unique_id port 116524 remote_ip 10.8.0.46 116525 username morteza 116525 mac 116525 bytes_out 0 116525 bytes_in 0 116525 station_ip 37.129.63.42 116525 port 133 116525 unique_id port 116525 remote_ip 10.8.0.46 116527 username morteza 116527 mac 116527 bytes_out 0 116527 bytes_in 0 116527 station_ip 37.129.63.42 116527 port 56 116527 unique_id port 116527 remote_ip 10.8.1.62 116531 username sabaghnezhad 116531 mac 116531 bytes_out 909429 116531 bytes_in 1055889 116531 station_ip 83.123.57.188 116531 port 51 116531 unique_id port 116531 remote_ip 10.8.1.130 116535 username morteza 116535 mac 116535 bytes_out 18795 116535 bytes_in 41929 116535 station_ip 37.129.63.42 116535 port 125 116535 unique_id port 116535 remote_ip 10.8.0.46 116537 username rostami 116537 mac 116537 bytes_out 0 116537 bytes_in 0 116537 station_ip 5.120.150.99 116537 port 51 116537 unique_id port 116537 remote_ip 10.8.1.142 116540 username forozande 116540 mac 116540 bytes_out 346260 116540 bytes_in 2236071 116540 station_ip 83.122.4.66 116540 port 140 116540 unique_id port 116540 remote_ip 10.8.0.74 116545 username alihosseini1 116545 mac 116545 bytes_out 0 116545 bytes_in 0 116545 station_ip 5.120.110.150 116545 port 125 116545 unique_id port 116545 remote_ip 10.8.0.166 116546 username alihosseini1 116546 mac 116546 bytes_out 0 116546 bytes_in 0 116546 station_ip 5.120.110.150 116546 port 125 116546 unique_id port 116546 remote_ip 10.8.0.166 116553 username musa 116553 kill_reason Another user logged on this global unique id 116553 mac 116553 bytes_out 0 116553 bytes_in 0 116553 station_ip 83.122.3.207 116553 port 125 116553 unique_id port 116556 username zare 116556 mac 116556 bytes_out 126108 116556 bytes_in 472520 116556 station_ip 94.183.214.14 116556 port 50 116556 unique_id port 116556 remote_ip 10.8.1.58 116560 username alihosseini1 116560 kill_reason Another user logged on this global unique id 116560 mac 116560 bytes_out 0 116560 bytes_in 0 116560 station_ip 5.120.110.150 116560 port 133 116560 unique_id port 116561 username forozande 116561 mac 116561 bytes_out 0 116561 bytes_in 0 116561 station_ip 113.203.92.253 116561 port 142 116561 unique_id port 116561 remote_ip 10.8.0.74 116563 username mehdizare 116563 mac 116563 bytes_out 0 116563 bytes_in 0 116563 station_ip 5.119.127.238 116563 port 51 116563 unique_id port 116563 remote_ip 10.8.1.42 116564 username kordestani 116564 mac 116564 bytes_out 0 116564 bytes_in 0 116555 bytes_in 884462 116555 station_ip 94.183.214.14 116555 port 50 116555 unique_id port 116555 remote_ip 10.8.1.58 116562 username mehdizare 116562 mac 116562 bytes_out 16304 116562 bytes_in 19917 116562 station_ip 5.119.127.238 116562 port 140 116562 unique_id port 116562 remote_ip 10.8.0.90 116565 username musa 116565 mac 116565 bytes_out 0 116565 bytes_in 0 116565 station_ip 83.122.3.207 116565 port 125 116565 unique_id port 116566 username mehdizare 116566 mac 116566 bytes_out 35143 116566 bytes_in 46049 116566 station_ip 5.119.127.238 116566 port 51 116566 unique_id port 116566 remote_ip 10.8.1.42 116567 username mehdizare 116567 mac 116567 bytes_out 12029 116567 bytes_in 14545 116567 station_ip 5.119.127.238 116567 port 51 116567 unique_id port 116567 remote_ip 10.8.1.42 116570 username mohammadjavad 116570 mac 116570 bytes_out 0 116570 bytes_in 0 116570 station_ip 83.122.203.76 116570 port 143 116570 unique_id port 116570 remote_ip 10.8.0.142 116571 username zare 116571 mac 116571 bytes_out 381388 116571 bytes_in 1467060 116571 station_ip 94.183.214.14 116571 port 50 116571 unique_id port 116571 remote_ip 10.8.1.58 116573 username alihosseini1 116573 kill_reason Another user logged on this global unique id 116573 mac 116573 bytes_out 0 116573 bytes_in 0 116573 station_ip 5.120.110.150 116573 port 133 116573 unique_id port 116576 username zare 116576 mac 116576 bytes_out 0 116576 bytes_in 0 116576 station_ip 94.183.214.14 116576 port 140 116576 unique_id port 116576 remote_ip 10.8.0.18 116580 username alihosseini1 116580 mac 116580 bytes_out 0 116580 bytes_in 0 116580 station_ip 5.120.110.150 116580 port 133 116580 unique_id port 116586 username rajaei 116586 mac 116586 bytes_out 0 116586 bytes_in 0 116586 station_ip 89.34.47.195 116586 port 133 116586 unique_id port 116589 username kordestani 116589 mac 116589 bytes_out 0 116589 bytes_in 0 116589 station_ip 151.235.76.191 116589 port 125 116589 unique_id port 116589 remote_ip 10.8.0.134 116590 username tahmasebi 116590 kill_reason Another user logged on this global unique id 116590 mac 116590 bytes_out 0 116590 bytes_in 0 116590 station_ip 5.119.63.197 116590 port 137 116590 unique_id port 116591 username malekpoir 116591 mac 116591 bytes_out 0 116591 bytes_in 0 116591 station_ip 5.120.156.76 116591 port 138 116591 unique_id port 116591 remote_ip 10.8.0.58 116593 username forozande 116593 mac 116593 bytes_out 0 116593 bytes_in 0 116593 station_ip 37.129.93.186 116593 port 140 116593 unique_id port 116593 remote_ip 10.8.0.74 116595 username alirr 116595 unique_id port 116595 terminate_cause User-Request 116595 bytes_out 1386324 116595 bytes_in 6785728 116595 station_ip 5.120.145.141 116595 port 15729468 116595 nas_port_type Virtual 116595 remote_ip 5.5.5.254 116597 username rezaei 116597 kill_reason Another user logged on this global unique id 116597 mac 116597 bytes_out 0 116597 bytes_in 0 116597 station_ip 5.120.88.45 116597 port 133 116597 unique_id port 116597 remote_ip 10.8.0.206 116599 username mehdizare 116599 mac 116599 bytes_out 7465 116599 bytes_in 14054 116599 station_ip 5.119.127.238 116599 port 55 116599 unique_id port 116599 remote_ip 10.8.1.42 116600 username mehdizare 116600 mac 116600 bytes_out 0 116600 bytes_in 0 116600 station_ip 5.119.127.238 116600 port 55 116600 unique_id port 116600 remote_ip 10.8.1.42 116601 username tahmasebi 116601 kill_reason Another user logged on this global unique id 116601 mac 116601 bytes_out 0 116601 bytes_in 0 116559 mac 116559 bytes_out 0 116559 bytes_in 0 116559 station_ip 83.122.3.207 116559 port 125 116559 unique_id port 116568 username mosi 116568 mac 116568 bytes_out 0 116568 bytes_in 0 116568 station_ip 151.235.64.245 116568 port 140 116568 unique_id port 116568 remote_ip 10.8.0.138 116574 username zare 116574 mac 116574 bytes_out 9957 116574 bytes_in 25467 116574 station_ip 94.183.214.14 116574 port 55 116574 unique_id port 116574 remote_ip 10.8.1.58 116575 username zare 116575 mac 116575 bytes_out 0 116575 bytes_in 0 116575 station_ip 94.183.214.14 116575 port 140 116575 unique_id port 116575 remote_ip 10.8.0.18 116581 username mehdizare 116581 mac 116581 bytes_out 13998 116581 bytes_in 23116 116581 station_ip 5.119.127.238 116581 port 51 116581 unique_id port 116581 remote_ip 10.8.1.42 116582 username zare 116582 mac 116582 bytes_out 0 116582 bytes_in 0 116582 station_ip 94.183.214.14 116582 port 140 116582 unique_id port 116582 remote_ip 10.8.0.18 116584 username kordestani 116584 mac 116584 bytes_out 0 116584 bytes_in 0 116584 station_ip 151.235.76.191 116584 port 125 116584 unique_id port 116584 remote_ip 10.8.0.134 116585 username rajaei 116585 kill_reason Another user logged on this global unique id 116585 mac 116585 bytes_out 0 116585 bytes_in 0 116585 station_ip 89.34.47.195 116585 port 133 116585 unique_id port 116588 username forozande 116588 mac 116588 bytes_out 0 116588 bytes_in 0 116588 station_ip 113.203.14.25 116588 port 133 116588 unique_id port 116588 remote_ip 10.8.0.74 116607 username rajaei 116607 kill_reason Another user logged on this global unique id 116607 mac 116607 bytes_out 0 116607 bytes_in 0 116607 station_ip 89.34.47.195 116607 port 140 116607 unique_id port 116607 remote_ip 10.8.0.34 116608 username asma2026 116608 mac 116608 bytes_out 0 116608 bytes_in 0 116608 station_ip 83.122.151.36 116608 port 138 116608 unique_id port 116608 remote_ip 10.8.0.170 116614 username asma2026 116614 mac 116614 bytes_out 0 116614 bytes_in 0 116614 station_ip 83.122.151.36 116614 port 138 116614 unique_id port 116614 remote_ip 10.8.0.170 116616 username asma2026 116616 mac 116616 bytes_out 0 116616 bytes_in 0 116616 station_ip 83.122.151.36 116616 port 138 116616 unique_id port 116616 remote_ip 10.8.0.170 116619 username sabaghnezhad 116619 mac 116619 bytes_out 0 116619 bytes_in 0 116619 station_ip 83.123.222.207 116619 port 50 116619 unique_id port 116619 remote_ip 10.8.1.130 116621 username rajaei 116621 kill_reason Another user logged on this global unique id 116621 mac 116621 bytes_out 0 116621 bytes_in 0 116621 station_ip 89.34.47.195 116621 port 140 116621 unique_id port 116622 username asma2026 116622 mac 116622 bytes_out 0 116622 bytes_in 0 116622 station_ip 83.122.151.36 116622 port 138 116622 unique_id port 116622 remote_ip 10.8.0.170 116632 username mehdizare 116632 mac 116632 bytes_out 19345 116632 bytes_in 31865 116632 station_ip 5.119.127.238 116632 port 140 116632 unique_id port 116632 remote_ip 10.8.0.90 116635 username avaanna 116635 mac 116635 bytes_out 0 116635 bytes_in 0 116635 station_ip 83.123.229.71 116635 port 133 116635 unique_id port 116635 remote_ip 10.8.0.98 116639 username musa 116639 kill_reason Another user logged on this global unique id 116639 mac 116639 bytes_out 0 116639 bytes_in 0 116639 station_ip 113.203.3.131 116639 port 125 116639 unique_id port 116640 username mehdizare 116640 mac 116640 bytes_out 0 116564 station_ip 151.235.76.191 116564 port 143 116564 unique_id port 116564 remote_ip 10.8.0.134 116569 username forozande 116569 mac 116569 bytes_out 0 116569 bytes_in 0 116569 station_ip 37.129.232.106 116569 port 144 116569 unique_id port 116569 remote_ip 10.8.0.74 116572 username musa 116572 mac 116572 bytes_out 0 116572 bytes_in 0 116572 station_ip 83.122.3.207 116572 port 142 116572 unique_id port 116572 remote_ip 10.8.0.6 116577 username zare 116577 mac 116577 bytes_out 0 116577 bytes_in 0 116577 station_ip 94.183.214.14 116577 port 140 116577 unique_id port 116577 remote_ip 10.8.0.18 116578 username mehdizare 116578 mac 116578 bytes_out 121376 116578 bytes_in 228487 116578 station_ip 5.119.127.238 116578 port 51 116578 unique_id port 116578 remote_ip 10.8.1.42 116579 username mehdizare 116579 mac 116579 bytes_out 18169 116579 bytes_in 29536 116579 station_ip 5.119.127.238 116579 port 51 116579 unique_id port 116579 remote_ip 10.8.1.42 116583 username rajaei 116583 kill_reason Another user logged on this global unique id 116583 mac 116583 bytes_out 0 116583 bytes_in 0 116583 station_ip 89.34.47.195 116583 port 133 116583 unique_id port 116583 remote_ip 10.8.0.34 116587 username kordestani 116587 mac 116587 bytes_out 99469 116587 bytes_in 185005 116587 station_ip 151.235.76.191 116587 port 51 116587 unique_id port 116587 remote_ip 10.8.1.98 116592 username avaanna 116592 mac 116592 bytes_out 0 116592 bytes_in 0 116592 station_ip 83.123.237.126 116592 port 133 116592 unique_id port 116592 remote_ip 10.8.0.98 116594 username forozande 116594 mac 116594 bytes_out 0 116594 bytes_in 0 116594 station_ip 37.129.93.186 116594 port 133 116594 unique_id port 116594 remote_ip 10.8.0.74 116596 username tahmasebi 116596 kill_reason Another user logged on this global unique id 116596 mac 116596 bytes_out 0 116596 bytes_in 0 116596 station_ip 5.119.63.197 116596 port 137 116596 unique_id port 116598 username mehdizare 116598 mac 116598 bytes_out 0 116598 bytes_in 0 116598 station_ip 5.119.127.238 116598 port 142 116598 unique_id port 116598 remote_ip 10.8.0.90 116602 username aminvpn 116602 mac 116602 bytes_out 0 116602 bytes_in 0 116602 station_ip 151.238.237.233 116602 port 141 116602 unique_id port 116602 remote_ip 10.8.0.14 116603 username rezaei 116603 kill_reason Another user logged on this global unique id 116603 mac 116603 bytes_out 0 116603 bytes_in 0 116603 station_ip 5.120.88.45 116603 port 133 116603 unique_id port 116605 username forozande 116605 mac 116605 bytes_out 0 116605 bytes_in 0 116605 station_ip 113.203.76.175 116605 port 138 116605 unique_id port 116605 remote_ip 10.8.0.74 116606 username asma2026 116606 mac 116606 bytes_out 1191166 116606 bytes_in 17415019 116606 station_ip 83.122.151.36 116606 port 144 116606 unique_id port 116606 remote_ip 10.8.0.170 116610 username asma2026 116610 mac 116610 bytes_out 0 116610 bytes_in 0 116610 station_ip 83.122.151.36 116610 port 55 116610 unique_id port 116610 remote_ip 10.8.1.122 116611 username asma2026 116611 mac 116611 bytes_out 0 116611 bytes_in 0 116611 station_ip 83.122.151.36 116611 port 55 116611 unique_id port 116611 remote_ip 10.8.1.122 116612 username mehdizare 116612 mac 116612 bytes_out 0 116612 bytes_in 0 116612 station_ip 5.119.127.238 116612 port 138 116612 unique_id port 116612 remote_ip 10.8.0.90 116613 username rezaei 116613 mac 116613 bytes_out 0 116613 bytes_in 0 116613 station_ip 5.120.88.45 116601 station_ip 5.119.63.197 116601 port 137 116601 unique_id port 116604 username mehdizare 116604 mac 116604 bytes_out 50373 116604 bytes_in 52209 116604 station_ip 5.119.127.238 116604 port 56 116604 unique_id port 116604 remote_ip 10.8.1.42 116609 username mehdizare 116609 mac 116609 bytes_out 13864 116609 bytes_in 26306 116609 station_ip 5.119.127.238 116609 port 55 116609 unique_id port 116609 remote_ip 10.8.1.42 116618 username forozande 116618 mac 116618 bytes_out 0 116618 bytes_in 0 116618 station_ip 37.129.246.151 116618 port 138 116618 unique_id port 116618 remote_ip 10.8.0.74 116620 username asma2026 116620 mac 116620 bytes_out 0 116620 bytes_in 0 116620 station_ip 83.122.151.36 116620 port 144 116620 unique_id port 116620 remote_ip 10.8.0.170 116627 username avaanna 116627 mac 116627 bytes_out 98943 116627 bytes_in 152538 116627 station_ip 83.123.229.71 116627 port 142 116627 unique_id port 116627 remote_ip 10.8.0.98 116628 username asma2026 116628 mac 116628 bytes_out 0 116628 bytes_in 0 116628 station_ip 83.122.151.36 116628 port 140 116628 unique_id port 116628 remote_ip 10.8.0.170 116634 username asma2026 116634 mac 116634 bytes_out 0 116634 bytes_in 0 116634 station_ip 83.122.151.36 116634 port 145 116634 unique_id port 116634 remote_ip 10.8.0.170 116636 username mehdizare 116636 mac 116636 bytes_out 0 116636 bytes_in 0 116636 station_ip 5.119.127.238 116636 port 140 116636 unique_id port 116636 remote_ip 10.8.0.90 116637 username forozande 116637 mac 116637 bytes_out 1291069 116637 bytes_in 16685919 116637 station_ip 83.123.208.164 116637 port 138 116637 unique_id port 116637 remote_ip 10.8.0.74 116653 username tahmasebi 116653 kill_reason Another user logged on this global unique id 116653 mac 116653 bytes_out 0 116653 bytes_in 0 116653 station_ip 5.119.63.197 116653 port 137 116653 unique_id port 116657 username asma2026 116657 mac 116657 bytes_out 0 116657 bytes_in 0 116657 station_ip 83.122.151.36 116657 port 50 116657 unique_id port 116657 remote_ip 10.8.1.122 116658 username tahmasebi 116658 kill_reason Another user logged on this global unique id 116658 mac 116658 bytes_out 0 116658 bytes_in 0 116658 station_ip 5.119.63.197 116658 port 137 116658 unique_id port 116663 username rajaei 116663 mac 116663 bytes_out 0 116663 bytes_in 0 116663 station_ip 93.114.25.47 116663 port 125 116663 unique_id port 116663 remote_ip 10.8.0.34 116668 username asma2026 116668 mac 116668 bytes_out 0 116668 bytes_in 0 116668 station_ip 83.122.151.36 116668 port 142 116668 unique_id port 116668 remote_ip 10.8.0.170 116671 username tahmasebi 116671 kill_reason Another user logged on this global unique id 116671 mac 116671 bytes_out 0 116671 bytes_in 0 116671 station_ip 5.119.63.197 116671 port 137 116671 unique_id port 116673 username houshang 116673 mac 116673 bytes_out 0 116673 bytes_in 0 116673 station_ip 5.119.51.167 116673 port 145 116673 unique_id port 116673 remote_ip 10.8.0.22 116675 username amir 116675 kill_reason Another user logged on this global unique id 116675 mac 116675 bytes_out 0 116675 bytes_in 0 116675 station_ip 46.225.211.185 116675 port 125 116675 unique_id port 116675 remote_ip 10.8.0.50 116678 username tahmasebi 116678 kill_reason Another user logged on this global unique id 116678 mac 116678 bytes_out 0 116678 bytes_in 0 116678 station_ip 5.119.63.197 116678 port 137 116678 unique_id port 116679 username alihosseini1 116679 mac 116679 bytes_out 0 116679 bytes_in 0 116613 port 133 116613 unique_id port 116615 username forozande 116615 mac 116615 bytes_out 0 116615 bytes_in 0 116615 station_ip 37.129.200.133 116615 port 144 116615 unique_id port 116615 remote_ip 10.8.0.74 116617 username musa 116617 kill_reason Another user logged on this global unique id 116617 mac 116617 bytes_out 0 116617 bytes_in 0 116617 station_ip 113.203.3.131 116617 port 125 116617 unique_id port 116617 remote_ip 10.8.0.6 116623 username asma2026 116623 mac 116623 bytes_out 0 116623 bytes_in 0 116623 station_ip 83.122.151.36 116623 port 138 116623 unique_id port 116623 remote_ip 10.8.0.170 116624 username asma2026 116624 mac 116624 bytes_out 0 116624 bytes_in 0 116624 station_ip 83.122.151.36 116624 port 138 116624 unique_id port 116624 remote_ip 10.8.0.170 116625 username rajaei 116625 mac 116625 bytes_out 0 116625 bytes_in 0 116625 station_ip 89.34.47.195 116625 port 140 116625 unique_id port 116626 username musa 116626 kill_reason Another user logged on this global unique id 116626 mac 116626 bytes_out 0 116626 bytes_in 0 116626 station_ip 113.203.3.131 116626 port 125 116626 unique_id port 116629 username mehdizare 116629 mac 116629 bytes_out 0 116629 bytes_in 0 116629 station_ip 5.119.127.238 116629 port 133 116629 unique_id port 116629 remote_ip 10.8.0.90 116630 username sabaghnezhad 116630 mac 116630 bytes_out 24448 116630 bytes_in 37169 116630 station_ip 83.123.222.207 116630 port 50 116630 unique_id port 116630 remote_ip 10.8.1.130 116631 username kordestani 116631 mac 116631 bytes_out 1015110 116631 bytes_in 18075138 116631 station_ip 151.235.76.191 116631 port 51 116631 unique_id port 116631 remote_ip 10.8.1.98 116633 username sabaghnezhad 116633 mac 116633 bytes_out 25707 116633 bytes_in 42568 116633 station_ip 83.123.222.207 116633 port 50 116633 unique_id port 116633 remote_ip 10.8.1.130 116638 username sabaghnezhad 116638 mac 116638 bytes_out 14195 116638 bytes_in 16939 116638 station_ip 83.123.222.207 116638 port 144 116638 unique_id port 116638 remote_ip 10.8.0.186 116641 username alirr 116641 unique_id port 116641 terminate_cause Lost-Carrier 116641 bytes_out 7967705 116641 bytes_in 85214117 116641 station_ip 31.56.113.207 116641 port 15729469 116641 nas_port_type Virtual 116641 remote_ip 5.5.5.252 116644 username sabaghnezhad 116644 mac 116644 bytes_out 5242 116644 bytes_in 8987 116644 station_ip 37.129.64.211 116644 port 51 116644 unique_id port 116644 remote_ip 10.8.1.130 116647 username rostami 116647 mac 116647 bytes_out 13205580 116647 bytes_in 27012881 116647 station_ip 5.120.150.99 116647 port 54 116647 unique_id port 116647 remote_ip 10.8.1.142 116650 username asma2026 116650 mac 116650 bytes_out 0 116650 bytes_in 0 116650 station_ip 83.122.151.36 116650 port 54 116650 unique_id port 116650 remote_ip 10.8.1.122 116652 username zare 116652 mac 116652 bytes_out 2406712 116652 bytes_in 31412733 116652 station_ip 94.183.214.14 116652 port 138 116652 unique_id port 116652 remote_ip 10.8.0.18 116659 username kordestani 116659 mac 116659 bytes_out 0 116659 bytes_in 0 116659 station_ip 151.235.76.191 116659 port 142 116659 unique_id port 116659 remote_ip 10.8.0.134 116661 username zare 116661 mac 116661 bytes_out 0 116661 bytes_in 0 116661 station_ip 37.27.14.172 116661 port 141 116661 unique_id port 116661 remote_ip 10.8.0.18 116664 username alirr 116664 unique_id port 116664 terminate_cause User-Request 116664 bytes_out 4164663 116664 bytes_in 91881748 116640 bytes_in 0 116640 station_ip 5.119.127.238 116640 port 50 116640 unique_id port 116640 remote_ip 10.8.1.42 116642 username avaanna 116642 mac 116642 bytes_out 0 116642 bytes_in 0 116642 station_ip 83.123.229.71 116642 port 145 116642 unique_id port 116642 remote_ip 10.8.0.98 116643 username asma2026 116643 mac 116643 bytes_out 0 116643 bytes_in 0 116643 station_ip 83.122.151.36 116643 port 51 116643 unique_id port 116643 remote_ip 10.8.1.122 116645 username zare 116645 mac 116645 bytes_out 490339 116645 bytes_in 2370790 116645 station_ip 94.183.214.14 116645 port 141 116645 unique_id port 116645 remote_ip 10.8.0.18 116646 username zare 116646 mac 116646 bytes_out 0 116646 bytes_in 0 116646 station_ip 94.183.214.14 116646 port 138 116646 unique_id port 116646 remote_ip 10.8.0.18 116648 username hamid.e 116648 unique_id port 116648 terminate_cause User-Request 116648 bytes_out 896456 116648 bytes_in 11049155 116648 station_ip 37.27.15.104 116648 port 15729471 116648 nas_port_type Virtual 116648 remote_ip 5.5.5.251 116649 username musa 116649 mac 116649 bytes_out 0 116649 bytes_in 0 116649 station_ip 113.203.3.131 116649 port 125 116649 unique_id port 116651 username mehdizare 116651 mac 116651 bytes_out 14856 116651 bytes_in 21492 116651 station_ip 5.119.127.238 116651 port 50 116651 unique_id port 116651 remote_ip 10.8.1.42 116654 username zare 116654 mac 116654 bytes_out 9916 116654 bytes_in 21507 116654 station_ip 94.183.214.14 116654 port 125 116654 unique_id port 116654 remote_ip 10.8.0.18 116655 username asma2026 116655 mac 116655 bytes_out 2318 116655 bytes_in 4709 116655 station_ip 83.122.151.36 116655 port 50 116655 unique_id port 116655 remote_ip 10.8.1.122 116656 username musa 116656 mac 116656 bytes_out 104187 116656 bytes_in 125975 116656 station_ip 113.203.3.131 116656 port 140 116656 unique_id port 116656 remote_ip 10.8.0.6 116660 username amirabbas 116660 unique_id port 116660 terminate_cause User-Request 116660 bytes_out 10855654 116660 bytes_in 263861767 116660 station_ip 37.27.58.182 116660 port 15729472 116660 nas_port_type Virtual 116660 remote_ip 5.5.5.250 116662 username asma2026 116662 mac 116662 bytes_out 0 116662 bytes_in 0 116662 station_ip 83.122.151.36 116662 port 144 116662 unique_id port 116662 remote_ip 10.8.0.170 116665 username mahdiyehalizadeh 116665 mac 116665 bytes_out 0 116665 bytes_in 0 116665 station_ip 83.123.202.216 116665 port 142 116665 unique_id port 116665 remote_ip 10.8.0.82 116667 username tahmasebi 116667 kill_reason Another user logged on this global unique id 116667 mac 116667 bytes_out 0 116667 bytes_in 0 116667 station_ip 5.119.63.197 116667 port 137 116667 unique_id port 116672 username asma2026 116672 mac 116672 bytes_out 0 116672 bytes_in 0 116672 station_ip 83.122.151.36 116672 port 50 116672 unique_id port 116672 remote_ip 10.8.1.122 116676 username asma2026 116676 mac 116676 bytes_out 0 116676 bytes_in 0 116676 station_ip 83.122.151.36 116676 port 142 116676 unique_id port 116676 remote_ip 10.8.0.170 116682 username alihosseini1 116682 kill_reason Maximum check online fails reached 116682 mac 116682 bytes_out 0 116682 bytes_in 0 116682 station_ip 5.120.78.47 116682 port 50 116682 unique_id port 116687 username alihosseini1 116687 mac 116687 bytes_out 4412 116687 bytes_in 6070 116687 station_ip 5.120.78.47 116687 port 145 116687 unique_id port 116687 remote_ip 10.8.0.166 116689 username avaanna 116689 mac 116689 bytes_out 0 116664 station_ip 5.120.145.141 116664 port 15729470 116664 nas_port_type Virtual 116664 remote_ip 5.5.5.255 116666 username asma2026 116666 mac 116666 bytes_out 0 116666 bytes_in 0 116666 station_ip 83.122.151.36 116666 port 50 116666 unique_id port 116666 remote_ip 10.8.1.122 116669 username asma2026 116669 mac 116669 bytes_out 1636 116669 bytes_in 5182 116669 station_ip 83.122.151.36 116669 port 142 116669 unique_id port 116669 remote_ip 10.8.0.170 116670 username zare 116670 mac 116670 bytes_out 199885 116670 bytes_in 2632967 116670 station_ip 37.27.14.172 116670 port 142 116670 unique_id port 116670 remote_ip 10.8.0.18 116674 username asma2026 116674 mac 116674 bytes_out 0 116674 bytes_in 0 116674 station_ip 83.122.151.36 116674 port 142 116674 unique_id port 116674 remote_ip 10.8.0.170 116677 username musa 116677 kill_reason Another user logged on this global unique id 116677 mac 116677 bytes_out 0 116677 bytes_in 0 116677 station_ip 113.203.3.131 116677 port 141 116677 unique_id port 116677 remote_ip 10.8.0.6 116680 username alihosseini1 116680 mac 116680 bytes_out 0 116680 bytes_in 0 116680 station_ip 5.120.78.47 116680 port 54 116680 unique_id port 116680 remote_ip 10.8.1.106 116683 username asma2026 116683 mac 116683 bytes_out 0 116683 bytes_in 0 116683 station_ip 83.122.151.36 116683 port 142 116683 unique_id port 116683 remote_ip 10.8.0.170 116690 username khalili 116690 mac 116690 bytes_out 0 116690 bytes_in 0 116690 station_ip 5.120.84.124 116690 port 98 116690 unique_id port 116690 remote_ip 10.8.0.86 116699 username amir 116699 mac 116699 bytes_out 0 116699 bytes_in 0 116699 station_ip 46.225.211.185 116699 port 125 116699 unique_id port 116700 username mirzaei 116700 kill_reason Another user logged on this global unique id 116700 mac 116700 bytes_out 0 116700 bytes_in 0 116700 station_ip 5.120.84.108 116700 port 122 116700 unique_id port 116702 username alihosseini1 116702 mac 116702 bytes_out 0 116702 bytes_in 0 116702 station_ip 5.120.78.47 116702 port 55 116702 unique_id port 116702 remote_ip 10.8.1.106 116704 username asma2026 116704 mac 116704 bytes_out 0 116704 bytes_in 0 116704 station_ip 83.122.151.36 116704 port 55 116704 unique_id port 116704 remote_ip 10.8.1.122 116706 username asma2026 116706 kill_reason Maximum check online fails reached 116706 mac 116706 bytes_out 0 116706 bytes_in 0 116706 station_ip 83.122.151.36 116706 port 125 116706 unique_id port 116712 username alihosseini1 116712 mac 116712 bytes_out 0 116712 bytes_in 0 116712 station_ip 5.119.91.2 116712 port 138 116712 unique_id port 116712 remote_ip 10.8.0.166 116716 username alihosseini1 116716 mac 116716 bytes_out 0 116716 bytes_in 0 116716 station_ip 5.119.91.2 116716 port 138 116716 unique_id port 116716 remote_ip 10.8.0.166 116717 username asma2026 116717 mac 116717 bytes_out 0 116717 bytes_in 0 116717 station_ip 83.122.151.36 116717 port 55 116717 unique_id port 116717 remote_ip 10.8.1.122 116718 username forozande 116718 mac 116718 bytes_out 0 116718 bytes_in 0 116718 station_ip 83.123.158.69 116718 port 138 116718 unique_id port 116718 remote_ip 10.8.0.74 116725 username asma2026 116725 mac 116725 bytes_out 0 116725 bytes_in 0 116725 station_ip 83.122.151.36 116725 port 55 116725 unique_id port 116725 remote_ip 10.8.1.122 116726 username mehdizare 116726 mac 116726 bytes_out 69223 116726 bytes_in 101556 116726 station_ip 5.119.127.238 116726 port 133 116679 station_ip 5.120.78.47 116679 port 144 116679 unique_id port 116679 remote_ip 10.8.0.166 116681 username rajaei 116681 mac 116681 bytes_out 0 116681 bytes_in 0 116681 station_ip 93.114.23.224 116681 port 142 116681 unique_id port 116681 remote_ip 10.8.0.34 116684 username alihosseini1 116684 kill_reason Maximum check online fails reached 116684 mac 116684 bytes_out 0 116684 bytes_in 0 116684 station_ip 5.120.78.47 116684 port 144 116684 unique_id port 116685 username alihosseini1 116685 mac 116685 bytes_out 0 116685 bytes_in 0 116685 station_ip 5.120.78.47 116685 port 145 116685 unique_id port 116685 remote_ip 10.8.0.166 116686 username malekpoir 116686 mac 116686 bytes_out 129474 116686 bytes_in 177686 116686 station_ip 5.120.156.76 116686 port 143 116686 unique_id port 116686 remote_ip 10.8.0.58 116688 username tahmasebi 116688 kill_reason Another user logged on this global unique id 116688 mac 116688 bytes_out 0 116688 bytes_in 0 116688 station_ip 5.119.63.197 116688 port 137 116688 unique_id port 116692 username mirzaei 116692 kill_reason Another user logged on this global unique id 116692 mac 116692 bytes_out 0 116692 bytes_in 0 116692 station_ip 5.120.84.108 116692 port 122 116692 unique_id port 116692 remote_ip 10.8.0.66 116694 username amir 116694 kill_reason Another user logged on this global unique id 116694 mac 116694 bytes_out 0 116694 bytes_in 0 116694 station_ip 46.225.211.185 116694 port 125 116694 unique_id port 116697 username asma2026 116697 mac 116697 bytes_out 3537 116697 bytes_in 6029 116697 station_ip 83.122.151.36 116697 port 56 116697 unique_id port 116697 remote_ip 10.8.1.122 116698 username sabaghnezhad 116698 mac 116698 bytes_out 232832 116698 bytes_in 214255 116698 station_ip 37.129.64.211 116698 port 55 116698 unique_id port 116698 remote_ip 10.8.1.130 116701 username avaanna 116701 mac 116701 bytes_out 171378 116701 bytes_in 535443 116701 station_ip 83.123.229.71 116701 port 54 116701 unique_id port 116701 remote_ip 10.8.1.46 116703 username asma2026 116703 mac 116703 bytes_out 0 116703 bytes_in 0 116703 station_ip 83.122.151.36 116703 port 54 116703 unique_id port 116703 remote_ip 10.8.1.122 116708 username mohammadjavad 116708 mac 116708 bytes_out 317656 116708 bytes_in 1927322 116708 station_ip 83.122.43.231 116708 port 133 116708 unique_id port 116708 remote_ip 10.8.0.142 116709 username mehdizare 116709 mac 116709 bytes_out 0 116709 bytes_in 0 116709 station_ip 5.119.127.238 116709 port 138 116709 unique_id port 116709 remote_ip 10.8.0.90 116711 username asma2026 116711 mac 116711 bytes_out 0 116711 bytes_in 0 116711 station_ip 83.122.151.36 116711 port 55 116711 unique_id port 116711 remote_ip 10.8.1.122 116713 username asma2026 116713 mac 116713 bytes_out 0 116713 bytes_in 0 116713 station_ip 83.122.151.36 116713 port 55 116713 unique_id port 116713 remote_ip 10.8.1.122 116720 username alireza 116720 unique_id port 116720 terminate_cause User-Request 116720 bytes_out 3109960 116720 bytes_in 36251729 116720 station_ip 5.119.163.110 116720 port 15729473 116720 nas_port_type Virtual 116720 remote_ip 5.5.5.255 116721 username asma2026 116721 mac 116721 bytes_out 0 116721 bytes_in 0 116721 station_ip 83.122.151.36 116721 port 138 116721 unique_id port 116721 remote_ip 10.8.0.170 116731 username asma2026 116731 mac 116731 bytes_out 0 116731 bytes_in 0 116731 station_ip 83.122.151.36 116731 port 142 116731 unique_id port 116731 remote_ip 10.8.0.170 116732 username asma2026 116689 bytes_in 0 116689 station_ip 83.123.229.71 116689 port 133 116689 unique_id port 116689 remote_ip 10.8.0.98 116691 username asma2026 116691 mac 116691 bytes_out 0 116691 bytes_in 0 116691 station_ip 83.122.151.36 116691 port 142 116691 unique_id port 116691 remote_ip 10.8.0.170 116693 username asma2026 116693 mac 116693 bytes_out 0 116693 bytes_in 0 116693 station_ip 83.122.151.36 116693 port 98 116693 unique_id port 116693 remote_ip 10.8.0.170 116695 username tahmasebi 116695 kill_reason Another user logged on this global unique id 116695 mac 116695 bytes_out 0 116695 bytes_in 0 116695 station_ip 5.119.63.197 116695 port 137 116695 unique_id port 116696 username forozande 116696 mac 116696 bytes_out 650608 116696 bytes_in 6491461 116696 station_ip 83.122.249.24 116696 port 145 116696 unique_id port 116696 remote_ip 10.8.0.74 116705 username alihosseini1 116705 mac 116705 bytes_out 0 116705 bytes_in 0 116705 station_ip 5.120.78.47 116705 port 55 116705 unique_id port 116705 remote_ip 10.8.1.106 116707 username asma2026 116707 mac 116707 bytes_out 0 116707 bytes_in 0 116707 station_ip 83.122.151.36 116707 port 55 116707 unique_id port 116707 remote_ip 10.8.1.122 116710 username alihosseini1 116710 mac 116710 bytes_out 0 116710 bytes_in 0 116710 station_ip 5.120.78.47 116710 port 55 116710 unique_id port 116710 remote_ip 10.8.1.106 116714 username kordestani 116714 kill_reason Another user logged on this global unique id 116714 mac 116714 bytes_out 0 116714 bytes_in 0 116714 station_ip 151.235.76.191 116714 port 140 116714 unique_id port 116714 remote_ip 10.8.0.134 116715 username asma2026 116715 mac 116715 bytes_out 0 116715 bytes_in 0 116715 station_ip 83.122.151.36 116715 port 138 116715 unique_id port 116715 remote_ip 10.8.0.170 116719 username asma2026 116719 mac 116719 bytes_out 0 116719 bytes_in 0 116719 station_ip 83.122.151.36 116719 port 55 116719 unique_id port 116719 remote_ip 10.8.1.122 116722 username asma2026 116722 mac 116722 bytes_out 0 116722 bytes_in 0 116722 station_ip 83.122.151.36 116722 port 138 116722 unique_id port 116722 remote_ip 10.8.0.170 116723 username kordestani 116723 mac 116723 bytes_out 0 116723 bytes_in 0 116723 station_ip 151.235.76.191 116723 port 140 116723 unique_id port 116724 username asma2026 116724 mac 116724 bytes_out 0 116724 bytes_in 0 116724 station_ip 83.122.151.36 116724 port 55 116724 unique_id port 116724 remote_ip 10.8.1.122 116729 username avaanna 116729 mac 116729 bytes_out 0 116729 bytes_in 0 116729 station_ip 83.123.229.71 116729 port 54 116729 unique_id port 116729 remote_ip 10.8.1.46 116730 username asma2026 116730 mac 116730 bytes_out 0 116730 bytes_in 0 116730 station_ip 83.122.151.36 116730 port 142 116730 unique_id port 116730 remote_ip 10.8.0.170 116734 username rostami 116734 mac 116734 bytes_out 0 116734 bytes_in 0 116734 station_ip 5.119.87.102 116734 port 51 116734 unique_id port 116734 remote_ip 10.8.1.142 116750 username tahmasebi 116765 remote_ip 10.8.1.46 116750 kill_reason Another user logged on this global unique id 116750 mac 116750 bytes_out 0 116750 bytes_in 0 116750 station_ip 5.119.63.197 116750 port 137 116750 unique_id port 116752 username mirzaei 116752 mac 116752 bytes_out 0 116752 bytes_in 0 116752 station_ip 5.120.84.108 116752 port 122 116752 unique_id port 116754 username tahmasebi 116754 kill_reason Another user logged on this global unique id 116754 mac 116754 bytes_out 0 116754 bytes_in 0 116726 unique_id port 116726 remote_ip 10.8.0.90 116727 username asma2026 116727 mac 116727 bytes_out 0 116727 bytes_in 0 116727 station_ip 83.122.151.36 116727 port 138 116727 unique_id port 116727 remote_ip 10.8.0.170 116728 username asma2026 116728 mac 116728 bytes_out 0 116728 bytes_in 0 116728 station_ip 83.122.151.36 116728 port 140 116728 unique_id port 116728 remote_ip 10.8.0.170 116735 username mehdizare 116735 kill_reason Another user logged on this global unique id 116735 mac 116735 bytes_out 0 116735 bytes_in 0 116735 station_ip 5.119.127.238 116735 port 133 116735 unique_id port 116735 remote_ip 10.8.0.90 116738 username alirr 116738 unique_id port 116738 terminate_cause User-Request 116738 bytes_out 5020879 116738 bytes_in 83597408 116738 station_ip 31.56.113.207 116738 port 15729475 116738 nas_port_type Virtual 116738 remote_ip 5.5.5.14 116740 username asma2026 116740 mac 116740 bytes_out 0 116740 bytes_in 0 116740 station_ip 83.122.151.36 116740 port 51 116740 unique_id port 116740 remote_ip 10.8.1.122 116742 username asma2026 116742 kill_reason Maximum check online fails reached 116742 mac 116742 bytes_out 0 116742 bytes_in 0 116742 station_ip 83.122.151.36 116742 port 146 116742 unique_id port 116744 username asma2026 116744 mac 116744 bytes_out 0 116744 bytes_in 0 116744 station_ip 83.122.151.36 116744 port 148 116744 unique_id port 116744 remote_ip 10.8.0.170 116746 username mehdizare 116746 kill_reason Another user logged on this global unique id 116746 mac 116746 bytes_out 0 116746 bytes_in 0 116746 station_ip 5.119.127.238 116746 port 133 116746 unique_id port 116748 username asma2026 116748 mac 116748 bytes_out 0 116748 bytes_in 0 116748 station_ip 83.122.151.36 116748 port 54 116748 unique_id port 116748 remote_ip 10.8.1.122 116749 username asma2026 116749 mac 116749 bytes_out 0 116749 bytes_in 0 116749 station_ip 83.122.151.36 116749 port 54 116749 unique_id port 116749 remote_ip 10.8.1.122 116755 username asma2026 116755 mac 116755 bytes_out 0 116755 bytes_in 0 116755 station_ip 83.122.151.36 116755 port 55 116755 unique_id port 116755 remote_ip 10.8.1.122 116757 username aminvpn 116757 unique_id port 116757 terminate_cause Lost-Carrier 116757 bytes_out 3998884 116757 bytes_in 11024213 116757 station_ip 5.125.89.55 116757 port 15729476 116757 nas_port_type Virtual 116757 remote_ip 5.5.5.254 116760 username mosi 116760 mac 116760 bytes_out 0 116760 bytes_in 0 116760 station_ip 2.183.150.108 116760 port 149 116760 unique_id port 116760 remote_ip 10.8.0.138 116762 username asma2026 116762 mac 116762 bytes_out 0 116762 bytes_in 0 116762 station_ip 83.122.151.36 116762 port 122 116762 unique_id port 116762 remote_ip 10.8.0.170 116763 username avaanna 116763 mac 116763 bytes_out 0 116763 bytes_in 0 116763 station_ip 83.123.229.71 116763 port 54 116763 unique_id port 116763 remote_ip 10.8.1.46 116765 username avaanna 116765 mac 116765 bytes_out 0 116765 bytes_in 0 116765 station_ip 83.123.229.71 116765 port 54 116765 unique_id port 116767 username asma2026 116767 mac 116767 bytes_out 0 116767 bytes_in 0 116767 station_ip 83.122.151.36 116767 port 51 116767 unique_id port 116767 remote_ip 10.8.1.122 116772 username asma2026 116772 mac 116772 bytes_out 0 116772 bytes_in 0 116772 station_ip 83.122.151.36 116772 port 51 116772 unique_id port 116772 remote_ip 10.8.1.122 116773 username rezaei 116773 kill_reason Another user logged on this global unique id 116773 mac 116732 mac 116732 bytes_out 0 116732 bytes_in 0 116732 station_ip 83.122.151.36 116732 port 142 116732 unique_id port 116732 remote_ip 10.8.0.170 116733 username mohammadmahdi 116733 mac 116733 bytes_out 0 116733 bytes_in 0 116733 station_ip 5.119.225.38 116733 port 138 116733 unique_id port 116733 remote_ip 10.8.0.54 116736 username tahmasebi 116736 kill_reason Another user logged on this global unique id 116736 mac 116736 bytes_out 0 116736 bytes_in 0 116736 station_ip 5.119.63.197 116736 port 137 116736 unique_id port 116737 username alihosseini1 116737 mac 116737 bytes_out 199772 116737 bytes_in 765876 116737 station_ip 5.119.91.2 116737 port 145 116737 unique_id port 116737 remote_ip 10.8.0.166 116739 username asma2026 116739 mac 116739 bytes_out 0 116739 bytes_in 0 116739 station_ip 83.122.151.36 116739 port 145 116739 unique_id port 116739 remote_ip 10.8.0.170 116741 username alihosseini1 116741 kill_reason Maximum check online fails reached 116741 mac 116741 bytes_out 0 116741 bytes_in 0 116741 station_ip 5.119.91.2 116741 port 145 116741 unique_id port 116743 username alihosseini1 116743 kill_reason Maximum check online fails reached 116743 mac 116743 bytes_out 0 116743 bytes_in 0 116743 station_ip 5.119.91.2 116743 port 147 116743 unique_id port 116745 username asma2026 116745 mac 116745 bytes_out 0 116745 bytes_in 0 116745 station_ip 83.122.151.36 116745 port 51 116745 unique_id port 116745 remote_ip 10.8.1.122 116747 username asma2026 116747 mac 116747 bytes_out 0 116747 bytes_in 0 116747 station_ip 83.122.151.36 116747 port 148 116747 unique_id port 116747 remote_ip 10.8.0.170 116751 username asma2026 116751 mac 116751 bytes_out 0 116751 bytes_in 0 116751 station_ip 83.122.151.36 116751 port 150 116751 unique_id port 116751 remote_ip 10.8.0.170 116753 username asma2026 116753 mac 116753 bytes_out 0 116753 bytes_in 0 116753 station_ip 83.122.151.36 116753 port 150 116753 unique_id port 116753 remote_ip 10.8.0.170 116761 username mosi 116761 mac 116761 bytes_out 0 116761 bytes_in 0 116761 station_ip 5.200.99.216 116761 port 122 116761 unique_id port 116761 remote_ip 10.8.0.138 116768 username avaanna 116768 mac 116768 bytes_out 0 116768 bytes_in 0 116768 station_ip 83.123.229.71 116768 port 54 116768 unique_id port 116768 remote_ip 10.8.1.46 116775 username asma2026 116775 mac 116775 bytes_out 0 116775 bytes_in 0 116775 station_ip 83.122.151.36 116775 port 54 116775 unique_id port 116775 remote_ip 10.8.1.122 116776 username asma2026 116776 mac 116776 bytes_out 0 116776 bytes_in 0 116776 station_ip 83.122.151.36 116776 port 54 116776 unique_id port 116776 remote_ip 10.8.1.122 116778 username mohammadmahdi 116778 mac 116778 bytes_out 0 116778 bytes_in 0 116778 station_ip 5.119.225.38 116778 port 138 116778 unique_id port 116779 username asma2026 116779 mac 116779 bytes_out 0 116779 bytes_in 0 116779 station_ip 83.122.151.36 116779 port 150 116779 unique_id port 116779 remote_ip 10.8.0.170 116781 username rostami 116781 mac 116781 bytes_out 0 116781 bytes_in 0 116781 station_ip 5.119.87.102 116781 port 51 116781 unique_id port 116781 remote_ip 10.8.1.142 116783 username amin.saeedi 116783 unique_id port 116783 terminate_cause User-Request 116783 bytes_out 21779105 116783 bytes_in 748451952 116783 station_ip 31.56.155.237 116783 port 15729474 116783 nas_port_type Virtual 116783 remote_ip 5.5.5.8 116786 username mirzaei 116786 mac 116786 bytes_out 0 116754 station_ip 5.119.63.197 116754 port 137 116754 unique_id port 116756 username avaanna 116756 mac 116756 bytes_out 1669941 116756 bytes_in 11119928 116756 station_ip 83.123.229.71 116756 port 140 116756 unique_id port 116756 remote_ip 10.8.0.98 116758 username asma2026 116758 mac 116758 bytes_out 0 116758 bytes_in 0 116758 station_ip 83.122.151.36 116758 port 55 116758 unique_id port 116758 remote_ip 10.8.1.122 116759 username mohammadmahdi 116759 kill_reason Another user logged on this global unique id 116759 mac 116759 bytes_out 0 116759 bytes_in 0 116759 station_ip 5.119.225.38 116759 port 138 116759 unique_id port 116759 remote_ip 10.8.0.54 116764 username asma2026 116764 mac 116764 bytes_out 0 116764 bytes_in 0 116764 station_ip 83.122.151.36 116764 port 55 116764 unique_id port 116764 remote_ip 10.8.1.122 116766 username rostami 116766 mac 116766 bytes_out 2208351 116766 bytes_in 4638136 116766 station_ip 5.119.87.102 116766 port 51 116766 unique_id port 116766 remote_ip 10.8.1.142 116769 username tahmasebi 116769 kill_reason Another user logged on this global unique id 116769 mac 116769 bytes_out 0 116769 bytes_in 0 116769 station_ip 5.119.63.197 116769 port 137 116769 unique_id port 116770 username mohammadmahdi 116770 kill_reason Another user logged on this global unique id 116770 mac 116770 bytes_out 0 116770 bytes_in 0 116770 station_ip 5.119.225.38 116770 port 138 116770 unique_id port 116771 username alihosseini1 116771 kill_reason Another user logged on this global unique id 116771 mac 116771 bytes_out 0 116771 bytes_in 0 116771 station_ip 5.119.130.58 116771 port 148 116771 unique_id port 116771 remote_ip 10.8.0.166 116774 username asma2026 116774 mac 116774 bytes_out 0 116774 bytes_in 0 116774 station_ip 83.122.151.36 116774 port 54 116774 unique_id port 116774 remote_ip 10.8.1.122 116780 username tahmasebi 116780 kill_reason Another user logged on this global unique id 116780 mac 116780 bytes_out 0 116780 bytes_in 0 116780 station_ip 5.119.63.197 116780 port 137 116780 unique_id port 116785 username khalili 116785 mac 116785 bytes_out 0 116785 bytes_in 0 116785 station_ip 5.120.84.124 116785 port 98 116785 unique_id port 116785 remote_ip 10.8.0.86 116787 username kordestani 116787 mac 116787 bytes_out 0 116787 bytes_in 0 116787 station_ip 151.235.111.166 116787 port 142 116787 unique_id port 116787 remote_ip 10.8.0.134 116794 username asma2026 116794 mac 116794 bytes_out 0 116794 bytes_in 0 116794 station_ip 83.122.151.36 116794 port 56 116794 unique_id port 116794 remote_ip 10.8.1.122 116795 username asma2026 116795 mac 116795 bytes_out 0 116795 bytes_in 0 116795 station_ip 83.122.151.36 116795 port 56 116795 unique_id port 116795 remote_ip 10.8.1.122 116798 username alihosseini1 116798 mac 116798 bytes_out 0 116798 bytes_in 0 116798 station_ip 5.119.130.58 116798 port 148 116798 unique_id port 116805 username forozande 116805 mac 116805 bytes_out 0 116805 bytes_in 0 116805 station_ip 37.129.156.35 116805 port 133 116805 unique_id port 116805 remote_ip 10.8.0.74 116807 username hamid.e 116807 unique_id port 116807 terminate_cause User-Request 116807 bytes_out 7040664 116807 bytes_in 61236868 116807 station_ip 37.27.15.104 116807 port 15729478 116807 nas_port_type Virtual 116807 remote_ip 5.5.5.251 116808 username avaanna 116808 mac 116808 bytes_out 0 116808 bytes_in 0 116808 station_ip 83.123.229.71 116808 port 122 116808 unique_id port 116808 remote_ip 10.8.0.98 116812 username asma2026 116812 mac 116773 bytes_out 0 116773 bytes_in 0 116773 station_ip 5.120.88.45 116773 port 140 116773 unique_id port 116773 remote_ip 10.8.0.206 116777 username malekpoir 116777 mac 116777 bytes_out 3163705 116777 bytes_in 33724934 116777 station_ip 5.120.156.76 116777 port 143 116777 unique_id port 116777 remote_ip 10.8.0.58 116782 username mohammadmahdi 116782 mac 116782 bytes_out 68348 116782 bytes_in 251250 116782 station_ip 5.119.225.38 116782 port 138 116782 unique_id port 116782 remote_ip 10.8.0.54 116784 username rezaei 116784 mac 116784 bytes_out 0 116784 bytes_in 0 116784 station_ip 5.120.88.45 116784 port 140 116784 unique_id port 116788 username ahmadipour 116788 unique_id port 116788 terminate_cause Lost-Carrier 116788 bytes_out 201555 116788 bytes_in 1959530 116788 station_ip 83.123.130.224 116788 port 15729479 116788 nas_port_type Virtual 116788 remote_ip 5.5.5.254 116790 username rezaei 116790 mac 116790 bytes_out 0 116790 bytes_in 0 116790 station_ip 5.120.88.45 116790 port 98 116790 unique_id port 116790 remote_ip 10.8.0.206 116793 username asma2026 116793 kill_reason Maximum check online fails reached 116793 mac 116793 bytes_out 0 116793 bytes_in 0 116793 station_ip 83.122.151.36 116793 port 55 116793 unique_id port 116801 username sabaghnezhad 116801 mac 116801 bytes_out 163591 116801 bytes_in 877012 116801 station_ip 83.122.50.8 116801 port 54 116801 unique_id port 116801 remote_ip 10.8.1.130 116802 username avaanna 116802 mac 116802 bytes_out 0 116802 bytes_in 0 116802 station_ip 83.123.229.71 116802 port 122 116802 unique_id port 116802 remote_ip 10.8.0.98 116803 username asma2026 116803 mac 116803 bytes_out 0 116803 bytes_in 0 116803 station_ip 83.122.151.36 116803 port 54 116803 unique_id port 116803 remote_ip 10.8.1.122 116811 username avaanna 116811 mac 116811 bytes_out 0 116811 bytes_in 0 116811 station_ip 83.123.229.71 116811 port 138 116811 unique_id port 116811 remote_ip 10.8.0.98 116815 username forozande 116815 mac 116815 bytes_out 0 116815 bytes_in 0 116815 station_ip 113.203.7.187 116815 port 133 116815 unique_id port 116815 remote_ip 10.8.0.74 116819 username arabpour 116819 unique_id port 116819 terminate_cause User-Request 116819 bytes_out 63605 116819 bytes_in 554511 116819 station_ip 83.123.154.161 116819 port 15729484 116819 nas_port_type Virtual 116819 remote_ip 5.5.5.254 116822 username arabpour 116822 unique_id port 116822 terminate_cause User-Request 116822 bytes_out 71226 116822 bytes_in 697741 116822 station_ip 83.123.154.161 116822 port 15729486 116822 nas_port_type Virtual 116822 remote_ip 5.5.5.249 116827 username sabaghnezhad 116827 mac 116827 bytes_out 1007986 116827 bytes_in 15577343 116827 station_ip 37.129.13.243 116827 port 54 116827 unique_id port 116827 remote_ip 10.8.1.130 116828 username asma2026 116828 mac 116828 bytes_out 0 116828 bytes_in 0 116828 station_ip 83.122.151.36 116828 port 122 116828 unique_id port 116828 remote_ip 10.8.0.170 116832 username zare 116832 mac 116832 bytes_out 0 116832 bytes_in 0 116832 station_ip 37.27.14.172 116832 port 133 116832 unique_id port 116832 remote_ip 10.8.0.18 116837 username kordestani 116837 kill_reason Another user logged on this global unique id 116837 mac 116837 bytes_out 0 116837 bytes_in 0 116837 station_ip 151.235.111.166 116837 port 122 116837 unique_id port 116837 remote_ip 10.8.0.134 116838 username mirzaei 116838 mac 116838 bytes_out 0 116838 bytes_in 0 116838 station_ip 5.120.84.108 116838 port 51 116838 unique_id port 116786 bytes_in 0 116786 station_ip 5.120.84.108 116786 port 151 116786 unique_id port 116786 remote_ip 10.8.0.66 116789 username asma2026 116789 mac 116789 bytes_out 0 116789 bytes_in 0 116789 station_ip 83.122.151.36 116789 port 138 116789 unique_id port 116789 remote_ip 10.8.0.170 116791 username alihosseini1 116791 kill_reason Another user logged on this global unique id 116791 mac 116791 bytes_out 0 116791 bytes_in 0 116791 station_ip 5.119.130.58 116791 port 148 116791 unique_id port 116792 username mehdizare 116792 mac 116792 bytes_out 0 116792 bytes_in 0 116792 station_ip 5.119.127.238 116792 port 133 116792 unique_id port 116796 username mohammadjavad 116796 mac 116796 bytes_out 0 116796 bytes_in 0 116796 station_ip 37.129.171.66 116796 port 138 116796 unique_id port 116796 remote_ip 10.8.0.142 116797 username mohammadjavad 116797 mac 116797 bytes_out 10837 116797 bytes_in 10834 116797 station_ip 113.203.62.182 116797 port 133 116797 unique_id port 116797 remote_ip 10.8.0.142 116799 username tahmasebi 116799 kill_reason Another user logged on this global unique id 116799 mac 116799 bytes_out 0 116799 bytes_in 0 116799 station_ip 5.119.63.197 116799 port 137 116799 unique_id port 116800 username rostami 116800 mac 116800 bytes_out 553521 116800 bytes_in 3961061 116800 station_ip 5.119.87.102 116800 port 56 116800 unique_id port 116800 remote_ip 10.8.1.142 116804 username aminvpn 116804 mac 116804 bytes_out 0 116804 bytes_in 0 116804 station_ip 83.122.65.150 116804 port 149 116804 unique_id port 116804 remote_ip 10.8.0.14 116806 username asma2026 116806 mac 116806 bytes_out 0 116806 bytes_in 0 116806 station_ip 83.122.151.36 116806 port 133 116806 unique_id port 116806 remote_ip 10.8.0.170 116809 username asma2026 116809 mac 116809 bytes_out 0 116809 bytes_in 0 116809 station_ip 83.122.151.36 116809 port 56 116809 unique_id port 116809 remote_ip 10.8.1.122 116810 username asma2026 116810 mac 116810 bytes_out 0 116810 bytes_in 0 116810 station_ip 83.122.151.36 116810 port 56 116810 unique_id port 116810 remote_ip 10.8.1.122 116813 username alirr 116813 unique_id port 116813 terminate_cause Lost-Carrier 116813 bytes_out 404489 116813 bytes_in 2069782 116813 station_ip 5.119.228.37 116813 port 15729480 116813 nas_port_type Virtual 116813 remote_ip 5.5.5.254 116816 username arabpour 116816 unique_id port 116816 terminate_cause User-Request 116816 bytes_out 758 116816 bytes_in 258 116816 station_ip 83.123.154.161 116816 port 15729482 116816 nas_port_type Virtual 116816 remote_ip 5.5.5.251 116821 username avaanna 116821 mac 116821 bytes_out 6946 116821 bytes_in 10260 116821 station_ip 83.123.229.71 116821 port 138 116821 unique_id port 116821 remote_ip 10.8.0.98 116823 username alirr 116823 unique_id port 116823 terminate_cause Lost-Carrier 116823 bytes_out 73249 116823 bytes_in 456142 116823 station_ip 5.120.181.241 116823 port 15729481 116823 nas_port_type Virtual 116823 remote_ip 5.5.5.1 116825 username asma2026 116825 mac 116825 bytes_out 0 116825 bytes_in 0 116825 station_ip 83.122.151.36 116825 port 122 116825 unique_id port 116825 remote_ip 10.8.0.170 116826 username rostami 116826 mac 116826 bytes_out 1192028 116826 bytes_in 11449323 116826 station_ip 5.119.87.102 116826 port 56 116826 unique_id port 116826 remote_ip 10.8.1.142 116829 username avaanna 116829 mac 116829 bytes_out 0 116829 bytes_in 0 116829 station_ip 83.123.229.71 116829 port 57 116829 unique_id port 116829 remote_ip 10.8.1.46 116812 bytes_out 0 116812 bytes_in 0 116812 station_ip 83.122.151.36 116812 port 122 116812 unique_id port 116812 remote_ip 10.8.0.170 116814 username asma2026 116814 mac 116814 bytes_out 0 116814 bytes_in 0 116814 station_ip 83.122.151.36 116814 port 56 116814 unique_id port 116814 remote_ip 10.8.1.122 116817 username arabpour 116817 unique_id port 116817 terminate_cause User-Request 116817 bytes_out 124805 116817 bytes_in 389164 116817 station_ip 83.123.154.161 116817 port 15729483 116817 nas_port_type Virtual 116817 remote_ip 5.5.5.254 116818 username asma2026 116818 mac 116818 bytes_out 0 116818 bytes_in 0 116818 station_ip 83.122.151.36 116818 port 56 116818 unique_id port 116818 remote_ip 10.8.1.122 116820 username avaanna 116820 mac 116820 bytes_out 65276 116820 bytes_in 106126 116820 station_ip 83.123.229.71 116820 port 122 116820 unique_id port 116820 remote_ip 10.8.0.98 116824 username rajaei 116824 mac 116824 bytes_out 0 116824 bytes_in 0 116824 station_ip 37.153.189.191 116824 port 133 116824 unique_id port 116824 remote_ip 10.8.0.34 116830 username asma2026 116830 mac 116830 bytes_out 0 116830 bytes_in 0 116830 station_ip 83.122.151.36 116830 port 56 116830 unique_id port 116830 remote_ip 10.8.1.122 116831 username asma2026 116831 mac 116831 bytes_out 0 116831 bytes_in 0 116831 station_ip 83.122.151.36 116831 port 56 116831 unique_id port 116831 remote_ip 10.8.1.122 116841 username mirzaei 116841 mac 116841 bytes_out 0 116841 bytes_in 0 116841 station_ip 5.120.84.108 116841 port 51 116841 unique_id port 116841 remote_ip 10.8.1.30 116843 username zare 116843 mac 116843 bytes_out 0 116843 bytes_in 0 116843 station_ip 37.27.14.172 116843 port 143 116843 unique_id port 116843 remote_ip 10.8.0.18 116847 username houshang 116847 kill_reason Another user logged on this global unique id 116847 mac 116847 bytes_out 0 116847 bytes_in 0 116847 station_ip 5.119.40.142 116847 port 140 116847 unique_id port 116847 remote_ip 10.8.0.22 116849 username mirzaei 116849 kill_reason Maximum check online fails reached 116849 mac 116849 bytes_out 0 116849 bytes_in 0 116849 station_ip 5.112.228.67 116849 port 51 116849 unique_id port 116852 username mehdizare 116852 mac 116852 bytes_out 0 116852 bytes_in 0 116852 station_ip 5.119.127.238 116852 port 98 116852 unique_id port 116852 remote_ip 10.8.0.90 116859 username mirzaei 116859 mac 116859 bytes_out 0 116859 bytes_in 0 116859 station_ip 5.113.136.208 116859 port 148 116859 unique_id port 116859 remote_ip 10.8.0.66 116862 username houshang 116862 kill_reason Another user logged on this global unique id 116862 mac 116862 bytes_out 0 116862 bytes_in 0 116862 station_ip 5.119.40.142 116862 port 140 116862 unique_id port 116868 username sobhan 116868 unique_id port 116868 terminate_cause Lost-Carrier 116868 bytes_out 46419983 116868 bytes_in 107681896 116868 station_ip 5.233.79.26 116868 port 15729487 116868 nas_port_type Virtual 116868 remote_ip 5.5.5.250 116869 username asma2026 116869 mac 116869 bytes_out 0 116869 bytes_in 0 116869 station_ip 83.122.151.36 116869 port 56 116869 unique_id port 116869 remote_ip 10.8.1.122 116870 username houshang 116870 mac 116870 bytes_out 0 116870 bytes_in 0 116870 station_ip 5.119.40.142 116870 port 140 116870 unique_id port 116874 username musa 116874 kill_reason Another user logged on this global unique id 116874 mac 116874 bytes_out 0 116874 bytes_in 0 116874 station_ip 113.203.3.131 116874 port 141 116874 unique_id port 116877 username asma2026 116833 username asma2026 116833 mac 116833 bytes_out 0 116833 bytes_in 0 116833 station_ip 83.122.151.36 116833 port 56 116833 unique_id port 116833 remote_ip 10.8.1.122 116834 username rostami 116834 mac 116834 bytes_out 0 116834 bytes_in 0 116834 station_ip 5.119.87.102 116834 port 54 116834 unique_id port 116834 remote_ip 10.8.1.142 116835 username mirzaei 116835 mac 116835 bytes_out 336672 116835 bytes_in 924045 116835 station_ip 5.120.84.108 116835 port 51 116835 unique_id port 116835 remote_ip 10.8.1.30 116836 username asma2026 116836 mac 116836 bytes_out 0 116836 bytes_in 0 116836 station_ip 83.122.151.36 116836 port 142 116836 unique_id port 116836 remote_ip 10.8.0.170 116839 username zare 116839 mac 116839 bytes_out 0 116839 bytes_in 0 116839 station_ip 37.27.14.172 116839 port 133 116839 unique_id port 116839 remote_ip 10.8.0.18 116842 username zare 116842 mac 116842 bytes_out 0 116842 bytes_in 0 116842 station_ip 37.27.14.172 116842 port 133 116842 unique_id port 116842 remote_ip 10.8.0.18 116844 username kordestani 116844 mac 116844 bytes_out 0 116844 bytes_in 0 116844 station_ip 151.235.111.166 116844 port 122 116844 unique_id port 116846 username zare 116846 mac 116846 bytes_out 0 116846 bytes_in 0 116846 station_ip 37.27.14.172 116846 port 122 116846 unique_id port 116846 remote_ip 10.8.0.18 116850 username mohammadjavad 116850 mac 116850 bytes_out 0 116850 bytes_in 0 116850 station_ip 83.123.20.170 116850 port 122 116850 unique_id port 116850 remote_ip 10.8.0.142 116853 username asma2026 116853 mac 116853 bytes_out 6039 116853 bytes_in 8804 116853 station_ip 83.122.151.36 116853 port 56 116853 unique_id port 116853 remote_ip 10.8.1.122 116857 username houshang 116857 kill_reason Another user logged on this global unique id 116857 mac 116857 bytes_out 0 116857 bytes_in 0 116857 station_ip 5.119.40.142 116857 port 140 116857 unique_id port 116858 username asma2026 116858 mac 116858 bytes_out 0 116858 bytes_in 0 116858 station_ip 83.122.151.36 116858 port 56 116858 unique_id port 116858 remote_ip 10.8.1.122 116861 username mirzaei 116861 mac 116861 bytes_out 1680 116861 bytes_in 4529 116861 station_ip 5.112.104.82 116861 port 98 116861 unique_id port 116861 remote_ip 10.8.0.66 116863 username mohammadjavad 116863 mac 116863 bytes_out 0 116863 bytes_in 0 116863 station_ip 37.129.119.1 116863 port 149 116863 unique_id port 116863 remote_ip 10.8.0.142 116867 username houshang 116867 kill_reason Another user logged on this global unique id 116867 mac 116867 bytes_out 0 116867 bytes_in 0 116867 station_ip 5.119.40.142 116867 port 140 116867 unique_id port 116879 username houshang 116879 kill_reason Another user logged on this global unique id 116879 mac 116879 bytes_out 0 116879 bytes_in 0 116879 station_ip 5.119.38.72 116879 port 98 116879 unique_id port 116879 remote_ip 10.8.0.22 116880 username mohammadmahdi 116880 mac 116880 bytes_out 0 116880 bytes_in 0 116880 station_ip 5.119.225.38 116880 port 122 116880 unique_id port 116880 remote_ip 10.8.0.54 116882 username mohammadmahdi 116882 mac 116882 bytes_out 3343493 116882 bytes_in 46187329 116882 station_ip 5.119.225.38 116882 port 140 116882 unique_id port 116882 remote_ip 10.8.0.54 116888 username asma2026 116888 mac 116888 bytes_out 0 116888 bytes_in 0 116888 station_ip 83.122.151.36 116888 port 122 116888 unique_id port 116888 remote_ip 10.8.0.170 116891 username asma2026 116891 mac 116838 remote_ip 10.8.1.30 116840 username malekpoir 116840 mac 116840 bytes_out 366393 116840 bytes_in 486916 116840 station_ip 5.120.156.76 116840 port 143 116840 unique_id port 116840 remote_ip 10.8.0.58 116845 username mirzaei 116845 kill_reason Maximum check online fails reached 116845 mac 116845 bytes_out 0 116845 bytes_in 0 116845 station_ip 5.120.84.108 116845 port 133 116845 unique_id port 116848 username reza2742 116848 unique_id port 116848 terminate_cause Lost-Carrier 116848 bytes_out 4509379 116848 bytes_in 115022933 116848 station_ip 5.202.12.186 116848 port 15729485 116848 nas_port_type Virtual 116848 remote_ip 5.5.5.251 116851 username houshang 116851 kill_reason Another user logged on this global unique id 116851 mac 116851 bytes_out 0 116851 bytes_in 0 116851 station_ip 5.119.40.142 116851 port 140 116851 unique_id port 116854 username houshang 116854 kill_reason Another user logged on this global unique id 116854 mac 116854 bytes_out 0 116854 bytes_in 0 116854 station_ip 5.119.40.142 116854 port 140 116854 unique_id port 116855 username zare 116855 mac 116855 bytes_out 13787 116855 bytes_in 50246 116855 station_ip 37.27.14.172 116855 port 148 116855 unique_id port 116855 remote_ip 10.8.0.18 116856 username mirzaei 116856 mac 116856 bytes_out 10869 116856 bytes_in 16691 116856 station_ip 5.112.228.67 116856 port 98 116856 unique_id port 116856 remote_ip 10.8.0.66 116860 username mehdizare 116860 mac 116860 bytes_out 0 116860 bytes_in 0 116860 station_ip 5.119.127.238 116860 port 122 116860 unique_id port 116860 remote_ip 10.8.0.90 116864 username sabaghnezhad 116864 mac 116864 bytes_out 175836 116864 bytes_in 695713 116864 station_ip 83.123.5.231 116864 port 142 116864 unique_id port 116864 remote_ip 10.8.0.186 116865 username asma2026 116865 mac 116865 bytes_out 0 116865 bytes_in 0 116865 station_ip 83.122.151.36 116865 port 56 116865 unique_id port 116865 remote_ip 10.8.1.122 116866 username asma2026 116866 mac 116866 bytes_out 0 116866 bytes_in 0 116866 station_ip 83.122.151.36 116866 port 56 116866 unique_id port 116866 remote_ip 10.8.1.122 116871 username tahmasebi 116871 kill_reason Another user logged on this global unique id 116871 mac 116871 bytes_out 0 116871 bytes_in 0 116871 station_ip 5.119.63.197 116871 port 137 116871 unique_id port 116872 username asma2026 116872 mac 116872 bytes_out 0 116872 bytes_in 0 116872 station_ip 83.122.151.36 116872 port 56 116872 unique_id port 116872 remote_ip 10.8.1.122 116873 username houshang 116873 kill_reason Another user logged on this global unique id 116873 mac 116873 bytes_out 0 116873 bytes_in 0 116873 station_ip 5.119.40.142 116873 port 98 116873 unique_id port 116873 remote_ip 10.8.0.22 116875 username houshang 116875 mac 116875 bytes_out 0 116875 bytes_in 0 116875 station_ip 5.119.40.142 116875 port 98 116875 unique_id port 116876 username asma2026 116876 kill_reason Maximum check online fails reached 116876 mac 116876 bytes_out 0 116876 bytes_in 0 116876 station_ip 83.122.151.36 116876 port 56 116876 unique_id port 116878 username asma2026 116878 mac 116878 bytes_out 0 116878 bytes_in 0 116878 station_ip 83.122.151.36 116878 port 57 116878 unique_id port 116878 remote_ip 10.8.1.122 116883 username houshang 116883 kill_reason Another user logged on this global unique id 116883 mac 116883 bytes_out 0 116883 bytes_in 0 116883 station_ip 5.119.38.72 116883 port 98 116883 unique_id port 116885 username rostami 116885 mac 116885 bytes_out 0 116885 bytes_in 0 116885 station_ip 5.119.87.102 116877 mac 116877 bytes_out 0 116877 bytes_in 0 116877 station_ip 83.122.151.36 116877 port 57 116877 unique_id port 116877 remote_ip 10.8.1.122 116881 username asma2026 116881 mac 116881 bytes_out 0 116881 bytes_in 0 116881 station_ip 83.122.151.36 116881 port 57 116881 unique_id port 116881 remote_ip 10.8.1.122 116884 username mohammadjavad 116884 mac 116884 bytes_out 0 116884 bytes_in 0 116884 station_ip 37.129.212.217 116884 port 122 116884 unique_id port 116884 remote_ip 10.8.0.142 116887 username musa 116887 mac 116887 bytes_out 0 116887 bytes_in 0 116887 station_ip 113.203.3.131 116887 port 141 116887 unique_id port 116890 username houshang 116890 kill_reason Another user logged on this global unique id 116890 mac 116890 bytes_out 0 116890 bytes_in 0 116890 station_ip 5.119.38.72 116890 port 98 116890 unique_id port 116896 username rajaei 116896 mac 116896 bytes_out 0 116896 bytes_in 0 116896 station_ip 37.153.189.191 116896 port 141 116896 unique_id port 116896 remote_ip 10.8.0.34 116900 username asma2026 116900 mac 116900 bytes_out 0 116900 bytes_in 0 116900 station_ip 83.122.151.36 116900 port 98 116900 unique_id port 116900 remote_ip 10.8.0.170 116902 username asma2026 116902 mac 116902 bytes_out 0 116902 bytes_in 0 116902 station_ip 83.122.151.36 116902 port 54 116902 unique_id port 116902 remote_ip 10.8.1.122 116903 username asma2026 116903 mac 116903 bytes_out 0 116903 bytes_in 0 116903 station_ip 83.122.151.36 116903 port 148 116903 unique_id port 116903 remote_ip 10.8.0.170 116907 username alihosseini1 116907 mac 116907 bytes_out 0 116907 bytes_in 0 116907 station_ip 5.120.188.110 116907 port 140 116907 unique_id port 116907 remote_ip 10.8.0.166 116908 username asma2026 116908 mac 116908 bytes_out 0 116908 bytes_in 0 116908 station_ip 83.122.151.36 116908 port 98 116908 unique_id port 116908 remote_ip 10.8.0.170 116910 username asma2026 116910 mac 116910 bytes_out 0 116910 bytes_in 0 116910 station_ip 83.122.151.36 116910 port 140 116910 unique_id port 116910 remote_ip 10.8.0.170 116917 username avaanna 116917 mac 116917 bytes_out 1857692 116917 bytes_in 21994157 116917 station_ip 83.123.229.71 116917 port 138 116917 unique_id port 116917 remote_ip 10.8.0.98 116924 username musa 116924 kill_reason Another user logged on this global unique id 116924 mac 116924 bytes_out 0 116924 bytes_in 0 116924 station_ip 113.203.3.131 116924 port 122 116924 unique_id port 116924 remote_ip 10.8.0.6 116929 username avaanna 116929 mac 116929 bytes_out 0 116929 bytes_in 0 116929 station_ip 37.129.166.233 116929 port 54 116929 unique_id port 116929 remote_ip 10.8.1.46 116932 username musa 116932 kill_reason Another user logged on this global unique id 116932 mac 116932 bytes_out 0 116932 bytes_in 0 116932 station_ip 113.203.3.131 116932 port 122 116932 unique_id port 116934 username forozande 116934 mac 116934 bytes_out 302760 116934 bytes_in 4368343 116934 station_ip 37.129.204.118 116934 port 98 116934 unique_id port 116934 remote_ip 10.8.0.74 116936 username tahmasebi 116936 kill_reason Another user logged on this global unique id 116936 mac 116936 bytes_out 0 116936 bytes_in 0 116936 station_ip 5.119.63.197 116936 port 137 116936 unique_id port 116939 username farhad1 116939 kill_reason Another user logged on this global unique id 116939 mac 116939 bytes_out 0 116939 bytes_in 0 116939 station_ip 5.120.16.151 116939 port 142 116939 unique_id port 116939 remote_ip 10.8.0.26 116885 port 54 116885 unique_id port 116885 remote_ip 10.8.1.142 116886 username alirr 116886 unique_id port 116886 terminate_cause User-Request 116886 bytes_out 2595470 116886 bytes_in 1116784 116886 station_ip 188.245.89.81 116886 port 15729490 116886 nas_port_type Virtual 116886 remote_ip 5.5.5.250 116889 username asma2026 116889 mac 116889 bytes_out 0 116889 bytes_in 0 116889 station_ip 83.122.151.36 116889 port 54 116889 unique_id port 116889 remote_ip 10.8.1.122 116897 username forozande 116897 mac 116897 bytes_out 121606 116897 bytes_in 205846 116897 station_ip 113.203.76.220 116897 port 98 116897 unique_id port 116897 remote_ip 10.8.0.74 116899 username rajaei 116899 mac 116899 bytes_out 0 116899 bytes_in 0 116899 station_ip 37.153.189.191 116899 port 149 116899 unique_id port 116899 remote_ip 10.8.0.34 116904 username mahdiyehalizadeh 116904 mac 116904 bytes_out 423323 116904 bytes_in 5611422 116904 station_ip 83.122.202.133 116904 port 142 116904 unique_id port 116904 remote_ip 10.8.0.82 116906 username houshang 116906 mac 116906 bytes_out 0 116906 bytes_in 0 116906 station_ip 5.119.38.72 116906 port 98 116906 unique_id port 116906 remote_ip 10.8.0.22 116909 username asma2026 116909 mac 116909 bytes_out 0 116909 bytes_in 0 116909 station_ip 83.122.151.36 116909 port 98 116909 unique_id port 116909 remote_ip 10.8.0.170 116912 username asma2026 116912 mac 116912 bytes_out 0 116912 bytes_in 0 116912 station_ip 83.122.151.36 116912 port 140 116912 unique_id port 116912 remote_ip 10.8.0.170 116915 username tahmasebi 116915 kill_reason Another user logged on this global unique id 116915 mac 116915 bytes_out 0 116915 bytes_in 0 116915 station_ip 5.119.63.197 116915 port 137 116915 unique_id port 116918 username asma2026 116918 mac 116918 bytes_out 0 116918 bytes_in 0 116918 station_ip 83.122.151.36 116918 port 54 116918 unique_id port 116918 remote_ip 10.8.1.122 116919 username kordestani 116919 mac 116919 bytes_out 3002344 116919 bytes_in 45972609 116919 station_ip 151.235.111.76 116919 port 138 116919 unique_id port 116919 remote_ip 10.8.0.134 116923 username rajaei 116923 kill_reason Another user logged on this global unique id 116923 mac 116923 bytes_out 0 116923 bytes_in 0 116923 station_ip 5.134.189.89 116923 port 98 116923 unique_id port 116923 remote_ip 10.8.0.34 116926 username rajaei 116926 kill_reason Another user logged on this global unique id 116926 mac 116926 bytes_out 0 116926 bytes_in 0 116926 station_ip 5.134.189.89 116926 port 98 116926 unique_id port 116927 username forozande 116927 mac 116927 bytes_out 81246 116927 bytes_in 150900 116927 station_ip 113.203.121.93 116927 port 138 116927 unique_id port 116927 remote_ip 10.8.0.74 116930 username rajaei 116930 mac 116930 bytes_out 0 116930 bytes_in 0 116930 station_ip 5.134.189.89 116930 port 98 116930 unique_id port 116931 username asma2026 116931 mac 116931 bytes_out 249926 116931 bytes_in 2651583 116931 station_ip 83.122.151.36 116931 port 138 116931 unique_id port 116931 remote_ip 10.8.0.170 116937 username avaanna 116937 mac 116937 bytes_out 0 116937 bytes_in 0 116937 station_ip 37.129.166.233 116937 port 54 116937 unique_id port 116937 remote_ip 10.8.1.46 116938 username asma2026 116938 mac 116938 bytes_out 0 116938 bytes_in 0 116938 station_ip 83.122.151.36 116938 port 98 116938 unique_id port 116938 remote_ip 10.8.0.170 116942 username asma2026 116942 mac 116942 bytes_out 0 116942 bytes_in 0 116942 station_ip 83.122.151.36 116891 bytes_out 0 116891 bytes_in 0 116891 station_ip 83.122.151.36 116891 port 141 116891 unique_id port 116891 remote_ip 10.8.0.170 116892 username asma2026 116892 mac 116892 bytes_out 0 116892 bytes_in 0 116892 station_ip 83.122.151.36 116892 port 141 116892 unique_id port 116892 remote_ip 10.8.0.170 116893 username houshang 116893 mac 116893 bytes_out 0 116893 bytes_in 0 116893 station_ip 5.119.38.72 116893 port 98 116893 unique_id port 116894 username rostami 116894 mac 116894 bytes_out 17099 116894 bytes_in 44089 116894 station_ip 5.119.87.102 116894 port 54 116894 unique_id port 116894 remote_ip 10.8.1.142 116895 username asma2026 116895 mac 116895 bytes_out 0 116895 bytes_in 0 116895 station_ip 83.122.151.36 116895 port 54 116895 unique_id port 116895 remote_ip 10.8.1.122 116898 username asma2026 116898 mac 116898 bytes_out 0 116898 bytes_in 0 116898 station_ip 83.122.151.36 116898 port 54 116898 unique_id port 116898 remote_ip 10.8.1.122 116901 username mehdizare 116901 mac 116901 bytes_out 192264 116901 bytes_in 286245 116901 station_ip 5.119.127.238 116901 port 148 116901 unique_id port 116901 remote_ip 10.8.0.90 116905 username asma2026 116905 mac 116905 bytes_out 0 116905 bytes_in 0 116905 station_ip 83.122.151.36 116905 port 142 116905 unique_id port 116905 remote_ip 10.8.0.170 116911 username musa 116911 kill_reason Another user logged on this global unique id 116911 mac 116911 bytes_out 0 116911 bytes_in 0 116911 station_ip 113.203.3.131 116911 port 122 116911 unique_id port 116911 remote_ip 10.8.0.6 116913 username asma2026 116913 mac 116913 bytes_out 0 116913 bytes_in 0 116913 station_ip 83.122.151.36 116913 port 140 116913 unique_id port 116913 remote_ip 10.8.0.170 116914 username musa 116914 mac 116914 bytes_out 0 116914 bytes_in 0 116914 station_ip 113.203.3.131 116914 port 122 116914 unique_id port 116916 username asma2026 116916 mac 116916 bytes_out 0 116916 bytes_in 0 116916 station_ip 83.122.151.36 116916 port 54 116916 unique_id port 116916 remote_ip 10.8.1.122 116920 username asma2026 116920 mac 116920 bytes_out 0 116920 bytes_in 0 116920 station_ip 83.122.151.36 116920 port 57 116920 unique_id port 116920 remote_ip 10.8.1.122 116921 username asma2026 116921 mac 116921 bytes_out 0 116921 bytes_in 0 116921 station_ip 83.122.151.36 116921 port 138 116921 unique_id port 116921 remote_ip 10.8.0.170 116922 username asma2026 116922 kill_reason Maximum check online fails reached 116922 mac 116922 bytes_out 0 116922 bytes_in 0 116922 station_ip 83.122.151.36 116922 port 57 116922 unique_id port 116925 username asma2026 116925 mac 116925 bytes_out 0 116925 bytes_in 0 116925 station_ip 83.122.151.36 116925 port 140 116925 unique_id port 116925 remote_ip 10.8.0.170 116928 username asma2026 116928 mac 116928 bytes_out 0 116928 bytes_in 0 116928 station_ip 83.122.151.36 116928 port 138 116928 unique_id port 116928 remote_ip 10.8.0.170 116933 username avaanna 116933 mac 116933 bytes_out 0 116933 bytes_in 0 116933 station_ip 37.129.166.233 116933 port 54 116933 unique_id port 116933 remote_ip 10.8.1.46 116935 username asma2026 116935 mac 116935 bytes_out 0 116935 bytes_in 0 116935 station_ip 83.122.151.36 116935 port 98 116935 unique_id port 116935 remote_ip 10.8.0.170 116943 username mohammadjavad 116943 mac 116943 bytes_out 0 116943 bytes_in 0 116943 station_ip 37.129.30.201 116943 port 138 116940 username asma2026 116940 mac 116940 bytes_out 0 116940 bytes_in 0 116940 station_ip 83.122.151.36 116940 port 98 116940 unique_id port 116940 remote_ip 10.8.0.170 116941 username musa 116941 kill_reason Another user logged on this global unique id 116941 mac 116941 bytes_out 0 116941 bytes_in 0 116941 station_ip 113.203.3.131 116941 port 122 116941 unique_id port 116951 username asma2026 116951 mac 116951 bytes_out 0 116951 bytes_in 0 116951 station_ip 83.122.151.36 116951 port 140 116951 unique_id port 116951 remote_ip 10.8.0.170 116955 username asma2026 116955 mac 116955 bytes_out 0 116955 bytes_in 0 116955 station_ip 83.122.151.36 116955 port 149 116955 unique_id port 116955 remote_ip 10.8.0.170 116956 username mohammadjavad 116956 mac 116956 bytes_out 16848 116956 bytes_in 17321 116956 station_ip 83.122.95.181 116956 port 142 116956 unique_id port 116956 remote_ip 10.8.0.142 116964 username mohammadjavad 116964 mac 116964 bytes_out 78562 116964 bytes_in 189455 116964 station_ip 113.203.4.235 116964 port 98 116964 unique_id port 116964 remote_ip 10.8.0.142 116969 username asma2026 116969 mac 116969 bytes_out 0 116969 bytes_in 0 116969 station_ip 83.122.151.36 116969 port 98 116969 unique_id port 116969 remote_ip 10.8.0.170 116972 username asma2026 116972 mac 116972 bytes_out 0 116972 bytes_in 0 116972 station_ip 83.122.151.36 116972 port 54 116972 unique_id port 116972 remote_ip 10.8.1.122 116978 username forozande 116978 mac 116978 bytes_out 0 116978 bytes_in 0 116978 station_ip 83.123.153.56 116978 port 98 116978 unique_id port 116978 remote_ip 10.8.0.74 116982 username alihosseini1 116982 kill_reason Another user logged on this global unique id 116982 mac 116982 bytes_out 0 116982 bytes_in 0 116982 station_ip 5.119.20.35 116982 port 142 116982 unique_id port 116982 remote_ip 10.8.0.166 116984 username tahmasebi 116984 kill_reason Another user logged on this global unique id 116984 mac 116984 bytes_out 0 116984 bytes_in 0 116984 station_ip 5.119.63.197 116984 port 137 116984 unique_id port 116991 username farhad1 116991 kill_reason Another user logged on this global unique id 116991 mac 116991 bytes_out 0 116991 bytes_in 0 116991 station_ip 5.120.156.58 116991 port 140 116991 unique_id port 116993 username alireza 116993 unique_id port 116993 terminate_cause Lost-Carrier 116993 bytes_out 1560284 116993 bytes_in 14511476 116993 station_ip 5.119.163.110 116993 port 15729491 116993 nas_port_type Virtual 116993 remote_ip 5.5.5.251 116995 username asma2026 116995 mac 116995 bytes_out 0 116995 bytes_in 0 116995 station_ip 83.122.151.36 116995 port 142 116995 unique_id port 116995 remote_ip 10.8.0.170 117000 username asma2026 117000 mac 117000 bytes_out 0 117000 bytes_in 0 117000 station_ip 83.122.151.36 117000 port 142 117000 unique_id port 117000 remote_ip 10.8.0.170 117003 username sedighe 117003 mac 117003 bytes_out 0 117003 bytes_in 0 117003 station_ip 83.122.228.3 117003 port 148 117003 unique_id port 117003 remote_ip 10.8.0.146 117009 username sabaghnezhad 117009 mac 117009 bytes_out 0 117009 bytes_in 0 117009 station_ip 83.123.242.81 117009 port 98 117009 unique_id port 117009 remote_ip 10.8.0.186 117012 username arman1 117012 mac 117012 bytes_out 1350707 117012 bytes_in 5095876 117012 station_ip 5.119.135.15 117012 port 98 117012 unique_id port 117012 remote_ip 10.8.0.110 117015 username sedighe 117015 mac 117015 bytes_out 0 117015 bytes_in 0 117015 station_ip 83.122.228.3 117015 port 149 116942 port 98 116942 unique_id port 116942 remote_ip 10.8.0.170 116944 username farhad1 116944 kill_reason Another user logged on this global unique id 116944 mac 116944 bytes_out 0 116944 bytes_in 0 116944 station_ip 5.120.16.151 116944 port 142 116944 unique_id port 116945 username asma2026 116945 mac 116945 bytes_out 0 116945 bytes_in 0 116945 station_ip 83.122.151.36 116945 port 149 116945 unique_id port 116945 remote_ip 10.8.0.170 116947 username farhad1 116947 kill_reason Another user logged on this global unique id 116947 mac 116947 bytes_out 0 116947 bytes_in 0 116947 station_ip 5.120.16.151 116947 port 142 116947 unique_id port 116949 username musa 116949 kill_reason Another user logged on this global unique id 116949 mac 116949 bytes_out 0 116949 bytes_in 0 116949 station_ip 113.203.3.131 116949 port 122 116949 unique_id port 116950 username rajaei 116950 mac 116950 bytes_out 1146666 116950 bytes_in 13381501 116950 station_ip 5.134.189.89 116950 port 140 116950 unique_id port 116950 remote_ip 10.8.0.34 116952 username rajaei 116952 mac 116952 bytes_out 509245 116952 bytes_in 2897100 116952 station_ip 5.62.205.3 116952 port 149 116952 unique_id port 116952 remote_ip 10.8.0.34 116953 username farhad1 116953 mac 116953 bytes_out 0 116953 bytes_in 0 116953 station_ip 5.120.16.151 116953 port 142 116953 unique_id port 116954 username mahdiyehalizadeh 116954 mac 116954 bytes_out 0 116954 bytes_in 0 116954 station_ip 83.122.202.133 116954 port 148 116954 unique_id port 116954 remote_ip 10.8.0.82 116958 username avaanna 116958 mac 116958 bytes_out 0 116958 bytes_in 0 116958 station_ip 113.203.4.13 116958 port 98 116958 unique_id port 116958 remote_ip 10.8.0.98 116960 username musa 116960 kill_reason Another user logged on this global unique id 116960 mac 116960 bytes_out 0 116960 bytes_in 0 116960 station_ip 113.203.3.131 116960 port 122 116960 unique_id port 116961 username asma2026 116961 mac 116961 bytes_out 0 116961 bytes_in 0 116961 station_ip 83.122.151.36 116961 port 98 116961 unique_id port 116961 remote_ip 10.8.0.170 116962 username asma2026 116962 mac 116962 bytes_out 0 116962 bytes_in 0 116962 station_ip 83.122.151.36 116962 port 98 116962 unique_id port 116962 remote_ip 10.8.0.170 116974 username asma2026 116974 mac 116974 bytes_out 0 116974 bytes_in 0 116974 station_ip 83.122.151.36 116974 port 149 116974 unique_id port 116974 remote_ip 10.8.0.170 116976 username asma2026 116976 mac 116976 bytes_out 0 116976 bytes_in 0 116976 station_ip 83.122.151.36 116976 port 149 116976 unique_id port 116976 remote_ip 10.8.0.170 116979 username sabaghnezhad 116979 mac 116979 bytes_out 0 116979 bytes_in 0 116979 station_ip 83.123.242.81 116979 port 148 116979 unique_id port 116979 remote_ip 10.8.0.186 116981 username asma2026 116981 mac 116981 bytes_out 0 116981 bytes_in 0 116981 station_ip 83.122.151.36 116981 port 54 116981 unique_id port 116981 remote_ip 10.8.1.122 116989 username sabaghnezhad 116989 mac 116989 bytes_out 111634 116989 bytes_in 107307 116989 station_ip 83.123.242.81 116989 port 98 116989 unique_id port 116989 remote_ip 10.8.0.186 116992 username asma2026 116992 mac 116992 bytes_out 0 116992 bytes_in 0 116992 station_ip 83.122.151.36 116992 port 54 116992 unique_id port 116992 remote_ip 10.8.1.122 116994 username hamid.e 116994 unique_id port 116994 terminate_cause User-Request 116994 bytes_out 11611655 116994 bytes_in 23888727 116994 station_ip 37.27.14.50 116943 unique_id port 116943 remote_ip 10.8.0.142 116946 username asma2026 116946 kill_reason Maximum check online fails reached 116946 mac 116946 bytes_out 0 116946 bytes_in 0 116946 station_ip 83.122.151.36 116946 port 138 116946 unique_id port 116948 username asma2026 116948 mac 116948 bytes_out 0 116948 bytes_in 0 116948 station_ip 83.122.151.36 116948 port 149 116948 unique_id port 116948 remote_ip 10.8.0.170 116957 username asma2026 116957 mac 116957 bytes_out 0 116957 bytes_in 0 116957 station_ip 83.122.151.36 116957 port 54 116957 unique_id port 116957 remote_ip 10.8.1.122 116959 username kordestani 116959 mac 116959 bytes_out 2364026 116959 bytes_in 34743558 116959 station_ip 151.235.111.76 116959 port 148 116959 unique_id port 116959 remote_ip 10.8.0.134 116963 username asma2026 116963 mac 116963 bytes_out 0 116963 bytes_in 0 116963 station_ip 83.122.151.36 116963 port 54 116963 unique_id port 116963 remote_ip 10.8.1.122 116965 username asma2026 116965 mac 116965 bytes_out 0 116965 bytes_in 0 116965 station_ip 83.122.151.36 116965 port 54 116965 unique_id port 116965 remote_ip 10.8.1.122 116966 username asma2026 116966 mac 116966 bytes_out 0 116966 bytes_in 0 116966 station_ip 83.122.151.36 116966 port 98 116966 unique_id port 116966 remote_ip 10.8.0.170 116967 username asma2026 116967 mac 116967 bytes_out 0 116967 bytes_in 0 116967 station_ip 83.122.151.36 116967 port 54 116967 unique_id port 116967 remote_ip 10.8.1.122 116968 username musa 116968 kill_reason Another user logged on this global unique id 116968 mac 116968 bytes_out 0 116968 bytes_in 0 116968 station_ip 113.203.3.131 116968 port 122 116968 unique_id port 116970 username farhad1 116970 kill_reason Another user logged on this global unique id 116970 mac 116970 bytes_out 0 116970 bytes_in 0 116970 station_ip 5.120.156.58 116970 port 140 116970 unique_id port 116970 remote_ip 10.8.0.26 116971 username asma2026 116971 mac 116971 bytes_out 0 116971 bytes_in 0 116971 station_ip 83.122.151.36 116971 port 54 116971 unique_id port 116971 remote_ip 10.8.1.122 116973 username musa 116973 mac 116973 bytes_out 0 116973 bytes_in 0 116973 station_ip 113.203.3.131 116973 port 122 116973 unique_id port 116975 username asma2026 116975 mac 116975 bytes_out 0 116975 bytes_in 0 116975 station_ip 83.122.151.36 116975 port 149 116975 unique_id port 116975 remote_ip 10.8.0.170 116977 username asma2026 116977 mac 116977 bytes_out 0 116977 bytes_in 0 116977 station_ip 83.122.151.36 116977 port 54 116977 unique_id port 116977 remote_ip 10.8.1.122 116980 username sabaghnezhad 116980 mac 116980 bytes_out 0 116980 bytes_in 0 116980 station_ip 83.123.242.81 116980 port 98 116980 unique_id port 116980 remote_ip 10.8.0.186 116983 username asma2026 116983 mac 116983 bytes_out 0 116983 bytes_in 0 116983 station_ip 83.122.151.36 116983 port 54 116983 unique_id port 116983 remote_ip 10.8.1.122 116985 username asma2026 116985 mac 116985 bytes_out 0 116985 bytes_in 0 116985 station_ip 83.122.151.36 116985 port 54 116985 unique_id port 116985 remote_ip 10.8.1.122 116986 username alihosseini1 116986 mac 116986 bytes_out 0 116986 bytes_in 0 116986 station_ip 5.119.20.35 116986 port 142 116986 unique_id port 116987 username asma2026 116987 mac 116987 bytes_out 8003 116987 bytes_in 22738 116987 station_ip 83.122.151.36 116987 port 149 116987 unique_id port 116987 remote_ip 10.8.0.170 116988 username asma2026 116988 mac 116988 bytes_out 0 116988 bytes_in 0 116988 station_ip 83.122.151.36 116988 port 142 116988 unique_id port 116988 remote_ip 10.8.0.170 116990 username mohammadjavad 116990 mac 116990 bytes_out 792802 116990 bytes_in 13583056 116990 station_ip 83.123.226.14 116990 port 148 116990 unique_id port 116990 remote_ip 10.8.0.142 116996 username asma2026 116996 mac 116996 bytes_out 0 116996 bytes_in 0 116996 station_ip 83.122.151.36 116996 port 148 116996 unique_id port 116996 remote_ip 10.8.0.170 116998 username musa 116998 kill_reason Another user logged on this global unique id 116998 mac 116998 bytes_out 0 116998 bytes_in 0 116998 station_ip 113.203.3.131 116998 port 122 116998 unique_id port 116998 remote_ip 10.8.0.6 116999 username aminvpn 116999 mac 116999 bytes_out 0 116999 bytes_in 0 116999 station_ip 31.56.152.95 116999 port 142 116999 unique_id port 116999 remote_ip 10.8.0.14 117001 username asma2026 117001 mac 117001 bytes_out 0 117001 bytes_in 0 117001 station_ip 83.122.151.36 117001 port 54 117001 unique_id port 117001 remote_ip 10.8.1.122 117004 username asma2026 117004 mac 117004 bytes_out 0 117004 bytes_in 0 117004 station_ip 83.122.151.36 117004 port 142 117004 unique_id port 117004 remote_ip 10.8.0.170 117005 username asma2026 117005 mac 117005 bytes_out 0 117005 bytes_in 0 117005 station_ip 83.122.151.36 117005 port 142 117005 unique_id port 117005 remote_ip 10.8.0.170 117008 username asma2026 117008 mac 117008 bytes_out 0 117008 bytes_in 0 117008 station_ip 83.122.151.36 117008 port 148 117008 unique_id port 117008 remote_ip 10.8.0.170 117013 username musa 117013 kill_reason Another user logged on this global unique id 117013 mac 117013 bytes_out 0 117013 bytes_in 0 117013 station_ip 113.203.3.131 117013 port 122 117013 unique_id port 117016 username asma2026 117016 mac 117016 bytes_out 0 117016 bytes_in 0 117016 station_ip 83.122.151.36 117016 port 150 117016 unique_id port 117016 remote_ip 10.8.0.170 117017 username sedighe 117017 mac 117017 bytes_out 9380 117017 bytes_in 12936 117017 station_ip 83.122.228.3 117017 port 149 117017 unique_id port 117017 remote_ip 10.8.0.146 117021 username mosi 117021 mac 117021 bytes_out 1866155 117021 bytes_in 16742765 117021 station_ip 2.183.128.173 117021 port 140 117021 unique_id port 117021 remote_ip 10.8.0.138 117022 username sedighe 117022 mac 117022 bytes_out 0 117022 bytes_in 0 117022 station_ip 83.122.228.3 117022 port 150 117022 unique_id port 117022 remote_ip 10.8.0.146 117025 username rezaei 117025 kill_reason Another user logged on this global unique id 117025 mac 117025 bytes_out 0 117025 bytes_in 0 117025 station_ip 5.120.88.45 117025 port 98 117025 unique_id port 117025 remote_ip 10.8.0.206 117029 username morteza 117029 kill_reason Another user logged on this global unique id 117029 mac 117029 bytes_out 0 117029 bytes_in 0 117029 station_ip 37.129.20.209 117029 port 140 117029 unique_id port 117029 remote_ip 10.8.0.46 117032 username asma2026 117032 mac 117032 bytes_out 0 117032 bytes_in 0 117032 station_ip 83.122.151.36 117032 port 54 117032 unique_id port 117032 remote_ip 10.8.1.122 117035 username morteza 117035 kill_reason Another user logged on this global unique id 117035 mac 117035 bytes_out 0 117035 bytes_in 0 117035 station_ip 37.129.20.209 117035 port 140 117035 unique_id port 117041 username malekpoir 117041 kill_reason Another user logged on this global unique id 117041 mac 117041 bytes_out 0 117041 bytes_in 0 116994 port 15729488 116994 nas_port_type Virtual 116994 remote_ip 5.5.5.254 116997 username asma2026 116997 mac 116997 bytes_out 0 116997 bytes_in 0 116997 station_ip 83.122.151.36 116997 port 148 116997 unique_id port 116997 remote_ip 10.8.0.170 117002 username musa 117002 kill_reason Another user logged on this global unique id 117002 mac 117002 bytes_out 0 117002 bytes_in 0 117002 station_ip 113.203.3.131 117002 port 122 117002 unique_id port 117006 username farhad1 117006 mac 117006 bytes_out 0 117006 bytes_in 0 117006 station_ip 5.120.156.58 117006 port 140 117006 unique_id port 117007 username alihosseini1 117007 mac 117007 bytes_out 0 117007 bytes_in 0 117007 station_ip 5.120.115.187 117007 port 149 117007 unique_id port 117007 remote_ip 10.8.0.166 117010 username sedighe 117010 mac 117010 bytes_out 0 117010 bytes_in 0 117010 station_ip 83.122.228.3 117010 port 150 117010 unique_id port 117010 remote_ip 10.8.0.146 117011 username asma2026 117011 mac 117011 bytes_out 0 117011 bytes_in 0 117011 station_ip 83.122.151.36 117011 port 54 117011 unique_id port 117011 remote_ip 10.8.1.122 117014 username asma2026 117014 mac 117014 bytes_out 0 117014 bytes_in 0 117014 station_ip 83.122.151.36 117014 port 150 117014 unique_id port 117014 remote_ip 10.8.0.170 117019 username asma2026 117019 mac 117019 bytes_out 0 117019 bytes_in 0 117019 station_ip 83.122.151.36 117019 port 142 117019 unique_id port 117019 remote_ip 10.8.0.170 117020 username asma2026 117020 mac 117020 bytes_out 0 117020 bytes_in 0 117020 station_ip 83.122.151.36 117020 port 149 117020 unique_id port 117020 remote_ip 10.8.0.170 117027 username rezaei 117027 mac 117027 bytes_out 0 117027 bytes_in 0 117027 station_ip 5.120.88.45 117027 port 98 117027 unique_id port 117028 username asma2026 117028 mac 117028 bytes_out 0 117028 bytes_in 0 117028 station_ip 83.122.151.36 117028 port 54 117028 unique_id port 117028 remote_ip 10.8.1.122 117031 username kordestani 117031 mac 117031 bytes_out 2382005 117031 bytes_in 34466271 117031 station_ip 151.235.111.76 117031 port 98 117031 unique_id port 117031 remote_ip 10.8.0.134 117033 username asma2026 117033 mac 117033 bytes_out 0 117033 bytes_in 0 117033 station_ip 83.122.151.36 117033 port 54 117033 unique_id port 117033 remote_ip 10.8.1.122 117034 username asma2026 117034 mac 117034 bytes_out 0 117034 bytes_in 0 117034 station_ip 83.122.151.36 117034 port 54 117034 unique_id port 117034 remote_ip 10.8.1.122 117036 username asma2026 117036 mac 117036 bytes_out 0 117036 bytes_in 0 117036 station_ip 83.122.151.36 117036 port 98 117036 unique_id port 117036 remote_ip 10.8.0.170 117038 username asma2026 117038 mac 117038 bytes_out 0 117038 bytes_in 0 117038 station_ip 83.122.151.36 117038 port 150 117038 unique_id port 117038 remote_ip 10.8.0.170 117039 username farhad1 117039 mac 117039 bytes_out 3335947 117039 bytes_in 21733841 117039 station_ip 5.120.54.223 117039 port 142 117039 unique_id port 117039 remote_ip 10.8.0.26 117040 username sedighe 117040 mac 117040 bytes_out 76229 117040 bytes_in 128367 117040 station_ip 37.129.1.127 117040 port 98 117040 unique_id port 117040 remote_ip 10.8.0.146 117043 username forozande 117043 mac 117043 bytes_out 251199 117043 bytes_in 1149862 117043 station_ip 83.123.184.38 117043 port 150 117043 unique_id port 117043 remote_ip 10.8.0.74 117046 username asma2026 117046 mac 117015 unique_id port 117015 remote_ip 10.8.0.146 117018 username farhad1 117018 mac 117018 bytes_out 0 117018 bytes_in 0 117018 station_ip 5.119.48.84 117018 port 142 117018 unique_id port 117018 remote_ip 10.8.0.26 117023 username malekpoir 117023 kill_reason Another user logged on this global unique id 117023 mac 117023 bytes_out 0 117023 bytes_in 0 117023 station_ip 5.119.70.111 117023 port 143 117023 unique_id port 117023 remote_ip 10.8.0.58 117024 username mohammadjavad 117024 mac 117024 bytes_out 0 117024 bytes_in 0 117024 station_ip 83.123.101.103 117024 port 151 117024 unique_id port 117024 remote_ip 10.8.0.142 117026 username sedighe 117026 mac 117026 bytes_out 2984 117026 bytes_in 6662 117026 station_ip 83.122.228.3 117026 port 149 117026 unique_id port 117026 remote_ip 10.8.0.146 117030 username sedighe 117030 mac 117030 bytes_out 0 117030 bytes_in 0 117030 station_ip 83.122.150.174 117030 port 150 117030 unique_id port 117030 remote_ip 10.8.0.146 117037 username sedighe 117037 mac 117037 bytes_out 125220 117037 bytes_in 144601 117037 station_ip 37.129.162.118 117037 port 149 117037 unique_id port 117037 remote_ip 10.8.0.146 117045 username asma2026 117045 mac 117045 bytes_out 0 117045 bytes_in 0 117045 station_ip 83.122.151.36 117045 port 142 117045 unique_id port 117045 remote_ip 10.8.0.170 117047 username forozande 117047 mac 117047 bytes_out 1548687 117047 bytes_in 5314480 117047 station_ip 37.129.122.53 117047 port 98 117047 unique_id port 117047 remote_ip 10.8.0.74 117051 username asma2026 117051 kill_reason Maximum check online fails reached 117051 mac 117051 bytes_out 0 117051 bytes_in 0 117051 station_ip 83.122.151.36 117051 port 54 117051 unique_id port 117053 username asma2026 117053 mac 117053 bytes_out 0 117053 bytes_in 0 117053 station_ip 83.122.151.36 117053 port 151 117053 unique_id port 117053 remote_ip 10.8.0.170 117055 username morteza 117055 kill_reason Another user logged on this global unique id 117055 mac 117055 bytes_out 0 117055 bytes_in 0 117055 station_ip 37.129.20.209 117055 port 140 117055 unique_id port 117056 username arash 117056 mac 117056 bytes_out 200679 117056 bytes_in 750797 117056 station_ip 46.225.210.120 117056 port 150 117056 unique_id port 117056 remote_ip 10.8.0.114 117057 username asma2026 117057 mac 117057 bytes_out 0 117057 bytes_in 0 117057 station_ip 83.122.151.36 117057 port 150 117057 unique_id port 117057 remote_ip 10.8.0.170 117059 username alihosseini1 117059 mac 117059 bytes_out 0 117059 bytes_in 0 117059 station_ip 5.119.23.21 117059 port 58 117059 unique_id port 117059 remote_ip 10.8.1.106 117064 username rostami 117064 mac 117064 bytes_out 0 117064 bytes_in 0 117064 station_ip 5.119.139.162 117064 port 59 117064 unique_id port 117064 remote_ip 10.8.1.142 117073 username asma2026 117073 mac 117073 bytes_out 0 117073 bytes_in 0 117073 station_ip 83.122.151.36 117073 port 59 117073 unique_id port 117073 remote_ip 10.8.1.122 117076 username asma2026 117076 kill_reason Maximum check online fails reached 117076 mac 117076 bytes_out 0 117076 bytes_in 0 117076 station_ip 83.122.151.36 117076 port 152 117076 unique_id port 117080 username sedighe 117080 mac 117080 bytes_out 1182050 117080 bytes_in 12843402 117080 station_ip 37.129.125.153 117080 port 98 117080 unique_id port 117080 remote_ip 10.8.0.146 117082 username farhad1 117082 mac 117082 bytes_out 3002421 117082 bytes_in 27935543 117082 station_ip 5.120.132.76 117041 station_ip 5.119.70.111 117041 port 143 117041 unique_id port 117042 username asma2026 117042 mac 117042 bytes_out 1636 117042 bytes_in 4596 117042 station_ip 83.122.151.36 117042 port 98 117042 unique_id port 117042 remote_ip 10.8.0.170 117044 username asma2026 117044 mac 117044 bytes_out 0 117044 bytes_in 0 117044 station_ip 83.122.151.36 117044 port 98 117044 unique_id port 117044 remote_ip 10.8.0.170 117060 username morteza 117060 mac 117060 bytes_out 0 117060 bytes_in 0 117060 station_ip 37.129.20.209 117060 port 140 117060 unique_id port 117061 username alihosseini1 117061 mac 117061 bytes_out 700467 117061 bytes_in 7104850 117061 station_ip 5.119.23.21 117061 port 59 117061 unique_id port 117061 remote_ip 10.8.1.106 117065 username milan 117065 mac 117065 bytes_out 0 117065 bytes_in 0 117065 station_ip 5.120.88.31 117065 port 98 117065 unique_id port 117065 remote_ip 10.8.0.218 117067 username rajaei 117067 mac 117067 bytes_out 0 117067 bytes_in 0 117067 station_ip 37.153.188.245 117067 port 140 117067 unique_id port 117067 remote_ip 10.8.0.34 117068 username mehdizare 117068 mac 117068 bytes_out 2878210 117068 bytes_in 16897915 117068 station_ip 5.119.127.238 117068 port 141 117068 unique_id port 117068 remote_ip 10.8.0.90 117071 username aminvpn 117071 unique_id port 117071 terminate_cause Lost-Carrier 117071 bytes_out 1393223 117071 bytes_in 16944565 117071 station_ip 5.126.138.109 117071 port 15729500 117071 nas_port_type Virtual 117071 remote_ip 5.5.5.251 117077 username shahrooz 117077 unique_id port 117077 terminate_cause Lost-Carrier 117077 bytes_out 9832839 117077 bytes_in 171876146 117077 station_ip 83.123.123.4 117077 port 15729477 117077 nas_port_type Virtual 117077 remote_ip 5.5.5.252 117078 username asma2026 117078 mac 117078 bytes_out 0 117078 bytes_in 0 117078 station_ip 83.122.151.36 117078 port 59 117078 unique_id port 117078 remote_ip 10.8.1.122 117084 username mohammadmahdi 117084 kill_reason Another user logged on this global unique id 117084 mac 117084 bytes_out 0 117084 bytes_in 0 117084 station_ip 5.119.225.38 117084 port 150 117084 unique_id port 117084 remote_ip 10.8.0.54 117085 username musa 117085 kill_reason Another user logged on this global unique id 117085 mac 117085 bytes_out 0 117085 bytes_in 0 117085 station_ip 113.203.3.131 117085 port 122 117085 unique_id port 117086 username asma2026 117086 mac 117086 bytes_out 0 117086 bytes_in 0 117086 station_ip 83.122.151.36 117086 port 60 117086 unique_id port 117086 remote_ip 10.8.1.122 117090 username aminvpn 117090 mac 117090 bytes_out 0 117090 bytes_in 0 117090 station_ip 83.122.166.190 117090 port 153 117090 unique_id port 117090 remote_ip 10.8.0.14 117091 username asma2026 117091 mac 117091 bytes_out 0 117091 bytes_in 0 117091 station_ip 83.122.151.36 117091 port 140 117091 unique_id port 117091 remote_ip 10.8.0.170 117094 username tahmasebi 117094 kill_reason Another user logged on this global unique id 117094 mac 117094 bytes_out 0 117094 bytes_in 0 117094 station_ip 5.119.63.197 117094 port 137 117094 unique_id port 117097 username asma2026 117097 kill_reason Maximum check online fails reached 117097 mac 117097 bytes_out 0 117097 bytes_in 0 117097 station_ip 83.122.151.36 117097 port 60 117097 unique_id port 117099 username aminvpn 117099 mac 117099 bytes_out 0 117099 bytes_in 0 117099 station_ip 83.122.166.190 117099 port 149 117099 unique_id port 117099 remote_ip 10.8.0.14 117101 username mohammadmahdi 117319 username zare 117046 bytes_out 0 117046 bytes_in 0 117046 station_ip 83.122.151.36 117046 port 142 117046 unique_id port 117046 remote_ip 10.8.0.170 117048 username asma2026 117048 mac 117048 bytes_out 0 117048 bytes_in 0 117048 station_ip 83.122.151.36 117048 port 54 117048 unique_id port 117048 remote_ip 10.8.1.122 117049 username asma2026 117049 mac 117049 bytes_out 0 117049 bytes_in 0 117049 station_ip 83.122.151.36 117049 port 54 117049 unique_id port 117049 remote_ip 10.8.1.122 117050 username houshang 117050 mac 117050 bytes_out 0 117050 bytes_in 0 117050 station_ip 5.119.58.234 117050 port 98 117050 unique_id port 117050 remote_ip 10.8.0.22 117052 username malekpoir 117052 kill_reason Another user logged on this global unique id 117052 mac 117052 bytes_out 0 117052 bytes_in 0 117052 station_ip 5.119.70.111 117052 port 143 117052 unique_id port 117054 username aminvpn 117054 kill_reason Another user logged on this global unique id 117054 mac 117054 bytes_out 0 117054 bytes_in 0 117054 station_ip 83.122.166.190 117054 port 149 117054 unique_id port 117054 remote_ip 10.8.0.14 117058 username mahdiyehalizadeh 117058 mac 117058 bytes_out 486656 117058 bytes_in 895672 117058 station_ip 83.122.215.2 117058 port 98 117058 unique_id port 117058 remote_ip 10.8.0.82 117062 username asma2026 117062 mac 117062 bytes_out 0 117062 bytes_in 0 117062 station_ip 83.122.151.36 117062 port 140 117062 unique_id port 117062 remote_ip 10.8.0.170 117063 username rostami 117063 mac 117063 bytes_out 0 117063 bytes_in 0 117063 station_ip 5.119.139.162 117063 port 59 117063 unique_id port 117063 remote_ip 10.8.1.142 117066 username asma2026 117066 mac 117066 bytes_out 0 117066 bytes_in 0 117066 station_ip 83.122.151.36 117066 port 98 117066 unique_id port 117066 remote_ip 10.8.0.170 117069 username milan 117069 mac 117069 bytes_out 133826 117069 bytes_in 169495 117069 station_ip 5.120.107.147 117069 port 98 117069 unique_id port 117069 remote_ip 10.8.0.218 117070 username asma2026 117070 mac 117070 bytes_out 0 117070 bytes_in 0 117070 station_ip 83.122.151.36 117070 port 98 117070 unique_id port 117070 remote_ip 10.8.0.170 117072 username aminvpn 117072 unique_id port 117072 terminate_cause Lost-Carrier 117072 bytes_out 586391 117072 bytes_in 12045967 117072 station_ip 5.126.138.109 117072 port 15729502 117072 nas_port_type Virtual 117072 remote_ip 5.5.5.247 117074 username aminvpn 117074 mac 117074 bytes_out 0 117074 bytes_in 0 117074 station_ip 83.122.166.190 117074 port 149 117074 unique_id port 117075 username forozande 117075 mac 117075 bytes_out 0 117075 bytes_in 0 117075 station_ip 113.203.72.217 117075 port 151 117075 unique_id port 117075 remote_ip 10.8.0.74 117079 username asma2026 117079 mac 117079 bytes_out 0 117079 bytes_in 0 117079 station_ip 83.122.151.36 117079 port 149 117079 unique_id port 117079 remote_ip 10.8.0.170 117081 username asma2026 117081 mac 117081 bytes_out 0 117081 bytes_in 0 117081 station_ip 83.122.151.36 117081 port 98 117081 unique_id port 117081 remote_ip 10.8.0.170 117088 username asma2026 117088 kill_reason Maximum check online fails reached 117088 mac 117088 bytes_out 0 117088 bytes_in 0 117088 station_ip 83.122.151.36 117088 port 59 117088 unique_id port 117092 username mehdizare 117092 mac 117092 bytes_out 83211 117092 bytes_in 67939 117092 station_ip 5.119.127.238 117092 port 141 117092 unique_id port 117092 remote_ip 10.8.0.90 117095 username forozande 117095 mac 117082 port 140 117082 unique_id port 117082 remote_ip 10.8.0.26 117083 username asma2026 117083 mac 117083 bytes_out 0 117083 bytes_in 0 117083 station_ip 83.122.151.36 117083 port 59 117083 unique_id port 117083 remote_ip 10.8.1.122 117087 username asma2026 117087 mac 117087 bytes_out 0 117087 bytes_in 0 117087 station_ip 83.122.151.36 117087 port 154 117087 unique_id port 117087 remote_ip 10.8.0.170 117089 username farhad1 117089 mac 117089 bytes_out 262898 117089 bytes_in 659372 117089 station_ip 5.120.132.76 117089 port 140 117089 unique_id port 117089 remote_ip 10.8.0.26 117093 username forozande 117093 kill_reason Another user logged on this global unique id 117093 mac 117093 bytes_out 0 117093 bytes_in 0 117093 station_ip 83.122.40.17 117093 port 151 117093 unique_id port 117093 remote_ip 10.8.0.74 117098 username aminvpn 117098 mac 117098 bytes_out 18748 117098 bytes_in 28531 117098 station_ip 83.122.166.190 117098 port 141 117098 unique_id port 117098 remote_ip 10.8.0.14 117103 username tahmasebi 117103 kill_reason Another user logged on this global unique id 117103 mac 117103 bytes_out 0 117103 bytes_in 0 117103 station_ip 5.119.63.197 117103 port 137 117103 unique_id port 117104 username asma2026 117104 mac 117104 bytes_out 0 117104 bytes_in 0 117104 station_ip 83.122.151.36 117104 port 98 117104 unique_id port 117104 remote_ip 10.8.0.170 117105 username jamali 117105 mac 117105 bytes_out 18036 117105 bytes_in 20912 117105 station_ip 5.119.168.12 117105 port 149 117105 unique_id port 117105 remote_ip 10.8.0.150 117106 username malekpoir 117106 kill_reason Another user logged on this global unique id 117106 mac 117106 bytes_out 0 117106 bytes_in 0 117106 station_ip 5.119.70.111 117106 port 143 117106 unique_id port 117107 username morteza 117107 mac 117107 bytes_out 1434446 117107 bytes_in 25541820 117107 station_ip 37.129.60.177 117107 port 61 117107 unique_id port 117107 remote_ip 10.8.1.62 117109 username houshang 117109 mac 117109 bytes_out 24016 117109 bytes_in 58965 117109 station_ip 5.119.58.234 117109 port 149 117109 unique_id port 117109 remote_ip 10.8.0.22 117110 username asma2026 117110 mac 117110 bytes_out 0 117110 bytes_in 0 117110 station_ip 83.122.151.36 117110 port 153 117110 unique_id port 117110 remote_ip 10.8.0.170 117114 username rezasekonji 117114 mac 117114 bytes_out 2180 117114 bytes_in 4328 117114 station_ip 37.129.247.41 117114 port 154 117114 unique_id port 117114 remote_ip 10.8.0.130 117117 username rezasekonji 117117 mac 117117 bytes_out 0 117117 bytes_in 0 117117 station_ip 37.129.247.41 117117 port 154 117117 unique_id port 117117 remote_ip 10.8.0.130 117120 username asma2026 117120 mac 117120 bytes_out 0 117120 bytes_in 0 117120 station_ip 83.122.151.36 117120 port 149 117120 unique_id port 117120 remote_ip 10.8.0.170 117122 username malekpoir 117122 kill_reason Another user logged on this global unique id 117122 mac 117122 bytes_out 0 117122 bytes_in 0 117122 station_ip 5.119.70.111 117122 port 143 117122 unique_id port 117125 username rezasekonji 117125 mac 117125 bytes_out 2127 117125 bytes_in 4275 117125 station_ip 37.129.247.41 117125 port 149 117125 unique_id port 117125 remote_ip 10.8.0.130 117126 username rezasekonji 117126 mac 117126 bytes_out 0 117126 bytes_in 0 117126 station_ip 37.129.247.41 117126 port 149 117126 unique_id port 117126 remote_ip 10.8.0.130 117133 username jamali 117133 mac 117133 bytes_out 0 117133 bytes_in 0 117095 bytes_out 0 117095 bytes_in 0 117095 station_ip 83.122.40.17 117095 port 151 117095 unique_id port 117096 username morteza 117096 mac 117096 bytes_out 375260 117096 bytes_in 3491365 117096 station_ip 37.129.60.177 117096 port 149 117096 unique_id port 117096 remote_ip 10.8.0.46 117100 username alihosseini1 117100 mac 117100 bytes_out 0 117100 bytes_in 0 117100 station_ip 5.119.23.21 117100 port 58 117100 unique_id port 117100 remote_ip 10.8.1.106 117102 username jamali 117102 mac 117102 bytes_out 0 117102 bytes_in 0 117102 station_ip 5.119.168.12 117102 port 98 117102 unique_id port 117102 remote_ip 10.8.0.150 117111 username rezasekonji 117111 mac 117111 bytes_out 947909 117111 bytes_in 14744127 117111 station_ip 37.129.247.41 117111 port 141 117111 unique_id port 117111 remote_ip 10.8.0.130 117113 username asma2026 117113 kill_reason Maximum check online fails reached 117113 mac 117113 bytes_out 0 117113 bytes_in 0 117113 station_ip 83.122.151.36 117113 port 61 117113 unique_id port 117115 username khalili 117115 mac 117115 bytes_out 1544395 117115 bytes_in 23915392 117115 station_ip 5.120.84.124 117115 port 98 117115 unique_id port 117115 remote_ip 10.8.0.86 117116 username shahrooz 117116 unique_id port 117116 terminate_cause Lost-Carrier 117116 bytes_out 373451 117116 bytes_in 2955378 117116 station_ip 83.123.123.4 117116 port 15729504 117116 nas_port_type Virtual 117116 remote_ip 5.5.5.254 117118 username mohammadjavad 117118 mac 117118 bytes_out 1042948 117118 bytes_in 21270538 117118 station_ip 83.122.15.93 117118 port 153 117118 unique_id port 117118 remote_ip 10.8.0.142 117121 username aminvpn 117121 mac 117121 bytes_out 401163 117121 bytes_in 3224258 117121 station_ip 83.122.166.190 117121 port 62 117121 unique_id port 117121 remote_ip 10.8.1.6 117123 username asma2026 117123 mac 117123 bytes_out 0 117123 bytes_in 0 117123 station_ip 83.122.151.36 117123 port 149 117123 unique_id port 117123 remote_ip 10.8.0.170 117128 username rezasekonji 117128 mac 117128 bytes_out 0 117128 bytes_in 0 117128 station_ip 37.129.247.41 117128 port 150 117128 unique_id port 117128 remote_ip 10.8.0.130 117130 username irannezhad 117130 kill_reason Another user logged on this global unique id 117130 mac 117130 bytes_out 0 117130 bytes_in 0 117130 station_ip 37.129.104.207 117130 port 149 117130 unique_id port 117130 remote_ip 10.8.0.182 117137 username rezasekonji 117137 mac 117137 bytes_out 0 117137 bytes_in 0 117137 station_ip 37.129.247.41 117137 port 150 117137 unique_id port 117137 remote_ip 10.8.0.130 117139 username asma2026 117139 mac 117139 bytes_out 0 117139 bytes_in 0 117139 station_ip 83.122.151.36 117139 port 63 117139 unique_id port 117139 remote_ip 10.8.1.122 117140 username rezasekonji 117140 mac 117140 bytes_out 0 117140 bytes_in 0 117140 station_ip 37.129.247.41 117140 port 153 117140 unique_id port 117140 remote_ip 10.8.0.130 117142 username mostafa_es78 117142 mac 117142 bytes_out 0 117142 bytes_in 0 117142 station_ip 178.236.35.96 117142 port 154 117142 unique_id port 117146 username asma2026 117146 mac 117146 bytes_out 0 117146 bytes_in 0 117146 station_ip 83.122.151.36 117146 port 155 117146 unique_id port 117146 remote_ip 10.8.0.170 117147 username rezasekonji 117147 mac 117147 bytes_out 53404 117147 bytes_in 165292 117147 station_ip 37.129.247.41 117147 port 155 117147 unique_id port 117147 remote_ip 10.8.0.130 117150 username forozande 117150 mac 117101 kill_reason Another user logged on this global unique id 117101 mac 117101 bytes_out 0 117101 bytes_in 0 117101 station_ip 5.119.225.38 117101 port 150 117101 unique_id port 117108 username asma2026 117108 kill_reason Maximum check online fails reached 117108 mac 117108 bytes_out 0 117108 bytes_in 0 117108 station_ip 83.122.151.36 117108 port 58 117108 unique_id port 117112 username aminvpn 117112 unique_id port 117112 terminate_cause User-Request 117112 bytes_out 3907034 117112 bytes_in 28358830 117112 station_ip 5.126.138.109 117112 port 15729503 117112 nas_port_type Virtual 117112 remote_ip 5.5.5.245 117119 username houshang 117119 mac 117119 bytes_out 1138408 117119 bytes_in 13662609 117119 station_ip 5.119.58.234 117119 port 149 117119 unique_id port 117119 remote_ip 10.8.0.22 117124 username mohammadmahdi 117124 mac 117124 bytes_out 0 117124 bytes_in 0 117124 station_ip 5.119.225.38 117124 port 150 117124 unique_id port 117127 username rezaei 117127 kill_reason Another user logged on this global unique id 117127 mac 117127 bytes_out 0 117127 bytes_in 0 117127 station_ip 5.120.88.45 117127 port 151 117127 unique_id port 117127 remote_ip 10.8.0.206 117129 username asma2026 117129 mac 117129 bytes_out 0 117129 bytes_in 0 117129 station_ip 83.122.151.36 117129 port 153 117129 unique_id port 117129 remote_ip 10.8.0.170 117131 username rezasekonji 117131 mac 117131 bytes_out 0 117131 bytes_in 0 117131 station_ip 37.129.247.41 117131 port 150 117131 unique_id port 117131 remote_ip 10.8.0.130 117132 username irannezhad 117132 mac 117132 bytes_out 0 117132 bytes_in 0 117132 station_ip 37.129.104.207 117132 port 149 117132 unique_id port 117134 username rezasekonji 117134 mac 117134 bytes_out 0 117134 bytes_in 0 117134 station_ip 37.129.247.41 117134 port 150 117134 unique_id port 117134 remote_ip 10.8.0.130 117135 username jamali 117135 mac 117135 bytes_out 0 117135 bytes_in 0 117135 station_ip 5.119.168.12 117135 port 149 117135 unique_id port 117135 remote_ip 10.8.0.150 117138 username asma2026 117138 kill_reason Maximum check online fails reached 117138 mac 117138 bytes_out 0 117138 bytes_in 0 117138 station_ip 83.122.151.36 117138 port 149 117138 unique_id port 117145 username asma2026 117145 mac 117145 bytes_out 0 117145 bytes_in 0 117145 station_ip 83.122.151.36 117145 port 154 117145 unique_id port 117145 remote_ip 10.8.0.170 117148 username rezaei 117148 mac 117148 bytes_out 0 117148 bytes_in 0 117148 station_ip 5.120.88.45 117148 port 151 117148 unique_id port 117152 username malekpoir 117152 kill_reason Another user logged on this global unique id 117152 mac 117152 bytes_out 0 117152 bytes_in 0 117152 station_ip 5.119.70.111 117152 port 143 117152 unique_id port 117153 username tahmasebi 117153 kill_reason Another user logged on this global unique id 117153 mac 117153 bytes_out 0 117153 bytes_in 0 117153 station_ip 5.119.63.197 117153 port 137 117153 unique_id port 117155 username alihosseini1 117155 mac 117155 bytes_out 0 117155 bytes_in 0 117155 station_ip 5.119.224.90 117155 port 62 117155 unique_id port 117155 remote_ip 10.8.1.106 117168 username sabaghnezhad 117168 mac 117168 bytes_out 0 117168 bytes_in 0 117168 station_ip 83.123.242.81 117168 port 148 117168 unique_id port 117168 remote_ip 10.8.0.186 117169 username rezaei 117169 mac 117169 bytes_out 1000885 117169 bytes_in 12771752 117169 station_ip 5.120.88.45 117169 port 62 117169 unique_id port 117169 remote_ip 10.8.1.150 117170 username sabaghnezhad 117133 station_ip 5.119.168.12 117133 port 141 117133 unique_id port 117133 remote_ip 10.8.0.150 117136 username mostafa_es78 117136 kill_reason Another user logged on this global unique id 117136 mac 117136 bytes_out 0 117136 bytes_in 0 117136 station_ip 178.236.35.96 117136 port 154 117136 unique_id port 117136 remote_ip 10.8.0.198 117141 username malekpoir 117141 kill_reason Another user logged on this global unique id 117141 mac 117141 bytes_out 0 117141 bytes_in 0 117141 station_ip 5.119.70.111 117141 port 143 117141 unique_id port 117143 username asma2026 117143 mac 117143 bytes_out 0 117143 bytes_in 0 117143 station_ip 83.122.151.36 117143 port 63 117143 unique_id port 117143 remote_ip 10.8.1.122 117144 username alihosseini1 117144 mac 117144 bytes_out 0 117144 bytes_in 0 117144 station_ip 5.119.224.90 117144 port 62 117144 unique_id port 117144 remote_ip 10.8.1.106 117149 username asma2026 117149 mac 117149 bytes_out 0 117149 bytes_in 0 117149 station_ip 83.122.151.36 117149 port 62 117149 unique_id port 117149 remote_ip 10.8.1.122 117154 username alihosseini1 117154 mac 117154 bytes_out 0 117154 bytes_in 0 117154 station_ip 5.119.224.90 117154 port 62 117154 unique_id port 117154 remote_ip 10.8.1.106 117156 username rezaei 117156 mac 117156 bytes_out 0 117156 bytes_in 0 117156 station_ip 5.120.88.45 117156 port 63 117156 unique_id port 117156 remote_ip 10.8.1.150 117157 username milan 117157 kill_reason Another user logged on this global unique id 117157 mac 117157 bytes_out 0 117157 bytes_in 0 117157 station_ip 5.119.160.100 117157 port 153 117157 unique_id port 117157 remote_ip 10.8.0.218 117158 username alihosseini1 117158 mac 117158 bytes_out 0 117158 bytes_in 0 117158 station_ip 5.119.224.90 117158 port 155 117158 unique_id port 117158 remote_ip 10.8.0.166 117159 username ehsun 117159 mac 117159 bytes_out 3551244 117159 bytes_in 39503067 117159 station_ip 46.225.208.208 117159 port 151 117159 unique_id port 117159 remote_ip 10.8.0.162 117161 username alihosseini1 117161 mac 117161 bytes_out 263943 117161 bytes_in 1106085 117161 station_ip 5.119.224.90 117161 port 62 117161 unique_id port 117161 remote_ip 10.8.1.106 117162 username alihosseini1 117162 mac 117162 bytes_out 0 117162 bytes_in 0 117162 station_ip 5.119.224.90 117162 port 151 117162 unique_id port 117162 remote_ip 10.8.0.166 117164 username amirabbas 117164 unique_id port 117164 terminate_cause User-Request 117164 bytes_out 33028348 117164 bytes_in 803987617 117164 station_ip 37.27.51.27 117164 port 15729492 117164 nas_port_type Virtual 117164 remote_ip 5.5.5.43 117166 username mosi 117166 mac 117166 bytes_out 552363 117166 bytes_in 4154914 117166 station_ip 2.183.128.173 117166 port 154 117166 unique_id port 117166 remote_ip 10.8.0.138 117171 username mehdizare 117171 mac 117171 bytes_out 0 117171 bytes_in 0 117171 station_ip 5.119.127.238 117171 port 140 117171 unique_id port 117171 remote_ip 10.8.0.90 117173 username asma2026 117173 mac 117173 bytes_out 0 117173 bytes_in 0 117173 station_ip 83.122.151.36 117173 port 140 117173 unique_id port 117173 remote_ip 10.8.0.170 117175 username milan 117175 mac 117175 bytes_out 0 117175 bytes_in 0 117175 station_ip 5.119.160.100 117175 port 153 117175 unique_id port 117177 username alihosseini1 117177 mac 117177 bytes_out 0 117177 bytes_in 0 117177 station_ip 5.119.224.90 117177 port 155 117177 unique_id port 117177 remote_ip 10.8.0.166 117183 username asma2026 117183 mac 117150 bytes_out 722241 117150 bytes_in 5655055 117150 station_ip 83.123.247.243 117150 port 154 117150 unique_id port 117150 remote_ip 10.8.0.74 117151 username alihosseini1 117151 mac 117151 bytes_out 2848589 117151 bytes_in 32268903 117151 station_ip 5.119.224.90 117151 port 153 117151 unique_id port 117151 remote_ip 10.8.0.166 117160 username ahmadi 117160 unique_id port 117160 terminate_cause User-Request 117160 bytes_out 151180 117160 bytes_in 2226849 117160 station_ip 83.123.212.73 117160 port 15729509 117160 nas_port_type Virtual 117160 remote_ip 5.5.5.253 117163 username milan 117163 kill_reason Another user logged on this global unique id 117163 mac 117163 bytes_out 0 117163 bytes_in 0 117163 station_ip 5.119.160.100 117163 port 153 117163 unique_id port 117165 username alihosseini1 117165 mac 117165 bytes_out 0 117165 bytes_in 0 117165 station_ip 5.119.224.90 117165 port 155 117165 unique_id port 117165 remote_ip 10.8.0.166 117167 username asma2026 117167 mac 117167 bytes_out 0 117167 bytes_in 0 117167 station_ip 83.122.151.36 117167 port 154 117167 unique_id port 117167 remote_ip 10.8.0.170 117172 username amir 117172 kill_reason Maximum check online fails reached 117172 mac 117172 bytes_out 0 117172 bytes_in 0 117172 station_ip 46.225.213.89 117172 port 154 117172 unique_id port 117174 username malekpoir 117174 kill_reason Another user logged on this global unique id 117174 mac 117174 bytes_out 0 117174 bytes_in 0 117174 station_ip 5.119.70.111 117174 port 143 117174 unique_id port 117178 username asma2026 117178 mac 117178 bytes_out 1241449 117178 bytes_in 9758445 117178 station_ip 83.122.151.36 117178 port 64 117178 unique_id port 117178 remote_ip 10.8.1.122 117181 username asma2026 117181 mac 117181 bytes_out 0 117181 bytes_in 0 117181 station_ip 83.122.151.36 117181 port 140 117181 unique_id port 117181 remote_ip 10.8.0.170 117184 username mehdizare 117184 mac 117184 bytes_out 1210264 117184 bytes_in 35437768 117184 station_ip 5.119.127.238 117184 port 62 117184 unique_id port 117184 remote_ip 10.8.1.42 117185 username mehdizare 117185 mac 117185 bytes_out 0 117185 bytes_in 0 117185 station_ip 5.119.127.238 117185 port 140 117185 unique_id port 117185 remote_ip 10.8.0.90 117189 username mohammadmahdi 117189 kill_reason Another user logged on this global unique id 117189 mac 117189 bytes_out 0 117189 bytes_in 0 117189 station_ip 5.119.225.38 117189 port 151 117189 unique_id port 117189 remote_ip 10.8.0.54 117192 username milan 117192 kill_reason Another user logged on this global unique id 117192 mac 117192 bytes_out 0 117192 bytes_in 0 117192 station_ip 5.119.160.100 117192 port 140 117192 unique_id port 117192 remote_ip 10.8.0.218 117193 username arabpour 117193 unique_id port 117193 terminate_cause User-Request 117193 bytes_out 99101 117193 bytes_in 1153762 117193 station_ip 37.129.219.41 117193 port 15729511 117193 nas_port_type Virtual 117193 remote_ip 5.5.5.254 117195 username mohammadmahdi 117195 mac 117195 bytes_out 0 117195 bytes_in 0 117195 station_ip 5.119.225.38 117195 port 151 117195 unique_id port 117198 username jamali 117198 mac 117198 bytes_out 1280676 117198 bytes_in 12006286 117198 station_ip 5.119.168.12 117198 port 141 117198 unique_id port 117198 remote_ip 10.8.0.150 117201 username asma2026 117201 mac 117201 bytes_out 0 117201 bytes_in 0 117201 station_ip 83.122.151.36 117201 port 62 117201 unique_id port 117201 remote_ip 10.8.1.122 117203 username irannezhad 117203 kill_reason Another user logged on this global unique id 117203 mac 117203 bytes_out 0 117170 mac 117170 bytes_out 0 117170 bytes_in 0 117170 station_ip 83.123.242.81 117170 port 148 117170 unique_id port 117170 remote_ip 10.8.0.186 117176 username musa 117176 kill_reason Another user logged on this global unique id 117176 mac 117176 bytes_out 0 117176 bytes_in 0 117176 station_ip 113.203.3.131 117176 port 122 117176 unique_id port 117179 username aminvpn 117179 mac 117179 bytes_out 0 117179 bytes_in 0 117179 station_ip 83.122.166.190 117179 port 150 117179 unique_id port 117179 remote_ip 10.8.0.14 117180 username alihosseini1 117180 mac 117180 bytes_out 0 117180 bytes_in 0 117180 station_ip 5.120.65.142 117180 port 140 117180 unique_id port 117180 remote_ip 10.8.0.166 117182 username forozande 117182 mac 117182 bytes_out 0 117182 bytes_in 0 117182 station_ip 83.122.148.38 117182 port 156 117182 unique_id port 117182 remote_ip 10.8.0.74 117187 username amir 117187 mac 117187 bytes_out 446574 117187 bytes_in 1629062 117187 station_ip 46.225.213.89 117187 port 63 117187 unique_id port 117187 remote_ip 10.8.1.22 117188 username aminvpn 117188 mac 117188 bytes_out 365521 117188 bytes_in 737086 117188 station_ip 83.122.166.190 117188 port 148 117188 unique_id port 117188 remote_ip 10.8.0.14 117197 username milan 117197 mac 117197 bytes_out 0 117197 bytes_in 0 117197 station_ip 5.119.160.100 117197 port 140 117197 unique_id port 117200 username jamali 117200 mac 117200 bytes_out 29973 117200 bytes_in 36086 117200 station_ip 5.119.168.12 117200 port 140 117200 unique_id port 117200 remote_ip 10.8.0.150 117205 username amir 117205 mac 117205 bytes_out 0 117205 bytes_in 0 117205 station_ip 46.225.213.89 117205 port 141 117205 unique_id port 117205 remote_ip 10.8.0.50 117210 username kordestani 117210 mac 117210 bytes_out 366961 117210 bytes_in 4095604 117210 station_ip 151.235.91.78 117210 port 62 117210 unique_id port 117210 remote_ip 10.8.1.98 117217 username kordestani 117217 mac 117217 bytes_out 0 117217 bytes_in 0 117217 station_ip 151.235.91.78 117217 port 62 117217 unique_id port 117217 remote_ip 10.8.1.98 117218 username kordestani 117218 mac 117218 bytes_out 0 117218 bytes_in 0 117218 station_ip 151.235.91.78 117218 port 153 117218 unique_id port 117218 remote_ip 10.8.0.134 117221 username mohammadmahdi 117221 mac 117221 bytes_out 0 117221 bytes_in 0 117221 station_ip 5.119.225.38 117221 port 150 117221 unique_id port 117221 remote_ip 10.8.0.54 117231 username kordestani 117231 kill_reason Another user logged on this global unique id 117231 mac 117231 bytes_out 0 117231 bytes_in 0 117231 station_ip 151.235.117.179 117231 port 62 117231 unique_id port 117231 remote_ip 10.8.1.98 117234 username milan 117234 kill_reason Another user logged on this global unique id 117234 mac 117234 bytes_out 0 117234 bytes_in 0 117234 station_ip 5.119.160.100 117234 port 153 117234 unique_id port 117235 username kordestani 117235 mac 117235 bytes_out 0 117235 bytes_in 0 117235 station_ip 151.235.117.179 117235 port 62 117235 unique_id port 117244 username asma2026 117244 mac 117244 bytes_out 0 117244 bytes_in 0 117244 station_ip 83.122.151.36 117244 port 143 117244 unique_id port 117244 remote_ip 10.8.0.170 117249 username tahmasebi 117249 kill_reason Another user logged on this global unique id 117249 mac 117249 bytes_out 0 117249 bytes_in 0 117249 station_ip 5.119.204.237 117249 port 137 117249 unique_id port 117255 username asma2026 117255 kill_reason Maximum check online fails reached 117255 mac 117183 bytes_out 0 117183 bytes_in 0 117183 station_ip 83.122.151.36 117183 port 140 117183 unique_id port 117183 remote_ip 10.8.0.170 117186 username tahmasebi 117186 mac 117186 bytes_out 0 117186 bytes_in 0 117186 station_ip 5.119.63.197 117186 port 137 117186 unique_id port 117190 username amir 117190 mac 117190 bytes_out 0 117190 bytes_in 0 117190 station_ip 46.225.213.89 117190 port 62 117190 unique_id port 117190 remote_ip 10.8.1.22 117191 username amir 117191 mac 117191 bytes_out 64833 117191 bytes_in 310566 117191 station_ip 46.225.213.89 117191 port 137 117191 unique_id port 117191 remote_ip 10.8.0.50 117194 username malekpoir 117194 mac 117194 bytes_out 0 117194 bytes_in 0 117194 station_ip 5.119.70.111 117194 port 143 117194 unique_id port 117196 username ahmadipour 117196 unique_id port 117196 terminate_cause Lost-Carrier 117196 bytes_out 1221422 117196 bytes_in 35283991 117196 station_ip 83.123.224.228 117196 port 15729512 117196 nas_port_type Virtual 117196 remote_ip 5.5.5.254 117199 username amir 117199 mac 117199 bytes_out 85498 117199 bytes_in 361302 117199 station_ip 46.225.213.89 117199 port 143 117199 unique_id port 117199 remote_ip 10.8.0.50 117202 username forozande 117202 mac 117202 bytes_out 0 117202 bytes_in 0 117202 station_ip 83.123.191.247 117202 port 141 117202 unique_id port 117202 remote_ip 10.8.0.74 117207 username tahmasebi 117207 kill_reason Another user logged on this global unique id 117207 mac 117207 bytes_out 0 117207 bytes_in 0 117207 station_ip 5.119.204.237 117207 port 137 117207 unique_id port 117207 remote_ip 10.8.0.42 117208 username mehdizare 117208 mac 117208 bytes_out 0 117208 bytes_in 0 117208 station_ip 5.119.127.238 117208 port 150 117208 unique_id port 117208 remote_ip 10.8.0.90 117212 username kordestani 117212 mac 117212 bytes_out 30963 117212 bytes_in 156470 117212 station_ip 151.235.91.78 117212 port 63 117212 unique_id port 117212 remote_ip 10.8.1.98 117215 username sedighe 117215 mac 117215 bytes_out 0 117215 bytes_in 0 117215 station_ip 83.123.109.150 117215 port 153 117215 unique_id port 117215 remote_ip 10.8.0.146 117223 username mirzaei 117223 kill_reason Another user logged on this global unique id 117223 mac 117223 bytes_out 0 117223 bytes_in 0 117223 station_ip 5.120.114.170 117223 port 142 117223 unique_id port 117223 remote_ip 10.8.0.66 117225 username milan 117225 kill_reason Another user logged on this global unique id 117225 mac 117225 bytes_out 0 117225 bytes_in 0 117225 station_ip 5.119.160.100 117225 port 153 117225 unique_id port 117225 remote_ip 10.8.0.218 117226 username asma2026 117226 mac 117226 bytes_out 0 117226 bytes_in 0 117226 station_ip 83.122.151.36 117226 port 150 117226 unique_id port 117226 remote_ip 10.8.0.170 117228 username milan 117228 kill_reason Another user logged on this global unique id 117228 mac 117228 bytes_out 0 117228 bytes_in 0 117228 station_ip 5.119.160.100 117228 port 153 117228 unique_id port 117230 username jamali 117230 kill_reason Another user logged on this global unique id 117230 mac 117230 bytes_out 0 117230 bytes_in 0 117230 station_ip 5.119.168.12 117230 port 140 117230 unique_id port 117230 remote_ip 10.8.0.150 117232 username amir 117232 mac 117232 bytes_out 0 117232 bytes_in 0 117232 station_ip 46.225.213.89 117232 port 148 117232 unique_id port 117232 remote_ip 10.8.0.50 117236 username mahdiyehalizadeh 117236 mac 117236 bytes_out 0 117236 bytes_in 0 117236 station_ip 37.129.212.235 117236 port 150 117236 unique_id port 117203 bytes_in 0 117203 station_ip 37.129.104.207 117203 port 143 117203 unique_id port 117203 remote_ip 10.8.0.182 117204 username amir 117204 mac 117204 bytes_out 0 117204 bytes_in 0 117204 station_ip 46.225.213.89 117204 port 141 117204 unique_id port 117204 remote_ip 10.8.0.50 117206 username aminvpn 117206 mac 117206 bytes_out 0 117206 bytes_in 0 117206 station_ip 83.122.166.190 117206 port 151 117206 unique_id port 117206 remote_ip 10.8.0.14 117209 username asma2026 117209 mac 117209 bytes_out 0 117209 bytes_in 0 117209 station_ip 83.122.151.36 117209 port 63 117209 unique_id port 117209 remote_ip 10.8.1.122 117211 username amir 117211 mac 117211 bytes_out 0 117211 bytes_in 0 117211 station_ip 46.225.213.89 117211 port 155 117211 unique_id port 117211 remote_ip 10.8.0.50 117213 username bcboard 117213 unique_id port 117213 terminate_cause Lost-Carrier 117213 bytes_out 3509913 117213 bytes_in 20135638 117213 station_ip 113.203.62.247 117213 port 15729501 117213 nas_port_type Virtual 117213 remote_ip 5.5.5.249 117214 username farhad1 117214 mac 117214 bytes_out 0 117214 bytes_in 0 117214 station_ip 5.120.67.253 117214 port 148 117214 unique_id port 117214 remote_ip 10.8.0.26 117216 username kordestani 117216 mac 117216 bytes_out 34570 117216 bytes_in 225041 117216 station_ip 151.235.91.78 117216 port 62 117216 unique_id port 117216 remote_ip 10.8.1.98 117219 username amir 117219 mac 117219 bytes_out 0 117219 bytes_in 0 117219 station_ip 46.225.213.89 117219 port 155 117219 unique_id port 117219 remote_ip 10.8.0.50 117220 username asma2026 117220 mac 117220 bytes_out 0 117220 bytes_in 0 117220 station_ip 83.122.151.36 117220 port 148 117220 unique_id port 117220 remote_ip 10.8.0.170 117222 username musa 117222 kill_reason Another user logged on this global unique id 117222 mac 117222 bytes_out 0 117222 bytes_in 0 117222 station_ip 113.203.3.131 117222 port 122 117222 unique_id port 117224 username amir 117224 mac 117224 bytes_out 0 117224 bytes_in 0 117224 station_ip 46.225.213.89 117224 port 150 117224 unique_id port 117224 remote_ip 10.8.0.50 117227 username aminvpn 117227 mac 117227 bytes_out 0 117227 bytes_in 0 117227 station_ip 83.122.166.190 117227 port 63 117227 unique_id port 117227 remote_ip 10.8.1.6 117229 username aminvpn 117229 mac 117229 bytes_out 0 117229 bytes_in 0 117229 station_ip 83.123.95.5 117229 port 148 117229 unique_id port 117229 remote_ip 10.8.0.14 117233 username jamali 117233 kill_reason Another user logged on this global unique id 117233 mac 117233 bytes_out 0 117233 bytes_in 0 117233 station_ip 5.119.168.12 117233 port 140 117233 unique_id port 117238 username tahmasebi 117238 kill_reason Another user logged on this global unique id 117238 mac 117238 bytes_out 0 117238 bytes_in 0 117238 station_ip 5.119.204.237 117238 port 137 117238 unique_id port 117239 username jamali 117239 kill_reason Another user logged on this global unique id 117239 mac 117239 bytes_out 0 117239 bytes_in 0 117239 station_ip 5.119.168.12 117239 port 140 117239 unique_id port 117243 username irannezhad 117243 mac 117243 bytes_out 0 117243 bytes_in 0 117243 station_ip 37.129.104.207 117243 port 150 117243 unique_id port 117243 remote_ip 10.8.0.182 117245 username farhad1 117245 mac 117245 bytes_out 2569526 117245 bytes_in 17453871 117245 station_ip 5.120.67.253 117245 port 148 117245 unique_id port 117245 remote_ip 10.8.0.26 117247 username asma2026 117247 mac 117247 bytes_out 0 117236 remote_ip 10.8.0.82 117237 username jamali 117237 kill_reason Another user logged on this global unique id 117237 mac 117237 bytes_out 0 117237 bytes_in 0 117237 station_ip 5.119.168.12 117237 port 140 117237 unique_id port 117240 username milan 117240 mac 117240 bytes_out 0 117240 bytes_in 0 117240 station_ip 5.119.160.100 117240 port 153 117240 unique_id port 117241 username irannezhad 117241 mac 117241 bytes_out 0 117241 bytes_in 0 117241 station_ip 37.129.104.207 117241 port 143 117241 unique_id port 117242 username amir 117242 mac 117242 bytes_out 0 117242 bytes_in 0 117242 station_ip 46.225.213.89 117242 port 143 117242 unique_id port 117242 remote_ip 10.8.0.50 117246 username mirzaei 117246 kill_reason Another user logged on this global unique id 117246 mac 117246 bytes_out 0 117246 bytes_in 0 117246 station_ip 5.120.114.170 117246 port 142 117246 unique_id port 117250 username amir 117250 mac 117250 bytes_out 0 117250 bytes_in 0 117250 station_ip 46.225.213.89 117250 port 143 117250 unique_id port 117250 remote_ip 10.8.0.50 117252 username asma2026 117252 mac 117252 bytes_out 0 117252 bytes_in 0 117252 station_ip 83.122.151.36 117252 port 148 117252 unique_id port 117252 remote_ip 10.8.0.170 117253 username amir 117253 mac 117253 bytes_out 43852 117253 bytes_in 68153 117253 station_ip 46.225.213.89 117253 port 150 117253 unique_id port 117253 remote_ip 10.8.0.50 117260 username asma2026 117260 mac 117260 bytes_out 0 117260 bytes_in 0 117260 station_ip 83.122.151.36 117260 port 64 117260 unique_id port 117260 remote_ip 10.8.1.122 117261 username mirzaei 117261 kill_reason Another user logged on this global unique id 117261 mac 117261 bytes_out 0 117261 bytes_in 0 117261 station_ip 5.120.114.170 117261 port 142 117261 unique_id port 117262 username rajaei 117262 kill_reason Another user logged on this global unique id 117262 mac 117262 bytes_out 0 117262 bytes_in 0 117262 station_ip 37.137.5.4 117262 port 150 117262 unique_id port 117266 username farhad1 117266 mac 117266 bytes_out 0 117266 bytes_in 0 117266 station_ip 5.120.67.253 117266 port 143 117266 unique_id port 117266 remote_ip 10.8.0.26 117267 username rajaei 117267 mac 117267 bytes_out 0 117267 bytes_in 0 117267 station_ip 37.137.5.4 117267 port 150 117267 unique_id port 117268 username amir 117268 mac 117268 bytes_out 0 117268 bytes_in 0 117268 station_ip 46.225.213.89 117268 port 143 117268 unique_id port 117268 remote_ip 10.8.0.50 117269 username asma2026 117269 mac 117269 bytes_out 0 117269 bytes_in 0 117269 station_ip 83.122.151.36 117269 port 143 117269 unique_id port 117269 remote_ip 10.8.0.170 117271 username mirzaei 117271 mac 117271 bytes_out 0 117271 bytes_in 0 117271 station_ip 5.120.114.170 117271 port 142 117271 unique_id port 117273 username khalili 117273 mac 117273 bytes_out 4114562 117273 bytes_in 50353025 117273 station_ip 5.120.84.124 117273 port 98 117273 unique_id port 117273 remote_ip 10.8.0.86 117275 username irannezhad 117275 mac 117275 bytes_out 0 117275 bytes_in 0 117275 station_ip 37.129.104.207 117275 port 64 117275 unique_id port 117275 remote_ip 10.8.1.134 117280 username asma2026 117280 mac 117280 bytes_out 0 117280 bytes_in 0 117280 station_ip 83.122.151.36 117280 port 148 117280 unique_id port 117280 remote_ip 10.8.0.170 117281 username mirzaei 117281 mac 117281 bytes_out 0 117281 bytes_in 0 117281 station_ip 5.119.196.17 117247 bytes_in 0 117247 station_ip 83.122.151.36 117247 port 143 117247 unique_id port 117247 remote_ip 10.8.0.170 117248 username asma2026 117248 kill_reason Maximum check online fails reached 117248 mac 117248 bytes_out 0 117248 bytes_in 0 117248 station_ip 83.122.151.36 117248 port 62 117248 unique_id port 117251 username asma2026 117251 mac 117251 bytes_out 0 117251 bytes_in 0 117251 station_ip 83.122.151.36 117251 port 143 117251 unique_id port 117251 remote_ip 10.8.0.170 117254 username tahmasebi 117254 kill_reason Another user logged on this global unique id 117254 mac 117254 bytes_out 0 117254 bytes_in 0 117254 station_ip 5.119.204.237 117254 port 137 117254 unique_id port 117257 username milan 117257 kill_reason Another user logged on this global unique id 117257 mac 117257 bytes_out 0 117257 bytes_in 0 117257 station_ip 5.119.160.100 117257 port 148 117257 unique_id port 117257 remote_ip 10.8.0.218 117258 username asma2026 117258 kill_reason Maximum check online fails reached 117258 mac 117258 bytes_out 0 117258 bytes_in 0 117258 station_ip 83.122.151.36 117258 port 153 117258 unique_id port 117265 username tahmasebi 117265 kill_reason Another user logged on this global unique id 117265 mac 117265 bytes_out 0 117265 bytes_in 0 117265 station_ip 5.119.204.237 117265 port 137 117265 unique_id port 117278 username rajaei 117278 kill_reason Another user logged on this global unique id 117278 mac 117278 bytes_out 0 117278 bytes_in 0 117278 station_ip 5.62.218.42 117278 port 98 117278 unique_id port 117278 remote_ip 10.8.0.34 117279 username houshang 117279 mac 117279 bytes_out 21730 117279 bytes_in 67413 117279 station_ip 5.119.144.13 117279 port 156 117279 unique_id port 117279 remote_ip 10.8.0.22 117286 username aminvpn 117286 mac 117286 bytes_out 777404 117286 bytes_in 5219495 117286 station_ip 83.122.105.111 117286 port 155 117286 unique_id port 117286 remote_ip 10.8.0.14 117292 username amir 117292 kill_reason Another user logged on this global unique id 117292 mac 117292 bytes_out 0 117292 bytes_in 0 117292 station_ip 46.225.213.89 117292 port 142 117292 unique_id port 117292 remote_ip 10.8.0.50 117294 username asma2026 117294 mac 117294 bytes_out 0 117294 bytes_in 0 117294 station_ip 83.122.151.36 117294 port 148 117294 unique_id port 117294 remote_ip 10.8.0.170 117300 username houshang 117300 mac 117300 bytes_out 24504 117300 bytes_in 62241 117300 station_ip 5.119.144.13 117300 port 148 117300 unique_id port 117300 remote_ip 10.8.0.22 117301 username irannezhad 117301 mac 117301 bytes_out 708248 117301 bytes_in 408065 117301 station_ip 37.129.104.207 117301 port 64 117301 unique_id port 117301 remote_ip 10.8.1.134 117302 username amir 117302 mac 117302 bytes_out 0 117302 bytes_in 0 117302 station_ip 46.225.213.89 117302 port 142 117302 unique_id port 117303 username amir 117303 mac 117303 bytes_out 0 117303 bytes_in 0 117303 station_ip 46.225.213.89 117303 port 142 117303 unique_id port 117303 remote_ip 10.8.0.50 117306 username asma2026 117306 kill_reason Another user logged on this global unique id 117306 mac 117306 bytes_out 0 117306 bytes_in 0 117306 station_ip 83.122.151.36 117306 port 65 117306 unique_id port 117306 remote_ip 10.8.1.122 117307 username asma2026 117307 mac 117307 bytes_out 0 117307 bytes_in 0 117307 station_ip 83.122.151.36 117307 port 65 117307 unique_id port 117311 username houshang 117311 mac 117311 bytes_out 198622 117311 bytes_in 1295296 117311 station_ip 5.119.144.13 117311 port 142 117311 unique_id port 117255 bytes_out 0 117255 bytes_in 0 117255 station_ip 83.122.151.36 117255 port 63 117255 unique_id port 117256 username rajaei 117256 kill_reason Another user logged on this global unique id 117256 mac 117256 bytes_out 0 117256 bytes_in 0 117256 station_ip 37.137.5.4 117256 port 150 117256 unique_id port 117256 remote_ip 10.8.0.34 117259 username amir 117259 mac 117259 bytes_out 0 117259 bytes_in 0 117259 station_ip 46.225.213.89 117259 port 155 117259 unique_id port 117259 remote_ip 10.8.0.50 117263 username milan 117263 mac 117263 bytes_out 0 117263 bytes_in 0 117263 station_ip 5.119.160.100 117263 port 148 117263 unique_id port 117264 username asma2026 117264 mac 117264 bytes_out 0 117264 bytes_in 0 117264 station_ip 83.122.151.36 117264 port 148 117264 unique_id port 117264 remote_ip 10.8.0.170 117270 username asma2026 117270 mac 117270 bytes_out 0 117270 bytes_in 0 117270 station_ip 83.122.151.36 117270 port 143 117270 unique_id port 117270 remote_ip 10.8.0.170 117272 username tahmasebi 117272 kill_reason Another user logged on this global unique id 117272 mac 117272 bytes_out 0 117272 bytes_in 0 117272 station_ip 5.119.204.237 117272 port 137 117272 unique_id port 117274 username asma2026 117274 mac 117274 bytes_out 0 117274 bytes_in 0 117274 station_ip 83.122.151.36 117274 port 65 117274 unique_id port 117274 remote_ip 10.8.1.122 117276 username asma2026 117276 kill_reason Maximum check online fails reached 117276 mac 117276 bytes_out 0 117276 bytes_in 0 117276 station_ip 83.122.151.36 117276 port 150 117276 unique_id port 117277 username houshang 117277 mac 117277 bytes_out 136208 117277 bytes_in 501043 117277 station_ip 5.119.144.13 117277 port 148 117277 unique_id port 117277 remote_ip 10.8.0.22 117282 username tahmasebi 117282 kill_reason Another user logged on this global unique id 117282 mac 117282 bytes_out 0 117282 bytes_in 0 117282 station_ip 5.119.204.237 117282 port 137 117282 unique_id port 117283 username houshang 117283 mac 117283 bytes_out 21841 117283 bytes_in 70256 117283 station_ip 5.119.144.13 117283 port 157 117283 unique_id port 117283 remote_ip 10.8.0.22 117287 username aminvpn 117287 mac 117287 bytes_out 0 117287 bytes_in 0 117287 station_ip 83.122.105.111 117287 port 64 117287 unique_id port 117287 remote_ip 10.8.1.6 117288 username rajaei 117288 kill_reason Another user logged on this global unique id 117288 mac 117288 bytes_out 0 117288 bytes_in 0 117288 station_ip 5.62.218.42 117288 port 98 117288 unique_id port 117289 username asma2026 117289 mac 117289 bytes_out 0 117289 bytes_in 0 117289 station_ip 83.122.151.36 117289 port 148 117289 unique_id port 117289 remote_ip 10.8.0.170 117290 username aminvpn 117290 mac 117290 bytes_out 0 117290 bytes_in 0 117290 station_ip 83.122.105.111 117290 port 143 117290 unique_id port 117290 remote_ip 10.8.0.14 117293 username rajaei 117293 kill_reason Another user logged on this global unique id 117293 mac 117293 bytes_out 0 117293 bytes_in 0 117293 station_ip 5.62.218.42 117293 port 98 117293 unique_id port 117295 username asma2026 117295 mac 117295 bytes_out 0 117295 bytes_in 0 117295 station_ip 83.122.151.36 117295 port 148 117295 unique_id port 117295 remote_ip 10.8.0.170 117296 username asma2026 117296 mac 117296 bytes_out 0 117296 bytes_in 0 117296 station_ip 83.122.151.36 117296 port 155 117296 unique_id port 117296 remote_ip 10.8.0.170 117297 username tahmasebi 117297 kill_reason Another user logged on this global unique id 117297 mac 117281 port 143 117281 unique_id port 117281 remote_ip 10.8.0.66 117284 username asma2026 117284 mac 117284 bytes_out 0 117284 bytes_in 0 117284 station_ip 83.122.151.36 117284 port 143 117284 unique_id port 117284 remote_ip 10.8.0.170 117285 username rajaei 117285 kill_reason Another user logged on this global unique id 117285 mac 117285 bytes_out 0 117285 bytes_in 0 117285 station_ip 5.62.218.42 117285 port 98 117285 unique_id port 117291 username aminvpn 117291 mac 117291 bytes_out 0 117291 bytes_in 0 117291 station_ip 83.122.105.111 117291 port 148 117291 unique_id port 117291 remote_ip 10.8.0.14 117304 username mahdixz 117304 unique_id port 117304 terminate_cause User-Request 117304 bytes_out 39395770 117304 bytes_in 1201951037 117304 station_ip 5.120.177.180 117304 port 15729513 117304 nas_port_type Virtual 117304 remote_ip 5.5.5.101 117305 username houshang 117305 mac 117305 bytes_out 0 117305 bytes_in 0 117305 station_ip 5.119.144.13 117305 port 148 117305 unique_id port 117305 remote_ip 10.8.0.22 117308 username houshang 117308 mac 117308 bytes_out 15923 117308 bytes_in 59285 117308 station_ip 5.119.144.13 117308 port 142 117308 unique_id port 117308 remote_ip 10.8.0.22 117312 username houshang 117312 mac 117312 bytes_out 0 117312 bytes_in 0 117312 station_ip 5.119.144.13 117312 port 148 117312 unique_id port 117312 remote_ip 10.8.0.22 117314 username milan 117314 kill_reason Another user logged on this global unique id 117314 mac 117314 bytes_out 0 117314 bytes_in 0 117314 station_ip 5.120.2.251 117314 port 148 117314 unique_id port 117314 remote_ip 10.8.0.218 117316 username sabaghnezhad 117316 mac 117316 bytes_out 563844 117316 bytes_in 863917 117316 station_ip 83.122.35.91 117316 port 142 117316 unique_id port 117316 remote_ip 10.8.0.186 117319 mac 117319 bytes_out 0 117319 bytes_in 0 117319 station_ip 37.27.14.172 117319 port 151 117319 unique_id port 117319 remote_ip 10.8.0.18 117324 username mohammadjavad 117324 mac 117324 bytes_out 5828 117324 bytes_in 10284 117324 station_ip 83.123.232.212 117324 port 142 117324 unique_id port 117324 remote_ip 10.8.0.142 117325 username mohammadjavad 117325 mac 117325 bytes_out 0 117325 bytes_in 0 117325 station_ip 83.123.232.212 117325 port 64 117325 unique_id port 117325 remote_ip 10.8.1.146 117327 username rostami 117327 mac 117327 bytes_out 343775 117327 bytes_in 1628688 117327 station_ip 5.119.80.144 117327 port 143 117327 unique_id port 117327 remote_ip 10.8.0.194 117328 username musa 117328 mac 117328 bytes_out 0 117328 bytes_in 0 117328 station_ip 113.203.3.131 117328 port 122 117328 unique_id port 117331 username mohammadjavad 117331 mac 117331 bytes_out 0 117331 bytes_in 0 117331 station_ip 83.123.232.212 117331 port 65 117331 unique_id port 117331 remote_ip 10.8.1.146 117336 username irannezhad 117336 mac 117336 bytes_out 2569088 117336 bytes_in 29228751 117336 station_ip 5.214.99.108 117336 port 142 117336 unique_id port 117336 remote_ip 10.8.0.182 117338 username houshang 117338 mac 117338 bytes_out 0 117338 bytes_in 0 117338 station_ip 5.119.144.13 117338 port 122 117338 unique_id port 117340 username morteza 117340 mac 117340 bytes_out 0 117340 bytes_in 0 117340 station_ip 37.129.123.217 117340 port 65 117340 unique_id port 117340 remote_ip 10.8.1.62 117341 username aminvpn 117341 mac 117341 bytes_out 0 117341 bytes_in 0 117341 station_ip 37.129.103.251 117341 port 122 117341 unique_id port 117297 bytes_out 0 117297 bytes_in 0 117297 station_ip 5.119.204.237 117297 port 137 117297 unique_id port 117298 username rajaei 117298 kill_reason Another user logged on this global unique id 117298 mac 117298 bytes_out 0 117298 bytes_in 0 117298 station_ip 5.62.218.42 117298 port 98 117298 unique_id port 117299 username houshang 117299 mac 117299 bytes_out 0 117299 bytes_in 0 117299 station_ip 5.119.144.13 117299 port 148 117299 unique_id port 117299 remote_ip 10.8.0.22 117309 username sobhan 117309 unique_id port 117309 terminate_cause Lost-Carrier 117309 bytes_out 3446229 117309 bytes_in 63067946 117309 station_ip 5.120.46.216 117309 port 15729514 117309 nas_port_type Virtual 117309 remote_ip 5.5.5.254 117310 username sabaghnezhad 117310 mac 117310 bytes_out 1151553 117310 bytes_in 3385381 117310 station_ip 83.123.61.86 117310 port 151 117310 unique_id port 117310 remote_ip 10.8.0.186 117315 username milan 117315 kill_reason Another user logged on this global unique id 117315 mac 117315 bytes_out 0 117315 bytes_in 0 117315 station_ip 5.120.2.251 117315 port 148 117315 unique_id port 117317 username milan 117317 mac 117317 bytes_out 0 117317 bytes_in 0 117317 station_ip 5.120.2.251 117317 port 148 117317 unique_id port 117318 username sabaghnezhad 117318 mac 117318 bytes_out 81655 117318 bytes_in 148205 117318 station_ip 83.123.253.192 117318 port 142 117318 unique_id port 117318 remote_ip 10.8.0.186 117320 username asma2026 117320 mac 117320 bytes_out 0 117320 bytes_in 0 117320 station_ip 113.203.1.45 117320 port 64 117320 unique_id port 117320 remote_ip 10.8.1.122 117333 username mohammadjavad 117333 mac 117333 bytes_out 1114298 117333 bytes_in 11908936 117333 station_ip 83.123.232.212 117333 port 143 117333 unique_id port 117333 remote_ip 10.8.0.142 117337 username houshang 117337 kill_reason Another user logged on this global unique id 117337 mac 117337 bytes_out 0 117337 bytes_in 0 117337 station_ip 5.119.144.13 117337 port 122 117337 unique_id port 117337 remote_ip 10.8.0.22 117339 username rostami 117339 mac 117339 bytes_out 0 117339 bytes_in 0 117339 station_ip 5.119.80.144 117339 port 64 117339 unique_id port 117339 remote_ip 10.8.1.142 117351 username mostafa_es78 117351 unique_id port 117351 terminate_cause User-Request 117351 bytes_out 144355 117351 bytes_in 1681807 117351 station_ip 37.129.94.204 117351 port 15729520 117351 nas_port_type Virtual 117351 remote_ip 5.5.5.255 117352 username mostafa_es78 117352 unique_id port 117352 terminate_cause User-Request 117352 bytes_out 258 117352 bytes_in 176 117352 station_ip 37.129.94.204 117352 port 15729521 117352 nas_port_type Virtual 117352 remote_ip 5.5.5.255 117353 username mostafa_es78 117353 unique_id port 117353 terminate_cause User-Request 117353 bytes_out 55166 117353 bytes_in 375163 117353 station_ip 37.129.94.204 117353 port 15729522 117353 nas_port_type Virtual 117353 remote_ip 5.5.5.255 117363 username milan 117363 kill_reason Another user logged on this global unique id 117363 mac 117363 bytes_out 0 117363 bytes_in 0 117363 station_ip 5.120.2.251 117363 port 122 117363 unique_id port 117365 username ahmadipour 117365 unique_id port 117365 terminate_cause Lost-Carrier 117365 bytes_out 109104 117365 bytes_in 1935204 117365 station_ip 83.123.235.148 117365 port 15729523 117365 nas_port_type Virtual 117365 remote_ip 5.5.5.254 117370 username rezaei 117370 mac 117370 bytes_out 2137942 117370 bytes_in 24752545 117370 station_ip 5.120.39.217 117370 port 64 117370 unique_id port 117370 remote_ip 10.8.1.150 117373 username mirzaei 117373 mac 117373 bytes_out 0 117311 remote_ip 10.8.0.22 117313 username houshang 117313 mac 117313 bytes_out 0 117313 bytes_in 0 117313 station_ip 5.119.144.13 117313 port 142 117313 unique_id port 117313 remote_ip 10.8.0.22 117321 username aminvpn 117321 mac 117321 bytes_out 442618 117321 bytes_in 1154380 117321 station_ip 83.123.104.157 117321 port 143 117321 unique_id port 117321 remote_ip 10.8.0.14 117322 username mohammadjavad 117322 mac 117322 bytes_out 0 117322 bytes_in 0 117322 station_ip 83.123.232.212 117322 port 142 117322 unique_id port 117322 remote_ip 10.8.0.142 117323 username mohammadjavad 117323 mac 117323 bytes_out 2100 117323 bytes_in 5001 117323 station_ip 83.123.232.212 117323 port 143 117323 unique_id port 117323 remote_ip 10.8.0.142 117326 username mohammadjavad 117326 mac 117326 bytes_out 0 117326 bytes_in 0 117326 station_ip 83.123.232.212 117326 port 142 117326 unique_id port 117326 remote_ip 10.8.0.142 117329 username rostami 117329 mac 117329 bytes_out 0 117329 bytes_in 0 117329 station_ip 5.119.80.144 117329 port 64 117329 unique_id port 117329 remote_ip 10.8.1.142 117330 username mohammadjavad 117330 mac 117330 bytes_out 15354 117330 bytes_in 21954 117330 station_ip 83.123.232.212 117330 port 142 117330 unique_id port 117330 remote_ip 10.8.0.142 117332 username houshang 117332 mac 117332 bytes_out 108668 117332 bytes_in 145930 117332 station_ip 5.119.144.13 117332 port 122 117332 unique_id port 117332 remote_ip 10.8.0.22 117334 username sedighe 117334 mac 117334 bytes_out 558172 117334 bytes_in 4123210 117334 station_ip 113.203.43.20 117334 port 142 117334 unique_id port 117334 remote_ip 10.8.0.146 117335 username sedighe 117335 mac 117335 bytes_out 96123 117335 bytes_in 132846 117335 station_ip 37.129.67.147 117335 port 143 117335 unique_id port 117335 remote_ip 10.8.0.146 117346 username rostami 117346 mac 117346 bytes_out 139796 117346 bytes_in 351124 117346 station_ip 5.119.80.144 117346 port 65 117346 unique_id port 117346 remote_ip 10.8.1.142 117348 username houshang 117348 kill_reason Another user logged on this global unique id 117348 mac 117348 bytes_out 0 117348 bytes_in 0 117348 station_ip 5.119.144.13 117348 port 142 117348 unique_id port 117350 username houshang 117350 mac 117350 bytes_out 0 117350 bytes_in 0 117350 station_ip 5.119.144.13 117350 port 142 117350 unique_id port 117354 username rostami 117354 mac 117354 bytes_out 307324 117354 bytes_in 996700 117354 station_ip 5.119.80.144 117354 port 65 117354 unique_id port 117354 remote_ip 10.8.1.142 117355 username morteza 117355 kill_reason Another user logged on this global unique id 117355 mac 117355 bytes_out 0 117355 bytes_in 0 117355 station_ip 37.129.167.253 117355 port 64 117355 unique_id port 117355 remote_ip 10.8.1.62 117358 username sedighe 117358 mac 117358 bytes_out 0 117358 bytes_in 0 117358 station_ip 37.129.178.0 117358 port 142 117358 unique_id port 117358 remote_ip 10.8.0.146 117360 username mohammadjavad 117360 mac 117360 bytes_out 0 117360 bytes_in 0 117360 station_ip 37.129.195.151 117360 port 148 117360 unique_id port 117360 remote_ip 10.8.0.142 117361 username milan 117361 kill_reason Another user logged on this global unique id 117361 mac 117361 bytes_out 0 117361 bytes_in 0 117361 station_ip 5.120.2.251 117361 port 122 117361 unique_id port 117361 remote_ip 10.8.0.218 117366 username houshang 117366 kill_reason Another user logged on this global unique id 117366 mac 117366 bytes_out 0 117366 bytes_in 0 117341 remote_ip 10.8.0.14 117342 username mohammadjavad 117342 mac 117342 bytes_out 0 117342 bytes_in 0 117342 station_ip 37.129.31.160 117342 port 122 117342 unique_id port 117342 remote_ip 10.8.0.142 117343 username houshang 117343 kill_reason Another user logged on this global unique id 117343 mac 117343 bytes_out 0 117343 bytes_in 0 117343 station_ip 5.119.144.13 117343 port 142 117343 unique_id port 117343 remote_ip 10.8.0.22 117344 username aminvpn 117344 mac 117344 bytes_out 0 117344 bytes_in 0 117344 station_ip 37.129.103.251 117344 port 143 117344 unique_id port 117344 remote_ip 10.8.0.14 117345 username aminvpn 117345 mac 117345 bytes_out 0 117345 bytes_in 0 117345 station_ip 37.129.103.251 117345 port 122 117345 unique_id port 117345 remote_ip 10.8.0.14 117347 username mostafa_es78 117347 unique_id port 117347 terminate_cause User-Request 117347 bytes_out 61596 117347 bytes_in 502825 117347 station_ip 37.129.94.204 117347 port 15729518 117347 nas_port_type Virtual 117347 remote_ip 5.5.5.254 117349 username mostafa_es78 117349 unique_id port 117349 terminate_cause User-Request 117349 bytes_out 20486 117349 bytes_in 55959 117349 station_ip 37.129.94.204 117349 port 15729519 117349 nas_port_type Virtual 117349 remote_ip 5.5.5.255 117356 username mohammadjavad 117356 mac 117356 bytes_out 0 117356 bytes_in 0 117356 station_ip 37.129.164.89 117356 port 122 117356 unique_id port 117356 remote_ip 10.8.0.142 117357 username forozande 117357 mac 117357 bytes_out 0 117357 bytes_in 0 117357 station_ip 83.122.95.76 117357 port 143 117357 unique_id port 117357 remote_ip 10.8.0.74 117359 username morteza 117359 mac 117359 bytes_out 0 117359 bytes_in 0 117359 station_ip 37.129.167.253 117359 port 64 117359 unique_id port 117362 username mehdizare 117362 mac 117362 bytes_out 0 117362 bytes_in 0 117362 station_ip 5.119.127.238 117362 port 141 117362 unique_id port 117362 remote_ip 10.8.0.90 117364 username milan 117364 kill_reason Another user logged on this global unique id 117364 mac 117364 bytes_out 0 117364 bytes_in 0 117364 station_ip 5.120.2.251 117364 port 122 117364 unique_id port 117367 username milan 117367 kill_reason Another user logged on this global unique id 117367 mac 117367 bytes_out 0 117367 bytes_in 0 117367 station_ip 5.120.2.251 117367 port 122 117367 unique_id port 117368 username milan 117368 mac 117368 bytes_out 0 117368 bytes_in 0 117368 station_ip 5.120.2.251 117368 port 122 117368 unique_id port 117371 username jamali 117371 mac 117371 bytes_out 0 117371 bytes_in 0 117371 station_ip 5.119.168.12 117371 port 140 117371 unique_id port 117374 username rostami 117374 mac 117374 bytes_out 5813405 117374 bytes_in 31798589 117374 station_ip 5.119.80.144 117374 port 65 117374 unique_id port 117374 remote_ip 10.8.1.142 117381 username rajaei 117381 kill_reason Another user logged on this global unique id 117381 mac 117381 bytes_out 0 117381 bytes_in 0 117381 station_ip 92.114.78.186 117381 port 122 117381 unique_id port 117381 remote_ip 10.8.0.34 117383 username hamid.e 117383 unique_id port 117383 terminate_cause User-Request 117383 bytes_out 1077267 117383 bytes_in 21016647 117383 station_ip 37.27.26.241 117383 port 15729524 117383 nas_port_type Virtual 117383 remote_ip 5.5.5.254 117391 username sedighe 117391 mac 117391 bytes_out 11697 117391 bytes_in 48718 117391 station_ip 83.122.139.98 117391 port 137 117391 unique_id port 117391 remote_ip 10.8.0.146 117398 username mohammadjavad 117398 mac 117398 bytes_out 0 117398 bytes_in 0 117366 station_ip 5.119.144.13 117366 port 141 117366 unique_id port 117366 remote_ip 10.8.0.22 117369 username houshang 117369 mac 117369 bytes_out 0 117369 bytes_in 0 117369 station_ip 5.119.144.13 117369 port 141 117369 unique_id port 117372 username mehdizare 117372 mac 117372 bytes_out 0 117372 bytes_in 0 117372 station_ip 5.119.127.238 117372 port 142 117372 unique_id port 117372 remote_ip 10.8.0.90 117375 username tahmasebi 117375 mac 117375 bytes_out 0 117375 bytes_in 0 117375 station_ip 5.119.204.237 117375 port 137 117375 unique_id port 117376 username aminvpn 117376 mac 117376 bytes_out 0 117376 bytes_in 0 117376 station_ip 83.122.106.123 117376 port 122 117376 unique_id port 117376 remote_ip 10.8.0.14 117380 username aminvpn 117380 unique_id port 117380 terminate_cause User-Request 117380 bytes_out 187392 117380 bytes_in 1505569 117380 station_ip 5.126.13.206 117380 port 15729525 117380 nas_port_type Virtual 117380 remote_ip 5.5.5.252 117382 username rajaei 117382 mac 117382 bytes_out 0 117382 bytes_in 0 117382 station_ip 92.114.78.186 117382 port 122 117382 unique_id port 117386 username aminvpn 117386 mac 117386 bytes_out 0 117386 bytes_in 0 117386 station_ip 83.122.210.15 117386 port 137 117386 unique_id port 117386 remote_ip 10.8.0.14 117387 username ehsun 117387 kill_reason Another user logged on this global unique id 117387 mac 117387 bytes_out 0 117387 bytes_in 0 117387 station_ip 46.225.208.208 117387 port 98 117387 unique_id port 117390 username aminvpn 117390 mac 117390 bytes_out 756828 117390 bytes_in 5252679 117390 station_ip 83.122.210.15 117390 port 122 117390 unique_id port 117390 remote_ip 10.8.0.14 117392 username sedighe 117392 mac 117392 bytes_out 18354 117392 bytes_in 22352 117392 station_ip 83.122.139.98 117392 port 65 117392 unique_id port 117392 remote_ip 10.8.1.78 117394 username sedighe 117394 mac 117394 bytes_out 0 117394 bytes_in 0 117394 station_ip 83.122.139.98 117394 port 65 117394 unique_id port 117394 remote_ip 10.8.1.78 117396 username ehsun 117396 kill_reason Another user logged on this global unique id 117396 mac 117396 bytes_out 0 117396 bytes_in 0 117396 station_ip 46.225.208.208 117396 port 98 117396 unique_id port 117397 username amir 117397 mac 117397 bytes_out 82025 117397 bytes_in 471949 117397 station_ip 46.225.208.136 117397 port 137 117397 unique_id port 117397 remote_ip 10.8.0.50 117401 username sabaghnezhad 117401 mac 117401 bytes_out 26394 117401 bytes_in 34718 117401 station_ip 37.129.238.98 117401 port 64 117401 unique_id port 117401 remote_ip 10.8.1.130 117402 username amir 117402 mac 117402 bytes_out 0 117402 bytes_in 0 117402 station_ip 46.225.208.136 117402 port 122 117402 unique_id port 117402 remote_ip 10.8.0.50 117403 username ehsun 117403 kill_reason Another user logged on this global unique id 117403 mac 117403 bytes_out 0 117403 bytes_in 0 117403 station_ip 46.225.208.208 117403 port 98 117403 unique_id port 117405 username mosi 117405 mac 117405 bytes_out 335436 117405 bytes_in 1438052 117405 station_ip 2.183.134.216 117405 port 137 117405 unique_id port 117405 remote_ip 10.8.0.138 117408 username amir 117408 mac 117408 bytes_out 0 117408 bytes_in 0 117408 station_ip 46.225.208.136 117408 port 137 117408 unique_id port 117408 remote_ip 10.8.0.50 117411 username houshang 117411 kill_reason Another user logged on this global unique id 117411 mac 117411 bytes_out 0 117411 bytes_in 0 117411 station_ip 5.120.81.84 117411 port 137 117373 bytes_in 0 117373 station_ip 5.120.112.182 117373 port 143 117373 unique_id port 117373 remote_ip 10.8.0.66 117377 username rajaei 117377 mac 117377 bytes_out 0 117377 bytes_in 0 117377 station_ip 5.62.218.42 117377 port 98 117377 unique_id port 117378 username kordestani 117378 mac 117378 bytes_out 0 117378 bytes_in 0 117378 station_ip 151.235.119.180 117378 port 122 117378 unique_id port 117378 remote_ip 10.8.0.134 117379 username ehsun 117379 kill_reason Another user logged on this global unique id 117379 mac 117379 bytes_out 0 117379 bytes_in 0 117379 station_ip 46.225.208.208 117379 port 98 117379 unique_id port 117379 remote_ip 10.8.0.162 117384 username ehsun 117384 kill_reason Another user logged on this global unique id 117384 mac 117384 bytes_out 0 117384 bytes_in 0 117384 station_ip 46.225.208.208 117384 port 98 117384 unique_id port 117385 username mohammadjavad 117385 mac 117385 bytes_out 78886 117385 bytes_in 216486 117385 station_ip 83.123.14.200 117385 port 122 117385 unique_id port 117385 remote_ip 10.8.0.142 117388 username ahmadi 117388 unique_id port 117388 terminate_cause User-Request 117388 bytes_out 197830 117388 bytes_in 1020038 117388 station_ip 37.129.43.202 117388 port 15729526 117388 nas_port_type Virtual 117388 remote_ip 5.5.5.254 117389 username sedighe 117389 mac 117389 bytes_out 0 117389 bytes_in 0 117389 station_ip 83.122.139.98 117389 port 65 117389 unique_id port 117389 remote_ip 10.8.1.78 117393 username sedighe 117393 mac 117393 bytes_out 0 117393 bytes_in 0 117393 station_ip 83.122.139.98 117393 port 122 117393 unique_id port 117393 remote_ip 10.8.0.146 117395 username aminvpn 117395 unique_id port 117395 terminate_cause Lost-Carrier 117395 bytes_out 710913 117395 bytes_in 5013830 117395 station_ip 5.126.13.206 117395 port 15729527 117395 nas_port_type Virtual 117395 remote_ip 5.5.5.255 117399 username sabaghnezhad 117399 mac 117399 bytes_out 0 117399 bytes_in 0 117399 station_ip 37.129.238.98 117399 port 122 117399 unique_id port 117399 remote_ip 10.8.0.186 117400 username amir 117400 mac 117400 bytes_out 168393 117400 bytes_in 660157 117400 station_ip 46.225.208.136 117400 port 137 117400 unique_id port 117400 remote_ip 10.8.0.50 117404 username amir 117404 mac 117404 bytes_out 383027 117404 bytes_in 616350 117404 station_ip 46.225.208.136 117404 port 122 117404 unique_id port 117404 remote_ip 10.8.0.50 117407 username sabaghnezhad 117407 mac 117407 bytes_out 0 117407 bytes_in 0 117407 station_ip 37.129.238.98 117407 port 64 117407 unique_id port 117407 remote_ip 10.8.1.130 117414 username amir 117414 mac 117414 bytes_out 0 117414 bytes_in 0 117414 station_ip 46.225.208.136 117414 port 148 117414 unique_id port 117414 remote_ip 10.8.0.50 117419 username amin.saeedi 117419 unique_id port 117419 terminate_cause User-Request 117419 bytes_out 3314384 117419 bytes_in 107542000 117419 station_ip 31.56.155.237 117419 port 15729533 117419 nas_port_type Virtual 117419 remote_ip 5.5.5.251 117427 username forozande 117427 mac 117427 bytes_out 0 117427 bytes_in 0 117427 station_ip 83.122.20.132 117427 port 141 117427 unique_id port 117427 remote_ip 10.8.0.74 117429 username rajaei 117429 kill_reason Another user logged on this global unique id 117429 mac 117429 bytes_out 0 117429 bytes_in 0 117429 station_ip 37.137.2.3 117429 port 122 117429 unique_id port 117436 username amin.saeedi 117436 unique_id port 117436 terminate_cause User-Request 117436 bytes_out 994736 117436 bytes_in 23129130 117436 station_ip 31.56.155.237 117398 station_ip 83.123.14.200 117398 port 64 117398 unique_id port 117398 remote_ip 10.8.1.146 117406 username aminvpn 117406 mac 117406 bytes_out 0 117406 bytes_in 0 117406 station_ip 37.129.84.34 117406 port 137 117406 unique_id port 117406 remote_ip 10.8.0.14 117409 username tahmasebi 117409 kill_reason Another user logged on this global unique id 117409 mac 117409 bytes_out 0 117409 bytes_in 0 117409 station_ip 5.120.25.224 117409 port 141 117409 unique_id port 117409 remote_ip 10.8.0.42 117410 username rajaei 117410 kill_reason Another user logged on this global unique id 117410 mac 117410 bytes_out 0 117410 bytes_in 0 117410 station_ip 37.137.2.3 117410 port 122 117410 unique_id port 117410 remote_ip 10.8.0.34 117413 username houshang 117413 mac 117413 bytes_out 0 117413 bytes_in 0 117413 station_ip 5.120.81.84 117413 port 137 117413 unique_id port 117416 username houshang 117416 kill_reason Another user logged on this global unique id 117416 mac 117416 bytes_out 0 117416 bytes_in 0 117416 station_ip 5.120.81.84 117416 port 151 117416 unique_id port 117416 remote_ip 10.8.0.22 117418 username zare 117418 kill_reason Another user logged on this global unique id 117418 mac 117418 bytes_out 0 117418 bytes_in 0 117418 station_ip 37.27.14.172 117418 port 140 117418 unique_id port 117418 remote_ip 10.8.0.18 117431 username milan 117431 kill_reason Another user logged on this global unique id 117431 mac 117431 bytes_out 0 117431 bytes_in 0 117431 station_ip 5.119.226.158 117431 port 143 117431 unique_id port 117432 username hamid.e 117432 unique_id port 117432 terminate_cause User-Request 117432 bytes_out 9659839 117432 bytes_in 141692088 117432 station_ip 37.27.26.241 117432 port 15729531 117432 nas_port_type Virtual 117432 remote_ip 5.5.5.254 117433 username amir 117433 mac 117433 bytes_out 0 117433 bytes_in 0 117433 station_ip 46.225.208.136 117433 port 98 117433 unique_id port 117433 remote_ip 10.8.0.50 117442 username zare 117442 mac 117442 bytes_out 0 117442 bytes_in 0 117442 station_ip 37.27.14.172 117442 port 143 117442 unique_id port 117442 remote_ip 10.8.0.18 117445 username zare 117445 mac 117445 bytes_out 0 117445 bytes_in 0 117445 station_ip 37.27.14.172 117445 port 143 117445 unique_id port 117445 remote_ip 10.8.0.18 117452 username arabpour 117452 unique_id port 117452 terminate_cause User-Request 117452 bytes_out 334 117452 bytes_in 376 117452 station_ip 83.123.37.139 117452 port 15729540 117452 nas_port_type Virtual 117452 remote_ip 5.5.5.246 117453 username amir 117453 mac 117453 bytes_out 0 117453 bytes_in 0 117453 station_ip 46.225.208.136 117453 port 141 117453 unique_id port 117453 remote_ip 10.8.0.50 117454 username farhad1 117454 kill_reason Another user logged on this global unique id 117454 mac 117454 bytes_out 0 117454 bytes_in 0 117454 station_ip 5.119.217.66 117454 port 151 117454 unique_id port 117454 remote_ip 10.8.0.26 117455 username farhad1 117455 kill_reason Another user logged on this global unique id 117455 mac 117455 bytes_out 0 117455 bytes_in 0 117455 station_ip 5.119.217.66 117455 port 151 117455 unique_id port 117461 username amir 117461 mac 117461 bytes_out 50472 117461 bytes_in 365779 117461 station_ip 46.225.208.136 117461 port 98 117461 unique_id port 117461 remote_ip 10.8.0.50 117464 username rajaei 117464 kill_reason Another user logged on this global unique id 117464 mac 117464 bytes_out 0 117464 bytes_in 0 117464 station_ip 37.137.2.3 117464 port 140 117464 unique_id port 117469 username farhad1 117469 kill_reason Another user logged on this global unique id 117469 mac 117411 unique_id port 117411 remote_ip 10.8.0.22 117412 username ehsun 117412 kill_reason Another user logged on this global unique id 117412 mac 117412 bytes_out 0 117412 bytes_in 0 117412 station_ip 46.225.208.208 117412 port 98 117412 unique_id port 117415 username amir 117415 mac 117415 bytes_out 0 117415 bytes_in 0 117415 station_ip 46.225.208.136 117415 port 137 117415 unique_id port 117415 remote_ip 10.8.0.50 117417 username houshang 117417 mac 117417 bytes_out 0 117417 bytes_in 0 117417 station_ip 5.120.81.84 117417 port 151 117417 unique_id port 117420 username rajaei 117420 kill_reason Another user logged on this global unique id 117420 mac 117420 bytes_out 0 117420 bytes_in 0 117420 station_ip 37.137.2.3 117420 port 122 117420 unique_id port 117421 username amir 117421 mac 117421 bytes_out 0 117421 bytes_in 0 117421 station_ip 46.225.208.136 117421 port 137 117421 unique_id port 117421 remote_ip 10.8.0.50 117422 username ehsun 117422 mac 117422 bytes_out 0 117422 bytes_in 0 117422 station_ip 46.225.208.208 117422 port 98 117422 unique_id port 117423 username milan 117423 kill_reason Another user logged on this global unique id 117423 mac 117423 bytes_out 0 117423 bytes_in 0 117423 station_ip 5.119.226.158 117423 port 143 117423 unique_id port 117423 remote_ip 10.8.0.218 117424 username rajaei 117424 kill_reason Another user logged on this global unique id 117424 mac 117424 bytes_out 0 117424 bytes_in 0 117424 station_ip 37.137.2.3 117424 port 122 117424 unique_id port 117425 username tahmasebi 117425 mac 117425 bytes_out 0 117425 bytes_in 0 117425 station_ip 5.120.25.224 117425 port 141 117425 unique_id port 117426 username amir 117426 mac 117426 bytes_out 50894 117426 bytes_in 355309 117426 station_ip 46.225.208.136 117426 port 137 117426 unique_id port 117426 remote_ip 10.8.0.50 117428 username houshang 117428 mac 117428 bytes_out 0 117428 bytes_in 0 117428 station_ip 5.119.48.131 117428 port 98 117428 unique_id port 117428 remote_ip 10.8.0.22 117430 username ehsun 117430 mac 117430 bytes_out 0 117430 bytes_in 0 117430 station_ip 46.225.208.208 117430 port 137 117430 unique_id port 117430 remote_ip 10.8.0.162 117434 username rajaei 117434 kill_reason Another user logged on this global unique id 117434 mac 117434 bytes_out 0 117434 bytes_in 0 117434 station_ip 37.137.2.3 117434 port 122 117434 unique_id port 117435 username milan 117435 mac 117435 bytes_out 0 117435 bytes_in 0 117435 station_ip 5.119.226.158 117435 port 143 117435 unique_id port 117437 username amir 117437 mac 117437 bytes_out 0 117437 bytes_in 0 117437 station_ip 46.225.208.136 117437 port 98 117437 unique_id port 117437 remote_ip 10.8.0.50 117438 username mohammadjavad 117438 kill_reason Another user logged on this global unique id 117438 mac 117438 bytes_out 0 117438 bytes_in 0 117438 station_ip 83.123.236.210 117438 port 65 117438 unique_id port 117438 remote_ip 10.8.1.146 117439 username rajaei 117439 kill_reason Another user logged on this global unique id 117439 mac 117439 bytes_out 0 117439 bytes_in 0 117439 station_ip 37.137.2.3 117439 port 122 117439 unique_id port 117440 username mohammadjavad 117440 mac 117440 bytes_out 0 117440 bytes_in 0 117440 station_ip 83.123.236.210 117440 port 65 117440 unique_id port 117444 username rajaei 117444 mac 117444 bytes_out 0 117444 bytes_in 0 117444 station_ip 37.137.2.3 117444 port 122 117444 unique_id port 117447 username sabaghnezhad 117447 mac 117447 bytes_out 0 117436 port 15729534 117436 nas_port_type Virtual 117436 remote_ip 5.5.5.255 117441 username zare 117441 mac 117441 bytes_out 0 117441 bytes_in 0 117441 station_ip 37.27.14.172 117441 port 140 117441 unique_id port 117443 username amir 117443 mac 117443 bytes_out 0 117443 bytes_in 0 117443 station_ip 46.225.208.136 117443 port 140 117443 unique_id port 117443 remote_ip 10.8.0.50 117446 username rajaei 117446 kill_reason Another user logged on this global unique id 117446 mac 117446 bytes_out 0 117446 bytes_in 0 117446 station_ip 37.137.2.3 117446 port 140 117446 unique_id port 117446 remote_ip 10.8.0.34 117450 username zare 117450 mac 117450 bytes_out 0 117450 bytes_in 0 117450 station_ip 37.27.14.172 117450 port 148 117450 unique_id port 117450 remote_ip 10.8.0.18 117456 username mahdixz 117456 unique_id port 117456 terminate_cause User-Request 117456 bytes_out 3907762 117456 bytes_in 85075436 117456 station_ip 151.235.80.140 117456 port 15729537 117456 nas_port_type Virtual 117456 remote_ip 5.5.5.248 117457 username mohammadmahdi 117457 kill_reason Another user logged on this global unique id 117457 mac 117457 bytes_out 0 117457 bytes_in 0 117457 station_ip 5.120.99.252 117457 port 98 117457 unique_id port 117457 remote_ip 10.8.0.54 117458 username zare 117458 mac 117458 bytes_out 0 117458 bytes_in 0 117458 station_ip 37.27.14.172 117458 port 148 117458 unique_id port 117458 remote_ip 10.8.0.18 117460 username rajaei 117460 kill_reason Another user logged on this global unique id 117460 mac 117460 bytes_out 0 117460 bytes_in 0 117460 station_ip 37.137.2.3 117460 port 140 117460 unique_id port 117462 username malekpoir 117462 kill_reason Another user logged on this global unique id 117462 mac 117462 bytes_out 0 117462 bytes_in 0 117462 station_ip 5.119.86.119 117462 port 141 117462 unique_id port 117462 remote_ip 10.8.0.58 117463 username farhad1 117463 mac 117463 bytes_out 0 117463 bytes_in 0 117463 station_ip 5.119.217.66 117463 port 151 117463 unique_id port 117466 username farhad1 117466 mac 117466 bytes_out 205516 117466 bytes_in 824613 117466 station_ip 5.119.66.110 117466 port 98 117466 unique_id port 117466 remote_ip 10.8.0.26 117468 username mahdixz 117468 unique_id port 117468 terminate_cause User-Request 117468 bytes_out 1220029 117468 bytes_in 43224175 117468 station_ip 151.235.80.140 117468 port 15729542 117468 nas_port_type Virtual 117468 remote_ip 5.5.5.249 117471 username rajaei 117471 kill_reason Another user logged on this global unique id 117471 mac 117471 bytes_out 0 117471 bytes_in 0 117471 station_ip 37.137.2.3 117471 port 140 117471 unique_id port 117473 username zare 117473 mac 117473 bytes_out 0 117473 bytes_in 0 117473 station_ip 37.27.14.172 117473 port 151 117473 unique_id port 117473 remote_ip 10.8.0.18 117474 username houshang 117474 kill_reason Another user logged on this global unique id 117474 mac 117474 bytes_out 0 117474 bytes_in 0 117474 station_ip 5.120.112.113 117474 port 148 117474 unique_id port 117474 remote_ip 10.8.0.22 117475 username amir 117475 mac 117475 bytes_out 0 117475 bytes_in 0 117475 station_ip 46.225.208.136 117475 port 151 117475 unique_id port 117475 remote_ip 10.8.0.50 117477 username alireza 117477 unique_id port 117477 terminate_cause User-Request 117477 bytes_out 2111614 117477 bytes_in 23186054 117477 station_ip 5.119.173.3 117477 port 15729536 117477 nas_port_type Virtual 117477 remote_ip 5.5.5.250 117484 username amir 117484 mac 117484 bytes_out 0 117484 bytes_in 0 117484 station_ip 46.225.208.136 117484 port 155 117447 bytes_in 0 117447 station_ip 37.129.238.98 117447 port 64 117447 unique_id port 117447 remote_ip 10.8.1.130 117448 username amir 117448 mac 117448 bytes_out 0 117448 bytes_in 0 117448 station_ip 46.225.208.136 117448 port 143 117448 unique_id port 117448 remote_ip 10.8.0.50 117449 username farhad1 117449 mac 117449 bytes_out 3362914 117449 bytes_in 19941228 117449 station_ip 5.120.155.214 117449 port 141 117449 unique_id port 117449 remote_ip 10.8.0.26 117451 username rajaei 117451 kill_reason Another user logged on this global unique id 117451 mac 117451 bytes_out 0 117451 bytes_in 0 117451 station_ip 37.137.2.3 117451 port 140 117451 unique_id port 117459 username mohammadmahdi 117459 mac 117459 bytes_out 0 117459 bytes_in 0 117459 station_ip 5.120.99.252 117459 port 98 117459 unique_id port 117465 username zare 117465 mac 117465 bytes_out 0 117465 bytes_in 0 117465 station_ip 37.27.14.172 117465 port 148 117465 unique_id port 117465 remote_ip 10.8.0.18 117467 username amir 117467 mac 117467 bytes_out 0 117467 bytes_in 0 117467 station_ip 46.225.208.136 117467 port 148 117467 unique_id port 117467 remote_ip 10.8.0.50 117470 username sedighe 117470 mac 117470 bytes_out 73687 117470 bytes_in 174995 117470 station_ip 83.122.139.98 117470 port 148 117470 unique_id port 117470 remote_ip 10.8.0.146 117478 username rajaei 117478 kill_reason Another user logged on this global unique id 117478 mac 117478 bytes_out 0 117478 bytes_in 0 117478 station_ip 37.137.2.3 117478 port 140 117478 unique_id port 117480 username zare 117480 mac 117480 bytes_out 0 117480 bytes_in 0 117480 station_ip 37.27.14.172 117480 port 155 117480 unique_id port 117480 remote_ip 10.8.0.18 117483 username rajaei 117483 mac 117483 bytes_out 0 117483 bytes_in 0 117483 station_ip 37.137.2.3 117483 port 140 117483 unique_id port 117485 username farhad1 117485 mac 117485 bytes_out 0 117485 bytes_in 0 117485 station_ip 5.119.66.110 117485 port 98 117485 unique_id port 117489 username ehsun 117489 kill_reason Another user logged on this global unique id 117489 mac 117489 bytes_out 0 117489 bytes_in 0 117489 station_ip 83.123.238.9 117489 port 156 117489 unique_id port 117489 remote_ip 10.8.0.162 117494 username houshang 117494 kill_reason Another user logged on this global unique id 117494 mac 117494 bytes_out 0 117494 bytes_in 0 117494 station_ip 5.120.112.113 117494 port 148 117494 unique_id port 117498 username houshang 117498 mac 117498 bytes_out 0 117498 bytes_in 0 117498 station_ip 5.120.112.113 117498 port 148 117498 unique_id port 117500 username mirzaei 117500 kill_reason Another user logged on this global unique id 117500 mac 117500 bytes_out 0 117500 bytes_in 0 117500 station_ip 5.119.40.159 117500 port 122 117500 unique_id port 117500 remote_ip 10.8.0.66 117503 username forozande 117503 mac 117503 bytes_out 0 117503 bytes_in 0 117503 station_ip 37.129.137.227 117503 port 156 117503 unique_id port 117503 remote_ip 10.8.0.74 117504 username farhad1 117504 kill_reason Another user logged on this global unique id 117504 mac 117504 bytes_out 0 117504 bytes_in 0 117504 station_ip 5.119.63.112 117504 port 98 117504 unique_id port 117510 username amir 117510 mac 117510 bytes_out 0 117510 bytes_in 0 117510 station_ip 46.225.208.136 117510 port 157 117510 unique_id port 117510 remote_ip 10.8.0.50 117511 username amir 117511 mac 117511 bytes_out 0 117511 bytes_in 0 117511 station_ip 46.225.208.136 117511 port 64 117469 bytes_out 0 117469 bytes_in 0 117469 station_ip 5.119.66.110 117469 port 98 117469 unique_id port 117469 remote_ip 10.8.0.26 117472 username aminvpn 117472 unique_id port 117472 terminate_cause Lost-Carrier 117472 bytes_out 3728329 117472 bytes_in 33279293 117472 station_ip 5.125.194.206 117472 port 15729541 117472 nas_port_type Virtual 117472 remote_ip 5.5.5.246 117476 username rajaei 117476 kill_reason Another user logged on this global unique id 117476 mac 117476 bytes_out 0 117476 bytes_in 0 117476 station_ip 37.137.2.3 117476 port 140 117476 unique_id port 117479 username houshang 117479 kill_reason Another user logged on this global unique id 117479 mac 117479 bytes_out 0 117479 bytes_in 0 117479 station_ip 5.120.112.113 117479 port 148 117479 unique_id port 117481 username ehsun 117481 kill_reason Another user logged on this global unique id 117481 mac 117481 bytes_out 0 117481 bytes_in 0 117481 station_ip 46.225.208.208 117481 port 151 117481 unique_id port 117481 remote_ip 10.8.0.162 117482 username houshang 117482 kill_reason Another user logged on this global unique id 117482 mac 117482 bytes_out 0 117482 bytes_in 0 117482 station_ip 5.120.112.113 117482 port 148 117482 unique_id port 117486 username ehsun 117486 mac 117486 bytes_out 0 117486 bytes_in 0 117486 station_ip 46.225.208.208 117486 port 151 117486 unique_id port 117487 username reza2742 117487 unique_id port 117487 terminate_cause Lost-Carrier 117487 bytes_out 15642078 117487 bytes_in 400796529 117487 station_ip 5.202.14.104 117487 port 15729535 117487 nas_port_type Virtual 117487 remote_ip 5.5.5.254 117490 username zare 117490 mac 117490 bytes_out 0 117490 bytes_in 0 117490 station_ip 37.27.14.172 117490 port 157 117490 unique_id port 117490 remote_ip 10.8.0.18 117491 username houshang 117491 kill_reason Another user logged on this global unique id 117491 mac 117491 bytes_out 0 117491 bytes_in 0 117491 station_ip 5.120.112.113 117491 port 148 117491 unique_id port 117492 username sabaghnezhad 117492 mac 117492 bytes_out 0 117492 bytes_in 0 117492 station_ip 37.129.238.98 117492 port 143 117492 unique_id port 117492 remote_ip 10.8.0.186 117495 username amir 117495 mac 117495 bytes_out 0 117495 bytes_in 0 117495 station_ip 46.225.208.136 117495 port 155 117495 unique_id port 117495 remote_ip 10.8.0.50 117502 username houshang 117502 kill_reason Another user logged on this global unique id 117502 mac 117502 bytes_out 0 117502 bytes_in 0 117502 station_ip 5.120.112.113 117502 port 140 117502 unique_id port 117502 remote_ip 10.8.0.22 117509 username houshang 117509 kill_reason Another user logged on this global unique id 117509 mac 117509 bytes_out 0 117509 bytes_in 0 117509 station_ip 5.120.112.113 117509 port 140 117509 unique_id port 117513 username amir 117513 mac 117513 bytes_out 0 117513 bytes_in 0 117513 station_ip 46.225.208.136 117513 port 157 117513 unique_id port 117513 remote_ip 10.8.0.50 117516 username farhad1 117516 kill_reason Another user logged on this global unique id 117516 mac 117516 bytes_out 0 117516 bytes_in 0 117516 station_ip 5.119.63.112 117516 port 98 117516 unique_id port 117517 username tahmasebi 117517 kill_reason Another user logged on this global unique id 117517 mac 117517 bytes_out 0 117517 bytes_in 0 117517 station_ip 5.119.132.27 117517 port 137 117517 unique_id port 117517 remote_ip 10.8.0.42 117520 username houshang 117520 mac 117520 bytes_out 0 117520 bytes_in 0 117520 station_ip 5.120.112.113 117520 port 140 117520 unique_id port 117526 username aminvpn 117526 mac 117526 bytes_out 0 117526 bytes_in 0 117484 unique_id port 117484 remote_ip 10.8.0.50 117488 username amirabbas 117488 unique_id port 117488 terminate_cause User-Request 117488 bytes_out 30771239 117488 bytes_in 803461604 117488 station_ip 37.27.3.159 117488 port 15729532 117488 nas_port_type Virtual 117488 remote_ip 5.5.5.252 117493 username farhad1 117493 kill_reason Another user logged on this global unique id 117493 mac 117493 bytes_out 0 117493 bytes_in 0 117493 station_ip 5.119.63.112 117493 port 98 117493 unique_id port 117493 remote_ip 10.8.0.26 117496 username ehsun 117496 mac 117496 bytes_out 0 117496 bytes_in 0 117496 station_ip 83.123.238.9 117496 port 156 117496 unique_id port 117497 username musa 117497 mac 117497 bytes_out 0 117497 bytes_in 0 117497 station_ip 113.203.67.66 117497 port 151 117497 unique_id port 117497 remote_ip 10.8.0.6 117499 username aminvpn 117499 mac 117499 bytes_out 0 117499 bytes_in 0 117499 station_ip 5.119.213.212 117499 port 140 117499 unique_id port 117499 remote_ip 10.8.0.14 117501 username amir 117501 mac 117501 bytes_out 0 117501 bytes_in 0 117501 station_ip 46.225.208.136 117501 port 157 117501 unique_id port 117501 remote_ip 10.8.0.50 117505 username houshang 117505 kill_reason Another user logged on this global unique id 117505 mac 117505 bytes_out 0 117505 bytes_in 0 117505 station_ip 5.120.112.113 117505 port 140 117505 unique_id port 117506 username mirzaei 117506 kill_reason Another user logged on this global unique id 117506 mac 117506 bytes_out 0 117506 bytes_in 0 117506 station_ip 5.119.40.159 117506 port 122 117506 unique_id port 117507 username khalili 117507 kill_reason Another user logged on this global unique id 117507 mac 117507 bytes_out 0 117507 bytes_in 0 117507 station_ip 5.119.105.212 117507 port 148 117507 unique_id port 117507 remote_ip 10.8.0.86 117508 username rezaei 117508 kill_reason Another user logged on this global unique id 117508 mac 117508 bytes_out 0 117508 bytes_in 0 117508 station_ip 5.120.133.6 117508 port 156 117508 unique_id port 117508 remote_ip 10.8.0.206 117515 username amir 117515 mac 117515 bytes_out 0 117515 bytes_in 0 117515 station_ip 46.225.208.136 117515 port 155 117515 unique_id port 117515 remote_ip 10.8.0.50 117518 username houshang 117518 kill_reason Another user logged on this global unique id 117518 mac 117518 bytes_out 0 117518 bytes_in 0 117518 station_ip 5.120.112.113 117518 port 140 117518 unique_id port 117519 username aminvpn 117519 mac 117519 bytes_out 16229 117519 bytes_in 17672 117519 station_ip 5.119.213.212 117519 port 158 117519 unique_id port 117519 remote_ip 10.8.0.14 117522 username zare 117522 kill_reason Another user logged on this global unique id 117522 mac 117522 bytes_out 0 117522 bytes_in 0 117522 station_ip 37.27.14.172 117522 port 151 117522 unique_id port 117522 remote_ip 10.8.0.18 117529 username aminvpn 117529 mac 117529 bytes_out 0 117529 bytes_in 0 117529 station_ip 83.122.5.82 117529 port 140 117529 unique_id port 117529 remote_ip 10.8.0.14 117530 username aminvpn 117530 mac 117530 bytes_out 0 117530 bytes_in 0 117530 station_ip 5.119.213.212 117530 port 157 117530 unique_id port 117530 remote_ip 10.8.0.14 117531 username amir 117531 mac 117531 bytes_out 0 117531 bytes_in 0 117531 station_ip 46.225.208.136 117531 port 155 117531 unique_id port 117531 remote_ip 10.8.0.50 117534 username farhad1 117534 kill_reason Another user logged on this global unique id 117534 mac 117534 bytes_out 0 117534 bytes_in 0 117534 station_ip 5.119.63.112 117534 port 98 117534 unique_id port 117511 unique_id port 117511 remote_ip 10.8.1.22 117512 username aminvpn 117512 mac 117512 bytes_out 0 117512 bytes_in 0 117512 station_ip 5.119.213.212 117512 port 155 117512 unique_id port 117512 remote_ip 10.8.0.14 117514 username hamid.e 117514 unique_id port 117514 terminate_cause User-Request 117514 bytes_out 6487331 117514 bytes_in 94547446 117514 station_ip 37.27.26.241 117514 port 15729543 117514 nas_port_type Virtual 117514 remote_ip 5.5.5.248 117521 username amir 117521 mac 117521 bytes_out 0 117521 bytes_in 0 117521 station_ip 46.225.208.136 117521 port 140 117521 unique_id port 117521 remote_ip 10.8.0.50 117523 username musa 117523 kill_reason Another user logged on this global unique id 117523 mac 117523 bytes_out 0 117523 bytes_in 0 117523 station_ip 113.203.67.66 117523 port 143 117523 unique_id port 117523 remote_ip 10.8.0.6 117524 username mahdiyehalizadeh 117524 mac 117524 bytes_out 0 117524 bytes_in 0 117524 station_ip 83.122.153.176 117524 port 157 117524 unique_id port 117524 remote_ip 10.8.0.82 117525 username aminvpn 117525 mac 117525 bytes_out 0 117525 bytes_in 0 117525 station_ip 5.119.213.212 117525 port 155 117525 unique_id port 117525 remote_ip 10.8.0.14 117528 username malekpoir 117528 kill_reason Another user logged on this global unique id 117528 mac 117528 bytes_out 0 117528 bytes_in 0 117528 station_ip 5.119.86.119 117528 port 141 117528 unique_id port 117532 username aminvpn 117532 mac 117532 bytes_out 0 117532 bytes_in 0 117532 station_ip 83.122.5.82 117532 port 140 117532 unique_id port 117532 remote_ip 10.8.0.14 117533 username aminvpn 117533 mac 117533 bytes_out 0 117533 bytes_in 0 117533 station_ip 5.119.213.212 117533 port 155 117533 unique_id port 117533 remote_ip 10.8.0.14 117537 username aminvpn 117537 mac 117537 bytes_out 0 117537 bytes_in 0 117537 station_ip 5.119.213.212 117537 port 155 117537 unique_id port 117537 remote_ip 10.8.0.14 117538 username aminvpn 117538 mac 117538 bytes_out 0 117538 bytes_in 0 117538 station_ip 83.122.5.82 117538 port 143 117538 unique_id port 117538 remote_ip 10.8.0.14 117541 username aminvpn 117541 mac 117541 bytes_out 0 117541 bytes_in 0 117541 station_ip 5.119.213.212 117541 port 155 117541 unique_id port 117541 remote_ip 10.8.0.14 117542 username aminvpn 117542 mac 117542 bytes_out 0 117542 bytes_in 0 117542 station_ip 83.122.5.82 117542 port 143 117542 unique_id port 117542 remote_ip 10.8.0.14 117543 username rezaei 117543 mac 117543 bytes_out 0 117543 bytes_in 0 117543 station_ip 5.120.133.6 117543 port 156 117543 unique_id port 117544 username zare 117544 mac 117544 bytes_out 0 117544 bytes_in 0 117544 station_ip 37.27.14.172 117544 port 151 117544 unique_id port 117545 username khalili 117545 kill_reason Another user logged on this global unique id 117545 mac 117545 bytes_out 0 117545 bytes_in 0 117545 station_ip 5.119.105.212 117545 port 148 117545 unique_id port 117546 username milan 117546 kill_reason Another user logged on this global unique id 117546 mac 117546 bytes_out 0 117546 bytes_in 0 117546 station_ip 5.119.226.158 117546 port 156 117546 unique_id port 117546 remote_ip 10.8.0.218 117547 username khalili 117547 mac 117547 bytes_out 0 117547 bytes_in 0 117547 station_ip 5.119.105.212 117547 port 148 117547 unique_id port 117549 username mirzaei 117549 mac 117549 bytes_out 0 117549 bytes_in 0 117549 station_ip 5.119.40.159 117549 port 122 117549 unique_id port 117526 station_ip 83.122.5.82 117526 port 140 117526 unique_id port 117526 remote_ip 10.8.0.14 117527 username aminvpn 117527 mac 117527 bytes_out 0 117527 bytes_in 0 117527 station_ip 5.119.213.212 117527 port 155 117527 unique_id port 117527 remote_ip 10.8.0.14 117535 username aminvpn 117535 mac 117535 bytes_out 0 117535 bytes_in 0 117535 station_ip 83.122.5.82 117535 port 140 117535 unique_id port 117535 remote_ip 10.8.0.14 117539 username aminvpn 117539 mac 117539 bytes_out 0 117539 bytes_in 0 117539 station_ip 5.119.213.212 117539 port 155 117539 unique_id port 117539 remote_ip 10.8.0.14 117548 username aminvpn 117548 mac 117548 bytes_out 0 117548 bytes_in 0 117548 station_ip 5.119.213.212 117548 port 155 117548 unique_id port 117548 remote_ip 10.8.0.14 117564 username forozande 117564 mac 117564 bytes_out 542337 117564 bytes_in 8708377 117564 station_ip 83.123.152.79 117564 port 122 117564 unique_id port 117564 remote_ip 10.8.0.74 117566 username aminvpn 117566 mac 117566 bytes_out 0 117566 bytes_in 0 117566 station_ip 83.122.5.82 117566 port 122 117566 unique_id port 117566 remote_ip 10.8.0.14 117572 username aminvpn 117572 mac 117572 bytes_out 0 117572 bytes_in 0 117572 station_ip 5.119.213.212 117572 port 140 117572 unique_id port 117572 remote_ip 10.8.0.14 117575 username aminvpn 117575 mac 117575 bytes_out 0 117575 bytes_in 0 117575 station_ip 5.119.213.212 117575 port 140 117575 unique_id port 117575 remote_ip 10.8.0.14 117576 username aminvpn 117576 mac 117576 bytes_out 0 117576 bytes_in 0 117576 station_ip 83.122.5.82 117576 port 151 117576 unique_id port 117576 remote_ip 10.8.0.14 117578 username aminvpn 117578 mac 117578 bytes_out 0 117578 bytes_in 0 117578 station_ip 83.122.5.82 117578 port 151 117578 unique_id port 117578 remote_ip 10.8.0.14 117586 username aminvpn 117586 mac 117586 bytes_out 0 117586 bytes_in 0 117586 station_ip 5.119.213.212 117586 port 140 117586 unique_id port 117586 remote_ip 10.8.0.14 117588 username aminvpn 117588 mac 117588 bytes_out 0 117588 bytes_in 0 117588 station_ip 5.119.213.212 117588 port 140 117588 unique_id port 117588 remote_ip 10.8.0.14 117589 username aminvpn 117589 mac 117589 bytes_out 0 117589 bytes_in 0 117589 station_ip 5.119.213.212 117589 port 155 117589 unique_id port 117589 remote_ip 10.8.0.14 117591 username aminvpn 117591 mac 117591 bytes_out 0 117591 bytes_in 0 117591 station_ip 5.119.213.212 117591 port 158 117591 unique_id port 117591 remote_ip 10.8.0.14 117592 username aminvpn 117592 mac 117592 bytes_out 0 117592 bytes_in 0 117592 station_ip 5.119.213.212 117592 port 140 117592 unique_id port 117592 remote_ip 10.8.0.14 117597 username alihosseini1 117597 mac 117597 bytes_out 1726744 117597 bytes_in 27696776 117597 station_ip 5.119.52.252 117597 port 155 117597 unique_id port 117597 remote_ip 10.8.0.166 117598 username aminvpn 117598 mac 117598 bytes_out 0 117598 bytes_in 0 117598 station_ip 5.119.213.212 117598 port 158 117598 unique_id port 117598 remote_ip 10.8.0.14 117600 username aminvpn 117600 mac 117600 bytes_out 0 117600 bytes_in 0 117600 station_ip 5.119.213.212 117600 port 155 117600 unique_id port 117600 remote_ip 10.8.0.14 117602 username aminvpn 117602 mac 117602 bytes_out 0 117602 bytes_in 0 117602 station_ip 5.119.213.212 117602 port 158 117602 unique_id port 117602 remote_ip 10.8.0.14 117536 username musa 117536 mac 117536 bytes_out 0 117536 bytes_in 0 117536 station_ip 113.203.67.66 117536 port 143 117536 unique_id port 117540 username aminvpn 117540 mac 117540 bytes_out 0 117540 bytes_in 0 117540 station_ip 83.122.5.82 117540 port 143 117540 unique_id port 117540 remote_ip 10.8.0.14 117551 username irannezhad 117551 mac 117551 bytes_out 0 117551 bytes_in 0 117551 station_ip 5.216.8.228 117551 port 148 117551 unique_id port 117551 remote_ip 10.8.0.182 117555 username irannezhad 117555 mac 117555 bytes_out 0 117555 bytes_in 0 117555 station_ip 5.216.8.228 117555 port 140 117555 unique_id port 117555 remote_ip 10.8.0.182 117557 username aminvpn 117557 mac 117557 bytes_out 0 117557 bytes_in 0 117557 station_ip 83.122.5.82 117557 port 140 117557 unique_id port 117557 remote_ip 10.8.0.14 117558 username aminvpn 117558 mac 117558 bytes_out 0 117558 bytes_in 0 117558 station_ip 5.119.213.212 117558 port 122 117558 unique_id port 117558 remote_ip 10.8.0.14 117559 username aminvpn 117559 mac 117559 bytes_out 0 117559 bytes_in 0 117559 station_ip 83.122.5.82 117559 port 140 117559 unique_id port 117559 remote_ip 10.8.0.14 117560 username aminvpn 117560 mac 117560 bytes_out 0 117560 bytes_in 0 117560 station_ip 5.119.213.212 117560 port 151 117560 unique_id port 117560 remote_ip 10.8.0.14 117561 username aminvpn 117561 mac 117561 bytes_out 0 117561 bytes_in 0 117561 station_ip 83.122.5.82 117561 port 140 117561 unique_id port 117561 remote_ip 10.8.0.14 117562 username aminvpn 117562 mac 117562 bytes_out 0 117562 bytes_in 0 117562 station_ip 5.119.213.212 117562 port 155 117562 unique_id port 117562 remote_ip 10.8.0.14 117565 username aminvpn 117565 mac 117565 bytes_out 0 117565 bytes_in 0 117565 station_ip 5.119.213.212 117565 port 155 117565 unique_id port 117565 remote_ip 10.8.0.14 117568 username aminvpn 117568 mac 117568 bytes_out 0 117568 bytes_in 0 117568 station_ip 5.119.213.212 117568 port 140 117568 unique_id port 117568 remote_ip 10.8.0.14 117569 username aminvpn 117569 mac 117569 bytes_out 0 117569 bytes_in 0 117569 station_ip 83.122.5.82 117569 port 155 117569 unique_id port 117569 remote_ip 10.8.0.14 117580 username ahmadi 117580 unique_id port 117580 terminate_cause User-Request 117580 bytes_out 293906 117580 bytes_in 1635565 117580 station_ip 83.122.69.138 117580 port 15729544 117580 nas_port_type Virtual 117580 remote_ip 5.5.5.254 117582 username aminvpn 117582 mac 117582 bytes_out 0 117582 bytes_in 0 117582 station_ip 5.119.213.212 117582 port 140 117582 unique_id port 117582 remote_ip 10.8.0.14 117593 username aminvpn 117593 mac 117593 bytes_out 0 117593 bytes_in 0 117593 station_ip 5.119.213.212 117593 port 158 117593 unique_id port 117593 remote_ip 10.8.0.14 117594 username aminvpn 117594 mac 117594 bytes_out 0 117594 bytes_in 0 117594 station_ip 5.119.213.212 117594 port 140 117594 unique_id port 117594 remote_ip 10.8.0.14 117596 username aminvpn 117596 mac 117596 bytes_out 0 117596 bytes_in 0 117596 station_ip 5.119.213.212 117596 port 140 117596 unique_id port 117596 remote_ip 10.8.0.14 117599 username aminvpn 117599 mac 117599 bytes_out 0 117599 bytes_in 0 117599 station_ip 5.119.213.212 117599 port 140 117599 unique_id port 117599 remote_ip 10.8.0.14 117604 username hoorieh 117604 mac 117604 bytes_out 0 117604 bytes_in 0 117550 username aminvpn 117550 mac 117550 bytes_out 0 117550 bytes_in 0 117550 station_ip 83.122.5.82 117550 port 151 117550 unique_id port 117550 remote_ip 10.8.0.14 117552 username musa 117552 mac 117552 bytes_out 1453622 117552 bytes_in 28493887 117552 station_ip 113.203.67.66 117552 port 140 117552 unique_id port 117552 remote_ip 10.8.0.6 117553 username aminvpn 117553 mac 117553 bytes_out 0 117553 bytes_in 0 117553 station_ip 5.119.213.212 117553 port 122 117553 unique_id port 117553 remote_ip 10.8.0.14 117554 username aminvpn 117554 mac 117554 bytes_out 0 117554 bytes_in 0 117554 station_ip 83.122.5.82 117554 port 151 117554 unique_id port 117554 remote_ip 10.8.0.14 117556 username aminvpn 117556 mac 117556 bytes_out 0 117556 bytes_in 0 117556 station_ip 5.119.213.212 117556 port 122 117556 unique_id port 117556 remote_ip 10.8.0.14 117563 username aminvpn 117563 mac 117563 bytes_out 0 117563 bytes_in 0 117563 station_ip 83.122.5.82 117563 port 140 117563 unique_id port 117563 remote_ip 10.8.0.14 117567 username tahmasebi 117567 kill_reason Another user logged on this global unique id 117567 mac 117567 bytes_out 0 117567 bytes_in 0 117567 station_ip 5.119.132.27 117567 port 137 117567 unique_id port 117570 username aminvpn 117570 mac 117570 bytes_out 0 117570 bytes_in 0 117570 station_ip 5.119.213.212 117570 port 140 117570 unique_id port 117570 remote_ip 10.8.0.14 117571 username aminvpn 117571 mac 117571 bytes_out 0 117571 bytes_in 0 117571 station_ip 83.122.5.82 117571 port 155 117571 unique_id port 117571 remote_ip 10.8.0.14 117573 username hoorieh 117573 mac 117573 bytes_out 0 117573 bytes_in 0 117573 station_ip 5.120.17.49 117573 port 151 117573 unique_id port 117573 remote_ip 10.8.0.38 117574 username aminvpn 117574 mac 117574 bytes_out 0 117574 bytes_in 0 117574 station_ip 83.122.5.82 117574 port 155 117574 unique_id port 117574 remote_ip 10.8.0.14 117577 username aminvpn 117577 mac 117577 bytes_out 0 117577 bytes_in 0 117577 station_ip 5.119.213.212 117577 port 140 117577 unique_id port 117577 remote_ip 10.8.0.14 117579 username farhad1 117579 mac 117579 bytes_out 0 117579 bytes_in 0 117579 station_ip 5.119.63.112 117579 port 98 117579 unique_id port 117581 username amir 117581 kill_reason Another user logged on this global unique id 117581 mac 117581 bytes_out 0 117581 bytes_in 0 117581 station_ip 46.225.208.136 117581 port 157 117581 unique_id port 117581 remote_ip 10.8.0.50 117583 username aminvpn 117583 mac 117583 bytes_out 0 117583 bytes_in 0 117583 station_ip 5.119.213.212 117583 port 155 117583 unique_id port 117583 remote_ip 10.8.0.14 117584 username aminvpn 117584 mac 117584 bytes_out 0 117584 bytes_in 0 117584 station_ip 5.119.213.212 117584 port 140 117584 unique_id port 117584 remote_ip 10.8.0.14 117585 username aminvpn 117585 mac 117585 bytes_out 0 117585 bytes_in 0 117585 station_ip 5.119.213.212 117585 port 155 117585 unique_id port 117585 remote_ip 10.8.0.14 117587 username aminvpn 117587 mac 117587 bytes_out 0 117587 bytes_in 0 117587 station_ip 5.119.213.212 117587 port 155 117587 unique_id port 117587 remote_ip 10.8.0.14 117590 username aminvpn 117590 mac 117590 bytes_out 0 117590 bytes_in 0 117590 station_ip 5.119.213.212 117590 port 140 117590 unique_id port 117590 remote_ip 10.8.0.14 117595 username aminvpn 117595 mac 117595 bytes_out 0 117595 bytes_in 0 117595 station_ip 5.119.213.212 117595 port 158 117595 unique_id port 117595 remote_ip 10.8.0.14 117601 username musa 117601 mac 117601 bytes_out 0 117601 bytes_in 0 117601 station_ip 113.203.67.66 117601 port 148 117601 unique_id port 117601 remote_ip 10.8.0.6 117606 username aminvpn 117606 mac 117606 bytes_out 0 117606 bytes_in 0 117606 station_ip 5.119.213.212 117606 port 148 117606 unique_id port 117606 remote_ip 10.8.0.14 117609 username farhad1 117609 kill_reason Another user logged on this global unique id 117609 mac 117609 bytes_out 0 117609 bytes_in 0 117609 station_ip 5.120.100.76 117609 port 98 117609 unique_id port 117609 remote_ip 10.8.0.26 117613 username alihosseini1 117613 mac 117613 bytes_out 0 117613 bytes_in 0 117613 station_ip 5.119.52.252 117613 port 148 117613 unique_id port 117613 remote_ip 10.8.0.166 117614 username aminvpn 117614 mac 117614 bytes_out 0 117614 bytes_in 0 117614 station_ip 5.119.213.212 117614 port 155 117614 unique_id port 117614 remote_ip 10.8.0.14 117615 username aminvpn 117615 mac 117615 bytes_out 0 117615 bytes_in 0 117615 station_ip 5.119.213.212 117615 port 148 117615 unique_id port 117615 remote_ip 10.8.0.14 117616 username aminvpn 117616 mac 117616 bytes_out 0 117616 bytes_in 0 117616 station_ip 5.119.213.212 117616 port 155 117616 unique_id port 117616 remote_ip 10.8.0.14 117618 username kordestani 117618 mac 117618 bytes_out 374022 117618 bytes_in 4876970 117618 station_ip 151.235.88.209 117618 port 151 117618 unique_id port 117618 remote_ip 10.8.0.134 117619 username amir 117619 mac 117619 bytes_out 0 117619 bytes_in 0 117619 station_ip 46.225.208.136 117619 port 157 117619 unique_id port 117622 username aminvpn 117622 mac 117622 bytes_out 0 117622 bytes_in 0 117622 station_ip 5.119.213.212 117622 port 155 117622 unique_id port 117622 remote_ip 10.8.0.14 117623 username aminvpn 117623 mac 117623 bytes_out 0 117623 bytes_in 0 117623 station_ip 5.119.213.212 117623 port 151 117623 unique_id port 117623 remote_ip 10.8.0.14 117626 username aminvpn 117626 mac 117626 bytes_out 0 117626 bytes_in 0 117626 station_ip 5.119.213.212 117626 port 155 117626 unique_id port 117626 remote_ip 10.8.0.14 117631 username mehdizare 117631 mac 117631 bytes_out 1430749 117631 bytes_in 36952576 117631 station_ip 5.119.203.243 117631 port 140 117631 unique_id port 117631 remote_ip 10.8.0.90 117634 username aminvpn 117634 mac 117634 bytes_out 0 117634 bytes_in 0 117634 station_ip 5.119.213.212 117634 port 158 117634 unique_id port 117634 remote_ip 10.8.0.14 117636 username alihosseini1 117636 mac 117636 bytes_out 1386047 117636 bytes_in 13393914 117636 station_ip 5.119.52.252 117636 port 151 117636 unique_id port 117636 remote_ip 10.8.0.166 117638 username aminvpn 117638 mac 117638 bytes_out 0 117638 bytes_in 0 117638 station_ip 5.119.213.212 117638 port 98 117638 unique_id port 117638 remote_ip 10.8.0.14 117640 username aminvpn 117640 mac 117640 bytes_out 0 117640 bytes_in 0 117640 station_ip 5.119.213.212 117640 port 151 117640 unique_id port 117640 remote_ip 10.8.0.14 117644 username alihosseini1 117644 mac 117644 bytes_out 0 117644 bytes_in 0 117644 station_ip 5.119.214.158 117644 port 140 117644 unique_id port 117644 remote_ip 10.8.0.166 117647 username mehdizare 117647 kill_reason Another user logged on this global unique id 117647 mac 117647 bytes_out 0 117647 bytes_in 0 117647 station_ip 5.119.203.243 117603 username aminvpn 117603 mac 117603 bytes_out 0 117603 bytes_in 0 117603 station_ip 5.119.213.212 117603 port 148 117603 unique_id port 117603 remote_ip 10.8.0.14 117608 username aminvpn 117608 mac 117608 bytes_out 0 117608 bytes_in 0 117608 station_ip 5.119.213.212 117608 port 155 117608 unique_id port 117608 remote_ip 10.8.0.14 117610 username forozande 117610 mac 117610 bytes_out 0 117610 bytes_in 0 117610 station_ip 37.129.108.160 117610 port 151 117610 unique_id port 117610 remote_ip 10.8.0.74 117611 username aminvpn 117611 mac 117611 bytes_out 0 117611 bytes_in 0 117611 station_ip 5.119.213.212 117611 port 148 117611 unique_id port 117611 remote_ip 10.8.0.14 117612 username aminvpn 117612 mac 117612 bytes_out 0 117612 bytes_in 0 117612 station_ip 5.119.213.212 117612 port 151 117612 unique_id port 117612 remote_ip 10.8.0.14 117617 username aminvpn 117617 mac 117617 bytes_out 0 117617 bytes_in 0 117617 station_ip 5.119.213.212 117617 port 148 117617 unique_id port 117617 remote_ip 10.8.0.14 117620 username aminvpn 117620 mac 117620 bytes_out 0 117620 bytes_in 0 117620 station_ip 5.119.213.212 117620 port 155 117620 unique_id port 117620 remote_ip 10.8.0.14 117621 username aminvpn 117621 mac 117621 bytes_out 0 117621 bytes_in 0 117621 station_ip 5.119.213.212 117621 port 151 117621 unique_id port 117621 remote_ip 10.8.0.14 117627 username irannezhad 117627 mac 117627 bytes_out 0 117627 bytes_in 0 117627 station_ip 89.199.189.117 117627 port 65 117627 unique_id port 117627 remote_ip 10.8.1.134 117628 username mohammadjavad 117628 mac 117628 bytes_out 0 117628 bytes_in 0 117628 station_ip 113.203.40.141 117628 port 155 117628 unique_id port 117628 remote_ip 10.8.0.142 117632 username aminvpn 117632 mac 117632 bytes_out 0 117632 bytes_in 0 117632 station_ip 5.119.213.212 117632 port 156 117632 unique_id port 117632 remote_ip 10.8.0.14 117633 username aminvpn 117633 mac 117633 bytes_out 0 117633 bytes_in 0 117633 station_ip 5.119.213.212 117633 port 140 117633 unique_id port 117633 remote_ip 10.8.0.14 117635 username farhad1 117635 mac 117635 bytes_out 0 117635 bytes_in 0 117635 station_ip 5.120.100.76 117635 port 98 117635 unique_id port 117637 username aminvpn 117637 mac 117637 bytes_out 0 117637 bytes_in 0 117637 station_ip 5.119.213.212 117637 port 140 117637 unique_id port 117637 remote_ip 10.8.0.14 117642 username aminvpn 117642 mac 117642 bytes_out 0 117642 bytes_in 0 117642 station_ip 5.119.213.212 117642 port 156 117642 unique_id port 117642 remote_ip 10.8.0.14 117643 username aminvpn 117643 mac 117643 bytes_out 0 117643 bytes_in 0 117643 station_ip 5.119.213.212 117643 port 98 117643 unique_id port 117643 remote_ip 10.8.0.14 117645 username amir 117645 mac 117645 bytes_out 53683 117645 bytes_in 299603 117645 station_ip 46.225.208.136 117645 port 151 117645 unique_id port 117645 remote_ip 10.8.0.50 117655 username aminvpn 117655 mac 117655 bytes_out 0 117655 bytes_in 0 117655 station_ip 5.119.213.212 117655 port 98 117655 unique_id port 117655 remote_ip 10.8.0.14 117661 username aminvpn 117661 mac 117661 bytes_out 0 117661 bytes_in 0 117661 station_ip 5.119.213.212 117661 port 98 117661 unique_id port 117661 remote_ip 10.8.0.14 117671 username musa 117671 mac 117671 bytes_out 1763568 117671 bytes_in 24533467 117671 station_ip 113.203.67.66 117671 port 148 117604 station_ip 5.120.17.49 117604 port 64 117604 unique_id port 117604 remote_ip 10.8.1.154 117605 username aminvpn 117605 mac 117605 bytes_out 0 117605 bytes_in 0 117605 station_ip 5.119.213.212 117605 port 155 117605 unique_id port 117605 remote_ip 10.8.0.14 117607 username milan 117607 mac 117607 bytes_out 0 117607 bytes_in 0 117607 station_ip 5.119.226.158 117607 port 156 117607 unique_id port 117624 username aminvpn 117624 mac 117624 bytes_out 0 117624 bytes_in 0 117624 station_ip 5.119.213.212 117624 port 155 117624 unique_id port 117624 remote_ip 10.8.0.14 117625 username aminvpn 117625 mac 117625 bytes_out 0 117625 bytes_in 0 117625 station_ip 5.119.213.212 117625 port 156 117625 unique_id port 117625 remote_ip 10.8.0.14 117629 username aminvpn 117629 mac 117629 bytes_out 0 117629 bytes_in 0 117629 station_ip 5.119.213.212 117629 port 156 117629 unique_id port 117629 remote_ip 10.8.0.14 117630 username aminvpn 117630 mac 117630 bytes_out 0 117630 bytes_in 0 117630 station_ip 5.119.213.212 117630 port 155 117630 unique_id port 117630 remote_ip 10.8.0.14 117639 username forozande 117639 mac 117639 bytes_out 108898 117639 bytes_in 347205 117639 station_ip 83.122.129.207 117639 port 156 117639 unique_id port 117639 remote_ip 10.8.0.74 117641 username aminvpn 117641 mac 117641 bytes_out 0 117641 bytes_in 0 117641 station_ip 5.119.213.212 117641 port 98 117641 unique_id port 117641 remote_ip 10.8.0.14 117646 username aminvpn 117646 mac 117646 bytes_out 0 117646 bytes_in 0 117646 station_ip 5.119.213.212 117646 port 159 117646 unique_id port 117646 remote_ip 10.8.0.14 117649 username kordestani 117649 kill_reason Another user logged on this global unique id 117649 mac 117649 bytes_out 0 117649 bytes_in 0 117649 station_ip 151.235.88.209 117649 port 64 117649 unique_id port 117649 remote_ip 10.8.1.98 117650 username aminvpn 117650 mac 117650 bytes_out 0 117650 bytes_in 0 117650 station_ip 5.119.213.212 117650 port 140 117650 unique_id port 117650 remote_ip 10.8.0.14 117652 username alihosseini1 117652 mac 117652 bytes_out 0 117652 bytes_in 0 117652 station_ip 5.119.214.158 117652 port 65 117652 unique_id port 117652 remote_ip 10.8.1.106 117653 username aminvpn 117653 mac 117653 bytes_out 0 117653 bytes_in 0 117653 station_ip 5.119.213.212 117653 port 151 117653 unique_id port 117653 remote_ip 10.8.0.14 117657 username aminvpn 117657 mac 117657 bytes_out 7625 117657 bytes_in 10082 117657 station_ip 5.119.213.212 117657 port 98 117657 unique_id port 117657 remote_ip 10.8.0.14 117659 username mohammadjavad 117659 mac 117659 bytes_out 0 117659 bytes_in 0 117659 station_ip 113.203.40.141 117659 port 157 117659 unique_id port 117659 remote_ip 10.8.0.142 117660 username forozande 117660 mac 117660 bytes_out 0 117660 bytes_in 0 117660 station_ip 37.129.137.112 117660 port 151 117660 unique_id port 117660 remote_ip 10.8.0.74 117663 username rezaei 117663 mac 117663 bytes_out 0 117663 bytes_in 0 117663 station_ip 5.120.133.6 117663 port 143 117663 unique_id port 117663 remote_ip 10.8.0.206 117666 username rostami 117666 kill_reason Another user logged on this global unique id 117666 mac 117666 bytes_out 0 117666 bytes_in 0 117666 station_ip 5.119.139.178 117666 port 142 117666 unique_id port 117666 remote_ip 10.8.0.194 117668 username amir 117668 mac 117668 bytes_out 0 117668 bytes_in 0 117668 station_ip 46.225.208.136 117668 port 143 117647 port 155 117647 unique_id port 117647 remote_ip 10.8.0.90 117648 username aminvpn 117648 mac 117648 bytes_out 0 117648 bytes_in 0 117648 station_ip 5.119.213.212 117648 port 98 117648 unique_id port 117648 remote_ip 10.8.0.14 117651 username aminvpn 117651 mac 117651 bytes_out 0 117651 bytes_in 0 117651 station_ip 5.119.213.212 117651 port 98 117651 unique_id port 117651 remote_ip 10.8.0.14 117654 username kordestani 117654 mac 117654 bytes_out 0 117654 bytes_in 0 117654 station_ip 151.235.88.209 117654 port 64 117654 unique_id port 117656 username aminvpn 117656 mac 117656 bytes_out 0 117656 bytes_in 0 117656 station_ip 5.119.213.212 117656 port 159 117656 unique_id port 117656 remote_ip 10.8.0.14 117658 username aminvpn 117658 mac 117658 bytes_out 0 117658 bytes_in 0 117658 station_ip 5.119.213.212 117658 port 159 117658 unique_id port 117658 remote_ip 10.8.0.14 117662 username mohammadjavad 117662 mac 117662 bytes_out 5898 117662 bytes_in 7621 117662 station_ip 113.203.40.141 117662 port 157 117662 unique_id port 117662 remote_ip 10.8.0.142 117664 username khalili 117664 kill_reason Another user logged on this global unique id 117664 mac 117664 bytes_out 0 117664 bytes_in 0 117664 station_ip 5.119.105.212 117664 port 156 117664 unique_id port 117664 remote_ip 10.8.0.86 117665 username aminvpn 117665 mac 117665 bytes_out 0 117665 bytes_in 0 117665 station_ip 5.119.213.212 117665 port 159 117665 unique_id port 117665 remote_ip 10.8.0.14 117667 username aminvpn 117667 mac 117667 bytes_out 0 117667 bytes_in 0 117667 station_ip 5.119.213.212 117667 port 98 117667 unique_id port 117667 remote_ip 10.8.0.14 117669 username aminvpn 117669 mac 117669 bytes_out 0 117669 bytes_in 0 117669 station_ip 5.119.213.212 117669 port 157 117669 unique_id port 117669 remote_ip 10.8.0.14 117670 username aminvpn 117670 mac 117670 bytes_out 0 117670 bytes_in 0 117670 station_ip 5.119.213.212 117670 port 143 117670 unique_id port 117670 remote_ip 10.8.0.14 117676 username aminvpn 117676 mac 117676 bytes_out 0 117676 bytes_in 0 117676 station_ip 5.119.213.212 117676 port 157 117676 unique_id port 117676 remote_ip 10.8.0.14 117681 username aminvpn 117681 mac 117681 bytes_out 0 117681 bytes_in 0 117681 station_ip 5.119.213.212 117681 port 148 117681 unique_id port 117681 remote_ip 10.8.0.14 117688 username farhad1 117688 kill_reason Another user logged on this global unique id 117688 mac 117688 bytes_out 0 117688 bytes_in 0 117688 station_ip 5.120.93.25 117688 port 158 117688 unique_id port 117688 remote_ip 10.8.0.26 117692 username aminvpn 117692 mac 117692 bytes_out 0 117692 bytes_in 0 117692 station_ip 5.120.164.102 117692 port 151 117692 unique_id port 117692 remote_ip 10.8.0.14 117694 username mehdizare 117694 mac 117694 bytes_out 0 117694 bytes_in 0 117694 station_ip 5.119.203.243 117694 port 155 117694 unique_id port 117698 username mehdizare 117698 mac 117698 bytes_out 5052 117698 bytes_in 8361 117698 station_ip 5.119.203.243 117698 port 155 117698 unique_id port 117698 remote_ip 10.8.0.90 117701 username alihosseini1 117701 kill_reason Another user logged on this global unique id 117701 mac 117701 bytes_out 0 117701 bytes_in 0 117701 station_ip 5.119.214.158 117701 port 64 117701 unique_id port 117701 remote_ip 10.8.1.106 117703 username rostami 117703 mac 117703 bytes_out 0 117703 bytes_in 0 117703 station_ip 5.119.139.178 117703 port 142 117668 unique_id port 117668 remote_ip 10.8.0.50 117672 username aminvpn 117672 mac 117672 bytes_out 0 117672 bytes_in 0 117672 station_ip 5.119.213.212 117672 port 157 117672 unique_id port 117672 remote_ip 10.8.0.14 117674 username aminvpn 117674 mac 117674 bytes_out 0 117674 bytes_in 0 117674 station_ip 5.119.213.212 117674 port 157 117674 unique_id port 117674 remote_ip 10.8.0.14 117675 username aminvpn 117675 mac 117675 bytes_out 0 117675 bytes_in 0 117675 station_ip 5.119.213.212 117675 port 148 117675 unique_id port 117675 remote_ip 10.8.0.14 117677 username musa 117677 mac 117677 bytes_out 11675 117677 bytes_in 17737 117677 station_ip 113.203.67.66 117677 port 143 117677 unique_id port 117677 remote_ip 10.8.0.6 117678 username aminvpn 117678 mac 117678 bytes_out 0 117678 bytes_in 0 117678 station_ip 5.119.213.212 117678 port 148 117678 unique_id port 117678 remote_ip 10.8.0.14 117682 username aminvpn 117682 mac 117682 bytes_out 0 117682 bytes_in 0 117682 station_ip 5.119.213.212 117682 port 143 117682 unique_id port 117682 remote_ip 10.8.0.14 117684 username aminvpn 117684 mac 117684 bytes_out 0 117684 bytes_in 0 117684 station_ip 5.119.213.212 117684 port 157 117684 unique_id port 117684 remote_ip 10.8.0.14 117690 username aminvpn 117690 mac 117690 bytes_out 1672 117690 bytes_in 6675 117690 station_ip 5.119.213.212 117690 port 143 117690 unique_id port 117690 remote_ip 10.8.0.14 117691 username aminvpn 117691 mac 117691 bytes_out 0 117691 bytes_in 0 117691 station_ip 5.120.164.102 117691 port 143 117691 unique_id port 117691 remote_ip 10.8.0.14 117695 username mohammadjavad 117695 mac 117695 bytes_out 0 117695 bytes_in 0 117695 station_ip 113.203.40.141 117695 port 66 117695 unique_id port 117695 remote_ip 10.8.1.146 117696 username mehdizare 117696 mac 117696 bytes_out 8082 117696 bytes_in 11078 117696 station_ip 5.119.203.243 117696 port 151 117696 unique_id port 117696 remote_ip 10.8.0.90 117697 username amir 117697 mac 117697 bytes_out 0 117697 bytes_in 0 117697 station_ip 46.225.208.136 117697 port 151 117697 unique_id port 117697 remote_ip 10.8.0.50 117700 username khalili 117700 mac 117700 bytes_out 0 117700 bytes_in 0 117700 station_ip 5.119.105.212 117700 port 156 117700 unique_id port 117702 username mehdizare 117702 mac 117702 bytes_out 0 117702 bytes_in 0 117702 station_ip 5.119.203.243 117702 port 151 117702 unique_id port 117702 remote_ip 10.8.0.90 117708 username aminvpn 117708 mac 117708 bytes_out 502135 117708 bytes_in 3830771 117708 station_ip 5.120.164.102 117708 port 65 117708 unique_id port 117708 remote_ip 10.8.1.6 117711 username mirzaei 117711 kill_reason Another user logged on this global unique id 117711 mac 117711 bytes_out 0 117711 bytes_in 0 117711 station_ip 5.119.247.72 117711 port 122 117711 unique_id port 117711 remote_ip 10.8.0.66 117713 username alihosseini1 117713 mac 117713 bytes_out 0 117713 bytes_in 0 117713 station_ip 5.119.214.158 117713 port 142 117713 unique_id port 117713 remote_ip 10.8.0.166 117716 username avaanna 117716 mac 117716 bytes_out 0 117716 bytes_in 0 117716 station_ip 37.129.89.182 117716 port 98 117716 unique_id port 117716 remote_ip 10.8.0.98 117721 username rostami 117721 mac 117721 bytes_out 0 117721 bytes_in 0 117721 station_ip 5.119.139.178 117721 port 155 117721 unique_id port 117721 remote_ip 10.8.0.194 117723 username mehdizare 117671 unique_id port 117671 remote_ip 10.8.0.6 117673 username aminvpn 117673 mac 117673 bytes_out 0 117673 bytes_in 0 117673 station_ip 5.119.213.212 117673 port 148 117673 unique_id port 117673 remote_ip 10.8.0.14 117679 username tahmasebi 117679 kill_reason Another user logged on this global unique id 117679 mac 117679 bytes_out 0 117679 bytes_in 0 117679 station_ip 5.119.132.27 117679 port 137 117679 unique_id port 117680 username aminvpn 117680 mac 117680 bytes_out 0 117680 bytes_in 0 117680 station_ip 5.119.213.212 117680 port 143 117680 unique_id port 117680 remote_ip 10.8.0.14 117683 username alirr 117683 unique_id port 117683 terminate_cause User-Request 117683 bytes_out 974801 117683 bytes_in 2632998 117683 station_ip 5.120.31.168 117683 port 15729545 117683 nas_port_type Virtual 117683 remote_ip 5.5.5.254 117685 username amir 117685 mac 117685 bytes_out 278866 117685 bytes_in 501740 117685 station_ip 46.225.208.136 117685 port 159 117685 unique_id port 117685 remote_ip 10.8.0.50 117686 username aminvpn 117686 mac 117686 bytes_out 0 117686 bytes_in 0 117686 station_ip 5.119.213.212 117686 port 143 117686 unique_id port 117686 remote_ip 10.8.0.14 117687 username aminvpn 117687 mac 117687 bytes_out 0 117687 bytes_in 0 117687 station_ip 5.119.213.212 117687 port 157 117687 unique_id port 117687 remote_ip 10.8.0.14 117689 username sedighe 117689 mac 117689 bytes_out 0 117689 bytes_in 0 117689 station_ip 83.122.58.11 117689 port 151 117689 unique_id port 117689 remote_ip 10.8.0.146 117693 username musa 117693 mac 117693 bytes_out 0 117693 bytes_in 0 117693 station_ip 113.203.67.66 117693 port 148 117693 unique_id port 117693 remote_ip 10.8.0.6 117699 username mehdizare 117699 mac 117699 bytes_out 0 117699 bytes_in 0 117699 station_ip 5.119.203.243 117699 port 66 117699 unique_id port 117699 remote_ip 10.8.1.42 117704 username mehdizare 117704 mac 117704 bytes_out 43725 117704 bytes_in 72098 117704 station_ip 5.119.203.243 117704 port 151 117704 unique_id port 117704 remote_ip 10.8.0.90 117705 username mohammadmahdi 117705 mac 117705 bytes_out 0 117705 bytes_in 0 117705 station_ip 83.122.181.238 117705 port 155 117705 unique_id port 117705 remote_ip 10.8.0.54 117706 username mahdixz 117706 unique_id port 117706 terminate_cause User-Request 117706 bytes_out 238873 117706 bytes_in 675827 117706 station_ip 151.235.116.4 117706 port 15729548 117706 nas_port_type Virtual 117706 remote_ip 5.5.5.250 117707 username alihosseini1 117707 mac 117707 bytes_out 0 117707 bytes_in 0 117707 station_ip 5.119.214.158 117707 port 64 117707 unique_id port 117709 username alihosseini1 117709 mac 117709 bytes_out 0 117709 bytes_in 0 117709 station_ip 5.119.214.158 117709 port 155 117709 unique_id port 117709 remote_ip 10.8.0.166 117717 username alirr 117717 unique_id port 117717 terminate_cause User-Request 117717 bytes_out 20444486 117717 bytes_in 483714073 117717 station_ip 5.120.46.26 117717 port 15729546 117717 nas_port_type Virtual 117717 remote_ip 5.5.5.252 117719 username avaanna 117719 mac 117719 bytes_out 0 117719 bytes_in 0 117719 station_ip 37.129.89.182 117719 port 159 117719 unique_id port 117719 remote_ip 10.8.0.98 117722 username farhad1 117722 kill_reason Another user logged on this global unique id 117722 mac 117722 bytes_out 0 117722 bytes_in 0 117722 station_ip 5.120.166.155 117722 port 98 117722 unique_id port 117722 remote_ip 10.8.0.26 117727 username aminvpn 117727 mac 117727 bytes_out 0 117703 unique_id port 117710 username rajaei 117710 mac 117710 bytes_out 0 117710 bytes_in 0 117710 station_ip 37.156.157.9 117710 port 142 117710 unique_id port 117710 remote_ip 10.8.0.34 117712 username alihosseini1 117712 mac 117712 bytes_out 0 117712 bytes_in 0 117712 station_ip 5.119.214.158 117712 port 142 117712 unique_id port 117712 remote_ip 10.8.0.166 117714 username aminvpn 117714 mac 117714 bytes_out 0 117714 bytes_in 0 117714 station_ip 5.120.164.102 117714 port 64 117714 unique_id port 117714 remote_ip 10.8.1.6 117715 username farhad1 117715 kill_reason Another user logged on this global unique id 117715 mac 117715 bytes_out 0 117715 bytes_in 0 117715 station_ip 5.120.93.25 117715 port 158 117715 unique_id port 117718 username farhad1 117718 mac 117718 bytes_out 0 117718 bytes_in 0 117718 station_ip 5.120.93.25 117718 port 158 117718 unique_id port 117720 username sedighe 117720 mac 117720 bytes_out 0 117720 bytes_in 0 117720 station_ip 83.122.58.11 117720 port 156 117720 unique_id port 117720 remote_ip 10.8.0.146 117725 username aminvpn 117725 mac 117725 bytes_out 0 117725 bytes_in 0 117725 station_ip 5.120.164.102 117725 port 159 117725 unique_id port 117725 remote_ip 10.8.0.14 117726 username mehdizare 117726 mac 117726 bytes_out 0 117726 bytes_in 0 117726 station_ip 5.119.203.243 117726 port 155 117726 unique_id port 117726 remote_ip 10.8.0.90 117729 username mosi 117729 kill_reason Another user logged on this global unique id 117729 mac 117729 bytes_out 0 117729 bytes_in 0 117729 station_ip 151.235.102.250 117729 port 156 117729 unique_id port 117729 remote_ip 10.8.0.138 117730 username aminvpn 117730 mac 117730 bytes_out 0 117730 bytes_in 0 117730 station_ip 5.120.164.102 117730 port 143 117730 unique_id port 117730 remote_ip 10.8.0.14 117732 username aminvpn 117732 mac 117732 bytes_out 0 117732 bytes_in 0 117732 station_ip 5.120.164.102 117732 port 155 117732 unique_id port 117732 remote_ip 10.8.0.14 117733 username mehdizare 117733 mac 117733 bytes_out 0 117733 bytes_in 0 117733 station_ip 5.119.203.243 117733 port 159 117733 unique_id port 117733 remote_ip 10.8.0.90 117735 username mohammadmahdi 117735 mac 117735 bytes_out 0 117735 bytes_in 0 117735 station_ip 83.122.181.238 117735 port 151 117735 unique_id port 117735 remote_ip 10.8.0.54 117738 username rajaei 117738 kill_reason Another user logged on this global unique id 117738 mac 117738 bytes_out 0 117738 bytes_in 0 117738 station_ip 5.62.213.139 117738 port 158 117738 unique_id port 117738 remote_ip 10.8.0.34 117740 username mosi 117740 kill_reason Another user logged on this global unique id 117740 mac 117740 bytes_out 0 117740 bytes_in 0 117740 station_ip 151.235.102.250 117740 port 156 117740 unique_id port 117743 username musa 117743 kill_reason Another user logged on this global unique id 117743 mac 117743 bytes_out 0 117743 bytes_in 0 117743 station_ip 113.203.67.66 117743 port 148 117743 unique_id port 117744 username mosi 117744 kill_reason Another user logged on this global unique id 117744 mac 117744 bytes_out 0 117744 bytes_in 0 117744 station_ip 151.235.102.250 117744 port 156 117744 unique_id port 117754 username aminvpn 117754 mac 117754 bytes_out 91642 117754 bytes_in 104302 117754 station_ip 5.120.164.102 117754 port 155 117754 unique_id port 117754 remote_ip 10.8.0.14 117757 username alihosseini1 117757 mac 117757 bytes_out 0 117757 bytes_in 0 117757 station_ip 5.119.214.158 117757 port 157 117723 mac 117723 bytes_out 0 117723 bytes_in 0 117723 station_ip 5.119.203.243 117723 port 151 117723 unique_id port 117723 remote_ip 10.8.0.90 117724 username aminvpn 117724 mac 117724 bytes_out 0 117724 bytes_in 0 117724 station_ip 5.120.164.102 117724 port 143 117724 unique_id port 117724 remote_ip 10.8.0.14 117731 username musa 117731 kill_reason Another user logged on this global unique id 117731 mac 117731 bytes_out 0 117731 bytes_in 0 117731 station_ip 113.203.67.66 117731 port 148 117731 unique_id port 117731 remote_ip 10.8.0.6 117741 username aminvpn 117741 mac 117741 bytes_out 0 117741 bytes_in 0 117741 station_ip 5.120.164.102 117741 port 155 117741 unique_id port 117741 remote_ip 10.8.0.14 117745 username aminvpn 117745 mac 117745 bytes_out 0 117745 bytes_in 0 117745 station_ip 5.120.164.102 117745 port 65 117745 unique_id port 117745 remote_ip 10.8.1.6 117752 username mosi 117752 kill_reason Another user logged on this global unique id 117752 mac 117752 bytes_out 0 117752 bytes_in 0 117752 station_ip 151.235.102.250 117752 port 156 117752 unique_id port 117753 username rajaei 117753 kill_reason Another user logged on this global unique id 117753 mac 117753 bytes_out 0 117753 bytes_in 0 117753 station_ip 5.62.213.139 117753 port 158 117753 unique_id port 117755 username aminvpn 117755 mac 117755 bytes_out 0 117755 bytes_in 0 117755 station_ip 83.122.53.106 117755 port 160 117755 unique_id port 117755 remote_ip 10.8.0.14 117756 username forozande 117756 mac 117756 bytes_out 0 117756 bytes_in 0 117756 station_ip 37.129.208.152 117756 port 159 117756 unique_id port 117756 remote_ip 10.8.0.74 117761 username tahmasebi 117761 kill_reason Another user logged on this global unique id 117761 mac 117761 bytes_out 0 117761 bytes_in 0 117761 station_ip 5.119.132.27 117761 port 137 117761 unique_id port 117762 username sobhan 117762 unique_id port 117762 terminate_cause Lost-Carrier 117762 bytes_out 6798572 117762 bytes_in 153167814 117762 station_ip 5.233.79.26 117762 port 15729549 117762 nas_port_type Virtual 117762 remote_ip 5.5.5.254 117765 username aminvpn 117765 mac 117765 bytes_out 0 117765 bytes_in 0 117765 station_ip 5.120.164.102 117765 port 155 117765 unique_id port 117765 remote_ip 10.8.0.14 117773 username zare 117773 mac 117773 bytes_out 0 117773 bytes_in 0 117773 station_ip 37.27.38.78 117773 port 142 117773 unique_id port 117773 remote_ip 10.8.0.18 117774 username mosi 117774 kill_reason Another user logged on this global unique id 117774 mac 117774 bytes_out 0 117774 bytes_in 0 117774 station_ip 151.235.102.250 117774 port 148 117774 unique_id port 117774 remote_ip 10.8.0.138 117778 username mosi 117778 kill_reason Another user logged on this global unique id 117778 mac 117778 bytes_out 0 117778 bytes_in 0 117778 station_ip 151.235.102.250 117778 port 148 117778 unique_id port 117780 username sedighe 117780 mac 117780 bytes_out 0 117780 bytes_in 0 117780 station_ip 83.122.154.118 117780 port 155 117780 unique_id port 117780 remote_ip 10.8.0.146 117783 username mosi 117783 kill_reason Another user logged on this global unique id 117783 mac 117783 bytes_out 0 117783 bytes_in 0 117783 station_ip 151.235.102.250 117783 port 148 117783 unique_id port 117790 username houshang 117790 mac 117790 bytes_out 0 117790 bytes_in 0 117790 station_ip 5.119.103.75 117790 port 155 117790 unique_id port 117790 remote_ip 10.8.0.22 117793 username mehdizare 117793 mac 117793 bytes_out 27571 117793 bytes_in 32132 117793 station_ip 5.119.203.243 117727 bytes_in 0 117727 station_ip 5.120.164.102 117727 port 143 117727 unique_id port 117727 remote_ip 10.8.0.14 117728 username aminvpn 117728 mac 117728 bytes_out 0 117728 bytes_in 0 117728 station_ip 5.120.164.102 117728 port 155 117728 unique_id port 117728 remote_ip 10.8.0.14 117734 username aminvpn 117734 mac 117734 bytes_out 0 117734 bytes_in 0 117734 station_ip 5.120.164.102 117734 port 143 117734 unique_id port 117734 remote_ip 10.8.0.14 117736 username alirr 117736 unique_id port 117736 terminate_cause User-Request 117736 bytes_out 1674986 117736 bytes_in 8568398 117736 station_ip 5.120.31.168 117736 port 15729547 117736 nas_port_type Virtual 117736 remote_ip 5.5.5.255 117737 username aminvpn 117737 mac 117737 bytes_out 0 117737 bytes_in 0 117737 station_ip 5.120.164.102 117737 port 155 117737 unique_id port 117737 remote_ip 10.8.0.14 117739 username aminvpn 117739 mac 117739 bytes_out 0 117739 bytes_in 0 117739 station_ip 5.120.164.102 117739 port 143 117739 unique_id port 117739 remote_ip 10.8.0.14 117742 username farhad1 117742 kill_reason Another user logged on this global unique id 117742 mac 117742 bytes_out 0 117742 bytes_in 0 117742 station_ip 5.120.166.155 117742 port 98 117742 unique_id port 117746 username rajaei 117746 kill_reason Another user logged on this global unique id 117746 mac 117746 bytes_out 0 117746 bytes_in 0 117746 station_ip 5.62.213.139 117746 port 158 117746 unique_id port 117747 username mosi 117747 kill_reason Another user logged on this global unique id 117747 mac 117747 bytes_out 0 117747 bytes_in 0 117747 station_ip 151.235.102.250 117747 port 156 117747 unique_id port 117748 username avaanna 117748 mac 117748 bytes_out 0 117748 bytes_in 0 117748 station_ip 37.129.89.182 117748 port 160 117748 unique_id port 117748 remote_ip 10.8.0.98 117749 username mosi 117749 kill_reason Another user logged on this global unique id 117749 mac 117749 bytes_out 0 117749 bytes_in 0 117749 station_ip 151.235.102.250 117749 port 156 117749 unique_id port 117750 username aminvpn 117750 mac 117750 bytes_out 7295 117750 bytes_in 10817 117750 station_ip 5.120.164.102 117750 port 65 117750 unique_id port 117750 remote_ip 10.8.1.6 117751 username malekpoir 117751 kill_reason Another user logged on this global unique id 117751 mac 117751 bytes_out 0 117751 bytes_in 0 117751 station_ip 5.119.86.119 117751 port 141 117751 unique_id port 117760 username rajaei 117760 mac 117760 bytes_out 0 117760 bytes_in 0 117760 station_ip 5.62.213.139 117760 port 158 117760 unique_id port 117764 username aminvpn 117764 mac 117764 bytes_out 0 117764 bytes_in 0 117764 station_ip 5.120.164.102 117764 port 65 117764 unique_id port 117764 remote_ip 10.8.1.6 117767 username aminvpn 117767 mac 117767 bytes_out 0 117767 bytes_in 0 117767 station_ip 5.120.164.102 117767 port 65 117767 unique_id port 117767 remote_ip 10.8.1.6 117769 username zare 117769 mac 117769 bytes_out 0 117769 bytes_in 0 117769 station_ip 37.27.38.78 117769 port 142 117769 unique_id port 117769 remote_ip 10.8.0.18 117770 username sedighe 117770 mac 117770 bytes_out 0 117770 bytes_in 0 117770 station_ip 83.122.119.227 117770 port 148 117770 unique_id port 117770 remote_ip 10.8.0.146 117772 username mosi 117772 mac 117772 bytes_out 0 117772 bytes_in 0 117772 station_ip 151.235.102.250 117772 port 156 117772 unique_id port 117776 username zare 117776 mac 117776 bytes_out 0 117776 bytes_in 0 117776 station_ip 37.27.38.78 117757 unique_id port 117757 remote_ip 10.8.0.166 117758 username farhad1 117758 mac 117758 bytes_out 0 117758 bytes_in 0 117758 station_ip 5.120.166.155 117758 port 98 117758 unique_id port 117759 username musa 117759 mac 117759 bytes_out 0 117759 bytes_in 0 117759 station_ip 113.203.67.66 117759 port 148 117759 unique_id port 117763 username farhad1 117763 mac 117763 bytes_out 1153863 117763 bytes_in 16536802 117763 station_ip 5.119.16.17 117763 port 157 117763 unique_id port 117763 remote_ip 10.8.0.26 117766 username sedighe 117766 mac 117766 bytes_out 0 117766 bytes_in 0 117766 station_ip 83.122.119.227 117766 port 143 117766 unique_id port 117766 remote_ip 10.8.0.146 117768 username zare 117768 mac 117768 bytes_out 0 117768 bytes_in 0 117768 station_ip 37.27.38.78 117768 port 142 117768 unique_id port 117768 remote_ip 10.8.0.18 117771 username sedighe 117771 mac 117771 bytes_out 0 117771 bytes_in 0 117771 station_ip 83.122.119.227 117771 port 142 117771 unique_id port 117771 remote_ip 10.8.0.146 117775 username kordestani 117775 kill_reason Another user logged on this global unique id 117775 mac 117775 bytes_out 0 117775 bytes_in 0 117775 station_ip 37.129.10.137 117775 port 98 117775 unique_id port 117775 remote_ip 10.8.0.134 117777 username mehdizare 117777 mac 117777 bytes_out 171600 117777 bytes_in 223638 117777 station_ip 5.119.203.243 117777 port 64 117777 unique_id port 117777 remote_ip 10.8.1.42 117781 username mosi 117781 kill_reason Another user logged on this global unique id 117781 mac 117781 bytes_out 0 117781 bytes_in 0 117781 station_ip 151.235.102.250 117781 port 148 117781 unique_id port 117784 username zare 117784 mac 117784 bytes_out 0 117784 bytes_in 0 117784 station_ip 37.27.38.78 117784 port 143 117784 unique_id port 117784 remote_ip 10.8.0.18 117785 username mosi 117785 kill_reason Another user logged on this global unique id 117785 mac 117785 bytes_out 0 117785 bytes_in 0 117785 station_ip 151.235.102.250 117785 port 148 117785 unique_id port 117788 username sabaghnezhad 117788 mac 117788 bytes_out 506404 117788 bytes_in 1024484 117788 station_ip 83.123.171.204 117788 port 140 117788 unique_id port 117788 remote_ip 10.8.0.186 117789 username sedighe 117789 kill_reason Maximum check online fails reached 117789 mac 117789 bytes_out 0 117789 bytes_in 0 117789 station_ip 83.122.154.118 117789 port 143 117789 unique_id port 117791 username reza2742 117791 unique_id port 117791 terminate_cause User-Request 117791 bytes_out 519501 117791 bytes_in 13348495 117791 station_ip 113.203.15.232 117791 port 15729552 117791 nas_port_type Virtual 117791 remote_ip 5.5.5.254 117792 username zare 117792 mac 117792 bytes_out 0 117792 bytes_in 0 117792 station_ip 37.27.38.78 117792 port 140 117792 unique_id port 117792 remote_ip 10.8.0.18 117794 username morteza 117794 mac 117794 bytes_out 0 117794 bytes_in 0 117794 station_ip 83.123.238.238 117794 port 155 117794 unique_id port 117794 remote_ip 10.8.0.46 117795 username alireza 117795 unique_id port 117795 terminate_cause Lost-Carrier 117795 bytes_out 5239817 117795 bytes_in 93174902 117795 station_ip 5.119.173.3 117795 port 15729551 117795 nas_port_type Virtual 117795 remote_ip 5.5.5.250 117796 username alirr 117796 unique_id port 117796 terminate_cause User-Request 117796 bytes_out 570330 117796 bytes_in 4526167 117796 station_ip 5.119.117.114 117796 port 15729553 117796 nas_port_type Virtual 117796 remote_ip 5.5.5.254 117798 username aminvpn 117798 mac 117798 bytes_out 0 117776 port 155 117776 unique_id port 117776 remote_ip 10.8.0.18 117779 username sedighe 117779 mac 117779 bytes_out 0 117779 bytes_in 0 117779 station_ip 83.122.154.118 117779 port 143 117779 unique_id port 117779 remote_ip 10.8.0.146 117782 username alirr 117782 unique_id port 117782 terminate_cause Lost-Carrier 117782 bytes_out 1274672 117782 bytes_in 1970323 117782 station_ip 5.120.31.168 117782 port 15729550 117782 nas_port_type Virtual 117782 remote_ip 5.5.5.252 117786 username sedighe 117786 mac 117786 bytes_out 0 117786 bytes_in 0 117786 station_ip 83.122.154.118 117786 port 143 117786 unique_id port 117786 remote_ip 10.8.0.146 117787 username kordestani 117787 mac 117787 bytes_out 0 117787 bytes_in 0 117787 station_ip 37.129.10.137 117787 port 98 117787 unique_id port 117797 username morteza 117797 mac 117797 bytes_out 0 117797 bytes_in 0 117797 station_ip 83.123.238.238 117797 port 140 117797 unique_id port 117797 remote_ip 10.8.0.46 117799 username zare 117799 mac 117799 bytes_out 0 117799 bytes_in 0 117799 station_ip 37.27.38.78 117799 port 140 117799 unique_id port 117799 remote_ip 10.8.0.18 117802 username ahmadi 117802 kill_reason Relative expiration date has reached 117802 unique_id port 117802 bytes_out 0 117802 bytes_in 0 117802 station_ip 83.122.103.146 117802 port 15729556 117802 nas_port_type Virtual 117806 username rajaei 117806 kill_reason Another user logged on this global unique id 117806 mac 117806 bytes_out 0 117806 bytes_in 0 117806 station_ip 5.134.149.75 117806 port 98 117806 unique_id port 117810 username forozande 117810 mac 117810 bytes_out 0 117810 bytes_in 0 117810 station_ip 37.129.201.42 117810 port 157 117810 unique_id port 117810 remote_ip 10.8.0.74 117813 username rajaei 117813 mac 117813 bytes_out 0 117813 bytes_in 0 117813 station_ip 5.134.149.75 117813 port 98 117813 unique_id port 117816 username sedighe 117816 mac 117816 bytes_out 28497 117816 bytes_in 55416 117816 station_ip 83.122.154.118 117816 port 65 117816 unique_id port 117816 remote_ip 10.8.1.78 117817 username mehdizare 117817 mac 117817 bytes_out 645178 117817 bytes_in 1971058 117817 station_ip 5.119.203.243 117817 port 67 117817 unique_id port 117817 remote_ip 10.8.1.42 117818 username asma2026 117818 mac 117818 bytes_out 0 117818 bytes_in 0 117818 station_ip 83.122.64.237 117818 port 65 117818 unique_id port 117818 remote_ip 10.8.1.122 117825 username sabaghnezhad 117825 mac 117825 bytes_out 0 117825 bytes_in 0 117825 station_ip 83.123.171.204 117825 port 66 117825 unique_id port 117825 remote_ip 10.8.1.130 117826 username asma2026 117826 mac 117826 bytes_out 0 117826 bytes_in 0 117826 station_ip 83.122.64.237 117826 port 98 117826 unique_id port 117826 remote_ip 10.8.0.170 117827 username mirzaei 117827 kill_reason Another user logged on this global unique id 117827 mac 117827 bytes_out 0 117827 bytes_in 0 117827 station_ip 5.119.247.72 117827 port 122 117827 unique_id port 117829 username asma2026 117829 mac 117829 bytes_out 0 117829 bytes_in 0 117829 station_ip 83.122.64.237 117829 port 65 117829 unique_id port 117829 remote_ip 10.8.1.122 117830 username mohammadjavad 117830 mac 117830 bytes_out 0 117830 bytes_in 0 117830 station_ip 83.122.27.65 117830 port 148 117830 unique_id port 117830 remote_ip 10.8.0.142 117833 username asma2026 117833 mac 117833 bytes_out 0 117833 bytes_in 0 117833 station_ip 83.122.64.237 117833 port 98 117833 unique_id port 117833 remote_ip 10.8.0.170 117793 port 64 117793 unique_id port 117793 remote_ip 10.8.1.42 117803 username aminvpn 117803 mac 117803 bytes_out 0 117803 bytes_in 0 117803 station_ip 5.120.164.102 117803 port 140 117803 unique_id port 117803 remote_ip 10.8.0.14 117804 username aminvpn 117804 mac 117804 bytes_out 0 117804 bytes_in 0 117804 station_ip 5.120.164.102 117804 port 157 117804 unique_id port 117804 remote_ip 10.8.0.14 117808 username alirezazadeh 117808 unique_id port 117808 terminate_cause Lost-Carrier 117808 bytes_out 303635 117808 bytes_in 3515953 117808 station_ip 5.119.64.193 117808 port 15729554 117808 nas_port_type Virtual 117808 remote_ip 5.5.5.252 117815 username malekpoir 117815 mac 117815 bytes_out 0 117815 bytes_in 0 117815 station_ip 5.119.86.119 117815 port 141 117815 unique_id port 117819 username sedighe 117819 mac 117819 bytes_out 13260 117819 bytes_in 6669 117819 station_ip 83.122.154.118 117819 port 98 117819 unique_id port 117819 remote_ip 10.8.0.146 117821 username asma2026 117821 mac 117821 bytes_out 0 117821 bytes_in 0 117821 station_ip 83.122.64.237 117821 port 98 117821 unique_id port 117821 remote_ip 10.8.0.170 117824 username amir 117824 mac 117824 bytes_out 0 117824 bytes_in 0 117824 station_ip 37.27.61.217 117824 port 98 117824 unique_id port 117824 remote_ip 10.8.0.50 117828 username jamali 117828 kill_reason Another user logged on this global unique id 117828 mac 117828 bytes_out 0 117828 bytes_in 0 117828 station_ip 5.120.158.223 117828 port 156 117828 unique_id port 117828 remote_ip 10.8.0.150 117834 username sedighe 117834 mac 117834 bytes_out 0 117834 bytes_in 0 117834 station_ip 83.122.154.118 117834 port 141 117834 unique_id port 117834 remote_ip 10.8.0.146 117836 username amir 117836 mac 117836 bytes_out 0 117836 bytes_in 0 117836 station_ip 37.27.61.217 117836 port 98 117836 unique_id port 117836 remote_ip 10.8.0.50 117841 username jamali 117841 mac 117841 bytes_out 0 117841 bytes_in 0 117841 station_ip 5.120.158.223 117841 port 156 117841 unique_id port 117842 username amir 117842 mac 117842 bytes_out 62179 117842 bytes_in 258964 117842 station_ip 37.27.61.217 117842 port 98 117842 unique_id port 117842 remote_ip 10.8.0.50 117845 username rajaei 117845 mac 117845 bytes_out 2328746 117845 bytes_in 31678763 117845 station_ip 5.134.149.75 117845 port 148 117845 unique_id port 117845 remote_ip 10.8.0.34 117852 username musa 117852 kill_reason Another user logged on this global unique id 117852 mac 117852 bytes_out 0 117852 bytes_in 0 117852 station_ip 83.122.251.180 117852 port 98 117852 unique_id port 117852 remote_ip 10.8.0.6 117854 username asma2026 117854 mac 117854 bytes_out 0 117854 bytes_in 0 117854 station_ip 83.122.64.237 117854 port 157 117854 unique_id port 117854 remote_ip 10.8.0.170 117858 username morteza 117858 kill_reason Another user logged on this global unique id 117858 mac 117858 bytes_out 0 117858 bytes_in 0 117858 station_ip 5.119.12.124 117858 port 155 117858 unique_id port 117865 username forozande 117865 mac 117865 bytes_out 0 117865 bytes_in 0 117865 station_ip 83.123.116.231 117865 port 67 117865 unique_id port 117865 remote_ip 10.8.1.102 117867 username mosi 117867 mac 117867 bytes_out 213863 117867 bytes_in 319083 117867 station_ip 151.235.102.250 117867 port 156 117867 unique_id port 117867 remote_ip 10.8.0.138 117869 username amir 117869 mac 117869 bytes_out 975503 117869 bytes_in 10199043 117869 station_ip 37.27.61.217 117869 port 140 117798 bytes_in 0 117798 station_ip 5.120.164.102 117798 port 65 117798 unique_id port 117798 remote_ip 10.8.1.6 117800 username rajaei 117800 kill_reason Another user logged on this global unique id 117800 mac 117800 bytes_out 0 117800 bytes_in 0 117800 station_ip 5.134.149.75 117800 port 98 117800 unique_id port 117800 remote_ip 10.8.0.34 117801 username ahmadi 117801 kill_reason Relative expiration date has reached 117801 unique_id port 117801 bytes_out 0 117801 bytes_in 0 117801 station_ip 83.122.103.146 117801 port 15729555 117801 nas_port_type Virtual 117805 username zare 117805 mac 117805 bytes_out 0 117805 bytes_in 0 117805 station_ip 37.27.38.78 117805 port 65 117805 unique_id port 117805 remote_ip 10.8.1.58 117807 username mosi 117807 mac 117807 bytes_out 0 117807 bytes_in 0 117807 station_ip 151.235.102.250 117807 port 148 117807 unique_id port 117809 username sedighe 117809 mac 117809 bytes_out 20573 117809 bytes_in 24482 117809 station_ip 83.122.154.118 117809 port 68 117809 unique_id port 117809 remote_ip 10.8.1.78 117811 username morteza 117811 kill_reason Another user logged on this global unique id 117811 mac 117811 bytes_out 0 117811 bytes_in 0 117811 station_ip 5.119.12.124 117811 port 155 117811 unique_id port 117811 remote_ip 10.8.0.46 117812 username asma2026 117812 mac 117812 bytes_out 0 117812 bytes_in 0 117812 station_ip 83.122.64.237 117812 port 64 117812 unique_id port 117812 remote_ip 10.8.1.122 117814 username asma2026 117814 mac 117814 bytes_out 0 117814 bytes_in 0 117814 station_ip 83.122.64.237 117814 port 98 117814 unique_id port 117814 remote_ip 10.8.0.170 117820 username mehdizare 117820 mac 117820 bytes_out 0 117820 bytes_in 0 117820 station_ip 5.119.203.243 117820 port 64 117820 unique_id port 117820 remote_ip 10.8.1.42 117822 username asma2026 117822 mac 117822 bytes_out 0 117822 bytes_in 0 117822 station_ip 83.122.64.237 117822 port 65 117822 unique_id port 117822 remote_ip 10.8.1.122 117823 username amir 117823 mac 117823 bytes_out 0 117823 bytes_in 0 117823 station_ip 37.27.61.217 117823 port 98 117823 unique_id port 117823 remote_ip 10.8.0.50 117831 username jamali 117831 kill_reason Another user logged on this global unique id 117831 mac 117831 bytes_out 0 117831 bytes_in 0 117831 station_ip 5.120.158.223 117831 port 156 117831 unique_id port 117832 username amir 117832 mac 117832 bytes_out 0 117832 bytes_in 0 117832 station_ip 37.27.61.217 117832 port 157 117832 unique_id port 117832 remote_ip 10.8.0.50 117838 username morteza 117838 kill_reason Another user logged on this global unique id 117838 mac 117838 bytes_out 0 117838 bytes_in 0 117838 station_ip 5.119.12.124 117838 port 155 117838 unique_id port 117839 username sedighe 117839 mac 117839 bytes_out 349229 117839 bytes_in 3576629 117839 station_ip 83.122.154.118 117839 port 148 117839 unique_id port 117839 remote_ip 10.8.0.146 117844 username asma2026 117844 mac 117844 bytes_out 0 117844 bytes_in 0 117844 station_ip 83.122.64.237 117844 port 98 117844 unique_id port 117844 remote_ip 10.8.0.170 117846 username asma2026 117846 mac 117846 bytes_out 0 117846 bytes_in 0 117846 station_ip 83.122.64.237 117846 port 148 117846 unique_id port 117846 remote_ip 10.8.0.170 117847 username arabpour 117847 unique_id port 117847 terminate_cause User-Request 117847 bytes_out 540 117847 bytes_in 278 117847 station_ip 37.129.29.251 117847 port 15729559 117847 nas_port_type Virtual 117847 remote_ip 5.5.5.252 117848 username amir 117835 username amir 117835 mac 117835 bytes_out 78987 117835 bytes_in 317280 117835 station_ip 37.27.61.217 117835 port 98 117835 unique_id port 117835 remote_ip 10.8.0.50 117837 username asma2026 117837 mac 117837 bytes_out 0 117837 bytes_in 0 117837 station_ip 83.122.64.237 117837 port 98 117837 unique_id port 117837 remote_ip 10.8.0.170 117840 username asma2026 117840 mac 117840 bytes_out 0 117840 bytes_in 0 117840 station_ip 83.122.64.237 117840 port 141 117840 unique_id port 117840 remote_ip 10.8.0.170 117843 username mehdizare 117843 kill_reason Another user logged on this global unique id 117843 mac 117843 bytes_out 0 117843 bytes_in 0 117843 station_ip 5.119.203.243 117843 port 64 117843 unique_id port 117843 remote_ip 10.8.1.42 117849 username aminvpn 117849 mac 117849 bytes_out 193046 117849 bytes_in 243729 117849 station_ip 5.120.164.102 117849 port 140 117849 unique_id port 117849 remote_ip 10.8.0.14 117851 username aminvpn 117851 mac 117851 bytes_out 11894 117851 bytes_in 18072 117851 station_ip 5.120.164.102 117851 port 140 117851 unique_id port 117851 remote_ip 10.8.0.14 117853 username aminvpn 117853 unique_id port 117853 terminate_cause Lost-Carrier 117853 bytes_out 301546 117853 bytes_in 505704 117853 station_ip 5.125.194.206 117853 port 15729558 117853 nas_port_type Virtual 117853 remote_ip 5.5.5.254 117855 username amir 117855 mac 117855 bytes_out 0 117855 bytes_in 0 117855 station_ip 37.27.61.217 117855 port 157 117855 unique_id port 117855 remote_ip 10.8.0.50 117857 username rostami 117857 mac 117857 bytes_out 0 117857 bytes_in 0 117857 station_ip 5.119.139.178 117857 port 151 117857 unique_id port 117857 remote_ip 10.8.0.194 117859 username asma2026 117859 mac 117859 bytes_out 0 117859 bytes_in 0 117859 station_ip 83.122.64.237 117859 port 157 117859 unique_id port 117859 remote_ip 10.8.0.170 117860 username aminvpn 117860 mac 117860 bytes_out 0 117860 bytes_in 0 117860 station_ip 5.120.164.102 117860 port 140 117860 unique_id port 117860 remote_ip 10.8.0.14 117861 username hoorieh 117861 mac 117861 bytes_out 0 117861 bytes_in 0 117861 station_ip 5.120.17.49 117861 port 151 117861 unique_id port 117861 remote_ip 10.8.0.38 117862 username forozande 117862 mac 117862 bytes_out 1522491 117862 bytes_in 23996613 117862 station_ip 83.123.116.231 117862 port 148 117862 unique_id port 117862 remote_ip 10.8.0.74 117864 username mehdizare 117864 mac 117864 bytes_out 0 117864 bytes_in 0 117864 station_ip 5.119.203.243 117864 port 64 117864 unique_id port 117866 username asma2026 117866 mac 117866 bytes_out 0 117866 bytes_in 0 117866 station_ip 83.122.64.237 117866 port 67 117866 unique_id port 117866 remote_ip 10.8.1.122 117873 username asma2026 117873 mac 117873 bytes_out 0 117873 bytes_in 0 117873 station_ip 83.122.64.237 117873 port 67 117873 unique_id port 117873 remote_ip 10.8.1.122 117886 username amir 117886 mac 117886 bytes_out 0 117886 bytes_in 0 117886 station_ip 37.27.61.217 117886 port 148 117886 unique_id port 117886 remote_ip 10.8.0.50 117890 username jamali 117890 kill_reason Another user logged on this global unique id 117890 mac 117890 bytes_out 0 117890 bytes_in 0 117890 station_ip 5.120.158.223 117890 port 141 117890 unique_id port 117892 username tahmasebi 117892 kill_reason Another user logged on this global unique id 117892 mac 117892 bytes_out 0 117892 bytes_in 0 117892 station_ip 5.119.132.27 117892 port 137 117892 unique_id port 117848 mac 117848 bytes_out 74403 117848 bytes_in 643977 117848 station_ip 37.27.61.217 117848 port 148 117848 unique_id port 117848 remote_ip 10.8.0.50 117850 username asma2026 117850 mac 117850 bytes_out 0 117850 bytes_in 0 117850 station_ip 83.122.64.237 117850 port 148 117850 unique_id port 117850 remote_ip 10.8.0.170 117856 username forozande 117856 mac 117856 bytes_out 484818 117856 bytes_in 7889446 117856 station_ip 83.122.113.63 117856 port 148 117856 unique_id port 117856 remote_ip 10.8.0.74 117863 username jamali 117863 kill_reason Another user logged on this global unique id 117863 mac 117863 bytes_out 0 117863 bytes_in 0 117863 station_ip 5.120.158.223 117863 port 141 117863 unique_id port 117863 remote_ip 10.8.0.150 117868 username mehdizare 117868 mac 117868 bytes_out 9238 117868 bytes_in 18673 117868 station_ip 5.119.203.243 117868 port 64 117868 unique_id port 117868 remote_ip 10.8.1.42 117870 username asma2026 117870 mac 117870 bytes_out 0 117870 bytes_in 0 117870 station_ip 83.122.64.237 117870 port 67 117870 unique_id port 117870 remote_ip 10.8.1.122 117871 username musa 117871 mac 117871 bytes_out 0 117871 bytes_in 0 117871 station_ip 83.122.251.180 117871 port 98 117871 unique_id port 117874 username rostami 117874 kill_reason Another user logged on this global unique id 117874 mac 117874 bytes_out 0 117874 bytes_in 0 117874 station_ip 5.119.139.178 117874 port 140 117874 unique_id port 117874 remote_ip 10.8.0.194 117875 username jamali 117875 kill_reason Another user logged on this global unique id 117875 mac 117875 bytes_out 0 117875 bytes_in 0 117875 station_ip 5.120.158.223 117875 port 141 117875 unique_id port 117876 username alihosseini1 117876 mac 117876 bytes_out 0 117876 bytes_in 0 117876 station_ip 5.120.116.152 117876 port 66 117876 unique_id port 117876 remote_ip 10.8.1.106 117877 username ayobi 117877 mac 117877 bytes_out 0 117877 bytes_in 0 117877 station_ip 188.245.91.138 117877 port 151 117877 unique_id port 117877 remote_ip 10.8.0.126 117884 username jamali 117884 kill_reason Another user logged on this global unique id 117884 mac 117884 bytes_out 0 117884 bytes_in 0 117884 station_ip 5.120.158.223 117884 port 141 117884 unique_id port 117885 username alireza 117885 unique_id port 117885 terminate_cause Lost-Carrier 117885 bytes_out 3427829 117885 bytes_in 73871361 117885 station_ip 5.119.173.3 117885 port 15729557 117885 nas_port_type Virtual 117885 remote_ip 5.5.5.255 117888 username amir 117888 mac 117888 bytes_out 0 117888 bytes_in 0 117888 station_ip 37.27.61.217 117888 port 148 117888 unique_id port 117888 remote_ip 10.8.0.50 117896 username rostami 117896 kill_reason Another user logged on this global unique id 117896 mac 117896 bytes_out 0 117896 bytes_in 0 117896 station_ip 5.119.139.178 117896 port 140 117896 unique_id port 117899 username jamali 117899 kill_reason Another user logged on this global unique id 117899 mac 117899 bytes_out 0 117899 bytes_in 0 117899 station_ip 5.120.158.223 117899 port 141 117899 unique_id port 117901 username amir 117901 mac 117901 bytes_out 73526 117901 bytes_in 259644 117901 station_ip 37.27.61.217 117901 port 151 117901 unique_id port 117901 remote_ip 10.8.0.50 117906 username jamali 117906 kill_reason Another user logged on this global unique id 117906 mac 117906 bytes_out 0 117906 bytes_in 0 117906 station_ip 5.120.158.223 117906 port 141 117906 unique_id port 117908 username alirr 117908 unique_id port 117908 terminate_cause Lost-Carrier 117908 bytes_out 1168615 117908 bytes_in 18610699 117869 unique_id port 117869 remote_ip 10.8.0.50 117872 username amir 117872 mac 117872 bytes_out 0 117872 bytes_in 0 117872 station_ip 37.27.61.217 117872 port 151 117872 unique_id port 117872 remote_ip 10.8.0.50 117878 username amir 117878 mac 117878 bytes_out 56693 117878 bytes_in 373238 117878 station_ip 37.27.61.217 117878 port 98 117878 unique_id port 117878 remote_ip 10.8.0.50 117879 username mohammadjavad 117879 mac 117879 bytes_out 0 117879 bytes_in 0 117879 station_ip 83.123.164.184 117879 port 148 117879 unique_id port 117879 remote_ip 10.8.0.142 117880 username morteza 117880 kill_reason Another user logged on this global unique id 117880 mac 117880 bytes_out 0 117880 bytes_in 0 117880 station_ip 5.119.12.124 117880 port 155 117880 unique_id port 117881 username asma2026 117881 kill_reason Maximum check online fails reached 117881 mac 117881 bytes_out 0 117881 bytes_in 0 117881 station_ip 83.122.64.237 117881 port 66 117881 unique_id port 117882 username asma2026 117882 mac 117882 bytes_out 0 117882 bytes_in 0 117882 station_ip 83.122.64.237 117882 port 67 117882 unique_id port 117882 remote_ip 10.8.1.122 117883 username asma2026 117883 mac 117883 bytes_out 0 117883 bytes_in 0 117883 station_ip 83.122.64.237 117883 port 148 117883 unique_id port 117883 remote_ip 10.8.0.170 117887 username asma2026 117887 mac 117887 bytes_out 0 117887 bytes_in 0 117887 station_ip 83.122.64.237 117887 port 148 117887 unique_id port 117887 remote_ip 10.8.0.170 117889 username asma2026 117889 mac 117889 bytes_out 0 117889 bytes_in 0 117889 station_ip 83.122.64.237 117889 port 68 117889 unique_id port 117889 remote_ip 10.8.1.122 117891 username ahmadipour 117891 unique_id port 117891 terminate_cause Lost-Carrier 117891 bytes_out 424722 117891 bytes_in 9936731 117891 station_ip 37.129.25.127 117891 port 15729562 117891 nas_port_type Virtual 117891 remote_ip 5.5.5.251 117894 username asma2026 117894 mac 117894 bytes_out 0 117894 bytes_in 0 117894 station_ip 83.122.64.237 117894 port 148 117894 unique_id port 117894 remote_ip 10.8.0.170 117897 username amir 117897 mac 117897 bytes_out 48994 117897 bytes_in 265306 117897 station_ip 37.27.61.217 117897 port 68 117897 unique_id port 117897 remote_ip 10.8.1.22 117900 username musa 117900 kill_reason Another user logged on this global unique id 117900 mac 117900 bytes_out 0 117900 bytes_in 0 117900 station_ip 83.122.251.180 117900 port 156 117900 unique_id port 117900 remote_ip 10.8.0.6 117904 username sedighe 117904 mac 117904 bytes_out 153740 117904 bytes_in 572571 117904 station_ip 113.203.126.216 117904 port 148 117904 unique_id port 117904 remote_ip 10.8.0.146 117910 username asma2026 117910 mac 117910 bytes_out 0 117910 bytes_in 0 117910 station_ip 83.122.64.237 117910 port 148 117910 unique_id port 117910 remote_ip 10.8.0.170 117913 username mehdizare 117913 mac 117913 bytes_out 261104 117913 bytes_in 270722 117913 station_ip 5.119.203.243 117913 port 64 117913 unique_id port 117913 remote_ip 10.8.1.42 117915 username asma2026 117915 mac 117915 bytes_out 3276 117915 bytes_in 8977 117915 station_ip 83.122.64.237 117915 port 151 117915 unique_id port 117915 remote_ip 10.8.0.170 117921 username asma2026 117921 mac 117921 bytes_out 0 117921 bytes_in 0 117921 station_ip 83.122.64.237 117921 port 151 117921 unique_id port 117921 remote_ip 10.8.0.170 117922 username jamali 117922 kill_reason Another user logged on this global unique id 117922 mac 117922 bytes_out 0 117893 username ahmadi 117893 kill_reason Relative expiration date has reached 117893 unique_id port 117893 bytes_out 0 117893 bytes_in 0 117893 station_ip 83.122.29.146 117893 port 15729565 117893 nas_port_type Virtual 117895 username malekpoir 117895 kill_reason Another user logged on this global unique id 117895 mac 117895 bytes_out 0 117895 bytes_in 0 117895 station_ip 5.119.86.119 117895 port 65 117895 unique_id port 117895 remote_ip 10.8.1.54 117898 username asma2026 117898 mac 117898 bytes_out 0 117898 bytes_in 0 117898 station_ip 83.122.64.237 117898 port 157 117898 unique_id port 117898 remote_ip 10.8.0.170 117902 username morteza 117902 kill_reason Another user logged on this global unique id 117902 mac 117902 bytes_out 0 117902 bytes_in 0 117902 station_ip 5.119.12.124 117902 port 155 117902 unique_id port 117903 username asma2026 117903 mac 117903 bytes_out 0 117903 bytes_in 0 117903 station_ip 83.122.64.237 117903 port 68 117903 unique_id port 117903 remote_ip 10.8.1.122 117905 username tahmasebi 117905 kill_reason Another user logged on this global unique id 117905 mac 117905 bytes_out 0 117905 bytes_in 0 117905 station_ip 5.119.132.27 117905 port 137 117905 unique_id port 117907 username rajaei 117907 kill_reason Another user logged on this global unique id 117907 mac 117907 bytes_out 0 117907 bytes_in 0 117907 station_ip 89.32.104.167 117907 port 151 117907 unique_id port 117907 remote_ip 10.8.0.34 117909 username forozande 117909 mac 117909 bytes_out 84324 117909 bytes_in 596899 117909 station_ip 83.123.161.249 117909 port 148 117909 unique_id port 117909 remote_ip 10.8.0.74 117912 username rajaei 117912 mac 117912 bytes_out 0 117912 bytes_in 0 117912 station_ip 89.32.104.167 117912 port 151 117912 unique_id port 117914 username musa 117914 kill_reason Another user logged on this global unique id 117914 mac 117914 bytes_out 0 117914 bytes_in 0 117914 station_ip 83.122.251.180 117914 port 156 117914 unique_id port 117916 username amir 117916 mac 117916 bytes_out 347072 117916 bytes_in 1954338 117916 station_ip 37.27.61.217 117916 port 148 117916 unique_id port 117916 remote_ip 10.8.0.50 117920 username sedighe 117920 mac 117920 bytes_out 2123008 117920 bytes_in 27736772 117920 station_ip 83.123.135.40 117920 port 157 117920 unique_id port 117920 remote_ip 10.8.0.146 117926 username asma2026 117926 mac 117926 bytes_out 0 117926 bytes_in 0 117926 station_ip 83.122.64.237 117926 port 67 117926 unique_id port 117926 remote_ip 10.8.1.122 117928 username asma2026 117928 mac 117928 bytes_out 0 117928 bytes_in 0 117928 station_ip 83.122.64.237 117928 port 67 117928 unique_id port 117928 remote_ip 10.8.1.122 117929 username rostami 117929 mac 117929 bytes_out 0 117929 bytes_in 0 117929 station_ip 5.119.139.178 117929 port 140 117929 unique_id port 117930 username asma2026 117930 mac 117930 bytes_out 0 117930 bytes_in 0 117930 station_ip 83.122.64.237 117930 port 140 117930 unique_id port 117930 remote_ip 10.8.0.170 117941 username aminvpn 117941 unique_id port 117941 terminate_cause Lost-Carrier 117941 bytes_out 6993310 117941 bytes_in 112505493 117941 station_ip 5.125.194.206 117941 port 15729561 117941 nas_port_type Virtual 117941 remote_ip 5.5.5.254 117943 username asma2026 117943 mac 117943 bytes_out 7031 117943 bytes_in 14176 117943 station_ip 83.122.64.237 117943 port 151 117943 unique_id port 117943 remote_ip 10.8.0.170 117945 username asma2026 117945 mac 117945 bytes_out 0 117945 bytes_in 0 117945 station_ip 83.122.64.237 117908 station_ip 5.120.145.44 117908 port 15729564 117908 nas_port_type Virtual 117908 remote_ip 5.5.5.247 117911 username rostami 117911 kill_reason Another user logged on this global unique id 117911 mac 117911 bytes_out 0 117911 bytes_in 0 117911 station_ip 5.119.139.178 117911 port 140 117911 unique_id port 117917 username jamali 117917 kill_reason Another user logged on this global unique id 117917 mac 117917 bytes_out 0 117917 bytes_in 0 117917 station_ip 5.120.158.223 117917 port 141 117917 unique_id port 117918 username ayobi 117918 kill_reason Another user logged on this global unique id 117918 mac 117918 bytes_out 0 117918 bytes_in 0 117918 station_ip 188.245.91.138 117918 port 98 117918 unique_id port 117918 remote_ip 10.8.0.126 117919 username morteza 117919 mac 117919 bytes_out 0 117919 bytes_in 0 117919 station_ip 5.119.12.124 117919 port 155 117919 unique_id port 117923 username mohammadmahdi 117923 mac 117923 bytes_out 0 117923 bytes_in 0 117923 station_ip 5.120.176.230 117923 port 67 117923 unique_id port 117923 remote_ip 10.8.1.158 117925 username forozande 117925 mac 117925 bytes_out 170307 117925 bytes_in 187394 117925 station_ip 113.203.22.192 117925 port 148 117925 unique_id port 117925 remote_ip 10.8.0.74 117932 username hamid.e 117932 unique_id port 117932 terminate_cause User-Request 117932 bytes_out 1895194 117932 bytes_in 32565075 117932 station_ip 37.27.20.99 117932 port 15729563 117932 nas_port_type Virtual 117932 remote_ip 5.5.5.249 117934 username mehdizare 117934 mac 117934 bytes_out 58881 117934 bytes_in 85230 117934 station_ip 5.119.203.243 117934 port 151 117934 unique_id port 117934 remote_ip 10.8.0.90 117936 username forozande 117936 mac 117936 bytes_out 1377215 117936 bytes_in 20821275 117936 station_ip 37.129.89.161 117936 port 155 117936 unique_id port 117936 remote_ip 10.8.0.74 117938 username mehdizare 117938 mac 117938 bytes_out 0 117938 bytes_in 0 117938 station_ip 5.119.203.243 117938 port 64 117938 unique_id port 117938 remote_ip 10.8.1.42 117939 username amirabbas 117939 unique_id port 117939 terminate_cause User-Request 117939 bytes_out 27175704 117939 bytes_in 707401233 117939 station_ip 37.27.3.159 117939 port 15729560 117939 nas_port_type Virtual 117939 remote_ip 5.5.5.252 117947 username musa 117947 mac 117947 bytes_out 0 117947 bytes_in 0 117947 station_ip 83.122.251.180 117947 port 156 117947 unique_id port 117950 username mamal 117950 unique_id port 117950 terminate_cause Lost-Carrier 117950 bytes_out 982452 117950 bytes_in 18066117 117950 station_ip 37.129.225.150 117950 port 15729567 117950 nas_port_type Virtual 117950 remote_ip 5.5.5.236 117952 username asma2026 117952 mac 117952 bytes_out 0 117952 bytes_in 0 117952 station_ip 83.122.64.237 117952 port 157 117952 unique_id port 117952 remote_ip 10.8.0.170 117955 username alihosseini1 117955 mac 117955 bytes_out 0 117955 bytes_in 0 117955 station_ip 5.120.8.54 117955 port 159 117955 unique_id port 117955 remote_ip 10.8.0.166 117958 username jamali 117958 mac 117958 bytes_out 75525 117958 bytes_in 225064 117958 station_ip 5.120.158.223 117958 port 151 117958 unique_id port 117958 remote_ip 10.8.0.150 117959 username alihosseini1 117959 mac 117959 bytes_out 0 117959 bytes_in 0 117959 station_ip 5.120.8.54 117959 port 151 117959 unique_id port 117959 remote_ip 10.8.0.166 117962 username alihosseini1 117962 mac 117962 bytes_out 0 117962 bytes_in 0 117962 station_ip 5.120.8.54 117962 port 148 117962 unique_id port 117962 remote_ip 10.8.0.166 117922 bytes_in 0 117922 station_ip 5.120.158.223 117922 port 141 117922 unique_id port 117924 username jamali 117924 kill_reason Another user logged on this global unique id 117924 mac 117924 bytes_out 0 117924 bytes_in 0 117924 station_ip 5.120.158.223 117924 port 141 117924 unique_id port 117927 username asma2026 117927 mac 117927 bytes_out 0 117927 bytes_in 0 117927 station_ip 83.122.64.237 117927 port 148 117927 unique_id port 117927 remote_ip 10.8.0.170 117931 username musa 117931 kill_reason Another user logged on this global unique id 117931 mac 117931 bytes_out 0 117931 bytes_in 0 117931 station_ip 83.122.251.180 117931 port 156 117931 unique_id port 117933 username asma2026 117933 mac 117933 bytes_out 0 117933 bytes_in 0 117933 station_ip 83.122.64.237 117933 port 140 117933 unique_id port 117933 remote_ip 10.8.0.170 117935 username alihosseini1 117935 mac 117935 bytes_out 0 117935 bytes_in 0 117935 station_ip 5.120.8.54 117935 port 64 117935 unique_id port 117935 remote_ip 10.8.1.106 117937 username asma2026 117937 mac 117937 bytes_out 0 117937 bytes_in 0 117937 station_ip 83.122.64.237 117937 port 140 117937 unique_id port 117937 remote_ip 10.8.0.170 117940 username alihosseini1 117940 mac 117940 bytes_out 0 117940 bytes_in 0 117940 station_ip 5.120.8.54 117940 port 155 117940 unique_id port 117940 remote_ip 10.8.0.166 117942 username alihosseini1 117942 mac 117942 bytes_out 0 117942 bytes_in 0 117942 station_ip 5.120.8.54 117942 port 155 117942 unique_id port 117942 remote_ip 10.8.0.166 117944 username jamali 117944 mac 117944 bytes_out 0 117944 bytes_in 0 117944 station_ip 5.120.158.223 117944 port 141 117944 unique_id port 117946 username asma2026 117946 mac 117946 bytes_out 0 117946 bytes_in 0 117946 station_ip 83.122.64.237 117946 port 141 117946 unique_id port 117946 remote_ip 10.8.0.170 117949 username asma2026 117949 mac 117949 bytes_out 0 117949 bytes_in 0 117949 station_ip 83.122.64.237 117949 port 67 117949 unique_id port 117949 remote_ip 10.8.1.122 117951 username musa 117951 mac 117951 bytes_out 23140 117951 bytes_in 64154 117951 station_ip 83.122.251.180 117951 port 64 117951 unique_id port 117951 remote_ip 10.8.1.10 117953 username alihosseini1 117953 mac 117953 bytes_out 0 117953 bytes_in 0 117953 station_ip 5.120.8.54 117953 port 156 117953 unique_id port 117953 remote_ip 10.8.0.166 117954 username ayobi 117954 kill_reason Another user logged on this global unique id 117954 mac 117954 bytes_out 0 117954 bytes_in 0 117954 station_ip 188.245.91.138 117954 port 98 117954 unique_id port 117960 username asma2026 117960 mac 117960 bytes_out 0 117960 bytes_in 0 117960 station_ip 83.122.64.237 117960 port 151 117960 unique_id port 117960 remote_ip 10.8.0.170 117961 username rezaei 117961 mac 117961 bytes_out 0 117961 bytes_in 0 117961 station_ip 5.120.133.6 117961 port 148 117961 unique_id port 117961 remote_ip 10.8.0.206 117963 username alihosseini1 117963 mac 117963 bytes_out 0 117963 bytes_in 0 117963 station_ip 5.120.8.54 117963 port 148 117963 unique_id port 117963 remote_ip 10.8.0.166 117968 username alireza 117968 unique_id port 117968 terminate_cause User-Request 117968 bytes_out 2520299 117968 bytes_in 34012088 117968 station_ip 5.119.173.3 117968 port 15729566 117968 nas_port_type Virtual 117968 remote_ip 5.5.5.251 117969 username asma2026 117969 mac 117969 bytes_out 0 117969 bytes_in 0 117969 station_ip 83.122.64.237 117945 port 141 117945 unique_id port 117945 remote_ip 10.8.0.170 117948 username arabpour 117948 unique_id port 117948 terminate_cause User-Request 117948 bytes_out 116182 117948 bytes_in 58439 117948 station_ip 83.123.184.27 117948 port 15729568 117948 nas_port_type Virtual 117948 remote_ip 5.5.5.254 117956 username musa 117956 mac 117956 bytes_out 0 117956 bytes_in 0 117956 station_ip 83.122.251.180 117956 port 158 117956 unique_id port 117956 remote_ip 10.8.0.6 117957 username asma2026 117957 mac 117957 bytes_out 0 117957 bytes_in 0 117957 station_ip 83.122.64.237 117957 port 64 117957 unique_id port 117957 remote_ip 10.8.1.122 117971 username asma2026 117971 mac 117971 bytes_out 0 117971 bytes_in 0 117971 station_ip 83.122.64.237 117971 port 141 117971 unique_id port 117971 remote_ip 10.8.0.170 117973 username mohammadjavad 117973 mac 117973 bytes_out 0 117973 bytes_in 0 117973 station_ip 83.122.231.86 117973 port 158 117973 unique_id port 117973 remote_ip 10.8.0.142 117978 username alihosseini1 117978 kill_reason Maximum check online fails reached 117978 mac 117978 bytes_out 0 117978 bytes_in 0 117978 station_ip 5.120.8.54 117978 port 155 117978 unique_id port 117980 username alihosseini1 117980 mac 117980 bytes_out 0 117980 bytes_in 0 117980 station_ip 5.120.8.54 117980 port 158 117980 unique_id port 117980 remote_ip 10.8.0.166 117981 username asma2026 117981 mac 117981 bytes_out 0 117981 bytes_in 0 117981 station_ip 83.122.64.237 117981 port 158 117981 unique_id port 117981 remote_ip 10.8.0.170 117984 username zare 117984 mac 117984 bytes_out 1636 117984 bytes_in 5036 117984 station_ip 37.27.38.78 117984 port 161 117984 unique_id port 117984 remote_ip 10.8.0.18 117986 username zare 117986 mac 117986 bytes_out 0 117986 bytes_in 0 117986 station_ip 37.27.38.78 117986 port 161 117986 unique_id port 117986 remote_ip 10.8.0.18 117987 username sedighe 117987 mac 117987 bytes_out 0 117987 bytes_in 0 117987 station_ip 83.123.135.40 117987 port 148 117987 unique_id port 117987 remote_ip 10.8.0.146 117993 username alihosseini1 117993 mac 117993 bytes_out 0 117993 bytes_in 0 117993 station_ip 5.119.82.191 117993 port 161 117993 unique_id port 117993 remote_ip 10.8.0.166 117996 username sedighe 117996 mac 117996 bytes_out 0 117996 bytes_in 0 117996 station_ip 83.123.135.40 117996 port 162 117996 unique_id port 117996 remote_ip 10.8.0.146 117997 username farhad1 117997 mac 117997 bytes_out 0 117997 bytes_in 0 117997 station_ip 5.119.154.247 117997 port 156 117997 unique_id port 117999 username aminvpn 117999 mac 117999 bytes_out 0 117999 bytes_in 0 117999 station_ip 83.122.51.54 117999 port 148 117999 unique_id port 117999 remote_ip 10.8.0.14 118002 username amir 118002 mac 118002 bytes_out 0 118002 bytes_in 0 118002 station_ip 46.225.215.142 118002 port 156 118002 unique_id port 118002 remote_ip 10.8.0.50 118003 username amir 118003 mac 118003 bytes_out 0 118003 bytes_in 0 118003 station_ip 46.225.215.142 118003 port 148 118003 unique_id port 118003 remote_ip 10.8.0.50 118009 username zare 118009 mac 118009 bytes_out 0 118009 bytes_in 0 118009 station_ip 37.27.38.78 118009 port 162 118009 unique_id port 118009 remote_ip 10.8.0.18 118012 username arabpour 118012 unique_id port 118012 terminate_cause User-Request 118012 bytes_out 48 118012 bytes_in 92 118012 station_ip 83.122.93.230 118012 port 15729575 117964 username asma2026 117964 mac 117964 bytes_out 0 117964 bytes_in 0 117964 station_ip 83.122.64.237 117964 port 64 117964 unique_id port 117964 remote_ip 10.8.1.122 117965 username alihosseini1 117965 mac 117965 bytes_out 0 117965 bytes_in 0 117965 station_ip 5.120.8.54 117965 port 148 117965 unique_id port 117965 remote_ip 10.8.0.166 117966 username asma2026 117966 mac 117966 bytes_out 0 117966 bytes_in 0 117966 station_ip 83.122.64.237 117966 port 158 117966 unique_id port 117966 remote_ip 10.8.0.170 117967 username forozande 117967 mac 117967 bytes_out 0 117967 bytes_in 0 117967 station_ip 37.129.40.3 117967 port 141 117967 unique_id port 117967 remote_ip 10.8.0.74 117970 username mahdiyehalizadeh 117970 mac 117970 bytes_out 0 117970 bytes_in 0 117970 station_ip 37.129.31.68 117970 port 141 117970 unique_id port 117970 remote_ip 10.8.0.82 117974 username sedighe 117974 mac 117974 bytes_out 0 117974 bytes_in 0 117974 station_ip 83.123.135.40 117974 port 155 117974 unique_id port 117974 remote_ip 10.8.0.146 117976 username musa 117976 mac 117976 bytes_out 0 117976 bytes_in 0 117976 station_ip 83.123.101.208 117976 port 159 117976 unique_id port 117976 remote_ip 10.8.0.6 117979 username amir 117979 mac 117979 bytes_out 0 117979 bytes_in 0 117979 station_ip 46.225.215.142 117979 port 67 117979 unique_id port 117979 remote_ip 10.8.1.22 117989 username alirr 117989 unique_id port 117989 terminate_cause Lost-Carrier 117989 bytes_out 625106 117989 bytes_in 3780867 117989 station_ip 5.120.58.245 117989 port 15729569 117989 nas_port_type Virtual 117989 remote_ip 5.5.5.253 117991 username farhad1 117991 kill_reason Another user logged on this global unique id 117991 mac 117991 bytes_out 0 117991 bytes_in 0 117991 station_ip 5.119.154.247 117991 port 156 117991 unique_id port 117991 remote_ip 10.8.0.26 117992 username zare 117992 mac 117992 bytes_out 0 117992 bytes_in 0 117992 station_ip 37.27.38.78 117992 port 163 117992 unique_id port 117992 remote_ip 10.8.0.18 117994 username rezasekonji 117994 mac 117994 bytes_out 0 117994 bytes_in 0 117994 station_ip 37.129.191.146 117994 port 158 117994 unique_id port 117994 remote_ip 10.8.0.130 118001 username forozande 118001 mac 118001 bytes_out 0 118001 bytes_in 0 118001 station_ip 83.123.227.24 118001 port 160 118001 unique_id port 118005 username kordestani 118005 mac 118005 bytes_out 3221577 118005 bytes_in 41796922 118005 station_ip 151.235.115.215 118005 port 159 118005 unique_id port 118005 remote_ip 10.8.0.134 118006 username asma2026 118006 mac 118006 bytes_out 0 118006 bytes_in 0 118006 station_ip 83.122.64.237 118006 port 68 118006 unique_id port 118006 remote_ip 10.8.1.122 118008 username ayobi 118008 mac 118008 bytes_out 0 118008 bytes_in 0 118008 station_ip 188.245.91.138 118008 port 98 118008 unique_id port 118013 username mohammadmahdi 118013 mac 118013 bytes_out 39607 118013 bytes_in 84011 118013 station_ip 5.120.176.230 118013 port 64 118013 unique_id port 118013 remote_ip 10.8.1.158 118016 username zare 118016 mac 118016 bytes_out 0 118016 bytes_in 0 118016 station_ip 37.27.38.78 118016 port 162 118016 unique_id port 118016 remote_ip 10.8.0.18 118023 username asma2026 118023 mac 118023 bytes_out 0 118023 bytes_in 0 118023 station_ip 83.122.64.237 118023 port 156 118023 unique_id port 118023 remote_ip 10.8.0.170 118027 username zare 118027 mac 118027 bytes_out 0 117969 port 160 117969 unique_id port 117969 remote_ip 10.8.0.170 117972 username alihosseini1 117972 mac 117972 bytes_out 223669 117972 bytes_in 355282 117972 station_ip 5.120.8.54 117972 port 148 117972 unique_id port 117972 remote_ip 10.8.0.166 117975 username ayobi 117975 kill_reason Another user logged on this global unique id 117975 mac 117975 bytes_out 0 117975 bytes_in 0 117975 station_ip 188.245.91.138 117975 port 98 117975 unique_id port 117977 username alihosseini1 117977 mac 117977 bytes_out 0 117977 bytes_in 0 117977 station_ip 5.120.8.54 117977 port 68 117977 unique_id port 117977 remote_ip 10.8.1.106 117982 username zare 117982 mac 117982 bytes_out 0 117982 bytes_in 0 117982 station_ip 37.27.38.78 117982 port 161 117982 unique_id port 117982 remote_ip 10.8.0.18 117983 username amir 117983 mac 117983 bytes_out 0 117983 bytes_in 0 117983 station_ip 46.225.215.142 117983 port 158 117983 unique_id port 117983 remote_ip 10.8.0.50 117985 username asma2026 117985 mac 117985 bytes_out 0 117985 bytes_in 0 117985 station_ip 83.122.64.237 117985 port 67 117985 unique_id port 117985 remote_ip 10.8.1.122 117988 username rostami 117988 kill_reason Another user logged on this global unique id 117988 mac 117988 bytes_out 0 117988 bytes_in 0 117988 station_ip 5.119.139.178 117988 port 157 117988 unique_id port 117988 remote_ip 10.8.0.194 117990 username rezasekonji 117990 mac 117990 bytes_out 0 117990 bytes_in 0 117990 station_ip 37.129.191.146 117990 port 158 117990 unique_id port 117990 remote_ip 10.8.0.130 117995 username ayobi 117995 kill_reason Another user logged on this global unique id 117995 mac 117995 bytes_out 0 117995 bytes_in 0 117995 station_ip 188.245.91.138 117995 port 98 117995 unique_id port 117998 username forozande 117998 kill_reason Another user logged on this global unique id 117998 mac 117998 bytes_out 0 117998 bytes_in 0 117998 station_ip 83.123.227.24 117998 port 160 117998 unique_id port 117998 remote_ip 10.8.0.74 118000 username asma2026 118000 kill_reason Maximum check online fails reached 118000 mac 118000 bytes_out 0 118000 bytes_in 0 118000 station_ip 83.122.64.237 118000 port 161 118000 unique_id port 118004 username amir 118004 mac 118004 bytes_out 0 118004 bytes_in 0 118004 station_ip 46.225.215.142 118004 port 68 118004 unique_id port 118004 remote_ip 10.8.1.22 118007 username rezasekonji 118007 mac 118007 bytes_out 479144 118007 bytes_in 4029124 118007 station_ip 37.129.191.146 118007 port 158 118007 unique_id port 118007 remote_ip 10.8.0.130 118010 username amir 118010 mac 118010 bytes_out 0 118010 bytes_in 0 118010 station_ip 46.225.215.142 118010 port 148 118010 unique_id port 118010 remote_ip 10.8.0.50 118011 username mamal 118011 unique_id port 118011 terminate_cause User-Request 118011 bytes_out 134535 118011 bytes_in 1693729 118011 station_ip 37.129.225.150 118011 port 15729572 118011 nas_port_type Virtual 118011 remote_ip 5.5.5.253 118017 username alihosseini1 118017 mac 118017 bytes_out 321739 118017 bytes_in 2963819 118017 station_ip 5.119.82.191 118017 port 163 118017 unique_id port 118017 remote_ip 10.8.0.166 118019 username arabpour 118019 unique_id port 118019 terminate_cause User-Request 118019 bytes_out 89393 118019 bytes_in 44244 118019 station_ip 83.122.93.230 118019 port 15729577 118019 nas_port_type Virtual 118019 remote_ip 5.5.5.253 118021 username rezaei 118021 mac 118021 bytes_out 0 118021 bytes_in 0 118021 station_ip 5.120.133.6 118021 port 160 118021 unique_id port 118012 nas_port_type Virtual 118012 remote_ip 5.5.5.252 118014 username arabpour 118014 unique_id port 118014 terminate_cause User-Request 118014 bytes_out 0 118014 bytes_in 0 118014 station_ip 83.122.93.230 118014 port 15729576 118014 nas_port_type Virtual 118014 remote_ip 5.5.5.253 118015 username zare 118015 kill_reason Maximum check online fails reached 118015 mac 118015 bytes_out 0 118015 bytes_in 0 118015 station_ip 37.27.38.78 118015 port 98 118015 unique_id port 118018 username rostami 118018 mac 118018 bytes_out 0 118018 bytes_in 0 118018 station_ip 5.119.139.178 118018 port 157 118018 unique_id port 118020 username tahmasebi 118020 kill_reason Another user logged on this global unique id 118020 mac 118020 bytes_out 0 118020 bytes_in 0 118020 station_ip 5.119.132.27 118020 port 137 118020 unique_id port 118025 username rostami 118025 mac 118025 bytes_out 0 118025 bytes_in 0 118025 station_ip 5.119.19.176 118025 port 64 118025 unique_id port 118025 remote_ip 10.8.1.142 118029 username asma2026 118029 mac 118029 bytes_out 0 118029 bytes_in 0 118029 station_ip 83.122.64.237 118029 port 160 118029 unique_id port 118029 remote_ip 10.8.0.170 118030 username morteza 118030 kill_reason Another user logged on this global unique id 118030 mac 118030 bytes_out 0 118030 bytes_in 0 118030 station_ip 37.129.137.132 118030 port 157 118030 unique_id port 118030 remote_ip 10.8.0.46 118036 username amir 118036 mac 118036 bytes_out 0 118036 bytes_in 0 118036 station_ip 46.225.215.142 118036 port 156 118036 unique_id port 118036 remote_ip 10.8.0.50 118037 username zare 118037 mac 118037 bytes_out 0 118037 bytes_in 0 118037 station_ip 37.27.38.78 118037 port 148 118037 unique_id port 118037 remote_ip 10.8.0.18 118039 username mohammadmahdi 118039 mac 118039 bytes_out 0 118039 bytes_in 0 118039 station_ip 5.119.129.19 118039 port 64 118039 unique_id port 118039 remote_ip 10.8.1.158 118041 username tahmasebi 118041 kill_reason Another user logged on this global unique id 118041 mac 118041 bytes_out 0 118041 bytes_in 0 118041 station_ip 5.119.132.27 118041 port 137 118041 unique_id port 118046 username morteza 118046 mac 118046 bytes_out 0 118046 bytes_in 0 118046 station_ip 37.129.137.132 118046 port 157 118046 unique_id port 118047 username zare 118047 mac 118047 bytes_out 0 118047 bytes_in 0 118047 station_ip 37.27.38.78 118047 port 157 118047 unique_id port 118047 remote_ip 10.8.0.18 118053 username forozande 118053 mac 118053 bytes_out 194830 118053 bytes_in 1169087 118053 station_ip 83.123.105.118 118053 port 156 118053 unique_id port 118053 remote_ip 10.8.0.74 118054 username rezasekonji 118054 mac 118054 bytes_out 0 118054 bytes_in 0 118054 station_ip 37.129.191.146 118054 port 156 118054 unique_id port 118054 remote_ip 10.8.0.130 118055 username asma2026 118055 mac 118055 bytes_out 0 118055 bytes_in 0 118055 station_ip 83.122.64.237 118055 port 157 118055 unique_id port 118055 remote_ip 10.8.0.170 118057 username amir 118057 mac 118057 bytes_out 71190 118057 bytes_in 399485 118057 station_ip 46.225.215.142 118057 port 156 118057 unique_id port 118057 remote_ip 10.8.0.50 118058 username rezasekonji 118058 mac 118058 bytes_out 0 118058 bytes_in 0 118058 station_ip 37.129.191.146 118058 port 156 118058 unique_id port 118058 remote_ip 10.8.0.130 118062 username mirzaei 118062 mac 118062 bytes_out 0 118062 bytes_in 0 118062 station_ip 5.119.247.72 118062 port 157 118062 unique_id port 118021 remote_ip 10.8.0.206 118022 username aminvpn 118022 mac 118022 bytes_out 0 118022 bytes_in 0 118022 station_ip 83.122.51.54 118022 port 156 118022 unique_id port 118022 remote_ip 10.8.0.14 118024 username forozande 118024 mac 118024 bytes_out 0 118024 bytes_in 0 118024 station_ip 113.203.13.218 118024 port 159 118024 unique_id port 118024 remote_ip 10.8.0.74 118026 username amir 118026 mac 118026 bytes_out 0 118026 bytes_in 0 118026 station_ip 46.225.215.142 118026 port 156 118026 unique_id port 118026 remote_ip 10.8.0.50 118028 username rajaei 118028 mac 118028 bytes_out 1291794 118028 bytes_in 17531444 118028 station_ip 5.134.186.69 118028 port 156 118028 unique_id port 118028 remote_ip 10.8.0.34 118031 username rezasekonji 118031 mac 118031 bytes_out 0 118031 bytes_in 0 118031 station_ip 37.129.191.146 118031 port 148 118031 unique_id port 118031 remote_ip 10.8.0.130 118035 username zare 118035 mac 118035 bytes_out 63460 118035 bytes_in 96136 118035 station_ip 37.27.38.78 118035 port 148 118035 unique_id port 118035 remote_ip 10.8.0.18 118043 username asma2026 118043 mac 118043 bytes_out 0 118043 bytes_in 0 118043 station_ip 83.122.64.237 118043 port 159 118043 unique_id port 118043 remote_ip 10.8.0.170 118045 username alihosseini1 118045 kill_reason Another user logged on this global unique id 118045 mac 118045 bytes_out 0 118045 bytes_in 0 118045 station_ip 5.119.82.191 118045 port 162 118045 unique_id port 118045 remote_ip 10.8.0.166 118048 username asma2026 118048 mac 118048 bytes_out 0 118048 bytes_in 0 118048 station_ip 83.122.64.237 118048 port 64 118048 unique_id port 118048 remote_ip 10.8.1.122 118049 username mosi 118049 kill_reason Another user logged on this global unique id 118049 mac 118049 bytes_out 0 118049 bytes_in 0 118049 station_ip 151.235.102.250 118049 port 148 118049 unique_id port 118049 remote_ip 10.8.0.138 118051 username sedighe 118051 mac 118051 bytes_out 0 118051 bytes_in 0 118051 station_ip 113.203.62.43 118051 port 159 118051 unique_id port 118051 remote_ip 10.8.0.146 118052 username rezasekonji 118052 mac 118052 bytes_out 0 118052 bytes_in 0 118052 station_ip 37.129.191.146 118052 port 157 118052 unique_id port 118052 remote_ip 10.8.0.130 118056 username mirzaei 118056 mac 118056 bytes_out 0 118056 bytes_in 0 118056 station_ip 5.119.247.72 118056 port 122 118056 unique_id port 118059 username mosi 118059 kill_reason Another user logged on this global unique id 118059 mac 118059 bytes_out 0 118059 bytes_in 0 118059 station_ip 151.235.102.250 118059 port 148 118059 unique_id port 118061 username morteza 118061 mac 118061 bytes_out 0 118061 bytes_in 0 118061 station_ip 83.123.162.96 118061 port 159 118061 unique_id port 118061 remote_ip 10.8.0.46 118065 username zare 118065 mac 118065 bytes_out 0 118065 bytes_in 0 118065 station_ip 37.27.38.78 118065 port 163 118065 unique_id port 118065 remote_ip 10.8.0.18 118068 username zare 118068 mac 118068 bytes_out 0 118068 bytes_in 0 118068 station_ip 37.27.38.78 118068 port 158 118068 unique_id port 118068 remote_ip 10.8.0.18 118071 username mohammadmahdi 118071 kill_reason Another user logged on this global unique id 118071 mac 118071 bytes_out 0 118071 bytes_in 0 118071 station_ip 5.119.129.19 118071 port 160 118071 unique_id port 118071 remote_ip 10.8.0.54 118073 username zare 118073 kill_reason Maximum check online fails reached 118073 mac 118073 bytes_out 0 118073 bytes_in 0 118073 station_ip 37.27.38.78 118027 bytes_in 0 118027 station_ip 37.27.38.78 118027 port 160 118027 unique_id port 118027 remote_ip 10.8.0.18 118032 username rezasekonji 118032 mac 118032 bytes_out 0 118032 bytes_in 0 118032 station_ip 37.129.191.146 118032 port 148 118032 unique_id port 118032 remote_ip 10.8.0.130 118033 username zare 118033 mac 118033 bytes_out 0 118033 bytes_in 0 118033 station_ip 37.27.38.78 118033 port 148 118033 unique_id port 118033 remote_ip 10.8.0.18 118034 username alirr 118034 unique_id port 118034 terminate_cause Lost-Carrier 118034 bytes_out 1425736 118034 bytes_in 19237194 118034 station_ip 5.119.233.184 118034 port 15729570 118034 nas_port_type Virtual 118034 remote_ip 5.5.5.254 118038 username amir 118038 mac 118038 bytes_out 0 118038 bytes_in 0 118038 station_ip 46.225.215.142 118038 port 148 118038 unique_id port 118038 remote_ip 10.8.0.50 118040 username rezasekonji 118040 mac 118040 bytes_out 0 118040 bytes_in 0 118040 station_ip 37.129.191.146 118040 port 148 118040 unique_id port 118040 remote_ip 10.8.0.130 118042 username aminvpn 118042 mac 118042 bytes_out 0 118042 bytes_in 0 118042 station_ip 83.122.255.2 118042 port 159 118042 unique_id port 118042 remote_ip 10.8.0.14 118044 username asma2026 118044 mac 118044 bytes_out 0 118044 bytes_in 0 118044 station_ip 83.122.64.237 118044 port 159 118044 unique_id port 118044 remote_ip 10.8.0.170 118050 username rezasekonji 118050 mac 118050 bytes_out 0 118050 bytes_in 0 118050 station_ip 37.129.191.146 118050 port 157 118050 unique_id port 118050 remote_ip 10.8.0.130 118060 username rezasekonji 118060 mac 118060 bytes_out 0 118060 bytes_in 0 118060 station_ip 37.129.191.146 118060 port 156 118060 unique_id port 118060 remote_ip 10.8.0.130 118063 username rezasekonji 118063 mac 118063 bytes_out 0 118063 bytes_in 0 118063 station_ip 37.129.191.146 118063 port 156 118063 unique_id port 118063 remote_ip 10.8.0.130 118066 username kamali1 118066 mac 118066 bytes_out 728168 118066 bytes_in 1777954 118066 station_ip 5.120.163.23 118066 port 158 118066 unique_id port 118066 remote_ip 10.8.0.70 118069 username rezasekonji 118069 mac 118069 bytes_out 0 118069 bytes_in 0 118069 station_ip 37.129.191.146 118069 port 159 118069 unique_id port 118069 remote_ip 10.8.0.130 118072 username amir 118072 mac 118072 bytes_out 166779 118072 bytes_in 592855 118072 station_ip 46.225.215.142 118072 port 157 118072 unique_id port 118072 remote_ip 10.8.0.50 118077 username amir 118077 mac 118077 bytes_out 69213 118077 bytes_in 479209 118077 station_ip 46.225.215.142 118077 port 157 118077 unique_id port 118077 remote_ip 10.8.0.50 118082 username zare 118082 mac 118082 bytes_out 0 118082 bytes_in 0 118082 station_ip 37.27.38.78 118082 port 64 118082 unique_id port 118082 remote_ip 10.8.1.58 118083 username zare 118083 mac 118083 bytes_out 0 118083 bytes_in 0 118083 station_ip 37.27.38.78 118083 port 148 118083 unique_id port 118083 remote_ip 10.8.0.18 118084 username mahdixz 118084 unique_id port 118084 terminate_cause User-Request 118084 bytes_out 826516 118084 bytes_in 6794330 118084 station_ip 151.235.94.50 118084 port 15729579 118084 nas_port_type Virtual 118084 remote_ip 5.5.5.255 118088 username rezasekonji 118088 mac 118088 bytes_out 0 118088 bytes_in 0 118088 station_ip 37.129.191.146 118088 port 159 118088 unique_id port 118088 remote_ip 10.8.0.130 118090 username rezasekonji 118090 mac 118090 bytes_out 0 118062 remote_ip 10.8.0.66 118064 username mahdiyehalizadeh 118064 mac 118064 bytes_out 0 118064 bytes_in 0 118064 station_ip 113.203.29.41 118064 port 122 118064 unique_id port 118064 remote_ip 10.8.0.82 118067 username zare 118067 mac 118067 bytes_out 0 118067 bytes_in 0 118067 station_ip 37.27.38.78 118067 port 159 118067 unique_id port 118067 remote_ip 10.8.0.18 118070 username mosi 118070 kill_reason Another user logged on this global unique id 118070 mac 118070 bytes_out 0 118070 bytes_in 0 118070 station_ip 151.235.102.250 118070 port 148 118070 unique_id port 118074 username asma2026 118074 mac 118074 bytes_out 0 118074 bytes_in 0 118074 station_ip 83.122.64.237 118074 port 64 118074 unique_id port 118074 remote_ip 10.8.1.122 118075 username asma2026 118075 mac 118075 bytes_out 0 118075 bytes_in 0 118075 station_ip 83.122.64.237 118075 port 157 118075 unique_id port 118075 remote_ip 10.8.0.170 118076 username mosi 118076 mac 118076 bytes_out 0 118076 bytes_in 0 118076 station_ip 151.235.102.250 118076 port 148 118076 unique_id port 118087 username aminvpn 118087 unique_id port 118087 terminate_cause User-Request 118087 bytes_out 467450 118087 bytes_in 6600269 118087 station_ip 5.126.175.10 118087 port 15729580 118087 nas_port_type Virtual 118087 remote_ip 5.5.5.254 118089 username mahdiyehalizadeh 118089 mac 118089 bytes_out 0 118089 bytes_in 0 118089 station_ip 113.203.29.41 118089 port 148 118089 unique_id port 118089 remote_ip 10.8.0.82 118096 username rezaei 118096 mac 118096 bytes_out 0 118096 bytes_in 0 118096 station_ip 5.120.133.6 118096 port 156 118096 unique_id port 118096 remote_ip 10.8.0.206 118097 username rostami 118097 kill_reason Another user logged on this global unique id 118097 mac 118097 bytes_out 0 118097 bytes_in 0 118097 station_ip 5.119.139.8 118097 port 68 118097 unique_id port 118097 remote_ip 10.8.1.142 118101 username alirr 118101 unique_id port 118101 terminate_cause User-Request 118101 bytes_out 4000680 118101 bytes_in 103622876 118101 station_ip 5.119.142.139 118101 port 15729578 118101 nas_port_type Virtual 118101 remote_ip 5.5.5.222 118103 username asma2026 118103 kill_reason Maximum check online fails reached 118103 mac 118103 bytes_out 0 118103 bytes_in 0 118103 station_ip 83.122.64.237 118103 port 64 118103 unique_id port 118104 username amir 118104 mac 118104 bytes_out 194072 118104 bytes_in 923699 118104 station_ip 46.225.215.142 118104 port 148 118104 unique_id port 118104 remote_ip 10.8.0.50 118106 username tahmasebi 118106 kill_reason Another user logged on this global unique id 118106 mac 118106 bytes_out 0 118106 bytes_in 0 118106 station_ip 5.119.132.27 118106 port 137 118106 unique_id port 118107 username mohammadmahdi 118107 kill_reason Another user logged on this global unique id 118107 mac 118107 bytes_out 0 118107 bytes_in 0 118107 station_ip 5.119.129.19 118107 port 160 118107 unique_id port 118109 username rezasekonji 118109 mac 118109 bytes_out 0 118109 bytes_in 0 118109 station_ip 37.129.191.146 118109 port 122 118109 unique_id port 118109 remote_ip 10.8.0.130 118111 username mohammadmahdi 118111 mac 118111 bytes_out 0 118111 bytes_in 0 118111 station_ip 5.119.129.19 118111 port 160 118111 unique_id port 118112 username tahmasebi 118112 kill_reason Another user logged on this global unique id 118112 mac 118112 bytes_out 0 118112 bytes_in 0 118112 station_ip 5.119.132.27 118112 port 137 118112 unique_id port 118113 username mirzaei 118113 mac 118113 bytes_out 0 118113 bytes_in 0 118073 port 158 118073 unique_id port 118078 username mirzaei 118078 mac 118078 bytes_out 0 118078 bytes_in 0 118078 station_ip 5.119.247.72 118078 port 122 118078 unique_id port 118078 remote_ip 10.8.0.66 118079 username rezasekonji 118079 mac 118079 bytes_out 0 118079 bytes_in 0 118079 station_ip 37.129.191.146 118079 port 157 118079 unique_id port 118079 remote_ip 10.8.0.130 118080 username asma2026 118080 mac 118080 bytes_out 0 118080 bytes_in 0 118080 station_ip 83.122.64.237 118080 port 157 118080 unique_id port 118080 remote_ip 10.8.0.170 118081 username mirzaei 118081 mac 118081 bytes_out 0 118081 bytes_in 0 118081 station_ip 5.119.91.225 118081 port 148 118081 unique_id port 118081 remote_ip 10.8.0.66 118085 username rezasekonji 118085 mac 118085 bytes_out 0 118085 bytes_in 0 118085 station_ip 37.129.191.146 118085 port 157 118085 unique_id port 118085 remote_ip 10.8.0.130 118086 username rezasekonji 118086 mac 118086 bytes_out 0 118086 bytes_in 0 118086 station_ip 37.129.191.146 118086 port 157 118086 unique_id port 118086 remote_ip 10.8.0.130 118092 username rezasekonji 118092 mac 118092 bytes_out 0 118092 bytes_in 0 118092 station_ip 37.129.191.146 118092 port 148 118092 unique_id port 118092 remote_ip 10.8.0.130 118094 username asma2026 118094 mac 118094 bytes_out 0 118094 bytes_in 0 118094 station_ip 83.122.64.237 118094 port 164 118094 unique_id port 118094 remote_ip 10.8.0.170 118098 username rezasekonji 118098 mac 118098 bytes_out 0 118098 bytes_in 0 118098 station_ip 37.129.191.146 118098 port 122 118098 unique_id port 118098 remote_ip 10.8.0.130 118099 username jamali 118099 kill_reason Another user logged on this global unique id 118099 mac 118099 bytes_out 0 118099 bytes_in 0 118099 station_ip 5.120.158.223 118099 port 151 118099 unique_id port 118099 remote_ip 10.8.0.150 118100 username amir 118100 mac 118100 bytes_out 0 118100 bytes_in 0 118100 station_ip 46.225.215.142 118100 port 148 118100 unique_id port 118100 remote_ip 10.8.0.50 118110 username sabaghnezhad 118110 kill_reason Maximum check online fails reached 118110 mac 118110 bytes_out 184663 118110 bytes_in 213731 118110 station_ip 37.129.74.231 118110 port 67 118110 unique_id port 118110 remote_ip 10.8.1.130 118115 username musa 118115 mac 118115 bytes_out 0 118115 bytes_in 0 118115 station_ip 83.122.168.180 118115 port 141 118115 unique_id port 118115 remote_ip 10.8.0.6 118116 username aminvpn 118116 mac 118116 bytes_out 0 118116 bytes_in 0 118116 station_ip 83.122.255.2 118116 port 122 118116 unique_id port 118116 remote_ip 10.8.0.14 118118 username aminvpn 118118 mac 118118 bytes_out 0 118118 bytes_in 0 118118 station_ip 83.122.255.2 118118 port 122 118118 unique_id port 118118 remote_ip 10.8.0.14 118121 username aminvpn 118121 mac 118121 bytes_out 0 118121 bytes_in 0 118121 station_ip 83.122.81.154 118121 port 156 118121 unique_id port 118121 remote_ip 10.8.0.14 118123 username mirzaei 118123 mac 118123 bytes_out 0 118123 bytes_in 0 118123 station_ip 5.112.47.232 118123 port 69 118123 unique_id port 118123 remote_ip 10.8.1.30 118128 username amir 118128 mac 118128 bytes_out 0 118128 bytes_in 0 118128 station_ip 46.225.215.142 118128 port 122 118128 unique_id port 118128 remote_ip 10.8.0.50 118129 username mirzaei 118129 mac 118129 bytes_out 7762 118129 bytes_in 21760 118129 station_ip 5.119.134.120 118129 port 69 118129 unique_id port 118090 bytes_in 0 118090 station_ip 37.129.191.146 118090 port 148 118090 unique_id port 118090 remote_ip 10.8.0.130 118091 username amir 118091 mac 118091 bytes_out 0 118091 bytes_in 0 118091 station_ip 46.225.215.142 118091 port 159 118091 unique_id port 118091 remote_ip 10.8.0.50 118093 username aminvpn 118093 mac 118093 bytes_out 0 118093 bytes_in 0 118093 station_ip 83.122.255.2 118093 port 122 118093 unique_id port 118093 remote_ip 10.8.0.14 118095 username malekpoir 118095 kill_reason Another user logged on this global unique id 118095 mac 118095 bytes_out 0 118095 bytes_in 0 118095 station_ip 5.119.86.119 118095 port 65 118095 unique_id port 118102 username rezasekonji 118102 mac 118102 bytes_out 0 118102 bytes_in 0 118102 station_ip 37.129.191.146 118102 port 148 118102 unique_id port 118102 remote_ip 10.8.0.130 118105 username rezasekonji 118105 mac 118105 bytes_out 0 118105 bytes_in 0 118105 station_ip 37.129.191.146 118105 port 156 118105 unique_id port 118105 remote_ip 10.8.0.130 118108 username farhad1 118108 mac 118108 bytes_out 0 118108 bytes_in 0 118108 station_ip 5.120.179.147 118108 port 122 118108 unique_id port 118108 remote_ip 10.8.0.26 118120 username mirzaei 118120 mac 118120 bytes_out 60755 118120 bytes_in 69307 118120 station_ip 5.112.47.232 118120 port 69 118120 unique_id port 118120 remote_ip 10.8.1.30 118122 username asma2026 118122 mac 118122 bytes_out 0 118122 bytes_in 0 118122 station_ip 83.122.64.237 118122 port 122 118122 unique_id port 118122 remote_ip 10.8.0.170 118126 username rostami 118126 mac 118126 bytes_out 0 118126 bytes_in 0 118126 station_ip 5.119.139.8 118126 port 68 118126 unique_id port 118127 username alirr 118127 unique_id port 118127 terminate_cause Lost-Carrier 118127 bytes_out 718810 118127 bytes_in 6394820 118127 station_ip 5.120.97.117 118127 port 15729581 118127 nas_port_type Virtual 118127 remote_ip 5.5.5.228 118130 username amir 118130 mac 118130 bytes_out 0 118130 bytes_in 0 118130 station_ip 46.225.215.142 118130 port 156 118130 unique_id port 118130 remote_ip 10.8.0.50 118133 username asma2026 118133 mac 118133 bytes_out 0 118133 bytes_in 0 118133 station_ip 83.122.64.237 118133 port 70 118133 unique_id port 118133 remote_ip 10.8.1.122 118134 username zare 118134 kill_reason Another user logged on this global unique id 118134 mac 118134 bytes_out 0 118134 bytes_in 0 118134 station_ip 37.27.38.78 118134 port 157 118134 unique_id port 118134 remote_ip 10.8.0.18 118135 username mirzaei 118135 mac 118135 bytes_out 8830 118135 bytes_in 17107 118135 station_ip 5.119.134.120 118135 port 69 118135 unique_id port 118135 remote_ip 10.8.1.30 118139 username amir 118139 mac 118139 bytes_out 0 118139 bytes_in 0 118139 station_ip 46.225.215.142 118139 port 156 118139 unique_id port 118139 remote_ip 10.8.0.50 118142 username amir 118142 mac 118142 bytes_out 0 118142 bytes_in 0 118142 station_ip 46.225.215.142 118142 port 156 118142 unique_id port 118142 remote_ip 10.8.0.50 118146 username mirzaei 118146 mac 118146 bytes_out 0 118146 bytes_in 0 118146 station_ip 5.114.22.130 118146 port 69 118146 unique_id port 118146 remote_ip 10.8.1.30 118147 username asma2026 118147 mac 118147 bytes_out 0 118147 bytes_in 0 118147 station_ip 83.122.64.237 118147 port 122 118147 unique_id port 118147 remote_ip 10.8.0.170 118149 username alihosseini1 118149 mac 118149 bytes_out 0 118149 bytes_in 0 118113 station_ip 5.119.91.225 118113 port 163 118113 unique_id port 118113 remote_ip 10.8.0.66 118114 username amir 118114 mac 118114 bytes_out 469406 118114 bytes_in 2049249 118114 station_ip 46.225.215.142 118114 port 148 118114 unique_id port 118114 remote_ip 10.8.0.50 118117 username mirzaei 118117 mac 118117 bytes_out 0 118117 bytes_in 0 118117 station_ip 5.119.91.225 118117 port 156 118117 unique_id port 118117 remote_ip 10.8.0.66 118119 username amir 118119 mac 118119 bytes_out 0 118119 bytes_in 0 118119 station_ip 46.225.215.142 118119 port 141 118119 unique_id port 118119 remote_ip 10.8.0.50 118124 username amir 118124 mac 118124 bytes_out 0 118124 bytes_in 0 118124 station_ip 46.225.215.142 118124 port 122 118124 unique_id port 118124 remote_ip 10.8.0.50 118125 username asma2026 118125 mac 118125 bytes_out 0 118125 bytes_in 0 118125 station_ip 83.122.64.237 118125 port 122 118125 unique_id port 118125 remote_ip 10.8.0.170 118138 username mirzaei 118138 mac 118138 bytes_out 0 118138 bytes_in 0 118138 station_ip 5.114.22.130 118138 port 69 118138 unique_id port 118138 remote_ip 10.8.1.30 118141 username alirr 118141 unique_id port 118141 terminate_cause Lost-Carrier 118141 bytes_out 729177 118141 bytes_in 11020232 118141 station_ip 5.120.97.117 118141 port 15729583 118141 nas_port_type Virtual 118141 remote_ip 5.5.5.234 118143 username avaanna 118143 mac 118143 bytes_out 580737 118143 bytes_in 7386440 118143 station_ip 113.203.51.78 118143 port 122 118143 unique_id port 118143 remote_ip 10.8.0.98 118145 username amir 118145 mac 118145 bytes_out 0 118145 bytes_in 0 118145 station_ip 46.225.215.142 118145 port 122 118145 unique_id port 118145 remote_ip 10.8.0.50 118148 username tahmasebi 118148 kill_reason Another user logged on this global unique id 118148 mac 118148 bytes_out 0 118148 bytes_in 0 118148 station_ip 5.119.132.27 118148 port 137 118148 unique_id port 118151 username rostami 118151 mac 118151 bytes_out 822175 118151 bytes_in 7117844 118151 station_ip 5.119.139.8 118151 port 68 118151 unique_id port 118151 remote_ip 10.8.1.142 118153 username malekpoir 118153 mac 118153 bytes_out 0 118153 bytes_in 0 118153 station_ip 5.119.86.119 118153 port 65 118153 unique_id port 118155 username mostafa_es78 118155 unique_id port 118155 terminate_cause User-Request 118155 bytes_out 165347 118155 bytes_in 201932 118155 station_ip 5.126.15.132 118155 port 15729584 118155 nas_port_type Virtual 118155 remote_ip 5.5.5.237 118158 username musa 118158 kill_reason Another user logged on this global unique id 118158 mac 118158 bytes_out 0 118158 bytes_in 0 118158 station_ip 83.122.13.184 118158 port 148 118158 unique_id port 118158 remote_ip 10.8.0.6 118162 username musa 118162 mac 118162 bytes_out 0 118162 bytes_in 0 118162 station_ip 83.122.13.184 118162 port 148 118162 unique_id port 118164 username rostami 118164 mac 118164 bytes_out 991880 118164 bytes_in 3101635 118164 station_ip 5.119.139.8 118164 port 67 118164 unique_id port 118164 remote_ip 10.8.1.142 118170 username farhad1 118170 kill_reason Another user logged on this global unique id 118170 mac 118170 bytes_out 0 118170 bytes_in 0 118170 station_ip 5.119.183.75 118170 port 122 118170 unique_id port 118173 username asma2026 118173 mac 118173 bytes_out 0 118173 bytes_in 0 118173 station_ip 83.122.64.237 118173 port 141 118173 unique_id port 118173 remote_ip 10.8.0.170 118184 username bcboard 118184 unique_id port 118184 terminate_cause User-Request 118129 remote_ip 10.8.1.30 118131 username mirzaei 118131 mac 118131 bytes_out 9626 118131 bytes_in 14063 118131 station_ip 5.119.134.120 118131 port 69 118131 unique_id port 118131 remote_ip 10.8.1.30 118132 username kordestani 118132 mac 118132 bytes_out 0 118132 bytes_in 0 118132 station_ip 151.235.115.215 118132 port 122 118132 unique_id port 118132 remote_ip 10.8.0.134 118136 username mostafa_es78 118136 unique_id port 118136 terminate_cause User-Request 118136 bytes_out 1041746 118136 bytes_in 15262988 118136 station_ip 5.126.15.132 118136 port 15729582 118136 nas_port_type Virtual 118136 remote_ip 5.5.5.233 118137 username rostami 118137 mac 118137 bytes_out 0 118137 bytes_in 0 118137 station_ip 5.119.139.8 118137 port 68 118137 unique_id port 118137 remote_ip 10.8.1.142 118140 username asma2026 118140 mac 118140 bytes_out 0 118140 bytes_in 0 118140 station_ip 83.122.64.237 118140 port 159 118140 unique_id port 118140 remote_ip 10.8.0.170 118144 username mirzaei 118144 mac 118144 bytes_out 9400 118144 bytes_in 13338 118144 station_ip 5.114.22.130 118144 port 69 118144 unique_id port 118144 remote_ip 10.8.1.30 118152 username mirzaei 118152 mac 118152 bytes_out 0 118152 bytes_in 0 118152 station_ip 5.113.178.11 118152 port 156 118152 unique_id port 118152 remote_ip 10.8.0.66 118156 username asma2026 118156 mac 118156 bytes_out 0 118156 bytes_in 0 118156 station_ip 83.122.64.237 118156 port 160 118156 unique_id port 118156 remote_ip 10.8.0.170 118157 username mostafa_es78 118157 mac 118157 bytes_out 202854 118157 bytes_in 167387 118157 station_ip 5.126.15.132 118157 port 156 118157 unique_id port 118157 remote_ip 10.8.0.198 118159 username Mahin 118159 mac 118159 bytes_out 300215 118159 bytes_in 483636 118159 station_ip 5.119.20.46 118159 port 159 118159 unique_id port 118159 remote_ip 10.8.0.222 118165 username rostami 118165 mac 118165 bytes_out 0 118165 bytes_in 0 118165 station_ip 5.119.139.8 118165 port 67 118165 unique_id port 118165 remote_ip 10.8.1.142 118166 username tahmasebi 118166 kill_reason Another user logged on this global unique id 118166 mac 118166 bytes_out 0 118166 bytes_in 0 118166 station_ip 5.119.132.27 118166 port 137 118166 unique_id port 118168 username asma2026 118168 mac 118168 bytes_out 0 118168 bytes_in 0 118168 station_ip 83.122.64.237 118168 port 141 118168 unique_id port 118168 remote_ip 10.8.0.170 118175 username asma2026 118175 mac 118175 bytes_out 0 118175 bytes_in 0 118175 station_ip 83.122.64.237 118175 port 141 118175 unique_id port 118175 remote_ip 10.8.0.170 118176 username sabaghnezhad 118176 mac 118176 bytes_out 67415 118176 bytes_in 87359 118176 station_ip 37.129.74.231 118176 port 65 118176 unique_id port 118176 remote_ip 10.8.1.130 118179 username asma2026 118179 mac 118179 bytes_out 0 118179 bytes_in 0 118179 station_ip 83.122.64.237 118179 port 141 118179 unique_id port 118179 remote_ip 10.8.0.170 118182 username tahmasebi 118182 kill_reason Another user logged on this global unique id 118182 mac 118182 bytes_out 0 118182 bytes_in 0 118182 station_ip 5.119.132.27 118182 port 137 118182 unique_id port 118196 username mirzaei 118196 mac 118196 bytes_out 0 118196 bytes_in 0 118196 station_ip 5.120.27.233 118196 port 159 118196 unique_id port 118196 remote_ip 10.8.0.66 118199 username tahmasebi 118199 kill_reason Another user logged on this global unique id 118199 mac 118199 bytes_out 0 118199 bytes_in 0 118199 station_ip 5.119.132.27 118199 port 137 118149 station_ip 5.119.82.191 118149 port 162 118149 unique_id port 118150 username asma2026 118150 mac 118150 bytes_out 0 118150 bytes_in 0 118150 station_ip 83.122.64.237 118150 port 159 118150 unique_id port 118150 remote_ip 10.8.0.170 118154 username mirzaei 118154 mac 118154 bytes_out 0 118154 bytes_in 0 118154 station_ip 5.113.178.11 118154 port 156 118154 unique_id port 118154 remote_ip 10.8.0.66 118160 username farhad1 118160 kill_reason Another user logged on this global unique id 118160 mac 118160 bytes_out 0 118160 bytes_in 0 118160 station_ip 5.119.183.75 118160 port 122 118160 unique_id port 118160 remote_ip 10.8.0.26 118161 username zare 118161 kill_reason Another user logged on this global unique id 118161 mac 118161 bytes_out 0 118161 bytes_in 0 118161 station_ip 37.27.38.78 118161 port 157 118161 unique_id port 118163 username asma2026 118163 mac 118163 bytes_out 0 118163 bytes_in 0 118163 station_ip 83.122.64.237 118163 port 148 118163 unique_id port 118163 remote_ip 10.8.0.170 118167 username aminvpn 118167 mac 118167 bytes_out 105824 118167 bytes_in 105639 118167 station_ip 83.122.255.2 118167 port 141 118167 unique_id port 118167 remote_ip 10.8.0.14 118169 username mostafa_es78 118169 unique_id port 118169 terminate_cause User-Request 118169 bytes_out 347233 118169 bytes_in 11318992 118169 station_ip 5.126.15.132 118169 port 15729585 118169 nas_port_type Virtual 118169 remote_ip 5.5.5.240 118171 username asma2026 118171 mac 118171 bytes_out 0 118171 bytes_in 0 118171 station_ip 83.122.64.237 118171 port 141 118171 unique_id port 118171 remote_ip 10.8.0.170 118172 username rajaei 118172 mac 118172 bytes_out 820521 118172 bytes_in 10115803 118172 station_ip 5.200.124.83 118172 port 68 118172 unique_id port 118172 remote_ip 10.8.1.162 118174 username rostami 118174 mac 118174 bytes_out 4969668 118174 bytes_in 38001288 118174 station_ip 5.119.139.8 118174 port 67 118174 unique_id port 118174 remote_ip 10.8.1.142 118177 username bcboard 118177 unique_id port 118177 terminate_cause User-Request 118177 bytes_out 197266 118177 bytes_in 2751811 118177 station_ip 37.129.138.55 118177 port 15729586 118177 nas_port_type Virtual 118177 remote_ip 5.5.5.255 118178 username bcboard 118178 unique_id port 118178 terminate_cause User-Request 118178 bytes_out 55042 118178 bytes_in 697520 118178 station_ip 37.129.138.55 118178 port 15729587 118178 nas_port_type Virtual 118178 remote_ip 5.5.5.255 118180 username bcboard 118180 unique_id port 118180 terminate_cause User-Request 118180 bytes_out 73782 118180 bytes_in 306176 118180 station_ip 37.129.138.55 118180 port 15729588 118180 nas_port_type Virtual 118180 remote_ip 5.5.5.255 118181 username bcboard 118181 unique_id port 118181 terminate_cause User-Request 118181 bytes_out 94285 118181 bytes_in 2491802 118181 station_ip 37.129.138.55 118181 port 15729589 118181 nas_port_type Virtual 118181 remote_ip 5.5.5.255 118183 username bcboard 118183 unique_id port 118183 terminate_cause User-Request 118183 bytes_out 0 118183 bytes_in 0 118183 station_ip 37.129.138.55 118183 port 15729590 118183 nas_port_type Virtual 118183 remote_ip 5.5.5.255 118185 username farhad1 118185 kill_reason Another user logged on this global unique id 118185 mac 118185 bytes_out 0 118185 bytes_in 0 118185 station_ip 5.119.183.75 118185 port 122 118185 unique_id port 118186 username asma2026 118186 mac 118186 bytes_out 0 118186 bytes_in 0 118186 station_ip 83.122.64.237 118186 port 141 118186 unique_id port 118186 remote_ip 10.8.0.170 118188 username asma2026 118188 mac 118188 bytes_out 0 118184 bytes_out 0 118184 bytes_in 0 118184 station_ip 37.129.138.55 118184 port 15729591 118184 nas_port_type Virtual 118184 remote_ip 5.5.5.255 118187 username farhad1 118187 kill_reason Another user logged on this global unique id 118187 mac 118187 bytes_out 0 118187 bytes_in 0 118187 station_ip 5.119.183.75 118187 port 122 118187 unique_id port 118193 username asma2026 118193 mac 118193 bytes_out 0 118193 bytes_in 0 118193 station_ip 83.122.64.237 118193 port 67 118193 unique_id port 118193 remote_ip 10.8.1.122 118194 username Mahin 118194 mac 118194 bytes_out 804035 118194 bytes_in 5833076 118194 station_ip 5.119.20.46 118194 port 156 118194 unique_id port 118194 remote_ip 10.8.0.222 118200 username farhad1 118200 kill_reason Another user logged on this global unique id 118200 mac 118200 bytes_out 0 118200 bytes_in 0 118200 station_ip 5.119.183.75 118200 port 122 118200 unique_id port 118202 username zare 118202 kill_reason Another user logged on this global unique id 118202 mac 118202 bytes_out 0 118202 bytes_in 0 118202 station_ip 37.27.38.78 118202 port 148 118202 unique_id port 118202 remote_ip 10.8.0.18 118204 username asma2026 118204 kill_reason Another user logged on this global unique id 118204 mac 118204 bytes_out 0 118204 bytes_in 0 118204 station_ip 83.122.64.237 118204 port 67 118204 unique_id port 118204 remote_ip 10.8.1.122 118212 username zare 118212 kill_reason Another user logged on this global unique id 118212 mac 118212 bytes_out 0 118212 bytes_in 0 118212 station_ip 37.27.38.78 118212 port 148 118212 unique_id port 118213 username alirezazadeh 118213 unique_id port 118213 terminate_cause Lost-Carrier 118213 bytes_out 971910 118213 bytes_in 11214512 118213 station_ip 5.119.98.43 118213 port 15729594 118213 nas_port_type Virtual 118213 remote_ip 5.5.5.224 118217 username farhad1 118217 kill_reason Another user logged on this global unique id 118217 mac 118217 bytes_out 0 118217 bytes_in 0 118217 station_ip 5.119.183.75 118217 port 122 118217 unique_id port 118218 username mirzaei 118218 kill_reason Another user logged on this global unique id 118218 mac 118218 bytes_out 0 118218 bytes_in 0 118218 station_ip 5.120.27.233 118218 port 141 118218 unique_id port 118220 username mirzaei 118220 kill_reason Another user logged on this global unique id 118220 mac 118220 bytes_out 0 118220 bytes_in 0 118220 station_ip 5.120.27.233 118220 port 141 118220 unique_id port 118221 username tahmasebi 118221 kill_reason Another user logged on this global unique id 118221 mac 118221 bytes_out 0 118221 bytes_in 0 118221 station_ip 5.119.132.27 118221 port 137 118221 unique_id port 118223 username mirzaei 118223 mac 118223 bytes_out 0 118223 bytes_in 0 118223 station_ip 5.120.27.233 118223 port 141 118223 unique_id port 118225 username farhad1 118225 kill_reason Another user logged on this global unique id 118225 mac 118225 bytes_out 0 118225 bytes_in 0 118225 station_ip 5.119.183.75 118225 port 122 118225 unique_id port 118227 username farhad1 118227 mac 118227 bytes_out 0 118227 bytes_in 0 118227 station_ip 5.119.183.75 118227 port 122 118227 unique_id port 118230 username milan 118230 kill_reason Another user logged on this global unique id 118230 mac 118230 bytes_out 0 118230 bytes_in 0 118230 station_ip 5.119.114.249 118230 port 141 118230 unique_id port 118230 remote_ip 10.8.0.218 118231 username sedighe 118231 mac 118231 bytes_out 174010 118231 bytes_in 644333 118231 station_ip 83.122.74.102 118231 port 142 118231 unique_id port 118231 remote_ip 10.8.0.146 118235 username farhad1 118235 mac 118235 bytes_out 0 118188 bytes_in 0 118188 station_ip 83.122.64.237 118188 port 141 118188 unique_id port 118188 remote_ip 10.8.0.170 118189 username tahmasebi 118189 kill_reason Another user logged on this global unique id 118189 mac 118189 bytes_out 0 118189 bytes_in 0 118189 station_ip 5.119.132.27 118189 port 137 118189 unique_id port 118190 username zare 118190 kill_reason Another user logged on this global unique id 118190 mac 118190 bytes_out 0 118190 bytes_in 0 118190 station_ip 37.27.38.78 118190 port 157 118190 unique_id port 118191 username asma2026 118191 mac 118191 bytes_out 0 118191 bytes_in 0 118191 station_ip 83.122.64.237 118191 port 141 118191 unique_id port 118191 remote_ip 10.8.0.170 118192 username farhad1 118192 kill_reason Another user logged on this global unique id 118192 mac 118192 bytes_out 0 118192 bytes_in 0 118192 station_ip 5.119.183.75 118192 port 122 118192 unique_id port 118195 username asma2026 118195 mac 118195 bytes_out 0 118195 bytes_in 0 118195 station_ip 83.122.64.237 118195 port 67 118195 unique_id port 118195 remote_ip 10.8.1.122 118197 username zare 118197 mac 118197 bytes_out 0 118197 bytes_in 0 118197 station_ip 37.27.38.78 118197 port 157 118197 unique_id port 118198 username sabaghnezhad 118198 mac 118198 bytes_out 0 118198 bytes_in 0 118198 station_ip 37.129.74.231 118198 port 65 118198 unique_id port 118198 remote_ip 10.8.1.130 118207 username asma2026 118207 mac 118207 bytes_out 0 118207 bytes_in 0 118207 station_ip 83.122.64.237 118207 port 67 118207 unique_id port 118208 username farhad1 118208 kill_reason Another user logged on this global unique id 118208 mac 118208 bytes_out 0 118208 bytes_in 0 118208 station_ip 5.119.183.75 118208 port 122 118208 unique_id port 118208 remote_ip 10.8.0.26 118215 username mirzaei 118215 kill_reason Another user logged on this global unique id 118215 mac 118215 bytes_out 0 118215 bytes_in 0 118215 station_ip 5.120.27.233 118215 port 141 118215 unique_id port 118216 username ehsun 118216 mac 118216 bytes_out 0 118216 bytes_in 0 118216 station_ip 83.122.130.229 118216 port 142 118216 unique_id port 118216 remote_ip 10.8.0.162 118222 username alirr 118222 unique_id port 118222 terminate_cause User-Request 118222 bytes_out 25087032 118222 bytes_in 597886009 118222 station_ip 37.27.9.130 118222 port 15729592 118222 nas_port_type Virtual 118222 remote_ip 5.5.5.216 118224 username tahmasebi 118224 kill_reason Another user logged on this global unique id 118224 mac 118224 bytes_out 0 118224 bytes_in 0 118224 station_ip 5.119.132.27 118224 port 137 118224 unique_id port 118228 username farhad1 118228 mac 118228 bytes_out 0 118228 bytes_in 0 118228 station_ip 5.119.183.75 118228 port 122 118228 unique_id port 118228 remote_ip 10.8.0.26 118232 username milan 118232 kill_reason Another user logged on this global unique id 118232 mac 118232 bytes_out 0 118232 bytes_in 0 118232 station_ip 5.119.114.249 118232 port 141 118232 unique_id port 118237 username sabaghnezhad 118237 mac 118237 bytes_out 0 118237 bytes_in 0 118237 station_ip 37.129.74.231 118237 port 156 118237 unique_id port 118237 remote_ip 10.8.0.186 118242 username milan 118242 kill_reason Another user logged on this global unique id 118242 mac 118242 bytes_out 0 118242 bytes_in 0 118242 station_ip 5.119.114.249 118242 port 141 118242 unique_id port 118243 username milan 118243 kill_reason Another user logged on this global unique id 118243 mac 118243 bytes_out 0 118243 bytes_in 0 118243 station_ip 5.119.114.249 118243 port 141 118243 unique_id port 118199 unique_id port 118201 username khalili 118201 mac 118201 bytes_out 1804998 118201 bytes_in 13160057 118201 station_ip 5.119.105.212 118201 port 142 118201 unique_id port 118201 remote_ip 10.8.0.86 118203 username farhad1 118203 mac 118203 bytes_out 0 118203 bytes_in 0 118203 station_ip 5.119.183.75 118203 port 122 118203 unique_id port 118205 username tahmasebi 118205 kill_reason Another user logged on this global unique id 118205 mac 118205 bytes_out 0 118205 bytes_in 0 118205 station_ip 5.119.132.27 118205 port 137 118205 unique_id port 118206 username alirezazadeh 118206 unique_id port 118206 terminate_cause User-Request 118206 bytes_out 86 118206 bytes_in 108 118206 station_ip 5.119.98.43 118206 port 15729593 118206 nas_port_type Virtual 118206 remote_ip 5.5.5.220 118209 username mirzaei 118209 kill_reason Another user logged on this global unique id 118209 mac 118209 bytes_out 0 118209 bytes_in 0 118209 station_ip 5.120.27.233 118209 port 141 118209 unique_id port 118209 remote_ip 10.8.0.66 118210 username farhad1 118210 kill_reason Another user logged on this global unique id 118210 mac 118210 bytes_out 0 118210 bytes_in 0 118210 station_ip 5.119.183.75 118210 port 122 118210 unique_id port 118211 username tahmasebi 118211 kill_reason Maximum check online fails reached 118211 mac 118211 bytes_out 0 118211 bytes_in 0 118211 station_ip 5.119.132.27 118211 port 137 118211 unique_id port 118214 username zare 118214 mac 118214 bytes_out 0 118214 bytes_in 0 118214 station_ip 37.27.38.78 118214 port 148 118214 unique_id port 118219 username tahmasebi 118219 kill_reason Another user logged on this global unique id 118219 mac 118219 bytes_out 0 118219 bytes_in 0 118219 station_ip 5.119.132.27 118219 port 137 118219 unique_id port 118226 username tahmasebi 118226 kill_reason Another user logged on this global unique id 118226 mac 118226 bytes_out 0 118226 bytes_in 0 118226 station_ip 5.119.132.27 118226 port 137 118226 unique_id port 118229 username tahmasebi 118229 kill_reason Another user logged on this global unique id 118229 mac 118229 bytes_out 0 118229 bytes_in 0 118229 station_ip 5.119.132.27 118229 port 137 118229 unique_id port 118233 username milan 118233 kill_reason Another user logged on this global unique id 118233 mac 118233 bytes_out 0 118233 bytes_in 0 118233 station_ip 5.119.114.249 118233 port 141 118233 unique_id port 118234 username farhad1 118234 mac 118234 bytes_out 0 118234 bytes_in 0 118234 station_ip 5.119.166.119 118234 port 122 118234 unique_id port 118234 remote_ip 10.8.0.26 118236 username sedighe 118236 mac 118236 bytes_out 83148 118236 bytes_in 66436 118236 station_ip 83.122.74.102 118236 port 148 118236 unique_id port 118236 remote_ip 10.8.0.146 118240 username milan 118240 kill_reason Another user logged on this global unique id 118240 mac 118240 bytes_out 0 118240 bytes_in 0 118240 station_ip 5.119.114.249 118240 port 141 118240 unique_id port 118245 username sedighe 118245 mac 118245 bytes_out 48342 118245 bytes_in 57626 118245 station_ip 83.122.74.102 118245 port 122 118245 unique_id port 118245 remote_ip 10.8.0.146 118246 username afarin1 118246 mac 118246 bytes_out 0 118246 bytes_in 0 118246 station_ip 37.129.137.76 118246 port 157 118246 unique_id port 118246 remote_ip 10.8.0.118 118249 username sedighe 118249 mac 118249 bytes_out 0 118249 bytes_in 0 118249 station_ip 83.122.74.102 118249 port 142 118249 unique_id port 118249 remote_ip 10.8.0.146 118256 username morteza 118256 mac 118256 bytes_out 2492494 118256 bytes_in 43102156 118235 bytes_in 0 118235 station_ip 5.119.88.140 118235 port 122 118235 unique_id port 118235 remote_ip 10.8.0.26 118238 username milan 118238 kill_reason Another user logged on this global unique id 118238 mac 118238 bytes_out 0 118238 bytes_in 0 118238 station_ip 5.119.114.249 118238 port 141 118238 unique_id port 118239 username sedighe 118239 mac 118239 bytes_out 0 118239 bytes_in 0 118239 station_ip 83.122.74.102 118239 port 122 118239 unique_id port 118239 remote_ip 10.8.0.146 118241 username milan 118241 kill_reason Another user logged on this global unique id 118241 mac 118241 bytes_out 0 118241 bytes_in 0 118241 station_ip 5.119.114.249 118241 port 141 118241 unique_id port 118247 username mehdizare 118247 mac 118247 bytes_out 6313574 118247 bytes_in 46154062 118247 station_ip 5.119.203.243 118247 port 140 118247 unique_id port 118247 remote_ip 10.8.0.90 118248 username mehdizare 118248 mac 118248 bytes_out 0 118248 bytes_in 0 118248 station_ip 5.119.203.243 118248 port 65 118248 unique_id port 118248 remote_ip 10.8.1.42 118250 username morteza 118250 mac 118250 bytes_out 0 118250 bytes_in 0 118250 station_ip 83.123.230.116 118250 port 122 118250 unique_id port 118250 remote_ip 10.8.0.46 118251 username mehdizare 118251 mac 118251 bytes_out 0 118251 bytes_in 0 118251 station_ip 5.119.203.243 118251 port 65 118251 unique_id port 118251 remote_ip 10.8.1.42 118252 username sedighe 118252 mac 118252 bytes_out 0 118252 bytes_in 0 118252 station_ip 83.123.47.159 118252 port 140 118252 unique_id port 118252 remote_ip 10.8.0.146 118253 username mehdizare 118253 mac 118253 bytes_out 0 118253 bytes_in 0 118253 station_ip 5.119.203.243 118253 port 65 118253 unique_id port 118253 remote_ip 10.8.1.42 118257 username sedighe 118257 mac 118257 bytes_out 0 118257 bytes_in 0 118257 station_ip 83.122.104.158 118257 port 142 118257 unique_id port 118257 remote_ip 10.8.0.146 118268 username mehdizare 118268 mac 118268 bytes_out 0 118268 bytes_in 0 118268 station_ip 5.119.203.243 118268 port 140 118268 unique_id port 118268 remote_ip 10.8.0.90 118272 username mehdizare 118272 mac 118272 bytes_out 0 118272 bytes_in 0 118272 station_ip 5.119.203.243 118272 port 157 118272 unique_id port 118272 remote_ip 10.8.0.90 118273 username avaanna 118273 mac 118273 bytes_out 0 118273 bytes_in 0 118273 station_ip 37.129.43.70 118273 port 142 118273 unique_id port 118273 remote_ip 10.8.0.98 118274 username forozande 118274 mac 118274 bytes_out 2014609 118274 bytes_in 32513987 118274 station_ip 83.123.142.242 118274 port 148 118274 unique_id port 118274 remote_ip 10.8.0.74 118278 username houshang 118278 mac 118278 bytes_out 0 118278 bytes_in 0 118278 station_ip 5.119.175.133 118278 port 148 118278 unique_id port 118278 remote_ip 10.8.0.22 118279 username Mahin 118279 mac 118279 bytes_out 0 118279 bytes_in 0 118279 station_ip 5.119.20.46 118279 port 148 118279 unique_id port 118279 remote_ip 10.8.0.222 118280 username farhad1 118280 mac 118280 bytes_out 0 118280 bytes_in 0 118280 station_ip 5.119.112.140 118280 port 142 118280 unique_id port 118280 remote_ip 10.8.0.26 118281 username mahdiyehalizadeh 118281 mac 118281 bytes_out 0 118281 bytes_in 0 118281 station_ip 113.203.20.175 118281 port 157 118281 unique_id port 118281 remote_ip 10.8.0.82 118288 username farhad1 118288 mac 118288 bytes_out 0 118288 bytes_in 0 118288 station_ip 5.119.137.55 118288 port 142 118244 username sedighe 118244 mac 118244 bytes_out 0 118244 bytes_in 0 118244 station_ip 83.122.74.102 118244 port 142 118244 unique_id port 118244 remote_ip 10.8.0.146 118254 username sedighe 118254 mac 118254 bytes_out 0 118254 bytes_in 0 118254 station_ip 83.123.47.159 118254 port 142 118254 unique_id port 118254 remote_ip 10.8.0.146 118255 username sedighe 118255 mac 118255 bytes_out 0 118255 bytes_in 0 118255 station_ip 83.123.47.159 118255 port 148 118255 unique_id port 118255 remote_ip 10.8.0.146 118258 username sedighe 118258 mac 118258 bytes_out 0 118258 bytes_in 0 118258 station_ip 83.122.104.158 118258 port 122 118258 unique_id port 118258 remote_ip 10.8.0.146 118260 username morteza 118260 mac 118260 bytes_out 12000167 118260 bytes_in 3061592 118260 station_ip 94.241.179.126 118260 port 122 118260 unique_id port 118260 remote_ip 10.8.0.46 118261 username sedighe 118261 mac 118261 bytes_out 0 118261 bytes_in 0 118261 station_ip 83.122.104.158 118261 port 142 118261 unique_id port 118261 remote_ip 10.8.0.146 118263 username morteza 118263 mac 118263 bytes_out 0 118263 bytes_in 0 118263 station_ip 5.119.102.182 118263 port 122 118263 unique_id port 118263 remote_ip 10.8.0.46 118265 username ahmadi 118265 kill_reason Relative expiration date has reached 118265 unique_id port 118265 bytes_out 0 118265 bytes_in 0 118265 station_ip 83.122.24.3 118265 port 15729596 118265 nas_port_type Virtual 118266 username mohammadjavad 118266 mac 118266 bytes_out 0 118266 bytes_in 0 118266 station_ip 83.122.93.82 118266 port 122 118266 unique_id port 118266 remote_ip 10.8.0.142 118267 username sedighe 118267 mac 118267 bytes_out 0 118267 bytes_in 0 118267 station_ip 83.122.203.224 118267 port 148 118267 unique_id port 118267 remote_ip 10.8.0.146 118269 username sedighe 118269 mac 118269 bytes_out 0 118269 bytes_in 0 118269 station_ip 83.122.203.224 118269 port 122 118269 unique_id port 118269 remote_ip 10.8.0.146 118271 username sedighe 118271 mac 118271 bytes_out 0 118271 bytes_in 0 118271 station_ip 83.122.203.224 118271 port 156 118271 unique_id port 118271 remote_ip 10.8.0.146 118275 username alirr 118275 unique_id port 118275 terminate_cause Lost-Carrier 118275 bytes_out 161427 118275 bytes_in 388393 118275 station_ip 5.119.64.13 118275 port 15729597 118275 nas_port_type Virtual 118275 remote_ip 5.5.5.226 118283 username milan 118283 mac 118283 bytes_out 0 118283 bytes_in 0 118283 station_ip 5.119.114.249 118283 port 141 118283 unique_id port 118285 username mirzaei 118285 kill_reason Another user logged on this global unique id 118285 mac 118285 bytes_out 0 118285 bytes_in 0 118285 station_ip 5.119.152.48 118285 port 140 118285 unique_id port 118287 username sabaghnezhad 118287 mac 118287 bytes_out 0 118287 bytes_in 0 118287 station_ip 37.129.244.101 118287 port 122 118287 unique_id port 118287 remote_ip 10.8.0.186 118289 username avaanna 118289 mac 118289 bytes_out 0 118289 bytes_in 0 118289 station_ip 113.203.80.81 118289 port 148 118289 unique_id port 118289 remote_ip 10.8.0.98 118291 username mirzaei 118291 kill_reason Another user logged on this global unique id 118291 mac 118291 bytes_out 0 118291 bytes_in 0 118291 station_ip 5.119.152.48 118291 port 140 118291 unique_id port 118292 username forozande 118292 mac 118292 bytes_out 0 118292 bytes_in 0 118292 station_ip 83.123.98.73 118292 port 148 118292 unique_id port 118292 remote_ip 10.8.0.74 118293 username musa 118256 station_ip 83.123.230.116 118256 port 122 118256 unique_id port 118256 remote_ip 10.8.0.46 118259 username sedighe 118259 mac 118259 bytes_out 0 118259 bytes_in 0 118259 station_ip 83.122.104.158 118259 port 142 118259 unique_id port 118259 remote_ip 10.8.0.146 118262 username morteza 118262 mac 118262 bytes_out 0 118262 bytes_in 0 118262 station_ip 94.241.179.126 118262 port 122 118262 unique_id port 118262 remote_ip 10.8.0.46 118264 username tahmasebi 118264 kill_reason Maximum check online fails reached 118264 mac 118264 bytes_out 0 118264 bytes_in 0 118264 station_ip 5.119.132.27 118264 port 137 118264 unique_id port 118270 username mehdizare 118270 mac 118270 bytes_out 0 118270 bytes_in 0 118270 station_ip 5.119.203.243 118270 port 148 118270 unique_id port 118270 remote_ip 10.8.0.90 118276 username mirzaei 118276 kill_reason Another user logged on this global unique id 118276 mac 118276 bytes_out 0 118276 bytes_in 0 118276 station_ip 5.119.152.48 118276 port 140 118276 unique_id port 118276 remote_ip 10.8.0.66 118277 username mirzaei 118277 kill_reason Another user logged on this global unique id 118277 mac 118277 bytes_out 0 118277 bytes_in 0 118277 station_ip 5.119.152.48 118277 port 140 118277 unique_id port 118282 username mirzaei 118282 kill_reason Another user logged on this global unique id 118282 mac 118282 bytes_out 0 118282 bytes_in 0 118282 station_ip 5.119.152.48 118282 port 140 118282 unique_id port 118284 username musa 118284 mac 118284 bytes_out 0 118284 bytes_in 0 118284 station_ip 83.123.65.154 118284 port 156 118284 unique_id port 118284 remote_ip 10.8.0.6 118286 username jamali 118286 mac 118286 bytes_out 0 118286 bytes_in 0 118286 station_ip 5.120.158.223 118286 port 151 118286 unique_id port 118294 username rostami 118294 mac 118294 bytes_out 1039671 118294 bytes_in 6241785 118294 station_ip 5.120.158.92 118294 port 68 118294 unique_id port 118294 remote_ip 10.8.1.142 118297 username jamali 118297 kill_reason Another user logged on this global unique id 118297 mac 118297 bytes_out 0 118297 bytes_in 0 118297 station_ip 5.120.158.223 118297 port 156 118297 unique_id port 118297 remote_ip 10.8.0.150 118300 username avaanna 118300 kill_reason Another user logged on this global unique id 118300 mac 118300 bytes_out 0 118300 bytes_in 0 118300 station_ip 113.203.87.62 118300 port 142 118300 unique_id port 118305 username mohammadjavad 118305 mac 118305 bytes_out 0 118305 bytes_in 0 118305 station_ip 83.123.55.246 118305 port 151 118305 unique_id port 118305 remote_ip 10.8.0.142 118306 username ehsun 118306 mac 118306 bytes_out 0 118306 bytes_in 0 118306 station_ip 83.122.239.49 118306 port 141 118306 unique_id port 118306 remote_ip 10.8.0.162 118307 username jamali 118307 mac 118307 bytes_out 0 118307 bytes_in 0 118307 station_ip 5.120.158.223 118307 port 156 118307 unique_id port 118311 username alipour 118311 mac 118311 bytes_out 0 118311 bytes_in 0 118311 station_ip 37.129.93.196 118311 port 148 118311 unique_id port 118311 remote_ip 10.8.0.102 118312 username rostami 118312 mac 118312 bytes_out 14188 118312 bytes_in 68513 118312 station_ip 5.120.158.92 118312 port 69 118312 unique_id port 118312 remote_ip 10.8.1.142 118314 username sabaghnezhad 118314 mac 118314 bytes_out 32850 118314 bytes_in 51434 118314 station_ip 37.129.244.101 118314 port 67 118314 unique_id port 118314 remote_ip 10.8.1.130 118316 username rostami 118316 mac 118316 bytes_out 211184 118316 bytes_in 397820 118288 unique_id port 118288 remote_ip 10.8.0.26 118290 username malekpoir 118290 kill_reason Another user logged on this global unique id 118290 mac 118290 bytes_out 0 118290 bytes_in 0 118290 station_ip 5.119.237.28 118290 port 65 118290 unique_id port 118290 remote_ip 10.8.1.54 118295 username forozande 118295 mac 118295 bytes_out 0 118295 bytes_in 0 118295 station_ip 37.129.196.155 118295 port 148 118295 unique_id port 118295 remote_ip 10.8.0.74 118298 username rostami 118298 mac 118298 bytes_out 724979 118298 bytes_in 5401880 118298 station_ip 5.120.158.92 118298 port 68 118298 unique_id port 118298 remote_ip 10.8.1.142 118301 username forozande 118301 mac 118301 bytes_out 0 118301 bytes_in 0 118301 station_ip 83.122.162.23 118301 port 148 118301 unique_id port 118301 remote_ip 10.8.0.74 118302 username alihosseini1 118302 mac 118302 bytes_out 0 118302 bytes_in 0 118302 station_ip 5.119.113.184 118302 port 141 118302 unique_id port 118302 remote_ip 10.8.0.166 118303 username alihosseini1 118303 mac 118303 bytes_out 0 118303 bytes_in 0 118303 station_ip 5.120.106.56 118303 port 68 118303 unique_id port 118303 remote_ip 10.8.1.106 118308 username rostami 118308 mac 118308 bytes_out 33973 118308 bytes_in 36415 118308 station_ip 5.120.158.92 118308 port 68 118308 unique_id port 118308 remote_ip 10.8.1.142 118309 username sabaghnezhad 118309 mac 118309 bytes_out 0 118309 bytes_in 0 118309 station_ip 37.129.244.101 118309 port 67 118309 unique_id port 118309 remote_ip 10.8.1.130 118310 username forozande 118310 mac 118310 bytes_out 0 118310 bytes_in 0 118310 station_ip 83.122.199.107 118310 port 151 118310 unique_id port 118310 remote_ip 10.8.0.74 118313 username jamali 118313 mac 118313 bytes_out 20651 118313 bytes_in 18066 118313 station_ip 5.120.158.223 118313 port 68 118313 unique_id port 118313 remote_ip 10.8.1.82 118318 username sedighe 118318 mac 118318 bytes_out 0 118318 bytes_in 0 118318 station_ip 37.129.233.160 118318 port 160 118318 unique_id port 118318 remote_ip 10.8.0.146 118319 username alihosseini1 118319 mac 118319 bytes_out 0 118319 bytes_in 0 118319 station_ip 5.120.106.56 118319 port 67 118319 unique_id port 118319 remote_ip 10.8.1.106 118322 username alihosseini1 118322 mac 118322 bytes_out 0 118322 bytes_in 0 118322 station_ip 5.120.106.56 118322 port 160 118322 unique_id port 118322 remote_ip 10.8.0.166 118325 username musa 118325 mac 118325 bytes_out 0 118325 bytes_in 0 118325 station_ip 83.122.104.84 118325 port 157 118325 unique_id port 118325 remote_ip 10.8.0.6 118326 username alihosseini1 118326 mac 118326 bytes_out 0 118326 bytes_in 0 118326 station_ip 5.120.106.56 118326 port 141 118326 unique_id port 118326 remote_ip 10.8.0.166 118328 username forozande 118328 kill_reason Another user logged on this global unique id 118328 mac 118328 bytes_out 0 118328 bytes_in 0 118328 station_ip 37.129.6.205 118328 port 156 118328 unique_id port 118328 remote_ip 10.8.0.74 118331 username forozande 118331 mac 118331 bytes_out 0 118331 bytes_in 0 118331 station_ip 37.129.6.205 118331 port 156 118331 unique_id port 118332 username alihosseini1 118332 mac 118332 bytes_out 0 118332 bytes_in 0 118332 station_ip 5.120.106.56 118332 port 156 118332 unique_id port 118332 remote_ip 10.8.0.166 118334 username avaanna 118334 mac 118334 bytes_out 0 118334 bytes_in 0 118334 station_ip 113.203.87.62 118334 port 142 118334 unique_id port 118293 mac 118293 bytes_out 0 118293 bytes_in 0 118293 station_ip 83.123.26.238 118293 port 122 118293 unique_id port 118293 remote_ip 10.8.0.6 118296 username alipour 118296 mac 118296 bytes_out 1159002 118296 bytes_in 16191708 118296 station_ip 113.203.127.135 118296 port 141 118296 unique_id port 118296 remote_ip 10.8.0.102 118299 username avaanna 118299 kill_reason Another user logged on this global unique id 118299 mac 118299 bytes_out 0 118299 bytes_in 0 118299 station_ip 113.203.87.62 118299 port 142 118299 unique_id port 118299 remote_ip 10.8.0.98 118304 username alipour 118304 mac 118304 bytes_out 51957 118304 bytes_in 52462 118304 station_ip 37.129.93.196 118304 port 141 118304 unique_id port 118304 remote_ip 10.8.0.102 118315 username forozande 118315 mac 118315 bytes_out 0 118315 bytes_in 0 118315 station_ip 83.123.139.14 118315 port 156 118315 unique_id port 118315 remote_ip 10.8.0.74 118317 username sedighe 118317 mac 118317 bytes_out 0 118317 bytes_in 0 118317 station_ip 37.129.233.160 118317 port 141 118317 unique_id port 118317 remote_ip 10.8.0.146 118320 username aminvpn 118320 unique_id port 118320 terminate_cause Lost-Carrier 118320 bytes_out 958300 118320 bytes_in 7932580 118320 station_ip 5.125.50.39 118320 port 15729598 118320 nas_port_type Virtual 118320 remote_ip 5.5.5.230 118323 username sedighe 118323 mac 118323 bytes_out 0 118323 bytes_in 0 118323 station_ip 83.122.22.208 118323 port 141 118323 unique_id port 118323 remote_ip 10.8.0.146 118324 username rostami 118324 mac 118324 bytes_out 0 118324 bytes_in 0 118324 station_ip 5.120.158.92 118324 port 67 118324 unique_id port 118324 remote_ip 10.8.1.142 118327 username sedighe 118327 mac 118327 bytes_out 23405 118327 bytes_in 22414 118327 station_ip 37.129.91.51 118327 port 160 118327 unique_id port 118327 remote_ip 10.8.0.146 118329 username sedighe 118329 mac 118329 bytes_out 50070 118329 bytes_in 69301 118329 station_ip 37.129.66.138 118329 port 141 118329 unique_id port 118329 remote_ip 10.8.0.146 118330 username Mahin 118330 mac 118330 bytes_out 0 118330 bytes_in 0 118330 station_ip 5.119.20.46 118330 port 159 118330 unique_id port 118330 remote_ip 10.8.0.222 118333 username jamali 118333 mac 118333 bytes_out 921586 118333 bytes_in 10428527 118333 station_ip 5.120.158.223 118333 port 68 118333 unique_id port 118333 remote_ip 10.8.1.82 118336 username sabaghnezhad 118336 mac 118336 bytes_out 0 118336 bytes_in 0 118336 station_ip 37.129.19.88 118336 port 157 118336 unique_id port 118336 remote_ip 10.8.0.186 118341 username jamali 118341 mac 118341 bytes_out 88051 118341 bytes_in 149626 118341 station_ip 5.120.158.223 118341 port 67 118341 unique_id port 118341 remote_ip 10.8.1.82 118343 username sedighe 118343 mac 118343 bytes_out 0 118343 bytes_in 0 118343 station_ip 83.123.200.160 118343 port 160 118343 unique_id port 118343 remote_ip 10.8.0.146 118344 username forozande 118344 mac 118344 bytes_out 0 118344 bytes_in 0 118344 station_ip 83.122.6.239 118344 port 142 118344 unique_id port 118344 remote_ip 10.8.0.74 118345 username sedighe 118345 mac 118345 bytes_out 80487 118345 bytes_in 105043 118345 station_ip 83.123.200.160 118345 port 157 118345 unique_id port 118345 remote_ip 10.8.0.146 118347 username alihosseini1 118347 mac 118347 bytes_out 0 118347 bytes_in 0 118347 station_ip 5.120.106.56 118347 port 157 118347 unique_id port 118347 remote_ip 10.8.0.166 118316 station_ip 5.120.158.92 118316 port 67 118316 unique_id port 118316 remote_ip 10.8.1.142 118321 username alihosseini1 118321 mac 118321 bytes_out 0 118321 bytes_in 0 118321 station_ip 5.120.106.56 118321 port 160 118321 unique_id port 118321 remote_ip 10.8.0.166 118337 username sedighe 118337 mac 118337 bytes_out 26831 118337 bytes_in 28720 118337 station_ip 37.129.87.13 118337 port 159 118337 unique_id port 118337 remote_ip 10.8.0.146 118339 username mostafa_es78 118339 unique_id port 118339 terminate_cause Lost-Carrier 118339 bytes_out 3276779 118339 bytes_in 29830991 118339 station_ip 5.125.27.179 118339 port 15729601 118339 nas_port_type Virtual 118339 remote_ip 5.5.5.235 118342 username sedighe 118342 mac 118342 bytes_out 0 118342 bytes_in 0 118342 station_ip 83.123.200.160 118342 port 157 118342 unique_id port 118342 remote_ip 10.8.0.146 118348 username alihosseini1 118348 mac 118348 bytes_out 0 118348 bytes_in 0 118348 station_ip 5.120.106.56 118348 port 68 118348 unique_id port 118348 remote_ip 10.8.1.106 118351 username avaanna 118351 mac 118351 bytes_out 825045 118351 bytes_in 15134051 118351 station_ip 113.203.87.62 118351 port 156 118351 unique_id port 118351 remote_ip 10.8.0.98 118354 username alihosseini1 118354 mac 118354 bytes_out 0 118354 bytes_in 0 118354 station_ip 5.120.106.56 118354 port 157 118354 unique_id port 118354 remote_ip 10.8.0.166 118364 username alihosseini1 118364 mac 118364 bytes_out 0 118364 bytes_in 0 118364 station_ip 5.120.106.56 118364 port 69 118364 unique_id port 118364 remote_ip 10.8.1.106 118367 username sedighe 118367 mac 118367 bytes_out 41214 118367 bytes_in 23549 118367 station_ip 37.129.67.208 118367 port 157 118367 unique_id port 118367 remote_ip 10.8.0.146 118370 username zare 118370 kill_reason Another user logged on this global unique id 118370 mac 118370 bytes_out 0 118370 bytes_in 0 118370 station_ip 94.183.214.14 118370 port 159 118370 unique_id port 118371 username alihosseini1 118371 mac 118371 bytes_out 0 118371 bytes_in 0 118371 station_ip 5.120.106.56 118371 port 69 118371 unique_id port 118371 remote_ip 10.8.1.106 118372 username musa 118372 kill_reason Another user logged on this global unique id 118372 mac 118372 bytes_out 0 118372 bytes_in 0 118372 station_ip 83.122.26.148 118372 port 142 118372 unique_id port 118375 username kordestani 118375 mac 118375 bytes_out 824892 118375 bytes_in 8586423 118375 station_ip 151.235.121.248 118375 port 162 118375 unique_id port 118375 remote_ip 10.8.0.134 118386 username alihosseini1 118386 mac 118386 bytes_out 0 118386 bytes_in 0 118386 station_ip 5.120.106.56 118386 port 72 118386 unique_id port 118386 remote_ip 10.8.1.106 118387 username ahmadi 118387 kill_reason Relative expiration date has reached 118387 unique_id port 118387 bytes_out 0 118387 bytes_in 0 118387 station_ip 83.122.81.189 118387 port 15729606 118387 nas_port_type Virtual 118390 username jamali 118390 mac 118390 bytes_out 34199 118390 bytes_in 80613 118390 station_ip 5.120.158.223 118390 port 67 118390 unique_id port 118390 remote_ip 10.8.1.82 118392 username alihosseini1 118392 mac 118392 bytes_out 0 118392 bytes_in 0 118392 station_ip 5.120.106.56 118392 port 151 118392 unique_id port 118392 remote_ip 10.8.0.166 118394 username alihosseini1 118394 mac 118394 bytes_out 0 118394 bytes_in 0 118394 station_ip 5.120.106.56 118394 port 151 118394 unique_id port 118394 remote_ip 10.8.0.166 118395 username zare 118395 mac 118395 bytes_out 845535 118335 username sedighe 118335 mac 118335 bytes_out 68419 118335 bytes_in 82804 118335 station_ip 37.129.66.138 118335 port 157 118335 unique_id port 118335 remote_ip 10.8.0.146 118338 username alihosseini1 118338 mac 118338 bytes_out 0 118338 bytes_in 0 118338 station_ip 5.120.106.56 118338 port 142 118338 unique_id port 118338 remote_ip 10.8.0.166 118340 username sabaghnezhad 118340 mac 118340 bytes_out 27066 118340 bytes_in 59542 118340 station_ip 37.129.19.88 118340 port 160 118340 unique_id port 118340 remote_ip 10.8.0.186 118346 username alihosseini1 118346 mac 118346 bytes_out 0 118346 bytes_in 0 118346 station_ip 5.120.106.56 118346 port 157 118346 unique_id port 118346 remote_ip 10.8.0.166 118350 username jamali 118350 mac 118350 bytes_out 22983 118350 bytes_in 24204 118350 station_ip 5.120.158.223 118350 port 67 118350 unique_id port 118350 remote_ip 10.8.1.82 118352 username sedighe 118352 mac 118352 bytes_out 0 118352 bytes_in 0 118352 station_ip 37.129.67.208 118352 port 142 118352 unique_id port 118352 remote_ip 10.8.0.146 118355 username sedighe 118355 mac 118355 bytes_out 250840 118355 bytes_in 8647781 118355 station_ip 37.129.67.208 118355 port 156 118355 unique_id port 118355 remote_ip 10.8.0.146 118357 username mostafa_es78 118357 unique_id port 118357 terminate_cause User-Request 118357 bytes_out 394502 118357 bytes_in 838565 118357 station_ip 5.125.27.179 118357 port 15729603 118357 nas_port_type Virtual 118357 remote_ip 5.5.5.255 118359 username musa 118359 kill_reason Another user logged on this global unique id 118359 mac 118359 bytes_out 0 118359 bytes_in 0 118359 station_ip 83.122.26.148 118359 port 142 118359 unique_id port 118359 remote_ip 10.8.0.6 118360 username rostami 118360 mac 118360 bytes_out 351538 118360 bytes_in 1108281 118360 station_ip 5.120.158.92 118360 port 69 118360 unique_id port 118360 remote_ip 10.8.1.142 118361 username jamali 118361 mac 118361 bytes_out 0 118361 bytes_in 0 118361 station_ip 5.120.158.223 118361 port 67 118361 unique_id port 118361 remote_ip 10.8.1.82 118366 username zare 118366 kill_reason Another user logged on this global unique id 118366 mac 118366 bytes_out 0 118366 bytes_in 0 118366 station_ip 94.183.214.14 118366 port 159 118366 unique_id port 118366 remote_ip 10.8.0.18 118374 username mohammadjavad 118374 mac 118374 bytes_out 65181 118374 bytes_in 201749 118374 station_ip 83.122.82.230 118374 port 157 118374 unique_id port 118374 remote_ip 10.8.0.142 118376 username alihosseini1 118376 kill_reason Maximum check online fails reached 118376 mac 118376 bytes_out 0 118376 bytes_in 0 118376 station_ip 5.120.106.56 118376 port 69 118376 unique_id port 118377 username malekpoir 118377 kill_reason Another user logged on this global unique id 118377 mac 118377 bytes_out 0 118377 bytes_in 0 118377 station_ip 5.119.237.28 118377 port 65 118377 unique_id port 118380 username alihosseini1 118380 mac 118380 bytes_out 0 118380 bytes_in 0 118380 station_ip 5.120.106.56 118380 port 70 118380 unique_id port 118380 remote_ip 10.8.1.106 118383 username alihosseini1 118383 mac 118383 bytes_out 4854 118383 bytes_in 6126 118383 station_ip 5.120.106.56 118383 port 142 118383 unique_id port 118383 remote_ip 10.8.0.166 118388 username alihosseini1 118388 mac 118388 bytes_out 0 118388 bytes_in 0 118388 station_ip 5.120.106.56 118388 port 142 118388 unique_id port 118388 remote_ip 10.8.0.166 118398 username alihosseini1 118398 mac 118398 bytes_out 0 118398 bytes_in 0 118349 username amir 118349 mac 118349 bytes_out 4212312 118349 bytes_in 12636323 118349 station_ip 46.225.211.139 118349 port 148 118349 unique_id port 118349 remote_ip 10.8.0.50 118353 username sabaghnezhad 118353 mac 118353 bytes_out 47836 118353 bytes_in 76719 118353 station_ip 37.129.19.88 118353 port 159 118353 unique_id port 118353 remote_ip 10.8.0.186 118356 username bcboard 118356 unique_id port 118356 terminate_cause Lost-Carrier 118356 bytes_out 762093 118356 bytes_in 5388288 118356 station_ip 83.122.132.76 118356 port 15729604 118356 nas_port_type Virtual 118356 remote_ip 5.5.5.198 118358 username rezasekonji 118358 mac 118358 bytes_out 0 118358 bytes_in 0 118358 station_ip 113.203.55.113 118358 port 156 118358 unique_id port 118358 remote_ip 10.8.0.130 118362 username alihosseini1 118362 mac 118362 bytes_out 0 118362 bytes_in 0 118362 station_ip 5.120.106.56 118362 port 157 118362 unique_id port 118362 remote_ip 10.8.0.166 118363 username sedighe 118363 mac 118363 bytes_out 11628 118363 bytes_in 16931 118363 station_ip 37.129.67.208 118363 port 156 118363 unique_id port 118363 remote_ip 10.8.0.146 118365 username alihosseini1 118365 kill_reason Maximum check online fails reached 118365 mac 118365 bytes_out 0 118365 bytes_in 0 118365 station_ip 5.120.106.56 118365 port 156 118365 unique_id port 118368 username zare 118368 kill_reason Another user logged on this global unique id 118368 mac 118368 bytes_out 0 118368 bytes_in 0 118368 station_ip 94.183.214.14 118368 port 159 118368 unique_id port 118369 username alihosseini1 118369 mac 118369 bytes_out 0 118369 bytes_in 0 118369 station_ip 5.120.106.56 118369 port 69 118369 unique_id port 118369 remote_ip 10.8.1.106 118373 username zare 118373 mac 118373 bytes_out 0 118373 bytes_in 0 118373 station_ip 94.183.214.14 118373 port 159 118373 unique_id port 118378 username kordestani 118378 mac 118378 bytes_out 57033 118378 bytes_in 324787 118378 station_ip 151.235.121.248 118378 port 157 118378 unique_id port 118378 remote_ip 10.8.0.134 118379 username musa 118379 mac 118379 bytes_out 0 118379 bytes_in 0 118379 station_ip 83.122.26.148 118379 port 142 118379 unique_id port 118381 username alihosseini1 118381 mac 118381 bytes_out 0 118381 bytes_in 0 118381 station_ip 5.120.106.56 118381 port 142 118381 unique_id port 118381 remote_ip 10.8.0.166 118382 username alihosseini1 118382 kill_reason Maximum check online fails reached 118382 mac 118382 bytes_out 0 118382 bytes_in 0 118382 station_ip 5.120.106.56 118382 port 70 118382 unique_id port 118384 username sedighe 118384 mac 118384 bytes_out 0 118384 bytes_in 0 118384 station_ip 37.129.67.208 118384 port 160 118384 unique_id port 118384 remote_ip 10.8.0.146 118385 username jamali 118385 mac 118385 bytes_out 0 118385 bytes_in 0 118385 station_ip 5.120.158.223 118385 port 67 118385 unique_id port 118385 remote_ip 10.8.1.82 118389 username alipour 118389 mac 118389 bytes_out 856014 118389 bytes_in 12688937 118389 station_ip 37.129.93.196 118389 port 151 118389 unique_id port 118389 remote_ip 10.8.0.102 118391 username khalili 118391 kill_reason Another user logged on this global unique id 118391 mac 118391 bytes_out 0 118391 bytes_in 0 118391 station_ip 5.120.15.195 118391 port 122 118391 unique_id port 118391 remote_ip 10.8.0.86 118393 username sabaghnezhad 118393 mac 118393 bytes_out 0 118393 bytes_in 0 118393 station_ip 37.129.19.88 118393 port 68 118393 unique_id port 118393 remote_ip 10.8.1.130 118395 bytes_in 15368457 118395 station_ip 94.183.214.14 118395 port 159 118395 unique_id port 118395 remote_ip 10.8.0.18 118396 username aminvpn 118396 unique_id port 118396 terminate_cause Lost-Carrier 118396 bytes_out 182123 118396 bytes_in 797480 118396 station_ip 5.126.242.57 118396 port 15729607 118396 nas_port_type Virtual 118396 remote_ip 5.5.5.210 118400 username alihosseini1 118400 mac 118400 bytes_out 0 118400 bytes_in 0 118400 station_ip 5.120.106.56 118400 port 67 118400 unique_id port 118400 remote_ip 10.8.1.106 118402 username amir 118402 mac 118402 bytes_out 6359864 118402 bytes_in 39608303 118402 station_ip 46.225.211.139 118402 port 148 118402 unique_id port 118402 remote_ip 10.8.0.50 118405 username jamali 118405 mac 118405 bytes_out 24941 118405 bytes_in 41911 118405 station_ip 5.120.158.223 118405 port 68 118405 unique_id port 118405 remote_ip 10.8.1.82 118408 username alihosseini1 118408 mac 118408 bytes_out 0 118408 bytes_in 0 118408 station_ip 5.120.106.56 118408 port 163 118408 unique_id port 118408 remote_ip 10.8.0.166 118412 username Mahin 118412 mac 118412 bytes_out 1572651 118412 bytes_in 9563525 118412 station_ip 5.119.20.46 118412 port 141 118412 unique_id port 118412 remote_ip 10.8.0.222 118415 username zare 118415 mac 118415 bytes_out 10778 118415 bytes_in 17561 118415 station_ip 94.183.214.14 118415 port 164 118415 unique_id port 118415 remote_ip 10.8.0.18 118418 username amir 118418 kill_reason Another user logged on this global unique id 118418 mac 118418 bytes_out 0 118418 bytes_in 0 118418 station_ip 46.225.211.139 118418 port 148 118418 unique_id port 118418 remote_ip 10.8.0.50 118424 username asma2026 118424 mac 118424 bytes_out 0 118424 bytes_in 0 118424 station_ip 83.122.99.181 118424 port 65 118424 unique_id port 118424 remote_ip 10.8.1.122 118426 username sabaghnezhad 118426 mac 118426 bytes_out 13112 118426 bytes_in 17748 118426 station_ip 37.129.19.88 118426 port 162 118426 unique_id port 118426 remote_ip 10.8.0.186 118427 username alihosseini1 118427 mac 118427 bytes_out 2117 118427 bytes_in 4439 118427 station_ip 5.120.106.56 118427 port 167 118427 unique_id port 118427 remote_ip 10.8.0.166 118433 username forozande 118433 mac 118433 bytes_out 331057 118433 bytes_in 1092519 118433 station_ip 83.122.26.189 118433 port 162 118433 unique_id port 118433 remote_ip 10.8.0.74 118434 username asma2026 118434 mac 118434 bytes_out 0 118434 bytes_in 0 118434 station_ip 83.122.99.181 118434 port 162 118434 unique_id port 118434 remote_ip 10.8.0.170 118437 username alirezazadeh 118437 unique_id port 118437 terminate_cause User-Request 118437 bytes_out 433345 118437 bytes_in 2740788 118437 station_ip 31.56.221.59 118437 port 15729609 118437 nas_port_type Virtual 118437 remote_ip 5.5.5.207 118445 username alihosseini1 118445 mac 118445 bytes_out 0 118445 bytes_in 0 118445 station_ip 5.120.106.56 118445 port 160 118445 unique_id port 118445 remote_ip 10.8.0.166 118449 username alihosseini1 118449 mac 118449 bytes_out 0 118449 bytes_in 0 118449 station_ip 5.120.106.56 118449 port 67 118449 unique_id port 118449 remote_ip 10.8.1.106 118451 username asma2026 118451 mac 118451 bytes_out 1636 118451 bytes_in 5023 118451 station_ip 83.122.99.181 118451 port 162 118451 unique_id port 118451 remote_ip 10.8.0.170 118454 username musa 118454 mac 118454 bytes_out 0 118454 bytes_in 0 118454 station_ip 83.122.26.148 118454 port 71 118454 unique_id port 118472 username asma2026 118397 username sabaghnezhad 118397 mac 118397 bytes_out 0 118397 bytes_in 0 118397 station_ip 37.129.19.88 118397 port 68 118397 unique_id port 118397 remote_ip 10.8.1.130 118399 username jamali 118399 mac 118399 bytes_out 0 118399 bytes_in 0 118399 station_ip 5.120.158.223 118399 port 67 118399 unique_id port 118399 remote_ip 10.8.1.82 118409 username sabaghnezhad 118409 mac 118409 bytes_out 8106 118409 bytes_in 14305 118409 station_ip 37.129.19.88 118409 port 159 118409 unique_id port 118409 remote_ip 10.8.0.186 118410 username jamali 118410 mac 118410 bytes_out 345933 118410 bytes_in 1857333 118410 station_ip 5.120.158.223 118410 port 162 118410 unique_id port 118410 remote_ip 10.8.0.150 118411 username zare 118411 mac 118411 bytes_out 0 118411 bytes_in 0 118411 station_ip 94.183.214.14 118411 port 157 118411 unique_id port 118411 remote_ip 10.8.0.18 118413 username asma2026 118413 kill_reason Another user logged on this global unique id 118413 mac 118413 bytes_out 0 118413 bytes_in 0 118413 station_ip 83.122.99.181 118413 port 67 118413 unique_id port 118413 remote_ip 10.8.1.122 118414 username alihosseini1 118414 mac 118414 bytes_out 0 118414 bytes_in 0 118414 station_ip 5.120.106.56 118414 port 165 118414 unique_id port 118414 remote_ip 10.8.0.166 118419 username malekpoir 118419 mac 118419 bytes_out 0 118419 bytes_in 0 118419 station_ip 5.119.237.28 118419 port 65 118419 unique_id port 118420 username asma2026 118420 mac 118420 bytes_out 0 118420 bytes_in 0 118420 station_ip 83.122.99.181 118420 port 67 118420 unique_id port 118422 username asma2026 118422 mac 118422 bytes_out 0 118422 bytes_in 0 118422 station_ip 83.122.99.181 118422 port 65 118422 unique_id port 118422 remote_ip 10.8.1.122 118431 username jamali 118431 kill_reason Another user logged on this global unique id 118431 mac 118431 bytes_out 0 118431 bytes_in 0 118431 station_ip 5.120.158.223 118431 port 159 118431 unique_id port 118431 remote_ip 10.8.0.150 118432 username Mahin 118432 mac 118432 bytes_out 0 118432 bytes_in 0 118432 station_ip 5.119.20.46 118432 port 163 118432 unique_id port 118432 remote_ip 10.8.0.222 118435 username alihosseini1 118435 mac 118435 bytes_out 0 118435 bytes_in 0 118435 station_ip 5.120.106.56 118435 port 165 118435 unique_id port 118435 remote_ip 10.8.0.166 118439 username mosi 118439 kill_reason Another user logged on this global unique id 118439 mac 118439 bytes_out 0 118439 bytes_in 0 118439 station_ip 151.235.114.55 118439 port 167 118439 unique_id port 118439 remote_ip 10.8.0.138 118440 username forozande 118440 mac 118440 bytes_out 0 118440 bytes_in 0 118440 station_ip 83.122.179.28 118440 port 163 118440 unique_id port 118440 remote_ip 10.8.0.74 118441 username asma2026 118441 mac 118441 bytes_out 0 118441 bytes_in 0 118441 station_ip 83.122.99.181 118441 port 160 118441 unique_id port 118441 remote_ip 10.8.0.170 118443 username Mahin 118443 mac 118443 bytes_out 0 118443 bytes_in 0 118443 station_ip 5.119.20.46 118443 port 168 118443 unique_id port 118443 remote_ip 10.8.0.222 118446 username asma2026 118446 mac 118446 bytes_out 0 118446 bytes_in 0 118446 station_ip 83.122.99.181 118446 port 162 118446 unique_id port 118446 remote_ip 10.8.0.170 118450 username mosi 118450 kill_reason Another user logged on this global unique id 118450 mac 118450 bytes_out 0 118450 bytes_in 0 118450 station_ip 151.235.114.55 118450 port 167 118450 unique_id port 118398 station_ip 5.120.106.56 118398 port 72 118398 unique_id port 118398 remote_ip 10.8.1.106 118401 username alihosseini1 118401 mac 118401 bytes_out 0 118401 bytes_in 0 118401 station_ip 5.120.106.56 118401 port 67 118401 unique_id port 118401 remote_ip 10.8.1.106 118403 username alihosseini1 118403 mac 118403 bytes_out 0 118403 bytes_in 0 118403 station_ip 5.120.106.56 118403 port 67 118403 unique_id port 118403 remote_ip 10.8.1.106 118404 username zare 118404 mac 118404 bytes_out 0 118404 bytes_in 0 118404 station_ip 94.183.214.14 118404 port 162 118404 unique_id port 118404 remote_ip 10.8.0.18 118406 username kordestani 118406 mac 118406 bytes_out 0 118406 bytes_in 0 118406 station_ip 151.235.121.248 118406 port 157 118406 unique_id port 118406 remote_ip 10.8.0.134 118407 username sabaghnezhad 118407 mac 118407 bytes_out 28758 118407 bytes_in 47281 118407 station_ip 37.129.19.88 118407 port 159 118407 unique_id port 118407 remote_ip 10.8.0.186 118416 username zare 118416 mac 118416 bytes_out 0 118416 bytes_in 0 118416 station_ip 94.183.214.14 118416 port 165 118416 unique_id port 118416 remote_ip 10.8.0.18 118417 username alihosseini1 118417 kill_reason Maximum check online fails reached 118417 mac 118417 bytes_out 0 118417 bytes_in 0 118417 station_ip 5.120.106.56 118417 port 164 118417 unique_id port 118421 username alihosseini1 118421 mac 118421 bytes_out 0 118421 bytes_in 0 118421 station_ip 5.120.106.56 118421 port 167 118421 unique_id port 118421 remote_ip 10.8.0.166 118423 username zare 118423 mac 118423 bytes_out 0 118423 bytes_in 0 118423 station_ip 94.183.214.14 118423 port 166 118423 unique_id port 118423 remote_ip 10.8.0.18 118425 username mohammadjavad 118425 mac 118425 bytes_out 186229 118425 bytes_in 594792 118425 station_ip 83.122.11.226 118425 port 141 118425 unique_id port 118425 remote_ip 10.8.0.142 118428 username mosi 118428 mac 118428 bytes_out 2206833 118428 bytes_in 27205993 118428 station_ip 93.114.26.225 118428 port 165 118428 unique_id port 118428 remote_ip 10.8.0.138 118429 username asma2026 118429 mac 118429 bytes_out 0 118429 bytes_in 0 118429 station_ip 83.122.99.181 118429 port 165 118429 unique_id port 118429 remote_ip 10.8.0.170 118430 username alihosseini1 118430 mac 118430 bytes_out 0 118430 bytes_in 0 118430 station_ip 5.120.106.56 118430 port 165 118430 unique_id port 118430 remote_ip 10.8.0.166 118436 username sabaghnezhad 118436 mac 118436 bytes_out 13694 118436 bytes_in 17302 118436 station_ip 37.129.19.88 118436 port 141 118436 unique_id port 118436 remote_ip 10.8.0.186 118438 username avaanna 118438 mac 118438 bytes_out 1175260 118438 bytes_in 20160418 118438 station_ip 113.203.87.62 118438 port 160 118438 unique_id port 118438 remote_ip 10.8.0.98 118442 username mosi 118442 kill_reason Another user logged on this global unique id 118442 mac 118442 bytes_out 0 118442 bytes_in 0 118442 station_ip 151.235.114.55 118442 port 167 118442 unique_id port 118444 username sabaghnezhad 118444 mac 118444 bytes_out 0 118444 bytes_in 0 118444 station_ip 37.129.19.88 118444 port 67 118444 unique_id port 118444 remote_ip 10.8.1.130 118447 username zare 118447 mac 118447 bytes_out 135783 118447 bytes_in 511238 118447 station_ip 94.183.214.14 118447 port 166 118447 unique_id port 118447 remote_ip 10.8.0.18 118448 username zare 118448 mac 118448 bytes_out 0 118448 bytes_in 0 118448 station_ip 94.183.214.14 118448 port 162 118448 unique_id port 118448 remote_ip 10.8.0.18 118452 username musa 118452 kill_reason Another user logged on this global unique id 118452 mac 118452 bytes_out 0 118452 bytes_in 0 118452 station_ip 83.122.26.148 118452 port 71 118452 unique_id port 118452 remote_ip 10.8.1.10 118455 username alihosseini1 118455 mac 118455 bytes_out 0 118455 bytes_in 0 118455 station_ip 5.120.106.56 118455 port 162 118455 unique_id port 118455 remote_ip 10.8.0.166 118457 username mosi 118457 kill_reason Another user logged on this global unique id 118457 mac 118457 bytes_out 0 118457 bytes_in 0 118457 station_ip 151.235.114.55 118457 port 167 118457 unique_id port 118460 username mosi 118460 kill_reason Another user logged on this global unique id 118460 mac 118460 bytes_out 0 118460 bytes_in 0 118460 station_ip 151.235.114.55 118460 port 167 118460 unique_id port 118462 username alihosseini1 118462 mac 118462 bytes_out 0 118462 bytes_in 0 118462 station_ip 5.120.106.56 118462 port 68 118462 unique_id port 118462 remote_ip 10.8.1.106 118465 username asma2026 118465 mac 118465 bytes_out 0 118465 bytes_in 0 118465 station_ip 83.122.99.181 118465 port 141 118465 unique_id port 118465 remote_ip 10.8.0.170 118467 username zare 118467 mac 118467 bytes_out 0 118467 bytes_in 0 118467 station_ip 94.183.214.14 118467 port 163 118467 unique_id port 118467 remote_ip 10.8.0.18 118470 username asma2026 118470 mac 118470 bytes_out 0 118470 bytes_in 0 118470 station_ip 83.122.99.181 118470 port 71 118470 unique_id port 118470 remote_ip 10.8.1.122 118471 username alihosseini1 118471 mac 118471 bytes_out 0 118471 bytes_in 0 118471 station_ip 5.120.106.56 118471 port 141 118471 unique_id port 118471 remote_ip 10.8.0.166 118474 username asma2026 118474 kill_reason Maximum check online fails reached 118474 mac 118474 bytes_out 0 118474 bytes_in 0 118474 station_ip 83.122.99.181 118474 port 163 118474 unique_id port 118475 username asma2026 118475 mac 118475 bytes_out 0 118475 bytes_in 0 118475 station_ip 83.122.99.181 118475 port 142 118475 unique_id port 118475 remote_ip 10.8.0.170 118476 username asma2026 118476 kill_reason Maximum check online fails reached 118476 mac 118476 bytes_out 0 118476 bytes_in 0 118476 station_ip 83.122.99.181 118476 port 141 118476 unique_id port 118478 username tahmasebi 118478 kill_reason Another user logged on this global unique id 118478 mac 118478 bytes_out 0 118478 bytes_in 0 118478 station_ip 5.119.132.27 118478 port 137 118478 unique_id port 118479 username musa 118479 mac 118479 bytes_out 1824518 118479 bytes_in 32986742 118479 station_ip 83.122.96.72 118479 port 67 118479 unique_id port 118479 remote_ip 10.8.1.10 118480 username asma2026 118480 mac 118480 bytes_out 0 118480 bytes_in 0 118480 station_ip 83.122.99.181 118480 port 168 118480 unique_id port 118480 remote_ip 10.8.0.170 118482 username amir 118482 mac 118482 bytes_out 0 118482 bytes_in 0 118482 station_ip 46.225.211.139 118482 port 148 118482 unique_id port 118483 username mohammadjavad 118483 mac 118483 bytes_out 0 118483 bytes_in 0 118483 station_ip 83.123.142.231 118483 port 165 118483 unique_id port 118483 remote_ip 10.8.0.142 118486 username sabaghnezhad 118486 mac 118486 bytes_out 0 118486 bytes_in 0 118486 station_ip 37.129.19.88 118486 port 160 118486 unique_id port 118486 remote_ip 10.8.0.186 118487 username asma2026 118487 mac 118487 bytes_out 0 118487 bytes_in 0 118487 station_ip 83.122.99.181 118487 port 142 118453 username alihosseini1 118453 mac 118453 bytes_out 0 118453 bytes_in 0 118453 station_ip 5.120.106.56 118453 port 67 118453 unique_id port 118453 remote_ip 10.8.1.106 118456 username asma2026 118456 mac 118456 bytes_out 0 118456 bytes_in 0 118456 station_ip 83.122.99.181 118456 port 162 118456 unique_id port 118456 remote_ip 10.8.0.170 118458 username avaanna 118458 mac 118458 bytes_out 328727 118458 bytes_in 3625492 118458 station_ip 113.203.87.62 118458 port 141 118458 unique_id port 118458 remote_ip 10.8.0.98 118459 username jamali 118459 mac 118459 bytes_out 0 118459 bytes_in 0 118459 station_ip 5.120.158.223 118459 port 159 118459 unique_id port 118461 username forozande 118461 mac 118461 bytes_out 167091 118461 bytes_in 1092686 118461 station_ip 37.129.220.56 118461 port 141 118461 unique_id port 118461 remote_ip 10.8.0.74 118463 username asma2026 118463 mac 118463 bytes_out 0 118463 bytes_in 0 118463 station_ip 83.122.99.181 118463 port 141 118463 unique_id port 118463 remote_ip 10.8.0.170 118464 username alihosseini1 118464 mac 118464 bytes_out 0 118464 bytes_in 0 118464 station_ip 5.120.106.56 118464 port 68 118464 unique_id port 118464 remote_ip 10.8.1.106 118466 username asma2026 118466 mac 118466 bytes_out 0 118466 bytes_in 0 118466 station_ip 83.122.99.181 118466 port 141 118466 unique_id port 118466 remote_ip 10.8.0.170 118468 username asma2026 118468 mac 118468 bytes_out 0 118468 bytes_in 0 118468 station_ip 83.122.99.181 118468 port 141 118468 unique_id port 118468 remote_ip 10.8.0.170 118469 username asma2026 118469 mac 118469 bytes_out 0 118469 bytes_in 0 118469 station_ip 83.122.99.181 118469 port 141 118469 unique_id port 118469 remote_ip 10.8.0.170 118473 username alipour 118473 mac 118473 bytes_out 0 118473 bytes_in 0 118473 station_ip 37.129.93.196 118473 port 142 118473 unique_id port 118473 remote_ip 10.8.0.102 118477 username forozande 118477 mac 118477 bytes_out 1769204 118477 bytes_in 31234229 118477 station_ip 83.123.181.9 118477 port 159 118477 unique_id port 118477 remote_ip 10.8.0.74 118485 username zare 118485 mac 118485 bytes_out 0 118485 bytes_in 0 118485 station_ip 94.183.214.14 118485 port 159 118485 unique_id port 118485 remote_ip 10.8.0.18 118488 username tahmasebi 118488 kill_reason Another user logged on this global unique id 118488 mac 118488 bytes_out 0 118488 bytes_in 0 118488 station_ip 5.119.132.27 118488 port 137 118488 unique_id port 118489 username mosi 118489 kill_reason Another user logged on this global unique id 118489 mac 118489 bytes_out 0 118489 bytes_in 0 118489 station_ip 151.235.114.55 118489 port 167 118489 unique_id port 118491 username asma2026 118491 mac 118491 bytes_out 0 118491 bytes_in 0 118491 station_ip 83.122.99.181 118491 port 148 118491 unique_id port 118491 remote_ip 10.8.0.170 118492 username asma2026 118492 mac 118492 bytes_out 0 118492 bytes_in 0 118492 station_ip 83.122.99.181 118492 port 148 118492 unique_id port 118492 remote_ip 10.8.0.170 118495 username asma2026 118495 mac 118495 bytes_out 0 118495 bytes_in 0 118495 station_ip 83.122.99.181 118495 port 148 118495 unique_id port 118495 remote_ip 10.8.0.170 118498 username aminvpn 118498 mac 118498 bytes_out 773590 118498 bytes_in 4455665 118498 station_ip 31.59.41.77 118498 port 151 118498 unique_id port 118498 remote_ip 10.8.0.14 118500 username tahmasebi 118500 kill_reason Another user logged on this global unique id 118472 mac 118472 bytes_out 0 118472 bytes_in 0 118472 station_ip 83.122.99.181 118472 port 165 118472 unique_id port 118472 remote_ip 10.8.0.170 118481 username alihosseini1 118481 mac 118481 bytes_out 0 118481 bytes_in 0 118481 station_ip 5.120.106.56 118481 port 142 118481 unique_id port 118481 remote_ip 10.8.0.166 118484 username alipour 118484 mac 118484 bytes_out 35580 118484 bytes_in 42335 118484 station_ip 37.129.93.196 118484 port 68 118484 unique_id port 118484 remote_ip 10.8.1.50 118490 username mahdiyehalizadeh 118490 mac 118490 bytes_out 830967 118490 bytes_in 8889869 118490 station_ip 83.123.1.150 118490 port 166 118490 unique_id port 118490 remote_ip 10.8.0.82 118497 username sabaghnezhad 118497 mac 118497 bytes_out 13848 118497 bytes_in 23645 118497 station_ip 83.123.96.176 118497 port 71 118497 unique_id port 118497 remote_ip 10.8.1.130 118501 username Mahin 118501 mac 118501 bytes_out 98031 118501 bytes_in 126057 118501 station_ip 5.119.20.46 118501 port 162 118501 unique_id port 118501 remote_ip 10.8.0.222 118503 username sabaghnezhad 118503 mac 118503 bytes_out 0 118503 bytes_in 0 118503 station_ip 83.123.96.176 118503 port 151 118503 unique_id port 118503 remote_ip 10.8.0.186 118505 username alipour 118505 mac 118505 bytes_out 48618 118505 bytes_in 77022 118505 station_ip 37.129.93.196 118505 port 68 118505 unique_id port 118505 remote_ip 10.8.1.50 118507 username ahmadipour 118507 unique_id port 118507 terminate_cause Lost-Carrier 118507 bytes_out 273164 118507 bytes_in 1211882 118507 station_ip 37.129.77.41 118507 port 15729608 118507 nas_port_type Virtual 118507 remote_ip 5.5.5.241 118511 username asma2026 118511 mac 118511 bytes_out 2474 118511 bytes_in 4759 118511 station_ip 83.122.99.181 118511 port 148 118511 unique_id port 118511 remote_ip 10.8.0.170 118513 username tahmasebi 118513 kill_reason Another user logged on this global unique id 118513 mac 118513 bytes_out 0 118513 bytes_in 0 118513 station_ip 5.119.132.27 118513 port 137 118513 unique_id port 118516 username zare 118516 mac 118516 bytes_out 0 118516 bytes_in 0 118516 station_ip 94.183.214.14 118516 port 142 118516 unique_id port 118516 remote_ip 10.8.0.18 118518 username amir 118518 mac 118518 bytes_out 0 118518 bytes_in 0 118518 station_ip 46.225.211.139 118518 port 157 118518 unique_id port 118518 remote_ip 10.8.0.50 118521 username musa 118521 kill_reason Another user logged on this global unique id 118521 mac 118521 bytes_out 0 118521 bytes_in 0 118521 station_ip 83.122.96.72 118521 port 67 118521 unique_id port 118521 remote_ip 10.8.1.10 118525 username amir 118525 mac 118525 bytes_out 0 118525 bytes_in 0 118525 station_ip 46.225.211.139 118525 port 157 118525 unique_id port 118525 remote_ip 10.8.0.50 118526 username asma2026 118526 mac 118526 bytes_out 0 118526 bytes_in 0 118526 station_ip 83.122.99.181 118526 port 148 118526 unique_id port 118526 remote_ip 10.8.0.170 118527 username asma2026 118527 mac 118527 bytes_out 0 118527 bytes_in 0 118527 station_ip 83.122.99.181 118527 port 148 118527 unique_id port 118527 remote_ip 10.8.0.170 118529 username sabaghnezhad 118529 mac 118529 bytes_out 0 118529 bytes_in 0 118529 station_ip 83.123.96.176 118529 port 160 118529 unique_id port 118529 remote_ip 10.8.0.186 118532 username asma2026 118532 mac 118532 bytes_out 0 118532 bytes_in 0 118532 station_ip 83.122.99.181 118532 port 160 118532 unique_id port 118532 remote_ip 10.8.0.170 118487 unique_id port 118487 remote_ip 10.8.0.170 118493 username kordestani 118493 mac 118493 bytes_out 0 118493 bytes_in 0 118493 station_ip 151.235.121.248 118493 port 157 118493 unique_id port 118493 remote_ip 10.8.0.134 118494 username aminvpn 118494 unique_id port 118494 terminate_cause User-Request 118494 bytes_out 3906968 118494 bytes_in 41512261 118494 station_ip 31.59.41.77 118494 port 15729605 118494 nas_port_type Virtual 118494 remote_ip 5.5.5.201 118496 username asma2026 118496 mac 118496 bytes_out 0 118496 bytes_in 0 118496 station_ip 83.122.99.181 118496 port 157 118496 unique_id port 118496 remote_ip 10.8.0.170 118499 username mosi 118499 kill_reason Another user logged on this global unique id 118499 mac 118499 bytes_out 0 118499 bytes_in 0 118499 station_ip 151.235.114.55 118499 port 167 118499 unique_id port 118506 username asma2026 118506 mac 118506 bytes_out 0 118506 bytes_in 0 118506 station_ip 83.122.99.181 118506 port 151 118506 unique_id port 118506 remote_ip 10.8.0.170 118509 username asma2026 118509 mac 118509 bytes_out 0 118509 bytes_in 0 118509 station_ip 83.122.99.181 118509 port 148 118509 unique_id port 118509 remote_ip 10.8.0.170 118510 username zare 118510 mac 118510 bytes_out 0 118510 bytes_in 0 118510 station_ip 94.183.214.14 118510 port 142 118510 unique_id port 118510 remote_ip 10.8.0.18 118512 username asma2026 118512 mac 118512 bytes_out 0 118512 bytes_in 0 118512 station_ip 83.122.99.181 118512 port 142 118512 unique_id port 118512 remote_ip 10.8.0.170 118519 username asma2026 118519 mac 118519 bytes_out 0 118519 bytes_in 0 118519 station_ip 83.122.99.181 118519 port 71 118519 unique_id port 118519 remote_ip 10.8.1.122 118523 username mohammadjavad 118523 mac 118523 bytes_out 148016 118523 bytes_in 365499 118523 station_ip 37.129.129.85 118523 port 148 118523 unique_id port 118523 remote_ip 10.8.0.142 118524 username asma2026 118524 mac 118524 bytes_out 0 118524 bytes_in 0 118524 station_ip 83.122.99.181 118524 port 148 118524 unique_id port 118524 remote_ip 10.8.0.170 118528 username asma2026 118528 mac 118528 bytes_out 0 118528 bytes_in 0 118528 station_ip 83.122.99.181 118528 port 162 118528 unique_id port 118528 remote_ip 10.8.0.170 118534 username amir 118534 mac 118534 bytes_out 128787 118534 bytes_in 483015 118534 station_ip 46.225.211.139 118534 port 148 118534 unique_id port 118534 remote_ip 10.8.0.50 118535 username aminvpn 118535 mac 118535 bytes_out 152765 118535 bytes_in 176864 118535 station_ip 83.123.178.187 118535 port 157 118535 unique_id port 118535 remote_ip 10.8.0.14 118540 username asma2026 118540 mac 118540 bytes_out 1644 118540 bytes_in 5302 118540 station_ip 83.122.99.181 118540 port 71 118540 unique_id port 118540 remote_ip 10.8.1.122 118543 username amir 118543 mac 118543 bytes_out 135058 118543 bytes_in 849085 118543 station_ip 46.225.211.139 118543 port 157 118543 unique_id port 118543 remote_ip 10.8.0.50 118546 username alipour 118546 mac 118546 bytes_out 0 118546 bytes_in 0 118546 station_ip 37.129.93.196 118546 port 68 118546 unique_id port 118546 remote_ip 10.8.1.50 118547 username forozande 118547 mac 118547 bytes_out 245929 118547 bytes_in 1108406 118547 station_ip 83.123.199.151 118547 port 162 118547 unique_id port 118547 remote_ip 10.8.0.74 118550 username amir 118550 mac 118550 bytes_out 127340 118550 bytes_in 881078 118550 station_ip 46.225.211.139 118550 port 160 118500 mac 118500 bytes_out 0 118500 bytes_in 0 118500 station_ip 5.119.132.27 118500 port 137 118500 unique_id port 118502 username mosi 118502 mac 118502 bytes_out 0 118502 bytes_in 0 118502 station_ip 151.235.114.55 118502 port 167 118502 unique_id port 118504 username mohammadjavad 118504 mac 118504 bytes_out 0 118504 bytes_in 0 118504 station_ip 83.123.99.118 118504 port 159 118504 unique_id port 118504 remote_ip 10.8.0.142 118508 username amir 118508 mac 118508 bytes_out 0 118508 bytes_in 0 118508 station_ip 46.225.211.139 118508 port 148 118508 unique_id port 118508 remote_ip 10.8.0.50 118514 username asma2026 118514 mac 118514 bytes_out 0 118514 bytes_in 0 118514 station_ip 83.122.99.181 118514 port 142 118514 unique_id port 118514 remote_ip 10.8.0.170 118515 username Mahin 118515 mac 118515 bytes_out 0 118515 bytes_in 0 118515 station_ip 5.119.20.46 118515 port 157 118515 unique_id port 118515 remote_ip 10.8.0.222 118517 username tahmasebi 118517 kill_reason Another user logged on this global unique id 118517 mac 118517 bytes_out 0 118517 bytes_in 0 118517 station_ip 5.119.132.27 118517 port 137 118517 unique_id port 118520 username asma2026 118520 mac 118520 bytes_out 0 118520 bytes_in 0 118520 station_ip 83.122.99.181 118520 port 71 118520 unique_id port 118520 remote_ip 10.8.1.122 118522 username aminvpn 118522 mac 118522 bytes_out 0 118522 bytes_in 0 118522 station_ip 83.123.178.187 118522 port 71 118522 unique_id port 118522 remote_ip 10.8.1.6 118530 username asma2026 118530 mac 118530 bytes_out 0 118530 bytes_in 0 118530 station_ip 83.122.99.181 118530 port 160 118530 unique_id port 118530 remote_ip 10.8.0.170 118531 username asma2026 118531 mac 118531 bytes_out 0 118531 bytes_in 0 118531 station_ip 83.122.99.181 118531 port 160 118531 unique_id port 118531 remote_ip 10.8.0.170 118533 username alirezazadeh 118533 unique_id port 118533 terminate_cause User-Request 118533 bytes_out 404440 118533 bytes_in 1776034 118533 station_ip 31.56.221.59 118533 port 15729610 118533 nas_port_type Virtual 118533 remote_ip 5.5.5.215 118538 username asma2026 118538 mac 118538 bytes_out 0 118538 bytes_in 0 118538 station_ip 83.122.99.181 118538 port 157 118538 unique_id port 118538 remote_ip 10.8.0.170 118539 username asma2026 118539 mac 118539 bytes_out 0 118539 bytes_in 0 118539 station_ip 83.122.99.181 118539 port 157 118539 unique_id port 118539 remote_ip 10.8.0.170 118541 username Mahin 118541 mac 118541 bytes_out 432894 118541 bytes_in 2868813 118541 station_ip 5.119.20.46 118541 port 151 118541 unique_id port 118541 remote_ip 10.8.0.222 118545 username zare 118545 mac 118545 bytes_out 0 118545 bytes_in 0 118545 station_ip 94.183.214.14 118545 port 142 118545 unique_id port 118545 remote_ip 10.8.0.18 118549 username malekpoir 118549 mac 118549 bytes_out 2348858 118549 bytes_in 27188274 118549 station_ip 5.119.237.28 118549 port 65 118549 unique_id port 118549 remote_ip 10.8.1.54 118563 username jamali 118563 mac 118563 bytes_out 0 118563 bytes_in 0 118563 station_ip 5.120.158.223 118563 port 157 118563 unique_id port 118563 remote_ip 10.8.0.150 118570 username zare 118570 mac 118570 bytes_out 0 118570 bytes_in 0 118570 station_ip 94.183.214.14 118570 port 165 118570 unique_id port 118570 remote_ip 10.8.0.18 118574 username zare 118574 mac 118574 bytes_out 0 118574 bytes_in 0 118574 station_ip 94.183.214.14 118536 username sabaghnezhad 118536 mac 118536 bytes_out 0 118536 bytes_in 0 118536 station_ip 83.123.96.176 118536 port 162 118536 unique_id port 118536 remote_ip 10.8.0.186 118537 username asma2026 118537 mac 118537 bytes_out 0 118537 bytes_in 0 118537 station_ip 83.122.99.181 118537 port 160 118537 unique_id port 118537 remote_ip 10.8.0.170 118542 username sabaghnezhad 118542 mac 118542 bytes_out 23475 118542 bytes_in 40592 118542 station_ip 83.123.96.176 118542 port 148 118542 unique_id port 118542 remote_ip 10.8.0.186 118544 username forozande 118544 mac 118544 bytes_out 240115 118544 bytes_in 1446571 118544 station_ip 83.122.96.124 118544 port 157 118544 unique_id port 118544 remote_ip 10.8.0.74 118548 username zare 118548 mac 118548 bytes_out 0 118548 bytes_in 0 118548 station_ip 94.183.214.14 118548 port 142 118548 unique_id port 118548 remote_ip 10.8.0.18 118551 username zare 118551 mac 118551 bytes_out 12290 118551 bytes_in 24990 118551 station_ip 94.183.214.14 118551 port 142 118551 unique_id port 118551 remote_ip 10.8.0.18 118552 username ahmadi 118552 kill_reason Relative expiration date has reached 118552 unique_id port 118552 bytes_out 0 118552 bytes_in 0 118552 station_ip 83.122.81.189 118552 port 15729612 118552 nas_port_type Virtual 118555 username zare 118555 mac 118555 bytes_out 0 118555 bytes_in 0 118555 station_ip 94.183.214.14 118555 port 159 118555 unique_id port 118555 remote_ip 10.8.0.18 118559 username alipour 118559 mac 118559 bytes_out 45141 118559 bytes_in 51559 118559 station_ip 37.129.93.196 118559 port 68 118559 unique_id port 118559 remote_ip 10.8.1.50 118560 username amir 118560 mac 118560 bytes_out 119885 118560 bytes_in 492402 118560 station_ip 46.225.211.139 118560 port 159 118560 unique_id port 118560 remote_ip 10.8.0.50 118561 username alipour 118561 mac 118561 bytes_out 0 118561 bytes_in 0 118561 station_ip 37.129.93.196 118561 port 68 118561 unique_id port 118561 remote_ip 10.8.1.50 118562 username reza2742 118562 unique_id port 118562 terminate_cause Lost-Carrier 118562 bytes_out 9302070 118562 bytes_in 254170289 118562 station_ip 5.202.19.150 118562 port 15729611 118562 nas_port_type Virtual 118562 remote_ip 5.5.5.255 118564 username zare 118564 mac 118564 bytes_out 166544 118564 bytes_in 629645 118564 station_ip 94.183.214.14 118564 port 160 118564 unique_id port 118564 remote_ip 10.8.0.18 118565 username forozande 118565 kill_reason Another user logged on this global unique id 118565 mac 118565 bytes_out 0 118565 bytes_in 0 118565 station_ip 113.203.74.106 118565 port 148 118565 unique_id port 118565 remote_ip 10.8.0.74 118567 username mirzaei 118567 kill_reason Another user logged on this global unique id 118567 mac 118567 bytes_out 0 118567 bytes_in 0 118567 station_ip 5.119.152.48 118567 port 140 118567 unique_id port 118568 username zare 118568 mac 118568 bytes_out 0 118568 bytes_in 0 118568 station_ip 94.183.214.14 118568 port 160 118568 unique_id port 118568 remote_ip 10.8.0.18 118572 username forozande 118572 mac 118572 bytes_out 0 118572 bytes_in 0 118572 station_ip 113.203.74.106 118572 port 148 118572 unique_id port 118575 username zare 118575 mac 118575 bytes_out 0 118575 bytes_in 0 118575 station_ip 94.183.214.14 118575 port 159 118575 unique_id port 118575 remote_ip 10.8.0.18 118578 username amir 118578 mac 118578 bytes_out 0 118578 bytes_in 0 118578 station_ip 46.225.211.139 118578 port 159 118578 unique_id port 118550 unique_id port 118550 remote_ip 10.8.0.50 118553 username zare 118553 mac 118553 bytes_out 0 118553 bytes_in 0 118553 station_ip 94.183.214.14 118553 port 142 118553 unique_id port 118553 remote_ip 10.8.0.18 118554 username kordestani 118554 mac 118554 bytes_out 0 118554 bytes_in 0 118554 station_ip 151.235.121.248 118554 port 159 118554 unique_id port 118554 remote_ip 10.8.0.134 118556 username khalili 118556 kill_reason Another user logged on this global unique id 118556 mac 118556 bytes_out 0 118556 bytes_in 0 118556 station_ip 5.120.15.195 118556 port 122 118556 unique_id port 118557 username sedighe 118557 mac 118557 bytes_out 128154 118557 bytes_in 606934 118557 station_ip 37.129.67.208 118557 port 142 118557 unique_id port 118557 remote_ip 10.8.0.146 118558 username sabaghnezhad 118558 mac 118558 bytes_out 0 118558 bytes_in 0 118558 station_ip 83.123.96.176 118558 port 148 118558 unique_id port 118558 remote_ip 10.8.0.186 118566 username alipour 118566 mac 118566 bytes_out 0 118566 bytes_in 0 118566 station_ip 37.129.93.196 118566 port 68 118566 unique_id port 118566 remote_ip 10.8.1.50 118569 username malekpoir 118569 mac 118569 bytes_out 0 118569 bytes_in 0 118569 station_ip 5.119.237.28 118569 port 65 118569 unique_id port 118569 remote_ip 10.8.1.54 118571 username amir 118571 mac 118571 bytes_out 1714735 118571 bytes_in 13826765 118571 station_ip 46.225.211.139 118571 port 159 118571 unique_id port 118571 remote_ip 10.8.0.50 118573 username jamali 118573 kill_reason Another user logged on this global unique id 118573 mac 118573 bytes_out 0 118573 bytes_in 0 118573 station_ip 5.120.158.223 118573 port 157 118573 unique_id port 118573 remote_ip 10.8.0.150 118577 username zare 118577 mac 118577 bytes_out 0 118577 bytes_in 0 118577 station_ip 94.183.214.14 118577 port 148 118577 unique_id port 118577 remote_ip 10.8.0.18 118580 username jamali 118580 kill_reason Another user logged on this global unique id 118580 mac 118580 bytes_out 0 118580 bytes_in 0 118580 station_ip 5.120.158.223 118580 port 157 118580 unique_id port 118583 username mirzaei 118583 kill_reason Another user logged on this global unique id 118583 mac 118583 bytes_out 0 118583 bytes_in 0 118583 station_ip 5.119.152.48 118583 port 140 118583 unique_id port 118589 username amir 118589 mac 118589 bytes_out 619399 118589 bytes_in 6946478 118589 station_ip 46.225.211.139 118589 port 159 118589 unique_id port 118589 remote_ip 10.8.0.50 118594 username zare 118594 mac 118594 bytes_out 0 118594 bytes_in 0 118594 station_ip 94.183.214.14 118594 port 159 118594 unique_id port 118594 remote_ip 10.8.0.18 118596 username mohammadmahdi 118596 mac 118596 bytes_out 0 118596 bytes_in 0 118596 station_ip 5.120.86.136 118596 port 148 118596 unique_id port 118601 username alipour 118601 mac 118601 bytes_out 0 118601 bytes_in 0 118601 station_ip 37.129.93.196 118601 port 65 118601 unique_id port 118601 remote_ip 10.8.1.50 118603 username jamali 118603 kill_reason Another user logged on this global unique id 118603 mac 118603 bytes_out 0 118603 bytes_in 0 118603 station_ip 5.120.158.223 118603 port 157 118603 unique_id port 118604 username tahmasebi 118604 mac 118604 bytes_out 0 118604 bytes_in 0 118604 station_ip 5.119.132.27 118604 port 137 118604 unique_id port 118606 username forozande 118606 mac 118606 bytes_out 0 118606 bytes_in 0 118606 station_ip 83.122.105.10 118606 port 148 118606 unique_id port 118606 remote_ip 10.8.0.74 118574 port 159 118574 unique_id port 118574 remote_ip 10.8.0.18 118576 username amir 118576 mac 118576 bytes_out 271420 118576 bytes_in 1905567 118576 station_ip 46.225.211.139 118576 port 148 118576 unique_id port 118576 remote_ip 10.8.0.50 118581 username alipour 118581 mac 118581 bytes_out 0 118581 bytes_in 0 118581 station_ip 37.129.93.196 118581 port 68 118581 unique_id port 118581 remote_ip 10.8.1.50 118585 username alipour 118585 mac 118585 bytes_out 0 118585 bytes_in 0 118585 station_ip 37.129.93.196 118585 port 65 118585 unique_id port 118585 remote_ip 10.8.1.50 118586 username amir 118586 mac 118586 bytes_out 54849 118586 bytes_in 416142 118586 station_ip 46.225.211.139 118586 port 159 118586 unique_id port 118586 remote_ip 10.8.0.50 118587 username zare 118587 mac 118587 bytes_out 47494 118587 bytes_in 42452 118587 station_ip 94.183.214.14 118587 port 148 118587 unique_id port 118587 remote_ip 10.8.0.18 118588 username jamali 118588 kill_reason Another user logged on this global unique id 118588 mac 118588 bytes_out 0 118588 bytes_in 0 118588 station_ip 5.120.158.223 118588 port 157 118588 unique_id port 118590 username amin.saeedi 118590 unique_id port 118590 terminate_cause User-Request 118590 bytes_out 6871805 118590 bytes_in 206575890 118590 station_ip 31.56.155.237 118590 port 15729613 118590 nas_port_type Virtual 118590 remote_ip 5.5.5.211 118592 username mirzaei 118592 kill_reason Another user logged on this global unique id 118592 mac 118592 bytes_out 0 118592 bytes_in 0 118592 station_ip 5.119.152.48 118592 port 140 118592 unique_id port 118595 username mohammadmahdi 118595 kill_reason Another user logged on this global unique id 118595 mac 118595 bytes_out 0 118595 bytes_in 0 118595 station_ip 5.120.86.136 118595 port 148 118595 unique_id port 118595 remote_ip 10.8.0.54 118605 username mohammadmahdi 118605 mac 118605 bytes_out 0 118605 bytes_in 0 118605 station_ip 5.120.86.136 118605 port 162 118605 unique_id port 118605 remote_ip 10.8.0.54 118608 username ahmadipour 118608 unique_id port 118608 terminate_cause Lost-Carrier 118608 bytes_out 562450 118608 bytes_in 5270741 118608 station_ip 83.122.188.55 118608 port 15729617 118608 nas_port_type Virtual 118608 remote_ip 5.5.5.254 118614 username Mahin 118614 mac 118614 bytes_out 28945 118614 bytes_in 42039 118614 station_ip 5.119.20.46 118614 port 148 118614 unique_id port 118614 remote_ip 10.8.0.222 118617 username mirzaei 118617 kill_reason Another user logged on this global unique id 118617 mac 118617 bytes_out 0 118617 bytes_in 0 118617 station_ip 5.119.152.48 118617 port 140 118617 unique_id port 118619 username amir 118619 kill_reason Another user logged on this global unique id 118619 mac 118619 bytes_out 0 118619 bytes_in 0 118619 station_ip 46.225.211.139 118619 port 165 118619 unique_id port 118619 remote_ip 10.8.0.50 118620 username alirr 118620 unique_id port 118620 terminate_cause Lost-Carrier 118620 bytes_out 3979720 118620 bytes_in 83348430 118620 station_ip 5.120.116.215 118620 port 15729616 118620 nas_port_type Virtual 118620 remote_ip 5.5.5.180 118621 username alihosseini1 118621 mac 118621 bytes_out 0 118621 bytes_in 0 118621 station_ip 5.119.188.183 118621 port 162 118621 unique_id port 118621 remote_ip 10.8.0.166 118625 username alihosseini1 118625 kill_reason Maximum check online fails reached 118625 mac 118625 bytes_out 0 118625 bytes_in 0 118625 station_ip 5.119.188.183 118625 port 159 118625 unique_id port 118630 username Mahin 118630 mac 118630 bytes_out 0 118630 bytes_in 0 118630 station_ip 5.120.111.224 118578 remote_ip 10.8.0.50 118579 username zare 118579 mac 118579 bytes_out 0 118579 bytes_in 0 118579 station_ip 94.183.214.14 118579 port 148 118579 unique_id port 118579 remote_ip 10.8.0.18 118582 username mohammadjavad 118582 mac 118582 bytes_out 767761 118582 bytes_in 15535707 118582 station_ip 83.122.116.35 118582 port 162 118582 unique_id port 118582 remote_ip 10.8.0.142 118584 username tahmasebi 118584 kill_reason Another user logged on this global unique id 118584 mac 118584 bytes_out 0 118584 bytes_in 0 118584 station_ip 5.119.132.27 118584 port 137 118584 unique_id port 118591 username alipour 118591 mac 118591 bytes_out 8541 118591 bytes_in 14249 118591 station_ip 37.129.93.196 118591 port 65 118591 unique_id port 118591 remote_ip 10.8.1.50 118593 username amir 118593 mac 118593 bytes_out 0 118593 bytes_in 0 118593 station_ip 46.225.211.139 118593 port 162 118593 unique_id port 118593 remote_ip 10.8.0.50 118597 username zare 118597 mac 118597 bytes_out 0 118597 bytes_in 0 118597 station_ip 94.183.214.14 118597 port 159 118597 unique_id port 118597 remote_ip 10.8.0.18 118598 username amir 118598 mac 118598 bytes_out 0 118598 bytes_in 0 118598 station_ip 46.225.211.139 118598 port 167 118598 unique_id port 118598 remote_ip 10.8.0.50 118599 username mahdiyehalizadeh 118599 mac 118599 bytes_out 0 118599 bytes_in 0 118599 station_ip 37.129.234.71 118599 port 165 118599 unique_id port 118599 remote_ip 10.8.0.82 118600 username mohammadjavad 118600 mac 118600 bytes_out 0 118600 bytes_in 0 118600 station_ip 83.123.112.28 118600 port 159 118600 unique_id port 118600 remote_ip 10.8.0.142 118602 username zare 118602 mac 118602 bytes_out 0 118602 bytes_in 0 118602 station_ip 94.183.214.14 118602 port 168 118602 unique_id port 118602 remote_ip 10.8.0.18 118609 username hamid.e 118609 unique_id port 118609 terminate_cause User-Request 118609 bytes_out 4798108 118609 bytes_in 130396467 118609 station_ip 188.245.90.42 118609 port 15729614 118609 nas_port_type Virtual 118609 remote_ip 5.5.5.213 118618 username tahmasebi 118618 kill_reason Another user logged on this global unique id 118618 mac 118618 bytes_out 0 118618 bytes_in 0 118618 station_ip 5.119.132.27 118618 port 137 118618 unique_id port 118622 username zare 118622 mac 118622 bytes_out 0 118622 bytes_in 0 118622 station_ip 94.183.214.14 118622 port 159 118622 unique_id port 118622 remote_ip 10.8.0.18 118634 username tahmasebi 118634 kill_reason Another user logged on this global unique id 118634 mac 118634 bytes_out 0 118634 bytes_in 0 118634 station_ip 5.119.132.27 118634 port 137 118634 unique_id port 118640 username amir 118640 kill_reason Another user logged on this global unique id 118640 mac 118640 bytes_out 0 118640 bytes_in 0 118640 station_ip 46.225.211.139 118640 port 165 118640 unique_id port 118641 username mohammadjavad 118641 mac 118641 bytes_out 0 118641 bytes_in 0 118641 station_ip 83.123.157.231 118641 port 157 118641 unique_id port 118641 remote_ip 10.8.0.142 118643 username alipour 118643 mac 118643 bytes_out 0 118643 bytes_in 0 118643 station_ip 37.129.93.196 118643 port 65 118643 unique_id port 118643 remote_ip 10.8.1.50 118645 username alipour 118645 mac 118645 bytes_out 0 118645 bytes_in 0 118645 station_ip 37.129.93.196 118645 port 65 118645 unique_id port 118645 remote_ip 10.8.1.50 118646 username sabaghnezhad 118646 mac 118646 bytes_out 603604 118646 bytes_in 602221 118646 station_ip 83.123.96.176 118646 port 142 118607 username mirzaei 118607 kill_reason Another user logged on this global unique id 118607 mac 118607 bytes_out 0 118607 bytes_in 0 118607 station_ip 5.119.152.48 118607 port 140 118607 unique_id port 118610 username alihosseini1 118610 mac 118610 bytes_out 2665178 118610 bytes_in 27335770 118610 station_ip 5.119.188.183 118610 port 167 118610 unique_id port 118610 remote_ip 10.8.0.166 118611 username Mahin 118611 mac 118611 bytes_out 2478051 118611 bytes_in 25586035 118611 station_ip 5.119.20.46 118611 port 151 118611 unique_id port 118611 remote_ip 10.8.0.222 118612 username zare 118612 mac 118612 bytes_out 0 118612 bytes_in 0 118612 station_ip 94.183.214.14 118612 port 151 118612 unique_id port 118612 remote_ip 10.8.0.18 118613 username tahmasebi 118613 kill_reason Another user logged on this global unique id 118613 mac 118613 bytes_out 0 118613 bytes_in 0 118613 station_ip 5.119.132.27 118613 port 137 118613 unique_id port 118613 remote_ip 10.8.0.42 118615 username zare 118615 mac 118615 bytes_out 0 118615 bytes_in 0 118615 station_ip 94.183.214.14 118615 port 159 118615 unique_id port 118615 remote_ip 10.8.0.18 118616 username zare 118616 mac 118616 bytes_out 0 118616 bytes_in 0 118616 station_ip 94.183.214.14 118616 port 159 118616 unique_id port 118616 remote_ip 10.8.0.18 118623 username tahmasebi 118623 kill_reason Another user logged on this global unique id 118623 mac 118623 bytes_out 0 118623 bytes_in 0 118623 station_ip 5.119.132.27 118623 port 137 118623 unique_id port 118624 username alihosseini1 118624 mac 118624 bytes_out 0 118624 bytes_in 0 118624 station_ip 5.119.188.183 118624 port 162 118624 unique_id port 118624 remote_ip 10.8.0.166 118626 username alihosseini1 118626 mac 118626 bytes_out 0 118626 bytes_in 0 118626 station_ip 5.119.188.183 118626 port 68 118626 unique_id port 118626 remote_ip 10.8.1.106 118627 username tahmasebi 118627 kill_reason Another user logged on this global unique id 118627 mac 118627 bytes_out 0 118627 bytes_in 0 118627 station_ip 5.119.132.27 118627 port 137 118627 unique_id port 118628 username Mahin 118628 mac 118628 bytes_out 0 118628 bytes_in 0 118628 station_ip 5.120.111.224 118628 port 148 118628 unique_id port 118628 remote_ip 10.8.0.222 118629 username alihosseini1 118629 mac 118629 bytes_out 0 118629 bytes_in 0 118629 station_ip 5.119.188.183 118629 port 162 118629 unique_id port 118629 remote_ip 10.8.0.166 118633 username aminvpn 118633 mac 118633 bytes_out 0 118633 bytes_in 0 118633 station_ip 5.120.164.102 118633 port 151 118633 unique_id port 118633 remote_ip 10.8.0.14 118635 username jamali 118635 mac 118635 bytes_out 0 118635 bytes_in 0 118635 station_ip 5.120.158.223 118635 port 157 118635 unique_id port 118637 username alirr 118637 unique_id port 118637 terminate_cause Lost-Carrier 118637 bytes_out 688555 118637 bytes_in 7567883 118637 station_ip 5.120.8.191 118637 port 15729618 118637 nas_port_type Virtual 118637 remote_ip 5.5.5.179 118638 username tahmasebi 118638 kill_reason Another user logged on this global unique id 118638 mac 118638 bytes_out 0 118638 bytes_in 0 118638 station_ip 5.119.132.27 118638 port 137 118638 unique_id port 118639 username kordestani 118639 mac 118639 bytes_out 0 118639 bytes_in 0 118639 station_ip 151.235.111.1 118639 port 160 118639 unique_id port 118639 remote_ip 10.8.0.134 118644 username alirr 118644 unique_id port 118644 terminate_cause User-Request 118644 bytes_out 11816059 118644 bytes_in 250646227 118644 station_ip 5.120.158.3 118630 port 148 118630 unique_id port 118630 remote_ip 10.8.0.222 118631 username musa 118631 kill_reason Another user logged on this global unique id 118631 mac 118631 bytes_out 0 118631 bytes_in 0 118631 station_ip 83.122.96.72 118631 port 67 118631 unique_id port 118632 username mirzaei 118632 kill_reason Another user logged on this global unique id 118632 mac 118632 bytes_out 0 118632 bytes_in 0 118632 station_ip 5.119.152.48 118632 port 140 118632 unique_id port 118636 username amir 118636 kill_reason Another user logged on this global unique id 118636 mac 118636 bytes_out 0 118636 bytes_in 0 118636 station_ip 46.225.211.139 118636 port 165 118636 unique_id port 118642 username tahmasebi 118642 kill_reason Another user logged on this global unique id 118642 mac 118642 bytes_out 0 118642 bytes_in 0 118642 station_ip 5.119.132.27 118642 port 137 118642 unique_id port 118648 username tahmasebi 118648 kill_reason Another user logged on this global unique id 118648 mac 118648 bytes_out 0 118648 bytes_in 0 118648 station_ip 5.119.132.27 118648 port 137 118648 unique_id port 118653 username amir 118653 kill_reason Another user logged on this global unique id 118653 mac 118653 bytes_out 0 118653 bytes_in 0 118653 station_ip 46.225.211.139 118653 port 165 118653 unique_id port 118658 username farhad1 118658 kill_reason Another user logged on this global unique id 118658 mac 118658 bytes_out 0 118658 bytes_in 0 118658 station_ip 5.120.175.26 118658 port 157 118658 unique_id port 118659 username aminvpn 118659 mac 118659 bytes_out 24222 118659 bytes_in 115725 118659 station_ip 5.120.164.102 118659 port 162 118659 unique_id port 118659 remote_ip 10.8.0.14 118662 username farhad1 118662 kill_reason Another user logged on this global unique id 118662 mac 118662 bytes_out 0 118662 bytes_in 0 118662 station_ip 5.120.175.26 118662 port 157 118662 unique_id port 118664 username sabaghnezhad 118664 mac 118664 bytes_out 293604 118664 bytes_in 2866410 118664 station_ip 83.123.96.176 118664 port 142 118664 unique_id port 118664 remote_ip 10.8.0.186 118667 username aminvpn 118667 mac 118667 bytes_out 169851 118667 bytes_in 771952 118667 station_ip 5.120.164.102 118667 port 148 118667 unique_id port 118667 remote_ip 10.8.0.14 118669 username aminvpn 118669 mac 118669 bytes_out 0 118669 bytes_in 0 118669 station_ip 5.120.164.102 118669 port 148 118669 unique_id port 118669 remote_ip 10.8.0.14 118676 username aminvpn 118676 mac 118676 bytes_out 0 118676 bytes_in 0 118676 station_ip 5.120.164.102 118676 port 148 118676 unique_id port 118676 remote_ip 10.8.0.14 118678 username aminvpn 118678 mac 118678 bytes_out 253609 118678 bytes_in 436772 118678 station_ip 31.59.43.200 118678 port 65 118678 unique_id port 118678 remote_ip 10.8.1.6 118682 username amir 118682 mac 118682 bytes_out 0 118682 bytes_in 0 118682 station_ip 46.225.211.139 118682 port 148 118682 unique_id port 118682 remote_ip 10.8.0.50 118687 username amir 118687 mac 118687 bytes_out 0 118687 bytes_in 0 118687 station_ip 46.225.211.139 118687 port 157 118687 unique_id port 118687 remote_ip 10.8.0.50 118689 username aminvpn 118689 mac 118689 bytes_out 113474 118689 bytes_in 292429 118689 station_ip 151.238.236.135 118689 port 122 118689 unique_id port 118689 remote_ip 10.8.0.14 118690 username malekpoir 118690 mac 118690 bytes_out 134362 118690 bytes_in 266262 118690 station_ip 5.119.237.28 118690 port 68 118690 unique_id port 118690 remote_ip 10.8.1.54 118691 username amir 118691 mac 118691 bytes_out 69894 118644 port 15729619 118644 nas_port_type Virtual 118644 remote_ip 5.5.5.186 118649 username aminvpn 118649 mac 118649 bytes_out 0 118649 bytes_in 0 118649 station_ip 31.59.41.77 118649 port 142 118649 unique_id port 118649 remote_ip 10.8.0.14 118650 username aminvpn 118650 mac 118650 bytes_out 0 118650 bytes_in 0 118650 station_ip 31.59.41.77 118650 port 148 118650 unique_id port 118650 remote_ip 10.8.0.14 118652 username aminvpn 118652 mac 118652 bytes_out 0 118652 bytes_in 0 118652 station_ip 31.59.41.77 118652 port 142 118652 unique_id port 118652 remote_ip 10.8.0.14 118656 username forozande 118656 mac 118656 bytes_out 0 118656 bytes_in 0 118656 station_ip 83.122.224.215 118656 port 160 118656 unique_id port 118656 remote_ip 10.8.0.74 118660 username ahmadipour 118660 unique_id port 118660 terminate_cause Lost-Carrier 118660 bytes_out 539958 118660 bytes_in 3606437 118660 station_ip 83.122.129.219 118660 port 15729621 118660 nas_port_type Virtual 118660 remote_ip 5.5.5.203 118661 username aminvpn 118661 unique_id port 118661 terminate_cause Lost-Carrier 118661 bytes_out 1692886 118661 bytes_in 19070858 118661 station_ip 31.59.41.77 118661 port 15729620 118661 nas_port_type Virtual 118661 remote_ip 5.5.5.188 118665 username forozande 118665 mac 118665 bytes_out 70490 118665 bytes_in 75458 118665 station_ip 113.203.103.246 118665 port 160 118665 unique_id port 118665 remote_ip 10.8.0.74 118668 username sabaghnezhad 118668 mac 118668 bytes_out 0 118668 bytes_in 0 118668 station_ip 83.123.45.154 118668 port 162 118668 unique_id port 118668 remote_ip 10.8.0.186 118670 username alirr 118670 unique_id port 118670 terminate_cause User-Request 118670 bytes_out 1470975 118670 bytes_in 18423012 118670 station_ip 5.120.169.207 118670 port 15729622 118670 nas_port_type Virtual 118670 remote_ip 5.5.5.255 118673 username farhad1 118673 mac 118673 bytes_out 2923760 118673 bytes_in 23933742 118673 station_ip 5.119.7.79 118673 port 142 118673 unique_id port 118673 remote_ip 10.8.0.26 118675 username jamali 118675 mac 118675 bytes_out 0 118675 bytes_in 0 118675 station_ip 5.120.158.223 118675 port 151 118675 unique_id port 118675 remote_ip 10.8.0.150 118677 username amir 118677 mac 118677 bytes_out 0 118677 bytes_in 0 118677 station_ip 46.225.211.139 118677 port 157 118677 unique_id port 118677 remote_ip 10.8.0.50 118680 username khalili 118680 mac 118680 bytes_out 0 118680 bytes_in 0 118680 station_ip 5.120.15.195 118680 port 122 118680 unique_id port 118683 username khalili 118683 mac 118683 bytes_out 5829 118683 bytes_in 9930 118683 station_ip 5.120.15.195 118683 port 157 118683 unique_id port 118683 remote_ip 10.8.0.86 118685 username amir 118685 mac 118685 bytes_out 24808 118685 bytes_in 78070 118685 station_ip 46.225.211.139 118685 port 148 118685 unique_id port 118685 remote_ip 10.8.0.50 118686 username amir 118686 mac 118686 bytes_out 41670 118686 bytes_in 224901 118686 station_ip 46.225.211.139 118686 port 157 118686 unique_id port 118686 remote_ip 10.8.0.50 118688 username amir 118688 mac 118688 bytes_out 0 118688 bytes_in 0 118688 station_ip 46.225.211.139 118688 port 157 118688 unique_id port 118688 remote_ip 10.8.0.50 118692 username jamali 118692 mac 118692 bytes_out 0 118692 bytes_in 0 118692 station_ip 5.120.158.223 118692 port 151 118692 unique_id port 118692 remote_ip 10.8.0.150 118693 username alirr 118693 unique_id port 118693 terminate_cause Lost-Carrier 118693 bytes_out 1534806 118646 unique_id port 118646 remote_ip 10.8.0.186 118647 username aminvpn 118647 mac 118647 bytes_out 318533 118647 bytes_in 1470158 118647 station_ip 31.59.41.77 118647 port 148 118647 unique_id port 118647 remote_ip 10.8.0.14 118651 username mohammadjavad 118651 mac 118651 bytes_out 0 118651 bytes_in 0 118651 station_ip 83.123.71.87 118651 port 65 118651 unique_id port 118651 remote_ip 10.8.1.146 118654 username farhad1 118654 kill_reason Another user logged on this global unique id 118654 mac 118654 bytes_out 0 118654 bytes_in 0 118654 station_ip 5.120.175.26 118654 port 157 118654 unique_id port 118654 remote_ip 10.8.0.26 118655 username aminvpn 118655 mac 118655 bytes_out 0 118655 bytes_in 0 118655 station_ip 31.59.43.200 118655 port 142 118655 unique_id port 118655 remote_ip 10.8.0.14 118657 username sabaghnezhad 118657 mac 118657 bytes_out 0 118657 bytes_in 0 118657 station_ip 83.123.96.176 118657 port 148 118657 unique_id port 118657 remote_ip 10.8.0.186 118663 username malekpoir 118663 mac 118663 bytes_out 0 118663 bytes_in 0 118663 station_ip 5.119.237.28 118663 port 166 118663 unique_id port 118663 remote_ip 10.8.0.58 118666 username farhad1 118666 mac 118666 bytes_out 0 118666 bytes_in 0 118666 station_ip 5.120.175.26 118666 port 157 118666 unique_id port 118671 username aminvpn 118671 mac 118671 bytes_out 0 118671 bytes_in 0 118671 station_ip 5.120.164.102 118671 port 157 118671 unique_id port 118671 remote_ip 10.8.0.14 118672 username amir 118672 mac 118672 bytes_out 0 118672 bytes_in 0 118672 station_ip 46.225.211.139 118672 port 165 118672 unique_id port 118674 username farhad1 118674 mac 118674 bytes_out 0 118674 bytes_in 0 118674 station_ip 5.120.170.164 118674 port 157 118674 unique_id port 118674 remote_ip 10.8.0.26 118679 username aminvpn 118679 mac 118679 bytes_out 0 118679 bytes_in 0 118679 station_ip 5.120.164.102 118679 port 148 118679 unique_id port 118679 remote_ip 10.8.0.14 118681 username aminvpn 118681 mac 118681 bytes_out 12093 118681 bytes_in 15363 118681 station_ip 5.120.164.102 118681 port 71 118681 unique_id port 118681 remote_ip 10.8.1.6 118684 username forozande 118684 mac 118684 bytes_out 277167 118684 bytes_in 2597982 118684 station_ip 83.123.190.151 118684 port 122 118684 unique_id port 118684 remote_ip 10.8.0.74 118697 username forozande 118697 mac 118697 bytes_out 170670 118697 bytes_in 303993 118697 station_ip 83.123.145.38 118697 port 157 118697 unique_id port 118697 remote_ip 10.8.0.74 118698 username farhad1 118698 kill_reason Another user logged on this global unique id 118698 mac 118698 bytes_out 0 118698 bytes_in 0 118698 station_ip 5.120.170.164 118698 port 142 118698 unique_id port 118698 remote_ip 10.8.0.26 118701 username amir 118701 mac 118701 bytes_out 57653 118701 bytes_in 395597 118701 station_ip 46.225.211.139 118701 port 151 118701 unique_id port 118701 remote_ip 10.8.0.50 118705 username alihosseini1 118705 mac 118705 bytes_out 0 118705 bytes_in 0 118705 station_ip 5.119.207.165 118705 port 122 118705 unique_id port 118705 remote_ip 10.8.0.166 118706 username forozande 118706 mac 118706 bytes_out 135114 118706 bytes_in 291689 118706 station_ip 83.122.189.35 118706 port 162 118706 unique_id port 118706 remote_ip 10.8.0.74 118708 username sabaghnezhad 118708 mac 118708 bytes_out 212980 118708 bytes_in 191425 118708 station_ip 83.123.159.56 118708 port 160 118708 unique_id port 118691 bytes_in 242620 118691 station_ip 46.225.211.139 118691 port 157 118691 unique_id port 118691 remote_ip 10.8.0.50 118694 username sedighe 118694 mac 118694 bytes_out 90309 118694 bytes_in 232872 118694 station_ip 83.123.12.182 118694 port 122 118694 unique_id port 118694 remote_ip 10.8.0.146 118695 username alireza 118695 unique_id port 118695 terminate_cause Lost-Carrier 118695 bytes_out 416660 118695 bytes_in 5233672 118695 station_ip 5.119.73.145 118695 port 15729625 118695 nas_port_type Virtual 118695 remote_ip 5.5.5.197 118699 username aminvpn 118699 mac 118699 bytes_out 0 118699 bytes_in 0 118699 station_ip 31.59.44.86 118699 port 68 118699 unique_id port 118699 remote_ip 10.8.1.6 118700 username farhad1 118700 mac 118700 bytes_out 0 118700 bytes_in 0 118700 station_ip 5.120.170.164 118700 port 142 118700 unique_id port 118702 username farhad1 118702 mac 118702 bytes_out 0 118702 bytes_in 0 118702 station_ip 5.120.170.164 118702 port 142 118702 unique_id port 118702 remote_ip 10.8.0.26 118703 username alihosseini1 118703 kill_reason Another user logged on this global unique id 118703 mac 118703 bytes_out 0 118703 bytes_in 0 118703 station_ip 5.119.207.165 118703 port 122 118703 unique_id port 118703 remote_ip 10.8.0.166 118704 username alihosseini1 118704 mac 118704 bytes_out 0 118704 bytes_in 0 118704 station_ip 5.119.207.165 118704 port 122 118704 unique_id port 118707 username amir 118707 mac 118707 bytes_out 255878 118707 bytes_in 307017 118707 station_ip 46.225.211.139 118707 port 151 118707 unique_id port 118707 remote_ip 10.8.0.50 118711 username farhad1 118711 mac 118711 bytes_out 0 118711 bytes_in 0 118711 station_ip 5.119.73.101 118711 port 122 118711 unique_id port 118711 remote_ip 10.8.0.26 118714 username aminvpn 118714 mac 118714 bytes_out 10276 118714 bytes_in 16475 118714 station_ip 5.120.164.102 118714 port 162 118714 unique_id port 118714 remote_ip 10.8.0.14 118718 username hamidsalari 118718 mac 118718 bytes_out 900009 118718 bytes_in 20041914 118718 station_ip 46.225.214.84 118718 port 167 118718 unique_id port 118718 remote_ip 10.8.0.230 118719 username alihosseini1 118719 mac 118719 bytes_out 443178 118719 bytes_in 5755973 118719 station_ip 5.119.207.165 118719 port 151 118719 unique_id port 118719 remote_ip 10.8.0.166 118721 username morteza 118721 mac 118721 bytes_out 449566 118721 bytes_in 3928468 118721 station_ip 83.122.151.114 118721 port 165 118721 unique_id port 118721 remote_ip 10.8.0.46 118723 username zare 118723 mac 118723 bytes_out 214389 118723 bytes_in 3110328 118723 station_ip 37.27.38.78 118723 port 151 118723 unique_id port 118723 remote_ip 10.8.0.18 118725 username zare 118725 mac 118725 bytes_out 0 118725 bytes_in 0 118725 station_ip 37.27.38.78 118725 port 71 118725 unique_id port 118725 remote_ip 10.8.1.58 118729 username musa 118729 mac 118729 bytes_out 0 118729 bytes_in 0 118729 station_ip 83.122.96.72 118729 port 67 118729 unique_id port 118731 username aminvpn 118731 unique_id port 118731 terminate_cause Lost-Carrier 118731 bytes_out 633083 118731 bytes_in 7289408 118731 station_ip 5.126.190.156 118731 port 15729633 118731 nas_port_type Virtual 118731 remote_ip 5.5.5.255 118732 username zare 118732 mac 118732 bytes_out 0 118732 bytes_in 0 118732 station_ip 37.27.38.78 118732 port 162 118732 unique_id port 118732 remote_ip 10.8.0.18 118734 username musa 118734 mac 118734 bytes_out 83492 118734 bytes_in 3274510 118693 bytes_in 21998392 118693 station_ip 5.120.169.207 118693 port 15729623 118693 nas_port_type Virtual 118693 remote_ip 5.5.5.255 118696 username jamali 118696 mac 118696 bytes_out 0 118696 bytes_in 0 118696 station_ip 5.120.158.223 118696 port 151 118696 unique_id port 118696 remote_ip 10.8.0.150 118709 username forozande 118709 mac 118709 bytes_out 43324 118709 bytes_in 117621 118709 station_ip 37.129.245.13 118709 port 122 118709 unique_id port 118709 remote_ip 10.8.0.74 118710 username farhad1 118710 mac 118710 bytes_out 2237313 118710 bytes_in 13388007 118710 station_ip 5.119.247.83 118710 port 142 118710 unique_id port 118710 remote_ip 10.8.0.26 118712 username aminvpn 118712 mac 118712 bytes_out 288895 118712 bytes_in 1286122 118712 station_ip 31.59.46.105 118712 port 157 118712 unique_id port 118712 remote_ip 10.8.0.14 118715 username amir 118715 mac 118715 bytes_out 76173 118715 bytes_in 337077 118715 station_ip 46.225.211.139 118715 port 157 118715 unique_id port 118715 remote_ip 10.8.0.50 118717 username houshang 118717 mac 118717 bytes_out 1752725 118717 bytes_in 7471821 118717 station_ip 5.119.175.133 118717 port 162 118717 unique_id port 118717 remote_ip 10.8.0.22 118722 username hamidsalari 118722 mac 118722 bytes_out 736633 118722 bytes_in 17852487 118722 station_ip 46.225.214.84 118722 port 162 118722 unique_id port 118722 remote_ip 10.8.0.230 118726 username hamidsalari1 118726 mac 118726 bytes_out 1823585 118726 bytes_in 37019424 118726 station_ip 37.129.118.118 118726 port 166 118726 unique_id port 118726 remote_ip 10.8.0.226 118733 username houshang 118733 kill_reason Another user logged on this global unique id 118733 mac 118733 bytes_out 0 118733 bytes_in 0 118733 station_ip 5.120.98.129 118733 port 68 118733 unique_id port 118733 remote_ip 10.8.1.70 118738 username malekpoir 118738 kill_reason Another user logged on this global unique id 118738 mac 118738 bytes_out 0 118738 bytes_in 0 118738 station_ip 5.119.237.28 118738 port 65 118738 unique_id port 118738 remote_ip 10.8.1.54 118739 username zare 118739 mac 118739 bytes_out 0 118739 bytes_in 0 118739 station_ip 37.27.38.78 118739 port 166 118739 unique_id port 118739 remote_ip 10.8.0.18 118742 username houshang 118742 kill_reason Another user logged on this global unique id 118742 mac 118742 bytes_out 0 118742 bytes_in 0 118742 station_ip 5.120.98.129 118742 port 68 118742 unique_id port 118744 username musa 118744 mac 118744 bytes_out 7254 118744 bytes_in 10779 118744 station_ip 83.122.96.72 118744 port 168 118744 unique_id port 118744 remote_ip 10.8.0.6 118746 username morteza 118746 kill_reason Another user logged on this global unique id 118746 mac 118746 bytes_out 0 118746 bytes_in 0 118746 station_ip 83.122.151.114 118746 port 165 118746 unique_id port 118746 remote_ip 10.8.0.46 118748 username zare 118748 mac 118748 bytes_out 0 118748 bytes_in 0 118748 station_ip 37.27.38.78 118748 port 167 118748 unique_id port 118748 remote_ip 10.8.0.18 118749 username alihosseini1 118749 mac 118749 bytes_out 0 118749 bytes_in 0 118749 station_ip 5.119.207.165 118749 port 71 118749 unique_id port 118749 remote_ip 10.8.1.106 118750 username mohammadjavad 118750 mac 118750 bytes_out 0 118750 bytes_in 0 118750 station_ip 83.122.143.9 118750 port 67 118750 unique_id port 118750 remote_ip 10.8.1.146 118751 username zare 118751 mac 118751 bytes_out 0 118751 bytes_in 0 118751 station_ip 37.27.38.78 118751 port 162 118751 unique_id port 118751 remote_ip 10.8.0.18 118708 remote_ip 10.8.0.186 118713 username zare 118713 mac 118713 bytes_out 316674 118713 bytes_in 4008044 118713 station_ip 37.27.38.78 118713 port 142 118713 unique_id port 118713 remote_ip 10.8.0.18 118716 username zare 118716 mac 118716 bytes_out 0 118716 bytes_in 0 118716 station_ip 37.27.38.78 118716 port 157 118716 unique_id port 118716 remote_ip 10.8.0.18 118720 username amir 118720 mac 118720 bytes_out 327084 118720 bytes_in 967482 118720 station_ip 46.225.211.139 118720 port 157 118720 unique_id port 118720 remote_ip 10.8.0.50 118724 username amir 118724 mac 118724 bytes_out 10800 118724 bytes_in 25023 118724 station_ip 46.225.211.139 118724 port 151 118724 unique_id port 118724 remote_ip 10.8.0.50 118727 username alihosseini1 118727 mac 118727 bytes_out 0 118727 bytes_in 0 118727 station_ip 5.119.207.165 118727 port 71 118727 unique_id port 118727 remote_ip 10.8.1.106 118728 username alihosseini1 118728 mac 118728 bytes_out 158173 118728 bytes_in 82469 118728 station_ip 5.119.207.165 118728 port 167 118728 unique_id port 118728 remote_ip 10.8.0.166 118730 username alihosseini1 118730 mac 118730 bytes_out 1880 118730 bytes_in 4319 118730 station_ip 5.119.207.165 118730 port 162 118730 unique_id port 118730 remote_ip 10.8.0.166 118735 username alihosseini1 118735 mac 118735 bytes_out 0 118735 bytes_in 0 118735 station_ip 5.119.207.165 118735 port 67 118735 unique_id port 118735 remote_ip 10.8.1.106 118736 username alihosseini1 118736 mac 118736 bytes_out 0 118736 bytes_in 0 118736 station_ip 5.119.207.165 118736 port 67 118736 unique_id port 118736 remote_ip 10.8.1.106 118741 username rezasekonji 118741 mac 118741 bytes_out 359926 118741 bytes_in 5777592 118741 station_ip 83.122.70.165 118741 port 162 118741 unique_id port 118741 remote_ip 10.8.0.130 118743 username mosi 118743 mac 118743 bytes_out 8790 118743 bytes_in 22182 118743 station_ip 5.134.156.192 118743 port 167 118743 unique_id port 118743 remote_ip 10.8.0.138 118757 username houshang 118757 kill_reason Another user logged on this global unique id 118757 mac 118757 bytes_out 0 118757 bytes_in 0 118757 station_ip 5.120.98.129 118757 port 68 118757 unique_id port 118758 username alihosseini1 118758 mac 118758 bytes_out 0 118758 bytes_in 0 118758 station_ip 5.119.207.165 118758 port 160 118758 unique_id port 118758 remote_ip 10.8.0.166 118768 username zare 118768 mac 118768 bytes_out 0 118768 bytes_in 0 118768 station_ip 37.27.38.78 118768 port 67 118768 unique_id port 118768 remote_ip 10.8.1.58 118770 username tahmasebi 118770 kill_reason Another user logged on this global unique id 118770 mac 118770 bytes_out 0 118770 bytes_in 0 118770 station_ip 5.119.132.27 118770 port 137 118770 unique_id port 118772 username zare 118772 mac 118772 bytes_out 9192 118772 bytes_in 17944 118772 station_ip 37.27.38.78 118772 port 142 118772 unique_id port 118772 remote_ip 10.8.0.18 118777 username hamid.e 118777 unique_id port 118777 terminate_cause User-Request 118777 bytes_out 11961649 118777 bytes_in 185354146 118777 station_ip 188.245.90.42 118777 port 15729624 118777 nas_port_type Virtual 118777 remote_ip 5.5.5.192 118778 username farhad1 118778 mac 118778 bytes_out 0 118778 bytes_in 0 118778 station_ip 5.119.73.101 118778 port 122 118778 unique_id port 118784 username farhad1 118784 mac 118784 bytes_out 1849903 118784 bytes_in 9683454 118784 station_ip 5.119.51.216 118784 port 142 118784 unique_id port 118734 station_ip 83.122.96.72 118734 port 165 118734 unique_id port 118734 remote_ip 10.8.0.6 118737 username zare 118737 mac 118737 bytes_out 0 118737 bytes_in 0 118737 station_ip 37.27.38.78 118737 port 166 118737 unique_id port 118737 remote_ip 10.8.0.18 118740 username alihosseini1 118740 mac 118740 bytes_out 0 118740 bytes_in 0 118740 station_ip 5.119.207.165 118740 port 67 118740 unique_id port 118740 remote_ip 10.8.1.106 118745 username alihosseini1 118745 mac 118745 bytes_out 0 118745 bytes_in 0 118745 station_ip 5.119.207.165 118745 port 71 118745 unique_id port 118745 remote_ip 10.8.1.106 118747 username rezasekonji 118747 mac 118747 bytes_out 45101 118747 bytes_in 105658 118747 station_ip 83.122.70.165 118747 port 162 118747 unique_id port 118747 remote_ip 10.8.0.130 118752 username alihosseini1 118752 mac 118752 bytes_out 8811 118752 bytes_in 28728 118752 station_ip 5.119.207.165 118752 port 162 118752 unique_id port 118752 remote_ip 10.8.0.166 118754 username forozande 118754 mac 118754 bytes_out 1135459 118754 bytes_in 16053029 118754 station_ip 83.123.217.24 118754 port 160 118754 unique_id port 118754 remote_ip 10.8.0.74 118756 username rezasekonji 118756 mac 118756 bytes_out 2782 118756 bytes_in 4922 118756 station_ip 83.122.70.165 118756 port 167 118756 unique_id port 118756 remote_ip 10.8.0.130 118759 username sedighe 118759 mac 118759 bytes_out 269535 118759 bytes_in 1098774 118759 station_ip 83.122.60.173 118759 port 166 118759 unique_id port 118759 remote_ip 10.8.0.146 118760 username zare 118760 mac 118760 bytes_out 0 118760 bytes_in 0 118760 station_ip 37.27.38.78 118760 port 67 118760 unique_id port 118760 remote_ip 10.8.1.58 118761 username forozande 118761 mac 118761 bytes_out 69259 118761 bytes_in 735026 118761 station_ip 83.123.4.245 118761 port 160 118761 unique_id port 118761 remote_ip 10.8.0.74 118763 username zare 118763 mac 118763 bytes_out 0 118763 bytes_in 0 118763 station_ip 37.27.38.78 118763 port 67 118763 unique_id port 118763 remote_ip 10.8.1.58 118764 username alihosseini1 118764 mac 118764 bytes_out 11484 118764 bytes_in 45932 118764 station_ip 5.119.207.165 118764 port 160 118764 unique_id port 118764 remote_ip 10.8.0.166 118766 username zare 118766 mac 118766 bytes_out 0 118766 bytes_in 0 118766 station_ip 37.27.38.78 118766 port 67 118766 unique_id port 118766 remote_ip 10.8.1.58 118767 username morteza 118767 kill_reason Another user logged on this global unique id 118767 mac 118767 bytes_out 0 118767 bytes_in 0 118767 station_ip 83.122.151.114 118767 port 165 118767 unique_id port 118771 username houshang 118771 kill_reason Another user logged on this global unique id 118771 mac 118771 bytes_out 0 118771 bytes_in 0 118771 station_ip 5.120.98.129 118771 port 68 118771 unique_id port 118773 username alihosseini1 118773 mac 118773 bytes_out 0 118773 bytes_in 0 118773 station_ip 5.119.207.165 118773 port 142 118773 unique_id port 118773 remote_ip 10.8.0.166 118774 username farhad1 118774 kill_reason Another user logged on this global unique id 118774 mac 118774 bytes_out 0 118774 bytes_in 0 118774 station_ip 5.119.73.101 118774 port 122 118774 unique_id port 118775 username alihosseini1 118775 mac 118775 bytes_out 0 118775 bytes_in 0 118775 station_ip 5.119.207.165 118775 port 142 118775 unique_id port 118775 remote_ip 10.8.0.166 118781 username mahdiyehalizadeh 118781 mac 118781 bytes_out 38729 118781 bytes_in 40006 118753 username morteza 118753 kill_reason Another user logged on this global unique id 118753 mac 118753 bytes_out 0 118753 bytes_in 0 118753 station_ip 83.122.151.114 118753 port 165 118753 unique_id port 118755 username farhad1 118755 kill_reason Another user logged on this global unique id 118755 mac 118755 bytes_out 0 118755 bytes_in 0 118755 station_ip 5.119.73.101 118755 port 122 118755 unique_id port 118755 remote_ip 10.8.0.26 118762 username zare 118762 mac 118762 bytes_out 0 118762 bytes_in 0 118762 station_ip 37.27.38.78 118762 port 67 118762 unique_id port 118762 remote_ip 10.8.1.58 118765 username zare 118765 mac 118765 bytes_out 0 118765 bytes_in 0 118765 station_ip 37.27.38.78 118765 port 67 118765 unique_id port 118765 remote_ip 10.8.1.58 118769 username aminvpn 118769 mac 118769 bytes_out 180116 118769 bytes_in 700097 118769 station_ip 31.59.46.105 118769 port 142 118769 unique_id port 118769 remote_ip 10.8.0.14 118776 username houshang 118776 mac 118776 bytes_out 0 118776 bytes_in 0 118776 station_ip 5.120.98.129 118776 port 68 118776 unique_id port 118779 username morteza 118779 mac 118779 bytes_out 0 118779 bytes_in 0 118779 station_ip 83.122.151.114 118779 port 165 118779 unique_id port 118780 username aminvpn 118780 mac 118780 bytes_out 0 118780 bytes_in 0 118780 station_ip 5.120.164.102 118780 port 160 118780 unique_id port 118780 remote_ip 10.8.0.14 118785 username mirzaei 118785 kill_reason Another user logged on this global unique id 118785 mac 118785 bytes_out 0 118785 bytes_in 0 118785 station_ip 5.119.152.48 118785 port 140 118785 unique_id port 118786 username aminvpn 118786 mac 118786 bytes_out 0 118786 bytes_in 0 118786 station_ip 5.120.164.102 118786 port 162 118786 unique_id port 118786 remote_ip 10.8.0.14 118792 username farhad1 118792 kill_reason Another user logged on this global unique id 118792 mac 118792 bytes_out 0 118792 bytes_in 0 118792 station_ip 5.120.101.79 118792 port 142 118792 unique_id port 118796 username hamidsalari1 118796 mac 118796 bytes_out 140000 118796 bytes_in 239964 118796 station_ip 37.129.118.118 118796 port 151 118796 unique_id port 118796 remote_ip 10.8.0.226 118800 username morteza 118800 kill_reason Maximum number of concurrent logins reached 118800 mac 118800 bytes_out 0 118800 bytes_in 0 118800 station_ip 83.122.151.114 118800 port 68 118800 unique_id port 118802 username malekpoir 118802 mac 118802 bytes_out 0 118802 bytes_in 0 118802 station_ip 5.119.237.28 118802 port 65 118802 unique_id port 118808 username avaanna 118808 mac 118808 bytes_out 0 118808 bytes_in 0 118808 station_ip 37.129.51.106 118808 port 162 118808 unique_id port 118809 username aminvpn 118809 mac 118809 bytes_out 434289 118809 bytes_in 3712642 118809 station_ip 31.59.46.105 118809 port 160 118809 unique_id port 118809 remote_ip 10.8.0.14 118814 username alirezazadeh 118814 unique_id port 118814 terminate_cause Lost-Carrier 118814 bytes_out 146 118814 bytes_in 272 118814 station_ip 5.120.57.22 118814 port 15729639 118814 nas_port_type Virtual 118814 remote_ip 5.5.5.174 118818 username musa 118818 mac 118818 bytes_out 0 118818 bytes_in 0 118818 station_ip 37.129.199.141 118818 port 122 118818 unique_id port 118818 remote_ip 10.8.0.6 118820 username tahmasebi 118820 kill_reason Another user logged on this global unique id 118820 mac 118820 bytes_out 0 118820 bytes_in 0 118820 station_ip 5.119.132.27 118820 port 137 118820 unique_id port 118821 username musa 118821 mac 118781 station_ip 83.122.145.36 118781 port 122 118781 unique_id port 118781 remote_ip 10.8.0.82 118782 username alihosseini1 118782 mac 118782 bytes_out 0 118782 bytes_in 0 118782 station_ip 5.119.207.165 118782 port 122 118782 unique_id port 118782 remote_ip 10.8.0.166 118783 username mohammadjavad 118783 mac 118783 bytes_out 0 118783 bytes_in 0 118783 station_ip 83.122.118.111 118783 port 67 118783 unique_id port 118783 remote_ip 10.8.1.146 118788 username alihosseini1 118788 mac 118788 bytes_out 0 118788 bytes_in 0 118788 station_ip 5.119.207.165 118788 port 162 118788 unique_id port 118788 remote_ip 10.8.0.166 118789 username mirzaei 118789 kill_reason Another user logged on this global unique id 118789 mac 118789 bytes_out 0 118789 bytes_in 0 118789 station_ip 5.119.152.48 118789 port 140 118789 unique_id port 118790 username ahmadipour 118790 unique_id port 118790 terminate_cause Lost-Carrier 118790 bytes_out 2299176 118790 bytes_in 66637220 118790 station_ip 83.122.148.75 118790 port 15729634 118790 nas_port_type Virtual 118790 remote_ip 5.5.5.4 118795 username alirr 118795 unique_id port 118795 terminate_cause User-Request 118795 bytes_out 0 118795 bytes_in 224 118795 station_ip 37.27.16.179 118795 port 15729636 118795 nas_port_type Virtual 118795 remote_ip 5.5.5.167 118797 username mahdiyehalizadeh 118797 kill_reason Another user logged on this global unique id 118797 mac 118797 bytes_out 0 118797 bytes_in 0 118797 station_ip 113.203.106.101 118797 port 165 118797 unique_id port 118797 remote_ip 10.8.0.82 118801 username morteza 118801 mac 118801 bytes_out 0 118801 bytes_in 0 118801 station_ip 83.122.151.114 118801 port 151 118801 unique_id port 118801 remote_ip 10.8.0.46 118806 username aminvpn 118806 unique_id port 118806 terminate_cause User-Request 118806 bytes_out 6694456 118806 bytes_in 191782240 118806 station_ip 31.59.46.105 118806 port 15729632 118806 nas_port_type Virtual 118806 remote_ip 5.5.5.205 118807 username farhad1 118807 mac 118807 bytes_out 0 118807 bytes_in 0 118807 station_ip 5.119.254.255 118807 port 65 118807 unique_id port 118807 remote_ip 10.8.1.166 118810 username aminvpn 118810 mac 118810 bytes_out 0 118810 bytes_in 0 118810 station_ip 5.120.164.102 118810 port 142 118810 unique_id port 118810 remote_ip 10.8.0.14 118811 username avaanna 118811 mac 118811 bytes_out 0 118811 bytes_in 0 118811 station_ip 37.129.51.106 118811 port 65 118811 unique_id port 118811 remote_ip 10.8.1.46 118812 username alirr 118812 unique_id port 118812 terminate_cause User-Request 118812 bytes_out 1660839 118812 bytes_in 14525187 118812 station_ip 37.27.16.179 118812 port 15729637 118812 nas_port_type Virtual 118812 remote_ip 5.5.5.168 118813 username mahdiyehalizadeh 118813 mac 118813 bytes_out 0 118813 bytes_in 0 118813 station_ip 113.203.106.101 118813 port 165 118813 unique_id port 118815 username mohammadjavad 118815 mac 118815 bytes_out 0 118815 bytes_in 0 118815 station_ip 37.129.106.39 118815 port 65 118815 unique_id port 118815 remote_ip 10.8.1.146 118817 username rezaei 118817 mac 118817 bytes_out 1732936 118817 bytes_in 19014195 118817 station_ip 5.119.16.119 118817 port 151 118817 unique_id port 118817 remote_ip 10.8.0.206 118826 username hamidsalari1 118826 kill_reason Another user logged on this global unique id 118826 mac 118826 bytes_out 0 118826 bytes_in 0 118826 station_ip 37.129.118.118 118826 port 65 118826 unique_id port 118826 remote_ip 10.8.1.170 118828 username houshang 118828 kill_reason Another user logged on this global unique id 118828 mac 118828 bytes_out 0 118784 remote_ip 10.8.0.26 118787 username alihosseini1 118787 mac 118787 bytes_out 2447 118787 bytes_in 5225 118787 station_ip 5.119.207.165 118787 port 67 118787 unique_id port 118787 remote_ip 10.8.1.106 118791 username farhad1 118791 kill_reason Another user logged on this global unique id 118791 mac 118791 bytes_out 0 118791 bytes_in 0 118791 station_ip 5.120.101.79 118791 port 142 118791 unique_id port 118791 remote_ip 10.8.0.26 118793 username arabpour 118793 unique_id port 118793 terminate_cause User-Request 118793 bytes_out 278 118793 bytes_in 316 118793 station_ip 83.122.71.215 118793 port 15729635 118793 nas_port_type Virtual 118793 remote_ip 5.5.5.165 118794 username avaanna 118794 kill_reason Another user logged on this global unique id 118794 mac 118794 bytes_out 0 118794 bytes_in 0 118794 station_ip 37.129.51.106 118794 port 162 118794 unique_id port 118794 remote_ip 10.8.0.98 118798 username morteza 118798 mac 118798 bytes_out 131414 118798 bytes_in 1752835 118798 station_ip 83.122.151.114 118798 port 166 118798 unique_id port 118798 remote_ip 10.8.0.46 118799 username morteza 118799 mac 118799 bytes_out 0 118799 bytes_in 0 118799 station_ip 83.122.151.114 118799 port 151 118799 unique_id port 118799 remote_ip 10.8.0.46 118803 username morteza 118803 kill_reason Maximum check online fails reached 118803 mac 118803 bytes_out 0 118803 bytes_in 0 118803 station_ip 83.122.151.114 118803 port 67 118803 unique_id port 118804 username sedighe 118804 mac 118804 bytes_out 1962742 118804 bytes_in 7085802 118804 station_ip 83.122.45.140 118804 port 122 118804 unique_id port 118804 remote_ip 10.8.0.146 118805 username farhad1 118805 mac 118805 bytes_out 0 118805 bytes_in 0 118805 station_ip 5.120.101.79 118805 port 142 118805 unique_id port 118816 username alireza 118816 unique_id port 118816 terminate_cause Lost-Carrier 118816 bytes_out 48596 118816 bytes_in 294011 118816 station_ip 5.119.140.159 118816 port 15729638 118816 nas_port_type Virtual 118816 remote_ip 5.5.5.171 118819 username sedighe 118819 mac 118819 bytes_out 88691 118819 bytes_in 114903 118819 station_ip 83.122.45.140 118819 port 142 118819 unique_id port 118819 remote_ip 10.8.0.146 118822 username alireza 118822 unique_id port 118822 terminate_cause Lost-Carrier 118822 bytes_out 842076 118822 bytes_in 7216069 118822 station_ip 5.119.140.159 118822 port 15729641 118822 nas_port_type Virtual 118822 remote_ip 5.5.5.202 118823 username alirezazadeh 118823 unique_id port 118823 terminate_cause Lost-Carrier 118823 bytes_out 361389 118823 bytes_in 1900419 118823 station_ip 5.119.168.86 118823 port 15729642 118823 nas_port_type Virtual 118823 remote_ip 5.5.5.172 118825 username mahdiyehalizadeh 118825 mac 118825 bytes_out 198688 118825 bytes_in 349214 118825 station_ip 83.122.81.53 118825 port 122 118825 unique_id port 118825 remote_ip 10.8.0.82 118827 username sabaghnezhad 118827 mac 118827 bytes_out 157062 118827 bytes_in 164166 118827 station_ip 37.129.70.152 118827 port 151 118827 unique_id port 118827 remote_ip 10.8.0.186 118832 username kordestani 118832 mac 118832 bytes_out 2026289 118832 bytes_in 25745375 118832 station_ip 151.235.106.65 118832 port 162 118832 unique_id port 118832 remote_ip 10.8.0.134 118835 username farhad1 118835 mac 118835 bytes_out 0 118835 bytes_in 0 118835 station_ip 5.119.214.138 118835 port 71 118835 unique_id port 118835 remote_ip 10.8.1.166 118839 username farhad1 118839 mac 118839 bytes_out 807441 118839 bytes_in 8612162 118839 station_ip 5.119.214.138 118839 port 165 118821 bytes_out 22919 118821 bytes_in 56375 118821 station_ip 37.129.199.141 118821 port 151 118821 unique_id port 118821 remote_ip 10.8.0.6 118824 username aminvpn 118824 mac 118824 bytes_out 163919 118824 bytes_in 531367 118824 station_ip 31.59.46.105 118824 port 160 118824 unique_id port 118824 remote_ip 10.8.0.14 118829 username sabaghnezhad 118829 mac 118829 bytes_out 0 118829 bytes_in 0 118829 station_ip 37.129.70.152 118829 port 165 118829 unique_id port 118829 remote_ip 10.8.0.186 118830 username asma2026 118830 mac 118830 bytes_out 3630728 118830 bytes_in 46870862 118830 station_ip 37.129.5.45 118830 port 160 118830 unique_id port 118830 remote_ip 10.8.0.170 118833 username farhad1 118833 mac 118833 bytes_out 0 118833 bytes_in 0 118833 station_ip 5.119.181.204 118833 port 68 118833 unique_id port 118833 remote_ip 10.8.1.166 118836 username mohammadmahdi 118836 kill_reason Another user logged on this global unique id 118836 mac 118836 bytes_out 0 118836 bytes_in 0 118836 station_ip 5.120.86.136 118836 port 122 118836 unique_id port 118836 remote_ip 10.8.0.54 118841 username mohammadmahdi 118841 mac 118841 bytes_out 0 118841 bytes_in 0 118841 station_ip 5.120.86.136 118841 port 122 118841 unique_id port 118842 username amir 118842 mac 118842 bytes_out 75986 118842 bytes_in 413904 118842 station_ip 46.225.214.85 118842 port 122 118842 unique_id port 118842 remote_ip 10.8.0.50 118847 username aminvpn 118847 unique_id port 118847 terminate_cause User-Request 118847 bytes_out 27919648 118847 bytes_in 68122888 118847 station_ip 31.59.46.105 118847 port 15729640 118847 nas_port_type Virtual 118847 remote_ip 5.5.5.184 118850 username forozande 118850 mac 118850 bytes_out 0 118850 bytes_in 0 118850 station_ip 37.129.163.186 118850 port 160 118850 unique_id port 118850 remote_ip 10.8.0.74 118852 username alirezazadeh 118852 unique_id port 118852 terminate_cause Lost-Carrier 118852 bytes_out 1379050 118852 bytes_in 18400909 118852 station_ip 5.120.169.143 118852 port 15729643 118852 nas_port_type Virtual 118852 remote_ip 5.5.5.183 118859 username amir 118859 mac 118859 bytes_out 985819 118859 bytes_in 1018546 118859 station_ip 46.225.214.85 118859 port 165 118859 unique_id port 118859 remote_ip 10.8.0.50 118863 username amirabbas 118863 unique_id port 118863 terminate_cause User-Request 118863 bytes_out 15206696 118863 bytes_in 393787435 118863 station_ip 37.27.20.241 118863 port 15729645 118863 nas_port_type Virtual 118863 remote_ip 5.5.5.219 118865 username rezasekonji 118865 mac 118865 bytes_out 0 118865 bytes_in 0 118865 station_ip 83.122.70.165 118865 port 142 118865 unique_id port 118865 remote_ip 10.8.0.130 118866 username amir 118866 mac 118866 bytes_out 0 118866 bytes_in 0 118866 station_ip 46.225.214.85 118866 port 160 118866 unique_id port 118866 remote_ip 10.8.0.50 118870 username rezasekonji 118870 mac 118870 bytes_out 0 118870 bytes_in 0 118870 station_ip 83.122.70.165 118870 port 160 118870 unique_id port 118870 remote_ip 10.8.0.130 118872 username rezasekonji 118872 mac 118872 bytes_out 2655 118872 bytes_in 4730 118872 station_ip 83.122.70.165 118872 port 166 118872 unique_id port 118872 remote_ip 10.8.0.130 118875 username forozande 118875 kill_reason Another user logged on this global unique id 118875 mac 118875 bytes_out 0 118875 bytes_in 0 118875 station_ip 83.123.250.141 118875 port 142 118875 unique_id port 118875 remote_ip 10.8.0.74 118876 username rezasekonji 118876 mac 118876 bytes_out 0 118876 bytes_in 0 118828 bytes_in 0 118828 station_ip 5.120.49.142 118828 port 122 118828 unique_id port 118828 remote_ip 10.8.0.22 118831 username houshang 118831 mac 118831 bytes_out 0 118831 bytes_in 0 118831 station_ip 5.120.49.142 118831 port 122 118831 unique_id port 118834 username hamidsalari1 118834 mac 118834 bytes_out 0 118834 bytes_in 0 118834 station_ip 37.129.118.118 118834 port 65 118834 unique_id port 118837 username houshang 118837 mac 118837 bytes_out 1601707 118837 bytes_in 17858376 118837 station_ip 5.120.49.142 118837 port 160 118837 unique_id port 118837 remote_ip 10.8.0.22 118838 username amirabbas 118838 unique_id port 118838 terminate_cause User-Request 118838 bytes_out 15450127 118838 bytes_in 432161057 118838 station_ip 37.27.20.241 118838 port 15729644 118838 nas_port_type Virtual 118838 remote_ip 5.5.5.191 118843 username farhad1 118843 mac 118843 bytes_out 0 118843 bytes_in 0 118843 station_ip 5.119.201.142 118843 port 165 118843 unique_id port 118843 remote_ip 10.8.0.26 118844 username farhad1 118844 mac 118844 bytes_out 223697 118844 bytes_in 889619 118844 station_ip 5.120.188.63 118844 port 160 118844 unique_id port 118844 remote_ip 10.8.0.26 118849 username musa 118849 kill_reason Another user logged on this global unique id 118849 mac 118849 bytes_out 0 118849 bytes_in 0 118849 station_ip 37.129.199.141 118849 port 142 118849 unique_id port 118849 remote_ip 10.8.0.6 118851 username alirr 118851 unique_id port 118851 terminate_cause User-Request 118851 bytes_out 1128633 118851 bytes_in 9127258 118851 station_ip 5.120.155.236 118851 port 15729646 118851 nas_port_type Virtual 118851 remote_ip 5.5.5.144 118853 username alipour 118853 mac 118853 bytes_out 2692026 118853 bytes_in 31334290 118853 station_ip 37.129.93.196 118853 port 151 118853 unique_id port 118853 remote_ip 10.8.0.102 118854 username forozande 118854 mac 118854 bytes_out 0 118854 bytes_in 0 118854 station_ip 83.122.19.197 118854 port 160 118854 unique_id port 118854 remote_ip 10.8.0.74 118856 username mahdiyehalizadeh 118856 mac 118856 bytes_out 400927 118856 bytes_in 4446365 118856 station_ip 37.129.218.115 118856 port 166 118856 unique_id port 118856 remote_ip 10.8.0.82 118860 username rezasekonji 118860 mac 118860 bytes_out 2515 118860 bytes_in 4697 118860 station_ip 83.122.70.165 118860 port 151 118860 unique_id port 118860 remote_ip 10.8.0.130 118861 username forozande 118861 mac 118861 bytes_out 188871 118861 bytes_in 902486 118861 station_ip 83.122.90.117 118861 port 142 118861 unique_id port 118861 remote_ip 10.8.0.74 118862 username mahdiyehalizadeh 118862 mac 118862 bytes_out 0 118862 bytes_in 0 118862 station_ip 83.122.77.177 118862 port 142 118862 unique_id port 118862 remote_ip 10.8.0.82 118873 username kamali1 118873 mac 118873 bytes_out 155563 118873 bytes_in 302172 118873 station_ip 5.120.26.62 118873 port 160 118873 unique_id port 118873 remote_ip 10.8.0.70 118874 username rezaei 118874 mac 118874 bytes_out 0 118874 bytes_in 0 118874 station_ip 5.119.16.119 118874 port 151 118874 unique_id port 118874 remote_ip 10.8.0.206 118879 username rezasekonji 118879 mac 118879 bytes_out 0 118879 bytes_in 0 118879 station_ip 83.122.70.165 118879 port 151 118879 unique_id port 118879 remote_ip 10.8.0.130 118880 username malekpoir 118880 kill_reason Another user logged on this global unique id 118880 mac 118880 bytes_out 0 118880 bytes_in 0 118880 station_ip 5.119.237.28 118880 port 122 118880 unique_id port 118880 remote_ip 10.8.0.58 118839 unique_id port 118839 remote_ip 10.8.0.26 118840 username forozande 118840 mac 118840 bytes_out 481989 118840 bytes_in 2879926 118840 station_ip 37.129.46.180 118840 port 160 118840 unique_id port 118840 remote_ip 10.8.0.74 118845 username amir 118845 mac 118845 bytes_out 0 118845 bytes_in 0 118845 station_ip 46.225.214.85 118845 port 165 118845 unique_id port 118845 remote_ip 10.8.0.50 118846 username forozande 118846 mac 118846 bytes_out 0 118846 bytes_in 0 118846 station_ip 37.129.45.56 118846 port 160 118846 unique_id port 118846 remote_ip 10.8.0.74 118848 username farhad1 118848 mac 118848 bytes_out 0 118848 bytes_in 0 118848 station_ip 5.120.188.63 118848 port 166 118848 unique_id port 118848 remote_ip 10.8.0.26 118855 username tahmasebi 118855 kill_reason Another user logged on this global unique id 118855 mac 118855 bytes_out 0 118855 bytes_in 0 118855 station_ip 5.119.132.27 118855 port 137 118855 unique_id port 118857 username musa 118857 mac 118857 bytes_out 0 118857 bytes_in 0 118857 station_ip 37.129.199.141 118857 port 142 118857 unique_id port 118858 username rezasekonji 118858 mac 118858 bytes_out 0 118858 bytes_in 0 118858 station_ip 83.122.70.165 118858 port 151 118858 unique_id port 118858 remote_ip 10.8.0.130 118864 username rezasekonji 118864 mac 118864 bytes_out 2286 118864 bytes_in 4434 118864 station_ip 83.122.70.165 118864 port 165 118864 unique_id port 118864 remote_ip 10.8.0.130 118867 username rezasekonji 118867 mac 118867 bytes_out 2180 118867 bytes_in 4328 118867 station_ip 83.122.70.165 118867 port 160 118867 unique_id port 118867 remote_ip 10.8.0.130 118868 username rezasekonji 118868 mac 118868 bytes_out 0 118868 bytes_in 0 118868 station_ip 83.122.70.165 118868 port 160 118868 unique_id port 118868 remote_ip 10.8.0.130 118869 username rezasekonji 118869 mac 118869 bytes_out 0 118869 bytes_in 0 118869 station_ip 83.122.70.165 118869 port 160 118869 unique_id port 118869 remote_ip 10.8.0.130 118871 username amir 118871 mac 118871 bytes_out 0 118871 bytes_in 0 118871 station_ip 46.225.214.85 118871 port 165 118871 unique_id port 118871 remote_ip 10.8.0.50 118877 username amir 118877 mac 118877 bytes_out 0 118877 bytes_in 0 118877 station_ip 46.225.214.85 118877 port 165 118877 unique_id port 118877 remote_ip 10.8.0.50 118878 username musa 118878 mac 118878 bytes_out 299612 118878 bytes_in 5185783 118878 station_ip 37.129.199.153 118878 port 160 118878 unique_id port 118878 remote_ip 10.8.0.6 118881 username rezasekonji 118881 mac 118881 bytes_out 0 118881 bytes_in 0 118881 station_ip 83.122.70.165 118881 port 151 118881 unique_id port 118881 remote_ip 10.8.0.130 118884 username amir 118884 mac 118884 bytes_out 0 118884 bytes_in 0 118884 station_ip 46.225.214.85 118884 port 165 118884 unique_id port 118884 remote_ip 10.8.0.50 118889 username rezasekonji 118889 mac 118889 bytes_out 2570 118889 bytes_in 4766 118889 station_ip 83.122.70.165 118889 port 142 118889 unique_id port 118889 remote_ip 10.8.0.130 118890 username mahdiyehalizadeh 118890 mac 118890 bytes_out 0 118890 bytes_in 0 118890 station_ip 83.122.77.177 118890 port 166 118890 unique_id port 118890 remote_ip 10.8.0.82 118891 username farhad1 118891 mac 118891 bytes_out 3495178 118891 bytes_in 39827373 118891 station_ip 5.119.6.110 118891 port 151 118891 unique_id port 118891 remote_ip 10.8.0.26 118896 username mahdixz 118876 station_ip 83.122.70.165 118876 port 151 118876 unique_id port 118876 remote_ip 10.8.0.130 118882 username zare 118882 mac 118882 bytes_out 169501 118882 bytes_in 1786287 118882 station_ip 37.27.38.78 118882 port 165 118882 unique_id port 118882 remote_ip 10.8.0.18 118886 username rezasekonji 118886 mac 118886 bytes_out 0 118886 bytes_in 0 118886 station_ip 83.122.70.165 118886 port 165 118886 unique_id port 118886 remote_ip 10.8.0.130 118887 username rezasekonji 118887 mac 118887 bytes_out 2342 118887 bytes_in 4506 118887 station_ip 83.122.70.165 118887 port 165 118887 unique_id port 118887 remote_ip 10.8.0.130 118892 username amir 118892 mac 118892 bytes_out 0 118892 bytes_in 0 118892 station_ip 46.225.214.85 118892 port 151 118892 unique_id port 118892 remote_ip 10.8.0.50 118893 username milan 118893 mac 118893 bytes_out 2925827 118893 bytes_in 27377808 118893 station_ip 5.120.162.114 118893 port 160 118893 unique_id port 118893 remote_ip 10.8.0.218 118894 username mahdixz 118894 kill_reason Maximum number of concurrent logins reached 118894 unique_id port 118894 bytes_out 0 118894 bytes_in 0 118894 station_ip 5.119.139.70 118894 port 15729650 118894 nas_port_type Virtual 118899 username musa 118899 kill_reason Another user logged on this global unique id 118899 mac 118899 bytes_out 0 118899 bytes_in 0 118899 station_ip 37.129.247.245 118899 port 168 118899 unique_id port 118899 remote_ip 10.8.0.6 118902 username alirr 118902 unique_id port 118902 terminate_cause User-Request 118902 bytes_out 2616728 118902 bytes_in 44958050 118902 station_ip 5.120.72.197 118902 port 15729647 118902 nas_port_type Virtual 118902 remote_ip 5.5.5.147 118904 username mahdixz 118904 unique_id port 118904 terminate_cause Lost-Carrier 118904 bytes_out 203061 118904 bytes_in 6774014 118904 station_ip 151.235.113.222 118904 port 15729649 118904 nas_port_type Virtual 118904 remote_ip 5.5.5.154 118905 username ahmadi 118905 kill_reason Relative expiration date has reached 118905 unique_id port 118905 bytes_out 0 118905 bytes_in 0 118905 station_ip 83.122.27.41 118905 port 15729654 118905 nas_port_type Virtual 118909 username mosi 118909 mac 118909 bytes_out 0 118909 bytes_in 0 118909 station_ip 151.235.114.55 118909 port 160 118909 unique_id port 118909 remote_ip 10.8.0.138 118912 username zare 118912 mac 118912 bytes_out 0 118912 bytes_in 0 118912 station_ip 37.27.38.78 118912 port 166 118912 unique_id port 118912 remote_ip 10.8.0.18 118915 username amir 118915 mac 118915 bytes_out 224866 118915 bytes_in 1332540 118915 station_ip 46.225.214.85 118915 port 165 118915 unique_id port 118915 remote_ip 10.8.0.50 118916 username amir 118916 mac 118916 bytes_out 0 118916 bytes_in 0 118916 station_ip 46.225.214.85 118916 port 165 118916 unique_id port 118916 remote_ip 10.8.0.50 118918 username rezasekonji 118918 mac 118918 bytes_out 0 118918 bytes_in 0 118918 station_ip 83.122.70.165 118918 port 165 118918 unique_id port 118918 remote_ip 10.8.0.130 118921 username kordestani 118921 mac 118921 bytes_out 0 118921 bytes_in 0 118921 station_ip 151.235.104.220 118921 port 168 118921 unique_id port 118921 remote_ip 10.8.0.134 118923 username ehsun 118923 mac 118923 bytes_out 0 118923 bytes_in 0 118923 station_ip 46.225.208.208 118923 port 162 118923 unique_id port 118923 remote_ip 10.8.0.162 118924 username ehsun 118924 mac 118924 bytes_out 0 118924 bytes_in 0 118924 station_ip 46.225.208.208 118924 port 162 118924 unique_id port 118924 remote_ip 10.8.0.162 118883 username rezasekonji 118883 mac 118883 bytes_out 0 118883 bytes_in 0 118883 station_ip 83.122.70.165 118883 port 151 118883 unique_id port 118883 remote_ip 10.8.0.130 118885 username rezasekonji 118885 mac 118885 bytes_out 2865 118885 bytes_in 4835 118885 station_ip 83.122.70.165 118885 port 169 118885 unique_id port 118885 remote_ip 10.8.0.130 118888 username forozande 118888 mac 118888 bytes_out 0 118888 bytes_in 0 118888 station_ip 83.123.250.141 118888 port 142 118888 unique_id port 118895 username mahdixz 118895 kill_reason Maximum number of concurrent logins reached 118895 unique_id port 118895 bytes_out 0 118895 bytes_in 0 118895 station_ip 5.119.139.70 118895 port 15729651 118895 nas_port_type Virtual 118898 username mostafa_es78 118898 mac 118898 bytes_out 233451 118898 bytes_in 2397480 118898 station_ip 5.126.100.51 118898 port 160 118898 unique_id port 118898 remote_ip 10.8.0.198 118900 username amir 118900 mac 118900 bytes_out 0 118900 bytes_in 0 118900 station_ip 46.225.214.85 118900 port 151 118900 unique_id port 118900 remote_ip 10.8.0.50 118901 username musa 118901 mac 118901 bytes_out 0 118901 bytes_in 0 118901 station_ip 37.129.247.245 118901 port 168 118901 unique_id port 118903 username mahdixz 118903 unique_id port 118903 terminate_cause Lost-Carrier 118903 bytes_out 141378 118903 bytes_in 9655326 118903 station_ip 5.120.18.249 118903 port 15729648 118903 nas_port_type Virtual 118903 remote_ip 5.5.5.149 118906 username forozande 118906 mac 118906 bytes_out 117118 118906 bytes_in 196633 118906 station_ip 113.203.113.225 118906 port 151 118906 unique_id port 118906 remote_ip 10.8.0.74 118908 username ahmadipour 118908 unique_id port 118908 terminate_cause Lost-Carrier 118908 bytes_out 912734 118908 bytes_in 17805617 118908 station_ip 37.129.46.178 118908 port 15729655 118908 nas_port_type Virtual 118908 remote_ip 5.5.5.175 118910 username tahmasebi 118910 kill_reason Another user logged on this global unique id 118910 mac 118910 bytes_out 0 118910 bytes_in 0 118910 station_ip 5.119.132.27 118910 port 137 118910 unique_id port 118911 username mostafa_es78 118911 unique_id port 118911 terminate_cause Lost-Carrier 118911 bytes_out 320686 118911 bytes_in 7561981 118911 station_ip 5.125.169.171 118911 port 15729653 118911 nas_port_type Virtual 118911 remote_ip 5.5.5.157 118914 username ehsun 118914 mac 118914 bytes_out 0 118914 bytes_in 0 118914 station_ip 46.225.208.208 118914 port 162 118914 unique_id port 118917 username amir 118917 mac 118917 bytes_out 0 118917 bytes_in 0 118917 station_ip 46.225.214.85 118917 port 165 118917 unique_id port 118917 remote_ip 10.8.0.50 118925 username aminvpn 118925 unique_id port 118925 terminate_cause User-Request 118925 bytes_out 222530 118925 bytes_in 8071677 118925 station_ip 37.129.76.75 118925 port 15729657 118925 nas_port_type Virtual 118925 remote_ip 5.5.5.189 118927 username alipour 118927 kill_reason Another user logged on this global unique id 118927 mac 118927 bytes_out 0 118927 bytes_in 0 118927 station_ip 37.129.93.196 118927 port 167 118927 unique_id port 118929 username rasoul56 118929 kill_reason Another user logged on this global unique id 118929 mac 118929 bytes_out 0 118929 bytes_in 0 118929 station_ip 83.122.2.234 118929 port 166 118929 unique_id port 118931 username aminvpn 118931 unique_id port 118931 terminate_cause User-Request 118931 bytes_out 109237 118931 bytes_in 835229 118931 station_ip 37.129.76.75 118931 port 15729659 118931 nas_port_type Virtual 118931 remote_ip 5.5.5.255 118934 username aminvpn 118934 mac 118896 kill_reason Maximum number of concurrent logins reached 118896 unique_id port 118896 bytes_out 0 118896 bytes_in 0 118896 station_ip 5.119.139.70 118896 port 15729652 118896 nas_port_type Virtual 118897 username tahmasebi 118897 kill_reason Another user logged on this global unique id 118897 mac 118897 bytes_out 0 118897 bytes_in 0 118897 station_ip 5.119.132.27 118897 port 137 118897 unique_id port 118907 username hamidsalari1 118907 mac 118907 bytes_out 284549 118907 bytes_in 647289 118907 station_ip 37.129.118.118 118907 port 162 118907 unique_id port 118907 remote_ip 10.8.0.226 118913 username ehsun 118913 kill_reason Another user logged on this global unique id 118913 mac 118913 bytes_out 0 118913 bytes_in 0 118913 station_ip 46.225.208.208 118913 port 162 118913 unique_id port 118913 remote_ip 10.8.0.162 118919 username aminvpn 118919 unique_id port 118919 terminate_cause User-Request 118919 bytes_out 17138 118919 bytes_in 42899 118919 station_ip 37.129.76.75 118919 port 15729656 118919 nas_port_type Virtual 118919 remote_ip 5.5.5.178 118920 username alipour 118920 kill_reason Another user logged on this global unique id 118920 mac 118920 bytes_out 0 118920 bytes_in 0 118920 station_ip 37.129.93.196 118920 port 167 118920 unique_id port 118920 remote_ip 10.8.0.102 118922 username rasoul56 118922 kill_reason Another user logged on this global unique id 118922 mac 118922 bytes_out 0 118922 bytes_in 0 118922 station_ip 83.122.2.234 118922 port 166 118922 unique_id port 118922 remote_ip 10.8.0.174 118926 username amir 118926 mac 118926 bytes_out 0 118926 bytes_in 0 118926 station_ip 46.225.214.85 118926 port 162 118926 unique_id port 118926 remote_ip 10.8.0.50 118928 username aminvpn 118928 unique_id port 118928 terminate_cause User-Request 118928 bytes_out 36789 118928 bytes_in 129178 118928 station_ip 37.129.76.75 118928 port 15729658 118928 nas_port_type Virtual 118928 remote_ip 5.5.5.193 118930 username farhad1 118930 mac 118930 bytes_out 6577896 118930 bytes_in 52924442 118930 station_ip 5.119.113.198 118930 port 142 118930 unique_id port 118930 remote_ip 10.8.0.26 118933 username aminvpn 118933 mac 118933 bytes_out 93976 118933 bytes_in 181185 118933 station_ip 5.120.63.237 118933 port 162 118933 unique_id port 118933 remote_ip 10.8.0.14 118937 username rasoul56 118937 kill_reason Another user logged on this global unique id 118937 mac 118937 bytes_out 0 118937 bytes_in 0 118937 station_ip 83.122.2.234 118937 port 166 118937 unique_id port 118939 username alipour 118939 kill_reason Another user logged on this global unique id 118939 mac 118939 bytes_out 0 118939 bytes_in 0 118939 station_ip 37.129.93.196 118939 port 167 118939 unique_id port 118940 username reza2742 118940 unique_id port 118940 terminate_cause User-Request 118940 bytes_out 100250 118940 bytes_in 1302921 118940 station_ip 113.203.7.156 118940 port 15729661 118940 nas_port_type Virtual 118940 remote_ip 5.5.5.11 118942 username ehsun 118942 mac 118942 bytes_out 686403 118942 bytes_in 6331440 118942 station_ip 46.225.208.208 118942 port 160 118942 unique_id port 118942 remote_ip 10.8.0.162 118948 username hamidsalari1 118948 mac 118948 bytes_out 0 118948 bytes_in 0 118948 station_ip 37.129.118.118 118948 port 151 118948 unique_id port 118948 remote_ip 10.8.0.226 118950 username reza2742 118950 unique_id port 118950 terminate_cause User-Request 118950 bytes_out 161935 118950 bytes_in 4657503 118950 station_ip 113.203.7.156 118950 port 15729668 118950 nas_port_type Virtual 118950 remote_ip 5.5.5.142 118952 username rasoul56 118952 kill_reason Another user logged on this global unique id 118952 mac 118952 bytes_out 0 118932 username aminvpn 118932 unique_id port 118932 terminate_cause User-Request 118932 bytes_out 324394 118932 bytes_in 9071627 118932 station_ip 37.129.76.75 118932 port 15729660 118932 nas_port_type Virtual 118932 remote_ip 5.5.5.255 118936 username zare 118936 mac 118936 bytes_out 302397 118936 bytes_in 2623656 118936 station_ip 37.27.38.78 118936 port 160 118936 unique_id port 118936 remote_ip 10.8.0.18 118941 username aminvpn 118941 mac 118941 bytes_out 0 118941 bytes_in 0 118941 station_ip 37.129.76.75 118941 port 165 118941 unique_id port 118941 remote_ip 10.8.0.14 118944 username ehsun 118944 mac 118944 bytes_out 0 118944 bytes_in 0 118944 station_ip 46.225.208.208 118944 port 160 118944 unique_id port 118944 remote_ip 10.8.0.162 118945 username alirr 118945 kill_reason Relative expiration date has reached 118945 unique_id port 118945 bytes_out 0 118945 bytes_in 0 118945 station_ip 5.120.166.64 118945 port 15729663 118945 nas_port_type Virtual 118946 username alirr 118946 kill_reason Relative expiration date has reached 118946 unique_id port 118946 bytes_out 0 118946 bytes_in 0 118946 station_ip 5.120.166.64 118946 port 15729664 118946 nas_port_type Virtual 118949 username alirr 118949 kill_reason Relative expiration date has reached 118949 unique_id port 118949 bytes_out 0 118949 bytes_in 0 118949 station_ip 5.120.166.64 118949 port 15729666 118949 nas_port_type Virtual 118953 username malekpoir 118953 mac 118953 bytes_out 0 118953 bytes_in 0 118953 station_ip 5.119.237.28 118953 port 122 118953 unique_id port 118954 username aminvpn 118954 mac 118954 bytes_out 534771 118954 bytes_in 3512479 118954 station_ip 5.120.63.237 118954 port 65 118954 unique_id port 118954 remote_ip 10.8.1.6 118955 username rasoul56 118955 kill_reason Another user logged on this global unique id 118955 mac 118955 bytes_out 0 118955 bytes_in 0 118955 station_ip 83.122.2.234 118955 port 166 118955 unique_id port 118956 username sade 118956 unique_id port 118956 terminate_cause User-Request 118956 bytes_out 903002 118956 bytes_in 11582124 118956 station_ip 5.120.166.64 118956 port 15729667 118956 nas_port_type Virtual 118956 remote_ip 5.5.5.141 118960 username alirr 118960 kill_reason Relative expiration date has reached 118960 unique_id port 118960 bytes_out 0 118960 bytes_in 0 118960 station_ip 188.245.91.48 118960 port 15729670 118960 nas_port_type Virtual 118963 username alirr 118963 kill_reason Relative expiration date has reached 118963 unique_id port 118963 bytes_out 0 118963 bytes_in 0 118963 station_ip 188.245.91.48 118963 port 15729673 118963 nas_port_type Virtual 118964 username alirr 118964 kill_reason Relative expiration date has reached 118964 unique_id port 118964 bytes_out 0 118964 bytes_in 0 118964 station_ip 188.245.91.48 118964 port 15729674 118964 nas_port_type Virtual 118966 username alirr 118966 kill_reason Relative expiration date has reached 118966 unique_id port 118966 bytes_out 0 118966 bytes_in 0 118966 station_ip 188.245.91.48 118966 port 15729675 118966 nas_port_type Virtual 118969 username rasoul56 118969 kill_reason Another user logged on this global unique id 118969 mac 118969 bytes_out 0 118969 bytes_in 0 118969 station_ip 83.122.2.234 118969 port 166 118969 unique_id port 118971 username ehsun 118971 mac 118971 bytes_out 0 118971 bytes_in 0 118971 station_ip 46.225.208.208 118971 port 151 118971 unique_id port 118971 remote_ip 10.8.0.162 118979 username rasoul56 118979 kill_reason Another user logged on this global unique id 118979 mac 118979 bytes_out 0 118979 bytes_in 0 118979 station_ip 83.122.2.234 118979 port 166 118979 unique_id port 118983 username mansur 118983 mac 118934 bytes_out 0 118934 bytes_in 0 118934 station_ip 37.129.76.75 118934 port 165 118934 unique_id port 118934 remote_ip 10.8.0.14 118935 username aminvpn 118935 mac 118935 bytes_out 0 118935 bytes_in 0 118935 station_ip 5.120.63.237 118935 port 162 118935 unique_id port 118935 remote_ip 10.8.0.14 118938 username farhad1 118938 mac 118938 bytes_out 1287062 118938 bytes_in 6248590 118938 station_ip 5.119.113.198 118938 port 142 118938 unique_id port 118938 remote_ip 10.8.0.26 118943 username alirr 118943 kill_reason Relative expiration date has reached 118943 unique_id port 118943 bytes_out 0 118943 bytes_in 0 118943 station_ip 5.120.72.197 118943 port 15729662 118943 nas_port_type Virtual 118947 username alirr 118947 kill_reason Relative expiration date has reached 118947 unique_id port 118947 bytes_out 0 118947 bytes_in 0 118947 station_ip 5.120.166.64 118947 port 15729665 118947 nas_port_type Virtual 118951 username hamidsalari 118951 kill_reason Another user logged on this global unique id 118951 mac 118951 bytes_out 0 118951 bytes_in 0 118951 station_ip 5.119.72.47 118951 port 157 118951 unique_id port 118951 remote_ip 10.8.0.230 118958 username rasoul56 118958 kill_reason Another user logged on this global unique id 118958 mac 118958 bytes_out 0 118958 bytes_in 0 118958 station_ip 83.122.2.234 118958 port 166 118958 unique_id port 118961 username alirr 118961 kill_reason Relative expiration date has reached 118961 unique_id port 118961 bytes_out 0 118961 bytes_in 0 118961 station_ip 188.245.91.48 118961 port 15729671 118961 nas_port_type Virtual 118965 username rasoul56 118965 kill_reason Another user logged on this global unique id 118965 mac 118965 bytes_out 0 118965 bytes_in 0 118965 station_ip 83.122.2.234 118965 port 166 118965 unique_id port 118967 username farhad1 118967 kill_reason Another user logged on this global unique id 118967 mac 118967 bytes_out 0 118967 bytes_in 0 118967 station_ip 5.119.94.227 118967 port 142 118967 unique_id port 118967 remote_ip 10.8.0.26 118968 username aminvpn 118968 kill_reason Another user logged on this global unique id 118968 mac 118968 bytes_out 0 118968 bytes_in 0 118968 station_ip 5.119.251.131 118968 port 162 118968 unique_id port 118975 username rasoul56 118975 kill_reason Another user logged on this global unique id 118975 mac 118975 bytes_out 0 118975 bytes_in 0 118975 station_ip 83.122.2.234 118975 port 166 118975 unique_id port 118976 username rasoul56 118976 kill_reason Another user logged on this global unique id 118976 mac 118976 bytes_out 0 118976 bytes_in 0 118976 station_ip 83.122.2.234 118976 port 166 118976 unique_id port 118977 username aminvpn 118977 mac 118977 bytes_out 0 118977 bytes_in 0 118977 station_ip 5.119.251.131 118977 port 162 118977 unique_id port 118978 username mohammadmahdi 118978 mac 118978 bytes_out 79031 118978 bytes_in 524586 118978 station_ip 5.120.86.136 118978 port 151 118978 unique_id port 118978 remote_ip 10.8.0.54 118980 username mohammadmahdi 118980 mac 118980 bytes_out 0 118980 bytes_in 0 118980 station_ip 5.120.86.136 118980 port 169 118980 unique_id port 118980 remote_ip 10.8.0.54 118989 username rasoul56 118989 kill_reason Another user logged on this global unique id 118989 mac 118989 bytes_out 0 118989 bytes_in 0 118989 station_ip 83.122.2.234 118989 port 166 118989 unique_id port 118996 username rasoul56 118996 kill_reason Another user logged on this global unique id 118996 mac 118996 bytes_out 0 118996 bytes_in 0 118996 station_ip 83.122.2.234 118996 port 166 118996 unique_id port 118998 username tahmasebi 118998 kill_reason Another user logged on this global unique id 118998 mac 118952 bytes_in 0 118952 station_ip 83.122.2.234 118952 port 166 118952 unique_id port 118957 username aminvpn 118957 kill_reason Another user logged on this global unique id 118957 mac 118957 bytes_out 0 118957 bytes_in 0 118957 station_ip 5.119.251.131 118957 port 162 118957 unique_id port 118957 remote_ip 10.8.0.14 118959 username alirr 118959 kill_reason Relative expiration date has reached 118959 unique_id port 118959 bytes_out 0 118959 bytes_in 0 118959 station_ip 188.245.91.48 118959 port 15729669 118959 nas_port_type Virtual 118962 username alirr 118962 kill_reason Relative expiration date has reached 118962 unique_id port 118962 bytes_out 0 118962 bytes_in 0 118962 station_ip 188.245.91.48 118962 port 15729672 118962 nas_port_type Virtual 118970 username hamidsalari1 118970 mac 118970 bytes_out 0 118970 bytes_in 0 118970 station_ip 37.129.118.118 118970 port 160 118970 unique_id port 118970 remote_ip 10.8.0.226 118972 username rasoul56 118972 kill_reason Another user logged on this global unique id 118972 mac 118972 bytes_out 0 118972 bytes_in 0 118972 station_ip 83.122.2.234 118972 port 166 118972 unique_id port 118973 username alirr 118973 kill_reason Relative expiration date has reached 118973 unique_id port 118973 bytes_out 0 118973 bytes_in 0 118973 station_ip 188.245.91.48 118973 port 15729676 118973 nas_port_type Virtual 118974 username tahmasebi 118974 kill_reason Another user logged on this global unique id 118974 mac 118974 bytes_out 0 118974 bytes_in 0 118974 station_ip 5.119.132.27 118974 port 137 118974 unique_id port 118981 username alirr 118981 kill_reason Relative expiration date has reached 118981 unique_id port 118981 bytes_out 0 118981 bytes_in 0 118981 station_ip 188.245.91.48 118981 port 15729677 118981 nas_port_type Virtual 118982 username ehsun 118982 kill_reason Another user logged on this global unique id 118982 mac 118982 bytes_out 0 118982 bytes_in 0 118982 station_ip 46.225.208.208 118982 port 160 118982 unique_id port 118982 remote_ip 10.8.0.162 118984 username rasoul56 118984 kill_reason Another user logged on this global unique id 118984 mac 118984 bytes_out 0 118984 bytes_in 0 118984 station_ip 83.122.2.234 118984 port 166 118984 unique_id port 118985 username farhad1 118985 kill_reason Another user logged on this global unique id 118985 mac 118985 bytes_out 0 118985 bytes_in 0 118985 station_ip 5.119.94.227 118985 port 142 118985 unique_id port 118988 username farhad1 118988 mac 118988 bytes_out 0 118988 bytes_in 0 118988 station_ip 5.119.94.227 118988 port 142 118988 unique_id port 118990 username zare 118990 mac 118990 bytes_out 0 118990 bytes_in 0 118990 station_ip 37.27.38.78 118990 port 122 118990 unique_id port 118990 remote_ip 10.8.0.18 118991 username farhad1 118991 mac 118991 bytes_out 0 118991 bytes_in 0 118991 station_ip 5.119.220.3 118991 port 160 118991 unique_id port 118991 remote_ip 10.8.0.26 118992 username mehdizare 118992 kill_reason Another user logged on this global unique id 118992 mac 118992 bytes_out 0 118992 bytes_in 0 118992 station_ip 5.119.27.232 118992 port 168 118992 unique_id port 118992 remote_ip 10.8.0.90 118993 username rasoul56 118993 kill_reason Another user logged on this global unique id 118993 mac 118993 bytes_out 0 118993 bytes_in 0 118993 station_ip 83.122.2.234 118993 port 166 118993 unique_id port 118994 username ehsun 118994 mac 118994 bytes_out 0 118994 bytes_in 0 118994 station_ip 46.225.208.208 118994 port 160 118994 unique_id port 118994 remote_ip 10.8.0.162 118995 username ehsun 118995 mac 118995 bytes_out 0 118995 bytes_in 0 118995 station_ip 46.225.208.208 118983 bytes_out 0 118983 bytes_in 0 118983 station_ip 5.120.185.49 118983 port 165 118983 unique_id port 118983 remote_ip 10.8.0.210 118986 username rezaei 118986 mac 118986 bytes_out 3497372 118986 bytes_in 39059303 118986 station_ip 5.120.14.69 118986 port 162 118986 unique_id port 118986 remote_ip 10.8.0.206 118987 username ehsun 118987 mac 118987 bytes_out 0 118987 bytes_in 0 118987 station_ip 46.225.208.208 118987 port 160 118987 unique_id port 118997 username naeimeh 118997 kill_reason Another user logged on this global unique id 118997 mac 118997 bytes_out 0 118997 bytes_in 0 118997 station_ip 113.203.6.152 118997 port 142 118997 unique_id port 118997 remote_ip 10.8.0.78 118999 username rasoul56 118999 kill_reason Another user logged on this global unique id 118999 mac 118999 bytes_out 0 118999 bytes_in 0 118999 station_ip 83.122.2.234 118999 port 166 118999 unique_id port 119001 username rezaei 119001 mac 119001 bytes_out 0 119001 bytes_in 0 119001 station_ip 5.120.14.69 119001 port 151 119001 unique_id port 119001 remote_ip 10.8.0.206 119005 username farhad1 119005 mac 119005 bytes_out 0 119005 bytes_in 0 119005 station_ip 5.119.220.3 119005 port 122 119005 unique_id port 119005 remote_ip 10.8.0.26 119013 username rasoul56 119013 kill_reason Another user logged on this global unique id 119013 mac 119013 bytes_out 0 119013 bytes_in 0 119013 station_ip 83.122.2.234 119013 port 166 119013 unique_id port 119028 username rasoul56 119028 kill_reason Another user logged on this global unique id 119028 mac 119028 bytes_out 0 119028 bytes_in 0 119028 station_ip 83.122.2.234 119028 port 166 119028 unique_id port 119030 username rasoul56 119030 kill_reason Another user logged on this global unique id 119030 mac 119030 bytes_out 0 119030 bytes_in 0 119030 station_ip 83.122.2.234 119030 port 166 119030 unique_id port 119031 username rasoul56 119031 kill_reason Another user logged on this global unique id 119031 mac 119031 bytes_out 0 119031 bytes_in 0 119031 station_ip 83.122.2.234 119031 port 166 119031 unique_id port 119036 username rasoul56 119036 kill_reason Another user logged on this global unique id 119036 mac 119036 bytes_out 0 119036 bytes_in 0 119036 station_ip 83.122.2.234 119036 port 166 119036 unique_id port 119037 username hamidsalari1 119037 mac 119037 bytes_out 0 119037 bytes_in 0 119037 station_ip 37.129.118.118 119037 port 122 119037 unique_id port 119037 remote_ip 10.8.0.226 119041 username rasoul56 119041 kill_reason Another user logged on this global unique id 119041 mac 119041 bytes_out 0 119041 bytes_in 0 119041 station_ip 83.122.2.234 119041 port 166 119041 unique_id port 119044 username mohammadjavad 119044 kill_reason Another user logged on this global unique id 119044 mac 119044 bytes_out 0 119044 bytes_in 0 119044 station_ip 83.123.124.43 119044 port 122 119044 unique_id port 119044 remote_ip 10.8.0.142 119052 username mehdizare 119052 mac 119052 bytes_out 0 119052 bytes_in 0 119052 station_ip 5.119.27.232 119052 port 168 119052 unique_id port 119057 username sedighe 119057 mac 119057 bytes_out 4370 119057 bytes_in 6335 119057 station_ip 83.123.55.51 119057 port 160 119057 unique_id port 119057 remote_ip 10.8.0.146 119060 username sedighe 119060 mac 119060 bytes_out 5291 119060 bytes_in 8330 119060 station_ip 83.122.174.175 119060 port 160 119060 unique_id port 119060 remote_ip 10.8.0.146 119064 username sedighe 119064 mac 119064 bytes_out 0 119064 bytes_in 0 119064 station_ip 83.122.174.175 119064 port 162 119064 unique_id port 118995 port 160 118995 unique_id port 118995 remote_ip 10.8.0.162 119003 username rasoul56 119003 kill_reason Another user logged on this global unique id 119003 mac 119003 bytes_out 0 119003 bytes_in 0 119003 station_ip 83.122.2.234 119003 port 166 119003 unique_id port 119004 username tahmasebi 119004 kill_reason Another user logged on this global unique id 119004 mac 119004 bytes_out 0 119004 bytes_in 0 119004 station_ip 5.119.132.27 119004 port 137 119004 unique_id port 119006 username rasoul56 119006 kill_reason Another user logged on this global unique id 119006 mac 119006 bytes_out 0 119006 bytes_in 0 119006 station_ip 83.122.2.234 119006 port 166 119006 unique_id port 119007 username mostafa_es78 119007 unique_id port 119007 terminate_cause User-Request 119007 bytes_out 726573 119007 bytes_in 6016181 119007 station_ip 5.126.7.216 119007 port 15729678 119007 nas_port_type Virtual 119007 remote_ip 5.5.5.156 119009 username rasoul56 119009 kill_reason Another user logged on this global unique id 119009 mac 119009 bytes_out 0 119009 bytes_in 0 119009 station_ip 83.122.2.234 119009 port 166 119009 unique_id port 119011 username farhad1 119011 mac 119011 bytes_out 0 119011 bytes_in 0 119011 station_ip 5.119.220.3 119011 port 122 119011 unique_id port 119011 remote_ip 10.8.0.26 119012 username rasoul56 119012 kill_reason Another user logged on this global unique id 119012 mac 119012 bytes_out 0 119012 bytes_in 0 119012 station_ip 83.122.2.234 119012 port 166 119012 unique_id port 119017 username rasoul56 119017 kill_reason Another user logged on this global unique id 119017 mac 119017 bytes_out 0 119017 bytes_in 0 119017 station_ip 83.122.2.234 119017 port 166 119017 unique_id port 119024 username rasoul56 119024 kill_reason Another user logged on this global unique id 119024 mac 119024 bytes_out 0 119024 bytes_in 0 119024 station_ip 83.122.2.234 119024 port 166 119024 unique_id port 119027 username rasoul56 119027 kill_reason Another user logged on this global unique id 119027 mac 119027 bytes_out 0 119027 bytes_in 0 119027 station_ip 83.122.2.234 119027 port 166 119027 unique_id port 119035 username tahmasebi 119035 kill_reason Another user logged on this global unique id 119035 mac 119035 bytes_out 0 119035 bytes_in 0 119035 station_ip 5.119.132.27 119035 port 137 119035 unique_id port 119039 username rasoul56 119039 kill_reason Another user logged on this global unique id 119039 mac 119039 bytes_out 0 119039 bytes_in 0 119039 station_ip 83.122.2.234 119039 port 166 119039 unique_id port 119043 username tahmasebi 119043 kill_reason Another user logged on this global unique id 119043 mac 119043 bytes_out 0 119043 bytes_in 0 119043 station_ip 5.119.132.27 119043 port 137 119043 unique_id port 119045 username rasoul56 119045 kill_reason Another user logged on this global unique id 119045 mac 119045 bytes_out 0 119045 bytes_in 0 119045 station_ip 83.122.2.234 119045 port 166 119045 unique_id port 119046 username mohammadjavad 119046 mac 119046 bytes_out 0 119046 bytes_in 0 119046 station_ip 83.123.124.43 119046 port 122 119046 unique_id port 119047 username hamidsalari1 119047 mac 119047 bytes_out 0 119047 bytes_in 0 119047 station_ip 83.122.119.139 119047 port 65 119047 unique_id port 119047 remote_ip 10.8.1.170 119049 username rasoul56 119049 mac 119049 bytes_out 0 119049 bytes_in 0 119049 station_ip 83.122.2.234 119049 port 166 119049 unique_id port 119050 username mohammadjavad 119050 kill_reason Another user logged on this global unique id 119050 mac 119050 bytes_out 0 119050 bytes_in 0 119050 station_ip 37.129.213.74 119050 port 122 119050 unique_id port 118998 bytes_out 0 118998 bytes_in 0 118998 station_ip 5.119.132.27 118998 port 137 118998 unique_id port 119000 username naeimeh 119000 mac 119000 bytes_out 0 119000 bytes_in 0 119000 station_ip 113.203.6.152 119000 port 142 119000 unique_id port 119002 username mirzaei 119002 kill_reason Another user logged on this global unique id 119002 mac 119002 bytes_out 0 119002 bytes_in 0 119002 station_ip 5.119.152.48 119002 port 140 119002 unique_id port 119008 username mahdixz 119008 unique_id port 119008 terminate_cause User-Request 119008 bytes_out 1002484 119008 bytes_in 8994808 119008 station_ip 5.120.6.115 119008 port 15729679 119008 nas_port_type Virtual 119008 remote_ip 5.5.5.159 119010 username tahmasebi 119010 kill_reason Another user logged on this global unique id 119010 mac 119010 bytes_out 0 119010 bytes_in 0 119010 station_ip 5.119.132.27 119010 port 137 119010 unique_id port 119014 username tahmasebi 119014 kill_reason Another user logged on this global unique id 119014 mac 119014 bytes_out 0 119014 bytes_in 0 119014 station_ip 5.119.132.27 119014 port 137 119014 unique_id port 119015 username rasoul56 119015 kill_reason Another user logged on this global unique id 119015 mac 119015 bytes_out 0 119015 bytes_in 0 119015 station_ip 83.122.2.234 119015 port 166 119015 unique_id port 119016 username tahmasebi 119016 kill_reason Another user logged on this global unique id 119016 mac 119016 bytes_out 0 119016 bytes_in 0 119016 station_ip 5.119.132.27 119016 port 137 119016 unique_id port 119018 username rasoul56 119018 kill_reason Another user logged on this global unique id 119018 mac 119018 bytes_out 0 119018 bytes_in 0 119018 station_ip 83.122.2.234 119018 port 166 119018 unique_id port 119019 username farhad1 119019 kill_reason Another user logged on this global unique id 119019 mac 119019 bytes_out 0 119019 bytes_in 0 119019 station_ip 5.119.219.133 119019 port 122 119019 unique_id port 119019 remote_ip 10.8.0.26 119020 username rasoul56 119020 kill_reason Another user logged on this global unique id 119020 mac 119020 bytes_out 0 119020 bytes_in 0 119020 station_ip 83.122.2.234 119020 port 166 119020 unique_id port 119021 username hamidsalari1 119021 kill_reason Another user logged on this global unique id 119021 mac 119021 bytes_out 0 119021 bytes_in 0 119021 station_ip 37.129.118.118 119021 port 142 119021 unique_id port 119021 remote_ip 10.8.0.226 119022 username tahmasebi 119022 kill_reason Another user logged on this global unique id 119022 mac 119022 bytes_out 0 119022 bytes_in 0 119022 station_ip 5.119.132.27 119022 port 137 119022 unique_id port 119023 username rasoul56 119023 kill_reason Another user logged on this global unique id 119023 mac 119023 bytes_out 0 119023 bytes_in 0 119023 station_ip 83.122.2.234 119023 port 166 119023 unique_id port 119025 username rasoul56 119025 kill_reason Another user logged on this global unique id 119025 mac 119025 bytes_out 0 119025 bytes_in 0 119025 station_ip 83.122.2.234 119025 port 166 119025 unique_id port 119026 username hamidsalari1 119026 mac 119026 bytes_out 0 119026 bytes_in 0 119026 station_ip 37.129.118.118 119026 port 142 119026 unique_id port 119029 username farhad1 119029 mac 119029 bytes_out 0 119029 bytes_in 0 119029 station_ip 5.119.219.133 119029 port 122 119029 unique_id port 119032 username rasoul56 119032 kill_reason Another user logged on this global unique id 119032 mac 119032 bytes_out 0 119032 bytes_in 0 119032 station_ip 83.122.2.234 119032 port 166 119032 unique_id port 119033 username hamidsalari1 119033 mac 119033 bytes_out 0 119033 bytes_in 0 119033 station_ip 37.129.118.118 119033 port 151 119033 unique_id port 119033 remote_ip 10.8.0.226 119034 username rasoul56 119034 kill_reason Another user logged on this global unique id 119034 mac 119034 bytes_out 0 119034 bytes_in 0 119034 station_ip 83.122.2.234 119034 port 166 119034 unique_id port 119038 username hamidsalari1 119038 mac 119038 bytes_out 16506 119038 bytes_in 19464 119038 station_ip 37.129.118.118 119038 port 65 119038 unique_id port 119038 remote_ip 10.8.1.170 119040 username tahmasebi 119040 kill_reason Another user logged on this global unique id 119040 mac 119040 bytes_out 0 119040 bytes_in 0 119040 station_ip 5.119.132.27 119040 port 137 119040 unique_id port 119042 username rasoul56 119042 kill_reason Another user logged on this global unique id 119042 mac 119042 bytes_out 0 119042 bytes_in 0 119042 station_ip 83.122.2.234 119042 port 166 119042 unique_id port 119048 username tahmasebi 119048 kill_reason Another user logged on this global unique id 119048 mac 119048 bytes_out 0 119048 bytes_in 0 119048 station_ip 5.119.132.27 119048 port 137 119048 unique_id port 119051 username mohammadjavad 119051 kill_reason Another user logged on this global unique id 119051 mac 119051 bytes_out 0 119051 bytes_in 0 119051 station_ip 37.129.213.74 119051 port 122 119051 unique_id port 119053 username mehdizare 119053 mac 119053 bytes_out 0 119053 bytes_in 0 119053 station_ip 5.119.27.232 119053 port 151 119053 unique_id port 119053 remote_ip 10.8.0.90 119054 username mehdizare 119054 mac 119054 bytes_out 9080 119054 bytes_in 11450 119054 station_ip 5.119.27.232 119054 port 160 119054 unique_id port 119054 remote_ip 10.8.0.90 119055 username sedighe 119055 mac 119055 bytes_out 45988 119055 bytes_in 175432 119055 station_ip 83.123.55.51 119055 port 160 119055 unique_id port 119055 remote_ip 10.8.0.146 119058 username sedighe 119058 mac 119058 bytes_out 6679 119058 bytes_in 9411 119058 station_ip 83.123.55.51 119058 port 160 119058 unique_id port 119058 remote_ip 10.8.0.146 119061 username sedighe 119061 mac 119061 bytes_out 1850 119061 bytes_in 4163 119061 station_ip 83.122.174.175 119061 port 160 119061 unique_id port 119061 remote_ip 10.8.0.146 119062 username sedighe 119062 mac 119062 bytes_out 2643 119062 bytes_in 4154 119062 station_ip 83.122.174.175 119062 port 162 119062 unique_id port 119062 remote_ip 10.8.0.146 119068 username mehdizare 119068 kill_reason Another user logged on this global unique id 119068 mac 119068 bytes_out 0 119068 bytes_in 0 119068 station_ip 5.119.27.232 119068 port 151 119068 unique_id port 119074 username sedighe 119074 mac 119074 bytes_out 0 119074 bytes_in 0 119074 station_ip 113.203.31.65 119074 port 160 119074 unique_id port 119074 remote_ip 10.8.0.146 119080 username alirr 119080 kill_reason Relative expiration date has reached 119080 unique_id port 119080 bytes_out 0 119080 bytes_in 0 119080 station_ip 5.120.89.252 119080 port 15729680 119080 nas_port_type Virtual 119083 username mehdizare 119083 kill_reason Another user logged on this global unique id 119083 mac 119083 bytes_out 0 119083 bytes_in 0 119083 station_ip 5.119.27.232 119083 port 151 119083 unique_id port 119092 username mehdizare 119092 mac 119092 bytes_out 0 119092 bytes_in 0 119092 station_ip 5.119.27.232 119092 port 151 119092 unique_id port 119094 username forozande 119094 mac 119094 bytes_out 196633 119094 bytes_in 261944 119094 station_ip 83.122.146.112 119094 port 148 119094 unique_id port 119094 remote_ip 10.8.0.74 119098 username forozande 119098 mac 119098 bytes_out 0 119098 bytes_in 0 119050 remote_ip 10.8.0.142 119056 username sedighe 119056 mac 119056 bytes_out 0 119056 bytes_in 0 119056 station_ip 83.123.55.51 119056 port 162 119056 unique_id port 119056 remote_ip 10.8.0.146 119059 username sedighe 119059 mac 119059 bytes_out 3497 119059 bytes_in 4699 119059 station_ip 83.122.174.175 119059 port 162 119059 unique_id port 119059 remote_ip 10.8.0.146 119063 username sedighe 119063 mac 119063 bytes_out 134299 119063 bytes_in 4096917 119063 station_ip 83.122.174.175 119063 port 160 119063 unique_id port 119063 remote_ip 10.8.0.146 119065 username sedighe 119065 mac 119065 bytes_out 0 119065 bytes_in 0 119065 station_ip 83.122.174.175 119065 port 160 119065 unique_id port 119065 remote_ip 10.8.0.146 119066 username mehdizare 119066 kill_reason Another user logged on this global unique id 119066 mac 119066 bytes_out 0 119066 bytes_in 0 119066 station_ip 5.119.27.232 119066 port 151 119066 unique_id port 119066 remote_ip 10.8.0.90 119069 username sedighe 119069 kill_reason Another user logged on this global unique id 119069 mac 119069 bytes_out 0 119069 bytes_in 0 119069 station_ip 83.123.248.168 119069 port 162 119069 unique_id port 119069 remote_ip 10.8.0.146 119072 username sedighe 119072 mac 119072 bytes_out 0 119072 bytes_in 0 119072 station_ip 113.203.31.65 119072 port 162 119072 unique_id port 119072 remote_ip 10.8.0.146 119076 username hamidsalari1 119076 mac 119076 bytes_out 2760394 119076 bytes_in 20466111 119076 station_ip 83.122.119.139 119076 port 142 119076 unique_id port 119076 remote_ip 10.8.0.226 119077 username mohammadjavad 119077 mac 119077 bytes_out 0 119077 bytes_in 0 119077 station_ip 83.122.5.247 119077 port 142 119077 unique_id port 119077 remote_ip 10.8.0.142 119079 username sedighe 119079 mac 119079 bytes_out 0 119079 bytes_in 0 119079 station_ip 113.203.92.138 119079 port 142 119079 unique_id port 119079 remote_ip 10.8.0.146 119082 username sedighe 119082 mac 119082 bytes_out 8701 119082 bytes_in 11502 119082 station_ip 83.123.224.213 119082 port 142 119082 unique_id port 119082 remote_ip 10.8.0.146 119085 username mohammadjavad 119085 mac 119085 bytes_out 0 119085 bytes_in 0 119085 station_ip 83.123.217.183 119085 port 65 119085 unique_id port 119085 remote_ip 10.8.1.146 119089 username mirzaei 119089 kill_reason Another user logged on this global unique id 119089 mac 119089 bytes_out 0 119089 bytes_in 0 119089 station_ip 5.119.152.48 119089 port 140 119089 unique_id port 119090 username sade 119090 unique_id port 119090 terminate_cause Lost-Carrier 119090 bytes_out 270361 119090 bytes_in 2540314 119090 station_ip 5.120.57.132 119090 port 15729683 119090 nas_port_type Virtual 119090 remote_ip 5.5.5.255 119091 username forozande 119091 mac 119091 bytes_out 981393 119091 bytes_in 10348471 119091 station_ip 37.129.71.225 119091 port 142 119091 unique_id port 119091 remote_ip 10.8.0.74 119093 username mehdizare 119093 kill_reason Another user logged on this global unique id 119093 mac 119093 bytes_out 0 119093 bytes_in 0 119093 station_ip 5.119.27.232 119093 port 142 119093 unique_id port 119093 remote_ip 10.8.0.90 119097 username forozande 119097 mac 119097 bytes_out 0 119097 bytes_in 0 119097 station_ip 83.122.247.32 119097 port 65 119097 unique_id port 119097 remote_ip 10.8.1.102 119099 username mahdiyehalizadeh 119099 mac 119099 bytes_out 2002142 119099 bytes_in 33752430 119099 station_ip 37.129.114.67 119099 port 148 119099 unique_id port 119099 remote_ip 10.8.0.82 119102 username forozande 119064 remote_ip 10.8.0.146 119067 username mehdizare 119067 kill_reason Another user logged on this global unique id 119067 mac 119067 bytes_out 0 119067 bytes_in 0 119067 station_ip 5.119.27.232 119067 port 151 119067 unique_id port 119070 username sedighe 119070 mac 119070 bytes_out 0 119070 bytes_in 0 119070 station_ip 83.123.248.168 119070 port 162 119070 unique_id port 119071 username sedighe 119071 mac 119071 bytes_out 0 119071 bytes_in 0 119071 station_ip 113.203.31.65 119071 port 160 119071 unique_id port 119071 remote_ip 10.8.0.146 119073 username mohammadjavad 119073 mac 119073 bytes_out 0 119073 bytes_in 0 119073 station_ip 37.129.213.74 119073 port 122 119073 unique_id port 119075 username sedighe 119075 mac 119075 bytes_out 0 119075 bytes_in 0 119075 station_ip 113.203.31.65 119075 port 122 119075 unique_id port 119075 remote_ip 10.8.0.146 119078 username sedighe 119078 mac 119078 bytes_out 292772 119078 bytes_in 454190 119078 station_ip 83.122.135.158 119078 port 160 119078 unique_id port 119078 remote_ip 10.8.0.146 119081 username sedighe 119081 mac 119081 bytes_out 0 119081 bytes_in 0 119081 station_ip 113.203.92.138 119081 port 160 119081 unique_id port 119081 remote_ip 10.8.0.146 119084 username sade 119084 unique_id port 119084 terminate_cause Lost-Carrier 119084 bytes_out 450330 119084 bytes_in 2235392 119084 station_ip 5.120.89.252 119084 port 15729681 119084 nas_port_type Virtual 119084 remote_ip 5.5.5.163 119086 username khalili 119086 mac 119086 bytes_out 1093783 119086 bytes_in 1679648 119086 station_ip 5.120.15.195 119086 port 148 119086 unique_id port 119086 remote_ip 10.8.0.86 119087 username sade 119087 unique_id port 119087 terminate_cause User-Request 119087 bytes_out 333930 119087 bytes_in 362382 119087 station_ip 5.120.57.132 119087 port 15729682 119087 nas_port_type Virtual 119087 remote_ip 5.5.5.255 119088 username mehdizare 119088 kill_reason Another user logged on this global unique id 119088 mac 119088 bytes_out 0 119088 bytes_in 0 119088 station_ip 5.119.27.232 119088 port 151 119088 unique_id port 119095 username mohammadjavad 119095 mac 119095 bytes_out 0 119095 bytes_in 0 119095 station_ip 83.122.25.151 119095 port 65 119095 unique_id port 119095 remote_ip 10.8.1.146 119096 username mahdiyehalizadeh 119096 mac 119096 bytes_out 0 119096 bytes_in 0 119096 station_ip 37.129.114.67 119096 port 148 119096 unique_id port 119096 remote_ip 10.8.0.82 119100 username sedighe 119100 mac 119100 bytes_out 59062 119100 bytes_in 154595 119100 station_ip 113.203.33.109 119100 port 151 119100 unique_id port 119100 remote_ip 10.8.0.146 119106 username malekpoir 119106 kill_reason Another user logged on this global unique id 119106 mac 119106 bytes_out 0 119106 bytes_in 0 119106 station_ip 5.119.237.28 119106 port 148 119106 unique_id port 119107 username forozande 119107 mac 119107 bytes_out 254810 119107 bytes_in 1598284 119107 station_ip 83.122.139.99 119107 port 65 119107 unique_id port 119107 remote_ip 10.8.1.102 119108 username mehdizare 119108 kill_reason Another user logged on this global unique id 119108 mac 119108 bytes_out 0 119108 bytes_in 0 119108 station_ip 5.119.27.232 119108 port 142 119108 unique_id port 119110 username alirr 119110 kill_reason Relative expiration date has reached 119110 unique_id port 119110 bytes_out 0 119110 bytes_in 0 119110 station_ip 37.27.12.234 119110 port 15729686 119110 nas_port_type Virtual 119112 username mohammadjavad 119112 mac 119112 bytes_out 667646 119112 bytes_in 6231082 119098 station_ip 83.122.75.69 119098 port 65 119098 unique_id port 119098 remote_ip 10.8.1.102 119101 username sedighe 119101 mac 119101 bytes_out 22457 119101 bytes_in 35655 119101 station_ip 113.203.57.242 119101 port 160 119101 unique_id port 119101 remote_ip 10.8.0.146 119104 username malekpoir 119104 kill_reason Another user logged on this global unique id 119104 mac 119104 bytes_out 0 119104 bytes_in 0 119104 station_ip 5.119.237.28 119104 port 148 119104 unique_id port 119104 remote_ip 10.8.0.58 119105 username mehdizare 119105 kill_reason Another user logged on this global unique id 119105 mac 119105 bytes_out 0 119105 bytes_in 0 119105 station_ip 5.119.27.232 119105 port 142 119105 unique_id port 119109 username alireza 119109 unique_id port 119109 terminate_cause User-Request 119109 bytes_out 467477 119109 bytes_in 3193205 119109 station_ip 5.112.127.243 119109 port 15729684 119109 nas_port_type Virtual 119109 remote_ip 5.5.5.121 119113 username rasoul56 119113 kill_reason Another user logged on this global unique id 119113 mac 119113 bytes_out 0 119113 bytes_in 0 119113 station_ip 83.122.126.6 119113 port 151 119113 unique_id port 119113 remote_ip 10.8.0.174 119114 username forozande 119114 mac 119114 bytes_out 83468 119114 bytes_in 257943 119114 station_ip 83.123.129.193 119114 port 65 119114 unique_id port 119114 remote_ip 10.8.1.102 119121 username zare 119121 mac 119121 bytes_out 0 119121 bytes_in 0 119121 station_ip 94.183.214.14 119121 port 122 119121 unique_id port 119121 remote_ip 10.8.0.18 119122 username zare 119122 mac 119122 bytes_out 0 119122 bytes_in 0 119122 station_ip 94.183.214.14 119122 port 122 119122 unique_id port 119122 remote_ip 10.8.0.18 119128 username abravesh 119128 unique_id port 119128 terminate_cause Lost-Carrier 119128 bytes_out 4516669 119128 bytes_in 151654230 119128 station_ip 5.119.237.247 119128 port 15729685 119128 nas_port_type Virtual 119128 remote_ip 5.5.5.124 119129 username zare 119129 mac 119129 bytes_out 0 119129 bytes_in 0 119129 station_ip 94.183.214.14 119129 port 122 119129 unique_id port 119129 remote_ip 10.8.0.18 119130 username zare 119130 mac 119130 bytes_out 0 119130 bytes_in 0 119130 station_ip 94.183.214.14 119130 port 122 119130 unique_id port 119130 remote_ip 10.8.0.18 119131 username zare 119131 mac 119131 bytes_out 0 119131 bytes_in 0 119131 station_ip 94.183.214.14 119131 port 122 119131 unique_id port 119131 remote_ip 10.8.0.18 119132 username zare 119132 mac 119132 bytes_out 0 119132 bytes_in 0 119132 station_ip 94.183.214.14 119132 port 122 119132 unique_id port 119132 remote_ip 10.8.0.18 119135 username zare 119135 mac 119135 bytes_out 0 119135 bytes_in 0 119135 station_ip 94.183.214.14 119135 port 122 119135 unique_id port 119135 remote_ip 10.8.0.18 119140 username zare 119140 mac 119140 bytes_out 0 119140 bytes_in 0 119140 station_ip 94.183.214.14 119140 port 162 119140 unique_id port 119140 remote_ip 10.8.0.18 119145 username bcboard 119145 unique_id port 119145 terminate_cause User-Request 119145 bytes_out 94256 119145 bytes_in 79635 119145 station_ip 83.122.254.82 119145 port 15729687 119145 nas_port_type Virtual 119145 remote_ip 5.5.5.127 119148 username zare 119148 mac 119148 bytes_out 0 119148 bytes_in 0 119148 station_ip 94.183.214.14 119148 port 160 119148 unique_id port 119148 remote_ip 10.8.0.18 119161 username zare 119161 mac 119161 bytes_out 0 119161 bytes_in 0 119161 station_ip 94.183.214.14 119161 port 162 119161 unique_id port 119102 mac 119102 bytes_out 0 119102 bytes_in 0 119102 station_ip 83.123.16.235 119102 port 65 119102 unique_id port 119102 remote_ip 10.8.1.102 119103 username hamidsalari1 119103 mac 119103 bytes_out 156320 119103 bytes_in 175124 119103 station_ip 83.122.119.139 119103 port 122 119103 unique_id port 119103 remote_ip 10.8.0.226 119111 username alipour 119111 kill_reason Another user logged on this global unique id 119111 mac 119111 bytes_out 0 119111 bytes_in 0 119111 station_ip 37.129.93.196 119111 port 167 119111 unique_id port 119117 username zare 119117 mac 119117 bytes_out 0 119117 bytes_in 0 119117 station_ip 94.183.214.14 119117 port 122 119117 unique_id port 119117 remote_ip 10.8.0.18 119118 username zare 119118 mac 119118 bytes_out 0 119118 bytes_in 0 119118 station_ip 94.183.214.14 119118 port 122 119118 unique_id port 119118 remote_ip 10.8.0.18 119119 username zare 119119 mac 119119 bytes_out 0 119119 bytes_in 0 119119 station_ip 94.183.214.14 119119 port 122 119119 unique_id port 119119 remote_ip 10.8.0.18 119124 username zare 119124 mac 119124 bytes_out 0 119124 bytes_in 0 119124 station_ip 94.183.214.14 119124 port 122 119124 unique_id port 119124 remote_ip 10.8.0.18 119125 username zare 119125 mac 119125 bytes_out 0 119125 bytes_in 0 119125 station_ip 94.183.214.14 119125 port 122 119125 unique_id port 119125 remote_ip 10.8.0.18 119126 username zare 119126 mac 119126 bytes_out 0 119126 bytes_in 0 119126 station_ip 94.183.214.14 119126 port 122 119126 unique_id port 119126 remote_ip 10.8.0.18 119133 username zare 119133 mac 119133 bytes_out 0 119133 bytes_in 0 119133 station_ip 94.183.214.14 119133 port 122 119133 unique_id port 119133 remote_ip 10.8.0.18 119134 username zare 119134 mac 119134 bytes_out 0 119134 bytes_in 0 119134 station_ip 94.183.214.14 119134 port 122 119134 unique_id port 119134 remote_ip 10.8.0.18 119136 username zare 119136 mac 119136 bytes_out 0 119136 bytes_in 0 119136 station_ip 94.183.214.14 119136 port 160 119136 unique_id port 119136 remote_ip 10.8.0.18 119137 username zare 119137 mac 119137 bytes_out 0 119137 bytes_in 0 119137 station_ip 94.183.214.14 119137 port 160 119137 unique_id port 119137 remote_ip 10.8.0.18 119139 username zare 119139 mac 119139 bytes_out 0 119139 bytes_in 0 119139 station_ip 94.183.214.14 119139 port 162 119139 unique_id port 119139 remote_ip 10.8.0.18 119142 username zare 119142 mac 119142 bytes_out 0 119142 bytes_in 0 119142 station_ip 94.183.214.14 119142 port 160 119142 unique_id port 119142 remote_ip 10.8.0.18 119150 username zare 119150 mac 119150 bytes_out 0 119150 bytes_in 0 119150 station_ip 94.183.214.14 119150 port 160 119150 unique_id port 119150 remote_ip 10.8.0.18 119151 username zare 119151 mac 119151 bytes_out 0 119151 bytes_in 0 119151 station_ip 94.183.214.14 119151 port 160 119151 unique_id port 119151 remote_ip 10.8.0.18 119152 username forozande 119152 mac 119152 bytes_out 582203 119152 bytes_in 638170 119152 station_ip 83.123.89.195 119152 port 65 119152 unique_id port 119152 remote_ip 10.8.1.102 119153 username zare 119153 mac 119153 bytes_out 55191 119153 bytes_in 605494 119153 station_ip 94.183.214.14 119153 port 71 119153 unique_id port 119153 remote_ip 10.8.1.58 119154 username aminvpn 119154 mac 119154 bytes_out 0 119154 bytes_in 0 119154 station_ip 204.18.216.196 119112 station_ip 83.122.116.65 119112 port 65 119112 unique_id port 119112 remote_ip 10.8.1.146 119115 username zare 119115 mac 119115 bytes_out 0 119115 bytes_in 0 119115 station_ip 94.183.214.14 119115 port 122 119115 unique_id port 119115 remote_ip 10.8.0.18 119116 username zare 119116 mac 119116 bytes_out 0 119116 bytes_in 0 119116 station_ip 94.183.214.14 119116 port 122 119116 unique_id port 119116 remote_ip 10.8.0.18 119120 username zare 119120 mac 119120 bytes_out 0 119120 bytes_in 0 119120 station_ip 94.183.214.14 119120 port 122 119120 unique_id port 119120 remote_ip 10.8.0.18 119123 username forozande 119123 mac 119123 bytes_out 73150 119123 bytes_in 152371 119123 station_ip 37.129.148.166 119123 port 65 119123 unique_id port 119123 remote_ip 10.8.1.102 119127 username zare 119127 mac 119127 bytes_out 0 119127 bytes_in 0 119127 station_ip 94.183.214.14 119127 port 122 119127 unique_id port 119127 remote_ip 10.8.0.18 119138 username zare 119138 mac 119138 bytes_out 0 119138 bytes_in 0 119138 station_ip 94.183.214.14 119138 port 160 119138 unique_id port 119138 remote_ip 10.8.0.18 119141 username ehsun 119141 mac 119141 bytes_out 0 119141 bytes_in 0 119141 station_ip 46.225.210.238 119141 port 160 119141 unique_id port 119141 remote_ip 10.8.0.162 119143 username zare 119143 mac 119143 bytes_out 0 119143 bytes_in 0 119143 station_ip 94.183.214.14 119143 port 160 119143 unique_id port 119143 remote_ip 10.8.0.18 119144 username zare 119144 mac 119144 bytes_out 0 119144 bytes_in 0 119144 station_ip 94.183.214.14 119144 port 160 119144 unique_id port 119144 remote_ip 10.8.0.18 119146 username zare 119146 mac 119146 bytes_out 0 119146 bytes_in 0 119146 station_ip 94.183.214.14 119146 port 160 119146 unique_id port 119146 remote_ip 10.8.0.18 119147 username zare 119147 mac 119147 bytes_out 0 119147 bytes_in 0 119147 station_ip 94.183.214.14 119147 port 160 119147 unique_id port 119147 remote_ip 10.8.0.18 119149 username zare 119149 mac 119149 bytes_out 0 119149 bytes_in 0 119149 station_ip 94.183.214.14 119149 port 160 119149 unique_id port 119149 remote_ip 10.8.0.18 119155 username aminvpn 119155 mac 119155 bytes_out 0 119155 bytes_in 0 119155 station_ip 5.119.251.131 119155 port 162 119155 unique_id port 119155 remote_ip 10.8.0.14 119156 username aminvpn 119156 mac 119156 bytes_out 0 119156 bytes_in 0 119156 station_ip 5.119.251.131 119156 port 160 119156 unique_id port 119156 remote_ip 10.8.0.14 119157 username zare 119157 mac 119157 bytes_out 0 119157 bytes_in 0 119157 station_ip 94.183.214.14 119157 port 71 119157 unique_id port 119157 remote_ip 10.8.1.58 119160 username zare 119160 mac 119160 bytes_out 0 119160 bytes_in 0 119160 station_ip 94.183.214.14 119160 port 162 119160 unique_id port 119160 remote_ip 10.8.0.18 119164 username zare 119164 mac 119164 bytes_out 0 119164 bytes_in 0 119164 station_ip 94.183.214.14 119164 port 162 119164 unique_id port 119164 remote_ip 10.8.0.18 119166 username sabaghnezhad 119166 mac 119166 bytes_out 0 119166 bytes_in 0 119166 station_ip 83.123.43.132 119166 port 160 119166 unique_id port 119166 remote_ip 10.8.0.186 119170 username alihosseini1 119170 kill_reason Another user logged on this global unique id 119170 mac 119170 bytes_out 0 119170 bytes_in 0 119170 station_ip 5.119.159.28 119170 port 122 119170 unique_id port 119154 port 160 119154 unique_id port 119154 remote_ip 10.8.0.14 119158 username zare 119158 mac 119158 bytes_out 0 119158 bytes_in 0 119158 station_ip 94.183.214.14 119158 port 71 119158 unique_id port 119158 remote_ip 10.8.1.58 119159 username zare 119159 mac 119159 bytes_out 0 119159 bytes_in 0 119159 station_ip 94.183.214.14 119159 port 71 119159 unique_id port 119159 remote_ip 10.8.1.58 119163 username zare 119163 mac 119163 bytes_out 0 119163 bytes_in 0 119163 station_ip 94.183.214.14 119163 port 162 119163 unique_id port 119163 remote_ip 10.8.0.18 119165 username aminvpn 119165 mac 119165 bytes_out 0 119165 bytes_in 0 119165 station_ip 5.119.251.131 119165 port 166 119165 unique_id port 119165 remote_ip 10.8.0.14 119168 username mehdizare 119168 mac 119168 bytes_out 0 119168 bytes_in 0 119168 station_ip 5.119.27.232 119168 port 142 119168 unique_id port 119169 username sabaghnezhad 119169 mac 119169 bytes_out 0 119169 bytes_in 0 119169 station_ip 83.123.43.132 119169 port 65 119169 unique_id port 119169 remote_ip 10.8.1.130 119173 username zare 119173 mac 119173 bytes_out 0 119173 bytes_in 0 119173 station_ip 94.183.214.14 119173 port 160 119173 unique_id port 119173 remote_ip 10.8.0.18 119176 username aminvpn 119176 mac 119176 bytes_out 0 119176 bytes_in 0 119176 station_ip 204.18.176.208 119176 port 162 119176 unique_id port 119176 remote_ip 10.8.0.14 119181 username zare 119181 mac 119181 bytes_out 0 119181 bytes_in 0 119181 station_ip 94.183.214.14 119181 port 160 119181 unique_id port 119181 remote_ip 10.8.0.18 119184 username alipour 119184 mac 119184 bytes_out 0 119184 bytes_in 0 119184 station_ip 37.129.93.196 119184 port 167 119184 unique_id port 119185 username sabaghnezhad 119185 mac 119185 bytes_out 0 119185 bytes_in 0 119185 station_ip 83.123.43.132 119185 port 142 119185 unique_id port 119185 remote_ip 10.8.0.186 119191 username zare 119191 mac 119191 bytes_out 0 119191 bytes_in 0 119191 station_ip 94.183.214.14 119191 port 160 119191 unique_id port 119191 remote_ip 10.8.0.18 119193 username aminvpn 119193 mac 119193 bytes_out 0 119193 bytes_in 0 119193 station_ip 5.119.251.131 119193 port 122 119193 unique_id port 119193 remote_ip 10.8.0.14 119194 username musa 119194 mac 119194 bytes_out 0 119194 bytes_in 0 119194 station_ip 113.203.19.159 119194 port 162 119194 unique_id port 119194 remote_ip 10.8.0.6 119201 username alihosseini1 119201 mac 119201 bytes_out 0 119201 bytes_in 0 119201 station_ip 5.119.159.28 119201 port 166 119201 unique_id port 119201 remote_ip 10.8.0.166 119205 username kordestani 119205 mac 119205 bytes_out 0 119205 bytes_in 0 119205 station_ip 151.235.106.65 119205 port 165 119205 unique_id port 119205 remote_ip 10.8.0.134 119206 username zare 119206 mac 119206 bytes_out 0 119206 bytes_in 0 119206 station_ip 94.183.214.14 119206 port 162 119206 unique_id port 119206 remote_ip 10.8.0.18 119210 username hamid.e 119210 unique_id port 119210 terminate_cause User-Request 119210 bytes_out 4923581 119210 bytes_in 83740428 119210 station_ip 37.27.22.45 119210 port 15729689 119210 nas_port_type Virtual 119210 remote_ip 5.5.5.131 119212 username mehdizare 119212 mac 119212 bytes_out 17425 119212 bytes_in 25029 119212 station_ip 5.119.27.232 119212 port 160 119212 unique_id port 119212 remote_ip 10.8.0.90 119214 username mehdizare 119214 mac 119161 remote_ip 10.8.0.18 119162 username forozande 119162 mac 119162 bytes_out 686236 119162 bytes_in 5203482 119162 station_ip 83.122.250.33 119162 port 65 119162 unique_id port 119162 remote_ip 10.8.1.102 119167 username rasoul56 119167 kill_reason Another user logged on this global unique id 119167 mac 119167 bytes_out 0 119167 bytes_in 0 119167 station_ip 83.122.126.6 119167 port 151 119167 unique_id port 119172 username ehsun 119172 mac 119172 bytes_out 0 119172 bytes_in 0 119172 station_ip 46.225.210.238 119172 port 160 119172 unique_id port 119172 remote_ip 10.8.0.162 119174 username bcboard 119174 unique_id port 119174 terminate_cause Lost-Carrier 119174 bytes_out 709903 119174 bytes_in 929941 119174 station_ip 83.122.254.82 119174 port 15729688 119174 nas_port_type Virtual 119174 remote_ip 5.5.5.129 119177 username mehdizare 119177 mac 119177 bytes_out 0 119177 bytes_in 0 119177 station_ip 5.119.27.232 119177 port 71 119177 unique_id port 119177 remote_ip 10.8.1.42 119179 username zare 119179 mac 119179 bytes_out 0 119179 bytes_in 0 119179 station_ip 94.183.214.14 119179 port 160 119179 unique_id port 119179 remote_ip 10.8.0.18 119180 username rasoul56 119180 kill_reason Another user logged on this global unique id 119180 mac 119180 bytes_out 0 119180 bytes_in 0 119180 station_ip 83.122.126.6 119180 port 151 119180 unique_id port 119183 username mehdizare 119183 mac 119183 bytes_out 7542 119183 bytes_in 10403 119183 station_ip 5.119.27.232 119183 port 65 119183 unique_id port 119183 remote_ip 10.8.1.42 119187 username malekpoir 119187 mac 119187 bytes_out 0 119187 bytes_in 0 119187 station_ip 5.119.237.28 119187 port 148 119187 unique_id port 119188 username aminvpn 119188 mac 119188 bytes_out 0 119188 bytes_in 0 119188 station_ip 5.119.251.131 119188 port 166 119188 unique_id port 119188 remote_ip 10.8.0.14 119189 username mehdizare 119189 mac 119189 bytes_out 9952 119189 bytes_in 14003 119189 station_ip 5.119.27.232 119189 port 71 119189 unique_id port 119189 remote_ip 10.8.1.42 119197 username alihosseini1 119197 mac 119197 bytes_out 0 119197 bytes_in 0 119197 station_ip 5.119.159.28 119197 port 162 119197 unique_id port 119197 remote_ip 10.8.0.166 119199 username aminvpn 119199 mac 119199 bytes_out 0 119199 bytes_in 0 119199 station_ip 5.119.251.131 119199 port 166 119199 unique_id port 119199 remote_ip 10.8.0.14 119204 username mehdizare 119204 mac 119204 bytes_out 19785 119204 bytes_in 21423 119204 station_ip 5.119.27.232 119204 port 160 119204 unique_id port 119204 remote_ip 10.8.0.90 119207 username aminvpn 119207 mac 119207 bytes_out 0 119207 bytes_in 0 119207 station_ip 5.119.251.131 119207 port 165 119207 unique_id port 119207 remote_ip 10.8.0.14 119209 username mahdixz 119209 unique_id port 119209 terminate_cause Lost-Carrier 119209 bytes_out 2820312 119209 bytes_in 16905665 119209 station_ip 5.120.161.99 119209 port 15729690 119209 nas_port_type Virtual 119209 remote_ip 5.5.5.133 119217 username zare 119217 mac 119217 bytes_out 0 119217 bytes_in 0 119217 station_ip 94.183.214.14 119217 port 162 119217 unique_id port 119217 remote_ip 10.8.0.18 119218 username zare 119218 mac 119218 bytes_out 0 119218 bytes_in 0 119218 station_ip 94.183.214.14 119218 port 162 119218 unique_id port 119218 remote_ip 10.8.0.18 119227 username alihosseini1 119227 kill_reason Another user logged on this global unique id 119227 mac 119227 bytes_out 0 119227 bytes_in 0 119227 station_ip 5.119.159.28 119227 port 68 119170 remote_ip 10.8.0.166 119171 username zare 119171 mac 119171 bytes_out 0 119171 bytes_in 0 119171 station_ip 94.183.214.14 119171 port 162 119171 unique_id port 119171 remote_ip 10.8.0.18 119175 username zare 119175 mac 119175 bytes_out 0 119175 bytes_in 0 119175 station_ip 94.183.214.14 119175 port 160 119175 unique_id port 119175 remote_ip 10.8.0.18 119178 username aminvpn 119178 mac 119178 bytes_out 0 119178 bytes_in 0 119178 station_ip 5.119.251.131 119178 port 162 119178 unique_id port 119178 remote_ip 10.8.0.14 119182 username zare 119182 mac 119182 bytes_out 0 119182 bytes_in 0 119182 station_ip 94.183.214.14 119182 port 160 119182 unique_id port 119182 remote_ip 10.8.0.18 119186 username amir 119186 mac 119186 bytes_out 9659566 119186 bytes_in 39919360 119186 station_ip 46.225.215.182 119186 port 68 119186 unique_id port 119186 remote_ip 10.8.1.22 119190 username alihosseini1 119190 mac 119190 bytes_out 0 119190 bytes_in 0 119190 station_ip 5.119.159.28 119190 port 122 119190 unique_id port 119192 username alihosseini1 119192 mac 119192 bytes_out 0 119192 bytes_in 0 119192 station_ip 5.119.159.28 119192 port 122 119192 unique_id port 119192 remote_ip 10.8.0.166 119195 username mehdizare 119195 mac 119195 bytes_out 0 119195 bytes_in 0 119195 station_ip 5.119.27.232 119195 port 166 119195 unique_id port 119195 remote_ip 10.8.0.90 119196 username musa 119196 mac 119196 bytes_out 12376 119196 bytes_in 17027 119196 station_ip 113.203.19.159 119196 port 122 119196 unique_id port 119196 remote_ip 10.8.0.6 119198 username forozande 119198 mac 119198 bytes_out 0 119198 bytes_in 0 119198 station_ip 83.123.177.26 119198 port 68 119198 unique_id port 119198 remote_ip 10.8.1.102 119200 username zare 119200 mac 119200 bytes_out 0 119200 bytes_in 0 119200 station_ip 94.183.214.14 119200 port 162 119200 unique_id port 119200 remote_ip 10.8.0.18 119202 username zare 119202 mac 119202 bytes_out 0 119202 bytes_in 0 119202 station_ip 94.183.214.14 119202 port 162 119202 unique_id port 119202 remote_ip 10.8.0.18 119203 username musa 119203 kill_reason Another user logged on this global unique id 119203 mac 119203 bytes_out 0 119203 bytes_in 0 119203 station_ip 113.203.19.159 119203 port 122 119203 unique_id port 119203 remote_ip 10.8.0.6 119208 username zare 119208 mac 119208 bytes_out 40861 119208 bytes_in 215623 119208 station_ip 94.183.214.14 119208 port 162 119208 unique_id port 119208 remote_ip 10.8.0.18 119211 username zare 119211 mac 119211 bytes_out 0 119211 bytes_in 0 119211 station_ip 94.183.214.14 119211 port 162 119211 unique_id port 119211 remote_ip 10.8.0.18 119213 username alipour 119213 mac 119213 bytes_out 1542590 119213 bytes_in 13450752 119213 station_ip 37.129.93.196 119213 port 142 119213 unique_id port 119213 remote_ip 10.8.0.102 119215 username zare 119215 mac 119215 bytes_out 0 119215 bytes_in 0 119215 station_ip 94.183.214.14 119215 port 160 119215 unique_id port 119215 remote_ip 10.8.0.18 119221 username zare 119221 mac 119221 bytes_out 0 119221 bytes_in 0 119221 station_ip 94.183.214.14 119221 port 151 119221 unique_id port 119221 remote_ip 10.8.0.18 119222 username zare 119222 mac 119222 bytes_out 0 119222 bytes_in 0 119222 station_ip 94.183.214.14 119222 port 151 119222 unique_id port 119222 remote_ip 10.8.0.18 119225 username alipour 119225 mac 119225 bytes_out 0 119214 bytes_out 0 119214 bytes_in 0 119214 station_ip 5.119.27.232 119214 port 162 119214 unique_id port 119214 remote_ip 10.8.0.90 119216 username zare 119216 mac 119216 bytes_out 0 119216 bytes_in 0 119216 station_ip 94.183.214.14 119216 port 160 119216 unique_id port 119216 remote_ip 10.8.0.18 119219 username rasoul56 119219 mac 119219 bytes_out 0 119219 bytes_in 0 119219 station_ip 83.122.126.6 119219 port 151 119219 unique_id port 119220 username zare 119220 mac 119220 bytes_out 0 119220 bytes_in 0 119220 station_ip 94.183.214.14 119220 port 151 119220 unique_id port 119220 remote_ip 10.8.0.18 119223 username aminvpn 119223 mac 119223 bytes_out 0 119223 bytes_in 0 119223 station_ip 5.119.251.131 119223 port 151 119223 unique_id port 119223 remote_ip 10.8.0.14 119224 username kordestani 119224 mac 119224 bytes_out 0 119224 bytes_in 0 119224 station_ip 151.235.106.65 119224 port 71 119224 unique_id port 119224 remote_ip 10.8.1.98 119226 username hamidsalari 119226 kill_reason Another user logged on this global unique id 119226 mac 119226 bytes_out 0 119226 bytes_in 0 119226 station_ip 5.119.72.47 119226 port 157 119226 unique_id port 119230 username alihosseini1 119230 mac 119230 bytes_out 0 119230 bytes_in 0 119230 station_ip 5.119.159.28 119230 port 68 119230 unique_id port 119231 username forozande 119231 mac 119231 bytes_out 0 119231 bytes_in 0 119231 station_ip 83.123.2.74 119231 port 71 119231 unique_id port 119231 remote_ip 10.8.1.102 119233 username zare 119233 mac 119233 bytes_out 197981 119233 bytes_in 1421323 119233 station_ip 94.183.214.14 119233 port 151 119233 unique_id port 119233 remote_ip 10.8.0.18 119244 username forozande 119244 mac 119244 bytes_out 0 119244 bytes_in 0 119244 station_ip 83.122.237.198 119244 port 65 119244 unique_id port 119244 remote_ip 10.8.1.102 119245 username zare 119245 mac 119245 bytes_out 0 119245 bytes_in 0 119245 station_ip 94.183.214.14 119245 port 122 119245 unique_id port 119245 remote_ip 10.8.0.18 119246 username zare 119246 mac 119246 bytes_out 0 119246 bytes_in 0 119246 station_ip 94.183.214.14 119246 port 122 119246 unique_id port 119246 remote_ip 10.8.0.18 119261 username zare 119261 mac 119261 bytes_out 0 119261 bytes_in 0 119261 station_ip 94.183.214.14 119261 port 122 119261 unique_id port 119261 remote_ip 10.8.0.18 119262 username zare 119262 mac 119262 bytes_out 0 119262 bytes_in 0 119262 station_ip 94.183.214.14 119262 port 122 119262 unique_id port 119262 remote_ip 10.8.0.18 119263 username zare 119263 mac 119263 bytes_out 0 119263 bytes_in 0 119263 station_ip 94.183.214.14 119263 port 122 119263 unique_id port 119263 remote_ip 10.8.0.18 119264 username zare 119264 mac 119264 bytes_out 0 119264 bytes_in 0 119264 station_ip 94.183.214.14 119264 port 122 119264 unique_id port 119264 remote_ip 10.8.0.18 119267 username alipour 119267 kill_reason Another user logged on this global unique id 119267 mac 119267 bytes_out 0 119267 bytes_in 0 119267 station_ip 37.129.93.196 119267 port 162 119267 unique_id port 119268 username zare 119268 mac 119268 bytes_out 17985 119268 bytes_in 52806 119268 station_ip 94.183.214.14 119268 port 151 119268 unique_id port 119268 remote_ip 10.8.0.18 119272 username aminvpn 119272 mac 119272 bytes_out 0 119272 bytes_in 0 119272 station_ip 5.119.251.131 119272 port 167 119272 unique_id port 119272 remote_ip 10.8.0.14 119225 bytes_in 0 119225 station_ip 37.129.93.196 119225 port 160 119225 unique_id port 119225 remote_ip 10.8.0.102 119236 username mehdizare 119236 mac 119236 bytes_out 0 119236 bytes_in 0 119236 station_ip 5.119.27.232 119236 port 160 119236 unique_id port 119236 remote_ip 10.8.0.90 119238 username zare 119238 mac 119238 bytes_out 30903 119238 bytes_in 198476 119238 station_ip 94.183.214.14 119238 port 151 119238 unique_id port 119238 remote_ip 10.8.0.18 119241 username musa 119241 mac 119241 bytes_out 0 119241 bytes_in 0 119241 station_ip 113.203.19.159 119241 port 122 119241 unique_id port 119242 username zare 119242 mac 119242 bytes_out 0 119242 bytes_in 0 119242 station_ip 94.183.214.14 119242 port 122 119242 unique_id port 119242 remote_ip 10.8.0.18 119247 username zare 119247 mac 119247 bytes_out 0 119247 bytes_in 0 119247 station_ip 94.183.214.14 119247 port 122 119247 unique_id port 119247 remote_ip 10.8.0.18 119248 username aminvpn 119248 mac 119248 bytes_out 0 119248 bytes_in 0 119248 station_ip 5.119.251.131 119248 port 166 119248 unique_id port 119248 remote_ip 10.8.0.14 119251 username zare 119251 mac 119251 bytes_out 0 119251 bytes_in 0 119251 station_ip 94.183.214.14 119251 port 122 119251 unique_id port 119251 remote_ip 10.8.0.18 119255 username amir 119255 mac 119255 bytes_out 154711 119255 bytes_in 461857 119255 station_ip 46.225.209.131 119255 port 122 119255 unique_id port 119255 remote_ip 10.8.0.50 119258 username aminvpn 119258 mac 119258 bytes_out 0 119258 bytes_in 0 119258 station_ip 5.119.251.131 119258 port 122 119258 unique_id port 119258 remote_ip 10.8.0.14 119260 username zare 119260 mac 119260 bytes_out 0 119260 bytes_in 0 119260 station_ip 94.183.214.14 119260 port 122 119260 unique_id port 119260 remote_ip 10.8.0.18 119265 username zare 119265 mac 119265 bytes_out 0 119265 bytes_in 0 119265 station_ip 94.183.214.14 119265 port 122 119265 unique_id port 119265 remote_ip 10.8.0.18 119266 username kordestani 119266 mac 119266 bytes_out 3160006 119266 bytes_in 31563304 119266 station_ip 151.235.106.65 119266 port 165 119266 unique_id port 119266 remote_ip 10.8.0.134 119269 username forozande 119269 mac 119269 bytes_out 0 119269 bytes_in 0 119269 station_ip 37.129.13.119 119269 port 68 119269 unique_id port 119269 remote_ip 10.8.1.102 119273 username zare 119273 mac 119273 bytes_out 0 119273 bytes_in 0 119273 station_ip 94.183.214.14 119273 port 151 119273 unique_id port 119273 remote_ip 10.8.0.18 119276 username zare 119276 mac 119276 bytes_out 0 119276 bytes_in 0 119276 station_ip 94.183.214.14 119276 port 166 119276 unique_id port 119276 remote_ip 10.8.0.18 119277 username aminvpn 119277 mac 119277 bytes_out 0 119277 bytes_in 0 119277 station_ip 151.238.224.240 119277 port 151 119277 unique_id port 119277 remote_ip 10.8.0.14 119278 username aminvpn 119278 mac 119278 bytes_out 0 119278 bytes_in 0 119278 station_ip 5.120.63.237 119278 port 166 119278 unique_id port 119278 remote_ip 10.8.0.14 119280 username zare 119280 mac 119280 bytes_out 0 119280 bytes_in 0 119280 station_ip 94.183.214.14 119280 port 151 119280 unique_id port 119280 remote_ip 10.8.0.18 119283 username mehdizare 119283 mac 119283 bytes_out 65485 119283 bytes_in 56695 119283 station_ip 5.119.27.232 119283 port 142 119283 unique_id port 119283 remote_ip 10.8.0.90 119284 username aminvpn 119227 unique_id port 119227 remote_ip 10.8.1.106 119228 username mahdiyehalizadeh 119228 mac 119228 bytes_out 0 119228 bytes_in 0 119228 station_ip 113.203.87.243 119228 port 160 119228 unique_id port 119228 remote_ip 10.8.0.82 119229 username aminvpn 119229 mac 119229 bytes_out 0 119229 bytes_in 0 119229 station_ip 5.119.251.131 119229 port 160 119229 unique_id port 119229 remote_ip 10.8.0.14 119232 username mehdizare 119232 mac 119232 bytes_out 121752 119232 bytes_in 923813 119232 station_ip 5.119.27.232 119232 port 142 119232 unique_id port 119232 remote_ip 10.8.0.90 119234 username zare 119234 mac 119234 bytes_out 0 119234 bytes_in 0 119234 station_ip 94.183.214.14 119234 port 142 119234 unique_id port 119234 remote_ip 10.8.0.18 119235 username zare 119235 mac 119235 bytes_out 0 119235 bytes_in 0 119235 station_ip 94.183.214.14 119235 port 142 119235 unique_id port 119235 remote_ip 10.8.0.18 119237 username aminvpn 119237 mac 119237 bytes_out 0 119237 bytes_in 0 119237 station_ip 5.119.251.131 119237 port 160 119237 unique_id port 119237 remote_ip 10.8.0.14 119239 username sabaghnezhad 119239 mac 119239 bytes_out 0 119239 bytes_in 0 119239 station_ip 83.123.43.132 119239 port 65 119239 unique_id port 119239 remote_ip 10.8.1.130 119240 username zare 119240 mac 119240 bytes_out 0 119240 bytes_in 0 119240 station_ip 94.183.214.14 119240 port 151 119240 unique_id port 119240 remote_ip 10.8.0.18 119243 username zare 119243 mac 119243 bytes_out 0 119243 bytes_in 0 119243 station_ip 94.183.214.14 119243 port 122 119243 unique_id port 119243 remote_ip 10.8.0.18 119249 username zare 119249 mac 119249 bytes_out 0 119249 bytes_in 0 119249 station_ip 94.183.214.14 119249 port 122 119249 unique_id port 119249 remote_ip 10.8.0.18 119250 username zare 119250 mac 119250 bytes_out 0 119250 bytes_in 0 119250 station_ip 94.183.214.14 119250 port 122 119250 unique_id port 119250 remote_ip 10.8.0.18 119252 username alipour 119252 kill_reason Another user logged on this global unique id 119252 mac 119252 bytes_out 0 119252 bytes_in 0 119252 station_ip 37.129.93.196 119252 port 162 119252 unique_id port 119252 remote_ip 10.8.0.102 119253 username sabaghnezhad 119253 mac 119253 bytes_out 0 119253 bytes_in 0 119253 station_ip 83.123.43.132 119253 port 151 119253 unique_id port 119253 remote_ip 10.8.0.186 119254 username zare 119254 mac 119254 bytes_out 0 119254 bytes_in 0 119254 station_ip 94.183.214.14 119254 port 122 119254 unique_id port 119254 remote_ip 10.8.0.18 119256 username aminvpn 119256 mac 119256 bytes_out 0 119256 bytes_in 0 119256 station_ip 5.119.251.131 119256 port 122 119256 unique_id port 119256 remote_ip 10.8.0.14 119257 username aminvpn 119257 mac 119257 bytes_out 0 119257 bytes_in 0 119257 station_ip 5.119.251.131 119257 port 122 119257 unique_id port 119257 remote_ip 10.8.0.14 119259 username zare 119259 mac 119259 bytes_out 106732 119259 bytes_in 308188 119259 station_ip 94.183.214.14 119259 port 151 119259 unique_id port 119259 remote_ip 10.8.0.18 119270 username zare 119270 mac 119270 bytes_out 0 119270 bytes_in 0 119270 station_ip 94.183.214.14 119270 port 151 119270 unique_id port 119270 remote_ip 10.8.0.18 119271 username aminvpn 119271 mac 119271 bytes_out 425052 119271 bytes_in 16020640 119271 station_ip 151.238.224.240 119271 port 166 119271 unique_id port 119271 remote_ip 10.8.0.14 119274 username aminvpn 119274 mac 119274 bytes_out 0 119274 bytes_in 0 119274 station_ip 5.119.251.131 119274 port 151 119274 unique_id port 119274 remote_ip 10.8.0.14 119275 username zare 119275 mac 119275 bytes_out 0 119275 bytes_in 0 119275 station_ip 94.183.214.14 119275 port 166 119275 unique_id port 119275 remote_ip 10.8.0.18 119281 username aminvpn 119281 mac 119281 bytes_out 0 119281 bytes_in 0 119281 station_ip 83.122.161.183 119281 port 166 119281 unique_id port 119281 remote_ip 10.8.0.14 119290 username aminvpn 119290 mac 119290 bytes_out 0 119290 bytes_in 0 119290 station_ip 5.120.63.237 119290 port 166 119290 unique_id port 119290 remote_ip 10.8.0.14 119294 username zare 119294 mac 119294 bytes_out 0 119294 bytes_in 0 119294 station_ip 94.183.214.14 119294 port 166 119294 unique_id port 119294 remote_ip 10.8.0.18 119296 username aminvpn 119296 mac 119296 bytes_out 0 119296 bytes_in 0 119296 station_ip 83.122.161.183 119296 port 151 119296 unique_id port 119296 remote_ip 10.8.0.14 119297 username aminvpn 119297 mac 119297 bytes_out 0 119297 bytes_in 0 119297 station_ip 5.120.63.237 119297 port 142 119297 unique_id port 119297 remote_ip 10.8.0.14 119301 username zare 119301 mac 119301 bytes_out 0 119301 bytes_in 0 119301 station_ip 94.183.214.14 119301 port 151 119301 unique_id port 119301 remote_ip 10.8.0.18 119303 username zare 119303 mac 119303 bytes_out 0 119303 bytes_in 0 119303 station_ip 94.183.214.14 119303 port 142 119303 unique_id port 119303 remote_ip 10.8.0.18 119308 username aminvpn 119308 mac 119308 bytes_out 0 119308 bytes_in 0 119308 station_ip 5.120.63.237 119308 port 142 119308 unique_id port 119308 remote_ip 10.8.0.14 119311 username sabaghnezhad 119311 mac 119311 bytes_out 60664 119311 bytes_in 96464 119311 station_ip 83.123.43.132 119311 port 65 119311 unique_id port 119311 remote_ip 10.8.1.130 119314 username zare 119314 mac 119314 bytes_out 0 119314 bytes_in 0 119314 station_ip 94.183.214.14 119314 port 142 119314 unique_id port 119314 remote_ip 10.8.0.18 119317 username mehdizare 119317 mac 119317 bytes_out 0 119317 bytes_in 0 119317 station_ip 5.119.27.232 119317 port 65 119317 unique_id port 119317 remote_ip 10.8.1.42 119318 username musa 119318 mac 119318 bytes_out 452669 119318 bytes_in 3653145 119318 station_ip 83.122.223.136 119318 port 160 119318 unique_id port 119318 remote_ip 10.8.0.6 119323 username alipour 119323 mac 119323 bytes_out 0 119323 bytes_in 0 119323 station_ip 37.129.93.196 119323 port 162 119323 unique_id port 119327 username mehdizare 119327 mac 119327 bytes_out 10040 119327 bytes_in 12594 119327 station_ip 5.119.27.232 119327 port 65 119327 unique_id port 119327 remote_ip 10.8.1.42 119328 username aminvpn 119328 mac 119328 bytes_out 0 119328 bytes_in 0 119328 station_ip 5.120.63.237 119328 port 151 119328 unique_id port 119328 remote_ip 10.8.0.14 119331 username mahdiyehalizadeh 119331 mac 119331 bytes_out 0 119331 bytes_in 0 119331 station_ip 37.129.244.20 119331 port 148 119331 unique_id port 119331 remote_ip 10.8.0.82 119334 username aminvpn 119334 mac 119334 bytes_out 0 119334 bytes_in 0 119334 station_ip 5.120.63.237 119334 port 142 119334 unique_id port 119334 remote_ip 10.8.0.14 119335 username zare 119335 mac 119335 bytes_out 0 119335 bytes_in 0 119335 station_ip 94.183.214.14 119335 port 65 119279 username aminvpn 119279 mac 119279 bytes_out 0 119279 bytes_in 0 119279 station_ip 151.238.224.240 119279 port 167 119279 unique_id port 119279 remote_ip 10.8.0.14 119282 username zare 119282 mac 119282 bytes_out 0 119282 bytes_in 0 119282 station_ip 94.183.214.14 119282 port 151 119282 unique_id port 119282 remote_ip 10.8.0.18 119287 username zare 119287 mac 119287 bytes_out 0 119287 bytes_in 0 119287 station_ip 94.183.214.14 119287 port 151 119287 unique_id port 119287 remote_ip 10.8.0.18 119288 username zare 119288 mac 119288 bytes_out 0 119288 bytes_in 0 119288 station_ip 94.183.214.14 119288 port 151 119288 unique_id port 119288 remote_ip 10.8.0.18 119292 username aminvpn 119292 mac 119292 bytes_out 0 119292 bytes_in 0 119292 station_ip 83.122.161.183 119292 port 151 119292 unique_id port 119292 remote_ip 10.8.0.14 119293 username aminvpn 119293 mac 119293 bytes_out 0 119293 bytes_in 0 119293 station_ip 5.120.63.237 119293 port 166 119293 unique_id port 119293 remote_ip 10.8.0.14 119295 username mehdizare 119295 mac 119295 bytes_out 24061 119295 bytes_in 42585 119295 station_ip 5.119.27.232 119295 port 142 119295 unique_id port 119295 remote_ip 10.8.0.90 119299 username zare 119299 mac 119299 bytes_out 0 119299 bytes_in 0 119299 station_ip 94.183.214.14 119299 port 142 119299 unique_id port 119299 remote_ip 10.8.0.18 119300 username aminvpn 119300 mac 119300 bytes_out 0 119300 bytes_in 0 119300 station_ip 83.122.161.183 119300 port 151 119300 unique_id port 119300 remote_ip 10.8.0.14 119302 username aminvpn 119302 mac 119302 bytes_out 7926 119302 bytes_in 7524 119302 station_ip 5.120.63.237 119302 port 142 119302 unique_id port 119302 remote_ip 10.8.0.14 119306 username aminvpn 119306 mac 119306 bytes_out 0 119306 bytes_in 0 119306 station_ip 5.119.251.131 119306 port 151 119306 unique_id port 119306 remote_ip 10.8.0.14 119309 username aminvpn 119309 mac 119309 bytes_out 0 119309 bytes_in 0 119309 station_ip 83.122.161.183 119309 port 151 119309 unique_id port 119309 remote_ip 10.8.0.14 119312 username mehdizare 119312 mac 119312 bytes_out 0 119312 bytes_in 0 119312 station_ip 5.119.27.232 119312 port 68 119312 unique_id port 119312 remote_ip 10.8.1.42 119316 username zare 119316 mac 119316 bytes_out 0 119316 bytes_in 0 119316 station_ip 94.183.214.14 119316 port 142 119316 unique_id port 119316 remote_ip 10.8.0.18 119321 username aminvpn 119321 mac 119321 bytes_out 0 119321 bytes_in 0 119321 station_ip 83.122.161.183 119321 port 148 119321 unique_id port 119321 remote_ip 10.8.0.14 119322 username aminvpn 119322 mac 119322 bytes_out 0 119322 bytes_in 0 119322 station_ip 5.120.63.237 119322 port 151 119322 unique_id port 119322 remote_ip 10.8.0.14 119325 username zare 119325 mac 119325 bytes_out 0 119325 bytes_in 0 119325 station_ip 94.183.214.14 119325 port 72 119325 unique_id port 119325 remote_ip 10.8.1.58 119326 username zare 119326 mac 119326 bytes_out 0 119326 bytes_in 0 119326 station_ip 94.183.214.14 119326 port 72 119326 unique_id port 119326 remote_ip 10.8.1.58 119329 username musa 119329 mac 119329 bytes_out 0 119329 bytes_in 0 119329 station_ip 83.122.223.136 119329 port 142 119329 unique_id port 119329 remote_ip 10.8.0.6 119333 username aminvpn 119333 mac 119333 bytes_out 0 119333 bytes_in 0 119333 station_ip 5.119.251.131 119333 port 148 119284 mac 119284 bytes_out 0 119284 bytes_in 0 119284 station_ip 5.120.63.237 119284 port 167 119284 unique_id port 119284 remote_ip 10.8.0.14 119285 username aminvpn 119285 mac 119285 bytes_out 0 119285 bytes_in 0 119285 station_ip 83.122.161.183 119285 port 151 119285 unique_id port 119285 remote_ip 10.8.0.14 119286 username aminvpn 119286 mac 119286 bytes_out 0 119286 bytes_in 0 119286 station_ip 5.120.63.237 119286 port 166 119286 unique_id port 119286 remote_ip 10.8.0.14 119289 username aminvpn 119289 mac 119289 bytes_out 0 119289 bytes_in 0 119289 station_ip 83.122.161.183 119289 port 167 119289 unique_id port 119289 remote_ip 10.8.0.14 119291 username zare 119291 mac 119291 bytes_out 0 119291 bytes_in 0 119291 station_ip 94.183.214.14 119291 port 166 119291 unique_id port 119291 remote_ip 10.8.0.18 119298 username zare 119298 mac 119298 bytes_out 0 119298 bytes_in 0 119298 station_ip 94.183.214.14 119298 port 142 119298 unique_id port 119298 remote_ip 10.8.0.18 119304 username aminvpn 119304 mac 119304 bytes_out 0 119304 bytes_in 0 119304 station_ip 83.122.161.183 119304 port 151 119304 unique_id port 119304 remote_ip 10.8.0.14 119305 username aminvpn 119305 mac 119305 bytes_out 0 119305 bytes_in 0 119305 station_ip 5.120.63.237 119305 port 142 119305 unique_id port 119305 remote_ip 10.8.0.14 119307 username zare 119307 mac 119307 bytes_out 0 119307 bytes_in 0 119307 station_ip 94.183.214.14 119307 port 142 119307 unique_id port 119307 remote_ip 10.8.0.18 119310 username kordestani 119310 mac 119310 bytes_out 298770 119310 bytes_in 109738 119310 station_ip 151.235.106.65 119310 port 165 119310 unique_id port 119310 remote_ip 10.8.0.134 119313 username malekpoir 119313 mac 119313 bytes_out 0 119313 bytes_in 0 119313 station_ip 5.119.237.28 119313 port 148 119313 unique_id port 119313 remote_ip 10.8.0.58 119315 username mehdizare 119315 mac 119315 bytes_out 7628 119315 bytes_in 10225 119315 station_ip 5.119.27.232 119315 port 65 119315 unique_id port 119315 remote_ip 10.8.1.42 119319 username aminvpn 119319 mac 119319 bytes_out 80412 119319 bytes_in 531104 119319 station_ip 5.120.63.237 119319 port 166 119319 unique_id port 119319 remote_ip 10.8.0.14 119320 username zare 119320 mac 119320 bytes_out 0 119320 bytes_in 0 119320 station_ip 94.183.214.14 119320 port 151 119320 unique_id port 119320 remote_ip 10.8.0.18 119324 username aminvpn 119324 mac 119324 bytes_out 0 119324 bytes_in 0 119324 station_ip 83.122.161.183 119324 port 160 119324 unique_id port 119324 remote_ip 10.8.0.14 119330 username aminvpn 119330 mac 119330 bytes_out 4593 119330 bytes_in 6688 119330 station_ip 83.122.161.183 119330 port 162 119330 unique_id port 119330 remote_ip 10.8.0.14 119332 username aminvpn 119332 mac 119332 bytes_out 0 119332 bytes_in 0 119332 station_ip 5.120.63.237 119332 port 142 119332 unique_id port 119332 remote_ip 10.8.0.14 119336 username aminvpn 119336 mac 119336 bytes_out 0 119336 bytes_in 0 119336 station_ip 83.122.161.183 119336 port 162 119336 unique_id port 119336 remote_ip 10.8.0.14 119338 username aminvpn 119338 mac 119338 bytes_out 0 119338 bytes_in 0 119338 station_ip 151.238.224.240 119338 port 162 119338 unique_id port 119338 remote_ip 10.8.0.14 119341 username forozande 119341 mac 119341 bytes_out 0 119341 bytes_in 0 119341 station_ip 83.122.55.149 119341 port 65 119333 unique_id port 119333 remote_ip 10.8.0.14 119337 username aminvpn 119337 mac 119337 bytes_out 0 119337 bytes_in 0 119337 station_ip 5.120.63.237 119337 port 142 119337 unique_id port 119337 remote_ip 10.8.0.14 119339 username aminvpn 119339 mac 119339 bytes_out 0 119339 bytes_in 0 119339 station_ip 5.120.63.237 119339 port 142 119339 unique_id port 119339 remote_ip 10.8.0.14 119348 username aminvpn 119348 mac 119348 bytes_out 0 119348 bytes_in 0 119348 station_ip 151.238.224.240 119348 port 148 119348 unique_id port 119348 remote_ip 10.8.0.14 119352 username zare 119352 mac 119352 bytes_out 0 119352 bytes_in 0 119352 station_ip 94.183.214.14 119352 port 148 119352 unique_id port 119352 remote_ip 10.8.0.18 119353 username zare 119353 mac 119353 bytes_out 0 119353 bytes_in 0 119353 station_ip 94.183.214.14 119353 port 148 119353 unique_id port 119353 remote_ip 10.8.0.18 119357 username mehdizare 119357 mac 119357 bytes_out 25650 119357 bytes_in 37860 119357 station_ip 5.119.27.232 119357 port 160 119357 unique_id port 119357 remote_ip 10.8.0.90 119358 username aminvpn 119358 mac 119358 bytes_out 0 119358 bytes_in 0 119358 station_ip 151.238.224.240 119358 port 148 119358 unique_id port 119358 remote_ip 10.8.0.14 119359 username musa 119359 mac 119359 bytes_out 298674 119359 bytes_in 393944 119359 station_ip 37.129.49.28 119359 port 165 119359 unique_id port 119359 remote_ip 10.8.0.6 119364 username amir 119364 mac 119364 bytes_out 0 119364 bytes_in 0 119364 station_ip 46.225.209.131 119364 port 122 119364 unique_id port 119364 remote_ip 10.8.0.50 119366 username aminvpn 119366 unique_id port 119366 terminate_cause User-Request 119366 bytes_out 24652868 119366 bytes_in 3088370 119366 station_ip 151.238.224.240 119366 port 15729691 119366 nas_port_type Virtual 119366 remote_ip 5.5.5.135 119368 username alipour 119368 mac 119368 bytes_out 169317 119368 bytes_in 127886 119368 station_ip 37.129.93.196 119368 port 151 119368 unique_id port 119368 remote_ip 10.8.0.102 119374 username aminvpn 119374 mac 119374 bytes_out 0 119374 bytes_in 0 119374 station_ip 151.238.224.240 119374 port 142 119374 unique_id port 119374 remote_ip 10.8.0.14 119375 username zare 119375 mac 119375 bytes_out 0 119375 bytes_in 0 119375 station_ip 94.183.214.14 119375 port 160 119375 unique_id port 119375 remote_ip 10.8.0.18 119376 username zare 119376 mac 119376 bytes_out 0 119376 bytes_in 0 119376 station_ip 94.183.214.14 119376 port 160 119376 unique_id port 119376 remote_ip 10.8.0.18 119377 username zare 119377 mac 119377 bytes_out 0 119377 bytes_in 0 119377 station_ip 94.183.214.14 119377 port 160 119377 unique_id port 119377 remote_ip 10.8.0.18 119380 username zare 119380 mac 119380 bytes_out 0 119380 bytes_in 0 119380 station_ip 94.183.214.14 119380 port 160 119380 unique_id port 119380 remote_ip 10.8.0.18 119381 username mehdizare 119381 mac 119381 bytes_out 0 119381 bytes_in 0 119381 station_ip 5.119.27.232 119381 port 148 119381 unique_id port 119381 remote_ip 10.8.0.90 119382 username zare 119382 mac 119382 bytes_out 0 119382 bytes_in 0 119382 station_ip 94.183.214.14 119382 port 148 119382 unique_id port 119382 remote_ip 10.8.0.18 119385 username forozande 119385 mac 119385 bytes_out 0 119385 bytes_in 0 119385 station_ip 83.122.59.190 119385 port 68 119385 unique_id port 119385 remote_ip 10.8.1.102 119392 username aminvpn 119335 unique_id port 119335 remote_ip 10.8.1.58 119340 username aminvpn 119340 mac 119340 bytes_out 0 119340 bytes_in 0 119340 station_ip 151.238.224.240 119340 port 162 119340 unique_id port 119340 remote_ip 10.8.0.14 119343 username mohammadjavad 119343 mac 119343 bytes_out 390126 119343 bytes_in 2746712 119343 station_ip 83.123.157.203 119343 port 72 119343 unique_id port 119343 remote_ip 10.8.1.146 119346 username aminvpn 119346 mac 119346 bytes_out 9652 119346 bytes_in 12034 119346 station_ip 5.120.63.237 119346 port 162 119346 unique_id port 119346 remote_ip 10.8.0.14 119349 username aminvpn 119349 mac 119349 bytes_out 0 119349 bytes_in 0 119349 station_ip 5.119.251.131 119349 port 142 119349 unique_id port 119349 remote_ip 10.8.0.14 119350 username aminvpn 119350 mac 119350 bytes_out 0 119350 bytes_in 0 119350 station_ip 5.120.63.237 119350 port 148 119350 unique_id port 119350 remote_ip 10.8.0.14 119354 username zare 119354 mac 119354 bytes_out 0 119354 bytes_in 0 119354 station_ip 94.183.214.14 119354 port 148 119354 unique_id port 119354 remote_ip 10.8.0.18 119360 username mehdizare 119360 mac 119360 bytes_out 0 119360 bytes_in 0 119360 station_ip 5.119.27.232 119360 port 142 119360 unique_id port 119360 remote_ip 10.8.0.90 119361 username sabaghnezhad 119361 mac 119361 bytes_out 23955 119361 bytes_in 57589 119361 station_ip 83.123.43.132 119361 port 68 119361 unique_id port 119361 remote_ip 10.8.1.130 119362 username zare 119362 mac 119362 bytes_out 71389 119362 bytes_in 262049 119362 station_ip 94.183.214.14 119362 port 160 119362 unique_id port 119362 remote_ip 10.8.0.18 119363 username aminvpn 119363 mac 119363 bytes_out 16198 119363 bytes_in 36954 119363 station_ip 5.120.63.237 119363 port 162 119363 unique_id port 119363 remote_ip 10.8.0.14 119367 username aminvpn 119367 mac 119367 bytes_out 8267 119367 bytes_in 12113 119367 station_ip 5.120.63.237 119367 port 162 119367 unique_id port 119367 remote_ip 10.8.0.14 119369 username aminvpn 119369 mac 119369 bytes_out 0 119369 bytes_in 0 119369 station_ip 151.238.224.240 119369 port 165 119369 unique_id port 119369 remote_ip 10.8.0.14 119372 username musa 119372 mac 119372 bytes_out 0 119372 bytes_in 0 119372 station_ip 37.129.49.28 119372 port 142 119372 unique_id port 119372 remote_ip 10.8.0.6 119378 username mohammadjavad 119378 mac 119378 bytes_out 0 119378 bytes_in 0 119378 station_ip 83.122.206.142 119378 port 68 119378 unique_id port 119378 remote_ip 10.8.1.146 119379 username zare 119379 mac 119379 bytes_out 0 119379 bytes_in 0 119379 station_ip 94.183.214.14 119379 port 160 119379 unique_id port 119379 remote_ip 10.8.0.18 119383 username zare 119383 mac 119383 bytes_out 0 119383 bytes_in 0 119383 station_ip 94.183.214.14 119383 port 148 119383 unique_id port 119383 remote_ip 10.8.0.18 119384 username aminvpn 119384 mac 119384 bytes_out 23333 119384 bytes_in 31812 119384 station_ip 5.120.63.237 119384 port 162 119384 unique_id port 119384 remote_ip 10.8.0.14 119388 username musa 119388 mac 119388 bytes_out 0 119388 bytes_in 0 119388 station_ip 37.129.49.28 119388 port 142 119388 unique_id port 119388 remote_ip 10.8.0.6 119389 username zare 119389 mac 119389 bytes_out 0 119389 bytes_in 0 119389 station_ip 94.183.214.14 119389 port 148 119389 unique_id port 119389 remote_ip 10.8.0.18 119390 username amir 120310 username mehdizare 119341 unique_id port 119341 remote_ip 10.8.1.102 119342 username mahdiyehalizadeh 119342 mac 119342 bytes_out 65916 119342 bytes_in 391521 119342 station_ip 83.122.78.48 119342 port 148 119342 unique_id port 119342 remote_ip 10.8.0.82 119344 username aminvpn 119344 mac 119344 bytes_out 12108 119344 bytes_in 24559 119344 station_ip 5.120.63.237 119344 port 166 119344 unique_id port 119344 remote_ip 10.8.0.14 119345 username aminvpn 119345 mac 119345 bytes_out 0 119345 bytes_in 0 119345 station_ip 151.238.224.240 119345 port 148 119345 unique_id port 119345 remote_ip 10.8.0.14 119347 username zare 119347 mac 119347 bytes_out 0 119347 bytes_in 0 119347 station_ip 94.183.214.14 119347 port 142 119347 unique_id port 119347 remote_ip 10.8.0.18 119351 username aminvpn 119351 mac 119351 bytes_out 0 119351 bytes_in 0 119351 station_ip 5.119.251.131 119351 port 142 119351 unique_id port 119351 remote_ip 10.8.0.14 119355 username aminvpn 119355 mac 119355 bytes_out 0 119355 bytes_in 0 119355 station_ip 5.120.63.237 119355 port 142 119355 unique_id port 119355 remote_ip 10.8.0.14 119356 username zare 119356 mac 119356 bytes_out 0 119356 bytes_in 0 119356 station_ip 94.183.214.14 119356 port 142 119356 unique_id port 119356 remote_ip 10.8.0.18 119365 username aminvpn 119365 mac 119365 bytes_out 0 119365 bytes_in 0 119365 station_ip 151.238.224.240 119365 port 165 119365 unique_id port 119365 remote_ip 10.8.0.14 119370 username aminvpn 119370 mac 119370 bytes_out 0 119370 bytes_in 0 119370 station_ip 5.119.251.131 119370 port 162 119370 unique_id port 119370 remote_ip 10.8.0.14 119371 username aminvpn 119371 mac 119371 bytes_out 0 119371 bytes_in 0 119371 station_ip 5.120.63.237 119371 port 165 119371 unique_id port 119371 remote_ip 10.8.0.14 119373 username aminvpn 119373 mac 119373 bytes_out 0 119373 bytes_in 0 119373 station_ip 5.119.251.131 119373 port 162 119373 unique_id port 119373 remote_ip 10.8.0.14 119386 username aminvpn 119386 mac 119386 bytes_out 0 119386 bytes_in 0 119386 station_ip 5.119.251.131 119386 port 148 119386 unique_id port 119386 remote_ip 10.8.0.14 119387 username zare 119387 mac 119387 bytes_out 0 119387 bytes_in 0 119387 station_ip 94.183.214.14 119387 port 148 119387 unique_id port 119387 remote_ip 10.8.0.18 119391 username zare 119391 mac 119391 bytes_out 0 119391 bytes_in 0 119391 station_ip 94.183.214.14 119391 port 148 119391 unique_id port 119391 remote_ip 10.8.0.18 119395 username zare 119395 mac 119395 bytes_out 0 119395 bytes_in 0 119395 station_ip 94.183.214.14 119395 port 142 119395 unique_id port 119395 remote_ip 10.8.0.18 119398 username forozande 119398 mac 119398 bytes_out 0 119398 bytes_in 0 119398 station_ip 83.122.37.16 119398 port 68 119398 unique_id port 119398 remote_ip 10.8.1.102 119401 username aminvpn 119401 mac 119401 bytes_out 0 119401 bytes_in 0 119401 station_ip 5.119.251.131 119401 port 148 119401 unique_id port 119401 remote_ip 10.8.0.14 119403 username sabaghnezhad 119403 mac 119403 bytes_out 0 119403 bytes_in 0 119403 station_ip 83.123.64.151 119403 port 65 119403 unique_id port 119403 remote_ip 10.8.1.130 119406 username zare 119406 mac 119406 bytes_out 14996 119406 bytes_in 22198 119406 station_ip 94.183.214.14 119406 port 162 119406 unique_id port 119406 remote_ip 10.8.0.18 119411 username zare 119411 mac 119411 bytes_out 0 119390 kill_reason Another user logged on this global unique id 119390 mac 119390 bytes_out 0 119390 bytes_in 0 119390 station_ip 46.225.209.131 119390 port 122 119390 unique_id port 119390 remote_ip 10.8.0.50 119393 username zare 119393 mac 119393 bytes_out 0 119393 bytes_in 0 119393 station_ip 94.183.214.14 119393 port 142 119393 unique_id port 119393 remote_ip 10.8.0.18 119397 username musa 119397 mac 119397 bytes_out 801783 119397 bytes_in 4614920 119397 station_ip 37.129.73.126 119397 port 148 119397 unique_id port 119397 remote_ip 10.8.0.6 119405 username aminvpn 119405 mac 119405 bytes_out 67717 119405 bytes_in 143354 119405 station_ip 5.120.63.237 119405 port 165 119405 unique_id port 119405 remote_ip 10.8.0.14 119407 username zare 119407 mac 119407 bytes_out 0 119407 bytes_in 0 119407 station_ip 94.183.214.14 119407 port 73 119407 unique_id port 119407 remote_ip 10.8.1.58 119408 username zare 119408 mac 119408 bytes_out 0 119408 bytes_in 0 119408 station_ip 94.183.214.14 119408 port 73 119408 unique_id port 119408 remote_ip 10.8.1.58 119412 username forozande 119412 mac 119412 bytes_out 0 119412 bytes_in 0 119412 station_ip 37.129.121.225 119412 port 72 119412 unique_id port 119412 remote_ip 10.8.1.102 119415 username aminvpn 119415 mac 119415 bytes_out 0 119415 bytes_in 0 119415 station_ip 5.119.251.131 119415 port 142 119415 unique_id port 119415 remote_ip 10.8.0.14 119421 username amir 119421 kill_reason Another user logged on this global unique id 119421 mac 119421 bytes_out 0 119421 bytes_in 0 119421 station_ip 46.225.209.131 119421 port 122 119421 unique_id port 119422 username musa 119422 mac 119422 bytes_out 0 119422 bytes_in 0 119422 station_ip 37.129.73.126 119422 port 148 119422 unique_id port 119422 remote_ip 10.8.0.6 119423 username zare 119423 mac 119423 bytes_out 41048 119423 bytes_in 83786 119423 station_ip 94.183.214.14 119423 port 142 119423 unique_id port 119423 remote_ip 10.8.0.18 119426 username aminvpn 119426 mac 119426 bytes_out 0 119426 bytes_in 0 119426 station_ip 5.119.251.131 119426 port 151 119426 unique_id port 119426 remote_ip 10.8.0.14 119428 username zare 119428 mac 119428 bytes_out 0 119428 bytes_in 0 119428 station_ip 94.183.214.14 119428 port 142 119428 unique_id port 119428 remote_ip 10.8.0.18 119429 username zare 119429 mac 119429 bytes_out 0 119429 bytes_in 0 119429 station_ip 94.183.214.14 119429 port 142 119429 unique_id port 119429 remote_ip 10.8.0.18 119432 username sabaghnezhad 119432 mac 119432 bytes_out 0 119432 bytes_in 0 119432 station_ip 83.123.64.151 119432 port 65 119432 unique_id port 119432 remote_ip 10.8.1.130 119435 username zare 119435 mac 119435 bytes_out 0 119435 bytes_in 0 119435 station_ip 94.183.214.14 119435 port 151 119435 unique_id port 119435 remote_ip 10.8.0.18 119437 username amir 119437 kill_reason Another user logged on this global unique id 119437 mac 119437 bytes_out 0 119437 bytes_in 0 119437 station_ip 46.225.209.131 119437 port 122 119437 unique_id port 119441 username tahmasebi 119441 kill_reason Another user logged on this global unique id 119441 mac 119441 bytes_out 0 119441 bytes_in 0 119441 station_ip 5.119.132.27 119441 port 137 119441 unique_id port 119444 username zare 119444 mac 119444 bytes_out 0 119444 bytes_in 0 119444 station_ip 94.183.214.14 119444 port 165 119444 unique_id port 119444 remote_ip 10.8.0.18 119446 username alihosseini1 119446 mac 119392 mac 119392 bytes_out 0 119392 bytes_in 0 119392 station_ip 5.120.63.237 119392 port 142 119392 unique_id port 119392 remote_ip 10.8.0.14 119394 username sabaghnezhad 119394 mac 119394 bytes_out 0 119394 bytes_in 0 119394 station_ip 83.123.64.151 119394 port 65 119394 unique_id port 119394 remote_ip 10.8.1.130 119396 username zare 119396 mac 119396 bytes_out 0 119396 bytes_in 0 119396 station_ip 94.183.214.14 119396 port 142 119396 unique_id port 119396 remote_ip 10.8.0.18 119399 username zare 119399 mac 119399 bytes_out 0 119399 bytes_in 0 119399 station_ip 94.183.214.14 119399 port 148 119399 unique_id port 119399 remote_ip 10.8.0.18 119400 username aminvpn 119400 mac 119400 bytes_out 8943 119400 bytes_in 13543 119400 station_ip 5.120.63.237 119400 port 162 119400 unique_id port 119400 remote_ip 10.8.0.14 119402 username musa 119402 mac 119402 bytes_out 0 119402 bytes_in 0 119402 station_ip 37.129.73.126 119402 port 165 119402 unique_id port 119402 remote_ip 10.8.0.6 119404 username sedighe 119404 mac 119404 bytes_out 337265 119404 bytes_in 5497200 119404 station_ip 83.122.151.51 119404 port 142 119404 unique_id port 119404 remote_ip 10.8.0.146 119409 username alipour 119409 kill_reason Another user logged on this global unique id 119409 mac 119409 bytes_out 0 119409 bytes_in 0 119409 station_ip 37.129.93.196 119409 port 151 119409 unique_id port 119409 remote_ip 10.8.0.102 119410 username aminvpn 119410 unique_id port 119410 terminate_cause Lost-Carrier 119410 bytes_out 5051272 119410 bytes_in 101584920 119410 station_ip 5.119.251.131 119410 port 15729692 119410 nas_port_type Virtual 119410 remote_ip 5.5.5.138 119413 username aminvpn 119413 unique_id port 119413 terminate_cause Lost-Carrier 119413 bytes_out 598232 119413 bytes_in 9416621 119413 station_ip 5.119.251.131 119413 port 15729694 119413 nas_port_type Virtual 119413 remote_ip 5.5.5.140 119416 username alihosseini1 119416 mac 119416 bytes_out 0 119416 bytes_in 0 119416 station_ip 5.119.106.155 119416 port 68 119416 unique_id port 119416 remote_ip 10.8.1.106 119419 username sabaghnezhad 119419 mac 119419 bytes_out 19705 119419 bytes_in 22638 119419 station_ip 83.123.64.151 119419 port 65 119419 unique_id port 119419 remote_ip 10.8.1.130 119425 username zare 119425 mac 119425 bytes_out 13143 119425 bytes_in 20999 119425 station_ip 94.183.214.14 119425 port 142 119425 unique_id port 119425 remote_ip 10.8.0.18 119430 username zare 119430 mac 119430 bytes_out 15371 119430 bytes_in 46226 119430 station_ip 94.183.214.14 119430 port 142 119430 unique_id port 119430 remote_ip 10.8.0.18 119431 username alihosseini1 119431 mac 119431 bytes_out 0 119431 bytes_in 0 119431 station_ip 5.119.106.155 119431 port 142 119431 unique_id port 119431 remote_ip 10.8.0.166 119439 username zare 119439 mac 119439 bytes_out 0 119439 bytes_in 0 119439 station_ip 94.183.214.14 119439 port 151 119439 unique_id port 119439 remote_ip 10.8.0.18 119440 username zare 119440 mac 119440 bytes_out 0 119440 bytes_in 0 119440 station_ip 94.183.214.14 119440 port 151 119440 unique_id port 119440 remote_ip 10.8.0.18 119443 username malekpoir 119443 mac 119443 bytes_out 0 119443 bytes_in 0 119443 station_ip 5.120.66.141 119443 port 71 119443 unique_id port 119443 remote_ip 10.8.1.54 119447 username zare 119447 mac 119447 bytes_out 0 119447 bytes_in 0 119447 station_ip 94.183.214.14 119447 port 166 119447 unique_id port 119411 bytes_in 0 119411 station_ip 94.183.214.14 119411 port 73 119411 unique_id port 119411 remote_ip 10.8.1.58 119414 username zare 119414 mac 119414 bytes_out 0 119414 bytes_in 0 119414 station_ip 94.183.214.14 119414 port 72 119414 unique_id port 119414 remote_ip 10.8.1.58 119417 username zare 119417 mac 119417 bytes_out 0 119417 bytes_in 0 119417 station_ip 94.183.214.14 119417 port 72 119417 unique_id port 119417 remote_ip 10.8.1.58 119418 username mansur 119418 mac 119418 bytes_out 0 119418 bytes_in 0 119418 station_ip 5.119.87.13 119418 port 142 119418 unique_id port 119418 remote_ip 10.8.0.210 119420 username forozande 119420 mac 119420 bytes_out 184888 119420 bytes_in 1281800 119420 station_ip 37.129.50.35 119420 port 68 119420 unique_id port 119420 remote_ip 10.8.1.102 119424 username alipour 119424 mac 119424 bytes_out 0 119424 bytes_in 0 119424 station_ip 37.129.93.196 119424 port 151 119424 unique_id port 119427 username aminvpn 119427 mac 119427 bytes_out 0 119427 bytes_in 0 119427 station_ip 5.119.251.131 119427 port 151 119427 unique_id port 119427 remote_ip 10.8.0.14 119433 username zare 119433 mac 119433 bytes_out 11526 119433 bytes_in 18056 119433 station_ip 94.183.214.14 119433 port 151 119433 unique_id port 119433 remote_ip 10.8.0.18 119434 username zare 119434 mac 119434 bytes_out 0 119434 bytes_in 0 119434 station_ip 94.183.214.14 119434 port 151 119434 unique_id port 119434 remote_ip 10.8.0.18 119436 username zare 119436 mac 119436 bytes_out 0 119436 bytes_in 0 119436 station_ip 94.183.214.14 119436 port 151 119436 unique_id port 119436 remote_ip 10.8.0.18 119438 username zare 119438 mac 119438 bytes_out 0 119438 bytes_in 0 119438 station_ip 94.183.214.14 119438 port 151 119438 unique_id port 119438 remote_ip 10.8.0.18 119442 username zare 119442 mac 119442 bytes_out 0 119442 bytes_in 0 119442 station_ip 94.183.214.14 119442 port 151 119442 unique_id port 119442 remote_ip 10.8.0.18 119445 username zare 119445 mac 119445 bytes_out 0 119445 bytes_in 0 119445 station_ip 94.183.214.14 119445 port 165 119445 unique_id port 119445 remote_ip 10.8.0.18 119448 username mehdizare 119448 mac 119448 bytes_out 1450960 119448 bytes_in 26491494 119448 station_ip 5.119.27.232 119448 port 160 119448 unique_id port 119448 remote_ip 10.8.0.90 119456 username alihosseini1 119456 mac 119456 bytes_out 1866 119456 bytes_in 5045 119456 station_ip 5.119.106.155 119456 port 166 119456 unique_id port 57202 username arezoo 57202 kill_reason Maximum check online fails reached 57202 mac 89.199.49.51:11205: Unknown host 57202 bytes_out 0 57202 bytes_in 0 57202 station_ip 89.199.49.51:11205 57202 port 1017 57202 unique_id port 57203 username arezoo 57203 kill_reason Maximum check online fails reached 57203 mac 5.237.65.204:49283: Unknown host 57203 bytes_out 0 57203 bytes_in 0 57203 station_ip 5.237.65.204:49283 57203 port 1017 57203 unique_id port 119456 remote_ip 10.8.0.166 119460 username zare 119460 mac 119460 bytes_out 0 119460 bytes_in 0 119460 station_ip 94.183.214.14 119460 port 151 119460 unique_id port 119460 remote_ip 10.8.0.18 119463 username zare 119463 mac 119463 bytes_out 0 119463 bytes_in 0 119463 station_ip 94.183.214.14 119463 port 160 119463 unique_id port 119463 remote_ip 10.8.0.18 119464 username zare 119464 mac 119464 bytes_out 0 119464 bytes_in 0 119464 station_ip 94.183.214.14 119464 port 160 119464 unique_id port 119446 bytes_out 0 119446 bytes_in 0 119446 station_ip 5.119.106.155 119446 port 165 119446 unique_id port 119446 remote_ip 10.8.0.166 119450 username zare 119450 mac 119450 bytes_out 0 119450 bytes_in 0 119450 station_ip 94.183.214.14 119450 port 165 119450 unique_id port 119450 remote_ip 10.8.0.18 119451 username aminvpn 119451 mac 119451 bytes_out 0 119451 bytes_in 0 119451 station_ip 5.119.251.131 119451 port 165 119451 unique_id port 119451 remote_ip 10.8.0.14 119453 username tahmasebi 119453 kill_reason Another user logged on this global unique id 119453 mac 119453 bytes_out 0 119453 bytes_in 0 119453 station_ip 5.119.132.27 119453 port 137 119453 unique_id port 119454 username zare 119454 mac 119454 bytes_out 0 119454 bytes_in 0 119454 station_ip 94.183.214.14 119454 port 165 119454 unique_id port 119454 remote_ip 10.8.0.18 119458 username zare 119458 mac 119458 bytes_out 0 119458 bytes_in 0 119458 station_ip 94.183.214.14 119458 port 151 119458 unique_id port 119458 remote_ip 10.8.0.18 119462 username mehdizare 119462 mac 119462 bytes_out 0 119462 bytes_in 0 119462 station_ip 5.119.27.232 119462 port 160 119462 unique_id port 119462 remote_ip 10.8.0.90 119465 username forozande 119465 mac 119465 bytes_out 0 119465 bytes_in 0 119465 station_ip 37.129.209.105 119465 port 68 119465 unique_id port 119465 remote_ip 10.8.1.102 119466 username zare 119466 mac 119466 bytes_out 0 119466 bytes_in 0 119466 station_ip 94.183.214.14 119466 port 160 119466 unique_id port 119466 remote_ip 10.8.0.18 119468 username zare 119468 mac 119468 bytes_out 0 119468 bytes_in 0 119468 station_ip 94.183.214.14 119468 port 160 119468 unique_id port 119468 remote_ip 10.8.0.18 119470 username zare 119470 mac 119470 bytes_out 0 119470 bytes_in 0 119470 station_ip 94.183.214.14 119470 port 165 119470 unique_id port 119470 remote_ip 10.8.0.18 119477 username zare 119477 mac 119477 bytes_out 0 119477 bytes_in 0 119477 station_ip 94.183.214.14 119477 port 165 119477 unique_id port 119477 remote_ip 10.8.0.18 119479 username zare 119479 mac 119479 bytes_out 0 119479 bytes_in 0 57231 username arezoo 57231 kill_reason Another user logged on this global unique id 57231 mac 5.237.65.204:49214: Unknown host 57231 bytes_out 0 57231 bytes_in 0 57231 station_ip 5.237.65.204:49214 57231 port 1017 57231 unique_id port 57233 username arezoo 57233 kill_reason Another user logged on this global unique id 57233 mac 5.237.65.204:49232: Unknown host 57233 bytes_out 0 57233 bytes_in 0 57233 station_ip 5.237.65.204:49232 57233 port 1017 57233 unique_id port 57235 username arezoo 57235 kill_reason Maximum check online fails reached 57235 mac 5.237.65.204:49664: Unknown host 57235 bytes_out 0 57235 bytes_in 0 57235 station_ip 5.237.65.204:49664 57235 port 1017 57235 unique_id port 119479 station_ip 94.183.214.14 119479 port 165 119479 unique_id port 119479 remote_ip 10.8.0.18 119480 username zare 119480 mac 119480 bytes_out 0 119480 bytes_in 0 119480 station_ip 94.183.214.14 119480 port 165 119480 unique_id port 119480 remote_ip 10.8.0.18 119483 username alipour 119483 mac 119483 bytes_out 1409689 119483 bytes_in 17147676 119483 station_ip 37.129.93.196 119483 port 148 119483 unique_id port 119483 remote_ip 10.8.0.102 119486 username mahdiyehalizadeh 119486 mac 119486 bytes_out 84565 119486 bytes_in 1561105 119486 station_ip 83.123.128.135 119486 port 165 119486 unique_id port 119486 remote_ip 10.8.0.82 119488 username zare 119488 mac 57205 username arezoo 57205 kill_reason Maximum check online fails reached 57205 mac 5.237.65.204:57994: Unknown host 57205 bytes_out 0 57205 bytes_in 0 57205 station_ip 5.237.65.204:57994 57205 port 1017 57205 unique_id port 119447 remote_ip 10.8.0.18 119449 username sabaghnezhad 119449 mac 119449 bytes_out 0 119449 bytes_in 0 119449 station_ip 83.123.64.151 119449 port 65 119449 unique_id port 119449 remote_ip 10.8.1.130 119452 username zare 119452 mac 119452 bytes_out 19479 119452 bytes_in 83145 119452 station_ip 94.183.214.14 119452 port 165 119452 unique_id port 119452 remote_ip 10.8.0.18 119455 username zare 119455 mac 119455 bytes_out 0 119455 bytes_in 0 119455 station_ip 94.183.214.14 119455 port 167 119455 unique_id port 119455 remote_ip 10.8.0.18 119457 username mohammadmahdi 119457 mac 119457 bytes_out 2249945 119457 bytes_in 29460701 119457 station_ip 5.120.109.218 119457 port 151 119457 unique_id port 119457 remote_ip 10.8.0.54 119459 username mirzaei 119459 kill_reason Another user logged on this global unique id 119459 mac 119459 bytes_out 0 119459 bytes_in 0 119459 station_ip 5.119.152.48 119459 port 140 57234 username arezoo 57234 kill_reason Maximum check online fails reached 57234 mac 5.237.65.204:49572: Unknown host 57234 bytes_out 0 57234 bytes_in 0 57234 station_ip 5.237.65.204:49572 57234 port 1017 57234 unique_id port 119459 unique_id port 119461 username zare 119461 mac 119461 bytes_out 0 119461 bytes_in 0 119461 station_ip 94.183.214.14 119461 port 151 119461 unique_id port 119461 remote_ip 10.8.0.18 119472 username zare 119472 mac 119472 bytes_out 0 119472 bytes_in 0 119472 station_ip 94.183.214.14 119472 port 165 119472 unique_id port 57241 username arezoo 57241 kill_reason Maximum check online fails reached 57241 mac 5.237.65.204:49233: Unknown host 57241 bytes_out 0 57241 bytes_in 0 57241 station_ip 5.237.65.204:49233 57241 port 1017 57241 unique_id port 119472 remote_ip 10.8.0.18 119474 username aminvpn 119474 mac 119474 bytes_out 0 119474 bytes_in 0 119474 station_ip 5.119.251.131 119474 port 165 119474 unique_id port 119474 remote_ip 10.8.0.14 119475 username zare 119475 mac 119475 bytes_out 0 119475 bytes_in 0 119475 station_ip 94.183.214.14 119475 port 165 119475 unique_id port 119475 remote_ip 10.8.0.18 119476 username zare 119476 mac 119476 bytes_out 0 119476 bytes_in 0 119476 station_ip 94.183.214.14 119476 port 165 119476 unique_id port 119476 remote_ip 10.8.0.18 119478 username tahmasebi 119478 kill_reason Another user logged on this global unique id 119478 mac 119478 bytes_out 0 119478 bytes_in 0 119478 station_ip 5.119.132.27 119478 port 137 119478 unique_id port 119487 username zare 119487 mac 119487 bytes_out 0 119487 bytes_in 0 119487 station_ip 94.183.214.14 119487 port 166 119487 unique_id port 119487 remote_ip 10.8.0.18 119489 username mohammadmahdi 119489 kill_reason Another user logged on this global unique id 119489 mac 119489 bytes_out 0 119489 bytes_in 0 119489 station_ip 5.120.109.218 119489 port 160 119489 unique_id port 119489 remote_ip 10.8.0.54 119498 username zare 119498 mac 119498 bytes_out 15447 119498 bytes_in 36215 119498 station_ip 94.183.214.14 119498 port 165 119498 unique_id port 119498 remote_ip 10.8.0.18 119501 username zare 119501 mac 119501 bytes_out 0 119501 bytes_in 0 119501 station_ip 94.183.214.14 119501 port 162 119501 unique_id port 119501 remote_ip 10.8.0.18 119503 username alihosseini1 119503 mac 119503 bytes_out 0 119503 bytes_in 0 119503 station_ip 5.119.106.155 119464 remote_ip 10.8.0.18 119467 username zare 119467 mac 119467 bytes_out 0 119467 bytes_in 0 119467 station_ip 94.183.214.14 119467 port 160 119467 unique_id port 119467 remote_ip 10.8.0.18 119469 username mehdizare 119469 mac 119469 bytes_out 68238 119469 bytes_in 789100 119469 station_ip 5.119.27.232 119469 port 151 119469 unique_id port 119469 remote_ip 10.8.0.90 119471 username zare 119471 mac 119471 bytes_out 0 119471 bytes_in 0 119471 station_ip 94.183.214.14 119471 port 165 119471 unique_id port 119471 remote_ip 10.8.0.18 119473 username zare 119473 mac 119473 bytes_out 0 119473 bytes_in 0 119473 station_ip 94.183.214.14 119473 port 165 119473 unique_id port 119473 remote_ip 10.8.0.18 119481 username aminvpn 119481 mac 119481 bytes_out 0 119481 bytes_in 0 119481 station_ip 5.119.251.131 119481 port 165 119481 unique_id port 119481 remote_ip 10.8.0.14 119482 username mahdiyehalizadeh 119482 mac 119482 bytes_out 665264 119482 bytes_in 10120180 119482 station_ip 83.123.128.135 119482 port 166 119482 unique_id port 119482 remote_ip 10.8.0.82 119484 username zare 119484 mac 119484 bytes_out 0 119484 bytes_in 0 119484 station_ip 94.183.214.14 119484 port 165 119484 unique_id port 57230 username arezoo 57230 kill_reason Maximum check online fails reached 57230 mac 5.237.65.204:51793: Unknown host 57230 bytes_out 0 57230 bytes_in 0 57230 station_ip 5.237.65.204:51793 57230 port 1017 57230 unique_id port 57232 username arezoo 57232 kill_reason Another user logged on this global unique id 57232 mac 5.237.65.204:49224: Unknown host 57232 bytes_out 0 57232 bytes_in 0 57232 station_ip 5.237.65.204:49224 57232 port 1017 57232 unique_id port 119484 remote_ip 10.8.0.18 119485 username zare 119485 mac 119485 bytes_out 0 119485 bytes_in 0 119485 station_ip 94.183.214.14 119485 port 148 119485 unique_id port 57240 username arezoo 57240 kill_reason Maximum check online fails reached 57240 mac 5.237.65.204:52165: Unknown host 57240 bytes_out 0 57240 bytes_in 0 57240 station_ip 5.237.65.204:52165 57240 port 1017 57240 unique_id port 119485 remote_ip 10.8.0.18 119490 username zare 119490 mac 119490 bytes_out 0 119490 bytes_in 0 119490 station_ip 94.183.214.14 119490 port 165 119490 unique_id port 119490 remote_ip 10.8.0.18 119491 username zare 119491 mac 119491 bytes_out 0 119491 bytes_in 0 119491 station_ip 94.183.214.14 119491 port 165 119491 unique_id port 119491 remote_ip 10.8.0.18 119495 username zare 119495 mac 119495 bytes_out 17294 119495 bytes_in 76645 119495 station_ip 94.183.214.14 119495 port 165 119495 unique_id port 119495 remote_ip 10.8.0.18 119496 username aminvpn 119496 mac 119496 bytes_out 0 119496 bytes_in 0 119496 station_ip 5.119.251.131 119496 port 165 119496 unique_id port 119496 remote_ip 10.8.0.14 119497 username zare 119497 mac 119497 bytes_out 0 119497 bytes_in 0 119497 station_ip 94.183.214.14 119497 port 165 119497 unique_id port 119497 remote_ip 10.8.0.18 119499 username kordestani 119499 mac 119499 bytes_out 3236024 119499 bytes_in 36754495 119499 station_ip 151.235.106.65 119499 port 162 119499 unique_id port 119499 remote_ip 10.8.0.134 119500 username mohammadmahdi 119500 kill_reason Another user logged on this global unique id 119500 mac 119500 bytes_out 0 119500 bytes_in 0 119500 station_ip 5.120.109.218 119500 port 160 119500 unique_id port 119504 username zare 119504 mac 119504 bytes_out 0 119504 bytes_in 0 119504 station_ip 94.183.214.14 119504 port 142 119504 unique_id port 119488 bytes_out 0 119488 bytes_in 0 119488 station_ip 94.183.214.14 119488 port 165 119488 unique_id port 119488 remote_ip 10.8.0.18 119492 username alihosseini1 119492 mac 119492 bytes_out 0 119492 bytes_in 0 119492 station_ip 5.119.106.155 119492 port 166 119492 unique_id port 119492 remote_ip 10.8.0.166 119493 username amir 119493 kill_reason Another user logged on this global unique id 119493 mac 119493 bytes_out 0 119493 bytes_in 0 119493 station_ip 46.225.209.131 119493 port 122 119493 unique_id port 119494 username tahmasebi 119494 kill_reason Another user logged on this global unique id 119494 mac 119494 bytes_out 0 119494 bytes_in 0 119494 station_ip 5.119.132.27 119494 port 137 119494 unique_id port 119502 username musa 119502 mac 119502 bytes_out 1560870 119502 bytes_in 24319279 119502 station_ip 37.129.73.126 119502 port 142 119502 unique_id port 119502 remote_ip 10.8.0.6 119507 username mohammadmahdi 119507 mac 119507 bytes_out 0 119507 bytes_in 0 119507 station_ip 5.120.109.218 119507 port 160 119507 unique_id port 119511 username zare 119511 mac 119511 bytes_out 0 119511 bytes_in 0 119511 station_ip 94.183.214.14 119511 port 162 119511 unique_id port 119511 remote_ip 10.8.0.18 119515 username zare 119515 mac 119515 bytes_out 0 119515 bytes_in 0 119515 station_ip 94.183.214.14 119515 port 165 119515 unique_id port 119515 remote_ip 10.8.0.18 119520 username zare 119520 mac 119520 bytes_out 6352 119520 bytes_in 8985 119520 station_ip 94.183.214.14 119520 port 142 119520 unique_id port 119520 remote_ip 10.8.0.18 119521 username alirezazadeh 119521 unique_id port 119521 terminate_cause Lost-Carrier 119521 bytes_out 221627 119521 bytes_in 961253 119521 station_ip 5.120.132.106 119521 port 15729696 119521 nas_port_type Virtual 119521 remote_ip 5.5.5.151 119526 username alihosseini1 119526 mac 119526 bytes_out 2105298 119526 bytes_in 23332401 119526 station_ip 5.119.106.155 119526 port 140 119526 unique_id port 119526 remote_ip 10.8.0.166 119527 username sabaghnezhad 119527 mac 119527 bytes_out 0 119527 bytes_in 0 119527 station_ip 83.123.64.151 119527 port 72 119527 unique_id port 119527 remote_ip 10.8.1.130 119528 username mehdizare 119528 mac 119528 bytes_out 133913 119528 bytes_in 175367 119528 station_ip 5.119.27.232 119528 port 151 119528 unique_id port 119528 remote_ip 10.8.0.90 119532 username zare 119532 mac 119532 bytes_out 26459 119532 bytes_in 96453 119532 station_ip 94.183.214.14 119532 port 140 119532 unique_id port 119532 remote_ip 10.8.0.18 119533 username zare 119533 mac 119533 bytes_out 0 119533 bytes_in 0 119533 station_ip 94.183.214.14 119533 port 140 119533 unique_id port 119533 remote_ip 10.8.0.18 119536 username zare 119536 mac 119536 bytes_out 121341 119536 bytes_in 5329931 119536 station_ip 94.183.214.14 119536 port 151 119536 unique_id port 119536 remote_ip 10.8.0.18 119538 username zare 119538 mac 119538 bytes_out 1636 119538 bytes_in 4304 119538 station_ip 94.183.214.14 119538 port 165 119538 unique_id port 119538 remote_ip 10.8.0.18 119541 username forozande 119541 mac 119541 bytes_out 0 119541 bytes_in 0 119541 station_ip 83.122.80.190 119541 port 73 119541 unique_id port 119541 remote_ip 10.8.1.102 119543 username mohammadmahdi 119543 kill_reason Another user logged on this global unique id 119543 mac 119543 bytes_out 0 119543 bytes_in 0 119543 station_ip 5.120.109.218 119543 port 148 119543 unique_id port 119543 remote_ip 10.8.0.54 119545 username aminvpn 119503 port 65 119503 unique_id port 119503 remote_ip 10.8.1.106 119505 username alihosseini1 119505 mac 119505 bytes_out 0 119505 bytes_in 0 119505 station_ip 5.119.106.155 119505 port 65 119505 unique_id port 119505 remote_ip 10.8.1.106 119506 username zare 119506 mac 119506 bytes_out 0 119506 bytes_in 0 119506 station_ip 94.183.214.14 119506 port 162 119506 unique_id port 119506 remote_ip 10.8.0.18 119509 username zare 119509 mac 119509 bytes_out 0 119509 bytes_in 0 119509 station_ip 94.183.214.14 119509 port 162 119509 unique_id port 119509 remote_ip 10.8.0.18 119512 username alihosseini1 119512 kill_reason Maximum check online fails reached 119512 mac 119512 bytes_out 0 119512 bytes_in 0 119512 station_ip 5.119.106.155 119512 port 65 119512 unique_id port 119513 username zare 119513 mac 119513 bytes_out 0 119513 bytes_in 0 119513 station_ip 94.183.214.14 119513 port 162 119513 unique_id port 119513 remote_ip 10.8.0.18 119517 username rezaei 119517 mac 119517 bytes_out 2017570 119517 bytes_in 29400529 119517 station_ip 5.120.2.14 119517 port 142 119517 unique_id port 119517 remote_ip 10.8.0.206 119522 username zare 119522 mac 119522 bytes_out 29269 119522 bytes_in 74865 119522 station_ip 94.183.214.14 119522 port 162 119522 unique_id port 119522 remote_ip 10.8.0.18 119523 username rezaei 119523 mac 119523 bytes_out 0 119523 bytes_in 0 119523 station_ip 5.120.2.14 119523 port 68 119523 unique_id port 119523 remote_ip 10.8.1.150 119524 username aminvpn 119524 mac 119524 bytes_out 36968 119524 bytes_in 55665 119524 station_ip 5.119.251.131 119524 port 142 119524 unique_id port 119524 remote_ip 10.8.0.14 119529 username zare 119529 mac 119529 bytes_out 0 119529 bytes_in 0 119529 station_ip 94.183.214.14 119529 port 140 119529 unique_id port 119529 remote_ip 10.8.0.18 119534 username mohammadmahdi 119534 mac 119534 bytes_out 0 119534 bytes_in 0 119534 station_ip 5.120.109.218 119534 port 140 119534 unique_id port 119534 remote_ip 10.8.0.54 119535 username alipour 119535 mac 119535 bytes_out 1666374 119535 bytes_in 23573113 119535 station_ip 37.129.93.196 119535 port 148 119535 unique_id port 119535 remote_ip 10.8.0.102 119537 username aminvpn 119537 mac 119537 bytes_out 0 119537 bytes_in 0 119537 station_ip 5.119.251.131 119537 port 151 119537 unique_id port 119537 remote_ip 10.8.0.14 119549 username zare 119549 mac 119549 bytes_out 14910 119549 bytes_in 43374 119549 station_ip 94.183.214.14 119549 port 151 119549 unique_id port 119549 remote_ip 10.8.0.18 119559 username aminvpn 119559 mac 119559 bytes_out 0 119559 bytes_in 0 119559 station_ip 5.119.251.131 119559 port 151 119559 unique_id port 119559 remote_ip 10.8.0.14 119565 username alihosseini1 119565 kill_reason Another user logged on this global unique id 119565 mac 119565 bytes_out 0 119565 bytes_in 0 119565 station_ip 5.119.159.182 119565 port 68 119565 unique_id port 119565 remote_ip 10.8.1.106 119566 username mohammadmahdi 119566 mac 119566 bytes_out 0 119566 bytes_in 0 119566 station_ip 5.120.109.218 119566 port 148 119566 unique_id port 119567 username musa 119567 mac 119567 bytes_out 401009 119567 bytes_in 2934478 119567 station_ip 37.129.73.126 119567 port 151 119567 unique_id port 119567 remote_ip 10.8.0.6 119572 username zare 119572 mac 119572 bytes_out 0 119572 bytes_in 0 119572 station_ip 94.183.214.14 119572 port 72 119572 unique_id port 119504 remote_ip 10.8.0.18 119508 username mirzaei 119508 mac 119508 bytes_out 0 119508 bytes_in 0 119508 station_ip 5.119.152.48 119508 port 140 119508 unique_id port 119510 username forozande 119510 mac 119510 bytes_out 0 119510 bytes_in 0 119510 station_ip 113.203.73.131 119510 port 68 119510 unique_id port 119510 remote_ip 10.8.1.102 119514 username forozande 119514 mac 119514 bytes_out 0 119514 bytes_in 0 119514 station_ip 113.203.73.131 119514 port 68 119514 unique_id port 119514 remote_ip 10.8.1.102 119516 username aminvpn 119516 mac 119516 bytes_out 0 119516 bytes_in 0 119516 station_ip 5.119.251.131 119516 port 162 119516 unique_id port 119516 remote_ip 10.8.0.14 119518 username aminvpn 119518 mac 119518 bytes_out 0 119518 bytes_in 0 119518 station_ip 5.119.251.131 119518 port 72 119518 unique_id port 119518 remote_ip 10.8.1.6 119519 username zare 119519 mac 119519 bytes_out 0 119519 bytes_in 0 119519 station_ip 94.183.214.14 119519 port 165 119519 unique_id port 119519 remote_ip 10.8.0.18 119525 username zare 119525 mac 119525 bytes_out 0 119525 bytes_in 0 119525 station_ip 94.183.214.14 119525 port 162 119525 unique_id port 119525 remote_ip 10.8.0.18 119530 username amir 119530 kill_reason Another user logged on this global unique id 119530 mac 119530 bytes_out 0 119530 bytes_in 0 119530 station_ip 46.225.209.131 119530 port 122 119530 unique_id port 119531 username rezaei 119531 mac 119531 bytes_out 0 119531 bytes_in 0 119531 station_ip 5.120.2.14 119531 port 72 119531 unique_id port 119531 remote_ip 10.8.1.150 119539 username tahmasebi 119539 kill_reason Another user logged on this global unique id 119539 mac 119539 bytes_out 0 119539 bytes_in 0 119539 station_ip 5.119.132.27 119539 port 137 119539 unique_id port 119540 username sabaghnezhad 119540 mac 119540 bytes_out 4303153 119540 bytes_in 13874162 119540 station_ip 83.123.64.151 119540 port 142 119540 unique_id port 119540 remote_ip 10.8.0.186 119542 username alihosseini1 119542 mac 119542 bytes_out 0 119542 bytes_in 0 119542 station_ip 5.119.106.155 119542 port 68 119542 unique_id port 119542 remote_ip 10.8.1.106 119544 username amir 119544 kill_reason Another user logged on this global unique id 119544 mac 119544 bytes_out 0 119544 bytes_in 0 119544 station_ip 46.225.209.131 119544 port 122 119544 unique_id port 119546 username zare 119546 mac 119546 bytes_out 120575 119546 bytes_in 281927 119546 station_ip 94.183.214.14 119546 port 151 119546 unique_id port 119546 remote_ip 10.8.0.18 119547 username tahmasebi 119547 kill_reason Another user logged on this global unique id 119547 mac 119547 bytes_out 0 119547 bytes_in 0 119547 station_ip 5.119.132.27 119547 port 137 119547 unique_id port 119548 username rajaei 119548 kill_reason Another user logged on this global unique id 119548 mac 119548 bytes_out 0 119548 bytes_in 0 119548 station_ip 37.153.176.169 119548 port 142 119548 unique_id port 119548 remote_ip 10.8.0.34 119550 username zare 119550 mac 119550 bytes_out 0 119550 bytes_in 0 119550 station_ip 94.183.214.14 119550 port 151 119550 unique_id port 119550 remote_ip 10.8.0.18 119551 username zare 119551 mac 119551 bytes_out 0 119551 bytes_in 0 119551 station_ip 94.183.214.14 119551 port 151 119551 unique_id port 119551 remote_ip 10.8.0.18 119552 username zare 119552 mac 119552 bytes_out 0 119552 bytes_in 0 119552 station_ip 94.183.214.14 119552 port 151 119552 unique_id port 119552 remote_ip 10.8.0.18 119545 mac 119545 bytes_out 0 119545 bytes_in 0 119545 station_ip 5.119.251.131 119545 port 165 119545 unique_id port 119545 remote_ip 10.8.0.14 119553 username mohammadmahdi 119553 kill_reason Another user logged on this global unique id 119553 mac 119553 bytes_out 0 119553 bytes_in 0 119553 station_ip 5.120.109.218 119553 port 148 119553 unique_id port 119554 username zare 119554 mac 119554 bytes_out 0 119554 bytes_in 0 119554 station_ip 94.183.214.14 119554 port 151 119554 unique_id port 119554 remote_ip 10.8.0.18 119555 username zare 119555 mac 119555 bytes_out 0 119555 bytes_in 0 119555 station_ip 94.183.214.14 119555 port 73 119555 unique_id port 119555 remote_ip 10.8.1.58 119556 username zare 119556 mac 119556 bytes_out 0 119556 bytes_in 0 119556 station_ip 94.183.214.14 119556 port 73 119556 unique_id port 119556 remote_ip 10.8.1.58 119560 username zare 119560 mac 119560 bytes_out 0 119560 bytes_in 0 119560 station_ip 94.183.214.14 119560 port 73 119560 unique_id port 119560 remote_ip 10.8.1.58 119563 username zare 119563 kill_reason Maximum check online fails reached 119563 mac 119563 bytes_out 0 119563 bytes_in 0 119563 station_ip 94.183.214.14 119563 port 73 119563 unique_id port 119568 username mohammadjavad 119568 mac 119568 bytes_out 0 119568 bytes_in 0 119568 station_ip 37.129.30.49 119568 port 72 119568 unique_id port 119568 remote_ip 10.8.1.146 119569 username mirzaei 119569 mac 119569 bytes_out 235717 119569 bytes_in 997635 119569 station_ip 5.119.152.48 119569 port 160 119569 unique_id port 119569 remote_ip 10.8.0.66 119570 username zare 119570 mac 119570 bytes_out 0 119570 bytes_in 0 119570 station_ip 94.183.214.14 119570 port 72 119570 unique_id port 119570 remote_ip 10.8.1.58 119573 username rajaei 119573 kill_reason Another user logged on this global unique id 119573 mac 119573 bytes_out 0 119573 bytes_in 0 119573 station_ip 37.153.176.169 119573 port 142 119573 unique_id port 119575 username aminvpn 119575 mac 119575 bytes_out 0 119575 bytes_in 0 119575 station_ip 5.119.251.131 119575 port 160 119575 unique_id port 119575 remote_ip 10.8.0.14 119579 username aminvpn 119579 mac 119579 bytes_out 0 119579 bytes_in 0 119579 station_ip 5.119.251.131 119579 port 160 119579 unique_id port 119579 remote_ip 10.8.0.14 119585 username zare 119585 mac 119585 bytes_out 0 119585 bytes_in 0 119585 station_ip 94.183.214.14 119585 port 151 119585 unique_id port 119585 remote_ip 10.8.0.18 119589 username mohammadjavad 119589 mac 119589 bytes_out 0 119589 bytes_in 0 119589 station_ip 37.129.18.81 119589 port 72 119589 unique_id port 119589 remote_ip 10.8.1.146 119596 username alihosseini1 119596 kill_reason Another user logged on this global unique id 119596 mac 119596 bytes_out 0 119596 bytes_in 0 119596 station_ip 5.119.159.182 119596 port 68 119596 unique_id port 119597 username hamidsalari 119597 mac 119597 bytes_out 0 119597 bytes_in 0 119597 station_ip 5.119.72.47 119597 port 157 119597 unique_id port 119598 username zare 119598 mac 119598 bytes_out 0 119598 bytes_in 0 119598 station_ip 94.183.214.14 119598 port 151 119598 unique_id port 119598 remote_ip 10.8.0.18 119599 username zare 119599 mac 119599 bytes_out 0 119599 bytes_in 0 119599 station_ip 94.183.214.14 119599 port 151 119599 unique_id port 119599 remote_ip 10.8.0.18 119601 username amir 119601 mac 119601 bytes_out 0 119601 bytes_in 0 119601 station_ip 46.225.211.33 119557 username zare 119557 mac 119557 bytes_out 0 119557 bytes_in 0 119557 station_ip 94.183.214.14 119557 port 73 119557 unique_id port 119557 remote_ip 10.8.1.58 119558 username aminvpn 119558 mac 119558 bytes_out 0 119558 bytes_in 0 119558 station_ip 5.119.251.131 119558 port 151 119558 unique_id port 119558 remote_ip 10.8.0.14 119561 username mohammadmahdi 119561 kill_reason Another user logged on this global unique id 119561 mac 119561 bytes_out 0 119561 bytes_in 0 119561 station_ip 5.120.109.218 119561 port 148 119561 unique_id port 119562 username zare 119562 mac 119562 bytes_out 0 119562 bytes_in 0 119562 station_ip 94.183.214.14 119562 port 165 119562 unique_id port 119562 remote_ip 10.8.0.18 119564 username zare 119564 mac 119564 bytes_out 0 119564 bytes_in 0 119564 station_ip 94.183.214.14 119564 port 165 119564 unique_id port 119564 remote_ip 10.8.0.18 119571 username zare 119571 mac 119571 bytes_out 0 119571 bytes_in 0 119571 station_ip 94.183.214.14 119571 port 72 119571 unique_id port 119571 remote_ip 10.8.1.58 119576 username amir 119576 kill_reason Another user logged on this global unique id 119576 mac 119576 bytes_out 0 119576 bytes_in 0 119576 station_ip 46.225.209.131 119576 port 122 119576 unique_id port 119577 username alihosseini1 119577 kill_reason Another user logged on this global unique id 119577 mac 119577 bytes_out 0 119577 bytes_in 0 119577 station_ip 5.119.159.182 119577 port 68 119577 unique_id port 119582 username amir 119582 mac 119582 bytes_out 0 119582 bytes_in 0 119582 station_ip 46.225.209.131 119582 port 122 119582 unique_id port 119583 username zare 119583 mac 119583 bytes_out 0 119583 bytes_in 0 119583 station_ip 94.183.214.14 119583 port 151 119583 unique_id port 119583 remote_ip 10.8.0.18 119586 username musa 119586 mac 119586 bytes_out 535736 119586 bytes_in 4028621 119586 station_ip 37.129.73.126 119586 port 148 119586 unique_id port 119586 remote_ip 10.8.0.6 119587 username zare 119587 mac 119587 bytes_out 51417 119587 bytes_in 223978 119587 station_ip 94.183.214.14 119587 port 151 119587 unique_id port 119587 remote_ip 10.8.0.18 119592 username zare 119592 mac 119592 bytes_out 0 119592 bytes_in 0 119592 station_ip 94.183.214.14 119592 port 151 119592 unique_id port 119592 remote_ip 10.8.0.18 119593 username amir 119593 mac 119593 bytes_out 476003 119593 bytes_in 686699 119593 station_ip 46.225.209.131 119593 port 122 119593 unique_id port 119593 remote_ip 10.8.0.50 119595 username zare 119595 mac 119595 bytes_out 0 119595 bytes_in 0 119595 station_ip 94.183.214.14 119595 port 122 119595 unique_id port 119595 remote_ip 10.8.0.18 119605 username mahdiyehalizadeh 119605 mac 119605 bytes_out 24224 119605 bytes_in 114229 119605 station_ip 83.122.121.51 119605 port 157 119605 unique_id port 119605 remote_ip 10.8.0.82 119609 username ahmadi 119609 kill_reason Relative expiration date has reached 119609 unique_id port 119609 bytes_out 0 119609 bytes_in 0 119609 station_ip 83.123.202.20 119609 port 15729700 119609 nas_port_type Virtual 119613 username zare 119613 mac 119613 bytes_out 0 119613 bytes_in 0 119613 station_ip 94.183.214.14 119613 port 160 119613 unique_id port 119613 remote_ip 10.8.0.18 119614 username rajaei 119614 mac 119614 bytes_out 0 119614 bytes_in 0 119614 station_ip 37.153.176.169 119614 port 142 119614 unique_id port 119615 username aminvpn 119615 mac 119615 bytes_out 182743 119615 bytes_in 1626853 119572 remote_ip 10.8.1.58 119574 username zare 119574 mac 119574 bytes_out 0 119574 bytes_in 0 119574 station_ip 94.183.214.14 119574 port 151 119574 unique_id port 119574 remote_ip 10.8.0.18 119578 username zare 119578 mac 119578 bytes_out 17601 119578 bytes_in 25247 119578 station_ip 94.183.214.14 119578 port 151 119578 unique_id port 119578 remote_ip 10.8.0.18 119580 username rajaei 119580 kill_reason Another user logged on this global unique id 119580 mac 119580 bytes_out 0 119580 bytes_in 0 119580 station_ip 37.153.176.169 119580 port 142 119580 unique_id port 119581 username zare 119581 mac 119581 bytes_out 33811 119581 bytes_in 188411 119581 station_ip 94.183.214.14 119581 port 151 119581 unique_id port 119581 remote_ip 10.8.0.18 119584 username zare 119584 mac 119584 bytes_out 0 119584 bytes_in 0 119584 station_ip 94.183.214.14 119584 port 151 119584 unique_id port 119584 remote_ip 10.8.0.18 119588 username aminvpn 119588 mac 119588 bytes_out 0 119588 bytes_in 0 119588 station_ip 5.119.251.131 119588 port 151 119588 unique_id port 119588 remote_ip 10.8.0.14 119590 username zare 119590 mac 119590 bytes_out 88207 119590 bytes_in 398214 119590 station_ip 94.183.214.14 119590 port 151 119590 unique_id port 119590 remote_ip 10.8.0.18 119591 username ahmadipour 119591 unique_id port 119591 terminate_cause Lost-Carrier 119591 bytes_out 18365993 119591 bytes_in 2601580 119591 station_ip 83.123.21.153 119591 port 15729699 119591 nas_port_type Virtual 119591 remote_ip 5.5.5.97 119594 username zare 119594 mac 119594 bytes_out 0 119594 bytes_in 0 119594 station_ip 94.183.214.14 119594 port 151 119594 unique_id port 119594 remote_ip 10.8.0.18 119600 username rezaei 119600 mac 119600 bytes_out 0 119600 bytes_in 0 119600 station_ip 5.120.2.14 119600 port 72 119600 unique_id port 119600 remote_ip 10.8.1.150 119602 username aminvpn 119602 mac 119602 bytes_out 0 119602 bytes_in 0 119602 station_ip 5.119.251.131 119602 port 157 119602 unique_id port 119602 remote_ip 10.8.0.14 119604 username zare 119604 mac 119604 bytes_out 0 119604 bytes_in 0 119604 station_ip 94.183.214.14 119604 port 151 119604 unique_id port 119604 remote_ip 10.8.0.18 119607 username rajaei 119607 kill_reason Another user logged on this global unique id 119607 mac 119607 bytes_out 0 119607 bytes_in 0 119607 station_ip 37.153.176.169 119607 port 142 119607 unique_id port 119619 username mostafa_es78 119619 unique_id port 119619 terminate_cause User-Request 119619 bytes_out 336 119619 bytes_in 228 119619 station_ip 5.126.30.123 119619 port 15729702 119619 nas_port_type Virtual 119619 remote_ip 5.5.5.255 119622 username aminvpn 119622 mac 119622 bytes_out 28381 119622 bytes_in 46870 119622 station_ip 83.123.199.190 119622 port 142 119622 unique_id port 119622 remote_ip 10.8.0.14 119624 username aminvpn 119624 mac 119624 bytes_out 0 119624 bytes_in 0 119624 station_ip 5.119.251.131 119624 port 142 119624 unique_id port 119624 remote_ip 10.8.0.14 119625 username aminvpn 119625 mac 119625 bytes_out 0 119625 bytes_in 0 119625 station_ip 5.119.251.131 119625 port 142 119625 unique_id port 119625 remote_ip 10.8.0.14 119633 username zare 119633 mac 119633 bytes_out 0 119633 bytes_in 0 119633 station_ip 94.183.214.14 119633 port 160 119633 unique_id port 119633 remote_ip 10.8.0.18 119636 username aminvpn 119636 mac 119636 bytes_out 0 119636 bytes_in 0 119636 station_ip 5.119.251.131 119636 port 157 119636 unique_id port 119601 port 74 119601 unique_id port 119601 remote_ip 10.8.1.22 119603 username zare 119603 mac 119603 bytes_out 0 119603 bytes_in 0 119603 station_ip 94.183.214.14 119603 port 151 119603 unique_id port 119603 remote_ip 10.8.0.18 119606 username zare 119606 mac 119606 bytes_out 0 119606 bytes_in 0 119606 station_ip 94.183.214.14 119606 port 160 119606 unique_id port 119606 remote_ip 10.8.0.18 119608 username hamid.e 119608 unique_id port 119608 terminate_cause User-Request 119608 bytes_out 4542969 119608 bytes_in 112238650 119608 station_ip 37.27.22.45 119608 port 15729698 119608 nas_port_type Virtual 119608 remote_ip 5.5.5.170 119610 username forozande 119610 mac 119610 bytes_out 0 119610 bytes_in 0 119610 station_ip 37.129.34.118 119610 port 72 119610 unique_id port 119610 remote_ip 10.8.1.102 119611 username zare 119611 mac 57365 username arezoo 57365 kill_reason Maximum check online fails reached 57365 mac 5.238.58.4:50801: Unknown host 57365 bytes_out 0 57365 bytes_in 0 57365 station_ip 5.238.58.4:50801 57365 port 1017 57365 unique_id port 119611 bytes_out 683224 119611 bytes_in 16181027 119611 station_ip 94.183.214.14 119611 port 157 119611 unique_id port 119611 remote_ip 10.8.0.18 119612 username rajaei 119612 kill_reason Another user logged on this global unique id 119612 mac 119612 bytes_out 0 119612 bytes_in 0 119612 station_ip 37.153.176.169 119612 port 142 119612 unique_id port 119616 username aminvpn 119616 mac 119616 bytes_out 0 119616 bytes_in 0 119616 station_ip 5.119.251.131 119616 port 142 119616 unique_id port 119616 remote_ip 10.8.0.14 119618 username forozande 119618 mac 119618 bytes_out 0 119618 bytes_in 0 119618 station_ip 37.129.233.39 119618 port 72 119618 unique_id port 119618 remote_ip 10.8.1.102 119621 username mohammadmahdi 119621 mac 119621 bytes_out 1295583 119621 bytes_in 14738694 119621 station_ip 5.120.109.218 119621 port 157 119621 unique_id port 119621 remote_ip 10.8.0.54 119626 username aminvpn 119626 mac 119626 bytes_out 0 119626 bytes_in 0 119626 station_ip 5.119.251.131 119626 port 142 119626 unique_id port 119626 remote_ip 10.8.0.14 119629 username zare 119629 mac 119629 bytes_out 0 119629 bytes_in 0 119629 station_ip 94.183.214.14 119629 port 157 119629 unique_id port 119629 remote_ip 10.8.0.18 119631 username aminvpn 119631 mac 119631 bytes_out 0 119631 bytes_in 0 119631 station_ip 83.123.199.190 119631 port 142 119631 unique_id port 119631 remote_ip 10.8.0.14 119632 username rajaei 119632 mac 119632 bytes_out 0 119632 bytes_in 0 119632 station_ip 37.153.176.169 119632 port 157 119632 unique_id port 119632 remote_ip 10.8.0.34 119634 username tahmasebi 119634 kill_reason Another user logged on this global unique id 119634 mac 119634 bytes_out 0 119634 bytes_in 0 119634 station_ip 5.119.132.27 119634 port 137 119634 unique_id port 119635 username aminvpn 119635 mac 119635 bytes_out 0 119635 bytes_in 0 119635 station_ip 83.123.199.190 119635 port 142 119635 unique_id port 119635 remote_ip 10.8.0.14 119640 username zare 119640 mac 119640 bytes_out 0 119640 bytes_in 0 119640 station_ip 94.183.214.14 119640 port 142 119640 unique_id port 119640 remote_ip 10.8.0.18 119641 username zare 119641 mac 119641 bytes_out 0 119641 bytes_in 0 119641 station_ip 94.183.214.14 119641 port 142 119641 unique_id port 119641 remote_ip 10.8.0.18 119642 username zare 119642 mac 119642 bytes_out 0 119642 bytes_in 0 119642 station_ip 94.183.214.14 119615 station_ip 83.123.199.190 119615 port 151 119615 unique_id port 119615 remote_ip 10.8.0.14 119617 username alihosseini1 119617 kill_reason Another user logged on this global unique id 119617 mac 119617 bytes_out 0 119617 bytes_in 0 119617 station_ip 5.119.159.182 119617 port 68 119617 unique_id port 119620 username alihosseini1 119620 mac 119620 bytes_out 0 119620 bytes_in 0 119620 station_ip 5.119.159.182 119620 port 68 119620 unique_id port 119623 username aminvpn 119623 mac 119623 bytes_out 0 119623 bytes_in 0 119623 station_ip 5.119.251.131 119623 port 157 119623 unique_id port 119623 remote_ip 10.8.0.14 119627 username alihosseini1 119627 mac 119627 bytes_out 8399 119627 bytes_in 25128 119627 station_ip 5.119.159.182 119627 port 68 119627 unique_id port 119627 remote_ip 10.8.1.106 119628 username zare 119628 mac 119628 bytes_out 0 119628 bytes_in 0 119628 station_ip 94.183.214.14 119628 port 160 119628 unique_id port 119628 remote_ip 10.8.0.18 119630 username zare 119630 mac 119630 bytes_out 0 119630 bytes_in 0 119630 station_ip 94.183.214.14 119630 port 160 119630 unique_id port 119630 remote_ip 10.8.0.18 119637 username zare 119637 mac 119637 bytes_out 0 119637 bytes_in 0 119637 station_ip 94.183.214.14 119637 port 142 119637 unique_id port 119637 remote_ip 10.8.0.18 119638 username alihosseini1 119638 mac 119638 bytes_out 31846 119638 bytes_in 72114 119638 station_ip 5.119.159.182 119638 port 68 119638 unique_id port 119638 remote_ip 10.8.1.106 119639 username sedighe 119639 mac 119639 bytes_out 0 119639 bytes_in 0 119639 station_ip 37.129.42.27 119639 port 151 119639 unique_id port 119639 remote_ip 10.8.0.146 119645 username zare 119645 kill_reason Maximum check online fails reached 119645 mac 119645 bytes_out 0 119645 bytes_in 0 119645 station_ip 94.183.214.14 119645 port 142 119645 unique_id port 119648 username aminvpn 119648 mac 119648 bytes_out 0 119648 bytes_in 0 119648 station_ip 5.119.251.131 119648 port 151 119648 unique_id port 119648 remote_ip 10.8.0.14 119650 username zare 119650 mac 119650 bytes_out 0 119650 bytes_in 0 119650 station_ip 94.183.214.14 119650 port 74 119650 unique_id port 119650 remote_ip 10.8.1.58 119653 username zare 119653 mac 119653 bytes_out 0 119653 bytes_in 0 119653 station_ip 94.183.214.14 119653 port 75 119653 unique_id port 119653 remote_ip 10.8.1.58 119654 username zare 119654 mac 119654 bytes_out 0 119654 bytes_in 0 119654 station_ip 94.183.214.14 119654 port 75 119654 unique_id port 119654 remote_ip 10.8.1.58 119656 username zare 119656 mac 119656 bytes_out 0 119656 bytes_in 0 119656 station_ip 94.183.214.14 119656 port 75 119656 unique_id port 119656 remote_ip 10.8.1.58 119660 username sedighe 119660 mac 119660 bytes_out 0 119660 bytes_in 0 119660 station_ip 113.203.59.93 119660 port 160 119660 unique_id port 119660 remote_ip 10.8.0.146 119661 username sedighe 119661 mac 119661 bytes_out 0 119661 bytes_in 0 119661 station_ip 83.122.185.66 119661 port 140 119661 unique_id port 119661 remote_ip 10.8.0.146 119662 username aminvpn 119662 mac 119662 bytes_out 0 119662 bytes_in 0 119662 station_ip 5.119.251.131 119662 port 140 119662 unique_id port 119662 remote_ip 10.8.0.14 119665 username zare 119665 mac 119665 bytes_out 0 119665 bytes_in 0 119665 station_ip 94.183.214.14 119665 port 75 119665 unique_id port 119665 remote_ip 10.8.1.58 119667 username zare 119636 remote_ip 10.8.0.14 119646 username amir 119646 kill_reason Another user logged on this global unique id 119646 mac 119646 bytes_out 0 119646 bytes_in 0 119646 station_ip 46.225.210.210 119646 port 165 119646 unique_id port 119646 remote_ip 10.8.0.50 119647 username aminvpn 119647 mac 119647 bytes_out 0 119647 bytes_in 0 119647 station_ip 83.123.199.190 119647 port 157 119647 unique_id port 119647 remote_ip 10.8.0.14 119649 username aminvpn 119649 mac 119649 bytes_out 0 119649 bytes_in 0 119649 station_ip 5.119.251.131 119649 port 151 119649 unique_id port 119649 remote_ip 10.8.0.14 119651 username mostafa_es78 119651 unique_id port 119651 terminate_cause Lost-Carrier 119651 bytes_out 318505 119651 bytes_in 4228321 119651 station_ip 5.126.30.123 119651 port 15729703 119651 nas_port_type Virtual 119651 remote_ip 5.5.5.255 119658 username zare 119658 mac 119658 bytes_out 0 119658 bytes_in 0 119658 station_ip 94.183.214.14 119658 port 75 119658 unique_id port 119658 remote_ip 10.8.1.58 119659 username aminvpn 119659 mac 119659 bytes_out 0 119659 bytes_in 0 119659 station_ip 83.123.199.190 119659 port 151 119659 unique_id port 119659 remote_ip 10.8.0.14 119663 username zare 119663 mac 119663 bytes_out 88317 119663 bytes_in 206037 119663 station_ip 94.183.214.14 119663 port 75 119663 unique_id port 119663 remote_ip 10.8.1.58 119666 username reza2742 119666 unique_id port 119666 terminate_cause Lost-Carrier 119666 bytes_out 6032970 119666 bytes_in 172782714 119666 station_ip 5.202.10.122 119666 port 15729704 119666 nas_port_type Virtual 119666 remote_ip 5.5.5.254 119669 username zare 119669 mac 119669 bytes_out 0 119669 bytes_in 0 119669 station_ip 94.183.214.14 119669 port 140 119669 unique_id port 119669 remote_ip 10.8.0.18 119671 username mirzaei 119671 kill_reason Another user logged on this global unique id 119671 mac 119671 bytes_out 0 119671 bytes_in 0 119671 station_ip 5.120.169.128 119671 port 166 119671 unique_id port 119672 username zare 119672 mac 119672 bytes_out 0 119672 bytes_in 0 119672 station_ip 94.183.214.14 119672 port 140 119672 unique_id port 119672 remote_ip 10.8.0.18 119675 username zare 119675 mac 119675 bytes_out 0 119675 bytes_in 0 119675 station_ip 94.183.214.14 119675 port 140 119675 unique_id port 119675 remote_ip 10.8.0.18 119676 username zare 119676 mac 119676 bytes_out 0 119676 bytes_in 0 119676 station_ip 94.183.214.14 119676 port 140 119676 unique_id port 119676 remote_ip 10.8.0.18 119677 username zare 119677 mac 119677 bytes_out 0 119677 bytes_in 0 119677 station_ip 94.183.214.14 119677 port 140 119677 unique_id port 119677 remote_ip 10.8.0.18 119681 username alihosseini1 119681 mac 119681 bytes_out 4317452 119681 bytes_in 48913460 119681 station_ip 5.119.159.182 119681 port 68 119681 unique_id port 119681 remote_ip 10.8.1.106 119682 username mehdizare 119682 mac 119682 bytes_out 0 119682 bytes_in 0 119682 station_ip 5.119.27.232 119682 port 162 119682 unique_id port 119682 remote_ip 10.8.0.90 119688 username aminvpn 119688 mac 119688 bytes_out 0 119688 bytes_in 0 119688 station_ip 5.119.251.131 119688 port 162 119688 unique_id port 119688 remote_ip 10.8.0.14 119693 username alireza 119693 unique_id port 119693 terminate_cause User-Request 119693 bytes_out 334650 119693 bytes_in 414749 119693 station_ip 5.115.114.59 119693 port 15729706 119693 nas_port_type Virtual 119693 remote_ip 5.5.5.254 119696 username zare 119696 mac 119696 bytes_out 0 119696 bytes_in 0 119642 port 142 119642 unique_id port 119642 remote_ip 10.8.0.18 119643 username mirzaei 119643 kill_reason Another user logged on this global unique id 119643 mac 119643 bytes_out 0 119643 bytes_in 0 119643 station_ip 5.120.169.128 119643 port 166 119643 unique_id port 119643 remote_ip 10.8.0.66 119644 username rezaei 119644 kill_reason Another user logged on this global unique id 119644 mac 119644 bytes_out 0 119644 bytes_in 0 119644 station_ip 5.120.2.14 119644 port 72 119644 unique_id port 119644 remote_ip 10.8.1.150 119652 username zare 119652 mac 119652 bytes_out 18818 119652 bytes_in 88770 119652 station_ip 94.183.214.14 119652 port 75 119652 unique_id port 119652 remote_ip 10.8.1.58 119655 username tahmasebi 119655 kill_reason Another user logged on this global unique id 119655 mac 119655 bytes_out 0 119655 bytes_in 0 119655 station_ip 5.119.132.27 119655 port 137 119655 unique_id port 119657 username alipour 119657 mac 119657 bytes_out 0 119657 bytes_in 0 119657 station_ip 37.129.93.196 119657 port 140 119657 unique_id port 119657 remote_ip 10.8.0.102 119664 username zare 119664 mac 119664 bytes_out 0 119664 bytes_in 0 119664 station_ip 94.183.214.14 119664 port 75 119664 unique_id port 119664 remote_ip 10.8.1.58 119668 username zare 119668 kill_reason Maximum check online fails reached 119668 mac 119668 bytes_out 0 119668 bytes_in 0 119668 station_ip 94.183.214.14 119668 port 75 119668 unique_id port 119673 username amir 119673 kill_reason Another user logged on this global unique id 119673 mac 119673 bytes_out 0 119673 bytes_in 0 119673 station_ip 46.225.210.210 119673 port 165 119673 unique_id port 119674 username zare 119674 mac 119674 bytes_out 0 119674 bytes_in 0 119674 station_ip 94.183.214.14 119674 port 140 119674 unique_id port 119674 remote_ip 10.8.0.18 119678 username zare 119678 mac 119678 bytes_out 0 119678 bytes_in 0 57440 username arezoo 57440 kill_reason Maximum check online fails reached 57440 mac 5.237.72.195:52050: Unknown host 57440 bytes_out 0 57440 bytes_in 0 57440 station_ip 5.237.72.195:52050 57440 port 1017 57440 unique_id port 119678 station_ip 94.183.214.14 119678 port 140 119678 unique_id port 119678 remote_ip 10.8.0.18 119679 username aminvpn 119679 mac 119679 bytes_out 0 119679 bytes_in 0 119679 station_ip 5.119.251.131 119679 port 140 119679 unique_id port 119679 remote_ip 10.8.0.14 119684 username malekpoir 119684 kill_reason Another user logged on this global unique id 119684 mac 119684 bytes_out 0 119684 bytes_in 0 119684 station_ip 5.120.66.141 119684 port 71 119684 unique_id port 119684 remote_ip 10.8.1.54 119685 username zare 119685 mac 119685 bytes_out 0 119685 bytes_in 0 119685 station_ip 94.183.214.14 119685 port 140 119685 unique_id port 119685 remote_ip 10.8.0.18 119686 username zare 119686 mac 119686 bytes_out 0 119686 bytes_in 0 119686 station_ip 94.183.214.14 119686 port 140 119686 unique_id port 119686 remote_ip 10.8.0.18 119690 username sedighe 119690 mac 119690 bytes_out 0 119690 bytes_in 0 119690 station_ip 83.123.39.250 119690 port 151 119690 unique_id port 119690 remote_ip 10.8.0.146 119694 username zare 119694 mac 119694 bytes_out 0 119694 bytes_in 0 119694 station_ip 94.183.214.14 119694 port 151 119694 unique_id port 119694 remote_ip 10.8.0.18 119698 username amir 119698 mac 119698 bytes_out 0 119698 bytes_in 0 119698 station_ip 46.225.210.210 119698 port 165 119698 unique_id port 119699 username zare 119699 mac 119699 bytes_out 39149 119667 mac 119667 bytes_out 0 119667 bytes_in 0 119667 station_ip 94.183.214.14 119667 port 140 119667 unique_id port 119667 remote_ip 10.8.0.18 119670 username rezaei 119670 mac 119670 bytes_out 0 119670 bytes_in 0 119670 station_ip 5.120.2.14 119670 port 72 119670 unique_id port 119680 username zare 119680 mac 119680 bytes_out 0 119680 bytes_in 0 119680 station_ip 94.183.214.14 119680 port 140 119680 unique_id port 119680 remote_ip 10.8.0.18 119683 username zare 119683 mac 119683 bytes_out 0 119683 bytes_in 0 119683 station_ip 94.183.214.14 119683 port 140 119683 unique_id port 119683 remote_ip 10.8.0.18 119687 username zare 119687 mac 119687 bytes_out 0 119687 bytes_in 0 119687 station_ip 94.183.214.14 119687 port 140 119687 unique_id port 119687 remote_ip 10.8.0.18 119689 username zare 119689 mac 119689 bytes_out 0 119689 bytes_in 0 119689 station_ip 94.183.214.14 119689 port 140 119689 unique_id port 119689 remote_ip 10.8.0.18 119691 username zare 119691 mac 119691 bytes_out 0 119691 bytes_in 0 119691 station_ip 94.183.214.14 119691 port 151 119691 unique_id port 119691 remote_ip 10.8.0.18 119692 username ahmadipour 119692 unique_id port 119692 terminate_cause Lost-Carrier 119692 bytes_out 3894884 119692 bytes_in 110564928 119692 station_ip 83.123.83.253 119692 port 15729705 119692 nas_port_type Virtual 119692 remote_ip 5.5.5.109 119695 username shokokian 119695 unique_id port 119695 terminate_cause Lost-Carrier 119695 bytes_out 544224 119695 bytes_in 5743968 119695 station_ip 31.56.153.97 119695 port 15729701 119695 nas_port_type Virtual 119695 remote_ip 5.5.5.123 119697 username mehdizare 119697 mac 119697 bytes_out 17194 119697 bytes_in 24917 119697 station_ip 5.119.27.232 119697 port 72 119697 unique_id port 119697 remote_ip 10.8.1.42 119701 username kordestani 119701 mac 119701 bytes_out 331774 119701 bytes_in 4251218 119701 station_ip 151.235.95.141 119701 port 68 119701 unique_id port 119701 remote_ip 10.8.1.98 119702 username aminvpn 119702 mac 119702 bytes_out 0 119702 bytes_in 0 119702 station_ip 5.119.251.131 119702 port 151 119702 unique_id port 119702 remote_ip 10.8.0.14 119707 username aminvpn 119707 mac 119707 bytes_out 0 119707 bytes_in 0 119707 station_ip 83.123.199.190 119707 port 151 119707 unique_id port 119707 remote_ip 10.8.0.14 57444 username arezoo 57444 kill_reason Maximum check online fails reached 57444 mac 5.237.72.195:55080: Unknown host 57444 bytes_out 0 57444 bytes_in 0 57444 station_ip 5.237.72.195:55080 57444 port 1017 57444 unique_id port 119711 username aminvpn 119711 mac 119711 bytes_out 0 119711 bytes_in 0 119711 station_ip 83.123.199.190 119711 port 169 119711 unique_id port 119711 remote_ip 10.8.0.14 119722 username zare 119722 kill_reason Maximum check online fails reached 119722 mac 119722 bytes_out 0 119722 bytes_in 0 119722 station_ip 188.245.91.133 119722 port 151 119722 unique_id port 119724 username aminvpn 119724 mac 119724 bytes_out 0 119724 bytes_in 0 119724 station_ip 83.123.199.190 119724 port 170 119724 unique_id port 119724 remote_ip 10.8.0.14 119730 username aminvpn 119730 mac 119730 bytes_out 0 119730 bytes_in 0 119730 station_ip 5.119.19.46 119730 port 167 119730 unique_id port 119730 remote_ip 10.8.0.14 119732 username aminvpn 119732 mac 119732 bytes_out 0 119732 bytes_in 0 119732 station_ip 5.119.19.46 119732 port 167 119732 unique_id port 119732 remote_ip 10.8.0.14 119734 username zare 119734 mac 119696 station_ip 94.183.214.14 119696 port 151 119696 unique_id port 119696 remote_ip 10.8.0.18 119700 username aminvpn 119700 mac 119700 bytes_out 0 119700 bytes_in 0 119700 station_ip 5.119.251.131 119700 port 151 119700 unique_id port 119700 remote_ip 10.8.0.14 119703 username amir 119703 kill_reason Another user logged on this global unique id 119703 mac 119703 bytes_out 0 119703 bytes_in 0 119703 station_ip 46.225.209.239 119703 port 162 119703 unique_id port 119703 remote_ip 10.8.0.50 119704 username aminvpn 119704 mac 119704 bytes_out 0 119704 bytes_in 0 119704 station_ip 83.123.199.190 119704 port 151 119704 unique_id port 119704 remote_ip 10.8.0.14 119706 username mohammadjavad 119706 mac 119706 bytes_out 0 119706 bytes_in 0 119706 station_ip 37.129.245.104 119706 port 160 119706 unique_id port 119706 remote_ip 10.8.0.142 119708 username aminvpn 119708 kill_reason Maximum check online fails reached 119708 mac 119708 bytes_out 0 119708 bytes_in 0 119708 station_ip 5.119.251.131 119708 port 168 119708 unique_id port 119712 username aminvpn 119712 mac 119712 bytes_out 0 119712 bytes_in 0 119712 station_ip 5.119.19.46 119712 port 151 119712 unique_id port 119712 remote_ip 10.8.0.14 119713 username zare 119713 mac 119713 bytes_out 0 119713 bytes_in 0 119713 station_ip 188.245.91.133 119713 port 151 119713 unique_id port 119713 remote_ip 10.8.0.18 119721 username aminvpn 119721 mac 119721 bytes_out 0 119721 bytes_in 0 119721 station_ip 5.119.251.131 119721 port 68 119721 unique_id port 119721 remote_ip 10.8.1.6 119727 username zare 119727 mac 119727 bytes_out 0 119727 bytes_in 0 119727 station_ip 188.245.91.133 119727 port 140 119727 unique_id port 119727 remote_ip 10.8.0.18 119728 username aminvpn 119728 mac 119728 bytes_out 0 119728 bytes_in 0 119728 station_ip 83.123.199.190 119728 port 170 119728 unique_id port 119728 remote_ip 10.8.0.14 119731 username aminvpn 119731 mac 119731 bytes_out 0 119731 bytes_in 0 119731 station_ip 83.123.199.190 119731 port 140 119731 unique_id port 119731 remote_ip 10.8.0.14 119735 username aminvpn 119735 mac 119735 bytes_out 0 119735 bytes_in 0 119735 station_ip 83.123.199.190 119735 port 170 119735 unique_id port 119735 remote_ip 10.8.0.14 119744 username zare 119744 mac 119744 bytes_out 0 119744 bytes_in 0 119744 station_ip 188.245.91.133 119744 port 167 119744 unique_id port 119744 remote_ip 10.8.0.18 119745 username aminvpn 119745 mac 119745 bytes_out 0 119745 bytes_in 0 119745 station_ip 5.119.19.46 119745 port 165 119745 unique_id port 119745 remote_ip 10.8.0.14 119748 username aminvpn 119748 mac 119748 bytes_out 0 119748 bytes_in 0 119748 station_ip 83.123.199.190 119748 port 167 119748 unique_id port 119748 remote_ip 10.8.0.14 119751 username aminvpn 119751 mac 119751 bytes_out 0 119751 bytes_in 0 119751 station_ip 5.119.19.46 119751 port 165 119751 unique_id port 119751 remote_ip 10.8.0.14 119753 username aminvpn 119753 mac 119753 bytes_out 0 119753 bytes_in 0 119753 station_ip 83.123.199.190 119753 port 169 119753 unique_id port 119753 remote_ip 10.8.0.14 119754 username aminvpn 119754 mac 119754 bytes_out 0 119754 bytes_in 0 119754 station_ip 5.119.19.46 119754 port 165 119754 unique_id port 119754 remote_ip 10.8.0.14 119757 username aminvpn 119757 mac 119757 bytes_out 0 119757 bytes_in 0 119757 station_ip 5.119.19.46 119757 port 169 119757 unique_id port 119699 bytes_in 88484 119699 station_ip 94.183.214.14 119699 port 151 119699 unique_id port 119699 remote_ip 10.8.0.18 119705 username aminvpn 119705 mac 119705 bytes_out 0 119705 bytes_in 0 119705 station_ip 5.119.19.46 119705 port 167 119705 unique_id port 119705 remote_ip 10.8.0.14 119709 username aminvpn 119709 mac 119709 bytes_out 0 119709 bytes_in 0 119709 station_ip 5.119.19.46 119709 port 167 119709 unique_id port 119709 remote_ip 10.8.0.14 119710 username zare 119710 mac 119710 bytes_out 0 119710 bytes_in 0 119710 station_ip 188.245.91.133 119710 port 151 119710 unique_id port 119710 remote_ip 10.8.0.18 119714 username aminvpn 119714 mac 119714 bytes_out 0 119714 bytes_in 0 119714 station_ip 83.123.199.190 119714 port 167 119714 unique_id port 119714 remote_ip 10.8.0.14 119715 username aminvpn 119715 mac 119715 bytes_out 0 119715 bytes_in 0 57464 username arezoo 57464 kill_reason Maximum check online fails reached 57464 mac 5.237.72.195:49793: Unknown host 57464 bytes_out 0 57464 bytes_in 0 57464 station_ip 5.237.72.195:49793 57464 port 1017 57464 unique_id port 119715 station_ip 5.119.19.46 119715 port 151 119715 unique_id port 119715 remote_ip 10.8.0.14 119716 username aminvpn 119716 mac 119716 bytes_out 0 119716 bytes_in 0 119716 station_ip 83.123.199.190 119716 port 167 119716 unique_id port 119716 remote_ip 10.8.0.14 119717 username aminvpn 119717 mac 119717 bytes_out 0 119717 bytes_in 0 119717 station_ip 5.119.19.46 119717 port 169 119717 unique_id port 119717 remote_ip 10.8.0.14 119718 username aminvpn 119718 mac 119718 bytes_out 0 119718 bytes_in 0 119718 station_ip 83.123.199.190 119718 port 167 119718 unique_id port 119718 remote_ip 10.8.0.14 119719 username aminvpn 119719 mac 119719 bytes_out 0 119719 bytes_in 0 119719 station_ip 5.119.251.131 119719 port 68 119719 unique_id port 119719 remote_ip 10.8.1.6 119720 username aminvpn 119720 mac 119720 bytes_out 0 119720 bytes_in 0 119720 station_ip 5.119.19.46 119720 port 169 119720 unique_id port 119720 remote_ip 10.8.0.14 119723 username zare 119723 mac 119723 bytes_out 0 119723 bytes_in 0 119723 station_ip 188.245.91.133 119723 port 167 119723 unique_id port 119723 remote_ip 10.8.0.18 119725 username sedighe 119725 mac 119725 bytes_out 0 119725 bytes_in 0 119725 station_ip 83.123.39.250 119725 port 140 119725 unique_id port 119725 remote_ip 10.8.0.146 119726 username aminvpn 119726 mac 119726 bytes_out 0 119726 bytes_in 0 119726 station_ip 5.119.19.46 119726 port 167 119726 unique_id port 119726 remote_ip 10.8.0.14 119729 username zare 119729 mac 119729 bytes_out 0 119729 bytes_in 0 119729 station_ip 188.245.91.133 119729 port 140 119729 unique_id port 119729 remote_ip 10.8.0.18 119733 username kordestani 119733 mac 119733 bytes_out 0 119733 bytes_in 0 119733 station_ip 151.235.95.141 119733 port 165 119733 unique_id port 119733 remote_ip 10.8.0.134 119736 username zare 119736 mac 119736 bytes_out 0 119736 bytes_in 0 119736 station_ip 188.245.91.133 119736 port 165 119736 unique_id port 119736 remote_ip 10.8.0.18 119738 username aminvpn 119738 mac 119738 bytes_out 0 119738 bytes_in 0 119738 station_ip 83.123.199.190 119738 port 165 119738 unique_id port 119738 remote_ip 10.8.0.14 119739 username aminvpn 119739 unique_id port 119739 terminate_cause Lost-Carrier 119739 bytes_out 1763317 119739 bytes_in 27812239 119739 station_ip 5.119.251.131 119734 bytes_out 0 119734 bytes_in 0 119734 station_ip 188.245.91.133 119734 port 140 119734 unique_id port 119734 remote_ip 10.8.0.18 119737 username aminvpn 119737 mac 119737 bytes_out 0 119737 bytes_in 0 119737 station_ip 5.119.19.46 119737 port 140 119737 unique_id port 119737 remote_ip 10.8.0.14 119740 username aminvpn 119740 mac 119740 bytes_out 0 119740 bytes_in 0 119740 station_ip 5.119.19.46 119740 port 167 119740 unique_id port 119740 remote_ip 10.8.0.14 119743 username aminvpn 119743 mac 119743 bytes_out 0 119743 bytes_in 0 119743 station_ip 83.123.199.190 119743 port 170 119743 unique_id port 119743 remote_ip 10.8.0.14 119746 username aminvpn 119746 mac 119746 bytes_out 0 119746 bytes_in 0 119746 station_ip 5.119.251.131 119746 port 68 119746 unique_id port 119746 remote_ip 10.8.1.6 119747 username zare 119747 mac 119747 bytes_out 0 119747 bytes_in 0 119747 station_ip 188.245.91.133 119747 port 165 119747 unique_id port 119747 remote_ip 10.8.0.18 119752 username zare 119752 mac 119752 bytes_out 0 119752 bytes_in 0 119752 station_ip 188.245.91.133 119752 port 167 119752 unique_id port 119752 remote_ip 10.8.0.18 119758 username amir 119758 kill_reason Another user logged on this global unique id 119758 mac 119758 bytes_out 0 119758 bytes_in 0 119758 station_ip 46.225.209.239 119758 port 162 119758 unique_id port 119762 username aminvpn 119762 mac 119762 bytes_out 0 119762 bytes_in 0 119762 station_ip 83.123.199.190 119762 port 170 119762 unique_id port 119762 remote_ip 10.8.0.14 119768 username aminvpn 119768 mac 119768 bytes_out 0 119768 bytes_in 0 119768 station_ip 5.119.19.46 119768 port 169 119768 unique_id port 119768 remote_ip 10.8.0.14 119769 username zare 119769 mac 119769 bytes_out 0 119769 bytes_in 0 119769 station_ip 188.245.91.133 119769 port 169 119769 unique_id port 119769 remote_ip 10.8.0.18 119771 username zare 119771 mac 119771 bytes_out 0 119771 bytes_in 0 119771 station_ip 188.245.91.133 119771 port 169 119771 unique_id port 119771 remote_ip 10.8.0.18 119776 username aminvpn 119776 mac 119776 bytes_out 0 119776 bytes_in 0 119776 station_ip 83.123.199.190 119776 port 171 119776 unique_id port 119776 remote_ip 10.8.0.14 119779 username zare 119779 kill_reason Maximum check online fails reached 119779 mac 119779 bytes_out 0 119779 bytes_in 0 119779 station_ip 188.245.91.133 119779 port 167 119779 unique_id port 119780 username aminvpn 119780 mac 119780 bytes_out 0 119780 bytes_in 0 119780 station_ip 83.123.199.190 119780 port 171 119780 unique_id port 119780 remote_ip 10.8.0.14 119781 username aminvpn 119781 mac 119781 bytes_out 0 119781 bytes_in 0 119781 station_ip 5.119.251.131 119781 port 68 119781 unique_id port 119781 remote_ip 10.8.1.6 119786 username aminvpn 119786 mac 119786 bytes_out 0 119786 bytes_in 0 119786 station_ip 5.119.19.46 119786 port 160 119786 unique_id port 119786 remote_ip 10.8.0.14 119788 username mehdizare 119788 mac 119788 bytes_out 0 119788 bytes_in 0 119788 station_ip 5.119.27.232 119788 port 72 119788 unique_id port 119788 remote_ip 10.8.1.42 119789 username aminvpn 119789 mac 119789 bytes_out 0 119789 bytes_in 0 119789 station_ip 5.119.251.131 119789 port 76 119789 unique_id port 119789 remote_ip 10.8.1.6 119791 username amir 119791 kill_reason Another user logged on this global unique id 119791 mac 119791 bytes_out 0 119791 bytes_in 0 119791 station_ip 46.225.209.239 119739 port 15729697 119739 nas_port_type Virtual 119739 remote_ip 5.5.5.152 119741 username zare 119741 mac 119741 bytes_out 0 119741 bytes_in 0 119741 station_ip 188.245.91.133 119741 port 165 119741 unique_id port 119741 remote_ip 10.8.0.18 119742 username sedighe 119742 mac 119742 bytes_out 0 119742 bytes_in 0 119742 station_ip 83.123.39.250 119742 port 169 119742 unique_id port 119742 remote_ip 10.8.0.146 119749 username aminvpn 119749 mac 119749 bytes_out 0 119749 bytes_in 0 119749 station_ip 5.119.19.46 119749 port 165 119749 unique_id port 119749 remote_ip 10.8.0.14 119750 username aminvpn 119750 mac 119750 bytes_out 0 119750 bytes_in 0 119750 station_ip 83.123.199.190 119750 port 167 119750 unique_id port 119750 remote_ip 10.8.0.14 119755 username malekpoir 119755 kill_reason Another user logged on this global unique id 119755 mac 119755 bytes_out 0 119755 bytes_in 0 119755 station_ip 5.120.66.141 119755 port 71 119755 unique_id port 119756 username aminvpn 119756 mac 119756 bytes_out 0 119756 bytes_in 0 119756 station_ip 83.123.199.190 119756 port 167 119756 unique_id port 119756 remote_ip 10.8.0.14 119759 username aminvpn 119759 mac 119759 bytes_out 0 119759 bytes_in 0 119759 station_ip 83.123.199.190 119759 port 167 119759 unique_id port 119759 remote_ip 10.8.0.14 119763 username zare 119763 mac 119763 bytes_out 0 119763 bytes_in 0 119763 station_ip 188.245.91.133 119763 port 167 119763 unique_id port 119763 remote_ip 10.8.0.18 119764 username aminvpn 119764 mac 119764 bytes_out 0 119764 bytes_in 0 119764 station_ip 5.119.19.46 119764 port 169 119764 unique_id port 119764 remote_ip 10.8.0.14 119767 username zare 119767 mac 119767 bytes_out 0 119767 bytes_in 0 119767 station_ip 188.245.91.133 119767 port 167 119767 unique_id port 119767 remote_ip 10.8.0.18 119775 username aminvpn 119775 mac 119775 bytes_out 0 119775 bytes_in 0 119775 station_ip 5.119.19.46 119775 port 169 119775 unique_id port 119775 remote_ip 10.8.0.14 119777 username aminvpn 119777 mac 119777 bytes_out 0 119777 bytes_in 0 119777 station_ip 5.119.19.46 119777 port 169 119777 unique_id port 119777 remote_ip 10.8.0.14 119792 username aminvpn 119792 mac 119792 bytes_out 40068 119792 bytes_in 131681 119792 station_ip 5.119.19.46 119792 port 160 119792 unique_id port 119792 remote_ip 10.8.0.14 119795 username aminvpn 119795 mac 119795 bytes_out 0 119795 bytes_in 0 119795 station_ip 5.119.19.46 119795 port 171 119795 unique_id port 119795 remote_ip 10.8.0.14 119801 username zare 119801 mac 119801 bytes_out 0 119801 bytes_in 0 119801 station_ip 188.245.91.133 119801 port 171 119801 unique_id port 119801 remote_ip 10.8.0.18 119804 username zare 119804 mac 119804 bytes_out 0 119804 bytes_in 0 119804 station_ip 188.245.91.133 119804 port 78 119804 unique_id port 119804 remote_ip 10.8.1.58 119805 username aminvpn 119805 kill_reason Maximum check online fails reached 119805 mac 119805 bytes_out 0 119805 bytes_in 0 119805 station_ip 5.119.251.131 119805 port 77 119805 unique_id port 119809 username aminvpn 119809 mac 119809 bytes_out 0 119809 bytes_in 0 119809 station_ip 5.119.19.46 119809 port 76 119809 unique_id port 119809 remote_ip 10.8.1.6 119811 username forozande 119811 mac 119811 bytes_out 690204 119811 bytes_in 3077963 119811 station_ip 37.129.45.46 119811 port 74 119811 unique_id port 119811 remote_ip 10.8.1.102 119815 username alihosseini1 119757 remote_ip 10.8.0.14 119760 username zare 119760 kill_reason Maximum check online fails reached 119760 mac 119760 bytes_out 0 119760 bytes_in 0 119760 station_ip 188.245.91.133 119760 port 165 119760 unique_id port 119761 username aminvpn 119761 mac 119761 bytes_out 0 119761 bytes_in 0 119761 station_ip 5.119.19.46 119761 port 169 119761 unique_id port 119761 remote_ip 10.8.0.14 119765 username aminvpn 119765 mac 119765 bytes_out 0 119765 bytes_in 0 119765 station_ip 5.119.251.131 119765 port 68 119765 unique_id port 119765 remote_ip 10.8.1.6 119766 username aminvpn 119766 mac 119766 bytes_out 0 119766 bytes_in 0 119766 station_ip 83.123.199.190 119766 port 167 119766 unique_id port 119766 remote_ip 10.8.0.14 119770 username aminvpn 119770 mac 119770 bytes_out 0 119770 bytes_in 0 119770 station_ip 83.123.199.190 119770 port 167 119770 unique_id port 119770 remote_ip 10.8.0.14 119772 username aminvpn 119772 mac 119772 bytes_out 0 119772 bytes_in 0 119772 station_ip 5.119.19.46 119772 port 170 119772 unique_id port 119772 remote_ip 10.8.0.14 119773 username zare 119773 mac 119773 bytes_out 0 119773 bytes_in 0 119773 station_ip 188.245.91.133 119773 port 169 119773 unique_id port 119773 remote_ip 10.8.0.18 119774 username aminvpn 119774 mac 119774 bytes_out 0 119774 bytes_in 0 119774 station_ip 83.123.199.190 119774 port 167 119774 unique_id port 119774 remote_ip 10.8.0.14 119778 username mohammadjavad 119778 mac 119778 bytes_out 0 119778 bytes_in 0 119778 station_ip 37.129.146.108 119778 port 160 119778 unique_id port 119778 remote_ip 10.8.0.142 119782 username sedighe 119782 mac 119782 bytes_out 45439 119782 bytes_in 65824 119782 station_ip 37.129.132.30 119782 port 170 119782 unique_id port 119782 remote_ip 10.8.0.146 119783 username zare 119783 mac 119783 bytes_out 0 119783 bytes_in 0 119783 station_ip 188.245.91.133 119783 port 68 119783 unique_id port 119783 remote_ip 10.8.1.58 119784 username aminvpn 119784 mac 119784 bytes_out 14544 119784 bytes_in 49085 119784 station_ip 5.119.19.46 119784 port 160 119784 unique_id port 119784 remote_ip 10.8.0.14 119785 username aminvpn 119785 mac 119785 bytes_out 0 119785 bytes_in 0 119785 station_ip 83.123.199.190 119785 port 169 119785 unique_id port 119785 remote_ip 10.8.0.14 119787 username aminvpn 119787 mac 119787 bytes_out 0 119787 bytes_in 0 119787 station_ip 83.123.199.190 119787 port 169 119787 unique_id port 119787 remote_ip 10.8.0.14 119790 username aminvpn 119790 unique_id port 119790 terminate_cause Lost-Carrier 119790 bytes_out 847953 119790 bytes_in 12713400 119790 station_ip 5.119.251.131 119790 port 15729709 119790 nas_port_type Virtual 119790 remote_ip 5.5.5.111 119793 username aminvpn 119793 mac 119793 bytes_out 0 119793 bytes_in 0 119793 station_ip 83.123.199.190 119793 port 170 119793 unique_id port 119793 remote_ip 10.8.0.14 119800 username aminvpn 119800 mac 119800 bytes_out 19875 119800 bytes_in 24595 119800 station_ip 5.119.19.46 119800 port 76 119800 unique_id port 119800 remote_ip 10.8.1.6 119802 username aminvpn 119802 mac 119802 bytes_out 0 119802 bytes_in 0 119802 station_ip 5.119.251.131 119802 port 77 119802 unique_id port 119802 remote_ip 10.8.1.6 119803 username sobhan 119803 unique_id port 119803 terminate_cause Lost-Carrier 119803 bytes_out 9948058 119803 bytes_in 5220237 119803 station_ip 31.56.221.59 119803 port 15729708 119803 nas_port_type Virtual 119791 port 162 119791 unique_id port 119794 username zare 119794 mac 119794 bytes_out 0 119794 bytes_in 0 119794 station_ip 188.245.91.133 119794 port 160 119794 unique_id port 119794 remote_ip 10.8.0.18 119796 username zare 119796 mac 119796 bytes_out 0 119796 bytes_in 0 119796 station_ip 188.245.91.133 119796 port 170 119796 unique_id port 119796 remote_ip 10.8.0.18 119797 username aminvpn 119797 mac 119797 bytes_out 0 119797 bytes_in 0 119797 station_ip 83.123.199.190 119797 port 160 119797 unique_id port 119797 remote_ip 10.8.0.14 119798 username aminvpn 119798 mac 119798 bytes_out 0 119798 bytes_in 0 119798 station_ip 5.119.19.46 119798 port 171 119798 unique_id port 119798 remote_ip 10.8.0.14 119799 username zare 119799 mac 119799 bytes_out 0 119799 bytes_in 0 119799 station_ip 188.245.91.133 119799 port 171 119799 unique_id port 119799 remote_ip 10.8.0.18 119807 username mohammadjavad 119807 mac 119807 bytes_out 0 119807 bytes_in 0 119807 station_ip 83.122.154.120 119807 port 169 119807 unique_id port 119807 remote_ip 10.8.0.142 119812 username alihosseini1 119812 mac 119812 bytes_out 0 119812 bytes_in 0 119812 station_ip 5.120.121.131 119812 port 78 119812 unique_id port 119812 remote_ip 10.8.1.106 119813 username forozande 119813 mac 119813 bytes_out 26971 119813 bytes_in 163847 119813 station_ip 37.129.45.46 119813 port 74 119813 unique_id port 119813 remote_ip 10.8.1.102 119823 username alihosseini1 119823 mac 119823 bytes_out 0 119823 bytes_in 0 119823 station_ip 5.120.121.131 119823 port 174 119823 unique_id port 119823 remote_ip 10.8.0.166 119825 username mehdizare 119825 mac 119825 bytes_out 0 119825 bytes_in 0 119825 station_ip 5.119.27.232 119825 port 174 119825 unique_id port 119825 remote_ip 10.8.0.90 119826 username jamali 119826 mac 119826 bytes_out 0 119826 bytes_in 0 119826 station_ip 5.120.158.223 119826 port 171 119826 unique_id port 119826 remote_ip 10.8.0.150 119830 username farhad1 119830 kill_reason Another user logged on this global unique id 119830 mac 119830 bytes_out 0 119830 bytes_in 0 119830 station_ip 5.119.151.164 119830 port 170 119830 unique_id port 119830 remote_ip 10.8.0.26 119836 username alipour 119836 mac 119836 bytes_out 0 119836 bytes_in 0 119836 station_ip 37.129.93.196 119836 port 157 119836 unique_id port 119836 remote_ip 10.8.0.102 119837 username alihosseini1 119837 mac 119837 bytes_out 0 119837 bytes_in 0 119837 station_ip 5.120.121.131 119837 port 74 119837 unique_id port 119837 remote_ip 10.8.1.106 119841 username alihosseini1 119841 mac 119841 bytes_out 0 119841 bytes_in 0 119841 station_ip 5.120.121.131 119841 port 72 119841 unique_id port 119841 remote_ip 10.8.1.106 119842 username morteza 119842 mac 119842 bytes_out 0 119842 bytes_in 0 119842 station_ip 37.129.231.129 119842 port 169 119842 unique_id port 119842 remote_ip 10.8.0.46 119848 username morteza 119848 mac 119848 bytes_out 0 119848 bytes_in 0 119848 station_ip 37.129.231.129 119848 port 169 119848 unique_id port 119848 remote_ip 10.8.0.46 119851 username morteza 119851 mac 119851 bytes_out 0 119851 bytes_in 0 119851 station_ip 37.129.231.129 119851 port 169 119851 unique_id port 119851 remote_ip 10.8.0.46 119852 username aminvpn 119852 mac 119852 bytes_out 0 119852 bytes_in 0 119852 station_ip 83.123.199.190 119852 port 72 119852 unique_id port 119852 remote_ip 10.8.1.6 119854 username aminvpn 119803 remote_ip 5.5.5.108 119806 username zare 119806 mac 119806 bytes_out 0 119806 bytes_in 0 119806 station_ip 188.245.91.133 119806 port 171 119806 unique_id port 119806 remote_ip 10.8.0.18 119808 username alihosseini1 119808 mac 119808 bytes_out 2012471 119808 bytes_in 20690029 119808 station_ip 5.120.121.131 119808 port 68 119808 unique_id port 119808 remote_ip 10.8.1.106 119810 username zare 119810 kill_reason Maximum check online fails reached 119810 mac 119810 bytes_out 0 119810 bytes_in 0 119810 station_ip 188.245.91.133 119810 port 68 119810 unique_id port 119814 username farhad1 119814 kill_reason Another user logged on this global unique id 119814 mac 119814 bytes_out 0 119814 bytes_in 0 119814 station_ip 5.119.244.145 119814 port 170 119814 unique_id port 119814 remote_ip 10.8.0.26 119817 username amir 119817 kill_reason Another user logged on this global unique id 119817 mac 119817 bytes_out 0 119817 bytes_in 0 119817 station_ip 46.225.209.239 119817 port 162 119817 unique_id port 119818 username alirr 119818 kill_reason Relative expiration date has reached 119818 unique_id port 119818 bytes_out 0 119818 bytes_in 0 119818 station_ip 5.119.225.209 119818 port 15729710 119818 nas_port_type Virtual 119819 username alihosseini1 119819 mac 119819 bytes_out 0 119819 bytes_in 0 119819 station_ip 5.120.121.131 119819 port 172 119819 unique_id port 119819 remote_ip 10.8.0.166 119821 username morteza 119821 mac 119821 bytes_out 0 119821 bytes_in 0 119821 station_ip 37.129.231.129 119821 port 169 119821 unique_id port 119821 remote_ip 10.8.0.46 119824 username mehdizare 119824 mac 119824 bytes_out 0 119824 bytes_in 0 119824 station_ip 5.119.27.232 119824 port 172 119824 unique_id port 119824 remote_ip 10.8.0.90 119833 username morteza 119833 mac 119833 bytes_out 660590 119833 bytes_in 11958788 119833 station_ip 37.129.231.129 119833 port 169 119833 unique_id port 119833 remote_ip 10.8.0.46 119834 username morteza 119834 mac 119834 bytes_out 0 119834 bytes_in 0 119834 station_ip 37.129.231.129 119834 port 169 119834 unique_id port 119834 remote_ip 10.8.0.46 119835 username alihosseini1 119835 mac 119835 bytes_out 0 119835 bytes_in 0 119835 station_ip 5.120.121.131 119835 port 172 119835 unique_id port 119835 remote_ip 10.8.0.166 119838 username alipour 119838 mac 119838 bytes_out 34092 119838 bytes_in 46652 119838 station_ip 37.129.93.196 119838 port 72 119838 unique_id port 119838 remote_ip 10.8.1.50 119840 username alihosseini1 119840 mac 119840 bytes_out 0 119840 bytes_in 0 119840 station_ip 5.120.121.131 119840 port 157 119840 unique_id port 119840 remote_ip 10.8.0.166 119843 username farhad1 119843 kill_reason Another user logged on this global unique id 119843 mac 119843 bytes_out 0 119843 bytes_in 0 119843 station_ip 5.119.151.164 119843 port 170 119843 unique_id port 119844 username aminvpn 119844 mac 119844 bytes_out 0 119844 bytes_in 0 119844 station_ip 5.119.19.46 119844 port 76 119844 unique_id port 119844 remote_ip 10.8.1.6 119846 username mehdizare 119846 mac 119846 bytes_out 0 119846 bytes_in 0 119846 station_ip 5.119.27.232 119846 port 172 119846 unique_id port 119846 remote_ip 10.8.0.90 119849 username aminvpn 119849 mac 119849 bytes_out 0 119849 bytes_in 0 119849 station_ip 83.123.199.190 119849 port 72 119849 unique_id port 119849 remote_ip 10.8.1.6 119850 username aminvpn 119850 mac 119850 bytes_out 0 119850 bytes_in 0 119850 station_ip 5.119.19.46 119850 port 74 119815 mac 119815 bytes_out 0 119815 bytes_in 0 119815 station_ip 5.120.121.131 119815 port 74 119815 unique_id port 119815 remote_ip 10.8.1.106 119816 username alihosseini1 119816 mac 119816 bytes_out 0 119816 bytes_in 0 119816 station_ip 5.120.121.131 119816 port 74 119816 unique_id port 119816 remote_ip 10.8.1.106 119820 username mehdizare 119820 mac 119820 bytes_out 227444 119820 bytes_in 362169 119820 station_ip 5.119.27.232 119820 port 72 119820 unique_id port 119820 remote_ip 10.8.1.42 119822 username morteza 119822 mac 119822 bytes_out 0 119822 bytes_in 0 119822 station_ip 37.129.231.129 119822 port 169 119822 unique_id port 119822 remote_ip 10.8.0.46 119827 username farhad1 119827 mac 119827 bytes_out 0 119827 bytes_in 0 119827 station_ip 5.119.244.145 119827 port 170 119827 unique_id port 119828 username jamali 119828 mac 119828 bytes_out 0 119828 bytes_in 0 119828 station_ip 5.120.158.223 119828 port 174 119828 unique_id port 119828 remote_ip 10.8.0.150 119829 username amir 119829 kill_reason Another user logged on this global unique id 119829 mac 119829 bytes_out 0 119829 bytes_in 0 119829 station_ip 46.225.209.239 119829 port 162 119829 unique_id port 119831 username mehdizare 119831 mac 119831 bytes_out 0 119831 bytes_in 0 119831 station_ip 5.119.27.232 119831 port 172 119831 unique_id port 119831 remote_ip 10.8.0.90 119832 username alihosseini1 119832 mac 119832 bytes_out 0 119832 bytes_in 0 119832 station_ip 5.120.121.131 119832 port 172 119832 unique_id port 119832 remote_ip 10.8.0.166 119839 username alihosseini1 119839 mac 119839 bytes_out 0 119839 bytes_in 0 119839 station_ip 5.120.121.131 119839 port 72 119839 unique_id port 119839 remote_ip 10.8.1.106 119845 username aminvpn 119845 mac 119845 bytes_out 0 119845 bytes_in 0 119845 station_ip 83.123.199.190 119845 port 72 119845 unique_id port 119845 remote_ip 10.8.1.6 119847 username aminvpn 119847 mac 119847 bytes_out 0 119847 bytes_in 0 119847 station_ip 5.119.19.46 119847 port 74 119847 unique_id port 119847 remote_ip 10.8.1.6 119853 username aminvpn 119853 mac 119853 bytes_out 0 119853 bytes_in 0 119853 station_ip 83.123.199.190 119853 port 160 119853 unique_id port 119853 remote_ip 10.8.0.14 119857 username aminvpn 119857 mac 119857 bytes_out 0 119857 bytes_in 0 119857 station_ip 83.123.199.190 119857 port 72 119857 unique_id port 119857 remote_ip 10.8.1.6 119859 username aminvpn 119859 mac 119859 bytes_out 0 119859 bytes_in 0 119859 station_ip 5.119.19.46 119859 port 74 119859 unique_id port 119859 remote_ip 10.8.1.6 119860 username aminvpn 119860 mac 119860 bytes_out 0 119860 bytes_in 0 119860 station_ip 83.123.199.190 119860 port 72 119860 unique_id port 119860 remote_ip 10.8.1.6 119861 username aminvpn 119861 mac 119861 bytes_out 0 119861 bytes_in 0 119861 station_ip 5.119.19.46 119861 port 74 119861 unique_id port 119861 remote_ip 10.8.1.6 119863 username mahbobeh 119863 unique_id port 119863 terminate_cause Lost-Carrier 119863 bytes_out 597023 119863 bytes_in 11098772 119863 station_ip 83.122.149.170 119863 port 15729714 119863 nas_port_type Virtual 119863 remote_ip 5.5.5.251 119865 username aminvpn 119865 mac 119865 bytes_out 0 119865 bytes_in 0 119865 station_ip 5.119.19.46 119865 port 74 119865 unique_id port 119865 remote_ip 10.8.1.6 119867 username morteza 119867 mac 119867 bytes_out 79550 119867 bytes_in 354073 119850 unique_id port 119850 remote_ip 10.8.1.6 119855 username aminvpn 119855 mac 119855 bytes_out 0 119855 bytes_in 0 119855 station_ip 83.123.199.190 119855 port 72 119855 unique_id port 119855 remote_ip 10.8.1.6 119856 username aminvpn 119856 mac 119856 bytes_out 0 119856 bytes_in 0 119856 station_ip 5.119.19.46 119856 port 74 119856 unique_id port 119856 remote_ip 10.8.1.6 119858 username morteza 119858 mac 119858 bytes_out 0 119858 bytes_in 0 119858 station_ip 37.129.231.129 119858 port 169 119858 unique_id port 119858 remote_ip 10.8.0.46 119864 username mohammadjavad 119864 mac 119864 bytes_out 992422 119864 bytes_in 16531330 119864 station_ip 37.129.174.159 119864 port 173 119864 unique_id port 119864 remote_ip 10.8.0.142 119866 username amir 119866 mac 119866 bytes_out 0 119866 bytes_in 0 119866 station_ip 46.225.209.239 119866 port 162 119866 unique_id port 119869 username alihosseini1 119869 mac 119869 bytes_out 0 119869 bytes_in 0 119869 station_ip 5.120.121.131 119869 port 162 119869 unique_id port 119869 remote_ip 10.8.0.166 119872 username mahdiyehalizadeh 119872 mac 119872 bytes_out 0 119872 bytes_in 0 119872 station_ip 83.122.211.162 119872 port 162 119872 unique_id port 119872 remote_ip 10.8.0.82 119874 username aminvpn 119874 mac 119874 bytes_out 0 119874 bytes_in 0 119874 station_ip 5.233.64.135 119874 port 140 119874 unique_id port 119874 remote_ip 10.8.0.14 119875 username alihosseini1 119875 mac 119875 bytes_out 0 119875 bytes_in 0 119875 station_ip 5.120.121.131 119875 port 140 119875 unique_id port 119875 remote_ip 10.8.0.166 119878 username mahdiyehalizadeh 119878 mac 119878 bytes_out 0 119878 bytes_in 0 119878 station_ip 83.122.135.152 119878 port 140 119878 unique_id port 119878 remote_ip 10.8.0.82 119880 username tahmasebi 119880 kill_reason Another user logged on this global unique id 119880 mac 119880 bytes_out 0 119880 bytes_in 0 119880 station_ip 5.119.132.27 119880 port 137 119880 unique_id port 119885 username mahdiyehalizadeh 119885 mac 119885 bytes_out 0 119885 bytes_in 0 119885 station_ip 83.122.135.152 119885 port 76 119885 unique_id port 119885 remote_ip 10.8.1.110 119886 username aminvpn 119886 mac 119886 bytes_out 0 119886 bytes_in 0 119886 station_ip 5.233.64.135 119886 port 157 119886 unique_id port 119886 remote_ip 10.8.0.14 119888 username mehdizare 119888 kill_reason Another user logged on this global unique id 119888 mac 119888 bytes_out 0 119888 bytes_in 0 119888 station_ip 5.119.27.232 119888 port 160 119888 unique_id port 119888 remote_ip 10.8.0.90 119889 username mosi 119889 mac 119889 bytes_out 198625 119889 bytes_in 839623 119889 station_ip 151.235.96.22 119889 port 162 119889 unique_id port 119889 remote_ip 10.8.0.138 119891 username jamali 119891 mac 119891 bytes_out 1527563 119891 bytes_in 14768912 119891 station_ip 5.120.158.223 119891 port 140 119891 unique_id port 119891 remote_ip 10.8.0.150 119894 username mahdiyehalizadeh 119894 mac 119894 bytes_out 32402 119894 bytes_in 39696 119894 station_ip 83.122.135.152 119894 port 76 119894 unique_id port 119894 remote_ip 10.8.1.110 119895 username aminvpn 119895 mac 119895 bytes_out 0 119895 bytes_in 0 119895 station_ip 5.233.64.135 119895 port 162 119895 unique_id port 119895 remote_ip 10.8.0.14 119898 username aminvpn 119898 mac 119898 bytes_out 0 119898 bytes_in 0 119898 station_ip 5.233.64.135 119898 port 169 119898 unique_id port 119898 remote_ip 10.8.0.14 119854 mac 119854 bytes_out 0 119854 bytes_in 0 119854 station_ip 5.119.19.46 119854 port 74 119854 unique_id port 119854 remote_ip 10.8.1.6 119862 username aminvpn 119862 mac 119862 bytes_out 0 119862 bytes_in 0 119862 station_ip 83.123.199.190 119862 port 72 119862 unique_id port 119862 remote_ip 10.8.1.6 119868 username sade 119868 unique_id port 119868 terminate_cause Lost-Carrier 119868 bytes_out 1016818 119868 bytes_in 8484659 119868 station_ip 5.119.225.209 119868 port 15729711 119868 nas_port_type Virtual 119868 remote_ip 5.5.5.114 119871 username kordestani 119871 mac 119871 bytes_out 1006692 119871 bytes_in 572549 119871 station_ip 151.235.95.141 119871 port 140 119871 unique_id port 119871 remote_ip 10.8.0.134 119873 username aminvpn 119873 mac 119873 bytes_out 0 119873 bytes_in 0 119873 station_ip 5.233.64.135 119873 port 140 119873 unique_id port 119873 remote_ip 10.8.0.14 119877 username alirezazadeh 119877 unique_id port 119877 terminate_cause Lost-Carrier 119877 bytes_out 1050101 119877 bytes_in 8901390 119877 station_ip 5.119.200.223 119877 port 15729713 119877 nas_port_type Virtual 119877 remote_ip 5.5.5.253 119879 username mostafa_es78 119879 unique_id port 119879 terminate_cause User-Request 119879 bytes_out 224155 119879 bytes_in 1812777 119879 station_ip 5.125.114.89 119879 port 15729715 119879 nas_port_type Virtual 119879 remote_ip 5.5.5.118 119881 username jamali 119881 mac 119881 bytes_out 1925122 119881 bytes_in 26784538 119881 station_ip 5.120.158.223 119881 port 171 119881 unique_id port 119881 remote_ip 10.8.0.150 119882 username farhad1 119882 kill_reason Another user logged on this global unique id 119882 mac 119882 bytes_out 0 119882 bytes_in 0 119882 station_ip 5.119.151.164 119882 port 170 119882 unique_id port 119892 username alihosseini1 119892 mac 119892 bytes_out 0 119892 bytes_in 0 119892 station_ip 5.120.121.131 119892 port 74 119892 unique_id port 119892 remote_ip 10.8.1.106 119893 username mehdizare 119893 mac 119893 bytes_out 0 119893 bytes_in 0 119893 station_ip 5.119.27.232 119893 port 160 119893 unique_id port 119896 username farhad1 119896 kill_reason Another user logged on this global unique id 119896 mac 119896 bytes_out 0 119896 bytes_in 0 119896 station_ip 5.119.151.164 119896 port 170 119896 unique_id port 119897 username mehdizare 119897 mac 119897 bytes_out 34157 119897 bytes_in 47212 119897 station_ip 5.119.27.232 119897 port 140 119897 unique_id port 119897 remote_ip 10.8.0.90 119905 username alihosseini1 119905 mac 119905 bytes_out 0 119905 bytes_in 0 119905 station_ip 5.120.121.131 119905 port 74 119905 unique_id port 119905 remote_ip 10.8.1.106 119909 username aminvpn 119909 mac 119909 bytes_out 0 119909 bytes_in 0 119909 station_ip 5.233.64.135 119909 port 171 119909 unique_id port 119909 remote_ip 10.8.0.14 119913 username mehdizare 119913 mac 119913 bytes_out 0 119913 bytes_in 0 119913 station_ip 5.119.27.232 57610 username arezoo 57610 kill_reason Maximum check online fails reached 57610 mac 5.237.78.79:56010: Unknown host 57610 bytes_out 0 57610 bytes_in 0 57610 station_ip 5.237.78.79:56010 57610 port 1017 57610 unique_id port 119913 port 140 119913 unique_id port 119913 remote_ip 10.8.0.90 119915 username alihosseini1 119915 mac 119915 bytes_out 0 119915 bytes_in 0 119915 station_ip 5.120.121.131 119915 port 74 119915 unique_id port 119915 remote_ip 10.8.1.106 119918 username mohammadjavad 119918 mac 119918 bytes_out 512171 119918 bytes_in 2635747 119918 station_ip 83.122.185.102 119867 station_ip 37.129.231.129 119867 port 160 119867 unique_id port 119867 remote_ip 10.8.0.46 119870 username mahdiyehalizadeh 119870 mac 119870 bytes_out 0 119870 bytes_in 0 119870 station_ip 83.122.211.162 119870 port 157 119870 unique_id port 119870 remote_ip 10.8.0.82 119876 username forozande 119876 mac 119876 bytes_out 183087 119876 bytes_in 1631057 119876 station_ip 83.123.67.19 119876 port 74 119876 unique_id port 119876 remote_ip 10.8.1.102 119883 username aminvpn 119883 mac 119883 bytes_out 0 57621 username arezoo 57621 kill_reason Another user logged on this global unique id 57621 mac 5.237.78.79:49464: Unknown host 57621 bytes_out 0 57621 bytes_in 0 57621 station_ip 5.237.78.79:49464 57621 port 1017 57621 unique_id port 119883 bytes_in 0 119883 station_ip 5.233.64.135 119883 port 157 119883 unique_id port 119883 remote_ip 10.8.0.14 119884 username farhad1 119884 kill_reason Another user logged on this global unique id 119884 mac 119884 bytes_out 0 119884 bytes_in 0 119884 station_ip 5.119.151.164 119884 port 170 119884 unique_id port 119887 username hamid.e 119887 unique_id port 119887 terminate_cause User-Request 119887 bytes_out 9877056 119887 bytes_in 74039007 119887 station_ip 37.27.22.45 119887 port 15729707 119887 nas_port_type Virtual 119887 remote_ip 5.5.5.255 119890 username aminvpn 119890 mac 119890 bytes_out 0 119890 bytes_in 0 119890 station_ip 5.233.64.135 119890 port 162 119890 unique_id port 119890 remote_ip 10.8.0.14 119899 username alihosseini1 119899 mac 119899 bytes_out 0 119899 bytes_in 0 119899 station_ip 5.120.121.131 119899 port 74 119899 unique_id port 119899 remote_ip 10.8.1.106 119902 username alihosseini1 119902 mac 119902 bytes_out 0 119902 bytes_in 0 119902 station_ip 5.120.121.131 119902 port 74 119902 unique_id port 119902 remote_ip 10.8.1.106 119906 username mehdizare 119906 mac 119906 bytes_out 118727 119906 bytes_in 258287 119906 station_ip 5.119.27.232 119906 port 140 119906 unique_id port 119906 remote_ip 10.8.0.90 119907 username houshang 119907 mac 119907 bytes_out 1118449 119907 bytes_in 18745055 119907 station_ip 5.119.253.212 119907 port 171 119907 unique_id port 119907 remote_ip 10.8.0.22 119911 username mirzaei 119911 kill_reason Another user logged on this global unique id 119911 mac 119911 bytes_out 0 119911 bytes_in 0 119911 station_ip 5.120.169.128 119911 port 166 119911 unique_id port 119912 username farhad1 119912 mac 119912 bytes_out 0 119912 bytes_in 0 119912 station_ip 5.119.151.164 119912 port 169 119912 unique_id port 119912 remote_ip 10.8.0.26 119914 username alipour 119914 kill_reason Another user logged on this global unique id 119914 mac 119914 bytes_out 0 119914 bytes_in 0 119914 station_ip 37.129.93.196 119914 port 157 119914 unique_id port 119914 remote_ip 10.8.0.102 119916 username aminvpn 119916 unique_id port 119916 terminate_cause User-Request 119916 bytes_out 1540733 119916 bytes_in 4066615 119916 station_ip 151.238.224.240 119916 port 15729719 119916 nas_port_type Virtual 119916 remote_ip 5.5.5.77 119921 username rajaei 119921 kill_reason Another user logged on this global unique id 119921 mac 119921 bytes_out 0 119921 bytes_in 0 119921 station_ip 94.24.82.222 119921 port 170 119921 unique_id port 119921 remote_ip 10.8.0.34 119924 username aminvpn 119924 mac 119924 bytes_out 0 119924 bytes_in 0 119924 station_ip 5.233.64.135 119924 port 171 119924 unique_id port 119924 remote_ip 10.8.0.14 119926 username mehdizare 119926 mac 119926 bytes_out 25489 119926 bytes_in 30189 119926 station_ip 5.119.27.232 119900 username farhad1 119900 mac 119900 bytes_out 0 119900 bytes_in 0 119900 station_ip 5.119.151.164 119900 port 170 119900 unique_id port 119901 username alihosseini1 119901 mac 119901 bytes_out 0 119901 bytes_in 0 119901 station_ip 5.120.121.131 119901 port 170 119901 unique_id port 119901 remote_ip 10.8.0.166 119903 username hamidsalari1 119903 kill_reason Another user logged on this global unique id 119903 mac 119903 bytes_out 0 119903 bytes_in 0 119903 station_ip 83.122.221.208 119903 port 162 119903 unique_id port 119903 remote_ip 10.8.0.226 119904 username jamali 119904 mac 119904 bytes_out 0 119904 bytes_in 0 119904 station_ip 5.120.158.223 119904 port 160 119904 unique_id port 119904 remote_ip 10.8.0.150 119908 username mehdizare 119908 mac 119908 bytes_out 0 119908 bytes_in 0 119908 station_ip 5.119.27.232 119908 port 172 119908 unique_id port 119908 remote_ip 10.8.0.90 119910 username jamali 119910 kill_reason Another user logged on this global unique id 119910 mac 119910 bytes_out 0 119910 bytes_in 0 119910 station_ip 5.120.158.223 119910 port 160 119910 unique_id port 119910 remote_ip 10.8.0.150 119917 username houshang 119917 mac 119917 bytes_out 23345 119917 bytes_in 13004 119917 station_ip 5.119.253.212 119917 port 172 119917 unique_id port 119917 remote_ip 10.8.0.22 119925 username sade 119925 unique_id port 119925 terminate_cause User-Request 119925 bytes_out 5681606 119925 bytes_in 58086905 119925 station_ip 5.120.151.39 119925 port 15729717 119925 nas_port_type Virtual 119925 remote_ip 5.5.5.254 119927 username houshang 119927 mac 119927 bytes_out 870328 119927 bytes_in 12499077 119927 station_ip 5.119.253.212 119927 port 171 119927 unique_id port 119927 remote_ip 10.8.0.22 119929 username rajaei 119929 kill_reason Another user logged on this global unique id 119929 mac 119929 bytes_out 0 119929 bytes_in 0 57638 username arezoo 57638 kill_reason Maximum check online fails reached 57638 mac 5.237.78.79:49219: Unknown host 57638 bytes_out 0 57638 bytes_in 0 57638 station_ip 5.237.78.79:49219 57638 port 1017 57638 unique_id port 119929 station_ip 94.24.82.222 119929 port 170 119929 unique_id port 119930 username mehdizare 119930 mac 119930 bytes_out 0 119930 bytes_in 0 119930 station_ip 5.119.27.232 119930 port 140 119930 unique_id port 119930 remote_ip 10.8.0.90 119931 username hamidsalari1 119931 kill_reason Another user logged on this global unique id 119931 mac 119931 bytes_out 0 119931 bytes_in 0 119931 station_ip 83.122.221.208 119931 port 162 119931 unique_id port 119932 username farhad1 119932 mac 119932 bytes_out 0 119932 bytes_in 0 119932 station_ip 5.120.40.178 119932 port 169 119932 unique_id port 119932 remote_ip 10.8.0.26 119939 username aminvpn 119939 mac 119939 bytes_out 33535 119939 bytes_in 99059 119939 station_ip 151.238.224.240 119939 port 169 119939 unique_id port 119939 remote_ip 10.8.0.14 119942 username alihosseini1 119942 kill_reason Maximum check online fails reached 119942 mac 119942 bytes_out 0 119942 bytes_in 0 119942 station_ip 5.120.121.131 119942 port 74 119942 unique_id port 119944 username alihosseini1 119944 mac 119944 bytes_out 0 119944 bytes_in 0 119944 station_ip 5.120.121.131 119944 port 76 119944 unique_id port 119944 remote_ip 10.8.1.106 119946 username alihosseini1 119946 mac 119946 bytes_out 0 119946 bytes_in 0 119946 station_ip 5.120.121.131 119946 port 76 119946 unique_id port 119946 remote_ip 10.8.1.106 119949 username aminvpn 119949 mac 119949 bytes_out 1644 119949 bytes_in 4917 119918 port 171 119918 unique_id port 119918 remote_ip 10.8.0.142 119919 username houshang 119919 mac 119919 bytes_out 0 119919 bytes_in 0 119919 station_ip 5.119.253.212 119919 port 74 119919 unique_id port 119919 remote_ip 10.8.1.70 119920 username alihosseini1 119920 mac 119920 bytes_out 0 119920 bytes_in 0 119920 station_ip 5.120.121.131 119920 port 171 119920 unique_id port 119920 remote_ip 10.8.0.166 119922 username hamidsalari1 119922 kill_reason Another user logged on this global unique id 119922 mac 119922 bytes_out 0 119922 bytes_in 0 119922 station_ip 83.122.221.208 119922 port 162 119922 unique_id port 119923 username houshang 119923 mac 119923 bytes_out 0 119923 bytes_in 0 119923 station_ip 5.119.253.212 119923 port 74 119923 unique_id port 119923 remote_ip 10.8.1.70 119928 username alipour 119928 kill_reason Another user logged on this global unique id 119928 mac 119928 bytes_out 0 119928 bytes_in 0 119928 station_ip 37.129.93.196 119928 port 157 119928 unique_id port 119934 username aminvpn 119934 mac 119934 bytes_out 0 119934 bytes_in 0 119934 station_ip 5.233.64.135 119934 port 169 119934 unique_id port 119934 remote_ip 10.8.0.14 119936 username mohammadjavad 119936 mac 119936 bytes_out 0 119936 bytes_in 0 119936 station_ip 113.203.73.118 119936 port 140 119936 unique_id port 119936 remote_ip 10.8.0.142 119940 username alipour 119940 kill_reason Another user logged on this global unique id 119940 mac 119940 bytes_out 0 119940 bytes_in 0 119940 station_ip 37.129.93.196 119940 port 157 119940 unique_id port 119948 username hamidsalari1 119948 kill_reason Another user logged on this global unique id 119948 mac 119948 bytes_out 0 119948 bytes_in 0 119948 station_ip 83.122.221.208 119948 port 162 119948 unique_id port 119950 username farhad1 119950 mac 119950 bytes_out 0 119950 bytes_in 0 119950 station_ip 5.120.41.213 119950 port 172 119950 unique_id port 119950 remote_ip 10.8.0.26 119952 username alihosseini1 119952 mac 119952 bytes_out 0 119952 bytes_in 0 119952 station_ip 5.120.121.131 119952 port 172 119952 unique_id port 119952 remote_ip 10.8.0.166 119955 username alihosseini1 119955 mac 119955 bytes_out 0 119955 bytes_in 0 119955 station_ip 5.120.121.131 119955 port 172 119955 unique_id port 119955 remote_ip 10.8.0.166 119957 username aminvpn 119957 kill_reason Maximum check online fails reached 119957 mac 119957 bytes_out 0 119957 bytes_in 0 119957 station_ip 5.233.64.135 119957 port 173 119957 unique_id port 119958 username mehdizare 119958 mac 119958 bytes_out 11667 119958 bytes_in 14781 119958 station_ip 5.119.27.232 119958 port 174 119958 unique_id port 119958 remote_ip 10.8.0.90 119961 username alihosseini1 119961 mac 119961 bytes_out 0 119961 bytes_in 0 119961 station_ip 5.120.121.131 119961 port 172 119961 unique_id port 119961 remote_ip 10.8.0.166 119965 username aminvpn 119965 mac 119965 bytes_out 3024980 119965 bytes_in 233318 119965 station_ip 5.120.64.231 119965 port 174 119965 unique_id port 119965 remote_ip 10.8.0.14 119966 username malekpoir 119966 kill_reason Another user logged on this global unique id 119966 mac 119966 bytes_out 0 119966 bytes_in 0 119966 station_ip 5.120.66.141 119966 port 71 119966 unique_id port 119968 username mohammadjavad 119968 mac 119968 bytes_out 533158 119968 bytes_in 5337501 119968 station_ip 83.123.251.247 119968 port 175 119968 unique_id port 119968 remote_ip 10.8.0.142 119971 username aminvpn 119971 mac 119971 bytes_out 0 119971 bytes_in 0 119926 port 140 119926 unique_id port 119926 remote_ip 10.8.0.90 119933 username aminvpn 119933 mac 119933 bytes_out 106881 119933 bytes_in 442449 119933 station_ip 151.238.224.240 119933 port 172 119933 unique_id port 119933 remote_ip 10.8.0.14 119935 username alihosseini1 119935 mac 119935 bytes_out 0 119935 bytes_in 0 119935 station_ip 5.120.121.131 119935 port 74 119935 unique_id port 119935 remote_ip 10.8.1.106 119937 username alihosseini1 119937 mac 119937 bytes_out 0 119937 bytes_in 0 119937 station_ip 5.120.121.131 119937 port 172 119937 unique_id port 119937 remote_ip 10.8.0.166 119938 username alihosseini1 119938 kill_reason Maximum check online fails reached 119938 mac 119938 bytes_out 0 119938 bytes_in 0 119938 station_ip 5.120.121.131 119938 port 140 119938 unique_id port 119941 username alihosseini1 119941 mac 119941 bytes_out 0 119941 bytes_in 0 119941 station_ip 5.120.121.131 119941 port 169 119941 unique_id port 119941 remote_ip 10.8.0.166 119943 username alihosseini1 119943 mac 119943 bytes_out 0 119943 bytes_in 0 119943 station_ip 5.120.121.131 119943 port 169 119943 unique_id port 119943 remote_ip 10.8.0.166 119945 username hamidsalari 119945 kill_reason Another user logged on this global unique id 119945 mac 119945 bytes_out 0 119945 bytes_in 0 119945 station_ip 5.119.72.47 119945 port 122 119945 unique_id port 119945 remote_ip 10.8.0.230 119947 username mehdizare 119947 mac 119947 bytes_out 18924 119947 bytes_in 24533 119947 station_ip 5.119.27.232 119947 port 171 119947 unique_id port 119947 remote_ip 10.8.0.90 119951 username forozande 119951 mac 119951 bytes_out 3294554 119951 bytes_in 16875405 119951 station_ip 113.203.80.80 119951 port 78 119951 unique_id port 119951 remote_ip 10.8.1.102 119953 username alipour 119953 kill_reason Another user logged on this global unique id 119953 mac 119953 bytes_out 0 119953 bytes_in 0 119953 station_ip 37.129.93.196 119953 port 157 119953 unique_id port 119960 username alihosseini1 119960 mac 119960 bytes_out 0 119960 bytes_in 0 119960 station_ip 5.120.121.131 119960 port 177 119960 unique_id port 119960 remote_ip 10.8.0.166 119963 username alireza 119963 unique_id port 119963 terminate_cause Lost-Carrier 119963 bytes_out 5117418 119963 bytes_in 60860761 119963 station_ip 5.112.93.72 119963 port 15729720 119963 nas_port_type Virtual 119963 remote_ip 5.5.5.255 119964 username alipour 119964 kill_reason Another user logged on this global unique id 119964 mac 119964 bytes_out 0 119964 bytes_in 0 119964 station_ip 37.129.93.196 119964 port 157 119964 unique_id port 119967 username aminvpn 119967 kill_reason Maximum check online fails reached 119967 mac 119967 bytes_out 0 119967 bytes_in 0 119967 station_ip 5.233.64.135 119967 port 171 119967 unique_id port 119974 username sade 119974 unique_id port 119974 terminate_cause Lost-Carrier 119974 bytes_out 1680153 119974 bytes_in 27152136 119974 station_ip 5.120.151.39 119974 port 15729721 119974 nas_port_type Virtual 119974 remote_ip 5.5.5.74 119977 username amir 119977 kill_reason Another user logged on this global unique id 119977 mac 119977 bytes_out 0 119977 bytes_in 0 119977 station_ip 46.225.209.78 119977 port 176 119977 unique_id port 119977 remote_ip 10.8.0.50 119981 username rajaei 119981 kill_reason Another user logged on this global unique id 119981 mac 119981 bytes_out 0 119981 bytes_in 0 119981 station_ip 94.24.82.222 119981 port 170 119981 unique_id port 119986 username aminvpn 119986 mac 119986 bytes_out 0 119986 bytes_in 0 119986 station_ip 46.100.223.138 119986 port 78 119949 station_ip 5.233.64.135 119949 port 173 119949 unique_id port 119949 remote_ip 10.8.0.14 119954 username kordestani 119954 mac 119954 bytes_out 1374855 119954 bytes_in 18843556 119954 station_ip 151.235.95.141 119954 port 169 119954 unique_id port 119954 remote_ip 10.8.0.134 119956 username alihosseini1 119956 kill_reason Maximum check online fails reached 119956 mac 119956 bytes_out 0 119956 bytes_in 0 119956 station_ip 5.120.121.131 119956 port 76 119956 unique_id port 119959 username aminvpn 119959 mac 119959 bytes_out 58447 119959 bytes_in 211610 119959 station_ip 151.238.224.240 119959 port 172 119959 unique_id port 119959 remote_ip 10.8.0.14 119962 username forozande 119962 mac 119962 bytes_out 622341 119962 bytes_in 10587385 119962 station_ip 113.203.80.80 119962 port 171 119962 unique_id port 119962 remote_ip 10.8.0.74 119969 username mehdizare 119969 mac 119969 bytes_out 14293 119969 bytes_in 16714 119969 station_ip 5.119.27.232 119969 port 178 119969 unique_id port 119969 remote_ip 10.8.0.90 119970 username aminvpn 119970 mac 119970 bytes_out 0 119970 bytes_in 0 119970 station_ip 83.123.199.190 119970 port 72 119970 unique_id port 119970 remote_ip 10.8.1.6 119973 username mehdizare 119973 mac 119973 bytes_out 18337 119973 bytes_in 19271 119973 station_ip 5.119.27.232 119973 port 175 119973 unique_id port 119973 remote_ip 10.8.0.90 119976 username aminvpn 119976 unique_id port 119976 terminate_cause User-Request 119976 bytes_out 0 119976 bytes_in 0 119976 station_ip 151.238.233.120 119976 port 15729723 119976 nas_port_type Virtual 119976 remote_ip 5.5.5.102 119980 username aminvpn 119980 unique_id port 119980 terminate_cause Lost-Carrier 119980 bytes_out 1021413 119980 bytes_in 16477920 119980 station_ip 151.238.224.240 119980 port 15729722 119980 nas_port_type Virtual 119980 remote_ip 5.5.5.78 119982 username forozande 119982 mac 119982 bytes_out 1003410 119982 bytes_in 1166000 119982 station_ip 83.123.10.208 119982 port 177 119982 unique_id port 119982 remote_ip 10.8.0.74 119987 username mehdizare 119987 mac 119987 bytes_out 25901 119987 bytes_in 26814 119987 station_ip 5.119.27.232 119987 port 174 119987 unique_id port 119987 remote_ip 10.8.0.90 119990 username aminvpn 119990 mac 119990 bytes_out 0 119990 bytes_in 0 119990 station_ip 46.100.223.138 119990 port 78 119990 unique_id port 119990 remote_ip 10.8.1.6 119996 username rajaei 119996 mac 119996 bytes_out 1630362 119996 bytes_in 22525334 119996 station_ip 94.24.82.222 119996 port 178 119996 unique_id port 57710 username arezoo 57710 kill_reason Maximum check online fails reached 57710 mac 5.237.78.79:49212: Unknown host 57710 bytes_out 0 57710 bytes_in 0 57710 station_ip 5.237.78.79:49212 57710 port 1017 57710 unique_id port 119996 remote_ip 10.8.0.34 120003 username forozande 120003 mac 120003 bytes_out 1569919 120003 bytes_in 2501919 120003 station_ip 83.123.197.91 120003 port 174 120003 unique_id port 120003 remote_ip 10.8.0.74 120013 username zare 120013 mac 120013 bytes_out 0 120013 bytes_in 0 120013 station_ip 188.245.91.133 120013 port 79 120013 unique_id port 120013 remote_ip 10.8.1.58 120016 username tahmasebi 120016 mac 120016 bytes_out 0 120016 bytes_in 0 120016 station_ip 5.119.132.27 120016 port 137 120016 unique_id port 120020 username sedighe 120020 mac 120020 bytes_out 0 120020 bytes_in 0 120020 station_ip 113.203.73.33 120020 port 137 120020 unique_id port 120020 remote_ip 10.8.0.146 120022 username mirzaei 120022 mac 120022 bytes_out 0 119971 station_ip 5.233.64.135 119971 port 78 119971 unique_id port 119971 remote_ip 10.8.1.6 119972 username sedighe 119972 mac 119972 bytes_out 0 119972 bytes_in 0 119972 station_ip 113.203.37.84 119972 port 172 119972 unique_id port 119972 remote_ip 10.8.0.146 119975 username mehdizare 119975 mac 119975 bytes_out 0 119975 bytes_in 0 119975 station_ip 5.119.27.232 119975 port 172 119975 unique_id port 119975 remote_ip 10.8.0.90 119978 username alihosseini1 119978 mac 119978 bytes_out 222761 119978 bytes_in 603161 119978 station_ip 5.120.121.131 119978 port 174 119978 unique_id port 119978 remote_ip 10.8.0.166 119979 username mehdizare 119979 mac 119979 bytes_out 0 119979 bytes_in 0 119979 station_ip 5.119.27.232 119979 port 175 119979 unique_id port 119979 remote_ip 10.8.0.90 119983 username bcboard 119983 unique_id port 119983 terminate_cause User-Request 119983 bytes_out 71804351 57677 username arezoo 57677 kill_reason Maximum check online fails reached 57677 mac 5.237.78.79:49200: Unknown host 57677 bytes_out 0 57677 bytes_in 0 57677 station_ip 5.237.78.79:49200 57677 port 1017 57677 unique_id port 119983 bytes_in 2271216 119983 station_ip 83.123.228.192 119983 port 15729712 119983 nas_port_type Virtual 119983 remote_ip 5.5.5.116 119984 username rajaei 119984 mac 119984 bytes_out 0 119984 bytes_in 0 119984 station_ip 94.24.82.222 119984 port 170 119984 unique_id port 119985 username aminvpn 119985 mac 119985 bytes_out 2114841 119985 bytes_in 39217516 119985 station_ip 83.123.199.190 119985 port 72 119985 unique_id port 119985 remote_ip 10.8.1.6 119989 username aminvpn 119989 mac 119989 bytes_out 65519 119989 bytes_in 151867 119989 station_ip 83.123.199.190 119989 port 72 119989 unique_id port 119989 remote_ip 10.8.1.6 119993 username forozande 119993 mac 119993 bytes_out 1455003 119993 bytes_in 3187686 119993 station_ip 83.123.105.16 119993 port 170 119993 unique_id port 119993 remote_ip 10.8.0.74 119995 username morteza 119995 mac 119995 bytes_out 0 119995 bytes_in 0 119995 station_ip 37.129.57.210 119995 port 170 119995 unique_id port 119995 remote_ip 10.8.0.46 119997 username zare 119997 mac 119997 bytes_out 0 119997 bytes_in 0 119997 station_ip 188.245.91.133 119997 port 179 119997 unique_id port 119997 remote_ip 10.8.0.18 120001 username naeimeh 120001 mac 120001 bytes_out 890193 120001 bytes_in 10281123 120001 station_ip 83.123.147.122 120001 port 178 120001 unique_id port 120001 remote_ip 10.8.0.78 120004 username zare 120004 mac 120004 bytes_out 0 120004 bytes_in 0 120004 station_ip 188.245.91.133 120004 port 169 120004 unique_id port 120004 remote_ip 10.8.0.18 120005 username amir 120005 kill_reason Another user logged on this global unique id 120005 mac 120005 bytes_out 0 120005 bytes_in 0 120005 station_ip 46.225.209.78 120005 port 176 120005 unique_id port 120007 username zare 120007 mac 120007 bytes_out 0 120007 bytes_in 0 120007 station_ip 188.245.91.133 120007 port 169 120007 unique_id port 120007 remote_ip 10.8.0.18 120009 username zare 120009 mac 120009 bytes_out 0 120009 bytes_in 0 120009 station_ip 188.245.91.133 120009 port 169 120009 unique_id port 120009 remote_ip 10.8.0.18 120010 username alihosseini1 120010 mac 120010 bytes_out 499315 120010 bytes_in 3764423 120010 station_ip 5.120.121.131 120010 port 172 120010 unique_id port 120010 remote_ip 10.8.0.166 120015 username ahmadipour 120015 unique_id port 120015 terminate_cause Lost-Carrier 120015 bytes_out 153882 119986 unique_id port 119986 remote_ip 10.8.1.6 119988 username bcboard 119988 unique_id port 119988 terminate_cause User-Request 119988 bytes_out 0 119988 bytes_in 0 119988 station_ip 83.123.228.192 119988 port 15729725 119988 nas_port_type Virtual 119988 remote_ip 5.5.5.126 119991 username amir 119991 kill_reason Another user logged on this global unique id 119991 mac 119991 bytes_out 0 119991 bytes_in 0 119991 station_ip 46.225.209.78 119991 port 176 119991 unique_id port 119992 username musa 119992 kill_reason Another user logged on this global unique id 119992 mac 119992 bytes_out 0 119992 bytes_in 0 119992 station_ip 37.129.73.126 119992 port 148 119992 unique_id port 119992 remote_ip 10.8.0.6 119994 username morteza 119994 mac 119994 bytes_out 0 119994 bytes_in 0 119994 station_ip 37.129.57.210 119994 port 174 119994 unique_id port 119994 remote_ip 10.8.0.46 119998 username zare 119998 mac 119998 bytes_out 0 119998 bytes_in 0 119998 station_ip 188.245.91.133 119998 port 179 119998 unique_id port 119998 remote_ip 10.8.0.18 119999 username houshang 119999 mac 119999 bytes_out 0 119999 bytes_in 0 119999 station_ip 5.120.32.156 119999 port 177 119999 unique_id port 119999 remote_ip 10.8.0.22 120000 username zare 120000 mac 120000 bytes_out 305577 120000 bytes_in 9346880 120000 station_ip 188.245.91.133 120000 port 179 120000 unique_id port 120000 remote_ip 10.8.0.18 120002 username kordestani 120002 mac 120002 bytes_out 533719 120002 bytes_in 6089567 120002 station_ip 151.235.95.141 120002 port 169 120002 unique_id port 120002 remote_ip 10.8.0.134 120006 username zare 120006 mac 120006 bytes_out 0 120006 bytes_in 0 120006 station_ip 188.245.91.133 120006 port 169 120006 unique_id port 120006 remote_ip 10.8.0.18 120008 username zare 120008 mac 120008 bytes_out 0 120008 bytes_in 0 120008 station_ip 188.245.91.133 120008 port 169 120008 unique_id port 120008 remote_ip 10.8.0.18 120011 username zare 120011 mac 120011 bytes_out 0 120011 bytes_in 0 120011 station_ip 188.245.91.133 120011 port 78 120011 unique_id port 120011 remote_ip 10.8.1.58 120012 username zare 120012 kill_reason Maximum check online fails reached 120012 mac 120012 bytes_out 0 120012 bytes_in 0 120012 station_ip 188.245.91.133 120012 port 78 120012 unique_id port 120014 username zare 120014 mac 120014 bytes_out 0 120014 bytes_in 0 120014 station_ip 188.245.91.133 120014 port 79 120014 unique_id port 120014 remote_ip 10.8.1.58 120019 username tahmasebi 120019 mac 120019 bytes_out 13678 120019 bytes_in 16737 120019 station_ip 5.119.132.27 120019 port 174 120019 unique_id port 120019 remote_ip 10.8.0.42 120021 username tahmasebi 120021 mac 120021 bytes_out 40411 120021 bytes_in 75849 120021 station_ip 5.119.132.27 120021 port 170 120021 unique_id port 120021 remote_ip 10.8.0.42 120027 username ahmadi 120027 kill_reason Relative expiration date has reached 120027 unique_id port 120027 bytes_out 0 120027 bytes_in 0 120027 station_ip 83.123.228.20 120027 port 15729727 120027 nas_port_type Virtual 120028 username sedighe 120028 mac 120028 bytes_out 8160 120028 bytes_in 10208 120028 station_ip 83.122.23.29 120028 port 172 120028 unique_id port 120028 remote_ip 10.8.0.146 120029 username zare 120029 mac 120029 bytes_out 0 120029 bytes_in 0 120029 station_ip 188.245.91.133 120029 port 79 120029 unique_id port 120029 remote_ip 10.8.1.58 120035 username zare 120035 mac 120035 bytes_out 0 120035 bytes_in 0 120035 station_ip 188.245.91.133 120015 bytes_in 3403342 120015 station_ip 83.123.123.105 120015 port 15729726 120015 nas_port_type Virtual 120015 remote_ip 5.5.5.214 120017 username morteza 120017 mac 120017 bytes_out 508094 120017 bytes_in 3350818 120017 station_ip 37.129.57.210 120017 port 170 120017 unique_id port 120017 remote_ip 10.8.0.46 120018 username sedighe 120018 mac 120018 bytes_out 9873 120018 bytes_in 15121 120018 station_ip 113.203.21.143 120018 port 172 120018 unique_id port 120018 remote_ip 10.8.0.146 120023 username tahmasebi 120023 mac 120023 bytes_out 61920 120023 bytes_in 92866 120023 station_ip 5.119.132.27 120023 port 137 120023 unique_id port 120023 remote_ip 10.8.0.42 120025 username zare 120025 mac 120025 bytes_out 0 120025 bytes_in 0 120025 station_ip 188.245.91.133 120025 port 79 120025 unique_id port 120025 remote_ip 10.8.1.58 120034 username zare 120034 kill_reason Maximum check online fails reached 120034 mac 120034 bytes_out 0 120034 bytes_in 0 120034 station_ip 188.245.91.133 120034 port 79 120034 unique_id port 120041 username zare 120041 mac 120041 bytes_out 0 120041 bytes_in 0 120041 station_ip 188.245.91.133 120041 port 81 120041 unique_id port 120041 remote_ip 10.8.1.58 120044 username amir 120044 mac 120044 bytes_out 0 120044 bytes_in 0 120044 station_ip 46.225.209.78 120044 port 176 120044 unique_id port 120044 remote_ip 10.8.0.50 120045 username sedighe 120045 mac 120045 bytes_out 130557 120045 bytes_in 551256 120045 station_ip 83.122.80.172 120045 port 174 120045 unique_id port 120045 remote_ip 10.8.0.146 120046 username mansur 120046 kill_reason Another user logged on this global unique id 120046 mac 120046 bytes_out 0 120046 bytes_in 0 120046 station_ip 5.120.6.43 120046 port 177 120046 unique_id port 120049 username aminvpn 120049 mac 120049 bytes_out 0 120049 bytes_in 0 120049 station_ip 46.100.223.138 120049 port 80 120049 unique_id port 120049 remote_ip 10.8.1.6 120052 username aminvpn 120052 mac 120052 bytes_out 0 120052 bytes_in 0 120052 station_ip 83.123.199.190 120052 port 72 120052 unique_id port 120052 remote_ip 10.8.1.6 120056 username aminvpn 120056 mac 120056 bytes_out 0 120056 bytes_in 0 120056 station_ip 46.100.223.138 120056 port 80 120056 unique_id port 120056 remote_ip 10.8.1.6 120059 username aminvpn 120059 mac 120059 bytes_out 0 120059 bytes_in 0 120059 station_ip 83.123.199.190 120059 port 72 120059 unique_id port 120059 remote_ip 10.8.1.6 120060 username aminvpn 120060 mac 120060 bytes_out 0 120060 bytes_in 0 120060 station_ip 46.100.223.138 120060 port 80 120060 unique_id port 120060 remote_ip 10.8.1.6 120066 username aminvpn 120066 mac 120066 bytes_out 0 120066 bytes_in 0 120066 station_ip 46.100.223.138 120066 port 80 120066 unique_id port 120066 remote_ip 10.8.1.6 120071 username aminvpn 120071 mac 120071 bytes_out 0 120071 bytes_in 0 120071 station_ip 46.100.223.138 120071 port 72 120071 unique_id port 120071 remote_ip 10.8.1.6 120078 username kordestani 120078 mac 120078 bytes_out 487470 120078 bytes_in 5266939 120078 station_ip 151.235.127.42 120078 port 178 120078 unique_id port 120078 remote_ip 10.8.0.134 120081 username aminvpn 120081 mac 120081 bytes_out 0 120081 bytes_in 0 120081 station_ip 46.100.223.138 120081 port 72 120081 unique_id port 120081 remote_ip 10.8.1.6 120084 username aminvpn 120084 mac 120084 bytes_out 0 120084 bytes_in 0 120084 station_ip 83.123.199.190 120084 port 81 120022 bytes_in 0 120022 station_ip 5.120.169.128 120022 port 166 120022 unique_id port 120024 username amirabbas 120024 unique_id port 120024 terminate_cause User-Request 120024 bytes_out 19034127 120024 bytes_in 419298917 120024 station_ip 37.27.20.241 120024 port 15729716 120024 nas_port_type Virtual 120024 remote_ip 5.5.5.119 120026 username zare 120026 mac 120026 bytes_out 0 120026 bytes_in 0 120026 station_ip 188.245.91.133 120026 port 79 120026 unique_id port 120026 remote_ip 10.8.1.58 120030 username zare 120030 mac 120030 bytes_out 0 120030 bytes_in 0 120030 station_ip 188.245.91.133 120030 port 174 120030 unique_id port 120030 remote_ip 10.8.0.18 120031 username mansur 120031 kill_reason Another user logged on this global unique id 120031 mac 120031 bytes_out 0 120031 bytes_in 0 120031 station_ip 5.120.6.43 120031 port 177 120031 unique_id port 120031 remote_ip 10.8.0.210 120032 username sedighe 120032 mac 120032 bytes_out 6031 120032 bytes_in 8158 120032 station_ip 83.123.64.108 120032 port 137 120032 unique_id port 120032 remote_ip 10.8.0.146 120033 username zare 120033 mac 120033 bytes_out 0 120033 bytes_in 0 120033 station_ip 188.245.91.133 120033 port 137 120033 unique_id port 120033 remote_ip 10.8.0.18 120036 username sedighe 120036 mac 120036 bytes_out 1845 120036 bytes_in 4264 120036 station_ip 83.123.64.108 120036 port 174 120036 unique_id port 120036 remote_ip 10.8.0.146 120037 username sedighe 120037 mac 120037 bytes_out 0 120037 bytes_in 0 120037 station_ip 83.123.64.108 120037 port 180 120037 unique_id port 120037 remote_ip 10.8.0.146 120047 username zare 120047 mac 120047 bytes_out 0 120047 bytes_in 0 120047 station_ip 188.245.91.133 120047 port 174 120047 unique_id port 120047 remote_ip 10.8.0.18 120050 username aminvpn 120050 mac 120050 bytes_out 0 120050 bytes_in 0 120050 station_ip 83.123.199.190 120050 port 72 120050 unique_id port 120050 remote_ip 10.8.1.6 120054 username zare 120054 mac 120054 bytes_out 0 120054 bytes_in 0 120054 station_ip 188.245.91.133 120054 port 174 120054 unique_id port 120054 remote_ip 10.8.0.18 120057 username aminvpn 120057 mac 120057 bytes_out 0 120057 bytes_in 0 120057 station_ip 83.123.199.190 120057 port 72 120057 unique_id port 120057 remote_ip 10.8.1.6 120061 username aminvpn 120061 mac 120061 bytes_out 0 120061 bytes_in 0 120061 station_ip 83.123.199.190 120061 port 72 120061 unique_id port 120061 remote_ip 10.8.1.6 120063 username malekpoir 120063 kill_reason Another user logged on this global unique id 120063 mac 120063 bytes_out 0 120063 bytes_in 0 120063 station_ip 5.120.66.141 120063 port 71 120063 unique_id port 120064 username aminvpn 120064 mac 120064 bytes_out 0 120064 bytes_in 0 120064 station_ip 83.123.199.190 120064 port 72 120064 unique_id port 120064 remote_ip 10.8.1.6 120067 username aminvpn 120067 mac 120067 bytes_out 0 120067 bytes_in 0 120067 station_ip 83.123.199.190 120067 port 81 120067 unique_id port 120067 remote_ip 10.8.1.6 120069 username zare 120069 mac 120069 bytes_out 0 120069 bytes_in 0 120069 station_ip 188.245.91.133 120069 port 72 120069 unique_id port 120069 remote_ip 10.8.1.58 120072 username aminvpn 120072 mac 120072 bytes_out 0 120072 bytes_in 0 120072 station_ip 83.123.199.190 120072 port 80 120072 unique_id port 120072 remote_ip 10.8.1.6 120075 username alihosseini1 120075 mac 120075 bytes_out 224817 120075 bytes_in 325925 120035 port 179 120035 unique_id port 120035 remote_ip 10.8.0.18 120038 username aminvpn 120038 unique_id port 120038 terminate_cause User-Request 120038 bytes_out 2876951 120038 bytes_in 87692619 120038 station_ip 5.120.103.56 120038 port 15729724 120038 nas_port_type Virtual 120038 remote_ip 5.5.5.105 120039 username mansur 120039 kill_reason Another user logged on this global unique id 120039 mac 120039 bytes_out 0 120039 bytes_in 0 120039 station_ip 5.120.6.43 120039 port 177 120039 unique_id port 120040 username amir 120040 kill_reason Another user logged on this global unique id 120040 mac 120040 bytes_out 0 120040 bytes_in 0 120040 station_ip 46.225.209.78 120040 port 176 120040 unique_id port 120042 username morteza 120042 mac 120042 bytes_out 0 120042 bytes_in 0 120042 station_ip 37.129.93.27 120042 port 80 120042 unique_id port 120042 remote_ip 10.8.1.62 120043 username amir 120043 mac 120043 bytes_out 0 120043 bytes_in 0 120043 station_ip 46.225.209.78 120043 port 176 120043 unique_id port 120048 username aminvpn 120048 mac 120048 bytes_out 0 120048 bytes_in 0 120048 station_ip 83.123.199.190 120048 port 72 120048 unique_id port 120048 remote_ip 10.8.1.6 120051 username aminvpn 120051 mac 120051 bytes_out 0 120051 bytes_in 0 120051 station_ip 46.100.223.138 120051 port 80 120051 unique_id port 120051 remote_ip 10.8.1.6 120053 username aminvpn 120053 mac 120053 bytes_out 0 120053 bytes_in 0 120053 station_ip 46.100.223.138 120053 port 80 120053 unique_id port 120053 remote_ip 10.8.1.6 120055 username aminvpn 120055 mac 120055 bytes_out 0 120055 bytes_in 0 120055 station_ip 83.123.199.190 120055 port 72 120055 unique_id port 120055 remote_ip 10.8.1.6 120058 username aminvpn 120058 mac 120058 bytes_out 0 120058 bytes_in 0 120058 station_ip 46.100.223.138 120058 port 80 120058 unique_id port 120058 remote_ip 10.8.1.6 120062 username aminvpn 120062 mac 120062 bytes_out 0 120062 bytes_in 0 57785 username arman 57785 kill_reason Maximum check online fails reached 57785 mac 5.115.126.49:61818: Unknown host 57785 bytes_out 0 57785 bytes_in 0 57785 station_ip 5.115.126.49:61818 57785 port 1017 57785 unique_id port 57786 username arman 57786 kill_reason Another user logged on this global unique id 57786 mac 5.115.126.49:62247: Unknown host 57786 bytes_out 0 57786 bytes_in 0 57786 station_ip 5.115.126.49:62247 57786 port 1017 57786 unique_id port 57787 username arman 57787 kill_reason Maximum check online fails reached 57787 mac 89.198.225.188:17686: Unknown host 57787 bytes_out 0 57787 bytes_in 0 57787 station_ip 89.198.225.188:17686 57787 port 1017 57787 unique_id port 120062 station_ip 46.100.223.138 120062 port 80 120062 unique_id port 120062 remote_ip 10.8.1.6 120065 username tahmasebi 120065 mac 120065 bytes_out 301481 120065 bytes_in 511340 120065 station_ip 5.119.132.27 120065 port 166 120065 unique_id port 120065 remote_ip 10.8.0.42 120068 username aminvpn 120068 mac 120068 bytes_out 0 120068 bytes_in 0 120068 station_ip 46.100.223.138 120068 port 80 120068 unique_id port 120068 remote_ip 10.8.1.6 120070 username aminvpn 120070 mac 120070 bytes_out 0 120070 bytes_in 0 120070 station_ip 83.123.199.190 120070 port 81 120070 unique_id port 120070 remote_ip 10.8.1.6 120073 username mansur 120073 kill_reason Another user logged on this global unique id 120073 mac 120073 bytes_out 0 120073 bytes_in 0 120073 station_ip 5.120.6.43 120073 port 177 120073 unique_id port 120074 username aminvpn 120074 mac 120074 bytes_out 0 120074 bytes_in 0 120074 station_ip 46.100.223.138 120074 port 72 120074 unique_id port 120074 remote_ip 10.8.1.6 120076 username aminvpn 120076 mac 120076 bytes_out 0 120076 bytes_in 0 120076 station_ip 83.123.199.190 120076 port 81 120076 unique_id port 120076 remote_ip 10.8.1.6 120080 username aminvpn 120080 mac 120080 bytes_out 0 120080 bytes_in 0 120080 station_ip 83.123.199.190 120080 port 81 120080 unique_id port 120080 remote_ip 10.8.1.6 120083 username aminvpn 120083 mac 120083 bytes_out 0 120083 bytes_in 0 120083 station_ip 46.100.223.138 120083 port 72 120083 unique_id port 120083 remote_ip 10.8.1.6 120087 username aminvpn 120087 mac 120087 bytes_out 0 120087 bytes_in 0 120087 station_ip 46.100.223.138 120087 port 72 120087 unique_id port 120087 remote_ip 10.8.1.6 120089 username musa 120089 kill_reason Another user logged on this global unique id 120089 mac 120089 bytes_out 0 120089 bytes_in 0 120089 station_ip 37.129.73.126 120089 port 148 120089 unique_id port 120090 username aminvpn 120090 mac 120090 bytes_out 0 120090 bytes_in 0 120090 station_ip 46.100.223.138 120090 port 72 120090 unique_id port 120090 remote_ip 10.8.1.6 120094 username mansur 120094 kill_reason Another user logged on this global unique id 120094 mac 120094 bytes_out 0 120094 bytes_in 0 120094 station_ip 5.120.6.43 120094 port 177 120094 unique_id port 120100 username aminvpn 120100 mac 120100 bytes_out 0 120100 bytes_in 0 120100 station_ip 83.123.199.190 120100 port 81 120100 unique_id port 120100 remote_ip 10.8.1.6 120106 username aminvpn 120106 mac 120106 bytes_out 0 120106 bytes_in 0 120106 station_ip 83.123.199.190 120106 port 81 120106 unique_id port 120106 remote_ip 10.8.1.6 120117 username aminvpn 120117 mac 120117 bytes_out 0 120117 bytes_in 0 120117 station_ip 46.100.223.138 120117 port 72 120117 unique_id port 120117 remote_ip 10.8.1.6 120121 username forozande 120121 mac 120121 bytes_out 0 120121 bytes_in 0 120121 station_ip 83.122.248.4 120121 port 166 120121 unique_id port 120121 remote_ip 10.8.0.74 120123 username aminvpn 120123 mac 120123 bytes_out 0 120123 bytes_in 0 120123 station_ip 46.100.223.138 120123 port 72 120123 unique_id port 120123 remote_ip 10.8.1.6 120125 username aminvpn 120125 mac 120125 bytes_out 0 120125 bytes_in 0 120125 station_ip 83.123.199.190 120125 port 80 120125 unique_id port 120125 remote_ip 10.8.1.6 120128 username zare 120128 mac 120128 bytes_out 0 120128 bytes_in 0 120128 station_ip 188.245.91.133 120128 port 166 120128 unique_id port 120128 remote_ip 10.8.0.18 120129 username aminvpn 120129 mac 120129 bytes_out 0 120129 bytes_in 0 120129 station_ip 46.100.223.138 120129 port 72 120129 unique_id port 120129 remote_ip 10.8.1.6 120131 username aminvpn 120131 mac 120131 bytes_out 0 120131 bytes_in 0 120131 station_ip 83.123.199.190 120131 port 80 120131 unique_id port 120131 remote_ip 10.8.1.6 120134 username aminvpn 120134 mac 120134 bytes_out 0 120134 bytes_in 0 120134 station_ip 46.100.223.138 120134 port 72 120134 unique_id port 120134 remote_ip 10.8.1.6 120136 username aminvpn 120136 mac 120136 bytes_out 0 120136 bytes_in 0 120136 station_ip 46.100.223.138 120136 port 72 120136 unique_id port 120136 remote_ip 10.8.1.6 120140 username zare 120140 mac 120140 bytes_out 46865 120140 bytes_in 41697 120140 station_ip 188.245.91.133 120140 port 166 120140 unique_id port 120140 remote_ip 10.8.0.18 120075 station_ip 5.120.127.222 120075 port 169 120075 unique_id port 120075 remote_ip 10.8.0.166 120077 username aminvpn 120077 mac 57784 username arman 57784 kill_reason Another user logged on this global unique id 57784 mac 5.115.126.49:61470: Unknown host 57784 bytes_out 0 57784 bytes_in 0 57784 station_ip 5.115.126.49:61470 57784 port 1017 57784 unique_id port 120077 bytes_out 0 120077 bytes_in 0 120077 station_ip 46.100.223.138 120077 port 72 120077 unique_id port 120077 remote_ip 10.8.1.6 120079 username zare 120079 mac 120079 bytes_out 0 120079 bytes_in 0 120079 station_ip 188.245.91.133 120079 port 166 120079 unique_id port 120079 remote_ip 10.8.0.18 120082 username aminvpn 120082 mac 120082 bytes_out 0 120082 bytes_in 0 120082 station_ip 83.123.199.190 120082 port 81 120082 unique_id port 120082 remote_ip 10.8.1.6 120086 username aminvpn 120086 mac 120086 bytes_out 0 120086 bytes_in 0 120086 station_ip 83.123.199.190 120086 port 81 120086 unique_id port 120086 remote_ip 10.8.1.6 120093 username aminvpn 120093 mac 120093 bytes_out 0 120093 bytes_in 0 120093 station_ip 83.123.199.190 120093 port 81 120093 unique_id port 120093 remote_ip 10.8.1.6 120096 username aminvpn 120096 mac 120096 bytes_out 0 120096 bytes_in 0 120096 station_ip 83.123.199.190 120096 port 81 120096 unique_id port 120096 remote_ip 10.8.1.6 120097 username aminvpn 120097 mac 120097 bytes_out 0 120097 bytes_in 0 120097 station_ip 46.100.223.138 120097 port 72 120097 unique_id port 120097 remote_ip 10.8.1.6 120098 username aminvpn 120098 mac 120098 bytes_out 0 120098 bytes_in 0 120098 station_ip 83.123.199.190 120098 port 81 120098 unique_id port 120098 remote_ip 10.8.1.6 120099 username aminvpn 120099 mac 120099 bytes_out 0 120099 bytes_in 0 120099 station_ip 46.100.223.138 120099 port 72 120099 unique_id port 120099 remote_ip 10.8.1.6 120101 username zare 120101 mac 120101 bytes_out 0 120101 bytes_in 0 120101 station_ip 188.245.91.133 120101 port 174 120101 unique_id port 120101 remote_ip 10.8.0.18 120102 username aminvpn 120102 mac 120102 bytes_out 0 120102 bytes_in 0 120102 station_ip 46.100.223.138 120102 port 72 120102 unique_id port 120102 remote_ip 10.8.1.6 120105 username aminvpn 120105 mac 120105 bytes_out 0 120105 bytes_in 0 120105 station_ip 46.100.223.138 120105 port 72 120105 unique_id port 120105 remote_ip 10.8.1.6 120108 username aminvpn 120108 mac 120108 bytes_out 0 120108 bytes_in 0 120108 station_ip 46.100.223.138 120108 port 72 120108 unique_id port 120108 remote_ip 10.8.1.6 120110 username sedighe 120110 mac 120110 bytes_out 171512 120110 bytes_in 421157 120110 station_ip 83.122.80.172 120110 port 176 120110 unique_id port 120110 remote_ip 10.8.0.146 120112 username aminvpn 120112 mac 120112 bytes_out 0 120112 bytes_in 0 120112 station_ip 46.100.223.138 120112 port 72 120112 unique_id port 120112 remote_ip 10.8.1.6 120114 username aminvpn 120114 mac 120114 bytes_out 0 120114 bytes_in 0 120114 station_ip 46.100.223.138 120114 port 72 120114 unique_id port 120114 remote_ip 10.8.1.6 120116 username aminvpn 120116 mac 120116 bytes_out 0 120116 bytes_in 0 120116 station_ip 83.123.199.190 120116 port 81 120116 unique_id port 120116 remote_ip 10.8.1.6 120119 username aminvpn 120119 mac 120119 bytes_out 0 120119 bytes_in 0 120119 station_ip 46.100.223.138 120119 port 72 120119 unique_id port 120119 remote_ip 10.8.1.6 120084 unique_id port 120084 remote_ip 10.8.1.6 120085 username aminvpn 120085 mac 120085 bytes_out 0 120085 bytes_in 0 120085 station_ip 46.100.223.138 120085 port 72 120085 unique_id port 120085 remote_ip 10.8.1.6 120088 username aminvpn 120088 mac 120088 bytes_out 0 120088 bytes_in 0 120088 station_ip 83.123.199.190 120088 port 81 120088 unique_id port 120088 remote_ip 10.8.1.6 120091 username aminvpn 120091 mac 120091 bytes_out 0 120091 bytes_in 0 120091 station_ip 83.123.199.190 120091 port 81 120091 unique_id port 120091 remote_ip 10.8.1.6 120092 username aminvpn 120092 mac 120092 bytes_out 0 120092 bytes_in 0 120092 station_ip 46.100.223.138 120092 port 72 120092 unique_id port 120092 remote_ip 10.8.1.6 120095 username aminvpn 120095 mac 120095 bytes_out 0 120095 bytes_in 0 120095 station_ip 46.100.223.138 120095 port 72 120095 unique_id port 120095 remote_ip 10.8.1.6 120103 username ayobi 120103 kill_reason Another user logged on this global unique id 120103 mac 120103 bytes_out 0 120103 bytes_in 0 120103 station_ip 37.27.21.99 120103 port 172 120103 unique_id port 120103 remote_ip 10.8.0.126 120104 username aminvpn 120104 mac 120104 bytes_out 0 120104 bytes_in 0 120104 station_ip 83.123.199.190 120104 port 81 120104 unique_id port 120104 remote_ip 10.8.1.6 120107 username mohammadmahdi 120107 kill_reason Another user logged on this global unique id 120107 mac 120107 bytes_out 0 120107 bytes_in 0 120107 station_ip 5.120.109.218 120107 port 137 120107 unique_id port 120107 remote_ip 10.8.0.54 120109 username zare 120109 mac 120109 bytes_out 0 120109 bytes_in 0 120109 station_ip 188.245.91.133 120109 port 178 120109 unique_id port 120109 remote_ip 10.8.0.18 120111 username aminvpn 120111 mac 120111 bytes_out 0 120111 bytes_in 0 120111 station_ip 83.123.199.190 120111 port 81 120111 unique_id port 120111 remote_ip 10.8.1.6 120113 username aminvpn 120113 mac 120113 bytes_out 0 120113 bytes_in 0 120113 station_ip 83.123.199.190 120113 port 81 120113 unique_id port 120113 remote_ip 10.8.1.6 120115 username amir 120115 mac 120115 bytes_out 0 120115 bytes_in 0 120115 station_ip 46.225.209.78 120115 port 176 120115 unique_id port 120115 remote_ip 10.8.0.50 120118 username aminvpn 120118 mac 120118 bytes_out 0 120118 bytes_in 0 120118 station_ip 83.123.199.190 120118 port 81 120118 unique_id port 120118 remote_ip 10.8.1.6 120126 username aminvpn 120126 mac 120126 bytes_out 0 120126 bytes_in 0 120126 station_ip 46.100.223.138 120126 port 72 120126 unique_id port 120126 remote_ip 10.8.1.6 120132 username aminvpn 120132 mac 120132 bytes_out 0 120132 bytes_in 0 120132 station_ip 46.100.223.138 120132 port 72 120132 unique_id port 120132 remote_ip 10.8.1.6 120135 username aminvpn 120135 mac 120135 bytes_out 0 120135 bytes_in 0 120135 station_ip 83.123.199.190 120135 port 80 120135 unique_id port 120135 remote_ip 10.8.1.6 120137 username amirabbas 120137 kill_reason Maximum number of concurrent logins reached 120137 unique_id port 120137 bytes_out 0 120137 bytes_in 0 120137 station_ip 37.27.20.241 120137 port 15729730 120137 nas_port_type Virtual 120139 username amirabbas 120139 unique_id port 120139 terminate_cause Lost-Carrier 120139 bytes_out 1302675 120139 bytes_in 14871820 120139 station_ip 37.27.20.241 120139 port 15729728 120139 nas_port_type Virtual 120139 remote_ip 5.5.5.255 120143 username mohammadmahdi 120143 mac 120143 bytes_out 0 120143 bytes_in 0 120143 station_ip 5.120.109.218 120120 username aminvpn 120120 mac 120120 bytes_out 0 120120 bytes_in 0 120120 station_ip 83.123.199.190 120120 port 81 120120 unique_id port 120120 remote_ip 10.8.1.6 120122 username morteza 120122 mac 120122 bytes_out 0 120122 bytes_in 0 120122 station_ip 37.129.93.27 120122 port 80 120122 unique_id port 120122 remote_ip 10.8.1.62 120124 username mansur 120124 kill_reason Another user logged on this global unique id 120124 mac 120124 bytes_out 0 120124 bytes_in 0 120124 station_ip 5.120.6.43 120124 port 177 120124 unique_id port 120127 username aminvpn 120127 mac 120127 bytes_out 0 120127 bytes_in 0 120127 station_ip 83.123.199.190 120127 port 80 120127 unique_id port 120127 remote_ip 10.8.1.6 120130 username alihosseini1 120130 mac 120130 bytes_out 0 120130 bytes_in 0 120130 station_ip 5.120.127.222 120130 port 176 120130 unique_id port 120130 remote_ip 10.8.0.166 120133 username aminvpn 120133 mac 120133 bytes_out 0 120133 bytes_in 0 120133 station_ip 83.123.199.190 120133 port 80 120133 unique_id port 120133 remote_ip 10.8.1.6 120138 username jamali 120138 mac 120138 bytes_out 0 120138 bytes_in 0 120138 station_ip 5.120.158.223 120138 port 160 120138 unique_id port 120141 username mansur 120141 mac 120141 bytes_out 0 120141 bytes_in 0 120141 station_ip 5.120.6.43 120141 port 177 120141 unique_id port 120142 username zare 120142 mac 120142 bytes_out 0 120142 bytes_in 0 120142 station_ip 188.245.91.133 120142 port 166 120142 unique_id port 120142 remote_ip 10.8.0.18 120144 username aminvpn 120144 mac 120144 bytes_out 441865 120144 bytes_in 3720686 120144 station_ip 46.100.223.138 120144 port 176 120144 unique_id port 120144 remote_ip 10.8.0.14 120145 username mansur 120145 mac 120145 bytes_out 0 120145 bytes_in 0 120145 station_ip 5.120.6.43 120145 port 137 120145 unique_id port 120145 remote_ip 10.8.0.210 120149 username amirabbas 120149 unique_id port 120149 terminate_cause Lost-Carrier 120149 bytes_out 158162 120149 bytes_in 2084982 120149 station_ip 37.27.20.241 120149 port 15729729 120149 nas_port_type Virtual 120149 remote_ip 5.5.5.65 120151 username amir 120151 mac 120151 bytes_out 74183 120151 bytes_in 634473 120151 station_ip 46.225.209.78 120151 port 166 120151 unique_id port 120151 remote_ip 10.8.0.50 120154 username sabaghnezhad 120154 mac 120154 bytes_out 95546 120154 bytes_in 163001 120154 station_ip 37.129.43.4 120154 port 174 120154 unique_id port 120154 remote_ip 10.8.0.186 120158 username amirabbas 120158 kill_reason Maximum number of concurrent logins reached 120158 unique_id port 120158 bytes_out 0 120158 bytes_in 0 120158 station_ip 37.27.20.241 120158 port 15729734 120158 nas_port_type Virtual 120162 username amirabbas 120162 kill_reason Maximum number of concurrent logins reached 120162 unique_id port 120162 bytes_out 0 120162 bytes_in 0 120162 station_ip 37.27.20.241 120162 port 15729737 120162 nas_port_type Virtual 120163 username amirabbas 120163 kill_reason Maximum number of concurrent logins reached 120163 unique_id port 120163 bytes_out 0 120163 bytes_in 0 120163 station_ip 37.27.20.241 120163 port 15729738 120163 nas_port_type Virtual 120165 username amirabbas 120165 kill_reason Maximum number of concurrent logins reached 120165 unique_id port 120165 bytes_out 0 120165 bytes_in 0 120165 station_ip 37.27.20.241 120165 port 15729740 120165 nas_port_type Virtual 120167 username musa 120167 mac 120167 bytes_out 0 120167 bytes_in 0 120167 station_ip 37.129.73.126 120167 port 148 120167 unique_id port 120169 username mansur 120143 port 137 120143 unique_id port 120146 username zare 120146 mac 120146 bytes_out 0 120146 bytes_in 0 120146 station_ip 188.245.91.133 120146 port 72 120146 unique_id port 120146 remote_ip 10.8.1.58 120147 username aminvpn 120147 mac 120147 bytes_out 368613 120147 bytes_in 3806743 120147 station_ip 46.100.223.138 120147 port 137 120147 unique_id port 120147 remote_ip 10.8.0.14 120150 username naeimeh 120150 mac 120150 bytes_out 1057404 120150 bytes_in 10480235 120150 station_ip 83.123.114.33 120150 port 160 120150 unique_id port 120150 remote_ip 10.8.0.78 120152 username zare 120152 mac 120152 bytes_out 0 120152 bytes_in 0 120152 station_ip 188.245.91.133 120152 port 176 120152 unique_id port 120152 remote_ip 10.8.0.18 120153 username mahdiyehalizadeh 120153 mac 120153 bytes_out 1219337 120153 bytes_in 17901395 120153 station_ip 83.122.135.152 120153 port 178 120153 unique_id port 120153 remote_ip 10.8.0.82 120155 username aminvpn 120155 mac 120155 bytes_out 0 120155 bytes_in 0 120155 station_ip 46.100.223.138 120155 port 166 120155 unique_id port 120155 remote_ip 10.8.0.14 120159 username mansur 120159 kill_reason Another user logged on this global unique id 120159 mac 120159 bytes_out 0 120159 bytes_in 0 120159 station_ip 5.120.6.43 120159 port 137 120159 unique_id port 120159 remote_ip 10.8.0.210 120160 username amirabbas 120160 kill_reason Maximum number of concurrent logins reached 120160 unique_id port 120160 bytes_out 0 120160 bytes_in 0 120160 station_ip 37.27.20.241 120160 port 15729735 120160 nas_port_type Virtual 120161 username amirabbas 120161 kill_reason Maximum number of concurrent logins reached 120161 unique_id port 120161 bytes_out 0 120161 bytes_in 0 120161 station_ip 37.27.20.241 120161 port 15729736 120161 nas_port_type Virtual 120176 username sabaghnezhad 120176 mac 120176 bytes_out 0 120176 bytes_in 0 120176 station_ip 37.129.43.4 120176 port 72 120176 unique_id port 120176 remote_ip 10.8.1.130 120179 username rasoul56 120179 mac 120179 bytes_out 3695462 120179 bytes_in 36878519 120179 station_ip 83.123.44.132 120179 port 169 120179 unique_id port 120179 remote_ip 10.8.0.174 120180 username aminvpn 120180 unique_id port 120180 terminate_cause User-Request 120180 bytes_out 1393086 120180 bytes_in 28717629 120180 station_ip 151.238.233.120 120180 port 15729733 120180 nas_port_type Virtual 120180 remote_ip 5.5.5.87 120182 username rezaei 120182 mac 120182 bytes_out 0 120182 bytes_in 0 120182 station_ip 5.120.2.14 120182 port 81 120182 unique_id port 120182 remote_ip 10.8.1.150 120183 username sedighe 120183 mac 120183 bytes_out 0 120183 bytes_in 0 120183 station_ip 37.129.5.195 120183 port 177 120183 unique_id port 120183 remote_ip 10.8.0.146 120185 username mohammadjavad 120185 mac 120185 bytes_out 463925 120185 bytes_in 3291264 57864 username arezoo 57864 kill_reason Maximum check online fails reached 57864 mac 5.116.170.198:50632: Unknown host 57864 bytes_out 0 57864 bytes_in 0 57864 station_ip 5.116.170.198:50632 57864 port 1017 57864 unique_id port 120185 station_ip 83.123.162.136 120185 port 148 120185 unique_id port 120185 remote_ip 10.8.0.142 120188 username rezasekonji 120188 mac 120188 bytes_out 47850 120188 bytes_in 553266 120188 station_ip 83.122.218.125 120188 port 148 120188 unique_id port 120188 remote_ip 10.8.0.130 120192 username mosi 120192 mac 120192 bytes_out 82152 120192 bytes_in 346514 120192 station_ip 151.235.96.22 120192 port 148 120192 unique_id port 120192 remote_ip 10.8.0.138 120195 username amir 120195 mac 120148 username aminvpn 120148 mac 120148 bytes_out 0 120148 bytes_in 0 120148 station_ip 46.100.223.138 120148 port 137 120148 unique_id port 120148 remote_ip 10.8.0.14 120156 username alihosseini1 120156 mac 120156 bytes_out 7285 120156 bytes_in 15587 120156 station_ip 5.120.127.222 120156 port 160 120156 unique_id port 120156 remote_ip 10.8.0.166 120157 username musa 120157 kill_reason Another user logged on this global unique id 120157 mac 120157 bytes_out 0 120157 bytes_in 0 120157 station_ip 37.129.73.126 120157 port 148 120157 unique_id port 120164 username amirabbas 120164 kill_reason Maximum number of concurrent logins reached 120164 unique_id port 120164 bytes_out 0 120164 bytes_in 0 120164 station_ip 37.27.20.241 120164 port 15729739 120164 nas_port_type Virtual 120166 username amirabbas 120166 kill_reason Maximum number of concurrent logins reached 120166 unique_id port 120166 bytes_out 0 120166 bytes_in 0 120166 station_ip 37.27.20.241 120166 port 15729741 120166 nas_port_type Virtual 120168 username amirabbas 120168 kill_reason Maximum number of concurrent logins reached 120168 unique_id port 120168 bytes_out 0 120168 bytes_in 0 120168 station_ip 37.27.20.241 120168 port 15729743 120168 nas_port_type Virtual 120170 username amirabbas 120170 unique_id port 120170 terminate_cause Lost-Carrier 120170 bytes_out 5002 120170 bytes_in 4781 120170 station_ip 37.27.20.241 120170 port 15729731 120170 nas_port_type Virtual 120170 remote_ip 5.5.5.82 120172 username mansur 120172 kill_reason Another user logged on this global unique id 120172 mac 120172 bytes_out 0 120172 bytes_in 0 120172 station_ip 5.120.6.43 120172 port 137 120172 unique_id port 120173 username mansur 120173 mac 120173 bytes_out 0 120173 bytes_in 0 120173 station_ip 5.120.6.43 120173 port 137 120173 unique_id port 120174 username abravesh 120174 unique_id port 120174 terminate_cause Lost-Carrier 120174 bytes_out 5549651 120174 bytes_in 158816343 120174 station_ip 5.120.47.182 120174 port 15729718 120174 nas_port_type Virtual 120174 remote_ip 5.5.5.71 120178 username amir 120178 mac 120178 bytes_out 192609 120178 bytes_in 743250 120178 station_ip 46.225.209.78 120178 port 148 120178 unique_id port 120178 remote_ip 10.8.0.50 120181 username alirr 120181 kill_reason Relative expiration date has reached 120181 unique_id port 120181 bytes_out 0 120181 bytes_in 0 120181 station_ip 5.120.151.197 120181 port 15729744 120181 nas_port_type Virtual 120187 username mansur 120187 kill_reason Another user logged on this global unique id 120187 mac 120187 bytes_out 0 120187 bytes_in 0 120187 station_ip 5.120.23.230 120187 port 179 120187 unique_id port 120187 remote_ip 10.8.0.210 120189 username rasoul56 120189 mac 120189 bytes_out 36793 120189 bytes_in 60920 120189 station_ip 83.123.44.132 120189 port 169 120189 unique_id port 120189 remote_ip 10.8.0.174 120190 username amir 120190 mac 120190 bytes_out 17119 120190 bytes_in 15412 120190 station_ip 46.225.209.78 120190 port 174 120190 unique_id port 120190 remote_ip 10.8.0.50 120193 username mansur 120193 kill_reason Another user logged on this global unique id 120193 mac 120193 bytes_out 0 120193 bytes_in 0 120193 station_ip 5.120.23.230 120193 port 179 120193 unique_id port 120197 username sedighe 120197 mac 120197 bytes_out 0 120197 bytes_in 0 120197 station_ip 83.122.85.31 120197 port 180 120197 unique_id port 120197 remote_ip 10.8.0.146 120200 username mansur 120200 mac 120200 bytes_out 0 120200 bytes_in 0 120200 station_ip 5.120.23.230 120200 port 179 120200 unique_id port 120202 username sabaghnezhad 120202 mac 120202 bytes_out 0 120169 kill_reason Another user logged on this global unique id 120169 mac 120169 bytes_out 0 120169 bytes_in 0 120169 station_ip 5.120.6.43 120169 port 137 120169 unique_id port 120171 username amirabbas 120171 unique_id port 120171 terminate_cause Lost-Carrier 120171 bytes_out 834729 120171 bytes_in 15602113 120171 station_ip 37.27.20.241 120171 port 15729732 120171 nas_port_type Virtual 120171 remote_ip 5.5.5.86 120175 username farhad1 120175 kill_reason Another user logged on this global unique id 120175 mac 120175 bytes_out 0 120175 bytes_in 0 120175 station_ip 5.120.125.58 120175 port 166 120175 unique_id port 120175 remote_ip 10.8.0.26 120177 username mirzaei 120177 kill_reason Another user logged on this global unique id 120177 mac 120177 bytes_out 0 120177 bytes_in 0 120177 station_ip 5.120.169.128 120177 port 170 120177 unique_id port 120177 remote_ip 10.8.0.66 120184 username forozande 120184 mac 120184 bytes_out 1574149 120184 bytes_in 12041678 120184 station_ip 83.122.62.121 120184 port 174 120184 unique_id port 120184 remote_ip 10.8.0.74 120186 username hamidsalari 120186 kill_reason Another user logged on this global unique id 120186 mac 120186 bytes_out 0 120186 bytes_in 0 120186 station_ip 5.119.72.47 120186 port 122 120186 unique_id port 120191 username rasoul56 120191 mac 120191 bytes_out 11337 120191 bytes_in 19023 120191 station_ip 83.123.44.132 120191 port 148 120191 unique_id port 120191 remote_ip 10.8.0.174 120194 username rasoul56 120194 mac 120194 bytes_out 0 120194 bytes_in 0 120194 station_ip 83.123.44.132 120194 port 177 57885 username arezoo 57885 kill_reason Maximum check online fails reached 57885 mac 5.237.84.233:53187: Unknown host 57885 bytes_out 0 57885 bytes_in 0 57885 station_ip 5.237.84.233:53187 57885 port 1017 57885 unique_id port 120194 unique_id port 120194 remote_ip 10.8.0.174 120198 username musa 120198 kill_reason Another user logged on this global unique id 120198 mac 120198 bytes_out 0 120198 bytes_in 0 120198 station_ip 83.122.4.40 120198 port 137 120198 unique_id port 120198 remote_ip 10.8.0.6 120199 username mosi 120199 kill_reason Another user logged on this global unique id 120199 mac 120199 bytes_out 0 120199 bytes_in 0 120199 station_ip 151.235.96.22 120199 port 148 120199 unique_id port 120199 remote_ip 10.8.0.138 120203 username ayobi 120203 kill_reason Another user logged on this global unique id 120203 mac 120203 bytes_out 0 120203 bytes_in 0 120203 station_ip 37.27.21.99 120203 port 172 120203 unique_id port 120204 username musa 120204 kill_reason Another user logged on this global unique id 120204 mac 120204 bytes_out 0 120204 bytes_in 0 120204 station_ip 83.122.4.40 120204 port 137 120204 unique_id port 120205 username farhad1 120205 kill_reason Another user logged on this global unique id 120205 mac 120205 bytes_out 0 120205 bytes_in 0 120205 station_ip 5.119.107.74 120205 port 166 120205 unique_id port 120205 remote_ip 10.8.0.26 120207 username zare 120207 mac 120207 bytes_out 0 120207 bytes_in 0 120207 station_ip 188.245.91.133 120207 port 160 120207 unique_id port 120207 remote_ip 10.8.0.18 120209 username amir 120209 mac 120209 bytes_out 0 120209 bytes_in 0 120209 station_ip 46.225.209.78 120209 port 174 120209 unique_id port 120209 remote_ip 10.8.0.50 120210 username zare 120210 mac 120210 bytes_out 0 120210 bytes_in 0 120210 station_ip 188.245.91.133 120210 port 160 120210 unique_id port 120210 remote_ip 10.8.0.18 120212 username zare 120212 mac 120212 bytes_out 0 120212 bytes_in 0 120212 station_ip 188.245.91.133 120212 port 178 120212 unique_id port 120195 bytes_out 0 120195 bytes_in 0 120195 station_ip 46.225.209.78 120195 port 174 120195 unique_id port 120195 remote_ip 10.8.0.50 120196 username farhad1 120196 mac 120196 bytes_out 0 120196 bytes_in 0 120196 station_ip 5.120.125.58 120196 port 166 120196 unique_id port 120201 username sade 120201 unique_id port 120201 terminate_cause User-Request 120201 bytes_out 4126550 120201 bytes_in 78899615 120201 station_ip 5.119.130.86 120201 port 15729745 120201 nas_port_type Virtual 120201 remote_ip 5.5.5.91 120211 username sabaghnezhad 120211 mac 120211 bytes_out 0 120211 bytes_in 0 120211 station_ip 37.129.43.4 120211 port 174 120211 unique_id port 120211 remote_ip 10.8.0.186 120213 username amir 120213 mac 120213 bytes_out 0 120213 bytes_in 0 120213 station_ip 46.225.209.78 120213 port 160 120213 unique_id port 120213 remote_ip 10.8.0.50 120215 username ayobi 120215 kill_reason Another user logged on this global unique id 120215 mac 120215 bytes_out 0 120215 bytes_in 0 120215 station_ip 37.27.21.99 120215 port 172 120215 unique_id port 120216 username mosi 120216 kill_reason Another user logged on this global unique id 120216 mac 120216 bytes_out 0 120216 bytes_in 0 120216 station_ip 151.235.96.22 120216 port 148 120216 unique_id port 120222 username farhad1 120222 kill_reason Another user logged on this global unique id 120222 mac 120222 bytes_out 0 120222 bytes_in 0 120222 station_ip 5.119.107.74 120222 port 166 120222 unique_id port 120223 username ayobi 120223 kill_reason Another user logged on this global unique id 120223 mac 120223 bytes_out 0 120223 bytes_in 0 120223 station_ip 37.27.21.99 120223 port 172 120223 unique_id port 120230 username forozande 120230 mac 120230 bytes_out 1489533 120230 bytes_in 19582771 120230 station_ip 113.203.14.185 120230 port 179 120230 unique_id port 120230 remote_ip 10.8.0.74 120232 username rajaei 120232 mac 120232 bytes_out 0 120232 bytes_in 0 120232 station_ip 89.32.97.176 120232 port 169 120232 unique_id port 120232 remote_ip 10.8.0.34 120236 username ayobi 120236 kill_reason Another user logged on this global unique id 120236 mac 120236 bytes_out 0 120236 bytes_in 0 120236 station_ip 37.27.21.99 120236 port 172 120236 unique_id port 120237 username kordestani 120237 mac 120237 bytes_out 901143 120237 bytes_in 8474531 120237 station_ip 151.235.123.138 120237 port 181 120237 unique_id port 120237 remote_ip 10.8.0.134 120239 username forozande 120239 mac 120239 bytes_out 0 120239 bytes_in 0 120239 station_ip 37.129.165.11 120239 port 160 120239 unique_id port 120239 remote_ip 10.8.0.74 120242 username amir 120242 mac 120242 bytes_out 0 120242 bytes_in 0 120242 station_ip 46.225.209.78 120242 port 160 120242 unique_id port 120242 remote_ip 10.8.0.50 120243 username amir 120243 mac 120243 bytes_out 0 120243 bytes_in 0 120243 station_ip 46.225.209.78 120243 port 160 120243 unique_id port 120243 remote_ip 10.8.0.50 120244 username amir 120244 mac 120244 bytes_out 0 120244 bytes_in 0 120244 station_ip 46.225.209.78 120244 port 160 120244 unique_id port 120244 remote_ip 10.8.0.50 120245 username ayobi 120245 kill_reason Another user logged on this global unique id 120245 mac 120245 bytes_out 0 120245 bytes_in 0 120245 station_ip 37.27.21.99 120245 port 172 120245 unique_id port 120255 username zare 120255 kill_reason Another user logged on this global unique id 120255 mac 120255 bytes_out 0 120255 bytes_in 0 120255 station_ip 188.245.91.133 120255 port 71 120255 unique_id port 120259 username zare 120202 bytes_in 0 120202 station_ip 37.129.43.4 120202 port 178 120202 unique_id port 120202 remote_ip 10.8.0.186 120206 username sabaghnezhad 120206 mac 120206 bytes_out 0 120206 bytes_in 0 120206 station_ip 37.129.43.4 120206 port 178 120206 unique_id port 120206 remote_ip 10.8.0.186 120208 username malekpoir 120208 mac 120208 bytes_out 0 120208 bytes_in 0 120208 station_ip 5.120.66.141 120208 port 71 120208 unique_id port 120214 username zare 120214 kill_reason Maximum check online fails reached 120214 mac 120214 bytes_out 0 120214 bytes_in 0 120214 station_ip 188.245.91.133 120214 port 174 120214 unique_id port 120218 username amir 120218 mac 120218 bytes_out 0 120218 bytes_in 0 120218 station_ip 46.225.209.78 120218 port 160 120218 unique_id port 120218 remote_ip 10.8.0.50 120220 username amir 120220 mac 120220 bytes_out 0 120220 bytes_in 0 120220 station_ip 46.225.209.78 120220 port 160 120220 unique_id port 120220 remote_ip 10.8.0.50 120226 username farhad1 120226 kill_reason Another user logged on this global unique id 120226 mac 120226 bytes_out 0 120226 bytes_in 0 120226 station_ip 5.119.107.74 120226 port 166 120226 unique_id port 120229 username amir 120229 mac 120229 bytes_out 0 120229 bytes_in 0 120229 station_ip 46.225.209.78 120229 port 160 120229 unique_id port 120229 remote_ip 10.8.0.50 120231 username zare 120231 kill_reason Another user logged on this global unique id 120231 mac 120231 bytes_out 0 120231 bytes_in 0 120231 station_ip 188.245.91.133 120231 port 71 120231 unique_id port 120234 username amir 120234 mac 120234 bytes_out 0 120234 bytes_in 0 120234 station_ip 46.225.209.78 120234 port 179 120234 unique_id port 120234 remote_ip 10.8.0.50 120235 username musa 120235 mac 120235 bytes_out 0 120235 bytes_in 0 120235 station_ip 83.122.4.40 120235 port 137 120235 unique_id port 120238 username zare 120238 kill_reason Another user logged on this global unique id 120238 mac 120238 bytes_out 0 120238 bytes_in 0 120238 station_ip 188.245.91.133 120238 port 71 120238 unique_id port 120240 username mahdiyehalizadeh 120240 mac 120240 bytes_out 0 120240 bytes_in 0 120240 station_ip 83.122.135.152 120240 port 177 120240 unique_id port 120246 username mahdiyehalizadeh 120246 mac 120246 bytes_out 0 120246 bytes_in 0 120246 station_ip 83.122.199.179 120246 port 137 120246 unique_id port 120246 remote_ip 10.8.0.82 120247 username mehdizare 120247 mac 120247 bytes_out 34353 120247 bytes_in 53170 120247 station_ip 5.119.27.232 120247 port 169 120247 unique_id port 120247 remote_ip 10.8.0.90 120251 username amir 120251 mac 120251 bytes_out 0 120251 bytes_in 0 120251 station_ip 46.225.209.78 120251 port 169 120251 unique_id port 120251 remote_ip 10.8.0.50 120256 username rezaei 120256 mac 120256 bytes_out 1876119 120256 bytes_in 20346709 120256 station_ip 5.120.2.14 120256 port 82 120256 unique_id port 120256 remote_ip 10.8.1.150 120269 username tahmasebi 120269 kill_reason Another user logged on this global unique id 120269 mac 120269 bytes_out 0 120269 bytes_in 0 120269 station_ip 5.119.21.90 120269 port 175 120269 unique_id port 120269 remote_ip 10.8.0.42 120270 username alipour 120270 kill_reason Another user logged on this global unique id 120270 mac 120270 bytes_out 0 120270 bytes_in 0 120270 station_ip 37.129.93.196 120270 port 157 120270 unique_id port 120273 username aminvpn 120273 mac 120273 bytes_out 0 120273 bytes_in 0 120273 station_ip 5.120.179.135 120273 port 160 120212 remote_ip 10.8.0.18 120217 username alihosseini1 120217 kill_reason Another user logged on this global unique id 120217 mac 120217 bytes_out 0 120217 bytes_in 0 120217 station_ip 5.119.149.183 120217 port 176 120217 unique_id port 120217 remote_ip 10.8.0.166 120219 username sedighe 120219 mac 120219 bytes_out 0 120219 bytes_in 0 120219 station_ip 113.203.1.1 120219 port 160 120219 unique_id port 120219 remote_ip 10.8.0.146 120221 username zare 120221 kill_reason Another user logged on this global unique id 120221 mac 120221 bytes_out 0 120221 bytes_in 0 120221 station_ip 188.245.91.133 120221 port 71 120221 unique_id port 120221 remote_ip 10.8.1.58 120224 username musa 120224 kill_reason Another user logged on this global unique id 120224 mac 120224 bytes_out 0 120224 bytes_in 0 120224 station_ip 83.122.4.40 120224 port 137 120224 unique_id port 120225 username mahdiyehalizadeh 120225 kill_reason Another user logged on this global unique id 120225 mac 120225 bytes_out 0 120225 bytes_in 0 120225 station_ip 83.122.135.152 120225 port 177 120225 unique_id port 120225 remote_ip 10.8.0.82 120227 username mosi 120227 kill_reason Another user logged on this global unique id 120227 mac 120227 bytes_out 0 120227 bytes_in 0 120227 station_ip 151.235.96.22 120227 port 148 120227 unique_id port 120228 username rasoul56 120228 mac 120228 bytes_out 0 120228 bytes_in 0 120228 station_ip 83.123.44.132 120228 port 182 120228 unique_id port 120228 remote_ip 10.8.0.174 120233 username farhad1 120233 kill_reason Another user logged on this global unique id 120233 mac 120233 bytes_out 0 120233 bytes_in 0 120233 station_ip 5.119.107.74 120233 port 166 120233 unique_id port 120241 username mehdizare 120241 mac 120241 bytes_out 0 120241 bytes_in 0 120241 station_ip 5.119.27.232 120241 port 175 120241 unique_id port 120241 remote_ip 10.8.0.90 120248 username rezasekonji 120248 mac 120248 bytes_out 0 120248 bytes_in 0 120248 station_ip 83.122.218.125 120248 port 180 120248 unique_id port 120248 remote_ip 10.8.0.130 120249 username mehdizare 120249 mac 120249 bytes_out 0 120249 bytes_in 0 120249 station_ip 5.119.27.232 120249 port 175 120249 unique_id port 120249 remote_ip 10.8.0.90 120250 username mosi 120250 kill_reason Another user logged on this global unique id 120250 mac 120250 bytes_out 0 120250 bytes_in 0 120250 station_ip 151.235.96.22 120250 port 148 120250 unique_id port 120252 username sade 120252 unique_id port 120252 terminate_cause Lost-Carrier 120252 bytes_out 1759410 120252 bytes_in 56834404 120252 station_ip 5.119.130.86 120252 port 15729747 120252 nas_port_type Virtual 120252 remote_ip 5.5.5.95 120253 username mansur 120253 mac 120253 bytes_out 0 120253 bytes_in 0 120253 station_ip 5.120.23.230 120253 port 160 120253 unique_id port 120253 remote_ip 10.8.0.210 120254 username ayobi 120254 kill_reason Another user logged on this global unique id 120254 mac 120254 bytes_out 0 120254 bytes_in 0 120254 station_ip 37.27.21.99 120254 port 172 120254 unique_id port 120257 username rasoul56 120257 mac 120257 bytes_out 0 120257 bytes_in 0 120257 station_ip 83.123.44.132 120257 port 178 120257 unique_id port 120257 remote_ip 10.8.0.174 120258 username amir 120258 mac 120258 bytes_out 0 120258 bytes_in 0 120258 station_ip 46.225.209.78 120258 port 160 120258 unique_id port 120258 remote_ip 10.8.0.50 120261 username amir 120261 mac 120261 bytes_out 0 120261 bytes_in 0 120261 station_ip 46.225.209.78 120261 port 177 120261 unique_id port 120261 remote_ip 10.8.0.50 120262 username ehsun 120259 kill_reason Another user logged on this global unique id 120259 mac 120259 bytes_out 0 120259 bytes_in 0 120259 station_ip 188.245.91.133 120259 port 71 120259 unique_id port 120260 username amir 120260 mac 120260 bytes_out 0 120260 bytes_in 0 120260 station_ip 46.225.209.78 120260 port 177 120260 unique_id port 120260 remote_ip 10.8.0.50 120265 username farhad1 120265 kill_reason Another user logged on this global unique id 120265 mac 120265 bytes_out 0 120265 bytes_in 0 120265 station_ip 5.119.107.74 120265 port 166 120265 unique_id port 120266 username ehsun 120266 mac 120266 bytes_out 0 120266 bytes_in 0 120266 station_ip 46.225.209.208 120266 port 137 120266 unique_id port 120272 username aminvpn 120272 mac 120272 bytes_out 6681215 120272 bytes_in 37157076 120272 station_ip 83.123.199.190 120272 port 80 120272 unique_id port 120272 remote_ip 10.8.1.6 120278 username farhad1 120278 mac 120278 bytes_out 0 120278 bytes_in 0 120278 station_ip 5.119.12.243 120278 port 137 120278 unique_id port 120278 remote_ip 10.8.0.26 120280 username mirzaei 120280 kill_reason Another user logged on this global unique id 120280 mac 120280 bytes_out 0 120280 bytes_in 0 120280 station_ip 5.120.169.128 120280 port 170 120280 unique_id port 120282 username farhad1 120282 kill_reason Another user logged on this global unique id 120282 mac 120282 bytes_out 0 120282 bytes_in 0 120282 station_ip 5.119.223.43 120282 port 160 120282 unique_id port 120282 remote_ip 10.8.0.26 120285 username mirzaei 120285 kill_reason Another user logged on this global unique id 120285 mac 120285 bytes_out 0 120285 bytes_in 0 120285 station_ip 5.120.169.128 120285 port 170 120285 unique_id port 120291 username mosi 120291 kill_reason Another user logged on this global unique id 120291 mac 120291 bytes_out 0 120291 bytes_in 0 120291 station_ip 151.235.96.22 120291 port 148 120291 unique_id port 120293 username naeimeh 120293 kill_reason Another user logged on this global unique id 120293 mac 120293 bytes_out 0 120293 bytes_in 0 120293 station_ip 83.122.171.74 120293 port 137 120293 unique_id port 120294 username naeimeh 120294 mac 120294 bytes_out 0 120294 bytes_in 0 120294 station_ip 83.122.171.74 120294 port 137 120294 unique_id port 120298 username rasoul56 120298 mac 120298 bytes_out 0 120298 bytes_in 0 120298 station_ip 83.123.26.232 120298 port 169 120298 unique_id port 120299 username mosi 120299 kill_reason Another user logged on this global unique id 120299 mac 120299 bytes_out 0 120299 bytes_in 0 120299 station_ip 151.235.96.22 120299 port 148 120299 unique_id port 120306 username hamidsalari1 120306 mac 120306 bytes_out 0 120306 bytes_in 0 120306 station_ip 83.122.221.208 120306 port 71 120306 unique_id port 120306 remote_ip 10.8.1.170 120309 username hamidsalari1 120309 mac 120309 bytes_out 0 120309 bytes_in 0 120309 station_ip 83.122.140.124 120309 port 71 120309 unique_id port 120309 remote_ip 10.8.1.170 120310 mac 120310 bytes_out 0 120310 bytes_in 0 120310 station_ip 5.119.27.232 120310 port 83 120310 unique_id port 120310 remote_ip 10.8.1.42 120316 username mohammadjavad 120316 mac 120316 bytes_out 797960 120316 bytes_in 12315326 120316 station_ip 37.129.201.137 120316 port 148 120316 unique_id port 120316 remote_ip 10.8.0.142 120319 username alihosseini1 120319 mac 120319 bytes_out 0 120319 bytes_in 0 120319 station_ip 5.120.165.207 120319 port 166 120319 unique_id port 120319 remote_ip 10.8.0.166 120320 username alihosseini1 120320 mac 120320 bytes_out 0 120262 kill_reason Another user logged on this global unique id 120262 mac 120262 bytes_out 0 120262 bytes_in 0 120262 station_ip 46.225.209.208 120262 port 137 120262 unique_id port 120262 remote_ip 10.8.0.162 120263 username amir 120263 mac 120263 bytes_out 0 120263 bytes_in 0 120263 station_ip 46.225.209.78 120263 port 177 120263 unique_id port 120263 remote_ip 10.8.0.50 120264 username mostafa_es78 120264 kill_reason Another user logged on this global unique id 120264 mac 120264 bytes_out 0 120264 bytes_in 0 120264 station_ip 178.236.35.96 120264 port 169 120264 unique_id port 120264 remote_ip 10.8.0.198 120267 username alihosseini1 120267 mac 120267 bytes_out 0 120267 bytes_in 0 120267 station_ip 5.119.149.183 120267 port 176 120267 unique_id port 120268 username ayobi 120268 mac 120268 bytes_out 0 120268 bytes_in 0 120268 station_ip 37.27.21.99 120268 port 172 120268 unique_id port 120271 username mostafa_es78 120271 mac 120271 bytes_out 0 120271 bytes_in 0 120271 station_ip 178.236.35.96 120271 port 169 120271 unique_id port 120276 username farhad1 120276 mac 120276 bytes_out 0 120276 bytes_in 0 120276 station_ip 5.119.107.74 120276 port 166 120276 unique_id port 120283 username hamidsalari1 120283 mac 120283 bytes_out 0 120283 bytes_in 0 120283 station_ip 83.122.221.208 120283 port 162 120283 unique_id port 120284 username arash 120284 mac 120284 bytes_out 0 120284 bytes_in 0 120284 station_ip 37.27.3.116 120284 port 172 120284 unique_id port 120284 remote_ip 10.8.0.114 120286 username arash 120286 mac 120286 bytes_out 0 120286 bytes_in 0 120286 station_ip 37.27.3.116 120286 port 162 120286 unique_id port 120286 remote_ip 10.8.0.114 120288 username sabaghnezhad 120288 mac 120288 bytes_out 0 120288 bytes_in 0 120288 station_ip 37.129.43.4 120288 port 81 120288 unique_id port 120288 remote_ip 10.8.1.130 120300 username alipour 120300 mac 120300 bytes_out 0 120300 bytes_in 0 120300 station_ip 37.129.93.196 120300 port 157 120300 unique_id port 120301 username milan 120301 kill_reason Another user logged on this global unique id 120301 mac 120301 bytes_out 0 120301 bytes_in 0 120301 station_ip 5.120.155.249 120301 port 166 120301 unique_id port 120302 username alipour 120302 mac 120302 bytes_out 0 120302 bytes_in 0 120302 station_ip 37.129.93.196 120302 port 71 120302 unique_id port 120302 remote_ip 10.8.1.50 120305 username hamidsalari1 120305 mac 120305 bytes_out 0 120305 bytes_in 0 120305 station_ip 83.122.221.208 120305 port 71 120305 unique_id port 120305 remote_ip 10.8.1.170 120311 username mehdizare 120311 mac 120311 bytes_out 0 120311 bytes_in 0 120311 station_ip 5.119.27.232 120311 port 71 120311 unique_id port 120311 remote_ip 10.8.1.42 120313 username sedighe 120313 mac 120313 bytes_out 501316 120313 bytes_in 2044497 120313 station_ip 83.123.194.152 120313 port 71 120313 unique_id port 120313 remote_ip 10.8.1.78 120314 username sabaghnezhad 120314 mac 120314 bytes_out 25847 120314 bytes_in 34147 120314 station_ip 83.123.81.231 120314 port 72 120314 unique_id port 120314 remote_ip 10.8.1.130 120317 username alihosseini1 120317 mac 120317 bytes_out 38155 120317 bytes_in 304035 120317 station_ip 5.120.165.207 120317 port 160 120317 unique_id port 120317 remote_ip 10.8.0.166 120323 username alihosseini1 120323 mac 120323 bytes_out 0 120323 bytes_in 0 120323 station_ip 5.120.165.207 120323 port 160 120323 unique_id port 120273 unique_id port 120273 remote_ip 10.8.0.14 120274 username kordestani 120274 mac 120274 bytes_out 1067093 120274 bytes_in 13697350 120274 station_ip 151.235.123.138 120274 port 137 120274 unique_id port 120274 remote_ip 10.8.0.134 120275 username sedighe 120275 mac 120275 bytes_out 434425 120275 bytes_in 1901574 120275 station_ip 113.203.1.1 120275 port 72 120275 unique_id port 120275 remote_ip 10.8.1.78 120277 username sedighe 120277 mac 120277 bytes_out 0 120277 bytes_in 0 120277 station_ip 113.203.1.1 120277 port 80 120277 unique_id port 120277 remote_ip 10.8.1.78 120279 username sedighe 120279 mac 120279 bytes_out 242560 120279 bytes_in 332290 120279 station_ip 83.123.122.15 120279 port 72 120279 unique_id port 120279 remote_ip 10.8.1.78 120281 username sedighe 120281 mac 120281 bytes_out 49494 120281 bytes_in 58966 120281 station_ip 83.123.122.15 120281 port 80 120281 unique_id port 120281 remote_ip 10.8.1.78 120287 username aminvpn 120287 unique_id port 120287 terminate_cause Lost-Carrier 120287 bytes_out 9651788 120287 bytes_in 120025500 120287 station_ip 5.119.58.89 120287 port 15729742 120287 nas_port_type Virtual 120287 remote_ip 5.5.5.89 120289 username naeimeh 120289 kill_reason Another user logged on this global unique id 120289 mac 120289 bytes_out 0 120289 bytes_in 0 120289 station_ip 83.122.171.74 120289 port 137 120289 unique_id port 120289 remote_ip 10.8.0.78 120290 username zare 120290 mac 120290 bytes_out 0 120290 bytes_in 0 120290 station_ip 188.245.91.133 120290 port 71 120290 unique_id port 120292 username milan 120292 kill_reason Another user logged on this global unique id 120292 mac 120292 bytes_out 0 120292 bytes_in 0 120292 station_ip 5.120.155.249 120292 port 166 120292 unique_id port 120292 remote_ip 10.8.0.218 120295 username farhad1 120295 mac 120295 bytes_out 0 120295 bytes_in 0 120295 station_ip 5.119.223.43 120295 port 160 120295 unique_id port 120296 username milan 120296 kill_reason Another user logged on this global unique id 120296 mac 120296 bytes_out 0 120296 bytes_in 0 120296 station_ip 5.120.155.249 120296 port 166 120296 unique_id port 120297 username rasoul56 120297 kill_reason Another user logged on this global unique id 120297 mac 120297 bytes_out 0 120297 bytes_in 0 120297 station_ip 83.123.26.232 120297 port 169 120297 unique_id port 120297 remote_ip 10.8.0.174 120303 username milan 120303 mac 120303 bytes_out 0 120303 bytes_in 0 120303 station_ip 5.120.155.249 120303 port 166 120303 unique_id port 120304 username mosi 120304 mac 120304 bytes_out 0 120304 bytes_in 0 120304 station_ip 151.235.96.22 120304 port 148 120304 unique_id port 120307 username hamidsalari1 120307 mac 120307 bytes_out 0 120307 bytes_in 0 120307 station_ip 83.122.221.208 120307 port 71 120307 unique_id port 120307 remote_ip 10.8.1.170 120308 username hamidsalari1 120308 mac 120308 bytes_out 0 120308 bytes_in 0 120308 station_ip 83.122.140.124 120308 port 71 120308 unique_id port 120308 remote_ip 10.8.1.170 120312 username mehdizare 120312 mac 120312 bytes_out 10958 120312 bytes_in 16353 120312 station_ip 5.119.27.232 120312 port 148 120312 unique_id port 120312 remote_ip 10.8.0.90 120315 username houshang 120315 mac 120315 bytes_out 63574 120315 bytes_in 117441 120315 station_ip 5.120.32.156 120315 port 148 120315 unique_id port 120315 remote_ip 10.8.0.22 120318 username hamid.e 120318 unique_id port 120318 terminate_cause User-Request 120318 bytes_out 788014 120318 bytes_in 11114339 120318 station_ip 188.245.90.113 120318 port 15729749 120318 nas_port_type Virtual 120318 remote_ip 5.5.5.106 120328 username musa 120328 kill_reason Another user logged on this global unique id 120328 mac 120328 bytes_out 0 120328 bytes_in 0 120328 station_ip 83.122.41.160 120328 port 148 120328 unique_id port 120328 remote_ip 10.8.0.6 120330 username alihosseini1 120330 mac 120330 bytes_out 0 120330 bytes_in 0 120330 station_ip 5.120.165.207 120330 port 162 120330 unique_id port 120330 remote_ip 10.8.0.166 120331 username mehdizare 120331 mac 120331 bytes_out 349031 120331 bytes_in 451206 120331 station_ip 5.119.27.232 120331 port 157 120331 unique_id port 120331 remote_ip 10.8.0.90 120332 username morteza 120332 mac 120332 bytes_out 0 120332 bytes_in 0 120332 station_ip 37.129.201.44 120332 port 160 120332 unique_id port 120334 username alihosseini1 120334 kill_reason Another user logged on this global unique id 120334 mac 120334 bytes_out 0 120334 bytes_in 0 120334 station_ip 5.120.165.207 120334 port 71 120334 unique_id port 120334 remote_ip 10.8.1.106 120336 username rasoul56 120336 mac 120336 bytes_out 0 120336 bytes_in 0 120336 station_ip 37.129.176.148 120336 port 166 120336 unique_id port 120336 remote_ip 10.8.0.174 120338 username hamidsalari1 120338 mac 120338 bytes_out 0 120338 bytes_in 0 120338 station_ip 83.122.140.124 120338 port 137 120338 unique_id port 120338 remote_ip 10.8.0.226 120340 username mohammadjavad 120340 mac 120340 bytes_out 0 120340 bytes_in 0 120340 station_ip 83.123.227.68 120340 port 166 120340 unique_id port 120340 remote_ip 10.8.0.142 120345 username alihosseini1 120345 mac 120345 bytes_out 0 120345 bytes_in 0 120345 station_ip 5.120.165.207 120345 port 71 120345 unique_id port 120348 username mehdizare 120348 mac 120348 bytes_out 303799 120348 bytes_in 332847 120348 station_ip 5.119.27.232 120348 port 157 120348 unique_id port 120348 remote_ip 10.8.0.90 120350 username mohammadjavad 120350 mac 120350 bytes_out 0 120350 bytes_in 0 120350 station_ip 113.203.74.39 120350 port 160 120350 unique_id port 120350 remote_ip 10.8.0.142 120353 username mahdiyehalizadeh 120353 mac 120353 bytes_out 0 120353 bytes_in 0 120353 station_ip 37.129.14.76 120353 port 160 120353 unique_id port 120353 remote_ip 10.8.0.82 120355 username forozande 120355 mac 120355 bytes_out 0 120355 bytes_in 0 120355 station_ip 83.122.168.254 120355 port 157 120355 unique_id port 120355 remote_ip 10.8.0.74 120364 username mehdizare 120364 mac 120364 bytes_out 8543 120364 bytes_in 11843 120364 station_ip 5.119.27.232 120364 port 137 120364 unique_id port 120364 remote_ip 10.8.0.90 120366 username mehdizare 120366 mac 120366 bytes_out 0 120366 bytes_in 0 120366 station_ip 5.119.42.227 120366 port 137 120366 unique_id port 120366 remote_ip 10.8.0.90 120368 username mehdizare 120368 mac 120368 bytes_out 0 120368 bytes_in 0 120368 station_ip 5.119.42.227 120368 port 137 120368 unique_id port 120368 remote_ip 10.8.0.90 120371 username forozande 120371 mac 120371 bytes_out 1301724 120371 bytes_in 21262794 120371 station_ip 83.123.220.9 120371 port 137 120371 unique_id port 120371 remote_ip 10.8.0.74 120373 username zare 120373 kill_reason Maximum check online fails reached 120373 mac 120373 bytes_out 0 120373 bytes_in 0 120373 station_ip 94.183.214.14 120373 port 162 120373 unique_id port 120376 username aminvpn 120376 mac 120376 bytes_out 132878 120376 bytes_in 873537 120376 station_ip 31.56.114.22 120320 bytes_in 0 120320 station_ip 5.120.165.207 120320 port 71 120320 unique_id port 120320 remote_ip 10.8.1.106 120321 username sedighe 120321 mac 120321 bytes_out 0 120321 bytes_in 0 120321 station_ip 83.123.194.152 120321 port 160 120321 unique_id port 120321 remote_ip 10.8.0.146 120322 username morteza 120322 kill_reason Another user logged on this global unique id 120322 mac 120322 bytes_out 0 120322 bytes_in 0 120322 station_ip 37.129.201.44 120322 port 162 120322 unique_id port 120322 remote_ip 10.8.0.46 120325 username morteza 120325 mac 120325 bytes_out 0 120325 bytes_in 0 120325 station_ip 37.129.201.44 120325 port 162 120325 unique_id port 120335 username milan 120335 kill_reason Another user logged on this global unique id 120335 mac 120335 bytes_out 0 120335 bytes_in 0 120335 station_ip 5.120.155.249 120335 port 160 120335 unique_id port 120339 username sedighe 120339 mac 120339 bytes_out 116348 120339 bytes_in 156141 120339 station_ip 83.122.5.118 120339 port 162 120339 unique_id port 120339 remote_ip 10.8.0.146 120341 username milan 120341 kill_reason Another user logged on this global unique id 120341 mac 120341 bytes_out 0 120341 bytes_in 0 120341 station_ip 5.120.155.249 120341 port 160 120341 unique_id port 120343 username milan 120343 mac 120343 bytes_out 0 120343 bytes_in 0 120343 station_ip 5.120.155.249 120343 port 160 120343 unique_id port 120349 username hamidsalari1 120349 mac 120349 bytes_out 0 120349 bytes_in 0 120349 station_ip 83.122.140.124 120349 port 137 120349 unique_id port 120349 remote_ip 10.8.0.226 120354 username morteza 120354 mac 120354 bytes_out 0 120354 bytes_in 0 120354 station_ip 37.129.183.244 120354 port 162 120354 unique_id port 120354 remote_ip 10.8.0.46 120357 username forozande 120357 mac 120357 bytes_out 0 120357 bytes_in 0 120357 station_ip 83.122.94.65 120357 port 137 120357 unique_id port 120357 remote_ip 10.8.0.74 120359 username hamidsalari1 120359 mac 120359 bytes_out 0 120359 bytes_in 0 120359 station_ip 83.122.140.124 120359 port 137 120359 unique_id port 120359 remote_ip 10.8.0.226 120360 username hamidsalari1 120360 mac 120360 bytes_out 0 120360 bytes_in 0 120360 station_ip 83.122.140.124 120360 port 71 120360 unique_id port 120360 remote_ip 10.8.1.170 120362 username hamidsalari1 120362 mac 120362 bytes_out 0 120362 bytes_in 0 120362 station_ip 83.122.140.124 120362 port 71 120362 unique_id port 120362 remote_ip 10.8.1.170 120363 username mehdizare 120363 mac 120363 bytes_out 0 120363 bytes_in 0 120363 station_ip 5.119.27.232 120363 port 157 120363 unique_id port 120363 remote_ip 10.8.0.90 120372 username zare 120372 mac 120372 bytes_out 269849 120372 bytes_in 617603 120372 station_ip 94.183.214.14 120372 port 162 120372 unique_id port 120372 remote_ip 10.8.0.18 120374 username zare 120374 mac 120374 bytes_out 0 120374 bytes_in 0 120374 station_ip 94.183.214.14 120374 port 72 120374 unique_id port 120374 remote_ip 10.8.1.58 120375 username sedighe 120375 mac 120375 bytes_out 561203 120375 bytes_in 19999020 120375 station_ip 83.122.205.17 120375 port 137 120375 unique_id port 120375 remote_ip 10.8.0.146 120377 username forozande 120377 mac 120377 bytes_out 1932781 120377 bytes_in 36553146 120377 station_ip 37.129.208.169 120377 port 157 120377 unique_id port 120377 remote_ip 10.8.0.74 120381 username musa 120381 mac 120381 bytes_out 0 120381 bytes_in 0 120381 station_ip 83.122.41.160 120323 remote_ip 10.8.0.166 120324 username sade 120324 unique_id port 120324 terminate_cause Lost-Carrier 120324 bytes_out 297433 120324 bytes_in 357506 120324 station_ip 5.119.28.116 120324 port 15729750 120324 nas_port_type Virtual 120324 remote_ip 5.5.5.146 120326 username mohammadjavad 120326 mac 120326 bytes_out 189669 120326 bytes_in 853284 120326 station_ip 37.129.221.90 120326 port 166 120326 unique_id port 120326 remote_ip 10.8.0.142 120327 username alihosseini1 120327 mac 120327 bytes_out 0 120327 bytes_in 0 120327 station_ip 5.120.165.207 120327 port 162 120327 unique_id port 120327 remote_ip 10.8.0.166 120329 username morteza 120329 kill_reason Another user logged on this global unique id 120329 mac 120329 bytes_out 0 120329 bytes_in 0 120329 station_ip 37.129.201.44 120329 port 160 120329 unique_id port 120329 remote_ip 10.8.0.46 120333 username milan 120333 kill_reason Another user logged on this global unique id 120333 mac 120333 bytes_out 0 120333 bytes_in 0 120333 station_ip 5.120.155.249 120333 port 160 120333 unique_id port 120333 remote_ip 10.8.0.218 120337 username hamidsalari1 120337 mac 120337 bytes_out 0 120337 bytes_in 0 120337 station_ip 83.122.140.124 120337 port 137 120337 unique_id port 120337 remote_ip 10.8.0.226 120342 username alihosseini1 120342 kill_reason Another user logged on this global unique id 120342 mac 120342 bytes_out 0 120342 bytes_in 0 120342 station_ip 5.120.165.207 120342 port 71 120342 unique_id port 120344 username mosi 120344 mac 120344 bytes_out 0 120344 bytes_in 0 120344 station_ip 151.235.96.22 120344 port 162 120344 unique_id port 120344 remote_ip 10.8.0.138 120346 username forozande 120346 mac 120346 bytes_out 0 120346 bytes_in 0 120346 station_ip 37.129.129.153 120346 port 160 120346 unique_id port 120346 remote_ip 10.8.0.74 120347 username aminvpn 120347 unique_id port 120347 terminate_cause Lost-Carrier 120347 bytes_out 2480660 120347 bytes_in 13184340 120347 station_ip 5.119.169.181 120347 port 15729751 120347 nas_port_type Virtual 120347 remote_ip 5.5.5.38 120351 username mehdizare 120351 mac 120351 bytes_out 22922 120351 bytes_in 33248 120351 station_ip 5.119.27.232 120351 port 157 120351 unique_id port 120351 remote_ip 10.8.0.90 120352 username hamidsalari1 120352 mac 120352 bytes_out 54873 120352 bytes_in 69943 120352 station_ip 83.122.140.124 120352 port 162 120352 unique_id port 120352 remote_ip 10.8.0.226 120356 username mehdizare 120356 mac 120356 bytes_out 15448 120356 bytes_in 21226 120356 station_ip 5.119.27.232 120356 port 137 120356 unique_id port 120356 remote_ip 10.8.0.90 120358 username alihosseini1 120358 mac 120358 bytes_out 0 120358 bytes_in 0 120358 station_ip 5.119.101.135 120358 port 71 120358 unique_id port 120358 remote_ip 10.8.1.106 120361 username hamidsalari1 120361 mac 120361 bytes_out 0 120361 bytes_in 0 120361 station_ip 83.122.140.124 120361 port 71 120361 unique_id port 120361 remote_ip 10.8.1.170 120365 username mehdizare 120365 mac 120365 bytes_out 8279 120365 bytes_in 12090 120365 station_ip 5.119.42.227 120365 port 71 120365 unique_id port 120365 remote_ip 10.8.1.42 120367 username zare 120367 mac 120367 bytes_out 0 120367 bytes_in 0 120367 station_ip 94.183.214.14 120367 port 71 120367 unique_id port 120367 remote_ip 10.8.1.58 120369 username forozande 120369 mac 120369 bytes_out 359248 120369 bytes_in 2140190 120369 station_ip 83.123.220.9 120369 port 160 120369 unique_id port 120369 remote_ip 10.8.0.74 120370 username aminvpn 120370 mac 120370 bytes_out 380196 120370 bytes_in 4169255 120370 station_ip 37.129.116.129 120370 port 157 120370 unique_id port 120370 remote_ip 10.8.0.14 120379 username musa 120379 mac 120379 bytes_out 0 120379 bytes_in 0 120379 station_ip 83.122.179.177 120379 port 72 120379 unique_id port 120379 remote_ip 10.8.1.10 120382 username zare 120382 mac 120382 bytes_out 0 120382 bytes_in 0 120382 station_ip 94.183.214.14 120382 port 148 120382 unique_id port 120382 remote_ip 10.8.0.18 120384 username zare 120384 mac 120384 bytes_out 0 120384 bytes_in 0 120384 station_ip 94.183.214.14 120384 port 148 120384 unique_id port 120384 remote_ip 10.8.0.18 120385 username zare 120385 mac 120385 bytes_out 0 120385 bytes_in 0 120385 station_ip 94.183.214.14 120385 port 148 120385 unique_id port 120385 remote_ip 10.8.0.18 120392 username zare 120392 mac 120392 bytes_out 0 120392 bytes_in 0 120392 station_ip 94.183.214.14 120392 port 148 120392 unique_id port 120392 remote_ip 10.8.0.18 120393 username zare 120393 mac 120393 bytes_out 0 120393 bytes_in 0 120393 station_ip 94.183.214.14 120393 port 148 120393 unique_id port 120393 remote_ip 10.8.0.18 120396 username zare 120396 mac 120396 bytes_out 0 120396 bytes_in 0 120396 station_ip 94.183.214.14 120396 port 148 120396 unique_id port 120396 remote_ip 10.8.0.18 120401 username zare 120401 mac 120401 bytes_out 0 120401 bytes_in 0 120401 station_ip 94.183.214.14 120401 port 122 120401 unique_id port 120401 remote_ip 10.8.0.18 120403 username zare 120403 mac 120403 bytes_out 0 120403 bytes_in 0 120403 station_ip 94.183.214.14 120403 port 81 120403 unique_id port 120403 remote_ip 10.8.1.58 120406 username alipour 120406 mac 120406 bytes_out 32870 120406 bytes_in 40221 120406 station_ip 37.129.93.196 120406 port 82 120406 unique_id port 120406 remote_ip 10.8.1.50 120407 username zare 120407 mac 120407 bytes_out 168387 120407 bytes_in 826604 120407 station_ip 94.183.214.14 120407 port 81 120407 unique_id port 120407 remote_ip 10.8.1.58 120410 username zare 120410 mac 120410 bytes_out 0 120410 bytes_in 0 120410 station_ip 94.183.214.14 120410 port 148 120410 unique_id port 120410 remote_ip 10.8.0.18 120412 username zare 120412 mac 120412 bytes_out 0 120412 bytes_in 0 120412 station_ip 94.183.214.14 120412 port 81 120412 unique_id port 120412 remote_ip 10.8.1.58 120417 username zare 120417 kill_reason Maximum check online fails reached 120417 mac 120417 bytes_out 0 120417 bytes_in 0 120417 station_ip 94.183.214.14 120417 port 81 120417 unique_id port 120418 username zare 120418 mac 120418 bytes_out 0 120418 bytes_in 0 120418 station_ip 94.183.214.14 120418 port 122 120418 unique_id port 120418 remote_ip 10.8.0.18 120422 username zare 120422 mac 120422 bytes_out 0 120422 bytes_in 0 120422 station_ip 94.183.214.14 120422 port 122 120422 unique_id port 120422 remote_ip 10.8.0.18 120424 username alihosseini1 120424 mac 120424 bytes_out 1128041 120424 bytes_in 9771364 120424 station_ip 5.120.86.4 120424 port 82 120424 unique_id port 120424 remote_ip 10.8.1.106 120425 username zare 120425 mac 120425 bytes_out 0 120425 bytes_in 0 120425 station_ip 94.183.214.14 120425 port 135 120425 unique_id port 120425 remote_ip 10.8.0.18 120431 username zare 120431 mac 120431 bytes_out 0 120431 bytes_in 0 120431 station_ip 94.183.214.14 120431 port 83 120431 unique_id port 120376 port 166 120376 unique_id port 120376 remote_ip 10.8.0.14 120378 username malekpoir 120378 kill_reason Another user logged on this global unique id 120378 mac 120378 bytes_out 0 120378 bytes_in 0 120378 station_ip 5.120.66.141 120378 port 71 120378 unique_id port 120378 remote_ip 10.8.1.54 120380 username zare 120380 mac 120380 bytes_out 0 120380 bytes_in 0 120380 station_ip 94.183.214.14 120380 port 137 120380 unique_id port 120380 remote_ip 10.8.0.18 120386 username aminvpn 120386 unique_id port 120386 terminate_cause Lost-Carrier 120386 bytes_out 2530702 120386 bytes_in 9393723 120386 station_ip 5.120.56.163 120386 port 15729754 120386 nas_port_type Virtual 120386 remote_ip 5.5.5.45 120388 username zare 120388 mac 120388 bytes_out 0 120388 bytes_in 0 120388 station_ip 94.183.214.14 120388 port 148 120388 unique_id port 120388 remote_ip 10.8.0.18 120389 username zare 120389 mac 120389 bytes_out 0 120389 bytes_in 0 120389 station_ip 94.183.214.14 120389 port 148 120389 unique_id port 120389 remote_ip 10.8.0.18 120390 username zare 120390 mac 120390 bytes_out 0 120390 bytes_in 0 120390 station_ip 94.183.214.14 120390 port 148 120390 unique_id port 120390 remote_ip 10.8.0.18 120391 username zare 120391 mac 120391 bytes_out 0 120391 bytes_in 0 120391 station_ip 94.183.214.14 120391 port 148 120391 unique_id port 120391 remote_ip 10.8.0.18 120395 username zare 120395 mac 120395 bytes_out 0 120395 bytes_in 0 120395 station_ip 94.183.214.14 120395 port 148 120395 unique_id port 120395 remote_ip 10.8.0.18 120398 username hamidsalari 120398 mac 120398 bytes_out 0 120398 bytes_in 0 120398 station_ip 5.119.72.47 120398 port 122 120398 unique_id port 120399 username zare 120399 mac 120399 bytes_out 0 120399 bytes_in 0 120399 station_ip 94.183.214.14 120399 port 148 120399 unique_id port 120399 remote_ip 10.8.0.18 120402 username sedighe 120402 mac 120402 bytes_out 0 120402 bytes_in 0 120402 station_ip 83.122.190.64 120402 port 169 120402 unique_id port 120402 remote_ip 10.8.0.146 120408 username amir 120408 kill_reason Another user logged on this global unique id 120408 mac 120408 bytes_out 0 120408 bytes_in 0 120408 station_ip 46.225.209.152 120408 port 160 120408 unique_id port 120409 username zare 120409 mac 120409 bytes_out 0 120409 bytes_in 0 120409 station_ip 94.183.214.14 120409 port 148 120409 unique_id port 120409 remote_ip 10.8.0.18 120413 username zare 120413 mac 120413 bytes_out 0 120413 bytes_in 0 120413 station_ip 94.183.214.14 120413 port 81 120413 unique_id port 120413 remote_ip 10.8.1.58 120414 username sedighe 120414 mac 120414 bytes_out 0 120414 bytes_in 0 120414 station_ip 37.129.55.224 120414 port 122 120414 unique_id port 120414 remote_ip 10.8.0.146 120416 username zare 120416 mac 120416 bytes_out 0 120416 bytes_in 0 120416 station_ip 94.183.214.14 120416 port 122 120416 unique_id port 120416 remote_ip 10.8.0.18 120420 username zare 120420 mac 120420 bytes_out 0 120420 bytes_in 0 120420 station_ip 94.183.214.14 120420 port 122 120420 unique_id port 120420 remote_ip 10.8.0.18 120421 username zare 120421 mac 120421 bytes_out 0 120421 bytes_in 0 120421 station_ip 94.183.214.14 120421 port 122 120421 unique_id port 120421 remote_ip 10.8.0.18 120428 username amir 120428 kill_reason Another user logged on this global unique id 120428 mac 120428 bytes_out 0 120428 bytes_in 0 120428 station_ip 46.225.209.152 120428 port 160 120381 port 148 120381 unique_id port 120383 username mansur 120383 mac 120383 bytes_out 25197 120383 bytes_in 31249 120383 station_ip 5.119.227.101 120383 port 137 120383 unique_id port 120383 remote_ip 10.8.0.210 120387 username zare 120387 mac 120387 bytes_out 0 120387 bytes_in 0 120387 station_ip 94.183.214.14 120387 port 148 120387 unique_id port 120387 remote_ip 10.8.0.18 120394 username zare 120394 mac 120394 bytes_out 0 120394 bytes_in 0 120394 station_ip 94.183.214.14 120394 port 148 120394 unique_id port 120394 remote_ip 10.8.0.18 120397 username zare 120397 mac 120397 bytes_out 0 120397 bytes_in 0 120397 station_ip 94.183.214.14 120397 port 148 120397 unique_id port 120397 remote_ip 10.8.0.18 120400 username amir 120400 kill_reason Another user logged on this global unique id 120400 mac 120400 bytes_out 0 120400 bytes_in 0 120400 station_ip 46.225.209.152 120400 port 160 120400 unique_id port 120400 remote_ip 10.8.0.50 120404 username malekpoir 120404 kill_reason Another user logged on this global unique id 120404 mac 120404 bytes_out 0 120404 bytes_in 0 120404 station_ip 5.120.66.141 120404 port 71 120404 unique_id port 120405 username alipour 120405 mac 120405 bytes_out 0 120405 bytes_in 0 120405 station_ip 37.129.93.196 120405 port 137 120405 unique_id port 120405 remote_ip 10.8.0.102 120411 username zare 120411 mac 120411 bytes_out 0 120411 bytes_in 0 120411 station_ip 94.183.214.14 120411 port 148 120411 unique_id port 120411 remote_ip 10.8.0.18 120415 username zare 120415 mac 120415 bytes_out 0 120415 bytes_in 0 120415 station_ip 94.183.214.14 120415 port 81 120415 unique_id port 120415 remote_ip 10.8.1.58 120419 username zare 120419 mac 120419 bytes_out 0 120419 bytes_in 0 120419 station_ip 94.183.214.14 120419 port 122 120419 unique_id port 120419 remote_ip 10.8.0.18 120423 username musa 120423 mac 120423 bytes_out 1958256 120423 bytes_in 28782860 120423 station_ip 83.122.247.157 120423 port 72 120423 unique_id port 120423 remote_ip 10.8.1.10 120426 username forozande 120426 mac 120426 bytes_out 0 120426 bytes_in 0 120426 station_ip 83.122.106.250 120426 port 148 120426 unique_id port 120426 remote_ip 10.8.0.74 120427 username zare 120427 mac 120427 bytes_out 0 120427 bytes_in 0 120427 station_ip 94.183.214.14 120427 port 122 120427 unique_id port 120427 remote_ip 10.8.0.18 120435 username zare 120435 mac 120435 bytes_out 0 120435 bytes_in 0 120435 station_ip 94.183.214.14 120435 port 135 120435 unique_id port 120435 remote_ip 10.8.0.18 120436 username zare 120436 mac 120436 bytes_out 0 120436 bytes_in 0 120436 station_ip 94.183.214.14 120436 port 135 120436 unique_id port 120436 remote_ip 10.8.0.18 120444 username forozande 120444 mac 120444 bytes_out 0 120444 bytes_in 0 120444 station_ip 37.129.225.128 120444 port 122 120444 unique_id port 120444 remote_ip 10.8.0.74 120448 username forozande 120448 mac 120448 bytes_out 0 120448 bytes_in 0 120448 station_ip 113.203.95.217 120448 port 122 120448 unique_id port 120448 remote_ip 10.8.0.74 120451 username alipour 120451 kill_reason Another user logged on this global unique id 120451 mac 120451 bytes_out 0 120451 bytes_in 0 120451 station_ip 37.129.93.196 120451 port 137 120451 unique_id port 120451 remote_ip 10.8.0.102 120452 username zare 120452 mac 120452 bytes_out 0 120452 bytes_in 0 120452 station_ip 94.183.214.14 120452 port 122 120452 unique_id port 120428 unique_id port 120429 username sabaghnezhad 120429 mac 120429 bytes_out 262046 120429 bytes_in 376826 120429 station_ip 83.122.252.228 120429 port 80 120429 unique_id port 120429 remote_ip 10.8.1.130 120430 username zare 120430 mac 120430 bytes_out 0 120430 bytes_in 0 120430 station_ip 94.183.214.14 120430 port 83 120430 unique_id port 120430 remote_ip 10.8.1.58 120432 username zare 120432 mac 120432 bytes_out 19447 120432 bytes_in 44508 120432 station_ip 94.183.214.14 120432 port 83 120432 unique_id port 120432 remote_ip 10.8.1.58 120433 username zare 120433 mac 120433 bytes_out 0 120433 bytes_in 0 120433 station_ip 94.183.214.14 120433 port 135 120433 unique_id port 120433 remote_ip 10.8.0.18 120438 username zare 120438 mac 120438 bytes_out 0 120438 bytes_in 0 120438 station_ip 94.183.214.14 120438 port 135 120438 unique_id port 120438 remote_ip 10.8.0.18 120439 username zare 120439 mac 120439 bytes_out 0 120439 bytes_in 0 120439 station_ip 94.183.214.14 120439 port 135 120439 unique_id port 120439 remote_ip 10.8.0.18 120440 username zare 120440 mac 120440 bytes_out 0 120440 bytes_in 0 120440 station_ip 94.183.214.14 120440 port 135 120440 unique_id port 120440 remote_ip 10.8.0.18 120441 username zare 120441 mac 120441 bytes_out 0 120441 bytes_in 0 120441 station_ip 94.183.214.14 58107 username arezoo 58107 kill_reason Maximum check online fails reached 58107 mac 5.237.84.233:49199: Unknown host 58107 bytes_out 0 58107 bytes_in 0 58107 station_ip 5.237.84.233:49199 58107 port 1017 58107 unique_id port 120441 port 135 120441 unique_id port 120441 remote_ip 10.8.0.18 120447 username zare 120447 mac 120447 bytes_out 0 120447 bytes_in 0 120447 station_ip 94.183.214.14 120447 port 84 120447 unique_id port 120447 remote_ip 10.8.1.58 120453 username zare 120453 mac 120453 bytes_out 0 120453 bytes_in 0 120453 station_ip 94.183.214.14 120453 port 135 120453 unique_id port 120453 remote_ip 10.8.0.18 120456 username forozande 120456 mac 120456 bytes_out 0 120456 bytes_in 0 120456 station_ip 83.122.162.236 120456 port 122 120456 unique_id port 120456 remote_ip 10.8.0.74 120461 username zare 120461 mac 120461 bytes_out 0 120461 bytes_in 0 120461 station_ip 94.183.214.14 120461 port 122 120461 unique_id port 120461 remote_ip 10.8.0.18 120462 username zare 120462 mac 120462 bytes_out 0 120462 bytes_in 0 120462 station_ip 94.183.214.14 120462 port 122 120462 unique_id port 120462 remote_ip 10.8.0.18 120465 username zare 120465 mac 120465 bytes_out 0 120465 bytes_in 0 120465 station_ip 94.183.214.14 120465 port 122 120465 unique_id port 120465 remote_ip 10.8.0.18 120476 username malekpoir 120476 kill_reason Another user logged on this global unique id 120476 mac 120476 bytes_out 0 120476 bytes_in 0 120476 station_ip 5.120.66.141 120476 port 71 120476 unique_id port 120478 username forozande 120478 mac 120478 bytes_out 0 120478 bytes_in 0 120478 station_ip 37.129.137.110 120478 port 135 120478 unique_id port 120478 remote_ip 10.8.0.74 120481 username zare 120481 kill_reason Maximum check online fails reached 120481 mac 120481 bytes_out 0 120481 bytes_in 0 120481 station_ip 94.183.214.14 120481 port 72 120481 unique_id port 120483 username musa 120483 kill_reason Another user logged on this global unique id 120483 mac 120483 bytes_out 0 120483 bytes_in 0 120483 station_ip 83.122.247.157 120483 port 82 120483 unique_id port 120486 username zare 120486 mac 120431 remote_ip 10.8.1.58 120434 username hamid.e 120434 unique_id port 120434 terminate_cause User-Request 120434 bytes_out 17615765 120434 bytes_in 270116325 120434 station_ip 188.245.90.113 120434 port 15729753 120434 nas_port_type Virtual 120434 remote_ip 5.5.5.39 120437 username zare 120437 kill_reason Maximum check online fails reached 120437 mac 120437 bytes_out 0 120437 bytes_in 0 120437 station_ip 94.183.214.14 120437 port 83 120437 unique_id port 120442 username zare 120442 mac 120442 bytes_out 16520 120442 bytes_in 39563 120442 station_ip 94.183.214.14 120442 port 135 120442 unique_id port 120442 remote_ip 10.8.0.18 120443 username zare 120443 mac 120443 bytes_out 0 120443 bytes_in 0 120443 station_ip 94.183.214.14 120443 port 135 120443 unique_id port 120443 remote_ip 10.8.0.18 120445 username zare 120445 mac 120445 bytes_out 0 120445 bytes_in 0 120445 station_ip 94.183.214.14 120445 port 84 120445 unique_id port 120445 remote_ip 10.8.1.58 120446 username amir 120446 mac 120446 bytes_out 0 120446 bytes_in 0 120446 station_ip 46.225.209.152 120446 port 160 120446 unique_id port 120449 username zare 120449 mac 120449 bytes_out 0 120449 bytes_in 0 120449 station_ip 94.183.214.14 120449 port 122 120449 unique_id port 120449 remote_ip 10.8.0.18 120450 username zare 120450 mac 120450 bytes_out 0 120450 bytes_in 0 120450 station_ip 94.183.214.14 120450 port 122 120450 unique_id port 120450 remote_ip 10.8.0.18 120457 username zare 120457 mac 120457 bytes_out 0 120457 bytes_in 0 120457 station_ip 94.183.214.14 120457 port 122 120457 unique_id port 120457 remote_ip 10.8.0.18 120463 username zare 120463 mac 120463 bytes_out 0 120463 bytes_in 0 120463 station_ip 94.183.214.14 120463 port 122 120463 unique_id port 120463 remote_ip 10.8.0.18 120467 username zare 120467 mac 120467 bytes_out 0 120467 bytes_in 0 120467 station_ip 94.183.214.14 120467 port 122 120467 unique_id port 120467 remote_ip 10.8.0.18 120469 username alipour 120469 mac 120469 bytes_out 0 120469 bytes_in 0 120469 station_ip 37.129.93.196 120469 port 137 120469 unique_id port 120471 username sabaghnezhad 120471 mac 120471 bytes_out 78207 120471 bytes_in 178852 120471 station_ip 83.122.252.228 120471 port 80 120471 unique_id port 120471 remote_ip 10.8.1.130 120474 username zare 120474 mac 120474 bytes_out 0 120474 bytes_in 0 120474 station_ip 94.183.214.14 120474 port 137 120474 unique_id port 120474 remote_ip 10.8.0.18 120475 username zare 120475 mac 120475 bytes_out 0 120475 bytes_in 0 120475 station_ip 94.183.214.14 120475 port 137 120475 unique_id port 120475 remote_ip 10.8.0.18 120479 username zare 120479 mac 120479 bytes_out 0 120479 bytes_in 0 120479 station_ip 94.183.214.14 58166 username arezoo 58166 kill_reason Another user logged on this global unique id 58166 mac 5.237.84.233:55183: Unknown host 58166 bytes_out 0 58166 bytes_in 0 58166 station_ip 5.237.84.233:55183 58166 port 1017 58166 unique_id port 120479 port 72 120479 unique_id port 120479 remote_ip 10.8.1.58 120482 username zare 120482 mac 120482 bytes_out 0 120482 bytes_in 0 120482 station_ip 94.183.214.14 120482 port 122 120482 unique_id port 120482 remote_ip 10.8.0.18 120485 username zare 120485 mac 120485 bytes_out 0 120485 bytes_in 0 120485 station_ip 94.183.214.14 120485 port 122 120485 unique_id port 120485 remote_ip 10.8.0.18 120506 username forozande 120506 mac 120506 bytes_out 0 120452 remote_ip 10.8.0.18 120454 username amir 120454 mac 120454 bytes_out 0 120454 bytes_in 0 120454 station_ip 46.225.209.152 120454 port 122 120454 unique_id port 120454 remote_ip 10.8.0.50 120455 username zare 120455 mac 120455 bytes_out 0 120455 bytes_in 0 120455 station_ip 94.183.214.14 120455 port 135 120455 unique_id port 120455 remote_ip 10.8.0.18 120458 username zare 120458 mac 120458 bytes_out 0 120458 bytes_in 0 120458 station_ip 94.183.214.14 120458 port 122 120458 unique_id port 120458 remote_ip 10.8.0.18 120459 username zare 120459 mac 120459 bytes_out 0 120459 bytes_in 0 120459 station_ip 94.183.214.14 120459 port 122 120459 unique_id port 120459 remote_ip 10.8.0.18 120460 username zare 120460 mac 120460 bytes_out 0 120460 bytes_in 0 120460 station_ip 94.183.214.14 120460 port 122 120460 unique_id port 120460 remote_ip 10.8.0.18 120464 username zare 120464 mac 120464 bytes_out 0 120464 bytes_in 0 120464 station_ip 94.183.214.14 120464 port 122 120464 unique_id port 120464 remote_ip 10.8.0.18 120466 username musa 120466 kill_reason Another user logged on this global unique id 120466 mac 120466 bytes_out 0 120466 bytes_in 0 120466 station_ip 83.122.247.157 120466 port 82 120466 unique_id port 120466 remote_ip 10.8.1.10 120468 username zare 120468 mac 120468 bytes_out 0 120468 bytes_in 0 120468 station_ip 94.183.214.14 120468 port 122 120468 unique_id port 120468 remote_ip 10.8.0.18 120470 username forozande 120470 mac 120470 bytes_out 0 120470 bytes_in 0 120470 station_ip 83.122.119.43 120470 port 135 120470 unique_id port 120470 remote_ip 10.8.0.74 120472 username zare 120472 mac 120472 bytes_out 0 120472 bytes_in 0 120472 station_ip 94.183.214.14 120472 port 137 120472 unique_id port 120472 remote_ip 10.8.0.18 120473 username alihosseini1 120473 mac 120473 bytes_out 2403446 120473 bytes_in 22537161 120473 station_ip 5.120.86.4 120473 port 72 120473 unique_id port 120473 remote_ip 10.8.1.106 120477 username alipour 120477 mac 120477 bytes_out 0 120477 bytes_in 0 120477 station_ip 37.129.93.196 120477 port 122 120477 unique_id port 120477 remote_ip 10.8.0.102 120480 username zare 120480 mac 120480 bytes_out 0 120480 bytes_in 0 120480 station_ip 94.183.214.14 120480 port 72 120480 unique_id port 120480 remote_ip 10.8.1.58 120484 username zare 120484 mac 120484 bytes_out 0 120484 bytes_in 0 120484 station_ip 94.183.214.14 120484 port 122 120484 unique_id port 120484 remote_ip 10.8.0.18 120489 username sedighe 120489 mac 120489 bytes_out 0 120489 bytes_in 0 120489 station_ip 37.129.55.224 120489 port 148 120489 unique_id port 120489 remote_ip 10.8.0.146 120490 username zare 120490 mac 120490 bytes_out 0 120490 bytes_in 0 120490 station_ip 94.183.214.14 120490 port 135 120490 unique_id port 120490 remote_ip 10.8.0.18 120492 username zare 120492 mac 120492 bytes_out 26958 120492 bytes_in 134458 120492 station_ip 94.183.214.14 120492 port 135 120492 unique_id port 120492 remote_ip 10.8.0.18 120495 username musa 120495 kill_reason Another user logged on this global unique id 120495 mac 120495 bytes_out 0 120495 bytes_in 0 120495 station_ip 83.122.247.157 120495 port 82 120495 unique_id port 120499 username sabaghnezhad 120499 mac 120499 bytes_out 81980 120499 bytes_in 105143 120499 station_ip 83.122.252.228 120499 port 80 120499 unique_id port 120499 remote_ip 10.8.1.130 120500 username musa 120486 bytes_out 0 120486 bytes_in 0 120486 station_ip 94.183.214.14 120486 port 135 120486 unique_id port 120486 remote_ip 10.8.0.18 120487 username zare 120487 mac 120487 bytes_out 0 120487 bytes_in 0 120487 station_ip 94.183.214.14 120487 port 135 120487 unique_id port 120487 remote_ip 10.8.0.18 120488 username zare 120488 mac 120488 bytes_out 0 120488 bytes_in 0 120488 station_ip 94.183.214.14 120488 port 135 120488 unique_id port 120488 remote_ip 10.8.0.18 120491 username forozande 120491 mac 120491 bytes_out 0 120491 bytes_in 0 120491 station_ip 37.129.16.20 120491 port 122 120491 unique_id port 120491 remote_ip 10.8.0.74 120493 username zare 120493 mac 120493 bytes_out 0 120493 bytes_in 0 120493 station_ip 94.183.214.14 120493 port 122 120493 unique_id port 120493 remote_ip 10.8.0.18 120494 username zare 120494 mac 120494 bytes_out 0 120494 bytes_in 0 120494 station_ip 94.183.214.14 120494 port 122 120494 unique_id port 120494 remote_ip 10.8.0.18 120496 username zare 120496 mac 120496 bytes_out 0 120496 bytes_in 0 120496 station_ip 94.183.214.14 120496 port 122 120496 unique_id port 120496 remote_ip 10.8.0.18 120497 username zare 120497 mac 120497 bytes_out 0 120497 bytes_in 0 120497 station_ip 94.183.214.14 120497 port 122 120497 unique_id port 120497 remote_ip 10.8.0.18 120498 username zare 120498 mac 120498 bytes_out 0 120498 bytes_in 0 120498 station_ip 94.183.214.14 120498 port 122 120498 unique_id port 120498 remote_ip 10.8.0.18 120501 username forozande 120501 mac 120501 bytes_out 111306 120501 bytes_in 439437 120501 station_ip 83.123.3.192 120501 port 135 120501 unique_id port 120501 remote_ip 10.8.0.74 120503 username zare 120503 mac 120503 bytes_out 0 120503 bytes_in 0 120503 station_ip 94.183.214.14 120503 port 122 120503 unique_id port 120503 remote_ip 10.8.0.18 120504 username tahmasebi 120504 kill_reason Another user logged on this global unique id 120504 mac 120504 bytes_out 0 120504 bytes_in 0 120504 station_ip 5.119.21.90 120504 port 175 120504 unique_id port 120507 username malekpoir 120507 kill_reason Another user logged on this global unique id 120507 mac 120507 bytes_out 0 120507 bytes_in 0 120507 station_ip 5.120.66.141 120507 port 71 120507 unique_id port 120509 username musa 120509 kill_reason Another user logged on this global unique id 120509 mac 120509 bytes_out 0 120509 bytes_in 0 120509 station_ip 83.122.247.157 120509 port 82 120509 unique_id port 120510 username aminvpn 120510 unique_id port 120510 terminate_cause User-Request 120510 bytes_out 323087 120510 bytes_in 286 120510 station_ip 5.160.115.25 120510 port 15729757 120510 nas_port_type Virtual 120510 remote_ip 5.5.5.84 120516 username musa 120516 mac 120516 bytes_out 0 120516 bytes_in 0 120516 station_ip 83.122.247.157 120516 port 82 120516 unique_id port 120517 username zare 120517 mac 120517 bytes_out 0 120517 bytes_in 0 120517 station_ip 94.183.214.14 120517 port 148 120517 unique_id port 120517 remote_ip 10.8.0.18 120518 username zare 120518 mac 120518 bytes_out 0 120518 bytes_in 0 120518 station_ip 94.183.214.14 120518 port 148 120518 unique_id port 120518 remote_ip 10.8.0.18 120520 username aminvpn 120520 mac 120520 bytes_out 0 120520 bytes_in 0 120520 station_ip 5.119.107.156 120520 port 135 120520 unique_id port 120520 remote_ip 10.8.0.14 120521 username zare 120521 mac 120521 bytes_out 0 120521 bytes_in 0 120521 station_ip 94.183.214.14 120500 kill_reason Another user logged on this global unique id 120500 mac 120500 bytes_out 0 120500 bytes_in 0 120500 station_ip 83.122.247.157 120500 port 82 120500 unique_id port 120502 username sabaghnezhad 120502 mac 120502 bytes_out 0 120502 bytes_in 0 120502 station_ip 83.122.252.228 120502 port 84 120502 unique_id port 120502 remote_ip 10.8.1.130 120505 username zare 120505 mac 120505 bytes_out 0 120505 bytes_in 0 120505 station_ip 94.183.214.14 120505 port 148 120505 unique_id port 120505 remote_ip 10.8.0.18 120508 username aminvpn 120508 unique_id port 120508 terminate_cause User-Request 120508 bytes_out 0 120508 bytes_in 0 120508 station_ip 5.160.115.25 120508 port 15729756 120508 nas_port_type Virtual 120508 remote_ip 5.5.5.83 120511 username tahmasebi 120511 kill_reason Another user logged on this global unique id 120511 mac 120511 bytes_out 0 120511 bytes_in 0 120511 station_ip 5.119.21.90 120511 port 175 120511 unique_id port 120512 username zare 120512 mac 120512 bytes_out 0 120512 bytes_in 0 120512 station_ip 94.183.214.14 120512 port 135 120512 unique_id port 120512 remote_ip 10.8.0.18 120513 username forozande 120513 mac 120513 bytes_out 0 120513 bytes_in 0 120513 station_ip 83.123.126.201 120513 port 148 120513 unique_id port 120513 remote_ip 10.8.0.74 120515 username zare 120515 mac 120515 bytes_out 0 120515 bytes_in 0 120515 station_ip 94.183.214.14 120515 port 135 120515 unique_id port 120515 remote_ip 10.8.0.18 120519 username zare 120519 mac 120519 bytes_out 0 120519 bytes_in 0 120519 station_ip 94.183.214.14 120519 port 148 120519 unique_id port 120519 remote_ip 10.8.0.18 120522 username forozande 120522 mac 120522 bytes_out 0 120522 bytes_in 0 120522 station_ip 37.129.137.113 120522 port 135 120522 unique_id port 120522 remote_ip 10.8.0.74 120525 username malekpoir 120525 kill_reason Another user logged on this global unique id 120525 mac 120525 bytes_out 0 120525 bytes_in 0 120525 station_ip 5.120.66.141 120525 port 71 120525 unique_id port 120526 username aminvpn 120526 mac 120526 bytes_out 0 120526 bytes_in 0 120526 station_ip 5.119.107.156 120526 port 135 120526 unique_id port 120526 remote_ip 10.8.0.14 120528 username mahdiyehalizadeh 120528 mac 120528 bytes_out 0 120528 bytes_in 0 120528 station_ip 37.129.14.76 120528 port 148 120528 unique_id port 120528 remote_ip 10.8.0.82 120533 username tahmasebi 120533 mac 120533 bytes_out 0 120533 bytes_in 0 120533 station_ip 5.119.21.90 120533 port 175 120533 unique_id port 120537 username mansur 120537 mac 120537 bytes_out 0 120537 bytes_in 0 120537 station_ip 5.120.166.192 120537 port 135 120537 unique_id port 120537 remote_ip 10.8.0.210 120539 username alihosseini1 120539 mac 120539 bytes_out 0 120539 bytes_in 0 120539 station_ip 5.120.143.204 120539 port 80 120539 unique_id port 120542 username alihosseini1 120542 mac 120542 bytes_out 0 120542 bytes_in 0 120542 station_ip 5.120.143.204 120542 port 80 120542 unique_id port 120542 remote_ip 10.8.1.106 120546 username alihosseini1 120546 mac 120546 bytes_out 0 120546 bytes_in 0 120546 station_ip 5.120.143.204 120546 port 80 120546 unique_id port 120546 remote_ip 10.8.1.106 120552 username alipour 120552 mac 120552 bytes_out 0 120552 bytes_in 0 120552 station_ip 37.129.93.196 120552 port 148 120552 unique_id port 120552 remote_ip 10.8.0.102 120554 username alipour 120554 mac 120554 bytes_out 0 120554 bytes_in 0 120506 bytes_in 0 120506 station_ip 83.123.251.134 120506 port 135 120506 unique_id port 120506 remote_ip 10.8.0.74 120514 username tahmasebi 120514 kill_reason Another user logged on this global unique id 120514 mac 120514 bytes_out 0 120514 bytes_in 0 120514 station_ip 5.119.21.90 120514 port 175 120514 unique_id port 120527 username alireza 120527 unique_id port 120527 terminate_cause User-Request 120527 bytes_out 114 120527 bytes_in 158 120527 station_ip 5.113.116.194 120527 port 15729759 120527 nas_port_type Virtual 120527 remote_ip 5.5.5.96 120530 username musa 120530 kill_reason Another user logged on this global unique id 120530 mac 120530 bytes_out 0 120530 bytes_in 0 120530 station_ip 83.122.158.13 120530 port 82 120530 unique_id port 120530 remote_ip 10.8.1.10 120531 username aminvpn 120531 mac 120531 bytes_out 0 120531 bytes_in 0 120531 station_ip 5.119.107.156 120531 port 84 120531 unique_id port 120531 remote_ip 10.8.1.6 120532 username tahmasebi 120532 kill_reason Another user logged on this global unique id 120532 mac 120532 bytes_out 0 120532 bytes_in 0 120532 station_ip 5.119.21.90 120532 port 175 120532 unique_id port 120534 username musa 120534 mac 120534 bytes_out 0 120534 bytes_in 0 120534 station_ip 83.122.158.13 120534 port 82 120534 unique_id port 120535 username sabaghnezhad 120535 kill_reason Another user logged on this global unique id 120535 mac 120535 bytes_out 0 120535 bytes_in 0 120535 station_ip 83.122.252.228 120535 port 122 120535 unique_id port 120535 remote_ip 10.8.0.186 120536 username aminvpn 120536 mac 120536 bytes_out 5075 120536 bytes_in 19511 120536 station_ip 5.119.107.156 120536 port 82 120536 unique_id port 120536 remote_ip 10.8.1.6 120540 username forozande 120540 mac 120540 bytes_out 0 120540 bytes_in 0 120540 station_ip 113.203.87.125 120540 port 148 120540 unique_id port 120540 remote_ip 10.8.0.74 120543 username alipour 120543 mac 120543 bytes_out 0 120543 bytes_in 0 120543 station_ip 37.129.93.196 120543 port 137 120543 unique_id port 120543 remote_ip 10.8.0.102 120544 username mosi 120544 kill_reason Another user logged on this global unique id 120544 mac 120544 bytes_out 0 120544 bytes_in 0 120544 station_ip 151.235.76.119 120544 port 166 120544 unique_id port 120544 remote_ip 10.8.0.138 120547 username farhad1 120547 kill_reason Another user logged on this global unique id 120547 mac 120547 bytes_out 0 120547 bytes_in 0 120547 station_ip 5.120.147.33 120547 port 160 120547 unique_id port 120547 remote_ip 10.8.0.26 120550 username farhad1 120550 mac 120550 bytes_out 0 120550 bytes_in 0 120550 station_ip 5.120.147.33 120550 port 160 120550 unique_id port 120555 username alihosseini1 120555 mac 120555 bytes_out 0 120555 bytes_in 0 120555 station_ip 5.120.143.204 120555 port 148 120555 unique_id port 120555 remote_ip 10.8.0.166 120560 username zare 120560 mac 120560 bytes_out 167127 120560 bytes_in 581826 120560 station_ip 94.183.214.14 120560 port 160 120560 unique_id port 120560 remote_ip 10.8.0.18 120562 username zare 120562 mac 120562 bytes_out 0 120562 bytes_in 0 120562 station_ip 94.183.214.14 120562 port 137 120562 unique_id port 120562 remote_ip 10.8.0.18 120563 username zare 120563 mac 120563 bytes_out 0 120563 bytes_in 0 120563 station_ip 94.183.214.14 120563 port 137 120563 unique_id port 120563 remote_ip 10.8.0.18 120564 username zare 120564 mac 120564 bytes_out 0 120564 bytes_in 0 120564 station_ip 94.183.214.14 120564 port 137 120564 unique_id port 120521 port 160 120521 unique_id port 120521 remote_ip 10.8.0.18 120523 username aminvpn 120523 mac 120523 bytes_out 0 120523 bytes_in 0 120523 station_ip 5.119.107.156 120523 port 148 120523 unique_id port 120523 remote_ip 10.8.0.14 120524 username aminvpn 120524 mac 120524 bytes_out 0 120524 bytes_in 0 120524 station_ip 5.119.107.156 120524 port 135 120524 unique_id port 120524 remote_ip 10.8.0.14 120529 username alihosseini1 120529 kill_reason Another user logged on this global unique id 120529 mac 120529 bytes_out 0 120529 bytes_in 0 120529 station_ip 5.120.143.204 120529 port 80 120529 unique_id port 120529 remote_ip 10.8.1.106 120538 username aminvpn 120538 mac 120538 bytes_out 8847 120538 bytes_in 23016 120538 station_ip 5.119.107.156 120538 port 82 120538 unique_id port 120538 remote_ip 10.8.1.6 120541 username alihosseini1 120541 mac 120541 bytes_out 0 120541 bytes_in 0 120541 station_ip 5.120.143.204 120541 port 148 120541 unique_id port 120541 remote_ip 10.8.0.166 120545 username alipour 120545 mac 120545 bytes_out 0 120545 bytes_in 0 120545 station_ip 37.129.93.196 120545 port 148 120545 unique_id port 120545 remote_ip 10.8.0.102 120548 username alipour 120548 mac 120548 bytes_out 23827 120548 bytes_in 34839 120548 station_ip 37.129.93.196 120548 port 169 120548 unique_id port 120548 remote_ip 10.8.0.102 120549 username alipour 120549 mac 120549 bytes_out 0 120549 bytes_in 0 120549 station_ip 37.129.93.196 120549 port 148 120549 unique_id port 120549 remote_ip 10.8.0.102 120551 username alihosseini1 120551 mac 120551 bytes_out 0 120551 bytes_in 0 120551 station_ip 5.120.143.204 120551 port 80 120551 unique_id port 120551 remote_ip 10.8.1.106 120553 username alireza 120553 unique_id port 120553 terminate_cause Lost-Carrier 120553 bytes_out 814747 120553 bytes_in 14060831 120553 station_ip 5.113.116.194 120553 port 15729760 120553 nas_port_type Virtual 120553 remote_ip 5.5.5.98 120557 username aminvpn 120557 unique_id port 120557 terminate_cause User-Request 120557 bytes_out 6804720 120557 bytes_in 165816442 120557 station_ip 5.160.115.25 120557 port 15729761 120557 nas_port_type Virtual 120557 remote_ip 5.5.5.99 120559 username alihosseini1 120559 mac 120559 bytes_out 0 120559 bytes_in 0 120559 station_ip 5.120.143.204 120559 port 82 120559 unique_id port 120559 remote_ip 10.8.1.106 120565 username tahmasebi 120565 kill_reason Another user logged on this global unique id 120565 mac 120565 bytes_out 0 120565 bytes_in 0 120565 station_ip 5.119.21.90 120565 port 135 120565 unique_id port 120565 remote_ip 10.8.0.42 120566 username zare 120566 mac 120566 bytes_out 0 120566 bytes_in 0 120566 station_ip 94.183.214.14 120566 port 137 120566 unique_id port 120566 remote_ip 10.8.0.18 120570 username zare 120570 mac 120570 bytes_out 0 120570 bytes_in 0 120570 station_ip 94.183.214.14 120570 port 160 120570 unique_id port 120570 remote_ip 10.8.0.18 120571 username alihosseini1 120571 mac 120571 bytes_out 0 120571 bytes_in 0 120571 station_ip 5.120.143.204 120571 port 169 120571 unique_id port 120571 remote_ip 10.8.0.166 120572 username mosi 120572 kill_reason Another user logged on this global unique id 120572 mac 120572 bytes_out 0 120572 bytes_in 0 120572 station_ip 151.235.76.119 120572 port 166 120572 unique_id port 120578 username alihosseini1 120578 mac 120578 bytes_out 0 120578 bytes_in 0 120578 station_ip 5.120.143.204 120578 port 84 120578 unique_id port 120578 remote_ip 10.8.1.106 120554 station_ip 37.129.93.196 120554 port 80 120554 unique_id port 120554 remote_ip 10.8.1.50 120556 username mohammadjavad 120556 mac 120556 bytes_out 431514 120556 bytes_in 1849121 120556 station_ip 37.129.12.245 120556 port 137 120556 unique_id port 120556 remote_ip 10.8.0.142 120558 username mosi 120558 kill_reason Another user logged on this global unique id 120558 mac 120558 bytes_out 0 120558 bytes_in 0 120558 station_ip 151.235.76.119 120558 port 166 120558 unique_id port 120561 username zare 120561 mac 120561 bytes_out 0 120561 bytes_in 0 120561 station_ip 94.183.214.14 120561 port 137 120561 unique_id port 120561 remote_ip 10.8.0.18 120568 username zare 120568 mac 120568 bytes_out 0 120568 bytes_in 0 120568 station_ip 94.183.214.14 120568 port 137 120568 unique_id port 120568 remote_ip 10.8.0.18 120574 username mahdiyehalizadeh 120574 mac 120574 bytes_out 587138 120574 bytes_in 10548565 120574 station_ip 83.122.171.236 120574 port 137 120574 unique_id port 120574 remote_ip 10.8.0.82 120575 username zare 120575 mac 120575 bytes_out 0 120575 bytes_in 0 120575 station_ip 94.183.214.14 120575 port 160 120575 unique_id port 120575 remote_ip 10.8.0.18 120580 username zare 120580 mac 120580 bytes_out 0 120580 bytes_in 0 120580 station_ip 94.183.214.14 120580 port 137 120580 unique_id port 120580 remote_ip 10.8.0.18 120582 username zare 120582 mac 120582 bytes_out 0 120582 bytes_in 0 120582 station_ip 94.183.214.14 120582 port 148 120582 unique_id port 120582 remote_ip 10.8.0.18 120589 username mosi 120589 kill_reason Another user logged on this global unique id 120589 mac 120589 bytes_out 0 120589 bytes_in 0 120589 station_ip 151.235.76.119 120589 port 166 120589 unique_id port 120591 username barzegar 120591 mac 120591 bytes_out 133541 120591 bytes_in 528630 120591 station_ip 5.120.112.59 120591 port 148 120591 unique_id port 120591 remote_ip 10.8.0.234 120598 username barzegar 120598 mac 120598 bytes_out 0 120598 bytes_in 0 120598 station_ip 5.120.112.59 120598 port 137 120598 unique_id port 120598 remote_ip 10.8.0.234 120599 username musa 120599 mac 120599 bytes_out 0 120599 bytes_in 0 120599 station_ip 83.123.0.33 120599 port 82 120599 unique_id port 120599 remote_ip 10.8.1.10 120602 username morteza 120602 mac 120602 bytes_out 0 120602 bytes_in 0 120602 station_ip 113.203.75.114 120602 port 169 120602 unique_id port 120602 remote_ip 10.8.0.46 120604 username alihosseini1 120604 mac 120604 bytes_out 0 120604 bytes_in 0 120604 station_ip 5.120.143.204 120604 port 84 120604 unique_id port 120604 remote_ip 10.8.1.106 120608 username sabaghnezhad 120608 mac 120608 bytes_out 0 120608 bytes_in 0 120608 station_ip 83.122.252.228 120608 port 122 120608 unique_id port 120611 username alihosseini1 120611 mac 120611 bytes_out 0 120611 bytes_in 0 120611 station_ip 5.120.143.204 120611 port 85 120611 unique_id port 120611 remote_ip 10.8.1.106 120612 username forozande 120612 mac 120612 bytes_out 2203964 120612 bytes_in 40341856 120612 station_ip 37.129.188.110 120612 port 137 120612 unique_id port 120612 remote_ip 10.8.0.74 120614 username barzegar 120630 bytes_in 0 120614 kill_reason Another user logged on this global unique id 120614 mac 120614 bytes_out 0 120614 bytes_in 0 120614 station_ip 5.120.112.59 120614 port 82 120614 unique_id port 120614 remote_ip 10.8.1.174 120617 username morteza 120617 mac 120617 bytes_out 0 120617 bytes_in 0 120617 station_ip 113.203.75.114 120564 remote_ip 10.8.0.18 120567 username alihosseini1 120567 mac 120567 bytes_out 0 120567 bytes_in 0 120567 station_ip 5.120.143.204 120567 port 82 120567 unique_id port 120567 remote_ip 10.8.1.106 120569 username zare 120569 mac 120569 bytes_out 0 120569 bytes_in 0 120569 station_ip 94.183.214.14 120569 port 137 120569 unique_id port 120569 remote_ip 10.8.0.18 120573 username forozande 120573 mac 120573 bytes_out 0 120573 bytes_in 0 120573 station_ip 37.129.132.190 120573 port 148 120573 unique_id port 120573 remote_ip 10.8.0.74 120576 username zare 120576 mac 120576 bytes_out 0 120576 bytes_in 0 120576 station_ip 94.183.214.14 120576 port 137 120576 unique_id port 120576 remote_ip 10.8.0.18 120577 username zare 120577 mac 120577 bytes_out 0 120577 bytes_in 0 120577 station_ip 94.183.214.14 120577 port 137 120577 unique_id port 120577 remote_ip 10.8.0.18 120579 username zare 120579 mac 120579 bytes_out 0 120579 bytes_in 0 120579 station_ip 94.183.214.14 120579 port 137 120579 unique_id port 120579 remote_ip 10.8.0.18 120583 username zare 120583 mac 120583 bytes_out 0 120583 bytes_in 0 120583 station_ip 94.183.214.14 58261 username arezoo 58261 kill_reason Maximum check online fails reached 58261 mac 5.237.84.233:49209: Unknown host 58261 bytes_out 0 58261 bytes_in 0 58261 station_ip 5.237.84.233:49209 58261 port 1017 58261 unique_id port 120583 port 148 120583 unique_id port 120583 remote_ip 10.8.0.18 120584 username forozande 120584 mac 120584 bytes_out 218088 120584 bytes_in 2706643 120584 station_ip 83.123.74.252 120584 port 137 120584 unique_id port 120584 remote_ip 10.8.0.74 120586 username zare 120586 mac 120586 bytes_out 0 120586 bytes_in 0 120586 station_ip 94.183.214.14 120586 port 137 120586 unique_id port 120586 remote_ip 10.8.0.18 120588 username alihosseini1 120588 mac 120588 bytes_out 0 120588 bytes_in 0 120588 station_ip 5.120.143.204 120588 port 84 120588 unique_id port 120588 remote_ip 10.8.1.106 120595 username mosi 120595 kill_reason Another user logged on this global unique id 120595 mac 120595 bytes_out 0 120595 bytes_in 0 120595 station_ip 151.235.76.119 120595 port 166 120595 unique_id port 120597 username barzegar 120597 mac 120597 bytes_out 1487242 120597 bytes_in 20691331 120597 station_ip 5.120.112.59 120597 port 148 120597 unique_id port 120597 remote_ip 10.8.0.234 120607 username barzegar 120607 mac 120607 bytes_out 272148 120607 bytes_in 1333219 120607 station_ip 5.120.112.59 120607 port 82 120607 unique_id port 120607 remote_ip 10.8.1.174 120609 username farhad1 120609 mac 120609 bytes_out 0 120609 bytes_in 0 120609 station_ip 5.119.114.228 120609 port 160 120609 unique_id port 120609 remote_ip 10.8.0.26 120616 username forozande 120616 mac 120616 bytes_out 0 120616 bytes_in 0 120616 station_ip 83.122.224.162 120616 port 137 120616 unique_id port 120616 remote_ip 10.8.0.74 120622 username sedighe 120622 mac 120622 bytes_out 210742 120622 bytes_in 427998 120622 station_ip 83.122.172.5 120622 port 148 120622 unique_id port 120622 remote_ip 10.8.0.146 120630 username alihosseini1 120630 mac 120630 bytes_out 0 120630 station_ip 5.120.143.204 120630 port 86 120630 unique_id port 120630 remote_ip 10.8.1.106 120632 username morteza 120632 mac 120632 bytes_out 0 120632 bytes_in 0 120632 station_ip 113.203.75.114 120632 port 82 120632 unique_id port 120632 remote_ip 10.8.1.62 120643 username barzegar 120581 username zare 120581 mac 120581 bytes_out 0 120581 bytes_in 0 120581 station_ip 94.183.214.14 120581 port 137 120581 unique_id port 120581 remote_ip 10.8.0.18 120585 username zare 120585 mac 120585 bytes_out 0 120585 bytes_in 0 120585 station_ip 94.183.214.14 120585 port 148 120585 unique_id port 120585 remote_ip 10.8.0.18 120587 username alipour 120587 mac 120587 bytes_out 188179 120587 bytes_in 488235 120587 station_ip 37.129.93.196 120587 port 80 120587 unique_id port 120587 remote_ip 10.8.1.50 120590 username forozande 120590 mac 120590 bytes_out 0 120590 bytes_in 0 120590 station_ip 37.129.211.243 120590 port 160 120590 unique_id port 120590 remote_ip 10.8.0.74 120592 username mosi 120592 kill_reason Another user logged on this global unique id 120592 mac 120592 bytes_out 0 120592 bytes_in 0 120592 station_ip 151.235.76.119 120592 port 166 120592 unique_id port 120593 username alipour 120593 mac 120593 bytes_out 43447 120593 bytes_in 49680 120593 station_ip 37.129.93.196 120593 port 80 120593 unique_id port 120593 remote_ip 10.8.1.50 120594 username alihosseini1 120594 mac 120594 bytes_out 0 120594 bytes_in 0 120594 station_ip 5.120.143.204 120594 port 84 120594 unique_id port 120594 remote_ip 10.8.1.106 120596 username zare 120596 mac 120596 bytes_out 0 120596 bytes_in 0 120596 station_ip 94.183.214.14 120596 port 137 120596 unique_id port 120596 remote_ip 10.8.0.18 120600 username barzegar 120600 mac 120600 bytes_out 5921 120600 bytes_in 8828 120600 station_ip 5.120.112.59 120600 port 84 120600 unique_id port 120600 remote_ip 10.8.1.174 120601 username rasoul56 120601 mac 120601 bytes_out 0 120601 bytes_in 0 120601 station_ip 83.123.14.119 120601 port 160 120601 unique_id port 120601 remote_ip 10.8.0.174 120603 username morteza 120603 mac 120603 bytes_out 0 120603 bytes_in 0 120603 station_ip 113.203.75.114 120603 port 137 120603 unique_id port 120603 remote_ip 10.8.0.46 120605 username hamid.e 120605 unique_id port 120605 terminate_cause User-Request 120605 bytes_out 632668 120605 bytes_in 9739242 120605 station_ip 188.245.90.113 120605 port 15729762 120605 nas_port_type Virtual 120605 remote_ip 5.5.5.255 120606 username morteza 120606 mac 120606 bytes_out 0 120606 bytes_in 0 120606 station_ip 113.203.75.114 120606 port 148 120606 unique_id port 120606 remote_ip 10.8.0.46 120610 username alihosseini1 120610 mac 120610 bytes_out 0 120610 bytes_in 0 120610 station_ip 5.120.143.204 120610 port 169 120610 unique_id port 120610 remote_ip 10.8.0.166 120613 username alihosseini1 120613 mac 120613 bytes_out 0 120613 bytes_in 0 120613 station_ip 5.120.143.204 120613 port 172 120613 unique_id port 120613 remote_ip 10.8.0.166 120615 username mohammadjavad 120615 mac 120615 bytes_out 0 120615 bytes_in 0 120615 station_ip 37.129.79.93 120615 port 169 120615 unique_id port 120615 remote_ip 10.8.0.142 120619 username alihosseini1 120619 mac 120619 bytes_out 0 120619 bytes_in 0 120619 station_ip 5.120.143.204 120619 port 86 120619 unique_id port 120619 remote_ip 10.8.1.106 120624 username alipour 120624 mac 120624 bytes_out 195614 120624 bytes_in 556903 120624 station_ip 37.129.93.196 120624 port 80 120624 unique_id port 120624 remote_ip 10.8.1.50 120625 username morteza 120625 mac 120625 bytes_out 0 120625 bytes_in 0 120625 station_ip 113.203.75.114 120625 port 86 120625 unique_id port 120625 remote_ip 10.8.1.62 120626 username morteza 120617 port 148 120617 unique_id port 120617 remote_ip 10.8.0.46 120618 username morteza 120618 mac 120618 bytes_out 0 120618 bytes_in 0 120618 station_ip 113.203.75.114 120618 port 137 120618 unique_id port 120618 remote_ip 10.8.0.46 120620 username musa 120620 kill_reason Another user logged on this global unique id 120620 mac 120620 bytes_out 0 120620 bytes_in 0 120620 station_ip 83.123.50.89 120620 port 85 120620 unique_id port 120620 remote_ip 10.8.1.10 120621 username morteza 120621 mac 120621 bytes_out 0 120621 bytes_in 0 120621 station_ip 113.203.75.114 120621 port 137 120621 unique_id port 120621 remote_ip 10.8.0.46 120623 username morteza 120623 mac 120623 bytes_out 0 120623 bytes_in 0 120623 station_ip 113.203.75.114 120623 port 137 120623 unique_id port 120623 remote_ip 10.8.0.46 120627 username morteza 120627 mac 120627 bytes_out 0 120627 bytes_in 0 120627 station_ip 113.203.75.114 120627 port 86 120627 unique_id port 120627 remote_ip 10.8.1.62 120634 username morteza 120634 mac 120634 bytes_out 0 120634 bytes_in 0 120634 station_ip 113.203.75.114 120634 port 82 120634 unique_id port 120634 remote_ip 10.8.1.62 120636 username morteza 120636 mac 120636 bytes_out 0 120636 bytes_in 0 120636 station_ip 113.203.75.114 120636 port 82 120636 unique_id port 120636 remote_ip 10.8.1.62 120637 username rasoul56 120637 mac 120637 bytes_out 1033613 120637 bytes_in 14271842 120637 station_ip 83.123.14.119 120637 port 84 120637 unique_id port 120637 remote_ip 10.8.1.138 120639 username tahmasebi 120639 kill_reason Another user logged on this global unique id 120639 mac 120639 bytes_out 0 120639 bytes_in 0 120639 station_ip 5.119.21.90 120639 port 135 120639 unique_id port 120641 username musa 120641 kill_reason Another user logged on this global unique id 120641 mac 120641 bytes_out 0 120641 bytes_in 0 120641 station_ip 83.123.50.89 120641 port 85 120641 unique_id port 120642 username morteza 120642 mac 120642 bytes_out 0 120642 bytes_in 0 120642 station_ip 113.203.75.114 120642 port 82 120642 unique_id port 120642 remote_ip 10.8.1.62 120648 username musa 120648 kill_reason Another user logged on this global unique id 120648 mac 120648 bytes_out 0 120648 bytes_in 0 120648 station_ip 83.123.50.89 120648 port 85 120648 unique_id port 120650 username amir 120650 mac 120650 bytes_out 109234 120650 bytes_in 587552 120650 station_ip 46.225.209.152 120650 port 160 120650 unique_id port 120650 remote_ip 10.8.0.50 120660 username morteza 120660 mac 120660 bytes_out 0 120660 bytes_in 0 120660 station_ip 113.203.75.114 120660 port 82 120660 unique_id port 120660 remote_ip 10.8.1.62 120667 username morteza 120667 mac 120667 bytes_out 0 120667 bytes_in 0 120667 station_ip 113.203.75.114 120667 port 169 120667 unique_id port 120667 remote_ip 10.8.0.46 120670 username barzegar 120670 mac 120670 bytes_out 0 120670 bytes_in 0 120670 station_ip 5.120.40.46 120670 port 172 120670 unique_id port 120670 remote_ip 10.8.0.234 120673 username hamidsalari 120673 kill_reason Another user logged on this global unique id 120673 mac 120673 bytes_out 0 120673 bytes_in 0 120673 station_ip 5.120.69.80 120673 port 157 120673 unique_id port 120678 username morteza 120678 mac 120678 bytes_out 0 120678 bytes_in 0 120678 station_ip 113.203.75.114 120678 port 84 120678 unique_id port 120678 remote_ip 10.8.1.62 120683 username amir 120683 mac 120683 bytes_out 60246 120683 bytes_in 470590 120683 station_ip 46.225.209.152 120626 kill_reason Maximum check online fails reached 120626 mac 120626 bytes_out 0 120626 bytes_in 0 120626 station_ip 113.203.75.114 120626 port 80 120626 unique_id port 120628 username morteza 120628 mac 120628 bytes_out 0 120628 bytes_in 0 120628 station_ip 113.203.75.114 120628 port 148 120628 unique_id port 120628 remote_ip 10.8.0.46 120629 username barzegar 120629 mac 120629 bytes_out 0 120629 bytes_in 0 120629 station_ip 5.120.112.59 120629 port 82 120629 unique_id port 120631 username amir 120631 mac 120631 bytes_out 1317165 120631 bytes_in 6245832 120631 station_ip 46.225.209.152 120631 port 160 120631 unique_id port 120631 remote_ip 10.8.0.50 120633 username morteza 120633 mac 120633 bytes_out 0 120633 bytes_in 0 120633 station_ip 113.203.75.114 120633 port 169 120633 unique_id port 120633 remote_ip 10.8.0.46 120635 username morteza 120635 mac 120635 bytes_out 0 120635 bytes_in 0 120635 station_ip 113.203.75.114 120635 port 82 120635 unique_id port 120635 remote_ip 10.8.1.62 120638 username alihosseini1 120638 mac 120638 bytes_out 0 120638 bytes_in 0 120638 station_ip 5.120.143.204 120638 port 160 120638 unique_id port 120638 remote_ip 10.8.0.166 120640 username barzegar 120640 mac 120640 bytes_out 0 120640 bytes_in 0 120640 station_ip 5.120.40.46 120640 port 148 120640 unique_id port 120640 remote_ip 10.8.0.234 120646 username ayobi 120646 mac 120646 bytes_out 1822813 120646 bytes_in 32217214 120646 station_ip 37.27.27.208 120646 port 172 120646 unique_id port 120646 remote_ip 10.8.0.126 120649 username kordestani 120649 mac 120649 bytes_out 0 120649 bytes_in 0 120649 station_ip 83.122.231.21 120649 port 169 120649 unique_id port 120649 remote_ip 10.8.0.134 120651 username Mahin 120651 mac 120651 bytes_out 1083970 120651 bytes_in 7607789 120651 station_ip 5.119.151.200 120651 port 122 120651 unique_id port 120651 remote_ip 10.8.0.222 120652 username barzegar 120652 mac 120652 bytes_out 6511 120652 bytes_in 16663 120652 station_ip 5.120.40.46 120652 port 82 120652 unique_id port 120652 remote_ip 10.8.1.174 120654 username mosi 120654 mac 120654 bytes_out 0 120654 bytes_in 0 120654 station_ip 151.235.76.119 120654 port 166 120654 unique_id port 120658 username hamidsalari1 120658 mac 120658 bytes_out 0 120658 bytes_in 0 120658 station_ip 83.122.221.55 120658 port 148 120658 unique_id port 120658 remote_ip 10.8.0.226 120659 username aminvpn 120659 mac 120659 bytes_out 0 120659 bytes_in 0 120659 station_ip 5.120.23.92 120659 port 166 120659 unique_id port 120659 remote_ip 10.8.0.14 120662 username amir 120662 mac 120662 bytes_out 0 120662 bytes_in 0 120662 station_ip 46.225.209.152 120662 port 148 120662 unique_id port 120662 remote_ip 10.8.0.50 120663 username sedighe 120663 mac 120663 bytes_out 904390 120663 bytes_in 12174607 120663 station_ip 83.122.146.88 120663 port 169 120663 unique_id port 120663 remote_ip 10.8.0.146 120671 username mahdiyehalizadeh 120671 mac 120671 bytes_out 924533 120671 bytes_in 18725711 120671 station_ip 83.122.241.68 120671 port 179 120671 unique_id port 120671 remote_ip 10.8.0.82 120675 username aminvpn 120675 mac 120675 bytes_out 102383 120675 bytes_in 597566 120675 station_ip 5.120.23.92 120675 port 82 120675 unique_id port 120675 remote_ip 10.8.1.6 120685 username mansur 120685 mac 120685 bytes_out 414204 120685 bytes_in 5146145 120685 station_ip 5.120.116.10 120685 port 175 120643 mac 120643 bytes_out 0 120643 bytes_in 0 120643 station_ip 5.120.40.46 120643 port 148 120643 unique_id port 120643 remote_ip 10.8.0.234 120644 username morteza 120644 mac 120644 bytes_out 0 120644 bytes_in 0 120644 station_ip 113.203.75.114 120644 port 179 120644 unique_id port 120644 remote_ip 10.8.0.46 120645 username mohammadmahdi 120645 mac 120645 bytes_out 0 120645 bytes_in 0 120645 station_ip 5.120.15.22 120645 port 175 120645 unique_id port 120645 remote_ip 10.8.0.54 120647 username morteza 120647 mac 120647 bytes_out 0 120647 bytes_in 0 120647 station_ip 113.203.75.114 120647 port 172 120647 unique_id port 120647 remote_ip 10.8.0.46 120653 username amirabbas 120653 unique_id port 120653 terminate_cause User-Request 120653 bytes_out 10571787 120653 bytes_in 297736029 120653 station_ip 37.27.19.135 120653 port 15729763 120653 nas_port_type Virtual 120653 remote_ip 5.5.5.37 120655 username hamidsalari 120655 kill_reason Another user logged on this global unique id 120655 mac 120655 bytes_out 0 120655 bytes_in 0 120655 station_ip 5.120.69.80 120655 port 157 120655 unique_id port 120655 remote_ip 10.8.0.230 120656 username tahmasebi 120656 kill_reason Another user logged on this global unique id 120656 mac 120656 bytes_out 0 120656 bytes_in 0 120656 station_ip 5.119.21.90 120656 port 135 120656 unique_id port 120657 username amin.saeedi 120657 unique_id port 120657 terminate_cause User-Request 120657 bytes_out 6117710 120657 bytes_in 202682225 120657 station_ip 31.56.155.237 120657 port 15729765 120657 nas_port_type Virtual 120657 remote_ip 5.5.5.49 120661 username morteza 120661 mac 120661 bytes_out 0 120661 bytes_in 0 120661 station_ip 113.203.75.114 120661 port 84 120661 unique_id port 120661 remote_ip 10.8.1.62 120664 username aminvpn 120664 mac 120664 bytes_out 0 120664 bytes_in 0 120664 station_ip 5.120.23.92 120664 port 82 120664 unique_id port 120664 remote_ip 10.8.1.6 120665 username morteza 120665 mac 120665 bytes_out 0 120665 bytes_in 0 120665 station_ip 113.203.75.114 120665 port 166 120665 unique_id port 120665 remote_ip 10.8.0.46 120666 username aminvpn 120666 mac 120666 bytes_out 0 120666 bytes_in 0 120666 station_ip 5.120.23.92 120666 port 82 120666 unique_id port 120666 remote_ip 10.8.1.6 120668 username morteza 120668 mac 120668 bytes_out 0 120668 bytes_in 0 120668 station_ip 113.203.75.114 120668 port 82 120668 unique_id port 120668 remote_ip 10.8.1.62 120669 username forozande 120669 mac 120669 bytes_out 2247724 120669 bytes_in 31365268 120669 station_ip 83.123.98.34 120669 port 177 120669 unique_id port 120669 remote_ip 10.8.0.74 120672 username tahmasebi 120672 kill_reason Another user logged on this global unique id 120672 mac 120672 bytes_out 0 120672 bytes_in 0 120672 station_ip 5.119.21.90 120672 port 135 120672 unique_id port 120674 username mohammadmahdi 120674 mac 120674 bytes_out 3780176 120674 bytes_in 38132595 120674 station_ip 5.119.220.234 120674 port 175 120674 unique_id port 120674 remote_ip 10.8.0.54 120676 username musa 120676 kill_reason Another user logged on this global unique id 120676 mac 120676 bytes_out 0 120676 bytes_in 0 120676 station_ip 83.123.50.89 120676 port 85 120676 unique_id port 120677 username sedighe 120677 mac 120677 bytes_out 438000 120677 bytes_in 4308699 120677 station_ip 83.123.252.59 120677 port 148 120677 unique_id port 120677 remote_ip 10.8.0.146 120679 username aminvpn 120679 mac 120679 bytes_out 33250 120679 bytes_in 125304 120679 station_ip 5.120.23.92 120679 port 82 120679 unique_id port 120679 remote_ip 10.8.1.6 120680 username morteza 120680 mac 120680 bytes_out 0 120680 bytes_in 0 120680 station_ip 113.203.75.114 120680 port 86 120680 unique_id port 120680 remote_ip 10.8.1.62 120681 username morteza 120681 mac 120681 bytes_out 0 120681 bytes_in 0 120681 station_ip 113.203.75.114 120681 port 86 120681 unique_id port 120681 remote_ip 10.8.1.62 120682 username barzegar 120682 mac 120682 bytes_out 89640 120682 bytes_in 1138605 120682 station_ip 5.120.40.46 120682 port 82 120682 unique_id port 120682 remote_ip 10.8.1.174 120684 username tahmasebi 120684 kill_reason Another user logged on this global unique id 120684 mac 120684 bytes_out 0 120684 bytes_in 0 120684 station_ip 5.119.21.90 120684 port 135 120684 unique_id port 120686 username barzegar 120686 mac 120686 bytes_out 0 120686 bytes_in 0 120686 station_ip 5.120.40.46 120686 port 82 120686 unique_id port 120686 remote_ip 10.8.1.174 120688 username mansur 120688 mac 120688 bytes_out 0 120688 bytes_in 0 120688 station_ip 5.120.116.10 120688 port 175 120688 unique_id port 120688 remote_ip 10.8.0.210 120689 username musa 120689 kill_reason Another user logged on this global unique id 120689 mac 120689 bytes_out 0 120689 bytes_in 0 120689 station_ip 83.123.50.89 120689 port 85 120689 unique_id port 120690 username mostafa_es78 120690 unique_id port 120690 terminate_cause Lost-Carrier 120690 bytes_out 11507071 120690 bytes_in 286481867 120690 station_ip 5.126.226.234 120690 port 15729764 120690 nas_port_type Virtual 120690 remote_ip 5.5.5.41 120694 username morteza 120694 mac 120694 bytes_out 0 120694 bytes_in 0 120694 station_ip 113.203.75.114 120694 port 71 120694 unique_id port 120694 remote_ip 10.8.1.62 120698 username sedighe 120698 mac 120698 bytes_out 2283701 120698 bytes_in 33068963 120698 station_ip 83.123.252.59 120698 port 172 120698 unique_id port 120698 remote_ip 10.8.0.146 120705 username barzegar 120705 mac 120705 bytes_out 0 120705 bytes_in 0 120705 station_ip 5.120.40.46 120705 port 71 120705 unique_id port 120705 remote_ip 10.8.1.174 120710 username barzegar 120710 mac 120710 bytes_out 0 120710 bytes_in 0 120710 station_ip 5.120.40.46 120710 port 82 120710 unique_id port 120710 remote_ip 10.8.1.174 120712 username tahmasebi 120712 kill_reason Another user logged on this global unique id 120712 mac 120712 bytes_out 0 120712 bytes_in 0 120712 station_ip 5.119.21.90 120712 port 135 120712 unique_id port 120713 username amir 120713 mac 120713 bytes_out 94066 120713 bytes_in 398513 120713 station_ip 46.225.209.152 120713 port 166 120713 unique_id port 120713 remote_ip 10.8.0.50 120716 username kordestani 120716 mac 120716 bytes_out 847846 120716 bytes_in 6867782 120716 station_ip 37.129.246.159 120716 port 122 120716 unique_id port 120716 remote_ip 10.8.0.134 120718 username alihosseini1 120718 mac 120718 bytes_out 0 120718 bytes_in 0 120718 station_ip 5.120.102.220 120718 port 178 120718 unique_id port 120722 username barzegar 120722 mac 120722 bytes_out 0 120722 bytes_in 0 120722 station_ip 5.120.40.46 120722 port 82 120722 unique_id port 120722 remote_ip 10.8.1.174 120723 username musa 120733 station_ip 5.119.21.90 120723 kill_reason Another user logged on this global unique id 120723 mac 120723 bytes_out 0 120723 bytes_in 0 120723 station_ip 83.123.50.89 120723 port 85 120723 unique_id port 120726 username tahmasebi 120726 kill_reason Another user logged on this global unique id 120726 mac 120726 bytes_out 0 120726 bytes_in 0 120683 port 177 120683 unique_id port 120683 remote_ip 10.8.0.50 120693 username aminvpn 120693 mac 120693 bytes_out 0 120693 bytes_in 0 120693 station_ip 5.120.23.92 120693 port 84 120693 unique_id port 120693 remote_ip 10.8.1.6 120696 username ayobi 120696 kill_reason Another user logged on this global unique id 120696 mac 120696 bytes_out 0 120696 bytes_in 0 120696 station_ip 37.27.21.99 120696 port 148 120696 unique_id port 120696 remote_ip 10.8.0.126 120697 username alihosseini1 120697 kill_reason Another user logged on this global unique id 120697 mac 120697 bytes_out 0 120697 bytes_in 0 120697 station_ip 5.120.102.220 120697 port 178 120697 unique_id port 120697 remote_ip 10.8.0.166 120701 username aminvpn 120701 mac 120701 bytes_out 226869 120701 bytes_in 1404420 120701 station_ip 5.120.23.92 120701 port 82 120701 unique_id port 120701 remote_ip 10.8.1.6 120702 username musa 120702 kill_reason Another user logged on this global unique id 120702 mac 120702 bytes_out 0 120702 bytes_in 0 120702 station_ip 83.123.50.89 120702 port 85 120702 unique_id port 120703 username tahmasebi 120703 kill_reason Another user logged on this global unique id 120703 mac 120703 bytes_out 0 120703 bytes_in 0 120703 station_ip 5.119.21.90 120703 port 135 120703 unique_id port 120704 username aminvpn 120704 mac 120704 bytes_out 28994 120704 bytes_in 34607 120704 station_ip 5.120.23.92 120704 port 71 120704 unique_id port 120704 remote_ip 10.8.1.6 120707 username mostafa_es78 120707 unique_id port 120707 terminate_cause User-Request 120707 bytes_out 54852 120707 bytes_in 159538 120707 station_ip 5.126.227.37 120707 port 15729768 120707 nas_port_type Virtual 120707 remote_ip 5.5.5.59 120708 username hamidsalari1 120708 mac 120708 bytes_out 0 120708 bytes_in 0 120708 station_ip 83.122.221.55 120708 port 166 120708 unique_id port 120708 remote_ip 10.8.0.226 120714 username zare 120714 mac 120714 bytes_out 0 120714 bytes_in 0 120714 station_ip 94.183.214.14 120714 port 166 120714 unique_id port 120714 remote_ip 10.8.0.18 120715 username ayobi 120715 mac 120715 bytes_out 0 120715 bytes_in 0 120715 station_ip 37.27.21.99 120715 port 148 120715 unique_id port 120720 username amir 120720 mac 120720 bytes_out 0 120720 bytes_in 0 120720 station_ip 46.225.209.152 120720 port 148 120720 unique_id port 120720 remote_ip 10.8.0.50 120721 username barzegar 120721 kill_reason Maximum check online fails reached 120721 mac 120721 bytes_out 0 120721 bytes_in 0 120721 station_ip 5.120.40.46 120721 port 166 120721 unique_id port 120724 username barzegar 120724 mac 120724 bytes_out 0 120724 bytes_in 0 120724 station_ip 5.120.40.46 120724 port 82 120724 unique_id port 120724 remote_ip 10.8.1.174 120730 username mirzaei 120730 kill_reason Another user logged on this global unique id 120730 mac 120730 bytes_out 0 120730 bytes_in 0 120730 station_ip 5.120.169.128 120730 port 170 120730 unique_id port 120731 username musa 120731 kill_reason Another user logged on this global unique id 120731 mac 120731 bytes_out 0 120731 bytes_in 0 120731 station_ip 83.123.50.89 120731 port 85 120731 unique_id port 120733 username tahmasebi 120733 kill_reason Another user logged on this global unique id 120733 mac 120733 bytes_out 0 120733 bytes_in 0 120733 port 135 120733 unique_id port 120737 username seyedmostafa 120737 mac 120737 bytes_out 0 120737 bytes_in 0 120737 station_ip 5.120.120.10 120737 port 122 120737 unique_id port 120738 username barzegar 120738 mac 120738 bytes_out 0 120685 unique_id port 120685 remote_ip 10.8.0.210 120687 username amin.saeedi 120687 unique_id port 120687 terminate_cause User-Request 120687 bytes_out 4413714 120687 bytes_in 128589522 120687 station_ip 31.56.155.237 120687 port 15729766 120687 nas_port_type Virtual 120687 remote_ip 5.5.5.50 120691 username malekpoir 120691 mac 120691 bytes_out 0 120691 bytes_in 0 120691 station_ip 5.120.66.141 120691 port 71 120691 unique_id port 120692 username morteza 120692 mac 120692 bytes_out 2115884 120692 bytes_in 31499523 120692 station_ip 113.203.75.114 120692 port 86 120692 unique_id port 120692 remote_ip 10.8.1.62 120695 username tahmasebi 120695 kill_reason Another user logged on this global unique id 120695 mac 120695 bytes_out 0 120695 bytes_in 0 120695 station_ip 5.119.21.90 120695 port 135 120695 unique_id port 120699 username amir 120699 mac 120699 bytes_out 0 120699 bytes_in 0 120699 station_ip 46.225.209.152 120699 port 179 120699 unique_id port 120699 remote_ip 10.8.0.50 120700 username barzegar 120700 mac 120700 bytes_out 0 120700 bytes_in 0 120700 station_ip 5.120.40.46 120700 port 175 120700 unique_id port 120700 remote_ip 10.8.0.234 120706 username mohammadmahdi 120706 kill_reason Another user logged on this global unique id 120706 mac 120706 bytes_out 0 120706 bytes_in 0 120706 station_ip 5.119.220.234 120706 port 169 120706 unique_id port 120706 remote_ip 10.8.0.54 120709 username amir 120709 mac 120709 bytes_out 0 120709 bytes_in 0 120709 station_ip 46.225.209.152 120709 port 172 120709 unique_id port 120709 remote_ip 10.8.0.50 120711 username mohammadmahdi 120711 mac 120711 bytes_out 0 120711 bytes_in 0 120711 station_ip 5.119.220.234 120711 port 169 120711 unique_id port 120717 username tahmasebi 120717 kill_reason Another user logged on this global unique id 120717 mac 120717 bytes_out 0 120717 bytes_in 0 120717 station_ip 5.119.21.90 120717 port 135 120717 unique_id port 120719 username musa 120719 kill_reason Another user logged on this global unique id 120719 mac 120719 bytes_out 0 120719 bytes_in 0 120719 station_ip 83.123.50.89 120719 port 85 120719 unique_id port 120725 username forozande 120725 mac 120725 bytes_out 0 120725 bytes_in 0 120725 station_ip 83.123.244.0 120725 port 148 120725 unique_id port 120725 remote_ip 10.8.0.74 120732 username amin.saeedi 120732 unique_id port 120732 terminate_cause User-Request 120732 bytes_out 361622 120732 bytes_in 7072464 120732 station_ip 31.56.155.237 120732 port 15729769 120732 nas_port_type Virtual 120732 remote_ip 5.5.5.60 120734 username seyedmostafa 120734 kill_reason Another user logged on this global unique id 120734 mac 120734 bytes_out 0 120734 bytes_in 0 120734 station_ip 5.120.120.10 120734 port 122 120734 unique_id port 120736 username musa 120736 kill_reason Another user logged on this global unique id 120736 mac 120736 bytes_out 0 120736 bytes_in 0 120736 station_ip 83.123.50.89 120736 port 85 120736 unique_id port 120743 username amir 120743 mac 120743 bytes_out 73745 120743 bytes_in 311506 120743 station_ip 46.225.209.152 120743 port 148 120743 unique_id port 120743 remote_ip 10.8.0.50 120746 username musa 58414 username arezoo 58414 kill_reason Maximum check online fails reached 58414 mac 5.237.84.233:49177: Unknown host 58414 bytes_out 0 120746 kill_reason Another user logged on this global unique id 120746 mac 120746 bytes_out 0 120746 bytes_in 0 120746 station_ip 83.123.50.89 120746 port 85 120746 unique_id port 120748 username mohammadmahdi 120748 mac 120748 bytes_out 2489053 120748 bytes_in 25126488 120748 station_ip 5.119.220.234 120726 station_ip 5.119.21.90 120726 port 135 120726 unique_id port 120727 username seyedmostafa 120727 kill_reason Another user logged on this global unique id 120727 mac 120727 bytes_out 0 120727 bytes_in 0 120727 station_ip 5.120.120.10 120727 port 122 120727 unique_id port 120727 remote_ip 10.8.0.122 120728 username barzegar 120728 mac 120728 bytes_out 0 120728 bytes_in 0 120728 station_ip 5.120.40.46 120728 port 82 120728 unique_id port 120728 remote_ip 10.8.1.174 120729 username amir 120729 mac 120729 bytes_out 0 120729 bytes_in 0 120729 station_ip 46.225.209.152 120729 port 148 120729 unique_id port 120729 remote_ip 10.8.0.50 120735 username amir 120735 mac 120735 bytes_out 0 120735 bytes_in 0 120735 station_ip 46.225.209.152 120735 port 148 120735 unique_id port 120735 remote_ip 10.8.0.50 120739 username mirzaei 120739 kill_reason Another user logged on this global unique id 120739 mac 120739 bytes_out 0 120739 bytes_in 0 120739 station_ip 5.120.169.128 120739 port 170 120739 unique_id port 120740 username amin.saeedi 120740 unique_id port 120740 terminate_cause User-Request 120740 bytes_out 715497 120740 bytes_in 4885139 120740 station_ip 31.56.155.237 120740 port 15729771 120740 nas_port_type Virtual 120740 remote_ip 5.5.5.62 120744 username tahmasebi 120744 kill_reason Another user logged on this global unique id 120744 mac 120744 bytes_out 0 120744 bytes_in 0 120744 station_ip 5.119.21.90 120744 port 135 120744 unique_id port 120747 username alihosseini1 120747 mac 120747 bytes_out 0 120747 bytes_in 0 120747 station_ip 5.120.102.220 120747 port 148 120747 unique_id port 120747 remote_ip 10.8.0.166 120753 username barzegar 120753 mac 120753 bytes_out 0 120753 bytes_in 0 120753 station_ip 5.119.50.125 120753 port 82 120753 unique_id port 120753 remote_ip 10.8.1.174 120756 username barzegar 120756 mac 120756 bytes_out 0 120756 bytes_in 0 120756 station_ip 5.119.50.125 120756 port 122 120756 unique_id port 120756 remote_ip 10.8.0.234 120757 username aminvpn 120757 mac 120757 bytes_out 0 120757 bytes_in 0 120757 station_ip 37.129.147.214 120757 port 169 120757 unique_id port 120757 remote_ip 10.8.0.14 120759 username alihosseini1 120759 mac 120759 bytes_out 157430 120759 bytes_in 807005 120759 station_ip 5.120.102.220 120759 port 175 120759 unique_id port 120759 remote_ip 10.8.0.166 120764 username alihosseini1 120764 mac 120764 bytes_out 0 120764 bytes_in 0 120764 station_ip 5.120.102.220 120764 port 148 120764 unique_id port 120764 remote_ip 10.8.0.166 120767 username alihosseini1 120767 mac 120767 bytes_out 0 120767 bytes_in 0 120767 station_ip 5.120.102.220 120767 port 82 120767 unique_id port 120767 remote_ip 10.8.1.106 120769 username tahmasebi 120769 kill_reason Another user logged on this global unique id 120769 mac 120769 bytes_out 0 120769 bytes_in 0 120769 station_ip 5.119.21.90 120769 port 135 120769 unique_id port 120770 username amir 120770 mac 120770 bytes_out 123468 120770 bytes_in 376872 120770 station_ip 46.225.209.152 120770 port 169 120770 unique_id port 120770 remote_ip 10.8.0.50 120773 username forozande 120773 mac 120773 bytes_out 0 120773 bytes_in 0 120773 station_ip 83.123.184.93 120773 port 148 120773 unique_id port 120773 remote_ip 10.8.0.74 120777 username aminvpn 120777 mac 120777 bytes_out 0 120777 bytes_in 0 120777 station_ip 5.120.23.92 120777 port 71 120777 unique_id port 120777 remote_ip 10.8.1.6 120779 username barzegar 120779 mac 120779 bytes_out 0 120738 bytes_in 0 120738 station_ip 5.120.40.46 120738 port 175 120738 unique_id port 120738 remote_ip 10.8.0.234 120741 username forozande 120741 mac 120741 bytes_out 0 120741 bytes_in 0 120741 station_ip 37.129.67.110 120741 port 148 120741 unique_id port 120741 remote_ip 10.8.0.74 120742 username sade 120742 unique_id port 120742 terminate_cause User-Request 120742 bytes_out 16083984 120742 bytes_in 133467905 120742 station_ip 5.120.181.181 120742 port 15729767 120742 nas_port_type Virtual 120742 remote_ip 5.5.5.53 120745 username forozande 120745 mac 120745 bytes_out 0 120745 bytes_in 0 120745 station_ip 37.129.67.110 120745 port 175 120745 unique_id port 120745 remote_ip 10.8.0.74 120751 username mirzaei 120751 kill_reason Another user logged on this global unique id 120751 mac 120751 bytes_out 0 120751 bytes_in 0 120751 station_ip 5.120.169.128 120751 port 170 120751 unique_id port 120758 username mahdiyehalizadeh 120758 mac 120758 bytes_out 1364888 120758 bytes_in 22241279 120758 station_ip 83.122.241.68 120758 port 148 120758 unique_id port 120758 remote_ip 10.8.0.82 120760 username amir 120760 mac 120760 bytes_out 0 120760 bytes_in 0 120760 station_ip 46.225.209.152 120760 port 169 120760 unique_id port 120760 remote_ip 10.8.0.50 120761 username forozande 120761 mac 120761 bytes_out 442573 120761 bytes_in 5731384 120761 station_ip 37.129.165.19 120761 port 172 120761 unique_id port 120761 remote_ip 10.8.0.74 120762 username malekpoir 120762 mac 120762 bytes_out 2651969 120762 bytes_in 21118164 120762 station_ip 5.120.66.141 120762 port 177 120762 unique_id port 120762 remote_ip 10.8.0.58 120765 username mostafa_es78 120765 unique_id port 120765 terminate_cause User-Request 120765 bytes_out 365842 120765 bytes_in 3769132 120765 station_ip 5.126.227.37 120765 port 15729770 120765 nas_port_type Virtual 120765 remote_ip 5.5.5.61 120768 username barzegar 120768 mac 120768 bytes_out 0 120768 bytes_in 0 120768 station_ip 5.119.50.125 120768 port 84 120768 unique_id port 120768 remote_ip 10.8.1.174 120771 username alihosseini1 120771 mac 120771 bytes_out 0 120771 bytes_in 0 120771 station_ip 5.120.102.220 120771 port 82 120771 unique_id port 120771 remote_ip 10.8.1.106 120772 username sade 120772 unique_id port 120772 terminate_cause Lost-Carrier 120772 bytes_out 2618662 120772 bytes_in 64468513 120772 station_ip 5.120.181.181 120772 port 15729772 120772 nas_port_type Virtual 120772 remote_ip 5.5.5.63 120774 username barzegar 120774 mac 120774 bytes_out 0 120774 bytes_in 0 120774 station_ip 5.119.50.125 120774 port 148 120774 unique_id port 120774 remote_ip 10.8.0.234 120775 username amir 120775 mac 120775 bytes_out 52237 120775 bytes_in 258497 120775 station_ip 46.225.209.152 120775 port 148 120775 unique_id port 120775 remote_ip 10.8.0.50 120781 username alihosseini1 120781 mac 120781 bytes_out 0 120781 bytes_in 0 120781 station_ip 5.119.28.74 120781 port 71 120781 unique_id port 120781 remote_ip 10.8.1.106 120782 username barzegar 120782 mac 120782 bytes_out 0 120782 bytes_in 0 120782 station_ip 5.119.50.125 120782 port 71 120782 unique_id port 120782 remote_ip 10.8.1.174 120787 username mansur 120787 mac 120787 bytes_out 332605 120787 bytes_in 3840992 120787 station_ip 5.120.44.118 120787 port 172 120787 unique_id port 120787 remote_ip 10.8.0.210 120788 username barzegar 120788 mac 120788 bytes_out 0 120788 bytes_in 0 120788 station_ip 5.119.50.125 120788 port 71 120788 unique_id port 120788 remote_ip 10.8.1.174 120748 port 172 120748 unique_id port 120748 remote_ip 10.8.0.54 120749 username barzegar 120749 mac 120749 bytes_out 20755 120749 bytes_in 46066 120749 station_ip 5.119.50.125 120749 port 122 120749 unique_id port 120749 remote_ip 10.8.0.234 120750 username barzegar 120750 mac 120750 bytes_out 0 120750 bytes_in 0 120750 station_ip 5.119.50.125 120750 port 82 120750 unique_id port 120750 remote_ip 10.8.1.174 120752 username amir 120752 mac 120752 bytes_out 54462 120752 bytes_in 422819 120752 station_ip 46.225.209.152 120752 port 122 120752 unique_id port 120752 remote_ip 10.8.0.50 120754 username aminvpn 120754 mac 120754 bytes_out 495963 120754 bytes_in 2368551 120754 station_ip 5.120.23.92 120754 port 71 120754 unique_id port 120754 remote_ip 10.8.1.6 120755 username tahmasebi 120755 kill_reason Another user logged on this global unique id 120755 mac 120755 bytes_out 0 120755 bytes_in 0 120755 station_ip 5.119.21.90 120755 port 135 120755 unique_id port 120763 username tahmasebi 120763 kill_reason Another user logged on this global unique id 120763 mac 120763 bytes_out 0 120763 bytes_in 0 120763 station_ip 5.119.21.90 120763 port 135 120763 unique_id port 120766 username barzegar 120766 mac 120766 bytes_out 7840 120766 bytes_in 18076 58423 username arezoo 58423 kill_reason Maximum check online fails reached 58423 mac 5.237.84.233:49817: Unknown host 58423 bytes_out 0 58423 bytes_in 0 58423 station_ip 5.237.84.233:49817 58423 port 1017 58423 unique_id port 120766 station_ip 5.119.50.125 120766 port 178 120766 unique_id port 120766 remote_ip 10.8.0.234 120776 username aminvpn 120776 mac 120776 bytes_out 284150 120776 bytes_in 1470366 120776 station_ip 5.120.23.92 120776 port 71 120776 unique_id port 120776 remote_ip 10.8.1.6 120778 username mosi 120778 mac 120778 bytes_out 3312425 120778 bytes_in 27253115 120778 station_ip 151.235.76.119 120778 port 169 120778 unique_id port 120778 remote_ip 10.8.0.138 120780 username amir 120780 mac 120780 bytes_out 57835 120780 bytes_in 237896 120780 station_ip 46.225.209.152 120780 port 169 120780 unique_id port 120780 remote_ip 10.8.0.50 120786 username barzegar 120786 mac 120786 bytes_out 0 120786 bytes_in 0 120786 station_ip 5.119.50.125 120786 port 148 120786 unique_id port 120786 remote_ip 10.8.0.234 120792 username amir 120792 mac 120792 bytes_out 104244 120792 bytes_in 595545 120792 station_ip 46.225.209.152 120792 port 148 120792 unique_id port 120792 remote_ip 10.8.0.50 120795 username Mahin 120795 mac 120795 bytes_out 5837765 120795 bytes_in 51391352 120795 station_ip 5.119.151.200 120795 port 160 120795 unique_id port 120795 remote_ip 10.8.0.222 120799 username Mahin 120799 mac 120799 bytes_out 0 120799 bytes_in 0 120799 station_ip 5.119.122.134 120799 port 148 120799 unique_id port 120799 remote_ip 10.8.0.222 120800 username amir 120800 mac 120800 bytes_out 0 120800 bytes_in 0 120800 station_ip 46.225.209.152 120800 port 148 120800 unique_id port 120800 remote_ip 10.8.0.50 120801 username Mahin 120801 mac 120801 bytes_out 0 120801 bytes_in 0 120801 station_ip 5.119.122.134 120801 port 169 120801 unique_id port 120801 remote_ip 10.8.0.222 120806 username tahmasebi 120806 kill_reason Another user logged on this global unique id 120806 mac 120806 bytes_out 0 120806 bytes_in 0 120806 station_ip 5.119.21.90 120806 port 135 120806 unique_id port 120808 username alipour 120808 mac 120808 bytes_out 0 120808 bytes_in 0 120808 station_ip 37.129.93.196 58414 bytes_in 0 58414 station_ip 5.237.84.233:49177 58414 port 1017 58414 unique_id port 120779 bytes_in 0 120779 station_ip 5.119.50.125 120779 port 82 120779 unique_id port 120779 remote_ip 10.8.1.174 120783 username mosi 120783 mac 120783 bytes_out 4025110 120783 bytes_in 44178477 120783 station_ip 151.235.76.119 120783 port 148 120783 unique_id port 120783 remote_ip 10.8.0.138 120784 username barzegar 120784 mac 120784 bytes_out 0 120784 bytes_in 0 120784 station_ip 5.119.50.125 120784 port 71 120784 unique_id port 120784 remote_ip 10.8.1.174 120785 username amir 120785 mac 120785 bytes_out 102414 120785 bytes_in 683347 120785 station_ip 46.225.209.152 120785 port 148 120785 unique_id port 120785 remote_ip 10.8.0.50 120789 username ehsun 120789 mac 120789 bytes_out 0 120789 bytes_in 0 120789 station_ip 46.225.209.208 120789 port 169 120789 unique_id port 120789 remote_ip 10.8.0.162 120790 username barzegar 120790 mac 120790 bytes_out 0 120790 bytes_in 0 120790 station_ip 5.119.50.125 120790 port 71 120790 unique_id port 120790 remote_ip 10.8.1.174 120791 username barzegar 120791 mac 120791 bytes_out 0 120791 bytes_in 0 120791 station_ip 5.119.50.125 120791 port 71 120791 unique_id port 120791 remote_ip 10.8.1.174 120793 username musa 120793 mac 120793 bytes_out 0 120793 bytes_in 0 120793 station_ip 83.123.50.89 120793 port 85 120793 unique_id port 120796 username farhad1 120796 mac 120796 bytes_out 127179 120796 bytes_in 609309 120796 station_ip 5.120.92.61 120796 port 160 120796 unique_id port 120796 remote_ip 10.8.0.26 120798 username Mahin 120798 mac 120798 bytes_out 108071 120798 bytes_in 246846 120798 station_ip 5.119.122.134 120798 port 169 120798 unique_id port 120798 remote_ip 10.8.0.222 120803 username Mahin 120803 mac 120803 bytes_out 0 120803 bytes_in 0 120803 station_ip 5.119.122.134 120803 port 148 120803 unique_id port 120803 remote_ip 10.8.0.222 120804 username Mahin 120804 mac 120804 bytes_out 7664 120804 bytes_in 13385 120804 station_ip 5.119.122.134 120804 port 122 120804 unique_id port 120804 remote_ip 10.8.0.222 120810 username forozande 120810 mac 120810 bytes_out 0 120810 bytes_in 0 120810 station_ip 83.123.94.171 120810 port 122 120810 unique_id port 120810 remote_ip 10.8.0.74 120812 username farhad1 120812 mac 120812 bytes_out 0 120812 bytes_in 0 120812 station_ip 5.119.253.132 120812 port 160 120812 unique_id port 120812 remote_ip 10.8.0.26 120815 username hamidsalari 120815 kill_reason Another user logged on this global unique id 120815 mac 120815 bytes_out 0 120815 bytes_in 0 120815 station_ip 5.120.69.80 120815 port 157 120815 unique_id port 120817 username aminvpn 120817 unique_id port 120817 terminate_cause User-Request 120817 bytes_out 36079 120817 bytes_in 26687 120817 station_ip 86.57.43.161 120817 port 15729773 120817 nas_port_type Virtual 120817 remote_ip 5.5.5.69 120819 username mohammadjavad 120819 mac 120819 bytes_out 0 120819 bytes_in 0 120819 station_ip 83.122.23.98 120819 port 137 120819 unique_id port 120819 remote_ip 10.8.0.142 120820 username forozande 120820 mac 120820 bytes_out 0 120820 bytes_in 0 120820 station_ip 113.203.27.83 120820 port 175 120820 unique_id port 120820 remote_ip 10.8.0.74 120824 username mohammadjavad 120824 mac 120824 bytes_out 0 120824 bytes_in 0 120824 station_ip 83.122.23.98 120824 port 177 120824 unique_id port 120824 remote_ip 10.8.0.142 120827 username mirzaei 120794 username barzegar 120794 kill_reason Maximum check online fails reached 120794 mac 120794 bytes_out 0 120794 bytes_in 0 120794 station_ip 5.119.50.125 120794 port 71 120794 unique_id port 120797 username houshang 120797 mac 120797 bytes_out 66556 120797 bytes_in 113278 120797 station_ip 5.119.223.46 120797 port 148 120797 unique_id port 120797 remote_ip 10.8.0.22 120802 username sabaghnezhad 120802 mac 120802 bytes_out 0 120802 bytes_in 0 120802 station_ip 83.122.252.228 120802 port 122 120802 unique_id port 120802 remote_ip 10.8.0.186 120805 username Mahin 120805 mac 120805 bytes_out 0 120805 bytes_in 0 120805 station_ip 5.119.122.134 120805 port 148 120805 unique_id port 120805 remote_ip 10.8.0.222 120807 username amir 120807 mac 120807 bytes_out 0 120807 bytes_in 0 120807 station_ip 46.225.209.152 120807 port 148 120807 unique_id port 120807 remote_ip 10.8.0.50 120809 username Mahin 120809 mac 120809 bytes_out 24755 120809 bytes_in 38797 120809 station_ip 5.119.122.134 120809 port 169 120809 unique_id port 120809 remote_ip 10.8.0.222 120811 username barzegar 120811 mac 120811 bytes_out 34795 120811 bytes_in 62335 120811 station_ip 5.119.50.125 120811 port 84 120811 unique_id port 120811 remote_ip 10.8.1.174 120821 username ehsun 120821 mac 120821 bytes_out 0 120821 bytes_in 0 120821 station_ip 83.122.109.124 120821 port 137 120821 unique_id port 120821 remote_ip 10.8.0.162 120823 username alipour 120823 mac 120823 bytes_out 111423 120823 bytes_in 222811 120823 station_ip 37.129.93.196 120823 port 169 120823 unique_id port 120823 remote_ip 10.8.0.102 120825 username barzegar 120825 mac 120825 bytes_out 0 120825 bytes_in 0 120825 station_ip 5.119.50.125 120825 port 84 120825 unique_id port 120825 remote_ip 10.8.1.174 120829 username mirzaei 120829 mac 120829 bytes_out 0 120829 bytes_in 0 120829 station_ip 5.120.169.128 120829 port 84 120829 unique_id port 120829 remote_ip 10.8.1.30 120830 username forozande 120830 mac 120830 bytes_out 634977 120830 bytes_in 10589794 120830 station_ip 37.129.208.82 120830 port 137 120830 unique_id port 120830 remote_ip 10.8.0.74 120831 username musa 120831 kill_reason Another user logged on this global unique id 120831 mac 120831 bytes_out 0 120831 bytes_in 0 120831 station_ip 83.123.50.89 120831 port 82 120831 unique_id port 120831 remote_ip 10.8.1.10 120841 username aminvpn 120841 mac 120841 bytes_out 0 120841 bytes_in 0 120841 station_ip 31.56.158.115 120841 port 177 120841 unique_id port 120841 remote_ip 10.8.0.14 120844 username barzegar 120844 mac 120844 bytes_out 0 120844 bytes_in 0 120844 station_ip 5.119.50.125 120844 port 82 120844 unique_id port 120844 remote_ip 10.8.1.174 120845 username hosseine 120845 kill_reason Another user logged on this global unique id 120845 mac 120845 bytes_out 0 120845 bytes_in 0 120845 station_ip 37.129.228.5 120845 port 137 120845 unique_id port 120845 remote_ip 10.8.0.238 120848 username barzegar 120848 mac 120848 bytes_out 0 120848 bytes_in 0 120848 station_ip 5.119.50.125 120848 port 148 120848 unique_id port 120848 remote_ip 10.8.0.234 120856 username barzegar 120856 mac 120856 bytes_out 0 120856 bytes_in 0 120856 station_ip 5.119.50.125 120856 port 82 120856 unique_id port 120856 remote_ip 10.8.1.174 120859 username forozande 120859 mac 120859 bytes_out 1460705 120859 bytes_in 24561507 120859 station_ip 83.123.161.80 120859 port 169 120859 unique_id port 120859 remote_ip 10.8.0.74 120808 port 137 120808 unique_id port 120808 remote_ip 10.8.0.102 120813 username alipour 120813 mac 120813 bytes_out 80907 120813 bytes_in 405962 120813 station_ip 37.129.93.196 120813 port 85 120813 unique_id port 120813 remote_ip 10.8.1.50 120814 username alipour 120814 mac 120814 bytes_out 13910 120814 bytes_in 19046 120814 station_ip 37.129.93.196 120814 port 85 120814 unique_id port 120814 remote_ip 10.8.1.50 120816 username farhad1 120816 mac 120816 bytes_out 0 120816 bytes_in 0 120816 station_ip 5.120.18.141 120816 port 160 120816 unique_id port 120816 remote_ip 10.8.0.26 120818 username barzegar 120818 mac 120818 bytes_out 55865 120818 bytes_in 142293 120818 station_ip 5.119.50.125 120818 port 84 120818 unique_id port 120818 remote_ip 10.8.1.174 120822 username amir 120822 kill_reason Another user logged on this global unique id 120822 mac 120822 bytes_out 0 120822 bytes_in 0 120822 station_ip 46.225.209.152 120822 port 148 120822 unique_id port 120822 remote_ip 10.8.0.50 120826 username barzegar 120826 mac 120826 bytes_out 0 120826 bytes_in 0 120826 station_ip 5.119.50.125 120826 port 84 120826 unique_id port 120826 remote_ip 10.8.1.174 120828 username alipour 120828 mac 120828 bytes_out 0 120828 bytes_in 0 120828 station_ip 37.129.93.196 120828 port 84 120828 unique_id port 120828 remote_ip 10.8.1.50 120834 username mirzaei 120834 mac 120834 bytes_out 4515 120834 bytes_in 6723 120834 station_ip 5.120.169.128 120834 port 84 120834 unique_id port 120834 remote_ip 10.8.1.30 120835 username barzegar 120835 mac 120835 bytes_out 0 120835 bytes_in 0 120835 station_ip 5.119.50.125 120835 port 137 120835 unique_id port 120835 remote_ip 10.8.0.234 120838 username alihosseini1 120838 mac 120838 bytes_out 142243 120838 bytes_in 1089644 120838 station_ip 5.120.100.82 120838 port 85 120838 unique_id port 120838 remote_ip 10.8.1.106 120840 username mohammadjavad 120840 mac 120840 bytes_out 232394 120840 bytes_in 2487399 120840 station_ip 83.122.61.203 120840 port 169 120840 unique_id port 120840 remote_ip 10.8.0.142 120843 username amir 120843 mac 120843 bytes_out 0 120843 bytes_in 0 120843 station_ip 46.225.209.152 120843 port 148 120843 unique_id port 120846 username hosseine 120846 kill_reason Another user logged on this global unique id 120846 mac 120846 bytes_out 0 120846 bytes_in 0 120846 station_ip 37.129.228.5 120846 port 137 120846 unique_id port 120847 username musa 120847 mac 120847 bytes_out 216807 120847 bytes_in 1682945 120847 station_ip 83.123.50.89 120847 port 172 120847 unique_id port 120847 remote_ip 10.8.0.6 120849 username mosi 120849 kill_reason Another user logged on this global unique id 120849 mac 120849 bytes_out 0 120849 bytes_in 0 120849 station_ip 151.235.76.119 120849 port 122 120849 unique_id port 120849 remote_ip 10.8.0.138 120851 username barzegar 120851 mac 120851 bytes_out 0 120851 bytes_in 0 120851 station_ip 5.119.50.125 120851 port 148 120851 unique_id port 120851 remote_ip 10.8.0.234 120853 username barzegar 120853 mac 120853 bytes_out 0 120853 bytes_in 0 120853 station_ip 5.119.50.125 120853 port 82 120853 unique_id port 120853 remote_ip 10.8.1.174 120855 username barzegar 120855 mac 120855 bytes_out 0 120855 bytes_in 0 120855 station_ip 5.119.50.125 120855 port 82 120855 unique_id port 120855 remote_ip 10.8.1.174 120858 username rasoul56 120858 kill_reason Another user logged on this global unique id 120858 mac 120858 bytes_out 0 120858 bytes_in 0 120827 mac 120827 bytes_out 0 120827 bytes_in 0 120827 station_ip 5.120.169.128 120827 port 170 120827 unique_id port 120832 username aminvpn 120832 unique_id port 120832 terminate_cause Lost-Carrier 120832 bytes_out 458263 120832 bytes_in 12686135 120832 station_ip 5.119.145.74 120832 port 15729774 120832 nas_port_type Virtual 120832 remote_ip 5.5.5.73 120833 username barzegar 120833 mac 120833 bytes_out 265064 120833 bytes_in 692201 120833 station_ip 5.119.50.125 120833 port 170 120833 unique_id port 120833 remote_ip 10.8.0.234 120836 username tahmasebi 120836 kill_reason Maximum check online fails reached 120836 mac 120836 bytes_out 0 120836 bytes_in 0 120836 station_ip 5.119.21.90 120836 port 135 120836 unique_id port 120837 username aminvpn 120837 mac 120837 bytes_out 0 120837 bytes_in 0 120837 station_ip 5.120.23.92 120837 port 172 120837 unique_id port 120837 remote_ip 10.8.0.14 120839 username musa 120839 mac 120839 bytes_out 0 120839 bytes_in 0 120839 station_ip 83.123.50.89 120839 port 82 120839 unique_id port 120842 username barzegar 120842 mac 120842 bytes_out 1029050 120842 bytes_in 841897 120842 station_ip 5.119.50.125 120842 port 87 120842 unique_id port 120842 remote_ip 10.8.1.174 120850 username amirabbas 120850 unique_id port 120850 terminate_cause User-Request 120850 bytes_out 8944290 120850 bytes_in 254290081 120850 station_ip 37.27.19.135 120850 port 15729775 120850 nas_port_type Virtual 120850 remote_ip 5.5.5.76 120852 username hosseine 120852 mac 120852 bytes_out 0 120852 bytes_in 0 120852 station_ip 37.129.228.5 120852 port 137 120852 unique_id port 120854 username barzegar 120854 mac 120854 bytes_out 2530 120854 bytes_in 4929 120854 station_ip 5.119.50.125 120854 port 82 120854 unique_id port 120854 remote_ip 10.8.1.174 120857 username farhad1 120857 kill_reason Another user logged on this global unique id 120857 mac 120857 bytes_out 0 120857 bytes_in 0 120857 station_ip 5.120.18.141 120857 port 160 120857 unique_id port 120857 remote_ip 10.8.0.26 120860 username rasoul56 120860 mac 120860 bytes_out 0 120860 bytes_in 0 120860 station_ip 83.123.213.139 120860 port 86 120860 unique_id port 120863 username barzegar 120863 mac 120863 bytes_out 8903 120863 bytes_in 18081 120863 station_ip 5.119.50.125 120863 port 85 120863 unique_id port 120863 remote_ip 10.8.1.174 120867 username kordestani 120867 mac 120867 bytes_out 0 120867 bytes_in 0 120867 station_ip 151.235.113.3 120867 port 172 120867 unique_id port 120867 remote_ip 10.8.0.134 120868 username barzegar 120868 mac 120868 bytes_out 0 120868 bytes_in 0 120868 station_ip 5.119.50.125 120868 port 85 120868 unique_id port 120868 remote_ip 10.8.1.174 120870 username hosseine 120870 kill_reason Another user logged on this global unique id 120870 mac 120870 bytes_out 0 120870 bytes_in 0 120870 station_ip 37.129.228.5 120870 port 148 120870 unique_id port 120870 remote_ip 10.8.0.238 120875 username farhad1 120875 kill_reason Another user logged on this global unique id 120875 mac 120875 bytes_out 0 120875 bytes_in 0 120875 station_ip 5.120.18.141 120875 port 160 120875 unique_id port 120876 username houshang 120876 kill_reason Another user logged on this global unique id 120876 mac 120876 bytes_out 0 120876 bytes_in 0 120876 station_ip 5.120.179.66 120876 port 170 120876 unique_id port 120876 remote_ip 10.8.0.22 120878 username aminvpn 120878 unique_id port 120878 terminate_cause User-Request 120878 bytes_out 1880708 120878 bytes_in 26049799 120878 station_ip 31.56.158.115 120878 port 15729776 120858 station_ip 83.123.213.139 120858 port 86 120858 unique_id port 120858 remote_ip 10.8.1.138 120861 username forozande 120861 mac 120861 bytes_out 0 120861 bytes_in 0 120861 station_ip 37.129.59.104 120861 port 137 120861 unique_id port 120861 remote_ip 10.8.0.74 120865 username forozande 120865 mac 120865 bytes_out 0 120865 bytes_in 0 120865 station_ip 113.203.44.196 120865 port 177 120865 unique_id port 120865 remote_ip 10.8.0.74 120866 username mehdizare 120866 mac 120866 bytes_out 0 120866 bytes_in 0 120866 station_ip 5.119.42.227 120866 port 170 120866 unique_id port 120866 remote_ip 10.8.0.90 120871 username musa 120871 mac 120871 bytes_out 28519 120871 bytes_in 39996 120871 station_ip 113.203.120.187 120871 port 137 120871 unique_id port 120871 remote_ip 10.8.0.6 120877 username rasoul56 120877 mac 120877 bytes_out 8053 120877 bytes_in 17239 120877 station_ip 83.123.213.139 120877 port 85 120877 unique_id port 120877 remote_ip 10.8.1.138 120882 username mehdizare 120882 mac 120882 bytes_out 16797 120882 bytes_in 24265 120882 station_ip 5.119.42.227 120882 port 137 120882 unique_id port 120882 remote_ip 10.8.0.90 120883 username farhad1 120883 mac 120883 bytes_out 0 120883 bytes_in 0 120883 station_ip 5.120.18.141 120883 port 160 120883 unique_id port 120884 username barzegar 120884 mac 120884 bytes_out 0 120884 bytes_in 0 120884 station_ip 5.119.50.125 120884 port 169 120884 unique_id port 120884 remote_ip 10.8.0.234 120889 username hashtadani3 120889 mac 120889 bytes_out 0 120889 bytes_in 0 120889 station_ip 113.203.2.135 120889 port 177 120889 unique_id port 120889 remote_ip 10.8.0.154 120893 username mehdizare 120893 mac 120893 bytes_out 0 120893 bytes_in 0 120893 station_ip 5.119.42.227 120893 port 160 120893 unique_id port 120893 remote_ip 10.8.0.90 120901 username mosi 120901 kill_reason Another user logged on this global unique id 120901 mac 120901 bytes_out 0 120901 bytes_in 0 120901 station_ip 151.235.76.119 120901 port 122 120901 unique_id port 120905 username rasoul56 120905 mac 120905 bytes_out 116727 120905 bytes_in 487005 120905 station_ip 83.123.213.139 120905 port 86 120905 unique_id port 120905 remote_ip 10.8.1.138 120906 username mohammadjavad 120906 mac 120906 bytes_out 441184 120906 bytes_in 5113895 120906 station_ip 37.129.90.251 120906 port 179 120906 unique_id port 120906 remote_ip 10.8.0.142 120908 username mosi 120908 kill_reason Another user logged on this global unique id 120908 mac 120908 bytes_out 0 120908 bytes_in 0 120908 station_ip 151.235.76.119 120908 port 122 120908 unique_id port 120909 username barzegar 120909 mac 120909 bytes_out 0 120909 bytes_in 0 120909 station_ip 5.119.50.125 120909 port 179 120909 unique_id port 120909 remote_ip 10.8.0.234 120911 username alihosseini1 120911 mac 120911 bytes_out 11840139 120911 bytes_in 1300669 120911 station_ip 5.119.111.47 120911 port 87 120911 unique_id port 120911 remote_ip 10.8.1.106 120913 username alihosseini1 120913 mac 120913 bytes_out 0 120913 bytes_in 0 120913 station_ip 5.119.111.47 120913 port 179 120913 unique_id port 120913 remote_ip 10.8.0.166 120916 username mosi 120916 kill_reason Another user logged on this global unique id 120916 mac 120916 bytes_out 0 120916 bytes_in 0 120916 station_ip 151.235.76.119 120916 port 122 120916 unique_id port 120917 username farhad1 120917 kill_reason Another user logged on this global unique id 120917 mac 120917 bytes_out 0 120917 bytes_in 0 120862 username rasoul56 120862 mac 120862 bytes_out 44389 120862 bytes_in 148062 120862 station_ip 83.123.213.139 120862 port 82 120862 unique_id port 120862 remote_ip 10.8.1.138 120864 username musa 120864 mac 120864 bytes_out 0 120864 bytes_in 0 120864 station_ip 113.203.120.187 120864 port 169 120864 unique_id port 120864 remote_ip 10.8.0.6 120869 username mehdizare 120869 mac 120869 bytes_out 0 120869 bytes_in 0 120869 station_ip 5.119.42.227 120869 port 169 120869 unique_id port 120869 remote_ip 10.8.0.90 120872 username rasoul56 120872 mac 120872 bytes_out 42045 120872 bytes_in 75380 120872 station_ip 83.123.213.139 120872 port 85 120872 unique_id port 120872 remote_ip 10.8.1.138 120873 username rasoul56 120873 mac 120873 bytes_out 0 120873 bytes_in 0 120873 station_ip 83.123.213.139 120873 port 137 120873 unique_id port 120873 remote_ip 10.8.0.174 120874 username barzegar 120874 mac 120874 bytes_out 0 120874 bytes_in 0 120874 station_ip 5.119.50.125 120874 port 137 120874 unique_id port 120874 remote_ip 10.8.0.234 120879 username barzegar 120879 mac 120879 bytes_out 0 120879 bytes_in 0 120879 station_ip 5.119.50.125 120879 port 85 120879 unique_id port 120879 remote_ip 10.8.1.174 120881 username barzegar 120881 mac 120881 bytes_out 0 120881 bytes_in 0 120881 station_ip 5.119.50.125 120881 port 85 120881 unique_id port 120881 remote_ip 10.8.1.174 120886 username houshang 120886 kill_reason Another user logged on this global unique id 120886 mac 120886 bytes_out 0 120886 bytes_in 0 120886 station_ip 5.120.179.66 120886 port 170 120886 unique_id port 120887 username barzegar 120887 mac 120887 bytes_out 0 120887 bytes_in 0 120887 station_ip 5.119.50.125 120887 port 87 120887 unique_id port 120887 remote_ip 10.8.1.174 120888 username hashtadani3 120888 mac 120888 bytes_out 0 120888 bytes_in 0 120888 station_ip 113.203.2.135 120888 port 137 120888 unique_id port 120888 remote_ip 10.8.0.154 120890 username hashtadani3 120890 mac 120890 bytes_out 0 120890 bytes_in 0 120890 station_ip 113.203.2.135 120890 port 177 120890 unique_id port 120890 remote_ip 10.8.0.154 120895 username malekpoir 120895 mac 120895 bytes_out 0 120895 bytes_in 0 120895 station_ip 5.120.66.141 120895 port 82 120895 unique_id port 120895 remote_ip 10.8.1.54 120897 username hashtadani3 120897 kill_reason Maximum number of concurrent logins reached 120897 mac 120897 bytes_out 0 120897 bytes_in 0 120897 station_ip 113.203.2.135 120897 port 82 120897 unique_id port 120899 username hashtadani3 120899 kill_reason Maximum check online fails reached 120899 mac 120899 bytes_out 0 120899 bytes_in 0 120899 station_ip 113.203.2.135 120899 port 177 120899 unique_id port 120904 username alihosseini1 120904 mac 120904 bytes_out 5249053 120904 bytes_in 2036603 120904 station_ip 5.119.111.47 120904 port 87 120904 unique_id port 120904 remote_ip 10.8.1.106 120907 username farhad1 120907 kill_reason Another user logged on this global unique id 120907 mac 120907 bytes_out 0 120907 bytes_in 0 120907 station_ip 5.120.18.141 120907 port 172 120907 unique_id port 120907 remote_ip 10.8.0.26 120910 username mahdiyehalizadeh 120910 mac 120910 bytes_out 0 120910 bytes_in 0 120910 station_ip 83.123.190.229 120910 port 86 120910 unique_id port 120910 remote_ip 10.8.1.110 120912 username barzegar 120912 mac 120912 bytes_out 0 120912 bytes_in 0 120912 station_ip 5.119.50.125 120912 port 86 120912 unique_id port 120912 remote_ip 10.8.1.174 120878 nas_port_type Virtual 120878 remote_ip 5.5.5.92 120880 username mehdizare 120880 mac 120880 bytes_out 17765 120880 bytes_in 25163 120880 station_ip 5.119.42.227 120880 port 169 120880 unique_id port 120880 remote_ip 10.8.0.90 120885 username musa 120885 mac 120885 bytes_out 0 120885 bytes_in 0 120885 station_ip 113.203.19.54 120885 port 87 120885 unique_id port 120885 remote_ip 10.8.1.10 120891 username hosseine 120891 kill_reason Another user logged on this global unique id 120891 mac 120891 bytes_out 0 120891 bytes_in 0 120891 station_ip 37.129.228.5 120891 port 148 120891 unique_id port 120892 username hashtadani3 120892 kill_reason Maximum check online fails reached 120892 mac 120892 bytes_out 0 120892 bytes_in 0 120892 station_ip 113.203.2.135 120892 port 137 120892 unique_id port 120894 username hashtadani3 120894 kill_reason Maximum number of concurrent logins reached 120894 mac 120894 bytes_out 0 120894 bytes_in 0 120894 station_ip 113.203.2.135 120894 port 160 120894 unique_id port 120896 username hashtadani3 120896 kill_reason Maximum number of concurrent logins reached 120896 mac 120896 bytes_out 0 120896 bytes_in 0 120896 station_ip 113.203.2.135 120896 port 160 120896 unique_id port 120898 username hashtadani3 120898 kill_reason Maximum check online fails reached 120898 mac 120898 bytes_out 0 120898 bytes_in 0 120898 station_ip 113.203.2.135 120898 port 178 120898 unique_id port 120900 username houshang 120900 mac 120900 bytes_out 0 120900 bytes_in 0 120900 station_ip 5.120.179.66 120900 port 170 120900 unique_id port 120902 username barzegar 120902 mac 120902 bytes_out 0 120902 bytes_in 0 120902 station_ip 5.119.50.125 120902 port 88 120902 unique_id port 120902 remote_ip 10.8.1.174 120903 username mehdizare 120903 mac 120903 bytes_out 0 120903 bytes_in 0 120903 station_ip 5.119.42.227 120903 port 82 120903 unique_id port 120903 remote_ip 10.8.1.42 120915 username mosi 120915 kill_reason Another user logged on this global unique id 120915 mac 120915 bytes_out 0 120915 bytes_in 0 120915 station_ip 151.235.76.119 120915 port 122 120915 unique_id port 120919 username ahmadipour 120919 unique_id port 120919 terminate_cause Lost-Carrier 120919 bytes_out 751137 120919 bytes_in 20763706 120919 station_ip 37.129.13.74 120919 port 15729779 120919 nas_port_type Virtual 120919 remote_ip 5.5.5.5 120920 username aminvpn 120920 mac 120920 bytes_out 0 120920 bytes_in 0 120920 station_ip 37.129.147.214 120920 port 170 120920 unique_id port 120920 remote_ip 10.8.0.14 120927 username mohammadmahdi 120927 mac 120927 bytes_out 39040 120927 bytes_in 60148 120927 station_ip 5.119.220.234 120927 port 182 120927 unique_id port 120927 remote_ip 10.8.0.54 120928 username rasoul56 120928 mac 120928 bytes_out 0 120928 bytes_in 0 120928 station_ip 37.129.160.55 120928 port 82 120928 unique_id port 120928 remote_ip 10.8.1.138 120935 username sade 120935 unique_id port 120935 terminate_cause Lost-Carrier 120935 bytes_out 122141 120935 bytes_in 287566 120935 station_ip 5.119.159.171 120935 port 15729780 120935 nas_port_type Virtual 120935 remote_ip 5.5.5.10 120938 username jafari 120938 mac 120938 bytes_out 501459 120938 bytes_in 453903 120938 station_ip 46.225.209.81 120938 port 170 120938 unique_id port 120938 remote_ip 10.8.0.242 120941 username mehdizare 120941 mac 120941 bytes_out 0 120941 bytes_in 0 120941 station_ip 5.119.42.227 120941 port 169 120941 unique_id port 120941 remote_ip 10.8.0.90 120944 username barzegar 120944 mac 120944 bytes_out 0 120944 bytes_in 0 120914 username mohammadmahdi 120914 mac 120914 bytes_out 0 120914 bytes_in 0 120914 station_ip 5.119.220.234 120914 port 180 120914 unique_id port 120914 remote_ip 10.8.0.54 120918 username mohammadmahdi 120918 mac 120918 bytes_out 0 120918 bytes_in 0 120918 station_ip 5.119.220.234 120918 port 180 120918 unique_id port 120918 remote_ip 10.8.0.54 120921 username barzegar 120921 mac 120921 bytes_out 1506272 120921 bytes_in 654232 120921 station_ip 5.119.50.125 120921 port 86 120921 unique_id port 120921 remote_ip 10.8.1.174 120924 username farhad1 120924 mac 120924 bytes_out 0 120924 bytes_in 0 120924 station_ip 5.120.18.141 120924 port 172 120924 unique_id port 120929 username barzegar 120929 mac 120929 bytes_out 0 120929 bytes_in 0 120929 station_ip 5.119.50.125 120929 port 87 120929 unique_id port 120929 remote_ip 10.8.1.174 120930 username barzegar 120930 mac 120930 bytes_out 0 120930 bytes_in 0 120930 station_ip 5.119.50.125 120930 port 82 120930 unique_id port 120930 remote_ip 10.8.1.174 120932 username sade 120932 unique_id port 120932 terminate_cause Lost-Carrier 120932 bytes_out 272779 120932 bytes_in 2372376 120932 station_ip 5.119.31.111 120932 port 15729778 120932 nas_port_type Virtual 120932 remote_ip 5.5.5.255 120933 username mehdizare 120933 mac 120933 bytes_out 19753 120933 bytes_in 25315 120933 station_ip 5.119.42.227 120933 port 86 120933 unique_id port 120933 remote_ip 10.8.1.42 120937 username alihosseini1 120937 kill_reason Maximum check online fails reached 120937 mac 120937 bytes_out 0 120937 bytes_in 0 120937 station_ip 5.119.111.47 120937 port 86 120937 unique_id port 120940 username barzegar 120940 mac 120940 bytes_out 0 120940 bytes_in 0 120940 station_ip 5.119.50.125 120940 port 82 120940 unique_id port 120940 remote_ip 10.8.1.174 120943 username mehdizare 120943 mac 120943 bytes_out 192654 120943 bytes_in 40893 120943 station_ip 5.119.42.227 120943 port 170 120943 unique_id port 120943 remote_ip 10.8.0.90 120952 username barzegar 120952 mac 120952 bytes_out 0 120952 bytes_in 0 120952 station_ip 5.119.50.125 120952 port 87 120952 unique_id port 120952 remote_ip 10.8.1.174 120955 username khalili 120955 mac 120955 bytes_out 0 120955 bytes_in 0 120955 station_ip 5.119.82.72 120955 port 172 120955 unique_id port 120955 remote_ip 10.8.0.86 120956 username barzegar 120956 mac 120956 bytes_out 2648 120956 bytes_in 5032 120956 station_ip 5.119.50.125 120956 port 89 120956 unique_id port 120956 remote_ip 10.8.1.174 120964 username barzegar 120964 mac 120964 bytes_out 2588 120964 bytes_in 5207 120964 station_ip 5.119.50.125 120964 port 169 120964 unique_id port 120964 remote_ip 10.8.0.234 120971 username mirzaei 120971 mac 120971 bytes_out 0 120971 bytes_in 0 120971 station_ip 5.120.169.128 120971 port 84 120971 unique_id port 120971 remote_ip 10.8.1.30 120973 username alipour 120973 mac 120973 bytes_out 1832923 120973 bytes_in 14212915 120973 station_ip 37.129.93.196 120973 port 175 120973 unique_id port 120973 remote_ip 10.8.0.102 120976 username mehdizare 120976 mac 120976 bytes_out 54613 120976 bytes_in 91691 120976 station_ip 5.119.42.227 120976 port 87 120976 unique_id port 120976 remote_ip 10.8.1.42 120978 username sedighe 120978 mac 120978 bytes_out 215233 120978 bytes_in 600497 120978 station_ip 37.129.234.199 120978 port 176 120978 unique_id port 120978 remote_ip 10.8.0.146 120982 username mehdizare 120982 mac 120982 bytes_out 8507 120917 station_ip 5.120.18.141 120917 port 172 120917 unique_id port 120922 username mehdizare 120922 mac 120922 bytes_out 36926 120922 bytes_in 41332 120922 station_ip 5.119.42.227 120922 port 82 120922 unique_id port 120922 remote_ip 10.8.1.42 120923 username rasoul56 120923 mac 120923 bytes_out 0 120923 bytes_in 0 120923 station_ip 37.129.160.55 120923 port 179 120923 unique_id port 120923 remote_ip 10.8.0.174 120925 username hosseine 120925 mac 120925 bytes_out 0 120925 bytes_in 0 120925 station_ip 37.129.228.5 120925 port 148 120925 unique_id port 120926 username mehdizare 120926 mac 120926 bytes_out 25720 120926 bytes_in 29137 120926 station_ip 5.119.42.227 120926 port 86 120926 unique_id port 120926 remote_ip 10.8.1.42 120931 username tahmasebi 120931 kill_reason Another user logged on this global unique id 120931 mac 120931 bytes_out 0 120931 bytes_in 0 120931 station_ip 5.119.21.90 120931 port 135 120931 unique_id port 120934 username forozande 120934 mac 120934 bytes_out 541898 120934 bytes_in 4656589 120934 station_ip 83.123.11.133 120934 port 169 120934 unique_id port 120934 remote_ip 10.8.0.74 120936 username alihosseini1 120936 mac 120936 bytes_out 14788532 120936 bytes_in 10485807 120936 station_ip 5.119.111.47 120936 port 181 120936 unique_id port 120936 remote_ip 10.8.0.166 120939 username khalili 120939 kill_reason Another user logged on this global unique id 120939 mac 120939 bytes_out 0 120939 bytes_in 0 120939 station_ip 5.119.82.72 120939 port 176 120939 unique_id port 120939 remote_ip 10.8.0.86 120942 username barzegar 120942 kill_reason Maximum check online fails reached 120942 mac 120942 bytes_out 0 120942 bytes_in 0 120942 station_ip 5.119.50.125 120942 port 82 120942 unique_id port 120945 username malekpoir 120945 kill_reason Another user logged on this global unique id 120945 mac 120945 bytes_out 0 120945 bytes_in 0 120945 station_ip 5.120.66.141 120945 port 160 120945 unique_id port 120945 remote_ip 10.8.0.58 120947 username barzegar 120947 mac 120947 bytes_out 0 120947 bytes_in 0 120947 station_ip 5.119.50.125 120947 port 87 120947 unique_id port 120947 remote_ip 10.8.1.174 120948 username barzegar 120948 mac 120948 bytes_out 0 120948 bytes_in 0 120948 station_ip 5.119.50.125 120948 port 87 120948 unique_id port 120948 remote_ip 10.8.1.174 120949 username barzegar 120949 mac 120949 bytes_out 0 120949 bytes_in 0 120949 station_ip 5.119.50.125 120949 port 87 120949 unique_id port 120949 remote_ip 10.8.1.174 120953 username khalili 120953 mac 120953 bytes_out 0 120953 bytes_in 0 120953 station_ip 5.119.82.72 120953 port 176 120953 unique_id port 120957 username kordestani 120957 mac 120957 bytes_out 0 120957 bytes_in 0 120957 station_ip 151.235.113.3 120957 port 85 120957 unique_id port 120957 remote_ip 10.8.1.98 120960 username tahmasebi 120960 kill_reason Another user logged on this global unique id 120960 mac 120960 bytes_out 0 120960 bytes_in 0 120960 station_ip 5.119.21.90 120960 port 135 120960 unique_id port 120962 username mohammadjavad 120962 mac 120962 bytes_out 451866 120962 bytes_in 8002950 120962 station_ip 83.122.192.140 120962 port 169 120962 unique_id port 120962 remote_ip 10.8.0.142 120965 username musa 120965 kill_reason Another user logged on this global unique id 120965 mac 120965 bytes_out 0 120965 bytes_in 0 120965 station_ip 113.203.12.210 120965 port 88 120965 unique_id port 120965 remote_ip 10.8.1.10 120967 username mosi 120967 kill_reason Another user logged on this global unique id 120967 mac 120944 station_ip 5.119.50.125 120944 port 87 120944 unique_id port 120944 remote_ip 10.8.1.174 120946 username tahmasebi 120946 kill_reason Maximum check online fails reached 120946 mac 120946 bytes_out 0 120946 bytes_in 0 120946 station_ip 5.119.21.90 120946 port 135 120946 unique_id port 120950 username sabaghnezhad 120950 mac 120950 bytes_out 169440 120950 bytes_in 297883 120950 station_ip 83.123.170.87 120950 port 170 120950 unique_id port 120950 remote_ip 10.8.0.186 120951 username mehdizare 120951 mac 120951 bytes_out 0 120951 bytes_in 0 120951 station_ip 5.119.42.227 120951 port 169 120951 unique_id port 120951 remote_ip 10.8.0.90 120954 username mehdizare 120954 mac 120954 bytes_out 0 120954 bytes_in 0 120954 station_ip 5.119.42.227 120954 port 169 120954 unique_id port 120954 remote_ip 10.8.0.90 120958 username barzegar 120958 mac 120958 bytes_out 2376 120958 bytes_in 4810 120958 station_ip 5.119.50.125 120958 port 89 120958 unique_id port 120958 remote_ip 10.8.1.174 120959 username khalili 120959 mac 120959 bytes_out 0 120959 bytes_in 0 120959 station_ip 5.119.82.72 120959 port 90 120959 unique_id port 120959 remote_ip 10.8.1.18 120961 username mehdizare 120961 mac 120961 bytes_out 19212 120961 bytes_in 20068 120961 station_ip 5.119.42.227 120961 port 87 120961 unique_id port 120961 remote_ip 10.8.1.42 120963 username barzegar 120963 mac 120963 bytes_out 3407 120963 bytes_in 6415 120963 station_ip 5.119.50.125 120963 port 172 120963 unique_id port 120963 remote_ip 10.8.0.234 120966 username barzegar 120966 mac 120966 bytes_out 0 120966 bytes_in 0 120966 station_ip 5.119.50.125 120966 port 172 120966 unique_id port 120966 remote_ip 10.8.0.234 120970 username mehdizare 120970 mac 120970 bytes_out 0 120970 bytes_in 0 120970 station_ip 5.119.42.227 120970 port 87 120970 unique_id port 120970 remote_ip 10.8.1.42 120972 username barzegar 120972 mac 120972 bytes_out 18873 120972 bytes_in 29624 120972 station_ip 5.119.50.125 120972 port 179 120972 unique_id port 120972 remote_ip 10.8.0.234 120977 username alipour 120977 mac 120977 bytes_out 15363 120977 bytes_in 24213 120977 station_ip 37.129.93.196 120977 port 175 120977 unique_id port 120977 remote_ip 10.8.0.102 120981 username alipour 120981 kill_reason Maximum check online fails reached 120981 mac 120981 bytes_out 0 120981 bytes_in 0 120981 station_ip 37.129.93.196 120981 port 181 120981 unique_id port 120990 username mehdizare 120990 mac 120990 bytes_out 0 120990 bytes_in 0 120990 station_ip 5.119.42.227 120990 port 183 120990 unique_id port 120990 remote_ip 10.8.0.90 120991 username morteza 120991 mac 120991 bytes_out 1246764 120991 bytes_in 20533307 120991 station_ip 113.203.71.62 120991 port 172 120991 unique_id port 120991 remote_ip 10.8.0.46 120997 username tahmasebi 120997 kill_reason Another user logged on this global unique id 120997 mac 120997 bytes_out 0 120997 bytes_in 0 120997 station_ip 5.119.21.90 120997 port 135 120997 unique_id port 120999 username barzegar 120999 mac 120999 bytes_out 0 120999 bytes_in 0 120999 station_ip 5.119.50.125 120999 port 84 120999 unique_id port 120999 remote_ip 10.8.1.174 121000 username morteza 121000 mac 121000 bytes_out 0 121000 bytes_in 0 121000 station_ip 113.203.71.62 121000 port 148 121000 unique_id port 121000 remote_ip 10.8.0.46 121002 username mehdizare 121002 mac 121002 bytes_out 17587 121002 bytes_in 29930 121002 station_ip 5.119.42.227 121002 port 179 120967 bytes_out 0 120967 bytes_in 0 120967 station_ip 151.235.76.119 120967 port 122 120967 unique_id port 120968 username barzegar 120968 mac 120968 bytes_out 2960 120968 bytes_in 5532 120968 station_ip 5.119.50.125 120968 port 172 120968 unique_id port 120968 remote_ip 10.8.0.234 120969 username barzegar 120969 mac 120969 bytes_out 0 120969 bytes_in 0 120969 station_ip 5.119.50.125 120969 port 176 120969 unique_id port 120969 remote_ip 10.8.0.234 120974 username mirzaei 120974 mac 120974 bytes_out 0 120974 bytes_in 0 120974 station_ip 5.120.169.128 120974 port 84 120974 unique_id port 120974 remote_ip 10.8.1.30 120975 username barzegar 120975 mac 120975 bytes_out 0 120975 bytes_in 0 120975 station_ip 5.119.50.125 120975 port 89 120975 unique_id port 120975 remote_ip 10.8.1.174 120979 username tahmasebi 120979 kill_reason Another user logged on this global unique id 120979 mac 120979 bytes_out 0 120979 bytes_in 0 120979 station_ip 5.119.21.90 120979 port 135 120979 unique_id port 120980 username mirzaei 120980 mac 120980 bytes_out 0 120980 bytes_in 0 120980 station_ip 5.120.131.48 120980 port 180 120980 unique_id port 120980 remote_ip 10.8.0.66 120983 username barzegar 120983 mac 120983 bytes_out 0 120983 bytes_in 0 120983 station_ip 5.119.50.125 120983 port 84 120983 unique_id port 120983 remote_ip 10.8.1.174 120986 username mosi 120986 kill_reason Another user logged on this global unique id 120986 mac 120986 bytes_out 0 120986 bytes_in 0 120986 station_ip 151.235.76.119 120986 port 122 120986 unique_id port 120987 username mehdizare 120987 mac 120987 bytes_out 19906 120987 bytes_in 20171 120987 station_ip 5.119.42.227 120987 port 87 120987 unique_id port 120987 remote_ip 10.8.1.42 120988 username sedighe 120988 mac 120988 bytes_out 0 120988 bytes_in 0 120988 station_ip 37.129.234.199 120988 port 182 120988 unique_id port 120988 remote_ip 10.8.0.146 120989 username hosseine 120989 mac 120989 bytes_out 238505 120989 bytes_in 333736 120989 station_ip 37.129.228.5 120989 port 148 120989 unique_id port 120989 remote_ip 10.8.0.238 120992 username barzegar 120992 mac 120992 bytes_out 0 120992 bytes_in 0 120992 station_ip 5.119.50.125 120992 port 84 120992 unique_id port 120992 remote_ip 10.8.1.174 120993 username avaanna 120993 mac 120993 bytes_out 1310732 120993 bytes_in 22491245 120993 station_ip 83.122.102.203 120993 port 179 120993 unique_id port 120993 remote_ip 10.8.0.98 120998 username mirzaei 120998 kill_reason Another user logged on this global unique id 120998 mac 120998 bytes_out 0 120998 bytes_in 0 120998 station_ip 5.120.131.48 120998 port 176 120998 unique_id port 120998 remote_ip 10.8.0.66 121001 username mohammadjavad 121001 mac 121001 bytes_out 0 121001 bytes_in 0 121001 station_ip 83.122.192.35 121001 port 175 121001 unique_id port 121001 remote_ip 10.8.0.142 121003 username kordestani 121003 mac 121003 bytes_out 1113989 121003 bytes_in 21588143 121003 station_ip 151.235.113.3 121003 port 85 121003 unique_id port 121003 remote_ip 10.8.1.98 121008 username jafari 121008 kill_reason Another user logged on this global unique id 121008 mac 121008 bytes_out 0 121008 bytes_in 0 121008 station_ip 89.47.64.147 121008 port 169 121008 unique_id port 121008 remote_ip 10.8.0.242 121014 username morteza 121014 kill_reason Another user logged on this global unique id 121014 mac 121014 bytes_out 0 121014 bytes_in 0 121014 station_ip 113.203.71.62 121014 port 148 121014 unique_id port 121014 remote_ip 10.8.0.46 120982 bytes_in 12577 120982 station_ip 5.119.42.227 120982 port 87 120982 unique_id port 120982 remote_ip 10.8.1.42 120984 username jafari 120984 mac 120984 bytes_out 5443215 120984 bytes_in 53741098 120984 station_ip 37.44.60.250 120984 port 169 120984 unique_id port 120984 remote_ip 10.8.0.242 120985 username musa 120985 mac 120985 bytes_out 0 120985 bytes_in 0 120985 station_ip 113.203.12.210 120985 port 88 120985 unique_id port 120994 username morteza 120994 mac 120994 bytes_out 0 120994 bytes_in 0 120994 station_ip 113.203.71.62 120994 port 87 120994 unique_id port 120994 remote_ip 10.8.1.62 120995 username mehdizare 120995 mac 120995 bytes_out 0 120995 bytes_in 0 120995 station_ip 5.119.42.227 120995 port 148 120995 unique_id port 120995 remote_ip 10.8.0.90 120996 username morteza 120996 mac 120996 bytes_out 0 120996 bytes_in 0 120996 station_ip 113.203.71.62 120996 port 87 120996 unique_id port 120996 remote_ip 10.8.1.62 121009 username morteza 121009 mac 121009 bytes_out 0 121009 bytes_in 0 121009 station_ip 113.203.71.62 121009 port 148 121009 unique_id port 121009 remote_ip 10.8.0.46 121011 username morteza 121011 mac 121011 bytes_out 0 121011 bytes_in 0 121011 station_ip 113.203.71.62 121011 port 148 121011 unique_id port 121011 remote_ip 10.8.0.46 121012 username amir 121012 kill_reason Another user logged on this global unique id 121012 mac 121012 bytes_out 0 121012 bytes_in 0 121012 station_ip 46.225.210.161 121012 port 180 121012 unique_id port 121012 remote_ip 10.8.0.50 121015 username hamidsalari1 121015 kill_reason Another user logged on this global unique id 121015 mac 121015 bytes_out 0 121015 bytes_in 0 121015 station_ip 83.122.221.55 121015 port 175 121015 unique_id port 121015 remote_ip 10.8.0.226 121020 username barzegar 121020 mac 121020 bytes_out 0 121020 bytes_in 0 121020 station_ip 5.119.50.125 121020 port 84 121020 unique_id port 121020 remote_ip 10.8.1.174 121021 username alireza 121021 unique_id port 121021 terminate_cause Lost-Carrier 121021 bytes_out 8977373 121021 bytes_in 185419443 121021 station_ip 5.113.91.137 121021 port 15729781 121021 nas_port_type Virtual 121021 remote_ip 5.5.5.13 121025 username mehdizare 121025 mac 121025 bytes_out 10296 121025 bytes_in 16187 121025 station_ip 5.119.42.227 121025 port 148 121025 unique_id port 121025 remote_ip 10.8.0.90 121026 username jafari 121026 kill_reason Another user logged on this global unique id 121026 mac 121026 bytes_out 0 121026 bytes_in 0 121026 station_ip 89.47.64.147 121026 port 169 121026 unique_id port 121029 username houshang 121029 mac 121029 bytes_out 79335 121029 bytes_in 248794 121029 station_ip 5.119.133.251 121029 port 186 121029 unique_id port 121029 remote_ip 10.8.0.22 121036 username mohammadjavad 121036 mac 121036 bytes_out 597533 121036 bytes_in 11174244 121036 station_ip 83.123.237.111 121036 port 183 121036 unique_id port 121036 remote_ip 10.8.0.142 121041 username forozande 121041 mac 121041 bytes_out 0 121041 bytes_in 0 121041 station_ip 37.129.175.5 121041 port 172 121041 unique_id port 121041 remote_ip 10.8.0.74 121049 username aminvpn 121049 mac 121049 bytes_out 0 121049 bytes_in 0 121049 station_ip 5.120.23.92 121049 port 185 121049 unique_id port 121049 remote_ip 10.8.0.14 121052 username milan 121052 kill_reason Another user logged on this global unique id 121052 mac 121052 bytes_out 0 121052 bytes_in 0 121052 station_ip 5.120.155.249 121052 port 179 121052 unique_id port 121053 username aminvpn 121002 unique_id port 121002 remote_ip 10.8.0.90 121004 username morteza 121004 mac 121004 bytes_out 16059 121004 bytes_in 30403 121004 station_ip 113.203.71.62 121004 port 148 121004 unique_id port 121004 remote_ip 10.8.0.46 121005 username barzegar 121005 mac 121005 bytes_out 0 121005 bytes_in 0 121005 station_ip 5.119.50.125 121005 port 175 121005 unique_id port 121005 remote_ip 10.8.0.234 121006 username kordestani 121006 mac 121006 bytes_out 20596 121006 bytes_in 43515 121006 station_ip 151.235.113.3 121006 port 84 121006 unique_id port 121006 remote_ip 10.8.1.98 121007 username forozande 121007 mac 121007 bytes_out 686281 121007 bytes_in 10403664 121007 station_ip 83.123.131.115 121007 port 179 121007 unique_id port 121007 remote_ip 10.8.0.74 121010 username ahmadipour 121010 unique_id port 121010 terminate_cause Lost-Carrier 121010 bytes_out 130754 121010 bytes_in 236239 121010 station_ip 37.129.119.94 121010 port 15729782 121010 nas_port_type Virtual 121010 remote_ip 5.5.5.46 121013 username mahdiyehalizadeh 121013 mac 121013 bytes_out 18373 121013 bytes_in 33428 121013 station_ip 37.129.166.78 121013 port 184 121013 unique_id port 121013 remote_ip 10.8.0.82 121019 username mehdizare 121019 mac 121019 bytes_out 60275 121019 bytes_in 61287 121019 station_ip 5.119.42.227 121019 port 183 121019 unique_id port 121019 remote_ip 10.8.0.90 121023 username amir 121023 kill_reason Another user logged on this global unique id 121023 mac 121023 bytes_out 0 121023 bytes_in 0 121023 station_ip 46.225.210.161 121023 port 180 121023 unique_id port 121027 username barzegar 121027 mac 121027 bytes_out 0 121027 bytes_in 0 121027 station_ip 5.119.50.125 121027 port 184 121027 unique_id port 121027 remote_ip 10.8.0.234 121028 username barzegar 121028 mac 121028 bytes_out 0 121028 bytes_in 0 121028 station_ip 5.119.50.125 121028 port 187 121028 unique_id port 121028 remote_ip 10.8.0.234 121032 username jafari 121032 kill_reason Another user logged on this global unique id 121032 mac 121032 bytes_out 0 121032 bytes_in 0 121032 station_ip 89.47.64.147 121032 port 169 121032 unique_id port 121033 username hosseine 121033 kill_reason Another user logged on this global unique id 121033 mac 121033 bytes_out 0 121033 bytes_in 0 121033 station_ip 37.129.228.5 121033 port 182 121033 unique_id port 121033 remote_ip 10.8.0.238 121037 username sedighe 121037 mac 121037 bytes_out 311614 121037 bytes_in 133732 121037 station_ip 37.129.68.18 121037 port 188 121037 unique_id port 121037 remote_ip 10.8.0.146 121039 username barzegar 121039 mac 121039 bytes_out 0 121039 bytes_in 0 121039 station_ip 5.119.50.125 121039 port 84 121039 unique_id port 121039 remote_ip 10.8.1.174 121040 username amir 121040 mac 121040 bytes_out 0 121040 bytes_in 0 121040 station_ip 46.225.210.161 121040 port 180 121040 unique_id port 121043 username mosi 121043 kill_reason Another user logged on this global unique id 121043 mac 121043 bytes_out 0 121043 bytes_in 0 121043 station_ip 151.235.76.119 121043 port 122 121043 unique_id port 121044 username sedighe 121044 mac 121044 bytes_out 0 121044 bytes_in 0 121044 station_ip 37.129.68.18 121044 port 183 121044 unique_id port 121044 remote_ip 10.8.0.146 121045 username amir 121045 mac 121045 bytes_out 61464 121045 bytes_in 240277 121045 station_ip 46.225.210.161 121045 port 180 121045 unique_id port 121045 remote_ip 10.8.0.50 121046 username amir 121046 mac 121046 bytes_out 0 121046 bytes_in 0 121046 station_ip 46.225.210.161 121016 username jafari 121016 kill_reason Another user logged on this global unique id 121016 mac 121016 bytes_out 0 121016 bytes_in 0 121016 station_ip 89.47.64.147 121016 port 169 121016 unique_id port 121017 username hamidsalari1 121017 mac 121017 bytes_out 0 121017 bytes_in 0 121017 station_ip 83.122.221.55 121017 port 175 121017 unique_id port 121018 username morteza 121018 mac 121018 bytes_out 0 121018 bytes_in 0 121018 station_ip 113.203.71.62 121018 port 148 121018 unique_id port 121022 username barzegar 121022 mac 121022 bytes_out 0 121022 bytes_in 0 121022 station_ip 5.119.50.125 121022 port 84 121022 unique_id port 121022 remote_ip 10.8.1.174 121024 username barzegar 121024 kill_reason Maximum check online fails reached 121024 mac 121024 bytes_out 0 121024 bytes_in 0 121024 station_ip 5.119.50.125 121024 port 175 121024 unique_id port 121030 username barzegar 121030 mac 121030 bytes_out 4239 121030 bytes_in 6054 121030 station_ip 5.119.50.125 121030 port 187 121030 unique_id port 121030 remote_ip 10.8.0.234 121031 username avaanna 121031 mac 121031 bytes_out 205309 121031 bytes_in 1220335 121031 station_ip 83.122.102.203 121031 port 172 121031 unique_id port 121031 remote_ip 10.8.0.98 121034 username alihosseini1 121034 mac 121034 bytes_out 543347 121034 bytes_in 2172590 121034 station_ip 5.119.180.172 121034 port 184 121034 unique_id port 121034 remote_ip 10.8.0.166 121035 username amir 121035 kill_reason Another user logged on this global unique id 121035 mac 121035 bytes_out 0 121035 bytes_in 0 121035 station_ip 46.225.210.161 121035 port 180 121035 unique_id port 121038 username milan 121038 kill_reason Another user logged on this global unique id 121038 mac 121038 bytes_out 0 121038 bytes_in 0 121038 station_ip 5.120.155.249 121038 port 179 121038 unique_id port 121038 remote_ip 10.8.0.218 121042 username forozande 121042 mac 121042 bytes_out 0 121042 bytes_in 0 121042 station_ip 37.129.175.5 121042 port 84 121042 unique_id port 121042 remote_ip 10.8.1.102 121047 username musa 121047 kill_reason Another user logged on this global unique id 121047 mac 121047 bytes_out 0 121047 bytes_in 0 121047 station_ip 113.203.12.210 121047 port 88 121047 unique_id port 121047 remote_ip 10.8.1.10 121054 username mohammadmahdi 121054 kill_reason Another user logged on this global unique id 121054 mac 121054 bytes_out 0 121054 bytes_in 0 121054 station_ip 5.119.220.234 121054 port 186 121054 unique_id port 121054 remote_ip 10.8.0.54 121055 username sabaghnezhad 121055 mac 121055 bytes_out 0 121055 bytes_in 0 121055 station_ip 83.123.170.87 121055 port 170 121055 unique_id port 121055 remote_ip 10.8.0.186 121059 username mehdizare 121059 mac 121059 bytes_out 0 121059 bytes_in 0 121059 station_ip 5.119.42.227 121059 port 148 121059 unique_id port 121059 remote_ip 10.8.0.90 121061 username mosi 121061 kill_reason Another user logged on this global unique id 121061 mac 121061 bytes_out 0 121061 bytes_in 0 121061 station_ip 151.235.76.119 121061 port 122 121061 unique_id port 121062 username sedighe 121062 mac 121062 bytes_out 0 121062 bytes_in 0 121062 station_ip 37.129.0.253 121062 port 180 121062 unique_id port 121062 remote_ip 10.8.0.146 121066 username mosi 121066 kill_reason Another user logged on this global unique id 121066 mac 121066 bytes_out 0 121066 bytes_in 0 121066 station_ip 151.235.76.119 121066 port 122 121066 unique_id port 121070 username sedighe 121070 mac 121070 bytes_out 0 121070 bytes_in 0 121070 station_ip 37.129.0.253 121046 port 180 121046 unique_id port 121046 remote_ip 10.8.0.50 121048 username sedighe 121048 mac 121048 bytes_out 0 121048 bytes_in 0 121048 station_ip 37.129.0.253 121048 port 172 121048 unique_id port 121048 remote_ip 10.8.0.146 121050 username mosi 121050 kill_reason Another user logged on this global unique id 121050 mac 121050 bytes_out 0 121050 bytes_in 0 121050 station_ip 151.235.76.119 121050 port 122 121050 unique_id port 121051 username amir 121051 mac 121051 bytes_out 0 121051 bytes_in 0 121051 station_ip 46.225.210.161 121051 port 172 121051 unique_id port 121051 remote_ip 10.8.0.50 121056 username mahdiyehalizadeh 121056 mac 121056 bytes_out 0 121056 bytes_in 0 121056 station_ip 83.122.244.7 121056 port 183 121056 unique_id port 121056 remote_ip 10.8.0.82 121058 username musa 121058 mac 121058 bytes_out 0 121058 bytes_in 0 121058 station_ip 113.203.12.210 121058 port 88 121058 unique_id port 121060 username amir 121060 mac 121060 bytes_out 0 121060 bytes_in 0 121060 station_ip 46.225.210.161 121060 port 172 121060 unique_id port 121060 remote_ip 10.8.0.50 121063 username milan 121063 mac 121063 bytes_out 0 121063 bytes_in 0 121063 station_ip 5.120.155.249 121063 port 179 121063 unique_id port 121064 username mehdizare 121064 mac 121064 bytes_out 38142 121064 bytes_in 70099 121064 station_ip 5.119.42.227 121064 port 87 121064 unique_id port 121064 remote_ip 10.8.1.42 121068 username alihosseini1 121068 mac 121068 bytes_out 3672171 121068 bytes_in 26440156 121068 station_ip 5.119.180.172 121068 port 184 121068 unique_id port 121068 remote_ip 10.8.0.166 121069 username amir 121069 mac 121069 bytes_out 0 121069 bytes_in 0 121069 station_ip 46.225.210.161 121069 port 172 121069 unique_id port 121069 remote_ip 10.8.0.50 121072 username jafari 121072 kill_reason Another user logged on this global unique id 121072 mac 121072 bytes_out 0 121072 bytes_in 0 121072 station_ip 89.47.64.147 121072 port 169 121072 unique_id port 121073 username avaanna 121073 mac 121073 bytes_out 1652588 121073 bytes_in 22573640 121073 station_ip 83.122.102.203 121073 port 187 121073 unique_id port 121073 remote_ip 10.8.0.98 121074 username avaanna 121074 mac 121074 bytes_out 47270 121074 bytes_in 460349 121074 station_ip 83.122.102.203 121074 port 89 121074 unique_id port 121074 remote_ip 10.8.1.46 121076 username mohammadmahdi 121076 kill_reason Another user logged on this global unique id 121076 mac 121076 bytes_out 0 121076 bytes_in 0 121076 station_ip 5.119.220.234 121076 port 186 121076 unique_id port 121077 username avaanna 121077 mac 121077 bytes_out 0 121077 bytes_in 0 121077 station_ip 83.122.102.203 121077 port 180 121077 unique_id port 121077 remote_ip 10.8.0.98 121084 username sedighe 121084 mac 121084 bytes_out 0 121084 bytes_in 0 121084 station_ip 83.123.36.227 121084 port 172 121084 unique_id port 121084 remote_ip 10.8.0.146 121091 username amir 121091 mac 121091 bytes_out 0 121091 bytes_in 0 121091 station_ip 46.225.210.161 121091 port 179 121091 unique_id port 121091 remote_ip 10.8.0.50 121093 username jafari 121093 kill_reason Another user logged on this global unique id 121093 mac 121093 bytes_out 0 121093 bytes_in 0 121093 station_ip 89.47.64.147 121093 port 169 121093 unique_id port 121097 username farhad1 121097 mac 121097 bytes_out 0 121097 bytes_in 0 121097 station_ip 5.120.170.98 121097 port 148 121097 unique_id port 121097 remote_ip 10.8.0.26 121098 username forozande 121053 unique_id port 121053 terminate_cause Lost-Carrier 121053 bytes_out 699063 121053 bytes_in 10436621 121053 station_ip 5.119.225.63 121053 port 15729784 121053 nas_port_type Virtual 121053 remote_ip 5.5.5.48 121057 username barzegar 121057 mac 121057 bytes_out 0 121057 bytes_in 0 121057 station_ip 5.119.50.125 121057 port 85 121057 unique_id port 121057 remote_ip 10.8.1.174 121065 username sabaghnezhad 121065 mac 121065 bytes_out 0 121065 bytes_in 0 58689 username arezoo 58689 kill_reason Maximum check online fails reached 58689 mac 5.237.84.233:50208: Unknown host 58689 bytes_out 0 58689 bytes_in 0 58689 station_ip 5.237.84.233:50208 58689 port 1017 58689 unique_id port 121065 station_ip 83.123.170.87 121065 port 170 121065 unique_id port 121065 remote_ip 10.8.0.186 121067 username amir 121067 mac 121067 bytes_out 0 121067 bytes_in 0 121067 station_ip 46.225.210.161 121067 port 172 121067 unique_id port 121067 remote_ip 10.8.0.50 121071 username mosi 121071 kill_reason Another user logged on this global unique id 121071 mac 121071 bytes_out 0 121071 bytes_in 0 121071 station_ip 151.235.76.119 121071 port 122 121071 unique_id port 121075 username amir 121075 mac 121075 bytes_out 0 121075 bytes_in 0 121075 station_ip 46.225.210.161 121075 port 179 121075 unique_id port 121075 remote_ip 10.8.0.50 121078 username amir 121078 mac 121078 bytes_out 0 121078 bytes_in 0 121078 station_ip 46.225.210.161 121078 port 179 121078 unique_id port 121078 remote_ip 10.8.0.50 121080 username aminvpn 121080 unique_id port 121080 terminate_cause Lost-Carrier 121080 bytes_out 36569 121080 bytes_in 186539 121080 station_ip 5.119.234.34 121080 port 15729786 121080 nas_port_type Virtual 121080 remote_ip 5.5.5.66 121082 username sabaghnezhad 121082 mac 121082 bytes_out 0 121082 bytes_in 0 121082 station_ip 83.123.170.87 121082 port 170 121082 unique_id port 121082 remote_ip 10.8.0.186 121083 username milan 121083 mac 121083 bytes_out 568447 121083 bytes_in 812111 121083 station_ip 5.119.194.217 121083 port 88 121083 unique_id port 121083 remote_ip 10.8.1.178 121085 username jafari 121085 kill_reason Another user logged on this global unique id 121085 mac 121085 bytes_out 0 121085 bytes_in 0 121085 station_ip 89.47.64.147 121085 port 169 121085 unique_id port 121086 username mehdizare 121086 mac 121086 bytes_out 36871 121086 bytes_in 49874 121086 station_ip 5.119.42.227 121086 port 87 121086 unique_id port 121086 remote_ip 10.8.1.42 121089 username malekpoir 121089 mac 121089 bytes_out 0 121089 bytes_in 0 121089 station_ip 5.120.66.141 121089 port 160 121089 unique_id port 121090 username avaanna 121090 mac 121090 bytes_out 650206 121090 bytes_in 6749436 121090 station_ip 83.122.102.203 121090 port 89 121090 unique_id port 121090 remote_ip 10.8.1.46 121094 username mansur 121094 kill_reason Maximum check online fails reached 121094 mac 121094 bytes_out 0 121094 bytes_in 0 121094 station_ip 5.119.16.247 121094 port 160 121094 unique_id port 121096 username sade 121096 unique_id port 121096 terminate_cause Lost-Carrier 121096 bytes_out 725608 58746 username arezoo 58746 kill_reason Maximum check online fails reached 58746 mac 5.237.84.233:54281: Unknown host 58746 bytes_out 0 58746 bytes_in 0 121096 bytes_in 11484207 121096 station_ip 5.119.15.95 121096 port 15729789 121096 nas_port_type Virtual 121096 remote_ip 5.5.5.2 121100 username sabaghnezhad 121100 mac 121100 bytes_out 243104 121100 bytes_in 259904 121100 station_ip 83.123.170.87 121100 port 90 121100 unique_id port 121100 remote_ip 10.8.1.130 121070 port 148 121070 unique_id port 121070 remote_ip 10.8.0.146 121079 username aminvpn 121079 unique_id port 121079 terminate_cause Lost-Carrier 121079 bytes_out 412248 121079 bytes_in 5200351 121079 station_ip 5.119.234.34 121079 port 15729785 121079 nas_port_type Virtual 121079 remote_ip 5.5.5.57 121081 username mosi 121081 kill_reason Another user logged on this global unique id 121081 mac 121081 bytes_out 0 121081 bytes_in 0 121081 station_ip 151.235.76.119 121081 port 122 121081 unique_id port 121087 username mosi 121087 kill_reason Another user logged on this global unique id 121087 mac 121087 bytes_out 0 121087 bytes_in 0 121087 station_ip 151.235.76.119 121087 port 122 121087 unique_id port 121088 username forozande 121088 kill_reason Another user logged on this global unique id 121088 mac 121088 bytes_out 0 121088 bytes_in 0 121088 station_ip 83.123.231.226 121088 port 84 121088 unique_id port 121088 remote_ip 10.8.1.102 121092 username amirabbas 121092 unique_id port 121092 terminate_cause User-Request 121092 bytes_out 21472782 121092 bytes_in 564131076 121092 station_ip 37.27.19.135 121092 port 15729777 121092 nas_port_type Virtual 121092 remote_ip 5.5.5.93 121095 username mohammadmahdi 121095 mac 121095 bytes_out 0 121095 bytes_in 0 121095 station_ip 5.119.220.234 121095 port 186 121095 unique_id port 121101 username jafari 121101 kill_reason Another user logged on this global unique id 121101 mac 121101 bytes_out 0 121101 bytes_in 0 121101 station_ip 89.47.64.147 121101 port 169 121101 unique_id port 121102 username mehdizare 121102 mac 121102 bytes_out 10644 121102 bytes_in 19479 121102 station_ip 5.119.88.232 121102 port 84 121102 unique_id port 121102 remote_ip 10.8.1.42 121107 username mehdizare 121107 mac 121107 bytes_out 9512 121107 bytes_in 13351 121107 station_ip 5.119.88.232 121107 port 84 121107 unique_id port 121107 remote_ip 10.8.1.42 121112 username amir 121112 mac 121112 bytes_out 181413 121112 bytes_in 432976 121112 station_ip 46.225.210.161 121112 port 88 121112 unique_id port 121112 remote_ip 10.8.1.22 121113 username amir 121113 mac 121113 bytes_out 0 121113 bytes_in 0 121113 station_ip 46.225.210.161 121113 port 172 121113 unique_id port 121113 remote_ip 10.8.0.50 121116 username mamal 121116 unique_id port 121116 terminate_cause User-Request 121116 bytes_out 7933548 121116 bytes_in 257452043 121116 station_ip 37.129.177.87 121116 port 15729790 121116 nas_port_type Virtual 121116 remote_ip 5.5.5.20 121117 username mosi 121117 kill_reason Another user logged on this global unique id 121117 mac 121117 bytes_out 0 121117 bytes_in 0 121117 station_ip 151.235.76.119 121117 port 122 121117 unique_id port 121118 username arash 121118 mac 121118 bytes_out 0 121118 bytes_in 0 121118 station_ip 37.27.3.116 121118 port 183 121118 unique_id port 121118 remote_ip 10.8.0.114 121120 username jafari 121120 kill_reason Another user logged on this global unique id 121120 mac 121120 bytes_out 0 121120 bytes_in 0 121120 station_ip 89.47.64.147 121120 port 169 121120 unique_id port 121121 username amir 121121 mac 58732 username arezoo 58732 kill_reason Maximum check online fails reached 58732 mac 5.237.84.233:52951: Unknown host 58732 bytes_out 0 58732 bytes_in 0 58732 station_ip 5.237.84.233:52951 58732 port 1017 58732 unique_id port 121121 bytes_out 0 121121 bytes_in 0 121121 station_ip 46.225.210.161 121121 port 183 121121 unique_id port 121121 remote_ip 10.8.0.50 121124 username mehdizare 121124 mac 121124 bytes_out 20671 121124 bytes_in 33514 121124 station_ip 5.119.88.232 121124 port 84 121124 unique_id port 121098 mac 121098 bytes_out 0 121098 bytes_in 0 121098 station_ip 83.123.231.226 121098 port 84 121098 unique_id port 121099 username mehdizare 121099 mac 121099 bytes_out 10190 121099 bytes_in 15532 121099 station_ip 5.119.88.232 121099 port 88 121099 unique_id port 121099 remote_ip 10.8.1.42 121103 username hosseine 121103 mac 121103 bytes_out 0 121103 bytes_in 0 121103 station_ip 37.129.228.5 121103 port 182 121103 unique_id port 121105 username arabpour 121105 unique_id port 121105 terminate_cause User-Request 121105 bytes_out 393 121105 bytes_in 228 121105 station_ip 113.203.126.222 121105 port 15729791 121105 nas_port_type Virtual 121105 remote_ip 5.5.5.22 121106 username sedighe 121106 mac 121106 bytes_out 0 121106 bytes_in 0 121106 station_ip 83.123.36.227 121106 port 170 121106 unique_id port 121106 remote_ip 10.8.0.146 121108 username mahdiyehalizadeh 121108 mac 121108 bytes_out 0 121108 bytes_in 0 121108 station_ip 83.122.244.7 121108 port 172 121108 unique_id port 121108 remote_ip 10.8.0.82 121110 username houshang 121110 mac 121110 bytes_out 545291 121110 bytes_in 2696605 121110 station_ip 5.120.18.193 121110 port 89 121110 unique_id port 121110 remote_ip 10.8.1.70 121111 username avaanna 121111 mac 121111 bytes_out 2172129 121111 bytes_in 28397643 121111 station_ip 83.122.102.203 121111 port 87 121111 unique_id port 121111 remote_ip 10.8.1.46 121119 username arash 121119 mac 121119 bytes_out 0 121119 bytes_in 0 121119 station_ip 37.27.3.116 121119 port 184 121119 unique_id port 121119 remote_ip 10.8.0.114 121122 username mohammadmahdi 121122 mac 121122 bytes_out 2819739 121122 bytes_in 27327503 121122 station_ip 5.119.220.234 121122 port 170 121122 unique_id port 121122 remote_ip 10.8.0.54 121126 username mosi 121126 kill_reason Another user logged on this global unique id 121126 mac 121126 bytes_out 0 121126 bytes_in 0 121126 station_ip 151.235.76.119 121126 port 122 121126 unique_id port 121128 username amir 121128 mac 121128 bytes_out 0 121128 bytes_in 0 121128 station_ip 46.225.210.161 121128 port 170 121128 unique_id port 121128 remote_ip 10.8.0.50 121129 username mehdizare 121129 mac 121129 bytes_out 8675 121129 bytes_in 11641 121129 station_ip 5.119.88.232 121129 port 84 121129 unique_id port 121129 remote_ip 10.8.1.42 121130 username jafari 121130 kill_reason Another user logged on this global unique id 121130 mac 121130 bytes_out 0 121130 bytes_in 0 121130 station_ip 89.47.64.147 121130 port 169 121130 unique_id port 121131 username tahmasebi 121131 kill_reason Another user logged on this global unique id 121131 mac 121131 bytes_out 0 121131 bytes_in 0 121131 station_ip 5.119.21.90 121131 port 135 121131 unique_id port 121132 username zare 121132 kill_reason Another user logged on this global unique id 121132 mac 121132 bytes_out 0 121132 bytes_in 0 121132 station_ip 37.27.4.24 121132 port 182 121132 unique_id port 121132 remote_ip 10.8.0.18 121134 username hamidsalari 121134 kill_reason Another user logged on this global unique id 121134 mac 121134 bytes_out 0 121134 bytes_in 0 121134 station_ip 5.120.69.80 121134 port 157 121134 unique_id port 121139 username zare 121139 mac 121139 bytes_out 0 121139 bytes_in 0 121139 station_ip 37.27.4.24 121139 port 182 121139 unique_id port 121139 remote_ip 10.8.0.18 121142 username zare 121142 mac 121142 bytes_out 0 121142 bytes_in 0 121142 station_ip 37.27.4.24 121142 port 170 121142 unique_id port 121142 remote_ip 10.8.0.18 121149 username naeimeh 121104 username sabaghnezhad 121104 mac 121104 bytes_out 40640 121104 bytes_in 57997 121104 station_ip 83.123.170.87 121104 port 179 121104 unique_id port 121104 remote_ip 10.8.0.186 121109 username arabpour 121109 unique_id port 121109 terminate_cause User-Request 121109 bytes_out 93455 121109 bytes_in 512116 121109 station_ip 113.203.126.222 121109 port 15729792 121109 nas_port_type Virtual 121109 remote_ip 5.5.5.23 121114 username sabaghnezhad 121114 mac 121114 bytes_out 0 121114 bytes_in 0 121114 station_ip 83.123.170.87 121114 port 170 121114 unique_id port 121114 remote_ip 10.8.0.186 121115 username rezasekonji 121115 mac 121115 bytes_out 0 121115 bytes_in 0 121115 station_ip 83.123.57.157 121115 port 180 121115 unique_id port 121115 remote_ip 10.8.0.130 121123 username mosi 121123 kill_reason Another user logged on this global unique id 121123 mac 121123 bytes_out 0 121123 bytes_in 0 121123 station_ip 151.235.76.119 121123 port 122 121123 unique_id port 121127 username musa 121127 kill_reason Another user logged on this global unique id 121127 mac 121127 bytes_out 0 121127 bytes_in 0 121127 station_ip 113.203.12.210 121127 port 85 121127 unique_id port 121127 remote_ip 10.8.1.10 121133 username mehdizare 121133 mac 121133 bytes_out 0 121133 bytes_in 0 121133 station_ip 5.119.88.232 121133 port 84 121133 unique_id port 121133 remote_ip 10.8.1.42 121137 username zare 121137 mac 121137 bytes_out 0 121137 bytes_in 0 121137 station_ip 37.27.4.24 121137 port 182 121137 unique_id port 121138 username zare 121138 mac 121138 bytes_out 0 121138 bytes_in 0 121138 station_ip 37.27.4.24 121138 port 182 121138 unique_id port 121138 remote_ip 10.8.0.18 121144 username mosi 121144 kill_reason Another user logged on this global unique id 121144 mac 121144 bytes_out 0 121144 bytes_in 0 121144 station_ip 151.235.76.119 121144 port 122 121144 unique_id port 121145 username mehdizare 121145 mac 121145 bytes_out 0 121145 bytes_in 0 121145 station_ip 5.119.88.232 121145 port 88 121145 unique_id port 121145 remote_ip 10.8.1.42 121146 username zare 121146 mac 121146 bytes_out 0 121146 bytes_in 0 121146 station_ip 37.27.4.24 121146 port 88 121146 unique_id port 121146 remote_ip 10.8.1.58 121148 username zare 121148 mac 121148 bytes_out 0 121148 bytes_in 0 121148 station_ip 37.27.4.24 121148 port 88 121148 unique_id port 121148 remote_ip 10.8.1.58 121152 username amir 121152 mac 121152 bytes_out 190811 121152 bytes_in 1075999 121152 station_ip 46.225.210.161 121152 port 170 121152 unique_id port 121152 remote_ip 10.8.0.50 121153 username zare 121153 mac 121153 bytes_out 0 121153 bytes_in 0 121153 station_ip 37.27.4.24 121153 port 170 121153 unique_id port 121153 remote_ip 10.8.0.18 58771 username arezoo 58771 kill_reason Maximum check online fails reached 58771 mac 5.237.84.233:49224: Unknown host 58771 bytes_out 0 58771 bytes_in 0 58771 station_ip 5.237.84.233:49224 58771 port 1017 58771 unique_id port 121158 username mosi 121158 kill_reason Another user logged on this global unique id 121158 mac 121158 bytes_out 0 121158 bytes_in 0 121158 station_ip 151.235.76.119 121158 port 122 121158 unique_id port 121162 username barzegar 121162 mac 121162 bytes_out 0 121162 bytes_in 0 121162 station_ip 5.120.177.201 121162 port 182 121162 unique_id port 121162 remote_ip 10.8.0.234 121163 username alihosseini1 121163 mac 121163 bytes_out 0 121163 bytes_in 0 121163 station_ip 5.119.37.92 121163 port 169 121163 unique_id port 121124 remote_ip 10.8.1.42 121125 username farhad1 121125 mac 121125 bytes_out 5083655 121125 bytes_in 25239359 121125 station_ip 5.119.98.214 121125 port 148 121125 unique_id port 121125 remote_ip 10.8.0.26 121135 username mehdizare 121135 mac 121135 bytes_out 0 121135 bytes_in 0 121135 station_ip 5.119.88.232 121135 port 170 121135 unique_id port 121135 remote_ip 10.8.0.90 121136 username mosi 121136 kill_reason Another user logged on this global unique id 121136 mac 121136 bytes_out 0 121136 bytes_in 0 121136 station_ip 151.235.76.119 121136 port 122 121136 unique_id port 121140 username amir 121140 mac 121140 bytes_out 329660 121140 bytes_in 588056 121140 station_ip 46.225.210.161 121140 port 170 121140 unique_id port 121140 remote_ip 10.8.0.50 121141 username alihosseini1 121141 mac 121141 bytes_out 95803 121141 bytes_in 51844 121141 station_ip 5.119.37.92 121141 port 87 121141 unique_id port 121141 remote_ip 10.8.1.106 121143 username mehdizare 121143 mac 121143 bytes_out 0 121143 bytes_in 0 121143 station_ip 5.119.88.232 121143 port 88 121143 unique_id port 121143 remote_ip 10.8.1.42 121147 username alihosseini1 121147 mac 121147 bytes_out 13229 121147 bytes_in 17966 121147 station_ip 5.119.37.92 121147 port 87 121147 unique_id port 121147 remote_ip 10.8.1.106 121150 username alihosseini1 121150 mac 121150 bytes_out 11340 121150 bytes_in 20027 121150 station_ip 5.119.37.92 121150 port 87 121150 unique_id port 121150 remote_ip 10.8.1.106 121157 username zare 121157 mac 121157 bytes_out 0 121157 bytes_in 0 121157 station_ip 37.27.4.24 121157 port 88 121157 unique_id port 121157 remote_ip 10.8.1.58 121160 username amir 121160 mac 121160 bytes_out 0 121160 bytes_in 0 121160 station_ip 46.225.210.161 121160 port 182 121160 unique_id port 121160 remote_ip 10.8.0.50 121164 username zare 121164 mac 121164 bytes_out 2211094 121164 bytes_in 44180323 121164 station_ip 37.27.4.24 121164 port 88 121164 unique_id port 121164 remote_ip 10.8.1.58 121167 username mirzaei 121167 mac 121167 bytes_out 10406 121167 bytes_in 20963 121167 station_ip 5.120.131.48 121167 port 88 121167 unique_id port 121167 remote_ip 10.8.1.30 121170 username mirzaei 121170 mac 121170 bytes_out 0 121170 bytes_in 0 121170 station_ip 5.120.131.48 121170 port 176 121170 unique_id port 121170 remote_ip 10.8.0.66 121172 username farhad1 121172 kill_reason Another user logged on this global unique id 121172 mac 121172 bytes_out 0 121172 bytes_in 0 121172 station_ip 5.119.98.214 121172 port 148 121172 unique_id port 121172 remote_ip 10.8.0.26 121174 username mosi 121174 kill_reason Another user logged on this global unique id 121174 mac 121174 bytes_out 0 121174 bytes_in 0 121174 station_ip 151.235.76.119 121174 port 122 121174 unique_id port 121177 username arash 121177 kill_reason Another user logged on this global unique id 121177 mac 121177 bytes_out 0 121177 bytes_in 0 121177 station_ip 37.27.3.116 121177 port 185 121177 unique_id port 121177 remote_ip 10.8.0.114 121178 username ehsun 121178 mac 121178 bytes_out 2169304 121178 bytes_in 24016439 121178 station_ip 46.225.209.208 121178 port 169 121178 unique_id port 121178 remote_ip 10.8.0.162 121179 username barzegar 121179 mac 121179 bytes_out 58678 121179 bytes_in 70352 121179 station_ip 5.120.177.201 121179 port 183 121179 unique_id port 121179 remote_ip 10.8.0.234 121180 username sabaghnezhad 121180 mac 121180 bytes_out 0 121180 bytes_in 0 121180 station_ip 83.123.170.87 121180 port 172 58746 station_ip 5.237.84.233:54281 58746 port 1017 58746 unique_id port 121149 mac 121149 bytes_out 0 121149 bytes_in 0 121149 station_ip 37.129.4.204 121149 port 183 121149 unique_id port 121149 remote_ip 10.8.0.78 121151 username jafari 121151 mac 121151 bytes_out 0 121151 bytes_in 0 121151 station_ip 89.47.64.147 121151 port 169 121151 unique_id port 121154 username mosi 121154 kill_reason Another user logged on this global unique id 121154 mac 121154 bytes_out 0 121154 bytes_in 0 121154 station_ip 151.235.76.119 121154 port 122 121154 unique_id port 121155 username barzegar 121155 mac 121155 bytes_out 0 121155 bytes_in 0 121155 station_ip 5.120.177.201 121155 port 87 121155 unique_id port 121155 remote_ip 10.8.1.174 121156 username mehdizare 121156 mac 121156 bytes_out 21754 121156 bytes_in 28950 121156 station_ip 5.119.88.232 121156 port 170 121156 unique_id port 121156 remote_ip 10.8.0.90 121159 username musa 121159 kill_reason Another user logged on this global unique id 121159 mac 121159 bytes_out 0 121159 bytes_in 0 121159 station_ip 113.203.12.210 121159 port 85 121159 unique_id port 121161 username barzegar 121161 mac 121161 bytes_out 0 121161 bytes_in 0 121161 station_ip 5.120.177.201 121161 port 89 121161 unique_id port 121161 remote_ip 10.8.1.174 121166 username mirzaei 121166 mac 121166 bytes_out 0 121166 bytes_in 0 121166 station_ip 5.120.131.48 121166 port 176 121166 unique_id port 121175 username mansur 121175 mac 121175 bytes_out 126508 121175 bytes_in 673531 121175 station_ip 5.119.16.247 121175 port 184 121175 unique_id port 121175 remote_ip 10.8.0.210 121181 username mosi 121181 kill_reason Another user logged on this global unique id 121181 mac 121181 bytes_out 0 121181 bytes_in 0 121181 station_ip 151.235.76.119 121181 port 122 121181 unique_id port 121182 username kordestani 121182 kill_reason Another user logged on this global unique id 121182 mac 121182 bytes_out 0 121182 bytes_in 0 121182 station_ip 151.235.105.144 121182 port 84 121182 unique_id port 121186 username farhad1 121186 kill_reason Another user logged on this global unique id 121186 mac 121186 bytes_out 0 121186 bytes_in 0 121186 station_ip 5.119.98.214 121186 port 148 121186 unique_id port 121187 username mosi 121187 kill_reason Another user logged on this global unique id 121187 mac 121187 bytes_out 0 121187 bytes_in 0 121187 station_ip 151.235.76.119 121187 port 122 121187 unique_id port 121191 username musa 121191 mac 121191 bytes_out 0 121191 bytes_in 0 121191 station_ip 113.203.12.210 121191 port 85 121191 unique_id port 121195 username mansur 121195 mac 121195 bytes_out 0 121195 bytes_in 0 121195 station_ip 5.119.225.222 121195 port 183 121195 unique_id port 121195 remote_ip 10.8.0.210 121206 username mahdixz 121206 unique_id port 121206 terminate_cause User-Request 121206 bytes_out 757744 121206 bytes_in 49335021 121206 station_ip 5.119.246.235 121206 port 15729801 121206 nas_port_type Virtual 121206 remote_ip 5.5.5.36 121212 username farhad1 121212 mac 121212 bytes_out 2291702 121212 bytes_in 15526381 121212 station_ip 5.119.30.80 121212 port 148 121212 unique_id port 121212 remote_ip 10.8.0.26 121223 username mosi 121223 kill_reason Another user logged on this global unique id 121223 mac 121223 bytes_out 0 121223 bytes_in 0 121223 station_ip 151.235.76.119 121223 port 122 121223 unique_id port 121224 username rasoul56 121224 mac 121224 bytes_out 379428 121224 bytes_in 2061886 121224 station_ip 37.129.160.55 121224 port 172 121224 unique_id port 121163 remote_ip 10.8.0.166 121165 username alihosseini1 121165 mac 121165 bytes_out 0 121165 bytes_in 0 121165 station_ip 5.119.216.21 121165 port 182 121165 unique_id port 121165 remote_ip 10.8.0.166 121168 username mehdizare 121168 mac 121168 bytes_out 16797 121168 bytes_in 22033 121168 station_ip 5.119.88.232 121168 port 87 121168 unique_id port 121168 remote_ip 10.8.1.42 121169 username mirzaei 121169 mac 121169 bytes_out 0 121169 bytes_in 0 121169 station_ip 5.120.131.48 121169 port 88 121169 unique_id port 121169 remote_ip 10.8.1.30 121171 username kordestani 121171 kill_reason Another user logged on this global unique id 121171 mac 121171 bytes_out 0 121171 bytes_in 0 121171 station_ip 151.235.105.144 121171 port 84 121171 unique_id port 121171 remote_ip 10.8.1.98 121173 username barzegar 121173 mac 121173 bytes_out 0 121173 bytes_in 0 121173 station_ip 5.120.177.201 121173 port 183 121173 unique_id port 121173 remote_ip 10.8.0.234 121176 username mahdixz 121176 unique_id port 121176 terminate_cause User-Request 121176 bytes_out 5971400 121176 bytes_in 108747758 121176 station_ip 151.235.105.222 121176 port 15729793 121176 nas_port_type Virtual 121176 remote_ip 5.5.5.25 121183 username arash 121183 mac 121183 bytes_out 0 121183 bytes_in 0 121183 station_ip 37.27.3.116 121183 port 185 121183 unique_id port 121188 username mirzaei 121188 mac 121188 bytes_out 103846 121188 bytes_in 266854 121188 station_ip 5.120.131.48 121188 port 87 121188 unique_id port 121188 remote_ip 10.8.1.30 121198 username sabaghnezhad 121198 mac 121198 bytes_out 0 121198 bytes_in 0 121198 station_ip 37.129.98.149 121198 port 169 121198 unique_id port 121198 remote_ip 10.8.0.186 121200 username barzegar 121200 mac 121200 bytes_out 0 121200 bytes_in 0 121200 station_ip 5.120.177.201 121200 port 169 121200 unique_id port 121200 remote_ip 10.8.0.234 121201 username ehsun 121201 mac 121201 bytes_out 0 121201 bytes_in 0 121201 station_ip 46.225.209.208 121201 port 176 121201 unique_id port 121203 username farhad1 121203 kill_reason Another user logged on this global unique id 121203 mac 121203 bytes_out 0 121203 bytes_in 0 121203 station_ip 5.119.30.80 121203 port 148 121203 unique_id port 121203 remote_ip 10.8.0.26 121204 username barzegar 121204 mac 121204 bytes_out 0 121204 bytes_in 0 121204 station_ip 5.120.177.201 121204 port 84 121204 unique_id port 121204 remote_ip 10.8.1.174 121207 username mosi 121207 kill_reason Another user logged on this global unique id 121207 mac 121207 bytes_out 0 121207 bytes_in 0 121207 station_ip 151.235.76.119 121207 port 122 121207 unique_id port 121208 username barzegar 121208 mac 121208 bytes_out 0 121208 bytes_in 0 121208 station_ip 5.120.177.201 121208 port 84 121208 unique_id port 121208 remote_ip 10.8.1.174 121209 username farhad1 121209 mac 121209 bytes_out 0 121209 bytes_in 0 121209 station_ip 5.119.30.80 121209 port 148 121209 unique_id port 121210 username tahmasebi 58824 username arezoo 58824 kill_reason Maximum check online fails reached 58824 mac 5.237.84.233:49176: Unknown host 58824 bytes_out 0 58824 bytes_in 0 58824 station_ip 5.237.84.233:49176 121210 kill_reason Another user logged on this global unique id 121210 mac 121210 bytes_out 0 121210 bytes_in 0 121210 station_ip 5.119.21.90 121210 port 135 121210 unique_id port 121213 username mirzaei 121213 kill_reason Another user logged on this global unique id 121213 mac 121213 bytes_out 0 121213 bytes_in 0 121213 station_ip 5.120.131.48 121213 port 85 121213 unique_id port 121180 unique_id port 121180 remote_ip 10.8.0.186 121184 username arash 121184 mac 121184 bytes_out 582971 121184 bytes_in 9875801 121184 station_ip 37.27.3.116 121184 port 172 121184 unique_id port 121184 remote_ip 10.8.0.114 121185 username naeimeh 121185 mac 121185 bytes_out 0 121185 bytes_in 0 121185 station_ip 83.123.77.232 121185 port 176 121185 unique_id port 121185 remote_ip 10.8.0.78 121189 username kordestani 121189 mac 121189 bytes_out 0 121189 bytes_in 0 121189 station_ip 151.235.105.144 121189 port 84 121189 unique_id port 121190 username alihosseini1 121190 mac 121190 bytes_out 280454 121190 bytes_in 1033760 121190 station_ip 5.119.192.136 121190 port 88 121190 unique_id port 121190 remote_ip 10.8.1.106 121192 username barzegar 121192 mac 121192 bytes_out 17085 121192 bytes_in 78748 121192 station_ip 5.120.177.201 121192 port 169 121192 unique_id port 121192 remote_ip 10.8.0.234 121193 username farhad1 121193 mac 121193 bytes_out 0 121193 bytes_in 0 121193 station_ip 5.119.98.214 121193 port 148 121193 unique_id port 121194 username barzegar 121194 mac 121194 bytes_out 0 121194 bytes_in 0 121194 station_ip 5.120.177.201 121194 port 87 121194 unique_id port 121194 remote_ip 10.8.1.174 121196 username alihosseini1 121196 mac 121196 bytes_out 0 121196 bytes_in 0 121196 station_ip 5.119.192.136 121196 port 84 121196 unique_id port 121196 remote_ip 10.8.1.106 121197 username ehsun 121197 kill_reason Another user logged on this global unique id 121197 mac 121197 bytes_out 0 121197 bytes_in 0 121197 station_ip 46.225.209.208 121197 port 176 121197 unique_id port 121197 remote_ip 10.8.0.162 121199 username ahmadipour 121199 unique_id port 121199 terminate_cause Lost-Carrier 121199 bytes_out 204179 121199 bytes_in 2414810 121199 station_ip 83.123.191.145 121199 port 15729799 121199 nas_port_type Virtual 121199 remote_ip 5.5.5.33 121202 username mostafa_es78 121202 unique_id port 121202 terminate_cause Lost-Carrier 121202 bytes_out 3971955 121202 bytes_in 127990686 121202 station_ip 5.126.76.186 121202 port 15729798 121202 nas_port_type Virtual 121202 remote_ip 5.5.5.29 121205 username mirzaei 121205 kill_reason Another user logged on this global unique id 121205 mac 121205 bytes_out 0 121205 bytes_in 0 121205 station_ip 5.120.131.48 121205 port 85 121205 unique_id port 121205 remote_ip 10.8.1.30 121211 username barzegar 121211 mac 121211 bytes_out 0 121211 bytes_in 0 121211 station_ip 5.120.177.201 121211 port 169 121211 unique_id port 121211 remote_ip 10.8.0.234 121214 username tahmasebi 121214 kill_reason Another user logged on this global unique id 121214 mac 121214 bytes_out 0 121214 bytes_in 0 121214 station_ip 5.119.21.90 121214 port 135 121214 unique_id port 121215 username barzegar 121215 mac 121215 bytes_out 0 121215 bytes_in 0 121215 station_ip 5.120.177.201 121215 port 84 121215 unique_id port 121215 remote_ip 10.8.1.174 121217 username mirzaei 121217 kill_reason Another user logged on this global unique id 121217 mac 121217 bytes_out 0 121217 bytes_in 0 121217 station_ip 5.120.131.48 121217 port 85 121217 unique_id port 121218 username barzegar 121218 mac 121218 bytes_out 0 121218 bytes_in 0 121218 station_ip 5.120.177.201 121218 port 84 121218 unique_id port 121218 remote_ip 10.8.1.174 121219 username tahmasebi 121219 kill_reason Another user logged on this global unique id 121219 mac 121219 bytes_out 0 121219 bytes_in 0 121219 station_ip 5.119.21.90 121219 port 135 121219 unique_id port 121221 username barzegar 121221 mac 121216 username musa 121216 mac 121216 bytes_out 0 121216 bytes_in 0 121216 station_ip 113.203.12.210 121216 port 172 121216 unique_id port 121216 remote_ip 10.8.0.6 121220 username mirzaei 121220 kill_reason Another user logged on this global unique id 121220 mac 121220 bytes_out 0 121220 bytes_in 0 121220 station_ip 5.120.131.48 121220 port 85 121220 unique_id port 121222 username mirzaei 121222 kill_reason Another user logged on this global unique id 121222 mac 121222 bytes_out 0 121222 bytes_in 0 121222 station_ip 5.120.131.48 121222 port 85 121222 unique_id port 121227 username farhad1 121227 mac 121227 bytes_out 5918471 121227 bytes_in 31537910 121227 station_ip 5.120.117.73 121227 port 148 121227 unique_id port 121227 remote_ip 10.8.0.26 121230 username barzegar 121230 mac 121230 bytes_out 0 121230 bytes_in 0 121230 station_ip 5.120.177.201 121230 port 148 121230 unique_id port 58824 port 1017 58824 unique_id port 121230 remote_ip 10.8.0.234 121231 username milan 121231 mac 121231 bytes_out 375728 121231 bytes_in 641600 121231 station_ip 5.119.194.217 121231 port 179 121231 unique_id port 121231 remote_ip 10.8.0.218 121234 username mosi 121234 mac 121234 bytes_out 0 121234 bytes_in 0 121234 station_ip 151.235.76.119 121234 port 122 121234 unique_id port 121236 username barzegar 121236 mac 121236 bytes_out 0 121236 bytes_in 0 121236 station_ip 5.120.177.201 121236 port 84 121236 unique_id port 121236 remote_ip 10.8.1.174 121237 username barzegar 121237 mac 121237 bytes_out 0 121237 bytes_in 0 121237 station_ip 5.120.177.201 121237 port 84 121237 unique_id port 121237 remote_ip 10.8.1.174 58829 username arezoo 58829 kill_reason Maximum check online fails reached 58829 mac 5.237.84.233:49213: Unknown host 58829 bytes_out 0 58829 bytes_in 0 58829 station_ip 5.237.84.233:49213 58829 port 1017 58829 unique_id port 121241 username barzegar 121241 mac 121241 bytes_out 0 121241 bytes_in 0 121241 station_ip 5.120.177.201 121241 port 122 121241 unique_id port 121241 remote_ip 10.8.0.234 121242 username barzegar 121242 mac 121242 bytes_out 0 121242 bytes_in 0 121242 station_ip 5.120.177.201 121242 port 122 121242 unique_id port 121242 remote_ip 10.8.0.234 121243 username milan 121243 mac 121243 bytes_out 81644 121243 bytes_in 125072 121243 station_ip 5.119.194.217 121243 port 148 121243 unique_id port 121243 remote_ip 10.8.0.218 121252 username mehdizare 121252 mac 121252 bytes_out 14124 121252 bytes_in 15431 121252 station_ip 5.119.88.232 121252 port 122 121252 unique_id port 121252 remote_ip 10.8.0.90 121253 username barzegar 121253 mac 121253 bytes_out 0 121253 bytes_in 0 121253 station_ip 5.120.177.201 121253 port 84 121253 unique_id port 121253 remote_ip 10.8.1.174 121257 username barzegar 121257 mac 121257 bytes_out 0 121257 bytes_in 0 121257 station_ip 5.120.177.201 121257 port 84 121257 unique_id port 121257 remote_ip 10.8.1.174 121258 username barzegar 121258 mac 121258 bytes_out 0 121258 bytes_in 0 121258 station_ip 5.120.177.201 121258 port 84 121258 unique_id port 121258 remote_ip 10.8.1.174 121259 username barzegar 121259 mac 121259 bytes_out 0 121259 bytes_in 0 121259 station_ip 5.120.177.201 121259 port 148 121259 unique_id port 121259 remote_ip 10.8.0.234 121260 username abravesh 121260 unique_id port 121260 terminate_cause Lost-Carrier 121260 bytes_out 16335789 121260 bytes_in 463441018 121260 station_ip 5.120.119.250 121260 port 15729794 121260 nas_port_type Virtual 121221 bytes_out 0 121221 bytes_in 0 121221 station_ip 5.120.177.201 121221 port 84 121221 unique_id port 121221 remote_ip 10.8.1.174 121225 username tahmasebi 121225 kill_reason Another user logged on this global unique id 121225 mac 121225 bytes_out 0 121225 bytes_in 0 121225 station_ip 5.119.21.90 121225 port 135 121225 unique_id port 121228 username barzegar 121228 mac 121228 bytes_out 0 121228 bytes_in 0 121228 station_ip 5.120.177.201 121228 port 84 121228 unique_id port 121228 remote_ip 10.8.1.174 121232 username tahmasebi 121232 mac 121232 bytes_out 0 121232 bytes_in 0 121232 station_ip 5.119.21.90 121232 port 135 121232 unique_id port 121233 username barzegar 121233 mac 121233 bytes_out 0 121233 bytes_in 0 121233 station_ip 5.120.177.201 121233 port 172 121233 unique_id port 121233 remote_ip 10.8.0.234 121244 username barzegar 121244 mac 121244 bytes_out 0 121244 bytes_in 0 121244 station_ip 5.120.177.201 121244 port 84 121244 unique_id port 121244 remote_ip 10.8.1.174 121245 username barzegar 121245 mac 121245 bytes_out 0 121245 bytes_in 0 121245 station_ip 5.120.177.201 121245 port 122 121245 unique_id port 121245 remote_ip 10.8.0.234 121246 username barzegar 121246 mac 121246 bytes_out 0 121246 bytes_in 0 121246 station_ip 5.120.177.201 121246 port 122 121246 unique_id port 121246 remote_ip 10.8.0.234 121247 username barzegar 121247 mac 121247 bytes_out 0 121247 bytes_in 0 121247 station_ip 5.120.177.201 121247 port 84 121247 unique_id port 121247 remote_ip 10.8.1.174 121249 username barzegar 121249 mac 121249 bytes_out 0 121249 bytes_in 0 121249 station_ip 5.120.177.201 121249 port 122 121249 unique_id port 121249 remote_ip 10.8.0.234 121250 username mehdizare 121250 mac 121250 bytes_out 0 121250 bytes_in 0 121250 station_ip 5.119.88.232 121250 port 182 121250 unique_id port 121250 remote_ip 10.8.0.90 121254 username mehdizare 121254 mac 121254 bytes_out 0 121254 bytes_in 0 121254 station_ip 5.119.88.232 121254 port 148 121254 unique_id port 121254 remote_ip 10.8.0.90 121261 username barzegar 121261 mac 121261 bytes_out 0 121261 bytes_in 0 121261 station_ip 5.120.177.201 121261 port 148 121261 unique_id port 121261 remote_ip 10.8.0.234 121262 username mehdizare 121262 mac 121262 bytes_out 67744 121262 bytes_in 82678 121262 station_ip 5.119.88.232 121262 port 122 121262 unique_id port 121262 remote_ip 10.8.0.90 121266 username sedighe 121266 mac 121266 bytes_out 0 121266 bytes_in 0 121266 station_ip 37.129.36.162 121266 port 122 121266 unique_id port 121266 remote_ip 10.8.0.146 121267 username sedighe 121267 mac 121267 bytes_out 0 121267 bytes_in 0 121267 station_ip 83.123.212.239 121267 port 157 121267 unique_id port 121267 remote_ip 10.8.0.146 121269 username mehdizare 121269 mac 121269 bytes_out 13030 121269 bytes_in 19592 121269 station_ip 5.119.88.232 121269 port 148 121269 unique_id port 121269 remote_ip 10.8.0.90 121271 username sedighe 121271 mac 121271 bytes_out 0 121271 bytes_in 0 121271 station_ip 37.129.203.20 121271 port 148 121271 unique_id port 121271 remote_ip 10.8.0.146 121275 username arabpour 121275 unique_id port 121275 terminate_cause User-Request 121275 bytes_out 0 121275 bytes_in 0 121275 station_ip 83.122.233.251 121275 port 15729804 121275 nas_port_type Virtual 121275 remote_ip 5.5.5.81 121276 username sedighe 121276 mac 121276 bytes_out 68376 121276 bytes_in 106724 121276 station_ip 37.129.41.16 121224 remote_ip 10.8.0.174 121226 username barzegar 121226 mac 121226 bytes_out 0 121226 bytes_in 0 121226 station_ip 5.120.177.201 121226 port 84 121226 unique_id port 121226 remote_ip 10.8.1.174 121229 username tahmasebi 121229 kill_reason Another user logged on this global unique id 121229 mac 121229 bytes_out 0 121229 bytes_in 0 121229 station_ip 5.119.21.90 121229 port 135 121229 unique_id port 121235 username tahmasebi 121235 kill_reason Another user logged on this global unique id 121235 mac 121235 bytes_out 0 121235 bytes_in 0 121235 station_ip 5.119.21.90 121235 port 135 121235 unique_id port 121235 remote_ip 10.8.0.42 121238 username tahmasebi 121238 kill_reason Another user logged on this global unique id 121238 mac 121238 bytes_out 0 121238 bytes_in 0 121238 station_ip 5.119.21.90 121238 port 135 121238 unique_id port 121239 username barzegar 121239 mac 121239 bytes_out 0 121239 bytes_in 0 121239 station_ip 5.120.177.201 121239 port 84 121239 unique_id port 121239 remote_ip 10.8.1.174 121240 username tahmasebi 121240 kill_reason Another user logged on this global unique id 121240 mac 121240 bytes_out 0 121240 bytes_in 0 121240 station_ip 5.119.21.90 58855 username arezoo 58855 kill_reason Maximum check online fails reached 58855 mac 5.237.84.233:51027: Unknown host 58855 bytes_out 0 58855 bytes_in 0 58855 station_ip 5.237.84.233:51027 58855 port 1017 58855 unique_id port 121240 port 135 121240 unique_id port 121248 username morteza 121248 mac 121248 bytes_out 0 121248 bytes_in 0 121248 station_ip 37.129.147.193 121248 port 122 121248 unique_id port 121248 remote_ip 10.8.0.46 121251 username mehdizare 121251 mac 121251 bytes_out 0 121251 bytes_in 0 121251 station_ip 5.119.88.232 121251 port 122 121251 unique_id port 121251 remote_ip 10.8.0.90 121255 username khalili 121255 mac 121255 bytes_out 0 121255 bytes_in 0 121255 station_ip 5.119.82.72 121255 port 180 121255 unique_id port 121255 remote_ip 10.8.0.86 121256 username sobhan 121256 unique_id port 121256 terminate_cause Lost-Carrier 121256 bytes_out 2419951 121256 bytes_in 44219954 121256 station_ip 5.119.18.193 121256 port 15729802 121256 nas_port_type Virtual 121256 remote_ip 5.5.5.52 121264 username sedighe 121264 mac 121264 bytes_out 206322 121264 bytes_in 1274967 121264 station_ip 37.129.36.162 121264 port 148 121264 unique_id port 121264 remote_ip 10.8.0.146 121265 username hamidsalari 121265 mac 121265 bytes_out 0 121265 bytes_in 0 121265 station_ip 5.120.69.80 121265 port 157 121265 unique_id port 121268 username barzegar 121268 mac 121268 bytes_out 0 121268 bytes_in 0 121268 station_ip 5.120.177.201 121268 port 87 121268 unique_id port 121268 remote_ip 10.8.1.174 121272 username barzegar 121272 mac 121272 bytes_out 0 121272 bytes_in 0 121272 station_ip 5.120.177.201 121272 port 122 121272 unique_id port 121272 remote_ip 10.8.0.234 121277 username sedighe 121277 mac 121277 bytes_out 65573 121277 bytes_in 92635 121277 station_ip 37.129.41.16 121277 port 148 121277 unique_id port 121277 remote_ip 10.8.0.146 121280 username barzegar 121280 mac 121280 bytes_out 0 121280 bytes_in 0 121280 station_ip 5.120.177.201 121280 port 148 121280 unique_id port 121280 remote_ip 10.8.0.234 121282 username barzegar 121282 mac 121282 bytes_out 0 121282 bytes_in 0 121282 station_ip 5.120.177.201 121282 port 157 121282 unique_id port 121282 remote_ip 10.8.0.234 121285 username sedighe 121285 mac 121285 bytes_out 35389 121285 bytes_in 36236 121285 station_ip 37.129.41.16 121260 remote_ip 5.5.5.27 121263 username barzegar 121263 mac 121263 bytes_out 0 121263 bytes_in 0 121263 station_ip 5.120.177.201 121263 port 172 121263 unique_id port 121263 remote_ip 10.8.0.234 121270 username sedighe 121270 mac 121270 bytes_out 555607 121270 bytes_in 8148167 121270 station_ip 83.123.212.239 121270 port 122 121270 unique_id port 121270 remote_ip 10.8.0.146 121273 username sedighe 121273 mac 121273 bytes_out 0 121273 bytes_in 0 121273 station_ip 37.129.41.16 121273 port 157 121273 unique_id port 121273 remote_ip 10.8.0.146 121274 username barzegar 121274 mac 121274 bytes_out 0 121274 bytes_in 0 121274 station_ip 5.120.177.201 121274 port 88 121274 unique_id port 121274 remote_ip 10.8.1.174 121283 username sedighe 121283 mac 121283 bytes_out 156175 121283 bytes_in 1597486 121283 station_ip 37.129.41.16 121283 port 148 121283 unique_id port 121283 remote_ip 10.8.0.146 121286 username barzegar 121286 mac 121286 bytes_out 0 121286 bytes_in 0 121286 station_ip 5.120.177.201 121286 port 172 121286 unique_id port 58857 username arezoo 58857 kill_reason Maximum check online fails reached 58857 mac 5.237.84.233:51736: Unknown host 58857 bytes_out 0 58857 bytes_in 0 58857 station_ip 5.237.84.233:51736 58857 port 1017 58857 unique_id port 121286 remote_ip 10.8.0.234 121294 username mehdizare 121294 mac 121294 bytes_out 212641 121294 bytes_in 191532 121294 station_ip 5.119.88.232 121294 port 87 121294 unique_id port 121294 remote_ip 10.8.1.42 121295 username barzegar 121295 mac 121295 bytes_out 0 121295 bytes_in 0 121295 station_ip 5.120.177.201 121295 port 87 121295 unique_id port 121295 remote_ip 10.8.1.174 121297 username forozande 121297 mac 121297 bytes_out 0 121297 bytes_in 0 121297 station_ip 37.129.72.182 121297 port 87 121297 unique_id port 121297 remote_ip 10.8.1.102 121301 username barzegar 121301 mac 121301 bytes_out 5303 121301 bytes_in 6494 121301 station_ip 5.119.51.213 121301 port 157 121301 unique_id port 121301 remote_ip 10.8.0.234 121310 username avaanna 121310 mac 121310 bytes_out 0 121310 bytes_in 0 121310 station_ip 83.122.150.127 121310 port 88 121310 unique_id port 121310 remote_ip 10.8.1.46 121311 username avaanna 121311 mac 121311 bytes_out 0 121311 bytes_in 0 121311 station_ip 83.122.150.127 121311 port 88 121311 unique_id port 121311 remote_ip 10.8.1.46 121314 username malekpoir 121314 kill_reason Another user logged on this global unique id 121314 mac 121314 bytes_out 0 121314 bytes_in 0 121314 station_ip 5.120.66.141 121314 port 89 121314 unique_id port 121314 remote_ip 10.8.1.54 121315 username mohammadjavad 121315 mac 121315 bytes_out 0 121315 bytes_in 0 121315 station_ip 83.123.177.89 121315 port 148 121315 unique_id port 121315 remote_ip 10.8.0.142 121317 username barzegar 121317 kill_reason Another user logged on this global unique id 121317 mac 121317 bytes_out 0 121317 bytes_in 0 121317 station_ip 5.120.89.178 121317 port 122 121317 unique_id port 121319 username mehdizare 121319 mac 121319 bytes_out 0 121319 bytes_in 0 121319 station_ip 5.119.88.232 121319 port 84 121319 unique_id port 121319 remote_ip 10.8.1.42 121321 username barzegar 121324 username malekpoir 121321 kill_reason Another user logged on this global unique id 121321 mac 121321 bytes_out 0 121321 bytes_in 0 121321 station_ip 5.120.89.178 121321 port 122 121321 unique_id port 121322 username sedighe 121322 mac 121322 bytes_out 0 121322 bytes_in 0 121322 station_ip 37.129.108.34 121322 port 176 121276 port 122 121276 unique_id port 121276 remote_ip 10.8.0.146 121278 username barzegar 121278 mac 121278 bytes_out 0 121278 bytes_in 0 121278 station_ip 5.120.177.201 121278 port 122 121278 unique_id port 121278 remote_ip 10.8.0.234 121279 username hamidsalari 121279 mac 121279 bytes_out 0 121279 bytes_in 0 121279 station_ip 5.120.69.80 121279 port 84 121279 unique_id port 121279 remote_ip 10.8.1.182 121281 username tahmasebi 121281 kill_reason Another user logged on this global unique id 121281 mac 121281 bytes_out 0 121281 bytes_in 0 121281 station_ip 5.119.21.90 121281 port 135 121281 unique_id port 121284 username sedighe 121284 mac 121284 bytes_out 3782 121284 bytes_in 10348 121284 station_ip 37.129.41.16 121284 port 157 121284 unique_id port 121284 remote_ip 10.8.0.146 121287 username sedighe 121287 mac 121287 bytes_out 134323 121287 bytes_in 637121 121287 station_ip 37.129.41.16 121287 port 157 121287 unique_id port 121287 remote_ip 10.8.0.146 121288 username barzegar 121288 mac 121288 bytes_out 0 121288 bytes_in 0 121288 station_ip 5.120.177.201 121288 port 84 121288 unique_id port 121288 remote_ip 10.8.1.174 121289 username barzegar 121289 mac 121289 bytes_out 0 121289 bytes_in 0 121289 station_ip 5.120.177.201 121289 port 84 121289 unique_id port 121289 remote_ip 10.8.1.174 121291 username barzegar 121291 mac 121291 bytes_out 0 121291 bytes_in 0 121291 station_ip 5.120.177.201 121291 port 84 121291 unique_id port 121291 remote_ip 10.8.1.174 121293 username mirzaei 121293 kill_reason Another user logged on this global unique id 121293 mac 121293 bytes_out 0 121293 bytes_in 0 121293 station_ip 5.120.131.48 121293 port 85 121293 unique_id port 121300 username mohammadmahdi 121300 mac 121300 bytes_out 452479 121300 bytes_in 3006800 121300 station_ip 5.120.161.233 121300 port 148 121300 unique_id port 121300 remote_ip 10.8.0.54 121305 username forozande 121305 mac 121305 bytes_out 0 121305 bytes_in 0 121305 station_ip 113.203.49.129 121305 port 87 121305 unique_id port 121305 remote_ip 10.8.1.102 121306 username forozande 121306 mac 121306 bytes_out 0 121306 bytes_in 0 121306 station_ip 37.129.101.252 121306 port 87 121306 unique_id port 121306 remote_ip 10.8.1.102 121309 username mosi 121309 mac 121309 bytes_out 0 121309 bytes_in 0 121309 station_ip 151.235.76.119 121309 port 172 121309 unique_id port 121309 remote_ip 10.8.0.138 121312 username mahdiyehalizadeh 121312 mac 121312 bytes_out 21692 121312 bytes_in 28191 121312 station_ip 113.203.50.27 121312 port 172 121312 unique_id port 121312 remote_ip 10.8.0.82 121316 username forozande 121316 mac 121316 bytes_out 1599951 121316 bytes_in 23359499 121316 station_ip 83.122.42.78 121316 port 87 121316 unique_id port 121316 remote_ip 10.8.1.102 121318 username mohammadjavad 121318 mac 121318 bytes_out 126555 121318 bytes_in 435005 121318 station_ip 37.129.78.101 121318 port 148 121318 unique_id port 121318 remote_ip 10.8.0.142 121320 username barzegar 121320 kill_reason Another user logged on this global unique id 121320 mac 121320 bytes_out 0 121320 bytes_in 0 121320 station_ip 5.120.89.178 121320 port 122 121320 unique_id port 121324 kill_reason Another user logged on this global unique id 121324 mac 121324 bytes_out 0 121324 bytes_in 0 121324 station_ip 5.120.66.141 121324 port 89 121324 unique_id port 121325 username barzegar 121325 mac 121325 bytes_out 0 121325 bytes_in 0 121325 station_ip 5.120.89.178 121285 port 172 121285 unique_id port 121285 remote_ip 10.8.0.146 121290 username musa 121290 mac 121290 bytes_out 1741042 121290 bytes_in 25466536 121290 station_ip 113.203.48.62 121290 port 148 121290 unique_id port 121290 remote_ip 10.8.0.6 121292 username mahdiyehalizadeh 121292 mac 121292 bytes_out 4921 121292 bytes_in 6371 121292 station_ip 83.123.70.206 121292 port 148 121292 unique_id port 121292 remote_ip 10.8.0.82 121296 username mohammadjavad 121296 mac 121296 bytes_out 833845 121296 bytes_in 4115408 121296 station_ip 37.129.43.228 121296 port 122 121296 unique_id port 121296 remote_ip 10.8.0.142 121298 username barzegar 121298 kill_reason Another user logged on this global unique id 121298 mac 121298 bytes_out 0 121298 bytes_in 0 121298 station_ip 5.120.177.201 121298 port 122 121298 unique_id port 121298 remote_ip 10.8.0.234 121299 username barzegar 121299 mac 121299 bytes_out 0 121299 bytes_in 0 121299 station_ip 5.120.177.201 121299 port 122 121299 unique_id port 121302 username barzegar 121302 kill_reason Another user logged on this global unique id 121302 mac 121302 bytes_out 0 121302 bytes_in 0 121302 station_ip 5.120.89.178 121302 port 122 121302 unique_id port 121302 remote_ip 10.8.0.234 121303 username barzegar 121303 kill_reason Another user logged on this global unique id 121303 mac 121303 bytes_out 0 121303 bytes_in 0 121303 station_ip 5.120.89.178 121303 port 122 121303 unique_id port 121304 username sade 121304 unique_id port 121304 terminate_cause Lost-Carrier 121304 bytes_out 167093 121304 bytes_in 1432278 121304 station_ip 5.119.70.249 121304 port 15729805 121304 nas_port_type Virtual 121304 remote_ip 5.5.5.244 121307 username barzegar 121307 kill_reason Another user logged on this global unique id 121307 mac 121307 bytes_out 0 121307 bytes_in 0 121307 station_ip 5.120.89.178 121307 port 122 121307 unique_id port 121308 username barzegar 121308 kill_reason Another user logged on this global unique id 121308 mac 121308 bytes_out 0 121308 bytes_in 0 121308 station_ip 5.120.89.178 121308 port 122 121308 unique_id port 121313 username barzegar 121313 kill_reason Another user logged on this global unique id 121313 mac 121313 bytes_out 0 121313 bytes_in 0 121313 station_ip 5.120.89.178 121313 port 122 121313 unique_id port 121323 username barzegar 121323 kill_reason Another user logged on this global unique id 121323 mac 121323 bytes_out 0 121323 bytes_in 0 121323 station_ip 5.120.89.178 121323 port 122 121323 unique_id port 121326 username milan 121326 kill_reason Another user logged on this global unique id 121326 mac 121326 bytes_out 0 121326 bytes_in 0 121326 station_ip 5.119.192.77 121326 port 179 121326 unique_id port 121326 remote_ip 10.8.0.218 121327 username forozande 121327 mac 121327 bytes_out 0 121327 bytes_in 0 121327 station_ip 37.129.229.136 121327 port 84 121327 unique_id port 121327 remote_ip 10.8.1.102 121328 username alirezazadeh 121328 unique_id port 121328 terminate_cause User-Request 121328 bytes_out 689998 121328 bytes_in 1530191 121328 station_ip 5.120.52.15 121328 port 15729807 121328 nas_port_type Virtual 121328 remote_ip 5.5.5.30 121331 username alipour 121331 mac 121331 bytes_out 255777 121331 bytes_in 1163161 121331 station_ip 83.122.182.227 121331 port 157 121331 unique_id port 121331 remote_ip 10.8.0.102 121332 username mosi 121332 mac 121332 bytes_out 501777 121332 bytes_in 1024369 121332 station_ip 37.137.9.41 121332 port 172 121332 unique_id port 121332 remote_ip 10.8.0.138 121335 username mansur 121335 mac 121335 bytes_out 0 121335 bytes_in 0 121322 unique_id port 121322 remote_ip 10.8.0.146 121338 username Mahin 121338 mac 121338 bytes_out 550799 121338 bytes_in 5093636 121338 station_ip 5.120.112.100 121338 port 180 121338 unique_id port 121338 remote_ip 10.8.0.222 121343 username alirezazadeh 121343 unique_id port 121343 terminate_cause Lost-Carrier 121343 bytes_out 2442694 121343 bytes_in 12033377 121343 station_ip 5.120.52.15 121343 port 15729808 121343 nas_port_type Virtual 121343 remote_ip 5.5.5.35 121345 username barzegar 121345 mac 121345 bytes_out 0 121345 bytes_in 0 121345 station_ip 5.120.89.178 121345 port 88 121345 unique_id port 121345 remote_ip 10.8.1.174 121348 username barzegar 121348 mac 121348 bytes_out 0 121348 bytes_in 0 121348 station_ip 5.120.89.178 121348 port 88 121348 unique_id port 121348 remote_ip 10.8.1.174 121349 username malekpoir 121349 kill_reason Another user logged on this global unique id 121349 mac 121349 bytes_out 0 121349 bytes_in 0 121349 station_ip 5.120.66.141 121349 port 89 121349 unique_id port 121355 username malekpoir 121355 kill_reason Another user logged on this global unique id 121355 mac 121355 bytes_out 0 121355 bytes_in 0 121355 station_ip 5.120.66.141 121355 port 89 121355 unique_id port 121364 username barzegar 121364 mac 121364 bytes_out 0 121364 bytes_in 0 121364 station_ip 5.120.89.178 121364 port 88 121364 unique_id port 121364 remote_ip 10.8.1.174 121365 username sedighe 121365 mac 121365 bytes_out 2716 121365 bytes_in 5561 121365 station_ip 37.129.108.34 121365 port 148 121365 unique_id port 121365 remote_ip 10.8.0.146 121369 username sedighe 121369 mac 121369 bytes_out 829990 121369 bytes_in 13504065 121369 station_ip 83.123.27.51 121369 port 180 121369 unique_id port 121369 remote_ip 10.8.0.146 121372 username malekpoir 121372 kill_reason Another user logged on this global unique id 121372 mac 121372 bytes_out 0 121372 bytes_in 0 121372 station_ip 5.120.66.141 121372 port 89 121372 unique_id port 121373 username sabaghnezhad 121373 mac 121373 bytes_out 142390 121373 bytes_in 303293 121373 station_ip 83.123.1.96 121373 port 157 121373 unique_id port 121373 remote_ip 10.8.0.186 121375 username barzegar 121375 mac 121375 bytes_out 0 121375 bytes_in 0 121375 station_ip 5.120.89.178 121375 port 157 121375 unique_id port 121375 remote_ip 10.8.0.234 121377 username sedighe 121377 mac 121377 bytes_out 1908936 121377 bytes_in 36620083 121377 station_ip 83.123.27.51 121377 port 180 121377 unique_id port 121377 remote_ip 10.8.0.146 121378 username forozande 121378 mac 121378 bytes_out 0 121378 bytes_in 0 121378 station_ip 83.122.106.17 121378 port 88 121378 unique_id port 121378 remote_ip 10.8.1.102 121380 username barzegar 121380 mac 121380 bytes_out 1408068 121380 bytes_in 657997 121380 station_ip 5.120.89.178 121380 port 157 121380 unique_id port 121380 remote_ip 10.8.0.234 121381 username amir 121381 mac 121381 bytes_out 0 121381 bytes_in 0 121381 station_ip 46.225.211.194 121381 port 87 121381 unique_id port 121381 remote_ip 10.8.1.22 121383 username barzegar 121383 mac 121383 bytes_out 0 121383 bytes_in 0 121383 station_ip 5.120.89.178 121383 port 88 121383 unique_id port 121383 remote_ip 10.8.1.174 121389 username barzegar 121389 mac 121389 bytes_out 2982 121389 bytes_in 4759 121389 station_ip 5.120.89.178 121389 port 176 121389 unique_id port 121389 remote_ip 10.8.0.234 121390 username mirzaei 121390 kill_reason Another user logged on this global unique id 121390 mac 121390 bytes_out 0 121390 bytes_in 0 121325 port 122 121325 unique_id port 121329 username barzegar 121329 mac 121329 bytes_out 15624 121329 bytes_in 7993 121329 station_ip 5.120.89.178 121329 port 122 121329 unique_id port 121329 remote_ip 10.8.0.234 121330 username sabaghnezhad 121330 mac 121330 bytes_out 3715701 121330 bytes_in 34051750 121330 station_ip 83.123.1.96 121330 port 169 121330 unique_id port 121330 remote_ip 10.8.0.186 121333 username barzegar 121333 mac 121333 bytes_out 12031 121333 bytes_in 9264 121333 station_ip 5.120.89.178 121333 port 122 121333 unique_id port 121333 remote_ip 10.8.0.234 121334 username alipour 121334 mac 121334 bytes_out 0 121334 bytes_in 0 121334 station_ip 83.122.182.227 121334 port 84 121334 unique_id port 121334 remote_ip 10.8.1.50 121337 username sabaghnezhad 121337 mac 121337 bytes_out 8191 121337 bytes_in 14428 121337 station_ip 83.123.1.96 121337 port 169 121337 unique_id port 121337 remote_ip 10.8.0.186 121341 username barzegar 121341 mac 121341 bytes_out 369102 121341 bytes_in 40823 121341 station_ip 5.120.89.178 121341 port 157 121341 unique_id port 121341 remote_ip 10.8.0.234 121342 username barzegar 121342 mac 121342 bytes_out 0 121342 bytes_in 0 121342 station_ip 5.120.89.178 121342 port 88 121342 unique_id port 121342 remote_ip 10.8.1.174 121346 username mahdiyehalizadeh 121346 mac 121346 bytes_out 26702 121346 bytes_in 50905 121346 station_ip 83.122.205.138 121346 port 157 121346 unique_id port 121346 remote_ip 10.8.0.82 121347 username alirezazadeh 121347 unique_id port 121347 terminate_cause Lost-Carrier 121347 bytes_out 5925875 121347 bytes_in 1122507 121347 station_ip 5.120.52.15 121347 port 15729812 121347 nas_port_type Virtual 121347 remote_ip 5.5.5.254 121351 username barzegar 121351 mac 121351 bytes_out 0 121351 bytes_in 0 121351 station_ip 5.120.89.178 121351 port 88 121351 unique_id port 121351 remote_ip 10.8.1.174 121352 username sedighe 121352 mac 121352 bytes_out 0 121352 bytes_in 0 121352 station_ip 37.129.108.34 121352 port 176 121352 unique_id port 121352 remote_ip 10.8.0.146 121358 username barzegar 121358 mac 121358 bytes_out 3214 121358 bytes_in 4893 121358 station_ip 5.120.89.178 121358 port 176 121358 unique_id port 121358 remote_ip 10.8.0.234 121359 username barzegar 121359 mac 121359 bytes_out 0 121359 bytes_in 0 121359 station_ip 5.120.89.178 121359 port 88 121359 unique_id port 121359 remote_ip 10.8.1.174 121361 username alipour 121361 kill_reason Another user logged on this global unique id 121361 mac 121361 bytes_out 0 121361 bytes_in 0 121361 station_ip 83.122.182.227 121361 port 84 121361 unique_id port 121361 remote_ip 10.8.1.50 121374 username mohammadjavad 121374 mac 121374 bytes_out 782232 121374 bytes_in 16367556 121374 station_ip 83.123.33.33 121374 port 176 121374 unique_id port 121374 remote_ip 10.8.0.142 121385 username barzegar 121385 mac 121385 bytes_out 0 121385 bytes_in 0 121385 station_ip 5.120.89.178 121385 port 88 121385 unique_id port 121385 remote_ip 10.8.1.174 121397 username sabaghnezhad 121397 mac 121397 bytes_out 26797 121397 bytes_in 22995 121397 station_ip 83.123.1.96 121397 port 176 121397 unique_id port 121397 remote_ip 10.8.0.186 121399 username avaanna 121399 mac 121399 bytes_out 1355048 121399 bytes_in 17081595 121399 station_ip 83.122.150.127 121399 port 122 121399 unique_id port 121399 remote_ip 10.8.0.98 121402 username hosseine 121402 mac 121402 bytes_out 6427084 121402 bytes_in 49993392 121335 station_ip 5.119.147.5 121335 port 169 121335 unique_id port 121335 remote_ip 10.8.0.210 121336 username malekpoir 121336 kill_reason Another user logged on this global unique id 121336 mac 121336 bytes_out 0 121336 bytes_in 0 121336 station_ip 5.120.66.141 121336 port 89 121336 unique_id port 121339 username alipour 121339 mac 121339 bytes_out 0 121339 bytes_in 0 121339 station_ip 83.122.182.227 121339 port 84 121339 unique_id port 121339 remote_ip 10.8.1.50 121340 username malekpoir 121340 kill_reason Another user logged on this global unique id 121340 mac 121340 bytes_out 0 121340 bytes_in 0 121340 station_ip 5.120.66.141 121340 port 89 121340 unique_id port 121344 username malekpoir 121344 kill_reason Another user logged on this global unique id 121344 mac 121344 bytes_out 0 121344 bytes_in 0 121344 station_ip 5.120.66.141 121344 port 89 121344 unique_id port 121350 username alipour 121350 mac 121350 bytes_out 0 121350 bytes_in 0 121350 station_ip 83.122.182.227 121350 port 84 121350 unique_id port 121350 remote_ip 10.8.1.50 121353 username barzegar 121353 mac 121353 bytes_out 0 121353 bytes_in 0 121353 station_ip 5.120.89.178 121353 port 88 121353 unique_id port 121353 remote_ip 10.8.1.174 121354 username barzegar 121354 mac 121354 bytes_out 0 121354 bytes_in 0 121354 station_ip 5.120.89.178 121354 port 88 121354 unique_id port 121354 remote_ip 10.8.1.174 121356 username forozande 121356 kill_reason Another user logged on this global unique id 121356 mac 121356 bytes_out 0 58964 username arezoo 58964 kill_reason Another user logged on this global unique id 58964 mac 5.237.84.233:49286: Unknown host 58964 bytes_out 0 58964 bytes_in 0 58964 station_ip 5.237.84.233:49286 58964 port 1017 58964 unique_id port 58965 username arezoo 58965 kill_reason Another user logged on this global unique id 58965 mac 5.237.84.233:49299: Unknown host 58965 bytes_out 0 58965 bytes_in 0 58965 station_ip 5.237.84.233:49299 58965 port 1017 58965 unique_id port 121356 bytes_in 0 121356 station_ip 83.123.159.214 121356 port 87 121356 unique_id port 121356 remote_ip 10.8.1.102 121357 username mehdizare 121357 mac 121357 bytes_out 80099 121357 bytes_in 90010 121357 station_ip 5.119.88.232 121357 port 148 121357 unique_id port 121357 remote_ip 10.8.0.90 121360 username amir 121360 mac 121360 bytes_out 0 121360 bytes_in 0 121360 station_ip 46.225.211.194 121360 port 88 121360 unique_id port 121360 remote_ip 10.8.1.22 121362 username barzegar 121362 mac 121362 bytes_out 0 121362 bytes_in 0 121362 station_ip 5.120.89.178 121362 port 88 121362 unique_id port 121362 remote_ip 10.8.1.174 121363 username sedighe 121363 mac 121363 bytes_out 54267 121363 bytes_in 86110 121363 station_ip 37.129.108.34 121363 port 180 121363 unique_id port 121363 remote_ip 10.8.0.146 121366 username barzegar 121366 mac 121366 bytes_out 0 121366 bytes_in 0 121366 station_ip 5.120.89.178 121366 port 88 121366 unique_id port 121366 remote_ip 10.8.1.174 121367 username sedighe 121367 mac 121367 bytes_out 43498 121367 bytes_in 64423 121367 station_ip 37.129.108.34 121367 port 176 121367 unique_id port 121367 remote_ip 10.8.0.146 121368 username forozande 121368 mac 121368 bytes_out 0 121368 bytes_in 0 121368 station_ip 83.123.159.214 121368 port 87 121368 unique_id port 121370 username barzegar 121370 mac 121370 bytes_out 0 121370 bytes_in 0 121370 station_ip 5.120.89.178 121370 port 88 121370 unique_id port 121370 remote_ip 10.8.1.174 121371 username barzegar 121371 mac 121371 bytes_out 0 121371 bytes_in 0 121371 station_ip 5.120.89.178 121371 port 88 121371 unique_id port 121371 remote_ip 10.8.1.174 121376 username mehdizare 121376 mac 121376 bytes_out 32110 121376 bytes_in 42364 121376 station_ip 5.119.88.232 121376 port 182 121376 unique_id port 121376 remote_ip 10.8.0.90 121379 username kordestani 121379 mac 121379 bytes_out 0 121379 bytes_in 0 121379 station_ip 151.235.105.81 121379 port 148 121379 unique_id port 121379 remote_ip 10.8.0.134 121382 username hamid.e 121382 unique_id port 121382 terminate_cause User-Request 121382 bytes_out 6987628 121382 bytes_in 108243111 121382 station_ip 37.27.16.125 121382 port 15729806 121382 nas_port_type Virtual 121382 remote_ip 5.5.5.0 121384 username amir 121384 mac 121384 bytes_out 43677 121384 bytes_in 170935 121384 station_ip 46.225.211.194 121384 port 157 121384 unique_id port 121384 remote_ip 10.8.0.50 121386 username barzegar 121386 mac 121386 bytes_out 0 121386 bytes_in 0 121386 station_ip 5.120.89.178 121386 port 176 121386 unique_id port 121386 remote_ip 10.8.0.234 121387 username barzegar 121387 mac 121387 bytes_out 0 121387 bytes_in 0 121387 station_ip 5.120.89.178 121387 port 176 121387 unique_id port 121387 remote_ip 10.8.0.234 121388 username amir 121388 kill_reason Maximum check online fails reached 121388 mac 121388 bytes_out 140215 121388 bytes_in 573436 121388 station_ip 46.225.211.194 121388 port 157 121388 unique_id port 121388 remote_ip 10.8.0.50 121392 username barzegar 121392 mac 121392 bytes_out 0 121392 bytes_in 0 121392 station_ip 5.120.89.178 121392 port 88 121392 unique_id port 121392 remote_ip 10.8.1.174 121398 username barzegar 121398 mac 121398 bytes_out 3252 121398 bytes_in 5377 121398 station_ip 5.120.89.178 121398 port 180 121398 unique_id port 121398 remote_ip 10.8.0.234 121400 username avaanna 121400 mac 121400 bytes_out 27612 121400 bytes_in 50742 121400 station_ip 83.122.150.127 121400 port 176 121400 unique_id port 121400 remote_ip 10.8.0.98 121401 username barzegar 121401 mac 121401 bytes_out 0 121401 bytes_in 0 121401 station_ip 5.120.89.178 121401 port 88 121401 unique_id port 121401 remote_ip 10.8.1.174 121407 username barzegar 121407 mac 121407 bytes_out 34745 121407 bytes_in 107315 121407 station_ip 5.120.89.178 121407 port 176 121407 unique_id port 121407 remote_ip 10.8.0.234 121408 username Mahin 121408 mac 121408 bytes_out 6382 121408 bytes_in 9462 121408 station_ip 5.120.112.100 121408 port 169 121408 unique_id port 121408 remote_ip 10.8.0.222 121409 username Mahin 121409 mac 121409 bytes_out 0 121409 bytes_in 0 121409 station_ip 5.120.139.202 121409 port 176 121409 unique_id port 121409 remote_ip 10.8.0.222 121410 username malekpoir 121410 kill_reason Another user logged on this global unique id 121410 mac 121410 bytes_out 0 121410 bytes_in 0 121410 station_ip 5.120.66.141 121410 port 89 121410 unique_id port 121416 username kamali1 121416 kill_reason Another user logged on this global unique id 121416 mac 121416 bytes_out 0 121416 bytes_in 0 121416 station_ip 5.119.46.1 121416 port 170 121416 unique_id port 121416 remote_ip 10.8.0.70 121421 username barzegar 121421 mac 121421 bytes_out 0 121421 bytes_in 0 121421 station_ip 5.120.89.178 121421 port 176 121421 unique_id port 121421 remote_ip 10.8.0.234 121423 username forozande 121423 mac 121423 bytes_out 0 121423 bytes_in 0 121423 station_ip 113.203.94.12 121423 port 91 121423 unique_id port 121423 remote_ip 10.8.1.102 121424 username barzegar 121390 station_ip 5.120.131.48 121390 port 85 121390 unique_id port 121391 username sabaghnezhad 121391 mac 121391 bytes_out 120799 121391 bytes_in 483824 121391 station_ip 83.123.1.96 58977 username arezoo 58977 kill_reason Maximum check online fails reached 58977 mac 5.237.84.233:50589: Unknown host 58977 bytes_out 0 58977 bytes_in 0 58977 station_ip 5.237.84.233:50589 58977 port 1017 58977 unique_id port 121391 port 183 121391 unique_id port 121391 remote_ip 10.8.0.186 121393 username alipour 121393 kill_reason Another user logged on this global unique id 121393 mac 121393 bytes_out 0 121393 bytes_in 0 121393 station_ip 83.122.182.227 121393 port 84 121393 unique_id port 121394 username forozande 121394 mac 121394 bytes_out 0 121394 bytes_in 0 121394 station_ip 83.123.84.88 121394 port 87 121394 unique_id port 121394 remote_ip 10.8.1.102 121395 username Mahin 121395 mac 121395 bytes_out 0 121395 bytes_in 0 121395 station_ip 5.120.112.100 121395 port 169 121395 unique_id port 121395 remote_ip 10.8.0.222 121396 username sade 121396 unique_id port 121396 terminate_cause Lost-Carrier 121396 bytes_out 486 121396 bytes_in 338 121396 station_ip 5.119.80.17 121396 port 15729814 121396 nas_port_type Virtual 121396 remote_ip 5.5.5.31 121403 username Mahin 121403 mac 121403 bytes_out 95794 121403 bytes_in 73233 121403 station_ip 5.120.112.100 121403 port 169 121403 unique_id port 121403 remote_ip 10.8.0.222 121404 username alipour 121404 kill_reason Another user logged on this global unique id 121404 mac 121404 bytes_out 0 121404 bytes_in 0 121404 station_ip 83.122.182.227 121404 port 84 121404 unique_id port 121405 username barzegar 121405 mac 121405 bytes_out 0 121405 bytes_in 0 121405 station_ip 5.120.89.178 121405 port 88 121405 unique_id port 121405 remote_ip 10.8.1.174 121412 username forozande 121412 mac 121412 bytes_out 0 121412 bytes_in 0 121412 station_ip 37.129.124.106 121412 port 88 121412 unique_id port 121412 remote_ip 10.8.1.102 121413 username barzegar 121413 mac 121413 bytes_out 3663 121413 bytes_in 5830 121413 station_ip 5.120.89.178 121413 port 169 121413 unique_id port 121413 remote_ip 10.8.0.234 121414 username mehdizare 121414 mac 121414 bytes_out 0 121414 bytes_in 0 121414 station_ip 5.119.88.232 121414 port 90 121414 unique_id port 121414 remote_ip 10.8.1.42 121419 username alipour 121419 kill_reason Another user logged on this global unique id 121419 mac 121419 bytes_out 0 121419 bytes_in 0 121419 station_ip 83.122.182.227 121419 port 84 121419 unique_id port 121420 username Mahin 121420 mac 121420 bytes_out 12364 121420 bytes_in 18569 121420 station_ip 5.120.139.202 121420 port 180 121420 unique_id port 121420 remote_ip 10.8.0.222 121422 username alihosseini1 121422 mac 121422 bytes_out 297981 121422 bytes_in 1525989 121422 station_ip 5.120.2.117 121422 port 169 121422 unique_id port 121422 remote_ip 10.8.0.166 121425 username alipour 121425 mac 121425 bytes_out 0 121425 bytes_in 0 59008 username arezoo 59008 kill_reason Maximum check online fails reached 59008 mac 5.237.84.233:52784: Unknown host 59008 bytes_out 0 59008 bytes_in 0 59008 station_ip 5.237.84.233:52784 59008 port 1017 59008 unique_id port 121425 station_ip 83.122.182.227 121425 port 84 121425 unique_id port 121431 username kamali1 121431 mac 121431 bytes_out 0 121431 bytes_in 0 121431 station_ip 5.119.46.1 121431 port 170 121431 unique_id port 121433 username alihosseini1 121433 mac 121433 bytes_out 0 121433 bytes_in 0 121433 station_ip 5.119.237.8 121402 station_ip 83.122.97.22 121402 port 170 121402 unique_id port 121402 remote_ip 10.8.0.238 121406 username barzegar 121406 mac 121406 bytes_out 0 121406 bytes_in 0 121406 station_ip 5.120.89.178 121406 port 88 121406 unique_id port 121406 remote_ip 10.8.1.174 121411 username barzegar 121411 mac 121411 bytes_out 2417 121411 bytes_in 4692 121411 station_ip 5.120.89.178 121411 port 169 121411 unique_id port 121411 remote_ip 10.8.0.234 121415 username barzegar 121415 mac 121415 bytes_out 2592 121415 bytes_in 4865 121415 station_ip 5.120.89.178 121415 port 169 121415 unique_id port 121415 remote_ip 10.8.0.234 121417 username mahdiyehalizadeh 121417 mac 121417 bytes_out 10979 121417 bytes_in 12411 121417 station_ip 37.129.151.59 121417 port 176 121417 unique_id port 121417 remote_ip 10.8.0.82 121418 username barzegar 121418 mac 121418 bytes_out 0 121418 bytes_in 0 58997 username arezoo 58997 kill_reason Maximum check online fails reached 58997 mac 5.237.84.233:51620: Unknown host 58997 bytes_out 0 58997 bytes_in 0 58997 station_ip 5.237.84.233:51620 58997 port 1017 58997 unique_id port 121418 station_ip 5.120.89.178 121418 port 176 121418 unique_id port 121418 remote_ip 10.8.0.234 121426 username musa 121426 kill_reason Another user logged on this global unique id 121426 mac 121426 bytes_out 0 121426 bytes_in 0 121426 station_ip 37.129.99.121 121426 port 176 121426 unique_id port 121426 remote_ip 10.8.0.6 121428 username Mahin 121428 mac 121428 bytes_out 0 121428 bytes_in 0 121428 station_ip 5.120.139.202 121428 port 90 121428 unique_id port 121428 remote_ip 10.8.1.186 121429 username barzegar 121429 mac 121429 bytes_out 6251 121429 bytes_in 8223 121429 station_ip 5.120.89.178 121429 port 182 121429 unique_id port 121429 remote_ip 10.8.0.234 121436 username morteza 121436 mac 121436 bytes_out 20625 121436 bytes_in 49093 121436 station_ip 83.123.211.62 121436 port 169 121436 unique_id port 121436 remote_ip 10.8.0.46 121437 username barzegar 121437 mac 121437 bytes_out 0 121437 bytes_in 0 121437 station_ip 5.120.89.178 121437 port 93 121437 unique_id port 121437 remote_ip 10.8.1.174 121444 username Mahin 121444 mac 121444 bytes_out 0 121444 bytes_in 0 121444 station_ip 5.120.139.202 121444 port 90 121444 unique_id port 121444 remote_ip 10.8.1.186 121445 username alipour 121445 mac 121445 bytes_out 224509 121445 bytes_in 2273288 121445 station_ip 83.122.182.227 121445 port 84 121445 unique_id port 121445 remote_ip 10.8.1.50 121454 username musa 121454 kill_reason Another user logged on this global unique id 121454 mac 121454 bytes_out 0 121454 bytes_in 0 121454 station_ip 37.129.99.121 121454 port 176 121454 unique_id port 121455 username malekpoir 121455 kill_reason Another user logged on this global unique id 121455 mac 121455 bytes_out 0 121455 bytes_in 0 121455 station_ip 5.120.66.141 121455 port 89 121455 unique_id port 121457 username alipour 121457 mac 121457 bytes_out 0 121457 bytes_in 0 121457 station_ip 83.122.182.227 121457 port 169 121457 unique_id port 121457 remote_ip 10.8.0.102 121459 username Mahin 121459 mac 121459 bytes_out 29320 121459 bytes_in 27497 121459 station_ip 5.120.139.202 121459 port 170 121459 unique_id port 121459 remote_ip 10.8.0.222 121461 username alipour 121461 mac 121461 bytes_out 24305 121461 bytes_in 24295 121461 station_ip 83.122.182.227 121461 port 183 121461 unique_id port 121461 remote_ip 10.8.0.102 121462 username sabaghnezhad 121462 mac 121462 bytes_out 0 121424 mac 121424 bytes_out 0 121424 bytes_in 0 121424 station_ip 5.120.89.178 121424 port 92 121424 unique_id port 121424 remote_ip 10.8.1.174 121427 username barzegar 121427 kill_reason Maximum check online fails reached 121427 mac 121427 bytes_out 0 121427 bytes_in 0 121427 station_ip 5.120.89.178 121427 port 91 121427 unique_id port 121430 username alihosseini1 121430 mac 121430 bytes_out 1250313 121430 bytes_in 13296403 121430 station_ip 5.119.237.8 121430 port 169 121430 unique_id port 121430 remote_ip 10.8.0.166 121432 username avaanna 121432 kill_reason Another user logged on this global unique id 121432 mac 121432 bytes_out 0 121432 bytes_in 0 121432 station_ip 83.122.150.127 121432 port 122 121432 unique_id port 121432 remote_ip 10.8.0.98 121434 username morteza 121434 mac 121434 bytes_out 640967 121434 bytes_in 10528254 121434 station_ip 83.123.211.62 121434 port 182 121434 unique_id port 121434 remote_ip 10.8.0.46 121438 username morteza 121438 mac 121438 bytes_out 0 121438 bytes_in 0 121438 station_ip 83.123.211.62 121438 port 92 121438 unique_id port 121438 remote_ip 10.8.1.62 121439 username barzegar 121439 mac 121439 bytes_out 0 121439 bytes_in 0 121439 station_ip 5.120.89.178 121439 port 170 121439 unique_id port 121439 remote_ip 10.8.0.234 121441 username mehdizare 121441 mac 121441 bytes_out 0 121441 bytes_in 0 121441 station_ip 5.119.88.232 121441 port 88 121441 unique_id port 121441 remote_ip 10.8.1.42 121442 username musa 121442 kill_reason Another user logged on this global unique id 121442 mac 121442 bytes_out 0 121442 bytes_in 0 121442 station_ip 37.129.99.121 121442 port 176 121442 unique_id port 121446 username barzegar 121446 mac 121446 bytes_out 88293 121446 bytes_in 848829 121446 station_ip 5.120.89.178 121446 port 169 121446 unique_id port 121446 remote_ip 10.8.0.234 121449 username mehdizare 121449 mac 121449 bytes_out 0 121449 bytes_in 0 121449 station_ip 5.119.88.232 121449 port 88 121449 unique_id port 121449 remote_ip 10.8.1.42 121451 username Mahin 121451 mac 121451 bytes_out 0 121451 bytes_in 0 121451 station_ip 5.120.139.202 121451 port 90 121451 unique_id port 121451 remote_ip 10.8.1.186 121452 username forozande 121452 mac 121452 bytes_out 0 121452 bytes_in 0 121452 station_ip 83.122.32.16 121452 port 92 121452 unique_id port 121452 remote_ip 10.8.1.102 121453 username barzegar 121453 mac 121453 bytes_out 0 121453 bytes_in 0 121453 station_ip 5.120.89.178 121453 port 182 121453 unique_id port 121453 remote_ip 10.8.0.234 121458 username alipour 121458 mac 121458 bytes_out 20979 121458 bytes_in 27536 121458 station_ip 83.122.182.227 121458 port 169 121458 unique_id port 121458 remote_ip 10.8.0.102 121466 username musa 121466 kill_reason Another user logged on this global unique id 121466 mac 121466 bytes_out 0 121466 bytes_in 0 121466 station_ip 37.129.99.121 121466 port 176 121466 unique_id port 121468 username mehdizare 121468 mac 121468 bytes_out 0 121468 bytes_in 0 121468 station_ip 5.119.88.232 121468 port 84 121468 unique_id port 121468 remote_ip 10.8.1.42 121470 username kordestani 121470 mac 121470 bytes_out 2144529 121470 bytes_in 22549444 121470 station_ip 151.235.105.81 121470 port 148 121470 unique_id port 121470 remote_ip 10.8.0.134 121471 username barzegar 121471 mac 121471 bytes_out 0 121471 bytes_in 0 121471 station_ip 5.120.89.178 121471 port 90 121471 unique_id port 121471 remote_ip 10.8.1.174 121480 username sabaghnezhad 121433 port 169 121433 unique_id port 121433 remote_ip 10.8.0.166 121435 username barzegar 121435 mac 121435 bytes_out 0 121435 bytes_in 0 121435 station_ip 5.120.89.178 121435 port 170 121435 unique_id port 121435 remote_ip 10.8.0.234 121440 username alihosseini1 121440 mac 121440 bytes_out 22510 121440 bytes_in 57212 121440 station_ip 5.119.237.8 121440 port 169 121440 unique_id port 121440 remote_ip 10.8.0.166 121443 username malekpoir 121443 kill_reason Another user logged on this global unique id 121443 mac 121443 bytes_out 0 121443 bytes_in 0 121443 station_ip 5.120.66.141 121443 port 89 121443 unique_id port 121447 username alipour 121447 mac 121447 bytes_out 0 121447 bytes_in 0 121447 station_ip 83.122.182.227 121447 port 84 121447 unique_id port 121447 remote_ip 10.8.1.50 121448 username barzegar 121448 mac 121448 bytes_out 0 121448 bytes_in 0 121448 station_ip 5.120.89.178 121448 port 84 121448 unique_id port 121448 remote_ip 10.8.1.174 121450 username malekpoir 121450 kill_reason Another user logged on this global unique id 121450 mac 121450 bytes_out 0 121450 bytes_in 0 121450 station_ip 5.120.66.141 121450 port 89 121450 unique_id port 121456 username Mahin 121456 mac 121456 bytes_out 20494 121456 bytes_in 35144 121456 station_ip 5.120.139.202 121456 port 170 121456 unique_id port 121456 remote_ip 10.8.0.222 121460 username forozande 121460 mac 121460 bytes_out 0 121460 bytes_in 0 121460 station_ip 83.123.228.211 121460 port 88 121460 unique_id port 121460 remote_ip 10.8.1.102 121467 username musa 121467 mac 121467 bytes_out 0 121467 bytes_in 0 121467 station_ip 37.129.99.121 121467 port 176 121467 unique_id port 121469 username musa 121469 mac 121469 bytes_out 325024 121469 bytes_in 165013 121469 station_ip 37.129.99.121 121469 port 182 121469 unique_id port 121469 remote_ip 10.8.0.6 121472 username forozande 121472 mac 121472 bytes_out 0 121472 bytes_in 0 121472 station_ip 37.129.195.127 121472 port 87 121472 unique_id port 121472 remote_ip 10.8.1.102 121473 username Mahin 121473 mac 121473 bytes_out 255258 121473 bytes_in 1859357 121473 station_ip 5.120.139.202 121473 port 169 121473 unique_id port 121473 remote_ip 10.8.0.222 121474 username Mahin 121474 mac 121474 bytes_out 0 121474 bytes_in 0 121474 station_ip 5.120.139.202 59052 username arezoo 59052 kill_reason Another user logged on this global unique id 59052 mac 5.237.84.233:49169: Unknown host 59052 bytes_out 0 59052 bytes_in 0 59052 station_ip 5.237.84.233:49169 59052 port 1017 59052 unique_id port 121474 port 148 121474 unique_id port 121474 remote_ip 10.8.0.222 121476 username barzegar 121476 mac 121476 bytes_out 0 121476 bytes_in 0 121476 station_ip 5.120.89.178 121476 port 87 121476 unique_id port 121476 remote_ip 10.8.1.174 121477 username mirzaei 121477 kill_reason Another user logged on this global unique id 121477 mac 121477 bytes_out 0 121477 bytes_in 0 121477 station_ip 5.120.131.48 121477 port 85 121477 unique_id port 121478 username avaanna 121478 mac 121478 bytes_out 0 121478 bytes_in 0 121478 station_ip 83.122.150.127 121478 port 122 121478 unique_id port 121479 username barzegar 121479 mac 121479 bytes_out 0 121479 bytes_in 0 121479 station_ip 5.120.89.178 121479 port 87 121479 unique_id port 121479 remote_ip 10.8.1.174 121481 username sabaghnezhad 121481 mac 121481 bytes_out 1555 121481 bytes_in 5849 121481 station_ip 83.123.1.96 121481 port 122 121481 unique_id port 121481 remote_ip 10.8.0.186 121462 bytes_in 0 121462 station_ip 83.123.1.96 121462 port 87 121462 unique_id port 121462 remote_ip 10.8.1.130 121463 username mehdizare 121463 mac 121463 bytes_out 0 121463 bytes_in 0 121463 station_ip 5.119.88.232 121463 port 84 121463 unique_id port 121463 remote_ip 10.8.1.42 121464 username seyedmostafa 121464 kill_reason Another user logged on this global unique id 121464 mac 121464 bytes_out 0 121464 bytes_in 0 121464 station_ip 5.120.157.136 121464 port 182 121464 unique_id port 121464 remote_ip 10.8.0.122 121465 username seyedmostafa 121465 mac 121465 bytes_out 0 121465 bytes_in 0 121465 station_ip 5.120.157.136 121465 port 182 121465 unique_id port 121475 username kordestani 121475 mac 121475 bytes_out 50538 121475 bytes_in 209655 121475 station_ip 151.235.105.81 121475 port 176 121475 unique_id port 121475 remote_ip 10.8.0.134 121482 username mehdizare 121482 mac 121482 bytes_out 0 121482 bytes_in 0 121482 station_ip 5.119.88.232 121482 port 84 121482 unique_id port 121482 remote_ip 10.8.1.42 121484 username avaanna 121484 mac 121484 bytes_out 0 121484 bytes_in 0 121484 station_ip 83.122.150.127 121484 port 90 121484 unique_id port 121484 remote_ip 10.8.1.46 121491 username Mahin 121491 mac 121491 bytes_out 28984 121491 bytes_in 35998 121491 station_ip 5.120.139.202 121491 port 169 121491 unique_id port 121491 remote_ip 10.8.0.222 121493 username sabaghnezhad 121493 mac 121493 bytes_out 0 121493 bytes_in 0 121493 station_ip 83.123.1.96 121493 port 87 121493 unique_id port 121493 remote_ip 10.8.1.130 121497 username mehdizare 121497 mac 121497 bytes_out 0 121497 bytes_in 0 121497 station_ip 5.119.88.232 121497 port 84 121497 unique_id port 121497 remote_ip 10.8.1.42 121499 username mehdizare 121499 mac 121499 bytes_out 0 121499 bytes_in 0 121499 station_ip 5.119.88.232 121499 port 84 121499 unique_id port 121499 remote_ip 10.8.1.42 121500 username barzegar 121500 mac 121500 bytes_out 0 121500 bytes_in 0 121500 station_ip 5.120.89.178 121500 port 176 121500 unique_id port 121500 remote_ip 10.8.0.234 121506 username morteza 121506 mac 121506 bytes_out 0 121506 bytes_in 0 121506 station_ip 37.129.173.94 121506 port 89 121506 unique_id port 121506 remote_ip 10.8.1.62 121509 username khalili 121509 kill_reason Another user logged on this global unique id 121509 mac 121509 bytes_out 0 121509 bytes_in 0 121509 station_ip 5.120.49.182 121509 port 172 121509 unique_id port 121509 remote_ip 10.8.0.86 121511 username sabaghnezhad 121511 mac 121511 bytes_out 75097 121511 bytes_in 112900 121511 station_ip 83.123.1.96 121511 port 87 121511 unique_id port 121511 remote_ip 10.8.1.130 121513 username musa 121513 kill_reason Another user logged on this global unique id 121513 mac 121513 bytes_out 0 121513 bytes_in 0 121513 station_ip 83.123.137.54 121513 port 122 121513 unique_id port 121513 remote_ip 10.8.0.6 121522 username mehdizare 121522 mac 121522 bytes_out 0 121522 bytes_in 0 121522 station_ip 5.119.88.232 121522 port 170 121522 unique_id port 121522 remote_ip 10.8.0.90 121524 username barzegar 121524 mac 121524 bytes_out 0 121524 bytes_in 0 121524 station_ip 5.120.89.178 121524 port 170 121524 unique_id port 121524 remote_ip 10.8.0.234 121529 username mehdizare 121529 mac 121529 bytes_out 532303 121529 bytes_in 2235537 121529 station_ip 5.119.88.232 121529 port 88 121529 unique_id port 121529 remote_ip 10.8.1.42 121532 username zare 121532 kill_reason Maximum check online fails reached 121532 mac 121480 mac 121480 bytes_out 1162994 121480 bytes_in 11061534 121480 station_ip 83.123.1.96 121480 port 170 121480 unique_id port 121480 remote_ip 10.8.0.186 121489 username forozande 121489 mac 121489 bytes_out 0 121489 bytes_in 0 121489 station_ip 83.123.89.21 121489 port 88 121489 unique_id port 121489 remote_ip 10.8.1.102 121490 username mehdizare 121490 mac 121490 bytes_out 0 121490 bytes_in 0 121490 station_ip 5.119.88.232 121490 port 84 121490 unique_id port 121492 username Mahin 121492 mac 121492 bytes_out 0 121492 bytes_in 0 121492 station_ip 5.120.139.202 121492 port 148 121492 unique_id port 121492 remote_ip 10.8.0.222 121495 username barzegar 121495 mac 121495 bytes_out 0 121495 bytes_in 0 121495 station_ip 5.120.89.178 121495 port 87 121495 unique_id port 121495 remote_ip 10.8.1.174 121496 username mehdizare 121496 mac 121496 bytes_out 0 121496 bytes_in 0 121496 station_ip 5.119.88.232 121496 port 84 121496 unique_id port 121496 remote_ip 10.8.1.42 121501 username mehdizare 121501 mac 121501 bytes_out 9674 121501 bytes_in 15612 121501 station_ip 5.119.88.232 121501 port 170 121501 unique_id port 121501 remote_ip 10.8.0.90 121502 username mahdiyehalizadeh 121502 mac 121502 bytes_out 11464 121502 bytes_in 12065 121502 station_ip 113.203.108.25 121502 port 182 121502 unique_id port 121502 remote_ip 10.8.0.82 121503 username barzegar 121503 mac 121503 bytes_out 0 121503 bytes_in 0 121503 station_ip 5.120.89.178 121503 port 88 121503 unique_id port 121503 remote_ip 10.8.1.174 121504 username barzegar 121504 mac 121504 bytes_out 0 121504 bytes_in 0 121504 station_ip 5.120.89.178 121504 port 89 121504 unique_id port 121504 remote_ip 10.8.1.174 121505 username morteza 121505 mac 121505 bytes_out 0 121505 bytes_in 0 121505 station_ip 37.129.173.94 121505 port 89 121505 unique_id port 121505 remote_ip 10.8.1.62 121517 username arabpour 121517 unique_id port 121517 terminate_cause User-Request 121517 bytes_out 124829 121517 bytes_in 416953 121517 station_ip 5.217.178.149 121517 port 15729815 121517 nas_port_type Virtual 121517 remote_ip 5.5.5.253 121519 username hosseine 121519 mac 121519 bytes_out 0 121519 bytes_in 0 121519 station_ip 83.122.97.22 121519 port 176 121519 unique_id port 121519 remote_ip 10.8.0.238 121521 username mehdizare 121521 mac 121521 bytes_out 0 121521 bytes_in 0 121521 station_ip 5.119.88.232 121521 port 183 121521 unique_id port 121521 remote_ip 10.8.0.90 121523 username musa 121523 kill_reason Another user logged on this global unique id 121523 mac 121523 bytes_out 0 121523 bytes_in 0 121523 station_ip 83.123.137.54 121523 port 122 121523 unique_id port 121527 username zare 121527 mac 121527 bytes_out 0 121527 bytes_in 0 121527 station_ip 94.183.214.14 121527 port 87 121527 unique_id port 121527 remote_ip 10.8.1.58 121528 username sabaghnezhad 121528 mac 121528 bytes_out 0 121528 bytes_in 0 121528 station_ip 83.123.1.96 121528 port 184 121528 unique_id port 121528 remote_ip 10.8.0.186 121530 username musa 121530 kill_reason Another user logged on this global unique id 121530 mac 121530 bytes_out 0 121530 bytes_in 0 121530 station_ip 83.123.137.54 121530 port 122 121530 unique_id port 121531 username mehdizare 121531 mac 121531 bytes_out 19881 121531 bytes_in 55197 121531 station_ip 5.119.88.232 121531 port 88 121531 unique_id port 121531 remote_ip 10.8.1.42 121534 username mosi 121534 kill_reason Another user logged on this global unique id 121534 mac 121483 username avaanna 121483 mac 121483 bytes_out 0 121483 bytes_in 0 121483 station_ip 83.122.150.127 121483 port 87 121483 unique_id port 121483 remote_ip 10.8.1.46 121485 username barzegar 121485 mac 121485 bytes_out 64903 121485 bytes_in 102552 121485 station_ip 5.120.89.178 121485 port 87 121485 unique_id port 121485 remote_ip 10.8.1.174 121486 username sabaghnezhad 121486 mac 121486 bytes_out 0 121486 bytes_in 0 121486 station_ip 83.123.1.96 121486 port 88 121486 unique_id port 121486 remote_ip 10.8.1.130 121487 username barzegar 121487 mac 121487 bytes_out 19060 121487 bytes_in 18792 121487 station_ip 5.120.89.178 121487 port 122 121487 unique_id port 121487 remote_ip 10.8.0.234 121488 username mehdizare 121488 kill_reason Another user logged on this global unique id 121488 mac 121488 bytes_out 0 121488 bytes_in 0 121488 station_ip 5.119.88.232 121488 port 84 121488 unique_id port 121488 remote_ip 10.8.1.42 121494 username malekpoir 121494 mac 121494 bytes_out 0 121494 bytes_in 0 121494 station_ip 5.120.66.141 121494 port 89 121494 unique_id port 121498 username mehdizare 121498 mac 121498 bytes_out 0 121498 bytes_in 0 121498 station_ip 5.119.88.232 121498 port 88 121498 unique_id port 121498 remote_ip 10.8.1.42 121507 username kordestani 121507 mac 121507 bytes_out 184835 121507 bytes_in 795322 121507 station_ip 151.235.105.81 121507 port 122 121507 unique_id port 121507 remote_ip 10.8.0.134 121508 username barzegar 121508 mac 121508 bytes_out 0 121508 bytes_in 0 121508 station_ip 5.120.89.178 121508 port 89 121508 unique_id port 121508 remote_ip 10.8.1.174 121510 username morteza 121510 mac 121510 bytes_out 0 121510 bytes_in 0 121510 station_ip 37.129.173.94 121510 port 170 121510 unique_id port 121510 remote_ip 10.8.0.46 121512 username forozande 121512 mac 121512 bytes_out 0 121512 bytes_in 0 121512 station_ip 37.129.62.69 121512 port 88 121512 unique_id port 121512 remote_ip 10.8.1.102 121514 username mansur 121514 mac 121514 bytes_out 0 121514 bytes_in 0 121514 station_ip 5.119.217.12 121514 port 182 121514 unique_id port 121514 remote_ip 10.8.0.210 121515 username malekpoir 121515 mac 121515 bytes_out 886817 121515 bytes_in 11617773 121515 station_ip 5.120.66.141 121515 port 84 121515 unique_id port 121515 remote_ip 10.8.1.54 121516 username barzegar 121516 mac 121516 bytes_out 0 121516 bytes_in 0 121516 station_ip 5.120.89.178 121516 port 88 121516 unique_id port 121516 remote_ip 10.8.1.174 121518 username kordestani 121518 mac 121518 bytes_out 426332 121518 bytes_in 5555553 121518 station_ip 151.235.105.81 121518 port 170 121518 unique_id port 121518 remote_ip 10.8.0.134 121520 username barzegar 121520 mac 121520 bytes_out 1732 121520 bytes_in 3937 121520 station_ip 5.120.89.178 121520 port 88 121520 unique_id port 121520 remote_ip 10.8.1.174 121525 username zare 121525 mac 121525 bytes_out 1778297 121525 bytes_in 28955314 121525 station_ip 94.183.214.14 121525 port 87 121525 unique_id port 121525 remote_ip 10.8.1.58 121526 username zare 121526 mac 121526 bytes_out 0 121526 bytes_in 0 121526 station_ip 94.183.214.14 121526 port 87 121526 unique_id port 121526 remote_ip 10.8.1.58 121542 username zare 121542 mac 121542 bytes_out 0 121542 bytes_in 0 121542 station_ip 94.183.214.14 121542 port 183 121542 unique_id port 121542 remote_ip 10.8.0.18 121546 username barzegar 121546 mac 121546 bytes_out 0 121546 bytes_in 0 121532 bytes_out 0 121532 bytes_in 0 121532 station_ip 94.183.214.14 121532 port 87 121532 unique_id port 121533 username mahdiyehalizadeh 121533 mac 121533 bytes_out 0 121533 bytes_in 0 121533 station_ip 83.122.252.206 121533 port 176 121533 unique_id port 121533 remote_ip 10.8.0.82 121539 username alihosseini1 121539 kill_reason Another user logged on this global unique id 121539 mac 121539 bytes_out 0 121539 bytes_in 0 121539 station_ip 5.119.74.112 121539 port 148 121539 unique_id port 121539 remote_ip 10.8.0.166 121540 username mosi 121540 mac 121540 bytes_out 0 121540 bytes_in 0 121540 station_ip 37.137.9.41 121540 port 180 121540 unique_id port 121541 username barzegar 121541 kill_reason Another user logged on this global unique id 121541 mac 121541 bytes_out 0 121541 bytes_in 0 121541 station_ip 5.120.89.178 121541 port 170 121541 unique_id port 121545 username zare 121545 mac 121545 bytes_out 0 121545 bytes_in 0 121545 station_ip 94.183.214.14 121545 port 180 121545 unique_id port 121545 remote_ip 10.8.0.18 121547 username musa 121547 kill_reason Another user logged on this global unique id 121547 mac 121547 bytes_out 0 121547 bytes_in 0 121547 station_ip 83.123.137.54 121547 port 122 121547 unique_id port 121551 username sabaghnezhad 121551 mac 121551 bytes_out 46160 121551 bytes_in 66281 121551 station_ip 83.123.1.96 121551 port 89 121551 unique_id port 121551 remote_ip 10.8.1.130 121554 username aminvpn 121554 kill_reason Another user logged on this global unique id 121554 mac 121554 bytes_out 0 121554 bytes_in 0 121554 station_ip 5.120.76.250 121554 port 148 121554 unique_id port 121554 remote_ip 10.8.0.14 121555 username rajaei 121555 kill_reason Another user logged on this global unique id 121555 mac 121555 bytes_out 0 121555 bytes_in 0 121555 station_ip 37.137.15.75 121555 port 176 121555 unique_id port 121556 username zare 121556 mac 121556 bytes_out 0 121556 bytes_in 0 121556 station_ip 94.183.214.14 121556 port 180 121556 unique_id port 121556 remote_ip 10.8.0.18 121557 username barzegar 121557 kill_reason Another user logged on this global unique id 121557 mac 121557 bytes_out 0 121557 bytes_in 0 121557 station_ip 5.120.89.178 121557 port 93 121557 unique_id port 121557 remote_ip 10.8.1.174 121559 username alihosseini1 121559 mac 121559 bytes_out 0 121559 bytes_in 0 121559 station_ip 5.119.74.112 121559 port 183 121559 unique_id port 121559 remote_ip 10.8.0.166 121560 username sabaghnezhad 121560 mac 121560 bytes_out 0 121560 bytes_in 0 121560 station_ip 83.123.1.96 121560 port 170 121560 unique_id port 121560 remote_ip 10.8.0.186 121561 username mehdizare 121561 mac 121561 bytes_out 83097 121561 bytes_in 237453 121561 station_ip 5.119.88.232 121561 port 88 121561 unique_id port 121561 remote_ip 10.8.1.42 121564 username forozande 121564 mac 121564 bytes_out 933440 121564 bytes_in 2689409 121564 station_ip 83.122.76.106 121564 port 92 121564 unique_id port 121564 remote_ip 10.8.1.102 121568 username barzegar 121568 kill_reason Another user logged on this global unique id 121568 mac 121568 bytes_out 0 121568 bytes_in 0 121568 station_ip 5.120.89.178 121568 port 93 121568 unique_id port 121570 username mehdizare 121570 mac 121570 bytes_out 11835 121570 bytes_in 18545 121570 station_ip 5.119.88.232 121570 port 88 121570 unique_id port 121570 remote_ip 10.8.1.42 121572 username avaanna 121572 mac 121572 bytes_out 290922 121572 bytes_in 1178797 121572 station_ip 83.122.150.127 121572 port 89 121572 unique_id port 121572 remote_ip 10.8.1.46 121534 bytes_out 0 121534 bytes_in 0 121534 station_ip 37.137.9.41 121534 port 180 121534 unique_id port 121534 remote_ip 10.8.0.138 121535 username sabaghnezhad 121535 mac 121535 bytes_out 0 121535 bytes_in 0 121535 station_ip 83.123.1.96 121535 port 184 121535 unique_id port 121535 remote_ip 10.8.0.186 121536 username forozande 121536 mac 121536 bytes_out 122892 121536 bytes_in 353631 121536 station_ip 83.123.160.148 121536 port 89 121536 unique_id port 121536 remote_ip 10.8.1.102 121537 username barzegar 121537 kill_reason Another user logged on this global unique id 121537 mac 121537 bytes_out 0 121537 bytes_in 0 121537 station_ip 5.120.89.178 121537 port 170 121537 unique_id port 121537 remote_ip 10.8.0.234 121538 username mehdizare 121538 mac 121538 bytes_out 43272 121538 bytes_in 66307 121538 station_ip 5.119.88.232 121538 port 88 121538 unique_id port 121538 remote_ip 10.8.1.42 121543 username rajaei 121543 kill_reason Another user logged on this global unique id 121543 mac 121543 bytes_out 0 121543 bytes_in 0 121543 station_ip 37.137.15.75 121543 port 176 121543 unique_id port 121543 remote_ip 10.8.0.34 121544 username barzegar 121544 kill_reason Another user logged on this global unique id 121544 mac 121544 bytes_out 0 121544 bytes_in 0 121544 station_ip 5.120.89.178 121544 port 170 59138 username arezoo 59138 kill_reason Maximum check online fails reached 59138 mac 5.237.84.233:49517: Unknown host 59138 bytes_out 0 59138 bytes_in 0 59138 station_ip 5.237.84.233:49517 59138 port 1017 59138 unique_id port 121544 unique_id port 121548 username alihosseini1 121548 mac 121548 bytes_out 0 121548 bytes_in 0 121548 station_ip 5.119.74.112 121548 port 148 121548 unique_id port 121552 username avaanna 121552 mac 121552 bytes_out 5966 121552 bytes_in 12627 121552 station_ip 83.122.150.127 121552 port 90 121552 unique_id port 121552 remote_ip 10.8.1.46 121566 username zare 121566 mac 121566 bytes_out 0 121566 bytes_in 0 121566 station_ip 94.183.214.14 121566 port 180 121566 unique_id port 121566 remote_ip 10.8.0.18 121569 username aminvpn 121569 kill_reason Another user logged on this global unique id 121569 mac 121569 bytes_out 0 121569 bytes_in 0 121569 station_ip 5.120.76.250 121569 port 148 121569 unique_id port 121571 username forozande 121571 mac 121571 bytes_out 221570 121571 bytes_in 3628805 121571 station_ip 83.123.46.53 121571 port 90 121571 unique_id port 121571 remote_ip 10.8.1.102 121573 username barzegar 121573 mac 121573 bytes_out 0 121573 bytes_in 0 121573 station_ip 5.120.89.178 121573 port 93 121573 unique_id port 121577 username tahmasebi 121577 kill_reason Another user logged on this global unique id 121577 mac 121577 bytes_out 0 121577 bytes_in 0 121577 station_ip 5.119.21.90 121577 port 135 121577 unique_id port 121579 username rajaei 121579 kill_reason Another user logged on this global unique id 121579 mac 121579 bytes_out 0 121579 bytes_in 0 121579 station_ip 37.137.15.75 121579 port 170 121579 unique_id port 121579 remote_ip 10.8.0.34 121580 username barzegar 121580 mac 121580 bytes_out 2344 121580 bytes_in 5209 121580 station_ip 5.120.89.178 121580 port 89 121580 unique_id port 121580 remote_ip 10.8.1.174 121583 username rajaei 121583 mac 121583 bytes_out 0 121583 bytes_in 0 121583 station_ip 37.137.15.75 121583 port 170 121583 unique_id port 121589 username aminvpn 121589 kill_reason Another user logged on this global unique id 121589 mac 121589 bytes_out 0 121589 bytes_in 0 121589 station_ip 5.120.76.250 121589 port 148 121589 unique_id port 121546 station_ip 5.120.89.178 121546 port 170 121546 unique_id port 121549 username rajaei 121549 kill_reason Another user logged on this global unique id 121549 mac 121549 bytes_out 0 121549 bytes_in 0 121549 station_ip 37.137.15.75 121549 port 176 121549 unique_id port 121550 username avaanna 121550 mac 121550 bytes_out 361160 121550 bytes_in 1300708 121550 station_ip 83.122.150.127 121550 port 90 121550 unique_id port 121550 remote_ip 10.8.1.46 121553 username musa 121553 kill_reason Another user logged on this global unique id 121553 mac 121553 bytes_out 0 121553 bytes_in 0 121553 station_ip 83.123.137.54 121553 port 122 121553 unique_id port 121558 username mahdiyehalizadeh 121558 mac 121558 bytes_out 0 121558 bytes_in 0 121558 station_ip 83.122.252.206 121558 port 185 121558 unique_id port 121558 remote_ip 10.8.0.82 121562 username sabaghnezhad 121562 mac 121562 bytes_out 0 121562 bytes_in 0 121562 station_ip 83.123.1.96 121562 port 170 121562 unique_id port 121562 remote_ip 10.8.0.186 121563 username rajaei 121563 mac 121563 bytes_out 0 121563 bytes_in 0 121563 station_ip 37.137.15.75 121563 port 176 121563 unique_id port 121565 username sabaghnezhad 121565 mac 121565 bytes_out 0 121565 bytes_in 0 121565 station_ip 83.123.1.96 121565 port 183 121565 unique_id port 121565 remote_ip 10.8.0.186 121567 username alirezazadeh 121567 unique_id port 121567 terminate_cause User-Request 121567 bytes_out 33288377 121567 bytes_in 723011567 121567 station_ip 31.56.223.233 121567 port 15729813 121567 nas_port_type Virtual 121567 remote_ip 5.5.5.15 121574 username malekpoir 121574 kill_reason Another user logged on this global unique id 121574 mac 121574 bytes_out 0 121574 bytes_in 0 121574 station_ip 5.120.66.141 121574 port 84 121574 unique_id port 121574 remote_ip 10.8.1.54 121581 username aminvpn 121581 kill_reason Another user logged on this global unique id 121581 mac 121581 bytes_out 0 121581 bytes_in 0 121581 station_ip 5.120.76.250 121581 port 148 121581 unique_id port 121585 username forozande 121585 mac 121585 bytes_out 0 121585 bytes_in 0 121585 station_ip 37.129.108.212 121585 port 89 121585 unique_id port 121585 remote_ip 10.8.1.102 121586 username alirezazadeh 121586 unique_id port 121586 terminate_cause Lost-Carrier 121586 bytes_out 100715 121586 bytes_in 640495 121586 station_ip 5.119.118.242 121586 port 15729818 121586 nas_port_type Virtual 121586 remote_ip 5.5.5.252 121591 username musa 121591 kill_reason Another user logged on this global unique id 121591 mac 121591 bytes_out 0 121591 bytes_in 0 121591 station_ip 83.123.137.54 121591 port 122 121591 unique_id port 121592 username aminvpn 121592 mac 121592 bytes_out 0 121592 bytes_in 0 121592 station_ip 5.120.76.250 121592 port 148 121592 unique_id port 121595 username mansur 121595 kill_reason Another user logged on this global unique id 121595 mac 121595 bytes_out 0 121595 bytes_in 0 121595 station_ip 5.120.166.195 121595 port 180 121595 unique_id port 121596 username jafari 121596 kill_reason Another user logged on this global unique id 121596 mac 121596 bytes_out 0 121596 bytes_in 0 121596 station_ip 89.32.99.176 121596 port 170 121596 unique_id port 121596 remote_ip 10.8.0.242 121600 username musa 121600 kill_reason Another user logged on this global unique id 121600 mac 121600 bytes_out 0 121600 bytes_in 0 121600 station_ip 83.123.137.54 121600 port 122 121600 unique_id port 121601 username mohammadmahdi 121601 kill_reason Another user logged on this global unique id 121601 mac 121601 bytes_out 0 121601 bytes_in 0 121601 station_ip 5.120.161.233 121601 port 148 121575 username musa 121575 kill_reason Another user logged on this global unique id 121575 mac 121575 bytes_out 0 121575 bytes_in 0 121575 station_ip 83.123.137.54 121575 port 122 121575 unique_id port 121576 username barzegar 121576 mac 121576 bytes_out 0 121576 bytes_in 0 121576 station_ip 5.120.89.178 121576 port 89 121576 unique_id port 121576 remote_ip 10.8.1.174 121578 username kordestani 121578 mac 121578 bytes_out 0 121578 bytes_in 0 121578 station_ip 151.235.105.81 121578 port 182 121578 unique_id port 121578 remote_ip 10.8.0.134 121582 username mansur 121582 kill_reason Another user logged on this global unique id 121582 mac 121582 bytes_out 0 121582 bytes_in 0 121582 station_ip 5.120.166.195 121582 port 180 121582 unique_id port 121582 remote_ip 10.8.0.210 121584 username musa 121584 kill_reason Another user logged on this global unique id 121584 mac 121584 bytes_out 0 121584 bytes_in 0 59171 username arezoo 59171 kill_reason Maximum check online fails reached 59171 mac 5.238.33.43:50048: Unknown host 59171 bytes_out 0 59171 bytes_in 0 59171 station_ip 5.238.33.43:50048 59171 port 1017 59171 unique_id port 121584 station_ip 83.123.137.54 121584 port 122 121584 unique_id port 121587 username mansur 121587 kill_reason Another user logged on this global unique id 121587 mac 121587 bytes_out 0 121587 bytes_in 0 121587 station_ip 5.120.166.195 121587 port 180 121587 unique_id port 121588 username barzegar 121588 mac 121588 bytes_out 0 121588 bytes_in 0 121588 station_ip 5.120.89.178 121588 port 182 121588 unique_id port 121588 remote_ip 10.8.0.234 121593 username mansur 121593 kill_reason Another user logged on this global unique id 121593 mac 121593 bytes_out 0 121593 bytes_in 0 121593 station_ip 5.120.166.195 121593 port 180 121593 unique_id port 121597 username mansur 121597 kill_reason Another user logged on this global unique id 121597 mac 121597 bytes_out 0 121597 bytes_in 0 121597 station_ip 5.120.166.195 121597 port 180 121597 unique_id port 121599 username mansur 121599 mac 121599 bytes_out 0 121599 bytes_in 0 121599 station_ip 5.120.166.195 121599 port 180 121599 unique_id port 121605 username mohammadmahdi 121605 kill_reason Another user logged on this global unique id 121605 mac 121605 bytes_out 0 121605 bytes_in 0 121605 station_ip 5.120.161.233 121605 port 148 121605 unique_id port 121607 username barzegar 121607 mac 121607 bytes_out 0 121607 bytes_in 0 121607 station_ip 5.120.89.178 121607 port 180 121607 unique_id port 121607 remote_ip 10.8.0.234 121612 username barzegar 121612 mac 121612 bytes_out 11754 121612 bytes_in 60871 121612 station_ip 5.120.89.178 121612 port 89 121612 unique_id port 121612 remote_ip 10.8.1.174 121615 username musa 121615 kill_reason Another user logged on this global unique id 121615 mac 121615 bytes_out 0 121615 bytes_in 0 121615 station_ip 83.123.137.54 121615 port 122 121615 unique_id port 121617 username mohammadmahdi 121617 kill_reason Another user logged on this global unique id 121617 mac 121617 bytes_out 0 121617 bytes_in 0 121617 station_ip 5.120.161.233 121617 port 148 121617 unique_id port 121618 username musa 121618 kill_reason Another user logged on this global unique id 121618 mac 121618 bytes_out 0 121618 bytes_in 0 121618 station_ip 83.123.137.54 121618 port 122 121618 unique_id port 121619 username sabaghnezhad 121619 mac 121619 bytes_out 0 121619 bytes_in 0 121619 station_ip 83.123.1.96 121619 port 176 121619 unique_id port 121619 remote_ip 10.8.0.186 121622 username malekpoir 121622 mac 121622 bytes_out 0 121622 bytes_in 0 121590 username barzegar 121590 mac 121590 bytes_out 0 121590 bytes_in 0 121590 station_ip 5.120.89.178 121590 port 182 121590 unique_id port 121590 remote_ip 10.8.0.234 121594 username barzegar 121594 mac 121594 bytes_out 0 121594 bytes_in 0 121594 station_ip 5.120.89.178 121594 port 182 121594 unique_id port 121594 remote_ip 10.8.0.234 121598 username ahmadipour 121598 unique_id port 121598 terminate_cause Lost-Carrier 121598 bytes_out 6646282 121598 bytes_in 166324077 121598 station_ip 83.123.129.101 121598 port 15729817 121598 nas_port_type Virtual 121598 remote_ip 5.5.5.253 121603 username forozande 121603 mac 121603 bytes_out 180934 121603 bytes_in 1756757 121603 station_ip 37.129.118.152 121603 port 89 121603 unique_id port 121603 remote_ip 10.8.1.102 121604 username jafari 121604 kill_reason Another user logged on this global unique id 121604 mac 121604 bytes_out 0 121604 bytes_in 0 121604 station_ip 89.32.99.176 121604 port 170 121604 unique_id port 121608 username musa 121608 kill_reason Another user logged on this global unique id 121608 mac 121608 bytes_out 0 121608 bytes_in 0 121608 station_ip 83.123.137.54 121608 port 122 121608 unique_id port 121609 username jafari 121609 kill_reason Another user logged on this global unique id 121609 mac 121609 bytes_out 0 121609 bytes_in 0 121609 station_ip 89.32.99.176 121609 port 170 121609 unique_id port 121613 username mohammadmahdi 121613 kill_reason Another user logged on this global unique id 121613 mac 121613 bytes_out 0 121613 bytes_in 0 121613 station_ip 5.120.161.233 121613 port 148 121613 unique_id port 121614 username mirzaei 121614 kill_reason Another user logged on this global unique id 121614 mac 121614 bytes_out 0 121614 bytes_in 0 121614 station_ip 5.120.131.48 121614 port 85 121614 unique_id port 121616 username hamid.e 121616 unique_id port 121616 terminate_cause User-Request 121616 bytes_out 17426086 121616 bytes_in 403342569 121616 station_ip 37.27.16.125 121616 port 15729816 121616 nas_port_type Virtual 121616 remote_ip 5.5.5.255 121621 username musa 121621 kill_reason Another user logged on this global unique id 121621 mac 121621 bytes_out 0 121621 bytes_in 0 121621 station_ip 83.123.137.54 59184 username arezoo 59184 kill_reason Maximum check online fails reached 59184 mac 5.238.33.43:51182: Unknown host 59184 bytes_out 0 59184 bytes_in 0 59184 station_ip 5.238.33.43:51182 59184 port 1017 59184 unique_id port 121621 port 122 121621 unique_id port 121624 username sabaghnezhad 121624 mac 121624 bytes_out 11055 121624 bytes_in 18324 121624 station_ip 83.123.1.96 121624 port 185 121624 unique_id port 121624 remote_ip 10.8.0.186 121629 username aminvpn 121629 mac 121629 bytes_out 0 121629 bytes_in 0 121629 station_ip 83.123.199.155 121629 port 180 121629 unique_id port 121629 remote_ip 10.8.0.14 121634 username aminvpn 121634 mac 121634 bytes_out 0 121634 bytes_in 0 121634 station_ip 5.211.56.27 121634 port 84 121634 unique_id port 121634 remote_ip 10.8.1.6 121637 username jafari 121637 kill_reason Another user logged on this global unique id 121637 mac 121637 bytes_out 0 121637 bytes_in 0 121637 station_ip 89.32.99.176 121637 port 170 121637 unique_id port 121638 username mosi 121638 kill_reason Another user logged on this global unique id 121638 mac 121638 bytes_out 0 121638 bytes_in 0 121638 station_ip 37.137.9.41 121638 port 184 121638 unique_id port 121638 remote_ip 10.8.0.138 121642 username zare 121642 mac 121642 bytes_out 0 121642 bytes_in 0 121642 station_ip 94.183.214.14 121642 port 185 121642 unique_id port 121642 remote_ip 10.8.0.18 121644 username sabaghnezhad 121601 unique_id port 121601 remote_ip 10.8.0.54 121602 username barzegar 121602 mac 121602 bytes_out 0 121602 bytes_in 0 121602 station_ip 5.120.89.178 121602 port 180 121602 unique_id port 121602 remote_ip 10.8.0.234 121606 username avaanna 121606 mac 121606 bytes_out 3787701 121606 bytes_in 45731607 121606 station_ip 83.122.150.127 121606 port 183 121606 unique_id port 121606 remote_ip 10.8.0.98 121610 username forozande 121610 mac 121610 bytes_out 433653 121610 bytes_in 5221233 121610 station_ip 83.122.231.234 121610 port 90 121610 unique_id port 121610 remote_ip 10.8.1.102 121611 username houshang 121611 mac 121611 bytes_out 0 121611 bytes_in 0 121611 station_ip 5.120.18.193 121611 port 183 121611 unique_id port 121611 remote_ip 10.8.0.22 121620 username mohammadmahdi 121620 mac 121620 bytes_out 0 121620 bytes_in 0 121620 station_ip 5.120.161.233 121620 port 148 121620 unique_id port 121623 username jafari 121623 kill_reason Another user logged on this global unique id 121623 mac 121623 bytes_out 0 121623 bytes_in 0 121623 station_ip 89.32.99.176 121623 port 170 121623 unique_id port 121625 username musa 121625 kill_reason Another user logged on this global unique id 121625 mac 121625 bytes_out 0 121625 bytes_in 0 121625 station_ip 83.123.137.54 121625 port 122 121625 unique_id port 121627 username aminvpn 121627 mac 121627 bytes_out 0 121627 bytes_in 0 121627 station_ip 5.211.56.27 121627 port 185 121627 unique_id port 121627 remote_ip 10.8.0.14 121628 username ahmadi 121628 kill_reason Relative expiration date has reached 121628 unique_id port 121628 bytes_out 0 121628 bytes_in 0 121628 station_ip 113.203.55.142 121628 port 15729821 121628 nas_port_type Virtual 121631 username zare 121631 mac 121631 bytes_out 0 121631 bytes_in 0 121631 station_ip 94.183.214.14 121631 port 157 121631 unique_id port 121631 remote_ip 10.8.0.18 121632 username zare 121632 mac 121632 bytes_out 0 121632 bytes_in 0 121632 station_ip 94.183.214.14 121632 port 157 121632 unique_id port 121632 remote_ip 10.8.0.18 121633 username aminvpn 121633 mac 121633 bytes_out 0 121633 bytes_in 0 121633 station_ip 5.211.56.27 121633 port 185 121633 unique_id port 121633 remote_ip 10.8.0.14 121641 username kordestani 121641 mac 121641 bytes_out 0 121641 bytes_in 0 121641 station_ip 151.235.104.4 121641 port 180 121641 unique_id port 121641 remote_ip 10.8.0.134 121643 username zare 121643 mac 121643 bytes_out 0 121643 bytes_in 0 121643 station_ip 94.183.214.14 121643 port 84 121643 unique_id port 121643 remote_ip 10.8.1.58 121645 username barzegar 121645 mac 121645 bytes_out 844689 121645 bytes_in 2661571 121645 station_ip 5.120.89.178 121645 port 89 121645 unique_id port 121645 remote_ip 10.8.1.174 121648 username musa 121648 kill_reason Another user logged on this global unique id 121648 mac 121648 bytes_out 0 121648 bytes_in 0 121648 station_ip 83.123.137.54 121648 port 122 121648 unique_id port 121650 username jafari 121650 kill_reason Another user logged on this global unique id 121650 mac 121650 bytes_out 0 121650 bytes_in 0 121650 station_ip 89.32.99.176 121650 port 170 121650 unique_id port 121653 username zare 121653 mac 121653 bytes_out 0 121653 bytes_in 0 121653 station_ip 94.183.214.14 121653 port 90 121653 unique_id port 121653 remote_ip 10.8.1.58 121655 username jafari 121655 kill_reason Another user logged on this global unique id 121655 mac 121655 bytes_out 0 121655 bytes_in 0 121655 station_ip 89.32.99.176 121655 port 170 121622 station_ip 5.120.66.141 121622 port 84 121622 unique_id port 121626 username aminvpn 121626 mac 121626 bytes_out 621239 121626 bytes_in 4697022 121626 station_ip 83.123.199.155 121626 port 180 121626 unique_id port 121626 remote_ip 10.8.0.14 121630 username zare 121630 mac 121630 bytes_out 0 121630 bytes_in 0 121630 station_ip 94.183.214.14 121630 port 157 121630 unique_id port 121630 remote_ip 10.8.0.18 121635 username zare 121635 mac 121635 bytes_out 0 121635 bytes_in 0 121635 station_ip 94.183.214.14 121635 port 185 121635 unique_id port 121635 remote_ip 10.8.0.18 121636 username zare 121636 mac 121636 bytes_out 13896 121636 bytes_in 31774 121636 station_ip 94.183.214.14 121636 port 185 121636 unique_id port 121636 remote_ip 10.8.0.18 121639 username musa 121639 kill_reason Another user logged on this global unique id 121639 mac 121639 bytes_out 0 121639 bytes_in 0 121639 station_ip 83.123.137.54 121639 port 122 121639 unique_id port 121640 username zare 121640 mac 121640 bytes_out 0 121640 bytes_in 0 121640 station_ip 94.183.214.14 121640 port 185 121640 unique_id port 121640 remote_ip 10.8.0.18 121656 username zare 121656 mac 121656 bytes_out 0 121656 bytes_in 0 121656 station_ip 94.183.214.14 121656 port 185 121656 unique_id port 121656 remote_ip 10.8.0.18 121659 username zare 121659 mac 121659 bytes_out 0 121659 bytes_in 0 121659 station_ip 94.183.214.14 121659 port 185 121659 unique_id port 121659 remote_ip 10.8.0.18 121660 username zare 121660 mac 121660 bytes_out 0 121660 bytes_in 0 121660 station_ip 94.183.214.14 121660 port 185 121660 unique_id port 121660 remote_ip 10.8.0.18 121661 username aminvpn 121661 unique_id port 121661 terminate_cause Lost-Carrier 121661 bytes_out 5890625 121661 bytes_in 18083723 121661 station_ip 5.120.76.250 121661 port 15729819 121661 nas_port_type Virtual 121661 remote_ip 5.5.5.252 121667 username zare 121667 mac 121667 bytes_out 0 121667 bytes_in 0 121667 station_ip 94.183.214.14 121667 port 185 121667 unique_id port 121667 remote_ip 10.8.0.18 121670 username zare 121670 mac 121670 bytes_out 0 121670 bytes_in 0 121670 station_ip 94.183.214.14 121670 port 185 121670 unique_id port 121670 remote_ip 10.8.0.18 121674 username malekpoir 121674 mac 121674 bytes_out 0 121674 bytes_in 0 121674 station_ip 5.120.66.141 121674 port 148 121674 unique_id port 121674 remote_ip 10.8.0.58 121679 username barzegar 121679 mac 121679 bytes_out 0 121679 bytes_in 0 121679 station_ip 5.120.89.178 121679 port 185 121679 unique_id port 121679 remote_ip 10.8.0.234 121681 username musa 121681 kill_reason Another user logged on this global unique id 121681 mac 121681 bytes_out 0 121681 bytes_in 0 121681 station_ip 83.123.137.54 121681 port 122 121681 unique_id port 121683 username zare 121683 mac 121683 bytes_out 0 121683 bytes_in 0 121683 station_ip 94.183.214.14 121683 port 89 121683 unique_id port 121683 remote_ip 10.8.1.58 121690 username aminvpn 121690 unique_id port 121690 terminate_cause User-Request 121690 bytes_out 411300 121690 bytes_in 9193310 121690 station_ip 5.120.76.250 121690 port 15729824 121690 nas_port_type Virtual 121690 remote_ip 5.5.5.255 121691 username zare 121691 mac 121691 bytes_out 0 121691 bytes_in 0 121691 station_ip 94.183.214.14 121691 port 89 121691 unique_id port 121691 remote_ip 10.8.1.58 121693 username zare 121693 mac 121693 bytes_out 0 121693 bytes_in 0 121693 station_ip 94.183.214.14 121644 mac 121644 bytes_out 0 121644 bytes_in 0 121644 station_ip 83.123.1.96 121644 port 176 121644 unique_id port 121644 remote_ip 10.8.0.186 121646 username sabaghnezhad 121646 mac 121646 bytes_out 0 121646 bytes_in 0 121646 station_ip 83.123.1.96 121646 port 180 121646 unique_id port 121646 remote_ip 10.8.0.186 121647 username zare 121647 mac 121647 bytes_out 0 121647 bytes_in 0 121647 station_ip 94.183.214.14 121647 port 176 121647 unique_id port 121647 remote_ip 10.8.0.18 121649 username zare 121649 mac 121649 bytes_out 0 121649 bytes_in 0 121649 station_ip 94.183.214.14 121649 port 176 121649 unique_id port 121649 remote_ip 10.8.0.18 121651 username zare 121651 mac 121651 bytes_out 0 121651 bytes_in 0 121651 station_ip 94.183.214.14 121651 port 90 121651 unique_id port 121651 remote_ip 10.8.1.58 121652 username sabaghnezhad 121652 mac 121652 bytes_out 0 121652 bytes_in 0 121652 station_ip 83.123.1.96 121652 port 84 121652 unique_id port 121652 remote_ip 10.8.1.130 121654 username zare 121654 mac 121654 bytes_out 0 121654 bytes_in 0 121654 station_ip 94.183.214.14 121654 port 185 121654 unique_id port 121654 remote_ip 10.8.0.18 121657 username zare 121657 mac 121657 bytes_out 0 121657 bytes_in 0 121657 station_ip 94.183.214.14 121657 port 185 121657 unique_id port 121657 remote_ip 10.8.0.18 121662 username barzegar 121662 mac 121662 bytes_out 14794 121662 bytes_in 20469 121662 station_ip 5.120.89.178 121662 port 89 121662 unique_id port 121662 remote_ip 10.8.1.174 121663 username zare 121663 mac 121663 bytes_out 0 121663 bytes_in 0 121663 station_ip 94.183.214.14 121663 port 185 121663 unique_id port 121663 remote_ip 10.8.0.18 59242 username arezoo 59242 kill_reason Maximum check online fails reached 59242 mac 5.238.33.43:49239: Unknown host 59242 bytes_out 0 59242 bytes_in 0 59242 station_ip 5.238.33.43:49239 59242 port 1017 59242 unique_id port 121666 username zare 121666 mac 121666 bytes_out 0 121666 bytes_in 0 121666 station_ip 94.183.214.14 121666 port 185 121666 unique_id port 121666 remote_ip 10.8.0.18 121673 username mehdizare 121673 mac 121673 bytes_out 13022 121673 bytes_in 18980 121673 station_ip 5.119.88.232 121673 port 84 121673 unique_id port 121673 remote_ip 10.8.1.42 121675 username zare 121675 mac 121675 bytes_out 0 121675 bytes_in 0 121675 station_ip 94.183.214.14 121675 port 148 121675 unique_id port 121675 remote_ip 10.8.0.18 121676 username barzegar 121676 mac 121676 bytes_out 0 121676 bytes_in 0 121676 station_ip 5.120.89.178 121676 port 84 121676 unique_id port 121676 remote_ip 10.8.1.174 121677 username amin.saeedi 121677 unique_id port 121677 terminate_cause User-Request 121677 bytes_out 5951008 121677 bytes_in 151043579 121677 station_ip 151.238.250.176 121677 port 15729822 121677 nas_port_type Virtual 121677 remote_ip 5.5.5.14 121680 username malekpoir 121680 mac 121680 bytes_out 0 121680 bytes_in 0 121680 station_ip 5.120.66.141 121680 port 182 121680 unique_id port 121680 remote_ip 10.8.0.58 121685 username barzegar 121685 mac 121685 bytes_out 0 121685 bytes_in 0 121685 station_ip 5.120.89.178 121685 port 148 121685 unique_id port 121685 remote_ip 10.8.0.234 121689 username Mahin 121689 mac 121689 bytes_out 0 121689 bytes_in 0 121689 station_ip 5.120.139.202 121689 port 169 121689 unique_id port 121689 remote_ip 10.8.0.222 121696 username aminvpn 121696 mac 121696 bytes_out 0 121655 unique_id port 121658 username mehdizare 121658 mac 121658 bytes_out 754772 121658 bytes_in 1839094 121658 station_ip 5.119.88.232 121658 port 88 121658 unique_id port 121658 remote_ip 10.8.1.42 121664 username musa 121664 kill_reason Another user logged on this global unique id 121664 mac 121664 bytes_out 0 121664 bytes_in 0 121664 station_ip 83.123.137.54 121664 port 122 121664 unique_id port 121665 username barzegar 121665 mac 121665 bytes_out 0 121665 bytes_in 0 121665 station_ip 5.120.89.178 121665 port 88 121665 unique_id port 121665 remote_ip 10.8.1.174 121668 username ahmadipour 121668 unique_id port 121668 terminate_cause Lost-Carrier 121668 bytes_out 505665 121668 bytes_in 13625653 121668 station_ip 83.123.205.137 121668 port 15729823 121668 nas_port_type Virtual 121668 remote_ip 5.5.5.251 121669 username alihosseini1 121669 mac 121669 bytes_out 0 121669 bytes_in 0 121669 station_ip 5.119.1.86 121669 port 182 121669 unique_id port 121669 remote_ip 10.8.0.166 121671 username jafari 121671 kill_reason Another user logged on this global unique id 121671 mac 121671 bytes_out 0 121671 bytes_in 0 121671 station_ip 89.32.99.176 121671 port 170 121671 unique_id port 121672 username zare 121672 mac 121672 bytes_out 0 121672 bytes_in 0 121672 station_ip 94.183.214.14 121672 port 182 121672 unique_id port 121672 remote_ip 10.8.0.18 121678 username zare 121678 mac 121678 bytes_out 0 121678 bytes_in 0 121678 station_ip 94.183.214.14 121678 port 148 121678 unique_id port 121678 remote_ip 10.8.0.18 121682 username barzegar 121682 mac 121682 bytes_out 0 121682 bytes_in 0 121682 station_ip 5.120.89.178 121682 port 148 121682 unique_id port 121682 remote_ip 10.8.0.234 121684 username zare 121684 mac 121684 bytes_out 0 121684 bytes_in 0 121684 station_ip 94.183.214.14 121684 port 89 121684 unique_id port 121684 remote_ip 10.8.1.58 121686 username jafari 121686 mac 121686 bytes_out 0 121686 bytes_in 0 121686 station_ip 89.32.99.176 121686 port 170 121686 unique_id port 121687 username zare 121687 mac 121687 bytes_out 0 121687 bytes_in 0 121687 station_ip 94.183.214.14 121687 port 89 121687 unique_id port 121687 remote_ip 10.8.1.58 121688 username zare 121688 mac 121688 bytes_out 0 121688 bytes_in 0 121688 station_ip 94.183.214.14 121688 port 89 121688 unique_id port 121688 remote_ip 10.8.1.58 121692 username barzegar 121692 mac 121692 bytes_out 0 121692 bytes_in 0 121692 station_ip 5.120.89.178 121692 port 90 121692 unique_id port 121692 remote_ip 10.8.1.174 121694 username aminvpn 121694 mac 121694 bytes_out 0 121694 bytes_in 0 121694 station_ip 83.123.199.155 121694 port 157 121694 unique_id port 121694 remote_ip 10.8.0.14 121695 username aminvpn 121695 mac 121695 bytes_out 0 121695 bytes_in 0 121695 station_ip 5.120.76.250 121695 port 169 121695 unique_id port 121695 remote_ip 10.8.0.14 121698 username musa 121698 mac 121698 bytes_out 0 121698 bytes_in 0 121698 station_ip 83.123.137.54 121698 port 122 121698 unique_id port 121700 username barzegar 121700 mac 121700 bytes_out 0 121700 bytes_in 0 121700 station_ip 5.120.89.178 121700 port 182 121700 unique_id port 121700 remote_ip 10.8.0.234 121702 username zare 121702 mac 121702 bytes_out 0 121702 bytes_in 0 121702 station_ip 94.183.214.14 121702 port 122 121702 unique_id port 121702 remote_ip 10.8.0.18 121704 username zare 121704 mac 121704 bytes_out 0 121704 bytes_in 0 121693 port 89 121693 unique_id port 121693 remote_ip 10.8.1.58 121699 username zare 121699 mac 121699 bytes_out 0 121699 bytes_in 0 121699 station_ip 94.183.214.14 121699 port 170 121699 unique_id port 121699 remote_ip 10.8.0.18 121706 username zare 121706 mac 121706 bytes_out 0 121706 bytes_in 0 121706 station_ip 94.183.214.14 121706 port 122 121706 unique_id port 121706 remote_ip 10.8.0.18 121707 username zare 121707 kill_reason Maximum check online fails reached 121707 mac 121707 bytes_out 0 121707 bytes_in 0 121707 station_ip 94.183.214.14 121707 port 89 121707 unique_id port 121711 username alihosseini1 121711 mac 121711 bytes_out 0 121711 bytes_in 0 121711 station_ip 5.119.1.86 121711 port 186 121711 unique_id port 121711 remote_ip 10.8.0.166 121713 username malekpoir 121713 kill_reason Another user logged on this global unique id 121713 mac 121713 bytes_out 0 121713 bytes_in 0 121713 station_ip 5.120.66.141 121713 port 84 121713 unique_id port 121713 remote_ip 10.8.1.54 121715 username zare 121715 mac 121715 bytes_out 0 121715 bytes_in 0 121715 station_ip 94.183.214.14 121715 port 122 121715 unique_id port 121715 remote_ip 10.8.0.18 121719 username zare 121719 mac 121719 bytes_out 0 121719 bytes_in 0 121719 station_ip 94.183.214.14 121719 port 122 121719 unique_id port 121719 remote_ip 10.8.0.18 121720 username zare 121720 mac 121720 bytes_out 0 121720 bytes_in 0 121720 station_ip 94.183.214.14 121720 port 122 121720 unique_id port 121720 remote_ip 10.8.0.18 121725 username aminvpn 121725 mac 121725 bytes_out 0 121725 bytes_in 0 121725 station_ip 83.123.199.155 121725 port 157 121725 unique_id port 121725 remote_ip 10.8.0.14 121730 username barzegar 121730 mac 121730 bytes_out 0 121730 bytes_in 0 121730 station_ip 5.119.210.70 121730 port 88 121730 unique_id port 121730 remote_ip 10.8.1.174 121736 username zare 121736 mac 121736 bytes_out 85565 121736 bytes_in 307763 121736 station_ip 94.183.214.14 121736 port 157 121736 unique_id port 121736 remote_ip 10.8.0.18 121737 username aminvpn 121737 mac 121737 bytes_out 0 121737 bytes_in 0 121737 station_ip 83.123.199.155 59291 username arezoo 59291 kill_reason Relative expiration date has reached 59291 mac 5.238.33.43:49250: Unknown host 59291 bytes_out 0 59291 bytes_in 0 59291 station_ip 5.238.33.43:49250 59291 port 1017 59291 unique_id port 121737 port 148 121737 unique_id port 121737 remote_ip 10.8.0.14 121740 username zare 121740 mac 121740 bytes_out 46854 121740 bytes_in 258041 121740 station_ip 94.183.214.14 121740 port 122 121740 unique_id port 121740 remote_ip 10.8.0.18 121744 username zare 121744 mac 121744 bytes_out 0 121744 bytes_in 0 121744 station_ip 94.183.214.14 121744 port 148 121744 unique_id port 121744 remote_ip 10.8.0.18 121747 username aminvpn 121747 mac 121747 bytes_out 136919 121747 bytes_in 918397 121747 station_ip 83.123.199.155 121747 port 122 121747 unique_id port 121747 remote_ip 10.8.0.14 121748 username zare 121748 mac 121748 bytes_out 0 121748 bytes_in 0 121748 station_ip 94.183.214.14 121748 port 122 121748 unique_id port 121748 remote_ip 10.8.0.18 121751 username zare 121751 mac 121751 bytes_out 0 121751 bytes_in 0 121751 station_ip 94.183.214.14 121751 port 122 121751 unique_id port 121751 remote_ip 10.8.0.18 121752 username mehdizare 121752 mac 121752 bytes_out 6947 121752 bytes_in 11631 121752 station_ip 5.119.88.232 121752 port 88 121752 unique_id port 121696 bytes_in 0 121696 station_ip 83.123.199.155 121696 port 157 121696 unique_id port 121696 remote_ip 10.8.0.14 121697 username aminvpn 121697 mac 121697 bytes_out 0 121697 bytes_in 0 121697 station_ip 5.120.76.250 121697 port 169 121697 unique_id port 121697 remote_ip 10.8.0.14 121701 username sabaghnezhad 121701 mac 121701 bytes_out 0 121701 bytes_in 0 121701 station_ip 83.123.1.96 121701 port 180 121701 unique_id port 121701 remote_ip 10.8.0.186 121703 username mahdiyehalizadeh 121703 mac 121703 bytes_out 21960 121703 bytes_in 52320 121703 station_ip 37.129.148.243 121703 port 169 121703 unique_id port 121703 remote_ip 10.8.0.82 121705 username malekpoir 121705 mac 121705 bytes_out 1777509 121705 bytes_in 25343865 121705 station_ip 5.120.66.141 121705 port 84 121705 unique_id port 121705 remote_ip 10.8.1.54 121709 username zare 121709 mac 121709 bytes_out 0 121709 bytes_in 0 121709 station_ip 94.183.214.14 121709 port 122 121709 unique_id port 121709 remote_ip 10.8.0.18 121710 username barzegar 121710 mac 121710 bytes_out 0 121710 bytes_in 0 121710 station_ip 5.119.210.70 121710 port 169 121710 unique_id port 121710 remote_ip 10.8.0.234 121714 username zare 121714 mac 121714 bytes_out 0 121714 bytes_in 0 121714 station_ip 94.183.214.14 121714 port 122 121714 unique_id port 121714 remote_ip 10.8.0.18 121716 username zare 121716 mac 121716 bytes_out 0 121716 bytes_in 0 121716 station_ip 94.183.214.14 121716 port 122 121716 unique_id port 121716 remote_ip 10.8.0.18 121717 username mohammadjavad 121717 mac 121717 bytes_out 0 121717 bytes_in 0 121717 station_ip 37.129.47.218 121717 port 169 121717 unique_id port 121717 remote_ip 10.8.0.142 121721 username barzegar 121721 mac 121721 bytes_out 0 121721 bytes_in 0 121721 station_ip 5.119.210.70 121721 port 90 121721 unique_id port 121721 remote_ip 10.8.1.174 121724 username Mahin 121724 mac 121724 bytes_out 0 121724 bytes_in 0 121724 station_ip 5.119.70.156 121724 port 148 121724 unique_id port 121724 remote_ip 10.8.0.222 121726 username mehdizare 121726 mac 121726 bytes_out 132494 121726 bytes_in 335257 121726 station_ip 5.119.88.232 121726 port 88 121726 unique_id port 121726 remote_ip 10.8.1.42 121729 username mehdizare 121729 mac 121729 bytes_out 11415 121729 bytes_in 19350 121729 station_ip 5.119.88.232 121729 port 90 121729 unique_id port 121729 remote_ip 10.8.1.42 121733 username mehdizare 121733 mac 121733 bytes_out 0 121733 bytes_in 0 121733 station_ip 5.119.88.232 121733 port 122 121733 unique_id port 121733 remote_ip 10.8.0.90 121734 username aminvpn 121734 mac 121734 bytes_out 0 121734 bytes_in 0 121734 station_ip 83.123.199.155 121734 port 182 121734 unique_id port 121734 remote_ip 10.8.0.14 121742 username aminvpn 121742 mac 121742 bytes_out 0 121742 bytes_in 0 121742 station_ip 5.119.139.218 121742 port 157 121742 unique_id port 121742 remote_ip 10.8.0.14 121743 username mehdizare 121743 mac 121743 bytes_out 12450 121743 bytes_in 21285 121743 station_ip 5.119.88.232 121743 port 90 121743 unique_id port 121743 remote_ip 10.8.1.42 121745 username musa 121745 mac 121745 bytes_out 0 121745 bytes_in 0 121745 station_ip 83.123.19.175 121745 port 88 121745 unique_id port 121745 remote_ip 10.8.1.10 121754 username zare 121754 mac 121754 bytes_out 0 121754 bytes_in 0 121754 station_ip 94.183.214.14 121754 port 122 121754 unique_id port 121704 station_ip 94.183.214.14 121704 port 122 121704 unique_id port 121704 remote_ip 10.8.0.18 121708 username barzegar 121708 mac 121708 bytes_out 0 121708 bytes_in 0 121708 station_ip 5.120.89.178 121708 port 122 121708 unique_id port 121708 remote_ip 10.8.0.234 121712 username zare 121712 mac 121712 bytes_out 0 121712 bytes_in 0 121712 station_ip 94.183.214.14 121712 port 122 121712 unique_id port 121712 remote_ip 10.8.0.18 121718 username zare 121718 mac 121718 bytes_out 0 121718 bytes_in 0 121718 station_ip 94.183.214.14 121718 port 122 121718 unique_id port 121718 remote_ip 10.8.0.18 121722 username Mahin 121722 mac 121722 bytes_out 107554 121722 bytes_in 161167 121722 station_ip 5.120.139.202 121722 port 148 121722 unique_id port 121722 remote_ip 10.8.0.222 121723 username Mahin 121723 mac 121723 bytes_out 0 121723 bytes_in 0 121723 station_ip 5.119.70.156 121723 port 180 121723 unique_id port 121723 remote_ip 10.8.0.222 121727 username zare 121727 mac 121727 bytes_out 0 121727 bytes_in 0 121727 station_ip 94.183.214.14 121727 port 122 121727 unique_id port 121727 remote_ip 10.8.0.18 121728 username zare 121728 mac 121728 bytes_out 0 121728 bytes_in 0 121728 station_ip 94.183.214.14 121728 port 122 121728 unique_id port 121728 remote_ip 10.8.0.18 121731 username ehsun 121731 kill_reason Another user logged on this global unique id 121731 mac 121731 bytes_out 0 121731 bytes_in 0 121731 station_ip 46.225.209.208 121731 port 169 121731 unique_id port 121731 remote_ip 10.8.0.162 121732 username aminvpn 121732 mac 121732 bytes_out 0 121732 bytes_in 0 121732 station_ip 5.119.139.218 121732 port 148 121732 unique_id port 121732 remote_ip 10.8.0.14 121735 username aminvpn 121735 mac 121735 bytes_out 0 121735 bytes_in 0 121735 station_ip 5.119.139.218 121735 port 122 121735 unique_id port 121735 remote_ip 10.8.0.14 121738 username aminvpn 121738 mac 121738 bytes_out 0 121738 bytes_in 0 121738 station_ip 5.119.139.218 121738 port 157 121738 unique_id port 121738 remote_ip 10.8.0.14 121739 username aminvpn 121739 mac 121739 bytes_out 0 121739 bytes_in 0 121739 station_ip 83.123.199.155 121739 port 148 121739 unique_id port 121739 remote_ip 10.8.0.14 121741 username zare 121741 mac 121741 bytes_out 0 121741 bytes_in 0 121741 station_ip 94.183.214.14 121741 port 122 121741 unique_id port 121741 remote_ip 10.8.0.18 121746 username zare 121746 mac 121746 bytes_out 0 121746 bytes_in 0 121746 station_ip 94.183.214.14 121746 port 157 121746 unique_id port 121746 remote_ip 10.8.0.18 121749 username zare 121749 mac 121749 bytes_out 0 121749 bytes_in 0 121749 station_ip 94.183.214.14 121749 port 122 121749 unique_id port 121749 remote_ip 10.8.0.18 121750 username aminvpn 121750 mac 121750 bytes_out 0 121750 bytes_in 0 121750 station_ip 5.119.139.218 121750 port 182 121750 unique_id port 121750 remote_ip 10.8.0.14 121753 username alihosseini1 121753 mac 121753 bytes_out 1084330 121753 bytes_in 2804916 121753 station_ip 5.119.1.86 121753 port 170 121753 unique_id port 121753 remote_ip 10.8.0.166 121756 username Mahin 121756 mac 121756 bytes_out 0 121756 bytes_in 0 121756 station_ip 5.119.70.156 121756 port 180 121756 unique_id port 121756 remote_ip 10.8.0.222 121757 username zare 121757 mac 121757 bytes_out 0 121757 bytes_in 0 121757 station_ip 94.183.214.14 121757 port 180 121757 unique_id port 121752 remote_ip 10.8.1.42 121755 username aminvpn 121755 mac 121755 bytes_out 31228 121755 bytes_in 45924 121755 station_ip 83.123.199.155 121755 port 185 121755 unique_id port 121755 remote_ip 10.8.0.14 121760 username barzegar 121760 mac 121760 bytes_out 0 121760 bytes_in 0 121760 station_ip 5.119.210.70 121760 port 90 121760 unique_id port 121760 remote_ip 10.8.1.174 121762 username zare 121762 mac 121762 bytes_out 0 121762 bytes_in 0 121762 station_ip 94.183.214.14 121762 port 180 121762 unique_id port 121762 remote_ip 10.8.0.18 121766 username zare 121766 mac 121766 bytes_out 0 121766 bytes_in 0 121766 station_ip 94.183.214.14 121766 port 122 121766 unique_id port 121766 remote_ip 10.8.0.18 121768 username zare 121768 mac 121768 bytes_out 0 121768 bytes_in 0 121768 station_ip 94.183.214.14 121768 port 169 121768 unique_id port 121768 remote_ip 10.8.0.18 121769 username ehsun 121769 mac 121769 bytes_out 113431 121769 bytes_in 306485 121769 station_ip 83.123.136.29 121769 port 122 121769 unique_id port 121769 remote_ip 10.8.0.162 121773 username aminvpn 121773 mac 121773 bytes_out 0 121773 bytes_in 0 121773 station_ip 5.119.139.218 121773 port 186 121773 unique_id port 121773 remote_ip 10.8.0.14 121774 username zare 121774 mac 121774 bytes_out 0 121774 bytes_in 0 121774 station_ip 94.183.214.14 121774 port 169 121774 unique_id port 121774 remote_ip 10.8.0.18 121779 username zare 121779 mac 121779 bytes_out 0 121779 bytes_in 0 121779 station_ip 94.183.214.14 121779 port 122 121779 unique_id port 121779 remote_ip 10.8.0.18 121780 username aminvpn 121780 mac 121780 bytes_out 0 121780 bytes_in 0 121780 station_ip 5.119.139.218 121780 port 169 121780 unique_id port 121780 remote_ip 10.8.0.14 121783 username tahmasebi 121783 kill_reason Another user logged on this global unique id 121783 mac 121783 bytes_out 0 121783 bytes_in 0 121783 station_ip 5.119.21.90 121783 port 135 121783 unique_id port 121784 username musa 121784 mac 121784 bytes_out 0 121784 bytes_in 0 121784 station_ip 83.123.19.175 121784 port 148 121784 unique_id port 121792 username zare 121792 mac 121792 bytes_out 0 121792 bytes_in 0 121792 station_ip 94.183.214.14 121792 port 92 121792 unique_id port 121792 remote_ip 10.8.1.58 121793 username zare 121793 mac 121793 bytes_out 0 121793 bytes_in 0 121793 station_ip 94.183.214.14 121793 port 88 121793 unique_id port 121793 remote_ip 10.8.1.58 121798 username alihosseini1 121798 mac 121798 bytes_out 0 121798 bytes_in 0 121798 station_ip 5.119.1.86 121798 port 170 121798 unique_id port 121798 remote_ip 10.8.0.166 121800 username zare 121800 mac 121800 bytes_out 0 121800 bytes_in 0 121800 station_ip 94.183.214.14 121800 port 88 121800 unique_id port 121800 remote_ip 10.8.1.58 121803 username forozande 121803 mac 121803 bytes_out 0 121803 bytes_in 0 121803 station_ip 83.123.62.218 121803 port 90 121803 unique_id port 121805 username zare 121805 kill_reason Maximum check online fails reached 121805 mac 121805 bytes_out 0 121805 bytes_in 0 121805 station_ip 94.183.214.14 121805 port 88 121805 unique_id port 121807 username houshang 121807 kill_reason Another user logged on this global unique id 121807 mac 121807 bytes_out 0 121807 bytes_in 0 121807 station_ip 5.120.18.193 121807 port 185 121807 unique_id port 121809 username alihosseini1 121809 mac 121809 bytes_out 0 121809 bytes_in 0 121809 station_ip 5.119.1.86 121754 remote_ip 10.8.0.18 121758 username ehsun 121758 mac 121758 bytes_out 0 121758 bytes_in 0 121758 station_ip 46.225.209.208 121758 port 169 121758 unique_id port 121759 username mehdizare 121759 mac 121759 bytes_out 0 121759 bytes_in 0 121759 station_ip 5.119.88.232 121759 port 88 121759 unique_id port 121759 remote_ip 10.8.1.42 121763 username musa 121763 kill_reason Another user logged on this global unique id 121763 mac 121763 bytes_out 0 121763 bytes_in 0 121763 station_ip 83.123.19.175 121763 port 148 121763 unique_id port 121763 remote_ip 10.8.0.6 121764 username zare 121764 mac 121764 bytes_out 0 121764 bytes_in 0 121764 station_ip 94.183.214.14 121764 port 122 121764 unique_id port 121764 remote_ip 10.8.0.18 121770 username ehsun 121770 mac 121770 bytes_out 0 121770 bytes_in 0 121770 station_ip 46.225.209.208 121770 port 169 121770 unique_id port 121770 remote_ip 10.8.0.162 121771 username zare 121771 mac 121771 bytes_out 0 121771 bytes_in 0 121771 station_ip 94.183.214.14 121771 port 122 121771 unique_id port 121771 remote_ip 10.8.0.18 121778 username aminvpn 121778 mac 121778 bytes_out 33430 121778 bytes_in 342320 121778 station_ip 83.123.199.155 121778 port 122 121778 unique_id port 121778 remote_ip 10.8.0.14 121782 username aminvpn 121782 mac 121782 bytes_out 0 121782 bytes_in 0 121782 station_ip 83.123.199.155 121782 port 170 121782 unique_id port 121782 remote_ip 10.8.0.14 121788 username alihosseini1 121788 mac 121788 bytes_out 0 121788 bytes_in 0 121788 station_ip 5.119.1.86 121788 port 122 121788 unique_id port 121788 remote_ip 10.8.0.166 121790 username mostafa_es78 121790 unique_id port 121790 terminate_cause Lost-Carrier 121790 bytes_out 286253 121790 bytes_in 5518600 121790 station_ip 178.236.35.96 121790 port 15729833 121790 nas_port_type Virtual 121790 remote_ip 5.5.5.254 121795 username aminvpn 121795 mac 121795 bytes_out 6250 121795 bytes_in 12689 121795 station_ip 5.119.139.218 121795 port 170 121795 unique_id port 121795 remote_ip 10.8.0.14 121797 username houshang 121797 kill_reason Another user logged on this global unique id 121797 mac 121797 bytes_out 0 121797 bytes_in 0 121797 station_ip 5.120.18.193 121797 port 185 121797 unique_id port 121797 remote_ip 10.8.0.22 121799 username malekpoir 121799 mac 121799 bytes_out 0 121799 bytes_in 0 121799 station_ip 5.120.66.141 121799 port 84 121799 unique_id port 121801 username forozande 121801 kill_reason Another user logged on this global unique id 121801 mac 121801 bytes_out 0 121801 bytes_in 0 121801 station_ip 83.123.62.218 121801 port 90 121801 unique_id port 121801 remote_ip 10.8.1.102 121804 username alihosseini1 121804 mac 121804 bytes_out 22436 121804 bytes_in 30210 121804 station_ip 5.119.1.86 121804 port 170 121804 unique_id port 121804 remote_ip 10.8.0.166 121806 username zare 121806 mac 121806 bytes_out 0 121806 bytes_in 0 121806 station_ip 94.183.214.14 121806 port 90 121806 unique_id port 121806 remote_ip 10.8.1.58 121813 username alihosseini1 121813 mac 121813 bytes_out 0 121813 bytes_in 0 121813 station_ip 5.119.1.86 121813 port 180 121813 unique_id port 121813 remote_ip 10.8.0.166 121814 username aminvpn 121814 mac 121814 bytes_out 0 121814 bytes_in 0 121814 station_ip 5.119.139.218 121814 port 170 121814 unique_id port 121814 remote_ip 10.8.0.14 121823 username Mahin 121823 mac 121823 bytes_out 0 121823 bytes_in 0 121823 station_ip 5.119.70.156 121823 port 169 121757 remote_ip 10.8.0.18 121761 username aminvpn 121761 mac 121761 bytes_out 9341 121761 bytes_in 14973 121761 station_ip 5.119.139.218 121761 port 122 121761 unique_id port 121761 remote_ip 10.8.0.14 121765 username aminvpn 121765 mac 121765 bytes_out 0 121765 bytes_in 0 121765 station_ip 83.123.199.155 121765 port 169 121765 unique_id port 121765 remote_ip 10.8.0.14 121767 username ehsun 121767 mac 121767 bytes_out 0 121767 bytes_in 0 121767 station_ip 46.225.209.208 121767 port 180 121767 unique_id port 121767 remote_ip 10.8.0.162 121772 username alihosseini1 121772 mac 121772 bytes_out 224809 121772 bytes_in 1309165 121772 station_ip 5.119.1.86 121772 port 170 121772 unique_id port 121772 remote_ip 10.8.0.166 121775 username zare 121775 mac 121775 bytes_out 0 121775 bytes_in 0 121775 station_ip 94.183.214.14 121775 port 169 121775 unique_id port 121775 remote_ip 10.8.0.18 121776 username barzegar 121776 mac 121776 bytes_out 0 121776 bytes_in 0 121776 station_ip 5.119.210.70 121776 port 92 121776 unique_id port 121776 remote_ip 10.8.1.174 121777 username zare 121777 mac 121777 bytes_out 0 121777 bytes_in 0 121777 station_ip 94.183.214.14 121777 port 169 121777 unique_id port 121777 remote_ip 10.8.0.18 121781 username zare 121781 mac 121781 bytes_out 1636 121781 bytes_in 5983 121781 station_ip 94.183.214.14 121781 port 122 121781 unique_id port 121781 remote_ip 10.8.0.18 121785 username aminvpn 121785 mac 121785 bytes_out 0 121785 bytes_in 0 121785 station_ip 5.119.139.218 121785 port 122 121785 unique_id port 121785 remote_ip 10.8.0.14 121786 username Mahin 121786 mac 121786 bytes_out 129644 121786 bytes_in 809447 121786 station_ip 5.119.70.156 121786 port 182 121786 unique_id port 121786 remote_ip 10.8.0.222 121787 username aminvpn 121787 mac 121787 bytes_out 0 121787 bytes_in 0 121787 station_ip 83.123.199.155 121787 port 148 121787 unique_id port 121787 remote_ip 10.8.0.14 121789 username mehdizare 121789 mac 121789 bytes_out 23436 121789 bytes_in 37932 121789 station_ip 5.119.88.232 121789 port 88 121789 unique_id port 121789 remote_ip 10.8.1.42 121791 username mostafa_es78 121791 unique_id port 121791 terminate_cause User-Request 121791 bytes_out 245597 121791 bytes_in 5254313 121791 station_ip 178.236.35.96 121791 port 15729835 121791 nas_port_type Virtual 121791 remote_ip 5.5.5.250 121794 username barzegar 121794 mac 121794 bytes_out 0 121794 bytes_in 0 121794 station_ip 5.119.210.70 121794 port 180 121794 unique_id port 121794 remote_ip 10.8.0.234 121796 username alihosseini1 121796 mac 121796 bytes_out 0 121796 bytes_in 0 121796 station_ip 5.119.1.86 121796 port 148 121796 unique_id port 121796 remote_ip 10.8.0.166 121802 username aminvpn 121802 mac 121802 bytes_out 7930 121802 bytes_in 12218 121802 station_ip 83.123.199.155 121802 port 180 121802 unique_id port 121802 remote_ip 10.8.0.14 121808 username aminvpn 121808 mac 121808 bytes_out 0 121808 bytes_in 0 121808 station_ip 5.119.139.218 121808 port 182 121808 unique_id port 121808 remote_ip 10.8.0.14 121815 username aminvpn 121815 mac 121815 bytes_out 0 121815 bytes_in 0 121815 station_ip 83.123.199.155 121815 port 148 121815 unique_id port 121815 remote_ip 10.8.0.14 121818 username aminvpn 121818 mac 121818 bytes_out 0 121818 bytes_in 0 121818 station_ip 83.123.199.155 121818 port 148 121818 unique_id port 121818 remote_ip 10.8.0.14 121821 username barzegar 121809 port 170 121809 unique_id port 121809 remote_ip 10.8.0.166 121810 username aminvpn 121810 mac 121810 bytes_out 0 121810 bytes_in 0 121810 station_ip 83.123.199.155 121810 port 180 121810 unique_id port 121810 remote_ip 10.8.0.14 121811 username houshang 121811 mac 121811 bytes_out 0 121811 bytes_in 0 121811 station_ip 5.120.18.193 121811 port 185 121811 unique_id port 121812 username barzegar 121812 mac 121812 bytes_out 458094 121812 bytes_in 3870339 121812 station_ip 5.119.210.70 121812 port 148 121812 unique_id port 121812 remote_ip 10.8.0.234 121816 username alihosseini1 121816 mac 121816 bytes_out 47574 121816 bytes_in 69069 121816 station_ip 5.119.1.86 121816 port 90 121816 unique_id port 121816 remote_ip 10.8.1.106 121817 username aminvpn 121817 mac 121817 bytes_out 0 121817 bytes_in 0 121817 station_ip 5.119.139.218 121817 port 170 121817 unique_id port 121817 remote_ip 10.8.0.14 121819 username aminvpn 121819 mac 121819 bytes_out 10820 121819 bytes_in 13015 121819 station_ip 5.119.139.218 121819 port 170 121819 unique_id port 121819 remote_ip 10.8.0.14 121820 username aminvpn 121820 mac 121820 bytes_out 0 121820 bytes_in 0 121820 station_ip 83.123.199.155 121820 port 180 121820 unique_id port 121820 remote_ip 10.8.0.14 121824 username aminvpn 121824 mac 121824 bytes_out 0 121824 bytes_in 0 121824 station_ip 5.119.139.218 121824 port 182 121824 unique_id port 121824 remote_ip 10.8.0.14 121826 username mahdixz 121826 unique_id port 121826 terminate_cause User-Request 121826 bytes_out 381711 121826 bytes_in 5347842 121826 station_ip 5.119.142.93 121826 port 15729839 121826 nas_port_type Virtual 121826 remote_ip 5.5.5.254 121830 username Mahin 121830 mac 121830 bytes_out 0 121830 bytes_in 0 121830 station_ip 5.119.70.156 121830 port 169 121830 unique_id port 121830 remote_ip 10.8.0.222 121833 username zare 121833 mac 121833 bytes_out 0 121833 bytes_in 0 121833 station_ip 37.27.4.24 121833 port 92 121833 unique_id port 121833 remote_ip 10.8.1.58 121834 username aminvpn 121834 mac 121834 bytes_out 39832 121834 bytes_in 96496 121834 station_ip 5.119.139.218 121834 port 180 121834 unique_id port 121834 remote_ip 10.8.0.14 121836 username aminvpn 121836 mac 121836 bytes_out 0 121836 bytes_in 0 121836 station_ip 83.123.199.155 121836 port 182 121836 unique_id port 121836 remote_ip 10.8.0.14 121837 username zare 121837 mac 121837 bytes_out 0 121837 bytes_in 0 121837 station_ip 37.27.4.24 121837 port 182 121837 unique_id port 121837 remote_ip 10.8.0.18 121839 username zare 121839 mac 121839 bytes_out 0 121839 bytes_in 0 121839 station_ip 37.27.4.24 121839 port 182 121839 unique_id port 121839 remote_ip 10.8.0.18 121840 username aminvpn 121840 mac 121840 bytes_out 103358 121840 bytes_in 229127 121840 station_ip 5.119.139.218 121840 port 180 121840 unique_id port 121840 remote_ip 10.8.0.14 121841 username zare 121841 mac 121841 bytes_out 0 121841 bytes_in 0 121841 station_ip 37.27.4.24 121841 port 180 121841 unique_id port 121841 remote_ip 10.8.0.18 121843 username aminvpn 121843 mac 121843 bytes_out 0 121843 bytes_in 0 121843 station_ip 83.123.199.155 121843 port 182 121843 unique_id port 121843 remote_ip 10.8.0.14 121846 username aminvpn 121846 mac 121846 bytes_out 12056 121846 bytes_in 14318 121846 station_ip 5.119.139.218 121846 port 180 121846 unique_id port 121846 remote_ip 10.8.0.14 121821 mac 121821 bytes_out 0 121821 bytes_in 0 121821 station_ip 5.119.210.70 121821 port 170 121821 unique_id port 121821 remote_ip 10.8.0.234 121822 username barzegar 121822 mac 121822 bytes_out 0 121822 bytes_in 0 121822 station_ip 5.119.210.70 121822 port 170 121822 unique_id port 121822 remote_ip 10.8.0.234 121825 username aminvpn 121825 mac 121825 bytes_out 0 121825 bytes_in 0 121825 station_ip 83.123.199.155 121825 port 170 121825 unique_id port 121825 remote_ip 10.8.0.14 121828 username aminvpn 121828 mac 121828 bytes_out 0 121828 bytes_in 0 121828 station_ip 5.119.139.218 121828 port 180 121828 unique_id port 121828 remote_ip 10.8.0.14 121832 username alihosseini1 121832 mac 121832 bytes_out 1250253 121832 bytes_in 496076 121832 station_ip 5.119.1.86 121832 port 148 121832 unique_id port 121832 remote_ip 10.8.0.166 121844 username alihosseini1 121844 mac 121844 bytes_out 0 121844 bytes_in 0 121844 station_ip 5.119.1.86 121844 port 148 121844 unique_id port 121844 remote_ip 10.8.0.166 121854 username zare 121854 mac 121854 bytes_out 0 121854 bytes_in 0 121854 station_ip 37.27.4.24 121854 port 148 121854 unique_id port 121854 remote_ip 10.8.0.18 121856 username aminvpn 121856 mac 121856 bytes_out 0 121856 bytes_in 0 121856 station_ip 5.119.139.218 121856 port 183 121856 unique_id port 121856 remote_ip 10.8.0.14 121858 username zare 121858 mac 121858 bytes_out 0 121858 bytes_in 0 121858 station_ip 37.27.4.24 121858 port 148 121858 unique_id port 121858 remote_ip 10.8.0.18 121859 username aminvpn 121859 mac 121859 bytes_out 0 121859 bytes_in 0 121859 station_ip 83.123.199.155 121859 port 184 121859 unique_id port 121859 remote_ip 10.8.0.14 121861 username zare 121861 mac 121861 bytes_out 0 121861 bytes_in 0 121861 station_ip 37.27.4.24 121861 port 183 121861 unique_id port 121861 remote_ip 10.8.0.18 121863 username zare 121863 mac 121863 bytes_out 0 121863 bytes_in 0 121863 station_ip 37.27.4.24 121863 port 183 121863 unique_id port 121863 remote_ip 10.8.0.18 121867 username sabaghnezhad 121867 mac 121867 bytes_out 0 121867 bytes_in 0 121867 station_ip 37.129.107.252 121867 port 157 121867 unique_id port 121867 remote_ip 10.8.0.186 121869 username hamid.e 121869 unique_id port 121869 terminate_cause Lost-Carrier 121869 bytes_out 4503208 121869 bytes_in 36097919 121869 station_ip 37.27.16.125 121869 port 15729834 121869 nas_port_type Virtual 121869 remote_ip 5.5.5.253 121871 username aminvpn 121871 mac 121871 bytes_out 0 121871 bytes_in 0 121871 station_ip 5.119.139.218 121871 port 148 121871 unique_id port 121871 remote_ip 10.8.0.14 121873 username mehdizare 121873 mac 121873 bytes_out 47488 121873 bytes_in 62153 121873 station_ip 5.119.88.232 121873 port 122 121873 unique_id port 121873 remote_ip 10.8.0.90 121874 username mostafa_es78 121874 kill_reason Another user logged on this global unique id 121874 mac 121874 bytes_out 0 121874 bytes_in 0 121874 station_ip 178.236.35.96 121874 port 170 121874 unique_id port 121874 remote_ip 10.8.0.198 121875 username aminvpn 121875 mac 121875 bytes_out 0 121875 bytes_in 0 121875 station_ip 5.119.139.218 121875 port 122 121875 unique_id port 121875 remote_ip 10.8.0.14 121882 username Mahin 121882 mac 121882 bytes_out 0 121882 bytes_in 0 121882 station_ip 5.119.70.156 121882 port 157 121882 unique_id port 121882 remote_ip 10.8.0.222 121889 username hosseine 121889 mac 121823 unique_id port 121823 remote_ip 10.8.0.222 121827 username mosi 121827 mac 121827 bytes_out 0 121827 bytes_in 0 121827 station_ip 37.137.9.41 121827 port 184 121827 unique_id port 121829 username aminvpn 121829 mac 121829 bytes_out 0 121829 bytes_in 0 121829 station_ip 83.123.199.155 121829 port 182 121829 unique_id port 121829 remote_ip 10.8.0.14 121831 username mosi 121831 mac 121831 bytes_out 71868 121831 bytes_in 89026 121831 station_ip 151.235.76.119 121831 port 170 121831 unique_id port 121831 remote_ip 10.8.0.138 121835 username zare 121835 mac 121835 bytes_out 0 121835 bytes_in 0 121835 station_ip 37.27.4.24 121835 port 92 121835 unique_id port 121835 remote_ip 10.8.1.58 121838 username hosseine 121838 mac 121838 bytes_out 1234055 121838 bytes_in 10940530 121838 station_ip 83.123.79.219 121838 port 183 121838 unique_id port 121838 remote_ip 10.8.0.238 121842 username barzegar 121842 mac 121842 bytes_out 0 121842 bytes_in 0 121842 station_ip 5.119.210.70 121842 port 93 121842 unique_id port 121842 remote_ip 10.8.1.174 121845 username zare 121845 mac 121845 bytes_out 0 121845 bytes_in 0 121845 station_ip 37.27.4.24 121845 port 148 121845 unique_id port 121845 remote_ip 10.8.0.18 121848 username zare 121848 mac 121848 bytes_out 0 121848 bytes_in 0 121848 station_ip 37.27.4.24 121848 port 183 121848 unique_id port 121848 remote_ip 10.8.0.18 121851 username forozande 121851 mac 121851 bytes_out 2511876 121851 bytes_in 28961325 121851 station_ip 37.129.233.105 121851 port 90 121851 unique_id port 121851 remote_ip 10.8.1.102 121852 username aminvpn 121852 mac 121852 bytes_out 0 121852 bytes_in 0 121852 station_ip 5.119.139.218 121852 port 183 121852 unique_id port 121852 remote_ip 10.8.0.14 121853 username aminvpn 121853 mac 121853 bytes_out 0 121853 bytes_in 0 121853 station_ip 83.123.199.155 121853 port 184 121853 unique_id port 121853 remote_ip 10.8.0.14 121860 username mehdizare 121860 mac 121860 bytes_out 0 121860 bytes_in 0 121860 station_ip 5.119.88.232 121860 port 122 121860 unique_id port 121860 remote_ip 10.8.0.90 121864 username aminvpn 121864 mac 121864 bytes_out 18129 121864 bytes_in 18205 121864 station_ip 5.119.139.218 121864 port 148 121864 unique_id port 121864 remote_ip 10.8.0.14 121865 username aminvpn 121865 mac 121865 bytes_out 0 121865 bytes_in 0 121865 station_ip 83.123.199.155 121865 port 183 121865 unique_id port 121865 remote_ip 10.8.0.14 121866 username aminvpn 121866 mac 121866 bytes_out 10767 121866 bytes_in 16517 121866 station_ip 5.119.139.218 121866 port 148 121866 unique_id port 121866 remote_ip 10.8.0.14 121872 username barzegar 121872 mac 121872 bytes_out 0 121872 bytes_in 0 121872 station_ip 5.119.210.70 121872 port 157 121872 unique_id port 121872 remote_ip 10.8.0.234 121883 username hamidsalari 121883 mac 121883 bytes_out 1114551 121883 bytes_in 3078877 121883 station_ip 5.120.180.242 121883 port 176 121883 unique_id port 121883 remote_ip 10.8.0.230 121884 username aminvpn 121884 mac 121884 bytes_out 44265 121884 bytes_in 43811 121884 station_ip 5.119.139.218 121884 port 184 121884 unique_id port 121884 remote_ip 10.8.0.14 121886 username sedighe 121886 kill_reason Another user logged on this global unique id 121886 mac 121886 bytes_out 0 121886 bytes_in 0 121886 station_ip 113.203.18.213 121886 port 148 121886 unique_id port 121886 remote_ip 10.8.0.146 121887 username barzegar 121847 username zare 121847 mac 121847 bytes_out 0 121847 bytes_in 0 121847 station_ip 37.27.4.24 121847 port 180 121847 unique_id port 121847 remote_ip 10.8.0.18 121849 username zare 121849 mac 121849 bytes_out 0 121849 bytes_in 0 121849 station_ip 37.27.4.24 121849 port 183 121849 unique_id port 121849 remote_ip 10.8.0.18 121850 username aminvpn 121850 mac 121850 bytes_out 9603 121850 bytes_in 15394 121850 station_ip 83.123.199.155 121850 port 148 121850 unique_id port 121850 remote_ip 10.8.0.14 121855 username zare 121855 mac 121855 bytes_out 0 121855 bytes_in 0 121855 station_ip 37.27.4.24 121855 port 148 121855 unique_id port 121855 remote_ip 10.8.0.18 121857 username zare 121857 mac 121857 bytes_out 0 121857 bytes_in 0 121857 station_ip 37.27.4.24 121857 port 148 121857 unique_id port 121857 remote_ip 10.8.0.18 121862 username barzegar 121862 mac 121862 bytes_out 0 121862 bytes_in 0 121862 station_ip 5.119.210.70 121862 port 90 121862 unique_id port 121862 remote_ip 10.8.1.174 121868 username aminvpn 121868 mac 121868 bytes_out 7360 121868 bytes_in 14130 121868 station_ip 83.123.199.155 121868 port 183 121868 unique_id port 121868 remote_ip 10.8.0.14 121870 username barzegar 121870 mac 121870 bytes_out 0 121870 bytes_in 0 121870 station_ip 5.119.210.70 121870 port 157 121870 unique_id port 121870 remote_ip 10.8.0.234 121876 username zare 121876 kill_reason Maximum check online fails reached 121876 mac 121876 bytes_out 83693 121876 bytes_in 655485 121876 station_ip 37.27.4.24 121876 port 93 121876 unique_id port 121876 remote_ip 10.8.1.58 121877 username aminvpn 121877 mac 121877 bytes_out 0 121877 bytes_in 0 121877 station_ip 83.123.199.155 121877 port 157 121877 unique_id port 121877 remote_ip 10.8.0.14 121878 username Mahin 121878 mac 121878 bytes_out 3186414 121878 bytes_in 23387427 121878 station_ip 5.119.70.156 121878 port 169 121878 unique_id port 121878 remote_ip 10.8.0.222 121879 username aminvpn 121879 mac 121879 bytes_out 11225 121879 bytes_in 15404 121879 station_ip 5.119.139.218 121879 port 183 121879 unique_id port 121879 remote_ip 10.8.0.14 121880 username barzegar 121880 mac 121880 bytes_out 0 121880 bytes_in 0 121880 station_ip 5.119.210.70 121880 port 94 121880 unique_id port 121880 remote_ip 10.8.1.174 121881 username aminvpn 121881 mac 121881 bytes_out 0 121881 bytes_in 0 121881 station_ip 83.123.199.155 121881 port 183 121881 unique_id port 121881 remote_ip 10.8.0.14 121885 username aminvpn 121885 mac 121885 bytes_out 0 121885 bytes_in 0 121885 station_ip 83.123.199.155 121885 port 157 121885 unique_id port 121885 remote_ip 10.8.0.14 121892 username mostafa_es78 121892 kill_reason Another user logged on this global unique id 121892 mac 121892 bytes_out 0 121892 bytes_in 0 121892 station_ip 178.236.35.96 121892 port 170 121892 unique_id port 121894 username alihosseini1 121894 mac 121894 bytes_out 0 121894 bytes_in 0 121894 station_ip 5.119.1.86 121894 port 182 121894 unique_id port 121894 remote_ip 10.8.0.166 121895 username alihosseini1 121895 mac 121895 bytes_out 0 121895 bytes_in 0 121895 station_ip 5.119.1.86 121895 port 176 121895 unique_id port 121895 remote_ip 10.8.0.166 121900 username sedighe 121900 mac 121900 bytes_out 0 121900 bytes_in 0 121900 station_ip 113.203.18.213 121900 port 148 121900 unique_id port 121901 username alihosseini1 121901 mac 121901 bytes_out 0 121887 kill_reason Maximum check online fails reached 121887 mac 121887 bytes_out 0 121887 bytes_in 0 121887 station_ip 5.119.210.70 121887 port 95 121887 unique_id port 121888 username sabaghnezhad 121888 mac 121888 bytes_out 0 121888 bytes_in 0 121888 station_ip 37.129.107.252 121888 port 90 121888 unique_id port 121888 remote_ip 10.8.1.130 121897 username mostafa_es78 121897 mac 121897 bytes_out 0 121897 bytes_in 0 121897 station_ip 178.236.35.96 121897 port 170 121897 unique_id port 121899 username musa 121899 mac 121899 bytes_out 0 121899 bytes_in 0 121899 station_ip 83.122.199.10 121899 port 180 121899 unique_id port 121899 remote_ip 10.8.0.6 121902 username aminvpn 121902 mac 121902 bytes_out 47593 121902 bytes_in 58009 121902 station_ip 5.119.139.218 121902 port 176 121902 unique_id port 121902 remote_ip 10.8.0.14 121905 username musa 121905 mac 121905 bytes_out 13946 121905 bytes_in 20404 121905 station_ip 83.122.199.10 121905 port 182 121905 unique_id port 121905 remote_ip 10.8.0.6 121908 username farhad1 121908 mac 121908 bytes_out 1890550 121908 bytes_in 6167665 121908 station_ip 5.119.7.43 121908 port 90 121908 unique_id port 121908 remote_ip 10.8.1.166 121910 username zare 121910 kill_reason Another user logged on this global unique id 121910 mac 121910 bytes_out 0 121910 bytes_in 0 121910 station_ip 37.27.4.24 121910 port 93 121910 unique_id port 121915 username aminvpn 121915 mac 121915 bytes_out 0 121915 bytes_in 0 121915 station_ip 5.119.139.218 121915 port 184 121915 unique_id port 121915 remote_ip 10.8.0.14 121917 username sedighe 121917 mac 121917 bytes_out 53042 121917 bytes_in 64990 121917 station_ip 83.122.83.139 121917 port 180 121917 unique_id port 121917 remote_ip 10.8.0.146 121918 username aminvpn 121918 mac 121918 bytes_out 0 121918 bytes_in 0 121918 station_ip 5.119.139.218 121918 port 184 121918 unique_id port 121918 remote_ip 10.8.0.14 121922 username aminvpn 121922 mac 121922 bytes_out 0 121922 bytes_in 0 121922 station_ip 5.119.139.218 121922 port 122 121922 unique_id port 121922 remote_ip 10.8.0.14 121925 username aminvpn 121925 mac 121925 bytes_out 0 121925 bytes_in 0 121925 station_ip 5.119.139.218 121925 port 122 121925 unique_id port 121925 remote_ip 10.8.0.14 121927 username musa 121927 mac 121927 bytes_out 26427 121927 bytes_in 32231 121927 station_ip 83.122.199.10 121927 port 148 121927 unique_id port 121927 remote_ip 10.8.0.6 121928 username zare 121928 kill_reason Another user logged on this global unique id 121928 mac 121928 bytes_out 0 121928 bytes_in 0 121928 station_ip 37.27.4.24 121928 port 93 121928 unique_id port 121929 username barzegar 121929 mac 121929 bytes_out 0 121929 bytes_in 0 121929 station_ip 5.119.210.70 121929 port 90 121929 unique_id port 121929 remote_ip 10.8.1.174 121934 username amirabbas 121934 unique_id port 121934 terminate_cause User-Request 121934 bytes_out 3268591 121934 bytes_in 98007417 121934 station_ip 37.27.19.135 121934 port 15729842 121934 nas_port_type Virtual 121934 remote_ip 5.5.5.1 121936 username aminvpn 121936 mac 121936 bytes_out 0 121936 bytes_in 0 121936 station_ip 83.123.199.155 121936 port 148 121936 unique_id port 121936 remote_ip 10.8.0.14 121938 username alihosseini1 121938 mac 121938 bytes_out 0 121938 bytes_in 0 121938 station_ip 5.119.1.86 121938 port 90 121938 unique_id port 121938 remote_ip 10.8.1.106 121939 username alihosseini1 121939 mac 121939 bytes_out 0 121889 bytes_out 0 121889 bytes_in 0 121889 station_ip 83.123.79.219 121889 port 92 121889 unique_id port 121889 remote_ip 10.8.1.190 121890 username sabaghnezhad 121890 mac 121890 bytes_out 0 121890 bytes_in 0 121890 station_ip 37.129.107.252 121890 port 184 121890 unique_id port 121890 remote_ip 10.8.0.186 121891 username alihosseini1 121891 mac 121891 bytes_out 1097597 121891 bytes_in 6925978 121891 station_ip 5.119.1.86 121891 port 182 121891 unique_id port 121891 remote_ip 10.8.0.166 121893 username aminvpn 121893 mac 121893 bytes_out 224730 121893 bytes_in 254837 121893 station_ip 5.119.139.218 121893 port 176 121893 unique_id port 121893 remote_ip 10.8.0.14 121896 username aminvpn 121896 mac 121896 bytes_out 4114 121896 bytes_in 8639 121896 station_ip 83.123.199.155 121896 port 185 121896 unique_id port 121896 remote_ip 10.8.0.14 121898 username sabaghnezhad 121898 mac 121898 bytes_out 0 121898 bytes_in 0 121898 station_ip 37.129.107.252 121898 port 184 121898 unique_id port 121898 remote_ip 10.8.0.186 121903 username alihosseini1 121903 mac 121903 bytes_out 0 121903 bytes_in 0 121903 station_ip 5.119.1.86 121903 port 92 121903 unique_id port 121903 remote_ip 10.8.1.106 121906 username barzegar 121906 mac 121906 bytes_out 91228 121906 bytes_in 108587 121906 station_ip 5.119.210.70 121906 port 157 121906 unique_id port 121906 remote_ip 10.8.0.234 121912 username aminvpn 121912 mac 121912 bytes_out 0 121912 bytes_in 0 121912 station_ip 5.119.139.218 121912 port 182 121912 unique_id port 121912 remote_ip 10.8.0.14 121913 username alihosseini1 121913 mac 121913 bytes_out 0 121913 bytes_in 0 121913 station_ip 5.119.1.86 121913 port 90 121913 unique_id port 121913 remote_ip 10.8.1.106 121914 username aminvpn 121914 mac 121914 bytes_out 0 121914 bytes_in 0 121914 station_ip 83.123.199.155 121914 port 157 121914 unique_id port 121914 remote_ip 10.8.0.14 121921 username aminvpn 121921 mac 121921 bytes_out 0 121921 bytes_in 0 121921 station_ip 83.123.199.155 121921 port 157 121921 unique_id port 121921 remote_ip 10.8.0.14 121924 username aminvpn 121924 mac 121924 bytes_out 66644 121924 bytes_in 173797 121924 station_ip 83.123.199.155 121924 port 157 121924 unique_id port 121924 remote_ip 10.8.0.14 121926 username alihosseini1 121926 mac 121926 bytes_out 0 121926 bytes_in 0 121926 station_ip 5.119.1.86 121926 port 90 121926 unique_id port 121926 remote_ip 10.8.1.106 121931 username aminvpn 121931 mac 121931 bytes_out 0 121931 bytes_in 0 121931 station_ip 83.123.199.155 121931 port 157 121931 unique_id port 121931 remote_ip 10.8.0.14 121935 username alihosseini1 121935 mac 121935 bytes_out 0 121935 bytes_in 0 121935 station_ip 5.119.1.86 121935 port 90 121935 unique_id port 121935 remote_ip 10.8.1.106 121943 username alihosseini1 121943 mac 121943 bytes_out 0 121943 bytes_in 0 121943 station_ip 5.119.1.86 121943 port 92 121943 unique_id port 121943 remote_ip 10.8.1.106 121945 username mehdizare 121945 mac 121945 bytes_out 35334 121945 bytes_in 35987 121945 station_ip 5.119.88.232 121945 port 184 121945 unique_id port 121945 remote_ip 10.8.0.90 121955 username aminvpn 121955 mac 121955 bytes_out 0 121955 bytes_in 0 121955 station_ip 83.123.199.155 121955 port 187 121955 unique_id port 121955 remote_ip 10.8.0.14 121958 username mohammadjavad 121958 mac 121958 bytes_out 0 121958 bytes_in 0 121958 station_ip 83.122.24.0 121901 bytes_in 0 121901 station_ip 5.119.1.86 121901 port 148 121901 unique_id port 121901 remote_ip 10.8.0.166 121904 username aminvpn 121904 mac 121904 bytes_out 0 121904 bytes_in 0 121904 station_ip 83.123.199.155 121904 port 148 121904 unique_id port 121904 remote_ip 10.8.0.14 121907 username aminvpn 121907 mac 121907 bytes_out 7175 121907 bytes_in 9950 121907 station_ip 5.119.139.218 121907 port 176 121907 unique_id port 121907 remote_ip 10.8.0.14 121909 username aminvpn 121909 unique_id port 121909 terminate_cause Lost-Carrier 121909 bytes_out 1202262 121909 bytes_in 8561629 121909 station_ip 31.56.158.115 121909 port 15729840 121909 nas_port_type Virtual 121909 remote_ip 5.5.5.255 121911 username aminvpn 121911 mac 121911 bytes_out 64124 121911 bytes_in 176679 121911 station_ip 83.123.199.155 121911 port 157 121911 unique_id port 121911 remote_ip 10.8.0.14 121916 username aminvpn 121916 mac 121916 bytes_out 0 121916 bytes_in 0 121916 station_ip 83.123.199.155 121916 port 157 121916 unique_id port 121916 remote_ip 10.8.0.14 121919 username sedighe 121919 mac 121919 bytes_out 14319 121919 bytes_in 18051 121919 station_ip 83.122.83.139 121919 port 185 121919 unique_id port 121919 remote_ip 10.8.0.146 121920 username mehdizare 121920 mac 121920 bytes_out 111850 121920 bytes_in 116756 121920 station_ip 5.119.88.232 121920 port 122 121920 unique_id port 121920 remote_ip 10.8.0.90 121923 username barzegar 121923 mac 121923 bytes_out 24233 121923 bytes_in 42469 121923 station_ip 5.119.210.70 121923 port 182 121923 unique_id port 121923 remote_ip 10.8.0.234 121930 username sedighe 121930 mac 121930 bytes_out 2963 121930 bytes_in 8347 121930 station_ip 83.122.83.139 121930 port 180 121930 unique_id port 121930 remote_ip 10.8.0.146 121932 username sedighe 121932 mac 121932 bytes_out 1772 121932 bytes_in 4423 121932 station_ip 83.122.83.139 121932 port 148 121932 unique_id port 121932 remote_ip 10.8.0.146 121933 username aminvpn 121933 mac 121933 bytes_out 35646 121933 bytes_in 58145 121933 station_ip 5.119.139.218 121933 port 180 121933 unique_id port 121933 remote_ip 10.8.0.14 121937 username aminvpn 121937 mac 121937 bytes_out 0 121937 bytes_in 0 121937 station_ip 5.119.139.218 121937 port 180 121937 unique_id port 121937 remote_ip 10.8.0.14 121946 username aminvpn 121946 mac 121946 bytes_out 0 121946 bytes_in 0 121946 station_ip 5.119.139.218 121946 port 185 121946 unique_id port 121946 remote_ip 10.8.0.14 121949 username alihosseini1 121949 mac 121949 bytes_out 0 121949 bytes_in 0 121949 station_ip 5.119.1.86 121949 port 185 121949 unique_id port 121949 remote_ip 10.8.0.166 121950 username mohammadmahdi 121950 kill_reason Another user logged on this global unique id 121950 mac 121950 bytes_out 0 121950 bytes_in 0 121950 station_ip 5.120.161.233 121950 port 148 121950 unique_id port 121950 remote_ip 10.8.0.54 59513 username arezoo 59513 kill_reason Relative expiration date has reached 59513 mac 5.238.63.161:49454: Unknown host 59513 bytes_out 0 59513 bytes_in 0 59513 station_ip 5.238.63.161:49454 59513 port 1017 59513 unique_id port 59514 username arezoo 121951 username aminvpn 121951 mac 121951 bytes_out 0 121951 bytes_in 0 121951 station_ip 83.123.199.155 121951 port 184 121951 unique_id port 121951 remote_ip 10.8.0.14 121952 username aminvpn 121952 mac 121952 bytes_out 0 121952 bytes_in 0 121952 station_ip 5.119.139.218 121952 port 185 121952 unique_id port 121952 remote_ip 10.8.0.14 121939 bytes_in 0 121939 station_ip 5.119.1.86 121939 port 180 121939 unique_id port 121939 remote_ip 10.8.0.166 121940 username aminvpn 121940 mac 121940 bytes_out 0 121940 bytes_in 0 121940 station_ip 83.123.199.155 121940 port 182 121940 unique_id port 121940 remote_ip 10.8.0.14 121941 username aminvpn 121941 mac 121941 bytes_out 0 121941 bytes_in 0 121941 station_ip 5.119.139.218 121941 port 180 121941 unique_id port 121941 remote_ip 10.8.0.14 121942 username barzegar 121942 mac 121942 bytes_out 0 121942 bytes_in 0 121942 station_ip 5.119.210.70 121942 port 90 121942 unique_id port 121942 remote_ip 10.8.1.174 121944 username aminvpn 121944 mac 121944 bytes_out 8115 121944 bytes_in 13693 121944 station_ip 83.123.199.155 121944 port 182 121944 unique_id port 121944 remote_ip 10.8.0.14 121947 username barzegar 121947 kill_reason Maximum check online fails reached 121947 mac 121947 bytes_out 0 121947 bytes_in 0 121947 station_ip 5.119.210.70 121947 port 90 121947 unique_id port 121948 username zare 121948 kill_reason Another user logged on this global unique id 121948 mac 121948 bytes_out 0 121948 bytes_in 0 121948 station_ip 37.27.4.24 121948 port 93 121948 unique_id port 121953 username kordestani 121953 mac 121953 bytes_out 0 121953 bytes_in 0 121953 station_ip 151.235.76.190 121953 port 169 121953 unique_id port 121953 remote_ip 10.8.0.134 121957 username aminvpn 121957 mac 121957 bytes_out 12083 121957 bytes_in 21705 121957 station_ip 5.119.139.218 121957 port 185 121957 unique_id port 121957 remote_ip 10.8.0.14 121959 username barzegar 121959 mac 121959 bytes_out 6039 121959 bytes_in 15595 121959 station_ip 5.119.210.70 121959 port 92 121959 unique_id port 121959 remote_ip 10.8.1.174 121965 username aminvpn 121965 mac 121965 bytes_out 25926 121965 bytes_in 46861 121965 station_ip 5.119.139.218 121965 port 185 121965 unique_id port 121965 remote_ip 10.8.0.14 121967 username zare 121967 mac 121967 bytes_out 0 121967 bytes_in 0 121967 station_ip 37.27.4.24 121967 port 93 121967 unique_id port 121968 username sedighe 121968 mac 121968 bytes_out 122189 121968 bytes_in 138729 121968 station_ip 83.122.83.139 121968 port 157 121968 unique_id port 121968 remote_ip 10.8.0.146 121969 username aminvpn 121969 mac 121969 bytes_out 8753 121969 bytes_in 14488 121969 station_ip 83.123.199.155 121969 port 148 121969 unique_id port 121969 remote_ip 10.8.0.14 121971 username aminvpn 121971 mac 121971 bytes_out 1569 59511 username arezoo 59511 kill_reason Relative expiration date has reached 59511 mac 5.238.63.161:49224: Unknown host 59511 bytes_out 0 59511 bytes_in 0 59511 station_ip 5.238.63.161:49224 59511 port 1017 59511 unique_id port 59512 username arezoo 59512 kill_reason Relative expiration date has reached 59512 mac 5.238.63.161:49409: Unknown host 59512 bytes_out 0 59512 bytes_in 0 59512 station_ip 5.238.63.161:49409 59512 port 1017 59512 unique_id port 59514 kill_reason Relative expiration date has reached 59514 mac 5.238.63.161:49478: Unknown host 59514 bytes_out 0 59514 bytes_in 0 59514 station_ip 5.238.63.161:49478 59514 port 1017 59514 unique_id port 59515 username arezoo 121971 bytes_in 4836 121971 station_ip 5.119.139.218 121971 port 157 121971 unique_id port 121971 remote_ip 10.8.0.14 121973 username musa 121973 mac 121973 bytes_out 0 121973 bytes_in 0 121973 station_ip 83.122.199.10 121973 port 122 121973 unique_id port 121973 remote_ip 10.8.0.6 121974 username barzegar 121974 mac 121974 bytes_out 0 121954 username ahmadipour 121954 unique_id port 121954 terminate_cause Lost-Carrier 121954 bytes_out 2378962 121954 bytes_in 61819726 121954 station_ip 83.123.239.145 121954 port 15729843 121954 nas_port_type Virtual 121954 remote_ip 5.5.5.253 121956 username farhad1 121956 kill_reason Another user logged on this global unique id 121956 mac 121956 bytes_out 0 121956 bytes_in 0 121956 station_ip 5.119.55.67 121956 port 176 121956 unique_id port 121956 remote_ip 10.8.0.26 121961 username houshang 121961 mac 121961 bytes_out 2384631 121961 bytes_in 25725981 121961 station_ip 5.120.18.193 121961 port 186 121961 unique_id port 121961 remote_ip 10.8.0.22 121963 username mohammadmahdi 121963 mac 121963 bytes_out 0 121963 bytes_in 0 121963 station_ip 5.120.161.233 121963 port 148 121963 unique_id port 121976 username aminvpn 121976 mac 121976 bytes_out 0 121976 bytes_in 0 121976 station_ip 83.123.199.155 121976 port 157 121976 unique_id port 121976 remote_ip 10.8.0.14 121979 username zare 121979 kill_reason Another user logged on this global unique id 121979 mac 121979 bytes_out 0 121979 bytes_in 0 121979 station_ip 37.27.4.24 121979 port 184 121979 unique_id port 121979 remote_ip 10.8.0.18 121987 username zare 121987 mac 121987 bytes_out 0 121987 bytes_in 0 121987 station_ip 37.27.4.24 121987 port 184 121987 unique_id port 121988 username mohsenaskari 121988 mac 121988 bytes_out 0 121988 bytes_in 0 121988 station_ip 46.225.209.6 121988 port 157 121988 unique_id port 121988 remote_ip 10.8.0.246 121992 username barzegar 121992 mac 121992 bytes_out 0 121992 bytes_in 0 121992 station_ip 5.119.210.70 121992 port 157 121992 unique_id port 121992 remote_ip 10.8.0.234 121995 username mahdiyehalizadeh 121995 mac 121995 bytes_out 13818 121995 bytes_in 18562 121995 station_ip 83.123.150.159 121995 port 184 121995 unique_id port 121995 remote_ip 10.8.0.82 121997 username mohsenaskari 121997 mac 121997 bytes_out 0 121997 bytes_in 0 121997 station_ip 46.225.209.6 121997 port 148 121997 unique_id port 121997 remote_ip 10.8.0.246 121999 username barzegar 121999 mac 121999 bytes_out 0 121999 bytes_in 0 121999 station_ip 5.119.210.70 121999 port 148 121999 unique_id port 121999 remote_ip 10.8.0.234 122003 username barzegar 122003 mac 122003 bytes_out 0 122003 bytes_in 0 122003 station_ip 5.119.210.70 122003 port 122 122003 unique_id port 122003 remote_ip 10.8.0.234 122006 username aminvpn 122006 mac 122006 bytes_out 169251 122006 bytes_in 853626 122006 station_ip 83.123.199.155 122006 port 122 122006 unique_id port 122006 remote_ip 10.8.0.14 122008 username aminvpn 122008 mac 122008 bytes_out 0 122008 bytes_in 0 122008 station_ip 5.119.139.218 122008 port 92 122008 unique_id port 59515 kill_reason Relative expiration date has reached 59515 mac 5.238.63.161:49515: Unknown host 59515 bytes_out 0 59515 bytes_in 0 59515 station_ip 5.238.63.161:49515 59515 port 1017 59515 unique_id port 122008 remote_ip 10.8.1.6 122010 username aminvpn 122010 mac 122010 bytes_out 0 122010 bytes_in 0 122010 station_ip 5.119.139.218 122010 port 92 122010 unique_id port 122010 remote_ip 10.8.1.6 122016 username aminvpn 122016 mac 122016 bytes_out 0 122016 bytes_in 0 122016 station_ip 83.123.199.155 122016 port 96 122016 unique_id port 122016 remote_ip 10.8.1.6 122019 username aminvpn 122019 mac 122019 bytes_out 0 122019 bytes_in 0 122019 station_ip 5.119.139.218 122019 port 92 122019 unique_id port 122019 remote_ip 10.8.1.6 121958 port 180 121958 unique_id port 121958 remote_ip 10.8.0.142 121960 username mohammadmahdi 121960 kill_reason Another user logged on this global unique id 121960 mac 121960 bytes_out 0 59518 username arezoo 59518 kill_reason Relative expiration date has reached 59518 mac 5.238.63.161:49631: Unknown host 59518 bytes_out 0 59518 bytes_in 0 59518 station_ip 5.238.63.161:49631 59518 port 1017 59518 unique_id port 121960 bytes_in 0 121960 station_ip 5.120.161.233 121960 port 148 121960 unique_id port 121962 username aminvpn 121962 mac 121962 bytes_out 10071 121962 bytes_in 14194 121962 station_ip 83.123.199.155 121962 port 187 121962 unique_id port 121962 remote_ip 10.8.0.14 121964 username barzegar 121964 mac 121964 bytes_out 0 121964 bytes_in 0 121964 station_ip 5.119.210.70 121964 port 92 121964 unique_id port 121964 remote_ip 10.8.1.174 121966 username alihosseini1 121966 mac 121966 bytes_out 2523903 121966 bytes_in 28672812 121966 station_ip 5.119.1.86 121966 port 184 121966 unique_id port 121966 remote_ip 10.8.0.166 121970 username Mahin 121970 mac 121970 bytes_out 2115821 121970 bytes_in 16161333 121970 station_ip 5.119.70.156 121970 port 183 121970 unique_id port 121970 remote_ip 10.8.0.222 121972 username ehsun 121972 mac 121972 bytes_out 0 121972 bytes_in 0 121972 station_ip 83.122.107.125 121972 port 185 121972 unique_id port 121972 remote_ip 10.8.0.162 121975 username mehdizare 121975 mac 121975 bytes_out 45387 121975 bytes_in 62145 121975 station_ip 5.119.88.232 121975 port 182 121975 unique_id port 121975 remote_ip 10.8.0.90 121977 username sedighe 121977 mac 121977 bytes_out 0 121977 bytes_in 0 121977 station_ip 83.122.83.139 121977 port 148 121977 unique_id port 121977 remote_ip 10.8.0.146 121980 username barzegar 121980 mac 121980 bytes_out 0 121980 bytes_in 0 121980 station_ip 5.119.210.70 121980 port 93 121980 unique_id port 121980 remote_ip 10.8.1.174 121983 username barzegar 121983 mac 121983 bytes_out 3178 121983 bytes_in 5445 121983 station_ip 5.119.210.70 121983 port 187 121983 unique_id port 121983 remote_ip 10.8.0.234 121984 username mehdizare 121984 mac 121984 bytes_out 0 121984 bytes_in 0 121984 station_ip 5.119.88.232 121984 port 188 121984 unique_id port 121984 remote_ip 10.8.0.90 121986 username sedighe 121986 mac 121986 bytes_out 221228 121986 bytes_in 1235057 121986 station_ip 83.123.179.45 121986 port 157 121986 unique_id port 121986 remote_ip 10.8.0.146 121989 username mehdizare 121989 mac 121989 bytes_out 0 121989 bytes_in 0 121989 station_ip 5.119.88.232 121989 port 93 121989 unique_id port 121989 remote_ip 10.8.1.42 121991 username mohsenaskari 121991 mac 121991 bytes_out 524009 121991 bytes_in 4087861 121991 station_ip 46.225.209.6 121991 port 157 121991 unique_id port 121991 remote_ip 10.8.0.246 121993 username farhad1 121993 kill_reason Another user logged on this global unique id 121993 mac 121993 bytes_out 0 121993 bytes_in 0 121993 station_ip 5.119.55.67 121993 port 176 121993 unique_id port 121996 username mahdiyehalizadeh 121996 mac 121996 bytes_out 1727 121996 bytes_in 4790 121996 station_ip 83.123.150.159 121996 port 157 121996 unique_id port 121996 remote_ip 10.8.0.82 122000 username mohammadjavad 122000 mac 122000 bytes_out 0 122000 bytes_in 0 122000 station_ip 83.122.161.47 122000 port 182 122000 unique_id port 122000 remote_ip 10.8.0.142 122002 username aminvpn 122002 mac 122002 bytes_out 0 122002 bytes_in 0 122002 station_ip 83.123.199.155 121974 bytes_in 0 121974 station_ip 5.119.210.70 121974 port 122 121974 unique_id port 121974 remote_ip 10.8.0.234 121978 username mehdizare 121978 mac 121978 bytes_out 33168 121978 bytes_in 88165 121978 station_ip 5.119.88.232 121978 port 122 121978 unique_id port 121978 remote_ip 10.8.0.90 121981 username mehdizare 121981 mac 121981 bytes_out 0 121981 bytes_in 0 121981 station_ip 5.119.88.232 121981 port 148 121981 unique_id port 121981 remote_ip 10.8.0.90 121982 username forozande 121982 mac 121982 bytes_out 0 121982 bytes_in 0 121982 station_ip 37.129.154.142 121982 port 186 121982 unique_id port 121982 remote_ip 10.8.0.74 121985 username barzegar 121985 mac 121985 bytes_out 0 121985 bytes_in 0 121985 station_ip 5.119.210.70 121985 port 96 121985 unique_id port 121985 remote_ip 10.8.1.174 121990 username zare 121990 mac 121990 bytes_out 1052560 121990 bytes_in 27182402 121990 station_ip 37.129.26.211 121990 port 148 121990 unique_id port 121990 remote_ip 10.8.0.18 121994 username zare 121994 mac 121994 bytes_out 136332 121994 bytes_in 2296168 121994 station_ip 37.27.4.24 121994 port 186 121994 unique_id port 121994 remote_ip 10.8.0.18 121998 username farhad1 121998 kill_reason Another user logged on this global unique id 121998 mac 121998 bytes_out 0 121998 bytes_in 0 121998 station_ip 5.119.55.67 121998 port 176 121998 unique_id port 122001 username sedighe 122001 mac 122001 bytes_out 0 122001 bytes_in 0 122001 station_ip 83.123.179.49 122001 port 148 122001 unique_id port 122001 remote_ip 10.8.0.146 122009 username aminvpn 122009 mac 122009 bytes_out 0 122009 bytes_in 0 122009 station_ip 83.123.199.155 122009 port 96 122009 unique_id port 122009 remote_ip 10.8.1.6 122012 username aminvpn 122012 mac 122012 bytes_out 0 122012 bytes_in 0 122012 station_ip 5.119.139.218 122012 port 92 122012 unique_id port 122012 remote_ip 10.8.1.6 122014 username aminvpn 122014 mac 122014 bytes_out 0 122014 bytes_in 0 122014 station_ip 83.123.199.155 122014 port 96 122014 unique_id port 122014 remote_ip 10.8.1.6 122015 username aminvpn 122015 mac 122015 bytes_out 0 122015 bytes_in 0 122015 station_ip 5.119.139.218 122015 port 92 122015 unique_id port 122015 remote_ip 10.8.1.6 122018 username aminvpn 122018 mac 122018 bytes_out 0 122018 bytes_in 0 122018 station_ip 83.123.199.155 122018 port 96 122018 unique_id port 122018 remote_ip 10.8.1.6 122023 username sedighe 122023 mac 122023 bytes_out 62072 122023 bytes_in 83112 122023 station_ip 37.129.227.215 122023 port 157 122023 unique_id port 122023 remote_ip 10.8.0.146 122027 username aminvpn 122027 mac 122027 bytes_out 0 122027 bytes_in 0 122027 station_ip 5.119.139.218 122027 port 92 122027 unique_id port 122027 remote_ip 10.8.1.6 122029 username aminvpn 122029 mac 122029 bytes_out 0 122029 bytes_in 0 122029 station_ip 83.123.199.155 122029 port 96 122029 unique_id port 122029 remote_ip 10.8.1.6 122030 username aminvpn 122030 mac 122030 bytes_out 0 122030 bytes_in 0 122030 station_ip 5.119.139.218 122030 port 92 122030 unique_id port 122030 remote_ip 10.8.1.6 122034 username aminvpn 122034 mac 122034 bytes_out 0 122034 bytes_in 0 122034 station_ip 5.119.139.218 122034 port 92 122034 unique_id port 122034 remote_ip 10.8.1.6 122045 username farhad1 122045 kill_reason Another user logged on this global unique id 122045 mac 122045 bytes_out 0 122045 bytes_in 0 122045 station_ip 5.119.55.67 122002 port 122 122002 unique_id port 122002 remote_ip 10.8.0.14 122004 username aminvpn 122004 mac 122004 bytes_out 169434 122004 bytes_in 900421 122004 station_ip 5.211.240.8 122004 port 148 122004 unique_id port 122004 remote_ip 10.8.0.14 122005 username barzegar 122005 mac 122005 bytes_out 3290 122005 bytes_in 5483 122005 station_ip 5.119.210.70 122005 port 148 122005 unique_id port 122005 remote_ip 10.8.0.234 122007 username farhad1 122007 mac 122007 bytes_out 0 122007 bytes_in 0 122007 station_ip 5.119.55.67 122007 port 176 122007 unique_id port 122011 username aminvpn 122011 mac 122011 bytes_out 0 122011 bytes_in 0 122011 station_ip 83.123.199.155 122011 port 96 122011 unique_id port 122011 remote_ip 10.8.1.6 122013 username aminvpn 122013 mac 122013 bytes_out 339074 122013 bytes_in 375207 122013 station_ip 83.123.199.155 122013 port 148 122013 unique_id port 122013 remote_ip 10.8.0.14 122017 username aminvpn 122017 mac 122017 bytes_out 0 122017 bytes_in 0 122017 station_ip 5.119.139.218 122017 port 92 122017 unique_id port 122017 remote_ip 10.8.1.6 122022 username aminvpn 122022 mac 122022 bytes_out 0 122022 bytes_in 0 122022 station_ip 5.119.139.218 122022 port 92 122022 unique_id port 122022 remote_ip 10.8.1.6 122025 username aminvpn 122025 mac 122025 bytes_out 0 122025 bytes_in 0 122025 station_ip 5.119.139.218 122025 port 92 122025 unique_id port 122025 remote_ip 10.8.1.6 122026 username aminvpn 122026 mac 122026 bytes_out 0 122026 bytes_in 0 122026 station_ip 83.123.199.155 122026 port 96 122026 unique_id port 122026 remote_ip 10.8.1.6 122028 username barzegar 122028 mac 122028 bytes_out 72178 122028 bytes_in 255866 122028 station_ip 5.119.210.70 122028 port 176 122028 unique_id port 122028 remote_ip 10.8.0.234 122032 username aminvpn 122032 mac 122032 bytes_out 0 122032 bytes_in 0 122032 station_ip 5.119.139.218 122032 port 92 122032 unique_id port 122032 remote_ip 10.8.1.6 122033 username aminvpn 122033 mac 122033 bytes_out 0 122033 bytes_in 0 122033 station_ip 83.123.199.155 122033 port 96 122033 unique_id port 122033 remote_ip 10.8.1.6 122035 username farhad1 122035 kill_reason Another user logged on this global unique id 122035 mac 122035 bytes_out 0 122035 bytes_in 0 122035 station_ip 5.119.55.67 122035 port 122 122035 unique_id port 122037 username barzegar 122037 mac 122037 bytes_out 0 122037 bytes_in 0 122037 station_ip 5.119.210.70 122037 port 157 122037 unique_id port 122037 remote_ip 10.8.0.234 122039 username amirabbas 122039 unique_id port 122039 terminate_cause User-Request 122039 bytes_out 6862416 122039 bytes_in 179360836 122039 station_ip 37.27.19.135 122039 port 15729844 122039 nas_port_type Virtual 122039 remote_ip 5.5.5.254 122041 username sedighe 122041 mac 122041 bytes_out 0 122041 bytes_in 0 122041 station_ip 37.129.227.215 122041 port 148 122041 unique_id port 122041 remote_ip 10.8.0.146 122044 username sedighe 122044 mac 122044 bytes_out 19232 122044 bytes_in 25399 122044 station_ip 37.129.227.215 122044 port 169 122044 unique_id port 122044 remote_ip 10.8.0.146 122046 username barzegar 122046 mac 122046 bytes_out 0 122046 bytes_in 0 122046 station_ip 5.119.210.70 122046 port 169 122046 unique_id port 122046 remote_ip 10.8.0.234 122047 username farhad1 122047 mac 122047 bytes_out 0 122047 bytes_in 0 122047 station_ip 5.119.55.67 122047 port 122 122047 unique_id port 122048 username musa 122020 username farhad1 122020 kill_reason Another user logged on this global unique id 122020 mac 122020 bytes_out 0 122020 bytes_in 0 122020 station_ip 5.119.55.67 122020 port 122 122020 unique_id port 122020 remote_ip 10.8.0.26 122021 username aminvpn 122021 mac 122021 bytes_out 0 122021 bytes_in 0 122021 station_ip 83.123.199.155 122021 port 96 122021 unique_id port 122021 remote_ip 10.8.1.6 122024 username aminvpn 122024 mac 122024 bytes_out 0 122024 bytes_in 0 122024 station_ip 83.123.199.155 122024 port 96 122024 unique_id port 122024 remote_ip 10.8.1.6 122031 username aminvpn 122031 mac 122031 bytes_out 0 122031 bytes_in 0 122031 station_ip 83.123.199.155 122031 port 96 122031 unique_id port 122031 remote_ip 10.8.1.6 122036 username kordestani 122036 mac 122036 bytes_out 1466033 122036 bytes_in 20088730 122036 station_ip 151.235.76.190 122036 port 169 122036 unique_id port 122036 remote_ip 10.8.0.134 122038 username milan 122038 kill_reason Another user logged on this global unique id 122038 mac 122038 bytes_out 0 122038 bytes_in 0 122038 station_ip 5.119.192.77 122038 port 179 122038 unique_id port 122040 username kordestani 122040 mac 122040 bytes_out 0 122040 bytes_in 0 122040 station_ip 151.235.76.190 122040 port 169 122040 unique_id port 122040 remote_ip 10.8.0.134 122042 username barzegar 122042 mac 122042 bytes_out 13093 122042 bytes_in 26784 122042 station_ip 5.119.210.70 122042 port 157 122042 unique_id port 122042 remote_ip 10.8.0.234 122043 username barzegar 122043 mac 122043 bytes_out 0 122043 bytes_in 0 122043 station_ip 5.119.210.70 122043 port 97 122043 unique_id port 122043 remote_ip 10.8.1.174 122049 username sedighe 122049 mac 122049 bytes_out 86168 122049 bytes_in 106322 122049 station_ip 37.129.227.215 122049 port 157 122049 unique_id port 122049 remote_ip 10.8.0.146 122053 username aminvpn 122053 mac 122053 bytes_out 0 122053 bytes_in 0 122053 station_ip 83.123.199.155 122053 port 157 122053 unique_id port 122053 remote_ip 10.8.0.14 122055 username barzegar 122055 mac 122055 bytes_out 0 122055 bytes_in 0 122055 station_ip 5.119.210.70 122055 port 157 122055 unique_id port 122055 remote_ip 10.8.0.234 122056 username aminvpn 122056 mac 122056 bytes_out 0 122056 bytes_in 0 122056 station_ip 83.123.199.155 122056 port 186 122056 unique_id port 122056 remote_ip 10.8.0.14 122057 username aminvpn 122057 mac 122057 bytes_out 0 122057 bytes_in 0 122057 station_ip 5.119.139.218 122057 port 157 122057 unique_id port 122057 remote_ip 10.8.0.14 122063 username aminvpn 122063 mac 122063 bytes_out 0 122063 bytes_in 0 122063 station_ip 5.119.139.218 122063 port 157 122063 unique_id port 122063 remote_ip 10.8.0.14 122064 username aminvpn 122064 mac 122064 bytes_out 0 122064 bytes_in 0 122064 station_ip 83.123.199.155 122064 port 184 122064 unique_id port 122064 remote_ip 10.8.0.14 122067 username barzegar 122067 mac 122067 bytes_out 3648 122067 bytes_in 6185 122067 station_ip 5.119.210.70 122067 port 96 122067 unique_id port 122067 remote_ip 10.8.1.174 122077 username barzegar 122077 mac 122077 bytes_out 0 122077 bytes_in 0 122077 station_ip 5.119.210.70 122077 port 96 122077 unique_id port 122077 remote_ip 10.8.1.174 122078 username aminvpn 122078 mac 122078 bytes_out 0 122078 bytes_in 0 122078 station_ip 83.123.199.155 122078 port 148 122078 unique_id port 122078 remote_ip 10.8.0.14 122079 username barzegar 122079 mac 122045 port 122 122045 unique_id port 122051 username hamid.e 122051 kill_reason Maximum number of concurrent logins reached 122051 unique_id port 122051 bytes_out 0 122051 bytes_in 0 122051 station_ip 37.27.35.238 122051 port 15729847 122051 nas_port_type Virtual 122052 username aminvpn 122052 mac 122052 bytes_out 1195235 122052 bytes_in 14843578 122052 station_ip 5.119.139.218 122052 port 176 122052 unique_id port 122052 remote_ip 10.8.0.14 122059 username aminvpn 122059 mac 122059 bytes_out 0 122059 bytes_in 0 122059 station_ip 83.123.199.155 122059 port 176 122059 unique_id port 122059 remote_ip 10.8.0.14 122060 username aminvpn 122060 mac 122060 bytes_out 0 122060 bytes_in 0 122060 station_ip 5.119.139.218 122060 port 157 122060 unique_id port 122060 remote_ip 10.8.0.14 122062 username sedighe 122062 mac 122062 bytes_out 0 122062 bytes_in 0 122062 station_ip 37.129.227.215 122062 port 184 122062 unique_id port 122062 remote_ip 10.8.0.146 122070 username aminvpn 122070 mac 122070 bytes_out 0 122070 bytes_in 0 122070 station_ip 5.119.139.218 122070 port 157 122070 unique_id port 122070 remote_ip 10.8.0.14 122073 username aminvpn 122073 mac 122073 bytes_out 310976 122073 bytes_in 5039167 122073 station_ip 83.123.199.155 122073 port 148 122073 unique_id port 122073 remote_ip 10.8.0.14 122076 username farhad1 122076 mac 122076 bytes_out 2500989 122076 bytes_in 21932622 122076 station_ip 5.119.55.67 122076 port 122 122076 unique_id port 122076 remote_ip 10.8.0.26 122085 username mohammadmahdi 122085 kill_reason Another user logged on this global unique id 122085 mac 122085 bytes_out 0 122085 bytes_in 0 122085 station_ip 5.120.161.233 122085 port 185 122085 unique_id port 122085 remote_ip 10.8.0.54 122088 username aminvpn 122088 mac 122088 bytes_out 0 122088 bytes_in 0 122088 station_ip 5.119.139.218 122088 port 157 122088 unique_id port 122088 remote_ip 10.8.0.14 122092 username mansur 122092 kill_reason Another user logged on this global unique id 122092 mac 122092 bytes_out 0 122092 bytes_in 0 122092 station_ip 5.120.189.54 122092 port 169 122092 unique_id port 122094 username forozande 122094 mac 122094 bytes_out 0 122094 bytes_in 0 122094 station_ip 83.122.247.145 122094 port 148 122094 unique_id port 122094 remote_ip 10.8.0.74 122096 username khalili 122096 mac 122096 bytes_out 0 122096 bytes_in 0 122096 station_ip 5.120.49.182 122096 port 172 122096 unique_id port 122098 username sedighe 122098 mac 122098 bytes_out 2371275 122098 bytes_in 31115656 122098 station_ip 37.129.227.215 122098 port 176 122098 unique_id port 122098 remote_ip 10.8.0.146 122103 username khalili 122103 mac 122103 bytes_out 0 122103 bytes_in 0 122103 station_ip 5.120.49.182 122103 port 148 122103 unique_id port 122103 remote_ip 10.8.0.86 122107 username aminvpn 122107 mac 122107 bytes_out 0 122107 bytes_in 0 122107 station_ip 83.123.199.155 122107 port 157 122107 unique_id port 122107 remote_ip 10.8.0.14 122114 username aminvpn 122114 mac 122114 bytes_out 0 122114 bytes_in 0 122114 station_ip 5.119.139.218 122114 port 172 122114 unique_id port 122114 remote_ip 10.8.0.14 122122 username aminvpn 122122 mac 122122 bytes_out 0 122122 bytes_in 0 122122 station_ip 5.119.139.218 122122 port 170 122122 unique_id port 122122 remote_ip 10.8.0.14 122123 username aminvpn 122123 mac 122123 bytes_out 0 122123 bytes_in 0 122123 station_ip 83.123.199.155 122123 port 148 122123 unique_id port 122048 mac 122048 bytes_out 863746 122048 bytes_in 11026319 122048 station_ip 83.122.199.10 122048 port 185 122048 unique_id port 122048 remote_ip 10.8.0.6 122050 username aminvpn 122050 mac 122050 bytes_out 0 122050 bytes_in 0 122050 station_ip 83.123.199.155 122050 port 96 122050 unique_id port 122050 remote_ip 10.8.1.6 122054 username aminvpn 122054 mac 122054 bytes_out 0 122054 bytes_in 0 122054 station_ip 5.119.139.218 122054 port 176 122054 unique_id port 122054 remote_ip 10.8.0.14 122058 username barzegar 122058 mac 122058 bytes_out 0 122058 bytes_in 0 122058 station_ip 5.119.210.70 122058 port 96 122058 unique_id port 122058 remote_ip 10.8.1.174 122061 username aminvpn 122061 mac 122061 bytes_out 0 122061 bytes_in 0 122061 station_ip 83.123.199.155 122061 port 176 122061 unique_id port 122061 remote_ip 10.8.0.14 122065 username aminvpn 122065 mac 122065 bytes_out 0 122065 bytes_in 0 122065 station_ip 5.119.139.218 122065 port 157 122065 unique_id port 122065 remote_ip 10.8.0.14 122066 username aminvpn 122066 mac 122066 bytes_out 0 122066 bytes_in 0 122066 station_ip 83.123.199.155 122066 port 184 122066 unique_id port 122066 remote_ip 10.8.0.14 122068 username Mahin 122068 mac 122068 bytes_out 0 122068 bytes_in 0 122068 station_ip 5.119.70.156 122068 port 183 122068 unique_id port 122068 remote_ip 10.8.0.222 122069 username avaanna 122069 mac 122069 bytes_out 0 122069 bytes_in 0 122069 station_ip 83.123.32.213 122069 port 148 122069 unique_id port 122069 remote_ip 10.8.0.98 122071 username hamid.e 122071 unique_id port 122071 terminate_cause Lost-Carrier 122071 bytes_out 4388582 122071 bytes_in 32284330 122071 station_ip 188.245.88.148 122071 port 15729845 122071 nas_port_type Virtual 122071 remote_ip 5.5.5.251 122072 username barzegar 122072 mac 122072 bytes_out 0 122072 bytes_in 0 122072 station_ip 5.119.210.70 122072 port 96 122072 unique_id port 122072 remote_ip 10.8.1.174 122074 username aminvpn 122074 mac 122074 bytes_out 0 122074 bytes_in 0 122074 station_ip 5.119.139.218 122074 port 157 122074 unique_id port 122074 remote_ip 10.8.0.14 122075 username barzegar 122075 mac 122075 bytes_out 0 122075 bytes_in 0 122075 station_ip 5.119.210.70 122075 port 96 122075 unique_id port 122075 remote_ip 10.8.1.174 122080 username aminvpn 122080 mac 122080 bytes_out 0 122080 bytes_in 0 122080 station_ip 5.119.139.218 122080 port 122 122080 unique_id port 122080 remote_ip 10.8.0.14 122081 username mansur 122081 kill_reason Another user logged on this global unique id 122081 mac 122081 bytes_out 0 122081 bytes_in 0 122081 station_ip 5.120.189.54 122081 port 169 122081 unique_id port 122081 remote_ip 10.8.0.210 122084 username barzegar 122084 mac 122084 bytes_out 0 122084 bytes_in 0 122084 station_ip 5.119.210.70 122084 port 96 122084 unique_id port 122084 remote_ip 10.8.1.174 122087 username rezasekonji 122087 mac 122087 bytes_out 0 122087 bytes_in 0 122087 station_ip 83.123.92.222 122087 port 122 122087 unique_id port 122087 remote_ip 10.8.0.130 122089 username aminvpn 122089 mac 122089 bytes_out 31315 122089 bytes_in 42256 122089 station_ip 83.123.199.155 122089 port 122 122089 unique_id port 122089 remote_ip 10.8.0.14 122091 username barzegar 122091 mac 122091 bytes_out 2477 122091 bytes_in 4929 122091 station_ip 5.119.210.70 122091 port 96 122091 unique_id port 122091 remote_ip 10.8.1.174 122095 username aminvpn 122095 mac 122079 bytes_out 0 122079 bytes_in 0 122079 station_ip 5.119.210.70 122079 port 96 122079 unique_id port 122079 remote_ip 10.8.1.174 122082 username Mahin 122082 mac 122082 bytes_out 223522 122082 bytes_in 1681010 122082 station_ip 5.119.70.156 122082 port 184 122082 unique_id port 122082 remote_ip 10.8.0.222 122083 username tahmasebi 122083 kill_reason Another user logged on this global unique id 122083 mac 122083 bytes_out 0 122083 bytes_in 0 122083 station_ip 5.119.21.90 122083 port 135 122083 unique_id port 122086 username aminvpn 122086 mac 122086 bytes_out 10125 122086 bytes_in 22344 122086 station_ip 83.123.199.155 122086 port 148 122086 unique_id port 122086 remote_ip 10.8.0.14 122090 username aminvpn 122090 mac 122090 bytes_out 0 122090 bytes_in 0 122090 station_ip 5.119.139.218 122090 port 148 122090 unique_id port 122090 remote_ip 10.8.0.14 122093 username barzegar 122093 mac 122093 bytes_out 0 122093 bytes_in 0 122093 station_ip 5.119.210.70 122093 port 96 122093 unique_id port 122093 remote_ip 10.8.1.174 122097 username aminvpn 122097 mac 122097 bytes_out 0 122097 bytes_in 0 122097 station_ip 5.119.139.218 122097 port 148 122097 unique_id port 122097 remote_ip 10.8.0.14 122100 username khalili 122100 mac 122100 bytes_out 0 122100 bytes_in 0 122100 station_ip 5.120.49.182 122100 port 122 122100 unique_id port 122100 remote_ip 10.8.0.86 122104 username aminvpn 122104 mac 122104 bytes_out 0 122104 bytes_in 0 122104 station_ip 83.123.199.155 122104 port 157 122104 unique_id port 122104 remote_ip 10.8.0.14 122105 username aminvpn 122105 mac 122105 bytes_out 0 122105 bytes_in 0 122105 station_ip 5.120.76.250 122105 port 148 122105 unique_id port 122105 remote_ip 10.8.0.14 122109 username mansur 122109 mac 122109 bytes_out 0 122109 bytes_in 0 122109 station_ip 5.120.189.54 122109 port 169 122109 unique_id port 122111 username mohammadmahdi 122111 kill_reason Another user logged on this global unique id 122111 mac 122111 bytes_out 0 122111 bytes_in 0 122111 station_ip 5.120.161.233 122111 port 185 122111 unique_id port 122113 username barzegar 122113 mac 122113 bytes_out 0 122113 bytes_in 0 122113 station_ip 5.119.210.70 122113 port 148 122113 unique_id port 122113 remote_ip 10.8.0.234 122118 username houshang 122118 kill_reason Another user logged on this global unique id 122118 mac 122118 bytes_out 0 122118 bytes_in 0 122118 station_ip 5.120.47.137 122118 port 169 122118 unique_id port 122118 remote_ip 10.8.0.22 122125 username barzegar 122125 mac 122125 bytes_out 4384 122125 bytes_in 7601 122125 station_ip 5.119.210.70 122125 port 96 122125 unique_id port 122125 remote_ip 10.8.1.174 122126 username mohammadmahdi 122126 mac 122126 bytes_out 0 122126 bytes_in 0 122126 station_ip 5.120.161.233 122126 port 185 122126 unique_id port 122131 username houshang 122131 mac 122131 bytes_out 0 122131 bytes_in 0 122131 station_ip 5.120.47.137 122131 port 169 122131 unique_id port 122133 username amir 122133 kill_reason Maximum check online fails reached 122133 mac 122133 bytes_out 0 122133 bytes_in 0 122133 station_ip 46.225.213.48 122133 port 172 122133 unique_id port 122134 username forozande 122134 mac 122134 bytes_out 957718 122134 bytes_in 15275603 122134 station_ip 83.122.146.25 122134 port 148 122134 unique_id port 122134 remote_ip 10.8.0.74 122137 username aminvpn 122137 mac 122137 bytes_out 0 122137 bytes_in 0 122137 station_ip 5.119.139.218 122137 port 170 122095 bytes_out 0 122095 bytes_in 0 122095 station_ip 83.123.199.155 122095 port 122 122095 unique_id port 122095 remote_ip 10.8.0.14 122099 username barzegar 122099 mac 122099 bytes_out 0 122099 bytes_in 0 122099 station_ip 5.119.210.70 122099 port 96 122099 unique_id port 122099 remote_ip 10.8.1.174 122101 username aminvpn 122101 mac 122101 bytes_out 0 122101 bytes_in 0 122101 station_ip 83.123.199.155 122101 port 157 122101 unique_id port 122101 remote_ip 10.8.0.14 122102 username aminvpn 122102 mac 122102 bytes_out 0 122102 bytes_in 0 122102 station_ip 5.120.76.250 122102 port 122 122102 unique_id port 122102 remote_ip 10.8.0.14 122106 username barzegar 122106 mac 122106 bytes_out 0 122106 bytes_in 0 122106 station_ip 5.119.210.70 122106 port 148 122106 unique_id port 122106 remote_ip 10.8.0.234 122108 username aminvpn 122108 mac 122108 bytes_out 0 122108 bytes_in 0 122108 station_ip 5.120.76.250 122108 port 148 122108 unique_id port 122108 remote_ip 10.8.0.14 122110 username aminvpn 122110 mac 122110 bytes_out 0 122110 bytes_in 0 122110 station_ip 5.119.139.218 122110 port 148 122110 unique_id port 122110 remote_ip 10.8.0.14 122112 username aminvpn 122112 mac 122112 bytes_out 0 122112 bytes_in 0 122112 station_ip 83.123.199.155 122112 port 169 122112 unique_id port 122112 remote_ip 10.8.0.14 122115 username sabaghnezhad 122115 mac 122115 bytes_out 597466 122115 bytes_in 2865512 122115 station_ip 37.129.107.252 122115 port 170 122115 unique_id port 122115 remote_ip 10.8.0.186 122116 username aminvpn 122116 mac 122116 bytes_out 0 122116 bytes_in 0 122116 station_ip 83.123.199.155 122116 port 148 122116 unique_id port 122116 remote_ip 10.8.0.14 122117 username aminvpn 122117 mac 122117 bytes_out 0 122117 bytes_in 0 122117 station_ip 5.119.139.218 122117 port 170 122117 unique_id port 122117 remote_ip 10.8.0.14 122119 username aminvpn 122119 mac 122119 bytes_out 0 122119 bytes_in 0 122119 station_ip 83.123.199.155 122119 port 148 122119 unique_id port 122119 remote_ip 10.8.0.14 122120 username aminvpn 122120 mac 122120 bytes_out 0 122120 bytes_in 0 122120 station_ip 5.119.139.218 122120 port 170 122120 unique_id port 122120 remote_ip 10.8.0.14 122121 username aminvpn 122121 mac 122121 bytes_out 0 122121 bytes_in 0 122121 station_ip 83.123.199.155 122121 port 148 122121 unique_id port 122121 remote_ip 10.8.0.14 122124 username amirabbas 122124 unique_id port 122124 terminate_cause User-Request 122124 bytes_out 2039609 122124 bytes_in 50195906 122124 station_ip 37.27.19.135 122124 port 15729846 122124 nas_port_type Virtual 122124 remote_ip 5.5.5.254 122127 username aminvpn 122127 mac 122127 bytes_out 0 122127 bytes_in 0 122127 station_ip 5.119.139.218 122127 port 170 122127 unique_id port 122127 remote_ip 10.8.0.14 122128 username aminvpn 122128 mac 122128 bytes_out 0 122128 bytes_in 0 122128 station_ip 5.120.76.250 122128 port 172 122128 unique_id port 122128 remote_ip 10.8.0.14 122130 username aminvpn 122130 mac 122130 bytes_out 0 122130 bytes_in 0 122130 station_ip 5.120.76.250 122130 port 172 122130 unique_id port 122130 remote_ip 10.8.0.14 122132 username sedighe 122132 mac 122132 bytes_out 0 122132 bytes_in 0 122132 station_ip 83.123.252.83 122132 port 97 122132 unique_id port 122132 remote_ip 10.8.1.78 122136 username barzegar 122136 mac 122136 bytes_out 0 122136 bytes_in 0 122136 station_ip 5.119.210.70 122123 remote_ip 10.8.0.14 122129 username aminvpn 122129 mac 122129 bytes_out 0 122129 bytes_in 0 122129 station_ip 5.119.139.218 122129 port 170 122129 unique_id port 122129 remote_ip 10.8.0.14 122135 username barzegar 122135 mac 122135 bytes_out 0 122135 bytes_in 0 122135 station_ip 5.119.210.70 122135 port 97 122135 unique_id port 122135 remote_ip 10.8.1.174 122138 username aminvpn 122138 mac 122138 bytes_out 0 122138 bytes_in 0 122138 station_ip 5.120.76.250 122138 port 169 122138 unique_id port 122138 remote_ip 10.8.0.14 122143 username zare 122143 mac 122143 bytes_out 0 122143 bytes_in 0 122143 station_ip 37.27.4.24 122143 port 148 122143 unique_id port 122143 remote_ip 10.8.0.18 122144 username zare 122144 mac 122144 bytes_out 0 122144 bytes_in 0 122144 station_ip 37.27.4.24 122144 port 148 122144 unique_id port 122144 remote_ip 10.8.0.18 122145 username khalili 122145 kill_reason Another user logged on this global unique id 122145 mac 122145 bytes_out 0 122145 bytes_in 0 122145 station_ip 5.120.49.182 122145 port 122 122145 unique_id port 122145 remote_ip 10.8.0.86 122153 username barzegar 122153 mac 122153 bytes_out 0 122153 bytes_in 0 122153 station_ip 5.119.210.70 122153 port 169 122153 unique_id port 122153 remote_ip 10.8.0.234 122157 username malekpoir 122157 kill_reason Another user logged on this global unique id 122157 mac 122157 bytes_out 0 122157 bytes_in 0 122157 station_ip 5.120.66.141 122157 port 84 122157 unique_id port 122157 remote_ip 10.8.1.54 122158 username khalili 122158 mac 122158 bytes_out 0 122158 bytes_in 0 122158 station_ip 5.120.49.182 122158 port 122 122158 unique_id port 122160 username aminvpn 122160 mac 122160 bytes_out 0 122160 bytes_in 0 122160 station_ip 83.123.199.155 122160 port 96 122160 unique_id port 122160 remote_ip 10.8.1.6 122161 username aminvpn 122161 mac 122161 bytes_out 0 122161 bytes_in 0 122161 station_ip 5.119.139.218 122161 port 98 122161 unique_id port 122161 remote_ip 10.8.1.6 122167 username aminvpn 122167 mac 122167 bytes_out 0 122167 bytes_in 0 122167 station_ip 83.123.199.155 122167 port 96 122167 unique_id port 122167 remote_ip 10.8.1.6 122169 username avaanna 122169 mac 122169 bytes_out 1616282 122169 bytes_in 14220256 122169 station_ip 83.123.32.213 122169 port 183 122169 unique_id port 122169 remote_ip 10.8.0.98 122172 username aminvpn 122172 mac 122172 bytes_out 0 122172 bytes_in 0 122172 station_ip 5.119.139.218 122172 port 98 122172 unique_id port 122172 remote_ip 10.8.1.6 122175 username zare 122175 mac 122175 bytes_out 0 122175 bytes_in 0 122175 station_ip 37.27.4.24 122175 port 148 122175 unique_id port 122175 remote_ip 10.8.0.18 122177 username aminvpn 122177 mac 122177 bytes_out 0 122177 bytes_in 0 122177 station_ip 5.119.139.218 122177 port 97 122177 unique_id port 122177 remote_ip 10.8.1.6 122181 username aminvpn 122181 mac 122181 bytes_out 0 122181 bytes_in 0 122181 station_ip 83.123.199.155 122181 port 96 122181 unique_id port 122181 remote_ip 10.8.1.6 122183 username aminvpn 122183 mac 122183 bytes_out 0 122183 bytes_in 0 122183 station_ip 5.120.76.250 122183 port 122 122183 unique_id port 122183 remote_ip 10.8.0.14 122184 username aminvpn 122184 mac 122184 bytes_out 0 122184 bytes_in 0 122184 station_ip 83.123.199.155 122184 port 96 122184 unique_id port 122184 remote_ip 10.8.1.6 122185 username aminvpn 122185 mac 122136 port 98 122136 unique_id port 122136 remote_ip 10.8.1.174 122139 username aminvpn 122139 unique_id port 122139 terminate_cause User-Request 122139 bytes_out 9540080 122139 bytes_in 94757571 122139 station_ip 31.56.158.115 122139 port 15729841 122139 nas_port_type Virtual 122139 remote_ip 5.5.5.255 122142 username zare 122142 mac 122142 bytes_out 71058 122142 bytes_in 259055 122142 station_ip 37.27.4.24 122142 port 148 122142 unique_id port 122142 remote_ip 10.8.0.18 122147 username aminvpn 122147 mac 122147 bytes_out 92854 122147 bytes_in 337799 122147 station_ip 5.119.139.218 122147 port 169 122147 unique_id port 122147 remote_ip 10.8.0.14 122154 username aminvpn 122154 unique_id port 122154 terminate_cause Lost-Carrier 122154 bytes_out 53366968 122154 bytes_in 1603988657 122154 station_ip 5.120.76.250 122154 port 15729829 122154 nas_port_type Virtual 122154 remote_ip 5.5.5.55 122159 username zare 122159 mac 122159 bytes_out 9924 122159 bytes_in 17973 122159 station_ip 37.27.4.24 122159 port 98 122159 unique_id port 122159 remote_ip 10.8.1.58 122163 username aminvpn 122163 mac 122163 bytes_out 0 122163 bytes_in 0 122163 station_ip 5.119.139.218 122163 port 98 122163 unique_id port 122163 remote_ip 10.8.1.6 122165 username aminvpn 122165 mac 122165 bytes_out 0 122165 bytes_in 0 122165 station_ip 83.123.199.155 122165 port 96 122165 unique_id port 122165 remote_ip 10.8.1.6 122166 username aminvpn 122166 mac 122166 bytes_out 0 122166 bytes_in 0 122166 station_ip 5.119.139.218 122166 port 98 122166 unique_id port 122166 remote_ip 10.8.1.6 122170 username aminvpn 122170 mac 122170 bytes_out 128654 122170 bytes_in 344855 122170 station_ip 83.123.199.155 122170 port 96 122170 unique_id port 122170 remote_ip 10.8.1.6 122173 username barzegar 122173 mac 122173 bytes_out 0 122173 bytes_in 0 122173 station_ip 5.119.210.70 122173 port 157 122173 unique_id port 122173 remote_ip 10.8.0.234 122176 username avaanna 122176 mac 122176 bytes_out 0 122176 bytes_in 0 122176 station_ip 83.123.32.213 122176 port 122 122176 unique_id port 122176 remote_ip 10.8.0.98 122179 username aminvpn 122179 mac 122179 bytes_out 0 122179 bytes_in 0 122179 station_ip 5.119.139.218 122179 port 97 122179 unique_id port 122179 remote_ip 10.8.1.6 122187 username aminvpn 122187 mac 122187 bytes_out 0 122187 bytes_in 0 122187 station_ip 5.119.139.218 122187 port 97 122187 unique_id port 122187 remote_ip 10.8.1.6 122189 username aminvpn 122189 unique_id port 122189 terminate_cause User-Request 122189 bytes_out 374287 122189 bytes_in 1618740 122189 station_ip 5.120.76.250 122189 port 15729848 122189 nas_port_type Virtual 122189 remote_ip 5.5.5.67 122192 username zare 122192 mac 122192 bytes_out 0 122192 bytes_in 0 122192 station_ip 37.27.4.24 122192 port 122 122192 unique_id port 122192 remote_ip 10.8.0.18 122196 username aminvpn 122196 mac 122196 bytes_out 0 122196 bytes_in 0 122196 station_ip 5.119.139.218 122196 port 97 122196 unique_id port 122196 remote_ip 10.8.1.6 122199 username aminvpn 122199 mac 122199 bytes_out 0 122199 bytes_in 0 122199 station_ip 5.119.139.218 122199 port 97 122199 unique_id port 122199 remote_ip 10.8.1.6 122205 username aminvpn 122205 mac 122205 bytes_out 0 122205 bytes_in 0 122205 station_ip 83.123.199.155 122205 port 98 122205 unique_id port 122205 remote_ip 10.8.1.6 122207 username zare 122207 mac 122207 bytes_out 0 122207 bytes_in 0 122137 unique_id port 122137 remote_ip 10.8.0.14 122140 username barzegar 122140 mac 122140 bytes_out 0 122140 bytes_in 0 122140 station_ip 5.119.210.70 122140 port 148 122140 unique_id port 122140 remote_ip 10.8.0.234 122141 username rajaei 122141 mac 122141 bytes_out 1730156 122141 bytes_in 17566473 122141 station_ip 89.47.128.178 122141 port 157 122141 unique_id port 122141 remote_ip 10.8.0.34 122146 username barzegar 122146 mac 122146 bytes_out 0 122146 bytes_in 0 122146 station_ip 5.119.210.70 122146 port 148 122146 unique_id port 122146 remote_ip 10.8.0.234 122148 username aminvpn 122148 mac 122148 bytes_out 0 122148 bytes_in 0 122148 station_ip 5.120.76.250 122148 port 148 122148 unique_id port 122148 remote_ip 10.8.0.14 122149 username musa 122149 mac 122149 bytes_out 0 122149 bytes_in 0 122149 station_ip 83.122.199.10 122149 port 182 122149 unique_id port 122149 remote_ip 10.8.0.6 122150 username zare 122150 mac 122150 bytes_out 0 122150 bytes_in 0 122150 station_ip 37.27.4.24 122150 port 98 122150 unique_id port 122150 remote_ip 10.8.1.58 122151 username zare 122151 mac 122151 bytes_out 0 122151 bytes_in 0 122151 station_ip 37.27.4.24 122151 port 98 122151 unique_id port 122151 remote_ip 10.8.1.58 122152 username musa 122152 mac 122152 bytes_out 5972 122152 bytes_in 15366 122152 station_ip 83.122.199.10 122152 port 157 122152 unique_id port 122152 remote_ip 10.8.0.6 122155 username zare 122155 mac 122155 bytes_out 0 122155 bytes_in 0 122155 station_ip 37.27.4.24 122155 port 98 122155 unique_id port 122155 remote_ip 10.8.1.58 122156 username zare 122156 mac 122156 bytes_out 0 122156 bytes_in 0 122156 station_ip 37.27.4.24 122156 port 98 122156 unique_id port 122156 remote_ip 10.8.1.58 122162 username aminvpn 122162 mac 122162 bytes_out 0 122162 bytes_in 0 122162 station_ip 83.123.199.155 122162 port 96 122162 unique_id port 122162 remote_ip 10.8.1.6 122164 username aminvpn 122164 mac 122164 bytes_out 0 122164 bytes_in 0 122164 station_ip 5.119.139.218 122164 port 148 122164 unique_id port 122164 remote_ip 10.8.0.14 122168 username aminvpn 122168 mac 122168 bytes_out 0 122168 bytes_in 0 122168 station_ip 5.119.139.218 122168 port 98 122168 unique_id port 122168 remote_ip 10.8.1.6 122171 username alihosseini1 122171 mac 122171 bytes_out 1473512 122171 bytes_in 5424805 122171 station_ip 5.120.52.95 122171 port 97 122171 unique_id port 122171 remote_ip 10.8.1.106 122174 username aminvpn 122174 mac 122174 bytes_out 0 122174 bytes_in 0 122174 station_ip 83.123.199.155 122174 port 96 122174 unique_id port 122174 remote_ip 10.8.1.6 122178 username aminvpn 122178 mac 122178 bytes_out 0 122178 bytes_in 0 122178 station_ip 83.123.199.155 122178 port 96 122178 unique_id port 122178 remote_ip 10.8.1.6 122180 username aminvpn 122180 mac 122180 bytes_out 0 122180 bytes_in 0 122180 station_ip 5.120.76.250 122180 port 157 122180 unique_id port 122180 remote_ip 10.8.0.14 122182 username aminvpn 122182 mac 122182 bytes_out 0 122182 bytes_in 0 122182 station_ip 5.119.139.218 122182 port 97 122182 unique_id port 122182 remote_ip 10.8.1.6 122186 username aminvpn 122186 mac 122186 bytes_out 0 122186 bytes_in 0 122186 station_ip 83.123.199.155 122186 port 96 122186 unique_id port 122186 remote_ip 10.8.1.6 122191 username aminvpn 122191 mac 122191 bytes_out 0 122191 bytes_in 0 122185 bytes_out 0 122185 bytes_in 0 122185 station_ip 5.119.139.218 122185 port 97 122185 unique_id port 122185 remote_ip 10.8.1.6 122188 username zare 122188 mac 122188 bytes_out 0 122188 bytes_in 0 122188 station_ip 37.27.4.24 122188 port 122 122188 unique_id port 122188 remote_ip 10.8.0.18 122190 username aminvpn 122190 mac 122190 bytes_out 0 122190 bytes_in 0 122190 station_ip 83.123.199.155 122190 port 96 122190 unique_id port 122190 remote_ip 10.8.1.6 122193 username aminvpn 122193 mac 122193 bytes_out 0 122193 bytes_in 0 122193 station_ip 83.123.199.155 122193 port 96 122193 unique_id port 122193 remote_ip 10.8.1.6 122197 username aminvpn 122197 mac 122197 bytes_out 0 122197 bytes_in 0 122197 station_ip 83.123.199.155 122197 port 96 122197 unique_id port 122197 remote_ip 10.8.1.6 122203 username zare 122203 mac 122203 bytes_out 0 122203 bytes_in 0 122203 station_ip 37.27.4.24 122203 port 97 122203 unique_id port 122203 remote_ip 10.8.1.58 122204 username aminvpn 122204 mac 122204 bytes_out 0 122204 bytes_in 0 122204 station_ip 5.119.139.218 122204 port 93 122204 unique_id port 122204 remote_ip 10.8.1.6 122206 username aminvpn 122206 mac 122206 bytes_out 0 122206 bytes_in 0 122206 station_ip 5.119.139.218 122206 port 93 122206 unique_id port 122206 remote_ip 10.8.1.6 122209 username aminvpn 122209 mac 122209 bytes_out 0 122209 bytes_in 0 122209 station_ip 83.123.199.155 122209 port 98 122209 unique_id port 122209 remote_ip 10.8.1.6 122214 username barzegar 122214 mac 122214 bytes_out 0 122214 bytes_in 0 122214 station_ip 5.119.210.70 122214 port 93 122214 unique_id port 122214 remote_ip 10.8.1.174 122215 username aminvpn 122215 mac 122215 bytes_out 0 122215 bytes_in 0 122215 station_ip 5.119.139.218 122215 port 99 122215 unique_id port 122215 remote_ip 10.8.1.6 122217 username mirzaei 122217 kill_reason Another user logged on this global unique id 122217 mac 122217 bytes_out 0 122217 bytes_in 0 122217 station_ip 5.120.131.48 122217 port 85 122217 unique_id port 122221 username barzegar 122221 mac 122221 bytes_out 0 122221 bytes_in 0 122221 station_ip 5.119.210.70 122221 port 93 122221 unique_id port 122221 remote_ip 10.8.1.174 122224 username aminvpn 122224 mac 122224 bytes_out 0 122224 bytes_in 0 122224 station_ip 83.123.199.155 122224 port 98 122224 unique_id port 122224 remote_ip 10.8.1.6 122225 username aminvpn 122225 mac 122225 bytes_out 0 122225 bytes_in 0 122225 station_ip 5.119.139.218 122225 port 93 122225 unique_id port 122225 remote_ip 10.8.1.6 122226 username aminvpn 122226 mac 122226 bytes_out 0 122226 bytes_in 0 122226 station_ip 83.123.199.155 122226 port 98 122226 unique_id port 122226 remote_ip 10.8.1.6 122228 username kordestani 122228 mac 122228 bytes_out 0 122228 bytes_in 0 122228 station_ip 151.235.76.190 122228 port 92 122228 unique_id port 122228 remote_ip 10.8.1.98 122230 username barzegar 122230 mac 122230 bytes_out 2912 122230 bytes_in 5205 122230 station_ip 5.119.210.70 122230 port 170 122230 unique_id port 122230 remote_ip 10.8.0.234 122232 username aminvpn 122232 mac 122232 bytes_out 0 122232 bytes_in 0 122232 station_ip 5.119.139.218 122232 port 93 122232 unique_id port 122232 remote_ip 10.8.1.6 122234 username barzegar 122234 mac 122234 bytes_out 0 122234 bytes_in 0 122234 station_ip 5.119.210.70 122234 port 170 122234 unique_id port 122191 station_ip 5.119.139.218 122191 port 97 122191 unique_id port 122191 remote_ip 10.8.1.6 122194 username aminvpn 122194 mac 122194 bytes_out 0 122194 bytes_in 0 122194 station_ip 5.119.139.218 122194 port 97 122194 unique_id port 122194 remote_ip 10.8.1.6 122195 username aminvpn 122195 mac 122195 bytes_out 0 122195 bytes_in 0 122195 station_ip 83.123.199.155 122195 port 96 122195 unique_id port 122195 remote_ip 10.8.1.6 122198 username barzegar 122198 kill_reason Maximum check online fails reached 122198 mac 122198 bytes_out 0 122198 bytes_in 0 122198 station_ip 5.119.210.70 122198 port 148 122198 unique_id port 122200 username mehdizare 122200 mac 122200 bytes_out 604283 122200 bytes_in 3058832 122200 station_ip 5.119.88.232 122200 port 93 122200 unique_id port 122200 remote_ip 10.8.1.42 122201 username aminvpn 122201 mac 122201 bytes_out 0 122201 bytes_in 0 122201 station_ip 83.123.199.155 122201 port 96 122201 unique_id port 122201 remote_ip 10.8.1.6 122202 username zare 122202 mac 122202 bytes_out 0 122202 bytes_in 0 122202 station_ip 37.27.4.24 122202 port 122 122202 unique_id port 122202 remote_ip 10.8.0.18 122210 username aminvpn 122210 mac 122210 bytes_out 0 122210 bytes_in 0 122210 station_ip 5.119.139.218 122210 port 93 122210 unique_id port 122210 remote_ip 10.8.1.6 122211 username aminvpn 122211 mac 122211 bytes_out 0 122211 bytes_in 0 122211 station_ip 83.123.199.155 122211 port 98 122211 unique_id port 122211 remote_ip 10.8.1.6 122212 username aminvpn 122212 mac 122212 bytes_out 0 122212 bytes_in 0 122212 station_ip 5.119.139.218 122212 port 93 122212 unique_id port 122212 remote_ip 10.8.1.6 122213 username aminvpn 122213 mac 122213 bytes_out 0 122213 bytes_in 0 122213 station_ip 83.123.199.155 122213 port 98 122213 unique_id port 122213 remote_ip 10.8.1.6 122216 username aminvpn 122216 mac 122216 bytes_out 0 122216 bytes_in 0 122216 station_ip 83.123.199.155 122216 port 93 122216 unique_id port 122216 remote_ip 10.8.1.6 122220 username aminvpn 122220 mac 122220 bytes_out 0 122220 bytes_in 0 122220 station_ip 5.119.139.218 122220 port 98 122220 unique_id port 122220 remote_ip 10.8.1.6 122222 username aminvpn 122222 mac 122222 bytes_out 0 122222 bytes_in 0 122222 station_ip 83.123.199.155 122222 port 99 122222 unique_id port 122222 remote_ip 10.8.1.6 122229 username aminvpn 122229 mac 122229 bytes_out 0 122229 bytes_in 0 122229 station_ip 5.119.139.218 122229 port 93 122229 unique_id port 122229 remote_ip 10.8.1.6 122231 username aminvpn 122231 mac 122231 bytes_out 0 122231 bytes_in 0 122231 station_ip 83.123.199.155 122231 port 92 122231 unique_id port 122231 remote_ip 10.8.1.6 122233 username aminvpn 122233 mac 122233 bytes_out 0 122233 bytes_in 0 122233 station_ip 83.123.199.155 122233 port 92 122233 unique_id port 122233 remote_ip 10.8.1.6 122235 username aminvpn 122235 mac 122235 bytes_out 0 122235 bytes_in 0 122235 station_ip 5.119.139.218 122235 port 93 122235 unique_id port 122235 remote_ip 10.8.1.6 122238 username barzegar 122238 mac 122238 bytes_out 2471 122238 bytes_in 4764 122238 station_ip 5.119.210.70 122238 port 176 122238 unique_id port 122238 remote_ip 10.8.0.234 122239 username barzegar 122239 mac 122239 bytes_out 0 122239 bytes_in 0 122239 station_ip 5.119.210.70 122239 port 157 122239 unique_id port 122239 remote_ip 10.8.0.234 122246 username aminvpn 122207 station_ip 37.27.4.24 122207 port 97 122207 unique_id port 122207 remote_ip 10.8.1.58 122208 username hamidsalari 122208 kill_reason Another user logged on this global unique id 122208 mac 122208 bytes_out 0 122208 bytes_in 0 122208 station_ip 5.120.180.242 122208 port 94 122208 unique_id port 122208 remote_ip 10.8.1.182 122218 username aminvpn 122218 mac 122218 bytes_out 0 122218 bytes_in 0 122218 station_ip 5.119.139.218 122218 port 98 122218 unique_id port 122218 remote_ip 10.8.1.6 122219 username aminvpn 122219 mac 122219 bytes_out 0 122219 bytes_in 0 122219 station_ip 83.123.199.155 122219 port 93 122219 unique_id port 122219 remote_ip 10.8.1.6 122223 username aminvpn 122223 mac 122223 bytes_out 0 122223 bytes_in 0 122223 station_ip 5.119.139.218 122223 port 93 122223 unique_id port 122223 remote_ip 10.8.1.6 122227 username aminvpn 122227 mac 122227 bytes_out 0 122227 bytes_in 0 122227 station_ip 5.120.76.250 122227 port 176 122227 unique_id port 122227 remote_ip 10.8.0.14 122236 username aminvpn 122236 mac 122236 bytes_out 0 122236 bytes_in 0 122236 station_ip 83.123.199.155 122236 port 92 122236 unique_id port 122236 remote_ip 10.8.1.6 122237 username mohammadjavad 122237 mac 122237 bytes_out 477074 122237 bytes_in 3002001 122237 station_ip 83.123.145.152 122237 port 157 122237 unique_id port 122237 remote_ip 10.8.0.142 122240 username aminvpn 122240 mac 122240 bytes_out 0 122240 bytes_in 0 122240 station_ip 5.119.139.218 122240 port 93 122240 unique_id port 122240 remote_ip 10.8.1.6 122242 username mahdiyehalizadeh 122242 mac 122242 bytes_out 142650 122242 bytes_in 1400516 122242 station_ip 83.122.214.92 122242 port 170 122242 unique_id port 122242 remote_ip 10.8.0.82 122244 username aminvpn 122244 mac 122244 bytes_out 64568 122244 bytes_in 166661 122244 station_ip 5.211.217.138 122244 port 92 122244 unique_id port 122244 remote_ip 10.8.1.6 122247 username alihosseini1 122247 mac 122247 bytes_out 483936 122247 bytes_in 975508 122247 station_ip 5.120.52.95 122247 port 169 122247 unique_id port 122247 remote_ip 10.8.0.166 122250 username aminvpn 122250 mac 122250 bytes_out 0 122250 bytes_in 0 122250 station_ip 5.119.139.218 122250 port 93 122250 unique_id port 122250 remote_ip 10.8.1.6 122251 username aminvpn 122251 mac 122251 bytes_out 0 122251 bytes_in 0 122251 station_ip 83.123.199.155 122251 port 92 122251 unique_id port 122251 remote_ip 10.8.1.6 122258 username barzegar 122258 mac 122258 bytes_out 0 122258 bytes_in 0 122258 station_ip 5.119.210.70 122258 port 96 122258 unique_id port 122258 remote_ip 10.8.1.174 122259 username barzegar 122259 mac 122259 bytes_out 0 122259 bytes_in 0 122259 station_ip 5.119.210.70 122259 port 170 122259 unique_id port 122259 remote_ip 10.8.0.234 122260 username hamidsalari 122260 kill_reason Another user logged on this global unique id 122260 mac 122260 bytes_out 0 122260 bytes_in 0 122260 station_ip 5.120.180.242 122260 port 94 122260 unique_id port 122261 username aminvpn 122261 mac 122261 bytes_out 0 122261 bytes_in 0 122261 station_ip 5.119.139.218 122261 port 93 122261 unique_id port 122261 remote_ip 10.8.1.6 122263 username barzegar 122263 mac 122263 bytes_out 0 122263 bytes_in 0 122263 station_ip 5.119.210.70 122263 port 93 122263 unique_id port 122263 remote_ip 10.8.1.174 122266 username aminvpn 122266 mac 122266 bytes_out 30635 122266 bytes_in 29740 122266 station_ip 5.211.58.115 122234 remote_ip 10.8.0.234 122241 username barzegar 122241 mac 122241 bytes_out 0 122241 bytes_in 0 122241 station_ip 5.119.210.70 122241 port 93 122241 unique_id port 122241 remote_ip 10.8.1.174 122243 username houshang 122243 mac 122243 bytes_out 0 122243 bytes_in 0 122243 station_ip 5.120.47.137 122243 port 122 122243 unique_id port 122243 remote_ip 10.8.0.22 122245 username barzegar 122245 mac 122245 bytes_out 0 122245 bytes_in 0 122245 station_ip 5.119.210.70 122245 port 157 122245 unique_id port 122245 remote_ip 10.8.0.234 122249 username aminvpn 122249 mac 122249 bytes_out 6195 122249 bytes_in 10475 122249 station_ip 83.123.199.155 122249 port 92 122249 unique_id port 122249 remote_ip 10.8.1.6 122252 username mehdizare 122252 mac 122252 bytes_out 0 122252 bytes_in 0 122252 station_ip 5.119.88.232 122252 port 96 122252 unique_id port 122252 remote_ip 10.8.1.42 122255 username barzegar 122255 mac 122255 bytes_out 0 122255 bytes_in 0 122255 station_ip 5.119.210.70 122255 port 157 122255 unique_id port 122255 remote_ip 10.8.0.234 122256 username aminvpn 122256 mac 122256 bytes_out 0 122256 bytes_in 0 122256 station_ip 5.211.58.115 122256 port 157 122256 unique_id port 122256 remote_ip 10.8.0.14 122262 username aminvpn 122262 mac 122262 bytes_out 219146 122262 bytes_in 605494 122262 station_ip 5.211.58.115 122262 port 169 122262 unique_id port 122262 remote_ip 10.8.0.14 122264 username aminvpn 122264 mac 122264 bytes_out 0 122264 bytes_in 0 122264 station_ip 5.119.139.218 122264 port 170 122264 unique_id port 122264 remote_ip 10.8.0.14 122265 username tahmasebi 122265 kill_reason Another user logged on this global unique id 122265 mac 122265 bytes_out 0 122265 bytes_in 0 122265 station_ip 5.119.21.90 122265 port 135 122265 unique_id port 122268 username aminvpn 122268 mac 122268 bytes_out 0 122268 bytes_in 0 122268 station_ip 5.120.76.250 122268 port 170 122268 unique_id port 122268 remote_ip 10.8.0.14 122269 username barzegar 122269 mac 122269 bytes_out 0 122269 bytes_in 0 122269 station_ip 5.119.210.70 122269 port 93 122269 unique_id port 122269 remote_ip 10.8.1.174 122272 username aminvpn 122272 mac 122272 bytes_out 0 122272 bytes_in 0 122272 station_ip 83.123.199.155 122272 port 96 122272 unique_id port 122272 remote_ip 10.8.1.6 122276 username aminvpn 122276 mac 122276 bytes_out 63815 122276 bytes_in 462302 122276 station_ip 5.119.139.218 122276 port 170 122276 unique_id port 122276 remote_ip 10.8.0.14 122277 username aminvpn 122277 mac 122277 bytes_out 0 122277 bytes_in 0 122277 station_ip 5.120.76.250 122277 port 176 122277 unique_id port 122277 remote_ip 10.8.0.14 122284 username barzegar 122284 mac 122284 bytes_out 0 122284 bytes_in 0 122284 station_ip 5.119.210.70 122284 port 135 122284 unique_id port 122284 remote_ip 10.8.0.234 122286 username zare 122286 mac 122286 bytes_out 0 122286 bytes_in 0 122286 station_ip 37.27.4.24 122286 port 170 122286 unique_id port 122286 remote_ip 10.8.0.18 122289 username forozande 122289 mac 122289 bytes_out 0 122289 bytes_in 0 122289 station_ip 83.123.196.64 122289 port 157 122289 unique_id port 122290 username zare 122290 mac 122290 bytes_out 0 122290 bytes_in 0 122290 station_ip 37.27.4.24 122290 port 157 122290 unique_id port 122290 remote_ip 10.8.0.18 122293 username zare 122293 mac 122293 bytes_out 20909 122293 bytes_in 42129 122246 mac 122246 bytes_out 0 122246 bytes_in 0 122246 station_ip 5.119.139.218 122246 port 93 122246 unique_id port 122246 remote_ip 10.8.1.6 122248 username barzegar 122248 mac 122248 bytes_out 0 122248 bytes_in 0 122248 station_ip 5.119.210.70 122248 port 157 122248 unique_id port 122248 remote_ip 10.8.0.234 122253 username aminvpn 122253 mac 122253 bytes_out 0 122253 bytes_in 0 122253 station_ip 5.119.139.218 122253 port 93 122253 unique_id port 122253 remote_ip 10.8.1.6 122254 username aminvpn 122254 mac 122254 bytes_out 0 122254 bytes_in 0 122254 station_ip 83.123.199.155 122254 port 96 122254 unique_id port 122254 remote_ip 10.8.1.6 122257 username aminvpn 122257 mac 122257 bytes_out 0 122257 bytes_in 0 122257 station_ip 5.120.76.250 122257 port 169 122257 unique_id port 122257 remote_ip 10.8.0.14 122267 username malekpoir 122267 mac 122267 bytes_out 0 122267 bytes_in 0 122267 station_ip 5.120.66.141 122267 port 84 122267 unique_id port 122271 username barzegar 122271 mac 122271 bytes_out 0 122271 bytes_in 0 122271 station_ip 5.119.210.70 122271 port 176 122271 unique_id port 122271 remote_ip 10.8.0.234 122273 username aminvpn 122273 mac 122273 bytes_out 0 122273 bytes_in 0 122273 station_ip 5.211.224.194 122273 port 93 122273 unique_id port 122273 remote_ip 10.8.1.6 122274 username aminvpn 122274 mac 122274 bytes_out 0 122274 bytes_in 0 122274 station_ip 83.123.199.155 122274 port 96 122274 unique_id port 122274 remote_ip 10.8.1.6 122279 username zare 122279 kill_reason Maximum check online fails reached 122279 mac 122279 bytes_out 0 122279 bytes_in 0 122279 station_ip 37.27.4.24 122279 port 93 122279 unique_id port 122282 username zare 122282 mac 122282 bytes_out 0 122282 bytes_in 0 122282 station_ip 37.27.4.24 122282 port 176 122282 unique_id port 122282 remote_ip 10.8.0.18 122283 username aminvpn 122283 mac 122283 bytes_out 0 122283 bytes_in 0 122283 station_ip 5.119.139.218 122283 port 170 122283 unique_id port 122283 remote_ip 10.8.0.14 122288 username barzegar 122288 kill_reason Maximum check online fails reached 122288 mac 122288 bytes_out 0 122288 bytes_in 0 122288 station_ip 5.119.210.70 122288 port 97 122288 unique_id port 122300 username zare 122300 mac 122300 bytes_out 16365 122300 bytes_in 37448 122300 station_ip 37.27.4.24 122300 port 122 122300 unique_id port 122300 remote_ip 10.8.0.18 122302 username mehdizare 122302 mac 122302 bytes_out 236575 122302 bytes_in 1003860 122302 station_ip 5.119.88.232 122302 port 92 122302 unique_id port 122302 remote_ip 10.8.1.42 122303 username zare 122303 mac 122303 bytes_out 0 122303 bytes_in 0 122303 station_ip 37.27.4.24 122303 port 122 122303 unique_id port 122303 remote_ip 10.8.0.18 122305 username hosseine 122305 kill_reason Another user logged on this global unique id 122305 mac 122305 bytes_out 0 122305 bytes_in 0 122305 station_ip 83.123.79.219 122305 port 180 122305 unique_id port 122305 remote_ip 10.8.0.238 122306 username zare 122306 mac 122306 bytes_out 0 122306 bytes_in 0 122306 station_ip 37.27.4.24 122306 port 157 122306 unique_id port 122306 remote_ip 10.8.0.18 122309 username aminvpn 122309 mac 122309 bytes_out 0 122309 bytes_in 0 122309 station_ip 5.119.139.218 122309 port 135 122309 unique_id port 122309 remote_ip 10.8.0.14 122313 username barzegar 122313 mac 122313 bytes_out 0 122313 bytes_in 0 122313 station_ip 5.119.210.70 122266 port 176 122266 unique_id port 122266 remote_ip 10.8.0.14 122270 username forozande 122270 kill_reason Another user logged on this global unique id 122270 mac 122270 bytes_out 0 122270 bytes_in 0 122270 station_ip 83.123.196.64 122270 port 157 122270 unique_id port 122270 remote_ip 10.8.0.74 122275 username aminvpn 122275 mac 122275 bytes_out 0 122275 bytes_in 0 122275 station_ip 5.211.224.194 122275 port 93 122275 unique_id port 122275 remote_ip 10.8.1.6 122278 username zare 122278 mac 122278 bytes_out 6656417 122278 bytes_in 41082114 122278 station_ip 37.27.4.24 122278 port 97 122278 unique_id port 122278 remote_ip 10.8.1.58 122280 username tahmasebi 122280 mac 122280 bytes_out 0 122280 bytes_in 0 122280 station_ip 5.119.21.90 122280 port 135 122280 unique_id port 122281 username zare 122281 mac 122281 bytes_out 0 122281 bytes_in 0 122281 station_ip 37.27.4.24 122281 port 135 122281 unique_id port 122281 remote_ip 10.8.0.18 122285 username aminvpn 122285 mac 122285 bytes_out 0 122285 bytes_in 0 122285 station_ip 5.120.76.250 122285 port 182 122285 unique_id port 122285 remote_ip 10.8.0.14 122287 username zare 122287 mac 122287 bytes_out 0 122287 bytes_in 0 122287 station_ip 37.27.4.24 122287 port 170 122287 unique_id port 122287 remote_ip 10.8.0.18 122291 username rostami 122291 mac 122291 bytes_out 0 122291 bytes_in 0 122291 station_ip 5.119.12.237 122291 port 122 122291 unique_id port 122291 remote_ip 10.8.0.194 122292 username barzegar 122292 mac 122292 bytes_out 0 122292 bytes_in 0 122292 station_ip 5.119.210.70 122292 port 98 122292 unique_id port 122292 remote_ip 10.8.1.174 122295 username aminvpn 122295 mac 122295 bytes_out 0 122295 bytes_in 0 122295 station_ip 5.120.76.250 122295 port 157 122295 unique_id port 122295 remote_ip 10.8.0.14 122297 username zare 122297 mac 122297 bytes_out 0 122297 bytes_in 0 122297 station_ip 37.27.4.24 122297 port 122 122297 unique_id port 122297 remote_ip 10.8.0.18 122299 username barzegar 122299 mac 122299 bytes_out 0 122299 bytes_in 0 122299 station_ip 5.119.210.70 122299 port 157 122299 unique_id port 122299 remote_ip 10.8.0.234 122304 username zare 122304 mac 122304 bytes_out 0 122304 bytes_in 0 122304 station_ip 37.27.4.24 122304 port 122 122304 unique_id port 122304 remote_ip 10.8.0.18 122307 username mosi 122307 mac 122307 bytes_out 1615491 122307 bytes_in 14053828 122307 station_ip 151.235.76.119 122307 port 169 122307 unique_id port 122307 remote_ip 10.8.0.138 122311 username aminvpn 122311 mac 122311 bytes_out 0 122311 bytes_in 0 122311 station_ip 5.120.76.250 122311 port 157 122311 unique_id port 122311 remote_ip 10.8.0.14 122314 username zare 122314 mac 122314 bytes_out 0 122314 bytes_in 0 122314 station_ip 37.27.4.24 122314 port 92 122314 unique_id port 122314 remote_ip 10.8.1.58 122318 username aminvpn 122318 mac 122318 bytes_out 0 122318 bytes_in 0 122318 station_ip 5.120.76.250 122318 port 92 122318 unique_id port 122318 remote_ip 10.8.1.6 122319 username zare 122319 mac 122319 bytes_out 0 122319 bytes_in 0 122319 station_ip 37.27.4.24 122319 port 92 122319 unique_id port 122319 remote_ip 10.8.1.58 122324 username musa 122324 mac 122324 bytes_out 15864 122324 bytes_in 62327 122324 station_ip 83.122.199.10 122324 port 100 122324 unique_id port 122324 remote_ip 10.8.1.10 122329 username mosi 122329 mac 122293 station_ip 37.27.4.24 122293 port 122 122293 unique_id port 122293 remote_ip 10.8.0.18 122294 username aminvpn 122294 mac 122294 bytes_out 137260 122294 bytes_in 281221 122294 station_ip 5.119.139.218 122294 port 135 122294 unique_id port 122294 remote_ip 10.8.0.14 122296 username zare 122296 mac 122296 bytes_out 0 122296 bytes_in 0 122296 station_ip 37.27.4.24 122296 port 122 122296 unique_id port 122296 remote_ip 10.8.0.18 122298 username tahmasebi 122298 mac 122298 bytes_out 0 122298 bytes_in 0 122298 station_ip 5.119.140.230 122298 port 176 122298 unique_id port 122298 remote_ip 10.8.0.42 122301 username zare 122301 mac 122301 bytes_out 0 122301 bytes_in 0 122301 station_ip 37.27.4.24 122301 port 122 122301 unique_id port 122301 remote_ip 10.8.0.18 122308 username mosi 122308 mac 122308 bytes_out 0 122308 bytes_in 0 122308 station_ip 5.134.136.110 122308 port 157 122308 unique_id port 122308 remote_ip 10.8.0.138 122310 username zare 122310 mac 122310 bytes_out 0 122310 bytes_in 0 122310 station_ip 37.27.4.24 122310 port 92 122310 unique_id port 122310 remote_ip 10.8.1.58 122312 username aminvpn 122312 mac 122312 bytes_out 0 122312 bytes_in 0 122312 station_ip 5.120.76.250 122312 port 157 122312 unique_id port 122312 remote_ip 10.8.0.14 122316 username aminvpn 122316 mac 122316 bytes_out 0 122316 bytes_in 0 122316 station_ip 5.120.76.250 122316 port 92 122316 unique_id port 122316 remote_ip 10.8.1.6 122321 username mosi 122321 mac 122321 bytes_out 78501 122321 bytes_in 125817 122321 station_ip 151.235.76.119 122321 port 176 122321 unique_id port 122321 remote_ip 10.8.0.138 122323 username mosi 122323 mac 122323 bytes_out 0 122323 bytes_in 0 122323 station_ip 37.137.8.129 122323 port 99 122323 unique_id port 122323 remote_ip 10.8.1.86 122325 username aminvpn 122325 mac 122325 bytes_out 0 122325 bytes_in 0 122325 station_ip 5.119.139.218 122325 port 170 122325 unique_id port 122325 remote_ip 10.8.0.14 122326 username aminvpn 122326 mac 122326 bytes_out 0 122326 bytes_in 0 122326 station_ip 5.120.76.250 122326 port 183 122326 unique_id port 122326 remote_ip 10.8.0.14 122327 username barzegar 122327 mac 122327 bytes_out 0 122327 bytes_in 0 122327 station_ip 5.119.210.70 122327 port 170 122327 unique_id port 122327 remote_ip 10.8.0.234 122330 username forozande 122330 mac 122330 bytes_out 747330 122330 bytes_in 7588169 122330 station_ip 83.122.68.97 122330 port 157 122330 unique_id port 122330 remote_ip 10.8.0.74 122334 username mehdizare 122334 mac 122334 bytes_out 0 122334 bytes_in 0 122334 station_ip 5.119.88.232 122334 port 99 122334 unique_id port 122334 remote_ip 10.8.1.42 122338 username aminvpn 122338 mac 122338 bytes_out 0 122338 bytes_in 0 122338 station_ip 5.120.61.27 122338 port 169 122338 unique_id port 122338 remote_ip 10.8.0.14 122341 username malekpoir 122341 mac 122341 bytes_out 400470 122341 bytes_in 1901675 122341 station_ip 5.120.66.141 122341 port 84 122341 unique_id port 122341 remote_ip 10.8.1.54 122343 username kordestani 122343 mac 122343 bytes_out 1380514 122343 bytes_in 18570204 122343 station_ip 151.235.76.190 122343 port 184 122343 unique_id port 122343 remote_ip 10.8.0.134 122345 username mohammadmahdi 122345 mac 122345 bytes_out 20019513 122345 bytes_in 43046092 122345 station_ip 5.120.161.233 122345 port 135 122345 unique_id port 122345 remote_ip 10.8.0.54 122313 port 157 122313 unique_id port 122313 remote_ip 10.8.0.234 122315 username aminvpn 122315 mac 122315 bytes_out 0 122315 bytes_in 0 122315 station_ip 83.123.199.155 122315 port 96 122315 unique_id port 122315 remote_ip 10.8.1.6 122317 username aminvpn 122317 mac 122317 bytes_out 0 122317 bytes_in 0 122317 station_ip 83.123.199.155 122317 port 98 122317 unique_id port 122317 remote_ip 10.8.1.6 122320 username mosi 122320 mac 122320 bytes_out 0 122320 bytes_in 0 122320 station_ip 37.156.60.128 122320 port 169 122320 unique_id port 122320 remote_ip 10.8.0.138 122322 username jafari 122322 mac 122322 bytes_out 1848418 122322 bytes_in 27634527 122322 station_ip 89.32.99.84 122322 port 122 122322 unique_id port 122322 remote_ip 10.8.0.242 122328 username jafari 122328 mac 122328 bytes_out 0 122328 bytes_in 0 122328 station_ip 89.32.99.84 122328 port 176 122328 unique_id port 122328 remote_ip 10.8.0.242 122332 username barzegar 122332 mac 122332 bytes_out 0 122332 bytes_in 0 122332 station_ip 5.119.210.70 122332 port 100 122332 unique_id port 122332 remote_ip 10.8.1.174 122336 username milan 122336 mac 122336 bytes_out 0 122336 bytes_in 0 122336 station_ip 5.119.192.77 122336 port 179 122336 unique_id port 122337 username aminvpn 122337 mac 122337 bytes_out 540824 122337 bytes_in 5784156 122337 station_ip 5.119.46.104 122337 port 122 122337 unique_id port 122337 remote_ip 10.8.0.14 122339 username barzegar 122339 mac 122339 bytes_out 2220 122339 bytes_in 5125 122339 station_ip 5.119.210.70 122339 port 157 122339 unique_id port 122339 remote_ip 10.8.0.234 122342 username aminvpn 122342 mac 122342 bytes_out 0 122342 bytes_in 0 122342 station_ip 5.120.61.27 122342 port 122 122342 unique_id port 122342 remote_ip 10.8.0.14 122344 username milan 122344 mac 122344 bytes_out 0 122344 bytes_in 0 122344 station_ip 5.119.222.17 122344 port 99 122344 unique_id port 122344 remote_ip 10.8.1.178 122346 username mehdizare 122346 mac 122346 bytes_out 654978 122346 bytes_in 3734154 122346 station_ip 5.120.59.106 122346 port 100 122346 unique_id port 122346 remote_ip 10.8.1.42 122347 username barzegar 122347 mac 122347 bytes_out 4324 122347 bytes_in 6837 122347 station_ip 5.119.47.9 122347 port 157 122347 unique_id port 122347 remote_ip 10.8.0.234 122350 username houshang 122350 mac 122350 bytes_out 0 122350 bytes_in 0 122350 station_ip 5.120.47.137 122350 port 122 122350 unique_id port 122351 username aminvpn 122351 mac 122351 bytes_out 0 122351 bytes_in 0 122351 station_ip 83.123.199.155 122351 port 98 122351 unique_id port 122351 remote_ip 10.8.1.6 122355 username barzegar 122355 mac 122355 bytes_out 0 122355 bytes_in 0 122355 station_ip 5.119.47.9 122355 port 122 122355 unique_id port 122355 remote_ip 10.8.0.234 122362 username aminvpn 122362 mac 122362 bytes_out 0 122362 bytes_in 0 122362 station_ip 5.120.61.27 122362 port 99 122362 unique_id port 122362 remote_ip 10.8.1.6 122367 username hamidsalari1 122367 kill_reason Another user logged on this global unique id 122367 mac 122367 bytes_out 0 122367 bytes_in 0 122367 station_ip 113.203.106.227 122367 port 157 122367 unique_id port 122367 remote_ip 10.8.0.226 122368 username mosi 122368 kill_reason Another user logged on this global unique id 122368 mac 122368 bytes_out 0 122368 bytes_in 0 122368 station_ip 151.235.76.119 122368 port 170 122368 unique_id port 122368 remote_ip 10.8.0.138 122329 bytes_out 43273 122329 bytes_in 69421 122329 station_ip 5.134.162.239 122329 port 122 122329 unique_id port 122329 remote_ip 10.8.0.138 122331 username mostafa_es78 122331 mac 122331 bytes_out 1226166 122331 bytes_in 16133016 122331 station_ip 178.236.35.96 122331 port 169 122331 unique_id port 122331 remote_ip 10.8.0.198 122333 username jafari 122333 mac 122333 bytes_out 1195270 122333 bytes_in 15610432 122333 station_ip 37.153.187.254 122333 port 170 122333 unique_id port 122333 remote_ip 10.8.0.242 122335 username aminvpn 122335 mac 122335 bytes_out 8849 122335 bytes_in 11751 122335 station_ip 5.119.139.218 122335 port 122 122335 unique_id port 122335 remote_ip 10.8.0.14 122340 username mansur 122340 mac 122340 bytes_out 0 122340 bytes_in 0 122340 station_ip 5.120.153.142 122340 port 96 122340 unique_id port 122340 remote_ip 10.8.1.194 122352 username aminvpn 122352 mac 122352 bytes_out 0 122352 bytes_in 0 122352 station_ip 5.120.61.27 122352 port 96 122352 unique_id port 122352 remote_ip 10.8.1.6 122353 username rezasekonji 122353 mac 122353 bytes_out 0 122353 bytes_in 0 122353 station_ip 83.123.92.222 122353 port 157 122353 unique_id port 122353 remote_ip 10.8.0.130 122356 username aminvpn 122356 mac 122356 bytes_out 0 122356 bytes_in 0 122356 station_ip 83.123.199.155 122356 port 98 122356 unique_id port 122356 remote_ip 10.8.1.6 122357 username aminvpn 122357 mac 122357 bytes_out 0 122357 bytes_in 0 122357 station_ip 5.120.61.27 122357 port 96 122357 unique_id port 122357 remote_ip 10.8.1.6 122358 username tahmasebi 122358 kill_reason Another user logged on this global unique id 122358 mac 122358 bytes_out 0 122358 bytes_in 0 122358 station_ip 5.119.140.230 122358 port 183 122358 unique_id port 122358 remote_ip 10.8.0.42 122359 username houshang 122359 mac 122359 bytes_out 427028 122359 bytes_in 3940399 122359 station_ip 5.120.47.137 122359 port 157 122359 unique_id port 122359 remote_ip 10.8.0.22 122360 username farhad1 122360 mac 122360 bytes_out 0 122360 bytes_in 0 122360 station_ip 5.120.187.201 122360 port 135 122360 unique_id port 122360 remote_ip 10.8.0.26 122361 username aminvpn 122361 mac 122361 bytes_out 0 122361 bytes_in 0 122361 station_ip 83.123.199.155 122361 port 98 122361 unique_id port 122361 remote_ip 10.8.1.6 122366 username ahmadipour 122366 unique_id port 122366 terminate_cause Lost-Carrier 122366 bytes_out 2034707 122366 bytes_in 34842524 122366 station_ip 83.123.197.129 122366 port 15729850 122366 nas_port_type Virtual 122366 remote_ip 5.5.5.253 122371 username zare 122371 mac 122371 bytes_out 0 122371 bytes_in 0 122371 station_ip 37.27.4.24 122371 port 92 122371 unique_id port 122371 remote_ip 10.8.1.58 122372 username zare 122372 mac 122372 bytes_out 0 122372 bytes_in 0 122372 station_ip 37.27.4.24 122372 port 92 122372 unique_id port 122372 remote_ip 10.8.1.58 122373 username aminvpn 122373 mac 122373 bytes_out 0 122373 bytes_in 0 122373 station_ip 83.123.199.155 122373 port 98 122373 unique_id port 122373 remote_ip 10.8.1.6 122378 username barzegar 122378 kill_reason Maximum check online fails reached 122378 mac 122378 bytes_out 0 122378 bytes_in 0 122378 station_ip 5.119.47.9 122378 port 98 122378 unique_id port 122380 username zare 122380 mac 122380 bytes_out 0 122380 bytes_in 0 122380 station_ip 37.27.4.24 122380 port 184 122380 unique_id port 122380 remote_ip 10.8.0.18 122381 username mahdixz 122381 unique_id port 122348 username barzegar 122348 mac 122348 bytes_out 26786 122348 bytes_in 32054 122348 station_ip 5.119.47.9 122348 port 169 122348 unique_id port 122348 remote_ip 10.8.0.234 122349 username houshang 122349 kill_reason Another user logged on this global unique id 122349 mac 122349 bytes_out 0 122349 bytes_in 0 122349 station_ip 5.120.47.137 122349 port 122 122349 unique_id port 122349 remote_ip 10.8.0.22 122354 username barzegar 122354 mac 122354 bytes_out 79033 122354 bytes_in 73619 122354 station_ip 5.119.47.9 122354 port 170 122354 unique_id port 122354 remote_ip 10.8.0.234 122363 username jafari 122363 kill_reason Another user logged on this global unique id 122363 mac 122363 bytes_out 0 122363 bytes_in 0 122363 station_ip 94.24.83.116 122363 port 122 122363 unique_id port 122363 remote_ip 10.8.0.242 122364 username barzegar 122364 kill_reason Maximum check online fails reached 122364 mac 122364 bytes_out 0 122364 bytes_in 0 122364 station_ip 5.119.47.9 122364 port 179 122364 unique_id port 122365 username sabaghnezhad 122365 mac 122365 bytes_out 0 122365 bytes_in 0 122365 station_ip 83.122.230.70 122365 port 182 122365 unique_id port 122365 remote_ip 10.8.0.186 122370 username tahmasebi 122370 kill_reason Another user logged on this global unique id 122370 mac 122370 bytes_out 0 122370 bytes_in 0 122370 station_ip 5.119.140.230 122370 port 183 122370 unique_id port 122374 username aminvpn 122374 mac 122374 bytes_out 0 122374 bytes_in 0 122374 station_ip 5.120.61.27 122374 port 92 122374 unique_id port 122374 remote_ip 10.8.1.6 122375 username barzegar 122375 mac 122375 bytes_out 0 122375 bytes_in 0 122375 station_ip 5.119.47.9 122375 port 185 122375 unique_id port 122375 remote_ip 10.8.0.234 122377 username aminvpn 122377 mac 122377 bytes_out 0 122377 bytes_in 0 122377 station_ip 5.120.61.27 122377 port 99 122377 unique_id port 122377 remote_ip 10.8.1.6 122379 username mehdizare 122379 mac 122379 bytes_out 0 122379 bytes_in 0 122379 station_ip 5.120.59.106 122379 port 84 122379 unique_id port 122379 remote_ip 10.8.1.42 122385 username aminvpn 122385 mac 122385 bytes_out 0 122385 bytes_in 0 122385 station_ip 5.120.61.27 122385 port 186 122385 unique_id port 122385 remote_ip 10.8.0.14 122386 username barzegar 122386 mac 122386 bytes_out 0 122386 bytes_in 0 122386 station_ip 5.119.47.9 122386 port 185 122386 unique_id port 122386 remote_ip 10.8.0.234 122387 username alihosseini1 122387 mac 122387 bytes_out 0 122387 bytes_in 0 122387 station_ip 5.120.133.70 122387 port 96 122387 unique_id port 122387 remote_ip 10.8.1.106 122389 username kordestani 122389 mac 122389 bytes_out 490103 122389 bytes_in 4029645 122389 station_ip 151.235.77.189 122389 port 169 122389 unique_id port 122389 remote_ip 10.8.0.134 122392 username zare 122392 mac 122392 bytes_out 882503 122392 bytes_in 7947535 122392 station_ip 37.27.4.24 122392 port 186 122392 unique_id port 122392 remote_ip 10.8.0.18 122394 username farhad1 122394 kill_reason Another user logged on this global unique id 122394 mac 122394 bytes_out 0 122394 bytes_in 0 122394 station_ip 5.120.187.201 122394 port 135 122394 unique_id port 122394 remote_ip 10.8.0.26 122400 username zare 122400 mac 122400 bytes_out 1071449 122400 bytes_in 11128558 122400 station_ip 37.27.4.24 122400 port 169 122400 unique_id port 122400 remote_ip 10.8.0.18 122402 username musa 122402 mac 122402 bytes_out 15293 122402 bytes_in 22450 122402 station_ip 83.122.199.10 122369 username zare 122369 mac 122369 bytes_out 0 122369 bytes_in 0 122369 station_ip 37.27.4.24 122369 port 92 122369 unique_id port 122369 remote_ip 10.8.1.58 122376 username aminvpn 122376 mac 122376 bytes_out 31441 122376 bytes_in 47706 122376 station_ip 83.123.199.155 122376 port 92 122376 unique_id port 122376 remote_ip 10.8.1.6 122382 username mostafa_es78 122382 unique_id port 122382 terminate_cause User-Request 122382 bytes_out 1002306 122382 bytes_in 23208724 122382 station_ip 178.236.35.96 122382 port 15729851 122382 nas_port_type Virtual 122382 remote_ip 5.5.5.252 122388 username zare 122388 mac 122388 bytes_out 1181715 122388 bytes_in 7949236 122388 station_ip 37.27.4.24 122388 port 184 122388 unique_id port 122388 remote_ip 10.8.0.18 122391 username aminvpn 122391 mac 122391 bytes_out 0 122391 bytes_in 0 122391 station_ip 5.120.61.27 122391 port 169 122391 unique_id port 122391 remote_ip 10.8.0.14 122393 username jafari 122393 kill_reason Another user logged on this global unique id 122393 mac 122393 bytes_out 0 122393 bytes_in 0 122393 station_ip 94.24.83.116 122393 port 122 122393 unique_id port 122395 username mahdixz 122395 unique_id port 122395 terminate_cause User-Request 122395 bytes_out 0 122395 bytes_in 0 122395 station_ip 151.235.70.56 122395 port 15729853 122395 nas_port_type Virtual 122395 remote_ip 5.5.5.254 122399 username mirzaei 122399 mac 122399 bytes_out 0 122399 bytes_in 0 122399 station_ip 5.120.131.48 122399 port 85 122399 unique_id port 122401 username barzegar 122401 mac 122401 bytes_out 0 122401 bytes_in 0 122401 station_ip 5.119.47.9 122401 port 84 122401 unique_id port 122401 remote_ip 10.8.1.174 122406 username zare 122406 kill_reason Another user logged on this global unique id 122406 mac 122406 bytes_out 0 122406 bytes_in 0 122406 station_ip 37.129.0.191 122406 port 157 122406 unique_id port 122406 remote_ip 10.8.0.18 122408 username tahmasebi 122408 kill_reason Another user logged on this global unique id 122408 mac 122408 bytes_out 0 122408 bytes_in 0 122408 station_ip 5.119.140.230 122408 port 183 122408 unique_id port 122410 username zare 122410 mac 122410 bytes_out 0 122410 bytes_in 0 122410 station_ip 37.129.0.191 122410 port 157 122410 unique_id port 122414 username mahdixz 122414 unique_id port 122414 terminate_cause User-Request 122414 bytes_out 2617485 122414 bytes_in 115422730 122414 station_ip 151.235.70.56 122414 port 15729854 122414 nas_port_type Virtual 122414 remote_ip 5.5.5.254 122417 username farhad1 122417 mac 122417 bytes_out 0 122417 bytes_in 0 122417 station_ip 5.120.187.201 122417 port 135 122417 unique_id port 122423 username mosi 122423 kill_reason Another user logged on this global unique id 122423 mac 122423 bytes_out 0 122423 bytes_in 0 122423 station_ip 151.235.76.119 122423 port 170 122423 unique_id port 122424 username zare 122424 kill_reason Another user logged on this global unique id 122424 mac 122424 bytes_out 0 122424 bytes_in 0 122424 station_ip 37.129.0.211 122424 port 157 122424 unique_id port 122425 username mosi 122425 kill_reason Another user logged on this global unique id 122425 mac 122425 bytes_out 0 122425 bytes_in 0 122425 station_ip 151.235.76.119 122425 port 170 122425 unique_id port 122429 username mosi 122429 kill_reason Another user logged on this global unique id 122429 mac 122429 bytes_out 0 122429 bytes_in 0 122429 station_ip 151.235.76.119 122429 port 170 122429 unique_id port 122430 username hamidsalari1 122430 mac 122430 bytes_out 31581 122430 bytes_in 104442 122430 station_ip 37.129.146.71 122381 terminate_cause Lost-Carrier 122381 bytes_out 338287 122381 bytes_in 546166 122381 station_ip 151.235.70.56 122381 port 15729852 122381 nas_port_type Virtual 122381 remote_ip 5.5.5.253 122383 username hamidsalari1 122383 kill_reason Another user logged on this global unique id 122383 mac 122383 bytes_out 0 122383 bytes_in 0 122383 station_ip 113.203.106.227 122383 port 157 122383 unique_id port 122384 username barzegar 122384 mac 122384 bytes_out 0 122384 bytes_in 0 122384 station_ip 5.119.47.9 122384 port 185 122384 unique_id port 122384 remote_ip 10.8.0.234 122390 username jafari 122390 kill_reason Another user logged on this global unique id 122390 mac 122390 bytes_out 0 122390 bytes_in 0 122390 station_ip 94.24.83.116 122390 port 122 122390 unique_id port 122396 username musa 122396 mac 122396 bytes_out 1046809 122396 bytes_in 12953405 122396 station_ip 83.122.199.10 122396 port 176 122396 unique_id port 122396 remote_ip 10.8.0.6 122397 username aminvpn 122397 mac 122397 bytes_out 0 122397 bytes_in 0 122397 station_ip 83.123.199.155 122397 port 92 122397 unique_id port 122397 remote_ip 10.8.1.6 122398 username musa 122398 mac 122398 bytes_out 0 122398 bytes_in 0 122398 station_ip 83.122.199.10 122398 port 96 122398 unique_id port 122398 remote_ip 10.8.1.10 122403 username mansur 122403 kill_reason Another user logged on this global unique id 122403 mac 122403 bytes_out 0 122403 bytes_in 0 122403 station_ip 5.119.28.159 122403 port 184 122403 unique_id port 122403 remote_ip 10.8.0.210 122404 username hamidsalari1 122404 mac 122404 bytes_out 0 122404 bytes_in 0 122404 station_ip 113.203.106.227 122404 port 157 122404 unique_id port 122407 username mosi 122407 kill_reason Another user logged on this global unique id 122407 mac 122407 bytes_out 0 122407 bytes_in 0 122407 station_ip 151.235.76.119 122407 port 170 122407 unique_id port 122409 username zare 122409 kill_reason Another user logged on this global unique id 122409 mac 122409 bytes_out 0 122409 bytes_in 0 122409 station_ip 37.129.0.191 122409 port 157 122409 unique_id port 122412 username jafari 122412 mac 122412 bytes_out 0 122412 bytes_in 0 122412 station_ip 94.24.83.116 122412 port 122 122412 unique_id port 122415 username mansur 122415 mac 122415 bytes_out 0 122415 bytes_in 0 122415 station_ip 5.119.28.159 122415 port 184 122415 unique_id port 122420 username rezaei 122420 kill_reason Another user logged on this global unique id 122420 mac 122420 bytes_out 0 122420 bytes_in 0 122420 station_ip 5.119.189.90 122420 port 176 122420 unique_id port 122420 remote_ip 10.8.0.206 122422 username hamidsalari1 122422 mac 122422 bytes_out 30297 122422 bytes_in 33336 122422 station_ip 37.129.199.7 122422 port 169 122422 unique_id port 122422 remote_ip 10.8.0.226 122426 username farhad1 122426 mac 122426 bytes_out 2970957 122426 bytes_in 22212562 122426 station_ip 5.120.187.201 122426 port 135 122426 unique_id port 122426 remote_ip 10.8.0.26 122427 username zare 122427 kill_reason Another user logged on this global unique id 122427 mac 122427 bytes_out 0 122427 bytes_in 0 122427 station_ip 37.129.0.211 122427 port 157 122427 unique_id port 122433 username zare 122433 kill_reason Another user logged on this global unique id 122433 mac 122433 bytes_out 0 122433 bytes_in 0 122433 station_ip 37.129.0.211 122433 port 157 122433 unique_id port 122439 username naeimeh 122439 kill_reason Another user logged on this global unique id 122439 mac 122439 bytes_out 0 122439 bytes_in 0 122439 station_ip 37.129.120.79 122439 port 122 122402 port 176 122402 unique_id port 122402 remote_ip 10.8.0.6 122405 username zare 122405 mac 122405 bytes_out 0 122405 bytes_in 0 122405 station_ip 37.27.4.24 122405 port 186 122405 unique_id port 122405 remote_ip 10.8.0.18 122411 username mosi 122411 kill_reason Another user logged on this global unique id 122411 mac 122411 bytes_out 0 122411 bytes_in 0 122411 station_ip 151.235.76.119 122411 port 170 122411 unique_id port 122413 username mansur 122413 kill_reason Another user logged on this global unique id 122413 mac 122413 bytes_out 0 122413 bytes_in 0 122413 station_ip 5.119.28.159 122413 port 184 122413 unique_id port 122416 username farhad1 122416 kill_reason Another user logged on this global unique id 122416 mac 122416 bytes_out 0 122416 bytes_in 0 122416 station_ip 5.120.187.201 122416 port 135 122416 unique_id port 122418 username zare 122418 mac 122418 bytes_out 0 122418 bytes_in 0 122418 station_ip 37.27.4.24 122418 port 186 122418 unique_id port 122418 remote_ip 10.8.0.18 122419 username zare 122419 kill_reason Another user logged on this global unique id 122419 mac 122419 bytes_out 0 122419 bytes_in 0 122419 station_ip 37.129.0.211 122419 port 157 122419 unique_id port 122419 remote_ip 10.8.0.18 122421 username tahmasebi 122421 kill_reason Another user logged on this global unique id 122421 mac 122421 bytes_out 0 122421 bytes_in 0 122421 station_ip 5.119.140.230 122421 port 183 122421 unique_id port 122428 username rostami 122428 kill_reason Another user logged on this global unique id 122428 mac 122428 bytes_out 0 122428 bytes_in 0 122428 station_ip 5.119.14.15 122428 port 185 122428 unique_id port 122428 remote_ip 10.8.0.194 122431 username farhad1 122431 mac 122431 bytes_out 611794 122431 bytes_in 883566 122431 station_ip 5.120.13.64 122431 port 135 122431 unique_id port 122431 remote_ip 10.8.0.26 122434 username tahmasebi 122434 kill_reason Another user logged on this global unique id 122434 mac 122434 bytes_out 0 122434 bytes_in 0 122434 station_ip 5.119.140.230 122434 port 183 122434 unique_id port 122436 username rajaei 122436 mac 122436 bytes_out 693130 122436 bytes_in 9057778 122436 station_ip 5.134.138.10 122436 port 176 122436 unique_id port 122436 remote_ip 10.8.0.34 122438 username hamidsalari1 122438 mac 122438 bytes_out 28217 122438 bytes_in 33905 122438 station_ip 37.129.146.71 122438 port 135 122438 unique_id port 122438 remote_ip 10.8.0.226 122455 username alireza 122455 unique_id port 122455 terminate_cause Lost-Carrier 122455 bytes_out 2909054 122455 bytes_in 44799818 122455 station_ip 5.120.37.254 122455 port 15729849 122455 nas_port_type Virtual 122455 remote_ip 5.5.5.255 122457 username hashtadani3 122457 mac 122457 bytes_out 0 122457 bytes_in 0 122457 station_ip 37.129.222.111 122457 port 84 122457 unique_id port 122457 remote_ip 10.8.1.94 122459 username hashtadani3 122459 mac 122459 bytes_out 0 122459 bytes_in 0 122459 station_ip 37.129.222.111 122459 port 122 122459 unique_id port 122459 remote_ip 10.8.0.154 122461 username rajaei 122461 kill_reason Another user logged on this global unique id 122461 mac 122461 bytes_out 0 122461 bytes_in 0 122461 station_ip 5.134.138.10 122461 port 176 122461 unique_id port 122462 username hashtadani3 122462 mac 122462 bytes_out 0 122462 bytes_in 0 122462 station_ip 37.129.222.111 122462 port 122 122462 unique_id port 122462 remote_ip 10.8.0.154 122464 username rajaei 122464 mac 122464 bytes_out 0 122464 bytes_in 0 122464 station_ip 5.134.138.10 122464 port 176 122464 unique_id port 122430 port 184 122430 unique_id port 122430 remote_ip 10.8.0.226 122432 username rezaei 122432 mac 122432 bytes_out 0 122432 bytes_in 0 122432 station_ip 5.119.189.90 122432 port 176 122432 unique_id port 122435 username zare 122435 kill_reason Another user logged on this global unique id 122435 mac 122435 bytes_out 0 122435 bytes_in 0 122435 station_ip 37.129.0.211 122435 port 157 122435 unique_id port 122437 username zare 122437 kill_reason Another user logged on this global unique id 122437 mac 122437 bytes_out 0 122437 bytes_in 0 122437 station_ip 37.129.0.211 122437 port 157 122437 unique_id port 122440 username zare 122440 kill_reason Another user logged on this global unique id 122440 mac 122440 bytes_out 0 122440 bytes_in 0 122440 station_ip 37.129.0.211 122440 port 157 122440 unique_id port 122446 username rajaei 122446 kill_reason Another user logged on this global unique id 122446 mac 122446 bytes_out 0 122446 bytes_in 0 122446 station_ip 5.134.138.10 122446 port 176 122446 unique_id port 122446 remote_ip 10.8.0.34 122448 username rostami 122448 kill_reason Another user logged on this global unique id 122448 mac 122448 bytes_out 0 122448 bytes_in 0 122448 station_ip 5.119.14.15 122448 port 185 122448 unique_id port 122449 username mahdiyehalizadeh 122449 mac 122449 bytes_out 741531 122449 bytes_in 11322619 122449 station_ip 83.123.187.215 122449 port 135 122449 unique_id port 122449 remote_ip 10.8.0.82 122451 username zare 122451 mac 122451 bytes_out 0 122451 bytes_in 0 122451 station_ip 37.129.0.211 122451 port 157 122451 unique_id port 122452 username tahmasebi 122452 kill_reason Another user logged on this global unique id 122452 mac 122452 bytes_out 0 122452 bytes_in 0 122452 station_ip 5.119.140.230 122452 port 183 122452 unique_id port 122458 username hashtadani3 122458 mac 122458 bytes_out 0 122458 bytes_in 0 122458 station_ip 37.129.222.111 122458 port 122 122458 unique_id port 122458 remote_ip 10.8.0.154 122463 username hashtadani3 122463 mac 122463 bytes_out 0 122463 bytes_in 0 122463 station_ip 37.129.222.111 122463 port 122 122463 unique_id port 122463 remote_ip 10.8.0.154 122465 username rostami 122465 mac 122465 bytes_out 0 122465 bytes_in 0 122465 station_ip 5.119.14.15 122465 port 185 122465 unique_id port 122468 username hamidsalari 122468 kill_reason Another user logged on this global unique id 122468 mac 122468 bytes_out 0 122468 bytes_in 0 122468 station_ip 5.120.180.242 122468 port 94 122468 unique_id port 122470 username farhad1 122470 kill_reason Another user logged on this global unique id 122470 mac 122470 bytes_out 0 122470 bytes_in 0 122470 station_ip 5.119.192.40 122470 port 169 122470 unique_id port 122470 remote_ip 10.8.0.26 122472 username hashtadani3 122472 mac 122472 bytes_out 0 122472 bytes_in 0 122472 station_ip 37.129.222.111 122472 port 122 122472 unique_id port 122472 remote_ip 10.8.0.154 122480 username tahmasebi 122480 kill_reason Another user logged on this global unique id 122480 mac 122480 bytes_out 0 122480 bytes_in 0 122480 station_ip 5.119.140.230 122480 port 183 122480 unique_id port 122481 username farhad1 122481 kill_reason Another user logged on this global unique id 122481 mac 122481 bytes_out 0 122481 bytes_in 0 122481 station_ip 5.119.192.40 122481 port 169 122481 unique_id port 122485 username rostami 122485 mac 122485 bytes_out 0 122485 bytes_in 0 122485 station_ip 5.119.14.15 122485 port 122 122485 unique_id port 122491 username hashtadani3 122491 mac 122491 bytes_out 0 122491 bytes_in 0 122439 unique_id port 122439 remote_ip 10.8.0.78 122441 username mahdiyehalizadeh 122441 mac 122441 bytes_out 0 122441 bytes_in 0 122441 station_ip 83.123.187.215 122441 port 184 122441 unique_id port 122441 remote_ip 10.8.0.82 122442 username hamidsalari1 122442 mac 122442 bytes_out 0 122442 bytes_in 0 122442 station_ip 37.129.146.71 122442 port 84 122442 unique_id port 122442 remote_ip 10.8.1.170 122443 username bcboard 122443 unique_id port 122443 terminate_cause User-Request 122443 bytes_out 401912 122443 bytes_in 6622729 122443 station_ip 113.203.42.155 122443 port 15729855 122443 nas_port_type Virtual 122443 remote_ip 5.5.5.43 122444 username tahmasebi 122444 kill_reason Another user logged on this global unique id 122444 mac 122444 bytes_out 0 122444 bytes_in 0 122444 station_ip 5.119.140.230 122444 port 183 122444 unique_id port 122445 username bcboard 122445 unique_id port 122445 terminate_cause User-Request 122445 bytes_out 13001 122445 bytes_in 23167 122445 station_ip 113.203.42.155 122445 port 15729856 122445 nas_port_type Virtual 122445 remote_ip 5.5.5.254 122447 username zare 122447 kill_reason Another user logged on this global unique id 122447 mac 122447 bytes_out 0 122447 bytes_in 0 122447 station_ip 37.129.0.211 122447 port 157 122447 unique_id port 122450 username naeimeh 122450 mac 122450 bytes_out 0 122450 bytes_in 0 122450 station_ip 37.129.120.79 122450 port 122 122450 unique_id port 122453 username hashtadani3 122453 mac 122453 bytes_out 0 59950 username arezoo 59950 kill_reason Maximum check online fails reached 59950 mac 5.115.76.212:22377: Unknown host 59950 bytes_out 0 59950 bytes_in 0 59950 station_ip 5.115.76.212:22377 59950 port 1017 59950 unique_id port 122453 bytes_in 0 122453 station_ip 37.129.222.111 122453 port 122 122453 unique_id port 122453 remote_ip 10.8.0.154 122454 username hashtadani3 122454 mac 122454 bytes_out 0 122454 bytes_in 0 122454 station_ip 37.129.222.111 122454 port 122 122454 unique_id port 122454 remote_ip 10.8.0.154 122456 username hashtadani3 122456 mac 122456 bytes_out 752809 122456 bytes_in 6118535 122456 station_ip 37.129.222.111 122456 port 122 122456 unique_id port 122456 remote_ip 10.8.0.154 122460 username rostami 122460 kill_reason Another user logged on this global unique id 122460 mac 122460 bytes_out 0 122460 bytes_in 0 122460 station_ip 5.119.14.15 122460 port 185 122460 unique_id port 122466 username hashtadani3 122466 mac 122466 bytes_out 0 122466 bytes_in 0 122466 station_ip 37.129.222.111 122466 port 135 122466 unique_id port 122466 remote_ip 10.8.0.154 122467 username hashtadani3 122467 mac 122467 bytes_out 0 122467 bytes_in 0 122467 station_ip 37.129.222.111 122467 port 135 122467 unique_id port 122467 remote_ip 10.8.0.154 122471 username rostami 122471 mac 122471 bytes_out 0 122471 bytes_in 0 122471 station_ip 5.119.14.15 122471 port 122 122471 unique_id port 122471 remote_ip 10.8.0.194 122475 username hashtadani3 122475 mac 122475 bytes_out 0 122475 bytes_in 0 122475 station_ip 37.129.222.111 122475 port 157 122475 unique_id port 122475 remote_ip 10.8.0.154 122476 username milan 122476 kill_reason Another user logged on this global unique id 122476 mac 122476 bytes_out 0 122476 bytes_in 0 122476 station_ip 5.119.222.17 122476 port 135 122476 unique_id port 122476 remote_ip 10.8.0.218 122484 username rostami 122484 kill_reason Another user logged on this global unique id 122484 mac 122484 bytes_out 0 122484 bytes_in 0 122484 station_ip 5.119.14.15 122484 port 122 122484 unique_id port 122469 username hashtadani3 122469 mac 122469 bytes_out 0 122469 bytes_in 0 122469 station_ip 37.129.222.111 122469 port 135 122469 unique_id port 122469 remote_ip 10.8.0.154 122473 username hashtadani3 122473 mac 122473 bytes_out 0 122473 bytes_in 0 122473 station_ip 37.129.222.111 122473 port 157 122473 unique_id port 122473 remote_ip 10.8.0.154 122474 username tahmasebi 122474 kill_reason Another user logged on this global unique id 122474 mac 122474 bytes_out 0 122474 bytes_in 0 122474 station_ip 5.119.140.230 122474 port 183 122474 unique_id port 122477 username hashtadani3 122477 mac 122477 bytes_out 0 122477 bytes_in 0 122477 station_ip 37.129.222.111 59989 username arezoo 59989 kill_reason Maximum check online fails reached 59989 mac 5.237.74.79:49342: Unknown host 59989 bytes_out 0 59989 bytes_in 0 59989 station_ip 5.237.74.79:49342 59989 port 1017 59989 unique_id port 122477 port 157 122477 unique_id port 122477 remote_ip 10.8.0.154 122478 username hashtadani3 122478 kill_reason Maximum check online fails reached 122478 mac 122478 bytes_out 0 122478 bytes_in 0 59997 username arezoo 59997 kill_reason Maximum check online fails reached 59997 mac 5.237.74.79:50029: Unknown host 59997 bytes_out 0 59997 bytes_in 0 59997 station_ip 5.237.74.79:50029 59997 port 1017 59997 unique_id port 122478 station_ip 37.129.222.111 122478 port 84 122478 unique_id port 122479 username hashtadani3 122479 mac 122479 bytes_out 0 122479 bytes_in 0 122479 station_ip 37.129.222.111 122479 port 157 122479 unique_id port 122479 remote_ip 10.8.0.154 122482 username hashtadani3 122482 mac 122482 bytes_out 0 122482 bytes_in 0 122482 station_ip 37.129.222.111 122482 port 157 122482 unique_id port 122482 remote_ip 10.8.0.154 122483 username hashtadani3 122483 mac 122483 bytes_out 2005 122483 bytes_in 4812 122483 station_ip 37.129.222.111 122483 port 157 122483 unique_id port 122483 remote_ip 10.8.0.154 122488 username hashtadani3 122488 mac 122488 bytes_out 0 122488 bytes_in 0 122488 station_ip 37.129.222.111 122488 port 122 122488 unique_id port 122488 remote_ip 10.8.0.154 122490 username hashtadani3 122490 mac 122490 bytes_out 0 122490 bytes_in 0 122490 station_ip 37.129.222.111 122490 port 122 122490 unique_id port 122490 remote_ip 10.8.0.154 122492 username tahmasebi 122492 kill_reason Another user logged on this global unique id 122492 mac 122492 bytes_out 0 122492 bytes_in 0 122492 station_ip 5.119.140.230 122492 port 183 122492 unique_id port 122494 username hashtadani3 122494 mac 122494 bytes_out 0 122494 bytes_in 0 122494 station_ip 37.129.222.111 122494 port 157 122494 unique_id port 122494 remote_ip 10.8.0.154 122497 username milan 122497 mac 122497 bytes_out 0 122497 bytes_in 0 122497 station_ip 5.119.222.17 122497 port 135 122497 unique_id port 122502 username hashtadani3 122502 mac 122502 bytes_out 0 122502 bytes_in 0 122502 station_ip 37.129.222.111 122502 port 122 122502 unique_id port 122502 remote_ip 10.8.0.154 122504 username hashtadani3 122504 mac 122504 bytes_out 0 122504 bytes_in 0 122504 station_ip 37.129.222.111 122504 port 157 122504 unique_id port 122504 remote_ip 10.8.0.154 122509 username hashtadani3 122509 mac 122509 bytes_out 0 122509 bytes_in 0 122509 station_ip 37.129.222.111 122509 port 96 122509 unique_id port 122509 remote_ip 10.8.1.94 122510 username hashtadani3 122510 mac 122510 bytes_out 0 122510 bytes_in 0 122510 station_ip 37.129.222.111 122510 port 157 122510 unique_id port 122510 remote_ip 10.8.0.154 122484 remote_ip 10.8.0.194 122486 username hashtadani3 122486 mac 122486 bytes_out 0 122486 bytes_in 0 122486 station_ip 37.129.222.111 122486 port 122 122486 unique_id port 122486 remote_ip 10.8.0.154 122487 username tahmasebi 122487 kill_reason Another user logged on this global unique id 122487 mac 122487 bytes_out 0 122487 bytes_in 0 122487 station_ip 5.119.140.230 122487 port 183 122487 unique_id port 122489 username farhad1 122489 mac 122489 bytes_out 0 122489 bytes_in 0 122489 station_ip 5.119.192.40 122489 port 169 122489 unique_id port 122493 username mosi 122493 kill_reason Another user logged on this global unique id 122493 mac 122493 bytes_out 0 122493 bytes_in 0 122493 station_ip 151.235.76.119 122493 port 170 122493 unique_id port 122495 username rostami 122495 kill_reason Maximum check online fails reached 122495 mac 122495 bytes_out 0 122495 bytes_in 0 122495 station_ip 5.119.14.15 122495 port 122 122495 unique_id port 122495 remote_ip 10.8.0.194 122503 username hashtadani3 122503 mac 122503 bytes_out 0 122503 bytes_in 0 122503 station_ip 37.129.222.111 122503 port 122 122503 unique_id port 122503 remote_ip 10.8.0.154 122505 username hashtadani3 122505 mac 122505 bytes_out 0 122505 bytes_in 0 122505 station_ip 37.129.222.111 122505 port 157 122505 unique_id port 122505 remote_ip 10.8.0.154 122506 username hashtadani3 122506 mac 122506 bytes_out 0 122506 bytes_in 0 122506 station_ip 37.129.222.111 122506 port 96 122506 unique_id port 122506 remote_ip 10.8.1.94 122507 username hashtadani3 122507 mac 122507 bytes_out 0 122507 bytes_in 0 122507 station_ip 37.129.222.111 122507 port 96 122507 unique_id port 122507 remote_ip 10.8.1.94 122511 username hashtadani3 122511 mac 122511 bytes_out 0 122511 bytes_in 0 122511 station_ip 37.129.222.111 122511 port 157 122511 unique_id port 122511 remote_ip 10.8.0.154 122513 username hashtadani3 122513 mac 122513 bytes_out 0 122513 bytes_in 0 122513 station_ip 37.129.222.111 122513 port 157 122513 unique_id port 122513 remote_ip 10.8.0.154 122514 username hashtadani3 122514 mac 122514 bytes_out 0 122514 bytes_in 0 122514 station_ip 37.129.222.111 122514 port 96 122514 unique_id port 122514 remote_ip 10.8.1.94 122516 username tahmasebi 122516 kill_reason Another user logged on this global unique id 122516 mac 122516 bytes_out 0 122516 bytes_in 0 122516 station_ip 5.120.156.5 122516 port 92 122516 unique_id port 122516 remote_ip 10.8.1.90 122517 username hashtadani3 122517 mac 122517 bytes_out 0 122517 bytes_in 0 122517 station_ip 37.129.222.111 122517 port 157 122517 unique_id port 122517 remote_ip 10.8.0.154 122519 username rostami 122519 mac 122519 bytes_out 0 122519 bytes_in 0 122519 station_ip 5.120.119.183 122519 port 122 122519 unique_id port 122519 remote_ip 10.8.0.194 122521 username hashtadani3 122521 mac 122521 bytes_out 0 122521 bytes_in 0 122521 station_ip 37.129.222.111 122521 port 122 122521 unique_id port 122521 remote_ip 10.8.0.154 122523 username hashtadani3 122523 mac 122523 bytes_out 0 122523 bytes_in 0 122523 station_ip 37.129.222.111 122523 port 122 122523 unique_id port 122523 remote_ip 10.8.0.154 122526 username hashtadani3 122526 mac 122526 bytes_out 0 122526 bytes_in 0 122526 station_ip 37.129.222.111 122526 port 157 122526 unique_id port 122526 remote_ip 10.8.0.154 122534 username hashtadani3 122534 mac 122534 bytes_out 0 122534 bytes_in 0 122534 station_ip 37.129.222.111 122534 port 157 122491 station_ip 37.129.222.111 122491 port 122 122491 unique_id port 122491 remote_ip 10.8.0.154 122496 username hamidsalari 122496 mac 122496 bytes_out 0 122496 bytes_in 0 122496 station_ip 5.120.180.242 122496 port 94 122496 unique_id port 122498 username tahmasebi 122498 mac 122498 bytes_out 0 122498 bytes_in 0 122498 station_ip 5.119.140.230 122498 port 183 122498 unique_id port 122499 username hashtadani3 122499 mac 122499 bytes_out 0 122499 bytes_in 0 122499 station_ip 37.129.222.111 122499 port 122 122499 unique_id port 122499 remote_ip 10.8.0.154 122500 username mosi 122500 kill_reason Another user logged on this global unique id 122500 mac 122500 bytes_out 0 122500 bytes_in 0 122500 station_ip 151.235.76.119 122500 port 170 122500 unique_id port 122501 username hashtadani3 122501 mac 122501 bytes_out 0 122501 bytes_in 0 122501 station_ip 37.129.222.111 122501 port 122 122501 unique_id port 122501 remote_ip 10.8.0.154 122508 username hashtadani3 122508 mac 122508 bytes_out 0 122508 bytes_in 0 122508 station_ip 37.129.222.111 122508 port 96 122508 unique_id port 122508 remote_ip 10.8.1.94 122515 username hashtadani3 122515 mac 122515 bytes_out 0 122515 bytes_in 0 122515 station_ip 37.129.222.111 122515 port 157 122515 unique_id port 122515 remote_ip 10.8.0.154 122520 username hashtadani3 122520 mac 122520 bytes_out 0 122520 bytes_in 0 122520 station_ip 37.129.222.111 122520 port 96 122520 unique_id port 122520 remote_ip 10.8.1.94 122524 username hashtadani3 122524 mac 122524 bytes_out 0 122524 bytes_in 0 122524 station_ip 37.129.222.111 122524 port 157 122524 unique_id port 122524 remote_ip 10.8.0.154 122527 username hashtadani3 122527 mac 122527 bytes_out 0 122527 bytes_in 0 122527 station_ip 37.129.222.111 122527 port 157 122527 unique_id port 122527 remote_ip 10.8.0.154 122528 username rostami 122528 mac 122528 bytes_out 2131502 122528 bytes_in 17725481 122528 station_ip 5.120.119.183 122528 port 122 122528 unique_id port 122528 remote_ip 10.8.0.194 122529 username hashtadani3 122529 mac 122529 bytes_out 0 122529 bytes_in 0 122529 station_ip 37.129.222.111 122529 port 122 122529 unique_id port 122529 remote_ip 10.8.0.154 122532 username hashtadani3 122532 mac 122532 bytes_out 0 122532 bytes_in 0 122532 station_ip 37.129.222.111 122532 port 157 122532 unique_id port 122532 remote_ip 10.8.0.154 122536 username milan 122536 mac 122536 bytes_out 0 122536 bytes_in 0 122536 station_ip 5.120.179.59 122536 port 94 122536 unique_id port 122537 username hashtadani3 122537 mac 122537 bytes_out 0 122537 bytes_in 0 122537 station_ip 37.129.222.111 122537 port 157 122537 unique_id port 122537 remote_ip 10.8.0.154 122538 username hashtadani3 122538 mac 122538 bytes_out 0 122538 bytes_in 0 122538 station_ip 37.129.222.111 122538 port 157 122538 unique_id port 122538 remote_ip 10.8.0.154 122539 username hashtadani3 122539 mac 122539 bytes_out 0 122539 bytes_in 0 122539 station_ip 37.129.222.111 122539 port 94 122539 unique_id port 122539 remote_ip 10.8.1.94 122547 username hashtadani3 122547 mac 122547 bytes_out 0 122547 bytes_in 0 122547 station_ip 37.129.222.111 122547 port 157 122547 unique_id port 122547 remote_ip 10.8.0.154 122548 username hashtadani3 122548 mac 122548 bytes_out 0 122548 bytes_in 0 122548 station_ip 37.129.222.111 122548 port 94 122548 unique_id port 122548 remote_ip 10.8.1.94 122549 username hashtadani3 122512 username hashtadani3 122512 mac 122512 bytes_out 0 122512 bytes_in 0 122512 station_ip 37.129.222.111 122512 port 157 122512 unique_id port 122512 remote_ip 10.8.0.154 122518 username hashtadani3 122518 mac 122518 bytes_out 0 122518 bytes_in 0 122518 station_ip 37.129.222.111 122518 port 157 122518 unique_id port 122518 remote_ip 10.8.0.154 122522 username hashtadani3 122522 mac 122522 bytes_out 0 122522 bytes_in 0 122522 station_ip 37.129.222.111 122522 port 96 122522 unique_id port 122522 remote_ip 10.8.1.94 122525 username hashtadani3 122525 mac 122525 bytes_out 0 122525 bytes_in 0 122525 station_ip 37.129.222.111 122525 port 157 122525 unique_id port 122525 remote_ip 10.8.0.154 122530 username hashtadani3 122530 mac 122530 bytes_out 0 122530 bytes_in 0 122530 station_ip 37.129.222.111 122530 port 122 122530 unique_id port 122530 remote_ip 10.8.0.154 122531 username sabaghnezhad 122531 mac 122531 bytes_out 0 122531 bytes_in 0 122531 station_ip 83.122.230.70 122531 port 182 122531 unique_id port 122531 remote_ip 10.8.0.186 122533 username milan 122533 kill_reason Another user logged on this global unique id 122533 mac 122533 bytes_out 0 122533 bytes_in 0 122533 station_ip 5.120.179.59 122533 port 94 122533 unique_id port 122533 remote_ip 10.8.1.178 122535 username hashtadani3 122535 mac 122535 bytes_out 0 122535 bytes_in 0 122535 station_ip 37.129.222.111 122535 port 157 122535 unique_id port 122535 remote_ip 10.8.0.154 122540 username hashtadani3 122540 mac 122540 bytes_out 0 122540 bytes_in 0 122540 station_ip 37.129.222.111 122540 port 157 122540 unique_id port 122540 remote_ip 10.8.0.154 122541 username hashtadani3 122541 mac 122541 bytes_out 0 122541 bytes_in 0 122541 station_ip 37.129.222.111 122541 port 94 122541 unique_id port 122541 remote_ip 10.8.1.94 122543 username hashtadani3 122543 mac 122543 bytes_out 0 122543 bytes_in 0 122543 station_ip 37.129.222.111 122543 port 94 122543 unique_id port 122543 remote_ip 10.8.1.94 122544 username hashtadani3 122544 mac 122544 bytes_out 0 122544 bytes_in 0 122544 station_ip 37.129.222.111 122544 port 94 122544 unique_id port 122544 remote_ip 10.8.1.94 122553 username hashtadani3 122553 mac 122553 bytes_out 0 122553 bytes_in 0 60023 username arezoo 60023 kill_reason Maximum check online fails reached 60023 mac 5.237.75.176:49839: Unknown host 60023 bytes_out 0 60023 bytes_in 0 60023 station_ip 5.237.75.176:49839 60023 port 1017 60023 unique_id port 122553 station_ip 37.129.222.111 122553 port 157 122553 unique_id port 122553 remote_ip 10.8.0.154 122554 username hashtadani3 122554 mac 122554 bytes_out 0 122554 bytes_in 0 122554 station_ip 37.129.222.111 122554 port 94 122554 unique_id port 122554 remote_ip 10.8.1.94 122555 username hashtadani3 122555 mac 122555 bytes_out 0 122555 bytes_in 0 122555 station_ip 37.129.222.111 122555 port 157 122555 unique_id port 122555 remote_ip 10.8.0.154 122559 username hashtadani3 122559 mac 122559 bytes_out 0 122559 bytes_in 0 122559 station_ip 37.129.222.111 122559 port 157 122559 unique_id port 122559 remote_ip 10.8.0.154 122561 username hashtadani3 122561 mac 122561 bytes_out 0 122561 bytes_in 0 122561 station_ip 37.129.222.111 122561 port 157 122561 unique_id port 122561 remote_ip 10.8.0.154 122565 username hashtadani3 122565 mac 122565 bytes_out 0 122565 bytes_in 0 122565 station_ip 37.129.222.111 122565 port 157 122565 unique_id port 122565 remote_ip 10.8.0.154 122534 unique_id port 122534 remote_ip 10.8.0.154 122542 username hashtadani3 122542 mac 122542 bytes_out 0 122542 bytes_in 0 122542 station_ip 37.129.222.111 122542 port 157 122542 unique_id port 122542 remote_ip 10.8.0.154 122545 username hashtadani3 122545 mac 122545 bytes_out 0 122545 bytes_in 0 122545 station_ip 37.129.222.111 122545 port 94 122545 unique_id port 122545 remote_ip 10.8.1.94 122546 username hashtadani3 122546 mac 60038 username arezoo 60038 kill_reason Maximum check online fails reached 60038 mac 5.237.74.250:50008: Unknown host 60038 bytes_out 0 60038 bytes_in 0 60038 station_ip 5.237.74.250:50008 60038 port 1017 60038 unique_id port 122546 bytes_out 0 122546 bytes_in 0 122546 station_ip 37.129.222.111 122546 port 157 122546 unique_id port 122546 remote_ip 10.8.0.154 122550 username hashtadani3 122550 mac 122550 bytes_out 0 122550 bytes_in 0 122550 station_ip 37.129.222.111 122550 port 94 122550 unique_id port 122550 remote_ip 10.8.1.94 122551 username hashtadani3 122551 mac 122551 bytes_out 0 122551 bytes_in 0 122551 station_ip 37.129.222.111 122551 port 157 122551 unique_id port 122551 remote_ip 10.8.0.154 122556 username hashtadani3 122556 mac 122556 bytes_out 0 122556 bytes_in 0 122556 station_ip 37.129.222.111 122556 port 157 122556 unique_id port 122556 remote_ip 10.8.0.154 122560 username hashtadani3 122560 mac 122560 bytes_out 0 122560 bytes_in 0 122560 station_ip 37.129.222.111 122560 port 157 122560 unique_id port 122560 remote_ip 10.8.0.154 122562 username hashtadani3 122562 mac 122562 bytes_out 0 122562 bytes_in 0 122562 station_ip 37.129.222.111 122562 port 94 122562 unique_id port 122562 remote_ip 10.8.1.94 122563 username hashtadani3 122563 mac 122563 bytes_out 0 122563 bytes_in 0 122563 station_ip 37.129.222.111 122563 port 157 122563 unique_id port 122563 remote_ip 10.8.0.154 122567 username hashtadani3 122567 mac 122567 bytes_out 0 122567 bytes_in 0 122567 station_ip 37.129.222.111 122567 port 157 122567 unique_id port 122567 remote_ip 10.8.0.154 122568 username hashtadani3 122568 mac 122568 bytes_out 0 122568 bytes_in 0 122568 station_ip 37.129.222.111 122568 port 157 122568 unique_id port 122568 remote_ip 10.8.0.154 122571 username hashtadani3 122571 mac 122571 bytes_out 0 122571 bytes_in 0 122571 station_ip 37.129.222.111 122571 port 157 122571 unique_id port 122571 remote_ip 10.8.0.154 122573 username hashtadani3 122573 mac 122573 bytes_out 0 122573 bytes_in 0 122573 station_ip 37.129.222.111 122573 port 157 122573 unique_id port 122573 remote_ip 10.8.0.154 122576 username hashtadani3 122576 mac 122576 bytes_out 0 122576 bytes_in 0 122576 station_ip 37.129.222.111 122576 port 157 122576 unique_id port 122576 remote_ip 10.8.0.154 122577 username hashtadani3 122577 mac 60068 username arezoo 60068 kill_reason Maximum check online fails reached 60068 mac 5.237.64.166:49812: Unknown host 60068 bytes_out 0 60068 bytes_in 0 60068 station_ip 5.237.64.166:49812 60068 port 1017 60068 unique_id port 122577 bytes_out 0 122577 bytes_in 0 122577 station_ip 37.129.222.111 122577 port 94 122577 unique_id port 122577 remote_ip 10.8.1.94 122581 username hashtadani3 122581 mac 122581 bytes_out 0 122581 bytes_in 0 122581 station_ip 37.129.222.111 122581 port 94 122581 unique_id port 122581 remote_ip 10.8.1.94 122583 username hashtadani3 122583 mac 122583 bytes_out 0 122583 bytes_in 0 122583 station_ip 37.129.222.111 122583 port 94 122583 unique_id port 122549 mac 122549 bytes_out 0 122549 bytes_in 0 122549 station_ip 37.129.222.111 122549 port 157 122549 unique_id port 122549 remote_ip 10.8.0.154 122552 username hashtadani3 122552 mac 122552 bytes_out 0 122552 bytes_in 0 122552 station_ip 37.129.222.111 122552 port 157 122552 unique_id port 122552 remote_ip 10.8.0.154 122557 username hashtadani3 122557 mac 122557 bytes_out 0 122557 bytes_in 0 122557 station_ip 37.129.222.111 122557 port 157 122557 unique_id port 122557 remote_ip 10.8.0.154 122558 username hashtadani3 122558 mac 122558 bytes_out 0 122558 bytes_in 0 122558 station_ip 37.129.222.111 122558 port 94 122558 unique_id port 122558 remote_ip 10.8.1.94 122564 username hashtadani3 122564 mac 122564 bytes_out 0 122564 bytes_in 0 122564 station_ip 37.129.222.111 122564 port 157 122564 unique_id port 122564 remote_ip 10.8.0.154 122569 username hashtadani3 122569 mac 122569 bytes_out 0 122569 bytes_in 0 122569 station_ip 37.129.222.111 122569 port 94 122569 unique_id port 122569 remote_ip 10.8.1.94 122570 username hashtadani3 122570 mac 122570 bytes_out 0 122570 bytes_in 0 122570 station_ip 37.129.222.111 122570 port 157 122570 unique_id port 122570 remote_ip 10.8.0.154 122572 username hashtadani3 122572 mac 122572 bytes_out 0 122572 bytes_in 0 122572 station_ip 37.129.222.111 122572 port 94 122572 unique_id port 122572 remote_ip 10.8.1.94 122574 username hashtadani3 122574 mac 122574 bytes_out 0 122574 bytes_in 0 122574 station_ip 37.129.222.111 122574 port 157 122574 unique_id port 122574 remote_ip 10.8.0.154 122575 username hashtadani3 122575 mac 122575 bytes_out 0 122575 bytes_in 0 122575 station_ip 37.129.222.111 122575 port 94 122575 unique_id port 122575 remote_ip 10.8.1.94 122579 username hashtadani3 122579 mac 122579 bytes_out 0 122579 bytes_in 0 122579 station_ip 37.129.222.111 122579 port 157 122579 unique_id port 122579 remote_ip 10.8.0.154 122580 username hashtadani3 122580 mac 122580 bytes_out 0 122580 bytes_in 0 122580 station_ip 37.129.222.111 122580 port 157 122580 unique_id port 122580 remote_ip 10.8.0.154 122582 username hashtadani3 122582 mac 122582 bytes_out 0 122582 bytes_in 0 122582 station_ip 37.129.222.111 122582 port 157 122582 unique_id port 122582 remote_ip 10.8.0.154 122587 username hashtadani3 122587 mac 122587 bytes_out 0 122587 bytes_in 0 122587 station_ip 37.129.222.111 122587 port 157 122587 unique_id port 122587 remote_ip 10.8.0.154 122596 username hashtadani3 122596 mac 122596 bytes_out 0 122596 bytes_in 0 122596 station_ip 37.129.222.111 122596 port 169 122596 unique_id port 122596 remote_ip 10.8.0.154 122597 username hashtadani3 122597 mac 122597 bytes_out 0 122597 bytes_in 0 122597 station_ip 37.129.222.111 122597 port 169 122597 unique_id port 122597 remote_ip 10.8.0.154 122602 username hashtadani3 122602 mac 122602 bytes_out 0 122602 bytes_in 0 122602 station_ip 37.129.222.111 122602 port 169 122602 unique_id port 122602 remote_ip 10.8.0.154 122604 username hashtadani3 122604 mac 122604 bytes_out 0 122604 bytes_in 0 122604 station_ip 37.129.222.111 122604 port 94 122604 unique_id port 122604 remote_ip 10.8.1.94 122609 username hashtadani3 122609 mac 122609 bytes_out 0 122609 bytes_in 0 122609 station_ip 37.129.222.111 122609 port 169 122609 unique_id port 122609 remote_ip 10.8.0.154 122612 username hamidsalari1 122612 mac 122612 bytes_out 881141 122566 username hashtadani3 122566 mac 122566 bytes_out 0 122566 bytes_in 0 122566 station_ip 37.129.222.111 122566 port 157 122566 unique_id port 122566 remote_ip 10.8.0.154 122578 username hashtadani3 122578 mac 122578 bytes_out 0 122578 bytes_in 0 122578 station_ip 37.129.222.111 122578 port 157 122578 unique_id port 122578 remote_ip 10.8.0.154 122586 username hashtadani3 122586 mac 122586 bytes_out 0 122586 bytes_in 0 122586 station_ip 37.129.222.111 122586 port 157 122586 unique_id port 122586 remote_ip 10.8.0.154 122591 username hashtadani3 122591 mac 122591 bytes_out 0 122591 bytes_in 0 122591 station_ip 37.129.222.111 122591 port 157 122591 unique_id port 122591 remote_ip 10.8.0.154 122593 username hashtadani3 122593 mac 122593 bytes_out 0 122593 bytes_in 0 122593 station_ip 37.129.222.111 122593 port 157 122593 unique_id port 122593 remote_ip 10.8.0.154 122595 username hashtadani3 122595 mac 122595 bytes_out 0 122595 bytes_in 0 122595 station_ip 37.129.222.111 122595 port 169 122595 unique_id port 122595 remote_ip 10.8.0.154 122600 username hashtadani3 122600 mac 122600 bytes_out 0 122600 bytes_in 0 122600 station_ip 37.129.222.111 122600 port 169 122600 unique_id port 122600 remote_ip 10.8.0.154 122601 username hashtadani3 122601 mac 122601 bytes_out 0 122601 bytes_in 0 122601 station_ip 37.129.222.111 122601 port 94 122601 unique_id port 122601 remote_ip 10.8.1.94 122607 username hashtadani3 122607 mac 122607 bytes_out 0 122607 bytes_in 0 122607 station_ip 37.129.222.111 122607 port 169 122607 unique_id port 122607 remote_ip 10.8.0.154 122608 username hashtadani3 122608 mac 122608 bytes_out 0 122608 bytes_in 0 122608 station_ip 37.129.222.111 122608 port 169 122608 unique_id port 122608 remote_ip 10.8.0.154 122615 username hashtadani3 122615 mac 122615 bytes_out 0 122615 bytes_in 0 122615 station_ip 37.129.222.111 122615 port 157 122615 unique_id port 122615 remote_ip 10.8.0.154 122618 username hashtadani3 122618 mac 122618 bytes_out 0 122618 bytes_in 0 122618 station_ip 37.129.222.111 122618 port 157 122618 unique_id port 122618 remote_ip 10.8.0.154 122620 username hashtadani3 122620 mac 122620 bytes_out 0 122620 bytes_in 0 122620 station_ip 37.129.222.111 122620 port 157 122620 unique_id port 122620 remote_ip 10.8.0.154 122621 username hashtadani3 122621 mac 122621 bytes_out 0 122621 bytes_in 0 122621 station_ip 37.129.222.111 122621 port 157 122621 unique_id port 122621 remote_ip 10.8.0.154 122622 username hashtadani3 122622 mac 122622 bytes_out 0 122622 bytes_in 0 122622 station_ip 37.129.222.111 122622 port 96 122622 unique_id port 122622 remote_ip 10.8.1.94 122623 username hashtadani3 122623 mac 122623 bytes_out 0 122623 bytes_in 0 122623 station_ip 37.129.222.111 122623 port 157 122623 unique_id port 122623 remote_ip 10.8.0.154 122628 username hashtadani3 122628 mac 122628 bytes_out 0 122628 bytes_in 0 122628 station_ip 37.129.222.111 122628 port 96 122628 unique_id port 122628 remote_ip 10.8.1.94 122633 username hashtadani3 122633 mac 122633 bytes_out 0 122633 bytes_in 0 122633 station_ip 37.129.222.111 122633 port 157 122633 unique_id port 122633 remote_ip 10.8.0.154 122638 username hashtadani3 122638 mac 122638 bytes_out 0 122638 bytes_in 0 122638 station_ip 37.129.222.111 122638 port 157 122638 unique_id port 122638 remote_ip 10.8.0.154 122640 username hashtadani3 122640 mac 122583 remote_ip 10.8.1.94 122584 username hashtadani3 122584 mac 122584 bytes_out 0 122584 bytes_in 0 122584 station_ip 37.129.222.111 122584 port 157 122584 unique_id port 122584 remote_ip 10.8.0.154 122585 username hashtadani3 122585 mac 122585 bytes_out 0 122585 bytes_in 0 122585 station_ip 37.129.222.111 122585 port 157 122585 unique_id port 122585 remote_ip 10.8.0.154 122588 username hashtadani3 122588 mac 122588 bytes_out 0 122588 bytes_in 0 122588 station_ip 37.129.222.111 122588 port 157 122588 unique_id port 122588 remote_ip 10.8.0.154 122589 username hashtadani3 122589 mac 122589 bytes_out 0 122589 bytes_in 0 122589 station_ip 37.129.222.111 122589 port 157 122589 unique_id port 122589 remote_ip 10.8.0.154 122590 username hashtadani3 122590 mac 122590 bytes_out 0 122590 bytes_in 0 122590 station_ip 37.129.222.111 60088 username arezoo 60088 kill_reason Maximum check online fails reached 60088 mac 5.237.64.166:50614: Unknown host 60088 bytes_out 0 60088 bytes_in 0 60088 station_ip 5.237.64.166:50614 60088 port 1017 60088 unique_id port 122590 port 157 122590 unique_id port 122590 remote_ip 10.8.0.154 122592 username hashtadani3 122592 mac 122592 bytes_out 0 122592 bytes_in 0 122592 station_ip 37.129.222.111 122592 port 94 122592 unique_id port 122592 remote_ip 10.8.1.94 122594 username mehdizare 122594 mac 122594 bytes_out 1766442 122594 bytes_in 9322117 122594 station_ip 5.120.59.106 122594 port 99 122594 unique_id port 122594 remote_ip 10.8.1.42 122598 username hashtadani3 122598 mac 122598 bytes_out 0 122598 bytes_in 0 122598 station_ip 37.129.222.111 122598 port 94 122598 unique_id port 122598 remote_ip 10.8.1.94 122599 username hashtadani3 122599 mac 122599 bytes_out 0 122599 bytes_in 0 122599 station_ip 37.129.222.111 122599 port 169 122599 unique_id port 122599 remote_ip 10.8.0.154 122603 username hashtadani3 122603 mac 122603 bytes_out 0 122603 bytes_in 0 122603 station_ip 37.129.222.111 122603 port 169 122603 unique_id port 122603 remote_ip 10.8.0.154 122605 username hashtadani3 122605 mac 122605 bytes_out 0 122605 bytes_in 0 122605 station_ip 37.129.222.111 122605 port 169 122605 unique_id port 122605 remote_ip 10.8.0.154 122606 username hashtadani3 122606 mac 122606 bytes_out 0 122606 bytes_in 0 122606 station_ip 37.129.222.111 122606 port 94 122606 unique_id port 122606 remote_ip 10.8.1.94 122610 username hashtadani3 122610 mac 122610 bytes_out 0 122610 bytes_in 0 122610 station_ip 37.129.222.111 122610 port 169 122610 unique_id port 122610 remote_ip 10.8.0.154 122611 username hashtadani3 122611 mac 122611 bytes_out 0 122611 bytes_in 0 122611 station_ip 37.129.222.111 122611 port 94 122611 unique_id port 122611 remote_ip 10.8.1.94 122613 username hashtadani3 122613 mac 122613 bytes_out 0 122613 bytes_in 0 122613 station_ip 37.129.222.111 122613 port 157 122613 unique_id port 122613 remote_ip 10.8.0.154 122614 username hashtadani3 122614 mac 122614 bytes_out 0 122614 bytes_in 0 122614 station_ip 37.129.222.111 122614 port 94 122614 unique_id port 122614 remote_ip 10.8.1.94 122619 username hashtadani3 122619 mac 122619 bytes_out 0 122619 bytes_in 0 122619 station_ip 37.129.222.111 122619 port 157 122619 unique_id port 122619 remote_ip 10.8.0.154 122626 username hashtadani3 122626 mac 122626 bytes_out 0 122626 bytes_in 0 122626 station_ip 37.129.222.111 122626 port 157 122626 unique_id port 122626 remote_ip 10.8.0.154 122612 bytes_in 17194308 122612 station_ip 83.122.9.246 122612 port 157 122612 unique_id port 122612 remote_ip 10.8.0.226 122616 username hashtadani3 122616 mac 122616 bytes_out 0 122616 bytes_in 0 122616 station_ip 37.129.222.111 122616 port 157 122616 unique_id port 122616 remote_ip 10.8.0.154 122617 username mehdizare 122617 mac 122617 bytes_out 0 122617 bytes_in 0 122617 station_ip 5.120.59.106 122617 port 176 122617 unique_id port 122617 remote_ip 10.8.0.90 122624 username hashtadani3 122624 mac 122624 bytes_out 0 122624 bytes_in 0 122624 station_ip 37.129.222.111 122624 port 157 122624 unique_id port 122624 remote_ip 10.8.0.154 122625 username hashtadani3 122625 mac 122625 bytes_out 0 122625 bytes_in 0 122625 station_ip 37.129.222.111 122625 port 157 122625 unique_id port 122625 remote_ip 10.8.0.154 122627 username mosi 122627 mac 122627 bytes_out 0 122627 bytes_in 0 122627 station_ip 151.235.76.119 122627 port 170 122627 unique_id port 122629 username hashtadani3 122629 mac 122629 bytes_out 0 122629 bytes_in 0 122629 station_ip 37.129.222.111 122629 port 157 122629 unique_id port 122629 remote_ip 10.8.0.154 122630 username hashtadani3 122630 mac 122630 bytes_out 0 122630 bytes_in 0 122630 station_ip 37.129.222.111 122630 port 96 122630 unique_id port 122630 remote_ip 10.8.1.94 122634 username hashtadani3 122634 mac 122634 bytes_out 0 122634 bytes_in 0 122634 station_ip 37.129.222.111 122634 port 157 122634 unique_id port 122634 remote_ip 10.8.0.154 122635 username hashtadani3 122635 mac 122635 bytes_out 0 122635 bytes_in 0 122635 station_ip 37.129.222.111 122635 port 96 122635 unique_id port 122635 remote_ip 10.8.1.94 122644 username hashtadani3 122644 mac 122644 bytes_out 0 122644 bytes_in 0 60117 username arezoo 60117 kill_reason Maximum check online fails reached 60117 mac 5.237.64.166:49221: Unknown host 60117 bytes_out 0 60117 bytes_in 0 60117 station_ip 5.237.64.166:49221 60117 port 1017 60117 unique_id port 60118 username arezoo 60118 kill_reason Maximum check online fails reached 60118 mac 5.238.32.198:49267: Unknown host 60118 bytes_out 0 60118 bytes_in 0 60118 station_ip 5.238.32.198:49267 60118 port 1017 60118 unique_id port 60120 username arezoo 60120 kill_reason Maximum check online fails reached 60120 mac 5.115.139.140:34639: Unknown host 60120 bytes_out 0 60120 bytes_in 0 60120 station_ip 5.115.139.140:34639 60120 port 1017 60120 unique_id port 122644 station_ip 37.129.222.111 122644 port 157 122644 unique_id port 122644 remote_ip 10.8.0.154 122645 username hashtadani3 122645 mac 60124 username arezoo 60124 kill_reason Maximum check online fails reached 60124 mac 5.238.32.198:52054: Unknown host 60124 bytes_out 0 60124 bytes_in 0 60124 station_ip 5.238.32.198:52054 60124 port 1017 60124 unique_id port 122645 bytes_out 0 122645 bytes_in 0 122645 station_ip 37.129.222.111 122645 port 157 122645 unique_id port 122645 remote_ip 10.8.0.154 122647 username hashtadani3 122647 mac 122647 bytes_out 0 122647 bytes_in 0 122647 station_ip 37.129.222.111 122647 port 96 122647 unique_id port 122647 remote_ip 10.8.1.94 122648 username hashtadani3 122648 mac 122648 bytes_out 0 122648 bytes_in 0 122648 station_ip 37.129.222.111 122648 port 96 122648 unique_id port 122648 remote_ip 10.8.1.94 122649 username hashtadani3 122649 mac 122649 bytes_out 0 122649 bytes_in 0 122649 station_ip 37.129.222.111 122649 port 157 122649 unique_id port 122649 remote_ip 10.8.0.154 122654 username hashtadani3 122654 mac 122654 bytes_out 0 60082 username arezoo 60082 kill_reason Maximum check online fails reached 60082 mac 5.115.9.226:27478: Unknown host 60082 bytes_out 0 60082 bytes_in 0 60082 station_ip 5.115.9.226:27478 60082 port 1017 60082 unique_id port 122631 username hashtadani3 122631 mac 122631 bytes_out 0 122631 bytes_in 0 122631 station_ip 37.129.222.111 122631 port 157 122631 unique_id port 122631 remote_ip 10.8.0.154 122632 username hashtadani3 122632 mac 122632 bytes_out 0 122632 bytes_in 0 122632 station_ip 37.129.222.111 122632 port 157 122632 unique_id port 122632 remote_ip 10.8.0.154 122636 username hashtadani3 122636 mac 122636 bytes_out 0 122636 bytes_in 0 122636 station_ip 37.129.222.111 122636 port 96 122636 unique_id port 122636 remote_ip 10.8.1.94 122637 username hashtadani3 122637 mac 122637 bytes_out 0 122637 bytes_in 0 122637 station_ip 37.129.222.111 122637 port 157 122637 unique_id port 122637 remote_ip 10.8.0.154 122639 username hashtadani3 122639 mac 122639 bytes_out 0 122639 bytes_in 0 122639 station_ip 37.129.222.111 122639 port 157 122639 unique_id port 122639 remote_ip 10.8.0.154 122646 username hashtadani3 122646 mac 122646 bytes_out 0 122646 bytes_in 0 122646 station_ip 37.129.222.111 122646 port 157 122646 unique_id port 122646 remote_ip 10.8.0.154 122650 username hashtadani3 122650 mac 122650 bytes_out 0 122650 bytes_in 0 122650 station_ip 37.129.222.111 122650 port 157 122650 unique_id port 122650 remote_ip 10.8.0.154 122651 username hashtadani3 122651 mac 122651 bytes_out 0 122651 bytes_in 0 122651 station_ip 37.129.222.111 122651 port 96 122651 unique_id port 122651 remote_ip 10.8.1.94 122655 username hashtadani3 122655 mac 122655 bytes_out 0 122655 bytes_in 0 122655 station_ip 37.129.222.111 122655 port 157 122655 unique_id port 122655 remote_ip 10.8.0.154 122660 username hashtadani3 122660 mac 122660 bytes_out 0 122660 bytes_in 0 122660 station_ip 37.129.222.111 122660 port 169 122660 unique_id port 122660 remote_ip 10.8.0.154 122661 username hashtadani3 122661 mac 122661 bytes_out 0 122661 bytes_in 0 122661 station_ip 37.129.222.111 122661 port 96 122661 unique_id port 122661 remote_ip 10.8.1.94 122665 username hashtadani3 122665 mac 122665 bytes_out 0 122665 bytes_in 0 122665 station_ip 37.129.222.111 122665 port 169 122665 unique_id port 122665 remote_ip 10.8.0.154 122667 username hashtadani3 122667 mac 122667 bytes_out 0 122667 bytes_in 0 122667 station_ip 37.129.222.111 122667 port 169 122667 unique_id port 122667 remote_ip 10.8.0.154 122670 username hashtadani3 122670 mac 122670 bytes_out 0 122670 bytes_in 0 122670 station_ip 37.129.222.111 122670 port 169 122670 unique_id port 122670 remote_ip 10.8.0.154 122676 username hashtadani3 122676 mac 122676 bytes_out 0 122676 bytes_in 0 122676 station_ip 37.129.222.111 122676 port 157 122676 unique_id port 122676 remote_ip 10.8.0.154 122679 username hashtadani3 122679 mac 122679 bytes_out 0 122679 bytes_in 0 122679 station_ip 37.129.222.111 122679 port 157 122679 unique_id port 122679 remote_ip 10.8.0.154 122681 username hashtadani3 122681 mac 122681 bytes_out 0 122681 bytes_in 0 122681 station_ip 37.129.222.111 122681 port 169 122681 unique_id port 122681 remote_ip 10.8.0.154 122684 username hashtadani3 122684 mac 122684 bytes_out 0 122684 bytes_in 0 122684 station_ip 37.129.222.111 122684 port 157 122684 unique_id port 122684 remote_ip 10.8.0.154 122685 username hashtadani3 122640 bytes_out 0 122640 bytes_in 0 122640 station_ip 37.129.222.111 122640 port 157 122640 unique_id port 122640 remote_ip 10.8.0.154 122641 username hashtadani3 122641 mac 122641 bytes_out 0 122641 bytes_in 0 122641 station_ip 37.129.222.111 122641 port 96 122641 unique_id port 122641 remote_ip 10.8.1.94 122642 username hashtadani3 122642 mac 122642 bytes_out 0 122642 bytes_in 0 122642 station_ip 37.129.222.111 122642 port 96 122642 unique_id port 122642 remote_ip 10.8.1.94 122643 username hashtadani3 122643 mac 122643 bytes_out 0 122643 bytes_in 0 122643 station_ip 37.129.222.111 122643 port 157 122643 unique_id port 122643 remote_ip 10.8.0.154 122652 username hashtadani3 122652 mac 122652 bytes_out 0 122652 bytes_in 0 122652 station_ip 37.129.222.111 122652 port 96 122652 unique_id port 122652 remote_ip 10.8.1.94 122653 username hashtadani3 122653 mac 122653 bytes_out 0 122653 bytes_in 0 122653 station_ip 37.129.222.111 122653 port 157 122653 unique_id port 122653 remote_ip 10.8.0.154 122662 username hashtadani3 122662 mac 122662 bytes_out 0 122662 bytes_in 0 122662 station_ip 37.129.222.111 122662 port 169 122662 unique_id port 122662 remote_ip 10.8.0.154 122663 username hashtadani3 122663 mac 122663 bytes_out 0 122663 bytes_in 0 122663 station_ip 37.129.222.111 122663 port 169 122663 unique_id port 122663 remote_ip 10.8.0.154 122666 username hashtadani3 122666 mac 122666 bytes_out 0 122666 bytes_in 0 122666 station_ip 37.129.222.111 122666 port 169 122666 unique_id port 122666 remote_ip 10.8.0.154 122668 username hashtadani3 122668 mac 122668 bytes_out 0 122668 bytes_in 0 122668 station_ip 37.129.222.111 122668 port 169 122668 unique_id port 122668 remote_ip 10.8.0.154 122671 username ehsun 122671 mac 122671 bytes_out 0 122671 bytes_in 0 122671 station_ip 46.225.209.208 122671 port 157 122671 unique_id port 122671 remote_ip 10.8.0.162 122674 username ehsun 122674 mac 122674 bytes_out 0 122674 bytes_in 0 122674 station_ip 46.225.209.208 122674 port 169 122674 unique_id port 122674 remote_ip 10.8.0.162 122677 username hashtadani3 122677 mac 122677 bytes_out 0 122677 bytes_in 0 122677 station_ip 37.129.222.111 122677 port 157 122677 unique_id port 122677 remote_ip 10.8.0.154 122680 username hashtadani3 122680 mac 122680 bytes_out 0 122680 bytes_in 0 122680 station_ip 37.129.222.111 122680 port 157 122680 unique_id port 122680 remote_ip 10.8.0.154 122686 username hashtadani3 122686 mac 122686 bytes_out 0 122686 bytes_in 0 122686 station_ip 37.129.222.111 122686 port 157 122686 unique_id port 122686 remote_ip 10.8.0.154 122694 username hashtadani3 122694 mac 122694 bytes_out 0 122694 bytes_in 0 122694 station_ip 37.129.222.111 122694 port 157 122694 unique_id port 122694 remote_ip 10.8.0.154 122698 username hashtadani3 122698 mac 122698 bytes_out 0 122698 bytes_in 0 122698 station_ip 37.129.222.111 122698 port 157 122698 unique_id port 122698 remote_ip 10.8.0.154 122699 username hashtadani3 122699 mac 122699 bytes_out 0 122699 bytes_in 0 122699 station_ip 37.129.222.111 122699 port 157 122699 unique_id port 122699 remote_ip 10.8.0.154 122701 username hashtadani3 122701 mac 122701 bytes_out 0 122701 bytes_in 0 122701 station_ip 37.129.222.111 122701 port 96 122701 unique_id port 122701 remote_ip 10.8.1.94 122706 username hashtadani3 122706 mac 122706 bytes_out 0 122706 bytes_in 0 122706 station_ip 37.129.222.111 60130 username arezoo 60130 kill_reason Maximum check online fails reached 60130 mac 5.238.32.198:49241: Unknown host 60130 bytes_out 0 60130 bytes_in 0 60130 station_ip 5.238.32.198:49241 60130 port 1017 60130 unique_id port 122654 bytes_in 0 122654 station_ip 37.129.222.111 122654 port 157 122654 unique_id port 122654 remote_ip 10.8.0.154 122656 username hashtadani3 122656 mac 122656 bytes_out 0 122656 bytes_in 0 122656 station_ip 37.129.222.111 122656 port 157 122656 unique_id port 122656 remote_ip 10.8.0.154 122657 username hashtadani3 122657 mac 122657 bytes_out 0 122657 bytes_in 0 122657 station_ip 37.129.222.111 122657 port 157 122657 unique_id port 122657 remote_ip 10.8.0.154 122658 username hashtadani3 122658 mac 122658 bytes_out 0 122658 bytes_in 0 122658 station_ip 37.129.222.111 122658 port 96 122658 unique_id port 122658 remote_ip 10.8.1.94 122659 username hashtadani3 122659 mac 122659 bytes_out 0 122659 bytes_in 0 122659 station_ip 37.129.222.111 122659 port 169 122659 unique_id port 122659 remote_ip 10.8.0.154 122664 username hashtadani3 122664 mac 122664 bytes_out 0 60145 username arezoo 60145 kill_reason Maximum check online fails reached 60145 mac 5.115.123.83:24066: Unknown host 60145 bytes_out 0 60145 bytes_in 0 60145 station_ip 5.115.123.83:24066 60145 port 1017 60145 unique_id port 122664 bytes_in 0 122664 station_ip 37.129.222.111 122664 port 169 122664 unique_id port 122664 remote_ip 10.8.0.154 122669 username hashtadani3 122669 mac 122669 bytes_out 0 122669 bytes_in 0 122669 station_ip 37.129.222.111 122669 port 169 122669 unique_id port 122669 remote_ip 10.8.0.154 122672 username hashtadani3 122672 mac 122672 bytes_out 0 122672 bytes_in 0 122672 station_ip 37.129.222.111 122672 port 157 122672 unique_id port 122672 remote_ip 10.8.0.154 122673 username hashtadani3 122673 mac 122673 bytes_out 0 122673 bytes_in 0 122673 station_ip 37.129.222.111 122673 port 157 122673 unique_id port 122673 remote_ip 10.8.0.154 122675 username hashtadani3 122675 mac 122675 bytes_out 0 122675 bytes_in 0 122675 station_ip 37.129.222.111 122675 port 157 122675 unique_id port 122675 remote_ip 10.8.0.154 122678 username hashtadani3 122678 mac 122678 bytes_out 0 122678 bytes_in 0 122678 station_ip 37.129.222.111 122678 port 157 122678 unique_id port 122678 remote_ip 10.8.0.154 122682 username ehsun 122682 mac 122682 bytes_out 0 122682 bytes_in 0 122682 station_ip 46.225.209.208 122682 port 157 122682 unique_id port 122682 remote_ip 10.8.0.162 122683 username ehsun 122683 mac 122683 bytes_out 0 122683 bytes_in 0 122683 station_ip 46.225.209.208 122683 port 169 122683 unique_id port 122683 remote_ip 10.8.0.162 122687 username hashtadani3 122687 mac 122687 bytes_out 0 122687 bytes_in 0 122687 station_ip 37.129.222.111 122687 port 157 122687 unique_id port 122687 remote_ip 10.8.0.154 122688 username hashtadani3 122688 mac 122688 bytes_out 0 122688 bytes_in 0 122688 station_ip 37.129.222.111 122688 port 157 122688 unique_id port 122688 remote_ip 10.8.0.154 122690 username hashtadani3 122690 mac 122690 bytes_out 0 122690 bytes_in 0 122690 station_ip 37.129.222.111 122690 port 96 122690 unique_id port 122690 remote_ip 10.8.1.94 122695 username hashtadani3 122695 mac 122695 bytes_out 0 122695 bytes_in 0 122695 station_ip 37.129.222.111 122695 port 157 122695 unique_id port 122695 remote_ip 10.8.0.154 122700 username hashtadani3 122700 mac 122700 bytes_out 0 60131 username arezoo 60131 kill_reason Maximum check online fails reached 60131 mac 5.238.32.198:49261: Unknown host 60131 bytes_out 0 60131 bytes_in 0 60131 station_ip 5.238.32.198:49261 60131 port 1017 60131 unique_id port 122685 mac 122685 bytes_out 0 122685 bytes_in 0 122685 station_ip 37.129.222.111 122685 port 157 122685 unique_id port 122685 remote_ip 10.8.0.154 122689 username hashtadani3 122689 mac 122689 bytes_out 0 122689 bytes_in 0 122689 station_ip 37.129.222.111 122689 port 157 122689 unique_id port 122689 remote_ip 10.8.0.154 122691 username hashtadani3 122691 mac 122691 bytes_out 0 122691 bytes_in 0 122691 station_ip 37.129.222.111 122691 port 157 122691 unique_id port 122691 remote_ip 10.8.0.154 122692 username hashtadani3 122692 mac 122692 bytes_out 0 122692 bytes_in 0 122692 station_ip 37.129.222.111 122692 port 96 122692 unique_id port 122692 remote_ip 10.8.1.94 122693 username hashtadani3 122693 mac 122693 bytes_out 0 122693 bytes_in 0 122693 station_ip 37.129.222.111 122693 port 157 122693 unique_id port 122693 remote_ip 10.8.0.154 122696 username hashtadani3 122696 mac 122696 bytes_out 0 122696 bytes_in 0 122696 station_ip 37.129.222.111 122696 port 157 122696 unique_id port 122696 remote_ip 10.8.0.154 122697 username hashtadani3 122697 mac 122697 bytes_out 0 122697 bytes_in 0 122697 station_ip 37.129.222.111 122697 port 157 122697 unique_id port 122697 remote_ip 10.8.0.154 122703 username hashtadani3 122703 mac 122703 bytes_out 0 122703 bytes_in 0 122703 station_ip 37.129.222.111 122703 port 157 122703 unique_id port 122703 remote_ip 10.8.0.154 122704 username hashtadani3 122704 mac 122704 bytes_out 0 122704 bytes_in 0 122704 station_ip 37.129.222.111 122704 port 157 122704 unique_id port 122704 remote_ip 10.8.0.154 122705 username hashtadani3 122705 mac 122705 bytes_out 0 122705 bytes_in 0 122705 station_ip 37.129.222.111 122705 port 157 122705 unique_id port 122705 remote_ip 10.8.0.154 122713 username hashtadani3 122713 mac 122713 bytes_out 0 122713 bytes_in 0 122713 station_ip 37.129.222.111 122713 port 157 122713 unique_id port 122713 remote_ip 10.8.0.154 122714 username hashtadani3 122714 mac 122714 bytes_out 0 122714 bytes_in 0 122714 station_ip 37.129.222.111 122714 port 96 122714 unique_id port 122714 remote_ip 10.8.1.94 122715 username hashtadani3 122715 mac 122715 bytes_out 0 122715 bytes_in 0 122715 station_ip 37.129.222.111 122715 port 157 122715 unique_id port 122715 remote_ip 10.8.0.154 122717 username hashtadani3 122717 mac 122717 bytes_out 0 122717 bytes_in 0 122717 station_ip 37.129.222.111 122717 port 157 122717 unique_id port 122717 remote_ip 10.8.0.154 122719 username hashtadani3 122719 mac 122719 bytes_out 0 122719 bytes_in 0 122719 station_ip 37.129.222.111 122719 port 157 122719 unique_id port 122719 remote_ip 10.8.0.154 122723 username hashtadani3 122723 mac 122723 bytes_out 0 122723 bytes_in 0 122723 station_ip 37.129.222.111 122723 port 96 122723 unique_id port 122723 remote_ip 10.8.1.94 122724 username hashtadani3 122724 mac 122724 bytes_out 0 122724 bytes_in 0 122724 station_ip 37.129.222.111 122724 port 96 122724 unique_id port 122724 remote_ip 10.8.1.94 122726 username hashtadani3 122726 mac 122726 bytes_out 0 122726 bytes_in 0 122726 station_ip 37.129.222.111 122726 port 157 122726 unique_id port 122726 remote_ip 10.8.0.154 122735 username ehsun 122735 mac 122735 bytes_out 0 122700 bytes_in 0 122700 station_ip 37.129.222.111 122700 port 157 122700 unique_id port 122700 remote_ip 10.8.0.154 122702 username hashtadani3 122702 mac 122702 bytes_out 0 122702 bytes_in 0 122702 station_ip 37.129.222.111 122702 port 157 122702 unique_id port 122702 remote_ip 10.8.0.154 122708 username hashtadani3 122708 mac 122708 bytes_out 0 122708 bytes_in 0 122708 station_ip 37.129.222.111 122708 port 157 122708 unique_id port 122708 remote_ip 10.8.0.154 122709 username hashtadani3 122709 mac 122709 bytes_out 0 122709 bytes_in 0 60207 username arezoo 60207 kill_reason Wrong password 60207 mac 5.238.32.198:49277: Unknown host 60207 bytes_out 0 60207 bytes_in 0 60207 station_ip 5.238.32.198:49277 60207 port 1017 60207 unique_id port 60208 username arezoo 60208 kill_reason Maximum check online fails reached 60208 mac 5.238.32.198:49381: Unknown host 60208 bytes_out 0 60208 bytes_in 0 60208 station_ip 5.238.32.198:49381 60208 port 1017 60208 unique_id port 122709 station_ip 37.129.222.111 122709 port 157 122709 unique_id port 122709 remote_ip 10.8.0.154 122711 username hashtadani3 122711 mac 122711 bytes_out 0 122711 bytes_in 0 122711 station_ip 37.129.222.111 122711 port 96 122711 unique_id port 122711 remote_ip 10.8.1.94 122712 username hashtadani3 122712 mac 122712 bytes_out 0 122712 bytes_in 0 122712 station_ip 37.129.222.111 122712 port 157 122712 unique_id port 122712 remote_ip 10.8.0.154 122716 username hashtadani3 122716 mac 122716 bytes_out 0 122716 bytes_in 0 122716 station_ip 37.129.222.111 122716 port 157 122716 unique_id port 122716 remote_ip 10.8.0.154 122718 username hashtadani3 122718 mac 122718 bytes_out 0 122718 bytes_in 0 122718 station_ip 37.129.222.111 122718 port 157 122718 unique_id port 122718 remote_ip 10.8.0.154 122721 username hashtadani3 122721 mac 122721 bytes_out 0 122721 bytes_in 0 122721 station_ip 37.129.222.111 122721 port 96 122721 unique_id port 122721 remote_ip 10.8.1.94 122722 username hashtadani3 122722 mac 122722 bytes_out 0 122722 bytes_in 0 122722 station_ip 37.129.222.111 122722 port 157 122722 unique_id port 122722 remote_ip 10.8.0.154 122725 username hashtadani3 122725 mac 122725 bytes_out 0 122725 bytes_in 0 122725 station_ip 37.129.222.111 122725 port 157 122725 unique_id port 122725 remote_ip 10.8.0.154 122729 username hashtadani3 122729 mac 122729 bytes_out 0 122729 bytes_in 0 122729 station_ip 37.129.222.111 122729 port 157 122729 unique_id port 122729 remote_ip 10.8.0.154 122732 username hashtadani3 122732 mac 122732 bytes_out 0 122732 bytes_in 0 122732 station_ip 37.129.222.111 122732 port 157 122732 unique_id port 122732 remote_ip 10.8.0.154 122733 username hashtadani3 122733 mac 122733 bytes_out 0 122733 bytes_in 0 122733 station_ip 37.129.222.111 122733 port 157 122733 unique_id port 122733 remote_ip 10.8.0.154 122734 username hashtadani3 122734 mac 122734 bytes_out 0 122734 bytes_in 0 122734 station_ip 37.129.222.111 122734 port 157 122734 unique_id port 122734 remote_ip 10.8.0.154 122736 username hashtadani3 122736 mac 122736 bytes_out 0 122736 bytes_in 0 122736 station_ip 37.129.222.111 122736 port 157 122736 unique_id port 122736 remote_ip 10.8.0.154 122737 username hashtadani3 122737 mac 122737 bytes_out 0 122737 bytes_in 0 122737 station_ip 37.129.222.111 122737 port 157 122737 unique_id port 122737 remote_ip 10.8.0.154 122740 username hashtadani3 122740 mac 122740 bytes_out 0 122706 port 96 122706 unique_id port 122706 remote_ip 10.8.1.94 122707 username hashtadani3 122707 mac 122707 bytes_out 0 122707 bytes_in 0 122707 station_ip 37.129.222.111 122707 port 157 122707 unique_id port 122707 remote_ip 10.8.0.154 122710 username hashtadani3 122710 mac 122710 bytes_out 0 122710 bytes_in 0 122710 station_ip 37.129.222.111 122710 port 96 122710 unique_id port 122710 remote_ip 10.8.1.94 122720 username ehsun 122720 kill_reason Another user logged on this global unique id 122720 mac 122720 bytes_out 0 122720 bytes_in 0 122720 station_ip 46.225.209.208 122720 port 169 122720 unique_id port 122720 remote_ip 10.8.0.162 122727 username hashtadani3 122727 mac 122727 bytes_out 0 122727 bytes_in 0 122727 station_ip 37.129.222.111 122727 port 157 122727 unique_id port 122727 remote_ip 10.8.0.154 122728 username hashtadani3 122728 mac 122728 bytes_out 0 122728 bytes_in 0 60191 username arezoo 60191 kill_reason Wrong password 60191 mac 5.115.123.83:36754: Unknown host 60191 bytes_out 0 60191 bytes_in 0 60191 station_ip 5.115.123.83:36754 60191 port 1017 60191 unique_id port 122728 station_ip 37.129.222.111 122728 port 96 122728 unique_id port 122728 remote_ip 10.8.1.94 122730 username hashtadani3 122730 mac 122730 bytes_out 0 122730 bytes_in 0 122730 station_ip 37.129.222.111 122730 port 96 122730 unique_id port 122730 remote_ip 10.8.1.94 122731 username hashtadani3 122731 mac 122731 bytes_out 0 122731 bytes_in 0 122731 station_ip 37.129.222.111 122731 port 157 122731 unique_id port 122731 remote_ip 10.8.0.154 122739 username hashtadani3 122739 mac 122739 bytes_out 0 122739 bytes_in 0 122739 station_ip 37.129.222.111 122739 port 157 122739 unique_id port 122739 remote_ip 10.8.0.154 122746 username hashtadani3 122746 mac 122746 bytes_out 0 122746 bytes_in 0 122746 station_ip 37.129.222.111 122746 port 96 122746 unique_id port 122746 remote_ip 10.8.1.94 122747 username hashtadani3 122747 mac 122747 bytes_out 0 122747 bytes_in 0 122747 station_ip 37.129.222.111 122747 port 157 122747 unique_id port 122747 remote_ip 10.8.0.154 122748 username hashtadani3 122748 mac 122748 bytes_out 0 122748 bytes_in 0 122748 station_ip 37.129.222.111 122748 port 157 122748 unique_id port 122748 remote_ip 10.8.0.154 122750 username hashtadani3 122750 mac 122750 bytes_out 0 122750 bytes_in 0 122750 station_ip 37.129.222.111 122750 port 157 122750 unique_id port 122750 remote_ip 10.8.0.154 122754 username hashtadani3 122754 mac 122754 bytes_out 0 122754 bytes_in 0 122754 station_ip 37.129.222.111 122754 port 157 122754 unique_id port 122754 remote_ip 10.8.0.154 122758 username hashtadani3 122758 mac 122758 bytes_out 0 122758 bytes_in 0 122758 station_ip 37.129.222.111 122758 port 169 122758 unique_id port 122758 remote_ip 10.8.0.154 122759 username hashtadani3 122759 mac 122759 bytes_out 0 122759 bytes_in 0 122759 station_ip 37.129.222.111 122759 port 96 122759 unique_id port 122759 remote_ip 10.8.1.94 122760 username hashtadani3 122760 mac 122760 bytes_out 0 122760 bytes_in 0 122760 station_ip 37.129.222.111 122760 port 169 122760 unique_id port 122760 remote_ip 10.8.0.154 122763 username hashtadani3 122763 mac 122763 bytes_out 0 122763 bytes_in 0 122763 station_ip 37.129.222.111 122763 port 169 122763 unique_id port 122763 remote_ip 10.8.0.154 122765 username hashtadani3 122765 mac 122765 bytes_out 0 122765 bytes_in 0 122765 station_ip 37.129.222.111 122735 bytes_in 0 122735 station_ip 46.225.209.208 122735 port 169 122735 unique_id port 122738 username hashtadani3 122738 mac 122738 bytes_out 0 122738 bytes_in 0 122738 station_ip 37.129.222.111 122738 port 157 122738 unique_id port 122738 remote_ip 10.8.0.154 122741 username hashtadani3 122741 mac 122741 bytes_out 0 122741 bytes_in 0 122741 station_ip 37.129.222.111 122741 port 157 122741 unique_id port 122741 remote_ip 10.8.0.154 122745 username hashtadani3 122745 mac 122745 bytes_out 0 122745 bytes_in 0 122745 station_ip 37.129.222.111 122745 port 157 122745 unique_id port 122745 remote_ip 10.8.0.154 122753 username hashtadani3 122753 mac 122753 bytes_out 0 122753 bytes_in 0 60192 username arezoo 60192 kill_reason Maximum check online fails reached 60192 mac 5.115.123.83:36758: Unknown host 60192 bytes_out 0 60192 bytes_in 0 60192 station_ip 5.115.123.83:36758 60192 port 1017 60192 unique_id port 122753 station_ip 37.129.222.111 122753 port 157 122753 unique_id port 122753 remote_ip 10.8.0.154 122756 username sedighe 122756 mac 122756 bytes_out 136515 122756 bytes_in 471241 122756 station_ip 37.129.181.216 122756 port 176 122756 unique_id port 122756 remote_ip 10.8.0.146 122757 username hashtadani3 122757 mac 122757 bytes_out 0 122757 bytes_in 0 122757 station_ip 37.129.222.111 122757 port 169 122757 unique_id port 122757 remote_ip 10.8.0.154 122762 username hashtadani3 122762 mac 122762 bytes_out 0 122762 bytes_in 0 122762 station_ip 37.129.222.111 122762 port 169 122762 unique_id port 122762 remote_ip 10.8.0.154 122768 username hashtadani3 122768 mac 122768 bytes_out 0 122768 bytes_in 0 122768 station_ip 37.129.222.111 122768 port 169 122768 unique_id port 122768 remote_ip 10.8.0.154 122769 username hashtadani3 122769 mac 122769 bytes_out 0 122769 bytes_in 0 122769 station_ip 37.129.222.111 122769 port 169 122769 unique_id port 122769 remote_ip 10.8.0.154 122776 username hashtadani3 122776 mac 122776 bytes_out 0 122776 bytes_in 0 122776 station_ip 37.129.222.111 122776 port 169 122776 unique_id port 122776 remote_ip 10.8.0.154 122777 username hashtadani3 122777 mac 122777 bytes_out 0 122777 bytes_in 0 122777 station_ip 37.129.222.111 122777 port 96 122777 unique_id port 122777 remote_ip 10.8.1.94 122778 username hashtadani3 122778 mac 122778 bytes_out 0 122778 bytes_in 0 122778 station_ip 37.129.222.111 122778 port 169 122778 unique_id port 122778 remote_ip 10.8.0.154 122783 username hashtadani3 122783 mac 122783 bytes_out 0 122783 bytes_in 0 122783 station_ip 37.129.222.111 122783 port 96 122783 unique_id port 122783 remote_ip 10.8.1.94 122785 username hashtadani3 122785 mac 122785 bytes_out 0 122785 bytes_in 0 122785 station_ip 37.129.222.111 122785 port 169 122785 unique_id port 122785 remote_ip 10.8.0.154 122786 username hashtadani3 122786 mac 122786 bytes_out 0 122786 bytes_in 0 122786 station_ip 37.129.222.111 122786 port 169 122786 unique_id port 122786 remote_ip 10.8.0.154 122792 username hashtadani3 122792 mac 122792 bytes_out 0 122792 bytes_in 0 122792 station_ip 37.129.222.111 122792 port 169 122792 unique_id port 122792 remote_ip 10.8.0.154 122794 username hashtadani3 122794 mac 122794 bytes_out 0 122794 bytes_in 0 122794 station_ip 37.129.222.111 122794 port 96 122794 unique_id port 122794 remote_ip 10.8.1.94 122796 username hashtadani3 122796 mac 122796 bytes_out 0 122796 bytes_in 0 122796 station_ip 37.129.222.111 122740 bytes_in 0 122740 station_ip 37.129.222.111 122740 port 157 122740 unique_id port 122740 remote_ip 10.8.0.154 122742 username hashtadani3 122742 mac 122742 bytes_out 0 122742 bytes_in 0 122742 station_ip 37.129.222.111 122742 port 96 122742 unique_id port 122742 remote_ip 10.8.1.94 122743 username hashtadani3 122743 mac 122743 bytes_out 0 122743 bytes_in 0 122743 station_ip 37.129.222.111 122743 port 157 122743 unique_id port 122743 remote_ip 10.8.0.154 122744 username hashtadani3 122744 mac 122744 bytes_out 0 122744 bytes_in 0 122744 station_ip 37.129.222.111 122744 port 157 122744 unique_id port 122744 remote_ip 10.8.0.154 122749 username hashtadani3 122749 mac 122749 bytes_out 0 122749 bytes_in 0 122749 station_ip 37.129.222.111 122749 port 157 122749 unique_id port 122749 remote_ip 10.8.0.154 122751 username hashtadani3 122751 mac 122751 bytes_out 0 122751 bytes_in 0 122751 station_ip 37.129.222.111 122751 port 96 122751 unique_id port 122751 remote_ip 10.8.1.94 122752 username hashtadani3 122752 mac 122752 bytes_out 0 122752 bytes_in 0 122752 station_ip 37.129.222.111 122752 port 157 122752 unique_id port 122752 remote_ip 10.8.0.154 122755 username hashtadani3 122755 mac 122755 bytes_out 0 122755 bytes_in 0 122755 station_ip 37.129.222.111 122755 port 157 122755 unique_id port 122755 remote_ip 10.8.0.154 122761 username hashtadani3 122761 mac 122761 bytes_out 0 122761 bytes_in 0 122761 station_ip 37.129.222.111 122761 port 169 122761 unique_id port 122761 remote_ip 10.8.0.154 122764 username hashtadani3 122764 mac 122764 bytes_out 0 122764 bytes_in 0 122764 station_ip 37.129.222.111 122764 port 169 122764 unique_id port 122764 remote_ip 10.8.0.154 122766 username hashtadani3 122766 mac 122766 bytes_out 0 122766 bytes_in 0 122766 station_ip 37.129.222.111 122766 port 96 122766 unique_id port 122766 remote_ip 10.8.1.94 122767 username hashtadani3 122767 mac 122767 bytes_out 0 122767 bytes_in 0 122767 station_ip 37.129.222.111 122767 port 169 122767 unique_id port 122767 remote_ip 10.8.0.154 122772 username hashtadani3 122772 mac 122772 bytes_out 0 122772 bytes_in 0 122772 station_ip 37.129.222.111 122772 port 169 122772 unique_id port 122772 remote_ip 10.8.0.154 122773 username hashtadani3 122773 mac 122773 bytes_out 0 122773 bytes_in 0 122773 station_ip 37.129.222.111 122773 port 169 122773 unique_id port 122773 remote_ip 10.8.0.154 122775 username hashtadani3 122775 mac 122775 bytes_out 0 122775 bytes_in 0 122775 station_ip 37.129.222.111 122775 port 169 122775 unique_id port 122775 remote_ip 10.8.0.154 122781 username hashtadani3 122781 mac 122781 bytes_out 0 122781 bytes_in 0 122781 station_ip 37.129.222.111 122781 port 169 122781 unique_id port 122781 remote_ip 10.8.0.154 122782 username hashtadani3 122782 mac 122782 bytes_out 0 122782 bytes_in 0 122782 station_ip 37.129.222.111 122782 port 96 122782 unique_id port 122782 remote_ip 10.8.1.94 122784 username hashtadani3 122784 mac 122784 bytes_out 0 122784 bytes_in 0 122784 station_ip 37.129.222.111 122784 port 169 122784 unique_id port 122784 remote_ip 10.8.0.154 122791 username hashtadani3 122791 mac 122791 bytes_out 0 122791 bytes_in 0 122791 station_ip 37.129.222.111 122791 port 169 122791 unique_id port 122791 remote_ip 10.8.0.154 122793 username hashtadani3 122793 mac 122793 bytes_out 0 122793 bytes_in 0 122793 station_ip 37.129.222.111 122765 port 96 122765 unique_id port 122765 remote_ip 10.8.1.94 122770 username hashtadani3 122770 mac 122770 bytes_out 0 122770 bytes_in 0 122770 station_ip 37.129.222.111 122770 port 96 122770 unique_id port 122770 remote_ip 10.8.1.94 122771 username hashtadani3 122771 mac 122771 bytes_out 0 122771 bytes_in 0 122771 station_ip 37.129.222.111 122771 port 169 122771 unique_id port 122771 remote_ip 10.8.0.154 122774 username hashtadani3 122774 mac 122774 bytes_out 0 122774 bytes_in 0 122774 station_ip 37.129.222.111 122774 port 169 122774 unique_id port 122774 remote_ip 10.8.0.154 122779 username hashtadani3 122779 mac 122779 bytes_out 0 122779 bytes_in 0 122779 station_ip 37.129.222.111 122779 port 169 122779 unique_id port 122779 remote_ip 10.8.0.154 122780 username hashtadani3 122780 mac 122780 bytes_out 0 122780 bytes_in 0 122780 station_ip 37.129.222.111 122780 port 96 122780 unique_id port 122780 remote_ip 10.8.1.94 122787 username hashtadani3 122787 mac 122787 bytes_out 0 122787 bytes_in 0 122787 station_ip 37.129.222.111 122787 port 96 122787 unique_id port 122787 remote_ip 10.8.1.94 122788 username hashtadani3 122788 mac 122788 bytes_out 0 122788 bytes_in 0 122788 station_ip 37.129.222.111 122788 port 169 122788 unique_id port 122788 remote_ip 10.8.0.154 122789 username hashtadani3 122789 mac 122789 bytes_out 0 122789 bytes_in 0 122789 station_ip 37.129.222.111 122789 port 96 122789 unique_id port 122789 remote_ip 10.8.1.94 122790 username hashtadani3 122790 mac 122790 bytes_out 0 122790 bytes_in 0 122790 station_ip 37.129.222.111 122790 port 169 122790 unique_id port 122790 remote_ip 10.8.0.154 122797 username hashtadani3 122797 mac 122797 bytes_out 0 122797 bytes_in 0 122797 station_ip 37.129.222.111 122797 port 169 122797 unique_id port 122797 remote_ip 10.8.0.154 122798 username hashtadani3 122798 mac 122798 bytes_out 0 60260 username arezoo 60260 kill_reason Maximum check online fails reached 60260 mac 5.238.32.198:49424: Unknown host 60260 bytes_out 0 60260 bytes_in 0 60260 station_ip 5.238.32.198:49424 60260 port 1017 60260 unique_id port 122798 bytes_in 0 122798 station_ip 37.129.222.111 122798 port 169 122798 unique_id port 122798 remote_ip 10.8.0.154 122801 username houshang 122801 mac 122801 bytes_out 0 122801 bytes_in 0 122801 station_ip 5.119.220.6 122801 port 176 122801 unique_id port 122801 remote_ip 10.8.0.22 122805 username hashtadani3 122805 mac 122805 bytes_out 0 122805 bytes_in 0 122805 station_ip 37.129.222.111 122805 port 169 122805 unique_id port 122805 remote_ip 10.8.0.154 122808 username hashtadani3 122808 mac 122808 bytes_out 0 122808 bytes_in 0 122808 station_ip 37.129.222.111 122808 port 96 122808 unique_id port 122808 remote_ip 10.8.1.94 122814 username hashtadani3 122814 mac 122814 bytes_out 0 122814 bytes_in 0 122814 station_ip 37.129.222.111 122814 port 96 122814 unique_id port 122814 remote_ip 10.8.1.94 122815 username hashtadani3 122815 mac 122815 bytes_out 0 122815 bytes_in 0 122815 station_ip 37.129.222.111 122815 port 96 122815 unique_id port 122815 remote_ip 10.8.1.94 122817 username hashtadani3 122817 mac 122817 bytes_out 0 122817 bytes_in 0 122817 station_ip 37.129.222.111 122817 port 169 122817 unique_id port 122817 remote_ip 10.8.0.154 122821 username hashtadani3 122821 mac 122821 bytes_out 0 122821 bytes_in 0 122821 station_ip 37.129.222.111 122821 port 169 122821 unique_id port 122793 port 96 122793 unique_id port 122793 remote_ip 10.8.1.94 122795 username hashtadani3 122795 mac 122795 bytes_out 0 122795 bytes_in 0 122795 station_ip 37.129.222.111 122795 port 169 122795 unique_id port 122795 remote_ip 10.8.0.154 122799 username hashtadani3 122799 mac 122799 bytes_out 0 122799 bytes_in 0 122799 station_ip 37.129.222.111 122799 port 96 122799 unique_id port 122799 remote_ip 10.8.1.94 122800 username hashtadani3 122800 mac 122800 bytes_out 0 122800 bytes_in 0 122800 station_ip 37.129.222.111 122800 port 169 122800 unique_id port 122800 remote_ip 10.8.0.154 122802 username hashtadani3 122802 mac 122802 bytes_out 0 122802 bytes_in 0 122802 station_ip 37.129.222.111 122802 port 169 122802 unique_id port 122802 remote_ip 10.8.0.154 122806 username hashtadani3 122806 mac 122806 bytes_out 0 122806 bytes_in 0 122806 station_ip 37.129.222.111 122806 port 169 122806 unique_id port 122806 remote_ip 10.8.0.154 122809 username sedighe 122809 mac 122809 bytes_out 0 122809 bytes_in 0 122809 station_ip 83.122.38.48 122809 port 169 122809 unique_id port 122809 remote_ip 10.8.0.146 122810 username hashtadani3 122810 mac 122810 bytes_out 0 122810 bytes_in 0 122810 station_ip 37.129.222.111 122810 port 96 122810 unique_id port 122810 remote_ip 10.8.1.94 122811 username hashtadani3 122811 mac 122811 bytes_out 0 122811 bytes_in 0 122811 station_ip 37.129.222.111 122811 port 169 122811 unique_id port 122811 remote_ip 10.8.0.154 122818 username hashtadani3 122818 mac 122818 bytes_out 0 122818 bytes_in 0 122818 station_ip 37.129.222.111 122818 port 169 122818 unique_id port 122818 remote_ip 10.8.0.154 122819 username hashtadani3 122819 mac 122819 bytes_out 0 122819 bytes_in 0 122819 station_ip 37.129.222.111 122819 port 96 122819 unique_id port 122819 remote_ip 10.8.1.94 122822 username sedighe 122822 mac 122822 bytes_out 0 122822 bytes_in 0 122822 station_ip 83.122.38.48 122822 port 176 122822 unique_id port 122822 remote_ip 10.8.0.146 122823 username hashtadani3 122823 mac 122823 bytes_out 0 122823 bytes_in 0 122823 station_ip 37.129.222.111 122823 port 96 122823 unique_id port 122823 remote_ip 10.8.1.94 122828 username hashtadani3 122828 mac 122828 bytes_out 0 122828 bytes_in 0 122828 station_ip 37.129.222.111 122828 port 176 122828 unique_id port 122828 remote_ip 10.8.0.154 122830 username hashtadani3 122830 mac 122830 bytes_out 0 122830 bytes_in 0 122830 station_ip 37.129.222.111 122830 port 176 122830 unique_id port 122830 remote_ip 10.8.0.154 122835 username hashtadani3 122835 mac 122835 bytes_out 0 122835 bytes_in 0 122835 station_ip 37.129.222.111 122835 port 176 122835 unique_id port 122835 remote_ip 10.8.0.154 122836 username hashtadani3 122836 mac 122836 bytes_out 0 122836 bytes_in 0 122836 station_ip 37.129.222.111 122836 port 96 122836 unique_id port 122836 remote_ip 10.8.1.94 122840 username hashtadani3 122840 mac 122840 bytes_out 0 122840 bytes_in 0 122840 station_ip 37.129.222.111 122840 port 176 122840 unique_id port 122840 remote_ip 10.8.0.154 122842 username hashtadani3 122842 mac 122842 bytes_out 0 122842 bytes_in 0 122842 station_ip 37.129.222.111 122842 port 176 122842 unique_id port 122842 remote_ip 10.8.0.154 122843 username hashtadani3 122843 mac 122843 bytes_out 0 122843 bytes_in 0 122843 station_ip 37.129.222.111 122843 port 96 122843 unique_id port 122843 remote_ip 10.8.1.94 122796 port 169 122796 unique_id port 122796 remote_ip 10.8.0.154 122803 username hashtadani3 122803 mac 122803 bytes_out 0 122803 bytes_in 0 122803 station_ip 37.129.222.111 122803 port 169 122803 unique_id port 122803 remote_ip 10.8.0.154 122804 username hashtadani3 122804 mac 122804 bytes_out 0 122804 bytes_in 0 122804 station_ip 37.129.222.111 122804 port 169 122804 unique_id port 122804 remote_ip 10.8.0.154 122807 username sedighe 122807 mac 122807 bytes_out 0 122807 bytes_in 0 122807 station_ip 83.122.14.205 122807 port 157 122807 unique_id port 122807 remote_ip 10.8.0.146 122812 username hashtadani3 122812 mac 122812 bytes_out 0 122812 bytes_in 0 122812 station_ip 37.129.222.111 122812 port 169 122812 unique_id port 122812 remote_ip 10.8.0.154 122813 username hashtadani3 122813 mac 122813 bytes_out 0 122813 bytes_in 0 122813 station_ip 37.129.222.111 122813 port 169 122813 unique_id port 122813 remote_ip 10.8.0.154 122816 username hashtadani3 122816 mac 122816 bytes_out 0 122816 bytes_in 0 122816 station_ip 37.129.222.111 122816 port 169 122816 unique_id port 122816 remote_ip 10.8.0.154 122820 username hashtadani3 122820 mac 122820 bytes_out 0 122820 bytes_in 0 122820 station_ip 37.129.222.111 122820 port 169 122820 unique_id port 122820 remote_ip 10.8.0.154 122824 username hashtadani3 122824 mac 122824 bytes_out 0 122824 bytes_in 0 122824 station_ip 37.129.222.111 122824 port 96 122824 unique_id port 122824 remote_ip 10.8.1.94 122825 username hashtadani3 122825 mac 122825 bytes_out 0 122825 bytes_in 0 122825 station_ip 37.129.222.111 122825 port 96 122825 unique_id port 122825 remote_ip 10.8.1.94 122826 username hashtadani3 122826 mac 122826 bytes_out 0 122826 bytes_in 0 60290 username arezoo 60290 kill_reason Maximum check online fails reached 60290 mac 5.237.80.157:49332: Unknown host 60290 bytes_out 0 60290 bytes_in 0 60290 station_ip 5.237.80.157:49332 60290 port 1017 60290 unique_id port 122826 station_ip 37.129.222.111 122826 port 176 122826 unique_id port 122826 remote_ip 10.8.0.154 122829 username hashtadani3 122829 mac 122829 bytes_out 0 122829 bytes_in 0 122829 station_ip 37.129.222.111 122829 port 176 122829 unique_id port 122829 remote_ip 10.8.0.154 122831 username hashtadani3 122831 mac 122831 bytes_out 0 122831 bytes_in 0 122831 station_ip 37.129.222.111 122831 port 176 122831 unique_id port 122831 remote_ip 10.8.0.154 122837 username hashtadani3 122837 mac 122837 bytes_out 0 122837 bytes_in 0 122837 station_ip 37.129.222.111 122837 port 176 122837 unique_id port 122837 remote_ip 10.8.0.154 122844 username hashtadani3 122844 mac 122844 bytes_out 0 122844 bytes_in 0 122844 station_ip 37.129.222.111 122844 port 176 122844 unique_id port 122844 remote_ip 10.8.0.154 122845 username hashtadani3 122845 mac 122845 bytes_out 0 122845 bytes_in 0 122845 station_ip 37.129.222.111 122845 port 96 122845 unique_id port 122845 remote_ip 10.8.1.94 122846 username hashtadani3 122846 mac 122846 bytes_out 0 122846 bytes_in 0 122846 station_ip 37.129.222.111 122846 port 176 122846 unique_id port 122846 remote_ip 10.8.0.154 122850 username hashtadani3 122850 mac 122850 bytes_out 0 122850 bytes_in 0 122850 station_ip 37.129.222.111 122850 port 176 122850 unique_id port 122850 remote_ip 10.8.0.154 122852 username hashtadani3 122852 mac 122852 bytes_out 0 122852 bytes_in 0 122852 station_ip 37.129.222.111 122852 port 176 122821 remote_ip 10.8.0.154 122827 username hashtadani3 122827 mac 122827 bytes_out 0 122827 bytes_in 0 122827 station_ip 37.129.222.111 122827 port 176 122827 unique_id port 122827 remote_ip 10.8.0.154 122832 username hashtadani3 122832 mac 122832 bytes_out 0 122832 bytes_in 0 122832 station_ip 37.129.222.111 122832 port 176 122832 unique_id port 122832 remote_ip 10.8.0.154 122833 username hashtadani3 122833 mac 122833 bytes_out 0 122833 bytes_in 0 122833 station_ip 37.129.222.111 122833 port 96 122833 unique_id port 122833 remote_ip 10.8.1.94 122834 username hashtadani3 122834 mac 122834 bytes_out 0 122834 bytes_in 0 122834 station_ip 37.129.222.111 122834 port 96 122834 unique_id port 122834 remote_ip 10.8.1.94 122838 username hashtadani3 122838 mac 122838 bytes_out 0 122838 bytes_in 0 122838 station_ip 37.129.222.111 122838 port 176 122838 unique_id port 122838 remote_ip 10.8.0.154 122839 username hashtadani3 122839 mac 122839 bytes_out 0 122839 bytes_in 0 122839 station_ip 37.129.222.111 122839 port 96 122839 unique_id port 122839 remote_ip 10.8.1.94 122841 username hashtadani3 122841 mac 122841 bytes_out 0 122841 bytes_in 0 122841 station_ip 37.129.222.111 122841 port 176 122841 unique_id port 122841 remote_ip 10.8.0.154 122847 username hashtadani3 122847 mac 122847 bytes_out 0 122847 bytes_in 0 122847 station_ip 37.129.222.111 122847 port 176 122847 unique_id port 122847 remote_ip 10.8.0.154 122855 username hashtadani3 122855 mac 122855 bytes_out 0 122855 bytes_in 0 122855 station_ip 37.129.222.111 122855 port 176 122855 unique_id port 122855 remote_ip 10.8.0.154 122862 username hashtadani3 122862 mac 122862 bytes_out 0 122862 bytes_in 0 122862 station_ip 37.129.222.111 122862 port 176 122862 unique_id port 122862 remote_ip 10.8.0.154 122867 username sedighe 122867 mac 122867 bytes_out 0 122867 bytes_in 0 122867 station_ip 83.122.11.37 122867 port 169 122867 unique_id port 122867 remote_ip 10.8.0.146 122868 username hashtadani3 122868 mac 122868 bytes_out 0 122868 bytes_in 0 122868 station_ip 37.129.222.111 122868 port 96 122868 unique_id port 122868 remote_ip 10.8.1.94 122871 username hashtadani3 122871 mac 122871 bytes_out 0 122871 bytes_in 0 122871 station_ip 37.129.222.111 122871 port 176 122871 unique_id port 122871 remote_ip 10.8.0.154 122872 username hashtadani3 122872 mac 122872 bytes_out 0 122872 bytes_in 0 122872 station_ip 37.129.222.111 122872 port 96 122872 unique_id port 122872 remote_ip 10.8.1.94 122874 username sedighe 122874 mac 122874 bytes_out 0 122874 bytes_in 0 122874 station_ip 83.122.9.26 122874 port 157 122874 unique_id port 122874 remote_ip 10.8.0.146 122876 username hashtadani3 122876 mac 122876 bytes_out 0 122876 bytes_in 0 122876 station_ip 37.129.222.111 122876 port 157 122876 unique_id port 122876 remote_ip 10.8.0.154 122881 username hashtadani3 122881 mac 122881 bytes_out 0 122881 bytes_in 0 122881 station_ip 37.129.222.111 122881 port 96 122881 unique_id port 122881 remote_ip 10.8.1.94 122884 username hashtadani3 122884 mac 122884 bytes_out 0 122884 bytes_in 0 122884 station_ip 37.129.222.111 122884 port 96 122884 unique_id port 122884 remote_ip 10.8.1.94 122891 username hashtadani3 122891 mac 122891 bytes_out 0 122891 bytes_in 0 122891 station_ip 37.129.222.111 122891 port 157 122891 unique_id port 122891 remote_ip 10.8.0.154 122893 username hashtadani3 122893 mac 122848 username hashtadani3 122848 mac 122848 bytes_out 0 122848 bytes_in 0 122848 station_ip 37.129.222.111 122848 port 176 122848 unique_id port 122848 remote_ip 10.8.0.154 122849 username hashtadani3 122849 mac 122849 bytes_out 0 122849 bytes_in 0 122849 station_ip 37.129.222.111 122849 port 176 122849 unique_id port 122849 remote_ip 10.8.0.154 122851 username hashtadani3 122851 mac 122851 bytes_out 0 122851 bytes_in 0 122851 station_ip 37.129.222.111 122851 port 96 122851 unique_id port 122851 remote_ip 10.8.1.94 122856 username hashtadani3 122856 mac 122856 bytes_out 0 122856 bytes_in 0 122856 station_ip 37.129.222.111 122856 port 96 122856 unique_id port 122856 remote_ip 10.8.1.94 122857 username hashtadani3 122857 mac 122857 bytes_out 0 122857 bytes_in 0 122857 station_ip 37.129.222.111 122857 port 176 122857 unique_id port 122857 remote_ip 10.8.0.154 122858 username hashtadani3 122858 mac 122858 bytes_out 0 122858 bytes_in 0 122858 station_ip 37.129.222.111 122858 port 176 122858 unique_id port 122858 remote_ip 10.8.0.154 122860 username hashtadani3 122860 mac 122860 bytes_out 0 122860 bytes_in 0 122860 station_ip 37.129.222.111 122860 port 96 122860 unique_id port 122860 remote_ip 10.8.1.94 122861 username mohammadjavad 122861 mac 122861 bytes_out 2328383 122861 bytes_in 43056504 122861 station_ip 37.129.160.127 122861 port 157 122861 unique_id port 122861 remote_ip 10.8.0.142 122863 username hashtadani3 122863 mac 122863 bytes_out 0 122863 bytes_in 0 122863 station_ip 37.129.222.111 122863 port 157 122863 unique_id port 122863 remote_ip 10.8.0.154 122864 username hashtadani3 122864 mac 122864 bytes_out 0 122864 bytes_in 0 122864 station_ip 37.129.222.111 122864 port 96 122864 unique_id port 122864 remote_ip 10.8.1.94 122865 username hashtadani3 122865 mac 122865 bytes_out 0 122865 bytes_in 0 122865 station_ip 37.129.222.111 122865 port 157 122865 unique_id port 122865 remote_ip 10.8.0.154 122869 username hashtadani3 122869 mac 122869 bytes_out 0 122869 bytes_in 0 122869 station_ip 37.129.222.111 122869 port 176 122869 unique_id port 122869 remote_ip 10.8.0.154 122873 username hashtadani3 122873 mac 122873 bytes_out 0 122873 bytes_in 0 122873 station_ip 37.129.222.111 122873 port 176 122873 unique_id port 122873 remote_ip 10.8.0.154 122878 username hashtadani3 122878 mac 122878 bytes_out 0 122878 bytes_in 0 122878 station_ip 37.129.222.111 122878 port 176 122878 unique_id port 122878 remote_ip 10.8.0.154 122886 username hashtadani3 122886 mac 122886 bytes_out 0 122886 bytes_in 0 122886 station_ip 37.129.222.111 122886 port 176 122886 unique_id port 122886 remote_ip 10.8.0.154 122887 username hashtadani3 122887 mac 122887 bytes_out 0 122887 bytes_in 0 122887 station_ip 37.129.222.111 122887 port 157 122887 unique_id port 122887 remote_ip 10.8.0.154 122888 username hashtadani3 122888 mac 122888 bytes_out 0 122888 bytes_in 0 122888 station_ip 37.129.222.111 122888 port 96 122888 unique_id port 122888 remote_ip 10.8.1.94 122890 username hashtadani3 122890 mac 122890 bytes_out 0 122890 bytes_in 0 122890 station_ip 37.129.222.111 122890 port 157 122890 unique_id port 122890 remote_ip 10.8.0.154 122894 username hashtadani3 122894 mac 122894 bytes_out 0 122894 bytes_in 0 122894 station_ip 37.129.222.111 122894 port 157 122894 unique_id port 122894 remote_ip 10.8.0.154 122899 username hashtadani3 122899 mac 122852 unique_id port 122852 remote_ip 10.8.0.154 122853 username hashtadani3 122853 mac 122853 bytes_out 0 122853 bytes_in 0 122853 station_ip 37.129.222.111 122853 port 96 122853 unique_id port 122853 remote_ip 10.8.1.94 122854 username hashtadani3 122854 mac 122854 bytes_out 0 122854 bytes_in 0 122854 station_ip 37.129.222.111 122854 port 176 122854 unique_id port 122854 remote_ip 10.8.0.154 122859 username hashtadani3 122859 mac 122859 bytes_out 0 122859 bytes_in 0 122859 station_ip 37.129.222.111 122859 port 96 122859 unique_id port 122859 remote_ip 10.8.1.94 122866 username hashtadani3 122866 mac 122866 bytes_out 0 122866 bytes_in 0 122866 station_ip 37.129.222.111 122866 port 157 122866 unique_id port 122866 remote_ip 10.8.0.154 122870 username hashtadani3 122870 mac 122870 bytes_out 0 122870 bytes_in 0 122870 station_ip 37.129.222.111 122870 port 176 122870 unique_id port 122870 remote_ip 10.8.0.154 122875 username hashtadani3 122875 mac 122875 bytes_out 0 122875 bytes_in 0 122875 station_ip 37.129.222.111 122875 port 176 122875 unique_id port 122875 remote_ip 10.8.0.154 122877 username hashtadani3 122877 mac 122877 bytes_out 0 122877 bytes_in 0 122877 station_ip 37.129.222.111 122877 port 157 122877 unique_id port 122877 remote_ip 10.8.0.154 122879 username hashtadani3 122879 mac 122879 bytes_out 0 122879 bytes_in 0 122879 station_ip 37.129.222.111 122879 port 96 122879 unique_id port 122879 remote_ip 10.8.1.94 122880 username hashtadani3 122880 mac 122880 bytes_out 0 122880 bytes_in 0 122880 station_ip 37.129.222.111 122880 port 157 122880 unique_id port 122880 remote_ip 10.8.0.154 122882 username hashtadani3 122882 mac 122882 bytes_out 0 122882 bytes_in 0 122882 station_ip 37.129.222.111 122882 port 96 122882 unique_id port 122882 remote_ip 10.8.1.94 122883 username hashtadani3 122883 mac 122883 bytes_out 0 122883 bytes_in 0 122883 station_ip 37.129.222.111 122883 port 157 122883 unique_id port 122883 remote_ip 10.8.0.154 122885 username hashtadani3 122885 mac 122885 bytes_out 0 122885 bytes_in 0 122885 station_ip 37.129.222.111 122885 port 157 122885 unique_id port 122885 remote_ip 10.8.0.154 122889 username hashtadani3 122889 mac 122889 bytes_out 0 122889 bytes_in 0 122889 station_ip 37.129.222.111 122889 port 157 122889 unique_id port 122889 remote_ip 10.8.0.154 122892 username hashtadani3 122892 mac 122892 bytes_out 0 122892 bytes_in 0 122892 station_ip 37.129.222.111 122892 port 183 122892 unique_id port 122892 remote_ip 10.8.0.154 122896 username hashtadani3 122896 mac 122896 bytes_out 0 122896 bytes_in 0 122896 station_ip 37.129.222.111 122896 port 96 122896 unique_id port 122896 remote_ip 10.8.1.94 122897 username hashtadani3 122897 mac 122897 bytes_out 0 122897 bytes_in 0 122897 station_ip 37.129.222.111 122897 port 182 122897 unique_id port 122897 remote_ip 10.8.0.154 122903 username hashtadani3 122903 mac 122903 bytes_out 0 122903 bytes_in 0 122903 station_ip 37.129.222.111 122903 port 176 122903 unique_id port 122903 remote_ip 10.8.0.154 122905 username hashtadani3 122905 mac 122905 bytes_out 0 122905 bytes_in 0 122905 station_ip 37.129.222.111 122905 port 176 122905 unique_id port 122905 remote_ip 10.8.0.154 122910 username hashtadani3 122910 mac 122910 bytes_out 0 122910 bytes_in 0 122910 station_ip 37.129.222.111 122910 port 99 122910 unique_id port 122910 remote_ip 10.8.1.94 122893 bytes_out 0 122893 bytes_in 0 122893 station_ip 37.129.222.111 122893 port 96 122893 unique_id port 122893 remote_ip 10.8.1.94 122895 username sedighe 122895 mac 122895 bytes_out 28908 122895 bytes_in 33013 122895 station_ip 83.122.9.26 122895 port 182 122895 unique_id port 122895 remote_ip 10.8.0.146 122898 username hashtadani3 122898 mac 122898 bytes_out 0 122898 bytes_in 0 122898 station_ip 37.129.222.111 122898 port 182 122898 unique_id port 122898 remote_ip 10.8.0.154 122901 username mohammadjavad 122901 mac 122901 bytes_out 114593 122901 bytes_in 5045760 122901 station_ip 113.203.26.250 122901 port 176 122901 unique_id port 122901 remote_ip 10.8.0.142 122904 username hashtadani3 122904 mac 122904 bytes_out 0 122904 bytes_in 0 122904 station_ip 37.129.222.111 122904 port 176 122904 unique_id port 122904 remote_ip 10.8.0.154 122906 username hashtadani3 122906 mac 60336 username arezoo 60336 kill_reason Maximum check online fails reached 60336 mac 5.238.45.87:49173: Unknown host 60336 bytes_out 0 60336 bytes_in 0 60336 station_ip 5.238.45.87:49173 60336 port 1017 60336 unique_id port 122906 bytes_out 0 122906 bytes_in 0 122906 station_ip 37.129.222.111 122906 port 99 122906 unique_id port 122906 remote_ip 10.8.1.94 122908 username hashtadani3 122908 mac 122908 bytes_out 0 122908 bytes_in 0 122908 station_ip 37.129.222.111 122908 port 99 122908 unique_id port 122908 remote_ip 10.8.1.94 122911 username hashtadani3 122911 mac 122911 bytes_out 0 122911 bytes_in 0 122911 station_ip 37.129.222.111 122911 port 176 122911 unique_id port 122911 remote_ip 10.8.0.154 122915 username hashtadani3 122915 mac 122915 bytes_out 0 122915 bytes_in 0 122915 station_ip 37.129.222.111 122915 port 176 122915 unique_id port 122915 remote_ip 10.8.0.154 122920 username jafari 122920 kill_reason Another user logged on this global unique id 122920 mac 122920 bytes_out 0 122920 bytes_in 0 122920 station_ip 37.137.8.47 122920 port 169 122920 unique_id port 122920 remote_ip 10.8.0.242 122922 username hashtadani3 122922 mac 122922 bytes_out 0 122922 bytes_in 0 122922 station_ip 37.129.222.111 122922 port 176 122922 unique_id port 122922 remote_ip 10.8.0.154 122925 username hashtadani3 122925 mac 122925 bytes_out 0 122925 bytes_in 0 122925 station_ip 37.129.222.111 122925 port 176 122925 unique_id port 122925 remote_ip 10.8.0.154 122929 username hashtadani3 122929 mac 122929 bytes_out 0 122929 bytes_in 0 122929 station_ip 37.129.222.111 122929 port 96 122929 unique_id port 122929 remote_ip 10.8.1.94 122935 username hashtadani3 122935 mac 122935 bytes_out 0 122935 bytes_in 0 122935 station_ip 37.129.222.111 122935 port 182 122935 unique_id port 122935 remote_ip 10.8.0.154 122938 username hashtadani3 122938 mac 122938 bytes_out 0 122938 bytes_in 0 122938 station_ip 37.129.222.111 122938 port 157 122938 unique_id port 122938 remote_ip 10.8.0.154 122939 username hashtadani3 122939 mac 122939 bytes_out 0 122939 bytes_in 0 122939 station_ip 37.129.222.111 122939 port 157 122939 unique_id port 122939 remote_ip 10.8.0.154 122944 username hashtadani3 60369 username arezoo 122944 mac 122944 bytes_out 0 122944 bytes_in 0 122944 station_ip 37.129.222.111 122944 port 157 122944 unique_id port 122944 remote_ip 10.8.0.154 122945 username hashtadani3 122945 mac 122945 bytes_out 0 122945 bytes_in 0 122945 station_ip 37.129.222.111 122945 port 157 122945 unique_id port 122945 remote_ip 10.8.0.154 122899 bytes_out 0 122899 bytes_in 0 122899 station_ip 37.129.222.111 60372 username arezoo 60372 kill_reason Maximum check online fails reached 60372 mac 5.238.45.115:51945: Unknown host 60372 bytes_out 0 60372 bytes_in 0 60372 station_ip 5.238.45.115:51945 60372 port 1017 60372 unique_id port 122899 port 182 122899 unique_id port 122899 remote_ip 10.8.0.154 122900 username hashtadani3 122900 mac 122900 bytes_out 0 122900 bytes_in 0 122900 station_ip 37.129.222.111 122900 port 182 122900 unique_id port 122900 remote_ip 10.8.0.154 122902 username hashtadani3 122902 mac 122902 bytes_out 0 122902 bytes_in 0 122902 station_ip 37.129.222.111 122902 port 176 122902 unique_id port 122902 remote_ip 10.8.0.154 122907 username hashtadani3 122907 mac 122907 bytes_out 0 122907 bytes_in 0 122907 station_ip 37.129.222.111 122907 port 176 122907 unique_id port 122907 remote_ip 10.8.0.154 122909 username hashtadani3 122909 mac 122909 bytes_out 0 122909 bytes_in 0 122909 station_ip 37.129.222.111 122909 port 176 122909 unique_id port 122909 remote_ip 10.8.0.154 122912 username hashtadani3 122912 mac 122912 bytes_out 0 122912 bytes_in 0 122912 station_ip 37.129.222.111 122912 port 99 122912 unique_id port 122912 remote_ip 10.8.1.94 122916 username hashtadani3 122916 mac 122916 bytes_out 0 122916 bytes_in 0 122916 station_ip 37.129.222.111 122916 port 176 122916 unique_id port 122916 remote_ip 10.8.0.154 122917 username hashtadani3 122917 mac 122917 bytes_out 0 122917 bytes_in 0 122917 station_ip 37.129.222.111 122917 port 99 122917 unique_id port 122917 remote_ip 10.8.1.94 122919 username barzegar 122919 mac 122919 bytes_out 0 122919 bytes_in 0 122919 station_ip 5.119.47.63 122919 port 96 122919 unique_id port 122919 remote_ip 10.8.1.174 122923 username hashtadani3 122923 mac 122923 bytes_out 0 122923 bytes_in 0 122923 station_ip 37.129.222.111 122923 port 96 122923 unique_id port 122923 remote_ip 10.8.1.94 122926 username hashtadani3 122926 mac 122926 bytes_out 0 122926 bytes_in 0 122926 station_ip 37.129.222.111 122926 port 176 122926 unique_id port 122926 remote_ip 10.8.0.154 122927 username hashtadani3 122927 mac 122927 bytes_out 0 122927 bytes_in 0 122927 station_ip 37.129.222.111 122927 port 176 122927 unique_id port 122927 remote_ip 10.8.0.154 122930 username hashtadani3 122930 mac 122930 bytes_out 0 122930 bytes_in 0 122930 station_ip 37.129.222.111 122930 port 176 122930 unique_id port 122930 remote_ip 10.8.0.154 122931 username sedighe 122931 mac 122931 bytes_out 93752 122931 bytes_in 297282 122931 station_ip 83.122.9.26 122931 port 157 122931 unique_id port 122931 remote_ip 10.8.0.146 122932 username hashtadani3 122932 mac 122932 bytes_out 0 122932 bytes_in 0 122932 station_ip 37.129.222.111 122932 port 96 122932 unique_id port 122932 remote_ip 10.8.1.94 122936 username hashtadani3 122936 mac 122936 bytes_out 0 122936 bytes_in 0 122936 station_ip 37.129.222.111 122936 port 157 122936 unique_id port 122936 remote_ip 10.8.0.154 122940 username hashtadani3 122940 mac 122940 bytes_out 0 122940 bytes_in 0 122940 station_ip 37.129.222.111 122940 port 96 122940 unique_id port 122940 remote_ip 10.8.1.94 122942 username sedighe 122942 mac 122942 bytes_out 0 122942 bytes_in 0 122942 station_ip 83.122.9.26 122942 port 176 122942 unique_id port 122942 remote_ip 10.8.0.146 122946 username hashtadani3 122946 mac 122946 bytes_out 0 122946 bytes_in 0 60369 kill_reason Maximum check online fails reached 60369 mac 5.238.45.115:49257: Unknown host 60369 bytes_out 0 60369 bytes_in 0 60369 station_ip 5.238.45.115:49257 60369 port 1017 60369 unique_id port 122913 username hashtadani3 122913 mac 122913 bytes_out 0 122913 bytes_in 0 122913 station_ip 37.129.222.111 122913 port 176 122913 unique_id port 122913 remote_ip 10.8.0.154 122914 username hashtadani3 122914 mac 122914 bytes_out 0 122914 bytes_in 0 122914 station_ip 37.129.222.111 122914 port 176 122914 unique_id port 122914 remote_ip 10.8.0.154 122918 username hashtadani3 122918 mac 122918 bytes_out 0 122918 bytes_in 0 122918 station_ip 37.129.222.111 122918 port 176 122918 unique_id port 122918 remote_ip 10.8.0.154 122921 username hashtadani3 122921 mac 122921 bytes_out 0 122921 bytes_in 0 122921 station_ip 37.129.222.111 122921 port 96 122921 unique_id port 122921 remote_ip 10.8.1.94 122924 username hashtadani3 122924 mac 122924 bytes_out 0 122924 bytes_in 0 122924 station_ip 37.129.222.111 122924 port 176 122924 unique_id port 122924 remote_ip 10.8.0.154 122928 username hashtadani3 122928 mac 122928 bytes_out 0 122928 bytes_in 0 122928 station_ip 37.129.222.111 122928 port 176 122928 unique_id port 122928 remote_ip 10.8.0.154 122933 username hashtadani3 122933 mac 122933 bytes_out 0 122933 bytes_in 0 122933 station_ip 37.129.222.111 122933 port 157 122933 unique_id port 122933 remote_ip 10.8.0.154 122934 username hashtadani3 122934 mac 122934 bytes_out 0 122934 bytes_in 0 122934 station_ip 37.129.222.111 122934 port 157 122934 unique_id port 122934 remote_ip 10.8.0.154 122937 username hashtadani3 122937 mac 122937 bytes_out 0 122937 bytes_in 0 122937 station_ip 37.129.222.111 122937 port 96 122937 unique_id port 122937 remote_ip 10.8.1.94 122941 username hashtadani3 122941 mac 122941 bytes_out 0 122941 bytes_in 0 122941 station_ip 37.129.222.111 122941 port 157 122941 unique_id port 122941 remote_ip 10.8.0.154 122943 username hashtadani3 122943 mac 122943 bytes_out 0 122943 bytes_in 0 122943 station_ip 37.129.222.111 122943 port 96 122943 unique_id port 122943 remote_ip 10.8.1.94 122947 username mehdizare 122947 mac 122947 bytes_out 0 122947 bytes_in 0 122947 station_ip 5.120.59.106 122947 port 94 122947 unique_id port 122947 remote_ip 10.8.1.42 122949 username hashtadani3 122949 mac 122949 bytes_out 0 122949 bytes_in 0 122949 station_ip 37.129.222.111 122949 port 157 122949 unique_id port 122949 remote_ip 10.8.0.154 122952 username hashtadani3 122952 mac 122952 bytes_out 0 122952 bytes_in 0 122952 station_ip 37.129.222.111 122952 port 99 122952 unique_id port 122952 remote_ip 10.8.1.94 122953 username hashtadani3 122953 mac 122953 bytes_out 0 122953 bytes_in 0 122953 station_ip 37.129.222.111 122953 port 182 122953 unique_id port 122953 remote_ip 10.8.0.154 122954 username hashtadani3 122954 mac 122954 bytes_out 0 122954 bytes_in 0 122954 station_ip 37.129.222.111 122954 port 99 122954 unique_id port 122954 remote_ip 10.8.1.94 122959 username hashtadani3 122959 mac 122959 bytes_out 0 122959 bytes_in 0 122959 station_ip 37.129.222.111 122959 port 99 122959 unique_id port 122959 remote_ip 10.8.1.94 122960 username hashtadani3 122960 mac 122960 bytes_out 0 122960 bytes_in 0 122960 station_ip 37.129.222.111 122960 port 182 122960 unique_id port 122960 remote_ip 10.8.0.154 122966 username mohammadjavad 122966 mac 122966 bytes_out 219586 122946 station_ip 37.129.222.111 122946 port 96 122946 unique_id port 122946 remote_ip 10.8.1.94 122948 username hashtadani3 122948 mac 122948 bytes_out 0 122948 bytes_in 0 122948 station_ip 37.129.222.111 122948 port 157 122948 unique_id port 122948 remote_ip 10.8.0.154 122956 username hashtadani3 122956 kill_reason Maximum check online fails reached 122956 mac 122956 bytes_out 0 122956 bytes_in 0 122956 station_ip 37.129.222.111 122956 port 96 122956 unique_id port 122958 username hashtadani3 122958 mac 122958 bytes_out 0 122958 bytes_in 0 60376 username arezoo 60376 kill_reason Maximum check online fails reached 60376 mac 5.238.45.115:49685: Unknown host 60376 bytes_out 0 60376 bytes_in 0 60376 station_ip 5.238.45.115:49685 60376 port 1017 60376 unique_id port 122958 station_ip 37.129.222.111 122958 port 182 122958 unique_id port 122958 remote_ip 10.8.0.154 122962 username hashtadani3 122962 mac 122962 bytes_out 0 122962 bytes_in 0 122962 station_ip 37.129.222.111 122962 port 182 122962 unique_id port 122962 remote_ip 10.8.0.154 122968 username hashtadani3 122968 mac 122968 bytes_out 0 122968 bytes_in 0 122968 station_ip 37.129.222.111 122968 port 157 122968 unique_id port 122968 remote_ip 10.8.0.154 122971 username hashtadani3 122971 mac 122971 bytes_out 0 122971 bytes_in 0 122971 station_ip 37.129.222.111 122971 port 157 122971 unique_id port 122971 remote_ip 10.8.0.154 122972 username hashtadani3 122972 mac 122972 bytes_out 0 122972 bytes_in 0 122972 station_ip 37.129.222.111 122972 port 99 122972 unique_id port 122972 remote_ip 10.8.1.94 122973 username hashtadani3 122973 mac 122973 bytes_out 0 122973 bytes_in 0 122973 station_ip 37.129.222.111 122973 port 157 122973 unique_id port 122973 remote_ip 10.8.0.154 122975 username hashtadani3 122975 mac 122975 bytes_out 0 122975 bytes_in 0 122975 station_ip 37.129.222.111 122975 port 157 122975 unique_id port 122975 remote_ip 10.8.0.154 122978 username hashtadani3 122978 mac 122978 bytes_out 0 122978 bytes_in 0 122978 station_ip 37.129.222.111 122978 port 157 122978 unique_id port 122978 remote_ip 10.8.0.154 122979 username hashtadani3 122979 mac 122979 bytes_out 0 122979 bytes_in 0 122979 station_ip 37.129.222.111 122979 port 157 122979 unique_id port 122979 remote_ip 10.8.0.154 122980 username hashtadani3 122980 mac 122980 bytes_out 0 122980 bytes_in 0 122980 station_ip 37.129.222.111 122980 port 99 122980 unique_id port 122980 remote_ip 10.8.1.94 122982 username mosi 122982 mac 122982 bytes_out 0 122982 bytes_in 0 122982 station_ip 89.34.32.12 122982 port 157 122982 unique_id port 122982 remote_ip 10.8.0.138 122986 username hashtadani3 122986 mac 122986 bytes_out 0 122986 bytes_in 0 122986 station_ip 37.129.222.111 122986 port 157 122986 unique_id port 122986 remote_ip 10.8.0.154 122987 username hashtadani3 122987 mac 122987 bytes_out 0 122987 bytes_in 0 122987 station_ip 37.129.222.111 122987 port 99 122987 unique_id port 122987 remote_ip 10.8.1.94 122990 username hashtadani3 122990 mac 122990 bytes_out 0 122990 bytes_in 0 122990 station_ip 37.129.222.111 122990 port 157 122990 unique_id port 122990 remote_ip 10.8.0.154 122991 username hashtadani3 122991 mac 122991 bytes_out 0 122991 bytes_in 0 122991 station_ip 37.129.222.111 122991 port 99 122991 unique_id port 122991 remote_ip 10.8.1.94 122994 username hashtadani3 122994 mac 122994 bytes_out 0 122994 bytes_in 0 122994 station_ip 37.129.222.111 122950 username hashtadani3 122950 mac 122950 bytes_out 0 122950 bytes_in 0 122950 station_ip 37.129.222.111 122950 port 99 122950 unique_id port 122950 remote_ip 10.8.1.94 122951 username hashtadani3 122951 mac 122951 bytes_out 0 122951 bytes_in 0 122951 station_ip 37.129.222.111 122951 port 157 122951 unique_id port 122951 remote_ip 10.8.0.154 122955 username hashtadani3 122955 mac 122955 bytes_out 0 122955 bytes_in 0 122955 station_ip 37.129.222.111 122955 port 182 122955 unique_id port 122955 remote_ip 10.8.0.154 122957 username hashtadani3 122957 mac 122957 bytes_out 0 122957 bytes_in 0 122957 station_ip 37.129.222.111 122957 port 99 122957 unique_id port 122957 remote_ip 10.8.1.94 122961 username hashtadani3 122961 mac 122961 bytes_out 0 122961 bytes_in 0 122961 station_ip 37.129.222.111 122961 port 99 122961 unique_id port 122961 remote_ip 10.8.1.94 122963 username jafari 122963 kill_reason Another user logged on this global unique id 122963 mac 122963 bytes_out 0 122963 bytes_in 0 122963 station_ip 37.137.8.47 122963 port 169 122963 unique_id port 122964 username hashtadani3 122964 mac 122964 bytes_out 0 122964 bytes_in 0 122964 station_ip 37.129.222.111 122964 port 99 122964 unique_id port 122964 remote_ip 10.8.1.94 122965 username hashtadani3 122965 mac 122965 bytes_out 0 122965 bytes_in 0 122965 station_ip 37.129.222.111 122965 port 182 122965 unique_id port 122965 remote_ip 10.8.0.154 122967 username hashtadani3 122967 mac 122967 bytes_out 0 122967 bytes_in 0 122967 station_ip 37.129.222.111 122967 port 99 122967 unique_id port 122967 remote_ip 10.8.1.94 122970 username hashtadani3 122970 mac 122970 bytes_out 0 122970 bytes_in 0 122970 station_ip 37.129.222.111 122970 port 99 122970 unique_id port 122970 remote_ip 10.8.1.94 122977 username hashtadani3 122977 mac 122977 bytes_out 0 122977 bytes_in 0 122977 station_ip 37.129.222.111 122977 port 99 122977 unique_id port 122977 remote_ip 10.8.1.94 122983 username barzegar 122983 mac 122983 bytes_out 62810 122983 bytes_in 109245 122983 station_ip 5.119.47.63 122983 port 176 122983 unique_id port 122983 remote_ip 10.8.0.234 122985 username hashtadani3 122985 mac 122985 bytes_out 0 122985 bytes_in 0 122985 station_ip 37.129.222.111 122985 port 99 122985 unique_id port 122985 remote_ip 10.8.1.94 122989 username hashtadani3 122989 mac 122989 bytes_out 0 122989 bytes_in 0 122989 station_ip 37.129.222.111 122989 port 99 122989 unique_id port 122989 remote_ip 10.8.1.94 122993 username hashtadani3 122993 mac 122993 bytes_out 0 122993 bytes_in 0 122993 station_ip 37.129.222.111 122993 port 99 122993 unique_id port 122993 remote_ip 10.8.1.94 122997 username hashtadani3 122997 mac 122997 bytes_out 0 122997 bytes_in 0 122997 station_ip 37.129.222.111 122997 port 99 122997 unique_id port 122997 remote_ip 10.8.1.94 123002 username hashtadani3 123002 mac 123002 bytes_out 0 123002 bytes_in 0 123002 station_ip 37.129.222.111 123002 port 157 123002 unique_id port 123002 remote_ip 10.8.0.154 123004 username hashtadani3 123004 mac 123004 bytes_out 0 123004 bytes_in 0 123004 station_ip 37.129.222.111 123004 port 99 123004 unique_id port 123004 remote_ip 10.8.1.94 123007 username mohsenaskari 123007 mac 123007 bytes_out 310661 123007 bytes_in 2770508 123007 station_ip 46.225.232.78 123007 port 157 123007 unique_id port 123007 remote_ip 10.8.0.246 123008 username hashtadani3 123008 mac 123008 bytes_out 0 122966 bytes_in 1787936 122966 station_ip 113.203.88.79 122966 port 157 122966 unique_id port 122966 remote_ip 10.8.0.142 122969 username hashtadani3 122969 mac 122969 bytes_out 0 122969 bytes_in 0 122969 station_ip 37.129.222.111 122969 port 157 122969 unique_id port 122969 remote_ip 10.8.0.154 122974 username hashtadani3 122974 mac 122974 bytes_out 0 122974 bytes_in 0 122974 station_ip 37.129.222.111 122974 port 99 122974 unique_id port 122974 remote_ip 10.8.1.94 122976 username hashtadani3 122976 mac 122976 bytes_out 0 122976 bytes_in 0 122976 station_ip 37.129.222.111 122976 port 157 122976 unique_id port 122976 remote_ip 10.8.0.154 122981 username hashtadani3 122981 mac 122981 bytes_out 0 122981 bytes_in 0 122981 station_ip 37.129.222.111 122981 port 183 122981 unique_id port 122981 remote_ip 10.8.0.154 122984 username jafari 122984 mac 122984 bytes_out 0 122984 bytes_in 0 122984 station_ip 37.137.8.47 122984 port 169 122984 unique_id port 122988 username hashtadani3 122988 mac 122988 bytes_out 0 122988 bytes_in 0 122988 station_ip 37.129.222.111 122988 port 157 122988 unique_id port 122988 remote_ip 10.8.0.154 122992 username hashtadani3 122992 mac 122992 bytes_out 0 122992 bytes_in 0 122992 station_ip 37.129.222.111 122992 port 157 122992 unique_id port 122992 remote_ip 10.8.0.154 122996 username hashtadani3 122996 mac 122996 bytes_out 0 122996 bytes_in 0 60449 username arezoo 60449 kill_reason Maximum check online fails reached 60449 mac 5.117.25.183:29957: Unknown host 60449 bytes_out 0 60449 bytes_in 0 60449 station_ip 5.117.25.183:29957 60449 port 1017 60449 unique_id port 122996 station_ip 37.129.222.111 122996 port 157 122996 unique_id port 122996 remote_ip 10.8.0.154 122998 username hashtadani3 122998 mac 122998 bytes_out 0 122998 bytes_in 0 122998 station_ip 37.129.222.111 122998 port 157 122998 unique_id port 122998 remote_ip 10.8.0.154 122999 username barzegar 122999 mac 122999 bytes_out 0 122999 bytes_in 0 122999 station_ip 5.119.47.63 122999 port 157 122999 unique_id port 122999 remote_ip 10.8.0.234 123001 username hashtadani3 123001 mac 123001 bytes_out 0 123001 bytes_in 0 123001 station_ip 37.129.222.111 123001 port 99 123001 unique_id port 123001 remote_ip 10.8.1.94 123003 username hashtadani3 123003 mac 123003 bytes_out 0 123003 bytes_in 0 123003 station_ip 37.129.222.111 123003 port 169 123003 unique_id port 123003 remote_ip 10.8.0.154 123013 username hashtadani3 123013 mac 123013 bytes_out 0 123013 bytes_in 0 123013 station_ip 37.129.222.111 123013 port 99 123013 unique_id port 123013 remote_ip 10.8.1.94 123016 username barzegar 123016 mac 123016 bytes_out 3105 123016 bytes_in 5406 123016 station_ip 5.119.47.63 123016 port 157 123016 unique_id port 123016 remote_ip 10.8.0.234 123019 username hashtadani3 123019 mac 123019 bytes_out 0 123019 bytes_in 0 123019 station_ip 37.129.222.111 123019 port 99 123019 unique_id port 123019 remote_ip 10.8.1.94 123020 username hashtadani3 123020 mac 123020 bytes_out 0 123020 bytes_in 0 123020 station_ip 37.129.222.111 123020 port 157 123020 unique_id port 123020 remote_ip 10.8.0.154 123024 username hashtadani3 123024 mac 123024 bytes_out 0 123024 bytes_in 0 123024 station_ip 37.129.222.111 123024 port 157 123024 unique_id port 123024 remote_ip 10.8.0.154 123028 username hashtadani3 123028 mac 123028 bytes_out 0 123028 bytes_in 0 123028 station_ip 37.129.222.111 123028 port 99 122994 port 157 122994 unique_id port 122994 remote_ip 10.8.0.154 122995 username hashtadani3 122995 mac 122995 bytes_out 0 122995 bytes_in 0 122995 station_ip 37.129.222.111 122995 port 99 122995 unique_id port 122995 remote_ip 10.8.1.94 123000 username hashtadani3 123000 mac 123000 bytes_out 0 123000 bytes_in 0 123000 station_ip 37.129.222.111 123000 port 169 123000 unique_id port 123000 remote_ip 10.8.0.154 123005 username hashtadani3 123005 mac 123005 bytes_out 0 123005 bytes_in 0 123005 station_ip 37.129.222.111 123005 port 169 123005 unique_id port 123005 remote_ip 10.8.0.154 123006 username hashtadani3 123006 mac 123006 bytes_out 0 123006 bytes_in 0 123006 station_ip 37.129.222.111 123006 port 99 123006 unique_id port 123006 remote_ip 10.8.1.94 123011 username hashtadani3 123011 mac 123011 bytes_out 0 123011 bytes_in 0 123011 station_ip 37.129.222.111 123011 port 176 123011 unique_id port 123011 remote_ip 10.8.0.154 123012 username hashtadani3 123012 mac 123012 bytes_out 0 123012 bytes_in 0 123012 station_ip 37.129.222.111 123012 port 176 123012 unique_id port 123012 remote_ip 10.8.0.154 123014 username mohsenaskari 123014 mac 123014 bytes_out 222346 123014 bytes_in 2722428 123014 station_ip 46.225.232.78 123014 port 169 123014 unique_id port 123014 remote_ip 10.8.0.246 123018 username hashtadani3 123018 mac 123018 bytes_out 0 123018 bytes_in 0 123018 station_ip 37.129.222.111 123018 port 157 123018 unique_id port 123018 remote_ip 10.8.0.154 123022 username hashtadani3 123022 mac 123022 bytes_out 0 123022 bytes_in 0 123022 station_ip 37.129.222.111 123022 port 157 123022 unique_id port 123022 remote_ip 10.8.0.154 123023 username hashtadani3 123023 mac 123023 bytes_out 0 123023 bytes_in 0 123023 station_ip 37.129.222.111 123023 port 99 123023 unique_id port 123023 remote_ip 10.8.1.94 123026 username hashtadani3 123026 mac 123026 bytes_out 0 123026 bytes_in 0 123026 station_ip 37.129.222.111 123026 port 157 123026 unique_id port 123026 remote_ip 10.8.0.154 123027 username hashtadani3 123027 mac 123027 bytes_out 0 123027 bytes_in 0 123027 station_ip 37.129.222.111 123027 port 157 123027 unique_id port 123027 remote_ip 10.8.0.154 123030 username hashtadani3 123030 mac 123030 bytes_out 0 123030 bytes_in 0 123030 station_ip 37.129.222.111 123030 port 157 123030 unique_id port 123030 remote_ip 10.8.0.154 123032 username hashtadani3 123032 mac 123032 bytes_out 0 123032 bytes_in 0 123032 station_ip 37.129.222.111 123032 port 169 123032 unique_id port 123032 remote_ip 10.8.0.154 123034 username hashtadani3 123034 mac 123034 bytes_out 0 123034 bytes_in 0 123034 station_ip 37.129.222.111 123034 port 169 123034 unique_id port 123034 remote_ip 10.8.0.154 123037 username hashtadani3 123037 mac 123037 bytes_out 0 123037 bytes_in 0 123037 station_ip 37.129.222.111 123037 port 169 123037 unique_id port 123037 remote_ip 10.8.0.154 123038 username hashtadani3 123038 mac 123038 bytes_out 0 123038 bytes_in 0 123038 station_ip 37.129.222.111 123038 port 99 123038 unique_id port 123038 remote_ip 10.8.1.94 123042 username hashtadani3 123042 mac 123042 bytes_out 0 123042 bytes_in 0 123042 station_ip 37.129.222.111 123042 port 169 123042 unique_id port 123042 remote_ip 10.8.0.154 123044 username barzegar 123044 mac 123044 bytes_out 8207 123044 bytes_in 13223 123044 station_ip 5.119.47.63 123044 port 157 123044 unique_id port 123008 bytes_in 0 123008 station_ip 37.129.222.111 123008 port 157 123008 unique_id port 123008 remote_ip 10.8.0.154 123009 username hashtadani3 123009 mac 123009 bytes_out 0 123009 bytes_in 0 123009 station_ip 37.129.222.111 123009 port 99 123009 unique_id port 123009 remote_ip 10.8.1.94 123010 username hashtadani3 123010 mac 123010 bytes_out 0 123010 bytes_in 0 123010 station_ip 37.129.222.111 123010 port 176 123010 unique_id port 123010 remote_ip 10.8.0.154 123015 username hashtadani3 123015 mac 123015 bytes_out 0 123015 bytes_in 0 123015 station_ip 37.129.222.111 123015 port 176 123015 unique_id port 123015 remote_ip 10.8.0.154 123017 username hashtadani3 123017 mac 123017 bytes_out 0 123017 bytes_in 0 123017 station_ip 37.129.222.111 123017 port 99 123017 unique_id port 123017 remote_ip 10.8.1.94 123021 username hashtadani3 123021 mac 123021 bytes_out 0 123021 bytes_in 0 123021 station_ip 37.129.222.111 123021 port 99 123021 unique_id port 123021 remote_ip 10.8.1.94 123025 username hashtadani3 123025 mac 123025 bytes_out 0 123025 bytes_in 0 123025 station_ip 37.129.222.111 123025 port 99 123025 unique_id port 123025 remote_ip 10.8.1.94 123029 username hashtadani3 123029 mac 123029 bytes_out 0 123029 bytes_in 0 123029 station_ip 37.129.222.111 123029 port 157 123029 unique_id port 123029 remote_ip 10.8.0.154 123031 username hashtadani3 123031 mac 123031 bytes_out 0 123031 bytes_in 0 123031 station_ip 37.129.222.111 123031 port 99 123031 unique_id port 123031 remote_ip 10.8.1.94 123036 username hashtadani3 123036 mac 123036 bytes_out 0 123036 bytes_in 0 123036 station_ip 37.129.222.111 123036 port 169 123036 unique_id port 123036 remote_ip 10.8.0.154 123040 username hashtadani3 123040 mac 123040 bytes_out 0 123040 bytes_in 0 123040 station_ip 37.129.222.111 123040 port 169 123040 unique_id port 123040 remote_ip 10.8.0.154 123041 username hashtadani3 123041 mac 123041 bytes_out 0 123041 bytes_in 0 123041 station_ip 37.129.222.111 123041 port 99 123041 unique_id port 123041 remote_ip 10.8.1.94 123047 username hashtadani3 123047 mac 123047 bytes_out 0 123047 bytes_in 0 123047 station_ip 37.129.222.111 123047 port 157 123047 unique_id port 123047 remote_ip 10.8.0.154 123049 username hashtadani3 123049 mac 123049 bytes_out 0 123049 bytes_in 0 123049 station_ip 37.129.222.111 123049 port 99 123049 unique_id port 123049 remote_ip 10.8.1.94 123051 username hashtadani3 123051 mac 123051 bytes_out 0 123051 bytes_in 0 123051 station_ip 37.129.222.111 123051 port 157 123051 unique_id port 123051 remote_ip 10.8.0.154 123054 username hashtadani3 123054 mac 123054 bytes_out 0 123054 bytes_in 0 123054 station_ip 37.129.222.111 123054 port 157 123054 unique_id port 123054 remote_ip 10.8.0.154 123056 username hashtadani3 123056 mac 123056 bytes_out 0 123056 bytes_in 0 123056 station_ip 37.129.222.111 123056 port 157 123056 unique_id port 123056 remote_ip 10.8.0.154 123059 username hashtadani3 123059 mac 123059 bytes_out 0 123059 bytes_in 0 123059 station_ip 37.129.222.111 123059 port 99 123059 unique_id port 123059 remote_ip 10.8.1.94 123060 username hashtadani3 123060 mac 123060 bytes_out 0 123060 bytes_in 0 123060 station_ip 37.129.222.111 123060 port 157 123060 unique_id port 123060 remote_ip 10.8.0.154 123061 username hashtadani3 123061 mac 123061 bytes_out 0 123061 bytes_in 0 123061 station_ip 37.129.222.111 123061 port 157 123028 unique_id port 123028 remote_ip 10.8.1.94 123033 username hashtadani3 123033 mac 123033 bytes_out 0 123033 bytes_in 0 123033 station_ip 37.129.222.111 123033 port 99 123033 unique_id port 123033 remote_ip 10.8.1.94 123035 username hashtadani3 123035 mac 123035 bytes_out 0 123035 bytes_in 0 123035 station_ip 37.129.222.111 123035 port 99 123035 unique_id port 123035 remote_ip 10.8.1.94 123039 username hashtadani3 123039 mac 123039 bytes_out 0 123039 bytes_in 0 123039 station_ip 37.129.222.111 123039 port 169 123039 unique_id port 123039 remote_ip 10.8.0.154 123043 username hashtadani3 123043 mac 123043 bytes_out 0 123043 bytes_in 0 123043 station_ip 37.129.222.111 123043 port 169 123043 unique_id port 123043 remote_ip 10.8.0.154 123046 username hashtadani3 123046 mac 123046 bytes_out 0 123046 bytes_in 0 123046 station_ip 37.129.222.111 123046 port 99 123046 unique_id port 123046 remote_ip 10.8.1.94 123048 username sedighe 123048 mac 123048 bytes_out 704234 123048 bytes_in 23798043 123048 station_ip 37.129.147.55 123048 port 182 123048 unique_id port 123048 remote_ip 10.8.0.146 123050 username barzegar 123050 mac 123050 bytes_out 0 123050 bytes_in 0 123050 station_ip 5.119.47.63 123050 port 157 123050 unique_id port 123050 remote_ip 10.8.0.234 123053 username hashtadani3 123053 mac 123053 bytes_out 0 123053 bytes_in 0 123053 station_ip 37.129.222.111 123053 port 99 123053 unique_id port 123053 remote_ip 10.8.1.94 123055 username hashtadani3 123055 mac 123055 bytes_out 0 123055 bytes_in 0 123055 station_ip 37.129.222.111 123055 port 99 123055 unique_id port 123055 remote_ip 10.8.1.94 123058 username hashtadani3 123058 mac 123058 bytes_out 0 123058 bytes_in 0 123058 station_ip 37.129.222.111 123058 port 157 123058 unique_id port 123058 remote_ip 10.8.0.154 123062 username hashtadani3 123062 mac 123062 bytes_out 0 123062 bytes_in 0 123062 station_ip 37.129.222.111 123062 port 176 123062 unique_id port 123062 remote_ip 10.8.0.154 123070 username hashtadani3 123070 mac 123070 bytes_out 0 123070 bytes_in 0 123070 station_ip 37.129.222.111 123070 port 157 123070 unique_id port 123070 remote_ip 10.8.0.154 123072 username hashtadani3 123072 mac 123072 bytes_out 0 123072 bytes_in 0 123072 station_ip 37.129.222.111 123072 port 157 123072 unique_id port 123072 remote_ip 10.8.0.154 123074 username hashtadani3 123074 mac 123074 bytes_out 0 123074 bytes_in 0 123074 station_ip 37.129.222.111 123074 port 157 123074 unique_id port 123074 remote_ip 10.8.0.154 123077 username hashtadani3 123077 mac 123077 bytes_out 0 123077 bytes_in 0 123077 station_ip 37.129.222.111 123077 port 176 123077 unique_id port 123077 remote_ip 10.8.0.154 123080 username hashtadani3 123080 mac 123080 bytes_out 0 123080 bytes_in 0 123080 station_ip 37.129.222.111 123080 port 176 123080 unique_id port 123080 remote_ip 10.8.0.154 123084 username hashtadani3 123084 mac 123084 bytes_out 0 123084 bytes_in 0 123084 station_ip 37.129.222.111 123084 port 176 123084 unique_id port 123084 remote_ip 10.8.0.154 123089 username hashtadani3 123089 mac 123089 bytes_out 0 123089 bytes_in 0 123089 station_ip 37.129.222.111 123089 port 99 123089 unique_id port 123089 remote_ip 10.8.1.94 123091 username mehdizare 123091 mac 123091 bytes_out 0 123091 bytes_in 0 123091 station_ip 5.120.59.106 123091 port 94 123091 unique_id port 123091 remote_ip 10.8.1.42 123095 username hashtadani3 123044 remote_ip 10.8.0.234 123045 username hashtadani3 123045 mac 123045 bytes_out 0 123045 bytes_in 0 123045 station_ip 37.129.222.111 123045 port 157 123045 unique_id port 123045 remote_ip 10.8.0.154 123052 username hashtadani3 123052 mac 123052 bytes_out 0 123052 bytes_in 0 123052 station_ip 37.129.222.111 123052 port 157 123052 unique_id port 123052 remote_ip 10.8.0.154 123057 username hashtadani3 123057 mac 123057 bytes_out 0 123057 bytes_in 0 123057 station_ip 37.129.222.111 123057 port 157 123057 unique_id port 123057 remote_ip 10.8.0.154 123064 username hashtadani3 123064 mac 123064 bytes_out 0 123064 bytes_in 0 123064 station_ip 37.129.222.111 123064 port 157 123064 unique_id port 123064 remote_ip 10.8.0.154 123066 username hashtadani3 123066 mac 123066 bytes_out 0 123066 bytes_in 0 123066 station_ip 37.129.222.111 123066 port 99 123066 unique_id port 123066 remote_ip 10.8.1.94 123068 username hashtadani3 123068 mac 123068 bytes_out 0 123068 bytes_in 0 123068 station_ip 37.129.222.111 123068 port 157 123068 unique_id port 123068 remote_ip 10.8.0.154 123069 username hashtadani3 123069 mac 123069 bytes_out 0 123069 bytes_in 0 123069 station_ip 37.129.222.111 123069 port 99 123069 unique_id port 123069 remote_ip 10.8.1.94 123073 username hashtadani3 123073 mac 123073 bytes_out 0 123073 bytes_in 0 123073 station_ip 37.129.222.111 123073 port 176 123073 unique_id port 123073 remote_ip 10.8.0.154 123076 username hashtadani3 123076 mac 123076 bytes_out 0 123076 bytes_in 0 123076 station_ip 37.129.222.111 123076 port 176 123076 unique_id port 123076 remote_ip 10.8.0.154 123079 username hashtadani3 123079 mac 123079 bytes_out 0 123079 bytes_in 0 123079 station_ip 37.129.222.111 123079 port 176 123079 unique_id port 123079 remote_ip 10.8.0.154 123081 username sedighe 123081 mac 123081 bytes_out 0 123081 bytes_in 0 123081 station_ip 37.129.147.55 123081 port 169 123081 unique_id port 123081 remote_ip 10.8.0.146 123082 username hashtadani3 123082 mac 123082 bytes_out 0 123082 bytes_in 0 123082 station_ip 37.129.222.111 123082 port 169 123082 unique_id port 123082 remote_ip 10.8.0.154 123083 username hashtadani3 123083 mac 123083 bytes_out 0 123083 bytes_in 0 123083 station_ip 37.129.222.111 123083 port 99 123083 unique_id port 123083 remote_ip 10.8.1.94 123086 username hashtadani3 123086 mac 123086 bytes_out 0 123086 bytes_in 0 123086 station_ip 37.129.222.111 123086 port 176 123086 unique_id port 123086 remote_ip 10.8.0.154 123088 username hashtadani3 123088 mac 123088 bytes_out 0 123088 bytes_in 0 123088 station_ip 37.129.222.111 123088 port 182 123088 unique_id port 123088 remote_ip 10.8.0.154 123094 username hashtadani3 123094 mac 123094 bytes_out 0 123094 bytes_in 0 123094 station_ip 37.129.222.111 123094 port 182 123094 unique_id port 123094 remote_ip 10.8.0.154 123096 username forozande 123096 mac 123096 bytes_out 0 123096 bytes_in 0 123096 station_ip 83.122.127.172 123096 port 157 123096 unique_id port 123096 remote_ip 10.8.0.74 123099 username hashtadani3 123099 mac 123099 bytes_out 0 123099 bytes_in 0 123099 station_ip 37.129.222.111 123099 port 157 123099 unique_id port 123099 remote_ip 10.8.0.154 123100 username hashtadani3 123100 mac 123100 bytes_out 0 123100 bytes_in 0 123100 station_ip 37.129.222.111 123100 port 157 123100 unique_id port 123100 remote_ip 10.8.0.154 123102 username sedighe 123061 unique_id port 123061 remote_ip 10.8.0.154 123063 username hashtadani3 123063 mac 123063 bytes_out 0 123063 bytes_in 0 123063 station_ip 37.129.222.111 123063 port 99 123063 unique_id port 123063 remote_ip 10.8.1.94 123065 username hashtadani3 123065 mac 123065 bytes_out 0 123065 bytes_in 0 123065 station_ip 37.129.222.111 123065 port 176 123065 unique_id port 123065 remote_ip 10.8.0.154 123067 username barzegar 123067 mac 123067 bytes_out 0 123067 bytes_in 0 123067 station_ip 5.119.47.63 123067 port 157 123067 unique_id port 123067 remote_ip 10.8.0.234 123071 username hashtadani3 123071 mac 123071 bytes_out 0 123071 bytes_in 0 123071 station_ip 37.129.222.111 123071 port 157 123071 unique_id port 123071 remote_ip 10.8.0.154 123075 username hashtadani3 123075 mac 123075 bytes_out 0 123075 bytes_in 0 123075 station_ip 37.129.222.111 123075 port 157 123075 unique_id port 123075 remote_ip 10.8.0.154 123078 username hashtadani3 123078 mac 123078 bytes_out 0 123078 bytes_in 0 123078 station_ip 37.129.222.111 123078 port 99 123078 unique_id port 123078 remote_ip 10.8.1.94 123085 username hashtadani3 123085 mac 123085 bytes_out 0 123085 bytes_in 0 123085 station_ip 37.129.222.111 123085 port 176 123085 unique_id port 123085 remote_ip 10.8.0.154 123087 username hashtadani3 123087 mac 123087 bytes_out 0 123087 bytes_in 0 123087 station_ip 37.129.222.111 123087 port 182 123087 unique_id port 123087 remote_ip 10.8.0.154 123090 username hashtadani3 123090 mac 123090 bytes_out 0 123090 bytes_in 0 123090 station_ip 37.129.222.111 123090 port 182 123090 unique_id port 123090 remote_ip 10.8.0.154 123092 username hashtadani3 123092 mac 123092 bytes_out 0 123092 bytes_in 0 123092 station_ip 37.129.222.111 123092 port 94 123092 unique_id port 123092 remote_ip 10.8.1.94 123093 username hashtadani3 123093 mac 123093 bytes_out 0 123093 bytes_in 0 123093 station_ip 37.129.222.111 123093 port 182 123093 unique_id port 123093 remote_ip 10.8.0.154 123098 username hashtadani3 123098 mac 123098 bytes_out 0 123098 bytes_in 0 123098 station_ip 37.129.222.111 123098 port 157 123098 unique_id port 123098 remote_ip 10.8.0.154 123105 username barzegar 123105 mac 123105 bytes_out 0 123105 bytes_in 0 123105 station_ip 5.119.47.63 123105 port 99 123105 unique_id port 123105 remote_ip 10.8.1.174 123108 username hashtadani3 123108 mac 123108 bytes_out 0 123108 bytes_in 0 123108 station_ip 37.129.222.111 123108 port 157 123108 unique_id port 123108 remote_ip 10.8.0.154 123110 username hashtadani3 123110 mac 123110 bytes_out 0 123110 bytes_in 0 123110 station_ip 37.129.222.111 123110 port 157 123110 unique_id port 123110 remote_ip 10.8.0.154 123112 username hashtadani3 123112 mac 123112 bytes_out 0 123112 bytes_in 0 123112 station_ip 37.129.222.111 123112 port 94 123112 unique_id port 123112 remote_ip 10.8.1.94 123113 username hashtadani3 123113 mac 123113 bytes_out 0 123113 bytes_in 0 123113 station_ip 37.129.222.111 123113 port 157 123113 unique_id port 123113 remote_ip 10.8.0.154 123116 username hashtadani3 123116 mac 123116 bytes_out 0 123116 bytes_in 0 123116 station_ip 37.129.222.111 123116 port 157 123116 unique_id port 123116 remote_ip 10.8.0.154 123117 username hashtadani3 123117 mac 123117 bytes_out 0 123117 bytes_in 0 123117 station_ip 37.129.222.111 123117 port 157 123117 unique_id port 123117 remote_ip 10.8.0.154 123095 mac 123095 bytes_out 0 123095 bytes_in 0 123095 station_ip 37.129.222.111 123095 port 182 123095 unique_id port 123095 remote_ip 10.8.0.154 123097 username hashtadani3 123097 mac 123097 bytes_out 0 123097 bytes_in 0 123097 station_ip 37.129.222.111 123097 port 157 123097 unique_id port 123097 remote_ip 10.8.0.154 123101 username hashtadani3 123101 mac 123101 bytes_out 0 123101 bytes_in 0 123101 station_ip 37.129.222.111 123101 port 157 123101 unique_id port 123101 remote_ip 10.8.0.154 123107 username hashtadani3 123107 mac 123107 bytes_out 0 123107 bytes_in 0 123107 station_ip 37.129.222.111 123107 port 157 123107 unique_id port 123107 remote_ip 10.8.0.154 123111 username mehdizare 123111 mac 123111 bytes_out 0 123111 bytes_in 0 123111 station_ip 5.120.59.106 123111 port 94 123111 unique_id port 123111 remote_ip 10.8.1.42 123115 username hashtadani3 123115 mac 123115 bytes_out 0 123115 bytes_in 0 123115 station_ip 37.129.222.111 123115 port 157 123115 unique_id port 123115 remote_ip 10.8.0.154 123120 username hashtadani3 123120 mac 123120 bytes_out 0 123120 bytes_in 0 123120 station_ip 37.129.222.111 123120 port 99 123120 unique_id port 123120 remote_ip 10.8.1.94 123124 username hashtadani3 123124 mac 123124 bytes_out 0 123124 bytes_in 0 123124 station_ip 37.129.222.111 123124 port 99 123124 unique_id port 123124 remote_ip 10.8.1.94 123128 username hashtadani3 123128 mac 123128 bytes_out 0 123128 bytes_in 0 123128 station_ip 37.129.222.111 123128 port 157 123128 unique_id port 123128 remote_ip 10.8.0.154 123131 username hashtadani3 123131 mac 123131 bytes_out 0 123131 bytes_in 0 123131 station_ip 37.129.222.111 123131 port 157 123131 unique_id port 123131 remote_ip 10.8.0.154 123133 username hashtadani3 123133 mac 123133 bytes_out 0 123133 bytes_in 0 123133 station_ip 37.129.222.111 123133 port 157 123133 unique_id port 123133 remote_ip 10.8.0.154 123135 username hashtadani3 123135 mac 123135 bytes_out 0 123135 bytes_in 0 123135 station_ip 37.129.222.111 123135 port 99 123135 unique_id port 123135 remote_ip 10.8.1.94 123142 username hashtadani3 123142 mac 123142 bytes_out 0 123142 bytes_in 0 123142 station_ip 37.129.222.111 123142 port 157 123142 unique_id port 123142 remote_ip 10.8.0.154 123144 username hashtadani3 123144 mac 123144 bytes_out 0 123144 bytes_in 0 123144 station_ip 37.129.222.111 123144 port 157 123144 unique_id port 123144 remote_ip 10.8.0.154 123147 username hashtadani3 123147 mac 123147 bytes_out 0 123147 bytes_in 0 123147 station_ip 37.129.222.111 123147 port 157 123147 unique_id port 123147 remote_ip 10.8.0.154 123149 username hashtadani3 123149 mac 123149 bytes_out 0 123149 bytes_in 0 123149 station_ip 37.129.222.111 123149 port 99 123149 unique_id port 123149 remote_ip 10.8.1.94 123153 username hashtadani3 123153 mac 123153 bytes_out 0 123153 bytes_in 0 123153 station_ip 37.129.222.111 123153 port 99 123153 unique_id port 123153 remote_ip 10.8.1.94 123154 username mehdizare 123154 mac 123154 bytes_out 0 123154 bytes_in 0 123154 station_ip 5.120.59.106 123154 port 94 123154 unique_id port 123154 remote_ip 10.8.1.42 123158 username barzegar 123158 mac 123158 bytes_out 0 123158 bytes_in 0 123158 station_ip 5.119.47.63 123158 port 99 123158 unique_id port 123158 remote_ip 10.8.1.174 123161 username hashtadani3 123161 mac 123161 bytes_out 0 123161 bytes_in 0 123102 mac 123102 bytes_out 22230 123102 bytes_in 23921 123102 station_ip 37.129.147.55 123102 port 176 123102 unique_id port 123102 remote_ip 10.8.0.146 123103 username hashtadani3 123103 mac 123103 bytes_out 0 123103 bytes_in 0 123103 station_ip 37.129.222.111 123103 port 157 123103 unique_id port 123103 remote_ip 10.8.0.154 123104 username hashtadani3 123104 mac 123104 bytes_out 0 123104 bytes_in 0 123104 station_ip 37.129.222.111 123104 port 157 123104 unique_id port 123104 remote_ip 10.8.0.154 123106 username hashtadani3 123106 mac 123106 bytes_out 0 123106 bytes_in 0 123106 station_ip 37.129.222.111 123106 port 99 123106 unique_id port 123106 remote_ip 10.8.1.94 123109 username barzegar 123109 mac 123109 bytes_out 0 123109 bytes_in 0 123109 station_ip 5.119.47.63 123109 port 99 123109 unique_id port 123109 remote_ip 10.8.1.174 123114 username hashtadani3 123114 mac 123114 bytes_out 0 123114 bytes_in 0 123114 station_ip 37.129.222.111 123114 port 157 123114 unique_id port 123114 remote_ip 10.8.0.154 123119 username hashtadani3 123119 mac 123119 bytes_out 0 123119 bytes_in 0 123119 station_ip 37.129.222.111 123119 port 157 123119 unique_id port 123119 remote_ip 10.8.0.154 123123 username hashtadani3 123123 mac 123123 bytes_out 0 123123 bytes_in 0 123123 station_ip 37.129.222.111 123123 port 157 123123 unique_id port 123123 remote_ip 10.8.0.154 123126 username hashtadani3 123126 mac 123126 bytes_out 0 123126 bytes_in 0 123126 station_ip 37.129.222.111 123126 port 99 123126 unique_id port 123126 remote_ip 10.8.1.94 123127 username hashtadani3 123127 mac 123127 bytes_out 0 123127 bytes_in 0 123127 station_ip 37.129.222.111 123127 port 157 123127 unique_id port 123127 remote_ip 10.8.0.154 123130 username hashtadani3 123130 mac 123130 bytes_out 0 123130 bytes_in 0 123130 station_ip 37.129.222.111 123130 port 157 123130 unique_id port 123130 remote_ip 10.8.0.154 123132 username hashtadani3 123132 mac 123132 bytes_out 0 123132 bytes_in 0 123132 station_ip 37.129.222.111 123132 port 99 123132 unique_id port 123132 remote_ip 10.8.1.94 123134 username aminvpn 123134 mac 123134 bytes_out 597005 123134 bytes_in 5123206 123134 station_ip 83.122.21.81 123134 port 169 123134 unique_id port 123134 remote_ip 10.8.0.14 123137 username hashtadani3 123137 mac 123137 bytes_out 0 123137 bytes_in 0 123137 station_ip 37.129.222.111 123137 port 157 123137 unique_id port 123137 remote_ip 10.8.0.154 123138 username barzegar 123138 mac 123138 bytes_out 0 123138 bytes_in 0 123138 station_ip 5.119.47.63 123138 port 169 123138 unique_id port 123138 remote_ip 10.8.0.234 123141 username hashtadani3 123141 mac 123141 bytes_out 0 123141 bytes_in 0 123141 station_ip 37.129.222.111 123141 port 157 123141 unique_id port 123141 remote_ip 10.8.0.154 123146 username hashtadani3 123146 mac 123146 bytes_out 0 123146 bytes_in 0 123146 station_ip 37.129.222.111 123146 port 157 123146 unique_id port 123146 remote_ip 10.8.0.154 123148 username barzegar 123148 mac 123148 bytes_out 0 123148 bytes_in 0 123148 station_ip 5.119.47.63 123148 port 99 123148 unique_id port 123148 remote_ip 10.8.1.174 123152 username hashtadani3 123152 mac 123152 bytes_out 0 123152 bytes_in 0 123152 station_ip 37.129.222.111 123152 port 157 123152 unique_id port 123152 remote_ip 10.8.0.154 123155 username hashtadani3 123155 mac 123155 bytes_out 0 123155 bytes_in 0 123118 username hashtadani3 123118 mac 123118 bytes_out 0 123118 bytes_in 0 123118 station_ip 37.129.222.111 123118 port 99 123118 unique_id port 123118 remote_ip 10.8.1.94 123121 username hashtadani3 123121 mac 123121 bytes_out 0 123121 bytes_in 0 123121 station_ip 37.129.222.111 123121 port 157 123121 unique_id port 123121 remote_ip 10.8.0.154 123122 username hashtadani3 123122 mac 123122 bytes_out 0 123122 bytes_in 0 123122 station_ip 37.129.222.111 123122 port 99 123122 unique_id port 123122 remote_ip 10.8.1.94 123125 username hashtadani3 123125 mac 123125 bytes_out 0 123125 bytes_in 0 123125 station_ip 37.129.222.111 123125 port 157 123125 unique_id port 123125 remote_ip 10.8.0.154 123129 username hashtadani3 123129 mac 123129 bytes_out 0 123129 bytes_in 0 123129 station_ip 37.129.222.111 123129 port 157 123129 unique_id port 123129 remote_ip 10.8.0.154 123136 username hashtadani3 123136 mac 123136 bytes_out 0 123136 bytes_in 0 123136 station_ip 37.129.222.111 123136 port 157 123136 unique_id port 123136 remote_ip 10.8.0.154 123139 username hashtadani3 123139 mac 123139 bytes_out 770411 123139 bytes_in 4503587 123139 station_ip 37.129.222.111 123139 port 157 123139 unique_id port 123139 remote_ip 10.8.0.154 123140 username hashtadani3 123140 mac 123140 bytes_out 0 123140 bytes_in 0 123140 station_ip 37.129.222.111 123140 port 99 123140 unique_id port 123140 remote_ip 10.8.1.94 123143 username hashtadani3 123143 mac 123143 bytes_out 0 123143 bytes_in 0 123143 station_ip 37.129.222.111 123143 port 157 123143 unique_id port 123143 remote_ip 10.8.0.154 123145 username hashtadani3 123145 mac 123145 bytes_out 0 123145 bytes_in 0 123145 station_ip 37.129.222.111 123145 port 100 123145 unique_id port 123145 remote_ip 10.8.1.94 123150 username hashtadani3 123150 mac 123150 bytes_out 0 123150 bytes_in 0 123150 station_ip 37.129.222.111 123150 port 157 123150 unique_id port 123150 remote_ip 10.8.0.154 123151 username hashtadani3 123151 mac 123151 bytes_out 0 123151 bytes_in 0 123151 station_ip 37.129.222.111 123151 port 157 123151 unique_id port 123151 remote_ip 10.8.0.154 123157 username hashtadani3 123157 mac 123157 bytes_out 0 123157 bytes_in 0 123157 station_ip 37.129.222.111 123157 port 182 123157 unique_id port 123157 remote_ip 10.8.0.154 123159 username hashtadani3 123159 mac 123159 bytes_out 0 123159 bytes_in 0 123159 station_ip 37.129.222.111 123159 port 94 123159 unique_id port 123159 remote_ip 10.8.1.94 123163 username hashtadani3 123163 mac 123163 bytes_out 0 123163 bytes_in 0 123163 station_ip 37.129.222.111 123163 port 182 123163 unique_id port 123163 remote_ip 10.8.0.154 123167 username hashtadani3 123167 mac 123167 bytes_out 0 123167 bytes_in 0 123167 station_ip 37.129.222.111 123167 port 182 123167 unique_id port 123167 remote_ip 10.8.0.154 123168 username hashtadani3 123168 mac 123168 bytes_out 0 123168 bytes_in 0 123168 station_ip 37.129.222.111 123168 port 182 123168 unique_id port 123168 remote_ip 10.8.0.154 123172 username hashtadani3 123172 mac 123172 bytes_out 0 123172 bytes_in 0 123172 station_ip 37.129.222.111 123172 port 182 123172 unique_id port 123172 remote_ip 10.8.0.154 123177 username hashtadani3 123177 mac 123177 bytes_out 0 123177 bytes_in 0 123177 station_ip 37.129.222.111 123177 port 182 123177 unique_id port 123177 remote_ip 10.8.0.154 123179 username hashtadani3 123179 mac 123155 station_ip 37.129.222.111 123155 port 182 123155 unique_id port 123155 remote_ip 10.8.0.154 123156 username hashtadani3 123156 mac 123156 bytes_out 0 123156 bytes_in 0 123156 station_ip 37.129.222.111 123156 port 94 123156 unique_id port 123156 remote_ip 10.8.1.94 123160 username hashtadani3 123160 mac 123160 bytes_out 0 123160 bytes_in 0 123160 station_ip 37.129.222.111 123160 port 182 123160 unique_id port 123160 remote_ip 10.8.0.154 123164 username hashtadani3 123164 mac 123164 bytes_out 0 123164 bytes_in 0 123164 station_ip 37.129.222.111 123164 port 94 123164 unique_id port 123164 remote_ip 10.8.1.94 123169 username hashtadani3 123169 mac 123169 bytes_out 0 123169 bytes_in 0 123169 station_ip 37.129.222.111 123169 port 94 123169 unique_id port 123169 remote_ip 10.8.1.94 123173 username hashtadani3 123173 mac 123173 bytes_out 0 123173 bytes_in 0 123173 station_ip 37.129.222.111 123173 port 94 123173 unique_id port 123173 remote_ip 10.8.1.94 123175 username hashtadani3 123175 mac 123175 bytes_out 0 123175 bytes_in 0 123175 station_ip 37.129.222.111 123175 port 182 123175 unique_id port 123175 remote_ip 10.8.0.154 123178 username hashtadani3 123178 mac 123178 bytes_out 0 123178 bytes_in 0 123178 station_ip 37.129.222.111 123178 port 94 123178 unique_id port 123178 remote_ip 10.8.1.94 123184 username hashtadani3 123184 mac 123184 bytes_out 0 123184 bytes_in 0 123184 station_ip 37.129.222.111 123184 port 182 123184 unique_id port 123184 remote_ip 10.8.0.154 123186 username hashtadani3 123186 mac 123186 bytes_out 0 123186 bytes_in 0 123186 station_ip 37.129.222.111 123186 port 94 123186 unique_id port 123186 remote_ip 10.8.1.94 123189 username hashtadani3 123189 mac 123189 bytes_out 0 123189 bytes_in 0 123189 station_ip 37.129.222.111 123189 port 94 123189 unique_id port 123189 remote_ip 10.8.1.94 123193 username hashtadani3 123193 mac 123193 bytes_out 0 123193 bytes_in 0 123193 station_ip 37.129.222.111 123193 port 157 123193 unique_id port 123193 remote_ip 10.8.0.154 123198 username hashtadani3 123198 mac 123198 bytes_out 0 123198 bytes_in 0 123198 station_ip 37.129.222.111 123198 port 94 123198 unique_id port 123198 remote_ip 10.8.1.94 123202 username hashtadani3 123202 mac 123202 bytes_out 0 123202 bytes_in 0 123202 station_ip 37.129.222.111 123202 port 94 123202 unique_id port 123202 remote_ip 10.8.1.94 123205 username hashtadani3 123205 mac 123205 bytes_out 0 123205 bytes_in 0 123205 station_ip 37.129.222.111 123205 port 157 123205 unique_id port 123205 remote_ip 10.8.0.154 123210 username hashtadani3 123210 mac 123210 bytes_out 0 123210 bytes_in 0 123210 station_ip 37.129.222.111 123210 port 157 123210 unique_id port 123210 remote_ip 10.8.0.154 123211 username barzegar 123211 mac 123211 bytes_out 2628 123211 bytes_in 4982 123211 station_ip 5.119.47.63 123211 port 182 123211 unique_id port 123211 remote_ip 10.8.0.234 123214 username hashtadani3 123214 mac 123214 bytes_out 0 123214 bytes_in 0 123214 station_ip 37.129.222.111 123214 port 182 123214 unique_id port 123214 remote_ip 10.8.0.154 123215 username hashtadani3 123215 mac 123215 bytes_out 0 123215 bytes_in 0 123215 station_ip 37.129.222.111 123215 port 94 123215 unique_id port 123215 remote_ip 10.8.1.94 123225 username hashtadani3 123225 mac 123225 bytes_out 0 123225 bytes_in 0 123225 station_ip 37.129.222.111 123225 port 182 123225 unique_id port 123161 station_ip 37.129.222.111 123161 port 94 123161 unique_id port 123161 remote_ip 10.8.1.94 123162 username hashtadani3 123162 mac 123162 bytes_out 0 123162 bytes_in 0 123162 station_ip 37.129.222.111 123162 port 182 123162 unique_id port 123162 remote_ip 10.8.0.154 123165 username hashtadani3 123165 mac 123165 bytes_out 0 123165 bytes_in 0 123165 station_ip 37.129.222.111 123165 port 182 123165 unique_id port 123165 remote_ip 10.8.0.154 123166 username hashtadani3 123166 mac 123166 bytes_out 0 123166 bytes_in 0 123166 station_ip 37.129.222.111 123166 port 94 123166 unique_id port 123166 remote_ip 10.8.1.94 123170 username hashtadani3 123170 mac 123170 bytes_out 0 123170 bytes_in 0 123170 station_ip 37.129.222.111 123170 port 182 123170 unique_id port 123170 remote_ip 10.8.0.154 123171 username hashtadani3 123171 mac 123171 bytes_out 0 123171 bytes_in 0 123171 station_ip 37.129.222.111 123171 port 94 123171 unique_id port 123171 remote_ip 10.8.1.94 123174 username hashtadani3 123174 mac 123174 bytes_out 0 123174 bytes_in 0 123174 station_ip 37.129.222.111 123174 port 182 123174 unique_id port 123174 remote_ip 10.8.0.154 123176 username hashtadani3 123176 mac 123176 bytes_out 0 123176 bytes_in 0 123176 station_ip 37.129.222.111 123176 port 94 123176 unique_id port 123176 remote_ip 10.8.1.94 123180 username hashtadani3 123180 mac 123180 bytes_out 0 123180 bytes_in 0 123180 station_ip 37.129.222.111 123180 port 183 123180 unique_id port 123180 remote_ip 10.8.0.154 123182 username hashtadani3 123182 mac 123182 bytes_out 0 123182 bytes_in 0 123182 station_ip 37.129.222.111 123182 port 182 123182 unique_id port 123182 remote_ip 10.8.0.154 123190 username hashtadani3 123190 mac 123190 bytes_out 0 123190 bytes_in 0 123190 station_ip 37.129.222.111 123190 port 157 123190 unique_id port 123190 remote_ip 10.8.0.154 123194 username hashtadani3 123194 mac 123194 bytes_out 0 123194 bytes_in 0 123194 station_ip 37.129.222.111 123194 port 94 123194 unique_id port 123194 remote_ip 10.8.1.94 123196 username hashtadani3 123196 mac 123196 bytes_out 0 123196 bytes_in 0 123196 station_ip 37.129.222.111 123196 port 157 123196 unique_id port 123196 remote_ip 10.8.0.154 123199 username hashtadani3 123199 mac 123199 bytes_out 0 123199 bytes_in 0 123199 station_ip 37.129.222.111 123199 port 157 123199 unique_id port 123199 remote_ip 10.8.0.154 123201 username alipour 123201 kill_reason Another user logged on this global unique id 123201 mac 123201 bytes_out 0 123201 bytes_in 0 123201 station_ip 83.122.182.227 123201 port 176 123201 unique_id port 123201 remote_ip 10.8.0.102 123203 username hashtadani3 123203 mac 123203 bytes_out 0 123203 bytes_in 0 123203 station_ip 37.129.222.111 123203 port 157 123203 unique_id port 123203 remote_ip 10.8.0.154 123206 username hashtadani3 123206 mac 123206 bytes_out 0 123206 bytes_in 0 123206 station_ip 37.129.222.111 123206 port 94 123206 unique_id port 123206 remote_ip 10.8.1.94 123208 username hashtadani3 123208 mac 123208 bytes_out 0 123208 bytes_in 0 123208 station_ip 37.129.222.111 123208 port 183 123208 unique_id port 123208 remote_ip 10.8.0.154 123216 username hashtadani3 123216 mac 123216 bytes_out 0 123216 bytes_in 0 123216 station_ip 37.129.222.111 123216 port 182 123216 unique_id port 123216 remote_ip 10.8.0.154 123218 username hashtadani3 123218 mac 123218 bytes_out 0 123218 bytes_in 0 123218 station_ip 37.129.222.111 123179 bytes_out 0 123179 bytes_in 0 123179 station_ip 37.129.222.111 123179 port 182 123179 unique_id port 123179 remote_ip 10.8.0.154 123181 username hashtadani3 123181 mac 123181 bytes_out 0 123181 bytes_in 0 123181 station_ip 37.129.222.111 123181 port 182 123181 unique_id port 123181 remote_ip 10.8.0.154 123183 username hashtadani3 123183 mac 123183 bytes_out 0 123183 bytes_in 0 123183 station_ip 37.129.222.111 123183 port 99 123183 unique_id port 123183 remote_ip 10.8.1.94 123185 username barzegar 123185 mac 123185 bytes_out 0 123185 bytes_in 0 123185 station_ip 5.119.47.63 123185 port 94 123185 unique_id port 123185 remote_ip 10.8.1.174 123187 username forozande 123187 mac 123187 bytes_out 0 123187 bytes_in 0 123187 station_ip 83.122.77.232 123187 port 157 123187 unique_id port 123187 remote_ip 10.8.0.74 123188 username hashtadani3 123188 mac 123188 bytes_out 0 123188 bytes_in 0 123188 station_ip 37.129.222.111 123188 port 157 123188 unique_id port 123188 remote_ip 10.8.0.154 123191 username hashtadani3 123191 mac 123191 bytes_out 0 123191 bytes_in 0 123191 station_ip 37.129.222.111 123191 port 94 123191 unique_id port 123191 remote_ip 10.8.1.94 123192 username hashtadani3 123192 mac 123192 bytes_out 0 123192 bytes_in 0 123192 station_ip 37.129.222.111 123192 port 157 123192 unique_id port 123192 remote_ip 10.8.0.154 123195 username hashtadani3 123195 mac 123195 bytes_out 0 123195 bytes_in 0 123195 station_ip 37.129.222.111 123195 port 157 123195 unique_id port 123195 remote_ip 10.8.0.154 123197 username hashtadani3 60630 username arezoo 60630 kill_reason Maximum check online fails reached 60630 mac 5.237.95.119:49192: Unknown host 60630 bytes_out 0 60630 bytes_in 0 60630 station_ip 5.237.95.119:49192 60630 port 1017 60630 unique_id port 123197 mac 123197 bytes_out 0 123197 bytes_in 0 123197 station_ip 37.129.222.111 123197 port 157 123197 unique_id port 123197 remote_ip 10.8.0.154 123200 username hashtadani3 123200 mac 123200 bytes_out 0 123200 bytes_in 0 123200 station_ip 37.129.222.111 123200 port 157 123200 unique_id port 123200 remote_ip 10.8.0.154 123204 username hashtadani3 123204 mac 123204 bytes_out 0 123204 bytes_in 0 123204 station_ip 37.129.222.111 123204 port 94 123204 unique_id port 123204 remote_ip 10.8.1.94 123207 username hashtadani3 123207 mac 123207 bytes_out 0 123207 bytes_in 0 123207 station_ip 37.129.222.111 123207 port 157 123207 unique_id port 123207 remote_ip 10.8.0.154 123209 username hashtadani3 123209 mac 123209 bytes_out 0 123209 bytes_in 0 123209 station_ip 37.129.222.111 123209 port 94 123209 unique_id port 123209 remote_ip 10.8.1.94 123212 username hashtadani3 123212 mac 123212 bytes_out 0 123212 bytes_in 0 123212 station_ip 37.129.222.111 123212 port 157 123212 unique_id port 123212 remote_ip 10.8.0.154 123213 username hashtadani3 123213 mac 123213 bytes_out 0 123213 bytes_in 0 123213 station_ip 37.129.222.111 123213 port 94 123213 unique_id port 123213 remote_ip 10.8.1.94 123217 username hashtadani3 123217 mac 123217 bytes_out 0 123217 bytes_in 0 123217 station_ip 37.129.222.111 123217 port 182 123217 unique_id port 123217 remote_ip 10.8.0.154 123221 username barzegar 123221 mac 123221 bytes_out 0 123221 bytes_in 0 123221 station_ip 5.119.47.63 123221 port 182 123221 unique_id port 123221 remote_ip 10.8.0.234 123223 username hashtadani3 123223 mac 123223 bytes_out 0 123223 bytes_in 0 123218 port 182 123218 unique_id port 123218 remote_ip 10.8.0.154 123219 username hashtadani3 123219 mac 123219 bytes_out 0 123219 bytes_in 0 123219 station_ip 37.129.222.111 123219 port 94 123219 unique_id port 123219 remote_ip 10.8.1.94 123220 username hashtadani3 123220 mac 123220 bytes_out 0 123220 bytes_in 0 123220 station_ip 37.129.222.111 123220 port 183 123220 unique_id port 123220 remote_ip 10.8.0.154 123222 username hashtadani3 123222 mac 123222 bytes_out 0 123222 bytes_in 0 123222 station_ip 37.129.222.111 123222 port 94 123222 unique_id port 123222 remote_ip 10.8.1.94 123227 username hashtadani3 123227 mac 123227 bytes_out 0 123227 bytes_in 0 123227 station_ip 37.129.222.111 123227 port 94 123227 unique_id port 123227 remote_ip 10.8.1.94 123229 username hashtadani3 123229 mac 123229 bytes_out 0 123229 bytes_in 0 123229 station_ip 37.129.222.111 123229 port 94 123229 unique_id port 123229 remote_ip 10.8.1.94 123233 username hashtadani3 123233 mac 123233 bytes_out 0 123233 bytes_in 0 123233 station_ip 37.129.222.111 123233 port 94 123233 unique_id port 123233 remote_ip 10.8.1.94 123243 username hamidsalari 123243 kill_reason Another user logged on this global unique id 123243 mac 123243 bytes_out 0 123243 bytes_in 0 123243 station_ip 5.119.199.253 123243 port 135 123243 unique_id port 123243 remote_ip 10.8.0.230 123245 username mirzaei 123245 kill_reason Another user logged on this global unique id 123245 mac 123245 bytes_out 0 123245 bytes_in 0 123245 station_ip 5.120.131.48 123245 port 85 123245 unique_id port 123245 remote_ip 10.8.1.30 123246 username hashtadani3 123246 mac 123246 bytes_out 0 123246 bytes_in 0 123246 station_ip 37.129.222.111 123246 port 94 123246 unique_id port 123246 remote_ip 10.8.1.94 123247 username hashtadani3 123247 mac 123247 bytes_out 0 123247 bytes_in 0 123247 station_ip 37.129.222.111 123247 port 157 123247 unique_id port 123247 remote_ip 10.8.0.154 123249 username hashtadani3 123249 mac 123249 bytes_out 0 123249 bytes_in 0 123249 station_ip 37.129.222.111 123249 port 157 123249 unique_id port 123249 remote_ip 10.8.0.154 123250 username hashtadani3 123250 mac 123250 bytes_out 0 123250 bytes_in 0 123250 station_ip 37.129.222.111 123250 port 157 123250 unique_id port 123250 remote_ip 10.8.0.154 123252 username hashtadani3 123252 mac 123252 bytes_out 0 123252 bytes_in 0 123252 station_ip 37.129.222.111 123252 port 157 123252 unique_id port 123252 remote_ip 10.8.0.154 123253 username hashtadani3 123253 mac 123253 bytes_out 0 123253 bytes_in 0 123253 station_ip 37.129.222.111 123253 port 94 123253 unique_id port 123253 remote_ip 10.8.1.94 123257 username hashtadani3 123257 mac 123257 bytes_out 0 123257 bytes_in 0 123257 station_ip 37.129.222.111 123257 port 184 123257 unique_id port 123257 remote_ip 10.8.0.154 123260 username hashtadani3 123260 mac 123260 bytes_out 0 123260 bytes_in 0 123260 station_ip 37.129.222.111 123260 port 94 123260 unique_id port 123260 remote_ip 10.8.1.94 123263 username hashtadani3 123263 mac 123263 bytes_out 479314 123263 bytes_in 2174331 123263 station_ip 37.129.222.111 123263 port 94 123263 unique_id port 123263 remote_ip 10.8.1.94 123265 username rezaei 123265 mac 123265 bytes_out 2391147 123265 bytes_in 23957169 123265 station_ip 5.119.107.39 123265 port 157 123265 unique_id port 123265 remote_ip 10.8.0.206 123266 username hashtadani3 123266 mac 123266 bytes_out 0 123266 bytes_in 0 123223 station_ip 37.129.222.111 123223 port 182 123223 unique_id port 123223 remote_ip 10.8.0.154 123224 username hashtadani3 123224 mac 123224 bytes_out 0 123224 bytes_in 0 123224 station_ip 37.129.222.111 123224 port 182 123224 unique_id port 123224 remote_ip 10.8.0.154 123228 username hashtadani3 123228 mac 123228 bytes_out 0 123228 bytes_in 0 123228 station_ip 37.129.222.111 123228 port 183 123228 unique_id port 123228 remote_ip 10.8.0.154 123230 username hashtadani3 123230 mac 123230 bytes_out 0 123230 bytes_in 0 123230 station_ip 37.129.222.111 123230 port 184 123230 unique_id port 123230 remote_ip 10.8.0.154 123234 username hashtadani3 123234 mac 123234 bytes_out 0 123234 bytes_in 0 123234 station_ip 37.129.222.111 123234 port 184 123234 unique_id port 123234 remote_ip 10.8.0.154 123236 username barzegar 123236 mac 123236 bytes_out 7446 123236 bytes_in 16676 123236 station_ip 5.119.47.63 123236 port 182 123236 unique_id port 123236 remote_ip 10.8.0.234 123237 username hashtadani3 123237 mac 123237 bytes_out 0 123237 bytes_in 0 123237 station_ip 37.129.222.111 123237 port 182 123237 unique_id port 123237 remote_ip 10.8.0.154 123238 username hashtadani3 123238 mac 123238 bytes_out 0 123238 bytes_in 0 123238 station_ip 37.129.222.111 123238 port 185 123238 unique_id port 123238 remote_ip 10.8.0.154 123241 username mohammadjavad 123241 mac 123241 bytes_out 80735 123241 bytes_in 89756 123241 station_ip 83.122.43.187 123241 port 157 123241 unique_id port 123241 remote_ip 10.8.0.142 123244 username hashtadani3 123244 mac 123244 bytes_out 0 123244 bytes_in 0 123244 station_ip 37.129.222.111 123244 port 157 123244 unique_id port 123244 remote_ip 10.8.0.154 123248 username mehdizare 123248 mac 123248 bytes_out 27804 123248 bytes_in 40983 123248 station_ip 5.120.59.106 123248 port 169 123248 unique_id port 123248 remote_ip 10.8.0.90 123254 username hashtadani3 123254 mac 123254 bytes_out 0 123254 bytes_in 0 123254 station_ip 37.129.222.111 123254 port 157 123254 unique_id port 123254 remote_ip 10.8.0.154 123262 username hashtadani3 123262 mac 123262 bytes_out 0 123262 bytes_in 0 123262 station_ip 37.129.222.111 123262 port 183 123262 unique_id port 123262 remote_ip 10.8.0.154 123264 username hashtadani3 123264 mac 123264 bytes_out 0 123264 bytes_in 0 123264 station_ip 37.129.222.111 123264 port 94 123264 unique_id port 123264 remote_ip 10.8.1.94 123267 username hashtadani3 123267 mac 123267 bytes_out 0 123267 bytes_in 0 123267 station_ip 37.129.222.111 123267 port 184 123267 unique_id port 123267 remote_ip 10.8.0.154 123268 username hashtadani3 123268 mac 123268 bytes_out 0 123268 bytes_in 0 123268 station_ip 37.129.222.111 123268 port 94 123268 unique_id port 123268 remote_ip 10.8.1.94 123271 username hashtadani3 123271 mac 123271 bytes_out 0 123271 bytes_in 0 123271 station_ip 37.129.222.111 123271 port 184 123271 unique_id port 123271 remote_ip 10.8.0.154 123273 username hashtadani3 123273 mac 123273 bytes_out 0 123273 bytes_in 0 123273 station_ip 37.129.222.111 123273 port 184 123273 unique_id port 123273 remote_ip 10.8.0.154 123276 username hamidsalari1 123276 mac 123276 bytes_out 9201 123276 bytes_in 14989 123276 station_ip 83.122.83.238 123276 port 186 123276 unique_id port 123276 remote_ip 10.8.0.226 123278 username mahdiyehalizadeh 123278 mac 123278 bytes_out 466973 123278 bytes_in 5656294 123278 station_ip 83.123.108.102 123225 remote_ip 10.8.0.154 123226 username hashtadani3 123226 mac 123226 bytes_out 0 123226 bytes_in 0 123226 station_ip 37.129.222.111 123226 port 183 123226 unique_id port 123226 remote_ip 10.8.0.154 123231 username hashtadani3 123231 mac 123231 bytes_out 0 123231 bytes_in 0 123231 station_ip 37.129.222.111 123231 port 94 123231 unique_id port 123231 remote_ip 10.8.1.94 123232 username hashtadani3 123232 mac 123232 bytes_out 0 123232 bytes_in 0 123232 station_ip 37.129.222.111 123232 port 184 123232 unique_id port 123232 remote_ip 10.8.0.154 123235 username hashtadani3 123235 mac 123235 bytes_out 0 123235 bytes_in 0 123235 station_ip 37.129.222.111 123235 port 94 123235 unique_id port 123235 remote_ip 10.8.1.94 123239 username hashtadani3 123239 mac 123239 bytes_out 0 123239 bytes_in 0 123239 station_ip 37.129.222.111 123239 port 94 123239 unique_id port 123239 remote_ip 10.8.1.94 123240 username hashtadani3 123240 mac 123240 bytes_out 0 123240 bytes_in 0 123240 station_ip 37.129.222.111 123240 port 185 123240 unique_id port 123240 remote_ip 10.8.0.154 123242 username hashtadani3 123242 mac 123242 bytes_out 0 123242 bytes_in 0 123242 station_ip 37.129.222.111 123242 port 94 123242 unique_id port 123242 remote_ip 10.8.1.94 123251 username morteza 123251 mac 123251 bytes_out 19918 123251 bytes_in 38698 123251 station_ip 83.123.113.119 123251 port 182 123251 unique_id port 123251 remote_ip 10.8.0.46 123255 username barzegar 123255 mac 123255 bytes_out 194849 123255 bytes_in 77373 123255 station_ip 5.119.47.63 123255 port 184 123255 unique_id port 123255 remote_ip 10.8.0.234 123256 username hashtadani3 123256 mac 123256 bytes_out 0 123256 bytes_in 0 123256 station_ip 37.129.222.111 123256 port 94 123256 unique_id port 123256 remote_ip 10.8.1.94 123258 username forozande 123258 mac 123258 bytes_out 0 123258 bytes_in 0 123258 station_ip 37.129.60.244 123258 port 183 123258 unique_id port 123258 remote_ip 10.8.0.74 123259 username hashtadani3 123259 mac 123259 bytes_out 0 123259 bytes_in 0 123259 station_ip 37.129.222.111 123259 port 183 123259 unique_id port 123259 remote_ip 10.8.0.154 123261 username hashtadani3 123261 mac 123261 bytes_out 0 123261 bytes_in 0 123261 station_ip 37.129.222.111 123261 port 183 123261 unique_id port 123261 remote_ip 10.8.0.154 123274 username hashtadani3 123274 mac 123274 bytes_out 0 123274 bytes_in 0 123274 station_ip 37.129.222.111 123274 port 184 123274 unique_id port 123274 remote_ip 10.8.0.154 123277 username morteza 123277 mac 123277 bytes_out 0 123277 bytes_in 0 123277 station_ip 37.129.174.208 123277 port 184 123277 unique_id port 123277 remote_ip 10.8.0.46 123280 username houshang 123280 mac 123280 bytes_out 554964 123280 bytes_in 6738908 123280 station_ip 5.119.220.6 123280 port 157 123280 unique_id port 123280 remote_ip 10.8.0.22 123281 username mohsenaskari 123281 mac 123281 bytes_out 363277 123281 bytes_in 2129805 123281 station_ip 46.225.232.78 123281 port 183 123281 unique_id port 123281 remote_ip 10.8.0.246 123282 username hamidsalari1 123282 mac 123282 bytes_out 38040 123282 bytes_in 41602 123282 station_ip 83.122.83.238 123282 port 185 123282 unique_id port 123282 remote_ip 10.8.0.226 123284 username hashtadani3 123284 mac 123284 bytes_out 0 123284 bytes_in 0 123284 station_ip 37.129.222.111 123284 port 94 123284 unique_id port 123284 remote_ip 10.8.1.94 123285 username hashtadani3 123266 station_ip 37.129.222.111 123266 port 184 123266 unique_id port 123266 remote_ip 10.8.0.154 123269 username hamidsalari 123269 kill_reason Another user logged on this global unique id 123269 mac 123269 bytes_out 0 123269 bytes_in 0 123269 station_ip 5.119.199.253 123269 port 135 123269 unique_id port 123270 username hashtadani3 123270 mac 123270 bytes_out 0 123270 bytes_in 0 123270 station_ip 37.129.222.111 123270 port 184 123270 unique_id port 123270 remote_ip 10.8.0.154 123272 username hashtadani3 123272 mac 123272 bytes_out 0 123272 bytes_in 0 123272 station_ip 37.129.222.111 123272 port 94 123272 unique_id port 123272 remote_ip 10.8.1.94 123275 username morteza 123275 mac 123275 bytes_out 276758 123275 bytes_in 3096449 123275 station_ip 37.129.174.208 123275 port 157 123275 unique_id port 123275 remote_ip 10.8.0.46 123279 username hamidsalari1 123279 mac 123279 bytes_out 17166 123279 bytes_in 23390 123279 station_ip 83.122.83.238 123279 port 187 123279 unique_id port 123279 remote_ip 10.8.0.226 123286 username hashtadani3 123286 mac 123286 bytes_out 0 123286 bytes_in 0 123286 station_ip 37.129.222.111 123286 port 184 123286 unique_id port 123286 remote_ip 10.8.0.154 123287 username hashtadani3 123287 mac 123287 bytes_out 0 123287 bytes_in 0 123287 station_ip 37.129.222.111 123287 port 94 123287 unique_id port 123287 remote_ip 10.8.1.94 123289 username hashtadani3 123289 mac 123289 bytes_out 0 123289 bytes_in 0 123289 station_ip 37.129.222.111 123289 port 184 123289 unique_id port 123289 remote_ip 10.8.0.154 123291 username hashtadani3 123291 mac 123291 bytes_out 0 123291 bytes_in 0 123291 station_ip 37.129.222.111 123291 port 182 123291 unique_id port 123291 remote_ip 10.8.0.154 123294 username hashtadani3 123294 mac 123294 bytes_out 0 123294 bytes_in 0 123294 station_ip 37.129.222.111 123294 port 94 123294 unique_id port 123294 remote_ip 10.8.1.94 123299 username hashtadani3 123299 mac 123299 bytes_out 0 123299 bytes_in 0 123299 station_ip 37.129.222.111 123299 port 182 123299 unique_id port 123299 remote_ip 10.8.0.154 123300 username hashtadani3 123300 mac 123300 bytes_out 0 123300 bytes_in 0 123300 station_ip 37.129.222.111 123300 port 94 123300 unique_id port 123300 remote_ip 10.8.1.94 123304 username hashtadani3 123304 mac 123304 bytes_out 0 123304 bytes_in 0 123304 station_ip 37.129.222.111 123304 port 94 123304 unique_id port 123304 remote_ip 10.8.1.94 123306 username forozande 123306 mac 123306 bytes_out 1331520 123306 bytes_in 13454927 123306 station_ip 113.203.122.79 123306 port 183 123306 unique_id port 123306 remote_ip 10.8.0.74 123307 username hashtadani3 123307 mac 123307 bytes_out 0 123307 bytes_in 0 123307 station_ip 37.129.222.111 123307 port 182 123307 unique_id port 123307 remote_ip 10.8.0.154 123312 username hashtadani3 123312 mac 123312 bytes_out 0 123312 bytes_in 0 123312 station_ip 37.129.222.111 123312 port 94 123312 unique_id port 123312 remote_ip 10.8.1.94 123315 username hashtadani3 123315 mac 123315 bytes_out 0 123315 bytes_in 0 123315 station_ip 37.129.222.111 123315 port 182 123315 unique_id port 123315 remote_ip 10.8.0.154 123322 username hashtadani3 123322 mac 123322 bytes_out 0 123322 bytes_in 0 123322 station_ip 37.129.222.111 123322 port 94 123322 unique_id port 123322 remote_ip 10.8.1.94 123326 username morteza 123326 mac 123326 bytes_out 0 123326 bytes_in 0 123326 station_ip 37.129.208.232 123326 port 182 123278 port 185 123278 unique_id port 123278 remote_ip 10.8.0.82 123283 username hashtadani3 123283 mac 123283 bytes_out 4018485 123283 bytes_in 45993235 123283 station_ip 37.129.222.111 123283 port 184 123283 unique_id port 123283 remote_ip 10.8.0.154 123288 username barzegar 123288 mac 123288 bytes_out 0 123288 bytes_in 0 123288 station_ip 5.119.47.63 123288 port 182 123288 unique_id port 123288 remote_ip 10.8.0.234 123290 username hashtadani3 123290 mac 123290 bytes_out 0 123290 bytes_in 0 123290 station_ip 37.129.222.111 123290 port 182 123290 unique_id port 123290 remote_ip 10.8.0.154 123292 username hashtadani3 123292 mac 123292 bytes_out 0 123292 bytes_in 0 123292 station_ip 37.129.222.111 123292 port 94 123292 unique_id port 123292 remote_ip 10.8.1.94 123295 username hashtadani3 123295 mac 123295 bytes_out 0 123295 bytes_in 0 123295 station_ip 37.129.222.111 123295 port 182 123295 unique_id port 123295 remote_ip 10.8.0.154 123296 username hashtadani3 123296 mac 123296 bytes_out 0 123296 bytes_in 0 123296 station_ip 37.129.222.111 123296 port 94 123296 unique_id port 123296 remote_ip 10.8.1.94 123297 username hashtadani3 123297 mac 123297 bytes_out 0 123297 bytes_in 0 123297 station_ip 37.129.222.111 123297 port 182 123297 unique_id port 123297 remote_ip 10.8.0.154 123301 username hashtadani3 123301 mac 123301 bytes_out 0 123301 bytes_in 0 123301 station_ip 37.129.222.111 123301 port 94 123301 unique_id port 123301 remote_ip 10.8.1.94 123305 username hashtadani3 123305 mac 123305 bytes_out 0 123305 bytes_in 0 123305 station_ip 37.129.222.111 123305 port 182 123305 unique_id port 123305 remote_ip 10.8.0.154 123308 username hashtadani3 123308 mac 123308 bytes_out 0 123308 bytes_in 0 123308 station_ip 37.129.222.111 123308 port 182 123308 unique_id port 123308 remote_ip 10.8.0.154 123310 username hashtadani3 123310 mac 123310 bytes_out 0 123310 bytes_in 0 123310 station_ip 37.129.222.111 123310 port 182 123310 unique_id port 123310 remote_ip 10.8.0.154 123313 username barzegar 123313 mac 123313 bytes_out 13586 123313 bytes_in 19968 123313 station_ip 5.119.47.63 123313 port 184 123313 unique_id port 123313 remote_ip 10.8.0.234 123316 username hashtadani3 123316 mac 123316 bytes_out 0 123316 bytes_in 0 123316 station_ip 37.129.222.111 123316 port 94 123316 unique_id port 123316 remote_ip 10.8.1.94 123318 username barzegar 123318 mac 123318 bytes_out 0 123318 bytes_in 0 123318 station_ip 5.119.47.63 123318 port 184 123318 unique_id port 123318 remote_ip 10.8.0.234 123319 username hashtadani3 123319 mac 123319 bytes_out 0 123319 bytes_in 0 123319 station_ip 37.129.222.111 123319 port 182 123319 unique_id port 123319 remote_ip 10.8.0.154 123320 username hashtadani3 123320 mac 123320 bytes_out 0 123320 bytes_in 0 123320 station_ip 37.129.222.111 123320 port 182 123320 unique_id port 123320 remote_ip 10.8.0.154 123323 username hashtadani3 123323 mac 123323 bytes_out 0 123323 bytes_in 0 123323 station_ip 37.129.222.111 123323 port 182 123323 unique_id port 123323 remote_ip 10.8.0.154 123324 username hashtadani3 123324 mac 123324 bytes_out 0 123324 bytes_in 0 123324 station_ip 37.129.222.111 123324 port 94 123324 unique_id port 123324 remote_ip 10.8.1.94 123325 username morteza 123325 mac 123325 bytes_out 0 123325 bytes_in 0 123325 station_ip 37.129.208.232 123325 port 183 123325 unique_id port 123325 remote_ip 10.8.0.46 123285 mac 123285 bytes_out 0 123285 bytes_in 0 123285 station_ip 37.129.222.111 123285 port 94 123285 unique_id port 123285 remote_ip 10.8.1.94 123293 username hashtadani3 123293 mac 123293 bytes_out 0 123293 bytes_in 0 123293 station_ip 37.129.222.111 123293 port 182 123293 unique_id port 123293 remote_ip 10.8.0.154 123298 username hashtadani3 123298 mac 123298 bytes_out 0 123298 bytes_in 0 123298 station_ip 37.129.222.111 123298 port 94 123298 unique_id port 123298 remote_ip 10.8.1.94 123302 username hashtadani3 123302 mac 123302 bytes_out 0 123302 bytes_in 0 123302 station_ip 37.129.222.111 123302 port 182 123302 unique_id port 123302 remote_ip 10.8.0.154 123303 username hashtadani3 123303 mac 123303 bytes_out 0 123303 bytes_in 0 123303 station_ip 37.129.222.111 123303 port 182 123303 unique_id port 123303 remote_ip 10.8.0.154 123309 username hashtadani3 123309 mac 123309 bytes_out 0 123309 bytes_in 0 123309 station_ip 37.129.222.111 123309 port 94 123309 unique_id port 123309 remote_ip 10.8.1.94 123311 username hashtadani3 123311 mac 123311 bytes_out 0 123311 bytes_in 0 123311 station_ip 37.129.222.111 123311 port 182 123311 unique_id port 123311 remote_ip 10.8.0.154 123314 username malekpoir 123314 kill_reason Another user logged on this global unique id 123314 mac 123314 bytes_out 0 123314 bytes_in 0 123314 station_ip 5.120.182.240 123314 port 157 123314 unique_id port 123314 remote_ip 10.8.0.58 123317 username hashtadani3 123317 mac 123317 bytes_out 0 123317 bytes_in 0 123317 station_ip 37.129.222.111 123317 port 182 123317 unique_id port 123317 remote_ip 10.8.0.154 123321 username hashtadani3 123321 mac 123321 bytes_out 0 123321 bytes_in 0 123321 station_ip 37.129.222.111 123321 port 182 123321 unique_id port 123321 remote_ip 10.8.0.154 123328 username hashtadani3 123328 mac 123328 bytes_out 1126930 123328 bytes_in 8420777 123328 station_ip 37.129.222.111 123328 port 94 123328 unique_id port 123328 remote_ip 10.8.1.94 123330 username barzegar 123330 mac 123330 bytes_out 10431 123330 bytes_in 14614 123330 station_ip 5.119.47.63 123330 port 99 123330 unique_id port 123330 remote_ip 10.8.1.174 123333 username alireza 123333 unique_id port 123333 terminate_cause User-Request 123333 bytes_out 919352 123333 bytes_in 12301329 123333 station_ip 5.119.71.66 123333 port 15729860 123333 nas_port_type Virtual 123333 remote_ip 5.5.5.253 123334 username hashtadani3 123334 mac 123334 bytes_out 0 123334 bytes_in 0 123334 station_ip 37.129.222.111 123334 port 184 123334 unique_id port 123334 remote_ip 10.8.0.154 123335 username hashtadani3 123335 mac 123335 bytes_out 0 123335 bytes_in 0 123335 station_ip 37.129.222.111 123335 port 186 123335 unique_id port 123335 remote_ip 10.8.0.154 123336 username hashtadani3 123336 mac 123336 bytes_out 0 123336 bytes_in 0 123336 station_ip 37.129.222.111 123336 port 186 123336 unique_id port 123336 remote_ip 10.8.0.154 123339 username hashtadani3 123339 mac 123339 bytes_out 0 123339 bytes_in 0 123339 station_ip 37.129.222.111 123339 port 186 123339 unique_id port 123339 remote_ip 10.8.0.154 123340 username hashtadani3 123340 mac 123340 bytes_out 0 123340 bytes_in 0 123340 station_ip 37.129.222.111 123340 port 186 123340 unique_id port 123340 remote_ip 10.8.0.154 123344 username hashtadani3 123344 mac 123344 bytes_out 0 123344 bytes_in 0 123344 station_ip 37.129.222.111 123344 port 182 123344 unique_id port 123344 remote_ip 10.8.0.154 123326 unique_id port 123326 remote_ip 10.8.0.46 123327 username morteza 123327 mac 123327 bytes_out 0 123327 bytes_in 0 123327 station_ip 37.129.208.232 123327 port 182 123327 unique_id port 123327 remote_ip 10.8.0.46 123329 username hashtadani3 123329 mac 123329 bytes_out 0 123329 bytes_in 0 123329 station_ip 37.129.222.111 123329 port 184 123329 unique_id port 123329 remote_ip 10.8.0.154 123331 username hashtadani3 123331 mac 123331 bytes_out 0 123331 bytes_in 0 123331 station_ip 37.129.222.111 123331 port 94 123331 unique_id port 123331 remote_ip 10.8.1.94 123337 username hashtadani3 123337 mac 123337 bytes_out 0 123337 bytes_in 0 123337 station_ip 37.129.222.111 123337 port 99 123337 unique_id port 123337 remote_ip 10.8.1.94 123347 username hashtadani3 123347 mac 123347 bytes_out 0 123347 bytes_in 0 123347 station_ip 37.129.222.111 123347 port 182 123347 unique_id port 123347 remote_ip 10.8.0.154 123350 username hashtadani3 123350 mac 123350 bytes_out 0 123350 bytes_in 0 123350 station_ip 37.129.222.111 123350 port 182 123350 unique_id port 123350 remote_ip 10.8.0.154 123353 username forozande 123353 mac 123353 bytes_out 920102 123353 bytes_in 15515501 123353 station_ip 37.129.23.186 123353 port 184 123353 unique_id port 123353 remote_ip 10.8.0.74 123357 username hashtadani3 123357 mac 123357 bytes_out 0 123357 bytes_in 0 123357 station_ip 37.129.222.111 123357 port 184 123357 unique_id port 123357 remote_ip 10.8.0.154 123361 username hashtadani3 123361 mac 123361 bytes_out 0 123361 bytes_in 0 123361 station_ip 37.129.222.111 123361 port 99 123361 unique_id port 123361 remote_ip 10.8.1.94 123362 username hashtadani3 123362 mac 123362 bytes_out 0 123362 bytes_in 0 123362 station_ip 37.129.222.111 123362 port 184 123362 unique_id port 123362 remote_ip 10.8.0.154 123368 username hashtadani3 123368 mac 123368 bytes_out 0 123368 bytes_in 0 123368 station_ip 37.129.222.111 123368 port 184 123368 unique_id port 123368 remote_ip 10.8.0.154 123370 username hashtadani3 123370 mac 123370 bytes_out 0 123370 bytes_in 0 123370 station_ip 37.129.222.111 123370 port 184 123370 unique_id port 123370 remote_ip 10.8.0.154 123371 username hashtadani3 123371 mac 123371 bytes_out 0 123371 bytes_in 0 123371 station_ip 37.129.222.111 123371 port 94 123371 unique_id port 123371 remote_ip 10.8.1.94 123372 username hashtadani3 123372 mac 123372 bytes_out 0 123372 bytes_in 0 123372 station_ip 37.129.222.111 123372 port 184 123372 unique_id port 123372 remote_ip 10.8.0.154 123374 username barzegar 123374 mac 123374 bytes_out 0 123374 bytes_in 0 123374 station_ip 5.119.47.63 123374 port 94 123374 unique_id port 123374 remote_ip 10.8.1.174 123379 username hashtadani3 123379 mac 123379 bytes_out 0 123379 bytes_in 0 123379 station_ip 37.129.222.111 123379 port 99 123379 unique_id port 123379 remote_ip 10.8.1.94 123382 username morteza 123382 mac 123382 bytes_out 0 123382 bytes_in 0 123382 station_ip 37.129.208.232 123382 port 184 123382 unique_id port 123382 remote_ip 10.8.0.46 123395 username barzegar 123395 mac 123395 bytes_out 12835 123395 bytes_in 10586 123395 station_ip 5.119.47.63 123395 port 94 123395 unique_id port 123395 remote_ip 10.8.1.174 123396 username hashtadani3 123396 mac 123396 bytes_out 0 123396 bytes_in 0 123396 station_ip 37.129.222.111 123396 port 122 123396 unique_id port 123396 remote_ip 10.8.0.154 123399 username hashtadani3 123332 username hashtadani3 123332 mac 123332 bytes_out 0 123332 bytes_in 0 123332 station_ip 37.129.222.111 123332 port 184 123332 unique_id port 123332 remote_ip 10.8.0.154 123338 username hashtadani3 123338 mac 123338 bytes_out 0 123338 bytes_in 0 123338 station_ip 37.129.222.111 123338 port 186 123338 unique_id port 123338 remote_ip 10.8.0.154 123341 username morteza 123341 mac 123341 bytes_out 0 123341 bytes_in 0 123341 station_ip 37.129.208.232 123341 port 182 123341 unique_id port 123341 remote_ip 10.8.0.46 123342 username hashtadani3 123342 mac 123342 bytes_out 0 123342 bytes_in 0 123342 station_ip 37.129.222.111 123342 port 182 123342 unique_id port 123342 remote_ip 10.8.0.154 123343 username hashtadani3 123343 mac 123343 bytes_out 0 123343 bytes_in 0 123343 station_ip 37.129.222.111 123343 port 182 123343 unique_id port 123343 remote_ip 10.8.0.154 123345 username barzegar 123345 mac 123345 bytes_out 8792 123345 bytes_in 12383 123345 station_ip 5.119.47.63 123345 port 94 123345 unique_id port 123345 remote_ip 10.8.1.174 123348 username mehdizare 123348 mac 123348 bytes_out 0 123348 bytes_in 0 123348 station_ip 5.120.59.106 123348 port 169 123348 unique_id port 123348 remote_ip 10.8.0.90 123349 username hashtadani3 123349 mac 123349 bytes_out 0 123349 bytes_in 0 123349 station_ip 37.129.222.111 123349 port 182 123349 unique_id port 123349 remote_ip 10.8.0.154 123351 username hashtadani3 123351 mac 123351 bytes_out 0 123351 bytes_in 0 123351 station_ip 37.129.222.111 123351 port 182 123351 unique_id port 123351 remote_ip 10.8.0.154 123355 username hashtadani3 123355 mac 123355 bytes_out 0 123355 bytes_in 0 123355 station_ip 37.129.222.111 123355 port 184 123355 unique_id port 123355 remote_ip 10.8.0.154 123358 username hashtadani3 123358 mac 123358 bytes_out 0 123358 bytes_in 0 123358 station_ip 37.129.222.111 123358 port 184 123358 unique_id port 123358 remote_ip 10.8.0.154 123359 username hashtadani3 123359 mac 123359 bytes_out 0 123359 bytes_in 0 123359 station_ip 37.129.222.111 123359 port 99 123359 unique_id port 123359 remote_ip 10.8.1.94 123363 username hashtadani3 123363 mac 123363 bytes_out 0 123363 bytes_in 0 123363 station_ip 37.129.222.111 123363 port 99 123363 unique_id port 123363 remote_ip 10.8.1.94 123365 username barzegar 123365 mac 123365 bytes_out 12932 123365 bytes_in 18105 123365 station_ip 5.119.47.63 123365 port 94 123365 unique_id port 123365 remote_ip 10.8.1.174 123366 username hashtadani3 123366 mac 123366 bytes_out 0 123366 bytes_in 0 123366 station_ip 37.129.222.111 123366 port 184 123366 unique_id port 123366 remote_ip 10.8.0.154 123375 username hashtadani3 123375 mac 123375 bytes_out 0 123375 bytes_in 0 123375 station_ip 37.129.222.111 123375 port 184 123375 unique_id port 123375 remote_ip 10.8.0.154 123380 username hashtadani3 123380 mac 123380 bytes_out 0 123380 bytes_in 0 123380 station_ip 37.129.222.111 123380 port 186 123380 unique_id port 123380 remote_ip 10.8.0.154 123381 username hashtadani3 123381 mac 123381 bytes_out 0 123381 bytes_in 0 123381 station_ip 37.129.222.111 123381 port 186 123381 unique_id port 123381 remote_ip 10.8.0.154 123383 username hashtadani3 123383 mac 123383 bytes_out 0 123383 bytes_in 0 123383 station_ip 37.129.222.111 123383 port 99 123383 unique_id port 123383 remote_ip 10.8.1.94 123384 username hashtadani3 123384 mac 123384 bytes_out 0 123346 username hashtadani3 123346 mac 123346 bytes_out 0 123346 bytes_in 0 123346 station_ip 37.129.222.111 123346 port 94 123346 unique_id port 123346 remote_ip 10.8.1.94 123352 username hashtadani3 123352 mac 123352 bytes_out 0 123352 bytes_in 0 123352 station_ip 37.129.222.111 123352 port 182 123352 unique_id port 123352 remote_ip 10.8.0.154 123354 username hashtadani3 123354 mac 123354 bytes_out 0 123354 bytes_in 0 123354 station_ip 37.129.222.111 123354 port 182 123354 unique_id port 123354 remote_ip 10.8.0.154 123356 username hashtadani3 123356 mac 123356 bytes_out 0 123356 bytes_in 0 123356 station_ip 37.129.222.111 123356 port 99 123356 unique_id port 123356 remote_ip 10.8.1.94 123360 username hashtadani3 123360 mac 123360 bytes_out 0 123360 bytes_in 0 123360 station_ip 37.129.222.111 123360 port 184 123360 unique_id port 123360 remote_ip 10.8.0.154 123364 username hashtadani3 123364 mac 123364 bytes_out 0 123364 bytes_in 0 123364 station_ip 37.129.222.111 123364 port 184 123364 unique_id port 123364 remote_ip 10.8.0.154 123367 username hashtadani3 123367 mac 123367 bytes_out 0 123367 bytes_in 0 123367 station_ip 37.129.222.111 123367 port 184 123367 unique_id port 123367 remote_ip 10.8.0.154 123369 username hashtadani3 123369 mac 123369 bytes_out 0 123369 bytes_in 0 123369 station_ip 37.129.222.111 123369 port 94 123369 unique_id port 123369 remote_ip 10.8.1.94 123373 username hashtadani3 123373 mac 123373 bytes_out 0 123373 bytes_in 0 123373 station_ip 37.129.222.111 123373 port 187 123373 unique_id port 123373 remote_ip 10.8.0.154 123376 username hashtadani3 123376 mac 123376 bytes_out 0 123376 bytes_in 0 123376 station_ip 37.129.222.111 123376 port 184 123376 unique_id port 123376 remote_ip 10.8.0.154 123377 username morteza 123377 mac 123377 bytes_out 0 123377 bytes_in 0 123377 station_ip 37.129.208.232 123377 port 186 123377 unique_id port 123377 remote_ip 10.8.0.46 123378 username hashtadani3 123378 mac 123378 bytes_out 0 123378 bytes_in 0 123378 station_ip 37.129.222.111 123378 port 186 123378 unique_id port 123378 remote_ip 10.8.0.154 123386 username hashtadani3 123386 mac 123386 bytes_out 0 123386 bytes_in 0 123386 station_ip 37.129.222.111 123386 port 99 123386 unique_id port 123386 remote_ip 10.8.1.94 123388 username hashtadani3 123388 mac 123388 bytes_out 0 123388 bytes_in 0 123388 station_ip 37.129.222.111 123388 port 184 123388 unique_id port 123388 remote_ip 10.8.0.154 123389 username hashtadani3 123389 mac 123389 bytes_out 0 123389 bytes_in 0 123389 station_ip 37.129.222.111 123389 port 186 123389 unique_id port 123389 remote_ip 10.8.0.154 123391 username mohsenaskari 123391 mac 123391 bytes_out 0 123391 bytes_in 0 123391 station_ip 46.225.232.78 123391 port 183 123391 unique_id port 123391 remote_ip 10.8.0.246 123393 username hashtadani3 123393 mac 123393 bytes_out 0 123393 bytes_in 0 123393 station_ip 37.129.222.111 123393 port 122 123393 unique_id port 123393 remote_ip 10.8.0.154 123398 username hashtadani3 123398 mac 123398 bytes_out 0 123398 bytes_in 0 123398 station_ip 37.129.222.111 123398 port 122 123398 unique_id port 123398 remote_ip 10.8.0.154 123401 username malekpoir 123401 mac 123401 bytes_out 0 123401 bytes_in 0 123401 station_ip 5.120.182.240 123401 port 157 123401 unique_id port 123405 username hashtadani3 123405 mac 123405 bytes_out 0 123405 bytes_in 0 123384 bytes_in 0 123384 station_ip 37.129.222.111 123384 port 186 123384 unique_id port 123384 remote_ip 10.8.0.154 123385 username hashtadani3 123385 mac 123385 bytes_out 0 123385 bytes_in 0 123385 station_ip 37.129.222.111 123385 port 99 123385 unique_id port 123385 remote_ip 10.8.1.94 123387 username morteza 123387 mac 123387 bytes_out 0 123387 bytes_in 0 123387 station_ip 37.129.208.232 123387 port 184 123387 unique_id port 123387 remote_ip 10.8.0.46 123390 username afarin1 123390 mac 123390 bytes_out 0 123390 bytes_in 0 123390 station_ip 37.129.169.71 123390 port 122 123390 unique_id port 123390 remote_ip 10.8.0.118 123392 username hashtadani3 123392 mac 123392 bytes_out 0 123392 bytes_in 0 123392 station_ip 37.129.222.111 123392 port 122 123392 unique_id port 123392 remote_ip 10.8.0.154 123394 username morteza 123394 mac 123394 bytes_out 0 123394 bytes_in 0 123394 station_ip 37.129.208.232 123394 port 184 123394 unique_id port 123394 remote_ip 10.8.0.46 123397 username hashtadani3 123397 mac 123397 bytes_out 0 123397 bytes_in 0 123397 station_ip 37.129.222.111 123397 port 122 123397 unique_id port 123397 remote_ip 10.8.0.154 123400 username morteza 123400 mac 123400 bytes_out 0 123400 bytes_in 0 123400 station_ip 37.129.208.232 123400 port 122 123400 unique_id port 123400 remote_ip 10.8.0.46 123402 username hashtadani3 123402 mac 123402 bytes_out 0 123402 bytes_in 0 123402 station_ip 37.129.222.111 123402 port 94 123402 unique_id port 123402 remote_ip 10.8.1.94 123404 username hashtadani3 123404 mac 123404 bytes_out 0 123404 bytes_in 0 123404 station_ip 37.129.222.111 123404 port 157 123404 unique_id port 123404 remote_ip 10.8.0.154 123410 username hashtadani3 123410 mac 123410 bytes_out 0 123410 bytes_in 0 123410 station_ip 37.129.222.111 123410 port 184 123410 unique_id port 123410 remote_ip 10.8.0.154 123412 username hashtadani3 123412 mac 123412 bytes_out 0 123412 bytes_in 0 123412 station_ip 37.129.222.111 123412 port 99 123412 unique_id port 123412 remote_ip 10.8.1.94 123414 username hashtadani3 123414 mac 123414 bytes_out 0 123414 bytes_in 0 123414 station_ip 37.129.222.111 123414 port 184 123414 unique_id port 123414 remote_ip 10.8.0.154 123422 username hashtadani3 123422 mac 123422 bytes_out 0 123422 bytes_in 0 123422 station_ip 37.129.222.111 123422 port 186 123422 unique_id port 123422 remote_ip 10.8.0.154 123424 username hashtadani3 123424 mac 123424 bytes_out 0 123424 bytes_in 0 123424 station_ip 37.129.222.111 123424 port 186 123424 unique_id port 123424 remote_ip 10.8.0.154 123425 username hashtadani3 123425 mac 123425 bytes_out 0 123425 bytes_in 0 123425 station_ip 37.129.222.111 123425 port 99 123425 unique_id port 123425 remote_ip 10.8.1.94 123433 username hashtadani3 123433 mac 123433 bytes_out 0 123433 bytes_in 0 123433 station_ip 37.129.222.111 123433 port 184 123433 unique_id port 123433 remote_ip 10.8.0.154 123435 username hashtadani3 123435 mac 123435 bytes_out 0 123435 bytes_in 0 123435 station_ip 37.129.222.111 123435 port 157 123435 unique_id port 123435 remote_ip 10.8.0.154 123445 username alipour 123445 mac 123445 bytes_out 0 123445 bytes_in 0 123445 station_ip 83.122.182.227 123445 port 176 123445 unique_id port 123447 username barzegar 123447 mac 123447 bytes_out 0 123447 bytes_in 0 123447 station_ip 5.119.47.63 123447 port 176 123447 unique_id port 123399 mac 123399 bytes_out 0 123399 bytes_in 0 123399 station_ip 37.129.222.111 123399 port 122 123399 unique_id port 123399 remote_ip 10.8.0.154 123403 username hashtadani3 123403 mac 123403 bytes_out 0 123403 bytes_in 0 123403 station_ip 37.129.222.111 123403 port 157 123403 unique_id port 123403 remote_ip 10.8.0.154 123406 username hashtadani3 123406 mac 123406 bytes_out 0 123406 bytes_in 0 123406 station_ip 37.129.222.111 123406 port 157 123406 unique_id port 123406 remote_ip 10.8.0.154 123408 username hashtadani3 123408 mac 123408 bytes_out 0 123408 bytes_in 0 123408 station_ip 37.129.222.111 123408 port 157 123408 unique_id port 123408 remote_ip 10.8.0.154 123413 username morteza 123413 mac 123413 bytes_out 2454 123413 bytes_in 4822 123413 station_ip 37.129.208.232 123413 port 94 123413 unique_id port 123413 remote_ip 10.8.1.62 123420 username hashtadani3 123420 mac 123420 bytes_out 0 123420 bytes_in 0 123420 station_ip 37.129.222.111 123420 port 157 123420 unique_id port 123420 remote_ip 10.8.0.154 123421 username hashtadani3 123421 mac 123421 bytes_out 0 123421 bytes_in 0 123421 station_ip 37.129.222.111 123421 port 186 123421 unique_id port 123421 remote_ip 10.8.0.154 123427 username hashtadani3 123427 mac 123427 bytes_out 0 123427 bytes_in 0 123427 station_ip 37.129.222.111 123427 port 157 123427 unique_id port 123427 remote_ip 10.8.0.154 123428 username sabaghnezhad 123428 mac 123428 bytes_out 0 123428 bytes_in 0 123428 station_ip 83.123.141.147 123428 port 184 123428 unique_id port 123428 remote_ip 10.8.0.186 123431 username hashtadani3 123431 mac 123431 bytes_out 0 123431 bytes_in 0 123431 station_ip 37.129.222.111 123431 port 184 123431 unique_id port 123431 remote_ip 10.8.0.154 123432 username hashtadani3 123432 mac 123432 bytes_out 0 123432 bytes_in 0 123432 station_ip 37.129.222.111 123432 port 184 123432 unique_id port 123432 remote_ip 10.8.0.154 123434 username Mahin 123434 mac 123434 bytes_out 0 123434 bytes_in 0 123434 station_ip 5.119.192.176 123434 port 157 123434 unique_id port 123434 remote_ip 10.8.0.222 123437 username hashtadani3 123437 mac 123437 bytes_out 0 123437 bytes_in 0 123437 station_ip 37.129.222.111 123437 port 157 123437 unique_id port 123437 remote_ip 10.8.0.154 123439 username morteza 123439 mac 123439 bytes_out 407935 123439 bytes_in 1806755 123439 station_ip 37.129.208.232 123439 port 94 123439 unique_id port 123439 remote_ip 10.8.1.62 123444 username hashtadani3 123444 mac 123444 bytes_out 0 123444 bytes_in 0 123444 station_ip 37.129.222.111 123444 port 94 123444 unique_id port 123444 remote_ip 10.8.1.94 123448 username hashtadani3 123448 mac 123448 bytes_out 0 123448 bytes_in 0 123448 station_ip 37.129.222.111 123448 port 186 123448 unique_id port 123448 remote_ip 10.8.0.154 123449 username rezaei 123449 kill_reason Another user logged on this global unique id 123449 mac 123449 bytes_out 0 123449 bytes_in 0 123449 station_ip 5.119.107.39 123449 port 183 123449 unique_id port 123449 remote_ip 10.8.0.206 123453 username hashtadani3 123453 mac 123453 bytes_out 0 123453 bytes_in 0 123453 station_ip 37.129.222.111 123453 port 184 123453 unique_id port 123453 remote_ip 10.8.0.154 123457 username hashtadani3 123457 mac 123457 bytes_out 0 123457 bytes_in 0 123457 station_ip 37.129.222.111 123457 port 184 123457 unique_id port 123457 remote_ip 10.8.0.154 123459 username hashtadani3 123459 mac 123405 station_ip 37.129.222.111 123405 port 157 123405 unique_id port 123405 remote_ip 10.8.0.154 123407 username hashtadani3 123407 mac 123407 bytes_out 0 123407 bytes_in 0 123407 station_ip 37.129.222.111 123407 port 157 123407 unique_id port 123407 remote_ip 10.8.0.154 123409 username hashtadani3 123409 mac 123409 bytes_out 0 123409 bytes_in 0 123409 station_ip 37.129.222.111 123409 port 157 123409 unique_id port 123409 remote_ip 10.8.0.154 123411 username hashtadani3 123411 mac 123411 bytes_out 0 123411 bytes_in 0 123411 station_ip 37.129.222.111 123411 port 99 123411 unique_id port 123411 remote_ip 10.8.1.94 123415 username hashtadani3 123415 mac 123415 bytes_out 0 123415 bytes_in 0 123415 station_ip 37.129.222.111 123415 port 94 123415 unique_id port 123415 remote_ip 10.8.1.94 123416 username hashtadani3 123416 mac 123416 bytes_out 0 123416 bytes_in 0 123416 station_ip 37.129.222.111 123416 port 184 123416 unique_id port 123416 remote_ip 10.8.0.154 123417 username barzegar 123417 mac 123417 bytes_out 0 123417 bytes_in 0 123417 station_ip 5.119.47.63 123417 port 157 123417 unique_id port 123417 remote_ip 10.8.0.234 123418 username hashtadani3 123418 mac 123418 bytes_out 0 123418 bytes_in 0 123418 station_ip 37.129.222.111 123418 port 157 123418 unique_id port 123418 remote_ip 10.8.0.154 123419 username hashtadani3 123419 mac 123419 bytes_out 0 123419 bytes_in 0 123419 station_ip 37.129.222.111 123419 port 157 123419 unique_id port 123419 remote_ip 10.8.0.154 123423 username barzegar 123423 mac 123423 bytes_out 0 123423 bytes_in 0 123423 station_ip 5.119.47.63 123423 port 157 123423 unique_id port 123423 remote_ip 10.8.0.234 123426 username hashtadani3 123426 mac 123426 bytes_out 0 123426 bytes_in 0 123426 station_ip 37.129.222.111 123426 port 157 123426 unique_id port 123426 remote_ip 10.8.0.154 123429 username hashtadani3 123429 mac 123429 bytes_out 0 123429 bytes_in 0 123429 station_ip 37.129.222.111 123429 port 157 123429 unique_id port 123429 remote_ip 10.8.0.154 123430 username hashtadani3 123430 mac 123430 bytes_out 0 123430 bytes_in 0 123430 station_ip 37.129.222.111 123430 port 99 123430 unique_id port 123430 remote_ip 10.8.1.94 123436 username hashtadani3 123436 mac 123436 bytes_out 0 123436 bytes_in 0 123436 station_ip 37.129.222.111 123436 port 157 123436 unique_id port 123436 remote_ip 10.8.0.154 123438 username hashtadani3 123438 mac 123438 bytes_out 0 123438 bytes_in 0 123438 station_ip 37.129.222.111 123438 port 157 123438 unique_id port 123438 remote_ip 10.8.0.154 123440 username hashtadani3 123440 mac 123440 bytes_out 0 123440 bytes_in 0 123440 station_ip 37.129.222.111 123440 port 157 123440 unique_id port 123440 remote_ip 10.8.0.154 123441 username hashtadani3 123441 mac 123441 bytes_out 0 123441 bytes_in 0 123441 station_ip 37.129.222.111 123441 port 157 123441 unique_id port 123441 remote_ip 10.8.0.154 123442 username hashtadani3 123442 mac 123442 bytes_out 0 123442 bytes_in 0 123442 station_ip 37.129.222.111 123442 port 157 123442 unique_id port 123442 remote_ip 10.8.0.154 123443 username hashtadani3 123443 mac 123443 bytes_out 0 123443 bytes_in 0 123443 station_ip 37.129.222.111 123443 port 157 123443 unique_id port 123443 remote_ip 10.8.0.154 123446 username hashtadani3 123446 mac 123446 bytes_out 0 123446 bytes_in 0 123446 station_ip 37.129.222.111 123446 port 94 123446 unique_id port 123446 remote_ip 10.8.1.94 123451 username hashtadani3 123451 mac 123451 bytes_out 0 123451 bytes_in 0 123451 station_ip 37.129.222.111 123451 port 184 123451 unique_id port 123451 remote_ip 10.8.0.154 123452 username hashtadani3 123452 mac 123452 bytes_out 0 123452 bytes_in 0 123452 station_ip 37.129.222.111 123452 port 94 123452 unique_id port 123452 remote_ip 10.8.1.94 123455 username morteza 123455 mac 123455 bytes_out 0 123455 bytes_in 0 123455 station_ip 37.129.208.232 123455 port 186 123455 unique_id port 123455 remote_ip 10.8.0.46 123464 username hashtadani3 123464 mac 123464 bytes_out 0 123464 bytes_in 0 123464 station_ip 37.129.222.111 123464 port 176 123464 unique_id port 123464 remote_ip 10.8.0.154 123468 username hashtadani3 123468 mac 123468 bytes_out 0 123468 bytes_in 0 123468 station_ip 37.129.222.111 123468 port 94 123468 unique_id port 123468 remote_ip 10.8.1.94 123469 username alipour 123469 mac 123469 bytes_out 0 123469 bytes_in 0 123469 station_ip 83.122.182.227 123469 port 157 123469 unique_id port 123469 remote_ip 10.8.0.102 123470 username hashtadani3 123470 mac 123470 bytes_out 0 123470 bytes_in 0 123470 station_ip 37.129.222.111 123470 port 183 123470 unique_id port 123470 remote_ip 10.8.0.154 123472 username hamidsalari1 123472 mac 123472 bytes_out 0 123472 bytes_in 0 123472 station_ip 83.122.83.238 123472 port 176 123472 unique_id port 123472 remote_ip 10.8.0.226 123473 username morteza 123473 mac 123473 bytes_out 0 123473 bytes_in 0 123473 station_ip 37.129.208.232 123473 port 157 123473 unique_id port 123473 remote_ip 10.8.0.46 123475 username hashtadani3 123475 mac 123475 bytes_out 0 123475 bytes_in 0 123475 station_ip 5.202.19.168 123475 port 94 123475 unique_id port 123475 remote_ip 10.8.1.94 123476 username mehdizare 123476 mac 123476 bytes_out 0 123476 bytes_in 0 123476 station_ip 5.120.59.106 123476 port 157 123476 unique_id port 123476 remote_ip 10.8.0.90 123480 username forozande 123480 mac 123480 bytes_out 300961 123480 bytes_in 2121655 123480 station_ip 113.203.17.248 123480 port 157 123480 unique_id port 123480 remote_ip 10.8.0.74 123482 username mehdizare 123482 mac 123482 bytes_out 0 123482 bytes_in 0 123482 station_ip 5.120.59.106 123482 port 184 123482 unique_id port 123482 remote_ip 10.8.0.90 123488 username barzegar 123488 mac 123488 bytes_out 0 123488 bytes_in 0 123488 station_ip 5.119.47.63 123488 port 100 123488 unique_id port 123488 remote_ip 10.8.1.174 123490 username forozande 123490 mac 123490 bytes_out 0 123490 bytes_in 0 123490 station_ip 113.203.108.63 123490 port 170 123490 unique_id port 123490 remote_ip 10.8.0.74 123492 username barzegar 123492 mac 123492 bytes_out 2853 123492 bytes_in 5250 123492 station_ip 5.119.47.63 123492 port 99 123492 unique_id port 123492 remote_ip 10.8.1.174 123502 username barzegar 123502 mac 123502 bytes_out 0 123502 bytes_in 0 123502 station_ip 5.119.47.63 123502 port 99 123502 unique_id port 123502 remote_ip 10.8.1.174 123503 username hashtadani3 123503 mac 123503 bytes_out 0 123503 bytes_in 0 123503 station_ip 5.202.19.168 123503 port 184 123503 unique_id port 123503 remote_ip 10.8.0.154 123509 username hashtadani3 123509 kill_reason Maximum number of concurrent logins reached 123509 mac 123509 bytes_out 0 123509 bytes_in 0 123509 station_ip 37.129.170.111 123509 port 185 123509 unique_id port 123511 username barzegar 123447 remote_ip 10.8.0.234 123450 username morteza 123450 mac 123450 bytes_out 0 123450 bytes_in 0 123450 station_ip 37.129.208.232 123450 port 184 123450 unique_id port 123450 remote_ip 10.8.0.46 123454 username hashtadani3 123454 mac 123454 bytes_out 0 123454 bytes_in 0 123454 station_ip 37.129.222.111 123454 port 94 123454 unique_id port 123454 remote_ip 10.8.1.94 123456 username hashtadani3 123456 mac 123456 bytes_out 0 123456 bytes_in 0 123456 station_ip 37.129.222.111 123456 port 184 123456 unique_id port 123456 remote_ip 10.8.0.154 123458 username rezaei 123458 mac 123458 bytes_out 0 123458 bytes_in 0 123458 station_ip 5.119.107.39 123458 port 183 123458 unique_id port 123460 username hashtadani3 123460 mac 123460 bytes_out 0 123460 bytes_in 0 123460 station_ip 37.129.222.111 123460 port 183 123460 unique_id port 123460 remote_ip 10.8.0.154 123461 username barzegar 123461 mac 123461 bytes_out 0 123461 bytes_in 0 123461 station_ip 5.119.47.63 123461 port 176 123461 unique_id port 123461 remote_ip 10.8.0.234 123463 username hashtadani3 123463 mac 123463 bytes_out 0 123463 bytes_in 0 123463 station_ip 37.129.222.111 123463 port 176 123463 unique_id port 123463 remote_ip 10.8.0.154 123465 username hamidsalari1 123465 mac 123465 bytes_out 0 123465 bytes_in 0 123465 station_ip 83.122.83.238 123465 port 185 123465 unique_id port 123465 remote_ip 10.8.0.226 123467 username barzegar 123467 mac 123467 bytes_out 0 123467 bytes_in 0 123467 station_ip 5.119.47.63 123467 port 176 123467 unique_id port 123467 remote_ip 10.8.0.234 123471 username hashtadani3 123471 mac 123471 bytes_out 0 123471 bytes_in 0 123471 station_ip 5.202.19.168 123471 port 94 123471 unique_id port 123471 remote_ip 10.8.1.94 123474 username mehdizare 123474 mac 123474 bytes_out 34699 123474 bytes_in 60298 123474 station_ip 5.120.59.106 123474 port 169 123474 unique_id port 123474 remote_ip 10.8.0.90 123479 username hashtadani3 123479 mac 123479 bytes_out 0 123479 bytes_in 0 123479 station_ip 5.202.19.168 123479 port 169 123479 unique_id port 123479 remote_ip 10.8.0.154 123481 username jamali 123481 mac 123481 bytes_out 0 123481 bytes_in 0 123481 station_ip 5.120.145.163 123481 port 170 123481 unique_id port 123481 remote_ip 10.8.0.150 123484 username mehdizare 123484 mac 123484 bytes_out 0 123484 bytes_in 0 123484 station_ip 5.120.59.106 123484 port 170 123484 unique_id port 123484 remote_ip 10.8.0.90 123485 username barzegar 123485 mac 123485 bytes_out 0 123485 bytes_in 0 123485 station_ip 5.119.47.63 123485 port 169 123485 unique_id port 123485 remote_ip 10.8.0.234 123489 username amir 123489 mac 123489 bytes_out 3060860 123489 bytes_in 5146152 123489 station_ip 113.203.54.64 123489 port 99 123489 unique_id port 123489 remote_ip 10.8.1.22 123491 username hamidsalari1 123491 mac 123491 bytes_out 0 123491 bytes_in 0 123491 station_ip 83.122.83.238 123491 port 176 123491 unique_id port 123491 remote_ip 10.8.0.226 123493 username mehdizare 123493 mac 123493 bytes_out 37738 123493 bytes_in 83846 123493 station_ip 5.120.59.106 123493 port 94 123493 unique_id port 123493 remote_ip 10.8.1.42 123495 username zare 123495 kill_reason Another user logged on this global unique id 123495 mac 123495 bytes_out 0 123495 bytes_in 0 123495 station_ip 94.183.214.14 123495 port 169 123495 unique_id port 123495 remote_ip 10.8.0.18 123496 username malekpoir 124545 username barzegar 123459 bytes_out 0 123459 bytes_in 0 123459 station_ip 37.129.222.111 123459 port 184 123459 unique_id port 123459 remote_ip 10.8.0.154 123462 username hashtadani3 123462 mac 123462 bytes_out 0 123462 bytes_in 0 123462 station_ip 37.129.222.111 123462 port 183 123462 unique_id port 123462 remote_ip 10.8.0.154 123466 username hashtadani3 123466 mac 123466 bytes_out 0 123466 bytes_in 0 123466 station_ip 37.129.222.111 123466 port 183 123466 unique_id port 123466 remote_ip 10.8.0.154 123477 username mehdizare 123477 mac 123477 bytes_out 0 123477 bytes_in 0 123477 station_ip 5.120.59.106 123477 port 169 123477 unique_id port 123477 remote_ip 10.8.0.90 123478 username barzegar 123478 mac 123478 bytes_out 0 123478 bytes_in 0 123478 station_ip 5.119.47.63 123478 port 169 123478 unique_id port 123478 remote_ip 10.8.0.234 123483 username barzegar 123483 mac 123483 bytes_out 0 123483 bytes_in 0 123483 station_ip 5.119.47.63 123483 port 169 123483 unique_id port 123483 remote_ip 10.8.0.234 123486 username forozande 123486 mac 123486 bytes_out 972940 123486 bytes_in 13389631 123486 station_ip 113.203.108.63 123486 port 184 123486 unique_id port 123486 remote_ip 10.8.0.74 123487 username barzegar 123487 mac 123487 bytes_out 0 123487 bytes_in 0 123487 station_ip 5.119.47.63 123487 port 169 123487 unique_id port 123487 remote_ip 10.8.0.234 123494 username forozande 123494 mac 123494 bytes_out 0 123494 bytes_in 0 123494 station_ip 37.129.95.76 123494 port 170 123494 unique_id port 123494 remote_ip 10.8.0.74 123497 username jamali 123497 mac 123497 bytes_out 110080 123497 bytes_in 174358 123497 station_ip 5.120.145.163 123497 port 157 123497 unique_id port 123497 remote_ip 10.8.0.150 123498 username mehdizare 123498 mac 123498 bytes_out 18027 123498 bytes_in 25337 123498 station_ip 5.120.59.106 123498 port 94 123498 unique_id port 123498 remote_ip 10.8.1.42 123499 username morteza 123499 mac 123499 bytes_out 0 123499 bytes_in 0 123499 station_ip 37.129.156.36 123499 port 176 123499 unique_id port 123499 remote_ip 10.8.0.46 123501 username malekpoir 123501 kill_reason Another user logged on this global unique id 123501 mac 123501 bytes_out 0 123501 bytes_in 0 123501 station_ip 5.120.182.240 123501 port 122 123501 unique_id port 123505 username hashtadani3 123505 mac 123505 bytes_out 0 123505 bytes_in 0 123505 station_ip 37.129.170.111 123505 port 157 123505 unique_id port 123505 remote_ip 10.8.0.154 123506 username hashtadani3 123506 kill_reason Maximum number of concurrent logins reached 123506 mac 123506 bytes_out 0 123506 bytes_in 0 123506 station_ip 37.129.170.111 123506 port 184 123506 unique_id port 123507 username hashtadani3 123507 kill_reason Maximum number of concurrent logins reached 123507 mac 123507 bytes_out 0 123507 bytes_in 0 123507 station_ip 37.129.170.111 123507 port 185 123507 unique_id port 123510 username alipour 123510 mac 123510 bytes_out 0 123510 bytes_in 0 123510 station_ip 83.122.182.227 123510 port 183 123510 unique_id port 123510 remote_ip 10.8.0.102 123513 username hashtadani3 123513 kill_reason Maximum check online fails reached 123513 mac 123513 bytes_out 0 123513 bytes_in 0 123513 station_ip 37.129.170.111 123513 port 157 123513 unique_id port 123514 username zare 123514 mac 123514 bytes_out 0 123514 bytes_in 0 123514 station_ip 94.183.214.14 123514 port 169 123514 unique_id port 123515 username zare 123515 mac 123515 bytes_out 0 123515 bytes_in 0 123496 kill_reason Another user logged on this global unique id 123496 mac 123496 bytes_out 0 123496 bytes_in 0 123496 station_ip 5.120.182.240 123496 port 122 123496 unique_id port 123496 remote_ip 10.8.0.58 123500 username mehdizare 123500 mac 123500 bytes_out 0 123500 bytes_in 0 123500 station_ip 5.120.59.106 123500 port 157 123500 unique_id port 123500 remote_ip 10.8.0.90 123504 username mehdizare 123504 mac 123504 bytes_out 11015 123504 bytes_in 14893 123504 station_ip 5.120.59.106 123504 port 94 123504 unique_id port 123504 remote_ip 10.8.1.42 123508 username hashtadani3 123508 kill_reason Maximum number of concurrent logins reached 123508 mac 123508 bytes_out 0 123508 bytes_in 0 123508 station_ip 37.129.170.111 123508 port 185 123508 unique_id port 123512 username hashtadani3 123512 kill_reason Maximum check online fails reached 123512 mac 123512 bytes_out 0 123512 bytes_in 0 123512 station_ip 37.129.170.111 123512 port 176 123512 unique_id port 123517 username zare 123517 mac 123517 bytes_out 0 123517 bytes_in 0 123517 station_ip 94.183.214.14 123517 port 169 123517 unique_id port 123517 remote_ip 10.8.0.18 123522 username mehdizare 123522 mac 123522 bytes_out 0 123522 bytes_in 0 123522 station_ip 5.120.59.106 123522 port 184 123522 unique_id port 123522 remote_ip 10.8.0.90 123527 username alipour 123527 mac 123527 bytes_out 0 123527 bytes_in 0 123527 station_ip 83.122.182.227 123527 port 186 123527 unique_id port 123527 remote_ip 10.8.0.102 123533 username zare 123533 mac 123533 bytes_out 0 123533 bytes_in 0 123533 station_ip 94.183.214.14 123533 port 184 123533 unique_id port 123533 remote_ip 10.8.0.18 123535 username barzegar 123535 mac 123535 bytes_out 0 123535 bytes_in 0 123535 station_ip 5.119.47.63 123535 port 188 123535 unique_id port 123535 remote_ip 10.8.0.234 123536 username mohammadjavad 123536 mac 123536 bytes_out 817850 123536 bytes_in 18134523 123536 station_ip 37.129.195.85 123536 port 184 123536 unique_id port 123536 remote_ip 10.8.0.142 123537 username barzegar 123537 mac 123537 bytes_out 0 123537 bytes_in 0 123537 station_ip 5.119.47.63 123537 port 189 123537 unique_id port 123537 remote_ip 10.8.0.234 123538 username zare 123538 mac 123538 bytes_out 242551 123538 bytes_in 1621177 123538 station_ip 94.183.214.14 123538 port 186 123538 unique_id port 123538 remote_ip 10.8.0.18 123539 username mehdizare 123539 mac 123539 bytes_out 0 123539 bytes_in 0 123539 station_ip 5.120.59.106 123539 port 183 123539 unique_id port 123539 remote_ip 10.8.0.90 123542 username zare 123542 mac 123542 bytes_out 0 123542 bytes_in 0 123542 station_ip 94.183.214.14 123542 port 183 123542 unique_id port 123542 remote_ip 10.8.0.18 123545 username zare 123545 mac 123545 bytes_out 0 123545 bytes_in 0 123545 station_ip 94.183.214.14 123545 port 184 123545 unique_id port 123545 remote_ip 10.8.0.18 123550 username malekpoir 123550 kill_reason Another user logged on this global unique id 123550 mac 123550 bytes_out 0 123550 bytes_in 0 123550 station_ip 5.120.182.240 123550 port 122 123550 unique_id port 123552 username barzegar 123552 mac 123552 bytes_out 0 123552 bytes_in 0 123552 station_ip 5.119.47.63 123552 port 94 123552 unique_id port 123552 remote_ip 10.8.1.174 123553 username zare 123553 kill_reason Maximum check online fails reached 123553 mac 123553 bytes_out 0 123553 bytes_in 0 123553 station_ip 94.183.214.14 123553 port 183 123553 unique_id port 123555 username hamid.e 123511 mac 123511 bytes_out 0 123511 bytes_in 0 123511 station_ip 5.119.47.63 123511 port 94 123511 unique_id port 123511 remote_ip 10.8.1.174 123519 username zare 123519 mac 123519 bytes_out 0 123519 bytes_in 0 123519 station_ip 94.183.214.14 123519 port 169 123519 unique_id port 123519 remote_ip 10.8.0.18 123523 username alipour 123523 mac 123523 bytes_out 233319 123523 bytes_in 1698482 123523 station_ip 83.122.182.227 123523 port 94 123523 unique_id port 123523 remote_ip 10.8.1.50 123530 username zare 123530 mac 123530 bytes_out 0 123530 bytes_in 0 123530 station_ip 94.183.214.14 123530 port 183 123530 unique_id port 123530 remote_ip 10.8.0.18 123531 username zare 123531 mac 123531 bytes_out 0 123531 bytes_in 0 123531 station_ip 94.183.214.14 123531 port 184 123531 unique_id port 123531 remote_ip 10.8.0.18 123541 username barzegar 123541 mac 123541 bytes_out 0 123541 bytes_in 0 123541 station_ip 5.119.47.63 123541 port 94 123541 unique_id port 123541 remote_ip 10.8.1.174 123543 username zare 123543 mac 123543 bytes_out 0 123543 bytes_in 0 123543 station_ip 94.183.214.14 123543 port 183 123543 unique_id port 123543 remote_ip 10.8.0.18 123544 username zare 123544 mac 123544 bytes_out 0 123544 bytes_in 0 123544 station_ip 94.183.214.14 123544 port 184 123544 unique_id port 123544 remote_ip 10.8.0.18 123546 username alipour 123546 mac 123546 bytes_out 0 123546 bytes_in 0 123546 station_ip 83.122.182.227 123546 port 188 123546 unique_id port 123546 remote_ip 10.8.0.102 123548 username rezaei 123548 kill_reason Another user logged on this global unique id 123548 mac 123548 bytes_out 0 123548 bytes_in 0 123548 station_ip 5.120.2.153 123548 port 169 123548 unique_id port 123548 remote_ip 10.8.0.206 123549 username zare 123549 mac 123549 bytes_out 0 123549 bytes_in 0 123549 station_ip 94.183.214.14 123549 port 183 123549 unique_id port 123549 remote_ip 10.8.0.18 123564 username barzegar 123564 mac 123564 bytes_out 0 123564 bytes_in 0 123564 station_ip 5.119.47.63 123564 port 94 123564 unique_id port 123564 remote_ip 10.8.1.174 123565 username alipour 123565 mac 123565 bytes_out 0 123565 bytes_in 0 123565 station_ip 83.122.182.227 123565 port 184 123565 unique_id port 123565 remote_ip 10.8.0.102 123566 username zare 123566 kill_reason Maximum check online fails reached 123566 mac 123566 bytes_out 0 123566 bytes_in 0 123566 station_ip 94.183.214.14 123566 port 94 123566 unique_id port 123567 username kordestani 123567 mac 123567 bytes_out 0 123567 bytes_in 0 123567 station_ip 151.235.97.193 123567 port 182 123567 unique_id port 123567 remote_ip 10.8.0.134 123570 username mehdizare 123570 mac 123570 bytes_out 0 123570 bytes_in 0 123570 station_ip 5.120.59.106 123570 port 188 123570 unique_id port 123570 remote_ip 10.8.0.90 123575 username zare 123575 mac 123575 bytes_out 0 123575 bytes_in 0 123575 station_ip 94.183.214.14 123575 port 99 123575 unique_id port 123575 remote_ip 10.8.1.58 123579 username zare 123579 mac 123579 bytes_out 21023 123579 bytes_in 141869 123579 station_ip 94.183.214.14 123579 port 182 123579 unique_id port 123579 remote_ip 10.8.0.18 123589 username zare 123589 mac 123589 bytes_out 1636 123589 bytes_in 5036 123589 station_ip 94.183.214.14 123589 port 182 123589 unique_id port 123589 remote_ip 10.8.0.18 123600 username zare 123600 mac 123600 bytes_out 0 123600 bytes_in 0 123515 station_ip 94.183.214.14 123515 port 169 123515 unique_id port 123515 remote_ip 10.8.0.18 123516 username zare 123516 mac 123516 bytes_out 0 123516 bytes_in 0 123516 station_ip 94.183.214.14 123516 port 169 123516 unique_id port 123516 remote_ip 10.8.0.18 123518 username zare 123518 mac 123518 bytes_out 0 123518 bytes_in 0 123518 station_ip 94.183.214.14 123518 port 169 123518 unique_id port 123518 remote_ip 10.8.0.18 123520 username barzegar 123520 mac 123520 bytes_out 0 123520 bytes_in 0 123520 station_ip 5.119.47.63 123520 port 99 123520 unique_id port 123520 remote_ip 10.8.1.174 123521 username zare 123521 mac 123521 bytes_out 0 123521 bytes_in 0 123521 station_ip 94.183.214.14 123521 port 183 123521 unique_id port 123521 remote_ip 10.8.0.18 123524 username zare 123524 mac 123524 bytes_out 0 123524 bytes_in 0 123524 station_ip 94.183.214.14 123524 port 184 123524 unique_id port 123524 remote_ip 10.8.0.18 123525 username mohsenaskari 123525 mac 123525 bytes_out 0 123525 bytes_in 0 123525 station_ip 46.225.232.78 123525 port 169 123525 unique_id port 123525 remote_ip 10.8.0.246 123526 username zare 123526 mac 123526 bytes_out 0 123526 bytes_in 0 123526 station_ip 94.183.214.14 123526 port 169 123526 unique_id port 123526 remote_ip 10.8.0.18 123528 username zare 123528 mac 123528 bytes_out 0 123528 bytes_in 0 123528 station_ip 94.183.214.14 123528 port 169 123528 unique_id port 123528 remote_ip 10.8.0.18 123529 username mehdizare 123529 mac 123529 bytes_out 12104 123529 bytes_in 15911 123529 station_ip 5.120.59.106 123529 port 183 123529 unique_id port 123529 remote_ip 10.8.0.90 123532 username barzegar 123532 mac 123532 bytes_out 0 123532 bytes_in 0 123532 station_ip 5.119.47.63 123532 port 186 123532 unique_id port 123532 remote_ip 10.8.0.234 123534 username alipour 123534 mac 123534 bytes_out 61900 123534 bytes_in 113925 123534 station_ip 83.122.182.227 123534 port 94 123534 unique_id port 123534 remote_ip 10.8.1.50 123540 username barzegar 123540 mac 123540 bytes_out 0 123540 bytes_in 0 123540 station_ip 5.119.47.63 123540 port 94 123540 unique_id port 123540 remote_ip 10.8.1.174 123547 username mehdizare 123547 mac 123547 bytes_out 0 123547 bytes_in 0 123547 station_ip 5.120.59.106 123547 port 183 123547 unique_id port 123547 remote_ip 10.8.0.90 123551 username zare 123551 mac 123551 bytes_out 0 123551 bytes_in 0 123551 station_ip 94.183.214.14 123551 port 183 123551 unique_id port 123551 remote_ip 10.8.0.18 123554 username zare 123554 mac 123554 bytes_out 0 123554 bytes_in 0 123554 station_ip 94.183.214.14 123554 port 186 123554 unique_id port 123554 remote_ip 10.8.0.18 123557 username barzegar 123557 mac 123557 bytes_out 0 123557 bytes_in 0 123557 station_ip 5.119.47.63 123557 port 94 123557 unique_id port 123557 remote_ip 10.8.1.174 123562 username rezaei 123562 mac 123562 bytes_out 0 123562 bytes_in 0 123562 station_ip 5.120.2.153 123562 port 169 123562 unique_id port 123568 username forozande 123568 mac 123568 bytes_out 526899 123568 bytes_in 5671523 123568 station_ip 83.123.138.229 123568 port 169 123568 unique_id port 123568 remote_ip 10.8.0.74 123569 username barzegar 123569 mac 123569 bytes_out 0 123569 bytes_in 0 123569 station_ip 5.119.47.63 123569 port 186 123569 unique_id port 123569 remote_ip 10.8.0.234 123574 username zare 123574 mac 123555 unique_id port 123555 terminate_cause User-Request 123555 bytes_out 18227406 123555 bytes_in 214203686 123555 station_ip 37.27.10.207 123555 port 15729859 123555 nas_port_type Virtual 123555 remote_ip 5.5.5.101 123556 username mehdizare 123556 mac 123556 bytes_out 18943 123556 bytes_in 40923 123556 station_ip 5.120.59.106 123556 port 99 123556 unique_id port 123556 remote_ip 10.8.1.42 123558 username barzegar 123558 mac 123558 bytes_out 0 123558 bytes_in 0 123558 station_ip 5.119.47.63 123558 port 94 123558 unique_id port 123558 remote_ip 10.8.1.174 123559 username rezaei 123559 kill_reason Another user logged on this global unique id 123559 mac 123559 bytes_out 0 123559 bytes_in 0 123559 station_ip 5.120.2.153 123559 port 169 123559 unique_id port 123560 username afarin1 123560 mac 123560 bytes_out 447897 123560 bytes_in 238145 123560 station_ip 37.129.169.71 123560 port 187 123560 unique_id port 123560 remote_ip 10.8.0.118 123561 username forozande 123561 mac 123561 bytes_out 541271 123561 bytes_in 323393 123561 station_ip 37.129.115.167 123561 port 190 123561 unique_id port 123561 remote_ip 10.8.0.74 123563 username zare 123563 mac 123563 bytes_out 0 123563 bytes_in 0 123563 station_ip 94.183.214.14 123563 port 186 123563 unique_id port 123563 remote_ip 10.8.0.18 123571 username zare 123571 mac 123571 bytes_out 0 123571 bytes_in 0 123571 station_ip 94.183.214.14 123571 port 99 123571 unique_id port 123571 remote_ip 10.8.1.58 123572 username zare 123572 mac 123572 bytes_out 0 123572 bytes_in 0 123572 station_ip 94.183.214.14 123572 port 99 123572 unique_id port 123572 remote_ip 10.8.1.58 123573 username mehdizare 123573 mac 123573 bytes_out 0 123573 bytes_in 0 123573 station_ip 5.120.59.106 123573 port 182 123573 unique_id port 123573 remote_ip 10.8.0.90 123576 username zare 123576 mac 123576 bytes_out 0 123576 bytes_in 0 123576 station_ip 94.183.214.14 123576 port 186 123576 unique_id port 123576 remote_ip 10.8.0.18 123577 username mehdizare 123577 mac 123577 bytes_out 15481 123577 bytes_in 11201 123577 station_ip 5.120.59.106 123577 port 182 123577 unique_id port 123577 remote_ip 10.8.0.90 123580 username zare 123580 mac 123580 bytes_out 0 123580 bytes_in 0 123580 station_ip 94.183.214.14 123580 port 182 123580 unique_id port 123580 remote_ip 10.8.0.18 123581 username arash 123581 mac 123581 bytes_out 1410573 123581 bytes_in 26998515 123581 station_ip 37.27.31.235 123581 port 192 123581 unique_id port 123581 remote_ip 10.8.0.114 123582 username mehdizare 123582 mac 123582 bytes_out 0 123582 bytes_in 0 123582 station_ip 5.120.59.106 123582 port 99 123582 unique_id port 123582 remote_ip 10.8.1.42 123584 username zare 123584 mac 123584 bytes_out 188976 123584 bytes_in 698029 123584 station_ip 94.183.214.14 123584 port 182 123584 unique_id port 123584 remote_ip 10.8.0.18 123585 username barzegar 123585 mac 123585 bytes_out 0 123585 bytes_in 0 123585 station_ip 5.119.47.63 123585 port 99 123585 unique_id port 123585 remote_ip 10.8.1.174 123587 username zare 123587 mac 123587 bytes_out 0 123587 bytes_in 0 123587 station_ip 94.183.214.14 123587 port 99 123587 unique_id port 123587 remote_ip 10.8.1.58 123590 username hashtadani3 123590 mac 123590 bytes_out 607671 123590 bytes_in 10708864 123590 station_ip 37.129.170.111 123590 port 169 123590 unique_id port 123590 remote_ip 10.8.0.154 123592 username zare 123592 mac 123592 bytes_out 42268 123574 bytes_out 0 123574 bytes_in 0 123574 station_ip 94.183.214.14 123574 port 99 123574 unique_id port 123574 remote_ip 10.8.1.58 123578 username tahmasebi 123578 kill_reason Another user logged on this global unique id 123578 mac 123578 bytes_out 0 123578 bytes_in 0 123578 station_ip 5.120.156.5 123578 port 92 123578 unique_id port 123583 username barzegar 123583 mac 123583 bytes_out 0 123583 bytes_in 0 123583 station_ip 5.119.47.63 123583 port 169 123583 unique_id port 123583 remote_ip 10.8.0.234 123586 username mehdizare 123586 mac 123586 bytes_out 0 123586 bytes_in 0 123586 station_ip 5.120.59.106 123586 port 169 123586 unique_id port 123586 remote_ip 10.8.0.90 123588 username forozande 123588 mac 123588 bytes_out 935793 123588 bytes_in 17912452 123588 station_ip 37.129.249.21 123588 port 191 123588 unique_id port 123588 remote_ip 10.8.0.74 123591 username barzegar 123591 mac 123591 bytes_out 0 123591 bytes_in 0 123591 station_ip 5.119.47.63 123591 port 102 123591 unique_id port 123591 remote_ip 10.8.1.174 123593 username hashtadani3 123593 mac 123593 bytes_out 0 123593 bytes_in 0 123593 station_ip 37.129.170.111 123593 port 169 123593 unique_id port 123593 remote_ip 10.8.0.154 123596 username barzegar 123596 mac 123596 bytes_out 0 123596 bytes_in 0 123596 station_ip 5.119.47.63 123596 port 169 123596 unique_id port 123596 remote_ip 10.8.0.234 123597 username barzegar 123597 mac 123597 bytes_out 0 123597 bytes_in 0 123597 station_ip 5.119.47.63 123597 port 169 123597 unique_id port 123597 remote_ip 10.8.0.234 123598 username amir 123598 mac 123598 bytes_out 4589721 123598 bytes_in 3151657 123598 station_ip 46.225.210.218 123598 port 101 123598 unique_id port 123598 remote_ip 10.8.1.22 123603 username aminvpn 123603 unique_id port 123603 terminate_cause User-Request 123603 bytes_out 1386763 123603 bytes_in 44849121 123603 station_ip 5.160.115.99 123603 port 15729861 123603 nas_port_type Virtual 123603 remote_ip 5.5.5.254 123612 username hashtadani3 123612 mac 123612 bytes_out 0 123612 bytes_in 0 123612 station_ip 37.129.170.111 123612 port 189 123612 unique_id port 123612 remote_ip 10.8.0.154 123614 username aminvpn 123614 mac 123614 bytes_out 0 123614 bytes_in 0 123614 station_ip 31.56.153.200 123614 port 185 123614 unique_id port 123614 remote_ip 10.8.0.14 123616 username hashtadani3 123616 mac 123616 bytes_out 0 123616 bytes_in 0 123616 station_ip 37.129.170.111 123616 port 189 123616 unique_id port 123616 remote_ip 10.8.0.154 123617 username hashtadani3 123617 mac 123617 bytes_out 39380 123617 bytes_in 223004 123617 station_ip 37.129.170.111 123617 port 99 123617 unique_id port 123617 remote_ip 10.8.1.94 123618 username mosi 123618 kill_reason Another user logged on this global unique id 123618 mac 123618 bytes_out 0 123618 bytes_in 0 123618 station_ip 151.235.122.242 123618 port 188 123618 unique_id port 123620 username tahmasebi 123620 mac 123620 bytes_out 0 123620 bytes_in 0 123620 station_ip 5.120.156.5 123620 port 92 123620 unique_id port 123626 username sedighe 123626 mac 123626 bytes_out 0 123626 bytes_in 0 123626 station_ip 37.129.132.41 123626 port 185 123626 unique_id port 123626 remote_ip 10.8.0.146 123628 username mohammadjavad 123628 mac 123628 bytes_out 1128132 123628 bytes_in 38536789 123628 station_ip 83.123.89.171 123628 port 190 123628 unique_id port 123628 remote_ip 10.8.0.142 123633 username tahmasebi 123633 mac 123633 bytes_out 0 123592 bytes_in 184694 123592 station_ip 94.183.214.14 123592 port 99 123592 unique_id port 123592 remote_ip 10.8.1.58 123594 username mosi 123594 kill_reason Another user logged on this global unique id 123594 mac 123594 bytes_out 0 123594 bytes_in 0 123594 station_ip 151.235.122.242 123594 port 188 123594 unique_id port 123594 remote_ip 10.8.0.138 123595 username hashtadani3 123595 mac 123595 bytes_out 0 123595 bytes_in 0 123595 station_ip 37.129.170.111 123595 port 191 123595 unique_id port 123595 remote_ip 10.8.0.154 123599 username hashtadani3 123599 mac 123599 bytes_out 0 123599 bytes_in 0 123599 station_ip 37.129.170.111 123599 port 169 123599 unique_id port 123599 remote_ip 10.8.0.154 123601 username alipour 123601 mac 123601 bytes_out 101255 123601 bytes_in 243311 123601 station_ip 83.122.182.227 123601 port 186 123601 unique_id port 123601 remote_ip 10.8.0.102 123604 username forozande 123604 mac 123604 bytes_out 0 123604 bytes_in 0 123604 station_ip 83.123.236.142 123604 port 191 123604 unique_id port 123604 remote_ip 10.8.0.74 123609 username hashtadani3 123609 mac 123609 bytes_out 849057 123609 bytes_in 9285560 123609 station_ip 37.129.170.111 123609 port 169 123609 unique_id port 123609 remote_ip 10.8.0.154 123610 username aminvpn 123610 unique_id port 123610 terminate_cause User-Request 123610 bytes_out 780529 123610 bytes_in 19503377 123610 station_ip 5.160.115.99 123610 port 15729862 123610 nas_port_type Virtual 123610 remote_ip 5.5.5.255 123619 username hashtadani3 123619 kill_reason Maximum check online fails reached 123619 mac 123619 bytes_out 0 123619 bytes_in 0 123619 station_ip 37.129.170.111 123619 port 189 123619 unique_id port 123622 username barzegar 123622 mac 123622 bytes_out 0 123622 bytes_in 0 123622 station_ip 5.119.47.63 123622 port 100 123622 unique_id port 123622 remote_ip 10.8.1.174 123623 username hashtadani3 123623 kill_reason Maximum number of concurrent logins reached 123623 mac 123623 bytes_out 0 123623 bytes_in 0 123623 station_ip 37.129.170.111 123623 port 194 123623 unique_id port 123625 username hashtadani3 123625 kill_reason Maximum check online fails reached 123625 mac 123625 bytes_out 0 123625 bytes_in 0 123625 station_ip 37.129.170.111 123625 port 191 123625 unique_id port 123627 username hashtadani3 123627 mac 123627 bytes_out 0 123627 bytes_in 0 123627 station_ip 37.129.170.111 123627 port 99 123627 unique_id port 123627 remote_ip 10.8.1.94 123629 username hashtadani3 123629 mac 123629 bytes_out 0 123629 bytes_in 0 123629 station_ip 37.129.170.111 123629 port 99 123629 unique_id port 123629 remote_ip 10.8.1.94 123631 username hashtadani3 123631 kill_reason Maximum check online fails reached 123631 mac 123631 bytes_out 0 123631 bytes_in 0 123631 station_ip 37.129.170.111 123631 port 185 123631 unique_id port 123634 username kordestani 123634 mac 123634 bytes_out 0 123634 bytes_in 0 123634 station_ip 151.235.102.222 123634 port 187 123634 unique_id port 123634 remote_ip 10.8.0.134 123640 username barzegar 123640 mac 123640 bytes_out 0 123640 bytes_in 0 123640 station_ip 5.119.47.63 123640 port 92 123640 unique_id port 123640 remote_ip 10.8.1.174 123641 username zare 123641 mac 123641 bytes_out 0 123641 bytes_in 0 123641 station_ip 94.183.214.14 123641 port 170 123641 unique_id port 123641 remote_ip 10.8.0.18 123644 username hamidsalari1 123644 mac 123644 bytes_out 848025 123644 bytes_in 1573610 123644 station_ip 83.122.83.238 123644 port 169 123644 unique_id port 123644 remote_ip 10.8.0.226 123600 station_ip 94.183.214.14 123600 port 99 123600 unique_id port 123600 remote_ip 10.8.1.58 123602 username mohsenaskari 123602 mac 123602 bytes_out 1321792 123602 bytes_in 9474184 123602 station_ip 46.225.232.78 123602 port 189 123602 unique_id port 123602 remote_ip 10.8.0.246 123605 username hamidsalari1 123605 mac 123605 bytes_out 171320 123605 bytes_in 325033 123605 station_ip 83.122.83.238 123605 port 100 123605 unique_id port 123605 remote_ip 10.8.1.170 123606 username mosi 123606 kill_reason Another user logged on this global unique id 123606 mac 123606 bytes_out 0 123606 bytes_in 0 123606 station_ip 151.235.122.242 123606 port 188 123606 unique_id port 123607 username barzegar 123607 mac 123607 bytes_out 0 123607 bytes_in 0 123607 station_ip 5.119.47.63 123607 port 101 123607 unique_id port 123607 remote_ip 10.8.1.174 123608 username hamidsalari1 123608 mac 123608 bytes_out 20248 123608 bytes_in 23233 123608 station_ip 83.122.83.238 123608 port 99 123608 unique_id port 123608 remote_ip 10.8.1.170 123611 username hashtadani3 123611 mac 123611 bytes_out 0 123611 bytes_in 0 123611 station_ip 37.129.170.111 123611 port 189 123611 unique_id port 123611 remote_ip 10.8.0.154 123613 username barzegar 123613 mac 123613 bytes_out 0 123613 bytes_in 0 123613 station_ip 5.119.47.63 123613 port 99 123613 unique_id port 123613 remote_ip 10.8.1.174 123615 username sedighe 123615 mac 123615 bytes_out 288420 123615 bytes_in 355260 123615 station_ip 83.122.126.18 123615 port 192 123615 unique_id port 123615 remote_ip 10.8.0.146 123621 username hashtadani3 123621 mac 123621 bytes_out 0 123621 bytes_in 0 123621 station_ip 37.129.170.111 123621 port 92 123621 unique_id port 123621 remote_ip 10.8.1.94 123624 username hashtadani3 123624 kill_reason Maximum check online fails reached 123624 mac 123624 bytes_out 0 123624 bytes_in 0 123624 station_ip 37.129.170.111 123624 port 193 123624 unique_id port 123630 username hashtadani3 123630 kill_reason Maximum number of concurrent logins reached 123630 mac 123630 bytes_out 0 123630 bytes_in 0 123630 station_ip 37.129.170.111 123630 port 99 123630 unique_id port 123632 username hashtadani3 123632 kill_reason Maximum check online fails reached 123632 mac 123632 bytes_out 0 123632 bytes_in 0 123632 station_ip 37.129.170.111 123632 port 195 123632 unique_id port 123637 username zare 123637 mac 123637 bytes_out 0 123637 bytes_in 0 123637 station_ip 94.183.214.14 123637 port 170 123637 unique_id port 123637 remote_ip 10.8.0.18 123639 username zare 123639 kill_reason Maximum check online fails reached 123639 mac 123639 bytes_out 0 123639 bytes_in 0 123639 station_ip 94.183.214.14 123639 port 100 123639 unique_id port 123642 username zare 123642 mac 123642 bytes_out 0 123642 bytes_in 0 123642 station_ip 94.183.214.14 123642 port 170 123642 unique_id port 123642 remote_ip 10.8.0.18 123643 username zare 123643 mac 123643 bytes_out 0 123643 bytes_in 0 123643 station_ip 94.183.214.14 123643 port 170 123643 unique_id port 123643 remote_ip 10.8.0.18 123647 username zare 123647 mac 123647 bytes_out 0 123647 bytes_in 0 123647 station_ip 94.183.214.14 123647 port 169 123647 unique_id port 123647 remote_ip 10.8.0.18 123650 username zare 123650 mac 123650 bytes_out 0 123650 bytes_in 0 123650 station_ip 94.183.214.14 123650 port 169 123650 unique_id port 123650 remote_ip 10.8.0.18 123651 username hosseine 123651 mac 123651 bytes_out 0 123651 bytes_in 0 123633 bytes_in 0 123633 station_ip 5.120.156.5 123633 port 192 123633 unique_id port 123633 remote_ip 10.8.0.42 123635 username mehdizare 123635 mac 123635 bytes_out 0 123635 bytes_in 0 123635 station_ip 5.120.59.106 123635 port 182 123635 unique_id port 123635 remote_ip 10.8.0.90 123636 username jamali 123636 mac 123636 bytes_out 0 123636 bytes_in 0 123636 station_ip 5.120.145.163 123636 port 170 123636 unique_id port 123636 remote_ip 10.8.0.150 123638 username zare 123638 mac 123638 bytes_out 0 123638 bytes_in 0 123638 station_ip 94.183.214.14 123638 port 170 123638 unique_id port 123638 remote_ip 10.8.0.18 123646 username sedighe 123646 mac 123646 bytes_out 0 123646 bytes_in 0 123646 station_ip 37.129.132.41 123646 port 194 123646 unique_id port 123646 remote_ip 10.8.0.146 123652 username zare 123652 mac 123652 bytes_out 20539 123652 bytes_in 81145 123652 station_ip 94.183.214.14 123652 port 169 123652 unique_id port 123652 remote_ip 10.8.0.18 123653 username zare 123653 mac 123653 bytes_out 0 123653 bytes_in 0 123653 station_ip 94.183.214.14 123653 port 169 123653 unique_id port 123653 remote_ip 10.8.0.18 123657 username alipour 123657 mac 123657 bytes_out 22171 123657 bytes_in 24418 123657 station_ip 83.122.182.227 123657 port 180 123657 unique_id port 123657 remote_ip 10.8.0.102 123661 username forozande 123661 mac 123661 bytes_out 395740 123661 bytes_in 4494031 123661 station_ip 83.122.12.122 123661 port 186 123661 unique_id port 123661 remote_ip 10.8.0.74 123663 username barzegar 123663 mac 123663 bytes_out 0 123663 bytes_in 0 123663 station_ip 5.119.47.63 123663 port 92 123663 unique_id port 123663 remote_ip 10.8.1.174 123665 username zare 123665 mac 123665 bytes_out 24610 123665 bytes_in 97248 123665 station_ip 94.183.214.14 123665 port 186 123665 unique_id port 123665 remote_ip 10.8.0.18 123666 username zare 123666 mac 123666 bytes_out 0 123666 bytes_in 0 123666 station_ip 94.183.214.14 123666 port 186 123666 unique_id port 123666 remote_ip 10.8.0.18 123670 username rostami 123670 kill_reason Another user logged on this global unique id 123670 mac 123670 bytes_out 0 123670 bytes_in 0 123670 station_ip 5.120.119.183 123670 port 184 123670 unique_id port 123670 remote_ip 10.8.0.194 123676 username barzegar 123676 mac 123676 bytes_out 2589 123676 bytes_in 4951 123676 station_ip 5.119.47.63 123676 port 192 123676 unique_id port 123676 remote_ip 10.8.0.234 123681 username zare 123681 mac 123681 bytes_out 7920 123681 bytes_in 28258 123681 station_ip 94.183.214.14 123681 port 194 123681 unique_id port 123681 remote_ip 10.8.0.18 123689 username rostami 123689 kill_reason Another user logged on this global unique id 123689 mac 123689 bytes_out 0 123689 bytes_in 0 123689 station_ip 5.120.119.183 123689 port 184 123689 unique_id port 123693 username zare 123693 mac 123693 bytes_out 0 123693 bytes_in 0 123693 station_ip 94.183.214.14 123693 port 169 123693 unique_id port 123693 remote_ip 10.8.0.18 123701 username sedighe 123701 mac 123701 bytes_out 0 123701 bytes_in 0 123701 station_ip 83.122.51.212 123701 port 92 123701 unique_id port 123701 remote_ip 10.8.1.78 123703 username barzegar 123703 kill_reason Another user logged on this global unique id 123703 mac 123703 bytes_out 0 123703 bytes_in 0 123703 station_ip 5.119.47.63 123703 port 169 123703 unique_id port 123703 remote_ip 10.8.0.234 123704 username rezaei 123704 kill_reason Another user logged on this global unique id 123645 username forozande 123645 mac 123645 bytes_out 558296 123645 bytes_in 2303945 123645 station_ip 83.123.76.21 123645 port 190 123645 unique_id port 123645 remote_ip 10.8.0.74 123648 username mosi 123648 kill_reason Another user logged on this global unique id 123648 mac 123648 bytes_out 0 123648 bytes_in 0 123648 station_ip 151.235.122.242 123648 port 188 123648 unique_id port 123649 username barzegar 123649 mac 123649 bytes_out 5493 123649 bytes_in 7196 123649 station_ip 5.119.47.63 123649 port 192 123649 unique_id port 123649 remote_ip 10.8.0.234 123654 username alipour 123654 mac 123654 bytes_out 2057629 123654 bytes_in 29426236 123654 station_ip 83.122.182.227 123654 port 186 123654 unique_id port 123654 remote_ip 10.8.0.102 123655 username alipour 123655 mac 123655 bytes_out 23760 123655 bytes_in 24691 123655 station_ip 83.122.182.227 123655 port 170 123655 unique_id port 123655 remote_ip 10.8.0.102 123656 username mahdiyehalizadeh 123656 mac 123656 bytes_out 8366 123656 bytes_in 11150 123656 station_ip 83.122.31.183 123656 port 170 123656 unique_id port 123656 remote_ip 10.8.0.82 123659 username houshang 123659 mac 123659 bytes_out 60217 123659 bytes_in 107465 123659 station_ip 5.119.220.6 123659 port 170 123659 unique_id port 123659 remote_ip 10.8.0.22 123660 username zare 123660 mac 123660 bytes_out 0 123660 bytes_in 0 123660 station_ip 94.183.214.14 123660 port 169 123660 unique_id port 123660 remote_ip 10.8.0.18 123662 username zare 123662 mac 123662 bytes_out 0 123662 bytes_in 0 123662 station_ip 94.183.214.14 123662 port 169 123662 unique_id port 123662 remote_ip 10.8.0.18 123668 username zare 123668 mac 123668 bytes_out 0 123668 bytes_in 0 123668 station_ip 94.183.214.14 123668 port 186 123668 unique_id port 123668 remote_ip 10.8.0.18 123669 username jamali 123669 mac 123669 bytes_out 15585 123669 bytes_in 21823 123669 station_ip 5.120.145.163 123669 port 190 123669 unique_id port 123669 remote_ip 10.8.0.150 123672 username zare 123672 mac 123672 bytes_out 0 123672 bytes_in 0 123672 station_ip 94.183.214.14 123672 port 192 123672 unique_id port 123672 remote_ip 10.8.0.18 123675 username mohammadjavad 123675 mac 123675 bytes_out 58695 123675 bytes_in 159529 123675 station_ip 37.129.170.42 123675 port 194 123675 unique_id port 123675 remote_ip 10.8.0.142 123677 username zare 123677 mac 123677 bytes_out 0 123677 bytes_in 0 123677 station_ip 94.183.214.14 123677 port 192 123677 unique_id port 123677 remote_ip 10.8.0.18 123680 username barzegar 123680 mac 123680 bytes_out 2864 123680 bytes_in 5026 123680 station_ip 5.119.47.63 123680 port 190 123680 unique_id port 123680 remote_ip 10.8.0.234 123683 username zare 123683 mac 123683 bytes_out 0 123683 bytes_in 0 123683 station_ip 94.183.214.14 123683 port 190 123683 unique_id port 123683 remote_ip 10.8.0.18 123685 username hosseine 123685 kill_reason Another user logged on this global unique id 123685 mac 123685 bytes_out 0 123685 bytes_in 0 123685 station_ip 83.123.55.63 123685 port 170 123685 unique_id port 123688 username alipour 123688 mac 123688 bytes_out 85341 123688 bytes_in 102902 123688 station_ip 83.122.175.49 123688 port 180 123688 unique_id port 123688 remote_ip 10.8.0.102 123691 username barzegar 123691 mac 123691 bytes_out 0 123691 bytes_in 0 123691 station_ip 5.119.47.63 123691 port 92 123691 unique_id port 123691 remote_ip 10.8.1.174 123692 username alipour 123692 mac 123651 station_ip 83.123.79.219 123651 port 180 123651 unique_id port 123658 username zare 123658 mac 123658 bytes_out 69543 123658 bytes_in 255279 123658 station_ip 94.183.214.14 123658 port 169 123658 unique_id port 123658 remote_ip 10.8.0.18 123664 username jamali 123664 mac 123664 bytes_out 98242 123664 bytes_in 246722 123664 station_ip 5.120.145.163 123664 port 187 123664 unique_id port 123664 remote_ip 10.8.0.150 123667 username mehdizare 123667 mac 123667 bytes_out 0 123667 bytes_in 0 123667 station_ip 5.120.59.106 123667 port 99 123667 unique_id port 123667 remote_ip 10.8.1.42 123671 username barzegar 123671 mac 123671 bytes_out 19673 123671 bytes_in 22789 123671 station_ip 5.119.47.63 123671 port 92 123671 unique_id port 123671 remote_ip 10.8.1.174 123673 username rezaei 123673 kill_reason Another user logged on this global unique id 123673 mac 123673 bytes_out 0 123673 bytes_in 0 123673 station_ip 5.120.2.153 123673 port 187 123673 unique_id port 123673 remote_ip 10.8.0.206 123674 username zare 123674 mac 123674 bytes_out 0 123674 bytes_in 0 123674 station_ip 94.183.214.14 123674 port 197 123674 unique_id port 123674 remote_ip 10.8.0.18 123678 username hosseine 123678 kill_reason Another user logged on this global unique id 123678 mac 123678 bytes_out 0 123678 bytes_in 0 123678 station_ip 83.123.55.63 123678 port 170 123678 unique_id port 123678 remote_ip 10.8.0.238 123679 username jamali 123679 mac 123679 bytes_out 60570 123679 bytes_in 161575 123679 station_ip 5.120.145.163 123679 port 190 123679 unique_id port 123679 remote_ip 10.8.0.150 123682 username zare 123682 mac 123682 bytes_out 0 123682 bytes_in 0 123682 station_ip 94.183.214.14 123682 port 190 123682 unique_id port 123682 remote_ip 10.8.0.18 123684 username jamali 123684 mac 123684 bytes_out 29032 123684 bytes_in 48667 123684 station_ip 5.120.145.163 123684 port 197 123684 unique_id port 123684 remote_ip 10.8.0.150 123686 username sedighe 123686 mac 123686 bytes_out 264961 123686 bytes_in 783904 123686 station_ip 37.129.172.33 123686 port 169 123686 unique_id port 123686 remote_ip 10.8.0.146 123687 username zare 123687 mac 123687 bytes_out 0 123687 bytes_in 0 123687 station_ip 94.183.214.14 123687 port 169 123687 unique_id port 123687 remote_ip 10.8.0.18 123690 username zare 123690 mac 123690 bytes_out 0 123690 bytes_in 0 123690 station_ip 94.183.214.14 123690 port 169 123690 unique_id port 123690 remote_ip 10.8.0.18 123696 username forozande 123696 mac 123696 bytes_out 0 123696 bytes_in 0 123696 station_ip 83.123.184.64 123696 port 169 123696 unique_id port 123696 remote_ip 10.8.0.74 123698 username forozande 123698 mac 123698 bytes_out 91422 123698 bytes_in 391402 123698 station_ip 83.123.184.64 123698 port 194 123698 unique_id port 123698 remote_ip 10.8.0.74 123699 username zare 123699 mac 123699 bytes_out 22909 123699 bytes_in 43895 123699 station_ip 94.183.214.14 123699 port 192 123699 unique_id port 123699 remote_ip 10.8.0.18 123700 username mosi 123700 kill_reason Another user logged on this global unique id 123700 mac 123700 bytes_out 0 123700 bytes_in 0 123700 station_ip 151.235.122.242 123700 port 188 123700 unique_id port 123710 username zare 123710 mac 123710 bytes_out 0 123710 bytes_in 0 123710 station_ip 94.183.214.14 123710 port 92 123710 unique_id port 123710 remote_ip 10.8.1.58 123711 username barzegar 123711 kill_reason Another user logged on this global unique id 123711 mac 123711 bytes_out 0 123692 bytes_out 0 123692 bytes_in 0 123692 station_ip 83.122.175.49 123692 port 101 123692 unique_id port 123692 remote_ip 10.8.1.50 123694 username forozande 123694 mac 123694 bytes_out 223348 123694 bytes_in 739899 123694 station_ip 83.123.184.64 123694 port 192 123694 unique_id port 123694 remote_ip 10.8.0.74 123695 username mahdiyehalizadeh 123695 mac 123695 bytes_out 2314834 123695 bytes_in 2366508 123695 station_ip 83.122.37.36 123695 port 194 123695 unique_id port 123695 remote_ip 10.8.0.82 123697 username sedighe 123697 mac 123697 bytes_out 0 123697 bytes_in 0 123697 station_ip 83.122.51.212 123697 port 99 123697 unique_id port 123697 remote_ip 10.8.1.78 123702 username kordestani 123702 mac 123702 bytes_out 1943504 123702 bytes_in 17562012 123702 station_ip 151.235.102.222 123702 port 182 123702 unique_id port 123702 remote_ip 10.8.0.134 123705 username barzegar 123705 mac 123705 bytes_out 0 123705 bytes_in 0 123705 station_ip 5.119.47.63 123705 port 169 123705 unique_id port 123707 username zare 123707 mac 123707 bytes_out 46061 123707 bytes_in 148003 123707 station_ip 94.183.214.14 123707 port 99 123707 unique_id port 123707 remote_ip 10.8.1.58 123709 username zare 123709 mac 123709 bytes_out 0 123709 bytes_in 0 123709 station_ip 94.183.214.14 123709 port 92 123709 unique_id port 123709 remote_ip 10.8.1.58 123713 username zare 123713 kill_reason Maximum check online fails reached 123713 mac 123713 bytes_out 0 123713 bytes_in 0 123713 station_ip 94.183.214.14 123713 port 92 123713 unique_id port 123716 username kordestani 123716 mac 123716 bytes_out 14259 123716 bytes_in 18703 123716 station_ip 151.235.102.222 123716 port 182 123716 unique_id port 123716 remote_ip 10.8.0.134 123719 username rostami 123719 kill_reason Another user logged on this global unique id 123719 mac 123719 bytes_out 0 123719 bytes_in 0 123719 station_ip 5.120.119.183 123719 port 184 123719 unique_id port 123721 username sedighe 123721 mac 123721 bytes_out 0 123721 bytes_in 0 123721 station_ip 83.122.51.212 123721 port 101 123721 unique_id port 123721 remote_ip 10.8.1.78 123725 username hamid.e 123725 unique_id port 123725 terminate_cause User-Request 123725 bytes_out 631062 123725 bytes_in 3912300 123725 station_ip 37.27.10.207 123725 port 15729865 123725 nas_port_type Virtual 123725 remote_ip 5.5.5.254 123728 username zare 123728 mac 123728 bytes_out 0 123728 bytes_in 0 123728 station_ip 94.183.214.14 123728 port 169 123728 unique_id port 123728 remote_ip 10.8.0.18 123731 username sedighe 123731 mac 123731 bytes_out 6625 123731 bytes_in 8358 123731 station_ip 83.122.51.212 123731 port 182 123731 unique_id port 123731 remote_ip 10.8.0.146 123732 username zare 123732 mac 123732 bytes_out 14357 123732 bytes_in 22346 123732 station_ip 94.183.214.14 123732 port 169 123732 unique_id port 123732 remote_ip 10.8.0.18 123737 username zare 123737 mac 123737 bytes_out 0 123737 bytes_in 0 123737 station_ip 94.183.214.14 123737 port 169 123737 unique_id port 123737 remote_ip 10.8.0.18 123739 username barzegar 123739 kill_reason Another user logged on this global unique id 123739 mac 123739 bytes_out 0 123739 bytes_in 0 123739 station_ip 5.120.80.251 123739 port 186 123739 unique_id port 123739 remote_ip 10.8.0.234 123741 username zare 123741 mac 123741 bytes_out 19498 123741 bytes_in 60528 123741 station_ip 94.183.214.14 123741 port 169 123741 unique_id port 123741 remote_ip 10.8.0.18 123745 username jamali 123745 mac 123704 mac 123704 bytes_out 0 123704 bytes_in 0 123704 station_ip 5.120.2.153 123704 port 187 123704 unique_id port 123706 username forozande 123706 mac 123706 bytes_out 178749 123706 bytes_in 1345134 123706 station_ip 113.203.32.241 123706 port 192 123706 unique_id port 123706 remote_ip 10.8.0.74 123708 username alireza 123708 unique_id port 123708 terminate_cause User-Request 123708 bytes_out 1878730 123708 bytes_in 27655329 123708 station_ip 5.119.71.66 123708 port 15729864 123708 nas_port_type Virtual 123708 remote_ip 5.5.5.254 123712 username rezaei 123712 mac 123712 bytes_out 0 123712 bytes_in 0 123712 station_ip 5.120.2.153 123712 port 187 123712 unique_id port 123714 username zare 123714 mac 123714 bytes_out 0 123714 bytes_in 0 123714 station_ip 94.183.214.14 123714 port 187 123714 unique_id port 123714 remote_ip 10.8.0.18 123717 username zare 123717 mac 123717 bytes_out 0 123717 bytes_in 0 123717 station_ip 94.183.214.14 123717 port 180 123717 unique_id port 123717 remote_ip 10.8.0.18 123727 username mosi 123727 mac 123727 bytes_out 0 123727 bytes_in 0 123727 station_ip 151.235.122.242 123727 port 188 123727 unique_id port 123729 username zare 123729 mac 123729 bytes_out 1636 123729 bytes_in 5036 123729 station_ip 94.183.214.14 123729 port 169 123729 unique_id port 123729 remote_ip 10.8.0.18 123730 username mehdizare 123730 mac 123730 bytes_out 69078 123730 bytes_in 124019 123730 station_ip 5.120.59.106 123730 port 180 123730 unique_id port 123730 remote_ip 10.8.0.90 123733 username forozande 123733 mac 123733 bytes_out 77352 123733 bytes_in 1079469 123733 station_ip 37.129.83.97 123733 port 182 123733 unique_id port 123733 remote_ip 10.8.0.74 123734 username zare 123734 mac 123734 bytes_out 0 123734 bytes_in 0 123734 station_ip 94.183.214.14 123734 port 169 123734 unique_id port 123734 remote_ip 10.8.0.18 123735 username zare 123735 mac 123735 bytes_out 0 123735 bytes_in 0 123735 station_ip 94.183.214.14 123735 port 169 123735 unique_id port 123735 remote_ip 10.8.0.18 123736 username zare 123736 mac 123736 bytes_out 0 123736 bytes_in 0 123736 station_ip 94.183.214.14 123736 port 169 123736 unique_id port 123736 remote_ip 10.8.0.18 123738 username jamali 123738 mac 123738 bytes_out 201086 123738 bytes_in 383694 123738 station_ip 5.120.145.163 123738 port 190 123738 unique_id port 123738 remote_ip 10.8.0.150 123744 username rostami 123744 mac 123744 bytes_out 0 123744 bytes_in 0 123744 station_ip 5.120.119.183 123744 port 184 123744 unique_id port 123750 username barzegar 123750 kill_reason Another user logged on this global unique id 123750 mac 123750 bytes_out 0 123750 bytes_in 0 123750 station_ip 5.120.80.251 123750 port 186 123750 unique_id port 123756 username jafari 123756 kill_reason Another user logged on this global unique id 123756 mac 123756 bytes_out 0 123756 bytes_in 0 123756 station_ip 89.47.65.7 123756 port 169 123756 unique_id port 123756 remote_ip 10.8.0.242 123757 username barzegar 123757 mac 123757 bytes_out 0 123757 bytes_in 0 123757 station_ip 5.120.80.251 123757 port 182 123757 unique_id port 123757 remote_ip 10.8.0.234 123758 username barzegar 123758 mac 123758 bytes_out 0 123758 bytes_in 0 123758 station_ip 5.120.80.251 123758 port 106 123758 unique_id port 123758 remote_ip 10.8.1.174 123761 username barzegar 123761 mac 123761 bytes_out 0 123761 bytes_in 0 123761 station_ip 5.120.80.251 123761 port 106 123711 bytes_in 0 123711 station_ip 5.120.80.251 123711 port 169 123711 unique_id port 123711 remote_ip 10.8.0.234 123715 username alipour 123715 mac 123715 bytes_out 159374 123715 bytes_in 296937 123715 station_ip 83.122.175.49 123715 port 180 123715 unique_id port 123715 remote_ip 10.8.0.102 123718 username mehdizare 123718 mac 123718 bytes_out 311439 123718 bytes_in 1541516 123718 station_ip 5.120.59.106 123718 port 186 123718 unique_id port 123718 remote_ip 10.8.0.90 123720 username zare 123720 mac 123720 bytes_out 21554 123720 bytes_in 42914 123720 station_ip 94.183.214.14 123720 port 182 123720 unique_id port 123720 remote_ip 10.8.0.18 123722 username barzegar 123722 mac 123722 bytes_out 0 123722 bytes_in 0 123722 station_ip 5.120.80.251 123722 port 169 123722 unique_id port 123723 username kordestani 123723 mac 123723 bytes_out 0 123723 bytes_in 0 123723 station_ip 151.235.102.222 123723 port 102 123723 unique_id port 123723 remote_ip 10.8.1.98 123724 username zare 123724 mac 123724 bytes_out 0 123724 bytes_in 0 123724 station_ip 94.183.214.14 123724 port 169 123724 unique_id port 123724 remote_ip 10.8.0.18 123726 username forozande 123726 mac 123726 bytes_out 0 123726 bytes_in 0 123726 station_ip 83.123.47.206 123726 port 192 123726 unique_id port 123726 remote_ip 10.8.0.74 123740 username alipour 123740 mac 123740 bytes_out 0 123740 bytes_in 0 123740 station_ip 83.122.175.49 123740 port 99 123740 unique_id port 123740 remote_ip 10.8.1.50 123742 username jamali 123742 mac 123742 bytes_out 0 123742 bytes_in 0 123742 station_ip 5.120.145.163 123742 port 102 123742 unique_id port 123742 remote_ip 10.8.1.82 123743 username forozande 123743 mac 123743 bytes_out 72596 123743 bytes_in 334791 123743 station_ip 83.122.13.226 123743 port 182 123743 unique_id port 123743 remote_ip 10.8.0.74 123746 username zare 123746 mac 123746 bytes_out 0 123746 bytes_in 0 123746 station_ip 94.183.214.14 123746 port 169 123746 unique_id port 123746 remote_ip 10.8.0.18 123747 username zare 123747 mac 123747 bytes_out 0 123747 bytes_in 0 123747 station_ip 94.183.214.14 123747 port 169 123747 unique_id port 123747 remote_ip 10.8.0.18 123748 username zare 123748 mac 123748 bytes_out 0 123748 bytes_in 0 123748 station_ip 94.183.214.14 123748 port 169 123748 unique_id port 123748 remote_ip 10.8.0.18 123749 username alipour 123749 mac 123749 bytes_out 0 123749 bytes_in 0 123749 station_ip 83.122.175.49 123749 port 102 123749 unique_id port 123749 remote_ip 10.8.1.50 123752 username zare 123752 mac 123752 bytes_out 0 123752 bytes_in 0 123752 station_ip 94.183.214.14 123752 port 182 123752 unique_id port 123752 remote_ip 10.8.0.18 123753 username barzegar 123753 kill_reason Another user logged on this global unique id 123753 mac 123753 bytes_out 0 123753 bytes_in 0 123753 station_ip 5.120.80.251 123753 port 186 123753 unique_id port 123754 username mohammadjavad 123754 mac 123754 bytes_out 0 123754 bytes_in 0 123754 station_ip 113.203.119.8 123754 port 182 123754 unique_id port 123754 remote_ip 10.8.0.142 123755 username barzegar 123755 mac 123755 bytes_out 0 123755 bytes_in 0 123755 station_ip 5.120.80.251 123755 port 186 123755 unique_id port 123760 username sedighe 123760 mac 123760 bytes_out 98746 123760 bytes_in 91031 123760 station_ip 83.123.141.45 123760 port 180 123760 unique_id port 123760 remote_ip 10.8.0.146 123745 bytes_out 0 123745 bytes_in 0 123745 station_ip 5.120.145.163 123745 port 99 123745 unique_id port 123745 remote_ip 10.8.1.82 123751 username zare 123751 mac 123751 bytes_out 10114 123751 bytes_in 35659 123751 station_ip 94.183.214.14 123751 port 169 123751 unique_id port 123751 remote_ip 10.8.0.18 123759 username barzegar 123759 mac 123759 bytes_out 0 123759 bytes_in 0 123759 station_ip 5.120.80.251 123759 port 106 123759 unique_id port 123759 remote_ip 10.8.1.174 123764 username alipour 123764 mac 123764 bytes_out 0 123764 bytes_in 0 123764 station_ip 83.122.175.49 123764 port 104 123764 unique_id port 123764 remote_ip 10.8.1.50 123766 username zare 123766 mac 123766 bytes_out 4558555 123766 bytes_in 4317656 123766 station_ip 94.183.214.14 123766 port 102 123766 unique_id port 123766 remote_ip 10.8.1.58 123771 username barzegar 123771 mac 123771 bytes_out 2111 123771 bytes_in 4480 123771 station_ip 5.120.80.251 123771 port 102 123771 unique_id port 123771 remote_ip 10.8.1.174 123775 username zare 123775 mac 123775 bytes_out 0 123775 bytes_in 0 123775 station_ip 94.183.214.14 123775 port 190 123775 unique_id port 123775 remote_ip 10.8.0.18 123777 username hamidsalari 123777 mac 123777 bytes_out 0 123777 bytes_in 0 123777 station_ip 5.119.199.253 123777 port 182 123777 unique_id port 123777 remote_ip 10.8.0.230 123783 username zare 123783 kill_reason Maximum check online fails reached 123783 mac 123783 bytes_out 0 123783 bytes_in 0 123783 station_ip 94.183.214.14 123783 port 190 123783 unique_id port 123786 username aminvpn 123786 kill_reason Another user logged on this global unique id 123786 mac 123786 bytes_out 0 123786 bytes_in 0 123786 station_ip 83.122.6.65 123786 port 105 123786 unique_id port 123786 remote_ip 10.8.1.6 123790 username mahdiyehalizadeh 123790 mac 123790 bytes_out 270634 123790 bytes_in 1397732 123790 station_ip 83.122.17.29 123790 port 182 123790 unique_id port 123790 remote_ip 10.8.0.82 123793 username sedighe 123793 mac 123793 bytes_out 41864 123793 bytes_in 45164 123793 station_ip 37.129.69.239 123793 port 184 123793 unique_id port 123793 remote_ip 10.8.0.146 123794 username sedighe 123794 mac 123794 bytes_out 0 123794 bytes_in 0 123794 station_ip 37.129.69.239 123794 port 182 123794 unique_id port 123794 remote_ip 10.8.0.146 123799 username sabaghnezhad 123799 mac 123799 bytes_out 0 123799 bytes_in 0 123799 station_ip 83.122.221.98 123799 port 103 123799 unique_id port 123799 remote_ip 10.8.1.130 123802 username sabaghnezhad 123802 mac 123802 bytes_out 0 123802 bytes_in 0 123802 station_ip 83.122.221.98 123802 port 101 123802 unique_id port 123802 remote_ip 10.8.1.130 123807 username zare 123807 mac 123807 bytes_out 0 123807 bytes_in 0 123807 station_ip 94.183.214.14 123807 port 192 123807 unique_id port 123807 remote_ip 10.8.0.18 123809 username sabaghnezhad 123809 mac 123809 bytes_out 559765 123809 bytes_in 2498105 123809 station_ip 83.122.221.98 123809 port 184 123809 unique_id port 123809 remote_ip 10.8.0.186 123811 username jafari 123811 kill_reason Another user logged on this global unique id 123811 mac 123811 bytes_out 0 123811 bytes_in 0 123811 station_ip 89.47.65.7 123811 port 169 123811 unique_id port 123813 username arash 123813 mac 123813 bytes_out 821674 123813 bytes_in 10731585 123813 station_ip 37.27.31.235 123813 port 180 123813 unique_id port 123813 remote_ip 10.8.0.114 123820 username mohammadmahdi 123820 mac 123761 unique_id port 123761 remote_ip 10.8.1.174 123763 username sedighe 123763 mac 123763 bytes_out 35779 123763 bytes_in 126062 123763 station_ip 37.129.69.239 123763 port 182 123763 unique_id port 123763 remote_ip 10.8.0.146 123765 username barzegar 123765 mac 123765 bytes_out 0 123765 bytes_in 0 123765 station_ip 5.120.80.251 123765 port 106 123765 unique_id port 123765 remote_ip 10.8.1.174 123768 username jamali 123768 mac 123768 bytes_out 84599 123768 bytes_in 156427 123768 station_ip 5.120.145.163 123768 port 103 123768 unique_id port 123768 remote_ip 10.8.1.82 123770 username amir 123770 kill_reason Another user logged on this global unique id 123770 mac 123770 bytes_out 0 123770 bytes_in 0 123770 station_ip 46.225.210.218 123770 port 99 123770 unique_id port 123770 remote_ip 10.8.1.22 123772 username mehdizare 123772 mac 123772 bytes_out 657525 123772 bytes_in 4086133 123772 station_ip 5.120.59.106 123772 port 101 123772 unique_id port 123772 remote_ip 10.8.1.42 123773 username alipour 123773 mac 123773 bytes_out 0 123773 bytes_in 0 123773 station_ip 83.122.175.49 123773 port 188 123773 unique_id port 123773 remote_ip 10.8.0.102 123778 username arash 123778 kill_reason Another user logged on this global unique id 123778 mac 123778 bytes_out 0 123778 bytes_in 0 123778 station_ip 37.27.31.235 123778 port 186 123778 unique_id port 123778 remote_ip 10.8.0.114 123780 username mohammadjavad 123780 mac 123780 bytes_out 0 123780 bytes_in 0 123780 station_ip 83.123.193.225 123780 port 180 123780 unique_id port 123780 remote_ip 10.8.0.142 123781 username arash 123781 mac 123781 bytes_out 0 123781 bytes_in 0 123781 station_ip 37.27.31.235 123781 port 186 123781 unique_id port 123784 username mohammadmahdi 123784 mac 123784 bytes_out 36113 123784 bytes_in 58103 123784 station_ip 5.119.66.9 123784 port 102 123784 unique_id port 123784 remote_ip 10.8.1.158 123787 username zare 123787 mac 123787 bytes_out 29219 123787 bytes_in 92313 123787 station_ip 94.183.214.14 123787 port 135 123787 unique_id port 123787 remote_ip 10.8.0.18 123788 username zare 123788 mac 123788 bytes_out 0 123788 bytes_in 0 123788 station_ip 94.183.214.14 123788 port 135 123788 unique_id port 123788 remote_ip 10.8.0.18 123789 username hamidsalari 123789 mac 123789 bytes_out 16863 123789 bytes_in 31659 123789 station_ip 5.119.72.239 123789 port 186 123789 unique_id port 123789 remote_ip 10.8.0.230 123792 username barzegar 123792 mac 123792 bytes_out 0 123792 bytes_in 0 123792 station_ip 5.120.80.251 123792 port 102 123792 unique_id port 123792 remote_ip 10.8.1.174 123795 username sabaghnezhad 123795 mac 123795 bytes_out 189455 123795 bytes_in 294721 123795 station_ip 83.122.221.98 123795 port 184 123795 unique_id port 123795 remote_ip 10.8.0.186 123796 username barzegar 123796 mac 123796 bytes_out 0 123796 bytes_in 0 123796 station_ip 5.120.80.251 123796 port 102 123796 unique_id port 123796 remote_ip 10.8.1.174 123798 username mehdizare 123798 mac 123798 bytes_out 0 123798 bytes_in 0 123798 station_ip 5.120.59.106 123798 port 101 123798 unique_id port 123798 remote_ip 10.8.1.42 123800 username zare 123800 mac 123800 bytes_out 53205 123800 bytes_in 699590 123800 station_ip 94.183.214.14 123800 port 192 123800 unique_id port 123800 remote_ip 10.8.0.18 123801 username mosi 123801 kill_reason Another user logged on this global unique id 123801 mac 123801 bytes_out 0 123801 bytes_in 0 123801 station_ip 151.235.122.242 123762 username alirezazadeh 123762 unique_id port 123762 terminate_cause User-Request 123762 bytes_out 19235088 123762 bytes_in 658949787 123762 station_ip 31.56.223.233 123762 port 15729863 123762 nas_port_type Virtual 123762 remote_ip 5.5.5.255 123767 username hamidsalari 123767 mac 123767 bytes_out 0 123767 bytes_in 0 123767 station_ip 5.119.199.253 123767 port 135 123767 unique_id port 123769 username zare 123769 mac 123769 bytes_out 0 123769 bytes_in 0 123769 station_ip 94.183.214.14 123769 port 190 123769 unique_id port 123769 remote_ip 10.8.0.18 123774 username zare 123774 mac 123774 bytes_out 0 123774 bytes_in 0 123774 station_ip 94.183.214.14 123774 port 190 123774 unique_id port 123774 remote_ip 10.8.0.18 123776 username zare 123776 mac 123776 bytes_out 0 123776 bytes_in 0 123776 station_ip 94.183.214.14 123776 port 190 123776 unique_id port 123776 remote_ip 10.8.0.18 123779 username mohammadmahdi 123779 mac 123779 bytes_out 0 123779 bytes_in 0 123779 station_ip 5.119.66.9 123779 port 135 123779 unique_id port 123779 remote_ip 10.8.0.54 123782 username barzegar 123782 mac 123782 bytes_out 0 123782 bytes_in 0 123782 station_ip 5.120.80.251 123782 port 103 123782 unique_id port 123782 remote_ip 10.8.1.174 123785 username hamidsalari 123785 mac 123785 bytes_out 7737 123785 bytes_in 9748 123785 station_ip 5.119.199.253 123785 port 182 123785 unique_id port 123785 remote_ip 10.8.0.230 123791 username mehdizare 123791 mac 123791 bytes_out 0 123791 bytes_in 0 123791 station_ip 5.120.59.106 123791 port 101 123791 unique_id port 123791 remote_ip 10.8.1.42 123797 username jafari 123797 kill_reason Another user logged on this global unique id 123797 mac 123797 bytes_out 0 123797 bytes_in 0 123797 station_ip 89.47.65.7 123797 port 169 123797 unique_id port 123804 username sedighe 123804 mac 123804 bytes_out 41028 123804 bytes_in 28481 123804 station_ip 37.129.69.239 123804 port 186 123804 unique_id port 123804 remote_ip 10.8.0.146 123805 username amir 123805 kill_reason Another user logged on this global unique id 123805 mac 123805 bytes_out 0 123805 bytes_in 0 123805 station_ip 46.225.210.218 123805 port 99 123805 unique_id port 123810 username zare 123810 mac 123810 bytes_out 7628 123810 bytes_in 17408 123810 station_ip 94.183.214.14 123810 port 192 123810 unique_id port 123810 remote_ip 10.8.0.18 123814 username zare 123814 mac 123814 bytes_out 0 123814 bytes_in 0 123814 station_ip 94.183.214.14 123814 port 180 123814 unique_id port 123814 remote_ip 10.8.0.18 123816 username barzegar 123816 mac 123816 bytes_out 0 123816 bytes_in 0 123816 station_ip 5.120.80.251 123816 port 102 123816 unique_id port 123816 remote_ip 10.8.1.174 123817 username zare 123817 mac 123817 bytes_out 0 123817 bytes_in 0 123817 station_ip 94.183.214.14 123817 port 180 123817 unique_id port 123817 remote_ip 10.8.0.18 123826 username mosi 123826 kill_reason Another user logged on this global unique id 123826 mac 123826 bytes_out 0 123826 bytes_in 0 123826 station_ip 151.235.122.242 123826 port 187 123826 unique_id port 123829 username zare 123829 mac 123829 bytes_out 0 123829 bytes_in 0 123829 station_ip 94.183.214.14 123829 port 102 123829 unique_id port 123829 remote_ip 10.8.1.58 123831 username barzegar 123831 mac 123831 bytes_out 0 123831 bytes_in 0 123831 station_ip 5.120.80.251 123831 port 101 123831 unique_id port 123831 remote_ip 10.8.1.174 123834 username zare 123834 mac 123801 port 187 123801 unique_id port 123801 remote_ip 10.8.0.138 123803 username zare 123803 mac 123803 bytes_out 0 123803 bytes_in 0 123803 station_ip 94.183.214.14 123803 port 192 123803 unique_id port 123803 remote_ip 10.8.0.18 123806 username mosi 123806 kill_reason Another user logged on this global unique id 123806 mac 123806 bytes_out 0 123806 bytes_in 0 123806 station_ip 151.235.122.242 123806 port 187 123806 unique_id port 123808 username mirzaei 123808 kill_reason Another user logged on this global unique id 123808 mac 123808 bytes_out 0 123808 bytes_in 0 123808 station_ip 5.120.131.48 123808 port 85 123808 unique_id port 123812 username zare 123812 mac 123812 bytes_out 0 123812 bytes_in 0 123812 station_ip 94.183.214.14 123812 port 184 123812 unique_id port 123812 remote_ip 10.8.0.18 123815 username zare 123815 mac 123815 bytes_out 0 123815 bytes_in 0 123815 station_ip 94.183.214.14 123815 port 180 123815 unique_id port 123815 remote_ip 10.8.0.18 123818 username tahmasebi 123818 kill_reason Another user logged on this global unique id 123818 mac 123818 bytes_out 0 123818 bytes_in 0 123818 station_ip 5.120.156.5 123818 port 196 123818 unique_id port 123818 remote_ip 10.8.0.42 123819 username mosi 123819 kill_reason Another user logged on this global unique id 123819 mac 123819 bytes_out 0 123819 bytes_in 0 123819 station_ip 151.235.122.242 123819 port 187 123819 unique_id port 123821 username mohammadmahdi 123821 mac 123821 bytes_out 74824 123821 bytes_in 159475 123821 station_ip 5.119.66.9 123821 port 182 123821 unique_id port 123821 remote_ip 10.8.0.54 123823 username mohammadmahdi 123823 mac 123823 bytes_out 14438 123823 bytes_in 35682 123823 station_ip 5.119.66.9 123823 port 182 123823 unique_id port 123823 remote_ip 10.8.0.54 123824 username jafari 123824 kill_reason Another user logged on this global unique id 123824 mac 123824 bytes_out 0 123824 bytes_in 0 123824 station_ip 89.47.65.7 123824 port 169 123824 unique_id port 123827 username hamidsalari1 123827 mac 123827 bytes_out 0 123827 bytes_in 0 123827 station_ip 83.122.83.238 123827 port 186 123827 unique_id port 123827 remote_ip 10.8.0.226 123830 username mehdizare 123830 mac 123830 bytes_out 38553 123830 bytes_in 47034 61177 username arezoo 61177 kill_reason Relative expiration date has reached 61177 mac 5.237.69.103:49257: Unknown host 61177 bytes_out 0 61177 bytes_in 0 61177 station_ip 5.237.69.103:49257 61177 port 1017 61177 unique_id port 61178 username arezoo 61178 kill_reason Relative expiration date has reached 61178 mac 5.237.69.103:49338: Unknown host 61178 bytes_out 0 61178 bytes_in 0 61178 station_ip 5.237.69.103:49338 61178 port 1017 61178 unique_id port 123830 station_ip 5.120.59.106 123830 port 101 123830 unique_id port 123830 remote_ip 10.8.1.42 123832 username zare 123832 mac 123832 bytes_out 0 123832 bytes_in 0 123832 station_ip 94.183.214.14 123832 port 182 123832 unique_id port 123832 remote_ip 10.8.0.18 123836 username zare 123836 mac 123836 bytes_out 0 123836 bytes_in 0 123836 station_ip 94.183.214.14 123836 port 182 123836 unique_id port 123836 remote_ip 10.8.0.18 123838 username zare 123838 mac 123838 bytes_out 0 123838 bytes_in 0 123838 station_ip 94.183.214.14 123838 port 186 123838 unique_id port 123838 remote_ip 10.8.0.18 123839 username zare 123839 mac 123839 bytes_out 0 123839 bytes_in 0 123839 station_ip 94.183.214.14 123839 port 186 123839 unique_id port 123839 remote_ip 10.8.0.18 123844 username zare 123844 mac 123844 bytes_out 0 123820 bytes_out 0 123820 bytes_in 0 123820 station_ip 5.119.66.9 123820 port 102 123820 unique_id port 123820 remote_ip 10.8.1.158 123822 username aminvpn 123822 mac 123822 bytes_out 0 123822 bytes_in 0 123822 station_ip 83.122.6.65 123822 port 105 123822 unique_id port 123825 username zare 123825 mac 123825 bytes_out 0 123825 bytes_in 0 123825 station_ip 94.183.214.14 123825 port 180 123825 unique_id port 123825 remote_ip 10.8.0.18 123828 username zare 123828 mac 123828 bytes_out 0 123828 bytes_in 0 123828 station_ip 94.183.214.14 123828 port 102 123828 unique_id port 123828 remote_ip 10.8.1.58 123833 username mosi 123833 kill_reason Another user logged on this global unique id 123833 mac 123833 bytes_out 0 123833 bytes_in 0 123833 station_ip 151.235.122.242 123833 port 187 123833 unique_id port 123837 username amir 123837 kill_reason Another user logged on this global unique id 123837 mac 123837 bytes_out 0 123837 bytes_in 0 123837 station_ip 46.225.210.218 123837 port 99 123837 unique_id port 123840 username sedighe 123840 mac 123840 bytes_out 0 123840 bytes_in 0 123840 station_ip 37.129.69.239 123840 port 194 123840 unique_id port 123840 remote_ip 10.8.0.146 123841 username zare 123841 mac 123841 bytes_out 0 123841 bytes_in 0 123841 station_ip 94.183.214.14 123841 port 192 123841 unique_id port 123841 remote_ip 10.8.0.18 123842 username mosi 123842 kill_reason Another user logged on this global unique id 123842 mac 123842 bytes_out 0 123842 bytes_in 0 123842 station_ip 151.235.122.242 123842 port 187 123842 unique_id port 123845 username barzegar 123845 mac 123845 bytes_out 2212 123845 bytes_in 4599 123845 station_ip 5.120.80.251 123845 port 101 123845 unique_id port 123845 remote_ip 10.8.1.174 123846 username tahmasebi 123846 mac 123846 bytes_out 0 123846 bytes_in 0 123846 station_ip 5.120.156.5 123846 port 196 123846 unique_id port 123850 username zare 123850 mac 123850 bytes_out 0 123850 bytes_in 0 123850 station_ip 94.183.214.14 123850 port 101 123850 unique_id port 123850 remote_ip 10.8.1.58 123856 username hamidsalari1 123856 mac 123856 bytes_out 0 123856 bytes_in 0 123856 station_ip 37.129.3.122 123856 port 182 123856 unique_id port 123856 remote_ip 10.8.0.226 123859 username zare 123859 mac 123859 bytes_out 0 123859 bytes_in 0 123859 station_ip 94.183.214.14 123859 port 103 123859 unique_id port 123859 remote_ip 10.8.1.58 123860 username zare 123860 mac 123860 bytes_out 0 123860 bytes_in 0 123860 station_ip 94.183.214.14 123860 port 103 123860 unique_id port 123860 remote_ip 10.8.1.58 123870 username jafari 123870 mac 123870 bytes_out 0 123870 bytes_in 0 123870 station_ip 89.47.65.7 123870 port 169 123870 unique_id port 123871 username tahmasebi 123871 mac 123871 bytes_out 57783 123871 bytes_in 89167 123871 station_ip 5.119.127.237 123871 port 101 123871 unique_id port 123871 remote_ip 10.8.1.90 123872 username kordestani 123872 mac 123872 bytes_out 0 123872 bytes_in 0 123872 station_ip 113.203.79.242 123872 port 197 123872 unique_id port 123872 remote_ip 10.8.0.134 123880 username zare 123880 mac 123880 bytes_out 0 123880 bytes_in 0 123880 station_ip 94.183.214.14 123880 port 196 123880 unique_id port 123880 remote_ip 10.8.0.18 123883 username mosi 123883 kill_reason Another user logged on this global unique id 123883 mac 123883 bytes_out 0 123883 bytes_in 0 123883 station_ip 151.235.122.242 123883 port 187 123834 bytes_out 0 123834 bytes_in 0 123834 station_ip 94.183.214.14 123834 port 182 123834 unique_id port 123834 remote_ip 10.8.0.18 123835 username barzegar 123835 mac 123835 bytes_out 11805 123835 bytes_in 23514 123835 station_ip 5.120.80.251 123835 port 101 123835 unique_id port 123835 remote_ip 10.8.1.174 123843 username zare 123843 mac 123843 bytes_out 0 123843 bytes_in 0 123843 station_ip 94.183.214.14 123843 port 192 123843 unique_id port 123843 remote_ip 10.8.0.18 123851 username zare 123851 mac 123851 bytes_out 0 123851 bytes_in 0 123851 station_ip 94.183.214.14 123851 port 101 123851 unique_id port 123851 remote_ip 10.8.1.58 123852 username jafari 123852 kill_reason Another user logged on this global unique id 123852 mac 123852 bytes_out 0 123852 bytes_in 0 123852 station_ip 89.47.65.7 123852 port 169 123852 unique_id port 123854 username zare 123854 mac 123854 bytes_out 0 123854 bytes_in 0 123854 station_ip 94.183.214.14 123854 port 194 123854 unique_id port 123854 remote_ip 10.8.0.18 123855 username zare 123855 mac 123855 bytes_out 0 123855 bytes_in 0 123855 station_ip 94.183.214.14 123855 port 194 123855 unique_id port 123855 remote_ip 10.8.0.18 123857 username tahmasebi 123857 mac 123857 bytes_out 7520 123857 bytes_in 12311 123857 station_ip 5.119.127.237 123857 port 196 123857 unique_id port 123857 remote_ip 10.8.0.42 123862 username zare 123862 mac 123862 bytes_out 0 123862 bytes_in 0 123862 station_ip 94.183.214.14 123862 port 182 123862 unique_id port 123862 remote_ip 10.8.0.18 123865 username barzegar 123865 mac 123865 bytes_out 0 123865 bytes_in 0 123865 station_ip 5.120.80.251 123865 port 102 123865 unique_id port 123865 remote_ip 10.8.1.174 123866 username zare 123866 mac 123866 bytes_out 0 123866 bytes_in 0 123866 station_ip 94.183.214.14 123866 port 182 123866 unique_id port 123866 remote_ip 10.8.0.18 123868 username zare 123868 mac 123868 bytes_out 0 123868 bytes_in 0 123868 station_ip 94.183.214.14 123868 port 102 123868 unique_id port 123868 remote_ip 10.8.1.58 123869 username aminvpn 123869 unique_id port 123869 terminate_cause Lost-Carrier 123869 bytes_out 977675 123869 bytes_in 9366504 123869 station_ip 5.119.50.212 123869 port 15729867 123869 nas_port_type Virtual 123869 remote_ip 5.5.5.252 123873 username mirzaei 123873 kill_reason Another user logged on this global unique id 123873 mac 123873 bytes_out 0 123873 bytes_in 0 123873 station_ip 5.120.131.48 123873 port 85 123873 unique_id port 123874 username mosi 123874 kill_reason Another user logged on this global unique id 123874 mac 123874 bytes_out 0 123874 bytes_in 0 123874 station_ip 151.235.122.242 123874 port 187 123874 unique_id port 123877 username barzegar 123877 mac 123877 bytes_out 0 123877 bytes_in 0 123877 station_ip 5.120.80.251 123877 port 102 123877 unique_id port 123877 remote_ip 10.8.1.174 123878 username zare 123878 mac 123878 bytes_out 0 123878 bytes_in 0 123878 station_ip 94.183.214.14 123878 port 194 123878 unique_id port 123878 remote_ip 10.8.0.18 123879 username zare 123879 mac 123879 bytes_out 0 123879 bytes_in 0 123879 station_ip 94.183.214.14 123879 port 196 123879 unique_id port 123879 remote_ip 10.8.0.18 123881 username sedighe 123881 mac 123881 bytes_out 0 123881 bytes_in 0 123881 station_ip 83.122.123.18 123881 port 186 123881 unique_id port 123881 remote_ip 10.8.0.146 123885 username rezaei 123885 mac 123885 bytes_out 0 123844 bytes_in 0 123844 station_ip 94.183.214.14 123844 port 192 123844 unique_id port 123844 remote_ip 10.8.0.18 123847 username hamid.e 123847 unique_id port 123847 terminate_cause User-Request 123847 bytes_out 19846336 123847 bytes_in 528638943 123847 station_ip 37.27.10.207 123847 port 15729866 123847 nas_port_type Virtual 123847 remote_ip 5.5.5.254 123848 username zare 123848 kill_reason Maximum check online fails reached 123848 mac 123848 bytes_out 0 123848 bytes_in 0 123848 station_ip 94.183.214.14 123848 port 192 123848 unique_id port 123849 username tahmasebi 123849 mac 123849 bytes_out 36594 123849 bytes_in 234490 123849 station_ip 5.120.156.5 123849 port 194 123849 unique_id port 123849 remote_ip 10.8.0.42 123853 username zare 123853 mac 123853 bytes_out 0 123853 bytes_in 0 123853 station_ip 94.183.214.14 123853 port 101 123853 unique_id port 123853 remote_ip 10.8.1.58 123858 username mosi 123858 kill_reason Another user logged on this global unique id 123858 mac 123858 bytes_out 0 123858 bytes_in 0 123858 station_ip 151.235.122.242 123858 port 187 123858 unique_id port 123861 username mohammadmahdi 123861 mac 123861 bytes_out 29408 123861 bytes_in 79843 123861 station_ip 5.119.66.9 123861 port 182 123861 unique_id port 123861 remote_ip 10.8.0.54 123863 username zare 123863 mac 123863 bytes_out 0 123863 bytes_in 0 123863 station_ip 94.183.214.14 123863 port 182 123863 unique_id port 123863 remote_ip 10.8.0.18 123864 username zare 123864 mac 123864 bytes_out 0 123864 bytes_in 0 123864 station_ip 94.183.214.14 123864 port 182 123864 unique_id port 123864 remote_ip 10.8.0.18 123867 username malekpoir 123867 mac 123867 bytes_out 0 123867 bytes_in 0 123867 station_ip 5.120.182.240 123867 port 122 123867 unique_id port 123875 username zare 123875 mac 123875 bytes_out 0 123875 bytes_in 0 123875 station_ip 94.183.214.14 123875 port 194 123875 unique_id port 123875 remote_ip 10.8.0.18 123876 username zare 123876 mac 123876 bytes_out 0 123876 bytes_in 0 123876 station_ip 94.183.214.14 123876 port 194 123876 unique_id port 123876 remote_ip 10.8.0.18 123882 username amir 123882 kill_reason Another user logged on this global unique id 123882 mac 123882 bytes_out 0 123882 bytes_in 0 123882 station_ip 46.225.210.218 123882 port 99 123882 unique_id port 123890 username barzegar 123890 mac 123890 bytes_out 0 123890 bytes_in 0 123890 station_ip 5.120.80.251 123890 port 194 123890 unique_id port 123890 remote_ip 10.8.0.234 123892 username mansur 123892 mac 123892 bytes_out 0 123892 bytes_in 0 123892 station_ip 5.120.117.76 123892 port 198 123892 unique_id port 123892 remote_ip 10.8.0.210 123896 username zare 123896 mac 123896 bytes_out 0 123896 bytes_in 0 123896 station_ip 94.183.214.14 123896 port 186 123896 unique_id port 123896 remote_ip 10.8.0.18 123900 username zare 123900 mac 123900 bytes_out 0 123900 bytes_in 0 123900 station_ip 94.183.214.14 123900 port 187 123900 unique_id port 123900 remote_ip 10.8.0.18 123902 username aminvpn 123902 mac 123902 bytes_out 0 123902 bytes_in 0 123902 station_ip 83.122.6.65 123902 port 196 123902 unique_id port 123902 remote_ip 10.8.0.14 123905 username aminvpn 123905 mac 123905 bytes_out 0 123905 bytes_in 0 123905 station_ip 5.119.156.190 123905 port 198 123905 unique_id port 123905 remote_ip 10.8.0.14 123910 username mansur 123910 mac 123910 bytes_out 0 123910 bytes_in 0 123910 station_ip 5.120.117.76 123910 port 196 123883 unique_id port 123884 username zare 123884 mac 123884 bytes_out 0 123884 bytes_in 0 123884 station_ip 94.183.214.14 123884 port 186 123884 unique_id port 123884 remote_ip 10.8.0.18 123886 username zare 123886 mac 123886 bytes_out 0 123886 bytes_in 0 123886 station_ip 94.183.214.14 123886 port 186 123886 unique_id port 123886 remote_ip 10.8.0.18 123891 username zare 123891 mac 123891 bytes_out 0 123891 bytes_in 0 123891 station_ip 94.183.214.14 123891 port 197 123891 unique_id port 123891 remote_ip 10.8.0.18 123893 username mansur 123893 mac 123893 bytes_out 0 123893 bytes_in 0 123893 station_ip 5.120.117.76 123893 port 101 123893 unique_id port 123893 remote_ip 10.8.1.194 123901 username zare 123901 mac 123901 bytes_out 0 123901 bytes_in 0 123901 station_ip 94.183.214.14 123901 port 187 123901 unique_id port 123901 remote_ip 10.8.0.18 123903 username aminvpn 123903 mac 123903 bytes_out 0 123903 bytes_in 0 123903 station_ip 5.119.156.190 123903 port 198 123903 unique_id port 123903 remote_ip 10.8.0.14 123904 username aminvpn 123904 mac 123904 bytes_out 0 123904 bytes_in 0 123904 station_ip 83.122.6.65 123904 port 196 123904 unique_id port 123904 remote_ip 10.8.0.14 123906 username aminvpn 123906 mac 123906 bytes_out 0 123906 bytes_in 0 123906 station_ip 83.122.6.65 123906 port 196 123906 unique_id port 123906 remote_ip 10.8.0.14 123907 username aminvpn 123907 mac 123907 bytes_out 0 123907 bytes_in 0 123907 station_ip 5.119.156.190 123907 port 198 123907 unique_id port 123907 remote_ip 10.8.0.14 123909 username aminvpn 123909 mac 123909 bytes_out 0 123909 bytes_in 0 123909 station_ip 5.119.156.190 123909 port 198 123909 unique_id port 123909 remote_ip 10.8.0.14 123911 username aminvpn 123911 mac 123911 bytes_out 0 123911 bytes_in 0 123911 station_ip 83.122.6.65 123911 port 199 123911 unique_id port 123911 remote_ip 10.8.0.14 123912 username aminvpn 123912 mac 123912 bytes_out 0 123912 bytes_in 0 123912 station_ip 5.119.156.190 123912 port 196 123912 unique_id port 123912 remote_ip 10.8.0.14 123915 username aminvpn 123915 mac 123915 bytes_out 0 123915 bytes_in 0 123915 station_ip 83.122.6.65 123915 port 198 123915 unique_id port 123915 remote_ip 10.8.0.14 123916 username aminvpn 123916 mac 123916 bytes_out 0 123916 bytes_in 0 123916 station_ip 5.119.156.190 123916 port 197 123916 unique_id port 123916 remote_ip 10.8.0.14 123918 username zare 123918 mac 123918 bytes_out 0 123918 bytes_in 0 123918 station_ip 94.183.214.14 123918 port 187 123918 unique_id port 123918 remote_ip 10.8.0.18 123920 username tahmasebi 123920 mac 123920 bytes_out 0 123920 bytes_in 0 123920 station_ip 5.119.127.237 123920 port 122 123920 unique_id port 123920 remote_ip 10.8.0.42 123921 username kordestani 123921 mac 123921 bytes_out 0 123921 bytes_in 0 123921 station_ip 113.203.79.242 123921 port 169 123921 unique_id port 123921 remote_ip 10.8.0.134 123922 username aminvpn 123922 mac 123922 bytes_out 0 123922 bytes_in 0 123922 station_ip 5.120.52.169 123922 port 187 123922 unique_id port 123922 remote_ip 10.8.0.14 123925 username aminvpn 123925 mac 123925 bytes_out 0 123925 bytes_in 0 123925 station_ip 83.122.6.65 123925 port 169 123925 unique_id port 123925 remote_ip 10.8.0.14 123926 username aminvpn 123926 mac 123926 bytes_out 0 123926 bytes_in 0 123926 station_ip 5.120.52.169 123885 bytes_in 0 123885 station_ip 5.120.2.153 123885 port 197 123885 unique_id port 123885 remote_ip 10.8.0.206 123887 username zare 123887 mac 123887 bytes_out 0 123887 bytes_in 0 123887 station_ip 94.183.214.14 123887 port 186 123887 unique_id port 123887 remote_ip 10.8.0.18 123888 username zare 123888 mac 123888 bytes_out 0 123888 bytes_in 0 123888 station_ip 94.183.214.14 123888 port 186 123888 unique_id port 123888 remote_ip 10.8.0.18 123889 username zare 123889 mac 123889 bytes_out 0 123889 bytes_in 0 123889 station_ip 94.183.214.14 123889 port 186 123889 unique_id port 123889 remote_ip 10.8.0.18 123894 username barzegar 123894 mac 123894 bytes_out 0 123894 bytes_in 0 123894 station_ip 5.120.80.251 123894 port 186 123894 unique_id port 123894 remote_ip 10.8.0.234 123895 username sedighe 123895 mac 123895 bytes_out 0 123895 bytes_in 0 123895 station_ip 83.122.123.18 123895 port 196 123895 unique_id port 123895 remote_ip 10.8.0.146 123897 username mansur 123897 mac 123897 bytes_out 0 123897 bytes_in 0 123897 station_ip 5.120.117.76 123897 port 196 123897 unique_id port 123897 remote_ip 10.8.0.210 123898 username mosi 123898 mac 123898 bytes_out 0 123898 bytes_in 0 123898 station_ip 151.235.122.242 123898 port 187 123898 unique_id port 123899 username aminvpn 123899 mac 123899 bytes_out 0 123899 bytes_in 0 123899 station_ip 5.119.156.190 123899 port 194 123899 unique_id port 123899 remote_ip 10.8.0.14 123908 username aminvpn 123908 mac 123908 bytes_out 0 123908 bytes_in 0 123908 station_ip 83.122.6.65 123908 port 196 123908 unique_id port 123908 remote_ip 10.8.0.14 123913 username sedighe 123913 mac 123913 bytes_out 6474 123913 bytes_in 9928 123913 station_ip 83.122.123.18 123913 port 197 123913 unique_id port 123913 remote_ip 10.8.0.146 123917 username aminvpn 123917 mac 123917 bytes_out 0 123917 bytes_in 0 123917 station_ip 5.120.52.169 123917 port 198 123917 unique_id port 123917 remote_ip 10.8.0.14 123919 username aminvpn 123919 mac 123919 bytes_out 0 123919 bytes_in 0 123919 station_ip 83.122.6.65 123919 port 197 123919 unique_id port 123919 remote_ip 10.8.0.14 123928 username aminvpn 123928 mac 123928 bytes_out 0 123928 bytes_in 0 123928 station_ip 5.120.52.169 123928 port 197 123928 unique_id port 123928 remote_ip 10.8.0.14 123931 username barzegar 123931 mac 123931 bytes_out 0 123931 bytes_in 0 123931 station_ip 5.120.80.251 123931 port 194 123931 unique_id port 123931 remote_ip 10.8.0.234 123935 username mansur 123935 kill_reason Another user logged on this global unique id 123935 mac 123935 bytes_out 0 123935 bytes_in 0 123935 station_ip 5.120.117.76 123935 port 187 123935 unique_id port 123935 remote_ip 10.8.0.210 123936 username amir 123936 kill_reason Another user logged on this global unique id 123936 mac 123936 bytes_out 0 123936 bytes_in 0 123936 station_ip 46.225.210.218 123936 port 99 123936 unique_id port 123937 username rezaei 123937 mac 123937 bytes_out 0 123937 bytes_in 0 123937 station_ip 5.120.2.153 123937 port 199 123937 unique_id port 123937 remote_ip 10.8.0.206 123939 username sedighe 123939 mac 123939 bytes_out 0 123939 bytes_in 0 123939 station_ip 83.122.123.18 123939 port 169 123939 unique_id port 123939 remote_ip 10.8.0.146 123941 username rajaei 123941 kill_reason Another user logged on this global unique id 123941 mac 123941 bytes_out 0 123941 bytes_in 0 123941 station_ip 5.134.166.253 123910 unique_id port 123910 remote_ip 10.8.0.210 123914 username mansur 123914 mac 123914 bytes_out 0 123914 bytes_in 0 123914 station_ip 5.120.117.76 123914 port 101 123914 unique_id port 123914 remote_ip 10.8.1.194 123923 username aminvpn 123923 mac 123923 bytes_out 0 123923 bytes_in 0 123923 station_ip 83.122.6.65 123923 port 169 123923 unique_id port 123923 remote_ip 10.8.0.14 123924 username aminvpn 123924 mac 123924 bytes_out 0 123924 bytes_in 0 123924 station_ip 5.120.52.169 123924 port 197 123924 unique_id port 123924 remote_ip 10.8.0.14 123932 username barzegar 123932 mac 123932 bytes_out 0 123932 bytes_in 0 123932 station_ip 5.120.80.251 123932 port 198 123932 unique_id port 123932 remote_ip 10.8.0.234 123934 username barzegar 123934 mac 123934 bytes_out 0 123934 bytes_in 0 123934 station_ip 5.120.80.251 123934 port 198 123934 unique_id port 123934 remote_ip 10.8.0.234 123940 username barzegar 123940 mac 123940 bytes_out 0 123940 bytes_in 0 123940 station_ip 5.120.80.251 123940 port 102 123940 unique_id port 123940 remote_ip 10.8.1.174 123943 username zare 123943 mac 123943 bytes_out 0 123943 bytes_in 0 123943 station_ip 94.183.214.14 123943 port 122 123943 unique_id port 123943 remote_ip 10.8.0.18 123947 username mansur 123947 kill_reason Another user logged on this global unique id 123947 mac 123947 bytes_out 0 123947 bytes_in 0 123947 station_ip 5.120.117.76 123947 port 187 123947 unique_id port 123951 username barzegar 123951 mac 123951 bytes_out 3176 123951 bytes_in 5666 123951 station_ip 5.120.80.251 123951 port 102 123951 unique_id port 123951 remote_ip 10.8.1.174 123955 username zare 123955 mac 123955 bytes_out 0 123955 bytes_in 0 123955 station_ip 94.183.214.14 123955 port 198 123955 unique_id port 123955 remote_ip 10.8.0.18 123957 username zare 123957 mac 123957 bytes_out 0 123957 bytes_in 0 123957 station_ip 94.183.214.14 123957 port 198 123957 unique_id port 123957 remote_ip 10.8.0.18 123961 username zare 123961 mac 123961 bytes_out 8907 123961 bytes_in 15477 123961 station_ip 94.183.214.14 123961 port 198 123961 unique_id port 123961 remote_ip 10.8.0.18 123963 username mansur 123963 kill_reason Another user logged on this global unique id 123963 mac 123963 bytes_out 0 123963 bytes_in 0 123963 station_ip 5.120.117.76 123963 port 187 123963 unique_id port 123964 username barzegar 123964 mac 123964 bytes_out 0 123964 bytes_in 0 123964 station_ip 5.120.80.251 123964 port 102 123964 unique_id port 123964 remote_ip 10.8.1.174 123967 username zare 123967 mac 123967 bytes_out 0 123967 bytes_in 0 123967 station_ip 94.183.214.14 123967 port 196 123967 unique_id port 123967 remote_ip 10.8.0.18 123971 username asma2026 123971 kill_reason Another user logged on this global unique id 123971 mac 123971 bytes_out 0 123971 bytes_in 0 123971 station_ip 37.129.237.201 123971 port 122 123971 unique_id port 123973 username asma2026 123973 mac 123973 bytes_out 0 123973 bytes_in 0 123973 station_ip 37.129.237.201 123973 port 122 123973 unique_id port 123976 username mohammadjavad 123976 mac 123976 bytes_out 760748 123976 bytes_in 9538105 123976 station_ip 83.122.136.71 123976 port 122 123976 unique_id port 123976 remote_ip 10.8.0.142 123978 username barzegar 123978 kill_reason Maximum check online fails reached 123978 mac 123978 bytes_out 0 123978 bytes_in 0 123978 station_ip 5.120.80.251 123978 port 103 123978 unique_id port 123980 username mansur 123926 port 197 123926 unique_id port 123926 remote_ip 10.8.0.14 123927 username aminvpn 123927 mac 123927 bytes_out 0 123927 bytes_in 0 123927 station_ip 83.122.6.65 123927 port 169 123927 unique_id port 123927 remote_ip 10.8.0.14 123929 username aminvpn 123929 mac 123929 bytes_out 0 123929 bytes_in 0 123929 station_ip 83.122.6.65 123929 port 169 123929 unique_id port 123929 remote_ip 10.8.0.14 123930 username sedighe 123930 mac 123930 bytes_out 0 123930 bytes_in 0 123930 station_ip 83.122.123.18 123930 port 196 123930 unique_id port 123930 remote_ip 10.8.0.146 123933 username rajaei 123933 kill_reason Another user logged on this global unique id 123933 mac 123933 bytes_out 0 123933 bytes_in 0 123933 station_ip 5.134.166.253 123933 port 196 123933 unique_id port 123933 remote_ip 10.8.0.34 123938 username barzegar 123938 mac 123938 bytes_out 3060 123938 bytes_in 5479 123938 station_ip 5.120.80.251 123938 port 102 123938 unique_id port 123938 remote_ip 10.8.1.174 123942 username asma2026 123942 mac 123942 bytes_out 0 123942 bytes_in 0 123942 station_ip 37.129.237.201 123942 port 198 123942 unique_id port 123942 remote_ip 10.8.0.170 123944 username asma2026 123944 mac 123944 bytes_out 0 123944 bytes_in 0 123944 station_ip 37.129.237.201 123944 port 102 123944 unique_id port 123944 remote_ip 10.8.1.122 123954 username barzegar 123954 mac 123954 bytes_out 0 123954 bytes_in 0 123954 station_ip 5.120.80.251 123954 port 102 123954 unique_id port 123954 remote_ip 10.8.1.174 123956 username zare 123956 mac 123956 bytes_out 0 123956 bytes_in 0 123956 station_ip 94.183.214.14 123956 port 198 123956 unique_id port 123956 remote_ip 10.8.0.18 123962 username zare 123962 mac 123962 bytes_out 0 123962 bytes_in 0 123962 station_ip 94.183.214.14 123962 port 198 123962 unique_id port 123962 remote_ip 10.8.0.18 123965 username rajaei 123965 mac 123965 bytes_out 0 123965 bytes_in 0 123965 station_ip 5.134.166.253 123965 port 196 123965 unique_id port 123968 username zare 123968 mac 123968 bytes_out 0 123968 bytes_in 0 123968 station_ip 94.183.214.14 123968 port 196 123968 unique_id port 123968 remote_ip 10.8.0.18 123970 username mohsenaskari 123970 mac 123970 bytes_out 0 123970 bytes_in 0 123970 station_ip 46.225.232.78 123970 port 199 123970 unique_id port 123970 remote_ip 10.8.0.246 123972 username zare 123972 kill_reason Maximum check online fails reached 123972 mac 123972 bytes_out 0 123972 bytes_in 0 123972 station_ip 94.183.214.14 123972 port 102 123972 unique_id port 123974 username forozande 123974 mac 123974 bytes_out 0 123974 bytes_in 0 123974 station_ip 37.129.202.222 123974 port 194 123974 unique_id port 123974 remote_ip 10.8.0.74 123983 username mansur 123983 kill_reason Another user logged on this global unique id 123983 mac 123983 bytes_out 0 123983 bytes_in 0 123983 station_ip 5.120.117.76 123983 port 187 123983 unique_id port 123985 username barzegar 123985 mac 123985 bytes_out 0 123985 bytes_in 0 123985 station_ip 5.120.80.251 123985 port 122 123985 unique_id port 123985 remote_ip 10.8.0.234 123995 username zare 123995 mac 123995 bytes_out 0 123995 bytes_in 0 123995 station_ip 94.183.214.14 123995 port 122 123995 unique_id port 123995 remote_ip 10.8.0.18 123999 username alihosseini1 123999 mac 123999 bytes_out 0 123999 bytes_in 0 123999 station_ip 5.120.143.24 123999 port 104 123999 unique_id port 123999 remote_ip 10.8.1.106 123941 port 196 123941 unique_id port 123945 username asma2026 123945 mac 123945 bytes_out 0 123945 bytes_in 0 123945 station_ip 37.129.237.201 123945 port 122 123945 unique_id port 123945 remote_ip 10.8.0.170 123946 username barzegar 123946 mac 123946 bytes_out 0 123946 bytes_in 0 123946 station_ip 5.120.80.251 123946 port 199 123946 unique_id port 123946 remote_ip 10.8.0.234 123948 username zare 123948 mac 123948 bytes_out 0 123948 bytes_in 0 123948 station_ip 94.183.214.14 123948 port 198 123948 unique_id port 123948 remote_ip 10.8.0.18 123949 username mosi 123949 kill_reason Another user logged on this global unique id 123949 mac 123949 bytes_out 0 123949 bytes_in 0 123949 station_ip 151.235.122.242 123949 port 186 123949 unique_id port 123949 remote_ip 10.8.0.138 123950 username zare 123950 mac 123950 bytes_out 0 123950 bytes_in 0 123950 station_ip 94.183.214.14 123950 port 198 123950 unique_id port 123950 remote_ip 10.8.0.18 123952 username zare 123952 mac 123952 bytes_out 0 123952 bytes_in 0 123952 station_ip 94.183.214.14 123952 port 198 123952 unique_id port 123952 remote_ip 10.8.0.18 123953 username barzegar 123953 mac 123953 bytes_out 0 123953 bytes_in 0 123953 station_ip 5.120.80.251 123953 port 102 123953 unique_id port 123953 remote_ip 10.8.1.174 123958 username zare 123958 mac 123958 bytes_out 0 123958 bytes_in 0 123958 station_ip 94.183.214.14 123958 port 198 123958 unique_id port 123958 remote_ip 10.8.0.18 123959 username asma2026 123959 kill_reason Another user logged on this global unique id 123959 mac 123959 bytes_out 0 123959 bytes_in 0 123959 station_ip 37.129.237.201 123959 port 122 123959 unique_id port 123959 remote_ip 10.8.0.170 123960 username malekpoir 123960 kill_reason Another user logged on this global unique id 123960 mac 123960 bytes_out 0 123960 bytes_in 0 123960 station_ip 5.120.182.240 123960 port 182 123960 unique_id port 123960 remote_ip 10.8.0.58 123966 username zare 123966 mac 123966 bytes_out 0 123966 bytes_in 0 123966 station_ip 94.183.214.14 123966 port 198 123966 unique_id port 123966 remote_ip 10.8.0.18 123969 username arash 123969 mac 123969 bytes_out 0 123969 bytes_in 0 123969 station_ip 37.27.31.235 123969 port 196 123969 unique_id port 123969 remote_ip 10.8.0.114 123975 username zare 123975 mac 123975 bytes_out 0 123975 bytes_in 0 123975 station_ip 94.183.214.14 123975 port 196 123975 unique_id port 123975 remote_ip 10.8.0.18 123977 username hamidsalari 123977 kill_reason Another user logged on this global unique id 123977 mac 123977 bytes_out 0 123977 bytes_in 0 123977 station_ip 5.119.72.239 123977 port 135 123977 unique_id port 123977 remote_ip 10.8.0.230 123979 username forozande 123979 mac 123979 bytes_out 0 123979 bytes_in 0 123979 station_ip 113.203.46.230 123979 port 194 123979 unique_id port 123979 remote_ip 10.8.0.74 123981 username mohammadjavad 123981 mac 123981 bytes_out 0 123981 bytes_in 0 123981 station_ip 37.129.23.0 123981 port 122 123981 unique_id port 123981 remote_ip 10.8.0.142 123982 username zare 123982 mac 123982 bytes_out 0 123982 bytes_in 0 123982 station_ip 94.183.214.14 123982 port 196 123982 unique_id port 123982 remote_ip 10.8.0.18 123988 username alipour 123988 mac 123988 bytes_out 0 123988 bytes_in 0 123988 station_ip 83.122.175.49 123988 port 188 123988 unique_id port 123988 remote_ip 10.8.0.102 123998 username zare 123998 mac 123998 bytes_out 0 123998 bytes_in 0 123980 kill_reason Another user logged on this global unique id 123980 mac 123980 bytes_out 0 123980 bytes_in 0 123980 station_ip 5.120.117.76 123980 port 187 123980 unique_id port 123984 username barzegar 123984 mac 123984 bytes_out 0 123984 bytes_in 0 123984 station_ip 5.120.80.251 123984 port 122 123984 unique_id port 123984 remote_ip 10.8.0.234 123986 username zare 123986 mac 123986 bytes_out 0 123986 bytes_in 0 123986 station_ip 94.183.214.14 123986 port 194 123986 unique_id port 123986 remote_ip 10.8.0.18 123987 username zare 123987 mac 123987 bytes_out 0 123987 bytes_in 0 123987 station_ip 94.183.214.14 123987 port 122 123987 unique_id port 123987 remote_ip 10.8.0.18 123989 username zare 123989 mac 123989 bytes_out 0 123989 bytes_in 0 123989 station_ip 94.183.214.14 123989 port 122 123989 unique_id port 123989 remote_ip 10.8.0.18 123990 username mohsenaskari 123990 mac 123990 bytes_out 0 123990 bytes_in 0 123990 station_ip 46.225.232.78 123990 port 198 123990 unique_id port 123990 remote_ip 10.8.0.246 123991 username mansur 123991 mac 123991 bytes_out 0 123991 bytes_in 0 123991 station_ip 5.120.117.76 123991 port 187 123991 unique_id port 123992 username zare 123992 mac 123992 bytes_out 0 123992 bytes_in 0 123992 station_ip 94.183.214.14 123992 port 122 123992 unique_id port 123992 remote_ip 10.8.0.18 123993 username zare 123993 mac 123993 bytes_out 0 123993 bytes_in 0 123993 station_ip 94.183.214.14 123993 port 122 123993 unique_id port 123993 remote_ip 10.8.0.18 123994 username amir 123994 kill_reason Another user logged on this global unique id 123994 mac 123994 bytes_out 0 123994 bytes_in 0 123994 station_ip 46.225.210.218 123994 port 99 123994 unique_id port 123996 username alihosseini1 123996 mac 123996 bytes_out 209606 123996 bytes_in 494031 123996 station_ip 5.120.143.24 123996 port 194 123996 unique_id port 123996 remote_ip 10.8.0.166 123997 username zare 123997 mac 123997 bytes_out 0 123997 bytes_in 0 123997 station_ip 94.183.214.14 123997 port 122 123997 unique_id port 123997 remote_ip 10.8.0.18 124002 username aminvpn 124002 mac 124002 bytes_out 2016873 124002 bytes_in 26302984 124002 station_ip 5.120.52.169 124002 port 197 124002 unique_id port 124002 remote_ip 10.8.0.14 124003 username zare 124003 mac 124003 bytes_out 0 124003 bytes_in 0 124003 station_ip 94.183.214.14 124003 port 188 124003 unique_id port 124003 remote_ip 10.8.0.18 124006 username mosi 124006 kill_reason Another user logged on this global unique id 124006 mac 124006 bytes_out 0 124006 bytes_in 0 124006 station_ip 151.235.122.242 124006 port 186 124006 unique_id port 124007 username alihosseini1 124007 mac 124007 bytes_out 0 124007 bytes_in 0 124007 station_ip 5.120.143.24 124007 port 187 124007 unique_id port 124007 remote_ip 10.8.0.166 124010 username zare 124010 mac 124010 bytes_out 0 124010 bytes_in 0 124010 station_ip 94.183.214.14 124010 port 187 124010 unique_id port 124010 remote_ip 10.8.0.18 124015 username zare 124015 mac 124015 bytes_out 0 124015 bytes_in 0 124015 station_ip 94.183.214.14 124015 port 188 124015 unique_id port 124015 remote_ip 10.8.0.18 124016 username zare 124016 kill_reason Maximum check online fails reached 124016 mac 124016 bytes_out 0 124016 bytes_in 0 124016 station_ip 94.183.214.14 124016 port 104 124016 unique_id port 124019 username mosi 124019 kill_reason Another user logged on this global unique id 124019 mac 124019 bytes_out 0 123998 station_ip 94.183.214.14 123998 port 122 123998 unique_id port 123998 remote_ip 10.8.0.18 124001 username zare 124001 mac 124001 bytes_out 0 124001 bytes_in 0 124001 station_ip 94.183.214.14 124001 port 122 124001 unique_id port 124001 remote_ip 10.8.0.18 124005 username zare 124005 mac 124005 bytes_out 0 124005 bytes_in 0 124005 station_ip 94.183.214.14 124005 port 188 124005 unique_id port 124005 remote_ip 10.8.0.18 124009 username zare 124009 mac 124009 bytes_out 0 124009 bytes_in 0 124009 station_ip 94.183.214.14 124009 port 187 124009 unique_id port 124009 remote_ip 10.8.0.18 124011 username forozande 124011 mac 124011 bytes_out 0 124011 bytes_in 0 124011 station_ip 113.203.59.49 124011 port 188 124011 unique_id port 124011 remote_ip 10.8.0.74 124013 username zare 124013 mac 124013 bytes_out 0 124013 bytes_in 0 124013 station_ip 94.183.214.14 124013 port 104 124013 unique_id port 124013 remote_ip 10.8.1.58 124014 username alihosseini1 124014 mac 124014 bytes_out 0 124014 bytes_in 0 124014 station_ip 5.120.143.24 124014 port 187 124014 unique_id port 124014 remote_ip 10.8.0.166 124017 username zare 124017 mac 124017 bytes_out 0 124017 bytes_in 0 124017 station_ip 94.183.214.14 124017 port 187 124017 unique_id port 124017 remote_ip 10.8.0.18 124018 username aminvpn 124018 mac 124018 bytes_out 0 124018 bytes_in 0 124018 station_ip 5.120.52.169 124018 port 122 124018 unique_id port 124018 remote_ip 10.8.0.14 124021 username reza2742 124021 unique_id port 124021 terminate_cause User-Request 124021 bytes_out 99152 124021 bytes_in 735640 124021 station_ip 83.122.145.46 124021 port 15729868 124021 nas_port_type Virtual 124021 remote_ip 5.5.5.254 124022 username aminvpn 124022 mac 124022 bytes_out 16486 124022 bytes_in 17293 124022 station_ip 5.120.52.169 124022 port 187 124022 unique_id port 124022 remote_ip 10.8.0.14 124024 username aminvpn 124024 mac 124024 bytes_out 0 124024 bytes_in 0 124024 station_ip 5.120.52.169 124024 port 105 124024 unique_id port 124024 remote_ip 10.8.1.6 124026 username aminvpn 124026 mac 124026 bytes_out 0 124026 bytes_in 0 124026 station_ip 5.120.52.169 124026 port 105 124026 unique_id port 124026 remote_ip 10.8.1.6 124029 username aminvpn 124029 mac 124029 bytes_out 0 124029 bytes_in 0 124029 station_ip 83.122.6.65 124029 port 101 124029 unique_id port 124029 remote_ip 10.8.1.6 124030 username aminvpn 124030 mac 124030 bytes_out 0 124030 bytes_in 0 124030 station_ip 5.120.52.169 124030 port 105 124030 unique_id port 124030 remote_ip 10.8.1.6 124033 username aminvpn 124033 mac 124033 bytes_out 0 124033 bytes_in 0 124033 station_ip 5.120.52.169 124033 port 105 124033 unique_id port 124033 remote_ip 10.8.1.6 124042 username mehdizare 124042 mac 124042 bytes_out 9071 124042 bytes_in 12410 124042 station_ip 5.120.59.106 124042 port 101 124042 unique_id port 124042 remote_ip 10.8.1.42 124046 username barzegar 124046 mac 124046 bytes_out 0 124046 bytes_in 0 124046 station_ip 5.120.153.89 124046 port 180 124046 unique_id port 124046 remote_ip 10.8.0.234 124053 username alihosseini1 124053 mac 124053 bytes_out 0 124053 bytes_in 0 124053 station_ip 5.120.186.243 124053 port 180 124053 unique_id port 124053 remote_ip 10.8.0.166 124054 username alihosseini1 124054 mac 124054 bytes_out 0 124054 bytes_in 0 124054 station_ip 5.120.186.243 124054 port 180 124054 unique_id port 124000 username mohsenaskari 124000 mac 124000 bytes_out 0 124000 bytes_in 0 124000 station_ip 46.225.213.226 124000 port 187 124000 unique_id port 124000 remote_ip 10.8.0.246 124004 username zare 124004 mac 124004 bytes_out 0 124004 bytes_in 0 124004 station_ip 94.183.214.14 124004 port 188 124004 unique_id port 124004 remote_ip 10.8.0.18 124008 username arash 124008 mac 124008 bytes_out 0 124008 bytes_in 0 124008 station_ip 37.27.31.235 124008 port 199 124008 unique_id port 124008 remote_ip 10.8.0.114 124012 username zare 124012 mac 124012 bytes_out 0 124012 bytes_in 0 124012 station_ip 94.183.214.14 124012 port 104 124012 unique_id port 124012 remote_ip 10.8.1.58 124020 username zare 124020 mac 124020 bytes_out 0 124020 bytes_in 0 124020 station_ip 94.183.214.14 124020 port 122 124020 unique_id port 124020 remote_ip 10.8.0.18 124023 username aminvpn 124023 mac 124023 bytes_out 1043077 124023 bytes_in 7772496 124023 station_ip 83.122.6.65 124023 port 101 124023 unique_id port 124023 remote_ip 10.8.1.6 124025 username aminvpn 124025 mac 124025 bytes_out 0 124025 bytes_in 0 124025 station_ip 83.122.6.65 124025 port 101 124025 unique_id port 124025 remote_ip 10.8.1.6 124028 username aminvpn 124028 mac 124028 bytes_out 0 124028 bytes_in 0 124028 station_ip 5.120.52.169 124028 port 105 124028 unique_id port 124028 remote_ip 10.8.1.6 124031 username zare 124031 mac 124031 bytes_out 0 124031 bytes_in 0 124031 station_ip 94.183.214.14 124031 port 122 124031 unique_id port 124031 remote_ip 10.8.0.18 124032 username aminvpn 124032 mac 124032 bytes_out 0 124032 bytes_in 0 124032 station_ip 83.122.6.65 124032 port 101 124032 unique_id port 124032 remote_ip 10.8.1.6 124035 username aminvpn 124035 mac 124035 bytes_out 87793 124035 bytes_in 131523 124035 station_ip 83.122.6.65 124035 port 101 124035 unique_id port 124035 remote_ip 10.8.1.6 124036 username aminvpn 124036 mac 124036 bytes_out 267726 124036 bytes_in 3140383 124036 station_ip 31.56.152.114 124036 port 105 124036 unique_id port 124036 remote_ip 10.8.1.6 124037 username barzegar 124037 mac 124037 bytes_out 0 124037 bytes_in 0 124037 station_ip 5.120.153.89 124037 port 188 124037 unique_id port 124037 remote_ip 10.8.0.234 124038 username mehdizare 124038 mac 124038 bytes_out 0 124038 bytes_in 0 124038 station_ip 5.120.59.106 124038 port 180 124038 unique_id port 124038 remote_ip 10.8.0.90 124040 username amir 124040 kill_reason Another user logged on this global unique id 124040 mac 124040 bytes_out 0 124040 bytes_in 0 124040 station_ip 46.225.210.218 124040 port 99 124040 unique_id port 124043 username aminvpn 124043 mac 124043 bytes_out 0 124043 bytes_in 0 124043 station_ip 5.120.52.169 124043 port 187 124043 unique_id port 124043 remote_ip 10.8.0.14 124048 username hashtadani3 124048 kill_reason Another user logged on this global unique id 124048 mac 124048 bytes_out 0 124048 bytes_in 0 124048 station_ip 113.203.62.59 124048 port 122 124048 unique_id port 124048 remote_ip 10.8.0.154 124049 username mosi 124049 kill_reason Another user logged on this global unique id 124049 mac 124049 bytes_out 0 124049 bytes_in 0 124049 station_ip 151.235.122.242 124049 port 186 124049 unique_id port 124050 username kordestani 124050 mac 124050 bytes_out 0 124050 bytes_in 0 124050 station_ip 151.235.102.222 124050 port 187 124050 unique_id port 124050 remote_ip 10.8.0.134 124051 username forozande 124019 bytes_in 0 124019 station_ip 151.235.122.242 124019 port 186 124019 unique_id port 124027 username aminvpn 124027 mac 124027 bytes_out 0 124027 bytes_in 0 124027 station_ip 83.122.6.65 124027 port 101 124027 unique_id port 124027 remote_ip 10.8.1.6 124034 username alihosseini1 124034 mac 124034 bytes_out 0 124034 bytes_in 0 124034 station_ip 5.120.186.243 124034 port 122 124034 unique_id port 124034 remote_ip 10.8.0.166 124039 username mosi 124039 kill_reason Another user logged on this global unique id 124039 mac 124039 bytes_out 0 124039 bytes_in 0 124039 station_ip 151.235.122.242 124039 port 186 124039 unique_id port 124041 username alihosseini1 124041 mac 124041 bytes_out 0 124041 bytes_in 0 124041 station_ip 5.120.186.243 124041 port 180 124041 unique_id port 124041 remote_ip 10.8.0.166 124044 username mehdizare 124044 mac 124044 bytes_out 11180 124044 bytes_in 13744 124044 station_ip 5.120.59.106 124044 port 101 124044 unique_id port 124044 remote_ip 10.8.1.42 124045 username barzegar 124045 mac 124045 bytes_out 0 124045 bytes_in 0 124045 station_ip 5.120.153.89 124045 port 180 124045 unique_id port 124045 remote_ip 10.8.0.234 124047 username barzegar 124047 mac 124047 bytes_out 0 124047 bytes_in 0 124047 station_ip 5.120.153.89 124047 port 180 124047 unique_id port 124047 remote_ip 10.8.0.234 124052 username alihosseini1 124052 mac 124052 bytes_out 0 124052 bytes_in 0 124052 station_ip 5.120.186.243 124052 port 188 124052 unique_id port 124052 remote_ip 10.8.0.166 124060 username barzegar 124060 mac 124060 bytes_out 0 124060 bytes_in 0 124060 station_ip 5.120.153.89 124060 port 180 124060 unique_id port 124060 remote_ip 10.8.0.234 124062 username forozande 124062 mac 124062 bytes_out 58332 124062 bytes_in 79686 124062 station_ip 83.123.70.41 124062 port 187 124062 unique_id port 124062 remote_ip 10.8.0.74 124066 username kordestani 124066 mac 124066 bytes_out 0 124066 bytes_in 0 124066 station_ip 37.129.229.7 124066 port 196 124066 unique_id port 124066 remote_ip 10.8.0.134 124068 username mirzaei 124068 kill_reason Another user logged on this global unique id 124068 mac 124068 bytes_out 0 124068 bytes_in 0 124068 station_ip 5.120.131.48 124068 port 85 124068 unique_id port 124072 username barzegar 124072 mac 124072 bytes_out 0 124072 bytes_in 0 124072 station_ip 5.120.153.89 124072 port 180 124072 unique_id port 124072 remote_ip 10.8.0.234 124074 username mehdizare 124074 mac 124074 bytes_out 123969 124074 bytes_in 99442 124074 station_ip 5.120.59.106 124074 port 105 124074 unique_id port 124074 remote_ip 10.8.1.42 124076 username barzegar 124076 mac 124076 bytes_out 0 124076 bytes_in 0 124076 station_ip 5.120.153.89 124076 port 180 124076 unique_id port 124076 remote_ip 10.8.0.234 124077 username hashtadani3 124077 mac 124077 bytes_out 0 124077 bytes_in 0 124077 station_ip 113.203.62.59 124077 port 122 124077 unique_id port 124079 username alihosseini1 124079 mac 124079 bytes_out 0 124079 bytes_in 0 124079 station_ip 5.120.186.243 124079 port 122 124079 unique_id port 124079 remote_ip 10.8.0.166 124080 username alihosseini1 124080 mac 124080 bytes_out 0 124080 bytes_in 0 124080 station_ip 5.120.186.243 124080 port 122 124080 unique_id port 124080 remote_ip 10.8.0.166 124095 username alihosseini1 124095 mac 124095 bytes_out 0 124095 bytes_in 0 124095 station_ip 5.120.186.243 124095 port 188 124095 unique_id port 124051 mac 124051 bytes_out 0 124051 bytes_in 0 124051 station_ip 37.129.106.112 124051 port 180 124051 unique_id port 124051 remote_ip 10.8.0.74 124055 username sabaghnezhad 124055 mac 124055 bytes_out 0 124055 bytes_in 0 124055 station_ip 83.122.221.98 124055 port 184 124055 unique_id port 124055 remote_ip 10.8.0.186 124056 username Mahin 124056 mac 124056 bytes_out 0 124056 bytes_in 0 124056 station_ip 5.120.86.181 124056 port 194 124056 unique_id port 124056 remote_ip 10.8.0.222 124058 username barzegar 124058 mac 124058 bytes_out 0 124058 bytes_in 0 124058 station_ip 5.120.153.89 124058 port 180 124058 unique_id port 124058 remote_ip 10.8.0.234 124064 username alihosseini1 124064 mac 124064 bytes_out 0 124064 bytes_in 0 124064 station_ip 5.120.186.243 124064 port 180 124064 unique_id port 124064 remote_ip 10.8.0.166 124065 username barzegar 124065 mac 124065 bytes_out 0 124065 bytes_in 0 124065 station_ip 5.120.153.89 124065 port 180 124065 unique_id port 124065 remote_ip 10.8.0.234 124067 username barzegar 124067 mac 124067 bytes_out 0 124067 bytes_in 0 124067 station_ip 5.120.153.89 124067 port 180 124067 unique_id port 124067 remote_ip 10.8.0.234 124070 username alihosseini1 124070 mac 124070 bytes_out 0 124070 bytes_in 0 124070 station_ip 5.120.186.243 124070 port 187 124070 unique_id port 124070 remote_ip 10.8.0.166 124075 username hashtadani3 124075 kill_reason Another user logged on this global unique id 124075 mac 124075 bytes_out 0 124075 bytes_in 0 124075 station_ip 113.203.62.59 124075 port 122 124075 unique_id port 124075 remote_ip 10.8.0.154 124078 username hashtadani3 124078 mac 124078 bytes_out 0 124078 bytes_in 0 124078 station_ip 113.203.62.59 124078 port 194 124078 unique_id port 124078 remote_ip 10.8.0.154 124084 username barzegar 124084 mac 124084 bytes_out 0 124084 bytes_in 0 124084 station_ip 5.120.153.89 124084 port 122 124084 unique_id port 124084 remote_ip 10.8.0.234 124085 username malekpoir 124085 kill_reason Another user logged on this global unique id 124085 mac 124085 bytes_out 0 124085 bytes_in 0 124085 station_ip 5.120.182.240 124085 port 182 124085 unique_id port 124087 username alihosseini1 124087 mac 124087 bytes_out 0 124087 bytes_in 0 124087 station_ip 5.120.186.243 124087 port 105 124087 unique_id port 124087 remote_ip 10.8.1.106 124088 username mehdizare 124088 mac 124088 bytes_out 16870 124088 bytes_in 27319 124088 station_ip 5.120.59.106 124088 port 99 124088 unique_id port 124088 remote_ip 10.8.1.42 124090 username mehdizare 124090 mac 124090 bytes_out 0 124090 bytes_in 0 124090 station_ip 5.120.59.106 124090 port 105 124090 unique_id port 124090 remote_ip 10.8.1.42 124091 username forozande 124091 mac 124091 bytes_out 0 124091 bytes_in 0 124091 station_ip 83.123.70.41 124091 port 188 124091 unique_id port 124091 remote_ip 10.8.0.74 124097 username mehdizare 124097 mac 124097 bytes_out 0 124097 bytes_in 0 124097 station_ip 5.120.59.106 124097 port 122 124097 unique_id port 124097 remote_ip 10.8.0.90 124099 username alihosseini1 124099 mac 124099 bytes_out 0 124099 bytes_in 0 124099 station_ip 5.120.186.243 124099 port 187 124099 unique_id port 124099 remote_ip 10.8.0.166 124101 username barzegar 124101 mac 124101 bytes_out 0 124101 bytes_in 0 124101 station_ip 5.120.153.89 124101 port 99 124101 unique_id port 124101 remote_ip 10.8.1.174 124109 username hashtadani3 124109 mac 124054 remote_ip 10.8.0.166 124057 username alihosseini1 124057 mac 124057 bytes_out 0 124057 bytes_in 0 124057 station_ip 5.120.186.243 124057 port 180 124057 unique_id port 124057 remote_ip 10.8.0.166 124059 username mosi 124059 kill_reason Another user logged on this global unique id 124059 mac 124059 bytes_out 0 124059 bytes_in 0 124059 station_ip 151.235.122.242 124059 port 186 124059 unique_id port 124061 username hashtadani3 124061 mac 124061 bytes_out 0 124061 bytes_in 0 124061 station_ip 113.203.62.59 124061 port 122 124061 unique_id port 124063 username alihosseini1 124063 mac 124063 bytes_out 0 124063 bytes_in 0 124063 station_ip 5.120.186.243 124063 port 180 124063 unique_id port 124063 remote_ip 10.8.0.166 124069 username barzegar 124069 mac 124069 bytes_out 0 124069 bytes_in 0 124069 station_ip 5.120.153.89 124069 port 180 124069 unique_id port 124069 remote_ip 10.8.0.234 124071 username amir 124071 mac 124071 bytes_out 0 124071 bytes_in 0 124071 station_ip 46.225.210.218 124071 port 99 124071 unique_id port 124073 username ahmadipour 124073 unique_id port 124073 terminate_cause Lost-Carrier 124073 bytes_out 92658 124073 bytes_in 1358481 124073 station_ip 37.129.174.180 124073 port 15729870 124073 nas_port_type Virtual 124073 remote_ip 5.5.5.253 124081 username barzegar 124081 mac 124081 bytes_out 0 124081 bytes_in 0 124081 station_ip 5.120.153.89 124081 port 180 124081 unique_id port 124081 remote_ip 10.8.0.234 124082 username hashtadani3 124082 mac 124082 bytes_out 0 124082 bytes_in 0 124082 station_ip 113.203.62.59 124082 port 180 124082 unique_id port 124082 remote_ip 10.8.0.154 124083 username hashtadani3 124083 mac 124083 bytes_out 0 124083 bytes_in 0 124083 station_ip 113.203.62.59 124083 port 180 124083 unique_id port 124083 remote_ip 10.8.0.154 124086 username alihosseini1 124086 mac 124086 bytes_out 0 124086 bytes_in 0 124086 station_ip 5.120.186.243 124086 port 122 124086 unique_id port 124086 remote_ip 10.8.0.166 124089 username alihosseini1 124089 mac 124089 bytes_out 0 124089 bytes_in 0 124089 station_ip 5.120.186.243 124089 port 122 124089 unique_id port 124089 remote_ip 10.8.0.166 124092 username mansur 124092 kill_reason Another user logged on this global unique id 124092 mac 124092 bytes_out 0 124092 bytes_in 0 124092 station_ip 5.119.199.104 124092 port 187 124092 unique_id port 124092 remote_ip 10.8.0.210 124093 username alihosseini1 124093 mac 124093 bytes_out 0 124093 bytes_in 0 124093 station_ip 5.120.186.243 124093 port 188 124093 unique_id port 124093 remote_ip 10.8.0.166 124094 username alihosseini1 124094 mac 124094 bytes_out 0 124094 bytes_in 0 124094 station_ip 5.120.186.243 124094 port 99 124094 unique_id port 124094 remote_ip 10.8.1.106 124098 username barzegar 124098 mac 124098 bytes_out 0 124098 bytes_in 0 124098 station_ip 5.120.153.89 124098 port 99 124098 unique_id port 124098 remote_ip 10.8.1.174 124100 username mosi 124100 kill_reason Another user logged on this global unique id 124100 mac 124100 bytes_out 0 124100 bytes_in 0 124100 station_ip 151.235.122.242 124100 port 186 124100 unique_id port 124105 username sabaghnezhad 124105 mac 124105 bytes_out 249863 124105 bytes_in 331453 124105 station_ip 83.122.221.98 124105 port 101 124105 unique_id port 124105 remote_ip 10.8.1.130 124108 username alihosseini1 124108 mac 124108 bytes_out 0 124108 bytes_in 0 124108 station_ip 5.120.186.243 124108 port 187 124108 unique_id port 124095 remote_ip 10.8.0.166 124096 username mansur 124096 mac 124096 bytes_out 0 124096 bytes_in 0 124096 station_ip 5.119.199.104 124096 port 187 124096 unique_id port 124102 username hashtadani3 124102 mac 124102 bytes_out 0 124102 bytes_in 0 124102 station_ip 113.203.62.59 124102 port 180 124102 unique_id port 124102 remote_ip 10.8.0.154 124103 username mehdizare 124103 mac 124103 bytes_out 0 124103 bytes_in 0 124103 station_ip 5.120.59.106 124103 port 122 124103 unique_id port 124103 remote_ip 10.8.0.90 124104 username mosi 124104 mac 124104 bytes_out 0 124104 bytes_in 0 124104 station_ip 151.235.122.242 124104 port 186 124104 unique_id port 124106 username mehdizare 124106 mac 124106 bytes_out 0 124106 bytes_in 0 124106 station_ip 5.120.59.106 124106 port 187 124106 unique_id port 124106 remote_ip 10.8.0.90 124107 username mehdizare 124107 mac 124107 bytes_out 11088 124107 bytes_in 16783 124107 station_ip 5.120.59.106 124107 port 99 124107 unique_id port 124107 remote_ip 10.8.1.42 124112 username hashtadani3 124112 mac 124112 bytes_out 0 124112 bytes_in 0 124112 station_ip 113.203.69.79 124112 port 194 124112 unique_id port 124112 remote_ip 10.8.0.154 124113 username forozande 124113 mac 124113 bytes_out 0 124113 bytes_in 0 124113 station_ip 37.129.4.91 124113 port 180 124113 unique_id port 124113 remote_ip 10.8.0.74 124119 username barzegar 124119 mac 124119 bytes_out 0 124119 bytes_in 0 124119 station_ip 5.120.153.89 124119 port 182 124119 unique_id port 124119 remote_ip 10.8.0.234 124123 username hoorieh 124123 kill_reason Another user logged on this global unique id 124123 mac 124123 bytes_out 0 124123 bytes_in 0 124123 station_ip 5.120.74.4 124123 port 122 124123 unique_id port 124123 remote_ip 10.8.0.38 124127 username hoorieh 124127 kill_reason Another user logged on this global unique id 124127 mac 124127 bytes_out 0 124127 bytes_in 0 124127 station_ip 5.120.74.4 124127 port 122 124127 unique_id port 124129 username barzegar 124129 mac 124129 bytes_out 0 124129 bytes_in 0 124129 station_ip 5.120.153.89 124129 port 182 124129 unique_id port 124129 remote_ip 10.8.0.234 124131 username hashtadani3 124131 mac 124131 bytes_out 207998 124131 bytes_in 3151217 124131 station_ip 113.203.36.95 124131 port 187 124131 unique_id port 124131 remote_ip 10.8.0.154 124136 username hashtadani3 124136 kill_reason Maximum check online fails reached 124136 mac 124136 bytes_out 0 124136 bytes_in 0 124136 station_ip 113.203.36.95 124136 port 180 124136 unique_id port 124138 username barzegar 124138 mac 124138 bytes_out 0 124138 bytes_in 0 124138 station_ip 5.120.153.89 124138 port 101 124138 unique_id port 124138 remote_ip 10.8.1.174 124141 username barzegar 124141 mac 124141 bytes_out 0 124141 bytes_in 0 124141 station_ip 5.120.153.89 124141 port 101 124141 unique_id port 124141 remote_ip 10.8.1.174 124146 username barzegar 124146 mac 124146 bytes_out 0 124146 bytes_in 0 124146 station_ip 5.120.153.89 124146 port 101 124146 unique_id port 124146 remote_ip 10.8.1.174 124147 username mehdizare 124147 mac 124147 bytes_out 0 124147 bytes_in 0 124147 station_ip 5.120.59.106 124147 port 186 124147 unique_id port 124147 remote_ip 10.8.0.90 124149 username kordestani 124149 mac 124149 bytes_out 0 124149 bytes_in 0 124149 station_ip 151.235.102.222 124149 port 194 124149 unique_id port 124149 remote_ip 10.8.0.134 124150 username mehdizare 124150 mac 124108 remote_ip 10.8.0.166 124111 username hashtadani3 124111 mac 124111 bytes_out 0 124111 bytes_in 0 124111 station_ip 113.203.69.79 124111 port 194 124111 unique_id port 124111 remote_ip 10.8.0.154 124114 username malekpoir 124114 mac 124114 bytes_out 0 124114 bytes_in 0 124114 station_ip 5.120.182.240 124114 port 182 124114 unique_id port 124118 username alihosseini1 124118 mac 124118 bytes_out 133095 124118 bytes_in 416364 124118 station_ip 5.120.186.243 124118 port 188 124118 unique_id port 124118 remote_ip 10.8.0.166 124120 username hashtadani3 124120 kill_reason Maximum check online fails reached 124120 mac 124120 bytes_out 0 124120 bytes_in 0 124120 station_ip 113.203.69.79 124120 port 99 124120 unique_id port 124121 username mehdizare 124121 mac 124121 bytes_out 0 124121 bytes_in 0 124121 station_ip 5.120.59.106 124121 port 187 124121 unique_id port 124121 remote_ip 10.8.0.90 124126 username barzegar 124126 mac 124126 bytes_out 0 124126 bytes_in 0 124126 station_ip 5.120.153.89 124126 port 182 124126 unique_id port 124126 remote_ip 10.8.0.234 124128 username hashtadani3 124128 mac 124128 bytes_out 0 124128 bytes_in 0 124128 station_ip 5.202.3.65 124128 port 180 124128 unique_id port 124128 remote_ip 10.8.0.154 124134 username hoorieh 124134 mac 124134 bytes_out 0 124134 bytes_in 0 124134 station_ip 5.120.74.4 124134 port 122 124134 unique_id port 124142 username mahdixz 124142 unique_id port 124142 terminate_cause User-Request 124142 bytes_out 1283895 124142 bytes_in 12433355 124142 station_ip 151.235.126.11 124142 port 15729871 124142 nas_port_type Virtual 124142 remote_ip 5.5.5.253 124148 username Mahin 124148 mac 124148 bytes_out 4539984 124148 bytes_in 45272555 124148 station_ip 5.120.86.181 124148 port 184 124148 unique_id port 124148 remote_ip 10.8.0.222 124151 username morteza 124151 mac 124151 bytes_out 929126 124151 bytes_in 16960701 124151 station_ip 37.129.24.199 124151 port 188 124151 unique_id port 124151 remote_ip 10.8.0.46 124152 username morteza 124152 mac 124152 bytes_out 3497 124152 bytes_in 5122 124152 station_ip 37.129.24.199 124152 port 186 124152 unique_id port 124152 remote_ip 10.8.0.46 124153 username aminvpn 124153 unique_id port 124153 terminate_cause User-Request 124153 bytes_out 3628775 124153 bytes_in 50024579 124153 station_ip 5.119.50.212 124153 port 15729869 124153 nas_port_type Virtual 124153 remote_ip 5.5.5.255 124157 username amin.saeedi 124157 unique_id port 124157 terminate_cause User-Request 124157 bytes_out 5600 124157 bytes_in 21215 124157 station_ip 5.119.143.237 124157 port 15729873 124157 nas_port_type Virtual 124157 remote_ip 5.5.5.254 124158 username barzegar 124158 mac 124158 bytes_out 0 124158 bytes_in 0 124158 station_ip 5.120.153.89 124158 port 105 124158 unique_id port 124158 remote_ip 10.8.1.174 124162 username morteza 124162 mac 124162 bytes_out 0 124162 bytes_in 0 124162 station_ip 37.129.24.199 124162 port 101 124162 unique_id port 124162 remote_ip 10.8.1.62 124166 username morteza 124166 mac 124166 bytes_out 0 124166 bytes_in 0 124166 station_ip 37.129.24.199 124166 port 101 124166 unique_id port 124166 remote_ip 10.8.1.62 124173 username mehdizare 124173 mac 124173 bytes_out 0 124173 bytes_in 0 124173 station_ip 5.120.59.106 124173 port 101 124173 unique_id port 124173 remote_ip 10.8.1.42 124177 username forozande 124177 mac 124177 bytes_out 120513 124177 bytes_in 131177 124177 station_ip 37.129.9.211 124177 port 184 124109 bytes_out 0 124109 bytes_in 0 124109 station_ip 113.203.69.79 124109 port 99 124109 unique_id port 124109 remote_ip 10.8.1.94 124110 username hashtadani3 124110 mac 124110 bytes_out 0 124110 bytes_in 0 124110 station_ip 113.203.69.79 124110 port 194 124110 unique_id port 124110 remote_ip 10.8.0.154 124115 username mohammadjavad 124115 mac 124115 bytes_out 0 124115 bytes_in 0 124115 station_ip 83.122.151.6 124115 port 122 124115 unique_id port 124115 remote_ip 10.8.0.142 124116 username barzegar 124116 mac 124116 bytes_out 0 124116 bytes_in 0 124116 station_ip 5.120.153.89 124116 port 186 124116 unique_id port 124116 remote_ip 10.8.0.234 124117 username hashtadani3 124117 mac 124117 bytes_out 0 124117 bytes_in 0 124117 station_ip 113.203.69.79 124117 port 194 124117 unique_id port 124117 remote_ip 10.8.0.154 124122 username mehdizare 124122 mac 124122 bytes_out 0 124122 bytes_in 0 124122 station_ip 5.120.59.106 124122 port 182 124122 unique_id port 124122 remote_ip 10.8.0.90 124124 username barzegar 124124 mac 124124 bytes_out 3581 124124 bytes_in 6033 124124 station_ip 5.120.153.89 124124 port 101 124124 unique_id port 124124 remote_ip 10.8.1.174 124125 username barzegar 124125 mac 124125 bytes_out 0 124125 bytes_in 0 124125 station_ip 5.120.153.89 124125 port 101 124125 unique_id port 124125 remote_ip 10.8.1.174 124130 username hamidsalari1 124130 mac 124130 bytes_out 0 124130 bytes_in 0 124130 station_ip 37.129.3.122 124130 port 180 124130 unique_id port 124130 remote_ip 10.8.0.226 124132 username hashtadani3 124132 kill_reason Maximum number of concurrent logins reached 124132 mac 124132 bytes_out 0 124132 bytes_in 0 124132 station_ip 113.203.36.95 124132 port 187 124132 unique_id port 124133 username hashtadani3 124133 kill_reason Maximum number of concurrent logins reached 124133 mac 124133 bytes_out 0 124133 bytes_in 0 124133 station_ip 113.203.36.95 124133 port 101 124133 unique_id port 124135 username hashtadani3 124135 kill_reason Maximum check online fails reached 124135 mac 124135 bytes_out 0 124135 bytes_in 0 124135 station_ip 113.203.36.95 124135 port 182 124135 unique_id port 124137 username ahmadipour 124137 kill_reason Maximum check online fails reached 124137 unique_id port 124137 bytes_out 102090 124137 bytes_in 1889548 124137 station_ip 37.129.206.64 124137 port 15729872 124137 nas_port_type Virtual 124137 remote_ip 5.5.5.250 124139 username barzegar 124139 mac 124139 bytes_out 0 124139 bytes_in 0 124139 station_ip 5.120.153.89 124139 port 101 124139 unique_id port 124139 remote_ip 10.8.1.174 124140 username barzegar 124140 mac 124140 bytes_out 0 124140 bytes_in 0 124140 station_ip 5.120.153.89 124140 port 101 124140 unique_id port 124140 remote_ip 10.8.1.174 124143 username morteza 124143 mac 124143 bytes_out 0 124143 bytes_in 0 124143 station_ip 37.129.24.199 124143 port 187 124143 unique_id port 124143 remote_ip 10.8.0.46 124144 username morteza 124144 mac 124144 bytes_out 81959 124144 bytes_in 1524960 124144 station_ip 37.129.24.199 124144 port 188 124144 unique_id port 124144 remote_ip 10.8.0.46 124145 username barzegar 124145 mac 124145 bytes_out 39383 124145 bytes_in 75128 124145 station_ip 5.120.153.89 124145 port 101 124145 unique_id port 124145 remote_ip 10.8.1.174 124156 username barzegar 124156 mac 124156 bytes_out 0 124156 bytes_in 0 124156 station_ip 5.120.153.89 124156 port 105 124156 unique_id port 124156 remote_ip 10.8.1.174 124159 username mohammadjavad 124150 bytes_out 0 124150 bytes_in 0 124150 station_ip 5.120.59.106 124150 port 186 124150 unique_id port 124150 remote_ip 10.8.0.90 124154 username amir 124154 mac 124154 bytes_out 0 124154 bytes_in 0 124154 station_ip 46.225.210.218 124154 port 105 124154 unique_id port 124154 remote_ip 10.8.1.22 124155 username barzegar 124155 mac 124155 bytes_out 0 124155 bytes_in 0 124155 station_ip 5.120.153.89 124155 port 105 124155 unique_id port 124155 remote_ip 10.8.1.174 124160 username farhad1 124160 kill_reason Another user logged on this global unique id 124160 mac 124160 bytes_out 0 124160 bytes_in 0 124160 station_ip 5.119.55.250 124160 port 122 124160 unique_id port 124160 remote_ip 10.8.0.26 124164 username barzegar 124164 mac 124164 bytes_out 0 124164 bytes_in 0 124164 station_ip 5.120.153.89 124164 port 194 124164 unique_id port 124164 remote_ip 10.8.0.234 124167 username morteza 124167 mac 124167 bytes_out 0 124167 bytes_in 0 124167 station_ip 37.129.24.199 124167 port 101 124167 unique_id port 124167 remote_ip 10.8.1.62 124169 username forozande 124169 mac 124169 bytes_out 411671 124169 bytes_in 1393619 124169 station_ip 37.129.95.164 124169 port 186 124169 unique_id port 124169 remote_ip 10.8.0.74 124171 username morteza 124171 mac 124171 bytes_out 0 124171 bytes_in 0 124171 station_ip 37.129.24.199 124171 port 105 124171 unique_id port 124171 remote_ip 10.8.1.62 124174 username mirzaei 124174 mac 124174 bytes_out 0 124174 bytes_in 0 124174 station_ip 5.120.131.48 124174 port 85 124174 unique_id port 124176 username hashtadani3 124176 mac 124176 bytes_out 0 124176 bytes_in 0 124176 station_ip 113.203.36.95 124176 port 194 124176 unique_id port 124176 remote_ip 10.8.0.154 124178 username barzegar 124178 mac 124178 bytes_out 0 124178 bytes_in 0 124178 station_ip 5.120.153.89 124178 port 105 124178 unique_id port 124178 remote_ip 10.8.1.174 124181 username barzegar 124181 mac 124181 bytes_out 0 124181 bytes_in 0 124181 station_ip 5.120.153.89 124181 port 105 124181 unique_id port 124181 remote_ip 10.8.1.174 124182 username hashtadani3 124182 mac 124182 bytes_out 6184 124182 bytes_in 12638 124182 station_ip 113.203.36.95 124182 port 122 124182 unique_id port 124182 remote_ip 10.8.0.154 124191 username barzegar 124191 mac 124191 bytes_out 0 124191 bytes_in 0 124191 station_ip 5.120.153.89 124191 port 105 124191 unique_id port 124191 remote_ip 10.8.1.174 124194 username hashtadani3 124194 kill_reason Maximum number of concurrent logins reached 124194 mac 124194 bytes_out 0 124194 bytes_in 0 124194 station_ip 113.203.36.95 124194 port 106 124194 unique_id port 124195 username morteza 124195 mac 124195 bytes_out 0 124195 bytes_in 0 124195 station_ip 37.129.16.136 124195 port 106 124195 unique_id port 124195 remote_ip 10.8.1.62 124197 username mosi 124197 mac 124197 bytes_out 0 124197 bytes_in 0 124197 station_ip 89.47.140.1 124197 port 188 124197 unique_id port 124200 username barzegar 124200 mac 124200 bytes_out 0 124200 bytes_in 0 124200 station_ip 5.120.153.89 124200 port 105 124200 unique_id port 124200 remote_ip 10.8.1.174 124201 username Mahin 124201 mac 124201 bytes_out 0 124201 bytes_in 0 124201 station_ip 5.120.86.181 124201 port 188 124201 unique_id port 124201 remote_ip 10.8.0.222 124202 username zare 124202 kill_reason Another user logged on this global unique id 124202 mac 124202 bytes_out 0 124202 bytes_in 0 124159 mac 124159 bytes_out 0 124159 bytes_in 0 124159 station_ip 83.122.217.20 124159 port 187 124159 unique_id port 124159 remote_ip 10.8.0.142 124161 username amin.saeedi 124161 unique_id port 124161 terminate_cause User-Request 124161 bytes_out 273021 124161 bytes_in 3743892 124161 station_ip 5.119.143.237 124161 port 15729875 124161 nas_port_type Virtual 124161 remote_ip 5.5.5.255 124163 username barzegar 124163 mac 124163 bytes_out 0 124163 bytes_in 0 124163 station_ip 5.120.153.89 124163 port 187 124163 unique_id port 124163 remote_ip 10.8.0.234 124165 username barzegar 124165 mac 124165 bytes_out 0 124165 bytes_in 0 124165 station_ip 5.120.153.89 124165 port 194 124165 unique_id port 124165 remote_ip 10.8.0.234 124168 username mehdizare 124168 mac 124168 bytes_out 25198 124168 bytes_in 28946 124168 station_ip 5.120.59.106 124168 port 184 124168 unique_id port 124168 remote_ip 10.8.0.90 124170 username barzegar 124170 mac 124170 bytes_out 0 124170 bytes_in 0 124170 station_ip 5.120.153.89 124170 port 106 124170 unique_id port 124170 remote_ip 10.8.1.174 124172 username hosseine 124172 mac 124172 bytes_out 0 124172 bytes_in 0 124172 station_ip 83.123.55.63 124172 port 170 124172 unique_id port 124175 username hashtadani3 124175 mac 124175 bytes_out 0 124175 bytes_in 0 124175 station_ip 113.203.36.95 124175 port 186 124175 unique_id port 124175 remote_ip 10.8.0.154 124180 username hashtadani3 124180 kill_reason Maximum check online fails reached 124180 mac 124180 bytes_out 0 124180 bytes_in 0 124180 station_ip 113.203.36.95 124180 port 186 124180 unique_id port 124183 username barzegar 124183 mac 124183 bytes_out 0 124183 bytes_in 0 124183 station_ip 5.120.153.89 124183 port 197 124183 unique_id port 124183 remote_ip 10.8.0.234 124185 username hashtadani3 124185 mac 124185 bytes_out 0 124185 bytes_in 0 124185 station_ip 113.203.36.95 124185 port 105 124185 unique_id port 124185 remote_ip 10.8.1.94 124187 username mosi 124187 kill_reason Another user logged on this global unique id 124187 mac 124187 bytes_out 0 124187 bytes_in 0 124187 station_ip 89.47.140.1 124187 port 188 124187 unique_id port 124187 remote_ip 10.8.0.138 124190 username farhad1 124190 mac 124190 bytes_out 1227093 124190 bytes_in 2584217 124190 station_ip 5.119.218.6 124190 port 194 124190 unique_id port 124190 remote_ip 10.8.0.26 124199 username Mahin 124199 mac 124199 bytes_out 313909 124199 bytes_in 2208539 124199 station_ip 5.120.86.181 124199 port 196 124199 unique_id port 124199 remote_ip 10.8.0.222 124203 username Mahin 124203 mac 124203 bytes_out 7393 124203 bytes_in 11540 124203 station_ip 5.120.86.181 124203 port 196 124203 unique_id port 124203 remote_ip 10.8.0.222 124204 username barzegar 124204 mac 124204 bytes_out 0 124204 bytes_in 0 124204 station_ip 5.120.153.89 124204 port 105 124204 unique_id port 124204 remote_ip 10.8.1.174 124205 username Mahin 124205 mac 124205 bytes_out 19179 124205 bytes_in 27839 124205 station_ip 5.120.86.181 124205 port 197 124205 unique_id port 124205 remote_ip 10.8.0.222 124206 username Mahin 124206 mac 124206 bytes_out 15337 124206 bytes_in 28764 124206 station_ip 5.120.86.181 124206 port 196 124206 unique_id port 124206 remote_ip 10.8.0.222 124208 username mehdizare 124208 mac 124208 bytes_out 0 124208 bytes_in 0 124208 station_ip 5.120.59.106 124208 port 101 124208 unique_id port 124208 remote_ip 10.8.1.42 124215 username mehdizare 124177 unique_id port 124177 remote_ip 10.8.0.74 124179 username farhad1 124179 mac 124179 bytes_out 0 124179 bytes_in 0 124179 station_ip 5.119.55.250 124179 port 122 124179 unique_id port 124184 username barzegar 124184 mac 124184 bytes_out 0 124184 bytes_in 0 124184 station_ip 5.120.153.89 124184 port 122 124184 unique_id port 124184 remote_ip 10.8.0.234 124186 username barzegar 124186 mac 124186 bytes_out 0 124186 bytes_in 0 124186 station_ip 5.120.153.89 124186 port 122 124186 unique_id port 124186 remote_ip 10.8.0.234 124188 username forozande 124188 mac 124188 bytes_out 35116 124188 bytes_in 60634 124188 station_ip 83.122.201.206 124188 port 184 124188 unique_id port 124188 remote_ip 10.8.0.74 124189 username barzegar 124189 mac 124189 bytes_out 2968 124189 bytes_in 5277 124189 station_ip 5.120.153.89 124189 port 122 124189 unique_id port 124189 remote_ip 10.8.0.234 124192 username hashtadani3 124192 mac 124192 bytes_out 3300185 124192 bytes_in 43787183 124192 station_ip 113.203.36.95 124192 port 197 124192 unique_id port 124192 remote_ip 10.8.0.154 124193 username hashtadani3 124193 mac 124193 bytes_out 0 124193 bytes_in 0 124193 station_ip 113.203.36.95 124193 port 184 124193 unique_id port 124193 remote_ip 10.8.0.154 124196 username hashtadani3 124196 kill_reason Maximum check online fails reached 124196 mac 124196 bytes_out 0 124196 bytes_in 0 124196 station_ip 113.203.36.95 124196 port 194 124196 unique_id port 124198 username hashtadani3 124198 kill_reason Maximum check online fails reached 124198 mac 124198 bytes_out 0 124198 bytes_in 0 124198 station_ip 113.203.36.95 124198 port 184 124198 unique_id port 124207 username khalili 124207 mac 124207 bytes_out 797008 124207 bytes_in 7957941 124207 station_ip 94.241.179.213 124207 port 197 124207 unique_id port 124207 remote_ip 10.8.0.86 124209 username farhad1 124209 kill_reason Another user logged on this global unique id 124209 mac 124209 bytes_out 0 124209 bytes_in 0 124209 station_ip 5.119.218.6 124209 port 122 124209 unique_id port 124209 remote_ip 10.8.0.26 124213 username forozande 124213 mac 124213 bytes_out 549775 124213 bytes_in 3159284 124213 station_ip 83.123.61.165 124213 port 188 124213 unique_id port 124213 remote_ip 10.8.0.74 124214 username farhad1 124214 mac 124214 bytes_out 0 124214 bytes_in 0 124214 station_ip 5.119.218.6 124214 port 122 124214 unique_id port 124217 username mehdizare 124217 mac 124217 bytes_out 0 124217 bytes_in 0 124217 station_ip 5.120.59.106 124217 port 101 124217 unique_id port 124217 remote_ip 10.8.1.42 124218 username forozande 124218 mac 124218 bytes_out 91191 124218 bytes_in 93952 124218 station_ip 83.122.92.30 124218 port 188 124218 unique_id port 124218 remote_ip 10.8.0.74 124220 username barzegar 124220 mac 124220 bytes_out 0 124220 bytes_in 0 124220 station_ip 5.120.153.89 124220 port 107 124220 unique_id port 124220 remote_ip 10.8.1.174 124222 username barzegar 124222 mac 124222 bytes_out 0 124222 bytes_in 0 124222 station_ip 5.120.153.89 124222 port 107 124222 unique_id port 124222 remote_ip 10.8.1.174 124225 username mehdizare 124225 mac 124225 bytes_out 0 124225 bytes_in 0 124225 station_ip 5.120.59.106 124225 port 101 124225 unique_id port 124225 remote_ip 10.8.1.42 124226 username barzegar 124226 mac 124226 bytes_out 0 124226 bytes_in 0 124226 station_ip 5.120.153.89 124226 port 197 124226 unique_id port 124226 remote_ip 10.8.0.234 124202 station_ip 37.27.17.205 124202 port 187 124202 unique_id port 124202 remote_ip 10.8.0.18 124210 username barzegar 124210 mac 124210 bytes_out 0 124210 bytes_in 0 124210 station_ip 5.120.153.89 124210 port 105 124210 unique_id port 124210 remote_ip 10.8.1.174 124211 username alirezazadeh 124211 unique_id port 124211 terminate_cause Lost-Carrier 124211 bytes_out 942677 124211 bytes_in 2392358 124211 station_ip 31.56.113.217 124211 port 15729877 124211 nas_port_type Virtual 124211 remote_ip 5.5.5.250 124212 username mahdixz 124212 unique_id port 124212 terminate_cause Lost-Carrier 124212 bytes_out 101618 124212 bytes_in 408794 124212 station_ip 151.235.126.11 124212 port 15729878 124212 nas_port_type Virtual 124212 remote_ip 5.5.5.248 124221 username zare 124221 mac 124221 bytes_out 0 124221 bytes_in 0 124221 station_ip 37.27.17.205 124221 port 187 124221 unique_id port 124224 username barzegar 124224 mac 124224 bytes_out 0 124224 bytes_in 0 124224 station_ip 5.120.153.89 124224 port 107 124224 unique_id port 124224 remote_ip 10.8.1.174 124228 username barzegar 124228 mac 124228 bytes_out 0 124228 bytes_in 0 124228 station_ip 5.120.153.89 124228 port 107 124228 unique_id port 124228 remote_ip 10.8.1.174 124229 username tahmasebi 124229 kill_reason Another user logged on this global unique id 124229 mac 124229 bytes_out 0 124229 bytes_in 0 124229 station_ip 5.119.127.237 124229 port 169 124229 unique_id port 124229 remote_ip 10.8.0.42 124230 username forozande 124230 mac 124230 bytes_out 99561 124230 bytes_in 210765 124230 station_ip 37.129.161.176 124230 port 188 124230 unique_id port 124230 remote_ip 10.8.0.74 124234 username mansur 124234 mac 124234 bytes_out 0 124234 bytes_in 0 124234 station_ip 5.119.255.74 124234 port 107 124234 unique_id port 124234 remote_ip 10.8.1.194 124237 username sabaghnezhad 124237 mac 124237 bytes_out 0 124237 bytes_in 0 124237 station_ip 37.129.7.54 124237 port 105 124237 unique_id port 124237 remote_ip 10.8.1.130 124238 username Mahin 124238 mac 124238 bytes_out 9790 124238 bytes_in 10479 124238 station_ip 5.120.86.181 124238 port 197 124238 unique_id port 124238 remote_ip 10.8.0.222 124243 username barzegar 124243 mac 124243 bytes_out 0 124243 bytes_in 0 124243 station_ip 5.119.61.140 124243 port 105 124243 unique_id port 124243 remote_ip 10.8.1.174 124247 username farhad1 124247 kill_reason Another user logged on this global unique id 124247 mac 124247 bytes_out 0 124247 bytes_in 0 124247 station_ip 5.119.218.6 124247 port 122 124247 unique_id port 124248 username mansur 124248 mac 124248 bytes_out 309162 124248 bytes_in 4460953 124248 station_ip 5.120.109.20 124248 port 198 124248 unique_id port 124248 remote_ip 10.8.0.210 124250 username barzegar 124250 mac 124250 bytes_out 0 124250 bytes_in 0 124250 station_ip 5.119.61.140 124250 port 105 124250 unique_id port 124250 remote_ip 10.8.1.174 124252 username forozande 124252 mac 124252 bytes_out 0 124252 bytes_in 0 124252 station_ip 83.122.53.66 124252 port 198 124252 unique_id port 124252 remote_ip 10.8.0.74 124257 username jafari 124257 mac 124257 bytes_out 0 124257 bytes_in 0 124257 station_ip 5.134.128.193 124257 port 187 124257 unique_id port 124265 username farhad1 124265 kill_reason Relative expiration date has reached 124265 mac 124265 bytes_out 0 124265 bytes_in 0 124265 station_ip 5.119.218.6 124265 port 198 124265 unique_id port 124268 username Mahin 124268 mac 124268 bytes_out 0 124268 bytes_in 0 124215 mac 124215 bytes_out 0 124215 bytes_in 0 124215 station_ip 5.120.59.106 124215 port 101 124215 unique_id port 124215 remote_ip 10.8.1.42 124216 username barzegar 124216 mac 124216 bytes_out 5604 124216 bytes_in 8339 124216 station_ip 5.120.153.89 124216 port 105 124216 unique_id port 124216 remote_ip 10.8.1.174 124219 username sedighe 124219 mac 124219 bytes_out 0 124219 bytes_in 0 124219 station_ip 83.122.216.32 124219 port 106 124219 unique_id port 124219 remote_ip 10.8.1.78 124223 username forozande 124223 mac 124223 bytes_out 15191 124223 bytes_in 9709 124223 station_ip 83.123.162.122 124223 port 188 124223 unique_id port 124223 remote_ip 10.8.0.74 124231 username jafari 124231 kill_reason Another user logged on this global unique id 124231 mac 124231 bytes_out 0 124231 bytes_in 0 124231 station_ip 5.134.128.193 124231 port 187 124231 unique_id port 124231 remote_ip 10.8.0.242 124232 username Mahin 124232 mac 124232 bytes_out 189927 124232 bytes_in 778695 124232 station_ip 5.120.86.181 124232 port 198 124232 unique_id port 124232 remote_ip 10.8.0.222 124239 username barzegar 124239 mac 124239 bytes_out 0 124239 bytes_in 0 124239 station_ip 5.119.61.140 124239 port 197 124239 unique_id port 124239 remote_ip 10.8.0.234 124242 username barzegar 124242 mac 124242 bytes_out 0 124242 bytes_in 0 124242 station_ip 5.119.61.140 124242 port 198 124242 unique_id port 124242 remote_ip 10.8.0.234 124249 username mehdizare 124249 mac 124249 bytes_out 0 124249 bytes_in 0 124249 station_ip 5.120.59.106 124249 port 101 124249 unique_id port 124249 remote_ip 10.8.1.42 124254 username jafari 124254 kill_reason Another user logged on this global unique id 124254 mac 124254 bytes_out 0 124254 bytes_in 0 124254 station_ip 5.134.128.193 124254 port 187 124254 unique_id port 124258 username barzegar 124258 mac 124258 bytes_out 0 124258 bytes_in 0 124258 station_ip 5.119.61.140 124258 port 187 124258 unique_id port 124258 remote_ip 10.8.0.234 124260 username farhad1 124260 kill_reason Another user logged on this global unique id 124260 mac 124260 bytes_out 0 124260 bytes_in 0 124260 station_ip 5.119.218.6 124260 port 122 124260 unique_id port 124262 username mehdizare 124262 mac 124262 bytes_out 0 124262 bytes_in 0 124262 station_ip 5.120.59.106 124262 port 101 124262 unique_id port 124262 remote_ip 10.8.1.42 124266 username farhad1 124266 kill_reason Relative expiration date has reached 124266 mac 124266 bytes_out 0 124266 bytes_in 0 124266 station_ip 5.119.218.6 124266 port 198 124266 unique_id port 124267 username farhad1 124267 kill_reason Relative expiration date has reached 124267 mac 124267 bytes_out 0 124267 bytes_in 0 124267 station_ip 5.119.218.6 124267 port 198 124267 unique_id port 124269 username forozande 124269 mac 124269 bytes_out 0 124269 bytes_in 0 124269 station_ip 83.122.54.74 124269 port 187 124269 unique_id port 124269 remote_ip 10.8.0.74 124280 username farhad1 124280 kill_reason Relative expiration date has reached 124280 mac 124280 bytes_out 0 124280 bytes_in 0 124280 station_ip 5.120.180.221 124280 port 122 124280 unique_id port 124287 username arabpour 124287 unique_id port 124287 terminate_cause Lost-Carrier 124287 bytes_out 365811 124287 bytes_in 3262481 124287 station_ip 5.217.13.79 124287 port 15729882 124287 nas_port_type Virtual 124287 remote_ip 5.5.5.250 124290 username khalili 124290 mac 124290 bytes_out 0 124290 bytes_in 0 124290 station_ip 5.119.227.42 124290 port 122 124290 unique_id port 124227 username rajaei 124227 mac 124227 bytes_out 3186536 124227 bytes_in 44648116 124227 station_ip 5.72.250.62 124227 port 196 124227 unique_id port 124227 remote_ip 10.8.0.34 124233 username forozande 124233 mac 124233 bytes_out 39888 124233 bytes_in 59544 124233 station_ip 83.122.39.195 124233 port 196 124233 unique_id port 124233 remote_ip 10.8.0.74 124235 username farhad1 124235 kill_reason Another user logged on this global unique id 124235 mac 124235 bytes_out 0 124235 bytes_in 0 124235 station_ip 5.119.218.6 124235 port 122 124235 unique_id port 124235 remote_ip 10.8.0.26 124236 username mansur 124236 mac 124236 bytes_out 71001 124236 bytes_in 692632 124236 station_ip 5.119.255.74 124236 port 196 124236 unique_id port 124236 remote_ip 10.8.0.210 124240 username mehdizare 124240 mac 124240 bytes_out 0 124240 bytes_in 0 124240 station_ip 5.120.59.106 124240 port 101 124240 unique_id port 124240 remote_ip 10.8.1.42 124241 username barzegar 124241 mac 124241 bytes_out 0 124241 bytes_in 0 124241 station_ip 5.119.61.140 124241 port 197 124241 unique_id port 124241 remote_ip 10.8.0.234 124244 username mehdizare 124244 mac 124244 bytes_out 0 124244 bytes_in 0 124244 station_ip 5.120.59.106 124244 port 101 124244 unique_id port 124244 remote_ip 10.8.1.42 124245 username jafari 124245 kill_reason Another user logged on this global unique id 124245 mac 124245 bytes_out 0 124245 bytes_in 0 124245 station_ip 5.134.128.193 124245 port 187 124245 unique_id port 124246 username mahdixz 124246 unique_id port 124246 terminate_cause User-Request 124246 bytes_out 156296 124246 bytes_in 500604 124246 station_ip 151.235.126.11 124246 port 15729880 124246 nas_port_type Virtual 124246 remote_ip 5.5.5.251 124251 username mahdixz 124251 unique_id port 124251 terminate_cause User-Request 124251 bytes_out 354826 124251 bytes_in 3192963 124251 station_ip 151.235.126.11 124251 port 15729881 124251 nas_port_type Virtual 124251 remote_ip 5.5.5.251 124253 username forozande 124253 mac 124253 bytes_out 88430 124253 bytes_in 472816 124253 station_ip 113.203.107.63 124253 port 199 124253 unique_id port 124253 remote_ip 10.8.0.74 124255 username barzegar 124255 mac 124255 bytes_out 0 124255 bytes_in 0 124255 station_ip 5.119.61.140 124255 port 105 124255 unique_id port 124255 remote_ip 10.8.1.174 124256 username barzegar 124256 mac 124256 bytes_out 0 124256 bytes_in 0 124256 station_ip 5.119.61.140 124256 port 105 124256 unique_id port 124256 remote_ip 10.8.1.174 124259 username barzegar 124259 mac 124259 bytes_out 0 124259 bytes_in 0 124259 station_ip 5.119.61.140 124259 port 187 124259 unique_id port 124259 remote_ip 10.8.0.234 124261 username farhad1 124261 kill_reason Relative expiration date has reached 124261 mac 124261 bytes_out 0 124261 bytes_in 0 124261 station_ip 5.119.218.6 124261 port 122 124261 unique_id port 124263 username farhad1 124263 kill_reason Relative expiration date has reached 124263 mac 124263 bytes_out 0 124263 bytes_in 0 124263 station_ip 5.119.218.6 124263 port 122 124263 unique_id port 124264 username rajaei 124264 mac 124264 bytes_out 0 124264 bytes_in 0 124264 station_ip 5.72.250.62 124264 port 122 124264 unique_id port 124264 remote_ip 10.8.0.34 124270 username farhad1 124270 kill_reason Relative expiration date has reached 124270 mac 124270 bytes_out 0 124270 bytes_in 0 124270 station_ip 5.120.180.221 124270 port 196 124270 unique_id port 124272 username mehdizare 124272 mac 124272 bytes_out 43698 124272 bytes_in 83342 124268 station_ip 5.120.86.181 124268 port 196 124268 unique_id port 124268 remote_ip 10.8.0.222 124271 username mahdiyehalizadeh 124271 mac 124271 bytes_out 0 124271 bytes_in 0 124271 station_ip 83.122.35.11 124271 port 199 124271 unique_id port 124271 remote_ip 10.8.0.82 124273 username kordestani 124273 mac 124273 bytes_out 0 124273 bytes_in 0 124273 station_ip 151.235.102.222 124273 port 198 124273 unique_id port 124273 remote_ip 10.8.0.134 124274 username forozande 124274 mac 124274 bytes_out 0 124274 bytes_in 0 124274 station_ip 37.129.72.123 124274 port 187 124274 unique_id port 124274 remote_ip 10.8.0.74 124278 username farhad1 124278 kill_reason Relative expiration date has reached 124278 mac 124278 bytes_out 0 124278 bytes_in 0 124278 station_ip 5.120.180.221 124278 port 200 124278 unique_id port 124279 username barzegar 124279 mac 124279 bytes_out 0 124279 bytes_in 0 124279 station_ip 5.119.61.140 124279 port 122 124279 unique_id port 124279 remote_ip 10.8.0.234 124281 username mirzaei 124281 kill_reason Another user logged on this global unique id 124281 mac 124281 bytes_out 0 124281 bytes_in 0 124281 station_ip 5.120.131.48 124281 port 85 124281 unique_id port 124281 remote_ip 10.8.1.30 124282 username rezaei 124282 mac 124282 bytes_out 0 124282 bytes_in 0 124282 station_ip 5.119.26.238 124282 port 187 124282 unique_id port 124282 remote_ip 10.8.0.206 124284 username barzegar 124284 mac 124284 bytes_out 0 124284 bytes_in 0 124284 station_ip 5.119.61.140 124284 port 200 124284 unique_id port 124284 remote_ip 10.8.0.234 124288 username mohammadjavad 124288 mac 124288 bytes_out 0 124288 bytes_in 0 124288 station_ip 37.129.102.145 124288 port 196 124288 unique_id port 124288 remote_ip 10.8.0.142 124297 username mehdizare 124297 mac 124297 bytes_out 0 124297 bytes_in 0 124297 station_ip 5.120.59.106 124297 port 197 124297 unique_id port 124297 remote_ip 10.8.0.90 124298 username jafari 124298 kill_reason Another user logged on this global unique id 124298 mac 124298 bytes_out 0 124298 bytes_in 0 124298 station_ip 5.200.119.215 124298 port 200 124298 unique_id port 124298 remote_ip 10.8.0.242 124300 username barzegar 124300 mac 124300 bytes_out 0 124300 bytes_in 0 124300 station_ip 5.119.61.140 124300 port 197 124300 unique_id port 124300 remote_ip 10.8.0.234 124301 username barzegar 124301 mac 124301 bytes_out 0 124301 bytes_in 0 124301 station_ip 5.119.61.140 124301 port 197 124301 unique_id port 124301 remote_ip 10.8.0.234 124304 username mehdizare 124304 mac 124304 bytes_out 13557 124304 bytes_in 16874 124304 station_ip 5.120.59.106 124304 port 101 124304 unique_id port 124304 remote_ip 10.8.1.42 124313 username mosi 124313 mac 124313 bytes_out 0 124313 bytes_in 0 124313 station_ip 5.62.206.197 124313 port 199 124313 unique_id port 124313 remote_ip 10.8.0.138 124320 username mehdizare 124320 mac 124320 bytes_out 7956 124320 bytes_in 11753 124320 station_ip 5.120.59.106 124320 port 101 124320 unique_id port 124320 remote_ip 10.8.1.42 124321 username forozande 124321 mac 124321 bytes_out 0 124321 bytes_in 0 124321 station_ip 83.123.166.36 124321 port 199 124321 unique_id port 124321 remote_ip 10.8.0.74 124324 username jafari 124324 kill_reason Another user logged on this global unique id 124324 mac 124324 bytes_out 0 124324 bytes_in 0 124324 station_ip 5.200.119.215 124324 port 200 124324 unique_id port 124327 username tahmasebi 124327 kill_reason Another user logged on this global unique id 124327 mac 124272 station_ip 5.120.59.106 124272 port 101 124272 unique_id port 124272 remote_ip 10.8.1.42 124275 username farhad1 124275 kill_reason Relative expiration date has reached 124275 mac 124275 bytes_out 0 124275 bytes_in 0 124275 station_ip 5.120.180.221 124275 port 198 124275 unique_id port 124276 username Mahin 124276 mac 124276 bytes_out 0 124276 bytes_in 0 124276 station_ip 5.120.86.181 124276 port 200 124276 unique_id port 124276 remote_ip 10.8.0.222 124277 username farhad1 124277 kill_reason Relative expiration date has reached 124277 mac 124277 bytes_out 0 124277 bytes_in 0 124277 station_ip 5.120.180.221 124277 port 200 124277 unique_id port 124283 username hamidsalari1 124283 kill_reason Another user logged on this global unique id 124283 mac 124283 bytes_out 0 124283 bytes_in 0 124283 station_ip 37.129.3.122 124283 port 197 124283 unique_id port 124283 remote_ip 10.8.0.226 124285 username barzegar 124285 mac 124285 bytes_out 0 124285 bytes_in 0 124285 station_ip 5.119.61.140 124285 port 200 124285 unique_id port 124285 remote_ip 10.8.0.234 124286 username barzegar 124286 mac 124286 bytes_out 0 124286 bytes_in 0 124286 station_ip 5.119.61.140 124286 port 200 124286 unique_id port 124286 remote_ip 10.8.0.234 124289 username farhad1 124289 kill_reason Relative expiration date has reached 124289 mac 124289 bytes_out 0 124289 bytes_in 0 124289 station_ip 5.120.180.221 124289 port 196 124289 unique_id port 124291 username hamidsalari1 124291 mac 124291 bytes_out 0 124291 bytes_in 0 124291 station_ip 37.129.3.122 124291 port 197 124291 unique_id port 124292 username farhad1 124292 kill_reason Relative expiration date has reached 124292 mac 124292 bytes_out 0 124292 bytes_in 0 124292 station_ip 5.120.180.221 124292 port 197 124292 unique_id port 124294 username forozande 124294 mac 124294 bytes_out 0 124294 bytes_in 0 124294 station_ip 37.129.221.113 124294 port 122 124294 unique_id port 124294 remote_ip 10.8.0.74 124296 username mehdizare 124296 mac 124296 bytes_out 0 124296 bytes_in 0 124296 station_ip 5.120.59.106 124296 port 199 124296 unique_id port 124296 remote_ip 10.8.0.90 124302 username mehdizare 124302 mac 124302 bytes_out 0 124302 bytes_in 0 124302 station_ip 5.120.59.106 124302 port 101 124302 unique_id port 124302 remote_ip 10.8.1.42 124303 username hosseine 124303 kill_reason Another user logged on this global unique id 124303 mac 124303 bytes_out 0 124303 bytes_in 0 124303 station_ip 83.123.55.63 124303 port 170 124303 unique_id port 124303 remote_ip 10.8.0.238 124305 username barzegar 124305 mac 124305 bytes_out 0 124305 bytes_in 0 124305 station_ip 5.119.61.140 124305 port 197 124305 unique_id port 124305 remote_ip 10.8.0.234 124306 username mehdizare 124306 mac 124306 bytes_out 0 124306 bytes_in 0 124306 station_ip 5.120.59.106 124306 port 199 124306 unique_id port 124306 remote_ip 10.8.0.90 124312 username forozande 124312 mac 124312 bytes_out 354939 124312 bytes_in 632906 124312 station_ip 83.122.244.96 124312 port 203 124312 unique_id port 124312 remote_ip 10.8.0.74 124314 username barzegar 124314 mac 124314 bytes_out 0 124314 bytes_in 0 124314 station_ip 5.119.61.140 124314 port 204 124314 unique_id port 124314 remote_ip 10.8.0.234 124318 username barzegar 124318 mac 124318 bytes_out 0 124318 bytes_in 0 124318 station_ip 5.119.61.140 124318 port 202 124318 unique_id port 124318 remote_ip 10.8.0.234 124322 username barzegar 124322 mac 124322 bytes_out 2491 124290 remote_ip 10.8.0.86 124293 username sedighe 124293 mac 124293 bytes_out 1837037 124293 bytes_in 15991253 124293 station_ip 83.122.216.32 124293 port 106 124293 unique_id port 124293 remote_ip 10.8.1.78 124295 username barzegar 124295 mac 124295 bytes_out 0 124295 bytes_in 0 124295 station_ip 5.119.61.140 124295 port 197 124295 unique_id port 124295 remote_ip 10.8.0.234 124299 username hoorieh 124299 mac 124299 bytes_out 0 124299 bytes_in 0 124299 station_ip 5.120.74.4 124299 port 199 124299 unique_id port 124299 remote_ip 10.8.0.38 124307 username barzegar 124307 mac 124307 bytes_out 0 124307 bytes_in 0 124307 station_ip 5.119.61.140 124307 port 202 124307 unique_id port 124307 remote_ip 10.8.0.234 124308 username mehdizare 124308 mac 124308 bytes_out 0 124308 bytes_in 0 124308 station_ip 5.120.59.106 124308 port 203 124308 unique_id port 124308 remote_ip 10.8.0.90 124309 username barzegar 124309 mac 124309 bytes_out 0 124309 bytes_in 0 124309 station_ip 5.119.61.140 124309 port 101 124309 unique_id port 124309 remote_ip 10.8.1.174 124310 username aminvpn 124310 unique_id port 124310 terminate_cause Lost-Carrier 124310 bytes_out 6860595 124310 bytes_in 62985483 124310 station_ip 5.119.50.212 124310 port 15729874 124310 nas_port_type Virtual 124310 remote_ip 5.5.5.253 124311 username sedighe 124311 mac 124311 bytes_out 0 124311 bytes_in 0 124311 station_ip 83.122.216.32 124311 port 122 124311 unique_id port 124311 remote_ip 10.8.0.146 124315 username jafari 124315 kill_reason Another user logged on this global unique id 124315 mac 124315 bytes_out 0 124315 bytes_in 0 124315 station_ip 5.200.119.215 124315 port 200 124315 unique_id port 124316 username barzegar 124316 mac 124316 bytes_out 0 124316 bytes_in 0 124316 station_ip 5.119.61.140 124316 port 199 124316 unique_id port 124316 remote_ip 10.8.0.234 124317 username mehdizare 124317 mac 124317 bytes_out 0 124317 bytes_in 0 124317 station_ip 5.120.59.106 124317 port 202 124317 unique_id port 124317 remote_ip 10.8.0.90 124319 username musa 124319 kill_reason Another user logged on this global unique id 124319 mac 124319 bytes_out 0 124319 bytes_in 0 124319 station_ip 83.123.145.88 124319 port 197 124319 unique_id port 124319 remote_ip 10.8.0.6 124325 username barzegar 124325 mac 124325 bytes_out 0 124325 bytes_in 0 124325 station_ip 5.119.61.140 124325 port 199 124325 unique_id port 124325 remote_ip 10.8.0.234 124332 username hashtadani3 124332 mac 124332 bytes_out 0 124332 bytes_in 0 124332 station_ip 113.203.36.95 124332 port 206 124332 unique_id port 124332 remote_ip 10.8.0.154 124334 username barzegar 124334 mac 124334 bytes_out 0 124334 bytes_in 0 124334 station_ip 5.119.61.140 124334 port 101 124334 unique_id port 124334 remote_ip 10.8.1.174 124336 username hashtadani3 124336 kill_reason Maximum number of concurrent logins reached 124336 mac 124336 bytes_out 0 124336 bytes_in 0 124336 station_ip 113.203.36.95 124336 port 208 124336 unique_id port 124345 username moradi 124345 mac 124345 bytes_out 348968 124345 bytes_in 1403799 124345 station_ip 113.203.127.161 124345 port 202 124345 unique_id port 124345 remote_ip 10.8.0.250 124346 username jafari 124346 kill_reason Another user logged on this global unique id 124346 mac 124346 bytes_out 0 124346 bytes_in 0 124346 station_ip 5.200.119.215 124346 port 200 124346 unique_id port 124349 username farhad1 124349 kill_reason Relative expiration date has reached 124349 mac 124349 bytes_out 0 124349 bytes_in 0 124322 bytes_in 4884 124322 station_ip 5.119.61.140 124322 port 202 124322 unique_id port 124322 remote_ip 10.8.0.234 124323 username barzegar 124323 mac 124323 bytes_out 0 124323 bytes_in 0 124323 station_ip 5.119.61.140 124323 port 199 124323 unique_id port 124323 remote_ip 10.8.0.234 124326 username forozande 124326 mac 124326 bytes_out 0 124326 bytes_in 0 124326 station_ip 83.122.94.190 124326 port 199 124326 unique_id port 124326 remote_ip 10.8.0.74 124329 username musa 124329 kill_reason Another user logged on this global unique id 124329 mac 124329 bytes_out 0 124329 bytes_in 0 124329 station_ip 83.123.145.88 124329 port 197 124329 unique_id port 124331 username hoorieh 124331 kill_reason Another user logged on this global unique id 124331 mac 124331 bytes_out 0 124331 bytes_in 0 124331 station_ip 5.120.74.4 124331 port 204 124331 unique_id port 124331 remote_ip 10.8.0.38 124333 username hashtadani3 124333 mac 124333 bytes_out 0 124333 bytes_in 0 124333 station_ip 113.203.36.95 124333 port 206 124333 unique_id port 124333 remote_ip 10.8.0.154 124337 username hashtadani3 124337 kill_reason Maximum number of concurrent logins reached 124337 mac 124337 bytes_out 0 124337 bytes_in 0 124337 station_ip 113.203.36.95 124337 port 101 124337 unique_id port 124339 username hashtadani3 124339 kill_reason Maximum check online fails reached 124339 mac 124339 bytes_out 0 124339 bytes_in 0 124339 station_ip 113.203.36.95 124339 port 204 124339 unique_id port 124340 username jafari 124340 kill_reason Another user logged on this global unique id 124340 mac 124340 bytes_out 0 124340 bytes_in 0 124340 station_ip 5.200.119.215 124340 port 200 124340 unique_id port 124341 username sedighe 124341 mac 124341 bytes_out 0 124341 bytes_in 0 124341 station_ip 83.122.216.32 124341 port 122 124341 unique_id port 124341 remote_ip 10.8.0.146 124344 username ahmadipour 124344 unique_id port 124344 terminate_cause Lost-Carrier 124344 bytes_out 426670 124344 bytes_in 8651568 61652 username arezoo 61652 kill_reason Wrong password 61652 mac 5.238.59.87:61307: Unknown host 61652 bytes_out 0 61652 bytes_in 0 61652 station_ip 5.238.59.87:61307 61652 port 1017 61652 unique_id port 124344 station_ip 37.129.139.188 124344 port 15729883 124344 nas_port_type Virtual 124344 remote_ip 5.5.5.252 124347 username barzegar 124347 mac 124347 bytes_out 0 124347 bytes_in 0 124347 station_ip 5.119.61.140 124347 port 101 124347 unique_id port 124347 remote_ip 10.8.1.174 124351 username aminvpn 124351 mac 124351 bytes_out 0 124351 bytes_in 0 124351 station_ip 5.120.52.169 124351 port 207 124351 unique_id port 124351 remote_ip 10.8.0.14 124353 username rezaei 124353 mac 124353 bytes_out 1060725 124353 bytes_in 12267255 124353 station_ip 5.119.26.238 124353 port 201 124353 unique_id port 124353 remote_ip 10.8.0.206 124356 username forozande 124356 mac 124356 bytes_out 3397535 124356 bytes_in 36704989 124356 station_ip 37.129.137.181 124356 port 205 124356 unique_id port 124356 remote_ip 10.8.0.74 124358 username sedighe 124358 mac 124358 bytes_out 0 124358 bytes_in 0 124358 station_ip 37.129.99.1 124358 port 208 124358 unique_id port 124358 remote_ip 10.8.0.146 124363 username barzegar 124363 mac 124363 bytes_out 0 124363 bytes_in 0 124363 station_ip 5.119.61.140 124363 port 105 124363 unique_id port 124363 remote_ip 10.8.1.174 124366 username kordestani 124366 mac 124366 bytes_out 0 124366 bytes_in 0 124366 station_ip 37.129.202.204 124366 port 207 124366 unique_id port 124327 bytes_out 0 124327 bytes_in 0 124327 station_ip 5.119.127.237 124327 port 169 124327 unique_id port 124328 username jafari 124328 kill_reason Another user logged on this global unique id 124328 mac 124328 bytes_out 0 124328 bytes_in 0 124328 station_ip 5.200.119.215 124328 port 200 124328 unique_id port 124330 username barzegar 124330 mac 124330 bytes_out 0 124330 bytes_in 0 124330 station_ip 5.119.61.140 124330 port 101 124330 unique_id port 124330 remote_ip 10.8.1.174 124335 username hoorieh 124335 mac 124335 bytes_out 0 124335 bytes_in 0 124335 station_ip 5.120.74.4 124335 port 204 124335 unique_id port 124338 username hashtadani3 124338 kill_reason Maximum check online fails reached 124338 mac 124338 bytes_out 0 124338 bytes_in 0 124338 station_ip 113.203.36.95 124338 port 206 124338 unique_id port 124342 username milan 124342 kill_reason Another user logged on this global unique id 124342 mac 124342 bytes_out 0 124342 bytes_in 0 124342 station_ip 5.119.136.73 124342 port 187 124342 unique_id port 124342 remote_ip 10.8.0.218 124343 username rezasekonji 124343 mac 124343 bytes_out 0 124343 bytes_in 0 124343 station_ip 37.129.165.238 124343 port 122 124343 unique_id port 124343 remote_ip 10.8.0.130 124348 username musa 124348 kill_reason Another user logged on this global unique id 124348 mac 124348 bytes_out 0 124348 bytes_in 0 124348 station_ip 83.123.145.88 124348 port 197 124348 unique_id port 124352 username milan 124352 mac 124352 bytes_out 0 124352 bytes_in 0 124352 station_ip 5.119.136.73 124352 port 187 124352 unique_id port 124355 username khalili 124355 mac 124355 bytes_out 4220188 61651 username arezoo 61651 kill_reason Relative expiration date has reached 61651 mac 5.238.59.87:61301: Unknown host 61651 bytes_out 0 61651 bytes_in 0 61651 station_ip 5.238.59.87:61301 61651 port 1017 61651 unique_id port 61653 username arezoo 61653 kill_reason Relative expiration date has reached 61653 mac 5.238.59.87:61316: Unknown host 61653 bytes_out 0 61653 bytes_in 0 61653 station_ip 5.238.59.87:61316 61653 port 1017 61653 unique_id port 124355 bytes_in 49715896 124355 station_ip 5.119.227.42 124355 port 196 124355 unique_id port 124355 remote_ip 10.8.0.86 124359 username khalili 124359 mac 124359 bytes_out 2861 124359 bytes_in 19744 124359 station_ip 5.119.227.42 124359 port 201 124359 unique_id port 124359 remote_ip 10.8.0.86 124364 username barzegar 124364 mac 124364 bytes_out 0 124364 bytes_in 0 124364 station_ip 5.119.61.140 124364 port 105 124364 unique_id port 124364 remote_ip 10.8.1.174 124367 username barzegar 124367 mac 124367 bytes_out 0 124367 bytes_in 0 124367 station_ip 5.119.61.140 124367 port 105 124367 unique_id port 124367 remote_ip 10.8.1.174 124368 username amin.saeedi 124368 unique_id port 124368 terminate_cause User-Request 124368 bytes_out 398985 124368 bytes_in 6380735 124368 station_ip 5.119.143.237 124368 port 15729884 124368 nas_port_type Virtual 124368 remote_ip 5.5.5.252 124371 username mehdizare 124371 mac 124371 bytes_out 138771 124371 bytes_in 122933 124371 station_ip 5.120.59.106 124371 port 203 124371 unique_id port 124371 remote_ip 10.8.0.90 124373 username barzegar 124373 mac 124373 bytes_out 0 124373 bytes_in 0 124373 station_ip 5.119.61.140 124373 port 105 124373 unique_id port 124373 remote_ip 10.8.1.174 124377 username alihosseini1 124377 kill_reason Another user logged on this global unique id 124377 mac 124377 bytes_out 0 124377 bytes_in 0 124377 station_ip 5.119.17.68 124377 port 201 124377 unique_id port 124349 station_ip 5.120.180.221 124349 port 209 124349 unique_id port 124350 username kordestani 124350 kill_reason Another user logged on this global unique id 124350 mac 124350 bytes_out 0 124350 bytes_in 0 124350 station_ip 83.122.184.187 124350 port 202 124350 unique_id port 124350 remote_ip 10.8.0.134 124354 username musa 124354 kill_reason Another user logged on this global unique id 124354 mac 124354 bytes_out 0 124354 bytes_in 0 124354 station_ip 83.123.145.88 124354 port 197 124354 unique_id port 124357 username milan 124357 mac 124357 bytes_out 184921 124357 bytes_in 945642 124357 station_ip 5.120.146.110 124357 port 209 124357 unique_id port 124357 remote_ip 10.8.0.218 124360 username kordestani 124360 mac 124360 bytes_out 0 124360 bytes_in 0 124360 station_ip 83.122.184.187 124360 port 202 124360 unique_id port 124361 username mirzaei 124361 kill_reason Another user logged on this global unique id 124361 mac 124361 bytes_out 0 124361 bytes_in 0 124361 station_ip 5.120.131.48 124361 port 85 124361 unique_id port 124362 username milan 124362 mac 124362 bytes_out 468717 124362 bytes_in 6014729 124362 station_ip 5.119.212.222 124362 port 205 124362 unique_id port 124362 remote_ip 10.8.0.218 124365 username sedighe 124365 mac 124365 bytes_out 1266713 124365 bytes_in 10523452 124365 station_ip 37.129.99.1 124365 port 207 124365 unique_id port 124365 remote_ip 10.8.0.146 124369 username forozande 124369 mac 124369 bytes_out 0 124369 bytes_in 0 124369 station_ip 37.129.254.130 124369 port 208 124369 unique_id port 124369 remote_ip 10.8.0.74 124372 username musa 124372 kill_reason Another user logged on this global unique id 124372 mac 124372 bytes_out 0 124372 bytes_in 0 124372 station_ip 83.123.145.88 124372 port 197 124372 unique_id port 124378 username hamidsalari 124378 kill_reason Another user logged on this global unique id 124378 mac 124378 bytes_out 0 124378 bytes_in 0 124378 station_ip 5.119.72.239 124378 port 135 124378 unique_id port 124379 username mehdizare 124379 mac 124379 bytes_out 76277 124379 bytes_in 401259 124379 station_ip 5.120.59.106 124379 port 208 124379 unique_id port 124379 remote_ip 10.8.0.90 124384 username mahdixz 124384 unique_id port 124384 terminate_cause NAS-Error 124384 bytes_out 0 124384 bytes_in 380 124384 station_ip 151.235.118.214 124384 port 15729886 124384 nas_port_type Virtual 124384 remote_ip 5.5.5.250 124385 username mahdiyehalizadeh 124385 mac 124385 bytes_out 397355 124385 bytes_in 2160821 124385 station_ip 83.123.117.230 124385 port 187 124385 unique_id port 124385 remote_ip 10.8.0.82 124395 username mansur 124395 kill_reason Another user logged on this global unique id 124395 mac 124395 bytes_out 0 124395 bytes_in 0 124395 station_ip 5.119.2.96 124395 port 203 124395 unique_id port 124395 remote_ip 10.8.0.210 124397 username rezaei 124397 mac 124397 bytes_out 0 124397 bytes_in 0 124397 station_ip 5.119.123.52 124397 port 101 124397 unique_id port 124397 remote_ip 10.8.1.150 124399 username moradi 124399 mac 124399 bytes_out 0 124399 bytes_in 0 124399 station_ip 113.203.17.113 124399 port 207 124399 unique_id port 124400 username alinezhad 124400 kill_reason Absolute expiration date has reached 124400 unique_id port 124400 bytes_out 0 124400 bytes_in 0 124400 station_ip 5.202.6.149 124400 port 15729888 124400 nas_port_type Virtual 124403 username mehdizare 124403 mac 124403 bytes_out 0 124403 bytes_in 0 124403 station_ip 5.120.59.106 124403 port 208 124403 unique_id port 124403 remote_ip 10.8.0.90 124406 username forozande 124366 remote_ip 10.8.0.134 124370 username milan 124370 kill_reason Another user logged on this global unique id 124370 mac 124370 bytes_out 0 124370 bytes_in 0 124370 station_ip 5.120.94.171 124370 port 202 124370 unique_id port 124370 remote_ip 10.8.0.218 124374 username houshang 124374 mac 124374 bytes_out 516476 124374 bytes_in 1345838 124374 station_ip 5.119.67.48 124374 port 207 124374 unique_id port 124374 remote_ip 10.8.0.22 124375 username ehsun 124375 mac 124375 bytes_out 0 124375 bytes_in 0 124375 station_ip 46.225.209.208 124375 port 203 124375 unique_id port 124375 remote_ip 10.8.0.162 124376 username jafari 124376 kill_reason Another user logged on this global unique id 124376 mac 124376 bytes_out 0 124376 bytes_in 0 124376 station_ip 5.200.119.215 124376 port 200 124376 unique_id port 124386 username mirzaei 124386 kill_reason Another user logged on this global unique id 124386 mac 124386 bytes_out 0 124386 bytes_in 0 124386 station_ip 5.120.131.48 124386 port 85 124386 unique_id port 124387 username hamidsalari1 124387 mac 124387 bytes_out 0 124387 bytes_in 0 124387 station_ip 113.203.41.22 124387 port 106 124387 unique_id port 124387 remote_ip 10.8.1.170 124388 username barzegar 124388 mac 124388 bytes_out 0 124388 bytes_in 0 124388 station_ip 5.119.61.140 124388 port 105 124388 unique_id port 124388 remote_ip 10.8.1.174 124391 username amirabbas 124391 unique_id port 124391 terminate_cause User-Request 124391 bytes_out 48872615 124391 bytes_in 1422022288 124391 station_ip 37.27.10.205 124391 port 15729876 124391 nas_port_type Virtual 124391 remote_ip 5.5.5.254 124394 username moradi 124394 kill_reason Another user logged on this global unique id 124394 mac 124394 bytes_out 0 124394 bytes_in 0 124394 station_ip 113.203.17.113 124394 port 207 124394 unique_id port 124394 remote_ip 10.8.0.250 124398 username barzegar 124398 mac 124398 bytes_out 0 124398 bytes_in 0 124398 station_ip 5.119.61.140 124398 port 105 124398 unique_id port 124398 remote_ip 10.8.1.174 124401 username mirzaei 124401 kill_reason Another user logged on this global unique id 124401 mac 124401 bytes_out 0 124401 bytes_in 0 124401 station_ip 5.120.131.48 124401 port 85 124401 unique_id port 124402 username alinezhad 124402 kill_reason Absolute expiration date has reached 124402 unique_id port 124402 bytes_out 0 124402 bytes_in 0 124402 station_ip 5.202.6.149 124402 port 15729889 124402 nas_port_type Virtual 124405 username jafari 124405 kill_reason Another user logged on this global unique id 124405 mac 124405 bytes_out 0 124405 bytes_in 0 124405 station_ip 5.200.119.215 124405 port 200 124405 unique_id port 124415 username alireza 124415 unique_id port 124415 terminate_cause Lost-Carrier 124415 bytes_out 3027032 124415 bytes_in 56460746 124415 station_ip 5.119.242.23 124415 port 15729885 124415 nas_port_type Virtual 124415 remote_ip 5.5.5.252 124416 username barzegar 124416 mac 124416 bytes_out 0 124416 bytes_in 0 124416 station_ip 5.119.61.140 124416 port 105 124416 unique_id port 124416 remote_ip 10.8.1.174 124421 username mirzaei 124421 kill_reason Another user logged on this global unique id 124421 mac 124421 bytes_out 0 124421 bytes_in 0 124421 station_ip 5.120.131.48 124421 port 85 124421 unique_id port 124422 username alinezhad 124422 kill_reason Absolute expiration date has reached 124422 unique_id port 124422 bytes_out 0 124422 bytes_in 0 124422 station_ip 5.202.6.149 124422 port 15729891 124422 nas_port_type Virtual 124428 username barzegar 124428 mac 124428 bytes_out 0 124428 bytes_in 0 124428 station_ip 5.119.61.140 124428 port 106 124428 unique_id port 124377 remote_ip 10.8.0.166 124380 username milan 124380 kill_reason Another user logged on this global unique id 124380 mac 124380 bytes_out 0 124380 bytes_in 0 124380 station_ip 5.120.94.171 124380 port 202 124380 unique_id port 124381 username barzegar 124381 mac 124381 bytes_out 0 124381 bytes_in 0 124381 station_ip 5.119.61.140 124381 port 105 124381 unique_id port 124381 remote_ip 10.8.1.174 124382 username avaanna 124382 mac 124382 bytes_out 363229 124382 bytes_in 1704538 124382 station_ip 83.123.211.102 124382 port 209 124382 unique_id port 124382 remote_ip 10.8.0.98 124383 username musa 124383 kill_reason Another user logged on this global unique id 124383 mac 124383 bytes_out 0 124383 bytes_in 0 124383 station_ip 83.123.145.88 124383 port 197 124383 unique_id port 124389 username jafari 124389 kill_reason Another user logged on this global unique id 124389 mac 124389 bytes_out 0 124389 bytes_in 0 124389 station_ip 5.200.119.215 124389 port 200 124389 unique_id port 124390 username hosseine 124390 mac 124390 bytes_out 0 124390 bytes_in 0 124390 station_ip 83.123.55.63 124390 port 170 124390 unique_id port 124392 username milan 124392 kill_reason Another user logged on this global unique id 124392 mac 124392 bytes_out 0 124392 bytes_in 0 124392 station_ip 5.120.94.171 124392 port 202 124392 unique_id port 124393 username hamidsalari1 124393 mac 124393 bytes_out 4196835 124393 bytes_in 358815 124393 station_ip 113.203.41.22 124393 port 187 124393 unique_id port 124393 remote_ip 10.8.0.226 124396 username alihosseini1 124396 kill_reason Another user logged on this global unique id 124396 mac 124396 bytes_out 0 124396 bytes_in 0 124396 station_ip 5.119.17.68 124396 port 201 124396 unique_id port 124404 username rostami 124404 kill_reason Another user logged on this global unique id 124404 mac 124404 bytes_out 0 124404 bytes_in 0 124404 station_ip 5.120.46.119 124404 port 196 124404 unique_id port 124404 remote_ip 10.8.0.194 124407 username rezasekonji 124407 mac 124407 bytes_out 3634789 124407 bytes_in 26815196 124407 station_ip 37.129.165.238 124407 port 122 124407 unique_id port 124407 remote_ip 10.8.0.130 124408 username moradi 124408 mac 124408 bytes_out 813046 124408 bytes_in 12335169 124408 station_ip 113.203.17.113 124408 port 170 124408 unique_id port 124408 remote_ip 10.8.0.250 124410 username kordestani 124410 mac 124410 bytes_out 0 124410 bytes_in 0 124410 station_ip 151.235.119.139 124410 port 187 124410 unique_id port 124410 remote_ip 10.8.0.134 124412 username houshang 124412 mac 124412 bytes_out 43026 124412 bytes_in 63984 124412 station_ip 5.119.67.48 124412 port 170 124412 unique_id port 124412 remote_ip 10.8.0.22 124414 username rezaei 124414 kill_reason Another user logged on this global unique id 124414 mac 124414 bytes_out 0 124414 bytes_in 0 124414 station_ip 5.119.123.52 124414 port 101 124414 unique_id port 124414 remote_ip 10.8.1.150 124417 username aminvpn 124417 mac 124417 bytes_out 382391 124417 bytes_in 645190 124417 station_ip 5.120.156.249 124417 port 210 124417 unique_id port 124417 remote_ip 10.8.0.14 124424 username milan 124424 mac 124424 bytes_out 0 124424 bytes_in 0 124424 station_ip 5.120.94.171 124424 port 105 124424 unique_id port 124424 remote_ip 10.8.1.178 124425 username amir 124425 kill_reason Another user logged on this global unique id 124425 mac 124425 bytes_out 0 124425 bytes_in 0 124425 station_ip 46.225.214.161 124425 port 188 124425 unique_id port 124425 remote_ip 10.8.0.50 124429 username mosi 124545 mac 124406 mac 124406 bytes_out 2268776 124406 bytes_in 31682968 124406 station_ip 37.129.40.220 124406 port 209 124406 unique_id port 124406 remote_ip 10.8.0.74 124409 username barzegar 124409 mac 124409 bytes_out 0 124409 bytes_in 0 124409 station_ip 5.119.61.140 124409 port 105 124409 unique_id port 124409 remote_ip 10.8.1.174 124411 username alihosseini1 124411 kill_reason Another user logged on this global unique id 124411 mac 124411 bytes_out 0 124411 bytes_in 0 124411 station_ip 5.119.17.68 124411 port 201 124411 unique_id port 124413 username Mahin 124413 mac 124413 bytes_out 560135 124413 bytes_in 1487730 124413 station_ip 5.120.86.181 124413 port 198 124413 unique_id port 124413 remote_ip 10.8.0.222 124418 username milan 124418 mac 124418 bytes_out 0 124418 bytes_in 0 124418 station_ip 5.120.94.171 124418 port 202 124418 unique_id port 124419 username milan 124419 kill_reason Maximum check online fails reached 124419 mac 124419 bytes_out 0 124419 bytes_in 0 124419 station_ip 5.120.94.171 124419 port 198 124419 unique_id port 124420 username aminvpn 124420 unique_id port 124420 terminate_cause Lost-Carrier 124420 bytes_out 3257042 124420 bytes_in 98240447 124420 station_ip 5.120.74.84 124420 port 15729887 124420 nas_port_type Virtual 124420 remote_ip 5.5.5.248 124423 username alinezhad 124423 kill_reason Absolute expiration date has reached 124423 unique_id port 124423 bytes_out 0 124423 bytes_in 0 124423 station_ip 5.202.6.149 124423 port 15729892 124423 nas_port_type Virtual 124426 username jafari 124426 kill_reason Another user logged on this global unique id 124426 mac 124426 bytes_out 0 124426 bytes_in 0 124426 station_ip 5.200.119.215 124426 port 200 124426 unique_id port 124427 username moradi 124427 kill_reason Another user logged on this global unique id 124427 mac 124427 bytes_out 0 124427 bytes_in 0 124427 station_ip 113.203.17.113 124427 port 122 124427 unique_id port 124427 remote_ip 10.8.0.250 124443 username houshang 124443 kill_reason Another user logged on this global unique id 124443 mac 124443 bytes_out 0 124443 bytes_in 0 124443 station_ip 5.119.67.48 124443 port 170 124443 unique_id port 124444 username mohammadmahdi 124444 mac 124444 bytes_out 0 124444 bytes_in 0 124444 station_ip 5.119.66.9 124444 port 202 124444 unique_id port 124447 username mohammadmahdi 124447 mac 124447 bytes_out 159651 124447 bytes_in 1356694 124447 station_ip 5.119.66.9 124447 port 122 124447 unique_id port 124447 remote_ip 10.8.0.54 124448 username hamidsalari1 124448 mac 124448 bytes_out 6287543 124448 bytes_in 674937 124448 station_ip 83.122.37.57 124448 port 187 124448 unique_id port 124448 remote_ip 10.8.0.226 124454 username mirzaei 124454 kill_reason Another user logged on this global unique id 124454 mac 124454 bytes_out 0 124454 bytes_in 0 124454 station_ip 5.120.131.48 124454 port 85 124454 unique_id port 124457 username rostami 124457 kill_reason Another user logged on this global unique id 124457 mac 124457 bytes_out 0 124457 bytes_in 0 124457 station_ip 5.120.46.119 124457 port 196 124457 unique_id port 124461 username mirzaei 124461 kill_reason Another user logged on this global unique id 124461 mac 124461 bytes_out 0 124461 bytes_in 0 124461 station_ip 5.120.131.48 124461 port 85 124461 unique_id port 124463 username rezaei 124463 kill_reason Another user logged on this global unique id 124463 mac 124463 bytes_out 0 124463 bytes_in 0 124463 station_ip 5.119.123.52 124463 port 101 124463 unique_id port 124464 username rostami 124464 kill_reason Another user logged on this global unique id 124464 mac 124464 bytes_out 0 124428 remote_ip 10.8.1.174 124432 username mohammadmahdi 124432 kill_reason Another user logged on this global unique id 124432 mac 124432 bytes_out 0 124432 bytes_in 0 124432 station_ip 5.119.66.9 124432 port 202 124432 unique_id port 124432 remote_ip 10.8.0.54 124433 username mansur 124433 kill_reason Another user logged on this global unique id 124433 mac 124433 bytes_out 0 124433 bytes_in 0 124433 station_ip 5.119.2.96 124433 port 203 124433 unique_id port 124434 username houshang 124434 kill_reason Another user logged on this global unique id 124434 mac 124434 bytes_out 0 124434 bytes_in 0 124434 station_ip 5.119.67.48 124434 port 170 124434 unique_id port 124434 remote_ip 10.8.0.22 124435 username alihosseini1 124435 mac 124435 bytes_out 0 124435 bytes_in 0 124435 station_ip 5.119.17.68 124435 port 201 124435 unique_id port 124437 username mahdiyehalizadeh 124437 mac 124437 bytes_out 3539462 124437 bytes_in 36687786 124437 station_ip 83.122.196.62 124437 port 208 124437 unique_id port 124437 remote_ip 10.8.0.82 124439 username mansur 124439 kill_reason Another user logged on this global unique id 124439 mac 124439 bytes_out 0 124439 bytes_in 0 124439 station_ip 5.119.2.96 124439 port 203 124439 unique_id port 124440 username moradi 124440 mac 124440 bytes_out 0 124440 bytes_in 0 124440 station_ip 113.203.17.113 124440 port 122 124440 unique_id port 124441 username mirzaei 124441 kill_reason Another user logged on this global unique id 124441 mac 124441 bytes_out 0 124441 bytes_in 0 124441 station_ip 5.120.131.48 124441 port 85 124441 unique_id port 124442 username barzegar 124442 mac 124442 bytes_out 0 124442 bytes_in 0 124442 station_ip 5.119.61.140 124442 port 106 124442 unique_id port 124442 remote_ip 10.8.1.174 124446 username jafari 124446 kill_reason Another user logged on this global unique id 124446 mac 124446 bytes_out 0 124446 bytes_in 0 124446 station_ip 5.200.119.215 124446 port 200 124446 unique_id port 124449 username moradi 124449 kill_reason Another user logged on this global unique id 124449 mac 124449 bytes_out 0 124449 bytes_in 0 124449 station_ip 113.203.17.113 124449 port 188 124449 unique_id port 124449 remote_ip 10.8.0.250 124450 username barzegar 124450 mac 124450 bytes_out 0 124450 bytes_in 0 124450 station_ip 5.119.61.140 124450 port 106 124450 unique_id port 124450 remote_ip 10.8.1.174 124452 username mansur 124452 mac 124452 bytes_out 0 124452 bytes_in 0 124452 station_ip 5.119.2.96 124452 port 203 124452 unique_id port 124453 username mosi 124453 kill_reason Another user logged on this global unique id 124453 mac 124453 bytes_out 0 124453 bytes_in 0 124453 station_ip 151.235.122.242 124453 port 199 124453 unique_id port 124456 username jafari 124456 kill_reason Another user logged on this global unique id 124456 mac 124456 bytes_out 0 124456 bytes_in 0 124456 station_ip 5.200.119.215 124456 port 200 124456 unique_id port 124458 username barzegar 124458 mac 124458 bytes_out 0 124458 bytes_in 0 124458 station_ip 5.119.61.140 124458 port 106 124458 unique_id port 124458 remote_ip 10.8.1.174 124459 username mohammadmahdi 124459 mac 124459 bytes_out 3260437 124459 bytes_in 36969297 124459 station_ip 5.119.66.9 124459 port 170 124459 unique_id port 124459 remote_ip 10.8.0.54 124460 username mehdizare 124460 kill_reason Another user logged on this global unique id 124460 mac 124460 bytes_out 0 124460 bytes_in 0 124460 station_ip 5.120.59.106 124460 port 207 124460 unique_id port 124460 remote_ip 10.8.0.90 124466 username rezaei 124466 mac 124466 bytes_out 0 124429 kill_reason Another user logged on this global unique id 124429 mac 124429 bytes_out 0 124429 bytes_in 0 124429 station_ip 151.235.122.242 124429 port 199 124429 unique_id port 124429 remote_ip 10.8.0.138 124430 username milan 124430 mac 124430 bytes_out 0 124430 bytes_in 0 124430 station_ip 5.120.94.171 124430 port 105 124430 unique_id port 124430 remote_ip 10.8.1.178 124431 username milan 124431 mac 124431 bytes_out 0 124431 bytes_in 0 124431 station_ip 5.120.94.171 124431 port 105 124431 unique_id port 124431 remote_ip 10.8.1.178 124436 username musa 124436 kill_reason Another user logged on this global unique id 124436 mac 124436 bytes_out 0 124436 bytes_in 0 124436 station_ip 83.123.145.88 124436 port 197 124436 unique_id port 124438 username amir 124438 mac 124438 bytes_out 0 124438 bytes_in 0 124438 station_ip 46.225.214.161 124438 port 188 124438 unique_id port 124445 username houshang 124445 mac 124445 bytes_out 0 124445 bytes_in 0 124445 station_ip 5.119.67.48 124445 port 170 124445 unique_id port 124451 username houshang 124451 mac 124451 bytes_out 52676 124451 bytes_in 64461 124451 station_ip 5.119.67.48 124451 port 122 124451 unique_id port 124451 remote_ip 10.8.0.22 124455 username mahdiyehalizadeh 124455 mac 124455 bytes_out 1234450 124455 bytes_in 19509886 124455 station_ip 37.129.131.89 124455 port 201 124455 unique_id port 124455 remote_ip 10.8.0.82 124462 username barzegar 124462 mac 124462 bytes_out 0 124462 bytes_in 0 124462 station_ip 5.119.61.140 124462 port 106 124462 unique_id port 124462 remote_ip 10.8.1.174 124465 username jafari 124465 kill_reason Another user logged on this global unique id 124465 mac 124465 bytes_out 0 124465 bytes_in 0 124465 station_ip 5.200.119.215 124465 port 200 124465 unique_id port 124468 username moradi 124468 kill_reason Another user logged on this global unique id 124468 mac 124468 bytes_out 0 124468 bytes_in 0 124468 station_ip 113.203.17.113 124468 port 188 124468 unique_id port 124473 username moradi 124473 mac 124473 bytes_out 0 124473 bytes_in 0 124473 station_ip 113.203.17.113 124473 port 188 124473 unique_id port 124477 username mohammadmahdi 124477 mac 124477 bytes_out 0 124477 bytes_in 0 124477 station_ip 5.119.66.9 124477 port 201 124477 unique_id port 124482 username mohammadjavad 124482 mac 124482 bytes_out 189583 124482 bytes_in 3544118 124482 station_ip 83.122.73.206 124482 port 188 124482 unique_id port 124482 remote_ip 10.8.0.142 124483 username rostami 124483 mac 124483 bytes_out 0 124483 bytes_in 0 124483 station_ip 5.120.46.119 124483 port 196 124483 unique_id port 124487 username musa 124487 mac 124487 bytes_out 0 124487 bytes_in 0 124487 station_ip 83.123.145.88 124487 port 197 124487 unique_id port 124489 username farhad1 124489 kill_reason Relative expiration date has reached 124489 mac 124489 bytes_out 0 124489 bytes_in 0 124489 station_ip 5.119.46.222 124489 port 187 124489 unique_id port 124491 username farhad1 124491 kill_reason Relative expiration date has reached 124491 mac 124491 bytes_out 0 124491 bytes_in 0 124491 station_ip 5.119.46.222 124491 port 187 124491 unique_id port 124493 username barzegar 124493 mac 124493 bytes_out 0 124493 bytes_in 0 124493 station_ip 5.119.61.140 124493 port 101 124493 unique_id port 124493 remote_ip 10.8.1.174 124501 username zare 124501 kill_reason Another user logged on this global unique id 124501 mac 124501 bytes_out 0 124501 bytes_in 0 124501 station_ip 37.129.124.248 124464 bytes_in 0 124464 station_ip 5.120.46.119 124464 port 196 124464 unique_id port 124467 username mosi 124467 mac 124467 bytes_out 0 124467 bytes_in 0 124467 station_ip 151.235.122.242 124467 port 199 124467 unique_id port 124472 username mahdixz 124472 unique_id port 124472 terminate_cause Lost-Carrier 124472 bytes_out 9210141 124472 bytes_in 252623583 124472 station_ip 151.235.118.214 124472 port 15729890 124472 nas_port_type Virtual 124472 remote_ip 5.5.5.255 124474 username jafari 124474 mac 124474 bytes_out 0 124474 bytes_in 0 124474 station_ip 5.200.119.215 124474 port 200 124474 unique_id port 124475 username tahmasebi 124475 kill_reason Another user logged on this global unique id 124475 mac 124475 bytes_out 0 124475 bytes_in 0 124475 station_ip 5.119.127.237 124475 port 169 124475 unique_id port 124479 username barzegar 124479 mac 124479 bytes_out 0 124479 bytes_in 0 124479 station_ip 5.119.61.140 124479 port 101 124479 unique_id port 124479 remote_ip 10.8.1.174 124481 username ahmadipour 124481 unique_id port 124481 terminate_cause Lost-Carrier 124481 bytes_out 1386926 124481 bytes_in 32558604 124481 station_ip 83.122.30.214 124481 port 15729894 124481 nas_port_type Virtual 124481 remote_ip 5.5.5.251 124485 username bcboard 124485 unique_id port 124485 terminate_cause User-Request 124485 bytes_out 102409 124485 bytes_in 3783561 124485 station_ip 37.129.193.141 124485 port 15729896 124485 nas_port_type Virtual 124485 remote_ip 5.5.5.255 124492 username naeimeh 124492 kill_reason Another user logged on this global unique id 124492 mac 124492 bytes_out 0 124492 bytes_in 0 124492 station_ip 83.123.24.152 124492 port 122 124492 unique_id port 124492 remote_ip 10.8.0.78 124496 username zare 124496 mac 124496 bytes_out 0 124496 bytes_in 0 124496 station_ip 37.27.1.196 124496 port 196 124496 unique_id port 124496 remote_ip 10.8.0.18 124498 username zare 124498 mac 124498 bytes_out 0 124498 bytes_in 0 124498 station_ip 37.27.1.196 124498 port 170 124498 unique_id port 124498 remote_ip 10.8.0.18 124499 username zare 124499 kill_reason Another user logged on this global unique id 124499 mac 124499 bytes_out 0 124499 bytes_in 0 124499 station_ip 37.129.124.248 124499 port 196 124499 unique_id port 124499 remote_ip 10.8.0.18 124504 username naeimeh 124504 kill_reason Another user logged on this global unique id 124504 mac 124504 bytes_out 0 124504 bytes_in 0 124504 station_ip 83.123.24.152 124504 port 122 124504 unique_id port 124505 username zare 124505 kill_reason Another user logged on this global unique id 124505 mac 124505 bytes_out 0 124505 bytes_in 0 124505 station_ip 37.129.124.248 124505 port 196 124505 unique_id port 124510 username barzegar 124510 mac 124510 bytes_out 0 124510 bytes_in 0 124510 station_ip 5.119.61.140 124510 port 101 124510 unique_id port 124510 remote_ip 10.8.1.174 124511 username barzegar 124511 mac 124511 bytes_out 0 124511 bytes_in 0 124511 station_ip 5.119.61.140 124511 port 101 124511 unique_id port 124511 remote_ip 10.8.1.174 124512 username tahmasebi 124512 kill_reason Another user logged on this global unique id 124512 mac 124512 bytes_out 0 124512 bytes_in 0 124512 station_ip 5.119.127.237 124512 port 169 124512 unique_id port 124517 username zare 124517 mac 124517 bytes_out 0 124517 bytes_in 0 124517 station_ip 37.27.1.196 124517 port 122 124517 unique_id port 124517 remote_ip 10.8.0.18 124518 username zare 124518 mac 124518 bytes_out 0 124518 bytes_in 0 124518 station_ip 37.27.1.196 124518 port 122 124518 unique_id port 124466 bytes_in 0 124466 station_ip 5.119.123.52 124466 port 101 124466 unique_id port 124469 username barzegar 124469 mac 124469 bytes_out 0 124469 bytes_in 0 124469 station_ip 5.119.61.140 124469 port 101 124469 unique_id port 124469 remote_ip 10.8.1.174 124470 username mohammadmahdi 124470 kill_reason Another user logged on this global unique id 124470 mac 124470 bytes_out 0 124470 bytes_in 0 124470 station_ip 5.119.66.9 124470 port 201 124470 unique_id port 124470 remote_ip 10.8.0.54 124471 username mosi 124471 mac 124471 bytes_out 0 124471 bytes_in 0 124471 station_ip 5.134.184.238 124471 port 202 124471 unique_id port 124471 remote_ip 10.8.0.138 124476 username zare 124476 kill_reason Another user logged on this global unique id 124476 mac 124476 bytes_out 0 124476 bytes_in 0 124476 station_ip 37.27.1.196 124476 port 187 124476 unique_id port 124476 remote_ip 10.8.0.18 124478 username mohammadjavad 124478 mac 124478 bytes_out 2478851 124478 bytes_in 40353068 124478 station_ip 83.123.204.131 124478 port 122 124478 unique_id port 124478 remote_ip 10.8.0.142 124480 username bcboard 124480 unique_id port 124480 terminate_cause User-Request 124480 bytes_out 124153 124480 bytes_in 3963278 124480 station_ip 37.129.193.141 124480 port 15729895 124480 nas_port_type Virtual 124480 remote_ip 5.5.5.250 124484 username barzegar 124484 mac 124484 bytes_out 0 124484 bytes_in 0 124484 station_ip 5.119.61.140 124484 port 101 124484 unique_id port 124484 remote_ip 10.8.1.174 124486 username rostami 124486 mac 124486 bytes_out 0 124486 bytes_in 0 124486 station_ip 5.120.46.119 124486 port 188 124486 unique_id port 124486 remote_ip 10.8.0.194 124488 username zare 124488 mac 124488 bytes_out 0 124488 bytes_in 0 124488 station_ip 37.27.1.196 124488 port 187 124488 unique_id port 124490 username farhad1 124490 kill_reason Relative expiration date has reached 124490 mac 124490 bytes_out 0 124490 bytes_in 0 124490 station_ip 5.119.46.222 124490 port 187 124490 unique_id port 124494 username amirabbas 124494 unique_id port 124494 terminate_cause User-Request 124494 bytes_out 20752659 124494 bytes_in 565616188 124494 station_ip 37.27.10.205 124494 port 15729893 124494 nas_port_type Virtual 124494 remote_ip 5.5.5.253 124495 username hamidsalari1 124495 mac 124495 bytes_out 0 124495 bytes_in 0 124495 station_ip 83.122.37.57 124495 port 170 124495 unique_id port 124495 remote_ip 10.8.0.226 124497 username barzegar 124497 mac 124497 bytes_out 0 124497 bytes_in 0 124497 station_ip 5.119.61.140 124497 port 101 124497 unique_id port 124497 remote_ip 10.8.1.174 124500 username hamidsalari 124500 mac 124500 bytes_out 0 124500 bytes_in 0 124500 station_ip 5.119.72.239 124500 port 135 124500 unique_id port 124506 username tahmasebi 124506 kill_reason Another user logged on this global unique id 124506 mac 124506 bytes_out 0 124506 bytes_in 0 124506 station_ip 5.119.127.237 124506 port 169 124506 unique_id port 124509 username zare 124509 mac 124509 bytes_out 0 124509 bytes_in 0 124509 station_ip 37.129.124.248 124509 port 196 124509 unique_id port 124514 username zare 124514 kill_reason Another user logged on this global unique id 124514 mac 124514 bytes_out 0 124514 bytes_in 0 124514 station_ip 37.27.1.196 124514 port 122 124514 unique_id port 124514 remote_ip 10.8.0.18 124515 username barzegar 124515 mac 124515 bytes_out 0 124515 bytes_in 0 124515 station_ip 5.119.61.140 124515 port 101 124515 unique_id port 124515 remote_ip 10.8.1.174 124519 username zare 124501 port 196 124501 unique_id port 124502 username zare 124502 kill_reason Another user logged on this global unique id 124502 mac 124502 bytes_out 0 124502 bytes_in 0 124502 station_ip 37.129.124.248 124502 port 196 124502 unique_id port 124503 username barzegar 124503 mac 124503 bytes_out 0 124503 bytes_in 0 124503 station_ip 5.119.61.140 124503 port 101 124503 unique_id port 124503 remote_ip 10.8.1.174 124507 username zare 124507 kill_reason Another user logged on this global unique id 124507 mac 124507 bytes_out 0 124507 bytes_in 0 124507 station_ip 37.129.124.248 124507 port 196 124507 unique_id port 124508 username naeimeh 124508 mac 124508 bytes_out 0 124508 bytes_in 0 124508 station_ip 83.123.24.152 124508 port 122 124508 unique_id port 124513 username barzegar 124513 mac 124513 bytes_out 0 124513 bytes_in 0 124513 station_ip 5.119.61.140 124513 port 101 124513 unique_id port 124513 remote_ip 10.8.1.174 124516 username zare 124516 mac 124516 bytes_out 0 124516 bytes_in 0 124516 station_ip 37.27.1.196 124516 port 122 124516 unique_id port 124521 username musa 124521 mac 124521 bytes_out 102154 124521 bytes_in 103672 124521 station_ip 83.123.145.88 124521 port 188 124521 unique_id port 124521 remote_ip 10.8.0.6 124523 username zare 124523 mac 124523 bytes_out 0 124523 bytes_in 0 124523 station_ip 37.27.1.196 124523 port 170 124523 unique_id port 124523 remote_ip 10.8.0.18 124526 username barzegar 124526 mac 124526 bytes_out 0 124526 bytes_in 0 124526 station_ip 5.119.61.140 124526 port 188 124526 unique_id port 124526 remote_ip 10.8.0.234 124529 username mehdizare 124529 mac 124529 bytes_out 7192 124529 bytes_in 14376 124529 station_ip 5.120.59.106 124529 port 188 124529 unique_id port 124529 remote_ip 10.8.0.90 124533 username milan 124533 kill_reason Another user logged on this global unique id 124533 mac 124533 bytes_out 0 124533 bytes_in 0 124533 station_ip 5.120.94.171 124533 port 105 124533 unique_id port 124533 remote_ip 10.8.1.178 124535 username bcboard 124535 unique_id port 124535 terminate_cause User-Request 124535 bytes_out 28183652 124535 bytes_in 881562120 124535 station_ip 37.129.8.55 124535 port 15729897 124535 nas_port_type Virtual 124535 remote_ip 5.5.5.254 124543 username barzegar 124543 mac 124543 bytes_out 0 124543 bytes_in 0 124543 station_ip 5.119.46.24 124543 port 196 124543 unique_id port 124543 remote_ip 10.8.0.234 124544 username barzegar 124544 mac 124544 bytes_out 0 124544 bytes_in 0 124544 station_ip 5.119.46.24 124544 port 196 124544 unique_id port 124544 remote_ip 10.8.0.234 124545 bytes_out 0 124545 bytes_in 0 124545 station_ip 5.119.46.24 124545 port 196 124545 unique_id port 124545 remote_ip 10.8.0.234 124546 username barzegar 124546 mac 124546 bytes_out 0 124546 bytes_in 0 124546 station_ip 5.119.46.24 124546 port 196 124546 unique_id port 124546 remote_ip 10.8.0.234 124550 username mehdizare 124550 mac 124550 bytes_out 0 124550 bytes_in 0 124550 station_ip 5.119.165.187 124550 port 101 124550 unique_id port 124550 remote_ip 10.8.1.42 124558 username houshang 124558 mac 124558 bytes_out 0 124558 bytes_in 0 124558 station_ip 5.119.123.246 124558 port 197 124558 unique_id port 124558 remote_ip 10.8.0.22 124561 username mehdizare 124561 kill_reason Another user logged on this global unique id 124561 mac 124561 bytes_out 0 124561 bytes_in 0 124561 station_ip 5.119.165.187 124561 port 188 124561 unique_id port 124562 username barzegar 124518 remote_ip 10.8.0.18 124527 username barzegar 124527 mac 124527 bytes_out 0 124527 bytes_in 0 124527 station_ip 5.119.61.140 124527 port 188 124527 unique_id port 124527 remote_ip 10.8.0.234 124536 username milan 124536 mac 124536 bytes_out 0 124536 bytes_in 0 124536 station_ip 5.120.94.171 124536 port 105 124536 unique_id port 124537 username barzegar 124537 mac 124537 bytes_out 0 124537 bytes_in 0 124537 station_ip 5.119.46.24 124537 port 196 124537 unique_id port 124537 remote_ip 10.8.0.234 124540 username barzegar 124540 mac 124540 bytes_out 0 124540 bytes_in 0 124540 station_ip 5.119.46.24 124540 port 196 124540 unique_id port 124540 remote_ip 10.8.0.234 124541 username barzegar 124541 mac 124541 bytes_out 0 124541 bytes_in 0 124541 station_ip 5.119.46.24 124541 port 196 124541 unique_id port 124541 remote_ip 10.8.0.234 124542 username barzegar 124542 mac 124542 bytes_out 0 124542 bytes_in 0 124542 station_ip 5.119.46.24 124542 port 196 124542 unique_id port 124542 remote_ip 10.8.0.234 124547 username mehdizare 124547 mac 124547 bytes_out 166307 124547 bytes_in 254665 124547 station_ip 5.119.165.187 124547 port 188 124547 unique_id port 124547 remote_ip 10.8.0.90 124548 username barzegar 124548 mac 124548 bytes_out 2320 124548 bytes_in 4421 124548 station_ip 5.119.46.24 124548 port 188 124548 unique_id port 124548 remote_ip 10.8.0.234 124549 username mehdizare 124549 mac 124549 bytes_out 20040 124549 bytes_in 20293 124549 station_ip 5.119.165.187 124549 port 196 124549 unique_id port 124549 remote_ip 10.8.0.90 124551 username barzegar 124551 mac 124551 bytes_out 0 124551 bytes_in 0 124551 station_ip 5.119.46.24 124551 port 196 124551 unique_id port 124551 remote_ip 10.8.0.234 124556 username barzegar 124556 mac 124556 bytes_out 0 124556 bytes_in 0 124556 station_ip 5.119.46.24 124556 port 197 124556 unique_id port 124556 remote_ip 10.8.0.234 124557 username mehdizare 124557 kill_reason Another user logged on this global unique id 124557 mac 124557 bytes_out 0 124557 bytes_in 0 124557 station_ip 5.119.165.187 124557 port 188 124557 unique_id port 124560 username barzegar 124560 mac 124560 bytes_out 0 124560 bytes_in 0 124560 station_ip 5.119.46.24 124560 port 197 124560 unique_id port 124560 remote_ip 10.8.0.234 124568 username jafari 124568 kill_reason Another user logged on this global unique id 124568 mac 124568 bytes_out 0 124568 bytes_in 0 124568 station_ip 5.200.119.215 124568 port 196 124568 unique_id port 124569 username tahmasebi 124569 kill_reason Another user logged on this global unique id 124569 mac 124569 bytes_out 0 124569 bytes_in 0 124569 station_ip 5.119.127.237 124569 port 169 124569 unique_id port 124573 username tahmasebi 124573 kill_reason Another user logged on this global unique id 124573 mac 124573 bytes_out 0 124573 bytes_in 0 124573 station_ip 5.119.127.237 124573 port 169 124573 unique_id port 124574 username barzegar 124574 mac 124574 bytes_out 0 124574 bytes_in 0 124574 station_ip 5.119.46.24 124574 port 101 124574 unique_id port 124574 remote_ip 10.8.1.174 124580 username jafari 124580 mac 124580 bytes_out 0 124580 bytes_in 0 124580 station_ip 5.200.119.215 124580 port 196 124580 unique_id port 124583 username jafari 124583 mac 124583 bytes_out 1487761 124583 bytes_in 23257793 124583 station_ip 89.32.102.25 124583 port 105 124583 unique_id port 124583 remote_ip 10.8.1.198 124584 username barzegar 124584 mac 124519 kill_reason Maximum check online fails reached 124519 mac 124519 bytes_out 0 124519 bytes_in 0 124519 station_ip 37.27.1.196 124519 port 122 124519 unique_id port 124520 username barzegar 124520 mac 124520 bytes_out 0 124520 bytes_in 0 124520 station_ip 5.119.61.140 124520 port 101 124520 unique_id port 124520 remote_ip 10.8.1.174 124522 username zare 124522 mac 124522 bytes_out 158476 124522 bytes_in 1977683 124522 station_ip 37.27.1.196 124522 port 170 124522 unique_id port 124522 remote_ip 10.8.0.18 124524 username zare 124524 kill_reason Maximum check online fails reached 124524 mac 124524 bytes_out 0 124524 bytes_in 0 124524 station_ip 37.27.1.196 124524 port 170 124524 unique_id port 124525 username zare 124525 mac 124525 bytes_out 62136 124525 bytes_in 761547 124525 station_ip 37.27.1.196 124525 port 188 124525 unique_id port 124525 remote_ip 10.8.0.18 124528 username mehdizare 124528 mac 124528 bytes_out 0 124528 bytes_in 0 124528 station_ip 5.120.59.106 124528 port 207 124528 unique_id port 124530 username barzegar 124530 mac 124530 bytes_out 0 124530 bytes_in 0 124530 station_ip 5.119.46.24 124530 port 188 124530 unique_id port 124530 remote_ip 10.8.0.234 124531 username barzegar 124531 mac 124531 bytes_out 0 124531 bytes_in 0 124531 station_ip 5.119.46.24 124531 port 188 124531 unique_id port 124531 remote_ip 10.8.0.234 124532 username mehdizare 124532 mac 124532 bytes_out 0 124532 bytes_in 0 124532 station_ip 5.119.165.187 124532 port 196 124532 unique_id port 124532 remote_ip 10.8.0.90 124534 username barzegar 124534 mac 124534 bytes_out 0 124534 bytes_in 0 124534 station_ip 5.119.46.24 124534 port 196 124534 unique_id port 124534 remote_ip 10.8.0.234 124538 username barzegar 124538 mac 124538 bytes_out 0 124538 bytes_in 0 124538 station_ip 5.119.46.24 124538 port 196 124538 unique_id port 124538 remote_ip 10.8.0.234 124539 username barzegar 124539 mac 124539 bytes_out 0 124539 bytes_in 0 124539 station_ip 5.119.46.24 124539 port 196 124539 unique_id port 124539 remote_ip 10.8.0.234 124552 username barzegar 124552 mac 124552 bytes_out 0 124552 bytes_in 0 124552 station_ip 5.119.46.24 124552 port 196 124552 unique_id port 124552 remote_ip 10.8.0.234 124553 username barzegar 124553 mac 124553 bytes_out 0 124553 bytes_in 0 124553 station_ip 5.119.46.24 124553 port 196 124553 unique_id port 124553 remote_ip 10.8.0.234 124554 username barzegar 124554 mac 124554 bytes_out 0 124554 bytes_in 0 124554 station_ip 5.119.46.24 124554 port 197 124554 unique_id port 124554 remote_ip 10.8.0.234 124555 username mehdizare 124555 kill_reason Another user logged on this global unique id 124555 mac 124555 bytes_out 0 124555 bytes_in 0 124555 station_ip 5.119.165.187 124555 port 188 124555 unique_id port 124555 remote_ip 10.8.0.90 124559 username mehdizare 124559 kill_reason Another user logged on this global unique id 124559 mac 124559 bytes_out 0 124559 bytes_in 0 124559 station_ip 5.119.165.187 124559 port 188 124559 unique_id port 124565 username barzegar 124565 mac 124565 bytes_out 0 124565 bytes_in 0 124565 station_ip 5.119.46.24 124565 port 197 124565 unique_id port 124565 remote_ip 10.8.0.234 124570 username hamidsalari 124570 mac 124570 bytes_out 0 124570 bytes_in 0 124570 station_ip 5.119.72.239 124570 port 135 124570 unique_id port 124570 remote_ip 10.8.0.230 124571 username barzegar 124571 mac 124571 bytes_out 0 124562 mac 124562 bytes_out 0 124562 bytes_in 0 124562 station_ip 5.119.46.24 124562 port 197 124562 unique_id port 124562 remote_ip 10.8.0.234 124563 username barzegar 124563 mac 124563 bytes_out 0 124563 bytes_in 0 124563 station_ip 5.119.46.24 124563 port 197 124563 unique_id port 124563 remote_ip 10.8.0.234 124564 username sedighe 124564 mac 124564 bytes_out 0 124564 bytes_in 0 124564 station_ip 83.123.88.98 124564 port 196 124564 unique_id port 124564 remote_ip 10.8.0.146 124566 username jafari 124566 kill_reason Another user logged on this global unique id 124566 mac 124566 bytes_out 0 124566 bytes_in 0 124566 station_ip 5.200.119.215 124566 port 196 124566 unique_id port 124566 remote_ip 10.8.0.242 124567 username barzegar 124567 mac 124567 bytes_out 0 124567 bytes_in 0 124567 station_ip 5.119.46.24 124567 port 197 124567 unique_id port 124567 remote_ip 10.8.0.234 124572 username jafari 124572 kill_reason Another user logged on this global unique id 124572 mac 124572 bytes_out 0 124572 bytes_in 0 124572 station_ip 5.200.119.215 124572 port 196 124572 unique_id port 124576 username barzegar 124576 mac 124576 bytes_out 0 124576 bytes_in 0 124576 station_ip 5.119.46.24 124576 port 101 124576 unique_id port 124576 remote_ip 10.8.1.174 124579 username barzegar 124579 mac 124579 bytes_out 0 124579 bytes_in 0 124579 station_ip 5.119.46.24 124579 port 101 124579 unique_id port 124579 remote_ip 10.8.1.174 124588 username barzegar 124588 mac 124588 bytes_out 0 124588 bytes_in 0 124588 station_ip 5.119.46.24 124588 port 197 124588 unique_id port 124588 remote_ip 10.8.0.234 124589 username forozande 124589 mac 124589 bytes_out 0 124589 bytes_in 0 124589 station_ip 83.122.218.107 124589 port 196 124589 unique_id port 124589 remote_ip 10.8.0.74 124590 username mirzaei 124590 kill_reason Another user logged on this global unique id 124590 mac 124590 bytes_out 0 124590 bytes_in 0 124590 station_ip 5.120.131.48 124590 port 85 124590 unique_id port 124591 username mohsenaskari 124591 mac 124591 bytes_out 137504 124591 bytes_in 1139015 124591 station_ip 46.225.212.144 124591 port 197 124591 unique_id port 124591 remote_ip 10.8.0.246 124594 username forozande 124594 mac 124594 bytes_out 11416 124594 bytes_in 20696 124594 station_ip 83.122.30.142 124594 port 135 124594 unique_id port 124594 remote_ip 10.8.0.74 124596 username rezasekonji 124596 mac 124596 bytes_out 0 124596 bytes_in 0 124596 station_ip 37.129.215.26 124596 port 135 124596 unique_id port 124596 remote_ip 10.8.0.130 124600 username forozande 124600 mac 124600 bytes_out 0 124600 bytes_in 0 124600 station_ip 37.129.69.200 124600 port 135 124600 unique_id port 124600 remote_ip 10.8.0.74 124602 username barzegar 124602 kill_reason Another user logged on this global unique id 124602 mac 124602 bytes_out 0 124602 bytes_in 0 124602 station_ip 5.119.46.24 124602 port 196 124602 unique_id port 124606 username tahmasebi 124606 kill_reason Another user logged on this global unique id 124606 mac 124606 bytes_out 0 124606 bytes_in 0 124606 station_ip 5.119.127.237 124606 port 169 124606 unique_id port 124607 username barzegar 124607 kill_reason Another user logged on this global unique id 124607 mac 124607 bytes_out 0 124607 bytes_in 0 124607 station_ip 5.119.46.24 124607 port 196 124607 unique_id port 124608 username moradi 124608 mac 124608 bytes_out 0 124608 bytes_in 0 124608 station_ip 113.203.97.229 124608 port 201 124608 unique_id port 124608 remote_ip 10.8.0.250 124571 bytes_in 0 124571 station_ip 5.119.46.24 124571 port 101 124571 unique_id port 124571 remote_ip 10.8.1.174 124575 username jafari 124575 kill_reason Another user logged on this global unique id 124575 mac 124575 bytes_out 0 124575 bytes_in 0 124575 station_ip 5.200.119.215 124575 port 196 124575 unique_id port 124577 username mohammadjavad 124577 mac 124577 bytes_out 0 124577 bytes_in 0 124577 station_ip 37.129.253.29 124577 port 101 124577 unique_id port 124577 remote_ip 10.8.1.146 124578 username mohsenaskari 124578 mac 124578 bytes_out 496725 124578 bytes_in 4469732 124578 station_ip 46.225.212.144 124578 port 135 124578 unique_id port 124578 remote_ip 10.8.0.246 124581 username moradi 124581 kill_reason Another user logged on this global unique id 124581 mac 124581 bytes_out 0 124581 bytes_in 0 124581 station_ip 113.203.115.49 124581 port 135 124581 unique_id port 124581 remote_ip 10.8.0.250 124582 username barzegar 124582 mac 124582 bytes_out 0 124582 bytes_in 0 124582 station_ip 5.119.46.24 124582 port 101 124582 unique_id port 124582 remote_ip 10.8.1.174 124587 username moradi 124587 kill_reason Another user logged on this global unique id 124587 mac 124587 bytes_out 0 124587 bytes_in 0 124587 station_ip 113.203.115.49 124587 port 135 124587 unique_id port 124592 username barzegar 124592 kill_reason Another user logged on this global unique id 124592 mac 124592 bytes_out 0 124592 bytes_in 0 124592 station_ip 5.119.46.24 124592 port 196 124592 unique_id port 124592 remote_ip 10.8.0.234 124593 username moradi 124593 mac 124593 bytes_out 0 124593 bytes_in 0 124593 station_ip 113.203.115.49 124593 port 135 124593 unique_id port 124595 username barzegar 124595 kill_reason Another user logged on this global unique id 124595 mac 124595 bytes_out 0 124595 bytes_in 0 124595 station_ip 5.119.46.24 124595 port 196 124595 unique_id port 124597 username mosi 124597 kill_reason Another user logged on this global unique id 124597 mac 124597 bytes_out 0 124597 bytes_in 0 124597 station_ip 151.235.122.242 124597 port 199 124597 unique_id port 124597 remote_ip 10.8.0.138 124604 username barzegar 124604 kill_reason Another user logged on this global unique id 124604 mac 124604 bytes_out 0 124604 bytes_in 0 124604 station_ip 5.119.46.24 124604 port 196 124604 unique_id port 124605 username mirzaei 124605 kill_reason Maximum check online fails reached 124605 mac 124605 bytes_out 0 124605 bytes_in 0 124605 station_ip 5.119.93.38 124605 port 85 124605 unique_id port 124605 remote_ip 10.8.1.30 124611 username barzegar 124611 mac 124611 bytes_out 0 124611 bytes_in 0 124611 station_ip 5.119.46.24 124611 port 196 124611 unique_id port 124611 remote_ip 10.8.0.234 124612 username sedighe 124612 mac 124612 bytes_out 0 124612 bytes_in 0 124612 station_ip 37.129.90.54 124612 port 201 124612 unique_id port 124612 remote_ip 10.8.0.146 124613 username barzegar 124613 mac 124613 bytes_out 0 124613 bytes_in 0 124613 station_ip 5.119.46.24 124613 port 196 124613 unique_id port 124613 remote_ip 10.8.0.234 124615 username barzegar 124615 mac 124615 bytes_out 0 124615 bytes_in 0 124615 station_ip 5.119.46.24 124615 port 200 124615 unique_id port 124615 remote_ip 10.8.0.234 124616 username mosi 124616 kill_reason Another user logged on this global unique id 124616 mac 124616 bytes_out 0 124616 bytes_in 0 124616 station_ip 151.235.122.242 124616 port 199 124616 unique_id port 124618 username hamidsalari1 124618 mac 124618 bytes_out 0 124618 bytes_in 0 124618 station_ip 83.123.113.243 124618 port 187 124584 bytes_out 0 124584 bytes_in 0 124584 station_ip 5.119.46.24 124584 port 196 124584 unique_id port 124584 remote_ip 10.8.0.234 124585 username moradi 124585 kill_reason Another user logged on this global unique id 124585 mac 124585 bytes_out 0 124585 bytes_in 0 124585 station_ip 113.203.115.49 124585 port 135 124585 unique_id port 124586 username barzegar 124586 mac 124586 bytes_out 0 124586 bytes_in 0 124586 station_ip 5.119.46.24 124586 port 197 124586 unique_id port 124586 remote_ip 10.8.0.234 124598 username barzegar 124598 kill_reason Another user logged on this global unique id 124598 mac 124598 bytes_out 0 124598 bytes_in 0 124598 station_ip 5.119.46.24 124598 port 196 124598 unique_id port 124599 username mirzaei 124599 mac 124599 bytes_out 0 124599 bytes_in 0 124599 station_ip 5.120.131.48 124599 port 85 124599 unique_id port 124601 username barzegar 124601 kill_reason Another user logged on this global unique id 124601 mac 124601 bytes_out 0 124601 bytes_in 0 124601 station_ip 5.119.46.24 124601 port 196 124601 unique_id port 124603 username mohammadjavad 124603 mac 124603 bytes_out 679513 124603 bytes_in 11047077 124603 station_ip 83.123.246.204 124603 port 101 124603 unique_id port 124603 remote_ip 10.8.1.146 124609 username sedighe 124609 mac 124609 bytes_out 0 124609 bytes_in 0 124609 station_ip 37.129.90.54 124609 port 200 124609 unique_id port 124609 remote_ip 10.8.0.146 124610 username barzegar 124610 mac 124610 bytes_out 0 124610 bytes_in 0 124610 station_ip 5.119.46.24 124610 port 196 124610 unique_id port 124614 username mosi 124614 kill_reason Another user logged on this global unique id 124614 mac 124614 bytes_out 0 124614 bytes_in 0 124614 station_ip 151.235.122.242 124614 port 199 124614 unique_id port 124617 username barzegar 124617 mac 124617 bytes_out 0 124617 bytes_in 0 124617 station_ip 5.119.46.24 124617 port 200 124617 unique_id port 124617 remote_ip 10.8.0.234 124620 username barzegar 124620 mac 124620 bytes_out 0 124620 bytes_in 0 124620 station_ip 5.119.46.24 124620 port 187 124620 unique_id port 124620 remote_ip 10.8.0.234 124621 username zare 124621 mac 124621 bytes_out 0 124621 bytes_in 0 124621 station_ip 94.183.214.14 124621 port 135 124621 unique_id port 124621 remote_ip 10.8.0.18 124626 username mehdizare 124626 mac 124626 bytes_out 0 124626 bytes_in 0 124626 station_ip 5.119.165.187 124626 port 188 124626 unique_id port 124628 username sedighe 124628 mac 124628 bytes_out 0 124628 bytes_in 0 124628 station_ip 37.129.90.54 124628 port 196 124628 unique_id port 124628 remote_ip 10.8.0.146 124629 username zare 124629 mac 124629 bytes_out 0 124629 bytes_in 0 124629 station_ip 94.183.214.14 124629 port 200 124629 unique_id port 124629 remote_ip 10.8.0.18 124635 username mohsenaskari 124635 mac 124635 bytes_out 0 124635 bytes_in 0 124635 station_ip 46.225.212.144 124635 port 201 124635 unique_id port 124635 remote_ip 10.8.0.246 124636 username barzegar 124636 mac 124636 bytes_out 0 124636 bytes_in 0 124636 station_ip 5.119.46.24 124636 port 196 124636 unique_id port 124636 remote_ip 10.8.0.234 124638 username zare 124638 mac 124638 bytes_out 0 124638 bytes_in 0 124638 station_ip 94.183.214.14 124638 port 196 124638 unique_id port 124638 remote_ip 10.8.0.18 124643 username hamidsalari1 124643 mac 124643 bytes_out 0 124643 bytes_in 0 124643 station_ip 83.123.113.243 124643 port 101 124643 unique_id port 124618 unique_id port 124618 remote_ip 10.8.0.226 124623 username mosi 124623 kill_reason Another user logged on this global unique id 124623 mac 124623 bytes_out 0 124623 bytes_in 0 124623 station_ip 151.235.122.242 124623 port 199 124623 unique_id port 124624 username zare 124624 mac 124624 bytes_out 0 124624 bytes_in 0 124624 station_ip 94.183.214.14 124624 port 135 124624 unique_id port 124624 remote_ip 10.8.0.18 124631 username zare 124631 mac 124631 bytes_out 0 124631 bytes_in 0 124631 station_ip 94.183.214.14 124631 port 196 124631 unique_id port 124631 remote_ip 10.8.0.18 124632 username zare 124632 mac 124632 bytes_out 0 124632 bytes_in 0 124632 station_ip 94.183.214.14 124632 port 196 124632 unique_id port 124632 remote_ip 10.8.0.18 124633 username zare 124633 mac 124633 bytes_out 0 124633 bytes_in 0 124633 station_ip 94.183.214.14 124633 port 200 124633 unique_id port 124633 remote_ip 10.8.0.18 124639 username zare 124639 mac 124639 bytes_out 0 124639 bytes_in 0 124639 station_ip 94.183.214.14 124639 port 196 124639 unique_id port 124639 remote_ip 10.8.0.18 124640 username zare 124640 mac 124640 bytes_out 0 124640 bytes_in 0 124640 station_ip 94.183.214.14 124640 port 196 124640 unique_id port 124640 remote_ip 10.8.0.18 124641 username barzegar 124641 mac 124641 bytes_out 0 124641 bytes_in 0 124641 station_ip 5.119.46.24 124641 port 196 124641 unique_id port 124641 remote_ip 10.8.0.234 124644 username zare 124644 mac 124644 bytes_out 0 124644 bytes_in 0 124644 station_ip 94.183.214.14 124644 port 196 124644 unique_id port 124644 remote_ip 10.8.0.18 124647 username zare 124647 mac 124647 bytes_out 0 124647 bytes_in 0 124647 station_ip 94.183.214.14 124647 port 200 124647 unique_id port 124647 remote_ip 10.8.0.18 124653 username barzegar 124653 mac 124653 bytes_out 0 124653 bytes_in 0 124653 station_ip 5.119.46.24 124653 port 135 124653 unique_id port 124653 remote_ip 10.8.0.234 124657 username tahmasebi 124657 mac 124657 bytes_out 0 124657 bytes_in 0 124657 station_ip 5.119.127.237 124657 port 169 124657 unique_id port 124663 username barzegar 124663 mac 124663 bytes_out 0 124663 bytes_in 0 124663 station_ip 5.119.46.24 124663 port 106 124663 unique_id port 124663 remote_ip 10.8.1.174 124668 username aminvpn 124668 mac 124668 bytes_out 257394 124668 bytes_in 2871790 124668 station_ip 151.238.244.39 124668 port 135 124668 unique_id port 124668 remote_ip 10.8.0.14 124670 username aminvpn 124670 mac 124670 bytes_out 41842 124670 bytes_in 492079 124670 station_ip 37.129.92.180 124670 port 188 124670 unique_id port 124670 remote_ip 10.8.0.14 124673 username hamidsalari1 124673 mac 124673 bytes_out 0 124673 bytes_in 0 124673 station_ip 83.123.113.243 124673 port 101 124673 unique_id port 124673 remote_ip 10.8.1.170 124676 username tahmasebi 124676 mac 124676 bytes_out 7578 124676 bytes_in 11258 124676 station_ip 5.119.167.45 124676 port 106 124676 unique_id port 124676 remote_ip 10.8.1.90 124678 username barzegar 124678 mac 124678 bytes_out 0 124678 bytes_in 0 124678 station_ip 5.119.46.24 124678 port 200 124678 unique_id port 124678 remote_ip 10.8.0.234 124679 username zare 124679 mac 124679 bytes_out 0 124679 bytes_in 0 124679 station_ip 94.183.214.14 124679 port 200 124679 unique_id port 124679 remote_ip 10.8.0.18 124699 username zare 124699 mac 124699 bytes_out 0 124619 username forozande 124619 mac 124619 bytes_out 0 124619 bytes_in 0 124619 station_ip 83.122.61.3 124619 port 135 124619 unique_id port 124619 remote_ip 10.8.0.74 124622 username zare 124622 mac 124622 bytes_out 0 124622 bytes_in 0 124622 station_ip 94.183.214.14 124622 port 135 124622 unique_id port 124622 remote_ip 10.8.0.18 124625 username zare 124625 mac 124625 bytes_out 0 124625 bytes_in 0 124625 station_ip 94.183.214.14 124625 port 105 124625 unique_id port 124625 remote_ip 10.8.1.58 124627 username barzegar 124627 mac 124627 bytes_out 0 124627 bytes_in 0 124627 station_ip 5.119.46.24 124627 port 200 124627 unique_id port 124627 remote_ip 10.8.0.234 124630 username barzegar 124630 mac 124630 bytes_out 0 124630 bytes_in 0 124630 station_ip 5.119.46.24 124630 port 196 124630 unique_id port 124630 remote_ip 10.8.0.234 124634 username barzegar 124634 mac 124634 bytes_out 0 124634 bytes_in 0 124634 station_ip 5.119.46.24 124634 port 196 124634 unique_id port 124634 remote_ip 10.8.0.234 124637 username sabaghnezhad 124637 mac 124637 bytes_out 0 124637 bytes_in 0 124637 station_ip 83.123.170.164 124637 port 205 124637 unique_id port 124637 remote_ip 10.8.0.186 124642 username zare 124642 mac 124642 bytes_out 0 124642 bytes_in 0 124642 station_ip 94.183.214.14 124642 port 200 124642 unique_id port 124642 remote_ip 10.8.0.18 124645 username malekpoir 124645 kill_reason Another user logged on this global unique id 124645 mac 124645 bytes_out 0 124645 bytes_in 0 124645 station_ip 5.120.54.245 124645 port 197 124645 unique_id port 124645 remote_ip 10.8.0.58 124646 username zare 124646 mac 124646 bytes_out 0 124646 bytes_in 0 124646 station_ip 94.183.214.14 124646 port 196 124646 unique_id port 124646 remote_ip 10.8.0.18 124648 username zare 124648 mac 124648 bytes_out 0 124648 bytes_in 0 124648 station_ip 94.183.214.14 124648 port 200 124648 unique_id port 124648 remote_ip 10.8.0.18 124649 username zare 124649 mac 124649 bytes_out 0 124649 bytes_in 0 124649 station_ip 94.183.214.14 124649 port 200 124649 unique_id port 124649 remote_ip 10.8.0.18 124650 username barzegar 124650 mac 124650 bytes_out 0 124650 bytes_in 0 124650 station_ip 5.119.46.24 124650 port 196 124650 unique_id port 124650 remote_ip 10.8.0.234 124651 username malekpoir 124651 mac 124651 bytes_out 0 124651 bytes_in 0 124651 station_ip 5.120.54.245 124651 port 197 124651 unique_id port 124652 username forozande 124652 mac 124652 bytes_out 155041 124652 bytes_in 255143 124652 station_ip 83.123.52.6 124652 port 135 124652 unique_id port 124652 remote_ip 10.8.0.74 124655 username zare 124655 mac 124655 bytes_out 308385 124655 bytes_in 1005222 124655 station_ip 94.183.214.14 124655 port 106 124655 unique_id port 124655 remote_ip 10.8.1.58 124662 username mosi 124662 mac 124662 bytes_out 0 124662 bytes_in 0 124662 station_ip 151.235.122.242 124662 port 199 124662 unique_id port 124664 username zare 124664 mac 124664 bytes_out 0 124664 bytes_in 0 124664 station_ip 94.183.214.14 124664 port 169 124664 unique_id port 124664 remote_ip 10.8.0.18 124665 username mehdizare 124665 mac 124665 bytes_out 0 124665 bytes_in 0 124665 station_ip 5.119.165.187 124665 port 188 124665 unique_id port 124665 remote_ip 10.8.0.90 124667 username tahmasebi 124667 mac 124667 bytes_out 0 124667 bytes_in 0 124667 station_ip 5.119.167.45 124643 remote_ip 10.8.1.170 124654 username barzegar 124654 mac 124654 bytes_out 0 124654 bytes_in 0 124654 station_ip 5.119.46.24 124654 port 135 124654 unique_id port 124654 remote_ip 10.8.0.234 124656 username barzegar 124656 mac 124656 bytes_out 0 124656 bytes_in 0 124656 station_ip 5.119.46.24 124656 port 107 124656 unique_id port 124656 remote_ip 10.8.1.174 124658 username zare 124658 mac 124658 bytes_out 13542 124658 bytes_in 44041 124658 station_ip 94.183.214.14 124658 port 135 124658 unique_id port 124658 remote_ip 10.8.0.18 124659 username zare 124659 mac 124659 bytes_out 0 124659 bytes_in 0 124659 station_ip 94.183.214.14 124659 port 135 124659 unique_id port 124659 remote_ip 10.8.0.18 124660 username zare 124660 mac 124660 bytes_out 0 124660 bytes_in 0 124660 station_ip 94.183.214.14 124660 port 135 124660 unique_id port 124660 remote_ip 10.8.0.18 124661 username zare 124661 mac 124661 bytes_out 0 124661 bytes_in 0 124661 station_ip 94.183.214.14 124661 port 135 124661 unique_id port 124661 remote_ip 10.8.0.18 124666 username mohammadjavad 124666 mac 124666 bytes_out 438972 124666 bytes_in 4332249 124666 station_ip 37.27.1.6 124666 port 105 124666 unique_id port 124666 remote_ip 10.8.1.146 124680 username zare 124680 mac 124680 bytes_out 0 124680 bytes_in 0 124680 station_ip 94.183.214.14 124680 port 200 124680 unique_id port 124680 remote_ip 10.8.0.18 124683 username forozande 124683 mac 124683 bytes_out 0 124683 bytes_in 0 124683 station_ip 83.123.46.77 124683 port 200 124683 unique_id port 124683 remote_ip 10.8.0.74 124684 username zare 124684 mac 124684 bytes_out 0 124684 bytes_in 0 124684 station_ip 94.183.214.14 124684 port 200 124684 unique_id port 124684 remote_ip 10.8.0.18 124686 username mohsenaskari 124686 mac 124686 bytes_out 0 124686 bytes_in 0 124686 station_ip 46.225.212.144 124686 port 199 124686 unique_id port 124686 remote_ip 10.8.0.246 124687 username zare 124687 mac 124687 bytes_out 0 124687 bytes_in 0 124687 station_ip 94.183.214.14 124687 port 199 124687 unique_id port 124687 remote_ip 10.8.0.18 124690 username barzegar 124690 mac 124690 bytes_out 0 124690 bytes_in 0 124690 station_ip 5.119.46.24 124690 port 200 124690 unique_id port 124690 remote_ip 10.8.0.234 124692 username barzegar 124692 mac 124692 bytes_out 0 124692 bytes_in 0 124692 station_ip 5.119.46.24 124692 port 199 124692 unique_id port 124692 remote_ip 10.8.0.234 124693 username zare 124693 mac 124693 bytes_out 0 124693 bytes_in 0 124693 station_ip 94.183.214.14 124693 port 197 124693 unique_id port 124693 remote_ip 10.8.0.18 124696 username zare 124696 mac 124696 bytes_out 0 124696 bytes_in 0 124696 station_ip 94.183.214.14 124696 port 199 124696 unique_id port 124696 remote_ip 10.8.0.18 124700 username barzegar 124700 mac 124700 bytes_out 0 124700 bytes_in 0 124700 station_ip 5.119.46.24 124700 port 107 124700 unique_id port 124700 remote_ip 10.8.1.174 124707 username zare 124707 mac 124707 bytes_out 0 124707 bytes_in 0 124707 station_ip 94.183.214.14 124707 port 199 124707 unique_id port 124707 remote_ip 10.8.0.18 124710 username mosi 124710 mac 124710 bytes_out 0 124710 bytes_in 0 124710 station_ip 151.235.111.242 124710 port 188 124710 unique_id port 124710 remote_ip 10.8.0.138 124711 username tahmasebi 124711 mac 124711 bytes_out 0 124711 bytes_in 0 124667 port 106 124667 unique_id port 124667 remote_ip 10.8.1.90 124669 username mehdizare 124669 mac 124669 bytes_out 0 124669 bytes_in 0 124669 station_ip 5.119.165.187 124669 port 199 124669 unique_id port 124669 remote_ip 10.8.0.90 124671 username zare 124671 mac 124671 bytes_out 0 124671 bytes_in 0 124671 station_ip 94.183.214.14 124671 port 169 124671 unique_id port 124671 remote_ip 10.8.0.18 124672 username barzegar 124672 mac 124672 bytes_out 0 124672 bytes_in 0 124672 station_ip 5.119.46.24 124672 port 106 124672 unique_id port 124672 remote_ip 10.8.1.174 124674 username zare 124674 mac 124674 bytes_out 0 124674 bytes_in 0 124674 station_ip 94.183.214.14 124674 port 188 124674 unique_id port 124674 remote_ip 10.8.0.18 124675 username mosi 124675 mac 124675 bytes_out 74251 124675 bytes_in 131037 124675 station_ip 37.137.12.86 124675 port 197 124675 unique_id port 124675 remote_ip 10.8.0.138 124677 username zare 124677 mac 124677 bytes_out 0 124677 bytes_in 0 124677 station_ip 94.183.214.14 124677 port 199 124677 unique_id port 124677 remote_ip 10.8.0.18 124681 username zare 124681 mac 124681 bytes_out 0 124681 bytes_in 0 124681 station_ip 94.183.214.14 124681 port 201 124681 unique_id port 124681 remote_ip 10.8.0.18 124682 username zare 124682 mac 124682 bytes_out 0 124682 bytes_in 0 124682 station_ip 94.183.214.14 124682 port 201 124682 unique_id port 124682 remote_ip 10.8.0.18 124685 username zare 124685 mac 124685 bytes_out 0 124685 bytes_in 0 124685 station_ip 94.183.214.14 124685 port 200 124685 unique_id port 124685 remote_ip 10.8.0.18 124688 username tahmasebi 124688 mac 124688 bytes_out 10882 124688 bytes_in 15732 124688 station_ip 5.119.167.45 124688 port 197 124688 unique_id port 124688 remote_ip 10.8.0.42 124689 username mrg 124689 unique_id port 124689 terminate_cause Lost-Carrier 124689 bytes_out 2621858 124689 bytes_in 63321963 124689 station_ip 5.119.101.93 124689 port 15729898 124689 nas_port_type Virtual 124689 remote_ip 5.5.5.254 124691 username zare 124691 mac 124691 bytes_out 16227 124691 bytes_in 29859 124691 station_ip 94.183.214.14 124691 port 197 124691 unique_id port 124691 remote_ip 10.8.0.18 124694 username zare 124694 mac 124694 bytes_out 0 124694 bytes_in 0 124694 station_ip 94.183.214.14 124694 port 197 124694 unique_id port 124694 remote_ip 10.8.0.18 124695 username zare 124695 mac 124695 bytes_out 0 124695 bytes_in 0 124695 station_ip 94.183.214.14 124695 port 199 124695 unique_id port 124695 remote_ip 10.8.0.18 124697 username zare 124697 mac 124697 bytes_out 0 124697 bytes_in 0 124697 station_ip 94.183.214.14 124697 port 199 124697 unique_id port 124697 remote_ip 10.8.0.18 124698 username zare 124698 mac 124698 bytes_out 0 124698 bytes_in 0 124698 station_ip 94.183.214.14 124698 port 199 124698 unique_id port 124698 remote_ip 10.8.0.18 124701 username mohsenaskari 124701 mac 124701 bytes_out 467858 124701 bytes_in 3770671 124701 station_ip 46.225.212.144 124701 port 201 124701 unique_id port 124701 remote_ip 10.8.0.246 124703 username barzegar 124703 mac 124703 bytes_out 40002 124703 bytes_in 195895 124703 station_ip 5.119.46.24 124703 port 107 124703 unique_id port 124703 remote_ip 10.8.1.174 124704 username mohammadmahdi 124704 mac 124704 bytes_out 714028 124704 bytes_in 4475797 124704 station_ip 5.119.234.199 124704 port 200 124704 unique_id port 124699 bytes_in 0 124699 station_ip 94.183.214.14 124699 port 199 124699 unique_id port 124699 remote_ip 10.8.0.18 124702 username tahmasebi 124702 mac 124702 bytes_out 0 61942 username arezoo 61942 kill_reason Maximum check online fails reached 61942 mac 5.238.32.162:49226: Unknown host 61942 bytes_out 0 61942 bytes_in 0 61942 station_ip 5.238.32.162:49226 61942 port 1017 61942 unique_id port 124702 bytes_in 0 124702 station_ip 5.119.98.92 124702 port 106 124702 unique_id port 124702 remote_ip 10.8.1.90 124708 username mehdizare 124708 mac 124708 bytes_out 61157 124708 bytes_in 72973 124708 station_ip 5.119.165.187 124708 port 169 124708 unique_id port 124708 remote_ip 10.8.0.90 124712 username mohammadjavad 124712 mac 124712 bytes_out 117545 124712 bytes_in 1954958 124712 station_ip 83.122.206.23 124712 port 108 124712 unique_id port 124712 remote_ip 10.8.1.146 124715 username barzegar 124715 mac 124715 bytes_out 0 124715 bytes_in 0 124715 station_ip 5.119.46.24 124715 port 199 124715 unique_id port 124715 remote_ip 10.8.0.234 124721 username tahmasebi 124721 mac 124721 bytes_out 0 124721 bytes_in 0 124721 station_ip 5.120.117.111 124721 port 107 124721 unique_id port 124721 remote_ip 10.8.1.90 124724 username tahmasebi 124724 mac 124724 bytes_out 0 124724 bytes_in 0 124724 station_ip 5.120.117.111 124724 port 107 124724 unique_id port 124724 remote_ip 10.8.1.90 124725 username malekpoir 124725 kill_reason Another user logged on this global unique id 124725 mac 124725 bytes_out 0 124725 bytes_in 0 124725 station_ip 5.120.54.245 124725 port 188 124725 unique_id port 124725 remote_ip 10.8.0.58 124727 username zare 124727 mac 124727 bytes_out 0 124727 bytes_in 0 124727 station_ip 94.183.214.14 124727 port 107 124727 unique_id port 124727 remote_ip 10.8.1.58 124728 username moradi 124728 mac 124728 bytes_out 0 124728 bytes_in 0 124728 station_ip 46.225.214.123 124728 port 135 124728 unique_id port 124731 username sabaghnezhad 124731 mac 124731 bytes_out 14800 124731 bytes_in 18081 124731 station_ip 83.122.201.152 124731 port 108 124731 unique_id port 124731 remote_ip 10.8.1.130 124732 username zare 124732 kill_reason Maximum check online fails reached 124732 mac 124732 bytes_out 0 124732 bytes_in 0 124732 station_ip 94.183.214.14 124732 port 107 124732 unique_id port 124734 username barzegar 124734 mac 124734 bytes_out 65480 124734 bytes_in 76758 124734 station_ip 5.119.46.24 124734 port 109 124734 unique_id port 124734 remote_ip 10.8.1.174 124735 username mehdizare 124735 mac 124735 bytes_out 13741 124735 bytes_in 19630 124735 station_ip 5.119.165.187 124735 port 135 124735 unique_id port 124735 remote_ip 10.8.0.90 124736 username alihosseini1 124736 mac 124736 bytes_out 0 124736 bytes_in 0 124736 station_ip 5.119.184.17 124736 port 199 124736 unique_id port 124736 remote_ip 10.8.0.166 124739 username zare 124739 mac 124739 bytes_out 0 124739 bytes_in 0 124739 station_ip 94.183.214.14 124739 port 135 124739 unique_id port 124739 remote_ip 10.8.0.18 124748 username barzegar 124748 mac 124748 bytes_out 0 124748 bytes_in 0 124748 station_ip 5.119.46.24 124748 port 109 124748 unique_id port 124748 remote_ip 10.8.1.174 124751 username forozande 124751 mac 124751 bytes_out 0 124751 bytes_in 0 124751 station_ip 113.203.44.175 124751 port 199 124751 unique_id port 124751 remote_ip 10.8.0.74 124752 username zare 124752 mac 124752 bytes_out 0 124752 bytes_in 0 124704 remote_ip 10.8.0.54 124705 username forozande 124705 mac 124705 bytes_out 0 124705 bytes_in 0 124705 station_ip 83.123.244.237 124705 port 197 124705 unique_id port 124705 remote_ip 10.8.0.74 124706 username tahmasebi 124706 mac 124706 bytes_out 0 124706 bytes_in 0 124706 station_ip 5.119.98.92 124706 port 106 124706 unique_id port 124706 remote_ip 10.8.1.90 124709 username barzegar 124709 mac 124709 bytes_out 0 124709 bytes_in 0 124709 station_ip 5.119.46.24 124709 port 107 124709 unique_id port 124709 remote_ip 10.8.1.174 124716 username tahmasebi 124716 mac 124716 bytes_out 86263 124716 bytes_in 123927 124716 station_ip 5.113.166.97 124716 port 188 124716 unique_id port 124716 remote_ip 10.8.0.42 124717 username barzegar 124717 mac 124717 bytes_out 0 124717 bytes_in 0 124717 station_ip 5.119.46.24 124717 port 199 124717 unique_id port 124717 remote_ip 10.8.0.234 124718 username barzegar 124718 mac 124718 bytes_out 0 124718 bytes_in 0 124718 station_ip 5.119.46.24 124718 port 199 124718 unique_id port 124718 remote_ip 10.8.0.234 124722 username forozande 124722 mac 124722 bytes_out 336693 124722 bytes_in 3934828 124722 station_ip 37.129.209.124 124722 port 199 124722 unique_id port 124722 remote_ip 10.8.0.74 124723 username malekpoir 124723 mac 124723 bytes_out 92502 124723 bytes_in 109650 124723 station_ip 5.120.54.245 124723 port 196 124723 unique_id port 124723 remote_ip 10.8.0.58 124726 username zare 124726 mac 124726 bytes_out 108190 124726 bytes_in 347295 124726 station_ip 94.183.214.14 124726 port 106 124726 unique_id port 124726 remote_ip 10.8.1.58 124729 username malekpoir 124729 mac 124729 bytes_out 0 124729 bytes_in 0 124729 station_ip 5.120.54.245 124729 port 188 124729 unique_id port 124730 username mehdizare 124730 mac 124730 bytes_out 155337 124730 bytes_in 161824 124730 station_ip 5.119.165.187 124730 port 169 124730 unique_id port 124730 remote_ip 10.8.0.90 124740 username mohammadjavad 124740 mac 124740 bytes_out 162395 124740 bytes_in 1144409 124740 station_ip 83.123.206.138 124740 port 169 124740 unique_id port 124740 remote_ip 10.8.0.142 124742 username mehdizare 124742 mac 124742 bytes_out 12886 124742 bytes_in 19510 124742 station_ip 5.119.165.187 124742 port 203 124742 unique_id port 124742 remote_ip 10.8.0.90 124743 username zare 124743 mac 124743 bytes_out 88095 124743 bytes_in 1399537 124743 station_ip 94.183.214.14 124743 port 135 124743 unique_id port 124743 remote_ip 10.8.0.18 124746 username zare 124746 mac 124746 bytes_out 0 124746 bytes_in 0 124746 station_ip 94.183.214.14 124746 port 135 124746 unique_id port 124746 remote_ip 10.8.0.18 124759 username mehdizare 124759 mac 124759 bytes_out 0 124759 bytes_in 0 124759 station_ip 5.119.165.187 124759 port 169 124759 unique_id port 124759 remote_ip 10.8.0.90 124762 username sabaghnezhad 124762 mac 124762 bytes_out 0 124762 bytes_in 0 124762 station_ip 83.122.201.152 124762 port 108 124762 unique_id port 124762 remote_ip 10.8.1.130 124765 username mehdizare 124765 mac 124765 bytes_out 10488 124765 bytes_in 13616 124765 station_ip 5.119.165.187 124765 port 203 124765 unique_id port 124765 remote_ip 10.8.0.90 124766 username tahmasebi 124766 mac 124766 bytes_out 11938 124766 bytes_in 18611 124766 station_ip 5.114.131.8 124766 port 200 124766 unique_id port 124766 remote_ip 10.8.0.42 124768 username alirr 124768 kill_reason Relative expiration date has reached 124711 station_ip 5.119.98.92 124711 port 107 124711 unique_id port 124711 remote_ip 10.8.1.90 124713 username moradi 124713 kill_reason Another user logged on this global unique id 124713 mac 124713 bytes_out 0 124713 bytes_in 0 124713 station_ip 46.225.214.123 124713 port 135 124713 unique_id port 124713 remote_ip 10.8.0.250 124714 username forozande 124714 mac 124714 bytes_out 154782 124714 bytes_in 376520 124714 station_ip 83.123.209.240 124714 port 197 124714 unique_id port 124714 remote_ip 10.8.0.74 124719 username tahmasebi 124719 mac 124719 bytes_out 0 124719 bytes_in 0 124719 station_ip 5.120.117.111 124719 port 107 124719 unique_id port 124719 remote_ip 10.8.1.90 124720 username sabaghnezhad 124720 mac 124720 bytes_out 114763 124720 bytes_in 464673 124720 station_ip 83.122.201.152 124720 port 188 124720 unique_id port 124720 remote_ip 10.8.0.186 124733 username zare 124733 mac 124733 bytes_out 0 124733 bytes_in 0 124733 station_ip 94.183.214.14 124733 port 110 124733 unique_id port 124733 remote_ip 10.8.1.58 124737 username zare 124737 mac 124737 bytes_out 0 124737 bytes_in 0 124737 station_ip 94.183.214.14 124737 port 188 124737 unique_id port 124737 remote_ip 10.8.0.18 124738 username malekpoir 124738 mac 124738 bytes_out 0 124738 bytes_in 0 124738 station_ip 5.120.54.245 124738 port 202 124738 unique_id port 124738 remote_ip 10.8.0.58 124741 username barzegar 124741 mac 124741 bytes_out 0 124741 bytes_in 0 124741 station_ip 5.119.46.24 124741 port 109 124741 unique_id port 124741 remote_ip 10.8.1.174 124744 username zare 124744 mac 124744 bytes_out 0 124744 bytes_in 0 124744 station_ip 94.183.214.14 124744 port 135 124744 unique_id port 124744 remote_ip 10.8.0.18 124745 username zare 124745 mac 124745 bytes_out 0 124745 bytes_in 0 124745 station_ip 94.183.214.14 124745 port 135 124745 unique_id port 124745 remote_ip 10.8.0.18 124747 username sedighe 124747 kill_reason Another user logged on this global unique id 124747 mac 124747 bytes_out 0 124747 bytes_in 0 124747 station_ip 83.123.130.120 124747 port 201 124747 unique_id port 124747 remote_ip 10.8.0.146 124749 username tahmasebi 124749 mac 124749 bytes_out 155984 124749 bytes_in 130865 124749 station_ip 5.113.248.154 124749 port 106 124749 unique_id port 124749 remote_ip 10.8.1.90 124750 username zare 124750 mac 124750 bytes_out 0 124750 bytes_in 0 124750 station_ip 94.183.214.14 124750 port 135 124750 unique_id port 124750 remote_ip 10.8.0.18 124753 username zare 124753 mac 124753 bytes_out 0 124753 bytes_in 0 124753 station_ip 94.183.214.14 124753 port 135 124753 unique_id port 124753 remote_ip 10.8.0.18 124757 username alinezhad 124757 kill_reason Absolute expiration date has reached 124757 unique_id port 124757 bytes_out 0 124757 bytes_in 0 124757 station_ip 5.202.6.149 124757 port 15729903 124757 nas_port_type Virtual 124758 username alinezhad 124758 kill_reason Absolute expiration date has reached 124758 unique_id port 124758 bytes_out 0 124758 bytes_in 0 124758 station_ip 5.202.6.149 124758 port 15729904 124758 nas_port_type Virtual 124760 username barzegar 124760 mac 124760 bytes_out 4614 124760 bytes_in 7166 124760 station_ip 5.119.46.24 124760 port 200 124760 unique_id port 124760 remote_ip 10.8.0.234 124761 username tahmasebi 124761 mac 124761 bytes_out 18334 124761 bytes_in 18684 124761 station_ip 5.112.252.162 124761 port 203 124761 unique_id port 124761 remote_ip 10.8.0.42 124767 username alihosseini1 124767 mac 124752 station_ip 94.183.214.14 124752 port 135 124752 unique_id port 124752 remote_ip 10.8.0.18 124754 username afarin1 124754 mac 124754 bytes_out 0 124754 bytes_in 0 124754 station_ip 37.129.169.71 124754 port 200 124754 unique_id port 124754 remote_ip 10.8.0.118 124755 username zare 124755 mac 124755 bytes_out 0 124755 bytes_in 0 124755 station_ip 94.183.214.14 124755 port 135 124755 unique_id port 124755 remote_ip 10.8.0.18 124756 username zare 124756 mac 124756 bytes_out 0 124756 bytes_in 0 124756 station_ip 94.183.214.14 124756 port 135 124756 unique_id port 124756 remote_ip 10.8.0.18 124763 username amir 124763 kill_reason Another user logged on this global unique id 124763 mac 124763 bytes_out 0 124763 bytes_in 0 124763 station_ip 46.225.213.237 124763 port 196 124763 unique_id port 124763 remote_ip 10.8.0.50 124764 username sabaghnezhad 124764 mac 124764 bytes_out 0 124764 bytes_in 0 124764 station_ip 83.122.201.152 124764 port 108 124764 unique_id port 124764 remote_ip 10.8.1.130 124769 username alirr 124769 kill_reason Relative expiration date has reached 124769 unique_id port 124769 bytes_out 0 124769 bytes_in 0 124769 station_ip 31.56.218.229 124769 port 15729906 124769 nas_port_type Virtual 124771 username rostami 124771 kill_reason Another user logged on this global unique id 124771 mac 124771 bytes_out 0 124771 bytes_in 0 124771 station_ip 5.119.121.161 124771 port 197 124771 unique_id port 124771 remote_ip 10.8.0.194 124774 username hamidsalari1 124774 mac 124774 bytes_out 0 124774 bytes_in 0 124774 station_ip 83.123.113.243 124774 port 101 124774 unique_id port 124774 remote_ip 10.8.1.170 124776 username rezasekonji 124776 mac 124776 bytes_out 0 124776 bytes_in 0 124776 station_ip 83.122.5.60 124776 port 169 124776 unique_id port 124776 remote_ip 10.8.0.130 124785 username forozande 124785 mac 124785 bytes_out 288174 124785 bytes_in 3109758 124785 station_ip 83.123.196.230 124785 port 200 124785 unique_id port 124785 remote_ip 10.8.0.74 124786 username sedighe 124786 mac 124786 bytes_out 0 124786 bytes_in 0 124786 station_ip 83.123.130.120 124786 port 201 124786 unique_id port 124788 username amirabbas 124788 unique_id port 124788 terminate_cause User-Request 124788 bytes_out 19337113 124788 bytes_in 518040294 124788 station_ip 37.27.10.205 124788 port 15729899 124788 nas_port_type Virtual 124788 remote_ip 5.5.5.255 124789 username sabaghnezhad 124789 mac 124789 bytes_out 0 124789 bytes_in 0 124789 station_ip 83.122.201.152 124789 port 108 124789 unique_id port 124789 remote_ip 10.8.1.130 124793 username moradi 124793 mac 124793 bytes_out 0 124793 bytes_in 0 124793 station_ip 37.129.64.59 124793 port 106 124793 unique_id port 124793 remote_ip 10.8.1.202 124795 username barzegar 124795 mac 124795 bytes_out 0 124795 bytes_in 0 124795 station_ip 5.119.46.24 124795 port 110 124795 unique_id port 124795 remote_ip 10.8.1.174 124798 username barzegar 124798 mac 124798 bytes_out 0 124798 bytes_in 0 124798 station_ip 5.119.46.24 124798 port 108 124798 unique_id port 124798 remote_ip 10.8.1.174 124800 username mohsenaskari 124800 mac 124800 bytes_out 0 124800 bytes_in 0 124800 station_ip 46.225.212.144 124800 port 205 124800 unique_id port 124800 remote_ip 10.8.0.246 124805 username malekpoir 124805 mac 124805 bytes_out 75655 124805 bytes_in 99268 124805 station_ip 5.120.54.245 124805 port 188 124805 unique_id port 124805 remote_ip 10.8.0.58 124810 username zare 124810 mac 124767 bytes_out 474557 124767 bytes_in 6279759 124767 station_ip 5.119.184.17 124767 port 205 124767 unique_id port 124767 remote_ip 10.8.0.166 124770 username alirr 124770 kill_reason Relative expiration date has reached 124770 unique_id port 124770 bytes_out 0 124770 bytes_in 0 124770 station_ip 31.56.218.229 124770 port 15729907 124770 nas_port_type Virtual 124772 username mehdizare 124772 mac 124772 bytes_out 9924 124772 bytes_in 13411 124772 station_ip 5.119.165.187 124772 port 203 124772 unique_id port 124772 remote_ip 10.8.0.90 124773 username alirr 124773 kill_reason Relative expiration date has reached 124773 unique_id port 124773 bytes_out 0 124773 bytes_in 0 124773 station_ip 31.56.218.229 124773 port 15729908 124773 nas_port_type Virtual 124775 username alihosseini1 124775 mac 124775 bytes_out 0 124775 bytes_in 0 124775 station_ip 5.119.184.17 124775 port 101 124775 unique_id port 124775 remote_ip 10.8.1.106 124778 username hamidsalari1 124778 mac 124778 bytes_out 16545 124778 bytes_in 23258 124778 station_ip 83.123.113.243 124778 port 200 124778 unique_id port 124778 remote_ip 10.8.0.226 124781 username alihosseini1 124781 mac 124781 bytes_out 13292 124781 bytes_in 18247 124781 station_ip 5.119.184.17 124781 port 169 124781 unique_id port 124781 remote_ip 10.8.0.166 124784 username barzegar 124784 mac 124784 bytes_out 0 124784 bytes_in 0 124784 station_ip 5.119.46.24 124784 port 208 124784 unique_id port 124784 remote_ip 10.8.0.234 124787 username sabaghnezhad 124787 mac 124787 bytes_out 23229 124787 bytes_in 38331 124787 station_ip 83.122.201.152 124787 port 207 124787 unique_id port 124787 remote_ip 10.8.0.186 124790 username sedighe 124790 mac 124790 bytes_out 0 124790 bytes_in 0 124790 station_ip 83.123.130.120 124790 port 200 124790 unique_id port 124790 remote_ip 10.8.0.146 124791 username alihosseini1 124791 mac 124791 bytes_out 11674 124791 bytes_in 26682 124791 station_ip 5.119.184.17 124791 port 201 124791 unique_id port 124791 remote_ip 10.8.0.166 124792 username mehdizare 124792 mac 124792 bytes_out 0 124792 bytes_in 0 124792 station_ip 5.119.165.187 124792 port 101 124792 unique_id port 124792 remote_ip 10.8.1.42 124797 username sedighe 124797 mac 124797 bytes_out 32422 124797 bytes_in 44029 124797 station_ip 83.123.68.33 124797 port 207 124797 unique_id port 124797 remote_ip 10.8.0.146 124803 username alihosseini1 124803 mac 124803 bytes_out 0 124803 bytes_in 0 124803 station_ip 5.119.184.17 124803 port 201 124803 unique_id port 124803 remote_ip 10.8.0.166 124806 username rezaei 124806 mac 124806 bytes_out 0 124806 bytes_in 0 124806 station_ip 5.120.39.4 124806 port 109 124806 unique_id port 124806 remote_ip 10.8.1.150 124807 username zare 124807 mac 124807 bytes_out 0 124807 bytes_in 0 124807 station_ip 94.183.214.14 124807 port 188 124807 unique_id port 124807 remote_ip 10.8.0.18 124808 username zare 124808 mac 124808 bytes_out 0 124808 bytes_in 0 124808 station_ip 94.183.214.14 124808 port 188 124808 unique_id port 124808 remote_ip 10.8.0.18 124818 username alihosseini1 124818 mac 124818 bytes_out 0 124818 bytes_in 0 124818 station_ip 5.119.184.17 124818 port 188 124818 unique_id port 124818 remote_ip 10.8.0.166 124819 username zare 124819 mac 124819 bytes_out 0 124819 bytes_in 0 124819 station_ip 94.183.214.14 124819 port 108 124819 unique_id port 124819 remote_ip 10.8.1.58 124820 username sedighe 124820 mac 124820 bytes_out 0 124768 unique_id port 124768 bytes_out 0 124768 bytes_in 0 124768 station_ip 31.56.218.229 124768 port 15729905 124768 nas_port_type Virtual 124777 username mehdizare 124777 mac 124777 bytes_out 6822 124777 bytes_in 10296 124777 station_ip 5.119.165.187 124777 port 203 124777 unique_id port 124777 remote_ip 10.8.0.90 124779 username alirr 124779 kill_reason Relative expiration date has reached 124779 unique_id port 124779 bytes_out 0 124779 bytes_in 0 124779 station_ip 31.56.218.229 124779 port 15729910 124779 nas_port_type Virtual 124780 username mostafa_es78 124780 unique_id port 124780 terminate_cause User-Request 124780 bytes_out 933966 124780 bytes_in 182631 124780 station_ip 5.126.101.84 124780 port 15729909 124780 nas_port_type Virtual 124780 remote_ip 5.5.5.252 124782 username mansur 124782 mac 124782 bytes_out 299637 124782 bytes_in 1458149 124782 station_ip 5.119.24.105 124782 port 202 124782 unique_id port 124782 remote_ip 10.8.0.210 124783 username tahmasebi 124783 mac 124783 bytes_out 6043 124783 bytes_in 13607 124783 station_ip 5.120.186.138 124783 port 200 124783 unique_id port 124783 remote_ip 10.8.0.42 124794 username rezasekonji 124794 mac 124794 bytes_out 36548 124794 bytes_in 86973 124794 station_ip 83.122.5.60 124794 port 202 124794 unique_id port 124794 remote_ip 10.8.0.130 124796 username sabaghnezhad 124796 mac 124796 bytes_out 6561 124796 bytes_in 10462 124796 station_ip 83.122.201.152 124796 port 108 124796 unique_id port 124796 remote_ip 10.8.1.130 124799 username ahmadipour 124799 unique_id port 124799 terminate_cause Lost-Carrier 124799 bytes_out 1170142 124799 bytes_in 25774472 124799 station_ip 83.122.50.30 124799 port 15729911 124799 nas_port_type Virtual 124799 remote_ip 5.5.5.252 124801 username amir 124801 kill_reason Another user logged on this global unique id 124801 mac 124801 bytes_out 0 124801 bytes_in 0 124801 station_ip 46.225.213.237 124801 port 196 124801 unique_id port 124802 username zare 124802 mac 124802 bytes_out 514376 124802 bytes_in 2943318 124802 station_ip 94.183.214.14 124802 port 135 124802 unique_id port 124802 remote_ip 10.8.0.18 62071 username arezoo 62071 kill_reason Maximum check online fails reached 62071 mac 5.237.81.56:49528: Unknown host 62071 bytes_out 0 62071 bytes_in 0 62071 station_ip 5.237.81.56:49528 62071 port 1017 62071 unique_id port 124804 username zare 124804 mac 124804 bytes_out 0 124804 bytes_in 0 124804 station_ip 94.183.214.14 124804 port 135 124804 unique_id port 124804 remote_ip 10.8.0.18 124809 username mehdizare 124809 mac 124809 bytes_out 13471 124809 bytes_in 19049 124809 station_ip 5.119.165.187 124809 port 108 124809 unique_id port 124809 remote_ip 10.8.1.42 124811 username moradi 124811 mac 124811 bytes_out 0 124811 bytes_in 0 124811 station_ip 37.129.64.59 124811 port 101 124811 unique_id port 124811 remote_ip 10.8.1.202 124814 username mehdizare 124814 mac 124814 bytes_out 12567 124814 bytes_in 20441 124814 station_ip 5.119.165.187 124814 port 108 124814 unique_id port 124814 remote_ip 10.8.1.42 124817 username zare 124817 mac 124817 bytes_out 6402 124817 bytes_in 12676 124817 station_ip 94.183.214.14 124817 port 188 124817 unique_id port 124817 remote_ip 10.8.0.18 124821 username sedighe 124821 mac 124821 bytes_out 1939 124821 bytes_in 4040 124821 station_ip 83.123.68.33 124821 port 188 124821 unique_id port 124821 remote_ip 10.8.0.146 124823 username zare 124823 mac 124823 bytes_out 51468 124823 bytes_in 165504 124823 station_ip 94.183.214.14 124823 port 200 124810 bytes_out 0 124810 bytes_in 0 124810 station_ip 94.183.214.14 124810 port 109 124810 unique_id port 124810 remote_ip 10.8.1.58 124812 username malekpoir 124812 kill_reason Another user logged on this global unique id 124812 mac 124812 bytes_out 0 124812 bytes_in 0 124812 station_ip 5.120.54.245 124812 port 135 124812 unique_id port 124812 remote_ip 10.8.0.58 124813 username barzegar 124813 mac 124813 bytes_out 0 124813 bytes_in 0 124813 station_ip 5.119.46.24 124813 port 201 124813 unique_id port 124813 remote_ip 10.8.0.234 124815 username mehdizare 124815 mac 124815 bytes_out 0 124815 bytes_in 0 124815 station_ip 5.119.165.187 124815 port 108 124815 unique_id port 124815 remote_ip 10.8.1.42 124816 username barzegar 124816 mac 124816 bytes_out 0 124816 bytes_in 0 124816 station_ip 5.119.46.24 124816 port 201 124816 unique_id port 124816 remote_ip 10.8.0.234 124822 username forozande 124822 mac 124822 bytes_out 0 124822 bytes_in 0 124822 station_ip 83.123.112.165 124822 port 202 124822 unique_id port 124822 remote_ip 10.8.0.74 124824 username zare 124824 mac 124824 bytes_out 0 124824 bytes_in 0 124824 station_ip 94.183.214.14 124824 port 188 124824 unique_id port 124824 remote_ip 10.8.0.18 124825 username alihosseini1 124825 mac 124825 bytes_out 0 124825 bytes_in 0 124825 station_ip 5.119.184.17 124825 port 200 124825 unique_id port 124825 remote_ip 10.8.0.166 124827 username barzegar 124827 mac 124827 bytes_out 0 124827 bytes_in 0 124827 station_ip 5.119.46.24 124827 port 200 124827 unique_id port 124827 remote_ip 10.8.0.234 124828 username sedighe 124828 mac 124828 bytes_out 19066 124828 bytes_in 14959 124828 station_ip 37.129.235.212 124828 port 201 124828 unique_id port 124828 remote_ip 10.8.0.146 124829 username moradi 124829 kill_reason Another user logged on this global unique id 124829 mac 124829 bytes_out 0 124829 bytes_in 0 124829 station_ip 92.119.68.229 124829 port 101 124829 unique_id port 124829 remote_ip 10.8.1.202 124831 username alirezazadeh 124831 unique_id port 124831 terminate_cause Lost-Carrier 124831 bytes_out 355360 124831 bytes_in 1275336 124831 station_ip 5.119.10.172 124831 port 15729913 124831 nas_port_type Virtual 124831 remote_ip 5.5.5.253 124832 username barzegar 124832 mac 124832 bytes_out 0 124832 bytes_in 0 124832 station_ip 5.119.46.24 124832 port 202 124832 unique_id port 124832 remote_ip 10.8.0.234 124834 username alihosseini1 124834 mac 124834 bytes_out 48121 124834 bytes_in 135976 124834 station_ip 5.119.184.17 124834 port 108 124834 unique_id port 124834 remote_ip 10.8.1.106 124838 username amir 124838 kill_reason Another user logged on this global unique id 124838 mac 124838 bytes_out 0 124838 bytes_in 0 124838 station_ip 46.225.213.237 124838 port 196 124838 unique_id port 124840 username forozande 124840 mac 124840 bytes_out 127452 124840 bytes_in 338156 124840 station_ip 37.129.210.26 124840 port 207 124840 unique_id port 124840 remote_ip 10.8.0.74 124841 username zare 124841 mac 124841 bytes_out 0 124841 bytes_in 0 124841 station_ip 94.183.214.14 124841 port 207 124841 unique_id port 124841 remote_ip 10.8.0.18 124842 username sobhan 124842 unique_id port 124842 terminate_cause Lost-Carrier 124842 bytes_out 81803 124842 bytes_in 224237 124842 station_ip 5.119.216.116 124842 port 15729914 124842 nas_port_type Virtual 124842 remote_ip 5.5.5.253 124844 username zare 124844 mac 124844 bytes_out 12506 124844 bytes_in 23412 124844 station_ip 94.183.214.14 124844 port 207 124820 bytes_in 0 124820 station_ip 83.123.68.33 124820 port 200 124820 unique_id port 124820 remote_ip 10.8.0.146 124830 username musa 124830 kill_reason Another user logged on this global unique id 124830 mac 124830 bytes_out 0 124830 bytes_in 0 124830 station_ip 83.122.109.255 124830 port 201 124830 unique_id port 124830 remote_ip 10.8.0.6 124833 username zare 124833 mac 124833 bytes_out 59007 124833 bytes_in 206423 124833 station_ip 94.183.214.14 124833 port 188 124833 unique_id port 124833 remote_ip 10.8.0.18 124839 username zare 124839 mac 124839 bytes_out 0 124839 bytes_in 0 124839 station_ip 94.183.214.14 124839 port 208 124839 unique_id port 124839 remote_ip 10.8.0.18 124849 username kordestani 124849 mac 124849 bytes_out 2257863 124849 bytes_in 30063921 124849 station_ip 151.235.104.33 124849 port 202 124849 unique_id port 124849 remote_ip 10.8.0.134 124850 username zare 124850 mac 124850 bytes_out 13983 124850 bytes_in 20080 124850 station_ip 94.183.214.14 124850 port 200 124850 unique_id port 124850 remote_ip 10.8.0.18 124853 username moradi 124853 mac 124853 bytes_out 0 124853 bytes_in 0 124853 station_ip 92.119.68.229 124853 port 101 124853 unique_id port 124854 username amir 124854 kill_reason Another user logged on this global unique id 124854 mac 124854 bytes_out 0 124854 bytes_in 0 124854 station_ip 46.225.213.237 124854 port 196 124854 unique_id port 124857 username mehdizare 124857 mac 124857 bytes_out 0 124857 bytes_in 0 124857 station_ip 5.119.165.187 124857 port 205 124857 unique_id port 124857 remote_ip 10.8.0.90 124859 username sedighe 124859 mac 124859 bytes_out 57447 124859 bytes_in 50209 124859 station_ip 37.129.235.212 124859 port 207 124859 unique_id port 124859 remote_ip 10.8.0.146 124867 username alihosseini1 124867 mac 124867 bytes_out 0 124867 bytes_in 0 124867 station_ip 5.119.184.17 124867 port 188 124867 unique_id port 124867 remote_ip 10.8.0.166 124868 username zare 124868 mac 124868 bytes_out 11646 124868 bytes_in 49325 124868 station_ip 94.183.214.14 124868 port 169 124868 unique_id port 124868 remote_ip 10.8.0.18 124869 username moradi 124869 mac 124869 bytes_out 0 124869 bytes_in 0 124869 station_ip 5.202.62.147 124869 port 101 124869 unique_id port 124869 remote_ip 10.8.1.202 124870 username mehdizare 124870 mac 124870 bytes_out 12612 124870 bytes_in 19809 124870 station_ip 5.119.165.187 124870 port 200 124870 unique_id port 124870 remote_ip 10.8.0.90 124873 username alihosseini1 124873 mac 124873 bytes_out 0 124873 bytes_in 0 124873 station_ip 5.119.184.17 124873 port 101 124873 unique_id port 124873 remote_ip 10.8.1.106 124880 username alihosseini1 124880 mac 124880 bytes_out 0 124880 bytes_in 0 124880 station_ip 5.119.184.17 124880 port 202 124880 unique_id port 124880 remote_ip 10.8.0.166 124885 username aminvpn 124885 mac 124885 bytes_out 0 124885 bytes_in 0 124885 station_ip 37.129.92.180 124885 port 105 124885 unique_id port 124885 remote_ip 10.8.1.6 124889 username mehdizare 124889 mac 124889 bytes_out 36323 124889 bytes_in 44393 124889 station_ip 5.119.165.187 124889 port 188 124889 unique_id port 124889 remote_ip 10.8.0.90 124890 username forozande 124890 mac 124890 bytes_out 315573 124890 bytes_in 707689 124890 station_ip 37.129.226.38 124890 port 196 124890 unique_id port 124890 remote_ip 10.8.0.74 124891 username amir 124891 mac 124891 bytes_out 127504 124891 bytes_in 843814 124891 station_ip 46.225.213.237 124823 unique_id port 124823 remote_ip 10.8.0.18 124826 username amir 124826 kill_reason Another user logged on this global unique id 124826 mac 124826 bytes_out 0 124826 bytes_in 0 124826 station_ip 46.225.213.237 124826 port 196 124826 unique_id port 124835 username zare 124835 mac 124835 bytes_out 0 124835 bytes_in 0 124835 station_ip 94.183.214.14 124835 port 207 124835 unique_id port 124835 remote_ip 10.8.0.18 124836 username zare 124836 mac 124836 bytes_out 0 124836 bytes_in 0 124836 station_ip 94.183.214.14 124836 port 207 124836 unique_id port 124836 remote_ip 10.8.0.18 124837 username zare 124837 mac 124837 bytes_out 0 124837 bytes_in 0 124837 station_ip 94.183.214.14 124837 port 208 124837 unique_id port 124837 remote_ip 10.8.0.18 124843 username barzegar 124843 mac 124843 bytes_out 0 124843 bytes_in 0 124843 station_ip 5.119.46.24 124843 port 207 124843 unique_id port 124843 remote_ip 10.8.0.234 124855 username forozande 124855 mac 124855 bytes_out 0 124855 bytes_in 0 124855 station_ip 113.203.105.215 124855 port 208 124855 unique_id port 124855 remote_ip 10.8.0.74 124858 username malekpoir 124858 kill_reason Another user logged on this global unique id 124858 mac 124858 bytes_out 0 124858 bytes_in 0 124858 station_ip 5.120.54.245 124858 port 135 124858 unique_id port 124861 username zare 124861 mac 124861 bytes_out 70513 124861 bytes_in 306447 124861 station_ip 94.183.214.14 124861 port 200 124861 unique_id port 124861 remote_ip 10.8.0.18 124862 username mohammadjavad 124862 mac 124862 bytes_out 486893 124862 bytes_in 6047634 124862 station_ip 83.123.237.20 124862 port 202 124862 unique_id port 124862 remote_ip 10.8.0.142 124863 username mehdizare 124863 mac 124863 bytes_out 31896 124863 bytes_in 48134 124863 station_ip 5.119.165.187 124863 port 205 124863 unique_id port 124863 remote_ip 10.8.0.90 124864 username avaanna 124864 mac 124864 bytes_out 0 124864 bytes_in 0 124864 station_ip 37.129.208.61 124864 port 169 124864 unique_id port 124864 remote_ip 10.8.0.98 124874 username barzegar 124874 mac 124874 bytes_out 0 124874 bytes_in 0 124874 station_ip 5.119.46.24 124874 port 101 124874 unique_id port 124874 remote_ip 10.8.1.174 124875 username zare 124875 mac 124875 bytes_out 22369 124875 bytes_in 36600 124875 station_ip 94.183.214.14 124875 port 169 124875 unique_id port 124875 remote_ip 10.8.0.18 124876 username amir 124876 mac 124876 bytes_out 0 124876 bytes_in 0 124876 station_ip 46.225.213.237 124876 port 196 124876 unique_id port 124878 username alihosseini1 124878 mac 124878 bytes_out 0 124878 bytes_in 0 124878 station_ip 5.119.184.17 124878 port 110 124878 unique_id port 124878 remote_ip 10.8.1.106 124879 username zare 124879 mac 124879 bytes_out 0 124879 bytes_in 0 124879 station_ip 94.183.214.14 124879 port 109 124879 unique_id port 124879 remote_ip 10.8.1.58 124881 username aminvpn 124881 mac 124881 bytes_out 177330 124881 bytes_in 708684 124881 station_ip 5.118.4.163 124881 port 169 124881 unique_id port 124881 remote_ip 10.8.0.14 124882 username kordestani 124882 mac 124882 bytes_out 0 124882 bytes_in 0 124882 station_ip 151.235.104.33 124882 port 109 124882 unique_id port 124882 remote_ip 10.8.1.98 124883 username aminvpn 124883 mac 124883 bytes_out 1797978 124883 bytes_in 20995959 124883 station_ip 37.129.92.180 124883 port 105 124883 unique_id port 124883 remote_ip 10.8.1.6 124888 username barzegar 124844 unique_id port 124844 remote_ip 10.8.0.18 124845 username sedighe 124845 mac 124845 bytes_out 57655 124845 bytes_in 96721 124845 station_ip 37.129.235.212 124845 port 200 124845 unique_id port 124845 remote_ip 10.8.0.146 124846 username zare 124846 mac 124846 bytes_out 0 124846 bytes_in 0 124846 station_ip 94.183.214.14 124846 port 200 124846 unique_id port 124846 remote_ip 10.8.0.18 124847 username zare 124847 mac 124847 bytes_out 0 124847 bytes_in 0 124847 station_ip 94.183.214.14 124847 port 200 124847 unique_id port 124847 remote_ip 10.8.0.18 124848 username zare 124848 mac 124848 bytes_out 0 124848 bytes_in 0 124848 station_ip 94.183.214.14 124848 port 200 124848 unique_id port 124848 remote_ip 10.8.0.18 124851 username zare 124851 mac 124851 bytes_out 0 124851 bytes_in 0 124851 station_ip 94.183.214.14 124851 port 200 124851 unique_id port 124851 remote_ip 10.8.0.18 124852 username barzegar 124852 mac 124852 bytes_out 0 124852 bytes_in 0 124852 station_ip 5.119.46.24 124852 port 200 124852 unique_id port 124852 remote_ip 10.8.0.234 124856 username hosseine 124856 kill_reason Another user logged on this global unique id 124856 mac 124856 bytes_out 0 124856 bytes_in 0 124856 station_ip 83.123.21.247 124856 port 187 124856 unique_id port 124856 remote_ip 10.8.0.238 124860 username barzegar 124860 mac 124860 bytes_out 0 124860 bytes_in 0 124860 station_ip 5.119.46.24 124860 port 108 124860 unique_id port 124860 remote_ip 10.8.1.174 124865 username zare 124865 mac 124865 bytes_out 0 124865 bytes_in 0 124865 station_ip 94.183.214.14 124865 port 108 124865 unique_id port 124865 remote_ip 10.8.1.58 124866 username zare 124866 mac 124866 bytes_out 0 124866 bytes_in 0 124866 station_ip 94.183.214.14 124866 port 108 124866 unique_id port 124866 remote_ip 10.8.1.58 124871 username barzegar 124871 mac 124871 bytes_out 0 124871 bytes_in 0 124871 station_ip 5.119.46.24 124871 port 101 124871 unique_id port 124871 remote_ip 10.8.1.174 124872 username avaanna 124872 mac 124872 bytes_out 0 124872 bytes_in 0 124872 station_ip 83.122.254.142 124872 port 109 124872 unique_id port 124872 remote_ip 10.8.1.46 124877 username aminvpn 124877 mac 124877 bytes_out 493171 124877 bytes_in 1884591 124877 station_ip 5.118.4.106 124877 port 208 124877 unique_id port 124877 remote_ip 10.8.0.14 124884 username aminvpn 124884 mac 124884 bytes_out 0 124884 bytes_in 0 124884 station_ip 5.118.4.163 124884 port 109 124884 unique_id port 124884 remote_ip 10.8.1.6 124886 username aminvpn 124886 mac 124886 bytes_out 0 124886 bytes_in 0 124886 station_ip 5.118.4.163 124886 port 202 124886 unique_id port 124886 remote_ip 10.8.0.14 124887 username aminvpn 124887 mac 124887 bytes_out 0 124887 bytes_in 0 124887 station_ip 5.118.4.163 124887 port 109 124887 unique_id port 124887 remote_ip 10.8.1.6 124892 username sabaghnezhad 124892 mac 124892 bytes_out 0 124892 bytes_in 0 124892 station_ip 83.122.201.152 124892 port 106 124892 unique_id port 124892 remote_ip 10.8.1.130 124894 username arash 124894 mac 124894 bytes_out 3617334 124894 bytes_in 45961494 124894 station_ip 37.27.31.235 124894 port 200 124894 unique_id port 124894 remote_ip 10.8.0.114 124896 username alihosseini1 124896 mac 124896 bytes_out 12255 124896 bytes_in 41407 124896 station_ip 5.119.184.17 124896 port 202 124896 unique_id port 124896 remote_ip 10.8.0.166 124888 mac 124888 bytes_out 10086 124888 bytes_in 19828 124888 station_ip 5.119.46.24 124888 port 101 124888 unique_id port 124888 remote_ip 10.8.1.174 124895 username moradi 124895 mac 124895 bytes_out 0 124895 bytes_in 0 124895 station_ip 46.225.214.123 124895 port 109 124895 unique_id port 124895 remote_ip 10.8.1.202 124897 username barzegar 124897 mac 124897 bytes_out 0 124897 bytes_in 0 124897 station_ip 5.119.46.24 124897 port 101 124897 unique_id port 124897 remote_ip 10.8.1.174 124902 username houshang 124902 mac 124902 bytes_out 238766 124902 bytes_in 1742606 124902 station_ip 5.119.123.246 124902 port 205 124902 unique_id port 124902 remote_ip 10.8.0.22 124908 username amir 124908 mac 124908 bytes_out 28874 124908 bytes_in 86907 124908 station_ip 46.225.213.237 124908 port 135 124908 unique_id port 124908 remote_ip 10.8.0.50 124913 username barzegar 124913 mac 124913 bytes_out 0 124913 bytes_in 0 124913 station_ip 5.119.46.24 124913 port 188 124913 unique_id port 124913 remote_ip 10.8.0.234 124914 username alihosseini1 124914 mac 124914 bytes_out 864196 124914 bytes_in 10336080 124914 station_ip 5.119.184.17 124914 port 207 124914 unique_id port 124914 remote_ip 10.8.0.166 124918 username alihosseini1 124918 mac 124918 bytes_out 21290 124918 bytes_in 56257 124918 station_ip 5.119.224.12 124918 port 196 124918 unique_id port 124918 remote_ip 10.8.0.166 124923 username barzegar 124923 mac 124923 bytes_out 2751 124923 bytes_in 5329 124923 station_ip 5.119.46.24 124923 port 196 124923 unique_id port 124923 remote_ip 10.8.0.234 124925 username barzegar 62167 username arezoo 62167 kill_reason Maximum check online fails reached 62167 mac 5.237.75.89:49252: Unknown host 62167 bytes_out 0 62167 bytes_in 0 62167 station_ip 5.237.75.89:49252 62167 port 1017 62167 unique_id port 124925 mac 124925 bytes_out 0 124925 bytes_in 0 124925 station_ip 5.119.46.24 124925 port 188 124925 unique_id port 124925 remote_ip 10.8.0.234 124928 username amir 124928 mac 124928 bytes_out 64369 124928 bytes_in 394356 124928 station_ip 46.225.213.237 124928 port 169 124928 unique_id port 124928 remote_ip 10.8.0.50 124929 username moradi 124929 mac 124929 bytes_out 0 124929 bytes_in 0 124929 station_ip 46.225.214.123 124929 port 109 124929 unique_id port 124929 remote_ip 10.8.1.202 124932 username barzegar 124932 mac 124932 bytes_out 0 124932 bytes_in 0 124932 station_ip 5.119.46.24 124932 port 202 124932 unique_id port 124932 remote_ip 10.8.0.234 124935 username sedighe 124935 mac 124935 bytes_out 691683 124935 bytes_in 8257707 124935 station_ip 37.129.235.212 124935 port 200 124935 unique_id port 124935 remote_ip 10.8.0.146 124937 username barzegar 124937 mac 124937 bytes_out 0 124937 bytes_in 0 124937 station_ip 5.119.46.24 124937 port 109 124937 unique_id port 124937 remote_ip 10.8.1.174 124941 username mehdizare 124941 mac 124941 bytes_out 0 124941 bytes_in 0 124941 station_ip 5.119.165.187 124941 port 106 124941 unique_id port 124941 remote_ip 10.8.1.42 124954 username avaanna 124954 mac 124954 bytes_out 0 124954 bytes_in 0 124954 station_ip 83.122.254.142 124954 port 106 124954 unique_id port 124954 remote_ip 10.8.1.46 124959 username barzegar 124959 mac 124959 bytes_out 8032 124959 bytes_in 10420 124959 station_ip 5.119.46.24 124959 port 205 124959 unique_id port 124959 remote_ip 10.8.0.234 124962 username forozande 124962 mac 124962 bytes_out 0 124891 port 202 124891 unique_id port 124891 remote_ip 10.8.0.50 124893 username barzegar 124893 mac 124893 bytes_out 0 124893 bytes_in 0 124893 station_ip 5.119.46.24 124893 port 101 124893 unique_id port 124893 remote_ip 10.8.1.174 124898 username barzegar 124898 mac 124898 bytes_out 0 124898 bytes_in 0 124898 station_ip 5.119.46.24 124898 port 200 124898 unique_id port 124898 remote_ip 10.8.0.234 124899 username malekpoir 124899 mac 124899 bytes_out 0 124899 bytes_in 0 124899 station_ip 5.120.54.245 124899 port 135 124899 unique_id port 124903 username amir 124903 mac 124903 bytes_out 93309 124903 bytes_in 658998 124903 station_ip 46.225.213.237 124903 port 208 124903 unique_id port 124903 remote_ip 10.8.0.50 124904 username sabaghnezhad 124904 mac 124904 bytes_out 842858 124904 bytes_in 4769280 124904 station_ip 83.122.201.152 124904 port 196 124904 unique_id port 124904 remote_ip 10.8.0.186 124905 username amir 124905 mac 124905 bytes_out 25431 124905 bytes_in 49515 124905 station_ip 46.225.213.237 124905 port 169 124905 unique_id port 124905 remote_ip 10.8.0.50 124906 username sedighe 124906 mac 124906 bytes_out 173580 124906 bytes_in 1093656 124906 station_ip 37.129.235.212 124906 port 188 124906 unique_id port 124906 remote_ip 10.8.0.146 124911 username barzegar 124911 mac 124911 bytes_out 0 124911 bytes_in 0 124911 station_ip 5.119.46.24 124911 port 101 124911 unique_id port 124911 remote_ip 10.8.1.174 124921 username barzegar 124921 mac 124921 bytes_out 0 124921 bytes_in 0 124921 station_ip 5.119.46.24 124921 port 188 124921 unique_id port 124921 remote_ip 10.8.0.234 124924 username houshang 124924 mac 124924 bytes_out 373769 124924 bytes_in 3496268 124924 station_ip 5.119.123.246 124924 port 188 124924 unique_id port 124924 remote_ip 10.8.0.22 124926 username mehdizare 124926 mac 124926 bytes_out 0 124926 bytes_in 0 124926 station_ip 5.119.165.187 124926 port 106 124926 unique_id port 124926 remote_ip 10.8.1.42 124930 username avaanna 124930 kill_reason Another user logged on this global unique id 124930 mac 124930 bytes_out 0 124930 bytes_in 0 124930 station_ip 83.122.254.142 124930 port 108 124930 unique_id port 124930 remote_ip 10.8.1.46 124936 username aminvpn 124936 mac 124936 bytes_out 631616 124936 bytes_in 4870499 124936 station_ip 37.129.92.180 124936 port 105 124936 unique_id port 124936 remote_ip 10.8.1.6 124939 username hamidsalari1 124939 kill_reason Another user logged on this global unique id 124939 mac 124939 bytes_out 0 124939 bytes_in 0 124939 station_ip 83.123.113.243 124939 port 203 124939 unique_id port 124939 remote_ip 10.8.0.226 124940 username amir 124940 mac 124940 bytes_out 78144 124940 bytes_in 540813 124940 station_ip 46.225.213.237 124940 port 200 124940 unique_id port 124940 remote_ip 10.8.0.50 124944 username barzegar 124944 mac 124944 bytes_out 0 124944 bytes_in 0 124944 station_ip 5.119.46.24 124944 port 101 124944 unique_id port 124944 remote_ip 10.8.1.174 124945 username barzegar 124945 mac 124945 bytes_out 0 124945 bytes_in 0 124945 station_ip 5.119.46.24 124945 port 101 124945 unique_id port 124945 remote_ip 10.8.1.174 124947 username mohammadjavad 124947 mac 124947 bytes_out 78111 124947 bytes_in 475024 124947 station_ip 37.129.187.91 124947 port 196 124947 unique_id port 124947 remote_ip 10.8.0.142 124948 username mehdizare 124948 mac 124948 bytes_out 10895 124948 bytes_in 15112 124948 station_ip 5.119.165.187 124900 username barzegar 124900 mac 124900 bytes_out 0 124900 bytes_in 0 124900 station_ip 5.119.46.24 124900 port 101 124900 unique_id port 124900 remote_ip 10.8.1.174 124901 username aminvpn 124901 mac 124901 bytes_out 181557 124901 bytes_in 484359 124901 station_ip 5.118.4.163 124901 port 169 124901 unique_id port 124901 remote_ip 10.8.0.14 124907 username rajaei 124907 mac 124907 bytes_out 3183419 124907 bytes_in 35958252 124907 station_ip 37.153.181.176 124907 port 135 124907 unique_id port 124907 remote_ip 10.8.0.34 124909 username amir 124909 mac 124909 bytes_out 0 124909 bytes_in 0 124909 station_ip 46.225.213.237 124909 port 135 124909 unique_id port 124909 remote_ip 10.8.0.50 124910 username rajaei 124910 mac 124910 bytes_out 49745 124910 bytes_in 111632 124910 station_ip 37.153.181.176 124910 port 188 124910 unique_id port 124910 remote_ip 10.8.0.34 124912 username amir 124912 mac 124912 bytes_out 0 124912 bytes_in 0 124912 station_ip 46.225.213.237 124912 port 135 124912 unique_id port 124912 remote_ip 10.8.0.50 124915 username barzegar 124915 mac 124915 bytes_out 0 124915 bytes_in 0 124915 station_ip 5.119.46.24 124915 port 188 124915 unique_id port 124915 remote_ip 10.8.0.234 124916 username amir 124916 mac 124916 bytes_out 0 124916 bytes_in 0 124916 station_ip 46.225.213.237 124916 port 135 124916 unique_id port 124916 remote_ip 10.8.0.50 62162 username arezoo 62162 kill_reason Maximum check online fails reached 62162 mac 5.237.75.89:49522: Unknown host 62162 bytes_out 0 62162 bytes_in 0 62162 station_ip 5.237.75.89:49522 62162 port 1017 62162 unique_id port 124917 username aminvpn 124917 mac 124917 bytes_out 143136 124917 bytes_in 184911 124917 station_ip 5.118.4.65 124917 port 188 124917 unique_id port 124917 remote_ip 10.8.0.14 124919 username barzegar 124919 mac 124919 bytes_out 2387 124919 bytes_in 4549 124919 station_ip 5.119.46.24 124919 port 135 124919 unique_id port 124919 remote_ip 10.8.0.234 124920 username forozande 124920 mac 124920 bytes_out 222564 124920 bytes_in 711268 124920 station_ip 37.129.74.207 124920 port 202 124920 unique_id port 124920 remote_ip 10.8.0.74 124922 username malekpoir 124922 mac 124922 bytes_out 14707 124922 bytes_in 22627 124922 station_ip 5.120.54.245 124922 port 200 124922 unique_id port 124922 remote_ip 10.8.0.58 124927 username sedighe 124927 mac 124927 bytes_out 17306 124927 bytes_in 25777 124927 station_ip 37.129.235.212 124927 port 169 124927 unique_id port 124927 remote_ip 10.8.0.146 124931 username alirezazadeh 124931 unique_id port 124931 terminate_cause User-Request 124931 bytes_out 31374745 124931 bytes_in 646657527 124931 station_ip 31.56.113.217 124931 port 15729912 124931 nas_port_type Virtual 124931 remote_ip 5.5.5.247 124933 username avaanna 124933 mac 124933 bytes_out 0 124933 bytes_in 0 124933 station_ip 83.122.254.142 124933 port 108 124933 unique_id port 124934 username barzegar 124934 mac 124934 bytes_out 0 124934 bytes_in 0 124934 station_ip 5.119.46.24 124934 port 109 124934 unique_id port 124934 remote_ip 10.8.1.174 124938 username rezaei 124989 unique_id port 124938 kill_reason Another user logged on this global unique id 124938 mac 124938 bytes_out 0 124938 bytes_in 0 124938 station_ip 5.119.65.150 124938 port 101 124938 unique_id port 124938 remote_ip 10.8.1.150 124942 username rezaei 124942 mac 124942 bytes_out 0 124942 bytes_in 0 124942 station_ip 5.119.65.150 124942 port 101 124942 unique_id port 124943 username sabaghnezhad 124943 mac 124943 bytes_out 588367 124943 bytes_in 5443442 124943 station_ip 83.122.201.152 124943 port 196 124943 unique_id port 124943 remote_ip 10.8.0.186 124946 username avaanna 124946 mac 124946 bytes_out 0 124946 bytes_in 0 124946 station_ip 83.122.254.142 124946 port 108 124946 unique_id port 124946 remote_ip 10.8.1.46 124949 username barzegar 124949 mac 124949 bytes_out 0 124949 bytes_in 0 124949 station_ip 5.119.46.24 124949 port 101 124949 unique_id port 124949 remote_ip 10.8.1.174 124950 username amirabbas 124950 unique_id port 124950 terminate_cause Lost-Carrier 124950 bytes_out 17830792 124950 bytes_in 465183147 124950 station_ip 37.27.10.205 124950 port 15729916 124950 nas_port_type Virtual 124950 remote_ip 5.5.5.246 124955 username barzegar 124955 mac 124955 bytes_out 0 124955 bytes_in 0 124955 station_ip 5.119.46.24 124955 port 101 124955 unique_id port 124955 remote_ip 10.8.1.174 124957 username jafari 124957 kill_reason Another user logged on this global unique id 124957 mac 124957 bytes_out 0 124957 bytes_in 0 124957 station_ip 37.156.50.122 124957 port 109 124957 unique_id port 124957 remote_ip 10.8.1.198 124960 username mohammadjavad 124960 mac 124960 bytes_out 0 124960 bytes_in 0 124960 station_ip 37.129.20.34 124960 port 202 124960 unique_id port 124960 remote_ip 10.8.0.142 124961 username barzegar 124961 mac 124961 bytes_out 0 124961 bytes_in 0 124961 station_ip 5.119.46.24 124961 port 202 124961 unique_id port 124961 remote_ip 10.8.0.234 124964 username rostami 124964 kill_reason Another user logged on this global unique id 124964 mac 124964 bytes_out 0 124964 bytes_in 0 124964 station_ip 5.119.121.161 124964 port 197 124964 unique_id port 124965 username rezaei 124965 mac 124965 bytes_out 0 124965 bytes_in 0 124965 station_ip 5.119.65.150 124965 port 108 124965 unique_id port 124965 remote_ip 10.8.1.150 124967 username jafari 124967 kill_reason Another user logged on this global unique id 124967 mac 124967 bytes_out 0 124967 bytes_in 0 124967 station_ip 37.156.50.122 124967 port 109 124967 unique_id port 124971 username avaanna 124971 mac 124971 bytes_out 99026 124971 bytes_in 134577 124971 station_ip 83.122.254.142 124971 port 106 124971 unique_id port 124971 remote_ip 10.8.1.46 124974 username tahmasebi 124974 mac 124974 bytes_out 24279 124974 bytes_in 40737 124974 station_ip 5.114.68.6 124974 port 169 124974 unique_id port 124974 remote_ip 10.8.0.42 124977 username hamid.e 124977 unique_id port 124977 terminate_cause User-Request 124977 bytes_out 2328894 124977 bytes_in 43992970 124977 station_ip 37.27.33.173 124977 port 15729917 124977 nas_port_type Virtual 124977 remote_ip 5.5.5.238 124983 username tahmasebi 124983 mac 124983 bytes_out 0 124983 bytes_in 0 124983 station_ip 5.113.254.45 124983 port 106 124983 unique_id port 124983 remote_ip 10.8.1.90 124986 username aminvpn 124986 mac 124986 bytes_out 0 124986 bytes_in 0 124986 station_ip 5.120.40.71 124986 port 202 124986 unique_id port 124986 remote_ip 10.8.0.14 124989 username moradi 124989 mac 124989 bytes_out 0 124989 bytes_in 0 124989 station_ip 37.129.93.107 124989 port 111 124989 remote_ip 10.8.1.202 124991 username hamidsalari 124991 kill_reason Another user logged on this global unique id 124991 mac 124991 bytes_out 0 124991 bytes_in 0 124991 station_ip 5.120.92.215 124991 port 199 124991 unique_id port 124992 username jafari 124992 mac 124992 bytes_out 0 124992 bytes_in 0 124992 station_ip 37.156.50.122 62192 username arezoo 62192 kill_reason Maximum check online fails reached 62192 mac 5.237.75.89:49208: Unknown host 62192 bytes_out 0 62192 bytes_in 0 62192 station_ip 5.237.75.89:49208 62192 port 1017 62192 unique_id port 124948 port 200 124948 unique_id port 124948 remote_ip 10.8.0.90 124951 username hamidsalari1 124951 kill_reason Another user logged on this global unique id 124951 mac 124951 bytes_out 0 124951 bytes_in 0 124951 station_ip 83.123.113.243 124951 port 203 124951 unique_id port 124952 username barzegar 124952 kill_reason Maximum check online fails reached 124952 mac 124952 bytes_out 0 124952 bytes_in 0 124952 station_ip 5.119.46.24 124952 port 200 124952 unique_id port 124953 username avaanna 124953 mac 124953 bytes_out 262668 124953 bytes_in 3002019 124953 station_ip 83.122.254.142 124953 port 106 124953 unique_id port 124953 remote_ip 10.8.1.46 124956 username hamidsalari 124956 kill_reason Another user logged on this global unique id 124956 mac 124956 bytes_out 0 124956 bytes_in 0 124956 station_ip 5.120.92.215 124956 port 199 124956 unique_id port 124956 remote_ip 10.8.0.230 124958 username mahdiyehalizadeh 124958 mac 124958 bytes_out 12555 124958 bytes_in 13277 124958 station_ip 83.122.63.38 124958 port 202 124958 unique_id port 124958 remote_ip 10.8.0.82 124963 username tahmasebi 124963 mac 124963 bytes_out 2689343 124963 bytes_in 26320221 124963 station_ip 5.120.186.138 124963 port 209 124963 unique_id port 124963 remote_ip 10.8.0.42 124966 username barzegar 124966 mac 124966 bytes_out 0 124966 bytes_in 0 124966 station_ip 5.119.46.24 124966 port 110 124966 unique_id port 124966 remote_ip 10.8.1.174 124969 username alihosseini1 124969 kill_reason Another user logged on this global unique id 124969 mac 124969 bytes_out 0 124969 bytes_in 0 124969 station_ip 5.119.166.15 124969 port 101 124969 unique_id port 124969 remote_ip 10.8.1.106 124975 username aminvpn 124975 mac 124975 bytes_out 0 124975 bytes_in 0 124975 station_ip 5.118.4.184 124975 port 135 124975 unique_id port 124975 remote_ip 10.8.0.14 124978 username hamidsalari 124978 kill_reason Another user logged on this global unique id 124978 mac 124978 bytes_out 0 124978 bytes_in 0 124978 station_ip 5.120.92.215 124978 port 199 124978 unique_id port 124979 username avaanna 124979 mac 124979 bytes_out 0 124979 bytes_in 0 124979 station_ip 83.122.254.142 124979 port 106 124979 unique_id port 124979 remote_ip 10.8.1.46 124984 username aminvpn 124984 mac 124984 bytes_out 7495 124984 bytes_in 11612 124984 station_ip 5.120.40.71 124984 port 202 124984 unique_id port 124984 remote_ip 10.8.0.14 124985 username aminvpn 124985 mac 124985 bytes_out 0 124985 bytes_in 0 124985 station_ip 5.118.4.184 124985 port 169 124985 unique_id port 124985 remote_ip 10.8.0.14 124987 username aminvpn 124987 mac 124987 bytes_out 0 124987 bytes_in 0 124987 station_ip 5.118.4.184 124987 port 169 124987 unique_id port 124987 remote_ip 10.8.0.14 124990 username aminvpn 124990 mac 124990 bytes_out 0 124990 bytes_in 0 124990 station_ip 5.120.40.71 124990 port 202 124990 unique_id port 124990 remote_ip 10.8.0.14 124993 username aminvpn 124993 mac 124993 bytes_out 0 124993 bytes_in 0 124993 station_ip 5.118.4.184 124993 port 169 124993 unique_id port 124993 remote_ip 10.8.0.14 124998 username aminvpn 124998 mac 124998 bytes_out 0 124998 bytes_in 0 124998 station_ip 5.120.40.71 124998 port 205 124998 unique_id port 124998 remote_ip 10.8.0.14 125000 username aminvpn 125000 mac 124962 bytes_in 0 124962 station_ip 37.129.215.141 124962 port 169 124962 unique_id port 124962 remote_ip 10.8.0.74 124968 username mahdiyehalizadeh 124968 mac 124968 bytes_out 22484 124968 bytes_in 31855 124968 station_ip 83.122.63.38 124968 port 202 124968 unique_id port 124968 remote_ip 10.8.0.82 124970 username houshang 124970 mac 124970 bytes_out 0 124970 bytes_in 0 124970 station_ip 5.120.136.1 124970 port 205 124970 unique_id port 124970 remote_ip 10.8.0.22 124972 username tahmasebi 124972 mac 124972 bytes_out 95329 124972 bytes_in 462482 124972 station_ip 5.119.237.236 124972 port 169 124972 unique_id port 124972 remote_ip 10.8.0.42 124973 username arash 124973 mac 124973 bytes_out 0 124973 bytes_in 0 124973 station_ip 37.27.31.235 124973 port 169 124973 unique_id port 124973 remote_ip 10.8.0.114 124976 username jafari 124976 kill_reason Another user logged on this global unique id 124976 mac 124976 bytes_out 0 124976 bytes_in 0 124976 station_ip 37.156.50.122 124976 port 109 124976 unique_id port 124980 username alihosseini1 124980 kill_reason Another user logged on this global unique id 124980 mac 124980 bytes_out 0 124980 bytes_in 0 124980 station_ip 5.119.166.15 124980 port 101 124980 unique_id port 124981 username ahmadipour 124981 unique_id port 124981 terminate_cause Lost-Carrier 124981 bytes_out 793275 124981 bytes_in 21464110 124981 station_ip 83.122.124.86 124981 port 15729918 124981 nas_port_type Virtual 124981 remote_ip 5.5.5.253 124982 username aminvpn 124982 mac 124982 bytes_out 173017 124982 bytes_in 291432 124982 station_ip 5.118.4.184 124982 port 169 124982 unique_id port 124982 remote_ip 10.8.0.14 124988 username jafari 124988 kill_reason Another user logged on this global unique id 62228 username arezoo 62228 kill_reason Maximum check online fails reached 62228 mac 5.237.75.89:49270: Unknown host 62228 bytes_out 0 62228 bytes_in 0 62228 station_ip 5.237.75.89:49270 62228 port 1017 62228 unique_id port 124988 mac 124988 bytes_out 0 124988 bytes_in 0 124988 station_ip 37.156.50.122 124988 port 109 124988 unique_id port 124995 username aminvpn 124995 mac 124995 bytes_out 955737 124995 bytes_in 7351158 124995 station_ip 37.129.92.180 124995 port 105 124995 unique_id port 124995 remote_ip 10.8.1.6 124997 username aminvpn 124997 mac 124997 bytes_out 8236 124997 bytes_in 15224 124997 station_ip 5.118.4.184 124997 port 169 124997 unique_id port 124997 remote_ip 10.8.0.14 125002 username aminvpn 125002 mac 125002 bytes_out 0 125002 bytes_in 0 125002 station_ip 5.118.4.184 125002 port 169 125002 unique_id port 125002 remote_ip 10.8.0.14 125007 username alihosseini1 125007 mac 125007 bytes_out 0 125007 bytes_in 0 125007 station_ip 5.119.166.15 125007 port 101 125007 unique_id port 125009 username aminvpn 125009 mac 125009 bytes_out 0 125009 bytes_in 0 125009 station_ip 5.120.40.71 125009 port 205 125009 unique_id port 125009 remote_ip 10.8.0.14 125012 username aminvpn 125012 mac 125012 bytes_out 458703 125012 bytes_in 5956328 125012 station_ip 5.120.40.71 125012 port 205 125012 unique_id port 125012 remote_ip 10.8.0.14 125013 username aminvpn 125013 mac 125013 bytes_out 0 125013 bytes_in 0 125013 station_ip 37.129.92.180 125013 port 207 125013 unique_id port 125013 remote_ip 10.8.0.14 125014 username aminvpn 125014 mac 125014 bytes_out 0 125014 bytes_in 0 125014 station_ip 5.120.40.71 125014 port 205 125014 unique_id port 125014 remote_ip 10.8.0.14 125019 username avaanna 125019 mac 125019 bytes_out 7513 124992 port 109 124992 unique_id port 124994 username aminvpn 124994 mac 124994 bytes_out 0 124994 bytes_in 0 124994 station_ip 5.120.40.71 124994 port 202 124994 unique_id port 124994 remote_ip 10.8.0.14 124996 username barzegar 124996 mac 124996 bytes_out 0 124996 bytes_in 0 124996 station_ip 5.119.46.24 124996 port 108 124996 unique_id port 124996 remote_ip 10.8.1.174 124999 username aminvpn 124999 kill_reason Maximum check online fails reached 124999 mac 124999 bytes_out 0 124999 bytes_in 0 124999 station_ip 37.129.92.180 124999 port 202 124999 unique_id port 125004 username aminvpn 125004 mac 125004 bytes_out 0 125004 bytes_in 0 125004 station_ip 5.120.40.71 125004 port 205 125004 unique_id port 125004 remote_ip 10.8.0.14 125005 username aminvpn 125005 mac 125005 bytes_out 0 125005 bytes_in 0 125005 station_ip 5.118.4.184 125005 port 169 125005 unique_id port 125005 remote_ip 10.8.0.14 125008 username aminvpn 125008 mac 125008 bytes_out 0 125008 bytes_in 0 125008 station_ip 5.118.4.184 125008 port 169 125008 unique_id port 125008 remote_ip 10.8.0.14 125010 username aminvpn 125010 mac 125010 bytes_out 0 125010 bytes_in 0 125010 station_ip 5.118.4.184 125010 port 169 125010 unique_id port 125010 remote_ip 10.8.0.14 125011 username hamidsalari 125011 kill_reason Another user logged on this global unique id 125011 mac 125011 bytes_out 0 125011 bytes_in 0 125011 station_ip 5.120.92.215 125011 port 199 125011 unique_id port 125015 username aminvpn 125015 mac 125015 bytes_out 0 125015 bytes_in 0 125015 station_ip 37.129.92.180 125015 port 207 125015 unique_id port 125015 remote_ip 10.8.0.14 125016 username avaanna 125016 mac 125016 bytes_out 0 125016 bytes_in 0 125016 station_ip 83.122.254.142 125016 port 110 125016 unique_id port 125016 remote_ip 10.8.1.46 125017 username aminvpn 125017 mac 125017 bytes_out 684870 125017 bytes_in 9206974 125017 station_ip 5.120.40.71 125017 port 205 125017 unique_id port 125017 remote_ip 10.8.0.14 125018 username aminvpn 125018 mac 125018 bytes_out 0 125018 bytes_in 0 125018 station_ip 37.129.92.180 125018 port 208 125018 unique_id port 125018 remote_ip 10.8.0.14 125028 username moradi 125028 kill_reason Another user logged on this global unique id 125028 mac 125028 bytes_out 0 125028 bytes_in 0 125028 station_ip 37.129.93.107 125028 port 106 125028 unique_id port 125029 username alireza 125029 unique_id port 125029 terminate_cause User-Request 125029 bytes_out 2017733 125029 bytes_in 26440608 125029 station_ip 5.119.178.73 125029 port 15729920 125029 nas_port_type Virtual 125029 remote_ip 5.5.5.252 125034 username moradi 125034 kill_reason Another user logged on this global unique id 125034 mac 125034 bytes_out 0 125034 bytes_in 0 125034 station_ip 37.129.93.107 125034 port 106 125034 unique_id port 125036 username afarin1 125036 mac 125036 bytes_out 280624 125036 bytes_in 1121127 125036 station_ip 37.129.169.71 125036 port 169 125036 unique_id port 125036 remote_ip 10.8.0.118 125039 username rostami 125039 mac 125039 bytes_out 0 125039 bytes_in 0 125039 station_ip 5.119.121.161 125039 port 197 125039 unique_id port 125040 username mohammadjavad 125040 mac 125040 bytes_out 0 125040 bytes_in 0 125040 station_ip 37.129.23.252 125040 port 135 125040 unique_id port 125040 remote_ip 10.8.0.142 125043 username hosseine 125043 mac 125043 bytes_out 0 125043 bytes_in 0 125043 station_ip 83.123.21.247 125043 port 187 125043 unique_id port 125000 bytes_out 0 125000 bytes_in 0 125000 station_ip 5.118.4.184 125000 port 169 125000 unique_id port 125000 remote_ip 10.8.0.14 125001 username aminvpn 125001 mac 125001 bytes_out 0 125001 bytes_in 0 125001 station_ip 5.120.40.71 125001 port 205 125001 unique_id port 125001 remote_ip 10.8.0.14 125003 username mansur 125003 kill_reason Another user logged on this global unique id 125003 mac 125003 bytes_out 0 125003 bytes_in 0 125003 station_ip 5.120.131.64 125003 port 135 125003 unique_id port 125003 remote_ip 10.8.0.210 125006 username aminvpn 125006 mac 125006 bytes_out 0 125006 bytes_in 0 125006 station_ip 5.120.40.71 125006 port 205 125006 unique_id port 125006 remote_ip 10.8.0.14 125020 username moradi 125020 kill_reason Another user logged on this global unique id 125020 mac 125020 bytes_out 0 125020 bytes_in 0 125020 station_ip 37.129.93.107 125020 port 106 125020 unique_id port 125020 remote_ip 10.8.1.202 125021 username alireza 125021 unique_id port 125021 terminate_cause Lost-Carrier 125021 bytes_out 182 125021 bytes_in 160 125021 station_ip 5.119.178.73 125021 port 15729919 125021 nas_port_type Virtual 125021 remote_ip 5.5.5.254 125022 username forozande 125022 mac 125022 bytes_out 1304600 125022 bytes_in 14240866 125022 station_ip 113.203.124.135 125022 port 208 125022 unique_id port 125022 remote_ip 10.8.0.74 125025 username asadi 125025 kill_reason Relative expiration date has reached 125025 mac 125025 bytes_out 0 125025 bytes_in 0 125025 station_ip 5.217.3.217 125025 port 208 125025 unique_id port 125030 username barzegar 125030 mac 125030 bytes_out 0 125030 bytes_in 0 125030 station_ip 5.119.46.24 125030 port 105 125030 unique_id port 125030 remote_ip 10.8.1.174 125032 username mahdiyehalizadeh 125032 mac 125032 bytes_out 14164 125032 bytes_in 19813 125032 station_ip 83.123.230.254 125032 port 135 125032 unique_id port 125032 remote_ip 10.8.0.82 125033 username forozande 125033 mac 125033 bytes_out 214926 125033 bytes_in 1142295 125033 station_ip 37.129.106.248 125033 port 208 125033 unique_id port 125033 remote_ip 10.8.0.74 125035 username aminvpn 125035 mac 125035 bytes_out 0 125035 bytes_in 0 125035 station_ip 5.120.40.71 125035 port 205 125035 unique_id port 125035 remote_ip 10.8.0.14 125038 username malekpoir 125038 mac 125038 bytes_out 4345346 125038 bytes_in 53195964 125038 station_ip 5.119.182.142 125038 port 188 125038 unique_id port 125038 remote_ip 10.8.0.58 125042 username mohammadmahdi 125042 kill_reason Another user logged on this global unique id 125042 mac 125042 bytes_out 0 125042 bytes_in 0 125042 station_ip 5.119.234.199 125042 port 207 125042 unique_id port 125042 remote_ip 10.8.0.54 125047 username musa 125047 kill_reason Another user logged on this global unique id 125047 mac 125047 bytes_out 0 125047 bytes_in 0 125047 station_ip 83.122.109.255 125047 port 201 125047 unique_id port 125048 username mohammadmahdi 125048 mac 125048 bytes_out 0 125048 bytes_in 0 125048 station_ip 5.119.234.199 125048 port 207 125048 unique_id port 125054 username kordestani 125054 mac 125054 bytes_out 0 125054 bytes_in 0 125054 station_ip 151.235.71.112 125054 port 105 125054 unique_id port 125054 remote_ip 10.8.1.98 125056 username barzegar 125056 mac 125056 bytes_out 0 125056 bytes_in 0 125056 station_ip 5.119.46.24 125056 port 101 125056 unique_id port 125056 remote_ip 10.8.1.174 125057 username rezaei 125057 mac 125057 bytes_out 0 125057 bytes_in 0 125057 station_ip 5.119.148.149 125057 port 188 125019 bytes_in 11009 125019 station_ip 83.122.254.142 125019 port 207 125019 unique_id port 125019 remote_ip 10.8.0.98 125023 username hamidsalari 125023 kill_reason Another user logged on this global unique id 125023 mac 125023 bytes_out 0 125023 bytes_in 0 125023 station_ip 5.120.92.215 125023 port 199 125023 unique_id port 125024 username asadi 125024 kill_reason Relative expiration date has reached 125024 mac 125024 bytes_out 0 125024 bytes_in 0 125024 station_ip 5.217.3.217 125024 port 208 125024 unique_id port 125026 username mansur 125026 kill_reason Another user logged on this global unique id 125026 mac 125026 bytes_out 0 125026 bytes_in 0 125026 station_ip 5.120.131.64 125026 port 135 125026 unique_id port 125027 username mansur 125027 mac 125027 bytes_out 0 125027 bytes_in 0 125027 station_ip 5.120.131.64 125027 port 135 125027 unique_id port 125031 username barzegar 125031 mac 125031 bytes_out 0 125031 bytes_in 0 125031 station_ip 5.119.46.24 125031 port 101 125031 unique_id port 125031 remote_ip 10.8.1.174 125037 username mehdizare 125037 mac 125037 bytes_out 2545119 125037 bytes_in 43306043 125037 station_ip 5.119.165.187 125037 port 196 125037 unique_id port 125037 remote_ip 10.8.0.90 125041 username moradi 125041 mac 125041 bytes_out 0 125041 bytes_in 0 125041 station_ip 37.129.93.107 125041 port 106 125041 unique_id port 125045 username hamidsalari 125045 mac 125045 bytes_out 0 125045 bytes_in 0 125045 station_ip 5.120.92.215 125045 port 199 125045 unique_id port 125049 username barzegar 125049 mac 125049 bytes_out 0 125049 bytes_in 0 125049 station_ip 5.119.46.24 125049 port 101 125049 unique_id port 125049 remote_ip 10.8.1.174 125052 username mostafa_es78 125052 unique_id port 125052 terminate_cause User-Request 125052 bytes_out 383396 125052 bytes_in 5157236 125052 station_ip 5.125.76.30 125052 port 15729921 125052 nas_port_type Virtual 125052 remote_ip 5.5.5.236 125055 username houshang 125055 mac 125055 bytes_out 445669 125055 bytes_in 4269395 125055 station_ip 5.120.136.1 125055 port 188 125055 unique_id port 125055 remote_ip 10.8.0.22 125058 username mehdizare 125058 mac 125058 bytes_out 165753 125058 bytes_in 77164 125058 station_ip 5.119.165.187 125058 port 187 125058 unique_id port 125058 remote_ip 10.8.0.90 125061 username afarin1 125061 mac 125061 bytes_out 35743 125061 bytes_in 39130 125061 station_ip 37.129.169.71 125061 port 196 125061 unique_id port 125061 remote_ip 10.8.0.118 125063 username barzegar 125063 mac 125063 bytes_out 0 125063 bytes_in 0 125063 station_ip 5.119.46.24 125063 port 106 125063 unique_id port 125063 remote_ip 10.8.1.174 125069 username barzegar 125069 mac 125069 bytes_out 0 125069 bytes_in 0 125069 station_ip 5.119.46.24 125069 port 106 125069 unique_id port 125069 remote_ip 10.8.1.174 125070 username musa 125070 mac 125070 bytes_out 0 125070 bytes_in 0 125070 station_ip 83.122.109.255 125070 port 201 125070 unique_id port 125071 username afarin1 125071 mac 125071 bytes_out 0 125071 bytes_in 0 125071 station_ip 37.129.169.71 125071 port 105 125071 unique_id port 125071 remote_ip 10.8.1.114 125072 username jafari 125072 kill_reason Another user logged on this global unique id 125072 mac 125072 bytes_out 0 125072 bytes_in 0 125072 station_ip 93.114.18.148 125072 port 187 125072 unique_id port 125072 remote_ip 10.8.0.242 125076 username jafari 125076 kill_reason Another user logged on this global unique id 125076 mac 125076 bytes_out 0 125076 bytes_in 0 125044 username barzegar 125044 mac 125044 bytes_out 0 125044 bytes_in 0 125044 station_ip 5.119.46.24 125044 port 105 125044 unique_id port 125044 remote_ip 10.8.1.174 125046 username aminvpn 125046 mac 125046 bytes_out 0 125046 bytes_in 0 125046 station_ip 5.120.40.71 125046 port 101 125046 unique_id port 125046 remote_ip 10.8.1.6 125050 username forozande 125050 mac 125050 bytes_out 568825 125050 bytes_in 6616080 125050 station_ip 83.122.251.68 125050 port 187 125050 unique_id port 125050 remote_ip 10.8.0.74 125051 username mehdizare 125051 mac 125051 bytes_out 13208 125051 bytes_in 16724 125051 station_ip 5.119.165.187 125051 port 188 125051 unique_id port 125051 remote_ip 10.8.0.90 125053 username musa 125053 kill_reason Another user logged on this global unique id 125053 mac 125053 bytes_out 0 125053 bytes_in 0 125053 station_ip 83.122.109.255 125053 port 201 125053 unique_id port 125059 username rezaei 125059 mac 125059 bytes_out 376465 125059 bytes_in 5033026 125059 station_ip 5.119.148.149 125059 port 207 125059 unique_id port 125059 remote_ip 10.8.0.206 125060 username rostami 125060 mac 125060 bytes_out 2924798 125060 bytes_in 15152627 125060 station_ip 5.119.121.161 125060 port 169 125060 unique_id port 125060 remote_ip 10.8.0.194 125064 username forozande 125064 mac 125064 bytes_out 1204772 125064 bytes_in 21378761 125064 station_ip 83.122.157.46 125064 port 187 125064 unique_id port 125064 remote_ip 10.8.0.74 125067 username musa 125067 kill_reason Another user logged on this global unique id 125067 mac 125067 bytes_out 0 125067 bytes_in 0 125067 station_ip 83.122.109.255 125067 port 201 125067 unique_id port 125068 username moradi 125068 kill_reason Another user logged on this global unique id 125068 mac 125068 bytes_out 0 125068 bytes_in 0 125068 station_ip 37.129.107.39 125068 port 101 125068 unique_id port 125068 remote_ip 10.8.1.202 125073 username barzegar 125073 mac 125073 bytes_out 0 125073 bytes_in 0 125073 station_ip 5.119.46.24 125073 port 105 125073 unique_id port 125073 remote_ip 10.8.1.174 125074 username avaanna 125074 mac 125074 bytes_out 422795 125074 bytes_in 1463450 125074 station_ip 83.123.1.133 125074 port 197 125074 unique_id port 125074 remote_ip 10.8.0.98 125075 username mansur 125075 mac 125075 bytes_out 2496063 125075 bytes_in 33749595 125075 station_ip 5.119.72.7 125075 port 196 125075 unique_id port 125075 remote_ip 10.8.0.210 125078 username mansur 125078 kill_reason Another user logged on this global unique id 125078 mac 125078 bytes_out 0 125078 bytes_in 0 125078 station_ip 5.119.72.7 125078 port 105 125078 unique_id port 125078 remote_ip 10.8.1.194 125079 username alihosseini1 125079 mac 125079 bytes_out 769083 125079 bytes_in 5711261 125079 station_ip 5.119.151.182 125079 port 169 125079 unique_id port 125079 remote_ip 10.8.0.166 125083 username asadi 125083 kill_reason Relative expiration date has reached 125083 unique_id port 125083 bytes_out 0 125083 bytes_in 0 125083 station_ip 5.217.3.217 125083 port 15729922 125083 nas_port_type Virtual 125101 username hamidsalari1 125101 mac 125101 bytes_out 0 125101 bytes_in 0 125101 station_ip 83.123.113.243 125101 port 203 125101 unique_id port 125105 username arash 125105 mac 125105 bytes_out 0 125105 bytes_in 0 125105 station_ip 37.27.31.235 125105 port 209 125105 unique_id port 125105 remote_ip 10.8.0.114 125107 username barzegar 125107 mac 125107 bytes_out 0 125107 bytes_in 0 125107 station_ip 5.119.46.24 125107 port 209 125057 unique_id port 125057 remote_ip 10.8.0.206 125062 username mohsenaskari 125062 mac 125062 bytes_out 408192 125062 bytes_in 1125156 125062 station_ip 46.225.212.144 125062 port 199 125062 unique_id port 125062 remote_ip 10.8.0.246 125065 username mohsenaskari 125065 mac 125065 bytes_out 0 125065 bytes_in 0 125065 station_ip 46.225.212.144 125065 port 196 125065 unique_id port 125065 remote_ip 10.8.0.246 125066 username forozande 125066 mac 125066 bytes_out 14023 125066 bytes_in 26418 125066 station_ip 83.122.15.211 125066 port 187 125066 unique_id port 125066 remote_ip 10.8.0.74 125077 username barzegar 125077 mac 125077 bytes_out 0 125077 bytes_in 0 125077 station_ip 5.119.46.24 125077 port 106 125077 unique_id port 125077 remote_ip 10.8.1.174 125080 username sedighe 125080 mac 125080 bytes_out 9048 125080 bytes_in 11069 125080 station_ip 83.122.74.181 125080 port 197 125080 unique_id port 125080 remote_ip 10.8.0.146 125082 username sedighe 125082 mac 125082 bytes_out 2008 125082 bytes_in 4973 125082 station_ip 83.122.74.181 125082 port 169 125082 unique_id port 125082 remote_ip 10.8.0.146 125084 username asadi 125084 kill_reason Relative expiration date has reached 125084 mac 125084 bytes_out 0 125084 bytes_in 0 125084 station_ip 5.217.3.217 125084 port 169 125084 unique_id port 125085 username mohammadmahdi 125085 mac 125085 bytes_out 3131088 125085 bytes_in 35668948 125085 station_ip 5.119.234.199 125085 port 201 125085 unique_id port 125085 remote_ip 10.8.0.54 125089 username mansur 125089 mac 125089 bytes_out 0 125089 bytes_in 0 125089 station_ip 5.119.72.7 125089 port 105 125089 unique_id port 125091 username moradi 125091 mac 125091 bytes_out 0 125091 bytes_in 0 125091 station_ip 37.129.107.39 125091 port 101 125091 unique_id port 125092 username mohammadmahdi 125092 mac 125092 bytes_out 1505276 125092 bytes_in 19024872 125092 station_ip 5.119.234.199 125092 port 169 125092 unique_id port 125092 remote_ip 10.8.0.54 125097 username barzegar 125097 mac 125097 bytes_out 0 125097 bytes_in 0 125097 station_ip 5.119.46.24 125097 port 205 125097 unique_id port 125097 remote_ip 10.8.0.234 125099 username barzegar 125099 mac 125099 bytes_out 0 125099 bytes_in 0 125099 station_ip 5.119.46.24 125099 port 105 125099 unique_id port 125099 remote_ip 10.8.1.174 125100 username barzegar 125100 mac 125100 bytes_out 0 125100 bytes_in 0 125100 station_ip 5.119.46.24 125100 port 105 125100 unique_id port 125100 remote_ip 10.8.1.174 125103 username barzegar 125103 mac 125103 bytes_out 0 125103 bytes_in 0 125103 station_ip 5.119.46.24 125103 port 209 125103 unique_id port 125103 remote_ip 10.8.0.234 125109 username sabaghnezhad 125109 mac 125109 bytes_out 0 125109 bytes_in 0 125109 station_ip 83.123.108.20 125109 port 169 125109 unique_id port 125109 remote_ip 10.8.0.186 125110 username avaanna 125110 mac 125110 bytes_out 0 125110 bytes_in 0 125110 station_ip 83.123.1.133 125110 port 207 125110 unique_id port 125110 remote_ip 10.8.0.98 125113 username jafari 125113 mac 125113 bytes_out 0 125113 bytes_in 0 125113 station_ip 93.114.18.148 125113 port 187 125113 unique_id port 125117 username hosseine 125117 mac 125117 bytes_out 0 125117 bytes_in 0 125117 station_ip 83.123.21.247 125117 port 188 125117 unique_id port 125117 remote_ip 10.8.0.238 125118 username mohammadmahdi 125118 kill_reason Another user logged on this global unique id 125118 mac 125076 station_ip 93.114.18.148 125076 port 187 125076 unique_id port 125081 username mehdizare 125081 mac 125081 bytes_out 331556 125081 bytes_in 1465832 125081 station_ip 5.119.165.187 125081 port 188 125081 unique_id port 125081 remote_ip 10.8.0.90 125086 username hosseine 125086 mac 125086 bytes_out 362091 125086 bytes_in 3496751 125086 station_ip 83.123.21.247 125086 port 205 125086 unique_id port 125086 remote_ip 10.8.0.238 125087 username mahdiyehalizadeh 125087 mac 125087 bytes_out 20692 125087 bytes_in 23793 125087 station_ip 83.123.50.214 125087 port 208 125087 unique_id port 125087 remote_ip 10.8.0.82 125088 username jafari 125088 kill_reason Another user logged on this global unique id 125088 mac 125088 bytes_out 0 125088 bytes_in 0 125088 station_ip 93.114.18.148 125088 port 187 125088 unique_id port 125090 username forozande 125090 mac 125090 bytes_out 1061214 125090 bytes_in 9251495 125090 station_ip 37.129.189.138 125090 port 196 125090 unique_id port 125090 remote_ip 10.8.0.74 125093 username barzegar 125093 mac 125093 bytes_out 0 125093 bytes_in 0 125093 station_ip 5.119.46.24 125093 port 169 125093 unique_id port 125093 remote_ip 10.8.0.234 125094 username arash 125094 mac 125094 bytes_out 27593 125094 bytes_in 60324 125094 station_ip 37.27.31.235 125094 port 201 125094 unique_id port 125094 remote_ip 10.8.0.114 125095 username hamidsalari1 125095 kill_reason Another user logged on this global unique id 125095 mac 125095 bytes_out 0 125095 bytes_in 0 125095 station_ip 83.123.113.243 125095 port 203 125095 unique_id port 125096 username moradi 125096 mac 125096 bytes_out 0 125096 bytes_in 0 125096 station_ip 37.129.107.39 125096 port 196 125096 unique_id port 125096 remote_ip 10.8.0.250 125098 username barzegar 125098 mac 125098 bytes_out 0 125098 bytes_in 0 125098 station_ip 5.119.46.24 125098 port 196 125098 unique_id port 125098 remote_ip 10.8.0.234 125102 username barzegar 125102 mac 125102 bytes_out 0 125102 bytes_in 0 125102 station_ip 5.119.46.24 125102 port 209 125102 unique_id port 125102 remote_ip 10.8.0.234 125104 username arash 125104 mac 125104 bytes_out 0 125104 bytes_in 0 125104 station_ip 37.27.31.235 62347 username arezoo 62347 kill_reason Maximum check online fails reached 62347 mac 5.237.75.89:51230: Unknown host 62347 bytes_out 0 62347 bytes_in 0 62347 station_ip 5.237.75.89:51230 62347 port 1017 62347 unique_id port 125104 port 203 125104 unique_id port 125104 remote_ip 10.8.0.114 125106 username jafari 125106 kill_reason Another user logged on this global unique id 125106 mac 125106 bytes_out 0 125106 bytes_in 0 125106 station_ip 93.114.18.148 125106 port 187 125106 unique_id port 125108 username zare 125108 kill_reason Another user logged on this global unique id 125108 mac 125108 bytes_out 0 125108 bytes_in 0 125108 station_ip 37.27.1.196 125108 port 101 125108 unique_id port 125108 remote_ip 10.8.1.58 125111 username zare 125111 kill_reason Another user logged on this global unique id 125111 mac 125111 bytes_out 0 125111 bytes_in 0 125111 station_ip 37.27.1.196 125111 port 101 125111 unique_id port 125115 username barzegar 125115 mac 125115 bytes_out 0 125115 bytes_in 0 125115 station_ip 5.119.46.24 125115 port 106 125115 unique_id port 125115 remote_ip 10.8.1.174 125116 username aminvpn 125116 mac 125116 bytes_out 0 125116 bytes_in 0 125116 station_ip 5.120.40.71 125116 port 169 125116 unique_id port 125116 remote_ip 10.8.0.14 125119 username mostafa_es78 125119 unique_id port 125107 unique_id port 125107 remote_ip 10.8.0.234 125112 username barzegar 125112 mac 125112 bytes_out 0 125112 bytes_in 0 125112 station_ip 5.119.46.24 125112 port 169 125112 unique_id port 125112 remote_ip 10.8.0.234 125114 username zare 125114 kill_reason Another user logged on this global unique id 125114 mac 125114 bytes_out 0 125114 bytes_in 0 125114 station_ip 37.27.1.196 125114 port 101 125114 unique_id port 125122 username alihosseini1 125122 mac 125122 bytes_out 0 125122 bytes_in 0 125122 station_ip 5.120.37.121 125122 port 210 125122 unique_id port 125129 username mostafa_es78 125129 unique_id port 125129 terminate_cause User-Request 125129 bytes_out 0 125129 bytes_in 342 125129 station_ip 5.126.6.188 125129 port 15729926 125129 nas_port_type Virtual 125129 remote_ip 5.5.5.254 125131 username moradi 125131 mac 125131 bytes_out 0 125131 bytes_in 0 125131 station_ip 46.225.232.147 125131 port 106 125131 unique_id port 125131 remote_ip 10.8.1.202 125132 username aminvpn 125132 mac 125132 bytes_out 0 125132 bytes_in 0 125132 station_ip 5.120.40.71 125132 port 187 125132 unique_id port 125132 remote_ip 10.8.0.14 125133 username zare 125133 kill_reason Another user logged on this global unique id 125133 mac 125133 bytes_out 0 125133 bytes_in 0 125133 station_ip 37.27.1.196 125133 port 101 125133 unique_id port 125134 username barzegar 125134 mac 125134 bytes_out 0 125134 bytes_in 0 125134 station_ip 5.119.46.24 125134 port 108 125134 unique_id port 125134 remote_ip 10.8.1.174 125138 username avaanna 125138 mac 125138 bytes_out 74474 125138 bytes_in 85807 125138 station_ip 83.123.1.133 125138 port 105 125138 unique_id port 125138 remote_ip 10.8.1.46 125139 username rostami 125139 mac 125139 bytes_out 240112 125139 bytes_in 370680 125139 station_ip 5.119.121.161 125139 port 188 125139 unique_id port 125139 remote_ip 10.8.0.194 125142 username hosseine 125142 mac 125142 bytes_out 0 125142 bytes_in 0 125142 station_ip 83.123.21.247 125142 port 169 125142 unique_id port 125142 remote_ip 10.8.0.238 125148 username farhad1 125148 kill_reason Relative expiration date has reached 125148 mac 125148 bytes_out 0 125148 bytes_in 0 125148 station_ip 5.120.10.109 125148 port 199 125148 unique_id port 125149 username kordestani 125149 mac 125149 bytes_out 0 125149 bytes_in 0 125149 station_ip 151.235.113.96 125149 port 108 125149 unique_id port 125149 remote_ip 10.8.1.98 125151 username zare 125151 kill_reason Another user logged on this global unique id 125151 mac 125151 bytes_out 0 125151 bytes_in 0 125151 station_ip 37.27.1.196 125151 port 101 125151 unique_id port 125152 username barzegar 125152 mac 125152 bytes_out 5183 125152 bytes_in 13597 125152 station_ip 5.119.46.24 125152 port 108 125152 unique_id port 125152 remote_ip 10.8.1.174 125155 username moradi 125155 kill_reason Another user logged on this global unique id 125155 mac 125155 bytes_out 0 125155 bytes_in 0 125155 station_ip 46.225.232.147 125155 port 208 125155 unique_id port 125155 remote_ip 10.8.0.250 125156 username aminvpn 125156 mac 125156 bytes_out 374152 125156 bytes_in 755101 125156 station_ip 5.120.40.71 125156 port 106 125156 unique_id port 125156 remote_ip 10.8.1.6 125159 username moradi 125159 kill_reason Another user logged on this global unique id 125159 mac 125159 bytes_out 0 125159 bytes_in 0 125159 station_ip 46.225.232.147 125159 port 208 125159 unique_id port 125168 username mahdiyehalizadeh 125168 mac 125168 bytes_out 0 125168 bytes_in 0 125118 bytes_out 0 125118 bytes_in 0 125118 station_ip 5.119.234.199 125118 port 201 125118 unique_id port 125118 remote_ip 10.8.0.54 125123 username zare 125123 kill_reason Another user logged on this global unique id 125123 mac 125123 bytes_out 0 125123 bytes_in 0 125123 station_ip 37.27.1.196 125123 port 101 125123 unique_id port 125126 username musa 125126 kill_reason Maximum check online fails reached 125126 mac 125126 bytes_out 449809 125126 bytes_in 6772731 125126 station_ip 83.122.144.115 125126 port 196 125126 unique_id port 125126 remote_ip 10.8.0.6 125127 username barzegar 125127 mac 125127 bytes_out 0 125127 bytes_in 0 125127 station_ip 5.119.46.24 125127 port 106 125127 unique_id port 125127 remote_ip 10.8.1.174 125130 username barzegar 125130 mac 125130 bytes_out 0 125130 bytes_in 0 125130 station_ip 5.119.46.24 125130 port 106 125130 unique_id port 125130 remote_ip 10.8.1.174 125135 username forozande 125135 mac 125135 bytes_out 0 125135 bytes_in 0 125135 station_ip 83.122.227.32 125135 port 187 125135 unique_id port 125135 remote_ip 10.8.0.74 125137 username barzegar 125137 mac 125137 bytes_out 0 125137 bytes_in 0 125137 station_ip 5.119.46.24 125137 port 108 125137 unique_id port 125137 remote_ip 10.8.1.174 125153 username forozande 125153 mac 125153 bytes_out 0 125153 bytes_in 0 125153 station_ip 113.203.32.250 125153 port 207 125153 unique_id port 125153 remote_ip 10.8.0.74 125154 username barzegar 125154 mac 125154 bytes_out 0 125154 bytes_in 0 125154 station_ip 5.119.46.24 125154 port 108 125154 unique_id port 125154 remote_ip 10.8.1.174 125157 username zare 125157 kill_reason Another user logged on this global unique id 125157 mac 125157 bytes_out 0 125157 bytes_in 0 125157 station_ip 37.27.1.196 125157 port 101 125157 unique_id port 125158 username forozande 125158 mac 125158 bytes_out 0 125158 bytes_in 0 125158 station_ip 37.129.189.132 125158 port 187 125158 unique_id port 125158 remote_ip 10.8.0.74 125161 username barzegar 125161 mac 125161 bytes_out 0 125161 bytes_in 0 125161 station_ip 5.119.46.24 125161 port 109 125161 unique_id port 125161 remote_ip 10.8.1.174 125162 username barzegar 125162 mac 125162 bytes_out 0 125162 bytes_in 0 125162 station_ip 5.119.46.24 125162 port 109 125162 unique_id port 125162 remote_ip 10.8.1.174 125164 username avaanna 125164 mac 125164 bytes_out 0 125164 bytes_in 0 125164 station_ip 83.123.1.133 125164 port 197 125164 unique_id port 125164 remote_ip 10.8.0.98 125165 username zare 125165 kill_reason Another user logged on this global unique id 125165 mac 125165 bytes_out 0 125165 bytes_in 0 125165 station_ip 37.27.1.196 125165 port 101 125165 unique_id port 125166 username barzegar 125166 mac 125166 bytes_out 3882 125166 bytes_in 6423 125166 station_ip 5.119.46.24 125166 port 109 125166 unique_id port 125166 remote_ip 10.8.1.174 125170 username zare 125170 mac 125170 bytes_out 0 125170 bytes_in 0 125170 station_ip 37.27.1.196 125170 port 101 125170 unique_id port 125173 username rezaei 125173 mac 125173 bytes_out 0 125173 bytes_in 0 125173 station_ip 5.119.148.149 125173 port 199 125173 unique_id port 125173 remote_ip 10.8.0.206 125180 username barzegar 125180 mac 125180 bytes_out 0 125180 bytes_in 0 125180 station_ip 5.119.46.24 125180 port 199 125180 unique_id port 125180 remote_ip 10.8.0.234 125184 username hamid.e 125184 unique_id port 125184 terminate_cause User-Request 125184 bytes_out 7980975 125119 terminate_cause User-Request 125119 bytes_out 505557 125119 bytes_in 2038766 125119 station_ip 5.126.84.29 125119 port 15729923 125119 nas_port_type Virtual 125119 remote_ip 5.5.5.254 125120 username alihosseini1 125120 kill_reason Another user logged on this global unique id 125120 mac 125120 bytes_out 0 125120 bytes_in 0 125120 station_ip 5.120.37.121 125120 port 210 125120 unique_id port 125120 remote_ip 10.8.0.166 125121 username houshang 125121 mac 125121 bytes_out 0 125121 bytes_in 0 125121 station_ip 5.120.136.1 125121 port 188 125121 unique_id port 125121 remote_ip 10.8.0.22 125124 username malekpoir 125124 kill_reason Another user logged on this global unique id 125124 mac 125124 bytes_out 0 125124 bytes_in 0 125124 station_ip 5.119.182.142 125124 port 135 125124 unique_id port 125124 remote_ip 10.8.0.58 125125 username rostami 125125 mac 125125 bytes_out 0 125125 bytes_in 0 125125 station_ip 5.119.121.161 125125 port 199 125125 unique_id port 125125 remote_ip 10.8.0.194 125128 username moradi 125128 mac 125128 bytes_out 0 125128 bytes_in 0 125128 station_ip 46.225.232.147 125128 port 208 125128 unique_id port 125128 remote_ip 10.8.0.250 125136 username mehdizare 125136 mac 125136 bytes_out 0 125136 bytes_in 0 125136 station_ip 5.119.165.187 125136 port 197 125136 unique_id port 125136 remote_ip 10.8.0.90 125140 username zare 125140 kill_reason Another user logged on this global unique id 125140 mac 125140 bytes_out 0 125140 bytes_in 0 125140 station_ip 37.27.1.196 125140 port 101 125140 unique_id port 125141 username rostami 125141 mac 125141 bytes_out 0 125141 bytes_in 0 125141 station_ip 5.119.121.161 125141 port 188 125141 unique_id port 125141 remote_ip 10.8.0.194 125143 username zare 125143 kill_reason Another user logged on this global unique id 125143 mac 125143 bytes_out 0 125143 bytes_in 0 125143 station_ip 37.27.1.196 125143 port 101 125143 unique_id port 125144 username barzegar 125144 mac 125144 bytes_out 63835 125144 bytes_in 105324 125144 station_ip 5.119.46.24 125144 port 105 125144 unique_id port 125144 remote_ip 10.8.1.174 125145 username aminvpn 125145 unique_id port 125145 terminate_cause User-Request 125145 bytes_out 594618 125145 bytes_in 4664665 125145 station_ip 5.160.115.102 125145 port 15729928 125145 nas_port_type Virtual 125145 remote_ip 5.5.5.253 125146 username barzegar 125146 mac 125146 bytes_out 0 125146 bytes_in 0 125146 station_ip 5.119.46.24 125146 port 105 62397 username arezoo 62397 kill_reason Maximum check online fails reached 62397 mac 5.237.75.89:49349: Unknown host 62397 bytes_out 0 62397 bytes_in 0 62397 station_ip 5.237.75.89:49349 62397 port 1017 62397 unique_id port 125146 unique_id port 125146 remote_ip 10.8.1.174 125147 username moradi 125147 mac 125147 bytes_out 0 125147 bytes_in 0 125147 station_ip 37.129.30.111 125147 port 199 125147 unique_id port 125147 remote_ip 10.8.0.250 125150 username mehdizare 125150 mac 125150 bytes_out 0 125150 bytes_in 0 125150 station_ip 5.119.165.187 125150 port 187 125150 unique_id port 125150 remote_ip 10.8.0.90 125160 username barzegar 125160 mac 125160 bytes_out 0 125160 bytes_in 0 125160 station_ip 5.119.46.24 125160 port 187 125160 unique_id port 125160 remote_ip 10.8.0.234 125163 username hamidsalari1 125163 mac 125163 bytes_out 0 125163 bytes_in 0 125163 station_ip 83.123.113.243 125163 port 205 125163 unique_id port 125163 remote_ip 10.8.0.226 125167 username zare 125167 kill_reason Another user logged on this global unique id 125167 mac 125167 bytes_out 0 125167 bytes_in 0 125167 station_ip 37.27.1.196 125167 port 101 125167 unique_id port 125169 username forozande 125169 kill_reason Another user logged on this global unique id 125169 mac 125169 bytes_out 0 125169 bytes_in 0 125169 station_ip 83.122.143.41 125169 port 187 125169 unique_id port 125169 remote_ip 10.8.0.74 125171 username moradi 125171 mac 125171 bytes_out 0 125171 bytes_in 0 125171 station_ip 46.225.232.147 125171 port 208 125171 unique_id port 125178 username forozande 125178 kill_reason Another user logged on this global unique id 125178 mac 125178 bytes_out 0 125178 bytes_in 0 125178 station_ip 83.122.143.41 125178 port 187 125178 unique_id port 125183 username forozande 125183 mac 125183 bytes_out 0 125183 bytes_in 0 125183 station_ip 83.122.143.41 125183 port 187 125183 unique_id port 125186 username mohammadmahdi 125186 mac 125186 bytes_out 0 125186 bytes_in 0 125186 station_ip 5.119.234.199 125186 port 201 125186 unique_id port 125192 username barzegar 125192 mac 125192 bytes_out 0 125192 bytes_in 0 125192 station_ip 5.119.46.24 125192 port 108 125192 unique_id port 125192 remote_ip 10.8.1.174 125196 username moradi 125196 mac 125196 bytes_out 41142 125196 bytes_in 53504 125196 station_ip 46.225.232.147 125196 port 101 125196 unique_id port 125196 remote_ip 10.8.1.202 125197 username rajaei 125197 mac 125197 bytes_out 0 125197 bytes_in 0 125197 station_ip 37.156.155.158 125197 port 187 125197 unique_id port 125198 username alirezazadeh 125198 kill_reason Maximum check online fails reached 125198 unique_id port 125198 bytes_out 306067 125198 bytes_in 988884 125198 station_ip 31.56.113.217 125198 port 15729929 125198 nas_port_type Virtual 125198 remote_ip 5.5.5.255 125201 username rezaei 125201 kill_reason Another user logged on this global unique id 125201 mac 125201 bytes_out 0 125201 bytes_in 0 125201 station_ip 5.119.148.149 125201 port 199 125201 unique_id port 125201 remote_ip 10.8.0.206 125203 username mohsenaskari 125203 mac 125203 bytes_out 0 125203 bytes_in 0 125203 station_ip 37.129.144.188 125203 port 187 125203 unique_id port 125203 remote_ip 10.8.0.246 125205 username mirzaei 125205 mac 125205 bytes_out 0 125205 bytes_in 0 125205 station_ip 5.119.93.38 125205 port 85 125205 unique_id port 125207 username mirzaei 125207 kill_reason Maximum check online fails reached 125207 mac 125207 bytes_out 0 125207 bytes_in 0 125207 station_ip 5.119.93.38 125207 port 85 125207 unique_id port 125219 username mohsenaskari 125219 mac 125219 bytes_out 121706 125219 bytes_in 879198 125219 station_ip 37.129.148.132 125219 port 188 125219 unique_id port 125219 remote_ip 10.8.0.246 125220 username mirzaei 125220 mac 125220 bytes_out 17054 125220 bytes_in 30185 125220 station_ip 5.114.111.66 125220 port 101 125220 unique_id port 125220 remote_ip 10.8.1.30 125223 username barzegar 125223 mac 125223 bytes_out 0 125223 bytes_in 0 125223 station_ip 5.119.46.24 125223 port 196 125223 unique_id port 125223 remote_ip 10.8.0.234 125225 username forozande 125225 mac 125225 bytes_out 231421 125225 bytes_in 2172463 125225 station_ip 37.129.4.0 125225 port 101 125225 unique_id port 125225 remote_ip 10.8.1.102 125232 username mirzaei 125232 kill_reason Maximum check online fails reached 125232 mac 125232 bytes_out 0 125232 bytes_in 0 125232 station_ip 5.114.111.66 125232 port 101 125232 unique_id port 125233 username khalili 125233 mac 125233 bytes_out 0 125233 bytes_in 0 125233 station_ip 5.120.86.24 125233 port 187 125168 station_ip 37.129.193.58 125168 port 199 125168 unique_id port 125168 remote_ip 10.8.0.82 125172 username avaanna 125172 mac 125172 bytes_out 0 125172 bytes_in 0 125172 station_ip 83.123.1.133 125172 port 205 125172 unique_id port 125172 remote_ip 10.8.0.98 125174 username barzegar 125174 mac 125174 bytes_out 0 125174 bytes_in 0 125174 station_ip 5.119.46.24 125174 port 101 125174 unique_id port 125174 remote_ip 10.8.1.174 125175 username barzegar 125175 mac 125175 bytes_out 0 125175 bytes_in 0 125175 station_ip 5.119.46.24 125175 port 101 125175 unique_id port 125175 remote_ip 10.8.1.174 125176 username alihosseini1 125176 mac 125176 bytes_out 2514144 125176 bytes_in 26032972 125176 station_ip 5.120.135.109 125176 port 108 125176 unique_id port 125176 remote_ip 10.8.1.106 125177 username barzegar 125177 mac 125177 bytes_out 0 125177 bytes_in 0 125177 station_ip 5.119.46.24 125177 port 199 125177 unique_id port 125177 remote_ip 10.8.0.234 125179 username barzegar 125179 mac 125179 bytes_out 0 125179 bytes_in 0 125179 station_ip 5.119.46.24 125179 port 199 125179 unique_id port 125179 remote_ip 10.8.0.234 125181 username barzegar 125181 mac 125181 bytes_out 0 62424 username arezoo 62424 kill_reason Maximum check online fails reached 62424 mac 5.237.68.212:49189: Unknown host 62424 bytes_out 0 62424 bytes_in 0 62424 station_ip 5.237.68.212:49189 62424 port 1017 62424 unique_id port 62425 username arezoo 62425 kill_reason Maximum check online fails reached 62425 mac 5.237.68.212:49179: Unknown host 62425 bytes_out 0 62425 bytes_in 0 62425 station_ip 5.237.68.212:49179 62425 port 1017 62425 unique_id port 125181 bytes_in 0 125181 station_ip 5.119.46.24 125181 port 108 125181 unique_id port 125181 remote_ip 10.8.1.174 125182 username mahdiyehalizadeh 125182 mac 125182 bytes_out 0 125182 bytes_in 0 125182 station_ip 37.129.193.58 125182 port 207 125182 unique_id port 125182 remote_ip 10.8.0.82 125185 username barzegar 125185 mac 125185 bytes_out 3135 125185 bytes_in 5705 125185 station_ip 5.119.46.24 125185 port 108 125185 unique_id port 125185 remote_ip 10.8.1.174 125189 username barzegar 125189 mac 125189 bytes_out 0 125189 bytes_in 0 125189 station_ip 5.119.46.24 125189 port 196 125189 unique_id port 125189 remote_ip 10.8.0.234 125190 username barzegar 125190 mac 125190 bytes_out 0 125190 bytes_in 0 125190 station_ip 5.119.46.24 125190 port 196 125190 unique_id port 125190 remote_ip 10.8.0.234 125195 username barzegar 125195 mac 125195 bytes_out 0 125195 bytes_in 0 125195 station_ip 5.119.46.24 125195 port 108 125195 unique_id port 125195 remote_ip 10.8.1.174 125199 username aminvpn 125199 kill_reason Another user logged on this global unique id 125199 mac 125199 bytes_out 0 125199 bytes_in 0 125199 station_ip 37.129.35.196 125199 port 169 125199 unique_id port 125199 remote_ip 10.8.0.14 125202 username arash 125202 mac 125202 bytes_out 0 125202 bytes_in 0 125202 station_ip 37.27.31.235 125202 port 203 125202 unique_id port 125202 remote_ip 10.8.0.114 125208 username rezaei 125208 mac 125208 bytes_out 0 125208 bytes_in 0 125208 station_ip 5.119.148.149 125208 port 199 125208 unique_id port 125210 username rezaei 125210 mac 125210 bytes_out 0 125210 bytes_in 0 125210 station_ip 5.119.148.149 125210 port 188 125210 unique_id port 125210 remote_ip 10.8.0.206 125211 username barzegar 125211 mac 125211 bytes_out 2583 125211 bytes_in 4984 125211 station_ip 5.119.46.24 125184 bytes_in 102231215 125184 station_ip 37.27.33.173 125184 port 15729927 125184 nas_port_type Virtual 125184 remote_ip 5.5.5.255 125187 username mohsenaskari 125187 mac 125187 bytes_out 0 125187 bytes_in 0 125187 station_ip 37.129.177.148 125187 port 187 125187 unique_id port 125187 remote_ip 10.8.0.246 125188 username barzegar 125188 mac 125188 bytes_out 5620 125188 bytes_in 8200 125188 station_ip 5.119.46.24 125188 port 108 125188 unique_id port 125188 remote_ip 10.8.1.174 125191 username rajaei 125191 kill_reason Another user logged on this global unique id 125191 mac 125191 bytes_out 0 125191 bytes_in 0 125191 station_ip 37.156.155.158 125191 port 187 125191 unique_id port 125191 remote_ip 10.8.0.34 125193 username barzegar 125193 mac 125193 bytes_out 2583 125193 bytes_in 5039 125193 station_ip 5.119.46.24 125193 port 108 125193 unique_id port 125193 remote_ip 10.8.1.174 125194 username hosseine 125194 mac 125194 bytes_out 0 125194 bytes_in 0 125194 station_ip 83.123.21.247 125194 port 188 125194 unique_id port 125194 remote_ip 10.8.0.238 125200 username mohsenaskari 125200 mac 125200 bytes_out 0 125200 bytes_in 0 125200 station_ip 37.129.144.188 125200 port 187 125200 unique_id port 125200 remote_ip 10.8.0.246 125204 username barzegar 125204 mac 125204 bytes_out 0 125204 bytes_in 0 125204 station_ip 5.119.46.24 125204 port 188 125204 unique_id port 125204 remote_ip 10.8.0.234 125206 username barzegar 125206 mac 125206 bytes_out 0 125206 bytes_in 0 125206 station_ip 5.119.46.24 125206 port 187 125206 unique_id port 125206 remote_ip 10.8.0.234 125209 username barzegar 125209 mac 125209 bytes_out 0 125209 bytes_in 0 125209 station_ip 5.119.46.24 125209 port 187 125209 unique_id port 125209 remote_ip 10.8.0.234 125212 username aminvpn 125212 mac 125212 bytes_out 160878 125212 bytes_in 703762 125212 station_ip 5.120.40.71 125212 port 106 125212 unique_id port 125212 remote_ip 10.8.1.6 125213 username rezaei 125213 mac 125213 bytes_out 0 125213 bytes_in 0 125213 station_ip 5.119.148.149 125213 port 187 125213 unique_id port 125213 remote_ip 10.8.0.206 125218 username mirzaei 125218 mac 125218 bytes_out 69217 125218 bytes_in 163777 125218 station_ip 5.114.111.66 125218 port 101 125218 unique_id port 125218 remote_ip 10.8.1.30 125226 username barzegar 125226 mac 125226 bytes_out 0 125226 bytes_in 0 125226 station_ip 5.119.46.24 125226 port 196 125226 unique_id port 125226 remote_ip 10.8.0.234 125228 username malekpoir 125228 kill_reason Another user logged on this global unique id 125228 mac 125228 bytes_out 0 125228 bytes_in 0 125228 station_ip 5.119.182.142 125228 port 135 125228 unique_id port 125230 username moradi 125230 mac 125230 bytes_out 0 125230 bytes_in 0 125230 station_ip 46.225.232.147 125230 port 187 125230 unique_id port 125230 remote_ip 10.8.0.250 125236 username mohsenaskari 125236 mac 125236 bytes_out 176447 125236 bytes_in 1882614 125236 station_ip 37.129.147.236 125236 port 187 125236 unique_id port 125236 remote_ip 10.8.0.246 125240 username mirzaei 125240 mac 125240 bytes_out 0 125240 bytes_in 0 125240 station_ip 5.120.181.96 125240 port 187 125240 unique_id port 125240 remote_ip 10.8.0.66 125242 username barzegar 125242 mac 125242 bytes_out 0 125242 bytes_in 0 125242 station_ip 5.119.46.24 125242 port 187 125242 unique_id port 125242 remote_ip 10.8.0.234 125245 username mirzaei 125245 mac 125245 bytes_out 0 125245 bytes_in 0 125211 port 101 125211 unique_id port 125211 remote_ip 10.8.1.174 125214 username barzegar 125214 mac 125214 bytes_out 0 125214 bytes_in 0 125214 station_ip 5.119.46.24 125214 port 188 125214 unique_id port 125214 remote_ip 10.8.0.234 125215 username barzegar 125215 mac 125215 bytes_out 0 125215 bytes_in 0 125215 station_ip 5.119.46.24 125215 port 106 125215 unique_id port 125215 remote_ip 10.8.1.174 125216 username barzegar 125216 mac 125216 bytes_out 0 125216 bytes_in 0 125216 station_ip 5.119.46.24 125216 port 187 125216 unique_id port 125216 remote_ip 10.8.0.234 125217 username barzegar 125217 mac 125217 bytes_out 0 125217 bytes_in 0 125217 station_ip 5.119.46.24 62427 username arezoo 62427 kill_reason Maximum check online fails reached 62427 mac 5.237.68.212:49841: Unknown host 62427 bytes_out 0 62427 bytes_in 0 62427 station_ip 5.237.68.212:49841 62427 port 1017 62427 unique_id port 125217 port 187 125217 unique_id port 125217 remote_ip 10.8.0.234 125221 username barzegar 125221 mac 125221 bytes_out 0 125221 bytes_in 0 125221 station_ip 5.119.46.24 125221 port 196 125221 unique_id port 125221 remote_ip 10.8.0.234 125222 username barzegar 125222 mac 125222 bytes_out 0 125222 bytes_in 0 125222 station_ip 5.119.46.24 125222 port 196 125222 unique_id port 125222 remote_ip 10.8.0.234 125224 username mirzaei 125224 mac 125224 bytes_out 23799 125224 bytes_in 21841 125224 station_ip 5.114.111.66 125224 port 101 125224 unique_id port 125224 remote_ip 10.8.1.30 125227 username barzegar 125227 mac 125227 bytes_out 0 125227 bytes_in 0 125227 station_ip 5.119.46.24 125227 port 199 125227 unique_id port 125227 remote_ip 10.8.0.234 125229 username barzegar 125229 mac 125229 bytes_out 0 125229 bytes_in 0 125229 station_ip 5.119.46.24 125229 port 201 125229 unique_id port 125229 remote_ip 10.8.0.234 125231 username mirzaei 125231 mac 125231 bytes_out 0 125231 bytes_in 0 125231 station_ip 5.114.111.66 125231 port 196 125231 unique_id port 125231 remote_ip 10.8.0.66 125237 username barzegar 125237 mac 125237 bytes_out 0 125237 bytes_in 0 125237 station_ip 5.119.46.24 125237 port 106 125237 unique_id port 125237 remote_ip 10.8.1.174 125239 username mohsenaskari 125239 mac 125239 bytes_out 0 125239 bytes_in 0 125239 station_ip 37.129.147.236 125239 port 201 125239 unique_id port 125239 remote_ip 10.8.0.246 125241 username ahmadipour 125241 unique_id port 125241 terminate_cause Lost-Carrier 125241 bytes_out 1002219 125241 bytes_in 29362685 125241 station_ip 83.122.15.94 125241 port 15729934 125241 nas_port_type Virtual 125241 remote_ip 5.5.5.251 125243 username mohammadjavad 125243 mac 125243 bytes_out 0 125243 bytes_in 0 125243 station_ip 83.122.181.121 125243 port 199 125243 unique_id port 125246 username mirzaei 125246 mac 125246 bytes_out 0 125246 bytes_in 0 125246 station_ip 5.120.181.96 125246 port 106 125246 unique_id port 125246 remote_ip 10.8.1.30 125248 username alireza 125248 unique_id port 125248 terminate_cause Lost-Carrier 125248 bytes_out 3132254 125248 bytes_in 89236397 125248 station_ip 5.119.178.73 125248 port 15729931 125248 nas_port_type Virtual 125248 remote_ip 5.5.5.254 125257 username barzegar 125257 mac 125257 bytes_out 6126 125257 bytes_in 8928 125257 station_ip 5.119.46.24 125257 port 106 125257 unique_id port 125257 remote_ip 10.8.1.174 125258 username kordestani 125258 mac 125258 bytes_out 0 125258 bytes_in 0 125258 station_ip 151.235.113.96 125233 unique_id port 125233 remote_ip 10.8.0.86 125234 username barzegar 125234 mac 125234 bytes_out 0 125234 bytes_in 0 125234 station_ip 5.119.46.24 125234 port 187 125234 unique_id port 125234 remote_ip 10.8.0.234 125235 username barzegar 125235 mac 125235 bytes_out 2530 125235 bytes_in 4929 125235 station_ip 5.119.46.24 125235 port 106 125235 unique_id port 125235 remote_ip 10.8.1.174 125238 username mohammadjavad 125238 kill_reason Another user logged on this global unique id 125238 mac 125238 bytes_out 0 125238 bytes_in 0 125238 station_ip 83.122.181.121 125238 port 199 125238 unique_id port 125238 remote_ip 10.8.0.142 125244 username mirzaei 125244 mac 125244 bytes_out 8634 125244 bytes_in 10095 125244 station_ip 5.120.181.96 125244 port 106 125244 unique_id port 125244 remote_ip 10.8.1.30 125249 username aminvpn 125249 mac 125249 bytes_out 0 125249 bytes_in 0 125249 station_ip 37.129.35.196 125249 port 169 125249 unique_id port 125251 username mirzaei 125251 mac 125251 bytes_out 0 125251 bytes_in 0 125251 station_ip 5.119.209.174 125251 port 106 125251 unique_id port 125251 remote_ip 10.8.1.30 125252 username khalili 125252 mac 125252 bytes_out 2336926 125252 bytes_in 30045878 125252 station_ip 5.119.180.144 125252 port 196 125252 unique_id port 125252 remote_ip 10.8.0.86 125253 username barzegar 125253 mac 125253 bytes_out 0 125253 bytes_in 0 125253 station_ip 5.119.46.24 125253 port 187 125253 unique_id port 125253 remote_ip 10.8.0.234 125254 username rajaei 125254 mac 125254 bytes_out 22234496 125254 bytes_in 29416047 125254 station_ip 37.156.155.158 125254 port 201 125254 unique_id port 125254 remote_ip 10.8.0.34 125255 username barzegar 125255 mac 125255 bytes_out 3131 125255 bytes_in 5324 125255 station_ip 5.119.46.24 125255 port 187 125255 unique_id port 125255 remote_ip 10.8.0.234 125256 username arash 125256 kill_reason Another user logged on this global unique id 125256 mac 125256 bytes_out 0 125256 bytes_in 0 125256 station_ip 37.27.31.235 125256 port 188 125256 unique_id port 125256 remote_ip 10.8.0.114 125267 username farhad1 125267 kill_reason Relative expiration date has reached 125267 mac 125267 bytes_out 0 125267 bytes_in 0 125267 station_ip 5.120.142.187 125267 port 169 125267 unique_id port 125270 username farhad1 125270 kill_reason Relative expiration date has reached 125270 mac 125270 bytes_out 0 125270 bytes_in 0 125270 station_ip 5.120.142.187 125270 port 187 125270 unique_id port 125275 username barzegar 125275 mac 125275 bytes_out 0 125275 bytes_in 0 125275 station_ip 5.119.46.24 125275 port 106 125275 unique_id port 125275 remote_ip 10.8.1.174 125276 username barzegar 125276 mac 125276 bytes_out 0 125276 bytes_in 0 125276 station_ip 5.119.46.24 125276 port 106 125276 unique_id port 125276 remote_ip 10.8.1.174 125278 username hoorieh 125278 kill_reason Another user logged on this global unique id 125278 mac 125278 bytes_out 0 125278 bytes_in 0 125278 station_ip 5.120.82.142 125278 port 187 125278 unique_id port 125278 remote_ip 10.8.0.38 125280 username barzegar 125280 mac 125280 bytes_out 0 125280 bytes_in 0 125280 station_ip 5.119.46.24 125280 port 188 125280 unique_id port 125280 remote_ip 10.8.0.234 125284 username barzegar 125284 mac 125284 bytes_out 0 125284 bytes_in 0 125284 station_ip 5.119.46.24 125284 port 135 125284 unique_id port 125284 remote_ip 10.8.0.234 125287 username barzegar 125287 mac 125287 bytes_out 0 125287 bytes_in 0 125245 station_ip 5.120.181.96 125245 port 106 125245 unique_id port 125245 remote_ip 10.8.1.30 125247 username barzegar 125247 mac 125247 bytes_out 0 125247 bytes_in 0 125247 station_ip 5.119.46.24 125247 port 187 125247 unique_id port 125247 remote_ip 10.8.0.234 125250 username alirezazadeh 125250 unique_id port 125250 terminate_cause Lost-Carrier 125250 bytes_out 299579 125250 bytes_in 1410057 125250 station_ip 5.119.45.125 125250 port 15729930 125250 nas_port_type Virtual 125250 remote_ip 5.5.5.223 125259 username hamidsalari1 125259 kill_reason Another user logged on this global unique id 125259 mac 125259 bytes_out 0 125259 bytes_in 0 125259 station_ip 83.123.113.243 125259 port 197 125259 unique_id port 125259 remote_ip 10.8.0.226 125260 username barzegar 125260 mac 125260 bytes_out 0 125260 bytes_in 0 125260 station_ip 5.119.46.24 125260 port 106 125260 unique_id port 125260 remote_ip 10.8.1.174 125264 username malekpoir 125264 mac 125264 bytes_out 0 125264 bytes_in 0 125264 station_ip 5.119.182.142 125264 port 135 125264 unique_id port 125266 username khalili 125266 mac 125266 bytes_out 2179301 125266 bytes_in 13474269 125266 station_ip 5.119.180.144 125266 port 169 125266 unique_id port 125266 remote_ip 10.8.0.86 125269 username farhad1 125269 kill_reason Relative expiration date has reached 125269 mac 125269 bytes_out 0 125269 bytes_in 0 125269 station_ip 5.120.142.187 125269 port 187 125269 unique_id port 125271 username farhad1 125271 kill_reason Relative expiration date has reached 125271 mac 125271 bytes_out 0 125271 bytes_in 0 125271 station_ip 5.120.142.187 125271 port 187 125271 unique_id port 125272 username hamidsalari1 125272 mac 125272 bytes_out 187958 125272 bytes_in 811538 125272 station_ip 83.123.113.243 125272 port 196 125272 unique_id port 125272 remote_ip 10.8.0.226 125277 username barzegar 125277 kill_reason Maximum check online fails reached 125277 mac 125277 bytes_out 0 125277 bytes_in 0 125277 station_ip 5.119.46.24 125277 port 106 125277 unique_id port 125279 username mehdizare 125279 mac 125279 bytes_out 0 125279 bytes_in 0 125279 station_ip 5.119.165.187 125279 port 105 125279 unique_id port 125279 remote_ip 10.8.1.42 125281 username mirzaei 125281 mac 125281 bytes_out 85749 125281 bytes_in 145035 125281 station_ip 5.119.138.229 125281 port 135 125281 unique_id port 125281 remote_ip 10.8.0.66 125282 username khalili 125282 mac 125282 bytes_out 1105525 125282 bytes_in 9814535 125282 station_ip 5.119.180.144 125282 port 196 125282 unique_id port 125282 remote_ip 10.8.0.86 125286 username hoorieh 125286 mac 125286 bytes_out 0 125286 bytes_in 0 125286 station_ip 5.120.82.142 125286 port 187 125286 unique_id port 125289 username ahmadi 125289 kill_reason Relative expiration date has reached 125289 unique_id port 125289 bytes_out 0 125289 bytes_in 0 125289 station_ip 113.203.70.157 125289 port 15729937 125289 nas_port_type Virtual 125290 username barzegar 125290 mac 125290 bytes_out 0 125290 bytes_in 0 125290 station_ip 5.119.46.24 125290 port 135 125290 unique_id port 125290 remote_ip 10.8.0.234 125291 username hoorieh 125291 mac 125291 bytes_out 0 125291 bytes_in 0 125291 station_ip 5.120.82.142 125291 port 110 125291 unique_id port 125291 remote_ip 10.8.1.154 125295 username barzegar 125295 mac 125295 bytes_out 4155 125295 bytes_in 6812 125295 station_ip 5.119.46.24 125295 port 110 125295 unique_id port 125295 remote_ip 10.8.1.174 125296 username hamid.e 125296 unique_id port 125258 port 108 125258 unique_id port 125258 remote_ip 10.8.1.98 125261 username hamidsalari1 125261 mac 125261 bytes_out 0 125261 bytes_in 0 125261 station_ip 83.123.113.243 125261 port 197 125261 unique_id port 125262 username barzegar 125262 mac 125262 bytes_out 0 125262 bytes_in 0 125262 station_ip 5.119.46.24 125262 port 106 125262 unique_id port 125262 remote_ip 10.8.1.174 125263 username barzegar 125263 mac 125263 bytes_out 0 125263 bytes_in 0 125263 station_ip 5.119.46.24 125263 port 106 125263 unique_id port 125263 remote_ip 10.8.1.174 125265 username mirzaei 125265 mac 125265 bytes_out 91690 125265 bytes_in 231695 125265 station_ip 5.119.138.229 125265 port 187 125265 unique_id port 125265 remote_ip 10.8.0.66 125268 username barzegar 125268 mac 125268 bytes_out 0 125268 bytes_in 0 125268 station_ip 5.119.46.24 125268 port 108 125268 unique_id port 125268 remote_ip 10.8.1.174 125273 username khalili 125273 mac 125273 bytes_out 0 125273 bytes_in 0 125273 station_ip 5.119.180.144 125273 port 106 125273 unique_id port 125273 remote_ip 10.8.1.18 125274 username arash 125274 mac 125274 bytes_out 0 125274 bytes_in 0 125274 station_ip 37.27.31.235 125274 port 188 125274 unique_id port 125283 username barzegar 125283 mac 125283 bytes_out 0 125283 bytes_in 0 125283 station_ip 5.119.46.24 125283 port 135 125283 unique_id port 125283 remote_ip 10.8.0.234 125285 username hoorieh 125285 kill_reason Another user logged on this global unique id 125285 mac 125285 bytes_out 0 125285 bytes_in 0 125285 station_ip 5.120.82.142 125285 port 187 125285 unique_id port 125293 username hamidsalari1 125293 kill_reason Another user logged on this global unique id 125293 mac 125293 bytes_out 0 125293 bytes_in 0 125293 station_ip 83.123.113.243 125293 port 109 125293 unique_id port 125293 remote_ip 10.8.1.170 125298 username morteza 125298 mac 125298 bytes_out 0 125298 bytes_in 0 125298 station_ip 113.203.66.7 125298 port 135 125298 unique_id port 125298 remote_ip 10.8.0.46 125300 username hamidsalari1 125300 kill_reason Another user logged on this global unique id 125300 mac 125300 bytes_out 0 125300 bytes_in 0 125300 station_ip 83.123.113.243 125300 port 109 125300 unique_id port 125304 username barzegar 125304 mac 125304 bytes_out 12964 125304 bytes_in 25000 125304 station_ip 5.119.46.24 125304 port 187 125304 unique_id port 125304 remote_ip 10.8.0.234 125306 username zare 125306 mac 125306 bytes_out 0 125306 bytes_in 0 125306 station_ip 37.27.1.196 125306 port 110 125306 unique_id port 125306 remote_ip 10.8.1.58 125308 username barzegar 125308 mac 125308 bytes_out 0 125308 bytes_in 0 125308 station_ip 5.119.46.24 125308 port 187 125308 unique_id port 125308 remote_ip 10.8.0.234 125313 username zare 125313 mac 125313 bytes_out 0 125313 bytes_in 0 125313 station_ip 37.27.1.196 125313 port 187 125313 unique_id port 125313 remote_ip 10.8.0.18 125314 username zare 125314 mac 125314 bytes_out 0 125314 bytes_in 0 125314 station_ip 37.27.1.196 125314 port 187 125314 unique_id port 125314 remote_ip 10.8.0.18 125316 username zare 125316 mac 125316 bytes_out 0 125316 bytes_in 0 125316 station_ip 37.27.1.196 125316 port 111 125316 unique_id port 125316 remote_ip 10.8.1.58 125317 username barzegar 125317 mac 125317 bytes_out 0 125317 bytes_in 0 125317 station_ip 5.119.46.24 125317 port 110 125317 unique_id port 125317 remote_ip 10.8.1.174 125323 username hamidsalari1 125287 station_ip 5.119.46.24 125287 port 135 125287 unique_id port 125287 remote_ip 10.8.0.234 125288 username barzegar 125288 mac 125288 bytes_out 0 125288 bytes_in 0 125288 station_ip 5.119.46.24 125288 port 135 125288 unique_id port 125288 remote_ip 10.8.0.234 125292 username barzegar 125292 mac 125292 bytes_out 0 125292 bytes_in 0 125292 station_ip 5.119.46.24 125292 port 110 125292 unique_id port 125292 remote_ip 10.8.1.174 125294 username sabaghnezhad 125294 mac 125294 bytes_out 0 125294 bytes_in 0 125294 station_ip 83.122.180.237 125294 port 169 125294 unique_id port 125294 remote_ip 10.8.0.186 125299 username barzegar 125299 mac 125299 bytes_out 0 125299 bytes_in 0 125299 station_ip 5.119.46.24 125299 port 110 125299 unique_id port 125299 remote_ip 10.8.1.174 125302 username moradi 125302 mac 125302 bytes_out 407187 125302 bytes_in 4543565 125302 station_ip 37.129.64.35 125302 port 187 125302 unique_id port 125302 remote_ip 10.8.0.250 125305 username zare 125305 mac 125305 bytes_out 0 125305 bytes_in 0 125305 station_ip 37.27.1.196 125305 port 110 125305 unique_id port 125305 remote_ip 10.8.1.58 125309 username zare 125309 mac 125309 bytes_out 0 125309 bytes_in 0 125309 station_ip 37.27.1.196 125309 port 196 125309 unique_id port 125309 remote_ip 10.8.0.18 125310 username hamidsalari1 125310 kill_reason Another user logged on this global unique id 125310 mac 125310 bytes_out 0 125310 bytes_in 0 125310 station_ip 83.123.113.243 125310 port 109 125310 unique_id port 125311 username barzegar 125311 mac 125311 bytes_out 0 125311 bytes_in 0 125311 station_ip 5.119.46.24 125311 port 110 125311 unique_id port 125311 remote_ip 10.8.1.174 125315 username moradi 125315 kill_reason Another user logged on this global unique id 125315 mac 125315 bytes_out 0 125315 bytes_in 0 125315 station_ip 37.129.64.35 125315 port 169 125315 unique_id port 125315 remote_ip 10.8.0.250 125318 username zare 125318 kill_reason Maximum check online fails reached 125318 mac 125318 bytes_out 0 125318 bytes_in 0 125318 station_ip 37.27.1.196 125318 port 111 125318 unique_id port 125319 username hamidsalari1 125319 kill_reason Another user logged on this global unique id 125319 mac 125319 bytes_out 0 125319 bytes_in 0 125319 station_ip 83.123.113.243 125319 port 109 125319 unique_id port 125321 username mansur 125321 kill_reason Another user logged on this global unique id 125321 mac 125321 bytes_out 0 125321 bytes_in 0 125321 station_ip 5.120.102.70 125321 port 187 125321 unique_id port 125321 remote_ip 10.8.0.210 125325 username hamidsalari1 125325 kill_reason Another user logged on this global unique id 125325 mac 125325 bytes_out 0 125325 bytes_in 0 125325 station_ip 83.123.113.243 125325 port 109 125325 unique_id port 125331 username mohammadmahdi 125331 mac 125331 bytes_out 0 125331 bytes_in 0 125331 station_ip 5.119.234.199 125331 port 203 125331 unique_id port 125331 remote_ip 10.8.0.54 125336 username forozande 125336 mac 125336 bytes_out 0 125336 bytes_in 0 125336 station_ip 83.123.156.250 125336 port 205 125336 unique_id port 125336 remote_ip 10.8.0.74 125337 username mansur 125337 mac 125337 bytes_out 0 125337 bytes_in 0 125337 station_ip 5.120.102.70 125337 port 187 125337 unique_id port 125342 username mansur 125342 mac 125342 bytes_out 0 125342 bytes_in 0 125342 station_ip 5.120.102.70 125342 port 196 125342 unique_id port 125342 remote_ip 10.8.0.210 125345 username mansur 125345 mac 125345 bytes_out 0 125296 terminate_cause User-Request 125296 bytes_out 5314559 125296 bytes_in 73138526 125296 station_ip 188.245.91.44 125296 port 15729935 125296 nas_port_type Virtual 125296 remote_ip 5.5.5.222 125297 username sabaghnezhad 125297 mac 125297 bytes_out 6311 125297 bytes_in 10034 125297 station_ip 83.122.180.237 125297 port 110 125297 unique_id port 125297 remote_ip 10.8.1.130 125301 username barzegar 125301 mac 125301 bytes_out 0 125301 bytes_in 0 125301 station_ip 5.119.46.24 125301 port 110 125301 unique_id port 125301 remote_ip 10.8.1.174 125303 username mehdizare 125303 mac 125303 bytes_out 0 125303 bytes_in 0 125303 station_ip 5.119.165.187 125303 port 105 125303 unique_id port 125303 remote_ip 10.8.1.42 125307 username moradi 125307 mac 125307 bytes_out 0 125307 bytes_in 0 125307 station_ip 46.225.232.147 125307 port 169 125307 unique_id port 125307 remote_ip 10.8.0.250 125312 username morteza 125312 mac 125312 bytes_out 2303678 125312 bytes_in 32198143 125312 station_ip 113.203.118.67 125312 port 188 125312 unique_id port 125312 remote_ip 10.8.0.46 125320 username zare 125320 mac 125320 bytes_out 0 125320 bytes_in 0 125320 station_ip 37.27.1.196 125320 port 112 125320 unique_id port 125320 remote_ip 10.8.1.58 125322 username khalili 125322 mac 125322 bytes_out 138480 125322 bytes_in 1585284 125322 station_ip 5.119.180.144 125322 port 196 125322 unique_id port 125322 remote_ip 10.8.0.86 125324 username moradi 125324 mac 125324 bytes_out 0 125324 bytes_in 0 125324 station_ip 37.129.64.35 125324 port 169 125324 unique_id port 125327 username moradi 125327 mac 125327 bytes_out 605004 125327 bytes_in 7596239 125327 station_ip 37.129.64.35 125327 port 205 125327 unique_id port 125327 remote_ip 10.8.0.250 125329 username houshang 125329 mac 125329 bytes_out 1329868 125329 bytes_in 19107649 125329 station_ip 5.120.136.1 125329 port 169 125329 unique_id port 125329 remote_ip 10.8.0.22 125333 username kordestani 125333 kill_reason Another user logged on this global unique id 125333 mac 125333 bytes_out 0 125333 bytes_in 0 125333 station_ip 83.123.90.194 125333 port 110 125333 unique_id port 125333 remote_ip 10.8.1.98 125334 username kordestani 125334 mac 125334 bytes_out 0 125334 bytes_in 0 125334 station_ip 83.123.90.194 125334 port 110 125334 unique_id port 125338 username barzegar 125338 mac 125338 bytes_out 0 125338 bytes_in 0 125338 station_ip 5.119.46.24 125338 port 169 125338 unique_id port 125338 remote_ip 10.8.0.234 125340 username jafari 125340 kill_reason Another user logged on this global unique id 125340 mac 125340 bytes_out 0 125340 bytes_in 0 125340 station_ip 89.34.57.249 125340 port 201 125340 unique_id port 125341 username moradi 125341 mac 125341 bytes_out 0 125341 bytes_in 0 125341 station_ip 46.225.232.147 125341 port 196 125341 unique_id port 125341 remote_ip 10.8.0.250 125344 username jafari 125344 kill_reason Another user logged on this global unique id 125344 mac 125344 bytes_out 0 125344 bytes_in 0 125344 station_ip 89.34.57.249 125344 port 201 125344 unique_id port 125347 username amin.saeedi 125347 unique_id port 125347 terminate_cause User-Request 125347 bytes_out 20661470 125347 bytes_in 579274354 125347 station_ip 151.238.255.169 125347 port 15729936 125347 nas_port_type Virtual 125347 remote_ip 5.5.5.233 125349 username mansur 125349 mac 125349 bytes_out 0 125349 bytes_in 0 125349 station_ip 5.120.102.70 125349 port 112 125349 unique_id port 125349 remote_ip 10.8.1.194 125352 username khalili 125323 kill_reason Another user logged on this global unique id 125323 mac 125323 bytes_out 0 125323 bytes_in 0 125323 station_ip 83.123.113.243 125323 port 109 125323 unique_id port 125326 username forozande 125326 mac 125326 bytes_out 0 125326 bytes_in 0 125326 station_ip 37.129.47.71 125326 port 196 125326 unique_id port 125326 remote_ip 10.8.0.74 125328 username sabaghnezhad 125328 mac 125328 bytes_out 0 125328 bytes_in 0 125328 station_ip 83.122.180.237 125328 port 135 125328 unique_id port 125328 remote_ip 10.8.0.186 125330 username barzegar 125330 mac 125330 bytes_out 379050 125330 bytes_in 398734 125330 station_ip 5.119.46.24 125330 port 197 125330 unique_id port 125330 remote_ip 10.8.0.234 125332 username jafari 125332 kill_reason Another user logged on this global unique id 125332 mac 125332 bytes_out 0 125332 bytes_in 0 125332 station_ip 89.34.57.249 125332 port 201 125332 unique_id port 125332 remote_ip 10.8.0.242 125335 username mansur 125335 kill_reason Another user logged on this global unique id 125335 mac 125335 bytes_out 0 125335 bytes_in 0 125335 station_ip 5.120.102.70 125335 port 187 125335 unique_id port 125339 username mansur 125339 mac 125339 bytes_out 0 125339 bytes_in 0 125339 station_ip 5.120.102.70 125339 port 110 125339 unique_id port 125339 remote_ip 10.8.1.194 125343 username mansur 125343 mac 125343 bytes_out 0 125343 bytes_in 0 125343 station_ip 5.120.102.70 125343 port 196 125343 unique_id port 125343 remote_ip 10.8.0.210 125346 username mansur 125346 mac 125346 bytes_out 0 125346 bytes_in 0 125346 station_ip 5.120.102.70 125346 port 196 125346 unique_id port 125346 remote_ip 10.8.0.210 125350 username moradi 125350 mac 125350 bytes_out 25091 125350 bytes_in 43113 125350 station_ip 37.129.102.155 125350 port 187 125350 unique_id port 125350 remote_ip 10.8.0.250 125353 username zare 125353 mac 125353 bytes_out 0 125353 bytes_in 0 125353 station_ip 37.27.1.196 125353 port 112 125353 unique_id port 125353 remote_ip 10.8.1.58 125358 username barzegar 125358 kill_reason Maximum check online fails reached 125358 mac 125358 bytes_out 0 125358 bytes_in 0 125358 station_ip 5.119.46.24 125358 port 187 125358 unique_id port 125365 username mansur 125365 mac 125365 bytes_out 2515804 125365 bytes_in 32881017 125365 station_ip 5.120.102.70 125365 port 196 125365 unique_id port 125365 remote_ip 10.8.0.210 125370 username aminvpn 125370 unique_id port 125370 terminate_cause Lost-Carrier 125370 bytes_out 1470640 125370 bytes_in 21631989 125370 station_ip 5.119.116.171 125370 port 15729938 125370 nas_port_type Virtual 125370 remote_ip 5.5.5.237 125376 username jafari 125376 kill_reason Another user logged on this global unique id 125376 mac 125376 bytes_out 0 125376 bytes_in 0 125376 station_ip 89.34.57.249 125376 port 201 125376 unique_id port 125378 username khalili 125378 mac 125378 bytes_out 80862 125378 bytes_in 109697 125378 station_ip 5.119.39.11 125378 port 169 125378 unique_id port 125378 remote_ip 10.8.0.86 125379 username barzegar 125379 mac 125379 bytes_out 0 125379 bytes_in 0 125379 station_ip 5.119.248.191 125379 port 112 125379 unique_id port 125379 remote_ip 10.8.1.174 125381 username arabpour 125381 unique_id port 125381 terminate_cause User-Request 125381 bytes_out 443 125381 bytes_in 202 125381 station_ip 113.203.6.137 125381 port 15729946 125381 nas_port_type Virtual 125381 remote_ip 5.5.5.255 125384 username arabpour 125384 unique_id port 125384 terminate_cause User-Request 125384 bytes_out 99640 125384 bytes_in 742498 125345 bytes_in 0 125345 station_ip 5.120.102.70 125345 port 112 125345 unique_id port 125345 remote_ip 10.8.1.194 125348 username amirabbas 125348 unique_id port 125348 terminate_cause User-Request 125348 bytes_out 875744 125348 bytes_in 6753220 125348 station_ip 37.27.10.205 125348 port 15729939 125348 nas_port_type Virtual 125348 remote_ip 5.5.5.255 125351 username forozande 125351 mac 125351 bytes_out 267917 125351 bytes_in 294171 125351 station_ip 83.123.69.164 125351 port 169 125351 unique_id port 125351 remote_ip 10.8.0.74 125355 username zare 125355 mac 125355 bytes_out 0 125355 bytes_in 0 125355 station_ip 37.27.1.196 125355 port 110 125355 unique_id port 125355 remote_ip 10.8.1.58 125356 username jafari 125356 kill_reason Another user logged on this global unique id 125356 mac 125356 bytes_out 0 125356 bytes_in 0 125356 station_ip 89.34.57.249 125356 port 201 125356 unique_id port 125360 username zare 125360 mac 125360 bytes_out 0 125360 bytes_in 0 125360 station_ip 37.27.1.196 125360 port 110 125360 unique_id port 125360 remote_ip 10.8.1.58 125362 username mahdixz 125362 unique_id port 125362 terminate_cause User-Request 125362 bytes_out 3695542 125362 bytes_in 21458218 125362 station_ip 151.235.118.214 125362 port 15729940 125362 nas_port_type Virtual 125362 remote_ip 5.5.5.253 125363 username zare 125363 mac 125363 bytes_out 0 125363 bytes_in 0 125363 station_ip 37.27.1.196 125363 port 110 125363 unique_id port 125363 remote_ip 10.8.1.58 125366 username barzegar 125366 mac 125366 bytes_out 3158 125366 bytes_in 5618 125366 station_ip 5.119.46.24 125366 port 169 125366 unique_id port 125366 remote_ip 10.8.0.234 125367 username khalili 125367 mac 125367 bytes_out 52013 125367 bytes_in 59713 125367 station_ip 5.119.32.137 125367 port 197 125367 unique_id port 125367 remote_ip 10.8.0.86 125368 username zare 125368 mac 125368 bytes_out 16539 125368 bytes_in 57946 125368 station_ip 37.27.1.196 125368 port 199 125368 unique_id port 125368 remote_ip 10.8.0.18 125369 username mansur 125369 mac 125369 bytes_out 0 125369 bytes_in 0 125369 station_ip 5.120.102.70 125369 port 112 125369 unique_id port 125369 remote_ip 10.8.1.194 125371 username mahdixz 125371 unique_id port 125371 terminate_cause Lost-Carrier 125371 bytes_out 185016 125371 bytes_in 367799 125371 station_ip 5.119.82.61 125371 port 15729941 125371 nas_port_type Virtual 125371 remote_ip 5.5.5.229 125373 username forozande 125373 mac 125373 bytes_out 0 125373 bytes_in 0 125373 station_ip 83.123.70.131 125373 port 197 125373 unique_id port 125373 remote_ip 10.8.0.74 125380 username arabpour 125380 unique_id port 125380 terminate_cause User-Request 125380 bytes_out 0 125380 bytes_in 0 125380 station_ip 113.203.6.137 125380 port 15729945 125380 nas_port_type Virtual 125380 remote_ip 5.5.5.250 125382 username rajaei 125382 kill_reason Another user logged on this global unique id 125382 mac 125382 bytes_out 0 125382 bytes_in 0 125382 station_ip 37.156.155.158 125382 port 169 125382 unique_id port 125382 remote_ip 10.8.0.34 125397 username khalili 125397 mac 125397 bytes_out 29163 125397 bytes_in 40877 125397 station_ip 5.120.156.104 125397 port 205 125397 unique_id port 125397 remote_ip 10.8.0.86 125400 username afarin1 125400 kill_reason Another user logged on this global unique id 125400 mac 125400 bytes_out 0 125400 bytes_in 0 125400 station_ip 37.129.169.71 125400 port 203 125400 unique_id port 125400 remote_ip 10.8.0.118 125403 username rajaei 125403 kill_reason Another user logged on this global unique id 125403 mac 125352 mac 125352 bytes_out 0 125352 bytes_in 0 125352 station_ip 5.119.32.137 125352 port 199 125352 unique_id port 125352 remote_ip 10.8.0.86 125354 username barzegar 125354 mac 125354 bytes_out 0 125354 bytes_in 0 125354 station_ip 5.119.46.24 125354 port 110 125354 unique_id port 125354 remote_ip 10.8.1.174 125357 username zare 125357 mac 125357 bytes_out 0 125357 bytes_in 0 125357 station_ip 37.27.1.196 125357 port 110 125357 unique_id port 125357 remote_ip 10.8.1.58 125359 username moradi 125359 mac 125359 bytes_out 54660 125359 bytes_in 81169 125359 station_ip 37.129.102.155 125359 port 197 125359 unique_id port 125359 remote_ip 10.8.0.250 125361 username khalili 125361 mac 125361 bytes_out 270720 125361 bytes_in 849740 125361 station_ip 5.119.32.137 125361 port 169 125361 unique_id port 125361 remote_ip 10.8.0.86 125364 username zare 125364 kill_reason Maximum check online fails reached 125364 mac 125364 bytes_out 0 125364 bytes_in 0 125364 station_ip 37.27.1.196 125364 port 110 125364 unique_id port 125372 username zare 125372 mac 125372 bytes_out 0 125372 bytes_in 0 125372 station_ip 37.27.1.196 125372 port 196 125372 unique_id port 125372 remote_ip 10.8.0.18 125374 username hamidsalari1 125374 mac 125374 bytes_out 0 125374 bytes_in 0 125374 station_ip 83.123.113.243 125374 port 109 125374 unique_id port 125375 username rezasekonji 125375 mac 125375 bytes_out 193260 125375 bytes_in 1865607 125375 station_ip 113.203.105.235 125375 port 197 125375 unique_id port 125375 remote_ip 10.8.0.130 125377 username zare 125377 mac 125377 bytes_out 0 125377 bytes_in 0 125377 station_ip 37.27.1.196 125377 port 203 125377 unique_id port 125377 remote_ip 10.8.0.18 125383 username jafari 125383 kill_reason Another user logged on this global unique id 125383 mac 125383 bytes_out 0 125383 bytes_in 0 125383 station_ip 89.34.57.249 125383 port 201 125383 unique_id port 125385 username houshang 125385 kill_reason Another user logged on this global unique id 125385 mac 125385 bytes_out 0 125385 bytes_in 0 125385 station_ip 5.120.136.1 125385 port 199 125385 unique_id port 125385 remote_ip 10.8.0.22 125389 username mahdiyehalizadeh 125389 mac 125389 bytes_out 9381 125389 bytes_in 11244 125389 station_ip 113.203.101.138 125389 port 205 125389 unique_id port 125389 remote_ip 10.8.0.82 125391 username rajaei 125391 kill_reason Another user logged on this global unique id 125391 mac 125391 bytes_out 0 125391 bytes_in 0 125391 station_ip 37.156.155.158 125391 port 169 125391 unique_id port 125393 username aminvpn 125393 unique_id port 125393 terminate_cause User-Request 125393 bytes_out 7113551 125393 bytes_in 7731337 125393 station_ip 5.119.81.101 125393 port 15729944 125393 nas_port_type Virtual 125393 remote_ip 5.5.5.251 125395 username rajaei 125395 kill_reason Another user logged on this global unique id 125395 mac 125395 bytes_out 0 125395 bytes_in 0 125395 station_ip 37.156.155.158 125395 port 169 125395 unique_id port 125396 username mostafa_es78 125396 unique_id port 125396 terminate_cause User-Request 125396 bytes_out 382310 125396 bytes_in 1417746 125396 station_ip 5.126.69.227 125396 port 15729948 125396 nas_port_type Virtual 125396 remote_ip 5.5.5.249 125399 username rajaei 125399 kill_reason Another user logged on this global unique id 125399 mac 125399 bytes_out 0 125399 bytes_in 0 125399 station_ip 37.156.155.158 125399 port 169 125399 unique_id port 125402 username mehdizare 125402 mac 125402 bytes_out 793883 125402 bytes_in 3273532 125402 station_ip 5.119.165.187 125384 station_ip 113.203.6.137 125384 port 15729947 125384 nas_port_type Virtual 125384 remote_ip 5.5.5.255 125386 username rajaei 125386 kill_reason Another user logged on this global unique id 125386 mac 125386 bytes_out 0 125386 bytes_in 0 125386 station_ip 37.156.155.158 125386 port 169 125386 unique_id port 125387 username zare 125387 mac 125387 bytes_out 0 125387 bytes_in 0 125387 station_ip 37.27.1.196 125387 port 203 125387 unique_id port 125387 remote_ip 10.8.0.18 125388 username barzegar 125388 mac 125388 bytes_out 0 125388 bytes_in 0 125388 station_ip 5.119.248.191 125388 port 207 125388 unique_id port 125388 remote_ip 10.8.0.234 125390 username morteza 125390 kill_reason Another user logged on this global unique id 125390 mac 125390 bytes_out 0 125390 bytes_in 0 125390 station_ip 113.203.26.187 125390 port 196 125390 unique_id port 125390 remote_ip 10.8.0.46 125392 username khalili 125392 mac 125392 bytes_out 157562 125392 bytes_in 687470 125392 station_ip 5.119.39.11 125392 port 197 125392 unique_id port 125392 remote_ip 10.8.0.86 125394 username jafari 125394 kill_reason Another user logged on this global unique id 125394 mac 125394 bytes_out 0 125394 bytes_in 0 125394 station_ip 89.34.57.249 125394 port 201 125394 unique_id port 125398 username mahdixz 125398 unique_id port 125398 terminate_cause User-Request 125398 bytes_out 2943358 125398 bytes_in 10401084 125398 station_ip 5.120.142.47 125398 port 15729943 125398 nas_port_type Virtual 125398 remote_ip 5.5.5.253 125401 username zare 125401 mac 125401 bytes_out 0 125401 bytes_in 0 125401 station_ip 37.27.1.196 125401 port 208 125401 unique_id port 125401 remote_ip 10.8.0.18 125404 username mansur 125404 mac 125404 bytes_out 477195 125404 bytes_in 2997678 125404 station_ip 5.120.102.70 125404 port 113 125404 unique_id port 125404 remote_ip 10.8.1.194 125408 username rostami 125408 mac 125408 bytes_out 483794 125408 bytes_in 1176466 125408 station_ip 5.119.142.7 125408 port 208 125408 unique_id port 125408 remote_ip 10.8.0.194 125411 username mansur 125411 mac 125411 bytes_out 0 125411 bytes_in 0 125411 station_ip 5.120.102.70 125411 port 112 125411 unique_id port 125411 remote_ip 10.8.1.194 125414 username rajaei 125414 kill_reason Another user logged on this global unique id 125414 mac 125414 bytes_out 0 125414 bytes_in 0 125414 station_ip 37.156.155.158 125414 port 169 125414 unique_id port 125415 username zare 125415 mac 125415 bytes_out 0 125415 bytes_in 0 125415 station_ip 37.27.1.196 125415 port 196 125415 unique_id port 125415 remote_ip 10.8.0.18 125422 username zare 125422 mac 125422 bytes_out 0 125422 bytes_in 0 125422 station_ip 37.27.1.196 125422 port 196 125422 unique_id port 125422 remote_ip 10.8.0.18 125423 username alihosseini1 125423 kill_reason Another user logged on this global unique id 125423 mac 125423 bytes_out 0 125423 bytes_in 0 125423 station_ip 5.120.104.53 125423 port 205 125423 unique_id port 125428 username alihosseini1 125428 kill_reason Another user logged on this global unique id 125428 mac 125428 bytes_out 0 125428 bytes_in 0 125428 station_ip 5.120.104.53 125428 port 205 125428 unique_id port 125431 username alirr 125431 kill_reason Relative expiration date has reached 125431 unique_id port 125431 bytes_out 0 125431 bytes_in 0 125431 station_ip 86.57.4.182 125431 port 15729954 125431 nas_port_type Virtual 125436 username zare 125436 mac 125436 bytes_out 0 125436 bytes_in 0 125436 station_ip 37.27.1.196 125436 port 205 125436 unique_id port 125436 remote_ip 10.8.0.18 125402 port 105 125402 unique_id port 125402 remote_ip 10.8.1.42 125407 username mansur 125407 kill_reason Maximum check online fails reached 125407 mac 125407 bytes_out 0 125407 bytes_in 0 125407 station_ip 5.120.102.70 125407 port 109 125407 unique_id port 125409 username rajaei 125409 kill_reason Another user logged on this global unique id 125409 mac 125409 bytes_out 0 125409 bytes_in 0 125409 station_ip 37.156.155.158 125409 port 169 125409 unique_id port 125416 username afarin1 125416 kill_reason Another user logged on this global unique id 125416 mac 125416 bytes_out 0 125416 bytes_in 0 125416 station_ip 37.129.169.71 125416 port 203 125416 unique_id port 125417 username jafari 125417 kill_reason Another user logged on this global unique id 125417 mac 125417 bytes_out 0 125417 bytes_in 0 125417 station_ip 89.34.57.249 125417 port 201 125417 unique_id port 125420 username rostami 125420 mac 125420 bytes_out 1072124 125420 bytes_in 9486868 125420 station_ip 5.119.142.7 125420 port 208 125420 unique_id port 125420 remote_ip 10.8.0.194 125421 username alihosseini1 125421 kill_reason Another user logged on this global unique id 125421 mac 125421 bytes_out 0 125421 bytes_in 0 125421 station_ip 5.120.104.53 125421 port 205 125421 unique_id port 125421 remote_ip 10.8.0.166 125424 username ahmadipour 125424 unique_id port 125424 terminate_cause Lost-Carrier 125424 bytes_out 442113 125424 bytes_in 8105703 125424 station_ip 83.123.155.127 125424 port 15729953 125424 nas_port_type Virtual 125424 remote_ip 5.5.5.227 125425 username zare 125425 mac 125425 bytes_out 0 125425 bytes_in 0 125425 station_ip 37.27.1.196 125425 port 199 125425 unique_id port 125425 remote_ip 10.8.0.18 125426 username zare 125426 mac 125426 bytes_out 0 125426 bytes_in 0 125426 station_ip 37.27.1.196 125426 port 199 125426 unique_id port 125426 remote_ip 10.8.0.18 125429 username barzegar 125429 kill_reason Another user logged on this global unique id 125429 mac 125429 bytes_out 0 125429 bytes_in 0 125429 station_ip 5.119.248.191 125429 port 197 125429 unique_id port 125429 remote_ip 10.8.0.234 125430 username kordestani 125430 mac 125430 bytes_out 0 125430 bytes_in 0 125430 station_ip 151.235.73.138 125430 port 113 125430 unique_id port 125430 remote_ip 10.8.1.98 125432 username alirr 125432 kill_reason Relative expiration date has reached 125432 unique_id port 125432 bytes_out 0 125432 bytes_in 0 125432 station_ip 86.57.4.182 125432 port 15729955 125432 nas_port_type Virtual 125434 username alihosseini1 125434 mac 125434 bytes_out 0 125434 bytes_in 0 125434 station_ip 5.120.104.53 125434 port 205 125434 unique_id port 125435 username alihosseini1 125435 mac 125435 bytes_out 2858 125435 bytes_in 6028 125435 station_ip 5.120.104.53 125435 port 208 125435 unique_id port 125435 remote_ip 10.8.0.166 125437 username zare 125437 mac 125437 bytes_out 0 125437 bytes_in 0 125437 station_ip 37.27.1.196 125437 port 205 125437 unique_id port 125437 remote_ip 10.8.0.18 125449 username amirabbas 125449 unique_id port 125449 terminate_cause User-Request 125449 bytes_out 27941462 125449 bytes_in 777589632 125449 station_ip 37.27.10.205 125449 port 15729942 125449 nas_port_type Virtual 125449 remote_ip 5.5.5.240 125454 username amin.saeedi 125454 unique_id port 125454 terminate_cause User-Request 125454 bytes_out 833947 125454 bytes_in 14199709 125454 station_ip 151.238.255.169 125454 port 15729950 125454 nas_port_type Virtual 125454 remote_ip 5.5.5.216 125457 username jafari 125457 kill_reason Another user logged on this global unique id 125457 mac 125457 bytes_out 0 125457 bytes_in 0 125403 bytes_out 0 125403 bytes_in 0 125403 station_ip 37.156.155.158 125403 port 169 125403 unique_id port 125405 username morteza 125405 mac 125405 bytes_out 0 125405 bytes_in 0 125405 station_ip 113.203.26.187 125405 port 196 125405 unique_id port 125406 username afarin1 125406 kill_reason Another user logged on this global unique id 125406 mac 125406 bytes_out 0 125406 bytes_in 0 125406 station_ip 37.129.169.71 125406 port 203 125406 unique_id port 125410 username jafari 125410 kill_reason Another user logged on this global unique id 125410 mac 125410 bytes_out 0 125410 bytes_in 0 125410 station_ip 89.34.57.249 125410 port 201 125410 unique_id port 125412 username rostami 125412 mac 125412 bytes_out 7231 125412 bytes_in 11350 125412 station_ip 5.119.142.7 125412 port 196 125412 unique_id port 125412 remote_ip 10.8.0.194 125413 username houshang 125413 mac 125413 bytes_out 0 125413 bytes_in 0 125413 station_ip 5.120.136.1 125413 port 199 125413 unique_id port 125418 username aminvpn 125418 unique_id port 125418 terminate_cause Lost-Carrier 125418 bytes_out 2316396 125418 bytes_in 3517550 125418 station_ip 5.119.81.101 125418 port 15729949 125418 nas_port_type Virtual 125418 remote_ip 5.5.5.255 125419 username arash 125419 mac 125419 bytes_out 127614 125419 bytes_in 1114558 125419 station_ip 37.27.31.235 125419 port 199 125419 unique_id port 125419 remote_ip 10.8.0.114 125427 username zare 125427 mac 125427 bytes_out 0 125427 bytes_in 0 125427 station_ip 37.27.1.196 125427 port 199 125427 unique_id port 125427 remote_ip 10.8.0.18 125433 username jafari 125433 kill_reason Another user logged on this global unique id 125433 mac 125433 bytes_out 0 125433 bytes_in 0 125433 station_ip 89.34.57.249 125433 port 201 125433 unique_id port 125438 username zare 125438 mac 125438 bytes_out 0 125438 bytes_in 0 125438 station_ip 37.27.1.196 125438 port 205 125438 unique_id port 125438 remote_ip 10.8.0.18 125439 username barzegar 125439 mac 125439 bytes_out 0 125439 bytes_in 0 125439 station_ip 5.119.248.191 125439 port 197 125439 unique_id port 125440 username barzegar 125440 mac 125440 bytes_out 0 125440 bytes_in 0 125440 station_ip 5.119.248.191 125440 port 197 125440 unique_id port 125440 remote_ip 10.8.0.234 125441 username sabaghnezhad 125441 mac 125441 bytes_out 662755 125441 bytes_in 1008697 125441 station_ip 83.122.180.237 125441 port 135 125441 unique_id port 125441 remote_ip 10.8.0.186 125442 username mohammadmahdi 125442 mac 125442 bytes_out 2176861 125442 bytes_in 21008910 125442 station_ip 5.119.44.45 125442 port 199 125442 unique_id port 125442 remote_ip 10.8.0.54 125443 username barzegar 125443 mac 125443 bytes_out 0 125443 bytes_in 0 125443 station_ip 5.119.248.191 125443 port 135 125443 unique_id port 125443 remote_ip 10.8.0.234 125447 username zare 125447 mac 125447 bytes_out 20790 125447 bytes_in 56998 125447 station_ip 37.27.1.196 125447 port 135 125447 unique_id port 125447 remote_ip 10.8.0.18 125451 username aminvpn 125451 mac 125451 bytes_out 846460 125451 bytes_in 6171487 125451 station_ip 5.119.200.236 125451 port 205 125451 unique_id port 125451 remote_ip 10.8.0.14 125453 username malekpoir 125453 kill_reason Another user logged on this global unique id 125453 mac 125453 bytes_out 0 125453 bytes_in 0 125453 station_ip 5.119.182.142 125453 port 108 125453 unique_id port 125453 remote_ip 10.8.1.54 125458 username sabaghnezhad 125458 mac 125458 bytes_out 0 125458 bytes_in 0 125444 username mansur 125444 kill_reason Another user logged on this global unique id 125444 mac 125444 bytes_out 0 125444 bytes_in 0 125444 station_ip 5.120.102.70 125444 port 112 125444 unique_id port 125444 remote_ip 10.8.1.194 125445 username jafari 125445 kill_reason Another user logged on this global unique id 125445 mac 125445 bytes_out 0 125445 bytes_in 0 125445 station_ip 89.34.57.249 125445 port 201 125445 unique_id port 125446 username mansur 125446 mac 125446 bytes_out 0 125446 bytes_in 0 125446 station_ip 5.120.102.70 125446 port 112 125446 unique_id port 125448 username barzegar 125448 mac 125448 bytes_out 0 125448 bytes_in 0 125448 station_ip 5.119.248.191 125448 port 114 125448 unique_id port 125448 remote_ip 10.8.1.174 125450 username barzegar 125450 mac 125450 bytes_out 0 125450 bytes_in 0 125450 station_ip 5.119.248.191 125450 port 114 125450 unique_id port 125450 remote_ip 10.8.1.174 125452 username aminvpn 125452 unique_id port 125452 terminate_cause Lost-Carrier 125452 bytes_out 233335 125452 bytes_in 1171729 125452 station_ip 5.119.81.101 125452 port 15729952 125452 nas_port_type Virtual 125452 remote_ip 5.5.5.225 125455 username malekpoir 125455 mac 125455 bytes_out 0 125455 bytes_in 0 125455 station_ip 5.119.182.142 125455 port 108 125455 unique_id port 125456 username barzegar 125456 kill_reason Maximum check online fails reached 125456 mac 125456 bytes_out 0 125456 bytes_in 0 125456 station_ip 5.119.248.191 125456 port 114 125456 unique_id port 125459 username zare 125459 mac 125459 bytes_out 28566 125459 bytes_in 89297 125459 station_ip 37.27.1.196 125459 port 135 125459 unique_id port 125459 remote_ip 10.8.0.18 125461 username barzegar 125461 mac 125461 bytes_out 0 125461 bytes_in 0 125461 station_ip 5.119.248.191 125461 port 199 125461 unique_id port 125461 remote_ip 10.8.0.234 125464 username mosi 125464 mac 125464 bytes_out 0 125464 bytes_in 0 125464 station_ip 78.39.127.210 125464 port 196 125464 unique_id port 125471 username sade 125471 unique_id port 125471 terminate_cause User-Request 125471 bytes_out 11986630 125471 bytes_in 283940717 125471 station_ip 86.57.4.182 125471 port 15729957 125471 nas_port_type Virtual 125471 remote_ip 5.5.5.255 125477 username musa 125477 kill_reason Relative expiration date has reached 125477 mac 125477 bytes_out 0 125477 bytes_in 0 125477 station_ip 83.122.167.119 125477 port 199 125477 unique_id port 125480 username sade 125480 unique_id port 125480 terminate_cause Lost-Carrier 125480 bytes_out 2852879 125480 bytes_in 71005874 125480 station_ip 86.57.4.182 125480 port 15729960 125480 nas_port_type Virtual 125480 remote_ip 5.5.5.195 125485 username jafari 125485 mac 125485 bytes_out 0 125485 bytes_in 0 125485 station_ip 89.47.145.136 125485 port 199 125485 unique_id port 125485 remote_ip 10.8.0.242 125488 username rezaei 125488 mac 125488 bytes_out 0 125488 bytes_in 0 125488 station_ip 5.119.148.149 125488 port 197 125488 unique_id port 125490 username mansur 125490 mac 125490 bytes_out 0 125490 bytes_in 0 125490 station_ip 5.120.102.70 125490 port 112 125490 unique_id port 125492 username zare 125492 kill_reason Another user logged on this global unique id 125492 mac 125492 bytes_out 0 125492 bytes_in 0 125492 station_ip 37.27.1.196 125492 port 135 125492 unique_id port 125492 remote_ip 10.8.0.18 125493 username barzegar 125493 mac 125493 bytes_out 0 125493 bytes_in 0 125493 station_ip 5.119.248.191 125493 port 205 125493 unique_id port 125457 station_ip 89.34.57.249 125457 port 201 125457 unique_id port 125460 username mosi 125460 kill_reason Another user logged on this global unique id 125460 mac 125460 bytes_out 0 125460 bytes_in 0 125460 station_ip 78.39.127.210 125460 port 196 125460 unique_id port 125460 remote_ip 10.8.0.138 125463 username sabaghnezhad 125463 mac 125463 bytes_out 2010387 125463 bytes_in 24654216 125463 station_ip 83.122.180.237 125463 port 108 125463 unique_id port 125463 remote_ip 10.8.1.130 125465 username mehdizare 125465 mac 125465 bytes_out 0 125465 bytes_in 0 125465 station_ip 5.119.165.187 125465 port 105 125465 unique_id port 125465 remote_ip 10.8.1.42 125466 username naeimeh 125466 mac 125466 bytes_out 0 125466 bytes_in 0 125466 station_ip 83.123.102.252 125466 port 113 125466 unique_id port 125466 remote_ip 10.8.1.206 125467 username jafari 125467 mac 125467 bytes_out 0 125467 bytes_in 0 125467 station_ip 89.34.57.249 125467 port 201 125467 unique_id port 125469 username barzegar 125469 mac 125469 bytes_out 0 125469 bytes_in 0 125469 station_ip 5.119.248.191 125469 port 113 125469 unique_id port 125469 remote_ip 10.8.1.174 125472 username aminvpn 125472 mac 125472 bytes_out 34297 125472 bytes_in 128823 125472 station_ip 5.119.200.236 125472 port 199 125472 unique_id port 125472 remote_ip 10.8.0.14 125481 username mostafa_es78 125481 unique_id port 125481 terminate_cause User-Request 125481 bytes_out 3021639 125481 bytes_in 37356821 125481 station_ip 178.236.35.96 125481 port 15729951 125481 nas_port_type Virtual 125481 remote_ip 5.5.5.220 125482 username rezaei 125482 kill_reason Another user logged on this global unique id 125482 mac 125482 bytes_out 0 125482 bytes_in 0 125482 station_ip 5.119.148.149 125482 port 197 125482 unique_id port 125482 remote_ip 10.8.0.206 125483 username sade 125483 unique_id port 125483 terminate_cause Lost-Carrier 125483 bytes_out 1674892 125483 bytes_in 43237438 125483 station_ip 86.57.109.191 125483 port 15729961 125483 nas_port_type Virtual 125483 remote_ip 5.5.5.201 125486 username barzegar 125486 mac 125486 bytes_out 0 125486 bytes_in 0 125486 station_ip 5.119.248.191 125486 port 205 125486 unique_id port 125486 remote_ip 10.8.0.234 125494 username rezaei 125494 mac 125494 bytes_out 1974188 125494 bytes_in 26206645 125494 station_ip 5.119.148.149 125494 port 201 125494 unique_id port 125494 remote_ip 10.8.0.206 125500 username mahdiyehalizadeh 125500 mac 125500 bytes_out 21124 125500 bytes_in 23593 125500 station_ip 83.122.25.10 125500 port 201 125500 unique_id port 125500 remote_ip 10.8.0.82 125508 username zare 125508 mac 125508 bytes_out 0 125508 bytes_in 0 125508 station_ip 37.27.1.196 125508 port 199 125508 unique_id port 125508 remote_ip 10.8.0.18 125513 username ehsun 125513 mac 125513 bytes_out 0 125513 bytes_in 0 125513 station_ip 46.225.209.208 125513 port 197 125513 unique_id port 125518 username jafari 125518 mac 125518 bytes_out 0 125518 bytes_in 0 125518 station_ip 89.47.145.136 125518 port 197 125518 unique_id port 125518 remote_ip 10.8.0.242 125519 username mostafa_es78 125519 unique_id port 125519 terminate_cause User-Request 125519 bytes_out 404479 125519 bytes_in 6040924 125519 station_ip 178.236.35.96 125519 port 15729965 125519 nas_port_type Virtual 125519 remote_ip 5.5.5.213 125524 username barzegar 125524 mac 125524 bytes_out 0 125524 bytes_in 0 125524 station_ip 5.119.248.191 125524 port 108 125524 unique_id port 125524 remote_ip 10.8.1.174 125527 username mahdiyehalizadeh 125458 station_ip 83.122.180.237 125458 port 113 125458 unique_id port 125458 remote_ip 10.8.1.130 125462 username naeimeh 125462 mac 125462 bytes_out 10268 125462 bytes_in 12838 125462 station_ip 83.123.217.121 125462 port 199 125462 unique_id port 125462 remote_ip 10.8.0.78 125468 username mosi 125468 mac 125468 bytes_out 185139 125468 bytes_in 266513 125468 station_ip 89.34.62.43 125468 port 199 125468 unique_id port 125468 remote_ip 10.8.0.138 125470 username sade 125470 unique_id port 125470 terminate_cause User-Request 125470 bytes_out 1637672 125470 bytes_in 49147315 125470 station_ip 86.57.4.182 125470 port 15729956 125470 nas_port_type Virtual 125470 remote_ip 5.5.5.231 125473 username mansur 125473 kill_reason Another user logged on this global unique id 125473 mac 125473 bytes_out 0 125473 bytes_in 0 125473 station_ip 5.120.102.70 125473 port 112 125473 unique_id port 125473 remote_ip 10.8.1.194 125474 username barzegar 125474 mac 125474 bytes_out 0 125474 bytes_in 0 125474 station_ip 5.119.248.191 125474 port 201 125474 unique_id port 125474 remote_ip 10.8.0.234 125475 username barzegar 125475 mac 125475 bytes_out 0 125475 bytes_in 0 125475 station_ip 5.119.248.191 125475 port 199 125475 unique_id port 125475 remote_ip 10.8.0.234 125476 username musa 125476 kill_reason Relative expiration date has reached 125476 mac 125476 bytes_out 0 125476 bytes_in 0 125476 station_ip 83.122.167.119 125476 port 199 125476 unique_id port 125478 username naeimeh 125478 kill_reason Another user logged on this global unique id 125478 mac 125478 bytes_out 0 125478 bytes_in 0 125478 station_ip 83.123.102.252 125478 port 105 125478 unique_id port 125478 remote_ip 10.8.1.206 125479 username barzegar 125479 mac 125479 bytes_out 0 125479 bytes_in 0 125479 station_ip 5.119.248.191 125479 port 201 125479 unique_id port 125479 remote_ip 10.8.0.234 125484 username jafari 125484 mac 125484 bytes_out 1980090 125484 bytes_in 23869973 125484 station_ip 89.47.145.136 125484 port 199 125484 unique_id port 125484 remote_ip 10.8.0.242 125487 username aminvpn 125487 mac 125487 bytes_out 755943 125487 bytes_in 1548022 125487 station_ip 5.118.4.106 125487 port 201 125487 unique_id port 125487 remote_ip 10.8.0.14 125489 username naeimeh 125489 mac 125489 bytes_out 0 125489 bytes_in 0 125489 station_ip 83.123.102.252 125489 port 105 125489 unique_id port 125491 username naeimeh 125491 mac 125491 bytes_out 0 125491 bytes_in 0 125491 station_ip 83.123.102.252 125491 port 105 125491 unique_id port 125491 remote_ip 10.8.1.206 125495 username mahdiyehalizadeh 125495 mac 125495 bytes_out 51481 125495 bytes_in 80749 125495 station_ip 83.122.25.10 125495 port 197 125495 unique_id port 125495 remote_ip 10.8.0.82 125496 username zare 125496 mac 125496 bytes_out 0 125496 bytes_in 0 125496 station_ip 37.27.1.196 125496 port 135 125496 unique_id port 125498 username zare 125498 mac 125498 bytes_out 0 125498 bytes_in 0 125498 station_ip 37.27.1.196 125498 port 135 125498 unique_id port 125498 remote_ip 10.8.0.18 125503 username zare 125503 mac 125503 bytes_out 0 125503 bytes_in 0 125503 station_ip 37.27.1.196 125503 port 135 125503 unique_id port 125503 remote_ip 10.8.0.18 125504 username zare 125504 mac 125504 bytes_out 0 125504 bytes_in 0 125504 station_ip 37.27.1.196 125504 port 135 125504 unique_id port 125504 remote_ip 10.8.0.18 125505 username zare 125505 mac 125505 bytes_out 0 125505 bytes_in 0 125493 remote_ip 10.8.0.234 125497 username sade 125497 unique_id port 125497 terminate_cause User-Request 125497 bytes_out 3803157 125497 bytes_in 60382354 125497 station_ip 86.57.0.80 125497 port 15729963 125497 nas_port_type Virtual 125497 remote_ip 5.5.5.210 125499 username zare 125499 mac 125499 bytes_out 0 125499 bytes_in 0 125499 station_ip 37.27.1.196 125499 port 135 125499 unique_id port 125499 remote_ip 10.8.0.18 125501 username barzegar 125501 mac 125501 bytes_out 0 125501 bytes_in 0 125501 station_ip 5.119.248.191 125501 port 105 125501 unique_id port 125501 remote_ip 10.8.1.174 125502 username zare 125502 mac 125502 bytes_out 0 125502 bytes_in 0 125502 station_ip 37.27.1.196 125502 port 135 125502 unique_id port 125502 remote_ip 10.8.0.18 125507 username mostafa_es78 125507 unique_id port 125507 terminate_cause User-Request 125507 bytes_out 877082 125507 bytes_in 2539753 125507 station_ip 178.236.35.96 125507 port 15729962 125507 nas_port_type Virtual 125507 remote_ip 5.5.5.207 125509 username barzegar 125509 mac 125509 bytes_out 0 125509 bytes_in 0 125509 station_ip 5.119.248.191 125509 port 199 125509 unique_id port 125509 remote_ip 10.8.0.234 125515 username ehsun 125515 mac 125515 bytes_out 0 125515 bytes_in 0 125515 station_ip 46.225.209.208 125515 port 197 125515 unique_id port 125515 remote_ip 10.8.0.162 125517 username barzegar 125517 mac 125517 bytes_out 0 125517 bytes_in 0 125517 station_ip 5.119.248.191 125517 port 197 125517 unique_id port 125517 remote_ip 10.8.0.234 125520 username barzegar 125520 mac 125520 bytes_out 0 125520 bytes_in 0 125520 station_ip 5.119.248.191 125520 port 108 125520 unique_id port 125520 remote_ip 10.8.1.174 125521 username rezaei 125521 kill_reason Another user logged on this global unique id 125521 mac 125521 bytes_out 0 125521 bytes_in 0 125521 station_ip 5.119.148.149 125521 port 201 125521 unique_id port 125521 remote_ip 10.8.0.206 125522 username zare 125522 mac 125522 bytes_out 936123 125522 bytes_in 8018596 125522 station_ip 37.27.1.196 125522 port 197 125522 unique_id port 125522 remote_ip 10.8.0.18 125523 username rezaei 125523 mac 125523 bytes_out 0 125523 bytes_in 0 125523 station_ip 5.119.148.149 125523 port 201 125523 unique_id port 125530 username barzegar 125530 mac 125530 bytes_out 0 125530 bytes_in 0 125530 station_ip 5.119.248.191 125530 port 108 125530 unique_id port 125530 remote_ip 10.8.1.174 125534 username barzegar 125534 mac 125534 bytes_out 42188 125534 bytes_in 17653 125534 station_ip 5.119.248.191 125534 port 108 125534 unique_id port 125534 remote_ip 10.8.1.174 125538 username barzegar 125538 mac 125538 bytes_out 0 125538 bytes_in 0 125538 station_ip 5.119.248.191 125538 port 135 125538 unique_id port 125538 remote_ip 10.8.0.234 125542 username mahdiyehalizadeh 125542 mac 125542 bytes_out 2147743 125542 bytes_in 34087239 125542 station_ip 83.122.25.10 125542 port 197 125542 unique_id port 125542 remote_ip 10.8.0.82 125545 username barzegar 125545 mac 125545 bytes_out 31489 125545 bytes_in 42228 125545 station_ip 5.119.248.191 125545 port 135 125545 unique_id port 125545 remote_ip 10.8.0.234 125551 username barzegar 125551 mac 125551 bytes_out 0 125551 bytes_in 0 125551 station_ip 5.119.248.191 125551 port 135 125551 unique_id port 125551 remote_ip 10.8.0.234 125552 username barzegar 125552 mac 125552 bytes_out 0 125552 bytes_in 0 125552 station_ip 5.119.248.191 125552 port 135 125505 station_ip 37.27.1.196 125505 port 135 125505 unique_id port 125505 remote_ip 10.8.0.18 125506 username arash 125506 mac 125506 bytes_out 0 125506 bytes_in 0 125506 station_ip 37.27.23.115 125506 port 199 125506 unique_id port 125506 remote_ip 10.8.0.114 125510 username ehsun 125510 kill_reason Another user logged on this global unique id 125510 mac 125510 bytes_out 0 125510 bytes_in 0 125510 station_ip 46.225.209.208 125510 port 197 125510 unique_id port 125510 remote_ip 10.8.0.162 125511 username mostafa_es78 125511 unique_id port 125511 terminate_cause User-Request 125511 bytes_out 74107 125511 bytes_in 286063 125511 station_ip 178.236.35.96 125511 port 15729964 125511 nas_port_type Virtual 125511 remote_ip 5.5.5.211 125512 username sabaghnezhad 125512 mac 125512 bytes_out 1619732 125512 bytes_in 16359947 125512 station_ip 83.122.180.237 125512 port 108 125512 unique_id port 125512 remote_ip 10.8.1.130 125514 username zare 125514 mac 125514 bytes_out 0 125514 bytes_in 0 125514 station_ip 37.27.1.196 125514 port 205 125514 unique_id port 125514 remote_ip 10.8.0.18 125516 username barzegar 125516 mac 125516 bytes_out 0 125516 bytes_in 0 125516 station_ip 5.119.248.191 125516 port 205 125516 unique_id port 125516 remote_ip 10.8.0.234 125525 username mirzaei 125525 mac 125525 bytes_out 2314663 125525 bytes_in 28520467 125525 station_ip 5.120.175.250 125525 port 199 125525 unique_id port 125525 remote_ip 10.8.0.66 125526 username mahdiyehalizadeh 125526 mac 125526 bytes_out 924770 125526 bytes_in 11190326 125526 station_ip 83.122.25.10 125526 port 135 125526 unique_id port 125526 remote_ip 10.8.0.82 125532 username sade 125532 unique_id port 125532 terminate_cause User-Request 125532 bytes_out 22173695 125532 bytes_in 518595345 125532 station_ip 86.57.0.80 125532 port 15729967 125532 nas_port_type Virtual 125532 remote_ip 5.5.5.217 125541 username barzegar 125541 mac 125541 bytes_out 0 125541 bytes_in 0 125541 station_ip 5.119.248.191 125541 port 135 125541 unique_id port 125541 remote_ip 10.8.0.234 125546 username barzegar 125546 mac 125546 bytes_out 0 125546 bytes_in 0 125546 station_ip 5.119.248.191 125546 port 135 125546 unique_id port 125546 remote_ip 10.8.0.234 125548 username barzegar 125548 mac 125548 bytes_out 0 125548 bytes_in 0 125548 station_ip 5.119.248.191 125548 port 135 125548 unique_id port 125548 remote_ip 10.8.0.234 125549 username barzegar 125549 mac 125549 bytes_out 0 125549 bytes_in 0 125549 station_ip 5.119.248.191 125549 port 135 125549 unique_id port 125549 remote_ip 10.8.0.234 125550 username mahdixz 125550 unique_id port 125550 terminate_cause Lost-Carrier 125550 bytes_out 9024986 125550 bytes_in 342019118 125550 station_ip 151.235.77.225 125550 port 15729969 125550 nas_port_type Virtual 125550 remote_ip 5.5.5.239 125553 username khalili 125553 mac 125553 bytes_out 0 125553 bytes_in 0 125553 station_ip 5.119.40.148 125553 port 207 125553 unique_id port 125553 remote_ip 10.8.0.86 125555 username barzegar 125555 mac 125555 bytes_out 0 125555 bytes_in 0 125555 station_ip 5.119.248.191 125555 port 108 125555 unique_id port 125555 remote_ip 10.8.1.174 125558 username barzegar 125558 mac 125558 bytes_out 0 125558 bytes_in 0 125558 station_ip 5.119.248.191 125558 port 108 125558 unique_id port 125558 remote_ip 10.8.1.174 125559 username barzegar 125559 mac 125559 bytes_out 0 125559 bytes_in 0 125559 station_ip 5.119.248.191 125559 port 108 125559 unique_id port 125527 mac 125527 bytes_out 3075 125527 bytes_in 4723 125527 station_ip 83.122.25.10 125527 port 112 125527 unique_id port 125527 remote_ip 10.8.1.110 125528 username zare 125528 mac 125528 bytes_out 0 125528 bytes_in 0 125528 station_ip 37.27.1.196 125528 port 197 125528 unique_id port 125528 remote_ip 10.8.0.18 125529 username mostafa_es78 125529 unique_id port 125529 terminate_cause Lost-Carrier 125529 bytes_out 3159473 125529 bytes_in 90466435 125529 station_ip 178.236.35.96 125529 port 15729966 125529 nas_port_type Virtual 125529 remote_ip 5.5.5.215 125531 username mohammadjavad 125531 mac 125531 bytes_out 654198 125531 bytes_in 8126935 125531 station_ip 37.129.138.137 125531 port 112 125531 unique_id port 125531 remote_ip 10.8.1.146 125533 username zare 125533 mac 125533 bytes_out 2096352 125533 bytes_in 29664742 125533 station_ip 37.27.1.196 125533 port 135 125533 unique_id port 125533 remote_ip 10.8.0.18 125535 username barzegar 125535 mac 125535 bytes_out 0 125535 bytes_in 0 125535 station_ip 5.119.248.191 125535 port 108 125535 unique_id port 125535 remote_ip 10.8.1.174 125536 username mosi 125536 mac 125536 bytes_out 0 125536 bytes_in 0 125536 station_ip 37.44.58.110 125536 port 196 125536 unique_id port 125536 remote_ip 10.8.0.138 125537 username barzegar 125537 mac 125537 bytes_out 0 125537 bytes_in 0 125537 station_ip 5.119.248.191 125537 port 135 125537 unique_id port 125537 remote_ip 10.8.0.234 125539 username mohammadjavad 125539 mac 125539 bytes_out 81998 125539 bytes_in 137101 125539 station_ip 37.129.153.48 125539 port 108 125539 unique_id port 125539 remote_ip 10.8.1.146 125540 username sabaghnezhad 125540 mac 125540 bytes_out 0 125540 bytes_in 0 125540 station_ip 83.122.180.237 125540 port 105 125540 unique_id port 125540 remote_ip 10.8.1.130 125543 username barzegar 125543 mac 125543 bytes_out 0 125543 bytes_in 0 125543 station_ip 5.119.248.191 125543 port 135 125543 unique_id port 125543 remote_ip 10.8.0.234 125544 username barzegar 125544 mac 125544 bytes_out 2830 125544 bytes_in 5107 125544 station_ip 5.119.248.191 125544 port 135 125544 unique_id port 125544 remote_ip 10.8.0.234 125547 username barzegar 125547 mac 125547 bytes_out 0 125547 bytes_in 0 125547 station_ip 5.119.248.191 125547 port 135 125547 unique_id port 125547 remote_ip 10.8.0.234 125554 username barzegar 125554 mac 125554 bytes_out 0 125554 bytes_in 0 125554 station_ip 5.119.248.191 125554 port 108 125554 unique_id port 125554 remote_ip 10.8.1.174 125556 username barzegar 125556 mac 125556 bytes_out 0 125556 bytes_in 0 125556 station_ip 5.119.248.191 125556 port 108 125556 unique_id port 125556 remote_ip 10.8.1.174 125559 remote_ip 10.8.1.174 125561 username sobhan 125561 unique_id port 125561 terminate_cause Lost-Carrier 125561 bytes_out 503382 125561 bytes_in 5406348 125561 station_ip 5.119.240.15 125561 port 15729970 125561 nas_port_type Virtual 125561 remote_ip 5.5.5.255 125565 username barzegar 125565 mac 125565 bytes_out 0 125565 bytes_in 0 125565 station_ip 5.119.248.191 125565 port 108 125565 unique_id port 125565 remote_ip 10.8.1.174 125569 username hashtadani3 125569 mac 125569 bytes_out 0 125569 bytes_in 0 125569 station_ip 83.122.54.249 125569 port 197 125569 unique_id port 125569 remote_ip 10.8.0.154 125570 username barzegar 125570 mac 125570 bytes_out 0 125570 bytes_in 0 125570 station_ip 5.119.248.191 125570 port 108 125570 unique_id port 125552 unique_id port 125552 remote_ip 10.8.0.234 125557 username barzegar 125557 mac 125557 bytes_out 0 125557 bytes_in 0 125557 station_ip 5.119.248.191 125557 port 108 125557 unique_id port 125557 remote_ip 10.8.1.174 125560 username barzegar 125560 mac 125560 bytes_out 0 125560 bytes_in 0 125560 station_ip 5.119.248.191 125560 port 108 125560 unique_id port 125560 remote_ip 10.8.1.174 125563 username barzegar 125563 mac 125563 bytes_out 0 125563 bytes_in 0 125563 station_ip 5.119.248.191 125563 port 108 125563 unique_id port 125563 remote_ip 10.8.1.174 125566 username hashtadani3 125566 mac 125566 bytes_out 0 125566 bytes_in 0 125566 station_ip 83.122.54.249 125566 port 135 125566 unique_id port 125566 remote_ip 10.8.0.154 125567 username hashtadani3 125567 mac 125567 bytes_out 0 125567 bytes_in 0 125567 station_ip 83.122.54.249 125567 port 197 125567 unique_id port 125567 remote_ip 10.8.0.154 125571 username hashtadani3 125571 mac 125571 bytes_out 0 125571 bytes_in 0 125571 station_ip 83.122.54.249 125571 port 197 125571 unique_id port 125571 remote_ip 10.8.0.154 125579 username barzegar 125579 mac 125579 bytes_out 0 125579 bytes_in 0 125579 station_ip 5.119.248.191 125579 port 197 125579 unique_id port 125579 remote_ip 10.8.0.234 125581 username naeimeh 125581 mac 125581 bytes_out 0 125581 bytes_in 0 125581 station_ip 37.129.48.136 125581 port 108 125581 unique_id port 125581 remote_ip 10.8.1.206 125583 username barzegar 125583 mac 125583 bytes_out 0 125583 bytes_in 0 125583 station_ip 5.119.248.191 125583 port 197 125583 unique_id port 125583 remote_ip 10.8.0.234 125584 username hashtadani3 125584 mac 125584 bytes_out 0 125584 bytes_in 0 125584 station_ip 83.122.54.249 125584 port 197 125584 unique_id port 125584 remote_ip 10.8.0.154 125589 username barzegar 125589 mac 125589 bytes_out 0 125589 bytes_in 0 125589 station_ip 5.119.248.191 125589 port 205 125589 unique_id port 125589 remote_ip 10.8.0.234 125590 username hashtadani3 125590 mac 125590 bytes_out 0 125590 bytes_in 0 125590 station_ip 83.122.54.249 125590 port 207 125590 unique_id port 125590 remote_ip 10.8.0.154 125591 username sedighe 125591 mac 125591 bytes_out 871296 125591 bytes_in 9888722 125591 station_ip 113.203.26.230 125591 port 197 125591 unique_id port 125591 remote_ip 10.8.0.146 125604 username hashtadani3 125604 mac 125604 bytes_out 0 125604 bytes_in 0 125604 station_ip 83.122.54.249 125604 port 197 125604 unique_id port 125604 remote_ip 10.8.0.154 125607 username moradi 125607 kill_reason Another user logged on this global unique id 125607 mac 125607 bytes_out 0 125607 bytes_in 0 125607 station_ip 37.129.70.59 125607 port 205 125607 unique_id port 125613 username barzegar 125613 mac 125613 bytes_out 0 125613 bytes_in 0 125613 station_ip 5.119.248.191 125613 port 208 125613 unique_id port 125613 remote_ip 10.8.0.234 125617 username hashtadani3 125617 mac 125617 bytes_out 1644 125617 bytes_in 5182 125617 station_ip 83.122.54.249 125617 port 205 125617 unique_id port 125617 remote_ip 10.8.0.154 125619 username barzegar 125619 mac 125619 bytes_out 0 125619 bytes_in 0 125619 station_ip 5.119.248.191 125619 port 208 125619 unique_id port 125619 remote_ip 10.8.0.234 125621 username hashtadani3 125621 kill_reason Maximum check online fails reached 125621 mac 125621 bytes_out 0 125621 bytes_in 0 125621 station_ip 83.122.54.249 125621 port 207 125562 username barzegar 125562 mac 125562 bytes_out 0 125562 bytes_in 0 125562 station_ip 5.119.248.191 125562 port 108 125562 unique_id port 125562 remote_ip 10.8.1.174 125564 username barzegar 125564 mac 125564 bytes_out 0 125564 bytes_in 0 125564 station_ip 5.119.248.191 125564 port 108 125564 unique_id port 125564 remote_ip 10.8.1.174 125568 username hashtadani3 125568 kill_reason Maximum check online fails reached 125568 mac 125568 bytes_out 0 125568 bytes_in 0 125568 station_ip 83.122.54.249 125568 port 135 125568 unique_id port 125574 username barzegar 125574 mac 125574 bytes_out 0 125574 bytes_in 0 125574 station_ip 5.119.248.191 125574 port 108 125574 unique_id port 125574 remote_ip 10.8.1.174 125577 username hashtadani3 125577 mac 125577 bytes_out 0 125577 bytes_in 0 125577 station_ip 83.122.54.249 125577 port 197 125577 unique_id port 125577 remote_ip 10.8.0.154 125586 username barzegar 125586 mac 125586 bytes_out 0 125586 bytes_in 0 125586 station_ip 5.119.248.191 125586 port 199 125586 unique_id port 125586 remote_ip 10.8.0.234 125587 username hashtadani3 125587 mac 125587 bytes_out 0 125587 bytes_in 0 125587 station_ip 83.122.54.249 125587 port 199 125587 unique_id port 125587 remote_ip 10.8.0.154 125588 username hashtadani3 125588 mac 125588 bytes_out 0 125588 bytes_in 0 125588 station_ip 83.122.54.249 125588 port 205 125588 unique_id port 125588 remote_ip 10.8.0.154 125592 username hashtadani3 125592 mac 125592 bytes_out 0 125592 bytes_in 0 125592 station_ip 83.122.54.249 125592 port 207 125592 unique_id port 125592 remote_ip 10.8.0.154 125593 username barzegar 125593 mac 125593 bytes_out 0 125593 bytes_in 0 125593 station_ip 5.119.248.191 125593 port 207 125593 unique_id port 125593 remote_ip 10.8.0.234 125595 username hashtadani3 125595 mac 125595 bytes_out 0 125595 bytes_in 0 125595 station_ip 83.122.54.249 125595 port 207 125595 unique_id port 125595 remote_ip 10.8.0.154 125597 username sedighe 125597 mac 125597 bytes_out 130491 125597 bytes_in 866375 125597 station_ip 113.203.26.230 125597 port 197 125597 unique_id port 125597 remote_ip 10.8.0.146 125598 username hashtadani3 125598 mac 125598 bytes_out 0 125598 bytes_in 0 125598 station_ip 83.122.54.249 125598 port 197 125598 unique_id port 125598 remote_ip 10.8.0.154 125599 username moradi 125599 kill_reason Another user logged on this global unique id 125599 mac 125599 bytes_out 0 125599 bytes_in 0 125599 station_ip 37.129.70.59 125599 port 205 125599 unique_id port 125600 username barzegar 125600 mac 125600 bytes_out 0 125600 bytes_in 0 125600 station_ip 5.119.248.191 125600 port 197 125600 unique_id port 125600 remote_ip 10.8.0.234 125603 username moradi 125603 kill_reason Another user logged on this global unique id 125603 mac 125603 bytes_out 0 125603 bytes_in 0 125603 station_ip 37.129.70.59 125603 port 205 125603 unique_id port 125605 username barzegar 125605 mac 125605 bytes_out 0 125605 bytes_in 0 125605 station_ip 5.119.248.191 125605 port 197 125605 unique_id port 125605 remote_ip 10.8.0.234 125606 username hashtadani3 125606 mac 125606 bytes_out 0 125606 bytes_in 0 125606 station_ip 83.122.54.249 125606 port 197 125606 unique_id port 125606 remote_ip 10.8.0.154 125623 username sedighe 125623 mac 125623 bytes_out 37912 125623 bytes_in 48682 125623 station_ip 37.129.3.223 125623 port 208 125623 unique_id port 125623 remote_ip 10.8.0.146 125624 username hashtadani3 125570 remote_ip 10.8.1.174 125572 username hashtadani3 125572 mac 125572 bytes_out 0 125572 bytes_in 0 125572 station_ip 83.122.54.249 125572 port 197 125572 unique_id port 125572 remote_ip 10.8.0.154 125573 username hashtadani3 125573 mac 125573 bytes_out 0 125573 bytes_in 0 125573 station_ip 83.122.54.249 125573 port 197 125573 unique_id port 125573 remote_ip 10.8.0.154 125575 username hashtadani3 125575 mac 125575 bytes_out 0 125575 bytes_in 0 125575 station_ip 83.122.54.249 125575 port 197 125575 unique_id port 125575 remote_ip 10.8.0.154 125576 username barzegar 125576 mac 125576 bytes_out 0 125576 bytes_in 0 125576 station_ip 5.119.248.191 125576 port 108 125576 unique_id port 125576 remote_ip 10.8.1.174 125578 username hashtadani3 125578 mac 125578 bytes_out 0 125578 bytes_in 0 125578 station_ip 83.122.54.249 125578 port 197 125578 unique_id port 125578 remote_ip 10.8.0.154 125580 username hashtadani3 125580 mac 125580 bytes_out 0 125580 bytes_in 0 125580 station_ip 83.122.54.249 125580 port 197 125580 unique_id port 125580 remote_ip 10.8.0.154 125582 username hashtadani3 125582 mac 125582 bytes_out 0 125582 bytes_in 0 125582 station_ip 83.122.54.249 125582 port 197 125582 unique_id port 125582 remote_ip 10.8.0.154 125585 username hashtadani3 125585 mac 125585 bytes_out 0 125585 bytes_in 0 125585 station_ip 83.122.54.249 125585 port 197 125585 unique_id port 125585 remote_ip 10.8.0.154 125594 username moradi 125594 kill_reason Another user logged on this global unique id 125594 mac 125594 bytes_out 0 125594 bytes_in 0 125594 station_ip 37.129.70.59 125594 port 205 125594 unique_id port 125594 remote_ip 10.8.0.250 125596 username rostami 125596 mac 125596 bytes_out 2381059 125596 bytes_in 26376864 125596 station_ip 5.119.244.92 125596 port 199 125596 unique_id port 125596 remote_ip 10.8.0.194 125601 username mohsenaskari 125601 mac 125601 bytes_out 0 125601 bytes_in 0 125601 station_ip 46.225.211.157 125601 port 207 125601 unique_id port 125601 remote_ip 10.8.0.246 125602 username hashtadani3 125602 mac 125602 bytes_out 0 125602 bytes_in 0 125602 station_ip 83.122.54.249 125602 port 197 125602 unique_id port 125602 remote_ip 10.8.0.154 125608 username hashtadani3 125608 kill_reason Maximum check online fails reached 125608 mac 125608 bytes_out 0 125608 bytes_in 0 125608 station_ip 83.122.54.249 125608 port 197 125608 unique_id port 125609 username hashtadani3 125609 mac 125609 bytes_out 0 125609 bytes_in 0 125609 station_ip 83.122.54.249 125609 port 207 125609 unique_id port 125609 remote_ip 10.8.0.154 125610 username hashtadani3 125610 kill_reason Maximum check online fails reached 125610 mac 125610 bytes_out 0 125610 bytes_in 0 125610 station_ip 83.122.54.249 125610 port 108 125610 unique_id port 125611 username moradi 125611 kill_reason Another user logged on this global unique id 125611 mac 125611 bytes_out 0 125611 bytes_in 0 125611 station_ip 37.129.70.59 125611 port 205 125611 unique_id port 125612 username hashtadani3 125612 mac 125612 bytes_out 0 125612 bytes_in 0 125612 station_ip 83.122.54.249 125612 port 207 125612 unique_id port 125612 remote_ip 10.8.0.154 125614 username sedighe 125614 mac 125614 bytes_out 2046931 125614 bytes_in 31894435 125614 station_ip 37.129.3.223 125614 port 199 125614 unique_id port 125614 remote_ip 10.8.0.146 125615 username moradi 125615 mac 125615 bytes_out 0 125615 bytes_in 0 125615 station_ip 37.129.70.59 125615 port 205 125615 unique_id port 125616 username sedighe 125616 mac 125616 bytes_out 47962 125616 bytes_in 51243 125616 station_ip 37.129.3.223 125616 port 207 125616 unique_id port 125616 remote_ip 10.8.0.146 125618 username sedighe 125618 mac 125618 bytes_out 0 125618 bytes_in 0 125618 station_ip 37.129.3.223 125618 port 199 125618 unique_id port 125618 remote_ip 10.8.0.146 125620 username sedighe 125620 mac 125620 bytes_out 2910 125620 bytes_in 7260 125620 station_ip 37.129.3.223 125620 port 199 125620 unique_id port 125620 remote_ip 10.8.0.146 125622 username houshang 125622 mac 125622 bytes_out 115499 125622 bytes_in 474815 125622 station_ip 5.120.136.1 125622 port 205 125622 unique_id port 125622 remote_ip 10.8.0.22 125626 username sedighe 125626 mac 125626 bytes_out 2698 125626 bytes_in 6703 125626 station_ip 37.129.3.223 125626 port 199 125626 unique_id port 125626 remote_ip 10.8.0.146 125629 username barzegar 125629 mac 125629 bytes_out 0 125629 bytes_in 0 125629 station_ip 5.119.248.191 125629 port 199 125629 unique_id port 125629 remote_ip 10.8.0.234 125636 username rostami 125636 mac 125636 bytes_out 0 125636 bytes_in 0 125636 station_ip 5.120.50.179 125636 port 209 125636 unique_id port 62804 username arezoo 62804 kill_reason Maximum check online fails reached 62804 mac 5.237.72.78:49231: Unknown host 62804 bytes_out 0 62804 bytes_in 0 62804 station_ip 5.237.72.78:49231 62804 port 1018 62804 unique_id port 125638 username hashtadani3 125638 mac 125638 bytes_out 0 125638 bytes_in 0 125638 station_ip 83.122.54.249 125638 port 205 125638 unique_id port 125638 remote_ip 10.8.0.154 125647 username milan 125647 mac 125647 bytes_out 0 125647 bytes_in 0 125647 station_ip 5.120.86.99 125647 port 196 125647 unique_id port 125647 remote_ip 10.8.0.218 125649 username hashtadani3 125649 mac 125649 bytes_out 0 125649 bytes_in 0 125649 station_ip 83.122.54.249 125649 port 196 125649 unique_id port 125649 remote_ip 10.8.0.154 125653 username hashtadani3 125653 mac 125653 bytes_out 0 125653 bytes_in 0 125653 station_ip 83.122.54.249 125653 port 208 125653 unique_id port 125653 remote_ip 10.8.0.154 125658 username rajaei 125658 mac 125658 bytes_out 0 125658 bytes_in 0 125658 station_ip 37.156.155.158 125658 port 169 125658 unique_id port 125663 username hashtadani3 125663 kill_reason Maximum check online fails reached 125663 mac 125663 bytes_out 0 125663 bytes_in 0 125663 station_ip 83.122.54.249 125663 port 208 125663 unique_id port 125665 username hashtadani3 125665 mac 125665 bytes_out 0 125665 bytes_in 0 125665 station_ip 83.122.54.249 125665 port 210 125665 unique_id port 125665 remote_ip 10.8.0.154 125668 username hashtadani3 125668 mac 125668 bytes_out 0 125668 bytes_in 0 125668 station_ip 83.122.54.249 125668 port 209 125668 unique_id port 125668 remote_ip 10.8.0.154 125670 username hashtadani3 125670 kill_reason Maximum check online fails reached 125670 mac 125670 bytes_out 0 125670 bytes_in 0 125670 station_ip 83.122.54.249 125670 port 209 125670 unique_id port 125676 username mohammadjavad 125676 mac 125676 bytes_out 0 125676 bytes_in 0 125676 station_ip 83.122.24.15 125676 port 112 125676 unique_id port 125676 remote_ip 10.8.1.146 125682 username hashtadani3 125682 mac 125682 bytes_out 0 125682 bytes_in 0 125682 station_ip 83.122.54.249 125682 port 205 125682 unique_id port 125682 remote_ip 10.8.0.154 125683 username barzegar 125683 mac 125621 unique_id port 125625 username hashtadani3 125625 mac 125625 bytes_out 0 125625 bytes_in 0 125625 station_ip 83.122.54.249 125625 port 208 125625 unique_id port 125625 remote_ip 10.8.0.154 125627 username houshang 125627 mac 125627 bytes_out 143009 125627 bytes_in 565600 125627 station_ip 5.120.136.1 125627 port 205 125627 unique_id port 125627 remote_ip 10.8.0.22 125628 username hashtadani3 125628 mac 125628 bytes_out 0 125628 bytes_in 0 125628 station_ip 83.122.54.249 125628 port 199 125628 unique_id port 125628 remote_ip 10.8.0.154 125630 username sedighe 125630 mac 125630 bytes_out 0 125630 bytes_in 0 125630 station_ip 37.129.157.45 125630 port 208 125630 unique_id port 62805 username arezoo 62805 kill_reason Maximum check online fails reached 62805 mac 5.237.72.78:49417: Unknown host 62805 bytes_out 0 62805 bytes_in 0 62805 station_ip 5.237.72.78:49417 62805 port 1018 62805 unique_id port 125630 remote_ip 10.8.0.146 125635 username barzegar 125635 mac 125635 bytes_out 0 125635 bytes_in 0 125635 station_ip 5.119.248.191 125635 port 208 125635 unique_id port 125635 remote_ip 10.8.0.234 125637 username sedighe 125637 mac 125637 bytes_out 0 125637 bytes_in 0 125637 station_ip 113.203.59.31 125637 port 205 125637 unique_id port 125637 remote_ip 10.8.0.146 125639 username sedighe 125639 mac 125639 bytes_out 0 125639 bytes_in 0 125639 station_ip 113.203.59.31 125639 port 208 125639 unique_id port 125639 remote_ip 10.8.0.146 125640 username houshang 125640 mac 125640 bytes_out 3445620 125640 bytes_in 44105572 125640 station_ip 5.120.136.1 125640 port 199 125640 unique_id port 125640 remote_ip 10.8.0.22 125641 username hashtadani3 125641 mac 125641 bytes_out 0 125641 bytes_in 0 125641 station_ip 83.122.54.249 125641 port 209 125641 unique_id port 125641 remote_ip 10.8.0.154 125644 username hashtadani3 125644 mac 125644 bytes_out 0 125644 bytes_in 0 125644 station_ip 83.122.54.249 125644 port 208 125644 unique_id port 125644 remote_ip 10.8.0.154 125646 username hashtadani3 125646 mac 125646 bytes_out 0 125646 bytes_in 0 125646 station_ip 83.122.54.249 125646 port 208 125646 unique_id port 125646 remote_ip 10.8.0.154 125648 username barzegar 125648 mac 125648 bytes_out 0 125648 bytes_in 0 125648 station_ip 5.119.248.191 125648 port 196 125648 unique_id port 125648 remote_ip 10.8.0.234 125650 username mohammadjavad 125650 mac 125650 bytes_out 170369 125650 bytes_in 275034 125650 station_ip 83.122.24.15 125650 port 112 125650 unique_id port 125650 remote_ip 10.8.1.146 125651 username hashtadani3 125651 mac 125651 bytes_out 0 125651 bytes_in 0 125651 station_ip 83.122.54.249 125651 port 196 125651 unique_id port 125651 remote_ip 10.8.0.154 125656 username forozande 125656 mac 125656 bytes_out 0 125656 bytes_in 0 125656 station_ip 83.122.99.133 125656 port 205 125656 unique_id port 125656 remote_ip 10.8.0.74 125659 username barzegar 125659 mac 125659 bytes_out 0 125659 bytes_in 0 125659 station_ip 5.119.248.191 125659 port 205 125659 unique_id port 125659 remote_ip 10.8.0.234 125661 username hashtadani3 125661 mac 125661 bytes_out 0 125661 bytes_in 0 125661 station_ip 83.122.54.249 125661 port 208 125661 unique_id port 125661 remote_ip 10.8.0.154 125662 username moradi 125662 kill_reason Another user logged on this global unique id 125662 mac 125662 bytes_out 0 125662 bytes_in 0 125662 station_ip 37.129.73.255 125662 port 169 125662 unique_id port 125624 mac 125624 bytes_out 0 125624 bytes_in 0 125624 station_ip 83.122.54.249 125624 port 112 125624 unique_id port 125624 remote_ip 10.8.1.94 125631 username hashtadani3 125631 mac 125631 bytes_out 0 125631 bytes_in 0 125631 station_ip 83.122.54.249 125631 port 208 125631 unique_id port 125631 remote_ip 10.8.0.154 125632 username rostami 125632 kill_reason Another user logged on this global unique id 125632 mac 125632 bytes_out 0 125632 bytes_in 0 125632 station_ip 5.120.50.179 125632 port 209 125632 unique_id port 125632 remote_ip 10.8.0.194 125633 username houshang 125633 mac 125633 bytes_out 0 125633 bytes_in 0 125633 station_ip 5.120.136.1 125633 port 199 125633 unique_id port 125633 remote_ip 10.8.0.22 125634 username hashtadani3 125634 mac 125634 bytes_out 0 125634 bytes_in 0 125634 station_ip 83.122.54.249 125634 port 208 125634 unique_id port 125634 remote_ip 10.8.0.154 125642 username barzegar 125642 mac 125642 bytes_out 0 125642 bytes_in 0 125642 station_ip 5.119.248.191 125642 port 209 125642 unique_id port 125642 remote_ip 10.8.0.234 125643 username houshang 125643 mac 125643 bytes_out 0 125643 bytes_in 0 125643 station_ip 5.119.54.1 125643 port 208 125643 unique_id port 125643 remote_ip 10.8.0.22 125645 username houshang 125645 mac 125645 bytes_out 0 125645 bytes_in 0 125645 station_ip 5.119.54.1 125645 port 209 125645 unique_id port 125645 remote_ip 10.8.0.22 125652 username barzegar 125652 mac 125652 bytes_out 0 125652 bytes_in 0 125652 station_ip 5.119.248.191 125652 port 208 125652 unique_id port 125652 remote_ip 10.8.0.234 125654 username sedighe 125654 mac 125654 bytes_out 0 125654 bytes_in 0 125654 station_ip 113.203.59.31 125654 port 205 62856 username arezoo 62856 kill_reason Maximum check online fails reached 62856 mac 5.237.72.78:54730: Unknown host 62856 bytes_out 0 62856 bytes_in 0 62856 station_ip 5.237.72.78:54730 62856 port 1018 62856 unique_id port 125654 unique_id port 125654 remote_ip 10.8.0.146 125655 username forozande 125655 mac 125655 bytes_out 624732 125655 bytes_in 4840450 125655 station_ip 113.203.99.217 125655 port 196 125655 unique_id port 125655 remote_ip 10.8.0.74 125657 username hashtadani3 125657 mac 125657 bytes_out 0 125657 bytes_in 0 125657 station_ip 83.122.54.249 125657 port 205 125657 unique_id port 125657 remote_ip 10.8.0.154 125660 username sedighe 125660 mac 125660 bytes_out 122060 125660 bytes_in 130393 125660 station_ip 113.203.59.31 125660 port 208 125660 unique_id port 125660 remote_ip 10.8.0.146 125667 username moradi 125667 kill_reason Another user logged on this global unique id 125667 mac 125667 bytes_out 0 125667 bytes_in 0 125667 station_ip 37.129.73.255 125667 port 169 125667 unique_id port 125671 username hashtadani3 125671 mac 125671 bytes_out 0 125671 bytes_in 0 125671 station_ip 83.122.54.249 125671 port 205 125671 unique_id port 125671 remote_ip 10.8.0.154 125675 username hashtadani3 125675 mac 125675 bytes_out 0 125675 bytes_in 0 125675 station_ip 83.122.54.249 125675 port 212 125675 unique_id port 125675 remote_ip 10.8.0.154 125678 username forozande 125678 mac 125678 bytes_out 186150 125678 bytes_in 1522742 125678 station_ip 113.203.10.115 125678 port 205 125678 unique_id port 125678 remote_ip 10.8.0.74 125679 username hashtadani3 125679 mac 125679 bytes_out 0 125679 bytes_in 0 125679 station_ip 83.122.54.249 125679 port 210 125679 unique_id port 125679 remote_ip 10.8.0.154 125662 remote_ip 10.8.0.250 125664 username forozande 125664 mac 125664 bytes_out 0 125664 bytes_in 0 125664 station_ip 83.123.57.246 125664 port 209 125664 unique_id port 125664 remote_ip 10.8.0.74 125666 username barzegar 125666 mac 125666 bytes_out 0 125666 bytes_in 0 125666 station_ip 5.119.248.191 125666 port 209 125666 unique_id port 125666 remote_ip 10.8.0.234 125669 username sedighe 125669 mac 125669 bytes_out 131062 125669 bytes_in 401522 125669 station_ip 83.123.171.37 125669 port 205 125669 unique_id port 125669 remote_ip 10.8.0.146 125672 username hashtadani3 125672 kill_reason Maximum check online fails reached 125672 mac 125672 bytes_out 0 125672 bytes_in 0 125672 station_ip 83.122.54.249 125672 port 116 125672 unique_id port 125673 username moradi 125673 kill_reason Another user logged on this global unique id 125673 mac 125673 bytes_out 0 125673 bytes_in 0 125673 station_ip 37.129.73.255 125673 port 169 125673 unique_id port 125674 username sedighe 125674 mac 125674 bytes_out 10105305 125674 bytes_in 5446051 125674 station_ip 113.203.7.130 125674 port 210 125674 unique_id port 125674 remote_ip 10.8.0.146 125677 username barzegar 125677 mac 125677 bytes_out 0 125677 bytes_in 0 125677 station_ip 5.119.248.191 125677 port 210 125677 unique_id port 125677 remote_ip 10.8.0.234 125681 username morteza 125681 mac 125681 bytes_out 0 125681 bytes_in 0 125681 station_ip 83.123.66.179 125681 port 205 125681 unique_id port 125681 remote_ip 10.8.0.46 125685 username mirzaei 125685 kill_reason Another user logged on this global unique id 125685 mac 125685 bytes_out 0 125685 bytes_in 0 125685 station_ip 5.120.175.250 125685 port 201 125685 unique_id port 125685 remote_ip 10.8.0.66 125689 username barzegar 125689 mac 125689 bytes_out 0 125689 bytes_in 0 125689 station_ip 5.119.248.191 125689 port 196 125689 unique_id port 125689 remote_ip 10.8.0.234 125694 username hashtadani3 125694 mac 125694 bytes_out 0 125694 bytes_in 0 125694 station_ip 83.122.54.249 125694 port 196 125694 unique_id port 125694 remote_ip 10.8.0.154 125697 username afarin1 125697 mac 125697 bytes_out 0 125697 bytes_in 0 125697 station_ip 37.129.169.71 125697 port 203 125697 unique_id port 125701 username morteza 125701 mac 125701 bytes_out 0 125701 bytes_in 0 125701 station_ip 37.129.58.188 125701 port 196 125701 unique_id port 125701 remote_ip 10.8.0.46 125704 username hashtadani3 125704 mac 125704 bytes_out 0 125704 bytes_in 0 125704 station_ip 83.122.54.249 125704 port 211 125704 unique_id port 125704 remote_ip 10.8.0.154 125705 username arabpour 125705 unique_id port 125705 terminate_cause User-Request 125705 bytes_out 113499 125705 bytes_in 843771 125705 station_ip 83.123.33.1 125705 port 15729972 125705 nas_port_type Virtual 125705 remote_ip 5.5.5.182 125715 username hashtadani3 125715 mac 125715 bytes_out 0 125715 bytes_in 0 125715 station_ip 83.122.54.249 125715 port 211 125715 unique_id port 125715 remote_ip 10.8.0.154 125719 username mansur 125719 mac 125719 bytes_out 0 125719 bytes_in 0 125719 station_ip 5.119.110.11 125719 port 196 125719 unique_id port 125719 remote_ip 10.8.0.210 125726 username barzegar 125726 mac 125726 bytes_out 0 125726 bytes_in 0 125726 station_ip 5.119.248.191 125726 port 205 125726 unique_id port 125726 remote_ip 10.8.0.234 125728 username barzegar 125728 mac 125728 bytes_out 0 125728 bytes_in 0 125728 station_ip 5.119.248.191 125728 port 205 125680 username mohammadjavad 125680 mac 125680 bytes_out 0 125680 bytes_in 0 125680 station_ip 83.122.24.15 125680 port 211 125680 unique_id port 125680 remote_ip 10.8.0.142 125686 username hashtadani3 125686 mac 125686 bytes_out 2217 125686 bytes_in 4759 125686 station_ip 83.122.54.249 125686 port 210 125686 unique_id port 125686 remote_ip 10.8.0.154 125688 username mohsenaskari 125688 mac 125688 bytes_out 1034763 125688 bytes_in 10033959 125688 station_ip 46.225.211.157 125688 port 196 125688 unique_id port 125688 remote_ip 10.8.0.246 125695 username barzegar 125695 mac 125695 bytes_out 0 125695 bytes_in 0 125695 station_ip 5.119.248.191 125695 port 112 125695 unique_id port 125695 remote_ip 10.8.1.174 125698 username afarin1 125698 mac 125698 bytes_out 0 125698 bytes_in 0 125698 station_ip 37.129.169.71 125698 port 112 125698 unique_id port 125698 remote_ip 10.8.1.114 125699 username hamid.e 125699 unique_id port 125699 terminate_cause User-Request 125699 bytes_out 5727427 125699 bytes_in 46454298 125699 station_ip 37.27.12.93 125699 port 15729971 125699 nas_port_type Virtual 125699 remote_ip 5.5.5.179 125700 username hashtadani3 125700 mac 125700 bytes_out 331573 125700 bytes_in 3226751 125700 station_ip 83.122.54.249 125700 port 196 125700 unique_id port 125700 remote_ip 10.8.0.154 125702 username sabaghnezhad 125702 mac 125702 bytes_out 0 125702 bytes_in 0 125702 station_ip 83.122.180.237 125702 port 105 125702 unique_id port 125702 remote_ip 10.8.1.130 125703 username barzegar 125703 kill_reason Maximum check online fails reached 125703 mac 125703 bytes_out 0 125703 bytes_in 0 125703 station_ip 5.119.248.191 125703 port 112 125703 unique_id port 125709 username afarin1 125709 mac 125709 bytes_out 31366 125709 bytes_in 54882 125709 station_ip 37.129.169.71 125709 port 105 125709 unique_id port 125709 remote_ip 10.8.1.114 125713 username hashtadani3 125713 mac 125713 bytes_out 0 125713 bytes_in 0 125713 station_ip 83.122.54.249 125713 port 211 125713 unique_id port 125713 remote_ip 10.8.0.154 125714 username hashtadani3 125714 mac 125714 bytes_out 0 125714 bytes_in 0 125714 station_ip 83.122.54.249 125714 port 211 125714 unique_id port 125714 remote_ip 10.8.0.154 125716 username jafari 125716 mac 125716 bytes_out 0 125716 bytes_in 0 125716 station_ip 89.32.101.189 125716 port 205 125716 unique_id port 125717 username hashtadani3 125717 mac 125717 bytes_out 0 125717 bytes_in 0 125717 station_ip 83.122.54.249 125717 port 205 125717 unique_id port 125717 remote_ip 10.8.0.154 125718 username hashtadani3 125718 mac 125718 bytes_out 0 125718 bytes_in 0 125718 station_ip 83.122.54.249 125718 port 205 125718 unique_id port 62887 username arezoo 62887 kill_reason Wrong password 62887 mac 5.237.90.234:49232: Unknown host 62887 bytes_out 0 62887 bytes_in 0 62887 station_ip 5.237.90.234:49232 62887 port 1018 62887 unique_id port 125718 remote_ip 10.8.0.154 125721 username hashtadani3 125707 port 203 125721 kill_reason Maximum check online fails reached 125721 mac 125721 bytes_out 0 125721 bytes_in 0 125721 station_ip 83.122.54.249 125721 port 105 125721 unique_id port 62892 username arezoo 125723 username barzegar 125723 mac 125723 bytes_out 0 125723 bytes_in 0 125723 station_ip 5.119.248.191 125723 port 205 125723 unique_id port 125723 remote_ip 10.8.0.234 125724 username barzegar 125724 mac 125724 bytes_out 0 125724 bytes_in 0 125724 station_ip 5.119.248.191 125724 port 205 125683 bytes_out 0 125683 bytes_in 0 125683 station_ip 5.119.248.191 125683 port 205 125683 unique_id port 125683 remote_ip 10.8.0.234 125684 username hashtadani3 125684 mac 125684 bytes_out 1644 125684 bytes_in 4001 125684 station_ip 83.122.54.249 125684 port 210 125684 unique_id port 125684 remote_ip 10.8.0.154 125687 username barzegar 125687 mac 125687 bytes_out 0 125687 bytes_in 0 125687 station_ip 5.119.248.191 125687 port 211 125687 unique_id port 125687 remote_ip 10.8.0.234 125690 username barzegar 125690 mac 125690 bytes_out 0 125690 bytes_in 0 125690 station_ip 5.119.248.191 125690 port 196 125690 unique_id port 125690 remote_ip 10.8.0.234 62889 username arezoo 62889 kill_reason Maximum check online fails reached 62889 mac 5.73.131.158:49960: Unknown host 62889 bytes_out 0 62889 bytes_in 0 62889 station_ip 5.73.131.158:49960 62889 port 1018 62889 unique_id port 125691 username hashtadani3 125691 mac 125691 bytes_out 0 125691 bytes_in 0 125691 station_ip 83.122.54.249 125691 port 196 125691 unique_id port 62892 kill_reason Maximum check online fails reached 62892 mac 5.73.131.158:49178: Unknown host 62892 bytes_out 0 62892 bytes_in 0 62892 station_ip 5.73.131.158:49178 62892 port 1018 62892 unique_id port 125691 remote_ip 10.8.0.154 125692 username mirzaei 125692 kill_reason Another user logged on this global unique id 125692 mac 125692 bytes_out 0 125692 bytes_in 0 125692 station_ip 5.120.175.250 125692 port 201 62894 username arezoo 62894 kill_reason Maximum check online fails reached 62894 mac 5.73.131.158:49179: Unknown host 62894 bytes_out 0 62894 bytes_in 0 62894 station_ip 5.73.131.158:49179 62894 port 1018 62894 unique_id port 62895 username arezoo 62895 kill_reason Another user logged on this global unique id 62895 mac 5.237.90.234:49214: Unknown host 62895 bytes_out 0 62895 bytes_in 0 62895 station_ip 5.237.90.234:49214 62895 port 1018 62895 unique_id port 62896 username arezoo 62896 kill_reason Maximum check online fails reached 62896 mac 5.237.90.234:49232: Unknown host 62896 bytes_out 0 62896 bytes_in 0 62896 station_ip 5.237.90.234:49232 62896 port 1018 62896 unique_id port 62897 username arezoo 62897 kill_reason Another user logged on this global unique id 62897 mac 5.237.90.234:49249: Unknown host 62897 bytes_out 0 62897 bytes_in 0 62897 station_ip 5.237.90.234:49249 62897 port 1018 62897 unique_id port 125692 unique_id port 125693 username jafari 125693 kill_reason Another user logged on this global unique id 125693 mac 125693 bytes_out 0 125693 bytes_in 0 125693 station_ip 89.32.101.189 125693 port 205 125693 unique_id port 125693 remote_ip 10.8.0.242 125696 username hashtadani3 125696 mac 125696 bytes_out 6711 125696 bytes_in 19094 125696 station_ip 83.122.54.249 125696 port 196 125696 unique_id port 125696 remote_ip 10.8.0.154 125706 username jafari 125706 kill_reason Another user logged on this global unique id 125706 mac 125706 bytes_out 0 125706 bytes_in 0 125706 station_ip 89.32.101.189 125706 port 205 125706 unique_id port 125707 username afarin1 125707 mac 125707 bytes_out 0 125707 bytes_in 0 125707 station_ip 37.129.169.71 125707 unique_id port 125707 remote_ip 10.8.0.118 125708 username barzegar 125708 mac 125708 bytes_out 0 125708 bytes_in 0 125708 station_ip 5.119.248.191 125708 port 203 125708 unique_id port 125708 remote_ip 10.8.0.234 125710 username hashtadani3 125710 mac 125710 bytes_out 905039 125710 bytes_in 7554154 125710 station_ip 83.122.54.249 125710 port 211 125710 unique_id port 125710 remote_ip 10.8.0.154 125711 username hashtadani3 125711 mac 125711 bytes_out 0 125711 bytes_in 0 125711 station_ip 83.122.54.249 125711 port 203 125711 unique_id port 125711 remote_ip 10.8.0.154 125712 username hashtadani3 125712 mac 125712 bytes_out 0 125712 bytes_in 0 125712 station_ip 83.122.54.249 125712 port 105 125712 unique_id port 125712 remote_ip 10.8.1.94 125720 username hashtadani3 125720 mac 125720 bytes_out 0 125720 bytes_in 0 125720 station_ip 83.122.54.249 125720 port 196 125720 unique_id port 125720 remote_ip 10.8.0.154 125722 username hashtadani3 125722 kill_reason Maximum check online fails reached 125722 mac 125722 bytes_out 0 125722 bytes_in 0 125722 station_ip 83.122.54.249 125722 port 117 125722 unique_id port 125725 username hashtadani3 125725 kill_reason Another user logged on this global unique id 125725 mac 125725 bytes_out 0 125725 bytes_in 0 125725 station_ip 83.122.54.249 125725 port 196 125725 unique_id port 125725 remote_ip 10.8.0.154 125730 username alireza 125730 unique_id port 125730 terminate_cause User-Request 125730 bytes_out 1504427 125730 bytes_in 21071272 125730 station_ip 5.119.178.73 125730 port 15729973 125730 nas_port_type Virtual 125730 remote_ip 5.5.5.186 125737 username mohammadmahdi 125737 mac 125737 bytes_out 258333 125737 bytes_in 1191140 125737 station_ip 5.120.142.69 125737 port 212 125737 unique_id port 125737 remote_ip 10.8.0.54 125739 username mohammadjavad 125739 mac 125739 bytes_out 613418 125739 bytes_in 10836505 125739 station_ip 83.123.177.35 125739 port 210 125739 unique_id port 125739 remote_ip 10.8.0.142 125741 username hamidsalari1 125741 mac 125741 bytes_out 923998 125741 bytes_in 17041557 125741 station_ip 113.203.117.219 125741 port 211 125741 unique_id port 125741 remote_ip 10.8.0.226 125742 username aminvpn 125742 mac 125742 bytes_out 683418 125742 bytes_in 1292384 125742 station_ip 5.118.4.25 125742 port 203 125742 unique_id port 125742 remote_ip 10.8.0.14 125749 username sedighe 125749 mac 125749 bytes_out 447076 125749 bytes_in 15085701 125749 station_ip 83.122.211.240 125749 port 211 125749 unique_id port 125749 remote_ip 10.8.0.146 125752 username barzegar 125752 mac 125752 bytes_out 0 125752 bytes_in 0 125752 station_ip 5.119.248.191 125752 port 113 125752 unique_id port 125752 remote_ip 10.8.1.174 125758 username hashtadani3 125758 mac 125758 bytes_out 0 125758 bytes_in 0 125758 station_ip 83.122.54.249 125758 port 118 125758 unique_id port 125758 remote_ip 10.8.1.94 125760 username hashtadani3 125760 mac 125760 bytes_out 0 125760 bytes_in 0 125760 station_ip 83.122.54.249 125760 port 214 125760 unique_id port 125760 remote_ip 10.8.0.154 125763 username barzegar 125763 mac 125763 bytes_out 0 125763 bytes_in 0 125763 station_ip 5.119.248.191 125763 port 113 125763 unique_id port 125763 remote_ip 10.8.1.174 125764 username barzegar 125764 mac 125764 bytes_out 0 125764 bytes_in 0 125764 station_ip 5.119.248.191 125764 port 113 125764 unique_id port 125764 remote_ip 10.8.1.174 125766 username barzegar 125766 mac 125766 bytes_out 0 125766 bytes_in 0 125766 station_ip 5.119.248.191 125766 port 203 125766 unique_id port 125766 remote_ip 10.8.0.234 125769 username mahdiyehalizadeh 125769 mac 125769 bytes_out 61867 125769 bytes_in 109216 125769 station_ip 83.122.195.129 125769 port 210 125769 unique_id port 125769 remote_ip 10.8.0.82 125773 username hashtadani3 125773 mac 125773 bytes_out 0 125773 bytes_in 0 125773 station_ip 83.122.54.249 125773 port 203 125773 unique_id port 125773 remote_ip 10.8.0.154 125724 unique_id port 125724 remote_ip 10.8.0.234 125727 username hashtadani3 125727 kill_reason Another user logged on this global unique id 125727 mac 125727 bytes_out 0 125727 bytes_in 0 125727 station_ip 83.122.54.249 125727 port 196 125727 unique_id port 125731 username barzegar 125731 mac 125731 bytes_out 0 125731 bytes_in 0 125731 station_ip 5.119.248.191 125731 port 118 125731 unique_id port 125731 remote_ip 10.8.1.174 125732 username mahdiyehalizadeh 125732 mac 125732 bytes_out 0 125732 bytes_in 0 125732 station_ip 37.129.0.23 125732 port 211 125732 unique_id port 125732 remote_ip 10.8.0.82 125734 username barzegar 125734 mac 125734 bytes_out 0 125734 bytes_in 0 125734 station_ip 5.119.248.191 125734 port 118 125734 unique_id port 125734 remote_ip 10.8.1.174 125735 username mahdiyehalizadeh 125735 mac 125735 bytes_out 2122 125735 bytes_in 4371 125735 station_ip 37.129.0.23 125735 port 119 125735 unique_id port 125735 remote_ip 10.8.1.110 125738 username hashtadani3 125738 kill_reason Another user logged on this global unique id 125738 mac 125738 bytes_out 0 125738 bytes_in 0 125738 station_ip 83.122.54.249 125738 port 196 125738 unique_id port 125740 username barzegar 125740 mac 125740 bytes_out 0 125740 bytes_in 0 125740 station_ip 5.119.248.191 125740 port 113 125740 unique_id port 125740 remote_ip 10.8.1.174 125744 username forozande 125744 mac 125744 bytes_out 114710 125744 bytes_in 93034 125744 station_ip 83.122.139.187 125744 port 203 125744 unique_id port 125744 remote_ip 10.8.0.74 125748 username malekpoir 125748 mac 125748 bytes_out 0 125748 bytes_in 0 125748 station_ip 5.119.182.142 125748 port 118 125748 unique_id port 125748 remote_ip 10.8.1.54 125753 username hashtadani3 125753 kill_reason Another user logged on this global unique id 125753 mac 125753 bytes_out 0 125753 bytes_in 0 125753 station_ip 83.122.54.249 125753 port 196 125753 unique_id port 125754 username hashtadani3 125754 mac 125754 bytes_out 0 125754 bytes_in 0 125754 station_ip 83.122.54.249 125754 port 196 125754 unique_id port 125762 username forozande 125762 mac 125762 bytes_out 1479557 125762 bytes_in 16723748 125762 station_ip 113.203.66.195 125762 port 203 125762 unique_id port 125762 remote_ip 10.8.0.74 125765 username sedighe 125765 mac 125765 bytes_out 1451040 125765 bytes_in 34511836 125765 station_ip 83.122.196.179 125765 port 205 125765 unique_id port 125765 remote_ip 10.8.0.146 125767 username hashtadani3 125767 mac 125767 bytes_out 1056056 125767 bytes_in 14756854 125767 station_ip 83.122.54.249 125767 port 214 125767 unique_id port 125767 remote_ip 10.8.0.154 125775 username hashtadani3 125775 mac 125775 bytes_out 0 125775 bytes_in 0 125775 station_ip 83.122.54.249 125775 port 113 125775 unique_id port 125775 remote_ip 10.8.1.94 125785 username hashtadani3 125785 mac 125785 bytes_out 0 125785 bytes_in 0 125785 station_ip 83.122.54.249 125785 port 203 125785 unique_id port 125785 remote_ip 10.8.0.154 125793 username hashtadani3 125793 kill_reason Maximum check online fails reached 125793 mac 125793 bytes_out 0 125793 bytes_in 0 125793 station_ip 83.122.54.249 125793 port 118 125793 unique_id port 125797 username barzegar 125797 mac 125797 bytes_out 0 125797 bytes_in 0 125797 station_ip 5.119.248.191 125797 port 169 125797 unique_id port 125797 remote_ip 10.8.0.234 125798 username moradi 125798 mac 125798 bytes_out 42675 125798 bytes_in 62231 125798 station_ip 83.122.212.242 125798 port 120 125728 unique_id port 125728 remote_ip 10.8.0.234 125729 username mohsenaskari 125729 mac 125729 bytes_out 2580437 125729 bytes_in 28389301 125729 station_ip 46.225.211.157 125729 port 210 125729 unique_id port 125729 remote_ip 10.8.0.246 125733 username mahdiyehalizadeh 125733 mac 125733 bytes_out 18732 125733 bytes_in 23267 125733 station_ip 37.129.0.23 125733 port 213 125733 unique_id port 125733 remote_ip 10.8.0.82 125736 username malekpoir 125736 mac 125736 bytes_out 0 125736 bytes_in 0 125736 station_ip 5.119.182.142 125736 port 113 125736 unique_id port 125736 remote_ip 10.8.1.54 125743 username sedighe 125743 mac 125743 bytes_out 23171003 125743 bytes_in 16053273 125743 station_ip 83.122.211.240 125743 port 205 125743 unique_id port 125743 remote_ip 10.8.0.146 125745 username barzegar 125745 mac 125745 bytes_out 0 125745 bytes_in 0 125745 station_ip 5.119.248.191 125745 port 113 125745 unique_id port 125745 remote_ip 10.8.1.174 125746 username mirzaei 125746 kill_reason Another user logged on this global unique id 125746 mac 125746 bytes_out 0 125746 bytes_in 0 125746 station_ip 5.120.175.250 125746 port 201 125746 unique_id port 125747 username mohammadjavad 125747 mac 125747 bytes_out 10364 125747 bytes_in 12112 125747 station_ip 83.122.33.35 125747 port 205 125747 unique_id port 125747 remote_ip 10.8.0.142 125750 username malekpoir 125750 mac 125750 bytes_out 0 125750 bytes_in 0 125750 station_ip 5.119.182.142 125750 port 118 125750 unique_id port 125750 remote_ip 10.8.1.54 125751 username barzegar 125751 mac 125751 bytes_out 0 125751 bytes_in 0 125751 station_ip 5.119.248.191 125751 port 113 125751 unique_id port 125751 remote_ip 10.8.1.174 125755 username hashtadani3 125755 mac 125755 bytes_out 0 125755 bytes_in 0 125755 station_ip 83.122.54.249 125755 port 196 125755 unique_id port 125755 remote_ip 10.8.0.154 125756 username hashtadani3 125756 mac 125756 bytes_out 0 125756 bytes_in 0 125756 station_ip 83.122.54.249 125756 port 214 125756 unique_id port 125756 remote_ip 10.8.0.154 125757 username mohammadmahdi 125757 mac 125757 bytes_out 11680467 125757 bytes_in 39073835 125757 station_ip 5.120.142.69 125757 port 210 125757 unique_id port 125757 remote_ip 10.8.0.54 125759 username hashtadani3 125759 mac 125759 bytes_out 0 125759 bytes_in 0 125759 station_ip 83.122.54.249 125759 port 214 125759 unique_id port 125759 remote_ip 10.8.0.154 125761 username mostafa_es78 125761 unique_id port 125761 terminate_cause Lost-Carrier 125761 bytes_out 1168475 125761 bytes_in 6805070 125761 station_ip 178.236.35.96 125761 port 15729974 125761 nas_port_type Virtual 125761 remote_ip 5.5.5.188 125768 username hashtadani3 125768 mac 125768 bytes_out 0 125768 bytes_in 0 125768 station_ip 83.122.54.249 125768 port 203 125768 unique_id port 125768 remote_ip 10.8.0.154 125770 username hashtadani3 125770 mac 125770 bytes_out 0 125770 bytes_in 0 125770 station_ip 83.122.54.249 125770 port 203 125770 unique_id port 125770 remote_ip 10.8.0.154 125771 username hashtadani3 125771 mac 125771 bytes_out 0 125771 bytes_in 0 125771 station_ip 83.122.54.249 125771 port 203 125771 unique_id port 125771 remote_ip 10.8.0.154 125772 username hashtadani3 125772 mac 125772 bytes_out 0 125772 bytes_in 0 125772 station_ip 83.122.54.249 125772 port 203 125772 unique_id port 125772 remote_ip 10.8.0.154 125776 username hashtadani3 125776 mac 125776 bytes_out 0 125776 bytes_in 0 125776 station_ip 83.122.54.249 125774 username hashtadani3 125774 mac 125774 bytes_out 0 125774 bytes_in 0 125774 station_ip 83.122.54.249 125774 port 203 125774 unique_id port 125774 remote_ip 10.8.0.154 125779 username hashtadani3 125779 mac 125779 bytes_out 0 125779 bytes_in 0 125779 station_ip 83.122.54.249 125779 port 203 125779 unique_id port 125779 remote_ip 10.8.0.154 125781 username hashtadani3 125781 mac 125781 bytes_out 0 125781 bytes_in 0 125781 station_ip 83.122.54.249 125781 port 203 125781 unique_id port 125781 remote_ip 10.8.0.154 125783 username hashtadani3 125783 mac 125783 bytes_out 0 125783 bytes_in 0 125783 station_ip 83.122.54.249 125783 port 203 125783 unique_id port 125783 remote_ip 10.8.0.154 125784 username hashtadani3 125784 mac 125784 bytes_out 0 125784 bytes_in 0 125784 station_ip 83.122.54.249 125784 port 203 125784 unique_id port 125784 remote_ip 10.8.0.154 125788 username barzegar 125788 mac 125788 bytes_out 0 125788 bytes_in 0 125788 station_ip 5.119.248.191 125788 port 210 125788 unique_id port 125788 remote_ip 10.8.0.234 125799 username aminvpn 125799 mac 125799 bytes_out 0 125799 bytes_in 0 125799 station_ip 5.118.4.25 125799 port 210 125799 unique_id port 125799 remote_ip 10.8.0.14 125804 username malekpoir 125804 mac 125804 bytes_out 0 125804 bytes_in 0 125804 station_ip 5.119.182.142 125804 port 213 125804 unique_id port 125804 remote_ip 10.8.0.58 125805 username mostafa_es78 125805 mac 125805 bytes_out 0 125805 bytes_in 0 125805 station_ip 178.236.35.96 125805 port 196 125805 unique_id port 125805 remote_ip 10.8.0.198 125807 username mohammadjavad 125807 kill_reason Maximum check online fails reached 125807 mac 125807 bytes_out 0 125807 bytes_in 0 125807 station_ip 37.129.44.173 125807 port 203 125807 unique_id port 125807 remote_ip 10.8.0.142 125809 username hosseine 125809 kill_reason Another user logged on this global unique id 125809 mac 125809 bytes_out 0 125809 bytes_in 0 125809 station_ip 83.123.21.247 125809 port 188 125809 unique_id port 125809 remote_ip 10.8.0.238 125812 username barzegar 125812 mac 125812 bytes_out 0 125812 bytes_in 0 125812 station_ip 5.119.248.191 125812 port 196 125812 unique_id port 125812 remote_ip 10.8.0.234 125815 username forozande 125815 mac 125815 bytes_out 0 125815 bytes_in 0 125815 station_ip 113.203.21.129 125815 port 203 125815 unique_id port 125815 remote_ip 10.8.0.74 125822 username hashtadani3 125822 mac 125822 bytes_out 0 125822 bytes_in 0 125822 station_ip 5.202.13.200 125822 port 210 125822 unique_id port 125822 remote_ip 10.8.0.154 125828 username mohammadjavad 63000 username gohar 63000 kill_reason Maximum check online fails reached 63000 mac 89.199.184.22:10851: Unknown host 63000 bytes_out 0 63000 bytes_in 0 63000 station_ip 89.199.184.22:10851 63000 port 1018 63000 unique_id port 125828 mac 125828 bytes_out 610847 125828 bytes_in 7867625 125828 station_ip 83.122.6.207 125828 port 210 125828 unique_id port 125828 remote_ip 10.8.0.142 125833 username barzegar 125833 mac 125833 bytes_out 0 125833 bytes_in 0 125833 station_ip 5.119.248.191 125833 port 205 125833 unique_id port 125833 remote_ip 10.8.0.234 125834 username barzegar 125834 mac 125834 bytes_out 0 125834 bytes_in 0 125834 station_ip 5.119.248.191 125834 port 205 125834 unique_id port 125834 remote_ip 10.8.0.234 125838 username hashtadani3 125838 mac 125838 bytes_out 0 125838 bytes_in 0 125838 station_ip 5.202.13.200 125838 port 120 125776 port 203 125776 unique_id port 125776 remote_ip 10.8.0.154 125777 username hashtadani3 125777 mac 125777 bytes_out 0 125777 bytes_in 0 125777 station_ip 83.122.54.249 125777 port 203 125777 unique_id port 125777 remote_ip 10.8.0.154 125778 username hashtadani3 125778 mac 125778 bytes_out 0 125778 bytes_in 0 125778 station_ip 83.122.54.249 125778 port 203 125778 unique_id port 125778 remote_ip 10.8.0.154 125780 username hashtadani3 125780 mac 125780 bytes_out 0 125780 bytes_in 0 125780 station_ip 83.122.54.249 125780 port 203 125780 unique_id port 125780 remote_ip 10.8.0.154 125782 username hashtadani3 125782 kill_reason Maximum check online fails reached 125782 mac 125782 bytes_out 0 125782 bytes_in 0 125782 station_ip 83.122.54.249 125782 port 113 125782 unique_id port 125786 username hashtadani3 125786 mac 125786 bytes_out 0 125786 bytes_in 0 125786 station_ip 83.122.54.249 125786 port 203 125786 unique_id port 125786 remote_ip 10.8.0.154 125787 username hashtadani3 125787 mac 125787 bytes_out 0 125787 bytes_in 0 125787 station_ip 83.122.54.249 125787 port 203 125787 unique_id port 125787 remote_ip 10.8.0.154 125789 username hashtadani3 125789 mac 125789 bytes_out 0 125789 bytes_in 0 125789 station_ip 83.122.54.249 125789 port 203 125789 unique_id port 125789 remote_ip 10.8.0.154 125790 username hashtadani3 125790 mac 125790 bytes_out 0 125790 bytes_in 0 125790 station_ip 83.122.54.249 125790 port 203 125790 unique_id port 125790 remote_ip 10.8.0.154 125791 username hashtadani3 125791 mac 125791 bytes_out 0 125791 bytes_in 0 125791 station_ip 83.122.54.249 125791 port 203 125791 unique_id port 125791 remote_ip 10.8.0.154 125792 username hashtadani3 125792 kill_reason Maximum number of concurrent logins reached 125792 mac 125792 bytes_out 0 125792 bytes_in 0 125792 station_ip 83.122.54.249 125792 port 203 125792 unique_id port 125794 username moradi 125794 mac 125794 bytes_out 0 125794 bytes_in 0 125794 station_ip 37.129.73.255 125794 port 169 125794 unique_id port 125795 username hashtadani3 125795 kill_reason Maximum check online fails reached 125795 mac 125795 bytes_out 0 125795 bytes_in 0 125795 station_ip 83.122.54.249 125795 port 119 125795 unique_id port 125796 username forozande 125796 mac 125796 bytes_out 0 125796 bytes_in 0 125796 station_ip 83.122.30.239 125796 port 205 125796 unique_id port 125796 remote_ip 10.8.0.74 125800 username houshang 125800 mac 125800 bytes_out 0 125800 bytes_in 0 125800 station_ip 5.120.95.97 125800 port 203 125800 unique_id port 125800 remote_ip 10.8.0.22 125801 username barzegar 125801 mac 125801 bytes_out 0 125801 bytes_in 0 125801 station_ip 5.119.248.191 125801 port 169 125801 unique_id port 125801 remote_ip 10.8.0.234 125803 username barzegar 125803 mac 125803 bytes_out 0 125803 bytes_in 0 125803 station_ip 5.119.248.191 125803 port 169 125803 unique_id port 125803 remote_ip 10.8.0.234 125806 username barzegar 125806 mac 125806 bytes_out 0 125806 bytes_in 0 125806 station_ip 5.119.248.191 125806 port 196 125806 unique_id port 125806 remote_ip 10.8.0.234 125811 username mohsenaskari 125811 mac 125811 bytes_out 0 125811 bytes_in 0 125811 station_ip 46.225.211.157 125811 port 212 125811 unique_id port 125811 remote_ip 10.8.0.246 125814 username houshang 125814 mac 125814 bytes_out 0 125814 bytes_in 0 125814 station_ip 5.119.147.224 125814 port 196 125814 unique_id port 125798 unique_id port 125798 remote_ip 10.8.1.202 125802 username ahmadipour 125802 unique_id port 125802 terminate_cause Lost-Carrier 125802 bytes_out 566218 125802 bytes_in 13382544 125802 station_ip 113.203.88.112 125802 port 15729978 125802 nas_port_type Virtual 125802 remote_ip 5.5.5.197 125808 username barzegar 125808 mac 125808 bytes_out 0 125808 bytes_in 0 125808 station_ip 5.119.248.191 125808 port 205 125808 unique_id port 125808 remote_ip 10.8.0.234 125810 username mahdiyehalizadeh 125810 mac 125810 bytes_out 0 125810 bytes_in 0 125810 station_ip 83.122.168.187 125810 port 196 125810 unique_id port 125810 remote_ip 10.8.0.82 125813 username houshang 125813 mac 125813 bytes_out 0 125813 bytes_in 0 125813 station_ip 5.119.147.224 125813 port 196 125813 unique_id port 125813 remote_ip 10.8.0.22 125816 username barzegar 125816 mac 125816 bytes_out 0 125816 bytes_in 0 125816 station_ip 5.119.248.191 125816 port 196 125816 unique_id port 125816 remote_ip 10.8.0.234 125817 username houshang 125817 mac 125817 bytes_out 0 125817 bytes_in 0 125817 station_ip 5.119.147.224 125817 port 203 125817 unique_id port 125817 remote_ip 10.8.0.22 125819 username barzegar 125819 mac 125819 bytes_out 0 125819 bytes_in 0 125819 station_ip 5.119.248.191 125819 port 203 125819 unique_id port 125819 remote_ip 10.8.0.234 125821 username hashtadani3 125821 mac 125821 bytes_out 0 125821 bytes_in 0 125821 station_ip 5.202.13.200 125821 port 210 125821 unique_id port 125821 remote_ip 10.8.0.154 125823 username barzegar 125823 kill_reason Maximum check online fails reached 125823 mac 125823 bytes_out 0 125823 bytes_in 0 125823 station_ip 5.119.248.191 125823 port 203 125823 unique_id port 125824 username hashtadani3 125824 mac 125824 bytes_out 0 125824 bytes_in 0 125824 station_ip 5.202.13.200 125824 port 210 125824 unique_id port 125824 remote_ip 10.8.0.154 125825 username hashtadani3 125825 kill_reason Maximum check online fails reached 125825 mac 125825 bytes_out 0 125825 bytes_in 0 125825 station_ip 5.202.13.200 125825 port 212 125825 unique_id port 125826 username barzegar 125826 mac 125826 bytes_out 0 125826 bytes_in 0 125826 station_ip 5.119.248.191 125826 port 120 125826 unique_id port 125826 remote_ip 10.8.1.174 125829 username barzegar 125829 mac 125829 bytes_out 0 125829 bytes_in 0 125829 station_ip 5.119.248.191 125829 port 120 125829 unique_id port 125829 remote_ip 10.8.1.174 125830 username barzegar 125830 mac 125830 bytes_out 0 125830 bytes_in 0 125830 station_ip 5.119.248.191 125830 port 120 125830 unique_id port 125830 remote_ip 10.8.1.174 125831 username ehsun 125831 mac 125831 bytes_out 0 125831 bytes_in 0 125831 station_ip 37.129.59.26 125831 port 210 125831 unique_id port 125831 remote_ip 10.8.0.162 125835 username hamid.e 125835 unique_id port 125835 terminate_cause User-Request 125835 bytes_out 6034549 125835 bytes_in 38049980 125835 station_ip 37.27.12.93 125835 port 15729979 125835 nas_port_type Virtual 125835 remote_ip 5.5.5.199 125836 username ehsun 125836 kill_reason Another user logged on this global unique id 125836 mac 125836 bytes_out 0 125836 bytes_in 0 125836 station_ip 46.225.209.208 125836 port 210 125836 unique_id port 125836 remote_ip 10.8.0.162 125842 username ehsun 125842 mac 125842 bytes_out 0 125842 bytes_in 0 125842 station_ip 46.225.209.208 125842 port 210 125842 unique_id port 125845 username barzegar 125845 mac 125845 bytes_out 0 125845 bytes_in 0 125814 remote_ip 10.8.0.22 125818 username mahdiyehalizadeh 125818 mac 125818 bytes_out 0 125818 bytes_in 0 125818 station_ip 37.129.216.40 125818 port 210 125818 unique_id port 125818 remote_ip 10.8.0.82 125820 username hashtadani3 125820 mac 125820 bytes_out 0 125820 bytes_in 0 125820 station_ip 5.202.13.200 125820 port 203 125820 unique_id port 125820 remote_ip 10.8.0.154 125827 username aminvpn 125827 mac 125827 bytes_out 0 125827 bytes_in 0 125827 station_ip 5.118.4.29 125827 port 213 125827 unique_id port 125827 remote_ip 10.8.0.14 125832 username mohsenaskari 125832 mac 125832 bytes_out 450485 125832 bytes_in 1385437 125832 station_ip 46.225.212.64 125832 port 205 125832 unique_id port 125832 remote_ip 10.8.0.246 125837 username hashtadani3 125837 mac 125837 bytes_out 0 125837 bytes_in 0 125837 station_ip 5.202.13.200 125837 port 120 125837 unique_id port 125837 remote_ip 10.8.1.94 125844 username mehdizare 125844 mac 125844 bytes_out 14716 125844 bytes_in 21184 125844 station_ip 5.119.165.187 125844 port 115 125844 unique_id port 125844 remote_ip 10.8.1.42 125846 username hashtadani3 125846 mac 125846 bytes_out 0 125846 bytes_in 0 125846 station_ip 5.202.13.200 125846 port 169 125846 unique_id port 125846 remote_ip 10.8.0.154 125847 username hashtadani3 125847 mac 125847 bytes_out 0 125847 bytes_in 0 125847 station_ip 5.202.13.200 125847 port 169 125847 unique_id port 125847 remote_ip 10.8.0.154 125852 username barzegar 125852 mac 125852 bytes_out 0 125852 bytes_in 0 125852 station_ip 5.119.248.191 125852 port 210 125852 unique_id port 125852 remote_ip 10.8.0.234 125853 username barzegar 125853 mac 125853 bytes_out 0 125853 bytes_in 0 125853 station_ip 5.119.248.191 125853 port 210 125853 unique_id port 125853 remote_ip 10.8.0.234 125855 username barzegar 125855 mac 125855 bytes_out 0 125855 bytes_in 0 125855 station_ip 5.119.248.191 125855 port 210 125855 unique_id port 125855 remote_ip 10.8.0.234 125856 username rostami 125856 kill_reason Another user logged on this global unique id 125856 mac 125856 bytes_out 0 125856 bytes_in 0 125856 station_ip 5.120.50.179 125856 port 199 125856 unique_id port 125856 remote_ip 10.8.0.194 125857 username mohammadjavad 125857 mac 125857 bytes_out 73979 125857 bytes_in 122796 125857 station_ip 83.122.42.66 125857 port 169 125857 unique_id port 125857 remote_ip 10.8.0.142 125860 username barzegar 125860 mac 125860 bytes_out 0 125860 bytes_in 0 125860 station_ip 5.119.248.191 125860 port 169 125860 unique_id port 125860 remote_ip 10.8.0.234 125863 username barzegar 63057 username arezoo 63057 kill_reason Maximum check online fails reached 63057 mac 5.237.90.234:49235: Unknown host 63057 bytes_out 0 63057 bytes_in 0 63057 station_ip 5.237.90.234:49235 63057 port 1018 63057 unique_id port 125863 mac 125863 bytes_out 0 125863 bytes_in 0 125863 station_ip 5.119.248.191 125863 port 169 125863 unique_id port 125863 remote_ip 10.8.0.234 125866 username hashtadani3 125866 mac 125866 bytes_out 0 125866 bytes_in 0 125866 station_ip 5.202.13.200 125866 port 169 125866 unique_id port 125866 remote_ip 10.8.0.154 125874 username barzegar 125874 mac 125874 bytes_out 3313 125874 bytes_in 5567 125874 station_ip 5.119.248.191 125874 port 188 125874 unique_id port 125874 remote_ip 10.8.0.234 125875 username barzegar 125875 mac 125875 bytes_out 10113 125875 bytes_in 11226 125875 station_ip 5.119.248.191 125875 port 188 125875 unique_id port 125838 unique_id port 125838 remote_ip 10.8.1.94 125839 username mehdizare 125839 mac 125839 bytes_out 1020740 125839 bytes_in 3772385 125839 station_ip 5.119.165.187 125839 port 115 125839 unique_id port 125839 remote_ip 10.8.1.42 125840 username malekpoir 125840 mac 125840 bytes_out 0 125840 bytes_in 0 125840 station_ip 5.119.182.142 125840 port 169 125840 unique_id port 125840 remote_ip 10.8.0.58 125841 username sabaghnezhad 125841 mac 125841 bytes_out 0 125841 bytes_in 0 125841 station_ip 37.129.46.147 125841 port 211 125841 unique_id port 125841 remote_ip 10.8.0.186 125843 username hashtadani3 125843 mac 125843 bytes_out 0 125843 bytes_in 0 125843 station_ip 5.202.13.200 125843 port 169 125843 unique_id port 125843 remote_ip 10.8.0.154 125858 username hosseine 125858 mac 125858 bytes_out 0 125858 bytes_in 0 125858 station_ip 83.123.21.247 125858 port 188 125858 unique_id port 125861 username sabaghnezhad 125861 mac 125861 bytes_out 0 125861 bytes_in 0 125861 station_ip 37.129.46.147 125861 port 120 125861 unique_id port 125861 remote_ip 10.8.1.130 125862 username aminvpn 125862 mac 125862 bytes_out 594497 125862 bytes_in 3483681 125862 station_ip 5.118.4.185 125862 port 210 125862 unique_id port 125862 remote_ip 10.8.0.14 125864 username forozande 125864 mac 125864 bytes_out 0 125864 bytes_in 0 125864 station_ip 83.123.173.32 125864 port 196 125864 unique_id port 125864 remote_ip 10.8.0.74 125867 username hashtadani3 125867 mac 125867 bytes_out 0 125867 bytes_in 0 125867 station_ip 5.202.13.200 125867 port 169 125867 unique_id port 125867 remote_ip 10.8.0.154 125869 username barzegar 125869 mac 125869 bytes_out 0 125869 bytes_in 0 125869 station_ip 5.119.248.191 125869 port 188 125869 unique_id port 125869 remote_ip 10.8.0.234 125872 username aminvpn 125872 unique_id port 125872 terminate_cause User-Request 125872 bytes_out 1376418 125872 bytes_in 12760351 125872 station_ip 109.125.128.116 125872 port 15729983 125872 nas_port_type Virtual 125872 remote_ip 5.5.5.4 125873 username hashtadani3 125873 mac 125873 bytes_out 0 125873 bytes_in 0 125873 station_ip 5.202.13.200 125873 port 196 125873 unique_id port 125873 remote_ip 10.8.0.154 125877 username barzegar 125877 mac 125877 bytes_out 0 125877 bytes_in 0 125877 station_ip 5.119.248.191 125877 port 188 125877 unique_id port 125877 remote_ip 10.8.0.234 125878 username hashtadani3 125878 mac 125878 bytes_out 21898 125878 bytes_in 52722 125878 station_ip 5.202.13.200 63030 username arezoo 63030 kill_reason Maximum check online fails reached 63030 mac 5.237.90.234:49288: Unknown host 63030 bytes_out 0 63030 bytes_in 0 63030 station_ip 5.237.90.234:49288 63030 port 1018 63030 unique_id port 125878 port 214 125878 unique_id port 125878 remote_ip 10.8.0.154 125881 username barzegar 125881 mac 125881 bytes_out 2399 125881 bytes_in 4690 125881 station_ip 5.119.248.191 125881 port 196 125881 unique_id port 125881 remote_ip 10.8.0.234 125882 username hashtadani3 125882 mac 125882 bytes_out 0 125882 bytes_in 0 125882 station_ip 5.202.13.200 125882 port 196 125882 unique_id port 125882 remote_ip 10.8.0.154 125887 username mostafa_es78 125887 mac 125887 bytes_out 282556 125887 bytes_in 751556 125887 station_ip 178.236.35.96 125887 port 210 125887 unique_id port 125887 remote_ip 10.8.0.198 125892 username hashtadani3 125892 mac 125892 bytes_out 0 125892 bytes_in 0 125892 station_ip 5.202.13.200 125892 port 196 125845 station_ip 5.119.248.191 125845 port 169 125845 unique_id port 125845 remote_ip 10.8.0.234 125848 username hashtadani3 125848 mac 125848 bytes_out 0 125848 bytes_in 0 125848 station_ip 5.202.13.200 125848 port 169 125848 unique_id port 125848 remote_ip 10.8.0.154 125849 username barzegar 125849 mac 125849 bytes_out 0 125849 bytes_in 0 125849 station_ip 5.119.248.191 125849 port 169 125849 unique_id port 125849 remote_ip 10.8.0.234 125850 username mostafa_es78 125850 unique_id port 125850 terminate_cause User-Request 125850 bytes_out 80470 125850 bytes_in 121224 125850 station_ip 5.125.234.38 125850 port 15729981 125850 nas_port_type Virtual 125850 remote_ip 5.5.5.209 125851 username hashtadani3 125851 mac 125851 bytes_out 0 125851 bytes_in 0 125851 station_ip 5.202.13.200 125851 port 210 125851 unique_id port 125851 remote_ip 10.8.0.154 125854 username hashtadani3 125854 mac 125854 bytes_out 0 125854 bytes_in 0 125854 station_ip 5.202.13.200 125854 port 210 125854 unique_id port 125854 remote_ip 10.8.0.154 125859 username barzegar 125859 mac 125859 bytes_out 0 125859 bytes_in 0 125859 station_ip 5.119.248.191 125859 port 169 125859 unique_id port 125859 remote_ip 10.8.0.234 125865 username sabaghnezhad 125865 mac 125865 bytes_out 77256 125865 bytes_in 23884 125865 station_ip 37.129.46.147 125865 port 115 125865 unique_id port 125865 remote_ip 10.8.1.130 125868 username alihosseini1 125868 mac 125868 bytes_out 2594675 125868 bytes_in 27625360 125868 station_ip 5.119.210.121 125868 port 205 125868 unique_id port 125868 remote_ip 10.8.0.166 125870 username hashtadani3 125870 mac 125870 bytes_out 0 125870 bytes_in 0 125870 station_ip 5.202.13.200 125870 port 188 125870 unique_id port 125870 remote_ip 10.8.0.154 125871 username alirezazadeh 125871 unique_id port 125871 terminate_cause Lost-Carrier 125871 bytes_out 9094950 125871 bytes_in 7671433 125871 station_ip 5.119.163.71 125871 port 15729980 125871 nas_port_type Virtual 125871 remote_ip 5.5.5.203 125876 username ehsun 125876 mac 125876 bytes_out 0 125876 bytes_in 0 125876 station_ip 46.225.209.208 125876 port 196 125876 unique_id port 125876 remote_ip 10.8.0.162 125879 username barzegar 125879 mac 125879 bytes_out 0 125879 bytes_in 0 125879 station_ip 5.119.248.191 125879 port 196 125879 unique_id port 125879 remote_ip 10.8.0.234 125880 username mohammadjavad 125880 mac 125880 bytes_out 252027 125880 bytes_in 4889891 125880 station_ip 83.122.199.24 125880 port 210 125880 unique_id port 125880 remote_ip 10.8.0.142 125884 username rostami 125884 kill_reason Another user logged on this global unique id 125884 mac 125884 bytes_out 0 125884 bytes_in 0 125884 station_ip 5.120.50.179 125884 port 199 125884 unique_id port 125885 username barzegar 125885 mac 125885 bytes_out 0 125885 bytes_in 0 125885 station_ip 5.119.248.191 125885 port 188 125885 unique_id port 125885 remote_ip 10.8.0.234 125889 username forozande 125889 mac 125889 bytes_out 0 125889 bytes_in 0 63066 username gohar 63066 kill_reason Maximum check online fails reached 63066 mac 5.237.78.119:53174: Unknown host 63066 bytes_out 0 63066 bytes_in 0 63066 station_ip 5.237.78.119:53174 63066 port 1018 125889 station_ip 83.122.12.15 125889 port 214 125889 unique_id port 125889 remote_ip 10.8.0.74 125891 username hashtadani3 125891 kill_reason Another user logged on this global unique id 125891 mac 125891 bytes_out 0 125891 bytes_in 0 125891 station_ip 5.202.13.200 125891 port 196 125891 unique_id port 125891 remote_ip 10.8.0.154 125875 remote_ip 10.8.0.234 125883 username forozande 125883 mac 125883 bytes_out 115469 125883 bytes_in 287749 125883 station_ip 83.123.252.243 125883 port 188 125883 unique_id port 125883 remote_ip 10.8.0.74 125886 username barzegar 125886 mac 125886 bytes_out 0 125886 bytes_in 0 125886 station_ip 5.119.248.191 125886 port 188 125886 unique_id port 125886 remote_ip 10.8.0.234 125888 username alireza 125888 unique_id port 125888 terminate_cause User-Request 125888 bytes_out 15406291 125888 bytes_in 36814526 125888 station_ip 5.119.178.73 125888 port 15729982 125888 nas_port_type Virtual 125888 remote_ip 5.5.5.212 125890 username mohsenaskari 125890 mac 125890 bytes_out 486069 125890 bytes_in 1886715 125890 station_ip 46.225.212.64 125890 port 213 125890 unique_id port 125890 remote_ip 10.8.0.246 125894 username rostami 125894 mac 125894 bytes_out 0 125894 bytes_in 0 125894 station_ip 5.120.50.179 125894 port 199 125894 unique_id port 125898 username sabaghnezhad 125898 mac 125898 bytes_out 295727 125898 bytes_in 312504 125898 station_ip 37.129.46.147 125898 port 169 125898 unique_id port 125898 remote_ip 10.8.0.186 125900 username alihosseini1 125900 kill_reason Another user logged on this global unique id 125900 mac 125900 bytes_out 0 125900 bytes_in 0 125900 station_ip 5.119.33.127 125900 port 215 125900 unique_id port 125900 remote_ip 10.8.0.166 125903 username malekpoir 125903 mac 125903 bytes_out 0 125903 bytes_in 0 125903 station_ip 5.119.182.142 125903 port 121 125903 unique_id port 125903 remote_ip 10.8.1.54 125910 username barzegar 125910 mac 125910 bytes_out 0 125910 bytes_in 0 125910 station_ip 5.119.248.191 63064 username gohar 63064 kill_reason Wrong password 63064 mac 5.237.78.199:49555: Unknown host 63064 bytes_out 0 63064 bytes_in 0 63064 station_ip 5.237.78.199:49555 63064 port 1018 63064 unique_id port 63066 unique_id port 125910 port 210 125910 unique_id port 125910 remote_ip 10.8.0.234 125911 username morteza 125911 mac 125911 bytes_out 205765 125911 bytes_in 2952419 125911 station_ip 37.129.56.252 125911 port 199 125911 unique_id port 125911 remote_ip 10.8.0.46 125912 username barzegar 125912 mac 125912 bytes_out 0 125912 bytes_in 0 125912 station_ip 5.119.248.191 63069 username gohar 63069 kill_reason Another user logged on this global unique id 63069 mac 5.237.79.98:56401: Unknown host 63069 bytes_out 0 63069 bytes_in 0 63069 station_ip 5.237.79.98:56401 63069 port 1018 63069 unique_id port 125912 port 115 125912 unique_id port 125912 remote_ip 10.8.1.174 125917 username ahmadipour 125917 unique_id port 125917 terminate_cause Lost-Carrier 125917 bytes_out 274574 125917 bytes_in 3024985 63071 username gohar 63071 kill_reason Another user logged on this global unique id 63071 mac 5.237.79.98:56550: Unknown host 63071 bytes_out 0 63071 bytes_in 0 63071 station_ip 5.237.79.98:56550 63071 port 1018 63071 unique_id port 63072 username gohar 63072 kill_reason Maximum check online fails reached 63072 mac 5.237.79.98:56654: Unknown host 63072 bytes_out 0 63072 bytes_in 0 63072 station_ip 5.237.79.98:56654 63072 port 1018 63072 unique_id port 63073 username gohar 63073 kill_reason Maximum check online fails reached 63073 mac 5.237.79.98:56879: Unknown host 63073 bytes_out 0 63073 bytes_in 0 63073 station_ip 5.237.79.98:56879 63073 port 1018 63073 unique_id port 125917 station_ip 113.203.78.96 125917 port 15729985 125917 nas_port_type Virtual 125917 remote_ip 5.5.5.167 125926 username amirabbas 125926 unique_id port 125926 terminate_cause User-Request 125926 bytes_out 1493565 125926 bytes_in 27900487 125926 station_ip 188.245.90.139 63074 username gohar 63074 kill_reason Wrong password 63074 mac 5.237.89.239:58746: Unknown host 63074 bytes_out 0 63074 bytes_in 0 63074 station_ip 5.237.89.239:58746 63074 port 1018 63074 unique_id port 125892 unique_id port 125896 username hashtadani3 125896 mac 125896 bytes_out 230981 125896 bytes_in 1591063 125896 station_ip 5.202.0.228 125896 port 196 125896 unique_id port 63078 username gohar 63078 kill_reason Wrong password 63078 mac 5.210.228.80:10846: Unknown host 63078 bytes_out 0 63078 bytes_in 0 63078 station_ip 5.210.228.80:10846 63078 port 1018 63078 unique_id port 63079 username gohar 63079 kill_reason Maximum check online fails reached 63079 mac 5.210.228.80:11208: Unknown host 63079 bytes_out 0 63079 bytes_in 0 63079 station_ip 5.210.228.80:11208 63079 port 1018 63079 unique_id port 125896 remote_ip 10.8.0.154 125897 username barzegar 125897 mac 125897 bytes_out 4175 125897 bytes_in 5486 125897 station_ip 5.119.248.191 125897 port 199 125897 unique_id port 125897 remote_ip 10.8.0.234 125899 username mohammadmahdi 125899 mac 125899 bytes_out 0 125899 bytes_in 0 125899 station_ip 5.120.142.69 125899 port 211 125899 unique_id port 125899 remote_ip 10.8.0.54 125904 username mohammadmahdi 125904 mac 125904 bytes_out 0 125904 bytes_in 0 125904 station_ip 5.120.142.69 125904 port 210 125904 unique_id port 125904 remote_ip 10.8.0.54 125906 username malekpoir 125906 mac 125906 bytes_out 0 125906 bytes_in 0 125906 station_ip 5.119.182.142 125906 port 199 125906 unique_id port 125906 remote_ip 10.8.0.58 125909 username morteza 125909 mac 125909 bytes_out 0 125909 bytes_in 0 125909 station_ip 37.129.56.252 125909 port 199 125909 unique_id port 125909 remote_ip 10.8.0.46 125914 username barzegar 125914 mac 125914 bytes_out 0 125914 bytes_in 0 125914 station_ip 5.119.248.191 125914 port 211 125914 unique_id port 125914 remote_ip 10.8.0.234 125916 username alihosseini1 125916 mac 125916 bytes_out 5801 125916 bytes_in 15178 125916 station_ip 5.119.33.127 125916 port 115 125916 unique_id port 63098 username arezoo 63098 kill_reason Maximum check online fails reached 63098 mac 5.237.90.234:62976: Unknown host 63098 bytes_out 0 63098 bytes_in 0 63098 station_ip 5.237.90.234:62976 63098 port 1018 63098 unique_id port 125916 remote_ip 10.8.1.106 125918 username alihosseini1 125918 mac 125918 bytes_out 77486 125918 bytes_in 802521 125918 station_ip 5.119.33.127 125918 port 115 125918 unique_id port 125918 remote_ip 10.8.1.106 125919 username forozande 125919 mac 125919 bytes_out 0 125919 bytes_in 0 125919 station_ip 37.129.53.254 125919 port 199 125919 unique_id port 125919 remote_ip 10.8.0.74 125921 username aminvpn 125921 mac 125921 bytes_out 1266175 125921 bytes_in 14249253 125921 station_ip 83.123.103.139 125921 port 188 125921 unique_id port 125921 remote_ip 10.8.0.14 125924 username alihosseini1 125924 mac 125924 bytes_out 32458 125924 bytes_in 56668 125924 station_ip 5.119.33.127 125924 port 115 125924 unique_id port 125924 remote_ip 10.8.1.106 125925 username barzegar 125925 mac 125925 bytes_out 0 125925 bytes_in 0 125925 station_ip 5.119.248.191 125925 port 115 125925 unique_id port 125925 remote_ip 10.8.1.174 125927 username mohammadmahdi 125927 mac 125927 bytes_out 0 125927 bytes_in 0 125927 station_ip 5.120.142.69 125927 port 196 125927 unique_id port 125927 remote_ip 10.8.0.54 125929 username morteza 125929 mac 125929 bytes_out 0 125929 bytes_in 0 125929 station_ip 37.129.10.108 125929 port 196 125893 username hashtadani3 125893 mac 125893 bytes_out 0 125893 bytes_in 0 125893 station_ip 83.122.34.113 125893 port 210 125893 unique_id port 125893 remote_ip 10.8.0.154 125895 username barzegar 125895 mac 125895 bytes_out 0 125895 bytes_in 0 125895 station_ip 5.119.248.191 125895 port 115 125895 unique_id port 125895 remote_ip 10.8.1.174 125901 username mohammadmahdi 125901 mac 125901 bytes_out 933096 125901 bytes_in 390761 125901 station_ip 5.120.142.69 125901 port 199 125901 unique_id port 125901 remote_ip 10.8.0.54 125902 username alihosseini1 125902 mac 125902 bytes_out 0 125902 bytes_in 0 125902 station_ip 5.119.33.127 125902 port 215 125902 unique_id port 125905 username barzegar 125905 mac 125905 bytes_out 0 125905 bytes_in 0 125905 station_ip 5.119.248.191 125905 port 196 125905 unique_id port 125905 remote_ip 10.8.0.234 125907 username forozande 125907 mac 125907 bytes_out 0 125907 bytes_in 0 125907 station_ip 83.122.12.15 125907 port 188 125907 unique_id port 125907 remote_ip 10.8.0.74 125908 username barzegar 125908 mac 125908 bytes_out 0 125908 bytes_in 0 125908 station_ip 5.119.248.191 125908 port 115 125908 unique_id port 125908 remote_ip 10.8.1.174 125913 username sedighe 125913 mac 125913 bytes_out 0 125913 bytes_in 0 125913 station_ip 113.203.30.127 125913 port 210 125913 unique_id port 125913 remote_ip 10.8.0.146 125915 username barzegar 125915 mac 125915 bytes_out 0 125915 bytes_in 0 125915 station_ip 5.119.248.191 125915 port 210 125915 unique_id port 125915 remote_ip 10.8.0.234 125920 username alihosseini1 125920 mac 125920 bytes_out 0 125920 bytes_in 0 125920 station_ip 5.119.33.127 125920 port 199 125920 unique_id port 125920 remote_ip 10.8.0.166 125922 username forozande 125922 mac 125922 bytes_out 409317 125922 bytes_in 6961123 125922 station_ip 83.122.77.0 125922 port 199 125922 unique_id port 125922 remote_ip 10.8.0.74 125923 username forozande 125923 mac 125923 bytes_out 0 125923 bytes_in 0 125923 station_ip 83.122.77.0 125923 port 188 125923 unique_id port 125923 remote_ip 10.8.0.74 125930 username malekpoir 125930 mac 125930 bytes_out 593531 125930 bytes_in 1982127 125930 station_ip 5.119.182.142 125930 port 120 125930 unique_id port 125930 remote_ip 10.8.1.54 125934 username hamid.e 125934 unique_id port 125934 terminate_cause User-Request 125934 bytes_out 1347208 125934 bytes_in 25336826 125934 station_ip 37.27.12.93 125934 port 15729986 125934 nas_port_type Virtual 125934 remote_ip 5.5.5.168 125941 username barzegar 125941 mac 125941 bytes_out 0 125941 bytes_in 0 125941 station_ip 5.119.248.191 125941 port 214 125941 unique_id port 125941 remote_ip 10.8.0.234 125942 username barzegar 125942 mac 125942 bytes_out 0 125942 bytes_in 0 125942 station_ip 5.119.248.191 125942 port 214 125942 unique_id port 125942 remote_ip 10.8.0.234 125946 username forozande 125946 mac 125946 bytes_out 0 125946 bytes_in 0 125946 station_ip 83.122.253.46 125946 port 213 125946 unique_id port 125946 remote_ip 10.8.0.74 125948 username malekpoir 125948 mac 125948 bytes_out 0 125948 bytes_in 0 125948 station_ip 5.119.182.142 125948 port 213 125948 unique_id port 125948 remote_ip 10.8.0.58 125949 username alihosseini1 125949 kill_reason Another user logged on this global unique id 125949 mac 125949 bytes_out 0 125949 bytes_in 0 125949 station_ip 5.120.89.72 125949 port 211 125949 unique_id port 125949 remote_ip 10.8.0.166 125926 port 15729984 125926 nas_port_type Virtual 125926 remote_ip 5.5.5.165 125928 username morteza 125928 mac 125928 bytes_out 0 125928 bytes_in 0 125928 station_ip 37.129.10.108 125928 port 188 125928 unique_id port 125928 remote_ip 10.8.0.46 125932 username barzegar 125932 mac 125932 bytes_out 0 125932 bytes_in 0 125932 station_ip 5.119.248.191 125932 port 121 125932 unique_id port 125932 remote_ip 10.8.1.174 125933 username malekpoir 125933 mac 125933 bytes_out 0 125933 bytes_in 0 125933 station_ip 5.119.182.142 125933 port 120 125933 unique_id port 125933 remote_ip 10.8.1.54 125935 username malekpoir 125935 mac 125935 bytes_out 0 125935 bytes_in 0 125935 station_ip 5.119.182.142 125935 port 188 125935 unique_id port 125935 remote_ip 10.8.0.58 125938 username barzegar 125938 kill_reason Maximum check online fails reached 125938 mac 125938 bytes_out 0 125938 bytes_in 0 125938 station_ip 5.119.248.191 125938 port 188 125938 unique_id port 125940 username mostafa_es78 125940 kill_reason Another user logged on this global unique id 125940 mac 125940 bytes_out 0 125940 bytes_in 0 125940 station_ip 178.236.35.96 125940 port 199 125940 unique_id port 125940 remote_ip 10.8.0.198 125944 username mostafa_es78 125944 mac 125944 bytes_out 0 125944 bytes_in 0 125944 station_ip 178.236.35.96 125944 port 199 125944 unique_id port 125945 username barzegar 125945 mac 125945 bytes_out 0 125945 bytes_in 0 125945 station_ip 5.119.248.191 125945 port 214 125945 unique_id port 125945 remote_ip 10.8.0.234 125953 username malekpoir 125953 mac 125953 bytes_out 766987 125953 bytes_in 8961835 125953 station_ip 5.119.182.142 125953 port 213 125953 unique_id port 125953 remote_ip 10.8.0.58 125956 username barzegar 125956 mac 125956 bytes_out 0 125956 bytes_in 0 125956 station_ip 5.119.248.191 125956 port 196 125956 unique_id port 125956 remote_ip 10.8.0.234 125957 username mahdiyehalizadeh 125957 mac 125957 bytes_out 2801513 125957 bytes_in 38315027 125957 station_ip 37.129.144.75 125957 port 215 125957 unique_id port 125957 remote_ip 10.8.0.82 125959 username alihosseini1 125959 mac 125959 bytes_out 0 125959 bytes_in 0 125959 station_ip 5.120.89.72 125959 port 211 125959 unique_id port 125960 username mohammadjavad 125960 mac 125960 bytes_out 863752 125960 bytes_in 16404551 125960 station_ip 37.129.91.15 125960 port 196 125960 unique_id port 125960 remote_ip 10.8.0.142 125962 username hashtadani3 125962 mac 125962 bytes_out 0 125962 bytes_in 0 125962 station_ip 83.122.34.113 125962 port 214 125962 unique_id port 125963 username mirzaei 125963 kill_reason Another user logged on this global unique id 125963 mac 125963 bytes_out 0 125963 bytes_in 0 125963 station_ip 5.120.175.250 125963 port 201 125963 unique_id port 125964 username barzegar 125964 mac 125964 bytes_out 0 125964 bytes_in 0 125964 station_ip 5.119.248.191 125964 port 196 125964 unique_id port 125964 remote_ip 10.8.0.234 125969 username hashtadani3 125969 mac 125969 bytes_out 0 125969 bytes_in 0 125969 station_ip 83.122.34.113 125969 port 196 125969 unique_id port 125969 remote_ip 10.8.0.154 125971 username hashtadani3 125971 mac 125971 bytes_out 0 125971 bytes_in 0 125971 station_ip 83.122.34.113 125971 port 196 125971 unique_id port 125971 remote_ip 10.8.0.154 125975 username barzegar 125975 mac 125975 bytes_out 5054 125975 bytes_in 6694 125975 station_ip 5.119.248.191 125975 port 213 125975 unique_id port 125929 unique_id port 125929 remote_ip 10.8.0.46 125931 username mostafa_es78 125931 unique_id port 125931 terminate_cause User-Request 125931 bytes_out 51564 125931 bytes_in 26212 125931 station_ip 178.236.35.96 125931 port 15729987 125931 nas_port_type Virtual 125931 remote_ip 5.5.5.169 125936 username barzegar 125936 mac 125936 bytes_out 0 125936 bytes_in 0 125936 station_ip 5.119.248.191 125936 port 120 125936 unique_id port 125936 remote_ip 10.8.1.174 125937 username aminvpn 125937 mac 125937 bytes_out 0 125937 bytes_in 0 125937 station_ip 83.123.103.139 125937 port 210 125937 unique_id port 125937 remote_ip 10.8.0.14 125939 username alihosseini1 125939 mac 125939 bytes_out 0 125939 bytes_in 0 125939 station_ip 5.120.99.226 125939 port 115 125939 unique_id port 125939 remote_ip 10.8.1.106 125943 username mirzaei 125943 kill_reason Another user logged on this global unique id 125943 mac 125943 bytes_out 0 125943 bytes_in 0 125943 station_ip 5.120.175.250 125943 port 201 125943 unique_id port 125947 username malekpoir 125947 mac 125947 bytes_out 414695 125947 bytes_in 1650078 125947 station_ip 5.119.182.142 125947 port 196 125947 unique_id port 125947 remote_ip 10.8.0.58 125955 username forozande 125955 mac 125955 bytes_out 54669 125955 bytes_in 157594 125955 station_ip 83.122.51.49 125955 port 196 125955 unique_id port 125955 remote_ip 10.8.0.74 125958 username hashtadani3 125958 kill_reason Another user logged on this global unique id 125958 mac 125958 bytes_out 0 125958 bytes_in 0 125958 station_ip 83.122.34.113 125958 port 214 125958 unique_id port 125972 username moradi 125972 mac 125972 bytes_out 83089 125972 bytes_in 94637 125972 station_ip 37.129.83.165 125972 port 213 125972 unique_id port 125972 remote_ip 10.8.0.250 125974 username mirzaei 125974 kill_reason Another user logged on this global unique id 125974 mac 125974 bytes_out 0 125974 bytes_in 0 125974 station_ip 5.120.175.250 125974 port 201 125974 unique_id port 125980 username moradi 125980 kill_reason Another user logged on this global unique id 125980 mac 125980 bytes_out 0 125980 bytes_in 0 125980 station_ip 37.129.83.165 125980 port 215 125980 unique_id port 125980 remote_ip 10.8.0.250 125983 username moradi 125983 kill_reason Another user logged on this global unique id 125983 mac 125983 bytes_out 0 125983 bytes_in 0 125983 station_ip 37.129.83.165 125983 port 215 125983 unique_id port 125993 username hashtadani3 125993 mac 125993 bytes_out 0 125993 bytes_in 0 125993 station_ip 83.122.34.113 125993 port 120 125993 unique_id port 125993 remote_ip 10.8.1.94 125998 username hashtadani3 125998 mac 125998 bytes_out 0 125998 bytes_in 0 125998 station_ip 83.122.34.113 125998 port 205 125998 unique_id port 125998 remote_ip 10.8.0.154 126002 username hashtadani3 126002 mac 126002 bytes_out 0 126002 bytes_in 0 126002 station_ip 83.122.34.113 126002 port 205 126002 unique_id port 126002 remote_ip 10.8.0.154 126004 username moradi 126004 mac 126004 bytes_out 0 126004 bytes_in 0 126004 station_ip 37.129.83.165 126004 port 215 126004 unique_id port 126005 username forozande 126005 mac 126005 bytes_out 0 126005 bytes_in 0 126005 station_ip 83.122.39.168 126005 port 196 126005 unique_id port 126005 remote_ip 10.8.0.74 126006 username hashtadani3 126006 mac 126006 bytes_out 0 126006 bytes_in 0 126006 station_ip 83.122.34.113 126006 port 120 126006 unique_id port 126006 remote_ip 10.8.1.94 126008 username barzegar 126008 mac 126008 bytes_out 0 126008 bytes_in 0 125950 username forozande 125950 mac 125950 bytes_out 0 125950 bytes_in 0 125950 station_ip 113.203.51.61 125950 port 196 125950 unique_id port 125950 remote_ip 10.8.0.74 125951 username mirzaei 125951 kill_reason Another user logged on this global unique id 125951 mac 125951 bytes_out 0 125951 bytes_in 0 125951 station_ip 5.120.175.250 125951 port 201 125951 unique_id port 125952 username barzegar 125952 mac 125952 bytes_out 81030 125952 bytes_in 73559 125952 station_ip 5.119.248.191 125952 port 199 125952 unique_id port 125952 remote_ip 10.8.0.234 125954 username hashtadani3 125954 kill_reason Another user logged on this global unique id 125954 mac 125954 bytes_out 0 125954 bytes_in 0 125954 station_ip 83.122.34.113 125954 port 214 125954 unique_id port 125954 remote_ip 10.8.0.154 125961 username barzegar 125961 mac 125961 bytes_out 3052 125961 bytes_in 5076 125961 station_ip 5.119.248.191 125961 port 211 125961 unique_id port 125961 remote_ip 10.8.0.234 125965 username hashtadani3 125965 mac 125965 bytes_out 0 125965 bytes_in 0 125965 station_ip 83.122.34.113 125965 port 211 125965 unique_id port 125965 remote_ip 10.8.0.154 125966 username mohammadmahdi 125966 mac 125966 bytes_out 0 125966 bytes_in 0 125966 station_ip 5.120.142.69 125966 port 213 125966 unique_id port 125966 remote_ip 10.8.0.54 63154 username gohar 63154 kill_reason Maximum check online fails reached 63154 mac 5.237.101.16:49575: Unknown host 63154 bytes_out 0 63154 bytes_in 0 63154 station_ip 5.237.101.16:49575 63154 port 1018 63154 unique_id port 125967 username hashtadani3 125967 mac 125967 bytes_out 0 125967 bytes_in 0 125967 station_ip 83.122.34.113 125967 port 196 125967 unique_id port 125967 remote_ip 10.8.0.154 63156 username arezoo 63156 kill_reason Maximum check online fails reached 63156 mac 5.238.61.53:49179: Unknown host 63156 bytes_out 0 63156 bytes_in 0 63156 station_ip 5.238.61.53:49179 63156 port 1018 63156 unique_id port 125968 username barzegar 125968 mac 125968 bytes_out 0 125968 bytes_in 0 125968 station_ip 5.119.248.191 125968 port 213 125968 unique_id port 125968 remote_ip 10.8.0.234 125970 username hashtadani3 125970 mac 125970 bytes_out 2807 125970 bytes_in 4834 125970 station_ip 83.122.34.113 125970 port 196 125970 unique_id port 125970 remote_ip 10.8.0.154 125973 username barzegar 125973 mac 125973 bytes_out 0 125973 bytes_in 0 125973 station_ip 5.119.248.191 125973 port 214 125973 unique_id port 125973 remote_ip 10.8.0.234 125978 username hashtadani3 125978 kill_reason Another user logged on this global unique id 125978 mac 125978 bytes_out 0 125978 bytes_in 0 125978 station_ip 83.122.34.113 125978 port 196 125978 unique_id port 125978 remote_ip 10.8.0.154 125979 username mohammadmahdi 125979 kill_reason Another user logged on this global unique id 125979 mac 125979 bytes_out 0 125979 bytes_in 0 125979 station_ip 5.120.142.69 125979 port 211 125979 unique_id port 125979 remote_ip 10.8.0.54 125981 username barzegar 125981 mac 125981 bytes_out 4179 125981 bytes_in 6693 125981 station_ip 5.119.248.191 125981 port 199 125981 unique_id port 125981 remote_ip 10.8.0.234 125982 username hashtadani3 125982 kill_reason Another user logged on this global unique id 125982 mac 125982 bytes_out 0 125982 bytes_in 0 125982 station_ip 83.122.34.113 125982 port 196 125982 unique_id port 125985 username barzegar 125985 mac 125985 bytes_out 0 125985 bytes_in 0 125985 station_ip 5.119.248.191 125985 port 115 125985 unique_id port 125985 remote_ip 10.8.1.174 125986 username hashtadani3 125975 remote_ip 10.8.0.234 125976 username malekpoir 125976 mac 125976 bytes_out 50155 125976 bytes_in 63117 125976 station_ip 5.119.182.142 125976 port 199 125976 unique_id port 125976 remote_ip 10.8.0.58 125977 username barzegar 125977 mac 125977 bytes_out 0 125977 bytes_in 0 125977 station_ip 5.119.248.191 125977 port 199 125977 unique_id port 125977 remote_ip 10.8.0.234 125984 username malekpoir 125984 mac 125984 bytes_out 14061 125984 bytes_in 18440 125984 station_ip 5.119.182.142 125984 port 213 125984 unique_id port 125984 remote_ip 10.8.0.58 125987 username hamidsalari 125987 mac 125987 bytes_out 4674557 125987 bytes_in 40037291 125987 station_ip 5.120.92.215 125987 port 205 125987 unique_id port 125987 remote_ip 10.8.0.230 125989 username malekpoir 125989 mac 125989 bytes_out 6263 125989 bytes_in 6512 125989 station_ip 5.119.182.142 125989 port 213 125989 unique_id port 125989 remote_ip 10.8.0.58 125992 username hashtadani3 125992 mac 125992 bytes_out 0 125992 bytes_in 0 125992 station_ip 83.122.34.113 125992 port 120 125992 unique_id port 125992 remote_ip 10.8.1.94 125996 username hashtadani3 125996 mac 125996 bytes_out 0 125996 bytes_in 0 125996 station_ip 83.122.34.113 125996 port 120 125996 unique_id port 125996 remote_ip 10.8.1.94 125997 username mohammadmahdi 125997 kill_reason Another user logged on this global unique id 125997 mac 125997 bytes_out 0 125997 bytes_in 0 125997 station_ip 5.120.142.69 125997 port 211 125997 unique_id port 126000 username sobhan 126000 unique_id port 126000 terminate_cause Lost-Carrier 126000 bytes_out 8268032 126000 bytes_in 169258706 126000 station_ip 46.100.220.13 126000 port 15729988 126000 nas_port_type Virtual 126000 remote_ip 5.5.5.172 126001 username hashtadani3 126001 mac 126001 bytes_out 0 126001 bytes_in 0 126001 station_ip 83.122.34.113 126001 port 205 126001 unique_id port 126001 remote_ip 10.8.0.154 126010 username hashtadani3 126010 mac 126010 bytes_out 0 126010 bytes_in 0 126010 station_ip 83.122.34.113 126010 port 120 126010 unique_id port 126010 remote_ip 10.8.1.94 126012 username moradi 126012 mac 126012 bytes_out 0 126012 bytes_in 0 126012 station_ip 37.129.83.165 126012 port 205 126012 unique_id port 126012 remote_ip 10.8.0.250 126013 username hashtadani3 126013 mac 126013 bytes_out 0 126013 bytes_in 0 126013 station_ip 83.122.34.113 126013 port 120 126013 unique_id port 126013 remote_ip 10.8.1.94 126018 username hashtadani3 126018 mac 126018 bytes_out 0 126018 bytes_in 0 126018 station_ip 83.122.34.113 126018 port 120 126018 unique_id port 126018 remote_ip 10.8.1.94 126020 username hashtadani3 126020 mac 126020 bytes_out 0 126020 bytes_in 0 126020 station_ip 83.122.34.113 126020 port 120 126020 unique_id port 126020 remote_ip 10.8.1.94 126029 username hashtadani3 126029 mac 126029 bytes_out 0 126029 bytes_in 0 126029 station_ip 83.122.34.113 126029 port 205 126029 unique_id port 126029 remote_ip 10.8.0.154 126030 username hashtadani3 126030 mac 126030 bytes_out 0 126030 bytes_in 0 126030 station_ip 83.122.34.113 126030 port 205 126030 unique_id port 126030 remote_ip 10.8.0.154 126031 username mahdiyehalizadeh 126031 mac 126031 bytes_out 410344 126031 bytes_in 5794219 126031 station_ip 83.122.69.45 126031 port 199 126031 unique_id port 126031 remote_ip 10.8.0.82 126034 username hashtadani3 126034 mac 126034 bytes_out 0 126034 bytes_in 0 126034 station_ip 83.122.34.113 126034 port 199 126034 unique_id port 125986 kill_reason Another user logged on this global unique id 125986 mac 125986 bytes_out 0 125986 bytes_in 0 125986 station_ip 83.122.34.113 125986 port 196 125986 unique_id port 125988 username hashtadani3 125988 mac 125988 bytes_out 0 125988 bytes_in 0 125988 station_ip 83.122.34.113 125988 port 196 125988 unique_id port 125990 username hashtadani3 125990 mac 125990 bytes_out 0 125990 bytes_in 0 125990 station_ip 83.122.34.113 125990 port 196 125990 unique_id port 125990 remote_ip 10.8.0.154 125991 username hashtadani3 125991 mac 125991 bytes_out 0 125991 bytes_in 0 125991 station_ip 83.122.34.113 125991 port 196 125991 unique_id port 125991 remote_ip 10.8.0.154 125994 username moradi 125994 kill_reason Another user logged on this global unique id 125994 mac 125994 bytes_out 0 125994 bytes_in 0 125994 station_ip 37.129.83.165 125994 port 215 125994 unique_id port 125995 username kordestani 125995 kill_reason Another user logged on this global unique id 125995 mac 125995 bytes_out 0 125995 bytes_in 0 125995 station_ip 151.235.82.189 125995 port 199 125995 unique_id port 125995 remote_ip 10.8.0.134 125999 username hashtadani3 125999 mac 125999 bytes_out 0 125999 bytes_in 0 125999 station_ip 83.122.34.113 125999 port 205 125999 unique_id port 125999 remote_ip 10.8.0.154 126003 username hashtadani3 126003 mac 126003 bytes_out 0 126003 bytes_in 0 126003 station_ip 83.122.34.113 126003 port 205 126003 unique_id port 126003 remote_ip 10.8.0.154 126007 username hashtadani3 126007 mac 126007 bytes_out 0 126007 bytes_in 0 126007 station_ip 83.122.34.113 126007 port 120 126007 unique_id port 126007 remote_ip 10.8.1.94 126009 username kordestani 126009 mac 126009 bytes_out 0 126009 bytes_in 0 126009 station_ip 151.235.82.189 126009 port 199 126009 unique_id port 126015 username hashtadani3 126015 mac 126015 bytes_out 7731 126015 bytes_in 15069 126015 station_ip 83.122.34.113 126015 port 120 126015 unique_id port 126015 remote_ip 10.8.1.94 126016 username hashtadani3 126016 mac 126016 bytes_out 0 126016 bytes_in 0 126016 station_ip 83.122.34.113 126016 port 120 126016 unique_id port 126016 remote_ip 10.8.1.94 126017 username sobhan 126017 unique_id port 126017 terminate_cause Lost-Carrier 126017 bytes_out 1318746 126017 bytes_in 23704125 126017 station_ip 5.119.180.148 126017 port 15729989 126017 nas_port_type Virtual 126017 remote_ip 5.5.5.174 126021 username alihosseini1 126021 kill_reason Another user logged on this global unique id 126021 mac 126021 bytes_out 0 126021 bytes_in 0 126021 station_ip 5.119.7.77 126021 port 214 126021 unique_id port 126021 remote_ip 10.8.0.166 126024 username hashtadani3 126024 mac 126024 bytes_out 0 126024 bytes_in 0 126024 station_ip 83.122.34.113 126024 port 205 126024 unique_id port 126024 remote_ip 10.8.0.154 126025 username barzegar 126025 mac 126025 bytes_out 0 126025 bytes_in 0 126025 station_ip 5.119.248.191 126025 port 215 126025 unique_id port 126025 remote_ip 10.8.0.234 126032 username sobhan 126032 unique_id port 126032 terminate_cause Lost-Carrier 126032 bytes_out 1652802 126032 bytes_in 15271393 126032 station_ip 5.119.180.148 126032 port 15729990 126032 nas_port_type Virtual 126032 remote_ip 5.5.5.184 126035 username hashtadani3 126035 mac 126035 bytes_out 0 126035 bytes_in 0 126035 station_ip 83.122.34.113 126035 port 120 126035 unique_id port 126035 remote_ip 10.8.1.94 126036 username forozande 126036 mac 126036 bytes_out 137852 126036 bytes_in 268225 126036 station_ip 37.129.214.170 126008 station_ip 5.119.248.191 126008 port 121 126008 unique_id port 126008 remote_ip 10.8.1.174 126011 username hashtadani3 126011 mac 126011 bytes_out 0 126011 bytes_in 0 126011 station_ip 83.122.34.113 126011 port 196 126011 unique_id port 126011 remote_ip 10.8.0.154 126014 username hashtadani3 126014 mac 126014 bytes_out 0 126014 bytes_in 0 126014 station_ip 83.122.34.113 126014 port 120 126014 unique_id port 126014 remote_ip 10.8.1.94 126019 username hashtadani3 126019 mac 126019 bytes_out 5316 126019 bytes_in 11164 126019 station_ip 83.122.34.113 126019 port 120 126019 unique_id port 126019 remote_ip 10.8.1.94 126022 username hashtadani3 126022 mac 126022 bytes_out 0 126022 bytes_in 0 126022 station_ip 83.122.34.113 126022 port 120 126022 unique_id port 126022 remote_ip 10.8.1.94 126023 username hashtadani3 126023 mac 126023 bytes_out 0 126023 bytes_in 0 126023 station_ip 83.122.34.113 126023 port 205 126023 unique_id port 126023 remote_ip 10.8.0.154 126026 username hashtadani3 126026 mac 126026 bytes_out 0 126026 bytes_in 0 126026 station_ip 83.122.34.113 126026 port 205 126026 unique_id port 126026 remote_ip 10.8.0.154 126027 username hashtadani3 126027 mac 126027 bytes_out 2588 126027 bytes_in 4865 126027 station_ip 83.122.34.113 126027 port 205 126027 unique_id port 126027 remote_ip 10.8.0.154 126028 username hashtadani3 126028 mac 126028 bytes_out 0 126028 bytes_in 0 126028 station_ip 83.122.34.113 126028 port 205 126028 unique_id port 126028 remote_ip 10.8.0.154 126033 username hashtadani3 126033 mac 126033 bytes_out 7576 126033 bytes_in 13320 126033 station_ip 83.122.34.113 126033 port 120 126033 unique_id port 126033 remote_ip 10.8.1.94 126048 username hashtadani3 126048 mac 126048 bytes_out 3278 126048 bytes_in 12996 126048 station_ip 83.122.34.113 126048 port 120 126048 unique_id port 126048 remote_ip 10.8.1.94 126049 username alihosseini1 126049 kill_reason Another user logged on this global unique id 126049 mac 126049 bytes_out 0 126049 bytes_in 0 126049 station_ip 5.119.7.77 126049 port 214 126049 unique_id port 126051 username barzegar 126051 mac 126051 bytes_out 0 126051 bytes_in 0 126051 station_ip 5.119.248.191 126051 port 216 126051 unique_id port 126051 remote_ip 10.8.0.234 126057 username hashtadani3 126057 mac 126057 bytes_out 5278 126057 bytes_in 10410 126057 station_ip 83.122.34.113 126057 port 205 126057 unique_id port 126057 remote_ip 10.8.0.154 126060 username mohammadmahdi 126060 kill_reason Another user logged on this global unique id 126060 mac 126060 bytes_out 0 126060 bytes_in 0 126060 station_ip 5.120.142.69 126060 port 211 126060 unique_id port 126061 username alihosseini1 126061 mac 126061 bytes_out 0 126061 bytes_in 0 126061 station_ip 5.119.7.77 126061 port 214 126061 unique_id port 126064 username hashtadani3 126064 mac 126064 bytes_out 0 126064 bytes_in 0 126064 station_ip 83.122.34.113 126064 port 120 126064 unique_id port 126064 remote_ip 10.8.1.94 126065 username hashtadani3 126065 mac 126065 bytes_out 0 126065 bytes_in 0 126065 station_ip 83.122.34.113 126065 port 205 126065 unique_id port 126065 remote_ip 10.8.0.154 126067 username mohammadjavad 126067 mac 126067 bytes_out 0 126067 bytes_in 0 126067 station_ip 83.123.221.118 126067 port 216 126067 unique_id port 126067 remote_ip 10.8.0.142 126074 username mohsenaskari 126074 mac 126074 bytes_out 0 126074 bytes_in 0 126074 station_ip 46.225.209.152 126034 remote_ip 10.8.0.154 126037 username hashtadani3 126037 mac 126037 bytes_out 0 126037 bytes_in 0 126037 station_ip 83.122.34.113 126037 port 199 126037 unique_id port 126037 remote_ip 10.8.0.154 126038 username hashtadani3 126038 mac 126038 bytes_out 0 126038 bytes_in 0 126038 station_ip 83.122.34.113 126038 port 199 126038 unique_id port 126038 remote_ip 10.8.0.154 126040 username hashtadani3 126040 mac 126040 bytes_out 0 126040 bytes_in 0 126040 station_ip 83.122.34.113 126040 port 120 126040 unique_id port 126040 remote_ip 10.8.1.94 126042 username alihosseini1 126042 kill_reason Another user logged on this global unique id 126042 mac 126042 bytes_out 0 126042 bytes_in 0 126042 station_ip 5.119.7.77 126042 port 214 126042 unique_id port 126044 username hashtadani3 126044 mac 126044 bytes_out 9019 126044 bytes_in 19987 126044 station_ip 83.122.34.113 126044 port 120 126044 unique_id port 126044 remote_ip 10.8.1.94 126045 username hashtadani3 126045 mac 126045 bytes_out 0 126045 bytes_in 0 126045 station_ip 83.122.34.113 126045 port 120 126045 unique_id port 126045 remote_ip 10.8.1.94 126046 username hashtadani3 126046 mac 126046 bytes_out 2172 126046 bytes_in 4527 126046 station_ip 83.122.34.113 126046 port 120 126046 unique_id port 126046 remote_ip 10.8.1.94 126047 username hashtadani3 126047 mac 126047 bytes_out 0 126047 bytes_in 0 126047 station_ip 83.122.34.113 126047 port 120 126047 unique_id port 126047 remote_ip 10.8.1.94 126052 username hashtadani3 126052 mac 126052 bytes_out 0 126052 bytes_in 0 126052 station_ip 83.122.34.113 126052 port 120 126052 unique_id port 126052 remote_ip 10.8.1.94 126053 username forozande 126053 mac 126053 bytes_out 0 126053 bytes_in 0 126053 station_ip 37.129.214.170 126053 port 205 126053 unique_id port 126053 remote_ip 10.8.0.74 126055 username hashtadani3 126055 mac 126055 bytes_out 0 126055 bytes_in 0 126055 station_ip 83.122.34.113 126055 port 205 126055 unique_id port 126055 remote_ip 10.8.0.154 126058 username kamali1 126058 mac 126058 bytes_out 148054 126058 bytes_in 231740 126058 station_ip 5.119.223.166 126058 port 215 126058 unique_id port 126058 remote_ip 10.8.0.70 126059 username hashtadani3 126059 mac 126059 bytes_out 0 126059 bytes_in 0 126059 station_ip 83.122.34.113 126059 port 205 126059 unique_id port 126059 remote_ip 10.8.0.154 126062 username hashtadani3 126062 mac 126062 bytes_out 2429 126062 bytes_in 4759 126062 station_ip 83.122.34.113 126062 port 205 126062 unique_id port 126062 remote_ip 10.8.0.154 126063 username hashtadani3 126063 mac 126063 bytes_out 0 126063 bytes_in 0 126063 station_ip 83.122.34.113 126063 port 120 126063 unique_id port 126063 remote_ip 10.8.1.94 126068 username hashtadani3 126068 mac 126068 bytes_out 0 126068 bytes_in 0 126068 station_ip 83.122.34.113 126068 port 205 126068 unique_id port 126068 remote_ip 10.8.0.154 126069 username hashtadani3 126069 mac 126069 bytes_out 0 126069 bytes_in 0 126069 station_ip 83.122.34.113 126069 port 205 126069 unique_id port 126069 remote_ip 10.8.0.154 126070 username hashtadani3 126070 mac 126070 bytes_out 0 126070 bytes_in 0 126070 station_ip 83.122.34.113 126070 port 205 126070 unique_id port 126070 remote_ip 10.8.0.154 126072 username barzegar 126072 mac 126072 bytes_out 0 126072 bytes_in 0 126072 station_ip 5.119.248.191 126072 port 121 126072 unique_id port 126072 remote_ip 10.8.1.174 126036 port 215 126036 unique_id port 126036 remote_ip 10.8.0.74 126039 username mohammadmahdi 126039 kill_reason Another user logged on this global unique id 126039 mac 126039 bytes_out 0 126039 bytes_in 0 126039 station_ip 5.120.142.69 126039 port 211 126039 unique_id port 126041 username barzegar 126041 mac 126041 bytes_out 0 126041 bytes_in 0 126041 station_ip 5.119.248.191 126041 port 199 126041 unique_id port 126041 remote_ip 10.8.0.234 126043 username irannezhad 126043 kill_reason Another user logged on this global unique id 126043 mac 126043 bytes_out 0 126043 bytes_in 0 126043 station_ip 5.217.216.246 126043 port 213 126043 unique_id port 126043 remote_ip 10.8.0.182 126050 username hashtadani3 126050 mac 126050 bytes_out 0 126050 bytes_in 0 126050 station_ip 83.122.34.113 126050 port 120 126050 unique_id port 126050 remote_ip 10.8.1.94 126054 username hashtadani3 126054 mac 126054 bytes_out 0 126054 bytes_in 0 126054 station_ip 83.122.34.113 126054 port 120 126054 unique_id port 126054 remote_ip 10.8.1.94 126056 username barzegar 126056 mac 126056 bytes_out 0 126056 bytes_in 0 126056 station_ip 5.119.248.191 126056 port 217 126056 unique_id port 126056 remote_ip 10.8.0.234 126066 username mohammadmahdi 126066 mac 126066 bytes_out 0 126066 bytes_in 0 126066 station_ip 5.120.142.69 126066 port 211 126066 unique_id port 126071 username hashtadani3 126071 mac 126071 bytes_out 0 126071 bytes_in 0 126071 station_ip 83.122.34.113 126071 port 120 126071 unique_id port 126071 remote_ip 10.8.1.94 126080 username hashtadani3 126080 mac 126080 bytes_out 0 126080 bytes_in 0 126080 station_ip 83.122.34.113 126080 port 199 126080 unique_id port 126080 remote_ip 10.8.0.154 126083 username rostami 126083 mac 126083 bytes_out 0 126083 bytes_in 0 126083 station_ip 5.120.50.179 126083 port 199 126083 unique_id port 126083 remote_ip 10.8.0.194 126084 username forozande 126084 mac 126084 bytes_out 0 126084 bytes_in 0 126084 station_ip 37.129.125.232 126084 port 205 126084 unique_id port 126084 remote_ip 10.8.0.74 126087 username mohammadjavad 126087 mac 126087 bytes_out 0 126087 bytes_in 0 126087 station_ip 37.129.165.253 126087 port 214 126087 unique_id port 126087 remote_ip 10.8.0.142 126092 username irannezhad 126092 mac 126092 bytes_out 0 126092 bytes_in 0 126092 station_ip 5.217.216.246 126092 port 199 126092 unique_id port 126092 remote_ip 10.8.0.182 126093 username barzegar 126093 mac 126093 bytes_out 0 126093 bytes_in 0 126093 station_ip 5.120.134.140 126093 port 199 126093 unique_id port 126093 remote_ip 10.8.0.234 126097 username hashtadani3 126097 kill_reason Another user logged on this global unique id 126097 mac 126097 bytes_out 0 126097 bytes_in 0 126097 station_ip 83.122.34.113 126097 port 211 126097 unique_id port 126097 remote_ip 10.8.0.154 126098 username irannezhad 126098 mac 126098 bytes_out 0 126098 bytes_in 0 126098 station_ip 5.217.216.246 126098 port 120 126098 unique_id port 126098 remote_ip 10.8.1.134 126100 username irannezhad 126100 mac 126100 bytes_out 0 126100 bytes_in 0 126100 station_ip 5.217.216.246 126100 port 205 126100 unique_id port 126100 remote_ip 10.8.0.182 126102 username forozande 126102 kill_reason Another user logged on this global unique id 126102 mac 126102 bytes_out 0 126102 bytes_in 0 126102 station_ip 83.122.114.194 126102 port 199 126102 unique_id port 126102 remote_ip 10.8.0.74 126115 username forozande 126115 mac 126115 bytes_out 0 126073 username hashtadani3 126073 mac 126073 bytes_out 2278 126073 bytes_in 4692 126073 station_ip 83.122.34.113 126073 port 120 126073 unique_id port 126073 remote_ip 10.8.1.94 126075 username mohammadmahdi 126075 mac 126075 bytes_out 0 126075 bytes_in 0 126075 station_ip 5.120.142.69 126075 port 214 126075 unique_id port 126075 remote_ip 10.8.0.54 126077 username hashtadani3 126077 mac 126077 bytes_out 5632 126077 bytes_in 11040 126077 station_ip 83.122.34.113 126077 port 120 126077 unique_id port 126077 remote_ip 10.8.1.94 126081 username hashtadani3 126081 mac 126081 bytes_out 0 126081 bytes_in 0 126081 station_ip 83.122.34.113 126081 port 199 126081 unique_id port 126081 remote_ip 10.8.0.154 126082 username hashtadani3 126082 mac 126082 bytes_out 0 126082 bytes_in 0 126082 station_ip 83.122.34.113 126082 port 199 126082 unique_id port 126082 remote_ip 10.8.0.154 126086 username irannezhad 126086 mac 126086 bytes_out 0 126086 bytes_in 0 126086 station_ip 5.217.216.246 126086 port 120 126086 unique_id port 126086 remote_ip 10.8.1.134 126095 username rostami 126095 mac 126095 bytes_out 0 126095 bytes_in 0 126095 station_ip 5.120.50.179 126095 port 213 126095 unique_id port 126095 remote_ip 10.8.0.194 126096 username irannezhad 126096 mac 126096 bytes_out 24949 126096 bytes_in 149311 126096 station_ip 5.217.216.246 126096 port 120 126096 unique_id port 126096 remote_ip 10.8.1.134 126099 username irannezhad 126099 mac 126099 bytes_out 0 126099 bytes_in 0 126099 station_ip 5.217.216.246 126099 port 205 126099 unique_id port 126099 remote_ip 10.8.0.182 126101 username irannezhad 126101 mac 126101 bytes_out 0 126101 bytes_in 0 126101 station_ip 5.217.216.246 126101 port 120 126101 unique_id port 126101 remote_ip 10.8.1.134 126106 username irannezhad 126106 mac 126106 bytes_out 0 126106 bytes_in 0 126106 station_ip 5.217.216.246 126106 port 205 126106 unique_id port 126106 remote_ip 10.8.0.182 126109 username forozande 126109 mac 126109 bytes_out 0 126109 bytes_in 0 126109 station_ip 83.122.114.194 126109 port 199 126109 unique_id port 126111 username irannezhad 126111 mac 126111 bytes_out 0 126111 bytes_in 0 126111 station_ip 5.217.216.246 126111 port 199 126111 unique_id port 126111 remote_ip 10.8.0.182 126113 username hashtadani3 126113 kill_reason Another user logged on this global unique id 126113 mac 126113 bytes_out 0 126113 bytes_in 0 126113 station_ip 83.122.34.113 126113 port 211 126113 unique_id port 126116 username mohammadjavad 126116 mac 126116 bytes_out 0 126116 bytes_in 0 126116 station_ip 83.123.150.48 126116 port 213 126116 unique_id port 126116 remote_ip 10.8.0.142 126123 username mohammadjavad 126123 mac 126123 bytes_out 1725828 126123 bytes_in 39246396 126123 station_ip 113.203.90.23 126123 port 213 126123 unique_id port 126123 remote_ip 10.8.0.142 126125 username hashtadani3 126125 kill_reason Another user logged on this global unique id 126125 mac 126125 bytes_out 0 126125 bytes_in 0 126125 station_ip 83.122.34.113 126125 port 211 126125 unique_id port 126126 username barzegar 126126 mac 126126 bytes_out 0 126126 bytes_in 0 126126 station_ip 5.120.158.94 126126 port 205 126126 unique_id port 126126 remote_ip 10.8.0.234 126131 username aminvpn 126131 mac 126131 bytes_out 3928887 126131 bytes_in 43672977 126131 station_ip 83.123.103.139 126131 port 210 126131 unique_id port 126131 remote_ip 10.8.0.14 126133 username asadi 126074 port 199 126074 unique_id port 126074 remote_ip 10.8.0.246 126076 username mahdiyehalizadeh 126076 mac 126076 bytes_out 0 126076 bytes_in 0 126076 station_ip 83.123.207.79 126076 port 211 126076 unique_id port 126076 remote_ip 10.8.0.82 126078 username hashtadani3 126078 mac 126078 bytes_out 0 126078 bytes_in 0 126078 station_ip 83.122.34.113 126078 port 199 126078 unique_id port 126078 remote_ip 10.8.0.154 126079 username hashtadani3 126079 mac 126079 bytes_out 0 126079 bytes_in 0 126079 station_ip 83.122.34.113 126079 port 199 126079 unique_id port 126079 remote_ip 10.8.0.154 126085 username irannezhad 126085 mac 126085 bytes_out 0 126085 bytes_in 0 126085 station_ip 5.217.216.246 126085 port 213 126085 unique_id port 126088 username irannezhad 126088 mac 126088 bytes_out 0 126088 bytes_in 0 126088 station_ip 5.217.216.246 126088 port 205 126088 unique_id port 126088 remote_ip 10.8.0.182 126089 username alihosseini1 126089 mac 126089 bytes_out 0 126089 bytes_in 0 126089 station_ip 5.120.8.228 126089 port 199 126089 unique_id port 126089 remote_ip 10.8.0.166 126090 username irannezhad 126090 mac 126090 bytes_out 0 126090 bytes_in 0 126090 station_ip 5.217.216.246 126090 port 199 126090 unique_id port 126090 remote_ip 10.8.0.182 126091 username irannezhad 126091 mac 126091 bytes_out 0 126091 bytes_in 0 126091 station_ip 5.217.216.246 126091 port 199 126091 unique_id port 126091 remote_ip 10.8.0.182 126094 username irannezhad 126094 mac 126094 bytes_out 0 126094 bytes_in 0 126094 station_ip 5.217.216.246 126094 port 120 126094 unique_id port 126094 remote_ip 10.8.1.134 126103 username irannezhad 126103 mac 126103 bytes_out 0 126103 bytes_in 0 126103 station_ip 5.217.216.246 126103 port 205 126103 unique_id port 126103 remote_ip 10.8.0.182 126104 username barzegar 126104 mac 126104 bytes_out 0 126104 bytes_in 0 126104 station_ip 5.120.134.140 126104 port 205 126104 unique_id port 126104 remote_ip 10.8.0.234 126105 username irannezhad 126105 mac 126105 bytes_out 0 126105 bytes_in 0 126105 station_ip 5.217.216.246 126105 port 205 126105 unique_id port 126105 remote_ip 10.8.0.182 126107 username irannezhad 126107 mac 126107 bytes_out 0 126107 bytes_in 0 126107 station_ip 5.217.216.246 126107 port 120 126107 unique_id port 126107 remote_ip 10.8.1.134 126108 username irannezhad 126108 mac 126108 bytes_out 0 126108 bytes_in 0 126108 station_ip 5.217.216.246 63296 username gohar 63296 kill_reason Wrong password 63296 mac 5.237.83.36:50551: Unknown host 63296 bytes_out 0 63296 bytes_in 0 63296 station_ip 5.237.83.36:50551 63296 port 1018 63296 unique_id port 63299 username gohar 63299 kill_reason Wrong password 63299 mac 5.237.83.36:51073: Unknown host 63299 bytes_out 0 63299 bytes_in 0 63299 station_ip 5.237.83.36:51073 63299 port 1018 63299 unique_id port 63301 username gohar 63301 kill_reason Wrong password 63301 mac 5.237.83.36:51653: Unknown host 63301 bytes_out 0 63301 bytes_in 0 63301 station_ip 5.237.83.36:51653 63301 port 1018 63301 unique_id port 126108 port 205 126108 unique_id port 126108 remote_ip 10.8.0.182 126110 username irannezhad 126110 mac 126110 bytes_out 0 126110 bytes_in 0 126110 station_ip 5.217.216.246 126110 port 199 126110 unique_id port 126110 remote_ip 10.8.0.182 126112 username barzegar 126112 mac 126112 bytes_out 2123 126112 bytes_in 3810 126112 station_ip 5.120.134.140 126112 port 199 126112 unique_id port 126112 remote_ip 10.8.0.234 126114 username mohammadjavad 126114 mac 126114 bytes_out 97226 126114 bytes_in 394566 126114 station_ip 83.123.150.48 126114 port 199 126114 unique_id port 126114 remote_ip 10.8.0.142 126118 username hashtadani3 126118 kill_reason Another user logged on this global unique id 126118 mac 126118 bytes_out 0 126118 bytes_in 0 126118 station_ip 83.122.34.113 126118 port 211 126118 unique_id port 126119 username hashtadani3 126119 kill_reason Another user logged on this global unique id 126119 mac 126119 bytes_out 0 126119 bytes_in 0 126119 station_ip 83.122.34.113 126119 port 211 126119 unique_id port 126129 username moradi 126129 mac 126129 bytes_out 34607 126129 bytes_in 55626 126129 station_ip 37.129.40.169 126129 port 205 126129 unique_id port 126129 remote_ip 10.8.0.250 126135 username hashtadani3 126135 mac 126135 bytes_out 0 126135 bytes_in 0 126135 station_ip 83.122.34.113 126135 port 211 126135 unique_id port 126139 username sedighe 126139 mac 126139 bytes_out 10314 126139 bytes_in 8926 126139 station_ip 83.122.36.84 126139 port 205 126139 unique_id port 63294 username gohar 63294 kill_reason Wrong password 63294 mac 5.237.83.36:50470: Unknown host 63294 bytes_out 0 63294 bytes_in 0 63294 station_ip 5.237.83.36:50470 63294 port 1018 63294 unique_id port 63297 username gohar 63297 kill_reason Wrong password 63297 mac 5.237.83.36:50998: Unknown host 63297 bytes_out 0 63297 bytes_in 0 63297 station_ip 5.237.83.36:50998 63297 port 1018 63297 unique_id port 63303 username gohar 63303 kill_reason Wrong password 63303 mac 5.237.83.36:54174: Unknown host 63303 bytes_out 0 63303 bytes_in 0 63303 station_ip 5.237.83.36:54174 63303 port 1018 63303 unique_id port 126139 remote_ip 10.8.0.146 126150 username hashtadani3 126150 mac 126150 bytes_out 1238714 126150 bytes_in 12172176 126150 station_ip 5.202.60.99 126150 port 169 126150 unique_id port 126150 remote_ip 10.8.0.154 126156 username hashtadani3 126156 mac 126156 bytes_out 0 126156 bytes_in 0 126156 station_ip 5.202.60.99 126156 port 169 126156 unique_id port 126156 remote_ip 10.8.0.154 126159 username mirzaei 126159 kill_reason Another user logged on this global unique id 126159 mac 126159 bytes_out 0 126159 bytes_in 0 126159 station_ip 5.120.175.250 126159 port 201 126159 unique_id port 126161 username hashtadani3 126161 mac 126161 bytes_out 0 126161 bytes_in 0 126161 station_ip 5.202.60.99 126161 port 211 126161 unique_id port 126161 remote_ip 10.8.0.154 126162 username forozande 126162 mac 126162 bytes_out 0 126162 bytes_in 0 126162 station_ip 83.123.121.38 126162 port 214 126162 unique_id port 126162 remote_ip 10.8.0.74 126165 username sedighe 126165 mac 126165 bytes_out 0 126165 bytes_in 0 126165 station_ip 37.129.182.204 126165 port 214 126165 unique_id port 126165 remote_ip 10.8.0.146 126167 username mosi 126167 mac 126167 bytes_out 0 126167 bytes_in 0 126167 station_ip 5.200.126.159 126167 port 213 126167 unique_id port 126167 remote_ip 10.8.0.138 126172 username mehdizare 126172 kill_reason Another user logged on this global unique id 126172 mac 126172 bytes_out 0 126172 bytes_in 0 126172 station_ip 5.120.97.150 126172 port 214 126172 unique_id port 126172 remote_ip 10.8.0.90 126176 username aminvpn 126176 unique_id port 126176 terminate_cause User-Request 126176 bytes_out 239577 126176 bytes_in 567495 126176 station_ip 109.125.170.42 126176 port 15729995 126176 nas_port_type Virtual 126176 remote_ip 5.5.5.144 126181 username mehdizare 126181 kill_reason Another user logged on this global unique id 126115 bytes_in 0 126115 station_ip 113.203.109.235 126115 port 205 126115 unique_id port 126115 remote_ip 10.8.0.74 126117 username moradi 126117 kill_reason Another user logged on this global unique id 126117 mac 126117 bytes_out 0 126117 bytes_in 0 126117 station_ip 37.129.40.169 126117 port 199 126117 unique_id port 126117 remote_ip 10.8.0.250 126120 username barzegar 126120 mac 126120 bytes_out 0 126120 bytes_in 0 126120 station_ip 5.120.158.94 126120 port 205 126120 unique_id port 126120 remote_ip 10.8.0.234 126121 username forozande 126121 mac 126121 bytes_out 89520 126121 bytes_in 509483 126121 station_ip 37.129.26.164 126121 port 205 126121 unique_id port 126121 remote_ip 10.8.0.74 126122 username barzegar 126122 mac 126122 bytes_out 0 126122 bytes_in 0 126122 station_ip 5.120.158.94 126122 port 214 126122 unique_id port 126122 remote_ip 10.8.0.234 126124 username sedighe 126124 mac 126124 bytes_out 111386 126124 bytes_in 242124 126124 station_ip 83.122.36.84 126124 port 205 126124 unique_id port 126124 remote_ip 10.8.0.146 126127 username moradi 126127 mac 126127 bytes_out 0 126127 bytes_in 0 126127 station_ip 37.129.40.169 126127 port 199 126127 unique_id port 126128 username sedighe 126128 mac 126128 bytes_out 355496 126128 bytes_in 616495 126128 station_ip 83.122.36.84 126128 port 213 126128 unique_id port 126128 remote_ip 10.8.0.146 126130 username sedighe 126130 mac 126130 bytes_out 112123 126130 bytes_in 199105 126130 station_ip 83.122.36.84 126130 port 199 126130 unique_id port 126130 remote_ip 10.8.0.146 126132 username asadi 126132 kill_reason Relative expiration date has reached 126132 mac 126132 bytes_out 0 126132 bytes_in 0 126132 station_ip 95.64.114.63 126132 port 205 126132 unique_id port 126134 username malekpoir 126134 mac 126134 bytes_out 0 63290 username gohar 63290 kill_reason Wrong password 63290 mac 5.237.83.36:49774: Unknown host 63290 bytes_out 0 63290 bytes_in 0 63290 station_ip 5.237.83.36:49774 63290 port 1018 63290 unique_id port 63292 username gohar 63292 kill_reason Wrong password 63292 mac 5.237.83.36:50003: Unknown host 63292 bytes_out 0 63292 bytes_in 0 63292 station_ip 5.237.83.36:50003 63292 port 1018 63292 unique_id port 63293 username gohar 63293 kill_reason Wrong password 63293 mac 5.237.83.36:50124: Unknown host 63293 bytes_out 0 63293 bytes_in 0 63293 station_ip 5.237.83.36:50124 63293 port 1018 63293 unique_id port 63295 username gohar 63295 kill_reason Wrong password 63295 mac 5.237.83.36:50514: Unknown host 63295 bytes_out 0 63295 bytes_in 0 63295 station_ip 5.237.83.36:50514 63295 port 1018 63295 unique_id port 126134 bytes_in 0 126134 station_ip 5.119.182.142 126134 port 115 126134 unique_id port 126134 remote_ip 10.8.1.54 126136 username hashtadani3 126136 mac 126136 bytes_out 0 126136 bytes_in 0 126136 station_ip 83.122.34.113 126136 port 210 126136 unique_id port 126136 remote_ip 10.8.0.154 126138 username hashtadani3 126138 mac 126138 bytes_out 0 126138 bytes_in 0 126138 station_ip 5.202.60.99 126138 port 210 126138 unique_id port 126138 remote_ip 10.8.0.154 126146 username hashtadani3 126146 mac 126146 bytes_out 0 126146 bytes_in 0 126146 station_ip 5.202.60.99 126146 port 210 126146 unique_id port 126146 remote_ip 10.8.0.154 126147 username forozande 126147 mac 126147 bytes_out 0 126147 bytes_in 0 126147 station_ip 113.203.106.190 126147 port 169 126147 unique_id port 126147 remote_ip 10.8.0.74 126152 username hashtadani3 126152 mac 126133 kill_reason Relative expiration date has reached 126133 mac 126133 bytes_out 0 126133 bytes_in 0 126133 station_ip 95.64.114.63 126133 port 205 126133 unique_id port 63314 username gohar 63314 kill_reason Another user logged on this global unique id 63314 mac 5.237.83.36:64612: Unknown host 63314 bytes_out 0 63314 bytes_in 0 63314 station_ip 5.237.83.36:64612 63314 port 1018 63314 unique_id port 126137 username hashtadani3 126137 mac 126137 bytes_out 0 126137 bytes_in 0 126137 station_ip 5.202.60.99 126137 port 210 126137 unique_id port 126137 remote_ip 10.8.0.154 63320 username gohar 63320 kill_reason Another user logged on this global unique id 63320 mac 5.237.83.36:49425: Unknown host 63320 bytes_out 0 63320 bytes_in 0 63320 station_ip 5.237.83.36:49425 63320 port 1018 63320 unique_id port 63324 username gohar 63324 kill_reason Wrong password 63324 mac 5.237.83.36:49691: Unknown host 63324 bytes_out 0 63324 bytes_in 0 63324 station_ip 5.237.83.36:49691 63324 port 1018 63324 unique_id port 126140 username malekpoir 126140 mac 126140 bytes_out 0 126140 bytes_in 0 126140 station_ip 5.119.182.142 126140 port 115 126140 unique_id port 126140 remote_ip 10.8.1.54 126141 username sedighe 126141 mac 126141 bytes_out 37007 126141 bytes_in 56722 126141 station_ip 83.122.178.38 126141 port 210 126141 unique_id port 126141 remote_ip 10.8.0.146 126142 username sedighe 126142 mac 126142 bytes_out 0 126142 bytes_in 0 126142 station_ip 83.122.178.38 126142 port 211 126142 unique_id port 126142 remote_ip 10.8.0.146 126143 username hashtadani3 126143 mac 126143 bytes_out 0 126143 bytes_in 0 126143 station_ip 5.202.60.99 126143 port 115 126143 unique_id port 126143 remote_ip 10.8.1.94 63342 username gohar 63342 kill_reason Maximum check online fails reached 63342 mac 5.106.171.165:12809: Unknown host 63342 bytes_out 0 63342 bytes_in 0 63342 station_ip 5.106.171.165:12809 63342 port 1018 63342 unique_id port 126144 username hashtadani3 126144 mac 126144 bytes_out 0 126144 bytes_in 0 126144 station_ip 5.202.60.99 126144 port 210 126144 unique_id port 126144 remote_ip 10.8.0.154 126145 username sabaghnezhad 126145 mac 126145 bytes_out 0 126145 bytes_in 0 126145 station_ip 37.129.46.147 126145 port 169 126145 unique_id port 126145 remote_ip 10.8.0.186 126148 username arabpour 126148 unique_id port 126148 terminate_cause User-Request 126148 bytes_out 0 126148 bytes_in 0 126148 station_ip 83.123.62.83 126148 port 15729992 126148 nas_port_type Virtual 126148 remote_ip 5.5.5.202 126149 username moradi 126149 mac 126149 bytes_out 65812 126149 bytes_in 86134 126149 station_ip 37.129.40.169 126149 port 213 126149 unique_id port 126149 remote_ip 10.8.0.250 126151 username moradi 126151 mac 126151 bytes_out 27075 126151 bytes_in 42475 126151 station_ip 37.129.40.169 126151 port 211 126151 unique_id port 126151 remote_ip 10.8.0.250 126153 username alihosseini1 126153 mac 126153 bytes_out 1759415 126153 bytes_in 19295011 126153 station_ip 5.120.159.127 126153 port 210 126153 unique_id port 126153 remote_ip 10.8.0.166 126155 username hashtadani3 126155 mac 126155 bytes_out 0 126155 bytes_in 0 126155 station_ip 5.202.60.99 126155 port 169 126155 unique_id port 126155 remote_ip 10.8.0.154 126158 username hashtadani3 126158 mac 126158 bytes_out 0 126158 bytes_in 0 126158 station_ip 5.202.60.99 126158 port 169 126158 unique_id port 126158 remote_ip 10.8.0.154 126163 username sedighe 126163 mac 126163 bytes_out 0 126163 bytes_in 0 126163 station_ip 83.122.178.38 126163 port 211 63315 username gohar 63315 kill_reason Another user logged on this global unique id 63315 mac 5.237.83.36:64695: Unknown host 63315 bytes_out 0 63315 bytes_in 0 63315 station_ip 5.237.83.36:64695 63315 port 1018 63315 unique_id port 63317 username gohar 63317 kill_reason Maximum check online fails reached 63317 mac 5.237.83.36:64757: Unknown host 63317 bytes_out 0 63317 bytes_in 0 63317 station_ip 5.237.83.36:64757 63317 port 1018 63317 unique_id port 63321 username gohar 63321 kill_reason Another user logged on this global unique id 63321 mac 5.237.83.36:49476: Unknown host 63321 bytes_out 0 63321 bytes_in 0 63321 station_ip 5.237.83.36:49476 63321 port 1018 63321 unique_id port 63322 username gohar 63322 kill_reason Another user logged on this global unique id 63322 mac 5.237.83.36:49512: Unknown host 63322 bytes_out 0 63322 bytes_in 0 63322 station_ip 5.237.83.36:49512 63322 port 1018 63322 unique_id port 63326 username gohar 63326 kill_reason Maximum check online fails reached 63326 mac 5.237.83.36:49788: Unknown host 63326 bytes_out 0 63326 bytes_in 0 63326 station_ip 5.237.83.36:49788 63326 port 1018 63326 unique_id port 126152 bytes_out 0 126152 bytes_in 0 126152 station_ip 5.202.60.99 126152 port 169 126152 unique_id port 126152 remote_ip 10.8.0.154 126154 username hashtadani3 126154 mac 126154 bytes_out 0 126154 bytes_in 0 126154 station_ip 5.202.60.99 126154 port 169 126154 unique_id port 126154 remote_ip 10.8.0.154 126157 username sedighe 126157 mac 126157 bytes_out 0 126157 bytes_in 0 126157 station_ip 83.122.178.38 126157 port 210 126157 unique_id port 126157 remote_ip 10.8.0.146 126160 username sedighe 126160 mac 126160 bytes_out 0 126160 bytes_in 0 126160 station_ip 83.122.178.38 126160 port 169 126160 unique_id port 126160 remote_ip 10.8.0.146 126166 username aminvpn 126166 unique_id port 126166 terminate_cause Lost-Carrier 126166 bytes_out 210138 126166 bytes_in 1082676 126166 station_ip 109.125.128.116 126166 port 15729993 126166 nas_port_type Virtual 126166 remote_ip 5.5.5.204 126168 username barzegar 126168 kill_reason Maximum check online fails reached 126168 mac 126168 bytes_out 0 126168 bytes_in 0 126168 station_ip 5.112.216.189 126168 port 213 126168 unique_id port 126173 username mohammadmahdi 126173 mac 126173 bytes_out 0 126173 bytes_in 0 126173 station_ip 5.120.142.69 126173 port 210 126173 unique_id port 126173 remote_ip 10.8.0.54 126174 username forozande 126174 mac 126174 bytes_out 0 126174 bytes_in 0 126174 station_ip 83.122.126.170 126174 port 216 126174 unique_id port 126174 remote_ip 10.8.0.74 126178 username barzegar 126178 mac 126178 bytes_out 0 126178 bytes_in 0 126178 station_ip 5.112.216.189 126178 port 210 126178 unique_id port 126178 remote_ip 10.8.0.234 126179 username sedighe 126179 mac 126179 bytes_out 0 126179 bytes_in 0 126179 station_ip 37.129.182.204 126179 port 210 126179 unique_id port 126179 remote_ip 10.8.0.146 126180 username aminvpn 126180 unique_id port 126180 terminate_cause Lost-Carrier 126180 bytes_out 21976 126180 bytes_in 18822 126180 station_ip 109.125.170.42 126180 port 15729996 126180 nas_port_type Virtual 126180 remote_ip 5.5.5.147 126182 username sedighe 126182 mac 126182 bytes_out 0 126182 bytes_in 0 126182 station_ip 37.129.182.204 126182 port 210 126182 unique_id port 126182 remote_ip 10.8.0.146 126189 username hashtadani3 126189 kill_reason Another user logged on this global unique id 126189 mac 126189 bytes_out 0 126189 bytes_in 0 126189 station_ip 5.202.60.99 126189 port 169 126189 unique_id port 126190 username hashtadani3 126190 mac 126190 bytes_out 0 126163 unique_id port 126163 remote_ip 10.8.0.146 126164 username hashtadani3 126164 kill_reason Another user logged on this global unique id 126164 mac 126164 bytes_out 0 126164 bytes_in 0 126164 station_ip 5.202.60.99 63319 username gohar 63319 kill_reason Another user logged on this global unique id 63319 mac 5.237.83.36:49350: Unknown host 63319 bytes_out 0 63319 bytes_in 0 63319 station_ip 5.237.83.36:49350 63319 port 1018 63319 unique_id port 63323 username gohar 63323 kill_reason Another user logged on this global unique id 63323 mac 5.237.83.36:49638: Unknown host 63323 bytes_out 0 63323 bytes_in 0 63323 station_ip 5.237.83.36:49638 63323 port 1018 63323 unique_id port 63325 username gohar 63325 kill_reason Another user logged on this global unique id 63325 mac 5.237.83.36:49731: Unknown host 63325 bytes_out 0 63325 bytes_in 0 63325 station_ip 5.237.83.36:49731 63325 port 1018 63325 unique_id port 126164 port 169 126164 unique_id port 126164 remote_ip 10.8.0.154 126169 username aminvpn 126169 mac 126169 bytes_out 0 126169 bytes_in 0 126169 station_ip 83.123.103.139 126169 port 199 126169 unique_id port 126169 remote_ip 10.8.0.14 126170 username hashtadani3 126170 kill_reason Another user logged on this global unique id 126170 mac 126170 bytes_out 0 126170 bytes_in 0 63340 username gohar 63340 kill_reason Another user logged on this global unique id 63340 mac 5.237.84.100:58705: Unknown host 63340 bytes_out 0 63340 bytes_in 0 63340 station_ip 5.237.84.100:58705 63340 port 1018 63340 unique_id port 63341 username gohar 63341 kill_reason Another user logged on this global unique id 63341 mac 5.237.84.100:58759: Unknown host 63341 bytes_out 0 63341 bytes_in 0 63341 station_ip 5.237.84.100:58759 63341 port 1018 63341 unique_id port 126170 station_ip 5.202.60.99 126170 port 169 126170 unique_id port 126171 username barzegar 126171 kill_reason Maximum check online fails reached 126171 mac 126171 bytes_out 0 126171 bytes_in 0 126171 station_ip 5.112.216.189 126171 port 115 126171 unique_id port 126175 username moradi 126175 mac 126175 bytes_out 0 126175 bytes_in 0 126175 station_ip 37.129.70.21 126175 port 211 126175 unique_id port 126175 remote_ip 10.8.0.250 126177 username ahmadipour 126177 unique_id port 126177 terminate_cause Lost-Carrier 126177 bytes_out 673652 126177 bytes_in 7907856 126177 station_ip 83.122.197.210 126177 port 15729994 126177 nas_port_type Virtual 126177 remote_ip 5.5.5.219 126186 username barzegar 126186 mac 126186 bytes_out 0 126186 bytes_in 0 126186 station_ip 5.112.216.189 126186 port 120 126186 unique_id port 126186 remote_ip 10.8.1.174 126194 username mehdizare 126194 mac 126194 bytes_out 0 126194 bytes_in 0 126194 station_ip 5.120.97.150 126194 port 214 126194 unique_id port 126197 username alihosseini1 126197 mac 126197 bytes_out 0 126197 bytes_in 0 126197 station_ip 5.120.109.236 126197 port 211 126197 unique_id port 126197 remote_ip 10.8.0.166 126206 username sedighe 126206 mac 126206 bytes_out 0 126206 bytes_in 0 126206 station_ip 83.123.234.143 126206 port 216 126206 unique_id port 126206 remote_ip 10.8.0.146 126209 username forozande 126209 mac 126209 bytes_out 0 126209 bytes_in 0 126209 station_ip 83.122.199.91 126209 port 211 126209 unique_id port 126209 remote_ip 10.8.0.74 126212 username sedighe 126212 mac 126212 bytes_out 7405168 126212 bytes_in 6256495 126212 station_ip 37.129.109.171 126212 port 215 126212 unique_id port 126212 remote_ip 10.8.0.146 126214 username mehdizare 126214 mac 126214 bytes_out 57064 126214 bytes_in 60229 126214 station_ip 5.120.97.150 126214 port 211 126214 unique_id port 126181 mac 126181 bytes_out 0 126181 bytes_in 0 126181 station_ip 5.120.97.150 126181 port 214 126181 unique_id port 126183 username barzegar 126183 mac 126183 bytes_out 0 126183 bytes_in 0 126183 station_ip 5.112.216.189 126183 port 210 126183 unique_id port 126183 remote_ip 10.8.0.234 126184 username mohammadjavad 126184 mac 126184 bytes_out 0 126184 bytes_in 0 126184 station_ip 37.129.77.235 126184 port 210 126184 unique_id port 126184 remote_ip 10.8.0.142 126185 username mehdizare 126185 kill_reason Another user logged on this global unique id 126185 mac 126185 bytes_out 0 126185 bytes_in 0 126185 station_ip 5.120.97.150 126185 port 214 126185 unique_id port 126187 username alireza 126187 unique_id port 126187 terminate_cause Lost-Carrier 126187 bytes_out 7841068 126187 bytes_in 130071894 126187 station_ip 5.119.231.255 126187 port 15729991 126187 nas_port_type Virtual 126187 remote_ip 5.5.5.191 126188 username kamali1 126188 mac 126188 bytes_out 0 126188 bytes_in 0 126188 station_ip 5.119.223.166 126188 port 216 126188 unique_id port 126188 remote_ip 10.8.0.70 126192 username houshang 126192 mac 126192 bytes_out 0 126192 bytes_in 0 126192 station_ip 5.120.17.247 126192 port 216 126192 unique_id port 126192 remote_ip 10.8.0.22 126193 username mohammadmahdi 126193 kill_reason Another user logged on this global unique id 126193 mac 126193 bytes_out 0 126193 bytes_in 0 126193 station_ip 5.120.142.69 126193 port 210 126193 unique_id port 126193 remote_ip 10.8.0.54 126195 username moradi 126195 kill_reason Another user logged on this global unique id 126195 mac 126195 bytes_out 0 126195 bytes_in 0 126195 station_ip 37.129.61.13 126195 port 169 126195 unique_id port 126195 remote_ip 10.8.0.250 126199 username moradi 126199 mac 126199 bytes_out 0 126199 bytes_in 0 126199 station_ip 37.129.61.13 126199 port 169 126199 unique_id port 126200 username mahdiyehalizadeh 126200 mac 126200 bytes_out 576826 126200 bytes_in 8015099 126200 station_ip 83.123.153.132 126200 port 211 126200 unique_id port 126200 remote_ip 10.8.0.82 126203 username hashtadani3 126203 kill_reason Another user logged on this global unique id 126203 mac 126203 bytes_out 0 126203 bytes_in 0 126203 station_ip 37.129.200.136 126203 port 120 126203 unique_id port 126203 remote_ip 10.8.1.94 126207 username mirzaei 126207 kill_reason Another user logged on this global unique id 126207 mac 126207 bytes_out 0 126207 bytes_in 0 126207 station_ip 5.120.175.250 126207 port 201 126207 unique_id port 126208 username jafari 126208 kill_reason Another user logged on this global unique id 126208 mac 126208 bytes_out 0 126208 bytes_in 0 126208 station_ip 93.114.31.178 126208 port 210 126208 unique_id port 126208 remote_ip 10.8.0.242 126213 username asma2026 126213 kill_reason Maximum check online fails reached 126213 mac 126213 bytes_out 0 126213 bytes_in 0 126213 station_ip 113.203.64.28 126213 port 214 126213 unique_id port 126216 username mehdizare 126216 mac 126216 bytes_out 0 126216 bytes_in 0 126216 station_ip 5.120.97.150 126216 port 220 126216 unique_id port 126216 remote_ip 10.8.0.90 126219 username asma2026 126219 kill_reason Maximum check online fails reached 126219 mac 126219 bytes_out 0 126219 bytes_in 0 126219 station_ip 113.203.64.28 126219 port 220 126219 unique_id port 126220 username mohammadjavad 126220 mac 126220 bytes_out 0 126220 bytes_in 0 126220 station_ip 83.122.241.226 126220 port 218 126220 unique_id port 126231 username ehsun 126231 mac 126231 bytes_out 0 126231 bytes_in 0 126231 station_ip 83.122.224.159 126190 bytes_in 0 126190 station_ip 5.202.60.99 126190 port 169 126190 unique_id port 126191 username mostafa_es78 126191 unique_id port 126191 terminate_cause User-Request 126191 bytes_out 275500 126191 bytes_in 7059864 126191 station_ip 178.236.35.96 126191 port 15729997 126191 nas_port_type Virtual 126191 remote_ip 5.5.5.148 126196 username sobhan 126196 unique_id port 126196 terminate_cause Lost-Carrier 126196 bytes_out 828149 126196 bytes_in 4850665 126196 station_ip 46.100.220.13 126196 port 15729998 126196 nas_port_type Virtual 126196 remote_ip 5.5.5.149 126198 username mohammadmahdi 126198 mac 126198 bytes_out 0 126198 bytes_in 0 126198 station_ip 5.120.142.69 126198 port 210 126198 unique_id port 126201 username aminvpn 126201 unique_id port 126201 terminate_cause User-Request 126201 bytes_out 176723 126201 bytes_in 3352511 126201 station_ip 109.125.128.116 126201 port 15729999 126201 nas_port_type Virtual 126201 remote_ip 5.5.5.150 126202 username malekpoir 126202 kill_reason Another user logged on this global unique id 126202 mac 126202 bytes_out 0 126202 bytes_in 0 126202 station_ip 5.119.182.142 126202 port 205 126202 unique_id port 126202 remote_ip 10.8.0.58 126204 username mostafa_es78 126204 unique_id port 126204 terminate_cause User-Request 126204 bytes_out 73631 126204 bytes_in 663614 126204 station_ip 178.236.35.96 126204 port 15730000 126204 nas_port_type Virtual 126204 remote_ip 5.5.5.154 126205 username mosi 126205 mac 126205 bytes_out 2754337 126205 bytes_in 19757438 126205 station_ip 5.200.126.159 126205 port 215 126205 unique_id port 126205 remote_ip 10.8.0.138 126210 username mehdizare 126210 mac 126210 bytes_out 0 126210 bytes_in 0 126210 station_ip 5.120.97.150 126210 port 214 126210 unique_id port 126210 remote_ip 10.8.0.90 126211 username asma2026 126211 mac 126211 bytes_out 458816 126211 bytes_in 2168138 126211 station_ip 113.203.64.28 126211 port 211 126211 unique_id port 126211 remote_ip 10.8.0.170 126215 username jafari 126215 kill_reason Another user logged on this global unique id 126215 mac 126215 bytes_out 0 126215 bytes_in 0 126215 station_ip 93.114.31.178 126215 port 210 126215 unique_id port 126217 username mohammadjavad 126217 kill_reason Another user logged on this global unique id 126217 mac 126217 bytes_out 0 126217 bytes_in 0 126217 station_ip 83.122.241.226 126217 port 218 126217 unique_id port 126217 remote_ip 10.8.0.142 126221 username sedighe 126221 mac 126221 bytes_out 86759 126221 bytes_in 103004 126221 station_ip 37.129.109.171 126221 port 219 126221 unique_id port 126221 remote_ip 10.8.0.146 126222 username asma2026 126222 mac 126222 bytes_out 0 126222 bytes_in 0 126222 station_ip 113.203.64.28 126222 port 218 126222 unique_id port 126222 remote_ip 10.8.0.170 126227 username mehdizare 126227 mac 126227 bytes_out 0 126227 bytes_in 0 126227 station_ip 5.120.97.150 126227 port 211 126227 unique_id port 126227 remote_ip 10.8.0.90 126228 username forozande 126228 mac 126228 bytes_out 914777 126228 bytes_in 5370151 126228 station_ip 113.203.36.122 126228 port 216 126228 unique_id port 126228 remote_ip 10.8.0.74 126229 username mehdizare 126229 mac 126229 bytes_out 0 126229 bytes_in 0 126229 station_ip 5.120.97.150 126229 port 169 126229 unique_id port 126229 remote_ip 10.8.0.90 126232 username jafari 126232 kill_reason Another user logged on this global unique id 126232 mac 126232 bytes_out 0 126232 bytes_in 0 126232 station_ip 93.114.31.178 126232 port 210 126232 unique_id port 126234 username forozande 126234 mac 126234 bytes_out 0 126234 bytes_in 0 126214 remote_ip 10.8.0.90 126218 username mosi 126218 mac 126218 bytes_out 84007 126218 bytes_in 97181 126218 station_ip 5.200.126.159 126218 port 217 126218 unique_id port 126218 remote_ip 10.8.0.138 126223 username jafari 126223 kill_reason Another user logged on this global unique id 126223 mac 126223 bytes_out 0 126223 bytes_in 0 126223 station_ip 93.114.31.178 126223 port 210 126223 unique_id port 126224 username mahdiyehalizadeh 126224 mac 126224 bytes_out 6033 126224 bytes_in 6120 126224 station_ip 83.122.114.10 126224 port 218 126224 unique_id port 126224 remote_ip 10.8.0.82 126225 username sabaghnezhad 126225 mac 126225 bytes_out 1804806 126225 bytes_in 22395314 126225 station_ip 83.123.112.235 126225 port 169 126225 unique_id port 126225 remote_ip 10.8.0.186 126226 username alihosseini1 126226 mac 126226 bytes_out 4079201 126226 bytes_in 47125986 126226 station_ip 5.120.63.227 126226 port 215 126226 unique_id port 126226 remote_ip 10.8.0.166 126230 username asma2026 126230 mac 126230 bytes_out 118514 126230 bytes_in 680889 126230 station_ip 113.203.64.28 126230 port 121 126230 unique_id port 126230 remote_ip 10.8.1.122 126238 username mosi 126238 mac 126238 bytes_out 24358 126238 bytes_in 28683 126238 station_ip 5.200.126.159 126238 port 216 126238 unique_id port 126238 remote_ip 10.8.0.138 126239 username jafari 126239 mac 126239 bytes_out 0 126239 bytes_in 0 126239 station_ip 93.114.31.178 126239 port 210 126239 unique_id port 126240 username mosi 126240 mac 126240 bytes_out 2001 126240 bytes_in 4171 126240 station_ip 5.200.126.159 126240 port 216 126240 unique_id port 126240 remote_ip 10.8.0.138 126242 username mosi 126242 mac 126242 bytes_out 0 126242 bytes_in 0 126242 station_ip 5.200.126.159 126242 port 210 126242 unique_id port 126242 remote_ip 10.8.0.138 126247 username kordestani 126247 mac 126247 bytes_out 0 126247 bytes_in 0 126247 station_ip 151.235.72.26 126247 port 215 126247 unique_id port 126252 username ehsun 126252 mac 126252 bytes_out 1176617 126252 bytes_in 8533571 126252 station_ip 83.122.224.159 126252 port 219 126252 unique_id port 126252 remote_ip 10.8.0.162 126257 username ehsun 126257 mac 126257 bytes_out 0 126257 bytes_in 0 126257 station_ip 83.122.224.159 126257 port 121 126257 unique_id port 126257 remote_ip 10.8.1.126 126269 username mosi 126269 mac 126269 bytes_out 7316 126269 bytes_in 13549 126269 station_ip 89.47.157.179 126269 port 120 126269 unique_id port 126269 remote_ip 10.8.1.86 126270 username mosi 126270 mac 126270 bytes_out 26655 126270 bytes_in 60877 126270 station_ip 89.47.157.179 126270 port 120 126270 unique_id port 126270 remote_ip 10.8.1.86 126279 username mohammadjavad 126279 mac 126279 bytes_out 0 126279 bytes_in 0 126279 station_ip 37.129.91.214 126279 port 221 126279 unique_id port 126279 remote_ip 10.8.0.142 126280 username hashtadani3 126280 mac 126280 bytes_out 21994 126280 bytes_in 51626 126280 station_ip 83.123.38.12 126280 port 215 126280 unique_id port 126280 remote_ip 10.8.0.154 126281 username hashtadani3 126281 mac 126281 bytes_out 0 126281 bytes_in 0 126281 station_ip 83.123.38.12 126281 port 121 126281 unique_id port 126281 remote_ip 10.8.1.94 126284 username hamidsalari 126284 mac 126284 bytes_out 0 126284 bytes_in 0 126284 station_ip 5.120.28.139 126284 port 196 126284 unique_id port 126284 remote_ip 10.8.0.230 126286 username houshang 126286 mac 126231 port 221 126231 unique_id port 126231 remote_ip 10.8.0.162 126233 username mosi 126233 mac 126233 bytes_out 0 126233 bytes_in 0 126233 station_ip 5.200.126.159 126233 port 217 126233 unique_id port 126233 remote_ip 10.8.0.138 126245 username mosi 126245 mac 126245 bytes_out 0 126245 bytes_in 0 126245 station_ip 5.200.126.159 126245 port 222 126245 unique_id port 126245 remote_ip 10.8.0.138 126246 username forozande 126246 mac 126246 bytes_out 618302 126246 bytes_in 9176551 126246 station_ip 113.203.53.81 126246 port 169 126246 unique_id port 126246 remote_ip 10.8.0.74 126248 username mosi 126248 mac 126248 bytes_out 3423 126248 bytes_in 7128 126248 station_ip 5.200.126.159 126248 port 217 126248 unique_id port 126248 remote_ip 10.8.0.138 126249 username sedighe 126249 mac 126249 bytes_out 133177 126249 bytes_in 425657 126249 station_ip 37.129.63.255 126249 port 216 126249 unique_id port 126249 remote_ip 10.8.0.146 126251 username mosi 126251 mac 126251 bytes_out 0 126251 bytes_in 0 126251 station_ip 89.47.157.179 126251 port 121 126251 unique_id port 126251 remote_ip 10.8.1.86 126254 username alireza 126254 unique_id port 126254 terminate_cause User-Request 126254 bytes_out 1697145 126254 bytes_in 21028924 126254 station_ip 5.120.38.244 126254 port 15730001 126254 nas_port_type Virtual 126254 remote_ip 5.5.5.157 126258 username ehsun 126258 mac 126258 bytes_out 0 126258 bytes_in 0 126258 station_ip 83.122.224.159 126258 port 169 126258 unique_id port 126258 remote_ip 10.8.0.162 126260 username aminvpn 126260 unique_id port 126260 terminate_cause Lost-Carrier 126260 bytes_out 268493 126260 bytes_in 2386688 126260 station_ip 109.125.128.116 126260 port 15730004 126260 nas_port_type Virtual 126260 remote_ip 5.5.5.177 126262 username mosi 126262 mac 126262 bytes_out 0 126262 bytes_in 0 126262 station_ip 89.47.157.179 126262 port 121 126262 unique_id port 126262 remote_ip 10.8.1.86 126264 username mosi 126264 mac 126264 bytes_out 0 126264 bytes_in 0 126264 station_ip 89.47.157.179 126264 port 121 126264 unique_id port 126264 remote_ip 10.8.1.86 126265 username aminvpn 126265 unique_id port 126265 terminate_cause User-Request 126265 bytes_out 1373676 126265 bytes_in 27445115 126265 station_ip 109.125.128.116 126265 port 15730005 126265 nas_port_type Virtual 126265 remote_ip 5.5.5.178 126267 username forozande 126267 mac 126267 bytes_out 2663283 126267 bytes_in 46256702 126267 station_ip 83.122.167.42 126267 port 215 126267 unique_id port 126267 remote_ip 10.8.0.74 126268 username mosi 126268 mac 126268 bytes_out 0 126268 bytes_in 0 126268 station_ip 89.47.157.179 126268 port 121 126268 unique_id port 126268 remote_ip 10.8.1.86 126272 username mosi 126272 mac 126272 bytes_out 5547 126272 bytes_in 6802 126272 station_ip 89.47.157.179 126272 port 120 126272 unique_id port 126272 remote_ip 10.8.1.86 126273 username mahdiyehalizadeh 126273 mac 126273 bytes_out 0 126273 bytes_in 0 126273 station_ip 37.129.207.130 126273 port 169 126273 unique_id port 126273 remote_ip 10.8.0.82 126275 username mosi 126275 kill_reason Maximum check online fails reached 126275 mac 126275 bytes_out 0 126275 bytes_in 0 126275 station_ip 89.47.157.179 126275 port 120 126275 unique_id port 126276 username rezasekonji 126276 kill_reason Relative expiration date has reached 126276 mac 126276 bytes_out 0 126276 bytes_in 0 126276 station_ip 83.122.114.94 126276 port 215 126276 unique_id port 126278 username mosi 126278 mac 126234 station_ip 113.203.98.9 126234 port 169 126234 unique_id port 126234 remote_ip 10.8.0.74 126235 username moradi 126235 mac 126235 bytes_out 2435499 126235 bytes_in 36158674 126235 station_ip 37.129.55.177 126235 port 122 126235 unique_id port 126235 remote_ip 10.8.1.202 126236 username forozande 126236 mac 126236 bytes_out 464307 126236 bytes_in 6652568 126236 station_ip 113.203.98.9 126236 port 221 126236 unique_id port 126236 remote_ip 10.8.0.74 126237 username kordestani 126237 kill_reason Another user logged on this global unique id 126237 mac 126237 bytes_out 0 126237 bytes_in 0 126237 station_ip 151.235.72.26 126237 port 215 126237 unique_id port 126237 remote_ip 10.8.0.134 126241 username mehdizare 126241 mac 126241 bytes_out 1554460 126241 bytes_in 23117335 126241 station_ip 5.120.97.150 126241 port 211 126241 unique_id port 126241 remote_ip 10.8.0.90 126243 username asma2026 126243 mac 126243 bytes_out 3798661 126243 bytes_in 504950 126243 station_ip 113.203.64.28 126243 port 217 126243 unique_id port 126243 remote_ip 10.8.0.170 126244 username aminvpn 126244 mac 126244 bytes_out 897591 126244 bytes_in 3879925 126244 station_ip 83.123.103.139 126244 port 199 126244 unique_id port 126244 remote_ip 10.8.0.14 126250 username forozande 126250 mac 126250 bytes_out 0 126250 bytes_in 0 126250 station_ip 113.203.53.81 126250 port 199 126250 unique_id port 126250 remote_ip 10.8.0.74 126253 username mosi 126253 mac 126253 bytes_out 0 126253 bytes_in 0 126253 station_ip 89.47.157.179 126253 port 121 126253 unique_id port 126253 remote_ip 10.8.1.86 126255 username mostafa_es78 126255 unique_id port 126255 terminate_cause User-Request 126255 bytes_out 162731 126255 bytes_in 1223025 126255 station_ip 5.125.245.221 126255 port 15730002 126255 nas_port_type Virtual 126255 remote_ip 5.5.5.175 126256 username ehsun 126256 mac 126256 bytes_out 46127 126256 bytes_in 72909 126256 station_ip 83.122.224.159 126256 port 169 126256 unique_id port 126256 remote_ip 10.8.0.162 126259 username ehsun 126259 mac 126259 bytes_out 7643 126259 bytes_in 12777 126259 station_ip 83.122.224.159 126259 port 169 126259 unique_id port 126259 remote_ip 10.8.0.162 126261 username mosi 126261 mac 126261 bytes_out 219843 126261 bytes_in 753648 126261 station_ip 89.47.157.179 126261 port 122 126261 unique_id port 126261 remote_ip 10.8.1.86 126263 username mosi 126263 mac 126263 bytes_out 0 126263 bytes_in 0 126263 station_ip 89.47.157.179 126263 port 121 126263 unique_id port 126263 remote_ip 10.8.1.86 126266 username hashtadani3 126266 mac 126266 bytes_out 0 126266 bytes_in 0 126266 station_ip 37.129.200.136 126266 port 120 126266 unique_id port 126271 username mosi 126271 mac 126271 bytes_out 7218 126271 bytes_in 9145 126271 station_ip 89.47.157.179 126271 port 120 126271 unique_id port 126271 remote_ip 10.8.1.86 126274 username rezasekonji 126274 kill_reason Relative expiration date has reached 126274 mac 126274 bytes_out 0 126274 bytes_in 0 126274 station_ip 83.122.114.94 126274 port 169 126274 unique_id port 126277 username mosi 126277 mac 126277 bytes_out 0 126277 bytes_in 0 126277 station_ip 89.47.157.179 126277 port 169 126277 unique_id port 126277 remote_ip 10.8.0.138 126283 username hashtadani3 126283 mac 126283 bytes_out 0 126283 bytes_in 0 126283 station_ip 83.123.38.12 126283 port 122 126283 unique_id port 126283 remote_ip 10.8.1.94 126285 username hashtadani3 126285 kill_reason Maximum check online fails reached 126278 bytes_out 0 126278 bytes_in 0 126278 station_ip 89.47.157.179 126278 port 215 126278 unique_id port 126278 remote_ip 10.8.0.138 126282 username hashtadani3 126282 mac 126282 bytes_out 0 126282 bytes_in 0 126282 station_ip 83.123.38.12 126282 port 215 126282 unique_id port 126282 remote_ip 10.8.0.154 126291 username hashtadani3 126291 mac 126291 bytes_out 1726 126291 bytes_in 4758 126291 station_ip 83.123.38.12 126291 port 215 126291 unique_id port 126291 remote_ip 10.8.0.154 126296 username irannezhad 126296 mac 126296 bytes_out 0 126296 bytes_in 0 126296 station_ip 5.213.127.120 126296 port 215 126296 unique_id port 126296 remote_ip 10.8.0.182 126300 username mohammadmahdi 126300 mac 126300 bytes_out 548138 126300 bytes_in 2267023 126300 station_ip 5.119.220.11 126300 port 210 126300 unique_id port 126300 remote_ip 10.8.0.54 126302 username mohammadmahdi 126302 kill_reason Maximum check online fails reached 126302 mac 126302 bytes_out 0 126302 bytes_in 0 126302 station_ip 5.119.220.11 126302 port 215 126302 unique_id port 126304 username hashtadani3 126304 mac 126304 bytes_out 0 126304 bytes_in 0 126304 station_ip 83.123.38.12 126304 port 210 126304 unique_id port 126304 remote_ip 10.8.0.154 126308 username hashtadani3 126308 mac 126308 bytes_out 0 126308 bytes_in 0 126308 station_ip 83.123.38.12 126308 port 124 126308 unique_id port 126308 remote_ip 10.8.1.94 126316 username hashtadani3 126316 mac 126316 bytes_out 0 126316 bytes_in 0 126316 station_ip 83.123.38.12 126316 port 219 126316 unique_id port 126316 remote_ip 10.8.0.154 126323 username hosseine 126323 mac 126323 bytes_out 0 126323 bytes_in 0 126323 station_ip 83.123.21.247 126323 port 199 126323 unique_id port 126323 remote_ip 10.8.0.238 126324 username hashtadani3 126324 mac 126324 bytes_out 0 126324 bytes_in 0 126324 station_ip 83.123.38.12 126324 port 125 126324 unique_id port 126324 remote_ip 10.8.1.94 126330 username hashtadani3 126330 mac 126330 bytes_out 0 126330 bytes_in 0 126330 station_ip 83.123.38.12 126330 port 125 126330 unique_id port 126330 remote_ip 10.8.1.94 126331 username hashtadani3 126331 mac 126331 bytes_out 0 126331 bytes_in 0 126331 station_ip 83.123.38.12 126331 port 125 126331 unique_id port 126331 remote_ip 10.8.1.94 126336 username hashtadani3 126336 mac 126336 bytes_out 0 126336 bytes_in 0 126336 station_ip 83.123.38.12 126336 port 126 126336 unique_id port 126336 remote_ip 10.8.1.94 126342 username mosi 126342 mac 126342 bytes_out 3809 126342 bytes_in 8211 126342 station_ip 89.47.129.16 126342 port 126 126342 unique_id port 126342 remote_ip 10.8.1.86 126345 username shahrooz 126345 kill_reason Maximum check online fails reached 126345 unique_id port 126345 bytes_out 548829 126345 bytes_in 4903913 126345 station_ip 83.122.235.56 126345 port 15730007 126345 nas_port_type Virtual 126345 remote_ip 5.5.5.255 126346 username hashtadani3 126346 mac 126346 bytes_out 0 126346 bytes_in 0 126346 station_ip 83.123.38.12 126346 port 126 126346 unique_id port 126346 remote_ip 10.8.1.94 126349 username hashtadani3 126349 mac 126349 bytes_out 0 126349 bytes_in 0 126349 station_ip 83.123.38.12 126349 port 126 126349 unique_id port 126349 remote_ip 10.8.1.94 126352 username hashtadani3 126352 mac 126352 bytes_out 0 126352 bytes_in 0 126352 station_ip 83.123.38.12 126352 port 169 126352 unique_id port 126352 remote_ip 10.8.0.154 126354 username hashtadani3 126354 mac 126354 bytes_out 0 126285 mac 126285 bytes_out 0 126285 bytes_in 0 126285 station_ip 83.123.38.12 126285 port 121 126285 unique_id port 126287 username hashtadani3 126287 mac 126287 bytes_out 0 126287 bytes_in 0 126287 station_ip 83.123.38.12 126287 port 122 126287 unique_id port 126287 remote_ip 10.8.1.94 126289 username ahmadipour 126289 unique_id port 126289 terminate_cause Lost-Carrier 126289 bytes_out 50736 126289 bytes_in 198659 126289 station_ip 83.122.194.130 126289 port 15730006 126289 nas_port_type Virtual 126289 remote_ip 5.5.5.189 126290 username mohammadmahdi 126290 mac 126290 bytes_out 734229 126290 bytes_in 4332576 126290 station_ip 5.119.220.11 126290 port 215 126290 unique_id port 126290 remote_ip 10.8.0.54 126294 username aminvpn 126294 mac 126294 bytes_out 1127073 126294 bytes_in 18641854 126294 station_ip 83.123.103.139 126294 port 210 126294 unique_id port 126294 remote_ip 10.8.0.14 126299 username mosi 126299 mac 126299 bytes_out 165531 126299 bytes_in 240162 126299 station_ip 89.47.157.179 126299 port 169 126299 unique_id port 126299 remote_ip 10.8.0.138 126301 username hashtadani3 126301 mac 126301 bytes_out 0 126301 bytes_in 0 126301 station_ip 83.123.38.12 126301 port 124 126301 unique_id port 126301 remote_ip 10.8.1.94 126306 username irannezhad 126306 mac 126306 bytes_out 0 126306 bytes_in 0 126306 station_ip 5.213.127.120 126306 port 169 126306 unique_id port 126306 remote_ip 10.8.0.182 126307 username irannezhad 126307 mac 126307 bytes_out 31169 126307 bytes_in 66477 126307 station_ip 5.213.127.120 126307 port 217 126307 unique_id port 126307 remote_ip 10.8.0.182 126310 username hashtadani3 126310 kill_reason Maximum check online fails reached 126310 mac 126310 bytes_out 0 126310 bytes_in 0 126310 station_ip 83.123.38.12 126310 port 124 126310 unique_id port 126311 username irannezhad 126311 mac 126311 bytes_out 828146 126311 bytes_in 7388156 126311 station_ip 95.64.63.243 126311 port 219 126311 unique_id port 126311 remote_ip 10.8.0.182 126312 username hashtadani3 126312 mac 126312 bytes_out 621521 126312 bytes_in 2004724 126312 station_ip 83.123.38.12 126312 port 125 126312 unique_id port 126312 remote_ip 10.8.1.94 126313 username tahmasebi 126313 mac 126313 bytes_out 194885 126313 bytes_in 521334 126313 station_ip 5.120.13.26 126313 port 126 126313 unique_id port 126313 remote_ip 10.8.1.90 126315 username tahmasebi 126315 mac 126315 bytes_out 0 126315 bytes_in 0 126315 station_ip 5.120.98.139 126315 port 125 126315 unique_id port 126315 remote_ip 10.8.1.90 126318 username hashtadani3 126318 mac 126318 bytes_out 0 126318 bytes_in 0 126318 station_ip 83.123.38.12 126318 port 219 126318 unique_id port 126318 remote_ip 10.8.0.154 126320 username mosi 126320 mac 126320 bytes_out 0 126320 bytes_in 0 126320 station_ip 94.24.19.109 126320 port 216 126320 unique_id port 126320 remote_ip 10.8.0.138 126322 username hashtadani3 126322 mac 126322 bytes_out 0 126322 bytes_in 0 126322 station_ip 83.123.38.12 126322 port 216 126322 unique_id port 126322 remote_ip 10.8.0.154 126326 username hashtadani3 126326 mac 126326 bytes_out 0 126326 bytes_in 0 126326 station_ip 83.123.38.12 126326 port 199 126326 unique_id port 126326 remote_ip 10.8.0.154 126329 username hashtadani3 126329 mac 126329 bytes_out 0 126329 bytes_in 0 126329 station_ip 83.123.38.12 126329 port 125 126329 unique_id port 126329 remote_ip 10.8.1.94 126332 username moradi 126332 mac 126332 bytes_out 0 126286 bytes_out 144037 126286 bytes_in 372156 126286 station_ip 5.120.17.247 126286 port 216 126286 unique_id port 126286 remote_ip 10.8.0.22 126288 username hashtadani3 126288 mac 126288 bytes_out 0 126288 bytes_in 0 126288 station_ip 83.123.38.12 126288 port 122 126288 unique_id port 126288 remote_ip 10.8.1.94 126292 username hashtadani3 126292 mac 126292 bytes_out 0 126292 bytes_in 0 126292 station_ip 83.123.38.12 126292 port 122 126292 unique_id port 126292 remote_ip 10.8.1.94 126293 username hashtadani3 126293 kill_reason Maximum check online fails reached 126293 mac 126293 bytes_out 0 126293 bytes_in 0 126293 station_ip 83.123.38.12 126293 port 122 126293 unique_id port 126295 username mehdizare 126295 mac 126295 bytes_out 118200 126295 bytes_in 158675 126295 station_ip 5.120.97.150 126295 port 211 126295 unique_id port 126295 remote_ip 10.8.0.90 126297 username amirabbas 126297 unique_id port 126297 terminate_cause User-Request 126297 bytes_out 7353201 126297 bytes_in 123263969 126297 station_ip 188.245.90.139 126297 port 15730003 126297 nas_port_type Virtual 126297 remote_ip 5.5.5.176 126298 username irannezhad 126298 mac 126298 bytes_out 0 126298 bytes_in 0 126298 station_ip 5.213.127.120 126298 port 215 126298 unique_id port 126298 remote_ip 10.8.0.182 126303 username hashtadani3 126303 mac 126303 bytes_out 0 126303 bytes_in 0 126303 station_ip 83.123.38.12 126303 port 124 126303 unique_id port 126303 remote_ip 10.8.1.94 126305 username moradi 126305 mac 126305 bytes_out 0 126305 bytes_in 0 126305 station_ip 37.129.38.193 126305 port 124 126305 unique_id port 126305 remote_ip 10.8.1.202 126309 username mohammadmahdi 126309 mac 126309 bytes_out 405530 126309 bytes_in 2258607 126309 station_ip 5.119.220.11 126309 port 216 126309 unique_id port 126309 remote_ip 10.8.0.54 126314 username hashtadani3 126314 mac 126314 bytes_out 0 126314 bytes_in 0 126314 station_ip 83.123.38.12 126314 port 219 126314 unique_id port 126314 remote_ip 10.8.0.154 126317 username mahdiyehalizadeh 126317 mac 126317 bytes_out 0 126317 bytes_in 0 126317 station_ip 83.122.83.222 126317 port 216 126317 unique_id port 126317 remote_ip 10.8.0.82 126319 username hashtadani3 126319 mac 126319 bytes_out 0 126319 bytes_in 0 126319 station_ip 83.123.38.12 126319 port 125 126319 unique_id port 126319 remote_ip 10.8.1.94 126321 username hashtadani3 126321 mac 126321 bytes_out 0 126321 bytes_in 0 126321 station_ip 83.123.38.12 126321 port 125 126321 unique_id port 126321 remote_ip 10.8.1.94 126325 username hashtadani3 126325 mac 126325 bytes_out 0 126325 bytes_in 0 126325 station_ip 83.123.38.12 126325 port 125 126325 unique_id port 126325 remote_ip 10.8.1.94 126327 username hashtadani3 126327 mac 126327 bytes_out 0 126327 bytes_in 0 126327 station_ip 83.123.38.12 126327 port 125 126327 unique_id port 126327 remote_ip 10.8.1.94 126328 username hashtadani3 126328 mac 126328 bytes_out 0 126328 bytes_in 0 126328 station_ip 83.123.38.12 126328 port 125 126328 unique_id port 126328 remote_ip 10.8.1.94 126334 username rezasekonji 126334 kill_reason Relative expiration date has reached 126334 mac 126334 bytes_out 0 126334 bytes_in 0 126334 station_ip 83.122.184.141 126334 port 169 126334 unique_id port 126335 username hashtadani3 126335 mac 126335 bytes_out 0 126335 bytes_in 0 126335 station_ip 83.123.38.12 126335 port 126 126335 unique_id port 126335 remote_ip 10.8.1.94 126340 username hashtadani3 126340 mac 63500 username arezoo 63500 kill_reason Maximum check online fails reached 63500 mac 5.237.91.5:49220: Unknown host 63500 bytes_out 0 63500 bytes_in 0 63500 station_ip 5.237.91.5:49220 63500 port 1018 63500 unique_id port 126332 bytes_in 0 126332 station_ip 37.129.38.193 126332 port 169 126332 unique_id port 126332 remote_ip 10.8.0.250 126333 username hashtadani3 126333 mac 126333 bytes_out 0 126333 bytes_in 0 126333 station_ip 83.123.38.12 126333 port 169 126333 unique_id port 126333 remote_ip 10.8.0.154 126337 username mosi 126337 mac 126337 bytes_out 0 126337 bytes_in 0 126337 station_ip 89.47.129.16 126337 port 125 126337 unique_id port 126337 remote_ip 10.8.1.86 126338 username hashtadani3 126338 mac 126338 bytes_out 0 126338 bytes_in 0 126338 station_ip 83.123.38.12 126338 port 125 126338 unique_id port 126338 remote_ip 10.8.1.94 126339 username rezasekonji 126339 kill_reason Relative expiration date has reached 126339 mac 126339 bytes_out 0 126339 bytes_in 0 126339 station_ip 83.122.184.141 126339 port 169 126339 unique_id port 126341 username hashtadani3 126341 mac 126341 bytes_out 0 126341 bytes_in 0 126341 station_ip 83.123.38.12 126341 port 125 126341 unique_id port 126341 remote_ip 10.8.1.94 126343 username hashtadani3 126343 mac 126343 bytes_out 0 126343 bytes_in 0 126343 station_ip 83.123.38.12 126343 port 169 126343 unique_id port 126343 remote_ip 10.8.0.154 126344 username hashtadani3 126344 mac 126344 bytes_out 0 126344 bytes_in 0 126344 station_ip 83.123.38.12 126344 port 126 126344 unique_id port 126344 remote_ip 10.8.1.94 126347 username hashtadani3 126347 mac 126347 bytes_out 0 126347 bytes_in 0 126347 station_ip 83.123.38.12 126347 port 169 126347 unique_id port 126347 remote_ip 10.8.0.154 126348 username hashtadani3 126348 mac 126348 bytes_out 0 126348 bytes_in 0 126348 station_ip 83.123.38.12 126348 port 126 126348 unique_id port 126348 remote_ip 10.8.1.94 126355 username hashtadani3 126355 mac 126355 bytes_out 0 126355 bytes_in 0 126355 station_ip 83.123.38.12 126355 port 126 126355 unique_id port 126355 remote_ip 10.8.1.94 126356 username hashtadani3 126356 mac 126356 bytes_out 0 126356 bytes_in 0 126356 station_ip 83.123.38.12 126356 port 126 126356 unique_id port 126356 remote_ip 10.8.1.94 126358 username morteza 126358 mac 126358 bytes_out 0 126358 bytes_in 0 126358 station_ip 83.123.216.157 126358 port 199 126358 unique_id port 126358 remote_ip 10.8.0.46 126360 username aminvpn 126360 mac 126360 bytes_out 419222 126360 bytes_in 1566415 126360 station_ip 83.123.103.139 126360 port 123 126360 unique_id port 126360 remote_ip 10.8.1.6 126364 username mostafa_es78 126364 unique_id port 126364 terminate_cause User-Request 126364 bytes_out 11012 126364 bytes_in 6023 126364 station_ip 178.236.35.96 126364 port 15730009 126364 nas_port_type Virtual 126364 remote_ip 5.5.5.120 126365 username alihosseini1 126365 mac 126365 bytes_out 220750 126365 bytes_in 1184901 126365 station_ip 5.119.3.233 126365 port 216 126365 unique_id port 126365 remote_ip 10.8.0.166 126366 username hashtadani3 126366 mac 126366 bytes_out 0 126366 bytes_in 0 126366 station_ip 83.123.38.12 126366 port 169 126366 unique_id port 126366 remote_ip 10.8.0.154 126367 username mosi 126367 mac 126367 bytes_out 136013 126367 bytes_in 119710 126367 station_ip 89.47.129.16 126367 port 125 126367 unique_id port 126367 remote_ip 10.8.1.86 126369 username alihosseini1 126369 mac 126369 bytes_out 122767 126340 bytes_out 0 126340 bytes_in 0 126340 station_ip 83.123.38.12 126340 port 125 126340 unique_id port 126340 remote_ip 10.8.1.94 126350 username mirzaei 126350 kill_reason Another user logged on this global unique id 126350 mac 126350 bytes_out 0 126350 bytes_in 0 126350 station_ip 5.120.175.250 126350 port 201 126350 unique_id port 126351 username hashtadani3 126351 mac 126351 bytes_out 0 126351 bytes_in 0 126351 station_ip 83.123.38.12 126351 port 126 126351 unique_id port 126351 remote_ip 10.8.1.94 126353 username mostafa_es78 126353 unique_id port 126353 terminate_cause Lost-Carrier 126353 bytes_out 71756 126353 bytes_in 175237 126353 station_ip 178.236.35.96 126353 port 15730008 126353 nas_port_type Virtual 126353 remote_ip 5.5.5.11 126357 username hashtadani3 126357 mac 126357 bytes_out 0 126357 bytes_in 0 126357 station_ip 83.123.38.12 126357 port 126 126357 unique_id port 126357 remote_ip 10.8.1.94 126361 username hashtadani3 126361 mac 126361 bytes_out 156755 126361 bytes_in 553806 126361 station_ip 83.123.38.12 126361 port 123 126361 unique_id port 126361 remote_ip 10.8.1.94 126363 username sedighe 126363 mac 126363 bytes_out 0 126363 bytes_in 0 126363 station_ip 83.122.200.172 126363 port 217 126363 unique_id port 126363 remote_ip 10.8.0.146 126373 username alihosseini1 126373 mac 126373 bytes_out 206503 126373 bytes_in 1137308 126373 station_ip 5.119.74.82 126373 port 123 126373 unique_id port 126373 remote_ip 10.8.1.106 126377 username hashtadani3 126377 kill_reason Maximum check online fails reached 126377 mac 126377 bytes_out 0 126377 bytes_in 0 126377 station_ip 83.123.38.12 126377 port 123 126377 unique_id port 126378 username hashtadani3 126378 mac 126378 bytes_out 0 126378 bytes_in 0 126378 station_ip 83.123.38.12 126378 port 126 126378 unique_id port 126378 remote_ip 10.8.1.94 126379 username hashtadani3 126379 mac 126379 bytes_out 0 126379 bytes_in 0 126379 station_ip 83.123.38.12 126379 port 211 126379 unique_id port 126379 remote_ip 10.8.0.154 126380 username mosi 126380 mac 126380 bytes_out 0 126380 bytes_in 0 126380 station_ip 151.234.21.48 126380 port 125 126380 unique_id port 126380 remote_ip 10.8.1.86 126381 username hashtadani3 126381 mac 126381 bytes_out 0 126381 bytes_in 0 126381 station_ip 83.123.38.12 126381 port 125 126381 unique_id port 126381 remote_ip 10.8.1.94 126386 username malekpoir 126386 mac 126386 bytes_out 0 126386 bytes_in 0 126386 station_ip 5.119.182.142 126386 port 205 126386 unique_id port 126388 username mehdizare 126388 mac 126388 bytes_out 2636818 126388 bytes_in 23767508 126388 station_ip 5.120.97.150 126388 port 169 126388 unique_id port 126388 remote_ip 10.8.0.90 126393 username mehdizare 126393 mac 126393 bytes_out 23452 126393 bytes_in 26569 126393 station_ip 5.120.97.150 126393 port 205 126393 unique_id port 126393 remote_ip 10.8.0.90 126395 username morteza 126395 mac 126395 bytes_out 0 126395 bytes_in 0 126395 station_ip 83.123.216.157 126395 port 199 126395 unique_id port 126395 remote_ip 10.8.0.46 126396 username hashtadani3 126396 mac 126396 bytes_out 335113 126396 bytes_in 283432 126396 station_ip 83.123.38.12 126396 port 125 126396 unique_id port 126396 remote_ip 10.8.1.94 126397 username asadi 126397 kill_reason Relative expiration date has reached 126397 mac 126397 bytes_out 0 126397 bytes_in 0 126397 station_ip 5.214.244.166 126397 port 199 126397 unique_id port 126398 username hashtadani3 126398 mac 126398 bytes_out 25093 126354 bytes_in 0 126354 station_ip 83.123.38.12 126354 port 126 126354 unique_id port 126354 remote_ip 10.8.1.94 126359 username hashtadani3 126359 mac 126359 bytes_out 0 126359 bytes_in 0 126359 station_ip 83.123.38.12 126359 port 169 126359 unique_id port 126359 remote_ip 10.8.0.154 126362 username aminvpn 126362 mac 126362 bytes_out 107870 126362 bytes_in 463537 126362 station_ip 83.123.103.139 126362 port 126 126362 unique_id port 126362 remote_ip 10.8.1.6 126368 username alihosseini1 126368 mac 126368 bytes_out 43692 126368 bytes_in 310816 126368 station_ip 5.119.3.233 126368 port 123 126368 unique_id port 126368 remote_ip 10.8.1.106 126371 username mosi 126371 kill_reason Maximum check online fails reached 126371 mac 126371 bytes_out 0 126371 bytes_in 0 126371 station_ip 151.234.21.48 126371 port 216 126371 unique_id port 126372 username hashtadani3 126372 mac 126372 bytes_out 0 126372 bytes_in 0 126372 station_ip 83.123.38.12 126372 port 169 126372 unique_id port 126372 remote_ip 10.8.0.154 126375 username hashtadani3 126375 mac 126375 bytes_out 0 126375 bytes_in 0 126375 station_ip 83.123.38.12 126375 port 169 126375 unique_id port 126375 remote_ip 10.8.0.154 126376 username mehdizare 126376 mac 126376 bytes_out 0 126376 bytes_in 0 126376 station_ip 5.120.97.150 126376 port 211 126376 unique_id port 126376 remote_ip 10.8.0.90 126382 username mosi 126382 mac 126382 bytes_out 203044 126382 bytes_in 534621 126382 station_ip 89.47.129.16 126382 port 126 126382 unique_id port 126382 remote_ip 10.8.1.86 126384 username hashtadani3 126384 mac 126384 bytes_out 0 126384 bytes_in 0 126384 station_ip 83.123.38.12 126384 port 217 126384 unique_id port 126384 remote_ip 10.8.0.154 126394 username mosi 126394 mac 126394 bytes_out 0 126394 bytes_in 0 126394 station_ip 151.234.21.48 126394 port 211 126394 unique_id port 126394 remote_ip 10.8.0.138 126403 username kordestani 126403 mac 126403 bytes_out 0 126403 bytes_in 0 126403 station_ip 151.235.99.129 126403 port 125 126403 unique_id port 126403 remote_ip 10.8.1.98 126404 username hashtadani3 126404 mac 126404 bytes_out 0 126404 bytes_in 0 126404 station_ip 83.123.38.12 126404 port 125 126404 unique_id port 126404 remote_ip 10.8.1.94 126407 username hamidsalari 126407 mac 126407 bytes_out 0 126407 bytes_in 0 126407 station_ip 5.120.28.139 126407 port 196 126407 unique_id port 126411 username milan 126411 mac 126411 bytes_out 0 126411 bytes_in 0 126411 station_ip 5.120.28.223 126411 port 210 126411 unique_id port 126411 remote_ip 10.8.0.218 126412 username houshang 126412 mac 126412 bytes_out 0 126412 bytes_in 0 126412 station_ip 5.120.119.98 126412 port 196 126412 unique_id port 126412 remote_ip 10.8.0.22 126414 username houshang 126414 mac 126414 bytes_out 0 126414 bytes_in 0 126414 station_ip 5.120.119.98 126414 port 199 126414 unique_id port 126414 remote_ip 10.8.0.22 126417 username milan 126417 mac 126417 bytes_out 0 126417 bytes_in 0 126417 station_ip 5.120.28.223 126417 port 169 126417 unique_id port 126417 remote_ip 10.8.0.218 126426 username hashtadani3 126426 kill_reason Maximum check online fails reached 126426 mac 126426 bytes_out 0 126426 bytes_in 0 126426 station_ip 83.123.38.12 126426 port 125 126426 unique_id port 126430 username hashtadani3 126430 mac 126430 bytes_out 0 126430 bytes_in 0 126430 station_ip 83.123.38.12 126430 port 126 126430 unique_id port 126369 bytes_in 469263 126369 station_ip 5.119.156.204 126369 port 125 126369 unique_id port 126369 remote_ip 10.8.1.106 126370 username hashtadani3 126370 mac 126370 bytes_out 423429 126370 bytes_in 2337584 126370 station_ip 83.123.38.12 126370 port 169 126370 unique_id port 126370 remote_ip 10.8.0.154 126374 username aminvpn 126374 mac 126374 bytes_out 366846 126374 bytes_in 1423420 126374 station_ip 83.123.103.139 126374 port 199 126374 unique_id port 126374 remote_ip 10.8.0.14 126383 username mosi 126383 mac 126383 bytes_out 83054 126383 bytes_in 293177 126383 station_ip 89.47.129.16 126383 port 211 126383 unique_id port 126383 remote_ip 10.8.0.138 126385 username hamidsalari 126385 mac 126385 bytes_out 0 126385 bytes_in 0 126385 station_ip 5.120.28.139 126385 port 196 126385 unique_id port 126385 remote_ip 10.8.0.230 126387 username ahmadi 126387 kill_reason Relative expiration date has reached 126387 unique_id port 126387 bytes_out 0 126387 bytes_in 0 126387 station_ip 83.122.19.113 126387 port 15730011 126387 nas_port_type Virtual 126389 username mehdizare 126389 mac 126389 bytes_out 31315 126389 bytes_in 45912 126389 station_ip 5.120.97.150 126389 port 196 126389 unique_id port 126389 remote_ip 10.8.0.90 126390 username hashtadani3 126390 mac 126390 bytes_out 0 126390 bytes_in 0 126390 station_ip 83.123.38.12 126390 port 125 126390 unique_id port 126390 remote_ip 10.8.1.94 126391 username hashtadani3 126391 mac 126391 bytes_out 0 126391 bytes_in 0 126391 station_ip 83.123.38.12 126391 port 125 126391 unique_id port 126391 remote_ip 10.8.1.94 126392 username mostafa_es78 126392 unique_id port 126392 terminate_cause User-Request 126392 bytes_out 1179262 126392 bytes_in 9874033 126392 station_ip 5.125.55.172 126392 port 15730010 126392 nas_port_type Virtual 126392 remote_ip 5.5.5.142 126399 username hashtadani3 126399 mac 126399 bytes_out 0 126399 bytes_in 0 126399 station_ip 83.123.38.12 126399 port 125 126399 unique_id port 126399 remote_ip 10.8.1.94 126400 username mansur 126400 mac 126400 bytes_out 0 126400 bytes_in 0 126400 station_ip 5.119.129.210 126400 port 169 126400 unique_id port 126400 remote_ip 10.8.0.210 126401 username hamidsalari 126401 kill_reason Another user logged on this global unique id 126401 mac 126401 bytes_out 0 126401 bytes_in 0 126401 station_ip 5.120.28.139 126401 port 196 126401 unique_id port 126401 remote_ip 10.8.0.230 126408 username mostafa_es78 126408 unique_id port 126408 terminate_cause User-Request 126408 bytes_out 250582 126408 bytes_in 1260085 126408 station_ip 5.125.24.84 126408 port 15730015 126408 nas_port_type Virtual 126408 remote_ip 5.5.5.163 126409 username sabaghnezhad 126409 mac 126409 bytes_out 0 126409 bytes_in 0 126409 station_ip 83.123.112.235 126409 port 218 126409 unique_id port 126409 remote_ip 10.8.0.186 126410 username amirabbas 126410 unique_id port 126410 terminate_cause User-Request 126410 bytes_out 5430878 126410 bytes_in 137362383 126410 station_ip 188.245.90.139 126410 port 15730016 126410 nas_port_type Virtual 126410 remote_ip 5.5.5.181 126415 username hashtadani3 126415 mac 126415 bytes_out 0 126415 bytes_in 0 126415 station_ip 83.123.38.12 126415 port 125 126415 unique_id port 126415 remote_ip 10.8.1.94 126416 username hashtadani3 126416 mac 126416 bytes_out 0 126416 bytes_in 0 126416 station_ip 83.123.38.12 126416 port 125 126416 unique_id port 126416 remote_ip 10.8.1.94 126418 username milan 126418 mac 126418 bytes_out 0 126418 bytes_in 0 126418 station_ip 5.120.28.223 126418 port 169 126398 bytes_in 124492 126398 station_ip 83.123.38.12 126398 port 125 126398 unique_id port 126398 remote_ip 10.8.1.94 126402 username hashtadani3 126402 mac 126402 bytes_out 0 126402 bytes_in 0 126402 station_ip 83.123.38.12 126402 port 125 126402 unique_id port 126402 remote_ip 10.8.1.94 126405 username amirabbas 126405 unique_id port 126405 terminate_cause User-Request 126405 bytes_out 22269938 126405 bytes_in 646434233 126405 station_ip 188.245.90.139 126405 port 15730013 126405 nas_port_type Virtual 126405 remote_ip 5.5.5.156 126406 username kordestani 126406 mac 126406 bytes_out 46067 126406 bytes_in 422059 126406 station_ip 151.235.99.129 126406 port 169 126406 unique_id port 126406 remote_ip 10.8.0.134 126413 username houshang 126413 kill_reason Maximum check online fails reached 126413 mac 126413 bytes_out 0 126413 bytes_in 0 126413 station_ip 5.120.119.98 126413 port 196 126413 unique_id port 126420 username milan 126420 mac 126420 bytes_out 0 126420 bytes_in 0 126420 station_ip 5.120.28.223 126420 port 169 126420 unique_id port 126420 remote_ip 10.8.0.218 126421 username hashtadani3 126421 mac 126421 bytes_out 0 126421 bytes_in 0 126421 station_ip 83.123.38.12 126421 port 125 126421 unique_id port 126421 remote_ip 10.8.1.94 126422 username hashtadani3 126422 mac 126422 bytes_out 0 126422 bytes_in 0 126422 station_ip 83.123.38.12 126422 port 125 126422 unique_id port 126422 remote_ip 10.8.1.94 126423 username milan 126423 mac 126423 bytes_out 0 126423 bytes_in 0 126423 station_ip 5.120.28.223 126423 port 199 126423 unique_id port 126423 remote_ip 10.8.0.218 126424 username hashtadani3 126424 mac 126424 bytes_out 0 126424 bytes_in 0 126424 station_ip 83.123.38.12 126424 port 125 126424 unique_id port 126424 remote_ip 10.8.1.94 126425 username hashtadani3 126425 mac 126425 bytes_out 0 126425 bytes_in 0 126425 station_ip 83.123.38.12 126425 port 125 126425 unique_id port 126425 remote_ip 10.8.1.94 126429 username sade 126429 unique_id port 126429 terminate_cause User-Request 126429 bytes_out 72483309 126429 bytes_in 1268006249 126429 station_ip 86.57.104.239 126429 port 15730014 126429 nas_port_type Virtual 126429 remote_ip 5.5.5.159 126431 username milan 126431 mac 126431 bytes_out 0 126431 bytes_in 0 126431 station_ip 5.120.28.223 126431 port 126 126431 unique_id port 126431 remote_ip 10.8.1.178 126436 username milan 126436 kill_reason Another user logged on this global unique id 126436 mac 126436 bytes_out 0 126436 bytes_in 0 126436 station_ip 5.120.28.223 126436 port 169 126436 unique_id port 126436 remote_ip 10.8.0.218 126438 username hashtadani3 126438 mac 126438 bytes_out 0 126438 bytes_in 0 126438 station_ip 83.123.38.12 126438 port 127 126438 unique_id port 126438 remote_ip 10.8.1.94 126439 username milan 126439 mac 126439 bytes_out 0 126439 bytes_in 0 126439 station_ip 5.120.28.223 126439 port 169 126439 unique_id port 126440 username hashtadani3 126440 mac 126440 bytes_out 0 126440 bytes_in 0 126440 station_ip 83.123.38.12 126440 port 127 126440 unique_id port 126440 remote_ip 10.8.1.94 63597 username arezoo 126447 username hashtadani3 126447 mac 126447 bytes_out 0 126447 bytes_in 0 126447 station_ip 83.123.38.12 126447 port 128 126447 unique_id port 126447 remote_ip 10.8.1.94 126450 username hashtadani3 126450 mac 126450 bytes_out 0 126450 bytes_in 0 126450 station_ip 83.123.38.12 126450 port 128 126450 unique_id port 126450 remote_ip 10.8.1.94 126454 username hashtadani3 126454 mac 126418 unique_id port 126418 remote_ip 10.8.0.218 126419 username milan 126419 mac 126419 bytes_out 0 126419 bytes_in 0 126419 station_ip 5.120.28.223 126419 port 199 126419 unique_id port 126419 remote_ip 10.8.0.218 126427 username shahrooz 126427 unique_id port 126427 terminate_cause Lost-Carrier 126427 bytes_out 417281 126427 bytes_in 1671402 126427 station_ip 83.122.235.56 126427 port 15730012 126427 nas_port_type Virtual 126427 remote_ip 5.5.5.153 126428 username hashtadani3 126428 mac 126428 bytes_out 0 126428 bytes_in 0 126428 station_ip 83.123.38.12 126428 port 126 126428 unique_id port 126428 remote_ip 10.8.1.94 126433 username mosi 126433 mac 126433 bytes_out 0 126433 bytes_in 0 126433 station_ip 89.47.129.16 126433 port 199 126433 unique_id port 126433 remote_ip 10.8.0.138 126437 username hashtadani3 126437 kill_reason Maximum check online fails reached 126437 mac 126437 bytes_out 0 126437 bytes_in 0 126437 station_ip 83.123.38.12 126437 port 126 126437 unique_id port 126441 username mehdizare 126441 mac 126441 bytes_out 0 126441 bytes_in 0 126441 station_ip 5.120.97.150 126441 port 217 126441 unique_id port 126441 remote_ip 10.8.0.90 126445 username mehdizare 126445 kill_reason Maximum check online fails reached 126445 mac 126445 bytes_out 0 126445 bytes_in 0 126445 station_ip 5.120.97.150 126445 port 127 126445 unique_id port 126448 username hamidsalari 126448 mac 126448 bytes_out 172580 126448 bytes_in 1012462 126448 station_ip 5.120.28.139 126448 port 169 126448 unique_id port 126448 remote_ip 10.8.0.230 126451 username hashtadani3 126451 mac 126451 bytes_out 0 126451 bytes_in 0 126451 station_ip 83.123.38.12 126451 port 169 126451 unique_id port 126451 remote_ip 10.8.0.154 126453 username hashtadani3 126453 mac 126453 bytes_out 0 126453 bytes_in 0 126453 station_ip 83.123.38.12 126453 port 169 126453 unique_id port 126453 remote_ip 10.8.0.154 126457 username hashtadani3 126457 mac 126457 bytes_out 0 126457 bytes_in 0 126457 station_ip 83.123.38.12 126457 port 128 126457 unique_id port 126457 remote_ip 10.8.1.94 126458 username hashtadani3 126458 mac 126458 bytes_out 0 63597 kill_reason Maximum check online fails reached 63597 mac 5.237.74.164:49218: Unknown host 63597 bytes_out 0 63597 bytes_in 0 63597 station_ip 5.237.74.164:49218 63597 port 1018 63597 unique_id port 126458 bytes_in 0 126458 station_ip 83.123.38.12 126458 port 169 126458 unique_id port 126458 remote_ip 10.8.0.154 126459 username hashtadani3 126459 mac 126459 bytes_out 0 126459 bytes_in 0 126459 station_ip 83.123.38.12 126459 port 169 126459 unique_id port 126459 remote_ip 10.8.0.154 126460 username hashtadani3 126460 mac 126460 bytes_out 0 126460 bytes_in 0 126460 station_ip 83.123.38.12 126460 port 169 126460 unique_id port 126460 remote_ip 10.8.0.154 126461 username hashtadani3 126461 mac 126461 bytes_out 1924 126461 bytes_in 6977 126461 station_ip 83.123.38.12 126461 port 169 126461 unique_id port 126461 remote_ip 10.8.0.154 126463 username hashtadani3 126463 kill_reason Maximum check online fails reached 126463 mac 126463 bytes_out 0 126463 bytes_in 0 126463 station_ip 83.123.38.12 126463 port 169 126463 unique_id port 126464 username hashtadani3 126464 mac 126464 bytes_out 0 126464 bytes_in 0 126464 station_ip 83.123.38.12 126464 port 205 126464 unique_id port 126464 remote_ip 10.8.0.154 126468 username hashtadani3 126468 mac 126468 bytes_out 0 126468 bytes_in 0 126468 station_ip 83.123.38.12 126468 port 205 126430 remote_ip 10.8.1.94 126432 username mosi 126432 mac 126432 bytes_out 0 126432 bytes_in 0 126432 station_ip 89.47.129.16 126432 port 205 126432 unique_id port 126432 remote_ip 10.8.0.138 126434 username hashtadani3 126434 mac 126434 bytes_out 0 126434 bytes_in 0 126434 station_ip 83.123.38.12 126434 port 126 126434 unique_id port 126434 remote_ip 10.8.1.94 126435 username mosi 126435 mac 126435 bytes_out 1705 126435 bytes_in 5346 126435 station_ip 89.47.129.16 126435 port 205 126435 unique_id port 126435 remote_ip 10.8.0.138 126442 username hashtadani3 126442 mac 126442 bytes_out 0 126442 bytes_in 0 126442 station_ip 83.123.38.12 126442 port 169 126442 unique_id port 126442 remote_ip 10.8.0.154 126443 username mehdizare 126443 mac 126443 bytes_out 21107 126443 bytes_in 22354 63620 username arezoo 63620 kill_reason Maximum check online fails reached 63620 mac 5.237.74.164:55715: Unknown host 63620 bytes_out 0 63620 bytes_in 0 63620 station_ip 5.237.74.164:55715 63620 port 1018 63620 unique_id port 126443 station_ip 5.120.97.150 126443 port 127 126443 unique_id port 126443 remote_ip 10.8.1.42 126444 username hashtadani3 126444 mac 126444 bytes_out 0 126444 bytes_in 0 126444 station_ip 83.123.38.12 126444 port 128 126444 unique_id port 126444 remote_ip 10.8.1.94 126446 username hashtadani3 126446 mac 126446 bytes_out 0 126446 bytes_in 0 126446 station_ip 83.123.38.12 126446 port 128 126446 unique_id port 126446 remote_ip 10.8.1.94 126449 username hashtadani3 126449 mac 126449 bytes_out 0 126449 bytes_in 0 126449 station_ip 83.123.38.12 126449 port 128 126449 unique_id port 126449 remote_ip 10.8.1.94 126452 username hashtadani3 126452 mac 126452 bytes_out 0 126452 bytes_in 0 126452 station_ip 83.123.38.12 126452 port 128 126452 unique_id port 126452 remote_ip 10.8.1.94 126456 username hashtadani3 126456 mac 126456 bytes_out 0 126456 bytes_in 0 126456 station_ip 83.123.38.12 126456 port 169 126456 unique_id port 126456 remote_ip 10.8.0.154 126462 username hashtadani3 126462 mac 126462 bytes_out 0 126462 bytes_in 0 126462 station_ip 83.123.38.12 126462 port 128 126462 unique_id port 126462 remote_ip 10.8.1.94 126467 username hashtadani3 126467 mac 126467 bytes_out 0 126467 bytes_in 0 126467 station_ip 83.123.38.12 126467 port 205 126467 unique_id port 126467 remote_ip 10.8.0.154 126470 username hashtadani3 126470 mac 126470 bytes_out 0 126470 bytes_in 0 126470 station_ip 83.123.38.12 126470 port 205 126470 unique_id port 126470 remote_ip 10.8.0.154 126477 username hashtadani3 126477 kill_reason Maximum check online fails reached 126477 mac 126477 bytes_out 0 126477 bytes_in 0 126477 station_ip 83.123.38.12 126477 port 210 126477 unique_id port 126478 username hashtadani3 126478 mac 126478 bytes_out 0 126478 bytes_in 0 126478 station_ip 83.123.38.12 126478 port 205 126478 unique_id port 126478 remote_ip 10.8.0.154 126484 username hashtadani3 126484 mac 126484 bytes_out 0 126484 bytes_in 0 126484 station_ip 83.123.38.12 126484 port 128 126484 unique_id port 126484 remote_ip 10.8.1.94 126486 username hashtadani3 126486 mac 126486 bytes_out 0 126486 bytes_in 0 126486 station_ip 83.123.38.12 126486 port 211 126486 unique_id port 126486 remote_ip 10.8.0.154 126488 username hashtadani3 126488 kill_reason Maximum check online fails reached 126488 mac 126488 bytes_out 0 126488 bytes_in 0 126488 station_ip 83.123.38.12 126488 port 211 126488 unique_id port 126489 username hashtadani3 126454 bytes_out 0 126454 bytes_in 0 126454 station_ip 83.123.38.12 126454 port 199 126454 unique_id port 126454 remote_ip 10.8.0.154 126455 username hashtadani3 126455 mac 126455 bytes_out 0 126455 bytes_in 0 126455 station_ip 83.123.38.12 126455 port 169 126455 unique_id port 126455 remote_ip 10.8.0.154 126465 username hashtadani3 126465 kill_reason Maximum check online fails reached 126465 mac 126465 bytes_out 0 126465 bytes_in 0 126465 station_ip 83.123.38.12 126465 port 199 126465 unique_id port 126466 username hashtadani3 126466 mac 126466 bytes_out 0 126466 bytes_in 0 126466 station_ip 83.123.38.12 126466 port 128 126466 unique_id port 126466 remote_ip 10.8.1.94 126469 username hashtadani3 126469 mac 126469 bytes_out 2369 126469 bytes_in 6405 126469 station_ip 83.123.38.12 126469 port 205 126469 unique_id port 126469 remote_ip 10.8.0.154 126471 username hashtadani3 126471 mac 126471 bytes_out 0 126471 bytes_in 0 126471 station_ip 83.123.38.12 126471 port 210 126471 unique_id port 126471 remote_ip 10.8.0.154 126474 username hashtadani3 126474 mac 126474 bytes_out 0 126474 bytes_in 0 126474 station_ip 83.123.38.12 126474 port 210 126474 unique_id port 126474 remote_ip 10.8.0.154 126475 username hashtadani3 126475 mac 126475 bytes_out 0 126475 bytes_in 0 126475 station_ip 83.123.38.12 126475 port 128 126475 unique_id port 126475 remote_ip 10.8.1.94 126476 username sedighe 126476 mac 126476 bytes_out 122872 126476 bytes_in 415163 126476 station_ip 83.122.200.172 126476 port 205 126476 unique_id port 126476 remote_ip 10.8.0.146 126479 username hashtadani3 126479 mac 126479 bytes_out 0 126479 bytes_in 0 126479 station_ip 83.123.38.12 126479 port 128 126479 unique_id port 126479 remote_ip 10.8.1.94 126480 username hashtadani3 126480 mac 126480 bytes_out 0 126480 bytes_in 0 126480 station_ip 83.123.38.12 126480 port 128 126480 unique_id port 126480 remote_ip 10.8.1.94 126481 username hashtadani3 126481 mac 126481 bytes_out 0 126481 bytes_in 0 126481 station_ip 83.123.38.12 126481 port 128 126481 unique_id port 126481 remote_ip 10.8.1.94 126482 username hashtadani3 126482 mac 126482 bytes_out 0 126482 bytes_in 0 126482 station_ip 83.123.38.12 126482 port 128 126482 unique_id port 126482 remote_ip 10.8.1.94 126483 username sedighe 126483 mac 126483 bytes_out 0 126483 bytes_in 0 126483 station_ip 83.122.200.172 126483 port 211 126483 unique_id port 126483 remote_ip 10.8.0.146 126485 username hashtadani3 126485 mac 126485 bytes_out 0 126485 bytes_in 0 126485 station_ip 83.123.38.12 126485 port 128 126485 unique_id port 126485 remote_ip 10.8.1.94 126487 username hashtadani3 126487 mac 126487 bytes_out 0 126487 bytes_in 0 126487 station_ip 83.123.38.12 126487 port 217 126487 unique_id port 126487 remote_ip 10.8.0.154 126492 username hashtadani3 126492 mac 126492 bytes_out 0 126492 bytes_in 0 126492 station_ip 83.123.38.12 126492 port 128 126492 unique_id port 126492 remote_ip 10.8.1.94 126496 username hashtadani3 126538 bytes_in 0 126496 kill_reason Maximum check online fails reached 126496 mac 126496 bytes_out 0 126496 bytes_in 0 126496 station_ip 83.123.38.12 126496 port 128 126496 unique_id port 126497 username hashtadani3 126497 kill_reason Maximum number of concurrent logins reached 126497 mac 126497 bytes_out 0 126497 bytes_in 0 126497 station_ip 83.123.38.12 126497 port 129 126497 unique_id port 126499 username hashtadani3 126499 mac 126499 bytes_out 0 126499 bytes_in 0 126468 unique_id port 126468 remote_ip 10.8.0.154 126472 username hashtadani3 126472 mac 126472 bytes_out 0 126472 bytes_in 0 126472 station_ip 83.123.38.12 126472 port 205 126472 unique_id port 126472 remote_ip 10.8.0.154 126473 username hashtadani3 126473 mac 126473 bytes_out 0 126473 bytes_in 0 126473 station_ip 83.123.38.12 126473 port 128 126473 unique_id port 126473 remote_ip 10.8.1.94 126494 username mohammadjavad 126494 mac 126494 bytes_out 637221 126494 bytes_in 3565638 126494 station_ip 83.122.153.14 126494 port 217 126494 unique_id port 126494 remote_ip 10.8.0.142 126495 username hashtadani3 126495 mac 126495 bytes_out 0 126495 bytes_in 0 126495 station_ip 83.123.38.12 126495 port 129 126495 unique_id port 126495 remote_ip 10.8.1.94 126502 username mohammadjavad 126502 mac 126502 bytes_out 0 126502 bytes_in 0 126502 station_ip 83.122.165.203 126502 port 205 126502 unique_id port 126502 remote_ip 10.8.0.142 126514 username milan 126514 kill_reason Another user logged on this global unique id 126514 mac 126514 bytes_out 0 126514 bytes_in 0 126514 station_ip 5.120.28.223 126514 port 205 126514 unique_id port 126516 username hashtadani3 126516 mac 126516 bytes_out 0 126516 bytes_in 0 126516 station_ip 83.123.38.12 126516 port 129 126516 unique_id port 126516 remote_ip 10.8.1.94 126519 username forozande 126519 mac 126519 bytes_out 2033469 126519 bytes_in 36364725 126519 station_ip 83.123.61.16 126519 port 222 126519 unique_id port 126519 remote_ip 10.8.0.74 126522 username hashtadani3 126522 mac 126522 bytes_out 0 126522 bytes_in 0 126522 station_ip 83.123.38.12 126522 port 219 126522 unique_id port 126522 remote_ip 10.8.0.154 126523 username hashtadani3 126523 mac 126523 bytes_out 0 126523 bytes_in 0 126523 station_ip 83.123.38.12 126523 port 219 126523 unique_id port 126523 remote_ip 10.8.0.154 126526 username morteza 126526 kill_reason Another user logged on this global unique id 126526 mac 126526 bytes_out 0 126526 bytes_in 0 126526 station_ip 83.123.130.73 126526 port 218 126526 unique_id port 126528 username morteza 126528 kill_reason Another user logged on this global unique id 126528 mac 126528 bytes_out 0 126528 bytes_in 0 126528 station_ip 83.123.130.73 126528 port 218 126528 unique_id port 126531 username morteza 126531 kill_reason Another user logged on this global unique id 126531 mac 126531 bytes_out 0 126531 bytes_in 0 126531 station_ip 83.123.130.73 126531 port 218 126531 unique_id port 126533 username morteza 126533 mac 126533 bytes_out 0 126533 bytes_in 0 126533 station_ip 83.123.130.73 126533 port 218 126533 unique_id port 126534 username hashtadani3 126534 mac 126534 bytes_out 1076227 126534 bytes_in 18322608 126534 station_ip 83.123.38.12 126534 port 222 126534 unique_id port 126534 remote_ip 10.8.0.154 126536 username milan 126536 kill_reason Another user logged on this global unique id 126536 mac 126536 bytes_out 0 126536 bytes_in 0 126536 station_ip 5.120.28.223 126536 port 205 126536 unique_id port 126538 username hashtadani3 126538 mac 126538 bytes_out 0 126538 station_ip 83.123.38.12 126538 port 222 126538 unique_id port 126538 remote_ip 10.8.0.154 126540 username barzegar 126540 mac 126540 bytes_out 0 126540 bytes_in 0 126540 station_ip 5.113.10.38 126540 port 129 126540 unique_id port 126540 remote_ip 10.8.1.174 126542 username hashtadani3 126542 mac 126542 bytes_out 0 126542 bytes_in 0 126542 station_ip 83.123.38.12 126542 port 222 126542 unique_id port 126489 mac 126489 bytes_out 0 126489 bytes_in 0 126489 station_ip 83.123.38.12 126489 port 217 126489 unique_id port 126489 remote_ip 10.8.0.154 126490 username hashtadani3 126490 mac 126490 bytes_out 0 126490 bytes_in 0 126490 station_ip 83.123.38.12 126490 port 217 126490 unique_id port 126490 remote_ip 10.8.0.154 126491 username hashtadani3 126491 mac 126491 bytes_out 0 126491 bytes_in 0 126491 station_ip 83.123.38.12 126491 port 218 126491 unique_id port 126491 remote_ip 10.8.0.154 126493 username hashtadani3 126493 mac 126493 bytes_out 0 126493 bytes_in 0 126493 station_ip 83.123.38.12 126493 port 128 126493 unique_id port 126493 remote_ip 10.8.1.94 126498 username hashtadani3 126498 kill_reason Maximum check online fails reached 126498 mac 126498 bytes_out 0 126498 bytes_in 0 126498 station_ip 83.123.38.12 126498 port 217 126498 unique_id port 126500 username sedighe 126500 mac 126500 bytes_out 0 126500 bytes_in 0 126500 station_ip 83.122.200.172 126500 port 205 126500 unique_id port 126500 remote_ip 10.8.0.146 126501 username sedighe 126501 mac 126501 bytes_out 0 126501 bytes_in 0 126501 station_ip 113.203.68.237 126501 port 219 126501 unique_id port 126501 remote_ip 10.8.0.146 126504 username milan 126504 kill_reason Another user logged on this global unique id 126504 mac 126504 bytes_out 0 126504 bytes_in 0 126504 station_ip 5.120.28.223 126504 port 205 126504 unique_id port 126504 remote_ip 10.8.0.218 126506 username aminvpn 126506 unique_id port 126506 terminate_cause Lost-Carrier 126506 bytes_out 10500260 126506 bytes_in 411049137 126506 station_ip 31.57.129.65 126506 port 15730017 126506 nas_port_type Virtual 126506 remote_ip 5.5.5.121 126509 username morteza 126509 mac 126509 bytes_out 54530 126509 bytes_in 132019 126509 station_ip 83.123.130.73 126509 port 218 126509 unique_id port 126509 remote_ip 10.8.0.46 126510 username milan 126510 kill_reason Another user logged on this global unique id 126510 mac 126510 bytes_out 0 126510 bytes_in 0 126510 station_ip 5.120.28.223 126510 port 205 126510 unique_id port 126511 username moradi 126511 kill_reason Another user logged on this global unique id 126511 mac 126511 bytes_out 0 126511 bytes_in 0 126511 station_ip 37.129.96.25 126511 port 219 126511 unique_id port 126511 remote_ip 10.8.0.250 126512 username mohammadjavad 126512 mac 126512 bytes_out 251312 126512 bytes_in 2460500 126512 station_ip 113.203.101.45 126512 port 221 126512 unique_id port 126512 remote_ip 10.8.0.142 126520 username moradi 126520 mac 126520 bytes_out 0 126520 bytes_in 0 126520 station_ip 37.129.96.25 126520 port 219 126520 unique_id port 126524 username mirzaei 126524 kill_reason Another user logged on this global unique id 126524 mac 126524 bytes_out 0 126524 bytes_in 0 126524 station_ip 5.120.175.250 126524 port 201 126524 unique_id port 126527 username hashtadani3 126527 mac 126527 bytes_out 0 126527 bytes_in 0 126527 station_ip 83.123.38.12 126527 port 221 126527 unique_id port 126527 remote_ip 10.8.0.154 126529 username hashtadani3 126529 mac 126529 bytes_out 0 126529 bytes_in 0 126529 station_ip 83.123.38.12 126529 port 222 126529 unique_id port 126529 remote_ip 10.8.0.154 126530 username hashtadani3 126530 mac 126530 bytes_out 0 126530 bytes_in 0 126530 station_ip 83.123.38.12 126530 port 222 126530 unique_id port 126530 remote_ip 10.8.0.154 126532 username mohammadjavad 126532 mac 126532 bytes_out 63011 126532 bytes_in 62989 126532 station_ip 83.122.36.159 126532 port 219 126499 station_ip 83.123.38.12 126499 port 218 126499 unique_id port 126499 remote_ip 10.8.0.154 126503 username sedighe 126503 mac 126503 bytes_out 153768 126503 bytes_in 567680 126503 station_ip 83.122.4.112 126503 port 205 126503 unique_id port 126503 remote_ip 10.8.0.146 126505 username forozande 126505 mac 126505 bytes_out 341980 126505 bytes_in 1252384 126505 station_ip 83.122.59.242 126505 port 221 126505 unique_id port 126505 remote_ip 10.8.0.74 126507 username houshang 126507 mac 126507 bytes_out 210839 126507 bytes_in 886804 126507 station_ip 5.120.119.98 126507 port 219 126507 unique_id port 126507 remote_ip 10.8.0.22 126508 username amin.saeedi 126508 unique_id port 126508 terminate_cause User-Request 126508 bytes_out 130303 126508 bytes_in 454472 126508 station_ip 5.119.42.133 126508 port 15730018 126508 nas_port_type Virtual 126508 remote_ip 5.5.5.124 126513 username morteza 126513 kill_reason Another user logged on this global unique id 126513 mac 126513 bytes_out 0 126513 bytes_in 0 126513 station_ip 83.123.130.73 126513 port 218 126513 unique_id port 126513 remote_ip 10.8.0.46 126515 username hashtadani3 126515 mac 126515 bytes_out 0 126515 bytes_in 0 126515 station_ip 83.123.38.12 126515 port 221 126515 unique_id port 126515 remote_ip 10.8.0.154 126517 username hashtadani3 126517 mac 126517 bytes_out 0 126517 bytes_in 0 126517 station_ip 83.123.38.12 126517 port 221 126517 unique_id port 126517 remote_ip 10.8.0.154 126518 username hashtadani3 126518 mac 126518 bytes_out 0 126518 bytes_in 0 126518 station_ip 83.123.38.12 126518 port 221 126518 unique_id port 126518 remote_ip 10.8.0.154 126521 username morteza 126521 kill_reason Another user logged on this global unique id 126521 mac 126521 bytes_out 0 126521 bytes_in 0 126521 station_ip 83.123.130.73 126521 port 218 126521 unique_id port 126525 username ahmadipour 126525 unique_id port 126525 terminate_cause Lost-Carrier 126525 bytes_out 470751 126525 bytes_in 12900014 126525 station_ip 83.122.213.218 126525 port 15730019 126525 nas_port_type Virtual 126525 remote_ip 5.5.5.127 126535 username morteza 126535 mac 126535 bytes_out 0 126535 bytes_in 0 126535 station_ip 83.123.130.73 126535 port 218 126535 unique_id port 126535 remote_ip 10.8.0.46 126541 username hashtadani3 126541 mac 126541 bytes_out 0 126541 bytes_in 0 126541 station_ip 83.123.38.12 126541 port 222 126541 unique_id port 126541 remote_ip 10.8.0.154 126545 username hashtadani3 126545 mac 126545 bytes_out 0 126545 bytes_in 0 126545 station_ip 83.123.38.12 126545 port 224 126545 unique_id port 126545 remote_ip 10.8.0.154 126547 username morteza 126547 mac 126547 bytes_out 2259058 126547 bytes_in 38352157 126547 station_ip 83.123.130.73 126547 port 218 126547 unique_id port 126547 remote_ip 10.8.0.46 126553 username amin.saeedi 126553 unique_id port 126553 terminate_cause User-Request 126553 bytes_out 7253440 126553 bytes_in 214158691 126553 station_ip 151.238.236.199 126553 port 15730020 126553 nas_port_type Virtual 126553 remote_ip 5.5.5.131 126555 username hashtadani3 126555 mac 126555 bytes_out 0 126555 bytes_in 0 126555 station_ip 83.123.38.12 126555 port 219 126555 unique_id port 126555 remote_ip 10.8.0.154 126560 username hashtadani3 126560 mac 126560 bytes_out 0 126560 bytes_in 0 126560 station_ip 83.123.38.12 126560 port 225 126560 unique_id port 126560 remote_ip 10.8.0.154 126569 username hashtadani3 126569 mac 126569 bytes_out 0 126569 bytes_in 0 126569 station_ip 83.123.38.12 126569 port 222 126532 unique_id port 126532 remote_ip 10.8.0.142 126537 username mirzaei 126537 kill_reason Another user logged on this global unique id 126537 mac 126537 bytes_out 0 126537 bytes_in 0 126537 station_ip 5.120.175.250 126537 port 201 126537 unique_id port 126539 username hashtadani3 126539 mac 126539 bytes_out 2217 126539 bytes_in 4494 126539 station_ip 83.123.38.12 126539 port 222 126539 unique_id port 126539 remote_ip 10.8.0.154 126548 username morteza 126548 mac 126548 bytes_out 0 126548 bytes_in 0 126548 station_ip 83.123.130.73 126548 port 218 126548 unique_id port 126548 remote_ip 10.8.0.46 126549 username hashtadani3 126549 mac 126549 bytes_out 0 126549 bytes_in 0 126549 station_ip 83.123.38.12 126549 port 218 126549 unique_id port 126549 remote_ip 10.8.0.154 126551 username hashtadani3 126551 mac 126551 bytes_out 0 126551 bytes_in 0 126551 station_ip 83.123.38.12 126551 port 225 126551 unique_id port 126551 remote_ip 10.8.0.154 126554 username mosi 126554 kill_reason Another user logged on this global unique id 126554 mac 126554 bytes_out 0 126554 bytes_in 0 126554 station_ip 89.47.129.16 126554 port 223 126554 unique_id port 126554 remote_ip 10.8.0.138 126556 username hashtadani3 126556 mac 126556 bytes_out 0 126556 bytes_in 0 126556 station_ip 83.123.38.12 126556 port 225 126556 unique_id port 126556 remote_ip 10.8.0.154 126557 username barzegar 126557 mac 126557 bytes_out 6261 126557 bytes_in 6972 126557 station_ip 5.113.128.177 126557 port 219 126557 unique_id port 126557 remote_ip 10.8.0.234 126559 username hashtadani3 126559 mac 126559 bytes_out 0 126559 bytes_in 0 126559 station_ip 83.123.38.12 126559 port 219 126559 unique_id port 126559 remote_ip 10.8.0.154 126561 username morteza 126561 mac 126561 bytes_out 0 126561 bytes_in 0 126561 station_ip 83.123.130.73 126561 port 224 126561 unique_id port 126561 remote_ip 10.8.0.46 126563 username mosi 126563 kill_reason Another user logged on this global unique id 126563 mac 126563 bytes_out 0 126563 bytes_in 0 126563 station_ip 89.47.129.16 126563 port 223 126563 unique_id port 126566 username hashtadani3 126566 mac 126566 bytes_out 0 126566 bytes_in 0 126566 station_ip 83.123.38.12 126566 port 226 126566 unique_id port 126566 remote_ip 10.8.0.154 126568 username hashtadani3 126568 mac 126568 bytes_out 0 126568 bytes_in 0 126568 station_ip 83.123.38.12 126568 port 222 126568 unique_id port 126568 remote_ip 10.8.0.154 126574 username hashtadani3 126574 mac 126574 bytes_out 0 126574 bytes_in 0 126574 station_ip 83.123.38.12 126574 port 226 126574 unique_id port 126574 remote_ip 10.8.0.154 126580 username alihosseini1 126580 kill_reason Another user logged on this global unique id 126580 mac 126580 bytes_out 0 126580 bytes_in 0 126580 station_ip 5.119.35.25 126580 port 219 126580 unique_id port 126580 remote_ip 10.8.0.166 126581 username milan 126581 kill_reason Another user logged on this global unique id 126581 mac 126581 bytes_out 0 126581 bytes_in 0 126581 station_ip 5.120.28.223 126581 port 205 126581 unique_id port 126585 username morteza 126585 mac 126585 bytes_out 0 126585 bytes_in 0 126585 station_ip 83.123.224.225 126585 port 224 126585 unique_id port 126585 remote_ip 10.8.0.46 126591 username morteza 126591 mac 126591 bytes_out 0 126591 bytes_in 0 126591 station_ip 83.123.224.225 126591 port 129 126591 unique_id port 126591 remote_ip 10.8.1.62 126592 username barzegar 126592 mac 126592 bytes_out 3274 126592 bytes_in 5889 126542 remote_ip 10.8.0.154 126543 username milan 126543 kill_reason Another user logged on this global unique id 126543 mac 126543 bytes_out 0 126543 bytes_in 0 126543 station_ip 5.120.28.223 126543 port 205 126543 unique_id port 126544 username malekpoir 126544 kill_reason Another user logged on this global unique id 126544 mac 126544 bytes_out 0 126544 bytes_in 0 126544 station_ip 5.119.182.142 126544 port 221 126544 unique_id port 126544 remote_ip 10.8.0.58 126546 username hashtadani3 126546 mac 126546 bytes_out 0 126546 bytes_in 0 126546 station_ip 83.123.38.12 126546 port 224 126546 unique_id port 126546 remote_ip 10.8.0.154 126550 username milan 126550 kill_reason Another user logged on this global unique id 126550 mac 126550 bytes_out 0 126550 bytes_in 0 126550 station_ip 5.120.28.223 126550 port 205 126550 unique_id port 126552 username forozande 126552 mac 126552 bytes_out 0 126552 bytes_in 0 126552 station_ip 83.122.165.159 126552 port 219 126552 unique_id port 126552 remote_ip 10.8.0.74 126558 username milan 126558 kill_reason Another user logged on this global unique id 126558 mac 126558 bytes_out 0 126558 bytes_in 0 126558 station_ip 5.120.28.223 126558 port 205 126558 unique_id port 126562 username mohammadjavad 126562 mac 126562 bytes_out 652823 126562 bytes_in 11880748 126562 station_ip 83.123.218.119 126562 port 222 126562 unique_id port 126562 remote_ip 10.8.0.142 126564 username hashtadani3 126564 mac 126564 bytes_out 0 126564 bytes_in 0 126564 station_ip 83.123.38.12 126564 port 225 126564 unique_id port 126564 remote_ip 10.8.0.154 126565 username mahdiyehalizadeh 126565 mac 126565 bytes_out 384394 126565 bytes_in 5371909 126565 station_ip 37.129.57.140 126565 port 225 126565 unique_id port 126565 remote_ip 10.8.0.82 126567 username morteza 126567 mac 126567 bytes_out 419883 126567 bytes_in 1772404 126567 station_ip 83.123.130.73 126567 port 222 126567 unique_id port 126567 remote_ip 10.8.0.46 126573 username milan 126573 kill_reason Another user logged on this global unique id 126573 mac 126573 bytes_out 0 126573 bytes_in 0 126573 station_ip 5.120.28.223 126573 port 205 126573 unique_id port 126576 username sedighe 126576 mac 126576 bytes_out 1478040 126576 bytes_in 25211728 126576 station_ip 83.123.20.77 126576 port 224 126576 unique_id port 126576 remote_ip 10.8.0.146 126577 username hashtadani3 126577 mac 126577 bytes_out 0 126577 bytes_in 0 126577 station_ip 83.123.38.12 126577 port 224 126577 unique_id port 126577 remote_ip 10.8.0.154 126578 username hashtadani3 126578 mac 126578 bytes_out 0 126578 bytes_in 0 126578 station_ip 5.202.15.71 126578 port 224 126578 unique_id port 126578 remote_ip 10.8.0.154 126582 username hashtadani3 126582 mac 126582 bytes_out 0 126582 bytes_in 0 126582 station_ip 83.123.38.12 126582 port 227 126582 unique_id port 126582 remote_ip 10.8.0.154 126583 username alihosseini1 126583 mac 126583 bytes_out 0 126583 bytes_in 0 126583 station_ip 5.119.35.25 126583 port 219 126583 unique_id port 126587 username barzegar 126587 mac 126587 bytes_out 0 126587 bytes_in 0 126587 station_ip 5.119.166.136 126587 port 129 126587 unique_id port 126587 remote_ip 10.8.1.174 126590 username morteza 126590 mac 126590 bytes_out 2838 126590 bytes_in 5489 126590 station_ip 83.123.224.225 126590 port 224 126590 unique_id port 126590 remote_ip 10.8.0.46 126595 username barzegar 126595 kill_reason Maximum check online fails reached 126595 mac 126595 bytes_out 0 126595 bytes_in 0 126595 station_ip 5.119.185.91 126569 unique_id port 126569 remote_ip 10.8.0.154 126570 username hashtadani3 126570 mac 126570 bytes_out 0 126570 bytes_in 0 126570 station_ip 83.123.38.12 126570 port 226 126570 unique_id port 126570 remote_ip 10.8.0.154 126571 username mohammadjavad 126571 mac 126571 bytes_out 0 126571 bytes_in 0 126571 station_ip 37.129.245.208 126571 port 225 126571 unique_id port 126571 remote_ip 10.8.0.142 126572 username hashtadani3 126572 mac 126572 bytes_out 0 126572 bytes_in 0 126572 station_ip 83.123.38.12 126572 port 225 126572 unique_id port 126572 remote_ip 10.8.0.154 126575 username hashtadani3 126575 mac 126575 bytes_out 0 126575 bytes_in 0 126575 station_ip 83.123.38.12 126575 port 226 126575 unique_id port 126575 remote_ip 10.8.0.154 126579 username hashtadani3 126579 mac 126579 bytes_out 0 126579 bytes_in 0 126579 station_ip 83.123.38.12 126579 port 227 126579 unique_id port 126579 remote_ip 10.8.0.154 126584 username alihosseini1 126584 mac 126584 bytes_out 0 126584 bytes_in 0 126584 station_ip 5.119.35.25 126584 port 227 126584 unique_id port 126584 remote_ip 10.8.0.166 126586 username morteza 126586 mac 126586 bytes_out 0 126586 bytes_in 0 126586 station_ip 83.123.224.225 126586 port 219 126586 unique_id port 126586 remote_ip 10.8.0.46 126588 username mosi 126588 kill_reason Another user logged on this global unique id 126588 mac 126588 bytes_out 0 126588 bytes_in 0 126588 station_ip 89.47.129.16 126588 port 223 126588 unique_id port 126589 username morteza 126589 mac 126589 bytes_out 0 126589 bytes_in 0 126589 station_ip 83.123.224.225 126589 port 129 126589 unique_id port 126589 remote_ip 10.8.1.62 126593 username avaanna 126593 kill_reason Another user logged on this global unique id 126593 mac 126593 bytes_out 0 126593 bytes_in 0 126593 station_ip 37.129.42.164 126593 port 226 126593 unique_id port 126593 remote_ip 10.8.0.98 126596 username morteza 126596 kill_reason Maximum check online fails reached 126596 mac 126596 bytes_out 0 126596 bytes_in 0 126596 station_ip 83.123.224.225 126596 port 224 126596 unique_id port 126599 username forozande 126599 kill_reason Another user logged on this global unique id 126599 mac 126599 bytes_out 0 126599 bytes_in 0 126599 station_ip 83.123.183.70 126599 port 222 126599 unique_id port 126599 remote_ip 10.8.0.74 126600 username milan 126600 kill_reason Another user logged on this global unique id 126600 mac 126600 bytes_out 0 126600 bytes_in 0 126600 station_ip 5.120.28.223 126600 port 205 126600 unique_id port 126601 username morteza 126601 kill_reason Maximum check online fails reached 126601 mac 126601 bytes_out 0 126601 bytes_in 0 126601 station_ip 83.123.224.225 126601 port 130 126601 unique_id port 126603 username morteza 126603 mac 126603 bytes_out 0 126603 bytes_in 0 126603 station_ip 83.123.224.225 126603 port 228 126603 unique_id port 126603 remote_ip 10.8.0.46 126607 username morteza 126607 mac 126607 bytes_out 0 126607 bytes_in 0 126607 station_ip 83.123.224.225 126607 port 131 126607 unique_id port 126607 remote_ip 10.8.1.62 126609 username morteza 126609 mac 126609 bytes_out 0 126609 bytes_in 0 126609 station_ip 83.123.224.225 126609 port 222 126609 unique_id port 126609 remote_ip 10.8.0.46 126610 username morteza 126610 mac 126610 bytes_out 0 126610 bytes_in 0 126610 station_ip 83.123.224.225 126610 port 131 126610 unique_id port 126610 remote_ip 10.8.1.62 126611 username morteza 126611 mac 126611 bytes_out 0 126611 bytes_in 0 126592 station_ip 5.119.166.136 126592 port 130 126592 unique_id port 126592 remote_ip 10.8.1.174 126594 username morteza 126594 mac 126594 bytes_out 0 126594 bytes_in 0 63708 username arezoo 63708 kill_reason Maximum check online fails reached 63708 mac 5.237.74.164:49214: Unknown host 63708 bytes_out 0 63708 bytes_in 0 63708 station_ip 5.237.74.164:49214 63708 port 1018 63708 unique_id port 126594 station_ip 83.123.224.225 126594 port 130 126594 unique_id port 126594 remote_ip 10.8.1.62 126597 username mirzaei 126597 kill_reason Another user logged on this global unique id 126597 mac 126597 bytes_out 0 126597 bytes_in 0 126597 station_ip 5.120.175.250 126597 port 201 126597 unique_id port 126604 username alihosseini1 126604 mac 126604 bytes_out 0 126604 bytes_in 0 126604 station_ip 5.119.35.25 126604 port 131 126604 unique_id port 126604 remote_ip 10.8.1.106 126605 username barzegar 126605 mac 126605 bytes_out 0 126605 bytes_in 0 126605 station_ip 5.119.185.91 126605 port 229 126605 unique_id port 126605 remote_ip 10.8.0.234 126606 username morteza 126606 mac 126606 bytes_out 0 126606 bytes_in 0 126606 station_ip 83.123.224.225 126606 port 131 126606 unique_id port 126606 remote_ip 10.8.1.62 126608 username forozande 126608 mac 126608 bytes_out 0 126608 bytes_in 0 126608 station_ip 83.123.183.70 126608 port 222 126608 unique_id port 126612 username mosi 126612 kill_reason Another user logged on this global unique id 126612 mac 126612 bytes_out 0 126612 bytes_in 0 126612 station_ip 89.47.129.16 126612 port 223 126612 unique_id port 126614 username barzegar 126614 mac 126614 bytes_out 0 126614 bytes_in 0 126614 station_ip 5.119.185.91 126614 port 230 126614 unique_id port 126614 remote_ip 10.8.0.234 126617 username hashtadani3 126617 kill_reason Another user logged on this global unique id 126617 mac 126617 bytes_out 0 126617 bytes_in 0 126617 station_ip 83.123.38.12 126617 port 219 126617 unique_id port 126617 remote_ip 10.8.0.154 126619 username mohammadjavad 126619 mac 126619 bytes_out 0 126619 bytes_in 0 126619 station_ip 83.122.204.4 126619 port 229 126619 unique_id port 126619 remote_ip 10.8.0.142 126621 username morteza 126621 mac 126621 bytes_out 0 126621 bytes_in 0 126621 station_ip 83.123.224.225 126621 port 226 126621 unique_id port 126621 remote_ip 10.8.0.46 126623 username arash 126623 kill_reason Another user logged on this global unique id 126623 mac 126623 bytes_out 0 126623 bytes_in 0 126623 station_ip 37.27.23.115 126623 port 228 126623 unique_id port 126626 username alihosseini1 126626 mac 126626 bytes_out 0 126626 bytes_in 0 126626 station_ip 5.119.35.25 126626 port 131 126626 unique_id port 126626 remote_ip 10.8.1.106 126628 username morteza 126628 mac 126628 bytes_out 0 126628 bytes_in 0 126628 station_ip 83.123.224.225 126628 port 226 126628 unique_id port 126628 remote_ip 10.8.0.46 126630 username morteza 126630 mac 126630 bytes_out 0 126630 bytes_in 0 126630 station_ip 83.123.224.225 126630 port 229 126630 unique_id port 126630 remote_ip 10.8.0.46 126632 username barzegar 126632 mac 126632 bytes_out 0 126632 bytes_in 0 126632 station_ip 5.119.185.91 126632 port 131 126632 unique_id port 126632 remote_ip 10.8.1.174 126634 username morteza 126634 kill_reason Maximum check online fails reached 126634 mac 126634 bytes_out 0 126634 bytes_in 0 126634 station_ip 83.123.224.225 126634 port 226 126634 unique_id port 126636 username morteza 126636 mac 126636 bytes_out 0 126636 bytes_in 0 126595 port 129 126595 unique_id port 126598 username morteza 126598 mac 126598 bytes_out 0 126598 bytes_in 0 126598 station_ip 83.123.224.225 126598 port 227 126598 unique_id port 126598 remote_ip 10.8.0.46 126602 username morteza 126602 kill_reason Maximum check online fails reached 126602 mac 126602 bytes_out 0 126602 bytes_in 0 126602 station_ip 83.123.224.225 126602 port 227 126602 unique_id port 126613 username morteza 126613 mac 126613 bytes_out 0 126613 bytes_in 0 126613 station_ip 83.123.224.225 126613 port 222 126613 unique_id port 126613 remote_ip 10.8.0.46 126615 username morteza 126615 mac 126615 bytes_out 0 126615 bytes_in 0 126615 station_ip 83.123.224.225 126615 port 222 126615 unique_id port 126615 remote_ip 10.8.0.46 126618 username arash 126618 kill_reason Another user logged on this global unique id 126618 mac 126618 bytes_out 0 126618 bytes_in 0 126618 station_ip 37.27.23.115 126618 port 228 126618 unique_id port 126618 remote_ip 10.8.0.114 126620 username avaanna 126620 mac 126620 bytes_out 0 126620 bytes_in 0 126620 station_ip 37.129.42.164 126620 port 226 126620 unique_id port 126627 username alihosseini1 126627 mac 126627 bytes_out 0 126627 bytes_in 0 126627 station_ip 5.119.35.25 126627 port 226 126627 unique_id port 126627 remote_ip 10.8.0.166 126631 username arash 126631 kill_reason Another user logged on this global unique id 126631 mac 126631 bytes_out 0 126631 bytes_in 0 126631 station_ip 37.27.23.115 126631 port 228 126631 unique_id port 126635 username morteza 126635 mac 126635 bytes_out 0 126635 bytes_in 0 126635 station_ip 83.123.224.225 126635 port 131 126635 unique_id port 126635 remote_ip 10.8.1.62 126637 username arash 126637 kill_reason Another user logged on this global unique id 126637 mac 126637 bytes_out 0 126637 bytes_in 0 126637 station_ip 37.27.23.115 126637 port 228 126637 unique_id port 126640 username morteza 126640 mac 126640 bytes_out 0 126640 bytes_in 0 126640 station_ip 83.123.224.225 126640 port 131 126640 unique_id port 126640 remote_ip 10.8.1.62 126644 username mosi 126644 mac 126644 bytes_out 0 126644 bytes_in 0 126644 station_ip 89.47.129.16 126644 port 223 126644 unique_id port 126646 username morteza 126646 mac 126646 bytes_out 0 126646 bytes_in 0 126646 station_ip 83.123.224.225 126646 port 232 126646 unique_id port 126646 remote_ip 10.8.0.46 126651 username morteza 126651 mac 126651 bytes_out 0 126651 bytes_in 0 126651 station_ip 83.123.224.225 126651 port 231 126651 unique_id port 126651 remote_ip 10.8.0.46 126652 username arash 126652 kill_reason Another user logged on this global unique id 126652 mac 126652 bytes_out 0 126652 bytes_in 0 126652 station_ip 37.27.23.115 126652 port 228 126652 unique_id port 126653 username morteza 126653 mac 126653 bytes_out 0 126653 bytes_in 0 126653 station_ip 83.123.224.225 126653 port 231 126653 unique_id port 126653 remote_ip 10.8.0.46 126655 username morteza 126655 mac 126655 bytes_out 111547 126655 bytes_in 133385 126655 station_ip 83.123.224.225 126655 port 234 126655 unique_id port 126655 remote_ip 10.8.0.46 126657 username moradi 126657 kill_reason Another user logged on this global unique id 126657 mac 126657 bytes_out 0 126657 bytes_in 0 126657 station_ip 37.129.55.177 126657 port 233 126657 unique_id port 126657 remote_ip 10.8.0.250 126658 username hashtadani3 126658 mac 126658 bytes_out 0 126658 bytes_in 0 126658 station_ip 83.123.38.12 126658 port 219 126658 unique_id port 126611 station_ip 83.123.224.225 126611 port 222 126611 unique_id port 126611 remote_ip 10.8.0.46 126616 username alihosseini1 126616 mac 126616 bytes_out 0 126616 bytes_in 0 126616 station_ip 5.119.35.25 126616 port 131 126616 unique_id port 126616 remote_ip 10.8.1.106 126622 username morteza 126622 mac 126622 bytes_out 0 126622 bytes_in 0 126622 station_ip 83.123.224.225 126622 port 132 126622 unique_id port 126622 remote_ip 10.8.1.62 126624 username morteza 126624 mac 126624 bytes_out 0 126624 bytes_in 0 126624 station_ip 83.123.224.225 126624 port 132 126624 unique_id port 126624 remote_ip 10.8.1.62 126625 username morteza 126625 mac 126625 bytes_out 0 126625 bytes_in 0 126625 station_ip 83.123.224.225 126625 port 132 126625 unique_id port 126625 remote_ip 10.8.1.62 126629 username alihosseini1 126629 mac 126629 bytes_out 2500 126629 bytes_in 5531 126629 station_ip 5.119.35.25 126629 port 226 126629 unique_id port 126629 remote_ip 10.8.0.166 126633 username morteza 126633 mac 126633 bytes_out 0 126633 bytes_in 0 126633 station_ip 83.123.224.225 126633 port 226 126633 unique_id port 126633 remote_ip 10.8.0.46 126638 username avaanna 126638 mac 126638 bytes_out 20946 126638 bytes_in 31295 126638 station_ip 37.129.42.164 126638 port 222 126638 unique_id port 126638 remote_ip 10.8.0.98 126639 username hashtadani3 126639 kill_reason Another user logged on this global unique id 126639 mac 126639 bytes_out 0 126639 bytes_in 0 126639 station_ip 83.123.38.12 126639 port 219 126639 unique_id port 126641 username mosi 126641 kill_reason Another user logged on this global unique id 126641 mac 126641 bytes_out 0 126641 bytes_in 0 126641 station_ip 89.47.129.16 126641 port 223 126641 unique_id port 126642 username morteza 126642 mac 126642 bytes_out 0 126642 bytes_in 0 126642 station_ip 83.123.224.225 126642 port 222 126642 unique_id port 126642 remote_ip 10.8.0.46 126643 username morteza 126643 mac 126643 bytes_out 0 126643 bytes_in 0 126643 station_ip 83.123.224.225 126643 port 131 126643 unique_id port 126643 remote_ip 10.8.1.62 126645 username morteza 126645 kill_reason Maximum check online fails reached 126645 mac 126645 bytes_out 0 126645 bytes_in 0 126645 station_ip 83.123.224.225 126645 port 222 126645 unique_id port 126647 username morteza 126647 mac 126647 bytes_out 0 126647 bytes_in 0 126647 station_ip 83.123.224.225 126647 port 234 126647 unique_id port 126647 remote_ip 10.8.0.46 126648 username morteza 126648 mac 126648 bytes_out 0 126648 bytes_in 0 126648 station_ip 83.123.224.225 126648 port 232 126648 unique_id port 126648 remote_ip 10.8.0.46 126650 username mosi 126650 mac 126650 bytes_out 0 126650 bytes_in 0 126650 station_ip 89.47.129.16 126650 port 231 126650 unique_id port 126650 remote_ip 10.8.0.138 126654 username morteza 126654 mac 126654 bytes_out 0 126654 bytes_in 0 126654 station_ip 83.123.224.225 126654 port 231 126654 unique_id port 126654 remote_ip 10.8.0.46 126661 username aminvpn 126661 mac 126661 bytes_out 0 126661 bytes_in 0 126661 station_ip 83.123.51.79 126661 port 218 126661 unique_id port 126661 remote_ip 10.8.0.14 126662 username malekpoir 126662 mac 126662 bytes_out 0 126662 bytes_in 0 126662 station_ip 5.119.182.142 126662 port 221 126662 unique_id port 126663 username mirzaei 126663 kill_reason Another user logged on this global unique id 126663 mac 126663 bytes_out 0 126663 bytes_in 0 126663 station_ip 5.120.175.250 126636 station_ip 83.123.224.225 126636 port 230 126636 unique_id port 126636 remote_ip 10.8.0.46 126649 username mirzaei 126649 kill_reason Another user logged on this global unique id 126649 mac 126649 bytes_out 0 126649 bytes_in 0 126649 station_ip 5.120.175.250 126649 port 201 126649 unique_id port 126656 username morteza 126656 mac 126656 bytes_out 0 126656 bytes_in 0 126656 station_ip 83.123.224.225 126656 port 131 126656 unique_id port 126656 remote_ip 10.8.1.62 126660 username milan 126660 kill_reason Another user logged on this global unique id 126660 mac 126660 bytes_out 0 126660 bytes_in 0 126660 station_ip 5.120.28.223 126660 port 205 126660 unique_id port 126665 username barzegar 126665 kill_reason Maximum check online fails reached 126665 mac 126665 bytes_out 0 126665 bytes_in 0 126665 station_ip 5.119.185.91 126665 port 218 126665 unique_id port 126670 username aminvpn 126670 mac 126670 bytes_out 0 126670 bytes_in 0 126670 station_ip 83.123.51.79 126670 port 231 126670 unique_id port 126670 remote_ip 10.8.0.14 126671 username aminvpn 126671 mac 126671 bytes_out 0 126671 bytes_in 0 126671 station_ip 151.238.246.78 126671 port 221 126671 unique_id port 126671 remote_ip 10.8.0.14 126677 username rajaei 126677 kill_reason Another user logged on this global unique id 126677 mac 126677 bytes_out 0 126677 bytes_in 0 126677 station_ip 89.32.108.149 126677 port 223 126677 unique_id port 126677 remote_ip 10.8.0.34 126679 username kordestani 126679 mac 126679 bytes_out 3191857 63789 username arezoo 63789 kill_reason Maximum check online fails reached 63789 mac 5.237.74.164:49206: Unknown host 63789 bytes_out 0 63789 bytes_in 0 63789 station_ip 5.237.74.164:49206 63789 port 1018 63789 unique_id port 126679 bytes_in 50619370 126679 station_ip 151.235.100.105 126679 port 229 126679 unique_id port 126679 remote_ip 10.8.0.134 126681 username moradi 126681 kill_reason Another user logged on this global unique id 126681 mac 126681 bytes_out 0 126681 bytes_in 0 126681 station_ip 37.129.55.177 126681 port 233 126681 unique_id port 126688 username aminvpn 126688 mac 126688 bytes_out 0 126688 bytes_in 0 126688 station_ip 83.123.51.79 126688 port 231 126688 unique_id port 126688 remote_ip 10.8.0.14 126692 username hamidsalari 126692 mac 126692 bytes_out 3594 126692 bytes_in 5635 126692 station_ip 5.119.8.60 126692 port 131 126692 unique_id port 126692 remote_ip 10.8.1.182 126695 username hamidsalari 126695 mac 126695 bytes_out 3467 126695 bytes_in 5484 126695 station_ip 5.119.8.60 126695 port 223 126695 unique_id port 126695 remote_ip 10.8.0.230 126697 username aminvpn 126697 mac 126697 bytes_out 0 126697 bytes_in 0 126697 station_ip 83.123.51.79 126697 port 229 126697 unique_id port 126697 remote_ip 10.8.0.14 126699 username hamidsalari 126699 mac 126699 bytes_out 0 126699 bytes_in 0 126699 station_ip 5.119.8.60 126699 port 221 126699 unique_id port 126699 remote_ip 10.8.0.230 126700 username aminvpn 126700 mac 126700 bytes_out 0 126700 bytes_in 0 126700 station_ip 151.238.246.78 126700 port 205 126700 unique_id port 126700 remote_ip 10.8.0.14 126702 username rajaei 126702 mac 126702 bytes_out 496305 126702 bytes_in 3371653 126702 station_ip 89.32.108.149 126702 port 219 126702 unique_id port 126702 remote_ip 10.8.0.34 126703 username aminvpn 126703 mac 126703 bytes_out 0 126703 bytes_in 0 126703 station_ip 151.238.246.78 126703 port 205 126703 unique_id port 126703 remote_ip 10.8.0.14 126706 username aminvpn 126706 mac 126659 username hashtadani3 126659 mac 126659 bytes_out 0 126659 bytes_in 0 126659 station_ip 83.123.40.99 126659 port 131 126659 unique_id port 126659 remote_ip 10.8.1.94 126667 username milan 126667 mac 126667 bytes_out 0 126667 bytes_in 0 126667 station_ip 5.120.28.223 126667 port 205 126667 unique_id port 126668 username forozande 126668 mac 126668 bytes_out 0 126668 bytes_in 0 126668 station_ip 83.122.65.67 126668 port 221 126668 unique_id port 126668 remote_ip 10.8.0.74 126669 username moradi 126669 kill_reason Another user logged on this global unique id 126669 mac 126669 bytes_out 0 126669 bytes_in 0 126669 station_ip 37.129.55.177 126669 port 233 126669 unique_id port 126672 username aminvpn 126672 mac 126672 bytes_out 13900 126672 bytes_in 27371 126672 station_ip 83.123.51.79 126672 port 223 126672 unique_id port 126672 remote_ip 10.8.0.14 126673 username aminvpn 126673 mac 126673 bytes_out 0 126673 bytes_in 0 126673 station_ip 151.238.246.78 126673 port 221 126673 unique_id port 126673 remote_ip 10.8.0.14 126674 username aminvpn 126674 mac 126674 bytes_out 0 126674 bytes_in 0 126674 station_ip 83.123.51.79 126674 port 231 126674 unique_id port 126674 remote_ip 10.8.0.14 126675 username mirzaei 126675 kill_reason Another user logged on this global unique id 126675 mac 126675 bytes_out 0 126675 bytes_in 0 126675 station_ip 5.120.175.250 126675 port 201 126675 unique_id port 126680 username malekpoir 126680 kill_reason Another user logged on this global unique id 126680 mac 126680 bytes_out 0 126680 bytes_in 0 126680 station_ip 5.119.182.142 126680 port 205 126680 unique_id port 126680 remote_ip 10.8.0.58 126684 username aminvpn 126684 mac 126684 bytes_out 0 126684 bytes_in 0 126684 station_ip 151.238.246.78 126684 port 221 126684 unique_id port 126684 remote_ip 10.8.0.14 126687 username barzegar 126687 mac 126687 bytes_out 20701 126687 bytes_in 16019 126687 station_ip 5.119.185.91 126687 port 131 126687 unique_id port 126687 remote_ip 10.8.1.174 126690 username mohammadjavad 126690 mac 126690 bytes_out 0 126690 bytes_in 0 126690 station_ip 37.129.71.73 126690 port 229 126690 unique_id port 126690 remote_ip 10.8.0.142 126691 username hashtadani3 126691 kill_reason Another user logged on this global unique id 126691 mac 126691 bytes_out 0 126691 bytes_in 0 126691 station_ip 37.129.73.24 126691 port 132 126691 unique_id port 126691 remote_ip 10.8.1.94 126696 username malekpoir 126696 mac 126696 bytes_out 0 126696 bytes_in 0 126696 station_ip 5.119.182.142 126696 port 205 126696 unique_id port 126698 username mosi 126698 kill_reason Another user logged on this global unique id 126698 mac 126698 bytes_out 0 126698 bytes_in 0 126698 station_ip 89.47.129.16 126698 port 232 126698 unique_id port 126698 remote_ip 10.8.0.138 126705 username hamidsalari 126705 mac 126705 bytes_out 0 126705 bytes_in 0 126705 station_ip 5.119.8.60 126705 port 131 126705 unique_id port 126705 remote_ip 10.8.1.182 126711 username forozande 126711 mac 126711 bytes_out 0 126711 bytes_in 0 126711 station_ip 83.123.212.127 126711 port 223 126711 unique_id port 126711 remote_ip 10.8.0.74 126713 username aminvpn 126713 mac 126713 bytes_out 0 126713 bytes_in 0 126713 station_ip 83.123.51.79 126713 port 219 126713 unique_id port 126713 remote_ip 10.8.0.14 126719 username aminvpn 126719 mac 126719 bytes_out 0 126719 bytes_in 0 126719 station_ip 83.123.51.79 126719 port 219 126719 unique_id port 126719 remote_ip 10.8.0.14 126663 port 201 126663 unique_id port 126664 username barzegar 126664 mac 126664 bytes_out 0 126664 bytes_in 0 126664 station_ip 5.119.185.91 126664 port 223 126664 unique_id port 126664 remote_ip 10.8.0.234 126666 username hashtadani3 126666 mac 126666 bytes_out 0 126666 bytes_in 0 126666 station_ip 37.129.127.94 126666 port 131 126666 unique_id port 126666 remote_ip 10.8.1.94 126676 username aminvpn 126676 mac 126676 bytes_out 0 126676 bytes_in 0 126676 station_ip 151.238.246.78 126676 port 221 126676 unique_id port 126676 remote_ip 10.8.0.14 126678 username aminvpn 126678 mac 126678 bytes_out 0 126678 bytes_in 0 126678 station_ip 83.123.51.79 126678 port 231 126678 unique_id port 126678 remote_ip 10.8.0.14 126682 username aminvpn 126682 mac 126682 bytes_out 0 126682 bytes_in 0 126682 station_ip 151.238.246.78 126682 port 221 126682 unique_id port 126682 remote_ip 10.8.0.14 126683 username aminvpn 126683 mac 126683 bytes_out 0 126683 bytes_in 0 126683 station_ip 83.123.51.79 126683 port 231 126683 unique_id port 126683 remote_ip 10.8.0.14 126685 username aminvpn 126685 mac 126685 bytes_out 0 126685 bytes_in 0 126685 station_ip 83.123.51.79 126685 port 231 126685 unique_id port 126685 remote_ip 10.8.0.14 126686 username aminvpn 126686 mac 126686 bytes_out 0 126686 bytes_in 0 126686 station_ip 151.238.246.78 126686 port 221 126686 unique_id port 126686 remote_ip 10.8.0.14 126689 username hamidsalari 126689 mac 126689 bytes_out 0 126689 bytes_in 0 126689 station_ip 5.119.8.60 126689 port 219 126689 unique_id port 126689 remote_ip 10.8.0.230 126693 username rajaei 126693 mac 126693 bytes_out 0 126693 bytes_in 0 126693 station_ip 89.32.108.149 126693 port 223 126693 unique_id port 126694 username aminvpn 126694 mac 126694 bytes_out 0 126694 bytes_in 0 126694 station_ip 151.238.246.78 126694 port 221 126694 unique_id port 126694 remote_ip 10.8.0.14 126701 username aminvpn 126701 mac 126701 bytes_out 0 126701 bytes_in 0 126701 station_ip 83.123.51.79 126701 port 221 126701 unique_id port 126701 remote_ip 10.8.0.14 126704 username avaanna 126704 kill_reason Another user logged on this global unique id 126704 mac 126704 bytes_out 0 126704 bytes_in 0 126704 station_ip 37.129.42.164 126704 port 230 126704 unique_id port 126704 remote_ip 10.8.0.98 126707 username aminvpn 126707 mac 126707 bytes_out 0 126707 bytes_in 0 126707 station_ip 151.238.246.78 126707 port 221 126707 unique_id port 126707 remote_ip 10.8.0.14 126709 username aminvpn 126709 mac 126709 bytes_out 0 126709 bytes_in 0 126709 station_ip 83.123.51.79 126709 port 219 126709 unique_id port 126709 remote_ip 10.8.0.14 126712 username mansur 126712 mac 126712 bytes_out 0 126712 bytes_in 0 126712 station_ip 5.120.125.172 126712 port 205 126712 unique_id port 126712 remote_ip 10.8.0.210 126714 username aminvpn 126714 mac 126714 bytes_out 34083 126714 bytes_in 89128 126714 station_ip 151.238.246.78 126714 port 205 126714 unique_id port 126714 remote_ip 10.8.0.14 126716 username aminvpn 126716 mac 126716 bytes_out 0 126716 bytes_in 0 126716 station_ip 151.238.246.78 126716 port 205 126716 unique_id port 126716 remote_ip 10.8.0.14 126717 username jafari 126717 mac 126717 bytes_out 0 126717 bytes_in 0 126717 station_ip 89.32.111.30 126717 port 221 126717 unique_id port 126717 remote_ip 10.8.0.242 126720 username arash 126720 mac 126706 bytes_out 0 126706 bytes_in 0 126706 station_ip 83.123.51.79 126706 port 219 126706 unique_id port 126706 remote_ip 10.8.0.14 126708 username malekpoir 126708 mac 126708 bytes_out 8006 126708 bytes_in 11553 126708 station_ip 5.119.182.142 126708 port 131 126708 unique_id port 126708 remote_ip 10.8.1.54 126710 username aminvpn 126710 mac 126710 bytes_out 0 126710 bytes_in 0 126710 station_ip 151.238.246.78 126710 port 229 126710 unique_id port 126710 remote_ip 10.8.0.14 126715 username aminvpn 126715 mac 126715 bytes_out 0 126715 bytes_in 0 126715 station_ip 83.123.51.79 126715 port 219 126715 unique_id port 126715 remote_ip 10.8.0.14 126718 username hashtadani3 126718 kill_reason Another user logged on this global unique id 126718 mac 126718 bytes_out 0 126718 bytes_in 0 126718 station_ip 37.129.73.24 126718 port 132 126718 unique_id port 126722 username mosi 126722 kill_reason Another user logged on this global unique id 126722 mac 126722 bytes_out 0 126722 bytes_in 0 126722 station_ip 89.47.129.16 126722 port 232 126722 unique_id port 126728 username aminvpn 126728 mac 126728 bytes_out 64721 126728 bytes_in 215254 126728 station_ip 151.238.246.78 126728 port 221 126728 unique_id port 126728 remote_ip 10.8.0.14 126730 username aminvpn 126730 mac 126730 bytes_out 0 126730 bytes_in 0 126730 station_ip 83.123.51.79 126730 port 228 126730 unique_id port 126730 remote_ip 10.8.0.14 126732 username hamidsalari 126732 mac 126732 bytes_out 0 126732 bytes_in 0 126732 station_ip 5.120.49.75 126732 port 219 126732 unique_id port 126732 remote_ip 10.8.0.230 126742 username aminvpn 126742 mac 126742 bytes_out 207783 126742 bytes_in 1722342 126742 station_ip 151.238.246.78 126742 port 219 126742 unique_id port 126742 remote_ip 10.8.0.14 126743 username aminvpn 126743 mac 126743 bytes_out 0 126743 bytes_in 0 126743 station_ip 83.123.51.79 126743 port 205 126743 unique_id port 126743 remote_ip 10.8.0.14 126744 username aminvpn 126744 mac 126744 bytes_out 41924 126744 bytes_in 158523 126744 station_ip 151.238.246.78 126744 port 219 126744 unique_id port 126744 remote_ip 10.8.0.14 126751 username kordestani 126751 mac 126751 bytes_out 379248 126751 bytes_in 4768473 126751 station_ip 151.235.92.142 126751 port 133 126751 unique_id port 126751 remote_ip 10.8.1.98 126754 username ehsun 126754 kill_reason Another user logged on this global unique id 126754 mac 126754 bytes_out 0 126754 bytes_in 0 126754 station_ip 46.225.211.182 126754 port 221 126754 unique_id port 126754 remote_ip 10.8.0.162 126755 username ehsun 126755 mac 126755 bytes_out 0 126755 bytes_in 0 126755 station_ip 46.225.211.182 126755 port 221 126755 unique_id port 126757 username kordestani 126757 mac 126757 bytes_out 45949 126757 bytes_in 121640 126757 station_ip 151.235.100.249 126757 port 133 126757 unique_id port 126757 remote_ip 10.8.1.98 126760 username barzegar 126760 mac 126760 bytes_out 0 126760 bytes_in 0 126760 station_ip 5.120.167.127 126760 port 133 126760 unique_id port 126760 remote_ip 10.8.1.174 126763 username barzegar 126763 mac 126763 bytes_out 0 126763 bytes_in 0 126763 station_ip 5.120.167.127 126763 port 133 126763 unique_id port 126763 remote_ip 10.8.1.174 126764 username hashtadani3 126764 mac 126764 bytes_out 0 126764 bytes_in 0 126764 station_ip 37.129.73.24 126764 port 132 126764 unique_id port 126765 username barzegar 126765 mac 126765 bytes_out 2605 126765 bytes_in 5055 126720 bytes_out 0 126720 bytes_in 0 126720 station_ip 37.27.23.115 126720 port 228 126720 unique_id port 126724 username aminvpn 126724 mac 126724 bytes_out 0 126724 bytes_in 0 126724 station_ip 83.123.51.79 126724 port 219 126724 unique_id port 126724 remote_ip 10.8.0.14 126725 username avaanna 126725 mac 126725 bytes_out 0 126725 bytes_in 0 126725 station_ip 37.129.42.164 126725 port 230 126725 unique_id port 126731 username hamid.e 126731 unique_id port 126731 terminate_cause User-Request 126731 bytes_out 6209434 126731 bytes_in 50454363 126731 station_ip 37.27.29.14 126731 port 15730021 126731 nas_port_type Virtual 126731 remote_ip 5.5.5.133 126735 username aminvpn 126735 mac 126735 bytes_out 0 126735 bytes_in 0 126735 station_ip 83.123.51.79 126735 port 219 126735 unique_id port 126735 remote_ip 10.8.0.14 126737 username forozande 126737 mac 126737 bytes_out 2375795 126737 bytes_in 37354989 126737 station_ip 37.129.95.138 126737 port 205 126737 unique_id port 126737 remote_ip 10.8.0.74 126740 username hashtadani3 126740 kill_reason Another user logged on this global unique id 126740 mac 126740 bytes_out 0 126740 bytes_in 0 126740 station_ip 37.129.73.24 126740 port 132 126740 unique_id port 126745 username aminvpn 126745 mac 126745 bytes_out 0 126745 bytes_in 0 126745 station_ip 83.123.51.79 126745 port 205 126745 unique_id port 126745 remote_ip 10.8.0.14 126748 username barzegar 126748 mac 126748 bytes_out 0 126748 bytes_in 0 126748 station_ip 5.120.167.127 126748 port 134 126748 unique_id port 126748 remote_ip 10.8.1.174 126752 username aminvpn 126752 mac 126752 bytes_out 601777 126752 bytes_in 2505860 126752 station_ip 151.238.246.78 126752 port 219 126752 unique_id port 126752 remote_ip 10.8.0.14 126753 username barzegar 126753 kill_reason Maximum check online fails reached 126753 mac 126753 bytes_out 0 126753 bytes_in 0 126753 station_ip 5.120.167.127 126753 port 134 126753 unique_id port 126756 username aminvpn 126756 unique_id port 126756 terminate_cause User-Request 126756 bytes_out 48981 126756 bytes_in 280543 126756 station_ip 109.125.128.116 126756 port 15730027 126756 nas_port_type Virtual 126756 remote_ip 5.5.5.97 126758 username forozande 126758 mac 126758 bytes_out 0 126758 bytes_in 0 126758 station_ip 83.123.15.224 126758 port 219 126758 unique_id port 126758 remote_ip 10.8.0.74 126759 username aminvpn 126759 unique_id port 126759 terminate_cause Lost-Carrier 126759 bytes_out 94595 126759 bytes_in 725688 126759 station_ip 109.125.128.116 126759 port 15730028 126759 nas_port_type Virtual 126759 remote_ip 5.5.5.128 126762 username barzegar 126762 mac 126762 bytes_out 0 126762 bytes_in 0 126762 station_ip 5.120.167.127 126762 port 133 126762 unique_id port 126762 remote_ip 10.8.1.174 126769 username aminvpn 126769 unique_id port 126769 terminate_cause User-Request 126769 bytes_out 241295 126769 bytes_in 1952612 126769 station_ip 109.125.128.116 126769 port 15730029 126769 nas_port_type Virtual 126769 remote_ip 5.5.5.254 126771 username hashtadani3 126771 mac 126771 bytes_out 591741 126771 bytes_in 8219395 126771 station_ip 37.129.73.24 126771 port 132 126771 unique_id port 126771 remote_ip 10.8.1.94 126775 username hashtadani3 126775 mac 126775 bytes_out 0 126775 bytes_in 0 126775 station_ip 37.129.73.24 126775 port 221 126775 unique_id port 126775 remote_ip 10.8.0.154 126776 username hashtadani3 126776 mac 126776 bytes_out 0 126776 bytes_in 0 126776 station_ip 37.129.73.24 126776 port 221 126776 unique_id port 126721 username ahmadipour 126721 unique_id port 126721 terminate_cause Lost-Carrier 126721 bytes_out 18350790 126721 bytes_in 4873117 126721 station_ip 83.122.155.106 126721 port 15730022 126721 nas_port_type Virtual 126721 remote_ip 5.5.5.138 126723 username aminvpn 126723 mac 126723 bytes_out 45761 126723 bytes_in 298542 126723 station_ip 151.238.246.78 126723 port 221 126723 unique_id port 126723 remote_ip 10.8.0.14 126726 username aminvpn 126726 mac 126726 bytes_out 61127 126726 bytes_in 593631 126726 station_ip 151.238.246.78 126726 port 221 126726 unique_id port 126726 remote_ip 10.8.0.14 126727 username aminvpn 126727 mac 126727 bytes_out 0 126727 bytes_in 0 126727 station_ip 83.123.51.79 126727 port 223 126727 unique_id port 126727 remote_ip 10.8.0.14 126729 username mostafa_es78 126729 unique_id port 126729 terminate_cause User-Request 126729 bytes_out 199386 126729 bytes_in 1396734 126729 station_ip 5.126.249.129 126729 port 15730023 126729 nas_port_type Virtual 126729 remote_ip 5.5.5.140 126733 username mohammadjavad 126733 mac 126733 bytes_out 455314 126733 bytes_in 4821764 126733 station_ip 37.129.41.189 126733 port 223 126733 unique_id port 126733 remote_ip 10.8.0.142 126734 username aminvpn 126734 mac 126734 bytes_out 10466 126734 bytes_in 30863 126734 station_ip 151.238.246.78 126734 port 221 126734 unique_id port 126734 remote_ip 10.8.0.14 126736 username hamidsalari 126736 mac 126736 bytes_out 0 126736 bytes_in 0 126736 station_ip 5.120.49.75 126736 port 134 126736 unique_id port 126736 remote_ip 10.8.1.182 126738 username aminvpn 126738 mac 126738 bytes_out 15535 126738 bytes_in 22366 126738 station_ip 151.238.246.78 126738 port 221 126738 unique_id port 126738 remote_ip 10.8.0.14 126739 username aminvpn 126739 mac 126739 bytes_out 12789 126739 bytes_in 23637 126739 station_ip 83.123.51.79 126739 port 205 126739 unique_id port 126739 remote_ip 10.8.0.14 126741 username amirabbas 126741 unique_id port 126741 terminate_cause User-Request 126741 bytes_out 401728 126741 bytes_in 9283868 126741 station_ip 188.245.90.139 126741 port 15730024 126741 nas_port_type Virtual 126741 remote_ip 5.5.5.143 126746 username moradi 126746 mac 126746 bytes_out 0 126746 bytes_in 0 126746 station_ip 37.129.55.177 126746 port 233 126746 unique_id port 126747 username irannezhad 126747 mac 126747 bytes_out 0 126747 bytes_in 0 126747 station_ip 95.64.108.18 126747 port 221 126747 unique_id port 126747 remote_ip 10.8.0.182 126749 username hashtadani3 126749 kill_reason Another user logged on this global unique id 126749 mac 126749 bytes_out 0 126749 bytes_in 0 126749 station_ip 37.129.73.24 126749 port 132 126749 unique_id port 126750 username barzegar 126750 mac 126750 bytes_out 0 126750 bytes_in 0 126750 station_ip 5.120.167.127 126750 port 134 126750 unique_id port 126750 remote_ip 10.8.1.174 126761 username aminvpn 126761 unique_id port 126761 terminate_cause User-Request 126761 bytes_out 1697122 126761 bytes_in 22904272 126761 station_ip 5.119.207.10 126761 port 15730025 126761 nas_port_type Virtual 126761 remote_ip 5.5.5.170 126766 username hashtadani3 126766 mac 126766 bytes_out 0 126766 bytes_in 0 126766 station_ip 37.129.73.24 126766 port 132 126766 unique_id port 126766 remote_ip 10.8.1.94 126767 username barzegar 126767 mac 126767 bytes_out 0 126767 bytes_in 0 126767 station_ip 5.120.167.127 126767 port 133 126767 unique_id port 126767 remote_ip 10.8.1.174 126768 username barzegar 126768 mac 126768 bytes_out 0 126768 bytes_in 0 126765 station_ip 5.120.167.127 126765 port 133 126765 unique_id port 126765 remote_ip 10.8.1.174 126773 username hashtadani3 126773 mac 126773 bytes_out 0 126773 bytes_in 0 126773 station_ip 37.129.73.24 126773 port 221 126773 unique_id port 126773 remote_ip 10.8.0.154 126774 username hashtadani3 126774 mac 126774 bytes_out 0 126774 bytes_in 0 126774 station_ip 37.129.73.24 126774 port 221 126774 unique_id port 126774 remote_ip 10.8.0.154 126791 username hashtadani3 126791 mac 126791 bytes_out 0 126791 bytes_in 0 126791 station_ip 37.129.73.24 126791 port 133 126791 unique_id port 126791 remote_ip 10.8.1.94 126793 username hashtadani3 126793 mac 126793 bytes_out 0 126793 bytes_in 0 126793 station_ip 37.129.73.24 126793 port 205 126793 unique_id port 126793 remote_ip 10.8.0.154 126797 username hashtadani3 126797 mac 126797 bytes_out 0 126797 bytes_in 0 126797 station_ip 37.129.73.24 126797 port 205 126797 unique_id port 126797 remote_ip 10.8.0.154 126798 username hashtadani3 126798 mac 126798 bytes_out 0 126798 bytes_in 0 126798 station_ip 37.129.73.24 126798 port 133 126798 unique_id port 126798 remote_ip 10.8.1.94 126801 username hashtadani3 126801 mac 126801 bytes_out 0 126801 bytes_in 0 126801 station_ip 37.129.73.24 126801 port 133 126801 unique_id port 126801 remote_ip 10.8.1.94 126807 username hashtadani3 126807 mac 126807 bytes_out 0 126807 bytes_in 0 126807 station_ip 37.129.73.24 126807 port 133 126807 unique_id port 126807 remote_ip 10.8.1.94 126809 username hashtadani3 126809 mac 126809 bytes_out 0 126809 bytes_in 0 126809 station_ip 37.129.73.24 126809 port 205 126809 unique_id port 126809 remote_ip 10.8.0.154 126811 username hashtadani3 126811 mac 126811 bytes_out 0 126811 bytes_in 0 126811 station_ip 37.129.73.24 126811 port 205 126811 unique_id port 126811 remote_ip 10.8.0.154 126812 username hashtadani3 126812 mac 126812 bytes_out 0 126812 bytes_in 0 126812 station_ip 37.129.73.24 126812 port 205 126812 unique_id port 126812 remote_ip 10.8.0.154 126814 username hashtadani3 126814 mac 126814 bytes_out 0 126814 bytes_in 0 126814 station_ip 37.129.73.24 126814 port 133 126814 unique_id port 126814 remote_ip 10.8.1.94 126817 username hashtadani3 126817 kill_reason Maximum check online fails reached 126817 mac 126817 bytes_out 0 126817 bytes_in 0 126817 station_ip 37.129.73.24 126817 port 133 126817 unique_id port 126819 username hashtadani3 126819 mac 126819 bytes_out 0 126819 bytes_in 0 126819 station_ip 37.129.73.24 126819 port 205 126819 unique_id port 126819 remote_ip 10.8.0.154 126823 username hashtadani3 126823 mac 126823 bytes_out 0 126823 bytes_in 0 126823 station_ip 37.129.73.24 126823 port 205 126823 unique_id port 126823 remote_ip 10.8.0.154 126832 username hashtadani3 126832 mac 126832 bytes_out 0 126832 bytes_in 0 126832 station_ip 37.129.73.24 126832 port 219 126832 unique_id port 126832 remote_ip 10.8.0.154 126838 username hashtadani3 126838 mac 126838 bytes_out 0 126838 bytes_in 0 126838 station_ip 37.129.73.24 126838 port 219 126838 unique_id port 126838 remote_ip 10.8.0.154 126841 username hashtadani3 126841 mac 126841 bytes_out 0 126841 bytes_in 0 126841 station_ip 37.129.73.24 126841 port 219 126841 unique_id port 126841 remote_ip 10.8.0.154 126845 username hashtadani3 126845 mac 126845 bytes_out 0 126845 bytes_in 0 126845 station_ip 37.129.73.24 126845 port 228 126845 unique_id port 126768 station_ip 5.120.167.127 126768 port 133 126768 unique_id port 126768 remote_ip 10.8.1.174 126770 username forozande 126770 mac 126770 bytes_out 0 126770 bytes_in 0 126770 station_ip 83.122.3.155 126770 port 221 126770 unique_id port 126770 remote_ip 10.8.0.74 126772 username hashtadani3 126772 mac 126772 bytes_out 0 126772 bytes_in 0 126772 station_ip 37.129.73.24 126772 port 221 126772 unique_id port 126772 remote_ip 10.8.0.154 126777 username sedighe 126777 mac 126777 bytes_out 342452 126777 bytes_in 1612411 126777 station_ip 37.129.2.103 126777 port 219 126777 unique_id port 126777 remote_ip 10.8.0.146 126779 username amirabbas 126779 unique_id port 126779 terminate_cause User-Request 126779 bytes_out 7193946 126779 bytes_in 157751424 126779 station_ip 188.245.90.139 126779 port 15730026 126779 nas_port_type Virtual 126779 remote_ip 5.5.5.255 126780 username hashtadani3 126780 mac 126780 bytes_out 0 126780 bytes_in 0 126780 station_ip 37.129.73.24 126780 port 223 126780 unique_id port 126780 remote_ip 10.8.0.154 126782 username hashtadani3 126782 mac 126782 bytes_out 0 126782 bytes_in 0 126782 station_ip 5.202.15.71 126782 port 132 126782 unique_id port 126782 remote_ip 10.8.1.94 126783 username sedighe 126783 mac 126783 bytes_out 354909 126783 bytes_in 1261987 126783 station_ip 37.129.2.103 126783 port 228 126783 unique_id port 126783 remote_ip 10.8.0.146 126784 username mostafa_es78 126784 unique_id port 126784 terminate_cause User-Request 126784 bytes_out 177424 126784 bytes_in 913354 126784 station_ip 5.125.174.137 126784 port 15730030 126784 nas_port_type Virtual 126784 remote_ip 5.5.5.100 126786 username hashtadani3 126786 mac 126786 bytes_out 0 126786 bytes_in 0 126786 station_ip 5.202.15.71 126786 port 132 126786 unique_id port 126786 remote_ip 10.8.1.94 126787 username hashtadani3 126787 mac 126787 bytes_out 1644 126787 bytes_in 5084 126787 station_ip 5.202.15.71 126787 port 221 126787 unique_id port 126787 remote_ip 10.8.0.154 126790 username hashtadani3 126790 mac 126790 bytes_out 0 126790 bytes_in 0 126790 station_ip 37.129.73.24 126790 port 205 126790 unique_id port 126790 remote_ip 10.8.0.154 126792 username hashtadani3 126792 mac 126792 bytes_out 0 126792 bytes_in 0 126792 station_ip 37.129.73.24 126792 port 205 126792 unique_id port 126792 remote_ip 10.8.0.154 126796 username hashtadani3 126796 mac 126796 bytes_out 0 126796 bytes_in 0 126796 station_ip 37.129.73.24 126796 port 133 126796 unique_id port 126796 remote_ip 10.8.1.94 126800 username hashtadani3 126800 mac 126800 bytes_out 0 126800 bytes_in 0 126800 station_ip 37.129.73.24 126800 port 133 126800 unique_id port 126800 remote_ip 10.8.1.94 126804 username hashtadani3 126804 mac 126804 bytes_out 0 126804 bytes_in 0 126804 station_ip 37.129.73.24 126804 port 205 126804 unique_id port 126804 remote_ip 10.8.0.154 126806 username hashtadani3 126806 mac 126806 bytes_out 0 126806 bytes_in 0 126806 station_ip 37.129.73.24 126806 port 205 126806 unique_id port 126806 remote_ip 10.8.0.154 126808 username barzegar 126808 mac 126808 bytes_out 0 126808 bytes_in 0 126808 station_ip 5.120.167.127 126808 port 223 126808 unique_id port 126808 remote_ip 10.8.0.234 126815 username hashtadani3 126815 mac 126815 bytes_out 0 126815 bytes_in 0 126815 station_ip 37.129.73.24 126815 port 205 126815 unique_id port 126815 remote_ip 10.8.0.154 126816 username hashtadani3 126816 mac 126816 bytes_out 0 126776 remote_ip 10.8.0.154 126778 username barzegar 126778 mac 126778 bytes_out 0 126778 bytes_in 0 126778 station_ip 5.120.167.127 126778 port 221 126778 unique_id port 126778 remote_ip 10.8.0.234 126781 username hashtadani3 126781 mac 126781 bytes_out 0 126781 bytes_in 0 126781 station_ip 37.129.73.24 126781 port 132 126781 unique_id port 126781 remote_ip 10.8.1.94 126785 username barzegar 126785 mac 126785 bytes_out 0 126785 bytes_in 0 126785 station_ip 5.120.167.127 126785 port 221 126785 unique_id port 126785 remote_ip 10.8.0.234 126788 username hashtadani3 126788 kill_reason Maximum check online fails reached 126788 mac 126788 bytes_out 0 126788 bytes_in 0 126788 station_ip 5.202.15.71 126788 port 132 126788 unique_id port 126789 username sabaghnezhad 126789 mac 126789 bytes_out 0 126789 bytes_in 0 126789 station_ip 37.129.39.210 126789 port 205 126789 unique_id port 126789 remote_ip 10.8.0.186 126794 username hashtadani3 126794 mac 126794 bytes_out 0 126794 bytes_in 0 126794 station_ip 37.129.73.24 126794 port 205 126794 unique_id port 126794 remote_ip 10.8.0.154 126795 username hashtadani3 126795 mac 126795 bytes_out 0 126795 bytes_in 0 126795 station_ip 37.129.73.24 126795 port 133 126795 unique_id port 126795 remote_ip 10.8.1.94 126799 username mosi 126799 kill_reason Another user logged on this global unique id 126799 mac 126799 bytes_out 0 126799 bytes_in 0 126799 station_ip 89.47.129.16 126799 port 232 126799 unique_id port 126802 username hashtadani3 126802 mac 126802 bytes_out 0 126802 bytes_in 0 126802 station_ip 37.129.73.24 126802 port 205 126802 unique_id port 126802 remote_ip 10.8.0.154 126803 username hashtadani3 126803 mac 126803 bytes_out 0 126803 bytes_in 0 126803 station_ip 37.129.73.24 126803 port 205 126803 unique_id port 126803 remote_ip 10.8.0.154 126805 username hashtadani3 126805 mac 126805 bytes_out 0 126805 bytes_in 0 126805 station_ip 37.129.73.24 126805 port 205 126805 unique_id port 126805 remote_ip 10.8.0.154 126810 username hashtadani3 126810 mac 126810 bytes_out 0 126810 bytes_in 0 126810 station_ip 37.129.73.24 126810 port 205 126810 unique_id port 126810 remote_ip 10.8.0.154 126813 username alihosseini1 126813 mac 126813 bytes_out 0 126813 bytes_in 0 126813 station_ip 5.119.198.136 126813 port 219 126813 unique_id port 126813 remote_ip 10.8.0.166 126824 username hashtadani3 126824 mac 126824 bytes_out 0 126824 bytes_in 0 126824 station_ip 37.129.73.24 126824 port 205 126824 unique_id port 126824 remote_ip 10.8.0.154 126825 username hashtadani3 126825 mac 126825 bytes_out 0 126825 bytes_in 0 126825 station_ip 37.129.73.24 126825 port 205 126825 unique_id port 126825 remote_ip 10.8.0.154 126826 username hashtadani3 126826 mac 126826 bytes_out 0 126826 bytes_in 0 126826 station_ip 37.129.73.24 126826 port 219 126826 unique_id port 126826 remote_ip 10.8.0.154 126828 username hashtadani3 126828 kill_reason Maximum check online fails reached 126828 mac 126828 bytes_out 0 126828 bytes_in 0 126828 station_ip 37.129.73.24 126828 port 205 126828 unique_id port 126829 username hashtadani3 126829 mac 126829 bytes_out 0 126829 bytes_in 0 126829 station_ip 37.129.73.24 126829 port 219 126829 unique_id port 126829 remote_ip 10.8.0.154 126830 username hashtadani3 126830 mac 126830 bytes_out 0 126830 bytes_in 0 126830 station_ip 37.129.73.24 126830 port 135 126830 unique_id port 126830 remote_ip 10.8.1.94 126816 bytes_in 0 126816 station_ip 37.129.73.24 126816 port 205 126816 unique_id port 126816 remote_ip 10.8.0.154 126818 username hashtadani3 126818 mac 126818 bytes_out 4283 126818 bytes_in 5468 126818 station_ip 37.129.73.24 126818 port 205 126818 unique_id port 126818 remote_ip 10.8.0.154 126820 username mirzaei 126820 kill_reason Another user logged on this global unique id 126820 mac 126820 bytes_out 0 126820 bytes_in 0 126820 station_ip 5.120.175.250 126820 port 201 126820 unique_id port 126821 username hashtadani3 126821 mac 126821 bytes_out 0 126821 bytes_in 0 126821 station_ip 37.129.73.24 126821 port 205 126821 unique_id port 126821 remote_ip 10.8.0.154 126822 username hashtadani3 126822 mac 126822 bytes_out 0 126822 bytes_in 0 126822 station_ip 37.129.73.24 126822 port 135 126822 unique_id port 126822 remote_ip 10.8.1.94 126827 username barzegar 126827 mac 126827 bytes_out 0 126827 bytes_in 0 126827 station_ip 5.120.167.127 126827 port 219 126827 unique_id port 126827 remote_ip 10.8.0.234 126831 username hashtadani3 126831 mac 126831 bytes_out 0 126831 bytes_in 0 126831 station_ip 37.129.73.24 126831 port 219 126831 unique_id port 126831 remote_ip 10.8.0.154 126836 username hashtadani3 126836 mac 126836 bytes_out 0 126836 bytes_in 0 126836 station_ip 37.129.73.24 126836 port 219 126836 unique_id port 126836 remote_ip 10.8.0.154 126837 username hashtadani3 126837 mac 126837 bytes_out 0 126837 bytes_in 0 126837 station_ip 37.129.73.24 126837 port 219 126837 unique_id port 126837 remote_ip 10.8.0.154 126840 username hashtadani3 126840 mac 126840 bytes_out 0 126840 bytes_in 0 126840 station_ip 37.129.73.24 126840 port 219 126840 unique_id port 126840 remote_ip 10.8.0.154 126844 username hashtadani3 126844 mac 126844 bytes_out 0 126844 bytes_in 0 126844 station_ip 37.129.73.24 126844 port 136 126844 unique_id port 126844 remote_ip 10.8.1.94 126847 username barzegar 126847 mac 126847 bytes_out 0 126847 bytes_in 0 126847 station_ip 5.120.167.127 126847 port 219 126847 unique_id port 126847 remote_ip 10.8.0.234 126855 username hashtadani3 126855 mac 126855 bytes_out 0 126855 bytes_in 0 126855 station_ip 37.129.73.24 126855 port 219 126855 unique_id port 126855 remote_ip 10.8.0.154 126856 username hashtadani3 126856 mac 126856 bytes_out 0 126856 bytes_in 0 126856 station_ip 37.129.73.24 126856 port 219 126856 unique_id port 126856 remote_ip 10.8.0.154 126864 username barzegar 126864 mac 126864 bytes_out 0 126864 bytes_in 0 126864 station_ip 5.120.167.127 126864 port 221 126864 unique_id port 126864 remote_ip 10.8.0.234 126865 username mostafa_es78 126865 unique_id port 126865 terminate_cause User-Request 126865 bytes_out 139952 126865 bytes_in 955908 126865 station_ip 178.236.35.96 126865 port 15730034 126865 nas_port_type Virtual 126865 remote_ip 5.5.5.255 126866 username houshang 126866 kill_reason Another user logged on this global unique id 126866 mac 126866 bytes_out 0 126866 bytes_in 0 126866 station_ip 5.119.228.61 126866 port 228 126866 unique_id port 126866 remote_ip 10.8.0.22 126869 username hashtadani3 126869 mac 126869 bytes_out 0 126869 bytes_in 0 126869 station_ip 37.129.73.24 126869 port 137 126869 unique_id port 126869 remote_ip 10.8.1.94 126870 username hashtadani3 126870 mac 126870 bytes_out 0 126870 bytes_in 0 126870 station_ip 37.129.73.24 126870 port 137 126870 unique_id port 126870 remote_ip 10.8.1.94 126881 username hashtadani3 126881 mac 126833 username hashtadani3 126833 mac 126833 bytes_out 0 126833 bytes_in 0 126833 station_ip 37.129.73.24 126833 port 219 126833 unique_id port 126833 remote_ip 10.8.0.154 126834 username hashtadani3 126834 mac 126834 bytes_out 0 126834 bytes_in 0 126834 station_ip 37.129.73.24 126834 port 135 126834 unique_id port 126834 remote_ip 10.8.1.94 126835 username hashtadani3 126835 mac 126835 bytes_out 0 126835 bytes_in 0 126835 station_ip 37.129.73.24 126835 port 219 126835 unique_id port 126835 remote_ip 10.8.0.154 126839 username hashtadani3 126839 mac 126839 bytes_out 0 126839 bytes_in 0 126839 station_ip 37.129.73.24 126839 port 219 126839 unique_id port 126839 remote_ip 10.8.0.154 126842 username hashtadani3 126842 mac 126842 bytes_out 0 126842 bytes_in 0 126842 station_ip 37.129.73.24 126842 port 219 126842 unique_id port 126842 remote_ip 10.8.0.154 126843 username hashtadani3 126843 mac 126843 bytes_out 0 126843 bytes_in 0 126843 station_ip 37.129.73.24 126843 port 228 126843 unique_id port 126843 remote_ip 10.8.0.154 126849 username hashtadani3 126849 kill_reason Maximum check online fails reached 126849 mac 126849 bytes_out 0 126849 bytes_in 0 126849 station_ip 37.129.73.24 126849 port 135 126849 unique_id port 126852 username hashtadani3 126852 mac 126852 bytes_out 0 126852 bytes_in 0 126852 station_ip 37.129.73.24 126852 port 219 126852 unique_id port 126852 remote_ip 10.8.0.154 126853 username hashtadani3 126853 mac 126853 bytes_out 0 126853 bytes_in 0 126853 station_ip 37.129.73.24 126853 port 219 126853 unique_id port 126853 remote_ip 10.8.0.154 126854 username hashtadani3 126854 mac 126854 bytes_out 0 126854 bytes_in 0 126854 station_ip 37.129.73.24 126854 port 219 126854 unique_id port 126854 remote_ip 10.8.0.154 126858 username hashtadani3 126858 kill_reason Maximum check online fails reached 126858 mac 126858 bytes_out 0 126858 bytes_in 0 126858 station_ip 37.129.73.24 126858 port 136 126858 unique_id port 126859 username sabaghnezhad 126859 mac 126859 bytes_out 10642967 126859 bytes_in 528215 126859 station_ip 37.129.39.210 126859 port 221 126859 unique_id port 126859 remote_ip 10.8.0.186 126861 username hashtadani3 126861 mac 126861 bytes_out 0 126861 bytes_in 0 126861 station_ip 37.129.73.24 126861 port 219 126861 unique_id port 126861 remote_ip 10.8.0.154 126862 username hashtadani3 126862 mac 126862 bytes_out 2346 126862 bytes_in 5125 126862 station_ip 37.129.73.24 126862 port 221 126862 unique_id port 126862 remote_ip 10.8.0.154 126863 username mostafa_es78 126863 unique_id port 126863 terminate_cause User-Request 126863 bytes_out 269920 126863 bytes_in 875745 126863 station_ip 5.126.17.199 126863 port 15730033 126863 nas_port_type Virtual 126863 remote_ip 5.5.5.152 126871 username hashtadani3 126871 mac 126871 bytes_out 0 126871 bytes_in 0 126871 station_ip 37.129.73.24 126871 port 137 126871 unique_id port 126871 remote_ip 10.8.1.94 126872 username malekpoir 126872 mac 126872 bytes_out 4096058 126872 bytes_in 35160513 126872 station_ip 5.119.182.142 126872 port 131 126872 unique_id port 126872 remote_ip 10.8.1.54 126875 username forozande 126875 mac 126875 bytes_out 299547 126875 bytes_in 1493988 126875 station_ip 83.122.54.188 126875 port 221 126875 unique_id port 126875 remote_ip 10.8.0.74 126878 username aminvpn 126878 unique_id port 126878 terminate_cause User-Request 126878 bytes_out 1766630 126878 bytes_in 4532608 126878 station_ip 151.238.246.78 126878 port 15730036 126845 remote_ip 10.8.0.154 126846 username hashtadani3 126846 mac 126846 bytes_out 0 126846 bytes_in 0 126846 station_ip 37.129.73.24 126846 port 136 126846 unique_id port 126846 remote_ip 10.8.1.94 126848 username hashtadani3 126848 mac 126848 bytes_out 0 126848 bytes_in 0 126848 station_ip 37.129.73.24 126848 port 219 126848 unique_id port 126848 remote_ip 10.8.0.154 126850 username hashtadani3 126850 mac 126850 bytes_out 0 126850 bytes_in 0 126850 station_ip 37.129.73.24 126850 port 219 126850 unique_id port 126850 remote_ip 10.8.0.154 126851 username hashtadani3 126851 mac 126851 bytes_out 0 126851 bytes_in 0 126851 station_ip 37.129.73.24 126851 port 219 126851 unique_id port 126851 remote_ip 10.8.0.154 126857 username hashtadani3 126857 mac 126857 bytes_out 0 126857 bytes_in 0 126857 station_ip 37.129.73.24 126857 port 219 126857 unique_id port 126857 remote_ip 10.8.0.154 126860 username sedighe 126860 mac 126860 bytes_out 252636 126860 bytes_in 924312 126860 station_ip 83.122.176.146 126860 port 223 126860 unique_id port 126860 remote_ip 10.8.0.146 126867 username mansour 126867 mac 126867 bytes_out 0 126867 bytes_in 0 126867 station_ip 5.119.1.0 126867 port 229 126867 unique_id port 126867 remote_ip 10.8.0.30 126868 username mohammadjavad 126868 mac 126868 bytes_out 807160 126868 bytes_in 14179006 126868 station_ip 83.122.6.38 126868 port 219 126868 unique_id port 126868 remote_ip 10.8.0.142 126873 username hashtadani3 126873 mac 126873 bytes_out 0 126873 bytes_in 0 126873 station_ip 37.129.73.24 126873 port 137 126873 unique_id port 126873 remote_ip 10.8.1.94 126874 username hashtadani3 126874 mac 126874 bytes_out 0 126874 bytes_in 0 126874 station_ip 37.129.73.24 126874 port 219 126874 unique_id port 126874 remote_ip 10.8.0.154 126876 username hashtadani3 126876 mac 126876 bytes_out 0 126876 bytes_in 0 126876 station_ip 37.129.73.24 126876 port 219 126876 unique_id port 126876 remote_ip 10.8.0.154 126877 username hashtadani3 126877 mac 126877 bytes_out 0 126877 bytes_in 0 126877 station_ip 37.129.73.24 126877 port 219 126877 unique_id port 126877 remote_ip 10.8.0.154 126879 username hashtadani3 126879 mac 126879 bytes_out 0 126879 bytes_in 0 126879 station_ip 37.129.73.24 126879 port 219 126879 unique_id port 126879 remote_ip 10.8.0.154 126880 username abravesh 126880 unique_id port 126880 terminate_cause Lost-Carrier 126880 bytes_out 373730 126880 bytes_in 1234263 126880 station_ip 5.119.178.89 126880 port 15730035 126880 nas_port_type Virtual 126880 remote_ip 5.5.5.136 126882 username reza2742 126882 kill_reason Relative expiration date has reached 126882 unique_id port 126882 bytes_out 0 126882 bytes_in 0 126882 station_ip 37.129.48.85 126882 port 15730038 126882 nas_port_type Virtual 126885 username hashtadani3 126885 mac 126885 bytes_out 0 126885 bytes_in 0 126885 station_ip 37.129.73.24 126885 port 219 126885 unique_id port 126885 remote_ip 10.8.0.154 126890 username reza2742 126890 kill_reason Relative expiration date has reached 126890 unique_id port 126890 bytes_out 0 126890 bytes_in 0 126890 station_ip 37.129.48.85 126890 port 15730044 126890 nas_port_type Virtual 126892 username hashtadani3 126892 mac 126892 bytes_out 2535 126892 bytes_in 4865 126892 station_ip 37.129.73.24 126892 port 219 126892 unique_id port 126892 remote_ip 10.8.0.154 126894 username reza2742 126894 kill_reason Relative expiration date has reached 126894 unique_id port 126894 bytes_out 0 126894 bytes_in 0 126878 nas_port_type Virtual 126878 remote_ip 5.5.5.94 126888 username reza2742 126888 kill_reason Relative expiration date has reached 126888 unique_id port 126888 bytes_out 0 126888 bytes_in 0 126888 station_ip 37.129.48.85 126888 port 15730042 126888 nas_port_type Virtual 126891 username reza2742 126891 kill_reason Relative expiration date has reached 126891 unique_id port 126891 bytes_out 0 126891 bytes_in 0 126891 station_ip 37.129.48.85 126891 port 15730045 126891 nas_port_type Virtual 126895 username reza2742 126895 kill_reason Relative expiration date has reached 126895 unique_id port 126895 bytes_out 0 126895 bytes_in 0 126895 station_ip 37.129.48.85 126895 port 15730048 126895 nas_port_type Virtual 126898 username hashtadani3 126898 mac 126898 bytes_out 0 126898 bytes_in 0 126898 station_ip 37.129.73.24 126898 port 219 126898 unique_id port 126898 remote_ip 10.8.0.154 126903 username barzegar 126903 mac 126903 bytes_out 0 126903 bytes_in 0 126903 station_ip 5.120.62.196 126903 port 131 126903 unique_id port 126903 remote_ip 10.8.1.174 126912 username houshang 126912 mac 126912 bytes_out 0 126912 bytes_in 0 126912 station_ip 5.119.228.61 126912 port 228 126912 unique_id port 126915 username hashtadani3 126915 mac 126915 bytes_out 0 126915 bytes_in 0 126915 station_ip 83.122.12.252 126915 port 131 126915 unique_id port 126915 remote_ip 10.8.1.94 126916 username mostafa_es78 126916 unique_id port 126916 terminate_cause User-Request 126916 bytes_out 86386660 126916 bytes_in 3063347450 126916 station_ip 5.125.174.137 126916 port 15730037 126916 nas_port_type Virtual 126916 remote_ip 5.5.5.108 126919 username barzegar 126919 mac 126919 bytes_out 0 126919 bytes_in 0 126919 station_ip 5.120.62.196 126919 port 137 126919 unique_id port 126919 remote_ip 10.8.1.174 126923 username hashtadani3 126923 mac 126923 bytes_out 0 126923 bytes_in 0 126923 station_ip 5.211.144.177 126923 port 228 64005 username arezoo 64005 kill_reason Maximum check online fails reached 64005 mac 5.238.59.75:49298: Unknown host 64005 bytes_out 0 64005 bytes_in 0 64005 station_ip 5.238.59.75:49298 64005 port 1017 64005 unique_id port 126923 unique_id port 126923 remote_ip 10.8.0.154 126931 username hashtadani3 126931 mac 126931 bytes_out 0 126931 bytes_in 0 126931 station_ip 5.211.144.177 126931 port 228 126931 unique_id port 126931 remote_ip 10.8.0.154 126938 username mosi 126938 mac 126938 bytes_out 0 126938 bytes_in 0 126938 station_ip 89.47.129.16 126938 port 232 126938 unique_id port 126939 username hashtadani3 126939 mac 126939 bytes_out 0 126939 bytes_in 0 126939 station_ip 5.211.144.177 126939 port 131 126939 unique_id port 126939 remote_ip 10.8.1.94 126943 username hashtadani3 126943 mac 126943 bytes_out 0 126943 bytes_in 0 126943 station_ip 5.211.144.177 126943 port 228 126943 unique_id port 126943 remote_ip 10.8.0.154 126945 username hashtadani3 126945 mac 126945 bytes_out 0 126945 bytes_in 0 126945 station_ip 5.211.144.177 126945 port 228 126945 unique_id port 126945 remote_ip 10.8.0.154 126947 username hashtadani3 126947 mac 126947 bytes_out 0 126947 bytes_in 0 126947 station_ip 5.211.144.177 126947 port 228 126947 unique_id port 126947 remote_ip 10.8.0.154 126949 username hashtadani3 126949 mac 126949 bytes_out 0 126949 bytes_in 0 126949 station_ip 5.211.144.177 126949 port 228 126949 unique_id port 126949 remote_ip 10.8.0.154 126953 username hashtadani3 126953 kill_reason Maximum number of concurrent logins reached 126953 mac 126953 bytes_out 0 126953 bytes_in 0 126881 bytes_out 0 126881 bytes_in 0 126881 station_ip 37.129.73.24 126881 port 219 126881 unique_id port 126881 remote_ip 10.8.0.154 126883 username hashtadani3 126883 mac 126883 bytes_out 0 126883 bytes_in 0 126883 station_ip 37.129.73.24 126883 port 219 126883 unique_id port 126883 remote_ip 10.8.0.154 126884 username reza2742 126884 kill_reason Relative expiration date has reached 126884 unique_id port 126884 bytes_out 0 126884 bytes_in 0 126884 station_ip 37.129.48.85 126884 port 15730039 126884 nas_port_type Virtual 126886 username mosi 126886 kill_reason Another user logged on this global unique id 126886 mac 126886 bytes_out 0 126886 bytes_in 0 126886 station_ip 89.47.129.16 126886 port 232 126886 unique_id port 126887 username reza2742 126887 kill_reason Relative expiration date has reached 126887 unique_id port 126887 bytes_out 0 126887 bytes_in 0 126887 station_ip 37.129.48.85 126887 port 15730041 126887 nas_port_type Virtual 126889 username reza2742 126889 kill_reason Relative expiration date has reached 126889 unique_id port 126889 bytes_out 0 126889 bytes_in 0 126889 station_ip 37.129.48.85 126889 port 15730043 126889 nas_port_type Virtual 126893 username reza2742 126893 kill_reason Relative expiration date has reached 126893 unique_id port 126893 bytes_out 0 126893 bytes_in 0 126893 station_ip 37.129.48.85 126893 port 15730046 126893 nas_port_type Virtual 126899 username houshang 126899 kill_reason Another user logged on this global unique id 126899 mac 126899 bytes_out 0 126899 bytes_in 0 126899 station_ip 5.119.228.61 126899 port 228 126899 unique_id port 126900 username hashtadani3 126900 mac 126900 bytes_out 0 126900 bytes_in 0 126900 station_ip 37.129.73.24 126900 port 219 126900 unique_id port 126900 remote_ip 10.8.0.154 126902 username hashtadani3 126902 mac 126902 bytes_out 0 126902 bytes_in 0 126902 station_ip 37.129.73.24 126902 port 219 126902 unique_id port 126902 remote_ip 10.8.0.154 126906 username mansour 126906 mac 126906 bytes_out 2453305 126906 bytes_in 31480236 126906 station_ip 5.119.1.0 126906 port 229 126906 unique_id port 126906 remote_ip 10.8.0.30 126908 username hashtadani3 126908 mac 126908 bytes_out 0 126908 bytes_in 0 126908 station_ip 37.129.73.24 126908 port 219 126908 unique_id port 126908 remote_ip 10.8.0.154 126911 username hashtadani3 126911 mac 126911 bytes_out 0 126911 bytes_in 0 126911 station_ip 37.129.73.24 126911 port 131 126911 unique_id port 126911 remote_ip 10.8.1.94 126913 username alirezazadeh 126913 unique_id port 126913 terminate_cause Lost-Carrier 126913 bytes_out 617724 126913 bytes_in 13642050 126913 station_ip 5.120.57.43 126913 port 15730040 126913 nas_port_type Virtual 126913 remote_ip 5.5.5.114 126918 username hosseine 126918 kill_reason Another user logged on this global unique id 126918 mac 126918 bytes_out 0 126918 bytes_in 0 126918 station_ip 83.123.33.175 126918 port 225 126918 unique_id port 126918 remote_ip 10.8.0.238 126920 username hashtadani3 126920 mac 126920 bytes_out 0 126920 bytes_in 0 126920 station_ip 5.211.144.177 126920 port 228 126920 unique_id port 126920 remote_ip 10.8.0.154 126922 username kordestani 126922 mac 126922 bytes_out 1359011 126922 bytes_in 20668847 126922 station_ip 151.235.101.116 126922 port 131 126922 unique_id port 126922 remote_ip 10.8.1.98 126924 username zare 126924 kill_reason Another user logged on this global unique id 126924 mac 126924 bytes_out 0 126924 bytes_in 0 126924 station_ip 37.27.32.144 126924 port 219 126924 unique_id port 126924 remote_ip 10.8.0.18 126926 username barzegar 126926 mac 126926 bytes_out 0 126894 station_ip 37.129.48.85 126894 port 15730047 126894 nas_port_type Virtual 126896 username hashtadani3 126896 mac 126896 bytes_out 0 126896 bytes_in 0 126896 station_ip 37.129.73.24 126896 port 219 126896 unique_id port 126896 remote_ip 10.8.0.154 126897 username reza2742 126897 kill_reason Relative expiration date has reached 126897 unique_id port 126897 bytes_out 0 126897 bytes_in 0 126897 station_ip 37.129.48.85 126897 port 15730049 126897 nas_port_type Virtual 126901 username hashtadani3 126901 mac 126901 bytes_out 0 126901 bytes_in 0 126901 station_ip 37.129.73.24 126901 port 219 126901 unique_id port 126901 remote_ip 10.8.0.154 126904 username hashtadani3 126904 mac 126904 bytes_out 0 126904 bytes_in 0 126904 station_ip 37.129.73.24 126904 port 219 126904 unique_id port 126904 remote_ip 10.8.0.154 126905 username hashtadani3 126905 mac 126905 bytes_out 0 126905 bytes_in 0 126905 station_ip 37.129.73.24 126905 port 219 126905 unique_id port 126905 remote_ip 10.8.0.154 126907 username mirzaei 126907 kill_reason Another user logged on this global unique id 126907 mac 126907 bytes_out 0 126907 bytes_in 0 126907 station_ip 5.120.175.250 126907 port 201 126907 unique_id port 126909 username hashtadani3 126909 mac 126909 bytes_out 0 126909 bytes_in 0 126909 station_ip 37.129.73.24 126909 port 219 126909 unique_id port 126909 remote_ip 10.8.0.154 126910 username hashtadani3 126910 mac 126910 bytes_out 0 126910 bytes_in 0 126910 station_ip 37.129.73.24 126910 port 219 126910 unique_id port 126910 remote_ip 10.8.0.154 126914 username hashtadani3 126914 mac 126914 bytes_out 0 126914 bytes_in 0 126914 station_ip 37.129.73.24 126914 port 131 126914 unique_id port 126914 remote_ip 10.8.1.94 126917 username hashtadani3 126917 mac 126917 bytes_out 0 126917 bytes_in 0 126917 station_ip 83.122.12.252 126917 port 131 126917 unique_id port 126917 remote_ip 10.8.1.94 126921 username hashtadani3 126921 mac 126921 bytes_out 0 126921 bytes_in 0 126921 station_ip 5.211.144.177 126921 port 228 126921 unique_id port 126921 remote_ip 10.8.0.154 126925 username hashtadani3 126925 mac 126925 bytes_out 0 126925 bytes_in 0 126925 station_ip 5.211.144.177 126925 port 137 126925 unique_id port 126925 remote_ip 10.8.1.94 126927 username mirzaei 126927 mac 126927 bytes_out 0 126927 bytes_in 0 126927 station_ip 5.120.175.250 126927 port 201 126927 unique_id port 126929 username mirzaei 126929 mac 126929 bytes_out 0 126929 bytes_in 0 126929 station_ip 5.120.175.250 126929 port 228 126929 unique_id port 126929 remote_ip 10.8.0.66 126932 username hashtadani3 126932 mac 126932 bytes_out 0 126932 bytes_in 0 126932 station_ip 5.211.144.177 126932 port 228 126932 unique_id port 126932 remote_ip 10.8.0.154 126934 username hashtadani3 126934 mac 126934 bytes_out 0 126934 bytes_in 0 126934 station_ip 5.211.144.177 126934 port 131 126934 unique_id port 126934 remote_ip 10.8.1.94 126942 username hashtadani3 126942 mac 126942 bytes_out 0 126942 bytes_in 0 126942 station_ip 5.211.144.177 126942 port 131 126942 unique_id port 126942 remote_ip 10.8.1.94 126948 username barzegar 126948 mac 126948 bytes_out 0 126948 bytes_in 0 126948 station_ip 5.120.62.196 126948 port 230 126948 unique_id port 126948 remote_ip 10.8.0.234 126950 username hashtadani3 126950 mac 126950 bytes_out 0 126950 bytes_in 0 126950 station_ip 5.211.144.177 126950 port 230 126950 unique_id port 126926 bytes_in 0 126926 station_ip 5.120.62.196 126926 port 131 126926 unique_id port 126926 remote_ip 10.8.1.174 126928 username hashtadani3 126928 mac 126928 bytes_out 0 126928 bytes_in 0 126928 station_ip 5.211.144.177 126928 port 131 126928 unique_id port 126928 remote_ip 10.8.1.94 126930 username amirabbas 126930 unique_id port 126930 terminate_cause User-Request 126930 bytes_out 19072129 126930 bytes_in 478851218 126930 station_ip 188.245.90.139 126930 port 15730032 126930 nas_port_type Virtual 126930 remote_ip 5.5.5.110 126933 username aminvpn 126933 unique_id port 126933 terminate_cause User-Request 126933 bytes_out 71539 126933 bytes_in 184281 126933 station_ip 109.125.128.116 126933 port 15730050 126933 nas_port_type Virtual 126933 remote_ip 5.5.5.118 126935 username hashtadani3 126935 kill_reason Maximum check online fails reached 126935 mac 126935 bytes_out 0 126935 bytes_in 0 126935 station_ip 5.211.144.177 126935 port 201 126935 unique_id port 126936 username hashtadani3 126936 mac 126936 bytes_out 0 126936 bytes_in 0 126936 station_ip 5.211.144.177 126936 port 131 126936 unique_id port 126936 remote_ip 10.8.1.94 126937 username hashtadani3 126937 mac 126937 bytes_out 0 126937 bytes_in 0 126937 station_ip 5.211.144.177 126937 port 131 126937 unique_id port 126937 remote_ip 10.8.1.94 126940 username hashtadani3 126940 mac 126940 bytes_out 0 126940 bytes_in 0 126940 station_ip 5.211.144.177 126940 port 131 126940 unique_id port 126940 remote_ip 10.8.1.94 126941 username barzegar 126941 mac 126941 bytes_out 0 126941 bytes_in 0 126941 station_ip 5.120.62.196 126941 port 228 126941 unique_id port 126941 remote_ip 10.8.0.234 126944 username hashtadani3 126944 mac 126944 bytes_out 0 126944 bytes_in 0 126944 station_ip 5.211.144.177 126944 port 131 126944 unique_id port 126944 remote_ip 10.8.1.94 126946 username hashtadani3 126946 mac 126946 bytes_out 0 126946 bytes_in 0 126946 station_ip 5.211.144.177 126946 port 131 126946 unique_id port 126946 remote_ip 10.8.1.94 126952 username hashtadani3 126952 mac 126952 bytes_out 0 126952 bytes_in 0 126952 station_ip 5.211.144.177 126952 port 131 126952 unique_id port 126952 remote_ip 10.8.1.94 126954 username hashtadani3 126954 kill_reason Maximum number of concurrent logins reached 126954 mac 126954 bytes_out 0 126954 bytes_in 0 126954 station_ip 5.211.144.177 126954 port 131 126954 unique_id port 126962 username houshang 126962 mac 126962 bytes_out 863918 126962 bytes_in 12651083 126962 station_ip 5.119.108.197 126962 port 228 126962 unique_id port 126962 remote_ip 10.8.0.22 126967 username barzegar 126967 mac 126967 bytes_out 40859 126967 bytes_in 46735 126967 station_ip 5.120.62.196 126967 port 131 126967 unique_id port 126967 remote_ip 10.8.1.174 126968 username ahmadipour 126968 kill_reason Relative expiration date has reached 126968 unique_id port 126968 bytes_out 0 126968 bytes_in 0 126968 station_ip 83.122.231.194 126968 port 15730053 126968 nas_port_type Virtual 126973 username hosseine 126973 mac 126973 bytes_out 0 126973 bytes_in 0 126973 station_ip 83.123.33.175 126973 port 225 126973 unique_id port 126974 username moradi 126974 mac 126974 bytes_out 1628 126974 bytes_in 4328 126974 station_ip 37.129.61.39 126974 port 228 126974 unique_id port 126974 remote_ip 10.8.0.250 126979 username aminvpn 126979 unique_id port 126979 terminate_cause Lost-Carrier 126979 bytes_out 1183859 126979 bytes_in 14016974 126979 station_ip 109.125.128.116 126979 port 15730052 126979 nas_port_type Virtual 126950 remote_ip 10.8.0.154 126951 username hashtadani3 126951 mac 126951 bytes_out 0 126951 bytes_in 0 126951 station_ip 5.211.144.177 126951 port 230 126951 unique_id port 126951 remote_ip 10.8.0.154 126956 username hashtadani3 126956 mac 126956 bytes_out 1644 126956 bytes_in 5023 126956 station_ip 5.211.144.177 126956 port 232 126956 unique_id port 126956 remote_ip 10.8.0.154 126965 username zare 126965 kill_reason Another user logged on this global unique id 126965 mac 126965 bytes_out 0 126965 bytes_in 0 126965 station_ip 37.27.32.144 126965 port 219 126965 unique_id port 126966 username houshang 126966 mac 126966 bytes_out 585379 126966 bytes_in 7854381 126966 station_ip 5.119.108.197 126966 port 228 126966 unique_id port 126966 remote_ip 10.8.0.22 126970 username barzegar 126970 mac 126970 bytes_out 18372 126970 bytes_in 22869 126970 station_ip 5.120.62.196 126970 port 232 126970 unique_id port 126970 remote_ip 10.8.0.234 126975 username barzegar 126975 mac 126975 bytes_out 3489 126975 bytes_in 5081 126975 station_ip 5.120.62.196 126975 port 225 126975 unique_id port 126975 remote_ip 10.8.0.234 126980 username zare 126980 kill_reason Another user logged on this global unique id 126980 mac 126980 bytes_out 0 126980 bytes_in 0 126980 station_ip 37.27.32.144 126980 port 219 126980 unique_id port 126981 username aminvpn 126981 unique_id port 126981 terminate_cause Lost-Carrier 126981 bytes_out 1232247 126981 bytes_in 12006076 126981 station_ip 5.120.128.124 126981 port 15730054 126981 nas_port_type Virtual 126981 remote_ip 5.5.5.254 126986 username barzegar 126986 mac 126986 bytes_out 0 126986 bytes_in 0 126986 station_ip 5.120.62.196 126986 port 233 126986 unique_id port 126986 remote_ip 10.8.0.234 126988 username zare 126988 kill_reason Another user logged on this global unique id 126988 mac 126988 bytes_out 0 126988 bytes_in 0 126988 station_ip 37.27.32.144 126988 port 219 126988 unique_id port 126990 username ehsun 126990 mac 126990 bytes_out 0 126990 bytes_in 0 126990 station_ip 46.225.211.182 126990 port 228 126990 unique_id port 126990 remote_ip 10.8.0.162 126991 username barzegar 126991 mac 126991 bytes_out 0 126991 bytes_in 0 126991 station_ip 5.120.62.196 126991 port 234 126991 unique_id port 126991 remote_ip 10.8.0.234 126992 username mirzaei 126992 kill_reason Another user logged on this global unique id 126992 mac 126992 bytes_out 0 126992 bytes_in 0 126992 station_ip 5.120.175.250 126992 port 229 126992 unique_id port 126992 remote_ip 10.8.0.66 126998 username ehsun 126998 mac 126998 bytes_out 0 126998 bytes_in 0 126998 station_ip 46.225.211.182 126998 port 233 126998 unique_id port 126998 remote_ip 10.8.0.162 127000 username kamali1 127000 kill_reason Relative expiration date has reached 127000 mac 127000 bytes_out 0 127000 bytes_in 0 127000 station_ip 151.238.254.35 127000 port 234 127000 unique_id port 127001 username alihosseini1 127001 mac 127001 bytes_out 124257 127001 bytes_in 283171 127001 station_ip 5.119.41.46 127001 port 137 127001 unique_id port 127001 remote_ip 10.8.1.106 127003 username barzegar 127003 mac 127003 bytes_out 319979 127003 bytes_in 7471320 127003 station_ip 5.120.62.196 127003 port 131 127003 unique_id port 127003 remote_ip 10.8.1.174 127004 username barzegar 127004 mac 127004 bytes_out 0 127004 bytes_in 0 127004 station_ip 5.120.62.196 127004 port 131 127004 unique_id port 127004 remote_ip 10.8.1.174 127006 username barzegar 127006 mac 127006 bytes_out 0 127006 bytes_in 0 126953 station_ip 5.211.144.177 126953 port 233 126953 unique_id port 126955 username hashtadani3 126955 kill_reason Maximum check online fails reached 126955 mac 126955 bytes_out 0 126955 bytes_in 0 126955 station_ip 5.211.144.177 126955 port 230 126955 unique_id port 126957 username barzegar 126957 mac 126957 bytes_out 16771 126957 bytes_in 25690 126957 station_ip 5.120.62.196 126957 port 228 126957 unique_id port 126957 remote_ip 10.8.0.234 126958 username barzegar 126958 mac 126958 bytes_out 0 126958 bytes_in 0 126958 station_ip 5.120.62.196 126958 port 131 126958 unique_id port 126958 remote_ip 10.8.1.174 126959 username mohammadjavad 126959 mac 126959 bytes_out 361589 126959 bytes_in 3706966 126959 station_ip 83.122.113.90 126959 port 231 126959 unique_id port 126959 remote_ip 10.8.0.142 126960 username mosi 126960 mac 126960 bytes_out 2391 126960 bytes_in 5604 126960 station_ip 5.134.157.124 126960 port 131 126960 unique_id port 126960 remote_ip 10.8.1.86 126961 username barzegar 126961 mac 126961 bytes_out 0 126961 bytes_in 0 126961 station_ip 5.120.62.196 126961 port 131 126961 unique_id port 126961 remote_ip 10.8.1.174 126963 username mosi 126963 mac 126963 bytes_out 0 126963 bytes_in 0 126963 station_ip 5.134.157.124 126963 port 231 126963 unique_id port 126963 remote_ip 10.8.0.138 126964 username aminvpn 126964 unique_id port 126964 terminate_cause Lost-Carrier 126964 bytes_out 82552 126964 bytes_in 133797 126964 station_ip 109.125.128.116 126964 port 15730051 126964 nas_port_type Virtual 126964 remote_ip 5.5.5.130 126969 username mansur 126969 mac 126969 bytes_out 111312 126969 bytes_in 365004 126969 station_ip 5.119.219.10 126969 port 228 126969 unique_id port 126969 remote_ip 10.8.0.210 126971 username mansur 126971 mac 126971 bytes_out 0 126971 bytes_in 0 126971 station_ip 5.119.219.10 126971 port 131 126971 unique_id port 126971 remote_ip 10.8.1.194 126972 username barzegar 126972 mac 126972 bytes_out 2204 126972 bytes_in 4557 126972 station_ip 5.120.62.196 126972 port 228 126972 unique_id port 126972 remote_ip 10.8.0.234 126976 username barzegar 126976 mac 126976 bytes_out 0 126976 bytes_in 0 126976 station_ip 5.120.62.196 126976 port 131 126976 unique_id port 126976 remote_ip 10.8.1.174 126977 username barzegar 126977 kill_reason Maximum check online fails reached 126977 mac 126977 bytes_out 0 126977 bytes_in 0 126977 station_ip 5.120.62.196 126977 port 225 126977 unique_id port 126978 username barzegar 126978 mac 126978 bytes_out 0 126978 bytes_in 0 126978 station_ip 5.120.62.196 126978 port 131 126978 unique_id port 126978 remote_ip 10.8.1.174 126982 username ehsun 126982 mac 126982 bytes_out 0 126982 bytes_in 0 126982 station_ip 46.225.211.182 126982 port 233 126982 unique_id port 126982 remote_ip 10.8.0.162 126984 username forozande 126984 mac 126984 bytes_out 0 126984 bytes_in 0 126984 station_ip 37.129.201.158 126984 port 233 126984 unique_id port 126984 remote_ip 10.8.0.74 126993 username sade 126993 unique_id port 126993 terminate_cause User-Request 126993 bytes_out 10912762 126993 bytes_in 179463006 126993 station_ip 86.57.11.176 126993 port 15730031 126993 nas_port_type Virtual 126993 remote_ip 5.5.5.109 126994 username houshang 126994 kill_reason Another user logged on this global unique id 126994 mac 126994 bytes_out 0 126994 bytes_in 0 126994 station_ip 5.119.20.70 126994 port 232 126994 unique_id port 126994 remote_ip 10.8.0.22 127009 username ahmadipour 127438 username barzegar 126979 remote_ip 5.5.5.134 126983 username barzegar 126983 mac 126983 bytes_out 0 126983 bytes_in 0 126983 station_ip 5.120.62.196 126983 port 232 126983 unique_id port 126983 remote_ip 10.8.0.234 126985 username barzegar 126985 mac 126985 bytes_out 0 126985 bytes_in 0 126985 station_ip 5.120.62.196 126985 port 233 126985 unique_id port 126985 remote_ip 10.8.0.234 126987 username houshang 126987 mac 126987 bytes_out 0 126987 bytes_in 0 126987 station_ip 5.119.20.70 126987 port 232 126987 unique_id port 126987 remote_ip 10.8.0.22 126989 username barzegar 126989 mac 126989 bytes_out 0 126989 bytes_in 0 126989 station_ip 5.120.62.196 126989 port 233 126989 unique_id port 126989 remote_ip 10.8.0.234 126995 username zare 126995 kill_reason Another user logged on this global unique id 126995 mac 126995 bytes_out 0 126995 bytes_in 0 126995 station_ip 37.27.32.144 126995 port 219 126995 unique_id port 126996 username barzegar 126996 mac 126996 bytes_out 4912 126996 bytes_in 8172 126996 station_ip 5.120.62.196 126996 port 131 126996 unique_id port 126996 remote_ip 10.8.1.174 126997 username houshang 126997 mac 126997 bytes_out 0 126997 bytes_in 0 126997 station_ip 5.119.20.70 126997 port 232 126997 unique_id port 126999 username kamali1 126999 kill_reason Relative expiration date has reached 126999 mac 126999 bytes_out 0 126999 bytes_in 0 126999 station_ip 151.238.254.35 126999 port 234 126999 unique_id port 127002 username ehsun 127002 mac 127002 bytes_out 430544 127002 bytes_in 417981 127002 station_ip 46.225.211.182 127002 port 228 127002 unique_id port 127002 remote_ip 10.8.0.162 127005 username mohammadjavad 127005 mac 127005 bytes_out 915988 127005 bytes_in 12912613 127005 station_ip 37.129.66.74 127005 port 232 127005 unique_id port 127005 remote_ip 10.8.0.142 127007 username barzegar 127007 mac 127007 bytes_out 0 127007 bytes_in 0 127007 station_ip 5.120.62.196 127007 port 228 127007 unique_id port 127007 remote_ip 10.8.0.234 127008 username ahmadipour 127008 kill_reason Relative expiration date has reached 127008 unique_id port 127008 bytes_out 0 127008 bytes_in 0 127008 station_ip 83.122.132.42 127008 port 15730056 127008 nas_port_type Virtual 127011 username barzegar 127011 mac 127011 bytes_out 0 127011 bytes_in 0 127011 station_ip 5.120.62.196 127011 port 131 127011 unique_id port 127011 remote_ip 10.8.1.174 127013 username kordestani 127013 mac 127013 bytes_out 0 127013 bytes_in 0 127013 station_ip 37.129.69.181 127013 port 235 127013 unique_id port 127013 remote_ip 10.8.0.134 127015 username zare 127015 kill_reason Another user logged on this global unique id 127015 mac 127015 bytes_out 0 127015 bytes_in 0 127015 station_ip 37.27.32.144 127015 port 219 127015 unique_id port 127022 username barzegar 127022 mac 127022 bytes_out 0 127022 bytes_in 0 127022 station_ip 5.120.62.196 127022 port 233 127022 unique_id port 127022 remote_ip 10.8.0.234 127025 username alihosseini1 127025 mac 127025 bytes_out 1332783 127025 bytes_in 21722202 127025 station_ip 5.120.177.168 127025 port 232 127025 unique_id port 127025 remote_ip 10.8.0.166 127026 username mirzaei 127026 kill_reason Another user logged on this global unique id 127026 mac 127026 bytes_out 0 127026 bytes_in 0 127026 station_ip 5.120.175.250 127026 port 229 127026 unique_id port 127028 username barzegar 127028 mac 127028 bytes_out 2907 127028 bytes_in 5120 127028 station_ip 5.120.62.196 127028 port 228 127028 unique_id port 127028 remote_ip 10.8.0.234 127006 station_ip 5.120.62.196 127006 port 131 127006 unique_id port 127006 remote_ip 10.8.1.174 127014 username barzegar 127014 mac 127014 bytes_out 487871 127014 bytes_in 9355461 127014 station_ip 5.120.62.196 127014 port 234 127014 unique_id port 127014 remote_ip 10.8.0.234 127016 username forozande 127016 mac 127016 bytes_out 943486 127016 bytes_in 13313890 127016 station_ip 83.123.193.35 127016 port 233 127016 unique_id port 127016 remote_ip 10.8.0.74 127017 username barzegar 127017 mac 127017 bytes_out 0 127017 bytes_in 0 127017 station_ip 5.120.62.196 127017 port 131 127017 unique_id port 127017 remote_ip 10.8.1.174 127021 username mosi 127021 mac 127021 bytes_out 0 127021 bytes_in 0 127021 station_ip 5.134.157.124 127021 port 231 127021 unique_id port 127021 remote_ip 10.8.0.138 127024 username forozande 127024 mac 127024 bytes_out 1597137 127024 bytes_in 27301012 64111 username arezoo 64111 kill_reason Maximum check online fails reached 64111 mac 5.238.59.75:49189: Unknown host 64111 bytes_out 0 64111 bytes_in 0 64111 station_ip 5.238.59.75:49189 64111 port 1017 64111 unique_id port 127024 station_ip 37.129.72.99 127024 port 228 127024 unique_id port 127024 remote_ip 10.8.0.74 127031 username barzegar 127031 mac 127031 bytes_out 0 127031 bytes_in 0 127031 station_ip 5.120.62.196 127031 port 137 127031 unique_id port 127031 remote_ip 10.8.1.174 127035 username mosi 127035 mac 127035 bytes_out 1271700 127035 bytes_in 5444826 127035 station_ip 5.134.157.124 127035 port 234 127035 unique_id port 127035 remote_ip 10.8.0.138 127036 username mosi 127036 mac 127036 bytes_out 0 127036 bytes_in 0 127036 station_ip 5.62.218.100 127036 port 228 127036 unique_id port 127036 remote_ip 10.8.0.138 127038 username aminvpn 127038 mac 127038 bytes_out 0 127038 bytes_in 0 127038 station_ip 83.123.51.79 127038 port 221 127038 unique_id port 127038 remote_ip 10.8.0.14 127039 username barzegar 127039 mac 127039 bytes_out 0 127039 bytes_in 0 127039 station_ip 5.120.62.196 127039 port 232 127039 unique_id port 127039 remote_ip 10.8.0.234 127040 username zare 127040 kill_reason Another user logged on this global unique id 127040 mac 127040 bytes_out 0 127040 bytes_in 0 127040 station_ip 37.27.32.144 127040 port 219 127040 unique_id port 127043 username barzegar 127043 kill_reason Another user logged on this global unique id 127043 mac 127043 bytes_out 0 127043 bytes_in 0 127043 station_ip 5.120.36.32 127043 port 131 127043 unique_id port 127043 remote_ip 10.8.1.174 127044 username zare 127044 mac 127044 bytes_out 0 127044 bytes_in 0 127044 station_ip 37.27.32.144 127044 port 219 127044 unique_id port 127045 username aminvpn 127045 mac 127045 bytes_out 163319 127045 bytes_in 546946 127045 station_ip 83.123.51.79 127045 port 228 127045 unique_id port 127045 remote_ip 10.8.0.14 127046 username mostafa_es78 127046 unique_id port 127046 terminate_cause User-Request 127046 bytes_out 2889908 127046 bytes_in 16867097 127046 station_ip 5.125.194.151 127046 port 15730059 127046 nas_port_type Virtual 127046 remote_ip 5.5.5.137 127049 username barzegar 127049 mac 127049 bytes_out 0 127049 bytes_in 0 127049 station_ip 5.120.36.32 127049 port 131 127049 unique_id port 127051 username aminvpn 127051 mac 127051 bytes_out 33673 127051 bytes_in 59123 127051 station_ip 83.123.51.79 127051 port 221 127051 unique_id port 127051 remote_ip 10.8.0.14 127052 username aminvpn 127052 mac 127052 bytes_out 22236 127052 bytes_in 81983 127009 kill_reason Relative expiration date has reached 127009 unique_id port 127009 bytes_out 0 127009 bytes_in 0 127009 station_ip 83.122.132.42 127009 port 15730057 127009 nas_port_type Virtual 127010 username barzegar 127010 mac 127010 bytes_out 0 127010 bytes_in 0 127010 station_ip 5.120.62.196 127010 port 232 127010 unique_id port 127010 remote_ip 10.8.0.234 127012 username mahdiyehalizadeh 127012 mac 127012 bytes_out 316374 127012 bytes_in 4676201 127012 station_ip 83.123.0.37 127012 port 228 127012 unique_id port 127012 remote_ip 10.8.0.82 127018 username mosi 127018 mac 127018 bytes_out 0 127018 bytes_in 0 127018 station_ip 5.134.157.124 127018 port 231 127018 unique_id port 127018 remote_ip 10.8.0.138 127019 username shokokian 127019 unique_id port 127019 terminate_cause User-Request 127019 bytes_out 155424 127019 bytes_in 1372036 127019 station_ip 151.238.230.58 127019 port 15730058 127019 nas_port_type Virtual 127019 remote_ip 5.5.5.102 127020 username barzegar 127020 mac 127020 bytes_out 0 127020 bytes_in 0 127020 station_ip 5.120.62.196 127020 port 233 127020 unique_id port 127020 remote_ip 10.8.0.234 127023 username barzegar 127023 mac 127023 bytes_out 0 127023 bytes_in 0 127023 station_ip 5.120.62.196 127023 port 233 127023 unique_id port 127023 remote_ip 10.8.0.234 127027 username alihosseini1 127027 mac 127027 bytes_out 0 127027 bytes_in 0 127027 station_ip 5.120.177.168 127027 port 232 127027 unique_id port 127027 remote_ip 10.8.0.166 127029 username barzegar 127029 mac 127029 bytes_out 0 127029 bytes_in 0 127029 station_ip 5.120.62.196 127029 port 131 127029 unique_id port 127029 remote_ip 10.8.1.174 127033 username barzegar 127033 mac 127033 bytes_out 0 127033 bytes_in 0 127033 station_ip 5.120.62.196 127033 port 232 127033 unique_id port 127033 remote_ip 10.8.0.234 127037 username alihosseini1 127037 mac 127037 bytes_out 0 127037 bytes_in 0 127037 station_ip 5.120.177.168 127037 port 131 127037 unique_id port 127037 remote_ip 10.8.1.106 127041 username mosi 127041 mac 127041 bytes_out 0 127041 bytes_in 0 127041 station_ip 5.134.157.21 127041 port 233 127041 unique_id port 127041 remote_ip 10.8.0.138 127047 username aminvpn 127047 mac 127047 bytes_out 0 127047 bytes_in 0 127047 station_ip 151.238.239.64 127047 port 219 127047 unique_id port 127047 remote_ip 10.8.0.14 127050 username aminvpn 127050 mac 127050 bytes_out 0 127050 bytes_in 0 127050 station_ip 151.238.239.64 127050 port 219 127050 unique_id port 127050 remote_ip 10.8.0.14 127057 username aminvpn 127057 mac 127057 bytes_out 0 127057 bytes_in 0 127057 station_ip 151.238.239.64 127057 port 228 127057 unique_id port 127057 remote_ip 10.8.0.14 127067 username aminvpn 127067 mac 127067 bytes_out 0 127067 bytes_in 0 127067 station_ip 83.123.51.79 127067 port 221 127067 unique_id port 127067 remote_ip 10.8.0.14 127068 username aminvpn 127068 mac 127068 bytes_out 0 127068 bytes_in 0 127068 station_ip 151.238.239.64 127068 port 219 127068 unique_id port 127068 remote_ip 10.8.0.14 127071 username barzegar 127071 mac 127071 bytes_out 0 127071 bytes_in 0 127071 station_ip 5.120.36.32 127071 port 137 127071 unique_id port 127071 remote_ip 10.8.1.174 127073 username barzegar 127073 mac 127073 bytes_out 0 127073 bytes_in 0 127073 station_ip 5.120.36.32 127073 port 137 127073 unique_id port 127073 remote_ip 10.8.1.174 127075 username forozande 127075 mac 127030 username aminvpn 127030 unique_id port 127030 terminate_cause User-Request 127030 bytes_out 48586 127030 bytes_in 146844 127030 station_ip 109.125.128.116 127030 port 15730060 127030 nas_port_type Virtual 127030 remote_ip 5.5.5.254 127032 username hamid.e 127032 unique_id port 127032 terminate_cause User-Request 127032 bytes_out 3638260 127032 bytes_in 68293613 127032 station_ip 37.27.29.14 127032 port 15730055 127032 nas_port_type Virtual 127032 remote_ip 5.5.5.255 127034 username forozande 127034 mac 127034 bytes_out 1125818 127034 bytes_in 21220105 127034 station_ip 37.129.225.194 127034 port 228 127034 unique_id port 127034 remote_ip 10.8.0.74 127042 username mosi 127042 mac 127042 bytes_out 0 127042 bytes_in 0 127042 station_ip 5.134.157.21 127042 port 221 127042 unique_id port 127042 remote_ip 10.8.0.138 127048 username aminvpn 127048 mac 127048 bytes_out 0 127048 bytes_in 0 127048 station_ip 83.123.51.79 127048 port 221 127048 unique_id port 127048 remote_ip 10.8.0.14 127055 username aminvpn 127055 unique_id port 127055 terminate_cause User-Request 127055 bytes_out 53347 127055 bytes_in 367226 127055 station_ip 109.125.128.116 127055 port 15730061 127055 nas_port_type Virtual 127055 remote_ip 5.5.5.255 127058 username aminvpn 127058 mac 127058 bytes_out 0 127058 bytes_in 0 127058 station_ip 83.123.51.79 127058 port 221 127058 unique_id port 127058 remote_ip 10.8.0.14 127059 username aminvpn 127059 mac 127059 bytes_out 0 127059 bytes_in 0 127059 station_ip 151.238.239.64 127059 port 228 127059 unique_id port 127059 remote_ip 10.8.0.14 127061 username aminvpn 127061 unique_id port 127061 terminate_cause Lost-Carrier 127061 bytes_out 36454 127061 bytes_in 326616 127061 station_ip 109.125.128.116 127061 port 15730062 127061 nas_port_type Virtual 127061 remote_ip 5.5.5.255 127062 username aminvpn 127062 mac 127062 bytes_out 0 127062 bytes_in 0 127062 station_ip 83.123.51.79 127062 port 221 127062 unique_id port 127062 remote_ip 10.8.0.14 127066 username barzegar 127066 mac 127066 bytes_out 0 127066 bytes_in 0 127066 station_ip 5.120.36.32 127066 port 137 127066 unique_id port 127066 remote_ip 10.8.1.174 127069 username mosi 127069 mac 127069 bytes_out 501986 127069 bytes_in 2590100 127069 station_ip 5.134.157.21 127069 port 232 127069 unique_id port 127069 remote_ip 10.8.0.138 127074 username houshang 127074 mac 127074 bytes_out 2275294 127074 bytes_in 25599049 127074 station_ip 5.119.20.70 127074 port 228 127074 unique_id port 127074 remote_ip 10.8.0.22 127077 username moradi 127077 mac 127077 bytes_out 111288 127077 bytes_in 830208 127077 station_ip 83.123.108.95 127077 port 219 127077 unique_id port 127077 remote_ip 10.8.0.250 127081 username barzegar 127081 mac 127081 bytes_out 0 127081 bytes_in 0 127081 station_ip 5.120.36.32 127081 port 137 127081 unique_id port 127081 remote_ip 10.8.1.174 127082 username mansur 127082 mac 127082 bytes_out 208805 127082 bytes_in 3124687 127082 station_ip 5.120.104.82 127082 port 233 127082 unique_id port 127082 remote_ip 10.8.0.210 127085 username barzegar 127085 mac 127085 bytes_out 0 127085 bytes_in 0 127085 station_ip 5.120.36.32 127085 port 137 127085 unique_id port 127085 remote_ip 10.8.1.174 127087 username jafari 127087 kill_reason Another user logged on this global unique id 127087 mac 127087 bytes_out 0 127087 bytes_in 0 127087 station_ip 89.32.98.208 127087 port 219 127087 unique_id port 127087 remote_ip 10.8.0.242 127104 username aminvpn 127104 mac 127104 bytes_out 39129 127052 station_ip 151.238.239.64 127052 port 219 127052 unique_id port 127052 remote_ip 10.8.0.14 127053 username barzegar 127053 mac 127053 bytes_out 0 127053 bytes_in 0 127053 station_ip 5.120.36.32 127053 port 131 127053 unique_id port 127053 remote_ip 10.8.1.174 127054 username barzegar 127054 kill_reason Maximum check online fails reached 127054 mac 127054 bytes_out 0 127054 bytes_in 0 127054 station_ip 5.120.36.32 127054 port 131 127054 unique_id port 127056 username aminvpn 127056 mac 127056 bytes_out 0 127056 bytes_in 0 127056 station_ip 83.123.51.79 127056 port 221 127056 unique_id port 127056 remote_ip 10.8.0.14 127060 username forozande 127060 mac 127060 bytes_out 433617 127060 bytes_in 6150050 127060 station_ip 37.129.138.172 127060 port 219 127060 unique_id port 127060 remote_ip 10.8.0.74 127063 username aminvpn 127063 mac 127063 bytes_out 0 127063 bytes_in 0 127063 station_ip 151.238.239.64 127063 port 219 127063 unique_id port 127063 remote_ip 10.8.0.14 127064 username aminvpn 127064 mac 127064 bytes_out 0 127064 bytes_in 0 127064 station_ip 83.123.51.79 127064 port 221 127064 unique_id port 127064 remote_ip 10.8.0.14 127065 username aminvpn 127065 mac 127065 bytes_out 0 127065 bytes_in 0 127065 station_ip 151.238.239.64 127065 port 219 127065 unique_id port 127065 remote_ip 10.8.0.14 127070 username aminvpn 127070 mac 127070 bytes_out 0 127070 bytes_in 0 127070 station_ip 83.123.51.79 127070 port 221 127070 unique_id port 127070 remote_ip 10.8.0.14 127072 username mosi 127072 mac 127072 bytes_out 53729 127072 bytes_in 82592 127072 station_ip 5.134.157.21 127072 port 219 127072 unique_id port 127072 remote_ip 10.8.0.138 127078 username barzegar 127078 mac 127078 bytes_out 0 127078 bytes_in 0 127078 station_ip 5.120.36.32 127078 port 137 127078 unique_id port 127078 remote_ip 10.8.1.174 127084 username hamid.e 127084 unique_id port 127084 terminate_cause User-Request 127084 bytes_out 3892834 127084 bytes_in 45348579 127084 station_ip 188.245.91.16 127084 port 15730063 127084 nas_port_type Virtual 127084 remote_ip 5.5.5.77 127086 username ehsun 127086 mac 127086 bytes_out 8250493 127086 bytes_in 15243465 127086 station_ip 46.225.211.182 127086 port 231 127086 unique_id port 127086 remote_ip 10.8.0.162 127090 username zare 127090 mac 127090 bytes_out 0 127090 bytes_in 0 127090 station_ip 37.27.32.144 127090 port 231 127090 unique_id port 127090 remote_ip 10.8.0.18 127093 username barzegar 127093 mac 127093 bytes_out 0 127093 bytes_in 0 127093 station_ip 5.120.36.32 127093 port 232 127093 unique_id port 127093 remote_ip 10.8.0.234 127094 username jafari 127094 kill_reason Another user logged on this global unique id 127094 mac 127094 bytes_out 0 127094 bytes_in 0 127094 station_ip 89.32.98.208 127094 port 219 127094 unique_id port 127096 username barzegar 127096 mac 127096 bytes_out 0 127096 bytes_in 0 127096 station_ip 5.120.36.32 127096 port 231 127096 unique_id port 127096 remote_ip 10.8.0.234 127100 username jafari 127115 mac 127100 kill_reason Another user logged on this global unique id 127100 mac 127100 bytes_out 0 127100 bytes_in 0 127100 station_ip 89.32.98.208 127100 port 219 127100 unique_id port 127101 username aminvpn 127101 mac 127101 bytes_out 0 127101 bytes_in 0 127101 station_ip 5.211.161.64 127101 port 231 127101 unique_id port 127101 remote_ip 10.8.0.14 127102 username aminvpn 127102 mac 127102 bytes_out 0 127102 bytes_in 0 127075 bytes_out 0 127075 bytes_in 0 127075 station_ip 83.122.219.192 127075 port 219 127075 unique_id port 127075 remote_ip 10.8.0.74 127076 username barzegar 127076 mac 127076 bytes_out 0 127076 bytes_in 0 127076 station_ip 5.120.36.32 127076 port 137 127076 unique_id port 127076 remote_ip 10.8.1.174 127079 username barzegar 127079 mac 127079 bytes_out 0 127079 bytes_in 0 127079 station_ip 5.120.36.32 127079 port 137 127079 unique_id port 127079 remote_ip 10.8.1.174 127080 username barzegar 127080 mac 127080 bytes_out 0 127080 bytes_in 0 127080 station_ip 5.120.36.32 127080 port 137 127080 unique_id port 127080 remote_ip 10.8.1.174 127083 username kordestani 127083 mac 127083 bytes_out 0 127083 bytes_in 0 127083 station_ip 83.122.49.42 127083 port 228 127083 unique_id port 127083 remote_ip 10.8.0.134 127088 username barzegar 127088 mac 127088 bytes_out 0 127088 bytes_in 0 127088 station_ip 5.120.36.32 127088 port 231 127088 unique_id port 127088 remote_ip 10.8.0.234 127089 username mirzaei 127089 kill_reason Another user logged on this global unique id 127089 mac 127089 bytes_out 0 127089 bytes_in 0 127089 station_ip 5.120.175.250 127089 port 229 127089 unique_id port 127091 username zare 127091 mac 127091 bytes_out 0 127091 bytes_in 0 127091 station_ip 37.27.32.144 127091 port 231 127091 unique_id port 127091 remote_ip 10.8.0.18 127092 username mosi 127092 mac 127092 bytes_out 1922980 127092 bytes_in 6131094 127092 station_ip 5.134.157.21 127092 port 232 127092 unique_id port 127092 remote_ip 10.8.0.138 127095 username zare 127095 mac 127095 bytes_out 599817 127095 bytes_in 8444425 127095 station_ip 37.27.32.144 127095 port 231 127095 unique_id port 127095 remote_ip 10.8.0.18 127097 username aminvpn 127097 mac 127097 bytes_out 0 127097 bytes_in 0 127097 station_ip 151.238.239.64 127097 port 221 127097 unique_id port 127097 remote_ip 10.8.0.14 127098 username aminvpn 127098 mac 127098 bytes_out 0 127098 bytes_in 0 127098 station_ip 5.211.161.64 127098 port 231 127098 unique_id port 127098 remote_ip 10.8.0.14 127099 username aminvpn 127099 mac 127099 bytes_out 0 127099 bytes_in 0 127099 station_ip 151.238.239.64 127099 port 221 127099 unique_id port 127099 remote_ip 10.8.0.14 127103 username aminvpn 127103 mac 127103 bytes_out 0 127103 bytes_in 0 127103 station_ip 5.211.161.64 127103 port 231 127103 unique_id port 127103 remote_ip 10.8.0.14 127105 username jafari 127105 kill_reason Another user logged on this global unique id 127105 mac 127105 bytes_out 0 127105 bytes_in 0 127105 station_ip 89.32.98.208 127105 port 219 127105 unique_id port 127109 username mosi 127109 mac 127109 bytes_out 2685783 127109 bytes_in 26601565 127109 station_ip 5.134.157.21 127109 port 233 127109 unique_id port 127109 remote_ip 10.8.0.138 127111 username jafari 127111 kill_reason Another user logged on this global unique id 127111 mac 127111 bytes_out 0 127111 bytes_in 0 127111 station_ip 89.32.98.208 127111 port 219 127111 unique_id port 127115 username ehsun 127115 bytes_out 0 127115 bytes_in 0 127115 station_ip 46.225.211.182 127115 port 233 127115 unique_id port 127115 remote_ip 10.8.0.162 127118 username morteza 127118 kill_reason Another user logged on this global unique id 127118 mac 127118 bytes_out 0 127118 bytes_in 0 127118 station_ip 113.203.60.117 127118 port 221 127118 unique_id port 127118 remote_ip 10.8.0.46 127119 username ehsun 127119 mac 127102 station_ip 151.238.239.64 127102 port 221 127102 unique_id port 127102 remote_ip 10.8.0.14 127110 username khalili 127110 mac 127110 bytes_out 248013 127110 bytes_in 900110 127110 station_ip 5.119.228.231 127110 port 231 127110 unique_id port 127110 remote_ip 10.8.0.86 127113 username barzegar 127113 mac 127113 bytes_out 0 127113 bytes_in 0 127113 station_ip 5.120.36.32 127113 port 233 127113 unique_id port 127113 remote_ip 10.8.0.234 127116 username mosi 127116 mac 127116 bytes_out 605454 127116 bytes_in 5144307 127116 station_ip 5.134.157.21 127116 port 232 127116 unique_id port 127116 remote_ip 10.8.0.138 127125 username aminvpn 127125 unique_id port 127125 terminate_cause User-Request 127125 bytes_out 1109107 127125 bytes_in 15822333 127125 station_ip 5.119.103.169 127125 port 15730070 127125 nas_port_type Virtual 127125 remote_ip 5.5.5.162 127129 username mahdiyehalizadeh 127129 mac 127129 bytes_out 0 127129 bytes_in 0 127129 station_ip 83.122.93.149 127129 port 232 127129 unique_id port 127129 remote_ip 10.8.0.82 127132 username jafari 127132 kill_reason Another user logged on this global unique id 127132 mac 127132 bytes_out 0 127132 bytes_in 0 127132 station_ip 89.32.98.208 127132 port 219 127132 unique_id port 127135 username sabaghnezhad 127135 mac 127135 bytes_out 0 127135 bytes_in 0 127135 station_ip 83.122.68.50 127135 port 233 127135 unique_id port 127135 remote_ip 10.8.0.186 127138 username barzegar 127138 mac 127138 bytes_out 0 127138 bytes_in 0 127138 station_ip 5.120.36.32 127138 port 232 127138 unique_id port 127138 remote_ip 10.8.0.234 127140 username barzegar 127140 mac 127140 bytes_out 0 127140 bytes_in 0 127140 station_ip 5.120.36.32 127140 port 234 127140 unique_id port 127140 remote_ip 10.8.0.234 127141 username barzegar 127141 mac 127141 bytes_out 0 127141 bytes_in 0 127141 station_ip 5.120.36.32 127141 port 232 127141 unique_id port 127141 remote_ip 10.8.0.234 127142 username khalili 127142 mac 127142 bytes_out 0 127142 bytes_in 0 127142 station_ip 5.119.228.231 127142 port 231 127142 unique_id port 127147 username forozande 127147 mac 127147 bytes_out 31299 127147 bytes_in 31672 127147 station_ip 83.122.8.103 127147 port 231 127147 unique_id port 127147 remote_ip 10.8.0.74 127149 username jafari 127149 kill_reason Another user logged on this global unique id 127149 mac 127149 bytes_out 0 127149 bytes_in 0 127149 station_ip 89.32.98.208 127149 port 219 127149 unique_id port 127150 username asma2026 127150 mac 127150 bytes_out 0 127150 bytes_in 0 127150 station_ip 37.129.137.160 127150 port 137 127150 unique_id port 127150 remote_ip 10.8.1.122 127156 username asma2026 127156 mac 127156 bytes_out 0 127156 bytes_in 0 127156 station_ip 37.129.137.160 127156 port 137 127156 unique_id port 127156 remote_ip 10.8.1.122 127161 username morteza 127161 mac 127161 bytes_out 0 127161 bytes_in 0 127161 station_ip 113.203.45.109 127161 port 137 127161 unique_id port 127161 remote_ip 10.8.1.62 127165 username mahdiyehalizadeh 127165 kill_reason Another user logged on this global unique id 127165 mac 127165 bytes_out 0 127165 bytes_in 0 127165 station_ip 37.129.217.97 127165 port 232 127165 unique_id port 127165 remote_ip 10.8.0.82 127167 username hamid.e 127167 unique_id port 127167 terminate_cause User-Request 127167 bytes_out 2605160 127167 bytes_in 25096151 127167 station_ip 37.27.40.226 127167 port 15730071 127167 nas_port_type Virtual 127167 remote_ip 5.5.5.214 127169 username asma2026 127104 bytes_in 155634 127104 station_ip 151.238.239.64 127104 port 221 127104 unique_id port 127104 remote_ip 10.8.0.14 127106 username zare 127106 mac 127106 bytes_out 0 127106 bytes_in 0 127106 station_ip 37.27.32.144 127106 port 221 127106 unique_id port 127106 remote_ip 10.8.0.18 127107 username barzegar 127107 mac 127107 bytes_out 0 127107 bytes_in 0 127107 station_ip 5.120.36.32 127107 port 221 127107 unique_id port 127107 remote_ip 10.8.0.234 127108 username zare 127108 mac 127108 bytes_out 0 127108 bytes_in 0 127108 station_ip 37.27.32.144 127108 port 231 127108 unique_id port 127108 remote_ip 10.8.0.18 127112 username asma2026 127112 mac 127112 bytes_out 3876 127112 bytes_in 6126 127112 station_ip 37.129.137.160 127112 port 233 127112 unique_id port 127112 remote_ip 10.8.0.170 127114 username asma2026 127114 mac 127114 bytes_out 0 127114 bytes_in 0 127114 station_ip 37.129.137.160 127114 port 234 127114 unique_id port 127114 remote_ip 10.8.0.170 127117 username zare 127117 mac 127117 bytes_out 0 127117 bytes_in 0 127117 station_ip 37.27.32.144 127117 port 232 127117 unique_id port 127117 remote_ip 10.8.0.18 127121 username aminvpn 127121 unique_id port 127121 terminate_cause User-Request 127121 bytes_out 3572648 127121 bytes_in 38140412 127121 station_ip 5.119.103.169 127121 port 15730064 127121 nas_port_type Virtual 127121 remote_ip 5.5.5.103 127123 username jafari 127123 kill_reason Another user logged on this global unique id 127123 mac 127123 bytes_out 0 127123 bytes_in 0 127123 station_ip 89.32.98.208 127123 port 219 127123 unique_id port 127126 username mosi 127126 mac 127126 bytes_out 279745 127126 bytes_in 1856716 127126 station_ip 5.134.157.21 127126 port 233 127126 unique_id port 127126 remote_ip 10.8.0.138 127130 username barzegar 127130 mac 127130 bytes_out 0 127130 bytes_in 0 127130 station_ip 5.120.36.32 127130 port 232 127130 unique_id port 127130 remote_ip 10.8.0.234 127133 username morteza 127133 mac 127133 bytes_out 0 127133 bytes_in 0 127133 station_ip 113.203.60.117 127133 port 221 127133 unique_id port 127134 username morteza 127134 mac 127134 bytes_out 0 127134 bytes_in 0 127134 station_ip 113.203.60.117 127134 port 221 127134 unique_id port 127134 remote_ip 10.8.0.46 127143 username jafari 127143 kill_reason Another user logged on this global unique id 127143 mac 127143 bytes_out 0 127143 bytes_in 0 127143 station_ip 89.32.98.208 127143 port 219 127143 unique_id port 127145 username mosi 127145 mac 127145 bytes_out 284283 127145 bytes_in 1112211 127145 station_ip 5.134.157.21 127145 port 223 127145 unique_id port 127145 remote_ip 10.8.0.138 127146 username zare 127146 mac 127146 bytes_out 0 127146 bytes_in 0 127146 station_ip 37.27.32.144 127146 port 223 127146 unique_id port 127146 remote_ip 10.8.0.18 127153 username morteza 127153 mac 127153 bytes_out 0 127153 bytes_in 0 127153 station_ip 113.203.45.109 127153 port 234 127153 unique_id port 127153 remote_ip 10.8.0.46 127154 username asma2026 127154 mac 127154 bytes_out 9830 127154 bytes_in 45554 127154 station_ip 37.129.137.160 127154 port 137 127154 unique_id port 127154 remote_ip 10.8.1.122 127157 username barzegar 127157 mac 127157 bytes_out 0 127157 bytes_in 0 127157 station_ip 5.120.36.32 127157 port 137 127157 unique_id port 127157 remote_ip 10.8.1.174 127159 username asma2026 127159 kill_reason Maximum check online fails reached 127159 mac 127159 bytes_out 0 127119 bytes_out 122117 127119 bytes_in 81839 127119 station_ip 46.225.211.182 127119 port 234 127119 unique_id port 127119 remote_ip 10.8.0.162 127120 username barzegar 127120 mac 127120 bytes_out 0 127120 bytes_in 0 127120 station_ip 5.120.36.32 127120 port 232 127120 unique_id port 127120 remote_ip 10.8.0.234 127122 username morteza 127122 kill_reason Another user logged on this global unique id 127122 mac 127122 bytes_out 0 127122 bytes_in 0 127122 station_ip 113.203.60.117 127122 port 221 127122 unique_id port 127124 username sabaghnezhad 127124 mac 127124 bytes_out 2597262 127124 bytes_in 12808204 127124 station_ip 113.203.82.193 127124 port 223 127124 unique_id port 127124 remote_ip 10.8.0.186 127127 username zare 127127 mac 127127 bytes_out 54916 127127 bytes_in 242085 127127 station_ip 37.27.32.144 127127 port 232 127127 unique_id port 127127 remote_ip 10.8.0.18 127128 username khalili 127128 kill_reason Another user logged on this global unique id 127128 mac 127128 bytes_out 0 127128 bytes_in 0 127128 station_ip 5.119.228.231 127128 port 231 127128 unique_id port 127128 remote_ip 10.8.0.86 127131 username mirzaei 127131 kill_reason Another user logged on this global unique id 127131 mac 127131 bytes_out 0 127131 bytes_in 0 127131 station_ip 5.120.175.250 127131 port 229 127131 unique_id port 127136 username zare 127136 mac 127136 bytes_out 0 127136 bytes_in 0 127136 station_ip 37.27.32.144 127136 port 232 127136 unique_id port 127136 remote_ip 10.8.0.18 127137 username khalili 127137 kill_reason Another user logged on this global unique id 127137 mac 127137 bytes_out 0 127137 bytes_in 0 127137 station_ip 5.119.228.231 127137 port 231 127137 unique_id port 127139 username asma2026 127139 mac 127139 bytes_out 0 127139 bytes_in 0 127139 station_ip 37.129.137.160 127139 port 232 127139 unique_id port 127139 remote_ip 10.8.0.170 127144 username forozande 127144 mac 127144 bytes_out 0 127144 bytes_in 0 127144 station_ip 83.122.8.103 127144 port 233 127144 unique_id port 127144 remote_ip 10.8.0.74 127148 username barzegar 127148 mac 127148 bytes_out 0 127148 bytes_in 0 127148 station_ip 5.120.36.32 127148 port 137 127148 unique_id port 127148 remote_ip 10.8.1.174 127151 username asma2026 127151 mac 127151 bytes_out 1858 127151 bytes_in 5151 127151 station_ip 37.129.137.160 127151 port 231 127151 unique_id port 127151 remote_ip 10.8.0.170 127152 username zare 127152 mac 127152 bytes_out 0 127152 bytes_in 0 127152 station_ip 37.27.32.144 127152 port 231 127152 unique_id port 127152 remote_ip 10.8.0.18 127155 username jafari 127155 kill_reason Another user logged on this global unique id 127155 mac 127155 bytes_out 0 127155 bytes_in 0 127155 station_ip 89.32.98.208 127155 port 219 127155 unique_id port 127158 username morteza 127158 mac 127158 bytes_out 536130 127158 bytes_in 9975158 127158 station_ip 113.203.45.109 127158 port 235 127158 unique_id port 127158 remote_ip 10.8.0.46 127160 username aminvpn 127160 mac 127160 bytes_out 160321 127160 bytes_in 436073 127160 station_ip 5.211.136.76 127160 port 234 127160 unique_id port 127160 remote_ip 10.8.0.14 127164 username moradi 127164 kill_reason Another user logged on this global unique id 127164 mac 127164 bytes_out 0 127164 bytes_in 0 127164 station_ip 83.123.103.91 127164 port 223 127164 unique_id port 127164 remote_ip 10.8.0.250 127166 username mohammadjavad 127166 mac 127166 bytes_out 1946506 127166 bytes_in 27841980 127166 station_ip 83.123.199.163 127166 port 228 127159 bytes_in 0 127159 station_ip 37.129.137.160 127159 port 236 127159 unique_id port 127162 username morteza 127162 mac 127162 bytes_out 0 127162 bytes_in 0 127162 station_ip 113.203.45.109 127162 port 235 127162 unique_id port 127162 remote_ip 10.8.0.46 127163 username barzegar 127163 mac 127163 bytes_out 0 127163 bytes_in 0 127163 station_ip 5.120.36.32 127163 port 138 127163 unique_id port 127163 remote_ip 10.8.1.174 127170 username jafari 127170 kill_reason Another user logged on this global unique id 127170 mac 127170 bytes_out 0 127170 bytes_in 0 127170 station_ip 89.32.98.208 127170 port 219 127170 unique_id port 127171 username moradi 127171 kill_reason Another user logged on this global unique id 127171 mac 127171 bytes_out 0 127171 bytes_in 0 127171 station_ip 83.123.103.91 127171 port 223 127171 unique_id port 127177 username barzegar 127177 mac 127177 bytes_out 0 127177 bytes_in 0 127177 station_ip 5.120.36.32 127177 port 234 127177 unique_id port 127177 remote_ip 10.8.0.234 127180 username sabaghnezhad 127180 mac 127180 bytes_out 0 127180 bytes_in 0 127180 station_ip 83.123.129.101 127180 port 228 127180 unique_id port 127180 remote_ip 10.8.0.186 127183 username jafari 127183 kill_reason Another user logged on this global unique id 127183 mac 127183 bytes_out 0 127183 bytes_in 0 127183 station_ip 89.32.98.208 127183 port 219 127183 unique_id port 127185 username barzegar 127185 mac 127185 bytes_out 0 127185 bytes_in 0 127185 station_ip 5.120.36.32 127185 port 234 127185 unique_id port 127185 remote_ip 10.8.0.234 127189 username amirabbas 127189 unique_id port 127189 terminate_cause User-Request 127189 bytes_out 1605983 127189 bytes_in 32125979 127189 station_ip 37.27.22.100 127189 port 15730074 127189 nas_port_type Virtual 127189 remote_ip 5.5.5.255 127193 username jafari 127193 kill_reason Another user logged on this global unique id 127193 mac 127193 bytes_out 0 127193 bytes_in 0 127193 station_ip 89.32.98.208 127193 port 219 127193 unique_id port 127194 username moradi 127194 kill_reason Another user logged on this global unique id 127194 mac 127194 bytes_out 0 127194 bytes_in 0 127194 station_ip 83.123.103.91 127194 port 223 127194 unique_id port 127196 username jafari 127196 kill_reason Another user logged on this global unique id 127196 mac 127196 bytes_out 0 127196 bytes_in 0 127196 station_ip 89.32.98.208 127196 port 219 127196 unique_id port 127199 username khalili 127199 mac 127199 bytes_out 0 127199 bytes_in 0 127199 station_ip 5.119.228.231 127199 port 228 127199 unique_id port 127201 username moradi 127201 kill_reason Another user logged on this global unique id 127201 mac 127201 bytes_out 0 127201 bytes_in 0 127201 station_ip 83.123.103.91 127201 port 223 127201 unique_id port 127211 username houshang 127211 mac 127211 bytes_out 0 127211 bytes_in 0 127211 station_ip 5.119.20.70 127211 port 228 127211 unique_id port 127211 remote_ip 10.8.0.22 127212 username moradi 127212 kill_reason Another user logged on this global unique id 127212 mac 127212 bytes_out 0 127212 bytes_in 0 127212 station_ip 83.123.103.91 127212 port 223 127212 unique_id port 127223 username barzegar 127223 mac 127223 bytes_out 0 127223 bytes_in 0 127223 station_ip 5.120.36.32 127223 port 237 127223 unique_id port 127223 remote_ip 10.8.0.234 127230 username sedighe 127230 mac 127230 bytes_out 284069 127230 bytes_in 1179753 127230 station_ip 83.122.129.18 127230 port 234 127230 unique_id port 127230 remote_ip 10.8.0.146 127231 username mosi 127231 mac 127166 unique_id port 127166 remote_ip 10.8.0.142 127168 username asma2026 127168 mac 127168 bytes_out 0 127168 bytes_in 0 127168 station_ip 37.129.137.160 127168 port 139 127168 unique_id port 127168 remote_ip 10.8.1.122 127172 username mahdiyehalizadeh 127172 mac 127172 bytes_out 0 127172 bytes_in 0 127172 station_ip 37.129.217.97 127172 port 232 127172 unique_id port 127173 username morteza 127173 mac 127173 bytes_out 246126 127173 bytes_in 2096738 127173 station_ip 113.203.45.109 127173 port 137 127173 unique_id port 127173 remote_ip 10.8.1.62 127174 username asma2026 127174 mac 127174 bytes_out 0 127174 bytes_in 0 127174 station_ip 37.129.137.160 127174 port 234 127174 unique_id port 127174 remote_ip 10.8.0.170 127179 username moradi 127179 kill_reason Another user logged on this global unique id 127179 mac 127179 bytes_out 0 127179 bytes_in 0 127179 station_ip 83.123.103.91 127179 port 223 127179 unique_id port 127182 username amirabbas 127182 unique_id port 127182 terminate_cause Lost-Carrier 127182 bytes_out 802926 127182 bytes_in 6991567 127182 station_ip 37.27.28.20 127182 port 15730072 127182 nas_port_type Virtual 127182 remote_ip 5.5.5.65 127187 username amirabbas 127187 unique_id port 127187 terminate_cause Lost-Carrier 127187 bytes_out 355322 127187 bytes_in 3852686 127187 station_ip 37.27.19.164 127187 port 15730073 127187 nas_port_type Virtual 127187 remote_ip 5.5.5.86 127191 username sabaghnezhad 127191 mac 127191 bytes_out 0 127191 bytes_in 0 127191 station_ip 113.203.55.61 127191 port 237 127191 unique_id port 127191 remote_ip 10.8.0.186 127192 username mohammadjavad 127192 mac 127192 bytes_out 0 127192 bytes_in 0 127192 station_ip 83.123.195.49 127192 port 234 127192 unique_id port 127192 remote_ip 10.8.0.142 127195 username barzegar 127195 mac 127195 bytes_out 0 127195 bytes_in 0 127195 station_ip 5.120.36.32 127195 port 238 127195 unique_id port 127195 remote_ip 10.8.0.234 127198 username ehsun 127198 mac 127198 bytes_out 0 127198 bytes_in 0 127198 station_ip 46.225.211.182 127198 port 238 127198 unique_id port 127198 remote_ip 10.8.0.162 127200 username barzegar 127200 mac 127200 bytes_out 0 127200 bytes_in 0 127200 station_ip 5.120.36.32 127200 port 239 127200 unique_id port 127200 remote_ip 10.8.0.234 127203 username khalili 127203 mac 127203 bytes_out 0 127203 bytes_in 0 127203 station_ip 5.119.228.231 127203 port 238 127203 unique_id port 127203 remote_ip 10.8.0.86 127207 username moradi 127207 kill_reason Another user logged on this global unique id 127207 mac 127207 bytes_out 0 127207 bytes_in 0 127207 station_ip 83.123.103.91 127207 port 223 127207 unique_id port 127209 username musa 127209 kill_reason Relative expiration date has reached 127209 mac 127209 bytes_out 0 127209 bytes_in 0 127209 station_ip 37.129.30.221 127209 port 238 127209 unique_id port 127214 username aminvpn 127214 unique_id port 127214 terminate_cause User-Request 127214 bytes_out 1259708 127214 bytes_in 4080217 127214 station_ip 31.57.141.110 127214 port 15730079 127214 nas_port_type Virtual 127214 remote_ip 5.5.5.88 127218 username amir 127218 mac 127218 bytes_out 213927 127218 bytes_in 852510 127218 station_ip 46.225.215.86 127218 port 137 127218 unique_id port 127218 remote_ip 10.8.1.22 127220 username amir 127220 mac 127220 bytes_out 58467 127220 bytes_in 326906 127220 station_ip 46.225.215.86 127220 port 137 127220 unique_id port 127220 remote_ip 10.8.1.22 127222 username forozande 127222 mac 127222 bytes_out 0 127169 mac 127169 bytes_out 0 127169 bytes_in 0 127169 station_ip 37.129.137.160 127169 port 234 127169 unique_id port 127169 remote_ip 10.8.0.170 127175 username morteza 127175 mac 127175 bytes_out 10723 127175 bytes_in 18364 127175 station_ip 113.203.45.109 127175 port 137 127175 unique_id port 127175 remote_ip 10.8.1.62 127176 username morteza 127176 mac 127176 bytes_out 1644 127176 bytes_in 5192 127176 station_ip 113.203.45.109 127176 port 137 127176 unique_id port 127176 remote_ip 10.8.1.62 127178 username kordestani 127178 mac 127178 bytes_out 0 127178 bytes_in 0 127178 station_ip 83.123.0.96 127178 port 138 127178 unique_id port 127178 remote_ip 10.8.1.98 127181 username asma2026 127181 mac 127181 bytes_out 0 127181 bytes_in 0 127181 station_ip 37.129.137.160 127181 port 137 127181 unique_id port 127181 remote_ip 10.8.1.122 127184 username asma2026 127184 mac 127184 bytes_out 0 127184 bytes_in 0 127184 station_ip 37.129.137.160 127184 port 234 127184 unique_id port 127184 remote_ip 10.8.0.170 127186 username asma2026 127186 mac 127186 bytes_out 0 127186 bytes_in 0 127186 station_ip 37.129.137.160 127186 port 235 127186 unique_id port 127186 remote_ip 10.8.0.170 127188 username khalili 127188 kill_reason Another user logged on this global unique id 127188 mac 127188 bytes_out 0 127188 bytes_in 0 127188 station_ip 5.119.228.231 127188 port 228 127188 unique_id port 127188 remote_ip 10.8.0.86 127190 username forozande 127190 mac 127190 bytes_out 0 127190 bytes_in 0 127190 station_ip 83.122.238.231 127190 port 237 127190 unique_id port 127190 remote_ip 10.8.0.74 127197 username jamali 127197 kill_reason Another user logged on this global unique id 127197 mac 127197 bytes_out 0 127197 bytes_in 0 127197 station_ip 5.119.104.252 127197 port 235 127197 unique_id port 127197 remote_ip 10.8.0.150 127202 username sobhan 127202 unique_id port 127202 terminate_cause Lost-Carrier 127202 bytes_out 5687599 127202 bytes_in 79842538 127202 station_ip 5.120.182.124 127202 port 15730075 127202 nas_port_type Virtual 127202 remote_ip 5.5.5.71 127204 username shokokian 127204 unique_id port 127204 terminate_cause User-Request 127204 bytes_out 633107 127204 bytes_in 11190880 127204 station_ip 151.238.230.58 127204 port 15730077 127204 nas_port_type Virtual 127204 remote_ip 5.5.5.255 127205 username barzegar 127205 mac 127205 bytes_out 0 127205 bytes_in 0 127205 station_ip 5.120.36.32 127205 port 238 127205 unique_id port 127205 remote_ip 10.8.0.234 127206 username arash 127206 mac 127206 bytes_out 1383242 127206 bytes_in 9315436 127206 station_ip 37.27.23.115 127206 port 232 127206 unique_id port 127206 remote_ip 10.8.0.114 127208 username aminvpn 127208 unique_id port 127208 terminate_cause Lost-Carrier 127208 bytes_out 105382 127208 bytes_in 821469 127208 station_ip 31.57.141.51 127208 port 15730078 127208 nas_port_type Virtual 127208 remote_ip 5.5.5.80 127210 username mosi 127210 mac 127210 bytes_out 0 127210 bytes_in 0 127210 station_ip 5.134.157.21 127210 port 233 64301 username arezoo 64301 kill_reason Maximum check online fails reached 64301 mac 5.237.75.76:49235: Unknown host 64301 bytes_out 0 64301 bytes_in 0 64301 station_ip 5.237.75.76:49235 64301 port 1017 127210 unique_id port 127210 remote_ip 10.8.0.138 127213 username barzegar 127213 mac 127213 bytes_out 0 127213 bytes_in 0 127213 station_ip 5.120.36.32 127213 port 228 127213 unique_id port 127213 remote_ip 10.8.0.234 127215 username jafari 127215 mac 127215 bytes_out 0 127215 bytes_in 0 64301 unique_id port 127215 station_ip 89.32.98.208 127215 port 219 127215 unique_id port 127216 username moradi 127216 mac 127216 bytes_out 0 127216 bytes_in 0 127216 station_ip 83.123.103.91 127216 port 223 127216 unique_id port 127217 username aminvpn 127217 mac 127217 bytes_out 236620 127217 bytes_in 747466 127217 station_ip 151.238.239.64 127217 port 234 127217 unique_id port 127217 remote_ip 10.8.0.14 127219 username sedighe 127219 mac 127219 bytes_out 0 127219 bytes_in 0 127219 station_ip 83.122.129.18 127219 port 233 127219 unique_id port 127219 remote_ip 10.8.0.146 127221 username sabaghnezhad 127221 mac 127221 bytes_out 151115 127221 bytes_in 148901 127221 station_ip 113.203.55.61 127221 port 237 127221 unique_id port 127221 remote_ip 10.8.0.186 127224 username hamidsalari1 127224 mac 127224 bytes_out 28786 127224 bytes_in 38955 127224 station_ip 37.129.189.155 127224 port 238 127224 unique_id port 127224 remote_ip 10.8.0.226 127226 username amir 127226 mac 127226 bytes_out 0 127226 bytes_in 0 127226 station_ip 46.225.215.86 127226 port 223 127226 unique_id port 127226 remote_ip 10.8.0.50 127228 username jamali 127228 kill_reason Another user logged on this global unique id 127228 mac 127228 bytes_out 0 127228 bytes_in 0 127228 station_ip 5.119.104.252 127228 port 235 127228 unique_id port 127229 username jafari 127229 kill_reason Another user logged on this global unique id 127229 mac 127229 bytes_out 0 127229 bytes_in 0 127229 station_ip 89.32.98.208 127229 port 219 127229 unique_id port 127229 remote_ip 10.8.0.242 127232 username jamali 127232 kill_reason Another user logged on this global unique id 127232 mac 127232 bytes_out 0 127232 bytes_in 0 127232 station_ip 5.119.104.252 127232 port 235 127232 unique_id port 127233 username zare 127233 mac 127233 bytes_out 2153088 127233 bytes_in 16886023 127233 station_ip 37.27.32.144 127233 port 231 127233 unique_id port 127233 remote_ip 10.8.0.18 127234 username hosseine 127234 kill_reason Another user logged on this global unique id 127234 mac 127234 bytes_out 0 127234 bytes_in 0 127234 station_ip 83.123.33.175 127234 port 221 127234 unique_id port 127234 remote_ip 10.8.0.238 127238 username aminvpn 127238 unique_id port 127238 terminate_cause Lost-Carrier 127238 bytes_out 5840036 127238 bytes_in 216867674 127238 station_ip 151.238.239.64 127238 port 15730076 127238 nas_port_type Virtual 127238 remote_ip 5.5.5.253 127239 username zare 127239 mac 127239 bytes_out 0 127239 bytes_in 0 127239 station_ip 37.27.32.144 127239 port 228 127239 unique_id port 127239 remote_ip 10.8.0.18 127240 username hamidsalari1 127240 kill_reason Another user logged on this global unique id 127240 mac 127240 bytes_out 0 127240 bytes_in 0 127240 station_ip 83.122.238.220 127240 port 223 127240 unique_id port 127240 remote_ip 10.8.0.226 127243 username alireza 127243 unique_id port 127243 terminate_cause Lost-Carrier 127243 bytes_out 4675174 127243 bytes_in 95710379 127243 station_ip 5.120.110.186 127243 port 15730065 127243 nas_port_type Virtual 127243 remote_ip 5.5.5.115 127252 username amir 127252 mac 127252 bytes_out 0 127252 bytes_in 0 127252 station_ip 46.225.215.86 127252 port 238 127252 unique_id port 127252 remote_ip 10.8.0.50 127254 username amirabbas 127254 unique_id port 127254 terminate_cause Lost-Carrier 127254 bytes_out 7349671 127254 bytes_in 180173092 127254 station_ip 37.27.53.87 127254 port 15730080 127254 nas_port_type Virtual 127254 remote_ip 5.5.5.90 127257 username hamidsalari1 127257 kill_reason Another user logged on this global unique id 127257 mac 127222 bytes_in 0 127222 station_ip 83.122.195.28 127222 port 223 127222 unique_id port 127222 remote_ip 10.8.0.74 127225 username barzegar 127225 mac 127225 bytes_out 0 127225 bytes_in 0 127225 station_ip 5.120.36.32 127225 port 238 127225 unique_id port 127225 remote_ip 10.8.0.234 127227 username hamidsalari1 127227 mac 127227 bytes_out 107747 127227 bytes_in 889111 127227 station_ip 83.122.238.220 127227 port 237 127227 unique_id port 127227 remote_ip 10.8.0.226 127235 username arash 127235 mac 127235 bytes_out 0 127235 bytes_in 0 127235 station_ip 37.27.23.115 127235 port 232 127235 unique_id port 127235 remote_ip 10.8.0.114 127237 username amir 127237 mac 127237 bytes_out 0 127237 bytes_in 0 127237 station_ip 46.225.215.86 127237 port 228 127237 unique_id port 127237 remote_ip 10.8.0.50 127241 username jafari 127241 kill_reason Another user logged on this global unique id 127241 mac 127241 bytes_out 0 127241 bytes_in 0 127241 station_ip 89.32.98.208 127241 port 219 127241 unique_id port 127242 username mansur 127242 mac 127242 bytes_out 41224 127242 bytes_in 57927 127242 station_ip 5.119.41.61 127242 port 238 127242 unique_id port 127242 remote_ip 10.8.0.210 127247 username mansur 127247 mac 127247 bytes_out 0 127247 bytes_in 0 127247 station_ip 5.119.41.61 127247 port 238 127247 unique_id port 127247 remote_ip 10.8.0.210 127248 username amir 127248 mac 127248 bytes_out 84066 127248 bytes_in 460487 127248 station_ip 46.225.215.86 127248 port 240 127248 unique_id port 127248 remote_ip 10.8.0.50 127256 username amirabbas 127256 kill_reason Maximum number of concurrent logins reached 127256 unique_id port 127256 bytes_out 0 127256 bytes_in 0 127256 station_ip 37.27.16.24 127256 port 15730085 127256 nas_port_type Virtual 127266 username sedighe 127266 mac 127266 bytes_out 17540 127266 bytes_in 23869 127266 station_ip 83.122.186.181 127266 port 242 127266 unique_id port 127266 remote_ip 10.8.0.146 127269 username amirabbas 127269 kill_reason Maximum number of concurrent logins reached 127269 unique_id port 127269 bytes_out 0 127269 bytes_in 0 127269 station_ip 37.27.13.171 127269 port 15730092 127269 nas_port_type Virtual 127271 username sedighe 127271 mac 127271 bytes_out 1744 127271 bytes_in 4846 127271 station_ip 83.122.186.181 127271 port 243 127271 unique_id port 127271 remote_ip 10.8.0.146 127275 username hamidsalari1 127275 mac 127275 bytes_out 0 127275 bytes_in 0 127275 station_ip 83.122.238.220 127275 port 223 127275 unique_id port 127277 username sedighe 127277 mac 127277 bytes_out 0 127277 bytes_in 0 127277 station_ip 83.122.109.234 127277 port 239 127277 unique_id port 127277 remote_ip 10.8.0.146 127280 username moradi 127280 kill_reason Another user logged on this global unique id 127280 mac 127280 bytes_out 0 127280 bytes_in 0 127280 station_ip 83.123.29.63 127280 port 241 127280 unique_id port 127280 remote_ip 10.8.0.250 127284 username sedighe 127284 mac 127284 bytes_out 0 127284 bytes_in 0 127284 station_ip 83.122.32.197 127284 port 223 127284 unique_id port 127284 remote_ip 10.8.0.146 127285 username aminvpn 127285 unique_id port 127285 terminate_cause Lost-Carrier 127285 bytes_out 3734190 127285 bytes_in 65951604 127285 station_ip 109.125.128.116 127285 port 15730090 127285 nas_port_type Virtual 127285 remote_ip 5.5.5.44 127290 username mostafa_es78 127290 unique_id port 127290 terminate_cause Lost-Carrier 127290 bytes_out 1032372 127290 bytes_in 35468112 127290 station_ip 5.125.174.137 127290 port 15730093 127290 nas_port_type Virtual 127231 bytes_out 0 127231 bytes_in 0 127231 station_ip 5.134.157.21 127231 port 228 127231 unique_id port 127231 remote_ip 10.8.0.138 127236 username amin.saeedi 127236 unique_id port 127236 terminate_cause User-Request 127236 bytes_out 2112455 127236 bytes_in 41461770 127236 station_ip 5.119.248.163 127236 port 15730081 127236 nas_port_type Virtual 127236 remote_ip 5.5.5.95 127244 username mansur 64310 username arezoo 64310 kill_reason Maximum check online fails reached 64310 mac 5.237.75.76:49177: Unknown host 64310 bytes_out 0 64310 bytes_in 0 64310 station_ip 5.237.75.76:49177 64310 port 1017 64310 unique_id port 127244 mac 127244 bytes_out 0 127244 bytes_in 0 127244 station_ip 5.119.41.61 127244 port 137 127244 unique_id port 127244 remote_ip 10.8.1.194 127245 username sedighe 127245 mac 127245 bytes_out 0 127245 bytes_in 0 127245 station_ip 83.122.129.18 127245 port 237 127245 unique_id port 127245 remote_ip 10.8.0.146 127246 username arash 127246 mac 127246 bytes_out 0 127246 bytes_in 0 127246 station_ip 37.27.23.115 127246 port 232 127246 unique_id port 127246 remote_ip 10.8.0.114 127249 username alihosseini1 127249 mac 127249 bytes_out 0 127249 bytes_in 0 127249 station_ip 5.119.226.95 127249 port 138 127249 unique_id port 127249 remote_ip 10.8.1.106 127250 username arash 127250 mac 127250 bytes_out 421057 127250 bytes_in 2898258 127250 station_ip 37.27.23.115 127250 port 232 127250 unique_id port 127250 remote_ip 10.8.0.114 127251 username hamidsalari1 127251 kill_reason Another user logged on this global unique id 127251 mac 127251 bytes_out 0 127251 bytes_in 0 127251 station_ip 83.122.238.220 127251 port 223 127251 unique_id port 127253 username morteza 127253 mac 127253 bytes_out 0 127253 bytes_in 0 127253 station_ip 113.203.44.77 127253 port 232 127253 unique_id port 127253 remote_ip 10.8.0.46 127255 username amirabbas 127255 kill_reason Maximum number of concurrent logins reached 127255 unique_id port 127255 bytes_out 0 127255 bytes_in 0 127255 station_ip 37.27.16.24 127255 port 15730084 127255 nas_port_type Virtual 127259 username alirezazadeh 127259 unique_id port 127259 terminate_cause Lost-Carrier 127259 bytes_out 5999077 127259 bytes_in 59049910 127259 station_ip 5.119.247.13 127259 port 15730066 127259 nas_port_type Virtual 127259 remote_ip 5.5.5.126 127264 username jafari 127264 kill_reason Another user logged on this global unique id 127264 mac 127264 bytes_out 0 127264 bytes_in 0 127264 station_ip 89.32.98.208 127264 port 219 127264 unique_id port 127265 username hamidsalari 127265 kill_reason Another user logged on this global unique id 127265 mac 127265 bytes_out 0 127265 bytes_in 0 127265 station_ip 5.119.239.169 127265 port 233 127265 unique_id port 127265 remote_ip 10.8.0.230 127272 username zare 127272 mac 127272 bytes_out 842744 127272 bytes_in 9675360 127272 station_ip 37.27.32.144 127272 port 239 127272 unique_id port 127272 remote_ip 10.8.0.18 127282 username amir 127282 mac 127282 bytes_out 0 127282 bytes_in 0 127282 station_ip 46.225.215.86 127282 port 242 127282 unique_id port 127282 remote_ip 10.8.0.50 127287 username zare 127287 mac 127287 bytes_out 0 127287 bytes_in 0 127287 station_ip 37.27.32.144 127287 port 223 127287 unique_id port 127287 remote_ip 10.8.0.18 127288 username mosi 127288 mac 127288 bytes_out 3042184 127288 bytes_in 17867448 127288 station_ip 5.134.157.21 127288 port 234 127288 unique_id port 127288 remote_ip 10.8.0.138 127291 username barzegar 127291 mac 127291 bytes_out 0 127291 bytes_in 0 127291 station_ip 5.120.36.32 127257 bytes_out 0 127257 bytes_in 0 127257 station_ip 83.122.238.220 127257 port 223 127257 unique_id port 127258 username amirabbas 127258 kill_reason Maximum number of concurrent logins reached 127258 unique_id port 127258 bytes_out 0 127258 bytes_in 0 127258 station_ip 37.27.16.24 127258 port 15730086 127258 nas_port_type Virtual 127260 username amirabbas 127260 kill_reason Maximum number of concurrent logins reached 127260 unique_id port 127260 bytes_out 0 127260 bytes_in 0 127260 station_ip 37.27.16.24 127260 port 15730087 127260 nas_port_type Virtual 127261 username amirabbas 127261 kill_reason Maximum number of concurrent logins reached 127261 unique_id port 127261 bytes_out 0 127261 bytes_in 0 127261 station_ip 37.27.16.24 127261 port 15730088 127261 nas_port_type Virtual 127262 username amirabbas 127262 unique_id port 127262 terminate_cause Lost-Carrier 127262 bytes_out 978511 127262 bytes_in 30630494 127262 station_ip 37.27.7.181 127262 port 15730082 127262 nas_port_type Virtual 127262 remote_ip 5.5.5.106 127263 username sedighe 127263 mac 127263 bytes_out 180345 127263 bytes_in 232681 127263 station_ip 83.122.129.18 127263 port 237 127263 unique_id port 127263 remote_ip 10.8.0.146 127267 username sedighe 127267 mac 127267 bytes_out 1956 127267 bytes_in 5852 127267 station_ip 83.122.186.181 127267 port 237 127267 unique_id port 127267 remote_ip 10.8.0.146 127268 username amirabbas 127268 kill_reason Maximum number of concurrent logins reached 127268 unique_id port 127268 bytes_out 0 127268 bytes_in 0 127268 station_ip 37.27.13.171 127268 port 15730091 127268 nas_port_type Virtual 127270 username amirabbas 127270 unique_id port 127270 terminate_cause Lost-Carrier 127270 bytes_out 11796 127270 bytes_in 3597 127270 station_ip 188.245.90.225 127270 port 15730083 127270 nas_port_type Virtual 127270 remote_ip 5.5.5.146 127273 username alihosseini1 127273 kill_reason Another user logged on this global unique id 127273 mac 127273 bytes_out 0 127273 bytes_in 0 127273 station_ip 5.119.224.103 127273 port 240 127273 unique_id port 127273 remote_ip 10.8.0.166 127274 username sedighe 127274 mac 127274 bytes_out 26328 127274 bytes_in 22419 127274 station_ip 83.122.109.234 127274 port 237 127274 unique_id port 127274 remote_ip 10.8.0.146 127276 username jafari 127276 mac 127276 bytes_out 0 127276 bytes_in 0 127276 station_ip 89.32.98.208 127276 port 219 127276 unique_id port 127278 username amirabbas 127278 unique_id port 127278 terminate_cause Lost-Carrier 127278 bytes_out 37429 127278 bytes_in 185543 127278 station_ip 37.27.16.24 127278 port 15730089 127278 nas_port_type Virtual 127278 remote_ip 5.5.5.38 127279 username houshang 127279 mac 127279 bytes_out 0 127279 bytes_in 0 127279 station_ip 5.119.20.70 127279 port 238 127279 unique_id port 127279 remote_ip 10.8.0.22 127281 username sedighe 127281 mac 127281 bytes_out 21842 127281 bytes_in 13801 127281 station_ip 83.122.109.234 127281 port 219 127281 unique_id port 127281 remote_ip 10.8.0.146 127283 username zare 127283 mac 127283 bytes_out 0 127283 bytes_in 0 127283 station_ip 37.27.32.144 127283 port 219 64379 username arezoo 64379 kill_reason Another user logged on this global unique id 64379 mac 5.237.85.87:49192: Unknown host 64379 bytes_out 0 64379 bytes_in 0 64379 station_ip 5.237.85.87:49192 64379 port 1017 64379 unique_id port 127283 unique_id port 127283 remote_ip 10.8.0.18 127286 username sedighe 127286 mac 127286 bytes_out 0 127286 bytes_in 0 127286 station_ip 83.122.32.197 127286 port 219 127286 unique_id port 127286 remote_ip 10.8.0.146 127289 username sedighe 127289 mac 127289 bytes_out 0 127289 bytes_in 0 127289 station_ip 83.122.32.197 127289 port 237 127289 unique_id port 127289 remote_ip 10.8.0.146 127293 username hosseine 127293 kill_reason Another user logged on this global unique id 127293 mac 127293 bytes_out 0 127293 bytes_in 0 127293 station_ip 83.123.33.175 127293 port 221 127293 unique_id port 127295 username amir 127295 mac 127295 bytes_out 0 127295 bytes_in 0 127295 station_ip 46.225.215.86 127295 port 237 127295 unique_id port 127295 remote_ip 10.8.0.50 127297 username barzegar 127297 mac 127297 bytes_out 10094 127297 bytes_in 11371 127297 station_ip 5.120.36.32 127297 port 231 127297 unique_id port 127297 remote_ip 10.8.0.234 127298 username zare 127298 mac 127298 bytes_out 0 127298 bytes_in 0 127298 station_ip 37.27.32.144 127298 port 238 127298 unique_id port 127298 remote_ip 10.8.0.18 127301 username mirzaei 127301 mac 127301 bytes_out 0 127301 bytes_in 0 127301 station_ip 5.120.175.250 127301 port 238 127301 unique_id port 127301 remote_ip 10.8.0.66 127304 username hosseine 127304 mac 127304 bytes_out 0 127304 bytes_in 0 127304 station_ip 83.123.33.175 127304 port 221 127304 unique_id port 127307 username sedighe 127307 mac 127307 bytes_out 0 127307 bytes_in 0 127307 station_ip 83.123.42.181 127307 port 223 127307 unique_id port 127307 remote_ip 10.8.0.146 127311 username barzegar 127311 mac 127311 bytes_out 0 127311 bytes_in 0 127311 station_ip 5.120.36.32 127311 port 238 127311 unique_id port 127311 remote_ip 10.8.0.234 127312 username sedighe 127312 mac 127312 bytes_out 75810 127312 bytes_in 917700 127312 station_ip 37.129.195.11 127312 port 221 127312 unique_id port 127312 remote_ip 10.8.0.146 127314 username mansur 127314 mac 127314 bytes_out 606540 127314 bytes_in 11273877 127314 station_ip 5.119.10.233 127314 port 239 127314 unique_id port 127314 remote_ip 10.8.0.210 127315 username houshang 127315 mac 127315 bytes_out 995334 127315 bytes_in 6958357 127315 station_ip 5.119.20.70 127315 port 234 127315 unique_id port 127315 remote_ip 10.8.0.22 127317 username jamali 127317 mac 127317 bytes_out 0 127317 bytes_in 0 127317 station_ip 5.119.104.252 127317 port 235 127317 unique_id port 127318 username mirzaei 127318 mac 127318 bytes_out 0 127318 bytes_in 0 127318 station_ip 5.119.8.252 127318 port 229 127318 unique_id port 127318 remote_ip 10.8.0.66 127322 username amir 127322 kill_reason Another user logged on this global unique id 127322 mac 127322 bytes_out 0 127322 bytes_in 0 127322 station_ip 46.225.215.86 127322 port 237 127322 unique_id port 127322 remote_ip 10.8.0.50 127325 username mansur 127325 mac 127325 bytes_out 0 127325 bytes_in 0 127325 station_ip 5.119.10.233 127325 port 231 127325 unique_id port 127325 remote_ip 10.8.0.210 127327 username rajaei 127327 mac 127327 bytes_out 1661575 127327 bytes_in 17612865 127327 station_ip 5.200.107.120 127327 port 221 127327 unique_id port 127327 remote_ip 10.8.0.34 127329 username sedighe 127329 mac 127329 bytes_out 255848 127329 bytes_in 4741698 127329 station_ip 37.129.195.11 127329 port 238 127329 unique_id port 127329 remote_ip 10.8.0.146 127332 username sedighe 127332 mac 127332 bytes_out 31768 127332 bytes_in 68154 127332 station_ip 83.123.251.109 127332 port 221 127332 unique_id port 127332 remote_ip 10.8.0.146 127333 username hoorieh 127333 mac 127333 bytes_out 0 127333 bytes_in 0 127333 station_ip 5.120.173.152 127333 port 221 127290 remote_ip 5.5.5.45 127292 username abravesh 127292 unique_id port 127292 terminate_cause Lost-Carrier 127292 bytes_out 12078 127292 bytes_in 29841 127292 station_ip 5.120.85.196 127292 port 15730094 127292 nas_port_type Virtual 127292 remote_ip 5.5.5.83 127294 username moradi 127294 kill_reason Another user logged on this global unique id 127294 mac 127294 bytes_out 0 127294 bytes_in 0 127294 station_ip 83.123.29.63 127294 port 241 127294 unique_id port 127296 username hosseine 127296 kill_reason Another user logged on this global unique id 127296 mac 127296 bytes_out 0 127296 bytes_in 0 127296 station_ip 83.123.33.175 127296 port 221 127296 unique_id port 127302 username hosseine 127302 kill_reason Another user logged on this global unique id 127302 mac 127302 bytes_out 0 127302 bytes_in 0 127302 station_ip 83.123.33.175 127302 port 221 127302 unique_id port 127303 username mirzaei 127303 mac 127303 bytes_out 0 127303 bytes_in 0 127303 station_ip 5.120.175.250 127303 port 229 127303 unique_id port 127303 remote_ip 10.8.0.66 127306 username jamali 127306 kill_reason Another user logged on this global unique id 127306 mac 127306 bytes_out 0 127306 bytes_in 0 127306 station_ip 5.119.104.252 127306 port 235 127306 unique_id port 127309 username moradi 127309 kill_reason Another user logged on this global unique id 127309 mac 127309 bytes_out 0 127309 bytes_in 0 127309 station_ip 83.123.29.63 127309 port 241 127309 unique_id port 127320 username alihosseini1 127320 mac 127320 bytes_out 0 127320 bytes_in 0 127320 station_ip 5.119.224.103 127320 port 240 127320 unique_id port 127323 username mahdiyehalizadeh 127323 mac 127323 bytes_out 1203324 127323 bytes_in 17522818 127323 station_ip 83.122.40.137 127323 port 221 127323 unique_id port 127323 remote_ip 10.8.0.82 127324 username zare 127324 mac 127324 bytes_out 0 127324 bytes_in 0 127324 station_ip 37.27.32.144 127324 port 221 127324 unique_id port 127324 remote_ip 10.8.0.18 127326 username zare 127326 kill_reason Maximum check online fails reached 127326 mac 127326 bytes_out 0 127326 bytes_in 0 127326 station_ip 37.27.32.144 127326 port 235 127326 unique_id port 127330 username mansur 127330 mac 127330 bytes_out 0 127330 bytes_in 0 127330 station_ip 5.119.10.233 127330 port 139 127330 unique_id port 127330 remote_ip 10.8.1.194 127334 username mirzaei 127334 mac 127334 bytes_out 0 127334 bytes_in 0 127334 station_ip 5.119.8.252 127334 port 229 127334 unique_id port 127334 remote_ip 10.8.0.66 127336 username barzegar 127336 mac 127336 bytes_out 0 127336 bytes_in 0 127336 station_ip 5.120.36.32 127336 port 137 127336 unique_id port 127336 remote_ip 10.8.1.174 127337 username alihosseini1 127337 mac 127337 bytes_out 0 127337 bytes_in 0 127337 station_ip 5.120.160.47 127337 port 138 127337 unique_id port 127337 remote_ip 10.8.1.106 127340 username amir 127340 mac 127340 bytes_out 0 127340 bytes_in 0 127340 station_ip 46.225.215.86 127340 port 237 127340 unique_id port 127344 username kordestani 127344 mac 127344 bytes_out 0 127344 bytes_in 0 127344 station_ip 151.235.81.4 127344 port 237 127344 unique_id port 127344 remote_ip 10.8.0.134 127346 username mirzaei 127346 mac 127346 bytes_out 13093 127346 bytes_in 18482 127346 station_ip 5.120.173.223 127346 port 237 127346 unique_id port 127346 remote_ip 10.8.0.66 127347 username sade 127347 unique_id port 127347 terminate_cause Lost-Carrier 127347 bytes_out 4649377 127347 bytes_in 124749408 127347 station_ip 5.119.177.66 127347 port 15730097 127291 port 231 127291 unique_id port 127291 remote_ip 10.8.0.234 127299 username hosseine 127299 kill_reason Another user logged on this global unique id 127299 mac 127299 bytes_out 0 127299 bytes_in 0 127299 station_ip 83.123.33.175 127299 port 221 127299 unique_id port 127300 username mirzaei 127300 mac 127300 bytes_out 0 127300 bytes_in 0 127300 station_ip 5.120.175.250 127300 port 229 127300 unique_id port 127305 username mohammadjavad 127305 mac 127305 bytes_out 0 127305 bytes_in 0 127305 station_ip 83.122.205.42 127305 port 234 127305 unique_id port 127305 remote_ip 10.8.0.142 127308 username alihosseini1 127308 kill_reason Another user logged on this global unique id 127308 mac 127308 bytes_out 0 127308 bytes_in 0 127308 station_ip 5.119.224.103 127308 port 240 127308 unique_id port 127310 username houshang 127310 mac 127310 bytes_out 240590 127310 bytes_in 1717941 127310 station_ip 5.119.20.70 127310 port 231 127310 unique_id port 127310 remote_ip 10.8.0.22 127313 username zare 127313 mac 127313 bytes_out 0 127313 bytes_in 0 127313 station_ip 37.27.32.144 127313 port 221 127313 unique_id port 127313 remote_ip 10.8.0.18 127316 username mirzaei 127316 mac 127316 bytes_out 20178 127316 bytes_in 26231 127316 station_ip 5.120.175.250 127316 port 229 127316 unique_id port 127316 remote_ip 10.8.0.66 127319 username barzegar 127319 mac 127319 bytes_out 8834 127319 bytes_in 13423 127319 station_ip 5.120.36.32 127319 port 231 127319 unique_id port 127319 remote_ip 10.8.0.234 127321 username kamali1 127321 kill_reason Relative expiration date has reached 127321 mac 127321 bytes_out 0 127321 bytes_in 0 127321 station_ip 5.120.180.252 127321 port 229 127321 unique_id port 127328 username alihosseini1 127328 mac 127328 bytes_out 0 127328 bytes_in 0 127328 station_ip 5.120.160.47 127328 port 138 127328 unique_id port 127328 remote_ip 10.8.1.106 127331 username mansur 127331 mac 127331 bytes_out 0 127331 bytes_in 0 127331 station_ip 5.119.10.233 127331 port 238 127331 unique_id port 127331 remote_ip 10.8.0.210 127335 username sobhan 127335 unique_id port 127335 terminate_cause Lost-Carrier 127335 bytes_out 46443 127335 bytes_in 96433 127335 station_ip 5.120.166.88 127335 port 15730095 127335 nas_port_type Virtual 127335 remote_ip 5.5.5.85 127339 username moradi 127339 mac 127339 bytes_out 0 127339 bytes_in 0 127339 station_ip 83.123.29.63 127339 port 241 127339 unique_id port 127341 username aminvpn 127341 unique_id port 127341 terminate_cause Lost-Carrier 127341 bytes_out 1049250 127341 bytes_in 2643979 127341 station_ip 109.125.128.116 127341 port 15730096 127341 nas_port_type Virtual 127341 remote_ip 5.5.5.96 127343 username kordestani 127343 mac 127343 bytes_out 1251957 127343 bytes_in 18811782 127343 station_ip 151.235.81.4 127343 port 238 127343 unique_id port 127343 remote_ip 10.8.0.134 127345 username mirzaei 127345 mac 127345 bytes_out 421721 127345 bytes_in 2423897 127345 station_ip 5.120.173.223 127345 port 221 127345 unique_id port 127345 remote_ip 10.8.0.66 127351 username mansur 127351 mac 127351 bytes_out 0 127351 bytes_in 0 127351 station_ip 5.119.10.233 127351 port 139 127351 unique_id port 127352 username mirzaei 127352 mac 127352 bytes_out 37509 127352 bytes_in 41908 127352 station_ip 5.114.128.219 127352 port 221 127352 unique_id port 127352 remote_ip 10.8.0.66 127353 username barzegar 127353 mac 127353 bytes_out 0 127353 bytes_in 0 127353 station_ip 5.120.36.32 127353 port 137 127333 unique_id port 127333 remote_ip 10.8.0.38 127338 username barzegar 127338 mac 127338 bytes_out 0 127338 bytes_in 0 127338 station_ip 5.120.36.32 127338 port 137 127338 unique_id port 127338 remote_ip 10.8.1.174 127342 username barzegar 127342 mac 127342 bytes_out 4862 127342 bytes_in 7514 127342 station_ip 5.120.36.32 127342 port 137 127342 unique_id port 127342 remote_ip 10.8.1.174 127348 username barzegar 127348 mac 127348 bytes_out 0 127348 bytes_in 0 127348 station_ip 5.120.36.32 127348 port 221 127348 unique_id port 127348 remote_ip 10.8.0.234 127349 username alihosseini1 127349 mac 127349 bytes_out 151093 127349 bytes_in 194236 127349 station_ip 5.120.160.47 127349 port 229 127349 unique_id port 127349 remote_ip 10.8.0.166 127350 username mansur 127350 kill_reason Another user logged on this global unique id 127350 mac 127350 bytes_out 0 127350 bytes_in 0 127350 station_ip 5.119.10.233 127350 port 139 127350 unique_id port 127350 remote_ip 10.8.1.194 127356 username zare 127356 kill_reason Another user logged on this global unique id 127356 mac 127356 bytes_out 0 127356 bytes_in 0 127356 station_ip 37.27.32.144 127356 port 231 127356 unique_id port 127356 remote_ip 10.8.0.18 127358 username mirzaei 127358 kill_reason Maximum check online fails reached 127358 mac 127358 bytes_out 0 127358 bytes_in 0 127358 station_ip 5.119.24.111 127358 port 138 127358 unique_id port 127359 username aminvpn 127359 mac 127359 bytes_out 0 127359 bytes_in 0 127359 station_ip 83.123.51.79 127359 port 229 127359 unique_id port 127359 remote_ip 10.8.0.14 127362 username zare 127362 mac 127362 bytes_out 0 127362 bytes_in 0 127362 station_ip 37.27.32.144 127362 port 231 127362 unique_id port 127365 username mostafa_es78 127365 unique_id port 127365 terminate_cause User-Request 127365 bytes_out 71851 127365 bytes_in 202462 127365 station_ip 178.236.35.96 127365 port 15730099 127365 nas_port_type Virtual 127365 remote_ip 5.5.5.40 127367 username aminvpn 127367 unique_id port 127367 terminate_cause Lost-Carrier 127367 bytes_out 419202 127367 bytes_in 8931996 127367 station_ip 164.138.190.243 127367 port 15730100 127367 nas_port_type Virtual 127367 remote_ip 5.5.5.41 127368 username barzegar 127368 mac 127368 bytes_out 0 127368 bytes_in 0 127368 station_ip 5.120.36.32 127368 port 137 127368 unique_id port 127368 remote_ip 10.8.1.174 127370 username sabaghnezhad 127370 mac 127370 bytes_out 0 127370 bytes_in 0 127370 station_ip 37.129.142.70 127370 port 228 127370 unique_id port 127370 remote_ip 10.8.0.186 127374 username sedighe 127374 mac 127374 bytes_out 2340731 127374 bytes_in 48329195 127374 station_ip 83.123.251.109 127374 port 231 127374 unique_id port 127374 remote_ip 10.8.0.146 127380 username barzegar 127380 mac 127380 bytes_out 0 127380 bytes_in 0 127380 station_ip 5.120.36.32 127380 port 139 127380 unique_id port 127380 remote_ip 10.8.1.174 127384 username arash 127384 mac 127384 bytes_out 358077 127384 bytes_in 3363343 127384 station_ip 37.27.23.115 127384 port 228 127384 unique_id port 127384 remote_ip 10.8.0.114 127389 username mosi 127389 kill_reason Another user logged on this global unique id 127389 mac 127389 bytes_out 0 127389 bytes_in 0 127389 station_ip 151.235.124.20 127389 port 228 127389 unique_id port 127389 remote_ip 10.8.0.138 127391 username mohammadmahdi 127391 kill_reason Another user logged on this global unique id 127391 mac 127391 bytes_out 0 127391 bytes_in 0 127391 station_ip 5.120.191.220 127391 port 137 127391 unique_id port 127347 nas_port_type Virtual 127347 remote_ip 5.5.5.99 127354 username arash 127354 mac 127354 bytes_out 4230540 127354 bytes_in 29552560 127354 station_ip 37.27.23.115 127354 port 232 127354 unique_id port 127354 remote_ip 10.8.0.114 127355 username mirzaei 127355 mac 127355 bytes_out 28185 127355 bytes_in 96453 127355 station_ip 5.119.144.214 127355 port 221 127355 unique_id port 127355 remote_ip 10.8.0.66 127361 username barzegar 127361 mac 127361 bytes_out 0 127361 bytes_in 0 127361 station_ip 5.120.36.32 127361 port 137 127361 unique_id port 127361 remote_ip 10.8.1.174 127363 username barzegar 127363 mac 127363 bytes_out 0 127363 bytes_in 0 127363 station_ip 5.120.36.32 127363 port 137 127363 unique_id port 127363 remote_ip 10.8.1.174 127364 username aminvpn 127364 unique_id port 127364 terminate_cause User-Request 127364 bytes_out 16638799 127364 bytes_in 440693896 127364 station_ip 164.138.190.243 127364 port 15730098 127364 nas_port_type Virtual 127364 remote_ip 5.5.5.39 127366 username sedighe 127366 mac 127366 bytes_out 0 127366 bytes_in 0 127366 station_ip 83.123.251.109 127366 port 221 127366 unique_id port 127366 remote_ip 10.8.0.146 127371 username zare 127371 mac 127371 bytes_out 0 127371 bytes_in 0 127371 station_ip 37.27.32.144 127371 port 237 127371 unique_id port 127371 remote_ip 10.8.0.18 127372 username arash 127372 mac 127372 bytes_out 4692654 127372 bytes_in 37552845 127372 station_ip 37.27.23.115 127372 port 232 127372 unique_id port 127372 remote_ip 10.8.0.114 127373 username zare 127373 mac 127373 bytes_out 0 127373 bytes_in 0 127373 station_ip 37.27.32.144 127373 port 232 127373 unique_id port 127373 remote_ip 10.8.0.18 127375 username mohammadmahdi 127375 mac 127375 bytes_out 0 127375 bytes_in 0 127375 station_ip 5.120.191.220 127375 port 137 127375 unique_id port 127375 remote_ip 10.8.1.158 127376 username mohammadmahdi 127376 mac 127376 bytes_out 656156 127376 bytes_in 9297619 127376 station_ip 5.120.191.220 127376 port 232 127376 unique_id port 127376 remote_ip 10.8.0.54 127379 username zare 127379 mac 127379 bytes_out 0 127379 bytes_in 0 127379 station_ip 37.27.32.144 127379 port 231 127379 unique_id port 127379 remote_ip 10.8.0.18 127381 username sabaghnezhad 127381 mac 127381 bytes_out 0 127381 bytes_in 0 127381 station_ip 37.129.142.70 127381 port 221 127381 unique_id port 127381 remote_ip 10.8.0.186 127382 username mosi 127382 kill_reason Another user logged on this global unique id 127382 mac 127382 bytes_out 0 127382 bytes_in 0 127382 station_ip 5.134.157.21 127382 port 219 127382 unique_id port 127385 username sabaghnezhad 127385 mac 127385 bytes_out 0 127385 bytes_in 0 127385 station_ip 37.129.191.60 127385 port 231 127385 unique_id port 127385 remote_ip 10.8.0.186 127388 username aminvpn 127388 mac 127388 bytes_out 1091994 127388 bytes_in 3127776 127388 station_ip 113.203.6.189 127388 port 229 127388 unique_id port 127388 remote_ip 10.8.0.14 127390 username barzegar 127390 mac 127390 bytes_out 0 127390 bytes_in 0 127390 station_ip 5.120.36.32 127390 port 139 127390 unique_id port 127390 remote_ip 10.8.1.174 127397 username mosi 127397 kill_reason Another user logged on this global unique id 127397 mac 127397 bytes_out 0 127397 bytes_in 0 127397 station_ip 151.235.124.20 127397 port 228 127397 unique_id port 127401 username naeimeh 127401 kill_reason Another user logged on this global unique id 127401 mac 127401 bytes_out 0 127401 bytes_in 0 127353 unique_id port 127353 remote_ip 10.8.1.174 127357 username barzegar 127357 mac 127357 bytes_out 0 127357 bytes_in 0 127357 station_ip 5.120.36.32 127357 port 137 127357 unique_id port 127357 remote_ip 10.8.1.174 127360 username jamali 127360 kill_reason Another user logged on this global unique id 127360 mac 127360 bytes_out 0 127360 bytes_in 0 127360 station_ip 5.119.104.252 127360 port 234 127360 unique_id port 127360 remote_ip 10.8.0.150 127369 username barzegar 127369 mac 127369 bytes_out 0 127369 bytes_in 0 127369 station_ip 5.120.36.32 127369 port 137 127369 unique_id port 127369 remote_ip 10.8.1.174 127377 username mosi 127377 kill_reason Another user logged on this global unique id 127377 mac 127377 bytes_out 0 127377 bytes_in 0 127377 station_ip 5.134.157.21 127377 port 219 127377 unique_id port 127377 remote_ip 10.8.0.138 127378 username mahdixz 127378 unique_id port 127378 terminate_cause User-Request 127378 bytes_out 2040076 127378 bytes_in 64098386 127378 station_ip 151.235.120.123 127378 port 15730102 127378 nas_port_type Virtual 127378 remote_ip 5.5.5.53 127383 username zare 127383 mac 127383 bytes_out 0 127383 bytes_in 0 127383 station_ip 37.27.32.144 127383 port 221 127383 unique_id port 127383 remote_ip 10.8.0.18 127386 username mosi 127386 mac 127386 bytes_out 0 127386 bytes_in 0 127386 station_ip 5.134.157.21 127386 port 219 127386 unique_id port 127387 username hamidsalari 127387 kill_reason Another user logged on this global unique id 127387 mac 127387 bytes_out 0 127387 bytes_in 0 127387 station_ip 5.119.239.169 127387 port 233 127387 unique_id port 127392 username mohammadmahdi 127392 mac 127392 bytes_out 0 127392 bytes_in 0 127392 station_ip 5.120.191.220 127392 port 137 127392 unique_id port 127394 username barzegar 127394 mac 127394 bytes_out 0 127394 bytes_in 0 127394 station_ip 5.120.36.32 127394 port 137 127394 unique_id port 127394 remote_ip 10.8.1.174 127408 username barzegar 127408 mac 127408 bytes_out 0 127408 bytes_in 0 127408 station_ip 5.120.36.32 127408 port 137 127408 unique_id port 127408 remote_ip 10.8.1.174 127414 username mirzaei 127414 kill_reason Another user logged on this global unique id 127414 mac 127414 bytes_out 0 127414 bytes_in 0 127414 station_ip 5.120.144.86 127414 port 229 127414 unique_id port 127414 remote_ip 10.8.0.66 127420 username mirzaei 127420 kill_reason Another user logged on this global unique id 127420 mac 127420 bytes_out 0 127420 bytes_in 0 127420 station_ip 5.120.144.86 127420 port 229 127420 unique_id port 127423 username sabaghnezhad 127423 mac 127423 bytes_out 0 127423 bytes_in 0 127423 station_ip 113.203.91.108 127423 port 219 127423 unique_id port 127423 remote_ip 10.8.0.186 127424 username barzegar 127424 mac 127424 bytes_out 0 127424 bytes_in 0 127424 station_ip 5.120.36.32 127424 port 219 127424 unique_id port 127424 remote_ip 10.8.0.234 127426 username barzegar 127426 mac 127426 bytes_out 0 127426 bytes_in 0 127426 station_ip 5.120.36.32 127426 port 219 127426 unique_id port 127426 remote_ip 10.8.0.234 127428 username barzegar 127428 mac 127428 bytes_out 0 127428 bytes_in 0 127428 station_ip 5.120.36.32 127428 port 219 127428 unique_id port 127428 remote_ip 10.8.0.234 127437 username barzegar 127437 mac 127437 bytes_out 0 127437 bytes_in 0 127437 station_ip 5.120.36.32 127437 port 219 127437 unique_id port 127437 remote_ip 10.8.0.234 127438 mac 127438 bytes_out 0 127438 bytes_in 0 127438 station_ip 5.120.36.32 127391 remote_ip 10.8.1.158 127393 username mosi 127393 kill_reason Another user logged on this global unique id 127393 mac 127393 bytes_out 0 127393 bytes_in 0 127393 station_ip 151.235.124.20 127393 port 228 127393 unique_id port 127395 username sade 127395 unique_id port 127395 terminate_cause User-Request 127395 bytes_out 12165524 127395 bytes_in 222366782 127395 station_ip 5.119.177.66 127395 port 15730101 127395 nas_port_type Virtual 127395 remote_ip 5.5.5.49 127396 username mansour 127396 mac 127396 bytes_out 0 127396 bytes_in 0 127396 station_ip 5.202.22.92 127396 port 231 127396 unique_id port 127396 remote_ip 10.8.0.30 127398 username zare 127398 mac 127398 bytes_out 1569417 127398 bytes_in 15163064 127398 station_ip 37.27.32.144 127398 port 219 127398 unique_id port 127398 remote_ip 10.8.0.18 127399 username barzegar 127399 mac 127399 bytes_out 0 127399 bytes_in 0 127399 station_ip 5.120.36.32 127399 port 137 127399 unique_id port 127399 remote_ip 10.8.1.174 127400 username zare 127400 mac 127400 bytes_out 0 127400 bytes_in 0 127400 station_ip 37.27.32.144 127400 port 232 127400 unique_id port 127400 remote_ip 10.8.0.18 127402 username naeimeh 127402 mac 127402 bytes_out 0 127402 bytes_in 0 127402 station_ip 113.203.107.29 127402 port 229 127402 unique_id port 127404 username barzegar 127404 mac 127404 bytes_out 0 127404 bytes_in 0 127404 station_ip 5.120.36.32 127404 port 137 127404 unique_id port 127404 remote_ip 10.8.1.174 127415 username barzegar 127415 mac 127415 bytes_out 0 127415 bytes_in 0 127415 station_ip 5.120.36.32 127415 port 137 127415 unique_id port 127415 remote_ip 10.8.1.174 127416 username mirzaei 127416 kill_reason Another user logged on this global unique id 127416 mac 127416 bytes_out 0 127416 bytes_in 0 127416 station_ip 5.120.144.86 127416 port 229 127416 unique_id port 127417 username barzegar 127417 mac 127417 bytes_out 0 127417 bytes_in 0 127417 station_ip 5.120.36.32 127417 port 219 127417 unique_id port 127417 remote_ip 10.8.0.234 127418 username arash 127418 mac 127418 bytes_out 0 127418 bytes_in 0 127418 station_ip 188.245.89.10 127418 port 219 127418 unique_id port 127418 remote_ip 10.8.0.114 127419 username mirzaei 127419 kill_reason Another user logged on this global unique id 127419 mac 127419 bytes_out 0 127419 bytes_in 0 127419 station_ip 5.120.144.86 127419 port 229 127419 unique_id port 127425 username mirzaei 127425 kill_reason Another user logged on this global unique id 127425 mac 127425 bytes_out 0 127425 bytes_in 0 127425 station_ip 5.120.116.75 127425 port 221 127425 unique_id port 127425 remote_ip 10.8.0.66 127427 username mirzaei 127427 kill_reason Another user logged on this global unique id 127427 mac 127427 bytes_out 0 127427 bytes_in 0 127427 station_ip 5.120.116.75 127427 port 221 127427 unique_id port 127430 username morteza 127430 mac 127430 bytes_out 0 127430 bytes_in 0 127430 station_ip 37.129.6.176 127430 port 219 127430 unique_id port 127430 remote_ip 10.8.0.46 127431 username barzegar 127431 mac 127431 bytes_out 0 127431 bytes_in 0 127431 station_ip 5.120.36.32 127431 port 219 127431 unique_id port 127431 remote_ip 10.8.0.234 127435 username barzegar 127435 mac 127435 bytes_out 0 127435 bytes_in 0 127435 station_ip 5.120.36.32 127435 port 219 127435 unique_id port 127435 remote_ip 10.8.0.234 127438 port 137 127438 unique_id port 127438 remote_ip 10.8.1.174 127439 username barzegar 127439 mac 127439 bytes_out 0 127401 station_ip 113.203.107.29 127401 port 229 127401 unique_id port 127401 remote_ip 10.8.0.78 127403 username zare 127403 mac 127403 bytes_out 540087 127403 bytes_in 5839084 127403 station_ip 37.27.32.144 127403 port 219 127403 unique_id port 127403 remote_ip 10.8.0.18 127405 username zare 127405 mac 127405 bytes_out 0 127405 bytes_in 0 127405 station_ip 37.27.32.144 127405 port 229 127405 unique_id port 127405 remote_ip 10.8.0.18 127406 username barzegar 127406 mac 127406 bytes_out 0 127406 bytes_in 0 127406 station_ip 5.120.36.32 127406 port 137 127406 unique_id port 127406 remote_ip 10.8.1.174 127407 username arash 127407 mac 127407 bytes_out 0 127407 bytes_in 0 127407 station_ip 188.245.89.10 127407 port 221 127407 unique_id port 127407 remote_ip 10.8.0.114 127409 username mostafa_es78 127409 unique_id port 127409 terminate_cause User-Request 127409 bytes_out 1539755 127409 bytes_in 27451738 127409 station_ip 178.236.35.96 127409 port 15730103 127409 nas_port_type Virtual 127409 remote_ip 5.5.5.56 127410 username zare 127410 mac 127410 bytes_out 812604 127410 bytes_in 8884902 127410 station_ip 37.27.32.144 127410 port 219 127410 unique_id port 127410 remote_ip 10.8.0.18 127411 username barzegar 127411 mac 127411 bytes_out 0 127411 bytes_in 0 127411 station_ip 5.120.36.32 127411 port 137 127411 unique_id port 127411 remote_ip 10.8.1.174 127412 username barzegar 127412 mac 127412 bytes_out 0 127412 bytes_in 0 127412 station_ip 5.120.36.32 127412 port 137 127412 unique_id port 127412 remote_ip 10.8.1.174 127413 username barzegar 127413 mac 127413 bytes_out 0 127413 bytes_in 0 127413 station_ip 5.120.36.32 127413 port 137 127413 unique_id port 127413 remote_ip 10.8.1.174 127421 username mirzaei 127421 mac 127421 bytes_out 0 127421 bytes_in 0 127421 station_ip 5.120.144.86 127421 port 229 127421 unique_id port 127422 username barzegar 127422 mac 127422 bytes_out 0 127422 bytes_in 0 127422 station_ip 5.120.36.32 127422 port 221 127422 unique_id port 127422 remote_ip 10.8.0.234 127429 username barzegar 127429 mac 127429 bytes_out 0 127429 bytes_in 0 127429 station_ip 5.120.36.32 127429 port 229 127429 unique_id port 127429 remote_ip 10.8.0.234 127432 username barzegar 127432 mac 127432 bytes_out 0 127432 bytes_in 0 127432 station_ip 5.120.36.32 127432 port 219 127432 unique_id port 127432 remote_ip 10.8.0.234 127433 username barzegar 127433 mac 127433 bytes_out 0 127433 bytes_in 0 127433 station_ip 5.120.36.32 127433 port 219 127433 unique_id port 127433 remote_ip 10.8.0.234 127434 username barzegar 127434 mac 127434 bytes_out 0 127434 bytes_in 0 127434 station_ip 5.120.36.32 127434 port 219 127434 unique_id port 127434 remote_ip 10.8.0.234 127436 username barzegar 127436 mac 127436 bytes_out 0 127436 bytes_in 0 127436 station_ip 5.120.36.32 127436 port 219 127436 unique_id port 127436 remote_ip 10.8.0.234 127439 bytes_in 0 127439 station_ip 5.120.36.32 127439 port 137 127439 unique_id port 127439 remote_ip 10.8.1.174 127441 username barzegar 127441 mac 127441 bytes_out 0 127441 bytes_in 0 127441 station_ip 5.120.36.32 127441 port 137 127441 unique_id port 127441 remote_ip 10.8.1.174 127445 username barzegar 127445 mac 127445 bytes_out 0 127445 bytes_in 0 127445 station_ip 5.120.36.32 127445 port 229 127445 unique_id port 127445 remote_ip 10.8.0.234 127449 username barzegar 127449 mac 127440 username barzegar 127440 mac 127440 bytes_out 0 127440 bytes_in 0 127440 station_ip 5.120.36.32 127440 port 219 127440 unique_id port 127440 remote_ip 10.8.0.234 127443 username sedighe 127443 mac 127443 bytes_out 153903 127443 bytes_in 1007622 127443 station_ip 83.123.50.106 127443 port 219 127443 unique_id port 127443 remote_ip 10.8.0.146 127444 username sedighe 127444 mac 127444 bytes_out 0 127444 bytes_in 0 127444 station_ip 83.123.50.106 127444 port 229 127444 unique_id port 127444 remote_ip 10.8.0.146 127453 username sedighe 127453 mac 127453 bytes_out 0 127453 bytes_in 0 127453 station_ip 113.203.84.227 127453 port 219 127453 unique_id port 127453 remote_ip 10.8.0.146 127456 username barzegar 127456 mac 127456 bytes_out 0 127456 bytes_in 0 127456 station_ip 5.120.36.32 127456 port 229 127456 unique_id port 127456 remote_ip 10.8.0.234 127459 username aminvpn 127459 mac 127459 bytes_out 0 127459 bytes_in 0 127459 station_ip 91.251.173.46 127459 port 229 127459 unique_id port 127459 remote_ip 10.8.0.14 127463 username sedighe 127463 mac 127463 bytes_out 0 127463 bytes_in 0 127463 station_ip 37.129.133.118 127463 port 229 127463 unique_id port 127463 remote_ip 10.8.0.146 127468 username sedighe 127468 mac 127468 bytes_out 0 127468 bytes_in 0 127468 station_ip 37.129.133.118 127468 port 223 127468 unique_id port 127468 remote_ip 10.8.0.146 127469 username barzegar 127469 mac 127469 bytes_out 0 127469 bytes_in 0 127469 station_ip 5.120.36.32 127469 port 137 127469 unique_id port 127469 remote_ip 10.8.1.174 127472 username jafari 127472 kill_reason Another user logged on this global unique id 127472 mac 127472 bytes_out 0 127472 bytes_in 0 127472 station_ip 93.114.30.125 127472 port 223 127472 unique_id port 127472 remote_ip 10.8.0.242 127476 username aminvpn 127476 mac 127476 bytes_out 14965 127476 bytes_in 18515 127476 station_ip 5.211.87.111 127476 port 232 127476 unique_id port 127476 remote_ip 10.8.0.14 127488 username sedighe 127488 mac 127488 bytes_out 0 127488 bytes_in 0 127488 station_ip 113.203.120.187 127488 port 232 127488 unique_id port 127488 remote_ip 10.8.0.146 127493 username barzegar 127493 mac 127493 bytes_out 0 127493 bytes_in 0 127493 station_ip 5.120.36.32 127493 port 137 127493 unique_id port 127493 remote_ip 10.8.1.174 127498 username khalili 127498 mac 127498 bytes_out 6919 127498 bytes_in 14569 127498 station_ip 5.119.142.28 127498 port 139 127498 unique_id port 127498 remote_ip 10.8.1.18 127500 username sabaghnezhad 127500 mac 127500 bytes_out 0 127500 bytes_in 0 127500 station_ip 83.123.103.70 127500 port 232 127500 unique_id port 127500 remote_ip 10.8.0.186 127501 username abravesh 127501 unique_id port 127501 terminate_cause User-Request 127501 bytes_out 322 127501 bytes_in 176 127501 station_ip 5.120.158.94 127501 port 15730107 127501 nas_port_type Virtual 127501 remote_ip 5.5.5.68 127503 username barzegar 127503 mac 127503 bytes_out 2151470 127503 bytes_in 1413999 127503 station_ip 5.120.36.32 127503 port 223 127503 unique_id port 127503 remote_ip 10.8.0.234 127506 username abravesh 127506 unique_id port 127506 terminate_cause User-Request 127506 bytes_out 270 127506 bytes_in 176 127506 station_ip 5.120.158.94 127506 port 15730109 127506 nas_port_type Virtual 127506 remote_ip 5.5.5.73 127507 username abravesh 127507 unique_id port 127507 terminate_cause User-Request 127507 bytes_out 386 127507 bytes_in 172 127442 username barzegar 127442 mac 127442 bytes_out 0 127442 bytes_in 0 127442 station_ip 5.120.36.32 127442 port 229 127442 unique_id port 127442 remote_ip 10.8.0.234 127446 username sedighe 127446 mac 127446 bytes_out 0 127446 bytes_in 0 127446 station_ip 83.123.191.223 127446 port 219 127446 unique_id port 127446 remote_ip 10.8.0.146 127447 username sedighe 127447 mac 127447 bytes_out 0 127447 bytes_in 0 127447 station_ip 83.123.191.223 127447 port 229 127447 unique_id port 127447 remote_ip 10.8.0.146 127448 username sedighe 127448 mac 127448 bytes_out 0 127448 bytes_in 0 127448 station_ip 83.123.191.223 127448 port 219 127448 unique_id port 127448 remote_ip 10.8.0.146 127451 username sedighe 127451 mac 127451 bytes_out 0 127451 bytes_in 0 127451 station_ip 113.203.24.11 127451 port 229 127451 unique_id port 127451 remote_ip 10.8.0.146 127452 username barzegar 127452 mac 127452 bytes_out 0 127452 bytes_in 0 127452 station_ip 5.120.36.32 127452 port 229 127452 unique_id port 127452 remote_ip 10.8.0.234 127454 username sedighe 127454 mac 127454 bytes_out 0 127454 bytes_in 0 127454 station_ip 37.129.176.26 127454 port 229 127454 unique_id port 127454 remote_ip 10.8.0.146 127455 username barzegar 127455 mac 127455 bytes_out 0 127455 bytes_in 0 127455 station_ip 5.120.36.32 127455 port 229 127455 unique_id port 127455 remote_ip 10.8.0.234 127458 username barzegar 127458 mac 127458 bytes_out 0 127458 bytes_in 0 127458 station_ip 5.120.36.32 127458 port 137 127458 unique_id port 127458 remote_ip 10.8.1.174 127460 username mosi 127460 mac 127460 bytes_out 0 127460 bytes_in 0 127460 station_ip 151.235.124.20 127460 port 237 127460 unique_id port 127460 remote_ip 10.8.0.138 127464 username hosseine 127464 mac 127464 bytes_out 3325227 127464 bytes_in 47458941 127464 station_ip 83.123.33.175 127464 port 223 127464 unique_id port 64558 username arezoo 64558 kill_reason Maximum check online fails reached 64558 mac 5.237.85.87:49229: Unknown host 64558 bytes_out 0 64558 bytes_in 0 64558 station_ip 5.237.85.87:49229 64558 port 1017 64558 unique_id port 127464 remote_ip 10.8.0.238 127465 username sedighe 127465 mac 127465 bytes_out 0 127465 bytes_in 0 127465 station_ip 37.129.133.118 127465 port 219 127465 unique_id port 127465 remote_ip 10.8.0.146 127466 username barzegar 127466 mac 127466 bytes_out 0 127466 bytes_in 0 127466 station_ip 5.120.36.32 127466 port 137 127466 unique_id port 127466 remote_ip 10.8.1.174 127467 username hamidsalari 127467 mac 127467 bytes_out 0 127467 bytes_in 0 127467 station_ip 5.119.239.169 127467 port 233 127467 unique_id port 127471 username barzegar 127471 mac 127471 bytes_out 0 127471 bytes_in 0 127471 station_ip 5.120.36.32 127471 port 137 127471 unique_id port 127471 remote_ip 10.8.1.174 127474 username mostafa_es78 127474 unique_id port 127474 terminate_cause User-Request 127474 bytes_out 415436 127474 bytes_in 5934178 127474 station_ip 178.236.35.96 127474 port 15730104 127474 nas_port_type Virtual 127474 remote_ip 5.5.5.59 127480 username barzegar 127480 mac 127480 bytes_out 0 127480 bytes_in 0 127480 station_ip 5.120.36.32 127480 port 137 127480 unique_id port 127480 remote_ip 10.8.1.174 127481 username barzegar 127481 mac 127481 bytes_out 0 127481 bytes_in 0 127481 station_ip 5.120.36.32 127481 port 137 127481 unique_id port 127481 remote_ip 10.8.1.174 127484 username jamali 127449 bytes_out 0 127449 bytes_in 0 127449 station_ip 5.120.36.32 127449 port 229 127449 unique_id port 127449 remote_ip 10.8.0.234 127450 username sedighe 127450 mac 127450 bytes_out 0 127450 bytes_in 0 127450 station_ip 83.123.191.223 127450 port 219 127450 unique_id port 127450 remote_ip 10.8.0.146 127457 username mosi 127457 mac 127457 bytes_out 0 127457 bytes_in 0 127457 station_ip 151.235.124.20 127457 port 228 127457 unique_id port 127461 username sedighe 127461 mac 127461 bytes_out 0 127461 bytes_in 0 127461 station_ip 37.129.133.118 127461 port 219 127461 unique_id port 127461 remote_ip 10.8.0.146 127462 username barzegar 127462 mac 127462 bytes_out 0 127462 bytes_in 0 127462 station_ip 5.120.36.32 127462 port 137 127462 unique_id port 127462 remote_ip 10.8.1.174 127470 username mirzaei 127470 kill_reason Another user logged on this global unique id 127470 mac 127470 bytes_out 0 127470 bytes_in 0 127470 station_ip 5.120.116.75 127470 port 221 127470 unique_id port 127473 username barzegar 127473 mac 127473 bytes_out 0 127473 bytes_in 0 127473 station_ip 5.120.36.32 127473 port 137 127473 unique_id port 127473 remote_ip 10.8.1.174 127475 username mohammadjavad 127475 mac 127475 bytes_out 1110126 127475 bytes_in 12643963 127475 station_ip 37.129.37.112 127475 port 232 127475 unique_id port 127475 remote_ip 10.8.0.142 127477 username jafari 127477 kill_reason Another user logged on this global unique id 127477 mac 64545 username arezoo 64545 kill_reason Maximum check online fails reached 64545 mac 5.237.85.87:49248: Unknown host 64545 bytes_out 0 64545 bytes_in 0 64545 station_ip 5.237.85.87:49248 64545 port 1017 64545 unique_id port 127477 bytes_out 0 127477 bytes_in 0 127477 station_ip 93.114.30.125 127477 port 223 127477 unique_id port 127478 username sedighe 127478 mac 127478 bytes_out 2616207 127478 bytes_in 559316 127478 station_ip 37.129.80.122 127478 port 229 127478 unique_id port 127478 remote_ip 10.8.0.146 127479 username jafari 127479 mac 127479 bytes_out 0 127479 bytes_in 0 127479 station_ip 93.114.30.125 127479 port 223 127479 unique_id port 127482 username sedighe 127482 mac 127482 bytes_out 445996 127482 bytes_in 1397436 64557 username arezoo 64557 kill_reason Maximum check online fails reached 64557 mac 5.237.85.87:49207: Unknown host 64557 bytes_out 0 64557 bytes_in 0 64557 station_ip 5.237.85.87:49207 64557 port 1017 64557 unique_id port 64560 username arezoo 64560 kill_reason Maximum check online fails reached 64560 mac 5.237.85.87:53962: Unknown host 64560 bytes_out 0 64560 bytes_in 0 64560 station_ip 5.237.85.87:53962 64560 port 1017 64560 unique_id port 127482 station_ip 37.129.80.122 127482 port 232 127482 unique_id port 127482 remote_ip 10.8.0.146 127483 username sedighe 127483 mac 127483 bytes_out 29403 127483 bytes_in 47499 127483 station_ip 37.129.80.122 127483 port 233 127483 unique_id port 127483 remote_ip 10.8.0.146 127485 username forozande 127485 mac 127485 bytes_out 784572 127485 bytes_in 5903337 127485 station_ip 113.203.44.191 127485 port 229 127485 unique_id port 127485 remote_ip 10.8.0.74 127486 username barzegar 127486 mac 127486 bytes_out 0 127486 bytes_in 0 127486 station_ip 5.120.36.32 127486 port 137 127486 unique_id port 127486 remote_ip 10.8.1.174 127487 username mohammadjavad 127487 mac 127487 bytes_out 27661 127487 bytes_in 43404 127487 station_ip 37.129.202.247 127487 port 229 127487 unique_id port 127487 remote_ip 10.8.0.142 127489 username barzegar 127489 mac 127484 kill_reason Another user logged on this global unique id 127484 mac 127484 bytes_out 0 127484 bytes_in 0 127484 station_ip 5.119.104.252 127484 port 234 127484 unique_id port 127491 username aminvpn 127491 unique_id port 127491 terminate_cause Lost-Carrier 127491 bytes_out 526107 127491 bytes_in 9456858 127491 station_ip 31.57.128.77 127491 port 15730105 127491 nas_port_type Virtual 127491 remote_ip 5.5.5.61 127492 username barzegar 127492 mac 127492 bytes_out 0 127492 bytes_in 0 127492 station_ip 5.120.36.32 127492 port 137 127492 unique_id port 127492 remote_ip 10.8.1.174 127494 username barzegar 127494 mac 127494 bytes_out 0 127494 bytes_in 0 127494 station_ip 5.120.36.32 127494 port 137 127494 unique_id port 127494 remote_ip 10.8.1.174 127496 username khalili 127496 mac 127496 bytes_out 9314 127496 bytes_in 13950 127496 station_ip 5.119.228.231 127496 port 137 127496 unique_id port 127496 remote_ip 10.8.1.18 127497 username sabaghnezhad 127497 mac 127497 bytes_out 0 127497 bytes_in 0 127497 station_ip 83.123.103.70 127497 port 232 127497 unique_id port 127497 remote_ip 10.8.0.186 127499 username rezasekonji 127499 kill_reason Relative expiration date has reached 127499 mac 127499 bytes_out 0 127499 bytes_in 0 127499 station_ip 113.203.13.8 127499 port 238 127499 unique_id port 127502 username aminvpn 127502 mac 127502 bytes_out 0 127502 bytes_in 0 127502 station_ip 5.211.4.235 127502 port 237 127502 unique_id port 127502 remote_ip 10.8.0.14 127505 username mahdiyehalizadeh 127505 mac 127505 bytes_out 0 127505 bytes_in 0 127505 station_ip 83.122.32.76 127505 port 229 127505 unique_id port 127505 remote_ip 10.8.0.82 127508 username jamali 127508 mac 127508 bytes_out 0 127508 bytes_in 0 127508 station_ip 5.119.104.252 127508 port 234 127508 unique_id port 127513 username alipour 127513 mac 127513 bytes_out 0 127513 bytes_in 0 127513 station_ip 83.123.171.9 127513 port 229 127513 unique_id port 127513 remote_ip 10.8.0.102 127516 username alipour 127516 mac 127516 bytes_out 0 127516 bytes_in 0 127516 station_ip 83.123.171.9 127516 port 139 127516 unique_id port 127516 remote_ip 10.8.1.50 127519 username aminvpn 127519 mac 127519 bytes_out 0 127519 bytes_in 0 127519 station_ip 151.238.238.59 127519 port 233 127519 unique_id port 127519 remote_ip 10.8.0.14 127526 username mohsenaskari 64572 username arezoo 64572 kill_reason Maximum check online fails reached 64572 mac 5.237.85.87:49200: Unknown host 64572 bytes_out 0 64572 bytes_in 0 64572 station_ip 5.237.85.87:49200 64572 port 1017 64572 unique_id port 127526 mac 127526 bytes_out 668673 127526 bytes_in 5480210 127526 station_ip 46.225.211.92 127526 port 233 127526 unique_id port 127526 remote_ip 10.8.0.246 127536 username aminvpn 127536 mac 127536 bytes_out 6325 127536 bytes_in 13839 127536 station_ip 151.238.238.59 127536 port 229 127536 unique_id port 127536 remote_ip 10.8.0.14 127537 username aminvpn 127537 mac 127537 bytes_out 20361 127537 bytes_in 69471 127537 station_ip 151.238.238.59 127537 port 238 127537 unique_id port 127537 remote_ip 10.8.0.14 127544 username aminvpn 127544 mac 127544 bytes_out 0 127544 bytes_in 0 127544 station_ip 151.238.238.59 127544 port 237 127544 unique_id port 127544 remote_ip 10.8.0.14 127547 username zare 127547 mac 127547 bytes_out 0 127547 bytes_in 0 127547 station_ip 94.183.214.14 127547 port 237 127547 unique_id port 127547 remote_ip 10.8.0.18 127548 username zare 127548 mac 127489 bytes_out 0 127489 bytes_in 0 127489 station_ip 5.120.36.32 127489 port 137 127489 unique_id port 127489 remote_ip 10.8.1.174 127490 username barzegar 127490 mac 127490 bytes_out 0 127490 bytes_in 0 127490 station_ip 5.120.36.32 127490 port 137 127490 unique_id port 127490 remote_ip 10.8.1.174 127495 username khalili 127495 mac 127495 bytes_out 3491701 127495 bytes_in 44422122 127495 station_ip 5.119.228.231 127495 port 223 127495 unique_id port 127495 remote_ip 10.8.0.86 127504 username forozande 127504 mac 127504 bytes_out 0 127504 bytes_in 0 127504 station_ip 83.123.122.183 127504 port 233 127504 unique_id port 127504 remote_ip 10.8.0.74 127509 username aminvpn 127509 unique_id port 127509 terminate_cause Lost-Carrier 127509 bytes_out 8026635 127509 bytes_in 259930401 127509 station_ip 31.57.128.77 127509 port 15730106 127509 nas_port_type Virtual 127509 remote_ip 5.5.5.62 127510 username forozande 127510 mac 127510 bytes_out 1982574 127510 bytes_in 32215802 127510 station_ip 83.122.144.120 127510 port 232 127510 unique_id port 127510 remote_ip 10.8.0.74 127512 username abravesh 127512 unique_id port 127512 terminate_cause Lost-Carrier 127512 bytes_out 863870 127512 bytes_in 11322441 127512 station_ip 5.120.158.94 127512 port 15730111 127512 nas_port_type Virtual 127512 remote_ip 5.5.5.92 127515 username forozande 127515 mac 127515 bytes_out 0 127515 bytes_in 0 127515 station_ip 83.122.202.90 127515 port 232 127515 unique_id port 127515 remote_ip 10.8.0.74 127517 username alipour 127517 mac 127517 bytes_out 16296 127517 bytes_in 20536 127517 station_ip 83.123.171.9 127517 port 232 127517 unique_id port 127517 remote_ip 10.8.0.102 127521 username alipour 127521 mac 127521 bytes_out 0 127521 bytes_in 0 127521 station_ip 83.123.171.9 127521 port 140 127521 unique_id port 127521 remote_ip 10.8.1.50 127522 username alipour 64599 username arezoo 64599 kill_reason Maximum check online fails reached 64599 mac 5.237.85.87:50178: Unknown host 64599 bytes_out 0 64599 bytes_in 0 64599 station_ip 5.237.85.87:50178 64599 port 1017 64599 unique_id port 127522 mac 127522 bytes_out 0 127522 bytes_in 0 127522 station_ip 83.123.171.9 127522 port 139 127522 unique_id port 127522 remote_ip 10.8.1.50 127523 username alihosseini1 127523 kill_reason Another user logged on this global unique id 127523 mac 127523 bytes_out 0 127523 bytes_in 0 127523 station_ip 5.119.178.179 127523 port 229 127523 unique_id port 127523 remote_ip 10.8.0.166 127524 username alihosseini1 127524 mac 127524 bytes_out 0 127524 bytes_in 0 127524 station_ip 5.119.178.179 127524 port 229 127524 unique_id port 127525 username alihosseini1 127525 mac 127525 bytes_out 0 127525 bytes_in 0 127525 station_ip 5.119.178.179 127525 port 229 127525 unique_id port 127525 remote_ip 10.8.0.166 127527 username mosi 127527 kill_reason Another user logged on this global unique id 127527 mac 127527 bytes_out 0 127527 bytes_in 0 127527 station_ip 151.235.124.20 127527 port 228 127527 unique_id port 127527 remote_ip 10.8.0.138 127528 username alihosseini1 127528 mac 127528 bytes_out 0 127528 bytes_in 0 127528 station_ip 5.119.178.179 127528 port 229 127528 unique_id port 127528 remote_ip 10.8.0.166 127530 username rahmani 127530 kill_reason Another user logged on this global unique id 127530 mac 127530 bytes_out 0 127530 bytes_in 0 127530 station_ip 46.225.215.19 127530 port 229 127530 unique_id port 127530 remote_ip 10.8.0.94 127531 username tahmasebi 127531 mac 127531 bytes_out 0 127531 bytes_in 0 127507 station_ip 5.120.158.94 127507 port 15730110 127507 nas_port_type Virtual 127507 remote_ip 5.5.5.76 127511 username moradi 127511 kill_reason Another user logged on this global unique id 127511 mac 127511 bytes_out 0 127511 bytes_in 0 127511 station_ip 46.225.215.19 127511 port 234 127511 unique_id port 127511 remote_ip 10.8.0.250 127514 username moradi 127514 mac 127514 bytes_out 0 127514 bytes_in 0 127514 station_ip 46.225.215.19 127514 port 234 127514 unique_id port 127518 username aminvpn 127518 mac 127518 bytes_out 286479 127518 bytes_in 1338728 127518 station_ip 5.118.4.175 127518 port 139 127518 unique_id port 127518 remote_ip 10.8.1.6 127520 username moradi 127520 mac 127520 bytes_out 32177 127520 bytes_in 57709 127520 station_ip 46.225.215.19 127520 port 234 127520 unique_id port 127520 remote_ip 10.8.0.250 127529 username mosi 127529 kill_reason Another user logged on this global unique id 127529 mac 127529 bytes_out 0 127529 bytes_in 0 127529 station_ip 151.235.124.20 127529 port 228 127529 unique_id port 127534 username rahmani 127534 mac 127534 bytes_out 0 127534 bytes_in 0 127534 station_ip 46.225.215.19 127534 port 229 127534 unique_id port 127535 username aminvpn 127535 mac 127535 bytes_out 50847 127535 bytes_in 201670 127535 station_ip 151.238.238.59 127535 port 233 127535 unique_id port 127535 remote_ip 10.8.0.14 127539 username aminvpn 127539 mac 127539 bytes_out 6500 127539 bytes_in 14526 127539 station_ip 151.238.238.59 127539 port 239 127539 unique_id port 127539 remote_ip 10.8.0.14 127540 username rahmani 127540 mac 127540 bytes_out 0 127540 bytes_in 0 127540 station_ip 46.225.215.19 127540 port 233 127540 unique_id port 127540 remote_ip 10.8.0.94 127542 username aminvpn 127542 mac 127542 bytes_out 0 127542 bytes_in 0 127542 station_ip 151.238.238.59 127542 port 238 127542 unique_id port 127542 remote_ip 10.8.0.14 127543 username zare 127543 mac 127543 bytes_out 0 127543 bytes_in 0 127543 station_ip 94.183.214.14 127543 port 232 127543 unique_id port 127543 remote_ip 10.8.0.18 127545 username alihosseini1 127545 mac 127545 bytes_out 0 127545 bytes_in 0 127545 station_ip 5.119.178.179 127545 port 237 127545 unique_id port 127545 remote_ip 10.8.0.166 127551 username mansur 127551 mac 127551 bytes_out 38606 127551 bytes_in 116383 127551 station_ip 5.119.205.158 127551 port 139 127551 unique_id port 127551 remote_ip 10.8.1.194 127553 username rahmani 127553 mac 127553 bytes_out 0 127553 bytes_in 0 127553 station_ip 83.122.210.202 127553 port 239 127553 unique_id port 127553 remote_ip 10.8.0.94 127554 username aminvpn 127554 mac 127554 bytes_out 0 127554 bytes_in 0 127554 station_ip 151.238.238.59 127554 port 240 127554 unique_id port 127554 remote_ip 10.8.0.14 127558 username aminvpn 127558 mac 127558 bytes_out 0 127558 bytes_in 0 127558 station_ip 151.238.238.59 127558 port 240 127558 unique_id port 127558 remote_ip 10.8.0.14 127567 username irannezhad 127567 mac 127567 bytes_out 0 127567 bytes_in 0 127567 station_ip 83.122.229.42 127567 port 233 127567 unique_id port 127567 remote_ip 10.8.0.182 127571 username irannezhad 127571 mac 127571 bytes_out 0 127571 bytes_in 0 127571 station_ip 83.122.229.42 127571 port 139 127571 unique_id port 127571 remote_ip 10.8.1.134 127572 username irannezhad 127572 mac 127572 bytes_out 0 127572 bytes_in 0 127572 station_ip 83.122.229.42 127572 port 139 127572 unique_id port 127531 station_ip 5.120.186.174 127531 port 233 127531 unique_id port 127531 remote_ip 10.8.0.42 127532 username alihosseini1 127532 mac 127532 bytes_out 0 127532 bytes_in 0 127532 station_ip 5.119.178.179 127532 port 233 127532 unique_id port 127532 remote_ip 10.8.0.166 127533 username aminvpn 127533 mac 127533 bytes_out 165216 127533 bytes_in 626777 127533 station_ip 151.238.238.59 127533 port 232 127533 unique_id port 127533 remote_ip 10.8.0.14 127538 username alirezazadeh 127538 unique_id port 127538 terminate_cause Lost-Carrier 127538 bytes_out 2004750 127538 bytes_in 2060379 127538 station_ip 151.238.232.44 127538 port 15730108 127538 nas_port_type Virtual 127538 remote_ip 5.5.5.72 127541 username alihosseini1 127541 mac 127541 bytes_out 0 127541 bytes_in 0 127541 station_ip 5.119.178.179 127541 port 237 127541 unique_id port 127541 remote_ip 10.8.0.166 127546 username zare 127546 mac 127546 bytes_out 0 127546 bytes_in 0 127546 station_ip 94.183.214.14 127546 port 240 127546 unique_id port 127546 remote_ip 10.8.0.18 127556 username aminvpn 127556 mac 127556 bytes_out 0 127556 bytes_in 0 127556 station_ip 151.238.238.59 127556 port 239 127556 unique_id port 127556 remote_ip 10.8.0.14 127557 username zare 127557 mac 127557 bytes_out 0 127557 bytes_in 0 127557 station_ip 94.183.214.14 127557 port 239 127557 unique_id port 127557 remote_ip 10.8.0.18 127559 username rahmani 127559 mac 127559 bytes_out 0 127559 bytes_in 0 127559 station_ip 83.122.210.202 127559 port 232 127559 unique_id port 127559 remote_ip 10.8.0.94 127560 username amir 127560 kill_reason Another user logged on this global unique id 127560 mac 127560 bytes_out 0 127560 bytes_in 0 127560 station_ip 46.225.232.199 127560 port 229 127560 unique_id port 127560 remote_ip 10.8.0.50 127561 username zare 127561 mac 127561 bytes_out 0 127561 bytes_in 0 127561 station_ip 94.183.214.14 127561 port 232 127561 unique_id port 127561 remote_ip 10.8.0.18 127563 username aminvpn 127563 mac 127563 bytes_out 0 127563 bytes_in 0 127563 station_ip 151.238.238.59 127563 port 239 127563 unique_id port 127563 remote_ip 10.8.0.14 127564 username aminvpn 127564 mac 127564 bytes_out 123942 127564 bytes_in 156563 127564 station_ip 5.118.4.172 127564 port 139 127564 unique_id port 127564 remote_ip 10.8.1.6 127569 username alihosseini1 127569 mac 127569 bytes_out 0 127569 bytes_in 0 127569 station_ip 5.119.178.179 127569 port 239 127569 unique_id port 127569 remote_ip 10.8.0.166 127576 username aminvpn 127576 mac 127576 bytes_out 0 127576 bytes_in 0 127576 station_ip 151.238.238.59 127576 port 239 127576 unique_id port 127576 remote_ip 10.8.0.14 127580 username mansur 127580 mac 127580 bytes_out 0 127580 bytes_in 0 127580 station_ip 5.119.205.158 127580 port 139 127580 unique_id port 127580 remote_ip 10.8.1.194 127582 username khademi 127582 mac 127582 bytes_out 0 127582 bytes_in 0 127582 station_ip 113.203.20.65 127582 port 237 127582 unique_id port 127582 remote_ip 10.8.0.10 127585 username zare 127585 mac 127585 bytes_out 0 127585 bytes_in 0 127585 station_ip 94.183.214.14 127585 port 237 127585 unique_id port 127585 remote_ip 10.8.0.18 127587 username aminvpn 127587 mac 127587 bytes_out 0 127587 bytes_in 0 127587 station_ip 151.238.238.59 127587 port 239 127587 unique_id port 127587 remote_ip 10.8.0.14 127589 username aminvpn 127589 mac 127589 bytes_out 0 127589 bytes_in 0 127548 bytes_out 0 127548 bytes_in 0 127548 station_ip 94.183.214.14 127548 port 237 127548 unique_id port 127548 remote_ip 10.8.0.18 127549 username aminvpn 127549 unique_id port 127549 terminate_cause Lost-Carrier 127549 bytes_out 631189 127549 bytes_in 4826950 127549 station_ip 5.119.89.2 127549 port 15730113 127549 nas_port_type Virtual 127549 remote_ip 5.5.5.5 127550 username aminvpn 127550 mac 127550 bytes_out 0 127550 bytes_in 0 127550 station_ip 151.238.238.59 127550 port 232 127550 unique_id port 127550 remote_ip 10.8.0.14 127552 username zare 127552 mac 127552 bytes_out 0 127552 bytes_in 0 127552 station_ip 94.183.214.14 127552 port 232 127552 unique_id port 127552 remote_ip 10.8.0.18 127555 username zare 127555 mac 127555 bytes_out 0 127555 bytes_in 0 127555 station_ip 94.183.214.14 127555 port 240 127555 unique_id port 127555 remote_ip 10.8.0.18 127562 username mansur 127562 mac 64635 username arezoo 64635 kill_reason Maximum check online fails reached 64635 mac 5.237.85.87:49192: Unknown host 64635 bytes_out 0 64635 bytes_in 0 64635 station_ip 5.237.85.87:49192 64635 port 1017 64635 unique_id port 127562 bytes_out 58060 127562 bytes_in 95485 127562 station_ip 5.119.205.158 127562 port 140 127562 unique_id port 127562 remote_ip 10.8.1.194 127565 username zare 127565 mac 127565 bytes_out 0 127565 bytes_in 0 127565 station_ip 94.183.214.14 127565 port 239 127565 unique_id port 127565 remote_ip 10.8.0.18 127566 username zare 127566 mac 127566 bytes_out 0 127566 bytes_in 0 127566 station_ip 94.183.214.14 127566 port 239 127566 unique_id port 127566 remote_ip 10.8.0.18 127568 username aminvpn 127568 mac 127568 bytes_out 0 127568 bytes_in 0 127568 station_ip 151.238.238.59 127568 port 232 127568 unique_id port 127568 remote_ip 10.8.0.14 127570 username zare 127570 mac 127570 bytes_out 0 127570 bytes_in 0 127570 station_ip 94.183.214.14 127570 port 233 127570 unique_id port 127570 remote_ip 10.8.0.18 127574 username moradi 127574 kill_reason Another user logged on this global unique id 127574 mac 127574 bytes_out 0 127574 bytes_in 0 127574 station_ip 46.225.215.19 127574 port 234 127574 unique_id port 127574 remote_ip 10.8.0.250 127575 username irannezhad 127575 mac 127575 bytes_out 0 127575 bytes_in 0 127575 station_ip 83.122.229.42 127575 port 233 127575 unique_id port 127575 remote_ip 10.8.0.182 127577 username mosi 127577 kill_reason Another user logged on this global unique id 127577 mac 127577 bytes_out 0 127577 bytes_in 0 127577 station_ip 151.235.124.20 127577 port 228 127577 unique_id port 127578 username zare 127578 mac 127578 bytes_out 0 127578 bytes_in 0 127578 station_ip 94.183.214.14 127578 port 232 127578 unique_id port 127578 remote_ip 10.8.0.18 127579 username aminvpn 127579 mac 127579 bytes_out 0 127579 bytes_in 0 127579 station_ip 151.238.238.59 127579 port 233 127579 unique_id port 127579 remote_ip 10.8.0.14 127583 username zare 127583 mac 127583 bytes_out 0 127583 bytes_in 0 127583 station_ip 94.183.214.14 127583 port 237 127583 unique_id port 127583 remote_ip 10.8.0.18 127584 username aminvpn 127584 mac 127584 bytes_out 0 127584 bytes_in 0 127584 station_ip 151.238.238.59 127584 port 232 127584 unique_id port 127584 remote_ip 10.8.0.14 127586 username mansur 127586 mac 127586 bytes_out 0 127586 bytes_in 0 127586 station_ip 5.119.205.158 127586 port 139 127586 unique_id port 127586 remote_ip 10.8.1.194 127588 username zare 127572 remote_ip 10.8.1.134 127573 username aminvpn 127573 mac 127573 bytes_out 0 127573 bytes_in 0 127573 station_ip 151.238.238.59 127573 port 240 127573 unique_id port 127573 remote_ip 10.8.0.14 127581 username zare 127581 mac 127581 bytes_out 0 127581 bytes_in 0 127581 station_ip 94.183.214.14 127581 port 233 127581 unique_id port 127581 remote_ip 10.8.0.18 127590 username alihosseini1 127590 mac 127590 bytes_out 0 127590 bytes_in 0 127590 station_ip 5.119.242.97 127590 port 237 127590 unique_id port 127590 remote_ip 10.8.0.166 127591 username mansur 127591 mac 127591 bytes_out 0 127591 bytes_in 0 127591 station_ip 5.119.205.158 127591 port 239 127591 unique_id port 127591 remote_ip 10.8.0.210 127595 username saeed9658 127595 mac 127595 bytes_out 0 127595 bytes_in 0 127595 station_ip 5.119.174.99 127595 port 239 127595 unique_id port 127595 remote_ip 10.8.0.62 127596 username moradi 127596 mac 127596 bytes_out 0 127596 bytes_in 0 127596 station_ip 46.225.215.19 127596 port 234 127596 unique_id port 127600 username zare 127600 mac 127600 bytes_out 22331 127600 bytes_in 62956 127600 station_ip 94.183.214.14 127600 port 242 127600 unique_id port 127600 remote_ip 10.8.0.18 127601 username amir 127601 kill_reason Another user logged on this global unique id 127601 mac 127601 bytes_out 0 127601 bytes_in 0 127601 station_ip 46.225.232.199 127601 port 229 127601 unique_id port 127602 username alihosseini1 127602 mac 127602 bytes_out 0 127602 bytes_in 0 127602 station_ip 5.119.242.97 127602 port 139 127602 unique_id port 127602 remote_ip 10.8.1.106 127605 username zare 127605 mac 127605 bytes_out 22053 127605 bytes_in 76973 127605 station_ip 94.183.214.14 127605 port 223 127605 unique_id port 127605 remote_ip 10.8.0.18 127608 username aminvpn 127608 mac 127608 bytes_out 0 127608 bytes_in 0 127608 station_ip 151.238.238.59 127608 port 232 127608 unique_id port 127608 remote_ip 10.8.0.14 127610 username zare 127610 mac 127610 bytes_out 0 127610 bytes_in 0 127610 station_ip 94.183.214.14 127610 port 223 127610 unique_id port 127610 remote_ip 10.8.0.18 127617 username khalili 127617 kill_reason Another user logged on this global unique id 127617 mac 127617 bytes_out 0 127617 bytes_in 0 127617 station_ip 5.119.142.28 127617 port 137 127617 unique_id port 127617 remote_ip 10.8.1.18 127618 username mansur 127618 mac 127618 bytes_out 0 127618 bytes_in 0 127618 station_ip 5.119.205.158 127618 port 234 127618 unique_id port 127618 remote_ip 10.8.0.210 127620 username aminvpn 127620 mac 127620 bytes_out 0 127620 bytes_in 0 127620 station_ip 151.238.238.59 127620 port 234 127620 unique_id port 127620 remote_ip 10.8.0.14 127622 username aminvpn 127622 mac 127622 bytes_out 0 127622 bytes_in 0 127622 station_ip 151.238.238.59 127622 port 241 127622 unique_id port 127622 remote_ip 10.8.0.14 127623 username aminvpn 127623 unique_id port 127623 terminate_cause Lost-Carrier 127623 bytes_out 104168 127623 bytes_in 746759 127623 station_ip 109.125.128.116 127623 port 15730114 127623 nas_port_type Virtual 127623 remote_ip 5.5.5.7 127624 username aminvpn 127624 mac 127624 bytes_out 0 127624 bytes_in 0 127624 station_ip 151.238.238.59 127624 port 232 127624 unique_id port 127624 remote_ip 10.8.0.14 127628 username alihosseini1 127628 mac 127628 bytes_out 0 127628 bytes_in 0 127628 station_ip 5.119.242.97 127628 port 232 127628 unique_id port 127628 remote_ip 10.8.0.166 127588 mac 127588 bytes_out 0 127588 bytes_in 0 127588 station_ip 94.183.214.14 127588 port 232 127588 unique_id port 127588 remote_ip 10.8.0.18 127592 username mansur 127592 mac 127592 bytes_out 0 64663 username arezoo 64663 kill_reason Maximum check online fails reached 64663 mac 5.237.85.87:49478: Unknown host 64663 bytes_out 0 64663 bytes_in 0 64663 station_ip 5.237.85.87:49478 64663 port 1017 64663 unique_id port 127592 bytes_in 0 127592 station_ip 5.119.205.158 127592 port 139 127592 unique_id port 127592 remote_ip 10.8.1.194 127599 username alihosseini1 127599 mac 127599 bytes_out 0 127599 bytes_in 0 127599 station_ip 5.119.242.97 127599 port 139 127599 unique_id port 127599 remote_ip 10.8.1.106 127603 username aminvpn 127603 mac 127603 bytes_out 0 127603 bytes_in 0 127603 station_ip 151.238.238.59 127603 port 232 127603 unique_id port 127603 remote_ip 10.8.0.14 127604 username aminvpn 127604 mac 127604 bytes_out 0 127604 bytes_in 0 127604 station_ip 151.238.238.59 127604 port 241 127604 unique_id port 127604 remote_ip 10.8.0.14 127606 username mosi 127606 kill_reason Another user logged on this global unique id 127606 mac 127606 bytes_out 0 127606 bytes_in 0 127606 station_ip 151.235.124.20 127606 port 228 127606 unique_id port 127607 username zare 127607 mac 127607 bytes_out 0 127607 bytes_in 0 127607 station_ip 94.183.214.14 127607 port 223 127607 unique_id port 127607 remote_ip 10.8.0.18 127609 username rezasekonji 127609 kill_reason Relative expiration date has reached 127609 mac 127609 bytes_out 0 127609 bytes_in 0 127609 station_ip 113.203.13.8 127609 port 232 127609 unique_id port 127611 username aminvpn 127611 mac 127611 bytes_out 0 127611 bytes_in 0 127611 station_ip 151.238.238.59 127611 port 241 127611 unique_id port 127611 remote_ip 10.8.0.14 127613 username alihosseini1 127613 kill_reason Maximum check online fails reached 127613 mac 127613 bytes_out 0 127613 bytes_in 0 127613 station_ip 5.119.242.97 127613 port 139 127613 unique_id port 127615 username zare 127615 mac 127615 bytes_out 0 127615 bytes_in 0 127615 station_ip 94.183.214.14 127615 port 232 127615 unique_id port 127615 remote_ip 10.8.0.18 127619 username aminvpn 127619 mac 127619 bytes_out 0 127619 bytes_in 0 127619 station_ip 151.238.238.59 127619 port 232 127619 unique_id port 127619 remote_ip 10.8.0.14 127625 username mohammadjavad 127625 mac 127625 bytes_out 60345 127625 bytes_in 200278 127625 station_ip 83.122.29.88 127625 port 239 127625 unique_id port 127625 remote_ip 10.8.0.142 127627 username saeed9658 127627 kill_reason Another user logged on this global unique id 127627 mac 127627 bytes_out 0 127627 bytes_in 0 127627 station_ip 5.119.174.99 127627 port 223 127627 unique_id port 127627 remote_ip 10.8.0.62 127629 username aminvpn 127629 mac 127629 bytes_out 0 127629 bytes_in 0 127629 station_ip 151.238.238.59 127629 port 239 127629 unique_id port 127629 remote_ip 10.8.0.14 127631 username mohsenaskari 127631 mac 127631 bytes_out 0 127631 bytes_in 0 127631 station_ip 46.225.211.92 127631 port 237 127631 unique_id port 127631 remote_ip 10.8.0.246 127632 username aminvpn 127632 mac 127632 bytes_out 0 127632 bytes_in 0 127632 station_ip 151.238.238.59 127632 port 232 127632 unique_id port 127632 remote_ip 10.8.0.14 127637 username zare 127637 mac 127637 bytes_out 0 127637 bytes_in 0 127637 station_ip 94.183.214.14 127637 port 234 127637 unique_id port 127637 remote_ip 10.8.0.18 127639 username saeed9658 127589 station_ip 151.238.238.59 127589 port 237 127589 unique_id port 127589 remote_ip 10.8.0.14 127593 username zare 127593 mac 127593 bytes_out 0 127593 bytes_in 0 127593 station_ip 94.183.214.14 127593 port 241 127593 unique_id port 127593 remote_ip 10.8.0.18 127594 username saeed9658 127594 mac 127594 bytes_out 0 127594 bytes_in 0 127594 station_ip 5.119.174.99 127594 port 239 127594 unique_id port 127594 remote_ip 10.8.0.62 127597 username mansur 127597 mac 127597 bytes_out 0 127597 bytes_in 0 127597 station_ip 5.119.205.158 127597 port 241 127597 unique_id port 127597 remote_ip 10.8.0.210 127598 username kordestani 127598 mac 127598 bytes_out 0 127598 bytes_in 0 127598 station_ip 83.122.68.89 127598 port 223 127598 unique_id port 127598 remote_ip 10.8.0.134 127612 username zare 127612 mac 127612 bytes_out 0 127612 bytes_in 0 127612 station_ip 94.183.214.14 127612 port 232 127612 unique_id port 127612 remote_ip 10.8.0.18 127614 username zare 127614 mac 127614 bytes_out 0 127614 bytes_in 0 127614 station_ip 94.183.214.14 127614 port 232 127614 unique_id port 127614 remote_ip 10.8.0.18 127616 username aminvpn 127616 mac 127616 bytes_out 0 127616 bytes_in 0 127616 station_ip 151.238.238.59 127616 port 223 127616 unique_id port 127616 remote_ip 10.8.0.14 127621 username zare 127621 mac 127621 bytes_out 0 127621 bytes_in 0 127621 station_ip 94.183.214.14 127621 port 232 127621 unique_id port 127621 remote_ip 10.8.0.18 127626 username aminvpn 127626 mac 127626 bytes_out 0 127626 bytes_in 0 127626 station_ip 151.238.238.59 127626 port 241 127626 unique_id port 127626 remote_ip 10.8.0.14 127635 username zare 127635 mac 127635 bytes_out 0 127635 bytes_in 0 127635 station_ip 94.183.214.14 127635 port 237 127635 unique_id port 127635 remote_ip 10.8.0.18 127638 username irannezhad 127638 mac 127638 bytes_out 0 127638 bytes_in 0 127638 station_ip 83.122.229.42 127638 port 237 127638 unique_id port 127638 remote_ip 10.8.0.182 127640 username rezasekonji 127640 kill_reason Relative expiration date has reached 127640 mac 127640 bytes_out 0 127640 bytes_in 0 127640 station_ip 113.203.13.8 127640 port 223 127640 unique_id port 127645 username rezasekonji 127645 kill_reason Relative expiration date has reached 127645 mac 127645 bytes_out 0 127645 bytes_in 0 127645 station_ip 113.203.13.8 127645 port 234 127645 unique_id port 127648 username mohammadjavad 127648 mac 127648 bytes_out 151261 127648 bytes_in 761933 127648 station_ip 83.122.29.88 127648 port 140 127648 unique_id port 127648 remote_ip 10.8.1.146 127650 username irannezhad 127650 mac 127650 bytes_out 0 127650 bytes_in 0 127650 station_ip 83.122.229.42 127650 port 232 127650 unique_id port 127650 remote_ip 10.8.0.182 127652 username irannezhad 127652 mac 127652 bytes_out 0 127652 bytes_in 0 127652 station_ip 83.122.229.42 127652 port 140 127652 unique_id port 127652 remote_ip 10.8.1.134 127657 username irannezhad 127657 mac 127657 bytes_out 0 127657 bytes_in 0 127657 station_ip 83.122.229.42 127657 port 232 127657 unique_id port 127657 remote_ip 10.8.0.182 127660 username zare 127660 mac 127660 bytes_out 0 127660 bytes_in 0 127660 station_ip 94.183.214.14 127660 port 239 127660 unique_id port 127660 remote_ip 10.8.0.18 127669 username mansur 127669 mac 127669 bytes_out 0 127669 bytes_in 0 127669 station_ip 5.119.205.158 127669 port 140 127669 unique_id port 127630 username zare 127630 mac 127630 bytes_out 0 127630 bytes_in 0 127630 station_ip 94.183.214.14 127630 port 234 127630 unique_id port 127630 remote_ip 10.8.0.18 127633 username mansur 127633 mac 127633 bytes_out 0 127633 bytes_in 0 127633 station_ip 5.119.205.158 127633 port 234 127633 unique_id port 127633 remote_ip 10.8.0.210 127634 username aminvpn 127634 mac 127634 bytes_out 0 127634 bytes_in 0 127634 station_ip 151.238.238.59 127634 port 239 127634 unique_id port 127634 remote_ip 10.8.0.14 127636 username irannezhad 127636 mac 127636 bytes_out 0 127636 bytes_in 0 127636 station_ip 83.122.229.42 127636 port 240 127636 unique_id port 127636 remote_ip 10.8.0.182 127641 username aminvpn 127641 mac 127641 bytes_out 11544 127641 bytes_in 26629 127641 station_ip 151.238.238.59 127641 port 232 127641 unique_id port 127641 remote_ip 10.8.0.14 127646 username rezasekonji 127646 kill_reason Relative expiration date has reached 127646 mac 127646 bytes_out 0 127646 bytes_in 0 127646 station_ip 113.203.13.8 127646 port 234 127646 unique_id port 127649 username aminvpn 127649 mac 127649 bytes_out 0 127649 bytes_in 0 127649 station_ip 151.238.238.59 127649 port 223 127649 unique_id port 127649 remote_ip 10.8.0.14 127651 username aminvpn 127651 mac 127651 bytes_out 0 127651 bytes_in 0 127651 station_ip 151.238.238.59 127651 port 234 127651 unique_id port 127651 remote_ip 10.8.0.14 127654 username mansur 127654 mac 127654 bytes_out 0 127654 bytes_in 0 127654 station_ip 5.119.205.158 127654 port 223 127654 unique_id port 127654 remote_ip 10.8.0.210 127659 username mansur 127659 mac 127659 bytes_out 0 127659 bytes_in 0 127659 station_ip 5.119.205.158 127659 port 232 127659 unique_id port 127659 remote_ip 10.8.0.210 127661 username aminvpn 127661 mac 127661 bytes_out 0 127661 bytes_in 0 127661 station_ip 151.238.238.59 127661 port 237 127661 unique_id port 127661 remote_ip 10.8.0.14 127663 username mansur 127663 mac 127663 bytes_out 0 127663 bytes_in 0 127663 station_ip 5.119.205.158 127663 port 140 127663 unique_id port 127663 remote_ip 10.8.1.194 127666 username zare 127666 mac 127666 bytes_out 0 127666 bytes_in 0 127666 station_ip 94.183.214.14 127666 port 232 127666 unique_id port 127666 remote_ip 10.8.0.18 127667 username irannezhad 127667 mac 127667 bytes_out 0 127667 bytes_in 0 127667 station_ip 83.122.229.42 127667 port 223 127667 unique_id port 127667 remote_ip 10.8.0.182 127668 username mansur 127668 mac 127668 bytes_out 0 127668 bytes_in 0 127668 station_ip 5.119.205.158 127668 port 140 127668 unique_id port 127668 remote_ip 10.8.1.194 127671 username mansur 127671 mac 127671 bytes_out 0 127671 bytes_in 0 127671 station_ip 5.119.205.158 127671 port 140 127671 unique_id port 127671 remote_ip 10.8.1.194 127673 username irannezhad 127673 mac 127673 bytes_out 0 127673 bytes_in 0 127673 station_ip 83.122.229.42 127673 port 232 127673 unique_id port 127673 remote_ip 10.8.0.182 127675 username mansur 127675 mac 127675 bytes_out 0 127675 bytes_in 0 127675 station_ip 5.119.205.158 127675 port 239 127675 unique_id port 127675 remote_ip 10.8.0.210 127676 username irannezhad 127676 mac 127676 bytes_out 0 127676 bytes_in 0 127676 station_ip 83.122.229.42 127676 port 240 127676 unique_id port 127676 remote_ip 10.8.0.182 127678 username zare 127678 mac 127678 bytes_out 0 127678 bytes_in 0 127639 mac 127639 bytes_out 0 127639 bytes_in 0 127639 station_ip 5.119.174.99 127639 port 223 127639 unique_id port 127642 username rezasekonji 127642 kill_reason Relative expiration date has reached 127642 mac 127642 bytes_out 0 127642 bytes_in 0 127642 station_ip 113.203.13.8 127642 port 232 127642 unique_id port 127643 username zare 127643 mac 127643 bytes_out 0 127643 bytes_in 0 127643 station_ip 94.183.214.14 127643 port 234 127643 unique_id port 127643 remote_ip 10.8.0.18 127644 username mansur 127644 mac 127644 bytes_out 0 127644 bytes_in 0 127644 station_ip 5.119.205.158 127644 port 141 127644 unique_id port 127644 remote_ip 10.8.1.194 127647 username zare 127647 mac 127647 bytes_out 0 127647 bytes_in 0 127647 station_ip 94.183.214.14 127647 port 234 127647 unique_id port 127647 remote_ip 10.8.0.18 127653 username zare 127653 mac 127653 bytes_out 0 127653 bytes_in 0 127653 station_ip 94.183.214.14 127653 port 232 127653 unique_id port 127653 remote_ip 10.8.0.18 127655 username mansur 127655 mac 127655 bytes_out 0 127655 bytes_in 0 127655 station_ip 5.119.205.158 127655 port 223 127655 unique_id port 127655 remote_ip 10.8.0.210 127656 username zare 127656 mac 127656 bytes_out 0 127656 bytes_in 0 127656 station_ip 94.183.214.14 127656 port 223 127656 unique_id port 127656 remote_ip 10.8.0.18 127658 username irannezhad 127658 mac 127658 bytes_out 0 127658 bytes_in 0 127658 station_ip 83.122.229.42 127658 port 234 127658 unique_id port 127658 remote_ip 10.8.0.182 127662 username aminvpn 127662 mac 127662 bytes_out 0 127662 bytes_in 0 127662 station_ip 151.238.238.59 127662 port 232 127662 unique_id port 127662 remote_ip 10.8.0.14 127664 username zare 127664 mac 127664 bytes_out 0 127664 bytes_in 0 127664 station_ip 94.183.214.14 127664 port 232 127664 unique_id port 127664 remote_ip 10.8.0.18 127665 username alihosseini1 127665 mac 127665 bytes_out 2641 127665 bytes_in 5265 127665 station_ip 5.119.242.97 127665 port 223 127665 unique_id port 127665 remote_ip 10.8.0.166 127672 username zare 127672 mac 127672 bytes_out 0 127672 bytes_in 0 127672 station_ip 94.183.214.14 127672 port 239 127672 unique_id port 127672 remote_ip 10.8.0.18 127677 username aminvpn 127677 mac 127677 bytes_out 0 127677 bytes_in 0 127677 station_ip 151.238.238.59 127677 port 237 127677 unique_id port 127677 remote_ip 10.8.0.14 127685 username irannezhad 127685 mac 127685 bytes_out 0 127685 bytes_in 0 127685 station_ip 83.122.229.42 127685 port 141 127685 unique_id port 127685 remote_ip 10.8.1.134 127689 username zare 127689 mac 127689 bytes_out 0 127689 bytes_in 0 127689 station_ip 94.183.214.14 127689 port 232 127689 unique_id port 127689 remote_ip 10.8.0.18 127696 username aminvpn 127696 mac 127696 bytes_out 0 127696 bytes_in 0 127696 station_ip 151.238.238.59 127696 port 232 127696 unique_id port 127696 remote_ip 10.8.0.14 127698 username aminvpn 127698 mac 127698 bytes_out 0 127698 bytes_in 0 127698 station_ip 151.238.238.59 127698 port 239 127698 unique_id port 127698 remote_ip 10.8.0.14 127702 username irannezhad 127702 mac 127702 bytes_out 0 127702 bytes_in 0 127702 station_ip 83.122.229.42 127702 port 239 127702 unique_id port 127702 remote_ip 10.8.0.182 127705 username mansur 127705 mac 127705 bytes_out 0 127705 bytes_in 0 127705 station_ip 5.119.205.158 127705 port 140 64712 username arezoo 64712 kill_reason Maximum check online fails reached 64712 mac 5.237.77.174:49206: Unknown host 64712 bytes_out 0 64712 bytes_in 0 64712 station_ip 5.237.77.174:49206 64712 port 1017 64712 unique_id port 127669 remote_ip 10.8.1.194 127670 username zare 127670 mac 127670 bytes_out 0 127670 bytes_in 0 127670 station_ip 94.183.214.14 127670 port 239 127670 unique_id port 127670 remote_ip 10.8.0.18 127674 username amir 127674 kill_reason Another user logged on this global unique id 127674 mac 127674 bytes_out 0 127674 bytes_in 0 127674 station_ip 46.225.232.199 127674 port 229 127674 unique_id port 127680 username aminvpn 127680 mac 127680 bytes_out 0 127680 bytes_in 0 127680 station_ip 151.238.238.59 127680 port 232 127680 unique_id port 127680 remote_ip 10.8.0.14 127681 username rezasekonji 127681 kill_reason Relative expiration date has reached 127681 mac 127681 bytes_out 0 127681 bytes_in 0 127681 station_ip 113.203.13.8 127681 port 240 127681 unique_id port 127682 username aminvpn 127682 mac 127682 bytes_out 0 127682 bytes_in 0 127682 station_ip 151.238.238.59 127682 port 239 127682 unique_id port 127682 remote_ip 10.8.0.14 127683 username irannezhad 127683 mac 127683 bytes_out 5679 127683 bytes_in 11054 127683 station_ip 83.122.229.42 127683 port 237 127683 unique_id port 127683 remote_ip 10.8.0.182 127686 username aminvpn 127686 mac 127686 bytes_out 0 127686 bytes_in 0 127686 station_ip 151.238.238.59 127686 port 237 127686 unique_id port 127686 remote_ip 10.8.0.14 127687 username irannezhad 127687 mac 127687 bytes_out 0 127687 bytes_in 0 127687 station_ip 83.122.229.42 127687 port 141 127687 unique_id port 127687 remote_ip 10.8.1.134 127688 username aminvpn 127688 mac 127688 bytes_out 0 127688 bytes_in 0 127688 station_ip 151.238.238.59 127688 port 239 127688 unique_id port 127688 remote_ip 10.8.0.14 127690 username aminvpn 127690 mac 127690 bytes_out 0 127690 bytes_in 0 127690 station_ip 151.238.238.59 127690 port 237 127690 unique_id port 127690 remote_ip 10.8.0.14 127691 username irannezhad 127691 mac 127691 bytes_out 0 127691 bytes_in 0 127691 station_ip 83.122.229.42 127691 port 141 127691 unique_id port 127691 remote_ip 10.8.1.134 127693 username zare 127693 mac 127693 bytes_out 0 127693 bytes_in 0 127693 station_ip 94.183.214.14 127693 port 237 127693 unique_id port 127693 remote_ip 10.8.0.18 127695 username irannezhad 127695 mac 127695 bytes_out 0 127695 bytes_in 0 127695 station_ip 83.122.229.42 127695 port 141 127695 unique_id port 127695 remote_ip 10.8.1.134 127697 username irannezhad 127697 mac 127697 bytes_out 0 127697 bytes_in 0 127697 station_ip 83.122.229.42 127697 port 232 127697 unique_id port 127697 remote_ip 10.8.0.182 127700 username irannezhad 127700 mac 127700 bytes_out 0 127700 bytes_in 0 127700 station_ip 83.122.229.42 127700 port 141 127700 unique_id port 127700 remote_ip 10.8.1.134 127712 username irannezhad 127712 mac 127712 bytes_out 0 127712 bytes_in 0 127712 station_ip 83.122.229.42 127712 port 232 127712 unique_id port 127712 remote_ip 10.8.0.182 127714 username irannezhad 127714 mac 127714 bytes_out 0 127714 bytes_in 0 127714 station_ip 83.122.229.42 127714 port 232 127714 unique_id port 127714 remote_ip 10.8.0.182 127718 username zare 127718 mac 127718 bytes_out 0 127718 bytes_in 0 127718 station_ip 94.183.214.14 127718 port 232 127718 unique_id port 127718 remote_ip 10.8.0.18 127678 station_ip 94.183.214.14 127678 port 232 127678 unique_id port 127678 remote_ip 10.8.0.18 127679 username aminvpn 127679 mac 127679 bytes_out 0 127679 bytes_in 0 127679 station_ip 151.238.238.59 127679 port 239 127679 unique_id port 127679 remote_ip 10.8.0.14 127684 username aminvpn 127684 mac 127684 bytes_out 0 127684 bytes_in 0 127684 station_ip 151.238.238.59 127684 port 240 127684 unique_id port 127684 remote_ip 10.8.0.14 127692 username aminvpn 127692 unique_id port 127692 terminate_cause Lost-Carrier 127692 bytes_out 9139996 127692 bytes_in 343398057 127692 station_ip 31.57.130.45 127692 port 15730112 127692 nas_port_type Virtual 127692 remote_ip 5.5.5.255 127694 username zare 127694 mac 127694 bytes_out 0 127694 bytes_in 0 127694 station_ip 94.183.214.14 127694 port 239 127694 unique_id port 127694 remote_ip 10.8.0.18 127699 username mosi 127699 kill_reason Another user logged on this global unique id 127699 mac 127699 bytes_out 0 127699 bytes_in 0 127699 station_ip 151.235.124.20 127699 port 228 127699 unique_id port 127701 username irannezhad 127701 mac 127701 bytes_out 0 127701 bytes_in 0 127701 station_ip 83.122.229.42 127701 port 239 127701 unique_id port 127701 remote_ip 10.8.0.182 127703 username zare 127703 mac 127703 bytes_out 0 127703 bytes_in 0 127703 station_ip 94.183.214.14 127703 port 232 127703 unique_id port 127703 remote_ip 10.8.0.18 127704 username aminvpn 127704 mac 127704 bytes_out 0 127704 bytes_in 0 127704 station_ip 151.238.238.59 127704 port 240 127704 unique_id port 127704 remote_ip 10.8.0.14 127706 username zare 127706 mac 127706 bytes_out 0 127706 bytes_in 0 127706 station_ip 94.183.214.14 127706 port 239 127706 unique_id port 127706 remote_ip 10.8.0.18 127708 username irannezhad 127708 mac 127708 bytes_out 0 127708 bytes_in 0 127708 station_ip 83.122.229.42 127708 port 141 127708 unique_id port 127708 remote_ip 10.8.1.134 127709 username aminvpn 127709 mac 127709 bytes_out 0 127709 bytes_in 0 127709 station_ip 151.238.238.59 127709 port 239 127709 unique_id port 127709 remote_ip 10.8.0.14 127710 username mansur 127710 mac 127710 bytes_out 0 127710 bytes_in 0 127710 station_ip 5.119.205.158 127710 port 232 127710 unique_id port 127710 remote_ip 10.8.0.210 127711 username mansur 127711 mac 127711 bytes_out 0 127711 bytes_in 0 127711 station_ip 5.119.205.158 127711 port 239 127711 unique_id port 127711 remote_ip 10.8.0.210 127716 username zare 127716 mac 127716 bytes_out 0 127716 bytes_in 0 127716 station_ip 94.183.214.14 127716 port 141 127716 unique_id port 127716 remote_ip 10.8.1.58 127721 username moradi 127721 mac 127721 bytes_out 0 127721 bytes_in 0 127721 station_ip 83.123.30.231 127721 port 141 127721 unique_id port 127721 remote_ip 10.8.1.202 127723 username irannezhad 127723 mac 127723 bytes_out 0 127723 bytes_in 0 127723 station_ip 83.122.229.42 127723 port 142 127723 unique_id port 127723 remote_ip 10.8.1.134 127724 username zare 127724 mac 127724 bytes_out 0 127724 bytes_in 0 127724 station_ip 94.183.214.14 127724 port 239 127724 unique_id port 127724 remote_ip 10.8.0.18 127726 username irannezhad 127726 kill_reason Maximum check online fails reached 127726 mac 127726 bytes_out 0 127726 bytes_in 0 127726 station_ip 83.122.229.42 127726 port 140 127726 unique_id port 127729 username irannezhad 127729 mac 127729 bytes_out 0 127729 bytes_in 0 127729 station_ip 83.123.104.190 127705 unique_id port 127705 remote_ip 10.8.1.194 127707 username aminvpn 127707 mac 127707 bytes_out 12494 127707 bytes_in 23663 127707 station_ip 151.238.238.59 127707 port 232 127707 unique_id port 127707 remote_ip 10.8.0.14 127713 username irannezhad 127713 mac 127713 bytes_out 0 127713 bytes_in 0 127713 station_ip 83.122.229.42 127713 port 141 127713 unique_id port 127713 remote_ip 10.8.1.134 127715 username zare 127715 mac 127715 bytes_out 0 127715 bytes_in 0 127715 station_ip 94.183.214.14 127715 port 140 127715 unique_id port 127715 remote_ip 10.8.1.58 127717 username irannezhad 127717 mac 127717 bytes_out 0 127717 bytes_in 0 127717 station_ip 83.122.229.42 127717 port 140 127717 unique_id port 127717 remote_ip 10.8.1.134 127719 username amir 127719 kill_reason Another user logged on this global unique id 127719 mac 127719 bytes_out 0 127719 bytes_in 0 127719 station_ip 46.225.232.199 127719 port 229 127719 unique_id port 127722 username aminvpn 127722 mac 127722 bytes_out 0 127722 bytes_in 0 127722 station_ip 151.238.238.59 127722 port 240 127722 unique_id port 127722 remote_ip 10.8.0.14 127727 username irannezhad 127727 mac 127727 bytes_out 0 127727 bytes_in 0 127727 station_ip 83.122.229.42 127727 port 239 127727 unique_id port 127727 remote_ip 10.8.0.182 127728 username zare 127728 mac 127728 bytes_out 0 127728 bytes_in 0 127728 station_ip 94.183.214.14 127728 port 239 127728 unique_id port 127728 remote_ip 10.8.0.18 127730 username mansur 127730 mac 127730 bytes_out 0 127730 bytes_in 0 127730 station_ip 5.119.205.158 127730 port 143 127730 unique_id port 127730 remote_ip 10.8.1.194 127732 username irannezhad 127732 mac 127732 bytes_out 0 127732 bytes_in 0 127732 station_ip 83.122.229.42 127732 port 240 127732 unique_id port 127732 remote_ip 10.8.0.182 127733 username mansur 127733 mac 127733 bytes_out 0 127733 bytes_in 0 127733 station_ip 5.119.205.158 127733 port 232 127733 unique_id port 127733 remote_ip 10.8.0.210 127738 username irannezhad 127738 mac 127738 bytes_out 0 127738 bytes_in 0 127738 station_ip 83.123.104.190 127738 port 232 127738 unique_id port 127738 remote_ip 10.8.0.182 127740 username irannezhad 127740 mac 127740 bytes_out 0 127740 bytes_in 0 127740 station_ip 37.129.160.198 127740 port 240 127740 unique_id port 127740 remote_ip 10.8.0.182 127743 username irannezhad 127743 mac 127743 bytes_out 0 127743 bytes_in 0 127743 station_ip 37.129.160.198 127743 port 239 127743 unique_id port 127743 remote_ip 10.8.0.182 127750 username mosi 127750 kill_reason Another user logged on this global unique id 127750 mac 127750 bytes_out 0 127750 bytes_in 0 127750 station_ip 151.235.124.20 127750 port 228 127750 unique_id port 127752 username zare 127752 mac 127752 bytes_out 0 127752 bytes_in 0 127752 station_ip 94.183.214.14 127752 port 239 127752 unique_id port 127752 remote_ip 10.8.0.18 127753 username hosseine 127753 kill_reason Another user logged on this global unique id 127753 mac 127753 bytes_out 0 127753 bytes_in 0 127753 station_ip 83.123.26.211 127753 port 237 127753 unique_id port 127753 remote_ip 10.8.0.238 127754 username zare 127754 mac 127754 bytes_out 0 127754 bytes_in 0 127754 station_ip 94.183.214.14 127754 port 239 127754 unique_id port 127754 remote_ip 10.8.0.18 127757 username irannezhad 127757 kill_reason Maximum check online fails reached 127757 mac 127757 bytes_out 0 127757 bytes_in 0 127757 station_ip 37.129.160.198 127720 username irannezhad 127720 mac 127720 bytes_out 0 127720 bytes_in 0 127720 station_ip 83.122.229.42 127720 port 142 127720 unique_id port 127720 remote_ip 10.8.1.134 127725 username mosi 127725 kill_reason Another user logged on this global unique id 127725 mac 127725 bytes_out 0 127725 bytes_in 0 127725 station_ip 151.235.124.20 127725 port 228 127725 unique_id port 127731 username aminvpn 127731 mac 127731 bytes_out 0 127731 bytes_in 0 127731 station_ip 151.238.238.59 127731 port 232 127731 unique_id port 127731 remote_ip 10.8.0.14 127734 username irannezhad 127734 mac 127734 bytes_out 0 127734 bytes_in 0 127734 station_ip 83.123.104.190 127734 port 240 127734 unique_id port 127734 remote_ip 10.8.0.182 127735 username mansur 127735 mac 127735 bytes_out 0 127735 bytes_in 0 127735 station_ip 5.119.205.158 127735 port 143 127735 unique_id port 127735 remote_ip 10.8.1.194 127739 username aminvpn 127739 mac 127739 bytes_out 0 127739 bytes_in 0 127739 station_ip 151.238.238.59 127739 port 239 127739 unique_id port 127739 remote_ip 10.8.0.14 127741 username irannezhad 127741 mac 127741 bytes_out 0 127741 bytes_in 0 127741 station_ip 37.129.160.198 127741 port 239 127741 unique_id port 127741 remote_ip 10.8.0.182 127745 username mansur 127745 mac 127745 bytes_out 0 127745 bytes_in 0 127745 station_ip 5.119.205.158 127745 port 239 127745 unique_id port 127745 remote_ip 10.8.0.210 127749 username zare 127749 mac 127749 bytes_out 0 127749 bytes_in 0 127749 station_ip 94.183.214.14 127749 port 239 127749 unique_id port 127749 remote_ip 10.8.0.18 127756 username mansur 127756 mac 127756 bytes_out 0 127756 bytes_in 0 127756 station_ip 5.119.205.158 127756 port 143 127756 unique_id port 127756 remote_ip 10.8.1.194 127762 username irannezhad 127762 mac 127762 bytes_out 2602 127762 bytes_in 5089 127762 station_ip 37.129.160.198 127762 port 144 127762 unique_id port 127762 remote_ip 10.8.1.134 127766 username irannezhad 127766 mac 127766 bytes_out 0 127766 bytes_in 0 127766 station_ip 83.123.237.58 127766 port 241 127766 unique_id port 127766 remote_ip 10.8.0.182 127770 username mosi 127770 kill_reason Another user logged on this global unique id 127770 mac 127770 bytes_out 0 127770 bytes_in 0 127770 station_ip 151.235.124.20 127770 port 228 127770 unique_id port 127771 username aminvpn 127771 mac 127771 bytes_out 0 127771 bytes_in 0 127771 station_ip 151.238.238.59 127771 port 239 127771 unique_id port 127771 remote_ip 10.8.0.14 127774 username mohsenaskari 127774 mac 127774 bytes_out 0 127774 bytes_in 0 127774 station_ip 46.225.211.92 127774 port 223 127774 unique_id port 127774 remote_ip 10.8.0.246 127776 username aminvpn 127776 mac 127776 bytes_out 0 127776 bytes_in 0 127776 station_ip 151.238.238.59 127776 port 240 127776 unique_id port 127776 remote_ip 10.8.0.14 127779 username zare 127779 mac 127779 bytes_out 0 127779 bytes_in 0 127779 station_ip 94.183.214.14 127779 port 141 127779 unique_id port 127779 remote_ip 10.8.1.58 127785 username zare 127785 mac 127785 bytes_out 0 127785 bytes_in 0 127785 station_ip 94.183.214.14 127785 port 232 127785 unique_id port 127785 remote_ip 10.8.0.18 127791 username aminvpn 127791 mac 127791 bytes_out 0 127791 bytes_in 0 127791 station_ip 151.238.238.59 127791 port 232 127791 unique_id port 127791 remote_ip 10.8.0.14 127795 username irannezhad 127795 mac 127795 bytes_out 0 127729 port 142 127729 unique_id port 127729 remote_ip 10.8.1.134 127736 username irannezhad 127736 mac 127736 bytes_out 0 127736 bytes_in 0 127736 station_ip 83.123.104.190 127736 port 232 127736 unique_id port 127736 remote_ip 10.8.0.182 127737 username zare 127737 mac 127737 bytes_out 13889 127737 bytes_in 41376 127737 station_ip 94.183.214.14 127737 port 142 127737 unique_id port 127737 remote_ip 10.8.1.58 127742 username irannezhad 127742 mac 127742 bytes_out 0 127742 bytes_in 0 127742 station_ip 37.129.160.198 127742 port 239 127742 unique_id port 127742 remote_ip 10.8.0.182 127744 username zare 127744 mac 127744 bytes_out 0 127744 bytes_in 0 127744 station_ip 94.183.214.14 127744 port 240 127744 unique_id port 127744 remote_ip 10.8.0.18 127746 username zare 127746 mac 127746 bytes_out 0 127746 bytes_in 0 127746 station_ip 94.183.214.14 127746 port 239 127746 unique_id port 127746 remote_ip 10.8.0.18 127747 username irannezhad 127747 mac 127747 bytes_out 0 127747 bytes_in 0 127747 station_ip 37.129.160.198 127747 port 239 127747 unique_id port 127747 remote_ip 10.8.0.182 127748 username aminvpn 127748 mac 127748 bytes_out 0 127748 bytes_in 0 127748 station_ip 151.238.238.59 127748 port 232 127748 unique_id port 127748 remote_ip 10.8.0.14 127751 username aminvpn 127751 mac 127751 bytes_out 0 127751 bytes_in 0 127751 station_ip 151.238.238.59 127751 port 240 127751 unique_id port 127751 remote_ip 10.8.0.14 127755 username zare 127755 mac 127755 bytes_out 0 127755 bytes_in 0 127755 station_ip 94.183.214.14 127755 port 239 127755 unique_id port 127755 remote_ip 10.8.0.18 127758 username mansur 127758 mac 127758 bytes_out 0 127758 bytes_in 0 127758 station_ip 5.119.205.158 127758 port 239 127758 unique_id port 127758 remote_ip 10.8.0.210 127759 username zare 127759 mac 127759 bytes_out 0 127759 bytes_in 0 127759 station_ip 94.183.214.14 127759 port 240 127759 unique_id port 127759 remote_ip 10.8.0.18 127761 username mostafa_es78 127761 unique_id port 127761 terminate_cause User-Request 127761 bytes_out 520220 127761 bytes_in 2756214 127761 station_ip 178.236.35.96 127761 port 15730117 127761 nas_port_type Virtual 127761 remote_ip 5.5.5.12 127764 username mostafa_es78 127764 unique_id port 127764 terminate_cause Lost-Carrier 127764 bytes_out 79967 127764 bytes_in 128688 127764 station_ip 178.236.35.96 127764 port 15730116 127764 nas_port_type Virtual 127764 remote_ip 5.5.5.10 127765 username zare 127765 mac 127765 bytes_out 0 127765 bytes_in 0 127765 station_ip 94.183.214.14 127765 port 240 127765 unique_id port 127765 remote_ip 10.8.0.18 127767 username moradi 127767 mac 127767 bytes_out 2651217 127767 bytes_in 41576665 127767 station_ip 83.123.30.231 127767 port 141 127767 unique_id port 127767 remote_ip 10.8.1.202 127772 username irannezhad 127772 mac 127772 bytes_out 0 127772 bytes_in 0 127772 station_ip 83.123.237.58 127772 port 143 127772 unique_id port 127772 remote_ip 10.8.1.134 127775 username irannezhad 127775 mac 127775 bytes_out 0 127775 bytes_in 0 127775 station_ip 83.123.237.58 127775 port 239 127775 unique_id port 127775 remote_ip 10.8.0.182 127780 username aminvpn 127780 mac 127780 bytes_out 0 127780 bytes_in 0 127780 station_ip 151.238.238.59 127780 port 239 127780 unique_id port 127780 remote_ip 10.8.0.14 127782 username amir 127782 kill_reason Another user logged on this global unique id 127782 mac 127782 bytes_out 0 127782 bytes_in 0 127757 port 142 127757 unique_id port 127760 username aminvpn 127760 mac 127760 bytes_out 0 127760 bytes_in 0 127760 station_ip 151.238.238.59 127760 port 232 127760 unique_id port 127760 remote_ip 10.8.0.14 127763 username irannezhad 127763 mac 127763 bytes_out 0 127763 bytes_in 0 127763 station_ip 83.123.237.58 127763 port 143 127763 unique_id port 127763 remote_ip 10.8.1.134 127768 username zare 127768 mac 127768 bytes_out 0 127768 bytes_in 0 127768 station_ip 94.183.214.14 127768 port 240 127768 unique_id port 127768 remote_ip 10.8.0.18 127769 username zare 127769 mac 127769 bytes_out 0 127769 bytes_in 0 127769 station_ip 94.183.214.14 127769 port 240 127769 unique_id port 127769 remote_ip 10.8.0.18 127773 username moradi 127773 mac 127773 bytes_out 8646 127773 bytes_in 13736 127773 station_ip 83.123.30.231 127773 port 141 127773 unique_id port 127773 remote_ip 10.8.1.202 127777 username zare 127777 mac 127777 bytes_out 0 127777 bytes_in 0 127777 station_ip 94.183.214.14 127777 port 141 127777 unique_id port 127777 remote_ip 10.8.1.58 127778 username zare 127778 mac 127778 bytes_out 0 127778 bytes_in 0 127778 station_ip 94.183.214.14 127778 port 141 127778 unique_id port 127778 remote_ip 10.8.1.58 127781 username irannezhad 127781 mac 127781 bytes_out 0 127781 bytes_in 0 127781 station_ip 83.123.237.58 127781 port 223 127781 unique_id port 127781 remote_ip 10.8.0.182 127783 username aminvpn 127783 mac 127783 bytes_out 0 127783 bytes_in 0 127783 station_ip 151.238.238.59 127783 port 242 127783 unique_id port 127783 remote_ip 10.8.0.14 127787 username aminvpn 127787 mac 127787 bytes_out 0 127787 bytes_in 0 127787 station_ip 151.238.238.59 127787 port 223 127787 unique_id port 127787 remote_ip 10.8.0.14 127789 username irannezhad 127789 mac 127789 bytes_out 0 127789 bytes_in 0 127789 station_ip 83.123.237.58 127789 port 141 127789 unique_id port 127789 remote_ip 10.8.1.134 127790 username aminvpn 127790 mac 127790 bytes_out 21468 127790 bytes_in 56844 127790 station_ip 151.238.238.59 127790 port 223 127790 unique_id port 127790 remote_ip 10.8.0.14 127792 username irannezhad 127792 kill_reason Maximum check online fails reached 127792 mac 127792 bytes_out 0 127792 bytes_in 0 127792 station_ip 83.123.237.58 127792 port 144 127792 unique_id port 127793 username irannezhad 127793 mac 127793 bytes_out 0 127793 bytes_in 0 127793 station_ip 83.123.237.58 127793 port 145 127793 unique_id port 127793 remote_ip 10.8.1.134 127799 username hamidsalari 127799 kill_reason Another user logged on this global unique id 127799 mac 127799 bytes_out 0 127799 bytes_in 0 127799 station_ip 5.119.239.169 127799 port 219 127799 unique_id port 127799 remote_ip 10.8.0.230 127805 username aminvpn 127805 mac 127805 bytes_out 0 127805 bytes_in 0 127805 station_ip 151.238.238.59 127805 port 232 127805 unique_id port 127805 remote_ip 10.8.0.14 127806 username mansur 127806 mac 127806 bytes_out 0 127806 bytes_in 0 127806 station_ip 5.119.205.158 127806 port 143 127806 unique_id port 127806 remote_ip 10.8.1.194 127810 username amir 127830 remote_ip 10.8.1.146 127810 kill_reason Another user logged on this global unique id 127810 mac 127810 bytes_out 0 127810 bytes_in 0 127810 station_ip 46.225.232.199 127810 port 229 127810 unique_id port 127811 username aminvpn 127811 mac 127811 bytes_out 0 127811 bytes_in 0 127811 station_ip 151.238.238.59 127811 port 223 127811 unique_id port 127782 station_ip 46.225.232.199 127782 port 229 127782 unique_id port 127784 username mostafa_es78 127784 mac 127784 bytes_out 1056991 127784 bytes_in 5833065 127784 station_ip 178.236.35.96 127784 port 232 127784 unique_id port 127784 remote_ip 10.8.0.198 127786 username irannezhad 127786 mac 127786 bytes_out 88319 127786 bytes_in 130220 127786 station_ip 83.123.237.58 127786 port 141 127786 unique_id port 127786 remote_ip 10.8.1.134 127788 username aminvpn 127788 mac 127788 bytes_out 0 127788 bytes_in 0 127788 station_ip 151.238.238.59 127788 port 232 127788 unique_id port 127788 remote_ip 10.8.0.14 127794 username mosi 127794 kill_reason Another user logged on this global unique id 127794 mac 127794 bytes_out 0 127794 bytes_in 0 127794 station_ip 151.235.124.20 127794 port 228 127794 unique_id port 127796 username irannezhad 127796 mac 127796 bytes_out 0 127796 bytes_in 0 127796 station_ip 83.123.237.58 127796 port 232 127796 unique_id port 127796 remote_ip 10.8.0.182 127798 username irannezhad 127798 mac 127798 bytes_out 0 127798 bytes_in 0 127798 station_ip 83.123.237.58 127798 port 223 127798 unique_id port 127798 remote_ip 10.8.0.182 127800 username irannezhad 127800 mac 127800 bytes_out 0 127800 bytes_in 0 127800 station_ip 83.123.237.58 127800 port 223 127800 unique_id port 127800 remote_ip 10.8.0.182 127801 username aminvpn 127801 mac 127801 bytes_out 8013 127801 bytes_in 12427 127801 station_ip 151.238.238.59 127801 port 232 127801 unique_id port 127801 remote_ip 10.8.0.14 127802 username sabaghnezhad 127802 mac 127802 bytes_out 0 127802 bytes_in 0 127802 station_ip 83.123.108.198 127802 port 238 127802 unique_id port 127802 remote_ip 10.8.0.186 127803 username mansur 127803 mac 127803 bytes_out 257109 127803 bytes_in 2460511 127803 station_ip 5.119.205.158 127803 port 143 127803 unique_id port 127803 remote_ip 10.8.1.194 127804 username aminvpn 127804 mac 127804 bytes_out 26871 127804 bytes_in 88546 127804 station_ip 151.238.238.59 127804 port 223 127804 unique_id port 127804 remote_ip 10.8.0.14 127812 username zare 127812 mac 127812 bytes_out 214676 127812 bytes_in 661333 127812 station_ip 94.183.214.14 127812 port 141 127812 unique_id port 127812 remote_ip 10.8.1.58 127816 username mosi 127816 kill_reason Another user logged on this global unique id 127816 mac 127816 bytes_out 0 127816 bytes_in 0 127816 station_ip 151.235.124.20 127816 port 228 127816 unique_id port 127819 username aminvpn 127819 mac 127819 bytes_out 0 127819 bytes_in 0 127819 station_ip 151.238.238.59 127819 port 223 127819 unique_id port 127819 remote_ip 10.8.0.14 127823 username mansur 127823 mac 127823 bytes_out 0 127823 bytes_in 0 127823 station_ip 5.119.205.158 127823 port 141 127823 unique_id port 127823 remote_ip 10.8.1.194 127828 username mansur 127828 mac 127828 bytes_out 0 127828 bytes_in 0 127828 station_ip 5.119.205.158 127828 port 234 127828 unique_id port 127828 remote_ip 10.8.0.210 127830 username mohammadjavad 127830 mac 127830 bytes_out 9799 127830 bytes_in 13723 127830 station_ip 83.122.41.97 127830 port 141 127830 unique_id port 127835 username mohammadjavad 127835 mac 127835 bytes_out 307937 127835 bytes_in 5765838 127835 station_ip 83.122.72.151 127835 port 141 127835 unique_id port 127835 remote_ip 10.8.1.146 127837 username aminvpn 127837 mac 127837 bytes_out 0 127837 bytes_in 0 127837 station_ip 151.238.238.59 127837 port 242 127795 bytes_in 0 127795 station_ip 83.123.237.58 127795 port 232 127795 unique_id port 127795 remote_ip 10.8.0.182 127797 username aminvpn 127797 mac 127797 bytes_out 0 127797 bytes_in 0 127797 station_ip 151.238.238.59 127797 port 223 127797 unique_id port 127797 remote_ip 10.8.0.14 127807 username hamidsalari1 127807 kill_reason Another user logged on this global unique id 127807 mac 127807 bytes_out 0 127807 bytes_in 0 127807 station_ip 37.129.98.239 127807 port 239 127807 unique_id port 127807 remote_ip 10.8.0.226 127808 username mansur 127808 mac 127808 bytes_out 0 127808 bytes_in 0 127808 station_ip 5.119.205.158 127808 port 232 127808 unique_id port 127808 remote_ip 10.8.0.210 127809 username mansur 127809 mac 127809 bytes_out 0 127809 bytes_in 0 127809 station_ip 5.119.205.158 127809 port 143 127809 unique_id port 127809 remote_ip 10.8.1.194 127814 username aminvpn 127814 mac 127814 bytes_out 0 127814 bytes_in 0 127814 station_ip 151.238.238.59 127814 port 232 127814 unique_id port 127814 remote_ip 10.8.0.14 127817 username mansur 127817 mac 127817 bytes_out 26635 127817 bytes_in 131825 127817 station_ip 5.119.205.158 127817 port 232 127817 unique_id port 127817 remote_ip 10.8.0.210 127821 username zare 127821 mac 127821 bytes_out 0 127821 bytes_in 0 127821 station_ip 94.183.214.14 127821 port 141 127821 unique_id port 127821 remote_ip 10.8.1.58 127822 username aminvpn 127822 mac 127822 bytes_out 0 127822 bytes_in 0 127822 station_ip 151.238.238.59 127822 port 232 127822 unique_id port 127822 remote_ip 10.8.0.14 127824 username mohammadjavad 127824 mac 127824 bytes_out 0 127824 bytes_in 0 127824 station_ip 83.122.41.97 127824 port 143 127824 unique_id port 127824 remote_ip 10.8.1.146 127825 username aminvpn 127825 mac 127825 bytes_out 0 127825 bytes_in 0 127825 station_ip 151.238.238.59 127825 port 223 127825 unique_id port 127825 remote_ip 10.8.0.14 127826 username hamidsalari1 127826 mac 127826 bytes_out 0 127826 bytes_in 0 127826 station_ip 37.129.98.239 127826 port 239 127826 unique_id port 127829 username aminvpn 127829 mac 127829 bytes_out 0 127829 bytes_in 0 127829 station_ip 151.238.238.59 127829 port 238 127829 unique_id port 127829 remote_ip 10.8.0.14 127831 username mansur 127831 mac 127831 bytes_out 0 127831 bytes_in 0 127831 station_ip 5.119.205.158 127831 port 238 127831 unique_id port 127831 remote_ip 10.8.0.210 127832 username aminvpn 127832 mac 127832 bytes_out 0 127832 bytes_in 0 127832 station_ip 151.238.238.59 127832 port 239 127832 unique_id port 127832 remote_ip 10.8.0.14 127834 username hosseine 127834 mac 127834 bytes_out 0 127834 bytes_in 0 127834 station_ip 83.123.26.211 127834 port 237 127834 unique_id port 127836 username amir 127836 mac 127836 bytes_out 0 127836 bytes_in 0 127836 station_ip 46.225.232.199 127836 port 229 127836 unique_id port 127838 username aminvpn 127838 mac 127838 bytes_out 0 127838 bytes_in 0 127838 station_ip 151.238.238.59 127838 port 229 127838 unique_id port 127838 remote_ip 10.8.0.14 127844 username aminvpn 127844 mac 127844 bytes_out 0 127844 bytes_in 0 127844 station_ip 151.238.238.59 127844 port 239 127844 unique_id port 127844 remote_ip 10.8.0.14 127845 username mansur 127845 mac 127845 bytes_out 0 127845 bytes_in 0 127845 station_ip 5.119.205.158 127845 port 141 127845 unique_id port 127845 remote_ip 10.8.1.194 127811 remote_ip 10.8.0.14 127813 username mansur 127813 mac 127813 bytes_out 0 127813 bytes_in 0 127813 station_ip 5.119.205.158 127813 port 223 127813 unique_id port 127813 remote_ip 10.8.0.210 127815 username mansur 127815 mac 127815 bytes_out 0 127815 bytes_in 0 127815 station_ip 5.119.205.158 127815 port 143 127815 unique_id port 127815 remote_ip 10.8.1.194 127818 username zare 127818 mac 127818 bytes_out 0 127818 bytes_in 0 127818 station_ip 94.183.214.14 127818 port 141 127818 unique_id port 127818 remote_ip 10.8.1.58 127820 username zare 127820 mac 127820 bytes_out 0 127820 bytes_in 0 127820 station_ip 94.183.214.14 127820 port 141 127820 unique_id port 127820 remote_ip 10.8.1.58 127827 username kordestani 127827 mac 127827 bytes_out 0 127827 bytes_in 0 127827 station_ip 151.235.120.9 127827 port 234 127827 unique_id port 127827 remote_ip 10.8.0.134 127833 username mansur 127833 mac 127833 bytes_out 0 127833 bytes_in 0 127833 station_ip 5.119.205.158 127833 port 238 127833 unique_id port 127833 remote_ip 10.8.0.210 127840 username aminvpn 127840 mac 127840 bytes_out 0 127840 bytes_in 0 127840 station_ip 151.238.238.59 127840 port 238 127840 unique_id port 127840 remote_ip 10.8.0.14 127841 username aminvpn 127841 mac 127841 bytes_out 0 127841 bytes_in 0 127841 station_ip 151.238.238.59 127841 port 229 127841 unique_id port 127841 remote_ip 10.8.0.14 127843 username mansur 127843 mac 127843 bytes_out 0 127843 bytes_in 0 127843 station_ip 5.119.205.158 127843 port 141 127843 unique_id port 127843 remote_ip 10.8.1.194 127846 username khalili 127846 kill_reason Another user logged on this global unique id 127846 mac 127846 bytes_out 0 127846 bytes_in 0 127846 station_ip 5.119.142.28 127846 port 137 127846 unique_id port 127848 username mansur 127848 mac 127848 bytes_out 0 127848 bytes_in 0 127848 station_ip 5.119.205.158 127848 port 239 127848 unique_id port 127848 remote_ip 10.8.0.210 127852 username mansur 127852 mac 127852 bytes_out 0 127852 bytes_in 0 127852 station_ip 5.119.205.158 127852 port 240 127852 unique_id port 127852 remote_ip 10.8.0.210 127853 username aminvpn 127853 mac 127853 bytes_out 0 127853 bytes_in 0 127853 station_ip 151.238.238.59 127853 port 238 127853 unique_id port 127853 remote_ip 10.8.0.14 127869 username kordestani 127869 mac 127869 bytes_out 2798 127869 bytes_in 7457 127869 station_ip 151.235.120.9 127869 port 238 127869 unique_id port 127869 remote_ip 10.8.0.134 127871 username zare 127871 mac 127871 bytes_out 0 127871 bytes_in 0 127871 station_ip 94.183.214.14 127871 port 232 127871 unique_id port 127871 remote_ip 10.8.0.18 127874 username aminvpn 127874 mac 127874 bytes_out 0 127874 bytes_in 0 127874 station_ip 151.238.238.59 127874 port 239 127874 unique_id port 127874 remote_ip 10.8.0.14 127875 username moradi 127875 mac 127875 bytes_out 195842 127875 bytes_in 238605 127875 station_ip 83.123.30.231 127875 port 241 127875 unique_id port 127875 remote_ip 10.8.0.250 127878 username irannezhad 127878 mac 127878 bytes_out 0 127878 bytes_in 0 127878 station_ip 83.123.237.58 127878 port 143 127878 unique_id port 127878 remote_ip 10.8.1.134 127881 username irannezhad 127881 mac 127881 bytes_out 0 127881 bytes_in 0 127881 station_ip 83.123.237.58 127881 port 232 127881 unique_id port 127881 remote_ip 10.8.0.182 127883 username malekpoir 128865 username aminvpn 127837 unique_id port 127837 remote_ip 10.8.0.14 127839 username mansur 127839 mac 127839 bytes_out 0 127839 bytes_in 0 127839 station_ip 5.119.205.158 127839 port 229 127839 unique_id port 127839 remote_ip 10.8.0.210 127842 username aminvpn 127842 mac 127842 bytes_out 0 127842 bytes_in 0 127842 station_ip 151.238.238.59 127842 port 238 127842 unique_id port 127842 remote_ip 10.8.0.14 127849 username arash 127849 mac 127849 bytes_out 0 127849 bytes_in 0 127849 station_ip 188.245.89.10 127849 port 240 127849 unique_id port 127849 remote_ip 10.8.0.114 127850 username aminvpn 127850 mac 127850 bytes_out 0 127850 bytes_in 0 127850 station_ip 151.238.238.59 127850 port 242 127850 unique_id port 127850 remote_ip 10.8.0.14 127856 username aminvpn 127856 mac 127856 bytes_out 0 127856 bytes_in 0 127856 station_ip 151.238.238.59 127856 port 240 127856 unique_id port 127856 remote_ip 10.8.0.14 127857 username mansur 127857 mac 127857 bytes_out 0 127857 bytes_in 0 127857 station_ip 5.119.205.158 127857 port 240 127857 unique_id port 127857 remote_ip 10.8.0.210 127858 username mosi 127858 mac 127858 bytes_out 0 127858 bytes_in 0 127858 station_ip 151.235.124.20 127858 port 228 127858 unique_id port 127863 username forozande 127863 mac 127863 bytes_out 0 127863 bytes_in 0 127863 station_ip 113.203.78.188 127863 port 228 127863 unique_id port 127863 remote_ip 10.8.0.74 127865 username forozande 127865 mac 127865 bytes_out 0 127865 bytes_in 0 127865 station_ip 83.123.52.152 127865 port 232 127865 unique_id port 127865 remote_ip 10.8.0.74 127866 username zare 127866 mac 127866 bytes_out 0 127866 bytes_in 0 127866 station_ip 94.183.214.14 127866 port 232 127866 unique_id port 127866 remote_ip 10.8.0.18 127867 username irannezhad 127867 mac 127867 bytes_out 3027857 127867 bytes_in 39217175 127867 station_ip 83.123.237.58 127867 port 145 127867 unique_id port 127867 remote_ip 10.8.1.134 127876 username irannezhad 127876 mac 127876 bytes_out 0 127876 bytes_in 0 127876 station_ip 83.123.237.58 127876 port 143 127876 unique_id port 127876 remote_ip 10.8.1.134 127879 username khademi 127879 kill_reason Another user logged on this global unique id 127879 mac 127879 bytes_out 0 127879 bytes_in 0 127879 station_ip 113.203.20.65 127879 port 233 127879 unique_id port 127879 remote_ip 10.8.0.10 127880 username jamali 127880 mac 127880 bytes_out 0 127880 bytes_in 0 127880 station_ip 5.119.104.252 127880 port 242 127880 unique_id port 127880 remote_ip 10.8.0.150 127886 username irannezhad 127886 mac 127886 bytes_out 0 127886 bytes_in 0 127886 station_ip 83.123.237.58 127886 port 239 127886 unique_id port 127886 remote_ip 10.8.0.182 127890 username saeed9658 127890 mac 127890 bytes_out 0 127890 bytes_in 0 127890 station_ip 5.120.17.83 127890 port 228 127890 unique_id port 127890 remote_ip 10.8.0.62 127893 username mansur 127893 mac 127893 bytes_out 0 127893 bytes_in 0 127893 station_ip 5.119.205.158 127893 port 228 127893 unique_id port 127893 remote_ip 10.8.0.210 127894 username mansur 127894 mac 127894 bytes_out 0 127894 bytes_in 0 127894 station_ip 5.119.205.158 127894 port 143 127894 unique_id port 127894 remote_ip 10.8.1.194 127895 username amin.saeedi 127895 unique_id port 127895 terminate_cause User-Request 127895 bytes_out 5821293 127895 bytes_in 154900306 127895 station_ip 31.59.45.214 127895 port 15730119 127895 nas_port_type Virtual 127847 username aminvpn 127847 mac 127847 bytes_out 0 127847 bytes_in 0 127847 station_ip 151.238.238.59 127847 port 238 127847 unique_id port 127847 remote_ip 10.8.0.14 127851 username mansur 127851 mac 127851 bytes_out 0 127851 bytes_in 0 127851 station_ip 5.119.205.158 127851 port 141 127851 unique_id port 127851 remote_ip 10.8.1.194 127854 username mansur 127854 mac 127854 bytes_out 0 127854 bytes_in 0 127854 station_ip 5.119.205.158 127854 port 141 127854 unique_id port 127854 remote_ip 10.8.1.194 127855 username hosseine 127855 mac 127855 bytes_out 0 127855 bytes_in 0 127855 station_ip 83.123.45.191 127855 port 239 127855 unique_id port 127855 remote_ip 10.8.0.238 127859 username sedighe 127859 mac 127859 bytes_out 0 127859 bytes_in 0 127859 station_ip 37.129.97.228 127859 port 238 127859 unique_id port 127859 remote_ip 10.8.0.146 127860 username mansur 127860 mac 127860 bytes_out 0 127860 bytes_in 0 127860 station_ip 5.119.205.158 127860 port 143 127860 unique_id port 127860 remote_ip 10.8.1.194 127861 username mansur 127861 mac 127861 bytes_out 0 127861 bytes_in 0 127861 station_ip 5.119.205.158 127861 port 143 127861 unique_id port 127861 remote_ip 10.8.1.194 127862 username zare 127862 mac 127862 bytes_out 438430 127862 bytes_in 1196172 127862 station_ip 94.183.214.14 127862 port 232 127862 unique_id port 127862 remote_ip 10.8.0.18 127864 username kordestani 127864 mac 127864 bytes_out 0 127864 bytes_in 0 127864 station_ip 151.235.120.9 127864 port 234 127864 unique_id port 127864 remote_ip 10.8.0.134 127868 username mansur 127868 mac 127868 bytes_out 0 127868 bytes_in 0 127868 station_ip 5.119.205.158 127868 port 143 127868 unique_id port 127868 remote_ip 10.8.1.194 127870 username mansur 127870 mac 127870 bytes_out 0 127870 bytes_in 0 127870 station_ip 5.119.205.158 127870 port 143 127870 unique_id port 127870 remote_ip 10.8.1.194 127872 username irannezhad 127872 mac 127872 bytes_out 0 127872 bytes_in 0 127872 station_ip 83.123.237.58 127872 port 145 127872 unique_id port 127872 remote_ip 10.8.1.134 127873 username irannezhad 127873 mac 127873 bytes_out 0 127873 bytes_in 0 127873 station_ip 83.123.237.58 127873 port 143 127873 unique_id port 127873 remote_ip 10.8.1.134 127877 username zare 127877 mac 127877 bytes_out 14087 127877 bytes_in 55229 127877 station_ip 94.183.214.14 127877 port 232 127877 unique_id port 127877 remote_ip 10.8.0.18 127882 username irannezhad 127882 mac 127882 bytes_out 0 127882 bytes_in 0 127882 station_ip 83.123.237.58 127882 port 143 127882 unique_id port 127882 remote_ip 10.8.1.134 127884 username mansur 127884 mac 127884 bytes_out 0 127884 bytes_in 0 127884 station_ip 5.119.205.158 127884 port 239 127884 unique_id port 127884 remote_ip 10.8.0.210 127885 username forozande 127885 mac 127885 bytes_out 687248 127885 bytes_in 16690260 127885 station_ip 83.122.212.146 127885 port 234 127885 unique_id port 127885 remote_ip 10.8.0.74 127887 username mansur 127887 mac 127887 bytes_out 0 127887 bytes_in 0 127887 station_ip 5.119.205.158 127887 port 143 127887 unique_id port 127887 remote_ip 10.8.1.194 127888 username irannezhad 127888 mac 127888 bytes_out 0 127888 bytes_in 0 127888 station_ip 83.123.237.58 127888 port 239 127888 unique_id port 127888 remote_ip 10.8.0.182 127892 username saeed9658 127892 mac 127892 bytes_out 0 127892 bytes_in 0 127883 kill_reason Another user logged on this global unique id 127883 mac 127883 bytes_out 0 127883 bytes_in 0 127883 station_ip 5.119.49.133 127883 port 237 127883 unique_id port 127883 remote_ip 10.8.0.58 127889 username irannezhad 127889 mac 127889 bytes_out 0 127889 bytes_in 0 127889 station_ip 83.123.237.58 127889 port 239 127889 unique_id port 127889 remote_ip 10.8.0.182 127891 username mansur 127891 mac 127891 bytes_out 0 127891 bytes_in 0 127891 station_ip 5.119.205.158 127891 port 143 127891 unique_id port 127891 remote_ip 10.8.1.194 127901 username mahdiyehalizadeh 127901 mac 127901 bytes_out 1491939 127901 bytes_in 24069013 127901 station_ip 83.123.239.155 127901 port 239 127901 unique_id port 127901 remote_ip 10.8.0.82 127903 username irannezhad 127903 mac 127903 bytes_out 847428 127903 bytes_in 11851508 127903 station_ip 83.123.237.58 127903 port 242 127903 unique_id port 127903 remote_ip 10.8.0.182 127905 username saeed9658 127905 mac 127905 bytes_out 0 127905 bytes_in 0 127905 station_ip 5.120.17.83 127905 port 145 127905 unique_id port 127905 remote_ip 10.8.1.210 127907 username hamidehfatemi 127907 mac 127907 bytes_out 7922970 127907 bytes_in 137519575 127907 station_ip 83.123.227.210 127907 port 243 127907 unique_id port 127907 remote_ip 10.8.0.158 127913 username zare 127913 mac 127913 bytes_out 0 127913 bytes_in 0 127913 station_ip 94.183.214.14 127913 port 243 127913 unique_id port 127913 remote_ip 10.8.0.18 127915 username zare 127915 mac 127915 bytes_out 0 127915 bytes_in 0 127915 station_ip 94.183.214.14 127915 port 234 127915 unique_id port 127915 remote_ip 10.8.0.18 127924 username zare 127924 mac 127924 bytes_out 0 127924 bytes_in 0 127924 station_ip 94.183.214.14 127924 port 228 127924 unique_id port 127924 remote_ip 10.8.0.18 127926 username rezasekonji 127926 kill_reason Relative expiration date has reached 127926 mac 127926 bytes_out 0 127926 bytes_in 0 127926 station_ip 83.122.116.213 127926 port 229 127926 unique_id port 127928 username zare 127928 mac 127928 bytes_out 0 127928 bytes_in 0 127928 station_ip 94.183.214.14 127928 port 234 127928 unique_id port 127928 remote_ip 10.8.0.18 127934 username kordestani 127934 mac 127934 bytes_out 0 127934 bytes_in 0 127934 station_ip 151.235.120.9 127934 port 232 127934 unique_id port 127934 remote_ip 10.8.0.134 127935 username moradi 127935 kill_reason Another user logged on this global unique id 127935 mac 127935 bytes_out 0 127935 bytes_in 0 127935 station_ip 83.123.108.95 127935 port 241 127935 unique_id port 127935 remote_ip 10.8.0.250 127945 username irannezhad 127945 mac 127945 bytes_out 0 127945 bytes_in 0 127945 station_ip 83.123.34.134 127945 port 239 127945 unique_id port 127945 remote_ip 10.8.0.182 127946 username zare 127946 mac 127946 bytes_out 0 127946 bytes_in 0 127946 station_ip 94.183.214.14 127946 port 228 127946 unique_id port 127946 remote_ip 10.8.0.18 127947 username forozande 127947 mac 127947 bytes_out 115219 127947 bytes_in 451609 127947 station_ip 37.129.132.107 127947 port 232 127947 unique_id port 127947 remote_ip 10.8.0.74 127949 username irannezhad 127949 mac 127949 bytes_out 0 127949 bytes_in 0 127949 station_ip 83.123.34.134 127949 port 145 127949 unique_id port 127949 remote_ip 10.8.1.134 127950 username mosi 127950 mac 127950 bytes_out 900379 127950 bytes_in 1732506 127950 station_ip 37.44.59.180 127950 port 240 127950 unique_id port 127950 remote_ip 10.8.0.138 127892 station_ip 5.120.17.83 127892 port 228 127892 unique_id port 127892 remote_ip 10.8.0.62 127902 username forozande 127902 mac 127902 bytes_out 75380 127902 bytes_in 127427 127902 station_ip 37.129.8.29 127902 port 241 127902 unique_id port 127902 remote_ip 10.8.0.74 127911 username zare 127911 mac 127911 bytes_out 0 127911 bytes_in 0 127911 station_ip 94.183.214.14 127911 port 241 127911 unique_id port 127911 remote_ip 10.8.0.18 127916 username amir 127916 mac 127916 bytes_out 3380068 127916 bytes_in 34105004 127916 station_ip 46.225.232.199 127916 port 229 127916 unique_id port 127916 remote_ip 10.8.0.50 127917 username zare 127917 mac 127917 bytes_out 0 127917 bytes_in 0 127917 station_ip 94.183.214.14 127917 port 229 127917 unique_id port 127917 remote_ip 10.8.0.18 127920 username forozande 127920 mac 127920 bytes_out 0 127920 bytes_in 0 127920 station_ip 37.129.8.29 127920 port 228 127920 unique_id port 127920 remote_ip 10.8.0.74 127922 username sedighe 127922 mac 127922 bytes_out 0 127922 bytes_in 0 127922 station_ip 37.129.193.85 127922 port 242 127922 unique_id port 127922 remote_ip 10.8.0.146 127923 username zare 127923 mac 127923 bytes_out 0 127923 bytes_in 0 127923 station_ip 94.183.214.14 127923 port 228 127923 unique_id port 127923 remote_ip 10.8.0.18 127927 username zare 127927 mac 127927 bytes_out 0 127927 bytes_in 0 127927 station_ip 94.183.214.14 127927 port 229 127927 unique_id port 127927 remote_ip 10.8.0.18 127930 username mohammadjavad 127930 mac 127930 bytes_out 239645 127930 bytes_in 3829394 127930 station_ip 83.122.18.78 127930 port 145 127930 unique_id port 127930 remote_ip 10.8.1.146 127932 username hamidsalari 127932 mac 127932 bytes_out 0 127932 bytes_in 0 127932 station_ip 5.119.239.169 127932 port 219 127932 unique_id port 127936 username irannezhad 127936 mac 127936 bytes_out 0 127936 bytes_in 0 127936 station_ip 83.123.34.134 127936 port 239 127936 unique_id port 127936 remote_ip 10.8.0.182 127939 username irannezhad 127939 mac 127939 bytes_out 13424 127939 bytes_in 28705 127939 station_ip 83.123.34.134 127939 port 145 127939 unique_id port 127939 remote_ip 10.8.1.134 127940 username irannezhad 127940 mac 127940 bytes_out 0 127940 bytes_in 0 127940 station_ip 83.123.34.134 127940 port 239 127940 unique_id port 127940 remote_ip 10.8.0.182 127943 username forozande 127943 mac 127943 bytes_out 0 127943 bytes_in 0 127943 station_ip 37.129.180.171 127943 port 232 127943 unique_id port 127943 remote_ip 10.8.0.74 127951 username sedighe 127951 mac 127951 bytes_out 222948 127951 bytes_in 274300 127951 station_ip 37.129.193.85 127951 port 143 127951 unique_id port 127951 remote_ip 10.8.1.78 127952 username zare 127952 mac 127952 bytes_out 74700 127952 bytes_in 432931 127952 station_ip 94.183.214.14 127952 port 228 127952 unique_id port 127952 remote_ip 10.8.0.18 127957 username zare 127957 mac 127957 bytes_out 0 127957 bytes_in 0 127957 station_ip 94.183.214.14 127957 port 241 127957 unique_id port 127957 remote_ip 10.8.0.18 127958 username mahdiyehalizadeh 127958 mac 127958 bytes_out 128256 127958 bytes_in 1550739 127958 station_ip 83.123.239.155 127958 port 240 127958 unique_id port 127958 remote_ip 10.8.0.82 127959 username mohammadjavad 127959 mac 127959 bytes_out 0 127959 bytes_in 0 127959 station_ip 83.123.165.166 127959 port 146 127959 unique_id port 127959 remote_ip 10.8.1.146 127895 remote_ip 5.5.5.16 127896 username irannezhad 127896 mac 127896 bytes_out 0 127896 bytes_in 0 127896 station_ip 83.123.237.58 127896 port 146 127896 unique_id port 127896 remote_ip 10.8.1.134 127897 username irannezhad 127897 mac 127897 bytes_out 0 127897 bytes_in 0 127897 station_ip 83.123.237.58 127897 port 146 127897 unique_id port 127897 remote_ip 10.8.1.134 127898 username irannezhad 127898 mac 127898 bytes_out 0 127898 bytes_in 0 127898 station_ip 83.123.237.58 127898 port 146 127898 unique_id port 127898 remote_ip 10.8.1.134 127899 username mansur 127899 mac 127899 bytes_out 0 127899 bytes_in 0 127899 station_ip 5.119.205.158 127899 port 143 127899 unique_id port 127899 remote_ip 10.8.1.194 127900 username moradi 127900 mac 127900 bytes_out 44628 127900 bytes_in 96296 127900 station_ip 46.225.215.19 127900 port 228 127900 unique_id port 127900 remote_ip 10.8.0.250 127904 username irannezhad 127904 mac 127904 bytes_out 0 127904 bytes_in 0 127904 station_ip 83.123.34.134 127904 port 239 127904 unique_id port 127904 remote_ip 10.8.0.182 127906 username amin.saeedi 127906 unique_id port 127906 terminate_cause User-Request 127906 bytes_out 2643316 127906 bytes_in 41403941 127906 station_ip 31.59.45.214 127906 port 15730121 127906 nas_port_type Virtual 127906 remote_ip 5.5.5.22 127908 username hamidehfatemi 127908 mac 127908 bytes_out 0 127908 bytes_in 0 127908 station_ip 83.123.227.210 127908 port 143 127908 unique_id port 127908 remote_ip 10.8.1.214 127909 username hosseine 127909 kill_reason Another user logged on this global unique id 127909 mac 127909 bytes_out 0 127909 bytes_in 0 127909 station_ip 83.123.45.191 127909 port 141 127909 unique_id port 127909 remote_ip 10.8.1.190 127910 username hamidehfatemi 127910 mac 127910 bytes_out 232054 127910 bytes_in 3357853 127910 station_ip 83.123.227.210 127910 port 143 127910 unique_id port 127910 remote_ip 10.8.1.214 127912 username malekpoir 127912 kill_reason Another user logged on this global unique id 127912 mac 127912 bytes_out 0 127912 bytes_in 0 127912 station_ip 5.119.49.133 127912 port 237 127912 unique_id port 127914 username jamali 127914 mac 127914 bytes_out 0 127914 bytes_in 0 127914 station_ip 5.119.104.252 127914 port 234 127914 unique_id port 127914 remote_ip 10.8.0.150 127918 username zare 127918 mac 127918 bytes_out 0 127918 bytes_in 0 127918 station_ip 94.183.214.14 127918 port 229 127918 unique_id port 127918 remote_ip 10.8.0.18 127919 username zare 127919 mac 127919 bytes_out 0 127919 bytes_in 0 127919 station_ip 94.183.214.14 127919 port 229 127919 unique_id port 127919 remote_ip 10.8.0.18 127921 username zare 127921 mac 127921 bytes_out 0 127921 bytes_in 0 127921 station_ip 94.183.214.14 127921 port 228 127921 unique_id port 127921 remote_ip 10.8.0.18 127925 username rezasekonji 127925 kill_reason Relative expiration date has reached 127925 mac 127925 bytes_out 0 127925 bytes_in 0 127925 station_ip 83.122.116.213 127925 port 229 127925 unique_id port 127929 username forozande 127929 mac 127929 bytes_out 246787 127929 bytes_in 2797184 127929 station_ip 83.122.250.171 127929 port 228 127929 unique_id port 127929 remote_ip 10.8.0.74 127931 username zare 127931 mac 127931 bytes_out 0 127931 bytes_in 0 127931 station_ip 94.183.214.14 127931 port 228 127931 unique_id port 127931 remote_ip 10.8.0.18 127933 username zare 127933 mac 127933 bytes_out 23263 127933 bytes_in 74038 127933 station_ip 94.183.214.14 127933 port 228 127933 unique_id port 127933 remote_ip 10.8.0.18 127937 username irannezhad 127937 mac 127937 bytes_out 0 127937 bytes_in 0 127937 station_ip 83.123.34.134 127937 port 232 127937 unique_id port 127937 remote_ip 10.8.0.182 127938 username moradi 127938 mac 127938 bytes_out 0 127938 bytes_in 0 127938 station_ip 83.123.108.95 127938 port 241 127938 unique_id port 127941 username irannezhad 127941 mac 127941 bytes_out 0 127941 bytes_in 0 127941 station_ip 83.123.34.134 127941 port 145 127941 unique_id port 127941 remote_ip 10.8.1.134 127942 username irannezhad 127942 mac 127942 bytes_out 0 127942 bytes_in 0 127942 station_ip 83.123.34.134 127942 port 145 127942 unique_id port 127942 remote_ip 10.8.1.134 127944 username irannezhad 127944 mac 127944 bytes_out 0 127944 bytes_in 0 127944 station_ip 83.123.34.134 127944 port 145 127944 unique_id port 127944 remote_ip 10.8.1.134 127948 username irannezhad 127948 mac 127948 bytes_out 0 127948 bytes_in 0 127948 station_ip 83.123.34.134 127948 port 145 127948 unique_id port 127948 remote_ip 10.8.1.134 127956 username zare 127956 mac 127956 bytes_out 0 127956 bytes_in 0 127956 station_ip 94.183.214.14 127956 port 241 127956 unique_id port 127956 remote_ip 10.8.0.18 127961 username afarin1 127961 kill_reason Another user logged on this global unique id 127961 mac 127961 bytes_out 0 127961 bytes_in 0 127961 station_ip 37.129.119.11 127961 port 228 127961 unique_id port 127961 remote_ip 10.8.0.118 127965 username mosi 127965 mac 127965 bytes_out 0 127965 bytes_in 0 127965 station_ip 37.44.59.180 127965 port 239 127965 unique_id port 127965 remote_ip 10.8.0.138 127969 username sedighe 127969 mac 127969 bytes_out 11793 127969 bytes_in 19013 127969 station_ip 37.129.193.85 127969 port 143 127969 unique_id port 127969 remote_ip 10.8.1.78 127972 username zare 127972 mac 127972 bytes_out 0 127972 bytes_in 0 127972 station_ip 94.183.214.14 127972 port 241 127972 unique_id port 127972 remote_ip 10.8.0.18 127974 username irannezhad 127974 kill_reason Maximum check online fails reached 127974 mac 127974 bytes_out 0 127974 bytes_in 0 127974 station_ip 83.123.34.134 127974 port 146 127974 unique_id port 127979 username aminvpn 127979 unique_id port 127979 terminate_cause User-Request 127979 bytes_out 11211170 127979 bytes_in 434731606 127979 station_ip 31.57.130.45 127979 port 15730115 127979 nas_port_type Virtual 127979 remote_ip 5.5.5.8 127980 username zare 127980 mac 127980 bytes_out 0 127980 bytes_in 0 127980 station_ip 94.183.214.14 127980 port 239 127980 unique_id port 127980 remote_ip 10.8.0.18 127981 username kordestani 127981 mac 127981 bytes_out 26815 127981 bytes_in 42726 127981 station_ip 37.129.196.97 127981 port 241 127981 unique_id port 127981 remote_ip 10.8.0.134 127983 username zare 127983 mac 127983 bytes_out 0 127983 bytes_in 0 127983 station_ip 94.183.214.14 127983 port 241 127983 unique_id port 127983 remote_ip 10.8.0.18 127984 username irannezhad 127984 mac 127984 bytes_out 0 127984 bytes_in 0 127984 station_ip 83.123.34.134 127984 port 229 127984 unique_id port 127984 remote_ip 10.8.0.182 127986 username barzegar 127986 kill_reason Another user logged on this global unique id 127986 mac 127986 bytes_out 0 127986 bytes_in 0 127986 station_ip 5.120.110.241 127986 port 232 127986 unique_id port 127987 username zare 127987 mac 127987 bytes_out 0 127987 bytes_in 0 127987 station_ip 94.183.214.14 127953 username moradi 127953 mac 127953 bytes_out 0 127953 bytes_in 0 127953 station_ip 83.123.108.95 127953 port 234 127953 unique_id port 127953 remote_ip 10.8.0.250 127954 username zare 127954 mac 127954 bytes_out 0 127954 bytes_in 0 127954 station_ip 94.183.214.14 127954 port 241 127954 unique_id port 127954 remote_ip 10.8.0.18 127955 username barzegar 127955 mac 127955 bytes_out 161376 127955 bytes_in 459389 127955 station_ip 5.120.110.241 127955 port 232 127955 unique_id port 127955 remote_ip 10.8.0.234 127960 username hamidsalari1 127960 mac 127960 bytes_out 1209438 127960 bytes_in 18470784 127960 station_ip 37.129.98.239 127960 port 223 127960 unique_id port 127960 remote_ip 10.8.0.226 127962 username amir 127962 mac 127962 bytes_out 0 127962 bytes_in 0 127962 station_ip 46.225.232.199 127962 port 229 127962 unique_id port 127962 remote_ip 10.8.0.50 127963 username sedighe 127963 mac 127963 bytes_out 0 127963 bytes_in 0 127963 station_ip 37.129.193.85 127963 port 143 127963 unique_id port 127963 remote_ip 10.8.1.78 127964 username barzegar 127964 kill_reason Another user logged on this global unique id 127964 mac 127964 bytes_out 0 127964 bytes_in 0 127964 station_ip 5.120.110.241 127964 port 232 127964 unique_id port 127964 remote_ip 10.8.0.234 127968 username yahodi 127968 mac 127968 bytes_out 0 127968 bytes_in 0 127968 station_ip 83.122.200.194 127968 port 147 127968 unique_id port 127968 remote_ip 10.8.1.218 127970 username hosseine 127970 kill_reason Another user logged on this global unique id 127970 mac 127970 bytes_out 0 127970 bytes_in 0 127970 station_ip 83.123.45.191 127970 port 141 127970 unique_id port 127973 username irannezhad 127973 mac 127973 bytes_out 10324 127973 bytes_in 18742 127973 station_ip 83.123.34.134 127973 port 229 127973 unique_id port 127973 remote_ip 10.8.0.182 127975 username kordestani 127975 mac 127975 bytes_out 0 127975 bytes_in 0 127975 station_ip 37.129.196.97 127975 port 242 127975 unique_id port 127975 remote_ip 10.8.0.134 127977 username sedighe 127977 mac 127977 bytes_out 4312 127977 bytes_in 8933 127977 station_ip 37.129.193.85 127977 port 143 127977 unique_id port 127977 remote_ip 10.8.1.78 127985 username zare 127985 mac 127985 bytes_out 0 127985 bytes_in 0 127985 station_ip 94.183.214.14 127985 port 241 127985 unique_id port 127985 remote_ip 10.8.0.18 127988 username zare 127988 mac 127988 bytes_out 0 127988 bytes_in 0 127988 station_ip 94.183.214.14 127988 port 229 127988 unique_id port 127988 remote_ip 10.8.0.18 127990 username zare 127990 mac 127990 bytes_out 0 127990 bytes_in 0 127990 station_ip 94.183.214.14 127990 port 233 127990 unique_id port 127990 remote_ip 10.8.0.18 127994 username mosi 127994 kill_reason Another user logged on this global unique id 127994 mac 127994 bytes_out 0 127994 bytes_in 0 127994 station_ip 37.44.59.180 127994 port 234 127994 unique_id port 127994 remote_ip 10.8.0.138 127997 username zare 127997 mac 127997 bytes_out 0 127997 bytes_in 0 127997 station_ip 94.183.214.14 127997 port 233 127997 unique_id port 127997 remote_ip 10.8.0.18 128004 username mosi 128004 kill_reason Another user logged on this global unique id 128004 mac 128004 bytes_out 0 128004 bytes_in 0 128004 station_ip 37.44.59.180 128004 port 234 128004 unique_id port 128005 username zare 128005 mac 128005 bytes_out 137797 128005 bytes_in 66706 128005 station_ip 94.183.214.14 128005 port 233 128005 unique_id port 127966 username irannezhad 127966 mac 127966 bytes_out 0 127966 bytes_in 0 127966 station_ip 83.123.34.134 127966 port 229 127966 unique_id port 127966 remote_ip 10.8.0.182 127967 username mosi 127967 mac 127967 bytes_out 2336 127967 bytes_in 4659 127967 station_ip 37.44.59.180 127967 port 243 127967 unique_id port 127967 remote_ip 10.8.0.138 127971 username moradi 127971 mac 127971 bytes_out 1761854 127971 bytes_in 39119057 127971 station_ip 83.123.108.95 127971 port 234 127971 unique_id port 127971 remote_ip 10.8.0.250 127976 username barzegar 127976 kill_reason Another user logged on this global unique id 127976 mac 127976 bytes_out 0 127976 bytes_in 0 127976 station_ip 5.120.110.241 127976 port 232 127976 unique_id port 127978 username hamidsalari1 127978 mac 127978 bytes_out 24679 127978 bytes_in 30327 127978 station_ip 37.129.98.239 127978 port 145 127978 unique_id port 127978 remote_ip 10.8.1.170 127982 username amir 127982 mac 127982 bytes_out 48267 127982 bytes_in 508462 127982 station_ip 46.225.232.199 127982 port 242 127982 unique_id port 127982 remote_ip 10.8.0.50 127989 username khademi 127989 mac 127989 bytes_out 0 127989 bytes_in 0 127989 station_ip 113.203.20.65 127989 port 233 127989 unique_id port 127991 username zare 127991 mac 127991 bytes_out 0 127991 bytes_in 0 127991 station_ip 94.183.214.14 127991 port 233 127991 unique_id port 127991 remote_ip 10.8.0.18 127995 username afarin1 127995 kill_reason Another user logged on this global unique id 127995 mac 127995 bytes_out 0 127995 bytes_in 0 127995 station_ip 37.129.119.11 127995 port 228 127995 unique_id port 127996 username zare 127996 mac 127996 bytes_out 0 127996 bytes_in 0 127996 station_ip 94.183.214.14 127996 port 233 127996 unique_id port 127996 remote_ip 10.8.0.18 127999 username khalili 127999 mac 127999 bytes_out 0 127999 bytes_in 0 127999 station_ip 5.119.142.28 127999 port 137 127999 unique_id port 128001 username amir 128001 mac 128001 bytes_out 0 128001 bytes_in 0 128001 station_ip 46.225.232.199 128001 port 242 128001 unique_id port 128001 remote_ip 10.8.0.50 128002 username yahodi 128002 mac 128002 bytes_out 1886247 128002 bytes_in 4992883 128002 station_ip 83.122.249.202 128002 port 137 128002 unique_id port 128002 remote_ip 10.8.1.218 128006 username barzegar 128006 kill_reason Another user logged on this global unique id 128006 mac 128006 bytes_out 0 128006 bytes_in 0 128006 station_ip 5.120.110.241 128006 port 232 128006 unique_id port 128008 username malekpoir 128008 kill_reason Another user logged on this global unique id 128008 mac 128008 bytes_out 0 128008 bytes_in 0 128008 station_ip 5.119.49.133 128008 port 237 128008 unique_id port 128010 username amin.saeedi 128010 unique_id port 128010 terminate_cause User-Request 128010 bytes_out 284345 128010 bytes_in 6720176 128010 station_ip 31.59.45.214 128010 port 15730124 128010 nas_port_type Virtual 128010 remote_ip 5.5.5.23 128014 username mansour 128014 mac 128014 bytes_out 0 128014 bytes_in 0 128014 station_ip 5.202.22.92 128014 port 231 128014 unique_id port 128014 remote_ip 10.8.0.30 128016 username zare 128016 mac 128016 bytes_out 0 128016 bytes_in 0 128016 station_ip 94.183.214.14 128016 port 231 128016 unique_id port 128016 remote_ip 10.8.0.18 128017 username barzegar 128017 mac 128017 bytes_out 0 128017 bytes_in 0 128017 station_ip 5.120.110.241 128017 port 232 128017 unique_id port 128023 username zare 128023 mac 127987 port 229 127987 unique_id port 127987 remote_ip 10.8.0.18 127992 username zare 127992 mac 127992 bytes_out 0 127992 bytes_in 0 127992 station_ip 94.183.214.14 127992 port 233 127992 unique_id port 127992 remote_ip 10.8.0.18 127993 username zare 127993 mac 127993 bytes_out 0 127993 bytes_in 0 127993 station_ip 94.183.214.14 127993 port 233 127993 unique_id port 127993 remote_ip 10.8.0.18 127998 username zare 127998 mac 127998 bytes_out 0 127998 bytes_in 0 127998 station_ip 94.183.214.14 127998 port 233 127998 unique_id port 127998 remote_ip 10.8.0.18 128000 username barzegar 128000 kill_reason Another user logged on this global unique id 128000 mac 128000 bytes_out 0 128000 bytes_in 0 128000 station_ip 5.120.110.241 128000 port 232 128000 unique_id port 128003 username mohammadmahdi 128003 mac 128003 bytes_out 2888778 128003 bytes_in 11723728 128003 station_ip 5.119.84.141 128003 port 240 128003 unique_id port 128003 remote_ip 10.8.0.54 128009 username amir 128009 mac 128009 bytes_out 0 128009 bytes_in 0 128009 station_ip 46.225.232.199 128009 port 240 128009 unique_id port 128009 remote_ip 10.8.0.50 128011 username forozande 128011 kill_reason Another user logged on this global unique id 128011 mac 128011 bytes_out 0 128011 bytes_in 0 128011 station_ip 83.123.171.82 128011 port 223 128011 unique_id port 128011 remote_ip 10.8.0.74 128012 username zare 128012 mac 128012 bytes_out 50227 128012 bytes_in 314075 128012 station_ip 94.183.214.14 128012 port 233 128012 unique_id port 128012 remote_ip 10.8.0.18 128013 username afarin1 128013 kill_reason Another user logged on this global unique id 128013 mac 128013 bytes_out 0 128013 bytes_in 0 128013 station_ip 37.129.119.11 128013 port 228 128013 unique_id port 128018 username zare 128018 mac 128018 bytes_out 0 128018 bytes_in 0 128018 station_ip 94.183.214.14 128018 port 231 128018 unique_id port 128018 remote_ip 10.8.0.18 128020 username forozande 128020 kill_reason Another user logged on this global unique id 128020 mac 128020 bytes_out 0 128020 bytes_in 0 128020 station_ip 83.123.171.82 128020 port 223 128020 unique_id port 128022 username amir 128022 mac 128022 bytes_out 0 128022 bytes_in 0 128022 station_ip 46.225.232.199 128022 port 233 128022 unique_id port 128022 remote_ip 10.8.0.50 128024 username zare 128024 mac 128024 bytes_out 0 128024 bytes_in 0 128024 station_ip 94.183.214.14 128024 port 231 128024 unique_id port 128024 remote_ip 10.8.0.18 128025 username alipour 128025 mac 128025 bytes_out 1485927 128025 bytes_in 9482867 128025 station_ip 113.203.51.73 128025 port 238 128025 unique_id port 128025 remote_ip 10.8.0.102 128028 username zare 128028 mac 128028 bytes_out 0 128028 bytes_in 0 128028 station_ip 94.183.214.14 128028 port 231 128028 unique_id port 128028 remote_ip 10.8.0.18 128031 username barzegar 128031 kill_reason Maximum check online fails reached 128031 mac 128031 bytes_out 0 128031 bytes_in 0 128031 station_ip 5.120.110.241 128031 port 147 128031 unique_id port 128036 username zare 128036 kill_reason Maximum check online fails reached 128036 mac 128036 bytes_out 0 128036 bytes_in 0 128036 station_ip 94.183.214.14 128036 port 148 128036 unique_id port 128037 username alihosseini1 128037 kill_reason Another user logged on this global unique id 128037 mac 128037 bytes_out 0 128037 bytes_in 0 128037 station_ip 5.119.7.2 128037 port 241 128037 unique_id port 128037 remote_ip 10.8.0.166 128042 username barzegar 128042 mac 128042 bytes_out 0 128005 remote_ip 10.8.0.18 128007 username sedighe 128007 mac 128007 bytes_out 49498 128007 bytes_in 71282 128007 station_ip 37.129.193.85 128007 port 143 128007 unique_id port 128007 remote_ip 10.8.1.78 128015 username zare 128015 mac 128015 bytes_out 0 128015 bytes_in 0 128015 station_ip 94.183.214.14 128015 port 240 128015 unique_id port 128015 remote_ip 10.8.0.18 128019 username sedighe 128019 mac 128019 bytes_out 16553 128019 bytes_in 81685 128019 station_ip 37.129.193.85 128019 port 143 128019 unique_id port 128019 remote_ip 10.8.1.78 128021 username kordestani 128021 mac 128021 bytes_out 66680 128021 bytes_in 83116 128021 station_ip 37.129.196.97 128021 port 239 128021 unique_id port 128021 remote_ip 10.8.0.134 128029 username khademi 128029 kill_reason Another user logged on this global unique id 128029 mac 128029 bytes_out 0 128029 bytes_in 0 128029 station_ip 113.203.20.65 128029 port 229 128029 unique_id port 128029 remote_ip 10.8.0.10 128033 username zare 128033 mac 128033 bytes_out 0 128033 bytes_in 0 128033 station_ip 94.183.214.14 128033 port 148 128033 unique_id port 128033 remote_ip 10.8.1.58 128035 username amir 128035 mac 128035 bytes_out 0 128035 bytes_in 0 128035 station_ip 46.225.232.199 128035 port 233 128035 unique_id port 128035 remote_ip 10.8.0.50 128038 username zare 128038 mac 128038 bytes_out 0 128038 bytes_in 0 128038 station_ip 94.183.214.14 128038 port 149 128038 unique_id port 128038 remote_ip 10.8.1.58 128040 username mirzaei 128040 mac 128040 bytes_out 0 128040 bytes_in 0 128040 station_ip 5.120.116.75 128040 port 221 128040 unique_id port 128041 username zare 128041 mac 128041 bytes_out 0 128041 bytes_in 0 128041 station_ip 94.183.214.14 128041 port 221 128041 unique_id port 128041 remote_ip 10.8.0.18 128044 username mosi 128044 kill_reason Another user logged on this global unique id 128044 mac 128044 bytes_out 0 128044 bytes_in 0 128044 station_ip 37.44.59.180 128044 port 234 128044 unique_id port 128046 username zare 128046 mac 128046 bytes_out 0 128046 bytes_in 0 128046 station_ip 94.183.214.14 128046 port 231 128046 unique_id port 128046 remote_ip 10.8.0.18 128047 username zare 128047 mac 128047 bytes_out 0 128047 bytes_in 0 128047 station_ip 94.183.214.14 128047 port 231 128047 unique_id port 128047 remote_ip 10.8.0.18 128051 username zare 128051 mac 128051 bytes_out 0 128051 bytes_in 0 128051 station_ip 94.183.214.14 128051 port 239 128051 unique_id port 128051 remote_ip 10.8.0.18 128053 username barzegar 128053 mac 128053 bytes_out 0 128053 bytes_in 0 128053 station_ip 5.120.110.241 128053 port 145 128053 unique_id port 128053 remote_ip 10.8.1.174 128054 username zare 128054 mac 128054 bytes_out 0 128054 bytes_in 0 128054 station_ip 94.183.214.14 128054 port 240 128054 unique_id port 128054 remote_ip 10.8.0.18 128058 username mohammadmahdi 128058 mac 128058 bytes_out 7804216 128058 bytes_in 35077391 128058 station_ip 5.120.63.106 128058 port 232 128058 unique_id port 128058 remote_ip 10.8.0.54 128059 username zare 128059 mac 128059 bytes_out 0 128059 bytes_in 0 128059 station_ip 94.183.214.14 128059 port 232 128059 unique_id port 128059 remote_ip 10.8.0.18 128066 username afarin1 128066 mac 128066 bytes_out 0 128066 bytes_in 0 128066 station_ip 37.129.119.11 128066 port 228 128066 unique_id port 128076 username yahodi 128076 kill_reason Another user logged on this global unique id 128023 bytes_out 0 128023 bytes_in 0 128023 station_ip 94.183.214.14 128023 port 231 128023 unique_id port 128023 remote_ip 10.8.0.18 128026 username mosi 128026 kill_reason Another user logged on this global unique id 128026 mac 128026 bytes_out 0 128026 bytes_in 0 128026 station_ip 37.44.59.180 128026 port 234 128026 unique_id port 128027 username barzegar 128027 mac 128027 bytes_out 0 128027 bytes_in 0 128027 station_ip 5.120.110.241 128027 port 147 128027 unique_id port 128027 remote_ip 10.8.1.174 128030 username mohammadjavad 128030 mac 128030 bytes_out 164877 128030 bytes_in 118766 128030 station_ip 83.123.45.100 128030 port 148 128030 unique_id port 128030 remote_ip 10.8.1.146 128032 username zare 128032 mac 128032 bytes_out 26060 128032 bytes_in 76727 128032 station_ip 94.183.214.14 128032 port 148 128032 unique_id port 128032 remote_ip 10.8.1.58 128034 username zare 128034 mac 128034 bytes_out 15851 128034 bytes_in 58703 128034 station_ip 94.183.214.14 128034 port 148 128034 unique_id port 128034 remote_ip 10.8.1.58 128039 username zare 128039 mac 128039 bytes_out 0 128039 bytes_in 0 128039 station_ip 94.183.214.14 128039 port 149 128039 unique_id port 128039 remote_ip 10.8.1.58 128043 username zare 128043 mac 128043 bytes_out 0 128043 bytes_in 0 128043 station_ip 94.183.214.14 128043 port 239 128043 unique_id port 128043 remote_ip 10.8.0.18 128049 username yahodi 128049 kill_reason Another user logged on this global unique id 128049 mac 128049 bytes_out 0 128049 bytes_in 0 128049 station_ip 83.122.249.202 128049 port 137 128049 unique_id port 128049 remote_ip 10.8.1.218 128052 username zare 128052 mac 128052 bytes_out 0 128052 bytes_in 0 128052 station_ip 94.183.214.14 128052 port 240 128052 unique_id port 128052 remote_ip 10.8.0.18 128056 username alihosseini1 128056 mac 128056 bytes_out 0 128056 bytes_in 0 128056 station_ip 5.119.7.2 128056 port 241 128056 unique_id port 128060 username zare 128060 mac 128060 bytes_out 0 128060 bytes_in 0 128060 station_ip 94.183.214.14 128060 port 232 128060 unique_id port 128060 remote_ip 10.8.0.18 128061 username barzegar 128061 mac 128061 bytes_out 3007 128061 bytes_in 5479 128061 station_ip 5.120.110.241 128061 port 145 128061 unique_id port 128061 remote_ip 10.8.1.174 128064 username zare 128064 mac 128064 bytes_out 29640 128064 bytes_in 35859 128064 station_ip 94.183.214.14 128064 port 232 128064 unique_id port 128064 remote_ip 10.8.0.18 128067 username zare 128067 mac 128067 bytes_out 0 128067 bytes_in 0 128067 station_ip 94.183.214.14 128067 port 228 128067 unique_id port 128067 remote_ip 10.8.0.18 128068 username zare 128068 mac 128068 bytes_out 0 128068 bytes_in 0 128068 station_ip 94.183.214.14 128068 port 228 128068 unique_id port 128068 remote_ip 10.8.0.18 128073 username zare 128073 mac 128073 bytes_out 0 128073 bytes_in 0 128073 station_ip 94.183.214.14 128073 port 228 128073 unique_id port 128073 remote_ip 10.8.0.18 128075 username barzegar 128075 mac 128075 bytes_out 716409 128075 bytes_in 431020 128075 station_ip 5.120.110.241 128075 port 145 128075 unique_id port 128075 remote_ip 10.8.1.174 128077 username mohammadmahdi 128077 mac 128077 bytes_out 0 128077 bytes_in 0 128077 station_ip 5.120.63.106 128077 port 241 128077 unique_id port 128077 remote_ip 10.8.0.54 128080 username zare 128080 mac 128080 bytes_out 0 128080 bytes_in 0 128080 station_ip 94.183.214.14 128042 bytes_in 0 128042 station_ip 5.120.110.241 128042 port 231 128042 unique_id port 128042 remote_ip 10.8.0.234 128045 username zare 128045 mac 128045 bytes_out 0 65041 username arezoo 65041 kill_reason Maximum check online fails reached 65041 mac 5.237.77.174:49298: Unknown host 65041 bytes_out 0 65041 bytes_in 0 65041 station_ip 5.237.77.174:49298 65041 port 1017 65041 unique_id port 128045 bytes_in 0 128045 station_ip 94.183.214.14 128045 port 231 128045 unique_id port 128045 remote_ip 10.8.0.18 128048 username zare 128048 mac 128048 bytes_out 0 128048 bytes_in 0 128048 station_ip 94.183.214.14 128048 port 239 128048 unique_id port 128048 remote_ip 10.8.0.18 128050 username hamidsalari1 128050 mac 128050 bytes_out 0 128050 bytes_in 0 128050 station_ip 37.129.230.65 128050 port 145 128050 unique_id port 128050 remote_ip 10.8.1.170 128055 username zare 128055 mac 128055 bytes_out 0 128055 bytes_in 0 128055 station_ip 94.183.214.14 128055 port 240 128055 unique_id port 128055 remote_ip 10.8.0.18 128057 username malekpoir 128057 mac 128057 bytes_out 0 128057 bytes_in 0 128057 station_ip 5.119.49.133 128057 port 237 128057 unique_id port 128062 username zare 128062 mac 128062 bytes_out 0 128062 bytes_in 0 128062 station_ip 94.183.214.14 128062 port 232 128062 unique_id port 128062 remote_ip 10.8.0.18 128063 username mohammadmahdi 128063 mac 128063 bytes_out 0 128063 bytes_in 0 128063 station_ip 5.120.63.106 128063 port 237 128063 unique_id port 128063 remote_ip 10.8.0.54 128065 username mosi 128065 kill_reason Another user logged on this global unique id 128065 mac 128065 bytes_out 0 128065 bytes_in 0 128065 station_ip 37.44.59.180 128065 port 234 128065 unique_id port 128069 username zare 128069 mac 128069 bytes_out 0 128069 bytes_in 0 128069 station_ip 94.183.214.14 128069 port 228 128069 unique_id port 128069 remote_ip 10.8.0.18 128070 username jafari 128070 kill_reason Another user logged on this global unique id 128070 mac 128070 bytes_out 0 128070 bytes_in 0 128070 station_ip 92.114.76.164 128070 port 239 128070 unique_id port 128070 remote_ip 10.8.0.242 128071 username zare 128071 mac 128071 bytes_out 0 128071 bytes_in 0 128071 station_ip 94.183.214.14 128071 port 228 128071 unique_id port 128071 remote_ip 10.8.0.18 128072 username zare 128072 mac 128072 bytes_out 0 128072 bytes_in 0 128072 station_ip 94.183.214.14 128072 port 228 128072 unique_id port 128072 remote_ip 10.8.0.18 128074 username zare 128074 mac 128074 bytes_out 0 128074 bytes_in 0 128074 station_ip 94.183.214.14 128074 port 228 128074 unique_id port 128074 remote_ip 10.8.0.18 128079 username sabaghnezhad 128079 mac 128079 bytes_out 0 128079 bytes_in 0 128079 station_ip 83.122.141.221 128079 port 233 128079 unique_id port 128079 remote_ip 10.8.0.186 128082 username barzegar 128082 mac 128082 bytes_out 3678 128082 bytes_in 6282 128082 station_ip 5.120.110.241 128082 port 145 128082 unique_id port 128082 remote_ip 10.8.1.174 128085 username jafari 128085 kill_reason Another user logged on this global unique id 128085 mac 128085 bytes_out 0 128085 bytes_in 0 128085 station_ip 92.114.76.164 128085 port 239 128085 unique_id port 128090 username khademi 128090 kill_reason Another user logged on this global unique id 128090 mac 128090 bytes_out 0 128090 bytes_in 0 128090 station_ip 113.203.20.65 128090 port 229 128090 unique_id port 128095 username zare 128095 mac 128095 bytes_out 0 128095 bytes_in 0 128076 mac 65085 username arezoo 65085 kill_reason Maximum check online fails reached 65085 mac 5.237.77.174:49203: Unknown host 65085 bytes_out 0 65085 bytes_in 0 65085 station_ip 5.237.77.174:49203 65085 port 1017 65085 unique_id port 128076 bytes_out 0 128076 bytes_in 0 128076 station_ip 83.122.249.202 128076 port 137 128076 unique_id port 128078 username khademi 128078 kill_reason Another user logged on this global unique id 128078 mac 128078 bytes_out 0 128078 bytes_in 0 128078 station_ip 113.203.20.65 128078 port 229 128078 unique_id port 128084 username ahmadipour 128084 kill_reason Relative expiration date has reached 128084 unique_id port 128084 bytes_out 0 128084 bytes_in 0 128084 station_ip 37.129.247.174 128084 port 15730126 128084 nas_port_type Virtual 128088 username yahodi 128088 mac 128088 bytes_out 0 128088 bytes_in 0 128088 station_ip 83.122.249.202 128088 port 137 128088 unique_id port 128089 username sedighe 128089 mac 128089 bytes_out 1933 128089 bytes_in 4259 128089 station_ip 37.129.193.85 128089 port 143 128089 unique_id port 128089 remote_ip 10.8.1.78 128096 username zare 128096 mac 128096 bytes_out 0 128096 bytes_in 0 128096 station_ip 94.183.214.14 128096 port 237 128096 unique_id port 128096 remote_ip 10.8.0.18 128097 username zare 128097 mac 128097 bytes_out 0 128097 bytes_in 0 128097 station_ip 94.183.214.14 128097 port 237 128097 unique_id port 128097 remote_ip 10.8.0.18 128098 username sedighe 128098 mac 128098 bytes_out 0 128098 bytes_in 0 128098 station_ip 37.129.193.85 128098 port 137 128098 unique_id port 128098 remote_ip 10.8.1.78 128100 username zare 128100 mac 128100 bytes_out 0 128100 bytes_in 0 128100 station_ip 94.183.214.14 128100 port 237 128100 unique_id port 128100 remote_ip 10.8.0.18 128103 username zare 128103 mac 128103 bytes_out 0 128103 bytes_in 0 128103 station_ip 94.183.214.14 128103 port 237 128103 unique_id port 128103 remote_ip 10.8.0.18 128104 username sedighe 128104 mac 128104 bytes_out 5318 128104 bytes_in 7718 128104 station_ip 37.129.193.85 128104 port 137 128104 unique_id port 128104 remote_ip 10.8.1.78 128106 username mirzaei 128106 mac 128106 bytes_out 2950 128106 bytes_in 5042 128106 station_ip 5.120.116.75 128106 port 145 128106 unique_id port 128106 remote_ip 10.8.1.30 128108 username forozande 128108 mac 128108 bytes_out 0 128108 bytes_in 0 128108 station_ip 83.123.171.82 128108 port 223 128108 unique_id port 128110 username forozande 128110 mac 128110 bytes_out 0 128110 bytes_in 0 128110 station_ip 83.123.171.82 128110 port 238 128110 unique_id port 128110 remote_ip 10.8.0.74 128112 username saeed9658 128112 mac 128112 bytes_out 0 128112 bytes_in 0 128112 station_ip 5.120.17.83 128112 port 137 128112 unique_id port 128112 remote_ip 10.8.1.210 128115 username jafari 128115 kill_reason Another user logged on this global unique id 128115 mac 128115 bytes_out 0 128115 bytes_in 0 128115 station_ip 92.114.76.164 128115 port 239 128115 unique_id port 128117 username zare 128117 mac 128117 bytes_out 161630 128117 bytes_in 512612 128117 station_ip 94.183.214.14 128117 port 237 128117 unique_id port 128117 remote_ip 10.8.0.18 128120 username hamidsalari1 128120 mac 128120 bytes_out 364458 128120 bytes_in 2224988 128120 station_ip 37.129.230.65 128120 port 149 128120 unique_id port 128120 remote_ip 10.8.1.170 128123 username amir 128123 kill_reason Another user logged on this global unique id 128123 mac 128123 bytes_out 0 128080 port 150 128080 unique_id port 128080 remote_ip 10.8.1.58 128081 username zare 128081 mac 128081 bytes_out 0 128081 bytes_in 0 128081 station_ip 94.183.214.14 128081 port 150 128081 unique_id port 128081 remote_ip 10.8.1.58 128083 username zare 128083 mac 128083 bytes_out 0 128083 bytes_in 0 128083 station_ip 94.183.214.14 128083 port 150 128083 unique_id port 128083 remote_ip 10.8.1.58 128086 username sedighe 128086 mac 128086 bytes_out 105992 128086 bytes_in 133127 128086 station_ip 37.129.193.85 128086 port 143 128086 unique_id port 128086 remote_ip 10.8.1.78 128087 username zare 128087 mac 128087 bytes_out 0 128087 bytes_in 0 128087 station_ip 94.183.214.14 128087 port 150 128087 unique_id port 128087 remote_ip 10.8.1.58 128091 username zare 128091 mac 128091 bytes_out 0 128091 bytes_in 0 128091 station_ip 94.183.214.14 128091 port 143 128091 unique_id port 128091 remote_ip 10.8.1.58 128092 username zare 128092 mac 128092 bytes_out 17473 128092 bytes_in 67021 128092 station_ip 94.183.214.14 128092 port 237 128092 unique_id port 128092 remote_ip 10.8.0.18 128093 username aminvpn 128093 kill_reason Another user logged on this global unique id 128093 mac 128093 bytes_out 0 128093 bytes_in 0 128093 station_ip 5.119.89.2 128093 port 232 128093 unique_id port 128093 remote_ip 10.8.0.14 128094 username barzegar 128094 mac 128094 bytes_out 309338 128094 bytes_in 6216649 128094 station_ip 5.120.110.241 128094 port 145 128094 unique_id port 128094 remote_ip 10.8.1.174 128099 username khademi 128099 kill_reason Another user logged on this global unique id 128099 mac 128099 bytes_out 0 128099 bytes_in 0 128099 station_ip 113.203.20.65 128099 port 229 128099 unique_id port 128102 username forozande 128102 kill_reason Another user logged on this global unique id 128102 mac 128102 bytes_out 0 128102 bytes_in 0 128102 station_ip 83.123.171.82 128102 port 223 128102 unique_id port 128109 username mohammadmahdi 128109 kill_reason Another user logged on this global unique id 128109 mac 128109 bytes_out 0 128109 bytes_in 0 128109 station_ip 5.120.63.106 128109 port 228 128109 unique_id port 128109 remote_ip 10.8.0.54 128111 username barzegar 128111 mac 128111 bytes_out 32671 128111 bytes_in 43220 128111 station_ip 5.120.110.241 128111 port 143 128111 unique_id port 128111 remote_ip 10.8.1.174 128113 username barzegar 128113 mac 128113 bytes_out 0 128113 bytes_in 0 128113 station_ip 5.120.110.241 128113 port 137 128113 unique_id port 128113 remote_ip 10.8.1.174 128114 username saeed9658 128114 mac 128114 bytes_out 0 128114 bytes_in 0 128114 station_ip 5.120.17.83 128114 port 137 128114 unique_id port 128114 remote_ip 10.8.1.210 128116 username forozande 128116 mac 128116 bytes_out 363887 128116 bytes_in 144432 128116 station_ip 37.129.124.253 128116 port 223 128116 unique_id port 128116 remote_ip 10.8.0.74 128119 username aminvpn 128119 mac 128119 bytes_out 0 128119 bytes_in 0 128119 station_ip 5.119.89.2 128119 port 232 128119 unique_id port 128121 username sedighe 128121 mac 128121 bytes_out 21321 128121 bytes_in 34971 128121 station_ip 37.129.116.242 128121 port 150 128121 unique_id port 128121 remote_ip 10.8.1.78 128124 username hamidsalari1 128124 mac 128124 bytes_out 0 128124 bytes_in 0 128124 station_ip 37.129.230.65 128124 port 150 128124 unique_id port 128124 remote_ip 10.8.1.170 128128 username zare 128128 mac 128128 bytes_out 0 128128 bytes_in 0 128095 station_ip 94.183.214.14 128095 port 237 128095 unique_id port 128095 remote_ip 10.8.0.18 128101 username houshang 128101 mac 128101 bytes_out 0 128101 bytes_in 0 128101 station_ip 5.120.148.73 128101 port 241 128101 unique_id port 128101 remote_ip 10.8.0.22 128105 username mirzaei 128105 mac 128105 bytes_out 0 128105 bytes_in 0 128105 station_ip 5.120.116.75 128105 port 238 128105 unique_id port 128105 remote_ip 10.8.0.66 128107 username jafari 128107 kill_reason Another user logged on this global unique id 128107 mac 128107 bytes_out 0 128107 bytes_in 0 128107 station_ip 92.114.76.164 128107 port 239 128107 unique_id port 128118 username mohammadmahdi 128118 mac 128118 bytes_out 0 128118 bytes_in 0 128118 station_ip 5.120.63.106 128118 port 228 128118 unique_id port 128122 username mirzaei 128122 mac 128122 bytes_out 0 128122 bytes_in 0 128122 station_ip 5.114.82.49 128122 port 143 128122 unique_id port 128122 remote_ip 10.8.1.30 128125 username zare 128125 mac 128125 bytes_out 20096 128125 bytes_in 76148 128125 station_ip 94.183.214.14 128125 port 145 128125 unique_id port 128125 remote_ip 10.8.1.58 128126 username mirzaei 128126 mac 128126 bytes_out 1638 128126 bytes_in 4322 128126 station_ip 5.114.82.49 128126 port 232 128126 unique_id port 128126 remote_ip 10.8.0.66 128129 username jafari 128129 mac 128129 bytes_out 0 128129 bytes_in 0 128129 station_ip 92.114.76.164 128129 port 239 128129 unique_id port 128134 username forozande 128134 mac 128134 bytes_out 0 128134 bytes_in 0 128134 station_ip 83.122.221.105 128134 port 223 128134 unique_id port 128134 remote_ip 10.8.0.74 128136 username zare 128136 mac 128136 bytes_out 0 128136 bytes_in 0 128136 station_ip 94.183.214.14 128136 port 232 128136 unique_id port 128136 remote_ip 10.8.0.18 128140 username barzegar 128140 mac 128140 bytes_out 0 128140 bytes_in 0 128140 station_ip 5.120.110.241 128140 port 237 128140 unique_id port 128140 remote_ip 10.8.0.234 128144 username amir 128144 kill_reason Another user logged on this global unique id 128144 mac 128144 bytes_out 0 128144 bytes_in 0 128144 station_ip 46.225.232.199 128144 port 221 128144 unique_id port 128146 username mirzaei 128146 mac 128146 bytes_out 0 128146 bytes_in 0 128146 station_ip 5.113.200.252 128146 port 150 128146 unique_id port 128146 remote_ip 10.8.1.30 128147 username mohammadmahdi 128147 mac 128147 bytes_out 0 128147 bytes_in 0 128147 station_ip 5.120.63.106 128147 port 238 128147 unique_id port 128147 remote_ip 10.8.0.54 128148 username mirzaei 128148 mac 128148 bytes_out 0 128148 bytes_in 0 128148 station_ip 5.119.145.75 128148 port 241 128148 unique_id port 128148 remote_ip 10.8.0.66 128152 username zare 128152 mac 128152 bytes_out 0 128152 bytes_in 0 128152 station_ip 94.183.214.14 128152 port 223 128152 unique_id port 128152 remote_ip 10.8.0.18 128166 username amir 128166 mac 128166 bytes_out 0 128166 bytes_in 0 128166 station_ip 46.225.232.199 128166 port 221 128166 unique_id port 128166 remote_ip 10.8.0.50 128167 username kordestani 128167 mac 128167 bytes_out 2267970 128167 bytes_in 29359938 128167 station_ip 151.235.81.64 128167 port 233 128167 unique_id port 128167 remote_ip 10.8.0.134 128172 username sedighe 128172 mac 128172 bytes_out 47931 128172 bytes_in 92535 128172 station_ip 113.203.63.15 128172 port 151 128172 unique_id port 128172 remote_ip 10.8.1.78 128175 username sedighe 128123 bytes_in 0 128123 station_ip 46.225.232.199 128123 port 221 128123 unique_id port 128123 remote_ip 10.8.0.50 128127 username barzegar 128127 mac 128127 bytes_out 5010 128127 bytes_in 7578 128127 station_ip 5.120.110.241 128127 port 137 128127 unique_id port 128127 remote_ip 10.8.1.174 128131 username sedighe 128131 mac 65152 username arezoo 65152 kill_reason Maximum check online fails reached 65152 mac 5.237.77.174:49357: Unknown host 65152 bytes_out 0 65152 bytes_in 0 65152 station_ip 5.237.77.174:49357 65152 port 1017 65152 unique_id port 128131 bytes_out 5212 128131 bytes_in 11950 128131 station_ip 37.129.116.242 128131 port 143 128131 unique_id port 128131 remote_ip 10.8.1.78 128133 username sedighe 128133 mac 128133 bytes_out 2030 128133 bytes_in 4574 128133 station_ip 37.129.116.242 128133 port 137 128133 unique_id port 128133 remote_ip 10.8.1.78 128137 username mirzaei 128137 mac 128137 bytes_out 212508 128137 bytes_in 274331 128137 station_ip 5.113.200.252 128137 port 237 128137 unique_id port 128137 remote_ip 10.8.0.66 128139 username houshang 128139 mac 128139 bytes_out 1835837 128139 bytes_in 6123038 128139 station_ip 5.119.223.137 128139 port 137 128139 unique_id port 128139 remote_ip 10.8.1.70 128141 username sedighe 128141 mac 128141 bytes_out 20275 128141 bytes_in 24110 128141 station_ip 83.123.18.216 128141 port 143 128141 unique_id port 128141 remote_ip 10.8.1.78 128149 username hosseine 128149 kill_reason Another user logged on this global unique id 128149 mac 128149 bytes_out 0 128149 bytes_in 0 128149 station_ip 83.123.45.191 128149 port 141 128149 unique_id port 128150 username bcboard 128150 unique_id port 128150 terminate_cause User-Request 128150 bytes_out 71554 128150 bytes_in 1143740 128150 station_ip 113.203.65.252 128150 port 15730129 128150 nas_port_type Virtual 128150 remote_ip 5.5.5.47 128153 username mirzaei 128153 mac 128153 bytes_out 45509 128153 bytes_in 170553 128153 station_ip 5.119.145.75 128153 port 238 128153 unique_id port 128153 remote_ip 10.8.0.66 128154 username alihosseini1 128154 mac 128154 bytes_out 0 128154 bytes_in 0 128154 station_ip 5.120.132.34 128154 port 239 128154 unique_id port 128154 remote_ip 10.8.0.166 128156 username rezasekonji 128156 kill_reason Relative expiration date has reached 128156 mac 128156 bytes_out 0 128156 bytes_in 0 128156 station_ip 83.122.114.175 128156 port 239 128156 unique_id port 128161 username alihosseini1 128161 mac 128161 bytes_out 0 128161 bytes_in 0 128161 station_ip 5.120.132.34 128161 port 239 128161 unique_id port 128161 remote_ip 10.8.0.166 128163 username mohammadjavad 128163 mac 128163 bytes_out 0 128163 bytes_in 0 128163 station_ip 83.123.1.231 128163 port 137 128163 unique_id port 128163 remote_ip 10.8.1.146 128164 username amir 128164 mac 128164 bytes_out 0 128164 bytes_in 0 128164 station_ip 46.225.232.199 128164 port 221 128164 unique_id port 128165 username alihosseini1 128165 mac 128165 bytes_out 7314 128165 bytes_in 14389 128165 station_ip 5.120.132.34 128165 port 219 128165 unique_id port 128165 remote_ip 10.8.0.166 128170 username saeed9658 128170 kill_reason Another user logged on this global unique id 128170 mac 128170 bytes_out 0 128170 bytes_in 0 128170 station_ip 5.120.17.83 128170 port 149 128170 unique_id port 128170 remote_ip 10.8.1.210 128171 username aminvpn 128171 unique_id port 128171 terminate_cause Lost-Carrier 128171 bytes_out 173786 128171 bytes_in 1494980 128171 station_ip 109.125.128.116 128171 port 15730130 128171 nas_port_type Virtual 128128 station_ip 94.183.214.14 128128 port 232 128128 unique_id port 128128 remote_ip 10.8.0.18 128130 username zare 128130 mac 128130 bytes_out 0 128130 bytes_in 0 128130 station_ip 94.183.214.14 128130 port 232 128130 unique_id port 128130 remote_ip 10.8.0.18 128132 username zare 128132 kill_reason Maximum check online fails reached 128132 mac 128132 bytes_out 0 128132 bytes_in 0 128132 station_ip 94.183.214.14 128132 port 145 128132 unique_id port 128135 username barzegar 128135 mac 128135 bytes_out 2895 128135 bytes_in 5139 128135 station_ip 5.120.110.241 128135 port 238 128135 unique_id port 128135 remote_ip 10.8.0.234 128138 username barzegar 128138 mac 128138 bytes_out 0 128138 bytes_in 0 128138 station_ip 5.120.110.241 128138 port 237 128138 unique_id port 128138 remote_ip 10.8.0.234 128142 username hosseine 128142 kill_reason Another user logged on this global unique id 128142 mac 128142 bytes_out 0 128142 bytes_in 0 128142 station_ip 83.123.45.191 128142 port 141 128142 unique_id port 128143 username sedighe 128143 mac 128143 bytes_out 0 128143 bytes_in 0 128143 station_ip 83.123.18.216 128143 port 137 128143 unique_id port 128143 remote_ip 10.8.1.78 128145 username alihosseini1 128145 mac 128145 bytes_out 276198 128145 bytes_in 1528909 128145 station_ip 5.120.107.59 128145 port 143 128145 unique_id port 128145 remote_ip 10.8.1.106 128151 username zare 128151 mac 128151 bytes_out 0 128151 bytes_in 0 128151 station_ip 94.183.214.14 128151 port 223 128151 unique_id port 128151 remote_ip 10.8.0.18 128155 username hamid.e 128155 unique_id port 128155 terminate_cause User-Request 128155 bytes_out 3377801 128155 bytes_in 62798017 128155 station_ip 188.245.89.36 128155 port 15730125 128155 nas_port_type Virtual 128155 remote_ip 5.5.5.25 128157 username rezasekonji 128157 kill_reason Relative expiration date has reached 128157 mac 128157 bytes_out 0 128157 bytes_in 0 128157 station_ip 83.122.114.175 128157 port 239 128157 unique_id port 128158 username mirzaei 128158 mac 128158 bytes_out 45165 128158 bytes_in 39219 128158 station_ip 5.119.145.75 128158 port 223 128158 unique_id port 128158 remote_ip 10.8.0.66 128159 username mosi 128159 kill_reason Another user logged on this global unique id 128159 mac 128159 bytes_out 0 128159 bytes_in 0 128159 station_ip 37.44.59.180 128159 port 234 128159 unique_id port 128160 username hamidsalari 128160 mac 128160 bytes_out 0 128160 bytes_in 0 128160 station_ip 5.119.239.169 128160 port 219 128160 unique_id port 128160 remote_ip 10.8.0.230 128162 username amir 128162 kill_reason Another user logged on this global unique id 128162 mac 128162 bytes_out 0 128162 bytes_in 0 128162 station_ip 46.225.232.199 128162 port 221 128162 unique_id port 128168 username mirzaei 128168 mac 128168 bytes_out 0 128168 bytes_in 0 128168 station_ip 5.114.39.214 128168 port 143 128168 unique_id port 128168 remote_ip 10.8.1.30 128169 username forozande 128169 mac 128169 bytes_out 0 128169 bytes_in 0 128169 station_ip 83.123.217.134 128169 port 237 128169 unique_id port 128169 remote_ip 10.8.0.74 128178 username aminvpn 128178 mac 128178 bytes_out 0 128178 bytes_in 0 128178 station_ip 5.119.89.2 128178 port 237 128178 unique_id port 128178 remote_ip 10.8.0.14 128180 username saeed9658 128180 kill_reason Another user logged on this global unique id 128180 mac 128180 bytes_out 0 128180 bytes_in 0 128180 station_ip 5.120.17.83 128180 port 149 128180 unique_id port 128181 username forozande 128181 mac 128171 remote_ip 5.5.5.48 128173 username mohammadmahdi 128173 mac 128173 bytes_out 2550033 128173 bytes_in 37043059 128173 station_ip 5.120.63.106 128173 port 238 128173 unique_id port 128173 remote_ip 10.8.0.54 128174 username malekpoir 128174 mac 128174 bytes_out 2998025 128174 bytes_in 28762675 128174 station_ip 5.119.49.133 128174 port 240 128174 unique_id port 128174 remote_ip 10.8.0.58 128179 username alihosseini1 128179 mac 128179 bytes_out 0 128179 bytes_in 0 128179 station_ip 5.120.132.34 128179 port 228 128179 unique_id port 128179 remote_ip 10.8.0.166 128184 username mansur 128184 mac 128184 bytes_out 0 128184 bytes_in 0 128184 station_ip 5.119.205.158 128184 port 223 128184 unique_id port 128190 username aminvpn 128190 mac 128190 bytes_out 0 128190 bytes_in 0 128190 station_ip 5.119.89.2 128190 port 223 128190 unique_id port 128190 remote_ip 10.8.0.14 128192 username mohammadjavad 128192 mac 128192 bytes_out 642144 128192 bytes_in 10290062 128192 station_ip 37.129.157.56 128192 port 233 128192 unique_id port 128192 remote_ip 10.8.0.142 128194 username mansur 128194 mac 128194 bytes_out 0 128194 bytes_in 0 128194 station_ip 5.119.205.158 128194 port 137 128194 unique_id port 128194 remote_ip 10.8.1.194 128195 username mansur 128195 mac 128195 bytes_out 0 128195 bytes_in 0 128195 station_ip 5.119.205.158 128195 port 143 128195 unique_id port 128195 remote_ip 10.8.1.194 128204 username saeed9658 128204 kill_reason Another user logged on this global unique id 128204 mac 128204 bytes_out 0 128204 bytes_in 0 128204 station_ip 5.120.17.83 128204 port 149 128204 unique_id port 128205 username forozande 128205 mac 128205 bytes_out 0 128205 bytes_in 0 128205 station_ip 83.123.63.254 128205 port 223 128205 unique_id port 128205 remote_ip 10.8.0.74 128207 username mansur 128207 mac 128207 bytes_out 49750 128207 bytes_in 84092 128207 station_ip 5.119.205.158 128207 port 219 128207 unique_id port 128207 remote_ip 10.8.0.210 128208 username barzegar 128208 mac 128208 bytes_out 0 128208 bytes_in 0 128208 station_ip 5.120.91.112 128208 port 233 128208 unique_id port 128208 remote_ip 10.8.0.234 128209 username hashtadani3 128209 kill_reason Another user logged on this global unique id 128209 mac 128209 bytes_out 0 128209 bytes_in 0 128209 station_ip 83.122.60.8 128209 port 221 128209 unique_id port 128209 remote_ip 10.8.0.154 128213 username khademi 128213 kill_reason Another user logged on this global unique id 128213 mac 128213 bytes_out 0 128213 bytes_in 0 128213 station_ip 113.203.20.65 128213 port 229 128213 unique_id port 128214 username barzegar 128214 mac 128214 bytes_out 0 128214 bytes_in 0 128214 station_ip 5.120.91.112 128214 port 233 128214 unique_id port 128214 remote_ip 10.8.0.234 128217 username aminvpn 128217 mac 128217 bytes_out 0 128217 bytes_in 0 128217 station_ip 5.119.89.2 128217 port 233 128217 unique_id port 128217 remote_ip 10.8.0.14 128218 username yahodi 128218 mac 128218 bytes_out 0 128218 bytes_in 0 128218 station_ip 83.122.255.58 128218 port 137 128218 unique_id port 128218 remote_ip 10.8.1.218 128221 username sedighe 128221 mac 128221 bytes_out 39989 128221 bytes_in 63723 128221 station_ip 113.203.63.15 128221 port 231 128221 unique_id port 128221 remote_ip 10.8.0.146 128224 username aminvpn 128224 unique_id port 128224 terminate_cause Lost-Carrier 128224 bytes_out 647981 128224 bytes_in 9669120 128224 station_ip 109.125.128.116 128224 port 15730132 128175 mac 128175 bytes_out 5121 128175 bytes_in 5680 128175 station_ip 113.203.63.15 128175 port 221 128175 unique_id port 128175 remote_ip 10.8.0.146 128176 username mansur 128176 kill_reason Another user logged on this global unique id 128176 mac 128176 bytes_out 0 128176 bytes_in 0 128176 station_ip 5.119.205.158 128176 port 223 128176 unique_id port 128176 remote_ip 10.8.0.210 128177 username aminvpn 128177 mac 128177 bytes_out 0 128177 bytes_in 0 128177 station_ip 5.119.89.2 128177 port 228 128177 unique_id port 128177 remote_ip 10.8.0.14 128182 username amir 128182 mac 128182 bytes_out 72126 128182 bytes_in 285482 128182 station_ip 46.225.232.199 128182 port 228 128182 unique_id port 128182 remote_ip 10.8.0.50 128185 username sedighe 128185 mac 128185 bytes_out 0 128185 bytes_in 0 128185 station_ip 113.203.63.15 128185 port 221 128185 unique_id port 128185 remote_ip 10.8.0.146 128187 username mansur 128187 mac 128187 bytes_out 0 128187 bytes_in 0 128187 station_ip 5.119.205.158 128187 port 221 128187 unique_id port 128187 remote_ip 10.8.0.210 128188 username ehsun 128188 mac 128188 bytes_out 0 128188 bytes_in 0 128188 station_ip 46.225.211.182 128188 port 223 128188 unique_id port 128188 remote_ip 10.8.0.162 128193 username kordestani 128193 mac 128193 bytes_out 0 128193 bytes_in 0 128193 station_ip 83.123.108.35 128193 port 219 128193 unique_id port 128193 remote_ip 10.8.0.134 128196 username barzegar 128196 mac 128196 bytes_out 0 128196 bytes_in 0 128196 station_ip 5.120.91.112 128196 port 143 128196 unique_id port 128196 remote_ip 10.8.1.174 128198 username yahodi 128198 mac 128198 bytes_out 334771 128198 bytes_in 2496173 128198 station_ip 83.122.255.58 128198 port 137 128198 unique_id port 128198 remote_ip 10.8.1.218 128200 username aminvpn 128200 mac 128200 bytes_out 0 128200 bytes_in 0 128200 station_ip 5.119.89.2 128200 port 237 128200 unique_id port 128200 remote_ip 10.8.0.14 128211 username mansur 128211 mac 128211 bytes_out 0 128211 bytes_in 0 128211 station_ip 5.119.205.158 128211 port 137 128211 unique_id port 128211 remote_ip 10.8.1.194 128216 username barzegar 128216 mac 128216 bytes_out 0 128216 bytes_in 0 128216 station_ip 5.120.91.112 128216 port 233 128216 unique_id port 128216 remote_ip 10.8.0.234 128219 username aminvpn 128219 mac 128219 bytes_out 0 128219 bytes_in 0 128219 station_ip 5.119.89.2 128219 port 233 128219 unique_id port 128219 remote_ip 10.8.0.14 128220 username houshang 128220 kill_reason Another user logged on this global unique id 128220 mac 128220 bytes_out 0 128220 bytes_in 0 128220 station_ip 5.120.136.140 128220 port 237 128220 unique_id port 128220 remote_ip 10.8.0.22 128222 username saeed9658 128222 mac 128222 bytes_out 0 128222 bytes_in 0 128222 station_ip 5.120.17.83 128222 port 149 128222 unique_id port 128226 username mansur 128226 mac 128226 bytes_out 0 128226 bytes_in 0 128226 station_ip 5.119.205.158 128226 port 137 128226 unique_id port 128226 remote_ip 10.8.1.194 128228 username houshang 128228 mac 128228 bytes_out 0 128228 bytes_in 0 128228 station_ip 5.120.136.140 128228 port 237 128228 unique_id port 128231 username amir 128231 mac 128231 bytes_out 0 128231 bytes_in 0 128231 station_ip 46.225.232.199 128231 port 219 128231 unique_id port 128231 remote_ip 10.8.0.50 128232 username barzegar 128232 mac 128232 bytes_out 0 128232 bytes_in 0 128181 bytes_out 592221 128181 bytes_in 3176013 128181 station_ip 37.129.255.216 128181 port 233 128181 unique_id port 128181 remote_ip 10.8.0.74 128183 username alipour 128183 mac 128183 bytes_out 0 128183 bytes_in 0 128183 station_ip 113.203.6.241 128183 port 231 128183 unique_id port 128183 remote_ip 10.8.0.102 128186 username mansur 128186 mac 128186 bytes_out 0 128186 bytes_in 0 128186 station_ip 5.119.205.158 128186 port 223 128186 unique_id port 128186 remote_ip 10.8.0.210 128189 username sedighe 128189 mac 128189 bytes_out 0 128189 bytes_in 0 128189 station_ip 113.203.63.15 128189 port 228 128189 unique_id port 128189 remote_ip 10.8.0.146 128191 username alipour 128191 mac 128191 bytes_out 28976 128191 bytes_in 26283 128191 station_ip 113.203.6.241 128191 port 221 128191 unique_id port 128191 remote_ip 10.8.0.102 128197 username amir 128197 mac 128197 bytes_out 0 128197 bytes_in 0 128197 station_ip 46.225.232.199 128197 port 233 128197 unique_id port 128197 remote_ip 10.8.0.50 128199 username mansur 128199 mac 128199 bytes_out 0 128199 bytes_in 0 128199 station_ip 5.119.205.158 128199 port 137 128199 unique_id port 128199 remote_ip 10.8.1.194 128201 username barzegar 128201 mac 128201 bytes_out 0 128201 bytes_in 0 128201 station_ip 5.120.91.112 128201 port 233 128201 unique_id port 128201 remote_ip 10.8.0.234 128202 username barzegar 128202 mac 128202 bytes_out 0 128202 bytes_in 0 128202 station_ip 5.120.91.112 128202 port 233 128202 unique_id port 128202 remote_ip 10.8.0.234 128203 username alipour 128203 mac 128203 bytes_out 0 128203 bytes_in 0 128203 station_ip 113.203.6.241 128203 port 219 128203 unique_id port 128203 remote_ip 10.8.0.102 128206 username mosi 128206 kill_reason Another user logged on this global unique id 128206 mac 128206 bytes_out 0 128206 bytes_in 0 128206 station_ip 37.44.59.180 128206 port 234 128206 unique_id port 128210 username hoorieh 128210 mac 128210 bytes_out 121567 128210 bytes_in 634280 128210 station_ip 5.120.173.152 128210 port 223 128210 unique_id port 128210 remote_ip 10.8.0.38 128212 username mehdizare 128212 mac 128212 bytes_out 0 128212 bytes_in 0 128212 station_ip 5.120.87.77 128212 port 228 128212 unique_id port 128212 remote_ip 10.8.0.90 128215 username amir 128215 mac 128215 bytes_out 0 128215 bytes_in 0 128215 station_ip 46.225.232.199 128215 port 223 128215 unique_id port 128215 remote_ip 10.8.0.50 128223 username mansur 128223 mac 128223 bytes_out 0 128223 bytes_in 0 128223 station_ip 5.119.205.158 128223 port 143 128223 unique_id port 128223 remote_ip 10.8.1.194 128227 username sedighe 128227 mac 128227 bytes_out 10721 128227 bytes_in 9016 128227 station_ip 83.122.27.102 128227 port 238 128227 unique_id port 128227 remote_ip 10.8.0.146 128229 username alipour 128229 mac 128229 bytes_out 107975 128229 bytes_in 507354 128229 station_ip 113.203.6.241 128229 port 219 128229 unique_id port 128229 remote_ip 10.8.0.102 128235 username aminvpn 128235 mac 128235 bytes_out 0 128235 bytes_in 0 128235 station_ip 5.119.89.2 128235 port 219 128235 unique_id port 128235 remote_ip 10.8.0.14 128238 username mahdiyehalizadeh 128238 mac 128238 bytes_out 77587 128238 bytes_in 92532 128238 station_ip 83.122.254.63 128238 port 231 128238 unique_id port 128238 remote_ip 10.8.0.82 128240 username barzegar 128240 kill_reason Maximum check online fails reached 128240 mac 128240 bytes_out 0 128224 nas_port_type Virtual 128224 remote_ip 5.5.5.57 128225 username forozande 128225 mac 128225 bytes_out 0 128225 bytes_in 0 128225 station_ip 83.122.142.95 128225 port 223 128225 unique_id port 128225 remote_ip 10.8.0.74 128230 username forozande 128230 mac 128230 bytes_out 0 128230 bytes_in 0 128230 station_ip 83.123.94.191 128230 port 237 128230 unique_id port 128230 remote_ip 10.8.0.74 128234 username mahbobeh 128234 kill_reason Relative expiration date has reached 128234 unique_id port 128234 bytes_out 0 128234 bytes_in 0 128234 station_ip 37.129.237.160 128234 port 15730134 128234 nas_port_type Virtual 128236 username sedighe 128236 mac 128236 bytes_out 6910 128236 bytes_in 7595 128236 station_ip 83.122.27.102 128236 port 223 128236 unique_id port 128236 remote_ip 10.8.0.146 128239 username hashtadani3 128239 kill_reason Another user logged on this global unique id 128239 mac 128239 bytes_out 0 128239 bytes_in 0 128239 station_ip 83.122.60.8 128239 port 221 128239 unique_id port 128243 username kordestani 128243 mac 128243 bytes_out 73604 128243 bytes_in 80027 128243 station_ip 151.235.120.9 128243 port 233 128243 unique_id port 128243 remote_ip 10.8.0.134 128244 username sedighe 128244 mac 128244 bytes_out 0 128244 bytes_in 0 128244 station_ip 37.129.127.220 128244 port 219 128244 unique_id port 128244 remote_ip 10.8.0.146 128247 username aminvpn 128247 mac 128247 bytes_out 0 128247 bytes_in 0 128247 station_ip 5.119.89.2 128247 port 231 128247 unique_id port 128247 remote_ip 10.8.0.14 128248 username sedighe 128248 mac 128248 bytes_out 0 128248 bytes_in 0 128248 station_ip 37.129.127.220 128248 port 233 128248 unique_id port 128248 remote_ip 10.8.0.146 128251 username khademi 128251 kill_reason Another user logged on this global unique id 128251 mac 128251 bytes_out 0 128251 bytes_in 0 128251 station_ip 113.203.20.65 128251 port 229 128251 unique_id port 128255 username forozande 128255 mac 128255 bytes_out 154024 128255 bytes_in 592609 128255 station_ip 83.123.202.56 128255 port 233 128255 unique_id port 128255 remote_ip 10.8.0.74 128261 username zare 128261 mac 128261 bytes_out 0 128261 bytes_in 0 128261 station_ip 94.183.214.14 128261 port 237 128261 unique_id port 128261 remote_ip 10.8.0.18 128271 username khademi 128271 kill_reason Another user logged on this global unique id 128271 mac 128271 bytes_out 0 128271 bytes_in 0 128271 station_ip 113.203.20.65 128271 port 229 128271 unique_id port 128277 username irannezhad 128277 kill_reason Another user logged on this global unique id 128277 mac 128277 bytes_out 0 128277 bytes_in 0 128277 station_ip 83.122.42.155 128277 port 233 128277 unique_id port 128281 username sedighe 128281 mac 128281 bytes_out 4217 128281 bytes_in 10639 128281 station_ip 83.123.151.197 128281 port 240 128281 unique_id port 128281 remote_ip 10.8.0.146 128283 username irannezhad 128283 mac 128283 bytes_out 0 128283 bytes_in 0 128283 station_ip 83.122.42.155 128283 port 233 128283 unique_id port 128286 username zare 128286 mac 128286 bytes_out 9931 128286 bytes_in 12595 128286 station_ip 94.183.214.14 128286 port 231 128286 unique_id port 128286 remote_ip 10.8.0.18 128291 username mohammadjavad 128291 mac 128291 bytes_out 1062985 128291 bytes_in 21275571 128291 station_ip 83.122.243.245 128291 port 237 128291 unique_id port 128291 remote_ip 10.8.0.142 128295 username barzegar 128295 mac 128295 bytes_out 0 128295 bytes_in 0 128295 station_ip 5.120.91.112 128295 port 232 128232 station_ip 5.120.91.112 128232 port 219 128232 unique_id port 128232 remote_ip 10.8.0.234 128233 username mahbobeh 128233 kill_reason Relative expiration date has reached 128233 unique_id port 128233 bytes_out 0 128233 bytes_in 0 128233 station_ip 37.129.237.160 128233 port 15730133 128233 nas_port_type Virtual 128237 username forozande 128237 mac 128237 bytes_out 0 128237 bytes_in 0 128237 station_ip 37.129.153.237 128237 port 239 128237 unique_id port 128237 remote_ip 10.8.0.74 128241 username sabaghnezhad 128241 mac 128241 bytes_out 434813 128241 bytes_in 2241973 128241 station_ip 83.123.131.226 128241 port 232 128241 unique_id port 128241 remote_ip 10.8.0.186 128245 username mahdiyehalizadeh 128245 mac 128245 bytes_out 26763 128245 bytes_in 37499 128245 station_ip 83.122.254.63 128245 port 237 128245 unique_id port 128245 remote_ip 10.8.0.82 128246 username sedighe 128246 mac 128246 bytes_out 4492 128246 bytes_in 6185 128246 station_ip 37.129.127.220 128246 port 231 128246 unique_id port 128246 remote_ip 10.8.0.146 128249 username mosi 128249 kill_reason Another user logged on this global unique id 128249 mac 128249 bytes_out 0 128249 bytes_in 0 128249 station_ip 37.44.59.180 128249 port 234 128249 unique_id port 128250 username aminvpn 128250 mac 128250 bytes_out 0 128250 bytes_in 0 128250 station_ip 5.119.89.2 128250 port 231 128250 unique_id port 128250 remote_ip 10.8.0.14 128253 username aminvpn 128253 mac 128253 bytes_out 10002 128253 bytes_in 22597 128253 station_ip 5.119.89.2 128253 port 231 128253 unique_id port 128253 remote_ip 10.8.0.14 128257 username sedighe 128257 mac 128257 bytes_out 9437 128257 bytes_in 11399 128257 station_ip 83.123.151.197 128257 port 240 128257 unique_id port 128257 remote_ip 10.8.0.146 128258 username moradi 128258 mac 128258 bytes_out 192237 128258 bytes_in 4158090 128258 station_ip 46.225.215.19 128258 port 219 128258 unique_id port 128258 remote_ip 10.8.0.250 128260 username zare 128260 mac 128260 bytes_out 0 128260 bytes_in 0 128260 station_ip 94.183.214.14 128260 port 240 128260 unique_id port 128260 remote_ip 10.8.0.18 128264 username irannezhad 128264 kill_reason Another user logged on this global unique id 128264 mac 128264 bytes_out 0 128264 bytes_in 0 128264 station_ip 83.122.42.155 128264 port 233 128264 unique_id port 128264 remote_ip 10.8.0.182 128265 username zare 128265 mac 128265 bytes_out 0 128265 bytes_in 0 128265 station_ip 94.183.214.14 128265 port 237 128265 unique_id port 128265 remote_ip 10.8.0.18 128266 username mahdiyehalizadeh 128266 mac 128266 bytes_out 1078188 128266 bytes_in 17996286 128266 station_ip 83.122.254.63 128266 port 232 128266 unique_id port 128266 remote_ip 10.8.0.82 128267 username zare 128267 mac 128267 bytes_out 0 128267 bytes_in 0 128267 station_ip 94.183.214.14 128267 port 232 128267 unique_id port 128267 remote_ip 10.8.0.18 128269 username hashtadani3 128269 kill_reason Another user logged on this global unique id 128269 mac 128269 bytes_out 0 128269 bytes_in 0 128269 station_ip 83.122.60.8 128269 port 221 128269 unique_id port 128270 username zare 128270 mac 128270 bytes_out 0 128270 bytes_in 0 128270 station_ip 94.183.214.14 128270 port 219 128270 unique_id port 128270 remote_ip 10.8.0.18 128274 username barzegar 128274 mac 128274 bytes_out 0 128274 bytes_in 0 128274 station_ip 5.120.91.112 128274 port 240 128274 unique_id port 128274 remote_ip 10.8.0.234 128275 username Mahin 128275 mac 128240 bytes_in 0 128240 station_ip 5.120.91.112 128240 port 223 128240 unique_id port 128242 username mansur 128242 mac 128242 bytes_out 0 128242 bytes_in 0 128242 station_ip 5.119.205.158 128242 port 137 128242 unique_id port 128242 remote_ip 10.8.1.194 128252 username sedighe 128252 mac 128252 bytes_out 7952 128252 bytes_in 16942 128252 station_ip 37.129.127.220 128252 port 237 128252 unique_id port 128252 remote_ip 10.8.0.146 128254 username amir 128254 mac 128254 bytes_out 0 128254 bytes_in 0 128254 station_ip 46.225.232.199 128254 port 239 128254 unique_id port 128254 remote_ip 10.8.0.50 128256 username barzegar 128256 mac 128256 bytes_out 0 128256 bytes_in 0 128256 station_ip 5.120.91.112 128256 port 143 128256 unique_id port 128256 remote_ip 10.8.1.174 128259 username sedighe 128259 mac 128259 bytes_out 7104 128259 bytes_in 12137 128259 station_ip 83.123.151.197 128259 port 237 128259 unique_id port 128259 remote_ip 10.8.0.146 128262 username zare 128262 mac 128262 bytes_out 0 128262 bytes_in 0 128262 station_ip 94.183.214.14 128262 port 237 128262 unique_id port 128262 remote_ip 10.8.0.18 128263 username zare 128263 mac 128263 bytes_out 0 128263 bytes_in 0 128263 station_ip 94.183.214.14 128263 port 237 128263 unique_id port 128263 remote_ip 10.8.0.18 128268 username mohammadjavad 128268 mac 128268 bytes_out 178735 128268 bytes_in 1701821 128268 station_ip 83.122.243.245 128268 port 219 128268 unique_id port 128268 remote_ip 10.8.0.142 128272 username sedighe 128272 mac 128272 bytes_out 11678 128272 bytes_in 15264 128272 station_ip 83.123.151.197 128272 port 242 128272 unique_id port 128272 remote_ip 10.8.0.146 128273 username forozande 128273 kill_reason Another user logged on this global unique id 128273 mac 128273 bytes_out 0 128273 bytes_in 0 128273 station_ip 83.123.23.131 128273 port 239 128273 unique_id port 128273 remote_ip 10.8.0.74 128276 username zare 128276 mac 128276 bytes_out 10313 128276 bytes_in 16800 128276 station_ip 94.183.214.14 128276 port 232 128276 unique_id port 128276 remote_ip 10.8.0.18 128280 username hosseine 128280 mac 128280 bytes_out 0 128280 bytes_in 0 128280 station_ip 83.123.45.191 128280 port 141 128280 unique_id port 128284 username irannezhad 128284 mac 128284 bytes_out 0 128284 bytes_in 0 128284 station_ip 83.123.209.206 128284 port 239 128284 unique_id port 128284 remote_ip 10.8.0.182 128285 username barzegar 128285 mac 128285 bytes_out 0 128285 bytes_in 0 128285 station_ip 5.120.91.112 128285 port 233 128285 unique_id port 128285 remote_ip 10.8.0.234 128287 username barzegar 128287 mac 128287 bytes_out 0 128287 bytes_in 0 128287 station_ip 5.120.91.112 128287 port 231 128287 unique_id port 128287 remote_ip 10.8.0.234 128289 username khademi 128289 kill_reason Another user logged on this global unique id 128289 mac 128289 bytes_out 0 128289 bytes_in 0 128289 station_ip 113.203.20.65 128289 port 229 128289 unique_id port 128290 username barzegar 128290 mac 128290 bytes_out 0 128290 bytes_in 0 128290 station_ip 5.120.91.112 128290 port 233 128290 unique_id port 128290 remote_ip 10.8.0.234 128292 username Mahin 128292 mac 128292 bytes_out 131365 128292 bytes_in 1277115 128292 station_ip 5.119.16.83 128292 port 219 128292 unique_id port 128292 remote_ip 10.8.0.222 128294 username irannezhad 128294 mac 128294 bytes_out 46034 128294 bytes_in 131552 128294 station_ip 83.123.209.206 128294 port 239 128275 bytes_out 219044 128275 bytes_in 319793 128275 station_ip 5.119.16.83 128275 port 231 128275 unique_id port 128275 remote_ip 10.8.0.222 128278 username ahmadipour 128278 kill_reason Relative expiration date has reached 128278 unique_id port 128278 bytes_out 0 128278 bytes_in 0 128278 station_ip 37.129.183.190 128278 port 15730136 128278 nas_port_type Virtual 128279 username barzegar 128279 mac 128279 bytes_out 0 128279 bytes_in 0 128279 station_ip 5.120.91.112 128279 port 143 128279 unique_id port 128279 remote_ip 10.8.1.174 128282 username forozande 128282 mac 128282 bytes_out 0 128282 bytes_in 0 128282 station_ip 83.123.23.131 128282 port 239 128282 unique_id port 128288 username amir 128288 mac 128288 bytes_out 129726 128288 bytes_in 476492 128288 station_ip 46.225.232.199 128288 port 219 128288 unique_id port 128288 remote_ip 10.8.0.50 128293 username sedighe 128293 mac 128293 bytes_out 0 128293 bytes_in 0 128293 station_ip 83.123.151.197 128293 port 232 128293 unique_id port 128293 remote_ip 10.8.0.146 128300 username hashtadani3 128300 mac 128300 bytes_out 0 128300 bytes_in 0 128300 station_ip 83.122.60.8 128300 port 221 128300 unique_id port 128307 username hashtadani3 128307 mac 128307 bytes_out 0 128307 bytes_in 0 128307 station_ip 5.202.133.252 128307 port 237 128307 unique_id port 128307 remote_ip 10.8.0.154 128311 username hashtadani3 128311 kill_reason Maximum check online fails reached 128311 mac 128311 bytes_out 0 128311 bytes_in 0 128311 station_ip 5.202.133.252 128311 port 221 128311 unique_id port 128314 username zare 128314 mac 128314 bytes_out 0 128314 bytes_in 0 128314 station_ip 37.27.22.122 128314 port 232 128314 unique_id port 128314 remote_ip 10.8.0.18 128316 username forozande 128316 mac 128316 bytes_out 1120460 128316 bytes_in 6190754 128316 station_ip 83.122.3.5 128316 port 237 128316 unique_id port 128316 remote_ip 10.8.0.74 128320 username zare 128320 kill_reason Maximum check online fails reached 128320 mac 128320 bytes_out 0 128320 bytes_in 0 128320 station_ip 37.27.22.122 128320 port 232 128320 unique_id port 128324 username vanila 128324 mac 128324 bytes_out 0 128324 bytes_in 0 128324 station_ip 83.122.180.213 128324 port 233 128324 unique_id port 128324 remote_ip 10.8.0.178 128328 username kordestani 128328 mac 128328 bytes_out 0 128328 bytes_in 0 128328 station_ip 151.235.120.9 128328 port 137 128328 unique_id port 128328 remote_ip 10.8.1.98 128329 username hashtadani3 128329 mac 128329 bytes_out 0 128329 bytes_in 0 128329 station_ip 5.202.133.252 128329 port 143 128329 unique_id port 128329 remote_ip 10.8.1.94 128331 username zare 128331 mac 128331 bytes_out 0 128331 bytes_in 0 128331 station_ip 37.27.22.122 128331 port 149 128331 unique_id port 128331 remote_ip 10.8.1.58 128332 username zare 128332 kill_reason Maximum check online fails reached 128332 mac 128332 bytes_out 0 128332 bytes_in 0 128332 station_ip 37.27.22.122 128332 port 143 128332 unique_id port 128337 username amir 128337 mac 128337 bytes_out 117013 128337 bytes_in 554357 128337 station_ip 46.225.232.199 128337 port 237 128337 unique_id port 128337 remote_ip 10.8.0.50 128338 username amir 128338 mac 128338 bytes_out 0 128338 bytes_in 0 128338 station_ip 46.225.232.199 128338 port 233 128338 unique_id port 128338 remote_ip 10.8.0.50 128340 username barzegar 128340 mac 128340 bytes_out 0 128340 bytes_in 0 128340 station_ip 5.120.91.112 128340 port 141 128294 unique_id port 128294 remote_ip 10.8.0.182 128298 username hashtadani3 128298 kill_reason Another user logged on this global unique id 128298 mac 128298 bytes_out 0 128298 bytes_in 0 128298 station_ip 83.122.60.8 128298 port 221 128298 unique_id port 128299 username mohammadjavad 128299 mac 128299 bytes_out 7290 128299 bytes_in 15191 128299 station_ip 83.123.125.8 128299 port 232 128299 unique_id port 128299 remote_ip 10.8.0.142 128301 username Mahin 128301 mac 128301 bytes_out 0 128301 bytes_in 0 128301 station_ip 5.119.16.83 128301 port 141 128301 unique_id port 128301 remote_ip 10.8.1.186 128303 username hashtadani3 128303 mac 128303 bytes_out 0 128303 bytes_in 0 128303 station_ip 83.122.60.8 128303 port 219 128303 unique_id port 128303 remote_ip 10.8.0.154 128304 username hashtadani3 128304 mac 128304 bytes_out 0 128304 bytes_in 0 128304 station_ip 83.122.60.8 128304 port 219 128304 unique_id port 128304 remote_ip 10.8.0.154 128306 username barzegar 128306 mac 128306 bytes_out 0 128306 bytes_in 0 128306 station_ip 5.120.91.112 128306 port 221 128306 unique_id port 128306 remote_ip 10.8.0.234 128312 username zare 128312 mac 128312 bytes_out 373222 128312 bytes_in 7654137 128312 station_ip 37.27.22.122 128312 port 232 128312 unique_id port 128312 remote_ip 10.8.0.18 128317 username zare 128317 mac 128317 bytes_out 0 128317 bytes_in 0 128317 station_ip 37.27.22.122 128317 port 232 128317 unique_id port 128317 remote_ip 10.8.0.18 128318 username aminvpn 128318 unique_id port 128318 terminate_cause Lost-Carrier 128318 bytes_out 2669428 128318 bytes_in 36188241 128318 station_ip 5.119.89.2 128318 port 15730131 128318 nas_port_type Virtual 128318 remote_ip 5.5.5.54 128321 username sedighe 128321 mac 128321 bytes_out 8713 128321 bytes_in 13868 128321 station_ip 83.123.35.7 128321 port 237 128321 unique_id port 128321 remote_ip 10.8.0.146 128322 username vanila 128322 mac 128322 bytes_out 200054 128322 bytes_in 1325352 128322 station_ip 83.122.180.213 128322 port 233 128322 unique_id port 128322 remote_ip 10.8.0.178 128326 username sedighe 128326 mac 128326 bytes_out 32031 128326 bytes_in 47512 128326 station_ip 83.123.35.7 128326 port 239 128326 unique_id port 128326 remote_ip 10.8.0.146 128330 username vanila 128330 mac 128330 bytes_out 0 128330 bytes_in 0 128330 station_ip 83.122.180.213 128330 port 219 128330 unique_id port 128330 remote_ip 10.8.0.178 128333 username sedighe 128333 mac 128333 bytes_out 44626 128333 bytes_in 75152 128333 station_ip 83.122.178.41 128333 port 233 128333 unique_id port 128333 remote_ip 10.8.0.146 128335 username zare 128335 mac 128335 bytes_out 0 128335 bytes_in 0 128335 station_ip 37.27.22.122 128335 port 149 128335 unique_id port 128335 remote_ip 10.8.1.58 128336 username zare 128336 mac 128336 bytes_out 0 128336 bytes_in 0 128336 station_ip 37.27.22.122 128336 port 149 128336 unique_id port 128336 remote_ip 10.8.1.58 128345 username kordestani 128345 mac 128345 bytes_out 0 128345 bytes_in 0 128345 station_ip 151.235.120.9 128345 port 137 128345 unique_id port 128345 remote_ip 10.8.1.98 128350 username mohammadjavad 128350 mac 128350 bytes_out 55703 128350 bytes_in 230454 128350 station_ip 113.203.20.123 128350 port 237 128350 unique_id port 128350 remote_ip 10.8.0.142 128353 username zare 128353 mac 128353 bytes_out 0 128353 bytes_in 0 128353 station_ip 37.27.22.122 128353 port 237 128353 unique_id port 128295 unique_id port 128295 remote_ip 10.8.0.234 128296 username barzegar 128296 mac 128296 bytes_out 0 128296 bytes_in 0 128296 station_ip 5.120.91.112 128296 port 232 128296 unique_id port 128296 remote_ip 10.8.0.234 128297 username Mahin 128297 mac 128297 bytes_out 8251 128297 bytes_in 12365 128297 station_ip 5.119.16.83 128297 port 233 128297 unique_id port 128297 remote_ip 10.8.0.222 128302 username sedighe 128302 mac 128302 bytes_out 82897 128302 bytes_in 90053 128302 station_ip 37.129.179.137 128302 port 219 128302 unique_id port 128302 remote_ip 10.8.0.146 128305 username hashtadani3 128305 mac 128305 bytes_out 0 128305 bytes_in 0 128305 station_ip 5.202.133.252 128305 port 141 128305 unique_id port 128305 remote_ip 10.8.1.94 128308 username amir 128308 mac 128308 bytes_out 60033 128308 bytes_in 281276 128308 station_ip 46.225.232.199 128308 port 221 128308 unique_id port 128308 remote_ip 10.8.0.50 128309 username mohammadjavad 128309 mac 128309 bytes_out 22338 128309 bytes_in 45231 128309 station_ip 83.123.125.8 128309 port 233 128309 unique_id port 128309 remote_ip 10.8.0.142 128310 username hashtadani3 128310 mac 128310 bytes_out 0 128310 bytes_in 0 128310 station_ip 5.202.133.252 128310 port 143 128310 unique_id port 128310 remote_ip 10.8.1.94 128313 username barzegar 128313 mac 128313 bytes_out 0 128313 bytes_in 0 128313 station_ip 5.120.91.112 128313 port 141 128313 unique_id port 128313 remote_ip 10.8.1.174 128315 username kordestani 128315 mac 128315 bytes_out 0 128315 bytes_in 0 128315 station_ip 151.235.120.9 128315 port 137 128315 unique_id port 128315 remote_ip 10.8.1.98 128319 username sedighe 128319 mac 128319 bytes_out 73552 128319 bytes_in 161213 128319 station_ip 37.129.179.137 128319 port 219 128319 unique_id port 128319 remote_ip 10.8.0.146 128323 username amir 128323 mac 128323 bytes_out 0 128323 bytes_in 0 128323 station_ip 46.225.232.199 128323 port 219 128323 unique_id port 128323 remote_ip 10.8.0.50 128325 username forozande 128325 mac 128325 bytes_out 0 128325 bytes_in 0 128325 station_ip 83.123.144.123 128325 port 237 128325 unique_id port 128325 remote_ip 10.8.0.74 128327 username mehdizare 128327 mac 128327 bytes_out 1919318 128327 bytes_in 26180405 128327 station_ip 5.120.87.77 128327 port 228 128327 unique_id port 128327 remote_ip 10.8.0.90 128334 username zare 128334 mac 128334 bytes_out 0 128334 bytes_in 0 128334 station_ip 37.27.22.122 128334 port 149 128334 unique_id port 128334 remote_ip 10.8.1.58 128339 username sedighe 128339 mac 128339 bytes_out 12868 128339 bytes_in 20831 128339 station_ip 37.129.90.74 128339 port 239 128339 unique_id port 128339 remote_ip 10.8.0.146 128343 username barzegar 128343 mac 128343 bytes_out 0 128343 bytes_in 0 128343 station_ip 5.120.91.112 128343 port 239 128343 unique_id port 128343 remote_ip 10.8.0.234 128346 username hashtadani3 128346 mac 128346 bytes_out 0 128346 bytes_in 0 128346 station_ip 5.202.133.252 128346 port 240 128346 unique_id port 128346 remote_ip 10.8.0.154 128349 username zare 128349 mac 128349 bytes_out 0 128349 bytes_in 0 128349 station_ip 37.27.22.122 128349 port 239 128349 unique_id port 128349 remote_ip 10.8.0.18 128351 username barzegar 128351 mac 128351 bytes_out 0 128351 bytes_in 0 128351 station_ip 5.120.91.112 128351 port 137 128351 unique_id port 128351 remote_ip 10.8.1.174 128355 username zare 128340 unique_id port 128340 remote_ip 10.8.1.174 128341 username barzegar 128341 mac 128341 bytes_out 0 128341 bytes_in 0 128341 station_ip 5.120.91.112 128341 port 239 128341 unique_id port 128341 remote_ip 10.8.0.234 128342 username barzegar 128342 mac 128342 bytes_out 0 128342 bytes_in 0 128342 station_ip 5.120.91.112 128342 port 141 128342 unique_id port 128342 remote_ip 10.8.1.174 128344 username barzegar 128344 mac 128344 bytes_out 0 128344 bytes_in 0 128344 station_ip 5.120.91.112 128344 port 239 128344 unique_id port 128344 remote_ip 10.8.0.234 128347 username forozande 128347 mac 128347 bytes_out 0 128347 bytes_in 0 128347 station_ip 37.129.17.242 128347 port 239 128347 unique_id port 128347 remote_ip 10.8.0.74 128348 username zare 128348 mac 128348 bytes_out 0 128348 bytes_in 0 128348 station_ip 37.27.22.122 128348 port 239 128348 unique_id port 128348 remote_ip 10.8.0.18 128352 username sabaghnezhad 128352 mac 128352 bytes_out 116881 128352 bytes_in 320516 128352 station_ip 83.123.185.237 128352 port 219 128352 unique_id port 128352 remote_ip 10.8.0.186 128354 username hashtadani3 128354 mac 128354 bytes_out 0 128354 bytes_in 0 128354 station_ip 5.202.133.252 128354 port 239 128354 unique_id port 128354 remote_ip 10.8.0.154 128358 username mehdizare 128358 mac 128358 bytes_out 0 128358 bytes_in 0 128358 station_ip 5.120.87.77 128358 port 150 128358 unique_id port 128358 remote_ip 10.8.1.42 128362 username hashtadani3 128362 mac 128362 bytes_out 0 128362 bytes_in 0 128362 station_ip 83.122.8.16 128362 port 219 128362 unique_id port 128362 remote_ip 10.8.0.154 128366 username hashtadani3 128366 mac 128366 bytes_out 0 128366 bytes_in 0 128366 station_ip 83.122.8.16 128366 port 237 128366 unique_id port 128366 remote_ip 10.8.0.154 128367 username zare 128367 mac 128367 bytes_out 0 128367 bytes_in 0 128367 station_ip 37.27.22.122 128367 port 150 128367 unique_id port 128367 remote_ip 10.8.1.58 128368 username sedighe 128368 mac 128368 bytes_out 29433 128368 bytes_in 32798 128368 station_ip 37.129.90.74 128368 port 219 128368 unique_id port 128368 remote_ip 10.8.0.146 128370 username zare 128370 mac 128370 bytes_out 0 128370 bytes_in 0 128370 station_ip 37.27.22.122 128370 port 239 128370 unique_id port 128370 remote_ip 10.8.0.18 128373 username sabaghnezhad 128373 mac 128373 bytes_out 0 128373 bytes_in 0 128373 station_ip 83.123.106.210 128373 port 233 128373 unique_id port 128373 remote_ip 10.8.0.186 128378 username zare 128378 mac 128378 bytes_out 0 128378 bytes_in 0 128378 station_ip 37.27.22.122 128378 port 233 128378 unique_id port 128378 remote_ip 10.8.0.18 128379 username barzegar 128379 mac 128379 bytes_out 0 128379 bytes_in 0 128379 station_ip 5.120.91.112 128379 port 239 128379 unique_id port 128379 remote_ip 10.8.0.234 128383 username zare 128383 mac 128383 bytes_out 0 128383 bytes_in 0 128383 station_ip 37.27.22.122 128383 port 237 128383 unique_id port 128383 remote_ip 10.8.0.18 128384 username zare 128384 mac 128384 bytes_out 0 128384 bytes_in 0 128384 station_ip 37.27.22.122 128384 port 237 128384 unique_id port 128384 remote_ip 10.8.0.18 128388 username zare 128388 mac 128388 bytes_out 0 128388 bytes_in 0 128388 station_ip 37.27.22.122 128388 port 233 128388 unique_id port 128388 remote_ip 10.8.0.18 128392 username zare 128392 mac 128392 bytes_out 0 128353 remote_ip 10.8.0.18 128357 username amir 128357 mac 128357 bytes_out 60257 128357 bytes_in 458578 128357 station_ip 46.225.232.199 128357 port 219 128357 unique_id port 128357 remote_ip 10.8.0.50 128361 username barzegar 128361 mac 128361 bytes_out 0 128361 bytes_in 0 128361 station_ip 5.120.91.112 128361 port 149 128361 unique_id port 128361 remote_ip 10.8.1.174 128365 username forozande 128365 mac 128365 bytes_out 1715035 128365 bytes_in 5300907 128365 station_ip 83.122.27.19 128365 port 240 128365 unique_id port 128365 remote_ip 10.8.0.74 128377 username amir 128377 mac 128377 bytes_out 0 128377 bytes_in 0 128377 station_ip 46.225.232.199 128377 port 239 128377 unique_id port 128377 remote_ip 10.8.0.50 128380 username vanila 128380 mac 128380 bytes_out 663010 128380 bytes_in 5671216 128380 station_ip 83.122.180.213 128380 port 237 128380 unique_id port 128380 remote_ip 10.8.0.178 128381 username zare 128381 mac 128381 bytes_out 0 128381 bytes_in 0 128381 station_ip 37.27.22.122 128381 port 233 128381 unique_id port 128381 remote_ip 10.8.0.18 128382 username hashtadani3 128382 mac 128382 bytes_out 0 128382 bytes_in 0 128382 station_ip 5.202.8.68 128382 port 149 128382 unique_id port 128386 username zare 128386 mac 128386 bytes_out 0 128386 bytes_in 0 128386 station_ip 37.27.22.122 128386 port 237 128386 unique_id port 128386 remote_ip 10.8.0.18 128387 username zare 128387 mac 128387 bytes_out 0 128387 bytes_in 0 128387 station_ip 37.27.22.122 128387 port 233 128387 unique_id port 128387 remote_ip 10.8.0.18 128390 username zare 128390 mac 128390 bytes_out 0 128390 bytes_in 0 128390 station_ip 37.27.22.122 128390 port 233 128390 unique_id port 128390 remote_ip 10.8.0.18 128391 username sedighe 128391 mac 128391 bytes_out 40284 128391 bytes_in 67595 128391 station_ip 37.129.90.74 128391 port 219 128391 unique_id port 128391 remote_ip 10.8.0.146 128393 username zare 128393 mac 128393 bytes_out 0 128393 bytes_in 0 128393 station_ip 37.27.22.122 128393 port 219 128393 unique_id port 128393 remote_ip 10.8.0.18 128394 username forozande 128394 mac 128394 bytes_out 159837 128394 bytes_in 1306230 128394 station_ip 37.129.51.20 128394 port 239 128394 unique_id port 128394 remote_ip 10.8.0.74 128396 username zare 128396 mac 128396 bytes_out 0 128396 bytes_in 0 128396 station_ip 37.27.22.122 128396 port 219 128396 unique_id port 128396 remote_ip 10.8.0.18 128399 username barzegar 128399 mac 128399 bytes_out 0 128399 bytes_in 0 128399 station_ip 5.120.91.112 128399 port 151 128399 unique_id port 128399 remote_ip 10.8.1.174 128401 username alihosseini1 128401 mac 128401 bytes_out 0 128401 bytes_in 0 128401 station_ip 5.119.77.147 128401 port 150 128401 unique_id port 128401 remote_ip 10.8.1.106 128403 username sedighe 128403 mac 128403 bytes_out 12745 128403 bytes_in 16002 128403 station_ip 37.129.90.74 128403 port 233 128403 unique_id port 128403 remote_ip 10.8.0.146 128406 username barzegar 128406 mac 128406 bytes_out 3900 128406 bytes_in 6360 128406 station_ip 5.120.91.112 128406 port 239 128406 unique_id port 128406 remote_ip 10.8.0.234 128407 username hashtadani3 128407 mac 128407 bytes_out 0 128407 bytes_in 0 128407 station_ip 5.202.8.68 128407 port 233 128407 unique_id port 128407 remote_ip 10.8.0.154 128410 username hashtadani3 128410 mac 128410 bytes_out 0 128410 bytes_in 0 128355 mac 128355 bytes_out 0 128355 bytes_in 0 128355 station_ip 37.27.22.122 128355 port 237 128355 unique_id port 128355 remote_ip 10.8.0.18 128356 username sedighe 128356 mac 128356 bytes_out 89043 128356 bytes_in 148099 128356 station_ip 37.129.90.74 128356 port 233 128356 unique_id port 128356 remote_ip 10.8.0.146 128359 username amir 128359 mac 128359 bytes_out 0 128359 bytes_in 0 128359 station_ip 46.225.232.199 128359 port 219 128359 unique_id port 128359 remote_ip 10.8.0.50 128360 username hashtadani3 128360 mac 128360 bytes_out 175844 128360 bytes_in 2548712 128360 station_ip 5.202.133.252 128360 port 237 128360 unique_id port 128360 remote_ip 10.8.0.154 128363 username hashtadani3 128363 mac 128363 bytes_out 0 128363 bytes_in 0 128363 station_ip 83.122.8.16 128363 port 149 128363 unique_id port 128363 remote_ip 10.8.1.94 128364 username sedighe 128364 mac 128364 bytes_out 8229 128364 bytes_in 13147 128364 station_ip 37.129.90.74 128364 port 233 128364 unique_id port 128364 remote_ip 10.8.0.146 128369 username barzegar 128369 mac 128369 bytes_out 0 128369 bytes_in 0 128369 station_ip 5.120.91.112 128369 port 150 128369 unique_id port 128369 remote_ip 10.8.1.174 128371 username zare 128371 mac 128371 bytes_out 0 128371 bytes_in 0 128371 station_ip 37.27.22.122 128371 port 239 128371 unique_id port 128371 remote_ip 10.8.0.18 128372 username zare 128372 mac 128372 bytes_out 0 128372 bytes_in 0 128372 station_ip 37.27.22.122 128372 port 239 128372 unique_id port 128372 remote_ip 10.8.0.18 128374 username zare 128374 mac 128374 bytes_out 0 128374 bytes_in 0 128374 station_ip 37.27.22.122 128374 port 233 128374 unique_id port 128374 remote_ip 10.8.0.18 128375 username hashtadani3 128375 kill_reason Another user logged on this global unique id 128375 mac 128375 bytes_out 0 128375 bytes_in 0 128375 station_ip 5.202.8.68 128375 port 149 128375 unique_id port 128375 remote_ip 10.8.1.94 128376 username barzegar 128376 mac 128376 bytes_out 0 128376 bytes_in 0 128376 station_ip 5.120.91.112 128376 port 233 128376 unique_id port 128376 remote_ip 10.8.0.234 128385 username seyedmostafa 128385 mac 128385 bytes_out 25969 128385 bytes_in 31130 128385 station_ip 5.120.79.55 128385 port 233 128385 unique_id port 128385 remote_ip 10.8.0.122 128389 username zare 128389 mac 128389 bytes_out 0 128389 bytes_in 0 128389 station_ip 37.27.22.122 128389 port 233 128389 unique_id port 128389 remote_ip 10.8.0.18 128395 username mehdizare 128395 mac 128395 bytes_out 0 128395 bytes_in 0 128395 station_ip 5.120.87.77 128395 port 137 128395 unique_id port 128395 remote_ip 10.8.1.42 128400 username amir 128400 mac 128400 bytes_out 76161 128400 bytes_in 281266 128400 station_ip 46.225.232.199 128400 port 229 128400 unique_id port 128400 remote_ip 10.8.0.50 128402 username moradi 128402 mac 128402 bytes_out 3617553 128402 bytes_in 44419053 128402 station_ip 5.202.11.13 128402 port 231 128402 unique_id port 128402 remote_ip 10.8.0.250 128405 username hashtadani3 128405 mac 128405 bytes_out 0 128405 bytes_in 0 128405 station_ip 5.202.8.68 128405 port 231 128405 unique_id port 128405 remote_ip 10.8.0.154 128408 username barzegar 128408 mac 128408 bytes_out 0 128408 bytes_in 0 128408 station_ip 5.120.91.112 128408 port 231 128408 unique_id port 128408 remote_ip 10.8.0.234 128411 username barzegar 128411 mac 128411 bytes_out 0 128411 bytes_in 0 128392 bytes_in 0 128392 station_ip 37.27.22.122 128392 port 219 128392 unique_id port 128392 remote_ip 10.8.0.18 128397 username amir 128397 mac 128397 bytes_out 103223 128397 bytes_in 1030984 128397 station_ip 46.225.232.199 128397 port 237 128397 unique_id port 128397 remote_ip 10.8.0.50 128398 username khademi 128398 mac 128398 bytes_out 0 128398 bytes_in 0 128398 station_ip 113.203.20.65 128398 port 229 128398 unique_id port 128404 username hashtadani3 128404 mac 128404 bytes_out 0 128404 bytes_in 0 65352 username arezoo 65352 kill_reason Maximum check online fails reached 65352 mac 5.237.89.69:49238: Unknown host 65352 bytes_out 0 65352 bytes_in 0 65352 station_ip 5.237.89.69:49238 65352 port 1017 65352 unique_id port 128404 station_ip 5.202.8.68 128404 port 137 128404 unique_id port 128404 remote_ip 10.8.1.94 128409 username sedighe 128409 mac 128409 bytes_out 0 128409 bytes_in 0 128409 station_ip 83.122.94.54 128409 port 229 128409 unique_id port 128409 remote_ip 10.8.0.146 128415 username forozande 128415 mac 128415 bytes_out 0 128415 bytes_in 0 128415 station_ip 83.122.115.20 128415 port 239 128415 unique_id port 128415 remote_ip 10.8.0.74 128419 username mosi 128419 mac 128419 bytes_out 0 128419 bytes_in 0 128419 station_ip 37.44.59.180 128419 port 234 128419 unique_id port 128421 username sedighe 128421 mac 128421 bytes_out 0 128421 bytes_in 0 128421 station_ip 83.122.94.54 128421 port 229 128421 unique_id port 128421 remote_ip 10.8.0.146 128429 username hashtadani3 128429 mac 128429 bytes_out 0 128429 bytes_in 0 128429 station_ip 5.202.8.68 128429 port 229 128429 unique_id port 128429 remote_ip 10.8.0.154 128439 username hashtadani3 128439 mac 128439 bytes_out 0 128439 bytes_in 0 128439 station_ip 5.202.8.68 128439 port 243 128439 unique_id port 128439 remote_ip 10.8.0.154 128441 username barzegar 128441 mac 128441 bytes_out 0 128441 bytes_in 0 128441 station_ip 5.120.91.112 128441 port 240 128441 unique_id port 128441 remote_ip 10.8.0.234 128444 username barzegar 128444 mac 128444 bytes_out 3007 128444 bytes_in 5479 128444 station_ip 5.120.91.112 128444 port 151 128444 unique_id port 128444 remote_ip 10.8.1.174 128447 username alipour 128447 mac 128447 bytes_out 0 128447 bytes_in 0 128447 station_ip 113.203.6.241 128447 port 238 128447 unique_id port 128447 remote_ip 10.8.0.102 128449 username sedighe 128449 mac 128449 bytes_out 196562 128449 bytes_in 260901 128449 station_ip 83.122.71.104 128449 port 233 128449 unique_id port 128449 remote_ip 10.8.0.146 128450 username alipour 128450 mac 128450 bytes_out 0 128450 bytes_in 0 128450 station_ip 113.203.6.241 128450 port 231 128450 unique_id port 128450 remote_ip 10.8.0.102 128451 username mehdizare 128451 mac 128451 bytes_out 403005 128451 bytes_in 6904569 128451 station_ip 5.120.87.77 128451 port 150 128451 unique_id port 128451 remote_ip 10.8.1.42 128452 username barzegar 128452 mac 128452 bytes_out 0 128452 bytes_in 0 128452 station_ip 5.120.91.112 128452 port 228 128452 unique_id port 128452 remote_ip 10.8.0.234 128461 username hashtadani3 128461 kill_reason Maximum check online fails reached 128461 mac 128461 bytes_out 0 128461 bytes_in 0 128461 station_ip 83.122.8.60 128461 port 238 128461 unique_id port 128462 username amir 128462 kill_reason Another user logged on this global unique id 128462 mac 128462 bytes_out 0 128462 bytes_in 0 128462 station_ip 46.225.232.199 128410 station_ip 5.202.8.68 128410 port 229 128410 unique_id port 128410 remote_ip 10.8.0.154 128412 username sedighe 128412 mac 128412 bytes_out 0 128412 bytes_in 0 128412 station_ip 83.122.94.54 128412 port 231 128412 unique_id port 128412 remote_ip 10.8.0.146 128413 username hamid.e 128413 unique_id port 128413 terminate_cause User-Request 128413 bytes_out 18464769 128413 bytes_in 477451523 128413 station_ip 188.245.89.36 128413 port 15730135 128413 nas_port_type Virtual 128413 remote_ip 5.5.5.58 128416 username barzegar 128416 mac 128416 bytes_out 0 128416 bytes_in 0 128416 station_ip 5.120.91.112 128416 port 231 128416 unique_id port 128416 remote_ip 10.8.0.234 128418 username khademi 128418 kill_reason Another user logged on this global unique id 128418 mac 128418 bytes_out 0 128418 bytes_in 0 128418 station_ip 113.203.20.65 128418 port 237 128418 unique_id port 128418 remote_ip 10.8.0.10 128422 username mehdizare 128422 mac 128422 bytes_out 17210 128422 bytes_in 21682 128422 station_ip 5.120.87.77 128422 port 152 128422 unique_id port 128422 remote_ip 10.8.1.42 128426 username vanila 128426 mac 128426 bytes_out 0 128426 bytes_in 0 128426 station_ip 83.122.180.213 128426 port 231 128426 unique_id port 128426 remote_ip 10.8.0.178 128430 username rajaei 128430 mac 128430 bytes_out 0 128430 bytes_in 0 128430 station_ip 89.34.52.16 128430 port 234 128430 unique_id port 128430 remote_ip 10.8.0.34 128434 username barzegar 128434 mac 128434 bytes_out 0 128434 bytes_in 0 128434 station_ip 5.120.91.112 128434 port 231 128434 unique_id port 128434 remote_ip 10.8.0.234 128435 username mohammadmahdi 128435 kill_reason Another user logged on this global unique id 128435 mac 128435 bytes_out 0 128435 bytes_in 0 128435 station_ip 5.120.63.106 128435 port 219 128435 unique_id port 128435 remote_ip 10.8.0.54 128436 username mohammadmahdi 128436 kill_reason Another user logged on this global unique id 128436 mac 128436 bytes_out 0 128436 bytes_in 0 128436 station_ip 5.120.63.106 128436 port 219 128436 unique_id port 128437 username houshang 128437 mac 128437 bytes_out 0 128437 bytes_in 0 128437 station_ip 5.120.162.108 128437 port 231 128437 unique_id port 128437 remote_ip 10.8.0.22 128440 username mohammadjavad 128440 mac 128440 bytes_out 0 128440 bytes_in 0 128440 station_ip 37.129.24.207 128440 port 231 128440 unique_id port 128440 remote_ip 10.8.0.142 128443 username hashtadani3 128443 mac 128443 bytes_out 39989 128443 bytes_in 236732 128443 station_ip 83.122.8.60 128443 port 149 128443 unique_id port 128443 remote_ip 10.8.1.94 128446 username malekpoir 128446 mac 128446 bytes_out 0 128446 bytes_in 0 128446 station_ip 5.119.49.133 128446 port 228 128446 unique_id port 128446 remote_ip 10.8.0.58 128448 username zare 128448 mac 128448 bytes_out 0 128448 bytes_in 0 128448 station_ip 37.27.22.122 128448 port 234 128448 unique_id port 128448 remote_ip 10.8.0.18 128453 username mohammadmahdi 128453 kill_reason Another user logged on this global unique id 128453 mac 128453 bytes_out 0 128453 bytes_in 0 128453 station_ip 5.120.63.106 128453 port 219 128453 unique_id port 128455 username barzegar 128455 mac 128455 bytes_out 0 128455 bytes_in 0 128455 station_ip 5.120.91.112 128455 port 238 128455 unique_id port 128455 remote_ip 10.8.0.234 128456 username barzegar 128456 mac 128456 bytes_out 0 128456 bytes_in 0 128456 station_ip 5.120.91.112 128456 port 238 128456 unique_id port 128456 remote_ip 10.8.0.234 128459 username hashtadani3 128411 station_ip 5.120.91.112 128411 port 137 128411 unique_id port 128411 remote_ip 10.8.1.174 128414 username amir 128414 mac 128414 bytes_out 0 128414 bytes_in 0 128414 station_ip 46.225.232.199 128414 port 231 128414 unique_id port 128414 remote_ip 10.8.0.50 128417 username hashtadani3 128417 mac 128417 bytes_out 0 128417 bytes_in 0 128417 station_ip 5.202.8.68 128417 port 231 128417 unique_id port 128417 remote_ip 10.8.0.154 128420 username barzegar 128420 mac 128420 bytes_out 0 128420 bytes_in 0 128420 station_ip 5.120.91.112 128420 port 150 128420 unique_id port 128420 remote_ip 10.8.1.174 128423 username mohammadjavad 128423 mac 128423 bytes_out 0 128423 bytes_in 0 128423 station_ip 113.203.91.93 128423 port 231 128423 unique_id port 128423 remote_ip 10.8.0.142 128424 username barzegar 128424 mac 128424 bytes_out 0 128424 bytes_in 0 128424 station_ip 5.120.91.112 128424 port 150 128424 unique_id port 128424 remote_ip 10.8.1.174 128425 username ahmadipour 128425 kill_reason Relative expiration date has reached 128425 unique_id port 128425 bytes_out 0 128425 bytes_in 0 128425 station_ip 37.129.211.210 128425 port 15730138 128425 nas_port_type Virtual 128427 username mehdizare 128427 mac 128427 bytes_out 0 128427 bytes_in 0 128427 station_ip 5.120.87.77 128427 port 229 128427 unique_id port 128427 remote_ip 10.8.0.90 128428 username hamid.e 128428 unique_id port 128428 terminate_cause User-Request 128428 bytes_out 3253706 128428 bytes_in 93642930 128428 station_ip 188.245.89.36 128428 port 15730137 128428 nas_port_type Virtual 128428 remote_ip 5.5.5.66 128431 username barzegar 128431 mac 128431 bytes_out 0 128431 bytes_in 0 128431 station_ip 5.120.91.112 128431 port 240 128431 unique_id port 128431 remote_ip 10.8.0.234 128432 username zare 128432 mac 128432 bytes_out 0 128432 bytes_in 0 128432 station_ip 37.27.22.122 128432 port 219 128432 unique_id port 128432 remote_ip 10.8.0.18 128433 username forozande 128433 mac 128433 bytes_out 0 128433 bytes_in 0 128433 station_ip 83.123.193.254 128433 port 239 128433 unique_id port 128433 remote_ip 10.8.0.74 128438 username yahodi 128438 mac 128438 bytes_out 2561094 128438 bytes_in 31106978 128438 station_ip 83.122.185.26 128438 port 149 128438 unique_id port 128438 remote_ip 10.8.1.218 128442 username hoorieh 128442 mac 128442 bytes_out 0 128442 bytes_in 0 128442 station_ip 5.120.173.152 128442 port 231 128442 unique_id port 128442 remote_ip 10.8.0.38 128445 username hashtadani3 128445 mac 128445 bytes_out 0 128445 bytes_in 0 128445 station_ip 5.202.133.252 128445 port 149 128445 unique_id port 128445 remote_ip 10.8.1.94 128454 username barzegar 128454 mac 128454 bytes_out 0 65433 username arezoo 65433 kill_reason Maximum check online fails reached 65433 mac 5.237.89.69:49224: Unknown host 65433 bytes_out 0 65433 bytes_in 0 65433 station_ip 5.237.89.69:49224 65433 port 1017 65433 unique_id port 128454 bytes_in 0 128454 station_ip 5.120.91.112 128454 port 228 128454 unique_id port 128454 remote_ip 10.8.0.234 128457 username irannezhad 128457 mac 128457 bytes_out 0 128457 bytes_in 0 128457 station_ip 83.123.168.80 128457 port 239 128457 unique_id port 128457 remote_ip 10.8.0.182 128458 username hashtadani3 128458 mac 128458 bytes_out 1932520 128458 bytes_in 26464453 128458 station_ip 83.122.8.60 128458 port 151 128458 unique_id port 128458 remote_ip 10.8.1.94 128460 username mehdizare 128460 mac 128460 bytes_out 14184 128460 bytes_in 16980 128459 mac 128459 bytes_out 0 128459 bytes_in 0 128459 station_ip 83.122.8.60 128459 port 151 128459 unique_id port 128459 remote_ip 10.8.1.94 128463 username vanila 128463 mac 128463 bytes_out 0 128463 bytes_in 0 128463 station_ip 83.122.180.213 128463 port 228 128463 unique_id port 128463 remote_ip 10.8.0.178 128465 username sedighe 128465 mac 128465 bytes_out 0 128465 bytes_in 0 128465 station_ip 83.123.139.145 128465 port 234 128465 unique_id port 128465 remote_ip 10.8.0.146 128467 username saeed9658 128467 kill_reason Another user logged on this global unique id 128467 mac 128467 bytes_out 0 128467 bytes_in 0 128467 station_ip 5.120.17.83 128467 port 137 128467 unique_id port 128467 remote_ip 10.8.1.210 128469 username mohammadmahdi 128469 kill_reason Another user logged on this global unique id 128469 mac 128469 bytes_out 0 128469 bytes_in 0 128469 station_ip 5.120.63.106 128469 port 219 128469 unique_id port 128470 username malekpoir 128470 mac 128470 bytes_out 0 128470 bytes_in 0 128470 station_ip 5.119.49.133 128470 port 233 128470 unique_id port 128470 remote_ip 10.8.0.58 128471 username malekpoir 128471 mac 128471 bytes_out 62199 128471 bytes_in 668653 128471 station_ip 5.119.49.133 128471 port 149 128471 unique_id port 128471 remote_ip 10.8.1.54 128474 username mehdizare 128474 mac 128474 bytes_out 0 128474 bytes_in 0 128474 station_ip 5.120.87.77 128474 port 240 128474 unique_id port 128474 remote_ip 10.8.0.90 128475 username sedighe 128475 mac 128475 bytes_out 0 128475 bytes_in 0 128475 station_ip 83.122.60.86 128475 port 228 128475 unique_id port 65431 username arezoo 65431 kill_reason Wrong password 65431 mac 5.237.89.69:49194: Unknown host 65431 bytes_out 0 65431 bytes_in 0 65431 station_ip 5.237.89.69:49194 65431 port 1017 65431 unique_id port 128475 remote_ip 10.8.0.146 128477 username irannezhad 128477 mac 128477 bytes_out 5934 128477 bytes_in 16009 128477 station_ip 83.123.168.80 128477 port 141 128477 unique_id port 128477 remote_ip 10.8.1.134 128479 username sedighe 128479 mac 128479 bytes_out 0 128479 bytes_in 0 128479 station_ip 83.122.60.86 128479 port 239 128479 unique_id port 128479 remote_ip 10.8.0.146 128481 username barzegar 128481 mac 128481 bytes_out 0 128481 bytes_in 0 128481 station_ip 5.120.91.112 128481 port 239 128481 unique_id port 128481 remote_ip 10.8.0.234 128484 username amir 128484 mac 128484 bytes_out 0 128484 bytes_in 0 128484 station_ip 46.225.232.199 128484 port 242 128484 unique_id port 128486 username mehdizare 128486 mac 128486 bytes_out 8672 128486 bytes_in 16510 128486 station_ip 5.120.87.77 128486 port 149 128486 unique_id port 128486 remote_ip 10.8.1.42 128489 username malekpoir 128489 kill_reason Another user logged on this global unique id 128489 mac 128489 bytes_out 0 128489 bytes_in 0 128489 station_ip 5.119.49.133 128489 port 233 128489 unique_id port 128489 remote_ip 10.8.0.58 128492 username barzegar 128492 mac 128492 bytes_out 0 128492 bytes_in 0 128492 station_ip 5.120.91.112 128492 port 234 128492 unique_id port 128492 remote_ip 10.8.0.234 128493 username sedighe 128493 mac 128493 bytes_out 0 128493 bytes_in 0 128493 station_ip 83.122.160.231 128493 port 228 128493 unique_id port 128493 remote_ip 10.8.0.146 128496 username barzegar 128496 mac 128496 bytes_out 0 128496 bytes_in 0 128496 station_ip 5.120.91.112 128496 port 228 128496 unique_id port 128496 remote_ip 10.8.0.234 128500 username barzegar 128500 mac 128460 station_ip 5.120.87.77 128460 port 233 128460 unique_id port 128460 remote_ip 10.8.0.90 128464 username alihosseini1 128464 mac 128464 bytes_out 779013 128464 bytes_in 7348202 128464 station_ip 5.120.146.31 128464 port 149 128464 unique_id port 128464 remote_ip 10.8.1.106 128472 username irannezhad 128472 mac 128472 bytes_out 1327544 128472 bytes_in 19710333 128472 station_ip 83.123.168.80 128472 port 153 128472 unique_id port 128472 remote_ip 10.8.1.134 128473 username hashtadani3 128473 mac 128473 bytes_out 0 128473 bytes_in 0 128473 station_ip 83.122.8.60 128473 port 239 128473 unique_id port 128473 remote_ip 10.8.0.154 128482 username yahodi 128482 mac 128482 bytes_out 3293767 128482 bytes_in 43127471 128482 station_ip 83.122.234.218 128482 port 150 128482 unique_id port 128482 remote_ip 10.8.1.218 128485 username saeed9658 128485 mac 128485 bytes_out 0 128485 bytes_in 0 128485 station_ip 5.120.17.83 128485 port 137 128485 unique_id port 128488 username saeed9658 128488 mac 128488 bytes_out 8905 128488 bytes_in 11839 128488 station_ip 5.120.17.83 128488 port 149 128488 unique_id port 128488 remote_ip 10.8.1.210 128491 username mohammadmahdi 128491 mac 128491 bytes_out 0 128491 bytes_in 0 128491 station_ip 5.120.63.106 128491 port 219 128491 unique_id port 128497 username malekpoir 128497 kill_reason Another user logged on this global unique id 128497 mac 128497 bytes_out 0 128497 bytes_in 0 128497 station_ip 5.119.49.133 128497 port 233 128497 unique_id port 128499 username barzegar 128499 kill_reason Maximum check online fails reached 128499 mac 128499 bytes_out 0 128499 bytes_in 0 128499 station_ip 5.120.91.112 128499 port 150 128499 unique_id port 128505 username sedighe 128505 mac 128505 bytes_out 2494 128505 bytes_in 4968 128505 station_ip 83.123.111.178 128505 port 141 128505 unique_id port 128505 remote_ip 10.8.1.78 128508 username sedighe 128508 mac 128508 bytes_out 19069 128508 bytes_in 22628 128508 station_ip 37.129.245.249 128508 port 141 128508 unique_id port 128508 remote_ip 10.8.1.78 128509 username alipour 128509 kill_reason Another user logged on this global unique id 128509 mac 128509 bytes_out 0 128509 bytes_in 0 128509 station_ip 113.203.6.241 128509 port 231 128509 unique_id port 128509 remote_ip 10.8.0.102 128510 username mehdizare 128510 mac 128510 bytes_out 98959 128510 bytes_in 714918 128510 station_ip 5.120.87.77 128510 port 137 128510 unique_id port 128510 remote_ip 10.8.1.42 128511 username vanila 128511 mac 128511 bytes_out 0 128511 bytes_in 0 128511 station_ip 83.122.180.213 128511 port 239 128511 unique_id port 128511 remote_ip 10.8.0.178 128513 username barzegar 128513 mac 128513 bytes_out 0 128513 bytes_in 0 128513 station_ip 5.120.91.112 128513 port 242 128513 unique_id port 128513 remote_ip 10.8.0.234 128516 username mehdizare 128516 mac 128516 bytes_out 12782 128516 bytes_in 17364 128516 station_ip 5.120.87.77 128516 port 137 128516 unique_id port 128516 remote_ip 10.8.1.42 128519 username ahmadipour 128519 kill_reason Relative expiration date has reached 128519 unique_id port 128519 bytes_out 0 128519 bytes_in 0 128519 station_ip 37.129.183.166 128519 port 15730143 128519 nas_port_type Virtual 128521 username sedighe 128521 mac 128521 bytes_out 0 128521 bytes_in 0 128521 station_ip 37.129.206.103 128521 port 239 128521 unique_id port 128521 remote_ip 10.8.0.146 128523 username mahdixz 128523 unique_id port 128523 terminate_cause Lost-Carrier 128523 bytes_out 4147836 128462 port 242 128462 unique_id port 128462 remote_ip 10.8.0.50 128466 username kordestani 128466 mac 128466 bytes_out 2320122 128466 bytes_in 40606767 128466 station_ip 151.235.120.9 128466 port 141 128466 unique_id port 128466 remote_ip 10.8.1.98 128468 username barzegar 128468 mac 128468 bytes_out 0 128468 bytes_in 0 128468 station_ip 5.120.91.112 128468 port 141 128468 unique_id port 128468 remote_ip 10.8.1.174 128476 username rezasekonji 128476 kill_reason Relative expiration date has reached 128476 mac 128476 bytes_out 0 128476 bytes_in 0 128476 station_ip 37.129.68.241 128476 port 228 128476 unique_id port 128478 username rezasekonji 128478 kill_reason Relative expiration date has reached 128478 mac 128478 bytes_out 0 128478 bytes_in 0 128478 station_ip 37.129.68.241 128478 port 228 128478 unique_id port 128480 username mohammadjavad 128480 mac 128480 bytes_out 6812024 128480 bytes_in 29398234 128480 station_ip 37.129.27.178 128480 port 152 128480 unique_id port 128480 remote_ip 10.8.1.146 128483 username mehdizare 128483 mac 128483 bytes_out 0 128483 bytes_in 0 128483 station_ip 5.120.87.77 128483 port 234 128483 unique_id port 128483 remote_ip 10.8.0.90 128487 username barzegar 128487 mac 128487 bytes_out 0 128487 bytes_in 0 128487 station_ip 5.120.91.112 128487 port 150 128487 unique_id port 128487 remote_ip 10.8.1.174 128490 username barzegar 128490 mac 128490 bytes_out 2522 128490 bytes_in 5033 128490 station_ip 5.120.91.112 128490 port 234 128490 unique_id port 128490 remote_ip 10.8.0.234 128494 username sedighe 128494 mac 128494 bytes_out 0 128494 bytes_in 0 128494 station_ip 83.122.160.231 128494 port 219 128494 unique_id port 128494 remote_ip 10.8.0.146 128495 username mansour 128495 mac 128495 bytes_out 0 128495 bytes_in 0 128495 station_ip 5.202.22.92 128495 port 241 128495 unique_id port 128495 remote_ip 10.8.0.30 128498 username irannezhad 128498 mac 128498 bytes_out 1350432 128498 bytes_in 18494675 128498 station_ip 83.123.168.80 128498 port 141 128498 unique_id port 128498 remote_ip 10.8.1.134 128501 username sedighe 128501 mac 128501 bytes_out 19100 128501 bytes_in 24184 128501 station_ip 83.122.160.231 128501 port 149 128501 unique_id port 128501 remote_ip 10.8.1.78 128502 username sedighe 128502 mac 128502 bytes_out 3344 128502 bytes_in 6058 128502 station_ip 83.123.186.43 128502 port 141 128502 unique_id port 128502 remote_ip 10.8.1.78 128503 username sedighe 128503 mac 128503 bytes_out 0 128503 bytes_in 0 128503 station_ip 83.123.111.178 128503 port 141 128503 unique_id port 128503 remote_ip 10.8.1.78 128504 username mahdiyehalizadeh 128504 mac 128504 bytes_out 0 128504 bytes_in 0 128504 station_ip 83.123.184.6 128504 port 228 128504 unique_id port 128504 remote_ip 10.8.0.82 128507 username barzegar 128507 mac 128507 bytes_out 0 128507 bytes_in 0 128507 station_ip 5.120.91.112 128507 port 239 128507 unique_id port 128507 remote_ip 10.8.0.234 128512 username aminvpn 128512 mac 128512 bytes_out 128246 128512 bytes_in 534661 128512 station_ip 83.123.64.135 128512 port 239 128512 unique_id port 128512 remote_ip 10.8.0.14 128515 username sedighe 128515 mac 128515 bytes_out 0 128515 bytes_in 0 128515 station_ip 37.129.245.249 128515 port 240 128515 unique_id port 128515 remote_ip 10.8.0.146 128517 username sedighe 128517 mac 128517 bytes_out 0 128517 bytes_in 0 128517 station_ip 37.129.206.103 128517 port 239 128500 bytes_out 3078 128500 bytes_in 5781 128500 station_ip 5.120.91.112 128500 port 141 128500 unique_id port 128500 remote_ip 10.8.1.174 128506 username vanila 128506 mac 128506 bytes_out 0 128506 bytes_in 0 128506 station_ip 83.122.180.213 128506 port 228 128506 unique_id port 128506 remote_ip 10.8.0.178 128514 username saeed9658 128514 mac 128514 bytes_out 123984 128514 bytes_in 2108072 128514 station_ip 5.120.17.83 128514 port 239 128514 unique_id port 128514 remote_ip 10.8.0.62 128518 username ahmadipour 128518 kill_reason Relative expiration date has reached 128518 unique_id port 128518 bytes_out 0 128518 bytes_in 0 128518 station_ip 37.129.183.166 128518 port 15730142 128518 nas_port_type Virtual 128520 username sedighe 128520 mac 128520 bytes_out 0 128520 bytes_in 0 128520 station_ip 37.129.206.103 128520 port 240 128520 unique_id port 128520 remote_ip 10.8.0.146 128528 username barzegar 128528 mac 128528 bytes_out 0 128528 bytes_in 0 128528 station_ip 5.120.91.112 128528 port 242 128528 unique_id port 128528 remote_ip 10.8.0.234 128529 username barzegar 128529 mac 128529 bytes_out 0 128529 bytes_in 0 128529 station_ip 5.120.91.112 128529 port 149 128529 unique_id port 128529 remote_ip 10.8.1.174 128532 username mosi 128532 kill_reason Another user logged on this global unique id 128532 mac 128532 bytes_out 0 128532 bytes_in 0 128532 station_ip 151.235.124.20 128532 port 228 128532 unique_id port 128532 remote_ip 10.8.0.138 128537 username saeed9658 128537 mac 128537 bytes_out 0 128537 bytes_in 0 128537 station_ip 5.120.17.83 128537 port 240 128537 unique_id port 128537 remote_ip 10.8.0.62 128539 username moradi 128539 mac 128539 bytes_out 3417355 128539 bytes_in 47064610 65512 username arezoo 65512 kill_reason Maximum check online fails reached 65512 mac 5.237.70.198:49216: Unknown host 65512 bytes_out 0 65512 bytes_in 0 65512 station_ip 5.237.70.198:49216 65512 port 1017 65512 unique_id port 128539 station_ip 46.225.215.19 128539 port 229 128539 unique_id port 128539 remote_ip 10.8.0.250 128540 username vanila 128540 mac 128540 bytes_out 0 128540 bytes_in 0 128540 station_ip 83.122.202.245 128540 port 239 128540 unique_id port 128540 remote_ip 10.8.0.178 128545 username sedighe 128545 mac 128545 bytes_out 5622 128545 bytes_in 7145 128545 station_ip 37.129.206.103 128545 port 239 128545 unique_id port 128545 remote_ip 10.8.0.146 128546 username jafari 128546 kill_reason Another user logged on this global unique id 128546 mac 128546 bytes_out 0 128546 bytes_in 0 128546 station_ip 37.137.25.13 128546 port 243 128546 unique_id port 128546 remote_ip 10.8.0.242 128547 username fariba 128547 kill_reason Relative expiration date has reached 128547 mac 128547 bytes_out 0 128547 bytes_in 0 128547 station_ip 5.120.51.255 128547 port 239 128547 unique_id port 128548 username moradi 128548 mac 128548 bytes_out 0 128548 bytes_in 0 128548 station_ip 83.123.151.178 128548 port 149 128548 unique_id port 128548 remote_ip 10.8.1.202 128549 username barzegar 128549 mac 128549 bytes_out 0 128549 bytes_in 0 128549 station_ip 5.120.91.112 128549 port 229 128549 unique_id port 128549 remote_ip 10.8.0.234 128551 username jafari 128551 kill_reason Another user logged on this global unique id 128551 mac 128551 bytes_out 0 128551 bytes_in 0 128551 station_ip 37.137.25.13 128551 port 243 128551 unique_id port 128552 username amirabbas 128552 unique_id port 128552 terminate_cause User-Request 128552 bytes_out 1709243 128552 bytes_in 17085479 128552 station_ip 37.27.57.201 128517 unique_id port 128517 remote_ip 10.8.0.146 128522 username mehdizare 128522 mac 128522 bytes_out 15571 128522 bytes_in 48057 128522 station_ip 5.120.87.77 128522 port 137 128522 unique_id port 128522 remote_ip 10.8.1.42 128527 username malekpoir 128527 kill_reason Another user logged on this global unique id 128527 mac 128527 bytes_out 0 128527 bytes_in 0 128527 station_ip 5.119.49.133 128527 port 233 128527 unique_id port 128534 username barzegar 128534 mac 128534 bytes_out 13195 128534 bytes_in 5764 128534 station_ip 5.120.91.112 128534 port 149 128534 unique_id port 128534 remote_ip 10.8.1.174 128535 username ahmadipour 128535 kill_reason Relative expiration date has reached 128535 unique_id port 128535 bytes_out 0 128535 bytes_in 0 128535 station_ip 37.129.183.166 128535 port 15730144 128535 nas_port_type Virtual 128542 username sedighe 128542 mac 128542 bytes_out 0 128542 bytes_in 0 128542 station_ip 37.129.206.103 128542 port 240 128542 unique_id port 128542 remote_ip 10.8.0.146 128543 username vanila 128543 mac 128543 bytes_out 0 128543 bytes_in 0 128543 station_ip 83.122.202.245 128543 port 242 128543 unique_id port 128543 remote_ip 10.8.0.178 128550 username alinezhad 128550 kill_reason Absolute expiration date has reached 128550 unique_id port 128550 bytes_out 0 128550 bytes_in 0 128550 station_ip 5.202.65.1 128550 port 15730147 128550 nas_port_type Virtual 128555 username sedighe 128555 mac 128555 bytes_out 17657 128555 bytes_in 19177 128555 station_ip 83.123.75.239 128555 port 244 128555 unique_id port 128555 remote_ip 10.8.0.146 128557 username moradi 128557 mac 128557 bytes_out 0 128557 bytes_in 0 128557 station_ip 83.123.151.178 128557 port 242 128557 unique_id port 128557 remote_ip 10.8.0.250 128558 username jafari 128558 kill_reason Another user logged on this global unique id 128558 mac 128558 bytes_out 0 128558 bytes_in 0 128558 station_ip 37.137.25.13 128558 port 243 128558 unique_id port 128559 username sabaghnezhad 128559 mac 128559 bytes_out 202903 128559 bytes_in 1387406 128559 station_ip 37.129.47.155 128559 port 241 128559 unique_id port 128559 remote_ip 10.8.0.186 128560 username sabaghnezhad 128560 mac 128560 bytes_out 0 128560 bytes_in 0 128560 station_ip 37.129.47.155 128560 port 241 128560 unique_id port 128560 remote_ip 10.8.0.186 128567 username amir 128567 mac 128567 bytes_out 4279087 128567 bytes_in 41149982 128567 station_ip 46.225.232.199 128567 port 239 128567 unique_id port 128567 remote_ip 10.8.0.50 128573 username aminvpn 128573 unique_id port 128573 terminate_cause User-Request 128573 bytes_out 3684675 128573 bytes_in 11773959 128573 station_ip 5.119.89.2 128573 port 15730145 128573 nas_port_type Virtual 128573 remote_ip 5.5.5.244 128575 username mansour 128575 mac 128575 bytes_out 748179 128575 bytes_in 9022798 128575 station_ip 5.202.64.80 128575 port 219 128575 unique_id port 128575 remote_ip 10.8.0.30 128577 username sedighe 128577 mac 128577 bytes_out 11974 128577 bytes_in 14718 128577 station_ip 83.123.23.78 128577 port 219 128577 unique_id port 128577 remote_ip 10.8.0.146 128579 username mosi 128579 kill_reason Another user logged on this global unique id 128579 mac 128579 bytes_out 0 128579 bytes_in 0 128579 station_ip 151.235.124.20 128579 port 228 128579 unique_id port 128580 username mahdiyehalizadeh 128580 mac 128580 bytes_out 0 128580 bytes_in 0 128580 station_ip 83.122.149.36 128580 port 239 128580 unique_id port 128580 remote_ip 10.8.0.82 128585 username irannezhad 128585 mac 128585 bytes_out 485368 128523 bytes_in 102767351 128523 station_ip 151.235.120.123 128523 port 15730140 128523 nas_port_type Virtual 128523 remote_ip 5.5.5.93 128524 username sabaghnezhad 128524 mac 128524 bytes_out 0 128524 bytes_in 0 128524 station_ip 37.129.47.155 128524 port 241 128524 unique_id port 128524 remote_ip 10.8.0.186 128525 username sedighe 128525 mac 128525 bytes_out 0 128525 bytes_in 0 128525 station_ip 37.129.206.103 128525 port 240 128525 unique_id port 128525 remote_ip 10.8.0.146 128526 username barzegar 128526 mac 128526 bytes_out 0 128526 bytes_in 0 128526 station_ip 5.120.91.112 128526 port 242 128526 unique_id port 128526 remote_ip 10.8.0.234 128530 username khademi 128530 kill_reason Another user logged on this global unique id 128530 mac 128530 bytes_out 0 128530 bytes_in 0 128530 station_ip 113.203.20.65 128530 port 237 128530 unique_id port 128531 username sedighe 128531 mac 128531 bytes_out 0 128531 bytes_in 0 128531 station_ip 37.129.206.103 128531 port 243 128531 unique_id port 128531 remote_ip 10.8.0.146 128533 username aminvpn 128533 unique_id port 128533 terminate_cause Lost-Carrier 128533 bytes_out 1518932 128533 bytes_in 1421246 128533 station_ip 151.238.252.58 128533 port 15730139 128533 nas_port_type Virtual 128533 remote_ip 5.5.5.81 128536 username barzegar 128536 mac 128536 bytes_out 0 128536 bytes_in 0 128536 station_ip 5.120.91.112 128536 port 243 128536 unique_id port 128536 remote_ip 10.8.0.234 128538 username sedighe 128538 mac 128538 bytes_out 0 128538 bytes_in 0 128538 station_ip 37.129.206.103 128538 port 242 128538 unique_id port 128538 remote_ip 10.8.0.146 128541 username aminvpn 128541 unique_id port 128541 terminate_cause User-Request 128541 bytes_out 1663948 128541 bytes_in 5314726 128541 station_ip 5.119.89.2 128541 port 15730141 128541 nas_port_type Virtual 128541 remote_ip 5.5.5.243 128544 username mohammadjavad 128544 mac 128544 bytes_out 217504 128544 bytes_in 5603078 128544 station_ip 83.123.192.146 128544 port 149 128544 unique_id port 128544 remote_ip 10.8.1.146 128554 username sedighe 128554 mac 128554 bytes_out 67807 128554 bytes_in 102987 128554 station_ip 83.123.75.239 128554 port 240 128554 unique_id port 128554 remote_ip 10.8.0.146 128556 username vanila 128556 mac 128556 bytes_out 0 128556 bytes_in 0 128556 station_ip 83.122.202.245 128556 port 233 128556 unique_id port 128556 remote_ip 10.8.0.178 128561 username mosi 128561 kill_reason Another user logged on this global unique id 128561 mac 128561 bytes_out 0 128561 bytes_in 0 128561 station_ip 151.235.124.20 128561 port 228 128561 unique_id port 128563 username jafari 128563 kill_reason Another user logged on this global unique id 128563 mac 128563 bytes_out 0 128563 bytes_in 0 128563 station_ip 37.137.25.13 128563 port 243 128563 unique_id port 128564 username mosi 128564 kill_reason Another user logged on this global unique id 128564 mac 128564 bytes_out 0 128564 bytes_in 0 128564 station_ip 151.235.124.20 128564 port 228 128564 unique_id port 128565 username sedighe 128565 mac 128565 bytes_out 0 128565 bytes_in 0 128565 station_ip 83.123.23.78 128565 port 240 128565 unique_id port 128565 remote_ip 10.8.0.146 128570 username mosi 128570 kill_reason Another user logged on this global unique id 128570 mac 128570 bytes_out 0 128570 bytes_in 0 128570 station_ip 151.235.124.20 128570 port 228 128570 unique_id port 128571 username jafari 128571 kill_reason Another user logged on this global unique id 128571 mac 128571 bytes_out 0 128571 bytes_in 0 128571 station_ip 37.137.25.13 128552 port 15730146 128552 nas_port_type Virtual 128552 remote_ip 5.5.5.2 128553 username malekpoir 128553 mac 128553 bytes_out 0 128553 bytes_in 0 128553 station_ip 5.119.49.133 128553 port 233 128553 unique_id port 128562 username alihosseini1 128562 mac 128562 bytes_out 0 128562 bytes_in 0 128562 station_ip 5.119.56.174 128562 port 141 128562 unique_id port 128562 remote_ip 10.8.1.106 128566 username mehdizare 128566 mac 128566 bytes_out 0 128566 bytes_in 0 128566 station_ip 5.120.87.77 128566 port 137 128566 unique_id port 128566 remote_ip 10.8.1.42 128568 username alihosseini1 128568 mac 128568 bytes_out 0 128568 bytes_in 0 128568 station_ip 5.119.56.174 128568 port 241 128568 unique_id port 128568 remote_ip 10.8.0.166 128569 username alipour 128569 kill_reason Another user logged on this global unique id 128569 mac 128569 bytes_out 0 128569 bytes_in 0 128569 station_ip 113.203.6.241 128569 port 231 128569 unique_id port 128578 username jafari 128578 kill_reason Another user logged on this global unique id 128578 mac 128578 bytes_out 0 128578 bytes_in 0 128578 station_ip 37.137.25.13 128578 port 243 128578 unique_id port 128581 username amir 128581 mac 128581 bytes_out 87936 128581 bytes_in 677932 128581 station_ip 46.225.232.199 128581 port 219 128581 unique_id port 128581 remote_ip 10.8.0.50 128582 username amir 128582 mac 128582 bytes_out 0 128582 bytes_in 0 128582 station_ip 46.225.232.199 128582 port 219 128582 unique_id port 128582 remote_ip 10.8.0.50 128589 username mosi 128589 kill_reason Another user logged on this global unique id 128589 mac 128589 bytes_out 0 128589 bytes_in 0 128589 station_ip 151.235.124.20 128589 port 228 128589 unique_id port 128590 username jafari 128590 kill_reason Another user logged on this global unique id 128590 mac 128590 bytes_out 0 128590 bytes_in 0 128590 station_ip 37.137.25.13 128590 port 243 128590 unique_id port 128592 username kordestani 128592 mac 128592 bytes_out 0 128592 bytes_in 0 128592 station_ip 151.235.120.9 128592 port 149 128592 unique_id port 128594 username amir 128594 mac 128594 bytes_out 91100 128594 bytes_in 470024 128594 station_ip 46.225.232.199 128594 port 240 128594 unique_id port 128594 remote_ip 10.8.0.50 128595 username moradi 128595 kill_reason Another user logged on this global unique id 128595 mac 128595 bytes_out 0 128595 bytes_in 0 128595 station_ip 46.225.215.19 128595 port 241 128595 unique_id port 128596 username sabaghnezhad 128596 mac 128596 bytes_out 0 128596 bytes_in 0 128596 station_ip 37.129.115.227 128596 port 219 128596 unique_id port 128596 remote_ip 10.8.0.186 128598 username avaanna 128598 kill_reason Another user logged on this global unique id 128598 mac 128598 bytes_out 0 128598 bytes_in 0 128598 station_ip 83.123.197.31 128598 port 239 128598 unique_id port 128598 remote_ip 10.8.0.98 128600 username amir 128600 mac 128600 bytes_out 0 128600 bytes_in 0 128600 station_ip 46.225.232.199 128600 port 233 128600 unique_id port 128600 remote_ip 10.8.0.50 128602 username amir 128602 mac 128602 bytes_out 0 128602 bytes_in 0 128602 station_ip 46.225.232.199 128602 port 149 128602 unique_id port 128602 remote_ip 10.8.1.22 128606 username mohammadjavad 128606 mac 128606 bytes_out 5503165 128606 bytes_in 12448548 128606 station_ip 37.129.199.102 128606 port 141 128606 unique_id port 128606 remote_ip 10.8.1.146 128609 username mohammadjavad 128609 mac 128609 bytes_out 126373 128609 bytes_in 1554410 128609 station_ip 37.129.5.89 128609 port 141 128571 port 243 128571 unique_id port 128572 username moradi 128572 mac 128572 bytes_out 208692 128572 bytes_in 171292 128572 station_ip 83.123.151.178 128572 port 233 128572 unique_id port 128572 remote_ip 10.8.0.250 128574 username vanila 128574 mac 128574 bytes_out 0 128574 bytes_in 0 128574 station_ip 83.122.202.245 128574 port 240 128574 unique_id port 128574 remote_ip 10.8.0.178 128576 username sedighe 128576 mac 128576 bytes_out 0 128576 bytes_in 0 128576 station_ip 83.123.23.78 128576 port 242 128576 unique_id port 128576 remote_ip 10.8.0.146 128583 username moradi 128583 kill_reason Another user logged on this global unique id 128583 mac 128583 bytes_out 0 128583 bytes_in 0 128583 station_ip 46.225.215.19 128583 port 241 128583 unique_id port 128583 remote_ip 10.8.0.250 128584 username jafari 128584 kill_reason Another user logged on this global unique id 128584 mac 128584 bytes_out 0 128584 bytes_in 0 128584 station_ip 37.137.25.13 128584 port 243 128584 unique_id port 128586 username amir 128586 mac 128586 bytes_out 0 128586 bytes_in 0 128586 station_ip 46.225.232.199 128586 port 219 128586 unique_id port 128586 remote_ip 10.8.0.50 128599 username moradi 128599 kill_reason Another user logged on this global unique id 128599 mac 128599 bytes_out 0 128599 bytes_in 0 128599 station_ip 46.225.215.19 128599 port 241 128599 unique_id port 128601 username mohammadmahdi 128601 kill_reason Another user logged on this global unique id 128601 mac 128601 bytes_out 0 128601 bytes_in 0 128601 station_ip 5.120.63.106 128601 port 219 128601 unique_id port 128601 remote_ip 10.8.0.54 128603 username moradi 128603 kill_reason Another user logged on this global unique id 128603 mac 128603 bytes_out 0 128603 bytes_in 0 128603 station_ip 46.225.215.19 128603 port 241 128603 unique_id port 128604 username farhad2 128604 mac 128604 bytes_out 0 128604 bytes_in 0 128604 station_ip 5.119.166.60 128604 port 151 128604 unique_id port 128604 remote_ip 10.8.1.222 128607 username amir 128607 mac 128607 bytes_out 0 128607 bytes_in 0 128607 station_ip 46.225.232.199 128607 port 149 128607 unique_id port 128607 remote_ip 10.8.1.22 128611 username moradi 128611 mac 128611 bytes_out 0 128611 bytes_in 0 128611 station_ip 46.225.215.19 128611 port 241 128611 unique_id port 65561 username arezoo 65561 kill_reason Maximum check online fails reached 65561 mac 5.237.65.11:49188: Unknown host 65561 bytes_out 0 65561 bytes_in 0 65561 station_ip 5.237.65.11:49188 65561 port 1017 65561 unique_id port 128612 username sabaghnezhad 128612 mac 128612 bytes_out 133193 128612 bytes_in 445300 128612 station_ip 37.129.138.115 128612 port 233 128612 unique_id port 128612 remote_ip 10.8.0.186 128613 username sedighe 128613 mac 128613 bytes_out 0 128613 bytes_in 0 128613 station_ip 37.129.174.64 128613 port 149 128613 unique_id port 128613 remote_ip 10.8.1.78 128617 username amir 128617 mac 128617 bytes_out 417525 128617 bytes_in 494585 128617 station_ip 46.225.232.199 128617 port 219 128617 unique_id port 128617 remote_ip 10.8.0.50 128622 username alipour 128622 mac 128622 bytes_out 0 128622 bytes_in 0 128622 station_ip 113.203.6.241 128622 port 231 128622 unique_id port 128625 username sedighe 128625 mac 128625 bytes_out 0 128625 bytes_in 0 128625 station_ip 37.129.174.64 128625 port 219 128625 unique_id port 128625 remote_ip 10.8.0.146 128630 username mohammadmahdi 128630 mac 128630 bytes_out 1086418 128630 bytes_in 12212164 128630 station_ip 5.120.63.106 128585 bytes_in 4154165 128585 station_ip 37.129.82.181 128585 port 219 128585 unique_id port 128585 remote_ip 10.8.0.182 128587 username moradi 128587 kill_reason Another user logged on this global unique id 128587 mac 128587 bytes_out 0 128587 bytes_in 0 128587 station_ip 46.225.215.19 128587 port 241 128587 unique_id port 128588 username mahdiyehalizadeh 128588 mac 128588 bytes_out 351957 128588 bytes_in 2464310 128588 station_ip 83.122.149.36 128588 port 233 128588 unique_id port 128588 remote_ip 10.8.0.82 128591 username kordestani 128591 kill_reason Another user logged on this global unique id 128591 mac 128591 bytes_out 0 128591 bytes_in 0 128591 station_ip 151.235.120.9 128591 port 149 128591 unique_id port 128591 remote_ip 10.8.1.98 128593 username mehdizare 128593 mac 128593 bytes_out 656958 128593 bytes_in 11284301 128593 station_ip 5.120.87.77 128593 port 137 128593 unique_id port 128593 remote_ip 10.8.1.42 128597 username mohammadmahdi 128597 mac 128597 bytes_out 2174431 128597 bytes_in 23184364 128597 station_ip 5.120.63.106 128597 port 233 128597 unique_id port 128597 remote_ip 10.8.0.54 128605 username avaanna 128605 mac 128605 bytes_out 0 128605 bytes_in 0 128605 station_ip 83.123.197.31 128605 port 239 128605 unique_id port 128608 username mohammadmahdi 128608 mac 128608 bytes_out 0 128608 bytes_in 0 128608 station_ip 5.120.63.106 128608 port 219 128608 unique_id port 128610 username mosi 128610 kill_reason Another user logged on this global unique id 128610 mac 128610 bytes_out 0 128610 bytes_in 0 128610 station_ip 151.235.124.20 128610 port 228 128610 unique_id port 128616 username sedighe 128616 mac 128616 bytes_out 0 128616 bytes_in 0 128616 station_ip 37.129.174.64 128616 port 149 128616 unique_id port 128616 remote_ip 10.8.1.78 128618 username sedighe 128618 mac 128618 bytes_out 0 128618 bytes_in 0 128618 station_ip 37.129.174.64 128618 port 149 128618 unique_id port 128618 remote_ip 10.8.1.78 128620 username moradi 128620 mac 128620 bytes_out 0 128620 bytes_in 0 128620 station_ip 37.129.110.243 128620 port 241 128620 unique_id port 128620 remote_ip 10.8.0.250 128621 username khademi 128621 kill_reason Another user logged on this global unique id 128621 mac 128621 bytes_out 0 128621 bytes_in 0 128621 station_ip 113.203.20.65 128621 port 237 128621 unique_id port 128624 username saeed9658 128624 mac 128624 bytes_out 2830 128624 bytes_in 5283 128624 station_ip 5.119.106.59 128624 port 231 128624 unique_id port 128624 remote_ip 10.8.0.62 128626 username mehdizare 128626 mac 128626 bytes_out 48480 128626 bytes_in 68288 65578 username arezoo 65578 kill_reason Maximum check online fails reached 65578 mac 5.237.65.11:52048: Unknown host 65578 bytes_out 0 65578 bytes_in 0 65578 station_ip 5.237.65.11:52048 65578 port 1017 65578 unique_id port 128626 station_ip 5.120.87.77 128626 port 137 128626 unique_id port 128626 remote_ip 10.8.1.42 128628 username sedighe 128628 mac 128628 bytes_out 0 128628 bytes_in 0 128628 station_ip 37.129.174.64 128628 port 231 128628 unique_id port 128628 remote_ip 10.8.0.146 128629 username sedighe 128629 mac 128629 bytes_out 2034 128629 bytes_in 4493 128629 station_ip 37.129.174.64 128629 port 219 128629 unique_id port 128629 remote_ip 10.8.0.146 128631 username amir 128631 mac 128631 bytes_out 0 128631 bytes_in 0 128631 station_ip 46.225.232.199 128631 port 233 128631 unique_id port 128631 remote_ip 10.8.0.50 128633 username jafari 128633 mac 128633 bytes_out 0 128609 unique_id port 128609 remote_ip 10.8.1.146 128614 username sedighe 128614 mac 128614 bytes_out 0 128614 bytes_in 0 128614 station_ip 37.129.174.64 128614 port 149 128614 unique_id port 128614 remote_ip 10.8.1.78 128615 username vanila 128615 mac 128615 bytes_out 2115088 128615 bytes_in 2435844 128615 station_ip 83.122.202.245 128615 port 233 128615 unique_id port 128615 remote_ip 10.8.0.178 128619 username malekpoir 128619 mac 128619 bytes_out 2399589 128619 bytes_in 29084843 128619 station_ip 5.119.49.133 128619 port 229 128619 unique_id port 128619 remote_ip 10.8.0.58 128623 username hosseine 128623 kill_reason Another user logged on this global unique id 128623 mac 128623 bytes_out 0 128623 bytes_in 0 128623 station_ip 37.129.69.16 128623 port 234 128623 unique_id port 128623 remote_ip 10.8.0.238 128627 username saeed9658 128627 mac 128627 bytes_out 0 128627 bytes_in 0 128627 station_ip 5.119.106.59 128627 port 219 128627 unique_id port 128627 remote_ip 10.8.0.62 128632 username mehdizare 128632 mac 128632 bytes_out 52134 128632 bytes_in 551126 128632 station_ip 5.120.87.77 128632 port 231 128632 unique_id port 128632 remote_ip 10.8.0.90 128637 username aminvpn 128637 unique_id port 128637 terminate_cause Lost-Carrier 128637 bytes_out 165799 128637 bytes_in 1926999 128637 station_ip 31.57.129.247 128637 port 15730151 128637 nas_port_type Virtual 128637 remote_ip 5.5.5.21 128641 username sade 128641 kill_reason Relative expiration date has reached 128641 unique_id port 128641 bytes_out 0 128641 bytes_in 0 128641 station_ip 5.120.40.186 128641 port 15730153 128641 nas_port_type Virtual 128644 username mohammadjavad 128644 mac 128644 bytes_out 118019 128644 bytes_in 139848 128644 station_ip 37.129.5.89 128644 port 240 128644 unique_id port 128644 remote_ip 10.8.0.142 128647 username kordestani 128647 mac 128647 bytes_out 0 128647 bytes_in 0 128647 station_ip 37.129.94.10 128647 port 137 128647 unique_id port 128647 remote_ip 10.8.1.98 128648 username alireza 128648 unique_id port 128648 terminate_cause Lost-Carrier 128648 bytes_out 6675881 128648 bytes_in 183339316 128648 station_ip 5.120.110.186 128648 port 15730149 128648 nas_port_type Virtual 128648 remote_ip 5.5.5.18 128652 username amir 128652 kill_reason Another user logged on this global unique id 128652 mac 128652 bytes_out 0 128652 bytes_in 0 128652 station_ip 46.225.232.199 128652 port 231 128652 unique_id port 128652 remote_ip 10.8.0.50 128653 username mehdizare 128653 kill_reason Another user logged on this global unique id 128653 mac 128653 bytes_out 0 128653 bytes_in 0 128653 station_ip 5.120.87.77 128653 port 246 128653 unique_id port 128653 remote_ip 10.8.0.90 128657 username sabaghnezhad 128657 kill_reason Another user logged on this global unique id 128657 mac 128657 bytes_out 0 128657 bytes_in 0 128657 station_ip 83.122.189.219 128657 port 243 128657 unique_id port 128657 remote_ip 10.8.0.186 128661 username saeed9658 128661 mac 128661 bytes_out 0 128661 bytes_in 0 128661 station_ip 5.119.106.59 128661 port 219 128661 unique_id port 65631 username arezoo 65631 kill_reason Maximum check online fails reached 65631 mac 5.237.65.11:49201: Unknown host 65631 bytes_out 0 65631 bytes_in 0 65631 station_ip 5.237.65.11:49201 65631 port 1017 65631 unique_id port 128661 remote_ip 10.8.0.62 128662 username irannezhad 128662 mac 128662 bytes_out 0 128662 bytes_in 0 128662 station_ip 37.129.77.189 128662 port 239 128662 unique_id port 128665 username irannezhad 128665 mac 128665 bytes_out 0 128665 bytes_in 0 128665 station_ip 37.129.77.189 128665 port 137 128630 port 233 128630 unique_id port 128630 remote_ip 10.8.0.54 128635 username jafari 128635 mac 128635 bytes_out 7230 128635 bytes_in 10810 128635 station_ip 37.137.25.13 128635 port 231 128635 unique_id port 128635 remote_ip 10.8.0.242 128640 username sade 128640 kill_reason Relative expiration date has reached 128640 unique_id port 128640 bytes_out 0 128640 bytes_in 0 128640 station_ip 5.120.40.186 128640 port 15730152 128640 nas_port_type Virtual 128643 username mostafa_es78 128643 unique_id port 128643 terminate_cause User-Request 128643 bytes_out 399179 128643 bytes_in 3314255 128643 station_ip 178.236.35.96 128643 port 15730150 128643 nas_port_type Virtual 128643 remote_ip 5.5.5.19 128645 username irannezhad 128645 kill_reason Another user logged on this global unique id 128645 mac 128645 bytes_out 0 128645 bytes_in 0 128645 station_ip 37.129.77.189 128645 port 239 128645 unique_id port 128645 remote_ip 10.8.0.182 128646 username alihosseini1 128646 mac 128646 bytes_out 274156 128646 bytes_in 310038 128646 station_ip 5.119.77.240 128646 port 219 128646 unique_id port 128646 remote_ip 10.8.0.166 128650 username saeed9658 128650 mac 128650 bytes_out 2758676 128650 bytes_in 36330345 128650 station_ip 5.119.106.59 128650 port 241 128650 unique_id port 128650 remote_ip 10.8.0.62 128658 username saeed9658 128658 mac 128658 bytes_out 0 128658 bytes_in 0 128658 station_ip 5.119.106.59 128658 port 137 128658 unique_id port 128658 remote_ip 10.8.1.210 128663 username saeed9658 128663 mac 128663 bytes_out 0 128663 bytes_in 0 128663 station_ip 5.119.106.59 128663 port 239 128663 unique_id port 128663 remote_ip 10.8.0.62 128668 username irannezhad 128668 mac 128668 bytes_out 0 128668 bytes_in 0 128668 station_ip 37.129.77.189 128668 port 151 128668 unique_id port 128668 remote_ip 10.8.1.134 128670 username irannezhad 128670 kill_reason Maximum number of concurrent logins reached 128670 mac 128670 bytes_out 0 128670 bytes_in 0 128670 station_ip 37.129.77.189 128670 port 152 128670 unique_id port 128674 username irannezhad 128674 kill_reason Maximum check online fails reached 128674 mac 128674 bytes_out 0 128674 bytes_in 0 128674 station_ip 37.129.77.189 128674 port 151 128674 unique_id port 128675 username farhad2 128675 mac 128675 bytes_out 0 128675 bytes_in 0 128675 station_ip 5.119.33.119 128675 port 229 128675 unique_id port 128675 remote_ip 10.8.0.190 128676 username mohammadjavad 128676 mac 128676 bytes_out 0 128676 bytes_in 0 128676 station_ip 37.129.244.104 128676 port 219 128676 unique_id port 128676 remote_ip 10.8.0.142 128678 username khademi 128678 kill_reason Another user logged on this global unique id 128678 mac 128678 bytes_out 0 128678 bytes_in 0 128678 station_ip 113.203.20.65 128678 port 237 128678 unique_id port 128679 username amir 128679 kill_reason Another user logged on this global unique id 128679 mac 128679 bytes_out 0 128679 bytes_in 0 128679 station_ip 46.225.232.199 128679 port 231 128679 unique_id port 128685 username saeed9658 128685 mac 128685 bytes_out 0 128685 bytes_in 0 128685 station_ip 5.119.106.59 128685 port 152 128685 unique_id port 128685 remote_ip 10.8.1.210 128690 username amirabbas 128690 unique_id port 128690 terminate_cause User-Request 128690 bytes_out 2467836 128690 bytes_in 50360789 128690 station_ip 37.27.57.201 128690 port 15730154 128690 nas_port_type Virtual 128690 remote_ip 5.5.5.26 128694 username saeed9658 128694 mac 128694 bytes_out 0 128694 bytes_in 0 128694 station_ip 5.119.106.59 128694 port 239 128694 unique_id port 128633 bytes_in 0 128633 station_ip 37.137.25.13 128633 port 243 128633 unique_id port 128634 username kordestani 128634 mac 128634 bytes_out 1095895 128634 bytes_in 20110107 128634 station_ip 37.129.94.10 128634 port 141 128634 unique_id port 128634 remote_ip 10.8.1.98 128636 username sedighe 128636 mac 128636 bytes_out 0 128636 bytes_in 0 128636 station_ip 37.129.174.64 128636 port 242 128636 unique_id port 128636 remote_ip 10.8.0.146 128638 username forozande 128638 mac 128638 bytes_out 662005 128638 bytes_in 3513631 128638 station_ip 37.129.2.141 128638 port 244 128638 unique_id port 128638 remote_ip 10.8.0.74 128639 username jafari 128639 mac 128639 bytes_out 7737 128639 bytes_in 9217 128639 station_ip 37.137.25.13 128639 port 245 128639 unique_id port 128639 remote_ip 10.8.0.242 128642 username mosi 128642 kill_reason Another user logged on this global unique id 128642 mac 128642 bytes_out 0 128642 bytes_in 0 128642 station_ip 151.235.124.20 128642 port 228 128642 unique_id port 128649 username alihosseini1 128649 mac 128649 bytes_out 36372 128649 bytes_in 28206 128649 station_ip 5.119.77.240 128649 port 219 128649 unique_id port 128649 remote_ip 10.8.0.166 128651 username saeed9658 128651 mac 128651 bytes_out 0 128651 bytes_in 0 128651 station_ip 5.119.106.59 128651 port 219 128651 unique_id port 128651 remote_ip 10.8.0.62 128654 username mosi 128654 kill_reason Another user logged on this global unique id 128654 mac 128654 bytes_out 0 128654 bytes_in 0 128654 station_ip 151.235.124.20 128654 port 228 128654 unique_id port 128655 username saeed9658 128655 mac 128655 bytes_out 0 128655 bytes_in 0 128655 station_ip 5.119.106.59 128655 port 137 128655 unique_id port 128655 remote_ip 10.8.1.210 128656 username mahdixz 128656 unique_id port 128656 terminate_cause Lost-Carrier 128656 bytes_out 8304862 128656 bytes_in 90673723 128656 station_ip 151.235.120.123 128656 port 15730148 128656 nas_port_type Virtual 128656 remote_ip 5.5.5.17 128659 username irannezhad 128659 kill_reason Another user logged on this global unique id 128659 mac 128659 bytes_out 0 128659 bytes_in 0 128659 station_ip 37.129.77.189 128659 port 239 128659 unique_id port 128660 username khademi 128660 kill_reason Another user logged on this global unique id 128660 mac 128660 bytes_out 0 128660 bytes_in 0 128660 station_ip 113.203.20.65 128660 port 237 128660 unique_id port 128664 username moradi 128664 mac 128664 bytes_out 338003 128664 bytes_in 715184 128664 station_ip 37.129.110.243 128664 port 229 128664 unique_id port 128664 remote_ip 10.8.0.250 128666 username irannezhad 128666 mac 128666 bytes_out 0 128666 bytes_in 0 128666 station_ip 37.129.77.189 128666 port 137 128666 unique_id port 128666 remote_ip 10.8.1.134 128671 username alihosseini1 128671 mac 128671 bytes_out 0 65626 username arezoo 65626 kill_reason Maximum check online fails reached 65626 mac 5.237.65.11:49541: Unknown host 65626 bytes_out 0 65626 bytes_in 0 65626 station_ip 5.237.65.11:49541 65626 port 1017 65626 unique_id port 128671 bytes_in 0 128671 station_ip 5.119.77.240 128671 port 229 128671 unique_id port 128671 remote_ip 10.8.0.166 128673 username irannezhad 128673 kill_reason Maximum check online fails reached 128673 mac 128673 bytes_out 0 128673 bytes_in 0 128673 station_ip 37.129.77.189 128673 port 137 128673 unique_id port 128677 username farhad2 128677 mac 128677 bytes_out 0 128677 bytes_in 0 128677 station_ip 5.119.33.119 128677 port 229 128677 unique_id port 128677 remote_ip 10.8.0.190 128682 username hamidsalari 128665 unique_id port 128665 remote_ip 10.8.1.134 128667 username irannezhad 128667 mac 128667 bytes_out 0 128667 bytes_in 0 128667 station_ip 37.129.77.189 128667 port 137 128667 unique_id port 128667 remote_ip 10.8.1.134 128669 username alihosseini1 128669 mac 128669 bytes_out 0 128669 bytes_in 0 128669 station_ip 5.119.77.240 128669 port 229 128669 unique_id port 128669 remote_ip 10.8.0.166 128672 username mosi 128672 kill_reason Another user logged on this global unique id 128672 mac 128672 bytes_out 0 128672 bytes_in 0 128672 station_ip 151.235.124.20 128672 port 228 128672 unique_id port 128680 username mehdizare 128680 kill_reason Another user logged on this global unique id 128680 mac 128680 bytes_out 0 128680 bytes_in 0 128680 station_ip 5.120.87.77 128680 port 246 128680 unique_id port 128681 username mosi 128681 kill_reason Another user logged on this global unique id 128681 mac 128681 bytes_out 0 128681 bytes_in 0 128681 station_ip 151.235.124.20 128681 port 228 128681 unique_id port 128683 username hosseine 128683 kill_reason Another user logged on this global unique id 128683 mac 128683 bytes_out 0 128683 bytes_in 0 128683 station_ip 37.129.69.16 128683 port 234 128683 unique_id port 128684 username farhad2 128684 mac 128684 bytes_out 0 128684 bytes_in 0 128684 station_ip 5.119.33.119 128684 port 219 128684 unique_id port 128684 remote_ip 10.8.0.190 128687 username jafari 128687 mac 128687 bytes_out 0 128687 bytes_in 0 128687 station_ip 37.137.25.13 128687 port 244 128687 unique_id port 128687 remote_ip 10.8.0.242 128688 username hamidsalari 128688 kill_reason Another user logged on this global unique id 128688 mac 128688 bytes_out 0 128688 bytes_in 0 128688 station_ip 5.119.188.47 128688 port 245 128688 unique_id port 128689 username zare 128689 mac 128689 bytes_out 0 128689 bytes_in 0 128689 station_ip 37.27.22.122 128689 port 240 128689 unique_id port 128689 remote_ip 10.8.0.18 128692 username zare 128692 mac 128692 bytes_out 0 128692 bytes_in 0 128692 station_ip 37.27.22.122 128692 port 239 128692 unique_id port 128692 remote_ip 10.8.0.18 128693 username zare 128693 mac 128693 bytes_out 0 128693 bytes_in 0 128693 station_ip 37.27.22.122 128693 port 241 128693 unique_id port 128693 remote_ip 10.8.0.18 128696 username farhad2 128696 mac 128696 bytes_out 0 128696 bytes_in 0 128696 station_ip 5.119.33.119 128696 port 240 128696 unique_id port 128696 remote_ip 10.8.0.190 128698 username zare 128698 mac 128698 bytes_out 0 128698 bytes_in 0 128698 station_ip 37.27.22.122 128698 port 241 128698 unique_id port 65658 username arezoo 65658 kill_reason Maximum check online fails reached 65658 mac 5.237.77.101:49252: Unknown host 65658 bytes_out 0 65658 bytes_in 0 65658 station_ip 5.237.77.101:49252 65658 port 1017 65658 unique_id port 65660 username arezoo 65660 kill_reason Maximum check online fails reached 65660 mac 5.237.71.9:52761: Unknown host 65660 bytes_out 0 65660 bytes_in 0 65660 station_ip 5.237.71.9:52761 65660 port 1017 65660 unique_id port 65662 username arezoo 65662 kill_reason Maximum check online fails reached 65662 mac 5.237.71.9:52884: Unknown host 65662 bytes_out 0 65662 bytes_in 0 65662 station_ip 5.237.71.9:52884 65662 port 1017 128698 remote_ip 10.8.0.18 128705 username sobhan 128705 unique_id port 128705 terminate_cause User-Request 128705 bytes_out 1740329 128705 bytes_in 18770058 128705 station_ip 5.119.246.59 128705 port 15730155 128705 nas_port_type Virtual 128705 remote_ip 5.5.5.28 128709 username sabaghnezhad 128709 mac 128709 bytes_out 0 128709 bytes_in 0 128682 kill_reason Another user logged on this global unique id 128682 mac 128682 bytes_out 0 128682 bytes_in 0 128682 station_ip 5.119.188.47 128682 port 245 128682 unique_id port 128682 remote_ip 10.8.0.230 128686 username farhad2 128686 mac 128686 bytes_out 0 128686 bytes_in 0 128686 station_ip 5.119.33.119 128686 port 229 128686 unique_id port 128686 remote_ip 10.8.0.190 128691 username hoorieh 128691 kill_reason Another user logged on this global unique id 128691 mac 128691 bytes_out 0 128691 bytes_in 0 128691 station_ip 5.120.39.152 128691 port 229 128691 unique_id port 128691 remote_ip 10.8.0.38 128695 username yahodi 128695 mac 128695 bytes_out 1418657 128695 bytes_in 14934389 128695 station_ip 83.122.210.62 128695 port 153 128695 unique_id port 128695 remote_ip 10.8.1.218 128701 username zare 128701 mac 128701 bytes_out 0 128701 bytes_in 0 128701 station_ip 37.27.22.122 128701 port 153 128701 unique_id port 128701 remote_ip 10.8.1.58 128704 username hoorieh 128704 kill_reason Another user logged on this global unique id 128704 mac 128704 bytes_out 0 128704 bytes_in 0 128704 station_ip 5.120.39.152 65659 username arezoo 65659 kill_reason Maximum check online fails reached 65659 mac 5.237.77.101:49224: Unknown host 65659 bytes_out 0 65659 bytes_in 0 65659 station_ip 5.237.77.101:49224 65659 port 1017 65659 unique_id port 65661 username arezoo 65661 kill_reason Another user logged on this global unique id 65661 mac 5.237.71.9:52858: Unknown host 65661 bytes_out 0 65661 bytes_in 0 65661 station_ip 5.237.71.9:52858 65661 port 1017 65661 unique_id port 65662 unique_id port 65663 username arezoo 65663 kill_reason Maximum check online fails reached 65663 mac 5.237.71.9:49192: Unknown host 65663 bytes_out 0 65663 bytes_in 0 65663 station_ip 5.237.71.9:49192 65663 port 1017 65663 unique_id port 128704 port 229 128704 unique_id port 128706 username hamidsalari 128706 kill_reason Another user logged on this global unique id 128706 mac 128706 bytes_out 0 128706 bytes_in 0 128706 station_ip 5.119.188.47 128706 port 245 128706 unique_id port 128708 username forozande 128708 mac 128708 bytes_out 0 128708 bytes_in 0 128708 station_ip 83.123.31.178 128708 port 239 128708 unique_id port 128708 remote_ip 10.8.0.74 128710 username hoorieh 128710 kill_reason Another user logged on this global unique id 128710 mac 128710 bytes_out 0 128710 bytes_in 0 128710 station_ip 5.120.39.152 128710 port 229 128710 unique_id port 128712 username amir 128712 kill_reason Another user logged on this global unique id 128712 mac 128712 bytes_out 0 128712 bytes_in 0 128712 station_ip 46.225.232.199 128712 port 231 128712 unique_id port 128717 username forozande 128717 mac 128717 bytes_out 0 128717 bytes_in 0 128717 station_ip 83.122.102.158 128717 port 239 65671 username arezoo 65671 kill_reason Another user logged on this global unique id 65671 mac 5.237.92.99:49186: Unknown host 65671 bytes_out 0 65671 bytes_in 0 65671 station_ip 5.237.92.99:49186 65671 port 1017 65671 unique_id port 65672 username arezoo 65672 kill_reason Another user logged on this global unique id 65672 mac 5.237.92.99:49198: Unknown host 65672 bytes_out 0 65672 bytes_in 0 65672 station_ip 5.237.92.99:49198 65672 port 1017 65672 unique_id port 65673 username arezoo 65673 kill_reason Maximum check online fails reached 65673 mac 5.237.92.99:49216: Unknown host 65673 bytes_out 0 65673 bytes_in 0 65673 station_ip 5.237.92.99:49216 65673 port 1017 65673 unique_id port 128717 unique_id port 128717 remote_ip 10.8.0.74 128718 username zare 128718 mac 128718 bytes_out 0 128718 bytes_in 0 128718 station_ip 37.27.22.122 128718 port 239 128718 unique_id port 128694 remote_ip 10.8.0.62 128697 username zare 128697 mac 128697 bytes_out 0 128697 bytes_in 0 128697 station_ip 37.27.22.122 128697 port 239 128697 unique_id port 128697 remote_ip 10.8.0.18 128699 username hamidsalari 128699 kill_reason Another user logged on this global unique id 128699 mac 128699 bytes_out 0 128699 bytes_in 0 128699 station_ip 5.119.188.47 128699 port 245 128699 unique_id port 128700 username zare 128700 mac 128700 bytes_out 0 128700 bytes_in 0 128700 station_ip 37.27.22.122 128700 port 241 128700 unique_id port 128700 remote_ip 10.8.0.18 128702 username zare 128702 mac 128702 bytes_out 0 128702 bytes_in 0 128702 station_ip 37.27.22.122 128702 port 241 128702 unique_id port 128702 remote_ip 10.8.0.18 128703 username sabaghnezhad 128703 mac 128703 bytes_out 0 128703 bytes_in 0 128703 station_ip 83.122.189.219 128703 port 243 128703 unique_id port 128707 username sabaghnezhad 128707 mac 128707 bytes_out 0 128707 bytes_in 0 128707 station_ip 83.122.189.219 128707 port 243 128707 unique_id port 65665 username arezoo 65665 kill_reason Maximum check online fails reached 65665 mac 5.237.71.9:49204: Unknown host 65665 bytes_out 0 65665 bytes_in 0 65665 station_ip 5.237.71.9:49204 65665 port 1017 65665 unique_id port 128707 remote_ip 10.8.0.186 128720 username zare 128720 mac 128720 bytes_out 0 128720 bytes_in 0 128720 station_ip 37.27.22.122 128720 port 243 128720 unique_id port 128720 remote_ip 10.8.0.18 128724 username mosi 128724 kill_reason Another user logged on this global unique id 128724 mac 128724 bytes_out 0 128724 bytes_in 0 128724 station_ip 151.235.124.20 65675 username arezoo 65675 kill_reason Another user logged on this global unique id 65675 mac 5.237.92.99:49195: Unknown host 65675 bytes_out 0 65675 bytes_in 0 65675 station_ip 5.237.92.99:49195 65675 port 1017 65675 unique_id port 65676 username arezoo 65676 kill_reason Maximum check online fails reached 65676 mac 5.237.92.99:49221: Unknown host 65676 bytes_out 0 65676 bytes_in 0 65676 station_ip 5.237.92.99:49221 65676 port 1017 65676 unique_id port 128724 port 228 128724 unique_id port 128726 username zare 128726 kill_reason Maximum check online fails reached 128726 mac 128726 bytes_out 0 128726 bytes_in 0 128726 station_ip 37.27.22.122 128726 port 243 128726 unique_id port 128730 username farhad2 128730 mac 128730 bytes_out 0 128730 bytes_in 0 128730 station_ip 5.119.33.119 128730 port 239 128730 unique_id port 128730 remote_ip 10.8.0.190 128738 username hoorieh 128738 kill_reason Another user logged on this global unique id 128738 mac 128738 bytes_out 0 128738 bytes_in 0 128738 station_ip 5.120.39.152 65680 username arezoo 65680 kill_reason Maximum check online fails reached 65680 mac 5.237.78.97:49761: Unknown host 65680 bytes_out 0 65680 bytes_in 0 65680 station_ip 5.237.78.97:49761 65680 port 1017 65680 unique_id port 128738 port 239 128738 unique_id port 128738 remote_ip 10.8.0.38 128739 username hosseine 128739 mac 128739 bytes_out 0 128739 bytes_in 0 128739 station_ip 37.129.69.16 65682 username arezoo 65682 kill_reason Maximum check online fails reached 65682 mac 5.238.62.189:53207: Unknown host 65682 bytes_out 0 65682 bytes_in 0 65682 station_ip 5.238.62.189:53207 65682 port 1017 65682 unique_id port 128739 port 234 128739 unique_id port 128743 username alipour 128743 mac 128743 bytes_out 3181024 128743 bytes_in 25400188 128743 station_ip 113.203.6.241 128743 port 149 128743 unique_id port 128743 remote_ip 10.8.1.50 128746 username kordestani 128746 mac 128746 bytes_out 845462 128746 bytes_in 11368316 128709 station_ip 83.122.189.219 128709 port 153 128709 unique_id port 128709 remote_ip 10.8.1.130 128711 username malekpoir 128711 kill_reason Another user logged on this global unique id 128711 mac 128711 bytes_out 0 128711 bytes_in 0 128711 station_ip 5.119.49.133 128711 port 242 128711 unique_id port 128711 remote_ip 10.8.0.58 128713 username zare 128713 mac 128713 bytes_out 0 128713 bytes_in 0 128713 station_ip 37.27.22.122 128713 port 153 128713 unique_id port 128713 remote_ip 10.8.1.58 128714 username hamidsalari 128714 kill_reason Another user logged on this global unique id 128714 mac 128714 bytes_out 0 128714 bytes_in 0 128714 station_ip 5.119.188.47 128714 port 245 128714 unique_id port 128715 username zare 128715 mac 128715 bytes_out 0 128715 bytes_in 0 128715 station_ip 37.27.22.122 128715 port 154 128715 unique_id port 128715 remote_ip 10.8.1.58 128716 username zare 128716 kill_reason Maximum check online fails reached 128716 mac 128716 bytes_out 0 128716 bytes_in 0 128716 station_ip 37.27.22.122 128716 port 153 128716 unique_id port 128722 username hoorieh 128722 mac 128722 bytes_out 0 128722 bytes_in 0 128722 station_ip 5.120.39.152 128722 port 229 128722 unique_id port 128723 username saeed9658 128723 mac 128723 bytes_out 0 128723 bytes_in 0 128723 station_ip 5.119.106.59 128723 port 152 128723 unique_id port 128723 remote_ip 10.8.1.210 128725 username moradi 128725 mac 128725 bytes_out 0 128725 bytes_in 0 128725 station_ip 37.129.30.19 128725 port 239 128725 unique_id port 128725 remote_ip 10.8.0.250 128728 username hoorieh 128728 kill_reason Another user logged on this global unique id 128728 mac 128728 bytes_out 0 128728 bytes_in 0 128728 station_ip 5.120.39.152 128728 port 229 128728 unique_id port 128728 remote_ip 10.8.0.38 128733 username farhad2 128733 mac 128733 bytes_out 0 128733 bytes_in 0 128733 station_ip 5.119.33.119 128733 port 239 128733 unique_id port 128733 remote_ip 10.8.0.190 128737 username farhad2 128737 mac 128737 bytes_out 0 128737 bytes_in 0 128737 station_ip 5.119.33.119 128737 port 152 128737 unique_id port 128737 remote_ip 10.8.1.222 128740 username amir 128740 kill_reason Another user logged on this global unique id 128740 mac 128740 bytes_out 0 128740 bytes_in 0 128740 station_ip 46.225.232.199 128740 port 231 128740 unique_id port 128742 username farhad2 128742 mac 128742 bytes_out 0 128742 bytes_in 0 128742 station_ip 5.119.33.119 128742 port 240 128742 unique_id port 128742 remote_ip 10.8.0.190 128747 username kordestani 128747 mac 128747 bytes_out 0 128747 bytes_in 0 128747 station_ip 151.235.120.1 128747 port 141 128747 unique_id port 128747 remote_ip 10.8.1.98 128749 username hoorieh 128749 kill_reason Another user logged on this global unique id 128749 mac 128749 bytes_out 0 128749 bytes_in 0 128749 station_ip 5.120.39.152 128749 port 239 128749 unique_id port 128752 username hoorieh 128752 mac 128752 bytes_out 0 128752 bytes_in 0 128752 station_ip 5.120.39.152 128752 port 239 128752 unique_id port 128755 username sadegh 128755 kill_reason Relative expiration date has reached 128755 unique_id port 128755 bytes_out 0 128755 bytes_in 0 128755 station_ip 5.119.199.69 128755 port 15730158 128755 nas_port_type Virtual 128758 username mansur 128758 kill_reason Another user logged on this global unique id 128758 mac 128758 bytes_out 0 128758 bytes_in 0 128758 station_ip 5.119.100.61 128758 port 240 128758 unique_id port 128758 remote_ip 10.8.0.210 128761 username amir 128865 unique_id port 128718 remote_ip 10.8.0.18 128719 username zare 128719 mac 128719 bytes_out 0 128719 bytes_in 0 128719 station_ip 37.27.22.122 128719 port 239 128719 unique_id port 128719 remote_ip 10.8.0.18 128721 username zare 128721 mac 128721 bytes_out 0 128721 bytes_in 0 128721 station_ip 37.27.22.122 128721 port 154 128721 unique_id port 128721 remote_ip 10.8.1.58 128727 username farhad2 128727 mac 128727 bytes_out 0 128727 bytes_in 0 128727 station_ip 5.119.33.119 128727 port 240 128727 unique_id port 128727 remote_ip 10.8.0.190 128729 username malekpoir 128729 mac 128729 bytes_out 0 128729 bytes_in 0 128729 station_ip 5.119.49.133 128729 port 242 128729 unique_id port 128731 username hoorieh 128731 mac 128731 bytes_out 0 128731 bytes_in 0 128731 station_ip 5.120.39.152 128731 port 229 128731 unique_id port 128732 username zare 128732 mac 128732 bytes_out 0 128732 bytes_in 0 128732 station_ip 37.27.22.122 128732 port 229 128732 unique_id port 128732 remote_ip 10.8.0.18 128734 username mansur 128734 mac 128734 bytes_out 0 128734 bytes_in 0 128734 station_ip 5.119.100.61 128734 port 240 128734 unique_id port 128734 remote_ip 10.8.0.210 128735 username farhad2 128735 mac 128735 bytes_out 782620 128735 bytes_in 1411941 128735 station_ip 5.119.33.119 128735 port 152 128735 unique_id port 128735 remote_ip 10.8.1.222 128736 username kordestani 128736 mac 128736 bytes_out 111609 128736 bytes_in 142313 128736 station_ip 37.129.94.10 128736 port 141 128736 unique_id port 128736 remote_ip 10.8.1.98 128741 username hamidsalari 128741 mac 128741 bytes_out 0 128741 bytes_in 0 128741 station_ip 5.119.188.47 128741 port 245 128741 unique_id port 128744 username hoorieh 128744 kill_reason Another user logged on this global unique id 128744 mac 128744 bytes_out 0 128744 bytes_in 0 128744 station_ip 5.120.39.152 128744 port 239 128744 unique_id port 128745 username farhad2 128745 mac 128745 bytes_out 0 128745 bytes_in 0 128745 station_ip 5.119.33.119 128745 port 234 128745 unique_id port 128745 remote_ip 10.8.0.190 128750 username farhad2 128750 mac 128750 bytes_out 140614 128750 bytes_in 277202 128750 station_ip 5.120.12.79 128750 port 234 128750 unique_id port 128750 remote_ip 10.8.0.190 128751 username alipour 128751 mac 128751 bytes_out 128927 128751 bytes_in 496966 128751 station_ip 113.203.6.241 128751 port 149 128751 unique_id port 128751 remote_ip 10.8.1.50 128753 username sade 128753 kill_reason Wrong password 128753 unique_id port 128753 bytes_out 0 128753 bytes_in 0 128753 station_ip 5.119.199.69 128753 port 15730157 128753 nas_port_type Virtual 128759 username alipour 128759 mac 128759 bytes_out 0 128759 bytes_in 0 128759 station_ip 113.203.6.241 128759 port 141 128759 unique_id port 128759 remote_ip 10.8.1.50 128760 username alihosseini1 128760 mac 128760 bytes_out 0 128760 bytes_in 0 128760 station_ip 5.119.77.240 128760 port 149 128760 unique_id port 128760 remote_ip 10.8.1.106 128764 username alipour 128764 mac 128764 bytes_out 5390 128764 bytes_in 8561 128764 station_ip 113.203.6.241 128764 port 141 128764 unique_id port 128764 remote_ip 10.8.1.50 128767 username aminvpn 128767 unique_id port 128767 terminate_cause Lost-Carrier 128767 bytes_out 279345 128767 bytes_in 1246332 128767 station_ip 109.125.128.116 128767 port 15730156 128767 nas_port_type Virtual 128767 remote_ip 5.5.5.29 128774 username mostafa_es78 128774 unique_id port 128774 terminate_cause Lost-Carrier 128746 station_ip 151.235.120.1 128746 port 141 128746 unique_id port 128746 remote_ip 10.8.1.98 128748 username farhad2 128748 mac 128748 bytes_out 0 128748 bytes_in 0 128748 station_ip 5.120.12.79 128748 port 234 128748 unique_id port 128748 remote_ip 10.8.0.190 128754 username alihosseini1 128754 mac 128754 bytes_out 0 128754 bytes_in 0 128754 station_ip 5.119.77.240 128754 port 219 128754 unique_id port 128754 remote_ip 10.8.0.166 128756 username mosi 128756 kill_reason Another user logged on this global unique id 128756 mac 128756 bytes_out 0 128756 bytes_in 0 128756 station_ip 151.235.124.20 128756 port 228 128756 unique_id port 128757 username alirr 128757 kill_reason Wrong password 128757 unique_id port 128757 bytes_out 0 128757 bytes_in 0 128757 station_ip 5.119.199.69 128757 port 15730159 128757 nas_port_type Virtual 128762 username farhad2 128762 kill_reason Another user logged on this global unique id 128762 mac 128762 bytes_out 0 128762 bytes_in 0 128762 station_ip 5.120.12.79 128762 port 234 128762 unique_id port 128762 remote_ip 10.8.0.190 128763 username alihosseini1 128763 mac 128763 bytes_out 0 128763 bytes_in 0 128763 station_ip 5.119.77.240 128763 port 149 128763 unique_id port 128763 remote_ip 10.8.1.106 128766 username alihosseini1 128766 mac 128766 bytes_out 0 128766 bytes_in 0 128766 station_ip 5.119.77.240 128766 port 149 128766 unique_id port 128766 remote_ip 10.8.1.106 128769 username arash 128769 mac 128769 bytes_out 0 128769 bytes_in 0 128769 station_ip 188.245.89.10 128769 port 233 128769 unique_id port 128769 remote_ip 10.8.0.114 128771 username alihosseini1 128771 mac 128771 bytes_out 0 128771 bytes_in 0 128771 station_ip 5.119.77.240 128771 port 231 128771 unique_id port 128771 remote_ip 10.8.0.166 128773 username alihosseini1 128773 mac 128773 bytes_out 0 128773 bytes_in 0 128773 station_ip 5.119.77.240 128773 port 231 128773 unique_id port 128773 remote_ip 10.8.0.166 128775 username rezasekonji 128775 kill_reason Relative expiration date has reached 128775 mac 128775 bytes_out 0 128775 bytes_in 0 128775 station_ip 37.129.177.127 128775 port 231 128775 unique_id port 128777 username farhad2 128777 mac 128777 bytes_out 0 128777 bytes_in 0 128777 station_ip 5.120.12.79 128777 port 234 128777 unique_id port 128777 remote_ip 10.8.0.190 128778 username rezasekonji 128778 kill_reason Relative expiration date has reached 128778 mac 128778 bytes_out 0 128778 bytes_in 0 128778 station_ip 37.129.177.127 128778 port 234 128778 unique_id port 128780 username alihosseini1 128780 mac 128780 bytes_out 0 128780 bytes_in 0 128780 station_ip 5.119.77.240 128780 port 149 128780 unique_id port 128780 remote_ip 10.8.1.106 128786 username alihosseini1 128786 mac 128786 bytes_out 0 128786 bytes_in 0 128786 station_ip 5.119.77.240 128786 port 239 128786 unique_id port 128786 remote_ip 10.8.0.166 128791 username khademi 128791 kill_reason Another user logged on this global unique id 128791 mac 128791 bytes_out 0 128791 bytes_in 0 128791 station_ip 113.203.20.65 128791 port 237 128791 unique_id port 128793 username hosseine 128793 mac 128793 bytes_out 0 128793 bytes_in 0 128793 station_ip 37.129.53.12 128793 port 234 128793 unique_id port 128794 username alihosseini1 128794 mac 128794 bytes_out 0 128794 bytes_in 0 128794 station_ip 5.119.77.240 128794 port 141 128794 unique_id port 128794 remote_ip 10.8.1.106 128796 username khademi 128796 kill_reason Another user logged on this global unique id 128796 mac 128761 kill_reason Another user logged on this global unique id 128761 mac 128761 bytes_out 0 128761 bytes_in 0 128761 station_ip 46.225.232.199 128761 port 231 128761 unique_id port 128765 username mansur 128765 kill_reason Another user logged on this global unique id 128765 mac 128765 bytes_out 0 128765 bytes_in 0 128765 station_ip 5.119.100.61 128765 port 240 128765 unique_id port 128768 username amir 128768 mac 128768 bytes_out 0 128768 bytes_in 0 128768 station_ip 46.225.232.199 128768 port 231 128768 unique_id port 128770 username farhad2 128770 mac 128770 bytes_out 0 128770 bytes_in 0 128770 station_ip 5.120.12.79 128770 port 234 128770 unique_id port 128772 username forozande 128772 mac 128772 bytes_out 0 128772 bytes_in 0 128772 station_ip 83.123.59.252 128772 port 242 128772 unique_id port 128772 remote_ip 10.8.0.74 128776 username rezasekonji 128776 kill_reason Relative expiration date has reached 128776 mac 128776 bytes_out 0 128776 bytes_in 0 128776 station_ip 37.129.177.127 128776 port 231 128776 unique_id port 128779 username rezasekonji 128779 kill_reason Relative expiration date has reached 128779 mac 128779 bytes_out 0 128779 bytes_in 0 128779 station_ip 37.129.177.127 128779 port 234 128779 unique_id port 128781 username alihosseini1 128781 mac 128781 bytes_out 0 128781 bytes_in 0 128781 station_ip 5.119.77.240 128781 port 149 128781 unique_id port 128781 remote_ip 10.8.1.106 128784 username alipour 128784 mac 128784 bytes_out 1606004 128784 bytes_in 19199176 128784 station_ip 113.203.6.241 128784 port 141 128784 unique_id port 128784 remote_ip 10.8.1.50 128785 username alihosseini1 128785 mac 128785 bytes_out 0 128785 bytes_in 0 128785 station_ip 5.119.77.240 128785 port 239 128785 unique_id port 128785 remote_ip 10.8.0.166 128787 username alihosseini1 128787 mac 128787 bytes_out 0 128787 bytes_in 0 128787 station_ip 5.119.77.240 128787 port 242 128787 unique_id port 128787 remote_ip 10.8.0.166 128799 username alihosseini1 128799 mac 128799 bytes_out 141197 128799 bytes_in 146368 128799 station_ip 5.119.77.240 128799 port 141 128799 unique_id port 128799 remote_ip 10.8.1.106 128801 username khademi 128801 kill_reason Another user logged on this global unique id 128801 mac 128801 bytes_out 0 128801 bytes_in 0 128801 station_ip 113.203.20.65 128801 port 237 128801 unique_id port 128802 username farhad2 128802 mac 128802 bytes_out 4970872 128802 bytes_in 21594475 128802 station_ip 5.120.12.79 128802 port 231 128802 unique_id port 128802 remote_ip 10.8.0.190 128806 username moradi 128806 mac 128806 bytes_out 246696 128806 bytes_in 404603 128806 station_ip 37.129.35.19 128806 port 234 128806 unique_id port 128806 remote_ip 10.8.0.250 128812 username khademi 128812 kill_reason Another user logged on this global unique id 128812 mac 128812 bytes_out 0 128812 bytes_in 0 128812 station_ip 113.203.20.65 128812 port 237 128812 unique_id port 128814 username farhad2 128814 mac 128814 bytes_out 0 128814 bytes_in 0 128814 station_ip 5.120.12.79 128814 port 231 128814 unique_id port 128814 remote_ip 10.8.0.190 128823 username mosi 128823 kill_reason Another user logged on this global unique id 128823 mac 128823 bytes_out 0 128823 bytes_in 0 128823 station_ip 151.235.124.20 128823 port 228 128823 unique_id port 128825 username farhad2 128825 kill_reason Maximum check online fails reached 128825 mac 128825 bytes_out 2539110 128825 bytes_in 20315353 128825 station_ip 5.119.96.197 128825 port 141 128825 unique_id port 128825 remote_ip 10.8.1.222 128774 bytes_out 289803 128774 bytes_in 4079526 128774 station_ip 5.126.221.117 128774 port 15730160 128774 nas_port_type Virtual 128774 remote_ip 5.5.5.31 128782 username hosseine 128782 kill_reason Another user logged on this global unique id 128782 mac 128782 bytes_out 0 128782 bytes_in 0 128782 station_ip 37.129.53.12 128782 port 234 128782 unique_id port 128782 remote_ip 10.8.0.238 128783 username alihosseini1 128783 mac 128783 bytes_out 0 128783 bytes_in 0 128783 station_ip 5.119.77.240 128783 port 149 128783 unique_id port 128783 remote_ip 10.8.1.106 128788 username vanila 128788 mac 128788 bytes_out 579863 128788 bytes_in 2334974 128788 station_ip 83.122.202.245 128788 port 233 128788 unique_id port 128788 remote_ip 10.8.0.178 128789 username alihosseini1 128789 mac 128789 bytes_out 0 128789 bytes_in 0 128789 station_ip 5.119.77.240 128789 port 233 128789 unique_id port 128789 remote_ip 10.8.0.166 128790 username farhad2 128790 mac 128790 bytes_out 2105078 128790 bytes_in 8941791 128790 station_ip 5.120.12.79 128790 port 231 128790 unique_id port 128790 remote_ip 10.8.0.190 128792 username khademi 128792 kill_reason Another user logged on this global unique id 128792 mac 128792 bytes_out 0 128792 bytes_in 0 128792 station_ip 113.203.20.65 128792 port 237 128792 unique_id port 128795 username mostafa_es78 128795 unique_id port 128795 terminate_cause Lost-Carrier 128795 bytes_out 181281 128795 bytes_in 513128 128795 station_ip 5.126.188.42 128795 port 15730162 128795 nas_port_type Virtual 128795 remote_ip 5.5.5.33 128797 username mohammadjavad 128797 kill_reason Another user logged on this global unique id 128797 mac 128797 bytes_out 0 128797 bytes_in 0 128797 station_ip 113.203.63.75 128797 port 239 128797 unique_id port 128797 remote_ip 10.8.0.142 128798 username khademi 128798 kill_reason Another user logged on this global unique id 128798 mac 128798 bytes_out 0 128798 bytes_in 0 128798 station_ip 113.203.20.65 128798 port 237 128798 unique_id port 128800 username alihosseini1 128800 mac 128800 bytes_out 17781 128800 bytes_in 60004 128800 station_ip 5.119.77.240 128800 port 242 128800 unique_id port 128800 remote_ip 10.8.0.166 128803 username mohammadjavad 128803 mac 128803 bytes_out 0 128803 bytes_in 0 128803 station_ip 113.203.63.75 128803 port 239 128803 unique_id port 128805 username khademi 128805 kill_reason Another user logged on this global unique id 128805 mac 128805 bytes_out 0 128805 bytes_in 0 128805 station_ip 113.203.20.65 128805 port 237 128805 unique_id port 128815 username farhad2 128815 mac 128815 bytes_out 0 128815 bytes_in 0 128815 station_ip 5.120.12.79 128815 port 231 128815 unique_id port 128815 remote_ip 10.8.0.190 128817 username hamidsalari 128817 mac 128817 bytes_out 0 128817 bytes_in 0 128817 station_ip 5.119.188.47 128817 port 233 128817 unique_id port 128819 username moradi 128819 mac 128819 bytes_out 0 128819 bytes_in 0 128819 station_ip 37.129.35.19 128819 port 234 128819 unique_id port 128819 remote_ip 10.8.0.250 128820 username mansur 128820 mac 128820 bytes_out 0 65781 username arezoo 65781 kill_reason Another user logged on this global unique id 65781 mac 5.237.77.102:49185: Unknown host 65781 bytes_out 0 65781 bytes_in 0 65781 station_ip 5.237.77.102:49185 65781 port 1018 128820 bytes_in 0 128820 station_ip 5.119.100.61 128820 port 240 128820 unique_id port 128824 username mansour 128824 mac 128824 bytes_out 0 128824 bytes_in 0 128824 station_ip 5.202.64.80 128824 port 219 128824 unique_id port 128824 remote_ip 10.8.0.30 128796 bytes_out 0 128796 bytes_in 0 128796 station_ip 113.203.20.65 128796 port 237 128796 unique_id port 128804 username khademi 128804 kill_reason Another user logged on this global unique id 128804 mac 128804 bytes_out 0 128804 bytes_in 0 128804 station_ip 113.203.20.65 128804 port 237 128804 unique_id port 128807 username farhad2 128807 mac 128807 bytes_out 2538678 128807 bytes_in 18364067 128807 station_ip 5.120.12.79 128807 port 231 128807 unique_id port 128807 remote_ip 10.8.0.190 128808 username farhad2 128808 mac 128808 bytes_out 0 128808 bytes_in 0 128808 station_ip 5.120.12.79 128808 port 231 128808 unique_id port 128808 remote_ip 10.8.0.190 128809 username hamidsalari1 128809 mac 128809 bytes_out 0 128809 bytes_in 0 128809 station_ip 83.123.242.197 128809 port 141 128809 unique_id port 128809 remote_ip 10.8.1.170 128810 username farhad2 128810 mac 128810 bytes_out 105970 128810 bytes_in 131351 128810 station_ip 5.120.12.79 128810 port 231 128810 unique_id port 128810 remote_ip 10.8.0.190 128811 username hamidsalari 128811 kill_reason Another user logged on this global unique id 128811 mac 128811 bytes_out 0 128811 bytes_in 0 128811 station_ip 5.119.188.47 128811 port 233 128811 unique_id port 128811 remote_ip 10.8.0.230 128813 username naeimeh 128813 mac 128813 bytes_out 0 128813 bytes_in 0 128813 station_ip 83.122.89.234 128813 port 239 128813 unique_id port 128813 remote_ip 10.8.0.78 128816 username khademi 128816 kill_reason Another user logged on this global unique id 128816 mac 128816 bytes_out 0 128816 bytes_in 0 128816 station_ip 113.203.20.65 128816 port 237 128816 unique_id port 128818 username hamid 128818 mac 128818 bytes_out 0 128818 bytes_in 0 128818 station_ip 37.129.29.178 128818 port 231 128818 unique_id port 128818 remote_ip 10.8.0.106 128821 username farhad2 128821 mac 128821 bytes_out 1819110 128821 bytes_in 8606717 128821 station_ip 5.119.96.197 128821 port 141 128821 unique_id port 128821 remote_ip 10.8.1.222 128822 username zare 128822 kill_reason Another user logged on this global unique id 128822 mac 128822 bytes_out 0 128822 bytes_in 0 128822 station_ip 37.27.22.122 128822 port 229 128822 unique_id port 128822 remote_ip 10.8.0.18 128826 username jafari 128826 mac 128826 bytes_out 0 128826 bytes_in 0 128826 station_ip 37.137.25.13 128826 port 241 128826 unique_id port 128826 remote_ip 10.8.0.242 128829 username farhad2 65781 unique_id port 128829 mac 128829 bytes_out 0 128829 bytes_in 0 128829 station_ip 5.119.96.197 128829 port 231 128829 unique_id port 128829 remote_ip 10.8.0.190 128830 username farhad2 128830 mac 128830 bytes_out 0 128830 bytes_in 0 128830 station_ip 5.119.96.197 128830 port 231 128830 unique_id port 128830 remote_ip 10.8.0.190 128832 username farhad2 128832 mac 128832 bytes_out 134162 128832 bytes_in 534638 128832 station_ip 5.119.40.34 128832 port 141 128832 unique_id port 128832 remote_ip 10.8.1.222 128833 username zare 128833 kill_reason Another user logged on this global unique id 128833 mac 128833 bytes_out 0 128833 bytes_in 0 128833 station_ip 37.27.22.122 128833 port 229 128833 unique_id port 128839 username zare 128839 mac 128839 bytes_out 0 128839 bytes_in 0 128839 station_ip 37.27.22.122 128839 port 229 128839 unique_id port 128842 username zare 128842 mac 128842 bytes_out 0 128842 bytes_in 0 128842 station_ip 37.27.22.122 128842 port 229 128842 unique_id port 128842 remote_ip 10.8.0.18 128854 username jafari 128827 username farhad2 128827 mac 128827 bytes_out 0 128827 bytes_in 0 128827 station_ip 5.119.96.197 128827 port 231 128827 unique_id port 128827 remote_ip 10.8.0.190 128828 username farhad2 128828 mac 128828 bytes_out 0 128828 bytes_in 0 128828 station_ip 5.119.96.197 128828 port 231 128828 unique_id port 128828 remote_ip 10.8.0.190 128831 username mosi 128831 kill_reason Another user logged on this global unique id 128831 mac 128831 bytes_out 0 128831 bytes_in 0 128831 station_ip 151.235.124.20 128831 port 228 128831 unique_id port 128836 username farhad2 128836 kill_reason Maximum check online fails reached 128836 mac 128836 bytes_out 0 128836 bytes_in 0 128836 station_ip 5.119.159.95 128836 port 231 128836 unique_id port 128837 username mosi 128837 kill_reason Another user logged on this global unique id 128837 mac 128837 bytes_out 0 128837 bytes_in 0 128837 station_ip 151.235.124.20 128837 port 228 128837 unique_id port 128838 username farhad2 128838 mac 128838 bytes_out 0 128838 bytes_in 0 128838 station_ip 5.119.159.95 128838 port 141 128838 unique_id port 128838 remote_ip 10.8.1.222 128840 username zare 128840 mac 128840 bytes_out 0 128840 bytes_in 0 128840 station_ip 37.27.22.122 128840 port 229 128840 unique_id port 128840 remote_ip 10.8.0.18 128843 username zare 128843 mac 128843 bytes_out 0 128843 bytes_in 0 128843 station_ip 37.27.22.122 128843 port 234 128843 unique_id port 128843 remote_ip 10.8.0.18 128844 username zare 128844 mac 128844 bytes_out 0 128844 bytes_in 0 128844 station_ip 37.27.22.122 128844 port 234 128844 unique_id port 128844 remote_ip 10.8.0.18 128845 username mosi 128845 kill_reason Another user logged on this global unique id 128845 mac 128845 bytes_out 0 128845 bytes_in 0 128845 station_ip 151.235.124.20 128845 port 228 128845 unique_id port 128848 username mosi 128848 kill_reason Another user logged on this global unique id 128848 mac 128848 bytes_out 0 128848 bytes_in 0 128848 station_ip 151.235.124.20 128848 port 228 128848 unique_id port 128849 username mosi 128849 kill_reason Another user logged on this global unique id 128849 mac 128849 bytes_out 0 128849 bytes_in 0 128849 station_ip 151.235.124.20 128849 port 228 128849 unique_id port 128850 username aminvpn 128850 mac 128850 bytes_out 0 128850 bytes_in 0 128850 station_ip 5.214.84.215 128850 port 229 128850 unique_id port 128850 remote_ip 10.8.0.14 128855 username jafari 128855 mac 128855 bytes_out 7470 128855 bytes_in 10922 128855 station_ip 37.137.25.13 128855 port 219 128855 unique_id port 128855 remote_ip 10.8.0.242 128862 username khademi 128862 mac 128862 bytes_out 0 128862 bytes_in 0 128862 station_ip 113.203.20.65 128862 port 237 128862 unique_id port 128863 username avaanna 128863 kill_reason Another user logged on this global unique id 128863 mac 128863 bytes_out 0 128863 bytes_in 0 128863 station_ip 83.123.244.186 128863 port 229 128863 unique_id port 128863 remote_ip 10.8.0.98 128864 username bcboard 128864 unique_id port 128864 terminate_cause User-Request 128864 bytes_out 5711554 128864 bytes_in 110796024 128864 station_ip 37.129.49.50 128864 port 15730163 128864 nas_port_type Virtual 128864 remote_ip 5.5.5.35 128865 terminate_cause User-Request 128865 bytes_out 288210 128865 bytes_in 3559384 128865 station_ip 5.120.49.115 128865 port 15730164 128865 nas_port_type Virtual 128865 remote_ip 5.5.5.42 128869 username mehdizare 128869 mac 128869 bytes_out 14150 128869 bytes_in 18542 128869 station_ip 5.120.87.77 128869 port 141 128869 unique_id port 128834 username farhad2 128834 mac 128834 bytes_out 621165 128834 bytes_in 1013408 128834 station_ip 5.119.159.95 128834 port 141 128834 unique_id port 128834 remote_ip 10.8.1.222 128835 username farhad2 128835 mac 128835 bytes_out 94867 128835 bytes_in 185900 128835 station_ip 5.119.159.95 128835 port 141 128835 unique_id port 128835 remote_ip 10.8.1.222 128841 username mosi 128841 kill_reason Another user logged on this global unique id 128841 mac 128841 bytes_out 0 128841 bytes_in 0 128841 station_ip 151.235.124.20 128841 port 228 128841 unique_id port 128846 username mohammadjavad 128846 mac 128846 bytes_out 0 128846 bytes_in 0 128846 station_ip 83.123.56.43 128846 port 229 128846 unique_id port 128846 remote_ip 10.8.0.142 128847 username zare 128847 mac 128847 bytes_out 0 128847 bytes_in 0 128847 station_ip 37.27.22.122 128847 port 229 128847 unique_id port 128847 remote_ip 10.8.0.18 128851 username mosi 128851 kill_reason Another user logged on this global unique id 128851 mac 128851 bytes_out 0 128851 bytes_in 0 128851 station_ip 151.235.124.20 128851 port 228 128851 unique_id port 128852 username mosi 128852 kill_reason Another user logged on this global unique id 128852 mac 128852 bytes_out 0 128852 bytes_in 0 128852 station_ip 151.235.124.20 128852 port 228 128852 unique_id port 128853 username jafari 128853 mac 128853 bytes_out 61018 128853 bytes_in 180638 128853 station_ip 37.137.25.13 128853 port 219 128853 unique_id port 128853 remote_ip 10.8.0.242 128861 username avaanna 128861 mac 128861 bytes_out 0 128861 bytes_in 0 128861 station_ip 83.123.244.186 128861 port 219 128861 unique_id port 128866 username mehdizare 128866 mac 128866 bytes_out 0 128866 bytes_in 0 128866 station_ip 5.120.87.77 128866 port 219 128866 unique_id port 128866 remote_ip 10.8.0.90 128867 username mehdizare 128867 mac 128867 bytes_out 0 128867 bytes_in 0 128867 station_ip 5.120.87.77 128867 port 234 128867 unique_id port 128867 remote_ip 10.8.0.90 128868 username avaanna 128868 mac 128868 bytes_out 0 128868 bytes_in 0 128868 station_ip 83.123.244.186 128868 port 229 128868 unique_id port 128870 username avaanna 128870 mac 128870 bytes_out 0 128870 bytes_in 0 128870 station_ip 83.123.244.186 128870 port 219 128870 unique_id port 128870 remote_ip 10.8.0.98 128874 username morteza 128874 mac 128874 bytes_out 0 128874 bytes_in 0 128874 station_ip 37.129.149.220 128874 port 219 128874 unique_id port 128874 remote_ip 10.8.0.46 128885 username morteza 128885 kill_reason Maximum check online fails reached 128885 mac 128885 bytes_out 0 128885 bytes_in 0 128885 station_ip 83.123.1.169 128885 port 229 128885 unique_id port 128887 username morteza 128887 mac 128887 bytes_out 0 128887 bytes_in 0 128887 station_ip 83.123.1.169 128887 port 234 128887 unique_id port 128887 remote_ip 10.8.0.46 128889 username morteza 128889 mac 128889 bytes_out 0 128889 bytes_in 0 128889 station_ip 83.123.1.169 128889 port 234 128889 unique_id port 128889 remote_ip 10.8.0.46 128891 username morteza 128891 mac 128891 bytes_out 0 128891 bytes_in 0 128891 station_ip 83.123.1.169 128891 port 154 128891 unique_id port 128891 remote_ip 10.8.1.62 128893 username morteza 128893 mac 128893 bytes_out 0 128893 bytes_in 0 128893 station_ip 83.123.1.169 128893 port 219 128893 unique_id port 128893 remote_ip 10.8.0.46 128897 username morteza 128897 mac 128897 bytes_out 0 128897 bytes_in 0 128854 mac 128854 bytes_out 73613 128854 bytes_in 67111 128854 station_ip 37.137.25.13 128854 port 229 128854 unique_id port 128854 remote_ip 10.8.0.242 128856 username arash 128856 mac 128856 bytes_out 0 128856 bytes_in 0 128856 station_ip 188.245.89.10 128856 port 229 128856 unique_id port 128856 remote_ip 10.8.0.114 128857 username arash 128857 mac 128857 bytes_out 455079 128857 bytes_in 5191072 128857 station_ip 188.245.89.10 128857 port 229 128857 unique_id port 128857 remote_ip 10.8.0.114 128858 username arash 128858 mac 128858 bytes_out 0 128858 bytes_in 0 128858 station_ip 188.245.89.10 128858 port 229 128858 unique_id port 128858 remote_ip 10.8.0.114 128859 username avaanna 128859 kill_reason Another user logged on this global unique id 128859 mac 128859 bytes_out 0 128859 bytes_in 0 128859 station_ip 83.123.244.186 128859 port 219 128859 unique_id port 128859 remote_ip 10.8.0.98 128860 username mehdizare 128860 mac 128860 bytes_out 0 128860 bytes_in 0 128860 station_ip 5.120.87.77 128860 port 246 128860 unique_id port 128869 remote_ip 10.8.1.42 128871 username arash 128871 mac 128871 bytes_out 0 128871 bytes_in 0 128871 station_ip 188.245.89.10 128871 port 219 128871 unique_id port 128871 remote_ip 10.8.0.114 128875 username morteza 128875 mac 128875 bytes_out 0 128875 bytes_in 0 128875 station_ip 37.129.149.220 128875 port 219 128875 unique_id port 128875 remote_ip 10.8.0.46 128879 username morteza 128879 mac 128879 bytes_out 0 128879 bytes_in 0 128879 station_ip 37.129.149.220 128879 port 229 128879 unique_id port 128879 remote_ip 10.8.0.46 128880 username morteza 128880 mac 128880 bytes_out 0 128880 bytes_in 0 128880 station_ip 37.129.149.220 128880 port 229 128880 unique_id port 128880 remote_ip 10.8.0.46 128884 username morteza 128884 mac 128884 bytes_out 0 128884 bytes_in 0 128884 station_ip 83.123.1.169 128884 port 229 128884 unique_id port 128884 remote_ip 10.8.0.46 128886 username morteza 128886 mac 128886 bytes_out 0 128886 bytes_in 0 128886 station_ip 83.123.1.169 128886 port 234 128886 unique_id port 128886 remote_ip 10.8.0.46 128890 username morteza 128890 mac 128890 bytes_out 0 128890 bytes_in 0 128890 station_ip 83.123.1.169 128890 port 237 128890 unique_id port 128890 remote_ip 10.8.0.46 128895 username morteza 128895 mac 128895 bytes_out 0 128895 bytes_in 0 128895 station_ip 83.123.1.169 128895 port 234 128895 unique_id port 128895 remote_ip 10.8.0.46 128896 username morteza 128896 kill_reason Maximum number of concurrent logins reached 128896 mac 128896 bytes_out 0 128896 bytes_in 0 128896 station_ip 83.123.1.169 128896 port 237 128896 unique_id port 128898 username morteza 128898 kill_reason Maximum check online fails reached 128898 mac 128898 bytes_out 0 128898 bytes_in 0 128898 station_ip 83.123.1.169 128898 port 219 128898 unique_id port 128899 username aminvpn 128899 mac 128899 bytes_out 83487 128899 bytes_in 114291 128899 station_ip 5.214.58.67 128899 port 234 128899 unique_id port 128899 remote_ip 10.8.0.14 128903 username mehdizare 128903 mac 128903 bytes_out 181957 128903 bytes_in 204417 128903 station_ip 5.120.87.77 128903 port 141 128903 unique_id port 128903 remote_ip 10.8.1.42 128905 username jafari 128905 kill_reason Another user logged on this global unique id 128905 mac 128905 bytes_out 0 128905 bytes_in 0 128905 station_ip 37.156.50.179 128905 port 234 128905 unique_id port 128908 username avaanna 128908 mac 128872 username arash 128872 mac 128872 bytes_out 287106 128872 bytes_in 1314383 128872 station_ip 188.245.89.10 128872 port 229 128872 unique_id port 128872 remote_ip 10.8.0.114 128873 username avaanna 128873 mac 128873 bytes_out 45435 128873 bytes_in 54403 128873 station_ip 83.123.244.186 128873 port 152 128873 unique_id port 128873 remote_ip 10.8.1.46 128876 username aminvpn 128876 mac 128876 bytes_out 0 128876 bytes_in 0 128876 station_ip 5.214.58.67 128876 port 229 128876 unique_id port 128876 remote_ip 10.8.0.14 128877 username morteza 128877 mac 128877 bytes_out 0 128877 bytes_in 0 128877 station_ip 37.129.149.220 128877 port 219 128877 unique_id port 128877 remote_ip 10.8.0.46 128878 username morteza 128878 mac 128878 bytes_out 0 128878 bytes_in 0 128878 station_ip 37.129.149.220 128878 port 219 128878 unique_id port 128878 remote_ip 10.8.0.46 128881 username morteza 128881 mac 128881 bytes_out 0 128881 bytes_in 0 128881 station_ip 83.123.1.169 128881 port 154 128881 unique_id port 128881 remote_ip 10.8.1.62 128882 username morteza 128882 mac 128882 bytes_out 0 128882 bytes_in 0 128882 station_ip 83.123.1.169 128882 port 229 128882 unique_id port 128882 remote_ip 10.8.0.46 128883 username avaanna 128883 mac 128883 bytes_out 233050 128883 bytes_in 695078 128883 station_ip 83.123.244.186 128883 port 152 128883 unique_id port 128883 remote_ip 10.8.1.46 128888 username morteza 128888 mac 128888 bytes_out 0 128888 bytes_in 0 128888 station_ip 83.123.1.169 128888 port 234 128888 unique_id port 128888 remote_ip 10.8.0.46 128892 username sedighe 128892 mac 128892 bytes_out 0 128892 bytes_in 0 128892 station_ip 37.129.126.5 128892 port 219 128892 unique_id port 128892 remote_ip 10.8.0.146 128894 username morteza 128894 mac 128894 bytes_out 0 128894 bytes_in 0 128894 station_ip 83.123.1.169 128894 port 219 128894 unique_id port 128894 remote_ip 10.8.0.46 128902 username jafari 128902 kill_reason Another user logged on this global unique id 128902 mac 128902 bytes_out 0 128902 bytes_in 0 128902 station_ip 37.156.50.179 128902 port 234 128902 unique_id port 128902 remote_ip 10.8.0.242 128914 username arash 128914 mac 128914 bytes_out 19789 128914 bytes_in 49302 128914 station_ip 188.245.89.10 128914 port 239 128914 unique_id port 128914 remote_ip 10.8.0.114 128920 username barzegar 128920 mac 128920 bytes_out 3221916 128920 bytes_in 3111060 128920 station_ip 5.119.42.210 128920 port 234 128920 unique_id port 65878 kill_reason Maximum check online fails reached 65878 mac 5.237.67.149:49211: Unknown host 65878 bytes_out 0 65878 bytes_in 0 65878 station_ip 5.237.67.149:49211 65878 port 1018 65878 unique_id port 128920 remote_ip 10.8.0.234 128923 username mehdizare 128923 mac 128923 bytes_out 102565 128923 bytes_in 94680 128923 station_ip 5.120.87.77 128923 port 239 128923 unique_id port 128923 remote_ip 10.8.0.90 128928 username morteza 128928 mac 128928 bytes_out 0 128928 bytes_in 0 128928 station_ip 83.123.50.185 128928 port 141 128928 unique_id port 128928 remote_ip 10.8.1.62 128931 username morteza 128931 mac 128931 bytes_out 0 128931 bytes_in 0 128931 station_ip 83.123.50.185 128931 port 141 128931 unique_id port 128931 remote_ip 10.8.1.62 128936 username morteza 128936 mac 128936 bytes_out 0 128936 bytes_in 0 128936 station_ip 83.123.50.185 128936 port 141 128936 unique_id port 128936 remote_ip 10.8.1.62 128937 username forozande 128937 mac 128897 station_ip 83.123.1.169 128897 port 234 128897 unique_id port 128897 remote_ip 10.8.0.46 128900 username bcboard 128900 unique_id port 128900 terminate_cause Lost-Carrier 128900 bytes_out 109965708 128900 bytes_in 3260953574 128900 station_ip 37.129.49.50 128900 port 15730165 128900 nas_port_type Virtual 128900 remote_ip 5.5.5.52 128901 username avaanna 128901 mac 128901 bytes_out 0 128901 bytes_in 0 128901 station_ip 83.123.244.186 128901 port 152 128901 unique_id port 128901 remote_ip 10.8.1.46 128904 username aminvpn 128904 unique_id port 128904 terminate_cause User-Request 128904 bytes_out 24778 128904 bytes_in 47421 128904 station_ip 5.119.6.232 128904 port 15730169 128904 nas_port_type Virtual 128904 remote_ip 5.5.5.6 128906 username milan 128906 kill_reason Another user logged on this global unique id 128906 mac 128906 bytes_out 0 128906 bytes_in 0 128906 station_ip 5.119.229.52 128906 port 240 128906 unique_id port 128906 remote_ip 10.8.0.218 128907 username jafari 128907 mac 128907 bytes_out 0 128907 bytes_in 0 128907 station_ip 37.156.50.179 128907 port 234 128907 unique_id port 128909 username vanila 128909 mac 128909 bytes_out 1044796 128909 bytes_in 11911169 128909 station_ip 83.122.172.241 128909 port 241 128909 unique_id port 128909 remote_ip 10.8.0.178 128910 username sabaghnezhad 128910 mac 128910 bytes_out 1045721 128910 bytes_in 1197485 128910 station_ip 37.129.132.104 128910 port 242 128910 unique_id port 128910 remote_ip 10.8.0.186 128912 username mohammadjavad 128912 mac 128912 bytes_out 0 128912 bytes_in 0 128912 station_ip 37.129.55.77 128912 port 239 128912 unique_id port 128912 remote_ip 10.8.0.142 128916 username mehdizare 128916 mac 128916 bytes_out 210037 128916 bytes_in 593369 128916 station_ip 5.120.87.77 128916 port 237 128916 unique_id port 128916 remote_ip 10.8.0.90 128917 username mehdizare 128917 mac 128917 bytes_out 5275 128917 bytes_in 8958 128917 station_ip 5.120.87.77 128917 port 239 128917 unique_id port 128917 remote_ip 10.8.0.90 128922 username mehdizare 128922 mac 128922 bytes_out 0 128922 bytes_in 0 128922 station_ip 5.120.87.77 128922 port 234 128922 unique_id port 128922 remote_ip 10.8.0.90 128924 username morteza 128924 mac 128924 bytes_out 367244 128924 bytes_in 5639949 128924 station_ip 83.123.50.185 128924 port 237 128924 unique_id port 128924 remote_ip 10.8.0.46 128927 username morteza 128927 mac 128927 bytes_out 0 128927 bytes_in 0 128927 station_ip 83.123.50.185 128927 port 141 128927 unique_id port 128927 remote_ip 10.8.1.62 128930 username morteza 128930 mac 128930 bytes_out 0 128930 bytes_in 0 128930 station_ip 83.123.50.185 128930 port 141 128930 unique_id port 128930 remote_ip 10.8.1.62 128932 username morteza 128932 mac 128932 bytes_out 0 128932 bytes_in 0 128932 station_ip 83.123.50.185 128932 port 141 128932 unique_id port 128932 remote_ip 10.8.1.62 128939 username alipour 128939 mac 128939 bytes_out 1230624 128939 bytes_in 6257773 128939 station_ip 83.123.142.106 128939 port 149 128939 unique_id port 128939 remote_ip 10.8.1.50 128943 username zare 65878 username arezoo 128943 mac 128943 bytes_out 567463 128943 bytes_in 11418942 128943 station_ip 37.27.22.122 128943 port 242 128943 unique_id port 128943 remote_ip 10.8.0.18 128946 username zare 128946 mac 128946 bytes_out 0 128946 bytes_in 0 128946 station_ip 37.27.22.122 128946 port 242 128946 unique_id port 128946 remote_ip 10.8.0.18 128947 username aminvpn 128947 mac 128908 bytes_out 0 128908 bytes_in 0 128908 station_ip 83.123.244.186 128908 port 152 128908 unique_id port 128908 remote_ip 10.8.1.46 128911 username moradi 128911 mac 128911 bytes_out 80917 128911 bytes_in 119530 128911 station_ip 37.129.93.251 128911 port 242 128911 unique_id port 128911 remote_ip 10.8.0.250 128913 username forozande 128913 mac 128913 bytes_out 0 128913 bytes_in 0 128913 station_ip 83.122.136.56 128913 port 241 128913 unique_id port 128913 remote_ip 10.8.0.74 128915 username forozande 128915 mac 128915 bytes_out 469781 128915 bytes_in 3221263 128915 station_ip 83.122.50.54 128915 port 239 128915 unique_id port 128915 remote_ip 10.8.0.74 128918 username mehdizare 65861 username arezoo 65861 kill_reason Maximum check online fails reached 65861 mac 5.237.82.146:54664: Unknown host 65861 bytes_out 0 65861 bytes_in 0 65861 station_ip 5.237.82.146:54664 65861 port 1018 65861 unique_id port 128918 mac 128918 bytes_out 35401 128918 bytes_in 64394 128918 station_ip 5.120.87.77 128918 port 237 128918 unique_id port 128918 remote_ip 10.8.0.90 128919 username aminvpn 128919 unique_id port 128919 terminate_cause Lost-Carrier 128919 bytes_out 13167951 128919 bytes_in 568713767 128919 station_ip 5.119.6.232 128919 port 15730170 128919 nas_port_type Virtual 128919 remote_ip 5.5.5.9 128921 username milan 128921 mac 128921 bytes_out 0 128921 bytes_in 0 128921 station_ip 5.119.229.52 128921 port 240 128921 unique_id port 128925 username avaanna 128925 mac 128925 bytes_out 0 128925 bytes_in 0 128925 station_ip 83.123.244.186 128925 port 141 128925 unique_id port 128925 remote_ip 10.8.1.46 128926 username mohammadjavad 128926 mac 128926 bytes_out 34759 128926 bytes_in 23622 128926 station_ip 83.123.218.132 128926 port 241 128926 unique_id port 128926 remote_ip 10.8.0.142 128929 username barzegar 128929 mac 128929 bytes_out 269461 128929 bytes_in 201195 128929 station_ip 5.119.42.210 128929 port 239 128929 unique_id port 128929 remote_ip 10.8.0.234 128933 username barzegar 128933 mac 128933 bytes_out 1997 128933 bytes_in 4494 128933 station_ip 5.119.42.210 128933 port 237 128933 unique_id port 128933 remote_ip 10.8.0.234 128934 username morteza 128934 mac 128934 bytes_out 0 128934 bytes_in 0 128934 station_ip 83.123.50.185 128934 port 141 128934 unique_id port 128934 remote_ip 10.8.1.62 128935 username barzegar 128935 mac 128935 bytes_out 0 128935 bytes_in 0 128935 station_ip 5.119.42.210 128935 port 239 128935 unique_id port 128935 remote_ip 10.8.0.234 128938 username moradi 128938 mac 128938 bytes_out 372893 128938 bytes_in 4125228 128938 station_ip 37.129.43.27 128938 port 241 128938 unique_id port 128938 remote_ip 10.8.0.250 128941 username mahdiyehalizadeh 128941 mac 128941 bytes_out 1329402 128941 bytes_in 20299938 128941 station_ip 83.122.185.11 128941 port 239 128941 unique_id port 128941 remote_ip 10.8.0.82 128942 username barzegar 128942 kill_reason Another user logged on this global unique id 128942 mac 128942 bytes_out 0 128942 bytes_in 0 128942 station_ip 5.119.42.210 128942 port 141 128942 unique_id port 128942 remote_ip 10.8.1.174 128944 username zare 128944 mac 128944 bytes_out 0 128944 bytes_in 0 128944 station_ip 37.27.22.122 128944 port 239 128944 unique_id port 128944 remote_ip 10.8.0.18 128945 username barzegar 128945 mac 128945 bytes_out 0 128945 bytes_in 0 128945 station_ip 5.119.42.210 128945 port 141 128945 unique_id port 128950 username mohammadjavad 128950 mac 128937 bytes_out 492093 128937 bytes_in 5847937 128937 station_ip 37.129.170.85 128937 port 237 128937 unique_id port 128937 remote_ip 10.8.0.74 128940 username mehdizare 128940 mac 128940 bytes_out 325035 128940 bytes_in 1010104 128940 station_ip 5.120.87.77 128940 port 234 128940 unique_id port 128940 remote_ip 10.8.0.90 128948 username mohsenaskari 128948 mac 128948 bytes_out 0 128948 bytes_in 0 128948 station_ip 46.225.214.202 128948 port 241 128948 unique_id port 128948 remote_ip 10.8.0.246 128951 username forozande 128951 mac 128951 bytes_out 0 128951 bytes_in 0 128951 station_ip 113.203.115.98 128951 port 234 128951 unique_id port 128951 remote_ip 10.8.0.74 128955 username mohsenaskari 128955 mac 128955 bytes_out 408435 128955 bytes_in 5757056 128955 station_ip 46.225.214.202 128955 port 241 128955 unique_id port 128955 remote_ip 10.8.0.246 128957 username barzegar 128957 mac 128957 bytes_out 0 128957 bytes_in 0 128957 station_ip 5.119.42.210 128957 port 244 128957 unique_id port 128957 remote_ip 10.8.0.234 128958 username mehdizare 128958 mac 128958 bytes_out 502669 128958 bytes_in 20605340 128958 station_ip 5.120.87.77 128958 port 234 128958 unique_id port 128958 remote_ip 10.8.0.90 128966 username mirzaei 128966 mac 128966 bytes_out 672603 128966 bytes_in 3556262 128966 station_ip 5.119.246.145 128966 port 237 128966 unique_id port 128966 remote_ip 10.8.0.66 128967 username morteza 128967 mac 128967 bytes_out 2283 128967 bytes_in 4620 128967 station_ip 83.123.125.165 128967 port 152 128967 unique_id port 128967 remote_ip 10.8.1.62 128969 username forozande 128969 mac 128969 bytes_out 0 128969 bytes_in 0 128969 station_ip 37.129.143.100 128969 port 242 128969 unique_id port 128975 username mehdizare 128975 mac 128975 bytes_out 0 128975 bytes_in 0 128975 station_ip 5.120.87.77 128975 port 242 128975 unique_id port 128975 remote_ip 10.8.0.90 128976 username mirzaei 128976 mac 128976 bytes_out 0 128976 bytes_in 0 128976 station_ip 5.119.149.90 128976 port 154 128976 unique_id port 128976 remote_ip 10.8.1.30 128979 username kordestani 128979 mac 128979 bytes_out 1168468 128979 bytes_in 10098126 128979 station_ip 151.235.92.120 128979 port 234 128979 unique_id port 128979 remote_ip 10.8.0.134 128981 username hamid 128981 kill_reason Another user logged on this global unique id 128981 mac 128981 bytes_out 0 128981 bytes_in 0 128981 station_ip 37.129.35.34 128981 port 152 128981 unique_id port 128981 remote_ip 10.8.1.66 128982 username barzegar 128982 mac 128982 bytes_out 0 128982 bytes_in 0 128982 station_ip 5.119.42.210 128982 port 154 128982 unique_id port 128982 remote_ip 10.8.1.174 128983 username malekpoir 128983 mac 128983 bytes_out 2477772 128983 bytes_in 27485801 128983 station_ip 5.119.49.133 128983 port 240 128983 unique_id port 128983 remote_ip 10.8.0.58 128986 username forozande 128986 mac 128986 bytes_out 6047591 128986 bytes_in 9779177 128986 station_ip 37.129.223.139 128986 port 242 128986 unique_id port 128986 remote_ip 10.8.0.74 65936 username arezoo 65936 kill_reason Another user logged on this global unique id 128989 username roka 128989 kill_reason Wrong password 128989 unique_id port 128989 bytes_out 0 128989 bytes_in 0 128989 station_ip 46.225.214.186 128989 port 15730176 128989 nas_port_type Virtual 128992 username hamid 128992 mac 128992 bytes_out 0 128992 bytes_in 0 128992 station_ip 37.129.35.34 128992 port 152 128992 unique_id port 128995 username mohsenaskari 128947 bytes_out 0 128947 bytes_in 0 128947 station_ip 83.123.128.198 128947 port 239 128947 unique_id port 128947 remote_ip 10.8.0.14 128949 username sedighe 128949 mac 128949 bytes_out 242091 128949 bytes_in 1172498 128949 station_ip 83.123.149.61 128949 port 234 128949 unique_id port 128949 remote_ip 10.8.0.146 128952 username mehdizare 128952 mac 128952 bytes_out 0 128952 bytes_in 0 128952 station_ip 5.120.87.77 128952 port 244 128952 unique_id port 128952 remote_ip 10.8.0.90 128956 username mohsenaskari 128956 mac 128956 bytes_out 55625 128956 bytes_in 67358 128956 station_ip 46.225.214.202 128956 port 244 128956 unique_id port 128956 remote_ip 10.8.0.246 128959 username barzegar 128959 mac 128959 bytes_out 0 128959 bytes_in 0 128959 station_ip 5.119.42.210 128959 port 149 128959 unique_id port 128959 remote_ip 10.8.1.174 128961 username mehdizare 128961 mac 128961 bytes_out 0 128961 bytes_in 0 128961 station_ip 5.120.87.77 128961 port 245 128961 unique_id port 128961 remote_ip 10.8.0.90 128962 username yahodi 128962 mac 128962 bytes_out 179410 128962 bytes_in 134216 128962 station_ip 83.122.133.42 128962 port 234 128962 unique_id port 128962 remote_ip 10.8.0.202 128963 username forozande 128963 kill_reason Another user logged on this global unique id 128963 mac 128963 bytes_out 0 128963 bytes_in 0 128963 station_ip 37.129.143.100 128963 port 242 128963 unique_id port 128963 remote_ip 10.8.0.74 128964 username yahodi 128964 mac 128964 bytes_out 1878029 128964 bytes_in 38748407 128964 station_ip 83.122.133.42 128964 port 245 128964 unique_id port 128964 remote_ip 10.8.0.202 128971 username mehdizare 128971 mac 128971 bytes_out 11364 128971 bytes_in 17542 128971 station_ip 5.120.87.77 128971 port 242 128971 unique_id port 128971 remote_ip 10.8.0.90 128974 username yahodi 128974 mac 128974 bytes_out 1483145 128974 bytes_in 25694575 128974 station_ip 83.122.133.42 128974 port 234 128974 unique_id port 128974 remote_ip 10.8.0.202 128978 username barzegar 128978 mac 128978 bytes_out 0 128978 bytes_in 0 128978 station_ip 5.119.42.210 128978 port 152 128978 unique_id port 128978 remote_ip 10.8.1.174 128980 username mosi 128980 kill_reason Another user logged on this global unique id 128980 mac 128980 bytes_out 0 128980 bytes_in 0 128980 station_ip 151.235.124.20 128980 port 228 128980 unique_id port 128984 username barzegar 128984 kill_reason Maximum check online fails reached 128984 mac 128984 bytes_out 0 128984 bytes_in 0 128984 station_ip 5.119.42.210 128984 port 245 128984 unique_id port 128985 username barzegar 128985 mac 128985 bytes_out 0 128985 bytes_in 0 128985 station_ip 5.119.42.210 128985 port 246 128985 unique_id port 128985 remote_ip 10.8.0.234 128987 username kordestani 128987 mac 128987 bytes_out 360594 128987 bytes_in 232180 128987 station_ip 151.235.92.120 128987 port 234 128987 unique_id port 128987 remote_ip 10.8.0.134 128990 username hosseine 128990 kill_reason Another user logged on this global unique id 128990 mac 128990 bytes_out 0 128990 bytes_in 0 128990 station_ip 37.129.22.160 128990 port 241 128990 unique_id port 128990 remote_ip 10.8.0.238 128993 username barzegar 128993 mac 128993 bytes_out 0 128993 bytes_in 0 128993 station_ip 5.119.42.210 128993 port 247 128993 unique_id port 128993 remote_ip 10.8.0.234 128997 username aminvpn 128997 mac 128997 bytes_out 96157 128997 bytes_in 299488 128997 station_ip 151.238.226.109 128997 port 246 128997 unique_id port 128997 remote_ip 10.8.0.14 128950 bytes_out 0 128950 bytes_in 0 128950 station_ip 37.129.38.115 128950 port 242 128950 unique_id port 128950 remote_ip 10.8.0.142 128953 username barzegar 128953 mac 128953 bytes_out 5267 128953 bytes_in 9904 128953 station_ip 5.119.42.210 128953 port 241 128953 unique_id port 128953 remote_ip 10.8.0.234 128954 username barzegar 128954 mac 128954 bytes_out 309112 128954 bytes_in 6070094 128954 station_ip 5.119.42.210 128954 port 141 128954 unique_id port 128954 remote_ip 10.8.1.174 128960 username barzegar 128960 mac 128960 bytes_out 6077 128960 bytes_in 10125 128960 station_ip 5.119.42.210 128960 port 234 128960 unique_id port 128960 remote_ip 10.8.0.234 128965 username mehdizare 128965 mac 128965 bytes_out 101520 128965 bytes_in 458613 128965 station_ip 5.120.87.77 128965 port 246 128965 unique_id port 128965 remote_ip 10.8.0.90 128968 username mirzaei 128968 mac 128968 bytes_out 0 128968 bytes_in 0 128968 station_ip 5.112.130.115 128968 port 152 128968 unique_id port 128968 remote_ip 10.8.1.30 128970 username mehdizare 128970 mac 128970 bytes_out 0 128970 bytes_in 0 128970 station_ip 5.120.87.77 128970 port 237 128970 unique_id port 128970 remote_ip 10.8.0.90 128972 username barzegar 128972 mac 128972 bytes_out 28926 128972 bytes_in 61236 128972 station_ip 5.119.42.210 128972 port 149 128972 unique_id port 128972 remote_ip 10.8.1.174 128973 username mohsenaskari 128973 mac 128973 bytes_out 58988 128973 bytes_in 326939 128973 station_ip 46.225.214.202 128973 port 237 128973 unique_id port 128973 remote_ip 10.8.0.246 128977 username mirzaei 128977 mac 128977 bytes_out 0 128977 bytes_in 0 128977 station_ip 5.119.149.90 128977 port 237 128977 unique_id port 128977 remote_ip 10.8.0.66 128988 username mosi 128988 kill_reason Another user logged on this global unique id 128988 mac 128988 bytes_out 0 128988 bytes_in 0 128988 station_ip 151.235.124.20 128988 port 228 128988 unique_id port 128991 username hamid 128991 kill_reason Another user logged on this global unique id 128991 mac 128991 bytes_out 0 128991 bytes_in 0 128991 station_ip 37.129.35.34 128991 port 152 128991 unique_id port 128994 username arash 128994 mac 128994 bytes_out 0 128994 bytes_in 0 128994 station_ip 188.245.89.10 128994 port 247 128994 unique_id port 128994 remote_ip 10.8.0.114 128999 username malekpoir 128999 kill_reason Another user logged on this global unique id 128999 mac 128999 bytes_out 0 128999 bytes_in 0 128999 station_ip 5.119.49.133 128999 port 240 128999 unique_id port 128999 remote_ip 10.8.0.58 129001 username mosi 65936 mac 5.237.81.4:49179: Unknown host 65936 bytes_out 0 65936 bytes_in 0 65936 station_ip 5.237.81.4:49179 65936 port 1018 65936 unique_id port 129001 kill_reason Another user logged on this global unique id 129001 mac 129001 bytes_out 0 129001 bytes_in 0 129001 station_ip 151.235.124.20 129001 port 228 129001 unique_id port 129003 username malekpoir 129003 mac 129003 bytes_out 0 129003 bytes_in 0 129003 station_ip 5.119.49.133 129003 port 240 129003 unique_id port 129006 username jamali 129006 mac 129006 bytes_out 0 129006 bytes_in 0 129006 station_ip 5.119.149.95 129006 port 247 129006 unique_id port 129006 remote_ip 10.8.0.150 129008 username yahodi 129008 kill_reason Another user logged on this global unique id 129008 mac 129008 bytes_out 0 129008 bytes_in 0 129008 station_ip 83.122.140.182 129008 port 242 129008 unique_id port 129008 remote_ip 10.8.0.202 129013 username kordestani 129013 mac 129013 bytes_out 197871 128995 mac 128995 bytes_out 155407 128995 bytes_in 459952 128995 station_ip 46.225.214.202 128995 port 234 128995 unique_id port 128995 remote_ip 10.8.0.246 128996 username forozande 128996 mac 128996 bytes_out 370846 128996 bytes_in 1704097 128996 station_ip 83.122.216.191 128996 port 242 128996 unique_id port 128996 remote_ip 10.8.0.74 129002 username rezasekonji 129002 kill_reason Relative expiration date has reached 129002 mac 129002 bytes_out 0 129002 bytes_in 0 129002 station_ip 83.122.84.145 129002 port 242 129002 unique_id port 129004 username rezasekonji 129004 kill_reason Relative expiration date has reached 129004 mac 129004 bytes_out 0 129004 bytes_in 0 129004 station_ip 83.122.84.145 129004 port 247 65946 username arezoo 65946 kill_reason Maximum check online fails reached 65946 mac 5.237.81.4:50079: Unknown host 65946 bytes_out 0 65946 bytes_in 0 65946 station_ip 5.237.81.4:50079 65946 port 1018 65946 unique_id port 129004 unique_id port 129005 username jamali 129005 mac 129005 bytes_out 106987 129005 bytes_in 248303 129005 station_ip 5.119.149.95 129005 port 246 129005 unique_id port 129005 remote_ip 10.8.0.150 129007 username mirzaei 129007 mac 129007 bytes_out 0 129007 bytes_in 0 129007 station_ip 5.112.22.244 129007 port 152 129007 unique_id port 129007 remote_ip 10.8.1.30 129009 username alihosseini1 129009 mac 129009 bytes_out 1710387 129009 bytes_in 17677177 129009 station_ip 5.120.138.155 129009 port 234 129009 unique_id port 129009 remote_ip 10.8.0.166 129010 username mirzaei 129010 mac 129010 bytes_out 11034 129010 bytes_in 22633 129010 station_ip 5.120.146.177 129010 port 155 129010 unique_id port 129010 remote_ip 10.8.1.30 129012 username mosi 129012 kill_reason Another user logged on this global unique id 129012 mac 129012 bytes_out 0 129012 bytes_in 0 129012 station_ip 151.235.124.20 129012 port 228 65982 username arezoo 65982 kill_reason Maximum check online fails reached 65982 mac 5.237.81.4:49196: Unknown host 65982 bytes_out 0 65982 bytes_in 0 65982 station_ip 5.237.81.4:49196 65982 port 1018 65982 unique_id port 65983 username arezoo 65983 kill_reason Another user logged on this global unique id 65983 mac 5.237.81.4:49178: Unknown host 65983 bytes_out 0 65983 bytes_in 0 65983 station_ip 5.237.81.4:49178 65983 port 1018 65983 unique_id port 129012 unique_id port 129015 username yahodi 129015 kill_reason Another user logged on this global unique id 129015 mac 129015 bytes_out 0 129015 bytes_in 0 129015 station_ip 83.122.140.182 129015 port 242 129015 unique_id port 129017 username rezasekonji 129017 kill_reason Relative expiration date has reached 129017 mac 129017 bytes_out 0 129017 bytes_in 0 129017 station_ip 83.122.84.145 129017 port 248 129017 unique_id port 129018 username rezasekonji 129018 kill_reason Relative expiration date has reached 129018 mac 129018 bytes_out 0 129018 bytes_in 0 129018 station_ip 83.122.84.145 129018 port 248 129018 unique_id port 129020 username rezasekonji 129020 kill_reason Relative expiration date has reached 129020 mac 129020 bytes_out 0 129020 bytes_in 0 129020 station_ip 83.122.84.145 129020 port 248 129020 unique_id port 129023 username rezasekonji 129023 kill_reason Relative expiration date has reached 129023 mac 129023 bytes_out 0 129023 bytes_in 0 129023 station_ip 83.122.84.145 129023 port 248 129023 unique_id port 129025 username rezasekonji 129025 kill_reason Relative expiration date has reached 129025 mac 129025 bytes_out 0 129025 bytes_in 0 129025 station_ip 83.122.84.145 129025 port 248 129025 unique_id port 129028 username rezasekonji 129028 kill_reason Relative expiration date has reached 128998 username mirzaei 128998 mac 128998 bytes_out 0 128998 bytes_in 0 128998 station_ip 5.119.149.90 128998 port 237 128998 unique_id port 128998 remote_ip 10.8.0.66 129000 username barzegar 129000 mac 129000 bytes_out 0 129000 bytes_in 0 129000 station_ip 5.119.42.210 129000 port 242 129000 unique_id port 129000 remote_ip 10.8.0.234 129011 username yahodi 129011 kill_reason Another user logged on this global unique id 129011 mac 129011 bytes_out 0 129011 bytes_in 0 129011 station_ip 83.122.140.182 129011 port 242 129011 unique_id port 129016 username rezasekonji 129016 kill_reason Relative expiration date has reached 129016 mac 129016 bytes_out 0 129016 bytes_in 0 129016 station_ip 83.122.84.145 129016 port 248 129016 unique_id port 129019 username mirzaei 129019 mac 129019 bytes_out 0 129019 bytes_in 0 129019 station_ip 5.113.78.191 129019 port 156 129019 unique_id port 129019 remote_ip 10.8.1.30 129022 username rezasekonji 129022 kill_reason Relative expiration date has reached 129022 mac 129022 bytes_out 0 129022 bytes_in 0 129022 station_ip 83.122.84.145 129022 port 248 129022 unique_id port 129024 username rezasekonji 129024 kill_reason Relative expiration date has reached 129024 mac 129024 bytes_out 0 129024 bytes_in 0 129024 station_ip 83.122.84.145 129024 port 248 129024 unique_id port 129027 username rezasekonji 129027 kill_reason Relative expiration date has reached 129027 mac 129027 bytes_out 0 129027 bytes_in 0 129027 station_ip 83.122.84.145 129027 port 248 129027 unique_id port 129029 username barzegar 129029 mac 129029 bytes_out 3696 129029 bytes_in 6194 129029 station_ip 5.119.42.210 129029 port 152 129029 unique_id port 129029 remote_ip 10.8.1.174 129032 username mohammadjavad 129032 mac 129032 bytes_out 79474 129032 bytes_in 115558 129032 station_ip 83.122.15.235 129032 port 237 129032 unique_id port 129032 remote_ip 10.8.0.142 129036 username yahodi 129036 kill_reason Another user logged on this global unique id 129036 mac 129036 bytes_out 0 129036 bytes_in 0 129036 station_ip 83.122.140.182 129036 port 242 129036 unique_id port 129037 username mohammadjavad 129037 mac 129037 bytes_out 0 129037 bytes_in 0 129037 station_ip 83.122.15.235 129037 port 152 129037 unique_id port 129037 remote_ip 10.8.1.146 129039 username forozande 129039 mac 129039 bytes_out 120591 129039 bytes_in 270086 129039 station_ip 83.123.87.230 129039 port 237 129039 unique_id port 129039 remote_ip 10.8.0.74 129042 username hamid.e 129042 unique_id port 129042 terminate_cause User-Request 129042 bytes_out 4091716 129042 bytes_in 62337718 129042 station_ip 37.27.8.211 129042 port 15730177 129042 nas_port_type Virtual 129042 remote_ip 5.5.5.254 129044 username zare 129044 mac 129044 bytes_out 0 129044 bytes_in 0 129044 station_ip 94.183.214.14 129044 port 155 129044 unique_id port 129044 remote_ip 10.8.1.58 129045 username barzegar 129045 mac 129045 bytes_out 0 129045 bytes_in 0 129045 station_ip 5.119.42.210 129045 port 237 129045 unique_id port 129045 remote_ip 10.8.0.234 129046 username jamali 129046 mac 129046 bytes_out 76690 129046 bytes_in 130282 129046 station_ip 5.119.149.95 129046 port 246 65986 username arezoo 129046 unique_id port 129046 remote_ip 10.8.0.150 129049 username kordestani 129049 mac 129049 bytes_out 291913 129049 bytes_in 3765665 129049 station_ip 151.235.92.120 129049 port 247 129049 unique_id port 129049 remote_ip 10.8.0.134 129051 username mansur 129051 mac 129051 bytes_out 65727 129051 bytes_in 335406 129013 bytes_in 953489 129013 station_ip 151.235.92.120 129013 port 237 129013 unique_id port 129013 remote_ip 10.8.0.134 129014 username barzegar 129014 mac 129014 bytes_out 0 129014 bytes_in 0 129014 station_ip 5.119.42.210 129014 port 152 129014 unique_id port 129014 remote_ip 10.8.1.174 129021 username rezasekonji 129021 kill_reason Relative expiration date has reached 129021 mac 129021 bytes_out 0 129021 bytes_in 0 129021 station_ip 83.122.84.145 129021 port 248 129021 unique_id port 129026 username rezasekonji 129026 kill_reason Relative expiration date has reached 129026 mac 129026 bytes_out 0 129026 bytes_in 0 129026 station_ip 83.122.84.145 129026 port 248 129026 unique_id port 129031 username hosseine 129031 kill_reason Another user logged on this global unique id 129031 mac 129031 bytes_out 0 129031 bytes_in 0 129031 station_ip 37.129.22.160 129031 port 241 129031 unique_id port 129035 username barzegar 129035 mac 129035 bytes_out 0 129035 bytes_in 0 129035 station_ip 5.119.42.210 129035 port 156 129035 unique_id port 129035 remote_ip 10.8.1.174 129038 username mansur 129038 mac 129038 bytes_out 0 129038 bytes_in 0 129038 station_ip 5.119.82.108 129038 port 234 129038 unique_id port 129038 remote_ip 10.8.0.210 129040 username mohammadjavad 129040 mac 129040 bytes_out 0 129040 bytes_in 0 129040 station_ip 83.122.15.235 129040 port 152 129040 unique_id port 129040 remote_ip 10.8.1.146 129047 username barzegar 129047 mac 129047 bytes_out 0 129047 bytes_in 0 129047 station_ip 5.119.42.210 129047 port 237 129047 unique_id port 129047 remote_ip 10.8.0.234 129052 username afarin1 129052 mac 129052 bytes_out 4658353 129052 bytes_in 48012375 129052 station_ip 37.129.14.39 129052 port 233 129052 unique_id port 129052 remote_ip 10.8.0.118 129055 username mahdiyehalizadeh 129055 mac 129055 bytes_out 61858 129055 bytes_in 218739 129055 station_ip 37.129.234.35 129055 port 237 129055 unique_id port 129055 remote_ip 10.8.0.82 129057 username kordestani 129057 mac 129057 bytes_out 134801 129057 bytes_in 1976959 129057 station_ip 151.235.92.120 129057 port 242 129057 unique_id port 129057 remote_ip 10.8.0.134 129058 username mahdiyehalizadeh 129058 mac 129058 bytes_out 41768 129058 bytes_in 571287 129058 station_ip 37.129.234.35 129058 port 247 129058 unique_id port 129058 remote_ip 10.8.0.82 129059 username mirzaei 129059 mac 129059 bytes_out 0 129059 bytes_in 0 129059 station_ip 5.114.61.116 129059 port 248 129059 unique_id port 129059 remote_ip 10.8.0.66 129060 username barzegar 129060 mac 129060 bytes_out 6841 129060 bytes_in 9780 129060 station_ip 5.119.42.210 129060 port 242 129060 unique_id port 129060 remote_ip 10.8.0.234 129063 username zare 129063 mac 129063 bytes_out 0 65981 username arezoo 65981 kill_reason Another user logged on this global unique id 65981 mac 5.237.81.4:49183: Unknown host 65981 bytes_out 0 65981 bytes_in 0 65981 station_ip 5.237.81.4:49183 65981 port 1018 65981 unique_id port 65984 username arezoo 65984 kill_reason Another user logged on this global unique id 65984 mac 5.237.81.4:49183: Unknown host 65984 bytes_out 0 65984 bytes_in 0 65984 station_ip 5.237.81.4:49183 65984 port 1018 129063 bytes_in 0 129063 station_ip 94.183.214.14 129063 port 154 129063 unique_id port 129063 remote_ip 10.8.1.58 129069 username afarin1 129069 kill_reason Another user logged on this global unique id 129069 mac 129069 bytes_out 0 129069 bytes_in 0 129069 station_ip 37.129.14.39 129069 port 233 129069 unique_id port 129069 remote_ip 10.8.0.118 65984 unique_id port 65985 username arezoo 65985 kill_reason Another user logged on this global unique id 65985 mac 5.237.81.4:49187: Unknown host 65985 bytes_out 0 65985 bytes_in 0 65985 station_ip 5.237.81.4:49187 65985 port 1018 65985 unique_id port 65987 username arezoo 65987 kill_reason Maximum check online fails reached 65987 mac 5.237.81.4:49203: Unknown host 65987 bytes_out 0 65987 bytes_in 0 65987 station_ip 5.237.81.4:49203 65987 port 1018 65987 unique_id port 65988 username arezoo 65988 kill_reason Maximum check online fails reached 65988 mac 5.237.81.4:49191: Unknown host 65988 bytes_out 0 65988 bytes_in 0 65988 station_ip 5.237.81.4:49191 65988 port 1018 65988 unique_id port 129028 mac 129028 bytes_out 0 129028 bytes_in 0 129028 station_ip 83.122.84.145 129028 port 248 129028 unique_id port 129030 username rezasekonji 129030 kill_reason Relative expiration date has reached 129030 mac 129030 bytes_out 0 129030 bytes_in 0 129030 station_ip 83.122.84.145 129030 port 248 129030 unique_id port 129033 username barzegar 129033 mac 129033 bytes_out 0 129033 bytes_in 0 129033 station_ip 5.119.42.210 129033 port 248 129033 unique_id port 129033 remote_ip 10.8.0.234 129034 username aminvpn 129034 mac 129034 bytes_out 0 129034 bytes_in 0 129034 station_ip 5.216.153.123 129034 port 237 129034 unique_id port 129034 remote_ip 10.8.0.14 129041 username mirzaei 129041 mac 129041 bytes_out 34656 129041 bytes_in 54101 129041 station_ip 5.113.78.191 129041 port 248 129041 unique_id port 129041 remote_ip 10.8.0.66 129043 username saeed9658 129043 mac 129043 bytes_out 0 129043 bytes_in 0 129043 station_ip 5.119.106.59 129043 port 154 129043 unique_id port 129043 remote_ip 10.8.1.210 129048 username yahodi 129048 mac 129048 bytes_out 0 129048 bytes_in 0 129048 station_ip 83.122.140.182 129048 port 242 129048 unique_id port 129050 username jamali 129050 mac 129050 bytes_out 8544 129050 bytes_in 9151 129050 station_ip 5.119.149.95 129050 port 249 129050 unique_id port 129050 remote_ip 10.8.0.150 129054 username ehsun 129054 unique_id port 129054 terminate_cause Lost-Carrier 129054 bytes_out 3089683 129054 bytes_in 131063594 129054 station_ip 5.119.251.194 129054 port 15730175 129054 nas_port_type Virtual 129054 remote_ip 5.5.5.255 129062 username alipour 129062 mac 129062 bytes_out 291147 129062 bytes_in 1632857 129062 station_ip 83.123.142.106 129062 port 234 129062 unique_id port 129062 remote_ip 10.8.0.102 129065 username forozande 129065 mac 129065 bytes_out 0 129065 bytes_in 0 129065 station_ip 83.122.39.66 129065 port 233 129065 unique_id port 129065 remote_ip 10.8.0.74 129068 username barzegar 129068 mac 129068 bytes_out 0 129068 bytes_in 0 129068 station_ip 5.119.42.210 129068 port 247 129068 unique_id port 129068 remote_ip 10.8.0.234 129072 username mehdizare 129072 mac 129072 bytes_out 0 129072 bytes_in 0 129072 station_ip 5.120.87.77 129072 port 149 129072 unique_id port 129072 remote_ip 10.8.1.42 129073 username forozande 129073 mac 129073 bytes_out 472483 129073 bytes_in 3337869 129073 station_ip 37.129.210.71 129073 port 247 129073 unique_id port 129073 remote_ip 10.8.0.74 129075 username alihosseini1 129075 mac 129075 bytes_out 0 129075 bytes_in 0 129075 station_ip 5.120.93.238 129075 port 250 129075 unique_id port 129075 remote_ip 10.8.0.166 129077 username kamali2 129077 mac 129077 bytes_out 586952 129077 bytes_in 973113 129077 station_ip 5.119.132.255 129077 port 234 129077 unique_id port 129077 remote_ip 10.8.0.214 65986 kill_reason Wrong password 65986 mac 5.237.81.4:49199: Unknown host 65986 bytes_out 0 65986 bytes_in 0 65986 station_ip 5.237.81.4:49199 65986 port 1018 65986 unique_id port 129051 station_ip 5.119.82.108 129051 port 156 129051 unique_id port 129051 remote_ip 10.8.1.194 129053 username mosi 129053 kill_reason Another user logged on this global unique id 129053 mac 129053 bytes_out 0 129053 bytes_in 0 129053 station_ip 151.235.124.20 129053 port 228 129053 unique_id port 129056 username mansur 129056 mac 129056 bytes_out 0 129056 bytes_in 0 129056 station_ip 5.119.82.108 129056 port 152 129056 unique_id port 129056 remote_ip 10.8.1.194 129061 username mosi 129061 kill_reason Another user logged on this global unique id 129061 mac 129061 bytes_out 0 129061 bytes_in 0 129061 station_ip 151.235.124.20 129061 port 228 129061 unique_id port 129064 username barzegar 129064 mac 129064 bytes_out 0 129064 bytes_in 0 129064 station_ip 5.119.42.210 129064 port 152 129064 unique_id port 129064 remote_ip 10.8.1.174 129066 username aminvpn 129066 unique_id port 129066 terminate_cause Lost-Carrier 129066 bytes_out 990226 129066 bytes_in 19372649 129066 station_ip 109.125.128.116 129066 port 15730188 129066 nas_port_type Virtual 129066 remote_ip 5.5.5.254 129067 username alipour 129067 mac 129067 bytes_out 51672 129067 bytes_in 56933 129067 station_ip 83.123.142.106 129067 port 234 129067 unique_id port 129067 remote_ip 10.8.0.102 129071 username alirr 129071 kill_reason Relative expiration date has reached 129071 unique_id port 129071 bytes_out 0 129071 bytes_in 0 129071 station_ip 89.32.97.81 129071 port 15730190 129071 nas_port_type Virtual 129074 username alihosseini1 129074 mac 129074 bytes_out 967966 129074 bytes_in 6590293 129074 station_ip 5.120.93.238 129074 port 248 129074 unique_id port 129074 remote_ip 10.8.0.166 129076 username barzegar 129076 mac 129076 bytes_out 0 129076 bytes_in 0 129076 station_ip 5.119.42.210 129076 port 248 129076 unique_id port 129076 remote_ip 10.8.0.234 129078 username saeed9658 129078 mac 129078 bytes_out 0 129078 bytes_in 0 129078 station_ip 5.119.106.59 129078 port 152 129078 unique_id port 129078 remote_ip 10.8.1.210 129080 username malekpoir 129080 mac 129080 bytes_out 515481 129080 bytes_in 4874112 129080 station_ip 5.119.49.133 129080 port 240 129080 unique_id port 129080 remote_ip 10.8.0.58 129084 username alihosseini1 129084 mac 129084 bytes_out 0 129084 bytes_in 0 129084 station_ip 5.120.93.238 129084 port 250 129084 unique_id port 129084 remote_ip 10.8.0.166 129088 username barzegar 129088 mac 129088 bytes_out 0 129088 bytes_in 0 129088 station_ip 5.119.42.210 129088 port 149 129088 unique_id port 129088 remote_ip 10.8.1.174 129089 username alihosseini1 129089 mac 129089 bytes_out 0 129089 bytes_in 0 129089 station_ip 5.120.93.238 129089 port 251 129089 unique_id port 129089 remote_ip 10.8.0.166 129098 username mohsenaskari 129098 mac 129098 bytes_out 49509 129098 bytes_in 115326 129098 station_ip 46.225.214.202 129098 port 233 129098 unique_id port 129098 remote_ip 10.8.0.246 129105 username rezasekonji 129105 kill_reason Relative expiration date has reached 129105 mac 129105 bytes_out 0 129105 bytes_in 0 129105 station_ip 37.129.145.85 129105 port 240 129105 unique_id port 129113 username saeed9658 129113 kill_reason Another user logged on this global unique id 129113 mac 129113 bytes_out 0 129113 bytes_in 0 129113 station_ip 5.119.106.59 129113 port 251 129113 unique_id port 129121 username mehdizare 129121 mac 129070 username alirr 129070 kill_reason Relative expiration date has reached 129070 unique_id port 129070 bytes_out 0 129070 bytes_in 0 129070 station_ip 89.32.97.81 129070 port 15730189 129070 nas_port_type Virtual 129079 username afarin1 129079 kill_reason Another user logged on this global unique id 129079 mac 129079 bytes_out 0 129079 bytes_in 0 129079 station_ip 37.129.14.39 129079 port 233 129079 unique_id port 129083 username alireza 129083 unique_id port 129083 terminate_cause Lost-Carrier 129083 bytes_out 893770 129083 bytes_in 12187910 129083 station_ip 194.15.99.84 129083 port 15730184 129083 nas_port_type Virtual 129083 remote_ip 5.5.5.252 129085 username barzegar 129085 mac 129085 bytes_out 0 129085 bytes_in 0 129085 station_ip 5.119.42.210 129085 port 149 129085 unique_id port 129085 remote_ip 10.8.1.174 129090 username saeed9658 129090 mac 129090 bytes_out 0 129090 bytes_in 0 129090 station_ip 5.119.106.59 129090 port 252 129090 unique_id port 129090 remote_ip 10.8.0.62 129091 username afarin1 129091 kill_reason Another user logged on this global unique id 129091 mac 129091 bytes_out 0 129091 bytes_in 0 129091 station_ip 37.129.14.39 129091 port 233 129091 unique_id port 129092 username alihosseini1 129092 mac 129092 bytes_out 0 129092 bytes_in 0 129092 station_ip 5.120.93.238 129092 port 252 129092 unique_id port 129092 remote_ip 10.8.0.166 129093 username forozande 129093 mac 129093 bytes_out 638610 129093 bytes_in 2824829 129093 station_ip 83.123.132.182 129093 port 248 129093 unique_id port 129093 remote_ip 10.8.0.74 129094 username alihosseini1 129094 mac 129094 bytes_out 0 129094 bytes_in 0 129094 station_ip 5.120.93.238 129094 port 248 129094 unique_id port 129094 remote_ip 10.8.0.166 129095 username afarin1 129095 mac 129095 bytes_out 0 129095 bytes_in 0 129095 station_ip 37.129.14.39 129095 port 233 129095 unique_id port 129097 username barzegar 129097 mac 129097 bytes_out 0 129097 bytes_in 0 129097 station_ip 5.119.42.210 129097 port 149 129097 unique_id port 129097 remote_ip 10.8.1.174 129100 username kordestani 129100 mac 129100 bytes_out 0 129100 bytes_in 0 129100 station_ip 151.235.92.120 129100 port 237 129100 unique_id port 129100 remote_ip 10.8.0.134 129103 username forozande 129103 mac 129103 bytes_out 0 129103 bytes_in 0 129103 station_ip 37.129.12.181 129103 port 237 129103 unique_id port 129103 remote_ip 10.8.0.74 129104 username alihosseini1 129104 mac 129104 bytes_out 0 129104 bytes_in 0 129104 station_ip 5.120.93.238 129104 port 237 129104 unique_id port 129104 remote_ip 10.8.0.166 129106 username saeed9658 129106 kill_reason Another user logged on this global unique id 129106 mac 129106 bytes_out 0 129106 bytes_in 0 129106 station_ip 5.119.106.59 129106 port 251 129106 unique_id port 129106 remote_ip 10.8.0.62 129107 username barzegar 129107 mac 129107 bytes_out 0 129107 bytes_in 0 129107 station_ip 5.119.42.210 129107 port 240 129107 unique_id port 129107 remote_ip 10.8.0.234 129110 username mehdizare 129110 mac 129110 bytes_out 25170 129110 bytes_in 29945 129110 station_ip 5.120.87.77 129110 port 233 129110 unique_id port 129110 remote_ip 10.8.0.90 129111 username alihosseini1 129111 mac 129111 bytes_out 0 129111 bytes_in 0 129111 station_ip 5.120.93.238 129111 port 152 129111 unique_id port 129111 remote_ip 10.8.1.106 129112 username sabaghnezhad 129112 mac 129112 bytes_out 0 129112 bytes_in 0 129112 station_ip 37.129.132.104 129112 port 240 129112 unique_id port 129081 username mehdizare 129081 mac 129081 bytes_out 0 129081 bytes_in 0 129081 station_ip 5.120.87.77 129081 port 249 129081 unique_id port 129081 remote_ip 10.8.0.90 129082 username alihosseini1 129082 mac 129082 bytes_out 0 129082 bytes_in 0 129082 station_ip 5.120.93.238 129082 port 240 129082 unique_id port 129082 remote_ip 10.8.0.166 129086 username saeed9658 129086 mac 129086 bytes_out 0 129086 bytes_in 0 129086 station_ip 5.119.106.59 129086 port 250 129086 unique_id port 129086 remote_ip 10.8.0.62 129087 username jamali 129087 mac 129087 bytes_out 158371 129087 bytes_in 169669 129087 station_ip 5.119.149.95 129087 port 246 129087 unique_id port 129087 remote_ip 10.8.0.150 129096 username mohsenaskari 129096 mac 129096 bytes_out 1279360 129096 bytes_in 7574559 129096 station_ip 46.225.214.202 129096 port 247 129096 unique_id port 129096 remote_ip 10.8.0.246 129099 username mehdizare 129099 mac 129099 bytes_out 30609 129099 bytes_in 69125 129099 station_ip 5.120.87.77 129099 port 240 129099 unique_id port 129099 remote_ip 10.8.0.90 129101 username alihosseini1 129101 mac 129101 bytes_out 0 129101 bytes_in 0 129101 station_ip 5.120.93.238 129101 port 149 129101 unique_id port 129101 remote_ip 10.8.1.106 129102 username alihosseini1 129102 mac 129102 bytes_out 0 129102 bytes_in 0 129102 station_ip 5.120.93.238 129102 port 240 129102 unique_id port 129102 remote_ip 10.8.0.166 129108 username alihosseini1 129108 mac 129108 bytes_out 0 129108 bytes_in 0 129108 station_ip 5.120.93.238 129108 port 152 129108 unique_id port 129108 remote_ip 10.8.1.106 129109 username barzegar 129109 mac 129109 bytes_out 0 129109 bytes_in 0 129109 station_ip 5.119.42.210 129109 port 152 129109 unique_id port 129109 remote_ip 10.8.1.174 129115 username forozande 129115 mac 129115 bytes_out 0 129115 bytes_in 0 129115 station_ip 83.122.112.41 129115 port 247 129115 unique_id port 129115 remote_ip 10.8.0.74 129116 username mehdizare 129116 mac 129116 bytes_out 0 129116 bytes_in 0 129116 station_ip 5.120.87.77 129116 port 248 129116 unique_id port 129116 remote_ip 10.8.0.90 129117 username moradi 129117 kill_reason Another user logged on this global unique id 129117 mac 129117 bytes_out 0 129117 bytes_in 0 129117 station_ip 46.225.214.186 129117 port 244 129117 unique_id port 129117 remote_ip 10.8.0.250 129120 username forozande 129120 mac 129120 bytes_out 0 129120 bytes_in 0 129120 station_ip 37.129.175.146 129120 port 240 129120 unique_id port 129120 remote_ip 10.8.0.74 129122 username alihosseini1 129122 mac 129122 bytes_out 0 129122 bytes_in 0 129122 station_ip 5.120.93.238 129122 port 149 129122 unique_id port 129122 remote_ip 10.8.1.106 129127 username barzegar 129127 mac 129127 bytes_out 17829 129127 bytes_in 56688 129127 station_ip 5.119.42.210 129127 port 149 129127 unique_id port 129127 remote_ip 10.8.1.174 129129 username saeed9658 129129 kill_reason Another user logged on this global unique id 129129 mac 129129 bytes_out 0 129129 bytes_in 0 129129 station_ip 5.119.106.59 129129 port 251 129129 unique_id port 129132 username barzegar 129132 mac 129132 bytes_out 0 129132 bytes_in 0 129132 station_ip 5.119.42.210 129132 port 149 129132 unique_id port 129132 remote_ip 10.8.1.174 129134 username alipour 129134 mac 129134 bytes_out 8958 129134 bytes_in 19538 129134 station_ip 83.123.142.106 129134 port 154 129134 unique_id port 129134 remote_ip 10.8.1.50 129138 username mehdizare 129112 remote_ip 10.8.0.186 129114 username barzegar 129114 mac 129114 bytes_out 0 129114 bytes_in 0 129114 station_ip 5.119.42.210 129114 port 233 129114 unique_id port 129114 remote_ip 10.8.0.234 129118 username zare 129118 mac 129118 bytes_out 631494 129118 bytes_in 10273531 129118 station_ip 94.183.214.14 129118 port 149 129118 unique_id port 66045 username arezoo 66045 kill_reason Maximum check online fails reached 66045 mac 5.237.81.4:49182: Unknown host 66045 bytes_out 0 66045 bytes_in 0 66045 station_ip 5.237.81.4:49182 66045 port 1018 66045 unique_id port 129118 remote_ip 10.8.1.58 129119 username barzegar 129119 mac 129119 bytes_out 3118 129119 bytes_in 5580 129119 station_ip 5.119.42.210 129119 port 152 129119 unique_id port 129119 remote_ip 10.8.1.174 129125 username mehdizare 129125 mac 129125 bytes_out 0 129125 bytes_in 0 129125 station_ip 5.120.87.77 129125 port 233 129125 unique_id port 129125 remote_ip 10.8.0.90 129126 username alipour 129126 mac 129126 bytes_out 616449 129126 bytes_in 5176462 129126 station_ip 83.123.142.106 129126 port 154 129126 unique_id port 129126 remote_ip 10.8.1.50 129128 username barzegar 129128 mac 129128 bytes_out 0 129128 bytes_in 0 129128 station_ip 5.119.42.210 129128 port 149 129128 unique_id port 129128 remote_ip 10.8.1.174 129130 username barzegar 129130 mac 129130 bytes_out 0 129130 bytes_in 0 129130 station_ip 5.119.42.210 129130 port 149 129130 unique_id port 129130 remote_ip 10.8.1.174 129135 username vanila 129135 mac 129135 bytes_out 0 129135 bytes_in 0 129135 station_ip 83.122.192.25 129135 port 234 129135 unique_id port 129135 remote_ip 10.8.0.178 129136 username alihosseini1 129136 mac 129136 bytes_out 0 129136 bytes_in 0 129136 station_ip 5.120.93.238 129136 port 233 129136 unique_id port 129136 remote_ip 10.8.0.166 129137 username kordestani 129137 mac 129137 bytes_out 0 129137 bytes_in 0 129137 station_ip 151.235.92.120 129137 port 237 129137 unique_id port 129137 remote_ip 10.8.0.134 129140 username saeed9658 129140 mac 129140 bytes_out 0 129140 bytes_in 0 129140 station_ip 5.119.106.59 129140 port 251 129140 unique_id port 129143 username aminvpn 129143 mac 129143 bytes_out 0 129143 bytes_in 0 129143 station_ip 151.238.226.109 129143 port 234 129143 unique_id port 129143 remote_ip 10.8.0.14 129153 username mohammadjavad 129153 mac 129153 bytes_out 202059 129153 bytes_in 1421125 129153 station_ip 83.123.72.12 129153 port 155 129153 unique_id port 129153 remote_ip 10.8.1.146 129163 username moradi 129163 mac 129163 bytes_out 0 129163 bytes_in 0 129163 station_ip 46.225.214.186 129163 port 244 129163 unique_id port 129164 username alihosseini1 129164 mac 129164 bytes_out 0 129164 bytes_in 0 129164 station_ip 5.119.67.76 129164 port 244 129164 unique_id port 129164 remote_ip 10.8.0.166 129171 username arash 129171 mac 129171 bytes_out 800384 129171 bytes_in 4263411 129171 station_ip 37.27.2.36 129171 port 244 129171 unique_id port 129171 remote_ip 10.8.0.114 129175 username moradi 129175 mac 129175 bytes_out 362103 129175 bytes_in 3002099 129175 station_ip 46.225.214.186 129175 port 234 129175 unique_id port 129175 remote_ip 10.8.0.250 129180 username aminvpn 129180 mac 129180 bytes_out 69896 129180 bytes_in 299546 129180 station_ip 83.122.249.68 129180 port 228 129180 unique_id port 129180 remote_ip 10.8.0.14 129182 username barzegar 129182 mac 129182 bytes_out 10420 129121 bytes_out 0 129121 bytes_in 0 129121 station_ip 5.120.87.77 129121 port 233 129121 unique_id port 129121 remote_ip 10.8.0.90 129123 username barzegar 129123 mac 129123 bytes_out 0 129123 bytes_in 0 129123 station_ip 5.119.42.210 129123 port 149 129123 unique_id port 129123 remote_ip 10.8.1.174 129124 username alihosseini1 129124 mac 129124 bytes_out 0 129124 bytes_in 0 129124 station_ip 5.120.93.238 129124 port 152 129124 unique_id port 129124 remote_ip 10.8.1.106 129131 username alihosseini1 129131 mac 129131 bytes_out 0 129131 bytes_in 0 129131 station_ip 5.120.93.238 129131 port 240 129131 unique_id port 129131 remote_ip 10.8.0.166 129133 username forozande 129133 mac 129133 bytes_out 0 129133 bytes_in 0 129133 station_ip 83.122.157.4 129133 port 233 129133 unique_id port 129133 remote_ip 10.8.0.74 129139 username khalili 129139 mac 129139 bytes_out 2200431 129139 bytes_in 4810131 129139 station_ip 5.119.158.105 129139 port 141 129139 unique_id port 129139 remote_ip 10.8.1.18 129141 username mehdizare 129141 mac 129141 bytes_out 0 129141 bytes_in 0 129141 station_ip 5.120.87.77 129141 port 141 129141 unique_id port 129141 remote_ip 10.8.1.42 129142 username jamali 129142 mac 129142 bytes_out 0 129142 bytes_in 0 129142 station_ip 5.119.149.95 129142 port 250 129142 unique_id port 129142 remote_ip 10.8.0.150 129145 username barzegar 129145 mac 129145 bytes_out 0 129145 bytes_in 0 129145 station_ip 5.119.42.210 129145 port 234 129145 unique_id port 129145 remote_ip 10.8.0.234 129148 username barzegar 129148 mac 129148 bytes_out 0 129148 bytes_in 0 129148 station_ip 5.119.42.210 129148 port 247 129148 unique_id port 129148 remote_ip 10.8.0.234 129152 username barzegar 129152 mac 129152 bytes_out 2499 129152 bytes_in 4990 129152 station_ip 5.119.42.210 129152 port 152 129152 unique_id port 129152 remote_ip 10.8.1.174 129154 username aminvpn 129154 unique_id port 129154 terminate_cause User-Request 129154 bytes_out 2766714 129154 bytes_in 51506237 129154 station_ip 5.119.6.232 129154 port 15730192 129154 nas_port_type Virtual 129154 remote_ip 5.5.5.255 129155 username mehdizare 129155 mac 129155 bytes_out 0 129155 bytes_in 0 129155 station_ip 5.120.87.77 129155 port 141 129155 unique_id port 129155 remote_ip 10.8.1.42 129156 username aminvpn 129156 unique_id port 129156 terminate_cause User-Request 129156 bytes_out 106173 129156 bytes_in 1612405 129156 station_ip 5.119.6.232 129156 port 15730193 129156 nas_port_type Virtual 129156 remote_ip 5.5.5.255 129158 username aminvpn 129158 unique_id port 129158 terminate_cause User-Request 129158 bytes_out 0 129158 bytes_in 304 129158 station_ip 5.119.6.232 129158 port 15730194 129158 nas_port_type Virtual 129158 remote_ip 5.5.5.37 129161 username mehdizare 129161 mac 129161 bytes_out 0 129161 bytes_in 0 129161 station_ip 5.120.87.77 129161 port 234 129161 unique_id port 129161 remote_ip 10.8.0.90 129165 username arash 129165 mac 129165 bytes_out 0 129165 bytes_in 0 129165 station_ip 37.27.2.36 129165 port 237 129165 unique_id port 129165 remote_ip 10.8.0.114 129167 username mehdizare 129167 mac 129167 bytes_out 10750 129167 bytes_in 18300 129167 station_ip 5.120.87.77 129167 port 228 129167 unique_id port 129167 remote_ip 10.8.0.90 129174 username malekpoir 129174 kill_reason Another user logged on this global unique id 129174 mac 129174 bytes_out 0 129174 bytes_in 0 129174 station_ip 5.119.49.133 129174 port 246 129174 unique_id port 129138 mac 129138 bytes_out 0 129138 bytes_in 0 129138 station_ip 5.120.87.77 129138 port 152 129138 unique_id port 129138 remote_ip 10.8.1.42 129144 username mehdizare 129144 mac 129144 bytes_out 11299 129144 bytes_in 17085 129144 station_ip 5.120.87.77 129144 port 141 129144 unique_id port 129144 remote_ip 10.8.1.42 129146 username mosi 129146 mac 129146 bytes_out 0 129146 bytes_in 0 129146 station_ip 151.235.124.20 129146 port 228 129146 unique_id port 129147 username mosi 129147 mac 129147 bytes_out 0 129147 bytes_in 0 129147 station_ip 5.200.111.166 129147 port 234 129147 unique_id port 129147 remote_ip 10.8.0.138 129149 username saeed9658 129149 mac 129149 bytes_out 0 129149 bytes_in 0 129149 station_ip 5.119.106.59 129149 port 233 129149 unique_id port 129149 remote_ip 10.8.0.62 129150 username vanila 129150 mac 129150 bytes_out 0 129150 bytes_in 0 129150 station_ip 83.122.192.25 129150 port 228 129150 unique_id port 129150 remote_ip 10.8.0.178 129151 username saeed9658 129151 mac 129151 bytes_out 0 129151 bytes_in 0 129151 station_ip 5.119.106.59 129151 port 233 129151 unique_id port 129151 remote_ip 10.8.0.62 129157 username jamali 129157 mac 129157 bytes_out 87014 129157 bytes_in 215954 129157 station_ip 5.119.149.95 129157 port 237 129157 unique_id port 129157 remote_ip 10.8.0.150 129159 username hosseine 129159 kill_reason Another user logged on this global unique id 129159 mac 129159 bytes_out 0 129159 bytes_in 0 129159 station_ip 37.129.22.160 129159 port 241 129159 unique_id port 129160 username barzegar 129160 mac 129160 bytes_out 0 129160 bytes_in 0 129160 station_ip 5.119.42.210 129160 port 228 129160 unique_id port 129160 remote_ip 10.8.0.234 129162 username alihosseini1 129162 mac 129162 bytes_out 0 129162 bytes_in 0 129162 station_ip 5.119.67.76 129162 port 154 129162 unique_id port 129162 remote_ip 10.8.1.106 129166 username barzegar 129166 mac 129166 bytes_out 2901 129166 bytes_in 5369 129166 station_ip 5.119.42.210 129166 port 152 129166 unique_id port 129166 remote_ip 10.8.1.174 129168 username aminvpn 129168 mac 129168 bytes_out 0 129168 bytes_in 0 129168 station_ip 151.238.226.109 129168 port 240 129168 unique_id port 129168 remote_ip 10.8.0.14 129169 username jamali 129169 mac 129169 bytes_out 12494 129169 bytes_in 17587 129169 station_ip 5.119.149.95 129169 port 141 129169 unique_id port 129169 remote_ip 10.8.1.82 129170 username alihosseini1 129170 mac 129170 bytes_out 0 129170 bytes_in 0 129170 station_ip 5.119.67.76 129170 port 240 129170 unique_id port 129170 remote_ip 10.8.0.166 129172 username aminvpn 129172 mac 129172 bytes_out 1818138 129172 bytes_in 16344694 129172 station_ip 83.122.249.68 129172 port 228 129172 unique_id port 129172 remote_ip 10.8.0.14 129173 username barzegar 129173 kill_reason Another user logged on this global unique id 129173 mac 129173 bytes_out 0 129173 bytes_in 0 129173 station_ip 5.119.42.210 129173 port 237 129173 unique_id port 129173 remote_ip 10.8.0.234 129179 username mahdiyehalizadeh 129179 mac 129179 bytes_out 0 129179 bytes_in 0 129179 station_ip 83.122.182.127 129179 port 244 129179 unique_id port 129179 remote_ip 10.8.0.82 129181 username alihosseini1 129181 mac 129181 bytes_out 839563 129181 bytes_in 7144986 129181 station_ip 5.119.67.76 129181 port 240 129181 unique_id port 129181 remote_ip 10.8.0.166 129183 username mehdizare 129183 mac 129183 bytes_out 29499 129174 remote_ip 10.8.0.58 129176 username barzegar 129176 kill_reason Another user logged on this global unique id 129176 mac 129176 bytes_out 0 129176 bytes_in 0 129176 station_ip 5.119.42.210 129176 port 237 129176 unique_id port 129177 username barzegar 129177 mac 129177 bytes_out 0 129177 bytes_in 0 129177 station_ip 5.119.42.210 129177 port 237 129177 unique_id port 129178 username malekpoir 129178 kill_reason Another user logged on this global unique id 129178 mac 129178 bytes_out 0 129178 bytes_in 0 129178 station_ip 5.119.49.133 129178 port 246 129178 unique_id port 129188 username mehdizare 129188 mac 129188 bytes_out 0 129188 bytes_in 0 129188 station_ip 5.120.87.77 129188 port 237 129188 unique_id port 129188 remote_ip 10.8.0.90 129189 username mehdizare 129189 mac 129189 bytes_out 0 129189 bytes_in 0 129189 station_ip 5.120.87.77 129189 port 141 129189 unique_id port 129189 remote_ip 10.8.1.42 129191 username mosi 129191 mac 129191 bytes_out 2812157 129191 bytes_in 22670003 129191 station_ip 151.235.124.20 129191 port 248 129191 unique_id port 129191 remote_ip 10.8.0.138 129193 username mosi 129193 mac 129193 bytes_out 105045 129193 bytes_in 48246 129193 station_ip 5.134.156.120 129193 port 154 129193 unique_id port 129193 remote_ip 10.8.1.86 129195 username mosi 129195 mac 129195 bytes_out 6341 129195 bytes_in 14900 129195 station_ip 5.134.156.120 129195 port 155 129195 unique_id port 129195 remote_ip 10.8.1.86 129196 username saeed9658 129196 mac 129196 bytes_out 0 129196 bytes_in 0 129196 station_ip 5.119.106.59 129196 port 233 129196 unique_id port 129196 remote_ip 10.8.0.62 129197 username mosi 129197 mac 129197 bytes_out 0 129197 bytes_in 0 129197 station_ip 151.235.98.140 129197 port 154 129197 unique_id port 129197 remote_ip 10.8.1.86 129199 username zare 129199 mac 129199 bytes_out 0 129199 bytes_in 0 129199 station_ip 94.183.214.14 129199 port 141 129199 unique_id port 129199 remote_ip 10.8.1.58 129204 username hamidehfatemi 129204 kill_reason Maximum check online fails reached 129204 mac 129204 bytes_out 0 129204 bytes_in 0 129204 station_ip 83.123.245.144 129204 port 233 129204 unique_id port 129208 username sedighe 129208 mac 129208 bytes_out 0 129208 bytes_in 0 129208 station_ip 37.129.1.69 129208 port 228 129208 unique_id port 129208 remote_ip 10.8.0.146 129213 username zare 129213 mac 129213 bytes_out 0 129213 bytes_in 0 129213 station_ip 94.183.214.14 129213 port 239 129213 unique_id port 129213 remote_ip 10.8.0.18 129215 username zare 129215 mac 129215 bytes_out 0 129215 bytes_in 0 129215 station_ip 94.183.214.14 129215 port 239 129215 unique_id port 129215 remote_ip 10.8.0.18 129216 username zare 129216 mac 129216 bytes_out 0 129216 bytes_in 0 129216 station_ip 94.183.214.14 129216 port 244 129216 unique_id port 129216 remote_ip 10.8.0.18 129218 username zare 129218 mac 129218 bytes_out 0 129218 bytes_in 0 129218 station_ip 94.183.214.14 129218 port 248 129218 unique_id port 129218 remote_ip 10.8.0.18 129224 username forozande 129224 mac 129224 bytes_out 594995 129224 bytes_in 4121110 129224 station_ip 37.129.124.3 129224 port 244 129224 unique_id port 129224 remote_ip 10.8.0.74 129226 username hamidsalari1 129226 kill_reason Another user logged on this global unique id 129226 mac 129226 bytes_out 0 129226 bytes_in 0 129226 station_ip 37.129.202.253 129226 port 237 129226 unique_id port 129227 username moradi 129227 mac 129182 bytes_in 12690 129182 station_ip 5.119.42.210 129182 port 228 129182 unique_id port 129182 remote_ip 10.8.0.234 129184 username forozande 129184 mac 129184 bytes_out 3147680 129184 bytes_in 7300166 129184 station_ip 83.122.164.32 129184 port 247 129184 unique_id port 129184 remote_ip 10.8.0.74 129187 username barzegar 129187 kill_reason Another user logged on this global unique id 129187 mac 129187 bytes_out 0 129187 bytes_in 0 129187 station_ip 5.119.42.210 129187 port 228 129187 unique_id port 129187 remote_ip 10.8.0.234 129190 username zare 129190 mac 129190 bytes_out 1148359 129190 bytes_in 18354179 129190 station_ip 94.183.214.14 129190 port 154 129190 unique_id port 129190 remote_ip 10.8.1.58 129198 username zare 129198 mac 129198 bytes_out 41331 129198 bytes_in 110600 129198 station_ip 94.183.214.14 129198 port 141 129198 unique_id port 129198 remote_ip 10.8.1.58 129200 username khalili 129200 mac 129200 bytes_out 0 129200 bytes_in 0 129200 station_ip 5.119.158.105 129200 port 149 129200 unique_id port 129200 remote_ip 10.8.1.18 129205 username zare 129205 mac 129205 bytes_out 0 129205 bytes_in 0 129205 station_ip 94.183.214.14 129205 port 239 129205 unique_id port 129205 remote_ip 10.8.0.18 129206 username malekpoir 129206 mac 129206 bytes_out 0 129206 bytes_in 0 129206 station_ip 5.119.49.133 129206 port 246 129206 unique_id port 129207 username zare 129207 mac 129207 bytes_out 0 129207 bytes_in 0 129207 station_ip 94.183.214.14 129207 port 239 129207 unique_id port 129207 remote_ip 10.8.0.18 129210 username moradi 129210 mac 129210 bytes_out 778403 129210 bytes_in 16763319 129210 station_ip 46.225.214.186 129210 port 244 129210 unique_id port 129210 remote_ip 10.8.0.250 129211 username zare 129211 mac 129211 bytes_out 0 129211 bytes_in 0 129211 station_ip 94.183.214.14 129211 port 228 129211 unique_id port 129211 remote_ip 10.8.0.18 129212 username zare 129212 mac 129212 bytes_out 0 129212 bytes_in 0 129212 station_ip 94.183.214.14 129212 port 239 129212 unique_id port 129212 remote_ip 10.8.0.18 129214 username hamidsalari1 129214 kill_reason Another user logged on this global unique id 129214 mac 129214 bytes_out 0 129214 bytes_in 0 129214 station_ip 37.129.202.253 129214 port 237 129214 unique_id port 129214 remote_ip 10.8.0.226 129219 username mirzaei 129219 mac 129219 bytes_out 1170814 129219 bytes_in 4884270 129219 station_ip 5.120.22.40 129219 port 242 129219 unique_id port 129219 remote_ip 10.8.0.66 129220 username moradi 129220 kill_reason Another user logged on this global unique id 129220 mac 129220 bytes_out 0 129220 bytes_in 0 129220 station_ip 46.225.214.186 129220 port 228 129220 unique_id port 129220 remote_ip 10.8.0.250 129221 username zare 129221 mac 129221 bytes_out 0 129221 bytes_in 0 129221 station_ip 94.183.214.14 129221 port 242 129221 unique_id port 129221 remote_ip 10.8.0.18 129223 username zare 129223 mac 129223 bytes_out 0 129223 bytes_in 0 129223 station_ip 94.183.214.14 129223 port 242 129223 unique_id port 129223 remote_ip 10.8.0.18 129225 username zare 129225 mac 129225 bytes_out 79197 129225 bytes_in 170302 129225 station_ip 94.183.214.14 129225 port 242 129225 unique_id port 129225 remote_ip 10.8.0.18 129228 username sabaghnezhad 129228 mac 129228 bytes_out 0 129228 bytes_in 0 129228 station_ip 37.129.228.52 129228 port 242 129228 unique_id port 129228 remote_ip 10.8.0.186 129232 username zare 129232 mac 129183 bytes_in 46014 129183 station_ip 5.120.87.77 129183 port 250 129183 unique_id port 129183 remote_ip 10.8.0.90 129185 username mehdizare 129185 kill_reason Maximum check online fails reached 129185 mac 129185 bytes_out 0 129185 bytes_in 0 129185 station_ip 5.120.87.77 129185 port 234 129185 unique_id port 129186 username jamali 129186 mac 129186 bytes_out 0 129186 bytes_in 0 129186 station_ip 5.119.149.95 129186 port 141 129186 unique_id port 129186 remote_ip 10.8.1.82 129192 username zare 129192 mac 129192 bytes_out 0 129192 bytes_in 0 129192 station_ip 94.183.214.14 129192 port 141 129192 unique_id port 129192 remote_ip 10.8.1.58 129194 username khalili 129194 mac 129194 bytes_out 0 129194 bytes_in 0 129194 station_ip 5.119.158.105 129194 port 149 129194 unique_id port 129194 remote_ip 10.8.1.18 129201 username barzegar 129201 mac 129201 bytes_out 0 129201 bytes_in 0 129201 station_ip 5.119.42.210 129201 port 228 129201 unique_id port 129202 username khalili 129202 mac 129202 bytes_out 0 129202 bytes_in 0 129202 station_ip 5.119.158.105 129202 port 141 129202 unique_id port 129202 remote_ip 10.8.1.18 129203 username hamidsalari 129203 mac 129203 bytes_out 1889385 129203 bytes_in 11038818 129203 station_ip 5.119.157.236 129203 port 239 129203 unique_id port 129203 remote_ip 10.8.0.230 129209 username zare 129209 mac 129209 bytes_out 0 129209 bytes_in 0 129209 station_ip 94.183.214.14 129209 port 228 129209 unique_id port 129209 remote_ip 10.8.0.18 129217 username zare 129217 mac 129217 bytes_out 0 129217 bytes_in 0 129217 station_ip 94.183.214.14 129217 port 244 129217 unique_id port 129217 remote_ip 10.8.0.18 129222 username hashtadani3 129222 mac 129222 bytes_out 0 129222 bytes_in 0 129222 station_ip 5.202.12.170 129222 port 246 129222 unique_id port 129222 remote_ip 10.8.0.154 129229 username zare 129229 mac 129229 bytes_out 32643 129229 bytes_in 100459 129229 station_ip 94.183.214.14 129229 port 228 129229 unique_id port 129229 remote_ip 10.8.0.18 129231 username zare 129231 mac 129231 bytes_out 0 129231 bytes_in 0 129231 station_ip 94.183.214.14 129231 port 228 129231 unique_id port 129231 remote_ip 10.8.0.18 129234 username zare 129234 mac 129234 bytes_out 0 129234 bytes_in 0 129234 station_ip 94.183.214.14 129234 port 228 129234 unique_id port 129234 remote_ip 10.8.0.18 129235 username afarin1 129235 mac 129235 bytes_out 0 129235 bytes_in 0 129235 station_ip 37.129.14.39 129235 port 247 129235 unique_id port 129235 remote_ip 10.8.0.118 129238 username hamidsalari1 129238 mac 129238 bytes_out 0 129238 bytes_in 0 129238 station_ip 37.129.202.253 129238 port 237 129238 unique_id port 129240 username amir 129240 mac 129240 bytes_out 0 129240 bytes_in 0 129240 station_ip 46.225.213.89 129240 port 152 129240 unique_id port 129240 remote_ip 10.8.1.22 129241 username yahodi 129241 mac 129241 bytes_out 1133852 129241 bytes_in 31293880 129241 station_ip 83.123.6.231 129241 port 237 129241 unique_id port 129241 remote_ip 10.8.0.202 129252 username mosi 129252 mac 129252 bytes_out 5329918 129252 bytes_in 40710521 129252 station_ip 151.235.98.140 129252 port 240 129252 unique_id port 129252 remote_ip 10.8.0.138 129259 username zare 129259 mac 129259 bytes_out 0 129259 bytes_in 0 129259 station_ip 94.183.214.14 129259 port 237 129259 unique_id port 129259 remote_ip 10.8.0.18 129263 username yahodi 129227 bytes_out 0 129227 bytes_in 0 129227 station_ip 46.225.214.186 129227 port 228 129227 unique_id port 129230 username zare 129230 mac 129230 bytes_out 0 129230 bytes_in 0 129230 station_ip 94.183.214.14 129230 port 228 129230 unique_id port 129230 remote_ip 10.8.0.18 129233 username zare 129233 mac 129233 bytes_out 0 129233 bytes_in 0 129233 station_ip 94.183.214.14 129233 port 228 129233 unique_id port 129233 remote_ip 10.8.0.18 129236 username zare 129236 mac 129236 bytes_out 0 129236 bytes_in 0 129236 station_ip 94.183.214.14 129236 port 141 129236 unique_id port 129236 remote_ip 10.8.1.58 129239 username forozande 129239 mac 129239 bytes_out 59229 129239 bytes_in 105449 129239 station_ip 83.122.24.111 129239 port 237 129239 unique_id port 129239 remote_ip 10.8.0.74 129243 username zare 129243 mac 129243 bytes_out 0 129243 bytes_in 0 129243 station_ip 94.183.214.14 129243 port 141 129243 unique_id port 129243 remote_ip 10.8.1.58 129244 username alireza 129244 unique_id port 129244 terminate_cause User-Request 129244 bytes_out 1675191 129244 bytes_in 22914900 129244 station_ip 5.120.110.186 129244 port 15730198 129244 nas_port_type Virtual 129244 remote_ip 5.5.5.1 129246 username afarin1 129246 mac 129246 bytes_out 0 129246 bytes_in 0 129246 station_ip 37.129.14.39 129246 port 149 129246 unique_id port 129246 remote_ip 10.8.1.114 129250 username yahodi 129250 mac 129250 bytes_out 188035 129250 bytes_in 1120690 129250 station_ip 83.123.6.231 129250 port 237 129250 unique_id port 129250 remote_ip 10.8.0.202 129253 username mahdiyehalizadeh 129253 mac 129253 bytes_out 28755 129253 bytes_in 35337 129253 station_ip 37.129.72.90 129253 port 248 129253 unique_id port 129253 remote_ip 10.8.0.82 129254 username alihosseini1 129254 mac 129254 bytes_out 3018800 129254 bytes_in 35380274 129254 station_ip 5.120.1.18 129254 port 242 129254 unique_id port 129254 remote_ip 10.8.0.166 129258 username mohammadmahdi 129258 mac 129258 bytes_out 0 129258 bytes_in 0 129258 station_ip 5.120.170.243 129258 port 244 129258 unique_id port 129260 username mostafa_es78 129260 mac 129260 bytes_out 85763 129260 bytes_in 390586 129260 station_ip 5.126.86.214 129260 port 247 129260 unique_id port 129260 remote_ip 10.8.0.198 129261 username yahodi 129261 kill_reason Another user logged on this global unique id 129261 mac 129261 bytes_out 0 129261 bytes_in 0 129261 station_ip 83.123.6.231 129261 port 246 129261 unique_id port 129261 remote_ip 10.8.0.202 129265 username alipour 129265 mac 129265 bytes_out 553877 129265 bytes_in 5519492 129265 station_ip 83.123.142.106 129265 port 240 129265 unique_id port 129265 remote_ip 10.8.0.102 129266 username vanila 129266 kill_reason Another user logged on this global unique id 129266 mac 129266 bytes_out 0 129266 bytes_in 0 129266 station_ip 83.122.150.181 129266 port 237 129266 unique_id port 129266 remote_ip 10.8.0.178 129269 username hashtadani3 129269 mac 129269 bytes_out 1573563 129269 bytes_in 27245119 129269 station_ip 83.122.193.12 129269 port 247 129269 unique_id port 129269 remote_ip 10.8.0.154 129270 username khademi 129270 mac 129270 bytes_out 1380020 129270 bytes_in 21256885 129270 station_ip 37.129.18.24 129270 port 239 129270 unique_id port 129270 remote_ip 10.8.0.10 129273 username vanila 129273 mac 129273 bytes_out 0 129273 bytes_in 0 129273 station_ip 83.122.150.181 129273 port 237 129273 unique_id port 129274 username amir 129274 mac 129232 bytes_out 0 129232 bytes_in 0 129232 station_ip 94.183.214.14 129232 port 228 129232 unique_id port 129232 remote_ip 10.8.0.18 129237 username sabaghnezhad 129237 mac 129237 bytes_out 21029 129237 bytes_in 28408 129237 station_ip 37.129.228.52 129237 port 244 129237 unique_id port 129237 remote_ip 10.8.0.186 129242 username amir 129242 kill_reason Maximum check online fails reached 129242 mac 129242 bytes_out 0 129242 bytes_in 0 129242 station_ip 46.225.213.89 129242 port 152 129242 unique_id port 129245 username zare 129245 mac 129245 bytes_out 0 129245 bytes_in 0 129245 station_ip 94.183.214.14 129245 port 141 129245 unique_id port 129245 remote_ip 10.8.1.58 129247 username zare 129247 kill_reason Maximum check online fails reached 129247 mac 129247 bytes_out 0 129247 bytes_in 0 129247 station_ip 94.183.214.14 129247 port 141 129247 unique_id port 129248 username zare 129248 mac 129248 bytes_out 0 129248 bytes_in 0 129248 station_ip 94.183.214.14 129248 port 156 129248 unique_id port 129248 remote_ip 10.8.1.58 129249 username amir 129249 mac 129249 bytes_out 0 129249 bytes_in 0 129249 station_ip 46.225.213.89 129249 port 155 129249 unique_id port 129249 remote_ip 10.8.1.22 129251 username zare 129251 mac 129251 bytes_out 65468 129251 bytes_in 40963 129251 station_ip 94.183.214.14 129251 port 246 129251 unique_id port 129251 remote_ip 10.8.0.18 129255 username sedighe 129255 mac 129255 bytes_out 0 129255 bytes_in 0 129255 station_ip 83.122.59.16 129255 port 247 129255 unique_id port 129255 remote_ip 10.8.0.146 129256 username mosi 129256 mac 129256 bytes_out 0 129256 bytes_in 0 129256 station_ip 89.32.109.242 129256 port 156 129256 unique_id port 129256 remote_ip 10.8.1.86 129257 username mohammadmahdi 129257 kill_reason Another user logged on this global unique id 129257 mac 129257 bytes_out 0 129257 bytes_in 0 129257 station_ip 5.120.170.243 129257 port 244 129257 unique_id port 129257 remote_ip 10.8.0.54 129262 username barzegar 129262 mac 129262 bytes_out 0 129262 bytes_in 0 129262 station_ip 5.119.192.189 129262 port 244 129262 unique_id port 129262 remote_ip 10.8.0.234 129268 username afarin1 129268 mac 129268 bytes_out 0 129268 bytes_in 0 129268 station_ip 37.129.14.39 129268 port 149 129268 unique_id port 129268 remote_ip 10.8.1.114 129271 username barzegar 129271 kill_reason Another user logged on this global unique id 129271 mac 129271 bytes_out 0 129271 bytes_in 0 129271 station_ip 5.119.192.189 129271 port 158 129271 unique_id port 129271 remote_ip 10.8.1.174 129272 username tahmasebi 129272 kill_reason Another user logged on this global unique id 129272 mac 129272 bytes_out 0 129272 bytes_in 0 129272 station_ip 5.120.34.5 129272 port 244 129272 unique_id port 129272 remote_ip 10.8.0.42 129275 username ahmadipour 129275 kill_reason Relative expiration date has reached 129275 unique_id port 129275 bytes_out 0 129275 bytes_in 0 129275 station_ip 83.123.7.24 129275 port 15730200 129275 nas_port_type Virtual 129278 username alipour 129278 mac 129278 bytes_out 0 129278 bytes_in 0 129278 station_ip 83.123.142.106 129278 port 240 129278 unique_id port 129278 remote_ip 10.8.0.102 129280 username barzegar 129280 kill_reason Another user logged on this global unique id 129280 mac 129280 bytes_out 0 129280 bytes_in 0 129280 station_ip 5.119.192.189 129280 port 158 129280 unique_id port 129285 username alihosseini1 129285 mac 129285 bytes_out 0 129285 bytes_in 0 129285 station_ip 5.120.16.28 129285 port 237 129263 kill_reason Another user logged on this global unique id 129263 mac 129263 bytes_out 0 129263 bytes_in 0 129263 station_ip 83.123.6.231 129263 port 246 129263 unique_id port 129264 username alipour 129264 mac 129264 bytes_out 0 129264 bytes_in 0 129264 station_ip 83.123.142.106 129264 port 159 129264 unique_id port 129264 remote_ip 10.8.1.50 129267 username alipour 129267 mac 129267 bytes_out 21375 129267 bytes_in 21791 129267 station_ip 83.123.142.106 129267 port 240 129267 unique_id port 129267 remote_ip 10.8.0.102 129276 username amir 129276 mac 129276 bytes_out 0 129276 bytes_in 0 129276 station_ip 46.225.213.89 129276 port 237 129276 unique_id port 129276 remote_ip 10.8.0.50 129279 username sabaghnezhad 129279 mac 129279 bytes_out 88039 129279 bytes_in 161706 129279 station_ip 37.129.176.112 129279 port 242 129279 unique_id port 129279 remote_ip 10.8.0.186 129282 username forozande 129282 mac 129282 bytes_out 784397 129282 bytes_in 9079243 129282 station_ip 37.129.87.167 129282 port 239 129282 unique_id port 129282 remote_ip 10.8.0.74 129283 username vanila 129283 mac 129283 bytes_out 22394277 129283 bytes_in 1652762 129283 station_ip 83.122.150.181 129283 port 248 129283 unique_id port 129283 remote_ip 10.8.0.178 129284 username vanila 129284 mac 129284 bytes_out 9601486 129284 bytes_in 1094613 129284 station_ip 83.122.150.181 129284 port 239 129284 unique_id port 129284 remote_ip 10.8.0.178 129293 username barzegar 129293 mac 129293 bytes_out 0 129293 bytes_in 0 129293 station_ip 5.119.192.189 129293 port 155 129293 unique_id port 129293 remote_ip 10.8.1.174 129297 username barzegar 129297 mac 129297 bytes_out 0 129297 bytes_in 0 129297 station_ip 5.119.192.189 129297 port 252 129297 unique_id port 129297 remote_ip 10.8.0.234 129300 username amir 129300 mac 129300 bytes_out 48358 129300 bytes_in 319458 129300 station_ip 46.225.213.89 129300 port 251 129300 unique_id port 129300 remote_ip 10.8.0.50 129304 username tahmasebi 129304 kill_reason Another user logged on this global unique id 129304 mac 129304 bytes_out 0 129304 bytes_in 0 129304 station_ip 5.120.34.5 129304 port 244 129304 unique_id port 129307 username tahmasebi 129307 kill_reason Another user logged on this global unique id 129307 mac 129307 bytes_out 0 129307 bytes_in 0 129307 station_ip 5.120.34.5 129307 port 244 129307 unique_id port 129308 username yahodi 129308 kill_reason Another user logged on this global unique id 129308 mac 129308 bytes_out 0 129308 bytes_in 0 129308 station_ip 83.123.6.231 129308 port 246 129308 unique_id port 129310 username barzegar 129310 mac 129310 bytes_out 5450 129310 bytes_in 15389 129310 station_ip 5.119.192.189 129310 port 250 129310 unique_id port 129310 remote_ip 10.8.0.234 129311 username hoorieh 129311 kill_reason Another user logged on this global unique id 129311 mac 129311 bytes_out 0 129311 bytes_in 0 129311 station_ip 5.120.39.152 129311 port 248 129311 unique_id port 129311 remote_ip 10.8.0.38 129312 username yahodi 129312 mac 129312 bytes_out 0 129312 bytes_in 0 129312 station_ip 83.123.6.231 129312 port 246 129312 unique_id port 129323 username aminvpn 129323 mac 129323 bytes_out 226702 129323 bytes_in 859812 129323 station_ip 83.122.6.53 129323 port 246 129323 unique_id port 129323 remote_ip 10.8.0.14 129325 username hamidsalari 129325 kill_reason Another user logged on this global unique id 129325 mac 129325 bytes_out 0 129325 bytes_in 0 129325 station_ip 5.119.157.236 129325 port 237 129325 unique_id port 129274 bytes_out 1186597 129274 bytes_in 7721971 129274 station_ip 46.225.213.89 129274 port 155 129274 unique_id port 129274 remote_ip 10.8.1.22 129277 username yahodi 129277 kill_reason Another user logged on this global unique id 129277 mac 129277 bytes_out 0 129277 bytes_in 0 129277 station_ip 83.123.6.231 129277 port 246 129277 unique_id port 129281 username tahmasebi 129281 kill_reason Another user logged on this global unique id 129281 mac 129281 bytes_out 0 129281 bytes_in 0 129281 station_ip 5.120.34.5 129281 port 244 129281 unique_id port 129286 username forozande 129286 mac 129286 bytes_out 360288 129286 bytes_in 1172441 129286 station_ip 83.123.39.181 129286 port 242 129286 unique_id port 129286 remote_ip 10.8.0.74 129287 username amir 129287 mac 129287 bytes_out 69421 129287 bytes_in 351941 129287 station_ip 46.225.213.89 129287 port 248 129287 unique_id port 129287 remote_ip 10.8.0.50 129290 username saeed9658 129290 mac 129290 bytes_out 0 129290 bytes_in 0 129290 station_ip 5.119.106.59 129290 port 156 129290 unique_id port 129290 remote_ip 10.8.1.210 129292 username mostafa_es78 129292 mac 129292 bytes_out 0 129292 bytes_in 0 129292 station_ip 178.236.35.96 129292 port 242 129292 unique_id port 129292 remote_ip 10.8.0.198 129296 username tahmasebi 129296 kill_reason Another user logged on this global unique id 129296 mac 129296 bytes_out 0 129296 bytes_in 0 129296 station_ip 5.120.34.5 129296 port 244 129296 unique_id port 129298 username alihosseini1 129298 mac 129298 bytes_out 0 129298 bytes_in 0 129298 station_ip 5.120.16.28 129298 port 239 129298 unique_id port 129298 remote_ip 10.8.0.166 129299 username kordestani 129299 mac 129299 bytes_out 475550 129299 bytes_in 8087816 129299 station_ip 83.122.104.234 129299 port 248 129299 unique_id port 129299 remote_ip 10.8.0.134 129301 username alipour 129301 mac 129301 bytes_out 56052 129301 bytes_in 93696 129301 station_ip 83.123.142.106 129301 port 250 129301 unique_id port 129301 remote_ip 10.8.0.102 129306 username hashtadani3 129306 mac 129306 bytes_out 0 129306 bytes_in 0 129306 station_ip 37.129.147.46 129306 port 242 129306 unique_id port 129306 remote_ip 10.8.0.154 129309 username barzegar 129309 mac 129309 bytes_out 0 129309 bytes_in 0 129309 station_ip 5.119.192.189 129309 port 149 129309 unique_id port 129309 remote_ip 10.8.1.174 129313 username amir 129313 mac 129313 bytes_out 44134 129313 bytes_in 261956 129313 station_ip 46.225.213.89 129313 port 250 129313 unique_id port 129313 remote_ip 10.8.0.50 129314 username hoorieh 129314 mac 129314 bytes_out 0 129314 bytes_in 0 129314 station_ip 5.120.39.152 129314 port 248 129314 unique_id port 129316 username mahdixz 129316 unique_id port 129316 terminate_cause User-Request 129316 bytes_out 0 129316 bytes_in 0 129316 station_ip 83.123.227.61 129316 port 15730202 129316 nas_port_type Virtual 129316 remote_ip 5.5.5.254 129319 username aminvpn 129319 mac 129319 bytes_out 230722 129319 bytes_in 1190956 129319 station_ip 83.122.6.53 129319 port 242 129319 unique_id port 129319 remote_ip 10.8.0.14 129320 username moradi 129320 mac 129320 bytes_out 1688505 129320 bytes_in 32181790 129320 station_ip 83.122.234.207 129320 port 228 129320 unique_id port 129320 remote_ip 10.8.0.250 129322 username hamid.e 129322 kill_reason Wrong password 129322 unique_id port 129322 bytes_out 0 129322 bytes_in 0 129322 station_ip 37.27.8.211 129322 port 15730203 129322 nas_port_type Virtual 129328 username khademi 129285 unique_id port 129285 remote_ip 10.8.0.166 129288 username barzegar 129288 kill_reason Another user logged on this global unique id 129288 mac 129288 bytes_out 0 129288 bytes_in 0 129288 station_ip 5.119.192.189 129288 port 158 129288 unique_id port 129289 username tahmasebi 129289 kill_reason Another user logged on this global unique id 129289 mac 129289 bytes_out 0 129289 bytes_in 0 129289 station_ip 5.120.34.5 129289 port 244 129289 unique_id port 129291 username barzegar 129291 mac 129291 bytes_out 0 129291 bytes_in 0 129291 station_ip 5.119.192.189 129291 port 158 129291 unique_id port 129294 username barzegar 129294 mac 129294 bytes_out 0 129294 bytes_in 0 129294 station_ip 5.119.192.189 129294 port 155 129294 unique_id port 129294 remote_ip 10.8.1.174 129295 username aminvpn 129295 unique_id port 129295 terminate_cause Lost-Carrier 129295 bytes_out 3322761 129295 bytes_in 106238986 129295 station_ip 5.119.6.232 129295 port 15730195 129295 nas_port_type Virtual 129295 remote_ip 5.5.5.79 129302 username kordestani 129302 mac 129302 bytes_out 138458 129302 bytes_in 1036245 129302 station_ip 83.122.104.234 129302 port 252 129302 unique_id port 129302 remote_ip 10.8.0.134 129303 username barzegar 129303 mac 129303 bytes_out 0 129303 bytes_in 0 129303 station_ip 5.119.192.189 129303 port 155 129303 unique_id port 129303 remote_ip 10.8.1.174 129305 username afarin1 129305 mac 129305 bytes_out 0 129305 bytes_in 0 129305 station_ip 37.129.14.39 129305 port 149 66223 username arezoo 66223 kill_reason Another user logged on this global unique id 66223 mac 5.237.81.4:49199: Unknown host 66223 bytes_out 0 66223 bytes_in 0 66223 station_ip 5.237.81.4:49199 66223 port 1018 66223 unique_id port 129305 unique_id port 129305 remote_ip 10.8.1.114 129315 username tahmasebi 129315 kill_reason Another user logged on this global unique id 129315 mac 129315 bytes_out 0 129315 bytes_in 0 129315 station_ip 5.120.34.5 129315 port 244 129315 unique_id port 129317 username mansur 129317 mac 129317 bytes_out 39883 129317 bytes_in 52280 129317 station_ip 5.119.14.94 129317 port 246 129317 unique_id port 129317 remote_ip 10.8.0.210 129318 username barzegar 129318 mac 129318 bytes_out 0 129318 bytes_in 0 129318 station_ip 5.119.192.189 129318 port 149 129318 unique_id port 129318 remote_ip 10.8.1.174 129321 username forozande 129321 mac 129321 bytes_out 0 129321 bytes_in 0 129321 station_ip 37.129.21.177 129321 port 239 129321 unique_id port 129321 remote_ip 10.8.0.74 129324 username barzegar 129324 mac 129324 bytes_out 0 129324 bytes_in 0 129324 station_ip 5.119.192.189 129324 port 149 129324 unique_id port 129324 remote_ip 10.8.1.174 129326 username tahmasebi 129326 kill_reason Another user logged on this global unique id 129326 mac 129326 bytes_out 0 129326 bytes_in 0 129326 station_ip 5.120.34.5 129326 port 244 129326 unique_id port 129332 username mosi 129332 kill_reason Another user logged on this global unique id 129332 mac 129332 bytes_out 0 129332 bytes_in 0 129332 station_ip 151.235.98.140 129332 port 157 129332 unique_id port 129332 remote_ip 10.8.1.86 129333 username zare 129333 mac 129333 bytes_out 6058 129333 bytes_in 14396 129333 station_ip 94.183.214.14 129333 port 228 129333 unique_id port 129333 remote_ip 10.8.0.18 129334 username barzegar 129334 mac 129334 bytes_out 0 129334 bytes_in 0 129334 station_ip 5.119.192.189 129334 port 149 129334 unique_id port 129334 remote_ip 10.8.1.174 129335 username hosseine 129335 kill_reason Another user logged on this global unique id 129325 remote_ip 10.8.0.230 129327 username barzegar 129327 mac 129327 bytes_out 0 129327 bytes_in 0 129327 station_ip 5.119.192.189 129327 port 246 129327 unique_id port 129327 remote_ip 10.8.0.234 129329 username amir 129329 mac 129329 bytes_out 253380 129329 bytes_in 785521 129329 station_ip 46.225.213.89 129329 port 228 129329 unique_id port 129329 remote_ip 10.8.0.50 129330 username barzegar 129330 mac 129330 bytes_out 0 129330 bytes_in 0 129330 station_ip 5.119.192.189 129330 port 149 129330 unique_id port 129330 remote_ip 10.8.1.174 129336 username hamidsalari 129336 kill_reason Another user logged on this global unique id 129336 mac 129336 bytes_out 0 129336 bytes_in 0 129336 station_ip 5.119.157.236 129336 port 237 129336 unique_id port 129341 username khademi 129341 kill_reason Another user logged on this global unique id 129341 mac 129341 bytes_out 0 129341 bytes_in 0 129341 station_ip 37.129.18.24 129341 port 247 129341 unique_id port 129342 username yahodi 129342 mac 129342 bytes_out 186053 129342 bytes_in 1406671 129342 station_ip 83.123.86.219 129342 port 248 129342 unique_id port 129342 remote_ip 10.8.0.202 129343 username amir 129343 mac 129343 bytes_out 0 129343 bytes_in 0 129343 station_ip 46.225.213.89 129343 port 242 129343 unique_id port 129343 remote_ip 10.8.0.50 129346 username saeed9658 129346 kill_reason Another user logged on this global unique id 129346 mac 129346 bytes_out 0 129346 bytes_in 0 129346 station_ip 5.119.106.59 129346 port 155 129346 unique_id port 129347 username forozande 129347 mac 129347 bytes_out 1295341 129347 bytes_in 14186853 129347 station_ip 37.129.155.91 129347 port 228 129347 unique_id port 129347 remote_ip 10.8.0.74 129349 username alihosseini1 129349 kill_reason Another user logged on this global unique id 129349 mac 129349 bytes_out 0 129349 bytes_in 0 129349 station_ip 5.120.8.98 129349 port 246 129349 unique_id port 129349 remote_ip 10.8.0.166 129350 username barzegar 129350 mac 129350 bytes_out 0 129350 bytes_in 0 129350 station_ip 5.119.192.189 129350 port 242 129350 unique_id port 129350 remote_ip 10.8.0.234 129351 username alihosseini1 129351 mac 129351 bytes_out 0 129351 bytes_in 0 129351 station_ip 5.120.8.98 129351 port 246 129351 unique_id port 129353 username farhad2 129353 mac 129353 bytes_out 0 129353 bytes_in 0 129353 station_ip 5.120.174.196 129353 port 149 129353 unique_id port 129353 remote_ip 10.8.1.222 129354 username hamidsalari 129354 kill_reason Another user logged on this global unique id 129354 mac 129354 bytes_out 0 129354 bytes_in 0 129354 station_ip 5.119.157.236 129354 port 237 129354 unique_id port 129355 username saeed9658 129355 kill_reason Another user logged on this global unique id 129355 mac 129355 bytes_out 0 129355 bytes_in 0 129355 station_ip 5.119.106.59 129355 port 155 129355 unique_id port 129358 username alihosseini1 129358 mac 129358 bytes_out 128363 129358 bytes_in 153313 129358 station_ip 5.120.8.98 129358 port 228 129358 unique_id port 129358 remote_ip 10.8.0.166 129359 username hashtadani3 129359 mac 129359 bytes_out 66376 129359 bytes_in 190201 129359 station_ip 37.129.16.179 129359 port 228 129359 unique_id port 129359 remote_ip 10.8.0.154 129361 username yahodi 129361 mac 129361 bytes_out 683486 129361 bytes_in 7292357 129361 station_ip 83.123.64.131 129361 port 250 129361 unique_id port 129361 remote_ip 10.8.0.202 129363 username mohsenaskari 129363 mac 129363 bytes_out 201621 129363 bytes_in 996084 129363 station_ip 46.225.214.202 129328 kill_reason Another user logged on this global unique id 129328 mac 129328 bytes_out 0 129328 bytes_in 0 129328 station_ip 37.129.18.24 129328 port 247 129328 unique_id port 129328 remote_ip 10.8.0.10 129331 username zare 129331 mac 129331 bytes_out 224961 129331 bytes_in 1006447 129331 station_ip 94.183.214.14 129331 port 239 129331 unique_id port 129331 remote_ip 10.8.0.18 129338 username amir 129338 mac 129338 bytes_out 0 129338 bytes_in 0 129338 station_ip 46.225.213.89 129338 port 242 129338 unique_id port 129338 remote_ip 10.8.0.50 129340 username saeed9658 129340 kill_reason Another user logged on this global unique id 129340 mac 129340 bytes_out 0 129340 bytes_in 0 129340 station_ip 5.119.106.59 129340 port 155 129340 unique_id port 129340 remote_ip 10.8.1.210 129345 username farhad2 129345 mac 129345 bytes_out 0 129345 bytes_in 0 129345 station_ip 5.120.174.196 129345 port 149 129345 unique_id port 129345 remote_ip 10.8.1.222 129356 username vanila 129356 mac 129356 bytes_out 9062891 129356 bytes_in 970217 129356 station_ip 83.122.139.213 129356 port 228 129356 unique_id port 129356 remote_ip 10.8.0.178 129357 username saeed9658 129357 mac 129357 bytes_out 0 129357 bytes_in 0 129357 station_ip 5.119.106.59 129357 port 155 129357 unique_id port 129360 username alihosseini1 129360 mac 129360 bytes_out 0 129360 bytes_in 0 129360 station_ip 5.120.8.98 129360 port 228 129360 unique_id port 129360 remote_ip 10.8.0.166 129362 username barzegar 129362 mac 129362 bytes_out 0 129362 bytes_in 0 129362 station_ip 5.119.192.189 129362 port 155 129362 unique_id port 129362 remote_ip 10.8.1.174 129365 username farhad2 129365 mac 129365 bytes_out 0 129365 bytes_in 0 129365 station_ip 5.120.174.196 129365 port 149 129365 unique_id port 129365 remote_ip 10.8.1.222 129367 username forozande 129367 mac 129367 bytes_out 1572715 129367 bytes_in 10259763 129367 station_ip 83.122.211.109 129367 port 248 129367 unique_id port 129367 remote_ip 10.8.0.74 129371 username amirabbas 129371 unique_id port 129371 terminate_cause User-Request 129371 bytes_out 13096501 129371 bytes_in 333855899 129371 station_ip 37.27.57.201 129371 port 15730201 129371 nas_port_type Virtual 129371 remote_ip 5.5.5.55 129372 username alihosseini1 129372 mac 129372 bytes_out 0 129372 bytes_in 0 129372 station_ip 5.120.8.98 129372 port 246 129372 unique_id port 129372 remote_ip 10.8.0.166 129373 username alihosseini1 129373 mac 129373 bytes_out 0 129373 bytes_in 0 129373 station_ip 5.120.8.98 129373 port 155 129373 unique_id port 129373 remote_ip 10.8.1.106 129376 username alihosseini1 129376 mac 129376 bytes_out 0 129376 bytes_in 0 129376 station_ip 5.120.8.98 129376 port 155 129376 unique_id port 129376 remote_ip 10.8.1.106 129377 username alipour 129377 mac 129377 bytes_out 0 129377 bytes_in 0 129377 station_ip 83.123.142.106 129377 port 156 129377 unique_id port 129377 remote_ip 10.8.1.50 129386 username sabaghnezhad 129386 mac 129386 bytes_out 178448 129386 bytes_in 274763 129386 station_ip 37.129.176.112 129386 port 240 129386 unique_id port 129386 remote_ip 10.8.0.186 129387 username alihosseini1 129387 mac 129387 bytes_out 0 129387 bytes_in 0 129387 station_ip 5.120.8.98 129387 port 228 129387 unique_id port 129387 remote_ip 10.8.0.166 129391 username zare 129391 mac 129391 bytes_out 994993 129391 bytes_in 9283466 129391 station_ip 94.183.214.14 129391 port 239 129391 unique_id port 129335 mac 129335 bytes_out 0 129335 bytes_in 0 129335 station_ip 37.129.22.160 129335 port 241 129335 unique_id port 129337 username alihosseini1 129337 mac 129337 bytes_out 3487539 129337 bytes_in 36063252 129337 station_ip 5.120.8.98 129337 port 242 129337 unique_id port 129337 remote_ip 10.8.0.166 129339 username barzegar 129339 mac 129339 bytes_out 0 129339 bytes_in 0 129339 station_ip 5.119.192.189 129339 port 239 129339 unique_id port 129339 remote_ip 10.8.0.234 129344 username aminvpn 129344 mac 129344 bytes_out 0 129344 bytes_in 0 129344 station_ip 113.203.122.153 129344 port 242 129344 unique_id port 129344 remote_ip 10.8.0.14 129348 username hamid.e 129348 unique_id port 129348 terminate_cause User-Request 129348 bytes_out 1575080 129348 bytes_in 25754183 129348 station_ip 37.27.8.211 129348 port 15730204 129348 nas_port_type Virtual 129348 remote_ip 5.5.5.254 129352 username barzegar 129352 mac 129352 bytes_out 0 129352 bytes_in 0 129352 station_ip 5.119.192.189 129352 port 242 129352 unique_id port 129352 remote_ip 10.8.0.234 129366 username barzegar 129366 mac 129366 bytes_out 2183 129366 bytes_in 5306 129366 station_ip 5.119.107.189 129366 port 246 129366 unique_id port 129366 remote_ip 10.8.0.234 129368 username alihosseini1 129368 mac 129368 bytes_out 19316 129368 bytes_in 11506 129368 station_ip 5.120.8.98 129368 port 251 129368 unique_id port 129368 remote_ip 10.8.0.166 129369 username hamidsalari 129369 kill_reason Another user logged on this global unique id 129369 mac 129369 bytes_out 0 129369 bytes_in 0 129369 station_ip 5.119.157.236 129369 port 237 129369 unique_id port 129370 username alihosseini1 129370 mac 129370 bytes_out 0 129370 bytes_in 0 129370 station_ip 5.120.8.98 129370 port 246 129370 unique_id port 129370 remote_ip 10.8.0.166 129374 username mohammadjavad 129374 mac 129374 bytes_out 1074615 129374 bytes_in 13866171 129374 station_ip 37.129.134.241 129374 port 228 129374 unique_id port 129374 remote_ip 10.8.0.142 129375 username alihosseini1 129375 mac 129375 bytes_out 0 129375 bytes_in 0 129375 station_ip 5.120.8.98 129375 port 155 129375 unique_id port 129375 remote_ip 10.8.1.106 129379 username alihosseini1 129379 mac 129379 bytes_out 0 129379 bytes_in 0 129379 station_ip 5.120.8.98 129379 port 156 129379 unique_id port 129379 remote_ip 10.8.1.106 129382 username mostafa_es78 129382 unique_id port 129382 terminate_cause User-Request 129382 bytes_out 613582 129382 bytes_in 7263596 129382 station_ip 5.126.204.95 129382 port 15730205 129382 nas_port_type Virtual 129382 remote_ip 5.5.5.253 129384 username hamidsalari 129384 kill_reason Another user logged on this global unique id 129384 mac 129384 bytes_out 0 129384 bytes_in 0 129384 station_ip 5.119.157.236 129384 port 237 129384 unique_id port 129385 username farhad2 129385 mac 129385 bytes_out 0 129385 bytes_in 0 129385 station_ip 5.120.174.196 129385 port 149 129385 unique_id port 129388 username asma2026 129388 kill_reason Another user logged on this global unique id 129388 mac 129388 bytes_out 0 129388 bytes_in 0 129388 station_ip 37.129.173.241 129388 port 250 129388 unique_id port 129389 username barzegar 129389 mac 129389 bytes_out 9779 129389 bytes_in 24478 129389 station_ip 5.120.64.145 129389 port 156 129389 unique_id port 129389 remote_ip 10.8.1.174 129392 username barzegar 129392 mac 129392 bytes_out 2448 129392 bytes_in 4541 129392 station_ip 5.120.64.145 129392 port 228 129392 unique_id port 129363 port 246 129363 unique_id port 129363 remote_ip 10.8.0.246 129364 username alihosseini1 129364 mac 129364 bytes_out 0 129364 bytes_in 0 129364 station_ip 5.120.8.98 129364 port 246 129364 unique_id port 129364 remote_ip 10.8.0.166 129378 username asma2026 129378 kill_reason Another user logged on this global unique id 129378 mac 129378 bytes_out 0 129378 bytes_in 0 129378 station_ip 37.129.173.241 129378 port 250 129378 unique_id port 129378 remote_ip 10.8.0.170 129380 username forozande 129380 mac 129380 bytes_out 66962 129380 bytes_in 194068 129380 station_ip 37.129.223.233 129380 port 228 129380 unique_id port 129380 remote_ip 10.8.0.74 129381 username alihosseini1 129381 mac 129381 bytes_out 0 129381 bytes_in 0 129381 station_ip 5.120.8.98 129381 port 228 129381 unique_id port 129381 remote_ip 10.8.0.166 129383 username farhad2 129383 kill_reason Another user logged on this global unique id 129383 mac 129383 bytes_out 0 129383 bytes_in 0 129383 station_ip 5.120.174.196 129383 port 149 129383 unique_id port 129383 remote_ip 10.8.1.222 129390 username alihosseini1 129390 mac 129390 bytes_out 0 129390 bytes_in 0 129390 station_ip 5.120.8.98 129390 port 240 129390 unique_id port 129390 remote_ip 10.8.0.166 129394 username barzegar 129394 mac 129394 bytes_out 0 129394 bytes_in 0 129394 station_ip 5.120.64.145 129394 port 156 129394 unique_id port 129394 remote_ip 10.8.1.174 129398 username mosi 129398 mac 129398 bytes_out 0 129398 bytes_in 0 129398 station_ip 151.235.98.140 129398 port 157 129398 unique_id port 129400 username hamidsalari 129400 mac 129400 bytes_out 0 129400 bytes_in 0 129400 station_ip 5.119.157.236 129400 port 237 129400 unique_id port 129401 username alihosseini1 129401 mac 129401 bytes_out 0 129401 bytes_in 0 129401 station_ip 5.120.8.98 129401 port 237 129401 unique_id port 129401 remote_ip 10.8.0.166 129404 username barzegar 129404 mac 129404 bytes_out 0 129404 bytes_in 0 129404 station_ip 5.120.64.145 129404 port 157 129404 unique_id port 129404 remote_ip 10.8.1.174 129408 username asma2026 129408 mac 129408 bytes_out 0 129408 bytes_in 0 129408 station_ip 37.129.173.241 129408 port 228 129408 unique_id port 129408 remote_ip 10.8.0.170 129409 username asma2026 129409 mac 129409 bytes_out 0 129409 bytes_in 0 129409 station_ip 37.129.173.241 129409 port 228 129409 unique_id port 129409 remote_ip 10.8.0.170 129414 username asma2026 129414 mac 129414 bytes_out 0 129414 bytes_in 0 129414 station_ip 37.129.173.241 129414 port 240 129414 unique_id port 129414 remote_ip 10.8.0.170 129417 username asma2026 129417 mac 129417 bytes_out 0 129417 bytes_in 0 129417 station_ip 37.129.173.241 129417 port 228 129417 unique_id port 129417 remote_ip 10.8.0.170 129420 username asma2026 129420 mac 129420 bytes_out 0 129420 bytes_in 0 129420 station_ip 37.129.173.241 129420 port 228 129420 unique_id port 129420 remote_ip 10.8.0.170 129421 username asma2026 129421 mac 129421 bytes_out 0 129421 bytes_in 0 129421 station_ip 37.129.173.241 129421 port 228 129421 unique_id port 129421 remote_ip 10.8.0.170 129422 username asma2026 129422 mac 129422 bytes_out 0 129422 bytes_in 0 129422 station_ip 37.129.173.241 129422 port 228 129422 unique_id port 129422 remote_ip 10.8.0.170 129431 username mohammadjavad 129431 mac 129431 bytes_out 767448 129431 bytes_in 12262053 129431 station_ip 83.123.232.10 129431 port 237 129431 unique_id port 129391 remote_ip 10.8.0.18 129395 username alipour 129395 mac 129395 bytes_out 0 129395 bytes_in 0 129395 station_ip 83.123.142.106 129395 port 155 129395 unique_id port 129395 remote_ip 10.8.1.50 129402 username barzegar 129402 mac 129402 bytes_out 0 129402 bytes_in 0 129402 station_ip 5.120.64.145 129402 port 239 129402 unique_id port 129402 remote_ip 10.8.0.234 129406 username yahodi 129406 mac 129406 bytes_out 2774164 129406 bytes_in 45903688 129406 station_ip 83.123.13.151 129406 port 228 129406 unique_id port 129406 remote_ip 10.8.0.202 129407 username asma2026 129407 mac 129407 bytes_out 0 129407 bytes_in 0 129407 station_ip 37.129.173.241 129407 port 250 129407 unique_id port 129411 username asma2026 129411 mac 129411 bytes_out 0 129411 bytes_in 0 129411 station_ip 37.129.173.241 129411 port 228 129411 unique_id port 129411 remote_ip 10.8.0.170 129412 username asma2026 129412 mac 129412 bytes_out 0 129412 bytes_in 0 129412 station_ip 37.129.173.241 129412 port 228 129412 unique_id port 129412 remote_ip 10.8.0.170 129416 username asma2026 129416 mac 129416 bytes_out 0 129416 bytes_in 0 129416 station_ip 37.129.173.241 129416 port 157 129416 unique_id port 129416 remote_ip 10.8.1.122 129419 username asma2026 129419 mac 129419 bytes_out 0 129419 bytes_in 0 129419 station_ip 37.129.173.241 129419 port 228 129419 unique_id port 129419 remote_ip 10.8.0.170 129426 username asma2026 129426 mac 129426 bytes_out 0 129426 bytes_in 0 129426 station_ip 37.129.173.241 129426 port 242 129426 unique_id port 129426 remote_ip 10.8.0.170 129429 username barzegar 129429 mac 129429 bytes_out 16011 129429 bytes_in 76094 129429 station_ip 5.120.64.145 129429 port 239 129429 unique_id port 129429 remote_ip 10.8.0.234 129430 username asma2026 129430 mac 129430 bytes_out 1636 129430 bytes_in 4970 129430 station_ip 37.129.173.241 129430 port 242 129430 unique_id port 129430 remote_ip 10.8.0.170 129432 username barzegar 129432 mac 129432 bytes_out 0 129432 bytes_in 0 129432 station_ip 5.120.64.145 129432 port 239 129432 unique_id port 129432 remote_ip 10.8.0.234 129435 username zare 129435 mac 129435 bytes_out 61379 129435 bytes_in 294635 129435 station_ip 94.183.214.14 129435 port 237 129435 unique_id port 129435 remote_ip 10.8.0.18 129436 username barzegar 129436 mac 129436 bytes_out 0 129436 bytes_in 0 129436 station_ip 5.120.64.145 129436 port 157 129436 unique_id port 129436 remote_ip 10.8.1.174 129438 username zare 129438 mac 129438 bytes_out 0 129438 bytes_in 0 129438 station_ip 94.183.214.14 129438 port 237 129438 unique_id port 129438 remote_ip 10.8.0.18 129441 username zare 129441 mac 129441 bytes_out 0 129441 bytes_in 0 129441 station_ip 94.183.214.14 129441 port 237 129441 unique_id port 129441 remote_ip 10.8.0.18 129443 username zare 129443 mac 129443 bytes_out 12821 129443 bytes_in 64141 129443 station_ip 94.183.214.14 129443 port 237 129443 unique_id port 129443 remote_ip 10.8.0.18 129448 username mosi 129448 mac 129448 bytes_out 0 129448 bytes_in 0 129448 station_ip 5.200.127.83 129448 port 157 129448 unique_id port 129448 remote_ip 10.8.1.86 129453 username khalili 129453 mac 129453 bytes_out 0 129453 bytes_in 0 129453 station_ip 5.119.158.105 129453 port 149 129453 unique_id port 129453 remote_ip 10.8.1.18 129456 username khademi 129456 mac 129456 bytes_out 0 129456 bytes_in 0 129392 remote_ip 10.8.0.234 129393 username alihosseini1 129393 mac 66332 username arezoo 66332 kill_reason Another user logged on this global unique id 66332 mac 5.237.81.4:49680: Unknown host 66332 bytes_out 0 66332 bytes_in 0 66332 station_ip 5.237.81.4:49680 66332 port 1018 66332 unique_id port 129393 bytes_out 0 129393 bytes_in 0 129393 station_ip 5.120.8.98 129393 port 239 129393 unique_id port 129393 remote_ip 10.8.0.166 129396 username alihosseini1 129396 mac 129396 bytes_out 0 129396 bytes_in 0 129396 station_ip 5.120.8.98 129396 port 239 129396 unique_id port 129396 remote_ip 10.8.0.166 129397 username amir 129397 mac 129397 bytes_out 3473916 129397 bytes_in 30962474 129397 station_ip 46.225.213.89 129397 port 242 129397 unique_id port 129397 remote_ip 10.8.0.50 129399 username alihosseini1 129399 mac 129399 bytes_out 0 129399 bytes_in 0 129399 station_ip 5.120.8.98 129399 port 239 129399 unique_id port 129399 remote_ip 10.8.0.166 129403 username vanila 129403 mac 129403 bytes_out 1325660 129403 bytes_in 246493 129403 station_ip 83.122.214.209 129403 port 239 129403 unique_id port 129403 remote_ip 10.8.0.178 129405 username amir 129405 mac 129405 bytes_out 35174 129405 bytes_in 349140 129405 station_ip 46.225.213.89 129405 port 240 129405 unique_id port 129405 remote_ip 10.8.0.50 129410 username asma2026 129410 mac 129410 bytes_out 0 129410 bytes_in 0 129410 station_ip 37.129.173.241 129410 port 157 129410 unique_id port 129410 remote_ip 10.8.1.122 129413 username alihosseini1 129413 mac 129413 bytes_out 5535 129413 bytes_in 14899 129413 station_ip 5.120.8.98 129413 port 248 129413 unique_id port 129413 remote_ip 10.8.0.166 129415 username vanila 129415 mac 129415 bytes_out 3378800 129415 bytes_in 3050120 129415 station_ip 83.122.214.209 129415 port 242 129415 unique_id port 129415 remote_ip 10.8.0.178 129418 username asma2026 129418 mac 129418 bytes_out 0 129418 bytes_in 0 129418 station_ip 37.129.173.241 129418 port 228 129418 unique_id port 129418 remote_ip 10.8.0.170 129423 username asma2026 129423 mac 129423 bytes_out 0 129423 bytes_in 0 129423 station_ip 37.129.173.241 129423 port 228 129423 unique_id port 129423 remote_ip 10.8.0.170 129424 username asma2026 129424 mac 129424 bytes_out 0 129424 bytes_in 0 129424 station_ip 37.129.173.241 129424 port 242 129424 unique_id port 129424 remote_ip 10.8.0.170 129425 username asma2026 129425 mac 129425 bytes_out 0 129425 bytes_in 0 129425 station_ip 37.129.173.241 129425 port 157 129425 unique_id port 129425 remote_ip 10.8.1.122 129427 username alipour 129427 mac 129427 bytes_out 0 129427 bytes_in 0 129427 station_ip 83.123.142.106 129427 port 155 129427 unique_id port 129427 remote_ip 10.8.1.50 129428 username asma2026 129428 kill_reason Maximum number of concurrent logins reached 129428 mac 129428 bytes_out 0 129428 bytes_in 0 129428 station_ip 37.129.173.241 129428 port 155 129428 unique_id port 129433 username asma2026 129433 kill_reason Maximum check online fails reached 129433 mac 129433 bytes_out 0 129433 bytes_in 0 129433 station_ip 37.129.173.241 129433 port 228 129433 unique_id port 129434 username farhad2 129434 mac 129434 bytes_out 0 129434 bytes_in 0 129434 station_ip 5.120.174.196 129434 port 149 129434 unique_id port 129434 remote_ip 10.8.1.222 129437 username zare 129437 mac 129437 bytes_out 0 129437 bytes_in 0 129437 station_ip 94.183.214.14 129437 port 237 129437 unique_id port 66331 username arezoo 66331 kill_reason Another user logged on this global unique id 66331 mac 5.237.81.4:49384: Unknown host 66331 bytes_out 0 66331 bytes_in 0 66331 station_ip 5.237.81.4:49384 66331 port 1018 66331 unique_id port 129431 remote_ip 10.8.0.142 129439 username amir 129439 mac 129439 bytes_out 85993 129439 bytes_in 465939 129439 station_ip 46.225.213.89 129439 port 239 129439 unique_id port 129439 remote_ip 10.8.0.50 129442 username yahodi 129442 kill_reason Another user logged on this global unique id 129442 mac 129442 bytes_out 0 129442 bytes_in 0 129442 station_ip 83.123.13.151 129442 port 240 129442 unique_id port 129442 remote_ip 10.8.0.202 129444 username mosi 129444 mac 129444 bytes_out 0 129444 bytes_in 0 129444 station_ip 89.32.96.159 129444 port 156 129444 unique_id port 129444 remote_ip 10.8.1.86 129446 username mirzaei 129446 mac 129446 bytes_out 0 129446 bytes_in 0 129446 station_ip 5.120.22.40 129446 port 154 129446 unique_id port 129446 remote_ip 10.8.1.30 129447 username alipour 129447 mac 129447 bytes_out 0 129447 bytes_in 0 129447 station_ip 83.123.142.106 129447 port 155 129447 unique_id port 129447 remote_ip 10.8.1.50 129449 username yahodi 129449 mac 129449 bytes_out 0 129449 bytes_in 0 129449 station_ip 83.123.13.151 129449 port 240 129449 unique_id port 129450 username amir 129450 mac 129450 bytes_out 0 129450 bytes_in 0 129450 station_ip 46.225.213.89 129450 port 237 129450 unique_id port 129450 remote_ip 10.8.0.50 129451 username khalili 129451 mac 129451 bytes_out 1509248 129451 bytes_in 19501879 129451 station_ip 5.119.158.105 129451 port 246 129451 unique_id port 129451 remote_ip 10.8.0.86 129452 username amir 129452 mac 129452 bytes_out 73208 129452 bytes_in 207017 129452 station_ip 46.225.213.89 129452 port 237 129452 unique_id port 129452 remote_ip 10.8.0.50 129455 username amir 129455 mac 129455 bytes_out 0 129455 bytes_in 0 129455 station_ip 46.225.213.89 129455 port 237 129455 unique_id port 129455 remote_ip 10.8.0.50 129458 username tahmasebi 129458 mac 129458 bytes_out 0 129458 bytes_in 0 129458 station_ip 5.120.34.5 129458 port 244 129458 unique_id port 129460 username tahmasebi 129460 mac 129460 bytes_out 0 129460 bytes_in 0 129460 station_ip 5.120.34.5 129460 port 154 129460 unique_id port 129460 remote_ip 10.8.1.90 129462 username zare 129462 mac 129462 bytes_out 0 129462 bytes_in 0 129462 station_ip 37.27.22.122 129462 port 239 129462 unique_id port 129462 remote_ip 10.8.0.18 129464 username farhad2 129464 mac 129464 bytes_out 0 129464 bytes_in 0 129464 station_ip 5.120.3.88 129464 port 240 129464 unique_id port 129464 remote_ip 10.8.0.190 129466 username kordestani 129466 mac 129466 bytes_out 91108 129466 bytes_in 145802 129466 station_ip 151.235.92.120 129466 port 149 129466 unique_id port 129466 remote_ip 10.8.1.98 129467 username mirzaei 129467 mac 129467 bytes_out 0 129467 bytes_in 0 129467 station_ip 5.120.22.40 129467 port 154 129467 unique_id port 129467 remote_ip 10.8.1.30 129473 username sedighe 129473 kill_reason Maximum check online fails reached 129473 mac 129473 bytes_out 0 129473 bytes_in 0 129473 station_ip 83.123.154.145 129473 port 246 129473 unique_id port 129476 username alipour 129476 mac 129476 bytes_out 42773 129476 bytes_in 76919 129476 station_ip 83.123.142.106 129476 port 247 129476 unique_id port 129476 remote_ip 10.8.0.102 129477 username moradi 129989 username arash 129437 remote_ip 10.8.0.18 129440 username amir 129440 mac 129440 bytes_out 0 129440 bytes_in 0 129440 station_ip 46.225.213.89 129440 port 237 129440 unique_id port 129440 remote_ip 10.8.0.50 129445 username farhad2 129445 mac 129445 bytes_out 0 129445 bytes_in 0 129445 station_ip 5.120.174.196 129445 port 149 129445 unique_id port 129445 remote_ip 10.8.1.222 129454 username amir 129454 mac 129454 bytes_out 0 129454 bytes_in 0 129454 station_ip 46.225.213.89 129454 port 237 129454 unique_id port 129454 remote_ip 10.8.0.50 129457 username moradi 129457 mac 129457 bytes_out 0 129457 bytes_in 0 129457 station_ip 46.225.214.186 129457 port 239 129457 unique_id port 129457 remote_ip 10.8.0.250 129459 username amir 129459 mac 129459 bytes_out 0 129459 bytes_in 0 129459 station_ip 46.225.213.89 129459 port 242 129459 unique_id port 129459 remote_ip 10.8.0.50 129461 username kordestani 129461 mac 129461 bytes_out 114586 129461 bytes_in 491001 129461 station_ip 151.235.92.120 129461 port 154 129461 unique_id port 129461 remote_ip 10.8.1.98 129465 username amir 129465 mac 129465 bytes_out 0 129465 bytes_in 0 129465 station_ip 46.225.213.89 129465 port 244 129465 unique_id port 129465 remote_ip 10.8.0.50 129471 username sedighe 129471 mac 129471 bytes_out 259795 129471 bytes_in 810305 129471 station_ip 83.123.154.145 129471 port 239 129471 unique_id port 129471 remote_ip 10.8.0.146 129479 username alipour 129479 mac 129479 bytes_out 6814 129479 bytes_in 7877 129479 station_ip 83.123.142.106 129479 port 247 129479 unique_id port 129479 remote_ip 10.8.0.102 129480 username moradi 129480 mac 129480 bytes_out 0 129480 bytes_in 0 129480 station_ip 5.202.30.29 129480 port 242 129480 unique_id port 129492 username farhad2 129492 mac 129492 bytes_out 0 129492 bytes_in 0 129492 station_ip 5.120.3.88 129492 port 240 129492 unique_id port 129493 username barzegar 129493 mac 129493 bytes_out 0 129493 bytes_in 0 129493 station_ip 5.120.64.145 129493 port 247 129493 unique_id port 129493 remote_ip 10.8.0.234 129496 username morteza 129496 mac 129496 bytes_out 0 129496 bytes_in 0 129496 station_ip 83.122.144.127 129496 port 149 129496 unique_id port 129496 remote_ip 10.8.1.62 129498 username barzegar 129498 mac 129498 bytes_out 9262 129498 bytes_in 14487 129498 station_ip 5.120.64.145 129498 port 247 129498 unique_id port 129498 remote_ip 10.8.0.234 129500 username farhad2 129500 mac 129500 bytes_out 374809 129500 bytes_in 1515944 129500 station_ip 5.120.3.88 129500 port 154 129500 unique_id port 129500 remote_ip 10.8.1.222 129502 username morteza 129502 mac 129502 bytes_out 445781 129502 bytes_in 6914250 129502 station_ip 83.122.144.127 129502 port 149 129502 unique_id port 129502 remote_ip 10.8.1.62 129504 username vanila 129504 mac 129504 bytes_out 0 129504 bytes_in 0 129504 station_ip 83.122.23.5 129504 port 247 129504 unique_id port 129504 remote_ip 10.8.0.178 129507 username barzegar 129507 mac 129507 bytes_out 3703 129507 bytes_in 6177 129507 station_ip 5.120.64.145 129507 port 149 129507 unique_id port 129507 remote_ip 10.8.1.174 129515 username barzegar 129515 mac 129515 bytes_out 0 129515 bytes_in 0 129515 station_ip 5.120.64.145 129515 port 149 129515 unique_id port 129515 remote_ip 10.8.1.174 129517 username morteza 129517 mac 129517 bytes_out 10138779 129517 bytes_in 819988 129456 station_ip 37.129.18.24 129456 port 247 129456 unique_id port 129463 username mirzaei 129463 mac 129463 bytes_out 179096 129463 bytes_in 448355 129463 station_ip 5.120.22.40 129463 port 149 129463 unique_id port 129463 remote_ip 10.8.1.30 129468 username mirzaei 129468 mac 129468 bytes_out 0 129468 bytes_in 0 129468 station_ip 5.120.22.40 129468 port 149 129468 unique_id port 129468 remote_ip 10.8.1.30 129469 username khademi 129469 mac 129469 bytes_out 176739 129469 bytes_in 1542196 129469 station_ip 37.129.18.24 129469 port 237 129469 unique_id port 129469 remote_ip 10.8.0.10 129470 username amir 129470 mac 129470 bytes_out 46019 129470 bytes_in 330958 129470 station_ip 46.225.213.89 129470 port 237 129470 unique_id port 129470 remote_ip 10.8.0.50 129472 username khademi 129472 mac 129472 bytes_out 60259 129472 bytes_in 39434 129472 station_ip 113.203.124.121 129472 port 244 129472 unique_id port 129472 remote_ip 10.8.0.10 129474 username aminvpn 129474 unique_id port 129474 terminate_cause User-Request 129474 bytes_out 10395810 129474 bytes_in 157660706 129474 station_ip 5.119.6.232 129474 port 15730196 129474 nas_port_type Virtual 129474 remote_ip 5.5.5.255 129475 username farhad2 129475 kill_reason Another user logged on this global unique id 129475 mac 129475 bytes_out 0 129475 bytes_in 0 129475 station_ip 5.120.3.88 129475 port 240 129475 unique_id port 129475 remote_ip 10.8.0.190 129478 username rezasekonji 129478 kill_reason Relative expiration date has reached 129478 mac 129478 bytes_out 0 129478 bytes_in 0 129478 station_ip 83.123.28.185 129478 port 250 129478 unique_id port 129483 username mohammadjavad 129483 mac 129483 bytes_out 1588233 129483 bytes_in 33687277 129483 station_ip 37.129.150.143 129483 port 248 129483 unique_id port 129483 remote_ip 10.8.0.142 129486 username farhad2 129486 kill_reason Another user logged on this global unique id 129486 mac 129486 bytes_out 0 129486 bytes_in 0 129486 station_ip 5.120.3.88 129486 port 240 129486 unique_id port 129488 username barzegar 129488 mac 129488 bytes_out 0 129488 bytes_in 0 129488 station_ip 5.120.64.145 129488 port 242 129488 unique_id port 129488 remote_ip 10.8.0.234 129490 username barzegar 129490 mac 129490 bytes_out 0 129490 bytes_in 0 129490 station_ip 5.120.64.145 129490 port 244 129490 unique_id port 129490 remote_ip 10.8.0.234 129491 username barzegar 129491 mac 129491 bytes_out 0 129491 bytes_in 0 129491 station_ip 5.120.64.145 129491 port 149 129491 unique_id port 129491 remote_ip 10.8.1.174 129497 username farhad2 129497 mac 129497 bytes_out 67399 129497 bytes_in 439978 129497 station_ip 5.120.3.88 129497 port 154 129497 unique_id port 129497 remote_ip 10.8.1.222 129499 username vanila 129499 mac 129499 bytes_out 0 129499 bytes_in 0 129499 station_ip 83.122.23.5 129499 port 240 129499 unique_id port 129499 remote_ip 10.8.0.178 129503 username barzegar 129503 mac 129503 bytes_out 0 129503 bytes_in 0 129503 station_ip 5.120.64.145 129503 port 149 129503 unique_id port 129503 remote_ip 10.8.1.174 129505 username morteza 129505 mac 129505 bytes_out 0 129505 bytes_in 0 129505 station_ip 83.122.144.127 129505 port 155 129505 unique_id port 129505 remote_ip 10.8.1.62 129506 username morteza 129506 mac 129506 bytes_out 0 129506 bytes_in 0 129506 station_ip 83.122.144.127 129506 port 240 129506 unique_id port 129506 remote_ip 10.8.0.46 129511 username morteza 129511 mac 129511 bytes_out 0 129511 bytes_in 0 129477 kill_reason Another user logged on this global unique id 129477 mac 129477 bytes_out 0 129477 bytes_in 0 129477 station_ip 5.202.30.29 129477 port 242 129477 unique_id port 129477 remote_ip 10.8.0.250 129481 username alipour 129481 mac 129481 bytes_out 0 129481 bytes_in 0 129481 station_ip 83.123.142.106 129481 port 247 129481 unique_id port 129481 remote_ip 10.8.0.102 129482 username barzegar 129482 mac 129482 bytes_out 17867 129482 bytes_in 21536 129482 station_ip 5.120.64.145 129482 port 149 129482 unique_id port 129482 remote_ip 10.8.1.174 129484 username barzegar 129484 mac 129484 bytes_out 3197 129484 bytes_in 5536 129484 station_ip 5.120.64.145 129484 port 242 129484 unique_id port 129484 remote_ip 10.8.0.234 129485 username barzegar 129485 mac 129485 bytes_out 0 129485 bytes_in 0 129485 station_ip 5.120.64.145 129485 port 149 129485 unique_id port 129485 remote_ip 10.8.1.174 129487 username barzegar 129487 mac 129487 bytes_out 0 129487 bytes_in 0 129487 station_ip 5.120.64.145 129487 port 149 129487 unique_id port 129487 remote_ip 10.8.1.174 129489 username kordestani 129489 mac 129489 bytes_out 0 129489 bytes_in 0 129489 station_ip 151.235.92.120 129489 port 244 129489 unique_id port 129489 remote_ip 10.8.0.134 129494 username aminvpn 129494 unique_id port 129494 terminate_cause Lost-Carrier 129494 bytes_out 249679 129494 bytes_in 3381486 129494 station_ip 5.120.144.4 129494 port 15730206 129494 nas_port_type Virtual 129494 remote_ip 5.5.5.254 129495 username morteza 129495 mac 129495 bytes_out 408040 129495 bytes_in 5139237 129495 station_ip 113.203.35.14 129495 port 240 129495 unique_id port 129495 remote_ip 10.8.0.46 129501 username barzegar 129501 mac 129501 bytes_out 0 129501 bytes_in 0 129501 station_ip 5.120.64.145 129501 port 240 129501 unique_id port 129501 remote_ip 10.8.0.234 129508 username morteza 129508 mac 129508 bytes_out 0 129508 bytes_in 0 129508 station_ip 83.122.144.127 129508 port 240 129508 unique_id port 129508 remote_ip 10.8.0.46 129509 username morteza 129509 mac 129509 bytes_out 0 129509 bytes_in 0 129509 station_ip 83.122.144.127 129509 port 240 129509 unique_id port 129509 remote_ip 10.8.0.46 129510 username farhad2 129510 mac 129510 bytes_out 555080 129510 bytes_in 2889089 129510 station_ip 5.120.3.88 129510 port 154 129510 unique_id port 129510 remote_ip 10.8.1.222 129512 username forozande 129512 mac 129512 bytes_out 0 129512 bytes_in 0 129512 station_ip 83.123.147.109 129512 port 248 129512 unique_id port 129512 remote_ip 10.8.0.74 129513 username barzegar 129513 mac 129513 bytes_out 0 129513 bytes_in 0 129513 station_ip 5.120.64.145 129513 port 149 129513 unique_id port 129513 remote_ip 10.8.1.174 129514 username farhad2 129514 mac 129514 bytes_out 0 129514 bytes_in 0 129514 station_ip 5.120.3.88 129514 port 154 129514 unique_id port 129514 remote_ip 10.8.1.222 129521 username alihosseini1 129521 mac 129521 bytes_out 0 129521 bytes_in 0 129521 station_ip 5.119.146.28 129521 port 247 129521 unique_id port 129521 remote_ip 10.8.0.166 129523 username barzegar 129523 mac 129523 bytes_out 0 129523 bytes_in 0 129523 station_ip 5.120.64.145 129523 port 154 129523 unique_id port 129523 remote_ip 10.8.1.174 129527 username morteza 129527 mac 129527 bytes_out 0 129527 bytes_in 0 129527 station_ip 37.129.49.223 129527 port 149 129527 unique_id port 129527 remote_ip 10.8.1.62 129529 username morteza 129511 station_ip 83.122.144.127 129511 port 149 129511 unique_id port 129511 remote_ip 10.8.1.62 129516 username alihosseini1 129516 mac 129516 bytes_out 43108 129516 bytes_in 218658 129516 station_ip 5.119.146.28 129516 port 248 129516 unique_id port 129516 remote_ip 10.8.0.166 129518 username barzegar 129518 mac 129518 bytes_out 0 129518 bytes_in 0 129518 station_ip 5.120.64.145 129518 port 149 129518 unique_id port 129518 remote_ip 10.8.1.174 129526 username morteza 129526 mac 129526 bytes_out 16762 129526 bytes_in 22832 129526 station_ip 37.129.49.223 129526 port 247 129526 unique_id port 129526 remote_ip 10.8.0.46 129532 username barzegar 129532 mac 129532 bytes_out 0 129532 bytes_in 0 129532 station_ip 5.120.64.145 129532 port 247 129532 unique_id port 129532 remote_ip 10.8.0.234 129549 username alihosseini1 129549 mac 129549 bytes_out 0 129549 bytes_in 0 129549 station_ip 5.119.39.101 129549 port 242 129549 unique_id port 129549 remote_ip 10.8.0.166 129560 username barzegar 129560 mac 129560 bytes_out 0 129560 bytes_in 0 129560 station_ip 5.120.64.145 129560 port 250 129560 unique_id port 129560 remote_ip 10.8.0.234 129562 username kordestani 129562 kill_reason Another user logged on this global unique id 129562 mac 129562 bytes_out 0 129562 bytes_in 0 129562 station_ip 151.235.127.44 129562 port 242 129562 unique_id port 129562 remote_ip 10.8.0.134 129564 username barzegar 129564 mac 129564 bytes_out 0 129564 bytes_in 0 129564 station_ip 5.120.64.145 129564 port 250 129564 unique_id port 129564 remote_ip 10.8.0.234 129566 username yahodi 129566 mac 129566 bytes_out 0 129566 bytes_in 0 129566 station_ip 83.123.69.239 129566 port 250 129566 unique_id port 129566 remote_ip 10.8.0.202 129568 username yahodi 129568 mac 129568 bytes_out 266176 129568 bytes_in 1448234 129568 station_ip 83.123.69.239 129568 port 252 129568 unique_id port 129568 remote_ip 10.8.0.202 129570 username jafari 129570 mac 129570 bytes_out 0 129570 bytes_in 0 129570 station_ip 89.47.158.95 129570 port 252 129570 unique_id port 129570 remote_ip 10.8.0.242 129572 username mirzaei 129572 kill_reason Another user logged on this global unique id 129572 mac 129572 bytes_out 0 129572 bytes_in 0 129572 station_ip 5.120.22.40 129572 port 239 129572 unique_id port 129572 remote_ip 10.8.0.66 129578 username mosi 129578 kill_reason Another user logged on this global unique id 129578 mac 129578 bytes_out 0 129578 bytes_in 0 129578 station_ip 151.235.98.140 129578 port 237 129578 unique_id port 129578 remote_ip 10.8.0.138 129582 username farhad2 129582 kill_reason Another user logged on this global unique id 129582 mac 129582 bytes_out 0 129582 bytes_in 0 129582 station_ip 5.119.213.76 129582 port 247 129582 unique_id port 129582 remote_ip 10.8.0.190 129584 username farhad2 129584 mac 129584 bytes_out 0 129584 bytes_in 0 129584 station_ip 5.119.213.76 129584 port 247 129584 unique_id port 129585 username aminvpn 129585 mac 129585 bytes_out 226391 129585 bytes_in 720231 129585 station_ip 83.122.192.149 129585 port 248 129585 unique_id port 129585 remote_ip 10.8.0.14 129587 username mohammadmahdi 129587 kill_reason Another user logged on this global unique id 129587 mac 129587 bytes_out 0 129587 bytes_in 0 129587 station_ip 5.120.170.243 129587 port 252 129587 unique_id port 129587 remote_ip 10.8.0.54 129590 username barzegar 129590 mac 129590 bytes_out 0 129590 bytes_in 0 129590 station_ip 5.120.64.145 129590 port 155 129590 unique_id port 129517 station_ip 83.122.144.127 129517 port 247 129517 unique_id port 129517 remote_ip 10.8.0.46 129519 username mahdixz 129519 unique_id port 129519 terminate_cause User-Request 129519 bytes_out 603044 129519 bytes_in 5957210 129519 station_ip 151.235.98.117 129519 port 15730208 129519 nas_port_type Virtual 129519 remote_ip 5.5.5.252 129520 username aminvpn 129520 unique_id port 129520 terminate_cause Lost-Carrier 129520 bytes_out 422632 129520 bytes_in 4308515 129520 station_ip 5.119.165.115 129520 port 15730207 129520 nas_port_type Virtual 129520 remote_ip 5.5.5.254 129522 username morteza 129522 mac 129522 bytes_out 1571990 129522 bytes_in 1056760 129522 station_ip 83.122.203.158 129522 port 149 129522 unique_id port 129522 remote_ip 10.8.1.62 129524 username arash 129524 mac 129524 bytes_out 19474 129524 bytes_in 20303 129524 station_ip 37.27.2.36 129524 port 248 129524 unique_id port 129524 remote_ip 10.8.0.114 129525 username kordestani 129525 mac 129525 bytes_out 1389158 129525 bytes_in 20640390 129525 station_ip 151.235.92.120 129525 port 242 129525 unique_id port 129525 remote_ip 10.8.0.134 129528 username morteza 129528 kill_reason Maximum number of concurrent logins reached 129528 mac 129528 bytes_out 0 129528 bytes_in 0 129528 station_ip 37.129.49.223 129528 port 247 129528 unique_id port 129531 username barzegar 129531 mac 129531 bytes_out 0 129531 bytes_in 0 129531 station_ip 5.120.64.145 129531 port 242 129531 unique_id port 129531 remote_ip 10.8.0.234 129533 username kordestani 129533 mac 129533 bytes_out 228136 129533 bytes_in 2506891 129533 station_ip 151.235.91.96 129533 port 242 129533 unique_id port 129533 remote_ip 10.8.0.134 129535 username saeed9658 129535 mac 129535 bytes_out 1167259 129535 bytes_in 12874098 129535 station_ip 5.119.106.59 129535 port 154 129535 unique_id port 129535 remote_ip 10.8.1.210 129537 username amirabbas 129537 unique_id port 129537 terminate_cause User-Request 129537 bytes_out 5620554 129537 bytes_in 154129837 129537 station_ip 37.27.57.201 129537 port 15730209 129537 nas_port_type Virtual 129537 remote_ip 5.5.5.255 129538 username barzegar 129538 mac 129538 bytes_out 0 129538 bytes_in 0 129538 station_ip 5.120.64.145 129538 port 154 129538 unique_id port 129538 remote_ip 10.8.1.174 129540 username zare 129540 kill_reason Another user logged on this global unique id 129540 mac 129540 bytes_out 0 129540 bytes_in 0 129540 station_ip 37.27.22.122 129540 port 248 129540 unique_id port 129540 remote_ip 10.8.0.18 129541 username barzegar 129541 mac 129541 bytes_out 2292 129541 bytes_in 4761 129541 station_ip 5.120.64.145 129541 port 154 129541 unique_id port 129541 remote_ip 10.8.1.174 129542 username mansur 129542 mac 129542 bytes_out 0 129542 bytes_in 0 129542 station_ip 5.119.114.9 129542 port 251 129542 unique_id port 129542 remote_ip 10.8.0.210 129544 username jafari 129544 kill_reason Another user logged on this global unique id 129544 mac 129544 bytes_out 0 129544 bytes_in 0 129544 station_ip 89.47.158.95 129544 port 247 129544 unique_id port 129544 remote_ip 10.8.0.242 129546 username khademi 129546 mac 129546 bytes_out 0 129546 bytes_in 0 129546 station_ip 113.203.124.121 129546 port 237 129546 unique_id port 129546 remote_ip 10.8.0.10 129547 username barzegar 129547 mac 129547 bytes_out 0 129547 bytes_in 0 129547 station_ip 5.120.64.145 129547 port 155 129547 unique_id port 129547 remote_ip 10.8.1.174 129548 username jafari 129548 kill_reason Another user logged on this global unique id 129548 mac 129548 bytes_out 0 129529 mac 129529 bytes_out 1636 129529 bytes_in 5089 129529 station_ip 37.129.49.223 129529 port 242 129529 unique_id port 129529 remote_ip 10.8.0.46 129530 username morteza 129530 kill_reason Maximum check online fails reached 129530 mac 129530 bytes_out 0 129530 bytes_in 0 129530 station_ip 37.129.49.223 129530 port 149 129530 unique_id port 129534 username khademi 129534 mac 129534 bytes_out 670873 129534 bytes_in 5105360 129534 station_ip 113.203.124.121 129534 port 237 129534 unique_id port 129534 remote_ip 10.8.0.10 129536 username barzegar 129536 mac 129536 bytes_out 10526 129536 bytes_in 13129 129536 station_ip 5.120.64.145 129536 port 242 129536 unique_id port 129536 remote_ip 10.8.0.234 129539 username barzegar 129539 mac 129539 bytes_out 0 129539 bytes_in 0 129539 station_ip 5.120.64.145 129539 port 247 129539 unique_id port 129539 remote_ip 10.8.0.234 129543 username zare 129543 mac 129543 bytes_out 0 129543 bytes_in 0 129543 station_ip 37.27.22.122 129543 port 248 129543 unique_id port 129545 username kordestani 129545 mac 129545 bytes_out 0 129545 bytes_in 0 129545 station_ip 151.235.127.44 129545 port 242 129545 unique_id port 129545 remote_ip 10.8.0.134 129551 username zare 129551 mac 129551 bytes_out 0 129551 bytes_in 0 129551 station_ip 37.27.22.122 129551 port 237 129551 unique_id port 129551 remote_ip 10.8.0.18 129554 username barzegar 129554 mac 129554 bytes_out 0 129554 bytes_in 0 129554 station_ip 5.120.64.145 129554 port 155 129554 unique_id port 129554 remote_ip 10.8.1.174 129556 username jafari 129556 kill_reason Another user logged on this global unique id 129556 mac 129556 bytes_out 0 129556 bytes_in 0 129556 station_ip 89.47.158.95 129556 port 247 129556 unique_id port 129557 username mohammadjavad 129557 mac 129557 bytes_out 155741 129557 bytes_in 888170 129557 station_ip 83.123.164.229 129557 port 237 129557 unique_id port 129557 remote_ip 10.8.0.142 129558 username barzegar 129558 mac 129558 bytes_out 2636 129558 bytes_in 5094 129558 station_ip 5.120.64.145 129558 port 155 129558 unique_id port 129558 remote_ip 10.8.1.174 129561 username barzegar 129561 mac 129561 bytes_out 0 129561 bytes_in 0 129561 station_ip 5.120.64.145 129561 port 250 129561 unique_id port 129561 remote_ip 10.8.0.234 129563 username vanila 129563 mac 129563 bytes_out 8887394 129563 bytes_in 4306585 129563 station_ip 37.129.164.127 129563 port 252 129563 unique_id port 129563 remote_ip 10.8.0.178 129567 username farhad2 129567 mac 129567 bytes_out 1034233 129567 bytes_in 6296785 129567 station_ip 5.119.213.76 129567 port 253 129567 unique_id port 129567 remote_ip 10.8.0.190 129571 username barzegar 129571 mac 129571 bytes_out 0 129571 bytes_in 0 129571 station_ip 5.120.64.145 129571 port 155 129571 unique_id port 129571 remote_ip 10.8.1.174 129574 username farhad2 129574 mac 129574 bytes_out 0 129574 bytes_in 0 129574 station_ip 5.119.213.76 129574 port 250 129574 unique_id port 129574 remote_ip 10.8.0.190 129575 username hosseine 129575 mac 129575 bytes_out 0 129575 bytes_in 0 129575 station_ip 37.129.22.160 129575 port 241 129575 unique_id port 129576 username farhad2 129576 kill_reason Another user logged on this global unique id 129576 mac 129576 bytes_out 0 129576 bytes_in 0 129576 station_ip 5.119.213.76 129576 port 247 129576 unique_id port 129576 remote_ip 10.8.0.190 129577 username farhad2 129577 mac 129577 bytes_out 0 129577 bytes_in 0 129548 bytes_in 0 129548 station_ip 89.47.158.95 129548 port 247 129548 unique_id port 129550 username kordestani 129550 mac 129550 bytes_out 0 129550 bytes_in 0 129550 station_ip 151.235.127.44 129550 port 248 129550 unique_id port 129550 remote_ip 10.8.0.134 129552 username moradi 129552 mac 129552 bytes_out 0 129552 bytes_in 0 129552 station_ip 46.225.214.186 129552 port 250 129552 unique_id port 129552 remote_ip 10.8.0.250 129553 username yahodi 129553 mac 129553 bytes_out 0 129553 bytes_in 0 129553 station_ip 83.123.45.147 129553 port 242 129553 unique_id port 129553 remote_ip 10.8.0.202 129555 username barzegar 129555 mac 129555 bytes_out 0 129555 bytes_in 0 129555 station_ip 5.120.64.145 129555 port 155 129555 unique_id port 129555 remote_ip 10.8.1.174 129559 username farhad2 129559 mac 129559 bytes_out 0 129559 bytes_in 0 129559 station_ip 5.119.213.76 129559 port 250 129559 unique_id port 129559 remote_ip 10.8.0.190 129565 username barzegar 129565 mac 129565 bytes_out 0 129565 bytes_in 0 129565 station_ip 5.120.64.145 129565 port 155 129565 unique_id port 129565 remote_ip 10.8.1.174 129569 username jafari 129569 mac 129569 bytes_out 0 129569 bytes_in 0 129569 station_ip 89.47.158.95 129569 port 247 129569 unique_id port 129573 username barzegar 129573 mac 129573 bytes_out 0 129573 bytes_in 0 129573 station_ip 5.120.64.145 129573 port 155 129573 unique_id port 129573 remote_ip 10.8.1.174 129580 username vanila 129580 mac 129580 bytes_out 0 129580 bytes_in 0 129580 station_ip 37.129.211.67 129580 port 248 129580 unique_id port 129580 remote_ip 10.8.0.178 129581 username barzegar 129581 mac 129581 bytes_out 0 129581 bytes_in 0 129581 station_ip 5.120.64.145 129581 port 155 129581 unique_id port 129581 remote_ip 10.8.1.174 129586 username farhad2 129586 mac 129586 bytes_out 0 129586 bytes_in 0 129586 station_ip 5.119.213.76 129586 port 248 129586 unique_id port 129586 remote_ip 10.8.0.190 129593 username sabaghnezhad 129593 mac 129593 bytes_out 0 129593 bytes_in 0 129593 station_ip 83.123.198.137 129593 port 244 129593 unique_id port 129593 remote_ip 10.8.0.186 129597 username barzegar 129597 mac 129597 bytes_out 0 129597 bytes_in 0 129597 station_ip 5.120.64.145 129597 port 155 129597 unique_id port 129597 remote_ip 10.8.1.174 129598 username moradi 129598 mac 129598 bytes_out 0 129598 bytes_in 0 129598 station_ip 83.123.244.2 129598 port 247 129598 unique_id port 129598 remote_ip 10.8.0.250 129600 username aminvpn 129600 unique_id port 129600 terminate_cause Lost-Carrier 129600 bytes_out 477818 129600 bytes_in 4845348 129600 station_ip 5.120.29.130 129600 port 15730212 129600 nas_port_type Virtual 129600 remote_ip 5.5.5.254 129602 username barzegar 129602 mac 129602 bytes_out 0 129602 bytes_in 0 129602 station_ip 5.120.64.145 129602 port 155 129602 unique_id port 129602 remote_ip 10.8.1.174 129604 username mosi 129604 kill_reason Another user logged on this global unique id 129604 mac 129604 bytes_out 0 129604 bytes_in 0 129604 station_ip 151.235.98.140 129604 port 237 129604 unique_id port 129605 username amirabbas 129605 unique_id port 129605 terminate_cause Lost-Carrier 129605 bytes_out 12102097 129605 bytes_in 335649082 129605 station_ip 37.27.57.201 129605 port 15730210 129605 nas_port_type Virtual 129605 remote_ip 5.5.5.255 129606 username mostafa_es78 129606 unique_id port 129606 terminate_cause User-Request 129606 bytes_out 536 129606 bytes_in 318 129577 station_ip 5.119.213.76 129577 port 247 129577 unique_id port 129579 username moradi 129579 mac 129579 bytes_out 0 129579 bytes_in 0 129579 station_ip 188.245.88.150 129579 port 248 129579 unique_id port 129579 remote_ip 10.8.0.250 129583 username mohammadjavad 129583 mac 129583 bytes_out 1288993 129583 bytes_in 14716808 129583 station_ip 113.203.87.252 129583 port 250 129583 unique_id port 129583 remote_ip 10.8.0.142 129588 username jafari 129588 kill_reason Another user logged on this global unique id 129588 mac 129588 bytes_out 0 129588 bytes_in 0 129588 station_ip 89.47.158.95 129588 port 156 129588 unique_id port 129588 remote_ip 10.8.1.198 129589 username barzegar 129589 mac 129589 bytes_out 1421608 129589 bytes_in 779828 129589 station_ip 5.120.64.145 129589 port 247 129589 unique_id port 129589 remote_ip 10.8.0.234 129594 username mirzaei 129594 kill_reason Another user logged on this global unique id 129594 mac 129594 bytes_out 0 129594 bytes_in 0 129594 station_ip 5.120.22.40 129594 port 239 129594 unique_id port 129595 username sedighe 129595 mac 129595 bytes_out 0 129595 bytes_in 0 129595 station_ip 113.203.85.120 129595 port 250 129595 unique_id port 129595 remote_ip 10.8.0.146 129596 username kordestani 129596 mac 129596 bytes_out 0 129596 bytes_in 0 129596 station_ip 151.235.127.44 129596 port 242 129596 unique_id port 129599 username mahdiyehalizadeh 129599 mac 129599 bytes_out 44777 129599 bytes_in 66012 129599 station_ip 83.123.137.26 129599 port 250 129599 unique_id port 129599 remote_ip 10.8.0.82 129607 username barzegar 129607 mac 129607 bytes_out 0 129607 bytes_in 0 129607 station_ip 5.120.64.145 129607 port 247 129607 unique_id port 129607 remote_ip 10.8.0.234 129609 username jafari 129609 kill_reason Another user logged on this global unique id 129609 mac 129609 bytes_out 0 129609 bytes_in 0 129609 station_ip 89.47.158.95 129609 port 156 129609 unique_id port 129613 username amir 129613 mac 129613 bytes_out 0 129613 bytes_in 0 129613 station_ip 46.225.232.184 129613 port 248 129613 unique_id port 129613 remote_ip 10.8.0.50 129615 username hosseine 129615 kill_reason Another user logged on this global unique id 129615 mac 129615 bytes_out 0 129615 bytes_in 0 129615 station_ip 37.129.22.160 129615 port 241 129615 unique_id port 129615 remote_ip 10.8.0.238 129618 username hosseine 129618 kill_reason Another user logged on this global unique id 129618 mac 129618 bytes_out 0 129618 bytes_in 0 129618 station_ip 37.129.22.160 129618 port 241 129618 unique_id port 129622 username barzegar 129622 mac 129622 bytes_out 0 129622 bytes_in 0 129622 station_ip 5.120.64.145 129622 port 155 129622 unique_id port 129622 remote_ip 10.8.1.174 129624 username hoorieh 129624 mac 129624 bytes_out 0 129624 bytes_in 0 129624 station_ip 5.119.75.111 129624 port 242 129624 unique_id port 129624 remote_ip 10.8.0.38 129628 username amir 129628 mac 129628 bytes_out 126329 129628 bytes_in 541649 129628 station_ip 46.225.232.184 129628 port 241 129628 unique_id port 129628 remote_ip 10.8.0.50 129629 username barzegar 129629 mac 129629 bytes_out 0 129629 bytes_in 0 129629 station_ip 5.120.64.145 129629 port 155 129629 unique_id port 129629 remote_ip 10.8.1.174 129631 username sabaghnezhad 129631 mac 129631 bytes_out 0 129631 bytes_in 0 129631 station_ip 83.123.198.137 129631 port 244 129631 unique_id port 129631 remote_ip 10.8.0.186 129632 username jafari 129632 kill_reason Another user logged on this global unique id 129632 mac 129590 remote_ip 10.8.1.174 129591 username mahdixz 129591 unique_id port 129591 terminate_cause User-Request 129591 bytes_out 658629 129591 bytes_in 15848084 129591 station_ip 151.235.98.117 129591 port 15730211 129591 nas_port_type Virtual 129591 remote_ip 5.5.5.43 129592 username barzegar 129592 mac 129592 bytes_out 3148 129592 bytes_in 5898 129592 station_ip 5.120.64.145 129592 port 155 129592 unique_id port 129592 remote_ip 10.8.1.174 129601 username mirzaei 129601 kill_reason Another user logged on this global unique id 129601 mac 129601 bytes_out 0 129601 bytes_in 0 129601 station_ip 5.120.22.40 129601 port 239 129601 unique_id port 129603 username sabaghnezhad 129603 mac 129603 bytes_out 0 129603 bytes_in 0 129603 station_ip 83.123.198.137 129603 port 244 129603 unique_id port 129603 remote_ip 10.8.0.186 129608 username farhad2 129608 mac 129608 bytes_out 7173449 129608 bytes_in 30628887 129608 station_ip 5.119.213.76 129608 port 248 129608 unique_id port 129608 remote_ip 10.8.0.190 129610 username mohammadmahdi 129610 kill_reason Another user logged on this global unique id 129610 mac 129610 bytes_out 0 129610 bytes_in 0 129610 station_ip 5.120.170.243 129610 port 252 129610 unique_id port 129614 username moradi 129614 mac 129614 bytes_out 0 129614 bytes_in 0 129614 station_ip 113.203.72.62 129614 port 157 129614 unique_id port 129614 remote_ip 10.8.1.202 129617 username saeed9658 129617 mac 129617 bytes_out 1041988 129617 bytes_in 10358804 129617 station_ip 5.119.106.59 129617 port 155 129617 unique_id port 129617 remote_ip 10.8.1.210 129621 username farhad2 129621 mac 129621 bytes_out 0 129621 bytes_in 0 129621 station_ip 5.119.213.76 129621 port 247 129621 unique_id port 129621 remote_ip 10.8.0.190 129625 username alihosseini1 129625 mac 129625 bytes_out 81853 129625 bytes_in 163774 129625 station_ip 5.120.27.207 129625 port 248 129625 unique_id port 129625 remote_ip 10.8.0.166 129627 username mohammadmahdi 129627 kill_reason Another user logged on this global unique id 129627 mac 129627 bytes_out 0 129627 bytes_in 0 129627 station_ip 5.120.170.243 129627 port 252 129627 unique_id port 129637 username sedighe 129637 mac 129637 bytes_out 0 129637 bytes_in 0 129637 station_ip 37.129.95.154 129637 port 241 129637 unique_id port 129637 remote_ip 10.8.0.146 129640 username malekpoir 129640 mac 129640 bytes_out 0 129640 bytes_in 0 129640 station_ip 5.119.49.133 129640 port 154 129640 unique_id port 129640 remote_ip 10.8.1.54 129641 username sedighe 129641 mac 129641 bytes_out 0 129641 bytes_in 0 129641 station_ip 37.129.95.154 129641 port 247 129641 unique_id port 129641 remote_ip 10.8.0.146 129643 username aminvpn 129643 mac 129643 bytes_out 0 129643 bytes_in 0 129643 station_ip 113.203.73.99 129643 port 241 129643 unique_id port 129643 remote_ip 10.8.0.14 129645 username aminvpn 129645 mac 129645 bytes_out 0 129645 bytes_in 0 129645 station_ip 113.203.73.99 129645 port 241 129645 unique_id port 129645 remote_ip 10.8.0.14 129646 username aminvpn 129646 mac 129646 bytes_out 0 129646 bytes_in 0 129646 station_ip 113.203.73.99 129646 port 247 129646 unique_id port 129646 remote_ip 10.8.0.14 129649 username aminvpn 129649 mac 129649 bytes_out 0 129649 bytes_in 0 129649 station_ip 113.203.73.99 129649 port 241 129649 unique_id port 129649 remote_ip 10.8.0.14 129650 username aminvpn 129650 mac 129650 bytes_out 0 129650 bytes_in 0 129650 station_ip 113.203.73.99 129650 port 247 129606 station_ip 5.126.21.185 129606 port 15730215 129606 nas_port_type Virtual 129606 remote_ip 5.5.5.250 129611 username mostafa_es78 129611 unique_id port 129611 terminate_cause Lost-Carrier 129611 bytes_out 46960 129611 bytes_in 155577 129611 station_ip 178.236.35.96 129611 port 15730213 129611 nas_port_type Virtual 129611 remote_ip 5.5.5.254 129612 username moradi 129612 mac 129612 bytes_out 182216 129612 bytes_in 227238 129612 station_ip 188.245.88.150 129612 port 253 129612 unique_id port 129612 remote_ip 10.8.0.250 129616 username barzegar 129616 mac 129616 bytes_out 0 129616 bytes_in 0 129616 station_ip 5.120.64.145 129616 port 250 129616 unique_id port 129616 remote_ip 10.8.0.234 129619 username hosseine 129619 mac 129619 bytes_out 0 129619 bytes_in 0 129619 station_ip 37.129.22.160 129619 port 241 129619 unique_id port 129620 username kordestani 129620 mac 129620 bytes_out 1990700 129620 bytes_in 29602194 129620 station_ip 151.235.90.203 129620 port 242 129620 unique_id port 129620 remote_ip 10.8.0.134 129623 username vanila 129623 mac 129623 bytes_out 0 129623 bytes_in 0 129623 station_ip 37.129.186.95 129623 port 250 129623 unique_id port 129623 remote_ip 10.8.0.178 129626 username amirabbas 129626 unique_id port 129626 terminate_cause User-Request 129626 bytes_out 3559713 129626 bytes_in 80637655 129626 station_ip 188.245.89.219 129626 port 15730214 129626 nas_port_type Virtual 129626 remote_ip 5.5.5.252 129630 username khalili 129630 mac 129630 bytes_out 4086358 129630 bytes_in 35271160 129630 station_ip 5.119.158.105 129630 port 240 129630 unique_id port 129630 remote_ip 10.8.0.86 129634 username barzegar 129634 mac 129634 bytes_out 2323 129634 bytes_in 4700 129634 station_ip 5.120.64.145 129634 port 158 129634 unique_id port 129634 remote_ip 10.8.1.174 129636 username barzegar 129636 mac 129636 bytes_out 0 129636 bytes_in 0 129636 station_ip 5.120.64.145 129636 port 247 129636 unique_id port 129636 remote_ip 10.8.0.234 129638 username amir 129638 mac 129638 bytes_out 93563 129638 bytes_in 505682 129638 station_ip 46.225.232.184 129638 port 244 129638 unique_id port 129638 remote_ip 10.8.0.50 129642 username saeed9658 129642 mac 129642 bytes_out 0 129642 bytes_in 0 129642 station_ip 5.119.106.59 129642 port 155 129642 unique_id port 129642 remote_ip 10.8.1.210 129648 username aminvpn 129648 mac 129648 bytes_out 0 129648 bytes_in 0 129648 station_ip 113.203.73.99 129648 port 250 129648 unique_id port 129648 remote_ip 10.8.0.14 129652 username sedighe 129652 mac 129652 bytes_out 192910 129652 bytes_in 523790 129652 station_ip 37.129.95.154 129652 port 248 129652 unique_id port 129652 remote_ip 10.8.0.146 129659 username aminvpn 129659 mac 129659 bytes_out 0 129659 bytes_in 0 129659 station_ip 113.203.73.99 129659 port 247 129659 unique_id port 129659 remote_ip 10.8.0.14 129660 username aminvpn 129660 mac 129660 bytes_out 0 129660 bytes_in 0 129660 station_ip 113.203.73.99 129660 port 241 129660 unique_id port 129660 remote_ip 10.8.0.14 129662 username mohammadmahdi 129662 kill_reason Another user logged on this global unique id 129662 mac 129662 bytes_out 0 129662 bytes_in 0 129662 station_ip 5.120.170.243 129662 port 252 129662 unique_id port 129663 username amir 129663 mac 129663 bytes_out 253358 129663 bytes_in 1481706 129663 station_ip 46.225.232.184 129663 port 244 129663 unique_id port 129663 remote_ip 10.8.0.50 129670 username jafari 129670 kill_reason Another user logged on this global unique id 129632 bytes_out 0 129632 bytes_in 0 129632 station_ip 89.47.158.95 129632 port 156 129632 unique_id port 129633 username barzegar 129633 mac 129633 bytes_out 0 129633 bytes_in 0 129633 station_ip 5.120.64.145 129633 port 244 129633 unique_id port 129633 remote_ip 10.8.0.234 129635 username khalili 129635 kill_reason Another user logged on this global unique id 129635 mac 129635 bytes_out 0 129635 bytes_in 0 129635 station_ip 5.119.158.105 129635 port 242 129635 unique_id port 129635 remote_ip 10.8.0.86 129639 username barzegar 129639 mac 129639 bytes_out 0 129639 bytes_in 0 129639 station_ip 5.120.64.145 129639 port 241 129639 unique_id port 129639 remote_ip 10.8.0.234 129644 username aminvpn 129644 mac 129644 bytes_out 0 129644 bytes_in 0 129644 station_ip 113.203.73.99 129644 port 247 129644 unique_id port 129644 remote_ip 10.8.0.14 129647 username barzegar 129647 mac 129647 bytes_out 0 129647 bytes_in 0 129647 station_ip 5.120.64.145 129647 port 241 129647 unique_id port 129647 remote_ip 10.8.0.234 129655 username aminvpn 129655 mac 129655 bytes_out 0 129655 bytes_in 0 129655 station_ip 113.203.73.99 129655 port 247 129655 unique_id port 129655 remote_ip 10.8.0.14 129657 username aminvpn 129657 mac 129657 bytes_out 0 129657 bytes_in 0 129657 station_ip 113.203.73.99 129657 port 247 129657 unique_id port 129657 remote_ip 10.8.0.14 129658 username aminvpn 129658 mac 129658 bytes_out 0 129658 bytes_in 0 129658 station_ip 113.203.73.99 129658 port 241 129658 unique_id port 129658 remote_ip 10.8.0.14 129665 username aminvpn 129665 mac 129665 bytes_out 0 129665 bytes_in 0 129665 station_ip 113.203.73.99 129665 port 241 129665 unique_id port 129665 remote_ip 10.8.0.14 129669 username aminvpn 129669 mac 129669 bytes_out 0 129669 bytes_in 0 129669 station_ip 113.203.73.99 129669 port 241 129669 unique_id port 129669 remote_ip 10.8.0.14 129671 username amirabbas 129671 unique_id port 129671 terminate_cause User-Request 129671 bytes_out 8190430 129671 bytes_in 218638338 129671 station_ip 188.245.89.219 129671 port 15730218 129671 nas_port_type Virtual 129671 remote_ip 5.5.5.15 129672 username mohammadmahdi 129672 kill_reason Another user logged on this global unique id 129672 mac 129672 bytes_out 0 129672 bytes_in 0 129672 station_ip 5.120.170.243 129672 port 252 129672 unique_id port 129676 username aminvpn 129676 mac 129676 bytes_out 18614 129676 bytes_in 34797 129676 station_ip 113.203.73.99 129676 port 244 129676 unique_id port 129676 remote_ip 10.8.0.14 129678 username jafari 129678 mac 129678 bytes_out 0 129678 bytes_in 0 129678 station_ip 89.47.158.95 129678 port 156 129678 unique_id port 129680 username yahodi 129680 kill_reason Another user logged on this global unique id 129680 mac 129680 bytes_out 0 129680 bytes_in 0 129680 station_ip 83.122.220.71 129680 port 247 129680 unique_id port 129680 remote_ip 10.8.0.202 129681 username aminvpn 129681 mac 129681 bytes_out 0 129681 bytes_in 0 129681 station_ip 113.203.73.99 129681 port 244 129681 unique_id port 129681 remote_ip 10.8.0.14 129682 username aminvpn 129682 mac 129682 bytes_out 0 129682 bytes_in 0 129682 station_ip 113.203.73.99 129682 port 248 129682 unique_id port 129682 remote_ip 10.8.0.14 129683 username aminvpn 129683 mac 129683 bytes_out 0 129683 bytes_in 0 129683 station_ip 113.203.73.99 129683 port 244 129683 unique_id port 129683 remote_ip 10.8.0.14 129685 username sabaghnezhad 129685 mac 129650 unique_id port 129650 remote_ip 10.8.0.14 129651 username aminvpn 129651 mac 129651 bytes_out 0 129651 bytes_in 0 129651 station_ip 113.203.73.99 129651 port 241 129651 unique_id port 129651 remote_ip 10.8.0.14 129653 username aminvpn 129653 mac 129653 bytes_out 0 129653 bytes_in 0 129653 station_ip 113.203.73.99 129653 port 247 129653 unique_id port 129653 remote_ip 10.8.0.14 129654 username aminvpn 129654 mac 129654 bytes_out 0 129654 bytes_in 0 129654 station_ip 113.203.73.99 129654 port 241 129654 unique_id port 129654 remote_ip 10.8.0.14 129656 username aminvpn 129656 mac 129656 bytes_out 0 129656 bytes_in 0 129656 station_ip 113.203.73.99 129656 port 241 129656 unique_id port 129656 remote_ip 10.8.0.14 129661 username moradi 129661 mac 129661 bytes_out 0 129661 bytes_in 0 129661 station_ip 46.225.214.186 129661 port 157 129661 unique_id port 129661 remote_ip 10.8.1.202 129664 username aminvpn 129664 mac 129664 bytes_out 0 129664 bytes_in 0 129664 station_ip 113.203.73.99 129664 port 247 129664 unique_id port 129664 remote_ip 10.8.0.14 129666 username mostafa_es78 129666 unique_id port 129666 terminate_cause User-Request 129666 bytes_out 5420412 129666 bytes_in 45228567 129666 station_ip 5.126.21.185 129666 port 15730217 129666 nas_port_type Virtual 129666 remote_ip 5.5.5.255 129667 username barzegar 129667 mac 129667 bytes_out 0 129667 bytes_in 0 129667 station_ip 5.120.64.145 129667 port 155 129667 unique_id port 129667 remote_ip 10.8.1.174 129668 username aminvpn 129668 mac 129668 bytes_out 0 129668 bytes_in 0 129668 station_ip 113.203.73.99 129668 port 244 129668 unique_id port 129668 remote_ip 10.8.0.14 129673 username barzegar 129673 mac 129673 bytes_out 0 129673 bytes_in 0 129673 station_ip 5.120.64.145 129673 port 250 129673 unique_id port 129673 remote_ip 10.8.0.234 129675 username barzegar 129675 mac 129675 bytes_out 0 129675 bytes_in 0 129675 station_ip 5.120.64.145 129675 port 248 129675 unique_id port 129675 remote_ip 10.8.0.234 129677 username aminvpn 129677 mac 129677 bytes_out 0 129677 bytes_in 0 129677 station_ip 113.203.73.99 129677 port 248 129677 unique_id port 129677 remote_ip 10.8.0.14 129679 username mohammadmahdi 129679 kill_reason Another user logged on this global unique id 129679 mac 129679 bytes_out 0 129679 bytes_in 0 129679 station_ip 5.120.170.243 129679 port 252 129679 unique_id port 129688 username moradi 129688 mac 129688 bytes_out 34708 129688 bytes_in 44568 129688 station_ip 113.203.1.194 129688 port 154 129688 unique_id port 129688 remote_ip 10.8.1.202 129689 username aminvpn 129689 mac 129689 bytes_out 0 129689 bytes_in 0 129689 station_ip 113.203.73.99 129689 port 250 129689 unique_id port 129689 remote_ip 10.8.0.14 129690 username aminvpn 129690 mac 129690 bytes_out 0 129690 bytes_in 0 129690 station_ip 113.203.73.99 129690 port 254 129690 unique_id port 129690 remote_ip 10.8.0.14 129691 username aminvpn 129691 mac 129691 bytes_out 0 129691 bytes_in 0 129691 station_ip 113.203.73.99 129691 port 250 129691 unique_id port 129691 remote_ip 10.8.0.14 129693 username aminvpn 129693 mac 129693 bytes_out 0 129693 bytes_in 0 129693 station_ip 113.203.73.99 129693 port 254 129693 unique_id port 129693 remote_ip 10.8.0.14 129695 username moradi 129695 mac 129695 bytes_out 0 129695 bytes_in 0 129695 station_ip 113.203.1.194 129695 port 240 129695 unique_id port 129695 remote_ip 10.8.0.250 129670 mac 129670 bytes_out 0 129670 bytes_in 0 129670 station_ip 89.47.158.95 129670 port 156 129670 unique_id port 129674 username amir 129674 mac 129674 bytes_out 0 129674 bytes_in 0 129674 station_ip 46.225.232.184 129674 port 248 129674 unique_id port 129674 remote_ip 10.8.0.50 129684 username aminvpn 129684 mac 129684 bytes_out 0 129684 bytes_in 0 129684 station_ip 113.203.73.99 129684 port 250 129684 unique_id port 129684 remote_ip 10.8.0.14 129686 username aminvpn 129686 mac 129686 bytes_out 0 129686 bytes_in 0 129686 station_ip 113.203.73.99 129686 port 254 129686 unique_id port 129686 remote_ip 10.8.0.14 129692 username vanila 129692 mac 129692 bytes_out 2926538 129692 bytes_in 751796 129692 station_ip 37.129.186.95 129692 port 253 129692 unique_id port 129692 remote_ip 10.8.0.178 129694 username aminvpn 129694 mac 129694 bytes_out 0 129694 bytes_in 0 129694 station_ip 113.203.73.99 129694 port 250 129694 unique_id port 129694 remote_ip 10.8.0.14 129699 username khalili 129699 mac 129699 bytes_out 0 129699 bytes_in 0 129699 station_ip 5.119.158.105 129699 port 242 129699 unique_id port 129701 username aminvpn 129701 mac 129701 bytes_out 0 66567 username arezoo 66567 kill_reason Maximum check online fails reached 66567 mac 5.237.65.11:49276: Unknown host 66567 bytes_out 0 66567 bytes_in 0 66567 station_ip 5.237.65.11:49276 66567 port 1018 66567 unique_id port 129701 bytes_in 0 129701 station_ip 113.203.73.99 129701 port 254 129701 unique_id port 129701 remote_ip 10.8.0.14 129703 username sedighe 129703 mac 129703 bytes_out 247931 129703 bytes_in 838411 129703 station_ip 37.129.95.154 129703 port 241 129703 unique_id port 129703 remote_ip 10.8.0.146 129705 username yahodi 129705 kill_reason Another user logged on this global unique id 129705 mac 129705 bytes_out 0 129705 bytes_in 0 129705 station_ip 83.122.220.71 129705 port 247 129705 unique_id port 129706 username aminvpn 129706 mac 129706 bytes_out 0 129706 bytes_in 0 129706 station_ip 113.203.73.99 129706 port 241 129706 unique_id port 129706 remote_ip 10.8.0.14 129707 username aminvpn 129707 mac 129707 bytes_out 0 129707 bytes_in 0 129707 station_ip 113.203.73.99 129707 port 253 129707 unique_id port 129707 remote_ip 10.8.0.14 129710 username rezasekonji 129710 kill_reason Relative expiration date has reached 129710 mac 129710 bytes_out 0 129710 bytes_in 0 129710 station_ip 37.129.158.96 129710 port 253 129710 unique_id port 129713 username aminvpn 129713 mac 129713 bytes_out 0 129713 bytes_in 0 129713 station_ip 113.203.73.99 129713 port 253 129713 unique_id port 129713 remote_ip 10.8.0.14 129714 username aminvpn 129714 mac 129714 bytes_out 0 129714 bytes_in 0 129714 station_ip 113.203.73.99 129714 port 241 129714 unique_id port 129714 remote_ip 10.8.0.14 129717 username aminvpn 129717 mac 129717 bytes_out 0 129717 bytes_in 0 129717 station_ip 113.203.73.99 129717 port 241 129717 unique_id port 129717 remote_ip 10.8.0.14 129719 username farhad2 129719 mac 129719 bytes_out 268804 129719 bytes_in 1366930 129719 station_ip 5.120.91.129 129719 port 154 129719 unique_id port 129719 remote_ip 10.8.1.222 129723 username aminvpn 129723 mac 129723 bytes_out 0 129723 bytes_in 0 129723 station_ip 113.203.73.99 129723 port 254 129723 unique_id port 129723 remote_ip 10.8.0.14 129725 username farhad2 129725 mac 129725 bytes_out 0 129725 bytes_in 0 129725 station_ip 5.120.91.129 129685 bytes_out 0 129685 bytes_in 0 129685 station_ip 83.123.198.137 129685 port 240 129685 unique_id port 129685 remote_ip 10.8.0.186 129687 username aminvpn 129687 mac 129687 bytes_out 0 129687 bytes_in 0 129687 station_ip 113.203.73.99 129687 port 240 129687 unique_id port 129687 remote_ip 10.8.0.14 129696 username aminvpn 129696 mac 129696 bytes_out 0 129696 bytes_in 0 129696 station_ip 113.203.73.99 129696 port 254 129696 unique_id port 129696 remote_ip 10.8.0.14 129697 username aminvpn 129697 mac 129697 bytes_out 0 129697 bytes_in 0 129697 station_ip 113.203.73.99 129697 port 240 129697 unique_id port 129697 remote_ip 10.8.0.14 129700 username farhad2 129700 mac 129700 bytes_out 0 129700 bytes_in 0 129700 station_ip 5.120.91.129 129700 port 253 129700 unique_id port 129700 remote_ip 10.8.0.190 129702 username aminvpn 129702 mac 129702 bytes_out 0 129702 bytes_in 0 129702 station_ip 113.203.73.99 129702 port 240 129702 unique_id port 129702 remote_ip 10.8.0.14 129709 username rezasekonji 129709 kill_reason Relative expiration date has reached 129709 mac 129709 bytes_out 0 129709 bytes_in 0 129709 station_ip 37.129.158.96 129709 port 253 129709 unique_id port 129712 username farhad2 129712 mac 129712 bytes_out 0 129712 bytes_in 0 129712 station_ip 5.120.91.129 129712 port 154 129712 unique_id port 129712 remote_ip 10.8.1.222 129715 username moradi 129715 mac 129715 bytes_out 0 129715 bytes_in 0 129715 station_ip 113.203.1.194 129715 port 250 129715 unique_id port 129715 remote_ip 10.8.0.250 129716 username aminvpn 129716 mac 129716 bytes_out 0 129716 bytes_in 0 129716 station_ip 113.203.73.99 129716 port 253 129716 unique_id port 129716 remote_ip 10.8.0.14 129720 username aminvpn 129720 mac 129720 bytes_out 0 129720 bytes_in 0 129720 station_ip 113.203.73.99 129720 port 253 129720 unique_id port 129720 remote_ip 10.8.0.14 129722 username farhad2 129722 mac 129722 bytes_out 0 129722 bytes_in 0 129722 station_ip 5.120.91.129 129722 port 253 129722 unique_id port 129722 remote_ip 10.8.0.190 129727 username farhad2 129727 kill_reason Maximum check online fails reached 129727 mac 129727 bytes_out 0 129727 bytes_in 0 129727 station_ip 5.120.91.129 129727 port 156 129727 unique_id port 129728 username aminvpn 129728 mac 129728 bytes_out 0 129728 bytes_in 0 129728 station_ip 113.203.73.99 129728 port 240 129728 unique_id port 129728 remote_ip 10.8.0.14 129730 username aminvpn 129730 mac 129730 bytes_out 0 129730 bytes_in 0 129730 station_ip 113.203.73.99 129730 port 253 129730 unique_id port 129730 remote_ip 10.8.0.14 129734 username farhad2 129734 mac 129734 bytes_out 0 129734 bytes_in 0 129734 station_ip 5.120.91.129 129734 port 250 129734 unique_id port 129734 remote_ip 10.8.0.190 129739 username barzegar 129739 kill_reason Maximum check online fails reached 129739 mac 129739 bytes_out 0 129739 bytes_in 0 129739 station_ip 5.120.64.145 129739 port 240 129739 unique_id port 129741 username barzegar 129741 mac 129741 bytes_out 0 129741 bytes_in 0 129741 station_ip 5.120.64.145 129741 port 157 129741 unique_id port 129741 remote_ip 10.8.1.174 129743 username yahodi 129743 kill_reason Another user logged on this global unique id 129743 mac 129743 bytes_out 0 129743 bytes_in 0 129743 station_ip 83.122.220.71 129743 port 247 129743 unique_id port 129744 username alihosseini1 129744 mac 129744 bytes_out 0 129744 bytes_in 0 129698 username barzegar 129698 mac 129698 bytes_out 0 129698 bytes_in 0 129698 station_ip 5.120.64.145 129698 port 157 129698 unique_id port 129698 remote_ip 10.8.1.174 129704 username aminvpn 129704 mac 129704 bytes_out 0 129704 bytes_in 0 129704 station_ip 113.203.73.99 129704 port 242 129704 unique_id port 129704 remote_ip 10.8.0.14 129708 username rezasekonji 129708 kill_reason Relative expiration date has reached 129708 mac 129708 bytes_out 0 129708 bytes_in 0 129708 station_ip 37.129.158.96 129708 port 253 129708 unique_id port 129711 username aminvpn 129711 mac 129711 bytes_out 0 129711 bytes_in 0 129711 station_ip 113.203.73.99 129711 port 241 129711 unique_id port 129711 remote_ip 10.8.0.14 129718 username aminvpn 129718 mac 129718 bytes_out 0 129718 bytes_in 0 129718 station_ip 113.203.73.99 129718 port 250 129718 unique_id port 129718 remote_ip 10.8.0.14 129721 username aminvpn 129721 mac 129721 bytes_out 0 129721 bytes_in 0 129721 station_ip 113.203.73.99 129721 port 250 129721 unique_id port 129721 remote_ip 10.8.0.14 129724 username sedighe 129724 mac 129724 bytes_out 0 129724 bytes_in 0 129724 station_ip 37.129.95.154 129724 port 240 129724 unique_id port 129724 remote_ip 10.8.0.146 129726 username aminvpn 129726 mac 129726 bytes_out 0 129726 bytes_in 0 129726 station_ip 113.203.73.99 129726 port 250 129726 unique_id port 129726 remote_ip 10.8.0.14 129729 username barzegar 129729 mac 129729 bytes_out 0 129729 bytes_in 0 129729 station_ip 5.120.64.145 129729 port 242 129729 unique_id port 129729 remote_ip 10.8.0.234 129732 username aminvpn 129732 mac 129732 bytes_out 0 129732 bytes_in 0 129732 station_ip 113.203.73.99 129732 port 240 129732 unique_id port 129732 remote_ip 10.8.0.14 129736 username saeed9658 129736 mac 129736 bytes_out 0 129736 bytes_in 0 129736 station_ip 5.119.106.59 129736 port 155 129736 unique_id port 129736 remote_ip 10.8.1.210 129738 username aminvpn 129738 mac 129738 bytes_out 0 129738 bytes_in 0 129738 station_ip 113.203.73.99 129738 port 253 129738 unique_id port 129738 remote_ip 10.8.0.14 129748 username milan 129748 kill_reason Another user logged on this global unique id 129748 mac 129748 bytes_out 0 129748 bytes_in 0 129748 station_ip 5.119.229.52 66628 username arezoo 66628 kill_reason Another user logged on this global unique id 66628 mac 5.238.63.249:63432: Unknown host 66628 bytes_out 0 66628 bytes_in 0 66628 station_ip 5.238.63.249:63432 66628 port 1018 66628 unique_id port 129748 port 241 129748 unique_id port 129748 remote_ip 10.8.0.218 129752 username yahodi 129752 kill_reason Another user logged on this global unique id 129752 mac 129752 bytes_out 0 129752 bytes_in 0 129752 station_ip 83.122.220.71 129752 port 247 129752 unique_id port 129755 username moradi 129755 mac 129755 bytes_out 59173 129755 bytes_in 146305 129755 station_ip 83.123.204.220 129755 port 251 129755 unique_id port 129755 remote_ip 10.8.0.250 129756 username hoorieh 129756 mac 129756 bytes_out 724406 129756 bytes_in 13885997 129756 station_ip 5.119.75.111 129756 port 250 129756 unique_id port 129756 remote_ip 10.8.0.38 129757 username milan 129757 kill_reason Another user logged on this global unique id 129757 mac 129757 bytes_out 0 129757 bytes_in 0 129757 station_ip 5.119.229.52 129757 port 241 129757 unique_id port 129760 username alihosseini1 129760 mac 129760 bytes_out 0 129760 bytes_in 0 129760 station_ip 5.119.221.174 129760 port 157 129760 unique_id port 129725 port 253 129725 unique_id port 129725 remote_ip 10.8.0.190 129731 username farhad2 129731 mac 129731 bytes_out 237284 129731 bytes_in 1836732 129731 station_ip 5.120.91.129 129731 port 250 129731 unique_id port 129731 remote_ip 10.8.0.190 129733 username amir 129733 kill_reason Another user logged on this global unique id 129733 mac 129733 bytes_out 0 129733 bytes_in 0 129733 station_ip 46.225.232.184 129733 port 244 129733 unique_id port 129733 remote_ip 10.8.0.50 129735 username aminvpn 129735 mac 129735 bytes_out 0 129735 bytes_in 0 129735 station_ip 113.203.73.99 129735 port 242 129735 unique_id port 129735 remote_ip 10.8.0.14 129737 username farhad2 129737 mac 129737 bytes_out 0 129737 bytes_in 0 129737 station_ip 5.120.91.129 129737 port 250 129737 unique_id port 129737 remote_ip 10.8.0.190 129740 username khademi 129740 mac 129740 bytes_out 0 129740 bytes_in 0 129740 station_ip 113.203.124.121 129740 port 251 129740 unique_id port 129740 remote_ip 10.8.0.10 129742 username aminvpn 129742 mac 129742 bytes_out 0 129742 bytes_in 0 129742 station_ip 113.203.73.99 129742 port 242 129742 unique_id port 129742 remote_ip 10.8.0.14 129745 username barzegar 129745 mac 129745 bytes_out 0 129745 bytes_in 0 129745 station_ip 5.120.64.145 129745 port 155 129745 unique_id port 129745 remote_ip 10.8.1.174 129747 username aminvpn 129747 mac 129747 bytes_out 10501 129747 bytes_in 28365 129747 station_ip 113.203.73.99 129747 port 242 129747 unique_id port 129747 remote_ip 10.8.0.14 129749 username farhad2 129749 mac 129749 bytes_out 0 129749 bytes_in 0 129749 station_ip 5.120.91.129 129749 port 250 129749 unique_id port 129749 remote_ip 10.8.0.190 129753 username moradi 129753 mac 129753 bytes_out 0 129753 bytes_in 0 129753 station_ip 83.123.204.220 129753 port 154 129753 unique_id port 129753 remote_ip 10.8.1.202 129759 username yahodi 129759 mac 129759 bytes_out 0 129759 bytes_in 0 129759 station_ip 83.122.220.71 129759 port 247 129759 unique_id port 129762 username milan 129762 kill_reason Another user logged on this global unique id 129762 mac 129762 bytes_out 0 129762 bytes_in 0 129762 station_ip 5.119.229.52 129762 port 241 129762 unique_id port 129764 username mostafa_es78 129764 unique_id port 129764 terminate_cause User-Request 129764 bytes_out 167156 129764 bytes_in 2620318 129764 station_ip 5.126.21.185 129764 port 15730221 129764 nas_port_type Virtual 129764 remote_ip 5.5.5.252 129766 username mosi 129766 kill_reason Another user logged on this global unique id 129766 mac 129766 bytes_out 0 129766 bytes_in 0 129766 station_ip 151.235.98.140 129766 port 237 129766 unique_id port 129767 username mohammadmahdi 129767 kill_reason Another user logged on this global unique id 129767 mac 129767 bytes_out 0 129767 bytes_in 0 129767 station_ip 5.120.170.243 129767 port 252 129767 unique_id port 129772 username amir 129772 kill_reason Another user logged on this global unique id 129772 mac 129772 bytes_out 0 129772 bytes_in 0 129772 station_ip 46.225.232.184 129772 port 244 129772 unique_id port 129774 username mosi 129774 kill_reason Another user logged on this global unique id 129774 mac 129774 bytes_out 0 129774 bytes_in 0 129774 station_ip 151.235.98.140 129774 port 237 129774 unique_id port 129776 username alihosseini1 129776 mac 129776 bytes_out 0 129776 bytes_in 0 129776 station_ip 5.119.221.174 129776 port 255 129776 unique_id port 129776 remote_ip 10.8.0.166 129777 username zare 129777 mac 129777 bytes_out 0 129744 station_ip 5.120.165.227 129744 port 248 129744 unique_id port 129744 remote_ip 10.8.0.166 129746 username aminvpn 129746 mac 129746 bytes_out 29291 129746 bytes_in 50369 129746 station_ip 113.203.73.99 129746 port 251 129746 unique_id port 129746 remote_ip 10.8.0.14 129750 username barzegar 129750 kill_reason Maximum check online fails reached 129750 mac 129750 bytes_out 0 129750 bytes_in 0 129750 station_ip 5.120.64.145 129750 port 242 129750 unique_id port 129751 username moradi 129751 mac 129751 bytes_out 869524 129751 bytes_in 814482 129751 station_ip 113.203.1.194 129751 port 154 129751 unique_id port 129751 remote_ip 10.8.1.202 129754 username barzegar 129754 mac 129754 bytes_out 0 129754 bytes_in 0 129754 station_ip 5.120.64.145 129754 port 253 129754 unique_id port 129754 remote_ip 10.8.0.234 129758 username amir 129758 kill_reason Another user logged on this global unique id 129758 mac 129758 bytes_out 0 129758 bytes_in 0 129758 station_ip 46.225.232.184 129758 port 244 129758 unique_id port 129763 username alihosseini1 129763 mac 129763 bytes_out 0 129763 bytes_in 0 129763 station_ip 5.119.221.174 129763 port 255 129763 unique_id port 129763 remote_ip 10.8.0.166 129768 username zare 129768 mac 129768 bytes_out 297911 129768 bytes_in 3155824 129768 station_ip 37.27.22.122 129768 port 258 129768 unique_id port 129768 remote_ip 10.8.0.18 129771 username zare 129771 mac 129771 bytes_out 558743 129771 bytes_in 8256139 129771 station_ip 37.27.22.122 129771 port 241 129771 unique_id port 129771 remote_ip 10.8.0.18 129778 username zare 129778 mac 129778 bytes_out 0 129778 bytes_in 0 129778 station_ip 37.27.22.122 129778 port 251 129778 unique_id port 129778 remote_ip 10.8.0.18 129781 username zare 129781 mac 129781 bytes_out 0 129781 bytes_in 0 129781 station_ip 37.27.22.122 129781 port 255 129781 unique_id port 129781 remote_ip 10.8.0.18 129782 username zare 129782 mac 129782 bytes_out 33968 129782 bytes_in 92545 129782 station_ip 37.27.22.122 129782 port 255 129782 unique_id port 129782 remote_ip 10.8.0.18 129785 username vanila 129785 mac 129785 bytes_out 10594879 129785 bytes_in 6823192 129785 station_ip 37.129.173.231 129785 port 241 129785 unique_id port 129785 remote_ip 10.8.0.178 129790 username zare 129790 mac 129790 bytes_out 0 129790 bytes_in 0 129790 station_ip 37.27.22.122 129790 port 241 129790 unique_id port 129790 remote_ip 10.8.0.18 129797 username farhad2 129797 mac 129797 bytes_out 7696028 129797 bytes_in 48409811 129797 station_ip 5.120.91.129 129797 port 248 129797 unique_id port 129797 remote_ip 10.8.0.190 129798 username irannezhad 129798 mac 129798 bytes_out 0 129798 bytes_in 0 129798 station_ip 37.129.66.181 129798 port 255 129798 unique_id port 129803 username irannezhad 129803 mac 129803 bytes_out 127100 129803 bytes_in 2487954 129803 station_ip 37.129.66.181 129803 port 252 129803 unique_id port 129803 remote_ip 10.8.0.182 129805 username farhad2 129805 mac 129805 bytes_out 339146 129805 bytes_in 2746961 129805 station_ip 5.120.91.129 129805 port 248 129805 unique_id port 129805 remote_ip 10.8.0.190 129808 username zare 129808 mac 129808 bytes_out 20836 129808 bytes_in 35043 129808 station_ip 37.27.22.122 129808 port 252 129808 unique_id port 129808 remote_ip 10.8.0.18 129809 username mosi 129809 kill_reason Another user logged on this global unique id 129809 mac 129809 bytes_out 0 129809 bytes_in 0 129809 station_ip 151.235.98.140 129760 remote_ip 10.8.1.106 129761 username alihosseini1 129761 mac 129761 bytes_out 0 129761 bytes_in 0 129761 station_ip 5.119.221.174 129761 port 155 129761 unique_id port 129761 remote_ip 10.8.1.106 129765 username zare 129765 mac 129765 bytes_out 0 129765 bytes_in 0 129765 station_ip 37.27.22.122 129765 port 258 129765 unique_id port 129765 remote_ip 10.8.0.18 129769 username milan 129769 mac 129769 bytes_out 0 129769 bytes_in 0 129769 station_ip 5.119.229.52 129769 port 241 129769 unique_id port 129770 username khademi 129770 kill_reason Another user logged on this global unique id 129770 mac 129770 bytes_out 0 129770 bytes_in 0 129770 station_ip 113.203.124.121 129770 port 250 129770 unique_id port 129770 remote_ip 10.8.0.10 129773 username sedighe 129773 mac 129773 bytes_out 1306053 129773 bytes_in 17281190 129773 station_ip 37.129.95.154 129773 port 257 129773 unique_id port 129773 remote_ip 10.8.0.146 129775 username houshang 129775 mac 129775 bytes_out 925757 129775 bytes_in 7158506 129775 station_ip 5.119.30.28 129775 port 251 129775 unique_id port 129775 remote_ip 10.8.0.22 129779 username alireza 129779 unique_id port 129779 terminate_cause Lost-Carrier 129779 bytes_out 10816730 129779 bytes_in 249278998 129779 station_ip 5.119.219.235 129779 port 15730219 129779 nas_port_type Virtual 129779 remote_ip 5.5.5.253 129783 username mosi 129783 kill_reason Another user logged on this global unique id 129783 mac 129783 bytes_out 0 129783 bytes_in 0 129783 station_ip 151.235.98.140 129783 port 237 129783 unique_id port 129786 username zare 129786 mac 129786 bytes_out 18695 129786 bytes_in 71559 129786 station_ip 37.27.22.122 129786 port 259 129786 unique_id port 129786 remote_ip 10.8.0.18 129788 username zare 129788 mac 129788 bytes_out 0 129788 bytes_in 0 129788 station_ip 37.27.22.122 129788 port 241 129788 unique_id port 129788 remote_ip 10.8.0.18 129789 username amir 129789 kill_reason Another user logged on this global unique id 129789 mac 129789 bytes_out 0 129789 bytes_in 0 129789 station_ip 46.225.232.184 129789 port 244 129789 unique_id port 129792 username zare 129792 mac 129792 bytes_out 16127 129792 bytes_in 35555 129792 station_ip 37.27.22.122 129792 port 241 129792 unique_id port 129792 remote_ip 10.8.0.18 129795 username irannezhad 129795 kill_reason Another user logged on this global unique id 129795 mac 129795 bytes_out 0 129795 bytes_in 0 129795 station_ip 37.129.66.181 129795 port 255 129795 unique_id port 129796 username alihosseini1 129796 mac 129796 bytes_out 1573360 129796 bytes_in 27344073 129796 station_ip 5.119.212.73 129796 port 155 129796 unique_id port 129796 remote_ip 10.8.1.106 129801 username alihosseini1 129801 mac 129801 bytes_out 0 129801 bytes_in 0 129801 station_ip 5.119.212.73 129801 port 251 129801 unique_id port 129801 remote_ip 10.8.0.166 129806 username aminvpn 129806 unique_id port 129806 terminate_cause Lost-Carrier 129806 bytes_out 4568491 129806 bytes_in 99550690 129806 station_ip 5.119.6.232 129806 port 15730222 129806 nas_port_type Virtual 129806 remote_ip 5.5.5.252 129811 username irannezhad 129811 kill_reason Another user logged on this global unique id 129811 mac 129811 bytes_out 0 129811 bytes_in 0 129811 station_ip 83.122.227.85 129811 port 255 129811 unique_id port 129811 remote_ip 10.8.0.182 129813 username moradi 129813 mac 129813 bytes_out 0 129813 bytes_in 0 129813 station_ip 83.123.172.36 129813 port 258 129813 unique_id port 129813 remote_ip 10.8.0.250 129815 username alihosseini1 129815 mac 129777 bytes_in 0 129777 station_ip 37.27.22.122 129777 port 241 129777 unique_id port 129777 remote_ip 10.8.0.18 129780 username zare 129780 mac 129780 bytes_out 26757 129780 bytes_in 62317 129780 station_ip 37.27.22.122 129780 port 255 129780 unique_id port 129780 remote_ip 10.8.0.18 129784 username houshang 129784 mac 129784 bytes_out 301792 129784 bytes_in 2036566 129784 station_ip 5.119.30.28 129784 port 251 129784 unique_id port 129784 remote_ip 10.8.0.22 129787 username irannezhad 129787 kill_reason Another user logged on this global unique id 129787 mac 129787 bytes_out 0 129787 bytes_in 0 129787 station_ip 37.129.66.181 129787 port 255 129787 unique_id port 129787 remote_ip 10.8.0.182 129791 username zare 129791 mac 129791 bytes_out 0 129791 bytes_in 0 129791 station_ip 37.27.22.122 129791 port 241 129791 unique_id port 129791 remote_ip 10.8.0.18 129793 username mohammadmahdi 129793 mac 129793 bytes_out 0 129793 bytes_in 0 129793 station_ip 5.120.170.243 129793 port 252 129793 unique_id port 129794 username zare 129794 mac 129794 bytes_out 0 129794 bytes_in 0 129794 station_ip 37.27.22.122 129794 port 241 129794 unique_id port 129794 remote_ip 10.8.0.18 129799 username irannezhad 129799 mac 129799 bytes_out 0 129799 bytes_in 0 129799 station_ip 83.123.115.1 129799 port 251 129799 unique_id port 129799 remote_ip 10.8.0.182 129800 username alihosseini1 129800 mac 129800 bytes_out 0 129800 bytes_in 0 129800 station_ip 5.119.212.73 129800 port 251 129800 unique_id port 129800 remote_ip 10.8.0.166 129802 username zare 129802 mac 129802 bytes_out 41922 129802 bytes_in 104906 129802 station_ip 37.27.22.122 129802 port 241 129802 unique_id port 129802 remote_ip 10.8.0.18 129804 username alihosseini1 129804 mac 129804 bytes_out 0 129804 bytes_in 0 129804 station_ip 5.119.212.73 129804 port 251 129804 unique_id port 129804 remote_ip 10.8.0.166 129807 username irannezhad 129807 mac 129807 bytes_out 472750 129807 bytes_in 8442011 129807 station_ip 37.129.66.181 129807 port 241 129807 unique_id port 129807 remote_ip 10.8.0.182 129810 username saeed9658 129810 mac 129810 bytes_out 2889441 129810 bytes_in 8886310 129810 station_ip 5.119.106.59 129810 port 154 129810 unique_id port 129810 remote_ip 10.8.1.210 129814 username zare 129814 mac 129814 bytes_out 0 129814 bytes_in 0 129814 station_ip 37.27.22.122 129814 port 241 129814 unique_id port 129814 remote_ip 10.8.0.18 129817 username alihosseini1 129817 mac 129817 bytes_out 0 129817 bytes_in 0 129817 station_ip 5.119.158.92 129817 port 259 129817 unique_id port 129817 remote_ip 10.8.0.166 129821 username amir 129821 mac 129821 bytes_out 0 129821 bytes_in 0 129821 station_ip 46.225.232.184 129821 port 244 129821 unique_id port 129823 username farhad2 129823 mac 129823 bytes_out 3997065 129823 bytes_in 35135936 129823 station_ip 5.120.91.129 129823 port 248 129823 unique_id port 129823 remote_ip 10.8.0.190 129824 username zare 129824 mac 129824 bytes_out 0 129824 bytes_in 0 129824 station_ip 37.27.22.122 129824 port 244 129824 unique_id port 129824 remote_ip 10.8.0.18 129826 username zare 129826 mac 129826 bytes_out 0 129826 bytes_in 0 129826 station_ip 37.27.22.122 129826 port 244 129826 unique_id port 129826 remote_ip 10.8.0.18 129827 username amir 129827 mac 129827 bytes_out 92597 129827 bytes_in 522138 129827 station_ip 46.225.232.184 129827 port 241 129827 unique_id port 129809 port 237 129809 unique_id port 129812 username zare 129812 mac 129812 bytes_out 0 129812 bytes_in 0 129812 station_ip 37.27.22.122 129812 port 241 129812 unique_id port 129812 remote_ip 10.8.0.18 129818 username barzegar 129818 mac 129818 bytes_out 168285 129818 bytes_in 1893490 129818 station_ip 5.120.64.145 129818 port 253 129818 unique_id port 129818 remote_ip 10.8.0.234 129820 username zare 129820 mac 129820 bytes_out 11042 129820 bytes_in 25915 129820 station_ip 37.27.22.122 129820 port 241 129820 unique_id port 129820 remote_ip 10.8.0.18 129822 username mosi 129822 kill_reason Another user logged on this global unique id 129822 mac 129822 bytes_out 0 129822 bytes_in 0 129822 station_ip 151.235.98.140 129822 port 237 129822 unique_id port 129825 username zare 129825 mac 129825 bytes_out 0 129825 bytes_in 0 129825 station_ip 37.27.22.122 129825 port 244 129825 unique_id port 129825 remote_ip 10.8.0.18 129828 username aminvpn 129828 mac 129828 bytes_out 901223 129828 bytes_in 7521222 129828 station_ip 113.203.73.99 129828 port 254 129828 unique_id port 129828 remote_ip 10.8.0.14 129829 username saeed9658 129829 mac 129829 bytes_out 0 129829 bytes_in 0 129829 station_ip 5.119.106.59 129829 port 154 129829 unique_id port 129829 remote_ip 10.8.1.210 129832 username farhad2 129832 kill_reason Another user logged on this global unique id 129832 mac 129832 bytes_out 0 129832 bytes_in 0 129832 station_ip 5.120.91.129 129832 port 248 129832 unique_id port 129832 remote_ip 10.8.0.190 129837 username farhad2 129837 mac 129837 bytes_out 0 129837 bytes_in 0 129837 station_ip 5.120.91.129 129837 port 248 129837 unique_id port 129841 username mosi 129841 kill_reason Another user logged on this global unique id 129841 mac 129841 bytes_out 0 129841 bytes_in 0 129841 station_ip 151.235.98.140 129841 port 237 129841 unique_id port 129844 username irannezhad 129844 kill_reason Maximum check online fails reached 66734 username arezoo 66734 kill_reason Another user logged on this global unique id 66734 mac 5.238.63.249:53789: Unknown host 66734 bytes_out 0 66734 bytes_in 0 66734 station_ip 5.238.63.249:53789 66734 port 1017 66734 unique_id port 129844 mac 129844 bytes_out 0 129844 bytes_in 0 129844 station_ip 83.122.227.85 129844 port 155 129844 unique_id port 129846 username zare 129846 mac 129846 bytes_out 0 129846 bytes_in 0 129846 station_ip 37.27.22.122 129846 port 244 129846 unique_id port 129846 remote_ip 10.8.0.18 129848 username forozande 129848 mac 129848 bytes_out 692065 129848 bytes_in 2818292 129848 station_ip 83.122.9.0 129848 port 248 129848 unique_id port 129848 remote_ip 10.8.0.74 129849 username irannezhad 129849 mac 129849 bytes_out 3344 129849 bytes_in 5725 129849 station_ip 83.122.227.85 129849 port 241 129849 unique_id port 129849 remote_ip 10.8.0.182 129852 username zare 129852 mac 129852 bytes_out 0 129852 bytes_in 0 129852 station_ip 37.27.22.122 129852 port 244 129852 unique_id port 129852 remote_ip 10.8.0.18 129856 username irannezhad 129856 mac 129856 bytes_out 0 129856 bytes_in 0 129856 station_ip 83.122.227.85 129856 port 241 129856 unique_id port 129856 remote_ip 10.8.0.182 129858 username zare 129858 mac 129858 bytes_out 21511 129858 bytes_in 55645 129858 station_ip 37.27.22.122 129858 port 244 129858 unique_id port 129858 remote_ip 10.8.0.18 129859 username irannezhad 129859 mac 129859 bytes_out 0 129859 bytes_in 0 129859 station_ip 83.122.227.85 129859 port 154 129815 bytes_out 476381 129815 bytes_in 7891628 129815 station_ip 5.119.212.73 129815 port 251 129815 unique_id port 129815 remote_ip 10.8.0.166 129816 username alihosseini1 129816 mac 129816 bytes_out 0 129816 bytes_in 0 129816 station_ip 5.119.212.73 129816 port 258 129816 unique_id port 129816 remote_ip 10.8.0.166 129819 username zare 129819 mac 129819 bytes_out 22995 129819 bytes_in 35539 129819 station_ip 37.27.22.122 129819 port 241 129819 unique_id port 129819 remote_ip 10.8.0.18 129831 username milan 129831 kill_reason Another user logged on this global unique id 66693 username arezoo 66693 kill_reason Maximum check online fails reached 66693 mac 5.238.63.249:49195: Unknown host 66693 bytes_out 0 66693 bytes_in 0 66693 station_ip 5.238.63.249:49195 66693 port 1017 66693 unique_id port 129831 mac 129831 bytes_out 0 129831 bytes_in 0 129831 station_ip 5.119.229.52 129831 port 252 129831 unique_id port 129831 remote_ip 10.8.0.218 129833 username barzegar 129833 mac 129833 bytes_out 17215 129833 bytes_in 40577 129833 station_ip 5.120.64.145 129833 port 155 129833 unique_id port 129833 remote_ip 10.8.1.174 129835 username zare 66699 username arezoo 66699 kill_reason Maximum check online fails reached 66699 mac 5.238.63.249:50954: Unknown host 66699 bytes_out 0 66699 bytes_in 0 66699 station_ip 5.238.63.249:50954 66699 port 1017 66699 unique_id port 129835 mac 129835 bytes_out 0 129835 bytes_in 0 129835 station_ip 37.27.22.122 129835 port 241 129835 unique_id port 129835 remote_ip 10.8.0.18 129836 username irannezhad 129836 mac 129836 bytes_out 0 129836 bytes_in 0 129836 station_ip 83.122.227.85 129836 port 255 129836 unique_id port 129838 username zare 129838 mac 129838 bytes_out 0 129838 bytes_in 0 129838 station_ip 37.27.22.122 129838 port 244 129838 unique_id port 129838 remote_ip 10.8.0.18 129843 username irannezhad 129843 mac 129843 bytes_out 0 129843 bytes_in 0 129843 station_ip 83.122.227.85 129843 port 159 129843 unique_id port 129843 remote_ip 10.8.1.134 129845 username saeed9658 129845 mac 129845 bytes_out 0 129845 bytes_in 0 129845 station_ip 5.119.106.59 129845 port 154 129845 unique_id port 129845 remote_ip 10.8.1.210 129847 username milan 129847 kill_reason Another user logged on this global unique id 129847 mac 129847 bytes_out 0 129847 bytes_in 0 129847 station_ip 5.119.229.52 129847 port 252 129847 unique_id port 129851 username irannezhad 129851 mac 129851 bytes_out 0 129851 bytes_in 0 129851 station_ip 83.122.227.85 129851 port 154 129851 unique_id port 129851 remote_ip 10.8.1.134 129860 username alihosseini1 129860 kill_reason Another user logged on this global unique id 129860 mac 129860 bytes_out 0 129860 bytes_in 0 129860 station_ip 5.119.158.92 129860 port 258 129860 unique_id port 129860 remote_ip 10.8.0.166 129861 username saeed9658 129861 mac 129861 bytes_out 0 129861 bytes_in 0 129861 station_ip 5.119.106.59 129861 port 244 129861 unique_id port 129861 remote_ip 10.8.0.62 129863 username irannezhad 129863 mac 129863 bytes_out 0 129863 bytes_in 0 129863 station_ip 83.122.227.85 129863 port 244 129863 unique_id port 129863 remote_ip 10.8.0.182 129873 username irannezhad 129873 mac 129873 bytes_out 0 129873 bytes_in 0 129873 station_ip 83.122.227.85 129873 port 157 129873 unique_id port 129873 remote_ip 10.8.1.134 129876 username irannezhad 129876 mac 129876 bytes_out 0 129876 bytes_in 0 129876 station_ip 83.122.227.85 129876 port 157 129876 unique_id port 129876 remote_ip 10.8.1.134 129827 remote_ip 10.8.0.50 129830 username zare 129830 mac 129830 bytes_out 0 129830 bytes_in 0 129830 station_ip 37.27.22.122 129830 port 241 129830 unique_id port 129830 remote_ip 10.8.0.18 129834 username zare 129834 mac 129834 bytes_out 0 129834 bytes_in 0 129834 station_ip 37.27.22.122 129834 port 241 129834 unique_id port 129834 remote_ip 10.8.0.18 129839 username zare 129839 mac 129839 bytes_out 0 129839 bytes_in 0 129839 station_ip 37.27.22.122 129839 port 244 129839 unique_id port 129839 remote_ip 10.8.0.18 129840 username ahmadi 129840 kill_reason Relative expiration date has reached 129840 unique_id port 129840 bytes_out 0 129840 bytes_in 0 129840 station_ip 83.122.171.1 129840 port 15730224 129840 nas_port_type Virtual 129842 username farhad2 129842 mac 129842 bytes_out 0 129842 bytes_in 0 129842 station_ip 5.120.111.101 129842 port 241 129842 unique_id port 129842 remote_ip 10.8.0.190 129850 username zare 129850 mac 129850 bytes_out 0 129850 bytes_in 0 129850 station_ip 37.27.22.122 129850 port 241 129850 unique_id port 129850 remote_ip 10.8.0.18 129853 username saeed9658 129853 mac 129853 bytes_out 0 129853 bytes_in 0 129853 station_ip 5.119.106.59 129853 port 244 129853 unique_id port 129853 remote_ip 10.8.0.62 129854 username amir 129854 mac 129854 bytes_out 55859 129854 bytes_in 212805 129854 station_ip 46.225.232.184 129854 port 241 129854 unique_id port 129854 remote_ip 10.8.0.50 129855 username mohammadjavad 129855 mac 129855 bytes_out 1120679 129855 bytes_in 18469613 129855 station_ip 83.122.4.236 129855 port 251 129855 unique_id port 129855 remote_ip 10.8.0.142 129857 username irannezhad 129857 mac 129857 bytes_out 0 129857 bytes_in 0 129857 station_ip 83.122.227.85 129857 port 241 129857 unique_id port 129857 remote_ip 10.8.0.182 129862 username moradi 129862 kill_reason Another user logged on this global unique id 129862 mac 129862 bytes_out 0 129862 bytes_in 0 129862 station_ip 83.123.160.216 129862 port 248 129862 unique_id port 129862 remote_ip 10.8.0.250 129866 username kordestani 129866 mac 129866 bytes_out 0 129866 bytes_in 0 129866 station_ip 151.235.110.180 129866 port 157 129866 unique_id port 129866 remote_ip 10.8.1.98 129870 username saeed9658 129870 mac 129870 bytes_out 0 129870 bytes_in 0 129870 station_ip 5.119.106.59 129870 port 157 129870 unique_id port 129870 remote_ip 10.8.1.210 129872 username ayobi 129872 mac 129872 bytes_out 1579762 129872 bytes_in 17279053 129872 station_ip 37.27.36.202 129872 port 256 129872 unique_id port 129872 remote_ip 10.8.0.126 129875 username irannezhad 129875 mac 129875 bytes_out 0 129875 bytes_in 0 129875 station_ip 83.122.227.85 129875 port 157 129875 unique_id port 129875 remote_ip 10.8.1.134 129883 username irannezhad 129883 mac 129883 bytes_out 0 129883 bytes_in 0 129883 station_ip 83.122.227.85 129883 port 244 129883 unique_id port 129883 remote_ip 10.8.0.182 129885 username irannezhad 129885 mac 129885 bytes_out 0 129885 bytes_in 0 129885 station_ip 83.122.227.85 129885 port 157 129885 unique_id port 129885 remote_ip 10.8.1.134 129890 username irannezhad 129890 mac 129890 bytes_out 0 129890 bytes_in 0 129890 station_ip 83.122.227.85 129890 port 244 129890 unique_id port 129890 remote_ip 10.8.0.182 129893 username irannezhad 129893 mac 129893 bytes_out 0 129893 bytes_in 0 129893 station_ip 83.122.227.85 129893 port 244 129893 unique_id port 129893 remote_ip 10.8.0.182 129859 unique_id port 129859 remote_ip 10.8.1.134 129864 username irannezhad 129864 mac 129864 bytes_out 0 129864 bytes_in 0 129864 station_ip 83.122.227.85 129864 port 244 129864 unique_id port 129864 remote_ip 10.8.0.182 129865 username irannezhad 129865 mac 129865 bytes_out 0 129865 bytes_in 0 129865 station_ip 83.122.227.85 129865 port 244 129865 unique_id port 129865 remote_ip 10.8.0.182 129867 username irannezhad 129867 kill_reason Maximum check online fails reached 129867 mac 129867 bytes_out 0 129867 bytes_in 0 66731 username arezoo 66731 kill_reason Maximum check online fails reached 66731 mac 5.238.63.249:49220: Unknown host 66731 bytes_out 0 66731 bytes_in 0 66731 station_ip 5.238.63.249:49220 66731 port 1017 66731 unique_id port 129867 station_ip 83.122.227.85 129867 port 154 129867 unique_id port 129868 username irannezhad 129868 mac 129868 bytes_out 0 129868 bytes_in 0 129868 station_ip 83.122.227.85 129868 port 157 129868 unique_id port 129868 remote_ip 10.8.1.134 129869 username irannezhad 129869 mac 129869 bytes_out 0 129869 bytes_in 0 129869 station_ip 83.122.227.85 129869 port 251 129869 unique_id port 129869 remote_ip 10.8.0.182 129871 username mosi 129871 kill_reason Another user logged on this global unique id 129871 mac 129871 bytes_out 0 129871 bytes_in 0 129871 station_ip 151.235.98.140 129871 port 237 129871 unique_id port 129874 username mansour 129874 mac 129874 bytes_out 22745445 129874 bytes_in 314036912 129874 station_ip 5.202.64.80 129874 port 249 129874 unique_id port 129874 remote_ip 10.8.0.30 129879 username irannezhad 129879 mac 129879 bytes_out 0 129879 bytes_in 0 129879 station_ip 83.122.227.85 129879 port 157 129879 unique_id port 129879 remote_ip 10.8.1.134 129882 username irannezhad 129882 mac 129882 bytes_out 0 129882 bytes_in 0 129882 station_ip 83.122.227.85 129882 port 244 129882 unique_id port 129882 remote_ip 10.8.0.182 129884 username mosi 129884 kill_reason Another user logged on this global unique id 129884 mac 129884 bytes_out 0 129884 bytes_in 0 129884 station_ip 151.235.98.140 129884 port 237 129884 unique_id port 129889 username saeed9658 129889 mac 129889 bytes_out 0 129889 bytes_in 0 129889 station_ip 5.119.106.59 129889 port 249 129889 unique_id port 129889 remote_ip 10.8.0.62 129892 username irannezhad 129892 mac 129892 bytes_out 0 129892 bytes_in 0 129892 station_ip 83.122.227.85 129892 port 244 129892 unique_id port 129892 remote_ip 10.8.0.182 129899 username saeed9658 129899 mac 129899 bytes_out 0 129899 bytes_in 0 129899 station_ip 5.119.106.59 129899 port 160 129899 unique_id port 129899 remote_ip 10.8.1.210 129900 username moradi 129900 kill_reason Another user logged on this global unique id 129900 mac 129900 bytes_out 0 129900 bytes_in 0 129900 station_ip 83.123.160.216 129900 port 248 129900 unique_id port 129901 username farhad2 129901 kill_reason Another user logged on this global unique id 129901 mac 129901 bytes_out 0 129901 bytes_in 0 129901 station_ip 5.120.153.172 129901 port 157 129901 unique_id port 129901 remote_ip 10.8.1.222 129904 username farhad2 129904 mac 129904 bytes_out 0 129904 bytes_in 0 129904 station_ip 5.120.153.172 129904 port 157 129904 unique_id port 129906 username alihosseini1 129906 mac 129906 bytes_out 0 129906 bytes_in 0 129906 station_ip 5.119.158.92 129906 port 258 129906 unique_id port 129913 username arash 129913 mac 129913 bytes_out 296183 129913 bytes_in 1885634 129913 station_ip 37.27.2.36 129913 port 250 129877 username irannezhad 129877 mac 129877 bytes_out 0 129877 bytes_in 0 129877 station_ip 83.122.227.85 129877 port 157 129877 unique_id port 129877 remote_ip 10.8.1.134 129878 username irannezhad 129878 mac 129878 bytes_out 0 129878 bytes_in 0 129878 station_ip 83.122.227.85 129878 port 157 129878 unique_id port 129878 remote_ip 10.8.1.134 129880 username moradi 129880 kill_reason Another user logged on this global unique id 129880 mac 129880 bytes_out 0 129880 bytes_in 0 129880 station_ip 83.123.160.216 129880 port 248 129880 unique_id port 129881 username vanila 129881 mac 129881 bytes_out 9200242 129881 bytes_in 7898608 129881 station_ip 37.129.173.231 129881 port 244 129881 unique_id port 129881 remote_ip 10.8.0.178 129886 username irannezhad 129886 mac 129886 bytes_out 0 129886 bytes_in 0 129886 station_ip 83.122.227.85 129886 port 157 129886 unique_id port 129886 remote_ip 10.8.1.134 129887 username irannezhad 129887 mac 129887 bytes_out 0 129887 bytes_in 0 129887 station_ip 83.122.227.85 129887 port 244 129887 unique_id port 129887 remote_ip 10.8.0.182 129888 username irannezhad 129888 mac 129888 bytes_out 0 129888 bytes_in 0 129888 station_ip 83.122.227.85 129888 port 244 129888 unique_id port 129888 remote_ip 10.8.0.182 129891 username mosi 129891 kill_reason Another user logged on this global unique id 129891 mac 129891 bytes_out 0 129891 bytes_in 0 129891 station_ip 151.235.98.140 129891 port 237 129891 unique_id port 129894 username irannezhad 129894 mac 129894 bytes_out 0 129894 bytes_in 0 129894 station_ip 83.122.227.85 129894 port 159 129894 unique_id port 129894 remote_ip 10.8.1.134 129897 username irannezhad 129897 mac 129897 bytes_out 0 129897 bytes_in 0 129897 station_ip 83.122.227.85 129897 port 159 129897 unique_id port 129897 remote_ip 10.8.1.134 129905 username moradi 129905 mac 129905 bytes_out 0 129905 bytes_in 0 129905 station_ip 83.123.160.216 129905 port 248 129905 unique_id port 129911 username khademi 129911 mac 129911 bytes_out 24634 129911 bytes_in 26225 129911 station_ip 113.203.124.121 129911 port 244 129911 unique_id port 129911 remote_ip 10.8.0.10 129915 username mosi 129915 mac 129915 bytes_out 0 129915 bytes_in 0 129915 station_ip 151.235.98.140 129915 port 237 129915 unique_id port 129917 username mosi 129917 kill_reason Another user logged on this global unique id 129917 mac 129917 bytes_out 0 129917 bytes_in 0 129917 station_ip 151.235.98.140 129917 port 237 129917 unique_id port 129917 remote_ip 10.8.0.138 129918 username hamidsalari 129918 kill_reason Another user logged on this global unique id 129918 mac 129918 bytes_out 0 129918 bytes_in 0 129918 station_ip 5.120.87.145 129918 port 250 129918 unique_id port 129918 remote_ip 10.8.0.230 129921 username mohammadjavad 129921 mac 129921 bytes_out 2918969 129921 bytes_in 43785777 129921 station_ip 37.129.27.112 129921 port 249 129921 unique_id port 129921 remote_ip 10.8.0.142 129922 username zare 129922 kill_reason Another user logged on this global unique id 129922 mac 129922 bytes_out 0 129922 bytes_in 0 129922 station_ip 37.27.22.122 129922 port 241 129922 unique_id port 129926 username zare 129926 kill_reason Another user logged on this global unique id 129926 mac 129926 bytes_out 0 129926 bytes_in 0 129926 station_ip 37.27.22.122 129926 port 241 129926 unique_id port 129928 username sabaghnezhad 129928 mac 129928 bytes_out 571651 129928 bytes_in 2345251 129928 station_ip 37.129.158.91 129928 port 257 129928 unique_id port 129895 username saeed9658 129895 mac 129895 bytes_out 0 129895 bytes_in 0 129895 station_ip 5.119.106.59 129895 port 249 129895 unique_id port 129895 remote_ip 10.8.0.62 129896 username irannezhad 129896 mac 129896 bytes_out 0 129896 bytes_in 0 129896 station_ip 83.122.227.85 129896 port 244 129896 unique_id port 129896 remote_ip 10.8.0.182 129898 username khademi 129898 mac 129898 bytes_out 0 129898 bytes_in 0 129898 station_ip 113.203.124.121 129898 port 250 129898 unique_id port 129902 username aminvpn 129902 unique_id port 129902 terminate_cause Lost-Carrier 129902 bytes_out 2079877 129902 bytes_in 32420673 129902 station_ip 109.125.128.116 129902 port 15730226 129902 nas_port_type Virtual 129902 remote_ip 5.5.5.252 129903 username mosi 129903 kill_reason Another user logged on this global unique id 129903 mac 129903 bytes_out 0 129903 bytes_in 0 129903 station_ip 151.235.98.140 129903 port 237 129903 unique_id port 129907 username irannezhad 129907 mac 129907 bytes_out 0 129907 bytes_in 0 129907 station_ip 83.122.227.85 129907 port 159 129907 unique_id port 129907 remote_ip 10.8.1.134 129908 username aminvpn 129908 unique_id port 129908 terminate_cause Lost-Carrier 129908 bytes_out 907643 129908 bytes_in 39002489 129908 station_ip 69.194.73.225 129908 port 15730227 129908 nas_port_type Virtual 129908 remote_ip 5.5.5.251 129909 username farhad2 129909 mac 129909 bytes_out 0 129909 bytes_in 0 129909 station_ip 5.120.153.172 129909 port 157 66776 username arezoo 66776 kill_reason Maximum check online fails reached 66776 mac 5.238.63.249:49259: Unknown host 66776 bytes_out 0 66776 bytes_in 0 66776 station_ip 5.238.63.249:49259 66776 port 1017 66776 unique_id port 129909 unique_id port 129909 remote_ip 10.8.1.222 129910 username aminvpn 129910 unique_id port 129910 terminate_cause User-Request 129910 bytes_out 377110 129910 bytes_in 4874192 129910 station_ip 109.125.128.116 129910 port 15730228 129910 nas_port_type Virtual 129910 remote_ip 5.5.5.252 129912 username farhad2 129912 mac 129912 bytes_out 0 129912 bytes_in 0 129912 station_ip 5.120.153.172 129912 port 157 129912 unique_id port 129912 remote_ip 10.8.1.222 129914 username mosi 129914 kill_reason Another user logged on this global unique id 129914 mac 129914 bytes_out 0 129914 bytes_in 0 129914 station_ip 151.235.98.140 129914 port 237 129914 unique_id port 129916 username zare 129916 kill_reason Another user logged on this global unique id 129916 mac 129916 bytes_out 0 129916 bytes_in 0 129916 station_ip 37.27.22.122 129916 port 241 129916 unique_id port 129916 remote_ip 10.8.0.18 129919 username zare 129919 kill_reason Another user logged on this global unique id 129919 mac 129919 bytes_out 0 129919 bytes_in 0 129919 station_ip 37.27.22.122 129919 port 241 129919 unique_id port 129920 username barzegar 129920 mac 129920 bytes_out 0 129920 bytes_in 0 129920 station_ip 5.120.64.145 129920 port 158 129920 unique_id port 129920 remote_ip 10.8.1.174 129925 username mosi 129925 kill_reason Another user logged on this global unique id 129925 mac 129925 bytes_out 0 129925 bytes_in 0 129925 station_ip 151.235.98.140 129925 port 237 129925 unique_id port 129930 username mansur 129930 mac 129930 bytes_out 405438 129930 bytes_in 8235922 129930 station_ip 5.119.205.201 129930 port 249 129930 unique_id port 129930 remote_ip 10.8.0.210 129932 username mahdixz 129932 unique_id port 129932 terminate_cause Lost-Carrier 129932 bytes_out 1363755 129932 bytes_in 12153041 129932 station_ip 151.235.98.117 129932 port 15730229 129932 nas_port_type Virtual 129932 remote_ip 5.5.5.252 129913 unique_id port 129913 remote_ip 10.8.0.114 129923 username zare 129923 kill_reason Another user logged on this global unique id 129923 mac 129923 bytes_out 0 129923 bytes_in 0 129923 station_ip 37.27.22.122 129923 port 241 129923 unique_id port 129924 username saeed9658 129924 mac 129924 bytes_out 0 129924 bytes_in 0 129924 station_ip 5.119.106.59 129924 port 160 129924 unique_id port 129924 remote_ip 10.8.1.210 129927 username saeed9658 129927 mac 129927 bytes_out 0 129927 bytes_in 0 129927 station_ip 5.119.106.59 129927 port 159 129927 unique_id port 129927 remote_ip 10.8.1.210 129929 username zare 129929 kill_reason Another user logged on this global unique id 129929 mac 129929 bytes_out 0 129929 bytes_in 0 129929 station_ip 37.27.22.122 129929 port 241 129929 unique_id port 129940 username naeimeh 129940 kill_reason Another user logged on this global unique id 129940 mac 129940 bytes_out 0 129940 bytes_in 0 129940 station_ip 37.129.63.181 129940 port 249 129940 unique_id port 129940 remote_ip 10.8.0.78 129942 username zare 129942 kill_reason Another user logged on this global unique id 129942 mac 129942 bytes_out 0 129942 bytes_in 0 129942 station_ip 37.27.22.122 129942 port 241 129942 unique_id port 129943 username mansur 129943 mac 129943 bytes_out 0 129943 bytes_in 0 129943 station_ip 5.119.205.201 129943 port 157 129943 unique_id port 129943 remote_ip 10.8.1.194 129945 username farhad2 129945 mac 129945 bytes_out 0 129945 bytes_in 0 129945 station_ip 5.120.153.172 129945 port 159 129945 unique_id port 129945 remote_ip 10.8.1.222 129949 username zare 129949 kill_reason Another user logged on this global unique id 129949 mac 129949 bytes_out 0 129949 bytes_in 0 129949 station_ip 37.27.22.122 129949 port 241 129949 unique_id port 129950 username mansur 129950 mac 129950 bytes_out 0 129950 bytes_in 0 129950 station_ip 5.119.205.201 129950 port 159 129950 unique_id port 129950 remote_ip 10.8.1.194 129954 username farhad2 129954 mac 129954 bytes_out 0 129954 bytes_in 0 129954 station_ip 5.120.153.172 129954 port 157 129954 unique_id port 129954 remote_ip 10.8.1.222 129955 username zare 129955 kill_reason Another user logged on this global unique id 129955 mac 129955 bytes_out 0 129955 bytes_in 0 129955 station_ip 37.27.22.122 129955 port 241 129955 unique_id port 129958 username arash 129958 mac 129958 bytes_out 380318 129958 bytes_in 2796228 129958 station_ip 37.27.2.36 129958 port 249 129958 unique_id port 129958 remote_ip 10.8.0.114 129961 username zare 129961 kill_reason Another user logged on this global unique id 129961 mac 129961 bytes_out 0 129961 bytes_in 0 129961 station_ip 37.27.22.122 129961 port 241 129961 unique_id port 129968 username farhad2 129968 mac 129968 bytes_out 0 129968 bytes_in 0 129968 station_ip 5.120.153.172 129968 port 157 129968 unique_id port 129968 remote_ip 10.8.1.222 129974 username amin.saeedi 129974 unique_id port 129974 terminate_cause User-Request 129974 bytes_out 126838 129974 bytes_in 318505 129974 station_ip 5.119.103.139 129974 port 15730231 129974 nas_port_type Virtual 129974 remote_ip 5.5.5.252 129975 username arash 129975 mac 129975 bytes_out 802011 129975 bytes_in 3444720 129975 station_ip 37.27.2.36 129975 port 249 129975 unique_id port 129975 remote_ip 10.8.0.114 129977 username arash 129977 mac 129977 bytes_out 0 129977 bytes_in 0 129977 station_ip 37.27.2.36 129977 port 241 129977 unique_id port 129977 remote_ip 10.8.0.114 129988 username arash 129988 mac 129928 remote_ip 10.8.0.186 129931 username farhad2 129931 mac 129931 bytes_out 0 129931 bytes_in 0 129931 station_ip 5.120.153.172 129931 port 157 129931 unique_id port 129931 remote_ip 10.8.1.222 129933 username mansur 129933 mac 129933 bytes_out 0 129933 bytes_in 0 129933 station_ip 5.119.205.201 129933 port 159 129933 unique_id port 129933 remote_ip 10.8.1.194 129935 username zare 129935 kill_reason Another user logged on this global unique id 129935 mac 129935 bytes_out 0 129935 bytes_in 0 129935 station_ip 37.27.22.122 129935 port 241 129935 unique_id port 129936 username mansur 129936 mac 129936 bytes_out 0 129936 bytes_in 0 129936 station_ip 5.119.205.201 129936 port 253 129936 unique_id port 129936 remote_ip 10.8.0.210 129938 username zare 129938 kill_reason Another user logged on this global unique id 129938 mac 129938 bytes_out 0 129938 bytes_in 0 129938 station_ip 37.27.22.122 129938 port 241 129938 unique_id port 129939 username farhad2 129939 mac 129939 bytes_out 379051 129939 bytes_in 1617525 129939 station_ip 5.120.153.172 129939 port 157 129939 unique_id port 129939 remote_ip 10.8.1.222 129946 username naeimeh 129946 mac 129946 bytes_out 0 129946 bytes_in 0 129946 station_ip 37.129.63.181 129946 port 249 129946 unique_id port 129948 username mansur 129948 mac 129948 bytes_out 0 129948 bytes_in 0 129948 station_ip 5.119.205.201 129948 port 249 129948 unique_id port 129948 remote_ip 10.8.0.210 129953 username zare 129953 kill_reason Another user logged on this global unique id 129953 mac 129953 bytes_out 0 129953 bytes_in 0 129953 station_ip 37.27.22.122 129953 port 241 129953 unique_id port 129957 username farhad2 129957 mac 129957 bytes_out 0 129957 bytes_in 0 129957 station_ip 5.120.153.172 129957 port 157 129957 unique_id port 129957 remote_ip 10.8.1.222 129959 username barzegar 129959 mac 129959 bytes_out 0 129959 bytes_in 0 129959 station_ip 5.120.64.145 129959 port 158 129959 unique_id port 129959 remote_ip 10.8.1.174 129962 username arash 129962 mac 129962 bytes_out 378232 129962 bytes_in 2541028 129962 station_ip 37.27.2.36 129962 port 253 129962 unique_id port 129962 remote_ip 10.8.0.114 129963 username zare 129963 kill_reason Another user logged on this global unique id 129963 mac 129963 bytes_out 0 129963 bytes_in 0 129963 station_ip 37.27.22.122 129963 port 241 129963 unique_id port 129964 username mahdiyehalizadeh 129964 mac 129964 bytes_out 958848 129964 bytes_in 16559551 129964 station_ip 83.123.53.5 129964 port 251 129964 unique_id port 129964 remote_ip 10.8.0.82 129969 username mosi 129969 kill_reason Another user logged on this global unique id 129969 mac 129969 bytes_out 0 129969 bytes_in 0 129969 station_ip 151.235.98.140 129969 port 237 129969 unique_id port 129971 username arash 129971 mac 129971 bytes_out 0 129971 bytes_in 0 129971 station_ip 37.27.2.36 129971 port 249 129971 unique_id port 129971 remote_ip 10.8.0.114 129972 username mosi 129972 kill_reason Another user logged on this global unique id 129972 mac 129972 bytes_out 0 129972 bytes_in 0 129972 station_ip 151.235.98.140 129972 port 237 129972 unique_id port 129973 username arash 129973 mac 129973 bytes_out 0 129973 bytes_in 0 129973 station_ip 37.27.2.36 129973 port 241 129973 unique_id port 129973 remote_ip 10.8.0.114 129976 username arash 129976 mac 129976 bytes_out 0 129976 bytes_in 0 129976 station_ip 37.27.2.36 129976 port 241 129976 unique_id port 129976 remote_ip 10.8.0.114 129934 username shahrooz 129934 unique_id port 129934 terminate_cause Lost-Carrier 129934 bytes_out 692401 129934 bytes_in 2105950 129934 station_ip 83.123.153.220 129934 port 15730220 129934 nas_port_type Virtual 129934 remote_ip 5.5.5.101 129937 username saeed9658 129937 mac 129937 bytes_out 2288444 129937 bytes_in 11038386 129937 station_ip 5.119.106.59 129937 port 251 129937 unique_id port 129937 remote_ip 10.8.0.62 129941 username mansur 129941 mac 129941 bytes_out 0 129941 bytes_in 0 129941 station_ip 5.119.205.201 129941 port 157 129941 unique_id port 129941 remote_ip 10.8.1.194 129944 username mansur 129944 mac 129944 bytes_out 0 129944 bytes_in 0 129944 station_ip 5.119.205.201 129944 port 157 129944 unique_id port 129944 remote_ip 10.8.1.194 129947 username zare 129947 kill_reason Another user logged on this global unique id 129947 mac 129947 bytes_out 0 129947 bytes_in 0 129947 station_ip 37.27.22.122 129947 port 241 129947 unique_id port 129951 username mansur 129951 mac 129951 bytes_out 0 129951 bytes_in 0 129951 station_ip 5.119.205.201 129951 port 159 129951 unique_id port 129951 remote_ip 10.8.1.194 129952 username arash 129952 mac 129952 bytes_out 0 129952 bytes_in 0 129952 station_ip 37.27.2.36 129952 port 249 129952 unique_id port 129952 remote_ip 10.8.0.114 129956 username mansur 129956 mac 129956 bytes_out 1200805 129956 bytes_in 18181996 129956 station_ip 5.119.205.201 129956 port 253 129956 unique_id port 129956 remote_ip 10.8.0.210 129960 username zare 129960 kill_reason Another user logged on this global unique id 129960 mac 129960 bytes_out 0 129960 bytes_in 0 129960 station_ip 37.27.22.122 129960 port 241 129960 unique_id port 129965 username hamidsalari 129965 mac 129965 bytes_out 0 129965 bytes_in 0 129965 station_ip 5.120.87.145 129965 port 250 129965 unique_id port 129966 username zare 129966 mac 129966 bytes_out 0 129966 bytes_in 0 129966 station_ip 37.27.22.122 129966 port 241 129966 unique_id port 129967 username mostafa_es78 129967 unique_id port 129967 terminate_cause Lost-Carrier 129967 bytes_out 53335 129967 bytes_in 142147 129967 station_ip 178.236.35.96 129967 port 15730230 129967 nas_port_type Virtual 129967 remote_ip 5.5.5.255 129970 username farhad2 129970 mac 129970 bytes_out 0 129970 bytes_in 0 129970 station_ip 5.120.153.172 129970 port 157 129970 unique_id port 129970 remote_ip 10.8.1.222 129978 username mosi 129978 kill_reason Another user logged on this global unique id 129978 mac 129978 bytes_out 0 129978 bytes_in 0 129978 station_ip 151.235.98.140 129978 port 237 129978 unique_id port 129981 username naeimeh 129981 mac 129981 bytes_out 0 129981 bytes_in 0 129981 station_ip 83.123.98.111 129981 port 249 129981 unique_id port 129985 username jafari 129985 kill_reason Another user logged on this global unique id 129985 mac 129985 bytes_out 0 129985 bytes_in 0 129985 station_ip 89.32.97.47 129985 port 241 129985 unique_id port 129985 remote_ip 10.8.0.242 129986 username jafari 129986 kill_reason Another user logged on this global unique id 129986 mac 129986 bytes_out 0 129986 bytes_in 0 129986 station_ip 89.32.97.47 129986 port 241 129986 unique_id port 129989 mac 129989 bytes_out 0 129989 bytes_in 0 129989 station_ip 37.27.2.36 129989 port 241 129989 unique_id port 129989 remote_ip 10.8.0.114 129992 username hashtadani3 129992 mac 129992 bytes_out 0 129992 bytes_in 0 129992 station_ip 83.122.218.75 129992 port 241 129992 unique_id port 129992 remote_ip 10.8.0.154 129979 username naeimeh 129979 kill_reason Another user logged on this global unique id 129979 mac 129979 bytes_out 0 129979 bytes_in 0 129979 station_ip 83.123.98.111 129979 port 249 129979 unique_id port 129979 remote_ip 10.8.0.78 129980 username mosi 129980 kill_reason Another user logged on this global unique id 129980 mac 129980 bytes_out 0 129980 bytes_in 0 129980 station_ip 151.235.98.140 129980 port 237 129980 unique_id port 129982 username mostafa_es78 129982 unique_id port 129982 terminate_cause User-Request 129982 bytes_out 6693948 129982 bytes_in 52148703 129982 station_ip 5.125.240.143 129982 port 15730225 129982 nas_port_type Virtual 129982 remote_ip 5.5.5.253 129983 username arash 129983 mac 129983 bytes_out 0 129983 bytes_in 0 129983 station_ip 37.27.2.36 129983 port 241 129983 unique_id port 129983 remote_ip 10.8.0.114 129984 username arash 129984 mac 129984 bytes_out 0 129984 bytes_in 0 129984 station_ip 37.27.2.36 129984 port 241 129984 unique_id port 129984 remote_ip 10.8.0.114 129987 username jafari 129987 mac 129987 bytes_out 0 129987 bytes_in 0 129987 station_ip 89.32.97.47 129987 port 241 129987 unique_id port 129990 username mirzaei 129990 mac 129990 bytes_out 0 129990 bytes_in 0 129990 station_ip 5.120.22.40 129990 port 239 129990 unique_id port 129991 username arash 129991 mac 129991 bytes_out 0 129991 bytes_in 0 129991 station_ip 37.27.2.36 129991 port 241 129991 unique_id port 129991 remote_ip 10.8.0.114 129996 username hashtadani3 129996 mac 129996 bytes_out 0 129996 bytes_in 0 129996 station_ip 83.122.218.75 129996 port 241 129996 unique_id port 129996 remote_ip 10.8.0.154 129997 username hashtadani3 129997 mac 129997 bytes_out 0 129997 bytes_in 0 129997 station_ip 83.122.218.75 129997 port 239 129997 unique_id port 129997 remote_ip 10.8.0.154 130000 username sedighe 130000 mac 130000 bytes_out 0 130000 bytes_in 0 130000 station_ip 37.129.124.105 130000 port 249 130000 unique_id port 130000 remote_ip 10.8.0.146 130001 username hashtadani3 130001 mac 130001 bytes_out 0 130001 bytes_in 0 130001 station_ip 83.122.218.75 130001 port 241 130001 unique_id port 130001 remote_ip 10.8.0.154 130002 username sedighe 130002 mac 130002 bytes_out 0 130002 bytes_in 0 130002 station_ip 37.129.124.105 130002 port 239 130002 unique_id port 130002 remote_ip 10.8.0.146 130005 username hashtadani3 130005 mac 130005 bytes_out 0 130005 bytes_in 0 130005 station_ip 83.122.218.75 130005 port 249 130005 unique_id port 130005 remote_ip 10.8.0.154 130009 username sedighe 130009 mac 130009 bytes_out 0 130009 bytes_in 0 130009 station_ip 37.129.124.105 130009 port 241 130009 unique_id port 130009 remote_ip 10.8.0.146 130016 username hashtadani3 130016 mac 130016 bytes_out 0 130016 bytes_in 0 130016 station_ip 83.122.218.75 130016 port 157 130016 unique_id port 130016 remote_ip 10.8.1.94 130017 username hashtadani3 130017 mac 130017 bytes_out 0 130017 bytes_in 0 130017 station_ip 83.122.218.75 130017 port 244 130017 unique_id port 130017 remote_ip 10.8.0.154 130020 username hashtadani3 130020 mac 130020 bytes_out 0 130020 bytes_in 0 130020 station_ip 83.122.218.75 130020 port 244 130020 unique_id port 130020 remote_ip 10.8.0.154 130022 username sedighe 130022 mac 130022 bytes_out 0 130022 bytes_in 0 130022 station_ip 37.129.124.105 130022 port 239 130022 unique_id port 130022 remote_ip 10.8.0.146 130024 username arash 129988 bytes_out 496457 129988 bytes_in 3919603 129988 station_ip 37.27.2.36 129988 port 241 129988 unique_id port 129988 remote_ip 10.8.0.114 129993 username hashtadani3 129993 mac 129993 bytes_out 0 129993 bytes_in 0 129993 station_ip 83.122.218.75 129993 port 241 129993 unique_id port 129993 remote_ip 10.8.0.154 129994 username hashtadani3 129994 mac 129994 bytes_out 0 129994 bytes_in 0 129994 station_ip 83.122.218.75 129994 port 241 129994 unique_id port 129994 remote_ip 10.8.0.154 130006 username hashtadani3 130006 mac 130006 bytes_out 0 130006 bytes_in 0 130006 station_ip 83.122.218.75 130006 port 239 130006 unique_id port 130006 remote_ip 10.8.0.154 130007 username milan 130007 kill_reason Another user logged on this global unique id 130007 mac 130007 bytes_out 0 130007 bytes_in 0 130007 station_ip 5.119.229.52 130007 port 252 130007 unique_id port 130010 username khademi 130010 mac 130010 bytes_out 0 130010 bytes_in 0 130010 station_ip 113.203.124.121 130010 port 244 130010 unique_id port 130010 remote_ip 10.8.0.10 130011 username hashtadani3 130011 mac 130011 bytes_out 0 130011 bytes_in 0 130011 station_ip 83.122.218.75 130011 port 241 130011 unique_id port 130011 remote_ip 10.8.0.154 130013 username arash 130013 mac 130013 bytes_out 50702 130013 bytes_in 141129 130013 station_ip 37.27.2.36 130013 port 241 130013 unique_id port 130013 remote_ip 10.8.0.114 130019 username hashtadani3 130019 mac 130019 bytes_out 0 130019 bytes_in 0 130019 station_ip 83.122.218.75 130019 port 244 130019 unique_id port 130019 remote_ip 10.8.0.154 130026 username arash 130026 mac 130026 bytes_out 0 130026 bytes_in 0 130026 station_ip 37.27.2.36 130026 port 241 130026 unique_id port 130026 remote_ip 10.8.0.114 130027 username hashtadani3 130027 mac 130027 bytes_out 0 130027 bytes_in 0 130027 station_ip 83.122.218.75 130027 port 241 130027 unique_id port 130027 remote_ip 10.8.0.154 130041 username morteza 130041 mac 130041 bytes_out 0 130041 bytes_in 0 130041 station_ip 83.122.24.7 130041 port 241 130041 unique_id port 130041 remote_ip 10.8.0.46 130043 username hashtadani3 130043 mac 130043 bytes_out 0 130043 bytes_in 0 130043 station_ip 83.122.218.75 130043 port 239 130043 unique_id port 130043 remote_ip 10.8.0.154 130044 username morteza 130044 mac 130044 bytes_out 0 130044 bytes_in 0 130044 station_ip 83.122.24.7 130044 port 158 130044 unique_id port 130044 remote_ip 10.8.1.62 130055 username morteza 130055 mac 130055 bytes_out 0 130055 bytes_in 0 130055 station_ip 83.122.24.7 130055 port 159 130055 unique_id port 130055 remote_ip 10.8.1.62 130067 username hashtadani3 130067 mac 130067 bytes_out 0 130067 bytes_in 0 130067 station_ip 83.122.218.75 130067 port 244 130067 unique_id port 130067 remote_ip 10.8.0.154 130069 username vanila 130069 mac 130069 bytes_out 0 130069 bytes_in 0 130069 station_ip 37.129.149.83 130069 port 239 130069 unique_id port 130069 remote_ip 10.8.0.178 130076 username barzegar 130076 kill_reason Maximum check online fails reached 130076 mac 130076 bytes_out 0 130076 bytes_in 0 130076 station_ip 5.119.155.205 130076 port 239 130076 unique_id port 130077 username hashtadani3 130077 mac 130077 bytes_out 0 130077 bytes_in 0 130077 station_ip 83.122.218.75 130077 port 244 130077 unique_id port 130077 remote_ip 10.8.0.154 130081 username hashtadani3 130081 mac 130081 bytes_out 0 130081 bytes_in 0 129995 username sedighe 129995 mac 129995 bytes_out 0 129995 bytes_in 0 129995 station_ip 37.129.124.105 129995 port 239 129995 unique_id port 129995 remote_ip 10.8.0.146 129998 username hashtadani3 129998 mac 129998 bytes_out 0 129998 bytes_in 0 129998 station_ip 83.122.218.75 129998 port 239 129998 unique_id port 129998 remote_ip 10.8.0.154 129999 username hashtadani3 129999 mac 129999 bytes_out 0 129999 bytes_in 0 129999 station_ip 83.122.218.75 129999 port 239 129999 unique_id port 129999 remote_ip 10.8.0.154 130003 username hashtadani3 130003 mac 130003 bytes_out 0 130003 bytes_in 0 130003 station_ip 83.122.218.75 130003 port 157 130003 unique_id port 130003 remote_ip 10.8.1.94 130004 username hashtadani3 130004 mac 130004 bytes_out 0 130004 bytes_in 0 130004 station_ip 83.122.218.75 130004 port 239 130004 unique_id port 130004 remote_ip 10.8.0.154 130008 username hashtadani3 130008 mac 130008 bytes_out 0 130008 bytes_in 0 130008 station_ip 83.122.218.75 130008 port 239 130008 unique_id port 130008 remote_ip 10.8.0.154 130012 username milan 130012 kill_reason Another user logged on this global unique id 130012 mac 130012 bytes_out 0 130012 bytes_in 0 130012 station_ip 5.119.229.52 130012 port 252 130012 unique_id port 130014 username milan 130014 kill_reason Another user logged on this global unique id 130014 mac 130014 bytes_out 0 130014 bytes_in 0 130014 station_ip 5.119.229.52 130014 port 252 130014 unique_id port 130015 username milan 130015 kill_reason Another user logged on this global unique id 130015 mac 130015 bytes_out 0 130015 bytes_in 0 130015 station_ip 5.119.229.52 130015 port 252 130015 unique_id port 130018 username hashtadani3 130018 mac 130018 bytes_out 0 130018 bytes_in 0 130018 station_ip 83.122.218.75 130018 port 244 130018 unique_id port 130018 remote_ip 10.8.0.154 130021 username milan 130021 mac 130021 bytes_out 0 130021 bytes_in 0 130021 station_ip 5.119.229.52 130021 port 252 130021 unique_id port 130023 username hashtadani3 130023 mac 130023 bytes_out 0 130023 bytes_in 0 130023 station_ip 83.122.218.75 130023 port 244 130023 unique_id port 130023 remote_ip 10.8.0.154 130025 username arash 130025 mac 130025 bytes_out 0 130025 bytes_in 0 130025 station_ip 37.27.2.36 130025 port 241 130025 unique_id port 130025 remote_ip 10.8.0.114 130031 username morteza 130031 mac 130031 bytes_out 0 130031 bytes_in 0 130031 station_ip 83.122.59.95 130031 port 158 130031 unique_id port 130031 remote_ip 10.8.1.62 130033 username houshang 130033 mac 130033 bytes_out 111046 130033 bytes_in 173477 130033 station_ip 5.119.30.28 130033 port 244 130033 unique_id port 130033 remote_ip 10.8.0.22 130034 username mohammadjavad 130034 mac 130034 bytes_out 1058987 130034 bytes_in 19129429 130034 station_ip 83.122.91.28 130034 port 241 130034 unique_id port 130034 remote_ip 10.8.0.142 130035 username morteza 130035 mac 130035 bytes_out 0 130035 bytes_in 0 130035 station_ip 83.122.59.95 130035 port 239 130035 unique_id port 130035 remote_ip 10.8.0.46 130036 username morteza 130036 mac 130036 bytes_out 0 130036 bytes_in 0 130036 station_ip 83.122.59.95 130036 port 239 130036 unique_id port 130036 remote_ip 10.8.0.46 130037 username hashtadani3 130037 mac 130037 bytes_out 0 130037 bytes_in 0 130037 station_ip 83.122.218.75 130037 port 241 130037 unique_id port 130037 remote_ip 10.8.0.154 130038 username morteza 130038 mac 130038 bytes_out 2578 130024 mac 130024 bytes_out 299557 130024 bytes_in 1835334 130024 station_ip 37.27.2.36 130024 port 241 130024 unique_id port 130024 remote_ip 10.8.0.114 130028 username morteza 130028 mac 130028 bytes_out 0 130028 bytes_in 0 130028 station_ip 83.122.59.95 130028 port 239 130028 unique_id port 130028 remote_ip 10.8.0.46 130029 username morteza 130029 kill_reason Maximum check online fails reached 130029 mac 130029 bytes_out 0 130029 bytes_in 0 130029 station_ip 83.122.59.95 130029 port 157 130029 unique_id port 130030 username mansour 130030 mac 130030 bytes_out 30208349 130030 bytes_in 463026473 130030 station_ip 5.202.64.80 130030 port 248 130030 unique_id port 130030 remote_ip 10.8.0.30 130032 username hashtadani3 130032 mac 130032 bytes_out 2064 130032 bytes_in 4675 130032 station_ip 83.122.218.75 130032 port 239 130032 unique_id port 130032 remote_ip 10.8.0.154 130039 username hashtadani3 130039 mac 130039 bytes_out 8313 130039 bytes_in 26015 130039 station_ip 83.122.218.75 130039 port 239 130039 unique_id port 130039 remote_ip 10.8.0.154 130046 username hashtadani3 130046 mac 130046 bytes_out 0 130046 bytes_in 0 130046 station_ip 83.122.218.75 130046 port 239 130046 unique_id port 130046 remote_ip 10.8.0.154 130049 username morteza 130049 kill_reason Maximum check online fails reached 130049 mac 130049 bytes_out 0 130049 bytes_in 0 130049 station_ip 83.122.24.7 130049 port 158 130049 unique_id port 130050 username morteza 130050 mac 130050 bytes_out 0 130050 bytes_in 0 130050 station_ip 83.122.24.7 130050 port 159 130050 unique_id port 130050 remote_ip 10.8.1.62 130051 username hashtadani3 130051 mac 130051 bytes_out 0 130051 bytes_in 0 130051 station_ip 83.122.218.75 130051 port 239 130051 unique_id port 130051 remote_ip 10.8.0.154 130053 username hamid.e 130053 unique_id port 130053 terminate_cause User-Request 130053 bytes_out 1511704 130053 bytes_in 27632401 130053 station_ip 188.245.88.34 130053 port 15730233 130053 nas_port_type Virtual 130053 remote_ip 5.5.5.254 130057 username morteza 130057 mac 130057 bytes_out 0 130057 bytes_in 0 130057 station_ip 83.122.24.7 130057 port 239 130057 unique_id port 130057 remote_ip 10.8.0.46 130062 username mohammadjavad 130062 mac 130062 bytes_out 0 130062 bytes_in 0 130062 station_ip 37.129.29.96 130062 port 241 130062 unique_id port 130062 remote_ip 10.8.0.142 130066 username barzegar 130066 mac 130066 bytes_out 0 130066 bytes_in 0 130066 station_ip 5.119.155.205 130066 port 159 130066 unique_id port 130066 remote_ip 10.8.1.174 130068 username hashtadani3 130068 mac 130068 bytes_out 0 130068 bytes_in 0 130068 station_ip 83.122.218.75 130068 port 244 130068 unique_id port 130068 remote_ip 10.8.0.154 130071 username hashtadani3 130071 mac 130071 bytes_out 0 130071 bytes_in 0 130071 station_ip 83.122.218.75 130071 port 239 130071 unique_id port 130071 remote_ip 10.8.0.154 130073 username barzegar 130073 mac 130073 bytes_out 0 130073 bytes_in 0 130073 station_ip 5.119.155.205 130073 port 159 130073 unique_id port 130073 remote_ip 10.8.1.174 130074 username hashtadani3 130074 mac 130074 bytes_out 0 130074 bytes_in 0 130074 station_ip 83.122.218.75 130074 port 239 130074 unique_id port 130074 remote_ip 10.8.0.154 130075 username vanila 130075 mac 130075 bytes_out 0 130075 bytes_in 0 130075 station_ip 37.129.149.83 130075 port 244 130075 unique_id port 130075 remote_ip 10.8.0.178 130078 username hashtadani3 130038 bytes_in 4810 130038 station_ip 83.122.59.95 130038 port 239 130038 unique_id port 130038 remote_ip 10.8.0.46 130040 username hashtadani3 130040 mac 130040 bytes_out 0 130040 bytes_in 0 130040 station_ip 83.122.218.75 130040 port 241 130040 unique_id port 130040 remote_ip 10.8.0.154 130042 username mohsenaskari 130042 mac 130042 bytes_out 392097 130042 bytes_in 2105185 130042 station_ip 46.225.215.170 130042 port 239 130042 unique_id port 130042 remote_ip 10.8.0.246 130045 username hashtadani3 130045 mac 130045 bytes_out 0 130045 bytes_in 0 130045 station_ip 83.122.218.75 130045 port 239 130045 unique_id port 130045 remote_ip 10.8.0.154 130047 username hashtadani3 130047 mac 130047 bytes_out 0 130047 bytes_in 0 130047 station_ip 83.122.218.75 130047 port 239 130047 unique_id port 130047 remote_ip 10.8.0.154 130048 username morteza 130048 mac 130048 bytes_out 0 130048 bytes_in 0 130048 station_ip 83.122.24.7 130048 port 239 130048 unique_id port 130048 remote_ip 10.8.0.46 130052 username hashtadani3 130052 mac 130052 bytes_out 0 130052 bytes_in 0 130052 station_ip 83.122.218.75 130052 port 239 130052 unique_id port 130052 remote_ip 10.8.0.154 130054 username hashtadani3 130054 mac 130054 bytes_out 0 130054 bytes_in 0 130054 station_ip 83.122.218.75 130054 port 239 130054 unique_id port 130054 remote_ip 10.8.0.154 130056 username hashtadani3 130056 mac 130056 bytes_out 0 130056 bytes_in 0 130056 station_ip 83.122.218.75 130056 port 241 130056 unique_id port 130056 remote_ip 10.8.0.154 130058 username hashtadani3 130058 mac 130058 bytes_out 0 130058 bytes_in 0 130058 station_ip 83.122.218.75 130058 port 241 130058 unique_id port 130058 remote_ip 10.8.0.154 130059 username hashtadani3 130059 mac 130059 bytes_out 0 130059 bytes_in 0 130059 station_ip 83.122.218.75 130059 port 241 130059 unique_id port 130059 remote_ip 10.8.0.154 130060 username hashtadani3 130060 mac 130060 bytes_out 0 130060 bytes_in 0 130060 station_ip 83.122.218.75 130060 port 244 130060 unique_id port 130060 remote_ip 10.8.0.154 130061 username sedighe 130061 mac 130061 bytes_out 0 130061 bytes_in 0 130061 station_ip 37.129.124.105 130061 port 239 130061 unique_id port 130061 remote_ip 10.8.0.146 130063 username yahodi 130063 mac 130063 bytes_out 0 130063 bytes_in 0 130063 station_ip 83.122.148.3 130063 port 239 130063 unique_id port 130063 remote_ip 10.8.0.202 130064 username hashtadani3 130064 mac 130064 bytes_out 0 130064 bytes_in 0 130064 station_ip 83.122.218.75 130064 port 239 130064 unique_id port 130064 remote_ip 10.8.0.154 130065 username barzegar 130065 mac 130065 bytes_out 0 130065 bytes_in 0 130065 station_ip 5.119.155.205 130065 port 159 130065 unique_id port 130065 remote_ip 10.8.1.174 130070 username barzegar 130070 mac 130070 bytes_out 0 130070 bytes_in 0 130070 station_ip 5.119.155.205 130070 port 159 130070 unique_id port 130070 remote_ip 10.8.1.174 130072 username barzegar 130072 mac 130072 bytes_out 0 130072 bytes_in 0 130072 station_ip 5.119.155.205 130072 port 159 130072 unique_id port 130072 remote_ip 10.8.1.174 130079 username hashtadani3 130079 mac 130079 bytes_out 0 130079 bytes_in 0 130079 station_ip 83.122.218.75 130079 port 244 130079 unique_id port 130079 remote_ip 10.8.0.154 130086 username barzegar 130086 mac 130086 bytes_out 0 130086 bytes_in 0 130086 station_ip 5.119.155.205 130078 mac 130078 bytes_out 0 130078 bytes_in 0 130078 station_ip 83.122.218.75 130078 port 244 130078 unique_id port 130078 remote_ip 10.8.0.154 130080 username barzegar 130080 mac 130080 bytes_out 0 130080 bytes_in 0 130080 station_ip 5.119.155.205 130080 port 248 130080 unique_id port 130080 remote_ip 10.8.0.234 130082 username hashtadani3 130082 mac 130082 bytes_out 0 130082 bytes_in 0 130082 station_ip 83.122.218.75 130082 port 244 130082 unique_id port 130082 remote_ip 10.8.0.154 130084 username hashtadani3 130084 mac 130084 bytes_out 0 130084 bytes_in 0 130084 station_ip 83.122.218.75 130084 port 249 130084 unique_id port 130084 remote_ip 10.8.0.154 130089 username forozande 130089 mac 130089 bytes_out 0 130089 bytes_in 0 130089 station_ip 37.129.99.139 130089 port 248 130089 unique_id port 130089 remote_ip 10.8.0.74 130092 username hashtadani3 130092 mac 130092 bytes_out 0 130092 bytes_in 0 130092 station_ip 83.122.218.75 130092 port 244 130092 unique_id port 130092 remote_ip 10.8.0.154 130095 username hashtadani3 130095 mac 130095 bytes_out 0 130095 bytes_in 0 130095 station_ip 83.122.218.75 130095 port 244 130095 unique_id port 130095 remote_ip 10.8.0.154 130098 username barzegar 130098 mac 130098 bytes_out 0 130098 bytes_in 0 130098 station_ip 5.119.155.205 130098 port 248 130098 unique_id port 130098 remote_ip 10.8.0.234 130102 username mohsenaskari 130102 mac 130102 bytes_out 0 130102 bytes_in 0 130102 station_ip 46.225.215.170 130102 port 244 130102 unique_id port 130102 remote_ip 10.8.0.246 130106 username mosi 130106 mac 130106 bytes_out 0 130106 bytes_in 0 130106 station_ip 151.235.98.140 130106 port 237 130106 unique_id port 130111 username kordestani 130111 mac 130111 bytes_out 0 130111 bytes_in 0 130111 station_ip 37.129.216.165 130111 port 237 130111 unique_id port 130111 remote_ip 10.8.0.134 130115 username barzegar 130115 mac 130115 bytes_out 0 130115 bytes_in 0 130115 station_ip 5.119.155.205 130115 port 248 130115 unique_id port 130115 remote_ip 10.8.0.234 130121 username saeed9658 130121 mac 130121 bytes_out 0 130121 bytes_in 0 130121 station_ip 5.119.106.59 130121 port 244 130121 unique_id port 130121 remote_ip 10.8.0.62 130123 username barzegar 130123 mac 130123 bytes_out 1932 130123 bytes_in 4201 130123 station_ip 5.119.155.205 130123 port 249 130123 unique_id port 130123 remote_ip 10.8.0.234 130125 username hashtadani3 130125 mac 130125 bytes_out 0 130125 bytes_in 0 130125 station_ip 83.122.218.75 130125 port 249 130125 unique_id port 130125 remote_ip 10.8.0.154 130126 username barzegar 130126 mac 130126 bytes_out 0 130126 bytes_in 0 130126 station_ip 5.119.155.205 130126 port 159 130126 unique_id port 130126 remote_ip 10.8.1.174 130133 username hashtadani3 130133 mac 130133 bytes_out 0 130133 bytes_in 0 130133 station_ip 83.122.218.75 130133 port 244 130133 unique_id port 130133 remote_ip 10.8.0.154 130138 username forozande 130138 kill_reason Another user logged on this global unique id 130138 mac 130138 bytes_out 0 130138 bytes_in 0 130138 station_ip 37.129.68.213 130138 port 237 130138 unique_id port 130138 remote_ip 10.8.0.74 130139 username hashtadani3 130139 mac 130139 bytes_out 0 130139 bytes_in 0 130139 station_ip 83.122.218.75 130139 port 244 130139 unique_id port 130139 remote_ip 10.8.0.154 130140 username hashtadani3 130140 mac 130140 bytes_out 0 130081 station_ip 83.122.218.75 130081 port 244 130081 unique_id port 130081 remote_ip 10.8.0.154 130083 username barzegar 130083 mac 130083 bytes_out 0 130083 bytes_in 0 130083 station_ip 5.119.155.205 130083 port 248 130083 unique_id port 130083 remote_ip 10.8.0.234 130085 username hashtadani3 130085 mac 130085 bytes_out 0 130085 bytes_in 0 130085 station_ip 83.122.218.75 130085 port 249 130085 unique_id port 130085 remote_ip 10.8.0.154 130088 username moradi 130088 mac 130088 bytes_out 2206560 130088 bytes_in 41925020 130088 station_ip 83.123.150.228 130088 port 244 130088 unique_id port 130088 remote_ip 10.8.0.250 130091 username hashtadani3 130091 mac 130091 bytes_out 0 130091 bytes_in 0 130091 station_ip 83.122.218.75 130091 port 244 130091 unique_id port 130091 remote_ip 10.8.0.154 130093 username hashtadani3 130093 mac 130093 bytes_out 0 130093 bytes_in 0 130093 station_ip 83.122.218.75 130093 port 244 130093 unique_id port 130093 remote_ip 10.8.0.154 130097 username barzegar 130097 mac 130097 bytes_out 0 130097 bytes_in 0 130097 station_ip 5.119.155.205 130097 port 250 130097 unique_id port 130097 remote_ip 10.8.0.234 130099 username kordestani 130099 mac 130099 bytes_out 0 130099 bytes_in 0 130099 station_ip 83.122.184.223 130099 port 244 130099 unique_id port 130099 remote_ip 10.8.0.134 130104 username hashtadani3 130104 mac 130104 bytes_out 0 130104 bytes_in 0 130104 station_ip 83.122.218.75 130104 port 244 130104 unique_id port 130104 remote_ip 10.8.0.154 130108 username barzegar 130108 mac 130108 bytes_out 4605 130108 bytes_in 6262 130108 station_ip 5.119.155.205 130108 port 251 130108 unique_id port 130108 remote_ip 10.8.0.234 130109 username vanila 130109 mac 130109 bytes_out 0 130109 bytes_in 0 130109 station_ip 37.129.149.83 130109 port 248 130109 unique_id port 130109 remote_ip 10.8.0.178 130112 username hosseine 130112 kill_reason Maximum check online fails reached 130112 mac 130112 bytes_out 0 130112 bytes_in 0 130112 station_ip 37.129.122.8 130112 port 247 130112 unique_id port 130112 remote_ip 10.8.0.238 130113 username mohammadjavad 130113 mac 130113 bytes_out 0 130113 bytes_in 0 130113 station_ip 83.123.208.90 130113 port 249 130113 unique_id port 130113 remote_ip 10.8.0.142 130114 username khalili 130114 mac 130114 bytes_out 0 130114 bytes_in 0 130114 station_ip 5.119.158.105 130114 port 159 130114 unique_id port 130114 remote_ip 10.8.1.18 130128 username hashtadani3 130128 mac 130128 bytes_out 0 130128 bytes_in 0 130128 station_ip 83.122.218.75 130128 port 249 130128 unique_id port 130128 remote_ip 10.8.0.154 130129 username hashtadani3 130129 mac 130129 bytes_out 0 130129 bytes_in 0 130129 station_ip 83.122.218.75 130129 port 249 130129 unique_id port 130129 remote_ip 10.8.0.154 130132 username barzegar 130132 mac 130132 bytes_out 23022 130132 bytes_in 44875 130132 station_ip 5.119.155.205 130132 port 159 130132 unique_id port 130132 remote_ip 10.8.1.174 130147 username aminvpn 130147 unique_id port 130147 terminate_cause User-Request 130147 bytes_out 827024 130147 bytes_in 4800582 130147 station_ip 83.122.48.82 130147 port 15730236 130147 nas_port_type Virtual 130147 remote_ip 5.5.5.254 130149 username barzegar 130149 mac 130149 bytes_out 0 130149 bytes_in 0 130149 station_ip 5.119.155.205 130149 port 160 130149 unique_id port 130149 remote_ip 10.8.1.174 130151 username farhad2 130151 mac 130151 bytes_out 1312006 130086 port 248 130086 unique_id port 130086 remote_ip 10.8.0.234 130087 username hashtadani3 130087 mac 130087 bytes_out 0 130087 bytes_in 0 130087 station_ip 83.122.218.75 130087 port 249 130087 unique_id port 130087 remote_ip 10.8.0.154 130090 username hashtadani3 130090 mac 130090 bytes_out 0 130090 bytes_in 0 130090 station_ip 83.122.218.75 130090 port 244 130090 unique_id port 130090 remote_ip 10.8.0.154 130094 username mosi 130094 kill_reason Another user logged on this global unique id 130094 mac 130094 bytes_out 0 130094 bytes_in 0 130094 station_ip 151.235.98.140 130094 port 237 130094 unique_id port 130096 username hashtadani3 130096 mac 130096 bytes_out 0 130096 bytes_in 0 130096 station_ip 83.122.218.75 130096 port 159 130096 unique_id port 130096 remote_ip 10.8.1.94 130100 username hashtadani3 130100 mac 130100 bytes_out 0 130100 bytes_in 0 130100 station_ip 83.122.218.75 130100 port 159 130100 unique_id port 130100 remote_ip 10.8.1.94 130101 username barzegar 130101 mac 130101 bytes_out 0 130101 bytes_in 0 130101 station_ip 5.119.155.205 130101 port 244 130101 unique_id port 130101 remote_ip 10.8.0.234 130103 username hashtadani3 130103 mac 130103 bytes_out 0 130103 bytes_in 0 130103 station_ip 83.122.218.75 130103 port 159 130103 unique_id port 130103 remote_ip 10.8.1.94 130105 username hashtadani3 130105 mac 130105 bytes_out 2058 130105 bytes_in 4600 130105 station_ip 83.122.218.75 130105 port 244 130105 unique_id port 130105 remote_ip 10.8.0.154 130107 username hashtadani3 130107 mac 130107 bytes_out 0 130107 bytes_in 0 130107 station_ip 83.122.218.75 130107 port 244 130107 unique_id port 130107 remote_ip 10.8.0.154 130110 username barzegar 130110 mac 130110 bytes_out 0 130110 bytes_in 0 130110 station_ip 5.119.155.205 130110 port 248 130110 unique_id port 130110 remote_ip 10.8.0.234 130116 username sedighe 130116 mac 130116 bytes_out 149016 130116 bytes_in 174058 130116 station_ip 113.203.45.123 130116 port 244 130116 unique_id port 130116 remote_ip 10.8.0.146 130117 username barzegar 130117 mac 130117 bytes_out 0 130117 bytes_in 0 130117 station_ip 5.119.155.205 130117 port 248 130117 unique_id port 130117 remote_ip 10.8.0.234 130118 username hashtadani3 130118 mac 130118 bytes_out 0 130118 bytes_in 0 130118 station_ip 83.122.218.75 130118 port 159 130118 unique_id port 130118 remote_ip 10.8.1.94 130119 username hashtadani3 130119 mac 130119 bytes_out 0 130119 bytes_in 0 130119 station_ip 83.122.218.75 130119 port 248 130119 unique_id port 130119 remote_ip 10.8.0.154 130120 username hashtadani3 130120 mac 130120 bytes_out 0 130120 bytes_in 0 130120 station_ip 83.122.218.75 130120 port 248 130120 unique_id port 130120 remote_ip 10.8.0.154 130122 username saeed9658 130122 mac 130122 bytes_out 0 130122 bytes_in 0 130122 station_ip 5.119.106.59 130122 port 244 130122 unique_id port 130122 remote_ip 10.8.0.62 130124 username hashtadani3 130124 mac 130124 bytes_out 0 130124 bytes_in 0 130124 station_ip 83.122.218.75 130124 port 248 130124 unique_id port 130124 remote_ip 10.8.0.154 130127 username mohsenaskari 130127 mac 130127 bytes_out 0 130127 bytes_in 0 130127 station_ip 46.225.215.170 130127 port 250 130127 unique_id port 130127 remote_ip 10.8.0.246 130130 username saeed9658 130130 mac 130130 bytes_out 0 130130 bytes_in 0 130130 station_ip 5.119.106.59 130130 port 244 130130 unique_id port 130130 remote_ip 10.8.0.62 130131 username mahdiyehalizadeh 130131 mac 130131 bytes_out 0 130131 bytes_in 0 130131 station_ip 37.129.94.146 130131 port 248 130131 unique_id port 130131 remote_ip 10.8.0.82 130134 username farhad2 130134 mac 130134 bytes_out 987856 130134 bytes_in 3473664 130134 station_ip 5.119.165.229 130134 port 160 130134 unique_id port 130134 remote_ip 10.8.1.222 130135 username aminvpn 130135 unique_id port 130135 terminate_cause Lost-Carrier 130135 bytes_out 249769 130135 bytes_in 4047928 130135 station_ip 5.119.245.4 130135 port 15730234 130135 nas_port_type Virtual 130135 remote_ip 5.5.5.254 130136 username mohsenaskari 130136 mac 130136 bytes_out 0 130136 bytes_in 0 130136 station_ip 46.225.232.204 130136 port 251 130136 unique_id port 130136 remote_ip 10.8.0.246 130137 username mohsenaskari 130137 mac 130137 bytes_out 0 130137 bytes_in 0 130137 station_ip 46.225.232.204 130137 port 248 130137 unique_id port 130137 remote_ip 10.8.0.246 130141 username mohsenaskari 130141 mac 130141 bytes_out 0 130141 bytes_in 0 130141 station_ip 46.225.232.204 130141 port 249 130141 unique_id port 130141 remote_ip 10.8.0.246 130143 username barzegar 130143 mac 130143 bytes_out 0 130143 bytes_in 0 130143 station_ip 5.119.155.205 130143 port 248 130143 unique_id port 130143 remote_ip 10.8.0.234 130148 username aminvpn 130148 unique_id port 130148 terminate_cause Lost-Carrier 130148 bytes_out 498591 130148 bytes_in 6421571 130148 station_ip 31.57.129.233 130148 port 15730235 130148 nas_port_type Virtual 130148 remote_ip 5.5.5.252 130158 username barzegar 130158 mac 130158 bytes_out 4780 130158 bytes_in 6575 130158 station_ip 5.119.155.205 130158 port 253 130158 unique_id port 130158 remote_ip 10.8.0.234 130159 username zare 130159 mac 130159 bytes_out 1629063 130159 bytes_in 27726847 130159 station_ip 94.183.214.14 130159 port 251 130159 unique_id port 130159 remote_ip 10.8.0.18 130160 username zare 130160 mac 130160 bytes_out 0 130160 bytes_in 0 130160 station_ip 94.183.214.14 130160 port 251 130160 unique_id port 130160 remote_ip 10.8.0.18 130161 username zare 130161 mac 130161 bytes_out 0 130161 bytes_in 0 130161 station_ip 94.183.214.14 130161 port 251 130161 unique_id port 130161 remote_ip 10.8.0.18 130162 username barzegar 130162 mac 130162 bytes_out 0 130162 bytes_in 0 130162 station_ip 5.119.155.205 130162 port 159 130162 unique_id port 130162 remote_ip 10.8.1.174 130167 username zare 130167 mac 130167 bytes_out 0 130167 bytes_in 0 66998 username arezoo 66998 kill_reason Maximum check online fails reached 66998 mac 5.238.63.249:49189: Unknown host 66998 bytes_out 0 66998 bytes_in 0 66998 station_ip 5.238.63.249:49189 66998 port 1017 66998 unique_id port 130167 station_ip 94.183.214.14 130167 port 159 130167 unique_id port 130167 remote_ip 10.8.1.58 130173 username barzegar 130173 mac 130173 bytes_out 0 130173 bytes_in 0 67002 username arezoo 67002 kill_reason Maximum check online fails reached 67002 mac 5.238.63.249:54972: Unknown host 67002 bytes_out 0 67002 bytes_in 0 67002 station_ip 5.238.63.249:54972 67002 port 1017 67002 unique_id port 130173 station_ip 5.119.155.205 130173 port 159 130173 unique_id port 130173 remote_ip 10.8.1.174 130174 username forozande 130174 mac 130174 bytes_out 0 130174 bytes_in 0 130174 station_ip 83.122.82.124 130174 port 237 130174 unique_id port 130174 remote_ip 10.8.0.74 130176 username mosi 130176 kill_reason Another user logged on this global unique id 130176 mac 130140 bytes_in 0 130140 station_ip 83.122.218.75 130140 port 244 130140 unique_id port 130140 remote_ip 10.8.0.154 130142 username hashtadani3 130142 mac 130142 bytes_out 0 130142 bytes_in 0 130142 station_ip 83.122.218.75 130142 port 248 130142 unique_id port 130142 remote_ip 10.8.0.154 130144 username moradi 130144 mac 130144 bytes_out 0 130144 bytes_in 0 130144 station_ip 83.123.230.56 130144 port 244 130144 unique_id port 130144 remote_ip 10.8.0.250 130145 username hashtadani3 130145 mac 130145 bytes_out 0 130145 bytes_in 0 130145 station_ip 83.122.218.75 130145 port 244 130145 unique_id port 130145 remote_ip 10.8.0.154 130146 username farhad2 130146 mac 130146 bytes_out 2371148 130146 bytes_in 15313823 130146 station_ip 5.119.165.229 130146 port 159 130146 unique_id port 130146 remote_ip 10.8.1.222 130150 username hashtadani3 130150 kill_reason Another user logged on this global unique id 130150 mac 130150 bytes_out 0 130150 bytes_in 0 130150 station_ip 83.122.218.75 130150 port 244 130150 unique_id port 130150 remote_ip 10.8.0.154 130152 username barzegar 130152 mac 130152 bytes_out 0 130152 bytes_in 0 130152 station_ip 5.119.155.205 130152 port 250 130152 unique_id port 130152 remote_ip 10.8.0.234 130154 username barzegar 130154 mac 130154 bytes_out 0 130154 bytes_in 0 130154 station_ip 5.119.155.205 130154 port 160 130154 unique_id port 130154 remote_ip 10.8.1.174 130155 username barzegar 130155 mac 130155 bytes_out 0 130155 bytes_in 0 130155 station_ip 5.119.155.205 130155 port 160 130155 unique_id port 130155 remote_ip 10.8.1.174 130163 username zare 130163 mac 130163 bytes_out 0 130163 bytes_in 0 130163 station_ip 94.183.214.14 130163 port 251 130163 unique_id port 130163 remote_ip 10.8.0.18 130164 username zare 130164 mac 130164 bytes_out 0 130164 bytes_in 0 130164 station_ip 94.183.214.14 130164 port 251 130164 unique_id port 130164 remote_ip 10.8.0.18 130169 username barzegar 130169 mac 130169 bytes_out 0 130169 bytes_in 0 130169 station_ip 5.119.155.205 130169 port 251 130169 unique_id port 130169 remote_ip 10.8.0.234 130171 username barzegar 130171 mac 130171 bytes_out 0 130171 bytes_in 0 130171 station_ip 5.119.155.205 130171 port 253 130171 unique_id port 130171 remote_ip 10.8.0.234 130172 username barzegar 130172 mac 130172 bytes_out 0 130172 bytes_in 0 130172 station_ip 5.119.155.205 130172 port 159 130172 unique_id port 130172 remote_ip 10.8.1.174 130175 username barzegar 130175 mac 130175 bytes_out 0 130175 bytes_in 0 130175 station_ip 5.119.155.205 130175 port 159 130175 unique_id port 130175 remote_ip 10.8.1.174 130182 username barzegar 130182 mac 130182 bytes_out 0 130182 bytes_in 0 130182 station_ip 5.119.155.205 130182 port 159 130182 unique_id port 130182 remote_ip 10.8.1.174 130183 username barzegar 130183 mac 130183 bytes_out 0 130183 bytes_in 0 130183 station_ip 5.119.155.205 130183 port 254 130183 unique_id port 130183 remote_ip 10.8.0.234 130188 username zare 130188 mac 130188 bytes_out 0 130188 bytes_in 0 130188 station_ip 94.183.214.14 130188 port 251 130188 unique_id port 130188 remote_ip 10.8.0.18 130190 username moradi 130190 kill_reason Another user logged on this global unique id 130190 mac 130190 bytes_out 0 130190 bytes_in 0 130190 station_ip 46.225.211.223 130190 port 249 130190 unique_id port 130190 remote_ip 10.8.0.250 130191 username barzegar 130191 mac 130151 bytes_in 13203937 130151 station_ip 5.119.165.229 130151 port 159 130151 unique_id port 130151 remote_ip 10.8.1.222 130153 username barzegar 130153 mac 130153 bytes_out 0 130153 bytes_in 0 130153 station_ip 5.119.155.205 130153 port 250 130153 unique_id port 130153 remote_ip 10.8.0.234 130156 username farhad2 130156 mac 130156 bytes_out 0 130156 bytes_in 0 130156 station_ip 5.119.165.229 130156 port 159 130156 unique_id port 130156 remote_ip 10.8.1.222 130157 username barzegar 130157 mac 130157 bytes_out 0 130157 bytes_in 0 130157 station_ip 5.119.155.205 130157 port 253 130157 unique_id port 130157 remote_ip 10.8.0.234 130165 username zare 130165 mac 130165 bytes_out 0 130165 bytes_in 0 130165 station_ip 94.183.214.14 130165 port 159 130165 unique_id port 130165 remote_ip 10.8.1.58 130166 username zare 130166 mac 130166 bytes_out 0 130166 bytes_in 0 130166 station_ip 94.183.214.14 130166 port 159 130166 unique_id port 130166 remote_ip 10.8.1.58 130168 username zare 130168 mac 130168 bytes_out 0 130168 bytes_in 0 130168 station_ip 94.183.214.14 130168 port 159 130168 unique_id port 130168 remote_ip 10.8.1.58 130170 username forozande 130170 mac 130170 bytes_out 0 130170 bytes_in 0 130170 station_ip 37.129.68.213 130170 port 237 130170 unique_id port 130177 username alirezazadeh 130177 unique_id port 130177 terminate_cause Lost-Carrier 130177 bytes_out 375989 130177 bytes_in 1772499 130177 station_ip 5.119.73.97 130177 port 15730239 130177 nas_port_type Virtual 130177 remote_ip 5.5.5.250 130180 username vanila 130180 mac 130180 bytes_out 6399168 130180 bytes_in 2619791 130180 station_ip 37.129.179.83 130180 port 237 130180 unique_id port 130180 remote_ip 10.8.0.178 130185 username barzegar 130185 mac 130185 bytes_out 0 130185 bytes_in 0 130185 station_ip 5.119.155.205 130185 port 255 130185 unique_id port 130185 remote_ip 10.8.0.234 130187 username jamali 130187 mac 130187 bytes_out 0 130187 bytes_in 0 130187 station_ip 5.120.91.145 130187 port 253 130187 unique_id port 130187 remote_ip 10.8.0.150 130189 username hashtadani3 130189 mac 130189 bytes_out 0 130189 bytes_in 0 130189 station_ip 83.122.218.75 130189 port 244 130189 unique_id port 130199 username barzegar 130199 mac 130199 bytes_out 0 130199 bytes_in 0 130199 station_ip 5.119.155.205 130199 port 256 130199 unique_id port 130199 remote_ip 10.8.0.234 130200 username aminvpn 130200 unique_id port 130200 terminate_cause Lost-Carrier 130200 bytes_out 8221596 130200 bytes_in 313111112 130200 station_ip 31.57.129.233 130200 port 15730237 130200 nas_port_type Virtual 130200 remote_ip 5.5.5.255 130201 username avaanna 130201 mac 130201 bytes_out 32340281 130201 bytes_in 35837288 130201 station_ip 185.144.64.46 130201 port 250 130201 unique_id port 130201 remote_ip 10.8.0.98 130204 username aminvpn 130204 mac 130204 bytes_out 0 130204 bytes_in 0 130204 station_ip 83.122.48.82 130204 port 250 130204 unique_id port 130204 remote_ip 10.8.0.14 130217 username barzegar 130217 mac 130217 bytes_out 0 130217 bytes_in 0 130217 station_ip 5.119.155.205 130217 port 250 130217 unique_id port 130217 remote_ip 10.8.0.234 130219 username kordestani 130219 mac 130219 bytes_out 1217207 130219 bytes_in 6117908 130219 station_ip 151.235.98.145 130219 port 251 130219 unique_id port 130219 remote_ip 10.8.0.134 130225 username mohammadjavad 130225 mac 130225 bytes_out 366317 130225 bytes_in 1928842 130176 bytes_out 0 130176 bytes_in 0 130176 station_ip 5.200.123.153 130176 port 252 130176 unique_id port 130176 remote_ip 10.8.0.138 130178 username barzegar 130178 mac 130178 bytes_out 0 130178 bytes_in 0 130178 station_ip 5.119.155.205 130178 port 159 130178 unique_id port 130178 remote_ip 10.8.1.174 130179 username jamali 130179 mac 130179 bytes_out 1861801 130179 bytes_in 15383115 130179 station_ip 5.120.91.145 130179 port 250 130179 unique_id port 130179 remote_ip 10.8.0.150 130181 username mosi 130181 kill_reason Another user logged on this global unique id 130181 mac 130181 bytes_out 0 130181 bytes_in 0 130181 station_ip 5.200.123.153 130181 port 252 130181 unique_id port 130184 username morteza 130184 mac 130184 bytes_out 0 130184 bytes_in 0 130184 station_ip 83.122.59.147 130184 port 159 130184 unique_id port 130184 remote_ip 10.8.1.62 130186 username morteza 130186 mac 130186 bytes_out 0 130186 bytes_in 0 130186 station_ip 83.122.59.147 130186 port 250 130186 unique_id port 130186 remote_ip 10.8.0.46 130192 username malekpoir 130192 mac 130192 bytes_out 2878028 130192 bytes_in 35669284 130192 station_ip 5.119.69.108 130192 port 237 130192 unique_id port 130192 remote_ip 10.8.0.58 130193 username barzegar 130193 mac 130193 bytes_out 3147 130193 bytes_in 6160 130193 station_ip 5.119.155.205 130193 port 159 130193 unique_id port 130193 remote_ip 10.8.1.174 130195 username barzegar 130195 mac 130195 bytes_out 0 130195 bytes_in 0 130195 station_ip 5.119.155.205 130195 port 159 130195 unique_id port 130195 remote_ip 10.8.1.174 130198 username moradi 130198 mac 130198 bytes_out 0 130198 bytes_in 0 130198 station_ip 46.225.211.223 130198 port 249 130198 unique_id port 130202 username barzegar 130202 mac 130202 bytes_out 6835 130202 bytes_in 7195 130202 station_ip 5.119.155.205 130202 port 249 130202 unique_id port 130202 remote_ip 10.8.0.234 130203 username aminvpn 130203 mac 130203 bytes_out 0 130203 bytes_in 0 130203 station_ip 83.122.48.82 130203 port 255 130203 unique_id port 130203 remote_ip 10.8.0.14 130205 username aminvpn 130205 mac 130205 bytes_out 0 130205 bytes_in 0 130205 station_ip 37.129.163.146 130205 port 255 130205 unique_id port 130205 remote_ip 10.8.0.14 130207 username aminvpn 130207 mac 130207 bytes_out 0 130207 bytes_in 0 130207 station_ip 83.122.48.82 130207 port 256 130207 unique_id port 130207 remote_ip 10.8.0.14 130209 username aminvpn 130209 mac 130209 bytes_out 0 130209 bytes_in 0 130209 station_ip 83.122.48.82 130209 port 256 130209 unique_id port 130209 remote_ip 10.8.0.14 130210 username aminvpn 130210 mac 130210 bytes_out 0 130210 bytes_in 0 130210 station_ip 37.129.163.146 130210 port 254 130210 unique_id port 130210 remote_ip 10.8.0.14 130213 username saeed9658 130213 mac 130213 bytes_out 1988262 130213 bytes_in 6813006 130213 station_ip 5.119.106.59 130213 port 255 130213 unique_id port 130213 remote_ip 10.8.0.62 130216 username aminvpn 130216 mac 130216 bytes_out 339823 130216 bytes_in 4062973 130216 station_ip 37.129.163.146 130216 port 254 130216 unique_id port 130216 remote_ip 10.8.0.14 130220 username saeed9658 130220 mac 130220 bytes_out 144565 130220 bytes_in 562583 130220 station_ip 5.119.106.59 130220 port 255 130220 unique_id port 130220 remote_ip 10.8.0.62 130222 username alihosseini1 130222 mac 130222 bytes_out 0 130222 bytes_in 0 130222 station_ip 5.119.235.107 130191 bytes_out 7298 130191 bytes_in 20683 130191 station_ip 5.119.155.205 130191 port 159 130191 unique_id port 130191 remote_ip 10.8.1.174 130194 username jamali 130194 mac 130194 bytes_out 38758 130194 bytes_in 59690 130194 station_ip 5.120.91.145 130194 port 250 130194 unique_id port 130194 remote_ip 10.8.0.150 130196 username moradi 130196 kill_reason Another user logged on this global unique id 130196 mac 130196 bytes_out 0 130196 bytes_in 0 130196 station_ip 46.225.211.223 130196 port 249 130196 unique_id port 130197 username barzegar 130197 mac 130197 bytes_out 0 130197 bytes_in 0 130197 station_ip 5.119.155.205 130197 port 255 130197 unique_id port 130197 remote_ip 10.8.0.234 130206 username sedighe 130206 mac 130206 bytes_out 0 130206 bytes_in 0 130206 station_ip 83.123.67.15 130206 port 254 130206 unique_id port 130206 remote_ip 10.8.0.146 130208 username aminvpn 130208 mac 130208 bytes_out 0 130208 bytes_in 0 130208 station_ip 37.129.163.146 130208 port 254 130208 unique_id port 130208 remote_ip 10.8.0.14 130211 username sedighe 130211 mac 130211 bytes_out 4145 130211 bytes_in 6802 130211 station_ip 37.129.79.3 130211 port 257 130211 unique_id port 130211 remote_ip 10.8.0.146 130212 username aminvpn 130212 mac 130212 bytes_out 0 130212 bytes_in 0 130212 station_ip 83.122.48.82 130212 port 256 130212 unique_id port 130212 remote_ip 10.8.0.14 130214 username saeed9658 130214 mac 130214 bytes_out 0 130214 bytes_in 0 130214 station_ip 5.119.106.59 130214 port 255 130214 unique_id port 130214 remote_ip 10.8.0.62 130215 username avaanna 130215 mac 67043 username arezoo 67043 kill_reason Maximum check online fails reached 67043 mac 5.238.63.249:49246: Unknown host 67043 bytes_out 0 67043 bytes_in 0 67043 station_ip 5.238.63.249:49246 67043 port 1017 67043 unique_id port 67044 username arezoo 67044 kill_reason Maximum check online fails reached 67044 mac 5.238.63.249:49268: Unknown host 67044 bytes_out 0 67044 bytes_in 0 67044 station_ip 5.238.63.249:49268 67044 port 1017 67044 unique_id port 67046 username arezoo 67046 kill_reason Maximum check online fails reached 67046 mac 5.238.63.249:54713: Unknown host 67046 bytes_out 0 67046 bytes_in 0 67046 station_ip 5.238.63.249:54713 67046 port 1017 67046 unique_id port 130215 bytes_out 6125069 130215 bytes_in 1453448 130215 station_ip 185.144.64.46 130215 port 249 130215 unique_id port 130215 remote_ip 10.8.0.98 130218 username aminvpn 130218 mac 130218 bytes_out 0 130218 bytes_in 0 130218 station_ip 83.122.48.82 130218 port 249 130218 unique_id port 130218 remote_ip 10.8.0.14 130221 username sedighe 130221 mac 67054 username arezoo 67054 kill_reason Maximum check online fails reached 67054 mac 5.238.63.249:53670: Unknown host 67054 bytes_out 0 67054 bytes_in 0 67054 station_ip 5.238.63.249:53670 67054 port 1017 67054 unique_id port 130221 bytes_out 3340 130221 bytes_in 6037 130221 station_ip 37.129.79.3 130221 port 256 130221 unique_id port 130221 remote_ip 10.8.0.146 130223 username barzegar 130223 mac 130223 bytes_out 0 130223 bytes_in 0 130223 station_ip 5.119.155.205 130223 port 160 130223 unique_id port 130223 remote_ip 10.8.1.174 130226 username sedighe 130226 mac 130226 bytes_out 4539 130226 bytes_in 7641 130226 station_ip 37.129.79.3 130226 port 254 130226 unique_id port 130226 remote_ip 10.8.0.146 130229 username hamid.e 130229 unique_id port 130229 terminate_cause User-Request 130229 bytes_out 13517194 130229 bytes_in 144406584 130229 station_ip 188.245.88.34 130229 port 15730238 130222 port 161 130222 unique_id port 130222 remote_ip 10.8.1.106 130224 username alihosseini1 130224 mac 130224 bytes_out 0 130224 bytes_in 0 130224 station_ip 5.119.220.107 130224 port 253 130224 unique_id port 130224 remote_ip 10.8.0.166 130228 username barzegar 130228 mac 130228 bytes_out 0 130228 bytes_in 0 130228 station_ip 5.119.155.205 130228 port 253 130228 unique_id port 130228 remote_ip 10.8.0.234 130234 username aminvpn 130234 mac 130234 bytes_out 0 130234 bytes_in 0 130234 station_ip 83.122.48.82 130234 port 255 130234 unique_id port 130234 remote_ip 10.8.0.14 130237 username aminvpn 130237 unique_id port 130237 terminate_cause User-Request 130237 bytes_out 843640 130237 bytes_in 24261712 130237 station_ip 31.57.129.233 130237 port 15730241 130237 nas_port_type Virtual 130237 remote_ip 5.5.5.255 130244 username barzegar 130244 mac 130244 bytes_out 3629 130244 bytes_in 5346 130244 station_ip 5.119.155.205 130244 port 237 130244 unique_id port 130244 remote_ip 10.8.0.234 130246 username mohsenaskari 130246 mac 130246 bytes_out 228265 130246 bytes_in 2728584 130246 station_ip 46.225.232.204 130246 port 251 130246 unique_id port 130246 remote_ip 10.8.0.246 130249 username sedighe 130249 mac 130249 bytes_out 0 130249 bytes_in 0 130249 station_ip 37.129.79.3 130249 port 254 130249 unique_id port 130249 remote_ip 10.8.0.146 130253 username barzegar 130253 mac 130253 bytes_out 0 130253 bytes_in 0 130253 station_ip 5.119.155.205 130253 port 161 130253 unique_id port 130253 remote_ip 10.8.1.174 130256 username irannezhad 130256 mac 130256 bytes_out 0 130256 bytes_in 0 130256 station_ip 37.129.211.63 130256 port 161 130256 unique_id port 130256 remote_ip 10.8.1.134 130262 username jamali 130262 mac 130262 bytes_out 0 130262 bytes_in 0 130262 station_ip 5.120.91.145 130262 port 255 130262 unique_id port 130262 remote_ip 10.8.0.150 130265 username mohsenaskari 130265 mac 130265 bytes_out 131664 130265 bytes_in 1071008 130265 station_ip 46.225.210.124 130265 port 254 130265 unique_id port 130265 remote_ip 10.8.0.246 130269 username irannezhad 130269 mac 130269 bytes_out 0 130269 bytes_in 0 130269 station_ip 37.129.211.63 130269 port 161 130269 unique_id port 130269 remote_ip 10.8.1.134 130273 username irannezhad 130273 mac 130273 bytes_out 0 130273 bytes_in 0 130273 station_ip 37.129.211.63 130273 port 163 130273 unique_id port 130273 remote_ip 10.8.1.134 130275 username irannezhad 130275 mac 130275 bytes_out 0 130275 bytes_in 0 130275 station_ip 37.129.211.63 130275 port 163 130275 unique_id port 130275 remote_ip 10.8.1.134 130280 username irannezhad 130280 mac 130280 bytes_out 0 130280 bytes_in 0 130280 station_ip 37.129.211.63 130280 port 244 130280 unique_id port 130280 remote_ip 10.8.0.182 130285 username irannezhad 130285 mac 130285 bytes_out 0 130285 bytes_in 0 130285 station_ip 37.129.211.63 130285 port 244 130285 unique_id port 130285 remote_ip 10.8.0.182 130289 username irannezhad 130289 mac 130289 bytes_out 0 130289 bytes_in 0 130289 station_ip 37.129.211.63 130289 port 244 130289 unique_id port 130289 remote_ip 10.8.0.182 130290 username irannezhad 130290 mac 130290 bytes_out 0 130290 bytes_in 0 130290 station_ip 37.129.211.63 130290 port 244 130290 unique_id port 130290 remote_ip 10.8.0.182 130294 username irannezhad 130294 mac 130294 bytes_out 0 130294 bytes_in 0 130294 station_ip 37.129.211.63 130294 port 244 130225 station_ip 37.129.220.182 130225 port 249 130225 unique_id port 130225 remote_ip 10.8.0.142 130227 username avaanna 130227 mac 130227 bytes_out 693378 130227 bytes_in 13167168 130227 station_ip 185.144.64.46 130227 port 255 130227 unique_id port 130227 remote_ip 10.8.0.98 130230 username aminvpn 130230 mac 130230 bytes_out 0 130230 bytes_in 0 130230 station_ip 37.129.163.146 130230 port 250 130230 unique_id port 130230 remote_ip 10.8.0.14 130233 username barzegar 130233 mac 130233 bytes_out 7434 130233 bytes_in 16715 130233 station_ip 5.119.155.205 130233 port 253 130233 unique_id port 130233 remote_ip 10.8.0.234 130236 username aminvpn 130236 mac 130236 bytes_out 0 130236 bytes_in 0 130236 station_ip 37.129.163.146 130236 port 250 130236 unique_id port 130236 remote_ip 10.8.0.14 130239 username mohsenaskari 130239 mac 130239 bytes_out 0 130239 bytes_in 0 130239 station_ip 46.225.232.204 130239 port 251 130239 unique_id port 130239 remote_ip 10.8.0.246 130240 username aminvpn 130240 mac 130240 bytes_out 0 130240 bytes_in 0 130240 station_ip 37.129.163.146 130240 port 250 130240 unique_id port 130240 remote_ip 10.8.0.14 130248 username jamali 130248 mac 130248 bytes_out 15378 130248 bytes_in 15735 130248 station_ip 5.120.91.145 130248 port 250 130248 unique_id port 130248 remote_ip 10.8.0.150 130251 username irannezhad 130251 kill_reason Another user logged on this global unique id 130251 mac 130251 bytes_out 0 130251 bytes_in 0 130251 station_ip 37.129.211.63 130251 port 255 130251 unique_id port 130251 remote_ip 10.8.0.182 130254 username irannezhad 130254 mac 130254 bytes_out 0 130254 bytes_in 0 130254 station_ip 37.129.211.63 130254 port 161 130254 unique_id port 130254 remote_ip 10.8.1.134 130258 username alihosseini1 130258 kill_reason Another user logged on this global unique id 130258 mac 130258 bytes_out 0 130258 bytes_in 0 130258 station_ip 5.119.235.107 130258 port 249 130258 unique_id port 130258 remote_ip 10.8.0.166 130260 username amir 130260 kill_reason Another user logged on this global unique id 130260 mac 130260 bytes_out 0 130260 bytes_in 0 130260 station_ip 46.225.214.133 130260 port 159 130260 unique_id port 130260 remote_ip 10.8.1.22 130268 username jamali 130268 mac 130268 bytes_out 19820 130268 bytes_in 28692 130268 station_ip 5.120.91.145 130268 port 237 130268 unique_id port 130268 remote_ip 10.8.0.150 130270 username forozande 130270 kill_reason Relative expiration date has reached 130270 mac 130270 bytes_out 0 130270 bytes_in 0 130270 station_ip 83.123.110.189 130270 port 244 130270 unique_id port 130272 username jamali 130272 mac 130272 bytes_out 12734 130272 bytes_in 13715 130272 station_ip 5.120.91.145 130272 port 237 130272 unique_id port 130272 remote_ip 10.8.0.150 130276 username sedighe 130276 mac 130276 bytes_out 49631 130276 bytes_in 63054 130276 station_ip 37.129.23.19 130276 port 244 130276 unique_id port 130276 remote_ip 10.8.0.146 130277 username jamali 130277 mac 130277 bytes_out 52509 130277 bytes_in 164580 130277 station_ip 5.120.91.145 130277 port 237 130277 unique_id port 130277 remote_ip 10.8.0.150 130279 username barzegar 130279 mac 130279 bytes_out 0 130279 bytes_in 0 130279 station_ip 5.119.155.205 130279 port 161 130279 unique_id port 130279 remote_ip 10.8.1.174 130282 username irannezhad 130282 mac 130282 bytes_out 0 130282 bytes_in 0 130282 station_ip 37.129.211.63 130282 port 244 130282 unique_id port 130282 remote_ip 10.8.0.182 130286 username irannezhad 130229 nas_port_type Virtual 130229 remote_ip 5.5.5.253 130231 username aminvpn 130231 mac 130231 bytes_out 0 130231 bytes_in 0 130231 station_ip 83.122.48.82 130231 port 255 130231 unique_id port 130231 remote_ip 10.8.0.14 130232 username aminvpn 130232 mac 130232 bytes_out 0 130232 bytes_in 0 130232 station_ip 37.129.163.146 130232 port 250 130232 unique_id port 130232 remote_ip 10.8.0.14 130235 username kordestani 130235 mac 130235 bytes_out 0 130235 bytes_in 0 130235 station_ip 151.235.98.145 130235 port 251 130235 unique_id port 130235 remote_ip 10.8.0.134 130238 username aminvpn 130238 mac 130238 bytes_out 0 130238 bytes_in 0 130238 station_ip 83.122.48.82 130238 port 253 130238 unique_id port 130238 remote_ip 10.8.0.14 130241 username jamali 130241 mac 130241 bytes_out 336426 130241 bytes_in 2582617 130241 station_ip 5.120.91.145 130241 port 237 130241 unique_id port 130241 remote_ip 10.8.0.150 130242 username aminvpn 130242 mac 130242 bytes_out 0 130242 bytes_in 0 130242 station_ip 83.122.48.82 130242 port 253 130242 unique_id port 130242 remote_ip 10.8.0.14 130243 username sedighe 130243 mac 130243 bytes_out 81056 130243 bytes_in 774826 130243 station_ip 37.129.79.3 130243 port 254 130243 unique_id port 130243 remote_ip 10.8.0.146 130245 username irannezhad 130245 mac 130245 bytes_out 0 130245 bytes_in 0 130245 station_ip 37.129.211.63 130245 port 237 130245 unique_id port 130245 remote_ip 10.8.0.182 130247 username barzegar 130247 mac 130247 bytes_out 0 130247 bytes_in 0 130247 station_ip 5.119.155.205 130247 port 161 130247 unique_id port 130247 remote_ip 10.8.1.174 130250 username barzegar 130250 mac 130250 bytes_out 0 130250 bytes_in 0 130250 station_ip 5.119.155.205 130250 port 161 130250 unique_id port 130250 remote_ip 10.8.1.174 130252 username irannezhad 130252 mac 130252 bytes_out 0 130252 bytes_in 0 130252 station_ip 37.129.211.63 130252 port 255 130252 unique_id port 130255 username alipour 130255 mac 130255 bytes_out 2664772 130255 bytes_in 35449744 130255 station_ip 37.129.249.144 130255 port 257 130255 unique_id port 130255 remote_ip 10.8.0.102 130257 username jamali 130257 mac 130257 bytes_out 0 130257 bytes_in 0 130257 station_ip 5.120.91.145 130257 port 237 130257 unique_id port 67102 username arezoo 67102 kill_reason Maximum check online fails reached 67102 mac 5.238.63.249:49188: Unknown host 67102 bytes_out 0 67102 bytes_in 0 67102 station_ip 5.238.63.249:49188 67102 port 1017 67102 unique_id port 130257 remote_ip 10.8.0.150 130259 username irannezhad 130259 mac 130259 bytes_out 0 130259 bytes_in 0 130259 station_ip 37.129.211.63 130259 port 161 130259 unique_id port 130259 remote_ip 10.8.1.134 130261 username irannezhad 130261 mac 130261 bytes_out 0 130261 bytes_in 0 130261 station_ip 37.129.211.63 130261 port 237 130261 unique_id port 130261 remote_ip 10.8.0.182 130263 username zare 130263 mac 130263 bytes_out 1634861 130263 bytes_in 18763080 130263 station_ip 94.183.214.14 130263 port 250 130263 unique_id port 130263 remote_ip 10.8.0.18 130264 username barzegar 130264 mac 130264 bytes_out 8407 130264 bytes_in 17495 130264 station_ip 5.119.155.205 130264 port 161 130264 unique_id port 130264 remote_ip 10.8.1.174 130266 username alihosseini1 130266 mac 130266 bytes_out 0 130266 bytes_in 0 130266 station_ip 5.119.235.107 130266 port 249 130266 unique_id port 130267 username forozande 131295 username barzegar 130267 kill_reason Relative expiration date has reached 130267 mac 130267 bytes_out 0 130267 bytes_in 0 130267 station_ip 37.129.225.201 130267 port 244 130267 unique_id port 130267 remote_ip 10.8.0.74 130271 username mohsenaskari 130271 mac 130271 bytes_out 239119 130271 bytes_in 2813164 130271 station_ip 46.225.210.124 130271 port 250 130271 unique_id port 130271 remote_ip 10.8.0.246 130274 username alipour 130274 mac 130274 bytes_out 56018 130274 bytes_in 141490 130274 station_ip 37.129.249.144 130274 port 251 130274 unique_id port 130274 remote_ip 10.8.0.102 130278 username vanila 130278 mac 130278 bytes_out 5274931 130278 bytes_in 1445821 130278 station_ip 37.129.103.100 130278 port 244 130278 unique_id port 130278 remote_ip 10.8.0.178 130281 username houshang 130281 mac 130281 bytes_out 28883 130281 bytes_in 50399 130281 station_ip 5.119.30.28 130281 port 250 130281 unique_id port 130281 remote_ip 10.8.0.22 130283 username irannezhad 130283 mac 130283 bytes_out 0 130283 bytes_in 0 130283 station_ip 37.129.211.63 130283 port 161 67127 username vahid 67127 kill_reason Maximum check online fails reached 67127 mac 91.251.220.41:10732: Unknown host 67127 bytes_out 0 67127 bytes_in 0 67127 station_ip 91.251.220.41:10732 67127 port 1017 67127 unique_id port 130283 unique_id port 130283 remote_ip 10.8.1.134 130284 username irannezhad 130284 mac 130284 bytes_out 0 130284 bytes_in 0 130284 station_ip 37.129.211.63 130284 port 244 130284 unique_id port 130284 remote_ip 10.8.0.182 130287 username irannezhad 130287 mac 130287 bytes_out 0 130287 bytes_in 0 130287 station_ip 37.129.211.63 130287 port 244 130287 unique_id port 130287 remote_ip 10.8.0.182 130288 username irannezhad 130288 mac 130288 bytes_out 0 130288 bytes_in 0 130288 station_ip 37.129.211.63 130288 port 244 130288 unique_id port 130288 remote_ip 10.8.0.182 130293 username irannezhad 130293 mac 130293 bytes_out 0 130293 bytes_in 0 130293 station_ip 37.129.211.63 130293 port 244 130293 unique_id port 130293 remote_ip 10.8.0.182 130297 username irannezhad 130297 mac 130297 bytes_out 0 130297 bytes_in 0 130297 station_ip 37.129.211.63 130297 port 244 130297 unique_id port 130297 remote_ip 10.8.0.182 130299 username irannezhad 130299 mac 130299 bytes_out 0 130299 bytes_in 0 130299 station_ip 37.129.211.63 130299 port 244 130299 unique_id port 130299 remote_ip 10.8.0.182 130303 username irannezhad 130303 mac 130303 bytes_out 0 130303 bytes_in 0 130303 station_ip 37.129.211.63 130303 port 244 130303 unique_id port 130303 remote_ip 10.8.0.182 130305 username irannezhad 130305 mac 130305 bytes_out 0 130305 bytes_in 0 130305 station_ip 37.129.211.63 130305 port 237 130305 unique_id port 130305 remote_ip 10.8.0.182 130311 username vanila 130311 mac 130311 bytes_out 9240720 130311 bytes_in 2480554 130311 station_ip 37.129.103.100 130311 port 250 130311 unique_id port 130311 remote_ip 10.8.0.178 130314 username irannezhad 130314 mac 130314 bytes_out 0 130314 bytes_in 0 130314 station_ip 37.129.211.63 130314 port 237 130314 unique_id port 130314 remote_ip 10.8.0.182 130316 username irannezhad 130316 mac 130316 bytes_out 0 130316 bytes_in 0 130316 station_ip 37.129.211.63 130316 port 237 130316 unique_id port 130316 remote_ip 10.8.0.182 130323 username irannezhad 130323 mac 130323 bytes_out 0 130323 bytes_in 0 130323 station_ip 37.129.211.63 130323 port 237 130323 unique_id port 130323 remote_ip 10.8.0.182 130327 username jamali 130286 mac 130286 bytes_out 0 130286 bytes_in 0 130286 station_ip 37.129.211.63 130286 port 244 130286 unique_id port 130286 remote_ip 10.8.0.182 130291 username alipour 130291 mac 130291 bytes_out 0 130291 bytes_in 0 130291 station_ip 37.129.249.144 130291 port 162 130291 unique_id port 130291 remote_ip 10.8.1.50 130292 username irannezhad 130292 mac 130292 bytes_out 0 130292 bytes_in 0 130292 station_ip 37.129.211.63 130292 port 244 130292 unique_id port 130292 remote_ip 10.8.0.182 130296 username irannezhad 130296 mac 130296 bytes_out 0 130296 bytes_in 0 130296 station_ip 37.129.211.63 130296 port 244 130296 unique_id port 130296 remote_ip 10.8.0.182 130301 username irannezhad 130301 mac 130301 bytes_out 0 130301 bytes_in 0 130301 station_ip 37.129.211.63 130301 port 244 130301 unique_id port 130301 remote_ip 10.8.0.182 130302 username irannezhad 130302 mac 130302 bytes_out 0 130302 bytes_in 0 130302 station_ip 37.129.211.63 130302 port 244 130302 unique_id port 130302 remote_ip 10.8.0.182 130304 username barzegar 130304 mac 130304 bytes_out 0 130304 bytes_in 0 130304 station_ip 5.119.155.205 130304 port 237 130304 unique_id port 130304 remote_ip 10.8.0.234 130309 username irannezhad 130309 mac 130309 bytes_out 0 130309 bytes_in 0 130309 station_ip 37.129.211.63 130309 port 237 130309 unique_id port 130309 remote_ip 10.8.0.182 130310 username irannezhad 130310 mac 130310 bytes_out 0 130310 bytes_in 0 130310 station_ip 37.129.211.63 130310 port 237 130310 unique_id port 130310 remote_ip 10.8.0.182 130312 username irannezhad 130312 mac 130312 bytes_out 0 130312 bytes_in 0 130312 station_ip 37.129.211.63 130312 port 237 130312 unique_id port 130312 remote_ip 10.8.0.182 130313 username irannezhad 130313 mac 130313 bytes_out 0 130313 bytes_in 0 130313 station_ip 37.129.211.63 130313 port 237 130313 unique_id port 130313 remote_ip 10.8.0.182 130318 username irannezhad 130318 mac 130318 bytes_out 0 130318 bytes_in 0 130318 station_ip 37.129.211.63 130318 port 237 130318 unique_id port 130318 remote_ip 10.8.0.182 130319 username irannezhad 130319 mac 130319 bytes_out 0 130319 bytes_in 0 130319 station_ip 37.129.211.63 130319 port 237 130319 unique_id port 130319 remote_ip 10.8.0.182 130320 username irannezhad 130320 mac 130320 bytes_out 0 130320 bytes_in 0 130320 station_ip 37.129.211.63 130320 port 237 130320 unique_id port 130320 remote_ip 10.8.0.182 130321 username irannezhad 130321 mac 130321 bytes_out 0 130321 bytes_in 0 130321 station_ip 37.129.211.63 130321 port 237 130321 unique_id port 130321 remote_ip 10.8.0.182 130322 username irannezhad 130322 mac 130322 bytes_out 0 130322 bytes_in 0 130322 station_ip 37.129.211.63 130322 port 237 130322 unique_id port 130322 remote_ip 10.8.0.182 130324 username vanila 130324 mac 130324 bytes_out 0 130324 bytes_in 0 130324 station_ip 37.129.103.100 130324 port 244 130324 unique_id port 130324 remote_ip 10.8.0.178 130325 username kordestani 130325 mac 130325 bytes_out 1298259 130325 bytes_in 12652677 130325 station_ip 151.235.98.145 130325 port 160 130325 unique_id port 130325 remote_ip 10.8.1.98 130326 username mosi 130326 mac 130326 bytes_out 0 130326 bytes_in 0 130326 station_ip 5.200.123.153 130326 port 252 130326 unique_id port 130331 username amirabbas 130331 unique_id port 130331 terminate_cause User-Request 130331 bytes_out 9811771 130331 bytes_in 251902326 130294 unique_id port 130294 remote_ip 10.8.0.182 130295 username irannezhad 130295 mac 130295 bytes_out 0 130295 bytes_in 0 130295 station_ip 37.129.211.63 130295 port 244 130295 unique_id port 130295 remote_ip 10.8.0.182 130298 username irannezhad 130298 mac 130298 bytes_out 0 130298 bytes_in 0 130298 station_ip 37.129.211.63 130298 port 244 130298 unique_id port 130298 remote_ip 10.8.0.182 130300 username irannezhad 130300 mac 130300 bytes_out 0 130300 bytes_in 0 130300 station_ip 37.129.211.63 130300 port 244 130300 unique_id port 130300 remote_ip 10.8.0.182 130306 username irannezhad 130306 mac 130306 bytes_out 0 130306 bytes_in 0 130306 station_ip 37.129.211.63 130306 port 237 130306 unique_id port 130306 remote_ip 10.8.0.182 130307 username irannezhad 130307 mac 130307 bytes_out 0 130307 bytes_in 0 130307 station_ip 37.129.211.63 130307 port 237 130307 unique_id port 130307 remote_ip 10.8.0.182 130308 username irannezhad 130308 mac 130308 bytes_out 0 130308 bytes_in 0 130308 station_ip 37.129.211.63 130308 port 237 130308 unique_id port 130308 remote_ip 10.8.0.182 130315 username irannezhad 130315 mac 130315 bytes_out 0 130315 bytes_in 0 130315 station_ip 37.129.211.63 130315 port 237 130315 unique_id port 130315 remote_ip 10.8.0.182 130317 username irannezhad 130317 mac 130317 bytes_out 0 130317 bytes_in 0 130317 station_ip 37.129.211.63 130317 port 237 130317 unique_id port 130317 remote_ip 10.8.0.182 130328 username mosi 130328 mac 130328 bytes_out 0 130328 bytes_in 0 130328 station_ip 5.200.123.153 130328 port 244 130328 unique_id port 130328 remote_ip 10.8.0.138 130329 username mohsenaskari 130329 mac 130329 bytes_out 293544 130329 bytes_in 1103709 130329 station_ip 46.225.210.124 130329 port 249 130329 unique_id port 130329 remote_ip 10.8.0.246 130330 username mosi 130330 mac 130330 bytes_out 7039 130330 bytes_in 7446 130330 station_ip 5.200.123.153 130330 port 251 130330 unique_id port 130330 remote_ip 10.8.0.138 130332 username barzegar 130332 mac 130332 bytes_out 0 130332 bytes_in 0 130332 station_ip 5.119.155.205 130332 port 162 130332 unique_id port 130332 remote_ip 10.8.1.174 130336 username amir 130336 kill_reason Maximum check online fails reached 130336 mac 130336 bytes_out 0 130336 bytes_in 0 130336 station_ip 46.225.214.133 130336 port 159 130336 unique_id port 130337 username barzegar 130337 mac 130337 bytes_out 0 130337 bytes_in 0 130337 station_ip 5.119.155.205 130337 port 244 130337 unique_id port 130337 remote_ip 10.8.0.234 130339 username irannezhad 130339 mac 130339 bytes_out 0 130339 bytes_in 0 130339 station_ip 37.129.211.63 130339 port 237 130339 unique_id port 130339 remote_ip 10.8.0.182 130343 username irannezhad 130343 mac 130343 bytes_out 0 130343 bytes_in 0 130343 station_ip 37.129.211.63 130343 port 237 130343 unique_id port 130343 remote_ip 10.8.0.182 130344 username irannezhad 130344 mac 130344 bytes_out 0 130344 bytes_in 0 130344 station_ip 37.129.211.63 130344 port 237 130344 unique_id port 130344 remote_ip 10.8.0.182 130345 username irannezhad 130345 mac 130345 bytes_out 3563 130345 bytes_in 6711 130345 station_ip 37.129.211.63 130345 port 237 130345 unique_id port 130345 remote_ip 10.8.0.182 130354 username irannezhad 130354 mac 130354 bytes_out 0 130354 bytes_in 0 130354 station_ip 37.129.211.63 130354 port 237 130354 unique_id port 130354 remote_ip 10.8.0.182 130327 mac 130327 bytes_out 224357 130327 bytes_in 243510 130327 station_ip 5.120.91.145 130327 port 251 130327 unique_id port 130327 remote_ip 10.8.0.150 130333 username sedighe 130333 mac 130333 bytes_out 66101 130333 bytes_in 62279 130333 station_ip 37.129.23.19 130333 port 244 130333 unique_id port 130333 remote_ip 10.8.0.146 130334 username barzegar 130334 mac 130334 bytes_out 14459 130334 bytes_in 7026 130334 station_ip 5.119.155.205 130334 port 244 130334 unique_id port 130334 remote_ip 10.8.0.234 130338 username irannezhad 130338 mac 130338 bytes_out 886232 130338 bytes_in 1035313 130338 station_ip 37.129.211.63 130338 port 237 130338 unique_id port 130338 remote_ip 10.8.0.182 130342 username irannezhad 130342 mac 130342 bytes_out 0 130342 bytes_in 0 130342 station_ip 37.129.211.63 130342 port 237 130342 unique_id port 130342 remote_ip 10.8.0.182 130347 username irannezhad 130347 mac 130347 bytes_out 0 130347 bytes_in 0 130347 station_ip 37.129.211.63 130347 port 237 130347 unique_id port 130347 remote_ip 10.8.0.182 130348 username irannezhad 130348 mac 130348 bytes_out 0 130348 bytes_in 0 130348 station_ip 37.129.211.63 130348 port 237 130348 unique_id port 130348 remote_ip 10.8.0.182 130349 username jamali 130349 mac 130349 bytes_out 70253 130349 bytes_in 371079 130349 station_ip 5.120.91.145 130349 port 252 130349 unique_id port 130349 remote_ip 10.8.0.150 130351 username irannezhad 130351 mac 130351 bytes_out 0 130351 bytes_in 0 130351 station_ip 37.129.211.63 67186 username arezoo 67186 kill_reason Maximum check online fails reached 67186 mac 5.237.84.167:61304: Unknown host 67186 bytes_out 0 67186 bytes_in 0 67186 station_ip 5.237.84.167:61304 67186 port 1017 67186 unique_id port 130351 port 237 130351 unique_id port 130351 remote_ip 10.8.0.182 130356 username irannezhad 130356 mac 130356 bytes_out 0 130356 bytes_in 0 130356 station_ip 37.129.211.63 130356 port 237 130356 unique_id port 130356 remote_ip 10.8.0.182 130359 username amir 130359 mac 130359 bytes_out 0 130359 bytes_in 0 130359 station_ip 46.225.214.133 130359 port 159 130359 unique_id port 130359 remote_ip 10.8.1.22 130362 username alipour 130362 mac 130362 bytes_out 0 130362 bytes_in 0 130362 station_ip 37.129.249.144 130362 port 161 130362 unique_id port 130362 remote_ip 10.8.1.50 130363 username mosi 130363 mac 130363 bytes_out 80402 130363 bytes_in 123775 130363 station_ip 5.200.123.153 130363 port 249 130363 unique_id port 130363 remote_ip 10.8.0.138 130365 username amir 130365 mac 130365 bytes_out 0 130365 bytes_in 0 130365 station_ip 46.225.214.133 130365 port 159 130365 unique_id port 130365 remote_ip 10.8.1.22 130367 username kordestani 130367 mac 130367 bytes_out 0 130367 bytes_in 0 130367 station_ip 151.235.99.208 67198 username vahid 67198 kill_reason Maximum check online fails reached 67198 mac 5.208.243.73:20488: Unknown host 67198 bytes_out 0 67198 bytes_in 0 67198 station_ip 5.208.243.73:20488 67198 port 1017 67198 unique_id port 130367 port 159 130367 unique_id port 130367 remote_ip 10.8.1.98 130368 username alihosseini1 130368 kill_reason Another user logged on this global unique id 130368 mac 130368 bytes_out 0 130368 bytes_in 0 130368 station_ip 5.120.101.199 130368 port 251 130368 unique_id port 130368 remote_ip 10.8.0.166 130369 username mosi 130369 mac 130369 bytes_out 0 130369 bytes_in 0 130369 station_ip 5.200.123.153 130369 port 253 130369 unique_id port 130369 remote_ip 10.8.0.138 130331 station_ip 37.27.30.23 130331 port 15730240 130331 nas_port_type Virtual 130331 remote_ip 5.5.5.250 130335 username avaanna 130335 mac 130335 bytes_out 791372 130335 bytes_in 7094997 130335 station_ip 185.144.64.46 130335 port 250 130335 unique_id port 130335 remote_ip 10.8.0.98 130340 username irannezhad 130340 mac 130340 bytes_out 0 130340 bytes_in 0 130340 station_ip 37.129.211.63 130340 port 237 130340 unique_id port 130340 remote_ip 10.8.0.182 130341 username irannezhad 130341 mac 130341 bytes_out 0 130341 bytes_in 0 130341 station_ip 37.129.211.63 130341 port 237 130341 unique_id port 130341 remote_ip 10.8.0.182 130346 username irannezhad 130346 mac 130346 bytes_out 0 130346 bytes_in 0 130346 station_ip 37.129.211.63 130346 port 237 130346 unique_id port 130346 remote_ip 10.8.0.182 130350 username irannezhad 130350 mac 130350 bytes_out 0 130350 bytes_in 0 130350 station_ip 37.129.211.63 130350 port 237 130350 unique_id port 130350 remote_ip 10.8.0.182 130352 username irannezhad 130352 mac 130352 bytes_out 0 130352 bytes_in 0 130352 station_ip 37.129.211.63 130352 port 237 130352 unique_id port 130352 remote_ip 10.8.0.182 130353 username jamali 130353 mac 130353 bytes_out 0 67179 username arezoo 67179 kill_reason Maximum check online fails reached 67179 mac 5.237.84.167:49193: Unknown host 67179 bytes_out 0 67179 bytes_in 0 67179 station_ip 5.237.84.167:49193 67179 port 1017 67179 unique_id port 130353 bytes_in 0 130353 station_ip 5.120.91.145 130353 port 250 130353 unique_id port 130353 remote_ip 10.8.0.150 130355 username irannezhad 130355 mac 130355 bytes_out 0 130355 bytes_in 0 130355 station_ip 37.129.211.63 130355 port 237 130355 unique_id port 130355 remote_ip 10.8.0.182 130357 username aminvpn 130357 mac 130357 bytes_out 0 130357 bytes_in 0 130357 station_ip 37.129.163.146 130357 port 253 130357 unique_id port 130357 remote_ip 10.8.0.14 130360 username irannezhad 130360 mac 130360 bytes_out 32428 130360 bytes_in 93917 130360 station_ip 37.129.211.63 130360 port 237 130360 unique_id port 130360 remote_ip 10.8.0.182 130364 username zare 130364 mac 130364 bytes_out 2009587 130364 bytes_in 29284428 130364 station_ip 94.183.214.14 130364 port 244 130364 unique_id port 130364 remote_ip 10.8.0.18 130366 username aminvpn 130366 unique_id port 130366 terminate_cause Lost-Carrier 130366 bytes_out 9653266 130366 bytes_in 337646208 130366 station_ip 31.57.129.233 130366 port 15730244 130366 nas_port_type Virtual 130366 remote_ip 5.5.5.255 130384 username alipour 130384 mac 130384 bytes_out 0 130384 bytes_in 0 130384 station_ip 37.129.249.144 130384 port 237 130384 unique_id port 130384 remote_ip 10.8.0.102 130386 username alihosseini1 130386 mac 130386 bytes_out 0 130386 bytes_in 0 130386 station_ip 5.120.101.199 130386 port 251 130386 unique_id port 130388 username mosi 130388 mac 130388 bytes_out 0 130388 bytes_in 0 130388 station_ip 5.200.123.153 130388 port 255 130388 unique_id port 130388 remote_ip 10.8.0.138 130399 username mosi 130399 mac 130399 bytes_out 33164 130399 bytes_in 46998 130399 station_ip 37.137.28.70 130399 port 160 130399 unique_id port 130399 remote_ip 10.8.1.86 130402 username barzegar 130402 mac 130402 bytes_out 0 130402 bytes_in 0 130402 station_ip 5.119.155.205 130402 port 251 130402 unique_id port 130402 remote_ip 10.8.0.234 130404 username aminvpn 130404 mac 130404 bytes_out 557238 130404 bytes_in 3064776 130404 station_ip 83.122.48.82 130358 username aminvpn 130358 mac 130358 bytes_out 0 130358 bytes_in 0 130358 station_ip 151.238.226.109 130358 port 250 130358 unique_id port 130358 remote_ip 10.8.0.14 130361 username barzegar 130361 mac 130361 bytes_out 0 130361 bytes_in 0 130361 station_ip 5.119.155.205 130361 port 237 130361 unique_id port 130361 remote_ip 10.8.0.234 130371 username mosi 130371 mac 130371 bytes_out 0 130371 bytes_in 0 130371 station_ip 5.200.123.153 130371 port 254 130371 unique_id port 130371 remote_ip 10.8.0.138 130372 username vanila 130372 mac 130372 bytes_out 0 130372 bytes_in 0 130372 station_ip 37.129.103.100 130372 port 237 130372 unique_id port 130372 remote_ip 10.8.0.178 130377 username kordestani 130377 mac 130377 bytes_out 0 130377 bytes_in 0 130377 station_ip 151.235.99.208 130377 port 254 130377 unique_id port 130377 remote_ip 10.8.0.134 130380 username forozande 130380 kill_reason Relative expiration date has reached 130380 mac 130380 bytes_out 0 130380 bytes_in 0 130380 station_ip 83.123.110.189 130380 port 253 130380 unique_id port 130382 username forozande 130382 kill_reason Relative expiration date has reached 130382 mac 130382 bytes_out 0 130382 bytes_in 0 130382 station_ip 83.123.110.189 130382 port 253 130382 unique_id port 130387 username barzegar 130387 mac 130387 bytes_out 0 130387 bytes_in 0 130387 station_ip 5.119.155.205 130387 port 249 130387 unique_id port 130387 remote_ip 10.8.0.234 130389 username barzegar 130389 mac 130389 bytes_out 0 130389 bytes_in 0 130389 station_ip 5.119.155.205 130389 port 159 130389 unique_id port 130389 remote_ip 10.8.1.174 130392 username moradi 130392 mac 130392 bytes_out 51301 130392 bytes_in 83715 130392 station_ip 83.123.196.32 130392 port 160 130392 unique_id port 130392 remote_ip 10.8.1.202 130393 username aminvpn 130393 mac 130393 bytes_out 0 130393 bytes_in 0 130393 station_ip 83.122.48.82 130393 port 244 130393 unique_id port 130393 remote_ip 10.8.0.14 130394 username vanila 130394 mac 130394 bytes_out 0 130394 bytes_in 0 130394 station_ip 37.129.103.100 130394 port 249 130394 unique_id port 130394 remote_ip 10.8.0.178 130400 username irannezhad 130400 kill_reason Another user logged on this global unique id 130400 mac 130400 bytes_out 0 130400 bytes_in 0 130400 station_ip 37.129.211.63 130400 port 250 130400 unique_id port 130405 username aminvpn 130405 mac 130405 bytes_out 0 130405 bytes_in 0 130405 station_ip 83.122.48.82 130405 port 251 130405 unique_id port 130405 remote_ip 10.8.0.14 130411 username barzegar 130411 mac 130411 bytes_out 0 130411 bytes_in 0 130411 station_ip 5.119.155.205 130411 port 253 130411 unique_id port 130411 remote_ip 10.8.0.234 130412 username moradi 130412 kill_reason Another user logged on this global unique id 130412 mac 130412 bytes_out 0 130412 bytes_in 0 130412 station_ip 83.123.196.32 130412 port 159 130412 unique_id port 130413 username jamali 130413 kill_reason Another user logged on this global unique id 130413 mac 130413 bytes_out 0 130413 bytes_in 0 130413 station_ip 5.120.91.145 130413 port 252 130413 unique_id port 130413 remote_ip 10.8.0.150 130415 username sedighe 130415 mac 130415 bytes_out 0 130415 bytes_in 0 130415 station_ip 37.129.64.175 130415 port 254 130415 unique_id port 130415 remote_ip 10.8.0.146 130416 username rezasekonji 130416 kill_reason Relative expiration date has reached 130416 mac 130416 bytes_out 0 130416 bytes_in 0 130416 station_ip 83.123.125.24 130416 port 254 130370 username alipour 130370 mac 130370 bytes_out 0 130370 bytes_in 0 130370 station_ip 37.129.249.144 130370 port 249 130370 unique_id port 130370 remote_ip 10.8.0.102 130373 username aminvpn 130373 unique_id port 130373 terminate_cause Lost-Carrier 130373 bytes_out 406417 130373 bytes_in 6431150 130373 station_ip 69.194.93.218 130373 port 15730246 130373 nas_port_type Virtual 130373 remote_ip 5.5.5.253 130374 username jamali 130374 mac 130374 bytes_out 0 130374 bytes_in 0 130374 station_ip 5.120.91.145 130374 port 252 130374 unique_id port 130374 remote_ip 10.8.0.150 130375 username alipour 130375 mac 130375 bytes_out 0 130375 bytes_in 0 130375 station_ip 37.129.249.144 130375 port 249 130375 unique_id port 130375 remote_ip 10.8.0.102 130376 username mosi 130376 mac 130376 bytes_out 0 130376 bytes_in 0 130376 station_ip 5.200.123.153 130376 port 253 130376 unique_id port 130376 remote_ip 10.8.0.138 130378 username barzegar 130378 mac 130378 bytes_out 0 130378 bytes_in 0 130378 station_ip 5.119.155.205 130378 port 249 130378 unique_id port 130378 remote_ip 10.8.0.234 130379 username forozande 130379 kill_reason Relative expiration date has reached 130379 mac 130379 bytes_out 0 130379 bytes_in 0 130379 station_ip 83.123.110.189 130379 port 253 130379 unique_id port 130381 username forozande 130381 kill_reason Relative expiration date has reached 130381 mac 130381 bytes_out 0 130381 bytes_in 0 130381 station_ip 83.123.110.189 130381 port 253 130381 unique_id port 130383 username irannezhad 130383 kill_reason Another user logged on this global unique id 130383 mac 130383 bytes_out 0 130383 bytes_in 0 130383 station_ip 37.129.211.63 130383 port 250 130383 unique_id port 130383 remote_ip 10.8.0.182 130385 username moradi 130385 mac 130385 bytes_out 776936 130385 bytes_in 7455562 130385 station_ip 83.123.196.32 130385 port 159 130385 unique_id port 130385 remote_ip 10.8.1.202 130390 username irannezhad 130390 kill_reason Another user logged on this global unique id 130390 mac 130390 bytes_out 0 130390 bytes_in 0 130390 station_ip 37.129.211.63 130390 port 250 130390 unique_id port 130391 username aminvpn 130391 mac 130391 bytes_out 0 130391 bytes_in 0 130391 station_ip 83.122.48.82 130391 port 244 130391 unique_id port 130391 remote_ip 10.8.0.14 130395 username barzegar 130395 mac 130395 bytes_out 0 130395 bytes_in 0 130395 station_ip 5.119.155.205 130395 port 249 130395 unique_id port 130395 remote_ip 10.8.0.234 130396 username forozande 130396 kill_reason Relative expiration date has reached 130396 mac 130396 bytes_out 0 130396 bytes_in 0 130396 station_ip 83.122.183.107 130396 port 251 130396 unique_id port 130397 username forozande 130397 kill_reason Relative expiration date has reached 130397 mac 130397 bytes_out 0 130397 bytes_in 0 130397 station_ip 83.122.183.107 130397 port 251 130397 unique_id port 130398 username mosi 130398 mac 130398 bytes_out 233783 130398 bytes_in 360871 130398 station_ip 5.200.123.153 130398 port 237 130398 unique_id port 130398 remote_ip 10.8.0.138 130401 username mosi 130401 mac 130401 bytes_out 0 130401 bytes_in 0 130401 station_ip 37.137.28.70 130401 port 160 130401 unique_id port 130401 remote_ip 10.8.1.86 130403 username moradi 130403 kill_reason Another user logged on this global unique id 130403 mac 130403 bytes_out 0 130403 bytes_in 0 130403 station_ip 83.123.196.32 130403 port 159 130403 unique_id port 130403 remote_ip 10.8.1.202 130408 username mosi 130408 mac 130408 bytes_out 0 130404 port 244 130404 unique_id port 130404 remote_ip 10.8.0.14 130406 username aminvpn 130406 mac 130406 bytes_out 0 130406 bytes_in 0 130406 station_ip 83.122.48.82 130406 port 244 130406 unique_id port 130406 remote_ip 10.8.0.14 130407 username irannezhad 130407 kill_reason Another user logged on this global unique id 130407 mac 130407 bytes_out 0 130407 bytes_in 0 130407 station_ip 37.129.211.63 130407 port 250 130407 unique_id port 130409 username barzegar 130409 mac 130409 bytes_out 0 130409 bytes_in 0 130409 station_ip 5.119.155.205 130409 port 160 130409 unique_id port 130409 remote_ip 10.8.1.174 130410 username kordestani 130410 mac 130410 bytes_out 0 130410 bytes_in 0 130410 station_ip 151.235.99.208 130410 port 251 130410 unique_id port 130410 remote_ip 10.8.0.134 130417 username mosi 130417 mac 130417 bytes_out 1274203 130417 bytes_in 10884523 130417 station_ip 37.137.28.70 130417 port 244 130417 unique_id port 130417 remote_ip 10.8.0.138 130418 username barzegar 130418 mac 130418 bytes_out 0 130418 bytes_in 0 130418 station_ip 5.119.155.205 130418 port 251 130418 unique_id port 130418 remote_ip 10.8.0.234 130433 username moradi 130433 mac 130433 bytes_out 0 130433 bytes_in 0 130433 station_ip 83.123.196.32 130433 port 244 130433 unique_id port 130433 remote_ip 10.8.0.250 130434 username barzegar 130434 mac 130434 bytes_out 0 130434 bytes_in 0 130434 station_ip 5.119.155.205 130434 port 160 130434 unique_id port 130434 remote_ip 10.8.1.174 130437 username irannezhad 130437 kill_reason Another user logged on this global unique id 130437 mac 130437 bytes_out 0 130437 bytes_in 0 130437 station_ip 37.129.211.63 130437 port 250 130437 unique_id port 130440 username irannezhad 130440 mac 130440 bytes_out 0 130440 bytes_in 0 130440 station_ip 37.129.211.63 130440 port 250 130440 unique_id port 130444 username irannezhad 130444 mac 130444 bytes_out 0 130444 bytes_in 0 130444 station_ip 37.129.211.63 130444 port 244 130444 unique_id port 130444 remote_ip 10.8.0.182 130450 username irannezhad 130450 mac 130450 bytes_out 0 130450 bytes_in 0 130450 station_ip 37.129.211.63 130450 port 244 130450 unique_id port 130450 remote_ip 10.8.0.182 130452 username irannezhad 130452 mac 130452 bytes_out 0 130452 bytes_in 0 130452 station_ip 37.129.211.63 130452 port 244 67243 username vahid 67243 kill_reason Maximum check online fails reached 67243 mac 5.209.162.68:20475: Unknown host 67243 bytes_out 0 67243 bytes_in 0 67243 station_ip 5.209.162.68:20475 67243 port 1017 67243 unique_id port 130452 unique_id port 130452 remote_ip 10.8.0.182 130458 username moradi 130458 mac 130458 bytes_out 399196 130458 bytes_in 5719232 130458 station_ip 83.123.196.32 130458 port 252 130458 unique_id port 130458 remote_ip 10.8.0.250 130464 username irannezhad 130464 mac 130464 bytes_out 0 130464 bytes_in 0 130464 station_ip 37.129.211.63 130464 port 244 130464 unique_id port 130464 remote_ip 10.8.0.182 130466 username irannezhad 130466 mac 130466 bytes_out 0 130466 bytes_in 0 130466 station_ip 37.129.211.63 130466 port 244 130466 unique_id port 130466 remote_ip 10.8.0.182 130469 username irannezhad 130469 mac 130469 bytes_out 0 130469 bytes_in 0 130469 station_ip 37.129.211.63 130469 port 244 130469 unique_id port 130469 remote_ip 10.8.0.182 130473 username moradi 130473 mac 130473 bytes_out 44492 130473 bytes_in 63412 130473 station_ip 83.123.196.32 130473 port 252 130473 unique_id port 130408 bytes_in 0 130408 station_ip 37.137.28.70 130408 port 237 130408 unique_id port 130408 remote_ip 10.8.0.138 130414 username malekpoir 130414 mac 130414 bytes_out 1836642 130414 bytes_in 23646797 130414 station_ip 5.119.21.248 130414 port 253 130414 unique_id port 130414 remote_ip 10.8.0.58 130423 username mahdiyehalizadeh 130423 mac 130423 bytes_out 1012375 130423 bytes_in 17092905 130423 station_ip 37.129.78.73 130423 port 253 130423 unique_id port 130423 remote_ip 10.8.0.82 130425 username vanila 130425 mac 130425 bytes_out 0 130425 bytes_in 0 130425 station_ip 37.129.72.116 130425 port 253 130425 unique_id port 130425 remote_ip 10.8.0.178 130427 username aminvpn 130427 mac 130427 bytes_out 255793 130427 bytes_in 529567 130427 station_ip 83.122.48.82 130427 port 237 130427 unique_id port 130427 remote_ip 10.8.0.14 130428 username mosi 130428 mac 130428 bytes_out 0 130428 bytes_in 0 130428 station_ip 151.235.98.140 130428 port 254 130428 unique_id port 130428 remote_ip 10.8.0.138 130430 username alipour 130430 mac 130430 bytes_out 144993 130430 bytes_in 1173088 130430 station_ip 37.129.249.144 130430 port 252 130430 unique_id port 130430 remote_ip 10.8.0.102 130436 username moradi 130436 mac 67277 username vahid 67277 kill_reason Maximum check online fails reached 67277 mac 5.209.71.120:20481: Unknown host 67277 bytes_out 0 67277 bytes_in 0 67277 station_ip 5.209.71.120:20481 67277 port 1017 67277 unique_id port 130436 bytes_out 4260 130436 bytes_in 7676 130436 station_ip 83.123.196.32 130436 port 244 130436 unique_id port 130436 remote_ip 10.8.0.250 130438 username moradi 130438 mac 130438 bytes_out 0 130438 bytes_in 0 130438 station_ip 83.123.196.32 130438 port 252 130438 unique_id port 130438 remote_ip 10.8.0.250 130439 username barzegar 130439 mac 130439 bytes_out 12779 130439 bytes_in 76344 130439 station_ip 5.119.155.205 130439 port 244 130439 unique_id port 130439 remote_ip 10.8.0.234 130441 username irannezhad 130441 mac 130441 bytes_out 0 130441 bytes_in 0 130441 station_ip 37.129.211.63 130441 port 244 130441 unique_id port 130441 remote_ip 10.8.0.182 130442 username irannezhad 130442 mac 130442 bytes_out 0 130442 bytes_in 0 130442 station_ip 37.129.211.63 130442 port 244 130442 unique_id port 130442 remote_ip 10.8.0.182 130446 username barzegar 130446 mac 130446 bytes_out 0 130446 bytes_in 0 130446 station_ip 5.119.155.205 130446 port 250 130446 unique_id port 130446 remote_ip 10.8.0.234 130448 username irannezhad 130448 mac 130448 bytes_out 0 130448 bytes_in 0 130448 station_ip 37.129.211.63 130448 port 244 130448 unique_id port 130448 remote_ip 10.8.0.182 130451 username irannezhad 130451 mac 130451 bytes_out 0 130451 bytes_in 0 130451 station_ip 37.129.211.63 130451 port 244 130451 unique_id port 130451 remote_ip 10.8.0.182 130453 username irannezhad 130453 mac 130453 bytes_out 0 130453 bytes_in 0 130453 station_ip 37.129.211.63 130453 port 244 130453 unique_id port 130453 remote_ip 10.8.0.182 130456 username irannezhad 130456 mac 130456 bytes_out 0 130456 bytes_in 0 130456 station_ip 37.129.211.63 130456 port 244 130456 unique_id port 130456 remote_ip 10.8.0.182 130460 username irannezhad 130460 mac 130460 bytes_out 0 130460 bytes_in 0 130460 station_ip 37.129.211.63 130460 port 244 130460 unique_id port 130460 remote_ip 10.8.0.182 130465 username irannezhad 130465 mac 130465 bytes_out 0 130465 bytes_in 0 130416 unique_id port 130419 username jamali 130419 kill_reason Another user logged on this global unique id 130419 mac 130419 bytes_out 0 130419 bytes_in 0 130419 station_ip 5.120.91.145 130419 port 252 130419 unique_id port 130420 username barzegar 130420 mac 130420 bytes_out 2493 130420 bytes_in 4978 130420 station_ip 5.119.155.205 130420 port 251 130420 unique_id port 130420 remote_ip 10.8.0.234 130421 username jamali 130421 mac 130421 bytes_out 0 130421 bytes_in 0 130421 station_ip 5.120.91.145 130421 port 252 130421 unique_id port 130422 username barzegar 130422 mac 130422 bytes_out 0 130422 bytes_in 0 130422 station_ip 5.119.155.205 130422 port 160 130422 unique_id port 130422 remote_ip 10.8.1.174 130424 username vanila 130424 mac 130424 bytes_out 9857591 130424 bytes_in 8822483 130424 station_ip 37.129.72.116 130424 port 244 130424 unique_id port 130424 remote_ip 10.8.0.178 130426 username mostafa_es78 130426 unique_id port 130426 terminate_cause User-Request 130426 bytes_out 0 130426 bytes_in 0 130426 station_ip 83.122.81.99 130426 port 15730250 130426 nas_port_type Virtual 130426 remote_ip 5.5.5.246 130429 username vanila 130429 mac 130429 bytes_out 0 130429 bytes_in 0 130429 station_ip 37.129.72.116 130429 port 244 130429 unique_id port 130429 remote_ip 10.8.0.178 130431 username moradi 130431 mac 130431 bytes_out 0 130431 bytes_in 0 130431 station_ip 83.123.196.32 130431 port 159 130431 unique_id port 130432 username mostafa_es78 130432 unique_id port 130432 terminate_cause User-Request 130432 bytes_out 36834289 130432 bytes_in 7162554 130432 station_ip 83.123.164.154 130432 port 15730249 130432 nas_port_type Virtual 130432 remote_ip 5.5.5.251 130435 username alipour 130435 kill_reason Another user logged on this global unique id 130435 mac 130435 bytes_out 0 130435 bytes_in 0 130435 station_ip 37.129.249.144 130435 port 237 130435 unique_id port 130435 remote_ip 10.8.0.102 130443 username irannezhad 130443 mac 130443 bytes_out 0 130443 bytes_in 0 130443 station_ip 37.129.211.63 130443 port 244 130443 unique_id port 130443 remote_ip 10.8.0.182 130445 username irannezhad 130445 mac 130445 bytes_out 0 130445 bytes_in 0 130445 station_ip 37.129.211.63 130445 port 244 130445 unique_id port 130445 remote_ip 10.8.0.182 130447 username irannezhad 130447 mac 130447 bytes_out 0 130447 bytes_in 0 130447 station_ip 37.129.211.63 130447 port 244 130447 unique_id port 130447 remote_ip 10.8.0.182 130449 username irannezhad 130449 mac 130449 bytes_out 0 130449 bytes_in 0 130449 station_ip 37.129.211.63 130449 port 244 67308 username vahid 67308 kill_reason Maximum check online fails reached 67308 mac 46.51.0.14:11235: Unknown host 67308 bytes_out 0 67308 bytes_in 0 67308 station_ip 46.51.0.14:11235 67308 port 1017 67308 unique_id port 130449 unique_id port 130449 remote_ip 10.8.0.182 130454 username irannezhad 130454 mac 130454 bytes_out 0 130454 bytes_in 0 130454 station_ip 37.129.211.63 130454 port 244 130454 unique_id port 130454 remote_ip 10.8.0.182 130455 username barzegar 130455 mac 130455 bytes_out 0 130455 bytes_in 0 130455 station_ip 5.119.155.205 130455 port 159 130455 unique_id port 130455 remote_ip 10.8.1.174 130457 username irannezhad 130457 mac 130457 bytes_out 0 130457 bytes_in 0 130457 station_ip 37.129.211.63 130457 port 244 130457 unique_id port 130457 remote_ip 10.8.0.182 130459 username irannezhad 130459 mac 130459 bytes_out 0 130459 bytes_in 0 130459 station_ip 37.129.211.63 130459 port 244 130459 unique_id port 130459 remote_ip 10.8.0.182 130461 username irannezhad 130461 mac 130461 bytes_out 0 130461 bytes_in 0 130461 station_ip 37.129.211.63 130461 port 244 130461 unique_id port 130461 remote_ip 10.8.0.182 130462 username irannezhad 130462 mac 130462 bytes_out 0 130462 bytes_in 0 130462 station_ip 37.129.211.63 130462 port 244 130462 unique_id port 130462 remote_ip 10.8.0.182 130463 username irannezhad 130463 mac 130463 bytes_out 0 130463 bytes_in 0 130463 station_ip 37.129.211.63 130463 port 244 130463 unique_id port 130463 remote_ip 10.8.0.182 130468 username irannezhad 130468 mac 130468 bytes_out 0 130468 bytes_in 0 130468 station_ip 37.129.211.63 130468 port 244 130468 unique_id port 130468 remote_ip 10.8.0.182 130470 username jamali 130470 mac 130470 bytes_out 0 130470 bytes_in 0 130470 station_ip 5.120.91.145 130470 port 251 130470 unique_id port 130470 remote_ip 10.8.0.150 130472 username irannezhad 130472 mac 130472 bytes_out 0 130472 bytes_in 0 130472 station_ip 37.129.211.63 130472 port 244 130472 unique_id port 130472 remote_ip 10.8.0.182 130475 username irannezhad 130475 mac 130475 bytes_out 0 130475 bytes_in 0 130475 station_ip 37.129.211.63 130475 port 251 130475 unique_id port 130475 remote_ip 10.8.0.182 130476 username irannezhad 130476 mac 130476 bytes_out 0 130476 bytes_in 0 130476 station_ip 37.129.211.63 130476 port 251 130476 unique_id port 130476 remote_ip 10.8.0.182 130488 username irannezhad 130488 kill_reason Maximum check online fails reached 130488 mac 130488 bytes_out 0 130488 bytes_in 0 130488 station_ip 37.129.211.63 130488 port 160 130488 unique_id port 130490 username vanila 130490 mac 130490 bytes_out 0 130490 bytes_in 0 130490 station_ip 37.129.72.116 130490 port 250 130490 unique_id port 130490 remote_ip 10.8.0.178 130492 username alipour 130492 mac 130492 bytes_out 0 130492 bytes_in 0 130492 station_ip 37.129.249.144 130492 port 237 130492 unique_id port 130494 username vanila 130494 mac 130494 bytes_out 0 130494 bytes_in 0 130494 station_ip 37.129.72.116 130494 port 237 130494 unique_id port 130494 remote_ip 10.8.0.178 130496 username barzegar 130496 mac 130496 bytes_out 0 130496 bytes_in 0 130496 station_ip 5.119.155.205 130496 port 253 130496 unique_id port 130496 remote_ip 10.8.0.234 130497 username hosseine 130497 kill_reason Another user logged on this global unique id 130497 mac 130497 bytes_out 0 130497 bytes_in 0 130497 station_ip 37.129.122.8 130497 port 247 130497 unique_id port 130500 username saeed9658 130500 mac 130500 bytes_out 0 130500 bytes_in 0 130500 station_ip 5.119.106.59 130500 port 249 130500 unique_id port 130505 username sedighe 130505 mac 130505 bytes_out 0 130505 bytes_in 0 130505 station_ip 37.129.248.61 130505 port 250 130505 unique_id port 130505 remote_ip 10.8.0.146 130507 username barzegar 130507 mac 130507 bytes_out 0 130507 bytes_in 0 130507 station_ip 5.119.155.205 130507 port 163 130507 unique_id port 130507 remote_ip 10.8.1.174 130512 username amir 130512 mac 130512 bytes_out 0 130512 bytes_in 0 130512 station_ip 46.225.213.191 130512 port 162 130512 unique_id port 130512 remote_ip 10.8.1.22 130513 username alipour 130513 mac 130513 bytes_out 0 130513 bytes_in 0 130513 station_ip 37.129.249.144 130513 port 163 130513 unique_id port 130513 remote_ip 10.8.1.50 130514 username sedighe 130514 mac 130514 bytes_out 0 130465 station_ip 37.129.211.63 130465 port 244 130465 unique_id port 130465 remote_ip 10.8.0.182 130467 username irannezhad 130467 mac 130467 bytes_out 0 130467 bytes_in 0 130467 station_ip 37.129.211.63 130467 port 244 130467 unique_id port 130467 remote_ip 10.8.0.182 130471 username irannezhad 130471 mac 130471 bytes_out 0 130471 bytes_in 0 130471 station_ip 37.129.211.63 130471 port 244 130471 unique_id port 130471 remote_ip 10.8.0.182 130474 username irannezhad 130474 mac 130474 bytes_out 0 130474 bytes_in 0 130474 station_ip 37.129.211.63 130474 port 251 130474 unique_id port 130474 remote_ip 10.8.0.182 130480 username irannezhad 130480 mac 130480 bytes_out 0 130480 bytes_in 0 130480 station_ip 37.129.211.63 130480 port 160 130480 unique_id port 130480 remote_ip 10.8.1.134 130483 username irannezhad 130483 kill_reason Maximum check online fails reached 130483 mac 130483 bytes_out 0 130483 bytes_in 0 130483 station_ip 37.129.211.63 130483 port 251 130483 unique_id port 130486 username irannezhad 130486 kill_reason Maximum check online fails reached 130486 mac 130486 bytes_out 0 130486 bytes_in 0 130486 station_ip 37.129.211.63 130486 port 159 130486 unique_id port 130487 username aminvpn 130487 unique_id port 130487 terminate_cause User-Request 130487 bytes_out 16171549 130487 bytes_in 592993494 130487 station_ip 31.57.131.191 130487 port 15730245 130487 nas_port_type Virtual 130487 remote_ip 5.5.5.248 130493 username sedighe 130493 mac 130493 bytes_out 0 130493 bytes_in 0 130493 station_ip 37.129.236.31 130493 port 250 130493 unique_id port 130493 remote_ip 10.8.0.146 130495 username mohammadjavad 130495 mac 130495 bytes_out 0 130495 bytes_in 0 130495 station_ip 83.122.60.25 130495 port 254 130495 unique_id port 130495 remote_ip 10.8.0.142 130502 username barzegar 130502 mac 130502 bytes_out 0 130502 bytes_in 0 130502 station_ip 5.119.155.205 130502 port 237 130502 unique_id port 130502 remote_ip 10.8.0.234 130504 username moradi 130504 mac 130504 bytes_out 1059350 130504 bytes_in 18274358 130504 station_ip 83.123.196.32 130504 port 244 130504 unique_id port 130504 remote_ip 10.8.0.250 130509 username moradi 130509 kill_reason Another user logged on this global unique id 130509 mac 130509 bytes_out 0 130509 bytes_in 0 130509 station_ip 83.123.196.32 130509 port 237 130509 unique_id port 130509 remote_ip 10.8.0.250 130510 username alipour 130510 mac 130510 bytes_out 0 130510 bytes_in 0 130510 station_ip 37.129.249.144 130510 port 255 130510 unique_id port 130510 remote_ip 10.8.0.102 130515 username barzegar 130515 mac 130515 bytes_out 0 130515 bytes_in 0 130515 station_ip 5.119.155.205 130515 port 163 130515 unique_id port 130515 remote_ip 10.8.1.174 130518 username moradi 130518 mac 130518 bytes_out 0 130518 bytes_in 0 130518 station_ip 83.123.196.32 130518 port 237 130518 unique_id port 130519 username amir 130519 mac 130519 bytes_out 0 130519 bytes_in 0 130519 station_ip 46.225.213.191 130519 port 164 130519 unique_id port 130519 remote_ip 10.8.1.22 130520 username amir 130520 kill_reason Maximum check online fails reached 130520 mac 130520 bytes_out 0 130520 bytes_in 0 130520 station_ip 46.225.213.191 130520 port 163 130520 unique_id port 130523 username barzegar 130523 mac 130523 bytes_out 0 130523 bytes_in 0 130523 station_ip 5.119.155.205 130523 port 250 130523 unique_id port 130523 remote_ip 10.8.0.234 130524 username vanila 130524 mac 130524 bytes_out 0 130473 remote_ip 10.8.0.250 130477 username irannezhad 130477 mac 130477 bytes_out 0 130477 bytes_in 0 130477 station_ip 37.129.211.63 130477 port 251 130477 unique_id port 130477 remote_ip 10.8.0.182 130478 username irannezhad 130478 mac 130478 bytes_out 0 130478 bytes_in 0 130478 station_ip 37.129.211.63 130478 port 251 130478 unique_id port 130478 remote_ip 10.8.0.182 130479 username amirabbas 130479 unique_id port 130479 terminate_cause User-Request 130479 bytes_out 7363890 130479 bytes_in 207425672 130479 station_ip 37.27.30.23 130479 port 15730248 130479 nas_port_type Virtual 130479 remote_ip 5.5.5.253 130481 username barzegar 130481 mac 130481 bytes_out 0 130481 bytes_in 0 130481 station_ip 5.119.155.205 130481 port 159 130481 unique_id port 130481 remote_ip 10.8.1.174 130482 username mohammadjavad 130482 mac 130482 bytes_out 459696 130482 bytes_in 3872452 130482 station_ip 37.129.199.64 130482 port 250 130482 unique_id port 130482 remote_ip 10.8.0.142 130484 username irannezhad 130484 mac 130484 bytes_out 0 130484 bytes_in 0 130484 station_ip 37.129.211.63 130484 port 160 130484 unique_id port 130484 remote_ip 10.8.1.134 130485 username irannezhad 130485 kill_reason Maximum number of concurrent logins reached 130485 mac 130485 bytes_out 0 130485 bytes_in 0 130485 station_ip 37.129.211.63 130485 port 253 130485 unique_id port 130489 username vanila 130489 mac 130489 bytes_out 0 130489 bytes_in 0 130489 station_ip 37.129.72.116 130489 port 250 130489 unique_id port 130489 remote_ip 10.8.0.178 130491 username saeed9658 130491 kill_reason Another user logged on this global unique id 130491 mac 130491 bytes_out 0 130491 bytes_in 0 130491 station_ip 5.119.106.59 130491 port 249 130491 unique_id port 130491 remote_ip 10.8.0.62 130498 username barzegar 130498 mac 130498 bytes_out 0 130498 bytes_in 0 130498 station_ip 5.119.155.205 130498 port 161 130498 unique_id port 130498 remote_ip 10.8.1.174 130499 username barzegar 130499 mac 130499 bytes_out 0 130499 bytes_in 0 130499 station_ip 5.119.155.205 130499 port 161 130499 unique_id port 130499 remote_ip 10.8.1.174 130501 username barzegar 130501 mac 130501 bytes_out 0 130501 bytes_in 0 130501 station_ip 5.119.155.205 130501 port 237 130501 unique_id port 130501 remote_ip 10.8.0.234 130503 username hamid.e 130503 unique_id port 130503 terminate_cause User-Request 130503 bytes_out 1796597 130503 bytes_in 25778904 130503 station_ip 37.27.28.61 130503 port 15730252 130503 nas_port_type Virtual 130503 remote_ip 5.5.5.253 130506 username farhad2 130506 mac 130506 bytes_out 0 130506 bytes_in 0 130506 station_ip 5.119.10.117 130506 port 162 130506 unique_id port 130506 remote_ip 10.8.1.222 130508 username farhad2 130508 mac 130508 bytes_out 467405 130508 bytes_in 1447859 130508 station_ip 5.119.10.117 130508 port 162 130508 unique_id port 130508 remote_ip 10.8.1.222 130511 username barzegar 130511 mac 130511 bytes_out 0 130511 bytes_in 0 130511 station_ip 5.119.155.205 130511 port 164 130511 unique_id port 130511 remote_ip 10.8.1.174 130517 username jamali 130517 mac 130517 bytes_out 124410 130517 bytes_in 280160 130517 station_ip 5.120.91.145 130517 port 252 130517 unique_id port 130517 remote_ip 10.8.0.150 130525 username saeed9658 130525 mac 130525 bytes_out 0 130525 bytes_in 0 130525 station_ip 5.119.106.59 130525 port 161 130525 unique_id port 130525 remote_ip 10.8.1.210 130526 username amir 130526 mac 130526 bytes_out 0 130526 bytes_in 0 130514 bytes_in 0 130514 station_ip 83.122.31.116 130514 port 244 130514 unique_id port 130514 remote_ip 10.8.0.146 130516 username amir 130516 kill_reason Maximum check online fails reached 130516 mac 130516 bytes_out 0 130516 bytes_in 0 130516 station_ip 46.225.213.191 130516 port 162 130516 unique_id port 130521 username rajaei 130521 mac 130521 bytes_out 0 130521 bytes_in 0 130521 station_ip 89.47.77.183 130521 port 250 130521 unique_id port 130521 remote_ip 10.8.0.34 130522 username barzegar 130522 mac 130522 bytes_out 0 130522 bytes_in 0 130522 station_ip 5.119.155.205 130522 port 250 130522 unique_id port 130522 remote_ip 10.8.0.234 130528 username barzegar 130528 mac 130528 bytes_out 0 130528 bytes_in 0 130528 station_ip 5.119.155.205 130528 port 164 130528 unique_id port 130528 remote_ip 10.8.1.174 130529 username barzegar 130529 mac 130529 bytes_out 0 130529 bytes_in 0 130529 station_ip 5.119.155.205 130529 port 249 130529 unique_id port 130529 remote_ip 10.8.0.234 130531 username saeed9658 130531 kill_reason Another user logged on this global unique id 130531 mac 130531 bytes_out 0 130531 bytes_in 0 130531 station_ip 5.119.106.59 130531 port 161 130531 unique_id port 130531 remote_ip 10.8.1.210 130534 username moradi 130534 mac 130534 bytes_out 1615862 130534 bytes_in 21285977 130534 station_ip 83.123.183.212 130534 port 254 130534 unique_id port 130534 remote_ip 10.8.0.250 130540 username barzegar 130540 kill_reason Maximum check online fails reached 130540 mac 130540 bytes_out 0 130540 bytes_in 0 130540 station_ip 5.119.155.205 130540 port 255 130540 unique_id port 130544 username farhad2 130544 mac 130544 bytes_out 0 130544 bytes_in 0 130544 station_ip 5.119.23.31 130544 port 237 130544 unique_id port 130544 remote_ip 10.8.0.190 130545 username barzegar 130545 mac 130545 bytes_out 0 130545 bytes_in 0 130545 station_ip 5.119.155.205 130545 port 256 130545 unique_id port 130545 remote_ip 10.8.0.234 130548 username barzegar 130548 mac 130548 bytes_out 0 130548 bytes_in 0 130548 station_ip 5.119.155.205 130548 port 237 130548 unique_id port 130548 remote_ip 10.8.0.234 130554 username yahodi 130554 mac 130554 bytes_out 0 130554 bytes_in 0 130554 station_ip 83.123.54.211 130554 port 249 130554 unique_id port 130556 username saeed9658 130556 mac 130556 bytes_out 0 130556 bytes_in 0 130556 station_ip 5.119.106.59 130556 port 249 130556 unique_id port 130556 remote_ip 10.8.0.62 130559 username zare 130559 mac 130559 bytes_out 0 130559 bytes_in 0 130559 station_ip 94.183.214.14 130559 port 237 130559 unique_id port 130562 username mahdiyehalizadeh 130562 mac 130562 bytes_out 13201 130562 bytes_in 58309 130562 station_ip 83.122.79.185 130562 port 237 130562 unique_id port 130562 remote_ip 10.8.0.82 130567 username farhad2 130567 kill_reason Another user logged on this global unique id 130567 mac 130567 bytes_out 0 130567 bytes_in 0 130567 station_ip 5.119.23.31 130567 port 164 130567 unique_id port 130569 username amir 130569 mac 130569 bytes_out 0 130569 bytes_in 0 130569 station_ip 46.225.213.191 130569 port 252 130569 unique_id port 130569 remote_ip 10.8.0.50 130571 username mohammadmahdi 130571 mac 130571 bytes_out 0 130571 bytes_in 0 130571 station_ip 5.119.223.15 130571 port 254 130571 unique_id port 130571 remote_ip 10.8.0.54 130572 username barzegar 130572 mac 130572 bytes_out 0 130572 bytes_in 0 130572 station_ip 5.119.155.205 130572 port 161 130524 bytes_in 0 130524 station_ip 37.129.108.36 130524 port 252 130524 unique_id port 130524 remote_ip 10.8.0.178 130530 username farhad2 130530 mac 130530 bytes_out 2133485 130530 bytes_in 17242038 130530 station_ip 5.119.23.31 130530 port 237 130530 unique_id port 130530 remote_ip 10.8.0.190 130533 username amir 130533 mac 130533 bytes_out 0 130533 bytes_in 0 130533 station_ip 46.225.213.191 130533 port 255 130533 unique_id port 130533 remote_ip 10.8.0.50 130535 username barzegar 130535 mac 130535 bytes_out 0 130535 bytes_in 0 130535 station_ip 5.119.155.205 130535 port 254 130535 unique_id port 130535 remote_ip 10.8.0.234 130536 username barzegar 130536 mac 130536 bytes_out 0 130536 bytes_in 0 130536 station_ip 5.119.155.205 130536 port 164 130536 unique_id port 130536 remote_ip 10.8.1.174 130539 username moradi 130539 mac 130539 bytes_out 0 130539 bytes_in 0 130539 station_ip 83.123.183.212 130539 port 252 130539 unique_id port 130539 remote_ip 10.8.0.250 130541 username yahodi 130541 kill_reason Another user logged on this global unique id 130541 mac 130541 bytes_out 0 130541 bytes_in 0 130541 station_ip 83.123.54.211 130541 port 249 130541 unique_id port 130541 remote_ip 10.8.0.202 130546 username saeed9658 130546 kill_reason Another user logged on this global unique id 130546 mac 130546 bytes_out 0 130546 bytes_in 0 130546 station_ip 5.119.106.59 130546 port 161 130546 unique_id port 130547 username saeed9658 130547 mac 130547 bytes_out 0 130547 bytes_in 0 130547 station_ip 5.119.106.59 130547 port 161 130547 unique_id port 130550 username saeed9658 130550 mac 130550 bytes_out 0 130550 bytes_in 0 130550 station_ip 5.119.106.59 130550 port 256 130550 unique_id port 130550 remote_ip 10.8.0.62 130552 username saeed9658 130552 mac 130552 bytes_out 0 130552 bytes_in 0 130552 station_ip 5.119.106.59 130552 port 256 130552 unique_id port 130552 remote_ip 10.8.0.62 130555 username barzegar 130555 mac 130555 bytes_out 0 67380 username vahid 67380 kill_reason Maximum check online fails reached 67380 mac 5.209.250.238:20546: Unknown host 67380 bytes_out 0 67380 bytes_in 0 67380 station_ip 5.209.250.238:20546 67380 port 1018 67380 unique_id port 130555 bytes_in 0 130555 station_ip 5.119.155.205 130555 port 249 130555 unique_id port 130555 remote_ip 10.8.0.234 130557 username arash 130557 mac 130557 bytes_out 69073 130557 bytes_in 277572 130557 station_ip 37.27.2.36 130557 port 257 130557 unique_id port 130557 remote_ip 10.8.0.114 130560 username saeed9658 130560 mac 130560 bytes_out 70080 130560 bytes_in 122875 130560 station_ip 5.119.106.59 130560 port 161 130560 unique_id port 130560 remote_ip 10.8.1.210 130561 username alihosseini1 130561 mac 130561 bytes_out 0 130561 bytes_in 0 130561 station_ip 5.119.217.206 130561 port 258 130561 unique_id port 130561 remote_ip 10.8.0.166 130565 username barzegar 130565 mac 130565 bytes_out 0 130565 bytes_in 0 130565 station_ip 5.119.155.205 130565 port 237 130565 unique_id port 130565 remote_ip 10.8.0.234 130566 username mansour 130566 mac 130566 bytes_out 0 130566 bytes_in 0 130566 station_ip 5.202.64.80 130566 port 241 130566 unique_id port 130566 remote_ip 10.8.0.30 130568 username vanila 130568 mac 130568 bytes_out 2508536 130568 bytes_in 976977 130568 station_ip 83.122.85.141 130568 port 237 130568 unique_id port 130568 remote_ip 10.8.0.178 130573 username aminvpn 130573 mac 130573 bytes_out 249312 130573 bytes_in 1109495 130526 station_ip 46.225.213.191 130526 port 249 130526 unique_id port 130526 remote_ip 10.8.0.50 130527 username amir 130527 mac 130527 bytes_out 0 130527 bytes_in 0 130527 station_ip 46.225.213.191 130527 port 249 130527 unique_id port 130527 remote_ip 10.8.0.50 130532 username barzegar 130532 mac 130532 bytes_out 0 130532 bytes_in 0 130532 station_ip 5.119.155.205 130532 port 252 130532 unique_id port 130532 remote_ip 10.8.0.234 130537 username saeed9658 130537 kill_reason Another user logged on this global unique id 130537 mac 130537 bytes_out 0 67349 username vahid 67349 kill_reason Maximum check online fails reached 67349 mac 46.51.114.215:11375: Unknown host 67349 bytes_out 0 67349 bytes_in 0 67349 station_ip 46.51.114.215:11375 67349 port 1018 67349 unique_id port 130537 bytes_in 0 130537 station_ip 5.119.106.59 130537 port 161 130537 unique_id port 130538 username barzegar 130538 mac 130538 bytes_out 0 130538 bytes_in 0 130538 station_ip 5.119.155.205 130538 port 164 130538 unique_id port 130538 remote_ip 10.8.1.174 130542 username barzegar 130542 mac 130542 bytes_out 0 130542 bytes_in 0 67354 username vahid 67354 kill_reason Maximum check online fails reached 67354 mac 46.51.23.157:11255: Unknown host 67354 bytes_out 0 67354 bytes_in 0 67354 station_ip 46.51.23.157:11255 67354 port 1018 67354 unique_id port 130542 station_ip 5.119.155.205 130542 port 164 130542 unique_id port 130542 remote_ip 10.8.1.174 130543 username morteza 130543 mac 130543 bytes_out 0 130543 bytes_in 0 130543 station_ip 83.122.28.239 130543 port 253 130543 unique_id port 130543 remote_ip 10.8.0.46 130549 username zare 130549 kill_reason Another user logged on this global unique id 130549 mac 130549 bytes_out 0 130549 bytes_in 0 130549 station_ip 94.183.214.14 130549 port 237 130549 unique_id port 130549 remote_ip 10.8.0.18 130551 username barzegar 130551 mac 130551 bytes_out 0 130551 bytes_in 0 130551 station_ip 5.119.155.205 130551 port 257 130551 unique_id port 130551 remote_ip 10.8.0.234 130553 username aminvpn 130553 unique_id port 130553 terminate_cause User-Request 130553 bytes_out 12939566 130553 bytes_in 306498660 130553 station_ip 5.119.6.232 130553 port 15730242 130553 nas_port_type Virtual 130553 remote_ip 5.5.5.249 130558 username barzegar 130558 mac 130558 bytes_out 0 130558 bytes_in 0 130558 station_ip 5.119.155.205 130558 port 165 130558 unique_id port 130558 remote_ip 10.8.1.174 130563 username farhad2 130563 kill_reason Another user logged on this global unique id 130563 mac 130563 bytes_out 0 130563 bytes_in 0 130563 station_ip 5.119.23.31 130563 port 164 130563 unique_id port 130563 remote_ip 10.8.1.222 130564 username yahodi 130564 mac 130564 bytes_out 0 130564 bytes_in 0 130564 station_ip 83.123.114.77 130564 port 249 130564 unique_id port 130564 remote_ip 10.8.0.202 130570 username barzegar 130570 mac 130570 bytes_out 0 130570 bytes_in 0 130570 station_ip 5.119.155.205 130570 port 237 130570 unique_id port 130570 remote_ip 10.8.0.234 130575 username amir 130575 mac 130575 bytes_out 43410 130575 bytes_in 277169 130575 station_ip 46.225.213.191 130575 port 249 130575 unique_id port 130575 remote_ip 10.8.0.50 130576 username moradi 130576 mac 130576 bytes_out 2471109 130576 bytes_in 38882994 130576 station_ip 83.123.183.192 130576 port 241 130576 unique_id port 130576 remote_ip 10.8.0.250 130577 username aminvpn 130577 mac 130577 bytes_out 88888 130577 bytes_in 331603 130577 station_ip 37.129.172.198 130577 port 252 130577 unique_id port 130572 unique_id port 130572 remote_ip 10.8.1.174 130580 username barzegar 130580 mac 130580 bytes_out 0 130580 bytes_in 0 130580 station_ip 5.119.155.205 130580 port 254 130580 unique_id port 130580 remote_ip 10.8.0.234 130581 username aminvpn 130581 unique_id port 130581 terminate_cause Lost-Carrier 130581 bytes_out 2120830 130581 bytes_in 42201876 130581 station_ip 5.119.6.232 130581 port 15730253 130581 nas_port_type Virtual 130581 remote_ip 5.5.5.255 130584 username asma2026 130584 kill_reason Another user logged on this global unique id 130584 mac 130584 bytes_out 0 130584 bytes_in 0 130584 station_ip 37.129.131.233 130584 port 237 130584 unique_id port 130584 remote_ip 10.8.0.170 130587 username amir 130587 mac 130587 bytes_out 0 130587 bytes_in 0 130587 station_ip 46.225.213.191 130587 port 253 130587 unique_id port 130587 remote_ip 10.8.0.50 130589 username asma2026 130589 kill_reason Another user logged on this global unique id 130589 mac 130589 bytes_out 0 130589 bytes_in 0 130589 station_ip 37.129.131.233 130589 port 237 130589 unique_id port 130600 username yahodi 130600 mac 130600 bytes_out 2117239 130600 bytes_in 6107365 130600 station_ip 83.123.74.217 130600 port 257 130600 unique_id port 130600 remote_ip 10.8.0.202 130602 username vanila 130602 mac 130602 bytes_out 0 130602 bytes_in 0 130602 station_ip 83.122.85.141 130602 port 241 130602 unique_id port 130602 remote_ip 10.8.0.178 130605 username farhad2 130605 mac 130605 bytes_out 0 130605 bytes_in 0 130605 station_ip 5.119.23.31 130605 port 237 130605 unique_id port 130605 remote_ip 10.8.0.190 130607 username amir 130607 mac 130607 bytes_out 42846 130607 bytes_in 358925 130607 station_ip 46.225.213.191 130607 port 257 130607 unique_id port 130607 remote_ip 10.8.0.50 130608 username asma2026 130608 mac 130608 bytes_out 0 130608 bytes_in 0 130608 station_ip 37.129.131.233 130608 port 257 130608 unique_id port 130608 remote_ip 10.8.0.170 130609 username saeed9658 130609 kill_reason Another user logged on this global unique id 130609 mac 130609 bytes_out 0 130609 bytes_in 0 130609 station_ip 5.119.106.59 130609 port 164 130609 unique_id port 130609 remote_ip 10.8.1.210 130611 username houshang 130611 mac 130611 bytes_out 282942 130611 bytes_in 1250993 130611 station_ip 5.119.30.28 130611 port 247 130611 unique_id port 130611 remote_ip 10.8.0.22 130613 username yahodi 130613 mac 130613 bytes_out 0 130613 bytes_in 0 130613 station_ip 83.123.74.217 130613 port 166 130613 unique_id port 130613 remote_ip 10.8.1.218 130614 username mohammadjavad 130614 mac 130614 bytes_out 787643 130614 bytes_in 8629793 130614 station_ip 37.129.199.140 130614 port 256 130614 unique_id port 130614 remote_ip 10.8.0.142 130616 username malekpoir 130616 mac 130616 bytes_out 1373647 130616 bytes_in 16647323 130616 station_ip 5.120.154.190 130616 port 237 130616 unique_id port 130616 remote_ip 10.8.0.58 130619 username mohammadmahdi 130619 mac 130619 bytes_out 0 130619 bytes_in 0 130619 station_ip 5.119.223.15 130619 port 252 130619 unique_id port 130619 remote_ip 10.8.0.54 130622 username farhad2 130622 mac 130622 bytes_out 103457 130622 bytes_in 209025 130622 station_ip 5.119.23.31 130622 port 237 130622 unique_id port 130622 remote_ip 10.8.0.190 130623 username amin.saeedi 130623 unique_id port 130623 terminate_cause User-Request 130623 bytes_out 2029205 130623 bytes_in 60727076 130623 station_ip 31.59.33.7 130623 port 15730257 130623 nas_port_type Virtual 130623 remote_ip 5.5.5.255 130573 station_ip 37.129.172.198 130573 port 253 130573 unique_id port 130573 remote_ip 10.8.0.14 130574 username aminvpn 130574 unique_id port 130574 terminate_cause User-Request 130574 bytes_out 9387306 130574 bytes_in 192636950 130574 station_ip 5.119.6.232 130574 port 15730247 130574 nas_port_type Virtual 130574 remote_ip 5.5.5.254 130588 username barzegar 130588 kill_reason Maximum check online fails reached 130588 mac 130588 bytes_out 0 130588 bytes_in 0 130588 station_ip 5.119.155.205 130588 port 161 130588 unique_id port 130591 username yahodi 130591 mac 130591 bytes_out 867827 130591 bytes_in 8203172 130591 station_ip 83.123.74.217 130591 port 254 130591 unique_id port 130591 remote_ip 10.8.0.202 130592 username yahodi 130592 mac 130592 bytes_out 227304 130592 bytes_in 2643147 130592 station_ip 83.123.74.217 130592 port 254 130592 unique_id port 130592 remote_ip 10.8.0.202 130594 username amir 130594 mac 130594 bytes_out 150656 130594 bytes_in 769497 130594 station_ip 46.225.213.191 130594 port 257 130594 unique_id port 130594 remote_ip 10.8.0.50 130596 username barzegar 130596 mac 130596 bytes_out 0 130596 bytes_in 0 130596 station_ip 5.119.155.205 130596 port 258 130596 unique_id port 130596 remote_ip 10.8.0.234 130598 username aminvpn 130598 unique_id port 130598 terminate_cause Lost-Carrier 130598 bytes_out 7738673 130598 bytes_in 229973848 130598 station_ip 5.160.115.252 130598 port 15730254 130598 nas_port_type Virtual 130598 remote_ip 5.5.5.252 130603 username jamali 130603 kill_reason Another user logged on this global unique id 130603 mac 130603 bytes_out 0 130603 bytes_in 0 130603 station_ip 5.120.91.145 130603 port 244 130603 unique_id port 130603 remote_ip 10.8.0.150 130604 username asma2026 130604 mac 130604 bytes_out 0 130604 bytes_in 0 130604 station_ip 37.129.131.233 130604 port 258 130604 unique_id port 130604 remote_ip 10.8.0.170 130606 username barzegar 130606 mac 130606 bytes_out 0 130606 bytes_in 0 130606 station_ip 5.119.155.205 130606 port 166 130606 unique_id port 130606 remote_ip 10.8.1.174 130615 username jamali 130615 kill_reason Another user logged on this global unique id 130615 mac 130615 bytes_out 0 130615 bytes_in 0 130615 station_ip 5.120.91.145 130615 port 244 130615 unique_id port 130617 username farhad2 130617 mac 130617 bytes_out 0 130617 bytes_in 0 130617 station_ip 5.119.23.31 130617 port 258 130617 unique_id port 130617 remote_ip 10.8.0.190 130621 username barzegar 130621 mac 130621 bytes_out 0 130621 bytes_in 0 130621 station_ip 5.119.155.205 130621 port 166 130621 unique_id port 130621 remote_ip 10.8.1.174 130624 username farhad2 130624 mac 130624 bytes_out 137563 130624 bytes_in 475487 130624 station_ip 5.119.23.31 130624 port 237 130624 unique_id port 130624 remote_ip 10.8.0.190 130626 username amir 130626 mac 130626 bytes_out 0 130626 bytes_in 0 130626 station_ip 46.225.213.191 130626 port 254 130626 unique_id port 130626 remote_ip 10.8.0.50 130629 username mohsenaskari 130629 mac 130629 bytes_out 106291 130629 bytes_in 442436 130629 station_ip 46.225.210.124 130629 port 256 130629 unique_id port 130629 remote_ip 10.8.0.246 130635 username mehdizare 130635 mac 130635 bytes_out 7233614 130635 bytes_in 50761208 130635 station_ip 5.120.78.164 130635 port 241 130635 unique_id port 130635 remote_ip 10.8.0.90 130638 username saeed9658 130638 mac 130638 bytes_out 0 130638 bytes_in 0 130638 station_ip 5.119.106.59 130638 port 164 130638 unique_id port 130644 username mohammadreza 130577 remote_ip 10.8.0.14 130578 username khademi 130578 mac 130578 bytes_out 0 130578 bytes_in 0 130578 station_ip 37.129.238.252 130578 port 256 130578 unique_id port 130578 remote_ip 10.8.0.10 130579 username aminvpn 130579 mac 130579 bytes_out 10812 130579 bytes_in 17198 130579 station_ip 37.129.172.198 130579 port 249 130579 unique_id port 130579 remote_ip 10.8.0.14 130582 username aminvpn 130582 mac 130582 bytes_out 89180 130582 bytes_in 151664 130582 station_ip 37.129.172.198 130582 port 256 130582 unique_id port 130582 remote_ip 10.8.0.14 130583 username aminvpn 130583 mac 130583 bytes_out 6762 130583 bytes_in 8877 130583 station_ip 37.129.172.198 130583 port 249 130583 unique_id port 130583 remote_ip 10.8.0.14 130585 username aminvpn 130585 mac 130585 bytes_out 45203 130585 bytes_in 83355 130585 station_ip 37.129.172.198 130585 port 254 130585 unique_id port 130585 remote_ip 10.8.0.14 130586 username khademi 130586 mac 130586 bytes_out 1600008 130586 bytes_in 24664269 130586 station_ip 37.129.238.252 130586 port 253 130586 unique_id port 130586 remote_ip 10.8.0.110 130590 username barzegar 130590 mac 130590 bytes_out 0 130590 bytes_in 0 130590 station_ip 5.119.155.205 130590 port 257 130590 unique_id port 130590 remote_ip 10.8.0.234 130593 username farhad2 130593 mac 130593 bytes_out 0 130593 bytes_in 0 130593 station_ip 5.119.23.31 130593 port 164 130593 unique_id port 130595 username asma2026 130595 mac 130595 bytes_out 0 130595 bytes_in 0 130595 station_ip 37.129.131.233 130595 port 237 130595 unique_id port 130597 username asma2026 130597 kill_reason Maximum check online fails reached 130597 mac 130597 bytes_out 0 130597 bytes_in 0 130597 station_ip 37.129.131.233 130597 port 165 130597 unique_id port 130599 username hosseine 130599 mac 130599 bytes_out 0 130599 bytes_in 0 130599 station_ip 37.129.122.8 130599 port 247 130599 unique_id port 130601 username amin.saeedi 130601 unique_id port 130601 terminate_cause User-Request 130601 bytes_out 4209006 130601 bytes_in 173879430 130601 station_ip 31.59.33.7 130601 port 15730255 130601 nas_port_type Virtual 130601 remote_ip 5.5.5.251 130610 username aminvpn 130610 unique_id port 130610 terminate_cause User-Request 130610 bytes_out 4900736 130610 bytes_in 181866609 130610 station_ip 5.160.112.73 130610 port 15730256 130610 nas_port_type Virtual 130610 remote_ip 5.5.5.250 130612 username mohammadmahdi 130612 mac 130612 bytes_out 32898448 130612 bytes_in 42219828 130612 station_ip 5.119.223.15 130612 port 252 130612 unique_id port 130612 remote_ip 10.8.0.54 130618 username arash 130618 mac 130618 bytes_out 0 130618 bytes_in 0 130618 station_ip 37.27.2.36 130618 port 254 130618 unique_id port 130618 remote_ip 10.8.0.114 130620 username asma2026 130620 mac 130620 bytes_out 728361 130620 bytes_in 8925918 130620 station_ip 37.129.76.58 130620 port 247 130620 unique_id port 130620 remote_ip 10.8.0.170 130628 username asma2026 130628 mac 130628 bytes_out 0 130628 bytes_in 0 130628 station_ip 83.123.200.242 130628 port 247 130628 unique_id port 130628 remote_ip 10.8.0.170 130631 username asma2026 130631 mac 130631 bytes_out 0 130631 bytes_in 0 130631 station_ip 83.123.200.242 130631 port 256 130631 unique_id port 130631 remote_ip 10.8.0.170 130633 username farhad2 130633 kill_reason Another user logged on this global unique id 130633 mac 130633 bytes_out 0 130633 bytes_in 0 130633 station_ip 5.119.23.31 130633 port 237 130633 unique_id port 130625 username hamidehfatemi 130625 mac 130625 bytes_out 0 130625 bytes_in 0 130625 station_ip 113.203.104.231 130625 port 247 130625 unique_id port 130625 remote_ip 10.8.0.158 130627 username asma2026 130627 kill_reason Maximum check online fails reached 130627 mac 130627 bytes_out 0 130627 bytes_in 0 130627 station_ip 37.129.76.58 130627 port 166 130627 unique_id port 130630 username bcboard 130630 unique_id port 130630 terminate_cause User-Request 130630 bytes_out 391 130630 bytes_in 264 130630 station_ip 83.123.3.142 130630 port 15730258 130630 nas_port_type Virtual 130630 remote_ip 5.5.5.254 130632 username barzegar 130632 mac 130632 bytes_out 0 130632 bytes_in 0 130632 station_ip 5.119.155.205 130632 port 254 130632 unique_id port 130632 remote_ip 10.8.0.234 130634 username barzegar 130634 mac 130634 bytes_out 0 130634 bytes_in 0 130634 station_ip 5.119.155.205 130634 port 254 130634 unique_id port 130634 remote_ip 10.8.0.234 130641 username farhad2 130641 mac 130641 bytes_out 0 130641 bytes_in 0 130641 station_ip 5.119.23.31 130641 port 237 130641 unique_id port 130645 username mohammadreza 130645 kill_reason Relative expiration date has reached 130645 mac 130645 bytes_out 0 130645 bytes_in 0 130645 station_ip 2.183.129.242 130645 port 237 130645 unique_id port 130647 username barzegar 130647 mac 130647 bytes_out 0 130647 bytes_in 0 130647 station_ip 5.119.155.205 130647 port 164 130647 unique_id port 130647 remote_ip 10.8.1.174 130651 username jamali 130651 kill_reason Another user logged on this global unique id 130651 mac 130651 bytes_out 0 130651 bytes_in 0 130651 station_ip 5.120.91.145 130651 port 244 130651 unique_id port 130652 username vanila 130652 mac 130652 bytes_out 0 130652 bytes_in 0 130652 station_ip 83.122.85.141 130652 port 257 130652 unique_id port 130652 remote_ip 10.8.0.178 130654 username farhad2 130654 mac 130654 bytes_out 0 130654 bytes_in 0 130654 station_ip 5.119.23.31 130654 port 237 130654 unique_id port 130654 remote_ip 10.8.0.190 130657 username jamali 130657 mac 130657 bytes_out 0 130657 bytes_in 0 130657 station_ip 5.120.91.145 130657 port 244 130657 unique_id port 130658 username barzegar 130658 mac 130658 bytes_out 0 130658 bytes_in 0 130658 station_ip 5.119.155.205 130658 port 244 130658 unique_id port 130658 remote_ip 10.8.0.234 130661 username farhad2 130661 mac 130661 bytes_out 0 130661 bytes_in 0 130661 station_ip 5.119.23.31 130661 port 237 130661 unique_id port 130661 remote_ip 10.8.0.190 130668 username barzegar 130668 mac 130668 bytes_out 0 130668 bytes_in 0 130668 station_ip 5.119.155.205 130668 port 164 130668 unique_id port 130668 remote_ip 10.8.1.174 130673 username sabaghnezhad 130673 mac 130673 bytes_out 0 130673 bytes_in 0 130673 station_ip 83.122.16.33 130673 port 250 130673 unique_id port 130673 remote_ip 10.8.0.186 130675 username mehdizare 130675 mac 130675 bytes_out 0 130675 bytes_in 0 130675 station_ip 5.120.78.164 130675 port 167 130675 unique_id port 130675 remote_ip 10.8.1.42 130676 username farhad2 130676 mac 130676 bytes_out 0 130676 bytes_in 0 130676 station_ip 5.119.23.31 130676 port 241 130676 unique_id port 130681 username asma2026 130681 mac 130681 bytes_out 0 130681 bytes_in 0 130681 station_ip 83.123.200.242 130681 port 237 130681 unique_id port 130681 remote_ip 10.8.0.170 130684 username farhad2 130684 mac 130684 bytes_out 35912 130684 bytes_in 35982 130633 remote_ip 10.8.0.190 130636 username asma2026 130636 mac 130636 bytes_out 0 130636 bytes_in 0 130636 station_ip 83.123.200.242 130636 port 256 130636 unique_id port 130636 remote_ip 10.8.0.170 130637 username amir 130637 mac 130637 bytes_out 0 130637 bytes_in 0 130637 station_ip 46.225.213.191 130637 port 254 130637 unique_id port 130637 remote_ip 10.8.0.50 130639 username farhad2 130639 kill_reason Another user logged on this global unique id 130639 mac 130639 bytes_out 0 130639 bytes_in 0 130639 station_ip 5.119.23.31 130639 port 237 130639 unique_id port 130640 username asma2026 130640 mac 130640 bytes_out 0 130640 bytes_in 0 130640 station_ip 83.123.200.242 130640 port 241 130640 unique_id port 130640 remote_ip 10.8.0.170 130642 username barzegar 130642 mac 130642 bytes_out 0 130642 bytes_in 0 130642 station_ip 5.119.155.205 130642 port 164 130642 unique_id port 130642 remote_ip 10.8.1.174 130643 username mohammadreza 130643 kill_reason Relative expiration date has reached 130643 mac 130643 bytes_out 0 130643 bytes_in 0 130643 station_ip 2.183.129.242 130643 port 237 130643 unique_id port 130646 username farhad2 130646 mac 130646 bytes_out 0 130646 bytes_in 0 130646 station_ip 5.119.23.31 130646 port 164 130646 unique_id port 130646 remote_ip 10.8.1.222 130648 username mohammadjavad 130648 mac 130648 bytes_out 349087 130648 bytes_in 6411756 130648 station_ip 83.123.47.12 130648 port 247 130648 unique_id port 130648 remote_ip 10.8.0.142 130649 username amir 130649 mac 130649 bytes_out 0 130649 bytes_in 0 130649 station_ip 46.225.213.191 130649 port 241 130649 unique_id port 130649 remote_ip 10.8.0.50 130650 username mohammadmahdi 130650 mac 130650 bytes_out 0 130650 bytes_in 0 130650 station_ip 5.119.223.15 130650 port 252 130650 unique_id port 130650 remote_ip 10.8.0.54 130655 username asma2026 130655 mac 130655 bytes_out 0 130655 bytes_in 0 130655 station_ip 83.123.200.242 130655 port 164 130655 unique_id port 130655 remote_ip 10.8.1.122 130656 username asma2026 130656 mac 130656 bytes_out 0 130656 bytes_in 0 130656 station_ip 83.123.200.242 130656 port 247 130656 unique_id port 130656 remote_ip 10.8.0.170 130664 username asma2026 130664 mac 130664 bytes_out 0 130664 bytes_in 0 130664 station_ip 83.123.200.242 130664 port 252 130664 unique_id port 130664 remote_ip 10.8.0.170 130665 username amir 130665 mac 130665 bytes_out 307606 130665 bytes_in 2838511 130665 station_ip 46.225.213.191 130665 port 237 130665 unique_id port 130665 remote_ip 10.8.0.50 130666 username farhad2 130666 kill_reason Another user logged on this global unique id 130666 mac 130666 bytes_out 0 130666 bytes_in 0 130666 station_ip 5.119.23.31 130666 port 241 130666 unique_id port 130666 remote_ip 10.8.0.190 130667 username houshang 130667 mac 130667 bytes_out 0 130667 bytes_in 0 130667 station_ip 5.119.153.31 130667 port 244 130667 unique_id port 130667 remote_ip 10.8.0.22 130670 username barzegar 130670 mac 130670 bytes_out 0 130670 bytes_in 0 130670 station_ip 5.119.155.205 130670 port 164 130670 unique_id port 130670 remote_ip 10.8.1.174 130677 username asma2026 130677 mac 130677 bytes_out 0 130677 bytes_in 0 130677 station_ip 83.123.200.242 130677 port 164 130677 unique_id port 130677 remote_ip 10.8.1.122 130678 username barzegar 130678 mac 130678 bytes_out 7049 130678 bytes_in 9067 130678 station_ip 5.119.155.205 130678 port 237 130678 unique_id port 130644 kill_reason Relative expiration date has reached 130644 mac 130644 bytes_out 0 130644 bytes_in 0 130644 station_ip 2.183.129.242 130644 port 237 130644 unique_id port 130653 username asma2026 130653 mac 130653 bytes_out 0 130653 bytes_in 0 130653 station_ip 83.123.200.242 130653 port 164 130653 unique_id port 130653 remote_ip 10.8.1.122 130659 username vanila 130659 mac 130659 bytes_out 0 130659 bytes_in 0 130659 station_ip 83.122.85.141 130659 port 241 130659 unique_id port 130659 remote_ip 10.8.0.178 130660 username asma2026 130660 mac 130660 bytes_out 0 130660 bytes_in 0 130660 station_ip 83.123.200.242 130660 port 164 130660 unique_id port 130660 remote_ip 10.8.1.122 130662 username asma2026 130662 mac 130662 bytes_out 0 130662 bytes_in 0 130662 station_ip 83.123.200.242 130662 port 164 130662 unique_id port 130662 remote_ip 10.8.1.122 130663 username asma2026 130663 mac 130663 bytes_out 0 130663 bytes_in 0 130663 station_ip 83.123.200.242 130663 port 247 130663 unique_id port 130663 remote_ip 10.8.0.170 130669 username asma2026 130669 mac 130669 bytes_out 0 130669 bytes_in 0 130669 station_ip 83.123.200.242 130669 port 244 130669 unique_id port 130669 remote_ip 10.8.0.170 130671 username amir 130671 mac 130671 bytes_out 145555 130671 bytes_in 528376 130671 station_ip 46.225.213.191 130671 port 237 130671 unique_id port 130671 remote_ip 10.8.0.50 130672 username jamali 130672 mac 130672 bytes_out 0 130672 bytes_in 0 130672 station_ip 5.120.91.145 130672 port 247 130672 unique_id port 130672 remote_ip 10.8.0.150 130674 username bcboard 130674 unique_id port 130674 terminate_cause Lost-Carrier 130674 bytes_out 636139 130674 bytes_in 3640547 130674 station_ip 83.123.3.142 130674 port 15730259 130674 nas_port_type Virtual 130674 remote_ip 5.5.5.254 130679 username asma2026 130679 mac 130679 bytes_out 0 130679 bytes_in 0 130679 station_ip 83.123.200.242 130679 port 167 130679 unique_id port 130679 remote_ip 10.8.1.122 130680 username farhad2 130680 mac 130680 bytes_out 245361 130680 bytes_in 948655 130680 station_ip 5.119.23.31 130680 port 241 130680 unique_id port 130680 remote_ip 10.8.0.190 130682 username asma2026 130682 kill_reason Maximum check online fails reached 130682 mac 130682 bytes_out 0 130682 bytes_in 0 130682 station_ip 83.123.200.242 130682 port 164 130682 unique_id port 130688 username amir 130688 mac 130688 bytes_out 57269 130688 bytes_in 389890 130688 station_ip 46.225.213.191 130688 port 237 130688 unique_id port 130688 remote_ip 10.8.0.50 130690 username barzegar 130690 mac 130690 bytes_out 0 130690 bytes_in 0 130690 station_ip 5.119.155.205 130690 port 241 130690 unique_id port 130690 remote_ip 10.8.0.234 130693 username aminvpn 130693 mac 130693 bytes_out 176001 130693 bytes_in 692361 130693 station_ip 37.129.172.198 130693 port 249 130693 unique_id port 130693 remote_ip 10.8.0.14 130697 username vanila 130697 mac 130697 bytes_out 1205660 130697 bytes_in 558856 130697 station_ip 83.122.85.141 130697 port 249 130697 unique_id port 130697 remote_ip 10.8.0.178 130699 username sedighe 130699 mac 130699 bytes_out 0 130699 bytes_in 0 130699 station_ip 83.122.133.56 130699 port 241 130699 unique_id port 130699 remote_ip 10.8.0.146 130702 username farhad2 130702 mac 130702 bytes_out 2806357 130702 bytes_in 25676582 130702 station_ip 5.120.49.247 130702 port 237 130702 unique_id port 130702 remote_ip 10.8.0.190 130704 username alihosseini1 130678 remote_ip 10.8.0.234 130683 username barzegar 130683 mac 130683 bytes_out 0 130683 bytes_in 0 130683 station_ip 5.119.155.205 130683 port 237 130683 unique_id port 130683 remote_ip 10.8.0.234 130686 username asma2026 130686 mac 130686 bytes_out 0 130686 bytes_in 0 130686 station_ip 83.123.200.242 130686 port 241 130686 unique_id port 130686 remote_ip 10.8.0.170 130695 username alihosseini1 130695 mac 130695 bytes_out 0 130695 bytes_in 0 130695 station_ip 5.119.249.24 130695 port 244 130695 unique_id port 130695 remote_ip 10.8.0.166 130696 username alihosseini1 130696 mac 130696 bytes_out 0 130696 bytes_in 0 130696 station_ip 5.119.249.24 130696 port 244 130696 unique_id port 130696 remote_ip 10.8.0.166 130700 username asma2026 130700 mac 130700 bytes_out 0 130700 bytes_in 0 130700 station_ip 83.123.200.242 130700 port 168 130700 unique_id port 130700 remote_ip 10.8.1.122 130705 username asma2026 130705 mac 130705 bytes_out 0 130705 bytes_in 0 130705 station_ip 83.123.200.242 130705 port 168 130705 unique_id port 130705 remote_ip 10.8.1.122 130707 username barzegar 130707 mac 130707 bytes_out 0 130707 bytes_in 0 130707 station_ip 5.119.155.205 130707 port 167 130707 unique_id port 130707 remote_ip 10.8.1.174 130708 username sedighe 130708 mac 130708 bytes_out 426162 130708 bytes_in 6709658 130708 station_ip 37.129.212.74 130708 port 254 130708 unique_id port 130708 remote_ip 10.8.0.146 130716 username asma2026 130716 mac 130716 bytes_out 0 130716 bytes_in 0 130716 station_ip 83.123.200.242 130716 port 256 130716 unique_id port 130716 remote_ip 10.8.0.170 130721 username sedighe 130721 mac 130721 bytes_out 42760 130721 bytes_in 58093 130721 station_ip 37.129.202.94 130721 port 256 130721 unique_id port 130721 remote_ip 10.8.0.146 130725 username barzegar 130725 mac 130725 bytes_out 43835 130725 bytes_in 42033 130725 station_ip 5.119.155.205 130725 port 167 130725 unique_id port 130725 remote_ip 10.8.1.174 130727 username jafari 130727 mac 130727 bytes_out 0 130727 bytes_in 0 130727 station_ip 5.200.105.165 130727 port 244 130727 unique_id port 130727 remote_ip 10.8.0.242 130731 username amir 130731 mac 130731 bytes_out 0 130731 bytes_in 0 130731 station_ip 46.225.213.191 130731 port 244 130731 unique_id port 130731 remote_ip 10.8.0.50 130739 username farhad2 130739 mac 130739 bytes_out 0 130739 bytes_in 0 130739 station_ip 5.120.103.143 130739 port 244 130739 unique_id port 130739 remote_ip 10.8.0.190 130740 username sedighe 130740 mac 130740 bytes_out 0 130740 bytes_in 0 130740 station_ip 83.122.54.162 130740 port 250 130740 unique_id port 130740 remote_ip 10.8.0.146 130750 username sedighe 130750 mac 130750 bytes_out 0 130750 bytes_in 0 130750 station_ip 83.122.54.162 130750 port 168 130750 unique_id port 130750 remote_ip 10.8.1.78 130754 username mosi 130754 mac 130754 bytes_out 3650753 130754 bytes_in 17474973 130754 station_ip 151.235.98.140 130754 port 252 130754 unique_id port 130754 remote_ip 10.8.0.138 130755 username sedighe 130755 mac 130755 bytes_out 43737 130755 bytes_in 54112 130755 station_ip 83.122.3.78 130755 port 169 130755 unique_id port 130755 remote_ip 10.8.1.78 130759 username mehdizare 130759 mac 130759 bytes_out 136791 130759 bytes_in 234027 130759 station_ip 5.120.78.164 130759 port 249 130759 unique_id port 130759 remote_ip 10.8.0.90 130761 username kordestani 130684 station_ip 5.119.23.31 130684 port 241 130684 unique_id port 130684 remote_ip 10.8.0.190 130685 username barzegar 130685 mac 130685 bytes_out 0 130685 bytes_in 0 130685 station_ip 5.119.155.205 130685 port 250 130685 unique_id port 130685 remote_ip 10.8.0.234 130687 username asma2026 130687 mac 130687 bytes_out 0 130687 bytes_in 0 130687 station_ip 83.123.200.242 130687 port 250 130687 unique_id port 130687 remote_ip 10.8.0.170 130689 username asma2026 130689 mac 130689 bytes_out 0 130689 bytes_in 0 130689 station_ip 83.123.200.242 130689 port 241 130689 unique_id port 130689 remote_ip 10.8.0.170 130691 username bcboard 130691 unique_id port 130691 terminate_cause Lost-Carrier 130691 bytes_out 2015441 130691 bytes_in 36327989 130691 station_ip 83.123.3.142 130691 port 15730260 130691 nas_port_type Virtual 130691 remote_ip 5.5.5.255 130692 username barzegar 130692 mac 130692 bytes_out 0 130692 bytes_in 0 130692 station_ip 5.119.155.205 130692 port 167 130692 unique_id port 130692 remote_ip 10.8.1.174 130694 username sedighe 130694 mac 130694 bytes_out 0 130694 bytes_in 0 130694 station_ip 37.129.56.125 130694 port 244 130694 unique_id port 130694 remote_ip 10.8.0.146 130698 username amir 130698 mac 130698 bytes_out 0 130698 bytes_in 0 130698 station_ip 46.225.213.191 130698 port 249 130698 unique_id port 130698 remote_ip 10.8.0.50 130701 username sedighe 130701 mac 130701 bytes_out 0 130701 bytes_in 0 130701 station_ip 37.129.212.74 130701 port 249 130701 unique_id port 130701 remote_ip 10.8.0.146 130703 username sabaghnezhad 130703 mac 130703 bytes_out 61683 67538 username vahid 67538 kill_reason Maximum check online fails reached 67538 mac 204.18.138.79:14333: Unknown host 67538 bytes_out 0 67538 bytes_in 0 67538 station_ip 204.18.138.79:14333 67538 port 1017 67538 unique_id port 130703 bytes_in 131923 130703 station_ip 83.123.155.39 130703 port 250 130703 unique_id port 130703 remote_ip 10.8.0.186 130709 username barzegar 130709 mac 130709 bytes_out 0 130709 bytes_in 0 130709 station_ip 5.119.155.205 130709 port 256 130709 unique_id port 130709 remote_ip 10.8.0.234 130710 username zare 130710 kill_reason Another user logged on this global unique id 130710 mac 130710 bytes_out 0 130710 bytes_in 0 130710 station_ip 94.183.214.14 130710 port 249 130710 unique_id port 130710 remote_ip 10.8.0.18 130711 username vanila 130711 mac 130711 bytes_out 2779354 130711 bytes_in 593792 130711 station_ip 83.122.85.141 130711 port 250 130711 unique_id port 130711 remote_ip 10.8.0.178 130714 username barzegar 67551 username arezoo 67551 kill_reason Maximum check online fails reached 67551 mac 5.237.81.233:49197: Unknown host 67551 bytes_out 0 67551 bytes_in 0 67551 station_ip 5.237.81.233:49197 67551 port 1017 67551 unique_id port 130714 mac 130714 bytes_out 0 130714 bytes_in 0 130714 station_ip 5.119.155.205 130714 port 254 130714 unique_id port 130714 remote_ip 10.8.0.234 130717 username sedighe 130717 mac 130717 bytes_out 8916 130717 bytes_in 12132 130717 station_ip 37.129.212.74 130717 port 258 130717 unique_id port 130717 remote_ip 10.8.0.146 130719 username alihosseini1 130719 mac 130719 bytes_out 345152 130719 bytes_in 3012365 130719 station_ip 5.119.137.114 130719 port 244 130719 unique_id port 130719 remote_ip 10.8.0.166 130720 username houshang 130720 mac 130720 bytes_out 1042275 130720 bytes_in 6720265 130720 station_ip 5.119.153.31 130720 port 241 130720 unique_id port 130720 remote_ip 10.8.0.22 130704 mac 130704 bytes_out 324178 130704 bytes_in 2812577 130704 station_ip 5.119.249.24 130704 port 244 130704 unique_id port 130704 remote_ip 10.8.0.166 130706 username asma2026 130706 mac 130706 bytes_out 0 130706 bytes_in 0 130706 station_ip 83.123.200.242 130706 port 244 130706 unique_id port 130706 remote_ip 10.8.0.170 130712 username asma2026 130712 mac 130712 bytes_out 0 130712 bytes_in 0 130712 station_ip 83.123.200.242 130712 port 256 130712 unique_id port 130712 remote_ip 10.8.0.170 130713 username amir 130713 mac 130713 bytes_out 66269 130713 bytes_in 466518 130713 station_ip 46.225.213.191 130713 port 257 130713 unique_id port 130713 remote_ip 10.8.0.50 130715 username barzegar 130715 mac 130715 bytes_out 0 130715 bytes_in 0 130715 station_ip 5.119.155.205 130715 port 250 130715 unique_id port 130715 remote_ip 10.8.0.234 130718 username sedighe 130718 mac 130718 bytes_out 1797 130718 bytes_in 4004 130718 station_ip 37.129.212.74 130718 port 250 130718 unique_id port 130718 remote_ip 10.8.0.146 130722 username amir 130722 mac 130722 bytes_out 0 130722 bytes_in 0 130722 station_ip 46.225.213.191 130722 port 244 130722 unique_id port 130722 remote_ip 10.8.0.50 130723 username zare 130723 mac 130723 bytes_out 0 130723 bytes_in 0 130723 station_ip 94.183.214.14 130723 port 249 130723 unique_id port 130728 username mehdizare 130728 mac 130728 bytes_out 0 130728 bytes_in 0 130728 station_ip 5.120.78.164 130728 port 247 130728 unique_id port 130728 remote_ip 10.8.0.90 130730 username sedighe 130730 mac 130730 bytes_out 0 130730 bytes_in 0 130730 station_ip 37.129.202.94 130730 port 241 130730 unique_id port 130730 remote_ip 10.8.0.146 130732 username farhad2 130732 mac 130732 bytes_out 5691577 130732 bytes_in 26724782 130732 station_ip 5.120.49.247 130732 port 237 130732 unique_id port 130732 remote_ip 10.8.0.190 130733 username zare 130733 mac 130733 bytes_out 208635 130733 bytes_in 600220 130733 station_ip 37.27.3.88 130733 port 247 130733 unique_id port 130733 remote_ip 10.8.0.18 130738 username zare 130738 mac 130738 bytes_out 0 130738 bytes_in 0 130738 station_ip 37.27.3.88 130738 port 168 130738 unique_id port 130738 remote_ip 10.8.1.58 130742 username zare 130742 mac 130742 bytes_out 0 130742 bytes_in 0 130742 station_ip 37.27.3.88 130742 port 169 130742 unique_id port 130742 remote_ip 10.8.1.58 130743 username zare 130743 mac 130743 bytes_out 0 130743 bytes_in 0 130743 station_ip 37.27.3.88 130743 port 247 130743 unique_id port 130743 remote_ip 10.8.0.18 130744 username zare 130744 mac 130744 bytes_out 0 130744 bytes_in 0 130744 station_ip 37.27.3.88 130744 port 247 130744 unique_id port 130744 remote_ip 10.8.0.18 130746 username vanila 130746 mac 130746 bytes_out 0 130746 bytes_in 0 130746 station_ip 83.122.119.149 130746 port 250 130746 unique_id port 130746 remote_ip 10.8.0.178 130747 username farhad2 130747 mac 130747 bytes_out 949854 130747 bytes_in 2003890 130747 station_ip 5.120.103.143 130747 port 244 130747 unique_id port 130747 remote_ip 10.8.0.190 130751 username barzegar 130751 mac 130751 bytes_out 2628 130751 bytes_in 4929 130751 station_ip 5.119.155.205 130751 port 244 130751 unique_id port 130751 remote_ip 10.8.0.234 130756 username barzegar 130756 mac 130756 bytes_out 0 130756 bytes_in 0 130756 station_ip 5.119.155.205 130756 port 244 130724 username mehdizare 130724 mac 130724 bytes_out 0 130724 bytes_in 0 130724 station_ip 5.120.78.164 130724 port 247 130724 unique_id port 130724 remote_ip 10.8.0.90 130726 username barzegar 130726 mac 130726 bytes_out 0 130726 bytes_in 0 130726 station_ip 5.119.155.205 130726 port 249 130726 unique_id port 130726 remote_ip 10.8.0.234 130729 username kordestani 130729 mac 130729 bytes_out 0 130729 bytes_in 0 130729 station_ip 151.235.107.234 130729 port 254 130729 unique_id port 130729 remote_ip 10.8.0.134 130734 username zare 130734 mac 130734 bytes_out 0 130734 bytes_in 0 130734 station_ip 37.27.3.88 130734 port 247 130734 unique_id port 130734 remote_ip 10.8.0.18 130735 username zare 130735 mac 130735 bytes_out 0 130735 bytes_in 0 130735 station_ip 37.27.3.88 130735 port 247 130735 unique_id port 130735 remote_ip 10.8.0.18 130736 username zare 130736 mac 130736 bytes_out 6148 130736 bytes_in 8899 130736 station_ip 37.27.3.88 130736 port 168 130736 unique_id port 130736 remote_ip 10.8.1.58 130737 username amir 130737 mac 130737 bytes_out 0 130737 bytes_in 0 130737 station_ip 46.225.213.191 130737 port 247 130737 unique_id port 130737 remote_ip 10.8.0.50 130741 username zare 130741 mac 130741 bytes_out 0 130741 bytes_in 0 130741 station_ip 37.27.3.88 130741 port 168 130741 unique_id port 130741 remote_ip 10.8.1.58 130745 username houshang 130745 mac 130745 bytes_out 0 130745 bytes_in 0 130745 station_ip 5.119.153.31 130745 port 250 130745 unique_id port 130745 remote_ip 10.8.0.22 130748 username barzegar 130748 mac 130748 bytes_out 0 130748 bytes_in 0 130748 station_ip 5.119.155.205 130748 port 167 130748 unique_id port 130748 remote_ip 10.8.1.174 130749 username barzegar 130749 mac 130749 bytes_out 0 130749 bytes_in 0 130749 station_ip 5.119.155.205 130749 port 244 130749 unique_id port 130749 remote_ip 10.8.0.234 130752 username barzegar 130752 mac 130752 bytes_out 0 130752 bytes_in 0 130752 station_ip 5.119.155.205 130752 port 168 130752 unique_id port 130752 remote_ip 10.8.1.174 130753 username barzegar 130753 mac 130753 bytes_out 0 130753 bytes_in 0 130753 station_ip 5.119.155.205 130753 port 244 130753 unique_id port 130753 remote_ip 10.8.0.234 130758 username mosi 130758 mac 130758 bytes_out 7154 130758 bytes_in 8429 130758 station_ip 151.235.98.140 130758 port 244 130758 unique_id port 130758 remote_ip 10.8.0.138 130765 username zare 130765 kill_reason Another user logged on this global unique id 130765 mac 130765 bytes_out 0 130765 bytes_in 0 130765 station_ip 37.27.3.88 130765 port 247 130765 unique_id port 130765 remote_ip 10.8.0.18 130770 username malekpoir 130770 mac 130770 bytes_out 0 130770 bytes_in 0 130770 station_ip 5.120.154.190 130770 port 237 130770 unique_id port 130770 remote_ip 10.8.0.58 130776 username barzegar 130776 mac 130776 bytes_out 0 130776 bytes_in 0 130776 station_ip 5.119.155.205 130776 port 241 130776 unique_id port 130776 remote_ip 10.8.0.234 130780 username mosi 130780 kill_reason Another user logged on this global unique id 130780 mac 130780 bytes_out 0 130780 bytes_in 0 130780 station_ip 151.235.98.140 130780 port 167 130780 unique_id port 130780 remote_ip 10.8.1.86 130781 username sedighe 130781 mac 130781 bytes_out 0 130781 bytes_in 0 130781 station_ip 83.123.135.157 130781 port 244 130781 unique_id port 130781 remote_ip 10.8.0.146 130784 username barzegar 130756 unique_id port 130756 remote_ip 10.8.0.234 130757 username barzegar 130757 mac 130757 bytes_out 0 130757 bytes_in 0 130757 station_ip 5.119.155.205 130757 port 252 130757 unique_id port 130757 remote_ip 10.8.0.234 130760 username bcboard 130760 unique_id port 130760 terminate_cause Lost-Carrier 130760 bytes_out 1996091 130760 bytes_in 17182197 130760 station_ip 83.123.141.152 130760 port 15730261 130760 nas_port_type Virtual 130760 remote_ip 5.5.5.254 130762 username khademi 130762 mac 130762 bytes_out 885004 130762 bytes_in 7682433 130762 station_ip 37.129.238.252 130762 port 253 130762 unique_id port 130762 remote_ip 10.8.0.10 130764 username mansur 130764 mac 130764 bytes_out 0 130764 bytes_in 0 130764 station_ip 5.119.48.2 130764 port 241 130764 unique_id port 130764 remote_ip 10.8.0.210 130767 username barzegar 130767 mac 130767 bytes_out 0 130767 bytes_in 0 130767 station_ip 5.119.155.205 130767 port 241 130767 unique_id port 130767 remote_ip 10.8.0.234 130769 username sedighe 130769 mac 130769 bytes_out 0 130769 bytes_in 0 130769 station_ip 83.123.135.157 130769 port 250 130769 unique_id port 130769 remote_ip 10.8.0.146 130772 username barzegar 130772 mac 130772 bytes_out 0 130772 bytes_in 0 130772 station_ip 5.119.155.205 130772 port 241 130772 unique_id port 130772 remote_ip 10.8.0.234 130774 username amir 130774 mac 130774 bytes_out 0 130774 bytes_in 0 130774 station_ip 46.225.213.191 130774 port 254 130774 unique_id port 130774 remote_ip 10.8.0.50 130775 username zare 130775 kill_reason Another user logged on this global unique id 130775 mac 130775 bytes_out 0 130775 bytes_in 0 130775 station_ip 37.27.3.88 130775 port 247 130775 unique_id port 130777 username mohammadjavad 130777 mac 130777 bytes_out 0 130777 bytes_in 0 130777 station_ip 37.129.223.199 130777 port 252 130777 unique_id port 130777 remote_ip 10.8.0.142 130778 username zare 130778 mac 130778 bytes_out 0 130778 bytes_in 0 130778 station_ip 37.27.3.88 130778 port 247 130778 unique_id port 130779 username barzegar 130779 mac 130779 bytes_out 40280 130779 bytes_in 308507 130779 station_ip 5.119.155.205 130779 port 241 130779 unique_id port 130779 remote_ip 10.8.0.234 130782 username sedighe 130782 mac 130782 bytes_out 4950 130782 bytes_in 4963 130782 station_ip 83.123.135.157 130782 port 252 130782 unique_id port 130782 remote_ip 10.8.0.146 130794 username mohsenaskari 130794 mac 130794 bytes_out 0 130794 bytes_in 0 130794 station_ip 83.123.218.66 130794 port 254 130794 unique_id port 130794 remote_ip 10.8.0.246 130795 username zare 130795 mac 130795 bytes_out 0 130795 bytes_in 0 130795 station_ip 37.27.55.76 130795 port 169 130795 unique_id port 130798 username houshang 130798 mac 130798 bytes_out 0 130798 bytes_in 0 130798 station_ip 5.119.153.31 130798 port 244 130798 unique_id port 130798 remote_ip 10.8.0.22 130800 username farhad2 130800 mac 130800 bytes_out 267761 130800 bytes_in 1226045 130800 station_ip 5.119.206.133 130800 port 244 130800 unique_id port 130800 remote_ip 10.8.0.190 130805 username mehdizare 130805 mac 130805 bytes_out 0 130805 bytes_in 0 130805 station_ip 5.120.78.164 130805 port 253 130805 unique_id port 130805 remote_ip 10.8.0.90 130807 username forozande 130807 kill_reason Relative expiration date has reached 130807 mac 130807 bytes_out 0 130807 bytes_in 0 130807 station_ip 37.129.208.170 130807 port 254 130807 unique_id port 130761 mac 130761 bytes_out 361931 130761 bytes_in 3919584 130761 station_ip 151.235.107.234 130761 port 167 130761 unique_id port 130761 remote_ip 10.8.1.98 130763 username vanila 130763 mac 130763 bytes_out 0 130763 bytes_in 0 130763 station_ip 83.122.119.149 130763 port 244 130763 unique_id port 130763 remote_ip 10.8.0.178 130766 username barzegar 130766 mac 130766 bytes_out 83697 130766 bytes_in 261231 130766 station_ip 5.119.155.205 130766 port 252 130766 unique_id port 130766 remote_ip 10.8.0.234 130768 username kamali2 130768 mac 130768 bytes_out 0 130768 bytes_in 0 130768 station_ip 5.120.115.73 130768 port 244 130768 unique_id port 130768 remote_ip 10.8.0.214 130771 username sedighe 130771 mac 130771 bytes_out 0 130771 bytes_in 0 130771 station_ip 83.123.135.157 130771 port 244 130771 unique_id port 130771 remote_ip 10.8.0.146 130773 username sedighe 130773 mac 130773 bytes_out 21557 130773 bytes_in 26572 130773 station_ip 83.123.135.157 130773 port 237 130773 unique_id port 130773 remote_ip 10.8.0.146 130783 username zare 130783 kill_reason Another user logged on this global unique id 130783 mac 130783 bytes_out 0 130783 bytes_in 0 130783 station_ip 37.27.55.76 130783 port 169 130783 unique_id port 130783 remote_ip 10.8.1.58 130785 username barzegar 130785 mac 130785 bytes_out 0 130785 bytes_in 0 130785 station_ip 5.119.155.205 130785 port 252 130785 unique_id port 130785 remote_ip 10.8.0.234 130787 username vanila 130787 mac 130787 bytes_out 539648 130787 bytes_in 289439 130787 station_ip 37.129.43.63 130787 port 247 130787 unique_id port 130787 remote_ip 10.8.0.178 130790 username amirabbas 130790 unique_id port 130790 terminate_cause User-Request 130790 bytes_out 22365428 130790 bytes_in 674788331 130790 station_ip 37.27.30.23 130790 port 15730262 130790 nas_port_type Virtual 130790 remote_ip 5.5.5.252 130792 username sedighe 130792 mac 130792 bytes_out 0 130792 bytes_in 0 130792 station_ip 83.123.135.157 130792 port 244 130792 unique_id port 130792 remote_ip 10.8.0.146 130799 username houshang 130799 mac 130799 bytes_out 608470 130799 bytes_in 6098716 130799 station_ip 5.119.153.31 130799 port 252 130799 unique_id port 130799 remote_ip 10.8.0.22 130802 username mehdizare 130802 mac 130802 bytes_out 69960 130802 bytes_in 179753 130802 station_ip 5.120.78.164 130802 port 247 130802 unique_id port 130802 remote_ip 10.8.0.90 130806 username hamid 130806 mac 130806 bytes_out 0 130806 bytes_in 0 130806 station_ip 83.122.79.19 130806 port 256 130806 unique_id port 130806 remote_ip 10.8.0.106 130808 username forozande 130808 kill_reason Wrong password 130808 mac 130808 bytes_out 0 130808 bytes_in 0 130808 station_ip 37.129.208.170 130808 port 254 130808 unique_id port 130814 username amir 130814 kill_reason Another user logged on this global unique id 130814 mac 130814 bytes_out 0 130814 bytes_in 0 130814 station_ip 46.225.213.191 130814 port 237 130814 unique_id port 130814 remote_ip 10.8.0.50 130815 username aminvpn 130815 unique_id port 130815 terminate_cause Lost-Carrier 130815 bytes_out 625760 130815 bytes_in 9755354 130815 station_ip 5.119.111.98 130815 port 15730263 130815 nas_port_type Virtual 130815 remote_ip 5.5.5.236 130818 username alihosseini1 130818 mac 130818 bytes_out 0 130818 bytes_in 0 130818 station_ip 5.120.138.186 130818 port 256 130818 unique_id port 130818 remote_ip 10.8.0.166 130820 username mosi 130820 kill_reason Another user logged on this global unique id 130820 mac 130820 bytes_out 0 130784 mac 130784 bytes_out 0 130784 bytes_in 0 130784 station_ip 5.119.155.205 130784 port 247 130784 unique_id port 130784 remote_ip 10.8.0.234 130786 username sedighe 130786 mac 130786 bytes_out 15342 130786 bytes_in 12771 130786 station_ip 83.123.135.157 130786 port 244 130786 unique_id port 130786 remote_ip 10.8.0.146 130788 username mehdizare 130788 mac 130788 bytes_out 0 130788 bytes_in 0 130788 station_ip 5.120.78.164 130788 port 168 130788 unique_id port 130788 remote_ip 10.8.1.42 130789 username mosi 130789 kill_reason Another user logged on this global unique id 130789 mac 130789 bytes_out 0 130789 bytes_in 0 130789 station_ip 151.235.98.140 130789 port 167 130789 unique_id port 130791 username mehdizare 130791 mac 130791 bytes_out 0 130791 bytes_in 0 130791 station_ip 5.120.78.164 130791 port 168 130791 unique_id port 130791 remote_ip 10.8.1.42 130793 username sedighe 130793 mac 130793 bytes_out 0 130793 bytes_in 0 130793 station_ip 37.129.105.142 130793 port 252 130793 unique_id port 130793 remote_ip 10.8.0.146 130796 username sedighe 130796 mac 130796 bytes_out 509189 130796 bytes_in 8883947 130796 station_ip 37.129.105.142 130796 port 252 130796 unique_id port 130796 remote_ip 10.8.0.146 130797 username farhad2 130797 mac 130797 bytes_out 1060114 130797 bytes_in 4790433 130797 station_ip 5.119.206.133 130797 port 253 130797 unique_id port 130797 remote_ip 10.8.0.190 130801 username houshang 130801 mac 130801 bytes_out 2875808 130801 bytes_in 48375697 130801 station_ip 5.119.153.31 130801 port 253 130801 unique_id port 130801 remote_ip 10.8.0.22 130803 username sedighe 130803 mac 130803 bytes_out 114598 130803 bytes_in 729489 130803 station_ip 37.129.105.142 130803 port 254 130803 unique_id port 130803 remote_ip 10.8.0.146 130804 username sedighe 130804 mac 130804 bytes_out 53672 130804 bytes_in 400351 130804 station_ip 83.122.161.189 130804 port 252 130804 unique_id port 130804 remote_ip 10.8.0.146 130810 username forozande 130810 kill_reason Relative expiration date has reached 130810 mac 130810 bytes_out 0 130810 bytes_in 0 130810 station_ip 37.129.208.170 130810 port 254 130810 unique_id port 130812 username mohammadjavad 130812 mac 130812 bytes_out 251582 130812 bytes_in 1169503 130812 station_ip 83.122.235.103 130812 port 254 130812 unique_id port 130812 remote_ip 10.8.0.142 130813 username hashtadani3 130813 mac 130813 bytes_out 0 130813 bytes_in 0 130813 station_ip 83.122.172.128 130813 port 254 130813 unique_id port 130813 remote_ip 10.8.0.154 130816 username alihosseini1 130816 mac 130816 bytes_out 6039 130816 bytes_in 8308 130816 station_ip 5.120.138.186 130816 port 258 130816 unique_id port 130816 remote_ip 10.8.0.166 130819 username hashtadani3 130819 mac 130819 bytes_out 0 130819 bytes_in 0 130819 station_ip 83.122.172.128 130819 port 256 130819 unique_id port 130819 remote_ip 10.8.0.154 130821 username godarzi 130821 mac 130821 bytes_out 504179 130821 bytes_in 1870666 130821 station_ip 46.225.214.15 130821 port 254 130821 unique_id port 130821 remote_ip 10.8.0.174 130826 username vanila 130826 mac 130826 bytes_out 2167172 130826 bytes_in 1361441 130826 station_ip 37.129.88.207 130826 port 247 130826 unique_id port 130826 remote_ip 10.8.0.178 130835 username mohsenaskari 130835 mac 130835 bytes_out 0 130835 bytes_in 0 130835 station_ip 83.123.150.70 130835 port 244 130835 unique_id port 130836 username amir 131295 mac 130809 username forozande 130809 kill_reason Wrong password 130809 mac 130809 bytes_out 0 130809 bytes_in 0 130809 station_ip 37.129.208.170 130809 port 254 130809 unique_id port 130811 username hashtadani3 130811 mac 130811 bytes_out 48714 130811 bytes_in 64721 130811 station_ip 83.122.172.128 130811 port 256 130811 unique_id port 130811 remote_ip 10.8.0.154 130817 username jafari 130817 kill_reason Another user logged on this global unique id 130817 mac 130817 bytes_out 0 130817 bytes_in 0 130817 station_ip 89.32.105.72 130817 port 257 130817 unique_id port 130817 remote_ip 10.8.0.242 130822 username farhad2 130822 mac 130822 bytes_out 2123144 130822 bytes_in 8228317 130822 station_ip 5.119.206.133 130822 port 247 130822 unique_id port 130822 remote_ip 10.8.0.190 130824 username hamid 130824 kill_reason Another user logged on this global unique id 130824 mac 130824 bytes_out 0 130824 bytes_in 0 130824 station_ip 83.122.79.19 130824 port 253 130824 unique_id port 130824 remote_ip 10.8.0.106 130825 username hashtadani3 130825 mac 130825 bytes_out 0 130825 bytes_in 0 130825 station_ip 83.122.172.128 130825 port 254 130825 unique_id port 130825 remote_ip 10.8.0.154 130827 username jafari 130827 kill_reason Another user logged on this global unique id 130827 mac 130827 bytes_out 0 130827 bytes_in 0 130827 station_ip 89.32.105.72 130827 port 257 130827 unique_id port 130830 username farhad2 130830 mac 130830 bytes_out 512268 130830 bytes_in 2175217 130830 station_ip 5.119.206.133 130830 port 168 130830 unique_id port 130830 remote_ip 10.8.1.222 130833 username alihosseini1 130833 mac 130833 bytes_out 29098 130833 bytes_in 15025 130833 station_ip 5.120.138.186 130833 port 258 130833 unique_id port 130833 remote_ip 10.8.0.166 130838 username hashtadani3 130838 mac 130838 bytes_out 900787 130838 bytes_in 15793668 130838 station_ip 83.122.172.128 130838 port 254 130838 unique_id port 130838 remote_ip 10.8.0.154 130841 username vanila 130841 mac 130841 bytes_out 0 130841 bytes_in 0 130841 station_ip 37.129.88.207 130841 port 253 130841 unique_id port 130841 remote_ip 10.8.0.178 130844 username hashtadani3 130844 mac 130844 bytes_out 0 130844 bytes_in 0 130844 station_ip 83.122.172.128 130844 port 168 130844 unique_id port 130844 remote_ip 10.8.1.94 130851 username hashtadani3 130851 mac 130851 bytes_out 0 130851 bytes_in 0 130851 station_ip 83.122.172.128 130851 port 254 130851 unique_id port 130851 remote_ip 10.8.0.154 130856 username amir 130856 kill_reason Another user logged on this global unique id 130856 mac 130856 bytes_out 0 130856 bytes_in 0 130856 station_ip 46.225.213.191 130856 port 237 130856 unique_id port 130861 username hashtadani3 130861 mac 130861 bytes_out 0 130861 bytes_in 0 130861 station_ip 83.122.172.128 130861 port 258 130861 unique_id port 130861 remote_ip 10.8.0.154 130866 username barzegar 130866 mac 130866 bytes_out 6457 130866 bytes_in 8422 130866 station_ip 5.119.198.113 130866 port 169 130866 unique_id port 130866 remote_ip 10.8.1.174 130870 username barzegar 130870 mac 130870 bytes_out 0 130870 bytes_in 0 130870 station_ip 5.119.198.113 130870 port 168 130870 unique_id port 130870 remote_ip 10.8.1.174 130874 username jafari 130874 mac 130874 bytes_out 0 130874 bytes_in 0 130874 station_ip 89.32.105.72 130874 port 257 130874 unique_id port 130875 username arman1 130875 kill_reason Relative expiration date has reached 130875 mac 130875 bytes_out 0 130875 bytes_in 0 130875 station_ip 46.225.214.15 130820 bytes_in 0 130820 station_ip 151.235.98.140 130820 port 167 130820 unique_id port 130823 username hashtadani3 130823 mac 130823 bytes_out 0 130823 bytes_in 0 130823 station_ip 83.122.172.128 130823 port 258 130823 unique_id port 130823 remote_ip 10.8.0.154 130828 username hashtadani3 130828 mac 130828 bytes_out 0 130828 bytes_in 0 130828 station_ip 83.122.172.128 130828 port 247 130828 unique_id port 130828 remote_ip 10.8.0.154 130829 username vanila 130829 mac 130829 bytes_out 2050908 130829 bytes_in 1000015 130829 station_ip 37.129.88.207 130829 port 254 130829 unique_id port 130829 remote_ip 10.8.0.178 130831 username mohsenaskari 130831 kill_reason Another user logged on this global unique id 130831 mac 130831 bytes_out 0 130831 bytes_in 0 130831 station_ip 83.123.150.70 130831 port 244 130831 unique_id port 130831 remote_ip 10.8.0.246 130832 username farhad2 130832 mac 130832 bytes_out 0 130832 bytes_in 0 130832 station_ip 5.119.206.133 130832 port 168 130832 unique_id port 130832 remote_ip 10.8.1.222 130834 username hamid 130834 mac 130834 bytes_out 0 130834 bytes_in 0 130834 station_ip 83.122.79.19 130834 port 253 130834 unique_id port 130837 username godarzi 130837 mac 130837 bytes_out 19541 130837 bytes_in 66975 130837 station_ip 5.119.202.152 130837 port 244 130837 unique_id port 130837 remote_ip 10.8.0.174 130843 username jafari 130843 kill_reason Another user logged on this global unique id 130843 mac 130843 bytes_out 0 130843 bytes_in 0 130843 station_ip 89.32.105.72 130843 port 257 130843 unique_id port 130845 username alihosseini1 130845 mac 130845 bytes_out 0 130845 bytes_in 0 130845 station_ip 5.120.13.93 130845 port 168 130845 unique_id port 130845 remote_ip 10.8.1.106 130846 username hashtadani3 130846 mac 130846 bytes_out 0 130846 bytes_in 0 130846 station_ip 83.122.172.128 130846 port 168 130846 unique_id port 130846 remote_ip 10.8.1.94 130847 username barzegar 130847 kill_reason Maximum check online fails reached 130847 mac 130847 bytes_out 0 130847 bytes_in 0 130847 station_ip 5.119.104.90 130847 port 244 130847 unique_id port 130853 username alihosseini1 130853 mac 130853 bytes_out 0 130853 bytes_in 0 130853 station_ip 5.120.13.93 130853 port 254 130853 unique_id port 130853 remote_ip 10.8.0.166 130854 username hashtadani3 130854 mac 130854 bytes_out 0 130854 bytes_in 0 130854 station_ip 83.122.172.128 130854 port 254 130854 unique_id port 130854 remote_ip 10.8.0.154 130863 username mosi 130863 kill_reason Another user logged on this global unique id 130863 mac 130863 bytes_out 0 130863 bytes_in 0 130863 station_ip 151.235.98.140 130863 port 167 130863 unique_id port 130864 username jafari 130864 kill_reason Another user logged on this global unique id 130864 mac 130864 bytes_out 0 130864 bytes_in 0 130864 station_ip 89.32.105.72 130864 port 257 130864 unique_id port 130868 username alihosseini1 130868 mac 130868 bytes_out 0 130868 bytes_in 0 130868 station_ip 5.120.13.93 130868 port 250 130868 unique_id port 130868 remote_ip 10.8.0.166 130869 username barzegar 130869 mac 130869 bytes_out 0 130869 bytes_in 0 130869 station_ip 5.119.198.113 130869 port 168 130869 unique_id port 130869 remote_ip 10.8.1.174 130872 username mehdizare 130872 mac 130872 bytes_out 0 130872 bytes_in 0 130872 station_ip 5.120.78.164 130872 port 252 130872 unique_id port 130872 remote_ip 10.8.0.90 130878 username mosi 130878 kill_reason Another user logged on this global unique id 130878 mac 130836 kill_reason Another user logged on this global unique id 130836 mac 130836 bytes_out 0 130836 bytes_in 0 130836 station_ip 46.225.213.191 130836 port 237 130836 unique_id port 130839 username farhad2 130839 mac 130839 bytes_out 542765 130839 bytes_in 1845830 130839 station_ip 5.119.206.133 130839 port 168 130839 unique_id port 130839 remote_ip 10.8.1.222 130840 username alihosseini1 130840 mac 130840 bytes_out 0 130840 bytes_in 0 130840 station_ip 5.120.13.93 130840 port 253 130840 unique_id port 130840 remote_ip 10.8.0.166 130842 username hashtadani3 130842 mac 130842 bytes_out 16371 130842 bytes_in 59945 130842 station_ip 83.122.172.128 130842 port 244 130842 unique_id port 130842 remote_ip 10.8.0.154 130848 username hashtadani3 130848 mac 130848 bytes_out 0 130848 bytes_in 0 130848 station_ip 83.122.172.128 130848 port 168 130848 unique_id port 130848 remote_ip 10.8.1.94 130849 username hashtadani3 130849 mac 130849 bytes_out 0 130849 bytes_in 0 130849 station_ip 83.122.172.128 130849 port 254 130849 unique_id port 130849 remote_ip 10.8.0.154 130850 username hashtadani3 130850 kill_reason Maximum check online fails reached 130850 mac 130850 bytes_out 0 130850 bytes_in 0 130850 station_ip 83.122.172.128 130850 port 253 130850 unique_id port 130852 username hashtadani3 130852 mac 130852 bytes_out 0 130852 bytes_in 0 130852 station_ip 83.122.172.128 130852 port 254 130852 unique_id port 130852 remote_ip 10.8.0.154 130855 username farhad2 130855 mac 130855 bytes_out 0 130855 bytes_in 0 130855 station_ip 5.119.206.133 130855 port 168 130855 unique_id port 130855 remote_ip 10.8.1.222 130857 username hashtadani3 130857 mac 130857 bytes_out 0 130857 bytes_in 0 130857 station_ip 83.122.172.128 130857 port 254 130857 unique_id port 130857 remote_ip 10.8.0.154 130858 username hashtadani3 130858 mac 130858 bytes_out 0 130858 bytes_in 0 130858 station_ip 83.122.172.128 130858 port 254 130858 unique_id port 130858 remote_ip 10.8.0.154 130859 username hashtadani3 130859 mac 130859 bytes_out 0 130859 bytes_in 0 130859 station_ip 83.122.172.128 130859 port 254 130859 unique_id port 130859 remote_ip 10.8.0.154 130860 username farhad2 130860 mac 130860 bytes_out 0 130860 bytes_in 0 130860 station_ip 5.119.206.133 130860 port 168 130860 unique_id port 130860 remote_ip 10.8.1.222 130862 username farhad2 130862 mac 130862 bytes_out 0 130862 bytes_in 0 130862 station_ip 5.119.206.133 130862 port 168 130862 unique_id port 130862 remote_ip 10.8.1.222 130865 username malekpoir 130865 mac 130865 bytes_out 156706 130865 bytes_in 189825 130865 station_ip 5.120.154.190 130865 port 250 130865 unique_id port 130865 remote_ip 10.8.0.58 130867 username mehdizare 130867 mac 130867 bytes_out 198442 130867 bytes_in 252586 67706 username vahid 67706 kill_reason Maximum check online fails reached 67706 mac 5.209.124.87:20449: Unknown host 67706 bytes_out 0 67706 bytes_in 0 67706 station_ip 5.209.124.87:20449 67706 port 1017 67706 unique_id port 130867 station_ip 5.120.78.164 130867 port 252 130867 unique_id port 130867 remote_ip 10.8.0.90 130871 username hashtadani3 130871 mac 130871 bytes_out 0 130871 bytes_in 0 130871 station_ip 83.122.172.128 130871 port 259 130871 unique_id port 130871 remote_ip 10.8.0.154 130873 username hashtadani3 130873 mac 130873 bytes_out 0 130873 bytes_in 0 130873 station_ip 83.122.172.128 130873 port 260 130873 unique_id port 130873 remote_ip 10.8.0.154 130877 username barzegar 130875 port 252 130875 unique_id port 130876 username yarmohamadi 130876 mac 130876 bytes_out 0 130876 bytes_in 0 130876 station_ip 46.225.214.15 130876 port 257 130876 unique_id port 130876 remote_ip 10.8.0.26 130879 username hashtadani3 130879 mac 130879 bytes_out 0 130879 bytes_in 0 130879 station_ip 83.122.172.128 130879 port 260 130879 unique_id port 130879 remote_ip 10.8.0.154 130880 username aminvpn 130880 unique_id port 130880 terminate_cause Lost-Carrier 130880 bytes_out 1011764 130880 bytes_in 9496090 130880 station_ip 5.120.187.189 130880 port 15730264 130880 nas_port_type Virtual 130880 remote_ip 5.5.5.254 130882 username amir 130882 kill_reason Another user logged on this global unique id 130882 mac 130882 bytes_out 0 130882 bytes_in 0 130882 station_ip 46.225.213.191 130882 port 237 130882 unique_id port 130886 username barzegar 130886 mac 130886 bytes_out 0 130886 bytes_in 0 130886 station_ip 5.119.198.113 130886 port 260 130886 unique_id port 130886 remote_ip 10.8.0.234 130887 username mohammadmahdi 130887 kill_reason Another user logged on this global unique id 130887 mac 130887 bytes_out 0 130887 bytes_in 0 130887 station_ip 5.119.223.15 130887 port 258 130887 unique_id port 130892 username barzegar 130892 mac 130892 bytes_out 0 130892 bytes_in 0 130892 station_ip 5.119.198.113 130892 port 168 130892 unique_id port 130892 remote_ip 10.8.1.174 130893 username khalili 130893 kill_reason Another user logged on this global unique id 130893 mac 130893 bytes_out 0 130893 bytes_in 0 130893 station_ip 5.119.131.147 130893 port 254 130893 unique_id port 130893 remote_ip 10.8.0.86 130896 username hashtadani3 130896 kill_reason Another user logged on this global unique id 130896 mac 130896 bytes_out 0 130896 bytes_in 0 130896 station_ip 83.122.172.128 130896 port 260 130896 unique_id port 130896 remote_ip 10.8.0.154 130898 username mahdixz 130898 kill_reason Wrong password 130898 unique_id port 130898 bytes_out 0 130898 bytes_in 0 130898 station_ip 151.235.98.117 130898 port 15730265 130898 nas_port_type Virtual 130899 username mahdixz 130899 unique_id port 130899 terminate_cause User-Request 130899 bytes_out 0 130899 bytes_in 0 130899 station_ip 151.235.98.117 130899 port 15730267 130899 nas_port_type Virtual 130899 remote_ip 5.5.5.253 130901 username amir 130901 mac 130901 bytes_out 0 130901 bytes_in 0 130901 station_ip 46.225.213.191 130901 port 237 130901 unique_id port 130901 remote_ip 10.8.0.50 130903 username hashtadani3 130903 mac 130903 bytes_out 0 130903 bytes_in 0 130903 station_ip 83.122.172.128 130903 port 237 130903 unique_id port 130903 remote_ip 10.8.0.154 130904 username hashtadani3 130904 mac 130904 bytes_out 0 130904 bytes_in 0 130904 station_ip 83.122.172.128 130904 port 237 130904 unique_id port 130904 remote_ip 10.8.0.154 130908 username jafari 67693 username arezoo 67693 kill_reason Maximum check online fails reached 67693 mac 5.237.81.233:49185: Unknown host 67693 bytes_out 0 67693 bytes_in 0 67693 station_ip 5.237.81.233:49185 67693 port 1017 67693 unique_id port 130908 kill_reason Another user logged on this global unique id 130908 mac 130908 bytes_out 0 130908 bytes_in 0 130908 station_ip 37.137.16.62 130908 port 257 130908 unique_id port 130908 remote_ip 10.8.0.242 130910 username vanila 130910 mac 130910 bytes_out 0 130910 bytes_in 0 130910 station_ip 37.129.218.231 130910 port 237 130910 unique_id port 130910 remote_ip 10.8.0.178 130911 username khalili 130911 kill_reason Another user logged on this global unique id 130911 mac 130911 bytes_out 0 130911 bytes_in 0 130877 mac 130877 bytes_out 0 130877 bytes_in 0 130877 station_ip 5.119.198.113 130877 port 168 130877 unique_id port 130877 remote_ip 10.8.1.174 130883 username alihosseini1 130883 mac 130883 bytes_out 43000 130883 bytes_in 98340 130883 station_ip 5.120.13.93 130883 port 257 130883 unique_id port 130883 remote_ip 10.8.0.166 130888 username mosi 130888 kill_reason Another user logged on this global unique id 130888 mac 130888 bytes_out 0 130888 bytes_in 0 130888 station_ip 151.235.98.140 130888 port 167 130888 unique_id port 130889 username hashtadani3 130889 mac 130889 bytes_out 0 130889 bytes_in 0 130889 station_ip 83.122.172.128 130889 port 257 130889 unique_id port 130889 remote_ip 10.8.0.154 130890 username hashtadani3 130890 mac 130890 bytes_out 0 130890 bytes_in 0 130890 station_ip 83.122.172.128 130890 port 257 130890 unique_id port 130890 remote_ip 10.8.0.154 130891 username hashtadani3 130891 mac 130891 bytes_out 0 130891 bytes_in 0 130891 station_ip 83.122.172.128 130891 port 257 130891 unique_id port 130891 remote_ip 10.8.0.154 130897 username yarmohamadi 130897 mac 130897 bytes_out 3437412 130897 bytes_in 30358755 130897 station_ip 5.120.178.96 130897 port 261 130897 unique_id port 130897 remote_ip 10.8.0.26 130906 username khalili 130906 kill_reason Another user logged on this global unique id 130906 mac 130906 bytes_out 0 130906 bytes_in 0 130906 station_ip 5.119.131.147 130906 port 254 130906 unique_id port 130912 username barzegar 130912 mac 130912 bytes_out 0 130912 bytes_in 0 130912 station_ip 5.119.198.113 130912 port 169 130912 unique_id port 130912 remote_ip 10.8.1.174 130916 username mohammadjavad 130916 mac 130916 bytes_out 763821 130916 bytes_in 11547103 130916 station_ip 83.123.47.243 130916 port 260 130916 unique_id port 130916 remote_ip 10.8.0.142 130924 username barzegar 130924 mac 130924 bytes_out 0 130924 bytes_in 0 130924 station_ip 5.119.198.113 130924 port 169 130924 unique_id port 130924 remote_ip 10.8.1.174 130925 username hashtadani3 130925 mac 130925 bytes_out 0 130925 bytes_in 0 130925 station_ip 83.122.172.128 130925 port 237 130925 unique_id port 130925 remote_ip 10.8.0.154 130927 username aminvpn 130927 mac 130927 bytes_out 0 130927 bytes_in 0 130927 station_ip 37.129.172.198 130927 port 247 130927 unique_id port 130929 username mahdixz 130929 unique_id port 130929 terminate_cause Lost-Carrier 130929 bytes_out 17622753 130929 bytes_in 504049464 130929 station_ip 151.235.98.117 130929 port 15730268 130929 nas_port_type Virtual 130929 remote_ip 5.5.5.255 130930 username aminvpn 130930 mac 130930 bytes_out 0 130930 bytes_in 0 130930 station_ip 37.129.172.198 130930 port 247 130930 unique_id port 130930 remote_ip 10.8.0.14 130934 username naeimeh 130934 mac 130934 bytes_out 0 130934 bytes_in 0 130934 station_ip 113.203.127.166 130934 port 168 130934 unique_id port 130934 remote_ip 10.8.1.206 130941 username barzegar 130941 mac 130941 bytes_out 2367 130941 bytes_in 4599 130941 station_ip 5.119.198.113 130941 port 261 130941 unique_id port 130941 remote_ip 10.8.0.234 130942 username hashtadani3 130942 mac 130942 bytes_out 0 130942 bytes_in 0 130942 station_ip 83.122.172.128 130942 port 261 130942 unique_id port 130942 remote_ip 10.8.0.154 130944 username amir 130944 mac 130944 bytes_out 41967 130944 bytes_in 136763 130944 station_ip 46.225.213.191 130944 port 260 130944 unique_id port 130944 remote_ip 10.8.0.50 130945 username alihosseini1 130878 bytes_out 0 130878 bytes_in 0 130878 station_ip 151.235.98.140 130878 port 167 130878 unique_id port 130881 username mohammadmahdi 130881 kill_reason Another user logged on this global unique id 130881 mac 130881 bytes_out 0 130881 bytes_in 0 130881 station_ip 5.119.223.15 130881 port 258 130881 unique_id port 130881 remote_ip 10.8.0.54 130884 username hashtadani3 130884 mac 130884 bytes_out 0 130884 bytes_in 0 130884 station_ip 83.122.172.128 130884 port 257 130884 unique_id port 130884 remote_ip 10.8.0.154 130885 username hashtadani3 130885 mac 130885 bytes_out 0 130885 bytes_in 0 130885 station_ip 83.122.172.128 130885 port 257 130885 unique_id port 130885 remote_ip 10.8.0.154 130894 username kordestani 130894 mac 130894 bytes_out 0 130894 bytes_in 0 130894 station_ip 151.235.98.145 130894 port 169 130894 unique_id port 130894 remote_ip 10.8.1.98 130895 username amir 130895 mac 130895 bytes_out 0 130895 bytes_in 0 130895 station_ip 46.225.213.191 130895 port 237 130895 unique_id port 130900 username mahdixz 130900 unique_id port 130900 terminate_cause User-Request 130900 bytes_out 24229 130900 bytes_in 97865 130900 station_ip 151.235.98.117 130900 port 15730266 130900 nas_port_type Virtual 130900 remote_ip 5.5.5.255 130902 username hashtadani3 130902 mac 130902 bytes_out 0 130902 bytes_in 0 130902 station_ip 83.122.172.128 130902 port 260 130902 unique_id port 130905 username barzegar 130905 mac 130905 bytes_out 17665706 130905 bytes_in 14580075 130905 station_ip 5.119.198.113 130905 port 262 130905 unique_id port 130905 remote_ip 10.8.0.234 130907 username barzegar 130907 mac 130907 bytes_out 3399 130907 bytes_in 6409 130907 station_ip 5.119.198.113 130907 port 168 130907 unique_id port 130907 remote_ip 10.8.1.174 130909 username hashtadani3 130909 mac 130909 bytes_out 0 130909 bytes_in 0 130909 station_ip 83.122.172.128 130909 port 260 130909 unique_id port 130909 remote_ip 10.8.0.154 130914 username hashtadani3 130914 mac 130914 bytes_out 0 130914 bytes_in 0 130914 station_ip 83.122.172.128 130914 port 261 130914 unique_id port 130914 remote_ip 10.8.0.154 130915 username hashtadani3 130915 mac 130915 bytes_out 0 130915 bytes_in 0 130915 station_ip 83.122.172.128 130915 port 263 130915 unique_id port 130915 remote_ip 10.8.0.154 130918 username hashtadani3 130918 mac 130918 bytes_out 0 130918 bytes_in 0 130918 station_ip 83.122.172.128 130918 port 261 130918 unique_id port 130918 remote_ip 10.8.0.154 130920 username houshang 130920 mac 130920 bytes_out 0 130920 bytes_in 0 130920 station_ip 5.119.153.31 130920 port 260 130920 unique_id port 130920 remote_ip 10.8.0.22 130926 username jafari 130926 kill_reason Another user logged on this global unique id 130926 mac 130926 bytes_out 0 130926 bytes_in 0 130926 station_ip 37.137.16.62 130926 port 257 130926 unique_id port 130928 username aminvpn 130928 mac 130928 bytes_out 0 130928 bytes_in 0 130928 station_ip 37.129.248.155 130928 port 260 130928 unique_id port 130928 remote_ip 10.8.0.14 130931 username barzegar 130931 mac 130931 bytes_out 0 130931 bytes_in 0 130931 station_ip 5.119.198.113 130931 port 169 130931 unique_id port 130931 remote_ip 10.8.1.174 130933 username mohammadmahdi 130933 kill_reason Another user logged on this global unique id 130933 mac 130933 bytes_out 0 130933 bytes_in 0 130933 station_ip 5.119.223.15 130933 port 258 130933 unique_id port 130935 username hashtadani3 130935 mac 130935 bytes_out 0 130911 station_ip 5.119.131.147 130911 port 254 130911 unique_id port 130913 username amir 130913 mac 130913 bytes_out 36460 130913 bytes_in 254919 130913 station_ip 46.225.213.191 130913 port 237 130913 unique_id port 130913 remote_ip 10.8.0.50 130917 username amir 130917 mac 130917 bytes_out 52213 130917 bytes_in 282574 130917 station_ip 46.225.213.191 130917 port 261 130917 unique_id port 130917 remote_ip 10.8.0.50 130919 username vanila 130919 mac 130919 bytes_out 3241365 130919 bytes_in 1326509 130919 station_ip 37.129.218.231 130919 port 262 130919 unique_id port 130919 remote_ip 10.8.0.178 130921 username khalili 130921 mac 130921 bytes_out 0 130921 bytes_in 0 130921 station_ip 5.119.131.147 130921 port 254 130921 unique_id port 130922 username barzegar 130922 mac 130922 bytes_out 8741 130922 bytes_in 10844 130922 station_ip 5.119.198.113 130922 port 237 130922 unique_id port 130922 remote_ip 10.8.0.234 130923 username aminvpn 130923 kill_reason Another user logged on this global unique id 130923 mac 130923 bytes_out 0 130923 bytes_in 0 130923 station_ip 37.129.172.198 130923 port 247 130923 unique_id port 130923 remote_ip 10.8.0.14 130932 username aminvpn 130932 mac 130932 bytes_out 0 130932 bytes_in 0 130932 station_ip 37.129.248.155 130932 port 260 130932 unique_id port 130932 remote_ip 10.8.0.14 130936 username mohammadmahdi 130936 mac 130936 bytes_out 0 130936 bytes_in 0 130936 station_ip 5.119.223.15 130936 port 258 130936 unique_id port 130937 username hashtadani3 130937 mac 130937 bytes_out 0 130937 bytes_in 0 130937 station_ip 83.122.172.128 130937 port 258 130937 unique_id port 130937 remote_ip 10.8.0.154 130938 username barzegar 130938 mac 130938 bytes_out 0 130938 bytes_in 0 130938 station_ip 5.119.198.113 130938 port 258 130938 unique_id port 130938 remote_ip 10.8.0.234 130939 username amir 130939 mac 130939 bytes_out 172412 130939 bytes_in 1046372 130939 station_ip 46.225.213.191 130939 port 260 130939 unique_id port 130939 remote_ip 10.8.0.50 130946 username amir 130946 mac 130946 bytes_out 0 130946 bytes_in 0 130946 station_ip 46.225.213.191 130946 port 254 130946 unique_id port 130946 remote_ip 10.8.0.50 130948 username aminvpn 130948 mac 130948 bytes_out 0 130948 bytes_in 0 130948 station_ip 151.238.233.145 130948 port 254 130948 unique_id port 130948 remote_ip 10.8.0.14 130951 username amir 130951 mac 130951 bytes_out 0 130951 bytes_in 0 130951 station_ip 46.225.213.191 67746 username arezoo 67746 kill_reason Maximum check online fails reached 67746 mac 5.237.81.233:49774: Unknown host 67746 bytes_out 0 67746 bytes_in 0 67746 station_ip 5.237.81.233:49774 67746 port 1017 67746 unique_id port 130951 port 254 130951 unique_id port 130951 remote_ip 10.8.0.50 130953 username aminvpn 130953 mac 130953 bytes_out 0 130953 bytes_in 0 130953 station_ip 37.129.172.198 130953 port 247 130953 unique_id port 130953 remote_ip 10.8.0.14 130955 username jafari 130955 kill_reason Another user logged on this global unique id 130955 mac 130955 bytes_out 0 130955 bytes_in 0 130955 station_ip 37.137.16.62 130955 port 257 130955 unique_id port 130956 username hashtadani3 130997 remote_ip 10.8.0.10 130956 kill_reason Maximum check online fails reached 130956 mac 130956 bytes_out 0 130956 bytes_in 0 130956 station_ip 83.122.172.128 130956 port 247 130956 unique_id port 130958 username aminvpn 130958 mac 130958 bytes_out 41925 130958 bytes_in 224503 130958 station_ip 151.238.233.145 130958 port 260 130935 bytes_in 0 130935 station_ip 83.122.172.128 130935 port 261 130935 unique_id port 130935 remote_ip 10.8.0.154 130940 username hashtadani3 130940 mac 130940 bytes_out 0 130940 bytes_in 0 130940 station_ip 83.122.172.128 130940 port 262 130940 unique_id port 130940 remote_ip 10.8.0.154 130943 username barzegar 130943 mac 130943 bytes_out 0 130943 bytes_in 0 130943 station_ip 5.119.198.113 130943 port 261 130943 unique_id port 130943 remote_ip 10.8.0.234 130949 username aminvpn 130949 mac 130949 bytes_out 0 130949 bytes_in 0 130949 station_ip 37.129.172.198 130949 port 260 130949 unique_id port 130949 remote_ip 10.8.0.14 130954 username amir 130954 mac 130954 bytes_out 9447 130954 bytes_in 40023 130954 station_ip 46.225.213.191 130954 port 254 130954 unique_id port 130954 remote_ip 10.8.0.50 130957 username amir 130957 mac 130957 bytes_out 0 130957 bytes_in 0 130957 station_ip 46.225.213.191 130957 port 254 130957 unique_id port 130957 remote_ip 10.8.0.50 130960 username amir 130960 mac 130960 bytes_out 0 130960 bytes_in 0 130960 station_ip 46.225.213.191 130960 port 260 130960 unique_id port 130960 remote_ip 10.8.0.50 130964 username barzegar 130964 mac 130964 bytes_out 5382767 130964 bytes_in 2993619 130964 station_ip 5.119.198.113 130964 port 168 130964 unique_id port 130964 remote_ip 10.8.1.174 130966 username amir 130966 mac 130966 bytes_out 28854 130966 bytes_in 115399 130966 station_ip 46.225.213.191 130966 port 261 130966 unique_id port 130966 remote_ip 10.8.0.50 130967 username barzegar 130967 mac 130967 bytes_out 0 130967 bytes_in 0 130967 station_ip 5.119.198.113 130967 port 168 130967 unique_id port 130967 remote_ip 10.8.1.174 130976 username barzegar 130976 mac 130976 bytes_out 0 130976 bytes_in 0 130976 station_ip 5.119.198.113 130976 port 168 130976 unique_id port 130976 remote_ip 10.8.1.174 130977 username amir 130977 mac 130977 bytes_out 0 130977 bytes_in 0 130977 station_ip 46.225.213.191 130977 port 261 130977 unique_id port 130977 remote_ip 10.8.0.50 130980 username moradi 130980 mac 130980 bytes_out 4380831 130980 bytes_in 46343009 130980 station_ip 46.225.214.15 130980 port 241 130980 unique_id port 130980 remote_ip 10.8.0.250 130986 username khademi 130986 mac 130986 bytes_out 0 130986 bytes_in 0 130986 station_ip 37.129.238.252 130986 port 266 130986 unique_id port 130986 remote_ip 10.8.0.10 130987 username alireza 130987 unique_id port 130987 terminate_cause User-Request 130987 bytes_out 1230543 130987 bytes_in 32866296 130987 station_ip 5.119.219.235 130987 port 15730271 130987 nas_port_type Virtual 130987 remote_ip 5.5.5.221 130991 username hashtadani3 130991 mac 130991 bytes_out 0 130991 bytes_in 0 130991 station_ip 83.122.172.128 130991 port 261 130991 unique_id port 130991 remote_ip 10.8.0.154 130994 username amir 130994 mac 130994 bytes_out 0 130994 bytes_in 0 130994 station_ip 46.225.213.191 130994 port 241 130994 unique_id port 130994 remote_ip 10.8.0.50 130997 username khademi 130997 mac 130997 bytes_out 48553 130997 bytes_in 140135 130997 station_ip 37.129.238.252 130997 port 260 130997 unique_id port 131000 username jafari 131000 kill_reason Another user logged on this global unique id 131000 mac 131000 bytes_out 0 131000 bytes_in 0 131000 station_ip 89.47.155.36 131000 port 264 131000 unique_id port 131001 username amir 131001 mac 131001 bytes_out 17387 131001 bytes_in 94241 130945 mac 130945 bytes_out 806069 130945 bytes_in 7489942 130945 station_ip 5.119.236.110 130945 port 254 130945 unique_id port 130945 remote_ip 10.8.0.166 130947 username aminvpn 130947 mac 130947 bytes_out 128832 130947 bytes_in 151599 130947 station_ip 37.129.172.198 130947 port 247 130947 unique_id port 130947 remote_ip 10.8.0.14 130950 username hashtadani3 130950 mac 130950 bytes_out 83806 130950 bytes_in 1043423 130950 station_ip 83.122.172.128 130950 port 247 130950 unique_id port 130950 remote_ip 10.8.0.154 130952 username aminvpn 130952 mac 130952 bytes_out 0 130952 bytes_in 0 130952 station_ip 151.238.233.145 130952 port 261 130952 unique_id port 130952 remote_ip 10.8.0.14 130959 username mahdixz 130959 unique_id port 130959 terminate_cause User-Request 130959 bytes_out 2939179 130959 bytes_in 27831384 130959 station_ip 151.235.98.117 130959 port 15730270 130959 nas_port_type Virtual 130959 remote_ip 5.5.5.255 130962 username hashtadani3 130962 mac 130962 bytes_out 0 130962 bytes_in 0 130962 station_ip 83.122.172.128 130962 port 169 130962 unique_id port 130962 remote_ip 10.8.1.94 130968 username mahdiyehalizadeh 130968 mac 130968 bytes_out 710728 130968 bytes_in 12487788 130968 station_ip 83.122.135.130 130968 port 237 130968 unique_id port 130968 remote_ip 10.8.0.82 130970 username aminvpn 130970 mac 130970 bytes_out 16518 130970 bytes_in 54204 130970 station_ip 151.238.233.145 130970 port 260 130970 unique_id port 130970 remote_ip 10.8.0.14 130979 username godarzi 130979 kill_reason Another user logged on this global unique id 130979 mac 130979 bytes_out 0 130979 bytes_in 0 130979 station_ip 5.202.15.63 130979 port 258 130979 unique_id port 130979 remote_ip 10.8.0.174 130981 username hamid 130981 mac 130981 bytes_out 17089 130981 bytes_in 57775 130981 station_ip 83.122.79.19 130981 port 266 130981 unique_id port 130981 remote_ip 10.8.0.106 130982 username khademi 130982 mac 130982 bytes_out 1822985 130982 bytes_in 10986482 130982 station_ip 37.129.238.252 130982 port 249 130982 unique_id port 130982 remote_ip 10.8.0.10 130984 username hashtadani3 130984 mac 130984 bytes_out 0 130984 bytes_in 0 130984 station_ip 83.122.172.128 130984 port 249 130984 unique_id port 130984 remote_ip 10.8.0.154 130988 username amir 130988 mac 130988 bytes_out 0 130988 bytes_in 0 130988 station_ip 46.225.213.191 130988 port 261 130988 unique_id port 130988 remote_ip 10.8.0.50 130993 username hashtadani3 130993 kill_reason Maximum check online fails reached 130993 mac 130993 bytes_out 0 130993 bytes_in 0 130993 station_ip 83.122.172.128 130993 port 266 130993 unique_id port 130995 username hashtadani3 130995 mac 130995 bytes_out 0 130995 bytes_in 0 130995 station_ip 83.122.172.128 130995 port 261 130995 unique_id port 130995 remote_ip 10.8.0.154 130996 username amir 130996 mac 130996 bytes_out 0 130996 bytes_in 0 130996 station_ip 46.225.213.191 130996 port 241 130996 unique_id port 130996 remote_ip 10.8.0.50 130999 username hashtadani3 130999 mac 130999 bytes_out 0 130999 bytes_in 0 130999 station_ip 83.122.172.128 130999 port 261 130999 unique_id port 130999 remote_ip 10.8.0.154 131003 username hashtadani3 131003 kill_reason Maximum check online fails reached 131003 mac 131003 bytes_out 0 131003 bytes_in 0 131003 station_ip 83.122.172.128 131003 port 261 131003 unique_id port 131007 username amir 131007 mac 131007 bytes_out 0 131007 bytes_in 0 131007 station_ip 46.225.213.191 131007 port 257 130958 unique_id port 130958 remote_ip 10.8.0.14 130961 username aminvpn 130961 mac 130961 bytes_out 0 130961 bytes_in 0 130961 station_ip 37.129.172.198 130961 port 254 130961 unique_id port 130961 remote_ip 10.8.0.14 130963 username jafari 130963 mac 130963 bytes_out 0 130963 bytes_in 0 130963 station_ip 37.137.16.62 130963 port 257 130963 unique_id port 130965 username hashtadani3 130965 kill_reason Maximum check online fails reached 130965 mac 130965 bytes_out 0 130965 bytes_in 0 130965 station_ip 83.122.172.128 130965 port 254 130965 unique_id port 130969 username hashtadani3 130969 mac 130969 bytes_out 5134 130969 bytes_in 10874 130969 station_ip 83.122.172.128 130969 port 262 130969 unique_id port 130969 remote_ip 10.8.0.154 130971 username amir 130971 mac 130971 bytes_out 13727 130971 bytes_in 86061 130971 station_ip 46.225.213.191 130971 port 257 130971 unique_id port 130971 remote_ip 10.8.0.50 130972 username amir 130972 mac 130972 bytes_out 0 130972 bytes_in 0 130972 station_ip 46.225.213.191 130972 port 257 130972 unique_id port 130972 remote_ip 10.8.0.50 130973 username hashtadani3 130973 mac 130973 bytes_out 0 130973 bytes_in 0 130973 station_ip 83.122.172.128 130973 port 260 130973 unique_id port 130973 remote_ip 10.8.0.154 130974 username amir 130974 mac 130974 bytes_out 0 130974 bytes_in 0 130974 station_ip 46.225.213.191 130974 port 257 130974 unique_id port 130974 remote_ip 10.8.0.50 130975 username amir 130975 mac 130975 bytes_out 0 130975 bytes_in 0 130975 station_ip 46.225.213.191 130975 port 257 130975 unique_id port 130975 remote_ip 10.8.0.50 130978 username jafari 130978 kill_reason Another user logged on this global unique id 130978 mac 130978 bytes_out 0 130978 bytes_in 0 130978 station_ip 89.47.155.36 130978 port 264 130978 unique_id port 130978 remote_ip 10.8.0.242 130983 username hashtadani3 130983 mac 130983 bytes_out 4867 130983 bytes_in 7144 130983 station_ip 83.122.172.128 130983 port 260 130983 unique_id port 130983 remote_ip 10.8.0.154 130985 username amir 130985 mac 130985 bytes_out 115317 130985 bytes_in 452227 130985 station_ip 46.225.213.191 130985 port 261 130985 unique_id port 130985 remote_ip 10.8.0.50 130989 username hashtadani3 130989 mac 130989 bytes_out 0 130989 bytes_in 0 130989 station_ip 83.122.172.128 130989 port 169 130989 unique_id port 130989 remote_ip 10.8.1.94 130990 username irannezhad 130990 mac 130990 bytes_out 134131 130990 bytes_in 917303 130990 station_ip 37.129.200.127 130990 port 241 130990 unique_id port 130990 remote_ip 10.8.0.182 130992 username irannezhad 130992 mac 130992 bytes_out 0 130992 bytes_in 0 130992 station_ip 37.129.200.127 130992 port 267 130992 unique_id port 130992 remote_ip 10.8.0.182 130998 username hashtadani3 130998 mac 130998 bytes_out 0 130998 bytes_in 0 130998 station_ip 83.122.172.128 130998 port 260 130998 unique_id port 130998 remote_ip 10.8.0.154 131002 username sedighe 131002 mac 131002 bytes_out 452845 131002 bytes_in 11506499 131002 station_ip 83.123.30.48 131002 port 257 131002 unique_id port 131002 remote_ip 10.8.0.146 131004 username amir 131004 mac 131004 bytes_out 19478 131004 bytes_in 83849 131004 station_ip 46.225.213.191 131004 port 267 131004 unique_id port 131004 remote_ip 10.8.0.50 131005 username mansur 131005 mac 131005 bytes_out 394058 131005 bytes_in 3411451 131005 station_ip 5.120.129.120 131005 port 262 131005 unique_id port 131001 station_ip 46.225.213.191 131001 port 267 131001 unique_id port 131001 remote_ip 10.8.0.50 131006 username irannezhad 131006 mac 131006 bytes_out 319150 131006 bytes_in 2635834 131006 station_ip 37.129.200.127 131006 port 260 131006 unique_id port 131006 remote_ip 10.8.0.182 131008 username mansur 131008 mac 131008 bytes_out 0 131008 bytes_in 0 131008 station_ip 5.120.129.120 131008 port 169 131008 unique_id port 131008 remote_ip 10.8.1.194 131010 username amir 131010 mac 131010 bytes_out 0 131010 bytes_in 0 131010 station_ip 46.225.213.191 131010 port 257 131010 unique_id port 131010 remote_ip 10.8.0.50 131020 username amir 131020 mac 131020 bytes_out 0 131020 bytes_in 0 131020 station_ip 46.225.213.191 131020 port 262 131020 unique_id port 131020 remote_ip 10.8.0.50 131022 username barzegar 131022 kill_reason Another user logged on this global unique id 131022 mac 131022 bytes_out 0 131022 bytes_in 0 131022 station_ip 5.119.198.113 131022 port 168 131022 unique_id port 131022 remote_ip 10.8.1.174 131023 username amir 131023 mac 131023 bytes_out 0 131023 bytes_in 0 131023 station_ip 46.225.213.191 131023 port 262 131023 unique_id port 131023 remote_ip 10.8.0.50 131025 username sedighe 131025 mac 131025 bytes_out 127329 131025 bytes_in 232624 131025 station_ip 113.203.87.231 131025 port 268 131025 unique_id port 131025 remote_ip 10.8.0.146 131026 username mahdixz 131026 unique_id port 131026 terminate_cause User-Request 131026 bytes_out 825298 131026 bytes_in 5621747 131026 station_ip 151.235.98.117 131026 port 15730272 131026 nas_port_type Virtual 131026 remote_ip 5.5.5.223 131031 username mansur 131031 kill_reason Maximum check online fails reached 131031 mac 131031 bytes_out 0 131031 bytes_in 0 131031 station_ip 5.120.129.120 131031 port 250 131031 unique_id port 131033 username amir 131033 mac 131033 bytes_out 0 131033 bytes_in 0 131033 station_ip 46.225.213.191 131033 port 262 131033 unique_id port 131033 remote_ip 10.8.0.50 131036 username malekpoir 131036 mac 131036 bytes_out 6200 131036 bytes_in 12225 131036 station_ip 5.120.154.190 131036 port 269 131036 unique_id port 131036 remote_ip 10.8.0.58 131038 username mansur 131038 mac 131038 bytes_out 0 131038 bytes_in 0 131038 station_ip 5.120.129.120 131038 port 169 131038 unique_id port 131038 remote_ip 10.8.1.194 131042 username sedighe 131042 mac 131042 bytes_out 5330 131042 bytes_in 11773 131042 station_ip 113.203.87.231 131042 port 269 131042 unique_id port 131042 remote_ip 10.8.0.146 131043 username hashtadani3 131043 kill_reason Maximum check online fails reached 131043 mac 131043 bytes_out 0 131043 bytes_in 0 131043 station_ip 83.122.172.128 131043 port 270 131043 unique_id port 131045 username khademi 131045 mac 131045 bytes_out 118559 131045 bytes_in 541707 131045 station_ip 37.129.238.252 131045 port 241 131045 unique_id port 131045 remote_ip 10.8.0.10 131047 username barzegar 131047 kill_reason Another user logged on this global unique id 131047 mac 131047 bytes_out 0 131047 bytes_in 0 131047 station_ip 5.119.198.113 131047 port 168 131047 unique_id port 131051 username hashtadani3 131051 kill_reason Maximum number of concurrent logins reached 131051 mac 131051 bytes_out 0 131051 bytes_in 0 131051 station_ip 83.122.172.128 131051 port 272 131051 unique_id port 131054 username amir 131054 mac 131054 bytes_out 19652 131054 bytes_in 91576 131054 station_ip 46.225.213.191 131054 port 271 131054 unique_id port 131054 remote_ip 10.8.0.50 131055 username amir 131005 remote_ip 10.8.0.210 131013 username hashtadani3 131013 kill_reason Maximum check online fails reached 131013 mac 131013 bytes_out 0 131013 bytes_in 0 131013 station_ip 83.122.172.128 131013 port 260 131013 unique_id port 131015 username amir 131015 mac 131015 bytes_out 13838 131015 bytes_in 78886 131015 station_ip 46.225.213.191 131015 port 262 131015 unique_id port 131015 remote_ip 10.8.0.50 131017 username mansur 131017 kill_reason Maximum check online fails reached 131017 mac 131017 bytes_out 0 131017 bytes_in 0 131017 station_ip 5.120.129.120 131017 port 267 131017 unique_id port 131019 username mansur 131019 mac 131019 bytes_out 0 131019 bytes_in 0 131019 station_ip 5.120.129.120 131019 port 169 131019 unique_id port 131019 remote_ip 10.8.1.194 131021 username malekpoir 131021 mac 131021 bytes_out 1230014 131021 bytes_in 6673514 131021 station_ip 5.120.154.190 131021 port 250 131021 unique_id port 131021 remote_ip 10.8.0.58 131027 username vanila 131027 mac 131027 bytes_out 148063 131027 bytes_in 804999 131027 station_ip 37.129.252.143 131027 port 269 131027 unique_id port 131027 remote_ip 10.8.0.178 131029 username amir 131029 mac 131029 bytes_out 32370 131029 bytes_in 123355 131029 station_ip 46.225.213.191 131029 port 262 131029 unique_id port 131029 remote_ip 10.8.0.50 131030 username hashtadani3 131030 kill_reason Maximum check online fails reached 131030 mac 131030 bytes_out 0 131030 bytes_in 0 131030 station_ip 83.122.172.128 131030 port 268 131030 unique_id port 131032 username sedighe 131032 mac 131032 bytes_out 6318 131032 bytes_in 11267 131032 station_ip 113.203.87.231 131032 port 265 131032 unique_id port 131032 remote_ip 10.8.0.146 131035 username mansur 131035 mac 131035 bytes_out 0 131035 bytes_in 0 131035 station_ip 5.120.129.120 131035 port 270 131035 unique_id port 131035 remote_ip 10.8.0.210 131037 username sedighe 131037 mac 131037 bytes_out 0 131037 bytes_in 0 131037 station_ip 113.203.87.231 131037 port 265 131037 unique_id port 131037 remote_ip 10.8.0.146 131039 username hashtadani3 131039 mac 131039 bytes_out 0 131039 bytes_in 0 131039 station_ip 83.122.172.128 131039 port 169 131039 unique_id port 131039 remote_ip 10.8.1.94 131040 username amir 131040 mac 131040 bytes_out 58297 131040 bytes_in 232553 131040 station_ip 46.225.213.191 131040 port 262 131040 unique_id port 131040 remote_ip 10.8.0.50 131048 username hashtadani3 131048 mac 131048 bytes_out 291986 131048 bytes_in 2522885 131048 station_ip 83.122.172.128 131048 port 169 131048 unique_id port 131048 remote_ip 10.8.1.94 131052 username hashtadani3 131052 kill_reason Maximum check online fails reached 131052 mac 131052 bytes_out 0 131052 bytes_in 0 131052 station_ip 83.122.172.128 131052 port 263 131052 unique_id port 131053 username hashtadani3 131053 kill_reason Maximum check online fails reached 131053 mac 131053 bytes_out 0 131053 bytes_in 0 131053 station_ip 83.122.172.128 131053 port 269 131053 unique_id port 131059 username mansur 131059 mac 131059 bytes_out 0 131059 bytes_in 0 131059 station_ip 5.120.129.120 131059 port 171 131059 unique_id port 67831 username arezoo 131059 remote_ip 10.8.1.194 131066 username alihosseini1 131066 mac 131066 bytes_out 58028 131066 bytes_in 86442 131066 station_ip 5.120.45.94 131066 port 271 131066 unique_id port 131066 remote_ip 10.8.0.166 131068 username mosi 131068 kill_reason Another user logged on this global unique id 131068 mac 131068 bytes_out 0 131068 bytes_in 0 131007 unique_id port 131007 remote_ip 10.8.0.50 131009 username hashtadani3 131009 mac 131009 bytes_out 0 131009 bytes_in 0 131009 station_ip 83.122.172.128 131009 port 170 131009 unique_id port 131009 remote_ip 10.8.1.94 131011 username hashtadani3 131011 kill_reason Maximum number of concurrent logins reached 131011 mac 131011 bytes_out 0 131011 bytes_in 0 131011 station_ip 83.122.172.128 131011 port 262 131011 unique_id port 131012 username moradi 131012 kill_reason Another user logged on this global unique id 131012 mac 131012 bytes_out 0 131012 bytes_in 0 131012 station_ip 37.27.23.231 131012 port 249 131012 unique_id port 131012 remote_ip 10.8.0.250 131014 username mansur 131014 mac 131014 bytes_out 0 131014 bytes_in 0 131014 station_ip 5.120.129.120 131014 port 169 131014 unique_id port 131014 remote_ip 10.8.1.194 131016 username hashtadani3 131016 kill_reason Maximum check online fails reached 131016 mac 131016 bytes_out 0 131016 bytes_in 0 131016 station_ip 83.122.172.128 131016 port 257 131016 unique_id port 131018 username vanila 131018 mac 131018 bytes_out 10057193 131018 bytes_in 7450655 131018 station_ip 37.129.252.143 131018 port 265 131018 unique_id port 131018 remote_ip 10.8.0.178 131024 username hashtadani3 131024 mac 131024 bytes_out 0 131024 bytes_in 0 131024 station_ip 83.122.172.128 131024 port 169 131024 unique_id port 131024 remote_ip 10.8.1.94 131028 username mansur 131028 mac 131028 bytes_out 0 131028 bytes_in 0 131028 station_ip 5.120.129.120 131028 port 169 131028 unique_id port 131028 remote_ip 10.8.1.194 131034 username mansur 131034 mac 131034 bytes_out 0 131034 bytes_in 0 131034 station_ip 5.120.129.120 131034 port 169 131034 unique_id port 131034 remote_ip 10.8.1.194 131041 username jafari 131041 mac 131041 bytes_out 0 131041 bytes_in 0 131041 station_ip 89.47.155.36 131041 port 264 131041 unique_id port 131044 username amir 131044 mac 131044 bytes_out 0 131044 bytes_in 0 131044 station_ip 46.225.213.191 131044 port 262 131044 unique_id port 131044 remote_ip 10.8.0.50 131046 username hosseine 131046 mac 131046 bytes_out 0 131046 bytes_in 0 131046 station_ip 37.129.122.8 131046 port 263 131046 unique_id port 131046 remote_ip 10.8.0.238 131049 username hashtadani3 131049 mac 131049 bytes_out 0 131049 bytes_in 0 131049 station_ip 83.122.172.128 131049 port 169 131049 unique_id port 131049 remote_ip 10.8.1.94 131050 username amir 131050 mac 131050 bytes_out 0 131050 bytes_in 0 131050 station_ip 46.225.213.191 131050 port 262 131050 unique_id port 131050 remote_ip 10.8.0.50 131056 username mansur 131056 mac 131056 bytes_out 0 131056 bytes_in 0 131056 station_ip 5.120.129.120 67831 kill_reason Maximum check online fails reached 67831 mac 5.237.80.96:49218: Unknown host 67831 bytes_out 0 67831 bytes_in 0 67831 station_ip 5.237.80.96:49218 67831 port 1017 67831 unique_id port 131056 port 271 131056 unique_id port 131056 remote_ip 10.8.0.210 131058 username sedighe 131058 mac 131058 bytes_out 31883 131058 bytes_in 36880 131058 station_ip 113.203.87.231 131058 port 264 131058 unique_id port 131058 remote_ip 10.8.0.146 131060 username barzegar 131060 kill_reason Another user logged on this global unique id 131060 mac 131060 bytes_out 0 131060 bytes_in 0 131060 station_ip 5.119.198.113 131060 port 168 131060 unique_id port 131062 username naeimeh 131062 mac 131062 bytes_out 0 131062 bytes_in 0 131062 station_ip 83.123.211.203 131062 port 170 131062 unique_id port 131055 mac 131055 bytes_out 0 131055 bytes_in 0 131055 station_ip 46.225.213.191 131055 port 169 131055 unique_id port 131055 remote_ip 10.8.1.22 131057 username farhad2 131057 mac 131057 bytes_out 0 131057 bytes_in 0 131057 station_ip 5.119.4.0 131057 port 171 131057 unique_id port 131057 remote_ip 10.8.1.222 131061 username amir 131061 mac 131061 bytes_out 0 131061 bytes_in 0 131061 station_ip 46.225.213.191 131061 port 169 131061 unique_id port 131061 remote_ip 10.8.1.22 131065 username sedighe 131065 mac 131065 bytes_out 27016 131065 bytes_in 30401 131065 station_ip 113.203.87.231 131065 port 272 131065 unique_id port 131065 remote_ip 10.8.0.146 131070 username mahdixz 131070 kill_reason Maximum number of concurrent logins reached 131070 unique_id port 131070 bytes_out 0 131070 bytes_in 0 131070 station_ip 151.235.98.117 131070 port 15730276 131070 nas_port_type Virtual 131072 username mosi 131072 mac 131072 bytes_out 0 131072 bytes_in 0 131072 station_ip 151.235.98.140 131072 port 167 131072 unique_id port 131080 username amir 131080 mac 131080 bytes_out 0 131080 bytes_in 0 131080 station_ip 46.225.213.191 131080 port 274 131080 unique_id port 131080 remote_ip 10.8.0.50 67859 username arezoo 67859 kill_reason Maximum check online fails reached 67859 mac 5.237.68.127:49226: Unknown host 67859 bytes_out 0 67859 bytes_in 0 67859 station_ip 5.237.68.127:49226 67859 port 1017 67859 unique_id port 131083 username mahdixz 131083 unique_id port 131083 terminate_cause Lost-Carrier 131083 bytes_out 223001 131083 bytes_in 7732163 131083 station_ip 151.235.98.117 131083 port 15730274 131083 nas_port_type Virtual 131083 remote_ip 5.5.5.222 131084 username godarzi 131084 mac 131084 bytes_out 0 131084 bytes_in 0 131084 station_ip 5.202.15.63 131084 port 258 131084 unique_id port 131089 username amir 131089 mac 131089 bytes_out 0 131089 bytes_in 0 131089 station_ip 46.225.213.191 131089 port 258 131089 unique_id port 131089 remote_ip 10.8.0.50 131092 username amir 131092 mac 131092 bytes_out 52402 131092 bytes_in 264590 131092 station_ip 46.225.213.191 131092 port 264 131092 unique_id port 131092 remote_ip 10.8.0.50 131095 username mansur 131095 mac 131095 bytes_out 0 131095 bytes_in 0 131095 station_ip 5.120.129.120 131095 port 272 131095 unique_id port 131095 remote_ip 10.8.0.210 131096 username amir 131096 mac 131096 bytes_out 0 131096 bytes_in 0 131096 station_ip 46.225.213.191 131096 port 264 131096 unique_id port 131096 remote_ip 10.8.0.50 131097 username alihosseini1 131097 mac 131097 bytes_out 334476 131097 bytes_in 450203 131097 station_ip 5.120.19.42 131097 port 167 131097 unique_id port 131097 remote_ip 10.8.1.106 131099 username amir 131099 mac 131099 bytes_out 0 131099 bytes_in 0 131099 station_ip 46.225.213.191 131099 port 264 131099 unique_id port 131099 remote_ip 10.8.0.50 131102 username amir 131102 mac 131102 bytes_out 10745 131102 bytes_in 51309 131102 station_ip 46.225.213.191 131102 port 264 131102 unique_id port 131102 remote_ip 10.8.0.50 131104 username aminvpn 131104 unique_id port 131104 terminate_cause User-Request 131104 bytes_out 5173613 131104 bytes_in 175178785 131104 station_ip 31.57.141.16 131104 port 15730277 131104 nas_port_type Virtual 131104 remote_ip 5.5.5.255 131106 username barzegar 131106 kill_reason Another user logged on this global unique id 131106 mac 131106 bytes_out 0 131106 bytes_in 0 131106 station_ip 5.119.220.77 131106 port 170 131106 unique_id port 131112 username mosi 131062 remote_ip 10.8.1.206 131063 username barzegar 131063 mac 131063 bytes_out 0 131063 bytes_in 0 131063 station_ip 5.119.198.113 131063 port 168 131063 unique_id port 131064 username mansur 131064 mac 131064 bytes_out 0 131064 bytes_in 0 131064 station_ip 5.120.129.120 131064 port 264 131064 unique_id port 131064 remote_ip 10.8.0.210 131067 username amir 131067 mac 131067 bytes_out 0 131067 bytes_in 0 131067 station_ip 46.225.213.191 131067 port 169 131067 unique_id port 131067 remote_ip 10.8.1.22 131069 username amir 131069 mac 131069 bytes_out 0 131069 bytes_in 0 131069 station_ip 46.225.213.191 131069 port 168 131069 unique_id port 131069 remote_ip 10.8.1.22 131073 username mehdizare 131073 mac 131073 bytes_out 273098 131073 bytes_in 457706 131073 station_ip 5.120.78.164 131073 port 252 131073 unique_id port 131073 remote_ip 10.8.0.90 67847 username arezoo 67847 kill_reason Maximum check online fails reached 67847 mac 5.237.80.96:51553: Unknown host 67847 bytes_out 0 67847 bytes_in 0 67847 station_ip 5.237.80.96:51553 67847 port 1017 67847 unique_id port 67851 username arezoo 67851 kill_reason Maximum check online fails reached 67851 mac 5.237.68.127:49181: Unknown host 67851 bytes_out 0 67851 bytes_in 0 67851 station_ip 5.237.68.127:49181 67851 port 1017 67851 unique_id port 67853 username arezoo 67853 kill_reason Another user logged on this global unique id 67853 mac 5.237.68.127:49608: Unknown host 67853 bytes_out 0 67853 bytes_in 0 67853 station_ip 5.237.68.127:49608 67853 port 1017 67853 unique_id port 131074 username sedighe 131074 mac 131074 bytes_out 30715 131074 bytes_in 108003 131074 station_ip 113.203.87.231 131074 port 264 131074 unique_id port 131074 remote_ip 10.8.0.146 131075 username amir 131075 mac 131075 bytes_out 0 131075 bytes_in 0 131075 station_ip 46.225.213.191 131075 port 168 131075 unique_id port 131075 remote_ip 10.8.1.22 131076 username farhad2 131076 mac 131076 bytes_out 0 131076 bytes_in 0 131076 station_ip 5.119.4.0 131076 port 169 131076 unique_id port 131076 remote_ip 10.8.1.222 131081 username mahdixz 131081 unique_id port 131081 terminate_cause Lost-Carrier 131081 bytes_out 480986 131081 bytes_in 7733274 131081 station_ip 151.235.98.117 131081 port 15730273 131081 nas_port_type Virtual 131081 remote_ip 5.5.5.255 131082 username amir 131082 mac 131082 bytes_out 0 131082 bytes_in 0 131082 station_ip 46.225.213.191 131082 port 274 131082 unique_id port 131082 remote_ip 10.8.0.50 131088 username amir 131088 mac 131088 bytes_out 29870 131088 bytes_in 193554 131088 station_ip 46.225.213.191 131088 port 258 131088 unique_id port 131088 remote_ip 10.8.0.50 131091 username mosi 131091 mac 131091 bytes_out 0 131091 bytes_in 0 131091 station_ip 89.47.153.144 131091 port 264 131091 unique_id port 131091 remote_ip 10.8.0.138 131093 username sedighe 131093 mac 131093 bytes_out 109721 131093 bytes_in 633080 131093 station_ip 113.203.87.231 131093 port 275 131093 unique_id port 131093 remote_ip 10.8.0.146 131100 username amirabbas 131100 unique_id port 131100 terminate_cause User-Request 131100 bytes_out 748499 131100 bytes_in 10649655 131100 station_ip 37.27.30.23 131100 port 15730278 131100 nas_port_type Virtual 131100 remote_ip 5.5.5.254 131101 username mansur 131101 mac 131101 bytes_out 0 131101 bytes_in 0 131101 station_ip 5.120.129.120 131101 port 275 131101 unique_id port 131101 remote_ip 10.8.0.210 131103 username mansur 131103 mac 131103 bytes_out 0 131103 bytes_in 0 131103 station_ip 5.120.129.120 131068 station_ip 151.235.98.140 131068 port 167 131068 unique_id port 131071 username hosseine 131071 mac 131071 bytes_out 2515108 131071 bytes_in 7723193 131071 station_ip 37.129.122.8 131071 port 262 131071 unique_id port 131071 remote_ip 10.8.0.238 131077 username amir 131077 mac 131077 bytes_out 0 131077 bytes_in 0 131077 station_ip 46.225.213.191 131077 port 168 131077 unique_id port 131077 remote_ip 10.8.1.22 131078 username amir 131078 mac 131078 bytes_out 0 131078 bytes_in 0 131078 station_ip 46.225.213.191 131078 port 274 131078 unique_id port 131078 remote_ip 10.8.0.50 131079 username farhad2 131079 mac 131079 bytes_out 0 131079 bytes_in 0 131079 station_ip 5.119.4.0 131079 port 169 131079 unique_id port 131079 remote_ip 10.8.1.222 131085 username aminvpn 131085 unique_id port 131085 terminate_cause Lost-Carrier 131085 bytes_out 5552587 131085 bytes_in 137916609 131085 station_ip 151.238.233.145 131085 port 15730269 131085 nas_port_type Virtual 131085 remote_ip 5.5.5.254 131086 username barzegar 131086 kill_reason Another user logged on this global unique id 131086 mac 131086 bytes_out 0 67854 username arezoo 67854 kill_reason Maximum check online fails reached 67854 mac 5.237.68.127:49827: Unknown host 67854 bytes_out 0 67854 bytes_in 0 67854 station_ip 5.237.68.127:49827 67854 port 1017 67854 unique_id port 67855 username vahid 67855 kill_reason Maximum check online fails reached 67855 mac 5.209.247.230:20491: Unknown host 67855 bytes_out 0 67855 bytes_in 0 67855 station_ip 5.209.247.230:20491 67855 port 1017 67855 unique_id port 131086 bytes_in 0 131086 station_ip 5.119.220.77 131086 port 170 131086 unique_id port 131086 remote_ip 10.8.1.174 131087 username sedighe 131087 mac 131087 bytes_out 0 131087 bytes_in 0 131087 station_ip 113.203.87.231 131087 port 264 131087 unique_id port 131087 remote_ip 10.8.0.146 131090 username farhad2 131090 mac 131090 bytes_out 929683 67865 username vahid 67865 kill_reason Maximum check online fails reached 67865 mac 5.209.113.139:20444: Unknown host 67865 bytes_out 0 67865 bytes_in 0 67865 station_ip 5.209.113.139:20444 67865 port 1017 67865 unique_id port 131090 bytes_in 5079054 131090 station_ip 5.120.114.202 131090 port 274 131090 unique_id port 131090 remote_ip 10.8.0.190 131094 username amir 131094 mac 131094 bytes_out 0 131094 bytes_in 0 131094 station_ip 46.225.213.191 131094 port 264 131094 unique_id port 131094 remote_ip 10.8.0.50 131098 username khademi 131098 mac 131098 bytes_out 55807 131098 bytes_in 75122 131098 station_ip 37.129.238.252 131098 port 241 131098 unique_id port 131098 remote_ip 10.8.0.10 131108 username hosseine 131108 mac 131108 bytes_out 643435 131108 bytes_in 973525 131108 station_ip 37.129.122.8 131108 port 262 131108 unique_id port 131108 remote_ip 10.8.0.238 131109 username amir 131109 mac 131109 bytes_out 0 131109 bytes_in 0 131109 station_ip 46.225.213.191 131109 port 264 131109 unique_id port 131109 remote_ip 10.8.0.50 131110 username saeed9658 131110 mac 131110 bytes_out 0 131110 bytes_in 0 131110 station_ip 5.119.37.114 131110 port 172 131110 unique_id port 131110 remote_ip 10.8.1.210 131111 username barzegar 131111 mac 131111 bytes_out 0 131111 bytes_in 0 131111 station_ip 5.119.220.77 131111 port 170 131111 unique_id port 131113 username barzegar 131113 mac 131113 bytes_out 0 131113 bytes_in 0 131113 station_ip 5.119.220.77 131113 port 167 131113 unique_id port 131113 remote_ip 10.8.1.174 131115 username moradi 131115 mac 131115 bytes_out 0 131103 port 168 131103 unique_id port 131103 remote_ip 10.8.1.194 131105 username amir 131105 mac 131105 bytes_out 22446 131105 bytes_in 74487 131105 station_ip 46.225.213.191 131105 port 264 131105 unique_id port 131105 remote_ip 10.8.0.50 131107 username alihosseini1 131107 mac 131107 bytes_out 0 131107 bytes_in 0 131107 station_ip 5.120.19.42 131107 port 167 131107 unique_id port 131107 remote_ip 10.8.1.106 131116 username amir 131116 mac 131116 bytes_out 0 131116 bytes_in 0 131116 station_ip 46.225.213.191 131116 port 249 131116 unique_id port 131116 remote_ip 10.8.0.50 131128 username farhad2 131128 mac 131128 bytes_out 0 131128 bytes_in 0 131128 station_ip 5.120.114.202 131128 port 258 131128 unique_id port 131129 username barzegar 131129 mac 131129 bytes_out 1960856 131129 bytes_in 1509371 131129 station_ip 5.119.220.77 131129 port 276 131129 unique_id port 131129 remote_ip 10.8.0.234 131133 username farhad2 131133 mac 131133 bytes_out 0 131133 bytes_in 0 131133 station_ip 5.120.114.202 131133 port 252 131133 unique_id port 131133 remote_ip 10.8.0.190 131140 username aminvpn 131140 mac 131140 bytes_out 2146423 131140 bytes_in 20443490 131140 station_ip 37.129.172.198 131140 port 237 131140 unique_id port 131140 remote_ip 10.8.0.14 131142 username mirzaei 131142 kill_reason Another user logged on this global unique id 131142 mac 131142 bytes_out 0 131142 bytes_in 0 131142 station_ip 5.119.47.186 67907 username vahid 67907 kill_reason Maximum check online fails reached 67907 mac 91.251.226.73:10977: Unknown host 67907 bytes_out 0 67907 bytes_in 0 67907 station_ip 91.251.226.73:10977 67907 port 1017 67907 unique_id port 131142 port 248 131142 unique_id port 131142 remote_ip 10.8.0.66 131150 username aminvpn 131150 mac 131150 bytes_out 0 131150 bytes_in 0 131150 station_ip 37.129.172.198 131150 port 276 131150 unique_id port 131150 remote_ip 10.8.0.14 131153 username aminvpn 131153 mac 131153 bytes_out 0 131153 bytes_in 0 131153 station_ip 37.129.172.198 131153 port 278 131153 unique_id port 131153 remote_ip 10.8.0.14 131161 username aminvpn 131161 mac 131161 bytes_out 0 131161 bytes_in 0 131161 station_ip 37.129.109.174 131161 port 258 131161 unique_id port 131161 remote_ip 10.8.0.14 131165 username aminvpn 131165 mac 131165 bytes_out 0 131165 bytes_in 0 131165 station_ip 37.129.109.174 131165 port 258 131165 unique_id port 131165 remote_ip 10.8.0.14 131168 username mosi 131168 kill_reason Another user logged on this global unique id 131168 mac 131168 bytes_out 0 131168 bytes_in 0 131168 station_ip 151.235.98.140 131168 port 274 131168 unique_id port 131169 username alihosseini1 131169 mac 131169 bytes_out 0 131169 bytes_in 0 131169 station_ip 5.119.188.4 131169 port 264 131169 unique_id port 131169 remote_ip 10.8.0.166 131173 username aminvpn 131173 mac 131173 bytes_out 0 131173 bytes_in 0 67920 username arezoo 67920 kill_reason Maximum check online fails reached 67920 mac 5.237.69.83:49207: Unknown host 67920 bytes_out 0 67920 bytes_in 0 67920 station_ip 5.237.69.83:49207 67920 port 1017 67920 unique_id port 131173 station_ip 37.129.172.198 131173 port 265 131173 unique_id port 131173 remote_ip 10.8.0.14 131176 username alihosseini1 131176 mac 131176 bytes_out 31960 131176 bytes_in 292854 131176 station_ip 5.119.188.4 131176 port 265 131176 unique_id port 131176 remote_ip 10.8.0.166 131177 username saeed9658 131177 mac 131177 bytes_out 73172 131177 bytes_in 125226 131177 station_ip 5.119.37.114 131112 kill_reason Another user logged on this global unique id 131112 mac 131112 bytes_out 0 131112 bytes_in 0 131112 station_ip 151.235.98.140 131112 port 274 131112 unique_id port 131112 remote_ip 10.8.0.138 131114 username amir 131114 mac 131114 bytes_out 0 131114 bytes_in 0 131114 station_ip 46.225.213.191 131114 port 264 131114 unique_id port 131114 remote_ip 10.8.0.50 131118 username mansur 131118 kill_reason Another user logged on this global unique id 131118 mac 131118 bytes_out 0 131118 bytes_in 0 131118 station_ip 5.120.129.120 131118 port 275 131118 unique_id port 131118 remote_ip 10.8.0.210 131120 username godarzi 131120 mac 131120 bytes_out 0 131120 bytes_in 0 131120 station_ip 5.202.15.63 131120 port 272 131120 unique_id port 131121 username forozande 131121 kill_reason Relative expiration date has reached 131121 mac 131121 bytes_out 0 131121 bytes_in 0 131121 station_ip 83.123.96.248 131121 port 272 131121 unique_id port 131123 username farhad2 131123 kill_reason Another user logged on this global unique id 131123 mac 131123 bytes_out 0 131123 bytes_in 0 131123 station_ip 5.120.114.202 131123 port 258 131123 unique_id port 131123 remote_ip 10.8.0.190 131126 username amir 131126 mac 131126 bytes_out 0 131126 bytes_in 0 131126 station_ip 46.225.213.191 131126 port 167 131126 unique_id port 131126 remote_ip 10.8.1.22 131130 username barzegar 131130 mac 131130 bytes_out 0 131130 bytes_in 0 131130 station_ip 5.119.220.77 131130 port 276 131130 unique_id port 131130 remote_ip 10.8.0.234 131132 username malekpoir 131132 mac 131132 bytes_out 0 131132 bytes_in 0 131132 station_ip 5.120.154.190 131132 port 265 131132 unique_id port 131132 remote_ip 10.8.0.58 131135 username farhad2 131135 mac 131135 bytes_out 0 131135 bytes_in 0 131135 station_ip 5.120.114.202 131135 port 252 131135 unique_id port 131135 remote_ip 10.8.0.190 131141 username rezasekonji 131141 kill_reason Relative expiration date has reached 131141 mac 131141 bytes_out 0 131141 bytes_in 0 131141 station_ip 83.123.72.144 131141 port 237 131141 unique_id port 131143 username saeed9658 131143 mac 131143 bytes_out 4177695 131143 bytes_in 8956607 131143 station_ip 5.119.37.114 131143 port 168 131143 unique_id port 131143 remote_ip 10.8.1.210 131145 username aminvpn 131145 mac 131145 bytes_out 0 131145 bytes_in 0 131145 station_ip 37.129.109.174 131145 port 276 131145 unique_id port 131145 remote_ip 10.8.0.14 131148 username mosi 131148 kill_reason Another user logged on this global unique id 131148 mac 131148 bytes_out 0 131148 bytes_in 0 131148 station_ip 151.235.98.140 131148 port 274 131148 unique_id port 131151 username mahdixz 131151 unique_id port 131151 terminate_cause Lost-Carrier 131151 bytes_out 233674 131151 bytes_in 827149 131151 station_ip 151.235.98.117 131151 port 15730281 131151 nas_port_type Virtual 131151 remote_ip 5.5.5.229 131154 username barzegar 131154 mac 131154 bytes_out 503340 131154 bytes_in 4706264 131154 station_ip 5.120.57.60 131154 port 167 131154 unique_id port 131154 remote_ip 10.8.1.174 131156 username mosi 131156 kill_reason Another user logged on this global unique id 131156 mac 131156 bytes_out 0 131156 bytes_in 0 131156 station_ip 151.235.98.140 131156 port 274 131156 unique_id port 131157 username godarzi 131157 mac 131157 bytes_out 0 131157 bytes_in 0 131157 station_ip 5.202.15.63 131157 port 276 131157 unique_id port 131157 remote_ip 10.8.0.174 131158 username aminvpn 131158 mac 131158 bytes_out 0 131158 bytes_in 0 131115 bytes_in 0 131115 station_ip 37.27.23.231 131115 port 249 131115 unique_id port 131117 username barzegar 131117 mac 131117 bytes_out 0 131117 bytes_in 0 131117 station_ip 5.119.220.77 131117 port 167 131117 unique_id port 131117 remote_ip 10.8.1.174 131119 username godarzi 131119 kill_reason Another user logged on this global unique id 131119 mac 131119 bytes_out 0 131119 bytes_in 0 131119 station_ip 5.202.15.63 131119 port 272 131119 unique_id port 131119 remote_ip 10.8.0.174 131122 username mahdixz 131122 unique_id port 131122 terminate_cause Lost-Carrier 131122 bytes_out 3512542 131122 bytes_in 33629140 131122 station_ip 151.235.98.117 131122 port 15730279 131122 nas_port_type Virtual 131122 remote_ip 5.5.5.253 131124 username tahmasebi 131124 kill_reason Another user logged on this global unique id 131124 mac 131124 bytes_out 0 131124 bytes_in 0 131124 station_ip 5.119.156.72 131124 port 271 131124 unique_id port 131124 remote_ip 10.8.0.42 131125 username amir 131125 mac 131125 bytes_out 1196934 131125 bytes_in 8118140 131125 station_ip 46.225.213.191 131125 port 249 131125 unique_id port 131125 remote_ip 10.8.0.50 131127 username mehdizare 131127 mac 131127 bytes_out 81233 131127 bytes_in 67237 131127 station_ip 5.120.78.164 131127 port 252 131127 unique_id port 131127 remote_ip 10.8.0.90 131131 username amir 131131 mac 131131 bytes_out 0 131131 bytes_in 0 131131 station_ip 46.225.213.191 131131 port 278 131131 unique_id port 131131 remote_ip 10.8.0.50 67906 username vahid 67906 kill_reason Another user logged on this global unique id 67906 mac 91.251.226.73:11037: Unknown host 67906 bytes_out 0 67906 bytes_in 0 67906 station_ip 91.251.226.73:11037 67906 port 1017 67906 unique_id port 131134 username godarzi 131134 mac 131134 bytes_out 0 131134 bytes_in 0 131134 station_ip 5.202.15.63 131134 port 277 131134 unique_id port 131134 remote_ip 10.8.0.174 131136 username vanila 131136 mac 131136 bytes_out 0 131136 bytes_in 0 131136 station_ip 37.129.179.255 131136 port 265 131136 unique_id port 131136 remote_ip 10.8.0.178 131137 username khademi 131137 kill_reason Another user logged on this global unique id 131137 mac 131137 bytes_out 0 131137 bytes_in 0 131137 station_ip 37.129.238.252 131137 port 241 131137 unique_id port 131137 remote_ip 10.8.0.10 131138 username amirabbas 131138 unique_id port 131138 terminate_cause User-Request 131138 bytes_out 998679 131138 bytes_in 20421556 131138 station_ip 37.27.30.23 131138 port 15730280 131138 nas_port_type Virtual 131138 remote_ip 5.5.5.255 131139 username mosi 131139 kill_reason Another user logged on this global unique id 131139 mac 131139 bytes_out 0 131139 bytes_in 0 131139 station_ip 151.235.98.140 131139 port 274 131139 unique_id port 131144 username houshang 131144 mac 131144 bytes_out 0 131144 bytes_in 0 131144 station_ip 5.119.153.31 131144 port 258 131144 unique_id port 131144 remote_ip 10.8.0.22 131146 username aminvpn 131146 mac 131146 bytes_out 0 131146 bytes_in 0 131146 station_ip 37.129.172.198 131146 port 277 131146 unique_id port 131146 remote_ip 10.8.0.14 131147 username kordestani 131147 mac 131147 bytes_out 69118 131147 bytes_in 68725 131147 station_ip 151.235.96.83 131147 port 169 131147 unique_id port 131147 remote_ip 10.8.1.98 131149 username aminvpn 131149 mac 131149 bytes_out 0 131149 bytes_in 0 131149 station_ip 37.129.109.174 131149 port 258 131149 unique_id port 131149 remote_ip 10.8.0.14 131152 username aminvpn 131152 mac 131152 bytes_out 0 131152 bytes_in 0 131152 station_ip 37.129.109.174 131152 port 258 131152 unique_id port 131152 remote_ip 10.8.0.14 131155 username mahdixz 131155 unique_id port 131155 terminate_cause Lost-Carrier 131155 bytes_out 486535 131155 bytes_in 3662303 131155 station_ip 151.235.98.117 131155 port 15730282 131155 nas_port_type Virtual 131155 remote_ip 5.5.5.234 131159 username aminvpn 131159 mac 131159 bytes_out 0 131159 bytes_in 0 131159 station_ip 37.129.172.198 131159 port 276 131159 unique_id port 131159 remote_ip 10.8.0.14 131162 username alihosseini1 131162 mac 131162 bytes_out 0 131162 bytes_in 0 131162 station_ip 5.120.64.144 131162 port 249 131162 unique_id port 131162 remote_ip 10.8.0.166 131164 username alihosseini1 131164 mac 131164 bytes_out 0 131164 bytes_in 0 131164 station_ip 5.120.64.144 131164 port 249 131164 unique_id port 131164 remote_ip 10.8.0.166 131166 username aminvpn 131166 mac 131166 bytes_out 0 131166 bytes_in 0 131166 station_ip 37.129.172.198 131166 port 249 131166 unique_id port 131166 remote_ip 10.8.0.14 131171 username malekpoir 131171 mac 131171 bytes_out 0 131171 bytes_in 0 131171 station_ip 5.120.154.190 131171 port 265 131171 unique_id port 131171 remote_ip 10.8.0.58 131175 username godarzi 131175 mac 131175 bytes_out 0 131175 bytes_in 0 131175 station_ip 5.202.15.63 131175 port 264 131175 unique_id port 131175 remote_ip 10.8.0.174 131179 username mehdizare 131179 mac 131179 bytes_out 0 131179 bytes_in 0 131179 station_ip 5.120.78.164 131179 port 272 131179 unique_id port 131179 remote_ip 10.8.0.90 131180 username aminvpn 131180 mac 131180 bytes_out 0 131180 bytes_in 0 131180 station_ip 37.129.109.174 131180 port 276 131180 unique_id port 131180 remote_ip 10.8.0.14 131184 username mosi 131184 kill_reason Another user logged on this global unique id 131184 mac 131184 bytes_out 0 131184 bytes_in 0 131184 station_ip 151.235.98.140 131184 port 274 131184 unique_id port 131188 username barzegar 131188 mac 131188 bytes_out 0 131188 bytes_in 0 131188 station_ip 5.120.57.60 131188 port 258 131188 unique_id port 131188 remote_ip 10.8.0.234 131193 username farhad2 131193 mac 131193 bytes_out 0 131193 bytes_in 0 131193 station_ip 5.120.114.202 131193 port 252 131193 unique_id port 131193 remote_ip 10.8.0.190 131196 username sabaghnezhad 131196 mac 131196 bytes_out 0 131196 bytes_in 0 131196 station_ip 113.203.18.137 131196 port 259 131196 unique_id port 131196 remote_ip 10.8.0.186 131200 username mahdiyehalizadeh 131200 mac 131200 bytes_out 129054 131200 bytes_in 1604889 131200 station_ip 83.122.135.130 131200 port 259 131200 unique_id port 131200 remote_ip 10.8.0.82 131205 username mansur 131205 mac 131205 bytes_out 0 131205 bytes_in 0 131205 station_ip 5.120.129.120 131205 port 275 131205 unique_id port 131206 username barzegar 131206 mac 131206 bytes_out 0 131206 bytes_in 0 131206 station_ip 5.120.57.60 131206 port 237 131206 unique_id port 131206 remote_ip 10.8.0.234 131210 username farhad2 131210 mac 131210 bytes_out 0 131210 bytes_in 0 131210 station_ip 5.120.114.202 131210 port 252 131210 unique_id port 131211 username barzegar 131211 mac 131211 bytes_out 0 131211 bytes_in 0 131211 station_ip 5.120.57.60 131211 port 237 131211 unique_id port 131211 remote_ip 10.8.0.234 131213 username mosi 131213 kill_reason Another user logged on this global unique id 131213 mac 131213 bytes_out 0 131213 bytes_in 0 131213 station_ip 151.235.98.140 131213 port 274 131213 unique_id port 131158 station_ip 37.129.109.174 131158 port 258 131158 unique_id port 131158 remote_ip 10.8.0.14 131160 username moradi 131160 mac 131160 bytes_out 0 131160 bytes_in 0 131160 station_ip 37.27.23.231 131160 port 264 131160 unique_id port 131160 remote_ip 10.8.0.250 131163 username aminvpn 131163 mac 131163 bytes_out 0 131163 bytes_in 0 131163 station_ip 37.129.172.198 131163 port 264 131163 unique_id port 131163 remote_ip 10.8.0.14 131167 username amir 131167 mac 131167 bytes_out 0 131167 bytes_in 0 131167 station_ip 46.225.213.191 131167 port 237 131167 unique_id port 131167 remote_ip 10.8.0.50 131170 username barzegar 131170 mac 131170 bytes_out 0 131170 bytes_in 0 131170 station_ip 5.120.57.60 131170 port 258 131170 unique_id port 131170 remote_ip 10.8.0.234 131172 username aminvpn 131172 mac 131172 bytes_out 0 131172 bytes_in 0 131172 station_ip 37.129.109.174 131172 port 276 131172 unique_id port 131172 remote_ip 10.8.0.14 131174 username alihosseini1 131174 mac 131174 bytes_out 0 131174 bytes_in 0 131174 station_ip 5.119.188.4 131174 port 249 131174 unique_id port 131174 remote_ip 10.8.0.166 131182 username aminvpn 131182 mac 131182 bytes_out 0 131182 bytes_in 0 131182 station_ip 37.129.172.198 131182 port 272 131182 unique_id port 131182 remote_ip 10.8.0.14 131185 username aminvpn 131185 mac 131185 bytes_out 166719 131185 bytes_in 621641 131185 station_ip 37.129.109.174 131185 port 276 131185 unique_id port 131185 remote_ip 10.8.0.14 131186 username aminvpn 131186 mac 131186 bytes_out 0 131186 bytes_in 0 131186 station_ip 37.129.172.198 131186 port 258 131186 unique_id port 131186 remote_ip 10.8.0.14 131190 username mahdixz 131190 unique_id port 131190 terminate_cause Lost-Carrier 131190 bytes_out 97704 131190 bytes_in 378134 131190 station_ip 151.235.98.117 131190 port 15730283 131190 nas_port_type Virtual 131190 remote_ip 5.5.5.237 131191 username aminvpn 131191 mac 131191 bytes_out 0 131191 bytes_in 0 131191 station_ip 37.129.172.198 131191 port 258 131191 unique_id port 131191 remote_ip 10.8.0.14 131194 username alihosseini1 131194 kill_reason Another user logged on this global unique id 131194 mac 131194 bytes_out 0 131194 bytes_in 0 131194 station_ip 5.120.176.144 131194 port 249 131194 unique_id port 131194 remote_ip 10.8.0.166 131198 username vanila 131198 mac 131198 bytes_out 32405 131198 bytes_in 26869 131198 station_ip 37.129.179.255 131198 port 237 131198 unique_id port 131198 remote_ip 10.8.0.178 131203 username barzegar 131203 mac 131203 bytes_out 0 131203 bytes_in 0 131203 station_ip 5.120.57.60 131203 port 170 131203 unique_id port 131203 remote_ip 10.8.1.174 131209 username farhad2 131209 kill_reason Another user logged on this global unique id 131209 mac 131209 bytes_out 0 131209 bytes_in 0 131209 station_ip 5.120.114.202 131209 port 252 131209 unique_id port 131209 remote_ip 10.8.0.190 131214 username moradi 131214 kill_reason Another user logged on this global unique id 131214 mac 131214 bytes_out 0 131214 bytes_in 0 131214 station_ip 37.129.110.247 131214 port 169 131214 unique_id port 131219 username moradi 131219 kill_reason Another user logged on this global unique id 131219 mac 131219 bytes_out 0 131219 bytes_in 0 131219 station_ip 37.129.110.247 131219 port 169 131219 unique_id port 131220 username farhad2 131220 kill_reason Another user logged on this global unique id 131220 mac 131220 bytes_out 0 131220 bytes_in 0 131220 station_ip 5.120.43.148 131220 port 237 131220 unique_id port 131177 port 169 131177 unique_id port 131177 remote_ip 10.8.1.210 131178 username kordestani 131178 mac 131178 bytes_out 1183930 131178 bytes_in 6705310 131178 station_ip 151.235.96.83 131178 port 168 131178 unique_id port 131178 remote_ip 10.8.1.98 131181 username kordestani 131181 mac 131181 bytes_out 10152 131181 bytes_in 113292 131181 station_ip 151.235.96.83 131181 port 168 131181 unique_id port 131181 remote_ip 10.8.1.98 131183 username barzegar 131183 mac 131183 bytes_out 0 131183 bytes_in 0 131183 station_ip 5.120.57.60 131183 port 258 131183 unique_id port 131183 remote_ip 10.8.0.234 131187 username amir 131187 mac 131187 bytes_out 0 131187 bytes_in 0 131187 station_ip 46.225.213.191 131187 port 264 131187 unique_id port 131187 remote_ip 10.8.0.50 131189 username aminvpn 131189 mac 131189 bytes_out 0 131189 bytes_in 0 131189 station_ip 37.129.109.174 131189 port 272 131189 unique_id port 131189 remote_ip 10.8.0.14 131192 username mahdiyehalizadeh 131192 mac 131192 bytes_out 0 131192 bytes_in 0 131192 station_ip 83.122.135.130 131192 port 277 131192 unique_id port 131192 remote_ip 10.8.0.82 131195 username vanila 131195 mac 131195 bytes_out 0 131195 bytes_in 0 131195 station_ip 37.129.179.255 131195 port 237 131195 unique_id port 131195 remote_ip 10.8.0.178 131197 username barzegar 131197 mac 131197 bytes_out 0 131197 bytes_in 0 131197 station_ip 5.120.57.60 131197 port 169 131197 unique_id port 131197 remote_ip 10.8.1.174 131199 username tahmasebi 131199 mac 131199 bytes_out 0 131199 bytes_in 0 131199 station_ip 5.119.156.72 131199 port 271 131199 unique_id port 131201 username alihosseini1 131201 mac 131201 bytes_out 0 131201 bytes_in 0 131201 station_ip 5.120.176.144 131201 port 249 131201 unique_id port 131202 username ayobi 131202 mac 131202 bytes_out 2011993 131202 bytes_in 22831202 131202 station_ip 37.27.4.131 131202 port 273 131202 unique_id port 131202 remote_ip 10.8.0.126 131204 username aminvpn 131204 mac 131204 bytes_out 630869 131204 bytes_in 1628545 131204 station_ip 37.129.172.198 131204 port 258 131204 unique_id port 131204 remote_ip 10.8.0.14 131207 username barzegar 131207 kill_reason Maximum check online fails reached 131207 mac 131207 bytes_out 0 131207 bytes_in 0 131207 station_ip 5.120.57.60 131207 port 170 131207 unique_id port 131208 username moradi 131208 kill_reason Another user logged on this global unique id 131208 mac 131208 bytes_out 0 131208 bytes_in 0 131208 station_ip 37.129.110.247 131208 port 169 131208 unique_id port 131208 remote_ip 10.8.1.202 131212 username mahdixz 131212 unique_id port 131212 terminate_cause Lost-Carrier 131212 bytes_out 8514014 131212 bytes_in 138990993 131212 station_ip 151.235.98.117 131212 port 15730284 131212 nas_port_type Virtual 131212 remote_ip 5.5.5.242 131215 username kordestani 131215 mac 131215 bytes_out 1639139 131215 bytes_in 12708984 131215 station_ip 151.235.96.83 131215 port 168 131215 unique_id port 131215 remote_ip 10.8.1.98 131216 username barzegar 131216 mac 131216 bytes_out 0 131216 bytes_in 0 131216 station_ip 5.120.57.60 131216 port 252 131216 unique_id port 131216 remote_ip 10.8.0.234 131217 username godarzi 131217 mac 131217 bytes_out 0 131217 bytes_in 0 131217 station_ip 5.202.15.63 131217 port 249 131217 unique_id port 131217 remote_ip 10.8.0.174 131224 username zare 131224 kill_reason Another user logged on this global unique id 131224 mac 131224 bytes_out 0 131224 bytes_in 0 131218 username kordestani 131218 mac 131218 bytes_out 268544 131218 bytes_in 3814774 131218 station_ip 151.235.96.83 131218 port 258 131218 unique_id port 131218 remote_ip 10.8.0.134 131222 username moradi 131222 kill_reason Another user logged on this global unique id 131222 mac 131222 bytes_out 0 131222 bytes_in 0 131222 station_ip 37.129.110.247 131222 port 169 131222 unique_id port 131228 username moradi 131228 kill_reason Another user logged on this global unique id 131228 mac 131228 bytes_out 0 131228 bytes_in 0 131228 station_ip 37.129.110.247 131228 port 169 131228 unique_id port 131231 username mosi 131231 kill_reason Another user logged on this global unique id 131231 mac 131231 bytes_out 0 131231 bytes_in 0 131231 station_ip 151.235.98.140 131231 port 274 131231 unique_id port 131234 username moradi 131234 kill_reason Another user logged on this global unique id 131234 mac 131234 bytes_out 0 131234 bytes_in 0 131234 station_ip 37.129.110.247 131234 port 169 131234 unique_id port 131235 username mirzaei 131235 kill_reason Another user logged on this global unique id 131235 mac 131235 bytes_out 0 131235 bytes_in 0 131235 station_ip 5.119.47.186 131235 port 248 131235 unique_id port 131237 username zare 131237 kill_reason Another user logged on this global unique id 131237 mac 131237 bytes_out 0 131237 bytes_in 0 131237 station_ip 37.27.55.76 131237 port 167 131237 unique_id port 131239 username barzegar 131239 mac 131239 bytes_out 0 131239 bytes_in 0 131239 station_ip 5.120.57.60 131239 port 168 131239 unique_id port 131239 remote_ip 10.8.1.174 131241 username moradi 131241 kill_reason Another user logged on this global unique id 131241 mac 131241 bytes_out 0 131241 bytes_in 0 131241 station_ip 37.129.110.247 131241 port 169 131241 unique_id port 131262 username mosi 131262 kill_reason Another user logged on this global unique id 131262 mac 131262 bytes_out 0 131262 bytes_in 0 131262 station_ip 151.235.98.140 131262 port 274 131262 unique_id port 131263 username barzegar 131263 mac 131263 bytes_out 0 131263 bytes_in 0 131263 station_ip 5.120.57.60 131263 port 167 131263 unique_id port 131263 remote_ip 10.8.1.174 131267 username hamidsalari1 131267 kill_reason Another user logged on this global unique id 131267 mac 131267 bytes_out 0 131267 bytes_in 0 131267 station_ip 37.129.143.83 131267 port 249 131267 unique_id port 131272 username mostafa_es78 131272 unique_id port 131272 terminate_cause User-Request 131272 bytes_out 587275 131272 bytes_in 15715296 131272 station_ip 5.125.1.87 131272 port 15730290 131272 nas_port_type Virtual 131272 remote_ip 5.5.5.227 131273 username jafari 131273 kill_reason Another user logged on this global unique id 131273 mac 131273 bytes_out 0 131273 bytes_in 0 131273 station_ip 89.32.109.153 131273 port 237 131273 unique_id port 131273 remote_ip 10.8.0.242 131276 username jafari 131276 kill_reason Another user logged on this global unique id 131276 mac 131276 bytes_out 0 131276 bytes_in 0 131276 station_ip 89.32.109.153 131276 port 237 131276 unique_id port 131284 username mehdizare 131284 mac 131284 bytes_out 663383 131284 bytes_in 1414631 131284 station_ip 5.120.78.164 131284 port 265 131284 unique_id port 131284 remote_ip 10.8.0.90 131285 username barzegar 131285 mac 131285 bytes_out 0 131285 bytes_in 0 131285 station_ip 5.120.57.60 131285 port 167 131285 unique_id port 131285 remote_ip 10.8.1.174 131295 bytes_out 0 131295 bytes_in 0 131295 station_ip 5.120.57.60 131295 port 167 131295 unique_id port 131295 remote_ip 10.8.1.174 131298 username barzegar 131298 mac 131298 bytes_out 0 131220 remote_ip 10.8.0.190 131221 username barzegar 131221 mac 131221 bytes_out 0 131221 bytes_in 0 131221 station_ip 5.120.57.60 131221 port 168 131221 unique_id port 131221 remote_ip 10.8.1.174 131223 username shahrooz 131223 unique_id port 131223 terminate_cause Lost-Carrier 131223 bytes_out 252272 131223 bytes_in 2594572 131223 station_ip 83.122.53.6 131223 port 15730287 131223 nas_port_type Virtual 131223 remote_ip 5.5.5.252 131232 username farhad2 131232 mac 131232 bytes_out 0 131232 bytes_in 0 131232 station_ip 5.120.43.148 131232 port 237 131232 unique_id port 131240 username zare 131240 mac 131240 bytes_out 0 131240 bytes_in 0 131240 station_ip 37.27.55.76 131240 port 167 131240 unique_id port 131242 username mosi 131242 kill_reason Another user logged on this global unique id 131242 mac 131242 bytes_out 0 131242 bytes_in 0 131242 station_ip 151.235.98.140 131242 port 274 131242 unique_id port 131243 username moradi 131243 mac 131243 bytes_out 0 131243 bytes_in 0 131243 station_ip 37.129.110.247 131243 port 169 131243 unique_id port 131244 username barzegar 131244 mac 131244 bytes_out 0 131244 bytes_in 0 131244 station_ip 5.120.57.60 131244 port 167 131244 unique_id port 131244 remote_ip 10.8.1.174 131252 username barzegar 131252 mac 131252 bytes_out 0 131252 bytes_in 0 131252 station_ip 5.120.57.60 131252 port 167 131252 unique_id port 131252 remote_ip 10.8.1.174 131255 username mosi 131255 kill_reason Another user logged on this global unique id 131255 mac 131255 bytes_out 0 131255 bytes_in 0 131255 station_ip 151.235.98.140 131255 port 274 131255 unique_id port 131256 username hamidsalari1 131256 kill_reason Another user logged on this global unique id 131256 mac 131256 bytes_out 0 131256 bytes_in 0 131256 station_ip 37.129.143.83 131256 port 249 131256 unique_id port 131257 username mosi 131257 kill_reason Another user logged on this global unique id 131257 mac 131257 bytes_out 0 131257 bytes_in 0 131257 station_ip 151.235.98.140 131257 port 274 131257 unique_id port 131259 username barzegar 131259 mac 131259 bytes_out 0 131259 bytes_in 0 131259 station_ip 5.120.57.60 131259 port 237 131259 unique_id port 131259 remote_ip 10.8.0.234 131265 username hamidsalari1 131265 kill_reason Another user logged on this global unique id 131265 mac 131265 bytes_out 0 131265 bytes_in 0 131265 station_ip 37.129.143.83 131265 port 249 131265 unique_id port 131266 username mosi 131266 mac 131266 bytes_out 0 131266 bytes_in 0 131266 station_ip 151.235.98.140 131266 port 274 131266 unique_id port 131268 username barzegar 131268 mac 131268 bytes_out 0 131268 bytes_in 0 131268 station_ip 5.120.57.60 131268 port 167 131268 unique_id port 131268 remote_ip 10.8.1.174 131274 username barzegar 131274 mac 131274 bytes_out 0 131274 bytes_in 0 131274 station_ip 5.120.57.60 131274 port 167 131274 unique_id port 131274 remote_ip 10.8.1.174 131275 username mostafa_es78 131275 unique_id port 131275 terminate_cause Lost-Carrier 131275 bytes_out 839540 131275 bytes_in 26187432 131275 station_ip 5.125.1.87 131275 port 15730291 131275 nas_port_type Virtual 131275 remote_ip 5.5.5.240 131277 username barzegar 131277 mac 131277 bytes_out 0 131277 bytes_in 0 131277 station_ip 5.120.57.60 131277 port 167 131277 unique_id port 131277 remote_ip 10.8.1.174 131281 username barzegar 131281 mac 131281 bytes_out 0 131281 bytes_in 0 131281 station_ip 5.120.57.60 131281 port 237 131281 unique_id port 131281 remote_ip 10.8.0.234 131224 station_ip 37.27.55.76 131224 port 167 131224 unique_id port 131224 remote_ip 10.8.1.58 131225 username mirzaei 131225 kill_reason Another user logged on this global unique id 131225 mac 131225 bytes_out 0 131225 bytes_in 0 131225 station_ip 5.119.47.186 131225 port 248 131225 unique_id port 131226 username farhad2 131226 kill_reason Another user logged on this global unique id 131226 mac 131226 bytes_out 0 131226 bytes_in 0 131226 station_ip 5.120.43.148 131226 port 237 131226 unique_id port 131227 username barzegar 131227 mac 131227 bytes_out 0 131227 bytes_in 0 131227 station_ip 5.120.57.60 131227 port 252 131227 unique_id port 131227 remote_ip 10.8.0.234 131229 username farhad2 131229 kill_reason Another user logged on this global unique id 131229 mac 131229 bytes_out 0 131229 bytes_in 0 131229 station_ip 5.120.43.148 131229 port 237 131229 unique_id port 131230 username zare 131230 kill_reason Another user logged on this global unique id 131230 mac 131230 bytes_out 0 131230 bytes_in 0 131230 station_ip 37.27.55.76 131230 port 167 131230 unique_id port 131233 username barzegar 131233 mac 131233 bytes_out 0 131233 bytes_in 0 131233 station_ip 5.120.57.60 131233 port 168 131233 unique_id port 131233 remote_ip 10.8.1.174 131236 username mahdiyehalizadeh 131236 mac 131236 bytes_out 2138350 131236 bytes_in 32199411 131236 station_ip 83.122.135.130 131236 port 249 131236 unique_id port 131236 remote_ip 10.8.0.82 131238 username moradi 131238 kill_reason Another user logged on this global unique id 131238 mac 131238 bytes_out 0 131238 bytes_in 0 131238 station_ip 37.129.110.247 131238 port 169 131238 unique_id port 131245 username farhad2 131245 kill_reason Another user logged on this global unique id 131245 mac 131245 bytes_out 0 131245 bytes_in 0 131245 station_ip 5.119.68.205 131245 port 237 131245 unique_id port 131245 remote_ip 10.8.0.190 131246 username shahrooz 131246 kill_reason Maximum check online fails reached 131246 unique_id port 131246 bytes_out 144307 131246 bytes_in 93878 131246 station_ip 113.203.123.146 131246 port 15730288 131246 nas_port_type Virtual 131246 remote_ip 5.5.5.252 131247 username farhad2 131247 mac 131247 bytes_out 0 131247 bytes_in 0 131247 station_ip 5.119.68.205 131247 port 237 131247 unique_id port 131248 username barzegar 131248 mac 131248 bytes_out 0 131248 bytes_in 0 131248 station_ip 5.120.57.60 131248 port 167 131248 unique_id port 131248 remote_ip 10.8.1.174 131249 username bcboard 131249 unique_id port 131249 terminate_cause Lost-Carrier 131249 bytes_out 13357360 131249 bytes_in 248277456 131249 station_ip 83.123.195.212 131249 port 15730286 131249 nas_port_type Virtual 131249 remote_ip 5.5.5.254 131250 username hamidsalari1 131250 kill_reason Another user logged on this global unique id 131250 mac 131250 bytes_out 0 131250 bytes_in 0 131250 station_ip 37.129.143.83 131250 port 249 131250 unique_id port 131250 remote_ip 10.8.0.226 131251 username mosi 131251 kill_reason Another user logged on this global unique id 131251 mac 131251 bytes_out 0 131251 bytes_in 0 131251 station_ip 151.235.98.140 131251 port 274 131251 unique_id port 131253 username hamidsalari1 131253 kill_reason Another user logged on this global unique id 131253 mac 131253 bytes_out 0 131253 bytes_in 0 131253 station_ip 37.129.143.83 131253 port 249 131253 unique_id port 131254 username barzegar 131254 mac 131254 bytes_out 0 131254 bytes_in 0 131254 station_ip 5.120.57.60 131254 port 237 131254 unique_id port 131254 remote_ip 10.8.0.234 131258 username mosi 131258 kill_reason Another user logged on this global unique id 131258 mac 131258 bytes_out 0 131258 bytes_in 0 131258 station_ip 151.235.98.140 131258 port 274 131258 unique_id port 131260 username hamidsalari1 131260 kill_reason Another user logged on this global unique id 131260 mac 131260 bytes_out 0 131260 bytes_in 0 131260 station_ip 37.129.143.83 131260 port 249 131260 unique_id port 131261 username mansour 131261 mac 131261 bytes_out 40732521 131261 bytes_in 634744778 131261 station_ip 5.202.64.80 131261 port 256 131261 unique_id port 131261 remote_ip 10.8.0.30 131264 username rajaei 131264 mac 131264 bytes_out 0 131264 bytes_in 0 131264 station_ip 94.24.19.40 131264 port 237 131264 unique_id port 131264 remote_ip 10.8.0.34 131269 username mostafa_es78 131269 unique_id port 131269 terminate_cause User-Request 131269 bytes_out 1127506 131269 bytes_in 5535161 131269 station_ip 5.125.1.87 131269 port 15730289 131269 nas_port_type Virtual 131269 remote_ip 5.5.5.226 131270 username barzegar 131270 mac 131270 bytes_out 0 131270 bytes_in 0 131270 station_ip 5.120.57.60 131270 port 237 131270 unique_id port 131270 remote_ip 10.8.0.234 131271 username hamidsalari1 131271 mac 131271 bytes_out 0 131271 bytes_in 0 131271 station_ip 37.129.143.83 131271 port 249 131271 unique_id port 131278 username barzegar 131278 mac 131278 bytes_out 0 131278 bytes_in 0 131278 station_ip 5.120.57.60 131278 port 167 131278 unique_id port 131278 remote_ip 10.8.1.174 131279 username jafari 131279 kill_reason Another user logged on this global unique id 131279 mac 131279 bytes_out 0 131279 bytes_in 0 131279 station_ip 89.32.109.153 131279 port 237 131279 unique_id port 131280 username jafari 131280 mac 131280 bytes_out 0 131280 bytes_in 0 131280 station_ip 89.32.109.153 131280 port 237 131280 unique_id port 131288 username barzegar 131288 mac 131288 bytes_out 0 131288 bytes_in 0 131288 station_ip 5.120.57.60 131288 port 249 131288 unique_id port 131288 remote_ip 10.8.0.234 131290 username barzegar 131290 mac 131290 bytes_out 0 131290 bytes_in 0 131290 station_ip 5.120.57.60 131290 port 168 131290 unique_id port 131290 remote_ip 10.8.1.174 131291 username sabaghnezhad 131291 mac 131291 bytes_out 388255 131291 bytes_in 756945 131291 station_ip 83.123.62.110 131291 port 167 131291 unique_id port 131291 remote_ip 10.8.1.130 131293 username barzegar 131293 mac 131293 bytes_out 0 131293 bytes_in 0 131293 station_ip 5.120.57.60 131293 port 167 131293 unique_id port 131293 remote_ip 10.8.1.174 131294 username mehdizare 131294 kill_reason Maximum check online fails reached 131294 mac 131294 bytes_out 0 131294 bytes_in 0 131294 station_ip 5.120.78.164 131294 port 249 131294 unique_id port 131296 username barzegar 131296 mac 131296 bytes_out 0 131296 bytes_in 0 131296 station_ip 5.120.57.60 131296 port 167 131296 unique_id port 131296 remote_ip 10.8.1.174 131297 username mehdizare 131297 mac 131297 bytes_out 20013 131297 bytes_in 23864 131297 station_ip 5.120.78.164 131297 port 237 131297 unique_id port 131297 remote_ip 10.8.0.90 131303 username barzegar 131303 mac 131303 bytes_out 0 131303 bytes_in 0 131303 station_ip 5.120.57.60 131303 port 168 131303 unique_id port 131303 remote_ip 10.8.1.174 131304 username barzegar 131304 mac 131304 bytes_out 0 131304 bytes_in 0 131304 station_ip 5.120.57.60 131304 port 237 131304 unique_id port 131304 remote_ip 10.8.0.234 131305 username barzegar 131305 mac 131305 bytes_out 0 131305 bytes_in 0 131305 station_ip 5.120.57.60 131305 port 168 131282 username barzegar 131282 mac 131282 bytes_out 0 131282 bytes_in 0 131282 station_ip 5.120.57.60 131282 port 237 131282 unique_id port 131282 remote_ip 10.8.0.234 131283 username mirzaei 131283 mac 131283 bytes_out 0 131283 bytes_in 0 131283 station_ip 5.119.47.186 131283 port 248 131283 unique_id port 131286 username barzegar 131286 mac 131286 bytes_out 0 131286 bytes_in 0 131286 station_ip 5.120.57.60 131286 port 168 131286 unique_id port 131286 remote_ip 10.8.1.174 131287 username mostafa_es78 131287 unique_id port 131287 terminate_cause User-Request 131287 bytes_out 241967 131287 bytes_in 3062313 131287 station_ip 5.125.7.135 131287 port 15730292 131287 nas_port_type Virtual 131287 remote_ip 5.5.5.216 131289 username mehdizare 131289 mac 131289 bytes_out 0 131289 bytes_in 0 131289 station_ip 5.120.78.164 131289 port 237 131289 unique_id port 131289 remote_ip 10.8.0.90 131292 username mehdizare 131292 kill_reason Another user logged on this global unique id 131292 mac 131292 bytes_out 0 131292 bytes_in 0 131292 station_ip 5.120.78.164 131292 port 249 131292 unique_id port 131292 remote_ip 10.8.0.90 131298 bytes_in 0 131298 station_ip 5.120.57.60 131298 port 168 131298 unique_id port 131298 remote_ip 10.8.1.174 131301 username barzegar 131301 mac 131301 bytes_out 0 131301 bytes_in 0 131301 station_ip 5.120.57.60 131301 port 237 131301 unique_id port 131301 remote_ip 10.8.0.234 131302 username barzegar 131302 mac 131302 bytes_out 0 131302 bytes_in 0 131302 station_ip 5.120.57.60 131302 port 168 131302 unique_id port 131302 remote_ip 10.8.1.174 131306 username houshang 131306 mac 131306 bytes_out 0 131306 bytes_in 0 131306 station_ip 5.119.153.31 131306 port 237 131306 unique_id port 131306 remote_ip 10.8.0.22 131312 username barzegar 131312 mac 131312 bytes_out 0 131312 bytes_in 0 131312 station_ip 5.120.57.60 131312 port 169 131312 unique_id port 131312 remote_ip 10.8.1.174 131318 username mohammadjavad 131318 mac 131318 bytes_out 0 131318 bytes_in 0 131318 station_ip 83.123.161.45 131318 port 256 131318 unique_id port 131319 username hosseine 131319 mac 131319 bytes_out 0 131319 bytes_in 0 131319 station_ip 37.129.122.8 131319 port 262 131319 unique_id port 131320 username moradi 131320 kill_reason Another user logged on this global unique id 131320 mac 131320 bytes_out 0 131320 bytes_in 0 131320 station_ip 37.129.43.7 131320 port 168 131320 unique_id port 131328 username barzegar 131328 mac 131328 bytes_out 0 131328 bytes_in 0 131328 station_ip 5.120.57.60 131328 port 258 131328 unique_id port 131328 remote_ip 10.8.0.234 131332 username vanila 131332 mac 131332 bytes_out 0 131332 bytes_in 0 131332 station_ip 37.129.248.15 131332 port 252 131332 unique_id port 131332 remote_ip 10.8.0.178 131333 username mehdizare 131333 mac 131333 bytes_out 100886 131333 bytes_in 211304 131333 station_ip 5.120.78.164 131333 port 167 131333 unique_id port 131333 remote_ip 10.8.1.42 131341 username barzegar 131341 mac 131341 bytes_out 34642 131341 bytes_in 72483 131341 station_ip 5.120.57.60 131341 port 259 131341 unique_id port 131341 remote_ip 10.8.0.234 131345 username mehdizare 131345 mac 131345 bytes_out 0 131345 bytes_in 0 131345 station_ip 5.120.78.164 131345 port 167 131345 unique_id port 131345 remote_ip 10.8.1.42 131347 username barzegar 131347 mac 131347 bytes_out 0 131347 bytes_in 0 131347 station_ip 5.120.57.60 131347 port 168 131299 username barzegar 131299 mac 131299 bytes_out 0 131299 bytes_in 0 131299 station_ip 5.120.57.60 131299 port 237 131299 unique_id port 131299 remote_ip 10.8.0.234 131300 username barzegar 131300 mac 131300 bytes_out 0 131300 bytes_in 0 131300 station_ip 5.120.57.60 131300 port 168 131300 unique_id port 131300 remote_ip 10.8.1.174 131307 username barzegar 131307 mac 131307 bytes_out 0 131307 bytes_in 0 131307 station_ip 5.120.57.60 131307 port 168 131307 unique_id port 131307 remote_ip 10.8.1.174 131308 username barzegar 131308 mac 131308 bytes_out 0 131308 bytes_in 0 131308 station_ip 5.120.57.60 131308 port 256 131308 unique_id port 131308 remote_ip 10.8.0.234 131309 username barzegar 131309 mac 131309 bytes_out 0 131309 bytes_in 0 131309 station_ip 5.120.57.60 131309 port 256 131309 unique_id port 131309 remote_ip 10.8.0.234 131315 username barzegar 131315 mac 131315 bytes_out 0 131315 bytes_in 0 131315 station_ip 5.120.57.60 131315 port 169 131315 unique_id port 131315 remote_ip 10.8.1.174 131323 username barzegar 131323 mac 131323 bytes_out 0 131323 bytes_in 0 131323 station_ip 5.120.57.60 131323 port 169 131323 unique_id port 131323 remote_ip 10.8.1.174 131324 username jafari 131324 mac 131324 bytes_out 3756639 131324 bytes_in 49220958 131324 station_ip 5.200.111.138 131324 port 237 131324 unique_id port 131324 remote_ip 10.8.0.242 131326 username barzegar 131326 mac 131326 bytes_out 0 131326 bytes_in 0 131326 station_ip 5.120.57.60 131326 port 237 131326 unique_id port 131326 remote_ip 10.8.0.234 131327 username barzegar 131327 mac 131327 bytes_out 0 131327 bytes_in 0 131327 station_ip 5.120.57.60 131327 port 168 131327 unique_id port 131327 remote_ip 10.8.1.174 131329 username sedighe 131329 mac 131329 bytes_out 253284 131329 bytes_in 353949 131329 station_ip 37.129.35.32 131329 port 252 131329 unique_id port 131329 remote_ip 10.8.0.146 131331 username barzegar 131331 mac 131331 bytes_out 0 131331 bytes_in 0 131331 station_ip 5.120.57.60 131331 port 168 131331 unique_id port 131331 remote_ip 10.8.1.174 131334 username barzegar 131334 mac 131334 bytes_out 0 131334 bytes_in 0 131334 station_ip 5.120.57.60 131334 port 168 131334 unique_id port 131334 remote_ip 10.8.1.174 131335 username mohammadjavad 131335 mac 131335 bytes_out 0 131335 bytes_in 0 131335 station_ip 37.129.4.169 131335 port 259 131335 unique_id port 131335 remote_ip 10.8.0.142 131337 username barzegar 131337 mac 131337 bytes_out 0 131337 bytes_in 0 131337 station_ip 5.120.57.60 131337 port 259 131337 unique_id port 131337 remote_ip 10.8.0.234 131339 username hamidsalari1 131339 mac 131339 bytes_out 0 131339 bytes_in 0 131339 station_ip 37.129.143.83 131339 port 256 131339 unique_id port 131339 remote_ip 10.8.0.226 131340 username sedighe 131340 mac 131340 bytes_out 335283 131340 bytes_in 2036498 131340 station_ip 37.129.8.114 131340 port 258 131340 unique_id port 131340 remote_ip 10.8.0.146 131343 username mirzaei 131343 kill_reason Another user logged on this global unique id 131343 mac 131343 bytes_out 0 131343 bytes_in 0 131343 station_ip 5.119.47.186 131343 port 248 131343 unique_id port 131343 remote_ip 10.8.0.66 131346 username mahdiyehalizadeh 131346 mac 131346 bytes_out 0 131346 bytes_in 0 131346 station_ip 113.203.47.250 131346 port 258 131346 unique_id port 131346 remote_ip 10.8.0.82 131352 username khalili 131352 mac 68074 username arezoo 68074 kill_reason Maximum check online fails reached 68074 mac 5.237.69.83:49193: Unknown host 68074 bytes_out 0 68074 bytes_in 0 68074 station_ip 5.237.69.83:49193 68074 port 1017 68074 unique_id port 131305 unique_id port 131305 remote_ip 10.8.1.174 131310 username mohsenaskari 131310 mac 131310 bytes_out 0 131310 bytes_in 0 131310 station_ip 83.123.164.238 131310 port 237 131310 unique_id port 131310 remote_ip 10.8.0.246 131311 username hosseine 131311 kill_reason Another user logged on this global unique id 131311 mac 131311 bytes_out 0 131311 bytes_in 0 131311 station_ip 37.129.122.8 131311 port 262 131311 unique_id port 131311 remote_ip 10.8.0.238 131313 username moradi 131313 kill_reason Another user logged on this global unique id 131313 mac 131313 bytes_out 0 131313 bytes_in 0 131313 station_ip 37.129.43.7 131313 port 168 131313 unique_id port 131313 remote_ip 10.8.1.202 131314 username sedighe 131314 mac 131314 bytes_out 1332222 131314 bytes_in 2845300 131314 station_ip 37.129.164.243 131314 port 249 131314 unique_id port 131314 remote_ip 10.8.0.146 131316 username mohammadjavad 131316 kill_reason Another user logged on this global unique id 131316 mac 131316 bytes_out 0 131316 bytes_in 0 131316 station_ip 83.123.161.45 131316 port 256 131316 unique_id port 131316 remote_ip 10.8.0.142 131317 username sedighe 131317 mac 131317 bytes_out 0 131317 bytes_in 0 131317 station_ip 37.129.22.240 131317 port 258 131317 unique_id port 131317 remote_ip 10.8.0.146 131321 username hamidsalari1 131321 mac 131321 bytes_out 0 131321 bytes_in 0 131321 station_ip 37.129.143.83 131321 port 252 131321 unique_id port 131321 remote_ip 10.8.0.226 131322 username sedighe 131322 mac 131322 bytes_out 41790 131322 bytes_in 41695 131322 station_ip 83.122.103.235 131322 port 249 131322 unique_id port 131322 remote_ip 10.8.0.146 131325 username moradi 131325 mac 131325 bytes_out 0 131325 bytes_in 0 131325 station_ip 37.129.43.7 131325 port 168 131325 unique_id port 131330 username mehdizare 131330 mac 131330 bytes_out 0 131330 bytes_in 0 131330 station_ip 5.120.78.164 131330 port 167 131330 unique_id port 131330 remote_ip 10.8.1.42 131336 username malekpoir 131336 mac 131336 bytes_out 0 131336 bytes_in 0 131336 station_ip 5.120.154.190 131336 port 249 131336 unique_id port 131336 remote_ip 10.8.0.58 131338 username godarzi 131338 kill_reason Another user logged on this global unique id 131338 mac 131338 bytes_out 0 131338 bytes_in 0 131338 station_ip 5.202.6.3 131338 port 262 131338 unique_id port 131338 remote_ip 10.8.0.174 131342 username godarzi 131342 kill_reason Another user logged on this global unique id 131342 mac 131342 bytes_out 0 131342 bytes_in 0 131342 station_ip 5.202.6.3 131342 port 262 131342 unique_id port 131344 username godarzi 131344 mac 131344 bytes_out 0 131344 bytes_in 0 131344 station_ip 5.202.6.3 131344 port 262 131344 unique_id port 131348 username saeed9658 131348 mac 131348 bytes_out 86161 131348 bytes_in 482117 131348 station_ip 5.119.37.114 131348 port 169 131348 unique_id port 131348 remote_ip 10.8.1.210 131349 username saeed9658 131349 mac 131349 bytes_out 0 131349 bytes_in 0 131349 station_ip 5.119.37.114 131349 port 168 131349 unique_id port 131349 remote_ip 10.8.1.210 131351 username khalili 131351 mac 131351 bytes_out 733881 131351 bytes_in 1671183 131351 station_ip 5.119.131.147 131351 port 237 131351 unique_id port 131351 remote_ip 10.8.0.86 131353 username barzegar 131353 mac 131347 unique_id port 131347 remote_ip 10.8.1.174 131350 username aminvpn 131350 mac 131350 bytes_out 0 131350 bytes_in 0 131350 station_ip 83.122.127.103 131350 port 252 131350 unique_id port 131350 remote_ip 10.8.0.14 131354 username mirzaei 131354 kill_reason Another user logged on this global unique id 131354 mac 131354 bytes_out 0 131354 bytes_in 0 131354 station_ip 5.119.47.186 131354 port 248 131354 unique_id port 131355 username barzegar 131355 mac 131355 bytes_out 0 131355 bytes_in 0 131355 station_ip 5.120.57.60 131355 port 262 131355 unique_id port 131355 remote_ip 10.8.0.234 131365 username moradi 131365 mac 131365 bytes_out 0 131365 bytes_in 0 131365 station_ip 46.225.209.232 131365 port 168 131365 unique_id port 131365 remote_ip 10.8.1.202 131367 username vanila 131367 mac 131367 bytes_out 11714288 131367 bytes_in 18041668 131367 station_ip 37.129.248.15 131367 port 249 131367 unique_id port 131367 remote_ip 10.8.0.178 131368 username godarzi 131368 mac 131368 bytes_out 701764 131368 bytes_in 7807611 131368 station_ip 5.202.6.3 131368 port 259 131368 unique_id port 131368 remote_ip 10.8.0.174 131375 username zare 131375 mac 131375 bytes_out 0 131375 bytes_in 0 131375 station_ip 94.183.214.14 131375 port 168 131375 unique_id port 131375 remote_ip 10.8.1.58 131376 username mohsenaskari 131376 mac 131376 bytes_out 1279944 131376 bytes_in 16544772 131376 station_ip 46.225.208.54 131376 port 237 131376 unique_id port 131376 remote_ip 10.8.0.246 131383 username hosseine 131383 kill_reason Another user logged on this global unique id 131383 mac 131383 bytes_out 0 131383 bytes_in 0 131383 station_ip 37.129.23.0 131383 port 262 131383 unique_id port 131384 username barzegar 131384 mac 131384 bytes_out 0 131384 bytes_in 0 131384 station_ip 5.120.57.60 131384 port 171 131384 unique_id port 131384 remote_ip 10.8.1.174 131387 username mehdizare 131387 mac 131387 bytes_out 0 131387 bytes_in 0 131387 station_ip 5.120.78.164 131387 port 169 131387 unique_id port 131387 remote_ip 10.8.1.42 131391 username barzegar 131391 mac 131391 bytes_out 0 131391 bytes_in 0 131391 station_ip 5.120.57.60 131391 port 169 131391 unique_id port 131391 remote_ip 10.8.1.174 131396 username mohsenaskari 131396 mac 131396 bytes_out 0 131396 bytes_in 0 131396 station_ip 83.123.213.78 131396 port 258 131396 unique_id port 131400 username barzegar 131400 mac 131400 bytes_out 0 131400 bytes_in 0 131400 station_ip 5.120.57.60 131400 port 169 131400 unique_id port 131400 remote_ip 10.8.1.174 131403 username barzegar 131403 mac 131403 bytes_out 0 131403 bytes_in 0 131403 station_ip 5.120.57.60 131403 port 169 131403 unique_id port 131403 remote_ip 10.8.1.174 131408 username mohammadjavad 131408 mac 131408 bytes_out 127351 131408 bytes_in 412436 131408 station_ip 113.203.120.47 131408 port 237 131408 unique_id port 131408 remote_ip 10.8.0.142 131410 username alihosseini1 131410 mac 131410 bytes_out 471117 131410 bytes_in 3806341 131410 station_ip 5.119.8.100 131410 port 237 131410 unique_id port 131410 remote_ip 10.8.0.166 131412 username barzegar 131412 mac 131412 bytes_out 0 131412 bytes_in 0 131412 station_ip 5.120.57.60 131412 port 168 131412 unique_id port 131412 remote_ip 10.8.1.174 131418 username mohsenaskari 131418 mac 131418 bytes_out 0 131418 bytes_in 0 131418 station_ip 83.123.211.34 131418 port 265 131418 unique_id port 131418 remote_ip 10.8.0.246 131352 bytes_out 476756 131352 bytes_in 6584634 131352 station_ip 5.119.131.147 131352 port 237 131352 unique_id port 131352 remote_ip 10.8.0.86 131356 username barzegar 131356 mac 131356 bytes_out 175012 131356 bytes_in 3926966 131356 station_ip 5.120.57.60 131356 port 169 131356 unique_id port 131356 remote_ip 10.8.1.174 131357 username mehdizare 131357 mac 131357 bytes_out 111086 131357 bytes_in 162876 131357 station_ip 5.120.78.164 131357 port 167 131357 unique_id port 131357 remote_ip 10.8.1.42 131360 username godarzi 131360 kill_reason Another user logged on this global unique id 131360 mac 131360 bytes_out 0 131360 bytes_in 0 131360 station_ip 5.202.6.3 131360 port 259 131360 unique_id port 131360 remote_ip 10.8.0.174 131361 username mohammadjavad 131361 mac 131361 bytes_out 132908 131361 bytes_in 703433 131361 station_ip 37.27.34.207 131361 port 237 131361 unique_id port 131361 remote_ip 10.8.0.142 131362 username mohsenaskari 131362 mac 131362 bytes_out 0 131362 bytes_in 0 131362 station_ip 83.123.150.74 131362 port 264 131362 unique_id port 131362 remote_ip 10.8.0.246 131364 username godarzi 131364 mac 131364 bytes_out 0 131364 bytes_in 0 131364 station_ip 5.202.6.3 131364 port 259 131364 unique_id port 131366 username hosseine 131366 kill_reason Another user logged on this global unique id 131366 mac 131366 bytes_out 0 131366 bytes_in 0 131366 station_ip 37.129.23.0 131366 port 262 131366 unique_id port 131366 remote_ip 10.8.0.238 131370 username aminvpn 131370 mac 131370 bytes_out 1052479 131370 bytes_in 3107709 131370 station_ip 83.122.127.103 131370 port 258 131370 unique_id port 131370 remote_ip 10.8.0.14 131372 username hamidsalari1 131372 mac 131372 bytes_out 116834 131372 bytes_in 258873 131372 station_ip 37.129.143.83 131372 port 256 131372 unique_id port 131372 remote_ip 10.8.0.226 131374 username khalili 131374 kill_reason Another user logged on this global unique id 131374 mac 131374 bytes_out 0 131374 bytes_in 0 131374 station_ip 5.119.131.147 131374 port 252 131374 unique_id port 131374 remote_ip 10.8.0.86 131377 username barzegar 131377 mac 131377 bytes_out 46884 131377 bytes_in 47613 131377 station_ip 5.120.57.60 131377 port 249 131377 unique_id port 131377 remote_ip 10.8.0.234 131385 username godarzi 131385 mac 131385 bytes_out 184085 131385 bytes_in 2424381 131385 station_ip 5.202.6.3 131385 port 241 131385 unique_id port 131385 remote_ip 10.8.0.174 131390 username godarzi 131390 mac 131390 bytes_out 146408 131390 bytes_in 506830 131390 station_ip 5.202.6.3 131390 port 259 131390 unique_id port 131390 remote_ip 10.8.0.174 131392 username mehdizare 131392 mac 131392 bytes_out 11369 131392 bytes_in 14590 131392 station_ip 5.120.78.164 131392 port 256 131392 unique_id port 131392 remote_ip 10.8.0.90 131395 username godarzi 131395 mac 131395 bytes_out 1003235 131395 bytes_in 12717115 131395 station_ip 5.202.6.3 131395 port 241 131395 unique_id port 131395 remote_ip 10.8.0.174 131397 username barzegar 131397 mac 131397 bytes_out 0 131397 bytes_in 0 131397 station_ip 5.120.57.60 131397 port 169 131397 unique_id port 131397 remote_ip 10.8.1.174 131401 username barzegar 131401 mac 131401 bytes_out 0 131401 bytes_in 0 131401 station_ip 5.120.57.60 131401 port 169 131401 unique_id port 131401 remote_ip 10.8.1.174 131402 username hosseine 131402 kill_reason Another user logged on this global unique id 131402 mac 131402 bytes_out 0 131402 bytes_in 0 131402 station_ip 37.129.23.0 131353 bytes_out 817654 131353 bytes_in 14520020 131353 station_ip 5.120.57.60 131353 port 252 131353 unique_id port 131353 remote_ip 10.8.0.234 131358 username barzegar 131358 mac 131358 bytes_out 0 131358 bytes_in 0 131358 station_ip 5.120.57.60 131358 port 169 131358 unique_id port 131358 remote_ip 10.8.1.174 131359 username mohsenaskari 131359 mac 131359 bytes_out 567457 131359 bytes_in 8646287 131359 station_ip 46.225.208.54 131359 port 264 131359 unique_id port 131359 remote_ip 10.8.0.246 131363 username mehdizare 131363 mac 131363 bytes_out 0 131363 bytes_in 0 131363 station_ip 5.120.78.164 131363 port 167 131363 unique_id port 131363 remote_ip 10.8.1.42 131369 username mehdizare 131369 mac 131369 bytes_out 9346 131369 bytes_in 13122 131369 station_ip 5.120.78.164 131369 port 167 131369 unique_id port 131369 remote_ip 10.8.1.42 131371 username barzegar 131371 mac 131371 bytes_out 15138 131371 bytes_in 18487 131371 station_ip 5.120.57.60 131371 port 264 131371 unique_id port 131371 remote_ip 10.8.0.234 131373 username kordestani 131373 mac 131373 bytes_out 0 131373 bytes_in 0 131373 station_ip 151.235.90.178 131373 port 249 131373 unique_id port 131373 remote_ip 10.8.0.134 131378 username godarzi 131378 mac 131378 bytes_out 912618 131378 bytes_in 24371350 131378 station_ip 5.202.6.3 131378 port 256 131378 unique_id port 131378 remote_ip 10.8.0.174 131379 username barzegar 131379 mac 131379 bytes_out 0 131379 bytes_in 0 131379 station_ip 5.120.57.60 131379 port 249 131379 unique_id port 131379 remote_ip 10.8.0.234 131380 username khademi 131380 mac 131380 bytes_out 0 131380 bytes_in 0 131380 station_ip 37.129.238.252 131380 port 241 131380 unique_id port 131381 username barzegar 131381 mac 131381 bytes_out 0 131381 bytes_in 0 131381 station_ip 5.120.57.60 131381 port 171 131381 unique_id port 131381 remote_ip 10.8.1.174 131382 username godarzi 131382 mac 131382 bytes_out 0 131382 bytes_in 0 131382 station_ip 5.202.6.3 131382 port 249 131382 unique_id port 131382 remote_ip 10.8.0.174 131386 username mohsenaskari 131386 kill_reason Another user logged on this global unique id 131386 mac 131386 bytes_out 0 131386 bytes_in 0 131386 station_ip 83.123.213.78 131386 port 258 131386 unique_id port 131386 remote_ip 10.8.0.246 131388 username hosseine 131388 kill_reason Another user logged on this global unique id 131388 mac 131388 bytes_out 0 131388 bytes_in 0 131388 station_ip 37.129.23.0 131388 port 262 131388 unique_id port 131389 username kordestani 131389 mac 131389 bytes_out 815268 131389 bytes_in 10392035 131389 station_ip 151.235.90.178 131389 port 241 131389 unique_id port 131389 remote_ip 10.8.0.134 131393 username mohsenaskari 131393 kill_reason Another user logged on this global unique id 131393 mac 131393 bytes_out 0 131393 bytes_in 0 131393 station_ip 83.123.213.78 131393 port 258 131393 unique_id port 131394 username barzegar 131394 mac 131394 bytes_out 0 131394 bytes_in 0 131394 station_ip 5.120.57.60 131394 port 169 131394 unique_id port 131394 remote_ip 10.8.1.174 131398 username godarzi 131398 mac 131398 bytes_out 120257 131398 bytes_in 858376 131398 station_ip 5.202.6.3 131398 port 241 131398 unique_id port 131398 remote_ip 10.8.0.174 131399 username barzegar 131399 mac 131399 bytes_out 0 131399 bytes_in 0 131399 station_ip 5.120.57.60 131399 port 258 131399 unique_id port 131399 remote_ip 10.8.0.234 131404 username moradi 131404 mac 131402 port 262 131402 unique_id port 131406 username mehdizare 131406 mac 131406 bytes_out 72108 131406 bytes_in 83557 131406 station_ip 5.120.78.164 131406 port 256 131406 unique_id port 131406 remote_ip 10.8.0.90 131409 username barzegar 131409 mac 131409 bytes_out 0 131409 bytes_in 0 131409 station_ip 5.120.57.60 131409 port 168 131409 unique_id port 131409 remote_ip 10.8.1.174 131411 username alihosseini1 131411 mac 131411 bytes_out 0 131411 bytes_in 0 131411 station_ip 5.119.8.100 131411 port 256 131411 unique_id port 131411 remote_ip 10.8.0.166 131413 username mosi 131413 kill_reason Another user logged on this global unique id 131413 mac 131413 bytes_out 0 131413 bytes_in 0 131413 station_ip 151.235.72.123 131413 port 259 131413 unique_id port 131413 remote_ip 10.8.0.138 131417 username mohsenaskari 131417 mac 131417 bytes_out 0 131417 bytes_in 0 131417 station_ip 46.225.208.54 131417 port 264 131417 unique_id port 131417 remote_ip 10.8.0.246 131420 username alihosseini1 131420 mac 131420 bytes_out 0 131420 bytes_in 0 131420 station_ip 5.119.8.100 131420 port 258 131420 unique_id port 131420 remote_ip 10.8.0.166 131421 username barzegar 131421 mac 131421 bytes_out 0 131421 bytes_in 0 131421 station_ip 5.120.57.60 131421 port 169 131421 unique_id port 131421 remote_ip 10.8.1.174 131426 username mosi 131426 kill_reason Another user logged on this global unique id 131426 mac 131426 bytes_out 0 131426 bytes_in 0 131426 station_ip 151.235.72.123 131426 port 259 131426 unique_id port 131430 username barzegar 131430 mac 131430 bytes_out 0 131430 bytes_in 0 131430 station_ip 5.120.57.60 131430 port 169 131430 unique_id port 131430 remote_ip 10.8.1.174 131434 username amir 131434 mac 131434 bytes_out 0 131434 bytes_in 0 131434 station_ip 46.225.209.99 131434 port 241 131434 unique_id port 131434 remote_ip 10.8.0.50 131436 username barzegar 131436 mac 131436 bytes_out 0 131436 bytes_in 0 131436 station_ip 5.120.57.60 131436 port 168 131436 unique_id port 131436 remote_ip 10.8.1.174 131437 username alihosseini1 131437 mac 131437 bytes_out 0 131437 bytes_in 0 131437 station_ip 5.119.8.100 131437 port 168 131437 unique_id port 131437 remote_ip 10.8.1.106 131442 username alipour 131442 mac 131442 bytes_out 151363 131442 bytes_in 217943 131442 station_ip 37.129.67.179 131442 port 256 131442 unique_id port 131442 remote_ip 10.8.0.102 131443 username barzegar 131443 mac 131443 bytes_out 0 131443 bytes_in 0 131443 station_ip 5.120.57.60 131443 port 168 131443 unique_id port 131443 remote_ip 10.8.1.174 131453 username alihosseini1 131453 mac 131453 bytes_out 11620 131453 bytes_in 41290 131453 station_ip 5.119.8.100 131453 port 171 131453 unique_id port 131453 remote_ip 10.8.1.106 131456 username kordestani 131456 mac 131456 bytes_out 2932804 131456 bytes_in 39948102 131456 station_ip 151.235.90.178 131456 port 237 131456 unique_id port 131456 remote_ip 10.8.0.134 131458 username farhad2 131458 mac 131458 bytes_out 0 131458 bytes_in 0 131458 station_ip 5.120.103.84 131458 port 237 131458 unique_id port 131458 remote_ip 10.8.0.190 131459 username barzegar 131459 mac 131459 bytes_out 0 131459 bytes_in 0 131459 station_ip 5.120.57.60 131459 port 168 131459 unique_id port 131459 remote_ip 10.8.1.174 131460 username kordestani 131460 mac 131460 bytes_out 0 131460 bytes_in 0 131460 station_ip 151.235.90.178 131460 port 237 131460 unique_id port 131404 bytes_out 0 131404 bytes_in 0 131404 station_ip 46.225.209.232 131404 port 168 131404 unique_id port 131404 remote_ip 10.8.1.202 131405 username vanila 131405 mac 131405 bytes_out 9121414 131405 bytes_in 5679080 131405 station_ip 37.129.240.251 131405 port 241 131405 unique_id port 131405 remote_ip 10.8.0.178 131407 username hamidsalari1 131407 mac 131407 bytes_out 0 131407 bytes_in 0 131407 station_ip 37.129.143.83 131407 port 167 131407 unique_id port 131407 remote_ip 10.8.1.170 131414 username alipour 131414 mac 131414 bytes_out 0 131414 bytes_in 0 131414 station_ip 37.129.67.179 131414 port 265 131414 unique_id port 131414 remote_ip 10.8.0.102 131415 username alihosseini1 131415 mac 131415 bytes_out 0 131415 bytes_in 0 131415 station_ip 5.119.8.100 131415 port 256 131415 unique_id port 131415 remote_ip 10.8.0.166 131416 username barzegar 131416 mac 131416 bytes_out 0 131416 bytes_in 0 131416 station_ip 5.120.57.60 131416 port 168 131416 unique_id port 131416 remote_ip 10.8.1.174 131419 username mehdizare 131419 mac 131419 bytes_out 0 131419 bytes_in 0 131419 station_ip 5.120.78.164 131419 port 258 131419 unique_id port 131419 remote_ip 10.8.0.90 131423 username alihosseini1 131423 mac 131423 bytes_out 0 131423 bytes_in 0 131423 station_ip 5.119.8.100 131423 port 258 68195 username vahid 68195 kill_reason Maximum check online fails reached 68195 mac 89.196.149.169:14444: Unknown host 68195 bytes_out 0 68195 bytes_in 0 68195 station_ip 89.196.149.169:14444 68195 port 1017 68195 unique_id port 131423 unique_id port 131423 remote_ip 10.8.0.166 131424 username alihosseini1 131424 mac 131424 bytes_out 0 131424 bytes_in 0 131424 station_ip 5.119.8.100 131424 port 258 131424 unique_id port 131424 remote_ip 10.8.0.166 131428 username mehdizare 131428 mac 131428 bytes_out 0 131428 bytes_in 0 131428 station_ip 5.120.78.164 131428 port 258 131428 unique_id port 131428 remote_ip 10.8.0.90 131429 username amir 131429 mac 131429 bytes_out 0 131429 bytes_in 0 131429 station_ip 46.225.209.99 131429 port 241 131429 unique_id port 131429 remote_ip 10.8.0.50 131431 username moradi 131431 mac 131431 bytes_out 120255 131431 bytes_in 159364 131431 station_ip 46.225.209.232 131431 port 168 131431 unique_id port 131431 remote_ip 10.8.1.202 131433 username mosi 131433 kill_reason Another user logged on this global unique id 131433 mac 131433 bytes_out 0 131433 bytes_in 0 131433 station_ip 151.235.72.123 131433 port 259 131433 unique_id port 131439 username barzegar 131439 mac 131439 bytes_out 2919 131439 bytes_in 5712 131439 station_ip 5.120.57.60 131439 port 168 131439 unique_id port 131439 remote_ip 10.8.1.174 131440 username alihosseini1 131440 mac 131440 bytes_out 0 131440 bytes_in 0 131440 station_ip 5.119.8.100 131440 port 168 131440 unique_id port 131440 remote_ip 10.8.1.106 131441 username alipour 131441 mac 131441 bytes_out 0 131441 bytes_in 0 131441 station_ip 37.129.67.179 131441 port 168 131441 unique_id port 131441 remote_ip 10.8.1.50 131446 username alihosseini1 131446 mac 131446 bytes_out 0 131446 bytes_in 0 131446 station_ip 5.119.8.100 131446 port 168 131446 unique_id port 131446 remote_ip 10.8.1.106 131447 username hosseine 131447 kill_reason Another user logged on this global unique id 131447 mac 131447 bytes_out 0 131447 bytes_in 0 131447 station_ip 37.129.23.0 131447 port 262 131447 unique_id port 131452 username mohammadjavad 131452 mac 131452 bytes_out 501772 131422 username mehdizare 131422 mac 131422 bytes_out 0 131422 bytes_in 0 131422 station_ip 5.120.78.164 131422 port 264 131422 unique_id port 131422 remote_ip 10.8.0.90 131425 username mohsenaskari 131425 mac 131425 bytes_out 0 131425 bytes_in 0 131425 station_ip 83.123.211.34 131425 port 168 131425 unique_id port 131425 remote_ip 10.8.1.226 131427 username alihosseini1 131427 mac 131427 bytes_out 0 131427 bytes_in 0 131427 station_ip 5.119.8.100 131427 port 265 131427 unique_id port 131427 remote_ip 10.8.0.166 131432 username godarzi 131432 mac 131432 bytes_out 1515151 131432 bytes_in 14820396 131432 station_ip 5.202.6.3 131432 port 237 131432 unique_id port 131432 remote_ip 10.8.0.174 131435 username alihosseini1 131435 mac 131435 bytes_out 0 131435 bytes_in 0 131435 station_ip 5.119.8.100 131435 port 237 131435 unique_id port 131435 remote_ip 10.8.0.166 131438 username alihosseini1 131438 mac 131438 bytes_out 0 131438 bytes_in 0 131438 station_ip 5.119.8.100 131438 port 241 131438 unique_id port 131438 remote_ip 10.8.0.166 131444 username mosi 131444 kill_reason Another user logged on this global unique id 131444 mac 131444 bytes_out 0 131444 bytes_in 0 131444 station_ip 151.235.72.123 131444 port 259 131444 unique_id port 131445 username mohsenaskari 131445 mac 131445 bytes_out 0 131445 bytes_in 0 131445 station_ip 83.123.211.34 131445 port 264 131445 unique_id port 131445 remote_ip 10.8.0.246 131448 username barzegar 131448 mac 131448 bytes_out 0 131448 bytes_in 0 131448 station_ip 5.120.57.60 131448 port 168 131448 unique_id port 131448 remote_ip 10.8.1.174 131449 username mosi 131449 kill_reason Another user logged on this global unique id 131449 mac 131449 bytes_out 0 131449 bytes_in 0 131449 station_ip 151.235.72.123 131449 port 259 131449 unique_id port 131450 username hamidsalari1 131450 mac 131450 bytes_out 176595 131450 bytes_in 402539 131450 station_ip 83.123.254.22 131450 port 167 131450 unique_id port 131450 remote_ip 10.8.1.170 131451 username barzegar 131451 mac 131451 bytes_out 0 131451 bytes_in 0 131451 station_ip 5.120.57.60 131451 port 168 131451 unique_id port 131451 remote_ip 10.8.1.174 131454 username amir 131454 mac 131454 bytes_out 0 131454 bytes_in 0 131454 station_ip 46.225.209.99 131454 port 256 131454 unique_id port 131454 remote_ip 10.8.0.50 131457 username barzegar 131457 mac 131457 bytes_out 0 131457 bytes_in 0 131457 station_ip 5.120.57.60 131457 port 168 131457 unique_id port 131457 remote_ip 10.8.1.174 131461 username aminvpn 131461 mac 131461 bytes_out 1676753 131461 bytes_in 11404689 131461 station_ip 37.129.95.158 131461 port 249 131461 unique_id port 131461 remote_ip 10.8.0.14 131464 username barzegar 68220 username vahid 68220 kill_reason Maximum check online fails reached 68220 mac 89.196.210.155:14474: Unknown host 68220 bytes_out 0 68220 bytes_in 0 68220 station_ip 89.196.210.155:14474 68220 port 1017 68220 unique_id port 131464 mac 131464 bytes_out 0 131464 bytes_in 0 131464 station_ip 5.120.57.60 131464 port 237 131464 unique_id port 131464 remote_ip 10.8.0.234 131465 username amir 131465 mac 131465 bytes_out 0 131465 bytes_in 0 131465 station_ip 46.225.209.99 131465 port 256 131465 unique_id port 131465 remote_ip 10.8.0.50 131473 username godarzi 131473 mac 131473 bytes_out 0 131473 bytes_in 0 131473 station_ip 5.202.6.3 131473 port 265 131473 unique_id port 131473 remote_ip 10.8.0.174 131476 username aminvpn 131452 bytes_in 7255319 131452 station_ip 83.122.43.248 131452 port 264 131452 unique_id port 131452 remote_ip 10.8.0.142 131455 username mosi 131455 kill_reason Another user logged on this global unique id 131455 mac 131455 bytes_out 0 131455 bytes_in 0 131455 station_ip 151.235.72.123 131455 port 259 131455 unique_id port 131463 username farhad2 131463 mac 131463 bytes_out 507363 131463 bytes_in 1193365 131463 station_ip 5.120.103.84 131463 port 264 131463 unique_id port 131463 remote_ip 10.8.0.190 131466 username mehdizare 131466 mac 131466 bytes_out 0 131466 bytes_in 0 131466 station_ip 5.120.78.164 131466 port 237 131466 unique_id port 131466 remote_ip 10.8.0.90 131470 username farhad2 131470 mac 131470 bytes_out 0 131470 bytes_in 0 131470 station_ip 5.120.103.84 131470 port 258 131470 unique_id port 131470 remote_ip 10.8.0.190 131471 username barzegar 131471 mac 131471 bytes_out 3060 131471 bytes_in 5589 131471 station_ip 5.120.57.60 131471 port 169 131471 unique_id port 131471 remote_ip 10.8.1.174 131483 username barzegar 131483 mac 131483 bytes_out 0 131483 bytes_in 0 131483 station_ip 5.120.57.60 131483 port 167 131483 unique_id port 131483 remote_ip 10.8.1.174 131486 username rajaei 68204 username arezoo 68204 kill_reason Maximum check online fails reached 68204 mac 5.237.69.83:49183: Unknown host 68204 bytes_out 0 68204 bytes_in 0 68204 station_ip 5.237.69.83:49183 68204 port 1017 68204 unique_id port 131486 mac 131486 bytes_out 0 131486 bytes_in 0 131486 station_ip 5.134.153.193 131486 port 256 131486 unique_id port 131486 remote_ip 10.8.0.34 131494 username aminvpn 131494 mac 131494 bytes_out 0 131494 bytes_in 0 131494 station_ip 83.122.127.103 131494 port 249 131494 unique_id port 131494 remote_ip 10.8.0.14 131496 username khalili 131496 mac 131496 bytes_out 0 131496 bytes_in 0 131496 station_ip 5.119.131.147 131496 port 252 131496 unique_id port 131501 username barzegar 131501 mac 131501 bytes_out 0 131501 bytes_in 0 131501 station_ip 5.120.57.60 131501 port 169 131501 unique_id port 131501 remote_ip 10.8.1.174 131504 username mohammadjavad 131504 mac 131504 bytes_out 0 131504 bytes_in 0 131504 station_ip 37.129.39.230 131504 port 249 131504 unique_id port 131504 remote_ip 10.8.0.142 131506 username barzegar 131506 mac 131506 bytes_out 0 131506 bytes_in 0 131506 station_ip 5.120.57.60 131506 port 249 131506 unique_id port 131506 remote_ip 10.8.0.234 131509 username hamid.e 131509 unique_id port 131509 terminate_cause User-Request 131509 bytes_out 7563749 131509 bytes_in 75898144 131509 station_ip 37.27.21.240 131509 port 15730294 131509 nas_port_type Virtual 131509 remote_ip 5.5.5.230 131511 username farhad2 131511 mac 131511 bytes_out 244627 131511 bytes_in 1152526 131511 station_ip 5.120.103.84 131511 port 256 131511 unique_id port 131511 remote_ip 10.8.0.190 131517 username aminvpn 131517 mac 131517 bytes_out 51826 131517 bytes_in 116161 131517 station_ip 83.122.127.103 131517 port 259 131517 unique_id port 131517 remote_ip 10.8.0.14 131518 username farhad2 131518 mac 131518 bytes_out 1798000 131518 bytes_in 11702937 131518 station_ip 5.120.103.84 131518 port 167 131518 unique_id port 131518 remote_ip 10.8.1.222 131519 username barzegar 131519 mac 131519 bytes_out 3444 131519 bytes_in 5600 131519 station_ip 5.120.57.60 131519 port 259 131519 unique_id port 131519 remote_ip 10.8.0.234 131521 username barzegar 131521 mac 131521 bytes_out 0 131460 remote_ip 10.8.0.134 131462 username mehdizare 131462 mac 131462 bytes_out 50222 131462 bytes_in 69195 131462 station_ip 5.120.78.164 131462 port 258 131462 unique_id port 131462 remote_ip 10.8.0.90 131467 username saeed9658 131467 mac 131467 bytes_out 8313762 131467 bytes_in 23212500 131467 station_ip 5.119.37.114 131467 port 169 131467 unique_id port 131467 remote_ip 10.8.1.210 131468 username aminvpn 131468 mac 131468 bytes_out 408752 131468 bytes_in 538011 131468 station_ip 37.129.95.158 131468 port 249 131468 unique_id port 131468 remote_ip 10.8.0.14 131469 username mosi 131469 kill_reason Another user logged on this global unique id 131469 mac 131469 bytes_out 0 131469 bytes_in 0 131469 station_ip 151.235.72.123 131469 port 259 131469 unique_id port 131472 username kordestani 131472 mac 131472 bytes_out 0 131472 bytes_in 0 131472 station_ip 151.235.90.178 131472 port 237 131472 unique_id port 131472 remote_ip 10.8.0.134 131474 username aminvpn 131474 mac 131474 bytes_out 0 131474 bytes_in 0 131474 station_ip 37.129.95.158 131474 port 249 131474 unique_id port 131474 remote_ip 10.8.0.14 131475 username aminvpn 131475 mac 131475 bytes_out 0 131475 bytes_in 0 131475 station_ip 5.119.37.37 131475 port 258 131475 unique_id port 131475 remote_ip 10.8.0.14 131478 username mohammadjavad 131478 mac 131478 bytes_out 539591 131478 bytes_in 6407689 131478 station_ip 113.203.26.74 131478 port 256 131478 unique_id port 131478 remote_ip 10.8.0.142 131479 username barzegar 131479 mac 131479 bytes_out 0 131479 bytes_in 0 131479 station_ip 5.120.57.60 131479 port 171 131479 unique_id port 131479 remote_ip 10.8.1.174 131480 username aminvpn 131480 unique_id port 131480 terminate_cause User-Request 131480 bytes_out 98884 131480 bytes_in 451492 131480 station_ip 5.119.37.37 131480 port 15730299 131480 nas_port_type Virtual 131480 remote_ip 5.5.5.235 131484 username moradi 131484 mac 131484 bytes_out 667653 131484 bytes_in 3857890 131484 station_ip 46.225.215.50 131484 port 168 131484 unique_id port 131484 remote_ip 10.8.1.202 131487 username barzegar 131487 mac 131487 bytes_out 111905 131487 bytes_in 736285 131487 station_ip 5.120.57.60 131487 port 168 131487 unique_id port 131487 remote_ip 10.8.1.174 131489 username aminvpn 131489 mac 131489 bytes_out 0 131489 bytes_in 0 131489 station_ip 31.56.219.108 131489 port 258 131489 unique_id port 131489 remote_ip 10.8.0.14 131490 username aminvpn 131490 mac 131490 bytes_out 0 131490 bytes_in 0 131490 station_ip 37.129.95.158 131490 port 249 131490 unique_id port 131490 remote_ip 10.8.0.14 131492 username aminvpn 131492 mac 131492 bytes_out 0 131492 bytes_in 0 131492 station_ip 37.129.95.158 131492 port 249 131492 unique_id port 131492 remote_ip 10.8.0.14 131493 username aminvpn 131493 mac 131493 bytes_out 0 131493 bytes_in 0 131493 station_ip 31.56.219.108 131493 port 258 131493 unique_id port 131493 remote_ip 10.8.0.14 131495 username farhad2 131495 mac 131495 bytes_out 0 131495 bytes_in 0 131495 station_ip 5.120.103.84 131495 port 256 131495 unique_id port 131495 remote_ip 10.8.0.190 131499 username godarzi 131499 mac 131499 bytes_out 0 131499 bytes_in 0 131499 station_ip 5.120.38.51 131499 port 249 131499 unique_id port 131499 remote_ip 10.8.0.174 131503 username moradi 131503 mac 131503 bytes_out 148566 131503 bytes_in 297241 131503 station_ip 46.225.232.131 131503 port 167 131503 unique_id port 131476 mac 131476 bytes_out 0 131476 bytes_in 0 131476 station_ip 37.129.95.158 131476 port 249 131476 unique_id port 131476 remote_ip 10.8.0.14 131477 username aminvpn 131477 mac 131477 bytes_out 0 131477 bytes_in 0 131477 station_ip 5.119.37.37 131477 port 258 131477 unique_id port 131477 remote_ip 10.8.0.14 131481 username hamidsalari1 131481 mac 131481 bytes_out 90832 131481 bytes_in 168137 131481 station_ip 83.123.254.22 131481 port 167 131481 unique_id port 131481 remote_ip 10.8.1.170 131482 username aminvpn 131482 mac 131482 bytes_out 0 131482 bytes_in 0 131482 station_ip 37.129.95.158 131482 port 249 131482 unique_id port 131482 remote_ip 10.8.0.14 131485 username saeed9658 131485 mac 131485 bytes_out 237991 131485 bytes_in 1309612 131485 station_ip 5.119.37.114 131485 port 169 131485 unique_id port 131485 remote_ip 10.8.1.210 131488 username aminvpn 131488 mac 131488 bytes_out 0 131488 bytes_in 0 131488 station_ip 37.129.95.158 131488 port 249 131488 unique_id port 131488 remote_ip 10.8.0.14 131491 username aminvpn 131491 mac 131491 bytes_out 58773 131491 bytes_in 76396 131491 station_ip 31.56.219.108 131491 port 258 131491 unique_id port 131491 remote_ip 10.8.0.14 131497 username aminvpn 131497 unique_id port 131497 terminate_cause User-Request 131497 bytes_out 2428282 131497 bytes_in 15567207 131497 station_ip 5.119.37.37 131497 port 15730300 131497 nas_port_type Virtual 131497 remote_ip 5.5.5.254 131498 username aminvpn 131498 unique_id port 131498 terminate_cause User-Request 131498 bytes_out 9672257 131498 bytes_in 251729835 131498 station_ip 31.56.219.108 131498 port 15730293 131498 nas_port_type Virtual 131498 remote_ip 5.5.5.225 131500 username barzegar 131500 mac 131500 bytes_out 0 131500 bytes_in 0 131500 station_ip 5.120.57.60 131500 port 249 131500 unique_id port 131500 remote_ip 10.8.0.234 131502 username mosi 131502 mac 131502 bytes_out 0 131502 bytes_in 0 131502 station_ip 151.235.72.123 131502 port 259 131502 unique_id port 131510 username farhad2 131510 mac 131510 bytes_out 0 131510 bytes_in 0 131510 station_ip 5.120.103.84 131510 port 168 131510 unique_id port 131512 username barzegar 131512 mac 131512 bytes_out 2898 131512 bytes_in 5461 131512 station_ip 5.120.57.60 131512 port 167 131512 unique_id port 131512 remote_ip 10.8.1.174 131515 username aminvpn 131515 mac 131515 bytes_out 0 131515 bytes_in 0 131515 station_ip 37.129.95.158 131515 port 258 131515 unique_id port 131515 remote_ip 10.8.0.14 131516 username barzegar 131516 mac 131516 bytes_out 0 131516 bytes_in 0 131516 station_ip 5.120.57.60 131516 port 258 131516 unique_id port 131516 remote_ip 10.8.0.234 131520 username mosi 131520 kill_reason Another user logged on this global unique id 131520 mac 131520 bytes_out 0 131520 bytes_in 0 131520 station_ip 151.235.72.123 131520 port 252 131520 unique_id port 131522 username saeed9658 131522 mac 131522 bytes_out 0 131522 bytes_in 0 131522 station_ip 5.119.37.114 131522 port 167 131522 unique_id port 131522 remote_ip 10.8.1.210 131524 username mohammadjavad 131524 mac 131524 bytes_out 273283 131524 bytes_in 1653473 131524 station_ip 113.203.106.54 131524 port 265 131524 unique_id port 131524 remote_ip 10.8.0.142 131528 username avaanna 131528 mac 131528 bytes_out 0 131528 bytes_in 0 131528 station_ip 185.144.64.46 131528 port 167 131528 unique_id port 131528 remote_ip 10.8.1.46 131529 username hosseine 131529 mac 131503 remote_ip 10.8.1.202 131505 username farhad2 131505 kill_reason Another user logged on this global unique id 131505 mac 131505 bytes_out 0 131505 bytes_in 0 131505 station_ip 5.120.103.84 131505 port 168 131505 unique_id port 131505 remote_ip 10.8.1.222 131507 username mirzaei 131507 kill_reason Another user logged on this global unique id 131507 mac 131507 bytes_out 0 131507 bytes_in 0 131507 station_ip 5.119.47.186 131507 port 248 131507 unique_id port 131508 username barzegar 131508 mac 131508 bytes_out 0 131508 bytes_in 0 131508 station_ip 5.120.57.60 131508 port 256 131508 unique_id port 131508 remote_ip 10.8.0.234 131513 username mosi 131513 kill_reason Another user logged on this global unique id 131513 mac 131513 bytes_out 0 131513 bytes_in 0 131513 station_ip 151.235.72.123 131513 port 252 131513 unique_id port 131513 remote_ip 10.8.0.138 131514 username barzegar 131514 mac 131514 bytes_out 0 131514 bytes_in 0 131514 station_ip 5.120.57.60 131514 port 168 131514 unique_id port 131514 remote_ip 10.8.1.174 131523 username barzegar 131523 mac 131523 bytes_out 2546 131523 bytes_in 4655 131523 station_ip 5.120.57.60 131523 port 264 131523 unique_id port 131523 remote_ip 10.8.0.234 131526 username mahdiyehalizadeh 131526 mac 131526 bytes_out 0 131526 bytes_in 0 131526 station_ip 37.129.252.89 68256 username vahid 68256 kill_reason Maximum check online fails reached 68256 mac 89.196.65.159:14361: Unknown host 68256 bytes_out 0 68256 bytes_in 0 68256 station_ip 89.196.65.159:14361 68256 port 1017 68256 unique_id port 131526 port 259 131526 unique_id port 131526 remote_ip 10.8.0.82 131527 username barzegar 131527 mac 131527 bytes_out 21836 131527 bytes_in 49727 131527 station_ip 5.120.57.60 131527 port 271 131527 unique_id port 131527 remote_ip 10.8.0.234 131531 username mosi 131531 kill_reason Another user logged on this global unique id 131531 mac 131531 bytes_out 0 131531 bytes_in 0 131531 station_ip 151.235.72.123 131531 port 252 131531 unique_id port 131536 username hosseine 131536 kill_reason Another user logged on this global unique id 131536 mac 131536 bytes_out 0 131536 bytes_in 0 131536 station_ip 37.129.23.0 131536 port 167 131536 unique_id port 131536 remote_ip 10.8.1.190 131539 username amir 131539 mac 131539 bytes_out 0 131539 bytes_in 0 131539 station_ip 46.225.209.99 131539 port 262 131539 unique_id port 131539 remote_ip 10.8.0.50 131542 username hosseine 131542 kill_reason Another user logged on this global unique id 131542 mac 131542 bytes_out 0 131542 bytes_in 0 131542 station_ip 37.129.23.0 131542 port 167 131542 unique_id port 131544 username barzegar 131544 mac 131544 bytes_out 134617 131544 bytes_in 455087 131544 station_ip 5.120.57.60 131544 port 169 131544 unique_id port 131544 remote_ip 10.8.1.174 131546 username sabaghnezhad 131546 mac 131546 bytes_out 11500 131546 bytes_in 16215 131546 station_ip 37.129.79.105 131546 port 172 131546 unique_id port 131546 remote_ip 10.8.1.130 131551 username farhad2 131551 kill_reason Another user logged on this global unique id 131551 mac 131551 bytes_out 0 131551 bytes_in 0 131551 station_ip 5.120.5.180 131551 port 256 131551 unique_id port 131551 remote_ip 10.8.0.190 131556 username farhad2 131556 kill_reason Another user logged on this global unique id 131556 mac 131556 bytes_out 0 131556 bytes_in 0 131556 station_ip 5.120.5.180 131556 port 256 131556 unique_id port 131558 username aminvpn 131558 mac 131558 bytes_out 248112 131558 bytes_in 623234 131558 station_ip 37.129.95.158 131558 port 258 131558 unique_id port 131521 bytes_in 0 131521 station_ip 5.120.57.60 131521 port 259 131521 unique_id port 131521 remote_ip 10.8.0.234 131525 username avaanna 131525 mac 131525 bytes_out 220381 131525 bytes_in 2738896 131525 station_ip 185.144.64.46 131525 port 264 131525 unique_id port 131525 remote_ip 10.8.0.98 131534 username malekpoir 131534 kill_reason Maximum check online fails reached 131534 mac 131534 bytes_out 0 131534 bytes_in 0 131534 station_ip 5.119.161.16 131534 port 237 131534 unique_id port 131535 username mosi 131535 kill_reason Another user logged on this global unique id 131535 mac 131535 bytes_out 0 131535 bytes_in 0 131535 station_ip 151.235.72.123 131535 port 252 131535 unique_id port 131543 username sekonji3 131543 mac 131543 bytes_out 0 131543 bytes_in 0 131543 station_ip 83.122.249.141 131543 port 249 131543 unique_id port 131543 remote_ip 10.8.0.6 131552 username mehdizare 131552 mac 131552 bytes_out 9220 131552 bytes_in 16017 131552 station_ip 5.120.78.164 131552 port 168 131552 unique_id port 131552 remote_ip 10.8.1.42 131555 username barzegar 131555 mac 131555 bytes_out 0 131555 bytes_in 0 131555 station_ip 5.120.57.60 131555 port 169 131555 unique_id port 131561 username tahmasebi 131561 kill_reason Another user logged on this global unique id 131561 mac 131561 bytes_out 0 131561 bytes_in 0 131561 station_ip 5.120.145.77 131561 port 264 131561 unique_id port 131561 remote_ip 10.8.0.42 131564 username barzegar 131564 mac 131564 bytes_out 0 131564 bytes_in 0 131564 station_ip 5.120.57.60 131564 port 272 131564 unique_id port 131564 remote_ip 10.8.0.234 131565 username jafari 131565 kill_reason Another user logged on this global unique id 131565 mac 131565 bytes_out 0 131565 bytes_in 0 131565 station_ip 5.134.158.215 131565 port 265 131565 unique_id port 131565 remote_ip 10.8.0.242 131566 username mohammadmahdi 131566 kill_reason Another user logged on this global unique id 131566 mac 131566 bytes_out 0 131566 bytes_in 0 131566 station_ip 5.119.148.186 131566 port 262 131566 unique_id port 131566 remote_ip 10.8.0.54 131567 username aminvpn 131567 mac 131567 bytes_out 0 131567 bytes_in 0 131567 station_ip 5.119.37.37 131567 port 271 131567 unique_id port 131567 remote_ip 10.8.0.14 131568 username barzegar 131568 mac 131568 bytes_out 0 131568 bytes_in 0 131568 station_ip 5.120.57.60 131568 port 272 131568 unique_id port 131568 remote_ip 10.8.0.234 131570 username aminvpn 131570 mac 131570 bytes_out 0 131570 bytes_in 0 131570 station_ip 37.129.95.158 131570 port 273 131570 unique_id port 131570 remote_ip 10.8.0.14 131571 username mohammadjavad 131571 mac 131571 bytes_out 0 131571 bytes_in 0 131571 station_ip 83.123.88.150 131571 port 258 131571 unique_id port 131571 remote_ip 10.8.0.142 131574 username farhad2 131574 kill_reason Another user logged on this global unique id 131574 mac 131574 bytes_out 0 131574 bytes_in 0 131574 station_ip 5.120.5.180 131574 port 256 131574 unique_id port 131579 username mohammadmahdi 131579 kill_reason Another user logged on this global unique id 131579 mac 131579 bytes_out 0 131579 bytes_in 0 131579 station_ip 5.119.148.186 131579 port 262 131579 unique_id port 131580 username farhad2 131580 kill_reason Another user logged on this global unique id 131580 mac 131580 bytes_out 0 131580 bytes_in 0 131580 station_ip 5.120.5.180 131580 port 256 131580 unique_id port 131582 username aminvpn 131582 mac 131582 bytes_out 0 131582 bytes_in 0 131582 station_ip 5.119.37.37 131582 port 249 131582 unique_id port 131529 bytes_out 0 131529 bytes_in 0 131529 station_ip 37.129.23.0 131529 port 262 131529 unique_id port 131530 username barzegar 131530 mac 131530 bytes_out 0 131530 bytes_in 0 131530 station_ip 5.120.57.60 131530 port 168 131530 unique_id port 131530 remote_ip 10.8.1.174 131532 username mehdizare 131532 mac 131532 bytes_out 0 131532 bytes_in 0 131532 station_ip 5.120.78.164 131532 port 237 131532 unique_id port 131532 remote_ip 10.8.0.90 131533 username barzegar 131533 mac 131533 bytes_out 0 131533 bytes_in 0 131533 station_ip 5.120.57.60 131533 port 264 131533 unique_id port 131533 remote_ip 10.8.0.234 131537 username sekonji3 131537 mac 131537 bytes_out 0 131537 bytes_in 0 131537 station_ip 83.122.101.252 131537 port 265 131537 unique_id port 131537 remote_ip 10.8.0.6 131538 username vanila 131538 mac 131538 bytes_out 0 131538 bytes_in 0 131538 station_ip 37.129.137.151 131538 port 264 131538 unique_id port 131538 remote_ip 10.8.0.178 131540 username kordestani 131540 mac 131540 bytes_out 0 131540 bytes_in 0 131540 station_ip 151.235.90.178 131540 port 249 131540 unique_id port 131540 remote_ip 10.8.0.134 131541 username sabaghnezhad 131541 mac 131541 bytes_out 0 131541 bytes_in 0 131541 station_ip 37.129.79.105 131541 port 256 131541 unique_id port 131541 remote_ip 10.8.0.186 131545 username farhad2 131545 mac 131545 bytes_out 1718827 131545 bytes_in 17725641 131545 station_ip 5.120.5.180 131545 port 171 131545 unique_id port 131545 remote_ip 10.8.1.222 131547 username hosseine 131547 kill_reason Another user logged on this global unique id 131547 mac 131547 bytes_out 0 131547 bytes_in 0 131547 station_ip 37.129.23.0 131547 port 167 131547 unique_id port 131548 username mohammadjavad 131548 mac 131548 bytes_out 0 131548 bytes_in 0 131548 station_ip 83.122.193.186 131548 port 249 131548 unique_id port 131548 remote_ip 10.8.0.142 131549 username hosseine 131549 kill_reason Another user logged on this global unique id 131549 mac 131549 bytes_out 0 131549 bytes_in 0 131549 station_ip 37.129.23.0 131549 port 167 131549 unique_id port 131550 username mehdizare 131550 mac 131550 bytes_out 60042 131550 bytes_in 54074 131550 station_ip 5.120.78.164 131550 port 168 131550 unique_id port 131550 remote_ip 10.8.1.42 131553 username barzegar 131553 kill_reason Another user logged on this global unique id 131553 mac 131553 bytes_out 0 131553 bytes_in 0 131553 station_ip 5.120.57.60 131553 port 169 131553 unique_id port 131553 remote_ip 10.8.1.174 131554 username mehdizare 131554 mac 131554 bytes_out 0 131554 bytes_in 0 131554 station_ip 5.120.78.164 131554 port 168 131554 unique_id port 131554 remote_ip 10.8.1.42 131557 username barzegar 131557 mac 131557 bytes_out 0 131557 bytes_in 0 131557 station_ip 5.120.57.60 131557 port 169 131557 unique_id port 131557 remote_ip 10.8.1.174 131559 username alihosseini1 131559 mac 131559 bytes_out 26102 131559 bytes_in 127928 131559 station_ip 5.120.17.199 131559 port 172 131559 unique_id port 131559 remote_ip 10.8.1.106 131560 username barzegar 131560 mac 131560 bytes_out 0 131560 bytes_in 0 131560 station_ip 5.120.57.60 131560 port 169 131560 unique_id port 131560 remote_ip 10.8.1.174 131562 username aminvpn 131562 mac 131562 bytes_out 0 131562 bytes_in 0 131562 station_ip 5.119.37.37 131562 port 271 131562 unique_id port 131562 remote_ip 10.8.0.14 131575 username barzegar 131575 mac 131575 bytes_out 0 131575 bytes_in 0 131558 remote_ip 10.8.0.14 131563 username aminvpn 131563 mac 131563 bytes_out 0 131563 bytes_in 0 131563 station_ip 37.129.95.158 131563 port 273 131563 unique_id port 131563 remote_ip 10.8.0.14 131569 username amir 131569 mac 131569 bytes_out 0 131569 bytes_in 0 131569 station_ip 46.225.209.99 131569 port 249 131569 unique_id port 131569 remote_ip 10.8.0.50 131572 username aminvpn 131572 mac 131572 bytes_out 0 131572 bytes_in 0 131572 station_ip 5.119.37.37 131572 port 249 131572 unique_id port 131572 remote_ip 10.8.0.14 131573 username aminvpn 131573 mac 131573 bytes_out 0 131573 bytes_in 0 131573 station_ip 37.129.95.158 131573 port 258 131573 unique_id port 131573 remote_ip 10.8.0.14 131584 username barzegar 131584 mac 131584 bytes_out 0 131584 bytes_in 0 131584 station_ip 5.120.57.60 131584 port 169 131584 unique_id port 131584 remote_ip 10.8.1.174 131588 username alihosseini1 131588 mac 131588 bytes_out 309097 131588 bytes_in 3230948 131588 station_ip 5.120.32.235 131588 port 169 131588 unique_id port 131588 remote_ip 10.8.1.106 131592 username tahmasebi 131592 mac 131592 bytes_out 0 131592 bytes_in 0 131592 station_ip 5.120.145.77 131592 port 264 131592 unique_id port 131593 username barzegar 131593 mac 131593 bytes_out 0 131593 bytes_in 0 131593 station_ip 5.120.57.60 131593 port 249 131593 unique_id port 131593 remote_ip 10.8.0.234 131595 username morteza 131595 mac 131595 bytes_out 0 131595 bytes_in 0 131595 station_ip 37.129.11.164 131595 port 273 131595 unique_id port 131595 remote_ip 10.8.0.46 131596 username aminvpn 131596 mac 131596 bytes_out 495116 131596 bytes_in 2309464 131596 station_ip 37.129.95.158 131596 port 272 131596 unique_id port 131596 remote_ip 10.8.0.14 131599 username mosi 131599 kill_reason Another user logged on this global unique id 131599 mac 131599 bytes_out 0 131599 bytes_in 0 131599 station_ip 151.235.72.123 131599 port 252 131599 unique_id port 131602 username farhad2 131602 mac 131602 bytes_out 0 131602 bytes_in 0 131602 station_ip 5.120.5.180 131602 port 262 131602 unique_id port 131602 remote_ip 10.8.0.190 131603 username aminvpn 131603 mac 131603 bytes_out 0 131603 bytes_in 0 131603 station_ip 37.129.95.158 131603 port 249 131603 unique_id port 131603 remote_ip 10.8.0.14 131604 username amir 131604 mac 131604 bytes_out 0 131604 bytes_in 0 131604 station_ip 46.225.209.99 131604 port 271 131604 unique_id port 131604 remote_ip 10.8.0.50 131606 username godarzi 131606 mac 131606 bytes_out 0 131606 bytes_in 0 131606 station_ip 5.202.6.3 131606 port 256 131606 unique_id port 131606 remote_ip 10.8.0.174 131610 username barzegar 131610 mac 131610 bytes_out 0 131610 bytes_in 0 131610 station_ip 5.120.57.60 131610 port 167 131610 unique_id port 131610 remote_ip 10.8.1.174 131614 username saeed9658 131614 mac 131614 bytes_out 2564588 131614 bytes_in 15718207 131614 station_ip 5.119.37.114 131614 port 172 131614 unique_id port 131614 remote_ip 10.8.1.210 131615 username saeed9658 131615 mac 131615 bytes_out 0 131615 bytes_in 0 131615 station_ip 5.119.37.114 131615 port 167 131615 unique_id port 131615 remote_ip 10.8.1.210 131617 username morteza 131617 mac 131617 bytes_out 0 131617 bytes_in 0 131617 station_ip 37.129.11.164 131617 port 249 131617 unique_id port 131617 remote_ip 10.8.0.46 131622 username alihosseini1 131622 mac 131622 bytes_out 0 131575 station_ip 5.120.57.60 131575 port 169 131575 unique_id port 131575 remote_ip 10.8.1.174 131576 username barzegar 131576 mac 131576 bytes_out 0 131576 bytes_in 0 131576 station_ip 5.120.57.60 131576 port 169 131576 unique_id port 131576 remote_ip 10.8.1.174 131577 username aminvpn 131577 mac 131577 bytes_out 0 131577 bytes_in 0 131577 station_ip 5.119.37.37 131577 port 249 131577 unique_id port 131577 remote_ip 10.8.0.14 131578 username aminvpn 131578 mac 131578 bytes_out 0 131578 bytes_in 0 131578 station_ip 37.129.95.158 131578 port 258 131578 unique_id port 131578 remote_ip 10.8.0.14 131581 username tahmasebi 131581 kill_reason Another user logged on this global unique id 131581 mac 131581 bytes_out 0 131581 bytes_in 0 131581 station_ip 5.120.145.77 131581 port 264 131581 unique_id port 131583 username jafari 131583 kill_reason Another user logged on this global unique id 131583 mac 131583 bytes_out 0 131583 bytes_in 0 131583 station_ip 5.134.158.215 131583 port 265 131583 unique_id port 131585 username jafari 131585 kill_reason Another user logged on this global unique id 131585 mac 131585 bytes_out 0 131585 bytes_in 0 131585 station_ip 5.134.158.215 131585 port 265 131585 unique_id port 131587 username khalili 131587 kill_reason Another user logged on this global unique id 131587 mac 131587 bytes_out 0 131587 bytes_in 0 131587 station_ip 5.119.131.147 131587 port 259 131587 unique_id port 131587 remote_ip 10.8.0.86 131589 username barzegar 131589 mac 131589 bytes_out 0 131589 bytes_in 0 131589 station_ip 5.120.57.60 131589 port 169 131589 unique_id port 131589 remote_ip 10.8.1.174 131591 username mahdiyehalizadeh 131591 mac 131591 bytes_out 0 131591 bytes_in 0 131591 station_ip 83.122.214.204 131591 port 249 131591 unique_id port 131591 remote_ip 10.8.0.82 131597 username godarzi 131597 mac 131597 bytes_out 0 131597 bytes_in 0 131597 station_ip 5.202.6.3 131597 port 258 131597 unique_id port 131597 remote_ip 10.8.0.174 131598 username barzegar 131598 mac 131598 bytes_out 0 131598 bytes_in 0 131598 station_ip 5.120.57.60 131598 port 258 131598 unique_id port 131598 remote_ip 10.8.0.234 131607 username mansur 131607 mac 131607 bytes_out 404989 131607 bytes_in 7120435 131607 station_ip 5.120.107.178 131607 port 256 131607 unique_id port 131607 remote_ip 10.8.0.210 131611 username morteza 131611 mac 131611 bytes_out 1511885 68364 username arezoo 68364 kill_reason Maximum check online fails reached 68364 mac 5.237.64.251:49227: Unknown host 68364 bytes_out 0 68364 bytes_in 0 68364 station_ip 5.237.64.251:49227 68364 port 1017 68364 unique_id port 131611 bytes_in 26988580 131611 station_ip 37.129.11.164 131611 port 249 131611 unique_id port 131611 remote_ip 10.8.0.46 131613 username mosi 131613 kill_reason Another user logged on this global unique id 131613 mac 131613 bytes_out 0 131613 bytes_in 0 131613 station_ip 151.235.72.123 131613 port 252 131613 unique_id port 131616 username alihosseini1 131616 mac 131616 bytes_out 894040 131616 bytes_in 3550025 131616 station_ip 5.120.179.81 131616 port 169 131616 unique_id port 131616 remote_ip 10.8.1.106 131618 username alihosseini1 131618 mac 131618 bytes_out 0 131618 bytes_in 0 131618 station_ip 5.120.179.81 131618 port 258 131618 unique_id port 131618 remote_ip 10.8.0.166 131624 username barzegar 131624 mac 131624 bytes_out 0 131624 bytes_in 0 131624 station_ip 5.120.57.60 131624 port 169 131624 unique_id port 131624 remote_ip 10.8.1.174 131626 username jafari 131582 remote_ip 10.8.0.14 131586 username mohammadmahdi 131586 mac 131586 bytes_out 0 131586 bytes_in 0 131586 station_ip 5.119.148.186 131586 port 262 131586 unique_id port 131590 username vanila 131590 mac 131590 bytes_out 0 131590 bytes_in 0 131590 station_ip 83.123.205.138 131590 port 262 131590 unique_id port 131590 remote_ip 10.8.0.178 131594 username jafari 131594 kill_reason Another user logged on this global unique id 131594 mac 131594 bytes_out 0 131594 bytes_in 0 131594 station_ip 5.134.158.215 131594 port 265 131594 unique_id port 68321 username vahid 68321 kill_reason Maximum check online fails reached 68321 mac 31.2.153.103:11068: Unknown host 68321 bytes_out 0 68321 bytes_in 0 68321 station_ip 31.2.153.103:11068 68321 port 1017 68321 unique_id port 131600 username farhad2 131600 mac 131600 bytes_out 0 131600 bytes_in 0 131600 station_ip 5.120.5.180 131600 port 256 131600 unique_id port 131601 username morteza 131601 mac 131601 bytes_out 1260291 131601 bytes_in 21766346 131601 station_ip 37.129.11.164 131601 port 169 131601 unique_id port 131601 remote_ip 10.8.1.62 131605 username farhad2 131605 kill_reason Maximum check online fails reached 131605 mac 131605 bytes_out 0 131605 bytes_in 0 131605 station_ip 5.120.5.180 131605 port 262 131605 unique_id port 131608 username hosseine 131608 mac 131608 bytes_out 0 131608 bytes_in 0 131608 station_ip 37.129.23.0 131608 port 167 131608 unique_id port 131609 username mohammadmahdi 131609 mac 131609 bytes_out 1769554 131609 bytes_in 22481648 131609 station_ip 5.119.148.186 131609 port 258 131609 unique_id port 131609 remote_ip 10.8.0.54 131612 username jafari 131612 kill_reason Another user logged on this global unique id 131612 mac 131612 bytes_out 0 131612 bytes_in 0 131612 station_ip 5.134.158.215 131612 port 265 131612 unique_id port 131619 username alireza 131619 unique_id port 131619 terminate_cause User-Request 131619 bytes_out 1545848 131619 bytes_in 24284561 131619 station_ip 5.120.1.250 131619 port 15730304 131619 nas_port_type Virtual 131619 remote_ip 5.5.5.195 131620 username alihosseini1 131620 mac 131620 bytes_out 0 131620 bytes_in 0 131620 station_ip 5.120.179.81 131620 port 258 131620 unique_id port 131620 remote_ip 10.8.0.166 131621 username alihosseini1 131621 mac 131621 bytes_out 0 131621 bytes_in 0 131621 station_ip 5.120.179.81 131621 port 258 131621 unique_id port 131621 remote_ip 10.8.0.166 131629 username vanila 131629 mac 131629 bytes_out 0 131629 bytes_in 0 131629 station_ip 83.123.205.138 131629 port 258 131629 unique_id port 131629 remote_ip 10.8.0.178 131636 username saeed9658 131636 mac 131636 bytes_out 0 131636 bytes_in 0 131636 station_ip 5.119.37.114 131636 port 167 131636 unique_id port 131638 username godarzi 131638 mac 131638 bytes_out 0 131638 bytes_in 0 131638 station_ip 5.202.6.3 131638 port 264 131638 unique_id port 131638 remote_ip 10.8.0.174 131639 username saeed9658 131639 mac 131639 bytes_out 0 131639 bytes_in 0 131639 station_ip 5.119.37.114 131639 port 256 131639 unique_id port 131639 remote_ip 10.8.0.62 131640 username morteza 131640 kill_reason Another user logged on this global unique id 131640 mac 131640 bytes_out 0 131640 bytes_in 0 131640 station_ip 37.129.11.164 131640 port 249 131640 unique_id port 131653 username aminvpn 131653 unique_id port 131653 terminate_cause Lost-Carrier 131653 bytes_out 2143512 131653 bytes_in 23545696 131653 station_ip 5.119.37.37 131653 port 15730305 131653 nas_port_type Virtual 131653 remote_ip 5.5.5.201 131622 bytes_in 0 131622 station_ip 5.120.179.81 131622 port 271 131622 unique_id port 131622 remote_ip 10.8.0.166 131623 username alihosseini1 131623 mac 131623 bytes_out 0 131623 bytes_in 0 131623 station_ip 5.120.179.81 131623 port 271 131623 unique_id port 131623 remote_ip 10.8.0.166 131625 username morteza 131625 kill_reason Another user logged on this global unique id 131625 mac 131625 bytes_out 0 131625 bytes_in 0 131625 station_ip 37.129.11.164 131625 port 249 131625 unique_id port 131625 remote_ip 10.8.0.46 131627 username zare 131627 mac 131627 bytes_out 0 131627 bytes_in 0 131627 station_ip 94.183.214.14 131627 port 169 131627 unique_id port 131627 remote_ip 10.8.1.58 131630 username jafari 131630 mac 131630 bytes_out 0 131630 bytes_in 0 131630 station_ip 5.134.158.215 131630 port 265 131630 unique_id port 131632 username mosi 131632 kill_reason Another user logged on this global unique id 131632 mac 131632 bytes_out 0 131632 bytes_in 0 131632 station_ip 151.235.72.123 131632 port 252 131632 unique_id port 131634 username morteza 131634 kill_reason Another user logged on this global unique id 131634 mac 131634 bytes_out 0 131634 bytes_in 0 131634 station_ip 37.129.11.164 131634 port 249 131634 unique_id port 131637 username amir 131637 mac 131637 bytes_out 0 131637 bytes_in 0 131637 station_ip 46.225.209.99 131637 port 256 131637 unique_id port 131637 remote_ip 10.8.0.50 131642 username barzegar 131642 mac 131642 bytes_out 5927 131642 bytes_in 7696 131642 station_ip 5.120.57.60 131642 port 256 131642 unique_id port 131642 remote_ip 10.8.0.234 131645 username zare 131645 mac 131645 bytes_out 0 131645 bytes_in 0 131645 station_ip 94.183.214.14 131645 port 273 131645 unique_id port 131645 remote_ip 10.8.0.18 131647 username barzegar 131647 mac 131647 bytes_out 2695 131647 bytes_in 5256 131647 station_ip 5.120.57.60 131647 port 264 131647 unique_id port 131647 remote_ip 10.8.0.234 131650 username sedighe 131650 mac 131650 bytes_out 395334 131650 bytes_in 2935167 131650 station_ip 83.122.103.230 131650 port 271 131650 unique_id port 131650 remote_ip 10.8.0.146 131654 username zare 131654 mac 131654 bytes_out 0 131654 bytes_in 0 131654 station_ip 94.183.214.14 131654 port 258 131654 unique_id port 131654 remote_ip 10.8.0.18 131659 username zare 131659 mac 131659 bytes_out 0 131659 bytes_in 0 131659 station_ip 94.183.214.14 131659 port 256 131659 unique_id port 131659 remote_ip 10.8.0.18 131662 username morteza 131662 kill_reason Another user logged on this global unique id 131662 mac 131662 bytes_out 0 131662 bytes_in 0 131662 station_ip 37.129.11.164 131662 port 249 131662 unique_id port 131664 username morteza 131664 kill_reason Another user logged on this global unique id 131664 mac 131664 bytes_out 0 131664 bytes_in 0 131664 station_ip 37.129.11.164 131664 port 249 131664 unique_id port 131665 username barzegar 131665 mac 131665 bytes_out 0 131665 bytes_in 0 131665 station_ip 5.120.57.60 131665 port 264 131665 unique_id port 131665 remote_ip 10.8.0.234 131667 username mostafa_es78 131667 unique_id port 131667 terminate_cause User-Request 131667 bytes_out 258 131667 bytes_in 190 131667 station_ip 5.126.100.167 131667 port 15730307 131667 nas_port_type Virtual 131667 remote_ip 5.5.5.211 131669 username mosi 131669 kill_reason Another user logged on this global unique id 131669 mac 131669 bytes_out 0 131669 bytes_in 0 131669 station_ip 151.235.72.123 131669 port 252 131669 unique_id port 131671 username tahmasebi 131626 kill_reason Another user logged on this global unique id 131626 mac 131626 bytes_out 0 131626 bytes_in 0 131626 station_ip 5.134.158.215 131626 port 265 131626 unique_id port 131628 username barzegar 131628 mac 131628 bytes_out 0 131628 bytes_in 0 131628 station_ip 5.120.57.60 131628 port 272 131628 unique_id port 131628 remote_ip 10.8.0.234 131631 username saeed9658 131631 kill_reason Another user logged on this global unique id 131631 mac 131631 bytes_out 0 131631 bytes_in 0 131631 station_ip 5.119.37.114 131631 port 167 131631 unique_id port 131631 remote_ip 10.8.1.210 131633 username alipour 131633 mac 131633 bytes_out 1995459 131633 bytes_in 17178717 131633 station_ip 37.129.67.179 131633 port 241 131633 unique_id port 131633 remote_ip 10.8.0.102 131635 username alipour 131635 kill_reason Maximum check online fails reached 131635 mac 131635 bytes_out 0 131635 bytes_in 0 131635 station_ip 37.129.67.179 131635 port 241 131635 unique_id port 131641 username mosi 131641 kill_reason Another user logged on this global unique id 131641 mac 131641 bytes_out 0 131641 bytes_in 0 131641 station_ip 151.235.72.123 131641 port 252 131641 unique_id port 131643 username sabaghnezhad 131643 mac 131643 bytes_out 297083 131643 bytes_in 311074 131643 station_ip 37.129.79.105 131643 port 171 131643 unique_id port 131643 remote_ip 10.8.1.130 131644 username sabaghnezhad 131644 mac 131644 bytes_out 0 131644 bytes_in 0 131644 station_ip 37.129.79.105 131644 port 167 131644 unique_id port 131644 remote_ip 10.8.1.130 131646 username zare 131646 mac 131646 bytes_out 0 131646 bytes_in 0 131646 station_ip 94.183.214.14 131646 port 258 131646 unique_id port 131646 remote_ip 10.8.0.18 131648 username morteza 131648 kill_reason Another user logged on this global unique id 131648 mac 131648 bytes_out 0 131648 bytes_in 0 131648 station_ip 37.129.11.164 131648 port 249 131648 unique_id port 131649 username zare 131649 mac 131649 bytes_out 0 131649 bytes_in 0 131649 station_ip 94.183.214.14 131649 port 258 131649 unique_id port 131649 remote_ip 10.8.0.18 131651 username zare 131651 mac 131651 bytes_out 0 131651 bytes_in 0 131651 station_ip 94.183.214.14 131651 port 258 131651 unique_id port 131651 remote_ip 10.8.0.18 131652 username barzegar 131652 mac 131652 bytes_out 0 131652 bytes_in 0 131652 station_ip 5.120.57.60 131652 port 167 131652 unique_id port 131652 remote_ip 10.8.1.174 131656 username zare 131656 mac 131656 bytes_out 0 131656 bytes_in 0 131656 station_ip 94.183.214.14 131656 port 258 131656 unique_id port 131656 remote_ip 10.8.0.18 131657 username barzegar 131657 mac 131657 bytes_out 0 131657 bytes_in 0 131657 station_ip 5.120.57.60 131657 port 167 131657 unique_id port 131657 remote_ip 10.8.1.174 131668 username zare 131668 mac 131668 bytes_out 0 131668 bytes_in 0 131668 station_ip 94.183.214.14 131668 port 256 131668 unique_id port 131668 remote_ip 10.8.0.18 131670 username barzegar 131670 mac 131670 bytes_out 0 131670 bytes_in 0 131670 station_ip 5.120.57.60 131670 port 265 131670 unique_id port 131670 remote_ip 10.8.0.234 131678 username tahmasebi 131678 kill_reason Another user logged on this global unique id 131678 mac 131678 bytes_out 0 131678 bytes_in 0 131678 station_ip 5.120.117.210 131678 port 256 131678 unique_id port 131679 username barzegar 131679 mac 131679 bytes_out 17268 131679 bytes_in 37294 131679 station_ip 5.120.57.60 131679 port 167 131679 unique_id port 131679 remote_ip 10.8.1.174 131655 username sabaghnezhad 131655 mac 131655 bytes_out 13505 131655 bytes_in 17888 131655 station_ip 37.129.79.105 131655 port 256 131655 unique_id port 131655 remote_ip 10.8.0.186 131658 username vanila 131658 mac 131658 bytes_out 0 131658 bytes_in 0 131658 station_ip 83.123.205.138 131658 port 272 131658 unique_id port 131658 remote_ip 10.8.0.178 131660 username zare 131660 mac 131660 bytes_out 0 131660 bytes_in 0 131660 station_ip 94.183.214.14 131660 port 256 131660 unique_id port 131660 remote_ip 10.8.0.18 131661 username amir 131661 mac 131661 bytes_out 0 131661 bytes_in 0 131661 station_ip 46.225.209.99 131661 port 264 131661 unique_id port 131661 remote_ip 10.8.0.50 131663 username barzegar 131663 mac 131663 bytes_out 0 131663 bytes_in 0 131663 station_ip 5.120.57.60 131663 port 167 131663 unique_id port 131663 remote_ip 10.8.1.174 131666 username morteza 131666 kill_reason Another user logged on this global unique id 131666 mac 131666 bytes_out 0 131666 bytes_in 0 131666 station_ip 37.129.11.164 131666 port 249 131666 unique_id port 131672 username amir 131672 mac 131672 bytes_out 588670 131672 bytes_in 3910246 131672 station_ip 46.225.209.99 131672 port 264 131672 unique_id port 131672 remote_ip 10.8.0.50 131673 username barzegar 131673 mac 131673 bytes_out 0 131673 bytes_in 0 131673 station_ip 5.120.57.60 131673 port 167 131673 unique_id port 131673 remote_ip 10.8.1.174 131675 username malekpoir 131675 mac 131675 bytes_out 2701421 131675 bytes_in 30496630 131675 station_ip 5.119.161.16 131675 port 258 131675 unique_id port 131675 remote_ip 10.8.0.58 131676 username godarzi 131676 mac 131676 bytes_out 852453 131676 bytes_in 17576711 131676 station_ip 5.202.6.3 131676 port 264 131676 unique_id port 131676 remote_ip 10.8.0.174 131677 username morteza 131677 kill_reason Another user logged on this global unique id 131677 mac 131677 bytes_out 0 131677 bytes_in 0 131677 station_ip 37.129.11.164 131677 port 249 131677 unique_id port 131680 username farhad2 131680 mac 131680 bytes_out 725148 131680 bytes_in 7184767 131680 station_ip 5.120.10.251 131680 port 265 131680 unique_id port 131680 remote_ip 10.8.0.190 131686 username zare 131686 mac 131686 bytes_out 0 131686 bytes_in 0 131686 station_ip 94.183.214.14 68411 username arezoo 68411 kill_reason Wrong password 68411 mac 5.237.64.251:49508: Unknown host 68411 bytes_out 0 68411 bytes_in 0 68411 station_ip 5.237.64.251:49508 68411 port 1017 68411 unique_id port 68412 username arezoo 68412 kill_reason Maximum check online fails reached 68412 mac 5.237.64.251:49513: Unknown host 68412 bytes_out 0 68412 bytes_in 0 68412 station_ip 5.237.64.251:49513 68412 port 1017 68412 unique_id port 131686 port 167 131686 unique_id port 131686 remote_ip 10.8.1.58 131690 username zare 131690 mac 131690 bytes_out 16457 131690 bytes_in 58694 131690 station_ip 94.183.214.14 131690 port 271 131690 unique_id port 131690 remote_ip 10.8.0.18 131691 username zare 131691 mac 131691 bytes_out 0 131691 bytes_in 0 131691 station_ip 94.183.214.14 131691 port 271 131691 unique_id port 131691 remote_ip 10.8.0.18 131695 username zare 131695 mac 131695 bytes_out 0 131695 bytes_in 0 131695 station_ip 94.183.214.14 131695 port 271 131695 unique_id port 131695 remote_ip 10.8.0.18 131699 username barzegar 131699 mac 131699 bytes_out 0 131699 bytes_in 0 131699 station_ip 5.120.57.60 131699 port 167 131699 unique_id port 131699 remote_ip 10.8.1.174 131671 kill_reason Another user logged on this global unique id 131671 mac 131671 bytes_out 0 131671 bytes_in 0 131671 station_ip 5.120.117.210 131671 port 256 131671 unique_id port 131671 remote_ip 10.8.0.42 131674 username mehdizare 131674 mac 131674 bytes_out 0 131674 bytes_in 0 131674 station_ip 5.120.78.164 131674 port 168 131674 unique_id port 131674 remote_ip 10.8.1.42 131683 username tahmasebi 131683 kill_reason Another user logged on this global unique id 131683 mac 131683 bytes_out 0 131683 bytes_in 0 68421 username vahid 68421 kill_reason Maximum check online fails reached 68421 mac 89.199.255.116:10734: Unknown host 68421 bytes_out 0 68421 bytes_in 0 68421 station_ip 89.199.255.116:10734 68421 port 1017 68421 unique_id port 131683 station_ip 5.120.117.210 131683 port 256 131683 unique_id port 131687 username barzegar 131687 mac 131687 bytes_out 0 131687 bytes_in 0 131687 station_ip 5.120.57.60 131687 port 168 131687 unique_id port 131687 remote_ip 10.8.1.174 131688 username zare 131688 mac 131688 bytes_out 0 131688 bytes_in 0 131688 station_ip 94.183.214.14 131688 port 271 131688 unique_id port 131688 remote_ip 10.8.0.18 131689 username morteza 131689 kill_reason Another user logged on this global unique id 131689 mac 131689 bytes_out 0 131689 bytes_in 0 131689 station_ip 37.129.11.164 131689 port 249 131689 unique_id port 131692 username mostafa_es78 131692 unique_id port 131692 terminate_cause User-Request 131692 bytes_out 300520 131692 bytes_in 1904670 131692 station_ip 5.126.100.167 131692 port 15730309 131692 nas_port_type Virtual 131692 remote_ip 5.5.5.220 131693 username zare 131693 mac 131693 bytes_out 0 131693 bytes_in 0 131693 station_ip 94.183.214.14 131693 port 271 131693 unique_id port 131693 remote_ip 10.8.0.18 131696 username zare 131696 mac 131696 bytes_out 0 131696 bytes_in 0 131696 station_ip 94.183.214.14 131696 port 271 131696 unique_id port 131696 remote_ip 10.8.0.18 131700 username morteza 131700 kill_reason Another user logged on this global unique id 131700 mac 131700 bytes_out 0 131700 bytes_in 0 131700 station_ip 37.129.11.164 131700 port 249 131700 unique_id port 131705 username vanila 131705 mac 131705 bytes_out 9148338 131705 bytes_in 937529 131705 station_ip 83.122.30.168 131705 port 272 131705 unique_id port 131705 remote_ip 10.8.0.178 131706 username zare 131706 mac 131706 bytes_out 0 131706 bytes_in 0 131706 station_ip 94.183.214.14 131706 port 272 131706 unique_id port 131706 remote_ip 10.8.0.18 131707 username zare 131707 mac 131707 bytes_out 29572 131707 bytes_in 128487 131707 station_ip 94.183.214.14 131707 port 272 131707 unique_id port 131707 remote_ip 10.8.0.18 131712 username barzegar 131712 mac 131712 bytes_out 0 131712 bytes_in 0 131712 station_ip 5.120.57.60 131712 port 167 131712 unique_id port 131712 remote_ip 10.8.1.174 131716 username zare 131716 mac 131716 bytes_out 0 131716 bytes_in 0 131716 station_ip 94.183.214.14 131716 port 274 131716 unique_id port 131716 remote_ip 10.8.0.18 131717 username farhad2 131717 kill_reason Another user logged on this global unique id 131717 mac 131717 bytes_out 0 131717 bytes_in 0 131717 station_ip 5.120.10.251 131717 port 264 131717 unique_id port 131717 remote_ip 10.8.0.190 131721 username farhad2 131721 mac 131721 bytes_out 0 131721 bytes_in 0 131721 station_ip 5.120.10.251 131721 port 264 131721 unique_id port 131724 username farhad2 131724 mac 131724 bytes_out 0 131724 bytes_in 0 131724 station_ip 5.120.10.251 131724 port 264 131681 username farhad2 131681 mac 131681 bytes_out 0 131681 bytes_in 0 131681 station_ip 5.120.10.251 131681 port 264 131681 unique_id port 131681 remote_ip 10.8.0.190 131682 username farhad2 131682 mac 131682 bytes_out 0 131682 bytes_in 0 131682 station_ip 5.120.10.251 131682 port 264 131682 unique_id port 131682 remote_ip 10.8.0.190 131684 username morteza 131684 kill_reason Another user logged on this global unique id 131684 mac 131684 bytes_out 0 131684 bytes_in 0 131684 station_ip 37.129.11.164 131684 port 249 131684 unique_id port 131685 username zare 131685 mac 131685 bytes_out 182823 131685 bytes_in 792611 131685 station_ip 94.183.214.14 131685 port 271 131685 unique_id port 131685 remote_ip 10.8.0.18 131694 username zare 131694 mac 131694 bytes_out 0 131694 bytes_in 0 131694 station_ip 94.183.214.14 131694 port 271 131694 unique_id port 131694 remote_ip 10.8.0.18 131697 username zare 131697 mac 131697 bytes_out 0 131697 bytes_in 0 131697 station_ip 94.183.214.14 131697 port 271 131697 unique_id port 131697 remote_ip 10.8.0.18 131698 username zare 131698 mac 131698 bytes_out 0 131698 bytes_in 0 131698 station_ip 94.183.214.14 131698 port 271 131698 unique_id port 131698 remote_ip 10.8.0.18 131702 username zare 131702 mac 131702 bytes_out 0 131702 bytes_in 0 131702 station_ip 94.183.214.14 131702 port 271 131702 unique_id port 131702 remote_ip 10.8.0.18 131703 username zare 131703 mac 131703 bytes_out 0 131703 bytes_in 0 131703 station_ip 94.183.214.14 131703 port 271 131703 unique_id port 131703 remote_ip 10.8.0.18 131704 username zare 131704 mac 131704 bytes_out 0 131704 bytes_in 0 131704 station_ip 94.183.214.14 131704 port 271 131704 unique_id port 131704 remote_ip 10.8.0.18 131713 username godarzi 131713 mac 131713 bytes_out 322837 131713 bytes_in 2728680 131713 station_ip 5.119.100.88 131713 port 271 131713 unique_id port 131713 remote_ip 10.8.0.174 131722 username amir 131722 kill_reason Another user logged on this global unique id 131722 mac 131722 bytes_out 0 131722 bytes_in 0 131722 station_ip 46.225.209.99 131722 port 265 131722 unique_id port 131722 remote_ip 10.8.0.50 131723 username zare 131723 mac 131723 bytes_out 0 131723 bytes_in 0 131723 station_ip 94.183.214.14 131723 port 271 131723 unique_id port 131723 remote_ip 10.8.0.18 131730 username morteza 131730 mac 131730 bytes_out 0 131730 bytes_in 0 131730 station_ip 37.129.11.164 131730 port 249 131730 unique_id port 131730 remote_ip 10.8.0.46 131733 username farhad2 131733 mac 131733 bytes_out 0 131733 bytes_in 0 131733 station_ip 5.120.10.251 131733 port 167 131733 unique_id port 131733 remote_ip 10.8.1.222 131741 username godarzi 131741 mac 131741 bytes_out 0 131741 bytes_in 0 131741 station_ip 5.119.100.88 131741 port 264 131741 unique_id port 131741 remote_ip 10.8.0.174 131743 username amir 131743 mac 131743 bytes_out 0 131743 bytes_in 0 131743 station_ip 46.225.209.99 131743 port 265 131743 unique_id port 131749 username morteza 131749 mac 131749 bytes_out 6982461 131749 bytes_in 1361216 131749 station_ip 37.129.11.164 131749 port 167 131749 unique_id port 131749 remote_ip 10.8.1.62 131752 username mosi 131752 kill_reason Another user logged on this global unique id 131752 mac 131752 bytes_out 0 131752 bytes_in 0 131752 station_ip 151.235.72.123 131752 port 252 131752 unique_id port 131755 username zare 131755 mac 131755 bytes_out 0 131701 username zare 131701 mac 131701 bytes_out 0 131701 bytes_in 0 131701 station_ip 94.183.214.14 131701 port 271 131701 unique_id port 131701 remote_ip 10.8.0.18 131708 username zare 131708 mac 131708 bytes_out 0 131708 bytes_in 0 131708 station_ip 94.183.214.14 131708 port 272 131708 unique_id port 131708 remote_ip 10.8.0.18 131709 username morteza 131709 kill_reason Another user logged on this global unique id 131709 mac 131709 bytes_out 0 131709 bytes_in 0 131709 station_ip 37.129.11.164 131709 port 249 131709 unique_id port 131710 username zare 131710 mac 131710 bytes_out 0 131710 bytes_in 0 131710 station_ip 94.183.214.14 131710 port 274 131710 unique_id port 131710 remote_ip 10.8.0.18 131711 username rahmani 131711 mac 131711 bytes_out 99978 131711 bytes_in 128267 131711 station_ip 113.203.126.243 131711 port 271 131711 unique_id port 131711 remote_ip 10.8.0.94 131714 username aminvpn 131714 unique_id port 131714 terminate_cause Lost-Carrier 131714 bytes_out 644208 131714 bytes_in 3507810 131714 station_ip 5.120.15.170 131714 port 15730311 131714 nas_port_type Virtual 131714 remote_ip 5.5.5.254 131715 username morteza 131715 kill_reason Another user logged on this global unique id 131715 mac 131715 bytes_out 0 131715 bytes_in 0 131715 station_ip 37.129.11.164 131715 port 249 131715 unique_id port 131718 username zare 131718 mac 131718 bytes_out 0 131718 bytes_in 0 131718 station_ip 94.183.214.14 131718 port 271 131718 unique_id port 131718 remote_ip 10.8.0.18 131719 username zare 131719 mac 131719 bytes_out 0 131719 bytes_in 0 131719 station_ip 94.183.214.14 131719 port 271 131719 unique_id port 131719 remote_ip 10.8.0.18 131720 username zare 131720 mac 131720 bytes_out 0 131720 bytes_in 0 131720 station_ip 94.183.214.14 131720 port 271 131720 unique_id port 131720 remote_ip 10.8.0.18 131725 username zare 131725 mac 131725 bytes_out 0 131725 bytes_in 0 131725 station_ip 94.183.214.14 131725 port 264 131725 unique_id port 131725 remote_ip 10.8.0.18 131726 username mohsenaskari 131726 mac 131726 bytes_out 0 131726 bytes_in 0 131726 station_ip 83.123.164.238 131726 port 264 131726 unique_id port 131726 remote_ip 10.8.0.246 131729 username morteza 131729 mac 131729 bytes_out 0 131729 bytes_in 0 131729 station_ip 37.129.11.164 131729 port 167 131729 unique_id port 131729 remote_ip 10.8.1.62 131731 username mohsenaskari 131731 mac 131731 bytes_out 242395 131731 bytes_in 2440192 131731 station_ip 46.225.213.183 131731 port 274 131731 unique_id port 131731 remote_ip 10.8.0.246 131735 username barzegar 131735 mac 131735 bytes_out 0 131735 bytes_in 0 131735 station_ip 5.120.57.60 131735 port 249 131735 unique_id port 131735 remote_ip 10.8.0.234 131737 username morteza 131737 mac 131737 bytes_out 8948722 131737 bytes_in 390219 131737 station_ip 37.129.11.164 131737 port 168 131737 unique_id port 131737 remote_ip 10.8.1.62 131738 username aminvpn 131738 unique_id port 131738 terminate_cause Lost-Carrier 131738 bytes_out 2833787 131738 bytes_in 39081158 131738 station_ip 5.120.15.170 131738 port 15730312 131738 nas_port_type Virtual 131738 remote_ip 5.5.5.254 131742 username alireza 131742 unique_id port 131742 terminate_cause Lost-Carrier 131742 bytes_out 1966481 131742 bytes_in 19247519 131742 station_ip 5.120.1.250 131742 port 15730310 131742 nas_port_type Virtual 131742 remote_ip 5.5.5.255 131744 username zare 131744 mac 131744 bytes_out 223246 131744 bytes_in 792527 131744 station_ip 94.183.214.14 131724 unique_id port 131724 remote_ip 10.8.0.190 131727 username morteza 131727 mac 131727 bytes_out 0 131727 bytes_in 0 131727 station_ip 37.129.11.164 131727 port 249 131727 unique_id port 131728 username morteza 131728 mac 131728 bytes_out 0 131728 bytes_in 0 131728 station_ip 37.129.11.164 131728 port 167 131728 unique_id port 131728 remote_ip 10.8.1.62 131732 username morteza 131732 mac 131732 bytes_out 0 68455 username vahid 68455 kill_reason Maximum check online fails reached 68455 mac 89.199.30.215:10681: Unknown host 68455 bytes_out 0 68455 bytes_in 0 68455 station_ip 89.199.30.215:10681 68455 port 1017 68455 unique_id port 131732 bytes_in 0 131732 station_ip 37.129.11.164 131732 port 249 131732 unique_id port 131732 remote_ip 10.8.0.46 131734 username farhad2 131734 mac 131734 bytes_out 0 131734 bytes_in 0 131734 station_ip 5.120.10.251 131734 port 249 131734 unique_id port 131734 remote_ip 10.8.0.190 131736 username godarzi 131736 mac 131736 bytes_out 0 131736 bytes_in 0 131736 station_ip 5.119.100.88 131736 port 264 131736 unique_id port 131736 remote_ip 10.8.0.174 131739 username morteza 131739 mac 131739 bytes_out 0 131739 bytes_in 0 131739 station_ip 37.129.11.164 131739 port 167 131739 unique_id port 131739 remote_ip 10.8.1.62 131740 username barzegar 131740 mac 131740 bytes_out 0 131740 bytes_in 0 131740 station_ip 5.120.57.60 131740 port 168 131740 unique_id port 131740 remote_ip 10.8.1.174 131745 username mosi 131745 kill_reason Another user logged on this global unique id 131745 mac 131745 bytes_out 0 131745 bytes_in 0 131745 station_ip 151.235.72.123 131745 port 252 131745 unique_id port 131747 username vanila 131747 mac 131747 bytes_out 2967721 131747 bytes_in 16688960 131747 station_ip 83.122.30.168 131747 port 273 131747 unique_id port 131747 remote_ip 10.8.0.178 131750 username barzegar 131750 mac 131750 bytes_out 2415 131750 bytes_in 4996 131750 station_ip 5.120.57.60 131750 port 169 131750 unique_id port 131750 remote_ip 10.8.1.174 131751 username godarzi 131751 mac 131751 bytes_out 0 131751 bytes_in 0 131751 station_ip 5.119.100.88 131751 port 274 131751 unique_id port 131751 remote_ip 10.8.0.174 131754 username farhad2 131754 kill_reason Another user logged on this global unique id 131754 mac 131754 bytes_out 0 131754 bytes_in 0 131754 station_ip 5.120.10.251 131754 port 249 131754 unique_id port 131754 remote_ip 10.8.0.190 131757 username mosi 131757 kill_reason Another user logged on this global unique id 131757 mac 131757 bytes_out 0 131757 bytes_in 0 131757 station_ip 151.235.72.123 131757 port 252 131757 unique_id port 131766 username amin.saeedi 131766 unique_id port 131766 terminate_cause User-Request 131766 bytes_out 14509182 131766 bytes_in 647247922 131766 station_ip 31.59.40.119 131766 port 15730308 131766 nas_port_type Virtual 131766 remote_ip 5.5.5.218 131767 username zare 131767 mac 131767 bytes_out 0 131767 bytes_in 0 131767 station_ip 94.183.214.14 131767 port 264 131767 unique_id port 131767 remote_ip 10.8.0.18 131776 username godarzi 131776 mac 131776 bytes_out 0 131776 bytes_in 0 131776 station_ip 5.119.100.88 131776 port 264 131776 unique_id port 131776 remote_ip 10.8.0.174 131781 username mehdizare 131781 mac 131781 bytes_out 0 131781 bytes_in 0 131781 station_ip 5.120.78.164 131781 port 172 131781 unique_id port 131781 remote_ip 10.8.1.42 131782 username farhad2 131782 mac 131782 bytes_out 246685 131782 bytes_in 995733 131782 station_ip 5.120.10.251 131744 port 271 131744 unique_id port 131744 remote_ip 10.8.0.18 131746 username amir 131746 mac 131746 bytes_out 152437 68485 username arezoo 68485 kill_reason Relative expiration date has reached 68485 mac 5.237.64.251:49201: Unknown host 68485 bytes_out 0 68485 bytes_in 0 68485 station_ip 5.237.64.251:49201 68485 port 1017 68485 unique_id port 68488 username arezoo 68488 kill_reason Relative expiration date has reached 68488 mac 5.237.64.251:51695: Unknown host 68488 bytes_out 0 68488 bytes_in 0 68488 station_ip 5.237.64.251:51695 68488 port 1017 68488 unique_id port 68491 username vahid 68491 kill_reason Maximum check online fails reached 68491 mac 89.199.174.7:10679: Unknown host 68491 bytes_out 0 68491 bytes_in 0 68491 station_ip 89.199.174.7:10679 68491 port 1017 68491 unique_id port 131746 bytes_in 1025985 131746 station_ip 46.225.209.99 131746 port 265 131746 unique_id port 131746 remote_ip 10.8.0.50 131748 username khalili 131748 mac 131748 bytes_out 0 131748 bytes_in 0 131748 station_ip 5.119.131.147 131748 port 259 131748 unique_id port 131753 username mehdizare 131753 mac 131753 bytes_out 1934191 131753 bytes_in 19809048 131753 station_ip 5.120.78.164 131753 port 258 131753 unique_id port 131753 remote_ip 10.8.0.90 131756 username godarzi 131756 mac 131756 bytes_out 0 131756 bytes_in 0 131756 station_ip 5.119.100.88 131756 port 258 131756 unique_id port 131756 remote_ip 10.8.0.174 131758 username zare 131758 mac 131758 bytes_out 0 131758 bytes_in 0 131758 station_ip 94.183.214.14 131758 port 258 131758 unique_id port 131758 remote_ip 10.8.0.18 131760 username mehdizare 131760 mac 131760 bytes_out 0 131760 bytes_in 0 131760 station_ip 5.120.78.164 131760 port 273 131760 unique_id port 131760 remote_ip 10.8.0.90 131761 username amir 131761 mac 131761 bytes_out 0 131761 bytes_in 0 131761 station_ip 46.225.209.99 131761 port 265 131761 unique_id port 131761 remote_ip 10.8.0.50 131763 username barzegar 131763 mac 131763 bytes_out 0 131763 bytes_in 0 68512 username arezoo 68512 kill_reason Maximum check online fails reached 68512 mac 5.238.60.171:52141: Unknown host 68512 bytes_out 0 68512 bytes_in 0 68512 station_ip 5.238.60.171:52141 68512 port 1017 68512 unique_id port 131763 station_ip 5.120.57.60 131763 port 171 131763 unique_id port 131763 remote_ip 10.8.1.174 131765 username saeed9658 131765 mac 131765 bytes_out 0 131765 bytes_in 0 131765 station_ip 5.119.37.114 131765 port 275 131765 unique_id port 131765 remote_ip 10.8.0.62 131768 username mosi 131768 kill_reason Another user logged on this global unique id 131768 mac 131768 bytes_out 0 131768 bytes_in 0 131768 station_ip 151.235.72.123 131768 port 252 131768 unique_id port 131770 username zare 131770 mac 131770 bytes_out 0 131770 bytes_in 0 131770 station_ip 94.183.214.14 131770 port 265 131770 unique_id port 131770 remote_ip 10.8.0.18 131772 username farhad2 131772 mac 131772 bytes_out 0 131772 bytes_in 0 131772 station_ip 5.120.10.251 131772 port 249 131772 unique_id port 131775 username mohammadjavad 131775 mac 131775 bytes_out 0 131775 bytes_in 0 131775 station_ip 83.122.153.227 131775 port 271 131775 unique_id port 131775 remote_ip 10.8.0.142 131779 username zare 131779 mac 131779 bytes_out 0 131779 bytes_in 0 131779 station_ip 94.183.214.14 131779 port 274 131779 unique_id port 131779 remote_ip 10.8.0.18 131780 username mehdizare 131780 mac 131780 bytes_out 0 131780 bytes_in 0 131780 station_ip 5.120.78.164 131780 port 258 68486 username arezoo 68486 kill_reason Relative expiration date has reached 68486 mac 5.237.64.251:49250: Unknown host 68486 bytes_out 0 68486 bytes_in 0 68486 station_ip 5.237.64.251:49250 68486 port 1017 68486 unique_id port 131755 bytes_in 0 131755 station_ip 94.183.214.14 131755 port 271 131755 unique_id port 131755 remote_ip 10.8.0.18 131759 username zare 131759 mac 131759 bytes_out 0 131759 bytes_in 0 131759 station_ip 94.183.214.14 131759 port 258 131759 unique_id port 131759 remote_ip 10.8.0.18 131762 username zare 131762 mac 131762 bytes_out 0 131762 bytes_in 0 131762 station_ip 94.183.214.14 131762 port 265 131762 unique_id port 131762 remote_ip 10.8.0.18 131764 username mahdiyehalizadeh 131764 mac 131764 bytes_out 1091035 131764 bytes_in 17856053 131764 station_ip 37.129.177.195 131764 port 264 131764 unique_id port 131764 remote_ip 10.8.0.82 131769 username godarzi 131769 mac 131769 bytes_out 213580 68495 username arezoo 68495 kill_reason Maximum check online fails reached 68495 mac 5.238.60.171:49258: Unknown host 68495 bytes_out 0 68495 bytes_in 0 68495 station_ip 5.238.60.171:49258 68495 port 1017 68495 unique_id port 131769 bytes_in 1090742 131769 station_ip 5.119.100.88 131769 port 274 131769 unique_id port 131769 remote_ip 10.8.0.174 131771 username saeed9658 131771 mac 131771 bytes_out 0 131771 bytes_in 0 131771 station_ip 5.119.37.114 131771 port 172 131771 unique_id port 131771 remote_ip 10.8.1.210 131773 username zare 131773 mac 131773 bytes_out 0 131773 bytes_in 0 131773 station_ip 94.183.214.14 131773 port 274 131773 unique_id port 131773 remote_ip 10.8.0.18 131774 username farhad2 131774 kill_reason Maximum check online fails reached 131774 mac 131774 bytes_out 0 131774 bytes_in 0 131774 station_ip 5.120.10.251 131774 port 249 131774 unique_id port 131777 username barzegar 131777 mac 131777 bytes_out 179835 131777 bytes_in 774712 131777 station_ip 5.120.57.60 131777 port 171 131777 unique_id port 131777 remote_ip 10.8.1.174 131778 username farhad2 131778 mac 131778 bytes_out 322088 131778 bytes_in 2276741 131778 station_ip 5.120.10.251 131778 port 172 131778 unique_id port 131778 remote_ip 10.8.1.222 131785 username farhad2 131785 mac 131785 bytes_out 0 131785 bytes_in 0 131785 station_ip 5.120.10.251 131785 port 258 131785 unique_id port 131785 remote_ip 10.8.0.190 131789 username morteza 131789 mac 131789 bytes_out 105622 131789 bytes_in 499885 131789 station_ip 37.129.11.164 131789 port 167 131789 unique_id port 131789 remote_ip 10.8.1.62 131790 username farhad2 131790 mac 131790 bytes_out 0 131790 bytes_in 0 131790 station_ip 5.120.10.251 131790 port 258 131790 unique_id port 131790 remote_ip 10.8.0.190 131791 username farhad2 131791 mac 131791 bytes_out 0 131791 bytes_in 0 131791 station_ip 5.120.10.251 131791 port 276 131791 unique_id port 131791 remote_ip 10.8.0.190 131793 username malekpoir 131793 kill_reason Another user logged on this global unique id 131793 mac 131793 bytes_out 0 131793 bytes_in 0 131793 station_ip 5.119.161.16 131793 port 259 131793 unique_id port 131793 remote_ip 10.8.0.58 131803 username barzegar 131803 mac 131803 bytes_out 0 131803 bytes_in 0 131803 station_ip 5.120.57.60 131803 port 264 131803 unique_id port 131803 remote_ip 10.8.0.234 131805 username mansur 131805 mac 131805 bytes_out 0 131805 bytes_in 0 131805 station_ip 5.120.49.160 131805 port 258 131805 unique_id port 131805 remote_ip 10.8.0.210 131808 username mosi 131808 mac 131780 unique_id port 131780 remote_ip 10.8.0.90 131784 username mehdizare 131784 mac 131784 bytes_out 5107 131784 bytes_in 10110 131784 station_ip 5.120.78.164 131784 port 274 68496 username arezoo 68496 kill_reason Maximum check online fails reached 68496 mac 5.238.60.171:49287: Unknown host 68496 bytes_out 0 68496 bytes_in 0 68496 station_ip 5.238.60.171:49287 68496 port 1017 68496 unique_id port 131784 unique_id port 131784 remote_ip 10.8.0.90 131787 username amir 131787 mac 131787 bytes_out 165638 131787 bytes_in 1139049 131787 station_ip 46.225.209.99 131787 port 274 131787 unique_id port 131787 remote_ip 10.8.0.50 131797 username mosi 131797 kill_reason Another user logged on this global unique id 131797 mac 131797 bytes_out 0 131797 bytes_in 0 131797 station_ip 151.235.72.123 68514 username vahid 68514 kill_reason Maximum check online fails reached 68514 mac 89.199.145.54:11017: Unknown host 68514 bytes_out 0 68514 bytes_in 0 68514 station_ip 89.199.145.54:11017 68514 port 1017 68514 unique_id port 131797 port 252 131797 unique_id port 131798 username godarzi 131798 mac 131798 bytes_out 0 131798 bytes_in 0 131798 station_ip 5.119.100.88 131798 port 276 131798 unique_id port 131798 remote_ip 10.8.0.174 131800 username zare 131800 mac 131800 bytes_out 0 131800 bytes_in 0 131800 station_ip 94.183.214.14 131800 port 264 131800 unique_id port 131800 remote_ip 10.8.0.18 131802 username sedighe 131802 mac 131802 bytes_out 12796 131802 bytes_in 11168 131802 station_ip 83.122.103.230 131802 port 274 131802 unique_id port 131802 remote_ip 10.8.0.146 131810 username hamid.e 131810 unique_id port 131810 terminate_cause Lost-Carrier 131810 bytes_out 2744509 131810 bytes_in 49566753 131810 station_ip 37.27.42.202 131810 port 15730314 131810 nas_port_type Virtual 131810 remote_ip 5.5.5.239 131812 username mosi 131812 mac 131812 bytes_out 0 131812 bytes_in 0 131812 station_ip 151.235.72.123 131812 port 252 131812 unique_id port 131812 remote_ip 10.8.0.138 131815 username mehdizare 131815 mac 131815 bytes_out 120251 131815 bytes_in 86726 131815 station_ip 5.120.78.164 131815 port 275 131815 unique_id port 131815 remote_ip 10.8.0.90 131818 username zare 131818 mac 131818 bytes_out 0 131818 bytes_in 0 131818 station_ip 37.27.55.76 131818 port 265 131818 unique_id port 131818 remote_ip 10.8.0.18 131819 username zare 131819 mac 131819 bytes_out 0 131819 bytes_in 0 131819 station_ip 37.27.55.76 131819 port 265 131819 unique_id port 131819 remote_ip 10.8.0.18 131822 username barzegar 131822 mac 131822 bytes_out 4630 131822 bytes_in 7614 131822 station_ip 5.120.57.60 131822 port 172 131822 unique_id port 131822 remote_ip 10.8.1.174 131824 username morteza 131824 kill_reason Another user logged on this global unique id 131824 mac 131824 bytes_out 0 131824 bytes_in 0 131824 station_ip 37.129.183.106 131824 port 273 131824 unique_id port 131824 remote_ip 10.8.0.46 131825 username vanila 131825 mac 131825 bytes_out 542634 131825 bytes_in 143432 131825 station_ip 83.122.10.8 131825 port 274 131825 unique_id port 131825 remote_ip 10.8.0.178 131828 username moradi 131828 mac 131828 bytes_out 0 131828 bytes_in 0 131828 station_ip 83.123.214.44 131828 port 171 131828 unique_id port 131828 remote_ip 10.8.1.202 131830 username zare 131830 mac 131830 bytes_out 0 131830 bytes_in 0 131830 station_ip 37.27.55.76 131830 port 274 131830 unique_id port 131830 remote_ip 10.8.0.18 131831 username zare 131831 mac 131831 bytes_out 0 131831 bytes_in 0 131782 port 258 131782 unique_id port 131782 remote_ip 10.8.0.190 131783 username amir 131783 mac 131783 bytes_out 772473 131783 bytes_in 8033488 131783 station_ip 46.225.209.99 131783 port 276 131783 unique_id port 131783 remote_ip 10.8.0.50 131786 username barzegar 131786 mac 131786 bytes_out 14259 131786 bytes_in 15761 131786 station_ip 5.120.57.60 131786 port 171 131786 unique_id port 131786 remote_ip 10.8.1.174 131788 username vanila 131788 mac 131788 bytes_out 10513347 131788 bytes_in 29760115 131788 station_ip 83.122.30.168 131788 port 273 131788 unique_id port 131788 remote_ip 10.8.0.178 131792 username mohammadjavad 131792 mac 131792 bytes_out 0 131792 bytes_in 0 131792 station_ip 37.129.172.86 131792 port 273 131792 unique_id port 131792 remote_ip 10.8.0.142 131794 username amir 131794 mac 131794 bytes_out 292713 131794 bytes_in 2650829 131794 station_ip 46.225.209.99 131794 port 258 131794 unique_id port 131794 remote_ip 10.8.0.50 131795 username saeed9658 131795 mac 131795 bytes_out 2422010 131795 bytes_in 25763399 131795 station_ip 5.119.37.114 131795 port 265 131795 unique_id port 131795 remote_ip 10.8.0.62 131796 username mostafa_es78 131796 unique_id port 131796 terminate_cause User-Request 131796 bytes_out 9870 131796 bytes_in 14721 131796 station_ip 5.126.163.171 131796 port 15730316 131796 nas_port_type Virtual 131796 remote_ip 5.5.5.255 131799 username farhad2 131799 mac 131799 bytes_out 381655 131799 bytes_in 960723 131799 station_ip 5.120.10.251 131799 port 273 131799 unique_id port 131799 remote_ip 10.8.0.190 131801 username farhad2 131801 mac 131801 bytes_out 0 131801 bytes_in 0 131801 station_ip 5.120.10.251 131801 port 265 131801 unique_id port 131801 remote_ip 10.8.0.190 131804 username barzegar 131804 kill_reason Maximum check online fails reached 131804 mac 131804 bytes_out 0 131804 bytes_in 0 131804 station_ip 5.120.57.60 131804 port 167 131804 unique_id port 131806 username farhad2 131806 mac 131806 bytes_out 0 131806 bytes_in 0 131806 station_ip 5.120.10.251 131806 port 171 131806 unique_id port 131806 remote_ip 10.8.1.222 131807 username malekpoir 131807 mac 131807 bytes_out 0 131807 bytes_in 0 131807 station_ip 5.119.161.16 131807 port 259 131807 unique_id port 131809 username sedighe 131809 mac 131809 bytes_out 0 131809 bytes_in 0 68551 username arezoo 68551 kill_reason Maximum check online fails reached 68551 mac 5.238.61.243:49209: Unknown host 68551 bytes_out 0 68551 bytes_in 0 68551 station_ip 5.238.61.243:49209 68551 port 1017 68551 unique_id port 131809 station_ip 83.122.103.230 131809 port 265 131809 unique_id port 131809 remote_ip 10.8.0.146 131813 username barzegar 131813 mac 131813 bytes_out 0 131813 bytes_in 0 131813 station_ip 5.120.57.60 131813 port 264 131813 unique_id port 131813 remote_ip 10.8.0.234 131814 username farhad2 131814 mac 131814 bytes_out 173511 131814 bytes_in 536322 131814 station_ip 5.120.10.251 131814 port 171 131814 unique_id port 131814 remote_ip 10.8.1.222 131816 username hosseine 131816 mac 131816 bytes_out 0 131816 bytes_in 0 131816 station_ip 37.129.40.108 131816 port 272 131816 unique_id port 131816 remote_ip 10.8.0.238 131817 username zare 131817 mac 131817 bytes_out 0 131817 bytes_in 0 131817 station_ip 37.27.55.76 131817 port 252 131817 unique_id port 131817 remote_ip 10.8.0.18 131820 username farhad2 131820 mac 131820 bytes_out 628355 131820 bytes_in 3156176 131820 station_ip 5.120.10.251 131808 bytes_out 0 131808 bytes_in 0 131808 station_ip 151.235.72.123 131808 port 252 131808 unique_id port 131811 username farhad2 131811 mac 131811 bytes_out 627026 131811 bytes_in 2448849 131811 station_ip 5.120.10.251 131811 port 171 131811 unique_id port 131811 remote_ip 10.8.1.222 131821 username alipour 68550 username arezoo 68550 kill_reason Maximum check online fails reached 68550 mac 5.238.61.243:49184: Unknown host 68550 bytes_out 0 68550 bytes_in 0 68550 station_ip 5.238.61.243:49184 68550 port 1017 68550 unique_id port 68552 username arezoo 68552 kill_reason Maximum check online fails reached 68552 mac 5.237.76.237:49275: Unknown host 68552 bytes_out 0 68552 bytes_in 0 68552 station_ip 5.237.76.237:49275 68552 port 1017 68552 unique_id port 131821 mac 131821 bytes_out 2248768 131821 bytes_in 26483329 131821 station_ip 37.129.67.179 131821 port 169 131821 unique_id port 131821 remote_ip 10.8.1.50 131827 username barzegar 131827 mac 131827 bytes_out 0 131827 bytes_in 0 131827 station_ip 5.120.57.60 131827 port 172 131827 unique_id port 131827 remote_ip 10.8.1.174 131834 username mohammadjavad 131834 mac 131834 bytes_out 0 131834 bytes_in 0 131834 station_ip 83.122.175.171 131834 port 275 131834 unique_id port 131834 remote_ip 10.8.0.142 131836 username morteza 131836 kill_reason Another user logged on this global unique id 131836 mac 131836 bytes_out 0 131836 bytes_in 0 131836 station_ip 37.129.183.106 131836 port 273 131836 unique_id port 131845 username alipour 131845 mac 131845 bytes_out 30041 131845 bytes_in 32735 131845 station_ip 37.129.8.191 131845 port 275 131845 unique_id port 131845 remote_ip 10.8.0.102 131847 username zare 131847 mac 131847 bytes_out 28282 131847 bytes_in 49403 131847 station_ip 37.27.55.76 131847 port 277 131847 unique_id port 131847 remote_ip 10.8.0.18 131852 username malekpoir 131852 kill_reason Another user logged on this global unique id 131852 mac 131852 bytes_out 0 131852 bytes_in 0 131852 station_ip 5.119.161.16 131852 port 258 131852 unique_id port 131852 remote_ip 10.8.0.58 131853 username barzegar 131853 mac 131853 bytes_out 20423 131853 bytes_in 20710 131853 station_ip 5.120.57.60 131853 port 259 131853 unique_id port 131853 remote_ip 10.8.0.234 131854 username alihosseini1 131854 kill_reason Maximum check online fails reached 131854 mac 131854 bytes_out 0 131854 bytes_in 0 131854 station_ip 5.119.130.27 131854 port 277 131854 unique_id port 131858 username alihosseini1 131858 mac 131858 bytes_out 2763 131858 bytes_in 4954 131858 station_ip 5.119.130.27 131858 port 252 131858 unique_id port 131858 remote_ip 10.8.0.166 131860 username alihosseini1 131860 mac 131860 bytes_out 0 131860 bytes_in 0 131860 station_ip 5.119.130.27 131860 port 259 131860 unique_id port 131860 remote_ip 10.8.0.166 131862 username sedighe 131862 mac 131862 bytes_out 0 131862 bytes_in 0 131862 station_ip 83.122.244.60 131862 port 274 131862 unique_id port 131862 remote_ip 10.8.0.146 131864 username alihosseini1 131864 mac 131864 bytes_out 0 131864 bytes_in 0 131864 station_ip 5.119.130.27 131864 port 259 131864 unique_id port 131864 remote_ip 10.8.0.166 131867 username godarzi 131867 mac 131867 bytes_out 503314 131867 bytes_in 4497644 131867 station_ip 5.119.100.88 131867 port 272 131867 unique_id port 131867 remote_ip 10.8.0.174 131871 username barzegar 131871 mac 131871 bytes_out 0 131871 bytes_in 0 131871 station_ip 5.120.57.60 131871 port 171 131871 unique_id port 131871 remote_ip 10.8.1.174 131820 port 171 131820 unique_id port 131820 remote_ip 10.8.1.222 131823 username zare 131823 mac 131823 bytes_out 0 131823 bytes_in 0 131823 station_ip 37.27.55.76 131823 port 265 131823 unique_id port 131823 remote_ip 10.8.0.18 131826 username zare 131826 mac 131826 bytes_out 0 131826 bytes_in 0 131826 station_ip 37.27.55.76 131826 port 274 131826 unique_id port 131826 remote_ip 10.8.0.18 131829 username zare 131829 mac 131829 bytes_out 0 131829 bytes_in 0 131829 station_ip 37.27.55.76 131829 port 274 131829 unique_id port 131829 remote_ip 10.8.0.18 131832 username zare 131832 mac 131832 bytes_out 0 131832 bytes_in 0 131832 station_ip 37.27.55.76 131832 port 172 131832 unique_id port 131832 remote_ip 10.8.1.58 131835 username moradi 131835 mac 131835 bytes_out 76875 131835 bytes_in 94053 131835 station_ip 46.225.211.30 131835 port 171 131835 unique_id port 131835 remote_ip 10.8.1.202 131838 username alihosseini1 131838 mac 131838 bytes_out 1256551 131838 bytes_in 12358130 131838 station_ip 5.119.130.27 131838 port 169 131838 unique_id port 131838 remote_ip 10.8.1.106 131840 username zare 131840 mac 131840 bytes_out 0 131840 bytes_in 0 131840 station_ip 37.27.55.76 131840 port 276 131840 unique_id port 131840 remote_ip 10.8.0.18 131841 username alihosseini1 131841 mac 131841 bytes_out 0 131841 bytes_in 0 131841 station_ip 5.119.130.27 131841 port 169 131841 unique_id port 131841 remote_ip 10.8.1.106 131842 username aminvpn 131842 mac 131842 bytes_out 0 131842 bytes_in 0 131842 station_ip 83.122.127.103 131842 port 271 131842 unique_id port 131842 remote_ip 10.8.0.14 131843 username zare 131843 mac 131843 bytes_out 0 131843 bytes_in 0 131843 station_ip 37.27.55.76 131843 port 276 131843 unique_id port 131843 remote_ip 10.8.0.18 131846 username sedighe 131846 mac 131846 bytes_out 0 131846 bytes_in 0 131846 station_ip 83.122.244.60 131846 port 274 131846 unique_id port 131846 remote_ip 10.8.0.146 131851 username morteza 131851 kill_reason Another user logged on this global unique id 131851 mac 131851 bytes_out 0 131851 bytes_in 0 131851 station_ip 37.129.183.106 131851 port 273 131851 unique_id port 131856 username zare 131856 kill_reason Another user logged on this global unique id 131856 mac 131856 bytes_out 0 131856 bytes_in 0 131856 station_ip 37.27.55.76 131856 port 275 131856 unique_id port 131856 remote_ip 10.8.0.18 131857 username vanila 131857 mac 131857 bytes_out 0 131857 bytes_in 0 131857 station_ip 83.122.10.8 131857 port 259 131857 unique_id port 131857 remote_ip 10.8.0.178 131859 username barzegar 131859 mac 131859 bytes_out 15060 131859 bytes_in 45725 131859 station_ip 5.120.57.60 131859 port 278 131859 unique_id port 131859 remote_ip 10.8.0.234 131865 username zare 131865 kill_reason Another user logged on this global unique id 131865 mac 131865 bytes_out 0 131865 bytes_in 0 131865 station_ip 37.27.55.76 131865 port 275 131865 unique_id port 131866 username barzegar 131866 mac 131866 bytes_out 0 131866 bytes_in 0 131866 station_ip 5.120.57.60 131866 port 171 131866 unique_id port 131866 remote_ip 10.8.1.174 131868 username sedighe 131868 mac 131868 bytes_out 31984 131868 bytes_in 43140 131868 station_ip 83.122.244.60 131868 port 252 131868 unique_id port 131868 remote_ip 10.8.0.146 131872 username alihosseini1 131872 mac 131872 bytes_out 0 131872 bytes_in 0 131872 station_ip 5.119.130.27 131872 port 259 131831 station_ip 37.27.55.76 131831 port 274 131831 unique_id port 131831 remote_ip 10.8.0.18 131833 username sedighe 131833 mac 131833 bytes_out 0 131833 bytes_in 0 131833 station_ip 83.122.103.230 131833 port 259 131833 unique_id port 131833 remote_ip 10.8.0.146 131837 username zare 131837 mac 131837 bytes_out 44789 131837 bytes_in 129118 131837 station_ip 37.27.55.76 131837 port 172 131837 unique_id port 131837 remote_ip 10.8.1.58 131839 username zare 131839 mac 131839 bytes_out 109897 131839 bytes_in 68374 131839 station_ip 37.27.55.76 131839 port 171 131839 unique_id port 131839 remote_ip 10.8.1.58 131844 username morteza 131844 kill_reason Another user logged on this global unique id 131844 mac 131844 bytes_out 0 131844 bytes_in 0 131844 station_ip 37.129.183.106 131844 port 273 131844 unique_id port 131848 username yarmohamadi 131848 mac 131848 bytes_out 4833265 131848 bytes_in 26421132 131848 station_ip 5.120.116.30 131848 port 265 131848 unique_id port 131848 remote_ip 10.8.0.26 131849 username alipour 131849 mac 131849 bytes_out 0 131849 bytes_in 0 131849 station_ip 37.129.8.191 131849 port 169 131849 unique_id port 131849 remote_ip 10.8.1.50 131850 username alihosseini1 131850 mac 131850 bytes_out 0 131850 bytes_in 0 131850 station_ip 5.119.130.27 131850 port 169 131850 unique_id port 131850 remote_ip 10.8.1.106 131855 username mehdizare 131855 mac 131855 bytes_out 0 131855 bytes_in 0 131855 station_ip 5.120.78.164 131855 port 252 131855 unique_id port 131855 remote_ip 10.8.0.90 131861 username mehdizare 131861 mac 131861 bytes_out 10188 131861 bytes_in 13643 131861 station_ip 5.120.78.164 131861 port 279 131861 unique_id port 131861 remote_ip 10.8.0.90 131863 username morteza 131863 kill_reason Another user logged on this global unique id 131863 mac 131863 bytes_out 0 131863 bytes_in 0 131863 station_ip 37.129.183.106 131863 port 273 131863 unique_id port 131869 username zare 131869 mac 131869 bytes_out 0 131869 bytes_in 0 131869 station_ip 37.27.55.76 131869 port 275 131869 unique_id port 131870 username sedighe 131870 mac 131870 bytes_out 0 131870 bytes_in 0 131870 station_ip 37.129.189.161 131870 port 259 131870 unique_id port 131870 remote_ip 10.8.0.146 131874 username morteza 131874 kill_reason Another user logged on this global unique id 131874 mac 131874 bytes_out 0 131874 bytes_in 0 131874 station_ip 37.129.183.106 131874 port 273 131874 unique_id port 131877 username barzegar 131877 mac 131877 bytes_out 0 131877 bytes_in 0 131877 station_ip 5.120.57.60 131877 port 278 131877 unique_id port 131877 remote_ip 10.8.0.234 131879 username godarzi 131879 mac 131879 bytes_out 88497 131879 bytes_in 224579 131879 station_ip 5.119.100.88 131879 port 274 131879 unique_id port 131879 remote_ip 10.8.0.174 131882 username morteza 131882 mac 131882 bytes_out 0 131882 bytes_in 0 131882 station_ip 37.129.183.106 131882 port 273 131882 unique_id port 131882 remote_ip 10.8.0.46 131884 username morteza 131884 mac 131884 bytes_out 0 131884 bytes_in 0 131884 station_ip 37.129.183.106 131884 port 172 131884 unique_id port 131884 remote_ip 10.8.1.62 131890 username vanila 131890 mac 131890 bytes_out 8962374 131890 bytes_in 585102 131890 station_ip 83.122.10.8 131890 port 259 131890 unique_id port 131890 remote_ip 10.8.0.178 131892 username tahmasebi 131892 kill_reason Another user logged on this global unique id 131892 mac 131892 bytes_out 0 131892 bytes_in 0 131892 station_ip 5.120.117.210 131872 unique_id port 131872 remote_ip 10.8.0.166 131873 username alihosseini1 131873 mac 131873 bytes_out 0 131873 bytes_in 0 131873 station_ip 5.119.130.27 131873 port 275 131873 unique_id port 131873 remote_ip 10.8.0.166 131876 username farhad2 131876 mac 131876 bytes_out 4857786 131876 bytes_in 24055790 131876 station_ip 5.120.10.251 131876 port 173 131876 unique_id port 131876 remote_ip 10.8.1.222 131880 username yahodi 131880 kill_reason Another user logged on this global unique id 131880 mac 131880 bytes_out 0 131880 bytes_in 0 131880 station_ip 83.122.189.168 131880 port 272 131880 unique_id port 131880 remote_ip 10.8.0.202 131881 username morteza 131881 mac 131881 bytes_out 0 131881 bytes_in 0 131881 station_ip 37.129.183.106 131881 port 273 131881 unique_id port 131885 username saeed9658 131885 mac 131885 bytes_out 0 131885 bytes_in 0 131885 station_ip 5.119.37.114 131885 port 276 131885 unique_id port 131885 remote_ip 10.8.0.62 131886 username rahmani 131886 mac 131886 bytes_out 3438778 131886 bytes_in 43653784 131886 station_ip 113.203.111.7 131886 port 252 131886 unique_id port 131886 remote_ip 10.8.0.94 131887 username tahmasebi 131887 kill_reason Another user logged on this global unique id 131887 mac 131887 bytes_out 0 131887 bytes_in 0 131887 station_ip 5.120.117.210 131887 port 256 131887 unique_id port 131889 username barzegar 131889 mac 131889 bytes_out 0 131889 bytes_in 0 131889 station_ip 5.120.57.60 131889 port 273 131889 unique_id port 131889 remote_ip 10.8.0.234 131899 username mehdizare 131899 mac 131899 bytes_out 99142 131899 bytes_in 172996 131899 station_ip 5.120.78.164 131899 port 169 131899 unique_id port 131899 remote_ip 10.8.1.42 131900 username barzegar 131900 mac 131900 bytes_out 2519 131900 bytes_in 4928 131900 station_ip 5.120.57.60 131900 port 259 131900 unique_id port 131900 remote_ip 10.8.0.234 131902 username alihosseini1 131902 mac 131902 bytes_out 0 131902 bytes_in 0 131902 station_ip 5.119.130.27 131902 port 278 131902 unique_id port 131903 username moradi 131903 kill_reason Another user logged on this global unique id 131903 mac 131903 bytes_out 0 131903 bytes_in 0 131903 station_ip 5.202.3.241 131903 port 171 131903 unique_id port 131903 remote_ip 10.8.1.202 131906 username aminvpn 131906 mac 131906 bytes_out 0 131906 bytes_in 0 131906 station_ip 37.129.95.158 131906 port 272 131906 unique_id port 131906 remote_ip 10.8.0.14 131907 username morteza 131907 mac 131907 bytes_out 0 131907 bytes_in 0 131907 station_ip 37.129.183.106 131907 port 172 131907 unique_id port 131910 username aminvpn 131910 mac 131910 bytes_out 674447 131910 bytes_in 779126 131910 station_ip 37.129.95.158 131910 port 272 131910 unique_id port 131910 remote_ip 10.8.0.14 131913 username barzegar 131913 mac 131913 bytes_out 17740 131913 bytes_in 22468 131913 station_ip 5.120.57.60 131913 port 259 131913 unique_id port 131913 remote_ip 10.8.0.234 131915 username aminvpn 131915 mac 131915 bytes_out 0 131915 bytes_in 0 131915 station_ip 83.122.127.103 131915 port 271 131915 unique_id port 131915 remote_ip 10.8.0.14 131916 username hamid.e 131916 kill_reason Maximum number of concurrent logins reached 131916 unique_id port 131916 bytes_out 0 131916 bytes_in 0 131916 station_ip 37.27.27.124 131916 port 15730320 131916 nas_port_type Virtual 131918 username aminvpn 131918 mac 131918 bytes_out 634653 131918 bytes_in 4370281 131918 station_ip 37.129.95.158 131918 port 259 131918 unique_id port 131875 username alihosseini1 131875 mac 131875 bytes_out 0 131875 bytes_in 0 131875 station_ip 5.119.130.27 131875 port 275 131875 unique_id port 131875 remote_ip 10.8.0.166 131878 username barzegar 131878 mac 131878 bytes_out 0 131878 bytes_in 0 131878 station_ip 5.120.57.60 131878 port 279 131878 unique_id port 131878 remote_ip 10.8.0.234 131883 username mahdixz 131883 unique_id port 131883 terminate_cause Lost-Carrier 131883 bytes_out 3893620 131883 bytes_in 109213694 131883 station_ip 151.235.89.159 131883 port 15730317 131883 nas_port_type Virtual 131883 remote_ip 5.5.5.180 131888 username mohammadjavad 131888 mac 131888 bytes_out 1381833 131888 bytes_in 23752690 131888 station_ip 37.129.158.110 131888 port 259 131888 unique_id port 131888 remote_ip 10.8.0.142 131891 username yahodi 131891 mac 131891 bytes_out 0 131891 bytes_in 0 131891 station_ip 83.122.189.168 131891 port 272 131891 unique_id port 131893 username barzegar 131893 mac 131893 bytes_out 2836 131893 bytes_in 5145 131893 station_ip 5.120.57.60 131893 port 259 131893 unique_id port 131893 remote_ip 10.8.0.234 131894 username alihosseini1 131894 kill_reason Another user logged on this global unique id 131894 mac 131894 bytes_out 0 131894 bytes_in 0 131894 station_ip 5.119.130.27 131894 port 278 131894 unique_id port 131894 remote_ip 10.8.0.166 131896 username morteza 131896 kill_reason Another user logged on this global unique id 131896 mac 131896 bytes_out 0 131896 bytes_in 0 131896 station_ip 37.129.183.106 131896 port 172 131896 unique_id port 131896 remote_ip 10.8.1.62 131901 username barzegar 131901 mac 131901 bytes_out 0 131901 bytes_in 0 131901 station_ip 5.120.57.60 131901 port 259 131901 unique_id port 131901 remote_ip 10.8.0.234 131905 username godarzi 131905 mac 131905 bytes_out 0 131905 bytes_in 0 131905 station_ip 5.119.100.88 131905 port 252 131905 unique_id port 131905 remote_ip 10.8.0.174 131912 username aminvpn 131912 mac 131912 bytes_out 168248 131912 bytes_in 177798 131912 station_ip 37.129.95.158 131912 port 273 131912 unique_id port 131912 remote_ip 10.8.0.14 131919 username aminvpn 131919 unique_id port 131919 terminate_cause User-Request 131919 bytes_out 9881588 131919 bytes_in 106728621 131919 station_ip 5.120.72.205 131919 port 15730313 131919 nas_port_type Virtual 131919 remote_ip 5.5.5.217 131923 username rahmani 131923 mac 131923 bytes_out 0 131923 bytes_in 0 131923 station_ip 113.203.24.67 131923 port 264 131923 unique_id port 131923 remote_ip 10.8.0.94 131927 username moradi 131927 mac 131927 bytes_out 0 131927 bytes_in 0 131927 station_ip 5.202.3.241 131927 port 171 131927 unique_id port 131929 username yarmohamadi 131929 kill_reason Another user logged on this global unique id 131929 mac 131929 bytes_out 0 131929 bytes_in 0 131929 station_ip 5.120.91.233 131929 port 265 131929 unique_id port 131929 remote_ip 10.8.0.26 131932 username mirzaei 131932 mac 131932 bytes_out 0 131932 bytes_in 0 131932 station_ip 5.119.47.186 131932 port 248 131932 unique_id port 131935 username aminvpn 131935 unique_id port 131935 terminate_cause Lost-Carrier 131935 bytes_out 1618796 131935 bytes_in 2519279 131935 station_ip 5.120.72.205 131935 port 15730319 131935 nas_port_type Virtual 131935 remote_ip 5.5.5.255 131936 username barzegar 131936 mac 131936 bytes_out 0 131936 bytes_in 0 131936 station_ip 5.120.57.60 131936 port 174 131936 unique_id port 131936 remote_ip 10.8.1.174 131940 username barzegar 131940 mac 131940 bytes_out 0 131940 bytes_in 0 131892 port 256 131892 unique_id port 131895 username yahodi 131895 mac 131895 bytes_out 8659 131895 bytes_in 16638 131895 station_ip 83.122.189.168 131895 port 259 131895 unique_id port 131895 remote_ip 10.8.0.202 131897 username barzegar 131897 mac 131897 bytes_out 8839 131897 bytes_in 10083 131897 station_ip 5.120.57.60 131897 port 173 131897 unique_id port 131897 remote_ip 10.8.1.174 131898 username mosi 131898 mac 131898 bytes_out 5371139 131898 bytes_in 45752990 131898 station_ip 151.235.72.123 131898 port 264 131898 unique_id port 131898 remote_ip 10.8.0.138 131904 username aminvpn 131904 mac 131904 bytes_out 11492807 131904 bytes_in 15064751 131904 station_ip 83.122.127.103 131904 port 271 131904 unique_id port 131904 remote_ip 10.8.0.14 131908 username aminvpn 131908 mac 131908 bytes_out 0 131908 bytes_in 0 131908 station_ip 83.122.127.103 131908 port 271 131908 unique_id port 131908 remote_ip 10.8.0.14 131909 username godarzi 131909 mac 131909 bytes_out 73020 131909 bytes_in 292456 131909 station_ip 5.119.100.88 131909 port 252 131909 unique_id port 131909 remote_ip 10.8.0.174 131911 username aminvpn 131911 mac 131911 bytes_out 0 131911 bytes_in 0 131911 station_ip 83.122.127.103 131911 port 271 131911 unique_id port 131911 remote_ip 10.8.0.14 131914 username vanila 131914 mac 131914 bytes_out 0 131914 bytes_in 0 131914 station_ip 83.122.10.8 131914 port 272 131914 unique_id port 131914 remote_ip 10.8.0.178 131917 username barzegar 131917 mac 131917 bytes_out 6327 131917 bytes_in 16537 131917 station_ip 5.120.57.60 131917 port 174 131917 unique_id port 131917 remote_ip 10.8.1.174 131922 username aminvpn 131922 mac 131922 bytes_out 0 131922 bytes_in 0 131922 station_ip 83.122.127.103 131922 port 272 131922 unique_id port 131922 remote_ip 10.8.0.14 131924 username aminvpn 131924 mac 131924 bytes_out 0 131924 bytes_in 0 131924 station_ip 37.129.95.158 131924 port 259 131924 unique_id port 131924 remote_ip 10.8.0.14 131925 username hamid.e 131925 unique_id port 131925 terminate_cause Lost-Carrier 131925 bytes_out 3821502 131925 bytes_in 23440589 131925 station_ip 37.27.1.35 131925 port 15730318 131925 nas_port_type Virtual 131925 remote_ip 5.5.5.186 131933 username vanila 131933 mac 131933 bytes_out 0 131933 bytes_in 0 131933 station_ip 83.122.10.8 131933 port 264 131933 unique_id port 131933 remote_ip 10.8.0.178 131938 username tahmasebi 131938 mac 131938 bytes_out 0 131938 bytes_in 0 131938 station_ip 5.120.117.215 131938 port 258 131938 unique_id port 131938 remote_ip 10.8.0.42 131939 username aminvpn 131939 unique_id port 131939 terminate_cause Lost-Carrier 131939 bytes_out 29355 131939 bytes_in 226344 131939 station_ip 151.238.234.160 131939 port 15730323 131939 nas_port_type Virtual 131939 remote_ip 5.5.5.252 131942 username yahodi 131942 mac 131942 bytes_out 0 131942 bytes_in 0 131942 station_ip 83.122.164.40 131942 port 252 131942 unique_id port 131946 username barzegar 131946 mac 131946 bytes_out 0 131946 bytes_in 0 131946 station_ip 5.120.57.60 131946 port 273 131946 unique_id port 131946 remote_ip 10.8.0.234 131948 username hashtadani3 131948 kill_reason Another user logged on this global unique id 131948 mac 131948 bytes_out 0 131948 bytes_in 0 131948 station_ip 83.123.212.240 131948 port 248 131948 unique_id port 131948 remote_ip 10.8.0.154 131950 username malekpoir 131950 mac 131950 bytes_out 994089 131950 bytes_in 9106220 131950 station_ip 5.119.161.16 131918 remote_ip 10.8.0.14 131920 username aminvpn 131920 mac 131920 bytes_out 0 131920 bytes_in 0 131920 station_ip 83.122.127.103 131920 port 272 131920 unique_id port 131920 remote_ip 10.8.0.14 131921 username aminvpn 131921 mac 131921 bytes_out 0 131921 bytes_in 0 131921 station_ip 37.129.95.158 131921 port 259 131921 unique_id port 131921 remote_ip 10.8.0.14 131926 username barzegar 131926 mac 131926 bytes_out 0 131926 bytes_in 0 131926 station_ip 5.120.57.60 131926 port 264 131926 unique_id port 131926 remote_ip 10.8.0.234 131928 username malekpoir 131928 mac 131928 bytes_out 0 131928 bytes_in 0 131928 station_ip 5.119.161.16 131928 port 258 131928 unique_id port 131930 username alihosseini1 131930 kill_reason Another user logged on this global unique id 131930 mac 131930 bytes_out 0 131930 bytes_in 0 131930 station_ip 5.119.70.199 131930 port 271 131930 unique_id port 131930 remote_ip 10.8.0.166 131931 username tahmasebi 131931 mac 131931 bytes_out 0 131931 bytes_in 0 131931 station_ip 5.120.117.210 131931 port 256 131931 unique_id port 131934 username yahodi 131934 kill_reason Another user logged on this global unique id 131934 mac 131934 bytes_out 0 131934 bytes_in 0 131934 station_ip 83.122.164.40 131934 port 252 131934 unique_id port 131934 remote_ip 10.8.0.202 131937 username godarzi 131937 mac 131937 bytes_out 1187680 131937 bytes_in 14730564 131937 station_ip 5.119.100.88 131937 port 173 131937 unique_id port 131937 remote_ip 10.8.1.230 131944 username aminvpn 131944 mac 131944 bytes_out 0 131944 bytes_in 0 131944 station_ip 151.238.234.160 131944 port 273 131944 unique_id port 131944 remote_ip 10.8.0.14 131956 username vanila 131956 mac 131956 bytes_out 8660576 131956 bytes_in 1140149 131956 station_ip 83.122.10.8 131956 port 258 131956 unique_id port 131956 remote_ip 10.8.0.178 131957 username aminvpn 131957 mac 131957 bytes_out 67446 131957 bytes_in 177329 131957 station_ip 151.238.234.160 131957 port 274 131957 unique_id port 131957 remote_ip 10.8.0.14 131959 username barzegar 131959 mac 131959 bytes_out 0 131959 bytes_in 0 131959 station_ip 5.120.57.60 131959 port 252 131959 unique_id port 131959 remote_ip 10.8.0.234 131960 username aminvpn 131960 mac 131960 bytes_out 0 131960 bytes_in 0 131960 station_ip 83.122.127.103 131960 port 258 131960 unique_id port 131960 remote_ip 10.8.0.14 131964 username aminvpn 131964 mac 131964 bytes_out 0 131964 bytes_in 0 131964 station_ip 83.122.127.103 131964 port 252 131964 unique_id port 131964 remote_ip 10.8.0.14 131965 username hashtadani3 131965 mac 131965 bytes_out 0 131965 bytes_in 0 131965 station_ip 83.123.212.240 131965 port 248 131965 unique_id port 131966 username aminvpn 131966 mac 131966 bytes_out 0 131966 bytes_in 0 131966 station_ip 151.238.234.160 131966 port 258 131966 unique_id port 131966 remote_ip 10.8.0.14 131968 username khademi 131968 kill_reason Another user logged on this global unique id 131968 mac 131968 bytes_out 0 131968 bytes_in 0 131968 station_ip 113.203.13.195 131968 port 259 131968 unique_id port 131968 remote_ip 10.8.0.10 131969 username aminvpn 131969 mac 131969 bytes_out 0 131969 bytes_in 0 131969 station_ip 83.122.127.103 131969 port 273 131969 unique_id port 131969 remote_ip 10.8.0.14 131970 username hashtadani3 131970 mac 131970 bytes_out 0 131970 bytes_in 0 131970 station_ip 83.123.212.240 131970 port 273 131970 unique_id port 131970 remote_ip 10.8.0.154 131940 station_ip 5.120.57.60 131940 port 173 131940 unique_id port 131940 remote_ip 10.8.1.174 131941 username aminvpn 131941 mac 131941 bytes_out 0 131941 bytes_in 0 131941 station_ip 83.122.127.103 131941 port 259 131941 unique_id port 131941 remote_ip 10.8.0.14 131943 username barzegar 131943 mac 131943 bytes_out 0 131943 bytes_in 0 131943 station_ip 5.120.57.60 131943 port 252 131943 unique_id port 131943 remote_ip 10.8.0.234 131945 username aminvpn 131945 mac 131945 bytes_out 0 131945 bytes_in 0 131945 station_ip 83.122.127.103 131945 port 252 131945 unique_id port 131945 remote_ip 10.8.0.14 131947 username aminvpn 131947 mac 131947 bytes_out 0 131947 bytes_in 0 131947 station_ip 151.238.234.160 131947 port 274 131947 unique_id port 131947 remote_ip 10.8.0.14 131949 username aminvpn 131949 mac 131949 bytes_out 0 131949 bytes_in 0 131949 station_ip 83.122.127.103 131949 port 252 131949 unique_id port 131949 remote_ip 10.8.0.14 131951 username aminvpn 131951 mac 131951 bytes_out 0 131951 bytes_in 0 131951 station_ip 151.238.234.160 131951 port 274 131951 unique_id port 131951 remote_ip 10.8.0.14 131952 username aminvpn 131952 mac 131952 bytes_out 0 131952 bytes_in 0 131952 station_ip 83.122.127.103 131952 port 252 131952 unique_id port 131952 remote_ip 10.8.0.14 131955 username mosi 131955 kill_reason Another user logged on this global unique id 131955 mac 131955 bytes_out 0 131955 bytes_in 0 131955 station_ip 151.235.127.219 131955 port 172 131955 unique_id port 131955 remote_ip 10.8.1.86 131958 username malekpoir 131958 mac 131958 bytes_out 23832 131958 bytes_in 51108 131958 station_ip 5.119.161.16 131958 port 171 131958 unique_id port 131958 remote_ip 10.8.1.54 131961 username barzegar 131961 mac 131961 bytes_out 0 131961 bytes_in 0 131961 station_ip 5.120.57.60 131961 port 252 131961 unique_id port 131961 remote_ip 10.8.0.234 131962 username aminvpn 131962 mac 131962 bytes_out 0 131962 bytes_in 0 131962 station_ip 151.238.234.160 131962 port 273 131962 unique_id port 131962 remote_ip 10.8.0.14 131963 username barzegar 131963 mac 131963 bytes_out 0 131963 bytes_in 0 131963 station_ip 5.120.57.60 131963 port 258 131963 unique_id port 131963 remote_ip 10.8.0.234 131971 username farhad2 131971 mac 131971 bytes_out 0 131971 bytes_in 0 131971 station_ip 5.120.155.59 131971 port 258 131971 unique_id port 131971 remote_ip 10.8.0.190 131974 username aminvpn 131974 mac 131974 bytes_out 0 131974 bytes_in 0 131974 station_ip 151.238.234.160 131974 port 248 131974 unique_id port 131974 remote_ip 10.8.0.14 131975 username aminvpn 131975 mac 131975 bytes_out 0 131975 bytes_in 0 131975 station_ip 83.122.127.103 68723 username arezoo 68723 kill_reason Maximum check online fails reached 68723 mac 5.238.58.21:49216: Unknown host 68723 bytes_out 0 68723 bytes_in 0 68723 station_ip 5.238.58.21:49216 68723 port 1017 68723 unique_id port 131975 port 258 131975 unique_id port 131975 remote_ip 10.8.0.14 131982 username hashtadani3 131982 mac 131982 bytes_out 0 131982 bytes_in 0 131982 station_ip 83.123.212.240 131982 port 258 131982 unique_id port 131982 remote_ip 10.8.0.154 131983 username aminvpn 131983 mac 131983 bytes_out 20393 131983 bytes_in 64131 131983 station_ip 151.238.234.160 131983 port 248 131983 unique_id port 131983 remote_ip 10.8.0.14 131984 username mosi 131984 kill_reason Another user logged on this global unique id 131984 mac 131984 bytes_out 0 131984 bytes_in 0 131950 port 171 131950 unique_id port 131950 remote_ip 10.8.1.54 131953 username barzegar 131953 mac 131953 bytes_out 0 131953 bytes_in 0 131953 station_ip 5.120.57.60 131953 port 273 131953 unique_id port 131953 remote_ip 10.8.0.234 131954 username alihosseini1 131954 kill_reason Another user logged on this global unique id 131954 mac 131954 bytes_out 0 131954 bytes_in 0 131954 station_ip 5.119.70.199 131954 port 271 131954 unique_id port 131967 username barzegar 131967 mac 131967 bytes_out 0 131967 bytes_in 0 131967 station_ip 5.120.57.60 131967 port 248 131967 unique_id port 131967 remote_ip 10.8.0.234 131972 username tahmasebi 131972 kill_reason Another user logged on this global unique id 131972 mac 131972 bytes_out 0 131972 bytes_in 0 131972 station_ip 5.119.242.133 131972 port 264 131972 unique_id port 131972 remote_ip 10.8.0.42 131973 username alihosseini1 131973 mac 131973 bytes_out 0 131973 bytes_in 0 131973 station_ip 5.119.70.199 131973 port 271 131973 unique_id port 131977 username barzegar 131977 mac 131977 bytes_out 0 131977 bytes_in 0 131977 station_ip 5.120.57.60 131977 port 174 131977 unique_id port 131977 remote_ip 10.8.1.174 131978 username aminvpn 131978 mac 131978 bytes_out 0 131978 bytes_in 0 68700 username arezoo 68700 kill_reason Maximum check online fails reached 68700 mac 5.238.60.6:49184: Unknown host 68700 bytes_out 0 68700 bytes_in 0 68700 station_ip 5.238.60.6:49184 68700 port 1017 68700 unique_id port 131978 station_ip 151.238.234.160 131978 port 248 131978 unique_id port 131978 remote_ip 10.8.0.14 131980 username barzegar 131980 mac 131980 bytes_out 0 131980 bytes_in 0 131980 station_ip 5.120.57.60 131980 port 174 131980 unique_id port 131980 remote_ip 10.8.1.174 131981 username hashtadani3 131981 mac 131981 bytes_out 388485 131981 bytes_in 5913686 131981 station_ip 83.123.212.240 131981 port 258 131981 unique_id port 131981 remote_ip 10.8.0.154 131987 username aminvpn 131987 mac 131987 bytes_out 0 131987 bytes_in 0 131987 station_ip 83.122.127.103 131987 port 271 131987 unique_id port 131987 remote_ip 10.8.0.14 131989 username tahmasebi 131989 kill_reason Another user logged on this global unique id 131989 mac 131989 bytes_out 0 131989 bytes_in 0 131989 station_ip 5.119.242.133 131989 port 264 131989 unique_id port 131993 username vanila 131993 mac 131993 bytes_out 221928 131993 bytes_in 881105 131993 station_ip 83.122.10.8 131993 port 258 131993 unique_id port 131993 remote_ip 10.8.0.178 131994 username aminvpn 131994 mac 131994 bytes_out 10527 131994 bytes_in 15703 131994 station_ip 151.238.234.160 131994 port 252 131994 unique_id port 131994 remote_ip 10.8.0.14 131996 username farhad2 131996 kill_reason Maximum check online fails reached 131996 mac 131996 bytes_out 0 131996 bytes_in 0 131996 station_ip 5.120.155.59 131996 port 258 131996 unique_id port 131998 username aminvpn 131998 mac 131998 bytes_out 0 131998 bytes_in 0 131998 station_ip 151.238.234.160 131998 port 252 131998 unique_id port 131998 remote_ip 10.8.0.14 131999 username aminvpn 131999 mac 131999 bytes_out 0 131999 bytes_in 0 131999 station_ip 83.122.127.103 131999 port 271 131999 unique_id port 131999 remote_ip 10.8.0.14 132004 username aminvpn 132004 mac 132004 bytes_out 0 132004 bytes_in 0 132004 station_ip 83.122.127.103 132004 port 276 132004 unique_id port 132004 remote_ip 10.8.0.14 132005 username aminvpn 132005 mac 132005 bytes_out 0 132005 bytes_in 0 132005 station_ip 151.238.234.160 131976 username hashtadani3 131976 mac 131976 bytes_out 0 131976 bytes_in 0 131976 station_ip 83.123.212.240 131976 port 258 131976 unique_id port 131976 remote_ip 10.8.0.154 131979 username aminvpn 131979 mac 131979 bytes_out 0 131979 bytes_in 0 131979 station_ip 83.122.127.103 131979 port 271 131979 unique_id port 131979 remote_ip 10.8.0.14 131986 username mehdizare 131986 mac 131986 bytes_out 0 131986 bytes_in 0 131986 station_ip 5.120.78.164 131986 port 169 131986 unique_id port 131986 remote_ip 10.8.1.42 131988 username hashtadani3 131988 mac 131988 bytes_out 0 131988 bytes_in 0 131988 station_ip 83.123.212.240 131988 port 248 131988 unique_id port 131988 remote_ip 10.8.0.154 131995 username aminvpn 131995 mac 131995 bytes_out 0 131995 bytes_in 0 131995 station_ip 83.122.127.103 131995 port 271 131995 unique_id port 131995 remote_ip 10.8.0.14 131997 username barzegar 131997 mac 131997 bytes_out 0 131997 bytes_in 0 131997 station_ip 5.120.57.60 131997 port 174 131997 unique_id port 131997 remote_ip 10.8.1.174 132007 username aminvpn 132007 mac 132007 bytes_out 0 132007 bytes_in 0 132007 station_ip 151.238.234.160 132007 port 279 132007 unique_id port 132007 remote_ip 10.8.0.14 132012 username sekonji3 132012 mac 132012 bytes_out 0 132012 bytes_in 0 132012 station_ip 113.203.74.53 132012 port 273 132012 unique_id port 132012 remote_ip 10.8.0.6 68688 username arezoo 68688 kill_reason Maximum check online fails reached 68688 mac 5.237.71.206:50356: Unknown host 68688 bytes_out 0 68688 bytes_in 0 68688 station_ip 5.237.71.206:50356 68688 port 1017 68688 unique_id port 132015 username mohammadjavad 132015 mac 132015 bytes_out 981269 132015 bytes_in 17923044 132015 station_ip 37.129.8.188 132015 port 278 132015 unique_id port 132015 remote_ip 10.8.0.142 132016 username sekonji3 132016 mac 132016 bytes_out 0 132016 bytes_in 0 132016 station_ip 113.203.74.53 132016 port 278 132016 unique_id port 132016 remote_ip 10.8.0.6 132018 username khalili 132018 kill_reason Another user logged on this global unique id 132018 mac 132018 bytes_out 0 132018 bytes_in 0 132018 station_ip 5.119.131.147 132018 port 168 132018 unique_id port 132018 remote_ip 10.8.1.18 132022 username tahmasebi 132022 kill_reason Another user logged on this global unique id 132022 mac 132022 bytes_out 0 132022 bytes_in 0 132022 station_ip 5.119.242.133 132022 port 264 132022 unique_id port 132026 username sekonji3 132026 mac 132026 bytes_out 0 132026 bytes_in 0 132026 station_ip 113.203.74.53 132026 port 265 132026 unique_id port 132026 remote_ip 10.8.0.6 132028 username sekonji3 132028 mac 132028 bytes_out 0 132028 bytes_in 0 132028 station_ip 113.203.74.53 132028 port 265 132028 unique_id port 132028 remote_ip 10.8.0.6 132030 username yahodi 132030 kill_reason Another user logged on this global unique id 132030 mac 132030 bytes_out 0 132030 bytes_in 0 132030 station_ip 83.122.159.100 132030 port 252 132030 unique_id port 132030 remote_ip 10.8.0.202 132033 username yarmohamadi 132033 mac 132033 bytes_out 230041 132033 bytes_in 1070233 132033 station_ip 5.120.91.233 132033 port 174 132033 unique_id port 132033 remote_ip 10.8.1.234 132035 username hashtadani3 132035 mac 132035 bytes_out 0 132035 bytes_in 0 132035 station_ip 83.123.212.240 132035 port 273 132035 unique_id port 132035 remote_ip 10.8.0.154 132038 username barzegar 132038 mac 132038 bytes_out 2424 132038 bytes_in 4874 132038 station_ip 5.120.57.60 132038 port 176 131984 station_ip 151.235.127.219 131984 port 172 131984 unique_id port 131985 username rahmani 131985 mac 131985 bytes_out 0 131985 bytes_in 0 131985 station_ip 113.203.123.55 131985 port 252 131985 unique_id port 131985 remote_ip 10.8.0.94 131990 username hashtadani3 131990 mac 131990 bytes_out 0 131990 bytes_in 0 131990 station_ip 83.123.212.240 131990 port 169 131990 unique_id port 131990 remote_ip 10.8.1.94 131991 username hashtadani3 131991 mac 131991 bytes_out 0 131991 bytes_in 0 131991 station_ip 83.123.212.240 131991 port 271 131991 unique_id port 131991 remote_ip 10.8.0.154 131992 username hashtadani3 131992 kill_reason Maximum check online fails reached 131992 mac 131992 bytes_out 0 131992 bytes_in 0 131992 station_ip 83.123.212.240 131992 port 248 131992 unique_id port 132000 username tahmasebi 132000 kill_reason Another user logged on this global unique id 132000 mac 132000 bytes_out 0 132000 bytes_in 0 132000 station_ip 5.119.242.133 132000 port 264 132000 unique_id port 132001 username hashtadani3 132001 mac 132001 bytes_out 0 132001 bytes_in 0 132001 station_ip 83.123.212.240 132001 port 274 132001 unique_id port 132001 remote_ip 10.8.0.154 132002 username aminvpn 132002 mac 132002 bytes_out 0 132002 bytes_in 0 132002 station_ip 151.238.234.160 132002 port 252 132002 unique_id port 132002 remote_ip 10.8.0.14 132003 username barzegar 132003 mac 132003 bytes_out 6371 132003 bytes_in 9036 132003 station_ip 5.120.57.60 132003 port 174 132003 unique_id port 132003 remote_ip 10.8.1.174 132011 username tahmasebi 132011 kill_reason Another user logged on this global unique id 132011 mac 132011 bytes_out 0 132011 bytes_in 0 132011 station_ip 5.119.242.133 132011 port 264 132011 unique_id port 132013 username hashtadani3 132013 mac 132013 bytes_out 1516618 132013 bytes_in 20620655 132013 station_ip 83.123.212.240 132013 port 274 132013 unique_id port 132013 remote_ip 10.8.0.154 132014 username barzegar 132014 mac 132014 bytes_out 0 132014 bytes_in 0 132014 station_ip 5.120.57.60 132014 port 252 132014 unique_id port 132014 remote_ip 10.8.0.234 132020 username hashtadani3 132020 mac 132020 bytes_out 0 132020 bytes_in 0 132020 station_ip 83.123.212.240 132020 port 273 132020 unique_id port 132020 remote_ip 10.8.0.154 132023 username hashtadani3 132023 mac 132023 bytes_out 0 132023 bytes_in 0 132023 station_ip 83.123.212.240 132023 port 273 132023 unique_id port 132023 remote_ip 10.8.0.154 132024 username yarmohamadi 132024 mac 132024 bytes_out 0 132024 bytes_in 0 132024 station_ip 5.120.91.233 132024 port 265 132024 unique_id port 132025 username hashtadani3 132025 mac 132025 bytes_out 0 132025 bytes_in 0 132025 station_ip 83.123.212.240 132025 port 265 132025 unique_id port 132025 remote_ip 10.8.0.154 132034 username irannezhad 132034 mac 132034 bytes_out 0 132034 bytes_in 0 132034 station_ip 113.203.17.65 132034 port 264 132034 unique_id port 132034 remote_ip 10.8.0.182 132036 username sekonji3 132036 mac 132036 bytes_out 0 132036 bytes_in 0 132036 station_ip 113.203.74.53 132036 port 264 132036 unique_id port 132036 remote_ip 10.8.0.6 132045 username sekonji3 132045 mac 132045 bytes_out 0 132045 bytes_in 0 132045 station_ip 113.203.74.53 132045 port 176 132045 unique_id port 132045 remote_ip 10.8.1.238 132048 username barzegar 132048 mac 132048 bytes_out 0 132048 bytes_in 0 132048 station_ip 5.120.57.60 132048 port 174 132048 unique_id port 132005 port 278 132005 unique_id port 132005 remote_ip 10.8.0.14 132006 username aminvpn 132006 mac 132006 bytes_out 0 132006 bytes_in 0 132006 station_ip 83.122.127.103 132006 port 276 132006 unique_id port 132006 remote_ip 10.8.0.14 132008 username sekonji3 132008 mac 132008 bytes_out 0 132008 bytes_in 0 132008 station_ip 113.203.74.53 132008 port 273 132008 unique_id port 132008 remote_ip 10.8.0.6 132009 username barzegar 132009 mac 132009 bytes_out 3158 132009 bytes_in 5459 132009 station_ip 5.120.57.60 132009 port 252 132009 unique_id port 132009 remote_ip 10.8.0.234 132010 username mosi 132010 kill_reason Another user logged on this global unique id 132010 mac 132010 bytes_out 0 132010 bytes_in 0 132010 station_ip 151.235.127.219 132010 port 172 132010 unique_id port 132017 username sekonji3 132017 mac 132017 bytes_out 0 132017 bytes_in 0 132017 station_ip 113.203.74.53 132017 port 278 132017 unique_id port 132017 remote_ip 10.8.0.6 132019 username sekonji3 132019 mac 68756 username arezoo 68756 kill_reason Another user logged on this global unique id 68756 mac 5.237.90.152:49228: Unknown host 68756 bytes_out 0 68756 bytes_in 0 68756 station_ip 5.237.90.152:49228 68756 port 1017 68756 unique_id port 68757 username arezoo 68757 kill_reason Maximum check online fails reached 68757 mac 5.237.90.152:49232: Unknown host 68757 bytes_out 0 68757 bytes_in 0 68757 station_ip 5.237.90.152:49232 68757 port 1017 68757 unique_id port 132019 bytes_out 0 132019 bytes_in 0 132019 station_ip 113.203.74.53 132019 port 278 132019 unique_id port 132019 remote_ip 10.8.0.6 132021 username morteza 132021 mac 132021 bytes_out 0 132021 bytes_in 0 132021 station_ip 37.129.210.102 132021 port 174 132021 unique_id port 132021 remote_ip 10.8.1.62 132027 username sekonji3 132027 mac 132027 bytes_out 0 132027 bytes_in 0 132027 station_ip 113.203.74.53 132027 port 265 132027 unique_id port 132027 remote_ip 10.8.0.6 132029 username mehdizare 132029 mac 132029 bytes_out 35093 132029 bytes_in 50768 132029 station_ip 5.120.78.164 132029 port 175 132029 unique_id port 132029 remote_ip 10.8.1.42 132031 username tahmasebi 132031 mac 132031 bytes_out 0 132031 bytes_in 0 132031 station_ip 5.119.242.133 132031 port 264 132031 unique_id port 132032 username barzegar 132032 mac 132032 bytes_out 15614878 132032 bytes_in 7815980 132032 station_ip 5.120.57.60 132032 port 274 132032 unique_id port 132032 remote_ip 10.8.0.234 132037 username sekonji3 132037 mac 132037 bytes_out 0 132037 bytes_in 0 132037 station_ip 113.203.74.53 132037 port 264 132037 unique_id port 132037 remote_ip 10.8.0.6 132039 username sekonji3 132039 mac 132039 bytes_out 0 132039 bytes_in 0 132039 station_ip 113.203.74.53 132039 port 264 132039 unique_id port 132039 remote_ip 10.8.0.6 132040 username sekonji3 132040 mac 132040 bytes_out 0 132040 bytes_in 0 132040 station_ip 113.203.74.53 132040 port 264 132040 unique_id port 132040 remote_ip 10.8.0.6 132041 username sekonji3 132041 mac 132041 bytes_out 0 132041 bytes_in 0 132041 station_ip 113.203.74.53 132041 port 264 132041 unique_id port 132041 remote_ip 10.8.0.6 132042 username barzegar 132042 mac 132042 bytes_out 0 132042 bytes_in 0 132042 station_ip 5.120.57.60 132042 port 174 132042 unique_id port 132042 remote_ip 10.8.1.174 132044 username hashtadani3 132044 mac 132044 bytes_out 0 132044 bytes_in 0 132044 station_ip 83.123.212.240 132044 port 264 132044 unique_id port 132038 unique_id port 132038 remote_ip 10.8.1.174 132043 username sekonji3 132043 mac 132043 bytes_out 0 132043 bytes_in 0 132043 station_ip 113.203.74.53 132043 port 264 132043 unique_id port 132043 remote_ip 10.8.0.6 132052 username vanila 132052 mac 132052 bytes_out 3322438 132052 bytes_in 4707138 132052 station_ip 83.122.10.8 132052 port 271 68750 username arezoo 68750 kill_reason Maximum check online fails reached 68750 mac 5.237.90.152:49219: Unknown host 68750 bytes_out 0 68750 bytes_in 0 68750 station_ip 5.237.90.152:49219 68750 port 1017 68750 unique_id port 132052 unique_id port 132052 remote_ip 10.8.0.178 132053 username zare 132053 kill_reason Another user logged on this global unique id 132053 mac 132053 bytes_out 0 132053 bytes_in 0 132053 station_ip 37.27.55.76 132053 port 271 132053 unique_id port 132053 remote_ip 10.8.0.18 132054 username barzegar 132054 mac 132054 bytes_out 0 132054 bytes_in 0 132054 station_ip 5.120.57.60 132054 port 177 132054 unique_id port 132054 remote_ip 10.8.1.174 132055 username barzegar 132055 mac 132055 bytes_out 0 132055 bytes_in 0 132055 station_ip 5.120.57.60 132055 port 177 132055 unique_id port 132055 remote_ip 10.8.1.174 132057 username mohammadjavad 132057 mac 132057 bytes_out 36252 132057 bytes_in 99534 132057 station_ip 37.129.46.96 132057 port 274 132057 unique_id port 132057 remote_ip 10.8.0.142 132058 username hashtadani3 132058 mac 132058 bytes_out 0 132058 bytes_in 0 132058 station_ip 83.123.212.240 132058 port 274 132058 unique_id port 132058 remote_ip 10.8.0.154 132061 username hashtadani3 132061 kill_reason Maximum check online fails reached 132061 mac 132061 bytes_out 0 132061 bytes_in 0 132061 station_ip 83.123.212.240 132061 port 274 132061 unique_id port 132063 username barzegar 132063 mac 132063 bytes_out 0 132063 bytes_in 0 132063 station_ip 5.120.57.60 132063 port 178 132063 unique_id port 132063 remote_ip 10.8.1.174 132066 username mehdizare 132066 mac 132066 bytes_out 0 132066 bytes_in 0 132066 station_ip 5.120.78.164 132066 port 175 132066 unique_id port 132066 remote_ip 10.8.1.42 132067 username farhad2 132067 kill_reason Another user logged on this global unique id 132067 mac 132067 bytes_out 0 132067 bytes_in 0 132067 station_ip 5.120.155.59 132067 port 169 132067 unique_id port 132067 remote_ip 10.8.1.222 132072 username malekpoir 132072 mac 132072 bytes_out 0 132072 bytes_in 0 132072 station_ip 5.119.161.16 132072 port 171 132072 unique_id port 132072 remote_ip 10.8.1.54 132078 username barzegar 132078 mac 132078 bytes_out 0 132078 bytes_in 0 132078 station_ip 5.120.57.60 132078 port 174 132078 unique_id port 132078 remote_ip 10.8.1.174 132081 username alihosseini1 132081 mac 132081 bytes_out 1429481 132081 bytes_in 16009125 132081 station_ip 5.119.211.123 132081 port 273 132081 unique_id port 132081 remote_ip 10.8.0.166 132088 username barzegar 132088 mac 132088 bytes_out 0 132088 bytes_in 0 132088 station_ip 5.120.57.60 132088 port 174 132088 unique_id port 132088 remote_ip 10.8.1.174 132091 username aminvpn 132091 unique_id port 132091 terminate_cause Lost-Carrier 132091 bytes_out 2413932 132091 bytes_in 3421803 132091 station_ip 5.120.56.217 132091 port 15730322 132091 nas_port_type Virtual 132091 remote_ip 5.5.5.254 132093 username morteza 132093 mac 132093 bytes_out 0 132093 bytes_in 0 132093 station_ip 37.129.183.122 132093 port 173 132093 unique_id port 132093 remote_ip 10.8.1.62 132094 username morteza 132094 mac 132044 remote_ip 10.8.0.154 132046 username sekonji3 132046 mac 132046 bytes_out 0 132046 bytes_in 0 132046 station_ip 113.203.74.53 132046 port 176 132046 unique_id port 132046 remote_ip 10.8.1.238 132047 username barzegar 132047 mac 132047 bytes_out 0 132047 bytes_in 0 132047 station_ip 5.120.57.60 132047 port 174 132047 unique_id port 132047 remote_ip 10.8.1.174 132049 username yahodi 132049 kill_reason Another user logged on this global unique id 132049 mac 132049 bytes_out 0 132049 bytes_in 0 132049 station_ip 83.122.159.100 132049 port 252 132049 unique_id port 132051 username sekonji3 132051 mac 132051 bytes_out 0 132051 bytes_in 0 132051 station_ip 113.203.74.53 132051 port 174 132051 unique_id port 132051 remote_ip 10.8.1.238 132056 username hashtadani3 132056 mac 132056 bytes_out 0 132056 bytes_in 0 132056 station_ip 83.123.212.240 132056 port 278 132056 unique_id port 132056 remote_ip 10.8.0.154 132060 username zare 132060 kill_reason Another user logged on this global unique id 132060 mac 132060 bytes_out 0 132060 bytes_in 0 132060 station_ip 37.27.55.76 132060 port 271 132060 unique_id port 132065 username barzegar 132065 mac 132065 bytes_out 0 132065 bytes_in 0 132065 station_ip 5.120.57.60 132065 port 178 132065 unique_id port 132065 remote_ip 10.8.1.174 132068 username sekonji3 132068 mac 132068 bytes_out 0 132068 bytes_in 0 132068 station_ip 113.203.74.53 132068 port 174 132068 unique_id port 132068 remote_ip 10.8.1.238 132069 username zare 132069 kill_reason Another user logged on this global unique id 132069 mac 132069 bytes_out 0 132069 bytes_in 0 132069 station_ip 37.27.55.76 132069 port 271 132069 unique_id port 132071 username barzegar 132071 mac 132071 bytes_out 0 132071 bytes_in 0 132071 station_ip 5.120.57.60 132071 port 174 132071 unique_id port 132071 remote_ip 10.8.1.174 132076 username barzegar 132076 mac 132076 bytes_out 0 132076 bytes_in 0 132076 station_ip 5.120.57.60 132076 port 278 132076 unique_id port 132076 remote_ip 10.8.0.234 132079 username alireza 132079 unique_id port 132079 terminate_cause Lost-Carrier 132079 bytes_out 254865 132079 bytes_in 4287518 132079 station_ip 5.120.1.250 132079 port 15730329 132079 nas_port_type Virtual 132079 remote_ip 5.5.5.200 132080 username zare 132080 kill_reason Another user logged on this global unique id 132080 mac 132080 bytes_out 0 132080 bytes_in 0 132080 station_ip 37.27.55.76 132080 port 271 132080 unique_id port 132083 username hashtadani3 132083 kill_reason Maximum check online fails reached 132083 mac 132083 bytes_out 0 132083 bytes_in 0 132083 station_ip 83.123.212.240 132083 port 278 132083 unique_id port 132084 username hashtadani3 132084 mac 132084 bytes_out 0 132084 bytes_in 0 132084 station_ip 83.123.212.240 132084 port 175 132084 unique_id port 132084 remote_ip 10.8.1.94 132087 username mehdizare 132087 mac 132087 bytes_out 0 132087 bytes_in 0 132087 station_ip 5.120.78.164 132087 port 279 132087 unique_id port 132087 remote_ip 10.8.0.90 132095 username morteza 132095 mac 132095 bytes_out 0 132095 bytes_in 0 132095 station_ip 37.129.183.122 132095 port 264 132095 unique_id port 132095 remote_ip 10.8.0.46 132100 username aminvpn 132100 mac 132100 bytes_out 1521269 132100 bytes_in 6281111 132100 station_ip 83.122.127.103 132100 port 276 132100 unique_id port 132100 remote_ip 10.8.0.14 132104 username hashtadani3 132104 kill_reason Maximum check online fails reached 132104 mac 132104 bytes_out 0 132104 bytes_in 0 132048 remote_ip 10.8.1.174 132050 username hashtadani3 132050 mac 132050 bytes_out 0 132050 bytes_in 0 132050 station_ip 83.123.212.240 132050 port 274 132050 unique_id port 132050 remote_ip 10.8.0.154 132059 username mosi 132059 kill_reason Another user logged on this global unique id 132059 mac 132059 bytes_out 0 132059 bytes_in 0 132059 station_ip 151.235.127.219 132059 port 172 132059 unique_id port 132062 username zare 132062 kill_reason Another user logged on this global unique id 132062 mac 132062 bytes_out 0 132062 bytes_in 0 132062 station_ip 37.27.55.76 132062 port 271 132062 unique_id port 132064 username alihosseini1 132064 mac 132064 bytes_out 0 132064 bytes_in 0 132064 station_ip 5.119.211.123 132064 port 273 132064 unique_id port 132064 remote_ip 10.8.0.166 132070 username hashtadani3 132070 mac 132070 bytes_out 0 132070 bytes_in 0 132070 station_ip 83.123.212.240 132070 port 177 132070 unique_id port 132070 remote_ip 10.8.1.94 132073 username yahodi 132073 kill_reason Another user logged on this global unique id 132073 mac 132073 bytes_out 0 132073 bytes_in 0 132073 station_ip 83.122.159.100 132073 port 252 132073 unique_id port 132074 username mehdizare 132074 mac 132074 bytes_out 0 132074 bytes_in 0 132074 station_ip 5.120.78.164 132074 port 278 132074 unique_id port 132074 remote_ip 10.8.0.90 132075 username rahmani 132075 kill_reason Another user logged on this global unique id 132075 mac 132075 bytes_out 0 132075 bytes_in 0 132075 station_ip 113.203.54.191 132075 port 265 132075 unique_id port 132075 remote_ip 10.8.0.94 132077 username zare 132077 kill_reason Another user logged on this global unique id 132077 mac 132077 bytes_out 0 132077 bytes_in 0 132077 station_ip 37.27.55.76 132077 port 271 132077 unique_id port 132082 username rahmani 132082 mac 132082 bytes_out 0 132082 bytes_in 0 132082 station_ip 113.203.54.191 132082 port 265 132082 unique_id port 132085 username morteza 132085 mac 132085 bytes_out 226654 132085 bytes_in 2253931 132085 station_ip 37.129.183.122 132085 port 174 132085 unique_id port 132085 remote_ip 10.8.1.62 132086 username morteza 132086 mac 132086 bytes_out 0 132086 bytes_in 0 132086 station_ip 37.129.183.122 132086 port 175 132086 unique_id port 132086 remote_ip 10.8.1.62 132089 username godarzi 132089 mac 132089 bytes_out 3061307 132089 bytes_in 29391742 132089 station_ip 5.119.100.88 132089 port 173 132089 unique_id port 132089 remote_ip 10.8.1.230 132090 username sabaghnezhad 132090 mac 132090 bytes_out 182438 132090 bytes_in 967594 132090 station_ip 37.129.206.65 132090 port 264 132090 unique_id port 132090 remote_ip 10.8.0.186 132092 username zare 132092 kill_reason Another user logged on this global unique id 132092 mac 132092 bytes_out 0 132092 bytes_in 0 132092 station_ip 37.27.55.76 132092 port 271 132092 unique_id port 132098 username zare 132098 kill_reason Another user logged on this global unique id 132098 mac 132098 bytes_out 0 132098 bytes_in 0 132098 station_ip 37.27.55.76 132098 port 271 132098 unique_id port 132102 username morteza 132102 mac 132102 bytes_out 0 132102 bytes_in 0 132102 station_ip 37.129.183.122 132102 port 276 132102 unique_id port 132102 remote_ip 10.8.0.46 132103 username hashtadani3 132103 mac 132103 bytes_out 0 132103 bytes_in 0 132103 station_ip 83.123.212.240 132103 port 276 132103 unique_id port 132103 remote_ip 10.8.0.154 132105 username khademi 132105 mac 132105 bytes_out 0 132105 bytes_in 0 132105 station_ip 113.203.13.195 132094 bytes_out 0 132094 bytes_in 0 132094 station_ip 37.129.183.122 132094 port 173 132094 unique_id port 132094 remote_ip 10.8.1.62 132096 username yahodi 132096 kill_reason Another user logged on this global unique id 132096 mac 132096 bytes_out 0 132096 bytes_in 0 132096 station_ip 83.122.159.100 132096 port 252 132096 unique_id port 132097 username morteza 132097 mac 132097 bytes_out 0 132097 bytes_in 0 132097 station_ip 37.129.183.122 132097 port 273 132097 unique_id port 132097 remote_ip 10.8.0.46 132099 username hashtadani3 132099 mac 132099 bytes_out 0 132099 bytes_in 0 132099 station_ip 83.123.212.240 132099 port 174 132099 unique_id port 132099 remote_ip 10.8.1.94 132101 username hashtadani3 132101 mac 132101 bytes_out 0 132101 bytes_in 0 132101 station_ip 83.123.212.240 132101 port 174 132101 unique_id port 132101 remote_ip 10.8.1.94 132106 username mehdizare 132106 mac 132106 bytes_out 0 132106 bytes_in 0 132106 station_ip 5.120.78.164 132106 port 265 132106 unique_id port 132106 remote_ip 10.8.0.90 132107 username morteza 132107 mac 132107 bytes_out 0 132107 bytes_in 0 132107 station_ip 37.129.183.122 132107 port 174 132107 unique_id port 132107 remote_ip 10.8.1.62 132109 username barzegar 132109 mac 132109 bytes_out 0 132109 bytes_in 0 132109 station_ip 5.120.57.60 132109 port 173 132109 unique_id port 132109 remote_ip 10.8.1.174 132110 username hashtadani3 132110 mac 132110 bytes_out 0 132110 bytes_in 0 132110 station_ip 83.123.212.240 132110 port 279 132110 unique_id port 132110 remote_ip 10.8.0.154 132112 username yarmohamadi 132112 kill_reason Another user logged on this global unique id 132112 mac 132112 bytes_out 0 132112 bytes_in 0 132112 station_ip 5.120.85.230 132112 port 176 132112 unique_id port 132112 remote_ip 10.8.1.234 132113 username zare 132113 kill_reason Another user logged on this global unique id 132113 mac 132113 bytes_out 0 132113 bytes_in 0 132113 station_ip 37.27.55.76 132113 port 271 132113 unique_id port 132114 username barzegar 132114 mac 132114 bytes_out 0 132114 bytes_in 0 132114 station_ip 5.120.57.60 132114 port 279 132114 unique_id port 132114 remote_ip 10.8.0.234 132115 username morteza 132115 mac 132115 bytes_out 0 132115 bytes_in 0 132115 station_ip 37.129.183.122 132115 port 280 132115 unique_id port 132115 remote_ip 10.8.0.46 132118 username aminvpn 132118 unique_id port 132118 terminate_cause Lost-Carrier 132118 bytes_out 43503326 132118 bytes_in 256264189 132118 station_ip 151.238.234.160 132118 port 15730327 132118 nas_port_type Virtual 132118 remote_ip 5.5.5.166 132119 username morteza 132119 mac 132119 bytes_out 0 132119 bytes_in 0 132119 station_ip 37.129.183.122 132119 port 169 132119 unique_id port 132119 remote_ip 10.8.1.62 132121 username yahodi 132121 kill_reason Another user logged on this global unique id 132121 mac 132121 bytes_out 0 132121 bytes_in 0 132121 station_ip 83.122.159.100 132121 port 252 132121 unique_id port 132126 username mehdizare 132126 mac 132126 bytes_out 0 132126 bytes_in 0 132126 station_ip 5.120.78.164 132126 port 259 132126 unique_id port 132126 remote_ip 10.8.0.90 132132 username zare 132132 kill_reason Another user logged on this global unique id 132132 mac 132132 bytes_out 0 132132 bytes_in 0 132132 station_ip 37.27.55.76 132132 port 271 132132 unique_id port 132135 username zare 132135 kill_reason Another user logged on this global unique id 132135 mac 132135 bytes_out 0 132135 bytes_in 0 132135 station_ip 37.27.55.76 132135 port 271 132104 station_ip 83.123.212.240 132104 port 264 132104 unique_id port 132108 username zare 132108 kill_reason Another user logged on this global unique id 132108 mac 132108 bytes_out 0 132108 bytes_in 0 132108 station_ip 37.27.55.76 132108 port 271 132108 unique_id port 132117 username morteza 132117 mac 132117 bytes_out 0 132117 bytes_in 0 132117 station_ip 37.129.183.122 132117 port 169 132117 unique_id port 132117 remote_ip 10.8.1.62 132120 username hashtadani3 132120 mac 132120 bytes_out 0 132120 bytes_in 0 132120 station_ip 83.123.212.240 132120 port 281 132120 unique_id port 132120 remote_ip 10.8.0.154 132122 username zare 132122 kill_reason Another user logged on this global unique id 132122 mac 132122 bytes_out 0 132122 bytes_in 0 132122 station_ip 37.27.55.76 132122 port 271 132122 unique_id port 132123 username hashtadani3 132123 mac 132123 bytes_out 0 132123 bytes_in 0 132123 station_ip 83.123.212.240 132123 port 281 132123 unique_id port 132123 remote_ip 10.8.0.154 132124 username hashtadani3 132124 mac 132124 bytes_out 0 132124 bytes_in 0 132124 station_ip 83.123.212.240 132124 port 281 132124 unique_id port 132124 remote_ip 10.8.0.154 132125 username saeed9658 132125 mac 132125 bytes_out 3083269 132125 bytes_in 978947 132125 station_ip 5.119.211.234 132125 port 265 132125 unique_id port 132125 remote_ip 10.8.0.62 132128 username hashtadani3 132128 mac 132128 bytes_out 0 132128 bytes_in 0 132128 station_ip 83.123.212.240 132128 port 259 132128 unique_id port 132128 remote_ip 10.8.0.154 132130 username yahodi 132130 kill_reason Another user logged on this global unique id 132130 mac 132130 bytes_out 0 132130 bytes_in 0 132130 station_ip 83.122.159.100 132130 port 252 132130 unique_id port 132131 username sedighe 132131 mac 132131 bytes_out 0 132131 bytes_in 0 132131 station_ip 37.129.38.214 132131 port 259 132131 unique_id port 132131 remote_ip 10.8.0.146 132136 username barzegar 132136 mac 132136 bytes_out 0 132136 bytes_in 0 132136 station_ip 5.120.57.60 132136 port 279 132136 unique_id port 132136 remote_ip 10.8.0.234 132139 username hosseine 132139 kill_reason Another user logged on this global unique id 132139 mac 132139 bytes_out 0 132139 bytes_in 0 132139 station_ip 37.129.40.108 132139 port 272 132139 unique_id port 132139 remote_ip 10.8.0.238 132140 username hashtadani3 132140 mac 132140 bytes_out 0 132140 bytes_in 0 132140 station_ip 83.123.212.240 132140 port 259 132140 unique_id port 132140 remote_ip 10.8.0.154 132147 username mehdizare 132147 mac 132147 bytes_out 0 132147 bytes_in 0 68850 username arezoo 68850 kill_reason Maximum check online fails reached 68850 mac 5.237.75.76:49222: Unknown host 68850 bytes_out 0 68850 bytes_in 0 68850 station_ip 5.237.75.76:49222 68850 port 1017 68850 unique_id port 132147 station_ip 5.120.78.164 132147 port 169 132147 unique_id port 132147 remote_ip 10.8.1.42 132148 username zare 132148 kill_reason Another user logged on this global unique id 132148 mac 132148 bytes_out 0 132148 bytes_in 0 132148 station_ip 37.27.55.76 132148 port 271 132148 unique_id port 132156 username zare 132156 kill_reason Another user logged on this global unique id 132156 mac 132156 bytes_out 0 132156 bytes_in 0 132156 station_ip 37.27.55.76 132156 port 271 132156 unique_id port 132162 username hashtadani3 132162 kill_reason Another user logged on this global unique id 132162 mac 132162 bytes_out 0 132162 bytes_in 0 132162 station_ip 83.123.212.240 132162 port 280 132162 unique_id port 132162 remote_ip 10.8.0.154 132105 port 259 132105 unique_id port 132111 username farhad2 132111 mac 132111 bytes_out 0 132111 bytes_in 0 132111 station_ip 5.120.155.59 132111 port 169 132111 unique_id port 132116 username morteza 132116 mac 132116 bytes_out 0 132116 bytes_in 0 132116 station_ip 37.129.183.122 132116 port 281 132116 unique_id port 132116 remote_ip 10.8.0.46 132127 username mosi 132127 kill_reason Another user logged on this global unique id 132127 mac 132127 bytes_out 0 132127 bytes_in 0 132127 station_ip 151.235.127.219 132127 port 172 132127 unique_id port 132129 username sedighe 132129 mac 132129 bytes_out 0 132129 bytes_in 0 132129 station_ip 37.129.74.117 132129 port 280 132129 unique_id port 132129 remote_ip 10.8.0.146 132133 username hashtadani3 132133 mac 132133 bytes_out 0 132133 bytes_in 0 132133 station_ip 83.123.212.240 132133 port 259 132133 unique_id port 132133 remote_ip 10.8.0.154 132134 username hashtadani3 132134 mac 132134 bytes_out 0 132134 bytes_in 0 132134 station_ip 83.123.212.240 132134 port 259 132134 unique_id port 132134 remote_ip 10.8.0.154 132138 username vanila 132138 mac 132138 bytes_out 2114290 132138 bytes_in 420528 132138 station_ip 83.122.96.200 132138 port 259 132138 unique_id port 132138 remote_ip 10.8.0.178 132142 username zare 132142 kill_reason Another user logged on this global unique id 132142 mac 132142 bytes_out 0 132142 bytes_in 0 132142 station_ip 37.27.55.76 132142 port 271 132142 unique_id port 132144 username yahodi 132144 kill_reason Another user logged on this global unique id 132144 mac 132144 bytes_out 0 132144 bytes_in 0 132144 station_ip 83.122.159.100 132144 port 252 132144 unique_id port 132146 username vanila 132146 mac 132146 bytes_out 0 132146 bytes_in 0 132146 station_ip 83.122.96.200 132146 port 259 132146 unique_id port 132146 remote_ip 10.8.0.178 132150 username barzegar 132150 mac 132150 bytes_out 0 132150 bytes_in 0 132150 station_ip 5.120.57.60 132150 port 169 132150 unique_id port 132150 remote_ip 10.8.1.174 132151 username barzegar 132151 mac 132151 bytes_out 0 132151 bytes_in 0 132151 station_ip 5.120.57.60 132151 port 169 132151 unique_id port 132151 remote_ip 10.8.1.174 132153 username yahodi 132153 kill_reason Another user logged on this global unique id 132153 mac 132153 bytes_out 0 132153 bytes_in 0 132153 station_ip 83.122.159.100 132153 port 252 132153 unique_id port 132159 username zare 132159 kill_reason Another user logged on this global unique id 132159 mac 132159 bytes_out 0 132159 bytes_in 0 132159 station_ip 37.27.55.76 132159 port 271 132159 unique_id port 132160 username yahodi 132160 kill_reason Another user logged on this global unique id 132160 mac 132160 bytes_out 0 132160 bytes_in 0 132160 station_ip 83.122.159.100 132160 port 252 132160 unique_id port 132161 username amirabbas 132161 unique_id port 132161 terminate_cause User-Request 132161 bytes_out 21005000 132161 bytes_in 548605863 132161 station_ip 37.27.30.23 132161 port 15730328 132161 nas_port_type Virtual 132161 remote_ip 5.5.5.185 132163 username vanila 132163 mac 132163 bytes_out 11813285 132163 bytes_in 15065594 132163 station_ip 83.122.96.200 132163 port 259 132163 unique_id port 132163 remote_ip 10.8.0.178 132165 username barzegar 132165 mac 132165 bytes_out 0 132165 bytes_in 0 132165 station_ip 5.120.57.60 132165 port 259 132165 unique_id port 132165 remote_ip 10.8.0.234 132170 username hashtadani3 132170 mac 132170 bytes_out 0 132170 bytes_in 0 132170 station_ip 83.123.212.240 132135 unique_id port 132137 username yarmohamadi 132137 mac 132137 bytes_out 0 132137 bytes_in 0 132137 station_ip 5.120.85.230 132137 port 176 132137 unique_id port 132141 username barzegar 132141 mac 132141 bytes_out 15875 132141 bytes_in 37138 132141 station_ip 5.120.57.60 132141 port 280 132141 unique_id port 132141 remote_ip 10.8.0.234 132143 username barzegar 132143 mac 132143 bytes_out 0 132143 bytes_in 0 132143 station_ip 5.120.57.60 132143 port 280 132143 unique_id port 132143 remote_ip 10.8.0.234 132145 username hashtadani3 132145 mac 132145 bytes_out 0 132145 bytes_in 0 132145 station_ip 83.123.212.240 132145 port 280 132145 unique_id port 132145 remote_ip 10.8.0.154 68872 username arezoo 68872 kill_reason Maximum check online fails reached 68872 mac 5.237.75.76:49636: Unknown host 68872 bytes_out 0 68872 bytes_in 0 68872 station_ip 5.237.75.76:49636 68872 port 1017 68872 unique_id port 132149 username mehdizare 132149 mac 132149 bytes_out 0 132149 bytes_in 0 132149 station_ip 5.120.78.164 132149 port 280 132149 unique_id port 132149 remote_ip 10.8.0.90 132152 username hashtadani3 132152 mac 132152 bytes_out 0 132152 bytes_in 0 132152 station_ip 83.123.212.240 132152 port 280 132152 unique_id port 132152 remote_ip 10.8.0.154 132154 username zare 132154 kill_reason Another user logged on this global unique id 132154 mac 132154 bytes_out 0 132154 bytes_in 0 132154 station_ip 37.27.55.76 132154 port 271 132154 unique_id port 132155 username hashtadani3 132155 mac 132155 bytes_out 0 132155 bytes_in 0 132155 station_ip 83.123.212.240 132155 port 280 132155 unique_id port 132155 remote_ip 10.8.0.154 132157 username mosi 132157 kill_reason Another user logged on this global unique id 132157 mac 132157 bytes_out 0 132157 bytes_in 0 132157 station_ip 151.235.127.219 132157 port 172 132157 unique_id port 132158 username morteza 132158 mac 132158 bytes_out 0 132158 bytes_in 0 132158 station_ip 37.129.145.130 132158 port 169 132158 unique_id port 132158 remote_ip 10.8.1.62 132164 username zare 132164 kill_reason Another user logged on this global unique id 132164 mac 132164 bytes_out 0 132164 bytes_in 0 132164 station_ip 37.27.55.76 132164 port 271 132164 unique_id port 132167 username zare 132167 kill_reason Another user logged on this global unique id 132167 mac 132167 bytes_out 0 132167 bytes_in 0 132167 station_ip 37.27.55.76 132167 port 271 132167 unique_id port 132168 username mosi 132168 kill_reason Another user logged on this global unique id 132168 mac 132168 bytes_out 0 132168 bytes_in 0 132168 station_ip 151.235.127.219 132168 port 172 132168 unique_id port 132173 username khalili 132173 mac 132173 bytes_out 0 132173 bytes_in 0 132173 station_ip 5.119.131.147 132173 port 168 132173 unique_id port 132173 remote_ip 10.8.1.18 132176 username mehdizare 132176 mac 132176 bytes_out 0 132176 bytes_in 0 132176 station_ip 5.120.78.164 132176 port 281 132176 unique_id port 132176 remote_ip 10.8.0.90 132181 username rahmani 132181 mac 132181 bytes_out 3484214 132181 bytes_in 60937477 132181 station_ip 113.203.10.219 132181 port 282 132181 unique_id port 132181 remote_ip 10.8.0.94 132183 username zare 132183 kill_reason Another user logged on this global unique id 132183 mac 132183 bytes_out 0 132183 bytes_in 0 132183 station_ip 37.27.55.76 132183 port 271 132183 unique_id port 132190 username hashtadani3 132190 mac 132190 bytes_out 0 132190 bytes_in 0 132190 station_ip 83.123.212.240 132190 port 274 132190 unique_id port 132166 username yahodi 132166 mac 132166 bytes_out 0 132166 bytes_in 0 132166 station_ip 83.122.159.100 132166 port 252 132166 unique_id port 132169 username khalili 68863 username arezoo 68863 kill_reason Maximum check online fails reached 68863 mac 5.237.75.76:49188: Unknown host 68863 bytes_out 0 68863 bytes_in 0 68863 station_ip 5.237.75.76:49188 68863 port 1017 68863 unique_id port 132169 kill_reason Another user logged on this global unique id 132169 mac 132169 bytes_out 0 132169 bytes_in 0 132169 station_ip 5.119.131.147 132169 port 168 132169 unique_id port 132174 username khalili 132174 mac 132174 bytes_out 5138 132174 bytes_in 23342 132174 station_ip 5.119.131.147 132174 port 169 132174 unique_id port 132174 remote_ip 10.8.1.18 132177 username hashtadani3 132177 kill_reason Another user logged on this global unique id 132177 mac 132177 bytes_out 0 132177 bytes_in 0 132177 station_ip 83.123.212.240 132177 port 274 132177 unique_id port 132177 remote_ip 10.8.0.154 132179 username zare 132179 kill_reason Another user logged on this global unique id 132179 mac 132179 bytes_out 0 132179 bytes_in 0 132179 station_ip 37.27.55.76 132179 port 271 132179 unique_id port 132180 username mohammadjavad 132180 mac 132180 bytes_out 0 132180 bytes_in 0 132180 station_ip 37.129.53.3 132180 port 279 132180 unique_id port 132180 remote_ip 10.8.0.142 132182 username mosi 132182 mac 132182 bytes_out 0 132182 bytes_in 0 132182 station_ip 151.235.127.219 132182 port 172 132182 unique_id port 132184 username jafari 132184 kill_reason Another user logged on this global unique id 132184 mac 132184 bytes_out 0 132184 bytes_in 0 132184 station_ip 94.24.17.229 132184 port 279 132184 unique_id port 132184 remote_ip 10.8.0.242 132188 username mohammadmahdi 132188 kill_reason Another user logged on this global unique id 132188 mac 132188 bytes_out 0 132188 bytes_in 0 132188 station_ip 5.120.89.69 132188 port 252 132188 unique_id port 132188 remote_ip 10.8.0.54 132191 username barzegar 132191 mac 132191 bytes_out 0 132191 bytes_in 0 132191 station_ip 5.120.57.60 132191 port 283 132191 unique_id port 132191 remote_ip 10.8.0.234 132196 username hashtadani3 132196 mac 132196 bytes_out 0 132196 bytes_in 0 132196 station_ip 83.123.212.240 132196 port 172 132196 unique_id port 132196 remote_ip 10.8.1.94 132203 username hashtadani3 132203 mac 132203 bytes_out 0 132203 bytes_in 0 132203 station_ip 83.123.212.240 132203 port 271 132203 unique_id port 132203 remote_ip 10.8.0.154 132205 username mohammadmahdi 132205 kill_reason Another user logged on this global unique id 132205 mac 132205 bytes_out 0 132205 bytes_in 0 132205 station_ip 5.120.89.69 132205 port 252 132205 unique_id port 132206 username barzegar 132206 mac 132206 bytes_out 0 132206 bytes_in 0 132206 station_ip 5.120.57.60 132206 port 284 132206 unique_id port 132206 remote_ip 10.8.0.234 132209 username yahodi 132209 kill_reason Another user logged on this global unique id 132209 mac 132209 bytes_out 0 132209 bytes_in 0 132209 station_ip 83.122.179.24 132209 port 280 132209 unique_id port 132209 remote_ip 10.8.0.202 132215 username hamid 132215 kill_reason Another user logged on this global unique id 132215 mac 132215 bytes_out 0 132215 bytes_in 0 132215 station_ip 37.129.101.124 132215 port 274 132215 unique_id port 132215 remote_ip 10.8.0.106 132216 username aminvpn 132216 mac 132216 bytes_out 0 132216 bytes_in 0 132216 station_ip 83.122.127.103 132216 port 265 132216 unique_id port 132216 remote_ip 10.8.0.14 132217 username aminvpn 132217 mac 132170 port 280 132170 unique_id port 132171 username zare 132171 kill_reason Another user logged on this global unique id 132171 mac 132171 bytes_out 0 132171 bytes_in 0 132171 station_ip 37.27.55.76 132171 port 271 132171 unique_id port 132172 username khalili 132172 mac 132172 bytes_out 0 132172 bytes_in 0 132172 station_ip 5.119.131.147 132172 port 168 132172 unique_id port 132175 username zare 132175 kill_reason Another user logged on this global unique id 132175 mac 132175 bytes_out 0 132175 bytes_in 0 132175 station_ip 37.27.55.76 132175 port 271 132175 unique_id port 132178 username barzegar 132178 mac 132178 bytes_out 0 132178 bytes_in 0 132178 station_ip 5.120.57.60 132178 port 169 132178 unique_id port 132178 remote_ip 10.8.1.174 132185 username aminvpn 132185 unique_id port 132185 terminate_cause User-Request 132185 bytes_out 623353 132185 bytes_in 10983212 132185 station_ip 5.120.72.205 132185 port 15730332 132185 nas_port_type Virtual 132185 remote_ip 5.5.5.212 132186 username vanila 132186 mac 132186 bytes_out 8933404 132186 bytes_in 2645509 132186 station_ip 83.122.4.120 132186 port 259 132186 unique_id port 132186 remote_ip 10.8.0.178 132187 username zare 132187 kill_reason Another user logged on this global unique id 132187 mac 132187 bytes_out 0 132187 bytes_in 0 132187 station_ip 37.27.55.76 132187 port 271 132187 unique_id port 132189 username jafari 132189 kill_reason Another user logged on this global unique id 132189 mac 132189 bytes_out 0 132189 bytes_in 0 132189 station_ip 94.24.17.229 132189 port 279 132189 unique_id port 132193 username hashtadani3 132193 mac 132193 bytes_out 0 132193 bytes_in 0 132193 station_ip 83.123.212.240 132193 port 172 132193 unique_id port 132193 remote_ip 10.8.1.94 132194 username hashtadani3 132194 mac 132194 bytes_out 0 132194 bytes_in 0 132194 station_ip 83.123.212.240 132194 port 284 132194 unique_id port 132194 remote_ip 10.8.0.154 132198 username alipour 132198 kill_reason Another user logged on this global unique id 132198 mac 132198 bytes_out 0 132198 bytes_in 0 132198 station_ip 37.129.8.191 132198 port 265 132198 unique_id port 132198 remote_ip 10.8.0.102 132199 username zare 132199 mac 132199 bytes_out 0 132199 bytes_in 0 132199 station_ip 37.27.55.76 132199 port 271 132199 unique_id port 132201 username hashtadani3 132201 kill_reason Maximum check online fails reached 132201 mac 132201 bytes_out 0 132201 bytes_in 0 132201 station_ip 83.123.212.240 132201 port 283 132201 unique_id port 132204 username hashtadani3 132204 kill_reason Maximum number of concurrent logins reached 132204 mac 132204 bytes_out 0 132204 bytes_in 0 132204 station_ip 83.123.212.240 132204 port 169 132204 unique_id port 132207 username hashtadani3 132207 kill_reason Maximum check online fails reached 132207 mac 132207 bytes_out 0 132207 bytes_in 0 132207 station_ip 83.123.212.240 132207 port 281 132207 unique_id port 132208 username hashtadani3 132208 kill_reason Maximum check online fails reached 132208 mac 132208 bytes_out 0 132208 bytes_in 0 132208 station_ip 83.123.212.240 132208 port 271 132208 unique_id port 132210 username alipour 132210 mac 132210 bytes_out 0 132210 bytes_in 0 132210 station_ip 37.129.8.191 132210 port 265 132210 unique_id port 132211 username barzegar 132211 mac 132211 bytes_out 0 132211 bytes_in 0 132211 station_ip 5.120.57.60 132211 port 169 132211 unique_id port 132211 remote_ip 10.8.1.174 132212 username aminvpn 132212 mac 132212 bytes_out 0 132212 bytes_in 0 132212 station_ip 83.122.127.103 132192 username hashtadani3 132192 mac 132192 bytes_out 0 132192 bytes_in 0 132192 station_ip 83.123.212.240 132192 port 172 132192 unique_id port 132192 remote_ip 10.8.1.94 132195 username mosi 132195 mac 132195 bytes_out 0 132195 bytes_in 0 132195 station_ip 151.235.127.219 132195 port 169 132195 unique_id port 68890 username arezoo 68890 kill_reason Maximum check online fails reached 68890 mac 5.237.75.166:49180: Unknown host 68890 bytes_out 0 68890 bytes_in 0 68890 station_ip 5.237.75.166:49180 68890 port 1017 68890 unique_id port 132195 remote_ip 10.8.1.86 132197 username sedighe 132197 mac 132197 bytes_out 112525 132197 bytes_in 715028 132197 station_ip 37.129.38.214 132197 port 281 132197 unique_id port 132197 remote_ip 10.8.0.146 132200 username hashtadani3 132200 mac 132200 bytes_out 0 132200 bytes_in 0 132200 station_ip 83.123.212.240 132200 port 281 132200 unique_id port 132200 remote_ip 10.8.0.154 132202 username godarzi 132202 kill_reason Another user logged on this global unique id 132202 mac 132202 bytes_out 0 132202 bytes_in 0 132202 station_ip 5.202.6.3 132202 port 173 132202 unique_id port 132202 remote_ip 10.8.1.230 132214 username aminvpn 132214 mac 132214 bytes_out 0 132214 bytes_in 0 132214 station_ip 83.122.127.103 132214 port 273 132214 unique_id port 132214 remote_ip 10.8.0.14 132220 username aminvpn 132220 mac 132220 bytes_out 0 132220 bytes_in 0 132220 station_ip 83.122.127.103 132220 port 273 132220 unique_id port 132220 remote_ip 10.8.0.14 132226 username hosseine 132226 kill_reason Another user logged on this global unique id 132226 mac 132226 bytes_out 0 132226 bytes_in 0 132226 station_ip 37.129.40.108 132226 port 272 132226 unique_id port 132227 username aminvpn 132227 mac 132227 bytes_out 0 132227 bytes_in 0 132227 station_ip 83.122.127.103 132227 port 265 132227 unique_id port 132227 remote_ip 10.8.0.14 132228 username aminvpn 132228 mac 132228 bytes_out 0 132228 bytes_in 0 132228 station_ip 83.122.127.103 132228 port 285 68911 username arezoo 68911 kill_reason Maximum check online fails reached 68911 mac 5.237.69.213:49185: Unknown host 68911 bytes_out 0 68911 bytes_in 0 68911 station_ip 5.237.69.213:49185 68911 port 1017 68911 unique_id port 132228 unique_id port 132228 remote_ip 10.8.0.14 132230 username barzegar 132230 mac 132230 bytes_out 0 132230 bytes_in 0 132230 station_ip 5.120.57.60 132230 port 169 132230 unique_id port 132230 remote_ip 10.8.1.174 132231 username aminvpn 132231 mac 132231 bytes_out 0 132231 bytes_in 0 132231 station_ip 83.122.127.103 132231 port 265 132231 unique_id port 132231 remote_ip 10.8.0.14 132233 username aminvpn 132233 mac 132233 bytes_out 0 132233 bytes_in 0 132233 station_ip 83.122.127.103 132233 port 287 132233 unique_id port 132233 remote_ip 10.8.0.14 132236 username hamid 132236 mac 132236 bytes_out 0 132236 bytes_in 0 132236 station_ip 37.129.101.124 132236 port 274 132236 unique_id port 132238 username aminvpn 132238 mac 132238 bytes_out 0 132238 bytes_in 0 132238 station_ip 83.122.127.103 132238 port 265 132238 unique_id port 132238 remote_ip 10.8.0.14 132239 username aminvpn 132239 mac 132239 bytes_out 0 132239 bytes_in 0 132239 station_ip 83.122.127.103 132239 port 274 132239 unique_id port 132239 remote_ip 10.8.0.14 132240 username aminvpn 132240 mac 132240 bytes_out 0 132240 bytes_in 0 132240 station_ip 83.122.127.103 132240 port 265 132240 unique_id port 132240 remote_ip 10.8.0.14 132212 port 273 132212 unique_id port 132212 remote_ip 10.8.0.14 132213 username aminvpn 132213 mac 132213 bytes_out 0 132213 bytes_in 0 132213 station_ip 83.122.127.103 132213 port 265 132213 unique_id port 132213 remote_ip 10.8.0.14 132218 username aminvpn 132218 mac 132218 bytes_out 0 132218 bytes_in 0 132218 station_ip 83.122.127.103 132218 port 265 132218 unique_id port 132218 remote_ip 10.8.0.14 132221 username yahodi 132221 kill_reason Another user logged on this global unique id 132221 mac 132221 bytes_out 0 132221 bytes_in 0 132221 station_ip 83.122.179.24 132221 port 280 132221 unique_id port 132222 username aminvpn 132222 mac 132222 bytes_out 0 132222 bytes_in 0 132222 station_ip 83.122.127.103 132222 port 265 132222 unique_id port 132222 remote_ip 10.8.0.14 132232 username mehdizare 132232 mac 132232 bytes_out 0 132232 bytes_in 0 132232 station_ip 5.119.249.232 132232 port 280 132232 unique_id port 132232 remote_ip 10.8.0.90 132242 username amirabbas 132242 unique_id port 132242 terminate_cause User-Request 132242 bytes_out 18008673 132242 bytes_in 499287364 132242 station_ip 37.27.30.23 132242 port 15730331 132242 nas_port_type Virtual 132242 remote_ip 5.5.5.206 132249 username khalili 132249 kill_reason Another user logged on this global unique id 132249 mac 132249 bytes_out 0 132249 bytes_in 0 132249 station_ip 5.119.131.147 132249 port 168 132249 unique_id port 132253 username barzegar 132253 mac 132253 bytes_out 0 132253 bytes_in 0 132253 station_ip 5.120.57.60 132253 port 174 132253 unique_id port 132253 remote_ip 10.8.1.174 132254 username aminvpn 132254 mac 132254 bytes_out 0 132254 bytes_in 0 132254 station_ip 83.122.127.103 132254 port 280 132254 unique_id port 132254 remote_ip 10.8.0.14 132258 username aminvpn 132258 mac 132258 bytes_out 0 132258 bytes_in 0 132258 station_ip 83.122.127.103 132258 port 265 132258 unique_id port 132258 remote_ip 10.8.0.14 132261 username aminvpn 132261 mac 132261 bytes_out 0 132261 bytes_in 0 132261 station_ip 83.122.127.103 132261 port 273 132261 unique_id port 132261 remote_ip 10.8.0.14 132265 username aminvpn 132265 unique_id port 132265 terminate_cause Lost-Carrier 132265 bytes_out 3451318 132265 bytes_in 21735537 132265 station_ip 5.120.72.205 132265 port 15730330 132265 nas_port_type Virtual 132265 remote_ip 5.5.5.203 132266 username sabaghnezhad 132266 mac 132266 bytes_out 748736 132266 bytes_in 853207 132266 station_ip 37.129.206.65 132266 port 259 132266 unique_id port 132266 remote_ip 10.8.0.186 132270 username vanila 132270 mac 132270 bytes_out 8786798 132270 bytes_in 1326367 132270 station_ip 83.122.4.120 132270 port 273 132270 unique_id port 132270 remote_ip 10.8.0.178 132272 username khalili 132272 kill_reason Another user logged on this global unique id 132272 mac 132272 bytes_out 0 132272 bytes_in 0 132272 station_ip 5.119.131.147 132272 port 168 132272 unique_id port 132276 username aminvpn 132276 mac 132276 bytes_out 0 132276 bytes_in 0 132276 station_ip 83.122.127.103 132276 port 259 132276 unique_id port 132276 remote_ip 10.8.0.14 132284 username aminvpn 132284 mac 132284 bytes_out 0 132284 bytes_in 0 132284 station_ip 83.122.127.103 132284 port 285 132284 unique_id port 132284 remote_ip 10.8.0.14 132287 username mohammadmahdi 132287 kill_reason Another user logged on this global unique id 132287 mac 132287 bytes_out 0 132287 bytes_in 0 132287 station_ip 5.120.89.69 132287 port 252 132287 unique_id port 132288 username vanila 132288 mac 132217 bytes_out 0 132217 bytes_in 0 132217 station_ip 83.122.127.103 132217 port 273 132217 unique_id port 132217 remote_ip 10.8.0.14 132219 username khalili 132219 kill_reason Another user logged on this global unique id 132219 mac 132219 bytes_out 0 132219 bytes_in 0 132219 station_ip 5.119.131.147 132219 port 168 132219 unique_id port 132219 remote_ip 10.8.1.18 132223 username aminvpn 132223 mac 132223 bytes_out 0 132223 bytes_in 0 132223 station_ip 83.122.127.103 132223 port 273 132223 unique_id port 132223 remote_ip 10.8.0.14 132224 username aminvpn 132224 mac 132224 bytes_out 0 132224 bytes_in 0 132224 station_ip 83.122.127.103 132224 port 265 132224 unique_id port 132224 remote_ip 10.8.0.14 132225 username aminvpn 132225 mac 132225 bytes_out 0 132225 bytes_in 0 132225 station_ip 83.122.127.103 132225 port 285 132225 unique_id port 132225 remote_ip 10.8.0.14 132229 username yahodi 132229 mac 132229 bytes_out 0 132229 bytes_in 0 132229 station_ip 83.122.179.24 132229 port 280 132229 unique_id port 132234 username godarzi 132234 kill_reason Another user logged on this global unique id 132234 mac 132234 bytes_out 0 132234 bytes_in 0 132234 station_ip 5.202.6.3 132234 port 173 132234 unique_id port 132235 username aminvpn 132235 mac 132235 bytes_out 0 132235 bytes_in 0 132235 station_ip 83.122.127.103 132235 port 265 132235 unique_id port 132235 remote_ip 10.8.0.14 132237 username aminvpn 132237 mac 132237 bytes_out 0 132237 bytes_in 0 132237 station_ip 83.122.127.103 132237 port 280 132237 unique_id port 132237 remote_ip 10.8.0.14 132243 username mirzaei 132243 kill_reason Another user logged on this global unique id 132243 mac 132243 bytes_out 0 132243 bytes_in 0 132243 station_ip 5.119.47.186 132243 port 256 132243 unique_id port 132243 remote_ip 10.8.0.66 132244 username aminvpn 132244 mac 132244 bytes_out 0 132244 bytes_in 0 132244 station_ip 83.122.127.103 132244 port 265 132244 unique_id port 132244 remote_ip 10.8.0.14 132245 username aminvpn 132245 mac 132245 bytes_out 0 132245 bytes_in 0 132245 station_ip 83.122.127.103 132245 port 280 132245 unique_id port 132245 remote_ip 10.8.0.14 132247 username jafari 132247 kill_reason Another user logged on this global unique id 132247 mac 132247 bytes_out 0 132247 bytes_in 0 132247 station_ip 94.24.17.229 132247 port 279 132247 unique_id port 132248 username yahodi 132248 mac 132248 bytes_out 0 132248 bytes_in 0 132248 station_ip 83.122.179.24 132248 port 285 132248 unique_id port 132248 remote_ip 10.8.0.202 132251 username aminvpn 132251 mac 132251 bytes_out 7446 132251 bytes_in 14479 132251 station_ip 83.122.127.103 132251 port 280 132251 unique_id port 132251 remote_ip 10.8.0.14 132256 username godarzi 132256 kill_reason Another user logged on this global unique id 132256 mac 132256 bytes_out 0 132256 bytes_in 0 132256 station_ip 5.202.6.3 132256 port 173 132256 unique_id port 132257 username aminvpn 132257 mac 132257 bytes_out 0 132257 bytes_in 0 132257 station_ip 83.122.127.103 132257 port 285 132257 unique_id port 132257 remote_ip 10.8.0.14 132259 username vanila 132259 mac 132259 bytes_out 10629629 132259 bytes_in 6132065 132259 station_ip 83.122.4.120 132259 port 273 132259 unique_id port 132259 remote_ip 10.8.0.178 132260 username aminvpn 132260 mac 132260 bytes_out 0 132260 bytes_in 0 132260 station_ip 83.122.127.103 132260 port 285 132260 unique_id port 132260 remote_ip 10.8.0.14 132263 username hamidsalari1 132263 mac 132241 username aminvpn 132241 mac 132241 bytes_out 0 132241 bytes_in 0 132241 station_ip 83.122.127.103 132241 port 280 132241 unique_id port 132241 remote_ip 10.8.0.14 132246 username aminvpn 132246 mac 132246 bytes_out 0 132246 bytes_in 0 132246 station_ip 83.122.127.103 132246 port 287 132246 unique_id port 132246 remote_ip 10.8.0.14 132250 username sedighe 132250 mac 132250 bytes_out 88475 132250 bytes_in 319409 132250 station_ip 37.129.38.214 132250 port 265 132250 unique_id port 132250 remote_ip 10.8.0.146 132252 username aminvpn 132252 mac 132252 bytes_out 0 132252 bytes_in 0 132252 station_ip 83.122.127.103 132252 port 265 132252 unique_id port 132252 remote_ip 10.8.0.14 132255 username aminvpn 132255 mac 132255 bytes_out 0 132255 bytes_in 0 132255 station_ip 83.122.127.103 132255 port 265 132255 unique_id port 132255 remote_ip 10.8.0.14 132262 username amir 132262 mac 132262 bytes_out 0 132262 bytes_in 0 132262 station_ip 46.225.214.202 132262 port 280 132262 unique_id port 132262 remote_ip 10.8.0.50 132267 username morteza 132267 mac 132267 bytes_out 1923684 132267 bytes_in 34308738 132267 station_ip 83.123.198.194 132267 port 172 132267 unique_id port 132267 remote_ip 10.8.1.62 132269 username sabaghnezhad 132269 mac 132269 bytes_out 0 132269 bytes_in 0 132269 station_ip 37.129.206.65 132269 port 259 132269 unique_id port 132269 remote_ip 10.8.0.186 132271 username barzegar 132271 mac 132271 bytes_out 0 132271 bytes_in 0 132271 station_ip 5.120.57.60 132271 port 172 132271 unique_id port 132271 remote_ip 10.8.1.174 132273 username aminvpn 132273 mac 132273 bytes_out 0 132273 bytes_in 0 132273 station_ip 83.122.127.103 132273 port 285 132273 unique_id port 132273 remote_ip 10.8.0.14 132278 username morteza 132278 mac 132278 bytes_out 0 132278 bytes_in 0 132278 station_ip 83.123.198.194 132278 port 280 132278 unique_id port 132278 remote_ip 10.8.0.46 132279 username aminvpn 132279 mac 132279 bytes_out 0 132279 bytes_in 0 132279 station_ip 83.122.127.103 132279 port 273 132279 unique_id port 132279 remote_ip 10.8.0.14 132283 username jafari 132283 kill_reason Another user logged on this global unique id 132283 mac 132283 bytes_out 0 132283 bytes_in 0 132283 station_ip 94.24.17.229 132283 port 279 132283 unique_id port 132286 username aminvpn 132286 mac 132286 bytes_out 0 132286 bytes_in 0 132286 station_ip 83.122.127.103 132286 port 285 132286 unique_id port 132286 remote_ip 10.8.0.14 132294 username sekonji3 68978 username arezoo 68978 kill_reason Maximum check online fails reached 68978 mac 5.237.76.220:49184: Unknown host 68978 bytes_out 0 68978 bytes_in 0 68978 station_ip 5.237.76.220:49184 68978 port 1017 68978 unique_id port 132294 mac 132294 bytes_out 0 132294 bytes_in 0 132294 station_ip 113.203.74.53 132294 port 168 132294 unique_id port 132294 remote_ip 10.8.1.238 132297 username mansour 132297 mac 132297 bytes_out 13801091 132297 bytes_in 215209458 132297 station_ip 5.202.10.115 132297 port 275 132297 unique_id port 132297 remote_ip 10.8.0.30 132301 username kordestani 132301 mac 132301 bytes_out 0 132301 bytes_in 0 132301 station_ip 151.235.94.182 132301 port 274 132301 unique_id port 132301 remote_ip 10.8.0.134 132303 username mansur 132303 mac 132303 bytes_out 0 132303 bytes_in 0 132303 station_ip 5.120.127.230 132303 port 280 132303 unique_id port 132303 remote_ip 10.8.0.210 132305 username sekonji3 132305 mac 132263 bytes_out 671368 132263 bytes_in 3464769 132263 station_ip 37.129.121.173 132263 port 282 132263 unique_id port 132263 remote_ip 10.8.0.226 132264 username mohammadmahdi 132264 kill_reason Another user logged on this global unique id 132264 mac 132264 bytes_out 0 132264 bytes_in 0 132264 station_ip 5.120.89.69 132264 port 252 132264 unique_id port 132268 username morteza 132268 mac 132268 bytes_out 0 132268 bytes_in 0 132268 station_ip 83.123.198.194 132268 port 172 132268 unique_id port 132268 remote_ip 10.8.1.62 132274 username aminvpn 132274 mac 132274 bytes_out 0 132274 bytes_in 0 132274 station_ip 83.122.127.103 132274 port 259 132274 unique_id port 132274 remote_ip 10.8.0.14 132275 username aminvpn 132275 mac 132275 bytes_out 0 132275 bytes_in 0 132275 station_ip 83.122.127.103 132275 port 273 132275 unique_id port 132275 remote_ip 10.8.0.14 132277 username aminvpn 132277 unique_id port 132277 terminate_cause User-Request 132277 bytes_out 1252427 132277 bytes_in 8024278 132277 station_ip 5.120.72.205 132277 port 15730334 132277 nas_port_type Virtual 132277 remote_ip 5.5.5.165 132280 username aminvpn 132280 mac 132280 bytes_out 0 132280 bytes_in 0 132280 station_ip 83.122.127.103 132280 port 259 132280 unique_id port 132280 remote_ip 10.8.0.14 132281 username godarzi 132281 kill_reason Another user logged on this global unique id 132281 mac 132281 bytes_out 0 132281 bytes_in 0 132281 station_ip 5.202.6.3 132281 port 173 132281 unique_id port 132282 username aminvpn 132282 mac 132282 bytes_out 0 132282 bytes_in 0 132282 station_ip 83.122.127.103 132282 port 273 132282 unique_id port 132282 remote_ip 10.8.0.14 132285 username aminvpn 132285 mac 132285 bytes_out 0 132285 bytes_in 0 132285 station_ip 83.122.127.103 132285 port 287 132285 unique_id port 132285 remote_ip 10.8.0.14 132292 username sekonji3 132292 mac 132292 bytes_out 0 132292 bytes_in 0 132292 station_ip 113.203.74.53 132292 port 172 132292 unique_id port 132292 remote_ip 10.8.1.238 132296 username khalili 132296 mac 132296 bytes_out 0 132296 bytes_in 0 132296 station_ip 5.119.131.147 132296 port 171 132296 unique_id port 132296 remote_ip 10.8.1.18 132298 username amir 132298 mac 132298 bytes_out 0 132298 bytes_in 0 132298 station_ip 46.225.214.202 132298 port 282 132298 unique_id port 132298 remote_ip 10.8.0.50 132299 username godarzi 132299 kill_reason Another user logged on this global unique id 132299 mac 132299 bytes_out 0 132299 bytes_in 0 132299 station_ip 5.202.6.3 132299 port 173 132299 unique_id port 132300 username barzegar 132300 mac 132300 bytes_out 0 132300 bytes_in 0 132300 station_ip 5.120.57.60 132300 port 171 132300 unique_id port 132300 remote_ip 10.8.1.174 132311 username amir 132311 mac 132311 bytes_out 163688 132311 bytes_in 1131364 132311 station_ip 46.225.214.202 132311 port 275 132311 unique_id port 132311 remote_ip 10.8.0.50 132323 username barzegar 132323 mac 132323 bytes_out 0 132323 bytes_in 0 132323 station_ip 5.120.57.60 132323 port 168 132323 unique_id port 132323 remote_ip 10.8.1.174 132324 username mansur 132324 mac 132324 bytes_out 0 132324 bytes_in 0 132324 station_ip 5.120.127.230 132324 port 275 132324 unique_id port 132324 remote_ip 10.8.0.210 132325 username sekonji3 132325 mac 132325 bytes_out 475718 132325 bytes_in 2426452 132325 station_ip 113.203.74.53 132325 port 274 132325 unique_id port 132325 remote_ip 10.8.0.6 132331 username mansur 132331 mac 132288 bytes_out 0 132288 bytes_in 0 132288 station_ip 83.122.4.120 132288 port 273 132288 unique_id port 132288 remote_ip 10.8.0.178 132289 username morteza 132289 mac 132289 bytes_out 0 132289 bytes_in 0 132289 station_ip 83.123.198.194 132289 port 259 132289 unique_id port 132289 remote_ip 10.8.0.46 132290 username sekonji3 132290 mac 132290 bytes_out 521089 132290 bytes_in 6209816 132290 station_ip 113.203.74.53 132290 port 265 132290 unique_id port 132290 remote_ip 10.8.0.6 132291 username malekpoir 132291 mac 132291 bytes_out 0 132291 bytes_in 0 132291 station_ip 5.119.161.16 132291 port 171 132291 unique_id port 132291 remote_ip 10.8.1.54 132293 username khalili 132293 mac 132293 bytes_out 0 132293 bytes_in 0 132293 station_ip 5.119.131.147 132293 port 168 132293 unique_id port 132295 username barzegar 132295 mac 132295 bytes_out 0 132295 bytes_in 0 132295 station_ip 5.120.57.60 132295 port 259 132295 unique_id port 132295 remote_ip 10.8.0.234 132302 username godarzi 132302 mac 132302 bytes_out 0 132302 bytes_in 0 132302 station_ip 5.202.6.3 132302 port 173 132302 unique_id port 132304 username hamidsalari1 132304 mac 132304 bytes_out 0 132304 bytes_in 0 132304 station_ip 37.129.121.173 132304 port 171 132304 unique_id port 132304 remote_ip 10.8.1.170 132308 username jafari 132308 kill_reason Another user logged on this global unique id 132308 mac 132308 bytes_out 0 69008 username arezoo 69008 kill_reason Maximum check online fails reached 69008 mac 5.237.89.221:49212: Unknown host 69008 bytes_out 0 69008 bytes_in 0 69008 station_ip 5.237.89.221:49212 69008 port 1017 69008 unique_id port 132308 bytes_in 0 132308 station_ip 94.24.17.229 132308 port 279 132308 unique_id port 132309 username barzegar 132309 mac 132309 bytes_out 0 132309 bytes_in 0 132309 station_ip 5.120.57.60 132309 port 172 132309 unique_id port 132309 remote_ip 10.8.1.174 132312 username mansur 132312 mac 132312 bytes_out 0 132312 bytes_in 0 132312 station_ip 5.120.127.230 132312 port 168 132312 unique_id port 132312 remote_ip 10.8.1.194 132314 username sekonji3 132314 mac 132314 bytes_out 164555 132314 bytes_in 1106845 132314 station_ip 113.203.74.53 132314 port 280 132314 unique_id port 132314 remote_ip 10.8.0.6 132318 username sedighe 132318 mac 132318 bytes_out 149082 132318 bytes_in 253404 132318 station_ip 37.129.156.176 132318 port 274 132318 unique_id port 132318 remote_ip 10.8.0.146 132319 username sekonji3 132319 mac 132319 bytes_out 0 132319 bytes_in 0 132319 station_ip 113.203.74.53 132319 port 288 132319 unique_id port 132319 remote_ip 10.8.0.6 132321 username jafari 132321 kill_reason Another user logged on this global unique id 132321 mac 132321 bytes_out 0 132321 bytes_in 0 132321 station_ip 94.24.17.229 132321 port 279 132321 unique_id port 132322 username sabaghnezhad 132322 mac 132322 bytes_out 26596 132322 bytes_in 24915 132322 station_ip 113.203.18.158 132322 port 275 132322 unique_id port 132322 remote_ip 10.8.0.186 132327 username mansur 132327 mac 132327 bytes_out 0 132327 bytes_in 0 132327 station_ip 5.120.127.230 132327 port 173 132327 unique_id port 132327 remote_ip 10.8.1.194 132337 username jafari 132337 kill_reason Another user logged on this global unique id 132337 mac 132337 bytes_out 0 132337 bytes_in 0 132337 station_ip 94.24.17.229 132337 port 279 132337 unique_id port 132338 username farhad2 132338 mac 132338 bytes_out 0 132338 bytes_in 0 132305 bytes_out 390242 132305 bytes_in 3157623 132305 station_ip 113.203.74.53 132305 port 168 132305 unique_id port 132305 remote_ip 10.8.1.238 132306 username sekonji3 132306 mac 132306 bytes_out 0 132306 bytes_in 0 132306 station_ip 113.203.74.53 132306 port 168 132306 unique_id port 132306 remote_ip 10.8.1.238 132307 username alireza 132307 unique_id port 132307 terminate_cause Lost-Carrier 132307 bytes_out 6324343 132307 bytes_in 136021514 132307 station_ip 5.120.1.250 132307 port 15730333 132307 nas_port_type Virtual 132307 remote_ip 5.5.5.255 132310 username godarzi 132310 mac 132310 bytes_out 923454 132310 bytes_in 10089957 132310 station_ip 5.202.6.3 132310 port 168 132310 unique_id port 132310 remote_ip 10.8.1.230 132313 username barzegar 132313 mac 132313 bytes_out 0 132313 bytes_in 0 132313 station_ip 5.120.57.60 132313 port 168 132313 unique_id port 132313 remote_ip 10.8.1.174 132315 username sekonji3 132315 mac 132315 bytes_out 0 132315 bytes_in 0 132315 station_ip 113.203.74.53 132315 port 280 132315 unique_id port 132315 remote_ip 10.8.0.6 132316 username sabaghnezhad 132316 mac 132316 bytes_out 0 132316 bytes_in 0 132316 station_ip 113.203.18.158 132316 port 275 132316 unique_id port 132316 remote_ip 10.8.0.186 132317 username sekonji3 132317 mac 132317 bytes_out 0 132317 bytes_in 0 132317 station_ip 113.203.74.53 132317 port 280 132317 unique_id port 132317 remote_ip 10.8.0.6 132320 username vanila 132320 mac 132320 bytes_out 9835593 132320 bytes_in 1638603 132320 station_ip 83.122.4.120 132320 port 282 132320 unique_id port 132320 remote_ip 10.8.0.178 132326 username amir 132326 mac 132326 bytes_out 0 132326 bytes_in 0 132326 station_ip 46.225.214.202 132326 port 282 132326 unique_id port 132326 remote_ip 10.8.0.50 132328 username mansur 132328 mac 132328 bytes_out 0 132328 bytes_in 0 132328 station_ip 5.120.127.230 132328 port 282 132328 unique_id port 132328 remote_ip 10.8.0.210 132329 username mansur 132329 mac 132329 bytes_out 0 132329 bytes_in 0 132329 station_ip 5.120.127.230 132329 port 282 132329 unique_id port 132329 remote_ip 10.8.0.210 132330 username barzegar 132330 mac 132330 bytes_out 0 132330 bytes_in 0 132330 station_ip 5.120.57.60 132330 port 289 132330 unique_id port 132330 remote_ip 10.8.0.234 132333 username sekonji3 132333 mac 132333 bytes_out 292972 132333 bytes_in 2014131 132333 station_ip 113.203.74.53 132333 port 274 132333 unique_id port 132333 remote_ip 10.8.0.6 132334 username houshang 132334 kill_reason Another user logged on this global unique id 132334 mac 132334 bytes_out 0 132334 bytes_in 0 132334 station_ip 5.119.153.31 132334 port 280 132334 unique_id port 132334 remote_ip 10.8.0.22 132336 username mansur 132336 mac 132336 bytes_out 0 132336 bytes_in 0 132336 station_ip 5.120.127.230 132336 port 274 132336 unique_id port 132336 remote_ip 10.8.0.210 132341 username farhad2 132341 mac 132341 bytes_out 0 132341 bytes_in 0 132341 station_ip 5.119.138.155 132341 port 169 132341 unique_id port 132341 remote_ip 10.8.1.222 132343 username farhad2 132343 mac 132343 bytes_out 0 132343 bytes_in 0 132343 station_ip 5.119.138.155 132343 port 169 132343 unique_id port 132343 remote_ip 10.8.1.222 132346 username sekonji3 132346 mac 132346 bytes_out 3476 132346 bytes_in 5155 132346 station_ip 113.203.74.53 132346 port 252 132346 unique_id port 132346 remote_ip 10.8.0.6 132348 username sekonji3 132331 bytes_out 0 132331 bytes_in 0 132331 station_ip 5.120.127.230 132331 port 282 132331 unique_id port 132331 remote_ip 10.8.0.210 132332 username mosi 132332 mac 132332 bytes_out 1867290 132332 bytes_in 8828928 132332 station_ip 93.114.16.165 132332 port 169 132332 unique_id port 132332 remote_ip 10.8.1.86 132335 username aminvpn 132335 unique_id port 132335 terminate_cause Lost-Carrier 132335 bytes_out 12917817 132335 bytes_in 205649549 132335 station_ip 31.57.143.129 132335 port 15730335 132335 nas_port_type Virtual 132335 remote_ip 5.5.5.172 132339 username barzegar 132339 mac 132339 bytes_out 0 132339 bytes_in 0 132339 station_ip 5.120.57.60 132339 port 169 132339 unique_id port 132339 remote_ip 10.8.1.174 132344 username sekonji3 132344 mac 132344 bytes_out 0 132344 bytes_in 0 132344 station_ip 113.203.74.53 132344 port 274 132344 unique_id port 132344 remote_ip 10.8.0.6 132345 username milan 132345 kill_reason Another user logged on this global unique id 132345 mac 132345 bytes_out 0 132345 bytes_in 0 132345 station_ip 5.119.229.52 132345 port 288 132345 unique_id port 132345 remote_ip 10.8.0.218 132347 username amir 132347 mac 132347 bytes_out 137882 132347 bytes_in 997690 132347 station_ip 46.225.214.202 132347 port 282 132347 unique_id port 132347 remote_ip 10.8.0.50 132350 username houshang 132350 mac 132350 bytes_out 0 132350 bytes_in 0 132350 station_ip 5.119.153.31 132350 port 280 132350 unique_id port 132353 username mansur 132353 mac 132353 bytes_out 0 132353 bytes_in 0 132353 station_ip 5.120.127.230 132353 port 171 132353 unique_id port 132353 remote_ip 10.8.1.194 132358 username mansur 132358 mac 132358 bytes_out 0 132358 bytes_in 0 132358 station_ip 5.120.127.230 132358 port 282 132358 unique_id port 132358 remote_ip 10.8.0.210 132359 username godarzi 132359 mac 132359 bytes_out 0 132359 bytes_in 0 132359 station_ip 5.202.6.3 132359 port 168 132359 unique_id port 132359 remote_ip 10.8.1.230 132366 username zare 132366 mac 132366 bytes_out 2230330 132366 bytes_in 43637264 132366 station_ip 37.27.55.76 132366 port 275 132366 unique_id port 132366 remote_ip 10.8.0.18 132369 username zare 132369 mac 132369 bytes_out 0 132369 bytes_in 0 132369 station_ip 37.27.55.76 132369 port 274 132369 unique_id port 132369 remote_ip 10.8.0.18 132373 username zare 132373 mac 132373 bytes_out 0 132373 bytes_in 0 132373 station_ip 37.27.55.76 132373 port 168 132373 unique_id port 132373 remote_ip 10.8.1.58 132374 username zare 132374 mac 132374 bytes_out 0 132374 bytes_in 0 132374 station_ip 37.27.55.76 132374 port 168 132374 unique_id port 132374 remote_ip 10.8.1.58 132379 username barzegar 132379 mac 132379 bytes_out 0 132379 bytes_in 0 132379 station_ip 5.119.157.236 132379 port 171 132379 unique_id port 132379 remote_ip 10.8.1.174 132380 username mansur 132380 mac 132380 bytes_out 0 132380 bytes_in 0 132380 station_ip 5.120.127.230 132380 port 171 132380 unique_id port 132380 remote_ip 10.8.1.194 132382 username hoorieh 132382 kill_reason Another user logged on this global unique id 132382 mac 132382 bytes_out 0 132382 bytes_in 0 132382 station_ip 5.120.173.121 132382 port 275 132382 unique_id port 132382 remote_ip 10.8.0.38 132383 username vanila 132383 mac 132383 bytes_out 0 132383 bytes_in 0 132383 station_ip 83.122.1.192 132383 port 279 132383 unique_id port 132383 remote_ip 10.8.0.178 132385 username farhad2 132385 mac 132338 station_ip 5.119.138.155 132338 port 171 132338 unique_id port 132338 remote_ip 10.8.1.222 132340 username farhad2 132340 mac 132340 bytes_out 0 132340 bytes_in 0 132340 station_ip 5.119.138.155 132340 port 169 132340 unique_id port 132340 remote_ip 10.8.1.222 132342 username mohammadmahdi 132342 mac 132342 bytes_out 0 132342 bytes_in 0 69039 username arezoo 69039 kill_reason Maximum check online fails reached 69039 mac 5.237.91.237:58321: Unknown host 69039 bytes_out 0 69039 bytes_in 0 69039 station_ip 5.237.91.237:58321 69039 port 1017 69039 unique_id port 132342 station_ip 5.120.89.69 132342 port 252 132342 unique_id port 132349 username kordestani 132349 mac 132349 bytes_out 45799 132349 bytes_in 135129 132349 station_ip 83.123.138.224 132349 port 274 132349 unique_id port 132349 remote_ip 10.8.0.134 132351 username sekonji3 132351 mac 132351 bytes_out 0 132351 bytes_in 0 132351 station_ip 113.203.74.53 132351 port 274 132351 unique_id port 132351 remote_ip 10.8.0.6 132352 username vanila 132352 mac 132352 bytes_out 0 132352 bytes_in 0 132352 station_ip 83.122.4.120 132352 port 289 132352 unique_id port 132352 remote_ip 10.8.0.178 132355 username kordestani 132355 mac 132355 bytes_out 0 132355 bytes_in 0 132355 station_ip 151.235.93.82 132355 port 274 132355 unique_id port 132355 remote_ip 10.8.0.134 132357 username sekonji3 132357 mac 132357 bytes_out 0 132357 bytes_in 0 132357 station_ip 113.203.74.53 132357 port 280 132357 unique_id port 132357 remote_ip 10.8.0.6 132361 username amir 132361 mac 132361 bytes_out 360275 132361 bytes_in 3702190 132361 station_ip 46.225.214.202 132361 port 274 132361 unique_id port 132361 remote_ip 10.8.0.50 132364 username milan 132364 kill_reason Another user logged on this global unique id 132364 mac 132364 bytes_out 0 132364 bytes_in 0 132364 station_ip 5.119.229.52 132364 port 288 132364 unique_id port 132365 username barzegar 132365 mac 132365 bytes_out 0 132365 bytes_in 0 132365 station_ip 5.119.157.236 132365 port 282 132365 unique_id port 132365 remote_ip 10.8.0.234 132367 username zare 132367 mac 132367 bytes_out 0 132367 bytes_in 0 132367 station_ip 37.27.55.76 132367 port 275 132367 unique_id port 132367 remote_ip 10.8.0.18 132371 username godarzi 132371 mac 132371 bytes_out 0 132371 bytes_in 0 132371 station_ip 5.202.6.3 132371 port 168 132371 unique_id port 132371 remote_ip 10.8.1.230 132372 username sekonji3 132372 mac 132372 bytes_out 3356 132372 bytes_in 5094 132372 station_ip 113.203.74.53 132372 port 275 132372 unique_id port 132372 remote_ip 10.8.0.6 132375 username hamidsalari1 132375 mac 132375 bytes_out 1067247 132375 bytes_in 11076389 132375 station_ip 37.129.121.173 132375 port 273 132375 unique_id port 132375 remote_ip 10.8.0.226 132377 username mansur 132377 mac 132377 bytes_out 0 132377 bytes_in 0 132377 station_ip 5.120.127.230 132377 port 289 132377 unique_id port 132377 remote_ip 10.8.0.210 132381 username sekonji3 132381 mac 132381 bytes_out 0 132381 bytes_in 0 132381 station_ip 113.203.74.53 132381 port 282 132381 unique_id port 132381 remote_ip 10.8.0.6 132384 username sekonji3 132384 mac 132384 bytes_out 2302 132384 bytes_in 4317 132384 station_ip 113.203.74.53 132384 port 279 132384 unique_id port 132384 remote_ip 10.8.0.6 132386 username jamali 132386 kill_reason Another user logged on this global unique id 132386 mac 132386 bytes_out 0 132386 bytes_in 0 132386 station_ip 5.120.162.252 132348 mac 132348 bytes_out 2376 132348 bytes_in 4468 132348 station_ip 113.203.74.53 132348 port 252 132348 unique_id port 132348 remote_ip 10.8.0.6 132354 username sekonji3 132354 mac 132354 bytes_out 0 132354 bytes_in 0 132354 station_ip 113.203.74.53 132354 port 274 132354 unique_id port 132354 remote_ip 10.8.0.6 132356 username malekpoir 132356 mac 132356 bytes_out 0 132356 bytes_in 0 132356 station_ip 5.119.161.16 132356 port 265 132356 unique_id port 132356 remote_ip 10.8.0.58 132360 username mansur 132360 mac 132360 bytes_out 0 132360 bytes_in 0 132360 station_ip 5.120.127.230 132360 port 280 132360 unique_id port 132360 remote_ip 10.8.0.210 132362 username mansur 132362 mac 132362 bytes_out 0 132362 bytes_in 0 132362 station_ip 5.120.127.230 132362 port 168 132362 unique_id port 132362 remote_ip 10.8.1.194 132363 username jafari 132363 kill_reason Another user logged on this global unique id 132363 mac 132363 bytes_out 0 132363 bytes_in 0 132363 station_ip 94.24.17.229 132363 port 279 132363 unique_id port 132368 username sekonji3 132368 mac 132368 bytes_out 13963 132368 bytes_in 16332 132368 station_ip 113.203.74.53 132368 port 274 132368 unique_id port 132368 remote_ip 10.8.0.6 132370 username amin.saeedi 132370 unique_id port 132370 terminate_cause User-Request 132370 bytes_out 2925823 132370 bytes_in 67085239 132370 station_ip 5.119.92.72 132370 port 15730336 132370 nas_port_type Virtual 132370 remote_ip 5.5.5.174 132376 username houshang 132376 mac 132376 bytes_out 23507 132376 bytes_in 11411 132376 station_ip 5.119.153.31 132376 port 273 132376 unique_id port 132376 remote_ip 10.8.0.22 132378 username jafari 132378 mac 132378 bytes_out 0 132378 bytes_in 0 132378 station_ip 94.24.17.229 132378 port 279 132378 unique_id port 132390 username godarzi 132390 mac 132390 bytes_out 196279 132390 bytes_in 1604936 132390 station_ip 5.202.6.3 132390 port 169 132390 unique_id port 132390 remote_ip 10.8.1.230 132392 username barzegar 132392 mac 132392 bytes_out 5812 132392 bytes_in 17334 132392 station_ip 5.119.157.236 132392 port 171 132392 unique_id port 132392 remote_ip 10.8.1.174 132394 username aminvpn 132394 mac 132394 bytes_out 0 132394 bytes_in 0 132394 station_ip 83.122.127.103 132394 port 292 132394 unique_id port 132394 remote_ip 10.8.0.14 132397 username hoorieh 132397 kill_reason Another user logged on this global unique id 132397 mac 132397 bytes_out 0 132397 bytes_in 0 132397 station_ip 5.120.173.121 132397 port 275 132397 unique_id port 132402 username sekonji3 132402 mac 132402 bytes_out 15686 132402 bytes_in 18796 132402 station_ip 113.203.74.53 132402 port 291 132402 unique_id port 132402 remote_ip 10.8.0.6 132403 username aminvpn 132403 mac 132403 bytes_out 0 132403 bytes_in 0 132403 station_ip 83.122.127.103 132403 port 292 132403 unique_id port 132403 remote_ip 10.8.0.14 132406 username aminvpn 132406 mac 132406 bytes_out 0 132406 bytes_in 0 132406 station_ip 83.122.127.103 132406 port 291 132406 unique_id port 132406 remote_ip 10.8.0.14 132409 username saeed9658 132409 mac 132409 bytes_out 6724563 132409 bytes_in 570660 132409 station_ip 5.119.219.63 132409 port 288 132409 unique_id port 132409 remote_ip 10.8.0.62 132411 username aminvpn 132411 mac 132411 bytes_out 0 132411 bytes_in 0 132411 station_ip 83.122.127.103 132411 port 291 132411 unique_id port 132411 remote_ip 10.8.0.14 132415 username aminvpn 132415 mac 132415 bytes_out 0 132385 bytes_out 0 132385 bytes_in 0 132385 station_ip 5.119.138.155 132385 port 169 132385 unique_id port 132385 remote_ip 10.8.1.222 132388 username milan 132388 mac 132388 bytes_out 0 132388 bytes_in 0 132388 station_ip 5.119.229.52 132388 port 288 132388 unique_id port 132389 username aminvpn 132389 mac 132389 bytes_out 0 132389 bytes_in 0 132389 station_ip 83.122.127.103 132389 port 290 132389 unique_id port 132389 remote_ip 10.8.0.14 132391 username aminvpn 132391 mac 132391 bytes_out 0 132391 bytes_in 0 132391 station_ip 83.122.127.103 132391 port 288 132391 unique_id port 132391 remote_ip 10.8.0.14 132395 username aminvpn 132395 mac 132395 bytes_out 0 132395 bytes_in 0 132395 station_ip 83.122.127.103 132395 port 252 132395 unique_id port 132395 remote_ip 10.8.0.14 132396 username aminvpn 132396 mac 132396 bytes_out 0 132396 bytes_in 0 132396 station_ip 83.122.127.103 132396 port 292 132396 unique_id port 132396 remote_ip 10.8.0.14 132399 username barzegar 132399 mac 132399 bytes_out 0 132399 bytes_in 0 132399 station_ip 5.119.157.236 132399 port 169 132399 unique_id port 132399 remote_ip 10.8.1.174 132401 username aminvpn 132401 mac 132401 bytes_out 0 132401 bytes_in 0 132401 station_ip 83.122.127.103 132401 port 252 132401 unique_id port 132401 remote_ip 10.8.0.14 132412 username jafari 132412 kill_reason Another user logged on this global unique id 132412 mac 132412 bytes_out 0 132412 bytes_in 0 132412 station_ip 37.137.16.5 132412 port 290 132412 unique_id port 132412 remote_ip 10.8.0.242 132413 username aminvpn 132413 mac 132413 bytes_out 0 132413 bytes_in 0 132413 station_ip 83.122.127.103 132413 port 252 132413 unique_id port 132413 remote_ip 10.8.0.14 132417 username aminvpn 132417 mac 132417 bytes_out 0 132417 bytes_in 0 132417 station_ip 83.122.127.103 132417 port 252 132417 unique_id port 132417 remote_ip 10.8.0.14 132419 username sekonji3 132419 mac 132419 bytes_out 9921 132419 bytes_in 18103 132419 station_ip 113.203.74.53 132419 port 169 132419 unique_id port 132419 remote_ip 10.8.1.238 132422 username aminvpn 132422 mac 132422 bytes_out 0 132422 bytes_in 0 132422 station_ip 83.122.127.103 132422 port 252 132422 unique_id port 132422 remote_ip 10.8.0.14 132424 username aminvpn 132424 mac 132424 bytes_out 0 132424 bytes_in 0 132424 station_ip 83.122.127.103 132424 port 252 132424 unique_id port 132424 remote_ip 10.8.0.14 132428 username barzegar 132428 mac 132428 bytes_out 0 132428 bytes_in 0 132428 station_ip 5.119.157.236 132428 port 282 132428 unique_id port 132428 remote_ip 10.8.0.234 132430 username vanila 132430 mac 132430 bytes_out 0 132430 bytes_in 0 132430 station_ip 83.122.1.192 132430 port 279 132430 unique_id port 132430 remote_ip 10.8.0.178 132434 username saeed9658 132434 mac 132434 bytes_out 0 132434 bytes_in 0 132434 station_ip 5.119.219.63 132434 port 171 132434 unique_id port 132434 remote_ip 10.8.1.210 132438 username aminvpn 132438 mac 132438 bytes_out 0 132438 bytes_in 0 132438 station_ip 83.122.127.103 132438 port 282 132438 unique_id port 132438 remote_ip 10.8.0.14 132441 username aminvpn 132441 mac 132441 bytes_out 0 132441 bytes_in 0 132441 station_ip 83.122.127.103 132441 port 288 132441 unique_id port 132441 remote_ip 10.8.0.14 132444 username aminvpn 132444 mac 132444 bytes_out 0 132444 bytes_in 0 132444 station_ip 83.122.127.103 132444 port 279 132386 port 280 132386 unique_id port 132386 remote_ip 10.8.0.150 132387 username aminvpn 132387 mac 132387 bytes_out 0 132387 bytes_in 0 132387 station_ip 83.122.127.103 132387 port 285 132387 unique_id port 132387 remote_ip 10.8.0.14 132393 username rezaei 132393 mac 132393 bytes_out 0 132393 bytes_in 0 132393 station_ip 5.119.225.165 132393 port 252 132393 unique_id port 132393 remote_ip 10.8.0.206 132398 username aminvpn 132398 mac 132398 bytes_out 0 132398 bytes_in 0 132398 station_ip 83.122.127.103 132398 port 252 132398 unique_id port 132398 remote_ip 10.8.0.14 132400 username aminvpn 132400 mac 132400 bytes_out 0 132400 bytes_in 0 132400 station_ip 83.122.127.103 132400 port 292 132400 unique_id port 132400 remote_ip 10.8.0.14 132404 username farhad2 132404 mac 132404 bytes_out 600301 132404 bytes_in 2603255 132404 station_ip 5.119.138.155 132404 port 285 132404 unique_id port 132404 remote_ip 10.8.0.190 132405 username barzegar 132405 mac 132405 bytes_out 0 132405 bytes_in 0 132405 station_ip 5.119.157.236 132405 port 252 132405 unique_id port 132405 remote_ip 10.8.0.234 132407 username mirzaei 132407 kill_reason Another user logged on this global unique id 132407 mac 132407 bytes_out 0 132407 bytes_in 0 132407 station_ip 5.119.47.186 132407 port 256 132407 unique_id port 132408 username aminvpn 132408 mac 132408 bytes_out 0 132408 bytes_in 0 132408 station_ip 83.122.127.103 132408 port 252 132408 unique_id port 132408 remote_ip 10.8.0.14 132410 username houshang 132410 mac 132410 bytes_out 143859 132410 bytes_in 573056 132410 station_ip 5.119.153.31 132410 port 282 132410 unique_id port 132410 remote_ip 10.8.0.22 132414 username rahmani 132414 mac 132414 bytes_out 0 132414 bytes_in 0 132414 station_ip 113.203.123.219 132414 port 279 132414 unique_id port 132414 remote_ip 10.8.0.94 132416 username mohammadmahdi 132416 kill_reason Another user logged on this global unique id 132416 mac 132416 bytes_out 0 132416 bytes_in 0 132416 station_ip 5.120.89.69 132416 port 265 132416 unique_id port 132416 remote_ip 10.8.0.54 132420 username aminvpn 132420 mac 132420 bytes_out 0 132420 bytes_in 0 132420 station_ip 83.122.127.103 132420 port 279 132420 unique_id port 132420 remote_ip 10.8.0.14 132423 username aminvpn 132423 mac 132423 bytes_out 0 132423 bytes_in 0 132423 station_ip 83.122.127.103 132423 port 282 132423 unique_id port 132423 remote_ip 10.8.0.14 132425 username saeed9658 132425 mac 132425 bytes_out 0 132425 bytes_in 0 132425 station_ip 5.119.219.63 132425 port 252 132425 unique_id port 132425 remote_ip 10.8.0.62 132427 username aminvpn 132427 mac 132427 bytes_out 0 132427 bytes_in 0 132427 station_ip 83.122.127.103 132427 port 252 132427 unique_id port 132427 remote_ip 10.8.0.14 132429 username aminvpn 132429 mac 132429 bytes_out 0 132429 bytes_in 0 132429 station_ip 83.122.127.103 132429 port 288 132429 unique_id port 132429 remote_ip 10.8.0.14 132432 username zare 132432 kill_reason Another user logged on this global unique id 132432 mac 132432 bytes_out 0 132432 bytes_in 0 132432 station_ip 37.27.55.76 132432 port 168 132432 unique_id port 132432 remote_ip 10.8.1.58 132433 username aminvpn 132433 mac 132433 bytes_out 0 132433 bytes_in 0 132433 station_ip 83.122.127.103 132433 port 282 132433 unique_id port 132433 remote_ip 10.8.0.14 132436 username farhad2 132436 kill_reason Another user logged on this global unique id 132436 mac 132436 bytes_out 0 132415 bytes_in 0 132415 station_ip 83.122.127.103 132415 port 282 132415 unique_id port 132415 remote_ip 10.8.0.14 132418 username hoorieh 132418 kill_reason Another user logged on this global unique id 132418 mac 132418 bytes_out 0 132418 bytes_in 0 132418 station_ip 5.120.173.121 132418 port 275 132418 unique_id port 132421 username sekonji3 132421 mac 132421 bytes_out 0 132421 bytes_in 0 132421 station_ip 113.203.74.53 132421 port 169 132421 unique_id port 132421 remote_ip 10.8.1.238 132426 username aminvpn 132426 mac 132426 bytes_out 0 132426 bytes_in 0 132426 station_ip 83.122.127.103 132426 port 282 132426 unique_id port 132426 remote_ip 10.8.0.14 132431 username sobhan 132431 unique_id port 132431 terminate_cause Lost-Carrier 132431 bytes_out 2023800 132431 bytes_in 24953270 132431 station_ip 5.119.9.97 132431 port 15730338 132431 nas_port_type Virtual 132431 remote_ip 5.5.5.188 132435 username aminvpn 132435 mac 132435 bytes_out 0 132435 bytes_in 0 132435 station_ip 83.122.127.103 132435 port 279 132435 unique_id port 132435 remote_ip 10.8.0.14 132437 username saeed9658 132437 mac 132437 bytes_out 0 132437 bytes_in 0 132437 station_ip 5.119.219.63 132437 port 171 132437 unique_id port 132437 remote_ip 10.8.1.210 132439 username hoorieh 132439 kill_reason Another user logged on this global unique id 132439 mac 132439 bytes_out 0 132439 bytes_in 0 132439 station_ip 5.120.173.121 132439 port 275 132439 unique_id port 132440 username aminvpn 132440 mac 132440 bytes_out 0 132440 bytes_in 0 132440 station_ip 83.122.127.103 132440 port 279 132440 unique_id port 132440 remote_ip 10.8.0.14 132442 username jafari 132442 kill_reason Another user logged on this global unique id 132442 mac 132442 bytes_out 0 132442 bytes_in 0 132442 station_ip 37.137.16.5 132442 port 290 132442 unique_id port 132443 username barzegar 132443 mac 132443 bytes_out 3532 132443 bytes_in 5121 132443 station_ip 5.119.157.236 132443 port 282 132443 unique_id port 132443 remote_ip 10.8.0.234 132445 username sekonji3 132445 mac 132445 bytes_out 0 132445 bytes_in 0 132445 station_ip 113.203.74.53 132445 port 169 132445 unique_id port 132445 remote_ip 10.8.1.238 132450 username farhad2 132450 kill_reason Another user logged on this global unique id 132450 mac 132450 bytes_out 0 132450 bytes_in 0 132450 station_ip 5.119.138.155 132450 port 285 132450 unique_id port 132453 username barzegar 132453 mac 132453 bytes_out 0 132453 bytes_in 0 132453 station_ip 5.119.157.236 132453 port 282 132453 unique_id port 132453 remote_ip 10.8.0.234 132459 username hoorieh 132459 kill_reason Another user logged on this global unique id 132459 mac 132459 bytes_out 0 132459 bytes_in 0 132459 station_ip 5.120.173.121 132459 port 275 132459 unique_id port 132460 username saeed9658 132460 mac 132460 bytes_out 0 132460 bytes_in 0 132460 station_ip 5.119.219.63 132460 port 174 132460 unique_id port 132460 remote_ip 10.8.1.210 132464 username barzegar 132464 mac 132464 bytes_out 22284 132464 bytes_in 200336 132464 station_ip 5.119.157.236 132464 port 171 132464 unique_id port 132464 remote_ip 10.8.1.174 132466 username barzegar 132466 mac 132466 bytes_out 0 132466 bytes_in 0 132466 station_ip 5.119.157.236 132466 port 171 132466 unique_id port 132466 remote_ip 10.8.1.174 132468 username amir 132468 mac 132468 bytes_out 177218 132468 bytes_in 1815830 132468 station_ip 46.225.214.202 132468 port 282 132468 unique_id port 132468 remote_ip 10.8.0.50 132470 username vanila 132436 bytes_in 0 132436 station_ip 5.119.138.155 132436 port 285 132436 unique_id port 132436 remote_ip 10.8.0.190 132455 username godarzi 132455 mac 132455 bytes_out 0 132455 bytes_in 0 132455 station_ip 5.202.6.3 132455 port 171 132455 unique_id port 132455 remote_ip 10.8.1.230 132456 username mohammadjavad 132456 mac 132456 bytes_out 1197639 132456 bytes_in 17857248 132456 station_ip 83.123.78.127 132456 port 252 132456 unique_id port 132456 remote_ip 10.8.0.142 132458 username saeed9658 132458 mac 132458 bytes_out 0 132458 bytes_in 0 132458 station_ip 5.119.219.63 132458 port 174 132458 unique_id port 132458 remote_ip 10.8.1.210 132461 username saeed9658 132461 mac 132461 bytes_out 0 132461 bytes_in 0 132461 station_ip 5.119.219.63 132461 port 174 132461 unique_id port 132461 remote_ip 10.8.1.210 132465 username farhad2 132465 kill_reason Another user logged on this global unique id 132465 mac 132465 bytes_out 0 132465 bytes_in 0 132465 station_ip 5.119.138.155 132465 port 285 132465 unique_id port 132467 username jafari 132467 kill_reason Another user logged on this global unique id 132467 mac 132467 bytes_out 0 132467 bytes_in 0 132467 station_ip 37.137.16.5 132467 port 290 132467 unique_id port 132471 username mansur 132471 mac 132471 bytes_out 2924788 132471 bytes_in 33756777 132471 station_ip 5.120.127.230 132471 port 289 132471 unique_id port 132471 remote_ip 10.8.0.210 132474 username hoorieh 132474 kill_reason Another user logged on this global unique id 132474 mac 132474 bytes_out 0 132474 bytes_in 0 132474 station_ip 5.120.173.121 132474 port 275 132474 unique_id port 132475 username aminvpn 132475 mac 132475 bytes_out 0 132475 bytes_in 0 132475 station_ip 83.122.127.103 132475 port 279 132475 unique_id port 132475 remote_ip 10.8.0.14 132478 username mohammadmahdi 132478 kill_reason Another user logged on this global unique id 132478 mac 132478 bytes_out 0 132478 bytes_in 0 132478 station_ip 5.120.89.69 132478 port 265 132478 unique_id port 132479 username aminvpn 132479 mac 132479 bytes_out 0 132479 bytes_in 0 132479 station_ip 83.122.127.103 132479 port 288 132479 unique_id port 132479 remote_ip 10.8.0.14 132481 username farhad2 132481 mac 132481 bytes_out 0 132481 bytes_in 0 132481 station_ip 5.119.138.155 132481 port 285 132481 unique_id port 132486 username aminvpn 132486 mac 132486 bytes_out 0 132486 bytes_in 0 132486 station_ip 83.122.127.103 132486 port 282 132486 unique_id port 132486 remote_ip 10.8.0.14 132488 username sekonji3 132488 mac 132488 bytes_out 895331 132488 bytes_in 6884639 132488 station_ip 113.203.74.53 132488 port 169 132488 unique_id port 132488 remote_ip 10.8.1.238 132490 username aminvpn 132490 mac 132490 bytes_out 0 132490 bytes_in 0 132490 station_ip 83.122.127.103 132490 port 282 132490 unique_id port 132490 remote_ip 10.8.0.14 132491 username aminvpn 132491 mac 132491 bytes_out 0 132491 bytes_in 0 132491 station_ip 83.122.127.103 132491 port 288 132491 unique_id port 132491 remote_ip 10.8.0.14 132494 username saeed9658 132494 mac 132494 bytes_out 0 132494 bytes_in 0 132494 station_ip 5.119.219.63 132494 port 168 132494 unique_id port 132494 remote_ip 10.8.1.210 132495 username aminvpn 132495 mac 132495 bytes_out 0 132495 bytes_in 0 132495 station_ip 83.122.127.103 132495 port 282 132495 unique_id port 132495 remote_ip 10.8.0.14 132496 username saeed9658 132496 mac 132496 bytes_out 0 132496 bytes_in 0 132444 unique_id port 132444 remote_ip 10.8.0.14 132446 username aminvpn 132446 mac 132446 bytes_out 0 132446 bytes_in 0 132446 station_ip 83.122.127.103 132446 port 282 132446 unique_id port 132446 remote_ip 10.8.0.14 132447 username amir 132447 mac 132447 bytes_out 0 132447 bytes_in 0 132447 station_ip 46.225.214.202 132447 port 273 132447 unique_id port 132447 remote_ip 10.8.0.50 132448 username sekonji3 132448 mac 132448 bytes_out 0 132448 bytes_in 0 132448 station_ip 113.203.74.53 132448 port 169 132448 unique_id port 132448 remote_ip 10.8.1.238 132449 username sekonji3 132449 mac 132449 bytes_out 0 132449 bytes_in 0 132449 station_ip 113.203.74.53 132449 port 169 132449 unique_id port 132449 remote_ip 10.8.1.238 132451 username hoorieh 132451 kill_reason Another user logged on this global unique id 132451 mac 132451 bytes_out 0 132451 bytes_in 0 132451 station_ip 5.120.173.121 132451 port 275 132451 unique_id port 132452 username saeed9658 132452 mac 132452 bytes_out 0 132452 bytes_in 0 132452 station_ip 5.119.219.63 132452 port 174 132452 unique_id port 132452 remote_ip 10.8.1.210 132454 username jafari 132454 kill_reason Another user logged on this global unique id 132454 mac 132454 bytes_out 0 132454 bytes_in 0 132454 station_ip 37.137.16.5 132454 port 290 132454 unique_id port 132457 username rezaei 132457 mac 132457 bytes_out 0 132457 bytes_in 0 132457 station_ip 5.119.225.165 132457 port 273 132457 unique_id port 132457 remote_ip 10.8.0.206 132462 username khademi 132462 kill_reason Another user logged on this global unique id 132462 mac 132462 bytes_out 0 132462 bytes_in 0 132462 station_ip 113.203.13.195 132462 port 276 132462 unique_id port 132462 remote_ip 10.8.0.10 132463 username saeed9658 132463 mac 132463 bytes_out 0 132463 bytes_in 0 132463 station_ip 5.119.219.63 132463 port 252 132463 unique_id port 132463 remote_ip 10.8.0.62 132469 username saeed9658 132469 kill_reason Maximum check online fails reached 132469 mac 132469 bytes_out 0 132469 bytes_in 0 132469 station_ip 5.119.219.63 132469 port 273 132469 unique_id port 132476 username barzegar 132476 mac 132476 bytes_out 0 132476 bytes_in 0 132476 station_ip 5.119.157.236 132476 port 288 132476 unique_id port 132476 remote_ip 10.8.0.234 132484 username zare 132484 mac 132484 bytes_out 0 132484 bytes_in 0 132484 station_ip 37.27.55.76 132484 port 168 132484 unique_id port 132484 remote_ip 10.8.1.58 132498 username sabaghnezhad 132498 mac 132498 bytes_out 890915 132498 bytes_in 858153 132498 station_ip 113.203.18.158 132498 port 172 132498 unique_id port 132498 remote_ip 10.8.1.130 132501 username aminvpn 132501 mac 132501 bytes_out 0 132501 bytes_in 0 132501 station_ip 83.122.127.103 132501 port 288 132501 unique_id port 132501 remote_ip 10.8.0.14 132503 username amir 132503 mac 132503 bytes_out 0 132503 bytes_in 0 132503 station_ip 46.225.214.202 132503 port 282 132503 unique_id port 132503 remote_ip 10.8.0.50 132508 username amirabbas 132508 unique_id port 132508 terminate_cause User-Request 132508 bytes_out 19133757 132508 bytes_in 452991054 132508 station_ip 37.27.17.204 132508 port 15730337 132508 nas_port_type Virtual 132508 remote_ip 5.5.5.184 132511 username mosi 132511 mac 132511 bytes_out 1765501 132511 bytes_in 9668778 132511 station_ip 5.134.131.11 132511 port 173 132511 unique_id port 132511 remote_ip 10.8.1.86 132515 username saeed9658 132515 mac 132515 bytes_out 358519 132515 bytes_in 1704348 132470 mac 132470 bytes_out 4850891 132470 bytes_in 715196 132470 station_ip 83.122.1.192 132470 port 252 132470 unique_id port 132470 remote_ip 10.8.0.178 132472 username aminvpn 132472 mac 132472 bytes_out 0 132472 bytes_in 0 132472 station_ip 83.122.127.103 132472 port 279 132472 unique_id port 132472 remote_ip 10.8.0.14 132473 username aminvpn 132473 mac 132473 bytes_out 0 132473 bytes_in 0 132473 station_ip 83.122.127.103 132473 port 282 132473 unique_id port 132473 remote_ip 10.8.0.14 132477 username aminvpn 132477 mac 69176 username arezoo 69176 kill_reason Maximum check online fails reached 69176 mac 5.237.79.43:49303: Unknown host 69176 bytes_out 0 69176 bytes_in 0 69176 station_ip 5.237.79.43:49303 69176 port 1017 69176 unique_id port 132477 bytes_out 0 132477 bytes_in 0 132477 station_ip 83.122.127.103 132477 port 282 132477 unique_id port 132477 remote_ip 10.8.0.14 132480 username zare 132480 mac 132480 bytes_out 0 132480 bytes_in 0 132480 station_ip 37.27.55.76 132480 port 168 132480 unique_id port 132482 username aminvpn 132482 mac 132482 bytes_out 0 132482 bytes_in 0 132482 station_ip 83.122.127.103 132482 port 282 132482 unique_id port 132482 remote_ip 10.8.0.14 132483 username aminvpn 132483 mac 132483 bytes_out 0 132483 bytes_in 0 132483 station_ip 83.122.127.103 132483 port 285 132483 unique_id port 132483 remote_ip 10.8.0.14 132485 username jafari 132485 kill_reason Another user logged on this global unique id 132485 mac 132485 bytes_out 0 132485 bytes_in 0 132485 station_ip 37.137.16.5 132485 port 290 132485 unique_id port 132487 username godarzi 132487 mac 132487 bytes_out 0 132487 bytes_in 0 132487 station_ip 5.202.6.3 132487 port 174 132487 unique_id port 132487 remote_ip 10.8.1.230 132489 username aminvpn 132489 mac 132489 bytes_out 0 132489 bytes_in 0 132489 station_ip 83.122.127.103 132489 port 288 132489 unique_id port 132489 remote_ip 10.8.0.14 132492 username aminvpn 132492 mac 132492 bytes_out 0 132492 bytes_in 0 132492 station_ip 83.122.127.103 132492 port 282 132492 unique_id port 132492 remote_ip 10.8.0.14 132493 username aminvpn 132493 mac 132493 bytes_out 0 132493 bytes_in 0 132493 station_ip 83.122.127.103 132493 port 288 132493 unique_id port 132493 remote_ip 10.8.0.14 132502 username hoorieh 132502 kill_reason Another user logged on this global unique id 132502 mac 132502 bytes_out 0 132502 bytes_in 0 132502 station_ip 5.120.173.121 132502 port 275 132502 unique_id port 132505 username aminvpn 132505 mac 132505 bytes_out 0 132505 bytes_in 0 132505 station_ip 83.122.127.103 132505 port 282 132505 unique_id port 132505 remote_ip 10.8.0.14 132506 username aminvpn 132506 mac 132506 bytes_out 0 132506 bytes_in 0 132506 station_ip 83.122.127.103 132506 port 292 132506 unique_id port 132506 remote_ip 10.8.0.14 132510 username aminvpn 132510 mac 132510 bytes_out 0 132510 bytes_in 0 132510 station_ip 83.122.127.103 132510 port 292 132510 unique_id port 132510 remote_ip 10.8.0.14 132517 username aminvpn 132517 mac 132517 bytes_out 0 132517 bytes_in 0 132517 station_ip 83.122.127.103 132517 port 292 132517 unique_id port 132517 remote_ip 10.8.0.14 132519 username aminvpn 132519 mac 132519 bytes_out 0 132519 bytes_in 0 132519 station_ip 83.122.127.103 132519 port 293 132519 unique_id port 132519 remote_ip 10.8.0.14 132524 username vanila 132524 mac 132524 bytes_out 0 132524 bytes_in 0 132496 station_ip 5.119.219.63 132496 port 282 132496 unique_id port 132496 remote_ip 10.8.0.62 132497 username aminvpn 132497 mac 132497 bytes_out 0 132497 bytes_in 0 132497 station_ip 83.122.127.103 132497 port 288 132497 unique_id port 132497 remote_ip 10.8.0.14 132499 username aminvpn 132499 mac 132499 bytes_out 0 132499 bytes_in 0 132499 station_ip 83.122.127.103 132499 port 289 132499 unique_id port 132499 remote_ip 10.8.0.14 132500 username jafari 132500 kill_reason Another user logged on this global unique id 132500 mac 132500 bytes_out 0 132500 bytes_in 0 132500 station_ip 37.137.16.5 132500 port 290 132500 unique_id port 132504 username aminvpn 132504 mac 132504 bytes_out 0 132504 bytes_in 0 132504 station_ip 83.122.127.103 132504 port 292 132504 unique_id port 132504 remote_ip 10.8.0.14 132507 username saeed9658 132507 kill_reason Maximum check online fails reached 132507 mac 132507 bytes_out 0 132507 bytes_in 0 132507 station_ip 5.119.219.63 132507 port 291 132507 unique_id port 132509 username aminvpn 132509 mac 132509 bytes_out 0 132509 bytes_in 0 132509 station_ip 83.122.127.103 132509 port 282 132509 unique_id port 132509 remote_ip 10.8.0.14 132512 username aminvpn 132512 mac 132512 bytes_out 0 132512 bytes_in 0 132512 station_ip 83.122.127.103 132512 port 293 132512 unique_id port 132512 remote_ip 10.8.0.14 132513 username aminvpn 132513 mac 132513 bytes_out 0 132513 bytes_in 0 132513 station_ip 83.122.127.103 132513 port 292 132513 unique_id port 132513 remote_ip 10.8.0.14 132514 username aminvpn 132514 mac 132514 bytes_out 0 132514 bytes_in 0 132514 station_ip 83.122.127.103 132514 port 293 132514 unique_id port 132514 remote_ip 10.8.0.14 132516 username saeed9658 132516 mac 132516 bytes_out 0 132516 bytes_in 0 132516 station_ip 5.119.219.63 132516 port 293 132516 unique_id port 132516 remote_ip 10.8.0.62 132518 username hoorieh 132518 kill_reason Another user logged on this global unique id 132518 mac 132518 bytes_out 0 132518 bytes_in 0 132518 station_ip 5.120.173.121 132518 port 275 132518 unique_id port 132520 username jafari 132520 kill_reason Another user logged on this global unique id 132520 mac 132520 bytes_out 0 132520 bytes_in 0 132520 station_ip 37.137.16.5 132520 port 290 132520 unique_id port 132521 username aminvpn 132521 mac 132521 bytes_out 0 132521 bytes_in 0 132521 station_ip 83.122.127.103 132521 port 292 132521 unique_id port 132521 remote_ip 10.8.0.14 132522 username amir 132522 mac 132522 bytes_out 1330633 132522 bytes_in 8821315 132522 station_ip 46.225.214.202 132522 port 288 132522 unique_id port 132522 remote_ip 10.8.0.50 132523 username farhad2 132523 mac 132523 bytes_out 2534778 132523 bytes_in 26289321 132523 station_ip 5.119.138.155 132523 port 289 132523 unique_id port 132523 remote_ip 10.8.0.190 132527 username jafari 132527 kill_reason Another user logged on this global unique id 132527 mac 132527 bytes_out 0 132527 bytes_in 0 132527 station_ip 37.137.16.5 132527 port 290 132527 unique_id port 132528 username hoorieh 132528 mac 132528 bytes_out 0 132528 bytes_in 0 132528 station_ip 5.120.173.121 132528 port 275 132528 unique_id port 132532 username jafari 132532 kill_reason Another user logged on this global unique id 132532 mac 132532 bytes_out 0 132532 bytes_in 0 132532 station_ip 37.137.16.5 132532 port 290 132532 unique_id port 132537 username jafari 132537 kill_reason Another user logged on this global unique id 132537 mac 132537 bytes_out 0 132537 bytes_in 0 132515 station_ip 5.119.219.63 132515 port 168 132515 unique_id port 132515 remote_ip 10.8.1.210 132525 username amir 132525 mac 132525 bytes_out 113966 132525 bytes_in 700438 132525 station_ip 46.225.214.202 132525 port 288 132525 unique_id port 132525 remote_ip 10.8.0.50 132530 username jafari 132530 kill_reason Another user logged on this global unique id 132530 mac 132530 bytes_out 0 132530 bytes_in 0 132530 station_ip 37.137.16.5 132530 port 290 132530 unique_id port 132533 username rezaei 132533 mac 132533 bytes_out 786582 132533 bytes_in 6772842 132533 station_ip 5.119.225.165 132533 port 275 132533 unique_id port 132533 remote_ip 10.8.0.206 132535 username mohammadmahdi 132535 mac 132535 bytes_out 0 132535 bytes_in 0 132535 station_ip 5.120.89.69 132535 port 265 132535 unique_id port 132539 username aminvpn 132539 mac 132539 bytes_out 0 132539 bytes_in 0 132539 station_ip 83.122.127.103 132539 port 293 132539 unique_id port 132539 remote_ip 10.8.0.14 132543 username farhad2 132543 mac 132543 bytes_out 523099 132543 bytes_in 1142012 132543 station_ip 5.119.138.155 132543 port 252 132543 unique_id port 132543 remote_ip 10.8.0.190 132545 username jafari 132545 mac 132545 bytes_out 0 132545 bytes_in 0 132545 station_ip 37.137.16.5 132545 port 290 132545 unique_id port 132546 username tahmasebi 132546 kill_reason Another user logged on this global unique id 132546 mac 132546 bytes_out 0 132546 bytes_in 0 132546 station_ip 5.120.83.243 132546 port 282 132546 unique_id port 132546 remote_ip 10.8.0.42 132552 username hamidsalari1 132552 mac 132552 bytes_out 0 132552 bytes_in 0 132552 station_ip 37.129.121.173 132552 port 172 132552 unique_id port 132552 remote_ip 10.8.1.170 132553 username tahmasebi 132553 kill_reason Another user logged on this global unique id 132553 mac 132553 bytes_out 0 132553 bytes_in 0 132553 station_ip 5.120.83.243 132553 port 282 132553 unique_id port 132554 username hamidsalari1 132554 mac 132554 bytes_out 25904 132554 bytes_in 26346 132554 station_ip 37.129.121.173 132554 port 259 132554 unique_id port 132554 remote_ip 10.8.0.226 132557 username hamidsalari 132557 kill_reason Another user logged on this global unique id 132557 mac 132557 bytes_out 0 132557 bytes_in 0 132557 station_ip 5.120.183.12 132557 port 274 132557 unique_id port 132557 remote_ip 10.8.0.230 132558 username tahmasebi 132558 kill_reason Another user logged on this global unique id 132558 mac 132558 bytes_out 0 132558 bytes_in 0 132558 station_ip 5.120.83.243 132558 port 282 132558 unique_id port 132559 username barzegar 132559 mac 132559 bytes_out 0 132559 bytes_in 0 132559 station_ip 5.119.157.236 132559 port 259 132559 unique_id port 132559 remote_ip 10.8.0.234 132560 username saeed9658 132560 mac 132560 bytes_out 1248557 132560 bytes_in 9584708 132560 station_ip 5.119.219.63 132560 port 252 132560 unique_id port 132560 remote_ip 10.8.0.62 132562 username farhad2 132562 mac 132562 bytes_out 0 132562 bytes_in 0 132562 station_ip 5.119.216.65 132562 port 168 132562 unique_id port 132562 remote_ip 10.8.1.222 132564 username mirzaei 132564 kill_reason Another user logged on this global unique id 132564 mac 132564 bytes_out 0 132564 bytes_in 0 132564 station_ip 5.119.47.186 132564 port 256 132564 unique_id port 132566 username sabaghnezhad 132566 mac 132566 bytes_out 0 132566 bytes_in 0 132566 station_ip 83.123.144.146 132566 port 168 132566 unique_id port 132566 remote_ip 10.8.1.130 132573 username mahdixz 132573 unique_id port 132524 station_ip 83.122.1.192 132524 port 252 132524 unique_id port 132524 remote_ip 10.8.0.178 132526 username hoorieh 132526 kill_reason Another user logged on this global unique id 132526 mac 132526 bytes_out 0 132526 bytes_in 0 132526 station_ip 5.120.173.121 132526 port 275 132526 unique_id port 132529 username rezaei 132529 mac 132529 bytes_out 277592 132529 bytes_in 1995826 132529 station_ip 5.119.225.165 132529 port 275 132529 unique_id port 132529 remote_ip 10.8.0.206 132531 username mohammadmahdi 132531 kill_reason Another user logged on this global unique id 132531 mac 132531 bytes_out 0 132531 bytes_in 0 132531 station_ip 5.120.89.69 132531 port 265 132531 unique_id port 132534 username barzegar 132534 mac 132534 bytes_out 0 132534 bytes_in 0 132534 station_ip 5.119.157.236 132534 port 279 132534 unique_id port 132534 remote_ip 10.8.0.234 132536 username mahdixz 132536 unique_id port 132536 terminate_cause Lost-Carrier 132536 bytes_out 3871174 132536 bytes_in 110511892 132536 station_ip 151.235.89.159 132536 port 15730339 132536 nas_port_type Virtual 132536 remote_ip 5.5.5.191 132538 username barzegar 132538 mac 132538 bytes_out 0 132538 bytes_in 0 132538 station_ip 5.119.157.236 132538 port 168 132538 unique_id port 132538 remote_ip 10.8.1.174 132540 username farhad2 132540 mac 132540 bytes_out 2776824 132540 bytes_in 25184938 132540 station_ip 5.119.138.155 132540 port 252 132540 unique_id port 132540 remote_ip 10.8.0.190 132544 username barzegar 132544 mac 132544 bytes_out 0 132544 bytes_in 0 132544 station_ip 5.119.157.236 132544 port 259 132544 unique_id port 132544 remote_ip 10.8.0.234 132547 username hamidsalari1 132547 mac 132547 bytes_out 607534 132547 bytes_in 3698119 132547 station_ip 37.129.121.173 132547 port 168 132547 unique_id port 132547 remote_ip 10.8.1.170 132549 username barzegar 132549 kill_reason Maximum check online fails reached 132549 mac 132549 bytes_out 0 132549 bytes_in 0 132549 station_ip 5.119.157.236 132549 port 171 132549 unique_id port 132550 username hamidsalari1 132550 mac 132550 bytes_out 0 132550 bytes_in 0 132550 station_ip 37.129.121.173 132550 port 259 132550 unique_id port 132550 remote_ip 10.8.0.226 132555 username rezaei 132555 mac 132555 bytes_out 358334 132555 bytes_in 4535523 132555 station_ip 5.119.225.165 132555 port 265 132555 unique_id port 132555 remote_ip 10.8.0.206 132563 username barzegar 132563 mac 132563 bytes_out 0 132563 bytes_in 0 132563 station_ip 5.119.157.236 132563 port 172 132563 unique_id port 132563 remote_ip 10.8.1.174 132567 username ehsun 132567 mac 132567 bytes_out 0 132567 bytes_in 0 132567 station_ip 46.225.209.192 132567 port 259 132567 unique_id port 132567 remote_ip 10.8.0.162 132568 username barzegar 132568 mac 132568 bytes_out 0 132568 bytes_in 0 132568 station_ip 5.119.157.236 132568 port 259 132568 unique_id port 132568 remote_ip 10.8.0.234 132569 username hosseine 132569 mac 132569 bytes_out 0 132569 bytes_in 0 132569 station_ip 37.129.40.108 132569 port 272 132569 unique_id port 132578 username zare 132578 kill_reason Another user logged on this global unique id 132578 mac 132578 bytes_out 0 132578 bytes_in 0 132578 station_ip 37.27.55.76 132578 port 285 132578 unique_id port 132578 remote_ip 10.8.0.18 132580 username mahdiyehalizadeh 132580 mac 132580 bytes_out 0 132580 bytes_in 0 132580 station_ip 37.129.126.18 132580 port 259 132580 unique_id port 132592 username irannezhad 132592 kill_reason Another user logged on this global unique id 132537 station_ip 37.137.16.5 132537 port 290 132537 unique_id port 132541 username jafari 132541 kill_reason Another user logged on this global unique id 132541 mac 132541 bytes_out 0 132541 bytes_in 0 132541 station_ip 37.137.16.5 132541 port 290 132541 unique_id port 132542 username arash 132542 mac 132542 bytes_out 515596 132542 bytes_in 2980674 132542 station_ip 37.27.5.71 132542 port 259 132542 unique_id port 132542 remote_ip 10.8.0.114 132548 username farhad2 132548 mac 132548 bytes_out 2552692 132548 bytes_in 20416983 132548 station_ip 5.119.216.65 132548 port 265 132548 unique_id port 132548 remote_ip 10.8.0.190 132551 username mansour 132551 mac 132551 bytes_out 0 132551 bytes_in 0 132551 station_ip 5.202.10.115 132551 port 287 132551 unique_id port 132551 remote_ip 10.8.0.30 132556 username barzegar 132556 mac 132556 bytes_out 0 132556 bytes_in 0 132556 station_ip 5.119.157.236 132556 port 172 132556 unique_id port 132556 remote_ip 10.8.1.174 132561 username mosi 132561 kill_reason Another user logged on this global unique id 132561 mac 132561 bytes_out 0 132561 bytes_in 0 132561 station_ip 151.235.127.219 132561 port 169 132561 unique_id port 132561 remote_ip 10.8.1.86 132565 username barzegar 132565 mac 132565 bytes_out 0 132565 bytes_in 0 132565 station_ip 5.119.157.236 132565 port 172 132565 unique_id port 132565 remote_ip 10.8.1.174 132570 username mahdixz 132570 unique_id port 132570 terminate_cause User-Request 132570 bytes_out 312958 132570 bytes_in 10925891 132570 station_ip 37.129.27.197 132570 port 15730341 132570 nas_port_type Virtual 132570 remote_ip 5.5.5.204 132571 username mahdixz 132571 unique_id port 132571 terminate_cause User-Request 132571 bytes_out 68888 132571 bytes_in 264771 132571 station_ip 37.129.27.197 132571 port 15730342 132571 nas_port_type Virtual 132571 remote_ip 5.5.5.205 132572 username barzegar 132572 mac 132572 bytes_out 0 132572 bytes_in 0 132572 station_ip 5.119.157.236 132572 port 265 132572 unique_id port 132572 remote_ip 10.8.0.234 132574 username farhad2 132574 mac 132574 bytes_out 2395660 132574 bytes_in 8487418 132574 station_ip 5.119.216.65 132574 port 252 132574 unique_id port 132574 remote_ip 10.8.0.190 132577 username mahdiyehalizadeh 132577 kill_reason Another user logged on this global unique id 132577 mac 132577 bytes_out 0 132577 bytes_in 0 132577 station_ip 37.129.126.18 132577 port 259 132577 unique_id port 132577 remote_ip 10.8.0.82 132579 username barzegar 132579 mac 132579 bytes_out 0 132579 bytes_in 0 132579 station_ip 5.119.157.236 132579 port 272 132579 unique_id port 132579 remote_ip 10.8.0.234 132581 username zare 132581 kill_reason Another user logged on this global unique id 132581 mac 132581 bytes_out 0 132581 bytes_in 0 132581 station_ip 37.27.55.76 132581 port 285 132581 unique_id port 132582 username irannezhad 132582 kill_reason Another user logged on this global unique id 132582 mac 132582 bytes_out 0 132582 bytes_in 0 132582 station_ip 113.203.108.229 132582 port 265 132582 unique_id port 132582 remote_ip 10.8.0.182 132583 username farhad2 132583 mac 132583 bytes_out 0 132583 bytes_in 0 132583 station_ip 5.119.216.65 132583 port 168 132583 unique_id port 132583 remote_ip 10.8.1.222 132584 username zare 132584 kill_reason Another user logged on this global unique id 132584 mac 132584 bytes_out 0 132584 bytes_in 0 132584 station_ip 37.27.55.76 132584 port 285 132584 unique_id port 132585 username hamidsalari1 132585 mac 132585 bytes_out 0 132585 bytes_in 0 132585 station_ip 37.129.71.21 132573 terminate_cause Lost-Carrier 132573 bytes_out 206589 132573 bytes_in 2491712 132573 station_ip 151.235.89.159 132573 port 15730340 132573 nas_port_type Virtual 132573 remote_ip 5.5.5.192 132575 username barzegar 132575 mac 132575 bytes_out 0 132575 bytes_in 0 132575 station_ip 5.119.157.236 132575 port 252 132575 unique_id port 132575 remote_ip 10.8.0.234 132576 username mosi 132576 mac 132576 bytes_out 0 132576 bytes_in 0 132576 station_ip 151.235.127.219 132576 port 169 132576 unique_id port 132586 username zare 132586 kill_reason Another user logged on this global unique id 132586 mac 132586 bytes_out 0 132586 bytes_in 0 132586 station_ip 37.27.55.76 132586 port 285 132586 unique_id port 132588 username barzegar 132588 mac 132588 bytes_out 0 132588 bytes_in 0 132588 station_ip 5.119.157.236 132588 port 168 132588 unique_id port 132588 remote_ip 10.8.1.174 132589 username zare 132589 kill_reason Another user logged on this global unique id 132589 mac 132589 bytes_out 0 132589 bytes_in 0 132589 station_ip 37.27.55.76 132589 port 285 132589 unique_id port 132590 username irannezhad 132590 kill_reason Another user logged on this global unique id 132590 mac 132590 bytes_out 0 132590 bytes_in 0 132590 station_ip 113.203.108.229 132590 port 265 132590 unique_id port 132597 username irannezhad 132597 kill_reason Another user logged on this global unique id 132597 mac 132597 bytes_out 0 132597 bytes_in 0 132597 station_ip 113.203.108.229 132597 port 265 132597 unique_id port 132598 username zare 132598 kill_reason Another user logged on this global unique id 132598 mac 132598 bytes_out 0 132598 bytes_in 0 132598 station_ip 37.27.55.76 132598 port 285 132598 unique_id port 132599 username barzegar 132599 mac 132599 bytes_out 0 132599 bytes_in 0 132599 station_ip 5.119.157.236 132599 port 259 132599 unique_id port 132599 remote_ip 10.8.0.234 132602 username irannezhad 132602 kill_reason Another user logged on this global unique id 132602 mac 132602 bytes_out 0 132602 bytes_in 0 132602 station_ip 113.203.108.229 132602 port 265 132602 unique_id port 132603 username zare 132603 kill_reason Another user logged on this global unique id 132603 mac 132603 bytes_out 0 132603 bytes_in 0 132603 station_ip 37.27.55.76 132603 port 285 132603 unique_id port 132605 username hamidsalari1 132605 mac 132605 bytes_out 0 132605 bytes_in 0 132605 station_ip 37.129.71.21 132605 port 259 132605 unique_id port 132605 remote_ip 10.8.0.226 132609 username hamidsalari1 132609 mac 132609 bytes_out 0 132609 bytes_in 0 132609 station_ip 37.129.71.21 132609 port 259 132609 unique_id port 132609 remote_ip 10.8.0.226 132610 username zare 132610 kill_reason Another user logged on this global unique id 132610 mac 132610 bytes_out 0 132610 bytes_in 0 132610 station_ip 37.27.55.76 132610 port 285 132610 unique_id port 132611 username irannezhad 132611 kill_reason Another user logged on this global unique id 132611 mac 132611 bytes_out 0 132611 bytes_in 0 132611 station_ip 113.203.108.229 132611 port 265 132611 unique_id port 132628 username irannezhad 132628 kill_reason Another user logged on this global unique id 132628 mac 132628 bytes_out 0 132628 bytes_in 0 132628 station_ip 113.203.108.229 132628 port 265 132628 unique_id port 132629 username zare 132629 mac 132629 bytes_out 0 132629 bytes_in 0 132629 station_ip 37.27.55.76 132629 port 285 132629 unique_id port 132631 username irannezhad 132631 kill_reason Another user logged on this global unique id 132631 mac 132631 bytes_out 0 132631 bytes_in 0 132631 station_ip 113.203.108.229 132631 port 265 132585 port 259 132585 unique_id port 132585 remote_ip 10.8.0.226 132587 username irannezhad 132587 kill_reason Another user logged on this global unique id 132587 mac 132587 bytes_out 0 132587 bytes_in 0 132587 station_ip 113.203.108.229 132587 port 265 132587 unique_id port 132591 username mirzaei 132591 kill_reason Another user logged on this global unique id 132591 mac 132591 bytes_out 0 132591 bytes_in 0 132591 station_ip 5.119.47.186 132591 port 256 132591 unique_id port 132593 username irannezhad 132593 kill_reason Another user logged on this global unique id 132593 mac 132593 bytes_out 0 132593 bytes_in 0 132593 station_ip 113.203.108.229 132593 port 265 132593 unique_id port 132595 username irannezhad 132595 kill_reason Another user logged on this global unique id 132595 mac 132595 bytes_out 0 132595 bytes_in 0 132595 station_ip 113.203.108.229 132595 port 265 132595 unique_id port 132596 username mahdixz 132596 unique_id port 132596 terminate_cause User-Request 132596 bytes_out 349270 132596 bytes_in 14918074 132596 station_ip 37.129.27.197 132596 port 15730344 132596 nas_port_type Virtual 132596 remote_ip 5.5.5.255 132601 username hamidsalari1 132601 mac 132601 bytes_out 0 132601 bytes_in 0 132601 station_ip 37.129.71.21 132601 port 259 132601 unique_id port 132601 remote_ip 10.8.0.226 132604 username irannezhad 132604 kill_reason Another user logged on this global unique id 132604 mac 132604 bytes_out 0 132604 bytes_in 0 132604 station_ip 113.203.108.229 132604 port 265 132604 unique_id port 132606 username zare 132606 kill_reason Another user logged on this global unique id 132606 mac 132606 bytes_out 0 132606 bytes_in 0 132606 station_ip 37.27.55.76 132606 port 285 132606 unique_id port 132612 username barzegar 132612 mac 132612 bytes_out 0 132612 bytes_in 0 132612 station_ip 5.119.157.236 132612 port 168 132612 unique_id port 132612 remote_ip 10.8.1.174 132615 username irannezhad 132615 kill_reason Another user logged on this global unique id 132615 mac 132615 bytes_out 0 132615 bytes_in 0 132615 station_ip 113.203.108.229 132615 port 265 132615 unique_id port 132616 username reza2742 132616 kill_reason Relative expiration date has reached 132616 unique_id port 132616 bytes_out 0 132616 bytes_in 0 132616 station_ip 37.129.252.83 132616 port 15730346 132616 nas_port_type Virtual 132621 username hamidsalari1 132621 mac 132621 bytes_out 13197 132621 bytes_in 30590 132621 station_ip 37.129.71.21 132621 port 259 132621 unique_id port 132621 remote_ip 10.8.0.226 132623 username irannezhad 132623 kill_reason Another user logged on this global unique id 132623 mac 132623 bytes_out 0 132623 bytes_in 0 132623 station_ip 113.203.108.229 132623 port 265 132623 unique_id port 132626 username hamidsalari1 132626 mac 132626 bytes_out 0 132626 bytes_in 0 132626 station_ip 37.129.71.21 132626 port 272 132626 unique_id port 132626 remote_ip 10.8.0.226 132632 username irannezhad 132632 mac 132632 bytes_out 0 132632 bytes_in 0 132632 station_ip 113.203.108.229 132632 port 265 132632 unique_id port 132634 username irannezhad 132634 mac 132634 bytes_out 0 132634 bytes_in 0 132634 station_ip 113.203.108.229 132634 port 259 132634 unique_id port 132634 remote_ip 10.8.0.182 132637 username barzegar 132637 mac 132637 bytes_out 0 132637 bytes_in 0 132637 station_ip 5.119.157.236 132637 port 172 132637 unique_id port 132637 remote_ip 10.8.1.174 132643 username irannezhad 132643 mac 132643 bytes_out 807285 132643 bytes_in 9754465 132643 station_ip 113.203.108.229 132643 port 172 132643 unique_id port 132643 remote_ip 10.8.1.134 132660 username mosi 132592 mac 132592 bytes_out 0 132592 bytes_in 0 132592 station_ip 113.203.108.229 132592 port 265 132592 unique_id port 132594 username mahdixz 132594 unique_id port 132594 terminate_cause User-Request 132594 bytes_out 124199 132594 bytes_in 334541 132594 station_ip 37.129.27.197 132594 port 15730343 132594 nas_port_type Virtual 132594 remote_ip 5.5.5.219 132600 username hamidsalari1 132600 mac 132600 bytes_out 13287 132600 bytes_in 17848 132600 station_ip 37.129.71.21 132600 port 168 132600 unique_id port 132600 remote_ip 10.8.1.170 132607 username irannezhad 132607 kill_reason Another user logged on this global unique id 132607 mac 132607 bytes_out 0 132607 bytes_in 0 132607 station_ip 113.203.108.229 132607 port 265 132607 unique_id port 132608 username irannezhad 132608 kill_reason Another user logged on this global unique id 132608 mac 132608 bytes_out 0 132608 bytes_in 0 132608 station_ip 113.203.108.229 132608 port 265 132608 unique_id port 132613 username irannezhad 132613 kill_reason Another user logged on this global unique id 132613 mac 132613 bytes_out 0 132613 bytes_in 0 132613 station_ip 113.203.108.229 132613 port 265 132613 unique_id port 132614 username reza2742 132614 kill_reason Relative expiration date has reached 132614 unique_id port 132614 bytes_out 0 132614 bytes_in 0 132614 station_ip 37.129.252.83 132614 port 15730345 132614 nas_port_type Virtual 132617 username reza2742 132617 kill_reason Relative expiration date has reached 132617 unique_id port 132617 bytes_out 0 132617 bytes_in 0 132617 station_ip 37.129.252.83 132617 port 15730347 132617 nas_port_type Virtual 132618 username zare 132618 kill_reason Another user logged on this global unique id 132618 mac 132618 bytes_out 0 132618 bytes_in 0 132618 station_ip 37.27.55.76 132618 port 285 132618 unique_id port 132619 username irannezhad 132619 kill_reason Another user logged on this global unique id 132619 mac 132619 bytes_out 0 132619 bytes_in 0 132619 station_ip 113.203.108.229 132619 port 265 132619 unique_id port 132620 username zare 132620 kill_reason Another user logged on this global unique id 132620 mac 132620 bytes_out 0 132620 bytes_in 0 132620 station_ip 37.27.55.76 132620 port 285 132620 unique_id port 132622 username hamidsalari1 132622 mac 132622 bytes_out 0 132622 bytes_in 0 132622 station_ip 37.129.71.21 132622 port 259 132622 unique_id port 132622 remote_ip 10.8.0.226 132624 username barzegar 132624 mac 132624 bytes_out 0 132624 bytes_in 0 132624 station_ip 5.119.157.236 132624 port 168 132624 unique_id port 132624 remote_ip 10.8.1.174 132625 username mehdizare 132625 kill_reason Maximum check online fails reached 132625 mac 132625 bytes_out 0 132625 bytes_in 0 132625 station_ip 5.120.148.206 132625 port 286 132625 unique_id port 132625 remote_ip 10.8.0.90 132627 username irannezhad 132627 kill_reason Another user logged on this global unique id 132627 mac 132627 bytes_out 0 132627 bytes_in 0 132627 station_ip 113.203.108.229 132627 port 265 132627 unique_id port 132630 username barzegar 132630 mac 132630 bytes_out 0 132630 bytes_in 0 132630 station_ip 5.119.157.236 132630 port 168 132630 unique_id port 132630 remote_ip 10.8.1.174 132633 username irannezhad 132633 mac 132633 bytes_out 0 132633 bytes_in 0 132633 station_ip 113.203.108.229 132633 port 259 132633 unique_id port 132633 remote_ip 10.8.0.182 132635 username mosi 132635 mac 132635 bytes_out 2620942 132635 bytes_in 20183266 132635 station_ip 94.24.97.18 132635 port 172 132635 unique_id port 132635 remote_ip 10.8.1.86 132639 username irannezhad 132639 mac 132639 bytes_out 0 132639 bytes_in 0 132631 unique_id port 132636 username irannezhad 132636 mac 132636 bytes_out 0 132636 bytes_in 0 132636 station_ip 113.203.108.229 132636 port 172 132636 unique_id port 132636 remote_ip 10.8.1.134 132638 username irannezhad 132638 mac 132638 bytes_out 0 132638 bytes_in 0 132638 station_ip 113.203.108.229 132638 port 172 132638 unique_id port 132638 remote_ip 10.8.1.134 132640 username irannezhad 132640 mac 132640 bytes_out 0 132640 bytes_in 0 132640 station_ip 113.203.108.229 132640 port 172 132640 unique_id port 132640 remote_ip 10.8.1.134 132648 username barzegar 132648 mac 132648 bytes_out 0 132648 bytes_in 0 132648 station_ip 5.119.157.236 132648 port 173 132648 unique_id port 132648 remote_ip 10.8.1.174 132649 username barzegar 132649 mac 132649 bytes_out 0 132649 bytes_in 0 132649 station_ip 5.119.157.236 132649 port 259 132649 unique_id port 132649 remote_ip 10.8.0.234 132652 username reza2742 132652 kill_reason Relative expiration date has reached 132652 unique_id port 132652 bytes_out 0 132652 bytes_in 0 132652 station_ip 37.129.252.83 132652 port 15730349 132652 nas_port_type Virtual 132653 username reza2742 132653 kill_reason Relative expiration date has reached 132653 unique_id port 132653 bytes_out 0 132653 bytes_in 0 132653 station_ip 37.129.252.83 132653 port 15730350 132653 nas_port_type Virtual 132657 username mosi 132657 mac 132657 bytes_out 0 132657 bytes_in 0 132657 station_ip 151.235.127.219 132657 port 169 132657 unique_id port 132658 username irannezhad 132658 kill_reason Another user logged on this global unique id 132658 mac 132658 bytes_out 0 132658 bytes_in 0 132658 station_ip 113.203.108.229 132658 port 172 132658 unique_id port 132661 username irannezhad 132661 kill_reason Another user logged on this global unique id 132661 mac 132661 bytes_out 0 132661 bytes_in 0 132661 station_ip 113.203.108.229 132661 port 172 132661 unique_id port 132662 username barzegar 132662 mac 132662 bytes_out 0 132662 bytes_in 0 132662 station_ip 5.119.157.236 132662 port 259 132662 unique_id port 132662 remote_ip 10.8.0.234 132666 username barzegar 132666 mac 132666 bytes_out 0 132666 bytes_in 0 132666 station_ip 5.119.157.236 132666 port 173 132666 unique_id port 132666 remote_ip 10.8.1.174 132668 username abravesh 132668 unique_id port 132668 terminate_cause User-Request 132668 bytes_out 248 132668 bytes_in 172 132668 station_ip 5.120.117.219 132668 port 15730352 132668 nas_port_type Virtual 132668 remote_ip 5.5.5.147 132675 username barzegar 132675 mac 132675 bytes_out 0 132675 bytes_in 0 132675 station_ip 5.119.157.236 132675 port 265 132675 unique_id port 132675 remote_ip 10.8.0.234 132676 username hamidsalari1 132676 mac 132676 bytes_out 418644 132676 bytes_in 2026164 132676 station_ip 37.129.77.145 132676 port 168 132676 unique_id port 132676 remote_ip 10.8.1.170 132680 username morteza 132680 mac 132680 bytes_out 0 132680 bytes_in 0 132680 station_ip 83.122.248.205 132680 port 172 132680 unique_id port 132680 remote_ip 10.8.1.62 132687 username milan 132687 kill_reason Maximum check online fails reached 132687 mac 132687 bytes_out 0 132687 bytes_in 0 132687 station_ip 5.119.229.52 132687 port 265 132687 unique_id port 132688 username barzegar 132688 mac 132688 bytes_out 0 132688 bytes_in 0 132688 station_ip 5.119.157.236 132688 port 168 132688 unique_id port 132688 remote_ip 10.8.1.174 132692 username bcboard 132692 unique_id port 132692 terminate_cause User-Request 132692 bytes_out 105947 132692 bytes_in 1186708 132639 station_ip 113.203.108.229 132639 port 259 132639 unique_id port 132639 remote_ip 10.8.0.182 132641 username irannezhad 132641 mac 132641 bytes_out 0 132641 bytes_in 0 132641 station_ip 113.203.108.229 132641 port 172 132641 unique_id port 132641 remote_ip 10.8.1.134 132642 username barzegar 132642 mac 132642 bytes_out 0 132642 bytes_in 0 132642 station_ip 5.119.157.236 132642 port 259 132642 unique_id port 132642 remote_ip 10.8.0.234 132644 username irannezhad 132644 mac 132644 bytes_out 0 132644 bytes_in 0 132644 station_ip 113.203.108.229 132644 port 172 132644 unique_id port 132644 remote_ip 10.8.1.134 132645 username irannezhad 132645 mac 132645 bytes_out 0 132645 bytes_in 0 132645 station_ip 113.203.108.229 132645 port 172 132645 unique_id port 132645 remote_ip 10.8.1.134 132646 username irannezhad 132646 mac 132646 bytes_out 0 132646 bytes_in 0 132646 station_ip 113.203.108.229 132646 port 172 132646 unique_id port 132646 remote_ip 10.8.1.134 132647 username irannezhad 132647 mac 132647 bytes_out 0 132647 bytes_in 0 132647 station_ip 113.203.108.229 132647 port 259 132647 unique_id port 132647 remote_ip 10.8.0.182 132650 username irannezhad 132650 kill_reason Another user logged on this global unique id 132650 mac 132650 bytes_out 0 132650 bytes_in 0 132650 station_ip 113.203.108.229 132650 port 172 132650 unique_id port 132650 remote_ip 10.8.1.134 132651 username reza2742 132651 kill_reason Relative expiration date has reached 132651 unique_id port 132651 bytes_out 0 132651 bytes_in 0 132651 station_ip 37.129.252.83 132651 port 15730348 132651 nas_port_type Virtual 132654 username mosi 132654 kill_reason Another user logged on this global unique id 132654 mac 132654 bytes_out 0 132654 bytes_in 0 132654 station_ip 151.235.127.219 132654 port 169 132654 unique_id port 132654 remote_ip 10.8.1.86 132655 username barzegar 132655 mac 132655 bytes_out 0 132655 bytes_in 0 132655 station_ip 5.119.157.236 132655 port 173 132655 unique_id port 132655 remote_ip 10.8.1.174 132656 username irannezhad 132656 kill_reason Another user logged on this global unique id 132656 mac 132656 bytes_out 0 132656 bytes_in 0 132656 station_ip 113.203.108.229 132656 port 172 132656 unique_id port 69342 username arezoo 69342 kill_reason Maximum check online fails reached 69342 mac 5.237.82.77:49194: Unknown host 69342 bytes_out 0 69342 bytes_in 0 69342 station_ip 5.237.82.77:49194 69342 port 1017 69342 unique_id port 132659 username barzegar 132659 mac 132659 bytes_out 0 132659 bytes_in 0 132659 station_ip 5.119.157.236 132659 port 259 132659 unique_id port 132659 remote_ip 10.8.0.234 132667 username irannezhad 132667 mac 132667 bytes_out 0 132667 bytes_in 0 132667 station_ip 113.203.108.229 132667 port 172 132667 unique_id port 132672 username mosi 132672 kill_reason Another user logged on this global unique id 132672 mac 132672 bytes_out 0 132672 bytes_in 0 132672 station_ip 151.235.127.219 132672 port 169 132672 unique_id port 132672 remote_ip 10.8.1.86 69351 username arezoo 69351 kill_reason Maximum check online fails reached 69351 mac 5.237.82.77:49238: Unknown host 69351 bytes_out 0 69351 bytes_in 0 69351 station_ip 5.237.82.77:49238 69351 port 1017 69351 unique_id port 132673 username barzegar 132673 mac 132673 bytes_out 0 132673 bytes_in 0 132673 station_ip 5.119.157.236 132673 port 173 132673 unique_id port 132673 remote_ip 10.8.1.174 132674 username mehdizare 132674 mac 132674 bytes_out 454141 132674 bytes_in 1119976 132674 station_ip 5.120.148.206 132674 port 172 132674 unique_id port 132660 mac 132660 bytes_out 0 132660 bytes_in 0 132660 station_ip 151.235.127.219 132660 port 169 132660 unique_id port 132660 remote_ip 10.8.1.86 132663 username irannezhad 132663 kill_reason Another user logged on this global unique id 132663 mac 132663 bytes_out 0 132663 bytes_in 0 132663 station_ip 113.203.108.229 132663 port 172 132663 unique_id port 132664 username barzegar 132664 mac 132664 bytes_out 0 132664 bytes_in 0 132664 station_ip 5.119.157.236 132664 port 173 132664 unique_id port 132664 remote_ip 10.8.1.174 132665 username irannezhad 132665 kill_reason Another user logged on this global unique id 132665 mac 132665 bytes_out 0 132665 bytes_in 0 132665 station_ip 113.203.108.229 132665 port 172 132665 unique_id port 132669 username barzegar 132669 mac 132669 bytes_out 0 132669 bytes_in 0 132669 station_ip 5.119.157.236 132669 port 259 132669 unique_id port 132669 remote_ip 10.8.0.234 132670 username abravesh 132670 unique_id port 132670 terminate_cause Lost-Carrier 132670 bytes_out 6447324 132670 bytes_in 289199238 132670 station_ip 5.119.27.18 132670 port 15730351 132670 nas_port_type Virtual 132670 remote_ip 5.5.5.144 132671 username mehdizare 132671 mac 132671 bytes_out 0 132671 bytes_in 0 132671 station_ip 5.120.148.206 132671 port 172 132671 unique_id port 132671 remote_ip 10.8.1.42 132677 username barzegar 132677 mac 132677 bytes_out 0 132677 bytes_in 0 132677 station_ip 5.119.157.236 132677 port 265 132677 unique_id port 132677 remote_ip 10.8.0.234 132678 username milan 132678 mac 132678 bytes_out 0 132678 bytes_in 0 132678 station_ip 5.119.229.52 132678 port 265 132678 unique_id port 132678 remote_ip 10.8.0.218 132679 username milan 132679 mac 132679 bytes_out 0 132679 bytes_in 0 132679 station_ip 5.119.229.52 132679 port 272 132679 unique_id port 132679 remote_ip 10.8.0.218 132684 username barzegar 132684 mac 132684 bytes_out 0 132684 bytes_in 0 132684 station_ip 5.119.157.236 132684 port 272 132684 unique_id port 132684 remote_ip 10.8.0.234 132685 username morteza 132685 mac 132685 bytes_out 0 132685 bytes_in 0 132685 station_ip 83.122.248.205 132685 port 168 132685 unique_id port 132685 remote_ip 10.8.1.62 132689 username barzegar 132689 mac 132689 bytes_out 0 132689 bytes_in 0 132689 station_ip 5.119.157.236 132689 port 272 132689 unique_id port 132689 remote_ip 10.8.0.234 132691 username barzegar 132691 mac 132691 bytes_out 0 132691 bytes_in 0 132691 station_ip 5.119.157.236 132691 port 265 132691 unique_id port 132691 remote_ip 10.8.0.234 132694 username bcboard 132694 unique_id port 132694 terminate_cause User-Request 132694 bytes_out 224795 132694 bytes_in 7449547 132694 station_ip 37.129.254.106 132694 port 15730354 132694 nas_port_type Virtual 132694 remote_ip 5.5.5.154 132701 username barzegar 132701 mac 132701 bytes_out 0 132701 bytes_in 0 132701 station_ip 5.119.157.236 132701 port 272 132701 unique_id port 132701 remote_ip 10.8.0.234 132710 username bcboard 132710 unique_id port 132710 terminate_cause User-Request 132710 bytes_out 266096 132710 bytes_in 7275303 132710 station_ip 37.129.254.106 132710 port 15730360 132710 nas_port_type Virtual 132710 remote_ip 5.5.5.171 132711 username barzegar 132711 mac 132711 bytes_out 0 132711 bytes_in 0 132711 station_ip 5.119.157.236 132711 port 275 132711 unique_id port 132711 remote_ip 10.8.0.234 132713 username arash 132713 kill_reason Another user logged on this global unique id 132713 mac 132713 bytes_out 0 132713 bytes_in 0 132674 remote_ip 10.8.1.42 132681 username hamidsalari1 132681 mac 132681 bytes_out 18939 132681 bytes_in 29234 132681 station_ip 37.129.77.145 132681 port 168 132681 unique_id port 132681 remote_ip 10.8.1.170 132682 username morteza 132682 mac 132682 bytes_out 0 132682 bytes_in 0 132682 station_ip 83.122.248.205 132682 port 168 132682 unique_id port 132682 remote_ip 10.8.1.62 132683 username milan 132683 kill_reason Another user logged on this global unique id 132683 mac 132683 bytes_out 0 132683 bytes_in 0 132683 station_ip 5.119.229.52 132683 port 265 132683 unique_id port 132683 remote_ip 10.8.0.218 132686 username milan 132686 kill_reason Another user logged on this global unique id 132686 mac 132686 bytes_out 0 132686 bytes_in 0 132686 station_ip 5.119.229.52 132686 port 265 132686 unique_id port 132690 username aminvpn 132690 mac 132690 bytes_out 151406 132690 bytes_in 363290 132690 station_ip 37.129.95.158 132690 port 265 132690 unique_id port 132690 remote_ip 10.8.0.14 132693 username mosi 132693 mac 132693 bytes_out 0 132693 bytes_in 0 132693 station_ip 151.235.127.219 132693 port 169 132693 unique_id port 132696 username bcboard 132696 unique_id port 132696 terminate_cause User-Request 132696 bytes_out 78415 132696 bytes_in 1831208 132696 station_ip 37.129.254.106 132696 port 15730355 132696 nas_port_type Virtual 132696 remote_ip 5.5.5.155 132698 username bcboard 132698 unique_id port 132698 terminate_cause User-Request 132698 bytes_out 231622 132698 bytes_in 8258130 132698 station_ip 37.129.254.106 132698 port 15730357 132698 nas_port_type Virtual 132698 remote_ip 5.5.5.161 132700 username sedighe 132700 mac 132700 bytes_out 488275 132700 bytes_in 6929313 132700 station_ip 83.123.243.222 132700 port 272 132700 unique_id port 132700 remote_ip 10.8.0.146 132704 username hamidsalari1 132704 mac 132704 bytes_out 7745 132704 bytes_in 12786 132704 station_ip 83.122.34.143 132704 port 275 132704 unique_id port 132704 remote_ip 10.8.0.226 132705 username sedighe 132705 mac 132705 bytes_out 121439 132705 bytes_in 186480 132705 station_ip 83.122.150.83 132705 port 279 132705 unique_id port 132705 remote_ip 10.8.0.146 132706 username bcboard 132706 unique_id port 132706 terminate_cause User-Request 132706 bytes_out 230273 132706 bytes_in 7639208 132706 station_ip 37.129.254.106 132706 port 15730358 132706 nas_port_type Virtual 132706 remote_ip 5.5.5.164 132707 username sedighe 132707 mac 132707 bytes_out 0 132707 bytes_in 0 132707 station_ip 37.129.56.194 132707 port 275 132707 unique_id port 132707 remote_ip 10.8.0.146 132709 username bcboard 132709 unique_id port 132709 terminate_cause User-Request 132709 bytes_out 156990 132709 bytes_in 570207 132709 station_ip 37.129.254.106 132709 port 15730359 132709 nas_port_type Virtual 132709 remote_ip 5.5.5.169 132712 username bcboard 132712 unique_id port 132712 terminate_cause User-Request 132712 bytes_out 266448 132712 bytes_in 9985441 132712 station_ip 37.129.254.106 132712 port 15730361 132712 nas_port_type Virtual 69391 username arezoo 69391 kill_reason Another user logged on this global unique id 69391 mac 5.237.95.149:49256: Unknown host 69391 bytes_out 0 69391 bytes_in 0 69391 station_ip 5.237.95.149:49256 69391 port 1017 69391 unique_id port 132712 remote_ip 5.5.5.175 132714 username bcboard 132714 unique_id port 132714 terminate_cause User-Request 132714 bytes_out 29517 132714 bytes_in 266744 132714 station_ip 37.129.254.106 132714 port 15730362 132714 nas_port_type Virtual 132714 remote_ip 5.5.5.176 132717 username arash 132717 mac 132717 bytes_out 0 132717 bytes_in 0 132692 station_ip 37.129.254.106 132692 port 15730353 132692 nas_port_type Virtual 132692 remote_ip 5.5.5.150 132695 username barzegar 132695 mac 132695 bytes_out 0 132695 bytes_in 0 132695 station_ip 5.119.157.236 132695 port 169 132695 unique_id port 132695 remote_ip 10.8.1.174 132697 username bcboard 132697 unique_id port 132697 terminate_cause User-Request 132697 bytes_out 287772 132697 bytes_in 10952748 132697 station_ip 37.129.254.106 132697 port 15730356 132697 nas_port_type Virtual 132697 remote_ip 5.5.5.157 132699 username morteza 132699 mac 132699 bytes_out 0 132699 bytes_in 0 132699 station_ip 83.122.198.133 132699 port 168 132699 unique_id port 132699 remote_ip 10.8.1.62 132702 username sedighe 132702 mac 132702 bytes_out 0 132702 bytes_in 0 132702 station_ip 83.123.243.222 132702 port 275 132702 unique_id port 132702 remote_ip 10.8.0.146 132703 username barzegar 132703 mac 132703 bytes_out 0 132703 bytes_in 0 132703 station_ip 5.119.157.236 132703 port 285 132703 unique_id port 132703 remote_ip 10.8.0.234 132708 username morteza 132708 mac 132708 bytes_out 0 132708 bytes_in 0 132708 station_ip 83.122.240.213 132708 port 168 132708 unique_id port 132708 remote_ip 10.8.1.62 132716 username bcboard 132716 unique_id port 132716 terminate_cause User-Request 132716 bytes_out 57020 132716 bytes_in 1382584 132716 station_ip 37.129.254.106 132716 port 15730363 132716 nas_port_type Virtual 132716 remote_ip 5.5.5.177 132718 username hamidsalari1 132718 mac 132718 bytes_out 6810 132718 bytes_in 8551 132718 station_ip 83.122.34.143 132718 port 275 132718 unique_id port 132718 remote_ip 10.8.0.226 132719 username barzegar 132719 mac 132719 bytes_out 0 132719 bytes_in 0 132719 station_ip 5.119.157.236 132719 port 275 132719 unique_id port 132719 remote_ip 10.8.0.234 132731 username barzegar 132731 mac 132731 bytes_out 0 132731 bytes_in 0 132731 station_ip 5.119.157.236 132731 port 285 132731 unique_id port 132731 remote_ip 10.8.0.234 132733 username hamid 132733 kill_reason Another user logged on this global unique id 132733 mac 132733 bytes_out 0 132733 bytes_in 0 132733 station_ip 83.123.100.51 132733 port 275 132733 unique_id port 132733 remote_ip 10.8.0.106 132734 username arash 132734 kill_reason Another user logged on this global unique id 132734 mac 132734 bytes_out 0 132734 bytes_in 0 132734 station_ip 37.27.5.71 132734 port 279 132734 unique_id port 132734 remote_ip 10.8.0.114 132736 username malekpoir 132736 kill_reason Another user logged on this global unique id 132736 mac 132736 bytes_out 0 132736 bytes_in 0 132736 station_ip 5.119.79.60 132736 port 286 132736 unique_id port 132736 remote_ip 10.8.0.58 132737 username arash 132737 mac 132737 bytes_out 0 132737 bytes_in 0 132737 station_ip 37.27.5.71 132737 port 279 132737 unique_id port 132738 username barzegar 132738 mac 132738 bytes_out 0 132738 bytes_in 0 132738 station_ip 5.119.157.236 132738 port 279 132738 unique_id port 132738 remote_ip 10.8.0.234 132744 username sekonji3 132744 mac 132744 bytes_out 55632 132744 bytes_in 170489 132744 station_ip 83.123.61.243 132744 port 168 132744 unique_id port 132744 remote_ip 10.8.1.238 132747 username aminvpn 132747 mac 132747 bytes_out 0 132747 bytes_in 0 132747 station_ip 83.122.164.197 132747 port 256 132747 unique_id port 132747 remote_ip 10.8.0.14 132749 username vanila 132749 mac 132749 bytes_out 0 132749 bytes_in 0 132749 station_ip 83.122.125.68 132749 port 275 132749 unique_id port 132713 station_ip 37.27.5.71 132713 port 272 132713 unique_id port 132713 remote_ip 10.8.0.114 132715 username barzegar 132715 mac 132715 bytes_out 0 132715 bytes_in 0 132715 station_ip 5.119.157.236 132715 port 275 132715 unique_id port 132715 remote_ip 10.8.0.234 132720 username mohammadjavad 132720 mac 132720 bytes_out 161533 132720 bytes_in 181322 132720 station_ip 83.122.60.243 132720 port 286 132720 unique_id port 132720 remote_ip 10.8.0.142 132722 username bcboard 132722 unique_id port 132722 terminate_cause User-Request 132722 bytes_out 57591 132722 bytes_in 27429 132722 station_ip 37.129.254.106 132722 port 15730365 132722 nas_port_type Virtual 132722 remote_ip 5.5.5.181 132724 username arash 132724 mac 132724 bytes_out 1215072 132724 bytes_in 16728387 132724 station_ip 37.27.5.71 132724 port 279 132724 unique_id port 132724 remote_ip 10.8.0.114 132725 username arash 132725 mac 132725 bytes_out 0 132725 bytes_in 0 132725 station_ip 37.27.5.71 132725 port 275 132725 unique_id port 132725 remote_ip 10.8.0.114 132726 username jamali 132726 kill_reason Another user logged on this global unique id 132726 mac 132726 bytes_out 0 132726 bytes_in 0 132726 station_ip 5.120.162.252 132726 port 280 132726 unique_id port 132729 username arash 132729 mac 132729 bytes_out 0 132729 bytes_in 0 132729 station_ip 37.27.5.71 132729 port 279 132729 unique_id port 132729 remote_ip 10.8.0.114 132730 username godarzi 132730 kill_reason Another user logged on this global unique id 132730 mac 132730 bytes_out 0 132730 bytes_in 0 132730 station_ip 5.202.6.3 132730 port 169 132730 unique_id port 132730 remote_ip 10.8.1.230 132735 username mostafa_es78 132735 unique_id port 132735 terminate_cause Lost-Carrier 132735 bytes_out 156528 132735 bytes_in 1381790 132735 station_ip 5.119.145.112 132735 port 15730367 132735 nas_port_type Virtual 132735 remote_ip 5.5.5.193 132740 username hamid 132740 mac 132740 bytes_out 0 132740 bytes_in 0 132740 station_ip 83.123.100.51 132740 port 275 132740 unique_id port 132741 username mirzaei 132741 mac 132741 bytes_out 0 132741 bytes_in 0 132741 station_ip 5.119.47.186 132741 port 256 132741 unique_id port 132742 username godarzi 132742 mac 132742 bytes_out 0 132742 bytes_in 0 132742 station_ip 5.202.6.3 132742 port 169 132742 unique_id port 132746 username barzegar 132746 mac 132746 bytes_out 0 132746 bytes_in 0 132746 station_ip 5.119.157.236 132746 port 285 132746 unique_id port 132746 remote_ip 10.8.0.234 132751 username mostafa_es78 132751 unique_id port 132751 terminate_cause User-Request 132751 bytes_out 144 132751 bytes_in 186 132751 station_ip 5.119.244.130 132751 port 15730368 132751 nas_port_type Virtual 132751 remote_ip 5.5.5.120 132752 username hamidsalari1 132752 mac 132752 bytes_out 0 132752 bytes_in 0 132752 station_ip 83.122.34.143 132752 port 272 132752 unique_id port 132752 remote_ip 10.8.0.226 132754 username yahodi 132754 mac 132754 bytes_out 952748 132754 bytes_in 6410413 132754 station_ip 83.122.253.36 132754 port 272 132754 unique_id port 132754 remote_ip 10.8.0.202 132756 username rezaei 132756 mac 132756 bytes_out 1649384 132756 bytes_in 15161883 132756 station_ip 5.119.225.165 132756 port 256 132756 unique_id port 132756 remote_ip 10.8.0.206 132758 username barzegar 132758 mac 132758 bytes_out 0 132758 bytes_in 0 132758 station_ip 5.119.157.236 132758 port 256 132758 unique_id port 132758 remote_ip 10.8.0.234 132760 username barzegar 132760 mac 132717 station_ip 37.27.5.71 132717 port 272 132717 unique_id port 132721 username bcboard 132721 unique_id port 132721 terminate_cause User-Request 132721 bytes_out 59438 132721 bytes_in 1120634 132721 station_ip 37.129.254.106 132721 port 15730364 132721 nas_port_type Virtual 132721 remote_ip 5.5.5.178 132723 username mohammadjavad 132723 mac 132723 bytes_out 334676 132723 bytes_in 1984271 132723 station_ip 83.122.60.243 132723 port 275 132723 unique_id port 132723 remote_ip 10.8.0.142 132727 username mostafa_es78 132727 unique_id port 132727 terminate_cause User-Request 132727 bytes_out 258 132727 bytes_in 172 132727 station_ip 5.119.145.112 132727 port 15730366 132727 nas_port_type Virtual 132727 remote_ip 5.5.5.189 132728 username barzegar 132728 mac 132728 bytes_out 0 132728 bytes_in 0 132728 station_ip 5.119.157.236 132728 port 172 132728 unique_id port 132728 remote_ip 10.8.1.174 132732 username sabaghnezhad 132732 mac 132732 bytes_out 0 132732 bytes_in 0 132732 station_ip 83.123.185.203 132732 port 252 132732 unique_id port 132732 remote_ip 10.8.0.186 132739 username mohammadjavad 132739 mac 132739 bytes_out 0 132739 bytes_in 0 132739 station_ip 37.129.93.52 132739 port 252 132739 unique_id port 132739 remote_ip 10.8.0.142 132743 username malekpoir 132743 kill_reason Another user logged on this global unique id 132743 mac 132743 bytes_out 0 132743 bytes_in 0 132743 station_ip 5.119.79.60 132743 port 286 132743 unique_id port 132745 username barzegar 132745 mac 132745 bytes_out 0 132745 bytes_in 0 132745 station_ip 5.119.157.236 132745 port 256 132745 unique_id port 132745 remote_ip 10.8.0.234 132748 username mohammadjavad 132748 mac 132748 bytes_out 0 132748 bytes_in 0 132748 station_ip 83.122.55.116 132748 port 279 132748 unique_id port 132748 remote_ip 10.8.0.142 132753 username mostafa_es78 132753 unique_id port 132753 terminate_cause User-Request 132753 bytes_out 46228 132753 bytes_in 273554 132753 station_ip 5.119.244.130 132753 port 15730369 132753 nas_port_type Virtual 132753 remote_ip 5.5.5.121 132759 username aminvpn 132759 mac 132759 bytes_out 350925 132759 bytes_in 881483 132759 station_ip 83.122.49.160 132759 port 168 132759 unique_id port 132759 remote_ip 10.8.1.6 132761 username tahmasebi 132761 mac 132761 bytes_out 0 132761 bytes_in 0 132761 station_ip 5.120.83.243 132761 port 282 132761 unique_id port 132762 username aminvpn 132762 mac 132762 bytes_out 0 132762 bytes_in 0 132762 station_ip 83.122.49.160 132762 port 168 132762 unique_id port 132762 remote_ip 10.8.1.6 132767 username mehdizare 132767 mac 132767 bytes_out 1344725 132767 bytes_in 5305926 132767 station_ip 5.120.148.206 132767 port 259 132767 unique_id port 132767 remote_ip 10.8.0.90 132776 username zare 132776 kill_reason Another user logged on this global unique id 132776 mac 132776 bytes_out 0 132776 bytes_in 0 132776 station_ip 94.183.214.14 132776 port 275 132776 unique_id port 132779 username khalili 132779 mac 132779 bytes_out 0 132779 bytes_in 0 132779 station_ip 5.119.179.187 132779 port 169 132779 unique_id port 132779 remote_ip 10.8.1.18 132780 username zare 132780 mac 132780 bytes_out 0 69458 username arezoo 132780 bytes_in 0 132780 station_ip 94.183.214.14 132780 port 275 132780 unique_id port 132781 username mohsenaskari 132781 mac 132781 bytes_out 330834 132781 bytes_in 1657877 132781 station_ip 46.225.213.105 132781 port 282 132781 unique_id port 132781 remote_ip 10.8.0.246 132784 username zare 132784 mac 132749 remote_ip 10.8.0.178 132750 username barzegar 132750 mac 132750 bytes_out 2530 132750 bytes_in 4929 132750 station_ip 5.119.157.236 132750 port 168 132750 unique_id port 132750 remote_ip 10.8.1.174 132755 username barzegar 132755 mac 132755 bytes_out 10748 132755 bytes_in 27427 132755 station_ip 5.119.157.236 132755 port 279 132755 unique_id port 132755 remote_ip 10.8.0.234 132757 username mostafa_es78 132757 unique_id port 132757 terminate_cause User-Request 132757 bytes_out 1079574 132757 bytes_in 27509278 132757 station_ip 5.119.244.130 132757 port 15730370 132757 nas_port_type Virtual 132757 remote_ip 5.5.5.122 132766 username barzegar 132766 mac 132766 bytes_out 0 132766 bytes_in 0 132766 station_ip 5.119.157.236 132766 port 256 132766 unique_id port 132766 remote_ip 10.8.0.234 132769 username aminvpn 132769 kill_reason Another user logged on this global unique id 132769 mac 132769 bytes_out 0 132769 bytes_in 0 132769 station_ip 83.122.204.30 132769 port 279 132769 unique_id port 132769 remote_ip 10.8.0.14 132770 username barzegar 132770 mac 132770 bytes_out 0 132770 bytes_in 0 132770 station_ip 5.119.157.236 132770 port 282 132770 unique_id port 132770 remote_ip 10.8.0.234 132772 username mohammadjavad 132772 mac 132772 bytes_out 18464 132772 bytes_in 29687 132772 station_ip 113.203.92.67 132772 port 275 132772 unique_id port 132772 remote_ip 10.8.0.142 132773 username godarzi 132773 mac 132773 bytes_out 0 132773 bytes_in 0 132773 station_ip 5.120.185.233 132773 port 168 132773 unique_id port 132773 remote_ip 10.8.1.230 132774 username zare 132774 kill_reason Another user logged on this global unique id 132774 mac 132774 bytes_out 0 132774 bytes_in 0 132774 station_ip 94.183.214.14 132774 port 275 132774 unique_id port 132774 remote_ip 10.8.0.18 132775 username barzegar 132775 mac 132775 bytes_out 26668 132775 bytes_in 57960 132775 station_ip 5.119.157.236 132775 port 256 132775 unique_id port 132775 remote_ip 10.8.0.234 132783 username sekonji3 132783 mac 132783 bytes_out 0 132783 bytes_in 0 132783 station_ip 83.123.61.243 132783 port 282 132783 unique_id port 132783 remote_ip 10.8.0.6 132788 username godarzi 132788 mac 132788 bytes_out 0 132788 bytes_in 0 132788 station_ip 5.120.185.233 132788 port 168 132788 unique_id port 132788 remote_ip 10.8.1.230 132790 username zare 132790 mac 132790 bytes_out 0 132790 bytes_in 0 132790 station_ip 94.183.214.14 132790 port 285 132790 unique_id port 132790 remote_ip 10.8.0.18 132794 username zare 132794 mac 132794 bytes_out 0 132794 bytes_in 0 132794 station_ip 94.183.214.14 132794 port 285 132794 unique_id port 132794 remote_ip 10.8.0.18 132796 username hashtadani3 132796 mac 132796 bytes_out 1459205 132796 bytes_in 15080267 132796 station_ip 83.123.212.240 132796 port 256 132796 unique_id port 132796 remote_ip 10.8.0.154 132802 username zare 132802 mac 69458 kill_reason Maximum check online fails reached 69458 mac 5.237.85.226:49244: Unknown host 69458 bytes_out 0 69458 bytes_in 0 69458 station_ip 5.237.85.226:49244 69458 port 1017 69458 unique_id port 132802 bytes_out 0 132802 bytes_in 0 132802 station_ip 94.183.214.14 132802 port 256 132802 unique_id port 132802 remote_ip 10.8.0.18 132803 username hashtadani3 132803 mac 132803 bytes_out 0 132803 bytes_in 0 132803 station_ip 83.123.212.240 132803 port 256 132803 unique_id port 132803 remote_ip 10.8.0.154 132809 username zare 132809 mac 132809 bytes_out 0 132809 bytes_in 0 132760 bytes_out 0 132760 bytes_in 0 132760 station_ip 5.119.157.236 132760 port 256 132760 unique_id port 132760 remote_ip 10.8.0.234 132763 username barzegar 132763 mac 132763 bytes_out 0 132763 bytes_in 0 132763 station_ip 5.119.157.236 132763 port 256 132763 unique_id port 132763 remote_ip 10.8.0.234 132764 username barzegar 132764 mac 132764 bytes_out 0 132764 bytes_in 0 132764 station_ip 5.119.157.236 132764 port 168 132764 unique_id port 132764 remote_ip 10.8.1.174 132765 username godarzi 132765 mac 132765 bytes_out 209566 132765 bytes_in 2700433 132765 station_ip 5.120.185.233 132765 port 168 132765 unique_id port 132765 remote_ip 10.8.1.230 132768 username hamidsalari1 132768 mac 132768 bytes_out 0 132768 bytes_in 0 132768 station_ip 83.122.34.143 132768 port 275 132768 unique_id port 132768 remote_ip 10.8.0.226 132771 username vanila 132771 mac 132771 bytes_out 9128950 132771 bytes_in 1144583 132771 station_ip 83.122.125.68 132771 port 256 132771 unique_id port 132771 remote_ip 10.8.0.178 132777 username barzegar 132777 mac 132777 bytes_out 0 132777 bytes_in 0 132777 station_ip 5.119.157.236 132777 port 256 132777 unique_id port 132777 remote_ip 10.8.0.234 132778 username zare 132778 kill_reason Another user logged on this global unique id 132778 mac 132778 bytes_out 0 132778 bytes_in 0 132778 station_ip 94.183.214.14 132778 port 275 132778 unique_id port 132782 username barzegar 132782 mac 132782 bytes_out 0 132782 bytes_in 0 132782 station_ip 5.119.157.236 132782 port 169 132782 unique_id port 132782 remote_ip 10.8.1.174 132787 username zare 132787 mac 132787 bytes_out 0 132787 bytes_in 0 132787 station_ip 94.183.214.14 132787 port 282 132787 unique_id port 132787 remote_ip 10.8.0.18 132789 username zare 132789 mac 132789 bytes_out 0 132789 bytes_in 0 132789 station_ip 94.183.214.14 132789 port 282 132789 unique_id port 132789 remote_ip 10.8.0.18 132791 username zare 132791 mac 132791 bytes_out 0 132791 bytes_in 0 132791 station_ip 94.183.214.14 132791 port 285 132791 unique_id port 132791 remote_ip 10.8.0.18 132795 username zare 132795 mac 132795 bytes_out 0 132795 bytes_in 0 132795 station_ip 94.183.214.14 132795 port 285 132795 unique_id port 132795 remote_ip 10.8.0.18 132797 username hashtadani3 132797 mac 132797 bytes_out 0 132797 bytes_in 0 132797 station_ip 83.123.212.240 132797 port 256 132797 unique_id port 132797 remote_ip 10.8.0.154 132798 username hashtadani3 132798 mac 132798 bytes_out 0 132798 bytes_in 0 132798 station_ip 83.123.212.240 132798 port 256 132798 unique_id port 132798 remote_ip 10.8.0.154 132799 username zare 132799 mac 132799 bytes_out 0 132799 bytes_in 0 132799 station_ip 94.183.214.14 132799 port 256 132799 unique_id port 132799 remote_ip 10.8.0.18 132805 username zare 132805 mac 132805 bytes_out 0 132805 bytes_in 0 132805 station_ip 94.183.214.14 132805 port 256 132805 unique_id port 132805 remote_ip 10.8.0.18 132810 username yahodi 132810 mac 132810 bytes_out 427131 132810 bytes_in 4101489 132810 station_ip 83.122.253.96 132810 port 285 132810 unique_id port 132810 remote_ip 10.8.0.202 132813 username zare 132813 mac 132813 bytes_out 0 132813 bytes_in 0 132813 station_ip 94.183.214.14 132813 port 256 132813 unique_id port 132813 remote_ip 10.8.0.18 132816 username aminvpn 132816 mac 132816 bytes_out 0 132816 bytes_in 0 132816 station_ip 83.122.204.30 132784 bytes_out 0 132784 bytes_in 0 132784 station_ip 94.183.214.14 132784 port 275 132784 unique_id port 132784 remote_ip 10.8.0.18 132785 username zare 132785 mac 132785 bytes_out 0 132785 bytes_in 0 132785 station_ip 94.183.214.14 132785 port 275 132785 unique_id port 132785 remote_ip 10.8.0.18 132786 username zare 132786 mac 132786 bytes_out 0 132786 bytes_in 0 132786 station_ip 94.183.214.14 132786 port 282 132786 unique_id port 132786 remote_ip 10.8.0.18 132792 username zare 132792 mac 132792 bytes_out 0 132792 bytes_in 0 132792 station_ip 94.183.214.14 132792 port 285 132792 unique_id port 132792 remote_ip 10.8.0.18 132793 username zare 132793 mac 132793 bytes_out 0 132793 bytes_in 0 132793 station_ip 94.183.214.14 132793 port 285 132793 unique_id port 132793 remote_ip 10.8.0.18 132800 username zare 132800 mac 132800 bytes_out 0 132800 bytes_in 0 132800 station_ip 94.183.214.14 132800 port 256 132800 unique_id port 132800 remote_ip 10.8.0.18 132801 username aminvpn 132801 mac 132801 bytes_out 0 132801 bytes_in 0 132801 station_ip 83.122.98.232 132801 port 172 132801 unique_id port 132801 remote_ip 10.8.1.6 132804 username alihosseini1 132804 mac 132804 bytes_out 999914 132804 bytes_in 9502166 132804 station_ip 5.119.114.176 132804 port 275 132804 unique_id port 132804 remote_ip 10.8.0.166 132806 username godarzi 132806 mac 132806 bytes_out 187060 132806 bytes_in 311315 132806 station_ip 5.120.185.233 132806 port 282 132806 unique_id port 132806 remote_ip 10.8.0.174 132807 username barzegar 132807 mac 132807 bytes_out 0 132807 bytes_in 0 132807 station_ip 5.119.157.236 132807 port 256 132807 unique_id port 132807 remote_ip 10.8.0.234 132808 username zare 132808 mac 132808 bytes_out 0 132808 bytes_in 0 132808 station_ip 94.183.214.14 132808 port 282 132808 unique_id port 132808 remote_ip 10.8.0.18 132811 username godarzi 132811 mac 132811 bytes_out 0 132811 bytes_in 0 132811 station_ip 5.120.185.233 132811 port 256 132811 unique_id port 132811 remote_ip 10.8.0.174 132814 username zare 132814 mac 132814 bytes_out 0 132814 bytes_in 0 132814 station_ip 94.183.214.14 132814 port 256 132814 unique_id port 132814 remote_ip 10.8.0.18 132818 username zare 132818 kill_reason Maximum check online fails reached 132818 mac 132818 bytes_out 0 132818 bytes_in 0 132818 station_ip 94.183.214.14 132818 port 256 132818 unique_id port 132836 username hashtadani3 132836 mac 132836 bytes_out 0 132836 bytes_in 0 132836 station_ip 83.123.212.240 132836 port 275 132836 unique_id port 132836 remote_ip 10.8.0.154 132837 username hashtadani3 132837 kill_reason Maximum check online fails reached 132837 mac 132837 bytes_out 0 132837 bytes_in 0 132837 station_ip 83.123.212.240 132837 port 169 132837 unique_id port 132838 username mahdiyehalizadeh 132838 mac 132838 bytes_out 153459 132838 bytes_in 956851 132838 station_ip 37.129.204.10 132838 port 285 132838 unique_id port 132838 remote_ip 10.8.0.82 132841 username barzegar 132841 mac 132841 bytes_out 0 132841 bytes_in 0 132841 station_ip 5.119.157.236 132841 port 172 132841 unique_id port 132841 remote_ip 10.8.1.174 132844 username hashtadani3 132844 mac 132844 bytes_out 0 132844 bytes_in 0 132844 station_ip 83.123.212.240 132844 port 282 132844 unique_id port 132844 remote_ip 10.8.0.154 132846 username rezaei 132846 mac 132846 bytes_out 640826 132846 bytes_in 5573897 132809 station_ip 94.183.214.14 132809 port 282 132809 unique_id port 132809 remote_ip 10.8.0.18 132812 username zare 132812 mac 132812 bytes_out 0 132812 bytes_in 0 132812 station_ip 94.183.214.14 132812 port 256 132812 unique_id port 132812 remote_ip 10.8.0.18 132815 username barzegar 132815 mac 132815 bytes_out 0 132815 bytes_in 0 132815 station_ip 5.119.157.236 132815 port 168 132815 unique_id port 132815 remote_ip 10.8.1.174 132819 username aminvpn 132819 mac 132819 bytes_out 0 132819 bytes_in 0 132819 station_ip 83.122.204.30 132819 port 279 132819 unique_id port 132819 remote_ip 10.8.0.14 132822 username alihosseini1 132822 mac 132822 bytes_out 0 132822 bytes_in 0 132822 station_ip 5.119.114.176 132822 port 285 132822 unique_id port 132822 remote_ip 10.8.0.166 132824 username aminvpn 132824 mac 132824 bytes_out 32443 132824 bytes_in 49935 132824 station_ip 83.122.204.30 132824 port 279 132824 unique_id port 132824 remote_ip 10.8.0.14 132826 username zare 132826 mac 132826 bytes_out 0 132826 bytes_in 0 132826 station_ip 94.183.214.14 132826 port 168 132826 unique_id port 132826 remote_ip 10.8.1.58 132830 username barzegar 132830 mac 132830 bytes_out 0 132830 bytes_in 0 132830 station_ip 5.119.157.236 132830 port 279 132830 unique_id port 132830 remote_ip 10.8.0.234 132832 username zare 132832 mac 132832 bytes_out 0 132832 bytes_in 0 132832 station_ip 94.183.214.14 132832 port 168 132832 unique_id port 132832 remote_ip 10.8.1.58 132834 username aminvpn 132834 unique_id port 132834 terminate_cause Lost-Carrier 132834 bytes_out 145930 132834 bytes_in 872573 132834 station_ip 5.119.67.103 132834 port 15730373 132834 nas_port_type Virtual 132834 remote_ip 5.5.5.128 132843 username hashtadani3 132843 mac 132843 bytes_out 0 132843 bytes_in 0 132843 station_ip 83.123.212.240 132843 port 275 132843 unique_id port 132843 remote_ip 10.8.0.154 132848 username hashtadani3 132848 mac 132848 bytes_out 0 132848 bytes_in 0 132848 station_ip 83.123.212.240 132848 port 275 132848 unique_id port 132848 remote_ip 10.8.0.154 132851 username zare 132851 mac 132851 bytes_out 0 132851 bytes_in 0 132851 station_ip 94.183.214.14 132851 port 168 132851 unique_id port 132851 remote_ip 10.8.1.58 132852 username zare 132852 mac 132852 bytes_out 0 132852 bytes_in 0 132852 station_ip 94.183.214.14 132852 port 168 132852 unique_id port 132852 remote_ip 10.8.1.58 132853 username amir 132853 mac 132853 bytes_out 0 132853 bytes_in 0 132853 station_ip 46.225.213.118 132853 port 168 132853 unique_id port 132853 remote_ip 10.8.1.22 132854 username hashtadani3 132854 mac 132854 bytes_out 0 132854 bytes_in 0 132854 station_ip 83.123.212.240 132854 port 168 132854 unique_id port 132854 remote_ip 10.8.1.94 132856 username hashtadani3 132856 mac 132856 bytes_out 0 132856 bytes_in 0 132856 station_ip 83.123.212.240 132856 port 284 132856 unique_id port 132856 remote_ip 10.8.0.154 132858 username alihosseini1 132858 mac 132858 bytes_out 0 132858 bytes_in 0 132858 station_ip 5.119.114.176 132858 port 282 132858 unique_id port 132858 remote_ip 10.8.0.166 132861 username hashtadani3 132861 mac 132861 bytes_out 0 132861 bytes_in 0 132861 station_ip 83.123.212.240 132861 port 174 132861 unique_id port 132861 remote_ip 10.8.1.94 132863 username mohsenaskari 132863 mac 132863 bytes_out 0 132863 bytes_in 0 132863 station_ip 46.225.211.60 132863 port 279 132816 port 279 132816 unique_id port 132817 username aminvpn 132817 mac 132817 bytes_out 0 132817 bytes_in 0 132817 station_ip 83.122.204.30 132817 port 285 132817 unique_id port 132817 remote_ip 10.8.0.14 132820 username aminvpn 132820 mac 132820 bytes_out 0 132820 bytes_in 0 132820 station_ip 83.122.204.30 132820 port 285 132820 unique_id port 132820 remote_ip 10.8.0.14 132821 username aminvpn 132821 unique_id port 132821 terminate_cause Lost-Carrier 132821 bytes_out 75755 132821 bytes_in 409572 132821 station_ip 5.119.67.103 132821 port 15730372 132821 nas_port_type Virtual 132821 remote_ip 5.5.5.127 132823 username godarzi 132823 mac 132823 bytes_out 94948 132823 bytes_in 136528 132823 station_ip 5.120.185.233 132823 port 282 132823 unique_id port 132823 remote_ip 10.8.0.174 132825 username aminvpn 132825 mac 132825 bytes_out 0 132825 bytes_in 0 132825 station_ip 83.122.204.30 132825 port 282 132825 unique_id port 132825 remote_ip 10.8.0.14 132827 username aminvpn 132827 mac 132827 bytes_out 0 132827 bytes_in 0 132827 station_ip 83.122.204.30 132827 port 279 132827 unique_id port 132827 remote_ip 10.8.0.14 132828 username aminvpn 132828 mac 132828 bytes_out 0 132828 bytes_in 0 132828 station_ip 83.122.204.30 132828 port 282 132828 unique_id port 132828 remote_ip 10.8.0.14 132829 username zare 132829 mac 132829 bytes_out 0 132829 bytes_in 0 132829 station_ip 94.183.214.14 132829 port 168 132829 unique_id port 132829 remote_ip 10.8.1.58 132831 username hashtadani3 132831 mac 132831 bytes_out 706779 132831 bytes_in 10715745 132831 station_ip 83.123.212.240 132831 port 275 132831 unique_id port 132831 remote_ip 10.8.0.154 132833 username hashtadani3 132833 mac 132833 bytes_out 0 132833 bytes_in 0 132833 station_ip 83.123.212.240 132833 port 275 132833 unique_id port 132833 remote_ip 10.8.0.154 132835 username barzegar 132835 mac 132835 bytes_out 0 132835 bytes_in 0 132835 station_ip 5.119.157.236 132835 port 275 132835 unique_id port 132835 remote_ip 10.8.0.234 132839 username alihosseini1 132839 mac 132839 bytes_out 0 132839 bytes_in 0 132839 station_ip 5.119.114.176 132839 port 172 132839 unique_id port 132839 remote_ip 10.8.1.106 132840 username alipour 132840 mac 132840 bytes_out 4344055 132840 bytes_in 40194134 132840 station_ip 37.129.8.191 132840 port 284 132840 unique_id port 132840 remote_ip 10.8.0.102 132842 username hashtadani3 132842 mac 132842 bytes_out 1096672 132842 bytes_in 12152410 132842 station_ip 83.123.212.240 132842 port 275 132842 unique_id port 132842 remote_ip 10.8.0.154 132845 username hashtadani3 132845 mac 132845 bytes_out 0 132845 bytes_in 0 132845 station_ip 83.123.212.240 132845 port 275 132845 unique_id port 132845 remote_ip 10.8.0.154 132847 username alihosseini1 132847 mac 132847 bytes_out 0 132847 bytes_in 0 132847 station_ip 5.119.114.176 132847 port 275 132847 unique_id port 132847 remote_ip 10.8.0.166 132849 username zare 132849 mac 132849 bytes_out 0 132849 bytes_in 0 132849 station_ip 94.183.214.14 132849 port 168 132849 unique_id port 132849 remote_ip 10.8.1.58 132855 username zare 132855 mac 132855 bytes_out 0 132855 bytes_in 0 132855 station_ip 94.183.214.14 132855 port 285 132855 unique_id port 132855 remote_ip 10.8.0.18 132860 username zare 132860 mac 132860 bytes_out 1636 132860 bytes_in 3991 132860 station_ip 94.183.214.14 132860 port 284 132860 unique_id port 132846 station_ip 5.119.225.165 132846 port 279 132846 unique_id port 132846 remote_ip 10.8.0.206 132850 username hashtadani3 132850 kill_reason Maximum check online fails reached 132850 mac 132850 bytes_out 0 132850 bytes_in 0 132850 station_ip 83.123.212.240 132850 port 172 132850 unique_id port 132857 username arash 132857 mac 132857 bytes_out 50142 132857 bytes_in 120217 132857 station_ip 37.27.5.71 132857 port 282 132857 unique_id port 132857 remote_ip 10.8.0.114 132859 username barzegar 132859 mac 132859 bytes_out 0 132859 bytes_in 0 132859 station_ip 5.119.157.236 132859 port 175 132859 unique_id port 132859 remote_ip 10.8.1.174 132862 username hashtadani3 132862 mac 132862 bytes_out 0 132862 bytes_in 0 69521 username arezoo 69521 kill_reason Maximum check online fails reached 69521 mac 5.237.85.226:49191: Unknown host 69521 bytes_out 0 69521 bytes_in 0 69521 station_ip 5.237.85.226:49191 69521 port 1017 69521 unique_id port 132862 station_ip 83.123.212.240 132862 port 285 132862 unique_id port 132862 remote_ip 10.8.0.154 132864 username zare 132864 mac 132864 bytes_out 0 132864 bytes_in 0 132864 station_ip 94.183.214.14 132864 port 284 132864 unique_id port 132864 remote_ip 10.8.0.18 132871 username yahodi 132871 mac 132871 bytes_out 0 132871 bytes_in 0 132871 station_ip 83.122.187.50 132871 port 279 132871 unique_id port 132871 remote_ip 10.8.0.202 132879 username godarzi 132879 mac 132879 bytes_out 0 132879 bytes_in 0 132879 station_ip 5.120.97.85 132879 port 168 132879 unique_id port 132879 remote_ip 10.8.1.230 132881 username hashtadani3 132881 mac 132881 bytes_out 0 132881 bytes_in 0 132881 station_ip 83.123.212.240 132881 port 276 132881 unique_id port 132881 remote_ip 10.8.0.154 132883 username zare 132883 mac 132883 bytes_out 0 132883 bytes_in 0 132883 station_ip 94.183.214.14 132883 port 279 132883 unique_id port 132883 remote_ip 10.8.0.18 132884 username zare 132884 mac 132884 bytes_out 0 132884 bytes_in 0 132884 station_ip 94.183.214.14 132884 port 279 132884 unique_id port 132884 remote_ip 10.8.0.18 132891 username alirr 132891 kill_reason Relative expiration date has reached 132891 unique_id port 132891 bytes_out 0 132891 bytes_in 0 132891 station_ip 37.129.103.138 132891 port 15730374 132891 nas_port_type Virtual 132893 username alirr 132893 kill_reason Relative expiration date has reached 132893 unique_id port 132893 bytes_out 0 132893 bytes_in 0 132893 station_ip 37.129.103.138 132893 port 15730376 132893 nas_port_type Virtual 132905 username godarzi 132905 mac 132905 bytes_out 990931 132905 bytes_in 16718538 132905 station_ip 5.120.97.85 132905 port 168 132905 unique_id port 132905 remote_ip 10.8.1.230 132908 username barzegar 132908 mac 132908 bytes_out 0 132908 bytes_in 0 132908 station_ip 5.119.157.236 132908 port 175 132908 unique_id port 132908 remote_ip 10.8.1.174 132910 username mehdizare 132910 mac 132910 bytes_out 15964 132910 bytes_in 23298 132910 station_ip 5.120.148.206 132910 port 174 132910 unique_id port 132910 remote_ip 10.8.1.42 132912 username forozandeh1 132912 mac 132912 bytes_out 0 132912 bytes_in 0 132912 station_ip 83.122.152.100 132912 port 259 132912 unique_id port 132912 remote_ip 10.8.0.130 132913 username alipour 132913 mac 132913 bytes_out 0 132913 bytes_in 0 132913 station_ip 37.129.8.191 132913 port 168 132913 unique_id port 132913 remote_ip 10.8.1.50 132914 username mehdizare 132914 mac 132914 bytes_out 8883 132914 bytes_in 15631 132860 remote_ip 10.8.0.18 132867 username barzegar 132867 mac 132867 bytes_out 0 132867 bytes_in 0 132867 station_ip 5.119.157.236 132867 port 284 132867 unique_id port 132867 remote_ip 10.8.0.234 132868 username alipour 132868 mac 132868 bytes_out 0 132868 bytes_in 0 132868 station_ip 37.129.8.191 132868 port 275 132868 unique_id port 132868 remote_ip 10.8.0.102 132869 username sekonji3 132869 mac 132869 bytes_out 0 132869 bytes_in 0 132869 station_ip 83.122.158.161 132869 port 284 132869 unique_id port 132869 remote_ip 10.8.0.6 132872 username zare 132872 mac 132872 bytes_out 0 132872 bytes_in 0 132872 station_ip 94.183.214.14 132872 port 279 132872 unique_id port 132872 remote_ip 10.8.0.18 132873 username zare 132873 mac 132873 bytes_out 0 132873 bytes_in 0 132873 station_ip 94.183.214.14 132873 port 279 132873 unique_id port 132873 remote_ip 10.8.0.18 132874 username khademi 132874 mac 132874 bytes_out 0 132874 bytes_in 0 132874 station_ip 113.203.13.195 132874 port 276 132874 unique_id port 132877 username rezaei 132877 mac 132877 bytes_out 0 132877 bytes_in 0 132877 station_ip 5.119.225.165 132877 port 275 132877 unique_id port 132877 remote_ip 10.8.0.206 132878 username zare 132878 mac 132878 bytes_out 0 132878 bytes_in 0 132878 station_ip 94.183.214.14 132878 port 174 132878 unique_id port 132878 remote_ip 10.8.1.58 132880 username hashtadani3 132880 mac 132880 bytes_out 0 132880 bytes_in 0 132880 station_ip 83.123.212.240 132880 port 288 132880 unique_id port 132880 remote_ip 10.8.0.154 132885 username hashtadani3 132885 mac 132885 bytes_out 0 132885 bytes_in 0 132885 station_ip 83.123.212.240 132885 port 276 132885 unique_id port 132885 remote_ip 10.8.0.154 132887 username hashtadani3 132887 mac 132887 bytes_out 0 132887 bytes_in 0 132887 station_ip 5.202.64.157 132887 port 276 132887 unique_id port 132887 remote_ip 10.8.0.154 132890 username alihosseini1 132890 kill_reason Another user logged on this global unique id 132890 mac 132890 bytes_out 0 132890 bytes_in 0 132890 station_ip 5.119.114.176 132890 port 285 132890 unique_id port 132890 remote_ip 10.8.0.166 132892 username alirr 132892 kill_reason Relative expiration date has reached 132892 unique_id port 132892 bytes_out 0 132892 bytes_in 0 132892 station_ip 37.129.103.138 132892 port 15730375 132892 nas_port_type Virtual 132894 username zare 132894 mac 132894 bytes_out 0 132894 bytes_in 0 132894 station_ip 94.183.214.14 132894 port 168 132894 unique_id port 132894 remote_ip 10.8.1.58 132895 username zare 132895 mac 132895 bytes_out 0 132895 bytes_in 0 132895 station_ip 94.183.214.14 132895 port 168 132895 unique_id port 132895 remote_ip 10.8.1.58 132898 username zare 132898 mac 132898 bytes_out 0 132898 bytes_in 0 132898 station_ip 94.183.214.14 132898 port 284 132898 unique_id port 132898 remote_ip 10.8.0.18 132900 username alihosseini1 132900 mac 132900 bytes_out 0 132900 bytes_in 0 132900 station_ip 5.119.114.176 132900 port 285 132900 unique_id port 132903 username alipour 132903 mac 132903 bytes_out 0 132903 bytes_in 0 132903 station_ip 37.129.8.191 132903 port 290 132903 unique_id port 132903 remote_ip 10.8.0.102 132915 username sabaghnezhad 132915 mac 132915 bytes_out 0 132915 bytes_in 0 132915 station_ip 83.123.10.159 132915 port 272 132915 unique_id port 132915 remote_ip 10.8.0.186 132917 username mohammadjavad 132917 mac 132863 unique_id port 132863 remote_ip 10.8.0.246 132865 username aminvpn 132865 mac 132865 bytes_out 0 132865 bytes_in 0 132865 station_ip 83.122.19.176 132865 port 168 132865 unique_id port 132865 remote_ip 10.8.1.6 132866 username zare 132866 mac 132866 bytes_out 0 132866 bytes_in 0 132866 station_ip 94.183.214.14 132866 port 168 132866 unique_id port 132866 remote_ip 10.8.1.58 132870 username zare 132870 mac 132870 bytes_out 11572 132870 bytes_in 17949 132870 station_ip 94.183.214.14 132870 port 168 132870 unique_id port 132870 remote_ip 10.8.1.58 132875 username barzegar 132875 mac 132875 bytes_out 0 132875 bytes_in 0 132875 station_ip 5.119.157.236 132875 port 168 132875 unique_id port 132875 remote_ip 10.8.1.174 132876 username vanila 132876 mac 132876 bytes_out 0 132876 bytes_in 0 132876 station_ip 83.122.125.68 132876 port 289 132876 unique_id port 132876 remote_ip 10.8.0.178 132882 username amir 132882 mac 132882 bytes_out 0 132882 bytes_in 0 132882 station_ip 46.225.213.118 132882 port 282 132882 unique_id port 132882 remote_ip 10.8.0.50 132886 username zare 132886 mac 132886 bytes_out 0 132886 bytes_in 0 132886 station_ip 94.183.214.14 132886 port 279 132886 unique_id port 132886 remote_ip 10.8.0.18 132888 username barzegar 132888 mac 132888 bytes_out 0 132888 bytes_in 0 132888 station_ip 5.119.157.236 132888 port 279 132888 unique_id port 132888 remote_ip 10.8.0.234 132889 username zare 132889 mac 132889 bytes_out 0 132889 bytes_in 0 132889 station_ip 94.183.214.14 132889 port 276 132889 unique_id port 132889 remote_ip 10.8.0.18 132896 username barzegar 132896 mac 132896 bytes_out 0 132896 bytes_in 0 132896 station_ip 5.119.157.236 132896 port 284 132896 unique_id port 132896 remote_ip 10.8.0.234 132897 username zare 132897 mac 132897 bytes_out 0 132897 bytes_in 0 132897 station_ip 94.183.214.14 132897 port 288 132897 unique_id port 132897 remote_ip 10.8.0.18 132899 username mehdizare 132899 mac 132899 bytes_out 0 132899 bytes_in 0 132899 station_ip 5.120.148.206 132899 port 259 132899 unique_id port 132899 remote_ip 10.8.0.90 132901 username kordestani 132901 mac 132901 bytes_out 1622379 132901 bytes_in 17092637 132901 station_ip 151.235.75.92 132901 port 276 132901 unique_id port 132901 remote_ip 10.8.0.134 132902 username zare 132902 mac 132902 bytes_out 0 132902 bytes_in 0 132902 station_ip 94.183.214.14 132902 port 259 132902 unique_id port 132902 remote_ip 10.8.0.18 132904 username barzegar 132904 mac 132904 bytes_out 0 132904 bytes_in 0 132904 station_ip 5.119.157.236 132904 port 259 132904 unique_id port 132904 remote_ip 10.8.0.234 132906 username godarzi 132906 mac 132906 bytes_out 0 132906 bytes_in 0 132906 station_ip 5.120.97.85 132906 port 168 132906 unique_id port 132906 remote_ip 10.8.1.230 132907 username zare 132907 mac 132907 bytes_out 244898 132907 bytes_in 1348878 132907 station_ip 94.183.214.14 132907 port 276 132907 unique_id port 132907 remote_ip 10.8.0.18 132909 username hashtadani3 132909 kill_reason Another user logged on this global unique id 132909 mac 132909 bytes_out 0 132909 bytes_in 0 132909 station_ip 5.202.64.157 132909 port 279 132909 unique_id port 132909 remote_ip 10.8.0.154 132911 username barzegar 132911 mac 132911 bytes_out 0 132911 bytes_in 0 132911 station_ip 5.119.157.236 132911 port 168 132911 unique_id port 132911 remote_ip 10.8.1.174 132914 station_ip 5.120.148.206 132914 port 174 132914 unique_id port 132914 remote_ip 10.8.1.42 132919 username malekpoir 132919 mac 132919 bytes_out 0 132919 bytes_in 0 132919 station_ip 5.119.79.60 132919 port 286 132919 unique_id port 132923 username arash 132923 mac 132923 bytes_out 0 132923 bytes_in 0 132923 station_ip 37.27.5.71 132923 port 275 132923 unique_id port 132923 remote_ip 10.8.0.114 132925 username hashtadani3 132925 mac 132925 bytes_out 0 132925 bytes_in 0 132925 station_ip 5.202.64.157 132925 port 259 132925 unique_id port 132925 remote_ip 10.8.0.154 132928 username hashtadani3 132928 mac 132928 bytes_out 0 132928 bytes_in 0 132928 station_ip 5.202.64.157 132928 port 177 132928 unique_id port 132928 remote_ip 10.8.1.94 132930 username godarzi 132930 mac 132930 bytes_out 124053 132930 bytes_in 359466 132930 station_ip 5.120.97.85 132930 port 174 132930 unique_id port 132930 remote_ip 10.8.1.230 132935 username godarzi 132935 mac 132935 bytes_out 0 132935 bytes_in 0 132935 station_ip 5.119.113.128 132935 port 174 132935 unique_id port 132935 remote_ip 10.8.1.230 132938 username hashtadani3 132938 mac 132938 bytes_out 0 132938 bytes_in 0 132938 station_ip 5.202.64.157 132938 port 174 132938 unique_id port 132938 remote_ip 10.8.1.94 132939 username saeed9658 132939 kill_reason Another user logged on this global unique id 132939 mac 132939 bytes_out 0 132939 bytes_in 0 132939 station_ip 5.119.63.186 132939 port 276 132939 unique_id port 132939 remote_ip 10.8.0.62 132940 username hashtadani3 132940 mac 132940 bytes_out 0 132940 bytes_in 0 132940 station_ip 5.202.64.157 132940 port 174 132940 unique_id port 132940 remote_ip 10.8.1.94 132944 username hashtadani3 132944 mac 132944 bytes_out 0 132944 bytes_in 0 132944 station_ip 5.202.64.157 132944 port 286 132944 unique_id port 132944 remote_ip 10.8.0.154 132945 username barzegar 132945 mac 132945 bytes_out 0 132945 bytes_in 0 132945 station_ip 5.119.157.236 132945 port 174 132945 unique_id port 132945 remote_ip 10.8.1.174 132948 username zare 132948 mac 132948 bytes_out 0 132948 bytes_in 0 132948 station_ip 94.183.214.14 132948 port 289 132948 unique_id port 132948 remote_ip 10.8.0.18 132949 username barzegar 132949 mac 132949 bytes_out 0 132949 bytes_in 0 132949 station_ip 5.119.157.236 132949 port 275 132949 unique_id port 132949 remote_ip 10.8.0.234 132950 username zare 132950 mac 132950 bytes_out 0 132950 bytes_in 0 132950 station_ip 94.183.214.14 132950 port 288 132950 unique_id port 132950 remote_ip 10.8.0.18 132954 username hashtadani3 132954 mac 132954 bytes_out 0 132954 bytes_in 0 132954 station_ip 5.202.64.157 132954 port 275 132954 unique_id port 132954 remote_ip 10.8.0.154 132958 username mohammadjavad 132958 mac 132958 bytes_out 0 132958 bytes_in 0 132958 station_ip 113.203.109.3 132958 port 284 132958 unique_id port 132958 remote_ip 10.8.0.142 132961 username hashtadani3 132961 mac 132961 bytes_out 0 132961 bytes_in 0 132961 station_ip 5.202.64.157 132961 port 284 132961 unique_id port 132961 remote_ip 10.8.0.154 132964 username rezaei 132964 mac 132964 bytes_out 511721 132964 bytes_in 2635038 132964 station_ip 5.119.225.165 132964 port 284 132964 unique_id port 132964 remote_ip 10.8.0.206 132966 username saeed9658 132966 mac 132966 bytes_out 0 132966 bytes_in 0 132966 station_ip 5.119.63.186 132966 port 276 132966 unique_id port 132916 username godarzi 132916 mac 132916 bytes_out 63876 132916 bytes_in 281561 132916 station_ip 5.120.97.85 132916 port 174 132916 unique_id port 132916 remote_ip 10.8.1.230 132920 username mehdizare 132920 mac 132920 bytes_out 0 132920 bytes_in 0 132920 station_ip 5.120.148.206 132920 port 259 132920 unique_id port 132920 remote_ip 10.8.0.90 132922 username mahdiyehalizadeh 132922 mac 132922 bytes_out 0 132922 bytes_in 0 132922 station_ip 37.129.190.15 132922 port 174 132922 unique_id port 132922 remote_ip 10.8.1.110 132924 username hashtadani3 132924 mac 132924 bytes_out 0 132924 bytes_in 0 132924 station_ip 5.202.64.157 132924 port 279 132924 unique_id port 132927 username malekpoir 132927 mac 132927 bytes_out 0 132927 bytes_in 0 132927 station_ip 5.120.164.230 132927 port 276 132927 unique_id port 132927 remote_ip 10.8.0.58 132929 username mahdiyehalizadeh 132929 mac 132929 bytes_out 0 132929 bytes_in 0 132929 station_ip 37.129.190.15 132929 port 175 132929 unique_id port 132929 remote_ip 10.8.1.110 132931 username sabaghnezhad 132931 mac 132931 bytes_out 7870 132931 bytes_in 11275 132931 station_ip 83.123.10.159 132931 port 176 132931 unique_id port 132931 remote_ip 10.8.1.130 132932 username barzegar 132932 mac 132932 bytes_out 2590 132932 bytes_in 4675 132932 station_ip 5.119.157.236 132932 port 259 132932 unique_id port 132932 remote_ip 10.8.0.234 132933 username sabaghnezhad 132933 mac 132933 bytes_out 9746 132933 bytes_in 14773 132933 station_ip 83.123.10.159 132933 port 174 132933 unique_id port 132933 remote_ip 10.8.1.130 132934 username tahmasebi 132934 kill_reason Another user logged on this global unique id 132934 mac 132934 bytes_out 0 132934 bytes_in 0 132934 station_ip 5.119.118.187 132934 port 282 132934 unique_id port 132934 remote_ip 10.8.0.42 132936 username barzegar 132936 mac 132936 bytes_out 6515 132936 bytes_in 9696 132936 station_ip 5.119.157.236 132936 port 175 132936 unique_id port 132936 remote_ip 10.8.1.174 132937 username barzegar 132937 mac 132937 bytes_out 0 132937 bytes_in 0 132937 station_ip 5.119.157.236 132937 port 284 132937 unique_id port 132937 remote_ip 10.8.0.234 132946 username zare 132946 mac 132946 bytes_out 0 132946 bytes_in 0 132946 station_ip 94.183.214.14 132946 port 275 132946 unique_id port 132946 remote_ip 10.8.0.18 132947 username hashtadani3 132947 mac 132947 bytes_out 0 132947 bytes_in 0 132947 station_ip 5.202.64.157 132947 port 288 132947 unique_id port 132947 remote_ip 10.8.0.154 132952 username godarzi 132952 mac 132952 bytes_out 0 132952 bytes_in 0 132952 station_ip 5.119.113.128 132952 port 279 132952 unique_id port 132952 remote_ip 10.8.0.174 132957 username barzegar 132957 mac 132957 bytes_out 0 132957 bytes_in 0 132957 station_ip 5.119.157.236 132957 port 289 132957 unique_id port 132957 remote_ip 10.8.0.234 132959 username hashtadani3 132959 mac 132959 bytes_out 0 132959 bytes_in 0 132959 station_ip 5.202.64.157 132959 port 272 132959 unique_id port 132959 remote_ip 10.8.0.154 132960 username mostafa_es78 132960 unique_id port 132960 terminate_cause Lost-Carrier 132960 bytes_out 4607403 132960 bytes_in 60919622 132960 station_ip 5.119.244.130 132960 port 15730371 132960 nas_port_type Virtual 132960 remote_ip 5.5.5.124 132963 username mohammadjavad 132963 mac 132963 bytes_out 330673 132963 bytes_in 1499030 132963 station_ip 83.123.15.38 132963 port 272 132963 unique_id port 132917 bytes_out 352949 132917 bytes_in 2371804 132917 station_ip 83.122.252.151 132917 port 276 132917 unique_id port 132917 remote_ip 10.8.0.142 132918 username barzegar 132918 mac 132918 bytes_out 0 132918 bytes_in 0 132918 station_ip 5.119.157.236 132918 port 276 132918 unique_id port 132918 remote_ip 10.8.0.234 132921 username hashtadani3 132921 kill_reason Another user logged on this global unique id 132921 mac 132921 bytes_out 0 132921 bytes_in 0 132921 station_ip 5.202.64.157 132921 port 279 132921 unique_id port 132926 username sabaghnezhad 132926 mac 132926 bytes_out 0 132926 bytes_in 0 132926 station_ip 83.123.10.159 132926 port 272 132926 unique_id port 132926 remote_ip 10.8.0.186 132941 username alipour 132941 mac 132941 bytes_out 0 132941 bytes_in 0 132941 station_ip 37.129.8.191 132941 port 168 132941 unique_id port 132941 remote_ip 10.8.1.50 132942 username hashtadani3 132942 mac 132942 bytes_out 0 132942 bytes_in 0 132942 station_ip 5.202.64.157 132942 port 286 132942 unique_id port 132942 remote_ip 10.8.0.154 132943 username hashtadani3 132943 kill_reason Maximum check online fails reached 132943 mac 132943 bytes_out 0 132943 bytes_in 0 132943 station_ip 5.202.64.157 132943 port 285 132943 unique_id port 132951 username hashtadani3 132951 mac 132951 bytes_out 0 132951 bytes_in 0 132951 station_ip 5.202.64.157 132951 port 275 132951 unique_id port 132951 remote_ip 10.8.0.154 132953 username zare 132953 mac 132953 bytes_out 0 132953 bytes_in 0 132953 station_ip 94.183.214.14 132953 port 275 132953 unique_id port 132953 remote_ip 10.8.0.18 132955 username barzegar 132955 mac 132955 bytes_out 0 132955 bytes_in 0 132955 station_ip 5.119.157.236 132955 port 289 132955 unique_id port 132955 remote_ip 10.8.0.234 132956 username malekpoir 132956 mac 132956 bytes_out 1199163 132956 bytes_in 15344208 132956 station_ip 5.120.164.230 132956 port 272 132956 unique_id port 132956 remote_ip 10.8.0.58 132962 username barzegar 132962 mac 132962 bytes_out 0 132962 bytes_in 0 132962 station_ip 5.119.157.236 132962 port 175 132962 unique_id port 132962 remote_ip 10.8.1.174 132965 username alipour 132965 mac 132965 bytes_out 386531 132965 bytes_in 3234645 132965 station_ip 37.129.8.191 132965 port 168 132965 unique_id port 132965 remote_ip 10.8.1.50 132967 username godarzi 132967 mac 132967 bytes_out 0 132967 bytes_in 0 132967 station_ip 5.119.113.128 132967 port 288 132967 unique_id port 132967 remote_ip 10.8.0.174 132972 username godarzi 132972 mac 132972 bytes_out 0 132972 bytes_in 0 132972 station_ip 5.119.113.128 132972 port 275 132972 unique_id port 132972 remote_ip 10.8.0.174 132974 username barzegar 132974 mac 132974 bytes_out 0 132974 bytes_in 0 132974 station_ip 5.119.157.236 132974 port 176 132974 unique_id port 132974 remote_ip 10.8.1.174 132979 username hashtadani3 132979 mac 132979 bytes_out 0 132979 bytes_in 0 132979 station_ip 5.202.64.157 132979 port 284 132979 unique_id port 132979 remote_ip 10.8.0.154 132983 username mansur 132983 mac 132983 bytes_out 0 132983 bytes_in 0 132983 station_ip 5.120.50.110 132983 port 272 132983 unique_id port 132983 remote_ip 10.8.0.210 132985 username sabaghnezhad 132985 mac 132985 bytes_out 0 132985 bytes_in 0 132985 station_ip 83.123.10.159 132985 port 175 132985 unique_id port 132985 remote_ip 10.8.1.130 132986 username zare 132986 mac 132986 bytes_out 0 132986 bytes_in 0 132963 remote_ip 10.8.0.142 132971 username hashtadani3 132971 mac 132971 bytes_out 0 132971 bytes_in 0 132971 station_ip 5.202.64.157 132971 port 276 132971 unique_id port 132971 remote_ip 10.8.0.154 132973 username hashtadani3 132973 mac 132973 bytes_out 0 132973 bytes_in 0 132973 station_ip 5.202.64.157 132973 port 276 132973 unique_id port 132973 remote_ip 10.8.0.154 132975 username tahmasebi 132975 kill_reason Another user logged on this global unique id 132975 mac 132975 bytes_out 0 132975 bytes_in 0 132975 station_ip 5.119.118.187 132975 port 282 132975 unique_id port 132978 username rezaei 132978 mac 132978 bytes_out 0 132978 bytes_in 0 132978 station_ip 5.119.193.70 132978 port 272 132978 unique_id port 132978 remote_ip 10.8.0.206 132980 username godarzi 132980 mac 132980 bytes_out 1251624 132980 bytes_in 17018286 132980 station_ip 5.119.113.128 132980 port 276 132980 unique_id port 132980 remote_ip 10.8.0.174 132982 username zare 132982 mac 132982 bytes_out 0 132982 bytes_in 0 132982 station_ip 94.183.214.14 132982 port 279 132982 unique_id port 132982 remote_ip 10.8.0.18 132988 username zare 132988 mac 132988 bytes_out 0 132988 bytes_in 0 132988 station_ip 94.183.214.14 132988 port 272 132988 unique_id port 132988 remote_ip 10.8.0.18 132989 username zare 132989 mac 132989 bytes_out 0 132989 bytes_in 0 132989 station_ip 94.183.214.14 132989 port 272 132989 unique_id port 132989 remote_ip 10.8.0.18 132996 username khalili 132996 kill_reason Another user logged on this global unique id 132996 mac 132996 bytes_out 0 132996 bytes_in 0 132996 station_ip 5.119.60.132 132996 port 173 132996 unique_id port 132996 remote_ip 10.8.1.18 132998 username alipour 132998 mac 132998 bytes_out 0 132998 bytes_in 0 132998 station_ip 37.129.8.191 132998 port 168 132998 unique_id port 132998 remote_ip 10.8.1.50 133000 username barzegar 133000 mac 133000 bytes_out 0 133000 bytes_in 0 133000 station_ip 5.119.157.236 133000 port 177 133000 unique_id port 133000 remote_ip 10.8.1.174 133006 username hashtadani3 133006 mac 133006 bytes_out 0 133006 bytes_in 0 133006 station_ip 5.202.64.157 133006 port 259 133006 unique_id port 133006 remote_ip 10.8.0.154 133011 username malekpoir 133011 mac 133011 bytes_out 0 133011 bytes_in 0 133011 station_ip 5.120.164.230 133011 port 290 133011 unique_id port 133012 username hashtadani3 133012 mac 133012 bytes_out 0 133012 bytes_in 0 133012 station_ip 5.202.64.157 133012 port 279 133012 unique_id port 133012 remote_ip 10.8.0.154 133015 username hashtadani3 133015 mac 133015 bytes_out 0 133015 bytes_in 0 133015 station_ip 5.202.64.157 133015 port 276 133015 unique_id port 133015 remote_ip 10.8.0.154 133019 username barzegar 133019 kill_reason Maximum check online fails reached 133019 mac 133019 bytes_out 0 133019 bytes_in 0 133019 station_ip 5.119.157.236 133019 port 272 133019 unique_id port 133022 username hashtadani3 133022 mac 133022 bytes_out 0 133022 bytes_in 0 133022 station_ip 5.202.64.157 133022 port 279 133022 unique_id port 133022 remote_ip 10.8.0.154 133026 username aminvpn 133026 mac 133026 bytes_out 0 133026 bytes_in 0 133026 station_ip 83.122.204.30 133026 port 287 133026 unique_id port 133026 remote_ip 10.8.0.14 133028 username vanila 133028 mac 133028 bytes_out 0 133028 bytes_in 0 133028 station_ip 83.122.125.68 133028 port 284 133028 unique_id port 133028 remote_ip 10.8.0.178 133031 username hamidsalari 132968 username sabaghnezhad 132968 mac 132968 bytes_out 0 132968 bytes_in 0 132968 station_ip 83.123.10.159 132968 port 259 132968 unique_id port 132968 remote_ip 10.8.0.186 132969 username sedighe 132969 mac 132969 bytes_out 0 132969 bytes_in 0 132969 station_ip 83.122.208.202 132969 port 279 132969 unique_id port 132969 remote_ip 10.8.0.146 132970 username zare 132970 mac 132970 bytes_out 512305 132970 bytes_in 2118290 132970 station_ip 94.183.214.14 132970 port 275 132970 unique_id port 132970 remote_ip 10.8.0.18 132976 username rezaei 132976 mac 132976 bytes_out 484126 132976 bytes_in 3775771 132976 station_ip 5.119.157.108 132976 port 272 132976 unique_id port 132976 remote_ip 10.8.0.206 132977 username rezaei 132977 mac 132977 bytes_out 0 132977 bytes_in 0 132977 station_ip 5.119.193.70 132977 port 279 132977 unique_id port 132977 remote_ip 10.8.0.206 132981 username hoorieh 132981 kill_reason Another user logged on this global unique id 132981 mac 132981 bytes_out 0 132981 bytes_in 0 132981 station_ip 5.120.173.121 132981 port 275 132981 unique_id port 132981 remote_ip 10.8.0.38 132984 username hashtadani3 132984 mac 132984 bytes_out 0 132984 bytes_in 0 132984 station_ip 5.202.64.157 132984 port 279 132984 unique_id port 132984 remote_ip 10.8.0.154 132987 username sabaghnezhad 132987 mac 132987 bytes_out 0 132987 bytes_in 0 132987 station_ip 83.123.10.159 132987 port 175 132987 unique_id port 132987 remote_ip 10.8.1.130 132990 username godarzi 132990 mac 132990 bytes_out 671412 132990 bytes_in 9890491 132990 station_ip 5.119.113.128 132990 port 276 132990 unique_id port 132990 remote_ip 10.8.0.174 132993 username hashtadani3 132993 mac 132993 bytes_out 0 132993 bytes_in 0 132993 station_ip 5.202.64.157 132993 port 276 132993 unique_id port 132993 remote_ip 10.8.0.154 132995 username zare 132995 mac 132995 bytes_out 0 132995 bytes_in 0 132995 station_ip 94.183.214.14 132995 port 275 132995 unique_id port 132995 remote_ip 10.8.0.18 132997 username zare 132997 mac 132997 bytes_out 0 132997 bytes_in 0 132997 station_ip 94.183.214.14 132997 port 275 132997 unique_id port 132997 remote_ip 10.8.0.18 133001 username zare 133001 mac 133001 bytes_out 13594 133001 bytes_in 48727 133001 station_ip 94.183.214.14 133001 port 275 133001 unique_id port 133001 remote_ip 10.8.0.18 133002 username hashtadani3 133002 mac 133002 bytes_out 0 133002 bytes_in 0 133002 station_ip 5.202.64.157 133002 port 275 133002 unique_id port 133002 remote_ip 10.8.0.154 133004 username hashtadani3 133004 mac 133004 bytes_out 0 133004 bytes_in 0 133004 station_ip 5.202.64.157 133004 port 275 133004 unique_id port 133004 remote_ip 10.8.0.154 133005 username sedighe 133005 mac 133005 bytes_out 0 133005 bytes_in 0 133005 station_ip 83.122.208.202 133005 port 259 133005 unique_id port 133005 remote_ip 10.8.0.146 133007 username malekpoir 133007 kill_reason Another user logged on this global unique id 133007 mac 133007 bytes_out 0 133007 bytes_in 0 133007 station_ip 5.120.164.230 133007 port 290 133007 unique_id port 133007 remote_ip 10.8.0.58 133009 username kordestani 133009 mac 133009 bytes_out 230369 133009 bytes_in 366548 133009 station_ip 151.235.75.92 133009 port 272 133009 unique_id port 133009 remote_ip 10.8.0.134 133013 username forozandeh1 133013 mac 133013 bytes_out 725617 133013 bytes_in 6554740 133013 station_ip 83.122.212.154 133013 port 276 133013 unique_id port 132986 station_ip 94.183.214.14 132986 port 272 132986 unique_id port 132986 remote_ip 10.8.0.18 132991 username hoorieh 132991 mac 132991 bytes_out 0 132991 bytes_in 0 132991 station_ip 5.120.173.121 132991 port 275 132991 unique_id port 132992 username zare 132992 mac 132992 bytes_out 0 132992 bytes_in 0 132992 station_ip 94.183.214.14 132992 port 272 132992 unique_id port 132992 remote_ip 10.8.0.18 132994 username zare 132994 mac 132994 bytes_out 0 132994 bytes_in 0 132994 station_ip 94.183.214.14 132994 port 275 132994 unique_id port 132994 remote_ip 10.8.0.18 132999 username sabaghnezhad 132999 mac 132999 bytes_out 106994 132999 bytes_in 169762 132999 station_ip 83.123.10.159 132999 port 175 132999 unique_id port 132999 remote_ip 10.8.1.130 133003 username rezaei 133003 mac 133003 bytes_out 0 133003 bytes_in 0 133003 station_ip 5.119.193.70 133003 port 276 133003 unique_id port 133003 remote_ip 10.8.0.206 133008 username barzegar 133008 mac 133008 bytes_out 0 133008 bytes_in 0 133008 station_ip 5.119.157.236 133008 port 175 133008 unique_id port 133008 remote_ip 10.8.1.174 133010 username mohammadjavad 133010 mac 133010 bytes_out 0 133010 bytes_in 0 133010 station_ip 83.123.166.214 133010 port 259 133010 unique_id port 133010 remote_ip 10.8.0.142 133016 username hashtadani3 133016 mac 133016 bytes_out 0 133016 bytes_in 0 133016 station_ip 5.202.64.157 133016 port 272 133016 unique_id port 133016 remote_ip 10.8.0.154 133017 username barzegar 133017 mac 133017 bytes_out 0 133017 bytes_in 0 133017 station_ip 5.119.157.236 133017 port 175 133017 unique_id port 133017 remote_ip 10.8.1.174 133021 username hashtadani3 133021 mac 133021 bytes_out 649745 133021 bytes_in 7916022 133021 station_ip 5.202.64.157 133021 port 276 133021 unique_id port 133021 remote_ip 10.8.0.154 133023 username moradi 133023 mac 133023 bytes_out 0 133023 bytes_in 0 133023 station_ip 83.123.187.215 133023 port 276 133023 unique_id port 133023 remote_ip 10.8.0.250 133024 username moradi 133024 mac 133024 bytes_out 0 133024 bytes_in 0 133024 station_ip 83.123.187.215 133024 port 279 133024 unique_id port 133024 remote_ip 10.8.0.250 133029 username hashtadani3 133029 mac 133029 bytes_out 0 133029 bytes_in 0 133029 station_ip 5.202.64.157 133029 port 276 133029 unique_id port 133029 remote_ip 10.8.0.154 133030 username vanila 133030 mac 133030 bytes_out 362376 133030 bytes_in 2360550 133030 station_ip 83.122.125.68 133030 port 288 133030 unique_id port 133030 remote_ip 10.8.0.178 133034 username vanila 133034 mac 133034 bytes_out 0 133034 bytes_in 0 133034 station_ip 83.122.125.68 133034 port 284 133034 unique_id port 133034 remote_ip 10.8.0.178 133038 username hashtadani3 133038 mac 133038 bytes_out 0 133038 bytes_in 0 133038 station_ip 5.202.64.157 133038 port 175 133038 unique_id port 133038 remote_ip 10.8.1.94 133050 username forozandeh1 133050 mac 133050 bytes_out 1235556 133050 bytes_in 11799410 133050 station_ip 37.129.140.178 133050 port 279 133050 unique_id port 133050 remote_ip 10.8.0.130 133054 username hashtadani3 133054 mac 133054 bytes_out 0 133054 bytes_in 0 133054 station_ip 5.202.64.157 133054 port 276 133054 unique_id port 133054 remote_ip 10.8.0.154 133056 username sedighe 133056 mac 133056 bytes_out 0 133056 bytes_in 0 133056 station_ip 83.122.208.202 133056 port 176 133056 unique_id port 133056 remote_ip 10.8.1.78 133013 remote_ip 10.8.0.130 133014 username mohammadjavad 133014 mac 133014 bytes_out 145603 133014 bytes_in 685625 133014 station_ip 37.129.108.211 133014 port 272 133014 unique_id port 133014 remote_ip 10.8.0.142 133018 username hashtadani3 133018 mac 133018 bytes_out 0 133018 bytes_in 0 133018 station_ip 5.202.64.157 133018 port 276 133018 unique_id port 133018 remote_ip 10.8.0.154 133020 username barzegar 133020 mac 133020 bytes_out 0 133020 bytes_in 0 133020 station_ip 5.119.157.236 133020 port 175 133020 unique_id port 133020 remote_ip 10.8.1.174 133025 username aminvpn 133025 mac 133025 bytes_out 4124450 133025 bytes_in 12424558 133025 station_ip 113.203.100.154 133025 port 176 133025 unique_id port 133025 remote_ip 10.8.1.6 133027 username barzegar 133027 mac 133027 bytes_out 0 133027 bytes_in 0 133027 station_ip 5.119.157.236 133027 port 175 133027 unique_id port 133027 remote_ip 10.8.1.174 133033 username barzegar 133033 mac 133033 bytes_out 0 133033 bytes_in 0 133033 station_ip 5.119.157.236 133033 port 274 133033 unique_id port 133033 remote_ip 10.8.0.234 133035 username hashtadani3 133035 mac 133035 bytes_out 0 133035 bytes_in 0 133035 station_ip 5.202.64.157 133035 port 175 133035 unique_id port 133035 remote_ip 10.8.1.94 133036 username kamali2 133036 kill_reason Another user logged on this global unique id 133036 mac 133036 bytes_out 0 133036 bytes_in 0 133036 station_ip 5.120.183.36 133036 port 289 133036 unique_id port 133036 remote_ip 10.8.0.214 133037 username hashtadani3 133037 mac 133037 bytes_out 0 133037 bytes_in 0 133037 station_ip 5.202.64.157 133037 port 175 133037 unique_id port 133037 remote_ip 10.8.1.94 133040 username hashtadani3 133040 mac 133040 bytes_out 0 133040 bytes_in 0 133040 station_ip 5.202.64.157 133040 port 175 133040 unique_id port 133040 remote_ip 10.8.1.94 133044 username barzegar 133044 mac 133044 bytes_out 0 133044 bytes_in 0 133044 station_ip 5.119.157.236 133044 port 176 133044 unique_id port 133044 remote_ip 10.8.1.174 133045 username mohammadjavad 133045 mac 133045 bytes_out 0 133045 bytes_in 0 133045 station_ip 83.123.102.28 133045 port 288 133045 unique_id port 133045 remote_ip 10.8.0.142 133046 username sedighe 133046 mac 133046 bytes_out 0 133046 bytes_in 0 133046 station_ip 83.122.208.202 133046 port 275 133046 unique_id port 133046 remote_ip 10.8.0.146 133047 username hamidsalari 133047 kill_reason Another user logged on this global unique id 133047 mac 133047 bytes_out 0 133047 bytes_in 0 133047 station_ip 5.120.22.15 133047 port 284 133047 unique_id port 133047 remote_ip 10.8.0.230 133051 username hashtadani3 133051 mac 133051 bytes_out 0 133051 bytes_in 0 133051 station_ip 5.202.64.157 133051 port 177 133051 unique_id port 133051 remote_ip 10.8.1.94 133052 username hashtadani3 133052 mac 133052 bytes_out 0 133052 bytes_in 0 133052 station_ip 5.202.64.157 133052 port 177 133052 unique_id port 133052 remote_ip 10.8.1.94 133059 username hashtadani3 133059 mac 133059 bytes_out 0 133059 bytes_in 0 133059 station_ip 5.202.64.157 133059 port 289 133059 unique_id port 133059 remote_ip 10.8.0.154 133060 username sabaghnezhad 133060 mac 133060 bytes_out 111604 133060 bytes_in 553394 133060 station_ip 83.122.214.226 133060 port 276 133060 unique_id port 133060 remote_ip 10.8.0.186 133063 username godarzi 133063 mac 133063 bytes_out 0 133063 bytes_in 0 133063 station_ip 5.119.151.243 133063 port 290 133031 mac 133031 bytes_out 0 133031 bytes_in 0 133031 station_ip 5.120.183.12 133031 port 274 133031 unique_id port 133032 username barzegar 133032 mac 133032 bytes_out 0 133032 bytes_in 0 133032 station_ip 5.119.157.236 133032 port 276 133032 unique_id port 133032 remote_ip 10.8.0.234 133039 username mohammadjavad 133039 mac 133039 bytes_out 171622 133039 bytes_in 1530610 133039 station_ip 37.129.222.149 133039 port 276 133039 unique_id port 133039 remote_ip 10.8.0.142 133041 username sabaghnezhad 133041 mac 133041 bytes_out 1092192 133041 bytes_in 16671381 133041 station_ip 83.123.85.193 133041 port 287 133041 unique_id port 133041 remote_ip 10.8.0.186 133042 username alirr 133042 kill_reason Relative expiration date has reached 133042 unique_id port 133042 bytes_out 0 133042 bytes_in 0 133042 station_ip 37.129.103.138 133042 port 15730379 133042 nas_port_type Virtual 133043 username hashtadani3 133043 kill_reason Maximum check online fails reached 133043 mac 133043 bytes_out 0 133043 bytes_in 0 133043 station_ip 5.202.64.157 133043 port 175 133043 unique_id port 133048 username khademi 133048 mac 133048 bytes_out 2527731 133048 bytes_in 45678473 133048 station_ip 37.129.196.114 133048 port 276 133048 unique_id port 133048 remote_ip 10.8.0.10 133049 username khademi 133049 mac 133049 bytes_out 0 133049 bytes_in 0 133049 station_ip 37.129.196.114 133049 port 176 133049 unique_id port 133049 remote_ip 10.8.1.242 133053 username hashtadani3 133053 mac 133053 bytes_out 0 133053 bytes_in 0 133053 station_ip 5.202.64.157 133053 port 177 133053 unique_id port 133053 remote_ip 10.8.1.94 133055 username godarzi 133055 kill_reason Another user logged on this global unique id 133055 mac 133055 bytes_out 0 133055 bytes_in 0 133055 station_ip 5.119.151.243 133055 port 290 133055 unique_id port 133055 remote_ip 10.8.0.174 133062 username jamali 133062 mac 133062 bytes_out 11433 133062 bytes_in 15912 133062 station_ip 5.120.162.252 133062 port 176 133062 unique_id port 133062 remote_ip 10.8.1.82 133065 username alipour 133065 mac 133065 bytes_out 0 133065 bytes_in 0 133065 station_ip 37.129.8.191 133065 port 168 133065 unique_id port 133065 remote_ip 10.8.1.50 133068 username malekpoir 133068 mac 133068 bytes_out 35206 133068 bytes_in 45489 133068 station_ip 5.120.164.230 133068 port 274 133068 unique_id port 133068 remote_ip 10.8.0.58 133070 username kordestani 133070 mac 133070 bytes_out 0 133070 bytes_in 0 133070 station_ip 151.235.75.92 133070 port 259 133070 unique_id port 133070 remote_ip 10.8.0.134 133074 username sedighe 133074 mac 133074 bytes_out 49797 133074 bytes_in 67378 133074 station_ip 83.122.208.202 133074 port 274 133074 unique_id port 133074 remote_ip 10.8.0.146 133076 username aminvpn 133076 mac 133076 bytes_out 0 133076 bytes_in 0 133076 station_ip 83.122.204.30 133076 port 287 133076 unique_id port 133076 remote_ip 10.8.0.14 133084 username hashtadani3 133084 mac 133084 bytes_out 0 133084 bytes_in 0 133084 station_ip 5.202.64.157 133084 port 279 133084 unique_id port 133084 remote_ip 10.8.0.154 133092 username vanila 133092 mac 133092 bytes_out 1431784 133092 bytes_in 666742 133092 station_ip 83.122.125.68 133092 port 279 133092 unique_id port 133092 remote_ip 10.8.0.178 133094 username amir 133094 mac 133094 bytes_out 164949 133094 bytes_in 1154645 133094 station_ip 46.225.213.118 133094 port 280 133094 unique_id port 133094 remote_ip 10.8.0.50 133096 username sabaghnezhad 133057 username jamali 133057 mac 133057 bytes_out 0 133057 bytes_in 0 133057 station_ip 5.120.162.252 133057 port 280 133057 unique_id port 133058 username kamali2 133058 mac 133058 bytes_out 0 133058 bytes_in 0 133058 station_ip 5.120.183.36 133058 port 289 133058 unique_id port 133061 username hashtadani3 133061 mac 133061 bytes_out 0 133061 bytes_in 0 133061 station_ip 5.202.64.157 133061 port 289 133061 unique_id port 133061 remote_ip 10.8.0.154 133064 username jamali 133064 mac 133064 bytes_out 0 133064 bytes_in 0 133064 station_ip 5.120.162.252 133064 port 176 133064 unique_id port 133064 remote_ip 10.8.1.82 133067 username moradi 133067 kill_reason Another user logged on this global unique id 133067 mac 133067 bytes_out 0 133067 bytes_in 0 133067 station_ip 113.203.105.177 133067 port 279 133067 unique_id port 133067 remote_ip 10.8.0.250 133069 username sedighe 133069 mac 133069 bytes_out 54528 133069 bytes_in 217615 133069 station_ip 83.122.208.202 133069 port 280 133069 unique_id port 133069 remote_ip 10.8.0.146 133075 username yarmohamadi 133075 mac 133075 bytes_out 0 133075 bytes_in 0 133075 station_ip 5.120.165.33 133075 port 174 133075 unique_id port 133075 remote_ip 10.8.1.234 133077 username barzegar 133077 mac 133077 bytes_out 8557724 133077 bytes_in 6134846 133077 station_ip 5.119.157.236 133077 port 288 133077 unique_id port 133077 remote_ip 10.8.0.234 133081 username hashtadani3 133081 kill_reason Another user logged on this global unique id 133081 mac 133081 bytes_out 0 133081 bytes_in 0 133081 station_ip 5.202.64.157 133081 port 290 133081 unique_id port 133081 remote_ip 10.8.0.154 133083 username hashtadani3 133083 mac 133083 bytes_out 0 133083 bytes_in 0 133083 station_ip 5.202.64.157 133083 port 290 133083 unique_id port 133086 username mahdixz 133086 unique_id port 133086 terminate_cause Lost-Carrier 133086 bytes_out 3590754 133086 bytes_in 85975674 133086 station_ip 151.235.89.159 133086 port 15730378 133086 nas_port_type Virtual 133086 remote_ip 5.5.5.133 133087 username hashtadani3 133087 kill_reason Maximum number of concurrent logins reached 133087 mac 133087 bytes_out 0 133087 bytes_in 0 133087 station_ip 5.202.64.157 133087 port 280 133087 unique_id port 133089 username barzegar 133089 mac 133089 bytes_out 0 133089 bytes_in 0 133089 station_ip 5.119.157.236 133089 port 168 133089 unique_id port 133089 remote_ip 10.8.1.174 133091 username barzegar 133091 mac 133091 bytes_out 0 133091 bytes_in 0 133091 station_ip 5.119.157.236 133091 port 168 133091 unique_id port 133091 remote_ip 10.8.1.174 133098 username sedighe 133098 mac 133098 bytes_out 73381 133098 bytes_in 177557 133098 station_ip 83.122.254.154 133098 port 279 133098 unique_id port 133098 remote_ip 10.8.0.146 133099 username barzegar 133099 mac 133099 bytes_out 4656 133099 bytes_in 7204 133099 station_ip 5.119.157.236 133099 port 287 133099 unique_id port 133099 remote_ip 10.8.0.234 133100 username kamali2 133100 mac 133100 bytes_out 7739 133100 bytes_in 12364 133100 station_ip 5.120.183.36 133100 port 290 133100 unique_id port 133100 remote_ip 10.8.0.214 133102 username hashtadani3 133102 mac 133102 bytes_out 0 133102 bytes_in 0 133102 station_ip 5.202.64.157 133102 port 176 133102 unique_id port 133102 remote_ip 10.8.1.94 133105 username hashtadani3 133105 mac 133105 bytes_out 0 133105 bytes_in 0 133105 station_ip 5.202.64.157 133105 port 176 133105 unique_id port 133105 remote_ip 10.8.1.94 133063 unique_id port 133066 username hashtadani3 133066 mac 133066 bytes_out 0 133066 bytes_in 0 133066 station_ip 5.202.64.157 133066 port 276 133066 unique_id port 133066 remote_ip 10.8.0.154 133071 username alipour 133071 mac 133071 bytes_out 32253 133071 bytes_in 41919 133071 station_ip 37.129.8.191 133071 port 168 133071 unique_id port 133071 remote_ip 10.8.1.50 133072 username hashtadani3 133072 mac 133072 bytes_out 0 133072 bytes_in 0 133072 station_ip 5.202.64.157 133072 port 168 133072 unique_id port 133072 remote_ip 10.8.1.94 133073 username khalili 133073 mac 133073 bytes_out 0 133073 bytes_in 0 133073 station_ip 5.119.60.132 133073 port 173 133073 unique_id port 133078 username kordestani 133078 mac 133078 bytes_out 62925 133078 bytes_in 218739 133078 station_ip 151.235.75.92 133078 port 280 133078 unique_id port 133078 remote_ip 10.8.0.134 133079 username hamidsalari 133079 kill_reason Another user logged on this global unique id 133079 mac 133079 bytes_out 0 133079 bytes_in 0 133079 station_ip 5.120.22.15 133079 port 284 133079 unique_id port 133080 username moradi 133080 kill_reason Another user logged on this global unique id 133080 mac 133080 bytes_out 0 133080 bytes_in 0 133080 station_ip 113.203.105.177 133080 port 279 133080 unique_id port 133082 username moradi 133082 mac 133082 bytes_out 0 133082 bytes_in 0 133082 station_ip 113.203.105.177 133082 port 279 133082 unique_id port 69744 username arezoo 69744 kill_reason Maximum check online fails reached 69744 mac 5.238.33.230:49196: Unknown host 69744 bytes_out 0 69744 bytes_in 0 69744 station_ip 5.238.33.230:49196 69744 port 1017 69744 unique_id port 133085 username barzegar 133085 mac 133085 bytes_out 0 133085 bytes_in 0 133085 station_ip 5.119.157.236 133085 port 168 133085 unique_id port 133085 remote_ip 10.8.1.174 133088 username hashtadani3 133088 mac 133088 bytes_out 1644 133088 bytes_in 5182 133088 station_ip 5.202.64.157 133088 port 279 133088 unique_id port 133088 remote_ip 10.8.0.154 133090 username hashtadani3 133090 kill_reason Maximum check online fails reached 133090 mac 133090 bytes_out 0 133090 bytes_in 0 133090 station_ip 5.202.64.157 133090 port 173 133090 unique_id port 133093 username alipour 133093 mac 133093 bytes_out 58653 133093 bytes_in 71527 133093 station_ip 37.129.8.191 133093 port 259 133093 unique_id port 133093 remote_ip 10.8.0.102 133095 username hosseine 133095 mac 133095 bytes_out 2787676 133095 bytes_in 26302951 133095 station_ip 37.129.96.144 133095 port 286 133095 unique_id port 133095 remote_ip 10.8.0.238 133103 username vanila 133103 mac 133103 bytes_out 0 133103 bytes_in 0 133103 station_ip 83.122.125.68 133103 port 259 133103 unique_id port 133103 remote_ip 10.8.0.178 133104 username barzegar 133104 mac 133104 bytes_out 0 133104 bytes_in 0 133104 station_ip 5.119.157.236 133104 port 174 133104 unique_id port 133104 remote_ip 10.8.1.174 133109 username sabaghnezhad 133109 mac 133109 bytes_out 240080 133109 bytes_in 2059016 133109 station_ip 37.129.53.6 133109 port 280 133109 unique_id port 133109 remote_ip 10.8.0.186 133110 username saeed9658 133110 mac 133110 bytes_out 0 133110 bytes_in 0 133110 station_ip 5.119.192.213 133110 port 279 133110 unique_id port 133110 remote_ip 10.8.0.62 133111 username barzegar 133111 mac 133111 bytes_out 0 133111 bytes_in 0 133111 station_ip 5.119.157.236 133111 port 174 133111 unique_id port 133111 remote_ip 10.8.1.174 133114 username hashtadani3 133096 mac 133096 bytes_out 60857 133096 bytes_in 503383 133096 station_ip 37.129.53.6 133096 port 290 133096 unique_id port 133096 remote_ip 10.8.0.186 133097 username kamali2 133097 mac 133097 bytes_out 5589239 133097 bytes_in 4601417 133097 station_ip 5.120.183.36 133097 port 292 133097 unique_id port 133097 remote_ip 10.8.0.214 133101 username rezaei 133101 mac 133101 bytes_out 0 133101 bytes_in 0 133101 station_ip 5.119.193.70 133101 port 288 133101 unique_id port 133101 remote_ip 10.8.0.206 133107 username hashtadani3 133107 kill_reason Maximum check online fails reached 133107 mac 133107 bytes_out 0 133107 bytes_in 0 133107 station_ip 5.202.64.157 133107 port 288 133107 unique_id port 133108 username barzegar 133108 mac 133108 bytes_out 0 133108 bytes_in 0 133108 station_ip 5.119.157.236 133108 port 290 133108 unique_id port 133108 remote_ip 10.8.0.234 133112 username saeed9658 133112 mac 133112 bytes_out 0 133112 bytes_in 0 133112 station_ip 5.119.192.213 133112 port 174 133112 unique_id port 133112 remote_ip 10.8.1.210 133113 username hashtadani3 133113 mac 133113 bytes_out 0 133113 bytes_in 0 133113 station_ip 5.202.64.157 133113 port 290 133113 unique_id port 133113 remote_ip 10.8.0.154 133117 username alipour 133117 mac 133117 bytes_out 17602 133117 bytes_in 19255 133117 station_ip 37.129.8.191 133117 port 168 133117 unique_id port 133117 remote_ip 10.8.1.50 133123 username amir 133123 mac 133123 bytes_out 0 133123 bytes_in 0 133123 station_ip 46.225.213.118 133123 port 259 133123 unique_id port 133123 remote_ip 10.8.0.50 133125 username hashtadani3 133125 mac 133125 bytes_out 0 133125 bytes_in 0 133125 station_ip 37.129.251.84 133125 port 279 133125 unique_id port 133125 remote_ip 10.8.0.154 133131 username barzegar 133131 mac 133131 bytes_out 0 133131 bytes_in 0 133131 station_ip 5.119.157.236 133131 port 259 133131 unique_id port 133131 remote_ip 10.8.0.234 133132 username mosi 133132 kill_reason Another user logged on this global unique id 133132 mac 133132 bytes_out 0 133132 bytes_in 0 133132 station_ip 151.235.127.219 133132 port 265 133132 unique_id port 133132 remote_ip 10.8.0.138 133134 username hashtadani3 133134 mac 133134 bytes_out 0 133134 bytes_in 0 133134 station_ip 37.129.251.84 133134 port 294 133134 unique_id port 133134 remote_ip 10.8.0.154 133136 username hashtadani3 133136 mac 133136 bytes_out 0 133136 bytes_in 0 133136 station_ip 37.129.251.84 133136 port 286 133136 unique_id port 133136 remote_ip 10.8.0.154 133138 username barzegar 133138 mac 133138 bytes_out 0 133138 bytes_in 0 133138 station_ip 5.119.157.236 133138 port 279 133138 unique_id port 133138 remote_ip 10.8.0.234 133140 username hashtadani3 133140 mac 133140 bytes_out 0 133140 bytes_in 0 133140 station_ip 37.129.251.84 133140 port 279 133140 unique_id port 133140 remote_ip 10.8.0.154 133147 username hashtadani3 133147 mac 133147 bytes_out 0 133147 bytes_in 0 133147 station_ip 37.129.251.84 133147 port 279 133147 unique_id port 133147 remote_ip 10.8.0.154 133148 username hashtadani3 133148 mac 133148 bytes_out 0 133148 bytes_in 0 133148 station_ip 37.129.251.84 133148 port 279 133148 unique_id port 133148 remote_ip 10.8.0.154 133151 username hashtadani3 133151 mac 133151 bytes_out 0 133151 bytes_in 0 133151 station_ip 37.129.251.84 133151 port 276 133151 unique_id port 133151 remote_ip 10.8.0.154 133153 username jamali 133153 mac 133106 username hashtadani3 133106 mac 133106 bytes_out 0 133106 bytes_in 0 133106 station_ip 5.202.64.157 133106 port 174 133106 unique_id port 133106 remote_ip 10.8.1.94 133115 username alipour 133115 mac 133115 bytes_out 61387 133115 bytes_in 121522 133115 station_ip 37.129.8.191 133115 port 168 133115 unique_id port 133115 remote_ip 10.8.1.50 133116 username hashtadani3 133116 mac 133116 bytes_out 0 133116 bytes_in 0 133116 station_ip 5.202.10.241 133116 port 174 133116 unique_id port 133116 remote_ip 10.8.1.94 133119 username hashtadani3 133119 mac 133119 bytes_out 333211 133119 bytes_in 5104843 133119 station_ip 37.129.251.84 133119 port 176 133119 unique_id port 133119 remote_ip 10.8.1.94 133121 username barzegar 133121 mac 133121 bytes_out 0 133121 bytes_in 0 133121 station_ip 5.119.157.236 133121 port 279 133121 unique_id port 133121 remote_ip 10.8.0.234 133124 username hashtadani3 133124 kill_reason Maximum check online fails reached 133124 mac 133124 bytes_out 0 133124 bytes_in 0 133124 station_ip 37.129.251.84 133124 port 252 133124 unique_id port 133126 username hashtadani3 133126 mac 133126 bytes_out 0 133126 bytes_in 0 133126 station_ip 37.129.251.84 133126 port 279 133126 unique_id port 133126 remote_ip 10.8.0.154 133127 username barzegar 133127 mac 133127 bytes_out 0 133127 bytes_in 0 133127 station_ip 5.119.157.236 133127 port 259 133127 unique_id port 133127 remote_ip 10.8.0.234 133129 username hashtadani3 133129 mac 133129 bytes_out 0 133129 bytes_in 0 133129 station_ip 37.129.251.84 133129 port 279 133129 unique_id port 133129 remote_ip 10.8.0.154 133133 username barzegar 133133 mac 133133 bytes_out 0 133133 bytes_in 0 133133 station_ip 5.119.157.236 133133 port 279 133133 unique_id port 133133 remote_ip 10.8.0.234 133135 username hosseine 133135 mac 133135 bytes_out 0 133135 bytes_in 0 133135 station_ip 37.129.96.144 133135 port 286 133135 unique_id port 133135 remote_ip 10.8.0.238 133139 username amir 133139 mac 133139 bytes_out 182755 133139 bytes_in 1560634 133139 station_ip 46.225.213.118 133139 port 259 133139 unique_id port 133139 remote_ip 10.8.0.50 133141 username barzegar 133141 mac 133141 bytes_out 0 133141 bytes_in 0 133141 station_ip 5.119.157.236 133141 port 259 133141 unique_id port 133141 remote_ip 10.8.0.234 133142 username alihosseini1 133142 mac 133142 bytes_out 0 133142 bytes_in 0 133142 station_ip 5.119.27.113 133142 port 280 133142 unique_id port 133142 remote_ip 10.8.0.166 133144 username hashtadani3 133144 mac 133144 bytes_out 0 133144 bytes_in 0 133144 station_ip 37.129.251.84 133144 port 279 133144 unique_id port 133144 remote_ip 10.8.0.154 133145 username hashtadani3 133145 mac 133145 bytes_out 0 133145 bytes_in 0 133145 station_ip 37.129.251.84 133145 port 279 133145 unique_id port 133145 remote_ip 10.8.0.154 133149 username jamali 133149 mac 133149 bytes_out 0 133149 bytes_in 0 133149 station_ip 5.120.162.252 133149 port 276 133149 unique_id port 133149 remote_ip 10.8.0.150 133157 username aminvpn 133157 unique_id port 133157 terminate_cause User-Request 133157 bytes_out 2291701 133157 bytes_in 30445201 133157 station_ip 5.120.72.205 133157 port 15730380 133157 nas_port_type Virtual 133157 remote_ip 5.5.5.135 133158 username mohammadjavad 133158 mac 133158 bytes_out 0 133158 bytes_in 0 133158 station_ip 83.122.229.56 133158 port 274 133158 unique_id port 133158 remote_ip 10.8.0.142 133114 mac 133114 bytes_out 0 133114 bytes_in 0 133114 station_ip 37.129.251.84 133114 port 279 133114 unique_id port 133114 remote_ip 10.8.0.154 133118 username mirzaei 133118 mac 133118 bytes_out 0 133118 bytes_in 0 133118 station_ip 5.119.47.186 133118 port 252 133118 unique_id port 133118 remote_ip 10.8.0.66 133120 username hashtadani3 133120 mac 133120 bytes_out 0 133120 bytes_in 0 133120 station_ip 37.129.251.84 133120 port 168 133120 unique_id port 133120 remote_ip 10.8.1.94 133122 username saeed9658 133122 mac 133122 bytes_out 0 133122 bytes_in 0 133122 station_ip 5.119.192.213 133122 port 280 133122 unique_id port 133122 remote_ip 10.8.0.62 133128 username moradi 133128 mac 133128 bytes_out 0 133128 bytes_in 0 133128 station_ip 113.203.89.241 133128 port 279 133128 unique_id port 133128 remote_ip 10.8.0.250 133130 username barzegar 133130 mac 133130 bytes_out 0 133130 bytes_in 0 133130 station_ip 5.119.157.236 133130 port 259 133130 unique_id port 133130 remote_ip 10.8.0.234 133137 username barzegar 133137 mac 133137 bytes_out 0 133137 bytes_in 0 133137 station_ip 5.119.157.236 133137 port 279 133137 unique_id port 133137 remote_ip 10.8.0.234 133143 username hashtadani3 133143 mac 133143 bytes_out 0 133143 bytes_in 0 133143 station_ip 37.129.251.84 133143 port 279 133143 unique_id port 133143 remote_ip 10.8.0.154 133146 username hashtadani3 133146 mac 133146 bytes_out 0 133146 bytes_in 0 133146 station_ip 37.129.251.84 133146 port 279 133146 unique_id port 133146 remote_ip 10.8.0.154 133150 username hashtadani3 133150 mac 133150 bytes_out 0 133150 bytes_in 0 133150 station_ip 37.129.251.84 133150 port 276 133150 unique_id port 133150 remote_ip 10.8.0.154 133152 username sabaghnezhad 133152 mac 133152 bytes_out 0 133152 bytes_in 0 133152 station_ip 83.122.198.110 133152 port 276 133152 unique_id port 133152 remote_ip 10.8.0.186 133154 username amir 133154 mac 133154 bytes_out 0 133154 bytes_in 0 133154 station_ip 46.225.213.118 133154 port 286 133154 unique_id port 133154 remote_ip 10.8.0.50 133156 username sabaghnezhad 133156 mac 133156 bytes_out 11024 133156 bytes_in 16788 133156 station_ip 83.122.198.110 133156 port 176 133156 unique_id port 133156 remote_ip 10.8.1.130 133160 username mehdizare 133160 mac 133160 bytes_out 188945 133160 bytes_in 603058 133160 station_ip 5.120.148.206 133160 port 280 133160 unique_id port 133160 remote_ip 10.8.0.90 133162 username hashtadani3 133162 mac 133162 bytes_out 0 133162 bytes_in 0 133162 station_ip 37.129.251.84 133162 port 177 133162 unique_id port 133162 remote_ip 10.8.1.94 133165 username hashtadani3 133165 mac 133165 bytes_out 9788 133165 bytes_in 75797 133165 station_ip 37.129.251.84 133165 port 177 133165 unique_id port 133165 remote_ip 10.8.1.94 133167 username barzegar 133167 mac 133167 bytes_out 0 133167 bytes_in 0 133167 station_ip 5.119.157.236 133167 port 274 133167 unique_id port 133167 remote_ip 10.8.0.234 133168 username vanila 133168 mac 133168 bytes_out 0 133168 bytes_in 0 133168 station_ip 83.122.115.140 133168 port 276 133168 unique_id port 133168 remote_ip 10.8.0.178 133170 username godarzi 133170 mac 133170 bytes_out 0 133170 bytes_in 0 133170 station_ip 5.202.6.3 133170 port 294 133170 unique_id port 133170 remote_ip 10.8.0.174 133174 username hashtadani3 133174 mac 133174 bytes_out 0 133174 bytes_in 0 133153 bytes_out 0 133153 bytes_in 0 133153 station_ip 5.119.58.70 133153 port 279 133153 unique_id port 133153 remote_ip 10.8.0.150 133155 username barzegar 133155 mac 133155 bytes_out 19966 133155 bytes_in 22737 133155 station_ip 5.119.157.236 133155 port 259 133155 unique_id port 133155 remote_ip 10.8.0.234 133161 username mohammadjavad 133161 mac 133161 bytes_out 0 133161 bytes_in 0 133161 station_ip 83.122.229.56 133161 port 274 133161 unique_id port 133161 remote_ip 10.8.0.142 133163 username mehdizare 133163 mac 133163 bytes_out 7029 133163 bytes_in 11367 133163 station_ip 5.120.148.206 133163 port 176 133163 unique_id port 133163 remote_ip 10.8.1.42 133164 username barzegar 133164 mac 133164 bytes_out 0 133164 bytes_in 0 133164 station_ip 5.119.157.236 133164 port 280 133164 unique_id port 133164 remote_ip 10.8.0.234 133172 username zare 133172 mac 133172 bytes_out 0 133172 bytes_in 0 133172 station_ip 94.183.214.14 133172 port 289 133172 unique_id port 133172 remote_ip 10.8.0.18 133173 username barzegar 133173 mac 133173 bytes_out 0 133173 bytes_in 0 133173 station_ip 5.119.157.236 133173 port 274 133173 unique_id port 133173 remote_ip 10.8.0.234 133176 username mirzaei 133176 mac 133176 bytes_out 0 133176 bytes_in 0 133176 station_ip 5.119.47.186 133176 port 293 133176 unique_id port 133176 remote_ip 10.8.0.66 133177 username godarzi 133177 mac 133177 bytes_out 0 133177 bytes_in 0 133177 station_ip 5.202.6.3 133177 port 274 133177 unique_id port 133177 remote_ip 10.8.0.174 133179 username mosi 133179 kill_reason Another user logged on this global unique id 133179 mac 133179 bytes_out 0 133179 bytes_in 0 133179 station_ip 151.235.127.219 133179 port 265 133179 unique_id port 133180 username hashtadani3 133180 mac 133180 bytes_out 10251 133180 bytes_in 20955 133180 station_ip 37.129.251.84 133180 port 289 133180 unique_id port 133180 remote_ip 10.8.0.154 133186 username barzegar 133186 mac 133186 bytes_out 6195 133186 bytes_in 11040 133186 station_ip 5.119.157.236 133186 port 178 133186 unique_id port 133186 remote_ip 10.8.1.174 133190 username mirzaei 133190 mac 133190 bytes_out 0 133190 bytes_in 0 133190 station_ip 5.114.214.249 133190 port 293 133190 unique_id port 133190 remote_ip 10.8.0.66 133193 username alihosseini1 133193 mac 133193 bytes_out 55556 133193 bytes_in 77137 133193 station_ip 5.119.187.124 133193 port 294 133193 unique_id port 133193 remote_ip 10.8.0.166 133200 username hashtadani3 133200 mac 133200 bytes_out 0 133200 bytes_in 0 133200 station_ip 37.129.247.88 133200 port 294 133200 unique_id port 133200 remote_ip 10.8.0.154 133203 username naeimeh 133203 kill_reason Another user logged on this global unique id 133203 mac 133203 bytes_out 0 133203 bytes_in 0 133203 station_ip 113.203.92.67 133203 port 276 133203 unique_id port 133203 remote_ip 10.8.0.78 133205 username zare 133205 mac 133205 bytes_out 0 133205 bytes_in 0 133205 station_ip 37.27.55.76 133205 port 293 133205 unique_id port 133205 remote_ip 10.8.0.18 133206 username aminvpn 133206 mac 133206 bytes_out 0 133206 bytes_in 0 133206 station_ip 83.122.204.30 133206 port 295 133206 unique_id port 133206 remote_ip 10.8.0.14 133208 username aminvpn 133208 mac 133208 bytes_out 0 133208 bytes_in 0 133208 station_ip 83.122.204.30 133208 port 293 133208 unique_id port 133208 remote_ip 10.8.0.14 133209 username zare 133209 mac 133209 bytes_out 0 133159 username malekpoir 133159 mac 133159 bytes_out 0 133159 bytes_in 0 133159 station_ip 5.120.164.230 133159 port 289 133159 unique_id port 133159 remote_ip 10.8.0.58 133166 username hashtadani3 133166 mac 133166 bytes_out 0 133166 bytes_in 0 133166 station_ip 37.129.251.84 133166 port 289 133166 unique_id port 133166 remote_ip 10.8.0.154 133169 username barzegar 133169 mac 133169 bytes_out 0 133169 bytes_in 0 133169 station_ip 5.119.157.236 133169 port 276 133169 unique_id port 133169 remote_ip 10.8.0.234 133171 username amir 133171 mac 133171 bytes_out 0 133171 bytes_in 0 133171 station_ip 46.225.213.118 133171 port 274 133171 unique_id port 133171 remote_ip 10.8.0.50 133175 username mosi 133175 kill_reason Another user logged on this global unique id 133175 mac 133175 bytes_out 0 133175 bytes_in 0 133175 station_ip 151.235.127.219 133175 port 265 133175 unique_id port 133183 username kordestani 133183 mac 133183 bytes_out 0 133183 bytes_in 0 133183 station_ip 151.235.75.92 133183 port 290 133183 unique_id port 133183 remote_ip 10.8.0.134 133184 username zare 133184 mac 133184 bytes_out 0 133184 bytes_in 0 133184 station_ip 37.27.55.76 133184 port 289 133184 unique_id port 133184 remote_ip 10.8.0.18 133187 username alihosseini1 133187 mac 133187 bytes_out 0 133187 bytes_in 0 133187 station_ip 5.119.187.124 133187 port 177 133187 unique_id port 133187 remote_ip 10.8.1.106 133189 username zare 133189 mac 133189 bytes_out 0 133189 bytes_in 0 133189 station_ip 37.27.55.76 133189 port 289 133189 unique_id port 133189 remote_ip 10.8.0.18 133194 username aminvpn 133194 unique_id port 133194 terminate_cause User-Request 133194 bytes_out 20351780 133194 bytes_in 167319100 133194 station_ip 5.119.123.232 133194 port 15730377 133194 nas_port_type Virtual 133194 remote_ip 5.5.5.131 133195 username barzegar 133195 mac 133195 bytes_out 0 133195 bytes_in 0 133195 station_ip 5.119.157.236 133195 port 293 133195 unique_id port 133195 remote_ip 10.8.0.234 133197 username mirzaei 133197 mac 133197 bytes_out 27900 133197 bytes_in 41568 133197 station_ip 5.114.214.249 133197 port 177 133197 unique_id port 133197 remote_ip 10.8.1.30 133198 username hashtadani3 133198 mac 133198 bytes_out 0 133198 bytes_in 0 133198 station_ip 37.129.247.88 133198 port 177 133198 unique_id port 133198 remote_ip 10.8.1.94 133202 username mirzaei 133202 mac 133202 bytes_out 13993 133202 bytes_in 20413 133202 station_ip 5.114.214.249 133202 port 280 133202 unique_id port 133202 remote_ip 10.8.0.66 133204 username barzegar 133204 mac 133204 bytes_out 2477 133204 bytes_in 4874 133204 station_ip 5.119.157.236 133204 port 178 133204 unique_id port 133204 remote_ip 10.8.1.174 133215 username malekpoir 133215 mac 133215 bytes_out 3487987 133215 bytes_in 41841579 133215 station_ip 5.120.164.230 133215 port 286 133215 unique_id port 133215 remote_ip 10.8.0.58 133217 username zare 133217 mac 133217 bytes_out 26095 133217 bytes_in 59792 133217 station_ip 37.27.55.76 133217 port 177 133217 unique_id port 133217 remote_ip 10.8.1.58 133218 username aminvpn 133218 mac 133218 bytes_out 0 133218 bytes_in 0 133218 station_ip 83.122.204.30 133218 port 295 133218 unique_id port 133218 remote_ip 10.8.0.14 133221 username zare 133221 mac 133221 bytes_out 0 133221 bytes_in 0 133221 station_ip 37.27.55.76 133221 port 177 133221 unique_id port 133221 remote_ip 10.8.1.58 133223 username aminvpn 133174 station_ip 37.129.251.84 133174 port 289 133174 unique_id port 133174 remote_ip 10.8.0.154 133178 username barzegar 133178 mac 133178 bytes_out 2536 133178 bytes_in 4845 133178 station_ip 5.119.157.236 133178 port 293 133178 unique_id port 133178 remote_ip 10.8.0.234 133181 username godarzi 133181 mac 133181 bytes_out 0 133181 bytes_in 0 133181 station_ip 5.202.6.3 133181 port 274 133181 unique_id port 133181 remote_ip 10.8.0.174 133182 username amir 133182 mac 133182 bytes_out 0 133182 bytes_in 0 133182 station_ip 46.225.213.118 133182 port 289 133182 unique_id port 133182 remote_ip 10.8.0.50 133185 username zare 133185 mac 133185 bytes_out 38267 133185 bytes_in 124565 133185 station_ip 37.27.55.76 133185 port 294 133185 unique_id port 133185 remote_ip 10.8.0.18 133188 username zare 133188 mac 133188 bytes_out 0 133188 bytes_in 0 133188 station_ip 37.27.55.76 133188 port 289 133188 unique_id port 133188 remote_ip 10.8.0.18 133191 username mohammadjavad 133191 mac 133191 bytes_out 0 133191 bytes_in 0 133191 station_ip 83.122.229.56 133191 port 280 133191 unique_id port 133191 remote_ip 10.8.0.142 133192 username barzegar 133192 mac 133192 bytes_out 0 133192 bytes_in 0 133192 station_ip 5.119.157.236 133192 port 280 133192 unique_id port 133192 remote_ip 10.8.0.234 133196 username zare 133196 mac 133196 bytes_out 0 133196 bytes_in 0 133196 station_ip 37.27.55.76 133196 port 280 133196 unique_id port 133196 remote_ip 10.8.0.18 133199 username hashtadani3 133199 mac 133199 bytes_out 0 133199 bytes_in 0 133199 station_ip 37.129.247.88 133199 port 177 133199 unique_id port 133199 remote_ip 10.8.1.94 133201 username aminvpn 133201 unique_id port 133201 terminate_cause User-Request 133201 bytes_out 824 133201 bytes_in 122 133201 station_ip 5.119.6.9 133201 port 15730384 133201 nas_port_type Virtual 133201 remote_ip 5.5.5.148 133207 username zare 133207 mac 133207 bytes_out 0 133207 bytes_in 0 133207 station_ip 37.27.55.76 133207 port 280 133207 unique_id port 133207 remote_ip 10.8.0.18 133210 username mirzaei 133210 mac 133210 bytes_out 31707 133210 bytes_in 44775 133210 station_ip 5.114.214.249 133210 port 296 133210 unique_id port 133210 remote_ip 10.8.0.66 133212 username aminvpn 133212 unique_id port 133212 terminate_cause Lost-Carrier 133212 bytes_out 2326766 133212 bytes_in 69912404 133212 station_ip 5.120.72.205 133212 port 15730382 133212 nas_port_type Virtual 133212 remote_ip 5.5.5.140 133213 username aminvpn 133213 mac 133213 bytes_out 0 133213 bytes_in 0 133213 station_ip 83.122.204.30 133213 port 293 133213 unique_id port 133213 remote_ip 10.8.0.14 133214 username hashtadani3 133214 mac 133214 bytes_out 0 133214 bytes_in 0 133214 station_ip 37.129.247.88 133214 port 293 133214 unique_id port 133214 remote_ip 10.8.0.154 133216 username aminvpn 133216 mac 133216 bytes_out 0 133216 bytes_in 0 133216 station_ip 83.122.204.30 133216 port 280 133216 unique_id port 133216 remote_ip 10.8.0.14 133219 username zare 133219 mac 133219 bytes_out 0 133219 bytes_in 0 133219 station_ip 37.27.55.76 133219 port 177 133219 unique_id port 133219 remote_ip 10.8.1.58 133220 username aminvpn 133220 mac 133220 bytes_out 0 133220 bytes_in 0 133220 station_ip 83.122.204.30 133220 port 280 133220 unique_id port 133220 remote_ip 10.8.0.14 133222 username aminvpn 133222 mac 133222 bytes_out 0 133222 bytes_in 0 133209 bytes_in 0 133209 station_ip 37.27.55.76 133209 port 293 133209 unique_id port 133209 remote_ip 10.8.0.18 133211 username aminvpn 133211 mac 133211 bytes_out 0 133211 bytes_in 0 133211 station_ip 83.122.204.30 133211 port 280 133211 unique_id port 133211 remote_ip 10.8.0.14 133224 username aminvpn 133224 mac 133224 bytes_out 0 133224 bytes_in 0 133224 station_ip 83.122.204.30 133224 port 295 133224 unique_id port 133224 remote_ip 10.8.0.14 133229 username aminvpn 133229 mac 133229 bytes_out 0 133229 bytes_in 0 133229 station_ip 83.122.204.30 133229 port 295 133229 unique_id port 133229 remote_ip 10.8.0.14 133233 username mirzaei 133233 mac 133233 bytes_out 3971 133233 bytes_in 6948 133233 station_ip 5.119.5.131 133233 port 295 133233 unique_id port 133233 remote_ip 10.8.0.66 133234 username aminvpn 133234 mac 133234 bytes_out 0 133234 bytes_in 0 133234 station_ip 83.122.204.30 133234 port 297 133234 unique_id port 133234 remote_ip 10.8.0.14 133236 username aminvpn 133236 mac 133236 bytes_out 0 133236 bytes_in 0 133236 station_ip 83.122.204.30 133236 port 297 133236 unique_id port 133236 remote_ip 10.8.0.14 133240 username aminvpn 133240 mac 133240 bytes_out 0 133240 bytes_in 0 133240 station_ip 83.122.204.30 133240 port 297 133240 unique_id port 133240 remote_ip 10.8.0.14 133242 username kordestani 133242 mac 133242 bytes_out 0 133242 bytes_in 0 133242 station_ip 83.123.75.164 133242 port 298 133242 unique_id port 133242 remote_ip 10.8.0.134 133245 username mirzaei 133245 mac 133245 bytes_out 0 133245 bytes_in 0 133245 station_ip 5.113.7.34 133245 port 295 133245 unique_id port 133245 remote_ip 10.8.0.66 133246 username hashtadani3 133246 kill_reason Another user logged on this global unique id 133246 mac 133246 bytes_out 0 133246 bytes_in 0 133246 station_ip 37.129.247.88 133246 port 293 133246 unique_id port 133246 remote_ip 10.8.0.154 133248 username barzegar 133248 mac 133248 bytes_out 0 133248 bytes_in 0 133248 station_ip 5.119.157.236 133248 port 276 133248 unique_id port 133248 remote_ip 10.8.0.234 133252 username barzegar 133252 mac 133252 bytes_out 0 133252 bytes_in 0 133252 station_ip 5.119.157.236 133252 port 295 133252 unique_id port 133252 remote_ip 10.8.0.234 133256 username hamid.e 133256 unique_id port 133256 terminate_cause User-Request 133256 bytes_out 24973433 133256 bytes_in 676370035 133256 station_ip 188.245.88.182 133256 port 15730381 133256 nas_port_type Virtual 133256 remote_ip 5.5.5.139 133259 username mohammadmahdi 133259 kill_reason Another user logged on this global unique id 133259 mac 133259 bytes_out 0 133259 bytes_in 0 133259 station_ip 5.120.89.69 133259 port 298 133259 unique_id port 133259 remote_ip 10.8.0.54 133263 username arash 133263 mac 133263 bytes_out 0 133263 bytes_in 0 133263 station_ip 37.27.5.71 133263 port 295 133263 unique_id port 133263 remote_ip 10.8.0.114 133266 username hamidsalari 133266 kill_reason Another user logged on this global unique id 133266 mac 133266 bytes_out 0 133266 bytes_in 0 133266 station_ip 5.120.22.15 133266 port 284 133266 unique_id port 133267 username barzegar 133267 mac 133267 bytes_out 2989 133267 bytes_in 5733 133267 station_ip 5.119.157.236 133267 port 177 133267 unique_id port 133267 remote_ip 10.8.1.174 133274 username mohammadmahdi 133274 kill_reason Another user logged on this global unique id 133274 mac 133274 bytes_out 0 133274 bytes_in 0 133274 station_ip 5.120.89.69 133274 port 298 133274 unique_id port 133222 station_ip 83.122.204.30 133222 port 295 133222 unique_id port 133222 remote_ip 10.8.0.14 133226 username aminvpn 133226 mac 133226 bytes_out 0 133226 bytes_in 0 133226 station_ip 83.122.204.30 133226 port 297 133226 unique_id port 133226 remote_ip 10.8.0.14 133230 username aminvpn 133230 mac 133230 bytes_out 0 133230 bytes_in 0 69857 username arezoo 69857 kill_reason Maximum check online fails reached 69857 mac 5.237.92.228:49273: Unknown host 69857 bytes_out 0 69857 bytes_in 0 69857 station_ip 5.237.92.228:49273 69857 port 1017 69857 unique_id port 133230 station_ip 83.122.204.30 133230 port 297 133230 unique_id port 133230 remote_ip 10.8.0.14 133238 username aminvpn 133238 mac 133238 bytes_out 0 133238 bytes_in 0 133238 station_ip 83.122.204.30 133238 port 297 133238 unique_id port 133238 remote_ip 10.8.0.14 133239 username aminvpn 133239 mac 133239 bytes_out 0 133239 bytes_in 0 133239 station_ip 83.122.204.30 133239 port 299 133239 unique_id port 133239 remote_ip 10.8.0.14 133241 username naeimeh 133241 mac 133241 bytes_out 0 133241 bytes_in 0 133241 station_ip 113.203.92.67 133241 port 276 133241 unique_id port 133244 username aminvpn 133244 mac 133244 bytes_out 0 133244 bytes_in 0 133244 station_ip 83.122.204.30 133244 port 276 133244 unique_id port 133244 remote_ip 10.8.0.14 133249 username mohammadmahdi 133249 mac 133249 bytes_out 1714686 133249 bytes_in 16423331 133249 station_ip 5.120.89.69 133249 port 290 133249 unique_id port 133249 remote_ip 10.8.0.54 133253 username hoorieh 133253 mac 133253 bytes_out 221393 133253 bytes_in 2616715 133253 station_ip 5.120.173.121 133253 port 177 133253 unique_id port 133253 remote_ip 10.8.1.154 133254 username hashtadani3 133254 kill_reason Another user logged on this global unique id 133254 mac 133254 bytes_out 0 133254 bytes_in 0 133254 station_ip 37.129.247.88 133254 port 293 133254 unique_id port 133258 username mirzaei 133258 mac 133258 bytes_out 0 133258 bytes_in 0 133258 station_ip 5.114.172.114 133258 port 177 133258 unique_id port 133258 remote_ip 10.8.1.30 133261 username hashtadani3 133261 kill_reason Another user logged on this global unique id 133261 mac 133261 bytes_out 0 133261 bytes_in 0 133261 station_ip 37.129.247.88 133261 port 293 133261 unique_id port 133262 username forozandeh1 133262 mac 133262 bytes_out 698010 133262 bytes_in 3254280 133262 station_ip 37.129.129.83 133262 port 289 133262 unique_id port 133262 remote_ip 10.8.0.130 133265 username hashtadani3 133265 mac 133265 bytes_out 0 133265 bytes_in 0 133265 station_ip 37.129.247.88 133265 port 293 133265 unique_id port 133268 username hashtadani3 133268 mac 133268 bytes_out 5770 133268 bytes_in 10640 133268 station_ip 37.129.247.88 133268 port 274 133268 unique_id port 133268 remote_ip 10.8.0.154 133270 username kamali2 133270 mac 133270 bytes_out 2348151 133270 bytes_in 33253339 133270 station_ip 5.120.183.36 133270 port 287 133270 unique_id port 133270 remote_ip 10.8.0.214 133271 username kamali2 133271 mac 133271 bytes_out 0 133271 bytes_in 0 133271 station_ip 5.120.183.36 133271 port 280 133271 unique_id port 133271 remote_ip 10.8.0.214 133272 username barzegar 133272 mac 133272 bytes_out 2530 133272 bytes_in 4929 133272 station_ip 5.119.157.236 133272 port 177 133272 unique_id port 133272 remote_ip 10.8.1.174 133277 username barzegar 133277 mac 133277 bytes_out 2530 133277 bytes_in 4984 133277 station_ip 5.119.157.236 133277 port 177 133223 mac 133223 bytes_out 0 133223 bytes_in 0 133223 station_ip 83.122.204.30 133223 port 280 133223 unique_id port 133223 remote_ip 10.8.0.14 133225 username zare 133225 mac 133225 bytes_out 0 133225 bytes_in 0 133225 station_ip 37.27.55.76 133225 port 280 133225 unique_id port 133225 remote_ip 10.8.0.18 133227 username amir 133227 mac 133227 bytes_out 413346 133227 bytes_in 3035142 133227 station_ip 46.225.213.118 133227 port 290 133227 unique_id port 133227 remote_ip 10.8.0.50 133228 username aminvpn 69860 username arezoo 69860 kill_reason Maximum check online fails reached 69860 mac 5.237.66.187:49169: Unknown host 69860 bytes_out 0 69860 bytes_in 0 69860 station_ip 5.237.66.187:49169 69860 port 1017 69860 unique_id port 133228 mac 133228 bytes_out 0 133228 bytes_in 0 133228 station_ip 83.122.204.30 133228 port 280 133228 unique_id port 133228 remote_ip 10.8.0.14 133231 username sekonji3 133231 mac 133231 bytes_out 0 133231 bytes_in 0 133231 station_ip 37.129.198.103 133231 port 290 133231 unique_id port 133231 remote_ip 10.8.0.6 133232 username aminvpn 133232 mac 133232 bytes_out 0 133232 bytes_in 0 133232 station_ip 83.122.204.30 133232 port 298 133232 unique_id port 133232 remote_ip 10.8.0.14 133235 username aminvpn 133235 mac 133235 bytes_out 0 133235 bytes_in 0 133235 station_ip 83.122.204.30 133235 port 295 133235 unique_id port 133235 remote_ip 10.8.0.14 133237 username aminvpn 133237 mac 133237 bytes_out 0 133237 bytes_in 0 133237 station_ip 83.122.204.30 133237 port 295 133237 unique_id port 133237 remote_ip 10.8.0.14 133243 username aminvpn 133243 mac 133243 bytes_out 0 133243 bytes_in 0 133243 station_ip 83.122.204.30 133243 port 299 133243 unique_id port 133243 remote_ip 10.8.0.14 133247 username hamidsalari 133247 kill_reason Another user logged on this global unique id 133247 mac 133247 bytes_out 0 133247 bytes_in 0 133247 station_ip 5.120.22.15 133247 port 284 133247 unique_id port 133250 username alihosseini1 133250 kill_reason Another user logged on this global unique id 133250 mac 133250 bytes_out 0 133250 bytes_in 0 133250 station_ip 5.120.117.43 133250 port 294 133250 unique_id port 133250 remote_ip 10.8.0.166 133251 username mirzaei 133251 mac 133251 bytes_out 16772 133251 bytes_in 17530 133251 station_ip 5.119.123.222 133251 port 295 133251 unique_id port 133251 remote_ip 10.8.0.66 133255 username vanila 133255 mac 133255 bytes_out 0 133255 bytes_in 0 133255 station_ip 83.122.115.140 133255 port 299 133255 unique_id port 133255 remote_ip 10.8.0.178 133257 username godarzi 133257 mac 133257 bytes_out 0 133257 bytes_in 0 133257 station_ip 5.202.6.3 133257 port 274 133257 unique_id port 133257 remote_ip 10.8.0.174 133260 username mansour 133260 mac 133260 bytes_out 0 133260 bytes_in 0 133260 station_ip 5.202.10.115 133260 port 296 133260 unique_id port 133260 remote_ip 10.8.0.30 133264 username arash 133264 mac 133264 bytes_out 0 133264 bytes_in 0 133264 station_ip 37.27.5.71 133264 port 274 133264 unique_id port 133264 remote_ip 10.8.0.114 133269 username zare 133269 mac 133269 bytes_out 399445 133269 bytes_in 3738679 133269 station_ip 37.27.55.76 133269 port 280 133269 unique_id port 133269 remote_ip 10.8.0.18 133273 username zare 133273 mac 133273 bytes_out 0 133273 bytes_in 0 133273 station_ip 37.27.55.76 133273 port 280 133273 unique_id port 133273 remote_ip 10.8.0.18 133276 username zare 133276 mac 133275 username zare 133275 mac 133275 bytes_out 0 133275 bytes_in 0 133275 station_ip 37.27.55.76 133275 port 293 133275 unique_id port 133275 remote_ip 10.8.0.18 133278 username mohammadmahdi 133278 mac 133278 bytes_out 0 133278 bytes_in 0 133278 station_ip 5.120.89.69 133278 port 298 133278 unique_id port 133284 username alipour 133284 mac 133284 bytes_out 0 133284 bytes_in 0 133284 station_ip 37.129.8.191 133284 port 292 133284 unique_id port 133284 remote_ip 10.8.0.102 133289 username zare 133289 mac 133289 bytes_out 0 133289 bytes_in 0 133289 station_ip 37.27.55.76 133289 port 276 133289 unique_id port 133289 remote_ip 10.8.0.18 133292 username barzegar 133292 mac 133292 bytes_out 0 133292 bytes_in 0 133292 station_ip 5.119.157.236 133292 port 276 133292 unique_id port 133292 remote_ip 10.8.0.234 133294 username alipour 133294 mac 133294 bytes_out 4791 133294 bytes_in 10559 133294 station_ip 37.129.8.191 133294 port 177 133294 unique_id port 133294 remote_ip 10.8.1.50 133298 username aminvpn 133298 unique_id port 133298 terminate_cause User-Request 133298 bytes_out 488794 133298 bytes_in 2614071 133298 station_ip 5.233.49.34 133298 port 15730385 133298 nas_port_type Virtual 133298 remote_ip 5.5.5.152 133300 username sekonji3 133300 mac 133300 bytes_out 809546 133300 bytes_in 16604081 133300 station_ip 37.129.185.55 133300 port 287 133300 unique_id port 133300 remote_ip 10.8.0.6 133303 username alipour 133303 mac 133303 bytes_out 0 133303 bytes_in 0 133303 station_ip 37.129.8.191 133303 port 177 133303 unique_id port 133303 remote_ip 10.8.1.50 133304 username hashtadani3 133304 mac 133304 bytes_out 0 133304 bytes_in 0 133304 station_ip 37.129.247.88 133304 port 274 133304 unique_id port 133304 remote_ip 10.8.0.154 133306 username zare 133306 mac 133306 bytes_out 0 133306 bytes_in 0 133306 station_ip 37.27.55.76 133306 port 276 133306 unique_id port 133306 remote_ip 10.8.0.18 133307 username barzegar 133307 mac 133307 bytes_out 0 133307 bytes_in 0 133307 station_ip 5.119.157.236 133307 port 178 133307 unique_id port 133307 remote_ip 10.8.1.174 133311 username hashtadani3 133311 mac 133311 bytes_out 0 133311 bytes_in 0 133311 station_ip 37.129.247.88 133311 port 276 133311 unique_id port 133311 remote_ip 10.8.0.154 133313 username hashtadani3 133313 mac 133313 bytes_out 0 133313 bytes_in 0 133313 station_ip 37.129.247.88 133313 port 177 133313 unique_id port 133313 remote_ip 10.8.1.94 133317 username zare 133317 mac 133317 bytes_out 0 133317 bytes_in 0 133317 station_ip 37.27.55.76 133317 port 274 133317 unique_id port 133317 remote_ip 10.8.0.18 133322 username amirabbas 133322 unique_id port 133322 terminate_cause User-Request 133322 bytes_out 18119373 133322 bytes_in 500885158 133322 station_ip 37.27.17.204 133322 port 15730383 133322 nas_port_type Virtual 133322 remote_ip 5.5.5.141 133326 username hashtadani3 133326 mac 133326 bytes_out 0 133326 bytes_in 0 133326 station_ip 37.129.247.88 133326 port 177 133326 unique_id port 133326 remote_ip 10.8.1.94 133328 username hashtadani3 133328 mac 133328 bytes_out 0 133328 bytes_in 0 133328 station_ip 37.129.247.88 133328 port 177 133328 unique_id port 133328 remote_ip 10.8.1.94 133333 username alihosseini1 133333 mac 133333 bytes_out 0 133333 bytes_in 0 133333 station_ip 5.120.117.43 133333 port 294 133333 unique_id port 133335 username hashtadani3 133335 mac 133335 bytes_out 0 133276 bytes_out 0 133276 bytes_in 0 133276 station_ip 37.27.55.76 133276 port 293 133276 unique_id port 133276 remote_ip 10.8.0.18 133280 username zare 133280 mac 133280 bytes_out 0 133280 bytes_in 0 133280 station_ip 37.27.55.76 133280 port 295 133280 unique_id port 133280 remote_ip 10.8.0.18 133282 username zare 133282 mac 133282 bytes_out 0 133282 bytes_in 0 133282 station_ip 37.27.55.76 133282 port 296 133282 unique_id port 133282 remote_ip 10.8.0.18 133283 username amir 133283 mac 133283 bytes_out 0 133283 bytes_in 0 133283 station_ip 46.225.213.118 133283 port 276 133283 unique_id port 133283 remote_ip 10.8.0.50 133288 username alipour 133288 mac 133288 bytes_out 2300 133288 bytes_in 5308 133288 station_ip 37.129.8.191 133288 port 178 133288 unique_id port 133288 remote_ip 10.8.1.50 133290 username mosi 133290 kill_reason Another user logged on this global unique id 133290 mac 133290 bytes_out 0 133290 bytes_in 0 133290 station_ip 151.235.127.219 133290 port 265 133290 unique_id port 133291 username zare 133291 mac 133291 bytes_out 0 133291 bytes_in 0 133291 station_ip 37.27.55.76 133291 port 276 133291 unique_id port 133291 remote_ip 10.8.0.18 133293 username zare 133293 mac 133293 bytes_out 0 133293 bytes_in 0 133293 station_ip 37.27.55.76 133293 port 293 133293 unique_id port 133293 remote_ip 10.8.0.18 133296 username alihosseini1 133296 kill_reason Another user logged on this global unique id 133296 mac 133296 bytes_out 0 133296 bytes_in 0 133296 station_ip 5.120.117.43 133296 port 294 133296 unique_id port 133297 username zare 133297 mac 133297 bytes_out 0 133297 bytes_in 0 133297 station_ip 37.27.55.76 133297 port 276 133297 unique_id port 133297 remote_ip 10.8.0.18 133301 username godarzi 133301 mac 133301 bytes_out 75258 133301 bytes_in 116597 133301 station_ip 5.202.6.3 133301 port 292 133301 unique_id port 133301 remote_ip 10.8.0.174 133305 username hashtadani3 133305 mac 133305 bytes_out 0 133305 bytes_in 0 133305 station_ip 37.129.247.88 133305 port 274 133305 unique_id port 133305 remote_ip 10.8.0.154 133310 username hashtadani3 133310 kill_reason Maximum check online fails reached 133310 mac 133310 bytes_out 0 133310 bytes_in 0 133310 station_ip 37.129.247.88 133310 port 179 133310 unique_id port 133316 username barzegar 133316 mac 133316 bytes_out 2643 133316 bytes_in 5605 133316 station_ip 5.119.157.236 133316 port 178 133316 unique_id port 133316 remote_ip 10.8.1.174 133318 username hashtadani3 133318 mac 133318 bytes_out 0 133318 bytes_in 0 133318 station_ip 37.129.247.88 133318 port 274 133318 unique_id port 133318 remote_ip 10.8.0.154 133321 username hashtadani3 133321 mac 133321 bytes_out 0 133321 bytes_in 0 133321 station_ip 37.129.247.88 133321 port 177 133321 unique_id port 133321 remote_ip 10.8.1.94 133323 username hamidsalari 133323 kill_reason Another user logged on this global unique id 133323 mac 133323 bytes_out 0 133323 bytes_in 0 133323 station_ip 5.120.22.15 133323 port 284 133323 unique_id port 133325 username hashtadani3 133325 mac 133325 bytes_out 0 133325 bytes_in 0 133325 station_ip 37.129.247.88 133325 port 177 133325 unique_id port 133325 remote_ip 10.8.1.94 133329 username hashtadani3 133329 mac 133329 bytes_out 0 133329 bytes_in 0 133329 station_ip 37.129.247.88 133329 port 177 133329 unique_id port 133329 remote_ip 10.8.1.94 133330 username hashtadani3 133330 mac 133330 bytes_out 0 133330 bytes_in 0 133277 unique_id port 133277 remote_ip 10.8.1.174 133279 username barzegar 133279 mac 133279 bytes_out 0 133279 bytes_in 0 133279 station_ip 5.119.157.236 133279 port 293 133279 unique_id port 133279 remote_ip 10.8.0.234 133281 username zare 133281 mac 133281 bytes_out 0 133281 bytes_in 0 133281 station_ip 37.27.55.76 133281 port 295 133281 unique_id port 133281 remote_ip 10.8.0.18 133285 username vanila 133285 mac 133285 bytes_out 0 133285 bytes_in 0 133285 station_ip 83.122.121.104 133285 port 293 133285 unique_id port 133285 remote_ip 10.8.0.178 133286 username zare 133286 mac 133286 bytes_out 0 133286 bytes_in 0 133286 station_ip 37.27.55.76 133286 port 177 133286 unique_id port 133286 remote_ip 10.8.1.58 133287 username barzegar 133287 mac 133287 bytes_out 0 133287 bytes_in 0 133287 station_ip 5.119.157.236 133287 port 295 133287 unique_id port 133287 remote_ip 10.8.0.234 133295 username hashtadani3 133295 mac 133295 bytes_out 1230216 133295 bytes_in 12468849 133295 station_ip 37.129.247.88 133295 port 274 133295 unique_id port 133295 remote_ip 10.8.0.154 133299 username hashtadani3 133299 mac 133299 bytes_out 0 133299 bytes_in 0 133299 station_ip 37.129.247.88 133299 port 274 133299 unique_id port 133299 remote_ip 10.8.0.154 133302 username hashtadani3 133302 mac 133302 bytes_out 0 133302 bytes_in 0 133302 station_ip 37.129.247.88 133302 port 274 133302 unique_id port 133302 remote_ip 10.8.0.154 133308 username sabaghnezhad 133308 mac 133308 bytes_out 160313 133308 bytes_in 167825 133308 station_ip 83.122.198.110 133308 port 259 133308 unique_id port 133308 remote_ip 10.8.0.186 133309 username hashtadani3 133309 mac 133309 bytes_out 0 133309 bytes_in 0 133309 station_ip 37.129.247.88 133309 port 274 133309 unique_id port 133309 remote_ip 10.8.0.154 133312 username alipour 133312 mac 133312 bytes_out 20923 133312 bytes_in 22710 133312 station_ip 37.129.8.191 133312 port 177 133312 unique_id port 133312 remote_ip 10.8.1.50 133314 username aminvpn 133314 unique_id port 133314 terminate_cause Lost-Carrier 133314 bytes_out 23096 133314 bytes_in 19435 133314 station_ip 5.233.49.34 133314 port 15730386 133314 nas_port_type Virtual 133314 remote_ip 5.5.5.153 133315 username hashtadani3 133315 mac 133315 bytes_out 0 133315 bytes_in 0 133315 station_ip 37.129.247.88 133315 port 177 133315 unique_id port 133315 remote_ip 10.8.1.94 133319 username hashtadani3 133319 mac 133319 bytes_out 0 133319 bytes_in 0 133319 station_ip 37.129.247.88 133319 port 274 133319 unique_id port 133319 remote_ip 10.8.0.154 133320 username barzegar 133320 mac 133320 bytes_out 0 133320 bytes_in 0 133320 station_ip 5.119.157.236 133320 port 276 133320 unique_id port 133320 remote_ip 10.8.0.234 133324 username barzegar 133324 mac 133324 bytes_out 0 133324 bytes_in 0 133324 station_ip 5.119.157.236 133324 port 276 133324 unique_id port 133324 remote_ip 10.8.0.234 133327 username aminvpn 133327 mac 133327 bytes_out 0 133327 bytes_in 0 133327 station_ip 83.122.204.30 133327 port 297 133327 unique_id port 133327 remote_ip 10.8.0.14 133334 username sekonji3 133334 mac 133334 bytes_out 82270 133334 bytes_in 203522 133334 station_ip 37.129.185.55 133334 port 287 133334 unique_id port 133334 remote_ip 10.8.0.6 133336 username hashtadani3 133336 mac 133336 bytes_out 0 133336 bytes_in 0 133336 station_ip 37.129.247.88 133336 port 177 133336 unique_id port 133330 station_ip 37.129.247.88 133330 port 293 133330 unique_id port 133330 remote_ip 10.8.0.154 133331 username hashtadani3 133331 mac 133331 bytes_out 0 133331 bytes_in 0 133331 station_ip 37.129.247.88 133331 port 293 133331 unique_id port 133331 remote_ip 10.8.0.154 133332 username hashtadani3 133332 mac 133332 bytes_out 0 133332 bytes_in 0 133332 station_ip 37.129.247.88 133332 port 177 133332 unique_id port 133332 remote_ip 10.8.1.94 133337 username barzegar 133337 mac 133337 bytes_out 0 133337 bytes_in 0 133337 station_ip 5.119.157.236 133337 port 293 133337 unique_id port 133337 remote_ip 10.8.0.234 133340 username hashtadani3 133340 mac 133340 bytes_out 0 133340 bytes_in 0 133340 station_ip 37.129.247.88 133340 port 293 133340 unique_id port 133340 remote_ip 10.8.0.154 133341 username sekonji3 133341 mac 133341 bytes_out 6699 133341 bytes_in 11148 133341 station_ip 37.129.185.55 133341 port 287 133341 unique_id port 133341 remote_ip 10.8.0.6 133343 username hashtadani3 133343 mac 133343 bytes_out 0 133343 bytes_in 0 133343 station_ip 37.129.247.88 133343 port 287 133343 unique_id port 133343 remote_ip 10.8.0.154 133351 username barzegar 133351 mac 133351 bytes_out 0 133351 bytes_in 0 133351 station_ip 5.119.157.236 133351 port 295 133351 unique_id port 133351 remote_ip 10.8.0.234 133352 username hashtadani3 133352 mac 133352 bytes_out 0 133352 bytes_in 0 133352 station_ip 37.129.247.88 133352 port 177 133352 unique_id port 133352 remote_ip 10.8.1.94 133354 username arash 133354 mac 133354 bytes_out 0 133354 bytes_in 0 133354 station_ip 37.27.5.71 133354 port 289 133354 unique_id port 133354 remote_ip 10.8.0.114 133356 username malekpoir 133356 mac 133356 bytes_out 4338312 133356 bytes_in 49781173 133356 station_ip 5.120.164.230 133356 port 286 133356 unique_id port 133356 remote_ip 10.8.0.58 133358 username hashtadani3 133358 kill_reason Another user logged on this global unique id 133358 mac 133358 bytes_out 0 133358 bytes_in 0 133358 station_ip 37.129.247.88 133358 port 177 133358 unique_id port 133358 remote_ip 10.8.1.94 133362 username hashtadani3 133362 kill_reason Another user logged on this global unique id 133362 mac 133362 bytes_out 0 133362 bytes_in 0 133362 station_ip 37.129.247.88 133362 port 177 133362 unique_id port 133367 username moradi 133367 mac 133367 bytes_out 1798870 133367 bytes_in 36140550 133367 station_ip 113.203.79.167 133367 port 287 133367 unique_id port 133367 remote_ip 10.8.0.250 133370 username barzegar 133370 mac 133370 bytes_out 0 133370 bytes_in 0 133370 station_ip 5.119.157.236 133370 port 280 133370 unique_id port 133370 remote_ip 10.8.0.234 133377 username mehdizare 133377 mac 133377 bytes_out 789464 133377 bytes_in 6338447 133377 station_ip 5.120.148.206 133377 port 176 133377 unique_id port 133377 remote_ip 10.8.1.42 133379 username mehdizare 133379 mac 133379 bytes_out 52400 133379 bytes_in 240165 133379 station_ip 5.120.148.206 133379 port 292 133379 unique_id port 133379 remote_ip 10.8.0.90 133380 username hamidsalari 133380 kill_reason Another user logged on this global unique id 133380 mac 133380 bytes_out 0 133380 bytes_in 0 133380 station_ip 5.120.22.15 133380 port 284 133380 unique_id port 133382 username aminvpn 133382 mac 133382 bytes_out 118365 133382 bytes_in 464891 133382 station_ip 83.122.204.30 133382 port 287 133382 unique_id port 133382 remote_ip 10.8.0.14 133384 username hoorieh 133384 mac 133384 bytes_out 1521656 133335 bytes_in 0 133335 station_ip 37.129.247.88 133335 port 177 133335 unique_id port 133335 remote_ip 10.8.1.94 133339 username hashtadani3 133339 mac 133339 bytes_out 0 133339 bytes_in 0 133339 station_ip 37.129.247.88 133339 port 293 133339 unique_id port 133339 remote_ip 10.8.0.154 133342 username hashtadani3 133342 mac 133342 bytes_out 0 133342 bytes_in 0 133342 station_ip 37.129.247.88 133342 port 293 133342 unique_id port 133342 remote_ip 10.8.0.154 133346 username hashtadani3 133346 mac 133346 bytes_out 0 133346 bytes_in 0 133346 station_ip 37.129.247.88 133346 port 287 133346 unique_id port 133346 remote_ip 10.8.0.154 133348 username hashtadani3 133348 mac 133348 bytes_out 0 133348 bytes_in 0 133348 station_ip 37.129.247.88 133348 port 293 133348 unique_id port 133348 remote_ip 10.8.0.154 133349 username hashtadani3 133349 mac 133349 bytes_out 0 133349 bytes_in 0 133349 station_ip 37.129.247.88 133349 port 293 133349 unique_id port 133349 remote_ip 10.8.0.154 133350 username hashtadani3 133350 mac 133350 bytes_out 0 133350 bytes_in 0 133350 station_ip 37.129.247.88 133350 port 293 133350 unique_id port 133350 remote_ip 10.8.0.154 133353 username forozandeh1 133353 mac 133353 bytes_out 0 133353 bytes_in 0 133353 station_ip 37.129.221.77 133353 port 276 133353 unique_id port 133353 remote_ip 10.8.0.130 133355 username hamidsalari 133355 kill_reason Another user logged on this global unique id 133355 mac 133355 bytes_out 0 133355 bytes_in 0 133355 station_ip 5.120.22.15 133355 port 284 133355 unique_id port 133361 username barzegar 133361 mac 133361 bytes_out 0 133361 bytes_in 0 133361 station_ip 5.119.157.236 133361 port 287 133361 unique_id port 133361 remote_ip 10.8.0.234 133363 username moradi 133363 mac 133363 bytes_out 1767210 133363 bytes_in 28753318 133363 station_ip 113.203.79.167 133363 port 276 133363 unique_id port 133363 remote_ip 10.8.0.250 133368 username mohsenaskari 133368 mac 133368 bytes_out 0 133368 bytes_in 0 133368 station_ip 46.225.213.232 133368 port 280 133368 unique_id port 133368 remote_ip 10.8.0.246 133372 username mirzaei 133372 mac 133372 bytes_out 11054 133372 bytes_in 15383 133372 station_ip 5.119.6.169 133372 port 287 133372 unique_id port 133372 remote_ip 10.8.0.66 133374 username hashtadani3 133374 kill_reason Another user logged on this global unique id 133374 mac 133374 bytes_out 0 133374 bytes_in 0 133374 station_ip 37.129.247.88 133374 port 177 133374 unique_id port 133375 username zare 133375 kill_reason Another user logged on this global unique id 133375 mac 133375 bytes_out 0 133375 bytes_in 0 133375 station_ip 37.27.55.76 133375 port 274 133375 unique_id port 133375 remote_ip 10.8.0.18 133378 username moradi 133378 kill_reason Another user logged on this global unique id 133378 mac 133378 bytes_out 0 133378 bytes_in 0 133378 station_ip 113.203.79.167 133378 port 289 133378 unique_id port 133378 remote_ip 10.8.0.250 133383 username zare 133383 mac 133383 bytes_out 0 133383 bytes_in 0 133383 station_ip 37.27.55.76 133383 port 274 133383 unique_id port 133387 username alihosseini1 133387 mac 133387 bytes_out 0 133387 bytes_in 0 133387 station_ip 5.119.138.193 133387 port 286 133387 unique_id port 133391 username barzegar 133391 mac 133391 bytes_out 0 133391 bytes_in 0 133391 station_ip 5.119.157.236 133391 port 276 133391 unique_id port 133391 remote_ip 10.8.0.234 133392 username alihosseini1 133392 mac 133392 bytes_out 0 133336 remote_ip 10.8.1.94 133338 username hashtadani3 133338 mac 133338 bytes_out 0 133338 bytes_in 0 133338 station_ip 37.129.247.88 133338 port 293 133338 unique_id port 133338 remote_ip 10.8.0.154 133344 username hashtadani3 133344 mac 133344 bytes_out 0 133344 bytes_in 0 133344 station_ip 37.129.247.88 133344 port 287 133344 unique_id port 133344 remote_ip 10.8.0.154 133345 username hashtadani3 133345 mac 133345 bytes_out 0 133345 bytes_in 0 133345 station_ip 37.129.247.88 133345 port 287 133345 unique_id port 133345 remote_ip 10.8.0.154 133347 username hashtadani3 133347 mac 133347 bytes_out 0 133347 bytes_in 0 133347 station_ip 37.129.247.88 133347 port 177 133347 unique_id port 133347 remote_ip 10.8.1.94 133357 username alihosseini1 133357 mac 133357 bytes_out 0 133357 bytes_in 0 133357 station_ip 5.119.138.193 133357 port 287 133357 unique_id port 133357 remote_ip 10.8.0.166 133359 username alihosseini1 133359 mac 133359 bytes_out 0 133359 bytes_in 0 133359 station_ip 5.119.138.193 133359 port 178 133359 unique_id port 133359 remote_ip 10.8.1.106 133360 username mosi 133360 kill_reason Another user logged on this global unique id 133360 mac 133360 bytes_out 0 133360 bytes_in 0 133360 station_ip 151.235.127.219 133360 port 265 133360 unique_id port 133364 username mirzaei 133364 mac 133364 bytes_out 0 133364 bytes_in 0 133364 station_ip 5.119.203.59 133364 port 280 133364 unique_id port 133364 remote_ip 10.8.0.66 133365 username mohsenaskari 133365 mac 133365 bytes_out 0 133365 bytes_in 0 133365 station_ip 46.225.213.232 133365 port 276 133365 unique_id port 133365 remote_ip 10.8.0.246 133366 username hashtadani3 133366 kill_reason Another user logged on this global unique id 133366 mac 133366 bytes_out 0 133366 bytes_in 0 133366 station_ip 37.129.247.88 133366 port 177 133366 unique_id port 133369 username mirzaei 133369 mac 133369 bytes_out 0 133369 bytes_in 0 133369 station_ip 5.119.203.59 133369 port 276 133369 unique_id port 133369 remote_ip 10.8.0.66 133371 username mohammadmahdi 133371 kill_reason Another user logged on this global unique id 133371 mac 133371 bytes_out 0 133371 bytes_in 0 133371 station_ip 5.120.89.69 133371 port 294 133371 unique_id port 133371 remote_ip 10.8.0.54 133373 username alihosseini1 133373 kill_reason Another user logged on this global unique id 133373 mac 133373 bytes_out 0 133373 bytes_in 0 133373 station_ip 5.119.138.193 133373 port 286 133373 unique_id port 133373 remote_ip 10.8.0.166 133376 username aminvpn 133376 mac 133376 bytes_out 230730 133376 bytes_in 2954037 133376 station_ip 83.122.204.30 133376 port 292 133376 unique_id port 133376 remote_ip 10.8.0.14 133381 username moradi 133381 mac 133381 bytes_out 0 133381 bytes_in 0 133381 station_ip 113.203.79.167 133381 port 289 133381 unique_id port 133388 username hashtadani3 133388 mac 133388 bytes_out 0 133388 bytes_in 0 133388 station_ip 37.129.247.88 133388 port 177 133388 unique_id port 133402 username aminvpn 133402 mac 133402 bytes_out 0 133402 bytes_in 0 133402 station_ip 83.122.204.30 133402 port 177 133402 unique_id port 133402 remote_ip 10.8.1.6 133408 username khalili 133408 mac 133408 bytes_out 0 133408 bytes_in 0 133408 station_ip 5.119.60.132 133408 port 168 133408 unique_id port 133408 remote_ip 10.8.1.18 133410 username hamidsalari 133410 kill_reason Another user logged on this global unique id 133410 mac 133410 bytes_out 0 133410 bytes_in 0 133410 station_ip 5.120.22.15 133384 bytes_in 35554657 133384 station_ip 5.120.173.121 133384 port 280 133384 unique_id port 133384 remote_ip 10.8.0.38 133385 username aminvpn 133385 mac 133385 bytes_out 0 133385 bytes_in 0 133385 station_ip 83.122.204.30 133385 port 289 133385 unique_id port 133385 remote_ip 10.8.0.14 133386 username arash 133386 mac 133386 bytes_out 72952 133386 bytes_in 100892 133386 station_ip 37.27.5.71 133386 port 293 133386 unique_id port 133386 remote_ip 10.8.0.114 133389 username mirzaei 133389 mac 133389 bytes_out 0 133389 bytes_in 0 133389 station_ip 5.119.6.169 133389 port 276 133389 unique_id port 133389 remote_ip 10.8.0.66 133390 username alihosseini1 133390 mac 133390 bytes_out 0 133390 bytes_in 0 133390 station_ip 5.119.138.193 133390 port 289 133390 unique_id port 133390 remote_ip 10.8.0.166 133396 username aminvpn 133396 mac 133396 bytes_out 0 133396 bytes_in 0 133396 station_ip 113.203.38.142 133396 port 174 133396 unique_id port 133396 remote_ip 10.8.1.6 133397 username aminvpn 133397 mac 133397 bytes_out 0 133397 bytes_in 0 133397 station_ip 83.122.204.30 133397 port 177 133397 unique_id port 133397 remote_ip 10.8.1.6 133401 username aminvpn 133401 mac 133401 bytes_out 0 133401 bytes_in 0 133401 station_ip 113.203.38.142 133401 port 174 133401 unique_id port 133401 remote_ip 10.8.1.6 133403 username aminvpn 133403 mac 133403 bytes_out 0 133403 bytes_in 0 133403 station_ip 83.122.204.30 133403 port 274 133403 unique_id port 133403 remote_ip 10.8.0.14 133405 username aminvpn 133405 mac 133405 bytes_out 0 133405 bytes_in 0 133405 station_ip 113.203.38.142 133405 port 174 133405 unique_id port 133405 remote_ip 10.8.1.6 133406 username mirzaei 133406 mac 133406 bytes_out 0 133406 bytes_in 0 133406 station_ip 5.119.152.216 133406 port 274 133406 unique_id port 133406 remote_ip 10.8.0.66 133409 username amin.saeedi 133409 unique_id port 133409 terminate_cause User-Request 133409 bytes_out 3060575 133409 bytes_in 128740387 133409 station_ip 5.119.92.72 133409 port 15730390 133409 nas_port_type Virtual 133409 remote_ip 5.5.5.170 133414 username aminvpn 133414 mac 133414 bytes_out 0 133414 bytes_in 0 133414 station_ip 83.122.204.30 133414 port 292 133414 unique_id port 133414 remote_ip 10.8.0.14 133416 username mohammadmahdi 133416 kill_reason Another user logged on this global unique id 133416 mac 133416 bytes_out 0 133416 bytes_in 0 133416 station_ip 5.120.89.69 133416 port 294 133416 unique_id port 133417 username alireza 133417 unique_id port 133417 terminate_cause Lost-Carrier 133417 bytes_out 4432645 133417 bytes_in 91114723 133417 station_ip 5.120.92.76 133417 port 15730387 133417 nas_port_type Virtual 133417 remote_ip 5.5.5.158 133421 username forozandeh1 133421 mac 133421 bytes_out 0 133421 bytes_in 0 133421 station_ip 37.129.135.82 133421 port 280 133421 unique_id port 133421 remote_ip 10.8.0.130 133422 username mohammadmahdi 133422 mac 133422 bytes_out 0 133422 bytes_in 0 133422 station_ip 5.120.89.69 133422 port 294 133422 unique_id port 133423 username barzegar 133423 kill_reason Maximum check online fails reached 133423 mac 133423 bytes_out 0 133423 bytes_in 0 133423 station_ip 5.120.140.204 133423 port 280 133423 unique_id port 133425 username mahdiyehalizadeh 133425 kill_reason Wrong password 133425 mac 133425 bytes_out 0 133425 bytes_in 0 133425 station_ip 37.129.120.83 133425 port 276 133425 unique_id port 133426 username aminvpn 133426 mac 133426 bytes_out 3160288 133392 bytes_in 0 133392 station_ip 5.119.138.193 133392 port 276 133392 unique_id port 133392 remote_ip 10.8.0.166 133393 username forozandeh1 133393 mac 133393 bytes_out 376590 133393 bytes_in 4716157 133393 station_ip 37.129.218.149 133393 port 280 133393 unique_id port 133393 remote_ip 10.8.0.130 133394 username hamidsalari 133394 kill_reason Another user logged on this global unique id 133394 mac 133394 bytes_out 0 133394 bytes_in 0 133394 station_ip 5.120.22.15 133394 port 284 133394 unique_id port 133395 username alihosseini1 133395 mac 133395 bytes_out 0 133395 bytes_in 0 133395 station_ip 5.119.138.193 133395 port 276 133395 unique_id port 133395 remote_ip 10.8.0.166 133398 username mohammadmahdi 133398 kill_reason Another user logged on this global unique id 133398 mac 133398 bytes_out 0 133398 bytes_in 0 133398 station_ip 5.120.89.69 133398 port 294 133398 unique_id port 133399 username aminvpn 133399 mac 133399 bytes_out 0 133399 bytes_in 0 133399 station_ip 113.203.38.142 133399 port 174 133399 unique_id port 133399 remote_ip 10.8.1.6 133400 username aminvpn 133400 mac 133400 bytes_out 0 133400 bytes_in 0 133400 station_ip 83.122.204.30 133400 port 177 133400 unique_id port 133400 remote_ip 10.8.1.6 133404 username moradi 133404 mac 133404 bytes_out 899974 133404 bytes_in 13826586 133404 station_ip 113.203.79.167 133404 port 287 133404 unique_id port 133404 remote_ip 10.8.0.250 133407 username hamidsalari 133407 kill_reason Another user logged on this global unique id 133407 mac 133407 bytes_out 0 133407 bytes_in 0 133407 station_ip 5.120.22.15 133407 port 284 133407 unique_id port 133411 username alihosseini1 133411 mac 133411 bytes_out 0 133411 bytes_in 0 133411 station_ip 5.119.138.193 133411 port 292 133411 unique_id port 133411 remote_ip 10.8.0.166 133413 username vanila 133413 mac 133413 bytes_out 9479095 133413 bytes_in 3016723 133413 station_ip 83.122.36.16 133413 port 276 133413 unique_id port 133413 remote_ip 10.8.0.178 133418 username mahdiyehalizadeh 133418 mac 133418 bytes_out 365854 133418 bytes_in 5054099 133418 station_ip 37.129.120.83 133418 port 276 133418 unique_id port 133418 remote_ip 10.8.0.82 133419 username alihosseini1 133419 mac 133419 bytes_out 0 133419 bytes_in 0 133419 station_ip 5.119.138.193 133419 port 292 133419 unique_id port 133419 remote_ip 10.8.0.166 133424 username mahdiyehalizadeh 133424 mac 133424 bytes_out 0 133424 bytes_in 0 133424 station_ip 37.129.120.83 133424 port 276 133424 unique_id port 133424 remote_ip 10.8.0.82 133427 username aminvpn 133427 mac 133427 bytes_out 229322 133427 bytes_in 299726 133427 station_ip 113.203.38.142 133427 port 287 133427 unique_id port 133427 remote_ip 10.8.0.14 133434 username mehdizare 133434 mac 133434 bytes_out 0 133434 bytes_in 0 133434 station_ip 5.120.148.206 133434 port 174 133434 unique_id port 133434 remote_ip 10.8.1.42 133437 username aminvpn 133437 mac 133437 bytes_out 0 133437 bytes_in 0 133437 station_ip 83.122.204.30 133437 port 293 133437 unique_id port 133437 remote_ip 10.8.0.14 133438 username mehdizare 133438 mac 133438 bytes_out 11719 133438 bytes_in 16220 133438 station_ip 5.120.148.206 133438 port 168 133438 unique_id port 133438 remote_ip 10.8.1.42 133442 username aminvpn 133442 mac 133442 bytes_out 0 133442 bytes_in 0 133442 station_ip 83.122.204.30 133442 port 293 133442 unique_id port 133442 remote_ip 10.8.0.14 133444 username moradi 133444 mac 133444 bytes_out 0 133410 port 284 133410 unique_id port 133412 username aminvpn 133412 mac 133412 bytes_out 205723 133412 bytes_in 670895 133412 station_ip 113.203.38.142 133412 port 287 133412 unique_id port 133412 remote_ip 10.8.0.14 133415 username aminvpn 133415 mac 133415 bytes_out 0 133415 bytes_in 0 133415 station_ip 113.203.38.142 133415 port 287 133415 unique_id port 133415 remote_ip 10.8.0.14 133420 username tahmasebi 133420 kill_reason Another user logged on this global unique id 133420 mac 133420 bytes_out 0 133420 bytes_in 0 133420 station_ip 5.119.118.187 133420 port 282 133420 unique_id port 133429 username mostafa_es78 133429 unique_id port 133429 terminate_cause User-Request 133429 bytes_out 4882830 133429 bytes_in 101651287 133429 station_ip 5.119.27.128 133429 port 15730389 133429 nas_port_type Virtual 133429 remote_ip 5.5.5.163 133431 username aminvpn 133431 mac 133431 bytes_out 3780 133431 bytes_in 5675 133431 station_ip 113.203.38.142 133431 port 287 133431 unique_id port 133431 remote_ip 10.8.0.14 133436 username aminvpn 133436 mac 133436 bytes_out 43438 133436 bytes_in 23387 133436 station_ip 113.203.38.142 133436 port 287 133436 unique_id port 133436 remote_ip 10.8.0.14 133440 username mirzaei 133440 mac 133440 bytes_out 182433 133440 bytes_in 522465 133440 station_ip 5.119.152.216 133440 port 289 133440 unique_id port 133440 remote_ip 10.8.0.66 133452 username aminvpn 133452 mac 133452 bytes_out 0 133452 bytes_in 0 133452 station_ip 113.203.38.142 133452 port 293 133452 unique_id port 133452 remote_ip 10.8.0.14 133453 username barzegar 133453 mac 133453 bytes_out 0 133453 bytes_in 0 133453 station_ip 5.120.140.204 133453 port 293 133453 unique_id port 133453 remote_ip 10.8.0.234 133454 username moradi 133454 mac 133454 bytes_out 0 133454 bytes_in 0 133454 station_ip 113.203.79.167 133454 port 168 133454 unique_id port 133454 remote_ip 10.8.1.202 133458 username alihosseini1 133458 mac 133458 bytes_out 165317 133458 bytes_in 200958 133458 station_ip 5.119.138.193 133458 port 292 133458 unique_id port 133458 remote_ip 10.8.0.166 133460 username mosi 133460 kill_reason Another user logged on this global unique id 133460 mac 133460 bytes_out 0 133460 bytes_in 0 133460 station_ip 151.235.127.219 133460 port 265 133460 unique_id port 133461 username godarzi 133461 mac 133461 bytes_out 351886 133461 bytes_in 4737656 133461 station_ip 5.202.6.3 133461 port 295 133461 unique_id port 133461 remote_ip 10.8.0.174 133463 username aminvpn 133463 unique_id port 133463 terminate_cause User-Request 133463 bytes_out 116 133463 bytes_in 122 133463 station_ip 5.119.11.219 133463 port 15730393 133463 nas_port_type Virtual 133463 remote_ip 5.5.5.110 133466 username houshang 133466 mac 133466 bytes_out 0 133466 bytes_in 0 133466 station_ip 5.120.190.101 133466 port 294 133466 unique_id port 133468 username mahdiyehalizadeh 133468 mac 133468 bytes_out 879022 133468 bytes_in 12298321 133468 station_ip 37.129.120.83 133468 port 276 133468 unique_id port 133468 remote_ip 10.8.0.82 133469 username houshang 133469 mac 133469 bytes_out 137283 133469 bytes_in 1428173 133469 station_ip 5.120.190.101 133469 port 292 133469 unique_id port 133469 remote_ip 10.8.0.22 133472 username mehdizare 133472 mac 133472 bytes_out 0 133472 bytes_in 0 133472 station_ip 5.120.148.206 133472 port 292 133472 unique_id port 133472 remote_ip 10.8.0.90 133474 username barzegar 133474 mac 133474 bytes_out 0 133474 bytes_in 0 133426 bytes_in 18609067 133426 station_ip 83.122.204.30 133426 port 177 133426 unique_id port 133426 remote_ip 10.8.1.6 133428 username aminvpn 133428 mac 133428 bytes_out 0 133428 bytes_in 0 133428 station_ip 83.122.204.30 133428 port 292 133428 unique_id port 133428 remote_ip 10.8.0.14 133430 username alihosseini1 133430 mac 133430 bytes_out 0 133430 bytes_in 0 133430 station_ip 5.119.138.193 133430 port 292 133430 unique_id port 133430 remote_ip 10.8.0.166 133432 username mehdizare 133432 mac 133432 bytes_out 0 133432 bytes_in 0 133432 station_ip 5.120.148.206 133432 port 176 133432 unique_id port 133432 remote_ip 10.8.1.42 133433 username aminvpn 133433 mac 133433 bytes_out 0 133433 bytes_in 0 133433 station_ip 83.122.204.30 133433 port 292 133433 unique_id port 133433 remote_ip 10.8.0.14 133435 username barzegar 133435 mac 133435 bytes_out 0 133435 bytes_in 0 133435 station_ip 5.120.140.204 133435 port 168 133435 unique_id port 133435 remote_ip 10.8.1.174 133439 username aminvpn 133439 mac 133439 bytes_out 0 133439 bytes_in 0 133439 station_ip 113.203.38.142 133439 port 287 133439 unique_id port 133439 remote_ip 10.8.0.14 133441 username tahmasebi 133441 kill_reason Another user logged on this global unique id 133441 mac 133441 bytes_out 0 133441 bytes_in 0 133441 station_ip 5.119.118.187 133441 port 282 133441 unique_id port 133443 username aminvpn 133443 mac 133443 bytes_out 0 133443 bytes_in 0 133443 station_ip 113.203.38.142 133443 port 289 133443 unique_id port 133443 remote_ip 10.8.0.14 133446 username aminvpn 133446 mac 133446 bytes_out 0 133446 bytes_in 0 133446 station_ip 113.203.38.142 133446 port 274 133446 unique_id port 133446 remote_ip 10.8.0.14 133447 username amirabbas 133447 unique_id port 133447 terminate_cause User-Request 133447 bytes_out 17827730 133447 bytes_in 469341289 133447 station_ip 37.27.17.204 133447 port 15730388 133447 nas_port_type Virtual 133447 remote_ip 5.5.5.159 133449 username aminvpn 133449 mac 133449 bytes_out 0 133449 bytes_in 0 133449 station_ip 83.122.204.30 133449 port 289 133449 unique_id port 133449 remote_ip 10.8.0.14 133450 username aminvpn 133450 mac 133450 bytes_out 0 133450 bytes_in 0 133450 station_ip 113.203.38.142 133450 port 274 133450 unique_id port 133450 remote_ip 10.8.0.14 133455 username tahmasebi 133455 kill_reason Another user logged on this global unique id 133455 mac 133455 bytes_out 0 133455 bytes_in 0 133455 station_ip 5.119.118.187 133455 port 282 133455 unique_id port 133459 username houshang 133459 kill_reason Another user logged on this global unique id 133459 mac 133459 bytes_out 0 133459 bytes_in 0 133459 station_ip 5.120.190.101 133459 port 294 133459 unique_id port 133459 remote_ip 10.8.0.22 133464 username sedighe 133464 mac 133464 bytes_out 28663 133464 bytes_in 49562 133464 station_ip 83.123.240.62 133464 port 292 133464 unique_id port 133464 remote_ip 10.8.0.146 133471 username mehdizare 133471 mac 133471 bytes_out 0 133471 bytes_in 0 133471 station_ip 5.120.148.206 133471 port 274 133471 unique_id port 133471 remote_ip 10.8.0.90 133476 username aminvpn 133476 mac 133476 bytes_out 0 133476 bytes_in 0 133476 station_ip 83.122.204.30 133476 port 289 133476 unique_id port 133476 remote_ip 10.8.0.14 133478 username houshang 133478 mac 133478 bytes_out 0 133478 bytes_in 0 133478 station_ip 5.120.190.101 133478 port 276 133478 unique_id port 133487 username barzegar 133487 mac 133487 bytes_out 0 133444 bytes_in 0 133444 station_ip 113.203.79.167 133444 port 274 133444 unique_id port 133444 remote_ip 10.8.0.250 133445 username aminvpn 133445 mac 133445 bytes_out 0 133445 bytes_in 0 133445 station_ip 83.122.204.30 133445 port 293 133445 unique_id port 133445 remote_ip 10.8.0.14 133448 username barzegar 133448 mac 133448 bytes_out 0 133448 bytes_in 0 133448 station_ip 5.120.140.204 133448 port 274 133448 unique_id port 133448 remote_ip 10.8.0.234 133451 username aminvpn 133451 mac 133451 bytes_out 0 133451 bytes_in 0 133451 station_ip 83.122.204.30 133451 port 289 133451 unique_id port 133451 remote_ip 10.8.0.14 133456 username vanila 133456 mac 133456 bytes_out 315232 133456 bytes_in 1675873 133456 station_ip 83.122.67.92 133456 port 295 133456 unique_id port 133456 remote_ip 10.8.0.178 133457 username barzegar 133457 mac 133457 bytes_out 0 133457 bytes_in 0 133457 station_ip 5.120.140.204 133457 port 295 133457 unique_id port 133457 remote_ip 10.8.0.234 133462 username sedighe 133462 mac 133462 bytes_out 689450 133462 bytes_in 11128210 133462 station_ip 83.122.44.183 133462 port 293 133462 unique_id port 133462 remote_ip 10.8.0.146 133465 username barzegar 133465 mac 133465 bytes_out 0 133465 bytes_in 0 133465 station_ip 5.120.140.204 133465 port 293 133465 unique_id port 133465 remote_ip 10.8.0.234 133467 username barzegar 133467 mac 133467 bytes_out 0 133467 bytes_in 0 133467 station_ip 5.120.140.204 133467 port 174 133467 unique_id port 133467 remote_ip 10.8.1.174 133470 username amirabbas 133470 unique_id port 133470 terminate_cause User-Request 133470 bytes_out 3459071 133470 bytes_in 76600477 133470 station_ip 37.27.17.204 133470 port 15730392 133470 nas_port_type Virtual 133470 remote_ip 5.5.5.97 133473 username mehdizare 133473 mac 133473 bytes_out 0 133473 bytes_in 0 133473 station_ip 5.120.148.206 133473 port 274 133473 unique_id port 133473 remote_ip 10.8.0.90 133481 username sedighe 133481 mac 133481 bytes_out 0 133481 bytes_in 0 133481 station_ip 83.123.240.62 133481 port 295 133481 unique_id port 133481 remote_ip 10.8.0.146 133482 username sedighe 133482 mac 133482 bytes_out 0 133482 bytes_in 0 133482 station_ip 37.129.156.74 133482 port 276 133482 unique_id port 133482 remote_ip 10.8.0.146 133489 username sedighe 133489 mac 133489 bytes_out 0 133489 bytes_in 0 133489 station_ip 37.129.156.74 133489 port 276 133489 unique_id port 133489 remote_ip 10.8.0.146 133493 username moradi 133493 mac 133493 bytes_out 90571 133493 bytes_in 77153 133493 station_ip 113.203.79.167 133493 port 168 133493 unique_id port 133493 remote_ip 10.8.1.202 133495 username barzegar 133495 mac 133495 bytes_out 0 133495 bytes_in 0 133495 station_ip 5.120.140.204 133495 port 174 133495 unique_id port 133495 remote_ip 10.8.1.174 133498 username moradi 133498 mac 133498 bytes_out 0 133498 bytes_in 0 133498 station_ip 37.129.125.75 133498 port 176 133498 unique_id port 133498 remote_ip 10.8.1.202 133499 username tahmasebi 133499 mac 133499 bytes_out 0 133499 bytes_in 0 133499 station_ip 5.119.118.187 133499 port 282 133499 unique_id port 133501 username khademi 133501 kill_reason Another user logged on this global unique id 133501 mac 133501 bytes_out 0 133501 bytes_in 0 133501 station_ip 37.129.196.114 133501 port 275 133501 unique_id port 133505 username barzegar 133505 mac 133505 bytes_out 0 133505 bytes_in 0 133474 station_ip 5.120.140.204 133474 port 292 133474 unique_id port 133474 remote_ip 10.8.0.234 133475 username moradi 133475 mac 133475 bytes_out 94829 133475 bytes_in 113706 133475 station_ip 113.203.79.167 133475 port 168 133475 unique_id port 133475 remote_ip 10.8.1.202 133477 username houshang 133477 kill_reason Another user logged on this global unique id 133477 mac 133477 bytes_out 0 133477 bytes_in 0 133477 station_ip 5.120.190.101 133477 port 276 133477 unique_id port 133477 remote_ip 10.8.0.22 133479 username mosi 133479 kill_reason Another user logged on this global unique id 133479 mac 133479 bytes_out 0 133479 bytes_in 0 133479 station_ip 151.235.127.219 133479 port 265 133479 unique_id port 133480 username barzegar 133480 mac 133480 bytes_out 0 133480 bytes_in 0 133480 station_ip 5.120.140.204 133480 port 174 133480 unique_id port 133480 remote_ip 10.8.1.174 133483 username aminvpn 133483 unique_id port 133483 terminate_cause Lost-Carrier 133483 bytes_out 83399 133483 bytes_in 310635 133483 station_ip 31.57.140.12 133483 port 15730394 133483 nas_port_type Virtual 133483 remote_ip 5.5.5.112 133484 username khademi 133484 kill_reason Another user logged on this global unique id 133484 mac 133484 bytes_out 0 133484 bytes_in 0 133484 station_ip 37.129.196.114 133484 port 275 133484 unique_id port 133484 remote_ip 10.8.0.10 133485 username houshang 133485 kill_reason Another user logged on this global unique id 133485 mac 133485 bytes_out 0 133485 bytes_in 0 133485 station_ip 5.120.190.101 133485 port 289 133485 unique_id port 133485 remote_ip 10.8.0.22 133486 username sedighe 133486 mac 133486 bytes_out 0 133486 bytes_in 0 133486 station_ip 37.129.156.74 133486 port 293 133486 unique_id port 133486 remote_ip 10.8.0.146 133488 username aminvpn 133488 unique_id port 133488 terminate_cause Lost-Carrier 133488 bytes_out 2341128 133488 bytes_in 58514081 133488 station_ip 31.57.131.203 133488 port 15730395 133488 nas_port_type Virtual 133488 remote_ip 5.5.5.118 133494 username houshang 133494 kill_reason Another user logged on this global unique id 133494 mac 133494 bytes_out 0 133494 bytes_in 0 133494 station_ip 5.120.190.101 133494 port 289 133494 unique_id port 133500 username saeed9658 133500 kill_reason Another user logged on this global unique id 133500 mac 133500 bytes_out 0 133500 bytes_in 0 133500 station_ip 5.120.62.36 133500 port 276 133500 unique_id port 133500 remote_ip 10.8.0.62 133504 username houshang 133504 kill_reason Another user logged on this global unique id 133504 mac 133504 bytes_out 0 133504 bytes_in 0 133504 station_ip 5.120.190.101 133504 port 289 133504 unique_id port 133506 username aminvpn 133506 unique_id port 133506 terminate_cause User-Request 133506 bytes_out 6450524 133506 bytes_in 161801010 133506 station_ip 31.57.141.159 133506 port 15730396 133506 nas_port_type Virtual 133506 remote_ip 5.5.5.130 133509 username houshang 133509 kill_reason Another user logged on this global unique id 133509 mac 133509 bytes_out 0 133509 bytes_in 0 133509 station_ip 5.120.190.101 133509 port 289 133509 unique_id port 133510 username farhad2 133510 mac 133510 bytes_out 3020612 133510 bytes_in 37989527 133510 station_ip 5.120.101.36 133510 port 174 133510 unique_id port 133510 remote_ip 10.8.1.222 133513 username ehsun 133513 mac 133513 bytes_out 0 133513 bytes_in 0 133513 station_ip 46.225.210.240 133513 port 289 133513 unique_id port 133513 remote_ip 10.8.0.162 133515 username houshang 133515 mac 133515 bytes_out 4527 133515 bytes_in 4542 133515 station_ip 5.120.190.101 133515 port 177 133515 unique_id port 133487 bytes_in 0 133487 station_ip 5.120.140.204 133487 port 174 133487 unique_id port 133487 remote_ip 10.8.1.174 133490 username jamali 133490 kill_reason Another user logged on this global unique id 133490 mac 133490 bytes_out 0 133490 bytes_in 0 133490 station_ip 5.119.80.43 133490 port 279 133490 unique_id port 133490 remote_ip 10.8.0.150 133491 username khademi 133491 kill_reason Another user logged on this global unique id 133491 mac 133491 bytes_out 0 133491 bytes_in 0 133491 station_ip 37.129.196.114 133491 port 275 133491 unique_id port 133492 username mosi 133492 kill_reason Another user logged on this global unique id 133492 mac 133492 bytes_out 0 133492 bytes_in 0 133492 station_ip 151.235.127.219 133492 port 265 133492 unique_id port 133496 username kordestani 133496 kill_reason Another user logged on this global unique id 133496 mac 133496 bytes_out 0 133496 bytes_in 0 133496 station_ip 83.122.179.58 133496 port 290 133496 unique_id port 133496 remote_ip 10.8.0.134 133497 username barzegar 133497 mac 133497 bytes_out 0 133497 bytes_in 0 133497 station_ip 5.120.140.204 133497 port 294 133497 unique_id port 133497 remote_ip 10.8.0.234 133502 username shahrooz 133502 unique_id port 133502 terminate_cause Lost-Carrier 133502 bytes_out 1090202 133502 bytes_in 14705892 133502 station_ip 37.129.171.118 133502 port 15730391 133502 nas_port_type Virtual 133502 remote_ip 5.5.5.94 133503 username barzegar 133503 mac 133503 bytes_out 1695 133503 bytes_in 5098 133503 station_ip 5.120.140.204 133503 port 294 133503 unique_id port 133503 remote_ip 10.8.0.234 133511 username houshang 133511 mac 133511 bytes_out 0 133511 bytes_in 0 133511 station_ip 5.120.190.101 133511 port 289 133511 unique_id port 133512 username houshang 133512 mac 133512 bytes_out 11058 133512 bytes_in 49285 133512 station_ip 5.120.190.101 133512 port 294 133512 unique_id port 133512 remote_ip 10.8.0.22 133514 username ehsun 133514 mac 133514 bytes_out 0 133514 bytes_in 0 133514 station_ip 46.225.210.240 133514 port 289 133514 unique_id port 133514 remote_ip 10.8.0.162 133517 username mehdizare 133517 mac 133517 bytes_out 0 133517 bytes_in 0 133517 station_ip 5.120.148.206 133517 port 274 133517 unique_id port 133517 remote_ip 10.8.0.90 133523 username mahdiyehalizadeh 133523 mac 133523 bytes_out 53131 133523 bytes_in 496980 133523 station_ip 113.203.38.170 133523 port 177 133523 unique_id port 133523 remote_ip 10.8.1.110 133528 username godarzi 133528 kill_reason Another user logged on this global unique id 133528 mac 133528 bytes_out 0 133528 bytes_in 0 133528 station_ip 5.119.146.255 133528 port 295 133528 unique_id port 133528 remote_ip 10.8.0.174 133529 username sekonji3 133529 mac 133529 bytes_out 3063 133529 bytes_in 5049 133529 station_ip 83.123.151.96 133529 port 282 133529 unique_id port 133529 remote_ip 10.8.0.6 133532 username sekonji3 133532 mac 133532 bytes_out 0 133532 bytes_in 0 133532 station_ip 83.123.151.96 133532 port 276 133532 unique_id port 133532 remote_ip 10.8.0.6 133535 username barzegar 133535 mac 133535 bytes_out 0 133535 bytes_in 0 133535 station_ip 5.120.140.204 133535 port 168 133535 unique_id port 133535 remote_ip 10.8.1.174 133542 username godarzi 133542 kill_reason Another user logged on this global unique id 133542 mac 133542 bytes_out 0 133542 bytes_in 0 133542 station_ip 5.119.146.255 133542 port 295 133542 unique_id port 133548 username mosi 133548 kill_reason Another user logged on this global unique id 133548 mac 133548 bytes_out 0 133548 bytes_in 0 133505 station_ip 5.120.140.204 133505 port 176 133505 unique_id port 133505 remote_ip 10.8.1.174 133507 username khademi 133507 kill_reason Another user logged on this global unique id 133507 mac 133507 bytes_out 0 133507 bytes_in 0 133507 station_ip 37.129.196.114 133507 port 275 133507 unique_id port 133508 username sekonji3 133508 mac 133508 bytes_out 0 133508 bytes_in 0 133508 station_ip 83.123.151.96 133508 port 294 133508 unique_id port 133508 remote_ip 10.8.0.6 133516 username aminvpn 133516 mac 133516 bytes_out 0 133516 bytes_in 0 133516 station_ip 83.122.204.30 133516 port 292 133516 unique_id port 133516 remote_ip 10.8.0.14 133518 username aminvpn 133518 unique_id port 133518 terminate_cause Lost-Carrier 133518 bytes_out 1303529 133518 bytes_in 6691147 133518 station_ip 151.238.248.205 133518 port 15730398 133518 nas_port_type Virtual 133518 remote_ip 5.5.5.136 133520 username sekonji3 133520 mac 133520 bytes_out 0 133520 bytes_in 0 133520 station_ip 83.123.151.96 133520 port 292 133520 unique_id port 133520 remote_ip 10.8.0.6 133521 username mahdiyehalizadeh 133521 mac 133521 bytes_out 79104 133521 bytes_in 672952 133521 station_ip 113.203.38.170 133521 port 294 133521 unique_id port 133521 remote_ip 10.8.0.82 133524 username sekonji3 133524 mac 133524 bytes_out 0 133524 bytes_in 0 133524 station_ip 83.123.151.96 133524 port 289 133524 unique_id port 133524 remote_ip 10.8.0.6 70110 username arezoo 70110 kill_reason Another user logged on this global unique id 70110 mac 5.238.59.251:49191: Unknown host 70110 bytes_out 0 70110 bytes_in 0 70110 station_ip 5.238.59.251:49191 70110 port 1017 70110 unique_id port 70113 username arezoo 70113 kill_reason Maximum check online fails reached 70113 mac 5.238.59.251:51011: Unknown host 70113 bytes_out 0 70113 bytes_in 0 70113 station_ip 5.238.59.251:51011 70113 port 1017 70113 unique_id port 133525 username sekonji3 133525 mac 133525 bytes_out 0 133525 bytes_in 0 133525 station_ip 83.123.151.96 133525 port 289 133525 unique_id port 133525 remote_ip 10.8.0.6 133530 username moradi 133530 mac 133530 bytes_out 148409 133530 bytes_in 282610 133530 station_ip 37.129.125.75 133530 port 168 133530 unique_id port 133530 remote_ip 10.8.1.202 133533 username aminvpn 133533 unique_id port 133533 terminate_cause User-Request 133533 bytes_out 1973935 133533 bytes_in 42667945 133533 station_ip 31.57.141.159 133533 port 15730400 133533 nas_port_type Virtual 133533 remote_ip 5.5.5.255 133536 username saeed9658 133536 mac 133536 bytes_out 0 133536 bytes_in 0 133536 station_ip 5.120.62.36 133536 port 282 133536 unique_id port 133536 remote_ip 10.8.0.62 133537 username barzegar 133537 mac 133537 bytes_out 2754 133537 bytes_in 5322 133537 station_ip 5.120.140.204 133537 port 176 133537 unique_id port 133537 remote_ip 10.8.1.174 133539 username sekonji3 133539 mac 133539 bytes_out 3934 133539 bytes_in 5399 133539 station_ip 83.123.151.96 133539 port 282 133539 unique_id port 133539 remote_ip 10.8.0.6 133544 username barzegar 133544 mac 133544 bytes_out 0 133544 bytes_in 0 133544 station_ip 5.120.140.204 133544 port 168 133544 unique_id port 133544 remote_ip 10.8.1.174 133546 username houshang 133546 mac 133546 bytes_out 0 133546 bytes_in 0 133546 station_ip 5.120.190.101 133546 port 276 133546 unique_id port 133546 remote_ip 10.8.0.22 133547 username sekonji3 133547 mac 133547 bytes_out 2461 133547 bytes_in 4625 133547 station_ip 83.123.151.96 133547 port 276 133547 unique_id port 133547 remote_ip 10.8.0.6 133515 remote_ip 10.8.1.70 133519 username ehsun 133519 mac 133519 bytes_out 0 133519 bytes_in 0 133519 station_ip 83.123.148.122 133519 port 289 133519 unique_id port 133519 remote_ip 10.8.0.162 133522 username mostafa_es78 133522 unique_id port 133522 terminate_cause User-Request 133522 bytes_out 261643 133522 bytes_in 6507876 133522 station_ip 5.120.67.32 133522 port 15730399 133522 nas_port_type Virtual 133522 remote_ip 5.5.5.143 133526 username forozandeh1 133526 mac 133526 bytes_out 626345 133526 bytes_in 3728790 133526 station_ip 83.122.138.174 133526 port 282 133526 unique_id port 133526 remote_ip 10.8.0.130 133527 username saeed9658 133527 mac 133527 bytes_out 0 133527 bytes_in 0 133527 station_ip 5.120.62.36 133527 port 276 133527 unique_id port 133531 username barzegar 133531 mac 133531 bytes_out 0 133531 bytes_in 0 133531 station_ip 5.120.140.204 133531 port 176 133531 unique_id port 133531 remote_ip 10.8.1.174 133534 username barzegar 133534 mac 133534 bytes_out 0 133534 bytes_in 0 133534 station_ip 5.120.140.204 133534 port 168 133534 unique_id port 133534 remote_ip 10.8.1.174 133538 username saeed9658 133538 mac 133538 bytes_out 197742 133538 bytes_in 2088799 133538 station_ip 5.120.62.36 133538 port 168 133538 unique_id port 133538 remote_ip 10.8.1.210 133540 username sedighe 133540 mac 133540 bytes_out 0 133540 bytes_in 0 133540 station_ip 37.129.156.74 133540 port 293 133540 unique_id port 133540 remote_ip 10.8.0.146 133541 username houshang 133541 mac 133541 bytes_out 1063790 133541 bytes_in 16819593 133541 station_ip 5.120.190.101 133541 port 276 133541 unique_id port 133541 remote_ip 10.8.0.22 133543 username mansur 133543 mac 133543 bytes_out 0 133543 bytes_in 0 133543 station_ip 5.120.190.27 133543 port 276 133543 unique_id port 133543 remote_ip 10.8.0.210 133545 username farhad2 133545 mac 133545 bytes_out 0 133545 bytes_in 0 133545 station_ip 5.120.101.36 133545 port 174 133545 unique_id port 133545 remote_ip 10.8.1.222 133554 username barzegar 133554 mac 133554 bytes_out 0 133554 bytes_in 0 133554 station_ip 5.120.140.204 133554 port 276 133554 unique_id port 133554 remote_ip 10.8.0.234 133557 username barzegar 133557 mac 133557 bytes_out 0 133557 bytes_in 0 133557 station_ip 5.120.140.204 133557 port 168 133557 unique_id port 133557 remote_ip 10.8.1.174 133564 username houshang 133564 kill_reason Another user logged on this global unique id 133564 mac 133564 bytes_out 0 133564 bytes_in 0 133564 station_ip 5.120.190.101 133564 port 292 133564 unique_id port 133565 username mohammadjavad 133565 mac 133565 bytes_out 0 133565 bytes_in 0 133565 station_ip 83.122.85.103 133565 port 293 133565 unique_id port 133565 remote_ip 10.8.0.142 133566 username arash 133566 mac 133566 bytes_out 218278 133566 bytes_in 326869 133566 station_ip 37.27.5.71 133566 port 286 133566 unique_id port 133566 remote_ip 10.8.0.114 133569 username sedighe 133569 mac 133569 bytes_out 0 133569 bytes_in 0 133569 station_ip 37.129.156.74 133569 port 282 133569 unique_id port 133569 remote_ip 10.8.0.146 133570 username shahrooz 133570 unique_id port 133570 terminate_cause Lost-Carrier 133570 bytes_out 21071 133570 bytes_in 87990 133570 station_ip 37.129.171.118 133570 port 15730402 133570 nas_port_type Virtual 133570 remote_ip 5.5.5.78 133572 username farhad2 133572 kill_reason Another user logged on this global unique id 133572 mac 133572 bytes_out 0 133572 bytes_in 0 133572 station_ip 5.120.101.36 133548 station_ip 151.235.127.219 133548 port 265 133548 unique_id port 133549 username barzegar 133549 mac 133549 bytes_out 2954 133549 bytes_in 5424 133549 station_ip 5.120.140.204 133549 port 168 133549 unique_id port 133549 remote_ip 10.8.1.174 133550 username sekonji3 133550 mac 133550 bytes_out 5544 133550 bytes_in 7144 133550 station_ip 83.123.151.96 133550 port 276 133550 unique_id port 133550 remote_ip 10.8.0.6 133551 username godarzi 133551 mac 133551 bytes_out 0 133551 bytes_in 0 133551 station_ip 5.119.146.255 133551 port 295 133551 unique_id port 133552 username mosi 133552 mac 133552 bytes_out 0 133552 bytes_in 0 133552 station_ip 151.235.127.219 133552 port 265 133552 unique_id port 133555 username kordestani 133555 mac 133555 bytes_out 0 133555 bytes_in 0 133555 station_ip 83.122.179.58 133555 port 290 133555 unique_id port 133556 username barzegar 133556 mac 133556 bytes_out 0 133556 bytes_in 0 133556 station_ip 5.120.140.204 133556 port 265 133556 unique_id port 133556 remote_ip 10.8.0.234 133560 username alihosseini1 133560 mac 133560 bytes_out 0 133560 bytes_in 0 133560 station_ip 5.119.193.93 133560 port 177 133560 unique_id port 133560 remote_ip 10.8.1.106 133561 username barzegar 133561 mac 133561 bytes_out 0 133561 bytes_in 0 133561 station_ip 5.120.140.204 133561 port 265 133561 unique_id port 133561 remote_ip 10.8.0.234 133562 username barzegar 133562 mac 133562 bytes_out 2575 133562 bytes_in 4929 133562 station_ip 5.120.140.204 133562 port 265 133562 unique_id port 133562 remote_ip 10.8.0.234 133563 username khademi 133563 kill_reason Another user logged on this global unique id 133563 mac 133563 bytes_out 0 133563 bytes_in 0 133563 station_ip 37.129.196.114 133563 port 275 133563 unique_id port 133571 username alihosseini1 133571 mac 133571 bytes_out 91552 70179 username arezoo 70179 kill_reason Maximum check online fails reached 70179 mac 5.237.81.16:49186: Unknown host 70179 bytes_out 0 70179 bytes_in 0 70179 station_ip 5.237.81.16:49186 70179 port 1017 70179 unique_id port 133571 bytes_in 413254 133571 station_ip 5.119.193.93 133571 port 174 133571 unique_id port 133571 remote_ip 10.8.1.106 133575 username houshang 133575 mac 133575 bytes_out 0 133575 bytes_in 0 133575 station_ip 5.120.190.101 133575 port 292 133575 unique_id port 133576 username mohammadmahdi 133576 mac 133576 bytes_out 1084694 133576 bytes_in 10403198 133576 station_ip 5.120.177.23 133576 port 276 133576 unique_id port 133576 remote_ip 10.8.0.54 133579 username aminvpn 133579 mac 133579 bytes_out 0 133579 bytes_in 0 133579 station_ip 83.123.173.250 133579 port 286 133579 unique_id port 133579 remote_ip 10.8.0.14 133581 username hamid 133581 kill_reason Relative expiration date has reached 133581 mac 133581 bytes_out 0 133581 bytes_in 0 133581 station_ip 37.129.70.116 133581 port 290 133581 unique_id port 133589 username barzegar 133589 mac 133589 bytes_out 0 133589 bytes_in 0 133589 station_ip 5.120.140.204 133589 port 174 133589 unique_id port 133589 remote_ip 10.8.1.174 133591 username hamid 133591 kill_reason Relative expiration date has reached 133591 mac 133591 bytes_out 0 133591 bytes_in 0 133591 station_ip 37.129.70.116 133591 port 290 133591 unique_id port 133594 username khademi 133594 kill_reason Another user logged on this global unique id 133594 mac 133594 bytes_out 0 133594 bytes_in 0 133594 station_ip 37.129.196.114 133594 port 275 133594 unique_id port 133596 username sedighe 133553 username houshang 133553 kill_reason Another user logged on this global unique id 133553 mac 133553 bytes_out 0 133553 bytes_in 0 133553 station_ip 5.120.190.101 133553 port 292 133553 unique_id port 133553 remote_ip 10.8.0.22 133558 username amirabbas 133558 unique_id port 133558 terminate_cause User-Request 133558 bytes_out 7577691 133558 bytes_in 206740983 133558 station_ip 37.27.17.204 133558 port 15730401 133558 nas_port_type Virtual 133558 remote_ip 5.5.5.77 133559 username barzegar 133559 mac 133559 bytes_out 0 133559 bytes_in 0 133559 station_ip 5.120.140.204 133559 port 265 133559 unique_id port 133559 remote_ip 10.8.0.234 133567 username barzegar 133567 mac 133567 bytes_out 0 133567 bytes_in 0 133567 station_ip 5.120.140.204 133567 port 176 133567 unique_id port 133567 remote_ip 10.8.1.174 133568 username tahmasebi 133568 mac 133568 bytes_out 0 133568 bytes_in 0 133568 station_ip 5.119.118.187 133568 port 294 133568 unique_id port 133568 remote_ip 10.8.0.42 133573 username malekpoir 133573 kill_reason Another user logged on this global unique id 133573 mac 133573 bytes_out 0 133573 bytes_in 0 133573 station_ip 5.119.101.235 133573 port 296 133573 unique_id port 133573 remote_ip 10.8.0.58 133577 username barzegar 133577 mac 133577 bytes_out 0 133577 bytes_in 0 133577 station_ip 5.120.140.204 133577 port 174 133577 unique_id port 133577 remote_ip 10.8.1.174 133583 username hamid 133583 kill_reason Relative expiration date has reached 133583 mac 133583 bytes_out 0 133583 bytes_in 0 133583 station_ip 37.129.70.116 133583 port 290 133583 unique_id port 133590 username hoorieh 133590 mac 133590 bytes_out 456670 133590 bytes_in 5499411 133590 station_ip 5.120.173.121 133590 port 290 133590 unique_id port 133590 remote_ip 10.8.0.38 133592 username vanila 133592 mac 133592 bytes_out 6451557 133592 bytes_in 2970239 133592 station_ip 83.122.45.56 133592 port 282 133592 unique_id port 133592 remote_ip 10.8.0.178 133593 username godarzi 133593 mac 133593 bytes_out 161885 133593 bytes_in 427517 133593 station_ip 5.119.146.255 133593 port 292 133593 unique_id port 133593 remote_ip 10.8.0.174 133597 username vanila 133597 mac 133597 bytes_out 0 133597 bytes_in 0 133597 station_ip 83.122.45.56 133597 port 282 133597 unique_id port 133597 remote_ip 10.8.0.178 133598 username hamid 133598 kill_reason Relative expiration date has reached 133598 mac 133598 bytes_out 0 133598 bytes_in 0 133598 station_ip 37.129.70.116 133598 port 265 133598 unique_id port 133599 username hamid 133599 kill_reason Relative expiration date has reached 133599 mac 133599 bytes_out 0 133599 bytes_in 0 133599 station_ip 37.129.70.116 133599 port 282 133599 unique_id port 133600 username hamid 133600 kill_reason Relative expiration date has reached 133600 mac 133600 bytes_out 0 133600 bytes_in 0 133600 station_ip 37.129.70.116 133600 port 282 133600 unique_id port 133602 username mohammadmahdi 133602 mac 133602 bytes_out 0 133602 bytes_in 0 133602 station_ip 5.120.177.23 133602 port 274 133602 unique_id port 133602 remote_ip 10.8.0.54 133606 username sedighe 133606 mac 133606 bytes_out 5598 133606 bytes_in 9287 133606 station_ip 37.129.156.74 133606 port 265 133606 unique_id port 133606 remote_ip 10.8.0.146 133608 username yahodi 133608 kill_reason Another user logged on this global unique id 133608 mac 133608 bytes_out 0 133608 bytes_in 0 133608 station_ip 37.129.179.91 133608 port 286 133608 unique_id port 133608 remote_ip 10.8.0.202 133609 username farhad2 133572 port 168 133572 unique_id port 133572 remote_ip 10.8.1.222 133574 username mehdizare 133574 mac 133574 bytes_out 424868 133574 bytes_in 487324 133574 station_ip 5.120.148.206 133574 port 274 133574 unique_id port 133574 remote_ip 10.8.0.90 133578 username hamid 133578 kill_reason Relative expiration date has reached 133578 mac 133578 bytes_out 0 133578 bytes_in 0 133578 station_ip 37.129.70.116 133578 port 286 133578 unique_id port 133580 username khademi 133580 kill_reason Another user logged on this global unique id 133580 mac 133580 bytes_out 0 133580 bytes_in 0 133580 station_ip 37.129.196.114 133580 port 275 133580 unique_id port 133582 username hamid 133582 kill_reason Relative expiration date has reached 133582 mac 133582 bytes_out 0 133582 bytes_in 0 133582 station_ip 37.129.70.116 133582 port 290 133582 unique_id port 133584 username hamid 133584 kill_reason Relative expiration date has reached 133584 mac 133584 bytes_out 0 133584 bytes_in 0 133584 station_ip 37.129.70.116 133584 port 292 133584 unique_id port 133585 username hamid 133585 kill_reason Relative expiration date has reached 133585 mac 133585 bytes_out 0 133585 bytes_in 0 133585 station_ip 37.129.70.116 133585 port 292 133585 unique_id port 133586 username hamid 133586 kill_reason Relative expiration date has reached 133586 mac 133586 bytes_out 0 133586 bytes_in 0 133586 station_ip 37.129.70.116 133586 port 293 133586 unique_id port 133587 username hamid 133587 kill_reason Relative expiration date has reached 133587 mac 133587 bytes_out 0 133587 bytes_in 0 133587 station_ip 37.129.70.116 133587 port 293 133587 unique_id port 133588 username hamid 133588 kill_reason Relative expiration date has reached 133588 mac 133588 bytes_out 0 133588 bytes_in 0 133588 station_ip 37.129.70.116 133588 port 293 133588 unique_id port 133595 username mosi 133595 mac 133595 bytes_out 0 133595 bytes_in 0 133595 station_ip 5.200.117.139 133595 port 295 133595 unique_id port 133595 remote_ip 10.8.0.138 133605 username hamid 133605 kill_reason Relative expiration date has reached 133605 mac 133605 bytes_out 0 133605 bytes_in 0 133605 station_ip 37.129.70.116 133605 port 274 133605 unique_id port 133613 username hosseine 133613 kill_reason Another user logged on this global unique id 133613 mac 133613 bytes_out 0 133613 bytes_in 0 133613 station_ip 37.129.96.144 133613 port 174 133613 unique_id port 133613 remote_ip 10.8.1.190 133615 username sedighe 133615 mac 133615 bytes_out 10591 133615 bytes_in 28648 133615 station_ip 83.123.90.242 133615 port 274 133615 unique_id port 133615 remote_ip 10.8.0.146 133617 username barzegar 133617 mac 133617 bytes_out 0 133617 bytes_in 0 133617 station_ip 5.120.140.204 133617 port 176 133617 unique_id port 133617 remote_ip 10.8.1.174 133624 username hamid 133624 kill_reason Relative expiration date has reached 133624 mac 133624 bytes_out 0 133624 bytes_in 0 133624 station_ip 37.129.70.116 133624 port 293 133624 unique_id port 133625 username hamid 133625 kill_reason Relative expiration date has reached 133625 mac 133625 bytes_out 0 133625 bytes_in 0 133625 station_ip 37.129.70.116 133625 port 294 133625 unique_id port 133626 username hamid 133626 kill_reason Relative expiration date has reached 133626 mac 133626 bytes_out 0 133626 bytes_in 0 133626 station_ip 37.129.70.116 133626 port 294 133626 unique_id port 133630 username hamid 133630 kill_reason Relative expiration date has reached 133630 mac 133630 bytes_out 0 133630 bytes_in 0 133630 station_ip 37.129.70.116 133630 port 289 133630 unique_id port 133596 mac 133596 bytes_out 0 133596 bytes_in 0 133596 station_ip 37.129.156.74 133596 port 265 133596 unique_id port 133596 remote_ip 10.8.0.146 133601 username hamid 133601 kill_reason Relative expiration date has reached 133601 mac 133601 bytes_out 0 133601 bytes_in 0 133601 station_ip 37.129.70.116 133601 port 282 133601 unique_id port 133603 username hamid 133603 kill_reason Relative expiration date has reached 133603 mac 133603 bytes_out 0 133603 bytes_in 0 133603 station_ip 37.129.70.116 133603 port 274 133603 unique_id port 133604 username hamid 133604 kill_reason Relative expiration date has reached 133604 mac 133604 bytes_out 0 133604 bytes_in 0 133604 station_ip 37.129.70.116 133604 port 274 133604 unique_id port 133607 username barzegar 133607 mac 133607 bytes_out 0 133607 bytes_in 0 133607 station_ip 5.120.140.204 133607 port 174 133607 unique_id port 133607 remote_ip 10.8.1.174 133610 username hosseine 133610 mac 133610 bytes_out 11660712 133610 bytes_in 6472979 133610 station_ip 37.129.96.144 133610 port 289 133610 unique_id port 133610 remote_ip 10.8.0.238 133612 username farhad2 133612 mac 133612 bytes_out 0 133612 bytes_in 0 133612 station_ip 5.120.101.36 133612 port 168 133612 unique_id port 133614 username farhad2 133614 mac 133614 bytes_out 374351 133614 bytes_in 4268292 133614 station_ip 5.120.101.36 133614 port 168 133614 unique_id port 133614 remote_ip 10.8.1.222 133618 username sedighe 133618 mac 133618 bytes_out 0 133618 bytes_in 0 133618 station_ip 83.123.90.242 133618 port 286 133618 unique_id port 133618 remote_ip 10.8.0.146 133620 username hosseine 133620 kill_reason Another user logged on this global unique id 133620 mac 133620 bytes_out 0 133620 bytes_in 0 133620 station_ip 37.129.96.144 133620 port 174 133620 unique_id port 133622 username mosi 133622 mac 133622 bytes_out 8938 133622 bytes_in 10048 133622 station_ip 37.156.156.157 133622 port 176 133622 unique_id port 133622 remote_ip 10.8.1.86 133623 username farhad2 133623 mac 133623 bytes_out 0 133623 bytes_in 0 133623 station_ip 5.120.101.36 133623 port 168 133623 unique_id port 133623 remote_ip 10.8.1.222 133629 username mosi 133629 mac 133629 bytes_out 0 133629 bytes_in 0 133629 station_ip 37.156.156.157 133629 port 168 133629 unique_id port 133629 remote_ip 10.8.1.86 133633 username hamid 133633 kill_reason Relative expiration date has reached 133633 mac 133633 bytes_out 0 133633 bytes_in 0 133633 station_ip 37.129.70.116 133633 port 290 133633 unique_id port 133635 username hamid 133635 kill_reason Relative expiration date has reached 133635 mac 133635 bytes_out 0 133635 bytes_in 0 133635 station_ip 37.129.70.116 133635 port 290 133635 unique_id port 133643 username yahodi 133643 mac 133643 bytes_out 0 133643 bytes_in 0 133643 station_ip 37.129.193.67 133643 port 274 133643 unique_id port 133643 remote_ip 10.8.0.202 133652 username barzegar 133652 mac 133652 bytes_out 0 133652 bytes_in 0 133652 station_ip 5.120.140.204 133652 port 178 133652 unique_id port 133652 remote_ip 10.8.1.174 133654 username malekpoir 133654 mac 133654 bytes_out 0 133654 bytes_in 0 133654 station_ip 5.119.101.235 133654 port 274 133654 unique_id port 133654 remote_ip 10.8.0.58 133657 username hamid 133657 kill_reason Relative expiration date has reached 133657 mac 133657 bytes_out 0 133657 bytes_in 0 133657 station_ip 83.123.116.47 133657 port 274 133657 unique_id port 133659 username hamid 134184 username barzegar 133609 kill_reason Another user logged on this global unique id 133609 mac 133609 bytes_out 0 133609 bytes_in 0 133609 station_ip 5.120.101.36 133609 port 168 133609 unique_id port 133611 username yahodi 133611 mac 133611 bytes_out 0 133611 bytes_in 0 133611 station_ip 37.129.179.91 133611 port 286 133611 unique_id port 133616 username mosi 133616 mac 133616 bytes_out 0 133616 bytes_in 0 133616 station_ip 5.134.145.10 133616 port 265 133616 unique_id port 133616 remote_ip 10.8.0.138 133619 username barzegar 133619 mac 133619 bytes_out 0 133619 bytes_in 0 133619 station_ip 5.120.140.204 133619 port 176 133619 unique_id port 133619 remote_ip 10.8.1.174 133621 username sedighe 133621 mac 133621 bytes_out 19410 133621 bytes_in 29479 133621 station_ip 83.123.90.242 133621 port 265 133621 unique_id port 133621 remote_ip 10.8.0.146 133627 username hamid 133627 kill_reason Relative expiration date has reached 133627 mac 133627 bytes_out 0 133627 bytes_in 0 133627 station_ip 37.129.70.116 133627 port 294 133627 unique_id port 133628 username vanila 133628 mac 133628 bytes_out 0 133628 bytes_in 0 133628 station_ip 83.122.45.56 133628 port 289 133628 unique_id port 133628 remote_ip 10.8.0.178 133631 username mohammadmahdi 133631 mac 133631 bytes_out 137263 133631 bytes_in 637867 133631 station_ip 5.120.177.23 133631 port 290 133631 unique_id port 133631 remote_ip 10.8.0.54 133634 username alireza 133634 unique_id port 133634 terminate_cause User-Request 133634 bytes_out 553099 133634 bytes_in 6636569 133634 station_ip 5.120.92.76 133634 port 15730404 133634 nas_port_type Virtual 133634 remote_ip 5.5.5.107 133638 username irannezhad 133638 mac 133638 bytes_out 853997 133638 bytes_in 9468378 133638 station_ip 37.129.249.99 133638 port 293 133638 unique_id port 133638 remote_ip 10.8.0.182 133640 username irannezhad 133640 mac 133640 bytes_out 0 133640 bytes_in 0 133640 station_ip 37.129.249.99 133640 port 290 133640 unique_id port 133640 remote_ip 10.8.0.182 133642 username irannezhad 133642 mac 133642 bytes_out 0 133642 bytes_in 0 133642 station_ip 37.129.249.99 133642 port 290 133642 unique_id port 133642 remote_ip 10.8.0.182 133644 username hamid 133644 kill_reason Relative expiration date has reached 133644 mac 133644 bytes_out 0 133644 bytes_in 0 133644 station_ip 37.129.70.116 133644 port 292 133644 unique_id port 133645 username irannezhad 133645 mac 133645 bytes_out 0 133645 bytes_in 0 133645 station_ip 37.129.249.99 133645 port 274 133645 unique_id port 133645 remote_ip 10.8.0.182 133646 username malekpoir 133646 mac 133646 bytes_out 0 133646 bytes_in 0 133646 station_ip 5.119.101.235 133646 port 296 133646 unique_id port 133648 username hamid 133648 kill_reason Relative expiration date has reached 133648 mac 133648 bytes_out 0 133648 bytes_in 0 133648 station_ip 37.129.70.116 133648 port 293 133648 unique_id port 133649 username barzegar 133649 mac 133649 bytes_out 0 133649 bytes_in 0 133649 station_ip 5.120.140.204 133649 port 293 133649 unique_id port 133649 remote_ip 10.8.0.234 133651 username vanila 133651 mac 133651 bytes_out 0 133651 bytes_in 0 133651 station_ip 83.122.45.56 133651 port 292 133651 unique_id port 133651 remote_ip 10.8.0.178 133653 username alihosseini1 133653 mac 133653 bytes_out 0 133653 bytes_in 0 133653 station_ip 5.120.188.135 133653 port 168 133653 unique_id port 133653 remote_ip 10.8.1.106 133655 username mosi 133655 mac 133655 bytes_out 163336 133632 username barzegar 133632 mac 133632 bytes_out 0 133632 bytes_in 0 133632 station_ip 5.120.140.204 133632 port 168 133632 unique_id port 133632 remote_ip 10.8.1.174 133636 username hamid 133636 kill_reason Relative expiration date has reached 133636 mac 133636 bytes_out 0 133636 bytes_in 0 133636 station_ip 37.129.70.116 133636 port 294 133636 unique_id port 133637 username mosi 133637 mac 133637 bytes_out 0 133637 bytes_in 0 133637 station_ip 37.156.156.157 133637 port 290 133637 unique_id port 133637 remote_ip 10.8.0.138 133639 username irannezhad 133639 mac 133639 bytes_out 0 133639 bytes_in 0 133639 station_ip 37.129.249.99 133639 port 290 133639 unique_id port 133639 remote_ip 10.8.0.182 133641 username sedighe 133641 mac 133641 bytes_out 0 133641 bytes_in 0 133641 station_ip 83.123.90.242 133641 port 292 133641 unique_id port 133641 remote_ip 10.8.0.146 133647 username irannezhad 133647 mac 133647 bytes_out 0 133647 bytes_in 0 133647 station_ip 37.129.249.99 133647 port 177 133647 unique_id port 133647 remote_ip 10.8.1.134 133650 username irannezhad 133650 mac 133650 bytes_out 16136 133650 bytes_in 25523 133650 station_ip 37.129.249.99 133650 port 177 133650 unique_id port 133650 remote_ip 10.8.1.134 133656 username farhad2 133656 mac 133656 bytes_out 0 133656 bytes_in 0 133656 station_ip 5.120.101.36 133656 port 176 133656 unique_id port 133656 remote_ip 10.8.1.222 133658 username mahdiyehalizadeh 133658 mac 133658 bytes_out 0 133658 bytes_in 0 133658 station_ip 83.122.125.67 133658 port 274 133658 unique_id port 133658 remote_ip 10.8.0.82 133660 username yahodi 133660 kill_reason Another user logged on this global unique id 133660 mac 133660 bytes_out 0 133660 bytes_in 0 133660 station_ip 113.203.107.168 133660 port 293 133660 unique_id port 133660 remote_ip 10.8.0.202 133662 username hamid 133662 kill_reason Relative expiration date has reached 133662 mac 133662 bytes_out 0 133662 bytes_in 0 133662 station_ip 83.123.116.47 133662 port 294 133662 unique_id port 133674 username kordestani 133674 mac 133674 bytes_out 1979698 133674 bytes_in 12867883 133674 station_ip 151.235.118.72 133674 port 292 133674 unique_id port 133674 remote_ip 10.8.0.134 133675 username yahodi 133675 mac 133675 bytes_out 0 133675 bytes_in 0 133675 station_ip 113.203.107.168 133675 port 293 133675 unique_id port 133677 username irannezhad 133677 mac 133677 bytes_out 0 133677 bytes_in 0 133677 station_ip 37.129.249.99 133677 port 177 133677 unique_id port 133677 remote_ip 10.8.1.134 133682 username irannezhad 133682 mac 133682 bytes_out 8972 133682 bytes_in 15232 133682 station_ip 37.129.249.99 133682 port 295 133682 unique_id port 133682 remote_ip 10.8.0.182 133684 username farhad2 133684 mac 133684 bytes_out 0 133684 bytes_in 0 133684 station_ip 5.120.68.175 133684 port 176 133684 unique_id port 133684 remote_ip 10.8.1.222 133685 username irannezhad 133685 mac 133685 bytes_out 0 133685 bytes_in 0 133685 station_ip 37.129.249.99 133685 port 295 133685 unique_id port 133685 remote_ip 10.8.0.182 133690 username irannezhad 133690 mac 133690 bytes_out 0 133690 bytes_in 0 133690 station_ip 37.129.249.99 133690 port 274 133690 unique_id port 133690 remote_ip 10.8.0.182 133694 username kamali2 133694 mac 133694 bytes_out 121290 133694 bytes_in 188208 133694 station_ip 5.119.74.214 133694 port 293 133694 unique_id port 133694 remote_ip 10.8.0.214 133698 username irannezhad 133655 bytes_in 236570 133655 station_ip 89.47.150.1 133655 port 294 133655 unique_id port 133655 remote_ip 10.8.0.138 133663 username hamid 133663 kill_reason Relative expiration date has reached 133663 mac 133663 bytes_out 0 133663 bytes_in 0 133663 station_ip 83.123.116.47 133663 port 294 133663 unique_id port 133664 username farhad2 133664 mac 133664 bytes_out 157839 133664 bytes_in 992219 133664 station_ip 5.120.101.36 133664 port 176 133664 unique_id port 133664 remote_ip 10.8.1.222 133665 username mahdiyehalizadeh 133665 mac 133665 bytes_out 0 133665 bytes_in 0 133665 station_ip 83.122.125.67 133665 port 274 133665 unique_id port 133665 remote_ip 10.8.0.82 133668 username farhad2 133668 mac 133668 bytes_out 386445 133668 bytes_in 664470 133668 station_ip 5.120.68.175 133668 port 180 133668 unique_id port 133668 remote_ip 10.8.1.222 133671 username godarzi 133671 kill_reason Another user logged on this global unique id 133671 mac 133671 bytes_out 0 133671 bytes_in 0 133671 station_ip 5.119.146.255 133671 port 282 133671 unique_id port 133671 remote_ip 10.8.0.174 133678 username barzegar 133678 mac 133678 bytes_out 0 133678 bytes_in 0 133678 station_ip 5.120.140.204 133678 port 295 133678 unique_id port 133678 remote_ip 10.8.0.234 133681 username barzegar 133681 mac 133681 bytes_out 0 133681 bytes_in 0 133681 station_ip 5.120.140.204 133681 port 180 133681 unique_id port 133681 remote_ip 10.8.1.174 133687 username irannezhad 133687 mac 133687 bytes_out 0 133687 bytes_in 0 133687 station_ip 37.129.249.99 133687 port 295 133687 unique_id port 133687 remote_ip 10.8.0.182 133693 username houshang 133693 mac 133693 bytes_out 0 133693 bytes_in 0 133693 station_ip 5.120.190.101 133693 port 296 133693 unique_id port 133693 remote_ip 10.8.0.22 133695 username irannezhad 133695 mac 133695 bytes_out 0 133695 bytes_in 0 133695 station_ip 37.129.249.99 133695 port 293 133695 unique_id port 133695 remote_ip 10.8.0.182 133696 username farhad2 133696 mac 133696 bytes_out 0 133696 bytes_in 0 133696 station_ip 5.120.68.175 133696 port 274 133696 unique_id port 133696 remote_ip 10.8.0.190 133703 username irannezhad 133703 mac 133703 bytes_out 0 133703 bytes_in 0 133703 station_ip 37.129.249.99 133703 port 274 133703 unique_id port 133703 remote_ip 10.8.0.182 133706 username irannezhad 133706 mac 133706 bytes_out 0 133706 bytes_in 0 133706 station_ip 37.129.249.99 133706 port 274 133706 unique_id port 133706 remote_ip 10.8.0.182 133714 username irannezhad 133714 mac 133714 bytes_out 0 133714 bytes_in 0 133714 station_ip 37.129.249.99 133714 port 286 133714 unique_id port 133714 remote_ip 10.8.0.182 133715 username irannezhad 133715 mac 133715 bytes_out 0 133715 bytes_in 0 133715 station_ip 37.129.249.99 133715 port 181 133715 unique_id port 133715 remote_ip 10.8.1.134 133719 username irannezhad 133719 mac 133719 bytes_out 0 133719 bytes_in 0 133719 station_ip 37.129.249.99 133719 port 290 133719 unique_id port 133719 remote_ip 10.8.0.182 133722 username irannezhad 133722 mac 133722 bytes_out 0 133722 bytes_in 0 133722 station_ip 37.129.249.99 133722 port 181 133722 unique_id port 133722 remote_ip 10.8.1.134 133723 username irannezhad 133723 mac 133723 bytes_out 0 133723 bytes_in 0 133723 station_ip 37.129.249.99 133723 port 290 133723 unique_id port 133723 remote_ip 10.8.0.182 133725 username godarzi 133725 mac 133725 bytes_out 0 133725 bytes_in 0 133659 kill_reason Relative expiration date has reached 133659 mac 133659 bytes_out 0 133659 bytes_in 0 133659 station_ip 83.123.116.47 133659 port 292 133659 unique_id port 133661 username hamid 133661 kill_reason Relative expiration date has reached 133661 mac 133661 bytes_out 0 133661 bytes_in 0 133661 station_ip 83.123.116.47 133661 port 294 133661 unique_id port 133666 username mohammadjavad 133666 mac 133666 bytes_out 122590 133666 bytes_in 295449 133666 station_ip 83.123.71.233 133666 port 286 133666 unique_id port 133666 remote_ip 10.8.0.142 133667 username mosi 70256 username arezoo 70256 kill_reason Another user logged on this global unique id 70256 mac 5.237.72.57:49948: Unknown host 70256 bytes_out 0 70256 bytes_in 0 70256 station_ip 5.237.72.57:49948 70256 port 1017 70256 unique_id port 133667 mac 133667 bytes_out 33679 133667 bytes_in 58007 133667 station_ip 89.47.150.1 133667 port 292 133667 unique_id port 133667 remote_ip 10.8.0.138 133669 username alireza 133669 unique_id port 133669 terminate_cause Lost-Carrier 133669 bytes_out 1634799 133669 bytes_in 41260349 133669 station_ip 5.120.92.76 133669 port 15730405 133669 nas_port_type Virtual 133669 remote_ip 5.5.5.109 133670 username mosi 133670 mac 133670 bytes_out 162957 133670 bytes_in 221431 133670 station_ip 151.235.64.50 133670 port 286 133670 unique_id port 133670 remote_ip 10.8.0.138 133672 username barzegar 133672 mac 133672 bytes_out 0 133672 bytes_in 0 133672 station_ip 5.120.140.204 133672 port 178 133672 unique_id port 133672 remote_ip 10.8.1.174 133673 username yahodi 133673 kill_reason Another user logged on this global unique id 133673 mac 133673 bytes_out 0 133673 bytes_in 0 133673 station_ip 113.203.107.168 133673 port 293 133673 unique_id port 133676 username morteza 133676 kill_reason Another user logged on this global unique id 133676 mac 133676 bytes_out 0 133676 bytes_in 0 133676 station_ip 113.203.79.164 133676 port 294 133676 unique_id port 133676 remote_ip 10.8.0.46 133679 username vanila 133679 mac 133679 bytes_out 0 133679 bytes_in 0 133679 station_ip 83.122.17.40 133679 port 293 133679 unique_id port 133679 remote_ip 10.8.0.178 133680 username mosi 133680 mac 133680 bytes_out 0 133680 bytes_in 0 133680 station_ip 151.235.64.50 133680 port 178 133680 unique_id port 133680 remote_ip 10.8.1.86 133683 username farhad2 133683 mac 133683 bytes_out 2198527 133683 bytes_in 20325675 133683 station_ip 5.120.68.175 133683 port 176 133683 unique_id port 133683 remote_ip 10.8.1.222 133686 username mohammadjavad 133686 mac 133686 bytes_out 86281 133686 bytes_in 170541 133686 station_ip 83.123.71.233 133686 port 274 70277 username arezoo 70277 kill_reason Maximum check online fails reached 70277 mac 5.237.91.127:49201: Unknown host 70277 bytes_out 0 70277 bytes_in 0 70277 station_ip 5.237.91.127:49201 70277 port 1017 70277 unique_id port 133686 unique_id port 133686 remote_ip 10.8.0.142 133688 username jafari 133688 kill_reason Another user logged on this global unique id 133688 mac 133688 bytes_out 0 133688 bytes_in 0 133688 station_ip 5.62.195.84 133688 port 286 133688 unique_id port 133688 remote_ip 10.8.0.242 133689 username aminvpn 133689 unique_id port 133689 terminate_cause Lost-Carrier 133689 bytes_out 1495168 133689 bytes_in 3705666 133689 station_ip 5.233.49.34 133689 port 15730406 133689 nas_port_type Virtual 133689 remote_ip 5.5.5.117 133691 username morteza 133691 kill_reason Another user logged on this global unique id 133691 mac 133691 bytes_out 0 133691 bytes_in 0 133691 station_ip 113.203.79.164 133691 port 294 133691 unique_id port 133692 username irannezhad 133692 mac 133692 bytes_out 0 133692 bytes_in 0 133692 station_ip 37.129.249.99 133692 port 176 133692 unique_id port 133692 remote_ip 10.8.1.134 133697 username barzegar 133697 mac 133697 bytes_out 2745 133697 bytes_in 5166 133697 station_ip 5.120.140.204 133697 port 176 133697 unique_id port 133697 remote_ip 10.8.1.174 133700 username irannezhad 133700 mac 133700 bytes_out 0 133700 bytes_in 0 133700 station_ip 37.129.249.99 133700 port 293 133700 unique_id port 133700 remote_ip 10.8.0.182 133704 username saeed9658 133704 mac 133704 bytes_out 12092 133704 bytes_in 46610 133704 station_ip 5.119.170.229 133704 port 180 133704 unique_id port 133704 remote_ip 10.8.1.210 133708 username barzegar 133708 mac 133708 bytes_out 0 133708 bytes_in 0 133708 station_ip 5.120.140.204 133708 port 293 133708 unique_id port 133708 remote_ip 10.8.0.234 133710 username barzegar 133710 mac 133710 bytes_out 0 133710 bytes_in 0 133710 station_ip 5.120.140.204 133710 port 274 133710 unique_id port 133710 remote_ip 10.8.0.234 133712 username yarmohamadi 133712 kill_reason Another user logged on this global unique id 133712 mac 133712 bytes_out 0 133712 bytes_in 0 133712 station_ip 5.119.252.152 133712 port 178 133712 unique_id port 133712 remote_ip 10.8.1.234 133716 username irannezhad 133716 mac 133716 bytes_out 0 133716 bytes_in 0 133716 station_ip 37.129.249.99 133716 port 181 133716 unique_id port 133716 remote_ip 10.8.1.134 133720 username irannezhad 133720 mac 133720 bytes_out 0 133720 bytes_in 0 133720 station_ip 37.129.249.99 133720 port 290 133720 unique_id port 133720 remote_ip 10.8.0.182 133724 username irannezhad 133724 mac 133724 bytes_out 0 133724 bytes_in 0 133724 station_ip 37.129.249.99 133724 port 290 133724 unique_id port 133724 remote_ip 10.8.0.182 133730 username sabaghnezhad 133730 mac 133730 bytes_out 1643270 133730 bytes_in 6190289 133730 station_ip 83.122.198.110 133730 port 259 133730 unique_id port 133730 remote_ip 10.8.0.186 133738 username milan 133738 kill_reason Another user logged on this global unique id 133738 mac 133738 bytes_out 0 133738 bytes_in 0 133738 station_ip 5.119.229.52 133738 port 274 133738 unique_id port 133738 remote_ip 10.8.0.218 133739 username irannezhad 133739 mac 133739 bytes_out 0 133739 bytes_in 0 133739 station_ip 37.129.249.99 133739 port 282 133739 unique_id port 133739 remote_ip 10.8.0.182 133742 username farhad2 133742 mac 133742 bytes_out 0 133742 bytes_in 0 133742 station_ip 5.120.68.175 133742 port 168 133742 unique_id port 133742 remote_ip 10.8.1.222 133745 username milan 133745 kill_reason Another user logged on this global unique id 133745 mac 133745 bytes_out 0 133745 bytes_in 0 133745 station_ip 5.119.229.52 133745 port 274 133745 unique_id port 133750 username alihosseini1 133750 mac 133750 bytes_out 10053 133750 bytes_in 18539 133750 station_ip 5.119.104.211 133750 port 290 133750 unique_id port 133750 remote_ip 10.8.0.166 133754 username barzegar 133754 mac 133754 bytes_out 0 133754 bytes_in 0 133754 station_ip 5.120.140.204 133754 port 176 133754 unique_id port 133754 remote_ip 10.8.1.174 133759 username moradi 133737 remote_ip 10.8.0.182 133759 kill_reason Another user logged on this global unique id 133759 mac 133759 bytes_out 0 133759 bytes_in 0 133759 station_ip 46.225.210.240 133759 port 259 133759 unique_id port 133759 remote_ip 10.8.0.250 133760 username vanila 133760 mac 133760 bytes_out 0 133760 bytes_in 0 133760 station_ip 83.122.17.40 133698 mac 133698 bytes_out 0 133698 bytes_in 0 133698 station_ip 37.129.249.99 133698 port 176 133698 unique_id port 133698 remote_ip 10.8.1.134 133699 username irannezhad 133699 mac 133699 bytes_out 0 133699 bytes_in 0 133699 station_ip 37.129.249.99 133699 port 180 133699 unique_id port 133699 remote_ip 10.8.1.134 133701 username irannezhad 133701 mac 133701 bytes_out 0 133701 bytes_in 0 133701 station_ip 37.129.249.99 133701 port 293 133701 unique_id port 133701 remote_ip 10.8.0.182 133702 username barzegar 133702 mac 133702 bytes_out 661282 133702 bytes_in 375016 133702 station_ip 5.120.140.204 133702 port 274 133702 unique_id port 133702 remote_ip 10.8.0.234 133705 username barzegar 133705 mac 133705 bytes_out 0 133705 bytes_in 0 133705 station_ip 5.120.140.204 133705 port 293 133705 unique_id port 133705 remote_ip 10.8.0.234 133707 username jafari 133707 mac 133707 bytes_out 0 133707 bytes_in 0 133707 station_ip 5.62.195.84 133707 port 286 133707 unique_id port 133709 username farhad2 133709 mac 133709 bytes_out 0 133709 bytes_in 0 133709 station_ip 5.120.68.175 133709 port 176 133709 unique_id port 133709 remote_ip 10.8.1.222 133711 username moradi 133711 mac 133711 bytes_out 965903 133711 bytes_in 681475 133711 station_ip 46.225.210.240 133711 port 290 133711 unique_id port 133711 remote_ip 10.8.0.250 133713 username irannezhad 133713 mac 133713 bytes_out 0 133713 bytes_in 0 133713 station_ip 37.129.249.99 133713 port 286 133713 unique_id port 133713 remote_ip 10.8.0.182 133717 username irannezhad 133717 mac 133717 bytes_out 0 133717 bytes_in 0 133717 station_ip 37.129.249.99 133717 port 181 133717 unique_id port 133717 remote_ip 10.8.1.134 133718 username irannezhad 133718 kill_reason Maximum check online fails reached 133718 mac 133718 bytes_out 0 133718 bytes_in 0 133718 station_ip 37.129.249.99 133718 port 180 133718 unique_id port 133721 username irannezhad 133721 mac 133721 bytes_out 0 133721 bytes_in 0 133721 station_ip 37.129.249.99 133721 port 181 133721 unique_id port 133721 remote_ip 10.8.1.134 133727 username vanila 133727 mac 133727 bytes_out 3577083 133727 bytes_in 29282070 133727 station_ip 83.122.17.40 133727 port 286 133727 unique_id port 133727 remote_ip 10.8.0.178 133729 username hamid 133729 kill_reason Relative expiration date has reached 133729 mac 133729 bytes_out 0 133729 bytes_in 0 133729 station_ip 37.129.180.233 133729 port 290 133729 unique_id port 133732 username irannezhad 133732 mac 133732 bytes_out 0 133732 bytes_in 0 133732 station_ip 37.129.249.99 133732 port 181 133732 unique_id port 133732 remote_ip 10.8.1.134 133733 username alihosseini1 133733 mac 133733 bytes_out 0 133733 bytes_in 0 133733 station_ip 5.120.188.135 133733 port 168 133733 unique_id port 133733 remote_ip 10.8.1.106 133735 username farhad2 133735 mac 133735 bytes_out 0 133735 bytes_in 0 133735 station_ip 5.120.68.175 133735 port 176 133735 unique_id port 133735 remote_ip 10.8.1.222 133737 username irannezhad 133737 mac 133737 bytes_out 0 133737 bytes_in 0 133737 station_ip 37.129.249.99 133737 port 282 133737 unique_id port 133741 username aminvpn 133741 mac 133741 bytes_out 3696331 133741 bytes_in 48482592 133741 station_ip 5.120.72.205 133741 port 289 133741 unique_id port 133741 remote_ip 10.8.0.14 133747 username irannezhad 133747 mac 133747 bytes_out 0 133747 bytes_in 0 133725 station_ip 5.119.146.255 133725 port 282 133725 unique_id port 133726 username irannezhad 133726 mac 133726 bytes_out 0 133726 bytes_in 0 133726 station_ip 37.129.249.99 133726 port 282 133726 unique_id port 133726 remote_ip 10.8.0.182 133728 username irannezhad 133728 mac 133728 bytes_out 0 133728 bytes_in 0 133728 station_ip 37.129.249.99 133728 port 181 133728 unique_id port 133728 remote_ip 10.8.1.134 133731 username barzegar 133731 mac 133731 bytes_out 0 133731 bytes_in 0 133731 station_ip 5.120.140.204 133731 port 282 133731 unique_id port 133731 remote_ip 10.8.0.234 133734 username irannezhad 133734 mac 133734 bytes_out 0 133734 bytes_in 0 133734 station_ip 37.129.249.99 133734 port 181 133734 unique_id port 133734 remote_ip 10.8.1.134 133736 username hamid.e 133736 unique_id port 133736 terminate_cause User-Request 133736 bytes_out 18055278 133736 bytes_in 140645518 133736 station_ip 188.245.88.182 133736 port 15730397 133736 nas_port_type Virtual 133736 remote_ip 5.5.5.132 133740 username farhad2 133740 mac 133740 bytes_out 0 133740 bytes_in 0 133740 station_ip 5.120.68.175 133740 port 168 133740 unique_id port 133740 remote_ip 10.8.1.222 133743 username mostafa_es78 133743 unique_id port 133743 terminate_cause User-Request 133743 bytes_out 3001229 133743 bytes_in 64367293 133743 station_ip 5.119.118.250 133743 port 15730410 133743 nas_port_type Virtual 133743 remote_ip 5.5.5.162 133744 username vanila 133744 mac 133744 bytes_out 8020651 133744 bytes_in 1283852 133744 station_ip 83.122.17.40 133744 port 293 133744 unique_id port 133744 remote_ip 10.8.0.178 133746 username barzegar 133746 mac 133746 bytes_out 0 133746 bytes_in 0 133746 station_ip 5.120.140.204 133746 port 295 133746 unique_id port 133746 remote_ip 10.8.0.234 133748 username vanila 133748 mac 133748 bytes_out 5973052 133748 bytes_in 1302147 133748 station_ip 83.122.17.40 133748 port 293 133748 unique_id port 133748 remote_ip 10.8.0.178 133751 username milan 133751 kill_reason Another user logged on this global unique id 133751 mac 133751 bytes_out 0 133751 bytes_in 0 133751 station_ip 5.119.229.52 133751 port 274 133751 unique_id port 133752 username irannezhad 133752 mac 133752 bytes_out 60025 133752 bytes_in 72878 133752 station_ip 37.129.249.99 133752 port 168 133752 unique_id port 133752 remote_ip 10.8.1.134 133755 username irannezhad 133755 mac 133755 bytes_out 0 133755 bytes_in 0 133755 station_ip 37.129.249.99 133755 port 168 133755 unique_id port 133755 remote_ip 10.8.1.134 133761 username irannezhad 133761 mac 133761 bytes_out 0 133761 bytes_in 0 133761 station_ip 37.129.249.99 133761 port 290 133761 unique_id port 133761 remote_ip 10.8.0.182 133767 username alikomsari 133767 kill_reason Maximum number of concurrent logins reached 133767 mac 133767 bytes_out 0 133767 bytes_in 0 133767 station_ip 5.120.136.35 133767 port 289 133767 unique_id port 133770 username alikomsari 133770 mac 133770 bytes_out 0 133770 bytes_in 0 133770 station_ip 5.120.136.35 133770 port 290 133770 unique_id port 133770 remote_ip 10.8.0.70 133771 username mostafa_es78 133771 unique_id port 133771 terminate_cause User-Request 133771 bytes_out 736141 133771 bytes_in 4587668 133771 station_ip 5.119.118.250 133771 port 15730414 133771 nas_port_type Virtual 133771 remote_ip 5.5.5.65 133773 username alikomsari 133773 kill_reason Maximum number of concurrent logins reached 133773 mac 133773 bytes_out 0 133773 bytes_in 0 133773 station_ip 5.120.136.35 133773 port 290 133773 unique_id port 133747 station_ip 37.129.249.99 133747 port 282 133747 unique_id port 133747 remote_ip 10.8.0.182 133749 username yahodi 133749 mac 133749 bytes_out 0 133749 bytes_in 0 133749 station_ip 113.203.47.240 133749 port 286 133749 unique_id port 133749 remote_ip 10.8.0.202 133753 username irannezhad 133753 mac 133753 bytes_out 0 133753 bytes_in 0 133753 station_ip 37.129.249.99 133753 port 290 133753 unique_id port 133753 remote_ip 10.8.0.182 133756 username jamali 133756 kill_reason Another user logged on this global unique id 133756 mac 133756 bytes_out 0 133756 bytes_in 0 133756 station_ip 5.119.80.43 133756 port 279 133756 unique_id port 133757 username irannezhad 133757 mac 133757 bytes_out 0 133757 bytes_in 0 133757 station_ip 37.129.249.99 133757 port 290 133757 unique_id port 133757 remote_ip 10.8.0.182 133758 username alikomsari 133758 unique_id port 133758 terminate_cause User-Request 133758 bytes_out 913710 133758 bytes_in 8948928 133758 station_ip 5.120.136.35 133758 port 15730413 133758 nas_port_type Virtual 133758 remote_ip 5.5.5.64 70343 username arezoo 70343 kill_reason Maximum check online fails reached 70343 mac 5.237.91.127:49221: Unknown host 70343 bytes_out 0 70343 bytes_in 0 70343 station_ip 5.237.91.127:49221 70343 port 1017 70343 unique_id port 133762 username alikomsari 133762 mac 133762 bytes_out 0 133762 bytes_in 0 133762 station_ip 5.120.136.35 133762 port 295 133762 unique_id port 133762 remote_ip 10.8.0.70 133765 username alikomsari 133765 kill_reason Maximum number of concurrent logins reached 133765 mac 133765 bytes_out 0 133765 bytes_in 0 133765 station_ip 5.120.136.35 133765 port 295 133765 unique_id port 133766 username farhad2 133766 mac 133766 bytes_out 0 133766 bytes_in 0 133766 station_ip 5.120.68.175 133766 port 289 133766 unique_id port 133766 remote_ip 10.8.0.190 133769 username alikomsari 133769 kill_reason Maximum number of concurrent logins reached 133769 mac 133769 bytes_out 0 133769 bytes_in 0 133769 station_ip 5.120.136.35 133769 port 289 133769 unique_id port 133772 username irannezhad 133772 mac 133772 bytes_out 0 133772 bytes_in 0 133772 station_ip 37.129.249.99 133772 port 176 133772 unique_id port 133772 remote_ip 10.8.1.134 133775 username alikomsari 133775 kill_reason Maximum number of concurrent logins reached 133775 mac 133775 bytes_out 0 133775 bytes_in 0 133775 station_ip 5.120.136.35 133775 port 290 133775 unique_id port 70352 username arezoo 70352 kill_reason Maximum check online fails reached 70352 mac 5.237.68.216:49228: Unknown host 70352 bytes_out 0 70352 bytes_in 0 70352 station_ip 5.237.68.216:49228 70352 port 1017 70352 unique_id port 133776 username alikomsari 133776 kill_reason Maximum number of concurrent logins reached 133776 mac 133776 bytes_out 0 133776 bytes_in 0 133776 station_ip 5.120.136.35 133776 port 290 133776 unique_id port 133778 username alikomsari 133778 kill_reason Maximum number of concurrent logins reached 133778 mac 133778 bytes_out 0 133778 bytes_in 0 133778 station_ip 5.120.136.35 133778 port 290 133778 unique_id port 133779 username alikomsari 133779 kill_reason Maximum number of concurrent logins reached 133779 mac 133779 bytes_out 0 133779 bytes_in 0 133779 station_ip 5.120.136.35 133779 port 296 133779 unique_id port 133781 username alikomsari 133781 mac 133781 bytes_out 40707 133781 bytes_in 84391 133781 station_ip 5.120.136.35 133781 port 289 133781 unique_id port 133781 remote_ip 10.8.0.70 133782 username irannezhad 133782 mac 133782 bytes_out 0 133782 bytes_in 0 133782 station_ip 37.129.249.99 133782 port 296 133782 unique_id port 133760 port 282 133760 unique_id port 133760 remote_ip 10.8.0.178 133763 username irannezhad 133763 mac 133763 bytes_out 0 133763 bytes_in 0 133763 station_ip 37.129.249.99 133763 port 168 133763 unique_id port 133763 remote_ip 10.8.1.134 133764 username mahdixz 133764 unique_id port 133764 terminate_cause Lost-Carrier 133764 bytes_out 12778101 133764 bytes_in 494804266 133764 station_ip 151.235.94.14 133764 port 15730403 133764 nas_port_type Virtual 133764 remote_ip 5.5.5.103 133768 username alikomsari 133768 kill_reason Maximum number of concurrent logins reached 133768 mac 133768 bytes_out 0 133768 bytes_in 0 133768 station_ip 5.120.136.35 133768 port 289 133768 unique_id port 133774 username alikomsari 133774 kill_reason Maximum number of concurrent logins reached 133774 mac 133774 bytes_out 0 133774 bytes_in 0 133774 station_ip 5.120.136.35 133774 port 290 133774 unique_id port 133777 username barzegar 133777 mac 133777 bytes_out 0 133777 bytes_in 0 133777 station_ip 5.120.140.204 133777 port 168 133777 unique_id port 133777 remote_ip 10.8.1.174 133784 username barzegar 133784 mac 133784 bytes_out 0 133784 bytes_in 0 133784 station_ip 5.120.140.204 133784 port 168 133784 unique_id port 133784 remote_ip 10.8.1.174 133785 username barzegar 133785 mac 133785 bytes_out 0 133785 bytes_in 0 133785 station_ip 5.120.140.204 133785 port 168 133785 unique_id port 133785 remote_ip 10.8.1.174 133788 username irannezhad 133788 mac 133788 bytes_out 0 133788 bytes_in 0 133788 station_ip 37.129.249.99 133788 port 168 133788 unique_id port 133788 remote_ip 10.8.1.134 133793 username morteza 133793 mac 133793 bytes_out 0 133793 bytes_in 0 133793 station_ip 113.203.79.164 133793 port 294 133793 unique_id port 133796 username irannezhad 133796 mac 133796 bytes_out 0 133796 bytes_in 0 133796 station_ip 37.129.249.99 133796 port 168 133796 unique_id port 133796 remote_ip 10.8.1.134 133800 username milan 133800 mac 133800 bytes_out 0 133800 bytes_in 0 133800 station_ip 5.119.229.52 133800 port 274 133800 unique_id port 133806 username yarmohamadi 133806 mac 133806 bytes_out 0 133806 bytes_in 0 133806 station_ip 5.119.140.9 133806 port 168 133806 unique_id port 133806 remote_ip 10.8.1.234 133813 username barzegar 133813 mac 133813 bytes_out 0 133813 bytes_in 0 133813 station_ip 5.120.140.204 133813 port 168 133813 unique_id port 133813 remote_ip 10.8.1.174 133815 username irannezhad 133815 mac 133815 bytes_out 0 133815 bytes_in 0 133815 station_ip 37.129.249.99 133815 port 282 133815 unique_id port 133815 remote_ip 10.8.0.182 133816 username barzegar 133816 mac 133816 bytes_out 0 133816 bytes_in 0 133816 station_ip 5.120.140.204 133816 port 168 133816 unique_id port 133816 remote_ip 10.8.1.174 133821 username farhad2 133821 mac 133821 bytes_out 3213817 133821 bytes_in 14628351 133821 station_ip 5.120.176.55 133821 port 295 133821 unique_id port 133821 remote_ip 10.8.0.190 133822 username hamid 133822 kill_reason Relative expiration date has reached 133822 mac 133822 bytes_out 0 133822 bytes_in 0 133822 station_ip 37.129.96.98 133822 port 290 133822 unique_id port 133823 username irannezhad 133823 kill_reason Maximum check online fails reached 133823 mac 133823 bytes_out 0 133823 bytes_in 0 133823 station_ip 37.129.249.99 133823 port 168 133823 unique_id port 133826 username irannezhad 133826 mac 133826 bytes_out 0 133826 bytes_in 0 133826 station_ip 37.129.249.99 133826 port 178 133826 unique_id port 133780 username irannezhad 133780 mac 133780 bytes_out 0 133780 bytes_in 0 133780 station_ip 37.129.249.99 133780 port 168 133780 unique_id port 133780 remote_ip 10.8.1.134 133783 username irannezhad 133783 mac 133783 bytes_out 0 133783 bytes_in 0 133783 station_ip 37.129.249.99 133783 port 168 133783 unique_id port 133783 remote_ip 10.8.1.134 133786 username vanila 133786 mac 133786 bytes_out 9677523 133786 bytes_in 8917459 133786 station_ip 83.122.17.40 133786 port 282 133786 unique_id port 133786 remote_ip 10.8.0.178 133790 username godarzi 133790 mac 133790 bytes_out 567083 133790 bytes_in 6934641 133790 station_ip 5.119.146.255 133790 port 290 133790 unique_id port 133790 remote_ip 10.8.0.174 133794 username irannezhad 133794 mac 133794 bytes_out 0 133794 bytes_in 0 133794 station_ip 37.129.249.99 133794 port 168 133794 unique_id port 133794 remote_ip 10.8.1.134 133795 username barzegar 133795 mac 133795 bytes_out 0 133795 bytes_in 0 133795 station_ip 5.120.140.204 133795 port 168 133795 unique_id port 133795 remote_ip 10.8.1.174 133797 username milan 133797 kill_reason Another user logged on this global unique id 133797 mac 133797 bytes_out 0 133797 bytes_in 0 133797 station_ip 5.119.229.52 133797 port 274 133797 unique_id port 133798 username aminvpn 133798 mac 133798 bytes_out 743398 133798 bytes_in 8949192 133798 station_ip 151.238.248.205 133798 port 286 133798 unique_id port 133798 remote_ip 10.8.0.14 133802 username irannezhad 133802 mac 133802 bytes_out 0 133802 bytes_in 0 133802 station_ip 37.129.249.99 133802 port 176 133802 unique_id port 133802 remote_ip 10.8.1.134 133803 username irannezhad 133803 mac 133803 bytes_out 0 133803 bytes_in 0 133803 station_ip 37.129.249.99 133803 port 274 133803 unique_id port 133803 remote_ip 10.8.0.182 133805 username irannezhad 133805 mac 133805 bytes_out 0 133805 bytes_in 0 133805 station_ip 37.129.249.99 133805 port 274 133805 unique_id port 133805 remote_ip 10.8.0.182 133807 username jafari 133807 kill_reason Another user logged on this global unique id 133807 mac 133807 bytes_out 0 133807 bytes_in 0 133807 station_ip 93.114.27.43 133807 port 293 133807 unique_id port 133809 username irannezhad 133809 mac 133809 bytes_out 0 133809 bytes_in 0 133809 station_ip 37.129.249.99 133809 port 168 133809 unique_id port 133809 remote_ip 10.8.1.134 133810 username moradi 133810 kill_reason Another user logged on this global unique id 133810 mac 133810 bytes_out 0 133810 bytes_in 0 133810 station_ip 46.225.210.240 133810 port 259 133810 unique_id port 133811 username irannezhad 133811 mac 133811 bytes_out 0 133811 bytes_in 0 133811 station_ip 37.129.249.99 133811 port 168 133811 unique_id port 133811 remote_ip 10.8.1.134 133812 username irannezhad 133812 mac 133812 bytes_out 0 133812 bytes_in 0 133812 station_ip 37.129.249.99 133812 port 176 133812 unique_id port 133812 remote_ip 10.8.1.134 133818 username alikomsari 133818 kill_reason Another user logged on this global unique id 133818 mac 133818 bytes_out 0 133818 bytes_in 0 133818 station_ip 5.120.136.35 133818 port 289 133818 unique_id port 133818 remote_ip 10.8.0.70 133824 username godarzi 133824 mac 133824 bytes_out 210547 133824 bytes_in 1997244 133824 station_ip 5.119.146.255 133824 port 282 133824 unique_id port 133824 remote_ip 10.8.0.174 133833 username farhad2 133833 mac 133833 bytes_out 0 133833 bytes_in 0 133833 station_ip 5.119.80.8 133833 port 282 133833 unique_id port 133782 remote_ip 10.8.0.182 133787 username jafari 133787 kill_reason Another user logged on this global unique id 133787 mac 133787 bytes_out 0 133787 bytes_in 0 133787 station_ip 93.114.27.43 133787 port 293 133787 unique_id port 133787 remote_ip 10.8.0.242 133789 username irannezhad 133789 mac 133789 bytes_out 0 133789 bytes_in 0 133789 station_ip 37.129.249.99 133789 port 282 133789 unique_id port 133789 remote_ip 10.8.0.182 133791 username irannezhad 133791 mac 133791 bytes_out 0 133791 bytes_in 0 133791 station_ip 37.129.249.99 133791 port 282 133791 unique_id port 133791 remote_ip 10.8.0.182 133792 username irannezhad 133792 mac 133792 bytes_out 0 133792 bytes_in 0 133792 station_ip 37.129.249.99 133792 port 168 133792 unique_id port 133792 remote_ip 10.8.1.134 133799 username barzegar 133799 mac 133799 bytes_out 0 133799 bytes_in 0 133799 station_ip 5.120.140.204 133799 port 168 133799 unique_id port 133799 remote_ip 10.8.1.174 133801 username yarmohamadi 133801 mac 133801 bytes_out 0 133801 bytes_in 0 133801 station_ip 5.119.252.152 133801 port 178 133801 unique_id port 133804 username irannezhad 133804 mac 133804 bytes_out 0 133804 bytes_in 0 133804 station_ip 37.129.249.99 133804 port 274 133804 unique_id port 133804 remote_ip 10.8.0.182 133808 username barzegar 133808 mac 133808 bytes_out 0 133808 bytes_in 0 133808 station_ip 5.120.140.204 133808 port 168 133808 unique_id port 133808 remote_ip 10.8.1.174 133814 username godarzi 133814 mac 133814 bytes_out 0 133814 bytes_in 0 133814 station_ip 5.119.146.255 133814 port 282 133814 unique_id port 133814 remote_ip 10.8.0.174 133817 username irannezhad 133817 mac 133817 bytes_out 0 133817 bytes_in 0 133817 station_ip 37.129.249.99 133817 port 282 133817 unique_id port 133817 remote_ip 10.8.0.182 133819 username zotaher 133819 kill_reason Another user logged on this global unique id 133819 mac 133819 bytes_out 0 133819 bytes_in 0 133819 station_ip 83.123.250.158 133819 port 265 133819 unique_id port 133819 remote_ip 10.8.0.194 133820 username irannezhad 133820 mac 133820 bytes_out 0 133820 bytes_in 0 133820 station_ip 37.129.249.99 133820 port 282 133820 unique_id port 133820 remote_ip 10.8.0.182 133825 username barzegar 133825 mac 133825 bytes_out 2530 133825 bytes_in 4929 133825 station_ip 5.120.140.204 133825 port 176 133825 unique_id port 133825 remote_ip 10.8.1.174 133827 username jafari 133827 kill_reason Another user logged on this global unique id 133827 mac 133827 bytes_out 0 133827 bytes_in 0 133827 station_ip 93.114.27.43 133827 port 293 133827 unique_id port 133828 username irannezhad 133828 mac 133828 bytes_out 0 133828 bytes_in 0 133828 station_ip 37.129.249.99 133828 port 176 133828 unique_id port 133828 remote_ip 10.8.1.134 133829 username farhad2 133829 mac 133829 bytes_out 228413 133829 bytes_in 361347 133829 station_ip 5.119.80.8 133829 port 282 133829 unique_id port 133829 remote_ip 10.8.0.190 133830 username irannezhad 133830 mac 133830 bytes_out 0 133830 bytes_in 0 133830 station_ip 37.129.249.99 133830 port 294 133830 unique_id port 133830 remote_ip 10.8.0.182 133832 username alikomsari 133832 kill_reason Another user logged on this global unique id 133832 mac 133832 bytes_out 0 133832 bytes_in 0 133832 station_ip 5.120.136.35 133832 port 289 133832 unique_id port 133840 username vanila 133840 mac 133840 bytes_out 12789222 133840 bytes_in 4283839 133840 station_ip 83.122.17.40 133840 port 274 133826 remote_ip 10.8.1.134 133831 username jafari 133831 mac 133831 bytes_out 0 133831 bytes_in 0 133831 station_ip 93.114.27.43 133831 port 293 133831 unique_id port 133834 username mohammadjavad 133834 mac 133834 bytes_out 0 133834 bytes_in 0 133834 station_ip 37.129.167.13 133834 port 295 133834 unique_id port 133834 remote_ip 10.8.0.142 133838 username irannezhad 133838 mac 133838 bytes_out 0 133838 bytes_in 0 133838 station_ip 37.129.249.99 133838 port 178 133838 unique_id port 133838 remote_ip 10.8.1.134 133846 username irannezhad 133846 mac 133846 bytes_out 0 133846 bytes_in 0 133846 station_ip 37.129.249.99 133846 port 178 133846 unique_id port 133846 remote_ip 10.8.1.134 133847 username irannezhad 133847 mac 133847 bytes_out 0 133847 bytes_in 0 133847 station_ip 37.129.249.99 133847 port 289 133847 unique_id port 133847 remote_ip 10.8.0.182 133851 username irannezhad 133851 mac 133851 bytes_out 0 133851 bytes_in 0 133851 station_ip 37.129.249.99 133851 port 290 133851 unique_id port 133851 remote_ip 10.8.0.182 133855 username godarzi 133855 mac 133855 bytes_out 0 133855 bytes_in 0 133855 station_ip 5.119.146.255 133855 port 290 133855 unique_id port 133855 remote_ip 10.8.0.174 133858 username mosi 133858 kill_reason Another user logged on this global unique id 133858 mac 133858 bytes_out 0 133858 bytes_in 0 133858 station_ip 151.235.64.171 133858 port 177 133858 unique_id port 133858 remote_ip 10.8.1.86 133860 username hamidsalari1 133860 mac 133860 bytes_out 103481 133860 bytes_in 229680 133860 station_ip 37.129.78.147 133860 port 276 133860 unique_id port 133860 remote_ip 10.8.0.226 133862 username zotaher 133862 kill_reason Another user logged on this global unique id 133862 mac 133862 bytes_out 0 133862 bytes_in 0 133862 station_ip 83.123.250.158 133862 port 265 133862 unique_id port 133863 username moradi 133863 mac 133863 bytes_out 0 133863 bytes_in 0 133863 station_ip 46.225.210.240 133863 port 259 133863 unique_id port 133864 username mahdixz 133864 unique_id port 133864 terminate_cause Lost-Carrier 133864 bytes_out 121058 133864 bytes_in 107993 133864 station_ip 151.235.94.14 133864 port 15730421 133864 nas_port_type Virtual 133864 remote_ip 5.5.5.86 133870 username malekpoir 133870 mac 133870 bytes_out 0 133870 bytes_in 0 133870 station_ip 5.119.101.235 133870 port 292 133870 unique_id port 133870 remote_ip 10.8.0.58 133873 username morteza 133873 mac 133873 bytes_out 1215429 133873 bytes_in 19692073 133873 station_ip 83.122.58.84 133873 port 276 133873 unique_id port 133873 remote_ip 10.8.0.46 133876 username vanila 133876 mac 133876 bytes_out 0 133876 bytes_in 0 133876 station_ip 83.122.17.40 133876 port 282 133876 unique_id port 133876 remote_ip 10.8.0.178 133883 username barzegar 133883 mac 133883 bytes_out 37357 133883 bytes_in 88152 133883 station_ip 5.120.140.204 133883 port 289 133883 unique_id port 133883 remote_ip 10.8.0.234 133885 username jafari 133885 kill_reason Another user logged on this global unique id 133885 mac 133885 bytes_out 0 133885 bytes_in 0 133885 station_ip 5.134.155.126 133885 port 259 133885 unique_id port 133887 username barzegar 133887 mac 133887 bytes_out 0 133887 bytes_in 0 133887 station_ip 5.120.140.204 133887 port 289 133887 unique_id port 133887 remote_ip 10.8.0.234 133888 username sekonji3 133888 mac 133888 bytes_out 360488 133888 bytes_in 5761668 133888 station_ip 83.123.151.96 133888 port 282 133888 unique_id port 133833 remote_ip 10.8.0.190 133835 username irannezhad 133835 mac 133835 bytes_out 2979 133835 bytes_in 5392 133835 station_ip 37.129.249.99 133835 port 293 133835 unique_id port 133835 remote_ip 10.8.0.182 133836 username irannezhad 133836 mac 133836 bytes_out 0 133836 bytes_in 0 133836 station_ip 37.129.249.99 133836 port 178 133836 unique_id port 133836 remote_ip 10.8.1.134 133837 username mirzaei 133837 mac 133837 bytes_out 3704551 133837 bytes_in 26243213 133837 station_ip 5.119.152.216 133837 port 287 133837 unique_id port 133837 remote_ip 10.8.0.66 133839 username alikomsari 133839 mac 133839 bytes_out 0 133839 bytes_in 0 133839 station_ip 5.120.136.35 133839 port 289 133839 unique_id port 133841 username irannezhad 133841 mac 133841 bytes_out 0 133841 bytes_in 0 133841 station_ip 37.129.249.99 133841 port 178 133841 unique_id port 133841 remote_ip 10.8.1.134 133842 username barzegar 133842 mac 133842 bytes_out 0 133842 bytes_in 0 133842 station_ip 5.120.140.204 133842 port 178 133842 unique_id port 133842 remote_ip 10.8.1.174 133844 username irannezhad 133844 mac 133844 bytes_out 0 133844 bytes_in 0 133844 station_ip 37.129.249.99 133844 port 286 133844 unique_id port 133844 remote_ip 10.8.0.182 133848 username yahodi 133848 kill_reason Another user logged on this global unique id 133848 mac 133848 bytes_out 0 133848 bytes_in 0 133848 station_ip 37.129.67.75 133848 port 282 133848 unique_id port 133848 remote_ip 10.8.0.202 133849 username aminvpn 133849 unique_id port 133849 terminate_cause User-Request 133849 bytes_out 752854 133849 bytes_in 4936852 133849 station_ip 151.238.248.205 133849 port 15730416 133849 nas_port_type Virtual 133849 remote_ip 5.5.5.74 133852 username zotaher 133852 kill_reason Another user logged on this global unique id 133852 mac 133852 bytes_out 0 133852 bytes_in 0 133852 station_ip 83.123.250.158 133852 port 265 133852 unique_id port 133853 username irannezhad 133853 mac 133853 bytes_out 0 133853 bytes_in 0 133853 station_ip 37.129.249.99 133853 port 290 133853 unique_id port 133853 remote_ip 10.8.0.182 133854 username morteza 133854 mac 133854 bytes_out 0 133854 bytes_in 0 133854 station_ip 83.122.58.84 133854 port 287 133854 unique_id port 133857 username mehdizare 133857 mac 133857 bytes_out 0 133857 bytes_in 0 133857 station_ip 5.120.148.206 133857 port 276 133857 unique_id port 133857 remote_ip 10.8.0.90 133861 username yahodi 133861 mac 133861 bytes_out 0 133861 bytes_in 0 133861 station_ip 37.129.67.75 133861 port 282 133861 unique_id port 133865 username vanila 133865 mac 133865 bytes_out 9115999 133865 bytes_in 2104588 133865 station_ip 83.122.17.40 133865 port 289 133865 unique_id port 133865 remote_ip 10.8.0.178 133868 username barzegar 133868 mac 133868 bytes_out 0 133868 bytes_in 0 133868 station_ip 5.120.140.204 133868 port 178 133868 unique_id port 133868 remote_ip 10.8.1.174 133869 username farhad2 133869 mac 133869 bytes_out 0 133869 bytes_in 0 133869 station_ip 5.119.80.8 133869 port 176 133869 unique_id port 133869 remote_ip 10.8.1.222 133871 username jafari 133871 kill_reason Another user logged on this global unique id 133871 mac 133871 bytes_out 0 133871 bytes_in 0 133871 station_ip 5.134.155.126 133871 port 259 133871 unique_id port 133871 remote_ip 10.8.0.242 133872 username barzegar 133872 mac 133872 bytes_out 0 133872 bytes_in 0 133872 station_ip 5.120.140.204 133872 port 286 133872 unique_id port 133840 unique_id port 133840 remote_ip 10.8.0.178 133843 username sabaghnezhad 133843 mac 133843 bytes_out 0 133843 bytes_in 0 133843 station_ip 37.129.94.220 133843 port 286 70419 username arezoo 70419 kill_reason Maximum check online fails reached 70419 mac 5.237.71.81:49214: Unknown host 70419 bytes_out 0 70419 bytes_in 0 70419 station_ip 5.237.71.81:49214 70419 port 1017 70419 unique_id port 133843 unique_id port 133843 remote_ip 10.8.0.186 133845 username houshang 133845 mac 133845 bytes_out 4262242 133845 bytes_in 33100887 133845 station_ip 5.120.190.101 133845 port 290 133845 unique_id port 133845 remote_ip 10.8.0.22 133850 username morteza 133850 kill_reason Another user logged on this global unique id 133850 mac 133850 bytes_out 0 133850 bytes_in 0 133850 station_ip 83.122.58.84 133850 port 287 133850 unique_id port 133850 remote_ip 10.8.0.46 133856 username irannezhad 133856 mac 133856 bytes_out 13984 133856 bytes_in 59848 133856 station_ip 37.129.249.99 133856 port 181 133856 unique_id port 133856 remote_ip 10.8.1.134 133859 username zotaher 133859 kill_reason Another user logged on this global unique id 133859 mac 133859 bytes_out 0 133859 bytes_in 0 133859 station_ip 83.123.250.158 133859 port 265 133859 unique_id port 133866 username zotaher 133866 kill_reason Another user logged on this global unique id 133866 mac 133866 bytes_out 0 133866 bytes_in 0 133866 station_ip 83.123.250.158 133866 port 265 133866 unique_id port 133867 username sabaghnezhad 133867 mac 133867 bytes_out 118000 133867 bytes_in 83454 133867 station_ip 37.129.94.220 133867 port 286 133867 unique_id port 133867 remote_ip 10.8.0.186 133874 username morteza 133874 mac 133874 bytes_out 0 133874 bytes_in 0 133874 station_ip 83.122.58.84 133874 port 276 133874 unique_id port 133874 remote_ip 10.8.0.46 133880 username alikomsari 133880 kill_reason Another user logged on this global unique id 133880 mac 133880 bytes_out 0 133880 bytes_in 0 133880 station_ip 5.120.136.35 133880 port 274 133880 unique_id port 133880 remote_ip 10.8.0.70 133881 username morteza 133881 mac 133881 bytes_out 0 133881 bytes_in 0 133881 station_ip 83.122.58.84 133881 port 178 133881 unique_id port 133881 remote_ip 10.8.1.62 133890 username morteza 133890 mac 133890 bytes_out 0 133890 bytes_in 0 133890 station_ip 83.122.58.84 133890 port 178 133890 unique_id port 133890 remote_ip 10.8.1.62 133892 username farhad2 133892 mac 133892 bytes_out 0 133892 bytes_in 0 133892 station_ip 5.119.80.8 133892 port 176 133892 unique_id port 133892 remote_ip 10.8.1.222 133896 username hoorieh 133896 kill_reason Another user logged on this global unique id 133896 mac 133896 bytes_out 0 133896 bytes_in 0 133896 station_ip 5.120.173.121 133896 port 292 133896 unique_id port 133897 username morteza 133897 mac 133897 bytes_out 0 133897 bytes_in 0 133897 station_ip 83.122.58.84 133897 port 294 133897 unique_id port 133897 remote_ip 10.8.0.46 133907 username yahodi 133907 mac 133907 bytes_out 1709873 133907 bytes_in 29111598 133907 station_ip 37.129.126.227 133907 port 296 133907 unique_id port 133907 remote_ip 10.8.0.202 133911 username malekpoir 133911 mac 133911 bytes_out 2661609 133911 bytes_in 35265874 133911 station_ip 5.119.101.235 133911 port 286 133911 unique_id port 133911 remote_ip 10.8.0.58 133915 username mansur 133915 kill_reason Another user logged on this global unique id 133915 mac 133915 bytes_out 0 133915 bytes_in 0 133915 station_ip 5.120.69.195 133915 port 282 133915 unique_id port 133915 remote_ip 10.8.0.210 133872 remote_ip 10.8.0.234 133875 username aminvpn 133875 unique_id port 133875 terminate_cause User-Request 133875 bytes_out 210206 133875 bytes_in 631524 133875 station_ip 5.160.113.221 133875 port 15730423 133875 nas_port_type Virtual 133875 remote_ip 5.5.5.89 133877 username morteza 133877 mac 133877 bytes_out 0 133877 bytes_in 0 133877 station_ip 83.122.58.84 133877 port 178 133877 unique_id port 133877 remote_ip 10.8.1.62 133878 username morteza 133878 kill_reason Maximum check online fails reached 133878 mac 133878 bytes_out 0 133878 bytes_in 0 133878 station_ip 83.122.58.84 133878 port 276 133878 unique_id port 133879 username morteza 133879 mac 133879 bytes_out 260424 133879 bytes_in 4611868 133879 station_ip 83.122.58.84 133879 port 178 133879 unique_id port 133879 remote_ip 10.8.1.62 133882 username morteza 133882 mac 133882 bytes_out 0 133882 bytes_in 0 133882 station_ip 83.122.58.84 133882 port 292 133882 unique_id port 133882 remote_ip 10.8.0.46 133884 username barzegar 133884 mac 133884 bytes_out 8764 133884 bytes_in 26764 133884 station_ip 5.120.140.204 133884 port 292 133884 unique_id port 133884 remote_ip 10.8.0.234 133886 username barzegar 133886 mac 133886 bytes_out 5733 133886 bytes_in 12510 133886 station_ip 5.120.140.204 133886 port 289 133886 unique_id port 133886 remote_ip 10.8.0.234 133889 username hoorieh 133889 kill_reason Another user logged on this global unique id 133889 mac 133889 bytes_out 0 133889 bytes_in 0 133889 station_ip 5.120.173.121 133889 port 292 133889 unique_id port 133889 remote_ip 10.8.0.38 133891 username barzegar 133891 mac 133891 bytes_out 8925 133891 bytes_in 20189 133891 station_ip 5.120.140.204 133891 port 294 133891 unique_id port 133891 remote_ip 10.8.0.234 133893 username yahodi 133893 mac 133893 bytes_out 0 133893 bytes_in 0 133893 station_ip 37.129.126.227 133893 port 293 133893 unique_id port 133893 remote_ip 10.8.0.202 133895 username farhad2 133895 mac 133895 bytes_out 2296483 133895 bytes_in 1260949 133895 station_ip 5.119.80.8 133895 port 176 133895 unique_id port 133895 remote_ip 10.8.1.222 133898 username hoorieh 133898 mac 133898 bytes_out 0 133898 bytes_in 0 133898 station_ip 5.120.173.121 133898 port 292 133898 unique_id port 133899 username sekonji3 133899 mac 133899 bytes_out 0 133899 bytes_in 0 133899 station_ip 83.123.151.96 133899 port 282 133899 unique_id port 133899 remote_ip 10.8.0.6 133900 username sekonji3 133900 mac 133900 bytes_out 0 133900 bytes_in 0 133900 station_ip 83.123.151.96 133900 port 282 133900 unique_id port 133900 remote_ip 10.8.0.6 133903 username sekonji3 133903 mac 133903 bytes_out 0 133903 bytes_in 0 133903 station_ip 83.123.151.96 133903 port 282 133903 unique_id port 133903 remote_ip 10.8.0.6 133905 username hamid 133905 kill_reason Relative expiration date has reached 133905 mac 133905 bytes_out 0 133905 bytes_in 0 133905 station_ip 37.129.96.98 133905 port 282 133905 unique_id port 133908 username mostafa_es78 133908 unique_id port 133908 terminate_cause Lost-Carrier 133908 bytes_out 1412934 133908 bytes_in 5127629 133908 station_ip 5.119.118.250 133908 port 15730422 133908 nas_port_type Virtual 133908 remote_ip 5.5.5.87 133910 username sekonji3 133910 mac 133910 bytes_out 0 133910 bytes_in 0 133910 station_ip 83.123.151.96 133910 port 293 133910 unique_id port 133910 remote_ip 10.8.0.6 133913 username vanila 133913 mac 133913 bytes_out 11219032 133913 bytes_in 3552235 133913 station_ip 83.122.17.40 133888 remote_ip 10.8.0.6 133894 username sekonji3 133894 mac 133894 bytes_out 4312 133894 bytes_in 5909 133894 station_ip 83.123.151.96 133894 port 282 133894 unique_id port 133894 remote_ip 10.8.0.6 133901 username alikomsari 133901 kill_reason Another user logged on this global unique id 133901 mac 133901 bytes_out 0 133901 bytes_in 0 133901 station_ip 5.120.136.35 133901 port 274 133901 unique_id port 133902 username barzegar 133902 mac 133902 bytes_out 0 133902 bytes_in 0 133902 station_ip 5.120.140.204 133902 port 295 133902 unique_id port 133902 remote_ip 10.8.0.234 133904 username hamid 133904 kill_reason Relative expiration date has reached 133904 mac 133904 bytes_out 0 133904 bytes_in 0 133904 station_ip 37.129.96.98 133904 port 282 133904 unique_id port 133906 username hamid 133906 kill_reason Relative expiration date has reached 133906 mac 133906 bytes_out 0 133906 bytes_in 0 133906 station_ip 37.129.96.98 133906 port 282 133906 unique_id port 133909 username sekonji3 133909 mac 133909 bytes_out 0 133909 bytes_in 0 133909 station_ip 83.123.151.96 133909 port 293 133909 unique_id port 133909 remote_ip 10.8.0.6 133912 username zotaher 133912 mac 133912 bytes_out 0 133912 bytes_in 0 133912 station_ip 83.123.250.158 133912 port 265 133912 unique_id port 133914 username jafari 133914 kill_reason Another user logged on this global unique id 133914 mac 133914 bytes_out 0 133914 bytes_in 0 133914 station_ip 5.134.155.126 133914 port 259 133914 unique_id port 133917 username aminvpn 133917 unique_id port 133917 terminate_cause Lost-Carrier 133917 bytes_out 4958122 133917 bytes_in 21490240 133917 station_ip 5.233.49.34 133917 port 15730417 133917 nas_port_type Virtual 133917 remote_ip 5.5.5.80 133921 username mansur 133921 mac 133921 bytes_out 0 133921 bytes_in 0 133921 station_ip 5.120.69.195 133921 port 282 133921 unique_id port 133923 username mansur 133923 mac 133923 bytes_out 0 133923 bytes_in 0 133923 station_ip 5.120.69.195 133923 port 181 133923 unique_id port 133923 remote_ip 10.8.1.194 133926 username sekonji3 133926 mac 133926 bytes_out 0 133926 bytes_in 0 133926 station_ip 83.123.151.96 133926 port 282 133926 unique_id port 133926 remote_ip 10.8.0.6 133930 username mehdizare 133930 mac 133930 bytes_out 73070 133930 bytes_in 82614 133930 station_ip 5.120.148.206 133930 port 287 133930 unique_id port 133930 remote_ip 10.8.0.90 133939 username barzegar 133939 mac 133939 bytes_out 0 133939 bytes_in 0 133939 station_ip 5.120.140.204 133939 port 176 133939 unique_id port 133939 remote_ip 10.8.1.174 133941 username sekonji3 133941 mac 133941 bytes_out 0 133941 bytes_in 0 133941 station_ip 83.123.151.96 133941 port 287 133941 unique_id port 133941 remote_ip 10.8.0.6 133945 username aminvpn 133945 unique_id port 133945 terminate_cause Lost-Carrier 133945 bytes_out 816202 133945 bytes_in 2695240 133945 station_ip 5.233.49.34 133945 port 15730425 133945 nas_port_type Virtual 133945 remote_ip 5.5.5.91 133946 username jafari 133946 kill_reason Another user logged on this global unique id 133946 mac 133946 bytes_out 0 133946 bytes_in 0 133946 station_ip 5.134.155.126 133946 port 259 133946 unique_id port 133948 username alikomsari 133948 mac 133948 bytes_out 0 133948 bytes_in 0 133948 station_ip 5.120.136.35 133948 port 274 133948 unique_id port 133953 username sekonji3 133953 mac 133953 bytes_out 0 133953 bytes_in 0 133953 station_ip 83.123.151.96 133953 port 274 133953 unique_id port 133953 remote_ip 10.8.0.6 133913 port 290 133913 unique_id port 133913 remote_ip 10.8.0.178 133919 username sekonji3 133919 mac 133919 bytes_out 22111 133919 bytes_in 32935 133919 station_ip 83.123.151.96 133919 port 265 133919 unique_id port 133919 remote_ip 10.8.0.6 133931 username sekonji3 133931 mac 133931 bytes_out 0 133931 bytes_in 0 133931 station_ip 83.123.151.96 133931 port 265 133931 unique_id port 133931 remote_ip 10.8.0.6 133933 username alikomsari 133933 kill_reason Another user logged on this global unique id 133933 mac 133933 bytes_out 0 133933 bytes_in 0 133933 station_ip 5.120.136.35 133933 port 274 133933 unique_id port 133934 username sekonji3 133934 mac 133934 bytes_out 0 133934 bytes_in 0 133934 station_ip 83.123.151.96 133934 port 265 133934 unique_id port 133934 remote_ip 10.8.0.6 133935 username sekonji3 133935 mac 133935 bytes_out 0 133935 bytes_in 0 133935 station_ip 83.123.151.96 133935 port 265 133935 unique_id port 133935 remote_ip 10.8.0.6 133936 username sekonji3 133936 mac 133936 bytes_out 0 133936 bytes_in 0 133936 station_ip 83.123.151.96 133936 port 265 133936 unique_id port 133936 remote_ip 10.8.0.6 133937 username jafari 133937 kill_reason Another user logged on this global unique id 133937 mac 133937 bytes_out 0 133937 bytes_in 0 133937 station_ip 5.134.155.126 133937 port 259 133937 unique_id port 133938 username khademi 133938 kill_reason Another user logged on this global unique id 133938 mac 133938 bytes_out 0 133938 bytes_in 0 133938 station_ip 37.129.196.114 133938 port 275 133938 unique_id port 133940 username mehdizare 133940 mac 133940 bytes_out 0 133940 bytes_in 0 133940 station_ip 5.120.148.206 133940 port 290 133940 unique_id port 133940 remote_ip 10.8.0.90 133942 username jafari 133942 kill_reason Another user logged on this global unique id 133942 mac 133942 bytes_out 0 133942 bytes_in 0 133942 station_ip 5.134.155.126 133942 port 259 133942 unique_id port 133943 username sekonji3 133943 mac 133943 bytes_out 0 133943 bytes_in 0 133943 station_ip 83.123.151.96 133943 port 287 133943 unique_id port 133943 remote_ip 10.8.0.6 133951 username jafari 133951 kill_reason Another user logged on this global unique id 133951 mac 133951 bytes_out 0 133951 bytes_in 0 133951 station_ip 5.134.155.126 133951 port 259 133951 unique_id port 133952 username sekonji3 133952 mac 133952 bytes_out 0 133952 bytes_in 0 133952 station_ip 83.123.151.96 133952 port 274 133952 unique_id port 133952 remote_ip 10.8.0.6 133956 username khademi 133956 kill_reason Another user logged on this global unique id 133956 mac 133956 bytes_out 0 133956 bytes_in 0 133956 station_ip 37.129.196.114 133956 port 275 133956 unique_id port 133957 username jafari 133957 kill_reason Another user logged on this global unique id 133957 mac 133957 bytes_out 0 133957 bytes_in 0 133957 station_ip 5.134.155.126 133957 port 259 133957 unique_id port 133958 username saeed9658 133958 mac 133958 bytes_out 0 133958 bytes_in 0 133958 station_ip 5.119.170.229 133958 port 178 133958 unique_id port 133958 remote_ip 10.8.1.210 133964 username sekonji3 133964 mac 133964 bytes_out 0 133964 bytes_in 0 133964 station_ip 83.123.151.96 133964 port 274 133964 unique_id port 133964 remote_ip 10.8.0.6 133967 username saeed9658 133967 mac 133967 bytes_out 0 133967 bytes_in 0 133967 station_ip 5.119.170.229 133967 port 274 133967 unique_id port 133967 remote_ip 10.8.0.62 133968 username saeed9658 133968 mac 133968 bytes_out 0 133968 bytes_in 0 133916 username barzegar 133916 mac 133916 bytes_out 8263 133916 bytes_in 17637 133916 station_ip 5.120.140.204 133916 port 292 133916 unique_id port 133916 remote_ip 10.8.0.234 133918 username mostafa_es78 133918 unique_id port 133918 terminate_cause User-Request 133918 bytes_out 261453 133918 bytes_in 3403236 133918 station_ip 5.119.118.250 133918 port 15730424 133918 nas_port_type Virtual 133918 remote_ip 5.5.5.90 133920 username sekonji3 133920 mac 133920 bytes_out 0 133920 bytes_in 0 133920 station_ip 83.123.151.96 133920 port 265 133920 unique_id port 133920 remote_ip 10.8.0.6 133922 username mansur 133922 mac 133922 bytes_out 0 133922 bytes_in 0 133922 station_ip 5.120.69.195 133922 port 181 133922 unique_id port 133922 remote_ip 10.8.1.194 133924 username sedighe 133924 mac 133924 bytes_out 56657 133924 bytes_in 250728 133924 station_ip 37.129.158.138 133924 port 178 133924 unique_id port 133924 remote_ip 10.8.1.78 133925 username farhad2 133925 mac 133925 bytes_out 0 133925 bytes_in 0 133925 station_ip 5.119.80.8 133925 port 176 133925 unique_id port 133925 remote_ip 10.8.1.222 133927 username amirabbas 133927 unique_id port 133927 terminate_cause User-Request 133927 bytes_out 22257736 133927 bytes_in 584119448 133927 station_ip 37.27.17.204 133927 port 15730411 133927 nas_port_type Virtual 133927 remote_ip 5.5.5.190 133928 username houshang 133928 mac 133928 bytes_out 0 133928 bytes_in 0 133928 station_ip 5.120.190.101 133928 port 265 133928 unique_id port 133928 remote_ip 10.8.0.22 133929 username jafari 133929 kill_reason Another user logged on this global unique id 133929 mac 133929 bytes_out 0 133929 bytes_in 0 133929 station_ip 5.134.155.126 133929 port 259 133929 unique_id port 133932 username jafari 133932 kill_reason Another user logged on this global unique id 133932 mac 133932 bytes_out 0 133932 bytes_in 0 133932 station_ip 5.134.155.126 133932 port 259 133932 unique_id port 133944 username barzegar 133944 mac 133944 bytes_out 0 133944 bytes_in 0 133944 station_ip 5.120.140.204 133944 port 176 133944 unique_id port 133944 remote_ip 10.8.1.174 133947 username mansur 133947 mac 133947 bytes_out 1282394 133947 bytes_in 28864206 133947 station_ip 5.120.69.195 133947 port 282 133947 unique_id port 133947 remote_ip 10.8.0.210 133949 username sedighe 133949 mac 133949 bytes_out 0 133949 bytes_in 0 133949 station_ip 83.123.125.214 133949 port 181 133949 unique_id port 133949 remote_ip 10.8.1.78 133950 username aminvpn 133950 mac 133950 bytes_out 0 133950 bytes_in 0 133950 station_ip 37.129.202.184 133950 port 274 133950 unique_id port 133950 remote_ip 10.8.0.14 133954 username forozandeh1 133954 mac 133954 bytes_out 539623 133954 bytes_in 4196575 133954 station_ip 83.123.68.44 133954 port 282 133954 unique_id port 133954 remote_ip 10.8.0.130 133959 username saeed9658 133959 mac 133959 bytes_out 0 133959 bytes_in 0 133959 station_ip 5.119.170.229 133959 port 178 133959 unique_id port 133959 remote_ip 10.8.1.210 133960 username alikomsari 133960 mac 133960 bytes_out 0 133960 bytes_in 0 133960 station_ip 5.119.148.82 133960 port 274 133960 unique_id port 133960 remote_ip 10.8.0.70 133963 username saeed9658 133963 mac 133963 bytes_out 0 133963 bytes_in 0 133963 station_ip 5.119.170.229 133963 port 181 133963 unique_id port 133963 remote_ip 10.8.1.210 133965 username sedighe 133965 mac 133965 bytes_out 0 133965 bytes_in 0 133965 station_ip 83.123.125.214 133965 port 178 133955 username saeed9658 133955 mac 133955 bytes_out 0 133955 bytes_in 0 133955 station_ip 5.119.170.229 133955 port 178 133955 unique_id port 133955 remote_ip 10.8.1.210 133961 username sedighe 133961 mac 133961 bytes_out 63140 133961 bytes_in 672053 133961 station_ip 83.123.125.214 133961 port 290 133961 unique_id port 133961 remote_ip 10.8.0.146 133962 username barzegar 133962 mac 133962 bytes_out 0 133962 bytes_in 0 133962 station_ip 5.120.140.204 133962 port 176 133962 unique_id port 133962 remote_ip 10.8.1.174 133966 username sedighe 133966 mac 133966 bytes_out 0 133966 bytes_in 0 133966 station_ip 83.123.125.214 133966 port 176 133966 unique_id port 133966 remote_ip 10.8.1.78 133970 username sekonji3 133970 mac 133970 bytes_out 0 133970 bytes_in 0 133970 station_ip 83.123.151.96 133970 port 274 133970 unique_id port 133970 remote_ip 10.8.0.6 133981 username morteza 133981 mac 133981 bytes_out 0 133981 bytes_in 0 133981 station_ip 83.122.64.192 133981 port 259 133981 unique_id port 133981 remote_ip 10.8.0.46 133983 username morteza 133983 mac 133983 bytes_out 0 133983 bytes_in 0 133983 station_ip 83.122.64.192 133983 port 259 133983 unique_id port 133983 remote_ip 10.8.0.46 133990 username houshang 133990 mac 133990 bytes_out 0 133990 bytes_in 0 133990 station_ip 5.120.190.101 133990 port 274 133990 unique_id port 133990 remote_ip 10.8.0.22 133991 username barzegar 133991 mac 133991 bytes_out 0 133991 bytes_in 0 133991 station_ip 5.120.140.204 133991 port 274 133991 unique_id port 133991 remote_ip 10.8.0.234 133993 username saeed9658 133993 mac 133993 bytes_out 0 133993 bytes_in 0 133993 station_ip 5.119.170.229 133993 port 282 133993 unique_id port 133993 remote_ip 10.8.0.62 133995 username vanila 133995 mac 133995 bytes_out 0 133995 bytes_in 0 133995 station_ip 83.122.17.40 133995 port 286 133995 unique_id port 133995 remote_ip 10.8.0.178 133996 username morteza 133996 mac 133996 bytes_out 0 133996 bytes_in 0 133996 station_ip 83.122.64.192 133996 port 286 133996 unique_id port 133996 remote_ip 10.8.0.46 133997 username morteza 133997 mac 133997 bytes_out 0 133997 bytes_in 0 133997 station_ip 83.122.64.192 133997 port 286 133997 unique_id port 133997 remote_ip 10.8.0.46 133998 username vanila 133998 mac 133998 bytes_out 4783181 133998 bytes_in 2108071 133998 station_ip 83.122.17.40 133998 port 282 133998 unique_id port 133998 remote_ip 10.8.0.178 134000 username vanila 134000 mac 134000 bytes_out 12544 134000 bytes_in 14485 134000 station_ip 83.122.17.40 134000 port 290 134000 unique_id port 134000 remote_ip 10.8.0.178 134002 username farhad2 134002 mac 134002 bytes_out 2257277 134002 bytes_in 10159127 134002 station_ip 5.119.80.8 134002 port 178 134002 unique_id port 134002 remote_ip 10.8.1.222 134006 username morteza 134006 kill_reason Maximum number of concurrent logins reached 134006 mac 134006 bytes_out 0 134006 bytes_in 0 134006 station_ip 83.122.64.192 134006 port 292 134006 unique_id port 134007 username morteza 134007 kill_reason Maximum check online fails reached 134007 mac 134007 bytes_out 0 134007 bytes_in 0 134007 station_ip 83.122.64.192 134007 port 176 134007 unique_id port 134010 username vanila 134010 mac 134010 bytes_out 448949 134010 bytes_in 39660 134010 station_ip 83.122.17.40 134010 port 292 134010 unique_id port 134010 remote_ip 10.8.0.178 134012 username aminvpn 134012 mac 133965 unique_id port 133965 remote_ip 10.8.1.78 133974 username mohammadmahdi 133974 mac 133974 bytes_out 3419621 133974 bytes_in 42254915 133974 station_ip 5.120.177.23 133974 port 265 133974 unique_id port 133974 remote_ip 10.8.0.54 133976 username khademi 133976 kill_reason Another user logged on this global unique id 133976 mac 133976 bytes_out 0 133976 bytes_in 0 133976 station_ip 37.129.196.114 133976 port 275 133976 unique_id port 133977 username saeed9658 133977 kill_reason Maximum check online fails reached 133977 mac 133977 bytes_out 0 133977 bytes_in 0 133977 station_ip 5.119.170.229 133977 port 265 133977 unique_id port 133978 username morteza 133978 mac 133978 bytes_out 0 133978 bytes_in 0 133978 station_ip 83.122.64.192 133978 port 259 70532 username arezoo 70532 kill_reason Another user logged on this global unique id 70532 mac 5.237.65.5:49250: Unknown host 70532 bytes_out 0 70532 bytes_in 0 70532 station_ip 5.237.65.5:49250 70532 port 1017 70532 unique_id port 133978 unique_id port 133978 remote_ip 10.8.0.46 133979 username mosi 133979 mac 133979 bytes_out 0 133979 bytes_in 0 133979 station_ip 151.235.64.171 133979 port 177 133979 unique_id port 133982 username mehdizare 133982 mac 133982 bytes_out 23404 133982 bytes_in 25437 133982 station_ip 5.120.148.206 133982 port 287 133982 unique_id port 133982 remote_ip 10.8.0.90 133984 username morteza 133984 mac 133984 bytes_out 0 133984 bytes_in 0 133984 station_ip 83.122.64.192 133984 port 259 133984 unique_id port 133984 remote_ip 10.8.0.46 133987 username khademi 133987 kill_reason Another user logged on this global unique id 133987 mac 133987 bytes_out 0 133987 bytes_in 0 133987 station_ip 37.129.196.114 133987 port 275 133987 unique_id port 133989 username amirabbas 133989 unique_id port 133989 terminate_cause User-Request 133989 bytes_out 1753079 133989 bytes_in 35367099 133989 station_ip 37.27.17.204 133989 port 15730427 133989 nas_port_type Virtual 133989 remote_ip 5.5.5.100 133992 username mosi 133992 mac 133992 bytes_out 0 133992 bytes_in 0 133992 station_ip 89.47.150.1 133992 port 176 133992 unique_id port 133992 remote_ip 10.8.1.86 134001 username morteza 134001 mac 134001 bytes_out 0 134001 bytes_in 0 134001 station_ip 83.122.64.192 134001 port 286 134001 unique_id port 134001 remote_ip 10.8.0.46 134004 username aminvpn 134004 mac 134004 bytes_out 263396 134004 bytes_in 2856675 134004 station_ip 37.129.2.149 134004 port 282 134004 unique_id port 134004 remote_ip 10.8.0.14 134011 username houshang 134011 mac 134011 bytes_out 262140 134011 bytes_in 1458177 134011 station_ip 5.120.190.101 134011 port 282 134011 unique_id port 134011 remote_ip 10.8.0.22 134013 username amin.saeedi 134013 unique_id port 134013 terminate_cause User-Request 134013 bytes_out 11630093 134013 bytes_in 237838170 134013 station_ip 5.119.92.72 134013 port 15730426 134013 nas_port_type Virtual 134013 remote_ip 5.5.5.95 134015 username aminvpn 134015 unique_id port 134015 terminate_cause Lost-Carrier 134015 bytes_out 7333960 134015 bytes_in 157259591 134015 station_ip 31.57.140.162 134015 port 15730428 134015 nas_port_type Virtual 134015 remote_ip 5.5.5.106 134016 username vanila 134016 mac 134016 bytes_out 9311209 134016 bytes_in 936826 134016 station_ip 83.122.17.40 134016 port 282 134016 unique_id port 134016 remote_ip 10.8.0.178 134021 username sekonji3 134021 mac 134021 bytes_out 0 134021 bytes_in 0 134021 station_ip 83.123.151.96 134021 port 286 134021 unique_id port 134021 remote_ip 10.8.0.6 134022 username houshang 134022 mac 133968 station_ip 5.119.170.229 133968 port 274 133968 unique_id port 133968 remote_ip 10.8.0.62 133969 username saeed9658 133969 mac 133969 bytes_out 0 133969 bytes_in 0 133969 station_ip 5.119.170.229 133969 port 181 133969 unique_id port 133969 remote_ip 10.8.1.210 133971 username barzegar 133971 mac 133971 bytes_out 17785 133971 bytes_in 34126 133971 station_ip 5.120.140.204 133971 port 176 133971 unique_id port 133971 remote_ip 10.8.1.174 133972 username jafari 133972 mac 133972 bytes_out 0 133972 bytes_in 0 133972 station_ip 5.134.155.126 133972 port 259 133972 unique_id port 133973 username saeed9658 133973 mac 133973 bytes_out 0 133973 bytes_in 0 133973 station_ip 5.119.170.229 133973 port 176 133973 unique_id port 133973 remote_ip 10.8.1.210 133975 username sekonji3 133975 mac 133975 bytes_out 11091 133975 bytes_in 19587 133975 station_ip 83.123.151.96 133975 port 259 133975 unique_id port 133975 remote_ip 10.8.0.6 133980 username sekonji3 133980 mac 133980 bytes_out 0 133980 bytes_in 0 133980 station_ip 83.123.151.96 133980 port 282 133980 unique_id port 133980 remote_ip 10.8.0.6 133985 username saeed9658 133985 mac 133985 bytes_out 0 133985 bytes_in 0 133985 station_ip 5.119.170.229 133985 port 287 133985 unique_id port 133985 remote_ip 10.8.0.62 133986 username godarzi 133986 mac 133986 bytes_out 1034019 133986 bytes_in 13301930 133986 station_ip 5.202.62.3 133986 port 282 133986 unique_id port 133986 remote_ip 10.8.0.174 133988 username sekonji3 133988 mac 133988 bytes_out 0 133988 bytes_in 0 133988 station_ip 83.123.151.96 133988 port 290 133988 unique_id port 133988 remote_ip 10.8.0.6 133994 username mosi 133994 mac 133994 bytes_out 0 133994 bytes_in 0 133994 station_ip 151.235.64.171 133994 port 177 133994 unique_id port 133994 remote_ip 10.8.1.86 133999 username morteza 133999 mac 133999 bytes_out 0 133999 bytes_in 0 133999 station_ip 83.122.64.192 133999 port 286 133999 unique_id port 133999 remote_ip 10.8.0.46 134003 username morteza 134003 mac 134003 bytes_out 0 134003 bytes_in 0 134003 station_ip 83.122.64.192 134003 port 176 134003 unique_id port 134003 remote_ip 10.8.1.62 134005 username morteza 134005 mac 134005 bytes_out 0 134005 bytes_in 0 134005 station_ip 83.122.64.192 134005 port 282 134005 unique_id port 134005 remote_ip 10.8.0.46 134008 username morteza 134008 mac 134008 bytes_out 1636 134008 bytes_in 5142 134008 station_ip 83.122.64.192 134008 port 290 134008 unique_id port 134008 remote_ip 10.8.0.46 134009 username saeed9658 134009 mac 134009 bytes_out 0 134009 bytes_in 0 134009 station_ip 5.119.170.229 134009 port 290 134009 unique_id port 134009 remote_ip 10.8.0.62 134020 username saeed9658 134020 mac 134020 bytes_out 0 134020 bytes_in 0 134020 station_ip 5.119.170.229 134020 port 282 134020 unique_id port 134020 remote_ip 10.8.0.62 134023 username sekonji3 134023 mac 134023 bytes_out 5865 134023 bytes_in 7419 134023 station_ip 83.123.151.96 134023 port 282 134023 unique_id port 134023 remote_ip 10.8.0.6 134026 username mostafa_es78 134026 unique_id port 134026 terminate_cause User-Request 134026 bytes_out 435041 134026 bytes_in 5162427 134026 station_ip 5.120.172.253 134026 port 15730431 134026 nas_port_type Virtual 134026 remote_ip 5.5.5.116 134027 username sekonji3 134027 mac 134027 bytes_out 0 134027 bytes_in 0 134027 station_ip 83.123.151.96 134027 port 282 134012 bytes_out 400555 134012 bytes_in 3334907 134012 station_ip 5.120.72.205 134012 port 286 134012 unique_id port 134012 remote_ip 10.8.0.14 134014 username aminvpn 134014 mac 134014 bytes_out 0 134014 bytes_in 0 134014 station_ip 5.120.72.205 134014 port 178 134014 unique_id port 134014 remote_ip 10.8.1.6 134017 username sekonji3 134017 mac 134017 bytes_out 0 134017 bytes_in 0 134017 station_ip 83.123.151.96 134017 port 286 134017 unique_id port 134017 remote_ip 10.8.0.6 134018 username saeed9658 134018 mac 134018 bytes_out 0 134018 bytes_in 0 134018 station_ip 5.119.170.229 134018 port 282 134018 unique_id port 134018 remote_ip 10.8.0.62 134019 username houshang 134019 kill_reason Another user logged on this global unique id 134019 mac 134019 bytes_out 0 134019 bytes_in 0 134019 station_ip 5.120.190.101 134019 port 292 134019 unique_id port 134019 remote_ip 10.8.0.22 134024 username sekonji3 134024 mac 134024 bytes_out 0 134024 bytes_in 0 134024 station_ip 83.123.151.96 134024 port 282 134024 unique_id port 134024 remote_ip 10.8.0.6 134028 username sekonji3 134028 mac 134028 bytes_out 0 134028 bytes_in 0 134028 station_ip 83.123.151.96 134028 port 282 134028 unique_id port 134028 remote_ip 10.8.0.6 134031 username amin.saeedi 134031 unique_id port 134031 terminate_cause User-Request 134031 bytes_out 3598794 134031 bytes_in 40777697 134031 station_ip 5.119.92.72 134031 port 15730432 134031 nas_port_type Virtual 134031 remote_ip 5.5.5.126 134032 username mostafa_es78 134032 unique_id port 134032 terminate_cause User-Request 134032 bytes_out 58888 134032 bytes_in 162354 134032 station_ip 5.120.172.253 134032 port 15730433 134032 nas_port_type Virtual 134032 remote_ip 5.5.5.146 134036 username reza2742 134036 kill_reason Relative expiration date has reached 134036 unique_id port 134036 bytes_out 0 134036 bytes_in 0 134036 station_ip 83.123.85.224 134036 port 15730436 134036 nas_port_type Virtual 134037 username sekonji3 134037 mac 134037 bytes_out 5751 134037 bytes_in 7448 134037 station_ip 83.123.151.96 134037 port 282 134037 unique_id port 134037 remote_ip 10.8.0.6 134038 username houshang 134038 mac 134038 bytes_out 1350463 134038 bytes_in 24687363 134038 station_ip 5.120.190.101 134038 port 274 134038 unique_id port 134038 remote_ip 10.8.0.22 134039 username vanila 134039 mac 134039 bytes_out 8881248 134039 bytes_in 1057344 134039 station_ip 83.122.17.40 134039 port 286 134039 unique_id port 134039 remote_ip 10.8.0.178 134040 username mahdiyehalizadeh 134040 mac 134040 bytes_out 68467 134040 bytes_in 188030 134040 station_ip 37.129.182.47 134040 port 274 134040 unique_id port 134040 remote_ip 10.8.0.82 134044 username farhad2 134044 mac 134044 bytes_out 0 134044 bytes_in 0 134044 station_ip 5.119.80.8 134044 port 177 134044 unique_id port 134044 remote_ip 10.8.1.222 134046 username saeed9658 134046 mac 134046 bytes_out 0 134046 bytes_in 0 134046 station_ip 5.119.170.229 134046 port 178 134046 unique_id port 134046 remote_ip 10.8.1.210 134048 username moradi 134048 kill_reason Another user logged on this global unique id 134048 mac 134048 bytes_out 0 134048 bytes_in 0 134048 station_ip 37.129.45.87 134048 port 274 134048 unique_id port 134048 remote_ip 10.8.0.250 134052 username vanila 134052 mac 134052 bytes_out 9281060 134052 bytes_in 1540999 134052 station_ip 83.122.17.40 134052 port 282 134052 unique_id port 134052 remote_ip 10.8.0.178 134053 username saeed9658 134053 kill_reason Another user logged on this global unique id 134053 mac 134053 bytes_out 0 134022 bytes_out 0 134022 bytes_in 0 134022 station_ip 5.120.190.101 134022 port 292 134022 unique_id port 134025 username sekonji3 134025 mac 134025 bytes_out 0 134025 bytes_in 0 134025 station_ip 83.123.151.96 134025 port 282 134025 unique_id port 134025 remote_ip 10.8.0.6 134029 username barzegar 134029 mac 134029 bytes_out 183348 134029 bytes_in 198308 134029 station_ip 5.120.140.204 134029 port 274 134029 unique_id port 134029 remote_ip 10.8.0.234 134033 username forozandeh1 134033 mac 134033 bytes_out 2432304 134033 bytes_in 35708826 134033 station_ip 113.203.98.81 134033 port 290 134033 unique_id port 134033 remote_ip 10.8.0.130 134034 username reza2742 134034 kill_reason Relative expiration date has reached 134034 unique_id port 134034 bytes_out 0 134034 bytes_in 0 134034 station_ip 83.123.85.224 134034 port 15730434 134034 nas_port_type Virtual 134055 username vanila 134055 mac 134055 bytes_out 8981151 134055 bytes_in 708334 134055 station_ip 83.122.17.40 134055 port 284 134055 unique_id port 134055 remote_ip 10.8.0.178 134056 username farhad2 134056 mac 134056 bytes_out 0 134056 bytes_in 0 134056 station_ip 5.120.180.113 134056 port 177 134056 unique_id port 134056 remote_ip 10.8.1.222 134059 username sekonji3 134059 mac 134059 bytes_out 0 134059 bytes_in 0 134059 station_ip 83.123.151.96 134059 port 293 134059 unique_id port 134059 remote_ip 10.8.0.6 134070 username arash 134070 mac 134070 bytes_out 170477 134070 bytes_in 715918 134070 station_ip 37.27.29.242 134070 port 282 134070 unique_id port 134070 remote_ip 10.8.0.114 134078 username amir 134078 mac 134078 bytes_out 203817 134078 bytes_in 1232509 134078 station_ip 46.225.214.127 134078 port 282 134078 unique_id port 134078 remote_ip 10.8.0.50 134080 username jamali 134080 mac 134080 bytes_out 0 134080 bytes_in 0 134080 station_ip 5.119.80.43 134080 port 279 134080 unique_id port 134083 username rajaei 134083 mac 134083 bytes_out 0 134083 bytes_in 0 134083 station_ip 89.47.152.67 134083 port 279 134083 unique_id port 134083 remote_ip 10.8.0.34 134087 username amir 134087 mac 134087 bytes_out 0 134087 bytes_in 0 134087 station_ip 46.225.214.127 134087 port 286 134087 unique_id port 134087 remote_ip 10.8.0.50 134090 username alikomsari 134090 kill_reason Another user logged on this global unique id 134090 mac 134090 bytes_out 0 134090 bytes_in 0 134090 station_ip 5.120.132.43 134090 port 292 134090 unique_id port 134094 username barzegar 134094 mac 134094 bytes_out 9963 134094 bytes_in 93003 134094 station_ip 5.120.140.204 134094 port 178 134094 unique_id port 134094 remote_ip 10.8.1.174 134099 username vanila 134099 mac 134099 bytes_out 0 134099 bytes_in 0 134099 station_ip 83.122.17.40 134099 port 284 134099 unique_id port 134099 remote_ip 10.8.0.178 134102 username vanila 134102 mac 134102 bytes_out 0 134102 bytes_in 0 134102 station_ip 83.122.17.40 134102 port 284 134102 unique_id port 134102 remote_ip 10.8.0.178 134105 username rajaei 134105 mac 134105 bytes_out 0 134105 bytes_in 0 134105 station_ip 37.137.29.140 134105 port 279 134105 unique_id port 134105 remote_ip 10.8.0.34 134109 username jamali 134109 mac 134109 bytes_out 0 134109 bytes_in 0 134109 station_ip 5.119.241.131 134109 port 295 134109 unique_id port 134109 remote_ip 10.8.0.150 134111 username hamidsalari 134111 kill_reason Another user logged on this global unique id 134111 mac 134111 bytes_out 0 134111 bytes_in 0 134027 unique_id port 134027 remote_ip 10.8.0.6 134030 username sekonji3 134030 mac 134030 bytes_out 0 134030 bytes_in 0 134030 station_ip 83.123.151.96 134030 port 282 134030 unique_id port 134030 remote_ip 10.8.0.6 134035 username reza2742 134035 kill_reason Relative expiration date has reached 134035 unique_id port 134035 bytes_out 0 134035 bytes_in 0 134035 station_ip 83.123.85.224 134035 port 15730435 134035 nas_port_type Virtual 134041 username barzegar 134041 mac 134041 bytes_out 44674 134041 bytes_in 58841 134041 station_ip 5.120.140.204 134041 port 292 134041 unique_id port 134041 remote_ip 10.8.0.234 134042 username forozandeh1 134042 mac 134042 bytes_out 0 134042 bytes_in 0 134042 station_ip 83.123.202.241 134042 port 282 134042 unique_id port 134042 remote_ip 10.8.0.130 134043 username vanila 134043 mac 134043 bytes_out 1237997 134043 bytes_in 208285 134043 station_ip 83.122.17.40 134043 port 286 134043 unique_id port 134043 remote_ip 10.8.0.178 134045 username farhad2 134045 mac 134045 bytes_out 0 134045 bytes_in 0 134045 station_ip 5.120.180.113 134045 port 181 134045 unique_id port 134045 remote_ip 10.8.1.222 134047 username mamal 134047 unique_id port 134047 terminate_cause Lost-Carrier 134047 bytes_out 6353972 134047 bytes_in 114487290 134047 station_ip 83.123.71.249 134047 port 15730437 134047 nas_port_type Virtual 134047 remote_ip 5.5.5.38 134049 username sabaghnezhad 134049 mac 134049 bytes_out 3590570 134049 bytes_in 28658137 134049 station_ip 83.122.60.254 134049 port 289 134049 unique_id port 134049 remote_ip 10.8.0.186 134050 username hamidsalari 134050 mac 134050 bytes_out 0 134050 bytes_in 0 134050 station_ip 5.120.22.15 134050 port 284 134050 unique_id port 134051 username houshang 134051 mac 134051 bytes_out 2340084 134051 bytes_in 40905027 134051 station_ip 5.120.190.101 134051 port 290 134051 unique_id port 134051 remote_ip 10.8.0.22 134054 username saeed9658 134054 mac 134054 bytes_out 0 134054 bytes_in 0 134054 station_ip 5.119.170.229 134054 port 292 134054 unique_id port 134057 username houshang 134057 kill_reason Another user logged on this global unique id 134057 mac 134057 bytes_out 0 134057 bytes_in 0 134057 station_ip 5.120.190.101 134057 port 282 134057 unique_id port 134057 remote_ip 10.8.0.22 134060 username mamal 134060 unique_id port 134060 terminate_cause Lost-Carrier 134060 bytes_out 475392 134060 bytes_in 9911074 134060 station_ip 37.129.254.222 134060 port 15730440 134060 nas_port_type Virtual 134060 remote_ip 5.5.5.49 134061 username forozandeh1 134061 mac 134061 bytes_out 1511719 134061 bytes_in 17424534 134061 station_ip 83.123.234.10 134061 port 290 134061 unique_id port 134061 remote_ip 10.8.0.130 134065 username arash 134065 mac 134065 bytes_out 0 134065 bytes_in 0 134065 station_ip 37.27.29.242 134065 port 282 134065 unique_id port 134065 remote_ip 10.8.0.114 134067 username farhad2 134067 mac 134067 bytes_out 2324940 134067 bytes_in 7369364 134067 station_ip 5.120.110.146 134067 port 178 134067 unique_id port 134067 remote_ip 10.8.1.222 134069 username vanila 134069 mac 134069 bytes_out 18248613 134069 bytes_in 4984444 134069 station_ip 83.122.17.40 134069 port 284 134069 unique_id port 134069 remote_ip 10.8.0.178 134073 username amin.saeedi 134073 unique_id port 134073 terminate_cause User-Request 134073 bytes_out 3419235 134073 bytes_in 25505948 134073 station_ip 5.119.92.72 134073 port 15730439 134073 nas_port_type Virtual 134073 remote_ip 5.5.5.44 134074 username moradi 134053 bytes_in 0 134053 station_ip 5.119.170.229 134053 port 292 134053 unique_id port 134053 remote_ip 10.8.0.62 134058 username mostafa_es78 134058 unique_id port 134058 terminate_cause User-Request 134058 bytes_out 960932 134058 bytes_in 2927976 134058 station_ip 5.126.156.110 134058 port 15730438 134058 nas_port_type Virtual 134058 remote_ip 5.5.5.41 134062 username houshang 134062 mac 134062 bytes_out 0 134062 bytes_in 0 134062 station_ip 5.120.190.101 134062 port 282 134062 unique_id port 134063 username arash 134063 mac 134063 bytes_out 10445 134063 bytes_in 27145 134063 station_ip 37.27.29.242 134063 port 293 134063 unique_id port 134063 remote_ip 10.8.0.114 134064 username mamal 134064 unique_id port 134064 terminate_cause Lost-Carrier 134064 bytes_out 614406 134064 bytes_in 17287944 134064 station_ip 83.122.98.135 134064 port 15730441 134064 nas_port_type Virtual 134064 remote_ip 5.5.5.56 134066 username sekonji3 134066 mac 134066 bytes_out 0 134066 bytes_in 0 134066 station_ip 83.123.151.96 134066 port 290 134066 unique_id port 134066 remote_ip 10.8.0.6 134068 username arash 134068 mac 134068 bytes_out 15221 134068 bytes_in 127981 134068 station_ip 37.27.29.242 134068 port 282 134068 unique_id port 134068 remote_ip 10.8.0.114 134071 username godarzi 134071 mac 134071 bytes_out 0 134071 bytes_in 0 134071 station_ip 5.202.6.3 134071 port 282 134071 unique_id port 134071 remote_ip 10.8.0.174 134072 username alikomsari 134072 kill_reason Another user logged on this global unique id 134072 mac 134072 bytes_out 0 134072 bytes_in 0 134072 station_ip 5.120.132.43 134072 port 292 134072 unique_id port 134072 remote_ip 10.8.0.70 134076 username godarzi 134076 kill_reason Another user logged on this global unique id 134076 mac 134076 bytes_out 0 134076 bytes_in 0 134076 station_ip 5.202.6.3 134076 port 282 134076 unique_id port 134076 remote_ip 10.8.0.174 134077 username godarzi 134077 mac 134077 bytes_out 0 134077 bytes_in 0 134077 station_ip 5.202.6.3 134077 port 282 134077 unique_id port 134079 username mohammadmahdi 134079 mac 134079 bytes_out 3593163 134079 bytes_in 46016116 134079 station_ip 5.120.177.23 134079 port 293 134079 unique_id port 134079 remote_ip 10.8.0.54 134081 username rajaei 134081 kill_reason Another user logged on this global unique id 134081 mac 134081 bytes_out 0 134081 bytes_in 0 134081 station_ip 89.47.152.67 134081 port 282 134081 unique_id port 134081 remote_ip 10.8.0.34 134084 username kordestani 134084 mac 134084 bytes_out 3957854 134084 bytes_in 46563928 134084 station_ip 151.235.110.35 134084 port 286 134084 unique_id port 134084 remote_ip 10.8.0.134 134085 username barzegar 134085 mac 134085 bytes_out 0 134085 bytes_in 0 134085 station_ip 5.120.140.204 134085 port 177 134085 unique_id port 134085 remote_ip 10.8.1.174 134086 username moradi 134086 kill_reason Another user logged on this global unique id 134086 mac 134086 bytes_out 0 134086 bytes_in 0 134086 station_ip 37.129.45.87 134086 port 274 134086 unique_id port 134089 username kordestani 134089 mac 134089 bytes_out 496917 134089 bytes_in 5171104 134089 station_ip 151.235.93.224 134089 port 282 134089 unique_id port 134089 remote_ip 10.8.0.134 70654 username arezoo 134093 username jamali 134093 mac 134093 bytes_out 0 134093 bytes_in 0 134093 station_ip 5.119.80.43 134093 port 279 134093 unique_id port 134093 remote_ip 10.8.0.150 134095 username moradi 134095 kill_reason Another user logged on this global unique id 134095 mac 134095 bytes_out 0 134095 bytes_in 0 134074 kill_reason Another user logged on this global unique id 134074 mac 134074 bytes_out 0 134074 bytes_in 0 134074 station_ip 37.129.45.87 134074 port 274 134074 unique_id port 134075 username barzegar 134075 mac 134075 bytes_out 300299 134075 bytes_in 573958 134075 station_ip 5.120.140.204 134075 port 290 134075 unique_id port 134075 remote_ip 10.8.0.234 134082 username rajaei 134082 mac 134082 bytes_out 0 134082 bytes_in 0 134082 station_ip 89.47.152.67 134082 port 282 134082 unique_id port 134088 username barzegar 134088 kill_reason Maximum check online fails reached 134088 mac 134088 bytes_out 0 134088 bytes_in 0 134088 station_ip 5.120.140.204 134088 port 177 134088 unique_id port 134091 username moradi 134091 kill_reason Another user logged on this global unique id 134091 mac 134091 bytes_out 0 134091 bytes_in 0 134091 station_ip 37.129.45.87 134091 port 274 134091 unique_id port 134092 username barzegar 134092 mac 134092 bytes_out 0 134092 bytes_in 0 134092 station_ip 5.120.140.204 134092 port 178 134092 unique_id port 134092 remote_ip 10.8.1.174 134097 username milan 134097 kill_reason Another user logged on this global unique id 134097 mac 134097 bytes_out 0 134097 bytes_in 0 134097 station_ip 5.119.229.52 134097 port 290 134097 unique_id port 134097 remote_ip 10.8.0.218 134098 username hamidsalari 134098 mac 134098 bytes_out 0 134098 bytes_in 0 134098 station_ip 5.120.186.60 134098 port 289 134098 unique_id port 134098 remote_ip 10.8.0.230 134100 username hamidsalari 134100 kill_reason Another user logged on this global unique id 134100 mac 134100 bytes_out 0 134100 bytes_in 0 134100 station_ip 5.120.186.60 134100 port 296 134100 unique_id port 134100 remote_ip 10.8.0.222 134101 username barzegar 134101 mac 134101 bytes_out 0 134101 bytes_in 0 134101 station_ip 5.120.140.204 134101 port 284 134101 unique_id port 134101 remote_ip 10.8.0.234 134103 username rajaei 134103 mac 134103 bytes_out 0 134103 bytes_in 0 134103 station_ip 37.137.29.140 134103 port 279 134103 unique_id port 134103 remote_ip 10.8.0.34 134104 username milan 134104 kill_reason Another user logged on this global unique id 134104 mac 134104 bytes_out 0 134104 bytes_in 0 134104 station_ip 5.119.229.52 134104 port 290 134104 unique_id port 134106 username barzegar 134106 mac 134106 bytes_out 0 134106 bytes_in 0 134106 station_ip 5.120.140.204 134106 port 279 134106 unique_id port 134106 remote_ip 10.8.0.234 134107 username mahdiyehalizadeh 134107 mac 134107 bytes_out 0 134107 bytes_in 0 134107 station_ip 83.123.150.148 134107 port 293 134107 unique_id port 134107 remote_ip 10.8.0.82 134113 username barzegar 70654 kill_reason Relative expiration date has reached 70654 mac 5.238.33.135:49194: Unknown host 70654 bytes_out 0 70654 bytes_in 0 70654 station_ip 5.238.33.135:49194 70654 port 1017 70654 unique_id port 134113 mac 134113 bytes_out 0 134113 bytes_in 0 134113 station_ip 5.120.140.204 134113 port 284 134113 unique_id port 134113 remote_ip 10.8.0.234 134114 username amir 70656 username arezoo 70656 kill_reason Relative expiration date has reached 70656 mac 5.238.33.135:49239: Unknown host 70656 bytes_out 0 70656 bytes_in 0 70656 station_ip 5.238.33.135:49239 70656 port 1017 70656 unique_id port 134114 mac 134114 bytes_out 0 134114 bytes_in 0 134114 station_ip 46.225.214.127 134114 port 286 134114 unique_id port 134119 username alikomsari 134119 kill_reason Another user logged on this global unique id 134119 mac 134119 bytes_out 0 134119 bytes_in 0 134119 station_ip 5.120.132.43 134119 port 292 134095 station_ip 37.129.45.87 134095 port 274 134095 unique_id port 134096 username alikomsari 134096 kill_reason Another user logged on this global unique id 134096 mac 134096 bytes_out 0 134096 bytes_in 0 134096 station_ip 5.120.132.43 134096 port 292 134096 unique_id port 134108 username amir 134108 kill_reason Another user logged on this global unique id 134108 mac 134108 bytes_out 0 134108 bytes_in 0 134108 station_ip 46.225.214.127 134108 port 286 134108 unique_id port 134108 remote_ip 10.8.0.50 134110 username milan 134110 kill_reason Another user logged on this global unique id 134110 mac 134110 bytes_out 0 134110 bytes_in 0 134110 station_ip 5.119.229.52 134110 port 290 134110 unique_id port 134116 username amir 134116 mac 134116 bytes_out 0 134116 bytes_in 0 134116 station_ip 46.225.214.127 134116 port 284 134116 unique_id port 134116 remote_ip 10.8.0.50 134117 username barzegar 134117 mac 134117 bytes_out 0 134117 bytes_in 0 134117 station_ip 5.120.140.204 134117 port 286 134117 unique_id port 134117 remote_ip 10.8.0.234 134129 username barzegar 134129 mac 134129 bytes_out 0 134129 bytes_in 0 134129 station_ip 5.120.140.204 134129 port 279 134129 unique_id port 134129 remote_ip 10.8.0.234 134131 username naeimeh 134131 mac 134131 bytes_out 2986834 134131 bytes_in 35419461 134131 station_ip 83.122.84.206 134131 port 286 134131 unique_id port 134131 remote_ip 10.8.0.78 134132 username sekonji3 134132 mac 134132 bytes_out 0 134132 bytes_in 0 134132 station_ip 83.122.78.171 134132 port 279 134132 unique_id port 134132 remote_ip 10.8.0.6 134133 username sekonji3 134133 mac 134133 bytes_out 0 134133 bytes_in 0 134133 station_ip 83.122.78.171 134133 port 279 134133 unique_id port 134133 remote_ip 10.8.0.6 134139 username barzegar 134139 mac 134139 bytes_out 0 134139 bytes_in 0 134139 station_ip 5.120.140.204 134139 port 286 134139 unique_id port 134139 remote_ip 10.8.0.234 134145 username barzegar 134145 mac 134145 bytes_out 0 134145 bytes_in 0 134145 station_ip 5.120.140.204 134145 port 293 134145 unique_id port 134145 remote_ip 10.8.0.234 134146 username mahdixz 134146 unique_id port 134146 terminate_cause User-Request 134146 bytes_out 400811 134146 bytes_in 16066584 134146 station_ip 5.120.75.39 134146 port 15730443 134146 nas_port_type Virtual 134146 remote_ip 5.5.5.68 134154 username sekonji3 134154 mac 134154 bytes_out 0 134154 bytes_in 0 134154 station_ip 83.122.78.171 134154 port 286 134154 unique_id port 134154 remote_ip 10.8.0.6 134159 username amirabbas 134159 unique_id port 134159 terminate_cause User-Request 134159 bytes_out 51979857 134159 bytes_in 1430400398 134159 station_ip 37.27.17.204 134159 port 15730442 134159 nas_port_type Virtual 134159 remote_ip 5.5.5.59 134161 username milan 134161 kill_reason Another user logged on this global unique id 134161 mac 134161 bytes_out 0 134161 bytes_in 0 134161 station_ip 5.119.229.52 134161 port 290 134161 unique_id port 134163 username alikomsari 134163 mac 134163 bytes_out 1155028 134163 bytes_in 4576299 134163 station_ip 5.120.132.43 134163 port 286 134163 unique_id port 134163 remote_ip 10.8.0.70 134166 username barzegar 134166 mac 134166 bytes_out 0 134166 bytes_in 0 134166 station_ip 5.120.140.204 134166 port 286 134166 unique_id port 134166 remote_ip 10.8.0.234 134169 username barzegar 134169 mac 134169 bytes_out 0 134169 bytes_in 0 134169 station_ip 5.120.140.204 134169 port 289 134169 unique_id port 134169 remote_ip 10.8.0.234 134170 username milan 134111 station_ip 5.120.186.60 134111 port 296 134111 unique_id port 134112 username alikomsari 134112 kill_reason Another user logged on this global unique id 134112 mac 134112 bytes_out 0 134112 bytes_in 0 134112 station_ip 5.120.132.43 134112 port 292 134112 unique_id port 134115 username vanila 134115 mac 134115 bytes_out 0 134115 bytes_in 0 134115 station_ip 83.122.17.40 134115 port 289 134115 unique_id port 134115 remote_ip 10.8.0.178 134118 username barzegar 134118 kill_reason Maximum check online fails reached 134118 mac 134118 bytes_out 0 134118 bytes_in 0 134118 station_ip 5.120.140.204 134118 port 178 134118 unique_id port 134120 username barzegar 134120 mac 134120 bytes_out 0 134120 bytes_in 0 134120 station_ip 5.120.140.204 134120 port 289 134120 unique_id port 134120 remote_ip 10.8.0.234 134124 username sekonji3 134124 mac 134124 bytes_out 256939 134124 bytes_in 924154 134124 station_ip 83.122.78.171 134124 port 289 134124 unique_id port 134124 remote_ip 10.8.0.6 134127 username sekonji3 134127 mac 134127 bytes_out 0 134127 bytes_in 0 134127 station_ip 83.122.78.171 134127 port 289 134127 unique_id port 134127 remote_ip 10.8.0.6 134128 username sekonji3 134128 mac 134128 bytes_out 0 134128 bytes_in 0 134128 station_ip 83.122.78.171 134128 port 279 134128 unique_id port 134128 remote_ip 10.8.0.6 134130 username jamali 134130 mac 134130 bytes_out 0 134130 bytes_in 0 134130 station_ip 5.119.241.131 134130 port 289 134130 unique_id port 134130 remote_ip 10.8.0.150 134134 username jamali 134134 mac 134134 bytes_out 11840 134134 bytes_in 15487 134134 station_ip 5.119.241.131 134134 port 181 134134 unique_id port 134134 remote_ip 10.8.1.82 134135 username rajaei 134135 mac 134135 bytes_out 24118 134135 bytes_in 24447 134135 station_ip 37.137.29.140 134135 port 286 134135 unique_id port 134135 remote_ip 10.8.0.34 134136 username sekonji3 134136 mac 134136 bytes_out 324442 134136 bytes_in 4081574 134136 station_ip 83.122.78.171 134136 port 279 134136 unique_id port 134136 remote_ip 10.8.0.6 134138 username sekonji3 134138 mac 134138 bytes_out 0 134138 bytes_in 0 134138 station_ip 83.122.78.171 134138 port 286 134138 unique_id port 134138 remote_ip 10.8.0.6 134140 username sekonji3 134140 mac 134140 bytes_out 0 134140 bytes_in 0 134140 station_ip 83.122.78.171 134140 port 286 134140 unique_id port 134140 remote_ip 10.8.0.6 134141 username sekonji3 134141 mac 134141 bytes_out 0 134141 bytes_in 0 134141 station_ip 83.122.78.171 134141 port 286 134141 unique_id port 134141 remote_ip 10.8.0.6 134144 username alikomsari 134144 kill_reason Another user logged on this global unique id 134144 mac 134144 bytes_out 0 134144 bytes_in 0 134144 station_ip 5.120.132.43 134144 port 292 134144 unique_id port 134149 username jamali 134149 mac 134149 bytes_out 0 134149 bytes_in 0 134149 station_ip 5.119.241.131 134149 port 286 134149 unique_id port 134149 remote_ip 10.8.0.150 134151 username sekonji3 134151 mac 134151 bytes_out 0 134151 bytes_in 0 70719 kill_reason Relative expiration date has reached 70719 mac 5.238.33.135:49233: Unknown host 134151 station_ip 83.122.78.171 134151 port 286 134151 unique_id port 134151 remote_ip 10.8.0.6 134155 username mahdixz 134155 unique_id port 134155 terminate_cause Lost-Carrier 134155 bytes_out 417431 134155 bytes_in 14188255 134155 station_ip 5.120.75.39 134155 port 15730444 134155 nas_port_type Virtual 134155 remote_ip 5.5.5.70 134156 username barzegar 134156 mac 134119 unique_id port 134121 username mosi 134121 kill_reason Another user logged on this global unique id 134121 mac 134121 bytes_out 0 134121 bytes_in 0 134121 station_ip 151.235.64.171 134121 port 284 134121 unique_id port 134121 remote_ip 10.8.0.138 134122 username jamali 134122 mac 134122 bytes_out 0 134122 bytes_in 0 134122 station_ip 5.119.241.131 134122 port 279 134122 unique_id port 134122 remote_ip 10.8.0.150 134123 username jamali 134123 mac 134123 bytes_out 7130 134123 bytes_in 14508 134123 station_ip 5.119.241.131 134123 port 293 134123 unique_id port 134123 remote_ip 10.8.0.150 134125 username sekonji3 134125 mac 134125 bytes_out 0 134125 bytes_in 0 134125 station_ip 83.122.78.171 134125 port 289 134125 unique_id port 134125 remote_ip 10.8.0.6 134126 username jamali 134126 mac 134126 bytes_out 8896 134126 bytes_in 12460 134126 station_ip 5.119.241.131 134126 port 279 134126 unique_id port 134126 remote_ip 10.8.0.150 134137 username sekonji3 134137 mac 134137 bytes_out 0 134137 bytes_in 0 134137 station_ip 83.122.78.171 134137 port 279 134137 unique_id port 134137 remote_ip 10.8.0.6 134142 username sekonji3 134142 mac 134142 bytes_out 0 134142 bytes_in 0 134142 station_ip 83.122.78.171 134142 port 293 134142 unique_id port 134142 remote_ip 10.8.0.6 134143 username sekonji3 134143 mac 134143 bytes_out 0 134143 bytes_in 0 134143 station_ip 83.122.78.171 134143 port 293 134143 unique_id port 134143 remote_ip 10.8.0.6 134147 username rajaei 134147 mac 134147 bytes_out 3246272 134147 bytes_in 32343242 134147 station_ip 37.137.29.140 134147 port 289 134147 unique_id port 134147 remote_ip 10.8.0.34 134148 username sekonji3 134148 mac 134148 bytes_out 0 134148 bytes_in 0 134148 station_ip 83.122.78.171 134148 port 289 134148 unique_id port 134148 remote_ip 10.8.0.6 134150 username alikomsari 134150 mac 134150 bytes_out 0 134150 bytes_in 0 134150 station_ip 5.120.132.43 134150 port 292 134150 unique_id port 134152 username sekonji3 134152 mac 134152 bytes_out 0 134152 bytes_in 0 134152 station_ip 83.122.78.171 134152 port 286 134152 unique_id port 134152 remote_ip 10.8.0.6 134153 username barzegar 134153 mac 134153 bytes_out 0 134153 bytes_in 0 134153 station_ip 5.120.140.204 134153 port 181 134153 unique_id port 134153 remote_ip 10.8.1.174 134157 username barzegar 134157 mac 134157 bytes_out 0 134157 bytes_in 0 134157 station_ip 5.120.140.204 134157 port 181 134157 unique_id port 134157 remote_ip 10.8.1.174 134158 username milan 134158 kill_reason Another user logged on this global unique id 134158 mac 134158 bytes_out 0 134158 bytes_in 0 134158 station_ip 5.119.229.52 134158 port 290 134158 unique_id port 134160 username rajaei 134160 kill_reason Another user logged on this global unique id 134160 mac 134160 bytes_out 0 134160 bytes_in 0 134160 station_ip 37.137.29.140 134160 port 289 134160 unique_id port 134160 remote_ip 10.8.0.34 134162 username barzegar 134162 mac 134162 bytes_out 0 134162 bytes_in 0 134162 station_ip 5.120.140.204 134162 port 292 70719 username arezoo 134162 unique_id port 134162 remote_ip 10.8.0.234 134164 username rajaei 134164 kill_reason Another user logged on this global unique id 134164 mac 134164 bytes_out 0 134164 bytes_in 0 134164 station_ip 37.137.29.140 134164 port 289 134164 unique_id port 134167 username milan 134167 kill_reason Another user logged on this global unique id 134167 mac 134167 bytes_out 0 134167 bytes_in 0 134156 bytes_out 0 134156 bytes_in 0 134156 station_ip 5.120.140.204 134156 port 181 134156 unique_id port 134156 remote_ip 10.8.1.174 134165 username milan 134165 kill_reason Another user logged on this global unique id 134165 mac 134165 bytes_out 0 134165 bytes_in 0 134165 station_ip 5.119.229.52 134165 port 290 134165 unique_id port 134168 username rajaei 134168 mac 134168 bytes_out 0 134168 bytes_in 0 134168 station_ip 37.137.29.140 134168 port 289 134168 unique_id port 134171 username barzegar 134171 mac 134171 bytes_out 0 134171 bytes_in 0 134171 station_ip 5.120.140.204 134171 port 181 134171 unique_id port 134171 remote_ip 10.8.1.174 134177 username zare 134177 kill_reason Another user logged on this global unique id 134177 mac 134177 bytes_out 0 134177 bytes_in 0 134177 station_ip 37.27.27.38 134177 port 289 134177 unique_id port 134177 remote_ip 10.8.0.18 134184 mac 134184 bytes_out 0 134184 bytes_in 0 134184 station_ip 5.120.140.204 134184 port 181 134184 unique_id port 134184 remote_ip 10.8.1.174 134186 username barzegar 134186 mac 134186 bytes_out 0 134186 bytes_in 0 134186 station_ip 5.120.140.204 134186 port 181 134186 unique_id port 134186 remote_ip 10.8.1.174 134187 username zare 134187 kill_reason Another user logged on this global unique id 134187 mac 134187 bytes_out 0 134187 bytes_in 0 134187 station_ip 37.27.27.38 134187 port 289 134187 unique_id port 134191 username jamali 134191 mac 134191 bytes_out 0 134191 bytes_in 0 134191 station_ip 5.119.241.131 134191 port 274 134191 unique_id port 134191 remote_ip 10.8.0.150 134192 username jamali 134192 kill_reason Maximum check online fails reached 134192 mac 134192 bytes_out 0 134192 bytes_in 0 134192 station_ip 5.123.87.46 134192 port 274 134192 unique_id port 134194 username rajaei 134194 kill_reason Another user logged on this global unique id 134194 mac 134194 bytes_out 0 134194 bytes_in 0 134194 station_ip 5.62.194.150 134194 port 286 134194 unique_id port 134194 remote_ip 10.8.0.34 70719 bytes_out 0 70719 bytes_in 0 70719 station_ip 5.238.33.135:49233 70719 port 1017 70719 unique_id port 134196 username barzegar 134196 mac 134196 bytes_out 0 134196 bytes_in 0 134196 station_ip 5.120.140.204 134196 port 182 134196 unique_id port 134196 remote_ip 10.8.1.174 134197 username hashtadani3 134197 mac 134197 bytes_out 0 134197 bytes_in 0 134197 station_ip 37.129.135.68 134197 port 292 134197 unique_id port 134197 remote_ip 10.8.0.154 134198 username zare 134198 kill_reason Another user logged on this global unique id 134198 mac 134198 bytes_out 0 134198 bytes_in 0 134198 station_ip 37.27.27.38 134198 port 289 134198 unique_id port 134206 username hashtadani3 134206 mac 134206 bytes_out 0 134206 bytes_in 0 134206 station_ip 37.129.135.68 134206 port 286 134206 unique_id port 134206 remote_ip 10.8.0.154 134208 username jamali 134208 mac 134208 bytes_out 0 134208 bytes_in 0 134208 station_ip 5.123.87.46 134208 port 292 134208 unique_id port 134208 remote_ip 10.8.0.150 134214 username zare 134214 kill_reason Another user logged on this global unique id 134214 mac 134214 bytes_out 0 134214 bytes_in 0 134214 station_ip 37.27.27.38 134214 port 289 134214 unique_id port 134217 username jamali 134217 mac 134217 bytes_out 15681 134217 bytes_in 18244 134217 station_ip 5.123.87.46 134217 port 292 134217 unique_id port 134217 remote_ip 10.8.0.150 134219 username barzegar 134219 mac 134219 bytes_out 0 134219 bytes_in 0 134219 station_ip 5.120.140.204 134167 station_ip 5.119.229.52 134167 port 290 134167 unique_id port 134172 username milan 134172 kill_reason Another user logged on this global unique id 134172 mac 134172 bytes_out 0 134172 bytes_in 0 134172 station_ip 5.119.229.52 134172 port 290 134172 unique_id port 134173 username barzegar 134173 mac 134173 bytes_out 0 134173 bytes_in 0 134173 station_ip 5.120.140.204 134173 port 181 134173 unique_id port 134173 remote_ip 10.8.1.174 134174 username mansour 134174 mac 134174 bytes_out 0 134174 bytes_in 0 134174 station_ip 5.202.10.115 134174 port 286 134174 unique_id port 134174 remote_ip 10.8.0.30 134178 username milan 134178 kill_reason Another user logged on this global unique id 134178 mac 134178 bytes_out 0 134178 bytes_in 0 134178 station_ip 5.119.229.52 134178 port 290 134178 unique_id port 134179 username barzegar 134179 mac 134179 bytes_out 0 134179 bytes_in 0 134179 station_ip 5.120.140.204 134179 port 181 134179 unique_id port 134179 remote_ip 10.8.1.174 134180 username milan 134180 kill_reason Another user logged on this global unique id 134180 mac 134180 bytes_out 0 134180 bytes_in 0 134180 station_ip 5.119.229.52 134180 port 290 134180 unique_id port 134183 username milan 134183 kill_reason Another user logged on this global unique id 134183 mac 134183 bytes_out 0 134183 bytes_in 0 134183 station_ip 5.119.229.52 134183 port 290 134183 unique_id port 134185 username rajaei 134185 mac 134185 bytes_out 0 134185 bytes_in 0 134185 station_ip 37.137.46.198 134185 port 274 134185 unique_id port 134185 remote_ip 10.8.0.34 134188 username zare 134188 kill_reason Another user logged on this global unique id 134188 mac 134188 bytes_out 0 134188 bytes_in 0 134188 station_ip 37.27.27.38 134188 port 289 134188 unique_id port 134190 username barzegar 134190 mac 134190 bytes_out 0 134190 bytes_in 0 134190 station_ip 5.120.140.204 134190 port 181 134190 unique_id port 134190 remote_ip 10.8.1.174 134193 username barzegar 134193 mac 134193 bytes_out 0 134193 bytes_in 0 134193 station_ip 5.120.140.204 134193 port 181 134193 unique_id port 134193 remote_ip 10.8.1.174 134195 username rajaei 134195 mac 134195 bytes_out 0 134195 bytes_in 0 134195 station_ip 5.62.194.150 134195 port 286 134195 unique_id port 134199 username hashtadani3 134199 mac 134199 bytes_out 0 134199 bytes_in 0 134199 station_ip 37.129.135.68 134199 port 286 134199 unique_id port 134199 remote_ip 10.8.0.154 134201 username hashtadani3 134201 mac 134201 bytes_out 0 134201 bytes_in 0 134201 station_ip 37.129.135.68 134201 port 286 134201 unique_id port 134201 remote_ip 10.8.0.154 134203 username jamali 134203 mac 134203 bytes_out 96850 134203 bytes_in 237930 134203 station_ip 5.123.87.46 134203 port 286 134203 unique_id port 134203 remote_ip 10.8.0.150 134204 username jamali 134204 mac 134204 bytes_out 0 134204 bytes_in 0 134204 station_ip 5.123.87.46 134204 port 292 134204 unique_id port 134204 remote_ip 10.8.0.150 134205 username malekpoir 134205 mac 134205 bytes_out 0 134205 bytes_in 0 134205 station_ip 5.119.101.235 134205 port 294 134205 unique_id port 134205 remote_ip 10.8.0.58 134207 username hosseine 134207 mac 134207 bytes_out 0 134207 bytes_in 0 134207 station_ip 37.129.96.144 134207 port 174 134207 unique_id port 134209 username jamali 134209 mac 134209 bytes_out 8775 134209 bytes_in 14635 134209 station_ip 5.123.87.46 134209 port 286 134209 unique_id port 134209 remote_ip 10.8.0.150 134170 kill_reason Another user logged on this global unique id 134170 mac 134170 bytes_out 0 134170 bytes_in 0 134170 station_ip 5.119.229.52 134170 port 290 134170 unique_id port 134175 username moradi 134175 mac 134175 bytes_out 0 134175 bytes_in 0 134175 station_ip 37.129.45.87 134175 port 274 134175 unique_id port 134176 username barzegar 134176 mac 134176 bytes_out 0 134176 bytes_in 0 134176 station_ip 5.120.140.204 134176 port 181 134176 unique_id port 134176 remote_ip 10.8.1.174 134181 username barzegar 134181 mac 134181 bytes_out 0 134181 bytes_in 0 134181 station_ip 5.120.140.204 134181 port 181 134181 unique_id port 134181 remote_ip 10.8.1.174 134182 username barzegar 134182 mac 134182 bytes_out 0 134182 bytes_in 0 134182 station_ip 5.120.140.204 134182 port 181 134182 unique_id port 134182 remote_ip 10.8.1.174 134189 username zare 134189 kill_reason Another user logged on this global unique id 134189 mac 134189 bytes_out 0 134189 bytes_in 0 134189 station_ip 37.27.27.38 134189 port 289 134189 unique_id port 134200 username barzegar 134200 mac 134200 bytes_out 0 134200 bytes_in 0 134200 station_ip 5.120.140.204 134200 port 182 134200 unique_id port 134200 remote_ip 10.8.1.174 134202 username jamali 134202 mac 134202 bytes_out 23978 134202 bytes_in 26841 134202 station_ip 5.123.87.46 134202 port 181 134202 unique_id port 134202 remote_ip 10.8.1.82 134210 username barzegar 134210 mac 134210 bytes_out 0 134210 bytes_in 0 134210 station_ip 5.120.140.204 134210 port 292 134210 unique_id port 134210 remote_ip 10.8.0.234 134212 username zare 134212 kill_reason Another user logged on this global unique id 134212 mac 134212 bytes_out 0 134212 bytes_in 0 134212 station_ip 37.27.27.38 134212 port 289 134212 unique_id port 134215 username zare 134215 kill_reason Another user logged on this global unique id 134215 mac 134215 bytes_out 0 134215 bytes_in 0 134215 station_ip 37.27.27.38 134215 port 289 134215 unique_id port 134216 username hashtadani3 134216 mac 134216 bytes_out 0 134216 bytes_in 0 134216 station_ip 37.129.135.68 134216 port 286 134216 unique_id port 134216 remote_ip 10.8.0.154 134218 username zare 134218 mac 134218 bytes_out 0 134218 bytes_in 0 134218 station_ip 37.27.27.38 134218 port 289 134218 unique_id port 134220 username hashtadani3 134220 mac 134220 bytes_out 0 134220 bytes_in 0 134220 station_ip 37.129.135.68 134220 port 286 134220 unique_id port 134220 remote_ip 10.8.0.154 134226 username aminvpn 134226 mac 134226 bytes_out 0 134226 bytes_in 0 134226 station_ip 113.203.86.231 134226 port 286 134226 unique_id port 134226 remote_ip 10.8.0.14 134235 username hashtadani3 134235 mac 134235 bytes_out 0 134235 bytes_in 0 134235 station_ip 37.129.135.68 134235 port 289 134235 unique_id port 134235 remote_ip 10.8.0.154 134236 username barzegar 134236 mac 134236 bytes_out 0 134236 bytes_in 0 134236 station_ip 5.120.140.204 134236 port 174 134236 unique_id port 134236 remote_ip 10.8.1.174 134238 username hashtadani3 134238 mac 134238 bytes_out 0 134238 bytes_in 0 134238 station_ip 37.129.135.68 134238 port 289 134238 unique_id port 134238 remote_ip 10.8.0.154 134239 username aminvpn 134239 unique_id port 134239 terminate_cause User-Request 134239 bytes_out 5539343 134239 bytes_in 157026442 134239 station_ip 5.120.101.131 134239 port 15730446 134239 nas_port_type Virtual 134239 remote_ip 5.5.5.83 134240 username hashtadani3 134240 mac 134240 bytes_out 0 134211 username hashtadani3 134211 mac 134211 bytes_out 0 134211 bytes_in 0 134211 station_ip 37.129.135.68 134211 port 292 134211 unique_id port 134211 remote_ip 10.8.0.154 134213 username jamali 134213 mac 134213 bytes_out 11153 134213 bytes_in 14642 134213 station_ip 5.123.87.46 134213 port 286 134213 unique_id port 134213 remote_ip 10.8.0.150 134221 username jamali 134221 mac 134221 bytes_out 8855 134221 bytes_in 14426 134221 station_ip 5.123.87.46 134221 port 286 134221 unique_id port 134221 remote_ip 10.8.0.150 134223 username barzegar 134223 mac 134223 bytes_out 0 134223 bytes_in 0 134223 station_ip 5.120.140.204 134223 port 286 134223 unique_id port 134223 remote_ip 10.8.0.234 134225 username hashtadani3 134225 mac 134225 bytes_out 0 134225 bytes_in 0 134225 station_ip 37.129.135.68 134225 port 289 134225 unique_id port 134225 remote_ip 10.8.0.154 134227 username aminvpn 134227 unique_id port 134227 terminate_cause User-Request 134227 bytes_out 460465 134227 bytes_in 2598209 134227 station_ip 5.120.101.131 134227 port 15730445 134227 nas_port_type Virtual 134227 remote_ip 5.5.5.76 134229 username hashtadani3 134229 mac 134229 bytes_out 0 134229 bytes_in 0 134229 station_ip 37.129.135.68 134229 port 289 134229 unique_id port 134229 remote_ip 10.8.0.154 134230 username hashtadani3 134230 mac 134230 bytes_out 0 134230 bytes_in 0 134230 station_ip 37.129.135.68 134230 port 174 134230 unique_id port 134230 remote_ip 10.8.1.94 134232 username barzegar 134232 mac 134232 bytes_out 0 134232 bytes_in 0 134232 station_ip 5.120.140.204 134232 port 289 134232 unique_id port 134232 remote_ip 10.8.0.234 134233 username hashtadani3 134233 mac 134233 bytes_out 0 134233 bytes_in 0 134233 station_ip 37.129.135.68 134233 port 292 134233 unique_id port 134233 remote_ip 10.8.0.154 134234 username sedighe 134234 mac 134234 bytes_out 177820 134234 bytes_in 973201 134234 station_ip 37.129.45.145 134234 port 289 134234 unique_id port 134234 remote_ip 10.8.0.146 134251 username jamali 134251 mac 134251 bytes_out 0 134251 bytes_in 0 134251 station_ip 5.123.87.46 134251 port 286 134251 unique_id port 134251 remote_ip 10.8.0.150 134253 username sedighe 134253 mac 134253 bytes_out 0 134253 bytes_in 0 134253 station_ip 83.122.166.224 134253 port 292 134253 unique_id port 134253 remote_ip 10.8.0.146 134254 username hashtadani3 134254 mac 134254 bytes_out 0 134254 bytes_in 0 134254 station_ip 37.129.135.68 134254 port 292 134254 unique_id port 134254 remote_ip 10.8.0.154 134256 username jamali 134256 mac 134256 bytes_out 0 134256 bytes_in 0 134256 station_ip 5.123.87.46 134256 port 174 134256 unique_id port 134256 remote_ip 10.8.1.82 134260 username jamali 134260 mac 134260 bytes_out 0 134260 bytes_in 0 134260 station_ip 5.123.87.46 134260 port 174 134260 unique_id port 134260 remote_ip 10.8.1.82 134262 username mohammadjavad 134262 mac 134262 bytes_out 2002611 134262 bytes_in 32086512 134262 station_ip 37.129.216.160 134262 port 289 134262 unique_id port 134262 remote_ip 10.8.0.142 134267 username hashtadani3 134267 mac 134267 bytes_out 0 134267 bytes_in 0 134267 station_ip 37.129.135.68 134267 port 292 134267 unique_id port 134267 remote_ip 10.8.0.154 134270 username hashtadani3 134270 mac 134270 bytes_out 0 134270 bytes_in 0 134270 station_ip 37.129.135.68 134270 port 289 134270 unique_id port 134270 remote_ip 10.8.0.154 134274 username mohammadjavad 134219 port 286 134219 unique_id port 134219 remote_ip 10.8.0.234 134222 username hashtadani3 134222 mac 134222 bytes_out 0 134222 bytes_in 0 134222 station_ip 37.129.135.68 134222 port 286 134222 unique_id port 134222 remote_ip 10.8.0.154 134224 username hashtadani3 134224 mac 134224 bytes_out 0 134224 bytes_in 0 134224 station_ip 37.129.135.68 134224 port 286 134224 unique_id port 134224 remote_ip 10.8.0.154 134228 username jamali 134228 mac 134228 bytes_out 23156 134228 bytes_in 21833 134228 station_ip 5.123.87.46 134228 port 174 134228 unique_id port 134228 remote_ip 10.8.1.82 134231 username hashtadani3 134231 mac 134231 bytes_out 0 134231 bytes_in 0 134231 station_ip 37.129.135.68 134231 port 292 134231 unique_id port 134231 remote_ip 10.8.0.154 134237 username hashtadani3 134237 mac 134237 bytes_out 0 134237 bytes_in 0 134237 station_ip 37.129.135.68 134237 port 289 134237 unique_id port 134237 remote_ip 10.8.0.154 134241 username barzegar 134241 mac 134241 bytes_out 0 134241 bytes_in 0 134241 station_ip 5.120.140.204 134241 port 289 134241 unique_id port 134241 remote_ip 10.8.0.234 134242 username hashtadani3 134242 mac 134242 bytes_out 0 134242 bytes_in 0 134242 station_ip 37.129.135.68 134242 port 289 134242 unique_id port 134242 remote_ip 10.8.0.154 134243 username hashtadani3 134243 mac 134243 bytes_out 0 134243 bytes_in 0 134243 station_ip 37.129.135.68 134243 port 292 134243 unique_id port 134243 remote_ip 10.8.0.154 134245 username barzegar 134245 mac 134245 bytes_out 0 134245 bytes_in 0 134245 station_ip 5.120.140.204 134245 port 292 134245 unique_id port 134245 remote_ip 10.8.0.234 134246 username hashtadani3 134246 mac 134246 bytes_out 0 134246 bytes_in 0 134246 station_ip 37.129.135.68 134246 port 292 134246 unique_id port 134246 remote_ip 10.8.0.154 134248 username hashtadani3 134248 mac 134248 bytes_out 0 134248 bytes_in 0 134248 station_ip 37.129.135.68 134248 port 293 134248 unique_id port 134248 remote_ip 10.8.0.154 134250 username hashtadani3 134250 mac 134250 bytes_out 0 134250 bytes_in 0 134250 station_ip 37.129.135.68 134250 port 293 134250 unique_id port 134250 remote_ip 10.8.0.154 134252 username barzegar 134252 mac 134252 bytes_out 0 134252 bytes_in 0 134252 station_ip 5.120.140.204 134252 port 174 134252 unique_id port 134252 remote_ip 10.8.1.174 134255 username jamali 134255 mac 134255 bytes_out 20404 134255 bytes_in 32151 134255 station_ip 5.123.87.46 134255 port 286 134255 unique_id port 134255 remote_ip 10.8.0.150 134257 username barzegar 134257 mac 134257 bytes_out 0 134257 bytes_in 0 134257 station_ip 5.120.140.204 134257 port 181 134257 unique_id port 134257 remote_ip 10.8.1.174 134258 username hashtadani3 134258 mac 134258 bytes_out 0 134258 bytes_in 0 134258 station_ip 37.129.135.68 134258 port 286 134258 unique_id port 134258 remote_ip 10.8.0.154 134261 username barzegar 134261 mac 134261 bytes_out 0 134261 bytes_in 0 134261 station_ip 5.120.140.204 134261 port 174 134261 unique_id port 134261 remote_ip 10.8.1.174 134263 username hashtadani3 134263 mac 134263 bytes_out 0 134263 bytes_in 0 134263 station_ip 37.129.135.68 134263 port 286 134263 unique_id port 134263 remote_ip 10.8.0.154 134266 username barzegar 134266 mac 134266 bytes_out 0 134266 bytes_in 0 134266 station_ip 5.120.140.204 134266 port 292 134266 unique_id port 134240 bytes_in 0 134240 station_ip 37.129.135.68 134240 port 289 134240 unique_id port 134240 remote_ip 10.8.0.154 134244 username barzegar 134244 mac 134244 bytes_out 0 134244 bytes_in 0 134244 station_ip 5.120.140.204 134244 port 292 134244 unique_id port 134244 remote_ip 10.8.0.234 134247 username sedighe 134247 mac 134247 bytes_out 0 134247 bytes_in 0 134247 station_ip 83.122.166.224 134247 port 289 134247 unique_id port 134247 remote_ip 10.8.0.146 134249 username aminvpn 134249 unique_id port 134249 terminate_cause User-Request 134249 bytes_out 268705 134249 bytes_in 2042087 134249 station_ip 5.120.101.131 134249 port 15730447 134249 nas_port_type Virtual 134249 remote_ip 5.5.5.84 134259 username hashtadani3 134259 mac 134259 bytes_out 0 134259 bytes_in 0 134259 station_ip 37.129.135.68 134259 port 286 134259 unique_id port 134259 remote_ip 10.8.0.154 134264 username sedighe 134264 mac 134264 bytes_out 30519 134264 bytes_in 118807 134264 station_ip 83.122.166.224 134264 port 286 134264 unique_id port 134264 remote_ip 10.8.0.146 134265 username hashtadani3 134265 mac 134265 bytes_out 0 134265 bytes_in 0 134265 station_ip 37.129.135.68 134265 port 286 134265 unique_id port 134265 remote_ip 10.8.0.154 134269 username sedighe 134269 mac 134269 bytes_out 401404 134269 bytes_in 5405860 134269 station_ip 83.122.166.224 134269 port 289 134269 unique_id port 134269 remote_ip 10.8.0.146 134271 username sedighe 134271 mac 134271 bytes_out 50195 134271 bytes_in 281076 134271 station_ip 83.122.166.224 134271 port 287 134271 unique_id port 134271 remote_ip 10.8.0.146 134275 username mosi 134275 kill_reason Another user logged on this global unique id 134275 mac 134275 bytes_out 0 134275 bytes_in 0 134275 station_ip 151.235.64.171 134275 port 284 134275 unique_id port 134280 username hashtadani3 134280 mac 134280 bytes_out 0 134280 bytes_in 0 134280 station_ip 37.129.135.68 134280 port 286 134280 unique_id port 134280 remote_ip 10.8.0.154 134281 username hashtadani3 134281 mac 134281 bytes_out 0 134281 bytes_in 0 134281 station_ip 37.129.135.68 134281 port 286 134281 unique_id port 134281 remote_ip 10.8.0.154 134284 username jamali 134284 mac 134284 bytes_out 6746 134284 bytes_in 13134 134284 station_ip 5.123.234.13 134284 port 174 134284 unique_id port 134284 remote_ip 10.8.1.82 134293 username sedighe 134293 mac 134293 bytes_out 0 134293 bytes_in 0 134293 station_ip 37.129.143.218 134293 port 293 134293 unique_id port 134293 remote_ip 10.8.0.146 134298 username khademi 134298 mac 134298 bytes_out 0 134298 bytes_in 0 134298 station_ip 37.129.196.114 134298 port 275 134298 unique_id port 134300 username barzegar 134300 mac 134300 bytes_out 0 134300 bytes_in 0 134300 station_ip 5.120.140.204 134300 port 294 134300 unique_id port 134300 remote_ip 10.8.0.234 134301 username arash 134301 mac 134301 bytes_out 529893 134301 bytes_in 4611986 134301 station_ip 37.27.16.21 134301 port 293 134301 unique_id port 134301 remote_ip 10.8.0.114 134302 username houshang 134302 mac 134302 bytes_out 0 134302 bytes_in 0 134302 station_ip 5.120.190.101 134302 port 293 134302 unique_id port 134302 remote_ip 10.8.0.22 134303 username aminvpn 134303 kill_reason Another user logged on this global unique id 134303 mac 134303 bytes_out 0 134303 bytes_in 0 134303 station_ip 5.120.72.205 134303 port 289 134303 unique_id port 134303 remote_ip 10.8.0.14 134304 username sedighe 134304 mac 134266 remote_ip 10.8.0.234 134268 username mehdizare 134268 mac 134268 bytes_out 1973886 134268 bytes_in 5662712 134268 station_ip 5.120.148.206 134268 port 287 134268 unique_id port 134268 remote_ip 10.8.0.90 134272 username barzegar 134272 mac 134272 bytes_out 0 134272 bytes_in 0 134272 station_ip 5.120.140.204 134272 port 287 134272 unique_id port 134272 remote_ip 10.8.0.234 134273 username hashtadani3 134273 mac 134273 bytes_out 0 134273 bytes_in 0 134273 station_ip 37.129.135.68 134273 port 287 134273 unique_id port 134273 remote_ip 10.8.0.154 134282 username jamali 134282 mac 134282 bytes_out 10860 134282 bytes_in 9445 134282 station_ip 5.123.234.13 134282 port 174 134282 unique_id port 134282 remote_ip 10.8.1.82 134289 username hashtadani3 134289 mac 134289 bytes_out 0 134289 bytes_in 0 134289 station_ip 37.129.135.68 134289 port 293 134289 unique_id port 134289 remote_ip 10.8.0.154 134290 username sedighe 134290 mac 134290 bytes_out 0 134290 bytes_in 0 134290 station_ip 37.129.143.218 134290 port 287 134290 unique_id port 134290 remote_ip 10.8.0.146 134291 username barzegar 134291 mac 134291 bytes_out 0 134291 bytes_in 0 134291 station_ip 5.120.140.204 134291 port 174 134291 unique_id port 134291 remote_ip 10.8.1.174 134299 username mohammadjavad 134299 mac 134299 bytes_out 0 134299 bytes_in 0 134299 station_ip 83.122.136.203 134299 port 294 134299 unique_id port 134299 remote_ip 10.8.0.142 134307 username hashtadani3 134307 kill_reason Maximum check online fails reached 134307 mac 134307 bytes_out 0 134307 bytes_in 0 134307 station_ip 37.129.135.68 134307 port 174 134307 unique_id port 134310 username sedighe 134310 mac 134310 bytes_out 149922 134310 bytes_in 143180 134310 station_ip 83.122.161.156 134310 port 293 134310 unique_id port 134310 remote_ip 10.8.0.146 134315 username aminvpn 134315 mac 134315 bytes_out 0 134315 bytes_in 0 134315 station_ip 5.120.72.205 134315 port 289 134315 unique_id port 134315 remote_ip 10.8.0.14 134316 username aminvpn 134316 mac 134316 bytes_out 0 134316 bytes_in 0 134316 station_ip 37.129.218.53 134316 port 287 134316 unique_id port 134316 remote_ip 10.8.0.14 134318 username aminvpn 134318 mac 134318 bytes_out 0 134318 bytes_in 0 134318 station_ip 37.129.218.53 134318 port 287 134318 unique_id port 134318 remote_ip 10.8.0.14 134322 username aminvpn 134322 mac 134322 bytes_out 0 134322 bytes_in 0 134322 station_ip 37.129.218.53 134322 port 289 134322 unique_id port 134322 remote_ip 10.8.0.14 134326 username aminvpn 134326 mac 134326 bytes_out 0 134326 bytes_in 0 134326 station_ip 5.120.72.205 134326 port 289 134326 unique_id port 134326 remote_ip 10.8.0.14 134327 username aminvpn 134327 mac 134327 bytes_out 0 134327 bytes_in 0 134327 station_ip 37.129.3.218 134327 port 287 134327 unique_id port 134327 remote_ip 10.8.0.14 134331 username barzegar 134331 mac 134331 bytes_out 0 134331 bytes_in 0 134331 station_ip 5.120.140.204 134331 port 289 134331 unique_id port 134331 remote_ip 10.8.0.234 134336 username mosi 134336 mac 134336 bytes_out 0 134336 bytes_in 0 134336 station_ip 151.235.64.171 134336 port 284 134336 unique_id port 134338 username mosi 134338 mac 134338 bytes_out 0 134338 bytes_in 0 134338 station_ip 37.137.22.147 134338 port 289 134338 unique_id port 134338 remote_ip 10.8.0.138 134343 username aminvpn 134343 mac 134343 bytes_out 0 134274 mac 134274 bytes_out 184877 134274 bytes_in 620488 134274 station_ip 83.122.123.141 134274 port 286 134274 unique_id port 134274 remote_ip 10.8.0.142 134276 username hashtadani3 134276 mac 134276 bytes_out 0 134276 bytes_in 0 134276 station_ip 37.129.135.68 134276 port 286 134276 unique_id port 134276 remote_ip 10.8.0.154 134277 username hashtadani3 134277 mac 134277 bytes_out 0 134277 bytes_in 0 134277 station_ip 37.129.135.68 134277 port 286 134277 unique_id port 134277 remote_ip 10.8.0.154 134278 username jamali 134278 mac 134278 bytes_out 0 134278 bytes_in 0 134278 station_ip 5.124.175.159 134278 port 181 134278 unique_id port 134278 remote_ip 10.8.1.82 134279 username barzegar 134279 mac 134279 bytes_out 0 134279 bytes_in 0 134279 station_ip 5.120.140.204 134279 port 174 134279 unique_id port 134279 remote_ip 10.8.1.174 134283 username barzegar 134283 mac 134283 bytes_out 0 134283 bytes_in 0 134283 station_ip 5.120.140.204 134283 port 181 134283 unique_id port 134283 remote_ip 10.8.1.174 134285 username hashtadani3 134285 mac 134285 bytes_out 0 134285 bytes_in 0 134285 station_ip 37.129.135.68 134285 port 287 134285 unique_id port 134285 remote_ip 10.8.0.154 134286 username hashtadani3 134286 mac 134286 bytes_out 0 134286 bytes_in 0 134286 station_ip 37.129.135.68 134286 port 287 134286 unique_id port 134286 remote_ip 10.8.0.154 134287 username barzegar 134287 mac 134287 bytes_out 0 134287 bytes_in 0 134287 station_ip 5.120.140.204 134287 port 174 134287 unique_id port 134287 remote_ip 10.8.1.174 134288 username hashtadani3 134288 mac 134288 bytes_out 0 134288 bytes_in 0 134288 station_ip 37.129.135.68 134288 port 293 134288 unique_id port 134288 remote_ip 10.8.0.154 134292 username houshang 134292 mac 134292 bytes_out 255356 134292 bytes_in 1589083 134292 station_ip 5.120.190.101 134292 port 287 134292 unique_id port 134292 remote_ip 10.8.0.22 134294 username hashtadani3 134294 mac 134294 bytes_out 0 134294 bytes_in 0 134294 station_ip 37.129.135.68 134294 port 293 134294 unique_id port 134294 remote_ip 10.8.0.154 134295 username mehdizare 134295 mac 134295 bytes_out 0 134295 bytes_in 0 134295 station_ip 5.120.148.206 134295 port 292 134295 unique_id port 134295 remote_ip 10.8.0.90 134296 username houshang 134296 mac 134296 bytes_out 0 134296 bytes_in 0 134296 station_ip 5.120.190.101 134296 port 294 134296 unique_id port 134296 remote_ip 10.8.0.22 134297 username hashtadani3 134297 mac 134297 bytes_out 1644 134297 bytes_in 3948 134297 station_ip 37.129.135.68 134297 port 295 134297 unique_id port 134297 remote_ip 10.8.0.154 134306 username arash 134306 mac 134306 bytes_out 170613 134306 bytes_in 1760832 134306 station_ip 37.27.16.21 134306 port 294 134306 unique_id port 134306 remote_ip 10.8.0.114 134311 username hashtadani3 134311 mac 134311 bytes_out 0 134311 bytes_in 0 134311 station_ip 37.129.135.68 134311 port 287 134311 unique_id port 134311 remote_ip 10.8.0.154 134313 username aminvpn 134313 mac 134313 bytes_out 0 134313 bytes_in 0 134313 station_ip 5.120.72.205 134313 port 289 134313 unique_id port 134314 username aminvpn 134314 mac 134314 bytes_out 0 134314 bytes_in 0 134314 station_ip 37.129.218.53 134314 port 287 134314 unique_id port 134314 remote_ip 10.8.0.14 134317 username aminvpn 134317 mac 134317 bytes_out 0 134317 bytes_in 0 134317 station_ip 5.120.72.205 134304 bytes_out 0 134304 bytes_in 0 134304 station_ip 83.122.161.156 134304 port 287 134304 unique_id port 134304 remote_ip 10.8.0.146 134305 username hashtadani3 134305 mac 134305 bytes_out 0 134305 bytes_in 0 134305 station_ip 37.129.135.68 134305 port 287 134305 unique_id port 134305 remote_ip 10.8.0.154 134308 username arash 134308 mac 134308 bytes_out 38816 134308 bytes_in 191623 134308 station_ip 37.27.16.21 134308 port 287 134308 unique_id port 134308 remote_ip 10.8.0.114 134309 username barzegar 134309 mac 134309 bytes_out 0 134309 bytes_in 0 134309 station_ip 5.120.140.204 134309 port 287 134309 unique_id port 134309 remote_ip 10.8.0.234 134312 username hashtadani3 134312 mac 134312 bytes_out 0 134312 bytes_in 0 134312 station_ip 37.129.135.68 134312 port 287 134312 unique_id port 134312 remote_ip 10.8.0.154 134319 username hashtadani3 134319 mac 134319 bytes_out 0 134319 bytes_in 0 134319 station_ip 37.129.135.68 134319 port 287 134319 unique_id port 134319 remote_ip 10.8.0.154 134320 username aminvpn 134320 mac 134320 bytes_out 0 134320 bytes_in 0 134320 station_ip 5.120.72.205 134320 port 289 134320 unique_id port 134320 remote_ip 10.8.0.14 134323 username aminvpn 134323 mac 134323 bytes_out 0 134323 bytes_in 0 134323 station_ip 5.120.72.205 134323 port 287 134323 unique_id port 134323 remote_ip 10.8.0.14 134324 username aminvpn 134324 mac 134324 bytes_out 0 134324 bytes_in 0 134324 station_ip 37.129.3.218 134324 port 289 134324 unique_id port 134324 remote_ip 10.8.0.14 134328 username aminvpn 134328 mac 134328 bytes_out 0 134328 bytes_in 0 134328 station_ip 37.129.218.53 134328 port 289 134328 unique_id port 134328 remote_ip 10.8.0.14 134332 username aminvpn 134332 mac 134332 bytes_out 0 134332 bytes_in 0 134332 station_ip 5.120.72.205 134332 port 287 134332 unique_id port 134332 remote_ip 10.8.0.14 134334 username aminvpn 134334 mac 134334 bytes_out 0 134334 bytes_in 0 134334 station_ip 37.129.218.53 134334 port 287 134334 unique_id port 134334 remote_ip 10.8.0.14 134339 username aminvpn 134339 mac 134339 bytes_out 0 134339 bytes_in 0 134339 station_ip 37.129.3.218 134339 port 287 134339 unique_id port 134339 remote_ip 10.8.0.14 134340 username aminvpn 134340 mac 134340 bytes_out 0 134340 bytes_in 0 134340 station_ip 5.120.72.205 134340 port 289 134340 unique_id port 134340 remote_ip 10.8.0.14 134344 username barzegar 134344 mac 134344 bytes_out 2946 134344 bytes_in 5247 134344 station_ip 5.120.140.204 134344 port 293 134344 unique_id port 134344 remote_ip 10.8.0.234 134351 username aminvpn 134351 mac 134351 bytes_out 0 134351 bytes_in 0 134351 station_ip 37.129.218.53 134351 port 293 134351 unique_id port 134351 remote_ip 10.8.0.14 134359 username hashtadani3 134359 mac 134359 bytes_out 0 134359 bytes_in 0 134359 station_ip 37.129.135.68 134359 port 287 134359 unique_id port 134359 remote_ip 10.8.0.154 134360 username aminvpn 134360 mac 134360 bytes_out 0 134360 bytes_in 0 134360 station_ip 37.129.3.218 134360 port 284 134360 unique_id port 134360 remote_ip 10.8.0.14 134366 username barzegar 134366 mac 134366 bytes_out 0 134366 bytes_in 0 134366 station_ip 5.120.140.204 134366 port 181 134366 unique_id port 134366 remote_ip 10.8.1.174 134367 username hashtadani3 134367 mac 134367 bytes_out 0 134367 bytes_in 0 134367 station_ip 37.129.135.68 134367 port 289 134317 port 289 134317 unique_id port 134317 remote_ip 10.8.0.14 134321 username aminvpn 134321 mac 134321 bytes_out 0 134321 bytes_in 0 134321 station_ip 37.129.3.218 134321 port 287 134321 unique_id port 134321 remote_ip 10.8.0.14 134325 username aminvpn 134325 mac 134325 bytes_out 0 134325 bytes_in 0 134325 station_ip 37.129.218.53 134325 port 287 134325 unique_id port 134325 remote_ip 10.8.0.14 134329 username aminvpn 134329 mac 134329 bytes_out 0 134329 bytes_in 0 134329 station_ip 5.120.72.205 134329 port 287 134329 unique_id port 134329 remote_ip 10.8.0.14 134330 username aminvpn 134330 mac 134330 bytes_out 0 134330 bytes_in 0 134330 station_ip 37.129.3.218 134330 port 289 134330 unique_id port 134330 remote_ip 10.8.0.14 134333 username aminvpn 134333 mac 134333 bytes_out 0 134333 bytes_in 0 134333 station_ip 37.129.3.218 134333 port 289 134333 unique_id port 134333 remote_ip 10.8.0.14 134335 username aminvpn 134335 mac 134335 bytes_out 0 134335 bytes_in 0 134335 station_ip 5.120.72.205 134335 port 289 134335 unique_id port 134335 remote_ip 10.8.0.14 134337 username hashtadani3 134337 mac 134337 bytes_out 0 134337 bytes_in 0 134337 station_ip 37.129.135.68 134337 port 284 134337 unique_id port 134337 remote_ip 10.8.0.154 134341 username hashtadani3 134341 mac 134341 bytes_out 0 134341 bytes_in 0 134341 station_ip 37.129.135.68 134341 port 289 134341 unique_id port 134341 remote_ip 10.8.0.154 134342 username aminvpn 134342 mac 134342 bytes_out 0 134342 bytes_in 0 134342 station_ip 37.129.3.218 134342 port 294 134342 unique_id port 134342 remote_ip 10.8.0.14 134345 username aminvpn 134345 mac 134345 bytes_out 0 134345 bytes_in 0 134345 station_ip 37.129.3.218 134345 port 294 134345 unique_id port 134345 remote_ip 10.8.0.14 134346 username aminvpn 134346 mac 134346 bytes_out 0 134346 bytes_in 0 134346 station_ip 5.120.72.205 134346 port 289 134346 unique_id port 134346 remote_ip 10.8.0.14 134347 username aminvpn 134347 mac 134347 bytes_out 0 134347 bytes_in 0 134347 station_ip 37.129.3.218 134347 port 293 134347 unique_id port 134347 remote_ip 10.8.0.14 134349 username aminvpn 134349 mac 134349 bytes_out 0 134349 bytes_in 0 134349 station_ip 5.120.72.205 134349 port 293 134349 unique_id port 134349 remote_ip 10.8.0.14 134352 username aminvpn 134352 mac 134352 bytes_out 0 134352 bytes_in 0 134352 station_ip 5.120.72.205 134352 port 294 134352 unique_id port 134352 remote_ip 10.8.0.14 134353 username mosi 134353 mac 134353 bytes_out 306575 134353 bytes_in 1816493 134353 station_ip 37.137.22.147 134353 port 284 134353 unique_id port 134353 remote_ip 10.8.0.138 134355 username barzegar 134355 mac 134355 bytes_out 2522 134355 bytes_in 4876 134355 station_ip 5.120.140.204 134355 port 289 134355 unique_id port 134355 remote_ip 10.8.0.234 134357 username vanila 134357 mac 134357 bytes_out 0 134357 bytes_in 0 134357 station_ip 83.122.15.164 134357 port 287 134357 unique_id port 134357 remote_ip 10.8.0.178 134361 username aminvpn 134361 mac 134361 bytes_out 0 134361 bytes_in 0 134361 station_ip 37.129.218.53 134361 port 287 134361 unique_id port 134361 remote_ip 10.8.0.14 134363 username houshang 134363 mac 134363 bytes_out 0 134363 bytes_in 0 134363 station_ip 5.120.190.101 134363 port 289 134363 unique_id port 134363 remote_ip 10.8.0.22 134372 username vanila 134372 mac 134343 bytes_in 0 134343 station_ip 5.120.72.205 134343 port 289 134343 unique_id port 134343 remote_ip 10.8.0.14 134348 username aminvpn 134348 mac 134348 bytes_out 0 134348 bytes_in 0 134348 station_ip 37.129.218.53 134348 port 294 134348 unique_id port 134348 remote_ip 10.8.0.14 134350 username aminvpn 134350 mac 134350 bytes_out 0 134350 bytes_in 0 134350 station_ip 37.129.3.218 134350 port 294 134350 unique_id port 134350 remote_ip 10.8.0.14 134354 username aminvpn 134354 mac 134354 bytes_out 0 134354 bytes_in 0 134354 station_ip 37.129.3.218 134354 port 293 134354 unique_id port 134354 remote_ip 10.8.0.14 134356 username aminvpn 134356 mac 134356 bytes_out 0 134356 bytes_in 0 134356 station_ip 37.129.218.53 134356 port 284 134356 unique_id port 134356 remote_ip 10.8.0.14 134358 username aminvpn 134358 mac 134358 bytes_out 0 134358 bytes_in 0 134358 station_ip 5.120.72.205 134358 port 289 134358 unique_id port 134358 remote_ip 10.8.0.14 134362 username hashtadani3 134362 mac 134362 bytes_out 0 134362 bytes_in 0 134362 station_ip 37.129.135.68 134362 port 295 134362 unique_id port 134362 remote_ip 10.8.0.154 134364 username sekonji3 134364 mac 134364 bytes_out 20260 134364 bytes_in 121757 134364 station_ip 83.122.71.5 134364 port 293 134364 unique_id port 134364 remote_ip 10.8.0.6 134365 username barzegar 134365 mac 134365 bytes_out 0 134365 bytes_in 0 134365 station_ip 5.120.140.204 134365 port 181 134365 unique_id port 134365 remote_ip 10.8.1.174 134368 username vanila 134368 mac 134368 bytes_out 9188671 134368 bytes_in 8049118 134368 station_ip 83.122.15.164 134368 port 287 134368 unique_id port 134368 remote_ip 10.8.0.178 134369 username barzegar 134369 mac 134369 bytes_out 2523 134369 bytes_in 4698 134369 station_ip 5.120.140.204 134369 port 293 134369 unique_id port 134369 remote_ip 10.8.0.234 134370 username hamidsalari 134370 mac 134370 bytes_out 0 134370 bytes_in 0 134370 station_ip 5.120.186.60 134370 port 296 134370 unique_id port 134371 username hashtadani3 134371 mac 134371 bytes_out 0 134371 bytes_in 0 134371 station_ip 37.129.135.68 134371 port 296 134371 unique_id port 134371 remote_ip 10.8.0.154 134374 username forozandeh1 134374 mac 134374 bytes_out 926041 134374 bytes_in 7051555 134374 station_ip 83.122.149.55 134374 port 295 134374 unique_id port 134374 remote_ip 10.8.0.130 134375 username hashtadani3 134375 mac 134375 bytes_out 695943 134375 bytes_in 9280124 134375 station_ip 37.129.135.68 134375 port 296 134375 unique_id port 134375 remote_ip 10.8.0.154 134378 username hashtadani3 134378 mac 134378 bytes_out 823486 134378 bytes_in 11216885 134378 station_ip 37.129.135.68 134378 port 289 134378 unique_id port 134378 remote_ip 10.8.0.154 134379 username hashtadani3 134379 mac 134379 bytes_out 0 134379 bytes_in 0 134379 station_ip 37.129.135.68 134379 port 181 134379 unique_id port 134379 remote_ip 10.8.1.94 134381 username hashtadani3 134381 mac 134381 bytes_out 0 134381 bytes_in 0 134381 station_ip 37.129.135.68 134381 port 181 134381 unique_id port 134381 remote_ip 10.8.1.94 134383 username hashtadani3 134383 mac 134383 bytes_out 0 134383 bytes_in 0 134383 station_ip 37.129.135.68 134383 port 296 134383 unique_id port 134383 remote_ip 10.8.0.154 134387 username hashtadani3 134387 mac 134387 bytes_out 0 134387 bytes_in 0 134387 station_ip 37.129.135.68 134387 port 287 134367 unique_id port 134367 remote_ip 10.8.0.154 134373 username mohammadjavad 134373 mac 134373 bytes_out 870226 134373 bytes_in 16505656 134373 station_ip 83.122.94.170 134373 port 289 134373 unique_id port 134373 remote_ip 10.8.0.142 134382 username barzegar 134382 mac 134382 bytes_out 0 134382 bytes_in 0 134382 station_ip 5.120.140.204 134382 port 295 134382 unique_id port 134382 remote_ip 10.8.0.234 134384 username vanila 134384 mac 134384 bytes_out 0 134384 bytes_in 0 134384 station_ip 83.122.15.164 134384 port 289 134384 unique_id port 134384 remote_ip 10.8.0.178 134386 username arash 134386 mac 134386 bytes_out 0 134386 bytes_in 0 134386 station_ip 37.27.16.21 134386 port 287 134386 unique_id port 134386 remote_ip 10.8.0.114 134391 username khademi 134391 kill_reason Another user logged on this global unique id 134391 mac 134391 bytes_out 0 134391 bytes_in 0 134391 station_ip 37.129.196.114 134391 port 275 134391 unique_id port 134391 remote_ip 10.8.0.10 134392 username barzegar 134392 mac 134392 bytes_out 0 134392 bytes_in 0 134392 station_ip 5.120.140.204 134392 port 181 134392 unique_id port 134392 remote_ip 10.8.1.174 134393 username hashtadani3 134393 mac 134393 bytes_out 0 134393 bytes_in 0 134393 station_ip 37.129.135.68 134393 port 287 134393 unique_id port 134393 remote_ip 10.8.0.154 134394 username vanila 134394 mac 134394 bytes_out 6237200 134394 bytes_in 596549 134394 station_ip 83.122.15.164 134394 port 289 134394 unique_id port 134394 remote_ip 10.8.0.178 134396 username hashtadani3 134396 mac 134396 bytes_out 0 134396 bytes_in 0 134396 station_ip 37.129.135.68 134396 port 287 134396 unique_id port 134396 remote_ip 10.8.0.154 134400 username hashtadani3 134400 mac 134400 bytes_out 0 134400 bytes_in 0 134400 station_ip 37.129.135.68 134400 port 289 134400 unique_id port 134400 remote_ip 10.8.0.154 134404 username hashtadani3 134404 mac 134404 bytes_out 0 134404 bytes_in 0 134404 station_ip 37.129.135.68 134404 port 294 134404 unique_id port 134404 remote_ip 10.8.0.154 134405 username hashtadani3 134405 mac 134405 bytes_out 0 134405 bytes_in 0 134405 station_ip 37.129.135.68 134405 port 181 134405 unique_id port 134405 remote_ip 10.8.1.94 134413 username hamidsalari 134413 mac 134413 bytes_out 150008 134413 bytes_in 363708 134413 station_ip 5.119.92.87 134413 port 293 134413 unique_id port 134413 remote_ip 10.8.0.222 134415 username hashtadani3 134415 mac 134415 bytes_out 0 134415 bytes_in 0 134415 station_ip 37.129.135.68 134415 port 289 134415 unique_id port 134415 remote_ip 10.8.0.154 134417 username hamidsalari 134417 mac 134417 bytes_out 0 134417 bytes_in 0 134417 station_ip 5.119.35.164 134417 port 287 134417 unique_id port 134417 remote_ip 10.8.0.222 134423 username hashtadani3 134423 mac 134423 bytes_out 0 134423 bytes_in 0 134423 station_ip 37.129.135.68 134423 port 287 134423 unique_id port 134423 remote_ip 10.8.0.154 134430 username hashtadani3 134430 mac 134430 bytes_out 0 134430 bytes_in 0 134430 station_ip 37.129.135.68 134430 port 294 134430 unique_id port 134430 remote_ip 10.8.0.154 134434 username hashtadani3 134434 mac 134434 bytes_out 0 134434 bytes_in 0 134434 station_ip 37.129.135.68 134434 port 297 134434 unique_id port 134434 remote_ip 10.8.0.154 134441 username sekonji3 134441 mac 134441 bytes_out 313212 134441 bytes_in 5756503 134441 station_ip 83.122.71.5 134441 port 289 134372 bytes_out 9675664 134372 bytes_in 14527073 134372 station_ip 83.122.15.164 134372 port 287 134372 unique_id port 134372 remote_ip 10.8.0.178 134376 username hashtadani3 134376 mac 134376 bytes_out 0 134376 bytes_in 0 134376 station_ip 37.129.135.68 134376 port 287 134376 unique_id port 134376 remote_ip 10.8.0.154 134377 username barzegar 134377 mac 134377 bytes_out 0 134377 bytes_in 0 134377 station_ip 5.120.140.204 134377 port 287 134377 unique_id port 134377 remote_ip 10.8.0.234 134380 username hashtadani3 134380 mac 134380 bytes_out 0 134380 bytes_in 0 134380 station_ip 37.129.135.68 134380 port 181 134380 unique_id port 134380 remote_ip 10.8.1.94 134385 username hashtadani3 134385 mac 134385 bytes_out 0 134385 bytes_in 0 134385 station_ip 37.129.135.68 134385 port 289 134385 unique_id port 134385 remote_ip 10.8.0.154 134389 username barzegar 134389 mac 134389 bytes_out 0 134389 bytes_in 0 134389 station_ip 5.120.140.204 134389 port 181 134389 unique_id port 134389 remote_ip 10.8.1.174 134390 username hashtadani3 134390 mac 134390 bytes_out 0 134390 bytes_in 0 134390 station_ip 37.129.135.68 134390 port 287 134390 unique_id port 134390 remote_ip 10.8.0.154 134395 username khademi 134395 kill_reason Another user logged on this global unique id 134395 mac 134395 bytes_out 0 134395 bytes_in 0 134395 station_ip 37.129.196.114 134395 port 275 134395 unique_id port 134399 username khademi 134399 kill_reason Another user logged on this global unique id 134399 mac 134399 bytes_out 0 134399 bytes_in 0 134399 station_ip 37.129.196.114 134399 port 275 134399 unique_id port 134401 username hashtadani3 134401 mac 134401 bytes_out 0 134401 bytes_in 0 134401 station_ip 37.129.135.68 134401 port 289 134401 unique_id port 134401 remote_ip 10.8.0.154 134402 username mosi 134402 mac 134402 bytes_out 0 134402 bytes_in 0 134402 station_ip 151.235.64.171 134402 port 294 134402 unique_id port 134402 remote_ip 10.8.0.138 134406 username vanila 134406 mac 134406 bytes_out 0 134406 bytes_in 0 134406 station_ip 83.122.15.164 134406 port 287 134406 unique_id port 134406 remote_ip 10.8.0.178 134408 username hashtadani3 134408 mac 134408 bytes_out 0 134408 bytes_in 0 134408 station_ip 37.129.135.68 134408 port 287 134408 unique_id port 134408 remote_ip 10.8.0.154 134409 username mosi 134409 mac 134409 bytes_out 0 134409 bytes_in 0 134409 station_ip 37.137.22.147 134409 port 289 134409 unique_id port 134409 remote_ip 10.8.0.138 134411 username amin.saeedi 134411 unique_id port 134411 terminate_cause User-Request 134411 bytes_out 51254 134411 bytes_in 109553 134411 station_ip 5.119.92.72 134411 port 15730449 134411 nas_port_type Virtual 134411 remote_ip 5.5.5.96 134420 username barzegar 134420 mac 134420 bytes_out 0 134420 bytes_in 0 134420 station_ip 5.120.140.204 134420 port 287 134420 unique_id port 134420 remote_ip 10.8.0.234 134421 username hashtadani3 134421 mac 134421 bytes_out 0 134421 bytes_in 0 134421 station_ip 37.129.135.68 134421 port 287 134421 unique_id port 134421 remote_ip 10.8.0.154 134422 username hashtadani3 134422 mac 134422 bytes_out 0 134422 bytes_in 0 134422 station_ip 37.129.135.68 134422 port 287 134422 unique_id port 134422 remote_ip 10.8.0.154 134424 username hashtadani3 134424 mac 134424 bytes_out 0 134424 bytes_in 0 134424 station_ip 37.129.135.68 134424 port 287 134424 unique_id port 134424 remote_ip 10.8.0.154 134426 username vanila 134387 unique_id port 134387 remote_ip 10.8.0.154 134388 username hashtadani3 134388 mac 134388 bytes_out 0 134388 bytes_in 0 134388 station_ip 37.129.135.68 134388 port 287 134388 unique_id port 134388 remote_ip 10.8.0.154 134397 username barzegar 134397 mac 134397 bytes_out 0 134397 bytes_in 0 134397 station_ip 5.120.140.204 134397 port 287 134397 unique_id port 134397 remote_ip 10.8.0.234 134398 username hashtadani3 134398 mac 134398 bytes_out 0 134398 bytes_in 0 134398 station_ip 37.129.135.68 134398 port 287 134398 unique_id port 134398 remote_ip 10.8.0.154 134403 username hashtadani3 134403 mac 134403 bytes_out 0 134403 bytes_in 0 134403 station_ip 37.129.135.68 134403 port 294 134403 unique_id port 134403 remote_ip 10.8.0.154 134407 username hashtadani3 134407 mac 134407 bytes_out 0 134407 bytes_in 0 134407 station_ip 37.129.135.68 134407 port 287 134407 unique_id port 134407 remote_ip 10.8.0.154 134410 username hamid.e 134410 unique_id port 134410 terminate_cause User-Request 134410 bytes_out 10705578 134410 bytes_in 109420731 134410 station_ip 37.27.13.103 134410 port 15730448 134410 nas_port_type Virtual 134410 remote_ip 5.5.5.92 134412 username barzegar 134412 mac 134412 bytes_out 0 134412 bytes_in 0 134412 station_ip 5.120.140.204 134412 port 181 134412 unique_id port 134412 remote_ip 10.8.1.174 134414 username houshang 134414 mac 134414 bytes_out 0 134414 bytes_in 0 134414 station_ip 5.120.190.101 134414 port 294 134414 unique_id port 134414 remote_ip 10.8.0.22 134416 username khademi 134416 kill_reason Another user logged on this global unique id 134416 mac 134416 bytes_out 0 134416 bytes_in 0 134416 station_ip 37.129.196.114 134416 port 275 134416 unique_id port 134418 username barzegar 134418 mac 134418 bytes_out 0 134418 bytes_in 0 134418 station_ip 5.120.140.204 134418 port 181 134418 unique_id port 134418 remote_ip 10.8.1.174 134419 username mohammadjavad 134419 mac 134419 bytes_out 0 134419 bytes_in 0 134419 station_ip 83.122.200.56 134419 port 289 134419 unique_id port 134419 remote_ip 10.8.0.142 134425 username barzegar 134425 mac 134425 bytes_out 0 134425 bytes_in 0 134425 station_ip 5.120.140.204 134425 port 181 134425 unique_id port 134425 remote_ip 10.8.1.174 134427 username hashtadani3 134427 mac 134427 bytes_out 0 134427 bytes_in 0 134427 station_ip 37.129.135.68 134427 port 289 134427 unique_id port 134427 remote_ip 10.8.0.154 134429 username barzegar 134429 mac 134429 bytes_out 0 134429 bytes_in 0 134429 station_ip 5.120.140.204 134429 port 181 134429 unique_id port 134429 remote_ip 10.8.1.174 134431 username hashtadani3 134431 mac 134431 bytes_out 0 134431 bytes_in 0 134431 station_ip 37.129.135.68 134431 port 294 134431 unique_id port 134431 remote_ip 10.8.0.154 134433 username barzegar 134433 kill_reason Maximum check online fails reached 134433 mac 134433 bytes_out 0 134433 bytes_in 0 134433 station_ip 5.120.140.204 134433 port 294 134433 unique_id port 134435 username sedighe 134435 mac 134435 bytes_out 161365 134435 bytes_in 659497 134435 station_ip 83.122.84.5 134435 port 293 134435 unique_id port 134435 remote_ip 10.8.0.146 134436 username hashtadani3 134436 mac 134436 bytes_out 0 134436 bytes_in 0 134436 station_ip 37.129.135.68 134436 port 297 134436 unique_id port 134436 remote_ip 10.8.0.154 134437 username hashtadani3 134437 mac 134437 bytes_out 0 134437 bytes_in 0 134437 station_ip 37.129.135.68 134426 mac 134426 bytes_out 3908890 134426 bytes_in 547033 134426 station_ip 83.122.15.164 134426 port 289 134426 unique_id port 134426 remote_ip 10.8.0.178 134428 username milan 134428 kill_reason Another user logged on this global unique id 134428 mac 134428 bytes_out 0 134428 bytes_in 0 134428 station_ip 5.119.229.52 134428 port 290 134428 unique_id port 134432 username hashtadani3 134432 mac 134432 bytes_out 0 134432 bytes_in 0 134432 station_ip 37.129.135.68 134432 port 296 134432 unique_id port 134432 remote_ip 10.8.0.154 134438 username barzegar 134438 mac 134438 bytes_out 3559 134438 bytes_in 5389 134438 station_ip 5.120.140.204 134438 port 298 134438 unique_id port 134438 remote_ip 10.8.0.234 134439 username houshang 134439 kill_reason Another user logged on this global unique id 134439 mac 134439 bytes_out 0 134439 bytes_in 0 134439 station_ip 5.120.190.101 134439 port 287 134439 unique_id port 134439 remote_ip 10.8.0.22 134440 username hashtadani3 134440 mac 134440 bytes_out 251519 134440 bytes_in 1877543 134440 station_ip 37.129.135.68 134440 port 297 134440 unique_id port 134440 remote_ip 10.8.0.154 134442 username sekonji3 134442 mac 134442 bytes_out 0 134442 bytes_in 0 134442 station_ip 83.122.71.5 134442 port 289 134442 unique_id port 134442 remote_ip 10.8.0.6 134443 username sekonji3 134443 mac 134443 bytes_out 0 134443 bytes_in 0 134443 station_ip 83.122.71.5 134443 port 289 134443 unique_id port 134443 remote_ip 10.8.0.6 134446 username hashtadani3 134446 mac 134446 bytes_out 0 134446 bytes_in 0 134446 station_ip 37.129.135.68 134446 port 297 134446 unique_id port 134446 remote_ip 10.8.0.154 134449 username hashtadani3 134449 mac 134449 bytes_out 0 134449 bytes_in 0 134449 station_ip 37.129.135.68 134449 port 297 134449 unique_id port 134449 remote_ip 10.8.0.154 134452 username sekonji3 134452 mac 134452 bytes_out 0 134452 bytes_in 0 134452 station_ip 83.122.71.5 134452 port 284 134452 unique_id port 134452 remote_ip 10.8.0.6 134455 username mehdizare 134455 mac 134455 bytes_out 0 134455 bytes_in 0 134455 station_ip 5.120.148.206 134455 port 292 134455 unique_id port 134455 remote_ip 10.8.0.90 134459 username hashtadani3 134459 mac 134459 bytes_out 0 134459 bytes_in 0 134459 station_ip 37.129.135.68 134459 port 284 134459 unique_id port 134459 remote_ip 10.8.0.154 134462 username hashtadani3 134462 mac 134462 bytes_out 0 134462 bytes_in 0 134462 station_ip 37.129.135.68 134462 port 284 134462 unique_id port 134462 remote_ip 10.8.0.154 134465 username godarzi 134465 kill_reason Another user logged on this global unique id 134465 mac 134465 bytes_out 0 134465 bytes_in 0 134465 station_ip 5.202.15.249 134465 port 295 134465 unique_id port 134465 remote_ip 10.8.0.174 134467 username mostafa_es78 134467 unique_id port 134467 terminate_cause User-Request 134467 bytes_out 256268 134467 bytes_in 2271668 134467 station_ip 5.120.183.62 134467 port 15730453 134467 nas_port_type Virtual 134467 remote_ip 5.5.5.99 134468 username sabaghnezhad 134468 mac 134468 bytes_out 0 134468 bytes_in 0 134468 station_ip 83.123.148.66 134468 port 282 134468 unique_id port 134468 remote_ip 10.8.0.186 134477 username hashtadani3 134477 mac 134477 bytes_out 0 134477 bytes_in 0 134477 station_ip 37.129.135.68 134477 port 282 134477 unique_id port 134477 remote_ip 10.8.0.154 134478 username milan 134478 kill_reason Another user logged on this global unique id 134478 mac 134478 bytes_out 0 134478 bytes_in 0 134437 port 297 134437 unique_id port 134437 remote_ip 10.8.0.154 134445 username sekonji3 134445 mac 134445 bytes_out 0 134445 bytes_in 0 134445 station_ip 83.122.71.5 134445 port 289 134445 unique_id port 134445 remote_ip 10.8.0.6 134448 username sekonji3 134448 mac 134448 bytes_out 0 134448 bytes_in 0 134448 station_ip 83.122.71.5 134448 port 289 134448 unique_id port 134448 remote_ip 10.8.0.6 134450 username aminvpn 134450 mac 134450 bytes_out 3081625 134450 bytes_in 18543246 134450 station_ip 5.120.72.205 134450 port 284 134450 unique_id port 134450 remote_ip 10.8.0.14 134451 username barzegar 134451 mac 134451 bytes_out 0 134451 bytes_in 0 134451 station_ip 5.120.140.204 134451 port 181 134451 unique_id port 134451 remote_ip 10.8.1.174 134454 username barzegar 134454 mac 134454 bytes_out 0 134454 bytes_in 0 134454 station_ip 5.120.140.204 134454 port 181 134454 unique_id port 134454 remote_ip 10.8.1.174 134457 username sekonji3 134457 mac 134457 bytes_out 0 134457 bytes_in 0 134457 station_ip 83.122.71.5 134457 port 284 134457 unique_id port 134457 remote_ip 10.8.0.6 134461 username milan 134461 kill_reason Another user logged on this global unique id 134461 mac 134461 bytes_out 0 134461 bytes_in 0 134461 station_ip 5.119.229.52 134461 port 290 134461 unique_id port 134464 username barzegar 134464 mac 134464 bytes_out 0 134464 bytes_in 0 134464 station_ip 5.120.140.204 134464 port 181 134464 unique_id port 134464 remote_ip 10.8.1.174 134466 username sekonji3 134466 mac 134466 bytes_out 0 134466 bytes_in 0 134466 station_ip 83.122.71.5 134466 port 287 134466 unique_id port 134466 remote_ip 10.8.0.6 134471 username godarzi 134471 mac 134471 bytes_out 0 134471 bytes_in 0 134471 station_ip 5.202.15.249 134471 port 295 134471 unique_id port 134472 username sekonji3 134472 mac 134472 bytes_out 0 134472 bytes_in 0 134472 station_ip 83.122.71.5 134472 port 282 134472 unique_id port 134472 remote_ip 10.8.0.6 134473 username sekonji3 134473 mac 134473 bytes_out 0 134473 bytes_in 0 134473 station_ip 83.122.71.5 134473 port 282 134473 unique_id port 134473 remote_ip 10.8.0.6 134476 username sekonji3 134476 mac 134476 bytes_out 0 134476 bytes_in 0 134476 station_ip 83.122.71.5 134476 port 282 134476 unique_id port 134476 remote_ip 10.8.0.6 134479 username barzegar 134479 mac 134479 bytes_out 0 134479 bytes_in 0 134479 station_ip 5.120.140.204 134479 port 284 134479 unique_id port 134479 remote_ip 10.8.0.234 134484 username hamid 134484 kill_reason Relative expiration date has reached 134484 mac 134484 bytes_out 0 134484 bytes_in 0 134484 station_ip 113.203.3.111 134484 port 282 134484 unique_id port 134490 username sekonji3 134490 mac 134490 bytes_out 0 134490 bytes_in 0 134490 station_ip 83.122.71.5 134490 port 284 134490 unique_id port 134490 remote_ip 10.8.0.6 134495 username hashtadani3 134495 mac 134495 bytes_out 0 134495 bytes_in 0 134495 station_ip 37.129.170.88 134495 port 282 134495 unique_id port 134495 remote_ip 10.8.0.154 134496 username barzegar 134496 mac 134496 bytes_out 2814 134496 bytes_in 4982 134496 station_ip 5.120.140.204 134496 port 287 134496 unique_id port 134496 remote_ip 10.8.0.234 134502 username barzegar 134502 mac 134502 bytes_out 0 134502 bytes_in 0 134502 station_ip 5.120.140.204 134502 port 284 134502 unique_id port 134502 remote_ip 10.8.0.234 134506 username sekonji3 134441 unique_id port 134441 remote_ip 10.8.0.6 134444 username milan 134444 kill_reason Another user logged on this global unique id 134444 mac 134444 bytes_out 0 134444 bytes_in 0 134444 station_ip 5.119.229.52 134444 port 290 134444 unique_id port 134447 username sekonji3 134447 mac 134447 bytes_out 0 134447 bytes_in 0 134447 station_ip 83.122.71.5 134447 port 289 134447 unique_id port 134447 remote_ip 10.8.0.6 134453 username sekonji3 134453 mac 134453 bytes_out 0 134453 bytes_in 0 134453 station_ip 83.122.71.5 134453 port 284 134453 unique_id port 134453 remote_ip 10.8.0.6 134456 username barzegar 134456 mac 134456 bytes_out 0 134456 bytes_in 0 134456 station_ip 5.120.140.204 134456 port 181 134456 unique_id port 134456 remote_ip 10.8.1.174 134458 username sekonji3 134458 mac 134458 bytes_out 0 134458 bytes_in 0 134458 station_ip 83.122.71.5 134458 port 284 134458 unique_id port 134458 remote_ip 10.8.0.6 134460 username hashtadani3 134460 mac 134460 bytes_out 0 134460 bytes_in 0 134460 station_ip 37.129.135.68 134460 port 284 134460 unique_id port 134460 remote_ip 10.8.0.154 134463 username houshang 134463 mac 134463 bytes_out 0 134463 bytes_in 0 134463 station_ip 5.120.190.101 134463 port 287 134463 unique_id port 134469 username sekonji3 134469 mac 134469 bytes_out 0 134469 bytes_in 0 134469 station_ip 83.122.71.5 134469 port 287 134469 unique_id port 134469 remote_ip 10.8.0.6 134470 username sekonji3 134470 mac 134470 bytes_out 0 134470 bytes_in 0 134470 station_ip 83.122.71.5 134470 port 282 134470 unique_id port 134470 remote_ip 10.8.0.6 134474 username sekonji3 134474 mac 134474 bytes_out 0 134474 bytes_in 0 134474 station_ip 83.122.71.5 134474 port 282 134474 unique_id port 134474 remote_ip 10.8.0.6 134475 username hashtadani3 134475 mac 134475 bytes_out 0 134475 bytes_in 0 134475 station_ip 37.129.135.68 134475 port 284 134475 unique_id port 134475 remote_ip 10.8.0.154 134481 username hashtadani3 134481 mac 134481 bytes_out 0 134481 bytes_in 0 134481 station_ip 37.129.135.68 134481 port 282 134481 unique_id port 134481 remote_ip 10.8.0.154 134485 username arash 134485 mac 134485 bytes_out 0 134485 bytes_in 0 134485 station_ip 37.27.16.21 134485 port 292 134485 unique_id port 134485 remote_ip 10.8.0.114 134487 username mohammadjavad 134487 mac 134487 bytes_out 1075531 134487 bytes_in 21912564 134487 station_ip 83.123.73.84 134487 port 284 134487 unique_id port 134487 remote_ip 10.8.0.142 134489 username hashtadani3 134489 mac 134489 bytes_out 0 134489 bytes_in 0 134489 station_ip 37.129.170.88 134489 port 284 134489 unique_id port 134489 remote_ip 10.8.0.154 134491 username hashtadani3 134491 mac 134491 bytes_out 47709 134491 bytes_in 653580 134491 station_ip 37.129.170.88 134491 port 282 134491 unique_id port 134491 remote_ip 10.8.0.154 134493 username barzegar 134493 mac 134493 bytes_out 0 134493 bytes_in 0 134493 station_ip 5.120.140.204 134493 port 289 134493 unique_id port 134493 remote_ip 10.8.0.234 134508 username sekonji3 134508 mac 134508 bytes_out 0 134508 bytes_in 0 134508 station_ip 83.122.71.5 134508 port 293 134508 unique_id port 134508 remote_ip 10.8.0.6 134513 username barzegar 134513 mac 134513 bytes_out 0 134513 bytes_in 0 134513 station_ip 5.120.140.204 134513 port 184 134513 unique_id port 134513 remote_ip 10.8.1.174 134514 username zotaher 134514 mac 134478 station_ip 5.119.229.52 134478 port 290 134478 unique_id port 134480 username sekonji3 134480 mac 134480 bytes_out 0 134480 bytes_in 0 134480 station_ip 83.122.71.5 134480 port 289 134480 unique_id port 134480 remote_ip 10.8.0.6 134482 username sekonji3 134482 mac 134482 bytes_out 0 134482 bytes_in 0 134482 station_ip 83.122.71.5 134482 port 282 134482 unique_id port 134482 remote_ip 10.8.0.6 134483 username sekonji3 134483 mac 134483 bytes_out 0 134483 bytes_in 0 134483 station_ip 83.122.71.5 134483 port 282 134483 unique_id port 134483 remote_ip 10.8.0.6 134486 username mostafa_es78 134486 unique_id port 134486 terminate_cause User-Request 134486 bytes_out 239075 134486 bytes_in 8924218 134486 station_ip 5.119.148.169 134486 port 15730458 134486 nas_port_type Virtual 134486 remote_ip 5.5.5.5 134488 username hashtadani3 134488 mac 134488 bytes_out 173536 134488 bytes_in 1724358 134488 station_ip 37.129.135.68 134488 port 282 134488 unique_id port 134488 remote_ip 10.8.0.154 134492 username hashtadani3 134492 mac 134492 bytes_out 0 134492 bytes_in 0 134492 station_ip 37.129.170.88 134492 port 282 134492 unique_id port 134492 remote_ip 10.8.0.154 134494 username mohsenaskari 134494 mac 134494 bytes_out 1215173 134494 bytes_in 13358633 134494 station_ip 46.225.232.132 134494 port 287 134494 unique_id port 134494 remote_ip 10.8.0.246 134497 username sekonji3 134497 mac 134497 bytes_out 0 134497 bytes_in 0 134497 station_ip 83.122.71.5 134497 port 287 134497 unique_id port 134497 remote_ip 10.8.0.6 134498 username alikomsari 134498 kill_reason Another user logged on this global unique id 134498 mac 134498 bytes_out 0 134498 bytes_in 0 134498 station_ip 5.119.75.155 134498 port 296 134498 unique_id port 134498 remote_ip 10.8.0.70 134499 username mohsenaskari 134499 mac 134499 bytes_out 0 134499 bytes_in 0 134499 station_ip 46.225.232.132 134499 port 284 134499 unique_id port 134499 remote_ip 10.8.0.246 134500 username sekonji3 134500 mac 134500 bytes_out 0 134500 bytes_in 0 134500 station_ip 83.122.71.5 134500 port 284 134500 unique_id port 134500 remote_ip 10.8.0.6 134501 username khalili 134501 mac 134501 bytes_out 2613631 134501 bytes_in 29757102 134501 station_ip 5.119.136.174 134501 port 259 134501 unique_id port 134501 remote_ip 10.8.0.86 134503 username sekonji3 134503 mac 134503 bytes_out 0 134503 bytes_in 0 134503 station_ip 83.122.71.5 134503 port 295 134503 unique_id port 134503 remote_ip 10.8.0.6 134504 username hamidsalari 134504 mac 134504 bytes_out 956350 134504 bytes_in 10834537 134504 station_ip 5.119.96.195 134504 port 293 134504 unique_id port 134504 remote_ip 10.8.0.222 134505 username sekonji3 134505 mac 134505 bytes_out 0 134505 bytes_in 0 134505 station_ip 83.122.71.5 134505 port 259 134505 unique_id port 134505 remote_ip 10.8.0.6 134509 username mohammadjavad 134509 mac 134509 bytes_out 2001834 134509 bytes_in 36585245 134509 station_ip 113.203.94.83 134509 port 287 134509 unique_id port 134509 remote_ip 10.8.0.142 134515 username mohammadjavad 134515 mac 134515 bytes_out 592501 134515 bytes_in 10928178 134515 station_ip 113.203.94.83 134515 port 293 134515 unique_id port 134515 remote_ip 10.8.0.142 134517 username yahodi 134517 kill_reason Another user logged on this global unique id 134517 mac 134517 bytes_out 0 134517 bytes_in 0 134517 station_ip 37.129.28.87 134517 port 183 134517 unique_id port 134517 remote_ip 10.8.1.218 134518 username aminvpn 134518 unique_id port 134506 mac 134506 bytes_out 0 134506 bytes_in 0 134506 station_ip 83.122.71.5 134506 port 259 134506 unique_id port 134506 remote_ip 10.8.0.6 134507 username mohsenaskari 134507 mac 134507 bytes_out 155576 134507 bytes_in 828520 134507 station_ip 46.225.232.132 134507 port 292 134507 unique_id port 134507 remote_ip 10.8.0.246 134510 username mohsenaskari 134510 mac 134510 bytes_out 0 134510 bytes_in 0 134510 station_ip 46.225.232.132 134510 port 287 134510 unique_id port 134510 remote_ip 10.8.0.246 134511 username sekonji3 134511 mac 134511 bytes_out 0 134511 bytes_in 0 134511 station_ip 83.122.71.5 134511 port 287 134511 unique_id port 134511 remote_ip 10.8.0.6 134512 username sekonji3 134512 mac 134512 bytes_out 0 134512 bytes_in 0 134512 station_ip 83.122.71.5 134512 port 287 134512 unique_id port 134512 remote_ip 10.8.0.6 134516 username sekonji3 134516 mac 134516 bytes_out 0 134516 bytes_in 0 134516 station_ip 83.122.71.5 134516 port 292 134516 unique_id port 134516 remote_ip 10.8.0.6 134521 username barzegar 134521 mac 134521 bytes_out 0 134521 bytes_in 0 134521 station_ip 5.120.140.204 134521 port 292 134521 unique_id port 134521 remote_ip 10.8.0.234 134524 username sekonji3 134524 mac 134524 bytes_out 0 134524 bytes_in 0 134524 station_ip 83.122.71.5 134524 port 184 134524 unique_id port 134524 remote_ip 10.8.1.238 134525 username mehdizare 134525 mac 134525 bytes_out 65706 134525 bytes_in 79096 134525 station_ip 5.120.148.206 134525 port 182 134525 unique_id port 134525 remote_ip 10.8.1.42 134528 username sekonji3 134528 mac 134528 bytes_out 0 134528 bytes_in 0 134528 station_ip 83.122.71.5 134528 port 184 134528 unique_id port 134528 remote_ip 10.8.1.238 134530 username yahodi 134530 kill_reason Another user logged on this global unique id 134530 mac 134530 bytes_out 0 134530 bytes_in 0 134530 station_ip 37.129.28.87 134530 port 183 134530 unique_id port 134533 username sekonji3 134533 mac 134533 bytes_out 0 134533 bytes_in 0 134533 station_ip 83.122.71.5 134533 port 182 134533 unique_id port 134533 remote_ip 10.8.1.238 134537 username vanila 134537 mac 134537 bytes_out 9203498 134537 bytes_in 2026151 134537 station_ip 83.122.95.244 134537 port 259 134537 unique_id port 134537 remote_ip 10.8.0.178 134546 username mehdizare 134546 mac 134546 bytes_out 40763 134546 bytes_in 35172 134546 station_ip 5.120.148.206 134546 port 292 134546 unique_id port 134546 remote_ip 10.8.0.90 134550 username barzegar 134550 mac 134550 bytes_out 0 134550 bytes_in 0 134550 station_ip 5.120.140.204 134550 port 184 134550 unique_id port 134550 remote_ip 10.8.1.174 134551 username barzegar 134551 mac 134551 bytes_out 0 134551 bytes_in 0 134551 station_ip 5.120.140.204 134551 port 184 134551 unique_id port 134551 remote_ip 10.8.1.174 134554 username sedighe 134554 mac 134554 bytes_out 1907403 134554 bytes_in 25963017 134554 station_ip 83.122.84.5 134554 port 183 134554 unique_id port 134554 remote_ip 10.8.1.78 134556 username hosseine 134556 mac 134556 bytes_out 0 134556 bytes_in 0 134556 station_ip 37.129.110.248 134556 port 181 134556 unique_id port 134556 remote_ip 10.8.1.190 134557 username zare 134557 kill_reason Another user logged on this global unique id 134557 mac 134557 bytes_out 0 134557 bytes_in 0 134557 station_ip 37.27.27.38 134557 port 287 134557 unique_id port 134558 username hashtadani3 134558 kill_reason Another user logged on this global unique id 134514 bytes_out 1251640 134514 bytes_in 8257445 134514 station_ip 83.122.145.118 134514 port 292 134514 unique_id port 134514 remote_ip 10.8.0.194 134519 username sekonji3 134519 mac 134519 bytes_out 0 134519 bytes_in 0 134519 station_ip 83.122.71.5 134519 port 292 134519 unique_id port 134519 remote_ip 10.8.0.6 134526 username sekonji3 134526 mac 134526 bytes_out 3089 134526 bytes_in 5310 134526 station_ip 83.122.71.5 134526 port 184 134526 unique_id port 134526 remote_ip 10.8.1.238 134527 username sekonji3 134527 mac 134527 bytes_out 0 134527 bytes_in 0 134527 station_ip 83.122.71.5 134527 port 182 134527 unique_id port 134527 remote_ip 10.8.1.238 134531 username sekonji3 134531 mac 134531 bytes_out 0 134531 bytes_in 0 134531 station_ip 83.122.71.5 134531 port 182 134531 unique_id port 134531 remote_ip 10.8.1.238 134534 username hosseine 134534 mac 134534 bytes_out 0 134534 bytes_in 0 134534 station_ip 37.129.110.248 134534 port 181 134534 unique_id port 134534 remote_ip 10.8.1.190 134539 username sekonji3 134539 mac 134539 bytes_out 1887 134539 bytes_in 5827 134539 station_ip 83.122.71.5 134539 port 259 134539 unique_id port 134539 remote_ip 10.8.0.6 134540 username barzegar 134540 mac 134540 bytes_out 0 134540 bytes_in 0 134540 station_ip 5.120.140.204 134540 port 259 134540 unique_id port 134540 remote_ip 10.8.0.234 134543 username barzegar 134543 mac 134543 bytes_out 0 134543 bytes_in 0 134543 station_ip 5.120.140.204 134543 port 282 134543 unique_id port 134543 remote_ip 10.8.0.234 134544 username zare 134544 kill_reason Another user logged on this global unique id 134544 mac 134544 bytes_out 0 134544 bytes_in 0 134544 station_ip 37.27.27.38 134544 port 287 134544 unique_id port 134548 username yarmohamadi 134548 kill_reason Another user logged on this global unique id 134548 mac 134548 bytes_out 0 134548 bytes_in 0 134548 station_ip 5.120.97.248 134548 port 182 134548 unique_id port 134548 remote_ip 10.8.1.234 134549 username hamidsalari 134549 mac 134549 bytes_out 2288551 134549 bytes_in 30581821 134549 station_ip 5.119.249.208 134549 port 284 134549 unique_id port 134549 remote_ip 10.8.0.222 134552 username barzegar 134552 mac 134552 bytes_out 0 134552 bytes_in 0 134552 station_ip 5.120.140.204 134552 port 296 134552 unique_id port 134552 remote_ip 10.8.0.234 134555 username vanila 134555 mac 134555 bytes_out 0 134555 bytes_in 0 134555 station_ip 83.122.95.244 134555 port 297 134555 unique_id port 134555 remote_ip 10.8.0.178 134568 username sedighe 134568 mac 134568 bytes_out 80657 134568 bytes_in 103552 134568 station_ip 83.122.84.5 134568 port 183 134568 unique_id port 134568 remote_ip 10.8.1.78 134572 username barzegar 134572 mac 134572 bytes_out 6284 134572 bytes_in 6995 134572 station_ip 5.120.140.204 134572 port 295 134572 unique_id port 134572 remote_ip 10.8.0.234 134573 username barzegar 134573 mac 134573 bytes_out 0 134573 bytes_in 0 134573 station_ip 5.120.140.204 134573 port 183 134573 unique_id port 134573 remote_ip 10.8.1.174 134579 username zare 134579 kill_reason Another user logged on this global unique id 134579 mac 134579 bytes_out 0 134579 bytes_in 0 134579 station_ip 37.27.27.38 134579 port 287 134579 unique_id port 134582 username sabaghnezhad 134582 mac 134582 bytes_out 2088454 134582 bytes_in 32046065 134582 station_ip 83.122.96.163 134582 port 297 134582 unique_id port 134582 remote_ip 10.8.0.186 134585 username arash 134518 terminate_cause User-Request 134518 bytes_out 2976593 134518 bytes_in 25431862 134518 station_ip 31.57.128.150 134518 port 15730459 134518 nas_port_type Virtual 134518 remote_ip 5.5.5.11 134520 username sekonji3 134520 mac 134520 bytes_out 0 134520 bytes_in 0 134520 station_ip 83.122.71.5 134520 port 184 134520 unique_id port 134520 remote_ip 10.8.1.238 134522 username sabaghnezhad 134522 mac 134522 bytes_out 0 134522 bytes_in 0 134522 station_ip 83.122.19.221 134522 port 259 134522 unique_id port 134522 remote_ip 10.8.0.186 134523 username sekonji3 134523 mac 134523 bytes_out 0 134523 bytes_in 0 134523 station_ip 83.122.71.5 134523 port 184 134523 unique_id port 134523 remote_ip 10.8.1.238 134529 username barzegar 134529 mac 134529 bytes_out 0 134529 bytes_in 0 134529 station_ip 5.120.140.204 134529 port 182 134529 unique_id port 134529 remote_ip 10.8.1.174 134532 username hashtadani3 134532 kill_reason Another user logged on this global unique id 134532 mac 134532 bytes_out 0 134532 bytes_in 0 134532 station_ip 37.129.170.88 134532 port 282 134532 unique_id port 134532 remote_ip 10.8.0.154 134535 username sekonji3 134535 mac 134535 bytes_out 0 134535 bytes_in 0 134535 station_ip 83.122.71.5 134535 port 181 134535 unique_id port 134535 remote_ip 10.8.1.238 134536 username sekonji3 134536 mac 134536 bytes_out 0 134536 bytes_in 0 134536 station_ip 83.122.71.5 134536 port 293 134536 unique_id port 134536 remote_ip 10.8.0.6 134538 username zare 134538 kill_reason Another user logged on this global unique id 134538 mac 134538 bytes_out 0 134538 bytes_in 0 134538 station_ip 37.27.27.38 134538 port 287 134538 unique_id port 134538 remote_ip 10.8.0.18 134541 username hashtadani3 134541 mac 134541 bytes_out 0 134541 bytes_in 0 134541 station_ip 37.129.170.88 134541 port 282 134541 unique_id port 134542 username yahodi 134542 mac 134542 bytes_out 0 134542 bytes_in 0 134542 station_ip 37.129.28.87 134542 port 183 134542 unique_id port 134545 username alikomsari 134545 mac 134545 bytes_out 0 134545 bytes_in 0 134545 station_ip 5.119.75.155 134545 port 296 134545 unique_id port 134547 username zare 134547 kill_reason Another user logged on this global unique id 134547 mac 134547 bytes_out 0 134547 bytes_in 0 134547 station_ip 37.27.27.38 134547 port 287 134547 unique_id port 134553 username hamid.e 134553 unique_id port 134553 terminate_cause User-Request 134553 bytes_out 2844744 134553 bytes_in 59282776 134553 station_ip 37.27.13.103 134553 port 15730460 134553 nas_port_type Virtual 134553 remote_ip 5.5.5.12 134560 username barzegar 134560 mac 134560 bytes_out 0 134560 bytes_in 0 134560 station_ip 5.120.140.204 134560 port 293 134560 unique_id port 134560 remote_ip 10.8.0.234 134561 username houshang 134561 mac 134561 bytes_out 515219 134561 bytes_in 2972234 134561 station_ip 5.120.138.50 134561 port 295 134561 unique_id port 134561 remote_ip 10.8.0.22 134563 username hashtadani3 134563 mac 134563 bytes_out 0 134563 bytes_in 0 134563 station_ip 37.129.170.88 134563 port 259 134563 unique_id port 134564 username godarzi 134564 mac 134564 bytes_out 0 134564 bytes_in 0 134564 station_ip 5.202.15.249 134564 port 289 134564 unique_id port 134564 remote_ip 10.8.0.174 134565 username yarmohamadi 134565 kill_reason Another user logged on this global unique id 134565 mac 134565 bytes_out 0 134565 bytes_in 0 134565 station_ip 5.120.97.248 134565 port 182 134565 unique_id port 134569 username forozandeh1 134569 mac 134558 mac 134558 bytes_out 0 134558 bytes_in 0 134558 station_ip 37.129.170.88 134558 port 259 134558 unique_id port 134558 remote_ip 10.8.0.154 134559 username hamidsalari 134559 mac 134559 bytes_out 51498 134559 bytes_in 196683 134559 station_ip 5.119.98.235 134559 port 293 134559 unique_id port 134559 remote_ip 10.8.0.222 134562 username mahdiyehalizadeh 134562 mac 134562 bytes_out 85504 134562 bytes_in 621807 134562 station_ip 113.203.115.113 134562 port 297 134562 unique_id port 134562 remote_ip 10.8.0.82 134566 username hamidsalari 134566 mac 134566 bytes_out 31882 134566 bytes_in 56358 134566 station_ip 5.119.6.90 134566 port 296 134566 unique_id port 134566 remote_ip 10.8.0.222 134567 username barzegar 134567 mac 134567 bytes_out 0 134567 bytes_in 0 134567 station_ip 5.120.140.204 134567 port 295 134567 unique_id port 134567 remote_ip 10.8.0.234 134575 username barzegar 134575 mac 134575 bytes_out 0 134575 bytes_in 0 134575 station_ip 5.120.140.204 134575 port 183 134575 unique_id port 134575 remote_ip 10.8.1.174 134577 username barzegar 134577 mac 134577 bytes_out 0 134577 bytes_in 0 134577 station_ip 5.120.140.204 134577 port 295 134577 unique_id port 134577 remote_ip 10.8.0.234 134583 username zare 134583 kill_reason Another user logged on this global unique id 134583 mac 134583 bytes_out 0 134583 bytes_in 0 134583 station_ip 37.27.27.38 134583 port 287 134583 unique_id port 134584 username barzegar 134584 mac 134584 bytes_out 3060 134584 bytes_in 5479 134584 station_ip 5.120.140.204 134584 port 184 134584 unique_id port 134584 remote_ip 10.8.1.174 134586 username houshang 134586 mac 134586 bytes_out 146572 134586 bytes_in 718100 134586 station_ip 5.120.138.50 134586 port 298 134586 unique_id port 134586 remote_ip 10.8.0.22 134589 username zare 134589 kill_reason Another user logged on this global unique id 134589 mac 134589 bytes_out 0 134589 bytes_in 0 134589 station_ip 37.27.27.38 134589 port 287 134589 unique_id port 134594 username mirzaei 134594 mac 134594 bytes_out 11203 134594 bytes_in 19936 134594 station_ip 5.119.63.41 134594 port 295 134594 unique_id port 134594 remote_ip 10.8.0.66 134605 username mohammadmahdi 134605 mac 134605 bytes_out 1520056 134605 bytes_in 23021920 134605 station_ip 113.203.19.198 134605 port 295 134605 unique_id port 134605 remote_ip 10.8.0.54 134609 username barzegar 134609 mac 134609 bytes_out 0 134609 bytes_in 0 134609 station_ip 5.120.140.204 134609 port 300 134609 unique_id port 134609 remote_ip 10.8.0.234 134610 username barzegar 134610 mac 134610 bytes_out 0 134610 bytes_in 0 134610 station_ip 5.120.140.204 134610 port 300 134610 unique_id port 134610 remote_ip 10.8.0.234 134612 username yahodi 134612 mac 134612 bytes_out 916912 134612 bytes_in 17337638 134612 station_ip 37.129.79.155 134612 port 282 134612 unique_id port 134612 remote_ip 10.8.0.202 134614 username barzegar 134614 mac 134614 bytes_out 0 134614 bytes_in 0 134614 station_ip 5.120.140.204 134614 port 184 134614 unique_id port 134614 remote_ip 10.8.1.174 134615 username mehdizare 134615 mac 134615 bytes_out 121140 134615 bytes_in 195096 134615 station_ip 5.120.148.206 134615 port 292 134615 unique_id port 134615 remote_ip 10.8.0.90 134618 username kordestani 134618 mac 134618 bytes_out 0 134618 bytes_in 0 134618 station_ip 151.235.98.51 134618 port 297 134618 unique_id port 134621 username farhad2 134621 mac 134621 bytes_out 0 134569 bytes_out 0 134569 bytes_in 0 134569 station_ip 83.123.125.25 134569 port 282 134569 unique_id port 134569 remote_ip 10.8.0.130 134570 username zare 134570 kill_reason Another user logged on this global unique id 134570 mac 134570 bytes_out 0 134570 bytes_in 0 134570 station_ip 37.27.27.38 134570 port 287 134570 unique_id port 134571 username aminvpn 134571 unique_id port 134571 terminate_cause User-Request 134571 bytes_out 310760 134571 bytes_in 3375880 134571 station_ip 5.233.49.34 134571 port 15730461 134571 nas_port_type Virtual 134571 remote_ip 5.5.5.16 134574 username sekonji3 134574 mac 134574 bytes_out 20645 134574 bytes_in 105703 134574 station_ip 83.122.68.81 134574 port 293 134574 unique_id port 134574 remote_ip 10.8.0.6 134576 username aminvpn 134576 mac 134576 bytes_out 1655524 134576 bytes_in 8364571 134576 station_ip 83.122.39.154 134576 port 282 134576 unique_id port 134576 remote_ip 10.8.0.14 134578 username amir 134578 kill_reason Maximum check online fails reached 134578 mac 134578 bytes_out 0 134578 bytes_in 0 134578 station_ip 46.225.215.18 134578 port 183 134578 unique_id port 134580 username mohammadmahdi 134580 mac 134580 bytes_out 0 134580 bytes_in 0 134580 station_ip 113.203.19.198 134580 port 259 134580 unique_id port 134580 remote_ip 10.8.0.54 134581 username yahodi 134581 mac 134581 bytes_out 611843 134581 bytes_in 6282175 134581 station_ip 37.129.79.155 134581 port 282 134581 unique_id port 134581 remote_ip 10.8.0.202 134592 username mirzaei 134592 mac 134592 bytes_out 4820874 134592 bytes_in 22208347 134592 station_ip 5.119.63.41 134592 port 279 134592 unique_id port 134592 remote_ip 10.8.0.66 134595 username barzegar 134595 mac 134595 bytes_out 0 134595 bytes_in 0 134595 station_ip 5.120.140.204 134595 port 184 134595 unique_id port 134595 remote_ip 10.8.1.174 134596 username barzegar 134596 mac 134596 bytes_out 0 134596 bytes_in 0 134596 station_ip 5.120.140.204 134596 port 184 134596 unique_id port 134596 remote_ip 10.8.1.174 134598 username barzegar 134598 mac 134598 bytes_out 0 134598 bytes_in 0 134598 station_ip 5.120.140.204 134598 port 184 134598 unique_id port 134598 remote_ip 10.8.1.174 134599 username zare 134599 kill_reason Another user logged on this global unique id 134599 mac 134599 bytes_out 0 134599 bytes_in 0 134599 station_ip 37.27.27.38 134599 port 287 134599 unique_id port 134602 username yahodi 134602 kill_reason Another user logged on this global unique id 134602 mac 134602 bytes_out 0 134602 bytes_in 0 134602 station_ip 37.129.79.155 134602 port 282 134602 unique_id port 134602 remote_ip 10.8.0.202 134606 username godarzi 134606 kill_reason Another user logged on this global unique id 134606 mac 134606 bytes_out 0 134606 bytes_in 0 134606 station_ip 5.202.15.249 134606 port 284 134606 unique_id port 134606 remote_ip 10.8.0.174 134617 username sedighe 134617 mac 134617 bytes_out 0 134617 bytes_in 0 134617 station_ip 83.122.84.5 134617 port 282 134617 unique_id port 134617 remote_ip 10.8.0.146 134619 username godarzi 134619 mac 134619 bytes_out 0 134619 bytes_in 0 134619 station_ip 5.202.15.249 134619 port 284 134619 unique_id port 134626 username yahodi 134626 mac 134626 bytes_out 24280 134626 bytes_in 21082 134626 station_ip 37.129.79.155 134626 port 284 134626 unique_id port 134626 remote_ip 10.8.0.202 134632 username vanila 134632 mac 134632 bytes_out 10107097 134632 bytes_in 7621333 134632 station_ip 83.122.230.244 134632 port 282 134632 unique_id port 134585 mac 134585 bytes_out 2287130 134585 bytes_in 43892275 134585 station_ip 37.27.16.21 134585 port 284 134585 unique_id port 134585 remote_ip 10.8.0.114 134587 username yahodi 134587 mac 134587 bytes_out 177603 134587 bytes_in 5551300 134587 station_ip 37.129.79.155 134587 port 282 134587 unique_id port 134587 remote_ip 10.8.0.202 134588 username barzegar 134588 mac 134588 bytes_out 0 134588 bytes_in 0 134588 station_ip 5.120.140.204 134588 port 184 134588 unique_id port 134588 remote_ip 10.8.1.174 134590 username barzegar 134590 mac 134590 bytes_out 0 134590 bytes_in 0 134590 station_ip 5.120.140.204 134590 port 184 134590 unique_id port 134590 remote_ip 10.8.1.174 134591 username mohammadmahdi 134591 mac 134591 bytes_out 0 134591 bytes_in 0 134591 station_ip 113.203.19.198 134591 port 295 134591 unique_id port 134591 remote_ip 10.8.0.54 134593 username sedighe 134593 mac 134593 bytes_out 0 134593 bytes_in 0 134593 station_ip 83.122.84.5 134593 port 293 134593 unique_id port 134593 remote_ip 10.8.0.146 134597 username yarmohamadi 134597 kill_reason Another user logged on this global unique id 134597 mac 134597 bytes_out 0 134597 bytes_in 0 134597 station_ip 5.120.97.248 134597 port 182 134597 unique_id port 134600 username kordestani 134600 kill_reason Another user logged on this global unique id 134600 mac 134600 bytes_out 0 134600 bytes_in 0 134600 station_ip 151.235.98.51 134600 port 297 134600 unique_id port 134600 remote_ip 10.8.0.134 134601 username houshang 134601 mac 134601 bytes_out 0 134601 bytes_in 0 134601 station_ip 5.120.138.50 134601 port 295 134601 unique_id port 134601 remote_ip 10.8.0.22 134603 username barzegar 134603 mac 134603 bytes_out 0 134603 bytes_in 0 134603 station_ip 5.120.140.204 134603 port 299 134603 unique_id port 134603 remote_ip 10.8.0.234 134604 username sedighe 134604 mac 134604 bytes_out 140699 134604 bytes_in 216369 134604 station_ip 83.122.84.5 134604 port 279 134604 unique_id port 134604 remote_ip 10.8.0.146 134607 username yahodi 134607 kill_reason Another user logged on this global unique id 134607 mac 134607 bytes_out 0 134607 bytes_in 0 134607 station_ip 37.129.79.155 134607 port 282 134607 unique_id port 134608 username mohammadmahdi 134608 mac 134608 bytes_out 0 134608 bytes_in 0 134608 station_ip 113.203.19.198 134608 port 299 134608 unique_id port 134608 remote_ip 10.8.0.54 134611 username yahodi 134611 mac 134611 bytes_out 0 134611 bytes_in 0 134611 station_ip 37.129.79.155 134611 port 282 134611 unique_id port 134613 username sedighe 134613 mac 134613 bytes_out 212346 134613 bytes_in 369694 134613 station_ip 83.122.84.5 134613 port 279 134613 unique_id port 134613 remote_ip 10.8.0.146 134616 username arash 134616 mac 134616 bytes_out 1438104 134616 bytes_in 35511799 134616 station_ip 37.27.16.21 134616 port 259 134616 unique_id port 134616 remote_ip 10.8.0.114 134620 username aminvpn 134620 unique_id port 134620 terminate_cause User-Request 134620 bytes_out 11232145 134620 bytes_in 23482867 134620 station_ip 31.57.128.150 134620 port 15730462 134620 nas_port_type Virtual 134620 remote_ip 5.5.5.22 134623 username mahdixz 134623 unique_id port 134623 terminate_cause Lost-Carrier 134623 bytes_out 4762771 134623 bytes_in 91557502 134623 station_ip 151.235.94.14 134623 port 15730463 134623 nas_port_type Virtual 134623 remote_ip 5.5.5.23 134624 username hamidsalari 134624 mac 134624 bytes_out 0 134624 bytes_in 0 134624 station_ip 5.119.232.12 134624 port 289 134621 bytes_in 0 134621 station_ip 5.119.15.26 134621 port 301 134621 unique_id port 134621 remote_ip 10.8.0.190 134622 username zotaher 134622 mac 134622 bytes_out 2255482 134622 bytes_in 2029831 134622 station_ip 83.122.134.26 134622 port 295 134622 unique_id port 134622 remote_ip 10.8.0.194 134625 username farhad2 134625 mac 134625 bytes_out 567339 134625 bytes_in 7602383 134625 station_ip 5.119.15.26 134625 port 184 134625 unique_id port 134625 remote_ip 10.8.1.222 134627 username barzegar 134627 mac 134627 bytes_out 0 134627 bytes_in 0 134627 station_ip 5.120.140.204 134627 port 259 134627 unique_id port 134627 remote_ip 10.8.0.234 134629 username amir 134629 kill_reason Another user logged on this global unique id 134629 mac 134629 bytes_out 0 134629 bytes_in 0 134629 station_ip 46.225.215.18 134629 port 300 134629 unique_id port 134629 remote_ip 10.8.0.50 134631 username zare 134631 mac 134631 bytes_out 0 134631 bytes_in 0 134631 station_ip 37.27.27.38 134631 port 287 134631 unique_id port 134636 username alikomsari 134636 kill_reason Another user logged on this global unique id 134636 mac 134636 bytes_out 0 134636 bytes_in 0 134636 station_ip 5.120.6.186 134636 port 298 134636 unique_id port 134636 remote_ip 10.8.0.70 134641 username hamid 134641 kill_reason Relative expiration date has reached 134641 mac 134641 bytes_out 0 134641 bytes_in 0 134641 station_ip 113.203.3.111 134641 port 282 134641 unique_id port 134643 username amirabbas 134643 unique_id port 134643 terminate_cause User-Request 134643 bytes_out 3758562 134643 bytes_in 82983247 134643 station_ip 37.27.25.59 134643 port 15730464 134643 nas_port_type Virtual 134643 remote_ip 5.5.5.46 134650 username houshang 134650 mac 134650 bytes_out 0 134650 bytes_in 0 134650 station_ip 5.120.175.138 134650 port 295 134650 unique_id port 134650 remote_ip 10.8.0.22 134653 username yahodi 134653 kill_reason Another user logged on this global unique id 134653 mac 134653 bytes_out 0 134653 bytes_in 0 134653 station_ip 37.129.79.155 134653 port 284 134653 unique_id port 134654 username barzegar 134654 mac 134654 bytes_out 0 134654 bytes_in 0 134654 station_ip 5.120.140.204 134654 port 187 134654 unique_id port 134654 remote_ip 10.8.1.174 134656 username amir 134656 mac 134656 bytes_out 132318 134656 bytes_in 1426853 134656 station_ip 46.225.215.18 134656 port 289 134656 unique_id port 134656 remote_ip 10.8.0.50 134657 username yahodi 134657 kill_reason Another user logged on this global unique id 134657 mac 134657 bytes_out 0 134657 bytes_in 0 134657 station_ip 37.129.79.155 134657 port 284 134657 unique_id port 134661 username farhad2 134661 mac 134661 bytes_out 2676810 134661 bytes_in 26116123 134661 station_ip 5.119.15.26 134661 port 295 134661 unique_id port 134661 remote_ip 10.8.0.190 134663 username aminvpn 134663 unique_id port 134663 terminate_cause Lost-Carrier 134663 bytes_out 111677 134663 bytes_in 232096 134663 station_ip 5.233.49.34 134663 port 15730469 134663 nas_port_type Virtual 134663 remote_ip 5.5.5.60 134664 username sabaghnezhad 134664 mac 134664 bytes_out 326132 134664 bytes_in 480024 134664 station_ip 83.123.87.219 134664 port 259 134664 unique_id port 134664 remote_ip 10.8.0.186 134672 username barzegar 134672 mac 134672 bytes_out 112853 134672 bytes_in 723736 134672 station_ip 5.120.140.204 134672 port 187 134672 unique_id port 134672 remote_ip 10.8.1.174 134673 username yarmohamadi 134673 kill_reason Another user logged on this global unique id 134673 mac 134673 bytes_out 0 134673 bytes_in 0 134624 unique_id port 134624 remote_ip 10.8.0.222 134628 username aminvpn 134628 unique_id port 134628 terminate_cause Lost-Carrier 134628 bytes_out 1359966 134628 bytes_in 23925149 134628 station_ip 31.57.128.150 134628 port 15730466 134628 nas_port_type Virtual 134628 remote_ip 5.5.5.48 134630 username aminvpn 134630 unique_id port 134630 terminate_cause Lost-Carrier 134630 bytes_out 795502 134630 bytes_in 756019 134630 station_ip 5.233.49.34 134630 port 15730465 134630 nas_port_type Virtual 134630 remote_ip 5.5.5.47 134634 username malekpoir 134634 mac 134634 bytes_out 1634313 134634 bytes_in 19003298 134634 station_ip 5.119.90.64 134634 port 299 134634 unique_id port 134634 remote_ip 10.8.0.58 134637 username yahodi 134637 kill_reason Another user logged on this global unique id 134637 mac 134637 bytes_out 0 134637 bytes_in 0 134637 station_ip 37.129.79.155 134637 port 284 134637 unique_id port 134637 remote_ip 10.8.0.202 134638 username barzegar 134638 mac 134638 bytes_out 7059 134638 bytes_in 7647 134638 station_ip 5.120.140.204 134638 port 287 134638 unique_id port 134638 remote_ip 10.8.0.234 134640 username farhad2 134640 mac 134640 bytes_out 0 134640 bytes_in 0 134640 station_ip 5.119.15.26 134640 port 184 134640 unique_id port 134640 remote_ip 10.8.1.222 134642 username barzegar 134642 mac 134642 bytes_out 0 134642 bytes_in 0 134642 station_ip 5.120.140.204 134642 port 187 134642 unique_id port 134642 remote_ip 10.8.1.174 134644 username farhad2 134644 mac 134644 bytes_out 0 134644 bytes_in 0 134644 station_ip 5.119.15.26 134644 port 184 134644 unique_id port 134644 remote_ip 10.8.1.222 134647 username amir 134647 mac 134647 bytes_out 0 134647 bytes_in 0 134647 station_ip 46.225.215.18 134647 port 300 134647 unique_id port 134648 username forozandeh1 134648 mac 134648 bytes_out 0 134648 bytes_in 0 134648 station_ip 83.123.125.25 134648 port 296 134648 unique_id port 134648 remote_ip 10.8.0.130 134652 username farhad2 134652 mac 134652 bytes_out 2012231 134652 bytes_in 18572362 134652 station_ip 5.119.15.26 134652 port 282 134652 unique_id port 134652 remote_ip 10.8.0.190 134655 username houshang 134655 mac 134655 bytes_out 0 134655 bytes_in 0 134655 station_ip 5.120.175.138 134655 port 282 134655 unique_id port 134655 remote_ip 10.8.0.22 134658 username mostafa_es78 134658 unique_id port 134658 terminate_cause User-Request 134658 bytes_out 113425 134658 bytes_in 1188087 134658 station_ip 5.120.115.62 134658 port 15730468 134658 nas_port_type Virtual 134658 remote_ip 5.5.5.58 134659 username barzegar 134659 mac 134659 bytes_out 0 134659 bytes_in 0 134659 station_ip 5.120.140.204 134659 port 187 134659 unique_id port 134659 remote_ip 10.8.1.174 134660 username aminvpn 134660 unique_id port 134660 terminate_cause Lost-Carrier 134660 bytes_out 2626914 134660 bytes_in 12824623 134660 station_ip 5.233.49.34 134660 port 15730467 134660 nas_port_type Virtual 134660 remote_ip 5.5.5.54 134667 username yahodi 134667 kill_reason Another user logged on this global unique id 134667 mac 134667 bytes_out 0 134667 bytes_in 0 134667 station_ip 37.129.79.155 134667 port 284 134667 unique_id port 134669 username yarmohamadi 134669 kill_reason Another user logged on this global unique id 134669 mac 134669 bytes_out 0 134669 bytes_in 0 134669 station_ip 5.120.97.248 134669 port 182 134669 unique_id port 134675 username zotaher 134675 mac 134675 bytes_out 165942 134675 bytes_in 551502 134675 station_ip 83.122.202.10 134675 port 186 134675 unique_id port 134632 remote_ip 10.8.0.178 134633 username barzegar 134633 mac 134633 bytes_out 0 134633 bytes_in 0 134633 station_ip 5.120.140.204 134633 port 287 134633 unique_id port 134633 remote_ip 10.8.0.234 134635 username barzegar 134635 mac 134635 bytes_out 0 134635 bytes_in 0 134635 station_ip 5.120.140.204 134635 port 287 134635 unique_id port 134635 remote_ip 10.8.0.234 134639 username zotaher 134639 mac 134639 bytes_out 43175 134639 bytes_in 53683 134639 station_ip 83.122.202.10 134639 port 282 134639 unique_id port 134639 remote_ip 10.8.0.194 134645 username yahodi 134645 kill_reason Another user logged on this global unique id 134645 mac 134645 bytes_out 0 134645 bytes_in 0 134645 station_ip 37.129.79.155 134645 port 284 134645 unique_id port 134646 username barzegar 134646 mac 134646 bytes_out 0 134646 bytes_in 0 134646 station_ip 5.120.140.204 134646 port 184 134646 unique_id port 134646 remote_ip 10.8.1.174 134649 username amir 134649 mac 134649 bytes_out 0 134649 bytes_in 0 134649 station_ip 46.225.215.18 134649 port 289 134649 unique_id port 134649 remote_ip 10.8.0.50 134651 username barzegar 134651 mac 134651 bytes_out 0 134651 bytes_in 0 134651 station_ip 5.120.140.204 134651 port 289 134651 unique_id port 134651 remote_ip 10.8.0.234 134662 username barzegar 134662 mac 134662 bytes_out 0 134662 bytes_in 0 134662 station_ip 5.120.140.204 134662 port 187 134662 unique_id port 134662 remote_ip 10.8.1.174 134665 username aminvpn 134665 unique_id port 134665 terminate_cause Lost-Carrier 134665 bytes_out 76331 134665 bytes_in 485218 134665 station_ip 5.233.49.34 134665 port 15730470 134665 nas_port_type Virtual 134665 remote_ip 5.5.5.62 134666 username hosseine 134666 mac 134666 bytes_out 3575916 134666 bytes_in 20053178 134666 station_ip 37.129.110.248 134666 port 181 134666 unique_id port 134666 remote_ip 10.8.1.190 134668 username alikomsari 134668 kill_reason Another user logged on this global unique id 134668 mac 134668 bytes_out 0 134668 bytes_in 0 134668 station_ip 5.120.6.186 134668 port 298 134668 unique_id port 134670 username yahodi 134670 mac 134670 bytes_out 0 134670 bytes_in 0 134670 station_ip 37.129.79.155 134670 port 284 134670 unique_id port 134671 username amir 134671 mac 134671 bytes_out 163694 134671 bytes_in 1491971 134671 station_ip 46.225.215.18 134671 port 296 134671 unique_id port 134671 remote_ip 10.8.0.50 134674 username mahdiyehalizadeh 134674 mac 134674 bytes_out 738208 134674 bytes_in 7863743 134674 station_ip 83.122.212.204 134674 port 295 134674 unique_id port 134674 remote_ip 10.8.0.82 134680 username barzegar 134680 mac 134680 bytes_out 0 134680 bytes_in 0 134680 station_ip 5.120.140.204 134680 port 181 134680 unique_id port 134680 remote_ip 10.8.1.174 134681 username zotaher 134681 mac 134681 bytes_out 0 134681 bytes_in 0 134681 station_ip 83.122.202.10 134681 port 186 134681 unique_id port 134681 remote_ip 10.8.1.246 134689 username barzegar 134689 mac 134689 bytes_out 0 134689 bytes_in 0 134689 station_ip 5.120.140.204 134689 port 284 134689 unique_id port 134689 remote_ip 10.8.0.234 134690 username amir 134690 mac 134690 bytes_out 51602 134690 bytes_in 422627 134690 station_ip 46.225.215.18 134690 port 284 134690 unique_id port 134690 remote_ip 10.8.0.50 134694 username houshang 134694 kill_reason Another user logged on this global unique id 134694 mac 134694 bytes_out 0 134694 bytes_in 0 134694 station_ip 5.120.175.138 134694 port 295 134673 station_ip 5.120.97.248 134673 port 182 134673 unique_id port 134676 username yarmohamadi 134676 kill_reason Another user logged on this global unique id 134676 mac 134676 bytes_out 0 134676 bytes_in 0 134676 station_ip 5.120.97.248 134676 port 182 134676 unique_id port 134677 username saeed9658 134677 kill_reason Another user logged on this global unique id 134677 mac 134677 bytes_out 0 134677 bytes_in 0 134677 station_ip 5.119.170.229 134677 port 284 134677 unique_id port 134677 remote_ip 10.8.0.62 134678 username amir 134678 mac 134678 bytes_out 218883 134678 bytes_in 1720001 134678 station_ip 46.225.215.18 134678 port 296 134678 unique_id port 134678 remote_ip 10.8.0.50 134683 username zotaher 134683 mac 134683 bytes_out 2912 134683 bytes_in 5145 134683 station_ip 83.122.202.10 134683 port 296 134683 unique_id port 134683 remote_ip 10.8.0.194 134684 username mehdizare 134684 mac 134684 bytes_out 0 134684 bytes_in 0 134684 station_ip 5.120.148.206 134684 port 297 134684 unique_id port 134684 remote_ip 10.8.0.90 134687 username farhad2 134687 kill_reason Another user logged on this global unique id 134687 mac 134687 bytes_out 0 134687 bytes_in 0 134687 station_ip 5.119.15.26 134687 port 289 134687 unique_id port 134687 remote_ip 10.8.0.190 134688 username saeed9658 134688 mac 134688 bytes_out 0 134688 bytes_in 0 134688 station_ip 5.119.170.229 134688 port 284 134688 unique_id port 134692 username sabaghnezhad 134692 mac 134692 bytes_out 12149981 134692 bytes_in 1159515 134692 station_ip 83.123.87.219 134692 port 259 134692 unique_id port 134692 remote_ip 10.8.0.186 134693 username barzegar 134693 mac 134693 bytes_out 6331 134693 bytes_in 7719 134693 station_ip 5.120.140.204 134693 port 296 134693 unique_id port 134693 remote_ip 10.8.0.234 134697 username mohammadjavad 134697 mac 134697 bytes_out 541054 134697 bytes_in 10814888 134697 station_ip 37.129.123.15 134697 port 284 134697 unique_id port 134697 remote_ip 10.8.0.142 134701 username farhad2 134701 mac 134701 bytes_out 0 134701 bytes_in 0 134701 station_ip 5.119.15.26 134701 port 289 134701 unique_id port 134702 username alikomsari 134702 kill_reason Another user logged on this global unique id 134702 mac 134702 bytes_out 0 134702 bytes_in 0 134702 station_ip 5.120.6.186 134702 port 298 134702 unique_id port 134703 username jamali 134703 kill_reason Another user logged on this global unique id 134703 mac 134703 bytes_out 0 134703 bytes_in 0 134703 station_ip 5.123.234.13 134703 port 286 134703 unique_id port 134703 remote_ip 10.8.0.150 134705 username farhad2 134705 mac 134705 bytes_out 1147779 134705 bytes_in 12409824 134705 station_ip 5.119.15.26 134705 port 259 134705 unique_id port 134705 remote_ip 10.8.0.190 134706 username amir 134706 mac 134706 bytes_out 1988707 134706 bytes_in 15375368 134706 station_ip 46.225.215.18 134706 port 279 134706 unique_id port 134706 remote_ip 10.8.0.50 134709 username barzegar 134709 mac 134709 bytes_out 0 134709 bytes_in 0 134709 station_ip 5.120.140.204 134709 port 259 134709 unique_id port 134709 remote_ip 10.8.0.234 134712 username sabaghnezhad 134712 mac 134712 bytes_out 4801 134712 bytes_in 9497 134712 station_ip 37.129.170.50 134712 port 279 134712 unique_id port 134712 remote_ip 10.8.0.186 134714 username sabaghnezhad 134714 mac 134714 bytes_out 0 134714 bytes_in 0 134714 station_ip 83.122.180.251 134714 port 296 134714 unique_id port 134714 remote_ip 10.8.0.186 134717 username jafari 134717 mac 134675 remote_ip 10.8.1.246 134679 username aminvpn 134679 unique_id port 134679 terminate_cause Lost-Carrier 134679 bytes_out 2695680 134679 bytes_in 6326448 134679 station_ip 5.233.49.34 134679 port 15730471 134679 nas_port_type Virtual 134679 remote_ip 5.5.5.63 134682 username mehdizare 134682 mac 134682 bytes_out 0 134682 bytes_in 0 134682 station_ip 5.120.148.206 134682 port 279 134682 unique_id port 134682 remote_ip 10.8.0.90 134685 username yarmohamadi 134685 mac 134685 bytes_out 0 134685 bytes_in 0 134685 station_ip 5.120.97.248 134685 port 182 134685 unique_id port 134686 username mehdizare 134686 mac 134686 bytes_out 9507 134686 bytes_in 12282 134686 station_ip 5.120.148.206 134686 port 279 134686 unique_id port 134686 remote_ip 10.8.0.90 134691 username vanila 134691 mac 134691 bytes_out 8943291 134691 bytes_in 616068 134691 station_ip 83.122.230.244 134691 port 279 134691 unique_id port 134691 remote_ip 10.8.0.178 134695 username khademi 134695 kill_reason Another user logged on this global unique id 134695 mac 134695 bytes_out 0 134695 bytes_in 0 134695 station_ip 37.129.196.114 134695 port 275 134695 unique_id port 134700 username barzegar 134700 mac 134700 bytes_out 0 134700 bytes_in 0 134700 station_ip 5.120.140.204 134700 port 259 134700 unique_id port 134700 remote_ip 10.8.0.234 134704 username barzegar 134704 mac 134704 bytes_out 0 134704 bytes_in 0 134704 station_ip 5.120.140.204 134704 port 295 134704 unique_id port 134704 remote_ip 10.8.0.234 134708 username mahdixz 134708 unique_id port 134708 terminate_cause Lost-Carrier 134708 bytes_out 1182268 134708 bytes_in 45819107 134708 station_ip 151.235.127.22 134708 port 15730474 134708 nas_port_type Virtual 134708 remote_ip 5.5.5.75 134715 username aminvpn 134715 mac 134715 bytes_out 1969639 134715 bytes_in 4593370 134715 station_ip 113.203.109.211 134715 port 282 134715 unique_id port 134715 remote_ip 10.8.0.14 134719 username barzegar 134719 mac 134719 bytes_out 0 134719 bytes_in 0 134719 station_ip 5.120.140.204 134719 port 259 134719 unique_id port 134719 remote_ip 10.8.0.234 134722 username sabaghnezhad 134722 mac 134722 bytes_out 0 134722 bytes_in 0 134722 station_ip 83.122.180.251 134722 port 181 134722 unique_id port 134722 remote_ip 10.8.1.130 134723 username mahdixz 134723 unique_id port 134723 terminate_cause Lost-Carrier 134723 bytes_out 853817 134723 bytes_in 19007973 134723 station_ip 151.235.127.22 134723 port 15730475 134723 nas_port_type Virtual 134723 remote_ip 5.5.5.93 134724 username jamali 134724 kill_reason Another user logged on this global unique id 134724 mac 134724 bytes_out 0 134724 bytes_in 0 134724 station_ip 5.123.234.13 134724 port 286 134724 unique_id port 134728 username sabaghnezhad 134728 mac 134728 bytes_out 0 134728 bytes_in 0 134728 station_ip 83.122.180.251 134728 port 181 134728 unique_id port 134728 remote_ip 10.8.1.130 134729 username khademi 134729 mac 134729 bytes_out 0 134729 bytes_in 0 134729 station_ip 37.129.196.114 134729 port 275 134729 unique_id port 134731 username barzegar 134731 mac 134731 bytes_out 0 134731 bytes_in 0 134731 station_ip 5.120.140.204 134731 port 181 134731 unique_id port 134731 remote_ip 10.8.1.174 134736 username farhad2 134736 mac 134736 bytes_out 2852612 134736 bytes_in 20175790 134736 station_ip 5.120.100.92 134736 port 259 134736 unique_id port 134736 remote_ip 10.8.0.190 134737 username houshang 134737 mac 134737 bytes_out 0 134737 bytes_in 0 134737 station_ip 5.120.175.138 134694 unique_id port 134694 remote_ip 10.8.0.22 134696 username barzegar 134696 mac 134696 bytes_out 0 134696 bytes_in 0 134696 station_ip 5.120.140.204 134696 port 259 134696 unique_id port 134696 remote_ip 10.8.0.234 134698 username barzegar 134698 mac 134698 bytes_out 0 134698 bytes_in 0 134698 station_ip 5.120.140.204 134698 port 296 134698 unique_id port 134698 remote_ip 10.8.0.234 134699 username houshang 134699 mac 134699 bytes_out 0 134699 bytes_in 0 134699 station_ip 5.120.175.138 134699 port 295 134699 unique_id port 134707 username barzegar 134707 mac 134707 bytes_out 0 134707 bytes_in 0 134707 station_ip 5.120.140.204 134707 port 259 134707 unique_id port 134707 remote_ip 10.8.0.234 134710 username houshang 134710 kill_reason Another user logged on this global unique id 134710 mac 134710 bytes_out 0 134710 bytes_in 0 134710 station_ip 5.120.175.138 134710 port 289 134710 unique_id port 134710 remote_ip 10.8.0.22 134711 username mehdizare 134711 mac 134711 bytes_out 82383 134711 bytes_in 173176 134711 station_ip 5.120.148.206 134711 port 181 134711 unique_id port 134711 remote_ip 10.8.1.42 134713 username barzegar 134713 mac 134713 bytes_out 7460 134713 bytes_in 8710 134713 station_ip 5.120.140.204 134713 port 259 134713 unique_id port 134713 remote_ip 10.8.0.234 134716 username sabaghnezhad 134716 mac 134716 bytes_out 45413 134716 bytes_in 64132 134716 station_ip 83.122.180.251 134716 port 181 134716 unique_id port 134716 remote_ip 10.8.1.130 134725 username barzegar 134725 mac 134725 bytes_out 0 134725 bytes_in 0 134725 station_ip 5.120.140.204 134725 port 282 134725 unique_id port 134725 remote_ip 10.8.0.234 134726 username barzegar 134726 mac 134726 bytes_out 0 134726 bytes_in 0 134726 station_ip 5.120.140.204 134726 port 282 134726 unique_id port 134726 remote_ip 10.8.0.234 134727 username houshang 134727 mac 134727 bytes_out 0 134727 bytes_in 0 134727 station_ip 5.120.175.138 134727 port 289 134727 unique_id port 134733 username zotaher 134733 mac 134733 bytes_out 0 134733 bytes_in 0 134733 station_ip 83.122.202.10 134733 port 182 134733 unique_id port 134733 remote_ip 10.8.1.246 134734 username aminvpn 134734 unique_id port 134734 terminate_cause Lost-Carrier 134734 bytes_out 9921653 134734 bytes_in 35981386 134734 station_ip 5.233.49.34 134734 port 15730473 134734 nas_port_type Virtual 134734 remote_ip 5.5.5.69 134735 username houshang 134735 mac 134735 bytes_out 1118313 134735 bytes_in 12652744 134735 station_ip 5.120.175.138 134735 port 275 134735 unique_id port 134735 remote_ip 10.8.0.22 134739 username barzegar 134739 mac 134739 bytes_out 3045 134739 bytes_in 5209 134739 station_ip 5.120.140.204 134739 port 275 134739 unique_id port 134739 remote_ip 10.8.0.234 134740 username amir 134740 mac 134740 bytes_out 105438 134740 bytes_in 565732 134740 station_ip 46.225.215.18 134740 port 275 134740 unique_id port 134740 remote_ip 10.8.0.50 134744 username jafari 134744 kill_reason Another user logged on this global unique id 134744 mac 134744 bytes_out 0 134744 bytes_in 0 134744 station_ip 37.153.186.55 134744 port 186 134744 unique_id port 134744 remote_ip 10.8.1.198 134748 username houshang 134748 mac 134748 bytes_out 0 134748 bytes_in 0 134748 station_ip 5.120.175.138 134748 port 259 134748 unique_id port 134752 username hamid 134752 kill_reason Relative expiration date has reached 134752 mac 134752 bytes_out 0 134752 bytes_in 0 134752 station_ip 83.122.204.77 134717 bytes_out 2203670 134717 bytes_in 24546291 134717 station_ip 37.153.186.55 134717 port 284 134717 unique_id port 134717 remote_ip 10.8.0.242 134718 username houshang 134718 kill_reason Another user logged on this global unique id 134718 mac 134718 bytes_out 0 134718 bytes_in 0 134718 station_ip 5.120.175.138 134718 port 289 134718 unique_id port 134720 username amir 134720 mac 134720 bytes_out 152102 134720 bytes_in 1138866 134720 station_ip 46.225.215.18 134720 port 279 134720 unique_id port 134720 remote_ip 10.8.0.50 134721 username mehdizare 134721 mac 134721 bytes_out 21977 134721 bytes_in 32631 134721 station_ip 5.120.148.206 134721 port 295 134721 unique_id port 134721 remote_ip 10.8.0.90 134730 username amir 134730 mac 134730 bytes_out 215537 134730 bytes_in 1885079 134730 station_ip 46.225.215.18 134730 port 282 134730 unique_id port 134730 remote_ip 10.8.0.50 134732 username barzegar 134732 mac 134732 bytes_out 0 134732 bytes_in 0 134732 station_ip 5.120.140.204 134732 port 181 134732 unique_id port 134732 remote_ip 10.8.1.174 134738 username alikomsari 134738 kill_reason Another user logged on this global unique id 134738 mac 134738 bytes_out 0 134738 bytes_in 0 134738 station_ip 5.120.6.186 134738 port 298 134738 unique_id port 134741 username houshang 134741 kill_reason Another user logged on this global unique id 134741 mac 134741 bytes_out 0 134741 bytes_in 0 134741 station_ip 5.120.175.138 134741 port 259 134741 unique_id port 134741 remote_ip 10.8.0.22 134743 username alikomsari 134743 mac 134743 bytes_out 0 134743 bytes_in 0 134743 station_ip 5.120.6.186 134743 port 298 134743 unique_id port 134747 username amir 134747 mac 134747 bytes_out 0 134747 bytes_in 0 134747 station_ip 46.225.215.18 134747 port 275 134747 unique_id port 134747 remote_ip 10.8.0.50 134749 username farhad2 134749 mac 134749 bytes_out 404012 134749 bytes_in 3318058 134749 station_ip 5.120.100.92 134749 port 296 134749 unique_id port 134749 remote_ip 10.8.0.190 134756 username hamid 134756 kill_reason Relative expiration date has reached 134756 mac 134756 bytes_out 0 134756 bytes_in 0 134756 station_ip 83.122.204.77 134756 port 298 134756 unique_id port 134757 username amir 134757 mac 134757 bytes_out 137009 134757 bytes_in 766217 134757 station_ip 46.225.215.18 134757 port 297 134757 unique_id port 134757 remote_ip 10.8.0.50 134760 username farhad2 134760 mac 134760 bytes_out 0 134760 bytes_in 0 134760 station_ip 5.120.100.92 134760 port 259 134760 unique_id port 134760 remote_ip 10.8.0.190 134762 username malekpoir 134762 mac 134762 bytes_out 0 134762 bytes_in 0 134762 station_ip 5.119.90.64 134762 port 185 134762 unique_id port 134762 remote_ip 10.8.1.54 134765 username barzegar 134765 mac 134765 bytes_out 0 134765 bytes_in 0 134765 station_ip 5.120.140.204 134765 port 181 134765 unique_id port 134765 remote_ip 10.8.1.174 134767 username vanila 134767 mac 134767 bytes_out 9261837 134767 bytes_in 3776333 134767 station_ip 83.122.230.244 134767 port 296 134767 unique_id port 134767 remote_ip 10.8.0.178 134768 username yahodi 134768 mac 134768 bytes_out 0 134768 bytes_in 0 134768 station_ip 37.129.57.251 134768 port 275 134768 unique_id port 134771 username zotaher 134771 mac 134771 bytes_out 74111 134771 bytes_in 96962 134771 station_ip 83.122.202.10 134771 port 295 134771 unique_id port 134771 remote_ip 10.8.0.194 134773 username hamid 134773 kill_reason Relative expiration date has reached 134737 port 289 134737 unique_id port 134737 remote_ip 10.8.0.22 134742 username barzegar 134742 mac 134742 bytes_out 0 134742 bytes_in 0 134742 station_ip 5.120.140.204 134742 port 181 134742 unique_id port 134742 remote_ip 10.8.1.174 134745 username barzegar 134745 mac 134745 bytes_out 0 134745 bytes_in 0 134745 station_ip 5.120.140.204 134745 port 296 134745 unique_id port 134745 remote_ip 10.8.0.234 134746 username barzegar 134746 mac 134746 bytes_out 0 134746 bytes_in 0 134746 station_ip 5.120.140.204 134746 port 297 134746 unique_id port 134746 remote_ip 10.8.0.234 134750 username jafari 134750 mac 134750 bytes_out 0 134750 bytes_in 0 134750 station_ip 37.153.186.55 134750 port 186 134750 unique_id port 134751 username barzegar 134751 mac 134751 bytes_out 0 134751 bytes_in 0 134751 station_ip 5.120.140.204 134751 port 275 134751 unique_id port 134751 remote_ip 10.8.0.234 134753 username barzegar 134753 mac 134753 bytes_out 0 134753 bytes_in 0 134753 station_ip 5.120.140.204 134753 port 298 134753 unique_id port 134753 remote_ip 10.8.0.234 134758 username amir 134758 mac 134758 bytes_out 0 134758 bytes_in 0 134758 station_ip 46.225.215.18 134758 port 297 134758 unique_id port 134758 remote_ip 10.8.0.50 134763 username farhad2 134763 mac 134763 bytes_out 0 134763 bytes_in 0 134763 station_ip 5.120.100.92 134763 port 259 134763 unique_id port 134763 remote_ip 10.8.0.190 134764 username farhad2 134764 mac 134764 bytes_out 0 134764 bytes_in 0 134764 station_ip 5.120.100.92 134764 port 259 134764 unique_id port 134764 remote_ip 10.8.0.190 134766 username yahodi 134766 kill_reason Another user logged on this global unique id 134766 mac 134766 bytes_out 0 134766 bytes_in 0 134766 station_ip 37.129.57.251 134766 port 275 134766 unique_id port 134766 remote_ip 10.8.0.202 134770 username mohammadjavad 134770 mac 134770 bytes_out 837370 134770 bytes_in 9256186 134770 station_ip 83.122.255.70 134770 port 289 134770 unique_id port 134770 remote_ip 10.8.0.142 134774 username vanila 134774 mac 134774 bytes_out 7575855 134774 bytes_in 511403 134774 station_ip 83.122.230.244 134774 port 259 134774 unique_id port 134774 remote_ip 10.8.0.178 134777 username naeimeh 134777 mac 134777 bytes_out 324637 134777 bytes_in 3333350 134777 station_ip 37.129.209.153 134777 port 296 134777 unique_id port 134777 remote_ip 10.8.0.78 134780 username aminvpn 134780 mac 134780 bytes_out 255901 134780 bytes_in 854770 134780 station_ip 37.129.218.53 134780 port 298 134780 unique_id port 134780 remote_ip 10.8.0.14 134783 username aminvpn 134783 mac 134783 bytes_out 401913 134783 bytes_in 2283539 134783 station_ip 37.129.67.48 134783 port 259 134783 unique_id port 134783 remote_ip 10.8.0.14 134794 username houshang 134794 mac 134794 bytes_out 981451 134794 bytes_in 7558290 134794 station_ip 5.120.175.138 134794 port 296 134794 unique_id port 134794 remote_ip 10.8.0.22 134799 username aminvpn 134799 unique_id port 134799 terminate_cause User-Request 134799 bytes_out 5044774 134799 bytes_in 184245203 134799 station_ip 5.160.112.23 134799 port 15730479 134799 nas_port_type Virtual 134799 remote_ip 5.5.5.243 134802 username yahodi 134802 kill_reason Another user logged on this global unique id 134802 mac 134802 bytes_out 0 134802 bytes_in 0 134802 station_ip 37.129.57.251 134802 port 289 134802 unique_id port 134805 username barzegar 134805 mac 134805 bytes_out 0 134805 bytes_in 0 134752 port 297 134752 unique_id port 134754 username hamid 134754 kill_reason Relative expiration date has reached 134754 mac 134754 bytes_out 0 134754 bytes_in 0 134754 station_ip 83.122.204.77 134754 port 298 134754 unique_id port 134755 username hamid 134755 kill_reason Relative expiration date has reached 134755 mac 134755 bytes_out 0 134755 bytes_in 0 134755 station_ip 83.122.204.77 134755 port 298 134755 unique_id port 134759 username jafari 134759 mac 134759 bytes_out 0 134759 bytes_in 0 134759 station_ip 37.153.186.55 134759 port 181 134759 unique_id port 134759 remote_ip 10.8.1.198 134761 username naeimeh 134761 mac 134761 bytes_out 0 134761 bytes_in 0 134761 station_ip 37.129.60.169 134761 port 284 134761 unique_id port 134761 remote_ip 10.8.0.78 134769 username forozandeh1 134769 mac 134769 bytes_out 0 134769 bytes_in 0 134769 station_ip 83.123.125.25 134769 port 184 134769 unique_id port 134769 remote_ip 10.8.1.250 134772 username farhad2 134772 mac 134772 bytes_out 0 134772 bytes_in 0 134772 station_ip 5.120.100.92 134772 port 182 134772 unique_id port 134772 remote_ip 10.8.1.222 134778 username mirzaei 134778 mac 134778 bytes_out 1539842 134778 bytes_in 8365815 134778 station_ip 5.119.63.41 134778 port 293 134778 unique_id port 134778 remote_ip 10.8.0.66 134785 username farhad2 134785 mac 134785 bytes_out 0 134785 bytes_in 0 134785 station_ip 5.120.100.92 134785 port 181 134785 unique_id port 134785 remote_ip 10.8.1.222 134787 username barzegar 134787 mac 134787 bytes_out 0 134787 bytes_in 0 134787 station_ip 5.120.140.204 134787 port 259 134787 unique_id port 134787 remote_ip 10.8.0.234 134789 username amir 134789 mac 134789 bytes_out 0 134789 bytes_in 0 134789 station_ip 46.225.215.18 134789 port 275 134789 unique_id port 134789 remote_ip 10.8.0.50 134791 username houshang 134791 mac 134791 bytes_out 88682 134791 bytes_in 127442 134791 station_ip 5.120.175.138 134791 port 259 134791 unique_id port 134791 remote_ip 10.8.0.22 134795 username mahdixz 134795 unique_id port 134795 terminate_cause Lost-Carrier 134795 bytes_out 389605 134795 bytes_in 5896113 134795 station_ip 151.235.127.22 134795 port 15730480 134795 nas_port_type Virtual 134795 remote_ip 5.5.5.244 134797 username yahodi 134797 kill_reason Another user logged on this global unique id 134797 mac 134797 bytes_out 0 134797 bytes_in 0 134797 station_ip 37.129.57.251 134797 port 289 134797 unique_id port 134801 username barzegar 134801 mac 134801 bytes_out 0 134801 bytes_in 0 134801 station_ip 5.120.140.204 134801 port 184 134801 unique_id port 134801 remote_ip 10.8.1.174 134803 username mehdizare 134803 mac 134803 bytes_out 535279 134803 bytes_in 900609 134803 station_ip 5.120.148.206 134803 port 279 134803 unique_id port 134803 remote_ip 10.8.0.90 134808 username yahodi 134808 kill_reason Another user logged on this global unique id 134808 mac 134808 bytes_out 0 134808 bytes_in 0 134808 station_ip 37.129.57.251 134808 port 289 134808 unique_id port 134810 username amir 134810 mac 134810 bytes_out 1608011 134810 bytes_in 7662253 134810 station_ip 46.225.215.18 134810 port 293 134810 unique_id port 134810 remote_ip 10.8.0.50 134814 username yahodi 134814 kill_reason Another user logged on this global unique id 134814 mac 134814 bytes_out 0 134814 bytes_in 0 134814 station_ip 37.129.57.251 134814 port 289 134814 unique_id port 134819 username houshang 134819 kill_reason Another user logged on this global unique id 134819 mac 134819 bytes_out 0 134773 mac 134773 bytes_out 0 134773 bytes_in 0 134773 station_ip 83.122.204.77 134773 port 289 134773 unique_id port 134775 username amirabbas 134775 unique_id port 134775 terminate_cause User-Request 134775 bytes_out 11929960 134775 bytes_in 294842246 134775 station_ip 37.27.25.59 134775 port 15730472 134775 nas_port_type Virtual 134775 remote_ip 5.5.5.66 134776 username amir 134776 mac 134776 bytes_out 108966 134776 bytes_in 783723 134776 station_ip 46.225.215.18 134776 port 275 134776 unique_id port 134776 remote_ip 10.8.0.50 134779 username vanila 134779 mac 134779 bytes_out 11657426 134779 bytes_in 40113723 134779 station_ip 83.122.230.244 134779 port 259 134779 unique_id port 134779 remote_ip 10.8.0.178 134781 username barzegar 134781 mac 134781 bytes_out 0 134781 bytes_in 0 134781 station_ip 5.120.140.204 134781 port 275 134781 unique_id port 134781 remote_ip 10.8.0.234 134782 username malekpoir 134782 kill_reason Another user logged on this global unique id 134782 mac 134782 bytes_out 0 134782 bytes_in 0 134782 station_ip 5.119.90.64 134782 port 284 134782 unique_id port 134782 remote_ip 10.8.0.58 134784 username aminvpn 134784 mac 134784 bytes_out 96355 134784 bytes_in 1103064 134784 station_ip 37.129.218.53 134784 port 293 134784 unique_id port 134784 remote_ip 10.8.0.14 134786 username aminvpn 134786 mac 134786 bytes_out 0 134786 bytes_in 0 134786 station_ip 37.129.67.48 134786 port 259 134786 unique_id port 134786 remote_ip 10.8.0.14 134788 username aminvpn 134788 mac 134788 bytes_out 76795 134788 bytes_in 201075 134788 station_ip 37.129.218.53 134788 port 293 134788 unique_id port 134788 remote_ip 10.8.0.14 134790 username yahodi 134790 kill_reason Another user logged on this global unique id 134790 mac 134790 bytes_out 0 134790 bytes_in 0 134790 station_ip 37.129.57.251 134790 port 289 134790 unique_id port 134790 remote_ip 10.8.0.202 134792 username barzegar 134792 mac 134792 bytes_out 6191 134792 bytes_in 7613 134792 station_ip 5.120.140.204 134792 port 293 134792 unique_id port 134792 remote_ip 10.8.0.234 134793 username barzegar 134793 mac 134793 bytes_out 23371 134793 bytes_in 36263 134793 station_ip 5.120.140.204 134793 port 259 134793 unique_id port 134793 remote_ip 10.8.0.234 134796 username barzegar 134796 mac 134796 bytes_out 2766 134796 bytes_in 4912 134796 station_ip 5.120.140.204 134796 port 296 134796 unique_id port 134796 remote_ip 10.8.0.234 134798 username mohammadjavad 134798 mac 134798 bytes_out 1129215 134798 bytes_in 8793914 134798 station_ip 113.203.2.33 134798 port 275 134798 unique_id port 134798 remote_ip 10.8.0.142 134800 username houshang 134800 mac 134800 bytes_out 119489 134800 bytes_in 159377 134800 station_ip 5.120.175.138 134800 port 296 134800 unique_id port 134800 remote_ip 10.8.0.22 134804 username barzegar 134804 mac 134804 bytes_out 0 134804 bytes_in 0 134804 station_ip 5.120.140.204 134804 port 184 134804 unique_id port 134804 remote_ip 10.8.1.174 134809 username jamali 134809 kill_reason Another user logged on this global unique id 134809 mac 134809 bytes_out 0 134809 bytes_in 0 134809 station_ip 5.123.234.13 134809 port 286 134809 unique_id port 134812 username farhad2 134812 mac 134812 bytes_out 0 134812 bytes_in 0 134812 station_ip 5.120.100.92 134812 port 298 134812 unique_id port 134812 remote_ip 10.8.0.190 134818 username farhad2 134818 mac 134818 bytes_out 0 134818 bytes_in 0 134818 station_ip 5.120.100.92 134818 port 295 134818 unique_id port 134805 station_ip 5.120.140.204 134805 port 296 134805 unique_id port 134805 remote_ip 10.8.0.234 134806 username farhad2 134806 mac 134806 bytes_out 0 134806 bytes_in 0 134806 station_ip 5.120.100.92 134806 port 182 134806 unique_id port 134806 remote_ip 10.8.1.222 134807 username mostafa_es78 134807 unique_id port 134807 terminate_cause User-Request 134807 bytes_out 46426 134807 bytes_in 184989 134807 station_ip 5.119.188.240 134807 port 15730482 134807 nas_port_type Virtual 134807 remote_ip 5.5.5.13 134811 username vanila 134811 mac 134811 bytes_out 0 134811 bytes_in 0 134811 station_ip 83.123.106.116 134811 port 299 134811 unique_id port 134811 remote_ip 10.8.0.178 134813 username aminvpn 134813 mac 134813 bytes_out 0 134813 bytes_in 0 134813 station_ip 37.129.67.48 134813 port 295 134813 unique_id port 134813 remote_ip 10.8.0.14 134815 username yahodi 134815 mac 134815 bytes_out 0 134815 bytes_in 0 134815 station_ip 37.129.57.251 134815 port 289 134815 unique_id port 134816 username barzegar 134816 mac 134816 bytes_out 0 134816 bytes_in 0 134816 station_ip 5.120.140.204 134816 port 296 134816 unique_id port 134816 remote_ip 10.8.0.234 134817 username barzegar 134817 mac 134817 bytes_out 0 134817 bytes_in 0 134817 station_ip 5.120.140.204 134817 port 289 134817 unique_id port 134817 remote_ip 10.8.0.234 134822 username hashtadani3 134822 kill_reason Another user logged on this global unique id 134822 mac 134822 bytes_out 0 134822 bytes_in 0 134822 station_ip 83.123.169.229 134822 port 289 134822 unique_id port 134822 remote_ip 10.8.0.154 134829 username hashtadani3 134829 kill_reason Another user logged on this global unique id 134829 mac 134829 bytes_out 0 134829 bytes_in 0 134829 station_ip 83.123.169.229 134829 port 289 134829 unique_id port 134831 username amir 134831 mac 134831 bytes_out 0 134831 bytes_in 0 134831 station_ip 46.225.215.18 134831 port 298 134831 unique_id port 134831 remote_ip 10.8.0.50 134836 username houshang 134836 mac 134836 bytes_out 0 134836 bytes_in 0 134836 station_ip 5.120.175.138 134836 port 279 134836 unique_id port 134841 username barzegar 134841 mac 134841 bytes_out 2058 134841 bytes_in 4425 134841 station_ip 5.120.140.204 134841 port 182 134841 unique_id port 134841 remote_ip 10.8.1.174 134846 username alirr 134846 kill_reason Relative expiration date has reached 134846 unique_id port 134846 bytes_out 0 134846 bytes_in 0 134846 station_ip 31.59.34.38 134846 port 15730485 134846 nas_port_type Virtual 134847 username jafari 134847 kill_reason Another user logged on this global unique id 134847 mac 134847 bytes_out 0 134847 bytes_in 0 134847 station_ip 89.47.70.95 134847 port 185 134847 unique_id port 134851 username hashtadani3 134851 kill_reason Another user logged on this global unique id 134851 mac 134851 bytes_out 0 134851 bytes_in 0 134851 station_ip 83.123.169.229 134851 port 289 134851 unique_id port 134853 username hoorieh 134853 kill_reason Another user logged on this global unique id 134853 mac 134853 bytes_out 0 134853 bytes_in 0 134853 station_ip 5.120.173.121 134853 port 293 134853 unique_id port 134853 remote_ip 10.8.0.38 134857 username jamali 134857 kill_reason Another user logged on this global unique id 134857 mac 134857 bytes_out 0 134857 bytes_in 0 134857 station_ip 5.123.234.13 134857 port 286 134857 unique_id port 134858 username vanila 134858 mac 134858 bytes_out 0 134858 bytes_in 0 134858 station_ip 83.123.15.156 134858 port 295 134858 unique_id port 134858 remote_ip 10.8.0.178 134862 username amir 134818 remote_ip 10.8.0.190 134820 username amir 134820 mac 134820 bytes_out 0 134820 bytes_in 0 134820 station_ip 46.225.215.18 134820 port 295 134820 unique_id port 134820 remote_ip 10.8.0.50 134824 username aminvpn 134824 mac 134824 bytes_out 0 134824 bytes_in 0 134824 station_ip 37.129.67.48 134824 port 293 134824 unique_id port 134824 remote_ip 10.8.0.14 134827 username mohammadmahdi 134827 kill_reason Another user logged on this global unique id 134827 mac 134827 bytes_out 0 134827 bytes_in 0 134827 station_ip 83.122.16.55 134827 port 297 134827 unique_id port 134827 remote_ip 10.8.0.54 134828 username houshang 134828 kill_reason Another user logged on this global unique id 134828 mac 134828 bytes_out 0 134828 bytes_in 0 134828 station_ip 5.120.175.138 134828 port 279 134828 unique_id port 134830 username barzegar 134830 mac 134830 bytes_out 0 134830 bytes_in 0 134830 station_ip 5.120.140.204 134830 port 275 134830 unique_id port 134830 remote_ip 10.8.0.234 134832 username mohammadmahdi 134832 mac 134832 bytes_out 0 134832 bytes_in 0 134832 station_ip 83.122.16.55 134832 port 297 134832 unique_id port 134834 username mohammadmahdi 134834 mac 134834 bytes_out 0 134834 bytes_in 0 134834 station_ip 83.122.16.55 134834 port 298 134834 unique_id port 134834 remote_ip 10.8.0.54 134835 username mahdixz 134835 unique_id port 134835 terminate_cause Lost-Carrier 134835 bytes_out 3419164 134835 bytes_in 77137737 134835 station_ip 151.235.127.22 134835 port 15730481 134835 nas_port_type Virtual 134835 remote_ip 5.5.5.255 134837 username barzegar 134837 mac 134837 bytes_out 0 134837 bytes_in 0 134837 station_ip 5.120.140.204 134837 port 182 134837 unique_id port 134837 remote_ip 10.8.1.174 134838 username jamali 134838 kill_reason Another user logged on this global unique id 134838 mac 134838 bytes_out 0 134838 bytes_in 0 134838 station_ip 5.123.234.13 134838 port 286 134838 unique_id port 134839 username mehdizare 134839 mac 134839 bytes_out 0 134839 bytes_in 0 134839 station_ip 5.120.148.206 134839 port 295 134839 unique_id port 134839 remote_ip 10.8.0.90 134843 username aminvpn 134843 mac 134843 bytes_out 0 134843 bytes_in 0 134843 station_ip 37.129.67.48 134843 port 293 134843 unique_id port 134843 remote_ip 10.8.0.14 134848 username malekpoir 134848 kill_reason Maximum check online fails reached 134848 mac 134848 bytes_out 0 134848 bytes_in 0 134848 station_ip 5.119.90.64 134848 port 284 134848 unique_id port 134854 username forozandeh1 134854 mac 134854 bytes_out 64162 134854 bytes_in 369601 134854 station_ip 83.122.154.173 134854 port 186 134854 unique_id port 134854 remote_ip 10.8.1.250 134855 username farhad2 134855 mac 134855 bytes_out 247851 134855 bytes_in 920476 134855 station_ip 5.120.100.92 134855 port 184 134855 unique_id port 134855 remote_ip 10.8.1.222 134859 username houshang 134859 mac 134859 bytes_out 0 134859 bytes_in 0 134859 station_ip 5.120.175.138 134859 port 275 134859 unique_id port 134859 remote_ip 10.8.0.22 134861 username barzegar 134861 mac 134861 bytes_out 0 134861 bytes_in 0 134861 station_ip 5.120.140.204 134861 port 187 134861 unique_id port 134861 remote_ip 10.8.1.174 134867 username hashtadani3 134867 kill_reason Another user logged on this global unique id 134867 mac 134867 bytes_out 0 134867 bytes_in 0 134867 station_ip 83.123.169.229 134867 port 289 134867 unique_id port 134868 username barzegar 134868 mac 134868 bytes_out 2111 134868 bytes_in 4480 134868 station_ip 5.120.140.204 134819 bytes_in 0 134819 station_ip 5.120.175.138 134819 port 279 134819 unique_id port 134819 remote_ip 10.8.0.22 134821 username mehdizare 134821 mac 134821 bytes_out 0 134821 bytes_in 0 134821 station_ip 5.120.148.206 134821 port 275 134821 unique_id port 134821 remote_ip 10.8.0.90 134823 username jafari 134823 kill_reason Another user logged on this global unique id 134823 mac 134823 bytes_out 0 134823 bytes_in 0 134823 station_ip 89.47.70.95 134823 port 185 134823 unique_id port 134823 remote_ip 10.8.1.198 134825 username barzegar 134825 mac 134825 bytes_out 0 134825 bytes_in 0 134825 station_ip 5.120.140.204 134825 port 295 134825 unique_id port 134825 remote_ip 10.8.0.234 134826 username mehdizare 134826 mac 134826 bytes_out 0 134826 bytes_in 0 134826 station_ip 5.120.148.206 134826 port 275 134826 unique_id port 134826 remote_ip 10.8.0.90 134833 username barzegar 134833 mac 134833 bytes_out 0 134833 bytes_in 0 134833 station_ip 5.120.140.204 134833 port 275 134833 unique_id port 134833 remote_ip 10.8.0.234 134840 username farhad2 134840 mac 134840 bytes_out 0 134840 bytes_in 0 134840 station_ip 5.120.100.92 134840 port 296 134840 unique_id port 134840 remote_ip 10.8.0.190 134842 username amir 134842 mac 134842 bytes_out 0 134842 bytes_in 0 134842 station_ip 46.225.215.18 134842 port 279 134842 unique_id port 134842 remote_ip 10.8.0.50 134844 username farhad2 134844 mac 134844 bytes_out 0 134844 bytes_in 0 134844 station_ip 5.120.100.92 134844 port 295 134844 unique_id port 134844 remote_ip 10.8.0.190 134845 username jamali 134845 kill_reason Another user logged on this global unique id 134845 mac 134845 bytes_out 0 134845 bytes_in 0 134845 station_ip 5.123.234.13 134845 port 286 134845 unique_id port 134849 username barzegar 134849 mac 134849 bytes_out 0 134849 bytes_in 0 134849 station_ip 5.120.140.204 134849 port 295 134849 unique_id port 134849 remote_ip 10.8.0.234 134850 username zotaher 134850 mac 134850 bytes_out 0 134850 bytes_in 0 134850 station_ip 83.123.1.66 134850 port 259 134850 unique_id port 134850 remote_ip 10.8.0.194 134852 username farhad2 134852 mac 134852 bytes_out 725664 134852 bytes_in 1828395 134852 station_ip 5.120.100.92 134852 port 184 134852 unique_id port 134852 remote_ip 10.8.1.222 134856 username barzegar 134856 mac 134856 bytes_out 0 134856 bytes_in 0 134856 station_ip 5.120.140.204 134856 port 298 134856 unique_id port 134856 remote_ip 10.8.0.234 134860 username hoorieh 134860 kill_reason Another user logged on this global unique id 134860 mac 134860 bytes_out 0 134860 bytes_in 0 134860 station_ip 5.120.173.121 134860 port 293 134860 unique_id port 134863 username barzegar 134863 mac 134863 bytes_out 0 134863 bytes_in 0 134863 station_ip 5.120.140.204 134863 port 187 134863 unique_id port 134863 remote_ip 10.8.1.174 134864 username hoorieh 134864 kill_reason Another user logged on this global unique id 134864 mac 134864 bytes_out 0 134864 bytes_in 0 134864 station_ip 5.120.173.121 134864 port 293 134864 unique_id port 134869 username jamali 134869 kill_reason Another user logged on this global unique id 134869 mac 134869 bytes_out 0 134869 bytes_in 0 134869 station_ip 5.123.234.13 134869 port 286 134869 unique_id port 134870 username hoorieh 134870 kill_reason Another user logged on this global unique id 134870 mac 134870 bytes_out 0 134870 bytes_in 0 134870 station_ip 5.120.173.121 134870 port 293 134870 unique_id port 134871 username mehdizare 134871 mac 134862 mac 134862 bytes_out 0 134862 bytes_in 0 134862 station_ip 46.225.215.18 134862 port 259 134862 unique_id port 134862 remote_ip 10.8.0.50 134865 username barzegar 134865 mac 134865 bytes_out 0 134865 bytes_in 0 134865 station_ip 5.120.140.204 134865 port 295 134865 unique_id port 134865 remote_ip 10.8.0.234 134866 username farhad2 134866 mac 134866 bytes_out 886889 134866 bytes_in 3064094 134866 station_ip 5.120.100.92 134866 port 184 134866 unique_id port 134866 remote_ip 10.8.1.222 134876 username barzegar 134876 mac 134876 bytes_out 0 134876 bytes_in 0 134876 station_ip 5.120.140.204 134876 port 298 134876 unique_id port 134876 remote_ip 10.8.0.234 134879 username yahodi 134879 mac 134879 bytes_out 0 134879 bytes_in 0 134879 station_ip 37.129.58.131 134879 port 297 134879 unique_id port 134879 remote_ip 10.8.0.202 134881 username hashtadani3 134881 kill_reason Another user logged on this global unique id 134881 mac 134881 bytes_out 0 134881 bytes_in 0 134881 station_ip 83.123.169.229 134881 port 289 134881 unique_id port 134883 username forozandeh1 134883 mac 134883 bytes_out 943735 134883 bytes_in 8745944 134883 station_ip 83.122.154.173 134883 port 186 134883 unique_id port 134883 remote_ip 10.8.1.250 134887 username barzegar 134887 mac 134887 bytes_out 0 134887 bytes_in 0 134887 station_ip 5.120.140.204 134887 port 279 134887 unique_id port 134887 remote_ip 10.8.0.234 134894 username saeed9658 134894 kill_reason Another user logged on this global unique id 134894 mac 134894 bytes_out 0 134894 bytes_in 0 134894 station_ip 5.119.170.229 134894 port 296 134894 unique_id port 134896 username farhad2 134896 mac 134896 bytes_out 813210 134896 bytes_in 7489160 134896 station_ip 5.119.112.193 134896 port 184 134896 unique_id port 134896 remote_ip 10.8.1.222 134897 username houshang 134897 mac 134897 bytes_out 0 134897 bytes_in 0 134897 station_ip 5.120.175.138 134897 port 295 134897 unique_id port 134897 remote_ip 10.8.0.22 134899 username hoorieh 134899 kill_reason Another user logged on this global unique id 134899 mac 134899 bytes_out 0 134899 bytes_in 0 134899 station_ip 5.120.173.121 134899 port 293 134899 unique_id port 134901 username yarmohamadi 134901 kill_reason Another user logged on this global unique id 134901 mac 134901 bytes_out 0 134901 bytes_in 0 134901 station_ip 5.119.225.132 134901 port 182 134901 unique_id port 134901 remote_ip 10.8.1.234 134903 username saeed9658 134903 mac 134903 bytes_out 0 134903 bytes_in 0 134903 station_ip 5.119.170.229 134903 port 296 134903 unique_id port 134905 username hoorieh 134905 kill_reason Another user logged on this global unique id 134905 mac 134905 bytes_out 0 134905 bytes_in 0 134905 station_ip 5.120.173.121 134905 port 293 134905 unique_id port 134906 username barzegar 134906 mac 134906 bytes_out 0 134906 bytes_in 0 134906 station_ip 5.120.140.204 134906 port 275 134906 unique_id port 134906 remote_ip 10.8.0.234 134908 username yarmohamadi 134908 kill_reason Another user logged on this global unique id 134908 mac 134908 bytes_out 0 134908 bytes_in 0 134908 station_ip 5.119.225.132 134908 port 182 134908 unique_id port 134912 username jafari 134912 kill_reason Another user logged on this global unique id 134912 mac 134912 bytes_out 0 134912 bytes_in 0 134912 station_ip 89.47.70.95 134912 port 185 134912 unique_id port 134913 username barzegar 134913 kill_reason Maximum check online fails reached 134913 mac 134913 bytes_out 0 134913 bytes_in 0 134913 station_ip 5.120.140.204 134868 port 187 134868 unique_id port 134868 remote_ip 10.8.1.174 134872 username barzegar 134872 mac 134872 bytes_out 2371 134872 bytes_in 4764 134872 station_ip 5.120.140.204 134872 port 184 134872 unique_id port 134872 remote_ip 10.8.1.174 134873 username mehdizare 134873 mac 134873 bytes_out 0 134873 bytes_in 0 134873 station_ip 5.120.148.206 134873 port 295 134873 unique_id port 134873 remote_ip 10.8.0.90 134875 username hoorieh 134875 kill_reason Another user logged on this global unique id 134875 mac 134875 bytes_out 0 134875 bytes_in 0 134875 station_ip 5.120.173.121 134875 port 293 134875 unique_id port 134878 username hamid.e 134878 unique_id port 134878 terminate_cause User-Request 134878 bytes_out 8099768 134878 bytes_in 128407408 134878 station_ip 37.27.13.103 134878 port 15730483 134878 nas_port_type Virtual 134878 remote_ip 5.5.5.17 134880 username jafari 134880 kill_reason Another user logged on this global unique id 134880 mac 134880 bytes_out 0 134880 bytes_in 0 134880 station_ip 89.47.70.95 134880 port 185 134880 unique_id port 134884 username hoorieh 134884 kill_reason Another user logged on this global unique id 134884 mac 134884 bytes_out 0 134884 bytes_in 0 134884 station_ip 5.120.173.121 134884 port 293 134884 unique_id port 134885 username barzegar 134885 mac 134885 bytes_out 0 134885 bytes_in 0 134885 station_ip 5.120.140.204 134885 port 279 134885 unique_id port 134885 remote_ip 10.8.0.234 134886 username amir 134886 mac 134886 bytes_out 0 134886 bytes_in 0 134886 station_ip 46.225.215.18 134886 port 275 134886 unique_id port 134886 remote_ip 10.8.0.50 134888 username aminvpn 134888 mac 134888 bytes_out 1829731 134888 bytes_in 8698848 134888 station_ip 37.129.218.53 134888 port 181 134888 unique_id port 134888 remote_ip 10.8.1.6 134890 username aminvpn 134890 mac 134890 bytes_out 0 134890 bytes_in 0 134890 station_ip 113.203.120.203 134890 port 186 134890 unique_id port 134890 remote_ip 10.8.1.6 134891 username aminvpn 134891 mac 134891 bytes_out 0 134891 bytes_in 0 134891 station_ip 37.129.218.53 134891 port 181 134891 unique_id port 134891 remote_ip 10.8.1.6 134898 username barzegar 134898 mac 134898 bytes_out 0 134898 bytes_in 0 134898 station_ip 5.120.140.204 134898 port 275 134898 unique_id port 134898 remote_ip 10.8.0.234 134904 username vanila 134904 mac 134904 bytes_out 0 134904 bytes_in 0 134904 station_ip 83.123.56.140 134904 port 289 134904 unique_id port 134904 remote_ip 10.8.0.178 134910 username godarzi 134910 kill_reason Another user logged on this global unique id 134910 mac 134910 bytes_out 0 134910 bytes_in 0 134910 station_ip 5.202.15.249 134910 port 279 134910 unique_id port 134910 remote_ip 10.8.0.174 134914 username barzegar 134914 mac 134914 bytes_out 0 134914 bytes_in 0 134914 station_ip 5.120.140.204 134914 port 289 134914 unique_id port 134914 remote_ip 10.8.0.234 134917 username jamali 134917 mac 134917 bytes_out 0 134917 bytes_in 0 134917 station_ip 5.123.234.13 134917 port 286 134917 unique_id port 134922 username houshang 134922 mac 134922 bytes_out 0 134922 bytes_in 0 134922 station_ip 5.120.175.138 134922 port 293 134922 unique_id port 134922 remote_ip 10.8.0.22 134924 username barzegar 134924 mac 134924 bytes_out 0 134924 bytes_in 0 134924 station_ip 5.120.140.204 134924 port 289 134924 unique_id port 134924 remote_ip 10.8.0.234 134928 username godarzi 134928 kill_reason Another user logged on this global unique id 134928 mac 134871 bytes_out 0 134871 bytes_in 0 134871 station_ip 5.120.148.206 71407 username arezoo 71407 kill_reason Wrong password 71407 mac 5.237.84.189:49196: Unknown host 71407 bytes_out 0 71407 bytes_in 0 71407 station_ip 5.237.84.189:49196 71407 port 1017 71407 unique_id port 134871 port 297 134871 unique_id port 134871 remote_ip 10.8.0.90 134874 username aminvpn 134874 mac 134874 bytes_out 0 134874 bytes_in 0 134874 station_ip 37.129.67.48 71417 username arezoo 71417 kill_reason Wrong password 71417 mac 5.237.84.189:49310: Unknown host 71417 bytes_out 0 71417 bytes_in 0 71417 station_ip 5.237.84.189:49310 71417 port 1017 71417 unique_id port 134874 port 279 134874 unique_id port 134874 remote_ip 10.8.0.14 134877 username vanila 134877 mac 134877 bytes_out 0 134877 bytes_in 0 134877 station_ip 83.123.56.140 134877 port 299 134877 unique_id port 134877 remote_ip 10.8.0.178 134882 username saeed9658 134882 kill_reason Another user logged on this global unique id 134882 mac 134882 bytes_out 0 134882 bytes_in 0 134882 station_ip 5.119.170.229 134882 port 296 134882 unique_id port 134882 remote_ip 10.8.0.62 134889 username vanila 134889 mac 134889 bytes_out 7583834 134889 bytes_in 1025964 134889 station_ip 83.123.56.140 134889 port 275 134889 unique_id port 134889 remote_ip 10.8.0.178 134892 username hoorieh 134892 kill_reason Another user logged on this global unique id 134892 mac 134892 bytes_out 0 134892 bytes_in 0 134892 station_ip 5.120.173.121 134892 port 293 134892 unique_id port 134893 username aminvpn 134893 mac 134893 bytes_out 0 134893 bytes_in 0 134893 station_ip 113.203.120.203 134893 port 186 134893 unique_id port 134893 remote_ip 10.8.1.6 134895 username aminvpn 134895 mac 134895 bytes_out 0 134895 bytes_in 0 134895 station_ip 113.203.120.203 134895 port 275 134895 unique_id port 134895 remote_ip 10.8.0.14 134900 username hashtadani3 134900 mac 134900 bytes_out 0 134900 bytes_in 0 134900 station_ip 83.123.169.229 134900 port 289 134900 unique_id port 134902 username saeed9658 134902 kill_reason Another user logged on this global unique id 134902 mac 134902 bytes_out 0 134902 bytes_in 0 134902 station_ip 5.119.170.229 134902 port 296 134902 unique_id port 134907 username hoorieh 134907 mac 134907 bytes_out 0 134907 bytes_in 0 134907 station_ip 5.120.173.121 134907 port 293 134907 unique_id port 134909 username aminvpn 134909 mac 134909 bytes_out 0 134909 bytes_in 0 134909 station_ip 5.120.72.205 134909 port 289 134909 unique_id port 134909 remote_ip 10.8.0.14 134911 username aminvpn 134911 mac 134911 bytes_out 0 134911 bytes_in 0 134911 station_ip 83.122.184.170 134911 port 275 134911 unique_id port 134911 remote_ip 10.8.0.14 134923 username sabaghnezhad 134923 mac 134923 bytes_out 0 134923 bytes_in 0 134923 station_ip 83.122.180.251 134923 port 282 134923 unique_id port 134923 remote_ip 10.8.0.186 134926 username mahdixz 134926 unique_id port 134926 terminate_cause Lost-Carrier 134926 bytes_out 1084153 134926 bytes_in 19891130 134926 station_ip 151.235.127.22 134926 port 15730487 134926 nas_port_type Virtual 134926 remote_ip 5.5.5.21 134929 username kordestani 134929 mac 134929 bytes_out 0 134929 bytes_in 0 134929 station_ip 151.235.99.135 134929 port 286 134929 unique_id port 134929 remote_ip 10.8.0.134 134940 username mosi 134940 mac 134940 bytes_out 0 134940 bytes_in 0 134940 station_ip 37.156.55.216 134940 port 289 134940 unique_id port 134940 remote_ip 10.8.0.138 134942 username barzegar 71406 username arezoo 71406 kill_reason Wrong password 71406 mac 5.237.84.189:49188: Unknown host 71406 bytes_out 0 71406 bytes_in 0 71406 station_ip 5.237.84.189:49188 71406 port 1017 71406 unique_id port 71410 username arezoo 71410 kill_reason Wrong password 71410 mac 5.237.84.189:49257: Unknown host 71410 bytes_out 0 71410 bytes_in 0 71410 station_ip 5.237.84.189:49257 71410 port 1017 71410 unique_id port 71416 username arezoo 71416 kill_reason Wrong password 71416 mac 5.237.84.189:49228: Unknown host 71416 bytes_out 0 71416 bytes_in 0 71416 station_ip 5.237.84.189:49228 71416 port 1017 71416 unique_id port 134913 port 184 134913 unique_id port 134915 username aminvpn 134915 mac 134915 bytes_out 0 134915 bytes_in 0 134915 station_ip 5.120.72.205 134915 port 293 134915 unique_id port 134915 remote_ip 10.8.0.14 134916 username yarmohamadi 134916 mac 134916 bytes_out 0 134916 bytes_in 0 134916 station_ip 5.119.225.132 134916 port 182 134916 unique_id port 134918 username barzegar 134918 mac 134918 bytes_out 17765 134918 bytes_in 64527 134918 station_ip 5.120.140.204 134918 port 289 134918 unique_id port 134918 remote_ip 10.8.0.234 134919 username godarzi 134919 kill_reason Another user logged on this global unique id 134919 mac 134919 bytes_out 0 134919 bytes_in 0 134919 station_ip 5.202.15.249 134919 port 279 134919 unique_id port 134920 username vanila 134920 mac 134920 bytes_out 0 134920 bytes_in 0 134920 station_ip 83.123.56.140 134920 port 286 134920 unique_id port 134920 remote_ip 10.8.0.178 134921 username barzegar 134921 mac 134921 bytes_out 0 134921 bytes_in 0 134921 station_ip 5.120.140.204 134921 port 289 134921 unique_id port 134921 remote_ip 10.8.0.234 134925 username barzegar 134925 mac 134925 bytes_out 0 134925 bytes_in 0 134925 station_ip 5.120.176.219 134925 port 182 134925 unique_id port 134925 remote_ip 10.8.1.174 134927 username barzegar 134927 mac 134927 bytes_out 5124 134927 bytes_in 14997 134927 station_ip 5.120.176.219 134927 port 182 134927 unique_id port 134927 remote_ip 10.8.1.174 134930 username aminvpn 134930 mac 134930 bytes_out 0 134930 bytes_in 0 134930 station_ip 83.122.184.170 134930 port 275 134930 unique_id port 134930 remote_ip 10.8.0.14 134931 username godarzi 134931 kill_reason Another user logged on this global unique id 134931 mac 134931 bytes_out 0 134931 bytes_in 0 134931 station_ip 5.202.15.249 134931 port 279 134931 unique_id port 134932 username barzegar 134932 mac 134932 bytes_out 0 134932 bytes_in 0 134932 station_ip 5.120.176.219 134932 port 295 134932 unique_id port 134932 remote_ip 10.8.0.234 134933 username jamali 134933 mac 134933 bytes_out 0 134933 bytes_in 0 134933 station_ip 5.123.118.9 134933 port 289 134933 unique_id port 134933 remote_ip 10.8.0.150 134935 username farhad2 134935 mac 134935 bytes_out 342367 134935 bytes_in 1886928 134935 station_ip 5.120.122.54 134935 port 182 134935 unique_id port 134935 remote_ip 10.8.1.222 134936 username jafari 134936 kill_reason Another user logged on this global unique id 134936 mac 134936 bytes_out 0 134936 bytes_in 0 134936 station_ip 89.47.70.95 134936 port 185 134936 unique_id port 134939 username forozandeh1 134939 mac 134939 bytes_out 0 134939 bytes_in 0 134939 station_ip 37.129.0.255 134939 port 186 134939 unique_id port 134939 remote_ip 10.8.1.250 134942 mac 134942 bytes_out 0 134942 bytes_in 0 134942 station_ip 5.120.176.219 134942 port 289 134942 unique_id port 134944 username houshang 71408 username arezoo 71408 kill_reason Wrong password 71408 mac 5.237.84.189:49217: Unknown host 71408 bytes_out 0 71408 bytes_in 0 71408 station_ip 5.237.84.189:49217 71408 port 1017 71408 unique_id port 71409 username arezoo 71409 kill_reason Wrong password 71409 mac 5.237.84.189:49229: Unknown host 71409 bytes_out 0 71409 bytes_in 0 71409 station_ip 5.237.84.189:49229 71409 port 1017 71409 unique_id port 71412 username arezoo 71412 kill_reason Wrong password 71412 mac 5.237.84.189:49192: Unknown host 71412 bytes_out 0 71412 bytes_in 0 71412 station_ip 5.237.84.189:49192 71412 port 1017 71412 unique_id port 71413 username arezoo 71413 kill_reason Wrong password 71413 mac 5.237.84.189:49191: Unknown host 71413 bytes_out 0 71413 bytes_in 0 71413 station_ip 5.237.84.189:49191 71413 port 1017 71413 unique_id port 71414 username arezoo 71414 kill_reason Wrong password 71414 mac 5.237.84.189:49211: Unknown host 71414 bytes_out 0 71414 bytes_in 0 71414 station_ip 5.237.84.189:49211 71414 port 1017 71414 unique_id port 134928 bytes_out 0 134928 bytes_in 0 134928 station_ip 5.202.15.249 134928 port 279 134928 unique_id port 134934 username barzegar 134934 mac 134934 bytes_out 0 134934 bytes_in 0 134934 station_ip 5.120.176.219 134934 port 295 134934 unique_id port 134934 remote_ip 10.8.0.234 134937 username godarzi 134937 kill_reason Another user logged on this global unique id 134937 mac 134937 bytes_out 0 134937 bytes_in 0 134937 station_ip 5.202.15.249 134937 port 279 134937 unique_id port 134938 username houshang 134938 kill_reason Another user logged on this global unique id 134938 mac 134938 bytes_out 0 134938 bytes_in 0 134938 station_ip 5.120.175.138 134938 port 295 134938 unique_id port 134938 remote_ip 10.8.0.22 134941 username barzegar 134941 mac 134941 bytes_out 0 134941 bytes_in 0 134941 station_ip 5.120.176.219 134941 port 289 134941 unique_id port 134941 remote_ip 10.8.0.234 134942 remote_ip 10.8.0.234 134943 username houshang 134943 mac 134943 bytes_out 0 134943 bytes_in 0 134943 station_ip 5.120.175.138 134943 port 295 134943 unique_id port 134944 mac 134944 bytes_out 0 134944 bytes_in 0 134944 station_ip 5.120.175.138 134944 port 289 134944 unique_id port 134944 remote_ip 10.8.0.22 134945 username aminvpn 134945 unique_id port 134945 terminate_cause User-Request 134945 bytes_out 3198863 134945 bytes_in 62541937 134945 station_ip 5.120.72.205 134945 port 15730486 134945 nas_port_type Virtual 134945 remote_ip 5.5.5.20 134946 username mosi 134946 kill_reason Another user logged on this global unique id 134946 mac 134946 bytes_out 0 134946 bytes_in 0 134946 station_ip 151.235.117.85 134946 port 297 134946 unique_id port 134946 remote_ip 10.8.0.138 134947 username sekonji3 134947 mac 134947 bytes_out 0 134947 bytes_in 0 134947 station_ip 83.122.64.61 134947 port 298 134947 unique_id port 134947 remote_ip 10.8.0.6 134948 username aminvpn 134948 mac 134948 bytes_out 0 134948 bytes_in 0 134948 station_ip 83.122.184.170 134948 port 275 134948 unique_id port 134948 remote_ip 10.8.0.14 134949 username houshang 134949 kill_reason Another user logged on this global unique id 134949 mac 134949 bytes_out 0 134949 bytes_in 0 134949 station_ip 5.120.175.138 134949 port 299 134949 unique_id port 134949 remote_ip 10.8.0.22 134950 username aminvpn 134950 mac 134950 bytes_out 0 134950 bytes_in 0 134950 station_ip 37.129.218.53 134950 port 298 134950 unique_id port 134950 remote_ip 10.8.0.14 134951 username aminvpn 134951 mac 134951 bytes_out 0 134951 bytes_in 0 134951 station_ip 83.122.184.170 134951 port 275 134951 unique_id port 134951 remote_ip 10.8.0.14 134953 username aminvpn 134953 mac 134953 bytes_out 0 134953 bytes_in 0 134953 station_ip 37.129.218.53 134953 port 301 134953 unique_id port 134953 remote_ip 10.8.0.14 134954 username aminvpn 134954 mac 134954 bytes_out 0 134954 bytes_in 0 134954 station_ip 83.122.184.170 134954 port 275 134954 unique_id port 134954 remote_ip 10.8.0.14 134955 username aminvpn 134955 mac 134955 bytes_out 0 134955 bytes_in 0 134955 station_ip 37.129.218.53 134955 port 301 134955 unique_id port 134955 remote_ip 10.8.0.14 134956 username aminvpn 134956 mac 134956 bytes_out 0 134956 bytes_in 0 134956 station_ip 83.122.184.170 134956 port 302 134956 unique_id port 134956 remote_ip 10.8.0.14 134957 username aminvpn 134957 mac 134957 bytes_out 0 134957 bytes_in 0 134957 station_ip 37.129.218.53 134957 port 301 134957 unique_id port 134957 remote_ip 10.8.0.14 134973 username aminvpn 134973 mac 134973 bytes_out 0 134973 bytes_in 0 134973 station_ip 37.129.218.53 134973 port 296 134973 unique_id port 134973 remote_ip 10.8.0.14 134975 username aminvpn 134975 mac 134975 bytes_out 0 134975 bytes_in 0 134975 station_ip 83.122.184.170 134975 port 282 134975 unique_id port 134975 remote_ip 10.8.0.14 134977 username aminvpn 134977 mac 134977 bytes_out 0 134977 bytes_in 0 134977 station_ip 37.129.218.53 134977 port 296 134977 unique_id port 134977 remote_ip 10.8.0.14 134980 username godarzi 134980 mac 134980 bytes_out 0 134980 bytes_in 0 134980 station_ip 5.202.15.249 134980 port 279 134980 unique_id port 134983 username hosseine 134983 mac 134983 bytes_out 0 134983 bytes_in 0 134983 station_ip 37.129.25.196 134983 port 293 134983 unique_id port 134983 remote_ip 10.8.0.238 134990 username mahdixz 134990 unique_id port 134990 terminate_cause Lost-Carrier 134990 bytes_out 1851717 134990 bytes_in 34582433 134990 station_ip 151.235.127.22 134990 port 15730489 134990 nas_port_type Virtual 134990 remote_ip 5.5.5.26 134992 username sekonji3 134992 mac 134992 bytes_out 0 134992 bytes_in 0 134992 station_ip 83.122.64.61 134992 port 293 134992 unique_id port 134992 remote_ip 10.8.0.6 134993 username aminvpn 134993 mac 134993 bytes_out 0 134993 bytes_in 0 134993 station_ip 37.129.218.53 134993 port 181 134993 unique_id port 134993 remote_ip 10.8.1.6 135005 username aminvpn 135005 mac 135005 bytes_out 0 135005 bytes_in 0 135005 station_ip 83.122.184.170 135005 port 186 135005 unique_id port 135005 remote_ip 10.8.1.6 135010 username aminvpn 135010 mac 135010 bytes_out 0 135010 bytes_in 0 135010 station_ip 83.122.184.170 135010 port 186 135010 unique_id port 135010 remote_ip 10.8.1.6 135011 username aminvpn 135011 mac 135011 bytes_out 0 135011 bytes_in 0 135011 station_ip 37.129.218.53 135011 port 181 135011 unique_id port 135011 remote_ip 10.8.1.6 135014 username aminvpn 135014 mac 135014 bytes_out 0 135014 bytes_in 0 135014 station_ip 83.122.184.170 135014 port 186 135014 unique_id port 135014 remote_ip 10.8.1.6 135018 username aminvpn 135018 mac 135018 bytes_out 0 135018 bytes_in 0 135018 station_ip 83.122.184.170 135018 port 186 135018 unique_id port 135018 remote_ip 10.8.1.6 135021 username aminvpn 135021 mac 135021 bytes_out 0 135021 bytes_in 0 135021 station_ip 37.129.218.53 135021 port 181 135021 unique_id port 135021 remote_ip 10.8.1.6 135023 username farhad2 134952 username forozandeh1 134952 mac 134952 bytes_out 249044 134952 bytes_in 2454183 134952 station_ip 83.123.157.68 134952 port 186 134952 unique_id port 134952 remote_ip 10.8.1.250 134958 username yahodi 134958 kill_reason Another user logged on this global unique id 134958 mac 134958 bytes_out 0 134958 bytes_in 0 134958 station_ip 37.129.15.35 134958 port 275 134958 unique_id port 134958 remote_ip 10.8.0.202 134959 username aminvpn 134959 mac 134959 bytes_out 0 134959 bytes_in 0 134959 station_ip 83.122.184.170 134959 port 302 134959 unique_id port 134959 remote_ip 10.8.0.14 134961 username sekonji3 134961 mac 134961 bytes_out 0 134961 bytes_in 0 134961 station_ip 83.122.64.61 134961 port 302 134961 unique_id port 134961 remote_ip 10.8.0.6 134963 username houshang 134963 kill_reason Another user logged on this global unique id 134963 mac 134963 bytes_out 0 134963 bytes_in 0 134963 station_ip 5.120.175.138 134963 port 299 134963 unique_id port 134964 username aminvpn 134964 mac 134964 bytes_out 0 134964 bytes_in 0 134964 station_ip 37.129.218.53 134964 port 301 134964 unique_id port 134964 remote_ip 10.8.0.14 134968 username aminvpn 134968 mac 134968 bytes_out 0 134968 bytes_in 0 134968 station_ip 37.129.218.53 134968 port 301 134968 unique_id port 134968 remote_ip 10.8.0.14 134970 username aminvpn 134970 mac 134970 bytes_out 0 134970 bytes_in 0 134970 station_ip 83.122.184.170 134970 port 298 134970 unique_id port 134970 remote_ip 10.8.0.14 134972 username sabaghnezhad 134972 mac 134972 bytes_out 287958 134972 bytes_in 1222887 134972 station_ip 113.203.34.112 134972 port 282 134972 unique_id port 134972 remote_ip 10.8.0.186 134974 username houshang 134974 mac 134974 bytes_out 0 134974 bytes_in 0 134974 station_ip 5.120.175.138 134974 port 299 134974 unique_id port 134976 username sekonji3 134976 mac 134976 bytes_out 0 134976 bytes_in 0 134976 station_ip 83.122.64.61 134976 port 282 134976 unique_id port 134976 remote_ip 10.8.0.6 134978 username mosi 134978 kill_reason Another user logged on this global unique id 134978 mac 134978 bytes_out 0 134978 bytes_in 0 134978 station_ip 151.235.117.85 134978 port 297 134978 unique_id port 134979 username aminvpn 134979 mac 134979 bytes_out 0 134979 bytes_in 0 134979 station_ip 83.122.184.170 134979 port 282 134979 unique_id port 134979 remote_ip 10.8.0.14 134981 username aminvpn 134981 mac 134981 bytes_out 0 134981 bytes_in 0 134981 station_ip 37.129.218.53 134981 port 296 134981 unique_id port 134981 remote_ip 10.8.0.14 134982 username aminvpn 134982 mac 134982 bytes_out 0 134982 bytes_in 0 134982 station_ip 83.122.184.170 134982 port 279 134982 unique_id port 134982 remote_ip 10.8.0.14 134984 username yahodi 134984 kill_reason Another user logged on this global unique id 134984 mac 134984 bytes_out 0 134984 bytes_in 0 134984 station_ip 37.129.15.35 134984 port 275 134984 unique_id port 134985 username aminvpn 134985 mac 134985 bytes_out 1310814 134985 bytes_in 7024880 134985 station_ip 37.129.218.53 134985 port 181 134985 unique_id port 134985 remote_ip 10.8.1.6 134987 username aminvpn 134987 mac 134987 bytes_out 0 134987 bytes_in 0 134987 station_ip 83.122.184.170 134987 port 185 134987 unique_id port 134987 remote_ip 10.8.1.6 134988 username aminvpn 134988 mac 134988 bytes_out 0 134988 bytes_in 0 134988 station_ip 37.129.218.53 134988 port 181 134988 unique_id port 134988 remote_ip 10.8.1.6 134994 username aminvpn 134960 username sekonji3 134960 mac 134960 bytes_out 0 134960 bytes_in 0 134960 station_ip 83.122.64.61 134960 port 302 134960 unique_id port 134960 remote_ip 10.8.0.6 134962 username vanila 134962 mac 134962 bytes_out 0 134962 bytes_in 0 134962 station_ip 83.123.56.140 134962 port 298 134962 unique_id port 134962 remote_ip 10.8.0.178 134965 username yahodi 134965 kill_reason Another user logged on this global unique id 134965 mac 134965 bytes_out 0 134965 bytes_in 0 134965 station_ip 37.129.15.35 134965 port 275 134965 unique_id port 134966 username aminvpn 134966 mac 134966 bytes_out 0 134966 bytes_in 0 134966 station_ip 83.122.184.170 134966 port 298 134966 unique_id port 134966 remote_ip 10.8.0.14 134967 username jafari 134967 mac 134967 bytes_out 0 134967 bytes_in 0 134967 station_ip 89.47.70.95 134967 port 185 134967 unique_id port 134969 username farhad2 134969 mac 134969 bytes_out 0 134969 bytes_in 0 134969 station_ip 5.119.170.131 134969 port 296 134969 unique_id port 134969 remote_ip 10.8.0.190 134971 username sekonji3 134971 mac 134971 bytes_out 0 134971 bytes_in 0 134971 station_ip 83.122.64.61 134971 port 301 134971 unique_id port 134971 remote_ip 10.8.0.6 134986 username sekonji3 134986 mac 134986 bytes_out 0 134986 bytes_in 0 134986 station_ip 83.122.64.61 134986 port 293 134986 unique_id port 134986 remote_ip 10.8.0.6 134989 username barzegar 134989 mac 134989 bytes_out 75862 134989 bytes_in 86192 134989 station_ip 5.120.176.219 134989 port 295 134989 unique_id port 134989 remote_ip 10.8.0.234 134991 username aminvpn 134991 mac 134991 bytes_out 0 134991 bytes_in 0 134991 station_ip 83.122.184.170 134991 port 185 134991 unique_id port 134991 remote_ip 10.8.1.6 134995 username barzegar 134995 mac 134995 bytes_out 0 134995 bytes_in 0 134995 station_ip 5.120.176.219 134995 port 293 134995 unique_id port 134995 remote_ip 10.8.0.234 134997 username sekonji3 134997 mac 134997 bytes_out 0 134997 bytes_in 0 134997 station_ip 83.122.64.61 134997 port 295 134997 unique_id port 134997 remote_ip 10.8.0.6 134999 username farhad2 134999 mac 134999 bytes_out 0 134999 bytes_in 0 134999 station_ip 5.119.170.131 134999 port 298 134999 unique_id port 134999 remote_ip 10.8.0.190 135006 username aminvpn 135006 mac 135006 bytes_out 0 135006 bytes_in 0 135006 station_ip 37.129.218.53 135006 port 181 135006 unique_id port 135006 remote_ip 10.8.1.6 135008 username barzegar 135008 mac 135008 bytes_out 0 135008 bytes_in 0 135008 station_ip 5.120.176.219 135008 port 279 135008 unique_id port 135008 remote_ip 10.8.0.234 135012 username aminvpn 135012 mac 135012 bytes_out 0 135012 bytes_in 0 135012 station_ip 83.122.184.170 135012 port 186 135012 unique_id port 135012 remote_ip 10.8.1.6 135015 username aminvpn 135015 mac 135015 bytes_out 0 135015 bytes_in 0 135015 station_ip 37.129.218.53 135015 port 181 135015 unique_id port 135015 remote_ip 10.8.1.6 135016 username aminvpn 135016 mac 135016 bytes_out 0 135016 bytes_in 0 135016 station_ip 83.122.184.170 135016 port 186 135016 unique_id port 135016 remote_ip 10.8.1.6 135019 username aminvpn 135019 mac 135019 bytes_out 0 135019 bytes_in 0 135019 station_ip 37.129.218.53 135019 port 181 135019 unique_id port 135019 remote_ip 10.8.1.6 135022 username aminvpn 135022 mac 135022 bytes_out 0 135022 bytes_in 0 135022 station_ip 83.122.184.170 134994 mac 134994 bytes_out 0 134994 bytes_in 0 134994 station_ip 83.122.184.170 134994 port 185 134994 unique_id port 134994 remote_ip 10.8.1.6 134996 username aminvpn 134996 mac 134996 bytes_out 0 134996 bytes_in 0 134996 station_ip 37.129.218.53 134996 port 181 134996 unique_id port 134996 remote_ip 10.8.1.6 134998 username aminvpn 134998 mac 134998 bytes_out 0 134998 bytes_in 0 134998 station_ip 83.122.184.170 134998 port 185 134998 unique_id port 134998 remote_ip 10.8.1.6 135000 username hosseine 135000 mac 135000 bytes_out 0 135000 bytes_in 0 135000 station_ip 37.129.104.18 135000 port 279 135000 unique_id port 135000 remote_ip 10.8.0.238 135001 username aminvpn 135001 mac 135001 bytes_out 0 135001 bytes_in 0 135001 station_ip 37.129.218.53 135001 port 181 135001 unique_id port 135001 remote_ip 10.8.1.6 135002 username aminvpn 135002 mac 135002 bytes_out 0 135002 bytes_in 0 135002 station_ip 83.122.184.170 135002 port 185 135002 unique_id port 135002 remote_ip 10.8.1.6 135003 username shokokian 135003 unique_id port 135003 terminate_cause Lost-Carrier 135003 bytes_out 375376 135003 bytes_in 5842029 135003 station_ip 93.114.23.121 135003 port 15730490 135003 nas_port_type Virtual 135003 remote_ip 5.5.5.28 135004 username aminvpn 135004 mac 135004 bytes_out 0 135004 bytes_in 0 135004 station_ip 37.129.218.53 135004 port 181 135004 unique_id port 135004 remote_ip 10.8.1.6 135007 username aminvpn 135007 mac 135007 bytes_out 0 135007 bytes_in 0 135007 station_ip 83.122.184.170 135007 port 186 135007 unique_id port 135007 remote_ip 10.8.1.6 135009 username aminvpn 135009 mac 135009 bytes_out 0 135009 bytes_in 0 135009 station_ip 37.129.218.53 135009 port 181 135009 unique_id port 135009 remote_ip 10.8.1.6 135013 username aminvpn 135013 mac 135013 bytes_out 0 135013 bytes_in 0 135013 station_ip 37.129.218.53 135013 port 181 135013 unique_id port 135013 remote_ip 10.8.1.6 135017 username aminvpn 135017 mac 135017 bytes_out 0 135017 bytes_in 0 135017 station_ip 37.129.218.53 135017 port 181 135017 unique_id port 135017 remote_ip 10.8.1.6 135020 username aminvpn 135020 mac 135020 bytes_out 0 135020 bytes_in 0 135020 station_ip 83.122.184.170 135020 port 186 135020 unique_id port 135020 remote_ip 10.8.1.6 135025 username aminvpn 135025 mac 135025 bytes_out 0 135025 bytes_in 0 135025 station_ip 37.129.218.53 135025 port 181 135025 unique_id port 135025 remote_ip 10.8.1.6 135028 username aminvpn 135028 mac 135028 bytes_out 0 135028 bytes_in 0 135028 station_ip 83.122.184.170 135028 port 186 135028 unique_id port 135028 remote_ip 10.8.1.6 135029 username aminvpn 135029 mac 135029 bytes_out 0 135029 bytes_in 0 135029 station_ip 37.129.218.53 135029 port 181 135029 unique_id port 135029 remote_ip 10.8.1.6 135031 username mosi 135031 kill_reason Another user logged on this global unique id 135031 mac 135031 bytes_out 0 135031 bytes_in 0 135031 station_ip 151.235.117.85 135031 port 297 135031 unique_id port 135032 username aminvpn 135032 mac 135032 bytes_out 0 135032 bytes_in 0 135032 station_ip 37.129.218.53 135032 port 181 135032 unique_id port 135032 remote_ip 10.8.1.6 135038 username aminvpn 135038 mac 135038 bytes_out 0 135038 bytes_in 0 135038 station_ip 83.122.184.170 135038 port 186 135038 unique_id port 135038 remote_ip 10.8.1.6 135041 username aminvpn 135041 mac 135041 bytes_out 0 135022 port 186 135022 unique_id port 135022 remote_ip 10.8.1.6 135024 username sekonji3 135024 mac 135024 bytes_out 0 135024 bytes_in 0 135024 station_ip 83.122.64.61 135024 port 295 135024 unique_id port 135024 remote_ip 10.8.0.6 135027 username aminvpn 135027 mac 135027 bytes_out 0 135027 bytes_in 0 135027 station_ip 37.129.218.53 135027 port 181 135027 unique_id port 135027 remote_ip 10.8.1.6 135034 username aminvpn 135034 mac 135034 bytes_out 0 135034 bytes_in 0 135034 station_ip 37.129.218.53 135034 port 181 135034 unique_id port 135034 remote_ip 10.8.1.6 135036 username aminvpn 135036 mac 135036 bytes_out 0 135036 bytes_in 0 135036 station_ip 83.122.184.170 135036 port 186 135036 unique_id port 135036 remote_ip 10.8.1.6 135037 username aminvpn 135037 mac 135037 bytes_out 0 135037 bytes_in 0 135037 station_ip 37.129.218.53 135037 port 181 135037 unique_id port 135037 remote_ip 10.8.1.6 135040 username aminvpn 135040 mac 135040 bytes_out 0 135040 bytes_in 0 135040 station_ip 83.122.184.170 135040 port 186 135040 unique_id port 135040 remote_ip 10.8.1.6 135045 username aminvpn 135045 mac 135045 bytes_out 0 135045 bytes_in 0 135045 station_ip 37.129.218.53 135045 port 181 135045 unique_id port 135045 remote_ip 10.8.1.6 135046 username aminvpn 135046 mac 135046 bytes_out 0 135046 bytes_in 0 135046 station_ip 83.122.184.170 135046 port 186 135046 unique_id port 135046 remote_ip 10.8.1.6 135049 username aminvpn 135049 mac 135049 bytes_out 0 135049 bytes_in 0 135049 station_ip 83.122.184.170 135049 port 186 135049 unique_id port 135049 remote_ip 10.8.1.6 135050 username yarmohamadi 135050 mac 135050 bytes_out 4714769 135050 bytes_in 27034223 135050 station_ip 5.119.135.66 135050 port 182 135050 unique_id port 135050 remote_ip 10.8.1.234 135055 username aminvpn 135055 mac 135055 bytes_out 0 135055 bytes_in 0 135055 station_ip 83.122.184.170 135055 port 182 135055 unique_id port 135055 remote_ip 10.8.1.6 135056 username aminvpn 135056 mac 135056 bytes_out 0 135056 bytes_in 0 135056 station_ip 37.129.218.53 135056 port 185 135056 unique_id port 135056 remote_ip 10.8.1.6 135057 username barzegar 135057 mac 135057 bytes_out 0 135057 bytes_in 0 135057 station_ip 5.120.176.219 135057 port 182 135057 unique_id port 135057 remote_ip 10.8.1.174 135059 username yahodi 135059 mac 135059 bytes_out 0 135059 bytes_in 0 135059 station_ip 37.129.15.35 135059 port 275 135059 unique_id port 135059 remote_ip 10.8.0.202 135062 username sekonji3 135062 mac 135062 bytes_out 0 135062 bytes_in 0 135062 station_ip 83.122.64.61 135062 port 275 135062 unique_id port 135062 remote_ip 10.8.0.6 135068 username aminvpn 135068 mac 135068 bytes_out 0 135068 bytes_in 0 135068 station_ip 83.122.184.170 135068 port 185 135068 unique_id port 135068 remote_ip 10.8.1.6 135074 username aminvpn 135074 mac 135074 bytes_out 0 135074 bytes_in 0 135074 station_ip 37.129.218.53 135074 port 182 135074 unique_id port 135074 remote_ip 10.8.1.6 135077 username aminvpn 135077 mac 135077 bytes_out 0 135077 bytes_in 0 135077 station_ip 83.122.184.170 135077 port 185 135077 unique_id port 135077 remote_ip 10.8.1.6 135078 username aminvpn 135078 mac 135078 bytes_out 0 135078 bytes_in 0 135078 station_ip 37.129.218.53 135078 port 182 135078 unique_id port 135078 remote_ip 10.8.1.6 135081 username aminvpn 135023 mac 135023 bytes_out 0 135023 bytes_in 0 135023 station_ip 5.119.170.131 135023 port 295 135023 unique_id port 135023 remote_ip 10.8.0.190 135026 username aminvpn 135026 mac 135026 bytes_out 0 135026 bytes_in 0 135026 station_ip 83.122.184.170 135026 port 186 135026 unique_id port 135026 remote_ip 10.8.1.6 135030 username aminvpn 135030 mac 135030 bytes_out 0 135030 bytes_in 0 135030 station_ip 83.122.184.170 135030 port 186 135030 unique_id port 135030 remote_ip 10.8.1.6 135033 username aminvpn 135033 mac 135033 bytes_out 0 135033 bytes_in 0 135033 station_ip 83.122.184.170 135033 port 186 135033 unique_id port 135033 remote_ip 10.8.1.6 135035 username houshang 135035 mac 135035 bytes_out 0 135035 bytes_in 0 135035 station_ip 5.120.175.138 135035 port 279 135035 unique_id port 135035 remote_ip 10.8.0.22 135039 username aminvpn 135039 mac 135039 bytes_out 0 135039 bytes_in 0 135039 station_ip 37.129.218.53 135039 port 181 135039 unique_id port 135039 remote_ip 10.8.1.6 135043 username aminvpn 135043 mac 135043 bytes_out 0 135043 bytes_in 0 135043 station_ip 37.129.218.53 135043 port 181 135043 unique_id port 135043 remote_ip 10.8.1.6 135044 username aminvpn 135044 mac 135044 bytes_out 0 135044 bytes_in 0 135044 station_ip 83.122.184.170 135044 port 186 135044 unique_id port 135044 remote_ip 10.8.1.6 135052 username aminvpn 135052 mac 135052 bytes_out 0 135052 bytes_in 0 135052 station_ip 83.122.184.170 135052 port 182 135052 unique_id port 135052 remote_ip 10.8.1.6 135054 username aminvpn 135054 mac 135054 bytes_out 0 135054 bytes_in 0 135054 station_ip 37.129.218.53 135054 port 187 135054 unique_id port 135054 remote_ip 10.8.1.6 135061 username aminvpn 135061 mac 135061 bytes_out 0 135061 bytes_in 0 135061 station_ip 83.122.184.170 135061 port 185 135061 unique_id port 135061 remote_ip 10.8.1.6 135067 username aminvpn 135067 mac 135067 bytes_out 0 135067 bytes_in 0 135067 station_ip 37.129.218.53 135067 port 182 135067 unique_id port 135067 remote_ip 10.8.1.6 135070 username aminvpn 135070 mac 135070 bytes_out 0 135070 bytes_in 0 135070 station_ip 83.122.184.170 135070 port 185 135070 unique_id port 135070 remote_ip 10.8.1.6 135071 username aminvpn 135071 mac 135071 bytes_out 0 135071 bytes_in 0 135071 station_ip 37.129.218.53 135071 port 182 135071 unique_id port 135071 remote_ip 10.8.1.6 135073 username aminvpn 135073 mac 135073 bytes_out 0 135073 bytes_in 0 135073 station_ip 83.122.184.170 135073 port 185 135073 unique_id port 135073 remote_ip 10.8.1.6 135076 username aminvpn 135076 mac 135076 bytes_out 0 135076 bytes_in 0 135076 station_ip 37.129.218.53 135076 port 182 135076 unique_id port 135076 remote_ip 10.8.1.6 135080 username aminvpn 135080 mac 135080 bytes_out 0 135080 bytes_in 0 135080 station_ip 37.129.218.53 135080 port 182 135080 unique_id port 135080 remote_ip 10.8.1.6 135085 username aminvpn 135085 mac 135085 bytes_out 0 135085 bytes_in 0 135085 station_ip 83.122.184.170 135085 port 185 135085 unique_id port 135085 remote_ip 10.8.1.6 135088 username aminvpn 135088 mac 135088 bytes_out 0 135088 bytes_in 0 135088 station_ip 37.129.218.53 135088 port 182 135088 unique_id port 135088 remote_ip 10.8.1.6 135096 username sekonji3 135096 mac 135096 bytes_out 0 135096 bytes_in 0 135096 station_ip 83.122.64.61 135096 port 295 135041 bytes_in 0 135041 station_ip 37.129.218.53 135041 port 181 135041 unique_id port 135041 remote_ip 10.8.1.6 135042 username aminvpn 135042 mac 135042 bytes_out 0 135042 bytes_in 0 135042 station_ip 83.122.184.170 135042 port 186 135042 unique_id port 135042 remote_ip 10.8.1.6 135047 username aminvpn 135047 mac 135047 bytes_out 0 135047 bytes_in 0 135047 station_ip 37.129.218.53 135047 port 187 135047 unique_id port 135047 remote_ip 10.8.1.6 135048 username yahodi 135048 mac 135048 bytes_out 0 135048 bytes_in 0 135048 station_ip 37.129.15.35 135048 port 275 135048 unique_id port 135051 username aminvpn 135051 mac 135051 bytes_out 0 135051 bytes_in 0 135051 station_ip 37.129.218.53 135051 port 187 135051 unique_id port 135051 remote_ip 10.8.1.6 135053 username barzegar 135053 mac 135053 bytes_out 39678 135053 bytes_in 41918 135053 station_ip 5.120.176.219 135053 port 185 135053 unique_id port 135053 remote_ip 10.8.1.174 135058 username aminvpn 135058 mac 135058 bytes_out 0 135058 bytes_in 0 135058 station_ip 83.122.184.170 135058 port 187 135058 unique_id port 135058 remote_ip 10.8.1.6 135060 username aminvpn 135060 mac 135060 bytes_out 0 135060 bytes_in 0 135060 station_ip 37.129.218.53 135060 port 182 135060 unique_id port 135060 remote_ip 10.8.1.6 135063 username aminvpn 135063 mac 135063 bytes_out 0 135063 bytes_in 0 135063 station_ip 37.129.218.53 135063 port 182 135063 unique_id port 135063 remote_ip 10.8.1.6 135064 username aminvpn 135064 mac 135064 bytes_out 0 135064 bytes_in 0 135064 station_ip 83.122.184.170 135064 port 185 135064 unique_id port 135064 remote_ip 10.8.1.6 135065 username aminvpn 135065 mac 135065 bytes_out 0 135065 bytes_in 0 135065 station_ip 37.129.218.53 135065 port 182 135065 unique_id port 135065 remote_ip 10.8.1.6 135066 username aminvpn 135066 mac 135066 bytes_out 0 135066 bytes_in 0 135066 station_ip 83.122.184.170 135066 port 185 135066 unique_id port 135066 remote_ip 10.8.1.6 135069 username aminvpn 135069 mac 135069 bytes_out 0 135069 bytes_in 0 135069 station_ip 37.129.218.53 135069 port 182 135069 unique_id port 135069 remote_ip 10.8.1.6 135072 username barzegar 135072 kill_reason Maximum check online fails reached 135072 mac 135072 bytes_out 0 135072 bytes_in 0 135072 station_ip 5.120.176.219 135072 port 279 135072 unique_id port 135075 username aminvpn 135075 mac 135075 bytes_out 0 135075 bytes_in 0 135075 station_ip 83.122.184.170 135075 port 185 135075 unique_id port 135075 remote_ip 10.8.1.6 135079 username aminvpn 135079 mac 135079 bytes_out 0 135079 bytes_in 0 135079 station_ip 83.122.184.170 135079 port 185 135079 unique_id port 135079 remote_ip 10.8.1.6 135083 username aminvpn 135083 mac 135083 bytes_out 0 135083 bytes_in 0 135083 station_ip 83.122.184.170 135083 port 185 135083 unique_id port 135083 remote_ip 10.8.1.6 135084 username aminvpn 135084 mac 135084 bytes_out 0 135084 bytes_in 0 135084 station_ip 37.129.218.53 135084 port 182 135084 unique_id port 135084 remote_ip 10.8.1.6 135087 username aminvpn 135087 mac 135087 bytes_out 0 135087 bytes_in 0 135087 station_ip 83.122.184.170 135087 port 185 135087 unique_id port 135087 remote_ip 10.8.1.6 135089 username ehsun 135089 mac 135089 bytes_out 0 135089 bytes_in 0 135089 station_ip 46.225.209.192 135089 port 284 135089 unique_id port 135089 remote_ip 10.8.0.162 135081 mac 135081 bytes_out 0 135081 bytes_in 0 135081 station_ip 83.122.184.170 135081 port 185 135081 unique_id port 135081 remote_ip 10.8.1.6 135082 username aminvpn 135082 mac 135082 bytes_out 0 135082 bytes_in 0 135082 station_ip 37.129.218.53 135082 port 182 135082 unique_id port 135082 remote_ip 10.8.1.6 135086 username aminvpn 135086 mac 135086 bytes_out 0 135086 bytes_in 0 135086 station_ip 37.129.218.53 135086 port 182 135086 unique_id port 135086 remote_ip 10.8.1.6 135090 username aminvpn 135090 mac 135090 bytes_out 0 135090 bytes_in 0 135090 station_ip 37.129.218.53 135090 port 282 135090 unique_id port 135090 remote_ip 10.8.0.14 135094 username sekonji3 135094 mac 135094 bytes_out 0 135094 bytes_in 0 135094 station_ip 83.122.64.61 135094 port 295 135094 unique_id port 135094 remote_ip 10.8.0.6 135095 username sekonji3 135095 mac 135095 bytes_out 0 135095 bytes_in 0 135095 station_ip 83.122.64.61 135095 port 295 135095 unique_id port 135095 remote_ip 10.8.0.6 135098 username barzegar 135098 mac 135098 bytes_out 0 135098 bytes_in 0 135098 station_ip 5.120.176.219 135098 port 181 135098 unique_id port 135098 remote_ip 10.8.1.174 135104 username godarzi 135104 mac 135104 bytes_out 0 135104 bytes_in 0 135104 station_ip 5.202.15.249 135104 port 296 135104 unique_id port 135104 remote_ip 10.8.0.174 135108 username sekonji3 135108 mac 135108 bytes_out 0 135108 bytes_in 0 135108 station_ip 83.122.64.61 135108 port 295 135108 unique_id port 135108 remote_ip 10.8.0.6 135109 username mosi 135109 kill_reason Another user logged on this global unique id 135109 mac 135109 bytes_out 0 135109 bytes_in 0 135109 station_ip 151.235.117.85 135109 port 297 135109 unique_id port 135113 username aminvpn 135113 mac 135113 bytes_out 0 135113 bytes_in 0 135113 station_ip 37.129.218.53 135113 port 182 135113 unique_id port 135113 remote_ip 10.8.1.6 135114 username aminvpn 135114 mac 135114 bytes_out 0 135114 bytes_in 0 135114 station_ip 83.122.184.170 135114 port 187 135114 unique_id port 135114 remote_ip 10.8.1.6 135116 username aminvpn 135116 mac 135116 bytes_out 0 135116 bytes_in 0 135116 station_ip 37.129.218.53 135116 port 182 135116 unique_id port 135116 remote_ip 10.8.1.6 135118 username barzegar 135118 mac 135118 bytes_out 10906 135118 bytes_in 12798 135118 station_ip 5.120.176.219 135118 port 185 135118 unique_id port 135118 remote_ip 10.8.1.174 135119 username aminvpn 135119 mac 135119 bytes_out 0 135119 bytes_in 0 135119 station_ip 37.129.218.53 135119 port 182 135119 unique_id port 135119 remote_ip 10.8.1.6 135123 username aminvpn 135123 mac 135123 bytes_out 0 135123 bytes_in 0 135123 station_ip 37.129.218.53 135123 port 182 135123 unique_id port 135123 remote_ip 10.8.1.6 135125 username khademi 135125 kill_reason Another user logged on this global unique id 135125 mac 135125 bytes_out 0 135125 bytes_in 0 135125 station_ip 83.123.76.126 135125 port 286 135125 unique_id port 135125 remote_ip 10.8.0.10 135127 username aminvpn 135127 mac 135127 bytes_out 0 135127 bytes_in 0 135127 station_ip 83.122.184.170 135127 port 185 135127 unique_id port 135127 remote_ip 10.8.1.6 135129 username aminvpn 135129 mac 135129 bytes_out 0 135129 bytes_in 0 135129 station_ip 83.122.184.170 135129 port 185 135129 unique_id port 135129 remote_ip 10.8.1.6 135137 username aminvpn 135137 mac 135137 bytes_out 0 135091 username aminvpn 135091 mac 135091 bytes_out 0 135091 bytes_in 0 135091 station_ip 83.122.184.170 135091 port 185 135091 unique_id port 135091 remote_ip 10.8.1.6 135092 username sekonji3 135092 mac 135092 bytes_out 0 135092 bytes_in 0 135092 station_ip 83.122.64.61 135092 port 295 135092 unique_id port 135092 remote_ip 10.8.0.6 135093 username forozandeh1 135093 mac 135093 bytes_out 1243186 135093 bytes_in 12132265 135093 station_ip 113.203.28.2 135093 port 181 135093 unique_id port 135093 remote_ip 10.8.1.250 135097 username farhad2 135097 mac 135097 bytes_out 0 135097 bytes_in 0 135097 station_ip 5.119.170.131 135097 port 284 135097 unique_id port 135097 remote_ip 10.8.0.190 135099 username mosi 135099 kill_reason Another user logged on this global unique id 135099 mac 135099 bytes_out 0 135099 bytes_in 0 135099 station_ip 151.235.117.85 135099 port 297 135099 unique_id port 135100 username kordestani 135100 mac 135100 bytes_out 0 135100 bytes_in 0 135100 station_ip 151.235.89.199 135100 port 282 135100 unique_id port 135100 remote_ip 10.8.0.134 135101 username sekonji3 135101 mac 135101 bytes_out 0 135101 bytes_in 0 135101 station_ip 83.122.64.61 135101 port 284 135101 unique_id port 135101 remote_ip 10.8.0.6 135103 username vanila 135103 mac 135103 bytes_out 0 135103 bytes_in 0 135103 station_ip 83.123.56.140 135103 port 298 135103 unique_id port 135103 remote_ip 10.8.0.178 135107 username barzegar 135107 mac 135107 bytes_out 0 135107 bytes_in 0 135107 station_ip 5.120.176.219 135107 port 296 135107 unique_id port 135107 remote_ip 10.8.0.234 135110 username vanila 135110 mac 135110 bytes_out 5828299 135110 bytes_in 1544654 135110 station_ip 83.123.56.140 135110 port 284 135110 unique_id port 135110 remote_ip 10.8.0.178 135111 username aminvpn 135111 mac 135111 bytes_out 133163 135111 bytes_in 219158 135111 station_ip 37.129.218.53 135111 port 182 135111 unique_id port 135111 remote_ip 10.8.1.6 135117 username aminvpn 135117 mac 135117 bytes_out 0 135117 bytes_in 0 135117 station_ip 83.122.184.170 135117 port 187 135117 unique_id port 135117 remote_ip 10.8.1.6 135120 username shokokian 135120 unique_id port 135120 terminate_cause User-Request 135120 bytes_out 241163 135120 bytes_in 7136049 135120 station_ip 5.134.154.175 135120 port 15730497 135120 nas_port_type Virtual 135120 remote_ip 5.5.5.35 135124 username aminvpn 135124 mac 135124 bytes_out 0 135124 bytes_in 0 135124 station_ip 83.122.184.170 135124 port 185 135124 unique_id port 135124 remote_ip 10.8.1.6 135130 username aminvpn 135130 mac 135130 bytes_out 0 135130 bytes_in 0 135130 station_ip 37.129.218.53 135130 port 182 135130 unique_id port 135130 remote_ip 10.8.1.6 135132 username moradi 135132 mac 135132 bytes_out 51216 135132 bytes_in 113048 135132 station_ip 113.203.16.20 135132 port 296 135132 unique_id port 135132 remote_ip 10.8.0.250 135133 username aminvpn 135133 mac 135133 bytes_out 0 135133 bytes_in 0 135133 station_ip 37.129.218.53 135133 port 182 135133 unique_id port 135133 remote_ip 10.8.1.6 135135 username aminvpn 135135 mac 135135 bytes_out 0 135135 bytes_in 0 135135 station_ip 83.122.184.170 135135 port 185 135135 unique_id port 135135 remote_ip 10.8.1.6 135138 username aminvpn 135138 mac 135138 bytes_out 0 135138 bytes_in 0 135138 station_ip 83.122.184.170 135138 port 185 135138 unique_id port 135138 remote_ip 10.8.1.6 135139 username aminvpn 135096 unique_id port 135096 remote_ip 10.8.0.6 135102 username barzegar 135102 mac 135102 bytes_out 0 135102 bytes_in 0 135102 station_ip 5.120.176.219 135102 port 181 135102 unique_id port 135102 remote_ip 10.8.1.174 135105 username barzegar 135105 mac 135105 bytes_out 0 135105 bytes_in 0 135105 station_ip 5.120.176.219 135105 port 295 135105 unique_id port 135105 remote_ip 10.8.0.234 135106 username amirabbas 135106 unique_id port 135106 terminate_cause User-Request 135106 bytes_out 4564649 135106 bytes_in 114489889 135106 station_ip 37.27.19.221 135106 port 15730491 135106 nas_port_type Virtual 135106 remote_ip 5.5.5.30 135112 username aminvpn 135112 mac 135112 bytes_out 0 135112 bytes_in 0 135112 station_ip 83.122.184.170 135112 port 187 135112 unique_id port 135112 remote_ip 10.8.1.6 135115 username aminvpn 135115 mac 135115 bytes_out 0 135115 bytes_in 0 135115 station_ip 83.122.184.170 135115 port 282 135115 unique_id port 135115 remote_ip 10.8.0.14 135121 username aminvpn 135121 mac 135121 bytes_out 0 135121 bytes_in 0 135121 station_ip 83.122.184.170 135121 port 187 135121 unique_id port 135121 remote_ip 10.8.1.6 135122 username barzegar 135122 mac 135122 bytes_out 0 135122 bytes_in 0 135122 station_ip 5.120.176.219 135122 port 185 135122 unique_id port 135122 remote_ip 10.8.1.174 135126 username aminvpn 135126 mac 135126 bytes_out 0 135126 bytes_in 0 135126 station_ip 37.129.218.53 135126 port 182 135126 unique_id port 135126 remote_ip 10.8.1.6 135128 username aminvpn 135128 mac 135128 bytes_out 0 135128 bytes_in 0 135128 station_ip 37.129.218.53 135128 port 182 135128 unique_id port 135128 remote_ip 10.8.1.6 135131 username aminvpn 135131 mac 135131 bytes_out 0 135131 bytes_in 0 135131 station_ip 83.122.184.170 135131 port 185 135131 unique_id port 135131 remote_ip 10.8.1.6 135134 username vanila 135134 mac 135134 bytes_out 0 135134 bytes_in 0 135134 station_ip 83.123.56.140 135134 port 282 135134 unique_id port 135134 remote_ip 10.8.0.178 135136 username barzegar 135136 mac 135136 bytes_out 0 135136 bytes_in 0 135136 station_ip 5.120.176.219 135136 port 185 135136 unique_id port 135136 remote_ip 10.8.1.174 135140 username aminvpn 135140 mac 135140 bytes_out 0 135140 bytes_in 0 135140 station_ip 83.122.184.170 135140 port 185 135140 unique_id port 135140 remote_ip 10.8.1.6 135142 username aminvpn 135142 mac 135142 bytes_out 32310 135142 bytes_in 42713 135142 station_ip 37.129.218.53 135142 port 182 135142 unique_id port 135142 remote_ip 10.8.1.6 135144 username shokokian 135144 unique_id port 135144 terminate_cause Lost-Carrier 135144 bytes_out 2562 135144 bytes_in 7036 135144 station_ip 5.134.154.175 135144 port 15730496 135144 nas_port_type Virtual 135144 remote_ip 5.5.5.33 135145 username aminvpn 135145 mac 135145 bytes_out 0 135145 bytes_in 0 135145 station_ip 37.129.218.53 135145 port 182 135145 unique_id port 135145 remote_ip 10.8.1.6 135148 username aminvpn 135148 mac 135148 bytes_out 0 135148 bytes_in 0 135148 station_ip 83.122.184.170 135148 port 181 135148 unique_id port 135148 remote_ip 10.8.1.6 135149 username barzegar 135149 mac 135149 bytes_out 0 135149 bytes_in 0 135149 station_ip 5.120.176.219 135149 port 282 135149 unique_id port 135149 remote_ip 10.8.0.234 135150 username zotaher 135150 mac 135150 bytes_out 0 135150 bytes_in 0 135150 station_ip 83.123.1.66 135150 port 259 135137 bytes_in 0 135137 station_ip 37.129.218.53 135137 port 182 135137 unique_id port 135137 remote_ip 10.8.1.6 135143 username aminvpn 135143 mac 135143 bytes_out 0 135143 bytes_in 0 135143 station_ip 83.122.184.170 135143 port 181 135143 unique_id port 135143 remote_ip 10.8.1.6 135146 username aminvpn 135146 mac 135146 bytes_out 0 135146 bytes_in 0 135146 station_ip 83.122.184.170 135146 port 181 135146 unique_id port 135146 remote_ip 10.8.1.6 135151 username khademi 135151 kill_reason Another user logged on this global unique id 135151 mac 135151 bytes_out 0 135151 bytes_in 0 135151 station_ip 83.123.76.126 135151 port 286 135151 unique_id port 135153 username hosseine 135153 mac 135153 bytes_out 0 135153 bytes_in 0 135153 station_ip 37.129.104.18 135153 port 293 135153 unique_id port 135153 remote_ip 10.8.0.238 135158 username amirabbas 135158 unique_id port 135158 terminate_cause User-Request 135158 bytes_out 5633457 135158 bytes_in 158535473 135158 station_ip 37.27.19.221 135158 port 15730498 135158 nas_port_type Virtual 135158 remote_ip 5.5.5.36 135161 username amir 135161 mac 135161 bytes_out 199417 135161 bytes_in 1157898 135161 station_ip 37.27.28.170 135161 port 185 135161 unique_id port 135161 remote_ip 10.8.1.22 135162 username amir 135162 mac 135162 bytes_out 0 135162 bytes_in 0 135162 station_ip 37.27.28.170 135162 port 185 135162 unique_id port 135162 remote_ip 10.8.1.22 135163 username barzegar 135163 mac 135163 bytes_out 0 135163 bytes_in 0 135163 station_ip 5.120.176.219 135163 port 282 135163 unique_id port 135163 remote_ip 10.8.0.234 135166 username khademi 135166 kill_reason Another user logged on this global unique id 135166 mac 135166 bytes_out 0 135166 bytes_in 0 135166 station_ip 83.123.76.126 135166 port 286 135166 unique_id port 135167 username amir 135167 mac 135167 bytes_out 0 135167 bytes_in 0 135167 station_ip 37.27.28.170 135167 port 295 135167 unique_id port 135167 remote_ip 10.8.0.50 135173 username barzegar 135173 mac 135173 bytes_out 0 135173 bytes_in 0 135173 station_ip 5.120.176.219 135173 port 298 135173 unique_id port 135173 remote_ip 10.8.0.234 135174 username khademi 135174 kill_reason Another user logged on this global unique id 135174 mac 135174 bytes_out 0 135174 bytes_in 0 135174 station_ip 83.123.76.126 135174 port 286 135174 unique_id port 135185 username mehdizare 135185 kill_reason Another user logged on this global unique id 135185 mac 135185 bytes_out 0 135185 bytes_in 0 135185 station_ip 5.120.148.206 135185 port 293 135185 unique_id port 135195 username khademi 135195 kill_reason Another user logged on this global unique id 135195 mac 135195 bytes_out 0 135195 bytes_in 0 135195 station_ip 83.123.76.126 135195 port 286 135195 unique_id port 135198 username aminvpn 135198 mac 135198 bytes_out 0 135198 bytes_in 0 135198 station_ip 37.129.218.53 135198 port 182 135198 unique_id port 135198 remote_ip 10.8.1.6 135201 username godarzi 135201 kill_reason Another user logged on this global unique id 135201 mac 135201 bytes_out 0 135201 bytes_in 0 135201 station_ip 5.202.15.249 135201 port 275 135201 unique_id port 135201 remote_ip 10.8.0.174 135202 username aminvpn 135202 mac 135202 bytes_out 0 135202 bytes_in 0 135202 station_ip 83.122.184.170 135202 port 185 135202 unique_id port 135202 remote_ip 10.8.1.6 135207 username yahodi 135207 mac 135207 bytes_out 0 135207 bytes_in 0 135207 station_ip 37.129.23.83 135207 port 296 135207 unique_id port 135207 remote_ip 10.8.0.202 135139 mac 135139 bytes_out 0 135139 bytes_in 0 135139 station_ip 37.129.218.53 135139 port 182 135139 unique_id port 135139 remote_ip 10.8.1.6 135141 username forozandeh1 135141 mac 135141 bytes_out 725242 135141 bytes_in 3313488 135141 station_ip 37.129.191.187 135141 port 181 135141 unique_id port 135141 remote_ip 10.8.1.250 135147 username aminvpn 135147 mac 135147 bytes_out 0 135147 bytes_in 0 135147 station_ip 37.129.218.53 135147 port 182 135147 unique_id port 135147 remote_ip 10.8.1.6 135152 username barzegar 135152 mac 135152 bytes_out 0 135152 bytes_in 0 135152 station_ip 5.120.176.219 135152 port 259 135152 unique_id port 135152 remote_ip 10.8.0.234 135154 username zotaher 135154 mac 135154 bytes_out 0 135154 bytes_in 0 135154 station_ip 83.123.1.66 135154 port 282 135154 unique_id port 135154 remote_ip 10.8.0.194 135155 username barzegar 135155 mac 135155 bytes_out 0 135155 bytes_in 0 135155 station_ip 5.120.176.219 135155 port 282 135155 unique_id port 135155 remote_ip 10.8.0.234 135159 username mosi 135159 kill_reason Another user logged on this global unique id 135159 mac 135159 bytes_out 0 135159 bytes_in 0 135159 station_ip 151.235.117.85 135159 port 297 135159 unique_id port 135160 username godarzi 135160 mac 135160 bytes_out 0 135160 bytes_in 0 135160 station_ip 5.202.15.249 135160 port 295 135160 unique_id port 135160 remote_ip 10.8.0.174 135164 username barzegar 135164 mac 135164 bytes_out 0 135164 bytes_in 0 135164 station_ip 5.120.176.219 135164 port 296 135164 unique_id port 135164 remote_ip 10.8.0.234 135165 username mosi 135165 kill_reason Another user logged on this global unique id 135165 mac 135165 bytes_out 0 135165 bytes_in 0 135165 station_ip 151.235.117.85 135165 port 297 135165 unique_id port 135168 username barzegar 135168 mac 135168 bytes_out 0 135168 bytes_in 0 135168 station_ip 5.120.176.219 135168 port 296 135168 unique_id port 135168 remote_ip 10.8.0.234 135170 username yarmohamadi 135170 kill_reason Another user logged on this global unique id 135170 mac 135170 bytes_out 0 135170 bytes_in 0 135170 station_ip 5.119.148.125 135170 port 186 135170 unique_id port 135170 remote_ip 10.8.1.234 135172 username malekpoir 135172 mac 135172 bytes_out 0 135172 bytes_in 0 135172 station_ip 5.119.90.64 135172 port 275 135172 unique_id port 135172 remote_ip 10.8.0.58 135175 username barzegar 135175 mac 135175 bytes_out 0 135175 bytes_in 0 135175 station_ip 5.120.176.219 135175 port 275 135175 unique_id port 135175 remote_ip 10.8.0.234 135177 username amir 135177 mac 135177 bytes_out 0 135177 bytes_in 0 135177 station_ip 37.27.28.170 135177 port 295 135177 unique_id port 135177 remote_ip 10.8.0.50 135182 username khademi 135182 kill_reason Another user logged on this global unique id 135182 mac 135182 bytes_out 0 135182 bytes_in 0 135182 station_ip 83.123.76.126 135182 port 286 135182 unique_id port 135183 username yarmohamadi 135183 mac 135183 bytes_out 0 135183 bytes_in 0 135183 station_ip 5.119.148.125 135183 port 186 135183 unique_id port 135186 username mehdizare 135186 kill_reason Another user logged on this global unique id 135186 mac 135186 bytes_out 0 135186 bytes_in 0 135186 station_ip 5.120.148.206 135186 port 293 135186 unique_id port 135189 username barzegar 135189 kill_reason Maximum check online fails reached 135189 mac 135189 bytes_out 0 135189 bytes_in 0 135189 station_ip 5.120.176.219 135189 port 293 135189 unique_id port 135191 username khademi 135150 unique_id port 135150 remote_ip 10.8.0.194 135156 username vanila 135156 mac 135156 bytes_out 0 135156 bytes_in 0 135156 station_ip 83.123.56.140 135156 port 296 135156 unique_id port 135156 remote_ip 10.8.0.178 135157 username barzegar 135157 mac 135157 bytes_out 0 135157 bytes_in 0 135157 station_ip 5.120.176.219 135157 port 282 135157 unique_id port 135157 remote_ip 10.8.0.234 135169 username amir 135169 mac 135169 bytes_out 0 135169 bytes_in 0 135169 station_ip 37.27.28.170 135169 port 295 135169 unique_id port 135169 remote_ip 10.8.0.50 135171 username yahodi 135171 kill_reason Another user logged on this global unique id 135171 mac 135171 bytes_out 0 135171 bytes_in 0 135171 station_ip 37.129.28.55 135171 port 284 135171 unique_id port 135171 remote_ip 10.8.0.202 135176 username mehdizare 135176 mac 135176 bytes_out 0 135176 bytes_in 0 135176 station_ip 5.120.148.206 135176 port 300 135176 unique_id port 135176 remote_ip 10.8.0.90 135178 username mohammadjavad 135178 mac 135178 bytes_out 350271 135178 bytes_in 1918005 135178 station_ip 37.129.175.147 135178 port 296 135178 unique_id port 135178 remote_ip 10.8.0.142 135179 username milan 135179 kill_reason Another user logged on this global unique id 135179 mac 135179 bytes_out 0 135179 bytes_in 0 135179 station_ip 5.119.229.52 135179 port 290 135179 unique_id port 135180 username barzegar 135180 mac 135180 bytes_out 0 135180 bytes_in 0 135180 station_ip 5.120.176.219 135180 port 275 135180 unique_id port 135180 remote_ip 10.8.0.234 135181 username barzegar 135181 mac 135181 bytes_out 0 135181 bytes_in 0 135181 station_ip 5.120.176.219 135181 port 275 135181 unique_id port 135181 remote_ip 10.8.0.234 135184 username vanila 135184 mac 135184 bytes_out 0 135184 bytes_in 0 135184 station_ip 83.123.56.140 135184 port 293 135184 unique_id port 135184 remote_ip 10.8.0.178 135187 username barzegar 135187 kill_reason Another user logged on this global unique id 135187 mac 135187 bytes_out 0 135187 bytes_in 0 135187 station_ip 5.120.176.219 135187 port 293 135187 unique_id port 135188 username yahodi 135188 mac 135188 bytes_out 0 135188 bytes_in 0 135188 station_ip 37.129.28.55 135188 port 284 135188 unique_id port 135190 username hosseine 135190 kill_reason Another user logged on this global unique id 135190 mac 135190 bytes_out 0 135190 bytes_in 0 135190 station_ip 37.129.104.18 135190 port 259 135190 unique_id port 135190 remote_ip 10.8.0.238 135192 username vanila 135192 mac 135192 bytes_out 7952945 135192 bytes_in 1155507 135192 station_ip 83.123.56.140 135192 port 275 135192 unique_id port 135192 remote_ip 10.8.0.178 135196 username aminvpn 135196 mac 135196 bytes_out 194901 135196 bytes_in 344401 135196 station_ip 37.129.218.53 135196 port 182 135196 unique_id port 135196 remote_ip 10.8.1.6 135197 username aminvpn 135197 mac 135197 bytes_out 0 135197 bytes_in 0 135197 station_ip 83.122.184.170 135197 port 185 135197 unique_id port 135197 remote_ip 10.8.1.6 135200 username aminvpn 135200 mac 135200 bytes_out 0 135200 bytes_in 0 135200 station_ip 37.129.218.53 135200 port 182 135200 unique_id port 135200 remote_ip 10.8.1.6 135204 username aminvpn 135204 mac 135204 bytes_out 0 135204 bytes_in 0 135204 station_ip 83.122.184.170 135204 port 185 135204 unique_id port 135204 remote_ip 10.8.1.6 135206 username aminvpn 135206 mac 135206 bytes_out 0 135206 bytes_in 0 135206 station_ip 37.129.218.53 135206 port 182 135191 kill_reason Another user logged on this global unique id 135191 mac 135191 bytes_out 0 135191 bytes_in 0 135191 station_ip 83.123.76.126 135191 port 286 135191 unique_id port 135193 username milan 135193 kill_reason Another user logged on this global unique id 135193 mac 135193 bytes_out 0 135193 bytes_in 0 135193 station_ip 5.119.229.52 135193 port 290 135193 unique_id port 135194 username houshang 135194 mac 135194 bytes_out 0 135194 bytes_in 0 135194 station_ip 5.120.110.58 135194 port 293 135194 unique_id port 135194 remote_ip 10.8.0.22 135199 username aminvpn 135199 mac 135199 bytes_out 0 135199 bytes_in 0 135199 station_ip 83.122.184.170 135199 port 185 135199 unique_id port 135199 remote_ip 10.8.1.6 135203 username aminvpn 135203 mac 135203 bytes_out 0 135203 bytes_in 0 135203 station_ip 37.129.218.53 135203 port 182 135203 unique_id port 135203 remote_ip 10.8.1.6 135205 username amir 135205 mac 135205 bytes_out 695975 135205 bytes_in 8152099 135205 station_ip 37.27.28.170 135205 port 295 135205 unique_id port 135205 remote_ip 10.8.0.50 135208 username aminvpn 135208 mac 135208 bytes_out 0 135208 bytes_in 0 135208 station_ip 83.122.184.170 135208 port 185 135208 unique_id port 135208 remote_ip 10.8.1.6 135211 username godarzi 135211 mac 135211 bytes_out 0 135211 bytes_in 0 135211 station_ip 5.202.15.249 135211 port 275 135211 unique_id port 135214 username aminvpn 135214 mac 135214 bytes_out 0 135214 bytes_in 0 135214 station_ip 83.122.184.170 135214 port 185 135214 unique_id port 135214 remote_ip 10.8.1.6 135216 username aminvpn 135216 mac 135216 bytes_out 0 135216 bytes_in 0 135216 station_ip 83.122.184.170 135216 port 185 135216 unique_id port 135216 remote_ip 10.8.1.6 135217 username aminvpn 135217 mac 135217 bytes_out 0 135217 bytes_in 0 135217 station_ip 37.129.218.53 135217 port 182 135217 unique_id port 135217 remote_ip 10.8.1.6 135232 username houshang 135232 mac 135232 bytes_out 0 135232 bytes_in 0 135232 station_ip 5.120.110.58 135232 port 298 135232 unique_id port 135232 remote_ip 10.8.0.22 135234 username aminvpn 135234 mac 135234 bytes_out 14585 135234 bytes_in 17330 135234 station_ip 83.122.184.170 135234 port 185 135234 unique_id port 135234 remote_ip 10.8.1.6 135237 username khademi 135237 kill_reason Another user logged on this global unique id 135237 mac 135237 bytes_out 0 135237 bytes_in 0 135237 station_ip 83.123.76.126 135237 port 286 135237 unique_id port 135238 username aminvpn 135238 mac 135238 bytes_out 0 135238 bytes_in 0 135238 station_ip 37.129.218.53 135238 port 182 135238 unique_id port 135238 remote_ip 10.8.1.6 135241 username moradi 135241 kill_reason Another user logged on this global unique id 135241 mac 135241 bytes_out 0 135241 bytes_in 0 135241 station_ip 113.203.1.28 135241 port 284 135241 unique_id port 135241 remote_ip 10.8.0.250 135242 username mansour 135242 mac 135242 bytes_out 0 135242 bytes_in 0 135242 station_ip 5.202.10.115 135242 port 287 135242 unique_id port 135242 remote_ip 10.8.0.30 135245 username malekpoir 135245 mac 135245 bytes_out 0 135245 bytes_in 0 135245 station_ip 5.119.131.30 135245 port 290 135245 unique_id port 135245 remote_ip 10.8.0.58 135247 username amir 135247 mac 135247 bytes_out 0 135247 bytes_in 0 135247 station_ip 37.27.28.170 135247 port 293 135247 unique_id port 135247 remote_ip 10.8.0.50 135249 username godarzi 135249 kill_reason Another user logged on this global unique id 135206 unique_id port 135206 remote_ip 10.8.1.6 135209 username aminvpn 135209 mac 135209 bytes_out 0 135209 bytes_in 0 135209 station_ip 37.129.218.53 135209 port 182 135209 unique_id port 135209 remote_ip 10.8.1.6 135210 username aminvpn 135210 mac 135210 bytes_out 0 135210 bytes_in 0 135210 station_ip 83.122.184.170 135210 port 185 135210 unique_id port 135210 remote_ip 10.8.1.6 135212 username aminvpn 135212 mac 135212 bytes_out 0 135212 bytes_in 0 135212 station_ip 37.129.218.53 135212 port 182 135212 unique_id port 135212 remote_ip 10.8.1.6 135221 username yahodi 135221 mac 135221 bytes_out 0 135221 bytes_in 0 135221 station_ip 37.129.23.83 135221 port 296 135221 unique_id port 135221 remote_ip 10.8.0.202 135222 username aminvpn 135222 mac 135222 bytes_out 0 135222 bytes_in 0 135222 station_ip 37.129.218.53 135222 port 182 135222 unique_id port 135222 remote_ip 10.8.1.6 135224 username hamid.e 135224 unique_id port 135224 terminate_cause Lost-Carrier 135224 bytes_out 6006497 135224 bytes_in 130607985 135224 station_ip 37.27.13.103 135224 port 15730495 135224 nas_port_type Virtual 135224 remote_ip 5.5.5.31 135225 username aminvpn 135225 mac 135225 bytes_out 0 135225 bytes_in 0 135225 station_ip 37.129.218.53 135225 port 182 135225 unique_id port 135225 remote_ip 10.8.1.6 135226 username aminvpn 135226 mac 135226 bytes_out 3791 135226 bytes_in 6630 135226 station_ip 83.122.184.170 135226 port 185 135226 unique_id port 135226 remote_ip 10.8.1.6 135228 username saeed9658 135228 mac 135228 bytes_out 855249 135228 bytes_in 10224504 135228 station_ip 5.119.170.229 135228 port 293 135228 unique_id port 135228 remote_ip 10.8.0.62 135229 username hamidsalari 135229 kill_reason Another user logged on this global unique id 135229 mac 135229 bytes_out 0 135229 bytes_in 0 135229 station_ip 5.120.109.206 135229 port 292 135229 unique_id port 135229 remote_ip 10.8.0.222 135230 username aminvpn 135230 mac 135230 bytes_out 25898 135230 bytes_in 37327 135230 station_ip 83.122.184.170 135230 port 185 135230 unique_id port 135230 remote_ip 10.8.1.6 135233 username forozandeh1 135233 mac 135233 bytes_out 0 135233 bytes_in 0 135233 station_ip 37.129.245.126 135233 port 182 135233 unique_id port 135233 remote_ip 10.8.1.250 135235 username aminvpn 135235 mac 135235 bytes_out 0 135235 bytes_in 0 135235 station_ip 37.129.218.53 135235 port 182 135235 unique_id port 135235 remote_ip 10.8.1.6 135236 username aminvpn 135236 mac 135236 bytes_out 0 135236 bytes_in 0 135236 station_ip 83.122.184.170 135236 port 185 135236 unique_id port 135236 remote_ip 10.8.1.6 135240 username houshang 135240 mac 135240 bytes_out 0 135240 bytes_in 0 135240 station_ip 5.120.110.58 135240 port 298 135240 unique_id port 135240 remote_ip 10.8.0.22 135244 username godarzi 135244 kill_reason Another user logged on this global unique id 135244 mac 135244 bytes_out 0 135244 bytes_in 0 135244 station_ip 5.202.15.249 135244 port 300 135244 unique_id port 135244 remote_ip 10.8.0.174 135251 username yahodi 135251 mac 135251 bytes_out 0 135251 bytes_in 0 135251 station_ip 37.129.40.231 135251 port 290 135251 unique_id port 135251 remote_ip 10.8.0.202 135257 username yahodi 135257 mac 135257 bytes_out 0 135257 bytes_in 0 135257 station_ip 37.129.40.231 135257 port 300 135257 unique_id port 135257 remote_ip 10.8.0.202 135261 username farhad2 135261 mac 135261 bytes_out 6716369 135261 bytes_in 46718795 135213 username farhad2 135213 mac 135213 bytes_out 0 135213 bytes_in 0 135213 station_ip 5.119.71.40 135213 port 293 135213 unique_id port 135213 remote_ip 10.8.0.190 135215 username aminvpn 135215 mac 135215 bytes_out 0 135215 bytes_in 0 135215 station_ip 37.129.218.53 135215 port 182 135215 unique_id port 135215 remote_ip 10.8.1.6 135218 username khademi 135218 kill_reason Another user logged on this global unique id 135218 mac 135218 bytes_out 0 135218 bytes_in 0 135218 station_ip 83.123.76.126 135218 port 286 135218 unique_id port 135219 username zotaher 135219 mac 135219 bytes_out 1076521 135219 bytes_in 1999325 135219 station_ip 83.123.1.66 135219 port 181 135219 unique_id port 135219 remote_ip 10.8.1.246 135220 username aminvpn 135220 mac 135220 bytes_out 0 135220 bytes_in 0 135220 station_ip 83.122.184.170 135220 port 185 135220 unique_id port 135220 remote_ip 10.8.1.6 135223 username aminvpn 135223 mac 135223 bytes_out 0 135223 bytes_in 0 135223 station_ip 83.122.184.170 135223 port 185 135223 unique_id port 135223 remote_ip 10.8.1.6 135227 username aminvpn 135227 mac 135227 bytes_out 0 135227 bytes_in 0 135227 station_ip 37.129.218.53 135227 port 182 135227 unique_id port 135227 remote_ip 10.8.1.6 135231 username aminvpn 135231 mac 135231 bytes_out 0 135231 bytes_in 0 135231 station_ip 37.129.218.53 135231 port 186 135231 unique_id port 135231 remote_ip 10.8.1.6 135239 username aminvpn 135239 mac 135239 bytes_out 0 135239 bytes_in 0 135239 station_ip 83.122.184.170 135239 port 185 135239 unique_id port 135239 remote_ip 10.8.1.6 135243 username milan 135243 mac 135243 bytes_out 0 135243 bytes_in 0 135243 station_ip 5.119.229.52 135243 port 290 135243 unique_id port 135246 username mosi 135246 kill_reason Another user logged on this global unique id 135246 mac 135246 bytes_out 0 135246 bytes_in 0 135246 station_ip 151.235.117.85 135246 port 297 135246 unique_id port 135248 username vanila 135248 mac 135248 bytes_out 0 135248 bytes_in 0 135248 station_ip 83.123.56.140 135248 port 299 135248 unique_id port 135248 remote_ip 10.8.0.178 135250 username mehdizare 135250 mac 135250 bytes_out 0 135250 bytes_in 0 135250 station_ip 5.120.148.206 135250 port 296 135250 unique_id port 135250 remote_ip 10.8.0.90 135254 username yahodi 135254 mac 135254 bytes_out 1726106 135254 bytes_in 33699625 135254 station_ip 37.129.40.231 135254 port 290 135254 unique_id port 135254 remote_ip 10.8.0.202 135256 username mahdiyehalizadeh 135256 mac 135256 bytes_out 0 135256 bytes_in 0 135256 station_ip 37.129.155.46 135256 port 296 135256 unique_id port 135256 remote_ip 10.8.0.82 135260 username mohammadjavad 135260 mac 135260 bytes_out 274966 135260 bytes_in 1337549 135260 station_ip 37.129.193.39 135260 port 299 135260 unique_id port 135260 remote_ip 10.8.0.142 135262 username farhad2 135262 mac 135262 bytes_out 0 135262 bytes_in 0 135262 station_ip 5.119.234.9 135262 port 275 135262 unique_id port 135262 remote_ip 10.8.0.190 135263 username moradi 135263 mac 135263 bytes_out 0 135263 bytes_in 0 135263 station_ip 113.203.1.28 135263 port 284 135263 unique_id port 135265 username malekpoir 135265 mac 135265 bytes_out 0 135265 bytes_in 0 135265 station_ip 5.119.131.30 135265 port 298 135265 unique_id port 135266 username aminvpn 135266 mac 135266 bytes_out 0 135266 bytes_in 0 135266 station_ip 83.122.200.62 135266 port 275 135249 mac 135249 bytes_out 0 135249 bytes_in 0 135249 station_ip 5.202.15.249 135249 port 300 135249 unique_id port 135252 username godarzi 135252 mac 135252 bytes_out 0 135252 bytes_in 0 135252 station_ip 5.202.15.249 135252 port 300 135252 unique_id port 135253 username amin.saeedi 135253 unique_id port 135253 terminate_cause User-Request 135253 bytes_out 609108 135253 bytes_in 7888155 135253 station_ip 5.120.49.49 135253 port 15730499 135253 nas_port_type Virtual 135253 remote_ip 5.5.5.50 135255 username amir 135255 mac 135255 bytes_out 0 135255 bytes_in 0 135255 station_ip 37.27.28.170 135255 port 290 135255 unique_id port 135255 remote_ip 10.8.0.50 135258 username malekpoir 135258 kill_reason Another user logged on this global unique id 135258 mac 135258 bytes_out 0 135258 bytes_in 0 135258 station_ip 5.119.131.30 135258 port 298 135258 unique_id port 135258 remote_ip 10.8.0.58 135259 username amir 135259 mac 135259 bytes_out 0 135259 bytes_in 0 135259 station_ip 37.27.28.170 135259 port 290 135259 unique_id port 135259 remote_ip 10.8.0.50 135273 username aminvpn 135273 mac 135273 bytes_out 0 135273 bytes_in 0 135273 station_ip 37.129.218.53 135273 port 182 135273 unique_id port 135273 remote_ip 10.8.1.6 135277 username aminvpn 135277 mac 135277 bytes_out 0 135277 bytes_in 0 135277 station_ip 5.120.72.205 135277 port 186 135277 unique_id port 135277 remote_ip 10.8.1.6 135279 username houshang 135279 mac 135279 bytes_out 0 135279 bytes_in 0 135279 station_ip 5.120.110.58 135279 port 290 135279 unique_id port 135279 remote_ip 10.8.0.22 135280 username mahdixz 135280 kill_reason Maximum check online fails reached 135280 unique_id port 135280 bytes_out 5703015 135280 bytes_in 64181382 135280 station_ip 151.235.127.22 135280 port 15730500 135280 nas_port_type Virtual 135280 remote_ip 5.5.5.51 135282 username khalili 135282 kill_reason Another user logged on this global unique id 135282 mac 135282 bytes_out 0 135282 bytes_in 0 135282 station_ip 5.120.30.61 135282 port 282 135282 unique_id port 135282 remote_ip 10.8.0.86 135286 username zotaher 135286 mac 135286 bytes_out 711593 135286 bytes_in 1302231 135286 station_ip 83.123.1.66 135286 port 181 135286 unique_id port 135286 remote_ip 10.8.1.246 135290 username aminvpn 135290 mac 135290 bytes_out 0 135290 bytes_in 0 135290 station_ip 5.120.72.205 135290 port 284 135290 unique_id port 135290 remote_ip 10.8.0.14 135293 username zotaher 135293 mac 135293 bytes_out 0 135293 bytes_in 0 135293 station_ip 83.123.1.66 135293 port 181 135293 unique_id port 135293 remote_ip 10.8.1.246 135297 username aminvpn 135297 mac 135297 bytes_out 0 135297 bytes_in 0 135297 station_ip 5.120.72.205 135297 port 186 135297 unique_id port 135297 remote_ip 10.8.1.6 135301 username aminvpn 135301 mac 135301 bytes_out 0 135301 bytes_in 0 135301 station_ip 37.129.218.53 135301 port 182 135301 unique_id port 135301 remote_ip 10.8.1.6 135303 username vanila 135303 mac 135303 bytes_out 0 135303 bytes_in 0 135303 station_ip 83.122.226.116 135303 port 284 135303 unique_id port 135303 remote_ip 10.8.0.178 135308 username aminvpn 135308 mac 135308 bytes_out 287623 135308 bytes_in 1689021 135308 station_ip 5.120.72.205 135308 port 186 135308 unique_id port 135308 remote_ip 10.8.1.6 135309 username kordestani 135309 kill_reason Another user logged on this global unique id 135309 mac 135309 bytes_out 0 135309 bytes_in 0 135309 station_ip 151.235.121.168 135309 port 275 135261 station_ip 5.119.234.9 135261 port 275 135261 unique_id port 135261 remote_ip 10.8.0.190 135264 username morteza 135264 mac 135264 bytes_out 2854351 135264 bytes_in 46892010 135264 station_ip 83.122.58.88 135264 port 287 135264 unique_id port 135264 remote_ip 10.8.0.46 135267 username yahodi 135267 mac 135267 bytes_out 0 135267 bytes_in 0 135267 station_ip 37.129.15.59 135267 port 275 135267 unique_id port 135267 remote_ip 10.8.0.202 135270 username moradi 135270 mac 135270 bytes_out 975001 135270 bytes_in 15183020 135270 station_ip 113.203.89.4 135270 port 296 135270 unique_id port 135270 remote_ip 10.8.0.250 135274 username aminvpn 135274 mac 135274 bytes_out 0 135274 bytes_in 0 135274 station_ip 5.120.72.205 135274 port 185 135274 unique_id port 135274 remote_ip 10.8.1.6 135275 username aminvpn 135275 mac 135275 bytes_out 0 135275 bytes_in 0 135275 station_ip 37.129.218.53 135275 port 182 135275 unique_id port 135275 remote_ip 10.8.1.6 135283 username vanila 135283 mac 135283 bytes_out 2358236 135283 bytes_in 999131 135283 station_ip 83.122.226.116 135283 port 275 135283 unique_id port 135283 remote_ip 10.8.0.178 135285 username hosseine 135285 kill_reason Another user logged on this global unique id 135285 mac 135285 bytes_out 0 135285 bytes_in 0 135285 station_ip 37.129.104.18 135285 port 259 135285 unique_id port 135287 username aminvpn 135287 kill_reason Another user logged on this global unique id 135287 mac 135287 bytes_out 0 135287 bytes_in 0 135287 station_ip 5.120.72.205 135287 port 284 135287 unique_id port 135287 remote_ip 10.8.0.14 135288 username aminvpn 135288 mac 135288 bytes_out 0 135288 bytes_in 0 135288 station_ip 5.120.72.205 135288 port 284 135288 unique_id port 135292 username vanila 135292 mac 135292 bytes_out 0 135292 bytes_in 0 135292 station_ip 83.122.226.116 135292 port 299 135292 unique_id port 135292 remote_ip 10.8.0.178 135294 username kordestani 135294 mac 135294 bytes_out 289746 135294 bytes_in 2968899 135294 station_ip 151.235.96.43 135294 port 275 135294 unique_id port 135294 remote_ip 10.8.0.134 135295 username aminvpn 135295 mac 135295 bytes_out 1644 135295 bytes_in 4670 135295 station_ip 5.120.72.205 135295 port 300 135295 unique_id port 135295 remote_ip 10.8.0.14 135296 username aminvpn 135296 mac 135296 bytes_out 15115 135296 bytes_in 19777 135296 station_ip 37.129.218.53 135296 port 182 135296 unique_id port 135296 remote_ip 10.8.1.6 135298 username aminvpn 135298 mac 135298 bytes_out 0 135298 bytes_in 0 135298 station_ip 37.129.218.53 135298 port 182 135298 unique_id port 135298 remote_ip 10.8.1.6 135305 username mosi 135305 kill_reason Another user logged on this global unique id 135305 mac 135305 bytes_out 0 135305 bytes_in 0 135305 station_ip 151.235.117.85 135305 port 297 135305 unique_id port 135307 username yahodi 135307 kill_reason Another user logged on this global unique id 135307 mac 135307 bytes_out 0 135307 bytes_in 0 135307 station_ip 37.129.15.59 135307 port 296 135307 unique_id port 135310 username farhad2 135310 mac 135310 bytes_out 2211919 135310 bytes_in 13979259 135310 station_ip 5.119.234.9 135310 port 290 135310 unique_id port 135310 remote_ip 10.8.0.190 135311 username vanila 135311 mac 135311 bytes_out 2136022 135311 bytes_in 1798838 135311 station_ip 83.122.226.116 135311 port 284 135311 unique_id port 135311 remote_ip 10.8.0.178 135312 username mohammadjavad 135312 mac 135312 bytes_out 1522757 135312 bytes_in 20537867 135266 unique_id port 135266 remote_ip 10.8.0.14 135268 username godarzi 135268 kill_reason Another user logged on this global unique id 135268 mac 135268 bytes_out 0 135268 bytes_in 0 135268 station_ip 5.202.15.249 135268 port 284 135268 unique_id port 135268 remote_ip 10.8.0.174 135269 username godarzi 135269 mac 135269 bytes_out 0 135269 bytes_in 0 135269 station_ip 5.202.15.249 135269 port 284 135269 unique_id port 135271 username aminvpn 135271 mac 135271 bytes_out 498910 135271 bytes_in 4702529 135271 station_ip 37.129.218.53 135271 port 182 135271 unique_id port 135271 remote_ip 10.8.1.6 135272 username aminvpn 135272 mac 135272 bytes_out 0 135272 bytes_in 0 135272 station_ip 5.120.72.205 135272 port 185 135272 unique_id port 135272 remote_ip 10.8.1.6 135276 username aminvpn 135276 unique_id port 135276 terminate_cause User-Request 135276 bytes_out 27075032 135276 bytes_in 796220525 135276 station_ip 31.57.140.207 135276 port 15730488 135276 nas_port_type Virtual 135276 remote_ip 5.5.5.25 135278 username yahodi 135278 kill_reason Another user logged on this global unique id 135278 mac 135278 bytes_out 0 135278 bytes_in 0 135278 station_ip 37.129.15.59 135278 port 296 135278 unique_id port 135278 remote_ip 10.8.0.202 135281 username farhad2 135281 mac 135281 bytes_out 0 135281 bytes_in 0 135281 station_ip 5.119.234.9 135281 port 299 135281 unique_id port 135281 remote_ip 10.8.0.190 135284 username yahodi 135284 kill_reason Another user logged on this global unique id 135284 mac 135284 bytes_out 0 135284 bytes_in 0 135284 station_ip 37.129.15.59 135284 port 296 135284 unique_id port 135289 username aminvpn 135289 mac 135289 bytes_out 0 135289 bytes_in 0 135289 station_ip 5.120.72.205 135289 port 284 135289 unique_id port 135289 remote_ip 10.8.0.14 135291 username yahodi 135291 kill_reason Another user logged on this global unique id 135291 mac 135291 bytes_out 0 135291 bytes_in 0 135291 station_ip 37.129.15.59 135291 port 296 135291 unique_id port 135299 username alikomsari 135299 mac 135299 bytes_out 0 135299 bytes_in 0 135299 station_ip 5.120.103.112 135299 port 300 135299 unique_id port 135299 remote_ip 10.8.0.70 135300 username aminvpn 135300 mac 135300 bytes_out 0 135300 bytes_in 0 135300 station_ip 5.120.72.205 135300 port 186 135300 unique_id port 135300 remote_ip 10.8.1.6 135302 username forozandeh1 135302 mac 135302 bytes_out 0 135302 bytes_in 0 135302 station_ip 83.122.204.65 135302 port 181 135302 unique_id port 135302 remote_ip 10.8.1.250 135304 username amin.saeedi 135304 unique_id port 135304 terminate_cause User-Request 135304 bytes_out 1274308 135304 bytes_in 21707637 135304 station_ip 5.120.49.49 135304 port 15730502 135304 nas_port_type Virtual 135304 remote_ip 5.5.5.105 135306 username godarzi 135306 mac 135306 bytes_out 0 135306 bytes_in 0 135306 station_ip 5.202.15.249 135306 port 300 135306 unique_id port 135306 remote_ip 10.8.0.174 135323 username vanila 135323 mac 135323 bytes_out 0 135323 bytes_in 0 135323 station_ip 83.122.226.116 135323 port 275 135323 unique_id port 135323 remote_ip 10.8.0.178 135326 username mohammadjavad 135326 mac 135326 bytes_out 0 135326 bytes_in 0 135326 station_ip 37.129.137.78 135326 port 284 135326 unique_id port 135326 remote_ip 10.8.0.142 135327 username amir 135327 mac 135327 bytes_out 285247 135327 bytes_in 2153749 135327 station_ip 46.225.208.82 135327 port 185 135327 unique_id port 135327 remote_ip 10.8.1.22 135332 username zare 135332 kill_reason Relative expiration date has reached 135309 unique_id port 135309 remote_ip 10.8.0.134 135313 username farhad2 135313 mac 135313 bytes_out 59591 135313 bytes_in 409609 135313 station_ip 5.119.234.9 135313 port 284 135313 unique_id port 135313 remote_ip 10.8.0.190 135315 username yahodi 135315 mac 135315 bytes_out 0 135315 bytes_in 0 135315 station_ip 37.129.15.59 135315 port 296 135315 unique_id port 135317 username yahodi 135317 mac 135317 bytes_out 0 135317 bytes_in 0 135317 station_ip 37.129.15.59 135317 port 284 135317 unique_id port 135317 remote_ip 10.8.0.202 135319 username forozandeh1 135319 mac 135319 bytes_out 0 135319 bytes_in 0 135319 station_ip 83.122.184.250 135319 port 182 135319 unique_id port 135319 remote_ip 10.8.1.250 135320 username farhad2 135320 mac 135320 bytes_out 2017 135320 bytes_in 4785 135320 station_ip 5.119.234.9 135320 port 284 135320 unique_id port 135320 remote_ip 10.8.0.190 135321 username kordestani 135321 mac 135321 bytes_out 0 135321 bytes_in 0 135321 station_ip 151.235.121.168 135321 port 275 135321 unique_id port 135324 username mehdizare 135324 mac 135324 bytes_out 1405791 135324 bytes_in 29363290 135324 station_ip 5.120.148.206 135324 port 293 135324 unique_id port 135324 remote_ip 10.8.0.90 135328 username aminvpn 135328 unique_id port 135328 terminate_cause Lost-Carrier 135328 bytes_out 357243 135328 bytes_in 1992146 135328 station_ip 5.233.49.34 135328 port 15730505 135328 nas_port_type Virtual 135328 remote_ip 5.5.5.255 135329 username sekonji3 135329 mac 135329 bytes_out 0 135329 bytes_in 0 135329 station_ip 83.122.54.234 135329 port 293 135329 unique_id port 135329 remote_ip 10.8.0.6 135334 username zare 135334 kill_reason Relative expiration date has reached 135334 mac 135334 bytes_out 0 135334 bytes_in 0 135334 station_ip 37.27.27.38 135334 port 296 135334 unique_id port 135336 username zare 135336 kill_reason Relative expiration date has reached 135336 mac 135336 bytes_out 0 135336 bytes_in 0 135336 station_ip 37.27.27.38 135336 port 290 135336 unique_id port 135339 username zare 135339 kill_reason Relative expiration date has reached 135339 mac 135339 bytes_out 0 135339 bytes_in 0 135339 station_ip 37.27.27.38 135339 port 275 135339 unique_id port 135341 username farhad2 135341 mac 135341 bytes_out 0 135341 bytes_in 0 135341 station_ip 5.120.123.171 135341 port 182 135341 unique_id port 135341 remote_ip 10.8.1.222 135345 username farhad2 135345 mac 135345 bytes_out 0 135345 bytes_in 0 135345 station_ip 5.120.123.171 135345 port 182 135345 unique_id port 135345 remote_ip 10.8.1.222 135346 username sekonji3 135346 mac 135346 bytes_out 138834 135346 bytes_in 520354 135346 station_ip 83.122.54.234 135346 port 295 135346 unique_id port 135346 remote_ip 10.8.0.6 135347 username farhad2 135347 mac 135347 bytes_out 0 135347 bytes_in 0 135347 station_ip 5.120.123.171 135347 port 182 135347 unique_id port 135347 remote_ip 10.8.1.222 135348 username zotaher 135348 mac 135348 bytes_out 3317598 135348 bytes_in 7807178 135348 station_ip 83.123.1.66 135348 port 299 135348 unique_id port 135348 remote_ip 10.8.0.194 135349 username alihosseini1 135349 mac 135349 bytes_out 0 135349 bytes_in 0 135349 station_ip 5.120.78.71 135349 port 300 135349 unique_id port 135349 remote_ip 10.8.0.166 135350 username houshang 135350 kill_reason Another user logged on this global unique id 135350 mac 135350 bytes_out 0 135350 bytes_in 0 135350 station_ip 5.120.110.58 135350 port 295 135312 station_ip 113.203.70.184 135312 port 298 135312 unique_id port 135312 remote_ip 10.8.0.142 135314 username yahodi 135314 kill_reason Another user logged on this global unique id 135314 mac 135314 bytes_out 0 135314 bytes_in 0 135314 station_ip 37.129.15.59 135314 port 296 135314 unique_id port 135316 username vanila 135316 mac 135316 bytes_out 0 135316 bytes_in 0 135316 station_ip 83.122.226.116 135316 port 290 135316 unique_id port 135316 remote_ip 10.8.0.178 135318 username amir 135318 mac 135318 bytes_out 0 135318 bytes_in 0 135318 station_ip 46.225.208.82 135318 port 185 135318 unique_id port 135318 remote_ip 10.8.1.22 135322 username houshang 135322 kill_reason Another user logged on this global unique id 135322 mac 135322 bytes_out 0 135322 bytes_in 0 135322 station_ip 5.120.110.58 135322 port 300 135322 unique_id port 135322 remote_ip 10.8.0.22 135325 username houshang 135325 mac 135325 bytes_out 0 135325 bytes_in 0 135325 station_ip 5.120.110.58 135325 port 300 135325 unique_id port 135330 username jafari 135330 mac 135330 bytes_out 4849040 135330 bytes_in 42408741 135330 station_ip 89.32.102.245 135330 port 290 135330 unique_id port 135330 remote_ip 10.8.0.242 135331 username amir 135331 mac 135331 bytes_out 0 135331 bytes_in 0 135331 station_ip 46.225.208.82 135331 port 182 135331 unique_id port 135331 remote_ip 10.8.1.22 135337 username houshang 135337 mac 135337 bytes_out 0 135337 bytes_in 0 135337 station_ip 5.120.110.58 135337 port 284 135337 unique_id port 135337 remote_ip 10.8.0.22 135338 username mehdizare 135338 mac 135338 bytes_out 18762 135338 bytes_in 22505 135338 station_ip 5.120.148.206 135338 port 275 135338 unique_id port 135338 remote_ip 10.8.0.90 135344 username mosi 135344 kill_reason Another user logged on this global unique id 135344 mac 135344 bytes_out 0 135344 bytes_in 0 135344 station_ip 151.235.117.85 135344 port 297 135344 unique_id port 135353 username sekonji3 135353 mac 135353 bytes_out 0 135353 bytes_in 0 135353 station_ip 83.122.54.234 135353 port 303 135353 unique_id port 135353 remote_ip 10.8.0.6 135360 username houshang 135360 kill_reason Another user logged on this global unique id 135360 mac 135360 bytes_out 0 135360 bytes_in 0 135360 station_ip 5.120.110.58 135360 port 299 135360 unique_id port 135360 remote_ip 10.8.0.22 135362 username reza2742 135362 kill_reason Relative expiration date has reached 135362 unique_id port 135362 bytes_out 0 135362 bytes_in 0 135362 station_ip 37.129.222.244 135362 port 15730508 135362 nas_port_type Virtual 135363 username reza2742 135363 kill_reason Relative expiration date has reached 135363 unique_id port 135363 bytes_out 0 135363 bytes_in 0 135363 station_ip 37.129.222.244 135363 port 15730509 135363 nas_port_type Virtual 135367 username houshang 135367 kill_reason Another user logged on this global unique id 135367 mac 135367 bytes_out 0 135367 bytes_in 0 135367 station_ip 5.120.110.58 135367 port 299 135367 unique_id port 135369 username sabaghnezhad 135369 mac 135369 bytes_out 0 135369 bytes_in 0 135369 station_ip 83.123.249.114 135369 port 303 135369 unique_id port 135369 remote_ip 10.8.0.186 135373 username houshang 135373 kill_reason Another user logged on this global unique id 135373 mac 135373 bytes_out 0 135373 bytes_in 0 135373 station_ip 5.120.110.58 135373 port 299 135373 unique_id port 135378 username saeed9658 135378 kill_reason Another user logged on this global unique id 135378 mac 135378 bytes_out 0 135378 bytes_in 0 135378 station_ip 5.119.170.229 135378 port 298 135378 unique_id port 135332 mac 135332 bytes_out 0 135332 bytes_in 0 135332 station_ip 37.27.27.38 135332 port 293 135332 unique_id port 135333 username zare 135333 kill_reason Relative expiration date has reached 135333 mac 135333 bytes_out 0 135333 bytes_in 0 135333 station_ip 37.27.27.38 135333 port 296 135333 unique_id port 135335 username amir 135335 mac 135335 bytes_out 0 135335 bytes_in 0 135335 station_ip 46.225.208.82 135335 port 290 135335 unique_id port 135335 remote_ip 10.8.0.50 135340 username aminvpn 135340 unique_id port 135340 terminate_cause Lost-Carrier 135340 bytes_out 18659 135340 bytes_in 23423 135340 station_ip 5.233.49.34 135340 port 15730506 135340 nas_port_type Virtual 135340 remote_ip 5.5.5.255 135342 username sabaghnezhad 135342 mac 135342 bytes_out 355884 135342 bytes_in 386730 135342 station_ip 113.203.85.127 135342 port 295 135342 unique_id port 135342 remote_ip 10.8.0.186 135343 username farhad2 135343 mac 135343 bytes_out 0 135343 bytes_in 0 135343 station_ip 5.120.123.171 135343 port 182 135343 unique_id port 135343 remote_ip 10.8.1.222 135351 username jafari 135351 kill_reason Another user logged on this global unique id 135351 mac 135351 bytes_out 0 135351 bytes_in 0 135351 station_ip 5.134.131.22 135351 port 290 135351 unique_id port 135351 remote_ip 10.8.0.242 135352 username houshang 135352 mac 135352 bytes_out 0 135352 bytes_in 0 135352 station_ip 5.120.110.58 135352 port 295 135352 unique_id port 135355 username mohammadmahdi 135355 kill_reason Another user logged on this global unique id 135355 mac 135355 bytes_out 0 135355 bytes_in 0 135355 station_ip 5.119.6.68 135355 port 300 135355 unique_id port 135355 remote_ip 10.8.0.54 135356 username malekpoir 135356 kill_reason Another user logged on this global unique id 135356 mac 135356 bytes_out 0 135356 bytes_in 0 135356 station_ip 5.119.131.30 135356 port 287 135356 unique_id port 135356 remote_ip 10.8.0.58 135358 username jafari 135358 kill_reason Another user logged on this global unique id 135358 mac 135358 bytes_out 0 135358 bytes_in 0 135358 station_ip 5.134.131.22 135358 port 290 135358 unique_id port 135361 username aminvpn 135361 unique_id port 135361 terminate_cause Lost-Carrier 135361 bytes_out 6894398 135361 bytes_in 19710196 135361 station_ip 5.233.49.34 135361 port 15730507 135361 nas_port_type Virtual 135361 remote_ip 5.5.5.255 135368 username farhad2 135368 mac 135368 bytes_out 0 135368 bytes_in 0 135368 station_ip 5.120.123.171 135368 port 295 135368 unique_id port 135368 remote_ip 10.8.0.190 135371 username mohammadmahdi 135371 mac 135371 bytes_out 0 135371 bytes_in 0 135371 station_ip 5.119.6.68 135371 port 300 135371 unique_id port 135372 username farhad2 135372 kill_reason Maximum check online fails reached 135372 mac 135372 bytes_out 0 135372 bytes_in 0 135372 station_ip 5.120.123.171 135372 port 295 135372 unique_id port 135374 username jafari 135374 kill_reason Another user logged on this global unique id 135374 mac 135374 bytes_out 0 135374 bytes_in 0 135374 station_ip 5.134.131.22 135374 port 290 135374 unique_id port 135376 username amin.saeedi 135376 unique_id port 135376 terminate_cause User-Request 135376 bytes_out 153753 135376 bytes_in 2185288 135376 station_ip 5.120.49.49 135376 port 15730511 135376 nas_port_type Virtual 135376 remote_ip 5.5.5.1 135380 username houshang 135380 kill_reason Another user logged on this global unique id 135380 mac 135380 bytes_out 0 135380 bytes_in 0 135380 station_ip 5.120.110.58 135380 port 299 135380 unique_id port 135388 username kamali2 135388 kill_reason Another user logged on this global unique id 135350 unique_id port 135350 remote_ip 10.8.0.22 135354 username mohammadjavad 135354 mac 135354 bytes_out 1831985 135354 bytes_in 22223824 135354 station_ip 113.203.14.57 135354 port 299 135354 unique_id port 135354 remote_ip 10.8.0.142 135357 username farhad2 135357 mac 135357 bytes_out 873563 135357 bytes_in 6129173 135357 station_ip 5.120.123.171 135357 port 295 135357 unique_id port 135357 remote_ip 10.8.0.190 135359 username amir 135359 kill_reason Another user logged on this global unique id 135359 mac 135359 bytes_out 0 135359 bytes_in 0 135359 station_ip 46.225.208.82 135359 port 275 135359 unique_id port 135359 remote_ip 10.8.0.50 135364 username sekonji3 135364 mac 135364 bytes_out 0 135364 bytes_in 0 135364 station_ip 83.122.54.234 135364 port 304 135364 unique_id port 135364 remote_ip 10.8.0.6 135365 username zotaher 135365 mac 135365 bytes_out 0 135365 bytes_in 0 135365 station_ip 83.123.84.38 135365 port 302 135365 unique_id port 135365 remote_ip 10.8.0.194 135366 username khademi 135366 kill_reason Another user logged on this global unique id 135366 mac 135366 bytes_out 0 135366 bytes_in 0 135366 station_ip 83.123.76.126 135366 port 286 135366 unique_id port 135370 username vanila 135370 mac 135370 bytes_out 0 135370 bytes_in 0 135370 station_ip 83.122.35.193 135370 port 301 135370 unique_id port 135370 remote_ip 10.8.0.178 135375 username kordestani 135375 mac 135375 bytes_out 0 135375 bytes_in 0 135375 station_ip 151.235.121.168 135375 port 305 135375 unique_id port 135375 remote_ip 10.8.0.134 135377 username malekpoir 135377 mac 135377 bytes_out 0 135377 bytes_in 0 135377 station_ip 5.119.131.30 135377 port 287 135377 unique_id port 135382 username aminvpn 135382 mac 135382 bytes_out 0 135382 bytes_in 0 135382 station_ip 37.129.218.53 135382 port 302 135382 unique_id port 135382 remote_ip 10.8.0.14 135384 username houshang 135384 mac 135384 bytes_out 0 135384 bytes_in 0 135384 station_ip 5.120.110.58 135384 port 299 135384 unique_id port 135385 username farhad2 135385 kill_reason Another user logged on this global unique id 135385 mac 135385 bytes_out 0 135385 bytes_in 0 135385 station_ip 5.120.123.171 135385 port 182 135385 unique_id port 135385 remote_ip 10.8.1.222 135387 username saeed9658 135387 mac 135387 bytes_out 0 135387 bytes_in 0 135387 station_ip 5.119.170.229 135387 port 298 135387 unique_id port 135389 username houshang 135389 mac 135389 bytes_out 121708 135389 bytes_in 346954 135389 station_ip 5.120.110.58 135389 port 289 135389 unique_id port 135389 remote_ip 10.8.0.22 135390 username jafari 135390 kill_reason Another user logged on this global unique id 135390 mac 135390 bytes_out 0 135390 bytes_in 0 135390 station_ip 5.134.131.22 135390 port 290 135390 unique_id port 135393 username kamali2 135393 mac 135393 bytes_out 0 135393 bytes_in 0 135393 station_ip 5.120.28.62 135393 port 287 135393 unique_id port 135396 username mirzaei 135396 mac 135396 bytes_out 0 135396 bytes_in 0 135396 station_ip 5.120.96.249 135396 port 287 135396 unique_id port 135396 remote_ip 10.8.0.66 135400 username farhad2 135400 mac 135400 bytes_out 0 135400 bytes_in 0 135400 station_ip 5.120.123.171 135400 port 182 135400 unique_id port 135404 username amir 135404 mac 135404 bytes_out 0 135404 bytes_in 0 135404 station_ip 46.225.208.82 135404 port 275 135404 unique_id port 135404 remote_ip 10.8.0.50 135406 username farhad2 135406 mac 135378 remote_ip 10.8.0.62 135379 username mirzaei 135379 mac 135379 bytes_out 0 135379 bytes_in 0 135379 station_ip 5.119.201.209 135379 port 289 135379 unique_id port 135379 remote_ip 10.8.0.66 135381 username mohammadmahdi 135381 mac 135381 bytes_out 0 135381 bytes_in 0 135381 station_ip 5.119.6.68 135381 port 300 135381 unique_id port 135381 remote_ip 10.8.0.54 135383 username mahdiyehalizadeh 135383 mac 135383 bytes_out 0 135383 bytes_in 0 135383 station_ip 37.129.224.182 135383 port 304 135383 unique_id port 135383 remote_ip 10.8.0.82 135386 username mosi 135386 mac 135386 bytes_out 0 135386 bytes_in 0 135386 station_ip 151.235.117.85 135386 port 297 135386 unique_id port 135394 username mirzaei 135394 mac 135394 bytes_out 7389 135394 bytes_in 8538 135394 station_ip 5.120.96.249 135394 port 289 135394 unique_id port 135394 remote_ip 10.8.0.66 135398 username mahdixz 135398 unique_id port 135398 terminate_cause Lost-Carrier 135398 bytes_out 6155093 135398 bytes_in 120416820 135398 station_ip 5.119.57.43 135398 port 15730512 135398 nas_port_type Virtual 135398 remote_ip 5.5.5.18 135401 username farhad2 135401 mac 135401 bytes_out 35091 135401 bytes_in 54462 135401 station_ip 5.120.123.171 135401 port 182 135401 unique_id port 135401 remote_ip 10.8.1.222 135402 username amir 135402 mac 135402 bytes_out 0 135402 bytes_in 0 135402 station_ip 46.225.208.82 135402 port 275 135402 unique_id port 135405 username farhad2 135405 mac 135405 bytes_out 1935793 135405 bytes_in 10918584 135405 station_ip 5.120.123.171 135405 port 182 135405 unique_id port 135405 remote_ip 10.8.1.222 135416 username hamidsalari 135416 kill_reason Another user logged on this global unique id 135416 mac 135416 bytes_out 0 135416 bytes_in 0 135416 station_ip 5.120.109.206 135416 port 292 135416 unique_id port 135420 username farhad2 135420 mac 135420 bytes_out 434362 135420 bytes_in 1184057 135420 station_ip 5.120.123.171 135420 port 181 135420 unique_id port 135420 remote_ip 10.8.1.222 135425 username hoorieh 135425 mac 135425 bytes_out 0 135425 bytes_in 0 135425 station_ip 5.119.118.40 135425 port 290 135425 unique_id port 135427 username tahmasebi 135427 mac 135427 bytes_out 350939 135427 bytes_in 4265039 135427 station_ip 5.119.220.63 135427 port 290 135427 unique_id port 135427 remote_ip 10.8.0.42 135430 username mirzaei 135430 mac 135430 bytes_out 21946 135430 bytes_in 23301 135430 station_ip 5.114.140.97 135430 port 182 135430 unique_id port 135430 remote_ip 10.8.1.30 135431 username vanila 135431 mac 135431 bytes_out 0 135431 bytes_in 0 135431 station_ip 83.122.35.193 135431 port 297 135431 unique_id port 135431 remote_ip 10.8.0.178 135434 username mahdixz 135434 unique_id port 135434 terminate_cause Lost-Carrier 135434 bytes_out 269401 135434 bytes_in 900523 135434 station_ip 151.235.127.22 135434 port 15730517 135434 nas_port_type Virtual 135434 remote_ip 5.5.5.254 135436 username mirzaei 135436 mac 135436 bytes_out 0 135436 bytes_in 0 135436 station_ip 5.114.140.97 135436 port 182 135436 unique_id port 135436 remote_ip 10.8.1.30 135438 username farhad2 135438 mac 135438 bytes_out 2744130 135438 bytes_in 15801169 135438 station_ip 5.120.123.171 135438 port 181 135438 unique_id port 135438 remote_ip 10.8.1.222 135439 username zare 135439 kill_reason Relative expiration date has reached 135439 mac 135439 bytes_out 0 135439 bytes_in 0 135439 station_ip 37.27.27.38 135439 port 287 135439 unique_id port 135388 mac 135388 bytes_out 0 135388 bytes_in 0 135388 station_ip 5.120.28.62 135388 port 287 135388 unique_id port 135388 remote_ip 10.8.0.214 135391 username mirzaei 135391 mac 135391 bytes_out 7306 135391 bytes_in 12131 135391 station_ip 5.120.179.39 135391 port 185 135391 unique_id port 135391 remote_ip 10.8.1.30 135392 username jafari 135392 mac 135392 bytes_out 0 135392 bytes_in 0 135392 station_ip 5.134.131.22 135392 port 290 135392 unique_id port 135395 username mostafa_es78 135395 unique_id port 135395 terminate_cause User-Request 135395 bytes_out 282 135395 bytes_in 202 135395 station_ip 5.119.77.52 135395 port 15730513 135395 nas_port_type Virtual 135395 remote_ip 5.5.5.55 135397 username vanila 135397 mac 135397 bytes_out 0 135397 bytes_in 0 135397 station_ip 83.122.35.193 135397 port 301 135397 unique_id port 135397 remote_ip 10.8.0.178 135399 username zare 135399 kill_reason Relative expiration date has reached 135399 mac 135399 bytes_out 0 135399 bytes_in 0 135399 station_ip 37.27.27.38 135399 port 289 135399 unique_id port 135403 username vanila 135403 mac 135403 bytes_out 0 135403 bytes_in 0 135403 station_ip 83.122.35.193 135403 port 287 135403 unique_id port 135403 remote_ip 10.8.0.178 135407 username amir 135407 mac 135407 bytes_out 1634190 135407 bytes_in 15257293 135407 station_ip 46.225.208.82 135407 port 186 135407 unique_id port 135407 remote_ip 10.8.1.22 135408 username mirzaei 135408 mac 135408 bytes_out 0 135408 bytes_in 0 135408 station_ip 5.120.96.249 135408 port 185 135408 unique_id port 135408 remote_ip 10.8.1.30 135409 username farhad2 135409 mac 135409 bytes_out 0 135409 bytes_in 0 135409 station_ip 5.120.123.171 135409 port 182 135409 unique_id port 135409 remote_ip 10.8.1.222 135410 username aminvpn 135410 unique_id port 135410 terminate_cause User-Request 135410 bytes_out 4589212 135410 bytes_in 43812599 135410 station_ip 5.120.89.148 135410 port 15730510 135410 nas_port_type Virtual 135410 remote_ip 5.5.5.0 135411 username mostafa_es78 135411 unique_id port 135411 terminate_cause User-Request 135411 bytes_out 757402 135411 bytes_in 7226703 135411 station_ip 5.119.77.52 135411 port 15730514 135411 nas_port_type Virtual 135411 remote_ip 5.5.5.67 135412 username farhad2 135412 mac 135412 bytes_out 0 135412 bytes_in 0 135412 station_ip 5.120.123.171 135412 port 182 135412 unique_id port 135412 remote_ip 10.8.1.222 135413 username saeed9658 135413 mac 135413 bytes_out 0 135413 bytes_in 0 135413 station_ip 5.119.170.229 135413 port 275 135413 unique_id port 135413 remote_ip 10.8.0.62 135414 username aminvpn 135414 mac 135414 bytes_out 919877 135414 bytes_in 8034760 135414 station_ip 37.129.218.53 135414 port 181 135414 unique_id port 135414 remote_ip 10.8.1.6 135417 username farhad2 135417 mac 135417 bytes_out 0 135417 bytes_in 0 135417 station_ip 5.120.123.171 135417 port 181 135417 unique_id port 135417 remote_ip 10.8.1.222 135418 username vanila 135418 mac 135418 bytes_out 0 135418 bytes_in 0 135418 station_ip 83.122.35.193 135418 port 289 135418 unique_id port 135418 remote_ip 10.8.0.178 135419 username zotaher 135419 mac 135419 bytes_out 0 135419 bytes_in 0 135419 station_ip 37.129.171.8 135419 port 298 135419 unique_id port 135419 remote_ip 10.8.0.194 135421 username mirzaei 135421 mac 135421 bytes_out 0 135421 bytes_in 0 135421 station_ip 5.113.203.111 135421 port 297 135421 unique_id port 135421 remote_ip 10.8.0.66 135406 bytes_out 83705 135406 bytes_in 352512 135406 station_ip 5.120.123.171 135406 port 182 135406 unique_id port 135406 remote_ip 10.8.1.222 135415 username farhad2 135415 mac 135415 bytes_out 877403 135415 bytes_in 3454623 135415 station_ip 5.120.123.171 135415 port 182 135415 unique_id port 135415 remote_ip 10.8.1.222 135423 username hoorieh 135423 kill_reason Another user logged on this global unique id 135423 mac 135423 bytes_out 0 135423 bytes_in 0 135423 station_ip 5.119.118.40 135423 port 290 135423 unique_id port 135423 remote_ip 10.8.0.38 135429 username zare 135429 kill_reason Relative expiration date has reached 135429 mac 135429 bytes_out 0 135429 bytes_in 0 135429 station_ip 37.27.27.38 135429 port 289 135429 unique_id port 135432 username mohammadmahdi 135432 mac 135432 bytes_out 0 135432 bytes_in 0 135432 station_ip 5.119.6.68 135432 port 287 135432 unique_id port 135432 remote_ip 10.8.0.54 135433 username saeed9658 135433 mac 135433 bytes_out 862413 135433 bytes_in 7111201 135433 station_ip 5.119.170.229 135433 port 298 135433 unique_id port 135433 remote_ip 10.8.0.62 135437 username zotaher 135437 kill_reason Another user logged on this global unique id 135437 mac 135437 bytes_out 0 135437 bytes_in 0 135437 station_ip 37.129.171.8 135437 port 275 135437 unique_id port 135437 remote_ip 10.8.0.194 135445 username mirzaei 135445 mac 135445 bytes_out 33640 135445 bytes_in 53623 135445 station_ip 5.114.92.93 135445 port 299 135445 unique_id port 135445 remote_ip 10.8.0.66 135447 username mirzaei 135447 mac 135447 bytes_out 11818 135447 bytes_in 11521 135447 station_ip 5.114.92.93 135447 port 290 135447 unique_id port 135447 remote_ip 10.8.0.66 135449 username rajaei 135449 mac 135449 bytes_out 0 135449 bytes_in 0 135449 station_ip 5.134.174.95 135449 port 297 135449 unique_id port 135449 remote_ip 10.8.0.34 135450 username mirzaei 135450 mac 135450 bytes_out 15253 135450 bytes_in 13905 135450 station_ip 5.114.92.93 135450 port 275 135450 unique_id port 135450 remote_ip 10.8.0.66 135455 username khademi 135455 kill_reason Another user logged on this global unique id 135455 mac 135455 bytes_out 0 135455 bytes_in 0 135455 station_ip 83.123.76.126 135455 port 286 135455 unique_id port 135457 username mohammadmahdi 135457 kill_reason Another user logged on this global unique id 135457 mac 135457 bytes_out 0 135457 bytes_in 0 135457 station_ip 5.119.6.68 135457 port 289 135457 unique_id port 135460 username mohammadmahdi 135460 mac 135460 bytes_out 0 135460 bytes_in 0 135460 station_ip 5.119.6.68 135460 port 289 135460 unique_id port 135468 username mostafa_es78 135468 unique_id port 135468 terminate_cause User-Request 135468 bytes_out 1751349 135468 bytes_in 76478688 135468 station_ip 109.125.174.62 135468 port 15730519 135468 nas_port_type Virtual 135468 remote_ip 5.5.5.255 135475 username khalili 135475 kill_reason Another user logged on this global unique id 135475 mac 135475 bytes_out 0 135475 bytes_in 0 135475 station_ip 5.120.30.61 135475 port 282 135475 unique_id port 135479 username afarin1 135479 mac 135479 bytes_out 0 135479 bytes_in 0 135479 station_ip 31.56.154.118 135479 port 289 135479 unique_id port 135479 remote_ip 10.8.0.118 135481 username morteza 135481 mac 135481 bytes_out 200551 135481 bytes_in 2052622 135481 station_ip 83.122.43.42 135481 port 289 135481 unique_id port 135481 remote_ip 10.8.0.46 135487 username mehdizare 135487 mac 135487 bytes_out 28504 135487 bytes_in 16999 135487 station_ip 5.120.148.206 135487 port 181 135422 username mansour 135422 mac 135422 bytes_out 0 135422 bytes_in 0 135422 station_ip 5.202.10.115 135422 port 287 135422 unique_id port 135422 remote_ip 10.8.0.30 135424 username mahdixz 135424 unique_id port 135424 terminate_cause User-Request 135424 bytes_out 751988 135424 bytes_in 10619480 135424 station_ip 151.235.127.22 135424 port 15730516 135424 nas_port_type Virtual 135424 remote_ip 5.5.5.254 135426 username mirzaei 135426 mac 135426 bytes_out 36918 135426 bytes_in 52394 135426 station_ip 5.114.25.183 135426 port 289 135426 unique_id port 135426 remote_ip 10.8.0.66 135428 username zare 135428 kill_reason Relative expiration date has reached 135428 mac 135428 bytes_out 0 135428 bytes_in 0 135428 station_ip 37.27.27.38 135428 port 289 135428 unique_id port 135435 username vanila 135435 mac 135435 bytes_out 4164544 135435 bytes_in 397628 135435 station_ip 83.122.35.193 135435 port 287 135435 unique_id port 135435 remote_ip 10.8.0.178 135441 username farhad2 135441 mac 135441 bytes_out 907212 135441 bytes_in 2433278 135441 station_ip 5.119.102.156 135441 port 287 135441 unique_id port 135441 remote_ip 10.8.0.190 135442 username vanila 135442 mac 135442 bytes_out 0 135442 bytes_in 0 135442 station_ip 83.122.35.193 135442 port 290 135442 unique_id port 135442 remote_ip 10.8.0.178 135444 username zotaher 135444 mac 135444 bytes_out 0 135444 bytes_in 0 135444 station_ip 37.129.171.8 135444 port 275 135444 unique_id port 135446 username mohammadmahdi 135446 kill_reason Another user logged on this global unique id 135446 mac 135446 bytes_out 0 135446 bytes_in 0 135446 station_ip 5.119.6.68 135446 port 289 135446 unique_id port 135446 remote_ip 10.8.0.54 135465 username sabaghnezhad 135465 mac 135465 bytes_out 176407 135465 bytes_in 267591 135465 station_ip 37.129.117.83 135465 port 287 135465 unique_id port 135465 remote_ip 10.8.0.186 135466 username mostafa_es78 135466 unique_id port 135466 terminate_cause User-Request 135466 bytes_out 23534773 135466 bytes_in 497913004 135466 station_ip 109.125.174.62 135466 port 15730515 135466 nas_port_type Virtual 135466 remote_ip 5.5.5.255 135470 username farhad2 135470 mac 135470 bytes_out 6556791 135470 bytes_in 45303155 135470 station_ip 5.120.52.40 135470 port 275 135470 unique_id port 135470 remote_ip 10.8.0.190 135472 username vanila 135472 mac 135472 bytes_out 9860590 135472 bytes_in 11930331 135472 station_ip 83.122.42.93 135472 port 289 135472 unique_id port 135472 remote_ip 10.8.0.178 135473 username jamali 135473 mac 135473 bytes_out 355899 135473 bytes_in 2415866 135473 station_ip 5.113.49.65 135473 port 287 135473 unique_id port 135473 remote_ip 10.8.0.150 135478 username hamidsalari1 135478 mac 135478 bytes_out 3874478 135478 bytes_in 35719910 135478 station_ip 37.129.0.152 135478 port 293 135478 unique_id port 135478 remote_ip 10.8.0.226 135480 username shahrooz 135480 unique_id port 135480 terminate_cause Lost-Carrier 135480 bytes_out 5335458 135480 bytes_in 108420600 135480 station_ip 83.122.69.209 135480 port 15730520 135480 nas_port_type Virtual 135480 remote_ip 5.5.5.2 135482 username morteza 135482 mac 135482 bytes_out 5610 135482 bytes_in 126335 135482 station_ip 83.122.43.42 135482 port 289 135482 unique_id port 135482 remote_ip 10.8.0.46 135483 username mehdizare 135483 mac 135483 bytes_out 0 135483 bytes_in 0 135483 station_ip 5.120.148.206 135483 port 284 135483 unique_id port 135487 unique_id port 135487 remote_ip 10.8.1.42 135488 username sabaghnezhad 135488 mac 135440 username alihosseini1 135440 mac 135440 bytes_out 397091 135440 bytes_in 2642207 135440 station_ip 5.119.60.92 135440 port 185 135440 unique_id port 135440 remote_ip 10.8.1.106 135443 username khademi 135443 kill_reason Another user logged on this global unique id 135443 mac 135443 bytes_out 0 135443 bytes_in 0 135443 station_ip 83.123.76.126 135443 port 286 135443 unique_id port 135448 username vanila 135448 mac 135448 bytes_out 5099028 135448 bytes_in 1254949 135448 station_ip 83.122.35.193 135448 port 275 135448 unique_id port 135448 remote_ip 10.8.0.178 135451 username jamali 135451 kill_reason Another user logged on this global unique id 135451 mac 135451 bytes_out 0 135451 bytes_in 0 135451 station_ip 5.113.49.65 135451 port 296 135451 unique_id port 135451 remote_ip 10.8.0.150 135452 username khademi 135452 kill_reason Another user logged on this global unique id 135452 mac 135452 bytes_out 0 135452 bytes_in 0 135452 station_ip 83.123.76.126 135452 port 286 135452 unique_id port 135453 username mirzaei 135453 mac 135453 bytes_out 0 135453 bytes_in 0 135453 station_ip 5.120.141.103 135453 port 275 135453 unique_id port 135453 remote_ip 10.8.0.66 135454 username mohammadmahdi 135454 kill_reason Another user logged on this global unique id 135454 mac 135454 bytes_out 0 135454 bytes_in 0 135454 station_ip 5.119.6.68 135454 port 289 135454 unique_id port 135456 username mahdixz 135456 unique_id port 135456 terminate_cause User-Request 135456 bytes_out 88836 135456 bytes_in 181641 135456 station_ip 151.235.127.22 135456 port 15730518 135456 nas_port_type Virtual 135456 remote_ip 5.5.5.254 135458 username khademi 135458 kill_reason Another user logged on this global unique id 135458 mac 135458 bytes_out 0 135458 bytes_in 0 135458 station_ip 83.123.76.126 135458 port 286 135458 unique_id port 135459 username farhad2 135459 mac 135459 bytes_out 6403383 135459 bytes_in 43314330 135459 station_ip 5.119.102.156 135459 port 287 135459 unique_id port 135459 remote_ip 10.8.0.190 135461 username khademi 135461 kill_reason Another user logged on this global unique id 135461 mac 135461 bytes_out 0 135461 bytes_in 0 135461 station_ip 83.123.76.126 135461 port 286 135461 unique_id port 135462 username mohammadmahdi 135462 mac 135462 bytes_out 183698 135462 bytes_in 729721 135462 station_ip 5.119.6.68 135462 port 287 135462 unique_id port 135462 remote_ip 10.8.0.54 135463 username mehdizare 135463 kill_reason Another user logged on this global unique id 135463 mac 135463 bytes_out 0 135463 bytes_in 0 135463 station_ip 5.120.148.206 135463 port 284 135463 unique_id port 135463 remote_ip 10.8.0.90 135464 username farhad2 135464 mac 135464 bytes_out 4150532 135464 bytes_in 13427680 135464 station_ip 5.119.102.156 135464 port 275 135464 unique_id port 135464 remote_ip 10.8.0.190 135467 username alihosseini1 135467 mac 135467 bytes_out 39625 135467 bytes_in 57730 135467 station_ip 5.119.9.101 135467 port 289 135467 unique_id port 135467 remote_ip 10.8.0.166 135469 username jamali 135469 mac 135469 bytes_out 0 135469 bytes_in 0 135469 station_ip 5.113.49.65 135469 port 296 135469 unique_id port 135471 username sabaghnezhad 135471 mac 135471 bytes_out 473633 135471 bytes_in 9054184 135471 station_ip 83.123.23.131 135471 port 297 135471 unique_id port 135471 remote_ip 10.8.0.186 135474 username mansour 135474 mac 135474 bytes_out 2233379 135474 bytes_in 26070991 135474 station_ip 5.202.10.115 135474 port 298 135474 unique_id port 135474 remote_ip 10.8.0.30 135476 username mosi 135476 mac 135476 bytes_out 0 135476 bytes_in 0 135476 station_ip 151.235.117.85 135476 port 275 135476 unique_id port 135476 remote_ip 10.8.0.138 135477 username mosi 135477 mac 135477 bytes_out 34309 135477 bytes_in 58053 135477 station_ip 151.235.117.85 135477 port 287 135477 unique_id port 135477 remote_ip 10.8.0.138 135484 username mehdizare 135484 mac 135484 bytes_out 0 135484 bytes_in 0 135484 station_ip 5.120.148.206 135484 port 284 135484 unique_id port 135484 remote_ip 10.8.0.90 135485 username mohammadjavad 135485 mac 135485 bytes_out 0 135485 bytes_in 0 135485 station_ip 83.123.198.229 135485 port 289 135485 unique_id port 135485 remote_ip 10.8.0.142 135486 username mehdizare 135486 mac 135486 bytes_out 0 135486 bytes_in 0 135486 station_ip 5.120.148.206 135486 port 284 135486 unique_id port 135486 remote_ip 10.8.0.90 135488 bytes_out 0 135488 bytes_in 0 135488 station_ip 83.123.170.98 135488 port 289 135488 unique_id port 135488 remote_ip 10.8.0.186 135489 username sabaghnezhad 135489 mac 135489 bytes_out 0 135489 bytes_in 0 135489 station_ip 83.123.170.98 135489 port 289 135489 unique_id port 135489 remote_ip 10.8.0.186 135490 username morteza 135490 mac 135490 bytes_out 1465731 135490 bytes_in 26255393 135490 station_ip 37.129.175.159 135490 port 289 135490 unique_id port 135490 remote_ip 10.8.0.46 135491 username morteza 135491 mac 135491 bytes_out 0 135491 bytes_in 0 135491 station_ip 37.129.175.159 135491 port 181 135491 unique_id port 135491 remote_ip 10.8.1.62 135492 username mirzaei 135492 mac 135492 bytes_out 0 135492 bytes_in 0 135492 station_ip 5.120.141.103 135492 port 290 135492 unique_id port 135492 remote_ip 10.8.0.66 135493 username morteza 135493 mac 135493 bytes_out 0 135493 bytes_in 0 135493 station_ip 37.129.175.159 135493 port 289 135493 unique_id port 135493 remote_ip 10.8.0.46 135494 username morteza 135494 mac 135494 bytes_out 0 135494 bytes_in 0 135494 station_ip 37.129.175.159 135494 port 181 135494 unique_id port 135494 remote_ip 10.8.1.62 135495 username morteza 135495 mac 135495 bytes_out 0 135495 bytes_in 0 135495 station_ip 37.129.175.159 135495 port 181 135495 unique_id port 135495 remote_ip 10.8.1.62 135496 username morteza 135496 mac 135496 bytes_out 0 135496 bytes_in 0 135496 station_ip 37.129.175.159 135496 port 289 135496 unique_id port 135496 remote_ip 10.8.0.46 135497 username morteza 135497 mac 135497 bytes_out 0 135497 bytes_in 0 135497 station_ip 37.129.175.159 135497 port 289 135497 unique_id port 135497 remote_ip 10.8.0.46 135498 username morteza 135498 mac 135498 bytes_out 0 135498 bytes_in 0 135498 station_ip 37.129.175.159 135498 port 289 135498 unique_id port 135498 remote_ip 10.8.0.46 135499 username morteza 135499 mac 135499 bytes_out 0 135499 bytes_in 0 135499 station_ip 37.129.175.159 135499 port 181 135499 unique_id port 135499 remote_ip 10.8.1.62 135500 username morteza 135500 mac 135500 bytes_out 0 135500 bytes_in 0 135500 station_ip 37.129.175.159 135500 port 290 135500 unique_id port 135500 remote_ip 10.8.0.46 135501 username morteza 135501 mac 135501 bytes_out 0 135501 bytes_in 0 135501 station_ip 37.129.175.159 135501 port 290 135501 unique_id port 135501 remote_ip 10.8.0.46 135502 username morteza 135502 mac 135502 bytes_out 0 135502 bytes_in 0 135502 station_ip 37.129.175.159 135502 port 290 135502 unique_id port 135502 remote_ip 10.8.0.46 135503 username mohammadjavad 135503 mac 135503 bytes_out 408130 135503 bytes_in 2993632 135503 station_ip 37.129.28.99 135503 port 289 135503 unique_id port 135503 remote_ip 10.8.0.142 135504 username morteza 135504 mac 135504 bytes_out 0 135504 bytes_in 0 135504 station_ip 37.129.175.159 135504 port 289 135504 unique_id port 135504 remote_ip 10.8.0.46 135506 username morteza 135506 mac 135506 bytes_out 0 135506 bytes_in 0 135506 station_ip 37.129.175.159 135506 port 289 135506 unique_id port 135506 remote_ip 10.8.0.46 135507 username morteza 135507 kill_reason Maximum check online fails reached 135507 mac 135507 bytes_out 0 135507 bytes_in 0 135507 station_ip 37.129.175.159 135507 port 181 135507 unique_id port 135510 username sedighe 135510 mac 135510 bytes_out 0 135510 bytes_in 0 135510 station_ip 83.122.151.143 135510 port 290 135510 unique_id port 135510 remote_ip 10.8.0.146 135511 username mehdizare 135511 mac 135511 bytes_out 3154307 135511 bytes_in 47657187 135511 station_ip 5.120.148.206 135511 port 284 135511 unique_id port 135511 remote_ip 10.8.0.90 135514 username mohammadjavad 135514 mac 135514 bytes_out 1089476 135514 bytes_in 28004700 135514 station_ip 37.129.240.65 135514 port 293 135514 unique_id port 135514 remote_ip 10.8.0.142 135520 username alipour 135520 mac 135520 bytes_out 0 135520 bytes_in 0 135520 station_ip 83.122.153.166 135520 port 284 135520 unique_id port 135520 remote_ip 10.8.0.102 135522 username saeed9658 135522 kill_reason Maximum check online fails reached 135522 mac 135522 bytes_out 0 135522 bytes_in 0 135522 station_ip 5.119.170.229 135522 port 284 135522 unique_id port 135523 username saeed9658 135523 mac 135523 bytes_out 0 135523 bytes_in 0 135523 station_ip 5.119.170.229 135523 port 185 135523 unique_id port 135523 remote_ip 10.8.1.210 135528 username saeed9658 135528 mac 135528 bytes_out 0 135528 bytes_in 0 135528 station_ip 5.119.170.229 135528 port 287 135528 unique_id port 135528 remote_ip 10.8.0.62 135529 username sedighe 135529 mac 135529 bytes_out 0 135529 bytes_in 0 135529 station_ip 37.129.1.93 135529 port 287 135529 unique_id port 135529 remote_ip 10.8.0.146 135531 username saeed9658 135531 mac 135531 bytes_out 0 135531 bytes_in 0 135531 station_ip 5.119.170.229 135531 port 186 135531 unique_id port 135531 remote_ip 10.8.1.210 135532 username saeed9658 135532 mac 135532 bytes_out 0 135532 bytes_in 0 135532 station_ip 5.119.170.229 135532 port 287 135532 unique_id port 135532 remote_ip 10.8.0.62 135533 username saeed9658 135533 mac 135533 bytes_out 0 135533 bytes_in 0 135533 station_ip 5.119.170.229 135533 port 287 135533 unique_id port 135533 remote_ip 10.8.0.62 135537 username hamidsalari1 135537 mac 135537 bytes_out 31482 135537 bytes_in 41367 135537 station_ip 37.129.37.90 135537 port 185 135537 unique_id port 135537 remote_ip 10.8.1.170 135542 username saeed9658 135542 mac 135542 bytes_out 0 135542 bytes_in 0 135542 station_ip 5.119.170.229 135542 port 296 135542 unique_id port 135542 remote_ip 10.8.0.62 135546 username saeed9658 135546 mac 135546 bytes_out 0 135546 bytes_in 0 135546 station_ip 5.119.170.229 135546 port 296 135546 unique_id port 135546 remote_ip 10.8.0.62 135554 username vanila 135554 mac 135554 bytes_out 6624903 135554 bytes_in 1771051 135554 station_ip 83.122.53.41 135554 port 298 135554 unique_id port 135554 remote_ip 10.8.0.178 135559 username alipour 135505 username morteza 135505 mac 135505 bytes_out 0 135505 bytes_in 0 135505 station_ip 37.129.175.159 135505 port 182 135505 unique_id port 135505 remote_ip 10.8.1.62 135508 username morteza 135508 mac 135508 bytes_out 0 135508 bytes_in 0 135508 station_ip 37.129.175.159 135508 port 289 135508 unique_id port 135508 remote_ip 10.8.0.46 135509 username houshang 135509 mac 135509 bytes_out 190799 135509 bytes_in 273923 135509 station_ip 5.120.110.58 135509 port 290 135509 unique_id port 135509 remote_ip 10.8.0.22 135512 username hosseine 135512 kill_reason Another user logged on this global unique id 135512 mac 135512 bytes_out 0 135512 bytes_in 0 135512 station_ip 37.129.104.18 135512 port 259 135512 unique_id port 135513 username jafari 135513 kill_reason Another user logged on this global unique id 135513 mac 135513 bytes_out 0 135513 bytes_in 0 135513 station_ip 93.114.16.247 135513 port 290 135513 unique_id port 135513 remote_ip 10.8.0.242 135515 username mehdizare 135515 mac 135515 bytes_out 0 135515 bytes_in 0 135515 station_ip 5.120.148.206 135515 port 182 135515 unique_id port 135515 remote_ip 10.8.1.42 135517 username mahdiyehalizadeh 135517 mac 135517 bytes_out 0 135517 bytes_in 0 135517 station_ip 83.122.97.236 135517 port 289 135517 unique_id port 135517 remote_ip 10.8.0.82 135519 username forozandeh1 135519 mac 135519 bytes_out 0 135519 bytes_in 0 135519 station_ip 83.122.4.159 135519 port 289 135519 unique_id port 135519 remote_ip 10.8.0.130 135521 username saeed9658 135521 mac 135521 bytes_out 0 135521 bytes_in 0 135521 station_ip 5.119.170.229 135521 port 185 135521 unique_id port 135521 remote_ip 10.8.1.210 135524 username saeed9658 135524 mac 135524 bytes_out 0 135524 bytes_in 0 135524 station_ip 5.119.170.229 135524 port 185 135524 unique_id port 135524 remote_ip 10.8.1.210 135526 username sekonji3 135526 mac 135526 bytes_out 0 135526 bytes_in 0 135526 station_ip 113.203.40.187 135526 port 296 135526 unique_id port 135526 remote_ip 10.8.0.6 135530 username saeed9658 135530 mac 135530 bytes_out 0 135530 bytes_in 0 135530 station_ip 5.119.170.229 135530 port 186 135530 unique_id port 135530 remote_ip 10.8.1.210 135536 username saeed9658 135536 mac 135536 bytes_out 0 135536 bytes_in 0 135536 station_ip 5.119.170.229 135536 port 186 135536 unique_id port 135536 remote_ip 10.8.1.210 135538 username mehdizare 135538 mac 135538 bytes_out 74649 135538 bytes_in 79853 135538 station_ip 5.120.148.206 135538 port 182 135538 unique_id port 135538 remote_ip 10.8.1.42 135540 username saeed9658 135540 mac 135540 bytes_out 0 135540 bytes_in 0 135540 station_ip 5.119.170.229 135540 port 296 135540 unique_id port 135540 remote_ip 10.8.0.62 135541 username saeed9658 135541 mac 135541 bytes_out 0 135541 bytes_in 0 135541 station_ip 5.119.170.229 135541 port 296 135541 unique_id port 135541 remote_ip 10.8.0.62 135543 username mehdizare 135543 mac 135543 bytes_out 9612 135543 bytes_in 14845 135543 station_ip 5.120.148.206 135543 port 182 135543 unique_id port 135543 remote_ip 10.8.1.42 135548 username saeed9658 135548 mac 135548 bytes_out 0 135548 bytes_in 0 135548 station_ip 5.119.170.229 135548 port 298 135548 unique_id port 135548 remote_ip 10.8.0.62 135550 username saeed9658 135550 mac 135550 bytes_out 0 135550 bytes_in 0 135550 station_ip 5.119.170.229 135550 port 298 135550 unique_id port 135550 remote_ip 10.8.0.62 135551 username vanila 135516 username aminvpn 135516 mac 135516 bytes_out 2750517 135516 bytes_in 12311950 135516 station_ip 83.122.153.30 135516 port 289 135516 unique_id port 135516 remote_ip 10.8.0.14 135518 username saeed9658 135518 mac 135518 bytes_out 750371 135518 bytes_in 6797133 135518 station_ip 5.119.170.229 135518 port 293 135518 unique_id port 135518 remote_ip 10.8.0.62 135525 username forozandeh1 135525 mac 135525 bytes_out 0 135525 bytes_in 0 135525 station_ip 83.123.54.59 135525 port 293 135525 unique_id port 135525 remote_ip 10.8.0.130 135527 username hamidsalari1 135527 mac 135527 bytes_out 1723658 135527 bytes_in 19859351 135527 station_ip 37.129.37.90 135527 port 287 135527 unique_id port 135527 remote_ip 10.8.0.226 135534 username alipour 135534 mac 135534 bytes_out 642102 135534 bytes_in 5839511 135534 station_ip 83.122.153.166 135534 port 289 135534 unique_id port 135534 remote_ip 10.8.0.102 135535 username saeed9658 135535 mac 135535 bytes_out 0 135535 bytes_in 0 135535 station_ip 5.119.170.229 135535 port 289 135535 unique_id port 135535 remote_ip 10.8.0.62 135539 username barzegar 135539 mac 135539 bytes_out 1607653 135539 bytes_in 30654547 135539 station_ip 5.120.182.172 135539 port 289 135539 unique_id port 135539 remote_ip 10.8.0.234 135544 username saeed9658 135544 mac 135544 bytes_out 0 135544 bytes_in 0 135544 station_ip 5.119.170.229 135544 port 182 135544 unique_id port 135544 remote_ip 10.8.1.210 135545 username saeed9658 135545 mac 135545 bytes_out 1636 135545 bytes_in 5036 135545 station_ip 5.119.170.229 135545 port 296 135545 unique_id port 135545 remote_ip 10.8.0.62 135547 username mohammadjavad 135547 mac 135547 bytes_out 0 135547 bytes_in 0 135547 station_ip 83.123.161.154 135547 port 289 135547 unique_id port 135547 remote_ip 10.8.0.142 135549 username barzegar 135549 kill_reason Another user logged on this global unique id 135549 mac 135549 bytes_out 0 135549 bytes_in 0 135549 station_ip 5.120.62.16 135549 port 182 135549 unique_id port 135549 remote_ip 10.8.1.174 135553 username jafari 135553 mac 135553 bytes_out 0 135553 bytes_in 0 135553 station_ip 93.114.16.247 135553 port 290 135553 unique_id port 135555 username sabaghnezhad 135555 mac 135555 bytes_out 268818 135555 bytes_in 808382 135555 station_ip 83.123.129.23 135555 port 293 135555 unique_id port 135555 remote_ip 10.8.0.186 135556 username hamidsalari 135556 mac 135556 bytes_out 0 135556 bytes_in 0 135556 station_ip 5.120.109.206 135556 port 292 135556 unique_id port 135565 username barzegar 135565 kill_reason Another user logged on this global unique id 135565 mac 135565 bytes_out 0 135565 bytes_in 0 135565 station_ip 5.120.62.16 135565 port 182 135565 unique_id port 135567 username mehdizare 135567 mac 135567 bytes_out 0 135567 bytes_in 0 135567 station_ip 5.120.148.206 135567 port 293 135567 unique_id port 135567 remote_ip 10.8.0.90 135571 username godarzi 135571 mac 135571 bytes_out 0 135571 bytes_in 0 135571 station_ip 5.119.5.145 135571 port 296 135571 unique_id port 135571 remote_ip 10.8.0.174 135574 username barzegar 135574 mac 135574 bytes_out 0 135574 bytes_in 0 135574 station_ip 5.120.62.16 135574 port 182 135574 unique_id port 135578 username mehdizare 135578 mac 135578 bytes_out 7856 135578 bytes_in 17366 135578 station_ip 5.120.148.206 135578 port 293 135578 unique_id port 135578 remote_ip 10.8.0.90 135581 username malekpoir 135581 mac 135581 bytes_out 0 135551 mac 135551 bytes_out 0 135551 bytes_in 0 135551 station_ip 83.122.53.41 135551 port 289 135551 unique_id port 135551 remote_ip 10.8.0.178 135552 username saeed9658 135552 mac 135552 bytes_out 0 135552 bytes_in 0 135552 station_ip 5.119.170.229 135552 port 185 135552 unique_id port 135552 remote_ip 10.8.1.210 135557 username barzegar 135557 kill_reason Another user logged on this global unique id 135557 mac 135557 bytes_out 0 135557 bytes_in 0 135557 station_ip 5.120.62.16 135557 port 182 135557 unique_id port 135558 username saeed9658 135558 mac 135558 bytes_out 0 135558 bytes_in 0 135558 station_ip 5.119.170.229 135558 port 185 135558 unique_id port 135558 remote_ip 10.8.1.210 135560 username jafari 135560 mac 135560 bytes_out 12050 135560 bytes_in 15838 135560 station_ip 93.114.16.247 135560 port 289 135560 unique_id port 135560 remote_ip 10.8.0.242 135561 username mehdizare 135561 mac 135561 bytes_out 0 135561 bytes_in 0 135561 station_ip 5.120.148.206 135561 port 297 135561 unique_id port 135561 remote_ip 10.8.0.90 135562 username forozandeh1 135562 mac 135562 bytes_out 4669408 135562 bytes_in 41073545 135562 station_ip 83.122.80.242 135562 port 296 135562 unique_id port 135562 remote_ip 10.8.0.130 135566 username mohammadjavad 135566 mac 135566 bytes_out 49117 135566 bytes_in 55881 135566 station_ip 113.203.10.174 135566 port 297 135566 unique_id port 135566 remote_ip 10.8.0.142 135570 username malekpoir 135570 kill_reason Another user logged on this global unique id 135570 mac 135570 bytes_out 0 135570 bytes_in 0 135570 station_ip 5.119.242.129 135570 port 289 135570 unique_id port 135570 remote_ip 10.8.0.58 135575 username alipour 135575 kill_reason Another user logged on this global unique id 135575 mac 135575 bytes_out 0 135575 bytes_in 0 135575 station_ip 83.122.153.166 135575 port 287 135575 unique_id port 135577 username saeed9658 135577 mac 135577 bytes_out 0 135577 bytes_in 0 135577 station_ip 5.119.170.229 135577 port 292 135577 unique_id port 135580 username barzegar 135580 mac 135580 bytes_out 0 135580 bytes_in 0 135580 station_ip 5.120.62.16 135580 port 287 135580 unique_id port 135580 remote_ip 10.8.0.234 135589 username barzegar 135589 mac 135589 bytes_out 0 135589 bytes_in 0 135589 station_ip 5.120.62.16 135589 port 182 135589 unique_id port 135589 remote_ip 10.8.1.174 135590 username vanila 135590 mac 135590 bytes_out 11090042 135590 bytes_in 26663737 135590 station_ip 83.122.53.41 135590 port 289 135590 unique_id port 135590 remote_ip 10.8.0.178 135592 username kordestani 135592 kill_reason Another user logged on this global unique id 135592 mac 135592 bytes_out 0 135592 bytes_in 0 135592 station_ip 151.235.98.178 135592 port 287 135592 unique_id port 135592 remote_ip 10.8.0.134 135593 username barzegar 135593 mac 135593 bytes_out 0 135593 bytes_in 0 135593 station_ip 5.120.62.16 135593 port 182 135593 unique_id port 135593 remote_ip 10.8.1.174 135594 username barzegar 135594 mac 135594 bytes_out 0 135594 bytes_in 0 135594 station_ip 5.120.62.16 135594 port 182 135594 unique_id port 135594 remote_ip 10.8.1.174 135607 username kordestani 135607 mac 135607 bytes_out 0 135607 bytes_in 0 135607 station_ip 151.235.98.178 135607 port 287 135607 unique_id port 135611 username moradi 135611 mac 135611 bytes_out 0 135611 bytes_in 0 135611 station_ip 46.225.209.131 135611 port 289 135611 unique_id port 135613 username mehdizare 135613 mac 135613 bytes_out 55386 135559 kill_reason Another user logged on this global unique id 135559 mac 135559 bytes_out 0 135559 bytes_in 0 135559 station_ip 83.122.153.166 135559 port 287 135559 unique_id port 135559 remote_ip 10.8.0.102 135563 username sekonji3 135563 mac 135563 bytes_out 0 135563 bytes_in 0 135563 station_ip 113.203.93.187 135563 port 297 135563 unique_id port 135563 remote_ip 10.8.0.6 135564 username yahodi 135564 mac 135564 bytes_out 530962 135564 bytes_in 2718753 135564 station_ip 37.129.41.95 135564 port 289 135564 unique_id port 135564 remote_ip 10.8.0.202 135568 username jafari 135568 mac 135568 bytes_out 0 135568 bytes_in 0 135568 station_ip 37.137.21.230 135568 port 296 135568 unique_id port 135568 remote_ip 10.8.0.242 135569 username forozandeh1 135569 mac 135569 bytes_out 0 135569 bytes_in 0 135569 station_ip 113.203.114.33 135569 port 298 135569 unique_id port 135569 remote_ip 10.8.0.130 135572 username saeed9658 135572 kill_reason Another user logged on this global unique id 135572 mac 135572 bytes_out 0 135572 bytes_in 0 135572 station_ip 5.119.170.229 135572 port 292 135572 unique_id port 135572 remote_ip 10.8.0.62 135573 username malekpoir 135573 kill_reason Another user logged on this global unique id 135573 mac 135573 bytes_out 0 135573 bytes_in 0 135573 station_ip 5.119.242.129 135573 port 289 135573 unique_id port 135576 username mehdizare 135576 mac 135576 bytes_out 146951 135576 bytes_in 342777 135576 station_ip 5.120.148.206 135576 port 293 135576 unique_id port 135576 remote_ip 10.8.0.90 135579 username alipour 135579 mac 135579 bytes_out 0 135579 bytes_in 0 135579 station_ip 83.122.153.166 135579 port 287 135579 unique_id port 135582 username forozandeh1 135582 mac 135582 bytes_out 874058 135582 bytes_in 10212555 135582 station_ip 83.122.9.1 135582 port 293 135582 unique_id port 135582 remote_ip 10.8.0.130 135583 username sabaghnezhad 135583 mac 135583 bytes_out 30649 135583 bytes_in 38676 135583 station_ip 83.123.129.23 135583 port 290 135583 unique_id port 135583 remote_ip 10.8.0.186 135585 username barzegar 135585 mac 135585 bytes_out 68029 135585 bytes_in 658392 135585 station_ip 5.120.62.16 135585 port 287 135585 unique_id port 135585 remote_ip 10.8.0.234 135586 username sekonji3 135586 mac 135586 bytes_out 0 135586 bytes_in 0 135586 station_ip 113.203.93.187 135586 port 287 135586 unique_id port 135586 remote_ip 10.8.0.6 135588 username barzegar 135588 mac 135588 bytes_out 58072 135588 bytes_in 455234 135588 station_ip 5.120.62.16 135588 port 287 135588 unique_id port 135588 remote_ip 10.8.0.234 135591 username barzegar 135591 mac 135591 bytes_out 0 135591 bytes_in 0 135591 station_ip 5.120.62.16 135591 port 182 135591 unique_id port 135591 remote_ip 10.8.1.174 135595 username vanila 135595 mac 135595 bytes_out 0 135595 bytes_in 0 135595 station_ip 83.122.53.41 135595 port 297 135595 unique_id port 135595 remote_ip 10.8.0.178 135596 username hosseine 135596 mac 135596 bytes_out 0 135596 bytes_in 0 135596 station_ip 37.129.104.18 135596 port 259 135596 unique_id port 135597 username godarzi 135597 mac 135597 bytes_out 0 135597 bytes_in 0 135597 station_ip 5.119.5.145 135597 port 296 135597 unique_id port 135597 remote_ip 10.8.0.174 135598 username barzegar 135598 kill_reason Maximum check online fails reached 135598 mac 135598 bytes_out 0 135598 bytes_in 0 135598 station_ip 5.120.62.16 135598 port 182 135598 unique_id port 135603 username vanila 135581 bytes_in 0 135581 station_ip 5.119.242.129 135581 port 289 135581 unique_id port 135584 username yahodi 135584 mac 135584 bytes_out 0 135584 bytes_in 0 135584 station_ip 37.129.58.251 135584 port 289 135584 unique_id port 135584 remote_ip 10.8.0.202 135587 username vanila 135587 mac 135587 bytes_out 0 135587 bytes_in 0 135587 station_ip 83.122.53.41 135587 port 290 135587 unique_id port 135587 remote_ip 10.8.0.178 135599 username mahdiyehalizadeh 135599 mac 135599 bytes_out 0 135599 bytes_in 0 135599 station_ip 83.123.11.240 135599 port 290 135599 unique_id port 135599 remote_ip 10.8.0.82 135600 username barzegar 135600 mac 135600 bytes_out 0 135600 bytes_in 0 135600 station_ip 5.120.62.16 135600 port 259 135600 unique_id port 135600 remote_ip 10.8.0.234 135601 username forozandeh1 135601 mac 135601 bytes_out 0 135601 bytes_in 0 135601 station_ip 113.203.79.1 135601 port 293 135601 unique_id port 135601 remote_ip 10.8.0.130 135602 username barzegar 135602 mac 135602 bytes_out 0 135602 bytes_in 0 135602 station_ip 5.120.62.16 135602 port 185 135602 unique_id port 135602 remote_ip 10.8.1.174 135604 username mahdiyehalizadeh 135604 mac 135604 bytes_out 0 135604 bytes_in 0 135604 station_ip 83.123.11.240 135604 port 296 135604 unique_id port 135604 remote_ip 10.8.0.82 135605 username barzegar 135605 mac 135605 bytes_out 2415 135605 bytes_in 4996 135605 station_ip 5.120.62.16 135605 port 185 135605 unique_id port 135605 remote_ip 10.8.1.174 135609 username mahdiyehalizadeh 135609 mac 135609 bytes_out 0 135609 bytes_in 0 135609 station_ip 83.123.11.240 135609 port 259 135609 unique_id port 135609 remote_ip 10.8.0.82 135612 username mohammadjavad 135612 mac 135612 bytes_out 0 135612 bytes_in 0 135612 station_ip 37.129.90.85 135612 port 259 135612 unique_id port 135612 remote_ip 10.8.0.142 135616 username aminvpn 135616 mac 135616 bytes_out 0 135616 bytes_in 0 135616 station_ip 37.129.251.163 135616 port 287 135616 unique_id port 135616 remote_ip 10.8.0.14 135621 username aminvpn 135621 mac 135621 bytes_out 0 135621 bytes_in 0 135621 station_ip 83.122.164.186 135621 port 289 135621 unique_id port 135621 remote_ip 10.8.0.14 135622 username aminvpn 135622 mac 135622 bytes_out 0 135622 bytes_in 0 135622 station_ip 37.129.251.163 135622 port 287 135622 unique_id port 135622 remote_ip 10.8.0.14 135625 username aminvpn 135625 mac 135625 bytes_out 0 135625 bytes_in 0 135625 station_ip 37.129.251.163 135625 port 292 135625 unique_id port 135625 remote_ip 10.8.0.14 135627 username aminvpn 135627 mac 135627 bytes_out 0 135627 bytes_in 0 135627 station_ip 83.122.164.186 135627 port 297 135627 unique_id port 135627 remote_ip 10.8.0.14 135630 username aminvpn 135630 mac 135630 bytes_out 0 135630 bytes_in 0 135630 station_ip 83.122.164.186 135630 port 297 135630 unique_id port 135630 remote_ip 10.8.0.14 135636 username aminvpn 135636 mac 135636 bytes_out 0 135636 bytes_in 0 135636 station_ip 37.129.251.163 135636 port 296 135636 unique_id port 135636 remote_ip 10.8.0.14 135637 username aminvpn 135637 mac 135637 bytes_out 0 135637 bytes_in 0 135637 station_ip 83.122.164.186 135637 port 290 135637 unique_id port 135637 remote_ip 10.8.0.14 135638 username aminvpn 135638 mac 135638 bytes_out 0 135638 bytes_in 0 135638 station_ip 37.129.251.163 135638 port 296 135638 unique_id port 135638 remote_ip 10.8.0.14 135603 mac 135603 bytes_out 0 135603 bytes_in 0 135603 station_ip 83.122.53.41 135603 port 259 135603 unique_id port 135603 remote_ip 10.8.0.178 135606 username godarzi 135606 mac 135606 bytes_out 0 135606 bytes_in 0 135606 station_ip 5.119.5.145 135606 port 290 135606 unique_id port 135606 remote_ip 10.8.0.174 135608 username forozandeh1 135608 mac 135608 bytes_out 0 135608 bytes_in 0 135608 station_ip 83.123.77.46 135608 port 290 135608 unique_id port 135608 remote_ip 10.8.0.130 135610 username moradi 135610 kill_reason Another user logged on this global unique id 135610 mac 135610 bytes_out 0 135610 bytes_in 0 135610 station_ip 46.225.209.131 135610 port 289 135610 unique_id port 135610 remote_ip 10.8.0.250 135617 username barzegar 135617 mac 135617 bytes_out 0 135617 bytes_in 0 135617 station_ip 5.120.62.16 135617 port 292 135617 unique_id port 135617 remote_ip 10.8.0.234 135618 username aminvpn 135618 mac 135618 bytes_out 0 135618 bytes_in 0 135618 station_ip 83.122.164.186 135618 port 296 135618 unique_id port 135618 remote_ip 10.8.0.14 135620 username aminvpn 135620 mac 135620 bytes_out 0 135620 bytes_in 0 135620 station_ip 37.129.251.163 135620 port 287 135620 unique_id port 135620 remote_ip 10.8.0.14 135624 username aminvpn 135624 mac 135624 bytes_out 0 135624 bytes_in 0 135624 station_ip 83.122.164.186 135624 port 289 135624 unique_id port 135624 remote_ip 10.8.0.14 135626 username barzegar 135626 mac 135626 bytes_out 0 135626 bytes_in 0 135626 station_ip 5.120.62.16 135626 port 296 135626 unique_id port 135626 remote_ip 10.8.0.234 135628 username aminvpn 135628 mac 135628 bytes_out 0 135628 bytes_in 0 135628 station_ip 37.129.251.163 135628 port 292 135628 unique_id port 135628 remote_ip 10.8.0.14 135632 username aminvpn 135632 mac 135632 bytes_out 0 135632 bytes_in 0 135632 station_ip 37.129.251.163 135632 port 296 135632 unique_id port 135632 remote_ip 10.8.0.14 135634 username aminvpn 135634 mac 135634 bytes_out 0 135634 bytes_in 0 135634 station_ip 37.129.251.163 135634 port 296 135634 unique_id port 135634 remote_ip 10.8.0.14 135635 username aminvpn 135635 mac 135635 bytes_out 0 135635 bytes_in 0 135635 station_ip 83.122.164.186 135635 port 290 135635 unique_id port 135635 remote_ip 10.8.0.14 135639 username godarzi 135639 mac 135639 bytes_out 0 135639 bytes_in 0 135639 station_ip 5.119.5.145 135639 port 289 135639 unique_id port 135639 remote_ip 10.8.0.174 135641 username aminvpn 135641 mac 135641 bytes_out 0 135641 bytes_in 0 135641 station_ip 83.122.164.186 135641 port 290 135641 unique_id port 135641 remote_ip 10.8.0.14 135644 username zare 135644 kill_reason Relative expiration date has reached 135644 mac 135644 bytes_out 0 135644 bytes_in 0 135644 station_ip 94.183.214.14 135644 port 259 135644 unique_id port 135646 username mohammadjavad 135646 mac 135646 bytes_out 73916 135646 bytes_in 52991 135646 station_ip 83.123.226.252 135646 port 292 135646 unique_id port 135646 remote_ip 10.8.0.142 135648 username aminvpn 135648 mac 135648 bytes_out 0 135648 bytes_in 0 135648 station_ip 83.122.164.186 135648 port 296 135648 unique_id port 135648 remote_ip 10.8.0.14 135650 username aminvpn 135650 mac 135650 bytes_out 0 135650 bytes_in 0 135650 station_ip 37.129.251.163 135650 port 259 135650 unique_id port 135650 remote_ip 10.8.0.14 135652 username aminvpn 135652 mac 135652 bytes_out 0 135613 bytes_in 62884 135613 station_ip 5.120.148.206 135613 port 292 135613 unique_id port 135613 remote_ip 10.8.0.90 135614 username godarzi 135614 mac 135614 bytes_out 0 135614 bytes_in 0 135614 station_ip 5.119.5.145 135614 port 287 135614 unique_id port 135614 remote_ip 10.8.0.174 135615 username barzegar 135615 mac 135615 bytes_out 0 135615 bytes_in 0 135615 station_ip 5.120.62.16 135615 port 296 135615 unique_id port 135615 remote_ip 10.8.0.234 135619 username mehdizare 135619 mac 135619 bytes_out 0 135619 bytes_in 0 135619 station_ip 5.120.148.206 135619 port 289 135619 unique_id port 135619 remote_ip 10.8.0.90 135623 username mehdizare 135623 mac 135623 bytes_out 0 135623 bytes_in 0 135623 station_ip 5.120.148.206 135623 port 292 135623 unique_id port 135623 remote_ip 10.8.0.90 135629 username barzegar 135629 mac 135629 bytes_out 0 135629 bytes_in 0 135629 station_ip 5.120.62.16 135629 port 296 135629 unique_id port 135629 remote_ip 10.8.0.234 135631 username vanila 135631 mac 135631 bytes_out 0 135631 bytes_in 0 135631 station_ip 83.122.50.209 135631 port 290 135631 unique_id port 135631 remote_ip 10.8.0.178 135633 username aminvpn 135633 mac 135633 bytes_out 0 135633 bytes_in 0 135633 station_ip 83.122.164.186 135633 port 290 135633 unique_id port 135633 remote_ip 10.8.0.14 135640 username saeed9658 135640 mac 135640 bytes_out 0 135640 bytes_in 0 135640 station_ip 5.119.170.229 135640 port 259 135640 unique_id port 135640 remote_ip 10.8.0.62 135642 username barzegar 135642 mac 135642 bytes_out 25927 135642 bytes_in 8909 135642 station_ip 5.120.62.16 135642 port 185 135642 unique_id port 135642 remote_ip 10.8.1.174 135643 username aminvpn 135643 mac 135643 bytes_out 0 135643 bytes_in 0 135643 station_ip 37.129.251.163 135643 port 259 135643 unique_id port 135643 remote_ip 10.8.0.14 135647 username aminvpn 135647 mac 135647 bytes_out 137454 135647 bytes_in 451219 135647 station_ip 37.129.251.163 135647 port 259 135647 unique_id port 135647 remote_ip 10.8.0.14 135655 username saeed9658 135655 mac 135655 bytes_out 12133 135655 bytes_in 20351 135655 station_ip 5.119.170.229 135655 port 185 135655 unique_id port 135655 remote_ip 10.8.1.210 135656 username aminvpn 135656 mac 135656 bytes_out 0 135656 bytes_in 0 135656 station_ip 83.122.164.186 135656 port 290 135656 unique_id port 135656 remote_ip 10.8.0.14 135657 username vanila 135657 mac 135657 bytes_out 9482038 135657 bytes_in 2317423 135657 station_ip 83.122.50.209 135657 port 296 135657 unique_id port 135657 remote_ip 10.8.0.178 135659 username aminvpn 135659 mac 135659 bytes_out 0 135659 bytes_in 0 135659 station_ip 83.122.164.186 135659 port 290 135659 unique_id port 135659 remote_ip 10.8.0.14 135662 username hassan 135662 mac 135662 bytes_out 0 135662 bytes_in 0 135662 station_ip 46.225.209.131 135662 port 290 135662 unique_id port 135662 remote_ip 10.8.0.122 135664 username moradi 135664 mac 135664 bytes_out 0 135664 bytes_in 0 135664 station_ip 37.27.11.111 135664 port 185 135664 unique_id port 135664 remote_ip 10.8.1.202 135666 username aminvpn 135666 mac 135666 bytes_out 0 135666 bytes_in 0 135666 station_ip 37.129.251.163 135666 port 296 135666 unique_id port 135666 remote_ip 10.8.0.14 135667 username aminvpn 135667 mac 135667 bytes_out 0 135667 bytes_in 0 135667 station_ip 83.122.164.186 135667 port 290 135667 unique_id port 135645 username aminvpn 135645 mac 135645 bytes_out 0 135645 bytes_in 0 135645 station_ip 83.122.164.186 135645 port 289 135645 unique_id port 135645 remote_ip 10.8.0.14 135649 username barzegar 135649 mac 135649 bytes_out 0 135649 bytes_in 0 135649 station_ip 5.120.62.16 135649 port 290 135649 unique_id port 135649 remote_ip 10.8.0.234 135651 username aminvpn 135651 mac 135651 bytes_out 0 135651 bytes_in 0 135651 station_ip 83.122.164.186 135651 port 290 135651 unique_id port 135651 remote_ip 10.8.0.14 135653 username aminvpn 135653 mac 135653 bytes_out 0 135653 bytes_in 0 135653 station_ip 83.122.164.186 135653 port 290 135653 unique_id port 135653 remote_ip 10.8.0.14 135660 username barzegar 135660 mac 135660 bytes_out 15289 135660 bytes_in 19111 135660 station_ip 5.120.62.16 135660 port 186 135660 unique_id port 135660 remote_ip 10.8.1.174 135661 username hassan 135661 mac 135661 bytes_out 0 135661 bytes_in 0 135661 station_ip 46.225.209.131 135661 port 290 135661 unique_id port 135661 remote_ip 10.8.0.122 135665 username aminvpn 135665 mac 135665 bytes_out 0 135665 bytes_in 0 135665 station_ip 83.122.164.186 135665 port 290 135665 unique_id port 135665 remote_ip 10.8.0.14 135668 username aminvpn 135668 mac 135668 bytes_out 0 135668 bytes_in 0 135668 station_ip 37.129.251.163 135668 port 296 135668 unique_id port 135668 remote_ip 10.8.0.14 135674 username aminvpn 135674 mac 135674 bytes_out 27316 135674 bytes_in 38424 135674 station_ip 37.129.251.163 135674 port 296 135674 unique_id port 135674 remote_ip 10.8.0.14 135675 username barzegar 135675 kill_reason Maximum check online fails reached 135675 mac 135675 bytes_out 0 135675 bytes_in 0 135675 station_ip 5.120.62.16 135675 port 290 135675 unique_id port 135684 username mehdizare 135684 mac 135684 bytes_out 0 135684 bytes_in 0 135684 station_ip 5.120.148.206 135684 port 296 135684 unique_id port 135684 remote_ip 10.8.0.90 135686 username aminvpn 135686 mac 135686 bytes_out 0 135686 bytes_in 0 135686 station_ip 83.122.164.186 135686 port 296 135686 unique_id port 135686 remote_ip 10.8.0.14 135688 username aminvpn 135688 mac 135688 bytes_out 0 135688 bytes_in 0 135688 station_ip 83.122.164.186 135688 port 296 135688 unique_id port 135688 remote_ip 10.8.0.14 135697 username yahodi 135697 mac 135697 bytes_out 0 135697 bytes_in 0 135697 station_ip 37.129.75.67 135697 port 259 135697 unique_id port 135697 remote_ip 10.8.0.202 135698 username barzegar 135698 mac 135698 bytes_out 0 135698 bytes_in 0 135698 station_ip 5.120.62.16 135698 port 296 135698 unique_id port 135698 remote_ip 10.8.0.234 135702 username barzegar 135702 mac 135702 bytes_out 0 135702 bytes_in 0 135702 station_ip 5.120.62.16 135702 port 186 135702 unique_id port 135702 remote_ip 10.8.1.174 135710 username alipour 135710 mac 135710 bytes_out 0 135710 bytes_in 0 135710 station_ip 83.122.153.166 135710 port 289 135710 unique_id port 135714 username godarzi 135714 kill_reason Another user logged on this global unique id 135714 mac 135714 bytes_out 0 135714 bytes_in 0 135714 station_ip 5.202.62.33 135714 port 297 135714 unique_id port 135714 remote_ip 10.8.0.174 135717 username kordestani 135717 mac 135717 bytes_out 2301306 135717 bytes_in 20880068 135717 station_ip 151.235.98.178 135717 port 292 135717 unique_id port 135717 remote_ip 10.8.0.134 135718 username morteza 135718 mac 135718 bytes_out 2510 135652 bytes_in 0 135652 station_ip 37.129.251.163 135652 port 259 135652 unique_id port 135652 remote_ip 10.8.0.14 135654 username aminvpn 135654 mac 135654 bytes_out 0 135654 bytes_in 0 135654 station_ip 37.129.251.163 135654 port 259 135654 unique_id port 135654 remote_ip 10.8.0.14 135658 username aminvpn 135658 mac 135658 bytes_out 0 135658 bytes_in 0 135658 station_ip 37.129.251.163 135658 port 259 135658 unique_id port 135658 remote_ip 10.8.0.14 135663 username aminvpn 135663 mac 135663 bytes_out 0 135663 bytes_in 0 135663 station_ip 37.129.251.163 135663 port 296 135663 unique_id port 135663 remote_ip 10.8.0.14 135670 username aminvpn 135670 mac 135670 bytes_out 26359 135670 bytes_in 37225 135670 station_ip 37.129.251.163 135670 port 296 135670 unique_id port 135670 remote_ip 10.8.0.14 135672 username aminvpn 135672 mac 135672 bytes_out 0 135672 bytes_in 0 135672 station_ip 83.122.164.186 135672 port 290 135672 unique_id port 135672 remote_ip 10.8.0.14 135673 username alipour 135673 kill_reason Another user logged on this global unique id 135673 mac 135673 bytes_out 0 135673 bytes_in 0 135673 station_ip 83.122.153.166 135673 port 289 135673 unique_id port 135673 remote_ip 10.8.0.102 135680 username aminvpn 135680 mac 135680 bytes_out 0 135680 bytes_in 0 135680 station_ip 37.129.251.163 135680 port 298 135680 unique_id port 135680 remote_ip 10.8.0.14 135682 username aminvpn 135682 mac 135682 bytes_out 0 135682 bytes_in 0 135682 station_ip 37.129.251.163 135682 port 299 135682 unique_id port 135682 remote_ip 10.8.0.14 135683 username aminvpn 135683 mac 135683 bytes_out 0 135683 bytes_in 0 135683 station_ip 83.122.164.186 135683 port 297 135683 unique_id port 135683 remote_ip 10.8.0.14 135687 username aminvpn 135687 mac 135687 bytes_out 0 135687 bytes_in 0 135687 station_ip 37.129.251.163 135687 port 299 135687 unique_id port 135687 remote_ip 10.8.0.14 135689 username aminvpn 135689 mac 135689 bytes_out 0 135689 bytes_in 0 135689 station_ip 37.129.251.163 135689 port 299 135689 unique_id port 135689 remote_ip 10.8.0.14 135694 username yahodi 135694 mac 135694 bytes_out 0 135694 bytes_in 0 135694 station_ip 37.129.75.67 135694 port 299 135694 unique_id port 135694 remote_ip 10.8.0.202 135696 username alihosseini1 135696 mac 135696 bytes_out 0 135696 bytes_in 0 135696 station_ip 5.120.23.46 135696 port 296 135696 unique_id port 135696 remote_ip 10.8.0.166 135700 username barzegar 135700 mac 135700 bytes_out 0 135700 bytes_in 0 135700 station_ip 5.120.62.16 135700 port 259 135700 unique_id port 135700 remote_ip 10.8.0.234 135703 username amir 135703 mac 135703 bytes_out 939552 135703 bytes_in 6707508 135703 station_ip 46.225.209.167 135703 port 298 135703 unique_id port 135703 remote_ip 10.8.0.50 135704 username barzegar 135704 mac 135704 bytes_out 0 135704 bytes_in 0 135704 station_ip 5.120.62.16 135704 port 186 135704 unique_id port 135704 remote_ip 10.8.1.174 135705 username alihosseini1 135705 mac 135705 bytes_out 0 135705 bytes_in 0 135705 station_ip 5.120.136.250 135705 port 259 135705 unique_id port 135705 remote_ip 10.8.0.166 135711 username morteza 135711 mac 135711 bytes_out 0 135711 bytes_in 0 135711 station_ip 83.122.52.208 135711 port 259 135711 unique_id port 135711 remote_ip 10.8.0.46 135713 username morteza 135713 mac 135713 bytes_out 0 135713 bytes_in 0 135713 station_ip 83.122.52.208 135667 remote_ip 10.8.0.14 135669 username aminvpn 135669 mac 135669 bytes_out 0 135669 bytes_in 0 135669 station_ip 83.122.164.186 135669 port 290 135669 unique_id port 135669 remote_ip 10.8.0.14 135671 username barzegar 135671 mac 135671 bytes_out 0 135671 bytes_in 0 135671 station_ip 5.120.62.16 135671 port 185 135671 unique_id port 135671 remote_ip 10.8.1.174 135676 username mehdizare 135676 mac 135676 bytes_out 49525 135676 bytes_in 65111 135676 station_ip 5.120.148.206 135676 port 287 135676 unique_id port 135676 remote_ip 10.8.0.90 135677 username aminvpn 135677 mac 135677 bytes_out 0 135677 bytes_in 0 135677 station_ip 83.122.164.186 135677 port 297 135677 unique_id port 135677 remote_ip 10.8.0.14 135678 username aminvpn 135678 mac 135678 bytes_out 0 135678 bytes_in 0 135678 station_ip 37.129.251.163 135678 port 298 135678 unique_id port 135678 remote_ip 10.8.0.14 135679 username aminvpn 135679 mac 135679 bytes_out 0 135679 bytes_in 0 135679 station_ip 83.122.164.186 135679 port 297 135679 unique_id port 135679 remote_ip 10.8.0.14 135681 username aminvpn 135681 mac 135681 bytes_out 0 135681 bytes_in 0 135681 station_ip 83.122.164.186 135681 port 297 135681 unique_id port 135681 remote_ip 10.8.0.14 135685 username aminvpn 135685 mac 135685 bytes_out 0 135685 bytes_in 0 135685 station_ip 37.129.251.163 135685 port 299 135685 unique_id port 135685 remote_ip 10.8.0.14 135690 username barzegar 135690 mac 135690 bytes_out 0 135690 bytes_in 0 135690 station_ip 5.120.62.16 135690 port 296 135690 unique_id port 135690 remote_ip 10.8.0.234 135691 username aminvpn 135691 mac 135691 bytes_out 0 135691 bytes_in 0 135691 station_ip 83.122.164.186 135691 port 300 135691 unique_id port 135691 remote_ip 10.8.0.14 135692 username aminvpn 135692 mac 135692 bytes_out 0 135692 bytes_in 0 135692 station_ip 37.129.251.163 135692 port 299 135692 unique_id port 135692 remote_ip 10.8.0.14 135693 username aminvpn 135693 mac 135693 bytes_out 0 135693 bytes_in 0 135693 station_ip 83.122.164.186 135693 port 300 135693 unique_id port 135693 remote_ip 10.8.0.14 135695 username vanila 135695 mac 135695 bytes_out 9994314 135695 bytes_in 918631 135695 station_ip 83.122.50.209 135695 port 259 135695 unique_id port 135695 remote_ip 10.8.0.178 135699 username houshang 135699 mac 135699 bytes_out 44848 135699 bytes_in 116595 135699 station_ip 5.120.110.58 135699 port 259 135699 unique_id port 135699 remote_ip 10.8.0.22 135701 username alipour 135701 kill_reason Another user logged on this global unique id 135701 mac 135701 bytes_out 0 135701 bytes_in 0 135701 station_ip 83.122.153.166 135701 port 289 135701 unique_id port 135706 username barzegar 135706 mac 135706 bytes_out 2583 135706 bytes_in 5039 135706 station_ip 5.120.62.16 135706 port 186 135706 unique_id port 135706 remote_ip 10.8.1.174 135707 username khalili 135707 kill_reason Another user logged on this global unique id 135707 mac 135707 bytes_out 0 135707 bytes_in 0 135707 station_ip 5.120.30.61 135707 port 282 135707 unique_id port 135708 username barzegar 135708 mac 135708 bytes_out 0 135708 bytes_in 0 135708 station_ip 5.120.62.16 135708 port 186 135708 unique_id port 135708 remote_ip 10.8.1.174 135709 username morteza 135709 mac 135709 bytes_out 102310 135709 bytes_in 548529 135709 station_ip 83.122.52.208 135709 port 259 135709 unique_id port 135709 remote_ip 10.8.0.46 135712 username morteza 135712 mac 135712 bytes_out 0 135712 bytes_in 0 135712 station_ip 83.122.52.208 135712 port 259 135712 unique_id port 135712 remote_ip 10.8.0.46 135716 username morteza 135716 mac 135716 bytes_out 0 135716 bytes_in 0 135716 station_ip 83.122.52.208 135716 port 188 135716 unique_id port 135716 remote_ip 10.8.1.62 135719 username morteza 135719 mac 135719 bytes_out 0 135719 bytes_in 0 135719 station_ip 83.122.52.208 135719 port 188 135719 unique_id port 135719 remote_ip 10.8.1.62 135729 username moradi 135729 mac 135729 bytes_out 0 135729 bytes_in 0 135729 station_ip 113.203.106.228 135729 port 185 135729 unique_id port 135729 remote_ip 10.8.1.202 135730 username morteza 135730 mac 135730 bytes_out 0 135730 bytes_in 0 135730 station_ip 83.122.52.208 135730 port 185 135730 unique_id port 135730 remote_ip 10.8.1.62 135732 username mehdizare 135732 mac 135732 bytes_out 20646 135732 bytes_in 30464 135732 station_ip 5.120.148.206 135732 port 189 135732 unique_id port 135732 remote_ip 10.8.1.42 135734 username barzegar 135734 mac 135734 bytes_out 0 135734 bytes_in 0 135734 station_ip 5.120.62.16 135734 port 298 135734 unique_id port 135734 remote_ip 10.8.0.234 135735 username aminvpn 135735 mac 135735 bytes_out 0 135735 bytes_in 0 135735 station_ip 37.129.76.59 135735 port 259 135735 unique_id port 135735 remote_ip 10.8.0.14 135737 username morteza 135737 mac 135737 bytes_out 0 135737 bytes_in 0 135737 station_ip 83.122.52.208 135737 port 185 135737 unique_id port 135737 remote_ip 10.8.1.62 135738 username aminvpn 135738 mac 135738 bytes_out 0 135738 bytes_in 0 135738 station_ip 37.129.251.163 135738 port 298 135738 unique_id port 135738 remote_ip 10.8.0.14 135742 username rajaei 135742 mac 135742 bytes_out 2603402 135742 bytes_in 21142556 135742 station_ip 89.47.71.185 135742 port 296 135742 unique_id port 135742 remote_ip 10.8.0.34 135747 username aminvpn 135747 mac 135747 bytes_out 0 135747 bytes_in 0 135747 station_ip 37.129.76.59 135747 port 296 135747 unique_id port 135747 remote_ip 10.8.0.14 135748 username morteza 135748 mac 135748 bytes_out 0 135748 bytes_in 0 135748 station_ip 83.122.52.208 135748 port 296 135748 unique_id port 135748 remote_ip 10.8.0.46 135754 username godarzi 135754 kill_reason Another user logged on this global unique id 135754 mac 135754 bytes_out 0 135754 bytes_in 0 135754 station_ip 5.202.62.33 135754 port 297 135754 unique_id port 135755 username aminvpn 135755 mac 135755 bytes_out 0 135755 bytes_in 0 135755 station_ip 37.129.76.59 135755 port 296 135755 unique_id port 135755 remote_ip 10.8.0.14 135760 username kordestani 135760 mac 135760 bytes_out 0 135760 bytes_in 0 135760 station_ip 151.235.98.178 135760 port 189 135760 unique_id port 135760 remote_ip 10.8.1.98 135761 username aminvpn 135761 mac 135761 bytes_out 278878 135761 bytes_in 993758 135761 station_ip 37.129.76.59 135761 port 296 135761 unique_id port 135761 remote_ip 10.8.0.14 135763 username aminvpn 135763 mac 135763 bytes_out 0 135763 bytes_in 0 135763 station_ip 37.129.251.163 135763 port 298 135763 unique_id port 135763 remote_ip 10.8.0.14 135764 username barzegar 135764 mac 135764 bytes_out 0 135764 bytes_in 0 135764 station_ip 5.120.62.16 135764 port 259 135764 unique_id port 135764 remote_ip 10.8.0.234 135767 username alipour 135767 kill_reason Another user logged on this global unique id 135767 mac 135767 bytes_out 0 135713 port 259 135713 unique_id port 135713 remote_ip 10.8.0.46 135715 username morteza 135715 mac 135715 bytes_out 0 135715 bytes_in 0 135715 station_ip 83.122.52.208 135715 port 259 135715 unique_id port 135715 remote_ip 10.8.0.46 135720 username morteza 135720 mac 135720 bytes_out 0 135720 bytes_in 0 135720 station_ip 83.122.52.208 135720 port 259 135720 unique_id port 135720 remote_ip 10.8.0.46 135722 username morteza 135722 mac 135722 bytes_out 0 135722 bytes_in 0 135722 station_ip 83.122.52.208 135722 port 188 135722 unique_id port 135722 remote_ip 10.8.1.62 135725 username mehdizare 135725 mac 135725 bytes_out 0 135725 bytes_in 0 135725 station_ip 5.120.148.206 135725 port 185 135725 unique_id port 135725 remote_ip 10.8.1.42 135728 username morteza 135728 mac 135728 bytes_out 2207 135728 bytes_in 4818 135728 station_ip 83.122.52.208 135728 port 298 135728 unique_id port 135728 remote_ip 10.8.0.46 135731 username mohammadjavad 135731 mac 135731 bytes_out 0 135731 bytes_in 0 135731 station_ip 83.122.140.222 135731 port 259 135731 unique_id port 135731 remote_ip 10.8.0.142 135733 username aminvpn 135733 mac 135733 bytes_out 829865 135733 bytes_in 5846709 135733 station_ip 37.129.251.163 135733 port 301 135733 unique_id port 135733 remote_ip 10.8.0.14 135741 username kordestani 135741 mac 135741 bytes_out 610064 135741 bytes_in 6923492 135741 station_ip 151.235.98.178 135741 port 289 135741 unique_id port 135741 remote_ip 10.8.0.134 135744 username morteza 135744 mac 135744 bytes_out 2313 135744 bytes_in 4545 135744 station_ip 83.122.52.208 135744 port 299 135744 unique_id port 135744 remote_ip 10.8.0.46 135745 username aminvpn 135745 mac 135745 bytes_out 0 135745 bytes_in 0 135745 station_ip 37.129.251.163 135745 port 289 135745 unique_id port 135745 remote_ip 10.8.0.14 135749 username aminvpn 135749 mac 135749 bytes_out 0 135749 bytes_in 0 135749 station_ip 37.129.251.163 135749 port 289 135749 unique_id port 135749 remote_ip 10.8.0.14 135750 username aminvpn 135750 mac 135750 bytes_out 0 135750 bytes_in 0 135750 station_ip 37.129.76.59 135750 port 296 135750 unique_id port 135750 remote_ip 10.8.0.14 135751 username aminvpn 135751 mac 135751 bytes_out 0 135751 bytes_in 0 135751 station_ip 37.129.251.163 135751 port 289 135751 unique_id port 135751 remote_ip 10.8.0.14 135752 username aminvpn 135752 mac 135752 bytes_out 0 135752 bytes_in 0 135752 station_ip 37.129.76.59 135752 port 296 135752 unique_id port 135752 remote_ip 10.8.0.14 135753 username aminvpn 135753 mac 135753 bytes_out 0 135753 bytes_in 0 135753 station_ip 37.129.251.163 135753 port 289 135753 unique_id port 135753 remote_ip 10.8.0.14 135757 username aminvpn 135757 mac 135757 bytes_out 0 135757 bytes_in 0 135757 station_ip 37.129.251.163 135757 port 289 135757 unique_id port 135757 remote_ip 10.8.0.14 135768 username moradi 135768 mac 135768 bytes_out 658083 135768 bytes_in 5006760 135768 station_ip 46.225.209.131 135768 port 186 135768 unique_id port 135768 remote_ip 10.8.1.202 135774 username mehdizare 135774 mac 135774 bytes_out 31983 135774 bytes_in 58607 135774 station_ip 5.120.148.206 135774 port 188 135774 unique_id port 135774 remote_ip 10.8.1.42 135776 username aminvpn 135776 mac 135776 bytes_out 0 135776 bytes_in 0 135776 station_ip 37.129.76.59 135776 port 259 135776 unique_id port 135776 remote_ip 10.8.0.14 135718 bytes_in 5435 135718 station_ip 83.122.52.208 135718 port 259 135718 unique_id port 135718 remote_ip 10.8.0.46 135721 username morteza 135721 mac 135721 bytes_out 0 135721 bytes_in 0 135721 station_ip 83.122.52.208 135721 port 259 135721 unique_id port 135721 remote_ip 10.8.0.46 135723 username morteza 135723 mac 135723 bytes_out 0 135723 bytes_in 0 135723 station_ip 83.122.52.208 135723 port 188 135723 unique_id port 135723 remote_ip 10.8.1.62 135724 username barzegar 135724 mac 135724 bytes_out 0 135724 bytes_in 0 135724 station_ip 5.120.62.16 135724 port 186 135724 unique_id port 135724 remote_ip 10.8.1.174 135726 username morteza 135726 mac 135726 bytes_out 0 135726 bytes_in 0 135726 station_ip 83.122.52.208 135726 port 186 135726 unique_id port 135726 remote_ip 10.8.1.62 135727 username barzegar 135727 mac 135727 bytes_out 0 135727 bytes_in 0 135727 station_ip 5.120.62.16 135727 port 188 135727 unique_id port 135727 remote_ip 10.8.1.174 135736 username morteza 135736 mac 135736 bytes_out 0 135736 bytes_in 0 135736 station_ip 83.122.52.208 135736 port 185 135736 unique_id port 135736 remote_ip 10.8.1.62 135739 username aminvpn 135739 mac 135739 bytes_out 0 135739 bytes_in 0 135739 station_ip 37.129.76.59 135739 port 299 135739 unique_id port 135739 remote_ip 10.8.0.14 135740 username aminvpn 135740 mac 135740 bytes_out 0 135740 bytes_in 0 135740 station_ip 37.129.251.163 135740 port 298 135740 unique_id port 135740 remote_ip 10.8.0.14 135743 username aminvpn 135743 mac 135743 bytes_out 0 135743 bytes_in 0 135743 station_ip 37.129.76.59 135743 port 300 135743 unique_id port 135743 remote_ip 10.8.0.14 135746 username mehdizare 135746 mac 135746 bytes_out 0 135746 bytes_in 0 135746 station_ip 5.120.148.206 135746 port 188 135746 unique_id port 135746 remote_ip 10.8.1.42 135756 username morteza 135756 mac 135756 bytes_out 0 135756 bytes_in 0 135756 station_ip 83.122.52.208 135756 port 190 135756 unique_id port 135756 remote_ip 10.8.1.62 135758 username aminvpn 135758 mac 135758 bytes_out 0 135758 bytes_in 0 135758 station_ip 37.129.76.59 135758 port 296 135758 unique_id port 135758 remote_ip 10.8.0.14 135759 username aminvpn 135759 mac 135759 bytes_out 0 135759 bytes_in 0 135759 station_ip 37.129.251.163 135759 port 289 135759 unique_id port 135759 remote_ip 10.8.0.14 135762 username vanila 135762 mac 135762 bytes_out 65199 135762 bytes_in 195689 135762 station_ip 83.122.66.133 135762 port 289 135762 unique_id port 135762 remote_ip 10.8.0.178 135765 username aminvpn 135765 mac 135765 bytes_out 31939 135765 bytes_in 55523 135765 station_ip 37.129.76.59 135765 port 289 135765 unique_id port 135765 remote_ip 10.8.0.14 135766 username mosi 135766 kill_reason Another user logged on this global unique id 135766 mac 135766 bytes_out 0 135766 bytes_in 0 135766 station_ip 151.235.117.85 135766 port 275 135766 unique_id port 135766 remote_ip 10.8.0.138 135769 username aminvpn 135769 mac 135769 bytes_out 0 135769 bytes_in 0 135769 station_ip 37.129.76.59 135769 port 259 135769 unique_id port 135769 remote_ip 10.8.0.14 135770 username aminvpn 135770 mac 135770 bytes_out 0 135770 bytes_in 0 135770 station_ip 37.129.251.163 135770 port 289 135770 unique_id port 135770 remote_ip 10.8.0.14 135775 username aminvpn 135775 mac 135775 bytes_out 0 135775 bytes_in 0 135775 station_ip 37.129.251.163 135775 port 289 135767 bytes_in 0 135767 station_ip 83.122.153.166 135767 port 187 135767 unique_id port 135767 remote_ip 10.8.1.50 135771 username aminvpn 135771 mac 135771 bytes_out 0 135771 bytes_in 0 135771 station_ip 37.129.76.59 135771 port 259 135771 unique_id port 135771 remote_ip 10.8.0.14 135772 username aminvpn 135772 mac 135772 bytes_out 0 135772 bytes_in 0 135772 station_ip 37.129.251.163 135772 port 289 135772 unique_id port 135772 remote_ip 10.8.0.14 135773 username aminvpn 135773 mac 135773 bytes_out 0 135773 bytes_in 0 135773 station_ip 37.129.76.59 135773 port 259 135773 unique_id port 135773 remote_ip 10.8.0.14 135777 username aminvpn 135777 mac 135777 bytes_out 0 135777 bytes_in 0 135777 station_ip 37.129.251.163 135777 port 296 135777 unique_id port 135777 remote_ip 10.8.0.14 135778 username aminvpn 135778 mac 135778 bytes_out 0 135778 bytes_in 0 135778 station_ip 37.129.76.59 135778 port 259 135778 unique_id port 135778 remote_ip 10.8.0.14 135779 username aminvpn 135779 mac 135779 bytes_out 0 135779 bytes_in 0 135779 station_ip 37.129.251.163 135779 port 296 135779 unique_id port 135779 remote_ip 10.8.0.14 135780 username aminvpn 135780 mac 135780 bytes_out 0 135780 bytes_in 0 135780 station_ip 37.129.76.59 135780 port 298 135780 unique_id port 135780 remote_ip 10.8.0.14 135782 username aminvpn 135782 mac 135782 bytes_out 0 135782 bytes_in 0 135782 station_ip 37.129.76.59 135782 port 298 135782 unique_id port 135782 remote_ip 10.8.0.14 135784 username barzegar 135784 mac 135784 bytes_out 0 135784 bytes_in 0 135784 station_ip 5.120.62.16 135784 port 188 135784 unique_id port 135784 remote_ip 10.8.1.174 135785 username aminvpn 135785 mac 135785 bytes_out 0 135785 bytes_in 0 135785 station_ip 37.129.76.59 135785 port 298 135785 unique_id port 135785 remote_ip 10.8.0.14 135787 username hashtadani3 135787 mac 135787 bytes_out 0 135787 bytes_in 0 135787 station_ip 83.123.144.89 135787 port 289 135787 unique_id port 135787 remote_ip 10.8.0.154 135790 username aminvpn 135790 mac 135790 bytes_out 0 135790 bytes_in 0 135790 station_ip 37.129.76.59 135790 port 298 135790 unique_id port 135790 remote_ip 10.8.0.14 135793 username kordestani 135793 mac 135793 bytes_out 0 135793 bytes_in 0 135793 station_ip 151.235.98.178 135793 port 189 135793 unique_id port 135793 remote_ip 10.8.1.98 135794 username aminvpn 135794 mac 135794 bytes_out 0 135794 bytes_in 0 135794 station_ip 37.129.76.59 135794 port 289 135794 unique_id port 135794 remote_ip 10.8.0.14 135795 username aminvpn 135795 mac 135795 bytes_out 0 135795 bytes_in 0 135795 station_ip 37.129.251.163 135795 port 296 135795 unique_id port 135795 remote_ip 10.8.0.14 135804 username malekpoir 135804 kill_reason Another user logged on this global unique id 135804 mac 135804 bytes_out 0 135804 bytes_in 0 135804 station_ip 5.119.35.120 135804 port 292 135804 unique_id port 135804 remote_ip 10.8.0.58 135808 username aminvpn 135808 mac 135808 bytes_out 0 135808 bytes_in 0 135808 station_ip 37.129.251.163 135808 port 297 135808 unique_id port 135808 remote_ip 10.8.0.14 135811 username aminvpn 135811 mac 135811 bytes_out 0 135811 bytes_in 0 135811 station_ip 37.129.251.163 135811 port 297 135811 unique_id port 135811 remote_ip 10.8.0.14 135812 username aminvpn 135812 mac 135812 bytes_out 0 135812 bytes_in 0 135812 station_ip 37.129.76.59 135812 port 298 135775 unique_id port 135775 remote_ip 10.8.0.14 135786 username hashtadani3 135786 mac 135786 bytes_out 0 135786 bytes_in 0 135786 station_ip 83.123.144.89 135786 port 289 135786 unique_id port 135786 remote_ip 10.8.0.154 135788 username aminvpn 135788 mac 135788 bytes_out 0 135788 bytes_in 0 135788 station_ip 37.129.251.163 135788 port 296 135788 unique_id port 135788 remote_ip 10.8.0.14 135789 username barzegar 135789 mac 135789 bytes_out 0 135789 bytes_in 0 135789 station_ip 5.120.62.16 135789 port 188 135789 unique_id port 135789 remote_ip 10.8.1.174 135791 username hashtadani3 135791 mac 135791 bytes_out 11420 135791 bytes_in 17930 135791 station_ip 83.123.144.89 135791 port 289 135791 unique_id port 135791 remote_ip 10.8.0.154 135798 username godarzi 135798 mac 135798 bytes_out 0 135798 bytes_in 0 135798 station_ip 5.202.62.33 135798 port 297 135798 unique_id port 135801 username aminvpn 135801 mac 135801 bytes_out 0 135801 bytes_in 0 135801 station_ip 37.129.76.59 135801 port 296 135801 unique_id port 135801 remote_ip 10.8.0.14 135802 username aminvpn 135802 mac 135802 bytes_out 0 135802 bytes_in 0 135802 station_ip 37.129.251.163 135802 port 297 135802 unique_id port 135802 remote_ip 10.8.0.14 135803 username barzegar 135803 mac 135803 bytes_out 0 135803 bytes_in 0 135803 station_ip 5.120.62.16 135803 port 188 135803 unique_id port 135803 remote_ip 10.8.1.174 135806 username barzegar 135806 mac 135806 bytes_out 0 135806 bytes_in 0 135806 station_ip 5.120.62.16 135806 port 188 135806 unique_id port 135806 remote_ip 10.8.1.174 135807 username mosi 135807 kill_reason Another user logged on this global unique id 135807 mac 135807 bytes_out 0 135807 bytes_in 0 135807 station_ip 151.235.117.85 135807 port 275 135807 unique_id port 135809 username hashtadani3 135809 mac 135809 bytes_out 0 135809 bytes_in 0 135809 station_ip 83.123.144.89 135809 port 298 135809 unique_id port 135809 remote_ip 10.8.0.154 135810 username aminvpn 135810 mac 135810 bytes_out 0 135810 bytes_in 0 135810 station_ip 37.129.76.59 135810 port 299 135810 unique_id port 135810 remote_ip 10.8.0.14 135819 username aminvpn 135819 mac 135819 bytes_out 0 135819 bytes_in 0 135819 station_ip 37.129.76.59 135819 port 299 135819 unique_id port 135819 remote_ip 10.8.0.14 135826 username alipour 135826 mac 135826 bytes_out 28973 135826 bytes_in 26812 135826 station_ip 83.122.153.166 135826 port 298 135826 unique_id port 135826 remote_ip 10.8.0.102 135828 username hashtadani3 135828 mac 135828 bytes_out 12192 135828 bytes_in 106777 135828 station_ip 83.123.144.89 135828 port 299 135828 unique_id port 135828 remote_ip 10.8.0.154 135831 username aminvpn 135831 mac 135831 bytes_out 0 135831 bytes_in 0 135831 station_ip 37.129.76.59 135831 port 298 135831 unique_id port 135831 remote_ip 10.8.0.14 135832 username aminvpn 135832 mac 135832 bytes_out 0 135832 bytes_in 0 135832 station_ip 37.129.251.163 135832 port 297 135832 unique_id port 135832 remote_ip 10.8.0.14 135834 username hashtadani3 135834 mac 135834 bytes_out 0 135834 bytes_in 0 135834 station_ip 83.123.144.89 135834 port 297 135834 unique_id port 135834 remote_ip 10.8.0.154 135836 username aminvpn 135836 mac 135836 bytes_out 0 135836 bytes_in 0 135836 station_ip 37.129.251.163 135836 port 300 135836 unique_id port 135836 remote_ip 10.8.0.14 135838 username aminvpn 135838 mac 135781 username aminvpn 135781 mac 135781 bytes_out 0 135781 bytes_in 0 135781 station_ip 37.129.251.163 135781 port 296 135781 unique_id port 135781 remote_ip 10.8.0.14 135783 username aminvpn 135783 mac 135783 bytes_out 0 135783 bytes_in 0 135783 station_ip 37.129.251.163 135783 port 296 135783 unique_id port 135783 remote_ip 10.8.0.14 135792 username aminvpn 135792 mac 135792 bytes_out 0 135792 bytes_in 0 135792 station_ip 37.129.251.163 135792 port 296 135792 unique_id port 135792 remote_ip 10.8.0.14 135796 username hashtadani3 135796 mac 135796 bytes_out 0 135796 bytes_in 0 135796 station_ip 83.123.144.89 135796 port 296 135796 unique_id port 135796 remote_ip 10.8.0.154 135797 username aminvpn 135797 mac 135797 bytes_out 0 135797 bytes_in 0 135797 station_ip 37.129.76.59 135797 port 289 135797 unique_id port 135797 remote_ip 10.8.0.14 135799 username hashtadani3 135799 mac 135799 bytes_out 0 135799 bytes_in 0 135799 station_ip 83.123.144.89 135799 port 296 135799 unique_id port 135799 remote_ip 10.8.0.154 135800 username aminvpn 135800 mac 135800 bytes_out 0 135800 bytes_in 0 135800 station_ip 37.129.251.163 135800 port 298 135800 unique_id port 135800 remote_ip 10.8.0.14 135805 username aminvpn 135805 mac 135805 bytes_out 73252 135805 bytes_in 203702 135805 station_ip 37.129.76.59 135805 port 296 135805 unique_id port 135805 remote_ip 10.8.0.14 135813 username aminvpn 135813 mac 135813 bytes_out 0 135813 bytes_in 0 135813 station_ip 37.129.251.163 135813 port 297 135813 unique_id port 135813 remote_ip 10.8.0.14 135816 username aminvpn 135816 mac 135816 bytes_out 0 135816 bytes_in 0 135816 station_ip 37.129.76.59 135816 port 298 135816 unique_id port 135816 remote_ip 10.8.0.14 135818 username aminvpn 135818 mac 135818 bytes_out 0 135818 bytes_in 0 135818 station_ip 37.129.251.163 135818 port 297 135818 unique_id port 135818 remote_ip 10.8.0.14 135821 username barzegar 135821 mac 135821 bytes_out 0 135821 bytes_in 0 135821 station_ip 5.120.62.16 135821 port 187 135821 unique_id port 135821 remote_ip 10.8.1.174 135822 username aminvpn 135822 mac 135822 bytes_out 0 135822 bytes_in 0 135822 station_ip 37.129.251.163 135822 port 297 135822 unique_id port 135822 remote_ip 10.8.0.14 135823 username aminvpn 135823 mac 135823 bytes_out 0 135823 bytes_in 0 135823 station_ip 37.129.76.59 135823 port 300 135823 unique_id port 135823 remote_ip 10.8.0.14 135830 username aminvpn 135830 mac 135830 bytes_out 0 135830 bytes_in 0 135830 station_ip 37.129.251.163 135830 port 297 135830 unique_id port 135830 remote_ip 10.8.0.14 135839 username hashtadani3 135839 mac 135839 bytes_out 0 135839 bytes_in 0 135839 station_ip 83.123.144.89 135839 port 300 135839 unique_id port 135839 remote_ip 10.8.0.154 135843 username hashtadani3 135843 mac 135843 bytes_out 0 135843 bytes_in 0 135843 station_ip 83.123.144.89 135843 port 300 135843 unique_id port 135843 remote_ip 10.8.0.154 135844 username hashtadani3 135871 remote_ip 10.8.0.14 135844 kill_reason Maximum check online fails reached 135844 mac 135844 bytes_out 0 135844 bytes_in 0 135844 station_ip 83.123.144.89 135844 port 297 135844 unique_id port 135848 username forozandeh1 135848 kill_reason Another user logged on this global unique id 135848 mac 135848 bytes_out 0 135848 bytes_in 0 135848 station_ip 83.123.164.87 135848 port 287 135848 unique_id port 135848 remote_ip 10.8.0.130 135849 username aminvpn 135849 mac 135812 unique_id port 135812 remote_ip 10.8.0.14 135814 username aminvpn 135814 mac 135814 bytes_out 0 135814 bytes_in 0 135814 station_ip 37.129.76.59 135814 port 298 135814 unique_id port 135814 remote_ip 10.8.0.14 135815 username aminvpn 135815 mac 135815 bytes_out 0 135815 bytes_in 0 135815 station_ip 37.129.251.163 135815 port 297 135815 unique_id port 135815 remote_ip 10.8.0.14 135817 username alipour 135817 mac 135817 bytes_out 0 135817 bytes_in 0 135817 station_ip 83.122.153.166 135817 port 187 135817 unique_id port 135820 username hashtadani3 135820 mac 135820 bytes_out 0 135820 bytes_in 0 135820 station_ip 83.123.144.89 135820 port 299 135820 unique_id port 135820 remote_ip 10.8.0.154 135824 username barzegar 135824 mac 135824 bytes_out 0 135824 bytes_in 0 135824 station_ip 5.120.62.16 135824 port 187 135824 unique_id port 135824 remote_ip 10.8.1.174 135825 username aminvpn 135825 mac 135825 bytes_out 0 135825 bytes_in 0 135825 station_ip 37.129.251.163 135825 port 297 135825 unique_id port 135825 remote_ip 10.8.0.14 135827 username aminvpn 135827 mac 135827 bytes_out 0 135827 bytes_in 0 135827 station_ip 37.129.76.59 135827 port 300 135827 unique_id port 135827 remote_ip 10.8.0.14 135829 username hashtadani3 135829 mac 135829 bytes_out 0 135829 bytes_in 0 135829 station_ip 83.123.144.89 135829 port 298 135829 unique_id port 135829 remote_ip 10.8.0.154 135833 username aminvpn 135833 mac 135833 bytes_out 0 135833 bytes_in 0 135833 station_ip 37.129.76.59 135833 port 298 135833 unique_id port 135833 remote_ip 10.8.0.14 135835 username hashtadani3 135835 mac 135835 bytes_out 0 135835 bytes_in 0 135835 station_ip 83.123.144.89 135835 port 297 135835 unique_id port 135835 remote_ip 10.8.0.154 135837 username asma2026 135837 kill_reason Another user logged on this global unique id 135837 mac 135837 bytes_out 0 135837 bytes_in 0 135837 station_ip 95.64.19.78 135837 port 296 135837 unique_id port 135837 remote_ip 10.8.0.170 135842 username aminvpn 135842 mac 135842 bytes_out 0 135842 bytes_in 0 135842 station_ip 37.129.251.163 135842 port 300 135842 unique_id port 135842 remote_ip 10.8.0.14 135851 username mehdizare 135851 kill_reason Another user logged on this global unique id 135851 mac 135851 bytes_out 0 135851 bytes_in 0 135851 station_ip 5.120.148.206 135851 port 186 135851 unique_id port 135851 remote_ip 10.8.1.42 135855 username asma2026 135855 mac 135855 bytes_out 0 135855 bytes_in 0 135855 station_ip 95.64.19.78 135855 port 296 135855 unique_id port 135860 username asma2026 135860 mac 135860 bytes_out 0 135860 bytes_in 0 135860 station_ip 95.64.19.78 135860 port 190 135860 unique_id port 135860 remote_ip 10.8.1.122 135862 username mehdizare 135862 mac 135862 bytes_out 0 135862 bytes_in 0 135862 station_ip 5.120.148.206 135862 port 186 135862 unique_id port 135871 username aminvpn 135871 mac 135871 bytes_out 0 135871 bytes_in 0 135871 station_ip 37.129.76.59 135871 port 296 135871 unique_id port 135879 username mehdizare 135879 mac 135879 bytes_out 16646 135879 bytes_in 19065 135879 station_ip 5.120.148.206 135879 port 189 135879 unique_id port 135879 remote_ip 10.8.1.42 135883 username aminvpn 135883 mac 135883 bytes_out 35039 135883 bytes_in 50132 135883 station_ip 37.129.251.163 135883 port 296 135883 unique_id port 135883 remote_ip 10.8.0.14 135885 username mehdizare 135885 mac 135838 bytes_out 0 135838 bytes_in 0 135838 station_ip 37.129.76.59 135838 port 298 135838 unique_id port 135838 remote_ip 10.8.0.14 135840 username aminvpn 135840 mac 135840 bytes_out 0 135840 bytes_in 0 135840 station_ip 37.129.251.163 135840 port 301 135840 unique_id port 135840 remote_ip 10.8.0.14 135841 username aminvpn 135841 mac 135841 bytes_out 0 135841 bytes_in 0 135841 station_ip 37.129.76.59 135841 port 298 135841 unique_id port 135841 remote_ip 10.8.0.14 135845 username aminvpn 135845 mac 135845 bytes_out 49309 135845 bytes_in 61700 135845 station_ip 37.129.76.59 135845 port 298 135845 unique_id port 135845 remote_ip 10.8.0.14 135846 username aminvpn 135846 mac 135846 bytes_out 0 135846 bytes_in 0 135846 station_ip 37.129.251.163 135846 port 300 135846 unique_id port 135846 remote_ip 10.8.0.14 135847 username aminvpn 135847 mac 135847 bytes_out 0 135847 bytes_in 0 135847 station_ip 37.129.76.59 135847 port 298 135847 unique_id port 135847 remote_ip 10.8.0.14 135850 username aminvpn 135850 mac 135850 bytes_out 0 135850 bytes_in 0 135850 station_ip 37.129.76.59 135850 port 298 135850 unique_id port 135850 remote_ip 10.8.0.14 135853 username alihosseini1 135853 mac 135853 bytes_out 1123318 135853 bytes_in 10052756 135853 station_ip 5.119.193.148 135853 port 259 135853 unique_id port 135853 remote_ip 10.8.0.166 135858 username aminvpn 135858 mac 135858 bytes_out 0 135858 bytes_in 0 135858 station_ip 37.129.76.59 135858 port 289 135858 unique_id port 135858 remote_ip 10.8.0.14 135864 username aminvpn 135864 mac 135864 bytes_out 0 135864 bytes_in 0 135864 station_ip 37.129.251.163 135864 port 296 135864 unique_id port 135864 remote_ip 10.8.0.14 135866 username hashtadani3 135866 mac 135866 bytes_out 0 135866 bytes_in 0 135866 station_ip 83.123.144.89 135866 port 259 135866 unique_id port 135866 remote_ip 10.8.0.154 135867 username aminvpn 135867 mac 135867 bytes_out 0 135867 bytes_in 0 135867 station_ip 37.129.76.59 135867 port 289 135867 unique_id port 135867 remote_ip 10.8.0.14 135869 username kordestani 135869 mac 135869 bytes_out 493471 135869 bytes_in 6968241 135869 station_ip 151.235.98.178 135869 port 189 135869 unique_id port 135869 remote_ip 10.8.1.98 135870 username aminvpn 135870 mac 135870 bytes_out 0 135870 bytes_in 0 135870 station_ip 37.129.251.163 135870 port 259 135870 unique_id port 135870 remote_ip 10.8.0.14 135872 username aminvpn 135872 unique_id port 135872 terminate_cause User-Request 135872 bytes_out 13989001 135872 bytes_in 481597306 135872 station_ip 37.129.76.59 135872 port 15730525 135872 nas_port_type Virtual 135872 remote_ip 5.5.5.251 135874 username hosseine 135874 kill_reason Another user logged on this global unique id 135874 mac 135874 bytes_out 0 135874 bytes_in 0 135874 station_ip 37.129.24.42 135874 port 299 135874 unique_id port 135875 username hashtadani3 135875 mac 135875 bytes_out 0 135875 bytes_in 0 135875 station_ip 83.123.144.89 135875 port 289 135875 unique_id port 135875 remote_ip 10.8.0.154 135876 username alihosseini1 135876 mac 135876 bytes_out 0 135876 bytes_in 0 135876 station_ip 5.119.193.148 135876 port 289 135876 unique_id port 135876 remote_ip 10.8.0.166 135881 username hashtadani3 135881 mac 135881 bytes_out 0 135881 bytes_in 0 135881 station_ip 83.123.144.89 135881 port 298 135881 unique_id port 135881 remote_ip 10.8.0.154 135884 username hashtadani3 135884 mac 135884 bytes_out 0 135849 bytes_out 0 135849 bytes_in 0 135849 station_ip 37.129.251.163 135849 port 300 135849 unique_id port 135849 remote_ip 10.8.0.14 135852 username godarzi 135852 mac 135852 bytes_out 3597995 135852 bytes_in 8751894 135852 station_ip 5.202.62.33 135852 port 289 135852 unique_id port 135852 remote_ip 10.8.0.174 135854 username hashtadani3 135854 mac 135854 bytes_out 0 135854 bytes_in 0 135854 station_ip 83.123.144.89 135854 port 259 135854 unique_id port 135854 remote_ip 10.8.0.154 135856 username alihosseini1 135856 mac 135856 bytes_out 0 135856 bytes_in 0 135856 station_ip 5.119.193.148 135856 port 190 135856 unique_id port 135856 remote_ip 10.8.1.106 135857 username aminvpn 135857 mac 135857 bytes_out 236628 135857 bytes_in 909449 135857 station_ip 37.129.251.163 135857 port 298 135857 unique_id port 135857 remote_ip 10.8.0.14 135859 username aminvpn 135859 mac 135859 bytes_out 0 135859 bytes_in 0 135859 station_ip 37.129.251.163 135859 port 296 135859 unique_id port 135859 remote_ip 10.8.0.14 135861 username aminvpn 135861 mac 135861 bytes_out 0 135861 bytes_in 0 135861 station_ip 37.129.76.59 135861 port 289 135861 unique_id port 135861 remote_ip 10.8.0.14 135863 username alihosseini1 135863 mac 135863 bytes_out 0 135863 bytes_in 0 135863 station_ip 5.119.193.148 135863 port 289 135863 unique_id port 135863 remote_ip 10.8.0.166 135865 username hashtadani3 135865 mac 135865 bytes_out 1148787 135865 bytes_in 17359498 135865 station_ip 83.123.144.89 135865 port 259 135865 unique_id port 135865 remote_ip 10.8.0.154 135868 username hosseine 135868 kill_reason Another user logged on this global unique id 135868 mac 135868 bytes_out 0 135868 bytes_in 0 135868 station_ip 37.129.24.42 135868 port 299 135868 unique_id port 135868 remote_ip 10.8.0.238 135873 username alihosseini1 135873 mac 135873 bytes_out 0 135873 bytes_in 0 135873 station_ip 5.119.193.148 135873 port 298 135873 unique_id port 135873 remote_ip 10.8.0.166 135877 username barzegar 135877 kill_reason Another user logged on this global unique id 135877 mac 135877 bytes_out 0 135877 bytes_in 0 135877 station_ip 5.120.62.16 135877 port 187 135877 unique_id port 135877 remote_ip 10.8.1.174 135878 username vanila 135878 mac 135878 bytes_out 0 135878 bytes_in 0 135878 station_ip 83.122.38.41 135878 port 298 135878 unique_id port 135878 remote_ip 10.8.0.178 135880 username hashtadani3 135880 mac 135880 bytes_out 0 135880 bytes_in 0 135880 station_ip 83.123.144.89 135880 port 289 135880 unique_id port 135880 remote_ip 10.8.0.154 135882 username barzegar 135882 mac 135882 bytes_out 0 135882 bytes_in 0 135882 station_ip 5.120.62.16 135882 port 187 135882 unique_id port 135886 username alihosseini1 135886 kill_reason Maximum check online fails reached 135886 mac 135886 bytes_out 0 135886 bytes_in 0 135886 station_ip 5.119.193.148 135886 port 301 135886 unique_id port 135888 username hashtadani3 135888 mac 135888 bytes_out 0 135888 bytes_in 0 135888 station_ip 113.203.123.6 135888 port 302 135888 unique_id port 135888 remote_ip 10.8.0.154 135890 username tahmasebi 135890 mac 135890 bytes_out 0 135890 bytes_in 0 135890 station_ip 5.119.220.63 135890 port 303 135890 unique_id port 135890 remote_ip 10.8.0.42 135892 username alihosseini1 135892 mac 135892 bytes_out 0 135892 bytes_in 0 135892 station_ip 5.119.193.148 135892 port 187 135892 unique_id port 135892 remote_ip 10.8.1.106 135897 username malekpoir 135884 bytes_in 0 135884 station_ip 113.203.123.6 135884 port 298 135884 unique_id port 135884 remote_ip 10.8.0.154 135889 username mehdizare 135889 kill_reason Maximum check online fails reached 135889 mac 135889 bytes_out 0 135889 bytes_in 0 135889 station_ip 5.120.148.206 135889 port 298 135889 unique_id port 135891 username asma2026 135891 mac 135891 bytes_out 0 135891 bytes_in 0 135891 station_ip 95.64.19.78 135891 port 186 135891 unique_id port 135891 remote_ip 10.8.1.122 135893 username mehdizare 135893 mac 135893 bytes_out 1672 135893 bytes_in 4179 135893 station_ip 5.120.148.206 135893 port 304 135893 unique_id port 135893 remote_ip 10.8.0.90 135898 username vanila 135898 mac 135898 bytes_out 8572181 135898 bytes_in 538053 135898 station_ip 83.122.38.41 135898 port 296 135898 unique_id port 135898 remote_ip 10.8.0.178 135899 username mosi 135899 kill_reason Another user logged on this global unique id 135899 mac 135899 bytes_out 0 135899 bytes_in 0 135899 station_ip 151.235.117.85 135899 port 275 135899 unique_id port 135902 username barzegar 135902 mac 135902 bytes_out 0 135902 bytes_in 0 135902 station_ip 5.120.176.237 135902 port 186 135902 unique_id port 135902 remote_ip 10.8.1.174 135906 username hashtadani3 135906 mac 135906 bytes_out 309547 135906 bytes_in 412055 135906 station_ip 113.203.123.6 135906 port 302 135906 unique_id port 135906 remote_ip 10.8.0.154 135913 username hashtadani3 135913 mac 135913 bytes_out 0 135913 bytes_in 0 135913 station_ip 113.203.123.6 135913 port 296 135913 unique_id port 135913 remote_ip 10.8.0.154 135914 username mostafa_es78 135914 unique_id port 135914 terminate_cause User-Request 135914 bytes_out 258 135914 bytes_in 172 135914 station_ip 5.119.36.25 135914 port 15730528 135914 nas_port_type Virtual 135914 remote_ip 5.5.5.15 135927 username kordestani 135927 mac 135927 bytes_out 0 135927 bytes_in 0 135927 station_ip 151.235.98.178 135927 port 289 135927 unique_id port 135927 remote_ip 10.8.0.134 135928 username vanila 135928 mac 135928 bytes_out 0 135928 bytes_in 0 135928 station_ip 83.122.38.41 135928 port 300 135928 unique_id port 135928 remote_ip 10.8.0.178 135931 username alihosseini1 135931 mac 135931 bytes_out 210918 135931 bytes_in 1168515 135931 station_ip 5.119.112.226 135931 port 292 135931 unique_id port 135931 remote_ip 10.8.0.166 135932 username kordestani 135932 mac 135932 bytes_out 0 135932 bytes_in 0 135932 station_ip 151.235.98.178 135932 port 306 135932 unique_id port 135932 remote_ip 10.8.0.134 135945 username barzegar 135945 mac 135945 bytes_out 0 135945 bytes_in 0 135945 station_ip 5.120.176.237 135945 port 300 135945 unique_id port 135945 remote_ip 10.8.0.234 135946 username zare 135946 kill_reason Relative expiration date has reached 135946 mac 135946 bytes_out 0 135946 bytes_in 0 135946 station_ip 94.183.214.14 135946 port 296 135946 unique_id port 135950 username barzegar 135950 mac 135950 bytes_out 0 135950 bytes_in 0 135950 station_ip 5.120.176.237 135950 port 187 135950 unique_id port 135950 remote_ip 10.8.1.174 135952 username hashtadani3 135952 kill_reason Maximum number of concurrent logins reached 135952 mac 135952 bytes_out 0 135952 bytes_in 0 135952 station_ip 113.203.123.6 135952 port 185 135952 unique_id port 135956 username zotaher 135956 mac 135956 bytes_out 0 135956 bytes_in 0 135956 station_ip 37.129.21.237 135956 port 296 135956 unique_id port 135956 remote_ip 10.8.0.194 135961 username hashtadani3 135885 bytes_out 0 135885 bytes_in 0 135885 station_ip 5.120.148.206 135885 port 189 135885 unique_id port 135885 remote_ip 10.8.1.42 135887 username mehdizare 135887 mac 135887 bytes_out 0 135887 bytes_in 0 135887 station_ip 5.120.148.206 135887 port 187 135887 unique_id port 135887 remote_ip 10.8.1.42 135894 username forozandeh1 135894 mac 135894 bytes_out 0 135894 bytes_in 0 135894 station_ip 83.123.164.87 135894 port 287 135894 unique_id port 135895 username naeimeh 135895 mac 135895 bytes_out 2729817 135895 bytes_in 41660264 135895 station_ip 113.203.7.27 135895 port 289 135895 unique_id port 135895 remote_ip 10.8.0.78 135896 username mohammadjavad 135896 mac 135896 bytes_out 456103 135896 bytes_in 3018902 135896 station_ip 83.122.77.189 135896 port 296 135896 unique_id port 135896 remote_ip 10.8.0.142 135900 username naeimeh 135900 mac 135900 bytes_out 0 135900 bytes_in 0 135900 station_ip 113.203.7.27 135900 port 186 135900 unique_id port 135900 remote_ip 10.8.1.206 135901 username barzegar 135901 mac 135901 bytes_out 93169 135901 bytes_in 569477 135901 station_ip 5.120.176.237 135901 port 303 135901 unique_id port 135901 remote_ip 10.8.0.234 135903 username godarzi 135903 mac 135903 bytes_out 1166921 135903 bytes_in 13363430 135903 station_ip 5.119.92.60 135903 port 300 135903 unique_id port 135903 remote_ip 10.8.0.174 135905 username malekpoir 135905 mac 135905 bytes_out 0 135905 bytes_in 0 135905 station_ip 5.119.35.120 135905 port 292 135905 unique_id port 135907 username alihosseini1 135907 mac 135907 bytes_out 645854 135907 bytes_in 7014598 135907 station_ip 5.119.193.148 135907 port 289 135907 unique_id port 135907 remote_ip 10.8.0.166 135908 username rajaei 135908 mac 135908 bytes_out 755735 135908 bytes_in 14070368 135908 station_ip 5.200.123.160 135908 port 300 135908 unique_id port 135908 remote_ip 10.8.0.34 135909 username hashtadani3 135909 mac 135909 bytes_out 0 135909 bytes_in 0 135909 station_ip 113.203.123.6 135909 port 289 135909 unique_id port 135909 remote_ip 10.8.0.154 135910 username vanila 135910 mac 135910 bytes_out 8144427 135910 bytes_in 537433 135910 station_ip 83.122.38.41 135910 port 296 135910 unique_id port 135910 remote_ip 10.8.0.178 135916 username vanila 135916 mac 135916 bytes_out 89833 135916 bytes_in 109306 135916 station_ip 83.122.38.41 135916 port 289 135916 unique_id port 135916 remote_ip 10.8.0.178 135919 username sabaghnezhad 135919 mac 135919 bytes_out 307764 135919 bytes_in 675101 135919 station_ip 83.122.237.38 135919 port 292 135919 unique_id port 135919 remote_ip 10.8.0.186 135920 username barzegar 135920 mac 135920 bytes_out 0 135920 bytes_in 0 135920 station_ip 5.120.176.237 135920 port 186 135920 unique_id port 135920 remote_ip 10.8.1.174 135921 username malekpoir 135921 kill_reason Another user logged on this global unique id 135921 mac 135921 bytes_out 0 135921 bytes_in 0 135921 station_ip 5.120.161.204 135921 port 303 135921 unique_id port 135921 remote_ip 10.8.0.58 135922 username khalili 135922 kill_reason Another user logged on this global unique id 135922 mac 135922 bytes_out 0 135922 bytes_in 0 135922 station_ip 5.120.30.61 135922 port 282 135922 unique_id port 135930 username hashtadani3 135930 kill_reason Maximum check online fails reached 135930 mac 135930 bytes_out 0 135930 bytes_in 0 135930 station_ip 113.203.123.6 135930 port 302 135930 unique_id port 135936 username barzegar 135936 mac 135936 bytes_out 39437 135897 kill_reason Another user logged on this global unique id 135897 mac 135897 bytes_out 0 135897 bytes_in 0 135897 station_ip 5.119.35.120 135897 port 292 135897 unique_id port 135904 username saeed9658 135904 mac 135904 bytes_out 0 135904 bytes_in 0 135904 station_ip 5.119.37.64 135904 port 185 135904 unique_id port 135904 remote_ip 10.8.1.210 135911 username barzegar 135911 mac 135911 bytes_out 0 135911 bytes_in 0 135911 station_ip 5.120.176.237 135911 port 186 135911 unique_id port 135911 remote_ip 10.8.1.174 135912 username morteza 135912 mac 135912 bytes_out 0 135912 bytes_in 0 135912 station_ip 83.122.124.12 135912 port 185 135912 unique_id port 135912 remote_ip 10.8.1.62 135915 username kordestani 135915 mac 135915 bytes_out 1573991 135915 bytes_in 18383279 135915 station_ip 151.235.98.178 135915 port 259 135915 unique_id port 135915 remote_ip 10.8.0.134 135917 username hashtadani3 135917 mac 135917 bytes_out 0 135917 bytes_in 0 135917 station_ip 113.203.123.6 135917 port 300 135917 unique_id port 135917 remote_ip 10.8.0.154 135918 username hashtadani3 135918 mac 135918 bytes_out 0 135918 bytes_in 0 135918 station_ip 113.203.123.6 135918 port 300 135918 unique_id port 135918 remote_ip 10.8.0.154 135923 username hashtadani3 135923 mac 135923 bytes_out 0 135923 bytes_in 0 135923 station_ip 113.203.123.6 135923 port 302 135923 unique_id port 135923 remote_ip 10.8.0.154 135924 username sabaghnezhad 135924 mac 135924 bytes_out 0 135924 bytes_in 0 135924 station_ip 83.122.237.38 135924 port 292 135924 unique_id port 135924 remote_ip 10.8.0.186 135925 username hashtadani3 135925 mac 135925 bytes_out 0 135925 bytes_in 0 135925 station_ip 113.203.123.6 135925 port 187 135925 unique_id port 135925 remote_ip 10.8.1.94 135926 username morteza 135926 mac 135926 bytes_out 4190 135926 bytes_in 8457 135926 station_ip 83.122.60.160 135926 port 186 135926 unique_id port 135926 remote_ip 10.8.1.62 135929 username yahodi 135929 mac 135929 bytes_out 0 135929 bytes_in 0 135929 station_ip 83.123.218.112 135929 port 259 135929 unique_id port 135929 remote_ip 10.8.0.202 135933 username hashtadani3 135933 kill_reason Maximum check online fails reached 135933 mac 135933 bytes_out 0 135933 bytes_in 0 135933 station_ip 113.203.123.6 135933 port 305 135933 unique_id port 135934 username saeed9658 135934 mac 135934 bytes_out 0 135934 bytes_in 0 135934 station_ip 5.119.37.64 135934 port 186 135934 unique_id port 135934 remote_ip 10.8.1.210 135935 username mostafa_es78 135935 unique_id port 135935 terminate_cause Lost-Carrier 135935 bytes_out 303792 135935 bytes_in 8411388 135935 station_ip 5.119.36.25 135935 port 15730529 135935 nas_port_type Virtual 135935 remote_ip 5.5.5.252 135937 username hashtadani3 135937 kill_reason Maximum check online fails reached 135937 mac 135937 bytes_out 0 135937 bytes_in 0 135937 station_ip 113.203.123.6 135937 port 259 135937 unique_id port 135939 username barzegar 135939 mac 135939 bytes_out 0 135939 bytes_in 0 135939 station_ip 5.120.176.237 135939 port 300 135939 unique_id port 135939 remote_ip 10.8.0.234 135940 username malekpoir 135940 mac 135940 bytes_out 0 135940 bytes_in 0 135940 station_ip 5.120.161.204 135940 port 303 135940 unique_id port 135941 username godarzi 135941 mac 135941 bytes_out 0 135941 bytes_in 0 135941 station_ip 5.119.92.60 135941 port 296 135941 unique_id port 135941 remote_ip 10.8.0.174 135943 username hamid.e 135936 bytes_in 41187 135936 station_ip 5.120.176.237 135936 port 185 135936 unique_id port 135936 remote_ip 10.8.1.174 135938 username hashtadani3 135938 kill_reason Maximum check online fails reached 135938 mac 135938 bytes_out 0 135938 bytes_in 0 135938 station_ip 113.203.123.6 135938 port 292 135938 unique_id port 135942 username vanila 135942 mac 135942 bytes_out 0 135942 bytes_in 0 135942 station_ip 83.122.38.41 135942 port 289 135942 unique_id port 135942 remote_ip 10.8.0.178 135947 username hashtadani3 135947 mac 135947 bytes_out 17851 135947 bytes_in 55103 135947 station_ip 113.203.123.6 135947 port 185 135947 unique_id port 135947 remote_ip 10.8.1.94 135948 username mosi 135948 kill_reason Another user logged on this global unique id 135948 mac 135948 bytes_out 0 135948 bytes_in 0 135948 station_ip 151.235.117.85 135948 port 275 135948 unique_id port 135949 username hashtadani3 135949 mac 135949 bytes_out 0 135949 bytes_in 0 135949 station_ip 113.203.123.6 135949 port 185 135949 unique_id port 135949 remote_ip 10.8.1.94 135951 username hashtadani3 135951 mac 135951 bytes_out 0 135951 bytes_in 0 135951 station_ip 113.203.123.6 135951 port 185 135951 unique_id port 135951 remote_ip 10.8.1.94 135954 username hashtadani3 135954 kill_reason Maximum check online fails reached 135954 mac 135954 bytes_out 0 135954 bytes_in 0 135954 station_ip 113.203.123.6 135954 port 300 135954 unique_id port 135959 username hashtadani3 135959 kill_reason Maximum number of concurrent logins reached 135959 mac 135959 bytes_out 0 135959 bytes_in 0 135959 station_ip 113.203.123.6 135959 port 309 135959 unique_id port 135963 username hamidsalari1 135963 mac 135963 bytes_out 600244 135963 bytes_in 1358033 135963 station_ip 113.203.24.157 135963 port 187 135963 unique_id port 135963 remote_ip 10.8.1.170 135966 username vanila 135966 mac 135966 bytes_out 0 135966 bytes_in 0 135966 station_ip 83.122.38.41 135966 port 289 135966 unique_id port 135966 remote_ip 10.8.0.178 135979 username amir 135979 kill_reason Another user logged on this global unique id 135979 mac 135979 bytes_out 0 135979 bytes_in 0 135979 station_ip 46.225.209.167 135979 port 308 135979 unique_id port 135979 remote_ip 10.8.0.50 135981 username sekonji3 135981 mac 135981 bytes_out 0 135981 bytes_in 0 135981 station_ip 83.123.250.182 135981 port 282 135981 unique_id port 135981 remote_ip 10.8.0.6 135983 username khademi 135983 kill_reason Another user logged on this global unique id 135983 mac 135983 bytes_out 0 135983 bytes_in 0 135983 station_ip 83.123.76.126 135983 port 286 135983 unique_id port 135984 username malekpoir 135984 mac 135984 bytes_out 407183 135984 bytes_in 3786392 135984 station_ip 5.120.161.204 135984 port 287 135984 unique_id port 135984 remote_ip 10.8.0.58 135986 username sekonji3 135986 mac 135986 bytes_out 98245 135986 bytes_in 616238 135986 station_ip 83.123.250.182 135986 port 282 135986 unique_id port 135986 remote_ip 10.8.0.6 135996 username khademi 135996 kill_reason Another user logged on this global unique id 135996 mac 135996 bytes_out 0 135996 bytes_in 0 135996 station_ip 83.123.76.126 135996 port 286 135996 unique_id port 136001 username jafari 136001 mac 136001 bytes_out 0 136001 bytes_in 0 136001 station_ip 5.134.190.96 136001 port 311 136001 unique_id port 136004 username askari 136004 kill_reason Relative expiration date has reached 136004 mac 136004 bytes_out 0 136004 bytes_in 0 136004 station_ip 5.119.121.176 136004 port 306 136004 unique_id port 136008 username mehdizare 135943 unique_id port 135943 terminate_cause User-Request 135943 bytes_out 15622626 135943 bytes_in 70277902 135943 station_ip 37.27.1.79 135943 port 15730522 135943 nas_port_type Virtual 135943 remote_ip 5.5.5.254 135944 username mosi 135944 kill_reason Another user logged on this global unique id 135944 mac 135944 bytes_out 0 135944 bytes_in 0 135944 station_ip 151.235.117.85 135944 port 275 135944 unique_id port 135953 username hashtadani3 135953 kill_reason Maximum check online fails reached 135953 mac 135953 bytes_out 0 135953 bytes_in 0 135953 station_ip 113.203.123.6 135953 port 307 135953 unique_id port 135955 username mohammadjavad 135955 mac 135955 bytes_out 0 135955 bytes_in 0 135955 station_ip 83.122.218.127 135955 port 306 135955 unique_id port 135955 remote_ip 10.8.0.142 135957 username hashtadani3 135957 mac 135957 bytes_out 0 135957 bytes_in 0 135957 station_ip 113.203.123.6 135957 port 309 135957 unique_id port 135957 remote_ip 10.8.0.154 135958 username barzegar 135958 mac 135958 bytes_out 0 135958 bytes_in 0 135958 station_ip 5.120.176.237 135958 port 308 135958 unique_id port 135958 remote_ip 10.8.0.234 135960 username hashtadani3 135960 kill_reason Maximum number of concurrent logins reached 135960 mac 135960 bytes_out 0 135960 bytes_in 0 135960 station_ip 113.203.123.6 135960 port 185 135960 unique_id port 135962 username hashtadani3 135962 mac 135962 bytes_out 0 135962 bytes_in 0 135962 station_ip 113.203.123.6 135962 port 306 135962 unique_id port 135962 remote_ip 10.8.0.154 135972 username farhad2 135972 mac 135972 bytes_out 0 135972 bytes_in 0 135972 station_ip 5.120.56.194 135972 port 287 135972 unique_id port 135972 remote_ip 10.8.0.190 135975 username barzegar 135975 mac 135975 bytes_out 0 135975 bytes_in 0 135975 station_ip 5.120.176.237 135975 port 287 135975 unique_id port 135975 remote_ip 10.8.0.234 135977 username khalili 135977 mac 135977 bytes_out 0 135977 bytes_in 0 135977 station_ip 5.120.30.61 135977 port 282 135977 unique_id port 135978 username jafari 135978 kill_reason Another user logged on this global unique id 135978 mac 135978 bytes_out 0 135978 bytes_in 0 135978 station_ip 5.134.190.96 135978 port 311 135978 unique_id port 135978 remote_ip 10.8.0.242 135982 username sabaghnezhad 135982 mac 135982 bytes_out 0 135982 bytes_in 0 135982 station_ip 83.122.237.38 135982 port 304 135982 unique_id port 135982 remote_ip 10.8.0.186 135985 username forozandeh1 135985 mac 135985 bytes_out 0 135985 bytes_in 0 135985 station_ip 113.203.113.214 135985 port 289 135985 unique_id port 135985 remote_ip 10.8.0.130 135989 username khademi 135989 kill_reason Another user logged on this global unique id 135989 mac 135989 bytes_out 0 135989 bytes_in 0 135989 station_ip 83.123.76.126 135989 port 286 135989 unique_id port 135992 username hamidsalari1 135992 mac 135992 bytes_out 30855 135992 bytes_in 37026 135992 station_ip 113.203.24.157 135992 port 187 135992 unique_id port 135992 remote_ip 10.8.1.170 135994 username vanila 135994 mac 135994 bytes_out 0 135994 bytes_in 0 135994 station_ip 83.122.67.73 135994 port 306 135994 unique_id port 135994 remote_ip 10.8.0.178 135995 username saeed9658 135995 mac 135995 bytes_out 2353446 135995 bytes_in 1294972 135995 station_ip 5.119.37.64 135995 port 186 135995 unique_id port 135995 remote_ip 10.8.1.210 135997 username jafari 135997 kill_reason Another user logged on this global unique id 135997 mac 135997 bytes_out 0 135997 bytes_in 0 135997 station_ip 5.134.190.96 135961 kill_reason Maximum check online fails reached 135961 mac 135961 bytes_out 0 135961 bytes_in 0 135961 station_ip 113.203.123.6 135961 port 296 135961 unique_id port 135964 username mosi 135964 kill_reason Another user logged on this global unique id 135964 mac 135964 bytes_out 0 135964 bytes_in 0 135964 station_ip 151.235.117.85 135964 port 275 135964 unique_id port 135965 username barzegar 135965 mac 135965 bytes_out 0 135965 bytes_in 0 135965 station_ip 5.120.176.237 135965 port 308 135965 unique_id port 135965 remote_ip 10.8.0.234 135967 username mehdizare 135967 mac 135967 bytes_out 0 135967 bytes_in 0 135967 station_ip 5.120.148.206 135967 port 287 135967 unique_id port 135967 remote_ip 10.8.0.90 135968 username barzegar 135968 mac 135968 bytes_out 0 135968 bytes_in 0 135968 station_ip 5.120.176.237 135968 port 306 135968 unique_id port 135968 remote_ip 10.8.0.234 135969 username alipour 135969 mac 135969 bytes_out 907437 135969 bytes_in 4598781 135969 station_ip 83.122.153.166 135969 port 188 135969 unique_id port 135969 remote_ip 10.8.1.50 135970 username farhad2 135970 mac 135970 bytes_out 0 135970 bytes_in 0 135970 station_ip 5.120.56.194 135970 port 309 135970 unique_id port 135970 remote_ip 10.8.0.190 135971 username barzegar 135971 mac 135971 bytes_out 5265 135971 bytes_in 13566 135971 station_ip 5.120.176.237 135971 port 187 135971 unique_id port 135971 remote_ip 10.8.1.174 135973 username vanila 135973 mac 135973 bytes_out 0 135973 bytes_in 0 135973 station_ip 83.122.38.41 135973 port 289 135973 unique_id port 135973 remote_ip 10.8.0.178 135974 username malekpoir 135974 mac 135974 bytes_out 0 135974 bytes_in 0 135974 station_ip 5.120.161.204 135974 port 303 135974 unique_id port 135974 remote_ip 10.8.0.58 135976 username vanila 135976 mac 135976 bytes_out 0 135976 bytes_in 0 135976 station_ip 83.122.38.41 135976 port 289 135976 unique_id port 135976 remote_ip 10.8.0.178 135980 username hosseine 135980 kill_reason Another user logged on this global unique id 135980 mac 135980 bytes_out 0 135980 bytes_in 0 135980 station_ip 37.129.24.42 135980 port 299 135980 unique_id port 135987 username barzegar 135987 mac 135987 bytes_out 2978766 135987 bytes_in 3321482 135987 station_ip 5.120.176.237 135987 port 187 135987 unique_id port 135987 remote_ip 10.8.1.174 135988 username mehdizare 135988 mac 135988 bytes_out 1245148 135988 bytes_in 20747983 135988 station_ip 5.120.148.206 135988 port 312 135988 unique_id port 135988 remote_ip 10.8.0.90 135990 username barzegar 135990 mac 135990 bytes_out 0 135990 bytes_in 0 135990 station_ip 5.120.176.237 135990 port 306 135990 unique_id port 135990 remote_ip 10.8.0.234 135991 username amir 135991 kill_reason Another user logged on this global unique id 135991 mac 135991 bytes_out 0 135991 bytes_in 0 135991 station_ip 46.225.209.167 135991 port 308 135991 unique_id port 135993 username forozandeh1 135993 mac 135993 bytes_out 0 135993 bytes_in 0 135993 station_ip 83.122.43.173 135993 port 289 135993 unique_id port 135993 remote_ip 10.8.0.130 136000 username mosi 136000 kill_reason Another user logged on this global unique id 136000 mac 136000 bytes_out 0 136000 bytes_in 0 136000 station_ip 151.235.117.85 136000 port 275 136000 unique_id port 136007 username hamidsalari 136007 mac 136007 bytes_out 0 136007 bytes_in 0 136007 station_ip 5.119.221.254 136007 port 293 136007 unique_id port 136007 remote_ip 10.8.0.222 136011 username barzegar 135997 port 311 135997 unique_id port 135998 username barzegar 135998 mac 135998 bytes_out 49533 135998 bytes_in 156583 135998 station_ip 5.120.176.237 135998 port 187 135998 unique_id port 135998 remote_ip 10.8.1.174 135999 username barzegar 135999 mac 135999 bytes_out 0 135999 bytes_in 0 135999 station_ip 5.120.176.237 135999 port 289 135999 unique_id port 135999 remote_ip 10.8.0.234 136002 username hamid.e 136002 unique_id port 136002 terminate_cause User-Request 136002 bytes_out 1501695 136002 bytes_in 12667612 136002 station_ip 37.27.1.79 136002 port 15730530 136002 nas_port_type Virtual 136002 remote_ip 5.5.5.255 136003 username mohammadjavad 136003 mac 136003 bytes_out 0 136003 bytes_in 0 136003 station_ip 83.122.114.162 136003 port 306 136003 unique_id port 136003 remote_ip 10.8.0.142 136005 username askari 136005 kill_reason Relative expiration date has reached 136005 mac 136005 bytes_out 0 136005 bytes_in 0 136005 station_ip 5.119.121.176 136005 port 306 136005 unique_id port 136006 username amir 136006 kill_reason Another user logged on this global unique id 136006 mac 136006 bytes_out 0 136006 bytes_in 0 136006 station_ip 46.225.209.167 136006 port 308 136006 unique_id port 136015 username barzegar 136015 mac 136015 bytes_out 0 136015 bytes_in 0 136015 station_ip 5.120.176.237 136015 port 311 136015 unique_id port 136015 remote_ip 10.8.0.234 136019 username alipour 136019 mac 136019 bytes_out 312517 136019 bytes_in 658579 136019 station_ip 83.122.153.166 136019 port 185 136019 unique_id port 136019 remote_ip 10.8.1.50 136024 username barzegar 136024 mac 136024 bytes_out 0 136024 bytes_in 0 136024 station_ip 5.120.176.237 136024 port 289 136024 unique_id port 136024 remote_ip 10.8.0.234 136027 username godarzi 136027 mac 136027 bytes_out 0 136027 bytes_in 0 136027 station_ip 5.202.62.33 136027 port 282 136027 unique_id port 136028 username zotaher 136028 kill_reason Another user logged on this global unique id 136028 mac 136028 bytes_out 0 136028 bytes_in 0 136028 station_ip 37.129.21.237 136028 port 310 136028 unique_id port 136031 username barzegar 136031 mac 136031 bytes_out 7991 136031 bytes_in 10929 136031 station_ip 5.120.176.237 136031 port 190 136031 unique_id port 136031 remote_ip 10.8.1.174 136036 username alihosseini1 136036 mac 136036 bytes_out 1327985 136036 bytes_in 13809788 136036 station_ip 5.119.56.63 136036 port 189 136036 unique_id port 136036 remote_ip 10.8.1.106 136038 username vanila 136038 mac 136038 bytes_out 0 136038 bytes_in 0 136038 station_ip 83.122.67.73 136038 port 282 136038 unique_id port 136038 remote_ip 10.8.0.178 136041 username aminvpn 136041 mac 136041 bytes_out 0 136041 bytes_in 0 136041 station_ip 83.123.197.19 136041 port 303 136041 unique_id port 136041 remote_ip 10.8.0.14 136042 username hamidsalari 136042 mac 136042 bytes_out 0 136042 bytes_in 0 136042 station_ip 5.119.93.119 136042 port 306 136042 unique_id port 136042 remote_ip 10.8.0.222 136045 username sabaghnezhad 136045 mac 136045 bytes_out 0 136045 bytes_in 0 136045 station_ip 83.123.0.147 136045 port 306 136045 unique_id port 136045 remote_ip 10.8.0.186 136047 username barzegar 136047 mac 136047 bytes_out 0 136047 bytes_in 0 136047 station_ip 5.120.176.237 136047 port 306 136047 unique_id port 136047 remote_ip 10.8.0.234 136055 username barzegar 136055 mac 136055 bytes_out 0 136055 bytes_in 0 136055 station_ip 5.120.176.237 136055 port 312 136008 mac 136008 bytes_out 0 136008 bytes_in 0 136008 station_ip 5.120.148.206 136008 port 304 136008 unique_id port 136008 remote_ip 10.8.0.90 136009 username vanila 136009 mac 136009 bytes_out 0 136009 bytes_in 0 136009 station_ip 83.122.67.73 136009 port 311 136009 unique_id port 136009 remote_ip 10.8.0.178 136010 username godarzi 136010 mac 136010 bytes_out 0 136010 bytes_in 0 136010 station_ip 5.202.62.33 136010 port 282 136010 unique_id port 136010 remote_ip 10.8.0.174 136012 username amir 136012 mac 136012 bytes_out 0 136012 bytes_in 0 136012 station_ip 46.225.209.167 136012 port 308 136012 unique_id port 136013 username barzegar 136013 mac 136013 bytes_out 0 136013 bytes_in 0 136013 station_ip 5.120.176.237 136013 port 188 136013 unique_id port 136013 remote_ip 10.8.1.174 136018 username zotaher 136018 kill_reason Another user logged on this global unique id 136018 mac 136018 bytes_out 0 136018 bytes_in 0 136018 station_ip 37.129.21.237 136018 port 310 136018 unique_id port 136018 remote_ip 10.8.0.194 136021 username barzegar 136021 mac 136021 bytes_out 0 136021 bytes_in 0 136021 station_ip 5.120.176.237 136021 port 289 136021 unique_id port 136021 remote_ip 10.8.0.234 136022 username amir 136022 mac 136022 bytes_out 0 136022 bytes_in 0 136022 station_ip 46.225.209.167 136022 port 293 136022 unique_id port 136022 remote_ip 10.8.0.50 136025 username vanila 136025 mac 136025 bytes_out 8987777 136025 bytes_in 1953167 136025 station_ip 83.122.67.73 136025 port 308 136025 unique_id port 136025 remote_ip 10.8.0.178 136029 username barzegar 136029 mac 136029 bytes_out 0 136029 bytes_in 0 136029 station_ip 5.120.176.237 136029 port 188 136029 unique_id port 136029 remote_ip 10.8.1.174 136030 username khalili 136030 kill_reason Another user logged on this global unique id 136030 mac 136030 bytes_out 0 136030 bytes_in 0 136030 station_ip 5.120.30.61 136030 port 304 136030 unique_id port 136030 remote_ip 10.8.0.86 136032 username godarzi 136032 mac 136032 bytes_out 0 136032 bytes_in 0 136032 station_ip 5.202.62.33 136032 port 293 136032 unique_id port 136032 remote_ip 10.8.0.174 136033 username vanila 136033 mac 136033 bytes_out 0 136033 bytes_in 0 136033 station_ip 83.122.67.73 136033 port 289 136033 unique_id port 136033 remote_ip 10.8.0.178 136035 username barzegar 136035 mac 136035 bytes_out 0 136035 bytes_in 0 136035 station_ip 5.120.176.237 136035 port 190 136035 unique_id port 136035 remote_ip 10.8.1.174 136040 username kordestani 136040 mac 136040 bytes_out 0 136040 bytes_in 0 136040 station_ip 151.235.106.188 136040 port 282 136040 unique_id port 136040 remote_ip 10.8.0.134 136046 username mosi 136046 kill_reason Another user logged on this global unique id 136046 mac 136046 bytes_out 0 136046 bytes_in 0 136046 station_ip 151.235.117.85 136046 port 275 136046 unique_id port 136050 username alipour 136050 mac 136050 bytes_out 24585 136050 bytes_in 29758 136050 station_ip 83.122.153.166 136050 port 185 136050 unique_id port 136050 remote_ip 10.8.1.50 136051 username hamidsalari1 136051 mac 136051 bytes_out 182706 136051 bytes_in 430595 136051 station_ip 113.203.24.157 136051 port 309 136051 unique_id port 136051 remote_ip 10.8.0.226 136053 username aminvpn 136053 mac 136053 bytes_out 0 136053 bytes_in 0 136053 station_ip 83.123.197.19 136053 port 312 136053 unique_id port 136053 remote_ip 10.8.0.14 136060 username mosi 136011 mac 136011 bytes_out 0 136011 bytes_in 0 136011 station_ip 5.120.176.237 136011 port 289 136011 unique_id port 136011 remote_ip 10.8.0.234 136014 username mohammadjavad 136014 mac 136014 bytes_out 0 136014 bytes_in 0 136014 station_ip 83.122.1.32 136014 port 289 136014 unique_id port 136014 remote_ip 10.8.0.142 136016 username shokokian 136016 unique_id port 136016 terminate_cause User-Request 136016 bytes_out 1139920 136016 bytes_in 42811926 136016 station_ip 151.238.230.13 136016 port 15730531 136016 nas_port_type Virtual 136016 remote_ip 5.5.5.4 136017 username godarzi 136017 kill_reason Another user logged on this global unique id 136017 mac 136017 bytes_out 0 136017 bytes_in 0 136017 station_ip 5.202.62.33 136017 port 282 136017 unique_id port 136017 remote_ip 10.8.0.174 136020 username askari 136020 kill_reason Relative expiration date has reached 136020 mac 136020 bytes_out 0 136020 bytes_in 0 136020 station_ip 5.119.121.176 136020 port 311 136020 unique_id port 136023 username barzegar 136023 mac 136023 bytes_out 237664 136023 bytes_in 2077485 136023 station_ip 5.120.176.237 136023 port 188 136023 unique_id port 136023 remote_ip 10.8.1.174 136026 username zotaher 136026 kill_reason Another user logged on this global unique id 136026 mac 136026 bytes_out 0 136026 bytes_in 0 136026 station_ip 37.129.21.237 136026 port 310 136026 unique_id port 136034 username kordestani 136034 mac 136034 bytes_out 0 136034 bytes_in 0 136034 station_ip 37.129.121.153 136034 port 282 136034 unique_id port 136034 remote_ip 10.8.0.134 136037 username hosseine 136037 kill_reason Another user logged on this global unique id 136037 mac 136037 bytes_out 0 136037 bytes_in 0 136037 station_ip 37.129.24.42 136037 port 299 136037 unique_id port 136039 username naeimeh 136039 mac 136039 bytes_out 3639911 136039 bytes_in 38102237 136039 station_ip 83.122.31.183 136039 port 187 136039 unique_id port 136039 remote_ip 10.8.1.206 136043 username barzegar 136043 mac 136043 bytes_out 11815 136043 bytes_in 60313 136043 station_ip 5.120.176.237 136043 port 190 136043 unique_id port 136043 remote_ip 10.8.1.174 136044 username sedighe 136044 mac 136044 bytes_out 0 136044 bytes_in 0 136044 station_ip 83.123.97.212 136044 port 308 136044 unique_id port 136044 remote_ip 10.8.0.146 136048 username alipour 136048 mac 136048 bytes_out 0 136048 bytes_in 0 136048 station_ip 83.122.153.166 136048 port 185 136048 unique_id port 136048 remote_ip 10.8.1.50 136049 username mosi 136049 kill_reason Another user logged on this global unique id 136049 mac 136049 bytes_out 0 136049 bytes_in 0 136049 station_ip 151.235.117.85 136049 port 275 136049 unique_id port 136052 username aminvpn 136052 mac 136052 bytes_out 949409 136052 bytes_in 1182535 136052 station_ip 83.123.197.19 136052 port 282 136052 unique_id port 136052 remote_ip 10.8.0.14 136054 username aminvpn 136054 mac 136054 bytes_out 0 136054 bytes_in 0 136054 station_ip 83.123.197.19 136054 port 282 136054 unique_id port 136054 remote_ip 10.8.0.14 136057 username aminvpn 136057 mac 136057 bytes_out 0 136057 bytes_in 0 136057 station_ip 83.123.197.19 136057 port 282 136057 unique_id port 136057 remote_ip 10.8.0.14 136062 username aminvpn 136062 mac 136062 bytes_out 0 136062 bytes_in 0 136062 station_ip 83.123.197.19 136062 port 313 136062 unique_id port 136062 remote_ip 10.8.0.14 136066 username asma2026 136066 mac 136066 bytes_out 0 136066 bytes_in 0 136066 station_ip 5.217.141.89 136066 port 313 136055 unique_id port 136055 remote_ip 10.8.0.234 136056 username aminvpn 136056 mac 136056 bytes_out 0 136056 bytes_in 0 136056 station_ip 83.123.197.19 136056 port 313 136056 unique_id port 136056 remote_ip 10.8.0.14 136058 username aminvpn 136058 mac 136058 bytes_out 0 136058 bytes_in 0 136058 station_ip 83.123.197.19 136058 port 312 136058 unique_id port 136058 remote_ip 10.8.0.14 136059 username aminvpn 136059 mac 136059 bytes_out 0 136059 bytes_in 0 136059 station_ip 83.123.197.19 136059 port 282 136059 unique_id port 136059 remote_ip 10.8.0.14 136065 username aminvpn 136065 mac 136065 bytes_out 0 136065 bytes_in 0 136065 station_ip 83.123.197.19 136065 port 313 136065 unique_id port 136065 remote_ip 10.8.0.14 136068 username houshang 136068 kill_reason Another user logged on this global unique id 136068 mac 136068 bytes_out 0 136068 bytes_in 0 136068 station_ip 5.120.16.242 136068 port 312 136068 unique_id port 136068 remote_ip 10.8.0.22 136072 username hamidsalari1 136072 mac 136072 bytes_out 0 136072 bytes_in 0 136072 station_ip 113.203.24.157 136072 port 306 136072 unique_id port 136072 remote_ip 10.8.0.226 136073 username barzegar 136073 mac 136073 bytes_out 0 136073 bytes_in 0 136073 station_ip 5.120.176.237 136073 port 306 136073 unique_id port 136073 remote_ip 10.8.0.234 136074 username asma2026 136074 mac 136074 bytes_out 0 136074 bytes_in 0 136074 station_ip 5.217.216.180 136074 port 306 136074 unique_id port 136074 remote_ip 10.8.0.170 136076 username alihosseini1 136076 mac 136076 bytes_out 188397 136076 bytes_in 1505458 136076 station_ip 5.119.158.128 136076 port 185 136076 unique_id port 136076 remote_ip 10.8.1.106 136080 username barzegar 136080 mac 136080 bytes_out 0 136080 bytes_in 0 136080 station_ip 5.120.176.237 136080 port 187 136080 unique_id port 136080 remote_ip 10.8.1.174 136084 username mehdizare 136084 mac 136084 bytes_out 122066 136084 bytes_in 180375 136084 station_ip 5.120.148.206 136084 port 186 136084 unique_id port 136084 remote_ip 10.8.1.42 136085 username amir 136085 kill_reason Another user logged on this global unique id 136085 mac 136085 bytes_out 0 136085 bytes_in 0 136085 station_ip 46.225.209.167 136085 port 293 136085 unique_id port 136085 remote_ip 10.8.0.50 136087 username asma2026 136087 mac 136087 bytes_out 0 136087 bytes_in 0 136087 station_ip 5.217.145.83 136087 port 289 136087 unique_id port 136087 remote_ip 10.8.0.170 136088 username mosi 136088 kill_reason Another user logged on this global unique id 136088 mac 136088 bytes_out 0 136088 bytes_in 0 136088 station_ip 151.235.117.85 136088 port 275 136088 unique_id port 136099 username zotaher 136099 kill_reason Another user logged on this global unique id 136099 mac 136099 bytes_out 0 136099 bytes_in 0 136099 station_ip 37.129.21.237 136099 port 310 136099 unique_id port 136100 username hamidsalari1 136100 mac 136100 bytes_out 0 136100 bytes_in 0 136100 station_ip 113.203.24.157 136100 port 186 136100 unique_id port 136100 remote_ip 10.8.1.170 136102 username godarzi 136102 mac 136102 bytes_out 0 136102 bytes_in 0 136102 station_ip 5.202.62.33 136102 port 282 136102 unique_id port 136102 remote_ip 10.8.0.174 136104 username vanila 136104 mac 136104 bytes_out 0 136104 bytes_in 0 136104 station_ip 83.122.54.89 136104 port 304 136104 unique_id port 136104 remote_ip 10.8.0.178 136106 username asma2026 136106 mac 136106 bytes_out 0 136106 bytes_in 0 136060 kill_reason Another user logged on this global unique id 136060 mac 136060 bytes_out 0 136060 bytes_in 0 136060 station_ip 151.235.117.85 136060 port 275 136060 unique_id port 136061 username barzegar 136061 mac 136061 bytes_out 0 136061 bytes_in 0 136061 station_ip 5.120.176.237 136061 port 282 136061 unique_id port 136061 remote_ip 10.8.0.234 136063 username aminvpn 136063 mac 136063 bytes_out 0 136063 bytes_in 0 136063 station_ip 83.123.197.19 136063 port 314 136063 unique_id port 136063 remote_ip 10.8.0.14 136064 username asma2026 136064 mac 136064 bytes_out 665151 136064 bytes_in 5942713 136064 station_ip 5.217.13.169 136064 port 187 136064 unique_id port 136064 remote_ip 10.8.1.122 136067 username aminvpn 136067 mac 136067 bytes_out 0 136067 bytes_in 0 136067 station_ip 83.123.197.19 136067 port 314 136067 unique_id port 136067 remote_ip 10.8.0.14 136071 username barzegar 136071 mac 136071 bytes_out 0 136071 bytes_in 0 136071 station_ip 5.120.176.237 136071 port 282 136071 unique_id port 136071 remote_ip 10.8.0.234 136075 username houshang 136075 mac 136075 bytes_out 0 136075 bytes_in 0 136075 station_ip 5.120.16.242 136075 port 312 136075 unique_id port 136077 username tahmasebi 136077 kill_reason Another user logged on this global unique id 136077 mac 136077 bytes_out 0 136077 bytes_in 0 136077 station_ip 5.120.2.33 136077 port 308 136077 unique_id port 136077 remote_ip 10.8.0.42 136079 username mosi 136079 kill_reason Another user logged on this global unique id 136079 mac 136079 bytes_out 0 136079 bytes_in 0 136079 station_ip 151.235.117.85 136079 port 275 136079 unique_id port 136083 username barzegar 136083 mac 136083 bytes_out 0 136083 bytes_in 0 136083 station_ip 5.120.176.237 136083 port 187 136083 unique_id port 136083 remote_ip 10.8.1.174 136091 username hamidsalari1 136091 mac 136091 bytes_out 0 136091 bytes_in 0 136091 station_ip 113.203.24.157 136091 port 282 136091 unique_id port 136091 remote_ip 10.8.0.226 136095 username mosi 136095 kill_reason Another user logged on this global unique id 136095 mac 136095 bytes_out 0 136095 bytes_in 0 136095 station_ip 151.235.117.85 136095 port 275 136095 unique_id port 136098 username hamidsalari1 136098 mac 136098 bytes_out 25465 136098 bytes_in 38649 136098 station_ip 113.203.24.157 136098 port 186 136098 unique_id port 136098 remote_ip 10.8.1.170 136101 username alihosseini1 136101 mac 136101 bytes_out 13714002 136101 bytes_in 1510714 136101 station_ip 5.119.158.128 136101 port 185 136101 unique_id port 136101 remote_ip 10.8.1.106 136103 username hamidsalari1 136103 mac 136103 bytes_out 0 136103 bytes_in 0 136103 station_ip 113.203.24.157 136103 port 186 136103 unique_id port 136103 remote_ip 10.8.1.170 136107 username barzegar 136107 mac 136107 bytes_out 0 136107 bytes_in 0 136107 station_ip 5.120.176.237 136107 port 306 136107 unique_id port 136107 remote_ip 10.8.0.234 136110 username alihosseini1 136110 mac 136110 bytes_out 0 136110 bytes_in 0 136110 station_ip 5.119.158.128 136110 port 282 136110 unique_id port 136110 remote_ip 10.8.0.166 136112 username mohammadjavad 136112 mac 136112 bytes_out 0 136112 bytes_in 0 136112 station_ip 113.203.31.114 136112 port 304 136112 unique_id port 136112 remote_ip 10.8.0.142 136113 username mostafa_es78 136113 unique_id port 136113 terminate_cause User-Request 136113 bytes_out 10739654 136113 bytes_in 256863941 136113 station_ip 109.125.174.62 136113 port 15730536 136113 nas_port_type Virtual 136066 unique_id port 136066 remote_ip 10.8.0.170 136069 username amin.saeedi 136069 unique_id port 136069 terminate_cause User-Request 136069 bytes_out 2587535 136069 bytes_in 98975647 136069 station_ip 5.120.49.49 136069 port 15730535 136069 nas_port_type Virtual 136069 remote_ip 5.5.5.255 136070 username aminvpn 136070 mac 136070 bytes_out 0 136070 bytes_in 0 136070 station_ip 83.123.197.19 136070 port 313 136070 unique_id port 136070 remote_ip 10.8.0.14 136078 username saeed9658 136078 mac 136078 bytes_out 0 136078 bytes_in 0 136078 station_ip 5.119.37.64 136078 port 188 136078 unique_id port 136078 remote_ip 10.8.1.210 136081 username khademi 136081 kill_reason Another user logged on this global unique id 136081 mac 136081 bytes_out 0 136081 bytes_in 0 136081 station_ip 83.123.76.126 136081 port 286 136081 unique_id port 136082 username khalili 136082 mac 136082 bytes_out 0 136082 bytes_in 0 136082 station_ip 5.120.30.61 136082 port 304 136082 unique_id port 136086 username kamali2 136086 mac 136086 bytes_out 2776237 136086 bytes_in 37013951 136086 station_ip 5.119.139.86 136086 port 289 136086 unique_id port 136086 remote_ip 10.8.0.214 136089 username barzegar 136089 mac 136089 bytes_out 0 136089 bytes_in 0 136089 station_ip 5.120.176.237 136089 port 186 136089 unique_id port 136089 remote_ip 10.8.1.174 136090 username asma2026 136090 mac 136090 bytes_out 0 136090 bytes_in 0 136090 station_ip 5.217.145.83 136090 port 186 136090 unique_id port 136090 remote_ip 10.8.1.122 136092 username barzegar 136092 kill_reason Maximum check online fails reached 136092 mac 136092 bytes_out 0 136092 bytes_in 0 136092 station_ip 5.120.176.237 136092 port 289 136092 unique_id port 136093 username sekonji3 136093 mac 136093 bytes_out 18087 136093 bytes_in 36221 136093 station_ip 83.123.250.182 136093 port 282 136093 unique_id port 136093 remote_ip 10.8.0.6 136094 username malekpoir 136094 kill_reason Another user logged on this global unique id 136094 mac 136094 bytes_out 0 136094 bytes_in 0 136094 station_ip 5.120.161.204 136094 port 287 136094 unique_id port 136094 remote_ip 10.8.0.58 136096 username asma2026 136096 mac 136096 bytes_out 0 136096 bytes_in 0 136096 station_ip 5.217.73.92 136096 port 186 136096 unique_id port 136096 remote_ip 10.8.1.122 136097 username forozandeh1 136097 mac 136097 bytes_out 0 136097 bytes_in 0 136097 station_ip 83.123.242.71 136097 port 304 136097 unique_id port 136097 remote_ip 10.8.0.130 136105 username alihosseini1 136105 mac 136105 bytes_out 0 136105 bytes_in 0 136105 station_ip 5.119.158.128 136105 port 185 136105 unique_id port 136105 remote_ip 10.8.1.106 136108 username vanila 136108 mac 136108 bytes_out 10145980 136108 bytes_in 3076681 136108 station_ip 83.122.54.89 136108 port 282 136108 unique_id port 136108 remote_ip 10.8.0.178 136115 username asma2026 136115 mac 136115 bytes_out 0 136115 bytes_in 0 136115 station_ip 5.217.186.147 136115 port 293 136115 unique_id port 136115 remote_ip 10.8.0.170 136118 username aminvpn 136118 unique_id port 136118 terminate_cause User-Request 136118 bytes_out 1048839 136118 bytes_in 4089387 136118 station_ip 5.233.49.34 136118 port 15730537 136118 nas_port_type Virtual 136118 remote_ip 5.5.5.255 136119 username sekonji3 136119 mac 136119 bytes_out 21158 136119 bytes_in 32863 136119 station_ip 83.123.250.182 136119 port 293 136119 unique_id port 136119 remote_ip 10.8.0.6 136120 username asma2026 136120 mac 136120 bytes_out 0 136106 station_ip 5.217.1.28 136106 port 306 136106 unique_id port 136106 remote_ip 10.8.0.170 136109 username godarzi 136109 mac 136109 bytes_out 234775 136109 bytes_in 108225 136109 station_ip 5.119.233.243 136109 port 306 136109 unique_id port 136109 remote_ip 10.8.0.174 136111 username amir 136111 mac 136111 bytes_out 0 136111 bytes_in 0 136111 station_ip 46.225.209.167 136111 port 293 136111 unique_id port 136122 username sekonji3 136122 mac 136122 bytes_out 0 136122 bytes_in 0 136122 station_ip 83.123.250.182 136122 port 313 136122 unique_id port 136122 remote_ip 10.8.0.6 136124 username sekonji3 136124 mac 136124 bytes_out 0 136124 bytes_in 0 136124 station_ip 83.123.250.182 136124 port 313 136124 unique_id port 136124 remote_ip 10.8.0.6 136125 username alihosseini1 136125 mac 136125 bytes_out 7919104 136125 bytes_in 1007192 136125 station_ip 5.119.158.128 136125 port 282 136125 unique_id port 136125 remote_ip 10.8.0.166 136126 username asma2026 136126 mac 136126 bytes_out 0 136126 bytes_in 0 136126 station_ip 5.217.115.238 136126 port 282 136126 unique_id port 136126 remote_ip 10.8.0.170 136131 username asma2026 136131 mac 136131 bytes_out 0 136131 bytes_in 0 136131 station_ip 5.217.115.238 136131 port 282 136131 unique_id port 136131 remote_ip 10.8.0.170 136135 username asma2026 136135 mac 136135 bytes_out 0 136135 bytes_in 0 136135 station_ip 5.217.115.238 136135 port 282 136135 unique_id port 136135 remote_ip 10.8.0.170 136136 username amir 136136 mac 136136 bytes_out 0 136136 bytes_in 0 136136 station_ip 46.225.209.167 136136 port 282 136136 unique_id port 136136 remote_ip 10.8.0.50 136137 username farhad2 136137 mac 136137 bytes_out 0 136137 bytes_in 0 136137 station_ip 5.120.177.48 136137 port 282 136137 unique_id port 136137 remote_ip 10.8.0.190 136139 username mahdiyehalizadeh 136139 mac 136139 bytes_out 0 136139 bytes_in 0 136139 station_ip 37.129.40.8 136139 port 299 136139 unique_id port 136139 remote_ip 10.8.0.82 136149 username barzegar 136149 mac 136149 bytes_out 0 136149 bytes_in 0 136149 station_ip 5.119.185.96 136149 port 299 136149 unique_id port 136149 remote_ip 10.8.0.234 136152 username asma2026 136152 mac 136152 bytes_out 0 136152 bytes_in 0 136152 station_ip 5.217.231.13 136152 port 282 136152 unique_id port 136152 remote_ip 10.8.0.170 136153 username farhad2 136153 mac 136153 bytes_out 0 136153 bytes_in 0 136153 station_ip 5.120.184.91 136153 port 282 136153 unique_id port 136153 remote_ip 10.8.0.190 136158 username sabaghnezhad 136158 mac 136158 bytes_out 0 136158 bytes_in 0 136158 station_ip 83.123.0.147 136158 port 309 136158 unique_id port 136158 remote_ip 10.8.0.186 136167 username sekonji3 136167 mac 136167 bytes_out 0 136167 bytes_in 0 136167 station_ip 83.122.26.83 136167 port 293 136167 unique_id port 136167 remote_ip 10.8.0.6 136169 username mohammadjavad 136169 mac 136169 bytes_out 26447 136169 bytes_in 48198 136169 station_ip 37.129.0.64 136169 port 187 136169 unique_id port 136169 remote_ip 10.8.1.146 136170 username barzegar 136170 mac 136170 bytes_out 0 136170 bytes_in 0 136170 station_ip 5.119.185.96 136170 port 187 136170 unique_id port 136170 remote_ip 10.8.1.174 136178 username zotaher 136178 mac 136178 bytes_out 0 136178 bytes_in 0 136178 station_ip 37.129.21.237 136178 port 310 136178 unique_id port 136180 username asma2026 136113 remote_ip 5.5.5.254 136114 username mehdizare 136114 mac 136114 bytes_out 31638 136114 bytes_in 46148 136114 station_ip 5.120.148.206 136114 port 187 136114 unique_id port 136114 remote_ip 10.8.1.42 136116 username zotaher 136116 kill_reason Another user logged on this global unique id 136116 mac 136116 bytes_out 0 136116 bytes_in 0 136116 station_ip 37.129.21.237 136116 port 310 136116 unique_id port 136117 username barzegar 136117 kill_reason Maximum check online fails reached 136117 mac 136117 bytes_out 0 136117 bytes_in 0 136117 station_ip 5.120.176.237 136117 port 306 136117 unique_id port 136121 username barzegar 136121 mac 136121 bytes_out 0 136121 bytes_in 0 136121 station_ip 5.120.176.237 136121 port 293 136121 unique_id port 136121 remote_ip 10.8.0.234 136127 username alihosseini1 136127 mac 136127 bytes_out 0 136127 bytes_in 0 136127 station_ip 5.119.158.128 136127 port 185 136127 unique_id port 136127 remote_ip 10.8.1.106 136129 username hosseine 136129 mac 136129 bytes_out 0 136129 bytes_in 0 136129 station_ip 37.129.24.42 136129 port 299 136129 unique_id port 136133 username yahodi 136133 mac 136133 bytes_out 2678414 136133 bytes_in 30932694 136133 station_ip 83.122.90.93 136133 port 312 136133 unique_id port 136133 remote_ip 10.8.0.202 136138 username asma2026 136138 mac 136138 bytes_out 13355 136138 bytes_in 39549 136138 station_ip 5.217.0.167 136138 port 293 136138 unique_id port 136138 remote_ip 10.8.0.170 136141 username alihosseini1 136141 mac 136141 bytes_out 40540 136141 bytes_in 52736 136141 station_ip 5.119.158.128 136141 port 293 136141 unique_id port 136141 remote_ip 10.8.0.166 136142 username barzegar 136142 mac 136142 bytes_out 0 136142 bytes_in 0 136142 station_ip 5.119.185.96 136142 port 282 136142 unique_id port 136142 remote_ip 10.8.0.234 136143 username asma2026 136143 mac 136143 bytes_out 0 136143 bytes_in 0 136143 station_ip 5.217.0.167 136143 port 282 136143 unique_id port 136143 remote_ip 10.8.0.170 136144 username farhad2 136144 mac 136144 bytes_out 218984 136144 bytes_in 1627425 136144 station_ip 5.120.177.48 136144 port 185 136144 unique_id port 136144 remote_ip 10.8.1.222 136145 username barzegar 136145 mac 136145 bytes_out 0 136145 bytes_in 0 136145 station_ip 5.119.185.96 136145 port 282 136145 unique_id port 136145 remote_ip 10.8.0.234 136146 username amir 136146 mac 136146 bytes_out 78130 136146 bytes_in 432169 136146 station_ip 46.225.209.167 136146 port 299 136146 unique_id port 136146 remote_ip 10.8.0.50 136148 username asma2026 136148 mac 136148 bytes_out 0 136148 bytes_in 0 136148 station_ip 5.217.199.63 136148 port 313 136148 unique_id port 136148 remote_ip 10.8.0.170 136150 username mehdizare 136150 kill_reason Another user logged on this global unique id 136150 mac 136150 bytes_out 0 136150 bytes_in 0 136150 station_ip 5.120.148.206 136150 port 304 136150 unique_id port 136150 remote_ip 10.8.0.90 136151 username farhad2 136151 mac 136151 bytes_out 804002 136151 bytes_in 7926041 136151 station_ip 5.120.184.91 136151 port 282 136151 unique_id port 136151 remote_ip 10.8.0.190 136154 username barzegar 136154 mac 136154 bytes_out 0 136154 bytes_in 0 136154 station_ip 5.119.185.96 136154 port 313 136154 unique_id port 136154 remote_ip 10.8.0.234 136159 username asma2026 136159 mac 136159 bytes_out 0 136159 bytes_in 0 136159 station_ip 5.217.163.58 136159 port 309 136159 unique_id port 136159 remote_ip 10.8.0.170 136120 bytes_in 0 136120 station_ip 5.217.43.126 136120 port 293 136120 unique_id port 136120 remote_ip 10.8.0.170 136123 username amir 136123 mac 136123 bytes_out 0 136123 bytes_in 0 136123 station_ip 46.225.209.167 136123 port 293 136123 unique_id port 136123 remote_ip 10.8.0.50 136128 username sekonji3 136128 mac 136128 bytes_out 2150 136128 bytes_in 4341 136128 station_ip 83.123.250.182 136128 port 313 136128 unique_id port 136128 remote_ip 10.8.0.6 136130 username godarzi 136130 mac 136130 bytes_out 57403 136130 bytes_in 261290 136130 station_ip 5.119.233.243 136130 port 293 136130 unique_id port 136130 remote_ip 10.8.0.174 136132 username alihosseini1 136132 mac 136132 bytes_out 0 136132 bytes_in 0 136132 station_ip 5.119.158.128 136132 port 282 136132 unique_id port 136132 remote_ip 10.8.0.166 136134 username asma2026 136134 mac 136134 bytes_out 0 136134 bytes_in 0 136134 station_ip 5.217.115.238 136134 port 282 136134 unique_id port 136134 remote_ip 10.8.0.170 136140 username asma2026 136140 mac 136140 bytes_out 0 136140 bytes_in 0 136140 station_ip 5.217.0.167 136140 port 282 136140 unique_id port 136140 remote_ip 10.8.0.170 136147 username barzegar 136147 mac 136147 bytes_out 0 136147 bytes_in 0 136147 station_ip 5.119.185.96 136147 port 299 136147 unique_id port 136147 remote_ip 10.8.0.234 136155 username farhad2 136155 mac 136155 bytes_out 0 136155 bytes_in 0 136155 station_ip 5.120.184.91 136155 port 282 136155 unique_id port 136155 remote_ip 10.8.0.190 136156 username morteza 136156 mac 136156 bytes_out 0 136156 bytes_in 0 136156 station_ip 83.122.67.121 136156 port 317 136156 unique_id port 136156 remote_ip 10.8.0.46 136157 username asma2026 136157 mac 136157 bytes_out 0 136157 bytes_in 0 136157 station_ip 5.217.163.58 136157 port 317 136157 unique_id port 136157 remote_ip 10.8.0.170 136160 username houshang 136160 kill_reason Another user logged on this global unique id 136160 mac 136160 bytes_out 0 136160 bytes_in 0 136160 station_ip 5.119.70.37 136160 port 299 136160 unique_id port 136160 remote_ip 10.8.0.22 136161 username amir 136161 mac 136161 bytes_out 0 136161 bytes_in 0 136161 station_ip 46.225.209.167 136161 port 318 136161 unique_id port 136161 remote_ip 10.8.0.50 136162 username barzegar 136162 mac 136162 bytes_out 0 136162 bytes_in 0 136162 station_ip 5.119.185.96 136162 port 313 136162 unique_id port 136162 remote_ip 10.8.0.234 136164 username barzegar 136164 mac 136164 bytes_out 0 136164 bytes_in 0 136164 station_ip 5.119.185.96 136164 port 309 136164 unique_id port 136164 remote_ip 10.8.0.234 136166 username mostafa_es78 136166 unique_id port 136166 terminate_cause Lost-Carrier 136166 bytes_out 3068486 136166 bytes_in 102765199 136166 station_ip 109.125.174.62 136166 port 15730541 136166 nas_port_type Virtual 136166 remote_ip 5.5.5.254 136172 username mohammadjavad 136172 mac 136172 bytes_out 0 136172 bytes_in 0 136172 station_ip 37.129.0.64 136172 port 293 136172 unique_id port 136172 remote_ip 10.8.0.142 136174 username khademi 136174 kill_reason Another user logged on this global unique id 136174 mac 136174 bytes_out 0 136174 bytes_in 0 136174 station_ip 83.123.76.126 136174 port 286 136174 unique_id port 136176 username barzegar 136176 mac 136176 bytes_out 0 136176 bytes_in 0 136176 station_ip 5.119.185.96 136176 port 187 136176 unique_id port 136176 remote_ip 10.8.1.174 136177 username alihosseini1 136177 mac 136163 username mansour 136163 mac 136163 bytes_out 0 136163 bytes_in 0 136163 station_ip 5.202.62.30 136163 port 293 136163 unique_id port 136163 remote_ip 10.8.0.30 136165 username khademi 136165 kill_reason Another user logged on this global unique id 136165 mac 136165 bytes_out 0 136165 bytes_in 0 136165 station_ip 83.123.76.126 136165 port 286 136165 unique_id port 136168 username houshang 136168 mac 136168 bytes_out 0 136168 bytes_in 0 136168 station_ip 5.119.70.37 136168 port 299 136168 unique_id port 136171 username asma2026 136171 mac 136171 bytes_out 0 136171 bytes_in 0 136171 station_ip 5.217.98.244 136171 port 187 136171 unique_id port 136171 remote_ip 10.8.1.122 136173 username forozandeh1 136173 mac 136173 bytes_out 0 136173 bytes_in 0 136173 station_ip 83.123.73.196 136173 port 315 136173 unique_id port 136173 remote_ip 10.8.0.130 136175 username amir 136175 mac 136175 bytes_out 0 136175 bytes_in 0 136175 station_ip 46.225.209.167 136175 port 293 136175 unique_id port 136175 remote_ip 10.8.0.50 136187 username alihosseini1 136187 mac 136187 bytes_out 0 136187 bytes_in 0 136187 station_ip 5.119.48.157 136187 port 293 136187 unique_id port 136187 remote_ip 10.8.0.166 136194 username morteza 136194 kill_reason Another user logged on this global unique id 136194 mac 136194 bytes_out 0 136194 bytes_in 0 136194 station_ip 83.122.17.13 136194 port 299 136194 unique_id port 136194 remote_ip 10.8.0.46 136198 username mohammadjavad 136198 mac 136198 bytes_out 0 136198 bytes_in 0 136198 station_ip 113.203.30.217 136198 port 313 136198 unique_id port 136198 remote_ip 10.8.0.142 136200 username barzegar 136200 mac 136200 bytes_out 0 136200 bytes_in 0 136200 station_ip 5.119.185.96 136200 port 310 136200 unique_id port 136200 remote_ip 10.8.0.234 136205 username morteza 136205 kill_reason Another user logged on this global unique id 136205 mac 136205 bytes_out 0 136205 bytes_in 0 136205 station_ip 83.122.17.13 136205 port 299 136205 unique_id port 136209 username yaghobi 136209 mac 136209 bytes_out 0 136209 bytes_in 0 136209 station_ip 83.123.128.66 136209 port 313 136209 unique_id port 136209 remote_ip 10.8.0.198 136213 username farhad2 136213 mac 136213 bytes_out 0 136213 bytes_in 0 136213 station_ip 5.120.184.91 136213 port 282 136213 unique_id port 136214 username barzegar 136214 mac 136214 bytes_out 0 136214 bytes_in 0 136214 station_ip 5.119.185.96 136214 port 185 136214 unique_id port 136214 remote_ip 10.8.1.174 136218 username hamid 136218 kill_reason Relative expiration date has reached 136218 mac 136218 bytes_out 0 136218 bytes_in 0 136218 station_ip 46.225.209.131 136218 port 310 136218 unique_id port 136231 username asma2026 136231 mac 136231 bytes_out 0 136231 bytes_in 0 136231 station_ip 5.217.44.32 136231 port 317 136231 unique_id port 136231 remote_ip 10.8.0.170 136233 username hamid 136233 kill_reason Relative expiration date has reached 136233 mac 136233 bytes_out 0 136233 bytes_in 0 136233 station_ip 46.225.209.131 136233 port 287 136233 unique_id port 136235 username khademi 136235 kill_reason Another user logged on this global unique id 136235 mac 136235 bytes_out 0 136235 bytes_in 0 136235 station_ip 83.123.76.126 136235 port 286 136235 unique_id port 136238 username asma2026 136238 mac 136238 bytes_out 0 136238 bytes_in 0 136238 station_ip 5.217.83.60 136238 port 293 136238 unique_id port 136238 remote_ip 10.8.0.170 136239 username mehrpouyan 136239 mac 136177 bytes_out 0 136177 bytes_in 0 136177 station_ip 5.119.48.157 136177 port 316 136177 unique_id port 136177 remote_ip 10.8.0.166 136179 username alihosseini1 136179 mac 136179 bytes_out 0 136179 bytes_in 0 136179 station_ip 5.119.48.157 136179 port 310 136179 unique_id port 136179 remote_ip 10.8.0.166 136182 username asma2026 136182 mac 136182 bytes_out 0 136182 bytes_in 0 136182 station_ip 5.217.199.224 136182 port 187 136182 unique_id port 136182 remote_ip 10.8.1.122 136184 username alihosseini1 136184 mac 136184 bytes_out 0 136184 bytes_in 0 136184 station_ip 5.119.48.157 136184 port 188 136184 unique_id port 136184 remote_ip 10.8.1.106 136190 username alihosseini1 136190 mac 136190 bytes_out 0 136190 bytes_in 0 136190 station_ip 5.119.48.157 136190 port 310 136190 unique_id port 136190 remote_ip 10.8.0.166 136192 username khademi 136192 kill_reason Another user logged on this global unique id 136192 mac 136192 bytes_out 0 136192 bytes_in 0 136192 station_ip 83.123.76.126 136192 port 286 136192 unique_id port 136193 username alihosseini1 136193 mac 136193 bytes_out 0 136193 bytes_in 0 136193 station_ip 5.119.48.157 136193 port 185 136193 unique_id port 136193 remote_ip 10.8.1.106 136196 username farhad2 136196 kill_reason Another user logged on this global unique id 136196 mac 136196 bytes_out 0 136196 bytes_in 0 136196 station_ip 5.120.184.91 136196 port 282 136196 unique_id port 136196 remote_ip 10.8.0.190 136197 username forozandeh1 136197 mac 136197 bytes_out 275529 136197 bytes_in 2105241 136197 station_ip 83.122.40.64 136197 port 310 136197 unique_id port 136197 remote_ip 10.8.0.130 136199 username alihosseini1 136199 mac 136199 bytes_out 0 136199 bytes_in 0 136199 station_ip 5.119.48.157 136199 port 185 136199 unique_id port 136199 remote_ip 10.8.1.106 136201 username malekpoir 136201 kill_reason Another user logged on this global unique id 136201 mac 136201 bytes_out 0 136201 bytes_in 0 136201 station_ip 5.120.161.204 136201 port 287 136201 unique_id port 136202 username sobhan 136202 unique_id port 136202 terminate_cause Lost-Carrier 136202 bytes_out 292220 136202 bytes_in 1760102 136202 station_ip 5.119.115.93 136202 port 15730542 136202 nas_port_type Virtual 136202 remote_ip 5.5.5.253 136203 username asma2026 136203 kill_reason Another user logged on this global unique id 136203 mac 136203 bytes_out 0 136203 bytes_in 0 136203 station_ip 5.217.199.224 136203 port 293 136203 unique_id port 136203 remote_ip 10.8.0.170 136204 username barzegar 136204 mac 136204 bytes_out 0 136204 bytes_in 0 136204 station_ip 5.119.185.96 136204 port 310 136204 unique_id port 136204 remote_ip 10.8.0.234 136207 username alihosseini1 136207 mac 136207 bytes_out 0 136207 bytes_in 0 136207 station_ip 5.119.48.157 136207 port 185 136207 unique_id port 136207 remote_ip 10.8.1.106 136208 username yaghobi 136208 mac 136208 bytes_out 767002 136208 bytes_in 14650962 136208 station_ip 46.225.209.131 136208 port 310 136208 unique_id port 136208 remote_ip 10.8.0.198 136211 username barzegar 136211 mac 136211 bytes_out 2945 136211 bytes_in 5225 136211 station_ip 5.119.185.96 136211 port 185 136211 unique_id port 136211 remote_ip 10.8.1.174 136212 username hamid 136212 kill_reason Relative expiration date has reached 136212 mac 136212 bytes_out 0 136212 bytes_in 0 136212 station_ip 46.225.209.131 136212 port 313 136212 unique_id port 136215 username sabaghnezhad 136215 mac 136215 bytes_out 255106 136215 bytes_in 1130513 136215 station_ip 83.123.0.147 136180 mac 136180 bytes_out 0 136180 bytes_in 0 136180 station_ip 5.217.199.224 136180 port 187 136180 unique_id port 136180 remote_ip 10.8.1.122 136181 username zotaher 136181 mac 136181 bytes_out 0 136181 bytes_in 0 136181 station_ip 37.129.21.237 136181 port 293 136181 unique_id port 136181 remote_ip 10.8.0.194 136183 username malekpoir 136183 kill_reason Another user logged on this global unique id 136183 mac 136183 bytes_out 0 136183 bytes_in 0 136183 station_ip 5.120.161.204 136183 port 287 136183 unique_id port 136185 username asma2026 136185 mac 136185 bytes_out 0 136185 bytes_in 0 136185 station_ip 5.217.199.224 136185 port 293 136185 unique_id port 136185 remote_ip 10.8.0.170 136186 username barzegar 136186 mac 136186 bytes_out 0 136186 bytes_in 0 136186 station_ip 5.119.185.96 136186 port 187 136186 unique_id port 136186 remote_ip 10.8.1.174 136188 username saeed9658 136188 mac 136188 bytes_out 0 136188 bytes_in 0 136188 station_ip 5.119.76.224 136188 port 185 136188 unique_id port 136188 remote_ip 10.8.1.210 136189 username alihosseini1 136189 mac 136189 bytes_out 0 136189 bytes_in 0 136189 station_ip 5.119.48.157 136189 port 293 136189 unique_id port 136189 remote_ip 10.8.0.166 136191 username asma2026 136191 mac 136191 bytes_out 0 136191 bytes_in 0 136191 station_ip 5.217.199.224 136191 port 293 136191 unique_id port 136191 remote_ip 10.8.0.170 136195 username asma2026 136195 mac 136195 bytes_out 0 136195 bytes_in 0 136195 station_ip 5.217.199.224 136195 port 293 136195 unique_id port 136195 remote_ip 10.8.0.170 136206 username yaghobi 136206 mac 136206 bytes_out 0 136206 bytes_in 0 136206 station_ip 46.225.209.131 136206 port 310 136206 unique_id port 136206 remote_ip 10.8.0.198 136210 username farhad2 136210 kill_reason Another user logged on this global unique id 136210 mac 136210 bytes_out 0 136210 bytes_in 0 136210 station_ip 5.120.184.91 136210 port 282 136210 unique_id port 136216 username yaghobi 136216 mac 136216 bytes_out 0 136216 bytes_in 0 136216 station_ip 83.123.128.66 136216 port 310 136216 unique_id port 136216 remote_ip 10.8.0.198 136219 username mehdizare 136219 mac 136219 bytes_out 0 136219 bytes_in 0 136219 station_ip 5.120.148.206 136219 port 304 136219 unique_id port 136221 username morteza 136221 kill_reason Another user logged on this global unique id 136221 mac 136221 bytes_out 0 136221 bytes_in 0 136221 station_ip 83.122.17.13 136221 port 299 136221 unique_id port 136222 username farhad2 136222 kill_reason Another user logged on this global unique id 136222 mac 136222 bytes_out 0 136222 bytes_in 0 136222 station_ip 5.120.184.91 136222 port 282 136222 unique_id port 136222 remote_ip 10.8.0.190 136225 username alihosseini1 136225 mac 136225 bytes_out 0 136225 bytes_in 0 136225 station_ip 5.119.48.157 136225 port 317 136225 unique_id port 136225 remote_ip 10.8.0.166 136226 username alihosseini1 136226 mac 136226 bytes_out 0 136226 bytes_in 0 136226 station_ip 5.119.48.157 136226 port 293 136226 unique_id port 136226 remote_ip 10.8.0.166 136228 username morteza 136228 kill_reason Another user logged on this global unique id 136228 mac 136228 bytes_out 0 136228 bytes_in 0 136228 station_ip 83.122.17.13 136228 port 299 136228 unique_id port 136230 username yaghobi 136230 mac 136230 bytes_out 439017 136230 bytes_in 837254 136230 station_ip 37.129.136.57 136230 port 287 136230 unique_id port 136230 remote_ip 10.8.0.198 136236 username mahdiyehalizadeh 136215 port 186 136215 unique_id port 136215 remote_ip 10.8.1.130 136217 username hamid 136217 kill_reason Relative expiration date has reached 136217 mac 136217 bytes_out 0 136217 bytes_in 0 136217 station_ip 46.225.209.131 136217 port 310 136217 unique_id port 136220 username alihosseini1 136220 mac 136220 bytes_out 0 136220 bytes_in 0 136220 station_ip 5.119.48.157 136220 port 185 136220 unique_id port 136220 remote_ip 10.8.1.106 136223 username malekpoir 136223 mac 136223 bytes_out 0 136223 bytes_in 0 136223 station_ip 5.120.161.204 136223 port 287 136223 unique_id port 136224 username asma2026 136224 mac 136224 bytes_out 0 136224 bytes_in 0 136224 station_ip 5.217.199.224 136224 port 293 136224 unique_id port 136227 username hamid 136227 kill_reason Relative expiration date has reached 136227 mac 136227 bytes_out 0 136227 bytes_in 0 136227 station_ip 46.225.209.131 136227 port 293 136227 unique_id port 136229 username godarzi 136229 kill_reason Another user logged on this global unique id 136229 mac 136229 bytes_out 0 136229 bytes_in 0 136229 station_ip 5.119.233.243 136229 port 312 136229 unique_id port 136229 remote_ip 10.8.0.174 136232 username hamid 136232 kill_reason Relative expiration date has reached 136232 mac 136232 bytes_out 0 136232 bytes_in 0 136232 station_ip 46.225.209.131 136232 port 287 136232 unique_id port 136234 username alihosseini1 136234 mac 136234 bytes_out 3591 136234 bytes_in 6101 136234 station_ip 5.119.48.157 136234 port 293 136234 unique_id port 136234 remote_ip 10.8.0.166 136240 username morteza 136240 mac 136240 bytes_out 0 136240 bytes_in 0 136240 station_ip 83.122.17.13 136240 port 186 136240 unique_id port 136240 remote_ip 10.8.1.62 136243 username mohammadjavad 136243 mac 136243 bytes_out 1539003 136243 bytes_in 26174862 136243 station_ip 37.129.254.44 136243 port 304 136243 unique_id port 136243 remote_ip 10.8.0.142 136246 username hamid 136246 kill_reason Relative expiration date has reached 136246 mac 136246 bytes_out 0 136246 bytes_in 0 136246 station_ip 46.225.209.131 136246 port 309 136246 unique_id port 136250 username hamid 136250 kill_reason Relative expiration date has reached 136250 mac 136250 bytes_out 0 136250 bytes_in 0 136250 station_ip 46.225.209.131 136250 port 299 136250 unique_id port 136252 username godarzi 136252 mac 136252 bytes_out 0 136252 bytes_in 0 136252 station_ip 5.119.233.243 136252 port 312 136252 unique_id port 136256 username godarzi 136256 mac 136256 bytes_out 31141 136256 bytes_in 47983 136256 station_ip 5.119.233.243 136256 port 309 136256 unique_id port 136256 remote_ip 10.8.0.174 136261 username houshang 136261 mac 136261 bytes_out 0 136261 bytes_in 0 136261 station_ip 5.119.70.37 136261 port 304 136261 unique_id port 136261 remote_ip 10.8.0.22 136262 username godarzi 136262 mac 136262 bytes_out 0 136262 bytes_in 0 136262 station_ip 5.119.233.243 136262 port 282 136262 unique_id port 136262 remote_ip 10.8.0.174 136265 username farhad2 136265 mac 136265 bytes_out 0 136265 bytes_in 0 136265 station_ip 5.120.184.91 136265 port 287 136265 unique_id port 136265 remote_ip 10.8.0.190 136266 username hamid.e 136266 unique_id port 136266 terminate_cause Lost-Carrier 136266 bytes_out 8460119 136266 bytes_in 193483674 136266 station_ip 37.27.1.79 136266 port 15730539 136266 nas_port_type Virtual 136266 remote_ip 5.5.5.101 136268 username houshang 136268 mac 136268 bytes_out 0 136268 bytes_in 0 136268 station_ip 5.119.70.37 136236 mac 136236 bytes_out 0 136236 bytes_in 0 136236 station_ip 37.129.40.8 136236 port 309 136236 unique_id port 136236 remote_ip 10.8.0.82 136237 username morteza 136237 mac 136237 bytes_out 0 136237 bytes_in 0 136237 station_ip 83.122.17.13 136237 port 299 136237 unique_id port 136241 username forozandeh1 136241 mac 136241 bytes_out 538331 136241 bytes_in 7077698 136241 station_ip 113.203.97.7 136241 port 316 136241 unique_id port 136241 remote_ip 10.8.0.130 136242 username yaghobi 136242 mac 136242 bytes_out 1457048 136242 bytes_in 36263030 136242 station_ip 37.129.136.57 136242 port 318 136242 unique_id port 136242 remote_ip 10.8.0.198 136244 username mosi 136244 kill_reason Another user logged on this global unique id 136244 mac 136244 bytes_out 0 136244 bytes_in 0 136244 station_ip 151.235.117.85 136244 port 275 136244 unique_id port 136245 username hamid 136245 kill_reason Relative expiration date has reached 136245 mac 136245 bytes_out 0 136245 bytes_in 0 136245 station_ip 46.225.209.131 136245 port 309 136245 unique_id port 136247 username hamid 136247 kill_reason Relative expiration date has reached 136247 mac 136247 bytes_out 0 136247 bytes_in 0 136247 station_ip 46.225.209.131 136247 port 309 136247 unique_id port 136249 username forozandeh1 136249 mac 136249 bytes_out 382174 136249 bytes_in 4529813 136249 station_ip 37.129.249.131 136249 port 299 136249 unique_id port 136249 remote_ip 10.8.0.130 136255 username hamid 136255 mac 136255 bytes_out 110666 136255 bytes_in 794376 136255 station_ip 83.122.96.193 136255 port 299 136255 unique_id port 136255 remote_ip 10.8.0.106 136257 username asma2026 136257 mac 136257 bytes_out 0 136257 bytes_in 0 136257 station_ip 5.217.26.244 136257 port 287 136257 unique_id port 136257 remote_ip 10.8.0.170 136259 username farhad2 136259 mac 136259 bytes_out 0 136259 bytes_in 0 136259 station_ip 5.120.184.91 136259 port 282 136259 unique_id port 136260 username mehdizare 136260 mac 136260 bytes_out 0 136260 bytes_in 0 136260 station_ip 5.120.148.206 136260 port 310 136260 unique_id port 136260 remote_ip 10.8.0.90 136263 username mahdiyehalizadeh 136263 mac 136263 bytes_out 0 136263 bytes_in 0 136263 station_ip 37.129.40.8 136263 port 312 136263 unique_id port 136263 remote_ip 10.8.0.82 136267 username hamid 136267 kill_reason Another user logged on this global unique id 136267 mac 136267 bytes_out 0 136267 bytes_in 0 136267 station_ip 83.122.96.193 136267 port 299 136267 unique_id port 136269 username hamid 136269 mac 136269 bytes_out 0 136269 bytes_in 0 136269 station_ip 83.122.96.193 136269 port 299 136269 unique_id port 136272 username mehdizare 136272 mac 136272 bytes_out 30425 136272 bytes_in 51043 136272 station_ip 5.120.148.206 136272 port 185 136272 unique_id port 136272 remote_ip 10.8.1.42 136273 username barzegar 136273 mac 136273 bytes_out 0 136273 bytes_in 0 136273 station_ip 5.119.185.96 136273 port 315 136273 unique_id port 136273 remote_ip 10.8.0.234 136275 username saeed9658 136275 mac 136275 bytes_out 0 136275 bytes_in 0 136275 station_ip 5.119.76.224 136275 port 187 136275 unique_id port 136275 remote_ip 10.8.1.210 136279 username kamali2 136279 mac 136279 bytes_out 0 136279 bytes_in 0 136279 station_ip 5.119.139.86 136279 port 309 136279 unique_id port 136279 remote_ip 10.8.0.214 136283 username mosi 136283 mac 136283 bytes_out 0 136283 bytes_in 0 136283 station_ip 151.235.117.85 136239 bytes_out 2244 136239 bytes_in 4216 136239 station_ip 5.119.144.147 136239 port 287 136239 unique_id port 136239 remote_ip 10.8.0.74 136248 username mehrpouyan 136248 mac 136248 bytes_out 723978 136248 bytes_in 4018448 136248 station_ip 5.120.97.241 136248 port 304 136248 unique_id port 136248 remote_ip 10.8.0.74 136251 username hamid 136251 kill_reason Relative expiration date has reached 136251 mac 136251 bytes_out 0 136251 bytes_in 0 136251 station_ip 83.122.96.193 136251 port 299 136251 unique_id port 136253 username morteza 136253 mac 136253 bytes_out 1545490 136253 bytes_in 30012651 136253 station_ip 83.122.17.13 136253 port 287 136253 unique_id port 136253 remote_ip 10.8.0.46 136254 username godarzi 136254 mac 136254 bytes_out 0 136254 bytes_in 0 136254 station_ip 5.119.233.243 136254 port 287 136254 unique_id port 136254 remote_ip 10.8.0.174 136258 username mahdiyehalizadeh 136258 mac 136258 bytes_out 0 136258 bytes_in 0 136258 station_ip 37.129.40.8 136258 port 185 136258 unique_id port 136258 remote_ip 10.8.1.110 136264 username hamid 136264 kill_reason Another user logged on this global unique id 136264 mac 136264 bytes_out 0 136264 bytes_in 0 136264 station_ip 83.122.96.193 136264 port 299 136264 unique_id port 136264 remote_ip 10.8.0.106 136270 username mosi 136270 kill_reason Another user logged on this global unique id 136270 mac 136270 bytes_out 0 136270 bytes_in 0 136270 station_ip 151.235.117.85 136270 port 275 136270 unique_id port 136278 username asma2026 136278 mac 136278 bytes_out 45972 136278 bytes_in 99343 136278 station_ip 5.217.168.198 136278 port 186 136278 unique_id port 136278 remote_ip 10.8.1.122 136281 username asma2026 136281 mac 136281 bytes_out 0 136281 bytes_in 0 136281 station_ip 5.217.168.198 136281 port 186 136281 unique_id port 136281 remote_ip 10.8.1.122 136284 username barzegar 136284 mac 136284 bytes_out 0 136284 bytes_in 0 136284 station_ip 5.119.185.96 136284 port 304 136284 unique_id port 136284 remote_ip 10.8.0.234 136286 username asma2026 136286 mac 136286 bytes_out 0 136286 bytes_in 0 136286 station_ip 5.217.168.198 136286 port 186 136286 unique_id port 136286 remote_ip 10.8.1.122 136288 username mehdizare 136288 mac 136288 bytes_out 60108 136288 bytes_in 142316 136288 station_ip 5.120.148.206 136288 port 185 136288 unique_id port 136288 remote_ip 10.8.1.42 136294 username asma2026 136294 mac 136294 bytes_out 0 136294 bytes_in 0 136294 station_ip 5.217.168.198 136294 port 186 136294 unique_id port 136294 remote_ip 10.8.1.122 136298 username alihosseini1 136298 mac 136298 bytes_out 3777 136298 bytes_in 6221 136298 station_ip 5.119.214.158 136298 port 275 136298 unique_id port 136298 remote_ip 10.8.0.166 136300 username godarzi 136300 mac 136300 bytes_out 447906 136300 bytes_in 5656811 136300 station_ip 5.119.233.243 136300 port 282 136300 unique_id port 136300 remote_ip 10.8.0.174 136308 username hamid.e 136308 kill_reason Maximum number of concurrent logins reached 136308 unique_id port 136308 bytes_out 0 136308 bytes_in 0 136308 station_ip 37.27.25.28 136308 port 15730547 136308 nas_port_type Virtual 136311 username mehdizare 136311 mac 136311 bytes_out 0 136311 bytes_in 0 136311 station_ip 5.120.148.206 136311 port 185 136311 unique_id port 136311 remote_ip 10.8.1.42 136312 username asma2026 136312 mac 136312 bytes_out 0 136312 bytes_in 0 136312 station_ip 5.217.37.204 136312 port 304 136312 unique_id port 136312 remote_ip 10.8.0.170 136268 port 304 136268 unique_id port 136268 remote_ip 10.8.0.22 136271 username asma2026 136271 mac 136271 bytes_out 742720 136271 bytes_in 801132 136271 station_ip 5.217.168.198 136271 port 186 136271 unique_id port 136271 remote_ip 10.8.1.122 136274 username godarzi 136274 mac 136274 bytes_out 0 136274 bytes_in 0 136274 station_ip 5.119.233.243 136274 port 282 136274 unique_id port 136274 remote_ip 10.8.0.174 136276 username barzegar 136276 mac 136276 bytes_out 0 136276 bytes_in 0 136276 station_ip 5.119.185.96 136276 port 282 136276 unique_id port 136276 remote_ip 10.8.0.234 136277 username mohammadjavad 136277 mac 136277 bytes_out 0 136277 bytes_in 0 136277 station_ip 83.122.78.118 136277 port 282 136277 unique_id port 136277 remote_ip 10.8.0.142 136280 username kamali2 136280 mac 136280 bytes_out 0 136280 bytes_in 0 136280 station_ip 5.119.139.86 136280 port 299 136280 unique_id port 136280 remote_ip 10.8.0.214 136282 username godarzi 136282 mac 136282 bytes_out 0 136282 bytes_in 0 136282 station_ip 5.119.233.243 136282 port 282 136282 unique_id port 136282 remote_ip 10.8.0.174 136285 username saeed9658 136285 mac 136285 bytes_out 2334520 136285 bytes_in 12752259 136285 station_ip 5.120.65.132 136285 port 188 136285 unique_id port 136285 remote_ip 10.8.1.210 136290 username yaghobi 136290 mac 136290 bytes_out 0 136290 bytes_in 0 136290 station_ip 83.122.124.42 136290 port 282 136290 unique_id port 136290 remote_ip 10.8.0.198 136292 username asma2026 136292 mac 136292 bytes_out 0 136292 bytes_in 0 136292 station_ip 5.217.168.198 136292 port 186 136292 unique_id port 136292 remote_ip 10.8.1.122 136295 username malekpoir 136295 mac 136295 bytes_out 0 136295 bytes_in 0 136295 station_ip 5.120.161.204 136295 port 293 136295 unique_id port 136295 remote_ip 10.8.0.58 136296 username farhad2 136296 mac 136296 bytes_out 0 136296 bytes_in 0 136296 station_ip 5.120.184.91 136296 port 287 136296 unique_id port 136297 username asma2026 136297 mac 136297 bytes_out 0 136297 bytes_in 0 136297 station_ip 5.217.90.128 136297 port 287 136297 unique_id port 136297 remote_ip 10.8.0.170 136302 username sekonji3 136302 mac 136302 bytes_out 0 136302 bytes_in 0 136302 station_ip 37.129.250.25 136302 port 282 136302 unique_id port 136302 remote_ip 10.8.0.6 136304 username asma2026 136304 mac 136304 bytes_out 0 136304 bytes_in 0 136304 station_ip 5.217.90.128 136304 port 293 136304 unique_id port 136304 remote_ip 10.8.0.170 136306 username hamid.e 136306 kill_reason Maximum number of concurrent logins reached 136306 unique_id port 136306 bytes_out 0 136306 bytes_in 0 136306 station_ip 37.27.25.28 136306 port 15730546 136306 nas_port_type Virtual 136307 username asma2026 136307 mac 136307 bytes_out 0 136307 bytes_in 0 136307 station_ip 5.217.90.128 136307 port 282 136307 unique_id port 136307 remote_ip 10.8.0.170 136313 username mehdizare 136313 kill_reason Maximum check online fails reached 136313 mac 136313 bytes_out 0 136313 bytes_in 0 136313 station_ip 5.120.148.206 136313 port 293 136313 unique_id port 136318 username hamid.e 136318 unique_id port 136318 terminate_cause Lost-Carrier 136318 bytes_out 4329884 136318 bytes_in 107010910 136318 station_ip 188.245.90.93 136318 port 15730544 136318 nas_port_type Virtual 136318 remote_ip 5.5.5.252 136321 username mehdizare 136321 mac 136321 bytes_out 0 136321 bytes_in 0 136321 station_ip 5.120.148.206 136321 port 185 136283 port 275 136283 unique_id port 136287 username mosi 136287 mac 136287 bytes_out 0 136287 bytes_in 0 136287 station_ip 37.153.180.178 136287 port 282 136287 unique_id port 136287 remote_ip 10.8.0.138 136289 username farhad2 136289 kill_reason Another user logged on this global unique id 136289 mac 136289 bytes_out 0 136289 bytes_in 0 136289 station_ip 5.120.184.91 136289 port 287 136289 unique_id port 136289 remote_ip 10.8.0.190 136291 username mohammadjavad 136291 mac 136291 bytes_out 0 136291 bytes_in 0 136291 station_ip 83.122.11.178 136291 port 275 136291 unique_id port 136291 remote_ip 10.8.0.142 136293 username alihosseini1 136293 mac 136293 bytes_out 145842 136293 bytes_in 721648 136293 station_ip 5.119.214.158 136293 port 310 136293 unique_id port 136293 remote_ip 10.8.0.166 136299 username barzegar 136299 mac 136299 bytes_out 0 136299 bytes_in 0 136299 station_ip 5.119.185.96 136299 port 293 136299 unique_id port 136299 remote_ip 10.8.0.234 136301 username alihosseini1 136301 mac 136301 bytes_out 0 136301 bytes_in 0 136301 station_ip 5.119.214.158 136301 port 275 136301 unique_id port 136301 remote_ip 10.8.0.166 136303 username alipour 136303 mac 136303 bytes_out 0 136303 bytes_in 0 136303 station_ip 83.122.153.166 136303 port 311 136303 unique_id port 136303 remote_ip 10.8.0.102 136305 username houshang 136305 mac 136305 bytes_out 0 136305 bytes_in 0 136305 station_ip 5.119.70.37 136305 port 282 136305 unique_id port 136305 remote_ip 10.8.0.22 136309 username mostafa_es78 136309 unique_id port 136309 terminate_cause User-Request 136309 bytes_out 82742 136309 bytes_in 367175 136309 station_ip 5.120.15.193 136309 port 15730545 136309 nas_port_type Virtual 136309 remote_ip 5.5.5.250 136310 username hosseine 136310 mac 136310 bytes_out 3029692 136310 bytes_in 18387894 136310 station_ip 37.129.51.214 136310 port 313 136310 unique_id port 136310 remote_ip 10.8.0.238 136314 username barzegar 136314 mac 136314 bytes_out 0 136314 bytes_in 0 136314 station_ip 5.119.185.96 136314 port 304 136314 unique_id port 136314 remote_ip 10.8.0.234 136315 username barzegar 136315 mac 136315 bytes_out 0 136315 bytes_in 0 136315 station_ip 5.119.185.96 136315 port 304 136315 unique_id port 136315 remote_ip 10.8.0.234 136319 username barzegar 136319 mac 136319 bytes_out 0 136319 bytes_in 0 136319 station_ip 5.119.185.96 136319 port 287 136319 unique_id port 136319 remote_ip 10.8.0.234 136322 username aminvpn 136322 mac 136322 bytes_out 0 136322 bytes_in 0 136322 station_ip 83.123.197.19 136322 port 314 136322 unique_id port 136322 remote_ip 10.8.0.14 136325 username alihosseini1 136325 mac 136325 bytes_out 0 136325 bytes_in 0 136325 station_ip 5.119.214.158 136325 port 303 136325 unique_id port 136325 remote_ip 10.8.0.166 136328 username barzegar 136328 mac 136328 bytes_out 0 136328 bytes_in 0 136328 station_ip 5.119.185.96 136328 port 308 136328 unique_id port 136328 remote_ip 10.8.0.234 136331 username mahdiyehalizadeh 136331 mac 136331 bytes_out 364646 136331 bytes_in 6660194 136331 station_ip 83.122.214.120 136331 port 310 136331 unique_id port 136331 remote_ip 10.8.0.82 136341 username barzegar 136341 mac 136341 bytes_out 0 136341 bytes_in 0 136341 station_ip 5.119.185.96 136341 port 310 136341 unique_id port 136341 remote_ip 10.8.0.234 136343 username farhad2 136343 kill_reason Another user logged on this global unique id 136343 mac 136343 bytes_out 0 136343 bytes_in 0 136316 username godarzi 136316 mac 136316 bytes_out 0 136316 bytes_in 0 136316 station_ip 5.119.233.243 136316 port 287 136316 unique_id port 136316 remote_ip 10.8.0.174 136317 username asma2026 136317 mac 136317 bytes_out 0 136317 bytes_in 0 136317 station_ip 5.217.37.204 136317 port 187 136317 unique_id port 136317 remote_ip 10.8.1.122 136320 username alihosseini1 136320 mac 136320 bytes_out 24319 136320 bytes_in 57443 136320 station_ip 5.119.214.158 136320 port 186 136320 unique_id port 136320 remote_ip 10.8.1.106 136324 username hamidsalari 136324 mac 136324 bytes_out 1608385 136324 bytes_in 11845232 136324 station_ip 5.119.93.119 136324 port 303 136324 unique_id port 136324 remote_ip 10.8.0.222 136326 username asma2026 136326 mac 136326 bytes_out 0 136326 bytes_in 0 136326 station_ip 5.217.255.214 136326 port 310 136326 unique_id port 136326 remote_ip 10.8.0.170 136330 username moradi 136330 kill_reason Another user logged on this global unique id 136330 mac 136330 bytes_out 0 136330 bytes_in 0 136330 station_ip 5.202.8.177 136330 port 309 136330 unique_id port 136330 remote_ip 10.8.0.250 136333 username barzegar 136333 mac 136333 bytes_out 0 136333 bytes_in 0 136333 station_ip 5.119.185.96 136333 port 304 136333 unique_id port 136333 remote_ip 10.8.0.234 136335 username forozandeh1 136335 mac 136335 bytes_out 0 136335 bytes_in 0 136335 station_ip 37.129.184.192 136335 port 304 136335 unique_id port 136335 remote_ip 10.8.0.130 136337 username asma2026 136337 mac 136337 bytes_out 59567 136337 bytes_in 444520 136337 station_ip 5.217.255.214 136337 port 309 136337 unique_id port 136337 remote_ip 10.8.0.170 136339 username asma2026 136339 mac 136339 bytes_out 0 136339 bytes_in 0 136339 station_ip 5.217.93.85 136339 port 311 136339 unique_id port 136339 remote_ip 10.8.0.170 136346 username barzegar 136346 mac 136346 bytes_out 0 136346 bytes_in 0 136346 station_ip 5.119.185.96 136346 port 312 136346 unique_id port 136346 remote_ip 10.8.0.234 136347 username hashtadani3 136347 mac 136347 bytes_out 0 136347 bytes_in 0 136347 station_ip 113.203.28.82 136347 port 313 136347 unique_id port 136347 remote_ip 10.8.0.154 136348 username barzegar 136348 mac 136348 bytes_out 0 136348 bytes_in 0 136348 station_ip 5.119.185.96 136348 port 313 136348 unique_id port 136348 remote_ip 10.8.0.234 136350 username hashtadani3 136350 mac 136350 bytes_out 0 136350 bytes_in 0 136350 station_ip 113.203.28.82 136350 port 313 136350 unique_id port 136350 remote_ip 10.8.0.154 136353 username mehdizare 136353 mac 136353 bytes_out 0 136353 bytes_in 0 136353 station_ip 5.120.148.206 136353 port 308 136353 unique_id port 136353 remote_ip 10.8.0.90 136357 username mosi 136357 kill_reason Another user logged on this global unique id 136357 mac 136357 bytes_out 0 136357 bytes_in 0 136357 station_ip 151.235.75.185 136357 port 299 136357 unique_id port 136357 remote_ip 10.8.0.138 136358 username alihosseini1 136358 mac 136358 bytes_out 0 136358 bytes_in 0 136358 station_ip 5.119.214.158 136358 port 187 136358 unique_id port 136358 remote_ip 10.8.1.106 136360 username barzegar 136360 mac 136360 bytes_out 0 136360 bytes_in 0 136360 station_ip 5.119.185.96 136360 port 303 136360 unique_id port 136360 remote_ip 10.8.0.234 136361 username farhad2 136361 mac 136361 bytes_out 0 136361 bytes_in 0 136361 station_ip 5.120.112.143 136361 port 304 136361 unique_id port 136321 unique_id port 136321 remote_ip 10.8.1.42 136323 username mahdiyehalizadeh 136323 mac 136323 bytes_out 300354 136323 bytes_in 3695318 136323 station_ip 83.122.214.120 136323 port 287 136323 unique_id port 136323 remote_ip 10.8.0.82 136327 username tahmasebi 136327 mac 136327 bytes_out 0 136327 bytes_in 0 136327 station_ip 5.120.2.33 136327 port 308 136327 unique_id port 136329 username mehdizare 136329 mac 136329 bytes_out 26360 136329 bytes_in 34807 136329 station_ip 5.120.148.206 136329 port 186 136329 unique_id port 136329 remote_ip 10.8.1.42 136332 username godarzi 136332 mac 136332 bytes_out 140158 136332 bytes_in 155739 136332 station_ip 5.119.233.243 136332 port 304 136332 unique_id port 136332 remote_ip 10.8.0.174 136334 username moradi 136334 mac 136334 bytes_out 0 136334 bytes_in 0 136334 station_ip 5.202.8.177 136334 port 309 136334 unique_id port 136336 username asma2026 136336 mac 136336 bytes_out 0 136336 bytes_in 0 136336 station_ip 5.217.255.214 136336 port 310 136336 unique_id port 136336 remote_ip 10.8.0.170 136338 username barzegar 136338 mac 136338 bytes_out 0 136338 bytes_in 0 136338 station_ip 5.119.185.96 136338 port 311 136338 unique_id port 136338 remote_ip 10.8.0.234 136340 username godarzi 136340 mac 136340 bytes_out 535286 136340 bytes_in 7801426 136340 station_ip 5.119.233.243 136340 port 310 136340 unique_id port 136340 remote_ip 10.8.0.174 136342 username hashtadani3 136342 mac 136342 bytes_out 1015822 136342 bytes_in 14489927 136342 station_ip 113.203.28.82 136342 port 312 136342 unique_id port 136342 remote_ip 10.8.0.154 136344 username hashtadani3 136344 mac 136344 bytes_out 0 136344 bytes_in 0 136344 station_ip 113.203.28.82 136344 port 312 136344 unique_id port 136344 remote_ip 10.8.0.154 136354 username hashtadani3 136354 mac 136354 bytes_out 0 136354 bytes_in 0 136354 station_ip 113.203.28.82 136354 port 313 136354 unique_id port 136354 remote_ip 10.8.0.154 136359 username farhad2 136359 kill_reason Another user logged on this global unique id 136359 mac 136359 bytes_out 0 136359 bytes_in 0 136359 station_ip 5.120.112.143 136359 port 304 136359 unique_id port 136363 username alihosseini1 136363 mac 136363 bytes_out 0 136363 bytes_in 0 136363 station_ip 5.119.214.158 136363 port 187 136363 unique_id port 136363 remote_ip 10.8.1.106 136364 username mostafa_es78 136364 unique_id port 136364 terminate_cause User-Request 136364 bytes_out 516928 136364 bytes_in 2260927 136364 station_ip 5.120.105.70 136364 port 15730548 136364 nas_port_type Virtual 136364 remote_ip 5.5.5.252 136365 username alihosseini1 136365 mac 136365 bytes_out 0 136365 bytes_in 0 136365 station_ip 5.119.214.158 136365 port 187 136365 unique_id port 136365 remote_ip 10.8.1.106 136366 username alihosseini1 136366 mac 136366 bytes_out 0 136366 bytes_in 0 136366 station_ip 5.119.214.158 136366 port 187 136366 unique_id port 136366 remote_ip 10.8.1.106 136367 username yaghobi 136367 kill_reason Another user logged on this global unique id 136367 mac 136367 bytes_out 0 136367 bytes_in 0 136367 station_ip 37.129.237.117 136367 port 309 136367 unique_id port 136367 remote_ip 10.8.0.198 136373 username hashtadani3 136373 mac 136373 bytes_out 0 136373 bytes_in 0 136373 station_ip 113.203.28.82 136373 port 316 136373 unique_id port 136373 remote_ip 10.8.0.154 136376 username farhad2 136376 mac 136376 bytes_out 0 136376 bytes_in 0 136376 station_ip 5.120.112.143 136376 port 311 136343 station_ip 5.120.112.143 136343 port 304 136343 unique_id port 136343 remote_ip 10.8.0.190 136345 username hashtadani3 136345 kill_reason Maximum check online fails reached 136345 mac 136345 bytes_out 0 136345 bytes_in 0 136345 station_ip 113.203.28.82 136345 port 310 136345 unique_id port 136349 username asma2026 136349 mac 136349 bytes_out 0 136349 bytes_in 0 136349 station_ip 5.217.31.11 136349 port 313 136349 unique_id port 136349 remote_ip 10.8.0.170 136351 username houshang 136351 mac 136351 bytes_out 39088 136351 bytes_in 65980 136351 station_ip 5.119.70.37 136351 port 312 136351 unique_id port 136351 remote_ip 10.8.0.22 136352 username forozandeh1 136352 mac 136352 bytes_out 0 136352 bytes_in 0 136352 station_ip 37.129.19.245 136352 port 309 136352 unique_id port 136352 remote_ip 10.8.0.130 136355 username alihosseini1 136355 mac 136355 bytes_out 3953499 136355 bytes_in 444623 136355 station_ip 5.119.214.158 136355 port 303 136355 unique_id port 136355 remote_ip 10.8.0.166 136356 username hashtadani3 136356 kill_reason Maximum check online fails reached 136356 mac 136356 bytes_out 0 136356 bytes_in 0 136356 station_ip 113.203.28.82 136356 port 313 136356 unique_id port 136362 username alihosseini1 136362 mac 136362 bytes_out 0 136362 bytes_in 0 136362 station_ip 5.119.214.158 136362 port 187 136362 unique_id port 136362 remote_ip 10.8.1.106 136371 username mehdizare 136371 mac 136371 bytes_out 1664 136371 bytes_in 5301 136371 station_ip 5.120.148.206 136371 port 303 136371 unique_id port 136371 remote_ip 10.8.0.90 136374 username godarzi 136374 mac 136374 bytes_out 0 136374 bytes_in 0 136374 station_ip 5.119.233.243 136374 port 311 136374 unique_id port 136374 remote_ip 10.8.0.174 136377 username mohammadjavad 136377 mac 136377 bytes_out 62588 136377 bytes_in 91334 136377 station_ip 113.203.116.107 136377 port 303 136377 unique_id port 136377 remote_ip 10.8.0.142 136378 username hashtadani3 136378 mac 136378 bytes_out 0 136378 bytes_in 0 136378 station_ip 113.203.28.82 136378 port 186 136378 unique_id port 136378 remote_ip 10.8.1.94 136383 username mosi 136383 kill_reason Another user logged on this global unique id 136383 mac 136383 bytes_out 0 136383 bytes_in 0 136383 station_ip 151.235.75.185 136383 port 299 136383 unique_id port 136387 username barzegar 136387 mac 136387 bytes_out 2528 136387 bytes_in 4861 136387 station_ip 5.119.185.96 136387 port 309 136387 unique_id port 136387 remote_ip 10.8.0.234 136389 username hashtadani3 136389 mac 136389 bytes_out 0 136389 bytes_in 0 136389 station_ip 113.203.28.82 136389 port 309 136389 unique_id port 136389 remote_ip 10.8.0.154 136392 username barzegar 136392 mac 136392 bytes_out 0 136392 bytes_in 0 136392 station_ip 5.119.185.96 136392 port 190 136392 unique_id port 136392 remote_ip 10.8.1.174 136393 username mosi 136393 kill_reason Another user logged on this global unique id 136393 mac 136393 bytes_out 0 136393 bytes_in 0 136393 station_ip 151.235.75.185 136393 port 299 136393 unique_id port 136397 username hashtadani3 136397 mac 136397 bytes_out 0 136397 bytes_in 0 136397 station_ip 113.203.28.82 136397 port 314 136397 unique_id port 136397 remote_ip 10.8.0.154 136400 username yaghobi 136400 mac 136400 bytes_out 436320 136400 bytes_in 1709824 136400 station_ip 37.129.237.117 136400 port 304 136400 unique_id port 136400 remote_ip 10.8.0.198 136402 username barzegar 136402 mac 136402 bytes_out 0 136402 bytes_in 0 136368 username mehdizare 136368 mac 136368 bytes_out 71195 136368 bytes_in 204384 136368 station_ip 5.120.148.206 136368 port 312 136368 unique_id port 136368 remote_ip 10.8.0.90 136369 username hashtadani3 136369 mac 136369 bytes_out 0 136369 bytes_in 0 136369 station_ip 113.203.28.82 136369 port 186 136369 unique_id port 136369 remote_ip 10.8.1.94 136370 username hashtadani3 136370 mac 136370 bytes_out 0 136370 bytes_in 0 136370 station_ip 113.203.28.82 136370 port 186 136370 unique_id port 136370 remote_ip 10.8.1.94 136372 username barzegar 136372 mac 136372 bytes_out 0 136372 bytes_in 0 136372 station_ip 5.119.185.96 136372 port 314 136372 unique_id port 136372 remote_ip 10.8.0.234 136375 username farhad2 136375 mac 136375 bytes_out 520738 136375 bytes_in 1226098 136375 station_ip 5.120.112.143 136375 port 312 136375 unique_id port 136375 remote_ip 10.8.0.190 136379 username hashtadani3 136379 mac 136379 bytes_out 0 136379 bytes_in 0 136379 station_ip 113.203.28.82 136379 port 186 136379 unique_id port 136379 remote_ip 10.8.1.94 136380 username hashtadani3 136380 kill_reason Maximum number of concurrent logins reached 136380 mac 136380 bytes_out 0 136380 bytes_in 0 136380 station_ip 113.203.28.82 136380 port 312 136380 unique_id port 136382 username hashtadani3 136382 kill_reason Maximum check online fails reached 136382 mac 136382 bytes_out 0 136382 bytes_in 0 136382 station_ip 113.203.28.82 136382 port 303 136382 unique_id port 136384 username yaghobi 136384 mac 136384 bytes_out 0 136384 bytes_in 0 136384 station_ip 37.129.237.117 136384 port 309 136384 unique_id port 136388 username hashtadani3 136388 mac 136388 bytes_out 2164 136388 bytes_in 4441 136388 station_ip 113.203.28.82 136388 port 312 136388 unique_id port 136388 remote_ip 10.8.0.154 136390 username asma2026 136390 mac 136390 bytes_out 694848 136390 bytes_in 5125141 136390 station_ip 5.217.31.11 136390 port 308 136390 unique_id port 136390 remote_ip 10.8.0.170 136394 username hashtadani3 136394 mac 136394 bytes_out 0 136394 bytes_in 0 136394 station_ip 113.203.28.82 136394 port 314 136394 unique_id port 136394 remote_ip 10.8.0.154 136395 username barzegar 136395 mac 136395 bytes_out 0 136395 bytes_in 0 136395 station_ip 5.119.185.96 136395 port 186 136395 unique_id port 136395 remote_ip 10.8.1.174 136396 username kordestani 136396 mac 136396 bytes_out 0 136396 bytes_in 0 136396 station_ip 151.235.122.34 136396 port 309 136396 unique_id port 136396 remote_ip 10.8.0.134 136398 username hashtadani3 136398 mac 136398 bytes_out 0 136398 bytes_in 0 136398 station_ip 113.203.28.82 136398 port 314 136398 unique_id port 136398 remote_ip 10.8.0.154 136401 username asma2026 136401 mac 136401 bytes_out 411549 136401 bytes_in 5903719 136401 station_ip 5.217.31.11 136401 port 312 136401 unique_id port 136401 remote_ip 10.8.0.170 136403 username saeed9658 136403 mac 136403 bytes_out 0 136403 bytes_in 0 136403 station_ip 5.120.65.132 136403 port 188 136403 unique_id port 136403 remote_ip 10.8.1.210 136407 username yaghobi 136407 mac 136407 bytes_out 33937 136407 bytes_in 113450 136407 station_ip 83.123.103.228 136407 port 304 136407 unique_id port 136407 remote_ip 10.8.0.198 136411 username malekpoir 136411 mac 136411 bytes_out 3527568 136411 bytes_in 42011898 136411 station_ip 5.119.123.141 136411 port 275 136411 unique_id port 136411 remote_ip 10.8.0.58 136413 username hamidsalari 136413 mac 136376 unique_id port 136376 remote_ip 10.8.0.190 136381 username sekonji3 136381 mac 136381 bytes_out 285223 136381 bytes_in 4967038 136381 station_ip 37.129.181.17 136381 port 304 136381 unique_id port 136381 remote_ip 10.8.0.6 136385 username hashtadani3 136385 mac 136385 bytes_out 0 136385 bytes_in 0 136385 station_ip 113.203.28.82 136385 port 190 136385 unique_id port 136385 remote_ip 10.8.1.94 136386 username hashtadani3 136386 kill_reason Maximum check online fails reached 136386 mac 136386 bytes_out 0 136386 bytes_in 0 136386 station_ip 113.203.28.82 136386 port 311 136386 unique_id port 136391 username godarzi 136391 mac 136391 bytes_out 163015 136391 bytes_in 1473983 136391 station_ip 5.119.233.243 136391 port 186 136391 unique_id port 136391 remote_ip 10.8.1.230 136399 username barzegar 136399 mac 136399 bytes_out 0 136399 bytes_in 0 136399 station_ip 5.119.185.96 136399 port 309 136399 unique_id port 136399 remote_ip 10.8.0.234 136405 username saeed9658 136405 mac 136405 bytes_out 0 136405 bytes_in 0 136405 station_ip 5.120.65.132 136405 port 188 136405 unique_id port 136405 remote_ip 10.8.1.210 136409 username saeed9658 136409 mac 136409 bytes_out 0 136409 bytes_in 0 136409 station_ip 5.120.65.132 136409 port 188 136409 unique_id port 136409 remote_ip 10.8.1.210 136410 username saeed9658 136410 mac 136410 bytes_out 0 136410 bytes_in 0 136410 station_ip 5.120.65.132 136410 port 188 136410 unique_id port 136410 remote_ip 10.8.1.210 136412 username godarzi 136412 mac 136412 bytes_out 0 136412 bytes_in 0 136412 station_ip 5.119.233.243 136412 port 186 136412 unique_id port 136412 remote_ip 10.8.1.230 136416 username barzegar 136416 mac 136416 bytes_out 0 136416 bytes_in 0 136416 station_ip 5.119.185.96 136416 port 304 136416 unique_id port 136416 remote_ip 10.8.0.234 136422 username saeed9658 136422 mac 136422 bytes_out 0 136422 bytes_in 0 136422 station_ip 5.120.65.132 136422 port 186 136422 unique_id port 136422 remote_ip 10.8.1.210 136426 username hashtadani3 136426 mac 136426 bytes_out 0 136426 bytes_in 0 136426 station_ip 113.203.28.82 136426 port 308 136426 unique_id port 136426 remote_ip 10.8.0.154 136428 username sabaghnezhad 136428 mac 136428 bytes_out 0 136428 bytes_in 0 136428 station_ip 83.123.142.13 136428 port 185 136428 unique_id port 136428 remote_ip 10.8.1.130 136429 username barzegar 136429 mac 136429 bytes_out 0 136429 bytes_in 0 136429 station_ip 5.119.185.96 136429 port 308 136429 unique_id port 136429 remote_ip 10.8.0.234 136436 username meysam 136436 mac 136436 bytes_out 0 136436 bytes_in 0 136436 station_ip 46.225.209.131 136436 port 186 136436 unique_id port 136436 remote_ip 10.8.1.34 136438 username saeed9658 136438 mac 136438 bytes_out 0 136438 bytes_in 0 136438 station_ip 5.120.65.132 136438 port 185 136438 unique_id port 136438 remote_ip 10.8.1.210 136439 username alihosseini1 136439 mac 136439 bytes_out 0 136439 bytes_in 0 136439 station_ip 5.119.214.158 136439 port 187 136439 unique_id port 136439 remote_ip 10.8.1.106 136441 username saeed9658 136441 mac 136441 bytes_out 1695 136441 bytes_in 5058 136441 station_ip 5.120.65.132 136441 port 312 136441 unique_id port 136441 remote_ip 10.8.0.62 136446 username saeed9658 136446 mac 136446 bytes_out 0 136446 bytes_in 0 136446 station_ip 5.120.65.132 136446 port 185 136446 unique_id port 136446 remote_ip 10.8.1.210 136402 station_ip 5.119.185.96 136402 port 309 136402 unique_id port 136402 remote_ip 10.8.0.234 136404 username mosi 136404 kill_reason Another user logged on this global unique id 136404 mac 136404 bytes_out 0 136404 bytes_in 0 136404 station_ip 151.235.75.185 136404 port 299 136404 unique_id port 136406 username farhad2 136406 mac 136406 bytes_out 1853143 136406 bytes_in 17438722 136406 station_ip 5.120.112.143 136406 port 308 136406 unique_id port 136406 remote_ip 10.8.0.190 136408 username saeed9658 136408 mac 136408 bytes_out 0 136408 bytes_in 0 136408 station_ip 5.120.65.132 136408 port 188 136408 unique_id port 136408 remote_ip 10.8.1.210 136414 username hashtadani3 136414 mac 136414 bytes_out 0 136414 bytes_in 0 136414 station_ip 113.203.28.82 136414 port 304 136414 unique_id port 136414 remote_ip 10.8.0.154 136415 username saeed9658 136415 mac 136415 bytes_out 3719 136415 bytes_in 5970 136415 station_ip 5.120.65.132 136415 port 188 136415 unique_id port 136415 remote_ip 10.8.1.210 136418 username mosi 136418 kill_reason Another user logged on this global unique id 136418 mac 136418 bytes_out 0 136418 bytes_in 0 136418 station_ip 151.235.75.185 136418 port 299 136418 unique_id port 136421 username alihosseini1 136421 mac 136421 bytes_out 0 136421 bytes_in 0 136421 station_ip 5.119.214.158 136421 port 187 136421 unique_id port 136421 remote_ip 10.8.1.106 136423 username farhad2 136423 mac 136423 bytes_out 1825352 136423 bytes_in 12449252 136423 station_ip 5.120.112.143 136423 port 308 136423 unique_id port 136423 remote_ip 10.8.0.190 136425 username barzegar 136425 mac 136425 bytes_out 0 136425 bytes_in 0 136425 station_ip 5.119.185.96 136425 port 312 136425 unique_id port 136425 remote_ip 10.8.0.234 136427 username farhad2 136427 mac 136427 bytes_out 0 136427 bytes_in 0 136427 station_ip 5.120.112.143 136427 port 304 136427 unique_id port 136427 remote_ip 10.8.0.190 136432 username saeed9658 136432 mac 136432 bytes_out 0 136432 bytes_in 0 136432 station_ip 5.120.65.132 136432 port 185 136432 unique_id port 136432 remote_ip 10.8.1.210 136433 username saeed9658 136433 mac 136433 bytes_out 0 136433 bytes_in 0 136433 station_ip 5.120.65.132 136433 port 185 136433 unique_id port 136433 remote_ip 10.8.1.210 136434 username saeed9658 136434 mac 136434 bytes_out 0 136434 bytes_in 0 136434 station_ip 5.120.65.132 136434 port 185 136434 unique_id port 136434 remote_ip 10.8.1.210 136443 username meysam 136443 mac 136443 bytes_out 11020 136443 bytes_in 17717 136443 station_ip 46.225.209.131 136443 port 309 136443 unique_id port 136443 remote_ip 10.8.0.110 136450 username saeed9658 136450 mac 136450 bytes_out 0 136450 bytes_in 0 136450 station_ip 5.120.65.132 136450 port 185 136450 unique_id port 136450 remote_ip 10.8.1.210 136451 username farhad2 136451 mac 136451 bytes_out 0 136451 bytes_in 0 136451 station_ip 5.120.112.143 136451 port 186 136451 unique_id port 136451 remote_ip 10.8.1.222 136452 username farhad2 136452 mac 136452 bytes_out 0 136452 bytes_in 0 136452 station_ip 5.120.112.143 136452 port 186 136452 unique_id port 136452 remote_ip 10.8.1.222 136456 username saeed9658 136456 mac 136456 bytes_out 0 136456 bytes_in 0 136456 station_ip 5.120.65.132 136456 port 185 136456 unique_id port 136456 remote_ip 10.8.1.210 136458 username khademi 136458 kill_reason Another user logged on this global unique id 136458 mac 136458 bytes_out 0 136458 bytes_in 0 136413 bytes_out 0 136413 bytes_in 0 136413 station_ip 5.120.175.23 136413 port 287 136413 unique_id port 136413 remote_ip 10.8.0.222 136417 username saeed9658 136417 mac 136417 bytes_out 0 136417 bytes_in 0 136417 station_ip 5.120.65.132 136417 port 186 136417 unique_id port 136417 remote_ip 10.8.1.210 136419 username saeed9658 136419 mac 136419 bytes_out 0 136419 bytes_in 0 136419 station_ip 5.120.65.132 136419 port 186 136419 unique_id port 136419 remote_ip 10.8.1.210 136420 username sabaghnezhad 136420 mac 136420 bytes_out 0 136420 bytes_in 0 136420 station_ip 83.123.142.13 136420 port 185 136420 unique_id port 136420 remote_ip 10.8.1.130 136424 username vanila 136424 mac 136424 bytes_out 4499057 136424 bytes_in 3035602 136424 station_ip 83.122.127.29 136424 port 304 136424 unique_id port 136424 remote_ip 10.8.0.178 136430 username moradi 136430 mac 136430 bytes_out 175818 136430 bytes_in 811386 136430 station_ip 37.129.230.38 136430 port 309 136430 unique_id port 136430 remote_ip 10.8.0.250 136431 username saeed9658 136431 mac 136431 bytes_out 0 136431 bytes_in 0 136431 station_ip 5.120.65.132 136431 port 186 136431 unique_id port 136431 remote_ip 10.8.1.210 136435 username barzegar 136435 mac 136435 bytes_out 0 136435 bytes_in 0 136435 station_ip 5.119.185.96 136435 port 309 136435 unique_id port 136435 remote_ip 10.8.0.234 136437 username meysam 136437 mac 136437 bytes_out 235099 136437 bytes_in 4863773 136437 station_ip 46.225.209.131 136437 port 308 136437 unique_id port 136437 remote_ip 10.8.0.110 136440 username hashtadani3 136440 mac 136440 bytes_out 0 136440 bytes_in 0 136440 station_ip 113.203.28.82 136440 port 314 136440 unique_id port 136440 remote_ip 10.8.0.154 136442 username saeed9658 136442 mac 136442 bytes_out 0 136442 bytes_in 0 136442 station_ip 5.120.65.132 136442 port 185 136442 unique_id port 136442 remote_ip 10.8.1.210 136444 username saeed9658 136444 mac 136444 bytes_out 0 136444 bytes_in 0 136444 station_ip 5.120.65.132 136444 port 185 136444 unique_id port 136444 remote_ip 10.8.1.210 136445 username hashtadani3 136445 mac 136445 bytes_out 0 136445 bytes_in 0 136445 station_ip 113.203.28.82 136445 port 309 136445 unique_id port 136445 remote_ip 10.8.0.154 136447 username farhad2 136447 mac 136447 bytes_out 0 136447 bytes_in 0 136447 station_ip 5.120.112.143 136447 port 308 136447 unique_id port 136447 remote_ip 10.8.0.190 136448 username saeed9658 136448 mac 136448 bytes_out 0 136448 bytes_in 0 136448 station_ip 5.120.65.132 136448 port 185 136448 unique_id port 136448 remote_ip 10.8.1.210 136449 username farhad2 136449 mac 136449 bytes_out 0 136449 bytes_in 0 136449 station_ip 5.120.112.143 136449 port 186 136449 unique_id port 136449 remote_ip 10.8.1.222 136454 username mosi 136454 kill_reason Another user logged on this global unique id 136454 mac 136454 bytes_out 0 136454 bytes_in 0 136454 station_ip 151.235.75.185 136454 port 299 136454 unique_id port 136455 username farhad2 136455 mac 136455 bytes_out 0 136455 bytes_in 0 136455 station_ip 5.120.112.143 136455 port 308 136455 unique_id port 136455 remote_ip 10.8.0.190 136461 username saeed9658 136461 mac 136461 bytes_out 0 136461 bytes_in 0 136461 station_ip 5.120.65.132 136461 port 185 136461 unique_id port 136461 remote_ip 10.8.1.210 136464 username saeed9658 136464 mac 136464 bytes_out 0 136464 bytes_in 0 136453 username hashtadani3 136453 mac 136453 bytes_out 0 136453 bytes_in 0 136453 station_ip 113.203.28.82 136453 port 308 136453 unique_id port 136453 remote_ip 10.8.0.154 136457 username barzegar 136457 mac 136457 bytes_out 0 136457 bytes_in 0 136457 station_ip 5.119.185.96 136457 port 308 136457 unique_id port 136457 remote_ip 10.8.0.234 136460 username hashtadani3 136460 mac 136460 bytes_out 0 136460 bytes_in 0 136460 station_ip 113.203.28.82 136460 port 314 136460 unique_id port 136460 remote_ip 10.8.0.154 136462 username farhad2 136462 kill_reason Maximum number of concurrent logins reached 136462 mac 136462 bytes_out 0 136462 bytes_in 0 136462 station_ip 5.120.112.143 136462 port 186 136462 unique_id port 136466 username saeed9658 136466 mac 136466 bytes_out 0 136466 bytes_in 0 136466 station_ip 5.120.65.132 136466 port 186 136466 unique_id port 136466 remote_ip 10.8.1.210 136472 username hamidsalari1 136472 mac 136472 bytes_out 8400147 136472 bytes_in 5896509 136472 station_ip 37.129.85.126 136472 port 315 136472 unique_id port 136472 remote_ip 10.8.0.226 136476 username hashtadani3 136476 mac 136476 bytes_out 0 136476 bytes_in 0 136476 station_ip 113.203.28.82 136476 port 316 136476 unique_id port 136476 remote_ip 10.8.0.154 136478 username saeed9658 136478 mac 136478 bytes_out 0 136478 bytes_in 0 136478 station_ip 5.120.65.132 136478 port 185 136478 unique_id port 136478 remote_ip 10.8.1.210 136479 username saeed9658 136479 mac 136479 bytes_out 0 136479 bytes_in 0 136479 station_ip 5.120.65.132 136479 port 185 136479 unique_id port 136479 remote_ip 10.8.1.210 136482 username saeed9658 136482 mac 136482 bytes_out 0 136482 bytes_in 0 136482 station_ip 5.120.65.132 136482 port 185 136482 unique_id port 136482 remote_ip 10.8.1.210 136483 username hamidsalari 136483 mac 136483 bytes_out 176969 136483 bytes_in 708218 136483 station_ip 5.119.208.5 136483 port 275 136483 unique_id port 136483 remote_ip 10.8.0.222 136485 username saeed9658 136485 mac 136485 bytes_out 0 136485 bytes_in 0 136485 station_ip 5.120.65.132 136485 port 185 136485 unique_id port 136485 remote_ip 10.8.1.210 136487 username hashtadani3 136487 mac 136487 bytes_out 0 136487 bytes_in 0 136487 station_ip 113.203.28.82 136487 port 186 136487 unique_id port 136487 remote_ip 10.8.1.94 136488 username hashtadani3 136488 mac 136488 bytes_out 5385 136488 bytes_in 24850 136488 station_ip 113.203.28.82 136488 port 309 136488 unique_id port 136488 remote_ip 10.8.0.154 136491 username hashtadani3 136491 mac 136491 bytes_out 0 136491 bytes_in 0 136491 station_ip 113.203.28.82 136491 port 275 136491 unique_id port 136491 remote_ip 10.8.0.154 136492 username saeed9658 136492 mac 136492 bytes_out 0 136492 bytes_in 0 136492 station_ip 5.120.65.132 136492 port 185 136492 unique_id port 136492 remote_ip 10.8.1.210 136493 username saeed9658 136493 mac 136493 bytes_out 0 136493 bytes_in 0 136493 station_ip 5.120.65.132 136493 port 275 136493 unique_id port 136493 remote_ip 10.8.0.62 136494 username saeed9658 136494 mac 136494 bytes_out 0 136494 bytes_in 0 136494 station_ip 5.120.65.132 136494 port 275 136494 unique_id port 136494 remote_ip 10.8.0.62 136499 username barzegar 136499 mac 136499 bytes_out 0 136499 bytes_in 0 136499 station_ip 5.119.185.96 136499 port 185 136499 unique_id port 136499 remote_ip 10.8.1.174 136504 username saeed9658 136504 mac 136458 station_ip 83.123.76.126 136458 port 286 136458 unique_id port 136459 username farhad2 136459 mac 136459 bytes_out 0 136459 bytes_in 0 136459 station_ip 5.120.112.143 136459 port 314 136459 unique_id port 136459 remote_ip 10.8.0.190 136463 username saeed9658 136463 mac 136463 bytes_out 0 136463 bytes_in 0 136463 station_ip 5.120.65.132 136463 port 185 136463 unique_id port 136463 remote_ip 10.8.1.210 136465 username barzegar 136465 mac 136465 bytes_out 0 136465 bytes_in 0 136465 station_ip 5.119.185.96 136465 port 185 136465 unique_id port 136465 remote_ip 10.8.1.174 136467 username mahdiyehalizadeh 136467 mac 136467 bytes_out 975810 136467 bytes_in 17963098 136467 station_ip 83.122.214.120 136467 port 309 136467 unique_id port 136467 remote_ip 10.8.0.82 136471 username barzegar 136471 mac 136471 bytes_out 0 136471 bytes_in 0 136471 station_ip 5.119.185.96 136471 port 186 136471 unique_id port 136471 remote_ip 10.8.1.174 136474 username saeed9658 136474 mac 136474 bytes_out 0 136474 bytes_in 0 136474 station_ip 5.120.65.132 136474 port 185 136474 unique_id port 136474 remote_ip 10.8.1.210 136477 username barzegar 136477 mac 136477 bytes_out 0 136477 bytes_in 0 136477 station_ip 5.119.185.96 136477 port 186 136477 unique_id port 136477 remote_ip 10.8.1.174 136481 username yaghobi 136481 mac 136481 bytes_out 467681 136481 bytes_in 2187623 136481 station_ip 113.203.11.236 136481 port 317 136481 unique_id port 136481 remote_ip 10.8.0.198 136484 username saeed9658 136484 mac 136484 bytes_out 0 136484 bytes_in 0 136484 station_ip 5.120.65.132 136484 port 185 136484 unique_id port 136484 remote_ip 10.8.1.210 136489 username amirabbas 136489 unique_id port 136489 terminate_cause User-Request 136489 bytes_out 2163906 136489 bytes_in 47411701 136489 station_ip 37.27.19.221 136489 port 15730550 136489 nas_port_type Virtual 136489 remote_ip 5.5.5.251 136496 username saeed9658 136496 mac 136496 bytes_out 0 136496 bytes_in 0 136496 station_ip 5.120.65.132 136496 port 275 136496 unique_id port 136496 remote_ip 10.8.0.62 136497 username saeed9658 136497 mac 136497 bytes_out 0 136497 bytes_in 0 136497 station_ip 5.120.65.132 136497 port 275 136497 unique_id port 136497 remote_ip 10.8.0.62 136498 username saeed9658 136498 mac 136498 bytes_out 0 136498 bytes_in 0 136498 station_ip 5.120.65.132 136498 port 275 136498 unique_id port 136498 remote_ip 10.8.0.62 136500 username saeed9658 136500 mac 136500 bytes_out 0 136500 bytes_in 0 136500 station_ip 5.120.65.132 136500 port 275 136500 unique_id port 136500 remote_ip 10.8.0.62 136501 username hashtadani3 136501 mac 136501 bytes_out 0 136501 bytes_in 0 136501 station_ip 113.203.28.82 136501 port 309 136501 unique_id port 136501 remote_ip 10.8.0.154 136503 username moradi 136503 kill_reason Another user logged on this global unique id 136503 mac 136503 bytes_out 0 136503 bytes_in 0 136503 station_ip 46.225.209.131 136503 port 312 136503 unique_id port 136503 remote_ip 10.8.0.250 136507 username saeed9658 136507 mac 136507 bytes_out 0 136507 bytes_in 0 136507 station_ip 5.120.65.132 136507 port 275 136507 unique_id port 136507 remote_ip 10.8.0.62 136511 username moradi 136511 mac 136511 bytes_out 0 136511 bytes_in 0 136511 station_ip 46.225.209.131 136511 port 312 136511 unique_id port 136517 username saeed9658 136517 mac 136517 bytes_out 0 136517 bytes_in 0 136517 station_ip 5.120.65.132 136517 port 309 136464 station_ip 5.120.65.132 136464 port 186 136464 unique_id port 136464 remote_ip 10.8.1.210 136468 username farhad2 136468 kill_reason Maximum check online fails reached 136468 mac 136468 bytes_out 0 136468 bytes_in 0 136468 station_ip 5.120.112.143 136468 port 308 136468 unique_id port 136469 username farhad2 136469 kill_reason Maximum check online fails reached 136469 mac 136469 bytes_out 0 136469 bytes_in 0 136469 station_ip 5.120.112.143 136469 port 314 136469 unique_id port 136470 username mosi 136470 kill_reason Another user logged on this global unique id 136470 mac 136470 bytes_out 0 136470 bytes_in 0 136470 station_ip 151.235.75.185 136470 port 299 136470 unique_id port 136473 username khademi 136473 kill_reason Another user logged on this global unique id 136473 mac 136473 bytes_out 0 136473 bytes_in 0 136473 station_ip 83.123.76.126 136473 port 286 136473 unique_id port 136475 username vanila 136475 mac 136475 bytes_out 1570488 136475 bytes_in 489476 136475 station_ip 83.122.127.29 136475 port 309 136475 unique_id port 136475 remote_ip 10.8.0.178 136480 username saeed9658 136480 mac 136480 bytes_out 0 136480 bytes_in 0 136480 station_ip 5.120.65.132 136480 port 185 136480 unique_id port 136480 remote_ip 10.8.1.210 136486 username saeed9658 136486 mac 136486 bytes_out 0 136486 bytes_in 0 136486 station_ip 5.120.65.132 136486 port 185 136486 unique_id port 136486 remote_ip 10.8.1.210 136490 username saeed9658 136490 mac 136490 bytes_out 0 136490 bytes_in 0 136490 station_ip 5.120.65.132 136490 port 185 136490 unique_id port 136490 remote_ip 10.8.1.210 136495 username saeed9658 136495 mac 136495 bytes_out 0 136495 bytes_in 0 136495 station_ip 5.120.65.132 136495 port 275 136495 unique_id port 136495 remote_ip 10.8.0.62 136502 username saeed9658 136502 mac 136502 bytes_out 0 136502 bytes_in 0 136502 station_ip 5.120.65.132 136502 port 275 136502 unique_id port 136502 remote_ip 10.8.0.62 136506 username saeed9658 136506 mac 136506 bytes_out 0 136506 bytes_in 0 136506 station_ip 5.120.65.132 136506 port 275 136506 unique_id port 136506 remote_ip 10.8.0.62 136508 username mosi 136508 kill_reason Another user logged on this global unique id 136508 mac 136508 bytes_out 0 136508 bytes_in 0 136508 station_ip 151.235.75.185 136508 port 299 136508 unique_id port 136510 username saeed9658 136510 mac 136510 bytes_out 0 136510 bytes_in 0 136510 station_ip 5.120.65.132 136510 port 275 136510 unique_id port 136510 remote_ip 10.8.0.62 136514 username saeed9658 136514 mac 136514 bytes_out 0 136514 bytes_in 0 136514 station_ip 5.120.65.132 136514 port 309 136514 unique_id port 136514 remote_ip 10.8.0.62 136515 username saeed9658 136515 mac 136515 bytes_out 0 136515 bytes_in 0 136515 station_ip 5.120.65.132 136515 port 309 136515 unique_id port 136515 remote_ip 10.8.0.62 136521 username saeed9658 136521 mac 136521 bytes_out 0 136521 bytes_in 0 136521 station_ip 5.120.65.132 136521 port 309 136521 unique_id port 136521 remote_ip 10.8.0.62 136523 username meysam 136523 mac 136523 bytes_out 0 136523 bytes_in 0 136523 station_ip 5.120.33.122 136523 port 312 136523 unique_id port 136523 remote_ip 10.8.0.110 136528 username saeed9658 136528 mac 136528 bytes_out 0 136528 bytes_in 0 136528 station_ip 5.120.65.132 136528 port 275 136528 unique_id port 136528 remote_ip 10.8.0.62 136529 username saeed9658 136529 mac 136529 bytes_out 0 136529 bytes_in 0 136529 station_ip 5.120.65.132 136529 port 275 136504 bytes_out 0 136504 bytes_in 0 136504 station_ip 5.120.65.132 136504 port 275 136504 unique_id port 136504 remote_ip 10.8.0.62 136505 username saeed9658 136505 mac 136505 bytes_out 0 136505 bytes_in 0 136505 station_ip 5.120.65.132 136505 port 275 136505 unique_id port 136505 remote_ip 10.8.0.62 136509 username saeed9658 136509 mac 136509 bytes_out 0 136509 bytes_in 0 136509 station_ip 5.120.65.132 136509 port 275 136509 unique_id port 136509 remote_ip 10.8.0.62 136512 username saeed9658 136512 mac 136512 bytes_out 0 136512 bytes_in 0 136512 station_ip 5.120.65.132 136512 port 309 136512 unique_id port 136512 remote_ip 10.8.0.62 136513 username saeed9658 136513 mac 136513 bytes_out 0 136513 bytes_in 0 136513 station_ip 5.120.65.132 136513 port 309 136513 unique_id port 136513 remote_ip 10.8.0.62 136516 username barzegar 136516 mac 136516 bytes_out 0 136516 bytes_in 0 136516 station_ip 5.119.185.96 136516 port 185 136516 unique_id port 136516 remote_ip 10.8.1.174 136519 username khademi 136519 mac 136519 bytes_out 0 136519 bytes_in 0 136519 station_ip 83.123.76.126 136519 port 286 136519 unique_id port 136524 username moradi 136524 mac 136524 bytes_out 0 136524 bytes_in 0 136524 station_ip 46.225.209.131 136524 port 275 136524 unique_id port 136524 remote_ip 10.8.0.250 136532 username saeed9658 136532 mac 136532 bytes_out 2788 136532 bytes_in 5220 136532 station_ip 5.120.65.132 136532 port 275 136532 unique_id port 136532 remote_ip 10.8.0.62 136534 username mostafa_es78 136534 unique_id port 136534 terminate_cause User-Request 136534 bytes_out 258 136534 bytes_in 172 136534 station_ip 5.120.105.70 136534 port 15730552 136534 nas_port_type Virtual 136534 remote_ip 5.5.5.249 136536 username hashtadani3 136536 mac 136536 bytes_out 0 136536 bytes_in 0 136536 station_ip 113.203.28.82 136536 port 286 136536 unique_id port 136536 remote_ip 10.8.0.154 136541 username barzegar 136541 mac 136541 bytes_out 2781 136541 bytes_in 5981 136541 station_ip 5.119.185.96 136541 port 187 136541 unique_id port 136541 remote_ip 10.8.1.174 136546 username hashtadani3 136546 mac 136546 bytes_out 0 136546 bytes_in 0 136546 station_ip 113.203.28.82 136546 port 286 136546 unique_id port 136546 remote_ip 10.8.0.154 136550 username hashtadani3 136550 kill_reason Maximum check online fails reached 136550 mac 136550 bytes_out 0 136550 bytes_in 0 136550 station_ip 113.203.28.82 136550 port 286 136550 unique_id port 136552 username hashtadani3 136552 mac 136552 bytes_out 0 136552 bytes_in 0 136552 station_ip 113.203.28.82 136552 port 317 136552 unique_id port 136552 remote_ip 10.8.0.154 136558 username sabaghnezhad 136558 mac 136558 bytes_out 0 136558 bytes_in 0 136558 station_ip 83.123.142.13 136558 port 304 136558 unique_id port 136558 remote_ip 10.8.0.186 136561 username barzegar 136561 mac 136561 bytes_out 0 136561 bytes_in 0 136561 station_ip 5.119.185.96 136561 port 319 136561 unique_id port 136561 remote_ip 10.8.0.234 136564 username barzegar 136564 mac 136564 bytes_out 0 136564 bytes_in 0 136564 station_ip 5.119.185.96 136564 port 299 136564 unique_id port 136564 remote_ip 10.8.0.234 136565 username saeed9658 136565 mac 136565 bytes_out 0 136565 bytes_in 0 136565 station_ip 5.120.65.132 136565 port 275 136565 unique_id port 136565 remote_ip 10.8.0.62 136567 username hoorieh 136567 kill_reason Another user logged on this global unique id 136567 mac 136567 bytes_out 0 136517 unique_id port 136517 remote_ip 10.8.0.62 136518 username saeed9658 136518 mac 136518 bytes_out 0 136518 bytes_in 0 136518 station_ip 5.120.65.132 136518 port 309 136518 unique_id port 136518 remote_ip 10.8.0.62 136520 username hashtadani3 136520 mac 136520 bytes_out 0 136520 bytes_in 0 136520 station_ip 113.203.28.82 136520 port 316 136520 unique_id port 136520 remote_ip 10.8.0.154 136522 username hashtadani3 136522 mac 136522 bytes_out 0 136522 bytes_in 0 136522 station_ip 113.203.28.82 136522 port 309 136522 unique_id port 136522 remote_ip 10.8.0.154 136525 username saeed9658 136525 mac 136525 bytes_out 0 136525 bytes_in 0 136525 station_ip 5.120.65.132 136525 port 286 136525 unique_id port 136525 remote_ip 10.8.0.62 136526 username saeed9658 136526 mac 136526 bytes_out 0 136526 bytes_in 0 136526 station_ip 5.120.65.132 136526 port 275 136526 unique_id port 136526 remote_ip 10.8.0.62 136527 username barzegar 136527 mac 136527 bytes_out 0 136527 bytes_in 0 136527 station_ip 5.119.185.96 136527 port 286 136527 unique_id port 136527 remote_ip 10.8.0.234 136530 username hashtadani3 136530 mac 136530 bytes_out 0 136530 bytes_in 0 136530 station_ip 113.203.28.82 136530 port 286 136530 unique_id port 136530 remote_ip 10.8.0.154 136531 username mehdizare 136531 mac 136531 bytes_out 120361 136531 bytes_in 104591 136531 station_ip 5.120.148.206 136531 port 189 136531 unique_id port 136531 remote_ip 10.8.1.42 136538 username abravesh 136538 unique_id port 136538 terminate_cause Lost-Carrier 136538 bytes_out 1036580 136538 bytes_in 26673322 136538 station_ip 5.120.55.158 136538 port 15730543 136538 nas_port_type Virtual 136538 remote_ip 5.5.5.254 136539 username hashtadani3 136539 kill_reason Another user logged on this global unique id 136539 mac 136539 bytes_out 0 136539 bytes_in 0 136539 station_ip 113.203.28.82 136539 port 286 136539 unique_id port 136539 remote_ip 10.8.0.154 136540 username mehrpouyan 136540 mac 136540 bytes_out 2786739 136540 bytes_in 12235423 136540 station_ip 5.119.118.61 136540 port 309 136540 unique_id port 136540 remote_ip 10.8.0.74 136543 username mehrpouyan 136543 mac 136543 bytes_out 0 136543 bytes_in 0 136543 station_ip 5.120.46.3 136543 port 312 136543 unique_id port 136543 remote_ip 10.8.0.74 136545 username hashtadani3 136545 mac 136545 bytes_out 0 136545 bytes_in 0 136545 station_ip 113.203.28.82 136545 port 286 136545 unique_id port 136547 username hashtadani3 136547 mac 136547 bytes_out 0 136547 bytes_in 0 136547 station_ip 113.203.28.82 136547 port 312 136547 unique_id port 136547 remote_ip 10.8.0.154 136548 username mostafa_es78 136548 unique_id port 136548 terminate_cause Lost-Carrier 136548 bytes_out 4125491 136548 bytes_in 70792922 136548 station_ip 5.120.105.70 136548 port 15730549 136548 nas_port_type Virtual 136548 remote_ip 5.5.5.253 136549 username mosi 136549 kill_reason Another user logged on this global unique id 136549 mac 136549 bytes_out 0 136549 bytes_in 0 136549 station_ip 151.235.75.185 136549 port 299 136549 unique_id port 136553 username hashtadani3 136553 mac 136553 bytes_out 0 136553 bytes_in 0 136553 station_ip 113.203.28.82 136553 port 187 136553 unique_id port 136553 remote_ip 10.8.1.94 136555 username hashtadani3 136555 kill_reason Maximum number of concurrent logins reached 136555 mac 136555 bytes_out 0 136555 bytes_in 0 136555 station_ip 113.203.28.82 136555 port 188 136555 unique_id port 136556 username hashtadani3 136556 kill_reason Maximum check online fails reached 136556 mac 136529 unique_id port 136529 remote_ip 10.8.0.62 136533 username barzegar 136533 mac 136533 bytes_out 0 136533 bytes_in 0 136533 station_ip 5.119.185.96 136533 port 286 136533 unique_id port 136533 remote_ip 10.8.0.234 136535 username mostafa_es78 136535 unique_id port 136535 terminate_cause User-Request 136535 bytes_out 0 136535 bytes_in 0 136535 station_ip 5.120.105.70 136535 port 15730553 136535 nas_port_type Virtual 136535 remote_ip 5.5.5.250 136537 username hamidsalari1 136537 kill_reason Maximum check online fails reached 136537 mac 136537 bytes_out 0 136537 bytes_in 0 136537 station_ip 83.123.79.110 136537 port 186 136537 unique_id port 136542 username godarzi 136542 mac 136542 bytes_out 1798096 136542 bytes_in 26960902 136542 station_ip 5.119.233.243 136542 port 187 136542 unique_id port 136542 remote_ip 10.8.1.230 136544 username barzegar 136544 mac 136544 bytes_out 0 136544 bytes_in 0 136544 station_ip 5.119.185.96 136544 port 187 136544 unique_id port 136544 remote_ip 10.8.1.174 136551 username hashtadani3 136551 mac 136551 bytes_out 0 136551 bytes_in 0 136551 station_ip 113.203.28.82 136551 port 317 136551 unique_id port 136551 remote_ip 10.8.0.154 136554 username mehrpouyan 136554 mac 136554 bytes_out 0 136554 bytes_in 0 136554 station_ip 5.119.22.122 136554 port 309 136554 unique_id port 136554 remote_ip 10.8.0.74 136557 username hashtadani3 136557 kill_reason Maximum check online fails reached 136557 mac 136557 bytes_out 0 136557 bytes_in 0 136557 station_ip 113.203.28.82 136557 port 309 136557 unique_id port 136560 username mosi 136560 mac 136560 bytes_out 0 136560 bytes_in 0 136560 station_ip 151.235.75.185 136560 port 299 136560 unique_id port 136570 username barzegar 136570 mac 136570 bytes_out 0 136570 bytes_in 0 136570 station_ip 5.119.185.96 136570 port 319 136570 unique_id port 136570 remote_ip 10.8.0.234 136576 username yaghobi 136576 mac 136576 bytes_out 0 136576 bytes_in 0 136576 station_ip 83.122.79.66 136576 port 316 136576 unique_id port 136576 remote_ip 10.8.0.198 136583 username mehrpouyan 136583 mac 136583 bytes_out 0 136583 bytes_in 0 136583 station_ip 5.120.121.101 136583 port 321 136583 unique_id port 136583 remote_ip 10.8.0.74 136591 username aminvpn 136591 kill_reason Maximum check online fails reached 136591 unique_id port 136591 bytes_out 1145020 136591 bytes_in 25821352 136591 station_ip 5.233.49.34 136591 port 15730555 136591 nas_port_type Virtual 136591 remote_ip 5.5.5.247 136592 username farhad2 136592 mac 136592 bytes_out 0 136592 bytes_in 0 136592 station_ip 5.119.60.31 136592 port 312 136592 unique_id port 136592 remote_ip 10.8.0.190 136595 username mehrpouyan 136595 mac 136595 bytes_out 0 136595 bytes_in 0 136595 station_ip 5.119.104.122 136595 port 275 136595 unique_id port 136595 remote_ip 10.8.0.74 136604 username barzegar 136604 mac 136604 bytes_out 4469 136604 bytes_in 7026 136604 station_ip 5.119.185.96 136604 port 275 136604 unique_id port 136604 remote_ip 10.8.0.234 136606 username farhad2 136606 mac 136606 bytes_out 0 136606 bytes_in 0 136606 station_ip 5.119.60.31 136606 port 312 136606 unique_id port 136606 remote_ip 10.8.0.190 136609 username mehrpouyan 136609 mac 136609 bytes_out 0 136609 bytes_in 0 136609 station_ip 5.120.10.31 136609 port 312 136609 unique_id port 136609 remote_ip 10.8.0.74 136612 username mohammadjavad 136612 mac 136612 bytes_out 6966581 136612 bytes_in 34710550 136612 station_ip 83.123.130.158 136612 port 318 136556 bytes_out 0 136556 bytes_in 0 136556 station_ip 113.203.28.82 136556 port 317 136556 unique_id port 136559 username mehdizare 136559 mac 136559 bytes_out 25381 136559 bytes_in 27280 136559 station_ip 5.120.148.206 136559 port 185 136559 unique_id port 136559 remote_ip 10.8.1.42 136562 username vanila 136562 mac 136562 bytes_out 0 136562 bytes_in 0 136562 station_ip 83.122.10.9 136562 port 320 136562 unique_id port 136562 remote_ip 10.8.0.178 136563 username barzegar 136563 mac 136563 bytes_out 0 136563 bytes_in 0 136563 station_ip 5.119.185.96 136563 port 299 136563 unique_id port 136563 remote_ip 10.8.0.234 136566 username barzegar 136566 mac 136566 bytes_out 0 136566 bytes_in 0 136566 station_ip 5.119.185.96 136566 port 299 136566 unique_id port 136566 remote_ip 10.8.0.234 136571 username yaghobi 136571 mac 136571 bytes_out 0 136571 bytes_in 0 136571 station_ip 83.122.79.66 136571 port 316 136571 unique_id port 136571 remote_ip 10.8.0.198 136572 username barzegar 136572 mac 136572 bytes_out 0 136572 bytes_in 0 136572 station_ip 5.119.185.96 136572 port 316 136572 unique_id port 136572 remote_ip 10.8.0.234 136573 username yaghobi 136573 mac 136573 bytes_out 0 136573 bytes_in 0 136573 station_ip 83.122.79.66 136573 port 319 136573 unique_id port 136573 remote_ip 10.8.0.198 136574 username mehrpouyan 136574 mac 136574 bytes_out 0 136574 bytes_in 0 136574 station_ip 5.120.61.9 136574 port 304 136574 unique_id port 136574 remote_ip 10.8.0.74 136578 username farhad2 136578 mac 136578 bytes_out 0 136578 bytes_in 0 136578 station_ip 5.120.163.3 136578 port 312 136578 unique_id port 136579 username barzegar 136579 mac 136579 bytes_out 2848 136579 bytes_in 5314 136579 station_ip 5.119.185.96 136579 port 188 136579 unique_id port 136579 remote_ip 10.8.1.174 136584 username barzegar 136584 mac 136584 bytes_out 0 136584 bytes_in 0 136584 station_ip 5.119.185.96 136584 port 304 136584 unique_id port 136584 remote_ip 10.8.0.234 136585 username saeed9658 136585 mac 136585 bytes_out 0 136585 bytes_in 0 136585 station_ip 5.120.65.132 136585 port 275 136585 unique_id port 136585 remote_ip 10.8.0.62 136586 username barzegar 136586 mac 136586 bytes_out 0 136586 bytes_in 0 136586 station_ip 5.119.185.96 136586 port 275 136586 unique_id port 136586 remote_ip 10.8.0.234 136588 username mehrpouyan 136588 mac 136588 bytes_out 0 136588 bytes_in 0 136588 station_ip 5.120.140.166 136588 port 299 136588 unique_id port 136588 remote_ip 10.8.0.74 136596 username sabaghnezhad 136596 mac 136596 bytes_out 14503 136596 bytes_in 25809 136596 station_ip 37.129.255.93 136596 port 304 136596 unique_id port 136596 remote_ip 10.8.0.186 136597 username mehrpouyan 136597 mac 136597 bytes_out 0 136597 bytes_in 0 136597 station_ip 5.119.43.177 136597 port 319 136597 unique_id port 136597 remote_ip 10.8.0.74 136601 username mehrpouyan 136601 mac 136601 bytes_out 0 136601 bytes_in 0 136601 station_ip 5.120.151.78 136601 port 319 136601 unique_id port 136601 remote_ip 10.8.0.74 136602 username barzegar 136602 mac 136602 bytes_out 0 136602 bytes_in 0 136602 station_ip 5.119.185.96 136602 port 319 136602 unique_id port 136602 remote_ip 10.8.0.234 136608 username mehrpouyan 136608 mac 136608 bytes_out 0 136608 bytes_in 0 136608 station_ip 5.119.59.104 136608 port 275 136608 unique_id port 136608 remote_ip 10.8.0.74 136610 username mansour 136567 bytes_in 0 136567 station_ip 5.119.118.40 136567 port 299 136567 unique_id port 136567 remote_ip 10.8.0.38 136568 username mehrpouyan 136568 mac 136568 bytes_out 3584475 136568 bytes_in 15977271 136568 station_ip 5.120.28.39 136568 port 318 136568 unique_id port 136568 remote_ip 10.8.0.74 136569 username farhad2 136569 kill_reason Another user logged on this global unique id 136569 mac 136569 bytes_out 0 136569 bytes_in 0 136569 station_ip 5.120.163.3 136569 port 312 136569 unique_id port 136569 remote_ip 10.8.0.190 136575 username hosseine 136575 kill_reason Maximum check online fails reached 136575 mac 136575 bytes_out 0 136575 bytes_in 0 136575 station_ip 37.129.51.214 136575 port 282 136575 unique_id port 136575 remote_ip 10.8.0.238 136577 username bcboard 136577 unique_id port 136577 terminate_cause Lost-Carrier 136577 bytes_out 682413 136577 bytes_in 1011381 136577 station_ip 37.129.251.88 136577 port 15730554 136577 nas_port_type Virtual 136577 remote_ip 5.5.5.246 136580 username barzegar 136580 mac 136580 bytes_out 0 136580 bytes_in 0 136580 station_ip 5.119.185.96 136580 port 304 136580 unique_id port 136580 remote_ip 10.8.0.234 136581 username barzegar 136581 mac 136581 bytes_out 0 136581 bytes_in 0 136581 station_ip 5.119.185.96 136581 port 304 136581 unique_id port 136581 remote_ip 10.8.0.234 136582 username hoorieh 136582 mac 136582 bytes_out 0 136582 bytes_in 0 136582 station_ip 5.119.118.40 136582 port 299 136582 unique_id port 136587 username barzegar 136587 mac 136587 bytes_out 0 136587 bytes_in 0 136587 station_ip 5.119.185.96 136587 port 275 136587 unique_id port 136587 remote_ip 10.8.0.234 136589 username godarzi 136589 mac 136589 bytes_out 937847 136589 bytes_in 14316663 136589 station_ip 5.119.233.243 136589 port 187 136589 unique_id port 136589 remote_ip 10.8.1.230 136590 username meysam 136590 mac 136590 bytes_out 0 136590 bytes_in 0 136590 station_ip 188.159.251.149 136590 port 188 136590 unique_id port 136590 remote_ip 10.8.1.34 136593 username sabaghnezhad 136593 mac 136593 bytes_out 0 136593 bytes_in 0 136593 station_ip 37.129.45.242 136593 port 319 136593 unique_id port 136593 remote_ip 10.8.0.186 136594 username barzegar 136594 mac 136594 bytes_out 0 136594 bytes_in 0 136594 station_ip 5.119.185.96 136594 port 304 136594 unique_id port 136594 remote_ip 10.8.0.234 136598 username barzegar 136598 mac 136598 bytes_out 0 136598 bytes_in 0 136598 station_ip 5.119.185.96 136598 port 319 136598 unique_id port 136598 remote_ip 10.8.0.234 136599 username barzegar 136599 mac 136599 bytes_out 0 136599 bytes_in 0 136599 station_ip 5.119.185.96 136599 port 319 136599 unique_id port 136599 remote_ip 10.8.0.234 136600 username mehrpouyan 136600 mac 136600 bytes_out 0 136600 bytes_in 0 136600 station_ip 5.119.198.157 136600 port 275 136600 unique_id port 136600 remote_ip 10.8.0.74 136603 username kordestani 136603 mac 136603 bytes_out 0 136603 bytes_in 0 136603 station_ip 83.122.104.199 136603 port 275 136603 unique_id port 136603 remote_ip 10.8.0.134 136605 username mehrpouyan 136605 mac 136605 bytes_out 0 136605 bytes_in 0 136605 station_ip 5.120.151.78 136605 port 321 136605 unique_id port 136605 remote_ip 10.8.0.74 136607 username barzegar 136607 mac 136607 bytes_out 0 136607 bytes_in 0 136607 station_ip 5.119.185.96 136607 port 312 136607 unique_id port 136607 remote_ip 10.8.0.234 136611 username hamidsalari 136611 mac 136611 bytes_out 0 136610 mac 136610 bytes_out 0 136610 bytes_in 0 136610 station_ip 5.119.55.0 136610 port 299 136610 unique_id port 136610 remote_ip 10.8.0.30 136619 username barzegar 136619 mac 136619 bytes_out 0 136619 bytes_in 0 136619 station_ip 5.119.185.96 136619 port 312 136619 unique_id port 136619 remote_ip 10.8.0.234 136623 username godarzi 136623 mac 136623 bytes_out 2913750 136623 bytes_in 34640996 136623 station_ip 5.119.233.243 136623 port 187 136623 unique_id port 136623 remote_ip 10.8.1.230 136626 username mehdizare 136626 mac 136626 bytes_out 0 136626 bytes_in 0 136626 station_ip 5.120.148.206 136626 port 185 136626 unique_id port 136626 remote_ip 10.8.1.42 136628 username mehdizare 136628 mac 136628 bytes_out 6948 136628 bytes_in 16444 136628 station_ip 5.120.148.206 136628 port 187 136628 unique_id port 136628 remote_ip 10.8.1.42 136632 username mehrpouyan 136632 mac 136632 bytes_out 0 136632 bytes_in 0 136632 station_ip 5.119.52.181 136632 port 318 136632 unique_id port 136632 remote_ip 10.8.0.74 136634 username tahmasebi 136634 kill_reason Another user logged on this global unique id 136634 mac 136634 bytes_out 0 136634 bytes_in 0 136634 station_ip 5.119.26.11 136634 port 275 136634 unique_id port 136636 username mehrpouyan 136636 kill_reason Maximum number of concurrent logins reached 136636 mac 136636 bytes_out 0 136636 bytes_in 0 136636 station_ip 5.119.194.15 136636 port 321 136636 unique_id port 136638 username mehrpouyan 136638 mac 136638 bytes_out 705912 136638 bytes_in 7943971 136638 station_ip 5.120.12.42 136638 port 319 136638 unique_id port 136638 remote_ip 10.8.0.74 136639 username mehrpouyan 136639 kill_reason Maximum check online fails reached 136639 mac 136639 bytes_out 0 136639 bytes_in 0 136639 station_ip 5.119.194.15 136639 port 318 136639 unique_id port 136641 username tahmasebi 136641 kill_reason Another user logged on this global unique id 136641 mac 136641 bytes_out 0 136641 bytes_in 0 136641 station_ip 5.119.26.11 136641 port 275 136641 unique_id port 136644 username godarzi 136644 mac 136644 bytes_out 0 136644 bytes_in 0 136644 station_ip 5.202.62.33 136644 port 188 136644 unique_id port 136644 remote_ip 10.8.1.230 136646 username mehrpouyan 136646 mac 136646 bytes_out 503350 136646 bytes_in 3637294 136646 station_ip 5.119.222.213 136646 port 321 136646 unique_id port 136646 remote_ip 10.8.0.74 136647 username mohammadjavad 136647 mac 136647 bytes_out 1884352 136647 bytes_in 18420303 136647 station_ip 83.122.219.89 136647 port 299 136647 unique_id port 136647 remote_ip 10.8.0.142 136649 username tahmasebi 136649 mac 136649 bytes_out 0 136649 bytes_in 0 136649 station_ip 5.119.26.11 136649 port 275 136649 unique_id port 136653 username farhad2 136653 mac 136653 bytes_out 0 136653 bytes_in 0 136653 station_ip 5.119.87.178 136653 port 187 136653 unique_id port 136653 remote_ip 10.8.1.222 136655 username farhad2 136655 kill_reason Maximum check online fails reached 136655 mac 136655 bytes_out 0 136655 bytes_in 0 136655 station_ip 5.119.87.178 136655 port 275 136655 unique_id port 136667 username godarzi 136667 mac 136667 bytes_out 1813015 136667 bytes_in 22184242 136667 station_ip 5.202.62.33 136667 port 312 136667 unique_id port 136667 remote_ip 10.8.0.174 136668 username amir 136668 mac 136668 bytes_out 118463 136668 bytes_in 764906 136668 station_ip 46.225.212.186 136668 port 312 136668 unique_id port 136668 remote_ip 10.8.0.50 136670 username yaghobi 136670 mac 136611 bytes_in 0 136611 station_ip 5.119.76.126 136611 port 315 136611 unique_id port 136611 remote_ip 10.8.0.222 136613 username mehrpouyan 136613 mac 136613 bytes_out 153536 136613 bytes_in 433132 136613 station_ip 5.120.10.31 136613 port 275 136613 unique_id port 136613 remote_ip 10.8.0.74 136614 username barzegar 136614 mac 136614 bytes_out 31694 136614 bytes_in 55518 136614 station_ip 5.119.185.96 136614 port 319 136614 unique_id port 136614 remote_ip 10.8.0.234 136616 username hamidsalari 136616 mac 136616 bytes_out 97025 136616 bytes_in 849727 136616 station_ip 5.119.76.126 136616 port 299 136616 unique_id port 136616 remote_ip 10.8.0.222 136618 username barzegar 136618 mac 136618 bytes_out 2846 136618 bytes_in 5179 136618 station_ip 5.119.185.96 136618 port 312 136618 unique_id port 136618 remote_ip 10.8.0.234 136620 username mehrpouyan 136620 mac 136620 bytes_out 0 136620 bytes_in 0 136620 station_ip 5.119.138.77 136620 port 299 136620 unique_id port 136620 remote_ip 10.8.0.74 136622 username mehrpouyan 136622 mac 136622 bytes_out 0 136622 bytes_in 0 136622 station_ip 5.119.20.190 136622 port 299 136622 unique_id port 136622 remote_ip 10.8.0.74 136625 username vanila 136625 mac 136625 bytes_out 8760540 136625 bytes_in 1504991 136625 station_ip 83.122.59.21 136625 port 299 136625 unique_id port 136625 remote_ip 10.8.0.178 136627 username houshang 136627 kill_reason Another user logged on this global unique id 136627 mac 136627 bytes_out 0 136627 bytes_in 0 136627 station_ip 5.119.70.37 136627 port 275 136627 unique_id port 136627 remote_ip 10.8.0.22 136629 username mehrpouyan 136629 mac 136629 bytes_out 211895 136629 bytes_in 1478532 136629 station_ip 5.120.78.59 136629 port 318 136629 unique_id port 136629 remote_ip 10.8.0.74 136633 username tahmasebi 136633 kill_reason Another user logged on this global unique id 136633 mac 136633 bytes_out 0 136633 bytes_in 0 136633 station_ip 5.119.26.11 136633 port 275 136633 unique_id port 136637 username mehrpouyan 136637 kill_reason Maximum number of concurrent logins reached 136637 mac 136637 bytes_out 0 136637 bytes_in 0 136637 station_ip 5.119.194.15 136637 port 321 136637 unique_id port 136642 username mehrpouyan 136642 mac 136642 bytes_out 177295 136642 bytes_in 473870 136642 station_ip 5.119.194.15 136642 port 319 136642 unique_id port 136642 remote_ip 10.8.0.74 136643 username tahmasebi 136643 kill_reason Another user logged on this global unique id 136643 mac 136643 bytes_out 0 136643 bytes_in 0 136643 station_ip 5.119.26.11 136643 port 275 136643 unique_id port 136650 username farhad2 136650 mac 136650 bytes_out 0 136650 bytes_in 0 136650 station_ip 5.119.87.178 136650 port 187 136650 unique_id port 136650 remote_ip 10.8.1.222 136652 username barzegar 136652 mac 136652 bytes_out 64330 136652 bytes_in 142556 136652 station_ip 5.119.185.96 136652 port 319 136652 unique_id port 136652 remote_ip 10.8.0.234 136656 username mehrpouyan 136656 mac 136656 bytes_out 44423 136656 bytes_in 104186 136656 station_ip 5.119.70.199 136656 port 299 136656 unique_id port 136656 remote_ip 10.8.0.74 136657 username sabaghnezhad 136657 mac 136657 bytes_out 0 136657 bytes_in 0 136657 station_ip 37.129.255.93 136657 port 304 136657 unique_id port 136657 remote_ip 10.8.0.186 136663 username morteza 136663 mac 136663 bytes_out 180051 136663 bytes_in 1688010 136663 station_ip 83.122.88.45 136663 port 315 136663 unique_id port 136663 remote_ip 10.8.0.46 136666 username amir 136666 mac 136612 unique_id port 136612 remote_ip 10.8.0.142 136615 username mehdizare 136615 mac 136615 bytes_out 0 136615 bytes_in 0 136615 station_ip 5.120.148.206 136615 port 185 136615 unique_id port 136615 remote_ip 10.8.1.42 136617 username mehrpouyan 136617 mac 136617 bytes_out 0 136617 bytes_in 0 136617 station_ip 5.120.44.72 136617 port 312 136617 unique_id port 136617 remote_ip 10.8.0.74 136621 username mehrpouyan 136621 mac 136621 bytes_out 8553 136621 bytes_in 22623 136621 station_ip 5.119.147.64 136621 port 312 136621 unique_id port 136621 remote_ip 10.8.0.74 136624 username mehrpouyan 136624 mac 136624 bytes_out 587337 136624 bytes_in 2947019 136624 station_ip 5.119.20.190 136624 port 312 136624 unique_id port 136624 remote_ip 10.8.0.74 136630 username houshang 136630 mac 136630 bytes_out 0 136630 bytes_in 0 136630 station_ip 5.119.70.37 136630 port 275 136630 unique_id port 136631 username tahmasebi 136631 kill_reason Another user logged on this global unique id 136631 mac 136631 bytes_out 0 136631 bytes_in 0 136631 station_ip 5.119.26.11 136631 port 275 136631 unique_id port 136631 remote_ip 10.8.0.42 136635 username mehrpouyan 136635 kill_reason Maximum number of concurrent logins reached 136635 mac 136635 bytes_out 0 136635 bytes_in 0 136635 station_ip 5.119.194.15 136635 port 321 136635 unique_id port 136640 username tahmasebi 136640 kill_reason Another user logged on this global unique id 136640 mac 136640 bytes_out 0 136640 bytes_in 0 136640 station_ip 5.119.26.11 136640 port 275 136640 unique_id port 136645 username barzegar 136645 mac 136645 bytes_out 0 136645 bytes_in 0 136645 station_ip 5.119.185.96 136645 port 315 136645 unique_id port 136645 remote_ip 10.8.0.234 136648 username mehdizare 136648 mac 136648 bytes_out 0 136648 bytes_in 0 136648 station_ip 5.120.148.206 136648 port 185 136648 unique_id port 136648 remote_ip 10.8.1.42 136651 username mehrpouyan 136651 mac 136651 bytes_out 1096793 136651 bytes_in 4777939 136651 station_ip 5.120.88.151 136651 port 315 136651 unique_id port 136651 remote_ip 10.8.0.74 136654 username godarzi 136654 mac 136654 bytes_out 0 136654 bytes_in 0 136654 station_ip 5.202.62.33 136654 port 188 136654 unique_id port 136654 remote_ip 10.8.1.230 136658 username mehrpouyan 136658 mac 136658 bytes_out 1739 136658 bytes_in 7623 136658 station_ip 5.119.15.55 136658 port 315 136658 unique_id port 136658 remote_ip 10.8.0.74 136659 username saeed9658 136659 mac 136659 bytes_out 6167850 136659 bytes_in 26442106 136659 station_ip 5.120.65.132 136659 port 312 136659 unique_id port 136659 remote_ip 10.8.0.62 136660 username amir 136660 mac 136660 bytes_out 87792 136660 bytes_in 634578 136660 station_ip 46.225.212.186 136660 port 315 136660 unique_id port 136660 remote_ip 10.8.0.50 136661 username houshang 136661 mac 136661 bytes_out 686647 136661 bytes_in 7964009 136661 station_ip 5.119.70.37 136661 port 304 136661 unique_id port 136661 remote_ip 10.8.0.22 136662 username amir 136662 mac 136662 bytes_out 0 136662 bytes_in 0 136662 station_ip 46.225.212.186 136662 port 187 136662 unique_id port 136662 remote_ip 10.8.1.22 136664 username morteza 136664 mac 136664 bytes_out 0 136664 bytes_in 0 136664 station_ip 83.122.88.45 136664 port 315 136664 unique_id port 136664 remote_ip 10.8.0.46 136665 username amir 136665 mac 136665 bytes_out 0 136665 bytes_in 0 136665 station_ip 46.225.212.186 136665 port 187 136665 unique_id port 136665 remote_ip 10.8.1.22 136666 bytes_out 0 136666 bytes_in 0 136666 station_ip 46.225.212.186 136666 port 187 136666 unique_id port 136666 remote_ip 10.8.1.22 136672 username houshang 136672 kill_reason Another user logged on this global unique id 136672 mac 136672 bytes_out 0 136672 bytes_in 0 136672 station_ip 5.119.70.37 136672 port 319 136672 unique_id port 136672 remote_ip 10.8.0.22 136673 username morteza 136673 mac 136673 bytes_out 136832 136673 bytes_in 2470448 136673 station_ip 83.122.88.45 136673 port 315 136673 unique_id port 136673 remote_ip 10.8.0.46 136675 username sekonji3 136675 mac 136675 bytes_out 0 136675 bytes_in 0 136675 station_ip 37.129.181.17 136675 port 315 136675 unique_id port 136675 remote_ip 10.8.0.6 136677 username godarzi 136677 mac 136677 bytes_out 2504783 136677 bytes_in 42564234 136677 station_ip 5.202.62.33 136677 port 312 136677 unique_id port 136677 remote_ip 10.8.0.174 136683 username sekonji3 136683 mac 136683 bytes_out 0 136683 bytes_in 0 136683 station_ip 37.129.181.17 136683 port 315 136683 unique_id port 136683 remote_ip 10.8.0.6 136691 username farhad2 136691 mac 136691 bytes_out 0 136691 bytes_in 0 136691 station_ip 5.119.137.100 136691 port 188 136691 unique_id port 136693 username sekonji3 136693 mac 136693 bytes_out 31592 136693 bytes_in 40935 136693 station_ip 37.129.181.17 136693 port 299 136693 unique_id port 136693 remote_ip 10.8.0.6 136695 username farhad2 136695 mac 136695 bytes_out 0 136695 bytes_in 0 136695 station_ip 5.119.137.100 136695 port 188 136695 unique_id port 136695 remote_ip 10.8.1.222 136699 username godarzi 136699 mac 136699 bytes_out 0 136699 bytes_in 0 136699 station_ip 5.202.62.33 136699 port 312 136699 unique_id port 136699 remote_ip 10.8.0.174 136701 username amir 136701 mac 136701 bytes_out 0 136701 bytes_in 0 136701 station_ip 46.225.212.186 136701 port 324 136701 unique_id port 136701 remote_ip 10.8.0.50 136705 username houshang 136705 mac 136705 bytes_out 0 136705 bytes_in 0 136705 station_ip 5.119.70.37 136705 port 319 136705 unique_id port 136705 remote_ip 10.8.0.22 136710 username vanila 136710 mac 136710 bytes_out 0 136710 bytes_in 0 136710 station_ip 83.122.53.225 136710 port 312 136710 unique_id port 136710 remote_ip 10.8.0.178 136712 username farhad2 136712 mac 136712 bytes_out 0 136712 bytes_in 0 136712 station_ip 5.119.128.161 136712 port 312 136712 unique_id port 136712 remote_ip 10.8.0.190 136714 username morteza 136714 mac 136714 bytes_out 0 136714 bytes_in 0 136714 station_ip 83.122.88.45 136714 port 304 136714 unique_id port 136715 username sekonji3 136715 mac 136715 bytes_out 0 136715 bytes_in 0 136715 station_ip 37.129.181.17 136715 port 299 136715 unique_id port 136715 remote_ip 10.8.0.6 136716 username sekonji3 136716 mac 136716 bytes_out 0 136716 bytes_in 0 136716 station_ip 37.129.181.17 136716 port 287 136716 unique_id port 136716 remote_ip 10.8.0.6 136727 username houshang 136727 mac 136727 bytes_out 0 136727 bytes_in 0 136727 station_ip 5.119.70.37 136727 port 304 136727 unique_id port 136727 remote_ip 10.8.0.22 136729 username farhad2 136729 mac 136729 bytes_out 2007659 136729 bytes_in 17158759 136729 station_ip 5.119.128.161 136729 port 287 136729 unique_id port 136729 remote_ip 10.8.0.190 136730 username farhad2 136730 mac 136730 bytes_out 0 136730 bytes_in 0 136730 station_ip 5.119.128.161 136730 port 299 136669 username amirabbas 136669 unique_id port 136669 terminate_cause User-Request 136669 bytes_out 50969708 136669 bytes_in 1502355547 136669 station_ip 37.27.19.221 136669 port 15730551 136669 nas_port_type Virtual 136669 remote_ip 5.5.5.251 136671 username sekonji3 136671 mac 136671 bytes_out 45872 136671 bytes_in 72761 136671 station_ip 37.129.181.17 136671 port 304 136671 unique_id port 136671 remote_ip 10.8.0.6 136678 username amir 136678 mac 136678 bytes_out 71055 136678 bytes_in 238044 136678 station_ip 46.225.212.186 136678 port 321 136678 unique_id port 136678 remote_ip 10.8.0.50 136681 username sekonji3 136681 mac 136681 bytes_out 268399 136681 bytes_in 3379684 136681 station_ip 37.129.181.17 136681 port 315 136681 unique_id port 136681 remote_ip 10.8.0.6 136682 username farhad2 136682 kill_reason Another user logged on this global unique id 136682 mac 136682 bytes_out 0 136682 bytes_in 0 136682 station_ip 5.119.137.100 136682 port 188 136682 unique_id port 136682 remote_ip 10.8.1.222 136685 username houshang 136685 mac 136685 bytes_out 0 136685 bytes_in 0 136685 station_ip 5.119.70.37 136685 port 319 136685 unique_id port 136686 username sabaghnezhad 136686 mac 136686 bytes_out 23218 136686 bytes_in 31691 136686 station_ip 83.123.164.238 136686 port 315 136686 unique_id port 136686 remote_ip 10.8.0.186 136687 username sabaghnezhad 136687 mac 136687 bytes_out 37063 136687 bytes_in 46987 136687 station_ip 83.123.16.62 136687 port 315 136687 unique_id port 136687 remote_ip 10.8.0.186 136690 username morteza 136690 kill_reason Another user logged on this global unique id 136690 mac 136690 bytes_out 0 136690 bytes_in 0 136690 station_ip 83.122.88.45 136690 port 304 136690 unique_id port 136690 remote_ip 10.8.0.46 136698 username vanila 136698 mac 136698 bytes_out 2500727 136698 bytes_in 220492 136698 station_ip 83.122.53.225 136698 port 299 136698 unique_id port 136698 remote_ip 10.8.0.178 136703 username farhad2 136703 mac 136703 bytes_out 357004 136703 bytes_in 997240 136703 station_ip 5.119.137.100 136703 port 187 136703 unique_id port 136703 remote_ip 10.8.1.222 136706 username godarzi 136706 mac 136706 bytes_out 0 136706 bytes_in 0 136706 station_ip 5.202.62.33 136706 port 312 136706 unique_id port 136706 remote_ip 10.8.0.174 136708 username farhad2 136708 mac 136708 bytes_out 47545 136708 bytes_in 228369 136708 station_ip 5.119.137.100 136708 port 187 136708 unique_id port 136708 remote_ip 10.8.1.222 136709 username morteza 136709 kill_reason Another user logged on this global unique id 136709 mac 136709 bytes_out 0 136709 bytes_in 0 136709 station_ip 83.122.88.45 136709 port 304 136709 unique_id port 136711 username jafari 136711 kill_reason Another user logged on this global unique id 136711 mac 136711 bytes_out 0 136711 bytes_in 0 136711 station_ip 5.134.162.254 136711 port 322 136711 unique_id port 136713 username houshang 136713 mac 136713 bytes_out 0 136713 bytes_in 0 136713 station_ip 5.119.70.37 136713 port 287 136713 unique_id port 136713 remote_ip 10.8.0.22 136717 username farhad2 136717 mac 136717 bytes_out 0 136717 bytes_in 0 136717 station_ip 5.119.128.161 136717 port 324 136717 unique_id port 136717 remote_ip 10.8.0.190 136718 username farhad2 136718 mac 136718 bytes_out 0 136718 bytes_in 0 136718 station_ip 5.119.128.161 136718 port 287 136718 unique_id port 136718 remote_ip 10.8.0.190 136720 username forozandeh1 136720 mac 136720 bytes_out 0 136720 bytes_in 0 136720 station_ip 83.122.18.204 136670 bytes_out 1905235 136670 bytes_in 23985242 136670 station_ip 113.203.5.115 136670 port 321 136670 unique_id port 136670 remote_ip 10.8.0.198 136674 username morteza 136674 mac 136674 bytes_out 0 136674 bytes_in 0 136674 station_ip 83.122.88.45 136674 port 304 136674 unique_id port 136674 remote_ip 10.8.0.46 136676 username aminvpn 136676 mac 136676 bytes_out 0 136676 bytes_in 0 136676 station_ip 83.123.197.19 136676 port 321 136676 unique_id port 136676 remote_ip 10.8.0.14 136679 username aminvpn 136679 unique_id port 136679 terminate_cause Lost-Carrier 136679 bytes_out 1440828 136679 bytes_in 32354580 136679 station_ip 5.233.49.34 136679 port 15730562 136679 nas_port_type Virtual 136679 remote_ip 5.5.5.248 136680 username jafari 136680 kill_reason Another user logged on this global unique id 136680 mac 136680 bytes_out 0 136680 bytes_in 0 136680 station_ip 5.134.162.254 136680 port 322 136680 unique_id port 136680 remote_ip 10.8.0.242 136684 username sabaghnezhad 136684 mac 136684 bytes_out 837894 136684 bytes_in 1422240 136684 station_ip 37.129.255.93 136684 port 299 136684 unique_id port 136684 remote_ip 10.8.0.186 136688 username amir 136688 mac 136688 bytes_out 57254 136688 bytes_in 441999 136688 station_ip 46.225.212.186 136688 port 321 136688 unique_id port 136688 remote_ip 10.8.0.50 136689 username alihosseini1 136689 mac 136689 bytes_out 0 136689 bytes_in 0 136689 station_ip 5.119.19.193 136689 port 187 136689 unique_id port 136689 remote_ip 10.8.1.106 136692 username amir 136692 kill_reason Maximum check online fails reached 136692 mac 136692 bytes_out 0 136692 bytes_in 0 136692 station_ip 46.225.212.186 136692 port 321 136692 unique_id port 136694 username houshang 136694 mac 136694 bytes_out 0 136694 bytes_in 0 136694 station_ip 5.119.70.37 136694 port 319 136694 unique_id port 136694 remote_ip 10.8.0.22 136696 username amir 136696 mac 136696 bytes_out 0 136696 bytes_in 0 136696 station_ip 46.225.212.186 136696 port 187 136696 unique_id port 136696 remote_ip 10.8.1.22 136697 username alihosseini1 136697 mac 136697 bytes_out 10873 136697 bytes_in 45820 136697 station_ip 5.119.19.193 136697 port 323 136697 unique_id port 136697 remote_ip 10.8.0.166 136700 username jafari 136700 kill_reason Another user logged on this global unique id 136700 mac 136700 bytes_out 0 136700 bytes_in 0 136700 station_ip 5.134.162.254 136700 port 322 136700 unique_id port 136702 username amir 136702 mac 136702 bytes_out 0 136702 bytes_in 0 136702 station_ip 46.225.212.186 136702 port 312 136702 unique_id port 136702 remote_ip 10.8.0.50 136704 username morteza 136704 kill_reason Another user logged on this global unique id 136704 mac 136704 bytes_out 0 136704 bytes_in 0 136704 station_ip 83.122.88.45 136704 port 304 136704 unique_id port 136707 username malekpoir 136707 mac 136707 bytes_out 0 136707 bytes_in 0 136707 station_ip 5.119.123.141 136707 port 287 136707 unique_id port 136707 remote_ip 10.8.0.58 136719 username amir 136719 mac 136719 bytes_out 0 136719 bytes_in 0 136719 station_ip 46.225.212.186 136719 port 319 136719 unique_id port 136719 remote_ip 10.8.0.50 136723 username jafari 136723 kill_reason Another user logged on this global unique id 136723 mac 136723 bytes_out 0 136723 bytes_in 0 136723 station_ip 5.134.162.254 136723 port 322 136723 unique_id port 136724 username sekonji3 136724 mac 136724 bytes_out 0 136724 bytes_in 0 136724 station_ip 37.129.181.17 136724 port 299 136724 unique_id port 136720 port 312 136720 unique_id port 136720 remote_ip 10.8.0.130 136721 username sekonji3 136721 mac 136721 bytes_out 0 136721 bytes_in 0 136721 station_ip 37.129.181.17 136721 port 299 136721 unique_id port 136721 remote_ip 10.8.0.6 136722 username alihosseini1 136722 kill_reason Another user logged on this global unique id 136722 mac 136722 bytes_out 0 136722 bytes_in 0 136722 station_ip 5.119.19.193 136722 port 323 136722 unique_id port 136722 remote_ip 10.8.0.166 136725 username amin.saeedi 136725 unique_id port 136725 terminate_cause User-Request 136725 bytes_out 4890083 136725 bytes_in 112310222 136725 station_ip 5.120.49.49 136725 port 15730563 136725 nas_port_type Virtual 136725 remote_ip 5.5.5.253 136726 username alihosseini1 136726 mac 136726 bytes_out 0 136726 bytes_in 0 136726 station_ip 5.119.19.193 136726 port 323 136726 unique_id port 136731 username amir 136731 mac 136731 bytes_out 68366 136731 bytes_in 417461 136731 station_ip 46.225.212.186 136731 port 287 136731 unique_id port 136731 remote_ip 10.8.0.50 136732 username jafari 136732 kill_reason Another user logged on this global unique id 136732 mac 136732 bytes_out 0 136732 bytes_in 0 136732 station_ip 5.134.162.254 136732 port 322 136732 unique_id port 136734 username farhad2 136734 mac 136734 bytes_out 0 136734 bytes_in 0 136734 station_ip 5.119.128.161 136734 port 299 136734 unique_id port 136734 remote_ip 10.8.0.190 136735 username sekonji3 136735 mac 136735 bytes_out 0 136735 bytes_in 0 136735 station_ip 37.129.181.17 136735 port 287 136735 unique_id port 136735 remote_ip 10.8.0.6 136736 username alireza 136736 unique_id port 136736 terminate_cause Lost-Carrier 136736 bytes_out 10478627 136736 bytes_in 198542385 136736 station_ip 5.120.164.56 136736 port 15730556 136736 nas_port_type Virtual 136736 remote_ip 5.5.5.254 136745 username sekonji3 136745 mac 136745 bytes_out 0 136745 bytes_in 0 136745 station_ip 37.129.181.17 136745 port 304 136745 unique_id port 136745 remote_ip 10.8.0.6 136750 username khalili 136750 mac 136750 bytes_out 0 136750 bytes_in 0 136750 station_ip 5.119.71.219 136750 port 320 136750 unique_id port 136752 username vanila 136752 mac 136752 bytes_out 283245 136752 bytes_in 1142753 136752 station_ip 83.122.107.81 136752 port 304 136752 unique_id port 136752 remote_ip 10.8.0.178 136756 username barzegar 136756 mac 136756 bytes_out 5763 136756 bytes_in 8889 136756 station_ip 5.119.185.96 136756 port 189 136756 unique_id port 136756 remote_ip 10.8.1.174 136758 username hosseine 136758 kill_reason Another user logged on this global unique id 136758 mac 136758 bytes_out 0 136758 bytes_in 0 136758 station_ip 37.129.51.214 136758 port 282 136758 unique_id port 136759 username sekonji3 136759 mac 136759 bytes_out 0 136759 bytes_in 0 136759 station_ip 37.129.181.17 136759 port 319 136759 unique_id port 136759 remote_ip 10.8.0.6 136760 username sekonji3 136760 mac 136760 bytes_out 0 136760 bytes_in 0 136760 station_ip 37.129.181.17 136760 port 319 136760 unique_id port 136760 remote_ip 10.8.0.6 136765 username hamidsalari1 136765 mac 136765 bytes_out 1043909 136765 bytes_in 2527462 136765 station_ip 83.122.179.53 136765 port 188 136765 unique_id port 136765 remote_ip 10.8.1.170 136767 username mahdiyehalizadeh 136767 mac 136767 bytes_out 1308836 136767 bytes_in 12469627 136767 station_ip 83.122.22.94 136767 port 304 136767 unique_id port 136767 remote_ip 10.8.0.82 136769 username jafari 136769 kill_reason Another user logged on this global unique id 136724 remote_ip 10.8.0.6 136728 username sekonji3 136728 mac 136728 bytes_out 0 136728 bytes_in 0 136728 station_ip 37.129.181.17 136728 port 299 136728 unique_id port 136728 remote_ip 10.8.0.6 136733 username amir 136733 mac 136733 bytes_out 0 136733 bytes_in 0 136733 station_ip 46.225.212.186 136733 port 312 136733 unique_id port 136733 remote_ip 10.8.0.50 136739 username farhad2 136739 mac 136739 bytes_out 1288693 136739 bytes_in 7893488 136739 station_ip 5.119.128.161 136739 port 187 136739 unique_id port 136739 remote_ip 10.8.1.222 136740 username yaghobi 136740 mac 136740 bytes_out 0 136740 bytes_in 0 136740 station_ip 113.203.5.115 136740 port 304 136740 unique_id port 136740 remote_ip 10.8.0.198 136741 username sekonji3 136741 mac 136741 bytes_out 220459 136741 bytes_in 1423330 136741 station_ip 37.129.181.17 136741 port 287 136741 unique_id port 136741 remote_ip 10.8.0.6 136742 username khalili 136742 kill_reason Another user logged on this global unique id 136742 mac 136742 bytes_out 0 136742 bytes_in 0 136742 station_ip 5.119.71.219 136742 port 320 136742 unique_id port 136742 remote_ip 10.8.0.86 136743 username sekonji3 136743 mac 136743 bytes_out 0 136743 bytes_in 0 136743 station_ip 37.129.181.17 136743 port 304 136743 unique_id port 136743 remote_ip 10.8.0.6 136744 username sekonji3 136744 mac 136744 bytes_out 0 136744 bytes_in 0 136744 station_ip 37.129.181.17 136744 port 304 136744 unique_id port 136744 remote_ip 10.8.0.6 136747 username sekonji3 136747 mac 136747 bytes_out 0 136747 bytes_in 0 136747 station_ip 37.129.181.17 136747 port 319 136747 unique_id port 136747 remote_ip 10.8.0.6 136761 username sekonji3 136761 mac 136761 bytes_out 0 136761 bytes_in 0 136761 station_ip 37.129.181.17 136761 port 320 136761 unique_id port 136761 remote_ip 10.8.0.6 136763 username vanila 136763 mac 136763 bytes_out 426647 136763 bytes_in 263954 136763 station_ip 83.122.107.81 136763 port 319 136763 unique_id port 136763 remote_ip 10.8.0.178 136764 username sekonji3 136764 mac 136764 bytes_out 0 136764 bytes_in 0 136764 station_ip 37.129.181.17 136764 port 319 136764 unique_id port 136764 remote_ip 10.8.0.6 136768 username farhad2 136768 kill_reason Another user logged on this global unique id 136768 mac 136768 bytes_out 0 136768 bytes_in 0 136768 station_ip 5.119.128.161 136768 port 187 136768 unique_id port 136773 username amir 136773 kill_reason Another user logged on this global unique id 136773 mac 136773 bytes_out 0 136773 bytes_in 0 136773 station_ip 46.225.212.186 136773 port 287 136773 unique_id port 136773 remote_ip 10.8.0.50 136776 username barzegar 136776 mac 136776 bytes_out 0 136776 bytes_in 0 136776 station_ip 5.119.185.96 136776 port 304 136776 unique_id port 136776 remote_ip 10.8.0.234 136780 username jafari 136780 kill_reason Another user logged on this global unique id 136780 mac 136780 bytes_out 0 136780 bytes_in 0 136780 station_ip 5.134.162.254 136780 port 322 136780 unique_id port 136781 username farhad2 136781 mac 136781 bytes_out 0 136781 bytes_in 0 136781 station_ip 5.119.78.223 136781 port 304 136781 unique_id port 136781 remote_ip 10.8.0.190 136783 username amir 136783 mac 136783 bytes_out 3704 136783 bytes_in 7180 136783 station_ip 46.225.212.186 136783 port 304 136783 unique_id port 136783 remote_ip 10.8.0.50 136785 username vanila 136785 mac 136785 bytes_out 0 136785 bytes_in 0 136785 station_ip 83.122.107.81 136785 port 304 136730 unique_id port 136730 remote_ip 10.8.0.190 136737 username hamidsalari1 136737 mac 136737 bytes_out 1585329 136737 bytes_in 17765360 136737 station_ip 83.123.79.110 136737 port 304 136737 unique_id port 136737 remote_ip 10.8.0.226 136738 username hamidsalari1 136738 mac 136738 bytes_out 0 136738 bytes_in 0 136738 station_ip 83.122.179.53 136738 port 319 136738 unique_id port 136738 remote_ip 10.8.0.226 136746 username farhad2 136746 kill_reason Another user logged on this global unique id 136746 mac 136746 bytes_out 0 136746 bytes_in 0 136746 station_ip 5.119.128.161 136746 port 187 136746 unique_id port 136746 remote_ip 10.8.1.222 136748 username jafari 136748 kill_reason Another user logged on this global unique id 136748 mac 136748 bytes_out 0 136748 bytes_in 0 136748 station_ip 5.134.162.254 136748 port 322 136748 unique_id port 136749 username khalili 136749 kill_reason Another user logged on this global unique id 136749 mac 136749 bytes_out 0 136749 bytes_in 0 136749 station_ip 5.119.71.219 136749 port 320 136749 unique_id port 136751 username sekonji3 136751 mac 136751 bytes_out 5308 136751 bytes_in 7629 136751 station_ip 37.129.181.17 136751 port 319 136751 unique_id port 136751 remote_ip 10.8.0.6 136753 username mehdizare 136753 mac 136753 bytes_out 292778 136753 bytes_in 950684 136753 station_ip 5.120.148.206 136753 port 185 136753 unique_id port 136753 remote_ip 10.8.1.42 136754 username sekonji3 136754 mac 136754 bytes_out 0 136754 bytes_in 0 136754 station_ip 37.129.181.17 136754 port 304 136754 unique_id port 136754 remote_ip 10.8.0.6 136755 username jafari 136755 kill_reason Another user logged on this global unique id 136755 mac 136755 bytes_out 0 136755 bytes_in 0 136755 station_ip 5.134.162.254 136755 port 322 136755 unique_id port 136757 username vanila 136757 mac 136757 bytes_out 162331 136757 bytes_in 268126 136757 station_ip 83.122.107.81 136757 port 320 136757 unique_id port 136757 remote_ip 10.8.0.178 136762 username sekonji3 136762 mac 136762 bytes_out 0 136762 bytes_in 0 136762 station_ip 37.129.181.17 136762 port 320 136762 unique_id port 136762 remote_ip 10.8.0.6 136766 username barzegar 136766 mac 136766 bytes_out 0 136766 bytes_in 0 136766 station_ip 5.119.185.96 136766 port 319 136766 unique_id port 136766 remote_ip 10.8.0.234 136774 username hashtadani3 136774 mac 136774 bytes_out 0 136774 bytes_in 0 136774 station_ip 37.129.143.161 136774 port 312 136774 unique_id port 136774 remote_ip 10.8.0.154 136777 username hashtadani3 136777 mac 136777 bytes_out 0 136777 bytes_in 0 136777 station_ip 37.129.143.161 136777 port 304 136777 unique_id port 136777 remote_ip 10.8.0.154 136782 username amir 136782 mac 136782 bytes_out 0 136782 bytes_in 0 136782 station_ip 46.225.212.186 136782 port 287 136782 unique_id port 136784 username farhad2 136784 mac 136784 bytes_out 1179078 136784 bytes_in 19043270 136784 station_ip 5.119.78.223 136784 port 287 136784 unique_id port 136784 remote_ip 10.8.0.190 136786 username hashtadani3 136786 kill_reason Another user logged on this global unique id 136786 mac 136786 bytes_out 0 136786 bytes_in 0 136786 station_ip 37.129.143.161 136786 port 312 136786 unique_id port 136786 remote_ip 10.8.0.154 136788 username vanila 136788 mac 136788 bytes_out 0 136788 bytes_in 0 136788 station_ip 83.122.107.81 136788 port 287 136788 unique_id port 136788 remote_ip 10.8.0.178 136792 username hashtadani3 136792 mac 136792 bytes_out 0 136792 bytes_in 0 136769 mac 136769 bytes_out 0 136769 bytes_in 0 136769 station_ip 5.134.162.254 136769 port 322 136769 unique_id port 136770 username aminvpn 136770 mac 136770 bytes_out 0 136770 bytes_in 0 136770 station_ip 83.123.197.19 136770 port 312 136770 unique_id port 136770 remote_ip 10.8.0.14 136771 username farhad2 136771 mac 136771 bytes_out 0 136771 bytes_in 0 136771 station_ip 5.119.128.161 136771 port 187 136771 unique_id port 136772 username aminvpn 136772 mac 136772 bytes_out 0 136772 bytes_in 0 136772 station_ip 83.123.197.19 136772 port 319 136772 unique_id port 136772 remote_ip 10.8.0.14 136775 username hashtadani3 136775 mac 136775 bytes_out 0 136775 bytes_in 0 136775 station_ip 37.129.143.161 136775 port 312 136775 unique_id port 136775 remote_ip 10.8.0.154 136778 username farhad2 136778 mac 136778 bytes_out 184444 136778 bytes_in 1774227 136778 station_ip 5.119.78.223 136778 port 185 136778 unique_id port 136778 remote_ip 10.8.1.222 136779 username arash 136779 mac 136779 bytes_out 1047605 136779 bytes_in 6028309 136779 station_ip 37.27.16.21 136779 port 316 136779 unique_id port 136779 remote_ip 10.8.0.114 136790 username alikomsari 136790 kill_reason Another user logged on this global unique id 136790 mac 136790 bytes_out 0 136790 bytes_in 0 136790 station_ip 5.119.109.141 136790 port 299 136790 unique_id port 136790 remote_ip 10.8.0.70 136791 username amir 136791 mac 136791 bytes_out 1198759 136791 bytes_in 12187098 136791 station_ip 46.225.212.186 136791 port 185 136791 unique_id port 136791 remote_ip 10.8.1.22 136793 username hashtadani3 136793 mac 136793 bytes_out 0 136793 bytes_in 0 136793 station_ip 37.129.143.161 136793 port 304 136793 unique_id port 136793 remote_ip 10.8.0.154 136798 username hashtadani3 136798 kill_reason Maximum check online fails reached 136798 mac 136798 bytes_out 0 136798 bytes_in 0 136798 station_ip 37.129.143.161 136798 port 185 136798 unique_id port 136802 username sobhan 136802 unique_id port 136802 terminate_cause Lost-Carrier 136802 bytes_out 169860 136802 bytes_in 1360890 136802 station_ip 5.119.112.220 136802 port 15730568 136802 nas_port_type Virtual 136802 remote_ip 5.5.5.254 136805 username jafari 136805 kill_reason Another user logged on this global unique id 136805 mac 136805 bytes_out 0 136805 bytes_in 0 136805 station_ip 5.134.162.254 136805 port 322 136805 unique_id port 136814 username hashtadani3 136814 mac 136814 bytes_out 0 136814 bytes_in 0 136814 station_ip 37.129.143.161 136814 port 312 136814 unique_id port 136814 remote_ip 10.8.0.154 136815 username hashtadani3 136815 mac 136815 bytes_out 0 136815 bytes_in 0 136815 station_ip 37.129.143.161 136815 port 312 136815 unique_id port 136815 remote_ip 10.8.0.154 136816 username godarzi 136816 mac 136816 bytes_out 0 136816 bytes_in 0 136816 station_ip 5.202.62.33 136816 port 312 136816 unique_id port 136816 remote_ip 10.8.0.174 136817 username barzegar 136817 mac 136817 bytes_out 0 136817 bytes_in 0 136817 station_ip 5.119.185.96 136817 port 312 136817 unique_id port 136817 remote_ip 10.8.0.234 136821 username barzegar 136821 mac 136821 bytes_out 0 136821 bytes_in 0 136821 station_ip 5.119.185.96 136821 port 312 136821 unique_id port 136821 remote_ip 10.8.0.234 136823 username farhad2 136823 mac 136823 bytes_out 2925243 136823 bytes_in 36134816 136823 station_ip 5.119.78.223 136823 port 304 136823 unique_id port 136823 remote_ip 10.8.0.190 136824 username hashtadani3 136785 unique_id port 136785 remote_ip 10.8.0.178 136787 username barzegar 136787 mac 136787 bytes_out 0 136787 bytes_in 0 136787 station_ip 5.119.185.96 136787 port 188 136787 unique_id port 136787 remote_ip 10.8.1.174 136789 username jafari 136789 kill_reason Another user logged on this global unique id 136789 mac 136789 bytes_out 0 136789 bytes_in 0 136789 station_ip 5.134.162.254 136789 port 322 136789 unique_id port 136794 username barzegar 136794 mac 136794 bytes_out 0 136794 bytes_in 0 136794 station_ip 5.119.185.96 136794 port 185 136794 unique_id port 136794 remote_ip 10.8.1.174 136797 username jafari 136797 kill_reason Another user logged on this global unique id 136797 mac 136797 bytes_out 0 136797 bytes_in 0 136797 station_ip 5.134.162.254 136797 port 322 136797 unique_id port 136799 username hashtadani3 136799 mac 136799 bytes_out 0 136799 bytes_in 0 136799 station_ip 37.129.143.161 136799 port 188 136799 unique_id port 136799 remote_ip 10.8.1.94 136800 username hashtadani3 136800 mac 136800 bytes_out 0 136800 bytes_in 0 136800 station_ip 37.129.143.161 136800 port 304 136800 unique_id port 136800 remote_ip 10.8.0.154 136803 username hashtadani3 136803 mac 136803 bytes_out 0 136803 bytes_in 0 136803 station_ip 37.129.143.161 136803 port 304 136803 unique_id port 136803 remote_ip 10.8.0.154 136808 username hashtadani3 136808 mac 136808 bytes_out 0 136808 bytes_in 0 136808 station_ip 37.129.143.161 136808 port 304 136808 unique_id port 136808 remote_ip 10.8.0.154 136809 username barzegar 136809 mac 136809 bytes_out 0 136809 bytes_in 0 136809 station_ip 5.119.185.96 136809 port 304 136809 unique_id port 136809 remote_ip 10.8.0.234 136819 username hashtadani3 136819 mac 136819 bytes_out 0 136819 bytes_in 0 136819 station_ip 37.129.143.161 136819 port 312 136819 unique_id port 136819 remote_ip 10.8.0.154 136822 username hashtadani3 136822 mac 136822 bytes_out 0 136822 bytes_in 0 136822 station_ip 37.129.143.161 136822 port 312 136822 unique_id port 136822 remote_ip 10.8.0.154 136831 username hashtadani3 136831 mac 136831 bytes_out 0 136831 bytes_in 0 136831 station_ip 37.129.143.161 136831 port 299 136831 unique_id port 136831 remote_ip 10.8.0.154 136834 username barzegar 136834 mac 136834 bytes_out 0 136834 bytes_in 0 136834 station_ip 5.119.185.96 136834 port 190 136834 unique_id port 136834 remote_ip 10.8.1.174 136837 username hashtadani3 136837 mac 136837 bytes_out 0 136837 bytes_in 0 136837 station_ip 37.129.143.161 136837 port 304 136837 unique_id port 136837 remote_ip 10.8.0.154 136842 username barzegar 136842 mac 136842 bytes_out 0 136842 bytes_in 0 136842 station_ip 5.119.185.96 136842 port 190 136842 unique_id port 136842 remote_ip 10.8.1.174 136844 username hassan 136844 kill_reason Another user logged on this global unique id 136844 mac 136844 bytes_out 0 136844 bytes_in 0 136844 station_ip 5.119.103.24 136844 port 299 136844 unique_id port 136848 username aminvpn 136848 mac 136848 bytes_out 0 136848 bytes_in 0 136848 station_ip 37.129.84.217 136848 port 304 136848 unique_id port 136851 username hassan 136851 kill_reason Another user logged on this global unique id 136851 mac 136851 bytes_out 0 136851 bytes_in 0 136851 station_ip 5.119.103.24 136851 port 299 136851 unique_id port 136852 username farhad2 136852 mac 136852 bytes_out 680353 136852 bytes_in 15101103 136852 station_ip 5.119.78.223 136852 port 188 136852 unique_id port 136792 station_ip 37.129.143.161 136792 port 312 136792 unique_id port 136795 username hashtadani3 136795 mac 136795 bytes_out 0 136795 bytes_in 0 136795 station_ip 37.129.143.161 136795 port 304 136795 unique_id port 136795 remote_ip 10.8.0.154 136796 username sobhan 136796 unique_id port 136796 terminate_cause Lost-Carrier 136796 bytes_out 170124 136796 bytes_in 1500296 136796 station_ip 5.119.112.220 136796 port 15730567 136796 nas_port_type Virtual 136796 remote_ip 5.5.5.254 136801 username farhad2 136801 mac 136801 bytes_out 2584860 136801 bytes_in 32995980 136801 station_ip 5.119.78.223 136801 port 187 136801 unique_id port 136801 remote_ip 10.8.1.222 136804 username barzegar 136804 mac 136804 bytes_out 0 136804 bytes_in 0 136804 station_ip 5.119.185.96 136804 port 188 136804 unique_id port 136804 remote_ip 10.8.1.174 136806 username hashtadani3 136806 mac 136806 bytes_out 0 136806 bytes_in 0 136806 station_ip 37.129.143.161 136806 port 304 136806 unique_id port 136806 remote_ip 10.8.0.154 136807 username hamidsalari1 136807 mac 136807 bytes_out 43339 136807 bytes_in 79309 136807 station_ip 83.122.179.53 136807 port 187 136807 unique_id port 136807 remote_ip 10.8.1.170 136810 username hashtadani3 136810 kill_reason Maximum check online fails reached 136810 mac 136810 bytes_out 0 136810 bytes_in 0 136810 station_ip 37.129.143.161 136810 port 189 136810 unique_id port 136811 username hashtadani3 136811 mac 136811 bytes_out 0 136811 bytes_in 0 136811 station_ip 37.129.143.161 136811 port 304 136811 unique_id port 136811 remote_ip 10.8.0.154 136812 username farhad2 136812 mac 136812 bytes_out 3038684 136812 bytes_in 20107083 136812 station_ip 5.119.78.223 136812 port 188 136812 unique_id port 136812 remote_ip 10.8.1.222 136813 username jafari 136813 kill_reason Another user logged on this global unique id 136813 mac 136813 bytes_out 0 136813 bytes_in 0 136813 station_ip 5.134.162.254 136813 port 322 136813 unique_id port 136818 username alikomsari 136818 kill_reason Another user logged on this global unique id 136818 mac 136818 bytes_out 0 136818 bytes_in 0 136818 station_ip 5.119.109.141 136818 port 299 136818 unique_id port 136820 username alirezazadeh 136820 unique_id port 136820 terminate_cause Lost-Carrier 136820 bytes_out 5223650 136820 bytes_in 226834307 136820 station_ip 5.119.194.131 136820 port 15730565 136820 nas_port_type Virtual 136820 remote_ip 5.5.5.6 136826 username jafari 136826 kill_reason Another user logged on this global unique id 136826 mac 136826 bytes_out 0 136826 bytes_in 0 136826 station_ip 5.134.162.254 136826 port 322 136826 unique_id port 136828 username hashtadani3 136828 mac 136828 bytes_out 0 136828 bytes_in 0 136828 station_ip 37.129.143.161 136828 port 299 136828 unique_id port 136828 remote_ip 10.8.0.154 136833 username hashtadani3 136833 mac 136833 bytes_out 0 136833 bytes_in 0 136833 station_ip 37.129.143.161 136833 port 299 136833 unique_id port 136833 remote_ip 10.8.0.154 136836 username hassan 136836 kill_reason Another user logged on this global unique id 136836 mac 136836 bytes_out 0 136836 bytes_in 0 136836 station_ip 5.119.103.24 136836 port 299 136836 unique_id port 136836 remote_ip 10.8.0.122 136838 username hashtadani3 136838 mac 136838 bytes_out 2058 136838 bytes_in 4600 136838 station_ip 37.129.143.161 136838 port 304 136838 unique_id port 136838 remote_ip 10.8.0.154 136840 username farhad2 136840 kill_reason Another user logged on this global unique id 136840 mac 136840 bytes_out 0 136840 bytes_in 0 136840 station_ip 5.119.78.223 136824 mac 136824 bytes_out 0 136824 bytes_in 0 136824 station_ip 37.129.143.161 136824 port 312 136824 unique_id port 136824 remote_ip 10.8.0.154 136825 username alikomsari 136825 mac 136825 bytes_out 0 136825 bytes_in 0 136825 station_ip 5.119.109.141 136825 port 299 136825 unique_id port 136827 username farhad2 136827 mac 136827 bytes_out 539170 136827 bytes_in 4882421 136827 station_ip 5.119.78.223 136827 port 304 136827 unique_id port 136827 remote_ip 10.8.0.190 136829 username barzegar 136829 mac 136829 bytes_out 0 136829 bytes_in 0 136829 station_ip 5.119.185.96 136829 port 188 136829 unique_id port 136829 remote_ip 10.8.1.174 136830 username hashtadani3 136830 mac 136830 bytes_out 0 136830 bytes_in 0 136830 station_ip 37.129.143.161 136830 port 299 136830 unique_id port 136830 remote_ip 10.8.0.154 136832 username jafari 136832 kill_reason Another user logged on this global unique id 136832 mac 136832 bytes_out 0 136832 bytes_in 0 136832 station_ip 5.134.162.254 136832 port 322 136832 unique_id port 136835 username hashtadani3 136835 mac 136835 bytes_out 0 136835 bytes_in 0 136835 station_ip 37.129.143.161 136835 port 299 136835 unique_id port 136835 remote_ip 10.8.0.154 136839 username mansour 136839 mac 136839 bytes_out 0 136839 bytes_in 0 136839 station_ip 5.202.62.30 136839 port 316 136839 unique_id port 136839 remote_ip 10.8.0.30 136847 username farhad2 136847 mac 136847 bytes_out 0 136847 bytes_in 0 136847 station_ip 5.119.78.223 136847 port 188 136847 unique_id port 136849 username barzegar 136849 mac 136849 bytes_out 0 136849 bytes_in 0 136849 station_ip 5.119.185.96 136849 port 304 136849 unique_id port 136849 remote_ip 10.8.0.234 136859 username jafari 136859 mac 136859 bytes_out 0 136859 bytes_in 0 136859 station_ip 5.134.162.254 136859 port 322 136859 unique_id port 136862 username hosseine 136862 kill_reason Maximum check online fails reached 136862 mac 136862 bytes_out 0 136862 bytes_in 0 136862 station_ip 37.129.51.214 136862 port 282 136862 unique_id port 136863 username sabaghnezhad 136863 mac 136863 bytes_out 0 136863 bytes_in 0 136863 station_ip 83.123.217.86 136863 port 315 136863 unique_id port 136863 remote_ip 10.8.0.186 136865 username barzegar 136865 mac 136865 bytes_out 0 136865 bytes_in 0 136865 station_ip 5.119.185.96 136865 port 190 136865 unique_id port 136865 remote_ip 10.8.1.174 136870 username hashtadani3 136870 mac 136870 bytes_out 0 136870 bytes_in 0 136870 station_ip 37.129.143.161 136870 port 299 136870 unique_id port 136870 remote_ip 10.8.0.154 136872 username barzegar 136872 mac 136872 bytes_out 0 136872 bytes_in 0 136872 station_ip 5.119.185.96 136872 port 191 136872 unique_id port 136872 remote_ip 10.8.1.174 136873 username hashtadani3 136873 mac 136873 bytes_out 0 136873 bytes_in 0 136873 station_ip 37.129.143.161 136873 port 299 136873 unique_id port 136873 remote_ip 10.8.0.154 136874 username farhad2 136874 mac 136874 bytes_out 433029 136874 bytes_in 302268 136874 station_ip 5.119.166.209 136874 port 190 136874 unique_id port 136874 remote_ip 10.8.1.222 136878 username farhad2 136878 kill_reason Another user logged on this global unique id 136878 mac 136878 bytes_out 0 136878 bytes_in 0 136878 station_ip 5.120.69.189 136878 port 191 136878 unique_id port 136878 remote_ip 10.8.1.222 136881 username farhad2 136881 mac 136881 bytes_out 0 136881 bytes_in 0 136881 station_ip 5.120.69.189 136840 port 188 136840 unique_id port 136840 remote_ip 10.8.1.222 136841 username hassan 136841 kill_reason Another user logged on this global unique id 136841 mac 136841 bytes_out 0 136841 bytes_in 0 136841 station_ip 5.119.103.24 136841 port 299 136841 unique_id port 136843 username hashtadani3 136843 mac 136843 bytes_out 0 136843 bytes_in 0 136843 station_ip 37.129.143.161 136843 port 312 136843 unique_id port 136843 remote_ip 10.8.0.154 136845 username aminvpn 136845 kill_reason Another user logged on this global unique id 136845 mac 136845 bytes_out 0 136845 bytes_in 0 136845 station_ip 37.129.84.217 136845 port 304 136845 unique_id port 136845 remote_ip 10.8.0.14 136846 username hashtadani3 136846 mac 136846 bytes_out 0 136846 bytes_in 0 136846 station_ip 37.129.143.161 136846 port 312 136846 unique_id port 136846 remote_ip 10.8.0.154 136850 username hashtadani3 136850 mac 136850 bytes_out 0 136850 bytes_in 0 136850 station_ip 37.129.143.161 136850 port 304 136850 unique_id port 136850 remote_ip 10.8.0.154 136853 username hashtadani3 136853 mac 136853 bytes_out 0 136853 bytes_in 0 136853 station_ip 37.129.143.161 136853 port 304 136853 unique_id port 136853 remote_ip 10.8.0.154 136854 username hassan 136854 kill_reason Another user logged on this global unique id 136854 mac 136854 bytes_out 0 136854 bytes_in 0 136854 station_ip 5.119.103.24 136854 port 299 136854 unique_id port 136855 username hassan 136855 mac 136855 bytes_out 0 136855 bytes_in 0 136855 station_ip 5.119.103.24 136855 port 299 136855 unique_id port 136856 username hashtadani3 136856 mac 136856 bytes_out 0 136856 bytes_in 0 136856 station_ip 37.129.143.161 136856 port 299 136856 unique_id port 136856 remote_ip 10.8.0.154 136858 username sekonji3 136858 mac 136858 bytes_out 82600 136858 bytes_in 207886 136858 station_ip 83.123.167.178 136858 port 299 136858 unique_id port 136858 remote_ip 10.8.0.6 136861 username hashtadani3 136861 kill_reason Maximum check online fails reached 136861 mac 136861 bytes_out 0 136861 bytes_in 0 136861 station_ip 37.129.143.161 136861 port 188 136861 unique_id port 136864 username hashtadani3 136864 mac 136864 bytes_out 0 136864 bytes_in 0 136864 station_ip 37.129.143.161 136864 port 299 136864 unique_id port 136864 remote_ip 10.8.0.154 136867 username hashtadani3 136867 mac 136867 bytes_out 0 136867 bytes_in 0 136867 station_ip 37.129.143.161 136867 port 299 136867 unique_id port 136867 remote_ip 10.8.0.154 136868 username barzegar 136868 mac 136868 bytes_out 0 136868 bytes_in 0 136868 station_ip 5.119.185.96 136868 port 190 136868 unique_id port 136868 remote_ip 10.8.1.174 136875 username shahrooz 136875 unique_id port 136875 terminate_cause User-Request 136875 bytes_out 57845 136875 bytes_in 166185 136875 station_ip 37.129.167.98 136875 port 15730569 136875 nas_port_type Virtual 136875 remote_ip 5.5.5.254 136877 username barzegar 136877 mac 136877 bytes_out 0 136877 bytes_in 0 136877 station_ip 5.119.185.96 136877 port 299 136877 unique_id port 136877 remote_ip 10.8.0.234 136880 username hashtadani3 136880 mac 136880 bytes_out 0 136880 bytes_in 0 136880 station_ip 37.129.143.161 136880 port 299 136880 unique_id port 136880 remote_ip 10.8.0.154 136886 username barzegar 136886 mac 136886 bytes_out 0 136886 bytes_in 0 136886 station_ip 5.119.185.96 136886 port 299 136886 unique_id port 136886 remote_ip 10.8.0.234 136890 username barzegar 136890 mac 136890 bytes_out 0 136890 bytes_in 0 136852 remote_ip 10.8.1.222 136857 username barzegar 136857 mac 136857 bytes_out 0 136857 bytes_in 0 136857 station_ip 5.119.185.96 136857 port 188 136857 unique_id port 136857 remote_ip 10.8.1.174 136860 username hashtadani3 136860 mac 136860 bytes_out 0 136860 bytes_in 0 136860 station_ip 37.129.143.161 136860 port 299 136860 unique_id port 136860 remote_ip 10.8.0.154 136866 username hashtadani3 136866 mac 136866 bytes_out 0 136866 bytes_in 0 136866 station_ip 37.129.143.161 136866 port 299 136866 unique_id port 136866 remote_ip 10.8.0.154 136869 username hashtadani3 136869 mac 136869 bytes_out 0 136869 bytes_in 0 136869 station_ip 37.129.143.161 136869 port 299 136869 unique_id port 136869 remote_ip 10.8.0.154 136871 username farhad2 136871 mac 136871 bytes_out 535993 136871 bytes_in 2469603 136871 station_ip 5.119.166.209 136871 port 190 136871 unique_id port 136871 remote_ip 10.8.1.222 136876 username hashtadani3 136876 mac 136876 bytes_out 0 136876 bytes_in 0 136876 station_ip 37.129.143.161 136876 port 299 136876 unique_id port 136876 remote_ip 10.8.0.154 136879 username hashtadani3 136879 mac 136879 bytes_out 0 136879 bytes_in 0 136879 station_ip 37.129.143.161 136879 port 299 136879 unique_id port 136879 remote_ip 10.8.0.154 136882 username barzegar 136882 mac 136882 bytes_out 0 136882 bytes_in 0 136882 station_ip 5.119.185.96 136882 port 299 136882 unique_id port 136882 remote_ip 10.8.0.234 136885 username hashtadani3 136885 mac 136885 bytes_out 0 136885 bytes_in 0 136885 station_ip 37.129.143.161 136885 port 299 136885 unique_id port 136885 remote_ip 10.8.0.154 136888 username hashtadani3 136888 mac 136888 bytes_out 0 136888 bytes_in 0 136888 station_ip 37.129.143.161 136888 port 282 136888 unique_id port 136888 remote_ip 10.8.0.154 136889 username hashtadani3 136889 mac 136889 bytes_out 0 136889 bytes_in 0 136889 station_ip 37.129.143.161 136889 port 282 136889 unique_id port 136889 remote_ip 10.8.0.154 136891 username hashtadani3 136891 mac 136891 bytes_out 0 136891 bytes_in 0 136891 station_ip 37.129.143.161 136891 port 282 136891 unique_id port 136891 remote_ip 10.8.0.154 136897 username hashtadani3 136897 mac 136897 bytes_out 0 136897 bytes_in 0 136897 station_ip 37.129.143.161 136897 port 299 136897 unique_id port 136897 remote_ip 10.8.0.154 136900 username hashtadani3 136900 mac 136900 bytes_out 0 136900 bytes_in 0 136900 station_ip 37.129.143.161 136900 port 299 136900 unique_id port 136900 remote_ip 10.8.0.154 136901 username hashtadani3 136901 mac 136901 bytes_out 0 136901 bytes_in 0 136901 station_ip 37.129.143.161 136901 port 190 136901 unique_id port 136901 remote_ip 10.8.1.94 136902 username hashtadani3 136902 mac 136902 bytes_out 0 136902 bytes_in 0 136902 station_ip 37.129.143.161 136902 port 299 136902 unique_id port 136902 remote_ip 10.8.0.154 136907 username hashtadani3 136907 mac 136907 bytes_out 0 136907 bytes_in 0 136907 station_ip 37.129.143.161 136907 port 299 136907 unique_id port 136907 remote_ip 10.8.0.154 136909 username barzegar 136909 mac 136909 bytes_out 0 136909 bytes_in 0 136909 station_ip 5.119.185.96 136909 port 304 136909 unique_id port 136909 remote_ip 10.8.0.234 136910 username hashtadani3 136910 mac 136910 bytes_out 0 136910 bytes_in 0 136910 station_ip 37.129.143.161 136910 port 299 136910 unique_id port 136910 remote_ip 10.8.0.154 136914 username hashtadani3 136881 port 191 136881 unique_id port 136883 username hashtadani3 136883 mac 136883 bytes_out 0 136883 bytes_in 0 136883 station_ip 37.129.143.161 136883 port 299 136883 unique_id port 136883 remote_ip 10.8.0.154 136884 username hashtadani3 136884 mac 136884 bytes_out 0 136884 bytes_in 0 136884 station_ip 37.129.143.161 136884 port 299 136884 unique_id port 136884 remote_ip 10.8.0.154 136887 username hashtadani3 136887 mac 136887 bytes_out 0 136887 bytes_in 0 136887 station_ip 37.129.143.161 136887 port 282 136887 unique_id port 136887 remote_ip 10.8.0.154 136892 username hashtadani3 136892 mac 136892 bytes_out 0 136892 bytes_in 0 136892 station_ip 37.129.143.161 136892 port 299 136892 unique_id port 136892 remote_ip 10.8.0.154 136893 username barzegar 136893 mac 136893 bytes_out 0 136893 bytes_in 0 136893 station_ip 5.119.185.96 136893 port 299 136893 unique_id port 136893 remote_ip 10.8.0.234 136894 username hashtadani3 136894 mac 136894 bytes_out 0 136894 bytes_in 0 136894 station_ip 37.129.143.161 136894 port 299 136894 unique_id port 136894 remote_ip 10.8.0.154 136903 username hashtadani3 136903 mac 136903 bytes_out 0 136903 bytes_in 0 136903 station_ip 37.129.143.161 136903 port 299 136903 unique_id port 136903 remote_ip 10.8.0.154 136905 username hashtadani3 136905 mac 136905 bytes_out 0 136905 bytes_in 0 136905 station_ip 37.129.143.161 136905 port 299 136905 unique_id port 136905 remote_ip 10.8.0.154 136906 username zare 136906 kill_reason Relative expiration date has reached 136906 mac 136906 bytes_out 0 136906 bytes_in 0 136906 station_ip 37.27.31.131 136906 port 299 136906 unique_id port 136911 username hashtadani3 136911 mac 136911 bytes_out 0 136911 bytes_in 0 136911 station_ip 37.129.143.161 136911 port 190 136911 unique_id port 136911 remote_ip 10.8.1.94 136913 username hashtadani3 136913 mac 136913 bytes_out 0 136913 bytes_in 0 136913 station_ip 37.129.143.161 136913 port 304 136913 unique_id port 136913 remote_ip 10.8.0.154 136915 username hashtadani3 136915 mac 136915 bytes_out 0 136915 bytes_in 0 136915 station_ip 37.129.143.161 136915 port 190 136915 unique_id port 136915 remote_ip 10.8.1.94 136916 username hashtadani3 136916 mac 136916 bytes_out 0 136916 bytes_in 0 136916 station_ip 37.129.143.161 136916 port 304 136916 unique_id port 136916 remote_ip 10.8.0.154 136920 username hashtadani3 136920 mac 136920 bytes_out 0 136920 bytes_in 0 136920 station_ip 37.129.143.161 136920 port 304 136920 unique_id port 136920 remote_ip 10.8.0.154 136923 username hashtadani3 136923 mac 136923 bytes_out 0 136923 bytes_in 0 136923 station_ip 37.129.143.161 136923 port 304 136923 unique_id port 136923 remote_ip 10.8.0.154 136926 username hashtadani3 136926 mac 136926 bytes_out 0 136926 bytes_in 0 136926 station_ip 37.129.143.161 136926 port 299 136926 unique_id port 136926 remote_ip 10.8.0.154 136930 username amirabbas 136930 unique_id port 136930 terminate_cause User-Request 136930 bytes_out 2796751 136930 bytes_in 65600770 136930 station_ip 37.27.19.221 136930 port 15730570 136930 nas_port_type Virtual 136930 remote_ip 5.5.5.255 136931 username hashtadani3 136931 mac 136931 bytes_out 0 136931 bytes_in 0 136931 station_ip 37.129.143.161 136931 port 190 136931 unique_id port 136931 remote_ip 10.8.1.94 136932 username hashtadani3 136932 mac 136932 bytes_out 0 136932 bytes_in 0 136932 station_ip 37.129.143.161 136932 port 299 136890 station_ip 5.119.185.96 136890 port 282 136890 unique_id port 136890 remote_ip 10.8.0.234 136895 username hashtadani3 136895 mac 136895 bytes_out 0 136895 bytes_in 0 136895 station_ip 37.129.143.161 136895 port 299 136895 unique_id port 136895 remote_ip 10.8.0.154 136896 username hashtadani3 136896 mac 136896 bytes_out 0 136896 bytes_in 0 136896 station_ip 37.129.143.161 136896 port 299 136896 unique_id port 136896 remote_ip 10.8.0.154 136898 username mosi 136898 kill_reason Another user logged on this global unique id 136898 mac 136898 bytes_out 0 136898 bytes_in 0 136898 station_ip 151.235.75.185 136898 port 282 136898 unique_id port 136898 remote_ip 10.8.0.138 136899 username barzegar 136899 mac 136899 bytes_out 0 136899 bytes_in 0 136899 station_ip 5.119.185.96 136899 port 190 136899 unique_id port 136899 remote_ip 10.8.1.174 136904 username hashtadani3 136904 mac 136904 bytes_out 0 136904 bytes_in 0 136904 station_ip 37.129.143.161 136904 port 299 136904 unique_id port 136904 remote_ip 10.8.0.154 136908 username hashtadani3 136908 mac 136908 bytes_out 0 136908 bytes_in 0 136908 station_ip 37.129.143.161 136908 port 299 136908 unique_id port 136908 remote_ip 10.8.0.154 136912 username hashtadani3 136912 mac 136912 bytes_out 0 136912 bytes_in 0 136912 station_ip 37.129.143.161 136912 port 304 136912 unique_id port 136912 remote_ip 10.8.0.154 136918 username barzegar 136918 mac 136918 bytes_out 0 136918 bytes_in 0 136918 station_ip 5.119.185.96 136918 port 304 136918 unique_id port 136918 remote_ip 10.8.0.234 136922 username mosi 136922 kill_reason Another user logged on this global unique id 136922 mac 136922 bytes_out 0 136922 bytes_in 0 136922 station_ip 151.235.75.185 136922 port 282 136922 unique_id port 136924 username mohammadjavad 136924 mac 136924 bytes_out 1312266 136924 bytes_in 18527793 136924 station_ip 83.122.189.218 136924 port 299 136924 unique_id port 136924 remote_ip 10.8.0.142 136927 username hashtadani3 136927 mac 136927 bytes_out 0 136927 bytes_in 0 136927 station_ip 37.129.143.161 136927 port 190 136927 unique_id port 136927 remote_ip 10.8.1.94 136928 username barzegar 136928 mac 136928 bytes_out 0 136928 bytes_in 0 136928 station_ip 5.119.185.96 136928 port 299 136928 unique_id port 136928 remote_ip 10.8.0.234 136932 unique_id port 136932 remote_ip 10.8.0.154 136933 username hashtadani3 136933 mac 136933 bytes_out 0 136933 bytes_in 0 136933 station_ip 37.129.143.161 136933 port 299 136933 unique_id port 136933 remote_ip 10.8.0.154 136934 username hashtadani3 136934 mac 136934 bytes_out 0 136934 bytes_in 0 136934 station_ip 37.129.143.161 136934 port 299 136934 unique_id port 136934 remote_ip 10.8.0.154 136935 username hashtadani3 136935 mac 136935 bytes_out 0 136935 bytes_in 0 136935 station_ip 37.129.143.161 136935 port 190 136935 unique_id port 136935 remote_ip 10.8.1.94 136936 username hashtadani3 136936 mac 136936 bytes_out 0 136936 bytes_in 0 136936 station_ip 37.129.143.161 136936 port 190 136936 unique_id port 136936 remote_ip 10.8.1.94 136937 username hashtadani3 136937 mac 136937 bytes_out 0 136937 bytes_in 0 136937 station_ip 37.129.143.161 136937 port 299 136937 unique_id port 136937 remote_ip 10.8.0.154 136939 username barzegar 136939 mac 136939 bytes_out 0 136939 bytes_in 0 136939 station_ip 5.119.185.96 136939 port 299 136939 unique_id port 136939 remote_ip 10.8.0.234 136940 username hashtadani3 136940 mac 136914 mac 136914 bytes_out 0 136914 bytes_in 0 136914 station_ip 37.129.143.161 136914 port 304 136914 unique_id port 136914 remote_ip 10.8.0.154 136917 username hashtadani3 136917 mac 136917 bytes_out 0 136917 bytes_in 0 136917 station_ip 37.129.143.161 136917 port 312 136917 unique_id port 136917 remote_ip 10.8.0.154 136919 username hashtadani3 136919 mac 136919 bytes_out 0 136919 bytes_in 0 136919 station_ip 37.129.143.161 136919 port 190 136919 unique_id port 136919 remote_ip 10.8.1.94 136921 username hashtadani3 136921 mac 136921 bytes_out 0 136921 bytes_in 0 136921 station_ip 37.129.143.161 136921 port 304 136921 unique_id port 136921 remote_ip 10.8.0.154 136925 username hashtadani3 136925 mac 136925 bytes_out 0 136925 bytes_in 0 136925 station_ip 37.129.143.161 136925 port 299 136925 unique_id port 136925 remote_ip 10.8.0.154 136929 username hashtadani3 136929 mac 136929 bytes_out 0 136929 bytes_in 0 136929 station_ip 37.129.143.161 136929 port 299 136929 unique_id port 136929 remote_ip 10.8.0.154 136938 username hashtadani3 136938 mac 136938 bytes_out 0 136938 bytes_in 0 136938 station_ip 37.129.143.161 136938 port 299 136938 unique_id port 136938 remote_ip 10.8.0.154 136940 bytes_out 0 136940 bytes_in 0 136940 station_ip 37.129.143.161 136940 port 299 136940 unique_id port 136940 remote_ip 10.8.0.154 136941 username hashtadani3 136941 mac 136941 bytes_out 0 136941 bytes_in 0 136941 station_ip 37.129.143.161 136941 port 299 136941 unique_id port 136941 remote_ip 10.8.0.154 136942 username hashtadani3 136942 kill_reason Maximum check online fails reached 136942 mac 136942 bytes_out 0 136942 bytes_in 0 136942 station_ip 37.129.143.161 136942 port 190 136942 unique_id port 136943 username hashtadani3 136943 mac 136943 bytes_out 0 136943 bytes_in 0 136943 station_ip 37.129.143.161 136943 port 299 136943 unique_id port 136943 remote_ip 10.8.0.154 136944 username hashtadani3 136944 mac 136944 bytes_out 0 136944 bytes_in 0 136944 station_ip 37.129.143.161 136944 port 191 136944 unique_id port 136944 remote_ip 10.8.1.94 136945 username hashtadani3 136945 mac 136945 bytes_out 0 136945 bytes_in 0 136945 station_ip 37.129.143.161 136945 port 299 136945 unique_id port 136945 remote_ip 10.8.0.154 136946 username hashtadani3 136946 mac 136946 bytes_out 0 136946 bytes_in 0 136946 station_ip 37.129.143.161 136946 port 191 136946 unique_id port 136946 remote_ip 10.8.1.94 136947 username hashtadani3 136947 mac 136947 bytes_out 0 136947 bytes_in 0 136947 station_ip 37.129.143.161 136947 port 299 136947 unique_id port 136947 remote_ip 10.8.0.154 136948 username hashtadani3 136948 mac 136948 bytes_out 0 136948 bytes_in 0 136948 station_ip 37.129.143.161 136948 port 299 136948 unique_id port 136948 remote_ip 10.8.0.154 136949 username barzegar 136949 mac 136949 bytes_out 0 136949 bytes_in 0 136949 station_ip 5.119.185.96 136949 port 191 136949 unique_id port 136949 remote_ip 10.8.1.174 136950 username hashtadani3 136950 mac 136950 bytes_out 204677 136950 bytes_in 2331285 136950 station_ip 37.129.143.161 136950 port 299 136950 unique_id port 136950 remote_ip 10.8.0.154 136951 username hashtadani3 136951 mac 136951 bytes_out 0 136951 bytes_in 0 136951 station_ip 37.129.143.161 136951 port 299 136951 unique_id port 136951 remote_ip 10.8.0.154 136952 username hashtadani3 136952 mac 136952 bytes_out 0 136952 bytes_in 0 136958 username barzegar 136952 station_ip 37.129.143.161 136952 port 299 136952 unique_id port 136952 remote_ip 10.8.0.154 136955 username hashtadani3 136955 mac 136955 bytes_out 0 136955 bytes_in 0 136955 station_ip 37.129.143.161 136955 port 299 136955 unique_id port 136955 remote_ip 10.8.0.154 136956 username hashtadani3 136956 mac 136956 bytes_out 0 136956 bytes_in 0 136956 station_ip 37.129.143.161 136956 port 299 136956 unique_id port 136956 remote_ip 10.8.0.154 136957 username amirabbas 136957 unique_id port 136957 terminate_cause User-Request 136957 bytes_out 8782702 136957 bytes_in 249712476 136957 station_ip 37.27.19.221 136957 port 15730571 136957 nas_port_type Virtual 136957 remote_ip 5.5.5.255 136961 username hashtadani3 136961 mac 136961 bytes_out 0 136961 bytes_in 0 136961 station_ip 37.129.143.161 136961 port 299 136961 unique_id port 136961 remote_ip 10.8.0.154 136963 username hashtadani3 136963 kill_reason Maximum check online fails reached 136963 mac 136963 bytes_out 0 136963 bytes_in 0 136963 station_ip 37.129.143.161 136963 port 192 136963 unique_id port 136966 username hashtadani3 136966 mac 136966 bytes_out 0 136966 bytes_in 0 136966 station_ip 37.129.143.161 136966 port 299 136966 unique_id port 136966 remote_ip 10.8.0.154 136968 username hashtadani3 136968 mac 136968 bytes_out 0 136968 bytes_in 0 136968 station_ip 37.129.143.161 136968 port 193 136968 unique_id port 136968 remote_ip 10.8.1.94 136970 username amirabbas 136970 unique_id port 136970 terminate_cause User-Request 136970 bytes_out 3389796 136970 bytes_in 97166384 136970 station_ip 37.27.19.221 136970 port 15730572 136970 nas_port_type Virtual 136970 remote_ip 5.5.5.255 136971 username hashtadani3 136971 mac 136971 bytes_out 0 136971 bytes_in 0 136971 station_ip 37.129.143.161 136971 port 299 136971 unique_id port 136971 remote_ip 10.8.0.154 136972 username hashtadani3 136972 mac 136972 bytes_out 0 136972 bytes_in 0 136972 station_ip 37.129.143.161 136972 port 299 136972 unique_id port 136972 remote_ip 10.8.0.154 136981 username hashtadani3 136981 mac 136981 bytes_out 0 136981 bytes_in 0 136981 station_ip 37.129.143.161 136981 port 299 136981 unique_id port 136981 remote_ip 10.8.0.154 136982 username hashtadani3 136982 mac 136982 bytes_out 0 136982 bytes_in 0 136982 station_ip 37.129.143.161 136982 port 299 136982 unique_id port 136982 remote_ip 10.8.0.154 136984 username hashtadani3 136984 mac 136984 bytes_out 0 136984 bytes_in 0 136984 station_ip 37.129.143.161 136984 port 299 136984 unique_id port 136984 remote_ip 10.8.0.154 136985 username hashtadani3 136985 mac 136985 bytes_out 0 136985 bytes_in 0 136985 station_ip 37.129.143.161 136985 port 299 136985 unique_id port 136985 remote_ip 10.8.0.154 136987 username hashtadani3 136987 mac 136987 bytes_out 0 136987 bytes_in 0 136987 station_ip 37.129.143.161 136987 port 299 136987 unique_id port 136987 remote_ip 10.8.0.154 136989 username hamidsalari1 136989 mac 136989 bytes_out 0 136989 bytes_in 0 136989 station_ip 83.122.179.53 136989 port 187 136989 unique_id port 136989 remote_ip 10.8.1.170 136993 username hashtadani3 136993 mac 136993 bytes_out 0 136993 bytes_in 0 136993 station_ip 37.129.143.161 136993 port 187 136993 unique_id port 136993 remote_ip 10.8.1.94 136997 username hashtadani3 136997 mac 136997 bytes_out 0 136997 bytes_in 0 136997 station_ip 37.129.143.161 136997 port 187 136997 unique_id port 136997 remote_ip 10.8.1.94 136998 username hashtadani3 136998 mac 136953 username hashtadani3 136953 mac 136953 bytes_out 0 136953 bytes_in 0 136953 station_ip 37.129.143.161 136953 port 299 136953 unique_id port 136953 remote_ip 10.8.0.154 136954 username hashtadani3 136954 kill_reason Maximum check online fails reached 136954 mac 136954 bytes_out 0 136954 bytes_in 0 136954 station_ip 37.129.143.161 136954 port 191 136954 unique_id port 136959 username hashtadani3 136959 mac 136959 bytes_out 0 136959 bytes_in 0 136959 station_ip 37.129.143.161 136959 port 299 136959 unique_id port 136959 remote_ip 10.8.0.154 136960 username hashtadani3 136960 mac 136960 bytes_out 0 136960 bytes_in 0 136960 station_ip 37.129.143.161 136960 port 299 136960 unique_id port 136960 remote_ip 10.8.0.154 136962 username hashtadani3 136962 mac 136962 bytes_out 0 136962 bytes_in 0 136962 station_ip 37.129.143.161 136962 port 299 136962 unique_id port 136962 remote_ip 10.8.0.154 136964 username barzegar 136964 mac 136964 bytes_out 0 136964 bytes_in 0 136964 station_ip 5.119.185.96 136964 port 193 136964 unique_id port 136964 remote_ip 10.8.1.174 136969 username hashtadani3 136969 mac 136969 bytes_out 0 136969 bytes_in 0 136969 station_ip 37.129.143.161 136969 port 299 136969 unique_id port 136969 remote_ip 10.8.0.154 136974 username hashtadani3 136974 mac 136974 bytes_out 0 136974 bytes_in 0 136974 station_ip 37.129.143.161 136974 port 299 136974 unique_id port 136974 remote_ip 10.8.0.154 136975 username barzegar 136975 mac 136975 bytes_out 0 136975 bytes_in 0 136975 station_ip 5.119.185.96 136975 port 193 136975 unique_id port 136975 remote_ip 10.8.1.174 136976 username hashtadani3 136976 mac 136976 bytes_out 0 136976 bytes_in 0 136976 station_ip 37.129.143.161 136976 port 299 136976 unique_id port 136976 remote_ip 10.8.0.154 136979 username hashtadani3 136979 mac 136979 bytes_out 0 136979 bytes_in 0 136979 station_ip 37.129.143.161 136979 port 304 136979 unique_id port 136979 remote_ip 10.8.0.154 136986 username hashtadani3 136986 kill_reason Maximum check online fails reached 136986 mac 136986 bytes_out 0 136986 bytes_in 0 136986 station_ip 37.129.143.161 136986 port 193 136986 unique_id port 136990 username hashtadani3 136990 mac 136990 bytes_out 0 136990 bytes_in 0 136990 station_ip 37.129.143.161 136990 port 299 136990 unique_id port 136990 remote_ip 10.8.0.154 137002 username hashtadani3 137002 mac 137002 bytes_out 0 137002 bytes_in 0 137002 station_ip 37.129.143.161 137002 port 299 137002 unique_id port 137002 remote_ip 10.8.0.154 137004 username hashtadani3 137004 mac 137004 bytes_out 0 137004 bytes_in 0 137004 station_ip 37.129.143.161 137004 port 299 137004 unique_id port 137004 remote_ip 10.8.0.154 137008 username hashtadani3 137008 mac 137008 bytes_out 0 137008 bytes_in 0 137008 station_ip 37.129.143.161 137008 port 299 137008 unique_id port 137008 remote_ip 10.8.0.154 137012 username hashtadani3 137012 mac 137012 bytes_out 0 137012 bytes_in 0 137012 station_ip 37.129.143.161 137012 port 304 137012 unique_id port 137012 remote_ip 10.8.0.154 137020 username barzegar 137020 mac 137020 bytes_out 0 137020 bytes_in 0 137020 station_ip 5.119.185.96 137020 port 304 137020 unique_id port 137020 remote_ip 10.8.0.234 137022 username hashtadani3 137022 mac 137022 bytes_out 0 137022 bytes_in 0 137022 station_ip 37.129.143.161 137022 port 304 137022 unique_id port 137022 remote_ip 10.8.0.154 137026 username hashtadani3 136958 mac 136958 bytes_out 0 136958 bytes_in 0 136958 station_ip 5.119.185.96 136958 port 192 136958 unique_id port 136958 remote_ip 10.8.1.174 136965 username hashtadani3 136965 mac 136965 bytes_out 3151615 136965 bytes_in 30957029 136965 station_ip 37.129.143.161 136965 port 299 136965 unique_id port 136965 remote_ip 10.8.0.154 136967 username hashtadani3 136967 mac 136967 bytes_out 0 136967 bytes_in 0 136967 station_ip 37.129.143.161 136967 port 193 136967 unique_id port 136967 remote_ip 10.8.1.94 136973 username hashtadani3 136973 mac 136973 bytes_out 0 136973 bytes_in 0 136973 station_ip 37.129.143.161 136973 port 299 136973 unique_id port 136973 remote_ip 10.8.0.154 136977 username hashtadani3 136977 mac 136977 bytes_out 0 136977 bytes_in 0 136977 station_ip 37.129.143.161 136977 port 299 136977 unique_id port 136977 remote_ip 10.8.0.154 136978 username hashtadani3 136978 mac 136978 bytes_out 0 136978 bytes_in 0 136978 station_ip 37.129.143.161 136978 port 299 136978 unique_id port 136978 remote_ip 10.8.0.154 136980 username hashtadani3 136980 mac 136980 bytes_out 0 136980 bytes_in 0 136980 station_ip 37.129.143.161 136980 port 193 136980 unique_id port 136980 remote_ip 10.8.1.94 136983 username hashtadani3 136983 mac 136983 bytes_out 2058 136983 bytes_in 4865 136983 station_ip 37.129.143.161 136983 port 299 136983 unique_id port 136983 remote_ip 10.8.0.154 136988 username barzegar 136988 mac 136988 bytes_out 0 136988 bytes_in 0 136988 station_ip 5.119.185.96 136988 port 194 136988 unique_id port 136988 remote_ip 10.8.1.174 136991 username hashtadani3 136991 mac 136991 bytes_out 4789 136991 bytes_in 10694 136991 station_ip 37.129.143.161 136991 port 187 136991 unique_id port 136991 remote_ip 10.8.1.94 136992 username hashtadani3 136992 mac 136992 bytes_out 0 136992 bytes_in 0 136992 station_ip 37.129.143.161 136992 port 187 136992 unique_id port 136992 remote_ip 10.8.1.94 136994 username hashtadani3 136994 mac 136994 bytes_out 0 136994 bytes_in 0 136994 station_ip 37.129.143.161 136994 port 304 136994 unique_id port 136994 remote_ip 10.8.0.154 136995 username hashtadani3 136995 mac 136995 bytes_out 0 136995 bytes_in 0 136995 station_ip 37.129.143.161 136995 port 304 136995 unique_id port 136995 remote_ip 10.8.0.154 136996 username houshang 136996 mac 136996 bytes_out 0 136996 bytes_in 0 136996 station_ip 5.119.70.37 136996 port 299 136996 unique_id port 136996 remote_ip 10.8.0.22 136999 username hashtadani3 136999 mac 136999 bytes_out 0 136999 bytes_in 0 136999 station_ip 37.129.143.161 136999 port 299 136999 unique_id port 136999 remote_ip 10.8.0.154 137000 username hashtadani3 137000 mac 137000 bytes_out 0 137000 bytes_in 0 137000 station_ip 37.129.143.161 137000 port 299 137000 unique_id port 137000 remote_ip 10.8.0.154 137003 username hashtadani3 137003 mac 137003 bytes_out 0 137003 bytes_in 0 137003 station_ip 37.129.143.161 137003 port 299 137003 unique_id port 137003 remote_ip 10.8.0.154 137006 username hashtadani3 137006 kill_reason Maximum check online fails reached 137006 mac 137006 bytes_out 0 137006 bytes_in 0 137006 station_ip 37.129.143.161 137006 port 187 137006 unique_id port 137007 username hashtadani3 137007 mac 137007 bytes_out 0 137007 bytes_in 0 137007 station_ip 37.129.143.161 137007 port 299 137007 unique_id port 137007 remote_ip 10.8.0.154 137009 username hashtadani3 137009 mac 137009 bytes_out 0 136998 bytes_out 0 136998 bytes_in 0 136998 station_ip 37.129.143.161 136998 port 299 136998 unique_id port 136998 remote_ip 10.8.0.154 137001 username barzegar 137001 mac 137001 bytes_out 0 137001 bytes_in 0 137001 station_ip 5.119.185.96 137001 port 187 137001 unique_id port 137001 remote_ip 10.8.1.174 137005 username hashtadani3 137005 mac 137005 bytes_out 0 137005 bytes_in 0 137005 station_ip 37.129.143.161 137005 port 299 137005 unique_id port 137005 remote_ip 10.8.0.154 137010 username barzegar 137010 mac 137010 bytes_out 0 137010 bytes_in 0 137010 station_ip 5.119.185.96 137010 port 194 137010 unique_id port 137010 remote_ip 10.8.1.174 137013 username hashtadani3 137013 mac 137013 bytes_out 0 137013 bytes_in 0 137013 station_ip 37.129.143.161 137013 port 304 137013 unique_id port 137013 remote_ip 10.8.0.154 137014 username hashtadani3 137014 mac 137014 bytes_out 0 137014 bytes_in 0 137014 station_ip 37.129.143.161 137014 port 304 137014 unique_id port 137014 remote_ip 10.8.0.154 137017 username hashtadani3 137017 mac 137017 bytes_out 0 137017 bytes_in 0 137017 station_ip 37.129.143.161 137017 port 304 137017 unique_id port 137017 remote_ip 10.8.0.154 137019 username houshang 137019 kill_reason Another user logged on this global unique id 137019 mac 137019 bytes_out 0 137019 bytes_in 0 137019 station_ip 5.119.70.37 137019 port 299 137019 unique_id port 137019 remote_ip 10.8.0.22 137021 username hashtadani3 137021 mac 137021 bytes_out 0 137021 bytes_in 0 137021 station_ip 37.129.143.161 137021 port 194 137021 unique_id port 137021 remote_ip 10.8.1.94 137024 username hashtadani3 137024 mac 137024 bytes_out 0 137024 bytes_in 0 137024 station_ip 37.129.143.161 137024 port 304 137024 unique_id port 137024 remote_ip 10.8.0.154 137028 username hashtadani3 137028 mac 137028 bytes_out 0 137028 bytes_in 0 137028 station_ip 37.129.143.161 137028 port 304 137028 unique_id port 137028 remote_ip 10.8.0.154 137031 username hashtadani3 137031 mac 137031 bytes_out 0 137031 bytes_in 0 137031 station_ip 37.129.143.161 137031 port 304 137031 unique_id port 137031 remote_ip 10.8.0.154 137033 username hashtadani3 137033 mac 137033 bytes_out 0 137033 bytes_in 0 137033 station_ip 37.129.143.161 137033 port 304 137033 unique_id port 137033 remote_ip 10.8.0.154 137035 username hashtadani3 137035 mac 137035 bytes_out 0 137035 bytes_in 0 137035 station_ip 37.129.143.161 137035 port 304 137035 unique_id port 137035 remote_ip 10.8.0.154 137037 username houshang 137037 mac 137037 bytes_out 0 137037 bytes_in 0 137037 station_ip 5.119.70.37 137037 port 299 137037 unique_id port 137040 username hashtadani3 137040 mac 137040 bytes_out 0 137040 bytes_in 0 137040 station_ip 37.129.143.161 137040 port 304 137040 unique_id port 137040 remote_ip 10.8.0.154 137041 username hashtadani3 137041 mac 137041 bytes_out 0 137041 bytes_in 0 137041 station_ip 37.129.143.161 137041 port 304 137041 unique_id port 137041 remote_ip 10.8.0.154 137042 username hashtadani3 137042 mac 137042 bytes_out 0 137042 bytes_in 0 137042 station_ip 37.129.143.161 137042 port 304 137042 unique_id port 137042 remote_ip 10.8.0.154 137045 username hashtadani3 137045 mac 137045 bytes_out 0 137045 bytes_in 0 137045 station_ip 37.129.143.161 137045 port 312 137045 unique_id port 137045 remote_ip 10.8.0.154 137047 username hamidsalari 137047 mac 137047 bytes_out 6398 137047 bytes_in 11749 137009 bytes_in 0 137009 station_ip 37.129.143.161 137009 port 299 137009 unique_id port 137009 remote_ip 10.8.0.154 137011 username hashtadani3 137011 mac 137011 bytes_out 0 137011 bytes_in 0 137011 station_ip 37.129.143.161 137011 port 304 137011 unique_id port 137011 remote_ip 10.8.0.154 137015 username hashtadani3 137015 mac 137015 bytes_out 0 137015 bytes_in 0 137015 station_ip 37.129.143.161 137015 port 304 137015 unique_id port 137015 remote_ip 10.8.0.154 137016 username hashtadani3 137016 mac 137016 bytes_out 0 137016 bytes_in 0 137016 station_ip 37.129.143.161 137016 port 194 137016 unique_id port 137016 remote_ip 10.8.1.94 137018 username hashtadani3 137018 mac 137018 bytes_out 0 137018 bytes_in 0 137018 station_ip 37.129.143.161 137018 port 304 137018 unique_id port 137018 remote_ip 10.8.0.154 137023 username hashtadani3 137023 mac 137023 bytes_out 0 137023 bytes_in 0 137023 station_ip 37.129.143.161 137023 port 304 137023 unique_id port 137023 remote_ip 10.8.0.154 137025 username sobhan 137025 unique_id port 137025 terminate_cause Lost-Carrier 137025 bytes_out 522046 137025 bytes_in 4555136 137025 station_ip 5.119.112.220 137025 port 15730576 137025 nas_port_type Virtual 137025 remote_ip 5.5.5.255 137030 username houshang 137030 kill_reason Another user logged on this global unique id 137030 mac 137030 bytes_out 0 137030 bytes_in 0 137030 station_ip 5.119.70.37 137030 port 299 137030 unique_id port 137032 username barzegar 137032 mac 137032 bytes_out 0 137032 bytes_in 0 137032 station_ip 5.119.185.96 137032 port 304 137032 unique_id port 137032 remote_ip 10.8.0.234 137034 username hashtadani3 137034 mac 137034 bytes_out 0 137034 bytes_in 0 137034 station_ip 37.129.143.161 137034 port 304 137034 unique_id port 137034 remote_ip 10.8.0.154 137036 username hashtadani3 137036 mac 137036 bytes_out 0 137036 bytes_in 0 137036 station_ip 37.129.143.161 137036 port 312 137036 unique_id port 137036 remote_ip 10.8.0.154 137038 username moradi 137038 mac 137038 bytes_out 0 137038 bytes_in 0 137038 station_ip 37.129.205.82 137038 port 304 137038 unique_id port 137038 remote_ip 10.8.0.250 137039 username hashtadani3 137039 mac 137039 bytes_out 0 137039 bytes_in 0 137039 station_ip 37.129.143.161 137039 port 299 137039 unique_id port 137039 remote_ip 10.8.0.154 137044 username hamidsalari 137044 mac 137044 bytes_out 0 137044 bytes_in 0 137044 station_ip 5.120.120.40 137044 port 287 137044 unique_id port 137044 remote_ip 10.8.0.222 137046 username houshang 137046 mac 137046 bytes_out 1074084 137046 bytes_in 26275851 137046 station_ip 5.119.70.37 137046 port 299 137046 unique_id port 137046 remote_ip 10.8.0.22 137052 username barzegar 137052 mac 137052 bytes_out 0 137052 bytes_in 0 137052 station_ip 5.119.185.96 137052 port 304 137052 unique_id port 137052 remote_ip 10.8.0.234 137054 username hashtadani3 137054 mac 137054 bytes_out 0 137054 bytes_in 0 137054 station_ip 37.129.143.161 137054 port 194 137054 unique_id port 137054 remote_ip 10.8.1.94 137056 username hashtadani3 137056 mac 137056 bytes_out 0 137056 bytes_in 0 137056 station_ip 37.129.143.161 137056 port 304 137056 unique_id port 137056 remote_ip 10.8.0.154 137058 username hashtadani3 137058 mac 137058 bytes_out 0 137058 bytes_in 0 137058 station_ip 37.129.143.161 137058 port 194 137058 unique_id port 137058 remote_ip 10.8.1.94 137059 username hashtadani3 137059 mac 137059 bytes_out 0 137026 mac 137026 bytes_out 0 137026 bytes_in 0 137026 station_ip 37.129.143.161 137026 port 304 137026 unique_id port 137026 remote_ip 10.8.0.154 137027 username hashtadani3 137027 mac 137027 bytes_out 0 137027 bytes_in 0 137027 station_ip 37.129.143.161 137027 port 304 137027 unique_id port 137027 remote_ip 10.8.0.154 137029 username hashtadani3 137029 mac 137029 bytes_out 0 137029 bytes_in 0 137029 station_ip 37.129.143.161 137029 port 194 137029 unique_id port 137029 remote_ip 10.8.1.94 137043 username barzegar 137043 mac 137043 bytes_out 0 137043 bytes_in 0 137043 station_ip 5.119.185.96 137043 port 304 137043 unique_id port 137043 remote_ip 10.8.0.234 137048 username hashtadani3 137048 mac 137048 bytes_out 0 137048 bytes_in 0 137048 station_ip 37.129.143.161 137048 port 304 137048 unique_id port 137048 remote_ip 10.8.0.154 137050 username hashtadani3 137050 mac 137050 bytes_out 0 137050 bytes_in 0 137050 station_ip 37.129.143.161 137050 port 304 137050 unique_id port 137050 remote_ip 10.8.0.154 137053 username hashtadani3 137053 mac 137053 bytes_out 0 137053 bytes_in 0 137053 station_ip 37.129.143.161 137053 port 312 137053 unique_id port 137053 remote_ip 10.8.0.154 137068 username hashtadani3 137068 mac 137068 bytes_out 0 137068 bytes_in 0 137068 station_ip 37.129.143.161 137068 port 287 137068 unique_id port 137068 remote_ip 10.8.0.154 137069 username hashtadani3 137069 mac 137069 bytes_out 0 137069 bytes_in 0 137069 station_ip 37.129.143.161 137069 port 287 137069 unique_id port 137069 remote_ip 10.8.0.154 137077 username hashtadani3 137077 mac 137077 bytes_out 0 137077 bytes_in 0 137077 station_ip 37.129.143.161 137077 port 304 137077 unique_id port 137077 remote_ip 10.8.0.154 137079 username hashtadani3 137079 mac 137079 bytes_out 0 137079 bytes_in 0 137079 station_ip 37.129.143.161 137079 port 312 137079 unique_id port 137079 remote_ip 10.8.0.154 137080 username hashtadani3 137080 mac 137080 bytes_out 0 137080 bytes_in 0 137080 station_ip 37.129.143.161 137080 port 312 137080 unique_id port 137080 remote_ip 10.8.0.154 137086 username hashtadani3 137086 mac 137086 bytes_out 0 137086 bytes_in 0 137086 station_ip 37.129.143.161 137086 port 315 137086 unique_id port 137086 remote_ip 10.8.0.154 137087 username mohammadjavad 137087 mac 137087 bytes_out 225976 137087 bytes_in 745373 137087 station_ip 83.123.48.51 137087 port 312 137087 unique_id port 137087 remote_ip 10.8.0.142 137091 username hashtadani3 137091 mac 137091 bytes_out 0 137091 bytes_in 0 137091 station_ip 37.129.143.161 137091 port 312 137091 unique_id port 137091 remote_ip 10.8.0.154 137093 username hashtadani3 137093 mac 137093 bytes_out 0 137093 bytes_in 0 137093 station_ip 37.129.143.161 137093 port 312 137093 unique_id port 137093 remote_ip 10.8.0.154 137098 username hashtadani3 137098 mac 137098 bytes_out 0 137098 bytes_in 0 137098 station_ip 37.129.143.161 137098 port 287 137098 unique_id port 137098 remote_ip 10.8.0.154 137101 username hashtadani3 137101 mac 137101 bytes_out 0 137101 bytes_in 0 137101 station_ip 37.129.143.161 137101 port 287 137101 unique_id port 137101 remote_ip 10.8.0.154 137103 username barzegar 137103 mac 137103 bytes_out 0 137103 bytes_in 0 137103 station_ip 5.119.185.96 137103 port 287 137103 unique_id port 137103 remote_ip 10.8.0.234 137111 username hashtadani3 137111 mac 137111 bytes_out 0 137047 station_ip 5.120.173.151 137047 port 304 137047 unique_id port 137047 remote_ip 10.8.0.222 137049 username hashtadani3 137049 mac 137049 bytes_out 0 137049 bytes_in 0 137049 station_ip 37.129.143.161 137049 port 304 137049 unique_id port 137049 remote_ip 10.8.0.154 137051 username hashtadani3 137051 mac 137051 bytes_out 0 137051 bytes_in 0 137051 station_ip 37.129.143.161 137051 port 304 137051 unique_id port 137051 remote_ip 10.8.0.154 137055 username hashtadani3 137055 mac 137055 bytes_out 0 137055 bytes_in 0 137055 station_ip 37.129.143.161 137055 port 304 137055 unique_id port 137055 remote_ip 10.8.0.154 137057 username hashtadani3 137057 mac 137057 bytes_out 0 137057 bytes_in 0 137057 station_ip 37.129.143.161 137057 port 312 137057 unique_id port 137057 remote_ip 10.8.0.154 137060 username mohammadjavad 137060 mac 137060 bytes_out 2010608 137060 bytes_in 37782360 137060 station_ip 83.122.220.148 137060 port 287 137060 unique_id port 137060 remote_ip 10.8.0.142 137061 username hashtadani3 137061 mac 137061 bytes_out 0 137061 bytes_in 0 137061 station_ip 37.129.143.161 137061 port 287 137061 unique_id port 137061 remote_ip 10.8.0.154 137063 username barzegar 137063 mac 137063 bytes_out 0 137063 bytes_in 0 137063 station_ip 5.119.185.96 137063 port 287 137063 unique_id port 137063 remote_ip 10.8.0.234 137065 username hashtadani3 137065 mac 137065 bytes_out 0 137065 bytes_in 0 137065 station_ip 37.129.143.161 137065 port 287 137065 unique_id port 137065 remote_ip 10.8.0.154 137067 username hashtadani3 137067 mac 137067 bytes_out 0 137067 bytes_in 0 137067 station_ip 37.129.143.161 137067 port 194 137067 unique_id port 137067 remote_ip 10.8.1.94 137070 username hashtadani3 137070 mac 137070 bytes_out 0 137070 bytes_in 0 137070 station_ip 37.129.143.161 137070 port 287 137070 unique_id port 137070 remote_ip 10.8.0.154 137073 username hashtadani3 137073 mac 137073 bytes_out 0 137073 bytes_in 0 137073 station_ip 37.129.143.161 137073 port 304 137073 unique_id port 137073 remote_ip 10.8.0.154 137074 username hashtadani3 137074 mac 137074 bytes_out 0 137074 bytes_in 0 137074 station_ip 37.129.143.161 137074 port 194 137074 unique_id port 137074 remote_ip 10.8.1.94 137075 username hashtadani3 137075 mac 137075 bytes_out 0 137075 bytes_in 0 137075 station_ip 37.129.143.161 137075 port 312 137075 unique_id port 137075 remote_ip 10.8.0.154 137076 username barzegar 137076 mac 137076 bytes_out 0 137076 bytes_in 0 137076 station_ip 5.119.185.96 137076 port 304 137076 unique_id port 137076 remote_ip 10.8.0.234 137078 username hashtadani3 137078 mac 137078 bytes_out 0 137078 bytes_in 0 137078 station_ip 37.129.143.161 137078 port 304 137078 unique_id port 137078 remote_ip 10.8.0.154 137081 username hashtadani3 137081 mac 137081 bytes_out 0 137081 bytes_in 0 137081 station_ip 37.129.143.161 137081 port 315 137081 unique_id port 137081 remote_ip 10.8.0.154 137082 username hashtadani3 137082 mac 137082 bytes_out 0 137082 bytes_in 0 137082 station_ip 37.129.143.161 137082 port 315 137082 unique_id port 137082 remote_ip 10.8.0.154 137084 username barzegar 137084 mac 137084 bytes_out 0 137084 bytes_in 0 137084 station_ip 5.119.185.96 137084 port 315 137084 unique_id port 137084 remote_ip 10.8.0.234 137085 username hashtadani3 137085 mac 137085 bytes_out 0 137085 bytes_in 0 137085 station_ip 37.129.143.161 137085 port 315 137059 bytes_in 0 137059 station_ip 37.129.143.161 137059 port 312 137059 unique_id port 137059 remote_ip 10.8.0.154 137062 username sedighe 137062 mac 137062 bytes_out 174516 137062 bytes_in 1667579 137062 station_ip 83.122.172.118 137062 port 304 137062 unique_id port 137062 remote_ip 10.8.0.146 137064 username hashtadani3 137064 mac 137064 bytes_out 0 137064 bytes_in 0 137064 station_ip 37.129.143.161 137064 port 304 137064 unique_id port 137064 remote_ip 10.8.0.154 137066 username hashtadani3 137066 mac 137066 bytes_out 0 137066 bytes_in 0 137066 station_ip 37.129.143.161 137066 port 194 137066 unique_id port 137066 remote_ip 10.8.1.94 137071 username hashtadani3 137071 mac 137071 bytes_out 0 137071 bytes_in 0 137071 station_ip 37.129.143.161 137071 port 287 137071 unique_id port 137071 remote_ip 10.8.0.154 137072 username sedighe 137072 mac 137072 bytes_out 0 137072 bytes_in 0 137072 station_ip 37.129.6.223 137072 port 312 137072 unique_id port 137072 remote_ip 10.8.0.146 137083 username hashtadani3 137083 mac 137083 bytes_out 0 137083 bytes_in 0 137083 station_ip 37.129.143.161 137083 port 315 137083 unique_id port 137083 remote_ip 10.8.0.154 137090 username hashtadani3 137090 mac 137090 bytes_out 0 137090 bytes_in 0 137090 station_ip 37.129.143.161 137090 port 312 137090 unique_id port 137090 remote_ip 10.8.0.154 137092 username sedighe 137092 mac 137092 bytes_out 0 137092 bytes_in 0 137092 station_ip 37.129.6.223 137092 port 287 137092 unique_id port 137092 remote_ip 10.8.0.146 137094 username hashtadani3 137094 mac 137094 bytes_out 0 137094 bytes_in 0 137094 station_ip 37.129.143.161 137094 port 287 137094 unique_id port 137094 remote_ip 10.8.0.154 137097 username hashtadani3 137097 mac 137097 bytes_out 0 137097 bytes_in 0 137097 station_ip 37.129.143.161 137097 port 287 137097 unique_id port 137097 remote_ip 10.8.0.154 137100 username hashtadani3 137100 mac 137100 bytes_out 0 137100 bytes_in 0 137100 station_ip 37.129.143.161 137100 port 287 137100 unique_id port 137100 remote_ip 10.8.0.154 137102 username hashtadani3 137102 mac 137102 bytes_out 0 137102 bytes_in 0 137102 station_ip 37.129.143.161 137102 port 312 137102 unique_id port 137102 remote_ip 10.8.0.154 137105 username hashtadani3 137105 mac 137105 bytes_out 0 137105 bytes_in 0 137105 station_ip 37.129.143.161 137105 port 287 137105 unique_id port 137105 remote_ip 10.8.0.154 137106 username hashtadani3 137106 mac 137106 bytes_out 0 137106 bytes_in 0 137106 station_ip 37.129.143.161 137106 port 194 137106 unique_id port 137106 remote_ip 10.8.1.94 137115 username hashtadani3 137115 mac 137115 bytes_out 0 137115 bytes_in 0 137115 station_ip 37.129.143.161 137115 port 194 137115 unique_id port 137115 remote_ip 10.8.1.94 137118 username hashtadani3 137118 mac 137118 bytes_out 0 137118 bytes_in 0 137118 station_ip 37.129.143.161 137118 port 312 137118 unique_id port 137118 remote_ip 10.8.0.154 137119 username hashtadani3 137119 mac 137119 bytes_out 0 137119 bytes_in 0 137119 station_ip 37.129.143.161 137119 port 312 137119 unique_id port 137119 remote_ip 10.8.0.154 137125 username hashtadani3 137125 mac 137125 bytes_out 0 137125 bytes_in 0 137125 station_ip 37.129.143.161 137125 port 194 137125 unique_id port 137125 remote_ip 10.8.1.94 137129 username hashtadani3 137129 mac 137129 bytes_out 0 137129 bytes_in 0 137129 station_ip 37.129.143.161 137085 unique_id port 137085 remote_ip 10.8.0.154 137088 username hashtadani3 137088 mac 137088 bytes_out 0 137088 bytes_in 0 137088 station_ip 37.129.143.161 137088 port 315 137088 unique_id port 137088 remote_ip 10.8.0.154 137089 username amin.saeedi 137089 unique_id port 137089 terminate_cause User-Request 137089 bytes_out 248369 137089 bytes_in 652301 137089 station_ip 5.120.49.49 137089 port 15730580 137089 nas_port_type Virtual 137089 remote_ip 5.5.5.255 137095 username barzegar 137095 mac 137095 bytes_out 0 137095 bytes_in 0 137095 station_ip 5.119.185.96 137095 port 287 137095 unique_id port 137095 remote_ip 10.8.0.234 137096 username hashtadani3 137096 mac 137096 bytes_out 0 137096 bytes_in 0 137096 station_ip 37.129.143.161 137096 port 287 137096 unique_id port 137096 remote_ip 10.8.0.154 137099 username hashtadani3 137099 mac 137099 bytes_out 0 137099 bytes_in 0 137099 station_ip 37.129.143.161 137099 port 287 137099 unique_id port 137099 remote_ip 10.8.0.154 137104 username hashtadani3 137104 mac 137104 bytes_out 0 137104 bytes_in 0 137104 station_ip 37.129.143.161 137104 port 287 137104 unique_id port 137104 remote_ip 10.8.0.154 137107 username hashtadani3 137107 mac 137107 bytes_out 0 137107 bytes_in 0 137107 station_ip 37.129.143.161 137107 port 287 137107 unique_id port 137107 remote_ip 10.8.0.154 137108 username aminvpn 137108 mac 137108 bytes_out 0 137108 bytes_in 0 137108 station_ip 113.203.11.156 137108 port 287 137108 unique_id port 137108 remote_ip 10.8.0.14 137109 username hashtadani3 137109 mac 137109 bytes_out 0 137109 bytes_in 0 137109 station_ip 37.129.143.161 137109 port 287 137109 unique_id port 137109 remote_ip 10.8.0.154 137110 username hashtadani3 137110 mac 137110 bytes_out 0 137110 bytes_in 0 137110 station_ip 37.129.143.161 137110 port 194 137110 unique_id port 137110 remote_ip 10.8.1.94 137113 username barzegar 137113 mac 137113 bytes_out 0 137113 bytes_in 0 137113 station_ip 5.119.185.96 137113 port 315 137113 unique_id port 137113 remote_ip 10.8.0.234 137114 username hashtadani3 137114 mac 137114 bytes_out 0 137114 bytes_in 0 137114 station_ip 37.129.143.161 137114 port 194 137114 unique_id port 137114 remote_ip 10.8.1.94 137117 username hashtadani3 137117 mac 137117 bytes_out 0 137117 bytes_in 0 137117 station_ip 37.129.143.161 137117 port 312 137117 unique_id port 137117 remote_ip 10.8.0.154 137120 username mohammadjavad 137120 kill_reason Another user logged on this global unique id 137120 mac 137120 bytes_out 0 137120 bytes_in 0 137120 station_ip 83.122.34.125 137120 port 287 137120 unique_id port 137120 remote_ip 10.8.0.142 137121 username hashtadani3 137121 mac 137121 bytes_out 0 137121 bytes_in 0 137121 station_ip 37.129.143.161 137121 port 312 137121 unique_id port 137121 remote_ip 10.8.0.154 137122 username hashtadani3 137122 mac 137122 bytes_out 0 137122 bytes_in 0 137122 station_ip 37.129.143.161 137122 port 194 137122 unique_id port 137122 remote_ip 10.8.1.94 137123 username hashtadani3 137123 mac 137123 bytes_out 0 137123 bytes_in 0 137123 station_ip 37.129.143.161 137123 port 312 137123 unique_id port 137123 remote_ip 10.8.0.154 137126 username hashtadani3 137126 mac 137126 bytes_out 0 137126 bytes_in 0 137126 station_ip 37.129.143.161 137126 port 312 137126 unique_id port 137126 remote_ip 10.8.0.154 137127 username hashtadani3 137127 mac 137127 bytes_out 0 137127 bytes_in 0 137127 station_ip 37.129.143.161 137111 bytes_in 0 137111 station_ip 37.129.143.161 137111 port 312 137111 unique_id port 137111 remote_ip 10.8.0.154 137112 username hashtadani3 137112 mac 137112 bytes_out 0 137112 bytes_in 0 137112 station_ip 37.129.143.161 137112 port 312 137112 unique_id port 137112 remote_ip 10.8.0.154 137116 username hashtadani3 137116 mac 137116 bytes_out 0 137116 bytes_in 0 137116 station_ip 37.129.143.161 137116 port 312 137116 unique_id port 137116 remote_ip 10.8.0.154 137124 username barzegar 137124 mac 137124 bytes_out 0 137124 bytes_in 0 137124 station_ip 5.119.185.96 137124 port 315 137124 unique_id port 137124 remote_ip 10.8.0.234 137128 username hashtadani3 137128 mac 137128 bytes_out 0 137128 bytes_in 0 137128 station_ip 37.129.143.161 137128 port 194 137128 unique_id port 137128 remote_ip 10.8.1.94 137130 username hashtadani3 137130 mac 137130 bytes_out 0 137130 bytes_in 0 137130 station_ip 37.129.143.161 137130 port 315 137130 unique_id port 137130 remote_ip 10.8.0.154 137131 username mohammadjavad 137131 mac 137131 bytes_out 0 137131 bytes_in 0 137131 station_ip 83.122.34.125 137131 port 287 137131 unique_id port 137133 username hashtadani3 137133 mac 137133 bytes_out 0 137133 bytes_in 0 137133 station_ip 37.129.143.161 137133 port 287 137133 unique_id port 137133 remote_ip 10.8.0.154 137137 username hashtadani3 137137 mac 137137 bytes_out 0 137137 bytes_in 0 137137 station_ip 37.129.143.161 137137 port 287 137137 unique_id port 137137 remote_ip 10.8.0.154 137139 username sedighe 137139 mac 137139 bytes_out 0 137139 bytes_in 0 137139 station_ip 113.203.42.69 137139 port 312 137139 unique_id port 137139 remote_ip 10.8.0.146 137144 username barzegar 137144 mac 137144 bytes_out 0 137144 bytes_in 0 137144 station_ip 5.119.185.96 137144 port 287 137144 unique_id port 137144 remote_ip 10.8.0.234 137146 username hashtadani3 137146 mac 137146 bytes_out 0 137146 bytes_in 0 137146 station_ip 37.129.143.161 137146 port 194 137146 unique_id port 137146 remote_ip 10.8.1.94 137149 username hashtadani3 137149 mac 137149 bytes_out 0 137149 bytes_in 0 137149 station_ip 37.129.143.161 137149 port 194 137149 unique_id port 137149 remote_ip 10.8.1.94 137155 username hashtadani3 137155 mac 137155 bytes_out 0 137155 bytes_in 0 137155 station_ip 37.129.143.161 137155 port 312 137155 unique_id port 137155 remote_ip 10.8.0.154 137164 username hashtadani3 137164 mac 137164 bytes_out 0 137164 bytes_in 0 137164 station_ip 37.129.143.161 137164 port 315 137164 unique_id port 137164 remote_ip 10.8.0.154 137166 username barzegar 137166 mac 137166 bytes_out 0 137166 bytes_in 0 137166 station_ip 5.119.185.96 137166 port 315 137166 unique_id port 137166 remote_ip 10.8.0.234 137172 username vanila 137172 mac 137172 bytes_out 946552 137172 bytes_in 1679423 137172 station_ip 83.122.57.73 137172 port 316 137172 unique_id port 137172 remote_ip 10.8.0.178 137174 username hashtadani3 137174 mac 137174 bytes_out 0 137174 bytes_in 0 137174 station_ip 37.129.143.161 137174 port 316 137174 unique_id port 137174 remote_ip 10.8.0.154 137177 username hashtadani3 137177 mac 137177 bytes_out 0 137177 bytes_in 0 137177 station_ip 37.129.143.161 137177 port 194 137177 unique_id port 137177 remote_ip 10.8.1.94 137180 username hashtadani3 137180 mac 137180 bytes_out 0 137180 bytes_in 0 137180 station_ip 37.129.143.161 137180 port 315 137180 unique_id port 137127 port 315 137127 unique_id port 137127 remote_ip 10.8.0.154 137134 username hashtadani3 137134 mac 137134 bytes_out 0 137134 bytes_in 0 137134 station_ip 37.129.143.161 137134 port 316 137134 unique_id port 137134 remote_ip 10.8.0.154 137136 username hashtadani3 137136 mac 137136 bytes_out 0 137136 bytes_in 0 137136 station_ip 37.129.143.161 137136 port 194 137136 unique_id port 137136 remote_ip 10.8.1.94 137140 username hashtadani3 137140 mac 137140 bytes_out 0 137140 bytes_in 0 137140 station_ip 37.129.143.161 137140 port 287 137140 unique_id port 137140 remote_ip 10.8.0.154 137141 username hashtadani3 137141 mac 137141 bytes_out 0 137141 bytes_in 0 137141 station_ip 37.129.143.161 137141 port 287 137141 unique_id port 137141 remote_ip 10.8.0.154 137148 username hashtadani3 137148 mac 137148 bytes_out 0 137148 bytes_in 0 137148 station_ip 37.129.143.161 137148 port 287 137148 unique_id port 137148 remote_ip 10.8.0.154 137150 username hashtadani3 137150 mac 137150 bytes_out 0 137150 bytes_in 0 137150 station_ip 37.129.143.161 137150 port 312 137150 unique_id port 137150 remote_ip 10.8.0.154 137152 username hashtadani3 137152 mac 137152 bytes_out 0 137152 bytes_in 0 137152 station_ip 37.129.143.161 137152 port 312 137152 unique_id port 137152 remote_ip 10.8.0.154 137154 username hashtadani3 137154 mac 137154 bytes_out 0 137154 bytes_in 0 137154 station_ip 37.129.143.161 137154 port 312 137154 unique_id port 137154 remote_ip 10.8.0.154 137158 username hashtadani3 137158 mac 137158 bytes_out 0 137158 bytes_in 0 137158 station_ip 37.129.143.161 137158 port 312 137158 unique_id port 137158 remote_ip 10.8.0.154 137160 username hashtadani3 137160 mac 137160 bytes_out 0 137160 bytes_in 0 137160 station_ip 37.129.143.161 137160 port 312 137160 unique_id port 137160 remote_ip 10.8.0.154 137161 username hashtadani3 137161 mac 137161 bytes_out 0 137161 bytes_in 0 137161 station_ip 37.129.143.161 137161 port 312 137161 unique_id port 137161 remote_ip 10.8.0.154 137165 username jafari 137165 kill_reason Another user logged on this global unique id 137165 mac 137165 bytes_out 0 137165 bytes_in 0 137165 station_ip 37.137.42.102 137165 port 287 137165 unique_id port 137165 remote_ip 10.8.0.242 137168 username hashtadani3 137168 mac 137168 bytes_out 0 137168 bytes_in 0 137168 station_ip 37.129.143.161 137168 port 319 137168 unique_id port 137168 remote_ip 10.8.0.154 137170 username barzegar 137170 mac 137170 bytes_out 9465 137170 bytes_in 16247 137170 station_ip 5.119.185.96 137170 port 315 137170 unique_id port 137170 remote_ip 10.8.0.234 137173 username hashtadani3 137173 mac 137173 bytes_out 0 137173 bytes_in 0 137173 station_ip 37.129.143.161 137173 port 316 137173 unique_id port 137173 remote_ip 10.8.0.154 137176 username hashtadani3 137176 mac 137176 bytes_out 0 137176 bytes_in 0 137176 station_ip 37.129.143.161 137176 port 316 137176 unique_id port 137176 remote_ip 10.8.0.154 137178 username jafari 137178 kill_reason Another user logged on this global unique id 137178 mac 137178 bytes_out 0 137178 bytes_in 0 137178 station_ip 37.137.42.102 137178 port 287 137178 unique_id port 137179 username yaghobi 137179 mac 137179 bytes_out 789562 137179 bytes_in 13040423 137179 station_ip 83.123.162.6 137179 port 315 137179 unique_id port 137179 remote_ip 10.8.0.198 137182 username barzegar 137182 mac 137182 bytes_out 0 137182 bytes_in 0 137182 station_ip 5.119.185.96 137129 port 194 137129 unique_id port 137129 remote_ip 10.8.1.94 137132 username hashtadani3 137132 mac 137132 bytes_out 0 137132 bytes_in 0 137132 station_ip 37.129.143.161 137132 port 287 137132 unique_id port 137132 remote_ip 10.8.0.154 137135 username barzegar 137135 mac 137135 bytes_out 0 137135 bytes_in 0 137135 station_ip 5.119.185.96 137135 port 287 137135 unique_id port 137135 remote_ip 10.8.0.234 137138 username hamid 137138 mac 137138 bytes_out 1388199 137138 bytes_in 10591719 137138 station_ip 83.122.96.193 137138 port 315 137138 unique_id port 137138 remote_ip 10.8.0.106 137142 username hashtadani3 137142 mac 137142 bytes_out 0 137142 bytes_in 0 137142 station_ip 37.129.143.161 137142 port 287 137142 unique_id port 137142 remote_ip 10.8.0.154 137143 username hashtadani3 137143 mac 137143 bytes_out 0 137143 bytes_in 0 137143 station_ip 37.129.143.161 137143 port 287 137143 unique_id port 137143 remote_ip 10.8.0.154 137145 username hashtadani3 137145 mac 137145 bytes_out 0 137145 bytes_in 0 137145 station_ip 37.129.143.161 137145 port 287 137145 unique_id port 137145 remote_ip 10.8.0.154 137147 username hashtadani3 137147 mac 137147 bytes_out 0 137147 bytes_in 0 137147 station_ip 37.129.143.161 137147 port 194 137147 unique_id port 137147 remote_ip 10.8.1.94 137151 username hashtadani3 137151 mac 137151 bytes_out 0 137151 bytes_in 0 137151 station_ip 37.129.143.161 137151 port 312 137151 unique_id port 137151 remote_ip 10.8.0.154 137153 username hashtadani3 137153 mac 137153 bytes_out 0 137153 bytes_in 0 137153 station_ip 37.129.143.161 137153 port 312 137153 unique_id port 137153 remote_ip 10.8.0.154 137156 username barzegar 137156 mac 137156 bytes_out 0 137156 bytes_in 0 137156 station_ip 5.119.185.96 137156 port 312 137156 unique_id port 137156 remote_ip 10.8.0.234 137157 username hashtadani3 137157 mac 137157 bytes_out 0 137157 bytes_in 0 137157 station_ip 37.129.143.161 137157 port 312 137157 unique_id port 137157 remote_ip 10.8.0.154 137159 username hashtadani3 137159 mac 137159 bytes_out 0 137159 bytes_in 0 137159 station_ip 37.129.143.161 137159 port 312 137159 unique_id port 137159 remote_ip 10.8.0.154 137162 username hashtadani3 137162 mac 137162 bytes_out 0 137162 bytes_in 0 137162 station_ip 37.129.143.161 137162 port 315 137162 unique_id port 137162 remote_ip 10.8.0.154 137163 username hashtadani3 137163 mac 137163 bytes_out 0 137163 bytes_in 0 137163 station_ip 37.129.143.161 137163 port 315 137163 unique_id port 137163 remote_ip 10.8.0.154 137167 username hashtadani3 137167 mac 137167 bytes_out 0 137167 bytes_in 0 137167 station_ip 37.129.143.161 137167 port 315 137167 unique_id port 137167 remote_ip 10.8.0.154 137169 username moradi 137169 kill_reason Another user logged on this global unique id 137169 mac 137169 bytes_out 0 137169 bytes_in 0 137169 station_ip 37.129.213.62 137169 port 312 137169 unique_id port 137169 remote_ip 10.8.0.250 137171 username hashtadani3 137171 mac 137171 bytes_out 0 137171 bytes_in 0 137171 station_ip 37.129.143.161 137171 port 319 137171 unique_id port 137171 remote_ip 10.8.0.154 137175 username hashtadani3 137175 mac 137175 bytes_out 0 137175 bytes_in 0 137175 station_ip 37.129.143.161 137175 port 316 137175 unique_id port 137175 remote_ip 10.8.0.154 137184 username moradi 137184 mac 137184 bytes_out 0 137184 bytes_in 0 137184 station_ip 37.129.213.62 137184 port 312 137180 remote_ip 10.8.0.154 137181 username hashtadani3 137181 mac 137181 bytes_out 0 137181 bytes_in 0 137181 station_ip 37.129.143.161 137181 port 316 137181 unique_id port 137181 remote_ip 10.8.0.154 137185 username hashtadani3 137185 mac 137185 bytes_out 0 137185 bytes_in 0 137185 station_ip 37.129.143.161 137185 port 316 137185 unique_id port 137185 remote_ip 10.8.0.154 137190 username hashtadani3 137190 mac 137190 bytes_out 0 137190 bytes_in 0 137190 station_ip 37.129.143.161 137190 port 299 137190 unique_id port 137190 remote_ip 10.8.0.154 137196 username sekonji3 137196 mac 137196 bytes_out 270911 137196 bytes_in 5134065 137196 station_ip 37.129.42.215 137196 port 316 137196 unique_id port 137196 remote_ip 10.8.0.6 137198 username sabaghnezhad 137198 mac 137198 bytes_out 515551 137198 bytes_in 1900113 137198 station_ip 83.122.173.59 137198 port 304 137198 unique_id port 137198 remote_ip 10.8.0.186 137205 username hashtadani3 137205 mac 137205 bytes_out 0 137205 bytes_in 0 137205 station_ip 37.129.143.161 137205 port 195 137205 unique_id port 137205 remote_ip 10.8.1.94 137212 username vanila 137212 mac 137212 bytes_out 9590529 137212 bytes_in 12370863 137212 station_ip 83.122.57.73 137212 port 316 137212 unique_id port 137212 remote_ip 10.8.0.178 137213 username hashtadani3 137213 mac 137213 bytes_out 0 137213 bytes_in 0 137213 station_ip 37.129.143.161 137213 port 316 137213 unique_id port 137213 remote_ip 10.8.0.154 137216 username jafari 137216 kill_reason Another user logged on this global unique id 137216 mac 137216 bytes_out 0 137216 bytes_in 0 137216 station_ip 37.137.42.102 137216 port 287 137216 unique_id port 137230 username morteza 137230 mac 137230 bytes_out 0 137230 bytes_in 0 137230 station_ip 83.122.67.1 137230 port 316 137230 unique_id port 137230 remote_ip 10.8.0.46 137233 username morteza 137233 kill_reason Maximum check online fails reached 137233 mac 137233 bytes_out 0 137233 bytes_in 0 137233 station_ip 83.122.67.1 137233 port 304 137233 unique_id port 137237 username barzegar 137237 mac 137237 bytes_out 0 137237 bytes_in 0 137237 station_ip 5.119.185.96 137237 port 299 137237 unique_id port 137237 remote_ip 10.8.0.234 137239 username vanila 137239 mac 137239 bytes_out 1081470 137239 bytes_in 1774264 137239 station_ip 83.123.129.245 137239 port 315 137239 unique_id port 137239 remote_ip 10.8.0.178 137243 username hashtadani3 137243 mac 137243 bytes_out 0 137243 bytes_in 0 137243 station_ip 37.129.143.161 137243 port 299 137243 unique_id port 137243 remote_ip 10.8.0.154 137244 username meysam 137244 kill_reason Another user logged on this global unique id 137244 mac 137244 bytes_out 0 137244 bytes_in 0 137244 station_ip 188.158.49.57 137244 port 195 137244 unique_id port 137244 remote_ip 10.8.1.34 137249 username godarzi 137249 kill_reason Another user logged on this global unique id 137249 mac 137249 bytes_out 0 137249 bytes_in 0 137249 station_ip 5.202.62.33 137249 port 316 137249 unique_id port 137249 remote_ip 10.8.0.174 137250 username hashtadani3 137250 mac 137250 bytes_out 0 137250 bytes_in 0 137250 station_ip 37.129.143.161 137250 port 315 137250 unique_id port 137250 remote_ip 10.8.0.154 137251 username barzegar 137251 mac 137251 bytes_out 0 137251 bytes_in 0 137251 station_ip 5.119.185.96 137251 port 315 137251 unique_id port 137251 remote_ip 10.8.0.234 137254 username morteza 137254 mac 137254 bytes_out 0 137254 bytes_in 0 137254 station_ip 83.122.67.1 137182 port 194 137182 unique_id port 137182 remote_ip 10.8.1.174 137183 username hashtadani3 137183 mac 137183 bytes_out 0 137183 bytes_in 0 137183 station_ip 37.129.143.161 137183 port 316 137183 unique_id port 137183 remote_ip 10.8.0.154 137186 username hamidsalari 137186 mac 137186 bytes_out 166063 137186 bytes_in 287011 137186 station_ip 5.120.102.84 137186 port 299 137186 unique_id port 137186 remote_ip 10.8.0.222 137189 username jafari 137189 kill_reason Another user logged on this global unique id 137189 mac 137189 bytes_out 0 137189 bytes_in 0 137189 station_ip 37.137.42.102 137189 port 287 137189 unique_id port 137193 username hashtadani3 137193 mac 137193 bytes_out 0 137193 bytes_in 0 137193 station_ip 37.129.143.161 137193 port 299 137193 unique_id port 137193 remote_ip 10.8.0.154 137195 username barzegar 137195 mac 137195 bytes_out 0 137195 bytes_in 0 137195 station_ip 5.119.185.96 137195 port 312 137195 unique_id port 137195 remote_ip 10.8.0.234 137197 username hashtadani3 137197 mac 137197 bytes_out 0 137197 bytes_in 0 137197 station_ip 37.129.143.161 137197 port 194 137197 unique_id port 137197 remote_ip 10.8.1.94 137199 username hashtadani3 137199 mac 137199 bytes_out 0 137199 bytes_in 0 137199 station_ip 37.129.143.161 137199 port 312 137199 unique_id port 137199 remote_ip 10.8.0.154 137201 username hashtadani3 137201 mac 137201 bytes_out 0 137201 bytes_in 0 137201 station_ip 37.129.143.161 137201 port 312 137201 unique_id port 137201 remote_ip 10.8.0.154 137204 username vanila 137204 mac 137204 bytes_out 3614598 137204 bytes_in 595662 137204 station_ip 83.122.57.73 137204 port 320 137204 unique_id port 137204 remote_ip 10.8.0.178 137208 username hashtadani3 137208 mac 137208 bytes_out 0 137208 bytes_in 0 137208 station_ip 37.129.143.161 137208 port 322 137208 unique_id port 137208 remote_ip 10.8.0.154 137209 username sedighe 137209 mac 137209 bytes_out 0 137209 bytes_in 0 137209 station_ip 83.122.10.6 137209 port 312 137209 unique_id port 137209 remote_ip 10.8.0.146 137214 username barzegar 137214 mac 137214 bytes_out 0 137214 bytes_in 0 137214 station_ip 5.119.185.96 137214 port 315 137214 unique_id port 137214 remote_ip 10.8.0.234 137215 username hashtadani3 137215 mac 137215 bytes_out 0 137215 bytes_in 0 137215 station_ip 37.129.143.161 137215 port 315 137215 unique_id port 137215 remote_ip 10.8.0.154 137217 username hashtadani3 137217 mac 137217 bytes_out 0 137217 bytes_in 0 137217 station_ip 37.129.143.161 137217 port 315 137217 unique_id port 137217 remote_ip 10.8.0.154 137218 username hashtadani3 137218 mac 137218 bytes_out 0 137218 bytes_in 0 137218 station_ip 37.129.143.161 137218 port 315 137218 unique_id port 137218 remote_ip 10.8.0.154 137221 username mehdizare 137221 mac 137221 bytes_out 2864618 137221 bytes_in 37311938 137221 station_ip 5.120.148.206 137221 port 299 137221 unique_id port 137221 remote_ip 10.8.0.90 137223 username hashtadani3 137223 mac 137223 bytes_out 0 137223 bytes_in 0 137223 station_ip 37.129.143.161 137223 port 316 137223 unique_id port 137223 remote_ip 10.8.0.154 137224 username sedighe 137224 mac 137224 bytes_out 0 137224 bytes_in 0 137224 station_ip 83.122.10.6 137224 port 322 137224 unique_id port 137224 remote_ip 10.8.0.146 137226 username sabaghnezhad 137226 mac 137226 bytes_out 37876 137226 bytes_in 43358 137226 station_ip 83.122.173.59 137226 port 304 137184 unique_id port 137187 username mohammadjavad 137187 mac 137187 bytes_out 137928 137187 bytes_in 823331 137187 station_ip 83.123.158.102 137187 port 312 137187 unique_id port 137187 remote_ip 10.8.0.142 137188 username hashtadani3 137188 mac 137188 bytes_out 0 137188 bytes_in 0 137188 station_ip 37.129.143.161 137188 port 299 137188 unique_id port 137188 remote_ip 10.8.0.154 137191 username barzegar 137191 mac 137191 bytes_out 0 137191 bytes_in 0 137191 station_ip 5.119.185.96 137191 port 194 137191 unique_id port 137191 remote_ip 10.8.1.174 137192 username hashtadani3 137192 mac 137192 bytes_out 0 137192 bytes_in 0 137192 station_ip 37.129.143.161 137192 port 299 137192 unique_id port 137192 remote_ip 10.8.0.154 137194 username hashtadani3 137194 mac 137194 bytes_out 0 137194 bytes_in 0 137194 station_ip 37.129.143.161 137194 port 312 137194 unique_id port 137194 remote_ip 10.8.0.154 137200 username hashtadani3 137200 mac 137200 bytes_out 0 137200 bytes_in 0 137200 station_ip 37.129.143.161 137200 port 194 137200 unique_id port 137200 remote_ip 10.8.1.94 137202 username hashtadani3 137202 mac 137202 bytes_out 0 137202 bytes_in 0 137202 station_ip 37.129.143.161 137202 port 316 137202 unique_id port 137202 remote_ip 10.8.0.154 137203 username barzegar 137203 mac 137203 bytes_out 0 137203 bytes_in 0 137203 station_ip 5.119.185.96 137203 port 316 137203 unique_id port 137203 remote_ip 10.8.0.234 137206 username forozandeh1 137206 mac 137206 bytes_out 0 137206 bytes_in 0 137206 station_ip 37.129.176.27 137206 port 315 137206 unique_id port 137206 remote_ip 10.8.0.130 137207 username hashtadani3 137207 mac 137207 bytes_out 0 137207 bytes_in 0 137207 station_ip 37.129.143.161 137207 port 322 137207 unique_id port 137207 remote_ip 10.8.0.154 137210 username alihosseini1 137210 mac 137210 bytes_out 288888 137210 bytes_in 1364554 137210 station_ip 5.119.60.141 137210 port 194 137210 unique_id port 137210 remote_ip 10.8.1.106 137211 username hashtadani3 137211 mac 137211 bytes_out 0 137211 bytes_in 0 137211 station_ip 37.129.143.161 137211 port 312 137211 unique_id port 137211 remote_ip 10.8.0.154 137219 username hashtadani3 137219 mac 137219 bytes_out 0 137219 bytes_in 0 137219 station_ip 37.129.143.161 137219 port 194 137219 unique_id port 137219 remote_ip 10.8.1.94 137220 username hashtadani3 137220 mac 137220 bytes_out 0 137220 bytes_in 0 137220 station_ip 37.129.143.161 137220 port 316 137220 unique_id port 137220 remote_ip 10.8.0.154 137222 username hashtadani3 137222 mac 137222 bytes_out 0 137222 bytes_in 0 137222 station_ip 37.129.143.161 137222 port 316 137222 unique_id port 137222 remote_ip 10.8.0.154 137225 username morteza 137225 mac 137225 bytes_out 148736 137225 bytes_in 1824435 137225 station_ip 83.122.67.1 137225 port 320 137225 unique_id port 137225 remote_ip 10.8.0.46 137227 username morteza 137227 mac 137227 bytes_out 0 137227 bytes_in 0 137227 station_ip 83.122.67.1 137227 port 316 137227 unique_id port 137227 remote_ip 10.8.0.46 137228 username hashtadani3 137228 mac 137228 bytes_out 0 137228 bytes_in 0 137228 station_ip 37.129.143.161 137228 port 304 137228 unique_id port 137228 remote_ip 10.8.0.154 137231 username hashtadani3 137231 mac 137231 bytes_out 0 137231 bytes_in 0 137231 station_ip 37.129.143.161 137231 port 316 137231 unique_id port 137231 remote_ip 10.8.0.154 137240 username hashtadani3 137226 unique_id port 137226 remote_ip 10.8.0.186 137229 username hashtadani3 137229 mac 137229 bytes_out 0 137229 bytes_in 0 137229 station_ip 37.129.143.161 137229 port 304 137229 unique_id port 137229 remote_ip 10.8.0.154 137232 username morteza 137232 mac 137232 bytes_out 0 137232 bytes_in 0 137232 station_ip 83.122.67.1 137232 port 316 137232 unique_id port 137232 remote_ip 10.8.0.46 137234 username barzegar 137234 mac 137234 bytes_out 12833 137234 bytes_in 34116 137234 station_ip 5.119.185.96 137234 port 315 137234 unique_id port 137234 remote_ip 10.8.0.234 137235 username hashtadani3 137235 mac 137235 bytes_out 0 137235 bytes_in 0 137235 station_ip 37.129.143.161 137235 port 320 137235 unique_id port 137235 remote_ip 10.8.0.154 137236 username mehdizare 137236 mac 137236 bytes_out 0 137236 bytes_in 0 137236 station_ip 5.120.148.206 137236 port 299 137236 unique_id port 137236 remote_ip 10.8.0.90 137238 username hashtadani3 137238 mac 137238 bytes_out 0 137238 bytes_in 0 137238 station_ip 37.129.143.161 137238 port 320 137238 unique_id port 137238 remote_ip 10.8.0.154 137242 username morteza 137242 mac 137242 bytes_out 0 137242 bytes_in 0 137242 station_ip 83.122.67.1 137242 port 299 137242 unique_id port 137242 remote_ip 10.8.0.46 137247 username hashtadani3 137247 mac 137247 bytes_out 0 137247 bytes_in 0 137247 station_ip 37.129.143.161 137247 port 315 137247 unique_id port 137247 remote_ip 10.8.0.154 137248 username hashtadani3 137248 mac 137248 bytes_out 0 137248 bytes_in 0 137248 station_ip 37.129.143.161 137248 port 315 137248 unique_id port 137248 remote_ip 10.8.0.154 137252 username hashtadani3 137252 mac 137252 bytes_out 0 137252 bytes_in 0 137252 station_ip 37.129.143.161 137252 port 315 137252 unique_id port 137252 remote_ip 10.8.0.154 137253 username barzegar 137253 mac 137253 bytes_out 0 137253 bytes_in 0 137253 station_ip 5.119.185.96 137253 port 315 137253 unique_id port 137253 remote_ip 10.8.0.234 137256 username hashtadani3 137256 mac 137256 bytes_out 0 137256 bytes_in 0 137256 station_ip 37.129.143.161 137256 port 322 137256 unique_id port 137256 remote_ip 10.8.0.154 137257 username morteza 137257 kill_reason Maximum check online fails reached 137257 mac 137257 bytes_out 0 137257 bytes_in 0 137257 station_ip 83.122.67.1 137257 port 320 137257 unique_id port 137264 username hashtadani3 137264 mac 137264 bytes_out 0 137264 bytes_in 0 137264 station_ip 37.129.143.161 137264 port 315 137264 unique_id port 137264 remote_ip 10.8.0.154 137267 username hashtadani3 137267 mac 137267 bytes_out 0 137267 bytes_in 0 137267 station_ip 37.129.143.161 137267 port 324 137267 unique_id port 137267 remote_ip 10.8.0.154 137268 username hashtadani3 137268 mac 137268 bytes_out 0 137268 bytes_in 0 137268 station_ip 37.129.143.161 137268 port 324 137268 unique_id port 137268 remote_ip 10.8.0.154 137270 username vanila 137270 mac 137270 bytes_out 239059 137270 bytes_in 54400 137270 station_ip 83.123.213.133 137270 port 315 137270 unique_id port 137270 remote_ip 10.8.0.178 137273 username hashtadani3 137273 mac 137273 bytes_out 0 137273 bytes_in 0 137273 station_ip 37.129.143.161 137273 port 315 137273 unique_id port 137273 remote_ip 10.8.0.154 137276 username hashtadani3 137276 mac 137276 bytes_out 0 137276 bytes_in 0 137276 station_ip 37.129.143.161 137276 port 323 137276 unique_id port 137276 remote_ip 10.8.0.154 137240 mac 137240 bytes_out 0 137240 bytes_in 0 137240 station_ip 37.129.143.161 137240 port 299 137240 unique_id port 137240 remote_ip 10.8.0.154 137241 username morteza 137241 mac 137241 bytes_out 0 137241 bytes_in 0 137241 station_ip 83.122.67.1 137241 port 299 137241 unique_id port 137241 remote_ip 10.8.0.46 137245 username hashtadani3 137245 mac 137245 bytes_out 0 137245 bytes_in 0 137245 station_ip 37.129.143.161 137245 port 299 137245 unique_id port 137245 remote_ip 10.8.0.154 137246 username jafari 137246 kill_reason Another user logged on this global unique id 137246 mac 137246 bytes_out 0 137246 bytes_in 0 137246 station_ip 37.137.42.102 137246 port 287 137246 unique_id port 137258 username morteza 137258 mac 137258 bytes_out 0 137258 bytes_in 0 137258 station_ip 83.122.67.1 137258 port 322 137258 unique_id port 137258 remote_ip 10.8.0.46 137261 username sedighe 137261 mac 137261 bytes_out 340156 137261 bytes_in 3137908 137261 station_ip 113.203.126.180 137261 port 299 137261 unique_id port 137261 remote_ip 10.8.0.146 137262 username hashtadani3 137262 kill_reason Maximum check online fails reached 137262 mac 137262 bytes_out 0 137262 bytes_in 0 137262 station_ip 37.129.143.161 137262 port 197 137262 unique_id port 137266 username moradi 137266 mac 137266 bytes_out 0 137266 bytes_in 0 137266 station_ip 37.129.169.154 137266 port 299 137266 unique_id port 137266 remote_ip 10.8.0.250 137271 username alikomsari 137271 mac 137271 bytes_out 0 137271 bytes_in 0 137271 station_ip 5.119.210.87 137271 port 196 137271 unique_id port 137271 remote_ip 10.8.1.14 137274 username hamid.e 137274 unique_id port 137274 terminate_cause User-Request 137274 bytes_out 7178846 137274 bytes_in 88474636 137274 station_ip 37.27.0.188 137274 port 15730581 137274 nas_port_type Virtual 137274 remote_ip 5.5.5.236 137275 username hashtadani3 137275 mac 137275 bytes_out 0 137275 bytes_in 0 137275 station_ip 37.129.143.161 137275 port 196 137275 unique_id port 137275 remote_ip 10.8.1.94 137277 username barzegar 137277 mac 137277 bytes_out 0 137277 bytes_in 0 137277 station_ip 5.119.185.96 137277 port 315 137277 unique_id port 137277 remote_ip 10.8.0.234 137278 username hashtadani3 137278 mac 137278 bytes_out 0 137278 bytes_in 0 137278 station_ip 37.129.143.161 137278 port 315 137278 unique_id port 137278 remote_ip 10.8.0.154 137281 username meysam 137281 mac 137281 bytes_out 0 137281 bytes_in 0 137281 station_ip 188.158.49.57 137281 port 195 137281 unique_id port 137283 username barzegar 137283 mac 137283 bytes_out 0 137283 bytes_in 0 137283 station_ip 5.119.185.96 137283 port 315 137283 unique_id port 137283 remote_ip 10.8.0.234 137284 username hashtadani3 137284 mac 137284 bytes_out 0 137284 bytes_in 0 137284 station_ip 37.129.143.161 137284 port 315 137284 unique_id port 137284 remote_ip 10.8.0.154 137286 username hashtadani3 137286 mac 137286 bytes_out 0 137286 bytes_in 0 137286 station_ip 37.129.143.161 137286 port 315 137286 unique_id port 137286 remote_ip 10.8.0.154 137288 username morteza 137288 mac 137288 bytes_out 0 137288 bytes_in 0 137288 station_ip 83.122.67.1 137288 port 315 137288 unique_id port 137288 remote_ip 10.8.0.46 137291 username morteza 137291 mac 137291 bytes_out 0 137291 bytes_in 0 137291 station_ip 83.122.67.1 137291 port 315 137291 unique_id port 137291 remote_ip 10.8.0.46 137294 username hashtadani3 137294 kill_reason Maximum check online fails reached 137254 port 315 137254 unique_id port 137254 remote_ip 10.8.0.46 137255 username meysam 137255 kill_reason Another user logged on this global unique id 137255 mac 137255 bytes_out 0 137255 bytes_in 0 137255 station_ip 188.158.49.57 137255 port 195 137255 unique_id port 137259 username moradi 137259 mac 137259 bytes_out 70060 137259 bytes_in 171041 137259 station_ip 37.129.169.154 137259 port 315 137259 unique_id port 137259 remote_ip 10.8.0.250 137260 username hashtadani3 137260 mac 137260 bytes_out 0 137260 bytes_in 0 137260 station_ip 37.129.143.161 137260 port 315 137260 unique_id port 137260 remote_ip 10.8.0.154 137263 username mehdizare 137263 mac 137263 bytes_out 0 137263 bytes_in 0 137263 station_ip 5.120.148.206 137263 port 196 137263 unique_id port 137263 remote_ip 10.8.1.42 137265 username godarzi 137265 kill_reason Another user logged on this global unique id 137265 mac 137265 bytes_out 0 137265 bytes_in 0 137265 station_ip 5.202.62.33 137265 port 316 137265 unique_id port 137269 username saeed9658 137269 mac 137269 bytes_out 862705 137269 bytes_in 8628420 137269 station_ip 5.120.65.132 137269 port 323 137269 unique_id port 137269 remote_ip 10.8.0.62 137272 username jafari 137272 kill_reason Another user logged on this global unique id 137272 mac 137272 bytes_out 0 137272 bytes_in 0 137272 station_ip 37.137.42.102 137272 port 287 137272 unique_id port 137289 username hashtadani3 137289 mac 137289 bytes_out 0 137289 bytes_in 0 137289 station_ip 37.129.143.161 137289 port 315 137289 unique_id port 137289 remote_ip 10.8.0.154 137292 username hashtadani3 137292 mac 137292 bytes_out 0 137292 bytes_in 0 137292 station_ip 37.129.143.161 137292 port 198 137292 unique_id port 137292 remote_ip 10.8.1.94 137295 username barzegar 137295 mac 137295 bytes_out 0 137295 bytes_in 0 137295 station_ip 5.119.185.96 137295 port 198 137295 unique_id port 137295 remote_ip 10.8.1.174 137297 username godarzi 137297 mac 137297 bytes_out 0 137297 bytes_in 0 137297 station_ip 5.202.62.33 137297 port 316 137297 unique_id port 137302 username hashtadani3 137302 mac 137302 bytes_out 0 137302 bytes_in 0 137302 station_ip 37.129.143.161 137302 port 315 137302 unique_id port 137302 remote_ip 10.8.0.154 137306 username morteza 137306 mac 137306 bytes_out 26791 137306 bytes_in 456022 137306 station_ip 83.122.67.1 137306 port 316 137306 unique_id port 137306 remote_ip 10.8.0.46 137308 username jafari 137308 kill_reason Another user logged on this global unique id 137308 mac 137308 bytes_out 0 137308 bytes_in 0 137308 station_ip 37.137.42.102 137308 port 287 137308 unique_id port 137310 username meysam 137310 mac 137310 bytes_out 0 137310 bytes_in 0 137310 station_ip 188.158.49.57 137310 port 195 137310 unique_id port 137310 remote_ip 10.8.1.34 137311 username saeed9658 137311 mac 137311 bytes_out 0 137311 bytes_in 0 137311 station_ip 5.120.65.132 137311 port 316 137311 unique_id port 137311 remote_ip 10.8.0.62 137312 username barzegar 137312 mac 137312 bytes_out 0 137312 bytes_in 0 137312 station_ip 5.119.185.96 137312 port 195 137312 unique_id port 137312 remote_ip 10.8.1.174 137313 username barzegar 137313 mac 137313 bytes_out 3461 137313 bytes_in 6232 137313 station_ip 5.119.185.96 137313 port 195 137313 unique_id port 137313 remote_ip 10.8.1.174 137316 username hashtadani3 137316 mac 137316 bytes_out 0 137316 bytes_in 0 137316 station_ip 37.129.143.161 137316 port 315 137316 unique_id port 137279 username godarzi 137279 kill_reason Another user logged on this global unique id 137279 mac 137279 bytes_out 0 137279 bytes_in 0 137279 station_ip 5.202.62.33 137279 port 316 137279 unique_id port 137280 username hashtadani3 137280 mac 137280 bytes_out 0 137280 bytes_in 0 137280 station_ip 37.129.143.161 137280 port 315 137280 unique_id port 137280 remote_ip 10.8.0.154 137282 username morteza 137282 mac 137282 bytes_out 0 137282 bytes_in 0 137282 station_ip 83.122.67.1 137282 port 324 137282 unique_id port 137282 remote_ip 10.8.0.46 137285 username mehdizare 137285 mac 137285 bytes_out 1386012 137285 bytes_in 46271718 137285 station_ip 5.120.148.206 137285 port 322 137285 unique_id port 137285 remote_ip 10.8.0.90 137287 username alikomsari 137287 mac 137287 bytes_out 517131 137287 bytes_in 2506348 137287 station_ip 5.119.210.87 137287 port 323 137287 unique_id port 137287 remote_ip 10.8.0.70 137290 username barzegar 137290 mac 137290 bytes_out 0 137290 bytes_in 0 137290 station_ip 5.119.185.96 137290 port 323 137290 unique_id port 137290 remote_ip 10.8.0.234 137293 username hashtadani3 137293 mac 137293 bytes_out 0 137293 bytes_in 0 137293 station_ip 37.129.143.161 137293 port 315 137293 unique_id port 137293 remote_ip 10.8.0.154 137298 username jafari 137298 kill_reason Another user logged on this global unique id 137298 mac 137298 bytes_out 0 137298 bytes_in 0 137298 station_ip 37.137.42.102 137298 port 287 137298 unique_id port 137301 username hashtadani3 137301 mac 137301 bytes_out 0 137301 bytes_in 0 137301 station_ip 37.129.143.161 137301 port 315 137301 unique_id port 137301 remote_ip 10.8.0.154 137303 username hashtadani3 137303 mac 137303 bytes_out 0 137303 bytes_in 0 137303 station_ip 37.129.143.161 137303 port 315 137303 unique_id port 137303 remote_ip 10.8.0.154 137304 username barzegar 137304 mac 137304 bytes_out 0 137304 bytes_in 0 137304 station_ip 5.119.185.96 137304 port 198 137304 unique_id port 137304 remote_ip 10.8.1.174 137309 username morteza 137309 mac 137309 bytes_out 0 137309 bytes_in 0 137309 station_ip 83.122.67.1 137309 port 316 137309 unique_id port 137309 remote_ip 10.8.0.46 137314 username hashtadani3 137314 kill_reason Another user logged on this global unique id 137314 mac 137314 bytes_out 0 137314 bytes_in 0 137314 station_ip 37.129.143.161 137314 port 315 137314 unique_id port 137314 remote_ip 10.8.0.154 137322 username hashtadani3 137322 mac 137322 bytes_out 0 137322 bytes_in 0 137322 station_ip 37.129.143.161 137322 port 316 137322 unique_id port 137322 remote_ip 10.8.0.154 137327 username barzegar 137327 mac 137327 bytes_out 0 137327 bytes_in 0 137327 station_ip 5.119.185.96 137327 port 195 137327 unique_id port 137327 remote_ip 10.8.1.174 137329 username hashtadani3 137329 mac 137329 bytes_out 0 137329 bytes_in 0 137329 station_ip 37.129.143.161 137329 port 325 137329 unique_id port 137329 remote_ip 10.8.0.154 137331 username saeed9658 137331 mac 137331 bytes_out 205069 137331 bytes_in 647084 137331 station_ip 5.120.65.132 137331 port 315 137331 unique_id port 137331 remote_ip 10.8.0.62 137339 username barzegar 137339 mac 137339 bytes_out 0 137339 bytes_in 0 137339 station_ip 5.119.185.96 137339 port 325 137339 unique_id port 137339 remote_ip 10.8.0.234 137342 username saeed9658 137342 mac 137342 bytes_out 268240 137342 bytes_in 1421957 137342 station_ip 5.120.65.132 137342 port 323 137342 unique_id port 137342 remote_ip 10.8.0.62 137294 mac 137294 bytes_out 0 137294 bytes_in 0 137294 station_ip 37.129.143.161 137294 port 196 137294 unique_id port 137296 username hashtadani3 137296 mac 137296 bytes_out 0 137296 bytes_in 0 137296 station_ip 37.129.143.161 137296 port 315 137296 unique_id port 137296 remote_ip 10.8.0.154 137299 username morteza 137299 mac 137299 bytes_out 0 137299 bytes_in 0 137299 station_ip 83.122.67.1 137299 port 315 137299 unique_id port 137299 remote_ip 10.8.0.46 137300 username hashtadani3 137300 mac 137300 bytes_out 0 137300 bytes_in 0 137300 station_ip 37.129.143.161 137300 port 315 137300 unique_id port 137300 remote_ip 10.8.0.154 137305 username morteza 137305 mac 137305 bytes_out 0 137305 bytes_in 0 137305 station_ip 83.122.67.1 137305 port 316 137305 unique_id port 137305 remote_ip 10.8.0.46 137307 username morteza 137307 mac 137307 bytes_out 0 137307 bytes_in 0 137307 station_ip 83.122.67.1 137307 port 316 137307 unique_id port 137307 remote_ip 10.8.0.46 137315 username hashtadani3 137315 mac 137315 bytes_out 0 137315 bytes_in 0 137315 station_ip 37.129.143.161 137315 port 315 137315 unique_id port 137317 username mostafa_es78 137317 unique_id port 137317 terminate_cause User-Request 137317 bytes_out 265579 137317 bytes_in 2991098 137317 station_ip 109.125.174.62 137317 port 15730582 137317 nas_port_type Virtual 137317 remote_ip 5.5.5.255 137318 username hashtadani3 137318 mac 137318 bytes_out 0 137318 bytes_in 0 137318 station_ip 37.129.143.161 137318 port 315 137318 unique_id port 137318 remote_ip 10.8.0.154 137320 username hashtadani3 137320 mac 137320 bytes_out 0 137320 bytes_in 0 137320 station_ip 37.129.143.161 137320 port 315 137320 unique_id port 137320 remote_ip 10.8.0.154 137321 username godarzi 137321 mac 137321 bytes_out 0 137321 bytes_in 0 137321 station_ip 5.202.62.33 137321 port 316 137321 unique_id port 137321 remote_ip 10.8.0.174 137323 username hashtadani3 137323 mac 137323 bytes_out 0 137323 bytes_in 0 137323 station_ip 37.129.143.161 137323 port 316 137323 unique_id port 137323 remote_ip 10.8.0.154 137325 username hashtadani3 137325 mac 137325 bytes_out 0 137325 bytes_in 0 137325 station_ip 37.129.143.161 137325 port 323 137325 unique_id port 137325 remote_ip 10.8.0.154 137328 username amir 137328 mac 137328 bytes_out 0 137328 bytes_in 0 137328 station_ip 37.129.144.161 137328 port 323 137328 unique_id port 137328 remote_ip 10.8.0.50 137330 username amir 137330 mac 137330 bytes_out 0 137330 bytes_in 0 137330 station_ip 37.129.144.161 137330 port 194 137330 unique_id port 137330 remote_ip 10.8.1.22 137332 username barzegar 137332 mac 137332 bytes_out 0 137332 bytes_in 0 137332 station_ip 5.119.185.96 137332 port 323 137332 unique_id port 137332 remote_ip 10.8.0.234 137333 username hashtadani3 137333 mac 137333 bytes_out 0 137333 bytes_in 0 137333 station_ip 37.129.143.161 137333 port 315 137333 unique_id port 137333 remote_ip 10.8.0.154 137335 username hashtadani3 137335 mac 137335 bytes_out 0 137335 bytes_in 0 137335 station_ip 37.129.143.161 137335 port 315 137335 unique_id port 137335 remote_ip 10.8.0.154 137337 username hamidsalari 137337 mac 137337 bytes_out 0 137337 bytes_in 0 137337 station_ip 5.120.102.84 137337 port 319 137337 unique_id port 137337 remote_ip 10.8.0.222 137341 username hashtadani3 137341 mac 137341 bytes_out 0 137341 bytes_in 0 137341 station_ip 37.129.143.161 137316 remote_ip 10.8.0.154 137319 username sabaghnezhad 137319 mac 137319 bytes_out 211415 137319 bytes_in 687996 137319 station_ip 83.122.173.59 137319 port 194 137319 unique_id port 137319 remote_ip 10.8.1.130 137324 username hashtadani3 137324 mac 137324 bytes_out 0 137324 bytes_in 0 137324 station_ip 37.129.143.161 137324 port 323 137324 unique_id port 137324 remote_ip 10.8.0.154 137326 username vanila 137326 mac 137326 bytes_out 0 137326 bytes_in 0 137326 station_ip 83.122.208.158 137326 port 316 137326 unique_id port 137326 remote_ip 10.8.0.178 137334 username hashtadani3 137334 mac 137334 bytes_out 0 137334 bytes_in 0 137334 station_ip 37.129.143.161 137334 port 315 137334 unique_id port 137334 remote_ip 10.8.0.154 137336 username amir 137336 mac 137336 bytes_out 0 137336 bytes_in 0 137336 station_ip 37.129.144.161 137336 port 325 137336 unique_id port 137336 remote_ip 10.8.0.50 137338 username hashtadani3 137338 mac 137338 bytes_out 0 137338 bytes_in 0 137338 station_ip 37.129.143.161 137338 port 319 137338 unique_id port 137338 remote_ip 10.8.0.154 137340 username vanila 137340 mac 137340 bytes_out 5072357 137340 bytes_in 1950035 137340 station_ip 83.122.208.158 137340 port 324 137340 unique_id port 137340 remote_ip 10.8.0.178 137343 username amir 137343 mac 137343 bytes_out 0 137343 bytes_in 0 137343 station_ip 37.129.144.161 137343 port 194 137343 unique_id port 137343 remote_ip 10.8.1.22 137352 username forozandeh1 137352 mac 137352 bytes_out 2507096 137352 bytes_in 45092573 137352 station_ip 113.203.92.140 137352 port 316 137352 unique_id port 137352 remote_ip 10.8.0.130 137355 username amir 137355 mac 137355 bytes_out 87365 137355 bytes_in 319849 137355 station_ip 37.129.144.161 137355 port 194 137355 unique_id port 137355 remote_ip 10.8.1.22 137358 username hashtadani3 137358 mac 137358 bytes_out 0 137358 bytes_in 0 137358 station_ip 37.129.143.161 137358 port 325 137358 unique_id port 137358 remote_ip 10.8.0.154 137359 username hashtadani3 137359 mac 137359 bytes_out 0 137359 bytes_in 0 137359 station_ip 37.129.143.161 137359 port 325 137359 unique_id port 137359 remote_ip 10.8.0.154 137360 username hashtadani3 137360 mac 137360 bytes_out 0 137360 bytes_in 0 137360 station_ip 37.129.143.161 137360 port 194 137360 unique_id port 137360 remote_ip 10.8.1.94 137362 username hashtadani3 137362 mac 137362 bytes_out 0 137362 bytes_in 0 137362 station_ip 37.129.143.161 137362 port 323 137362 unique_id port 137362 remote_ip 10.8.0.154 137364 username hashtadani3 137364 mac 137364 bytes_out 0 137364 bytes_in 0 137364 station_ip 37.129.143.161 137364 port 323 137364 unique_id port 137364 remote_ip 10.8.0.154 137367 username jafari 137367 mac 137367 bytes_out 0 137367 bytes_in 0 137367 station_ip 37.137.42.102 137367 port 287 137367 unique_id port 137369 username amir 137369 mac 137369 bytes_out 0 137369 bytes_in 0 137369 station_ip 37.129.144.161 137369 port 198 137369 unique_id port 137369 remote_ip 10.8.1.22 137370 username hashtadani3 137370 mac 137370 bytes_out 0 137370 bytes_in 0 137370 station_ip 37.129.143.161 137370 port 199 137370 unique_id port 137370 remote_ip 10.8.1.94 137372 username hashtadani3 137372 mac 137372 bytes_out 0 137372 bytes_in 0 137372 station_ip 37.129.143.161 137372 port 287 137372 unique_id port 137372 remote_ip 10.8.0.154 137374 username hashtadani3 137374 mac 137341 port 319 137341 unique_id port 137341 remote_ip 10.8.0.154 137344 username hashtadani3 137344 mac 137344 bytes_out 0 137344 bytes_in 0 137344 station_ip 37.129.143.161 137344 port 323 137344 unique_id port 137344 remote_ip 10.8.0.154 137345 username amir 137345 mac 137345 bytes_out 0 137345 bytes_in 0 137345 station_ip 37.129.144.161 137345 port 323 137345 unique_id port 137345 remote_ip 10.8.0.50 137348 username hashtadani3 137348 mac 137348 bytes_out 2429 137348 bytes_in 4706 137348 station_ip 37.129.143.161 137348 port 323 137348 unique_id port 137348 remote_ip 10.8.0.154 137349 username hashtadani3 137349 mac 137349 bytes_out 0 137349 bytes_in 0 137349 station_ip 37.129.143.161 137349 port 323 137349 unique_id port 137349 remote_ip 10.8.0.154 137351 username hashtadani3 137351 mac 137351 bytes_out 0 137351 bytes_in 0 137351 station_ip 37.129.143.161 137351 port 323 137351 unique_id port 137351 remote_ip 10.8.0.154 137353 username vanila 137353 mac 137353 bytes_out 593867 137353 bytes_in 78114 137353 station_ip 83.122.208.158 137353 port 325 137353 unique_id port 137353 remote_ip 10.8.0.178 137354 username hashtadani3 137354 mac 137354 bytes_out 0 137354 bytes_in 0 137354 station_ip 37.129.143.161 137354 port 316 137354 unique_id port 137354 remote_ip 10.8.0.154 137376 username hashtadani3 137376 mac 137376 bytes_out 0 137376 bytes_in 0 137376 station_ip 37.129.143.161 137376 port 199 137376 unique_id port 137376 remote_ip 10.8.1.94 137378 username hashtadani3 137378 mac 137378 bytes_out 0 137378 bytes_in 0 137378 station_ip 37.129.143.161 137378 port 198 137378 unique_id port 137378 remote_ip 10.8.1.94 137381 username hashtadani3 137381 mac 137381 bytes_out 0 137381 bytes_in 0 137381 station_ip 37.129.143.161 137381 port 322 137381 unique_id port 137381 remote_ip 10.8.0.154 137385 username hashtadani3 137385 mac 137385 bytes_out 0 137385 bytes_in 0 137385 station_ip 37.129.143.161 137385 port 325 137385 unique_id port 137385 remote_ip 10.8.0.154 137389 username mehdizare 137389 mac 137389 bytes_out 15835 137389 bytes_in 17815 137389 station_ip 5.120.148.206 137389 port 287 137389 unique_id port 137389 remote_ip 10.8.0.90 137392 username amir 137392 mac 137392 bytes_out 0 137392 bytes_in 0 137392 station_ip 37.129.144.161 137392 port 319 137392 unique_id port 137392 remote_ip 10.8.0.50 137393 username mehdizare 137393 mac 137393 bytes_out 9518 137393 bytes_in 13663 137393 station_ip 5.120.148.206 137393 port 322 137393 unique_id port 137393 remote_ip 10.8.0.90 137395 username hashtadani3 137395 mac 137395 bytes_out 0 137395 bytes_in 0 137395 station_ip 37.129.143.161 137395 port 322 137395 unique_id port 137395 remote_ip 10.8.0.154 137398 username hashtadani3 137398 mac 137398 bytes_out 0 137398 bytes_in 0 137398 station_ip 37.129.143.161 137398 port 322 137398 unique_id port 137398 remote_ip 10.8.0.154 137401 username hashtadani3 137401 mac 137401 bytes_out 0 137401 bytes_in 0 137401 station_ip 37.129.143.161 137401 port 322 137401 unique_id port 137401 remote_ip 10.8.0.154 137402 username hashtadani3 137402 mac 137402 bytes_out 0 137402 bytes_in 0 137402 station_ip 37.129.143.161 137402 port 322 137402 unique_id port 137402 remote_ip 10.8.0.154 137405 username amir 137405 mac 137405 bytes_out 0 137405 bytes_in 0 137405 station_ip 37.129.144.161 137405 port 194 137405 unique_id port 137346 username hashtadani3 137346 mac 137346 bytes_out 0 137346 bytes_in 0 137346 station_ip 37.129.143.161 137346 port 325 137346 unique_id port 137346 remote_ip 10.8.0.154 137347 username hashtadani3 137347 mac 137347 bytes_out 0 137347 bytes_in 0 137347 station_ip 37.129.143.161 137347 port 323 137347 unique_id port 137347 remote_ip 10.8.0.154 137350 username hashtadani3 137350 mac 137350 bytes_out 0 137350 bytes_in 0 137350 station_ip 37.129.143.161 137350 port 323 137350 unique_id port 137350 remote_ip 10.8.0.154 137356 username hashtadani3 137356 mac 137356 bytes_out 0 137356 bytes_in 0 137356 station_ip 37.129.143.161 137356 port 325 137356 unique_id port 137356 remote_ip 10.8.0.154 137357 username hashtadani3 137357 mac 137357 bytes_out 0 137357 bytes_in 0 137357 station_ip 37.129.143.161 137357 port 325 137357 unique_id port 137357 remote_ip 10.8.0.154 137361 username amir 137361 mac 137361 bytes_out 0 137361 bytes_in 0 137361 station_ip 37.129.144.161 137361 port 323 137361 unique_id port 137361 remote_ip 10.8.0.50 137363 username barzegar 137363 mac 137363 bytes_out 0 137363 bytes_in 0 137363 station_ip 5.119.185.96 137363 port 319 137363 unique_id port 137363 remote_ip 10.8.0.234 137365 username amir 137365 mac 137365 bytes_out 0 137365 bytes_in 0 137365 station_ip 37.129.144.161 137365 port 319 137365 unique_id port 137365 remote_ip 10.8.0.50 137366 username hashtadani3 137366 mac 137366 bytes_out 0 137366 bytes_in 0 137366 station_ip 37.129.143.161 137366 port 319 137366 unique_id port 137366 remote_ip 10.8.0.154 137368 username hashtadani3 137368 mac 137368 bytes_out 0 137368 bytes_in 0 137368 station_ip 37.129.143.161 137368 port 319 137368 unique_id port 137368 remote_ip 10.8.0.154 137371 username amir 137371 mac 137371 bytes_out 0 137371 bytes_in 0 137371 station_ip 37.129.144.161 137371 port 198 137371 unique_id port 137371 remote_ip 10.8.1.22 137373 username hashtadani3 137373 mac 137373 bytes_out 0 137373 bytes_in 0 137373 station_ip 37.129.143.161 137373 port 287 137373 unique_id port 137373 remote_ip 10.8.0.154 137379 username mehdizare 137379 mac 137379 bytes_out 97633 137379 bytes_in 92183 137379 station_ip 5.120.148.206 137379 port 322 137379 unique_id port 137379 remote_ip 10.8.0.90 137382 username meysam 137382 mac 137382 bytes_out 0 137382 bytes_in 0 137382 station_ip 188.158.49.57 137382 port 195 137382 unique_id port 137382 remote_ip 10.8.1.34 137384 username hashtadani3 137384 mac 137384 bytes_out 0 137384 bytes_in 0 137384 station_ip 37.129.143.161 137384 port 322 137384 unique_id port 137384 remote_ip 10.8.0.154 137386 username hashtadani3 137386 mac 137386 bytes_out 0 137386 bytes_in 0 137386 station_ip 37.129.143.161 137386 port 322 137386 unique_id port 137386 remote_ip 10.8.0.154 137387 username amir 137387 mac 137387 bytes_out 67524 137387 bytes_in 320312 137387 station_ip 37.129.144.161 137387 port 319 137387 unique_id port 137387 remote_ip 10.8.0.50 137390 username hashtadani3 137390 mac 137390 bytes_out 0 137390 bytes_in 0 137390 station_ip 37.129.143.161 137390 port 287 137390 unique_id port 137390 remote_ip 10.8.0.154 137394 username hashtadani3 137394 mac 137394 bytes_out 0 137394 bytes_in 0 137394 station_ip 37.129.143.161 137394 port 322 137394 unique_id port 137394 remote_ip 10.8.0.154 137397 username godarzi 137397 kill_reason Another user logged on this global unique id 137374 bytes_out 0 137374 bytes_in 0 137374 station_ip 37.129.143.161 137374 port 287 137374 unique_id port 137374 remote_ip 10.8.0.154 137375 username godarzi 137375 kill_reason Another user logged on this global unique id 137375 mac 137375 bytes_out 0 137375 bytes_in 0 137375 station_ip 5.202.62.33 137375 port 316 137375 unique_id port 137375 remote_ip 10.8.0.174 137377 username amir 137377 mac 137377 bytes_out 28180 137377 bytes_in 103238 137377 station_ip 37.129.144.161 137377 port 198 137377 unique_id port 137377 remote_ip 10.8.1.22 137380 username hashtadani3 137380 mac 137380 bytes_out 0 137380 bytes_in 0 137380 station_ip 37.129.143.161 137380 port 319 137380 unique_id port 137380 remote_ip 10.8.0.154 137383 username hashtadani3 137383 mac 137383 bytes_out 0 137383 bytes_in 0 137383 station_ip 37.129.143.161 137383 port 322 137383 unique_id port 137383 remote_ip 10.8.0.154 137388 username hashtadani3 137388 mac 137388 bytes_out 0 137388 bytes_in 0 137388 station_ip 37.129.143.161 137388 port 322 137388 unique_id port 137388 remote_ip 10.8.0.154 137391 username moradi 137391 kill_reason Another user logged on this global unique id 137391 mac 137391 bytes_out 0 137391 bytes_in 0 137391 station_ip 37.129.169.154 137391 port 299 137391 unique_id port 137391 remote_ip 10.8.0.250 137396 username barzegar 137396 mac 137396 bytes_out 0 137396 bytes_in 0 137396 station_ip 5.119.185.96 137396 port 194 137396 unique_id port 137396 remote_ip 10.8.1.174 137400 username hashtadani3 137400 mac 137400 bytes_out 0 137400 bytes_in 0 137400 station_ip 37.129.143.161 137400 port 322 137400 unique_id port 137400 remote_ip 10.8.0.154 137403 username amir 137403 mac 137403 bytes_out 42056 137403 bytes_in 181569 137403 station_ip 37.129.144.161 137403 port 287 137403 unique_id port 137403 remote_ip 10.8.0.50 137408 username amir 137408 mac 137408 bytes_out 0 137408 bytes_in 0 137408 station_ip 37.129.144.161 137408 port 194 137408 unique_id port 137408 remote_ip 10.8.1.22 137413 username hashtadani3 137413 mac 137413 bytes_out 0 137413 bytes_in 0 137413 station_ip 37.129.143.161 137413 port 322 137413 unique_id port 137413 remote_ip 10.8.0.154 137417 username hashtadani3 137417 mac 137417 bytes_out 0 137417 bytes_in 0 137417 station_ip 37.129.143.161 137417 port 195 137417 unique_id port 137417 remote_ip 10.8.1.94 137423 username mehdizare 137423 mac 137423 bytes_out 14871 137423 bytes_in 22857 137423 station_ip 5.120.148.206 137423 port 319 137423 unique_id port 137423 remote_ip 10.8.0.90 137427 username amir 137427 mac 137427 bytes_out 34186 137427 bytes_in 182185 137427 station_ip 37.129.144.161 137427 port 194 137427 unique_id port 137427 remote_ip 10.8.1.22 137428 username vanila 137428 mac 137428 bytes_out 0 137428 bytes_in 0 137428 station_ip 83.122.208.158 137428 port 322 137428 unique_id port 137428 remote_ip 10.8.0.178 137430 username mehdizare 137430 kill_reason Maximum check online fails reached 137430 mac 137430 bytes_out 0 137430 bytes_in 0 137430 station_ip 5.120.148.206 137430 port 323 137430 unique_id port 137431 username hashtadani3 137431 mac 137431 bytes_out 0 137431 bytes_in 0 137431 station_ip 37.129.143.161 137431 port 194 137431 unique_id port 137431 remote_ip 10.8.1.94 137432 username yaghobi 137432 mac 137432 bytes_out 470658 137432 bytes_in 4758558 137432 station_ip 113.203.33.108 137432 port 319 137432 unique_id port 137432 remote_ip 10.8.0.198 137397 mac 137397 bytes_out 0 137397 bytes_in 0 137397 station_ip 5.202.62.33 137397 port 316 137397 unique_id port 137399 username barzegar 137399 mac 137399 bytes_out 0 137399 bytes_in 0 137399 station_ip 5.119.185.96 137399 port 194 137399 unique_id port 137399 remote_ip 10.8.1.174 137404 username hashtadani3 137404 mac 137404 bytes_out 0 137404 bytes_in 0 137404 station_ip 37.129.143.161 137404 port 287 137404 unique_id port 137404 remote_ip 10.8.0.154 137406 username hashtadani3 137406 mac 137406 bytes_out 0 137406 bytes_in 0 137406 station_ip 37.129.143.161 137406 port 322 137406 unique_id port 137406 remote_ip 10.8.0.154 137409 username godarzi 137409 kill_reason Another user logged on this global unique id 137409 mac 137409 bytes_out 0 137409 bytes_in 0 137409 station_ip 5.202.62.33 137409 port 316 137409 unique_id port 137411 username amir 137411 mac 137411 bytes_out 0 137411 bytes_in 0 137411 station_ip 37.129.144.161 137411 port 194 137411 unique_id port 137411 remote_ip 10.8.1.22 137414 username amir 137414 mac 137414 bytes_out 0 137414 bytes_in 0 137414 station_ip 37.129.144.161 137414 port 194 137414 unique_id port 137414 remote_ip 10.8.1.22 137416 username hashtadani3 137416 mac 137416 bytes_out 0 137416 bytes_in 0 137416 station_ip 37.129.143.161 137416 port 287 137416 unique_id port 137416 remote_ip 10.8.0.154 137419 username amir 137419 mac 137419 bytes_out 0 137419 bytes_in 0 137419 station_ip 37.129.144.161 137419 port 194 137419 unique_id port 137419 remote_ip 10.8.1.22 137420 username vanila 137420 mac 137420 bytes_out 10997720 137420 bytes_in 5401934 137420 station_ip 83.122.208.158 137420 port 323 137420 unique_id port 137420 remote_ip 10.8.0.178 137433 username amir 137433 mac 137433 bytes_out 0 137433 bytes_in 0 137433 station_ip 37.129.144.161 137433 port 325 137433 unique_id port 137433 remote_ip 10.8.0.50 137437 username amir 137437 mac 137437 bytes_out 0 137437 bytes_in 0 137437 station_ip 37.129.144.161 137437 port 194 137437 unique_id port 137437 remote_ip 10.8.1.22 137443 username amir 137443 mac 137443 bytes_out 0 137443 bytes_in 0 137443 station_ip 37.129.144.161 137443 port 316 137443 unique_id port 137443 remote_ip 10.8.0.50 137445 username hashtadani3 137445 mac 137445 bytes_out 0 137445 bytes_in 0 137445 station_ip 37.129.143.161 137445 port 316 137445 unique_id port 137445 remote_ip 10.8.0.154 137448 username hashtadani3 137448 mac 137448 bytes_out 0 137448 bytes_in 0 137448 station_ip 37.129.143.161 137448 port 195 137448 unique_id port 137448 remote_ip 10.8.1.94 137450 username hashtadani3 137450 mac 137450 bytes_out 0 137450 bytes_in 0 137450 station_ip 37.129.143.161 137450 port 316 137450 unique_id port 137450 remote_ip 10.8.0.154 137451 username hashtadani3 137451 mac 137451 bytes_out 0 137451 bytes_in 0 137451 station_ip 37.129.143.161 137451 port 316 137451 unique_id port 137451 remote_ip 10.8.0.154 137453 username godarzi 137453 mac 137453 bytes_out 0 137453 bytes_in 0 137453 station_ip 5.202.62.33 137453 port 327 137453 unique_id port 137453 remote_ip 10.8.0.174 137455 username hashtadani3 137455 mac 137455 bytes_out 0 137455 bytes_in 0 137455 station_ip 37.129.143.161 137455 port 316 137455 unique_id port 137455 remote_ip 10.8.0.154 137456 username vanila 137456 mac 137456 bytes_out 0 137456 bytes_in 0 137456 station_ip 83.122.208.158 137405 remote_ip 10.8.1.22 137407 username barzegar 137407 mac 137407 bytes_out 0 137407 bytes_in 0 137407 station_ip 5.119.185.96 137407 port 287 137407 unique_id port 137407 remote_ip 10.8.0.234 137410 username amir 137410 mac 137410 bytes_out 0 137410 bytes_in 0 137410 station_ip 37.129.144.161 137410 port 194 137410 unique_id port 137410 remote_ip 10.8.1.22 137412 username moradi 137412 kill_reason Another user logged on this global unique id 137412 mac 137412 bytes_out 0 137412 bytes_in 0 137412 station_ip 37.129.169.154 137412 port 299 137412 unique_id port 137415 username barzegar 137415 mac 137415 bytes_out 0 137415 bytes_in 0 137415 station_ip 5.119.185.96 137415 port 287 137415 unique_id port 137415 remote_ip 10.8.0.234 137418 username hashtadani3 137418 mac 137418 bytes_out 0 137418 bytes_in 0 137418 station_ip 37.129.143.161 137418 port 287 137418 unique_id port 137418 remote_ip 10.8.0.154 137421 username amir 137421 mac 137421 bytes_out 0 137421 bytes_in 0 137421 station_ip 37.129.144.161 137421 port 194 137421 unique_id port 137421 remote_ip 10.8.1.22 137422 username vanila 137422 mac 137422 bytes_out 0 137422 bytes_in 0 137422 station_ip 83.122.208.158 137422 port 287 137422 unique_id port 137422 remote_ip 10.8.0.178 137424 username hashtadani3 137424 mac 137424 bytes_out 0 137424 bytes_in 0 137424 station_ip 37.129.143.161 137424 port 287 137424 unique_id port 137424 remote_ip 10.8.0.154 137425 username hashtadani3 137425 mac 137425 bytes_out 0 137425 bytes_in 0 137425 station_ip 37.129.143.161 137425 port 287 137425 unique_id port 137425 remote_ip 10.8.0.154 137426 username godarzi 137426 mac 137426 bytes_out 0 137426 bytes_in 0 137426 station_ip 5.202.62.33 137426 port 316 137426 unique_id port 137429 username amir 137429 mac 137429 bytes_out 0 137429 bytes_in 0 137429 station_ip 37.129.144.161 137429 port 316 137429 unique_id port 137429 remote_ip 10.8.0.50 137435 username hashtadani3 137435 mac 137435 bytes_out 0 137435 bytes_in 0 137435 station_ip 37.129.143.161 137435 port 319 137435 unique_id port 137435 remote_ip 10.8.0.154 137439 username barzegar 137439 mac 137439 bytes_out 0 137439 bytes_in 0 137439 station_ip 5.119.185.96 137439 port 316 137439 unique_id port 137439 remote_ip 10.8.0.234 137441 username hashtadani3 137441 mac 137441 bytes_out 0 137441 bytes_in 0 137441 station_ip 37.129.143.161 137441 port 316 137441 unique_id port 137441 remote_ip 10.8.0.154 137442 username hashtadani3 137442 mac 137442 bytes_out 0 137442 bytes_in 0 137442 station_ip 37.129.143.161 137442 port 316 137442 unique_id port 137442 remote_ip 10.8.0.154 137454 username hashtadani3 137454 mac 137454 bytes_out 0 137454 bytes_in 0 137454 station_ip 37.129.143.161 137454 port 316 137454 unique_id port 137454 remote_ip 10.8.0.154 137457 username hashtadani3 137457 mac 137457 bytes_out 0 137457 bytes_in 0 137457 station_ip 37.129.143.161 137457 port 325 137457 unique_id port 137457 remote_ip 10.8.0.154 137458 username barzegar 137458 mac 137458 bytes_out 0 137458 bytes_in 0 137458 station_ip 5.119.185.96 137458 port 316 137458 unique_id port 137458 remote_ip 10.8.0.234 137460 username alihosseini1 137460 mac 137460 bytes_out 0 137460 bytes_in 0 137460 station_ip 5.119.243.69 137460 port 287 137460 unique_id port 137460 remote_ip 10.8.0.166 137467 username vanila 137467 mac 137467 bytes_out 175831 137434 username hashtadani3 137434 mac 137434 bytes_out 0 137434 bytes_in 0 137434 station_ip 37.129.143.161 137434 port 319 137434 unique_id port 137434 remote_ip 10.8.0.154 137436 username hashtadani3 137436 mac 137436 bytes_out 0 137436 bytes_in 0 137436 station_ip 37.129.143.161 137436 port 319 137436 unique_id port 137436 remote_ip 10.8.0.154 137438 username hashtadani3 137438 mac 137438 bytes_out 0 137438 bytes_in 0 137438 station_ip 37.129.143.161 137438 port 319 137438 unique_id port 137438 remote_ip 10.8.0.154 137440 username hashtadani3 137440 mac 137440 bytes_out 0 137440 bytes_in 0 137440 station_ip 37.129.143.161 137440 port 319 137440 unique_id port 137440 remote_ip 10.8.0.154 137444 username hashtadani3 137444 mac 137444 bytes_out 0 137444 bytes_in 0 137444 station_ip 37.129.143.161 137444 port 194 137444 unique_id port 137444 remote_ip 10.8.1.94 137446 username hashtadani3 137446 mac 137446 bytes_out 0 137446 bytes_in 0 137446 station_ip 37.129.143.161 137446 port 316 137446 unique_id port 137446 remote_ip 10.8.0.154 137447 username amir 137447 mac 137447 bytes_out 20684 137447 bytes_in 70057 137447 station_ip 37.129.144.161 137447 port 194 137447 unique_id port 137447 remote_ip 10.8.1.22 137449 username hashtadani3 137449 mac 137449 bytes_out 0 137449 bytes_in 0 137449 station_ip 37.129.143.161 137449 port 194 137449 unique_id port 137449 remote_ip 10.8.1.94 137452 username hashtadani3 137452 mac 137452 bytes_out 0 137452 bytes_in 0 137452 station_ip 37.129.143.161 137452 port 316 137452 unique_id port 137452 remote_ip 10.8.0.154 137459 username hashtadani3 137459 mac 137459 bytes_out 0 137459 bytes_in 0 137459 station_ip 37.129.143.161 137459 port 325 137459 unique_id port 137459 remote_ip 10.8.0.154 137462 username hashtadani3 137462 mac 137462 bytes_out 0 137462 bytes_in 0 137462 station_ip 37.129.143.161 137462 port 287 137462 unique_id port 137462 remote_ip 10.8.0.154 137465 username hashtadani3 137465 mac 137465 bytes_out 0 137465 bytes_in 0 137465 station_ip 37.129.143.161 137465 port 287 137465 unique_id port 137465 remote_ip 10.8.0.154 137466 username amir 137466 mac 137466 bytes_out 0 137466 bytes_in 0 137466 station_ip 37.129.144.161 137466 port 194 137466 unique_id port 137466 remote_ip 10.8.1.22 137472 username vanila 137472 mac 137472 bytes_out 0 137472 bytes_in 0 137472 station_ip 83.122.208.158 137472 port 287 137472 unique_id port 137472 remote_ip 10.8.0.178 137476 username mehdizare 137476 mac 137476 bytes_out 125540 137476 bytes_in 282626 137476 station_ip 5.120.148.206 137476 port 322 137476 unique_id port 137476 remote_ip 10.8.0.90 137483 username meysam 137483 mac 137483 bytes_out 1137904 137483 bytes_in 20060609 137483 station_ip 188.158.49.57 137483 port 194 137483 unique_id port 137483 remote_ip 10.8.1.34 137487 username hashtadani3 137487 mac 137487 bytes_out 0 137487 bytes_in 0 137487 station_ip 5.202.135.32 137487 port 319 137487 unique_id port 137487 remote_ip 10.8.0.154 137490 username amir 137490 mac 137490 bytes_out 0 137490 bytes_in 0 137490 station_ip 37.129.144.161 137490 port 287 137490 unique_id port 137490 remote_ip 10.8.0.50 137492 username amir 137492 mac 137492 bytes_out 0 137492 bytes_in 0 137492 station_ip 37.129.144.161 137492 port 322 137492 unique_id port 137492 remote_ip 10.8.0.50 137493 username hashtadani3 137493 mac 137493 bytes_out 0 137456 port 326 137456 unique_id port 137456 remote_ip 10.8.0.178 137461 username hashtadani3 137461 mac 137461 bytes_out 0 137461 bytes_in 0 137461 station_ip 37.129.143.161 137461 port 316 137461 unique_id port 137461 remote_ip 10.8.0.154 137463 username amir 137463 mac 137463 bytes_out 0 137463 bytes_in 0 137463 station_ip 37.129.144.161 137463 port 194 137463 unique_id port 137463 remote_ip 10.8.1.22 137464 username hashtadani3 137464 mac 137464 bytes_out 0 137464 bytes_in 0 137464 station_ip 37.129.143.161 137464 port 287 137464 unique_id port 137464 remote_ip 10.8.0.154 137473 username amir 137473 mac 137473 bytes_out 18519 137473 bytes_in 80987 137473 station_ip 37.129.144.161 137473 port 325 137473 unique_id port 137473 remote_ip 10.8.0.50 137475 username alihosseini1 137475 mac 137475 bytes_out 0 137475 bytes_in 0 137475 station_ip 5.119.243.69 137475 port 198 137475 unique_id port 137475 remote_ip 10.8.1.106 137477 username amir 137477 mac 137477 bytes_out 0 137477 bytes_in 0 137477 station_ip 37.129.144.161 137477 port 287 137477 unique_id port 137477 remote_ip 10.8.0.50 137479 username alihosseini1 137479 mac 137479 bytes_out 0 137479 bytes_in 0 137479 station_ip 5.119.243.69 137479 port 198 137479 unique_id port 137479 remote_ip 10.8.1.106 137481 username hashtadani3 137481 mac 137481 bytes_out 0 137481 bytes_in 0 137481 station_ip 37.129.143.161 137481 port 319 137481 unique_id port 137481 remote_ip 10.8.0.154 137484 username hashtadani3 137484 mac 137484 bytes_out 0 137484 bytes_in 0 137484 station_ip 37.129.143.161 137484 port 325 137484 unique_id port 137484 remote_ip 10.8.0.154 137486 username alihosseini1 137486 mac 137486 bytes_out 0 137486 bytes_in 0 137486 station_ip 5.119.243.69 137486 port 195 137486 unique_id port 137486 remote_ip 10.8.1.106 137488 username barzegar 137488 mac 137488 bytes_out 0 137488 bytes_in 0 137488 station_ip 5.119.185.96 137488 port 322 137488 unique_id port 137488 remote_ip 10.8.0.234 137489 username barzegar 137489 mac 137489 bytes_out 0 137489 bytes_in 0 137489 station_ip 5.119.185.96 137489 port 319 137489 unique_id port 137489 remote_ip 10.8.0.234 137491 username alihosseini1 137491 mac 137491 bytes_out 0 137491 bytes_in 0 137491 station_ip 5.119.243.69 137491 port 287 137491 unique_id port 137491 remote_ip 10.8.0.166 137496 username amir 137496 mac 137496 bytes_out 0 137496 bytes_in 0 137496 station_ip 37.129.144.161 137496 port 287 137496 unique_id port 137496 remote_ip 10.8.0.50 137497 username alihosseini1 137497 mac 137497 bytes_out 0 137497 bytes_in 0 137497 station_ip 5.119.243.69 137497 port 319 137497 unique_id port 137497 remote_ip 10.8.0.166 137498 username hashtadani3 137498 mac 137498 bytes_out 0 137498 bytes_in 0 137498 station_ip 5.202.135.32 137498 port 287 137498 unique_id port 137498 remote_ip 10.8.0.154 137500 username alihosseini1 137500 mac 137500 bytes_out 0 137500 bytes_in 0 137500 station_ip 5.119.243.69 137500 port 319 137500 unique_id port 137500 remote_ip 10.8.0.166 137502 username amir 137502 mac 137502 bytes_out 19843 137502 bytes_in 124031 137502 station_ip 37.129.144.161 137502 port 322 137502 unique_id port 137502 remote_ip 10.8.0.50 137503 username hashtadani3 137503 mac 137503 bytes_out 0 137503 bytes_in 0 137503 station_ip 5.202.135.32 137503 port 319 137503 unique_id port 137503 remote_ip 10.8.0.154 137467 bytes_in 1144148 137467 station_ip 83.122.208.158 137467 port 326 137467 unique_id port 137467 remote_ip 10.8.0.178 137468 username amir 137468 mac 137468 bytes_out 0 137468 bytes_in 0 137468 station_ip 37.129.144.161 137468 port 316 137468 unique_id port 137468 remote_ip 10.8.0.50 137469 username yaghobi 137469 mac 137469 bytes_out 0 137469 bytes_in 0 137469 station_ip 37.129.252.231 137469 port 325 137469 unique_id port 137469 remote_ip 10.8.0.198 137470 username amir 137470 mac 137470 bytes_out 0 137470 bytes_in 0 137470 station_ip 37.129.144.161 137470 port 194 137470 unique_id port 137470 remote_ip 10.8.1.22 137471 username amir 137471 mac 137471 bytes_out 36363 137471 bytes_in 155216 137471 station_ip 37.129.144.161 137471 port 194 137471 unique_id port 137471 remote_ip 10.8.1.22 137474 username godarzi 137474 mac 137474 bytes_out 0 137474 bytes_in 0 137474 station_ip 5.202.62.33 137474 port 319 137474 unique_id port 137474 remote_ip 10.8.0.174 137478 username barzegar 137478 mac 137478 bytes_out 0 137478 bytes_in 0 137478 station_ip 5.119.185.96 137478 port 316 137478 unique_id port 137478 remote_ip 10.8.0.234 137480 username hashtadani3 137480 mac 137480 bytes_out 0 137480 bytes_in 0 137480 station_ip 37.129.143.161 137480 port 195 137480 unique_id port 137480 remote_ip 10.8.1.94 137482 username barzegar 137482 mac 137482 bytes_out 0 137482 bytes_in 0 137482 station_ip 5.119.185.96 137482 port 322 137482 unique_id port 137482 remote_ip 10.8.0.234 137485 username hashtadani3 137485 mac 137485 bytes_out 0 137485 bytes_in 0 137485 station_ip 37.129.143.161 137485 port 319 137485 unique_id port 137485 remote_ip 10.8.0.154 137494 username barzegar 137494 mac 137494 bytes_out 2628 137494 bytes_in 4929 137494 station_ip 5.119.185.96 137494 port 325 137494 unique_id port 137494 remote_ip 10.8.0.234 137499 username malekpoir 137499 kill_reason Another user logged on this global unique id 137499 mac 137499 bytes_out 0 137499 bytes_in 0 137499 station_ip 5.119.123.141 137499 port 312 137499 unique_id port 137499 remote_ip 10.8.0.58 137501 username hashtadani3 137501 mac 137501 bytes_out 0 137501 bytes_in 0 137501 station_ip 5.202.135.32 137501 port 319 137501 unique_id port 137501 remote_ip 10.8.0.154 137505 username barzegar 137505 mac 137505 bytes_out 0 137505 bytes_in 0 137505 station_ip 5.119.185.96 137505 port 194 137505 unique_id port 137505 remote_ip 10.8.1.174 137506 username hashtadani3 137506 mac 137506 bytes_out 0 137506 bytes_in 0 137506 station_ip 5.202.135.32 137506 port 325 137506 unique_id port 137506 remote_ip 10.8.0.154 137509 username amir 137509 mac 137509 bytes_out 50658 137509 bytes_in 202301 137509 station_ip 37.129.144.161 137509 port 322 137509 unique_id port 137509 remote_ip 10.8.0.50 137512 username barzegar 137512 mac 137512 bytes_out 0 137512 bytes_in 0 137512 station_ip 5.119.185.96 137512 port 322 137512 unique_id port 137512 remote_ip 10.8.0.234 137521 username hashtadani3 137521 mac 137521 bytes_out 0 137521 bytes_in 0 137521 station_ip 5.202.135.32 137521 port 194 137521 unique_id port 137521 remote_ip 10.8.1.94 137524 username hashtadani3 137524 mac 137524 bytes_out 0 137524 bytes_in 0 137524 station_ip 5.202.135.32 137524 port 194 137524 unique_id port 137524 remote_ip 10.8.1.94 137528 username moradi 137528 kill_reason Another user logged on this global unique id 137528 mac 137528 bytes_out 0 137493 bytes_in 0 137493 station_ip 5.202.135.32 137493 port 319 137493 unique_id port 137493 remote_ip 10.8.0.154 137495 username hashtadani3 137495 mac 137495 bytes_out 0 137495 bytes_in 0 137495 station_ip 5.202.135.32 137495 port 194 137495 unique_id port 137495 remote_ip 10.8.1.94 137504 username amir 137504 mac 137504 bytes_out 0 137504 bytes_in 0 137504 station_ip 37.129.144.161 137504 port 195 137504 unique_id port 137504 remote_ip 10.8.1.22 137508 username hashtadani3 137508 mac 137508 bytes_out 0 137508 bytes_in 0 137508 station_ip 5.202.135.32 137508 port 287 137508 unique_id port 137508 remote_ip 10.8.0.154 137510 username hashtadani3 137510 mac 137510 bytes_out 0 137510 bytes_in 0 137510 station_ip 5.202.135.32 137510 port 287 137510 unique_id port 137510 remote_ip 10.8.0.154 137514 username amir 137514 mac 137514 bytes_out 0 137514 bytes_in 0 137514 station_ip 37.129.144.161 137514 port 194 137514 unique_id port 137514 remote_ip 10.8.1.22 137517 username amir 137517 mac 137517 bytes_out 0 137517 bytes_in 0 137517 station_ip 37.129.144.161 137517 port 194 137517 unique_id port 137517 remote_ip 10.8.1.22 137518 username amir 137518 mac 137518 bytes_out 0 137518 bytes_in 0 137518 station_ip 37.129.144.161 137518 port 316 137518 unique_id port 137518 remote_ip 10.8.0.50 137519 username mehdizare 137519 mac 137519 bytes_out 8059 137519 bytes_in 13089 137519 station_ip 5.120.148.206 137519 port 322 137519 unique_id port 137519 remote_ip 10.8.0.90 137523 username barzegar 137523 mac 137523 bytes_out 2481 137523 bytes_in 4777 137523 station_ip 5.119.185.96 137523 port 325 137523 unique_id port 137523 remote_ip 10.8.0.234 137525 username amir 137525 mac 137525 bytes_out 13576 137525 bytes_in 45173 137525 station_ip 37.129.144.161 137525 port 316 137525 unique_id port 137525 remote_ip 10.8.0.50 137530 username alihosseini1 137530 mac 137530 bytes_out 229201 137530 bytes_in 851437 137530 station_ip 5.119.243.69 137530 port 319 137530 unique_id port 137530 remote_ip 10.8.0.166 137531 username hashtadani3 137531 mac 137531 bytes_out 0 137531 bytes_in 0 137531 station_ip 5.202.135.32 137531 port 195 137531 unique_id port 137531 remote_ip 10.8.1.94 137534 username amir 137534 mac 137534 bytes_out 0 137534 bytes_in 0 137534 station_ip 37.129.144.161 137534 port 194 137534 unique_id port 137534 remote_ip 10.8.1.22 137536 username hashtadani3 137536 kill_reason Maximum check online fails reached 137536 mac 137536 bytes_out 0 137536 bytes_in 0 137536 station_ip 5.202.135.32 137536 port 319 137536 unique_id port 137538 username hashtadani3 137538 kill_reason Maximum check online fails reached 137538 mac 137538 bytes_out 0 137538 bytes_in 0 137538 station_ip 5.202.135.32 137538 port 325 137538 unique_id port 137539 username moradi 137539 kill_reason Another user logged on this global unique id 137539 mac 137539 bytes_out 0 137539 bytes_in 0 137539 station_ip 37.129.169.154 137539 port 299 137539 unique_id port 137545 username hashtadani3 137545 mac 137545 bytes_out 0 137545 bytes_in 0 137545 station_ip 5.202.135.32 137545 port 194 137545 unique_id port 137545 remote_ip 10.8.1.94 137548 username amir 137548 mac 137548 bytes_out 0 137548 bytes_in 0 137548 station_ip 37.129.144.161 137548 port 198 137548 unique_id port 137548 remote_ip 10.8.1.22 137551 username amir 137551 mac 137551 bytes_out 18298 137551 bytes_in 84292 137551 station_ip 37.129.144.161 137507 username godarzi 137507 mac 137507 bytes_out 215220 137507 bytes_in 2196782 137507 station_ip 5.202.62.33 137507 port 287 137507 unique_id port 137507 remote_ip 10.8.0.174 137511 username meysam 137511 mac 137511 bytes_out 667118 137511 bytes_in 13562979 137511 station_ip 188.158.49.57 137511 port 198 137511 unique_id port 137511 remote_ip 10.8.1.34 137513 username mosi 137513 kill_reason Another user logged on this global unique id 137513 mac 137513 bytes_out 0 137513 bytes_in 0 137513 station_ip 151.235.75.185 137513 port 282 137513 unique_id port 137515 username hashtadani3 137515 mac 137515 bytes_out 0 137515 bytes_in 0 137515 station_ip 5.202.135.32 137515 port 194 137515 unique_id port 137515 remote_ip 10.8.1.94 137516 username mehdizare 137516 mac 137516 bytes_out 30091 137516 bytes_in 33921 137516 station_ip 5.120.148.206 137516 port 316 137516 unique_id port 137516 remote_ip 10.8.0.90 137520 username hashtadani3 137520 kill_reason Maximum check online fails reached 137520 mac 137520 bytes_out 0 137520 bytes_in 0 137520 station_ip 5.202.135.32 137520 port 287 137520 unique_id port 137522 username hashtadani3 137522 mac 137522 bytes_out 0 137522 bytes_in 0 137522 station_ip 5.202.135.32 137522 port 194 137522 unique_id port 137522 remote_ip 10.8.1.94 137526 username hashtadani3 137526 mac 137526 bytes_out 0 137526 bytes_in 0 137526 station_ip 5.202.135.32 137526 port 194 137526 unique_id port 137526 remote_ip 10.8.1.94 137527 username hashtadani3 137527 mac 137527 bytes_out 0 137527 bytes_in 0 137527 station_ip 5.202.135.32 137527 port 195 137527 unique_id port 137527 remote_ip 10.8.1.94 137532 username hashtadani3 137532 mac 137532 bytes_out 0 137532 bytes_in 0 137532 station_ip 5.202.135.32 137532 port 316 137532 unique_id port 137532 remote_ip 10.8.0.154 137537 username hashtadani3 137537 mac 137537 bytes_out 0 137537 bytes_in 0 137537 station_ip 5.202.135.32 137537 port 325 137537 unique_id port 137537 remote_ip 10.8.0.154 137542 username amir 137542 mac 137542 bytes_out 0 137542 bytes_in 0 137542 station_ip 37.129.144.161 137542 port 322 137542 unique_id port 137542 remote_ip 10.8.0.50 137543 username mohammadjavad 137543 mac 137543 bytes_out 200588 137543 bytes_in 1157885 137543 station_ip 83.122.92.117 137543 port 326 137543 unique_id port 137543 remote_ip 10.8.0.142 137544 username barzegar 137544 mac 137544 bytes_out 0 137544 bytes_in 0 137544 station_ip 5.119.185.96 137544 port 194 137544 unique_id port 137544 remote_ip 10.8.1.174 137546 username mosi 137546 kill_reason Another user logged on this global unique id 137546 mac 137546 bytes_out 0 137546 bytes_in 0 137546 station_ip 151.235.75.185 137546 port 282 137546 unique_id port 137550 username hashtadani3 137550 mac 137550 bytes_out 0 137550 bytes_in 0 137550 station_ip 5.202.135.32 137550 port 326 137550 unique_id port 137550 remote_ip 10.8.0.154 137552 username hashtadani3 137552 mac 137552 bytes_out 0 137552 bytes_in 0 137552 station_ip 5.202.135.32 137552 port 329 137552 unique_id port 137552 remote_ip 10.8.0.154 137553 username amir 137553 mac 137553 bytes_out 16468 137553 bytes_in 83561 137553 station_ip 37.129.144.161 137553 port 328 137553 unique_id port 137553 remote_ip 10.8.0.50 137558 username khademi 137558 kill_reason Another user logged on this global unique id 137558 mac 137558 bytes_out 0 137558 bytes_in 0 137558 station_ip 113.203.70.160 137558 port 326 137558 unique_id port 137528 bytes_in 0 137528 station_ip 37.129.169.154 137528 port 299 137528 unique_id port 137529 username amir 137529 mac 137529 bytes_out 0 137529 bytes_in 0 137529 station_ip 37.129.144.161 137529 port 194 137529 unique_id port 137529 remote_ip 10.8.1.22 137533 username hashtadani3 137533 mac 137533 bytes_out 0 137533 bytes_in 0 137533 station_ip 5.202.135.32 137533 port 198 137533 unique_id port 137533 remote_ip 10.8.1.94 137535 username barzegar 137535 mac 137535 bytes_out 0 137535 bytes_in 0 137535 station_ip 5.119.185.96 137535 port 194 137535 unique_id port 137535 remote_ip 10.8.1.174 137540 username amir 137540 mac 137540 bytes_out 51215 137540 bytes_in 222403 137540 station_ip 37.129.144.161 137540 port 322 137540 unique_id port 137540 remote_ip 10.8.0.50 137541 username amir 137541 mac 137541 bytes_out 0 137541 bytes_in 0 137541 station_ip 37.129.144.161 137541 port 322 137541 unique_id port 137541 remote_ip 10.8.0.50 137547 username mehdizare 137547 mac 137547 bytes_out 22752 137547 bytes_in 26585 137547 station_ip 5.120.148.206 137547 port 316 137547 unique_id port 137547 remote_ip 10.8.0.90 137549 username hashtadani3 137549 kill_reason Maximum check online fails reached 137549 mac 137549 bytes_out 0 137549 bytes_in 0 137549 station_ip 5.202.135.32 137549 port 322 137549 unique_id port 137556 username hashtadani3 137556 kill_reason Maximum check online fails reached 137556 mac 137556 bytes_out 0 137556 bytes_in 0 137556 station_ip 5.202.135.32 137556 port 329 137556 unique_id port 137559 username amir 137559 mac 137559 bytes_out 0 137559 bytes_in 0 137559 station_ip 37.129.144.161 137559 port 328 137559 unique_id port 137559 remote_ip 10.8.0.50 137560 username moradi 137560 kill_reason Another user logged on this global unique id 137560 mac 137560 bytes_out 0 137560 bytes_in 0 137560 station_ip 37.129.169.154 137560 port 299 137560 unique_id port 137561 username hashtadani3 137561 mac 137561 bytes_out 0 137561 bytes_in 0 137561 station_ip 5.202.135.32 137561 port 331 137561 unique_id port 137561 remote_ip 10.8.0.154 137562 username hashtadani3 137562 kill_reason Maximum check online fails reached 137562 mac 137562 bytes_out 0 137562 bytes_in 0 137562 station_ip 5.202.135.32 137562 port 328 137562 unique_id port 137567 username hashtadani3 137567 mac 137567 bytes_out 0 137567 bytes_in 0 137567 station_ip 5.202.135.32 137567 port 194 137567 unique_id port 137567 remote_ip 10.8.1.94 137570 username hashtadani3 137570 mac 137570 bytes_out 0 137570 bytes_in 0 137570 station_ip 5.202.135.32 137570 port 198 137570 unique_id port 137570 remote_ip 10.8.1.94 137572 username amir 137572 mac 137572 bytes_out 4782 137572 bytes_in 20957 137572 station_ip 37.129.144.161 137572 port 194 137572 unique_id port 137572 remote_ip 10.8.1.22 137573 username aminvpn 137573 mac 137573 bytes_out 0 137573 bytes_in 0 137573 station_ip 83.122.28.219 137573 port 327 137573 unique_id port 137573 remote_ip 10.8.0.14 137574 username mosi 137574 kill_reason Another user logged on this global unique id 137574 mac 137574 bytes_out 0 137574 bytes_in 0 137574 station_ip 151.235.75.185 137574 port 282 137574 unique_id port 137575 username amir 137575 mac 137575 bytes_out 0 137575 bytes_in 0 137575 station_ip 37.129.144.161 137575 port 194 137575 unique_id port 137575 remote_ip 10.8.1.22 137578 username aminvpn 137578 mac 137578 bytes_out 0 137578 bytes_in 0 137578 station_ip 83.122.28.219 137578 port 316 137551 port 328 137551 unique_id port 137551 remote_ip 10.8.0.50 137554 username barzegar 137554 mac 137554 bytes_out 0 137554 bytes_in 0 137554 station_ip 5.119.185.96 137554 port 194 137554 unique_id port 137554 remote_ip 10.8.1.174 137555 username mehdizare 137555 mac 137555 bytes_out 27145 137555 bytes_in 41530 137555 station_ip 5.120.148.206 137555 port 316 137555 unique_id port 137555 remote_ip 10.8.0.90 137557 username houshang 137557 mac 137557 bytes_out 352918 137557 bytes_in 2874922 137557 station_ip 5.119.70.37 137557 port 330 137557 unique_id port 137557 remote_ip 10.8.0.22 137563 username hashtadani3 137563 mac 137563 bytes_out 0 137563 bytes_in 0 137563 station_ip 5.202.135.32 137563 port 194 137563 unique_id port 137563 remote_ip 10.8.1.94 137569 username hosseine 137569 kill_reason Another user logged on this global unique id 137569 mac 137569 bytes_out 0 137569 bytes_in 0 137569 station_ip 37.129.108.174 137569 port 324 137569 unique_id port 137569 remote_ip 10.8.0.238 137577 username amir 137577 mac 137577 bytes_out 9658 137577 bytes_in 29964 137577 station_ip 37.129.144.161 137577 port 194 137577 unique_id port 137577 remote_ip 10.8.1.22 137579 username hashtadani3 137579 mac 137579 bytes_out 0 137579 bytes_in 0 137579 station_ip 5.202.135.32 137579 port 332 137579 unique_id port 137579 remote_ip 10.8.0.154 137582 username hashtadani3 137582 mac 137582 bytes_out 0 137582 bytes_in 0 137582 station_ip 5.202.135.32 137582 port 327 137582 unique_id port 137582 remote_ip 10.8.0.154 137584 username moradi 137584 kill_reason Another user logged on this global unique id 137584 mac 137584 bytes_out 0 137584 bytes_in 0 137584 station_ip 37.129.169.154 137584 port 299 137584 unique_id port 137588 username barzegar 137588 mac 137588 bytes_out 2686 137588 bytes_in 5382 137588 station_ip 5.119.185.96 137588 port 194 137588 unique_id port 137588 remote_ip 10.8.1.174 137590 username amir 137590 mac 137590 bytes_out 0 137590 bytes_in 0 137590 station_ip 37.129.144.161 137590 port 316 137590 unique_id port 137590 remote_ip 10.8.0.50 137591 username hashtadani3 137591 mac 137591 bytes_out 0 137591 bytes_in 0 137591 station_ip 5.202.135.32 137591 port 327 137591 unique_id port 137591 remote_ip 10.8.0.154 137592 username hashtadani3 137592 mac 137592 bytes_out 0 137592 bytes_in 0 137592 station_ip 5.202.135.32 137592 port 316 137592 unique_id port 137592 remote_ip 10.8.0.154 137594 username hashtadani3 137594 mac 137594 bytes_out 0 137594 bytes_in 0 137594 station_ip 5.202.135.32 137594 port 316 137594 unique_id port 137594 remote_ip 10.8.0.154 137596 username hashtadani3 137596 mac 137596 bytes_out 0 137596 bytes_in 0 137596 station_ip 5.202.135.32 137596 port 199 137596 unique_id port 137596 remote_ip 10.8.1.94 137598 username hashtadani3 137598 kill_reason Maximum check online fails reached 137598 mac 137598 bytes_out 0 137598 bytes_in 0 137598 station_ip 5.202.135.32 137598 port 316 137598 unique_id port 137601 username amir 137601 mac 137601 bytes_out 0 137601 bytes_in 0 137601 station_ip 37.129.144.161 137601 port 198 137601 unique_id port 137601 remote_ip 10.8.1.22 137604 username barzegar 137604 mac 137604 bytes_out 0 137604 bytes_in 0 137604 station_ip 5.119.185.96 137604 port 198 137604 unique_id port 137604 remote_ip 10.8.1.174 137609 username amir 137609 mac 137609 bytes_out 0 137609 bytes_in 0 137609 station_ip 37.129.144.161 137609 port 327 137558 remote_ip 10.8.0.10 137564 username mehdizare 137564 mac 137564 bytes_out 0 137564 bytes_in 0 137564 station_ip 5.120.148.206 137564 port 316 137564 unique_id port 137564 remote_ip 10.8.0.90 137565 username hashtadani3 137565 mac 137565 bytes_out 0 137565 bytes_in 0 137565 station_ip 5.202.135.32 137565 port 194 137565 unique_id port 137565 remote_ip 10.8.1.94 137566 username amir 137566 mac 137566 bytes_out 0 137566 bytes_in 0 137566 station_ip 37.129.144.161 137566 port 332 137566 unique_id port 137566 remote_ip 10.8.0.50 137568 username mehdizare 137568 mac 137568 bytes_out 0 137568 bytes_in 0 137568 station_ip 5.120.148.206 137568 port 198 137568 unique_id port 137568 remote_ip 10.8.1.42 137571 username hashtadani3 137571 mac 137571 bytes_out 0 137571 bytes_in 0 137571 station_ip 5.202.135.32 137571 port 198 137571 unique_id port 137571 remote_ip 10.8.1.94 137576 username hashtadani3 137576 mac 137576 bytes_out 0 137576 bytes_in 0 137576 station_ip 5.202.135.32 137576 port 327 137576 unique_id port 137576 remote_ip 10.8.0.154 137581 username vanila 137581 mac 137581 bytes_out 0 137581 bytes_in 0 137581 station_ip 83.122.208.158 137581 port 331 137581 unique_id port 137581 remote_ip 10.8.0.178 137585 username amir 137585 mac 137585 bytes_out 26295 137585 bytes_in 71340 137585 station_ip 37.129.144.161 137585 port 316 137585 unique_id port 137585 remote_ip 10.8.0.50 137587 username khademi 137587 kill_reason Another user logged on this global unique id 137587 mac 137587 bytes_out 0 137587 bytes_in 0 137587 station_ip 113.203.70.160 137587 port 326 137587 unique_id port 137589 username hashtadani3 137589 mac 137589 bytes_out 0 137589 bytes_in 0 137589 station_ip 5.202.135.32 137589 port 327 137589 unique_id port 137589 remote_ip 10.8.0.154 137593 username amir 137593 mac 137593 bytes_out 20691 137593 bytes_in 109247 137593 station_ip 37.129.144.161 137593 port 198 137593 unique_id port 137593 remote_ip 10.8.1.22 137595 username amir 137595 mac 137595 bytes_out 0 137595 bytes_in 0 137595 station_ip 37.129.144.161 137595 port 198 137595 unique_id port 137595 remote_ip 10.8.1.22 137597 username hashtadani3 137597 kill_reason Maximum number of concurrent logins reached 137597 mac 137597 bytes_out 0 137597 bytes_in 0 137597 station_ip 5.202.135.32 137597 port 331 137597 unique_id port 137599 username amir 137599 mac 137599 bytes_out 33184 137599 bytes_in 118315 137599 station_ip 37.129.144.161 137599 port 198 137599 unique_id port 137599 remote_ip 10.8.1.22 137600 username godarzi 137600 mac 137600 bytes_out 177191 137600 bytes_in 568480 137600 station_ip 5.120.38.180 137600 port 327 137600 unique_id port 137600 remote_ip 10.8.0.174 137602 username hashtadani3 137602 kill_reason Maximum check online fails reached 137602 mac 137602 bytes_out 0 137602 bytes_in 0 137602 station_ip 5.202.135.32 137602 port 199 137602 unique_id port 137605 username amir 137605 mac 137605 bytes_out 0 137605 bytes_in 0 137605 station_ip 37.129.144.161 137605 port 200 137605 unique_id port 137605 remote_ip 10.8.1.22 137608 username aminvpn 137608 unique_id port 137608 terminate_cause Lost-Carrier 137608 bytes_out 502169 137608 bytes_in 3522066 137608 station_ip 5.233.49.34 137608 port 15730589 137608 nas_port_type Virtual 137608 remote_ip 5.5.5.247 137610 username amir 137610 mac 137610 bytes_out 0 137610 bytes_in 0 137610 station_ip 37.129.144.161 137610 port 327 137610 unique_id port 137578 unique_id port 137578 remote_ip 10.8.0.14 137580 username godarzi 137580 mac 137580 bytes_out 0 137580 bytes_in 0 137580 station_ip 5.120.38.180 137580 port 327 137580 unique_id port 137580 remote_ip 10.8.0.174 137583 username mehdizare 137583 mac 137583 bytes_out 16989 137583 bytes_in 25747 137583 station_ip 5.120.148.206 137583 port 199 137583 unique_id port 137583 remote_ip 10.8.1.42 137586 username hashtadani3 137586 mac 137586 bytes_out 0 137586 bytes_in 0 137586 station_ip 5.202.135.32 137586 port 327 137586 unique_id port 137586 remote_ip 10.8.0.154 137603 username amir 137603 mac 137603 bytes_out 0 137603 bytes_in 0 137603 station_ip 37.129.144.161 137603 port 198 137603 unique_id port 137603 remote_ip 10.8.1.22 137606 username amir 137606 mac 137606 bytes_out 0 137606 bytes_in 0 137606 station_ip 37.129.144.161 137606 port 198 137606 unique_id port 137606 remote_ip 10.8.1.22 137607 username amir 137607 mac 137607 bytes_out 0 137607 bytes_in 0 137607 station_ip 37.129.144.161 137607 port 198 137607 unique_id port 137607 remote_ip 10.8.1.22 137612 username forozandeh1 137612 kill_reason Another user logged on this global unique id 137612 mac 137612 bytes_out 0 137612 bytes_in 0 137612 station_ip 83.123.252.253 137612 port 330 137612 unique_id port 137612 remote_ip 10.8.0.130 137614 username barzegar 137614 mac 137614 bytes_out 0 137614 bytes_in 0 137614 station_ip 5.119.185.96 137614 port 200 137614 unique_id port 137614 remote_ip 10.8.1.174 137615 username forozandeh1 137615 mac 137615 bytes_out 0 137615 bytes_in 0 137615 station_ip 83.123.252.253 137615 port 330 137615 unique_id port 137619 username amir 137619 mac 137619 bytes_out 18310 137619 bytes_in 103248 137619 station_ip 37.129.144.161 137619 port 198 137619 unique_id port 137619 remote_ip 10.8.1.22 137622 username amir 137622 mac 137622 bytes_out 0 137622 bytes_in 0 137622 station_ip 37.129.144.161 137622 port 198 137622 unique_id port 137622 remote_ip 10.8.1.22 137625 username amir 137625 mac 137625 bytes_out 0 137625 bytes_in 0 137625 station_ip 37.129.144.161 137625 port 198 137625 unique_id port 137625 remote_ip 10.8.1.22 137626 username godarzi 137626 mac 137626 bytes_out 0 137626 bytes_in 0 137626 station_ip 5.120.38.180 137626 port 327 137626 unique_id port 137626 remote_ip 10.8.0.174 137629 username mosi 137629 kill_reason Another user logged on this global unique id 137629 mac 137629 bytes_out 0 137629 bytes_in 0 137629 station_ip 151.235.75.185 137629 port 282 137629 unique_id port 137630 username amir 137630 mac 137630 bytes_out 12439 137630 bytes_in 80518 137630 station_ip 37.129.144.161 137630 port 200 137630 unique_id port 137630 remote_ip 10.8.1.22 137637 username amir 137637 mac 137637 bytes_out 8692 137637 bytes_in 20829 137637 station_ip 37.129.144.161 137637 port 195 137637 unique_id port 137637 remote_ip 10.8.1.22 137640 username barzegar 137640 mac 137640 bytes_out 0 137640 bytes_in 0 137640 station_ip 5.119.185.96 137640 port 332 137640 unique_id port 137640 remote_ip 10.8.0.234 137645 username mohammadjavad 137645 mac 137645 bytes_out 1016217 137645 bytes_in 15738738 137645 station_ip 113.203.109.11 137645 port 331 137645 unique_id port 137645 remote_ip 10.8.0.142 137648 username amir 137648 mac 137648 bytes_out 24622 137648 bytes_in 143797 137648 station_ip 37.129.144.161 137648 port 198 137648 unique_id port 137648 remote_ip 10.8.1.22 137609 unique_id port 137609 remote_ip 10.8.0.50 137611 username amir 137611 mac 137611 bytes_out 0 137611 bytes_in 0 137611 station_ip 37.129.144.161 137611 port 198 137611 unique_id port 137611 remote_ip 10.8.1.22 137616 username amir 137616 mac 137616 bytes_out 27634 137616 bytes_in 232242 137616 station_ip 37.129.144.161 137616 port 198 137616 unique_id port 137616 remote_ip 10.8.1.22 137617 username amir 137617 mac 137617 bytes_out 0 137617 bytes_in 0 137617 station_ip 37.129.144.161 137617 port 327 137617 unique_id port 137617 remote_ip 10.8.0.50 137618 username amirabbas 137618 unique_id port 137618 terminate_cause User-Request 137618 bytes_out 14086098 137618 bytes_in 419919118 137618 station_ip 37.27.19.221 137618 port 15730587 137618 nas_port_type Virtual 137618 remote_ip 5.5.5.250 137621 username amir 137621 mac 137621 bytes_out 0 137621 bytes_in 0 137621 station_ip 37.129.144.161 137621 port 198 137621 unique_id port 137621 remote_ip 10.8.1.22 137627 username amir 137627 mac 137627 bytes_out 0 137627 bytes_in 0 137627 station_ip 37.129.144.161 137627 port 331 137627 unique_id port 137627 remote_ip 10.8.0.50 137631 username hamidsalari 137631 kill_reason Another user logged on this global unique id 137631 mac 137631 bytes_out 0 137631 bytes_in 0 137631 station_ip 5.120.142.201 137631 port 315 137631 unique_id port 137631 remote_ip 10.8.0.222 137633 username alihosseini1 137633 mac 137633 bytes_out 474552 137633 bytes_in 1611095 137633 station_ip 5.119.243.69 137633 port 195 137633 unique_id port 137633 remote_ip 10.8.1.106 137636 username mehdizare 137636 mac 137636 bytes_out 702168 137636 bytes_in 8610783 137636 station_ip 5.120.148.206 137636 port 194 137636 unique_id port 137636 remote_ip 10.8.1.42 137638 username godarzi 137638 mac 137638 bytes_out 0 137638 bytes_in 0 137638 station_ip 5.120.38.180 137638 port 332 137638 unique_id port 137638 remote_ip 10.8.0.174 137641 username amir 137641 mac 137641 bytes_out 9458 137641 bytes_in 32341 137641 station_ip 37.129.144.161 137641 port 195 137641 unique_id port 137641 remote_ip 10.8.1.22 137642 username hamid.e 137642 unique_id port 137642 terminate_cause User-Request 137642 bytes_out 1416806 137642 bytes_in 27258127 137642 station_ip 37.27.0.188 137642 port 15730584 137642 nas_port_type Virtual 137642 remote_ip 5.5.5.255 137643 username forozandeh1 137643 mac 137643 bytes_out 0 137643 bytes_in 0 137643 station_ip 83.123.252.253 137643 port 330 137643 unique_id port 137643 remote_ip 10.8.0.130 137644 username amir 137644 mac 137644 bytes_out 97088 137644 bytes_in 414164 137644 station_ip 37.129.144.161 137644 port 195 137644 unique_id port 137644 remote_ip 10.8.1.22 137654 username barzegar 137654 mac 137654 bytes_out 0 137654 bytes_in 0 137654 station_ip 5.119.185.96 137654 port 195 137654 unique_id port 137654 remote_ip 10.8.1.174 137665 username alikomsari 137665 mac 137665 bytes_out 0 137665 bytes_in 0 137665 station_ip 5.119.6.230 137665 port 330 137665 unique_id port 137665 remote_ip 10.8.0.70 137667 username sedighe 137667 mac 137667 bytes_out 358295 137667 bytes_in 4500455 137667 station_ip 83.123.229.225 137667 port 333 137667 unique_id port 137667 remote_ip 10.8.0.146 137675 username barzegar 137675 mac 137675 bytes_out 0 137675 bytes_in 0 137675 station_ip 5.119.185.96 137675 port 198 137675 unique_id port 137675 remote_ip 10.8.1.174 137677 username amir 137677 mac 137677 bytes_out 0 137677 bytes_in 0 137610 remote_ip 10.8.0.50 137613 username amir 137613 mac 137613 bytes_out 12182 137613 bytes_in 37788 137613 station_ip 37.129.144.161 137613 port 198 137613 unique_id port 137613 remote_ip 10.8.1.22 137620 username amir 137620 mac 137620 bytes_out 0 137620 bytes_in 0 137620 station_ip 37.129.144.161 137620 port 198 137620 unique_id port 137620 remote_ip 10.8.1.22 137623 username aminvpn 137623 mac 137623 bytes_out 0 137623 bytes_in 0 137623 station_ip 83.122.28.219 137623 port 333 137623 unique_id port 137623 remote_ip 10.8.0.14 137624 username amir 137624 mac 137624 bytes_out 0 137624 bytes_in 0 137624 station_ip 37.129.144.161 137624 port 198 137624 unique_id port 137624 remote_ip 10.8.1.22 137628 username barzegar 137628 mac 137628 bytes_out 0 137628 bytes_in 0 137628 station_ip 5.119.185.96 137628 port 332 137628 unique_id port 137628 remote_ip 10.8.0.234 137632 username barzegar 137632 mac 137632 bytes_out 6833 137632 bytes_in 9513 137632 station_ip 5.119.185.96 137632 port 333 137632 unique_id port 137632 remote_ip 10.8.0.234 137634 username amir 137634 mac 137634 bytes_out 0 137634 bytes_in 0 137634 station_ip 37.129.144.161 137634 port 327 137634 unique_id port 137634 remote_ip 10.8.0.50 137635 username meysam 137635 mac 137635 bytes_out 565923 137635 bytes_in 6838873 137635 station_ip 188.158.49.57 137635 port 198 137635 unique_id port 137635 remote_ip 10.8.1.34 137639 username amir 137639 mac 137639 bytes_out 21068 137639 bytes_in 105983 137639 station_ip 37.129.144.161 137639 port 195 137639 unique_id port 137639 remote_ip 10.8.1.22 137646 username barzegar 137646 mac 137646 bytes_out 0 137646 bytes_in 0 137646 station_ip 5.119.185.96 137646 port 195 137646 unique_id port 137646 remote_ip 10.8.1.174 137647 username amir 137647 mac 137647 bytes_out 0 137647 bytes_in 0 137647 station_ip 37.129.144.161 137647 port 198 137647 unique_id port 137647 remote_ip 10.8.1.22 137649 username aminvpn 137649 kill_reason Maximum check online fails reached 137649 unique_id port 137649 bytes_out 9964224 137649 bytes_in 370630893 137649 station_ip 31.57.143.164 137649 port 15730588 137649 nas_port_type Virtual 137649 remote_ip 5.5.5.248 137651 username meysam 137651 mac 137651 bytes_out 0 137651 bytes_in 0 137651 station_ip 188.158.49.57 137651 port 195 137651 unique_id port 137651 remote_ip 10.8.1.34 137652 username godarzi 137652 mac 137652 bytes_out 0 137652 bytes_in 0 137652 station_ip 5.120.38.180 137652 port 330 137652 unique_id port 137652 remote_ip 10.8.0.174 137655 username barzegar 137655 mac 137655 bytes_out 0 137655 bytes_in 0 137655 station_ip 5.119.185.96 137655 port 195 137655 unique_id port 137655 remote_ip 10.8.1.174 137658 username vanila 137658 mac 137658 bytes_out 0 137658 bytes_in 0 137658 station_ip 83.122.255.154 137658 port 331 137658 unique_id port 137658 remote_ip 10.8.0.178 137659 username amir 137659 mac 137659 bytes_out 27977155 137659 bytes_in 29078873 137659 station_ip 37.129.144.161 137659 port 198 137659 unique_id port 137659 remote_ip 10.8.1.22 137661 username amir 137661 mac 137661 bytes_out 9854 137661 bytes_in 33742 137661 station_ip 37.129.144.161 137661 port 195 137661 unique_id port 137661 remote_ip 10.8.1.22 137663 username barzegar 137663 mac 137663 bytes_out 0 137663 bytes_in 0 137663 station_ip 5.119.185.96 137663 port 195 137663 unique_id port 137663 remote_ip 10.8.1.174 137668 username vanila 137650 username barzegar 137650 mac 137650 bytes_out 0 137650 bytes_in 0 137650 station_ip 5.119.185.96 137650 port 331 137650 unique_id port 137650 remote_ip 10.8.0.234 137653 username amir 137653 mac 137653 bytes_out 0 137653 bytes_in 0 137653 station_ip 37.129.144.161 137653 port 198 137653 unique_id port 137653 remote_ip 10.8.1.22 137656 username meysam 137656 mac 137656 bytes_out 0 137656 bytes_in 0 137656 station_ip 188.158.49.57 137656 port 200 137656 unique_id port 137656 remote_ip 10.8.1.34 137657 username barzegar 137657 mac 137657 bytes_out 0 137657 bytes_in 0 137657 station_ip 5.119.185.96 137657 port 195 137657 unique_id port 137657 remote_ip 10.8.1.174 137660 username amir 137660 mac 137660 bytes_out 0 137660 bytes_in 0 137660 station_ip 37.129.144.161 137660 port 331 137660 unique_id port 137660 remote_ip 10.8.0.50 137662 username amir 137662 mac 137662 bytes_out 0 137662 bytes_in 0 137662 station_ip 37.129.144.161 137662 port 335 137662 unique_id port 137662 remote_ip 10.8.0.50 137664 username morteza 137664 mac 137664 bytes_out 2236052 137664 bytes_in 34819808 137664 station_ip 83.122.213.172 137664 port 332 137664 unique_id port 137664 remote_ip 10.8.0.46 137666 username amir 137666 mac 137666 bytes_out 0 137666 bytes_in 0 137666 station_ip 37.129.144.161 137666 port 335 137666 unique_id port 137666 remote_ip 10.8.0.50 137670 username morteza 137670 mac 137670 bytes_out 0 137670 bytes_in 0 137670 station_ip 83.122.213.172 137670 port 331 137670 unique_id port 137670 remote_ip 10.8.0.46 137671 username barzegar 137671 mac 137671 bytes_out 0 137671 bytes_in 0 137671 station_ip 5.119.185.96 137671 port 198 137671 unique_id port 137671 remote_ip 10.8.1.174 137672 username alireza 137672 unique_id port 137672 terminate_cause User-Request 137672 bytes_out 3269998 137672 bytes_in 64110565 137672 station_ip 5.120.164.56 137672 port 15730590 137672 nas_port_type Virtual 137672 remote_ip 5.5.5.247 137674 username amir 137674 kill_reason Another user logged on this global unique id 137674 mac 137674 bytes_out 0 137674 bytes_in 0 137674 station_ip 37.129.144.161 137674 port 195 137674 unique_id port 137674 remote_ip 10.8.1.22 137676 username morteza 137676 mac 137676 bytes_out 0 137676 bytes_in 0 137676 station_ip 83.122.213.172 137676 port 332 137676 unique_id port 137676 remote_ip 10.8.0.46 137680 username barzegar 137680 mac 137680 bytes_out 0 137680 bytes_in 0 137680 station_ip 5.119.185.96 137680 port 198 137680 unique_id port 137680 remote_ip 10.8.1.174 137681 username amir 137681 mac 137681 bytes_out 0 137681 bytes_in 0 137681 station_ip 37.129.144.161 137681 port 337 137681 unique_id port 137681 remote_ip 10.8.0.50 137682 username amir 137682 mac 137682 bytes_out 0 137682 bytes_in 0 137682 station_ip 37.129.144.161 137682 port 195 137682 unique_id port 137682 remote_ip 10.8.1.22 137683 username morteza 137683 mac 137683 bytes_out 0 137683 bytes_in 0 137683 station_ip 83.122.213.172 137683 port 337 137683 unique_id port 137683 remote_ip 10.8.0.46 137685 username amir 137685 mac 137685 bytes_out 0 137685 bytes_in 0 137685 station_ip 37.129.144.161 137685 port 338 137685 unique_id port 137685 remote_ip 10.8.0.50 137688 username amir 137688 mac 137688 bytes_out 26131 137688 bytes_in 132468 137688 station_ip 37.129.144.161 137688 port 335 137688 unique_id port 137688 remote_ip 10.8.0.50 137690 username amir 137668 mac 137668 bytes_out 8915413 137668 bytes_in 1441614 137668 station_ip 83.122.255.154 137668 port 331 137668 unique_id port 137668 remote_ip 10.8.0.178 137669 username barzegar 137669 mac 137669 bytes_out 0 137669 bytes_in 0 137669 station_ip 5.119.185.96 137669 port 198 137669 unique_id port 137669 remote_ip 10.8.1.174 137673 username morteza 137673 mac 137673 bytes_out 0 137673 bytes_in 0 137673 station_ip 83.122.213.172 137673 port 331 137673 unique_id port 137673 remote_ip 10.8.0.46 137678 username amir 137678 mac 137678 bytes_out 0 137678 bytes_in 0 137678 station_ip 37.129.144.161 137678 port 335 137678 unique_id port 137678 remote_ip 10.8.0.50 137679 username amir 137679 mac 137679 bytes_out 25418 137679 bytes_in 155799 137679 station_ip 37.129.144.161 137679 port 195 137679 unique_id port 137679 remote_ip 10.8.1.22 137687 username vanila 137687 mac 137687 bytes_out 0 137687 bytes_in 0 137687 station_ip 83.122.255.154 137687 port 335 137687 unique_id port 137687 remote_ip 10.8.0.178 137689 username amir 137689 mac 137689 bytes_out 0 137689 bytes_in 0 137689 station_ip 37.129.144.161 137689 port 335 137689 unique_id port 137689 remote_ip 10.8.0.50 137691 username barzegar 137691 mac 137691 bytes_out 0 137691 bytes_in 0 137691 station_ip 5.119.185.96 137691 port 195 137691 unique_id port 137691 remote_ip 10.8.1.174 137695 username kamali2 137695 mac 137695 bytes_out 15253 137695 bytes_in 14245 137695 station_ip 5.119.36.109 137695 port 335 137695 unique_id port 137695 remote_ip 10.8.0.214 137698 username alipour 137698 mac 137698 bytes_out 0 137698 bytes_in 0 137698 station_ip 113.203.112.25 137698 port 332 137698 unique_id port 137698 remote_ip 10.8.0.102 137702 username morteza 137702 kill_reason Maximum check online fails reached 137702 mac 137702 bytes_out 0 137702 bytes_in 0 137702 station_ip 83.122.213.172 137702 port 195 137702 unique_id port 137706 username amir 137706 mac 137706 bytes_out 0 137706 bytes_in 0 137706 station_ip 37.129.144.161 137706 port 332 137706 unique_id port 137706 remote_ip 10.8.0.50 137708 username amir 137708 mac 137708 bytes_out 0 137708 bytes_in 0 137708 station_ip 37.129.144.161 137708 port 200 137708 unique_id port 137708 remote_ip 10.8.1.22 137723 username morteza 137723 mac 137723 bytes_out 0 137723 bytes_in 0 137723 station_ip 83.122.213.172 137723 port 299 137723 unique_id port 137723 remote_ip 10.8.0.46 137728 username amir 137728 mac 137728 bytes_out 131434 137728 bytes_in 583896 137728 station_ip 37.129.144.161 137728 port 331 137728 unique_id port 137728 remote_ip 10.8.0.50 137730 username barzegar 137730 mac 137730 bytes_out 0 137730 bytes_in 0 137730 station_ip 5.119.185.96 137730 port 331 137730 unique_id port 137730 remote_ip 10.8.0.234 137731 username vanila 137731 mac 137731 bytes_out 8847966 137731 bytes_in 1707576 137731 station_ip 83.122.191.214 137731 port 299 137731 unique_id port 137731 remote_ip 10.8.0.178 137736 username amir 137736 mac 137736 bytes_out 0 137736 bytes_in 0 137736 station_ip 37.129.144.161 137736 port 299 137736 unique_id port 137736 remote_ip 10.8.0.50 137740 username amir 137740 mac 137740 bytes_out 42899 137740 bytes_in 179402 137740 station_ip 37.129.144.161 137740 port 299 137740 unique_id port 137740 remote_ip 10.8.0.50 137741 username morteza 137741 mac 137741 bytes_out 0 137741 bytes_in 0 137677 station_ip 37.129.144.161 137677 port 195 137677 unique_id port 137684 username barzegar 137684 mac 137684 bytes_out 0 137684 bytes_in 0 137684 station_ip 5.119.185.96 137684 port 195 137684 unique_id port 137684 remote_ip 10.8.1.174 137686 username rajaei 137686 mac 137686 bytes_out 0 137686 bytes_in 0 137686 station_ip 93.114.16.203 137686 port 336 137686 unique_id port 137686 remote_ip 10.8.0.34 137692 username amir 137692 mac 137692 bytes_out 0 137692 bytes_in 0 137692 station_ip 37.129.144.161 137692 port 335 137692 unique_id port 137692 remote_ip 10.8.0.50 137693 username kamali2 137693 mac 137693 bytes_out 0 137693 bytes_in 0 137693 station_ip 5.119.36.109 137693 port 334 137693 unique_id port 137693 remote_ip 10.8.0.214 137694 username amir 137694 mac 137694 bytes_out 0 137694 bytes_in 0 137694 station_ip 37.129.144.161 137694 port 334 137694 unique_id port 137694 remote_ip 10.8.0.50 137697 username morteza 137697 mac 137697 bytes_out 0 137697 bytes_in 0 137697 station_ip 83.122.213.172 137697 port 336 137697 unique_id port 137697 remote_ip 10.8.0.46 137699 username amir 137699 mac 137699 bytes_out 0 137699 bytes_in 0 137699 station_ip 37.129.144.161 137699 port 335 137699 unique_id port 137699 remote_ip 10.8.0.50 137700 username hosseine 137700 kill_reason Another user logged on this global unique id 137700 mac 137700 bytes_out 0 137700 bytes_in 0 137700 station_ip 37.129.108.174 137700 port 324 137700 unique_id port 137701 username saeed9658 137701 mac 137701 bytes_out 25061570 137701 bytes_in 44869539 137701 station_ip 5.120.65.132 137701 port 333 137701 unique_id port 137701 remote_ip 10.8.0.62 137703 username barzegar 137703 mac 137703 bytes_out 0 137703 bytes_in 0 137703 station_ip 5.119.185.96 137703 port 198 137703 unique_id port 137703 remote_ip 10.8.1.174 137704 username khademi 137704 kill_reason Another user logged on this global unique id 137704 mac 137704 bytes_out 0 137704 bytes_in 0 137704 station_ip 113.203.70.160 137704 port 326 137704 unique_id port 137707 username godarzi 137707 mac 137707 bytes_out 108677 137707 bytes_in 893755 137707 station_ip 5.120.38.180 137707 port 333 137707 unique_id port 137707 remote_ip 10.8.0.174 137710 username morteza 137710 mac 137710 bytes_out 0 137710 bytes_in 0 137710 station_ip 83.122.213.172 137710 port 333 137710 unique_id port 137710 remote_ip 10.8.0.46 137712 username morteza 137712 mac 137712 bytes_out 0 137712 bytes_in 0 137712 station_ip 83.122.213.172 137712 port 333 137712 unique_id port 137712 remote_ip 10.8.0.46 137713 username morteza 137713 mac 137713 bytes_out 0 137713 bytes_in 0 137713 station_ip 83.122.213.172 137713 port 200 137713 unique_id port 137713 remote_ip 10.8.1.62 137714 username houshang 137714 mac 137714 bytes_out 879879 137714 bytes_in 3593431 137714 station_ip 5.119.70.37 137714 port 331 137714 unique_id port 137714 remote_ip 10.8.0.22 137715 username morteza 137715 mac 137715 bytes_out 0 137715 bytes_in 0 137715 station_ip 83.122.213.172 137715 port 331 137715 unique_id port 137715 remote_ip 10.8.0.46 137716 username barzegar 137716 mac 137716 bytes_out 0 137716 bytes_in 0 137716 station_ip 5.119.185.96 137716 port 201 137716 unique_id port 137716 remote_ip 10.8.1.174 137718 username amir 137718 mac 137718 bytes_out 34826 137718 bytes_in 119623 137718 station_ip 37.129.144.161 137718 port 200 137718 unique_id port 137690 mac 137690 bytes_out 0 137690 bytes_in 0 137690 station_ip 37.129.144.161 137690 port 335 137690 unique_id port 137690 remote_ip 10.8.0.50 137696 username alikomsari 137696 mac 137696 bytes_out 1471571 137696 bytes_in 9909307 137696 station_ip 5.119.6.230 137696 port 330 137696 unique_id port 137696 remote_ip 10.8.0.70 137705 username amir 137705 mac 137705 bytes_out 0 137705 bytes_in 0 137705 station_ip 37.129.144.161 137705 port 332 137705 unique_id port 137705 remote_ip 10.8.0.50 137709 username morteza 137709 kill_reason Maximum check online fails reached 137709 mac 137709 bytes_out 0 137709 bytes_in 0 137709 station_ip 83.122.213.172 137709 port 198 137709 unique_id port 137711 username amir 137711 mac 137711 bytes_out 0 137711 bytes_in 0 137711 station_ip 37.129.144.161 137711 port 332 137711 unique_id port 137711 remote_ip 10.8.0.50 137717 username houshang 137717 mac 137717 bytes_out 42129 137717 bytes_in 36279 137717 station_ip 5.119.70.37 137717 port 332 137717 unique_id port 137717 remote_ip 10.8.0.22 137719 username khademi 137719 kill_reason Another user logged on this global unique id 137719 mac 137719 bytes_out 0 137719 bytes_in 0 137719 station_ip 113.203.70.160 137719 port 326 137719 unique_id port 137720 username kamali2 137720 mac 137720 bytes_out 1705940 137720 bytes_in 30351364 137720 station_ip 5.119.36.109 137720 port 334 137720 unique_id port 137720 remote_ip 10.8.0.214 137721 username moradi 137721 mac 137721 bytes_out 0 137721 bytes_in 0 137721 station_ip 37.129.169.154 137721 port 299 137721 unique_id port 137725 username morteza 137725 mac 137725 bytes_out 0 137725 bytes_in 0 137725 station_ip 83.122.213.172 137725 port 331 137725 unique_id port 137725 remote_ip 10.8.0.46 137726 username morteza 137726 mac 137726 bytes_out 0 137726 bytes_in 0 137726 station_ip 83.122.213.172 137726 port 333 137726 unique_id port 137726 remote_ip 10.8.0.46 137729 username amir 137729 mac 137729 bytes_out 0 137729 bytes_in 0 137729 station_ip 37.129.144.161 137729 port 333 137729 unique_id port 137729 remote_ip 10.8.0.50 137732 username amir 137732 mac 137732 bytes_out 0 137732 bytes_in 0 137732 station_ip 37.129.144.161 137732 port 200 137732 unique_id port 137732 remote_ip 10.8.1.22 137733 username amir 137733 mac 137733 bytes_out 11498 137733 bytes_in 45586 137733 station_ip 37.129.144.161 137733 port 299 137733 unique_id port 137733 remote_ip 10.8.0.50 137737 username barzegar 137737 mac 137737 bytes_out 0 137737 bytes_in 0 137737 station_ip 5.119.185.96 137737 port 200 137737 unique_id port 137737 remote_ip 10.8.1.174 137739 username mehdizare 137739 mac 137739 bytes_out 0 137739 bytes_in 0 137739 station_ip 5.120.148.206 137739 port 194 137739 unique_id port 137739 remote_ip 10.8.1.42 137743 username amir 137743 mac 137743 bytes_out 0 137743 bytes_in 0 137743 station_ip 37.129.144.161 137743 port 200 137743 unique_id port 137743 remote_ip 10.8.1.22 137744 username amir 137744 mac 137744 bytes_out 0 137744 bytes_in 0 137744 station_ip 37.129.144.161 137744 port 200 137744 unique_id port 137744 remote_ip 10.8.1.22 137746 username amir 137746 mac 137746 bytes_out 0 137746 bytes_in 0 137746 station_ip 37.129.144.161 137746 port 200 137746 unique_id port 137746 remote_ip 10.8.1.22 137749 username amir 137749 mac 137749 bytes_out 0 137749 bytes_in 0 137749 station_ip 37.129.144.161 137749 port 200 137718 remote_ip 10.8.1.22 137722 username amir 137722 mac 137722 bytes_out 0 137722 bytes_in 0 137722 station_ip 37.129.144.161 137722 port 331 137722 unique_id port 137722 remote_ip 10.8.0.50 137724 username amir 137724 mac 137724 bytes_out 0 137724 bytes_in 0 137724 station_ip 37.129.144.161 137724 port 331 137724 unique_id port 137724 remote_ip 10.8.0.50 137727 username barzegar 137727 mac 137727 bytes_out 0 137727 bytes_in 0 137727 station_ip 5.119.185.96 137727 port 333 137727 unique_id port 137727 remote_ip 10.8.0.234 137734 username morteza 137734 mac 137734 bytes_out 0 137734 bytes_in 0 137734 station_ip 83.122.213.172 137734 port 200 137734 unique_id port 137734 remote_ip 10.8.1.62 137735 username amir 137735 mac 137735 bytes_out 0 137735 bytes_in 0 137735 station_ip 37.129.144.161 137735 port 200 137735 unique_id port 137735 remote_ip 10.8.1.22 137738 username vanila 137738 mac 137738 bytes_out 0 137738 bytes_in 0 137738 station_ip 83.122.191.214 137738 port 333 137738 unique_id port 137738 remote_ip 10.8.0.178 137742 username kamali2 137742 kill_reason Another user logged on this global unique id 137742 mac 137742 bytes_out 0 137742 bytes_in 0 137742 station_ip 5.119.209.155 137742 port 332 137742 unique_id port 137742 remote_ip 10.8.0.214 137747 username morteza 137747 mac 137747 bytes_out 0 137747 bytes_in 0 137747 station_ip 83.122.213.172 137747 port 299 137747 unique_id port 137747 remote_ip 10.8.0.46 137750 username alikomsari 137750 kill_reason Maximum number of concurrent logins reached 137750 mac 137750 bytes_out 0 137750 bytes_in 0 137750 station_ip 5.119.6.230 137750 port 299 137750 unique_id port 137752 username amir 137752 mac 137752 bytes_out 19498 137752 bytes_in 91915 137752 station_ip 37.129.144.161 137752 port 200 137752 unique_id port 137752 remote_ip 10.8.1.22 137754 username amir 137754 mac 137754 bytes_out 0 137754 bytes_in 0 137754 station_ip 37.129.144.161 137754 port 200 137754 unique_id port 137754 remote_ip 10.8.1.22 137755 username barzegar 137755 mac 137755 bytes_out 0 137755 bytes_in 0 137755 station_ip 5.119.185.96 137755 port 299 137755 unique_id port 137755 remote_ip 10.8.0.234 137756 username morteza 137756 mac 137756 bytes_out 0 137756 bytes_in 0 137756 station_ip 83.122.213.172 137756 port 201 137756 unique_id port 137756 remote_ip 10.8.1.62 137762 username morteza 137762 mac 137762 bytes_out 0 137762 bytes_in 0 137762 station_ip 83.122.213.172 137762 port 335 137762 unique_id port 137762 remote_ip 10.8.0.46 137765 username amir 137765 mac 137765 bytes_out 0 137765 bytes_in 0 137765 station_ip 37.129.144.161 137765 port 200 137765 unique_id port 137765 remote_ip 10.8.1.22 137766 username kamali2 137766 kill_reason Another user logged on this global unique id 137766 mac 137766 bytes_out 0 137766 bytes_in 0 137766 station_ip 5.119.209.155 137766 port 332 137766 unique_id port 137769 username morteza 137769 mac 137769 bytes_out 0 137769 bytes_in 0 137769 station_ip 83.122.213.172 137769 port 336 137769 unique_id port 137769 remote_ip 10.8.0.46 137772 username amir 137772 mac 137772 bytes_out 0 137772 bytes_in 0 137772 station_ip 37.129.144.161 137772 port 335 137772 unique_id port 137772 remote_ip 10.8.0.50 137773 username amir 137773 mac 137773 bytes_out 0 137773 bytes_in 0 137773 station_ip 37.129.144.161 137773 port 200 137773 unique_id port 137773 remote_ip 10.8.1.22 137775 username barzegar 137741 station_ip 83.122.213.172 137741 port 201 137741 unique_id port 137741 remote_ip 10.8.1.62 137745 username amir 137745 mac 137745 bytes_out 7255 137745 bytes_in 42865 137745 station_ip 37.129.144.161 137745 port 299 137745 unique_id port 137745 remote_ip 10.8.0.50 137748 username morteza 137748 mac 137748 bytes_out 0 137748 bytes_in 0 137748 station_ip 83.122.213.172 137748 port 299 137748 unique_id port 137748 remote_ip 10.8.0.46 137757 username kamali2 137757 kill_reason Another user logged on this global unique id 137757 mac 137757 bytes_out 0 137757 bytes_in 0 137757 station_ip 5.119.209.155 137757 port 332 137757 unique_id port 137759 username amir 137759 mac 137759 bytes_out 28367 137759 bytes_in 126811 137759 station_ip 37.129.144.161 137759 port 331 137759 unique_id port 137759 remote_ip 10.8.0.50 137760 username amir 137760 mac 137760 bytes_out 0 137760 bytes_in 0 137760 station_ip 37.129.144.161 137760 port 200 137760 unique_id port 137760 remote_ip 10.8.1.22 137763 username amir 137763 mac 137763 bytes_out 0 137763 bytes_in 0 137763 station_ip 37.129.144.161 137763 port 200 137763 unique_id port 137763 remote_ip 10.8.1.22 137764 username amir 137764 mac 137764 bytes_out 0 137764 bytes_in 0 137764 station_ip 37.129.144.161 137764 port 200 137764 unique_id port 137764 remote_ip 10.8.1.22 137767 username barzegar 137767 mac 137767 bytes_out 0 137767 bytes_in 0 137767 station_ip 5.119.185.96 137767 port 336 137767 unique_id port 137767 remote_ip 10.8.0.234 137768 username morteza 137768 mac 137768 bytes_out 0 137768 bytes_in 0 137768 station_ip 83.122.213.172 137768 port 336 137768 unique_id port 137768 remote_ip 10.8.0.46 137779 username amir 137779 mac 137779 bytes_out 0 137779 bytes_in 0 137779 station_ip 37.129.144.161 137779 port 194 137779 unique_id port 137779 remote_ip 10.8.1.22 137781 username barzegar 137781 mac 137781 bytes_out 0 137781 bytes_in 0 137781 station_ip 5.119.185.96 137781 port 334 137781 unique_id port 137781 remote_ip 10.8.0.234 137782 username hosseine 137782 mac 137782 bytes_out 0 137782 bytes_in 0 137782 station_ip 37.129.108.174 137782 port 324 137782 unique_id port 137790 username mahdiyehalizadeh 137790 mac 137790 bytes_out 0 137790 bytes_in 0 137790 station_ip 113.203.113.249 137790 port 331 137790 unique_id port 137790 remote_ip 10.8.0.82 137797 username morteza 137797 kill_reason Maximum check online fails reached 137797 mac 137797 bytes_out 0 137797 bytes_in 0 137797 station_ip 83.122.213.172 137797 port 333 137797 unique_id port 137801 username morteza 137801 mac 137801 bytes_out 0 137801 bytes_in 0 137801 station_ip 83.122.213.172 137801 port 337 137801 unique_id port 137801 remote_ip 10.8.0.46 137804 username barzegar 137804 mac 137804 bytes_out 0 137804 bytes_in 0 137804 station_ip 5.119.185.96 137804 port 299 137804 unique_id port 137804 remote_ip 10.8.0.234 137808 username morteza 137808 mac 137808 bytes_out 0 137808 bytes_in 0 137808 station_ip 83.122.213.172 137808 port 299 137808 unique_id port 137808 remote_ip 10.8.0.46 137810 username morteza 137810 mac 137810 bytes_out 0 137810 bytes_in 0 137810 station_ip 83.122.213.172 137810 port 299 137810 unique_id port 137810 remote_ip 10.8.0.46 137812 username houshang 137812 mac 137812 bytes_out 0 137812 bytes_in 0 137812 station_ip 5.119.70.37 137812 port 332 137812 unique_id port 137812 remote_ip 10.8.0.22 137749 unique_id port 137749 remote_ip 10.8.1.22 137751 username alikomsari 137751 mac 137751 bytes_out 1125532 137751 bytes_in 11045439 137751 station_ip 5.119.6.230 137751 port 331 137751 unique_id port 137751 remote_ip 10.8.0.70 137753 username morteza 137753 mac 137753 bytes_out 0 137753 bytes_in 0 137753 station_ip 83.122.213.172 137753 port 299 137753 unique_id port 137753 remote_ip 10.8.0.46 137758 username amir 137758 mac 137758 bytes_out 0 137758 bytes_in 0 137758 station_ip 37.129.144.161 137758 port 200 137758 unique_id port 137758 remote_ip 10.8.1.22 137761 username ehsun 137761 unique_id port 137761 terminate_cause User-Request 137761 bytes_out 1458720 137761 bytes_in 82957961 137761 station_ip 46.225.209.198 137761 port 15730593 137761 nas_port_type Virtual 137761 remote_ip 5.5.5.221 137770 username morteza 137770 mac 137770 bytes_out 0 137770 bytes_in 0 137770 station_ip 83.122.213.172 137770 port 336 137770 unique_id port 137770 remote_ip 10.8.0.46 137771 username sabaghnezhad 137771 mac 137771 bytes_out 131042 137771 bytes_in 729253 137771 station_ip 5.217.235.63 137771 port 200 137771 unique_id port 137771 remote_ip 10.8.1.130 137774 username mehdizare 137774 mac 137774 bytes_out 52127 137774 bytes_in 65906 137774 station_ip 5.120.148.206 137774 port 194 137774 unique_id port 137774 remote_ip 10.8.1.42 137776 username amir 137776 mac 137776 bytes_out 13629 137776 bytes_in 67584 137776 station_ip 37.129.144.161 137776 port 194 137776 unique_id port 137776 remote_ip 10.8.1.22 137783 username naeimeh 137783 mac 137783 bytes_out 0 137783 bytes_in 0 137783 station_ip 83.123.113.53 137783 port 201 137783 unique_id port 137783 remote_ip 10.8.1.206 137785 username arash 137785 mac 137785 bytes_out 59914 137785 bytes_in 196714 137785 station_ip 37.27.12.159 137785 port 336 137785 unique_id port 137785 remote_ip 10.8.0.114 137786 username sabaghnezhad 137786 mac 137786 bytes_out 41309 137786 bytes_in 61966 137786 station_ip 5.217.235.63 137786 port 335 137786 unique_id port 137786 remote_ip 10.8.0.186 137787 username morteza 137787 kill_reason Maximum check online fails reached 137787 mac 137787 bytes_out 0 137787 bytes_in 0 137787 station_ip 83.122.213.172 137787 port 202 137787 unique_id port 137788 username morteza 137788 mac 137788 bytes_out 0 137788 bytes_in 0 137788 station_ip 83.122.213.172 137788 port 324 137788 unique_id port 137788 remote_ip 10.8.0.46 137792 username morteza 137792 mac 137792 bytes_out 0 137792 bytes_in 0 137792 station_ip 83.122.213.172 137792 port 324 137792 unique_id port 137792 remote_ip 10.8.0.46 137794 username vanila 137794 mac 137794 bytes_out 0 137794 bytes_in 0 137794 station_ip 83.122.191.214 137794 port 333 137794 unique_id port 137795 username morteza 137795 mac 137795 bytes_out 0 137795 bytes_in 0 137795 station_ip 83.122.213.172 137795 port 335 137795 unique_id port 137795 remote_ip 10.8.0.46 137796 username mansour 137796 mac 137796 bytes_out 0 137796 bytes_in 0 137796 station_ip 5.202.62.30 137796 port 324 137796 unique_id port 137796 remote_ip 10.8.0.30 137798 username vanila 137798 mac 137798 bytes_out 0 137798 bytes_in 0 137798 station_ip 83.122.191.214 137798 port 336 137798 unique_id port 137798 remote_ip 10.8.0.178 137805 username barzegar 137805 mac 137805 bytes_out 0 137805 bytes_in 0 137805 station_ip 5.119.185.96 137805 port 299 137805 unique_id port 137805 remote_ip 10.8.0.234 137775 mac 137775 bytes_out 0 137775 bytes_in 0 137775 station_ip 5.119.185.96 137775 port 336 137775 unique_id port 137775 remote_ip 10.8.0.234 137777 username kamali2 137777 mac 137777 bytes_out 0 137777 bytes_in 0 137777 station_ip 5.119.209.155 137777 port 332 137777 unique_id port 137778 username forozandeh1 137778 mac 137778 bytes_out 3067277 137778 bytes_in 6123438 137778 station_ip 113.203.94.131 137778 port 334 137778 unique_id port 137778 remote_ip 10.8.0.130 137780 username amir 137780 mac 137780 bytes_out 0 137780 bytes_in 0 137780 station_ip 37.129.144.161 137780 port 332 137780 unique_id port 137780 remote_ip 10.8.0.50 137784 username amir 137784 mac 137784 bytes_out 0 137784 bytes_in 0 137784 station_ip 37.129.144.161 137784 port 332 137784 unique_id port 137784 remote_ip 10.8.0.50 137789 username shahrooz 137789 unique_id port 137789 terminate_cause User-Request 137789 bytes_out 379 137789 bytes_in 948 137789 station_ip 37.129.197.170 137789 port 15730594 137789 nas_port_type Virtual 137789 remote_ip 5.5.5.251 137791 username vanila 137791 kill_reason Another user logged on this global unique id 137791 mac 137791 bytes_out 0 137791 bytes_in 0 137791 station_ip 83.122.191.214 137791 port 333 137791 unique_id port 137791 remote_ip 10.8.0.178 137793 username barzegar 137793 mac 137793 bytes_out 0 137793 bytes_in 0 137793 station_ip 5.119.185.96 137793 port 203 137793 unique_id port 137793 remote_ip 10.8.1.174 137799 username morteza 137799 mac 137799 bytes_out 0 137799 bytes_in 0 137799 station_ip 83.122.213.172 137799 port 337 137799 unique_id port 137799 remote_ip 10.8.0.46 137800 username morteza 137800 kill_reason Maximum check online fails reached 137800 mac 137800 bytes_out 0 137800 bytes_in 0 137800 station_ip 83.122.213.172 137800 port 203 137800 unique_id port 137802 username godarzi 137802 mac 137802 bytes_out 0 137802 bytes_in 0 137802 station_ip 5.120.38.180 137802 port 299 137802 unique_id port 137802 remote_ip 10.8.0.174 137803 username vanila 137803 mac 137803 bytes_out 0 137803 bytes_in 0 137803 station_ip 83.122.191.214 137803 port 324 137803 unique_id port 137803 remote_ip 10.8.0.178 137806 username morteza 137806 kill_reason Another user logged on this global unique id 137806 mac 137806 bytes_out 0 137806 bytes_in 0 137806 station_ip 83.122.213.172 137806 port 337 137806 unique_id port 137806 remote_ip 10.8.0.46 137807 username morteza 137807 mac 137807 bytes_out 0 137807 bytes_in 0 137807 station_ip 83.122.213.172 137807 port 337 137807 unique_id port 137809 username khademi 137809 kill_reason Another user logged on this global unique id 137809 mac 137809 bytes_out 0 137809 bytes_in 0 137809 station_ip 113.203.70.160 137809 port 326 137809 unique_id port 137819 username barzegar 137819 mac 137819 bytes_out 0 137819 bytes_in 0 137819 station_ip 5.119.185.96 137819 port 332 137819 unique_id port 137819 remote_ip 10.8.0.234 137821 username mosi 137821 kill_reason Another user logged on this global unique id 137821 mac 137821 bytes_out 0 137821 bytes_in 0 137821 station_ip 151.235.75.185 137821 port 282 137821 unique_id port 137824 username morteza 137824 mac 137824 bytes_out 0 137824 bytes_in 0 137824 station_ip 83.122.213.172 137824 port 299 137824 unique_id port 137824 remote_ip 10.8.0.46 137826 username mostafa_es78 137826 unique_id port 137826 terminate_cause User-Request 137826 bytes_out 226033 137826 bytes_in 3595350 137826 station_ip 109.125.174.62 137826 port 15730597 137811 username amir 137811 kill_reason Another user logged on this global unique id 137811 mac 137811 bytes_out 0 137811 bytes_in 0 137811 station_ip 37.129.144.161 137811 port 194 137811 unique_id port 137811 remote_ip 10.8.1.22 137813 username vanila 137813 mac 137813 bytes_out 0 137813 bytes_in 0 137813 station_ip 83.122.191.214 137813 port 324 137813 unique_id port 137813 remote_ip 10.8.0.178 137814 username mahdiyehalizadeh 137814 mac 137814 bytes_out 0 137814 bytes_in 0 137814 station_ip 113.203.126.77 137814 port 335 137814 unique_id port 137814 remote_ip 10.8.0.82 137817 username alikomsari 137817 kill_reason Another user logged on this global unique id 137817 mac 137817 bytes_out 0 137817 bytes_in 0 137817 station_ip 5.119.219.202 137817 port 336 137817 unique_id port 137817 remote_ip 10.8.0.70 137818 username sobhan 137818 unique_id port 137818 terminate_cause User-Request 137818 bytes_out 653611 137818 bytes_in 8661299 137818 station_ip 5.119.112.220 137818 port 15730595 137818 nas_port_type Virtual 137818 remote_ip 5.5.5.252 137820 username barzegar 137820 kill_reason Maximum check online fails reached 137820 mac 137820 bytes_out 0 137820 bytes_in 0 137820 station_ip 5.119.185.96 137820 port 204 137820 unique_id port 137823 username hoorieh 137823 kill_reason Another user logged on this global unique id 137823 mac 137823 bytes_out 0 137823 bytes_in 0 137823 station_ip 5.119.118.40 137823 port 335 137823 unique_id port 137823 remote_ip 10.8.0.38 137825 username houshang 137825 mac 137825 bytes_out 46987 137825 bytes_in 77553 137825 station_ip 5.119.70.37 137825 port 332 137825 unique_id port 137825 remote_ip 10.8.0.22 137829 username amir 137829 mac 137829 bytes_out 0 137829 bytes_in 0 137829 station_ip 37.129.144.161 137829 port 194 137829 unique_id port 137829 remote_ip 10.8.1.22 137831 username alikomsari 137831 kill_reason Another user logged on this global unique id 137831 mac 137831 bytes_out 0 137831 bytes_in 0 137831 station_ip 5.119.219.202 137831 port 336 137831 unique_id port 137835 username morteza 137835 mac 137835 bytes_out 0 137835 bytes_in 0 137835 station_ip 83.122.213.172 137835 port 299 137835 unique_id port 137835 remote_ip 10.8.0.46 137837 username hoorieh 137837 kill_reason Another user logged on this global unique id 137837 mac 137837 bytes_out 0 137837 bytes_in 0 137837 station_ip 5.119.118.40 137837 port 335 137837 unique_id port 137839 username amir 137839 mac 137839 bytes_out 0 137839 bytes_in 0 137839 station_ip 37.129.144.161 137839 port 194 137839 unique_id port 137839 remote_ip 10.8.1.22 137841 username jafari 137841 mac 137841 bytes_out 0 137841 bytes_in 0 137841 station_ip 89.32.107.196 137841 port 332 137841 unique_id port 137841 remote_ip 10.8.0.242 137844 username amir 137844 mac 137844 bytes_out 0 137844 bytes_in 0 137844 station_ip 37.129.144.161 137844 port 194 137844 unique_id port 137844 remote_ip 10.8.1.22 137845 username abravesh 137845 unique_id port 137845 terminate_cause User-Request 137845 bytes_out 0 137845 bytes_in 0 137845 station_ip 5.119.239.37 137845 port 15730599 137845 nas_port_type Virtual 137845 remote_ip 5.5.5.250 137846 username hoorieh 137846 mac 137846 bytes_out 0 137846 bytes_in 0 137846 station_ip 5.119.118.40 137846 port 335 137846 unique_id port 137851 username khademi 137851 kill_reason Another user logged on this global unique id 137851 mac 137851 bytes_out 0 137851 bytes_in 0 137851 station_ip 113.203.70.160 137851 port 326 137851 unique_id port 137854 username barzegar 137854 mac 137815 username barzegar 137815 mac 137815 bytes_out 0 137815 bytes_in 0 137815 station_ip 5.119.185.96 137815 port 204 137815 unique_id port 137815 remote_ip 10.8.1.174 137816 username godarzi 137816 mac 137816 bytes_out 0 137816 bytes_in 0 137816 station_ip 5.120.38.180 137816 port 332 137816 unique_id port 137816 remote_ip 10.8.0.174 137822 username morteza 137822 mac 137822 bytes_out 0 137822 bytes_in 0 137822 station_ip 83.122.213.172 137822 port 299 137822 unique_id port 137822 remote_ip 10.8.0.46 137834 username khademi 137834 kill_reason Another user logged on this global unique id 137834 mac 137834 bytes_out 0 137834 bytes_in 0 137834 station_ip 113.203.70.160 137834 port 326 137834 unique_id port 137838 username amir 137838 mac 137838 bytes_out 96570 137838 bytes_in 344038 137838 station_ip 37.129.144.161 137838 port 194 137838 unique_id port 137838 remote_ip 10.8.1.22 137843 username amir 137843 mac 137843 bytes_out 0 137843 bytes_in 0 137843 station_ip 37.129.144.161 137843 port 299 137843 unique_id port 137843 remote_ip 10.8.0.50 137848 username mahdiyehalizadeh 137848 mac 137848 bytes_out 0 137848 bytes_in 0 137848 station_ip 113.203.126.77 137848 port 324 137848 unique_id port 137848 remote_ip 10.8.0.82 137850 username barzegar 137850 mac 137850 bytes_out 0 137850 bytes_in 0 137850 station_ip 5.119.185.96 137850 port 299 137850 unique_id port 137850 remote_ip 10.8.0.234 137852 username amir 137852 mac 137852 bytes_out 32133 137852 bytes_in 137655 137852 station_ip 37.129.144.161 137852 port 194 137852 unique_id port 137852 remote_ip 10.8.1.22 137853 username amir 137853 mac 137853 bytes_out 0 137853 bytes_in 0 137853 station_ip 37.129.144.161 137853 port 324 137853 unique_id port 137853 remote_ip 10.8.0.50 137856 username alihosseini1 137856 mac 137856 bytes_out 624184 137856 bytes_in 767584 137856 station_ip 5.120.129.20 137856 port 201 137856 unique_id port 137856 remote_ip 10.8.1.106 137858 username barzegar 137858 mac 137858 bytes_out 0 137858 bytes_in 0 137858 station_ip 5.119.185.96 137858 port 324 137858 unique_id port 137858 remote_ip 10.8.0.234 137861 username khademi 137861 kill_reason Another user logged on this global unique id 137861 mac 137861 bytes_out 0 137861 bytes_in 0 137861 station_ip 113.203.70.160 137861 port 326 137861 unique_id port 137864 username barzegar 137864 mac 137864 bytes_out 0 137864 bytes_in 0 137864 station_ip 5.119.185.96 137864 port 324 137864 unique_id port 137864 remote_ip 10.8.0.234 137868 username amir 137868 kill_reason Another user logged on this global unique id 137868 mac 137868 bytes_out 0 137868 bytes_in 0 137868 station_ip 37.129.144.161 137868 port 194 137868 unique_id port 137868 remote_ip 10.8.1.22 137870 username khademi 137870 kill_reason Another user logged on this global unique id 137870 mac 137870 bytes_out 0 137870 bytes_in 0 137870 station_ip 113.203.70.160 137870 port 326 137870 unique_id port 137871 username barzegar 137871 mac 137871 bytes_out 0 137871 bytes_in 0 137871 station_ip 5.119.185.96 137871 port 324 137871 unique_id port 137871 remote_ip 10.8.0.234 137873 username barzegar 137873 mac 137873 bytes_out 0 137873 bytes_in 0 137873 station_ip 5.119.185.96 137873 port 332 137873 unique_id port 137873 remote_ip 10.8.0.234 137878 username amir 137878 mac 137878 bytes_out 0 137878 bytes_in 0 137878 station_ip 37.129.144.161 137878 port 194 137878 unique_id port 137880 username amir 137826 nas_port_type Virtual 137826 remote_ip 5.5.5.223 137827 username mosi 137827 kill_reason Another user logged on this global unique id 137827 mac 137827 bytes_out 0 137827 bytes_in 0 137827 station_ip 151.235.75.185 137827 port 282 137827 unique_id port 137828 username amir 137828 mac 137828 bytes_out 0 137828 bytes_in 0 137828 station_ip 37.129.144.161 137828 port 194 137828 unique_id port 137830 username sabaghnezhad 137830 mac 137830 bytes_out 0 137830 bytes_in 0 137830 station_ip 5.217.175.46 137830 port 334 137830 unique_id port 137830 remote_ip 10.8.0.186 137832 username barzegar 137832 mac 137832 bytes_out 0 137832 bytes_in 0 137832 station_ip 5.119.185.96 137832 port 205 137832 unique_id port 137832 remote_ip 10.8.1.174 137833 username barzegar 137833 mac 137833 bytes_out 0 137833 bytes_in 0 137833 station_ip 5.119.185.96 137833 port 334 137833 unique_id port 137833 remote_ip 10.8.0.234 137836 username houshang 137836 mac 137836 bytes_out 0 137836 bytes_in 0 137836 station_ip 5.119.70.37 137836 port 334 137836 unique_id port 137836 remote_ip 10.8.0.22 137840 username amir 137840 mac 137840 bytes_out 0 137840 bytes_in 0 137840 station_ip 37.129.144.161 137840 port 299 137840 unique_id port 137840 remote_ip 10.8.0.50 137842 username sabaghnezhad 137842 mac 137842 bytes_out 22913 137842 bytes_in 34485 137842 station_ip 5.217.177.22 137842 port 205 137842 unique_id port 137842 remote_ip 10.8.1.130 137847 username amir 137847 mac 137847 bytes_out 23039 137847 bytes_in 117089 137847 station_ip 37.129.144.161 137847 port 299 137847 unique_id port 137847 remote_ip 10.8.0.50 137849 username sabaghnezhad 137849 mac 137849 bytes_out 0 137849 bytes_in 0 137849 station_ip 5.217.177.22 137849 port 332 137849 unique_id port 137849 remote_ip 10.8.0.186 137855 username amir 137855 mac 137855 bytes_out 0 137855 bytes_in 0 137855 station_ip 37.129.144.161 137855 port 194 137855 unique_id port 137855 remote_ip 10.8.1.22 137857 username amir 137857 mac 137857 bytes_out 0 137857 bytes_in 0 137857 station_ip 37.129.144.161 137857 port 194 137857 unique_id port 137857 remote_ip 10.8.1.22 137860 username alihosseini1 137860 mac 137860 bytes_out 3420 137860 bytes_in 6247 137860 station_ip 5.120.129.20 137860 port 201 137860 unique_id port 137860 remote_ip 10.8.1.106 137862 username alihosseini1 137862 mac 137862 bytes_out 2595 137862 bytes_in 5681 137862 station_ip 5.120.129.20 137862 port 201 137862 unique_id port 137862 remote_ip 10.8.1.106 137863 username houshang 137863 mac 137863 bytes_out 0 137863 bytes_in 0 137863 station_ip 5.119.70.37 137863 port 334 137863 unique_id port 137867 username mosi 137867 mac 137867 bytes_out 0 137867 bytes_in 0 137867 station_ip 151.235.75.185 137867 port 282 137867 unique_id port 137869 username kamali2 137869 mac 137869 bytes_out 0 137869 bytes_in 0 137869 station_ip 5.120.11.212 137869 port 324 137869 unique_id port 137869 remote_ip 10.8.0.214 137872 username amir 137872 kill_reason Another user logged on this global unique id 137872 mac 137872 bytes_out 0 137872 bytes_in 0 137872 station_ip 37.129.144.161 137872 port 194 137872 unique_id port 137875 username mehdizare 137875 mac 137875 bytes_out 0 137875 bytes_in 0 137875 station_ip 5.120.148.206 137875 port 282 137875 unique_id port 137875 remote_ip 10.8.0.90 137877 username amir 137877 kill_reason Another user logged on this global unique id 137877 mac 137854 bytes_out 0 137854 bytes_in 0 137854 station_ip 5.119.185.96 137854 port 324 137854 unique_id port 137854 remote_ip 10.8.0.234 137859 username houshang 137859 kill_reason Another user logged on this global unique id 137859 mac 137859 bytes_out 0 137859 bytes_in 0 137859 station_ip 5.119.70.37 137859 port 334 137859 unique_id port 137859 remote_ip 10.8.0.22 137865 username forozandeh1 137865 mac 137865 bytes_out 0 137865 bytes_in 0 137865 station_ip 83.122.4.102 137865 port 331 137865 unique_id port 137865 remote_ip 10.8.0.130 137866 username mehdizare 137866 mac 137866 bytes_out 152759 137866 bytes_in 197231 137866 station_ip 5.120.148.206 137866 port 200 137866 unique_id port 137866 remote_ip 10.8.1.42 137874 username kordestani 137874 mac 137874 bytes_out 0 137874 bytes_in 0 137874 station_ip 151.235.114.62 137874 port 331 137874 unique_id port 137874 remote_ip 10.8.0.134 137876 username houshang 137876 mac 137876 bytes_out 575879 137876 bytes_in 5071497 137876 station_ip 5.119.70.37 137876 port 324 137876 unique_id port 137876 remote_ip 10.8.0.22 137881 username aminvpn 137881 mac 137881 bytes_out 0 137881 bytes_in 0 137881 station_ip 83.123.230.211 137881 port 327 137881 unique_id port 137881 remote_ip 10.8.0.14 137882 username amir 137882 mac 137882 bytes_out 26426 137882 bytes_in 111459 137882 station_ip 37.129.144.161 137882 port 324 137882 unique_id port 137882 remote_ip 10.8.0.50 137884 username aminvpn 137884 mac 137884 bytes_out 0 137884 bytes_in 0 137884 station_ip 83.123.230.211 137884 port 327 137884 unique_id port 137884 remote_ip 10.8.0.14 137886 username amir 137886 mac 137886 bytes_out 0 137886 bytes_in 0 137886 station_ip 37.129.144.161 137886 port 299 137886 unique_id port 137886 remote_ip 10.8.0.50 137887 username alikomsari 137887 kill_reason Another user logged on this global unique id 137887 mac 137887 bytes_out 0 137887 bytes_in 0 137887 station_ip 5.119.219.202 137887 port 336 137887 unique_id port 137896 username amir 137896 mac 137896 bytes_out 0 137896 bytes_in 0 137896 station_ip 37.129.144.161 137896 port 200 137896 unique_id port 137896 remote_ip 10.8.1.22 137899 username amir 137899 mac 137899 bytes_out 0 137899 bytes_in 0 137899 station_ip 37.129.144.161 137899 port 299 137899 unique_id port 137899 remote_ip 10.8.0.50 137909 username amirabbas 137909 unique_id port 137909 terminate_cause User-Request 137909 bytes_out 18044486 137909 bytes_in 462277754 137909 station_ip 37.27.19.221 137909 port 15730596 137909 nas_port_type Virtual 137909 remote_ip 5.5.5.252 137912 username amir 137912 mac 137912 bytes_out 0 137912 bytes_in 0 137912 station_ip 37.129.144.161 137912 port 200 137912 unique_id port 137912 remote_ip 10.8.1.22 137913 username barzegar 137913 mac 137913 bytes_out 0 137913 bytes_in 0 137913 station_ip 5.119.185.96 137913 port 200 137913 unique_id port 137913 remote_ip 10.8.1.174 137917 username barzegar 137917 mac 137917 bytes_out 0 137917 bytes_in 0 137917 station_ip 5.119.185.96 137917 port 200 137917 unique_id port 137917 remote_ip 10.8.1.174 137919 username sabaghnezhad 137919 mac 137919 bytes_out 9049 137919 bytes_in 17829 137919 station_ip 5.217.80.240 137919 port 324 137919 unique_id port 137919 remote_ip 10.8.0.186 137927 username barzegar 137927 mac 137927 bytes_out 3188 137927 bytes_in 5760 137927 station_ip 5.119.185.96 137927 port 205 137927 unique_id port 137927 remote_ip 10.8.1.174 137928 username amir 137877 bytes_out 0 137877 bytes_in 0 137877 station_ip 37.129.144.161 137877 port 194 137877 unique_id port 137879 username amir 137879 mac 137879 bytes_out 0 137879 bytes_in 0 137879 station_ip 37.129.144.161 137879 port 194 137879 unique_id port 137879 remote_ip 10.8.1.22 137890 username amir 137890 mac 137890 bytes_out 0 137890 bytes_in 0 137890 station_ip 37.129.144.161 137890 port 194 137890 unique_id port 137890 remote_ip 10.8.1.22 137891 username amir 137891 mac 137891 bytes_out 0 137891 bytes_in 0 137891 station_ip 37.129.144.161 137891 port 194 137891 unique_id port 137891 remote_ip 10.8.1.22 137894 username aminvpn 137894 mac 137894 bytes_out 213494 137894 bytes_in 208096 137894 station_ip 83.123.230.211 137894 port 200 137894 unique_id port 137894 remote_ip 10.8.1.6 137895 username khademi 137895 kill_reason Another user logged on this global unique id 137895 mac 137895 bytes_out 0 137895 bytes_in 0 137895 station_ip 113.203.70.160 137895 port 326 137895 unique_id port 137898 username amir 137898 mac 137898 bytes_out 0 137898 bytes_in 0 137898 station_ip 37.129.144.161 137898 port 299 137898 unique_id port 137898 remote_ip 10.8.0.50 137900 username amir 137900 mac 137900 bytes_out 0 137900 bytes_in 0 137900 station_ip 37.129.144.161 137900 port 200 137900 unique_id port 137900 remote_ip 10.8.1.22 137901 username amir 137901 mac 137901 bytes_out 0 137901 bytes_in 0 137901 station_ip 37.129.144.161 137901 port 200 137901 unique_id port 137901 remote_ip 10.8.1.22 137904 username amir 137904 mac 137904 bytes_out 13548 137904 bytes_in 54575 137904 station_ip 37.129.144.161 137904 port 299 137904 unique_id port 137904 remote_ip 10.8.0.50 137905 username abravesh 137905 unique_id port 137905 terminate_cause Lost-Carrier 137905 bytes_out 674023 137905 bytes_in 1889430 137905 station_ip 5.119.239.37 137905 port 15730600 137905 nas_port_type Virtual 137905 remote_ip 5.5.5.250 137907 username barzegar 137907 mac 137907 bytes_out 0 137907 bytes_in 0 137907 station_ip 5.119.185.96 137907 port 332 137907 unique_id port 137907 remote_ip 10.8.0.234 137910 username barzegar 137910 mac 137910 bytes_out 4829 137910 bytes_in 5609 137910 station_ip 5.119.185.96 137910 port 299 137910 unique_id port 137910 remote_ip 10.8.0.234 137915 username mehdizare 137915 mac 137915 bytes_out 82597 137915 bytes_in 85457 137915 station_ip 5.120.148.206 137915 port 282 137915 unique_id port 137915 remote_ip 10.8.0.90 137918 username amir 137918 mac 137918 bytes_out 0 137918 bytes_in 0 137918 station_ip 37.129.144.161 137918 port 205 137918 unique_id port 137918 remote_ip 10.8.1.22 137921 username houshang 137921 mac 137921 bytes_out 383808 137921 bytes_in 1639825 137921 station_ip 5.119.178.87 137921 port 282 137921 unique_id port 137921 remote_ip 10.8.0.22 137922 username malekpoir 137922 mac 137922 bytes_out 0 137922 bytes_in 0 137922 station_ip 5.119.123.141 137922 port 312 137922 unique_id port 137925 username amir 137925 mac 137925 bytes_out 0 137925 bytes_in 0 137925 station_ip 37.129.144.161 137925 port 206 137925 unique_id port 137925 remote_ip 10.8.1.22 137926 username sabaghnezhad 137926 mac 137926 bytes_out 0 137926 bytes_in 0 137926 station_ip 5.217.80.240 137926 port 200 137926 unique_id port 137926 remote_ip 10.8.1.130 137932 username alihosseini1 137932 mac 137932 bytes_out 145128 137932 bytes_in 693677 137932 station_ip 5.119.50.105 137932 port 201 137880 mac 137880 bytes_out 0 137880 bytes_in 0 137880 station_ip 37.129.144.161 137880 port 324 137880 unique_id port 137880 remote_ip 10.8.0.50 137883 username mahdiyehalizadeh 137883 mac 137883 bytes_out 1427716 137883 bytes_in 14429343 137883 station_ip 83.122.177.139 137883 port 299 137883 unique_id port 137883 remote_ip 10.8.0.82 137885 username amir 137885 mac 137885 bytes_out 0 137885 bytes_in 0 137885 station_ip 37.129.144.161 137885 port 194 137885 unique_id port 137885 remote_ip 10.8.1.22 137888 username amir 137888 mac 137888 bytes_out 0 137888 bytes_in 0 137888 station_ip 37.129.144.161 137888 port 299 137888 unique_id port 137888 remote_ip 10.8.0.50 137889 username khademi 137889 kill_reason Another user logged on this global unique id 137889 mac 137889 bytes_out 0 137889 bytes_in 0 137889 station_ip 113.203.70.160 137889 port 326 137889 unique_id port 137892 username amir 137892 mac 137892 bytes_out 0 137892 bytes_in 0 137892 station_ip 37.129.144.161 137892 port 299 137892 unique_id port 137892 remote_ip 10.8.0.50 137893 username amir 137893 mac 137893 bytes_out 0 137893 bytes_in 0 137893 station_ip 37.129.144.161 137893 port 299 137893 unique_id port 137893 remote_ip 10.8.0.50 137897 username sabaghnezhad 137897 mac 137897 bytes_out 0 137897 bytes_in 0 137897 station_ip 5.217.80.240 137897 port 334 137897 unique_id port 137897 remote_ip 10.8.0.186 137902 username forozandeh1 137902 mac 137902 bytes_out 1343139 137902 bytes_in 14345037 137902 station_ip 37.129.36.124 137902 port 324 137902 unique_id port 137902 remote_ip 10.8.0.130 137903 username khademi 137903 kill_reason Another user logged on this global unique id 137903 mac 137903 bytes_out 0 137903 bytes_in 0 137903 station_ip 113.203.70.160 137903 port 326 137903 unique_id port 137906 username amir 137906 mac 137906 bytes_out 0 137906 bytes_in 0 137906 station_ip 37.129.144.161 137906 port 200 137906 unique_id port 137906 remote_ip 10.8.1.22 137908 username amir 137908 mac 137908 bytes_out 0 137908 bytes_in 0 137908 station_ip 37.129.144.161 137908 port 200 137908 unique_id port 137908 remote_ip 10.8.1.22 137911 username amir 137911 mac 137911 bytes_out 93730 137911 bytes_in 388960 137911 station_ip 37.129.144.161 137911 port 324 137911 unique_id port 137911 remote_ip 10.8.0.50 137914 username aminvpn 137914 unique_id port 137914 terminate_cause Lost-Carrier 137914 bytes_out 8144740 137914 bytes_in 52089228 137914 station_ip 5.119.233.63 137914 port 15730592 137914 nas_port_type Virtual 137914 remote_ip 5.5.5.246 137916 username amir 137916 mac 137916 bytes_out 17432 137916 bytes_in 63543 137916 station_ip 37.129.144.161 137916 port 200 137916 unique_id port 137916 remote_ip 10.8.1.22 137920 username amir 137920 mac 137920 bytes_out 0 137920 bytes_in 0 137920 station_ip 37.129.144.161 137920 port 200 137920 unique_id port 137920 remote_ip 10.8.1.22 137923 username amir 137923 mac 137923 bytes_out 0 137923 bytes_in 0 137923 station_ip 37.129.144.161 137923 port 205 137923 unique_id port 137923 remote_ip 10.8.1.22 137924 username khademi 137924 kill_reason Another user logged on this global unique id 137924 mac 137924 bytes_out 0 137924 bytes_in 0 137924 station_ip 113.203.70.160 137924 port 326 137924 unique_id port 137931 username khademi 137931 kill_reason Another user logged on this global unique id 137931 mac 137931 bytes_out 0 137931 bytes_in 0 137931 station_ip 113.203.70.160 137931 port 326 137931 unique_id port 137928 mac 137928 bytes_out 0 137928 bytes_in 0 137928 station_ip 37.129.144.161 137928 port 206 137928 unique_id port 137928 remote_ip 10.8.1.22 137929 username amir 137929 mac 137929 bytes_out 0 137929 bytes_in 0 137929 station_ip 37.129.144.161 137929 port 205 137929 unique_id port 137929 remote_ip 10.8.1.22 137930 username mehdizare 137930 mac 137930 bytes_out 87437 137930 bytes_in 38378 137930 station_ip 5.120.148.206 137930 port 327 137930 unique_id port 137930 remote_ip 10.8.0.90 137939 username alihosseini1 137939 mac 137939 bytes_out 0 137939 bytes_in 0 137939 station_ip 5.119.50.105 137939 port 312 137939 unique_id port 137939 remote_ip 10.8.0.166 137942 username hamid 137942 kill_reason Another user logged on this global unique id 137942 mac 137942 bytes_out 0 137942 bytes_in 0 137942 station_ip 83.122.117.97 137942 port 299 137942 unique_id port 137942 remote_ip 10.8.0.106 137943 username amir 137943 mac 137943 bytes_out 20210 137943 bytes_in 118539 137943 station_ip 37.129.144.161 137943 port 332 137943 unique_id port 137943 remote_ip 10.8.0.50 137947 username alikomsari 137947 mac 137947 bytes_out 0 137947 bytes_in 0 137947 station_ip 5.119.219.202 137947 port 336 137947 unique_id port 137949 username amir 137949 mac 137949 bytes_out 0 137949 bytes_in 0 137949 station_ip 37.129.144.161 137949 port 327 137949 unique_id port 137949 remote_ip 10.8.0.50 137951 username mehdizare 137951 mac 137951 bytes_out 0 137951 bytes_in 0 137951 station_ip 5.120.148.206 137951 port 205 137951 unique_id port 137951 remote_ip 10.8.1.42 137953 username barzegar 137953 mac 137953 bytes_out 152868 137953 bytes_in 1368868 137953 station_ip 5.119.185.96 137953 port 201 137953 unique_id port 137953 remote_ip 10.8.1.174 137957 username amir 137957 mac 137957 bytes_out 0 137957 bytes_in 0 137957 station_ip 37.129.144.161 137957 port 331 137957 unique_id port 137957 remote_ip 10.8.0.50 137964 username amir 137964 mac 137964 bytes_out 0 137964 bytes_in 0 137964 station_ip 37.129.144.161 137964 port 200 137964 unique_id port 137964 remote_ip 10.8.1.22 137965 username alikomsari 137965 mac 137965 bytes_out 0 137965 bytes_in 0 137965 station_ip 5.119.219.202 137965 port 206 137965 unique_id port 137965 remote_ip 10.8.1.14 137967 username mehdizare 137967 mac 137967 bytes_out 0 137967 bytes_in 0 137967 station_ip 5.120.148.206 137967 port 327 137967 unique_id port 137967 remote_ip 10.8.0.90 137968 username alirezazadeh 137968 unique_id port 137968 terminate_cause Lost-Carrier 137968 bytes_out 1856156 137968 bytes_in 32468867 137968 station_ip 5.119.80.216 137968 port 15730601 137968 nas_port_type Virtual 137968 remote_ip 5.5.5.248 137970 username amir 137970 mac 137970 bytes_out 0 137970 bytes_in 0 137970 station_ip 37.129.144.161 137970 port 324 137970 unique_id port 137970 remote_ip 10.8.0.50 137971 username amir 137971 mac 137971 bytes_out 0 137971 bytes_in 0 137971 station_ip 37.129.144.161 137971 port 206 137971 unique_id port 137971 remote_ip 10.8.1.22 137972 username barzegar 137972 mac 137972 bytes_out 0 137972 bytes_in 0 137972 station_ip 5.119.185.96 137972 port 201 137972 unique_id port 137972 remote_ip 10.8.1.174 137975 username aminvpn 137975 unique_id port 137975 terminate_cause Lost-Carrier 137975 bytes_out 9451305 137975 bytes_in 177254192 137975 station_ip 5.120.23.60 137975 port 15730585 137975 nas_port_type Virtual 137975 remote_ip 5.5.5.253 137981 username yaghobi 137932 unique_id port 137932 remote_ip 10.8.1.106 137934 username amir 137934 mac 137934 bytes_out 27216 137934 bytes_in 80363 137934 station_ip 37.129.144.161 137934 port 332 137934 unique_id port 137934 remote_ip 10.8.0.50 137935 username sabaghnezhad 137935 mac 137935 bytes_out 13094 137935 bytes_in 18033 137935 station_ip 5.217.80.240 137935 port 200 137935 unique_id port 137935 remote_ip 10.8.1.130 137937 username farhad2 137937 mac 137937 bytes_out 409185 137937 bytes_in 1615838 137937 station_ip 5.119.251.43 137937 port 312 137937 unique_id port 137937 remote_ip 10.8.0.190 137940 username houshang 137940 mac 137940 bytes_out 1088033 137940 bytes_in 5726470 137940 station_ip 5.119.178.87 137940 port 331 137940 unique_id port 137940 remote_ip 10.8.0.22 137944 username farhad2 137944 mac 137944 bytes_out 0 137944 bytes_in 0 137944 station_ip 5.119.251.43 137944 port 200 137944 unique_id port 137944 remote_ip 10.8.1.222 137946 username barzegar 137946 mac 137946 bytes_out 29195 137946 bytes_in 66228 137946 station_ip 5.119.185.96 137946 port 327 137946 unique_id port 137946 remote_ip 10.8.0.234 137950 username hamid 137950 mac 137950 bytes_out 0 137950 bytes_in 0 137950 station_ip 83.122.117.97 137950 port 299 137950 unique_id port 137954 username farhad2 137954 mac 137954 bytes_out 0 137954 bytes_in 0 137954 station_ip 5.119.251.43 137954 port 200 137954 unique_id port 137954 remote_ip 10.8.1.222 137956 username godarzi 137956 mac 137956 bytes_out 919556 137956 bytes_in 8854429 137956 station_ip 5.120.38.180 137956 port 324 137956 unique_id port 137956 remote_ip 10.8.0.174 137958 username houshang 137958 mac 137958 bytes_out 0 137958 bytes_in 0 137958 station_ip 5.120.169.195 137958 port 324 137958 unique_id port 137958 remote_ip 10.8.0.22 137961 username mehdizare 137961 mac 137961 bytes_out 0 137961 bytes_in 0 137961 station_ip 5.120.148.206 137961 port 327 137961 unique_id port 137961 remote_ip 10.8.0.90 137962 username amir 137962 mac 137962 bytes_out 15072 137962 bytes_in 52978 137962 station_ip 37.129.144.161 137962 port 324 137962 unique_id port 137962 remote_ip 10.8.0.50 137966 username amir 137966 mac 137966 bytes_out 21182 137966 bytes_in 157207 137966 station_ip 37.129.144.161 137966 port 299 137966 unique_id port 137966 remote_ip 10.8.0.50 137969 username amir 137969 mac 137969 bytes_out 0 137969 bytes_in 0 137969 station_ip 37.129.144.161 137969 port 206 137969 unique_id port 137969 remote_ip 10.8.1.22 137974 username mosi 137974 kill_reason Another user logged on this global unique id 137974 mac 137974 bytes_out 0 137974 bytes_in 0 137974 station_ip 151.235.75.185 137974 port 331 137974 unique_id port 137974 remote_ip 10.8.0.138 137976 username houshang 137976 mac 137976 bytes_out 48884 137976 bytes_in 86602 137976 station_ip 5.120.169.195 137976 port 324 137976 unique_id port 137976 remote_ip 10.8.0.22 137978 username yaghobi 137978 mac 137978 bytes_out 0 137978 bytes_in 0 137978 station_ip 83.122.106.224 137978 port 324 137978 unique_id port 137978 remote_ip 10.8.0.198 137980 username amir 137980 mac 137980 bytes_out 0 137980 bytes_in 0 137980 station_ip 37.129.144.161 137980 port 201 137980 unique_id port 137980 remote_ip 10.8.1.22 137982 username amir 137982 mac 137982 bytes_out 0 137982 bytes_in 0 137982 station_ip 37.129.144.161 137982 port 299 137982 unique_id port 137982 remote_ip 10.8.0.50 137933 username barzegar 137933 mac 137933 bytes_out 0 137933 bytes_in 0 137933 station_ip 5.119.185.96 137933 port 327 137933 unique_id port 137933 remote_ip 10.8.0.234 137936 username amir 137936 mac 137936 bytes_out 0 137936 bytes_in 0 137936 station_ip 37.129.144.161 137936 port 327 137936 unique_id port 137936 remote_ip 10.8.0.50 137938 username amir 137938 mac 137938 bytes_out 0 137938 bytes_in 0 137938 station_ip 37.129.144.161 137938 port 312 137938 unique_id port 137938 remote_ip 10.8.0.50 137941 username farhad2 137941 mac 137941 bytes_out 0 137941 bytes_in 0 137941 station_ip 5.119.251.43 137941 port 200 137941 unique_id port 137941 remote_ip 10.8.1.222 137945 username alihosseini1 137945 mac 137945 bytes_out 0 137945 bytes_in 0 137945 station_ip 5.119.50.105 137945 port 312 137945 unique_id port 137945 remote_ip 10.8.0.166 137948 username amir 137948 mac 137948 bytes_out 0 137948 bytes_in 0 137948 station_ip 37.129.144.161 137948 port 331 137948 unique_id port 137948 remote_ip 10.8.0.50 137952 username mehdizare 137952 mac 137952 bytes_out 0 137952 bytes_in 0 137952 station_ip 5.120.148.206 137952 port 299 137952 unique_id port 137952 remote_ip 10.8.0.90 137955 username amir 137955 mac 137955 bytes_out 41221 137955 bytes_in 217590 137955 station_ip 37.129.144.161 137955 port 205 137955 unique_id port 137955 remote_ip 10.8.1.22 137959 username amir 137959 mac 137959 bytes_out 19854 137959 bytes_in 67283 137959 station_ip 37.129.144.161 137959 port 200 137959 unique_id port 137959 remote_ip 10.8.1.22 137960 username farhad2 137960 mac 137960 bytes_out 152356 137960 bytes_in 553210 137960 station_ip 5.119.251.43 137960 port 201 137960 unique_id port 137960 remote_ip 10.8.1.222 137963 username mohammadjavad 137963 mac 137963 bytes_out 594003 137963 bytes_in 6020143 137963 station_ip 83.123.228.89 137963 port 299 137963 unique_id port 137963 remote_ip 10.8.0.142 137973 username amir 137973 mac 137973 bytes_out 0 137973 bytes_in 0 137973 station_ip 37.129.144.161 137973 port 206 137973 unique_id port 137973 remote_ip 10.8.1.22 137977 username godarzi 137977 mac 137977 bytes_out 0 137977 bytes_in 0 137977 station_ip 5.120.38.180 137977 port 299 137977 unique_id port 137977 remote_ip 10.8.0.174 137979 username amir 137979 mac 137979 bytes_out 0 137979 bytes_in 0 137979 station_ip 37.129.144.161 137979 port 201 137979 unique_id port 137979 remote_ip 10.8.1.22 137983 username amir 137983 mac 137983 bytes_out 0 137983 bytes_in 0 137983 station_ip 37.129.144.161 137983 port 299 137983 unique_id port 137983 remote_ip 10.8.0.50 137985 username mohammadjavad 137985 mac 137985 bytes_out 923687 137985 bytes_in 15438333 137985 station_ip 83.123.8.94 137985 port 324 137985 unique_id port 137985 remote_ip 10.8.0.142 137988 username amir 137988 mac 137988 bytes_out 45720 137988 bytes_in 175451 137988 station_ip 37.129.144.161 137988 port 208 137988 unique_id port 137988 remote_ip 10.8.1.22 137989 username barzegar 137989 mac 137989 bytes_out 0 137989 bytes_in 0 137989 station_ip 5.119.185.96 137989 port 201 137989 unique_id port 137989 remote_ip 10.8.1.174 137991 username amir 137991 mac 137991 bytes_out 0 137991 bytes_in 0 137991 station_ip 37.129.144.161 137991 port 206 137991 unique_id port 137991 remote_ip 10.8.1.22 137992 username amir 137992 mac 137992 bytes_out 0 137992 bytes_in 0 137981 mac 137981 bytes_out 60002 137981 bytes_in 565764 137981 station_ip 83.122.106.224 137981 port 299 137981 unique_id port 137981 remote_ip 10.8.0.198 137984 username amir 137984 mac 137984 bytes_out 17202 137984 bytes_in 82771 137984 station_ip 37.129.144.161 137984 port 299 137984 unique_id port 137984 remote_ip 10.8.0.50 137986 username mohammadjavad 137986 mac 137986 bytes_out 0 137986 bytes_in 0 137986 station_ip 83.123.8.94 137986 port 206 137986 unique_id port 137986 remote_ip 10.8.1.146 137990 username mosi 137990 kill_reason Another user logged on this global unique id 137990 mac 137990 bytes_out 0 137990 bytes_in 0 137990 station_ip 151.235.75.185 137990 port 331 137990 unique_id port 137994 username vanila 137994 mac 137994 bytes_out 9774383 137994 bytes_in 11520720 137994 station_ip 83.123.231.165 137994 port 205 137994 unique_id port 137994 remote_ip 10.8.1.74 137997 username godarzi 137997 mac 137997 bytes_out 362151 137997 bytes_in 3857484 137997 station_ip 5.120.38.180 137997 port 299 137997 unique_id port 137997 remote_ip 10.8.0.174 138001 username alihosseini1 138001 mac 138001 bytes_out 26427535 138001 bytes_in 9627919 138001 station_ip 5.119.50.105 138001 port 312 138001 unique_id port 138001 remote_ip 10.8.0.166 138004 username amir 138004 mac 138004 bytes_out 15572 138004 bytes_in 66871 138004 station_ip 37.129.144.161 138004 port 312 138004 unique_id port 138004 remote_ip 10.8.0.50 138006 username mosi 138006 kill_reason Another user logged on this global unique id 138006 mac 138006 bytes_out 0 138006 bytes_in 0 138006 station_ip 151.235.75.185 138006 port 331 138006 unique_id port 138008 username barzegar 138008 mac 138008 bytes_out 0 138008 bytes_in 0 138008 station_ip 5.119.185.96 138008 port 200 138008 unique_id port 138008 remote_ip 10.8.1.174 138009 username godarzi 138009 mac 138009 bytes_out 0 138009 bytes_in 0 138009 station_ip 5.120.38.180 138009 port 337 138009 unique_id port 138009 remote_ip 10.8.0.174 138013 username forozandeh1 138013 mac 138013 bytes_out 43425 138013 bytes_in 46941 138013 station_ip 83.123.215.10 138013 port 324 138013 unique_id port 138013 remote_ip 10.8.0.130 138015 username amir 138015 mac 138015 bytes_out 0 138015 bytes_in 0 138015 station_ip 37.129.144.161 138015 port 200 138015 unique_id port 138015 remote_ip 10.8.1.22 138017 username meysam 138017 kill_reason Another user logged on this global unique id 138017 mac 138017 bytes_out 0 138017 bytes_in 0 138017 station_ip 188.158.49.57 138017 port 336 138017 unique_id port 138017 remote_ip 10.8.0.110 138019 username amir 138019 mac 138019 bytes_out 0 138019 bytes_in 0 138019 station_ip 37.129.144.161 138019 port 200 138019 unique_id port 138019 remote_ip 10.8.1.22 138020 username alipour 138020 mac 138020 bytes_out 26149 138020 bytes_in 27160 138020 station_ip 113.203.112.25 138020 port 299 138020 unique_id port 138020 remote_ip 10.8.0.102 138021 username amir 138021 mac 138021 bytes_out 0 138021 bytes_in 0 138021 station_ip 37.129.144.161 138021 port 200 138021 unique_id port 138021 remote_ip 10.8.1.22 138024 username houshang 138024 mac 138024 bytes_out 59415 138024 bytes_in 82317 138024 station_ip 5.120.169.195 138024 port 299 138024 unique_id port 138024 remote_ip 10.8.0.22 138027 username jafari 138027 kill_reason Another user logged on this global unique id 138027 mac 138027 bytes_out 0 138027 bytes_in 0 138027 station_ip 5.134.155.101 138027 port 332 138027 unique_id port 137987 username sabaghnezhad 137987 mac 137987 bytes_out 36891 137987 bytes_in 40701 137987 station_ip 5.217.23.131 137987 port 332 137987 unique_id port 137987 remote_ip 10.8.0.186 137995 username yahodi 137995 mac 137995 bytes_out 507505 137995 bytes_in 7128011 137995 station_ip 83.122.111.57 137995 port 324 137995 unique_id port 137995 remote_ip 10.8.0.202 137998 username amir 137998 mac 137998 bytes_out 0 137998 bytes_in 0 137998 station_ip 37.129.144.161 137998 port 324 137998 unique_id port 137998 remote_ip 10.8.0.50 138000 username yaghobi 138000 mac 138000 bytes_out 1930282 138000 bytes_in 26766133 138000 station_ip 83.122.106.224 138000 port 327 138000 unique_id port 138000 remote_ip 10.8.0.198 138002 username amir 138002 mac 138002 bytes_out 0 138002 bytes_in 0 138002 station_ip 37.129.144.161 138002 port 324 138002 unique_id port 138002 remote_ip 10.8.0.50 138010 username yahodi 138010 mac 138010 bytes_out 0 138010 bytes_in 0 138010 station_ip 83.122.111.57 138010 port 339 138010 unique_id port 138010 remote_ip 10.8.0.202 138012 username amir 138012 mac 138012 bytes_out 20918 138012 bytes_in 103525 138012 station_ip 37.129.144.161 138012 port 312 138012 unique_id port 138012 remote_ip 10.8.0.50 138016 username yaghobi 138016 mac 138016 bytes_out 0 138016 bytes_in 0 138016 station_ip 83.122.106.224 138016 port 299 138016 unique_id port 138016 remote_ip 10.8.0.198 138023 username amir 138023 mac 138023 bytes_out 0 138023 bytes_in 0 138023 station_ip 37.129.144.161 138023 port 200 138023 unique_id port 138023 remote_ip 10.8.1.22 138025 username alikomsari 138025 mac 138025 bytes_out 0 138025 bytes_in 0 138025 station_ip 5.120.101.87 138025 port 201 138025 unique_id port 138025 remote_ip 10.8.1.14 138026 username amir 138026 mac 138026 bytes_out 26444 138026 bytes_in 88375 138026 station_ip 37.129.144.161 138026 port 200 138026 unique_id port 138026 remote_ip 10.8.1.22 138029 username amir 138029 mac 138029 bytes_out 0 138029 bytes_in 0 138029 station_ip 37.129.144.161 138029 port 200 138029 unique_id port 138029 remote_ip 10.8.1.22 138034 username amir 138034 mac 138034 bytes_out 49130 138034 bytes_in 214221 138034 station_ip 37.129.144.161 138034 port 312 138034 unique_id port 138034 remote_ip 10.8.0.50 138036 username alikomsari 138036 mac 138036 bytes_out 138196 138036 bytes_in 276987 138036 station_ip 5.119.3.185 138036 port 330 138036 unique_id port 138036 remote_ip 10.8.0.70 138038 username amir 138038 mac 138038 bytes_out 12516 138038 bytes_in 39620 138038 station_ip 37.129.144.161 138038 port 312 138038 unique_id port 138038 remote_ip 10.8.0.50 138041 username barzegar 138041 mac 138041 bytes_out 18309 138041 bytes_in 46533 138041 station_ip 5.119.185.96 138041 port 327 138041 unique_id port 138041 remote_ip 10.8.0.234 138042 username amir 138042 mac 138042 bytes_out 0 138042 bytes_in 0 138042 station_ip 37.129.144.161 138042 port 200 138042 unique_id port 138042 remote_ip 10.8.1.22 138043 username barzegar 138043 mac 138043 bytes_out 0 138043 bytes_in 0 138043 station_ip 5.119.185.96 138043 port 200 138043 unique_id port 138043 remote_ip 10.8.1.174 138044 username amir 138044 mac 138044 bytes_out 0 138044 bytes_in 0 138044 station_ip 37.129.144.161 138044 port 201 138044 unique_id port 138044 remote_ip 10.8.1.22 138047 username meysam 138047 mac 138047 bytes_out 0 138047 bytes_in 0 137992 station_ip 37.129.144.161 137992 port 201 137992 unique_id port 137992 remote_ip 10.8.1.22 137993 username barzegar 137993 mac 137993 bytes_out 4881 137993 bytes_in 5790 137993 station_ip 5.119.185.96 137993 port 332 137993 unique_id port 137993 remote_ip 10.8.0.234 137996 username amin.saeedi 137996 unique_id port 137996 terminate_cause User-Request 137996 bytes_out 1902666 137996 bytes_in 34786278 137996 station_ip 5.119.60.119 137996 port 15730598 137996 nas_port_type Virtual 137996 remote_ip 5.5.5.251 137999 username farhad2 137999 mac 137999 bytes_out 0 137999 bytes_in 0 137999 station_ip 5.119.251.43 137999 port 200 137999 unique_id port 137999 remote_ip 10.8.1.222 138003 username vanila 138003 mac 138003 bytes_out 0 138003 bytes_in 0 138003 station_ip 83.123.231.165 138003 port 332 138003 unique_id port 138003 remote_ip 10.8.0.178 138005 username yahodi 138005 mac 138005 bytes_out 265272 138005 bytes_in 2962729 138005 station_ip 83.122.111.57 138005 port 324 138005 unique_id port 138005 remote_ip 10.8.0.202 138007 username amir 138007 mac 138007 bytes_out 0 138007 bytes_in 0 138007 station_ip 37.129.144.161 138007 port 312 138007 unique_id port 138007 remote_ip 10.8.0.50 138011 username farhad2 138011 mac 138011 bytes_out 0 138011 bytes_in 0 138011 station_ip 5.119.251.43 138011 port 338 138011 unique_id port 138011 remote_ip 10.8.0.190 138014 username saeed9658 138014 mac 138014 bytes_out 1922331 138014 bytes_in 24786728 138014 station_ip 5.119.176.209 138014 port 327 138014 unique_id port 138014 remote_ip 10.8.0.62 138018 username alipour 138018 mac 138018 bytes_out 0 138018 bytes_in 0 138018 station_ip 113.203.112.25 138018 port 330 138018 unique_id port 138018 remote_ip 10.8.0.102 138022 username alikomsari 138022 mac 138022 bytes_out 906341 138022 bytes_in 4898276 138022 station_ip 5.120.101.87 138022 port 334 138022 unique_id port 138022 remote_ip 10.8.0.70 138031 username barzegar 138031 mac 138031 bytes_out 0 138031 bytes_in 0 138031 station_ip 5.119.185.96 138031 port 200 138031 unique_id port 138031 remote_ip 10.8.1.174 138032 username meysam 138032 kill_reason Another user logged on this global unique id 138032 mac 138032 bytes_out 0 138032 bytes_in 0 138032 station_ip 188.158.49.57 138032 port 336 138032 unique_id port 138033 username mehrpouyan 138033 mac 138033 bytes_out 0 138033 bytes_in 0 138033 station_ip 5.119.106.196 138033 port 299 138033 unique_id port 138033 remote_ip 10.8.0.74 138037 username vanila 138037 mac 138037 bytes_out 502584 138037 bytes_in 6157758 138037 station_ip 83.123.231.165 138037 port 327 138037 unique_id port 138037 remote_ip 10.8.0.178 138039 username mohammadjavad 138039 mac 138039 bytes_out 0 138039 bytes_in 0 138039 station_ip 83.123.0.253 138039 port 200 138039 unique_id port 138039 remote_ip 10.8.1.146 138050 username barzegar 138050 mac 138050 bytes_out 0 138050 bytes_in 0 138050 station_ip 5.119.185.96 138050 port 336 138050 unique_id port 138050 remote_ip 10.8.0.234 138053 username morteza 138053 kill_reason Another user logged on this global unique id 138053 mac 138053 bytes_out 0 138053 bytes_in 0 138053 station_ip 83.122.214.216 138053 port 335 138053 unique_id port 138053 remote_ip 10.8.0.46 138056 username amir 138056 mac 138056 bytes_out 0 138056 bytes_in 0 138056 station_ip 37.129.144.161 138056 port 336 138056 unique_id port 138056 remote_ip 10.8.0.50 138057 username vanila 138057 mac 138057 bytes_out 3179148 138027 remote_ip 10.8.0.242 138028 username vanila 138028 mac 138028 bytes_out 8498798 138028 bytes_in 1053344 138028 station_ip 83.123.231.165 138028 port 312 138028 unique_id port 138028 remote_ip 10.8.0.178 138030 username alihosseini1 138030 mac 138030 bytes_out 2837674 138030 bytes_in 538834 138030 station_ip 5.119.50.105 138030 port 335 138030 unique_id port 138030 remote_ip 10.8.0.166 138035 username barzegar 138035 mac 138035 bytes_out 0 138035 bytes_in 0 138035 station_ip 5.119.185.96 138035 port 201 138035 unique_id port 138035 remote_ip 10.8.1.174 138040 username amir 138040 mac 138040 bytes_out 0 138040 bytes_in 0 138040 station_ip 37.129.144.161 138040 port 312 138040 unique_id port 138040 remote_ip 10.8.0.50 138045 username mehrpouyan 138045 mac 138045 bytes_out 0 138045 bytes_in 0 138045 station_ip 5.119.210.59 138045 port 299 138045 unique_id port 138045 remote_ip 10.8.0.74 138046 username amir 138046 mac 138046 bytes_out 0 138046 bytes_in 0 138046 station_ip 37.129.144.161 138046 port 299 138046 unique_id port 138046 remote_ip 10.8.0.50 138048 username amir 138048 mac 138048 bytes_out 0 138048 bytes_in 0 138048 station_ip 37.129.144.161 138048 port 200 138048 unique_id port 138048 remote_ip 10.8.1.22 138054 username mehrpouyan 138054 mac 138054 bytes_out 0 138054 bytes_in 0 138054 station_ip 5.119.11.107 138054 port 337 138054 unique_id port 138054 remote_ip 10.8.0.74 138058 username mehdizare 138058 mac 138058 bytes_out 0 138058 bytes_in 0 138058 station_ip 5.120.148.206 138058 port 207 138058 unique_id port 138058 remote_ip 10.8.1.42 138059 username amir 138059 mac 138059 bytes_out 13606 138059 bytes_in 63752 138059 station_ip 37.129.144.161 138059 port 327 138059 unique_id port 138059 remote_ip 10.8.0.50 138072 username mostafa_es78 138072 unique_id port 138072 terminate_cause User-Request 138072 bytes_out 611990 138072 bytes_in 6731056 138072 station_ip 5.119.190.143 138072 port 15730602 138072 nas_port_type Virtual 138072 remote_ip 5.5.5.222 138073 username godarzi 138073 mac 138073 bytes_out 125992 138073 bytes_in 607388 138073 station_ip 5.120.38.180 138073 port 330 138073 unique_id port 138073 remote_ip 10.8.0.174 138077 username meysam 138077 mac 138077 bytes_out 471743 138077 bytes_in 5816324 138077 station_ip 5.119.118.65 138077 port 332 138077 unique_id port 138077 remote_ip 10.8.0.110 138080 username barzegar 138080 mac 138080 bytes_out 0 138080 bytes_in 0 138080 station_ip 5.119.185.96 138080 port 330 138080 unique_id port 138080 remote_ip 10.8.0.234 138086 username amir 138086 mac 138086 bytes_out 111100 138086 bytes_in 122784 138086 station_ip 37.129.144.161 138086 port 299 138086 unique_id port 138086 remote_ip 10.8.0.50 138088 username amir 138088 mac 138088 bytes_out 0 138088 bytes_in 0 138088 station_ip 37.129.144.161 138088 port 205 138088 unique_id port 138088 remote_ip 10.8.1.22 138095 username mehrpouyan 138095 mac 138095 bytes_out 196139 138095 bytes_in 1079106 138095 station_ip 5.119.51.38 138095 port 332 138095 unique_id port 138095 remote_ip 10.8.0.74 138101 username farhad2 138101 mac 138101 bytes_out 0 138101 bytes_in 0 138101 station_ip 5.119.15.53 138101 port 330 138101 unique_id port 138101 remote_ip 10.8.0.190 138105 username amir 138105 mac 138105 bytes_out 0 138105 bytes_in 0 138105 station_ip 37.129.144.161 138105 port 201 138105 unique_id port 138105 remote_ip 10.8.1.22 138047 station_ip 188.158.49.57 138047 port 336 138047 unique_id port 138049 username godarzi 138049 mac 138049 bytes_out 0 138049 bytes_in 0 138049 station_ip 5.120.38.180 138049 port 327 138049 unique_id port 138049 remote_ip 10.8.0.174 138051 username forozandeh1 138051 mac 138051 bytes_out 654404 138051 bytes_in 3160094 138051 station_ip 83.122.201.30 138051 port 312 138051 unique_id port 138051 remote_ip 10.8.0.130 138052 username amir 138052 mac 138052 bytes_out 0 138052 bytes_in 0 138052 station_ip 37.129.144.161 138052 port 200 138052 unique_id port 138052 remote_ip 10.8.1.22 138055 username barzegar 138055 mac 138055 bytes_out 0 138055 bytes_in 0 138055 station_ip 5.119.185.96 138055 port 327 138055 unique_id port 138055 remote_ip 10.8.0.234 138060 username amir 138060 mac 138060 bytes_out 20041 138060 bytes_in 78611 138060 station_ip 37.129.144.161 138060 port 327 138060 unique_id port 138060 remote_ip 10.8.0.50 138061 username mehrpouyan 138061 mac 138061 bytes_out 361329 138061 bytes_in 1201306 138061 station_ip 5.119.224.42 138061 port 312 138061 unique_id port 138061 remote_ip 10.8.0.74 138065 username barzegar 138065 mac 138065 bytes_out 0 138065 bytes_in 0 138065 station_ip 5.119.185.96 138065 port 299 138065 unique_id port 138065 remote_ip 10.8.0.234 138067 username mehrpouyan 138067 mac 138067 bytes_out 174459 138067 bytes_in 1221261 138067 station_ip 5.120.10.54 138067 port 337 138067 unique_id port 138067 remote_ip 10.8.0.74 138068 username arabpour 138068 kill_reason Relative expiration date has reached 138068 unique_id port 138068 bytes_out 0 138068 bytes_in 0 138068 station_ip 83.122.147.104 138068 port 15730606 138068 nas_port_type Virtual 138069 username barzegar 138069 mac 138069 bytes_out 0 138069 bytes_in 0 138069 station_ip 5.119.185.96 138069 port 330 138069 unique_id port 138069 remote_ip 10.8.0.234 138071 username amir 138071 mac 138071 bytes_out 0 138071 bytes_in 0 138071 station_ip 37.129.144.161 138071 port 312 138071 unique_id port 138071 remote_ip 10.8.0.50 138075 username jafari 138075 mac 138075 bytes_out 603185 138075 bytes_in 5099401 138075 station_ip 5.134.155.101 138075 port 312 138075 unique_id port 138075 remote_ip 10.8.0.242 138078 username amir 138078 mac 138078 bytes_out 0 138078 bytes_in 0 138078 station_ip 37.129.144.161 138078 port 201 138078 unique_id port 138078 remote_ip 10.8.1.22 138081 username amir 138081 mac 138081 bytes_out 127457 138081 bytes_in 229091 138081 station_ip 37.129.144.161 138081 port 299 138081 unique_id port 138081 remote_ip 10.8.0.50 138083 username barzegar 138083 mac 138083 bytes_out 0 138083 bytes_in 0 138083 station_ip 5.119.185.96 138083 port 312 138083 unique_id port 138083 remote_ip 10.8.0.234 138090 username barzegar 138090 mac 138090 bytes_out 0 138090 bytes_in 0 138090 station_ip 5.119.185.96 138090 port 312 138090 unique_id port 138090 remote_ip 10.8.0.234 138094 username farhad2 138094 mac 138094 bytes_out 450561 138094 bytes_in 7494908 138094 station_ip 5.119.15.53 138094 port 312 138094 unique_id port 138094 remote_ip 10.8.0.190 138096 username amir 138096 mac 138096 bytes_out 105049 138096 bytes_in 157748 138096 station_ip 37.129.144.161 138096 port 330 138096 unique_id port 138096 remote_ip 10.8.0.50 138097 username farhad2 138097 mac 138097 bytes_out 0 138097 bytes_in 0 138097 station_ip 5.119.15.53 138097 port 327 138097 unique_id port 138057 bytes_in 1746623 138057 station_ip 83.123.231.165 138057 port 330 138057 unique_id port 138057 remote_ip 10.8.0.178 138062 username mosi 138062 kill_reason Another user logged on this global unique id 138062 mac 138062 bytes_out 0 138062 bytes_in 0 138062 station_ip 151.235.75.185 138062 port 331 138062 unique_id port 138063 username amir 138063 mac 138063 bytes_out 12339 138063 bytes_in 40375 138063 station_ip 37.129.144.161 138063 port 330 138063 unique_id port 138063 remote_ip 10.8.0.50 138064 username houshang 138064 mac 138064 bytes_out 1424171 138064 bytes_in 9701149 138064 station_ip 5.120.169.195 138064 port 299 138064 unique_id port 138064 remote_ip 10.8.0.22 138066 username amir 138066 mac 138066 bytes_out 19849 138066 bytes_in 128681 138066 station_ip 37.129.144.161 138066 port 312 138066 unique_id port 138066 remote_ip 10.8.0.50 138070 username jafari 138070 mac 138070 bytes_out 0 138070 bytes_in 0 138070 station_ip 5.134.155.101 138070 port 332 138070 unique_id port 138074 username mehrpouyan 138074 mac 138074 bytes_out 0 138074 bytes_in 0 138074 station_ip 5.120.37.152 138074 port 299 138074 unique_id port 138074 remote_ip 10.8.0.74 138076 username amir 138076 mac 138076 bytes_out 419240 138076 bytes_in 773815 138076 station_ip 37.129.144.161 138076 port 201 138076 unique_id port 138076 remote_ip 10.8.1.22 138079 username morteza 138079 mac 138079 bytes_out 0 138079 bytes_in 0 138079 station_ip 83.122.214.216 138079 port 335 138079 unique_id port 138082 username mahdiyehalizadeh 138082 mac 138082 bytes_out 58936 138082 bytes_in 333869 138082 station_ip 83.122.78.250 138082 port 312 138082 unique_id port 138082 remote_ip 10.8.0.82 138084 username mosi 138084 kill_reason Another user logged on this global unique id 138084 mac 138084 bytes_out 0 138084 bytes_in 0 138084 station_ip 151.235.75.185 138084 port 331 138084 unique_id port 138085 username mehrpouyan 138085 mac 138085 bytes_out 292980 138085 bytes_in 1169955 138085 station_ip 5.120.30.50 138085 port 337 138085 unique_id port 138085 remote_ip 10.8.0.74 138087 username amir 138087 mac 138087 bytes_out 0 138087 bytes_in 0 138087 station_ip 37.129.144.161 138087 port 299 138087 unique_id port 138087 remote_ip 10.8.0.50 138089 username farhad2 138089 mac 138089 bytes_out 474030 138089 bytes_in 3565717 138089 station_ip 5.119.15.53 138089 port 312 138089 unique_id port 138089 remote_ip 10.8.0.190 138091 username mahdiyehalizadeh 138091 mac 138091 bytes_out 61029 138091 bytes_in 152566 138091 station_ip 83.122.78.250 138091 port 330 138091 unique_id port 138091 remote_ip 10.8.0.82 138092 username amir 138092 mac 138092 bytes_out 0 138092 bytes_in 0 138092 station_ip 37.129.144.161 138092 port 205 138092 unique_id port 138092 remote_ip 10.8.1.22 138093 username vanila 138093 mac 138093 bytes_out 11306783 138093 bytes_in 25197284 138093 station_ip 83.123.231.165 138093 port 327 138093 unique_id port 138093 remote_ip 10.8.0.178 138098 username barzegar 138098 mac 138098 bytes_out 0 138098 bytes_in 0 138098 station_ip 5.119.185.96 138098 port 205 138098 unique_id port 138098 remote_ip 10.8.1.174 138100 username amir 138100 mac 138100 bytes_out 1904 138100 bytes_in 4149 138100 station_ip 37.129.144.161 138100 port 330 138100 unique_id port 138100 remote_ip 10.8.0.50 138103 username amir 138103 mac 138103 bytes_out 1636 138103 bytes_in 4983 138103 station_ip 37.129.144.161 138103 port 327 138097 remote_ip 10.8.0.190 138099 username morteza 138099 mac 138099 bytes_out 0 138099 bytes_in 0 138099 station_ip 83.122.214.216 138099 port 201 138099 unique_id port 138099 remote_ip 10.8.1.62 138102 username barzegar 138102 mac 138102 bytes_out 0 138102 bytes_in 0 138102 station_ip 5.119.185.96 138102 port 201 138102 unique_id port 138102 remote_ip 10.8.1.174 138104 username godarzi 138104 mac 138104 bytes_out 59007 138104 bytes_in 202999 138104 station_ip 5.120.38.180 138104 port 299 138104 unique_id port 138104 remote_ip 10.8.0.174 138106 username mehrpouyan 138106 mac 138106 bytes_out 705439 138106 bytes_in 6320032 138106 station_ip 5.119.127.127 138106 port 312 138106 unique_id port 138106 remote_ip 10.8.0.74 138107 username morteza 138107 mac 138107 bytes_out 0 138107 bytes_in 0 138107 station_ip 83.122.214.216 138107 port 330 138107 unique_id port 138107 remote_ip 10.8.0.46 138110 username sekonji3 138110 mac 138110 bytes_out 20249 138110 bytes_in 152837 138110 station_ip 37.129.37.6 138110 port 327 138110 unique_id port 138110 remote_ip 10.8.0.6 138113 username amir 138113 mac 138113 bytes_out 0 138113 bytes_in 0 138113 station_ip 37.129.144.161 138113 port 201 138113 unique_id port 138113 remote_ip 10.8.1.22 138118 username amir 138118 mac 138118 bytes_out 0 138118 bytes_in 0 138118 station_ip 37.129.144.161 138118 port 201 138118 unique_id port 138118 remote_ip 10.8.1.22 138124 username morteza 138124 mac 138124 bytes_out 0 138124 bytes_in 0 138124 station_ip 83.122.214.216 138124 port 205 138124 unique_id port 138124 remote_ip 10.8.1.62 138129 username mehrpouyan 138129 mac 138129 bytes_out 484214 138129 bytes_in 3270734 138129 station_ip 5.119.84.97 138129 port 299 138129 unique_id port 138129 remote_ip 10.8.0.74 138130 username vanila 138130 mac 138130 bytes_out 1693346 138130 bytes_in 2825673 138130 station_ip 83.123.231.165 138130 port 327 138130 unique_id port 138130 remote_ip 10.8.0.178 138133 username mosi 138133 kill_reason Another user logged on this global unique id 138133 mac 138133 bytes_out 0 138133 bytes_in 0 138133 station_ip 151.235.75.185 138133 port 331 138133 unique_id port 138134 username hashtadani3 138134 mac 138134 bytes_out 0 138134 bytes_in 0 138134 station_ip 83.122.122.88 138134 port 299 138134 unique_id port 138134 remote_ip 10.8.0.154 138137 username morteza 138137 mac 138137 bytes_out 0 138137 bytes_in 0 138137 station_ip 83.122.214.216 138137 port 337 138137 unique_id port 138137 remote_ip 10.8.0.46 138144 username hashtadani3 138144 kill_reason Maximum check online fails reached 138144 mac 138144 bytes_out 0 138144 bytes_in 0 138144 station_ip 83.122.122.88 138144 port 299 138144 unique_id port 138148 username amir 138148 mac 138148 bytes_out 0 138148 bytes_in 0 138148 station_ip 37.129.144.161 138148 port 338 138148 unique_id port 138148 remote_ip 10.8.0.50 138151 username morteza 138151 mac 138151 bytes_out 0 138151 bytes_in 0 138151 station_ip 83.122.214.216 138151 port 338 138151 unique_id port 138151 remote_ip 10.8.0.46 138153 username amir 138153 mac 138153 bytes_out 0 138153 bytes_in 0 138153 station_ip 37.129.144.161 138153 port 205 138153 unique_id port 138153 remote_ip 10.8.1.22 138154 username hashtadani3 138154 mac 138154 bytes_out 0 138154 bytes_in 0 138154 station_ip 83.122.122.88 138154 port 201 138154 unique_id port 138154 remote_ip 10.8.1.94 138159 username hashtadani3 138103 unique_id port 138103 remote_ip 10.8.0.50 138109 username amir 138109 mac 138109 bytes_out 0 138109 bytes_in 0 138109 station_ip 37.129.144.161 138109 port 201 138109 unique_id port 138109 remote_ip 10.8.1.22 138111 username barzegar 138111 mac 138111 bytes_out 0 138111 bytes_in 0 138111 station_ip 5.119.185.96 138111 port 205 138111 unique_id port 138111 remote_ip 10.8.1.174 138114 username mehrpouyan 138114 mac 138114 bytes_out 153614 138114 bytes_in 600821 138114 station_ip 5.120.171.173 138114 port 312 138114 unique_id port 138114 remote_ip 10.8.0.74 138115 username farhad2 138115 mac 138115 bytes_out 339485 138115 bytes_in 1527373 138115 station_ip 5.119.15.53 138115 port 299 138115 unique_id port 138115 remote_ip 10.8.0.190 138116 username amir 138116 mac 138116 bytes_out 0 138116 bytes_in 0 138116 station_ip 37.129.144.161 138116 port 201 138116 unique_id port 138116 remote_ip 10.8.1.22 138117 username reza2742 138117 kill_reason Relative expiration date has reached 138117 unique_id port 138117 bytes_out 0 138117 bytes_in 0 138117 station_ip 5.202.135.105 138117 port 15730607 138117 nas_port_type Virtual 138120 username barzegar 138120 mac 138120 bytes_out 0 138120 bytes_in 0 138120 station_ip 5.119.185.96 138120 port 205 138120 unique_id port 138120 remote_ip 10.8.1.174 138121 username amir 138121 mac 138121 bytes_out 0 138121 bytes_in 0 138121 station_ip 37.129.144.161 138121 port 206 138121 unique_id port 138121 remote_ip 10.8.1.22 138125 username amir 138125 mac 138125 bytes_out 0 138125 bytes_in 0 138125 station_ip 37.129.144.161 138125 port 201 138125 unique_id port 138125 remote_ip 10.8.1.22 138126 username amir 138126 mac 138126 bytes_out 0 138126 bytes_in 0 138126 station_ip 37.129.144.161 138126 port 201 138126 unique_id port 138126 remote_ip 10.8.1.22 138139 username mehrpouyan 138139 mac 138139 bytes_out 0 138139 bytes_in 0 138139 station_ip 5.120.134.139 138139 port 340 138139 unique_id port 138139 remote_ip 10.8.0.74 138141 username farhad2 138141 mac 138141 bytes_out 0 138141 bytes_in 0 138141 station_ip 5.120.154.8 138141 port 339 138141 unique_id port 138141 remote_ip 10.8.0.190 138143 username amir 138143 mac 138143 bytes_out 0 138143 bytes_in 0 138143 station_ip 37.129.144.161 138143 port 330 138143 unique_id port 138143 remote_ip 10.8.0.50 138145 username barzegar 138145 mac 138145 bytes_out 0 138145 bytes_in 0 138145 station_ip 5.119.185.96 138145 port 340 138145 unique_id port 138145 remote_ip 10.8.0.234 138147 username morteza 138147 mac 138147 bytes_out 0 138147 bytes_in 0 138147 station_ip 83.122.214.216 138147 port 205 138147 unique_id port 138147 remote_ip 10.8.1.62 138149 username hashtadani3 138149 kill_reason Maximum check online fails reached 138149 mac 138149 bytes_out 0 138149 bytes_in 0 138149 station_ip 83.122.122.88 138149 port 330 138149 unique_id port 138152 username mehdizare 138152 mac 138152 bytes_out 0 138152 bytes_in 0 138152 station_ip 5.120.148.206 138152 port 200 138152 unique_id port 138152 remote_ip 10.8.1.42 138156 username amir 138156 mac 138156 bytes_out 32448 138156 bytes_in 258517 138156 station_ip 37.129.144.161 138156 port 205 138156 unique_id port 138156 remote_ip 10.8.1.22 138157 username barzegar 138157 mac 138157 bytes_out 0 138157 bytes_in 0 138157 station_ip 5.119.185.96 138157 port 201 138157 unique_id port 138157 remote_ip 10.8.1.174 138161 username mehrpouyan 138108 username amir 138108 kill_reason Maximum check online fails reached 138108 mac 138108 bytes_out 0 138108 bytes_in 0 138108 station_ip 37.129.144.161 138108 port 335 138108 unique_id port 138112 username morteza 138112 mac 138112 bytes_out 0 138112 bytes_in 0 138112 station_ip 83.122.214.216 138112 port 327 138112 unique_id port 138112 remote_ip 10.8.0.46 138119 username morteza 138119 mac 138119 bytes_out 0 138119 bytes_in 0 138119 station_ip 83.122.214.216 138119 port 201 138119 unique_id port 138119 remote_ip 10.8.1.62 138122 username amir 138122 mac 138122 bytes_out 0 138122 bytes_in 0 138122 station_ip 37.129.144.161 138122 port 201 138122 unique_id port 138122 remote_ip 10.8.1.22 138123 username forozandeh1 138123 mac 138123 bytes_out 211592 138123 bytes_in 2015285 138123 station_ip 113.203.23.247 138123 port 312 138123 unique_id port 138123 remote_ip 10.8.0.130 138127 username amir 138127 mac 138127 bytes_out 0 138127 bytes_in 0 138127 station_ip 37.129.144.161 138127 port 312 138127 unique_id port 138127 remote_ip 10.8.0.50 138128 username morteza 138128 mac 138128 bytes_out 0 138128 bytes_in 0 138128 station_ip 83.122.214.216 138128 port 201 138128 unique_id port 138128 remote_ip 10.8.1.62 138131 username amir 138131 mac 138131 bytes_out 5642597 138131 bytes_in 4111054 138131 station_ip 37.129.144.161 138131 port 330 138131 unique_id port 138131 remote_ip 10.8.0.50 138132 username morteza 138132 mac 138132 bytes_out 0 138132 bytes_in 0 138132 station_ip 83.122.214.216 138132 port 201 138132 unique_id port 138132 remote_ip 10.8.1.62 138135 username godarzi 138135 mac 138135 bytes_out 0 138135 bytes_in 0 138135 station_ip 5.202.62.33 138135 port 338 138135 unique_id port 138135 remote_ip 10.8.0.174 138136 username mehrpouyan 138136 mac 138136 bytes_out 0 138136 bytes_in 0 138136 station_ip 5.119.50.157 138136 port 337 138136 unique_id port 138136 remote_ip 10.8.0.74 138138 username barzegar 138138 mac 138138 bytes_out 0 138138 bytes_in 0 138138 station_ip 5.119.185.96 138138 port 312 138138 unique_id port 138138 remote_ip 10.8.0.234 138140 username hashtadani3 138140 mac 138140 bytes_out 0 138140 bytes_in 0 138140 station_ip 83.122.122.88 138140 port 338 138140 unique_id port 138140 remote_ip 10.8.0.154 138142 username morteza 138142 mac 138142 bytes_out 0 138142 bytes_in 0 138142 station_ip 83.122.214.216 138142 port 201 138142 unique_id port 138142 remote_ip 10.8.1.62 138146 username amir 138146 mac 138146 bytes_out 0 138146 bytes_in 0 138146 station_ip 37.129.144.161 138146 port 338 138146 unique_id port 138146 remote_ip 10.8.0.50 138150 username alipour 138150 mac 138150 bytes_out 1867071 138150 bytes_in 17570387 138150 station_ip 113.203.112.25 138150 port 324 138150 unique_id port 138150 remote_ip 10.8.0.102 138155 username jafari 138155 kill_reason Another user logged on this global unique id 138155 mac 138155 bytes_out 0 138155 bytes_in 0 138155 station_ip 5.134.155.101 138155 port 327 138155 unique_id port 138155 remote_ip 10.8.0.242 138158 username amir 138158 mac 138158 bytes_out 0 138158 bytes_in 0 138158 station_ip 37.129.144.161 138158 port 201 138158 unique_id port 138158 remote_ip 10.8.1.22 138163 username hashtadani3 138163 kill_reason Maximum check online fails reached 138163 mac 138163 bytes_out 0 138163 bytes_in 0 138163 station_ip 83.122.122.88 138163 port 338 138163 unique_id port 138165 username morteza 138159 kill_reason Maximum check online fails reached 138159 mac 138159 bytes_out 0 138159 bytes_in 0 138159 station_ip 83.122.122.88 138159 port 324 138159 unique_id port 138160 username amir 138160 mac 138160 bytes_out 0 138160 bytes_in 0 138160 station_ip 37.129.144.161 138160 port 201 138160 unique_id port 138160 remote_ip 10.8.1.22 138167 username hashtadani3 138167 kill_reason Maximum check online fails reached 138167 mac 138167 bytes_out 0 138167 bytes_in 0 138167 station_ip 83.122.122.88 138167 port 342 138167 unique_id port 138170 username farhad2 138170 kill_reason Another user logged on this global unique id 138170 mac 138170 bytes_out 0 138170 bytes_in 0 138170 station_ip 5.120.154.8 138170 port 339 138170 unique_id port 138170 remote_ip 10.8.0.190 138174 username houshang 138174 mac 138174 bytes_out 0 138174 bytes_in 0 138174 station_ip 5.120.169.195 138174 port 312 138174 unique_id port 138174 remote_ip 10.8.0.22 138175 username amir 138175 mac 138175 bytes_out 0 138175 bytes_in 0 138175 station_ip 37.129.144.161 138175 port 312 138175 unique_id port 138175 remote_ip 10.8.0.50 138180 username jafari 138180 kill_reason Another user logged on this global unique id 138180 mac 138180 bytes_out 0 138180 bytes_in 0 138180 station_ip 5.134.155.101 138180 port 327 138180 unique_id port 138181 username amir 138181 mac 138181 bytes_out 0 138181 bytes_in 0 138181 station_ip 37.129.144.161 138181 port 344 138181 unique_id port 138181 remote_ip 10.8.0.50 138183 username amir 138183 mac 138183 bytes_out 0 138183 bytes_in 0 138183 station_ip 37.129.144.161 138183 port 200 138183 unique_id port 138183 remote_ip 10.8.1.22 138186 username barzegar 138186 mac 138186 bytes_out 0 138186 bytes_in 0 138186 station_ip 5.119.185.96 138186 port 200 138186 unique_id port 138186 remote_ip 10.8.1.174 138188 username mahdiyehalizadeh 138188 mac 138188 bytes_out 0 138188 bytes_in 0 138188 station_ip 83.122.78.250 138188 port 332 138188 unique_id port 138188 remote_ip 10.8.0.82 138194 username amir 138194 mac 138194 bytes_out 0 138194 bytes_in 0 138194 station_ip 37.129.144.161 138194 port 343 138194 unique_id port 138194 remote_ip 10.8.0.50 138200 username farhad2 138200 mac 138200 bytes_out 0 138200 bytes_in 0 138200 station_ip 5.120.154.8 138200 port 339 138200 unique_id port 138201 username vanila 138201 mac 138201 bytes_out 0 138201 bytes_in 0 138201 station_ip 83.123.231.165 138201 port 337 138201 unique_id port 138201 remote_ip 10.8.0.178 138203 username amir 138203 mac 138203 bytes_out 0 138203 bytes_in 0 138203 station_ip 37.129.144.161 138203 port 315 138203 unique_id port 138203 remote_ip 10.8.0.50 138206 username barzegar 138206 mac 138206 bytes_out 0 138206 bytes_in 0 138206 station_ip 5.119.185.96 138206 port 334 138206 unique_id port 138206 remote_ip 10.8.0.234 138208 username sedighe 138208 kill_reason Maximum check online fails reached 138208 mac 138208 bytes_out 0 138208 bytes_in 0 138208 station_ip 83.123.202.128 138208 port 334 138208 unique_id port 138209 username barzegar 138209 mac 138209 bytes_out 0 138209 bytes_in 0 138209 station_ip 5.119.185.96 138209 port 339 138209 unique_id port 138209 remote_ip 10.8.0.234 138215 username sedighe 138215 mac 138215 bytes_out 0 138215 bytes_in 0 138215 station_ip 83.123.202.128 138215 port 337 138215 unique_id port 138215 remote_ip 10.8.0.146 138218 username barzegar 138218 mac 138218 bytes_out 0 138161 mac 138161 bytes_out 0 138161 bytes_in 0 138161 station_ip 5.120.134.139 138161 port 312 138161 unique_id port 138161 remote_ip 10.8.0.74 138162 username hashtadani3 138162 kill_reason Maximum number of concurrent logins reached 138162 mac 138162 bytes_out 0 138162 bytes_in 0 138162 station_ip 83.122.122.88 138162 port 205 138162 unique_id port 138164 username amir 138164 mac 138164 bytes_out 0 138164 bytes_in 0 138164 station_ip 37.129.144.161 138164 port 201 138164 unique_id port 138164 remote_ip 10.8.1.22 138168 username mehdizare 138168 mac 138168 bytes_out 0 138168 bytes_in 0 138168 station_ip 5.120.148.206 138168 port 312 138168 unique_id port 138168 remote_ip 10.8.0.90 138169 username amir 138169 mac 138169 bytes_out 0 138169 bytes_in 0 138169 station_ip 37.129.144.161 138169 port 343 138169 unique_id port 138169 remote_ip 10.8.0.50 138172 username amir 138172 mac 138172 bytes_out 0 138172 bytes_in 0 138172 station_ip 37.129.144.161 138172 port 345 138172 unique_id port 138172 remote_ip 10.8.0.50 138176 username barzegar 138176 mac 138176 bytes_out 0 138176 bytes_in 0 138176 station_ip 5.119.185.96 138176 port 200 138176 unique_id port 138176 remote_ip 10.8.1.174 138179 username godarzi 138179 mac 138179 bytes_out 0 138179 bytes_in 0 138179 station_ip 5.202.62.33 138179 port 346 138179 unique_id port 138179 remote_ip 10.8.0.174 138187 username amir 138187 mac 138187 bytes_out 0 138187 bytes_in 0 138187 station_ip 37.129.144.161 138187 port 345 138187 unique_id port 138187 remote_ip 10.8.0.50 138190 username mehrpouyan 138190 mac 138190 bytes_out 0 138190 bytes_in 0 138190 station_ip 5.119.71.194 138190 port 315 138190 unique_id port 138190 remote_ip 10.8.0.74 138192 username jafari 138192 kill_reason Another user logged on this global unique id 138192 mac 138192 bytes_out 0 138192 bytes_in 0 138192 station_ip 5.134.155.101 138192 port 327 138192 unique_id port 138195 username mehdizare 138195 mac 138195 bytes_out 0 138195 bytes_in 0 138195 station_ip 5.120.148.206 138195 port 315 138195 unique_id port 138195 remote_ip 10.8.0.90 138196 username mehrpouyan 138196 mac 138196 bytes_out 177460 138196 bytes_in 497874 138196 station_ip 5.119.14.138 138196 port 345 138196 unique_id port 138196 remote_ip 10.8.0.74 138198 username mehrpouyan 138198 mac 138198 bytes_out 0 138198 bytes_in 0 138198 station_ip 5.120.101.154 138198 port 315 138198 unique_id port 138198 remote_ip 10.8.0.74 138202 username asma2026 138202 kill_reason Another user logged on this global unique id 138202 mac 138202 bytes_out 0 138202 bytes_in 0 138202 station_ip 5.217.114.71 138202 port 344 138202 unique_id port 138202 remote_ip 10.8.0.170 138205 username mehrpouyan 138205 mac 138205 bytes_out 0 138205 bytes_in 0 138205 station_ip 5.120.101.154 138205 port 332 138205 unique_id port 138205 remote_ip 10.8.0.74 138210 username mehrpouyan 138210 mac 138210 bytes_out 0 138210 bytes_in 0 138210 station_ip 5.119.203.221 138210 port 315 138210 unique_id port 138210 remote_ip 10.8.0.74 138213 username mehrpouyan 138213 mac 138213 bytes_out 0 138213 bytes_in 0 138213 station_ip 5.119.81.158 138213 port 341 138213 unique_id port 138213 remote_ip 10.8.0.74 138217 username alihosseini1 138217 mac 138217 bytes_out 55613 138217 bytes_in 56104 138217 station_ip 5.119.50.105 138217 port 201 138217 unique_id port 138217 remote_ip 10.8.1.106 138221 username alihosseini1 138221 mac 138221 bytes_out 0 138165 mac 138165 bytes_out 0 138165 bytes_in 0 138165 station_ip 83.122.214.216 138165 port 343 138165 unique_id port 138165 remote_ip 10.8.0.46 138166 username mehdizare 138166 mac 138166 bytes_out 15692 138166 bytes_in 20869 138166 station_ip 5.120.148.206 138166 port 200 138166 unique_id port 138166 remote_ip 10.8.1.42 138171 username mehdizare 138171 mac 138171 bytes_out 0 138171 bytes_in 0 138171 station_ip 5.120.148.206 138171 port 312 138171 unique_id port 138171 remote_ip 10.8.0.90 138173 username hamidsalari 138173 mac 138173 bytes_out 0 138173 bytes_in 0 138173 station_ip 5.120.142.201 138173 port 315 138173 unique_id port 138177 username mehrpouyan 138177 mac 138177 bytes_out 0 138177 bytes_in 0 138177 station_ip 5.120.89.86 138177 port 344 138177 unique_id port 138177 remote_ip 10.8.0.74 138178 username amir 138178 mac 138178 bytes_out 0 138178 bytes_in 0 138178 station_ip 37.129.144.161 138178 port 312 138178 unique_id port 138178 remote_ip 10.8.0.50 138182 username alikomsari 138182 mac 138182 bytes_out 0 138182 bytes_in 0 138182 station_ip 5.119.179.36 138182 port 341 138182 unique_id port 138182 remote_ip 10.8.0.70 138184 username amir 138184 mac 138184 bytes_out 0 138184 bytes_in 0 138184 station_ip 37.129.144.161 138184 port 341 138184 unique_id port 138184 remote_ip 10.8.0.50 138185 username amir 138185 mac 138185 bytes_out 0 138185 bytes_in 0 138185 station_ip 37.129.144.161 138185 port 200 138185 unique_id port 138185 remote_ip 10.8.1.22 138189 username mehdizare 138189 mac 138189 bytes_out 0 138189 bytes_in 0 138189 station_ip 5.120.148.206 138189 port 343 138189 unique_id port 138189 remote_ip 10.8.0.90 138191 username alikomsari 138191 mac 138191 bytes_out 0 138191 bytes_in 0 138191 station_ip 5.120.90.9 138191 port 341 138191 unique_id port 138191 remote_ip 10.8.0.70 138193 username mehdizare 138193 mac 138193 bytes_out 0 138193 bytes_in 0 138193 station_ip 5.120.148.206 138193 port 332 138193 unique_id port 138193 remote_ip 10.8.0.90 138197 username amir 138197 mac 138197 bytes_out 0 138197 bytes_in 0 138197 station_ip 37.129.144.161 138197 port 332 138197 unique_id port 138197 remote_ip 10.8.0.50 138199 username amir 138199 mac 138199 bytes_out 18162 138199 bytes_in 112487 138199 station_ip 37.129.144.161 138199 port 201 138199 unique_id port 138199 remote_ip 10.8.1.22 138204 username alihosseini1 138204 mac 138204 bytes_out 0 138204 bytes_in 0 138204 station_ip 5.119.50.105 138204 port 334 138204 unique_id port 138204 remote_ip 10.8.0.166 138207 username asma2026 138207 mac 138207 bytes_out 0 138207 bytes_in 0 138207 station_ip 5.217.114.71 138207 port 344 138207 unique_id port 138211 username amir 138211 mac 138211 bytes_out 2167 138211 bytes_in 4702 138211 station_ip 37.129.144.161 138211 port 205 138211 unique_id port 138211 remote_ip 10.8.1.22 138212 username barzegar 138212 mac 138212 bytes_out 0 138212 bytes_in 0 138212 station_ip 5.119.185.96 138212 port 339 138212 unique_id port 138212 remote_ip 10.8.0.234 138214 username amir 138214 mac 138214 bytes_out 0 138214 bytes_in 0 138214 station_ip 37.129.144.161 138214 port 315 138214 unique_id port 138214 remote_ip 10.8.0.50 138216 username alirr 138216 kill_reason Wrong password 138216 unique_id port 138216 bytes_out 0 138216 bytes_in 0 138216 station_ip 5.119.207.159 138216 port 15730611 138216 nas_port_type Virtual 138218 bytes_in 0 138218 station_ip 5.119.185.96 138218 port 339 138218 unique_id port 138218 remote_ip 10.8.0.234 138220 username amir 138220 mac 138220 bytes_out 0 138220 bytes_in 0 138220 station_ip 37.129.144.161 138220 port 315 138220 unique_id port 138220 remote_ip 10.8.0.50 138223 username amirabbas 138223 unique_id port 138223 terminate_cause User-Request 138223 bytes_out 9895885 138223 bytes_in 271999328 138223 station_ip 37.27.28.218 138223 port 15730608 138223 nas_port_type Virtual 138223 remote_ip 5.5.5.234 138227 username alihosseini1 138227 mac 138227 bytes_out 0 138227 bytes_in 0 138227 station_ip 5.119.50.105 138227 port 339 138227 unique_id port 138227 remote_ip 10.8.0.166 138234 username asma2026 138234 mac 138234 bytes_out 0 138234 bytes_in 0 138234 station_ip 5.217.159.122 138234 port 205 138234 unique_id port 138234 remote_ip 10.8.1.122 138236 username asma2026 138236 mac 138236 bytes_out 0 138236 bytes_in 0 138236 station_ip 5.217.159.122 138236 port 341 138236 unique_id port 138236 remote_ip 10.8.0.170 138237 username jafari 138237 kill_reason Another user logged on this global unique id 138237 mac 138237 bytes_out 0 138237 bytes_in 0 138237 station_ip 5.134.155.101 138237 port 327 138237 unique_id port 138238 username barzegar 138238 mac 138238 bytes_out 0 138238 bytes_in 0 138238 station_ip 5.119.185.96 138238 port 201 138238 unique_id port 138238 remote_ip 10.8.1.174 138243 username amir 138243 mac 138243 bytes_out 0 138243 bytes_in 0 138243 station_ip 37.129.144.161 138243 port 344 138243 unique_id port 138243 remote_ip 10.8.0.50 138248 username farhad2 138248 mac 138248 bytes_out 0 138248 bytes_in 0 138248 station_ip 5.120.134.61 138248 port 315 138248 unique_id port 138248 remote_ip 10.8.0.190 138249 username barzegar 138249 mac 138249 bytes_out 0 138249 bytes_in 0 138249 station_ip 5.119.185.96 138249 port 205 138249 unique_id port 138249 remote_ip 10.8.1.174 138264 username morteza 138264 mac 138264 bytes_out 0 138264 bytes_in 0 138264 station_ip 37.129.41.90 138264 port 344 138264 unique_id port 138264 remote_ip 10.8.0.46 138267 username amir 138267 mac 138267 bytes_out 38752 138267 bytes_in 171894 138267 station_ip 37.129.144.161 138267 port 201 138267 unique_id port 138267 remote_ip 10.8.1.22 138268 username sekonji3 138268 mac 138268 bytes_out 0 138268 bytes_in 0 138268 station_ip 37.129.37.6 138268 port 337 138268 unique_id port 138268 remote_ip 10.8.0.6 138269 username sekonji3 138269 mac 138269 bytes_out 0 138269 bytes_in 0 138269 station_ip 37.129.37.6 138269 port 337 138269 unique_id port 138269 remote_ip 10.8.0.6 138272 username mosi 138272 kill_reason Another user logged on this global unique id 138272 mac 138272 bytes_out 0 138272 bytes_in 0 138272 station_ip 151.235.75.185 138272 port 331 138272 unique_id port 138273 username sekonji3 138273 mac 138273 bytes_out 0 138273 bytes_in 0 138273 station_ip 37.129.37.6 138273 port 336 138273 unique_id port 138273 remote_ip 10.8.0.6 138279 username aminvpn 138279 mac 138279 bytes_out 0 138279 bytes_in 0 138279 station_ip 83.123.230.211 138279 port 336 138279 unique_id port 138279 remote_ip 10.8.0.14 138281 username aminvpn 138281 mac 138281 bytes_out 0 138281 bytes_in 0 138281 station_ip 83.122.248.80 138281 port 344 138281 unique_id port 138281 remote_ip 10.8.0.14 138283 username morteza 138283 mac 138283 bytes_out 0 138283 bytes_in 0 138219 username mehdizare 138219 mac 138219 bytes_out 0 138219 bytes_in 0 138219 station_ip 5.120.148.206 138219 port 200 138219 unique_id port 138219 remote_ip 10.8.1.42 138222 username mehdizare 138222 mac 138222 bytes_out 0 138222 bytes_in 0 138222 station_ip 5.120.148.206 138222 port 200 138222 unique_id port 138222 remote_ip 10.8.1.42 138226 username barzegar 138226 mac 138226 bytes_out 0 138226 bytes_in 0 138226 station_ip 5.119.185.96 138226 port 315 138226 unique_id port 138226 remote_ip 10.8.0.234 138229 username aminvpn 138229 kill_reason Another user logged on this global unique id 138229 mac 138229 bytes_out 0 138229 bytes_in 0 138229 station_ip 83.123.230.211 138229 port 336 138229 unique_id port 138229 remote_ip 10.8.0.14 138230 username asma2026 138230 mac 138230 bytes_out 0 138230 bytes_in 0 138230 station_ip 5.217.159.122 138230 port 200 138230 unique_id port 138230 remote_ip 10.8.1.122 138231 username amir 138231 mac 138231 bytes_out 0 138231 bytes_in 0 138231 station_ip 37.129.144.161 138231 port 200 138231 unique_id port 138231 remote_ip 10.8.1.22 138233 username godarzi 138233 kill_reason Another user logged on this global unique id 138233 mac 138233 bytes_out 0 138233 bytes_in 0 138233 station_ip 5.202.62.33 138233 port 312 138233 unique_id port 138233 remote_ip 10.8.0.174 138239 username houshang 138239 mac 138239 bytes_out 0 138239 bytes_in 0 138239 station_ip 5.120.169.195 138239 port 339 138239 unique_id port 138239 remote_ip 10.8.0.22 138242 username barzegar 138242 mac 138242 bytes_out 2831 138242 bytes_in 5378 138242 station_ip 5.119.185.96 138242 port 200 138242 unique_id port 138242 remote_ip 10.8.1.174 138247 username amir 138247 mac 138247 bytes_out 11982 138247 bytes_in 71655 138247 station_ip 37.129.144.161 138247 port 205 138247 unique_id port 138247 remote_ip 10.8.1.22 138252 username barzegar 138252 mac 138252 bytes_out 0 138252 bytes_in 0 138252 station_ip 5.119.185.96 138252 port 205 138252 unique_id port 138252 remote_ip 10.8.1.174 138253 username farhad2 138253 mac 138253 bytes_out 0 138253 bytes_in 0 138253 station_ip 5.120.134.61 138253 port 315 138253 unique_id port 138253 remote_ip 10.8.0.190 138254 username asma2026 138254 mac 138254 bytes_out 0 138254 bytes_in 0 138254 station_ip 5.217.152.107 138254 port 205 138254 unique_id port 138254 remote_ip 10.8.1.122 138255 username mehdizare 138255 mac 138255 bytes_out 0 138255 bytes_in 0 138255 station_ip 5.120.148.206 138255 port 337 138255 unique_id port 138255 remote_ip 10.8.0.90 138257 username vanila 138257 mac 138257 bytes_out 0 138257 bytes_in 0 138257 station_ip 83.123.231.165 138257 port 345 138257 unique_id port 138257 remote_ip 10.8.0.178 138259 username morteza 138259 mac 138259 bytes_out 0 138259 bytes_in 0 138259 station_ip 37.129.41.90 138259 port 200 138259 unique_id port 138259 remote_ip 10.8.1.62 138261 username morteza 138261 mac 138261 bytes_out 0 138261 bytes_in 0 138261 station_ip 37.129.41.90 138261 port 200 138261 unique_id port 138261 remote_ip 10.8.1.62 138262 username barzegar 138262 mac 138262 bytes_out 0 138262 bytes_in 0 138262 station_ip 5.119.185.96 138262 port 344 138262 unique_id port 138262 remote_ip 10.8.0.234 138265 username godarzi 138265 kill_reason Another user logged on this global unique id 138265 mac 138265 bytes_out 0 138265 bytes_in 0 138265 station_ip 5.202.62.33 138265 port 312 138265 unique_id port 138221 bytes_in 0 138221 station_ip 5.119.50.105 138221 port 201 138221 unique_id port 138221 remote_ip 10.8.1.106 138224 username khalili 138224 kill_reason Another user logged on this global unique id 138224 mac 138224 bytes_out 0 138224 bytes_in 0 138224 station_ip 5.120.50.142 138224 port 332 138224 unique_id port 138224 remote_ip 10.8.0.86 138225 username hamid.e 138225 unique_id port 138225 terminate_cause User-Request 138225 bytes_out 2127367 138225 bytes_in 36570941 138225 station_ip 37.27.0.188 138225 port 15730609 138225 nas_port_type Virtual 138225 remote_ip 5.5.5.237 138228 username amir 138228 mac 138228 bytes_out 0 138228 bytes_in 0 138228 station_ip 37.129.144.161 138228 port 201 138228 unique_id port 138228 remote_ip 10.8.1.22 138232 username alihosseini1 138232 mac 138232 bytes_out 0 138232 bytes_in 0 138232 station_ip 5.119.50.105 138232 port 339 138232 unique_id port 138232 remote_ip 10.8.0.166 138235 username amir 138235 mac 138235 bytes_out 9870 138235 bytes_in 46642 138235 station_ip 37.129.144.161 138235 port 200 138235 unique_id port 138235 remote_ip 10.8.1.22 138240 username morteza 138240 mac 138240 bytes_out 0 138240 bytes_in 0 138240 station_ip 37.129.41.90 138240 port 343 138240 unique_id port 138240 remote_ip 10.8.0.46 138241 username vanila 138241 mac 138241 bytes_out 0 138241 bytes_in 0 138241 station_ip 83.123.231.165 138241 port 343 138241 unique_id port 138241 remote_ip 10.8.0.178 138244 username amir 138244 mac 138244 bytes_out 0 138244 bytes_in 0 138244 station_ip 37.129.144.161 138244 port 343 138244 unique_id port 138244 remote_ip 10.8.0.50 138245 username godarzi 138245 kill_reason Another user logged on this global unique id 138245 mac 138245 bytes_out 0 138245 bytes_in 0 138245 station_ip 5.202.62.33 138245 port 312 138245 unique_id port 138246 username barzegar 138246 mac 138246 bytes_out 2265 138246 bytes_in 4654 138246 station_ip 5.119.185.96 138246 port 201 138246 unique_id port 138246 remote_ip 10.8.1.174 138250 username amir 138250 mac 138250 bytes_out 20077 138250 bytes_in 78808 138250 station_ip 37.129.144.161 138250 port 201 138250 unique_id port 138250 remote_ip 10.8.1.22 138251 username houshang 138251 mac 138251 bytes_out 0 138251 bytes_in 0 138251 station_ip 5.120.169.195 138251 port 339 138251 unique_id port 138251 remote_ip 10.8.0.22 138256 username amir 138256 mac 138256 bytes_out 55914 138256 bytes_in 252643 138256 station_ip 37.129.144.161 138256 port 201 138256 unique_id port 138256 remote_ip 10.8.1.22 138258 username morteza 138258 mac 138258 bytes_out 191458 138258 bytes_in 1444001 138258 station_ip 37.129.41.90 138258 port 200 138258 unique_id port 138258 remote_ip 10.8.1.62 138260 username amir 138260 mac 138260 bytes_out 9508 138260 bytes_in 55894 138260 station_ip 37.129.144.161 138260 port 201 138260 unique_id port 138260 remote_ip 10.8.1.22 138263 username jafari 138263 kill_reason Another user logged on this global unique id 138263 mac 138263 bytes_out 0 138263 bytes_in 0 138263 station_ip 5.134.155.101 138263 port 327 138263 unique_id port 138270 username amir 138270 mac 138270 bytes_out 20115 138270 bytes_in 91810 138270 station_ip 37.129.144.161 138270 port 200 138270 unique_id port 138270 remote_ip 10.8.1.22 138275 username amir 138275 mac 138275 bytes_out 0 138275 bytes_in 0 138275 station_ip 37.129.144.161 138275 port 337 138275 unique_id port 138275 remote_ip 10.8.0.50 138277 username barzegar 138277 mac 138266 username sekonji3 138266 mac 138266 bytes_out 83133 138266 bytes_in 278542 138266 station_ip 37.129.37.6 138266 port 337 138266 unique_id port 138266 remote_ip 10.8.0.6 138271 username aminvpn 138271 mac 138271 bytes_out 0 138271 bytes_in 0 138271 station_ip 83.123.230.211 138271 port 336 138271 unique_id port 138274 username morteza 138274 mac 138274 bytes_out 0 138274 bytes_in 0 138274 station_ip 37.129.41.90 138274 port 344 138274 unique_id port 138274 remote_ip 10.8.0.46 138276 username aminvpn 138276 mac 138276 bytes_out 0 138276 bytes_in 0 138276 station_ip 83.122.248.80 138276 port 345 138276 unique_id port 138276 remote_ip 10.8.0.14 138278 username asma2026 138278 mac 138278 bytes_out 0 138278 bytes_in 0 138278 station_ip 5.217.114.77 138278 port 200 138278 unique_id port 138278 remote_ip 10.8.1.122 138280 username morteza 138280 mac 138280 bytes_out 0 138280 bytes_in 0 138280 station_ip 37.129.41.90 138280 port 201 138280 unique_id port 138280 remote_ip 10.8.1.62 138284 username amir 138284 mac 138284 bytes_out 0 138284 bytes_in 0 138284 station_ip 37.129.144.161 138284 port 337 138284 unique_id port 138284 remote_ip 10.8.0.50 138287 username farhad2 138287 mac 138287 bytes_out 0 138287 bytes_in 0 138287 station_ip 5.120.134.61 138287 port 315 138287 unique_id port 138287 remote_ip 10.8.0.190 138289 username alihosseini1 138289 mac 138289 bytes_out 0 138289 bytes_in 0 138289 station_ip 5.119.50.105 138289 port 200 138289 unique_id port 138289 remote_ip 10.8.1.106 138292 username hashtadani3 138292 kill_reason Maximum number of concurrent logins reached 138292 mac 138292 bytes_out 0 138292 bytes_in 0 138292 station_ip 83.122.122.88 138292 port 315 138292 unique_id port 138296 username alihosseini1 138296 mac 138296 bytes_out 0 138296 bytes_in 0 138296 station_ip 5.119.50.105 138296 port 201 138296 unique_id port 138296 remote_ip 10.8.1.106 138297 username aminvpn 138297 mac 138297 bytes_out 0 138297 bytes_in 0 138297 station_ip 83.122.248.80 138297 port 315 138297 unique_id port 138297 remote_ip 10.8.0.14 138298 username farhad2 138298 mac 138298 bytes_out 0 138298 bytes_in 0 138298 station_ip 5.120.134.61 138298 port 346 138298 unique_id port 138298 remote_ip 10.8.0.190 138300 username asma2026 138300 mac 138300 bytes_out 0 138300 bytes_in 0 138300 station_ip 5.217.114.77 138300 port 346 138300 unique_id port 138300 remote_ip 10.8.0.170 138303 username hashtadani3 138303 kill_reason Maximum check online fails reached 138303 mac 138303 bytes_out 0 138303 bytes_in 0 138303 station_ip 83.122.122.88 138303 port 337 138303 unique_id port 138307 username mohammadjavad 138307 kill_reason Another user logged on this global unique id 138307 mac 138307 bytes_out 0 138307 bytes_in 0 138307 station_ip 83.123.32.116 138307 port 206 138307 unique_id port 138307 remote_ip 10.8.1.146 138309 username amir 138309 mac 138309 bytes_out 29635 138309 bytes_in 134465 138309 station_ip 37.129.144.161 138309 port 200 138309 unique_id port 138309 remote_ip 10.8.1.22 138312 username morteza 138312 mac 138312 bytes_out 0 138312 bytes_in 0 138312 station_ip 37.129.41.90 138312 port 200 138312 unique_id port 138312 remote_ip 10.8.1.62 138315 username alihosseini1 138315 kill_reason Maximum check online fails reached 138315 mac 138315 bytes_out 0 138315 bytes_in 0 138315 station_ip 5.119.50.105 138315 port 205 138315 unique_id port 138317 username aminvpn 138317 mac 138277 bytes_out 0 138277 bytes_in 0 138277 station_ip 5.120.8.40 138277 port 346 138277 unique_id port 138277 remote_ip 10.8.0.234 138282 username alihosseini1 138282 mac 138282 bytes_out 0 138282 bytes_in 0 138282 station_ip 5.119.50.105 138282 port 341 138282 unique_id port 138282 remote_ip 10.8.0.166 138291 username farhad2 138291 mac 138291 bytes_out 0 138291 bytes_in 0 138291 station_ip 5.120.134.61 138291 port 315 138291 unique_id port 138291 remote_ip 10.8.0.190 138294 username morteza 138294 mac 138294 bytes_out 0 138294 bytes_in 0 138294 station_ip 37.129.41.90 138294 port 346 138294 unique_id port 138294 remote_ip 10.8.0.46 138295 username asma2026 138295 mac 138295 bytes_out 0 138295 bytes_in 0 138295 station_ip 5.217.114.77 138295 port 336 138295 unique_id port 138295 remote_ip 10.8.0.170 138301 username morteza 138301 mac 138301 bytes_out 0 138301 bytes_in 0 138301 station_ip 37.129.41.90 138301 port 201 138301 unique_id port 138301 remote_ip 10.8.1.62 138304 username godarzi 138304 kill_reason Another user logged on this global unique id 138304 mac 138304 bytes_out 0 138304 bytes_in 0 138304 station_ip 5.202.62.33 138304 port 312 138304 unique_id port 138305 username asma2026 138305 mac 138305 bytes_out 0 138305 bytes_in 0 138305 station_ip 5.217.114.77 138305 port 346 138305 unique_id port 138305 remote_ip 10.8.0.170 138316 username farhad2 138316 mac 138316 bytes_out 0 138316 bytes_in 0 138316 station_ip 5.120.134.61 138316 port 336 138316 unique_id port 138316 remote_ip 10.8.0.190 138318 username amir 138318 mac 138318 bytes_out 0 138318 bytes_in 0 138318 station_ip 37.129.144.161 138318 port 201 138318 unique_id port 138318 remote_ip 10.8.1.22 138319 username khalili 138319 kill_reason Another user logged on this global unique id 138319 mac 138319 bytes_out 0 138319 bytes_in 0 138319 station_ip 5.120.50.142 138319 port 332 138319 unique_id port 138321 username asma2026 138321 mac 138321 bytes_out 0 138321 bytes_in 0 138321 station_ip 5.217.114.77 138321 port 336 138321 unique_id port 138321 remote_ip 10.8.0.170 138326 username barzegar 138326 mac 138326 bytes_out 0 138326 bytes_in 0 138326 station_ip 5.120.8.40 138326 port 336 138326 unique_id port 138326 remote_ip 10.8.0.234 138328 username asma2026 138328 mac 138328 bytes_out 0 138328 bytes_in 0 138328 station_ip 5.217.114.77 138328 port 200 138328 unique_id port 138328 remote_ip 10.8.1.122 138329 username amir 138329 mac 138329 bytes_out 0 138329 bytes_in 0 138329 station_ip 37.129.144.161 138329 port 201 138329 unique_id port 138329 remote_ip 10.8.1.22 138331 username sekonji3 138331 mac 138331 bytes_out 0 138331 bytes_in 0 138331 station_ip 37.129.37.6 138331 port 345 138331 unique_id port 138331 remote_ip 10.8.0.6 138334 username alihosseini1 138334 mac 138334 bytes_out 0 138334 bytes_in 0 138334 station_ip 5.119.50.105 138334 port 345 138334 unique_id port 138334 remote_ip 10.8.0.166 138338 username godarzi 138338 mac 138338 bytes_out 0 138338 bytes_in 0 138338 station_ip 5.202.62.33 138338 port 312 138338 unique_id port 138341 username asma2026 138341 mac 138341 bytes_out 0 138341 bytes_in 0 138341 station_ip 5.217.114.77 138341 port 201 138341 unique_id port 138341 remote_ip 10.8.1.122 138345 username amir 138345 mac 138345 bytes_out 0 138345 bytes_in 0 138345 station_ip 37.129.144.161 138345 port 200 138345 unique_id port 138283 station_ip 37.129.41.90 138283 port 200 138283 unique_id port 138283 remote_ip 10.8.1.62 138285 username aminvpn 138285 mac 138285 bytes_out 0 138285 bytes_in 0 138285 station_ip 83.123.230.211 138285 port 346 138285 unique_id port 138285 remote_ip 10.8.0.14 138286 username alihosseini1 138286 mac 138286 bytes_out 0 138286 bytes_in 0 138286 station_ip 5.119.50.105 138286 port 341 138286 unique_id port 138286 remote_ip 10.8.0.166 138288 username hashtadani3 138288 mac 138288 bytes_out 0 138288 bytes_in 0 138288 station_ip 83.122.122.88 138288 port 336 138288 unique_id port 138288 remote_ip 10.8.0.154 138290 username aminvpn 138290 mac 138290 bytes_out 0 138290 bytes_in 0 138290 station_ip 83.122.248.80 138290 port 337 138290 unique_id port 138290 remote_ip 10.8.0.14 138293 username aminvpn 138293 mac 138293 bytes_out 0 138293 bytes_in 0 138293 station_ip 83.123.230.211 138293 port 336 138293 unique_id port 138293 remote_ip 10.8.0.14 138299 username aminvpn 138299 mac 138299 bytes_out 0 138299 bytes_in 0 138299 station_ip 83.123.230.211 138299 port 336 138299 unique_id port 138299 remote_ip 10.8.0.14 138302 username hashtadani3 138302 kill_reason Maximum check online fails reached 138302 mac 138302 bytes_out 0 138302 bytes_in 0 138302 station_ip 83.122.122.88 138302 port 344 138302 unique_id port 138306 username morteza 138306 mac 138306 bytes_out 0 138306 bytes_in 0 138306 station_ip 37.129.41.90 138306 port 201 138306 unique_id port 138306 remote_ip 10.8.1.62 138308 username sekonji3 138308 mac 138308 bytes_out 0 138308 bytes_in 0 138308 station_ip 37.129.37.6 138308 port 315 138308 unique_id port 138308 remote_ip 10.8.0.6 138310 username alihosseini1 138310 mac 138310 bytes_out 0 138310 bytes_in 0 138310 station_ip 5.119.50.105 138310 port 347 138310 unique_id port 138310 remote_ip 10.8.0.166 138311 username barzegar 138311 mac 138311 bytes_out 0 138311 bytes_in 0 138311 station_ip 5.120.8.40 138311 port 345 138311 unique_id port 138311 remote_ip 10.8.0.234 138313 username aminvpn 138313 mac 138313 bytes_out 0 138313 bytes_in 0 138313 station_ip 83.122.248.80 138313 port 348 138313 unique_id port 138313 remote_ip 10.8.0.14 138314 username alihosseini1 138314 mac 138314 bytes_out 0 138314 bytes_in 0 138314 station_ip 5.119.50.105 138314 port 315 138314 unique_id port 138314 remote_ip 10.8.0.166 138323 username aminvpn 138323 mac 138323 bytes_out 0 138323 bytes_in 0 138323 station_ip 83.123.230.211 138323 port 336 138323 unique_id port 138323 remote_ip 10.8.0.14 138325 username aminvpn 138325 mac 138325 bytes_out 0 138325 bytes_in 0 138325 station_ip 83.122.248.80 138325 port 346 138325 unique_id port 138325 remote_ip 10.8.0.14 138339 username amir 138339 mac 138339 bytes_out 0 138339 bytes_in 0 138339 station_ip 37.129.144.161 138339 port 200 138339 unique_id port 138339 remote_ip 10.8.1.22 138343 username malekpoir 138343 mac 138343 bytes_out 0 138343 bytes_in 0 138343 station_ip 5.119.123.141 138343 port 282 138343 unique_id port 138343 remote_ip 10.8.0.58 138348 username asma2026 138348 mac 138348 bytes_out 0 138348 bytes_in 0 138348 station_ip 5.217.114.77 138348 port 346 138348 unique_id port 138348 remote_ip 10.8.0.170 138353 username asma2026 138353 mac 138353 bytes_out 0 138353 bytes_in 0 138353 station_ip 5.217.114.77 138353 port 339 138353 unique_id port 138353 remote_ip 10.8.0.170 138317 bytes_out 0 138317 bytes_in 0 138317 station_ip 83.123.230.211 138317 port 345 138317 unique_id port 138317 remote_ip 10.8.0.14 138320 username morteza 138320 mac 138320 bytes_out 0 138320 bytes_in 0 138320 station_ip 37.129.41.90 138320 port 200 138320 unique_id port 138320 remote_ip 10.8.1.62 138322 username aminvpn 138322 mac 138322 bytes_out 0 138322 bytes_in 0 138322 station_ip 83.122.248.80 138322 port 315 138322 unique_id port 138322 remote_ip 10.8.0.14 138324 username farhad2 138324 mac 138324 bytes_out 0 138324 bytes_in 0 138324 station_ip 5.120.134.61 138324 port 315 138324 unique_id port 138324 remote_ip 10.8.0.190 138327 username aminvpn 138327 mac 138327 bytes_out 0 138327 bytes_in 0 138327 station_ip 83.123.230.211 138327 port 347 138327 unique_id port 138327 remote_ip 10.8.0.14 138330 username barzegar 138330 mac 138330 bytes_out 0 138330 bytes_in 0 138330 station_ip 5.120.8.40 138330 port 346 138330 unique_id port 138330 remote_ip 10.8.0.234 138332 username asma2026 138332 mac 138332 bytes_out 0 138332 bytes_in 0 138332 station_ip 5.217.114.77 138332 port 201 138332 unique_id port 138332 remote_ip 10.8.1.122 138333 username asma2026 138333 mac 138333 bytes_out 0 138333 bytes_in 0 138333 station_ip 5.217.114.77 138333 port 347 138333 unique_id port 138333 remote_ip 10.8.0.170 138335 username aminvpn 138335 mac 138335 bytes_out 0 138335 bytes_in 0 138335 station_ip 83.122.248.80 138335 port 336 138335 unique_id port 138335 remote_ip 10.8.0.14 138336 username amir 138336 mac 138336 bytes_out 46891 138336 bytes_in 228369 138336 station_ip 37.129.144.161 138336 port 200 138336 unique_id port 138336 remote_ip 10.8.1.22 138337 username aminvpn 138337 mac 138337 bytes_out 19036 138337 bytes_in 30696 138337 station_ip 83.123.230.211 138337 port 345 138337 unique_id port 138337 remote_ip 10.8.0.14 138340 username mohammadjavad 138340 mac 138340 bytes_out 0 138340 bytes_in 0 138340 station_ip 83.123.32.116 138340 port 206 138340 unique_id port 138342 username aminvpn 138342 mac 138342 bytes_out 0 138342 bytes_in 0 138342 station_ip 83.122.248.80 138342 port 336 138342 unique_id port 138342 remote_ip 10.8.0.14 138344 username asma2026 138344 mac 138344 bytes_out 0 138344 bytes_in 0 138344 station_ip 5.217.114.77 138344 port 282 138344 unique_id port 138344 remote_ip 10.8.0.170 138346 username aminvpn 138346 mac 138346 bytes_out 0 138346 bytes_in 0 138346 station_ip 83.123.230.211 138346 port 345 138346 unique_id port 138346 remote_ip 10.8.0.14 138347 username hamidsalari 138347 mac 138347 bytes_out 0 138347 bytes_in 0 138347 station_ip 5.120.142.201 138347 port 341 138347 unique_id port 138347 remote_ip 10.8.0.222 138349 username asma2026 138349 mac 138349 bytes_out 0 138349 bytes_in 0 138349 station_ip 5.217.114.77 138349 port 348 138349 unique_id port 138349 remote_ip 10.8.0.170 138350 username mehdizare 138350 mac 138350 bytes_out 0 138350 bytes_in 0 138350 station_ip 5.120.148.206 138350 port 339 138350 unique_id port 138350 remote_ip 10.8.0.90 138352 username jafari 138352 kill_reason Another user logged on this global unique id 138352 mac 138352 bytes_out 0 138352 bytes_in 0 138352 station_ip 5.134.155.101 138352 port 327 138352 unique_id port 138354 username barzegar 138354 mac 138354 bytes_out 0 138354 bytes_in 0 138354 station_ip 5.120.8.40 138354 port 336 138354 unique_id port 138345 remote_ip 10.8.1.22 138351 username amir 138351 mac 138351 bytes_out 0 138351 bytes_in 0 138351 station_ip 37.129.144.161 138351 port 341 138351 unique_id port 138351 remote_ip 10.8.0.50 138355 username zotaher 138355 mac 138355 bytes_out 0 138355 bytes_in 0 138355 station_ip 37.129.170.117 138355 port 312 138355 unique_id port 138355 remote_ip 10.8.0.194 138359 username aminvpn 138359 mac 138359 bytes_out 0 138359 bytes_in 0 138359 station_ip 83.123.230.211 138359 port 312 138359 unique_id port 138359 remote_ip 10.8.0.14 138363 username aminvpn 138363 mac 138363 bytes_out 0 138363 bytes_in 0 138363 station_ip 83.122.248.80 138363 port 282 138363 unique_id port 138363 remote_ip 10.8.0.14 138365 username alikomsari 138365 kill_reason Maximum number of concurrent logins reached 138365 mac 138365 bytes_out 0 138365 bytes_in 0 138365 station_ip 5.119.144.57 138365 port 282 138365 unique_id port 138368 username alikomsari 138368 kill_reason Maximum number of concurrent logins reached 138368 mac 138368 bytes_out 0 138368 bytes_in 0 138368 station_ip 5.119.144.57 138368 port 312 138368 unique_id port 138371 username saeed9658 138371 mac 138371 bytes_out 816949 138371 bytes_in 7292575 138371 station_ip 5.119.158.124 138371 port 207 138371 unique_id port 138371 remote_ip 10.8.1.210 138372 username godarzi 138372 mac 138372 bytes_out 0 138372 bytes_in 0 138372 station_ip 5.202.62.33 138372 port 349 138372 unique_id port 138372 remote_ip 10.8.0.174 138374 username alikomsari 138374 mac 138374 bytes_out 0 138374 bytes_in 0 138374 station_ip 5.119.144.57 138374 port 312 138374 unique_id port 138374 remote_ip 10.8.0.70 138387 username aminvpn 138387 mac 138387 bytes_out 0 138387 bytes_in 0 138387 station_ip 83.122.248.80 138387 port 339 138387 unique_id port 138387 remote_ip 10.8.0.14 138388 username aminvpn 138388 mac 138388 bytes_out 0 138388 bytes_in 0 138388 station_ip 83.123.230.211 138388 port 336 138388 unique_id port 138388 remote_ip 10.8.0.14 138389 username amir 138389 mac 138389 bytes_out 0 138389 bytes_in 0 138389 station_ip 37.129.144.161 138389 port 282 138389 unique_id port 138389 remote_ip 10.8.0.50 138391 username aminvpn 138391 mac 138391 bytes_out 0 138391 bytes_in 0 138391 station_ip 83.122.248.80 138391 port 341 138391 unique_id port 138391 remote_ip 10.8.0.14 138393 username aminvpn 138393 mac 138393 bytes_out 0 138393 bytes_in 0 138393 station_ip 83.123.230.211 138393 port 282 138393 unique_id port 138393 remote_ip 10.8.0.14 138399 username aminvpn 138399 mac 138399 bytes_out 0 138399 bytes_in 0 138399 station_ip 83.122.248.80 138399 port 341 138399 unique_id port 138399 remote_ip 10.8.0.14 138402 username jafari 138402 kill_reason Another user logged on this global unique id 138402 mac 138402 bytes_out 0 138402 bytes_in 0 138402 station_ip 5.134.155.101 138402 port 327 138402 unique_id port 138411 username forozandeh1 138411 mac 138411 bytes_out 0 138411 bytes_in 0 138411 station_ip 83.123.109.231 138411 port 315 138411 unique_id port 138411 remote_ip 10.8.0.130 138412 username asma2026 138412 mac 138412 bytes_out 0 138412 bytes_in 0 138412 station_ip 5.217.216.42 138412 port 312 138412 unique_id port 138412 remote_ip 10.8.0.170 138413 username aminvpn 138413 mac 138413 bytes_out 0 138413 bytes_in 0 138413 station_ip 83.123.230.211 138413 port 282 138413 unique_id port 138413 remote_ip 10.8.0.14 138416 username vanila 138354 remote_ip 10.8.0.234 138356 username aminvpn 138356 mac 138356 bytes_out 0 138356 bytes_in 0 138356 station_ip 83.122.248.80 138356 port 282 138356 unique_id port 138356 remote_ip 10.8.0.14 138362 username forozandeh1 138362 mac 138362 bytes_out 0 138362 bytes_in 0 138362 station_ip 83.123.103.16 138362 port 347 138362 unique_id port 138362 remote_ip 10.8.0.130 138370 username asma2026 138370 kill_reason Maximum check online fails reached 138370 mac 138370 bytes_out 0 138370 bytes_in 0 138370 station_ip 5.217.114.77 138370 port 200 138370 unique_id port 138380 username houshang 138380 mac 138380 bytes_out 0 138380 bytes_in 0 138380 station_ip 5.120.169.195 138380 port 341 138380 unique_id port 138380 remote_ip 10.8.0.22 138382 username jafari 138382 kill_reason Another user logged on this global unique id 138382 mac 138382 bytes_out 0 138382 bytes_in 0 138382 station_ip 5.134.155.101 138382 port 327 138382 unique_id port 138383 username aminvpn 138383 mac 138383 bytes_out 0 138383 bytes_in 0 138383 station_ip 83.123.230.211 138383 port 282 138383 unique_id port 138383 remote_ip 10.8.0.14 138385 username amir 138385 mac 138385 bytes_out 87806 138385 bytes_in 441009 138385 station_ip 37.129.144.161 138385 port 201 138385 unique_id port 138385 remote_ip 10.8.1.22 138386 username amir 138386 mac 138386 bytes_out 0 138386 bytes_in 0 138386 station_ip 37.129.144.161 138386 port 201 138386 unique_id port 138386 remote_ip 10.8.1.22 138397 username mosi 138397 kill_reason Another user logged on this global unique id 138397 mac 138397 bytes_out 0 138397 bytes_in 0 138397 station_ip 151.235.75.185 138397 port 331 138397 unique_id port 138403 username amir 138403 mac 138403 bytes_out 0 138403 bytes_in 0 138403 station_ip 37.129.144.161 138403 port 207 138403 unique_id port 138403 remote_ip 10.8.1.22 138404 username alikomsari 138404 mac 138404 bytes_out 0 138404 bytes_in 0 138404 station_ip 5.119.144.57 138404 port 312 138404 unique_id port 138404 remote_ip 10.8.0.70 138406 username amir 138406 mac 138406 bytes_out 0 138406 bytes_in 0 138406 station_ip 37.129.144.161 138406 port 207 138406 unique_id port 138406 remote_ip 10.8.1.22 138407 username aminvpn 138407 mac 138407 bytes_out 0 138407 bytes_in 0 138407 station_ip 83.123.230.211 138407 port 282 138407 unique_id port 138407 remote_ip 10.8.0.14 138408 username aminvpn 138408 mac 138408 bytes_out 0 138408 bytes_in 0 138408 station_ip 83.122.248.80 138408 port 312 138408 unique_id port 138408 remote_ip 10.8.0.14 138409 username aminvpn 138409 mac 138409 bytes_out 0 138409 bytes_in 0 138409 station_ip 83.123.230.211 138409 port 282 138409 unique_id port 138409 remote_ip 10.8.0.14 138417 username vanila 138417 kill_reason Another user logged on this global unique id 138417 mac 138417 bytes_out 0 138417 bytes_in 0 138417 station_ip 83.123.170.181 138417 port 312 138417 unique_id port 138418 username aminvpn 138418 mac 138418 bytes_out 0 138418 bytes_in 0 138418 station_ip 83.123.230.211 138418 port 282 138418 unique_id port 138418 remote_ip 10.8.0.14 138419 username aminvpn 138419 mac 138419 bytes_out 0 138419 bytes_in 0 138419 station_ip 83.122.248.80 138419 port 315 138419 unique_id port 138419 remote_ip 10.8.0.14 138421 username barzegar 138421 mac 138421 bytes_out 464421 138421 bytes_in 3439025 138421 station_ip 5.120.8.40 138421 port 201 138421 unique_id port 138421 remote_ip 10.8.1.174 138425 username asma2026 138357 username mahdiyehalizadeh 138357 mac 138357 bytes_out 0 138357 bytes_in 0 138357 station_ip 83.123.198.61 138357 port 343 138357 unique_id port 138357 remote_ip 10.8.0.82 138358 username aminvpn 138358 mac 138358 bytes_out 0 138358 bytes_in 0 138358 station_ip 83.122.248.80 138358 port 282 138358 unique_id port 138358 remote_ip 10.8.0.14 138360 username amir 138360 mac 138360 bytes_out 0 138360 bytes_in 0 138360 station_ip 37.129.144.161 138360 port 200 138360 unique_id port 138360 remote_ip 10.8.1.22 138361 username hamidsalari 138361 mac 138361 bytes_out 0 138361 bytes_in 0 138361 station_ip 5.120.142.201 138361 port 345 138361 unique_id port 138361 remote_ip 10.8.0.222 138364 username amir 138364 mac 138364 bytes_out 0 138364 bytes_in 0 138364 station_ip 37.129.144.161 138364 port 312 138364 unique_id port 138364 remote_ip 10.8.0.50 138366 username mosi 138366 kill_reason Another user logged on this global unique id 138366 mac 138366 bytes_out 0 138366 bytes_in 0 138366 station_ip 151.235.75.185 138366 port 331 138366 unique_id port 138367 username alikomsari 138367 kill_reason Maximum number of concurrent logins reached 138367 mac 138367 bytes_out 0 138367 bytes_in 0 138367 station_ip 5.119.144.57 138367 port 312 138367 unique_id port 138369 username alikomsari 138369 mac 138369 bytes_out 0 138369 bytes_in 0 138369 station_ip 5.119.144.57 138369 port 346 138369 unique_id port 138369 remote_ip 10.8.0.70 138373 username barzegar 138373 mac 138373 bytes_out 0 138373 bytes_in 0 138373 station_ip 5.120.8.40 138373 port 282 138373 unique_id port 138373 remote_ip 10.8.0.234 138375 username farhad2 138375 mac 138375 bytes_out 0 138375 bytes_in 0 138375 station_ip 5.120.134.61 138375 port 315 138375 unique_id port 138375 remote_ip 10.8.0.190 138376 username aminvpn 138376 mac 138376 bytes_out 0 138376 bytes_in 0 138376 station_ip 83.123.230.211 138376 port 339 138376 unique_id port 138376 remote_ip 10.8.0.14 138377 username aminvpn 138377 mac 138377 bytes_out 0 138377 bytes_in 0 138377 station_ip 83.122.248.80 138377 port 282 138377 unique_id port 138377 remote_ip 10.8.0.14 138378 username aminvpn 138378 mac 138378 bytes_out 0 138378 bytes_in 0 138378 station_ip 83.123.230.211 138378 port 315 138378 unique_id port 138378 remote_ip 10.8.0.14 138379 username asma2026 138379 mac 138379 bytes_out 0 138379 bytes_in 0 138379 station_ip 5.217.114.77 138379 port 282 138379 unique_id port 138379 remote_ip 10.8.0.170 138381 username aminvpn 138381 mac 138381 bytes_out 0 138381 bytes_in 0 138381 station_ip 83.122.248.80 138381 port 339 138381 unique_id port 138381 remote_ip 10.8.0.14 138384 username yaghobi 138384 mac 138384 bytes_out 0 138384 bytes_in 0 138384 station_ip 83.122.39.243 138384 port 336 138384 unique_id port 138384 remote_ip 10.8.0.198 138390 username amir 138390 mac 138390 bytes_out 0 138390 bytes_in 0 138390 station_ip 37.129.144.161 138390 port 201 138390 unique_id port 138390 remote_ip 10.8.1.22 138392 username alihosseini1 138392 mac 138392 bytes_out 316116 138392 bytes_in 277600 138392 station_ip 5.119.50.105 138392 port 208 138392 unique_id port 138392 remote_ip 10.8.1.106 138394 username amir 138394 mac 138394 bytes_out 0 138394 bytes_in 0 138394 station_ip 37.129.144.161 138394 port 336 138394 unique_id port 138394 remote_ip 10.8.0.50 138395 username aminvpn 138395 mac 138395 bytes_out 0 138395 bytes_in 0 138395 station_ip 83.122.248.80 138395 port 341 138395 unique_id port 138395 remote_ip 10.8.0.14 138396 username aminvpn 138396 mac 138396 bytes_out 0 138396 bytes_in 0 138396 station_ip 83.123.230.211 138396 port 282 138396 unique_id port 138396 remote_ip 10.8.0.14 138398 username amir 138398 mac 138398 bytes_out 0 138398 bytes_in 0 138398 station_ip 37.129.144.161 138398 port 336 138398 unique_id port 138398 remote_ip 10.8.0.50 138400 username amir 138400 mac 138400 bytes_out 0 138400 bytes_in 0 138400 station_ip 37.129.144.161 138400 port 207 138400 unique_id port 138400 remote_ip 10.8.1.22 138401 username aminvpn 138401 mac 138401 bytes_out 0 138401 bytes_in 0 138401 station_ip 83.123.230.211 138401 port 282 138401 unique_id port 138401 remote_ip 10.8.0.14 138405 username aminvpn 138405 mac 138405 bytes_out 0 138405 bytes_in 0 138405 station_ip 83.122.248.80 138405 port 336 138405 unique_id port 138405 remote_ip 10.8.0.14 138410 username aminvpn 138410 mac 138410 bytes_out 0 138410 bytes_in 0 138410 station_ip 83.122.248.80 138410 port 312 138410 unique_id port 138410 remote_ip 10.8.0.14 138414 username asma2026 138414 mac 138414 bytes_out 0 138414 bytes_in 0 138414 station_ip 5.217.216.42 138414 port 312 138414 unique_id port 138414 remote_ip 10.8.0.170 138415 username aminvpn 138415 mac 138415 bytes_out 0 138415 bytes_in 0 138415 station_ip 83.122.248.80 138415 port 315 138415 unique_id port 138415 remote_ip 10.8.0.14 138423 username aminvpn 138423 mac 138423 bytes_out 0 138423 bytes_in 0 138423 station_ip 83.122.248.80 138423 port 315 138423 unique_id port 138423 remote_ip 10.8.0.14 138428 username asma2026 138428 mac 138428 bytes_out 0 138428 bytes_in 0 138428 station_ip 5.217.216.42 138428 port 282 138428 unique_id port 138428 remote_ip 10.8.0.170 138429 username vanila 138429 mac 138429 bytes_out 0 138429 bytes_in 0 138429 station_ip 83.123.170.181 138429 port 312 138429 unique_id port 138429 remote_ip 10.8.0.178 138430 username aminvpn 138430 mac 138430 bytes_out 0 138430 bytes_in 0 138430 station_ip 83.122.248.80 138430 port 315 138430 unique_id port 138430 remote_ip 10.8.0.14 138440 username khademi 138440 kill_reason Another user logged on this global unique id 138440 mac 138440 bytes_out 0 138440 bytes_in 0 138440 station_ip 113.203.70.160 138440 port 326 138440 unique_id port 138446 username amin.saeedi 138446 unique_id port 138446 terminate_cause User-Request 138446 bytes_out 565048 138446 bytes_in 22025511 138446 station_ip 5.119.140.114 138446 port 15730614 138446 nas_port_type Virtual 138446 remote_ip 5.5.5.43 138453 username asma2026 138453 mac 138453 bytes_out 0 138453 bytes_in 0 138453 station_ip 5.217.153.238 138453 port 315 138453 unique_id port 138453 remote_ip 10.8.0.170 138454 username asma2026 138454 kill_reason Maximum check online fails reached 138454 mac 138454 bytes_out 0 138454 bytes_in 0 138454 station_ip 5.217.153.238 138454 port 209 138454 unique_id port 138457 username farhad2 138457 kill_reason Another user logged on this global unique id 138457 mac 138457 bytes_out 0 138457 bytes_in 0 138457 station_ip 5.120.134.61 138457 port 206 138457 unique_id port 138457 remote_ip 10.8.1.222 138460 username godarzi 138460 mac 138460 bytes_out 0 138460 bytes_in 0 138460 station_ip 5.202.62.33 138460 port 208 138460 unique_id port 138461 username aminvpn 138461 mac 138461 bytes_out 0 138461 bytes_in 0 138416 kill_reason Another user logged on this global unique id 138416 mac 138416 bytes_out 0 138416 bytes_in 0 138416 station_ip 83.123.170.181 138416 port 312 138416 unique_id port 138420 username aminvpn 138420 mac 138420 bytes_out 0 138420 bytes_in 0 138420 station_ip 83.123.230.211 138420 port 282 138420 unique_id port 138420 remote_ip 10.8.0.14 138422 username saeed9658 138422 kill_reason Another user logged on this global unique id 138422 mac 138422 bytes_out 0 138422 bytes_in 0 138422 station_ip 5.119.158.124 138422 port 339 138422 unique_id port 138422 remote_ip 10.8.0.62 138424 username asma2026 138424 mac 138424 bytes_out 0 138424 bytes_in 0 138424 station_ip 5.217.216.42 138424 port 201 138424 unique_id port 138424 remote_ip 10.8.1.122 138426 username aminvpn 138426 mac 138426 bytes_out 0 138426 bytes_in 0 138426 station_ip 83.123.230.211 138426 port 282 138426 unique_id port 138426 remote_ip 10.8.0.14 138432 username jafari 138432 kill_reason Another user logged on this global unique id 138432 mac 138432 bytes_out 0 138432 bytes_in 0 138432 station_ip 5.134.155.101 138432 port 327 138432 unique_id port 138433 username aminvpn 138433 mac 138433 bytes_out 0 138433 bytes_in 0 138433 station_ip 83.123.230.211 138433 port 312 138433 unique_id port 138433 remote_ip 10.8.0.14 138434 username aminvpn 138434 mac 138434 bytes_out 0 138434 bytes_in 0 138434 station_ip 83.122.248.80 138434 port 282 138434 unique_id port 138434 remote_ip 10.8.0.14 138435 username aminvpn 138435 mac 138435 bytes_out 0 138435 bytes_in 0 138435 station_ip 83.123.230.211 138435 port 312 138435 unique_id port 138435 remote_ip 10.8.0.14 138436 username asma2026 138436 mac 138436 bytes_out 0 138436 bytes_in 0 138436 station_ip 5.217.8.53 138436 port 282 138436 unique_id port 138436 remote_ip 10.8.0.170 138439 username aminvpn 138439 mac 138439 bytes_out 0 138439 bytes_in 0 138439 station_ip 83.122.248.80 138439 port 315 138439 unique_id port 138439 remote_ip 10.8.0.14 138445 username alihosseini1 138445 mac 138445 bytes_out 0 138445 bytes_in 0 138445 station_ip 5.119.50.105 138445 port 312 138445 unique_id port 138445 remote_ip 10.8.0.166 138449 username godarzi 138449 kill_reason Another user logged on this global unique id 138449 mac 138449 bytes_out 0 138449 bytes_in 0 138449 station_ip 5.202.62.33 138449 port 208 138449 unique_id port 138449 remote_ip 10.8.1.230 138451 username asma2026 138451 mac 138451 bytes_out 0 138451 bytes_in 0 138451 station_ip 5.217.153.238 138451 port 210 138451 unique_id port 138451 remote_ip 10.8.1.122 138456 username houshang 138456 mac 138456 bytes_out 1567999 138456 bytes_in 27695009 138456 station_ip 5.120.169.195 138456 port 282 138456 unique_id port 138456 remote_ip 10.8.0.22 138458 username asma2026 138458 mac 138458 bytes_out 0 138458 bytes_in 0 138458 station_ip 5.217.232.151 138458 port 282 138458 unique_id port 138458 remote_ip 10.8.0.170 138466 username mosi 138466 kill_reason Another user logged on this global unique id 138466 mac 138466 bytes_out 0 138466 bytes_in 0 138466 station_ip 151.235.75.185 138466 port 331 138466 unique_id port 138467 username amir 138467 mac 138467 bytes_out 0 138467 bytes_in 0 138467 station_ip 37.129.144.161 138467 port 207 138467 unique_id port 138467 remote_ip 10.8.1.22 138468 username amir 138468 mac 138468 bytes_out 0 138468 bytes_in 0 138468 station_ip 37.129.144.161 138468 port 332 138468 unique_id port 138425 mac 138425 bytes_out 0 138425 bytes_in 0 138425 station_ip 5.217.216.42 138425 port 201 138425 unique_id port 138425 remote_ip 10.8.1.122 138427 username asma2026 138427 mac 138427 bytes_out 0 138427 bytes_in 0 138427 station_ip 5.217.216.42 138427 port 282 138427 unique_id port 138427 remote_ip 10.8.0.170 138431 username asma2026 138431 mac 138431 bytes_out 0 138431 bytes_in 0 138431 station_ip 5.217.216.42 138431 port 282 138431 unique_id port 138431 remote_ip 10.8.0.170 138437 username saeed9658 138437 mac 138437 bytes_out 0 138437 bytes_in 0 138437 station_ip 5.119.158.124 138437 port 339 138437 unique_id port 138438 username asma2026 138438 mac 138438 bytes_out 0 138438 bytes_in 0 138438 station_ip 5.217.8.53 138438 port 282 138438 unique_id port 138438 remote_ip 10.8.0.170 138441 username asma2026 138441 mac 138441 bytes_out 0 138441 bytes_in 0 138441 station_ip 5.217.8.53 138441 port 315 138441 unique_id port 138441 remote_ip 10.8.0.170 138442 username asma2026 138442 mac 138442 bytes_out 0 138442 bytes_in 0 138442 station_ip 5.217.8.53 138442 port 315 138442 unique_id port 138442 remote_ip 10.8.0.170 138443 username asma2026 138443 mac 138443 bytes_out 0 138443 bytes_in 0 138443 station_ip 5.217.8.53 138443 port 315 138443 unique_id port 138443 remote_ip 10.8.0.170 138444 username asma2026 138444 mac 138444 bytes_out 0 138444 bytes_in 0 138444 station_ip 5.217.8.53 138444 port 315 138444 unique_id port 138444 remote_ip 10.8.0.170 138447 username asma2026 138447 mac 138447 bytes_out 0 138447 bytes_in 0 138447 station_ip 5.217.8.53 138447 port 315 138447 unique_id port 138447 remote_ip 10.8.0.170 138448 username mosi 138448 kill_reason Another user logged on this global unique id 138448 mac 138448 bytes_out 0 138448 bytes_in 0 138448 station_ip 151.235.75.185 138448 port 331 138448 unique_id port 138450 username asma2026 138450 mac 138450 bytes_out 0 138450 bytes_in 0 138450 station_ip 5.217.153.238 138450 port 209 138450 unique_id port 138450 remote_ip 10.8.1.122 138452 username asma2026 138452 mac 138452 bytes_out 0 138452 bytes_in 0 138452 station_ip 5.217.153.238 138452 port 315 138452 unique_id port 138452 remote_ip 10.8.0.170 138455 username jafari 138455 mac 138455 bytes_out 0 138455 bytes_in 0 138455 station_ip 5.134.155.101 138455 port 327 138455 unique_id port 138459 username asma2026 138459 mac 138459 bytes_out 0 138459 bytes_in 0 138459 station_ip 5.217.232.151 138459 port 282 138459 unique_id port 138459 remote_ip 10.8.0.170 138462 username amir 138462 mac 138462 bytes_out 3674024 138462 bytes_in 31847645 138462 station_ip 37.129.144.161 138462 port 207 138462 unique_id port 138462 remote_ip 10.8.1.22 138463 username khalili 138463 mac 138463 bytes_out 0 138463 bytes_in 0 138463 station_ip 5.120.50.142 138463 port 332 138463 unique_id port 138465 username amir 138465 mac 138465 bytes_out 0 138465 bytes_in 0 138465 station_ip 37.129.144.161 138465 port 207 138465 unique_id port 138465 remote_ip 10.8.1.22 138469 username amir 138469 mac 138469 bytes_out 0 138469 bytes_in 0 138469 station_ip 37.129.144.161 138469 port 332 138469 unique_id port 138469 remote_ip 10.8.0.50 138472 username amir 138472 mac 138472 bytes_out 0 138472 bytes_in 0 138472 station_ip 37.129.144.161 138472 port 332 138472 unique_id port 138472 remote_ip 10.8.0.50 138461 station_ip 83.123.230.211 138461 port 336 138461 unique_id port 138461 remote_ip 10.8.0.14 138464 username aminvpn 138464 mac 138464 bytes_out 0 138464 bytes_in 0 138464 station_ip 83.122.228.204 138464 port 315 138464 unique_id port 138464 remote_ip 10.8.0.14 138471 username aminvpn 138471 mac 138471 bytes_out 0 138471 bytes_in 0 138471 station_ip 83.123.230.211 138471 port 327 138471 unique_id port 138471 remote_ip 10.8.0.14 138483 username amir 138483 mac 138483 bytes_out 0 138483 bytes_in 0 138483 station_ip 37.129.144.161 138483 port 332 138483 unique_id port 138483 remote_ip 10.8.0.50 138486 username asma2026 138486 mac 138486 bytes_out 0 138486 bytes_in 0 138486 station_ip 5.217.244.79 138486 port 327 138486 unique_id port 138486 remote_ip 10.8.0.170 138487 username amir 138487 mac 138487 bytes_out 34331 138487 bytes_in 159859 138487 station_ip 37.129.144.161 138487 port 210 138487 unique_id port 138487 remote_ip 10.8.1.22 138488 username amir 138488 mac 138488 bytes_out 0 138488 bytes_in 0 138488 station_ip 37.129.144.161 138488 port 206 138488 unique_id port 138488 remote_ip 10.8.1.22 138491 username mehrpouyan 138491 mac 138491 bytes_out 0 138491 bytes_in 0 138491 station_ip 5.120.49.114 138491 port 206 138491 unique_id port 138491 remote_ip 10.8.1.38 138493 username amir 138493 mac 138493 bytes_out 0 138493 bytes_in 0 138493 station_ip 37.129.144.161 138493 port 327 138493 unique_id port 138493 remote_ip 10.8.0.50 138494 username mohammadjavad 138494 mac 138494 bytes_out 240234 138494 bytes_in 1466316 138494 station_ip 83.123.175.83 138494 port 201 138494 unique_id port 138494 remote_ip 10.8.1.146 138503 username alipour 138503 mac 138503 bytes_out 0 138503 bytes_in 0 138503 station_ip 113.203.112.25 138503 port 340 138503 unique_id port 138503 remote_ip 10.8.0.102 138504 username amir 138504 mac 138504 bytes_out 0 138504 bytes_in 0 138504 station_ip 37.129.144.161 138504 port 206 138504 unique_id port 138504 remote_ip 10.8.1.22 138505 username mohammadjavad 138505 mac 138505 bytes_out 16044 138505 bytes_in 51898 138505 station_ip 83.123.175.83 138505 port 201 138505 unique_id port 138505 remote_ip 10.8.1.146 138508 username aminvpn 138508 mac 138508 bytes_out 0 138508 bytes_in 0 138508 station_ip 83.123.230.211 138508 port 327 138508 unique_id port 138508 remote_ip 10.8.0.14 138511 username amir 138511 mac 138511 bytes_out 19064 138511 bytes_in 103822 138511 station_ip 37.129.144.161 138511 port 210 138511 unique_id port 138511 remote_ip 10.8.1.22 138514 username asma2026 138514 mac 138514 bytes_out 0 138514 bytes_in 0 138514 station_ip 5.217.180.11 138514 port 332 138514 unique_id port 138514 remote_ip 10.8.0.170 138516 username amir 138516 mac 138516 bytes_out 0 138516 bytes_in 0 138516 station_ip 37.129.144.161 138516 port 339 138516 unique_id port 138516 remote_ip 10.8.0.50 138520 username amir 138520 mac 138520 bytes_out 0 138520 bytes_in 0 138520 station_ip 37.129.144.161 138520 port 339 138520 unique_id port 138520 remote_ip 10.8.0.50 138521 username forozandeh1 138521 mac 138521 bytes_out 0 138521 bytes_in 0 138521 station_ip 83.123.138.33 138521 port 315 138521 unique_id port 138521 remote_ip 10.8.0.130 138528 username asma2026 138528 mac 138528 bytes_out 0 138528 bytes_in 0 138528 station_ip 5.217.38.118 138528 port 332 138528 unique_id port 138528 remote_ip 10.8.0.170 138468 remote_ip 10.8.0.50 138470 username asma2026 138470 mac 138470 bytes_out 0 138470 bytes_in 0 138470 station_ip 5.217.232.151 138470 port 315 138470 unique_id port 138470 remote_ip 10.8.0.170 138473 username mosi 138473 kill_reason Another user logged on this global unique id 138473 mac 138473 bytes_out 0 138473 bytes_in 0 138473 station_ip 151.235.75.185 138473 port 331 138473 unique_id port 138477 username alihosseini1 138477 mac 138477 bytes_out 9696 138477 bytes_in 21030 138477 station_ip 5.119.50.105 138477 port 208 138477 unique_id port 138477 remote_ip 10.8.1.106 138482 username farhad2 138482 mac 138482 bytes_out 0 138482 bytes_in 0 138482 station_ip 5.120.134.61 138482 port 206 138482 unique_id port 138485 username farhad2 138485 mac 138485 bytes_out 173216 138485 bytes_in 458491 138485 station_ip 5.120.134.61 138485 port 206 138485 unique_id port 138485 remote_ip 10.8.1.222 138490 username alihosseini1 138490 mac 138490 bytes_out 5369 138490 bytes_in 8101 138490 station_ip 5.119.50.105 138490 port 208 138490 unique_id port 138490 remote_ip 10.8.1.106 138498 username barzegar 138498 mac 138498 bytes_out 0 138498 bytes_in 0 138498 station_ip 5.120.8.40 138498 port 315 138498 unique_id port 138498 remote_ip 10.8.0.234 138501 username godarzi 138501 kill_reason Another user logged on this global unique id 138501 mac 138501 bytes_out 0 138501 bytes_in 0 138501 station_ip 5.202.62.33 138501 port 207 138501 unique_id port 138501 remote_ip 10.8.1.230 138509 username mosi 138509 kill_reason Another user logged on this global unique id 138509 mac 138509 bytes_out 0 138509 bytes_in 0 138509 station_ip 151.235.75.185 138509 port 331 138509 unique_id port 138510 username morteza 138510 mac 138510 bytes_out 153397 138510 bytes_in 1683948 138510 station_ip 37.129.206.134 138510 port 201 138510 unique_id port 138510 remote_ip 10.8.1.62 138512 username aminvpn 138512 mac 138512 bytes_out 0 138512 bytes_in 0 138512 station_ip 83.122.228.204 138512 port 332 138512 unique_id port 138512 remote_ip 10.8.0.14 138513 username amin.saeedi 138513 unique_id port 138513 terminate_cause User-Request 138513 bytes_out 758453 138513 bytes_in 17321310 138513 station_ip 5.119.140.114 138513 port 15730615 138513 nas_port_type Virtual 138513 remote_ip 5.5.5.226 138515 username aminvpn 138515 mac 138515 bytes_out 0 138515 bytes_in 0 138515 station_ip 83.123.230.211 138515 port 336 138515 unique_id port 138515 remote_ip 10.8.0.14 138517 username aminvpn 138517 mac 138517 bytes_out 0 138517 bytes_in 0 138517 station_ip 83.122.228.204 138517 port 332 138517 unique_id port 138517 remote_ip 10.8.0.14 138518 username aminvpn 138518 mac 138518 bytes_out 0 138518 bytes_in 0 138518 station_ip 83.123.230.211 138518 port 339 138518 unique_id port 138518 remote_ip 10.8.0.14 138523 username aminvpn 138523 mac 138523 bytes_out 0 138523 bytes_in 0 138523 station_ip 83.122.228.204 138523 port 332 138523 unique_id port 138523 remote_ip 10.8.0.14 138525 username amir 138525 mac 138525 bytes_out 0 138525 bytes_in 0 138525 station_ip 37.129.144.161 138525 port 315 138525 unique_id port 138525 remote_ip 10.8.0.50 138526 username aminvpn 138526 mac 138526 bytes_out 0 138526 bytes_in 0 138526 station_ip 83.122.228.204 138526 port 332 138526 unique_id port 138526 remote_ip 10.8.0.14 138527 username mehrpouyan 138527 mac 138527 bytes_out 0 138527 bytes_in 0 138527 station_ip 5.119.199.238 138527 port 282 138474 username irannezhad 138474 mac 138474 bytes_out 0 138474 bytes_in 0 138474 station_ip 83.122.237.20 138474 port 336 138474 unique_id port 138474 remote_ip 10.8.0.182 138475 username asma2026 138475 mac 138475 bytes_out 0 138475 bytes_in 0 138475 station_ip 5.217.174.246 138475 port 327 138475 unique_id port 138475 remote_ip 10.8.0.170 138476 username aminvpn 138476 mac 138476 bytes_out 0 138476 bytes_in 0 138476 station_ip 83.122.228.204 138476 port 315 138476 unique_id port 138476 remote_ip 10.8.0.14 138478 username amir 138478 mac 138478 bytes_out 17979 138478 bytes_in 100261 138478 station_ip 37.129.144.161 138478 port 210 138478 unique_id port 138478 remote_ip 10.8.1.22 138479 username aminvpn 138479 mac 138479 bytes_out 0 138479 bytes_in 0 138479 station_ip 83.123.230.211 138479 port 332 138479 unique_id port 138479 remote_ip 10.8.0.14 138480 username aminvpn 138480 mac 138480 bytes_out 0 138480 bytes_in 0 138480 station_ip 83.122.228.204 138480 port 315 138480 unique_id port 138480 remote_ip 10.8.0.14 138481 username aminvpn 138481 mac 138481 bytes_out 0 138481 bytes_in 0 138481 station_ip 83.123.230.211 138481 port 336 138481 unique_id port 138481 remote_ip 10.8.0.14 138484 username yaghobi 138484 mac 138484 bytes_out 0 138484 bytes_in 0 138484 station_ip 37.129.72.122 138484 port 327 138484 unique_id port 138484 remote_ip 10.8.0.198 138489 username barzegar 138489 mac 138489 bytes_out 0 138489 bytes_in 0 138489 station_ip 5.120.8.40 138489 port 282 138489 unique_id port 138489 remote_ip 10.8.0.234 138492 username aminvpn 138492 mac 138492 bytes_out 0 138492 bytes_in 0 138492 station_ip 83.122.228.204 138492 port 315 138492 unique_id port 138492 remote_ip 10.8.0.14 138495 username aminvpn 138495 mac 138495 bytes_out 0 138495 bytes_in 0 138495 station_ip 83.123.230.211 138495 port 282 138495 unique_id port 138495 remote_ip 10.8.0.14 138496 username mehrpouyan 138496 mac 138496 bytes_out 35452 138496 bytes_in 86996 138496 station_ip 5.120.49.114 138496 port 206 138496 unique_id port 138496 remote_ip 10.8.1.38 138497 username aminvpn 138497 mac 138497 bytes_out 0 138497 bytes_in 0 138497 station_ip 83.122.228.204 138497 port 327 138497 unique_id port 138497 remote_ip 10.8.0.14 138499 username aminvpn 138499 mac 138499 bytes_out 0 138499 bytes_in 0 138499 station_ip 83.123.230.211 138499 port 282 138499 unique_id port 138499 remote_ip 10.8.0.14 138500 username amir 138500 mac 138500 bytes_out 23847 138500 bytes_in 171187 138500 station_ip 37.129.144.161 138500 port 206 138500 unique_id port 138500 remote_ip 10.8.1.22 138502 username amir 138502 mac 138502 bytes_out 0 138502 bytes_in 0 138502 station_ip 37.129.144.161 138502 port 206 138502 unique_id port 138502 remote_ip 10.8.1.22 138506 username barzegar 138506 mac 138506 bytes_out 0 138506 bytes_in 0 138506 station_ip 5.120.8.40 138506 port 206 138506 unique_id port 138506 remote_ip 10.8.1.174 138507 username aminvpn 138507 mac 138507 bytes_out 0 138507 bytes_in 0 138507 station_ip 83.122.228.204 138507 port 315 138507 unique_id port 138507 remote_ip 10.8.0.14 138519 username vanila 138519 mac 138519 bytes_out 0 138519 bytes_in 0 138519 station_ip 83.123.212.161 138519 port 336 138519 unique_id port 138519 remote_ip 10.8.0.178 138522 username amir 138522 mac 138522 bytes_out 0 138522 bytes_in 0 138522 station_ip 37.129.144.161 138522 port 336 138522 unique_id port 138522 remote_ip 10.8.0.50 138524 username aminvpn 138524 mac 138524 bytes_out 0 138524 bytes_in 0 138524 station_ip 83.123.230.211 138524 port 336 138524 unique_id port 138524 remote_ip 10.8.0.14 138534 username mehrpouyan 138534 mac 138534 bytes_out 0 138534 bytes_in 0 138534 station_ip 5.119.172.109 138534 port 339 138534 unique_id port 138534 remote_ip 10.8.0.74 138536 username aminvpn 138536 mac 138536 bytes_out 0 138536 bytes_in 0 138536 station_ip 83.122.228.204 138536 port 332 138536 unique_id port 138536 remote_ip 10.8.0.14 138538 username aminvpn 138538 mac 138538 bytes_out 0 138538 bytes_in 0 138538 station_ip 83.123.230.211 138538 port 315 138538 unique_id port 138538 remote_ip 10.8.0.14 138540 username asma2026 138540 mac 138540 bytes_out 0 138540 bytes_in 0 138540 station_ip 5.217.125.45 138540 port 332 138540 unique_id port 138540 remote_ip 10.8.0.170 138542 username aminvpn 138542 mac 138542 bytes_out 0 138542 bytes_in 0 138542 station_ip 83.123.230.211 138542 port 339 138542 unique_id port 138542 remote_ip 10.8.0.14 138547 username alihosseini1 138547 mac 138547 bytes_out 0 138547 bytes_in 0 138547 station_ip 5.119.50.105 138547 port 208 138547 unique_id port 138547 remote_ip 10.8.1.106 138549 username aminvpn 138549 mac 138549 bytes_out 0 138549 bytes_in 0 138549 station_ip 83.122.228.204 138549 port 282 138549 unique_id port 138549 remote_ip 10.8.0.14 138553 username barzegar 138553 mac 138553 bytes_out 0 138553 bytes_in 0 138553 station_ip 5.120.8.40 138553 port 208 138553 unique_id port 138553 remote_ip 10.8.1.174 138559 username aminvpn 138559 mac 138559 bytes_out 0 138559 bytes_in 0 138559 station_ip 83.123.230.211 138559 port 282 138559 unique_id port 138559 remote_ip 10.8.0.14 138563 username amir 138563 mac 138563 bytes_out 0 138563 bytes_in 0 138563 station_ip 37.129.144.161 138563 port 201 138563 unique_id port 138563 remote_ip 10.8.1.22 138576 username aminvpn 138576 mac 138576 bytes_out 0 138576 bytes_in 0 138576 station_ip 83.123.230.211 138576 port 343 138576 unique_id port 138576 remote_ip 10.8.0.14 138578 username mehrpouyan 138578 mac 138578 bytes_out 0 138578 bytes_in 0 138578 station_ip 5.120.168.27 138578 port 339 138578 unique_id port 138578 remote_ip 10.8.0.74 138580 username amir 138580 mac 138580 bytes_out 0 138580 bytes_in 0 138580 station_ip 37.129.144.161 138580 port 336 138580 unique_id port 138580 remote_ip 10.8.0.50 138583 username barzegar 138583 mac 138583 bytes_out 0 138583 bytes_in 0 138583 station_ip 5.120.8.40 138583 port 201 138583 unique_id port 138583 remote_ip 10.8.1.174 138585 username asma2026 138585 mac 138585 bytes_out 0 138585 bytes_in 0 138585 station_ip 5.217.10.210 138585 port 206 138585 unique_id port 138585 remote_ip 10.8.1.122 138587 username amir 138587 mac 138587 bytes_out 0 138587 bytes_in 0 138587 station_ip 37.129.144.161 138587 port 336 138587 unique_id port 138587 remote_ip 10.8.0.50 138588 username aminvpn 138588 mac 138588 bytes_out 0 138588 bytes_in 0 138588 station_ip 83.123.230.211 138588 port 332 138588 unique_id port 138588 remote_ip 10.8.0.14 138591 username asma2026 138591 mac 138591 bytes_out 0 138591 bytes_in 0 138591 station_ip 5.217.10.210 138591 port 332 138591 unique_id port 138591 remote_ip 10.8.0.170 138592 username aminvpn 138527 unique_id port 138527 remote_ip 10.8.0.74 138529 username aminvpn 138529 mac 138529 bytes_out 0 138529 bytes_in 0 138529 station_ip 83.123.230.211 138529 port 336 138529 unique_id port 138529 remote_ip 10.8.0.14 138531 username godarzi 138531 kill_reason Another user logged on this global unique id 138531 mac 138531 bytes_out 0 138531 bytes_in 0 138531 station_ip 5.202.62.33 138531 port 207 138531 unique_id port 138532 username amir 138532 mac 138532 bytes_out 0 138532 bytes_in 0 138532 station_ip 37.129.144.161 138532 port 315 138532 unique_id port 138532 remote_ip 10.8.0.50 138533 username aminvpn 138533 mac 138533 bytes_out 0 138533 bytes_in 0 138533 station_ip 83.122.228.204 138533 port 282 138533 unique_id port 138533 remote_ip 10.8.0.14 138537 username amir 138537 mac 138537 bytes_out 0 138537 bytes_in 0 138537 station_ip 37.129.144.161 138537 port 201 138537 unique_id port 138537 remote_ip 10.8.1.22 138539 username aminvpn 138539 mac 138539 bytes_out 0 138539 bytes_in 0 138539 station_ip 83.122.228.204 138539 port 332 138539 unique_id port 138539 remote_ip 10.8.0.14 138541 username amir 138541 mac 138541 bytes_out 0 138541 bytes_in 0 138541 station_ip 37.129.144.161 138541 port 201 138541 unique_id port 138541 remote_ip 10.8.1.22 138544 username mehrpouyan 138544 mac 138544 bytes_out 0 138544 bytes_in 0 138544 station_ip 5.119.56.204 138544 port 282 138544 unique_id port 138544 remote_ip 10.8.0.74 138545 username aminvpn 138545 mac 138545 bytes_out 0 138545 bytes_in 0 138545 station_ip 83.123.230.211 138545 port 340 138545 unique_id port 138545 remote_ip 10.8.0.14 138548 username barzegar 138548 mac 138548 bytes_out 27882 138548 bytes_in 49957 138548 station_ip 5.120.8.40 138548 port 206 138548 unique_id port 138548 remote_ip 10.8.1.174 138550 username houshang 138550 mac 138550 bytes_out 0 138550 bytes_in 0 138550 station_ip 5.120.169.195 138550 port 339 138550 unique_id port 138550 remote_ip 10.8.0.22 138551 username aminvpn 138551 mac 138551 bytes_out 0 138551 bytes_in 0 138551 station_ip 83.123.230.211 138551 port 340 138551 unique_id port 138551 remote_ip 10.8.0.14 138556 username aminvpn 138556 mac 138556 bytes_out 0 138556 bytes_in 0 138556 station_ip 83.123.230.211 138556 port 339 138556 unique_id port 138556 remote_ip 10.8.0.14 138560 username amir 138560 mac 138560 bytes_out 15976 138560 bytes_in 67660 138560 station_ip 37.129.144.161 138560 port 201 138560 unique_id port 138560 remote_ip 10.8.1.22 138562 username mehrpouyan 138562 mac 138562 bytes_out 0 138562 bytes_in 0 138562 station_ip 5.120.20.193 138562 port 332 138562 unique_id port 138562 remote_ip 10.8.0.74 138565 username aminvpn 138565 mac 138565 bytes_out 0 138565 bytes_in 0 138565 station_ip 83.122.228.204 138565 port 332 138565 unique_id port 138565 remote_ip 10.8.0.14 138566 username mostafa_es78 138566 unique_id port 138566 terminate_cause Lost-Carrier 138566 bytes_out 551846 138566 bytes_in 2666982 138566 station_ip 109.125.174.62 138566 port 15730613 138566 nas_port_type Virtual 138566 remote_ip 5.5.5.242 138567 username aminvpn 138567 mac 138567 bytes_out 0 138567 bytes_in 0 138567 station_ip 83.123.230.211 138567 port 282 138567 unique_id port 138567 remote_ip 10.8.0.14 138569 username amir 138569 mac 138569 bytes_out 0 138569 bytes_in 0 138569 station_ip 37.129.144.161 138569 port 201 138569 unique_id port 138569 remote_ip 10.8.1.22 138530 username amir 138530 mac 138530 bytes_out 0 138530 bytes_in 0 138530 station_ip 37.129.144.161 138530 port 315 138530 unique_id port 138530 remote_ip 10.8.0.50 138535 username aminvpn 138535 mac 138535 bytes_out 0 138535 bytes_in 0 138535 station_ip 83.123.230.211 138535 port 315 138535 unique_id port 138535 remote_ip 10.8.0.14 138543 username aminvpn 138543 mac 138543 bytes_out 0 138543 bytes_in 0 138543 station_ip 83.122.228.204 138543 port 332 138543 unique_id port 138543 remote_ip 10.8.0.14 138546 username amir 138546 mac 138546 bytes_out 15891 138546 bytes_in 84007 138546 station_ip 37.129.144.161 138546 port 201 138546 unique_id port 138546 remote_ip 10.8.1.22 138552 username amir 138552 mac 138552 bytes_out 0 138552 bytes_in 0 138552 station_ip 37.129.144.161 138552 port 201 138552 unique_id port 138552 remote_ip 10.8.1.22 138554 username aminvpn 138554 mac 138554 bytes_out 0 138554 bytes_in 0 138554 station_ip 83.122.228.204 138554 port 282 138554 unique_id port 138554 remote_ip 10.8.0.14 138555 username alihosseini1 138555 mac 138555 bytes_out 2328 138555 bytes_in 6477 138555 station_ip 5.119.50.105 138555 port 206 138555 unique_id port 138555 remote_ip 10.8.1.106 138557 username amir 138557 mac 138557 bytes_out 0 138557 bytes_in 0 138557 station_ip 37.129.144.161 138557 port 282 138557 unique_id port 138557 remote_ip 10.8.0.50 138558 username aminvpn 138558 mac 138558 bytes_out 0 138558 bytes_in 0 138558 station_ip 83.122.228.204 138558 port 340 138558 unique_id port 138558 remote_ip 10.8.0.14 138561 username aminvpn 138561 mac 138561 bytes_out 0 138561 bytes_in 0 138561 station_ip 83.122.228.204 138561 port 339 138561 unique_id port 138561 remote_ip 10.8.0.14 138564 username aminvpn 138564 mac 138564 bytes_out 0 138564 bytes_in 0 138564 station_ip 83.123.230.211 138564 port 282 138564 unique_id port 138564 remote_ip 10.8.0.14 138568 username mehdizare 138568 kill_reason Another user logged on this global unique id 138568 mac 138568 bytes_out 0 138568 bytes_in 0 138568 station_ip 5.120.148.206 138568 port 348 138568 unique_id port 138568 remote_ip 10.8.0.90 138570 username farhad2 138570 mac 138570 bytes_out 3773740 138570 bytes_in 26822006 138570 station_ip 5.119.109.5 138570 port 211 138570 unique_id port 138570 remote_ip 10.8.1.222 138572 username sedighe 138572 mac 138572 bytes_out 0 138572 bytes_in 0 138572 station_ip 83.123.67.253 138572 port 336 138572 unique_id port 138572 remote_ip 10.8.0.146 138579 username aminvpn 138579 mac 138579 bytes_out 0 138579 bytes_in 0 138579 station_ip 83.123.230.211 138579 port 343 138579 unique_id port 138579 remote_ip 10.8.0.14 138582 username aminvpn 138582 mac 138582 bytes_out 0 138582 bytes_in 0 138582 station_ip 83.123.230.211 138582 port 343 138582 unique_id port 138582 remote_ip 10.8.0.14 138584 username asma2026 138584 mac 138584 bytes_out 0 138584 bytes_in 0 138584 station_ip 5.217.10.210 138584 port 332 138584 unique_id port 138584 remote_ip 10.8.0.170 138586 username aminvpn 138586 mac 138586 bytes_out 0 138586 bytes_in 0 138586 station_ip 83.122.228.204 138586 port 339 138586 unique_id port 138586 remote_ip 10.8.0.14 138589 username godarzi 138589 mac 138589 bytes_out 0 138589 bytes_in 0 138589 station_ip 5.202.62.33 138589 port 207 138589 unique_id port 138590 username aminvpn 138590 mac 138590 bytes_out 0 138590 bytes_in 0 138571 username aminvpn 138571 mac 138571 bytes_out 0 138571 bytes_in 0 138571 station_ip 83.122.228.204 138571 port 340 138571 unique_id port 138571 remote_ip 10.8.0.14 138573 username aminvpn 138573 mac 138573 bytes_out 0 138573 bytes_in 0 138573 station_ip 83.123.230.211 138573 port 282 138573 unique_id port 138573 remote_ip 10.8.0.14 138574 username aminvpn 138574 mac 138574 bytes_out 0 138574 bytes_in 0 138574 station_ip 83.122.228.204 138574 port 336 138574 unique_id port 138574 remote_ip 10.8.0.14 138575 username amir 138575 mac 138575 bytes_out 0 138575 bytes_in 0 138575 station_ip 37.129.144.161 138575 port 282 138575 unique_id port 138575 remote_ip 10.8.0.50 138577 username aminvpn 138577 mac 138577 bytes_out 0 138577 bytes_in 0 138577 station_ip 83.122.228.204 138577 port 282 138577 unique_id port 138577 remote_ip 10.8.0.14 138581 username aminvpn 138581 mac 138581 bytes_out 0 138581 bytes_in 0 138581 station_ip 83.122.228.204 138581 port 339 138581 unique_id port 138581 remote_ip 10.8.0.14 138600 username amir 138600 mac 138600 bytes_out 0 138600 bytes_in 0 138600 station_ip 37.129.144.161 138600 port 339 138600 unique_id port 138600 remote_ip 10.8.0.50 138601 username sedighe 138601 mac 138601 bytes_out 0 138601 bytes_in 0 138601 station_ip 83.123.67.253 138601 port 341 138601 unique_id port 138601 remote_ip 10.8.0.146 138603 username aminvpn 138603 mac 138603 bytes_out 0 138603 bytes_in 0 138603 station_ip 83.122.228.204 138603 port 345 138603 unique_id port 138603 remote_ip 10.8.0.14 138608 username amir 138608 mac 138608 bytes_out 0 138608 bytes_in 0 138608 station_ip 37.129.144.161 138608 port 207 138608 unique_id port 138608 remote_ip 10.8.1.22 138610 username asma2026 138610 mac 138610 bytes_out 0 138610 bytes_in 0 138610 station_ip 5.217.155.155 138610 port 207 138610 unique_id port 138610 remote_ip 10.8.1.122 138612 username aminvpn 138612 mac 138612 bytes_out 0 138612 bytes_in 0 138612 station_ip 83.122.228.204 138612 port 341 138612 unique_id port 138612 remote_ip 10.8.0.14 138616 username sedighe 138616 mac 138616 bytes_out 85973 138616 bytes_in 115053 138616 station_ip 113.203.6.203 138616 port 339 138616 unique_id port 138616 remote_ip 10.8.0.146 138617 username aminvpn 138617 mac 138617 bytes_out 0 138617 bytes_in 0 138617 station_ip 83.122.228.204 138617 port 340 138617 unique_id port 138617 remote_ip 10.8.0.14 138618 username aminvpn 138618 mac 138618 bytes_out 0 138618 bytes_in 0 138618 station_ip 83.123.230.211 138618 port 339 138618 unique_id port 138618 remote_ip 10.8.0.14 138620 username mehrpouyan 138620 mac 138620 bytes_out 0 138620 bytes_in 0 138620 station_ip 5.119.141.52 138620 port 332 138620 unique_id port 138620 remote_ip 10.8.0.74 138624 username aminvpn 138624 mac 138624 bytes_out 0 138624 bytes_in 0 138624 station_ip 83.122.228.204 138624 port 332 138624 unique_id port 138624 remote_ip 10.8.0.14 138625 username aminvpn 138625 mac 138625 bytes_out 0 138625 bytes_in 0 138625 station_ip 83.123.230.211 138625 port 343 138625 unique_id port 138625 remote_ip 10.8.0.14 138629 username yaghobi 138629 mac 138629 bytes_out 0 138629 bytes_in 0 138629 station_ip 37.129.138.60 138629 port 282 138629 unique_id port 138629 remote_ip 10.8.0.198 138633 username amir 138633 mac 138633 bytes_out 0 138633 bytes_in 0 138633 station_ip 37.129.144.161 138590 station_ip 83.122.228.204 138590 port 336 138590 unique_id port 138590 remote_ip 10.8.0.14 138594 username aminvpn 138594 mac 138594 bytes_out 0 138594 bytes_in 0 138594 station_ip 83.122.228.204 138594 port 332 138594 unique_id port 138594 remote_ip 10.8.0.14 138596 username mehrpouyan 138596 mac 138596 bytes_out 0 138596 bytes_in 0 138596 station_ip 5.120.176.230 138596 port 282 138596 unique_id port 138596 remote_ip 10.8.0.74 138597 username aminvpn 138597 mac 138597 bytes_out 0 138597 bytes_in 0 138597 station_ip 83.123.230.211 138597 port 336 138597 unique_id port 138597 remote_ip 10.8.0.14 138598 username aminvpn 138598 mac 138598 bytes_out 0 138598 bytes_in 0 138598 station_ip 83.122.228.204 138598 port 282 138598 unique_id port 138598 remote_ip 10.8.0.14 138602 username houshang 138602 mac 138602 bytes_out 0 138602 bytes_in 0 138602 station_ip 5.120.169.195 138602 port 336 138602 unique_id port 138602 remote_ip 10.8.0.22 138605 username aminvpn 138605 mac 138605 bytes_out 0 138605 bytes_in 0 138605 station_ip 83.123.230.211 138605 port 336 138605 unique_id port 138605 remote_ip 10.8.0.14 138609 username aminvpn 138609 mac 138609 bytes_out 0 138609 bytes_in 0 138609 station_ip 83.123.230.211 138609 port 336 138609 unique_id port 138609 remote_ip 10.8.0.14 138611 username asma2026 138611 mac 138611 bytes_out 14880 138611 bytes_in 33561 138611 station_ip 5.217.155.155 138611 port 340 138611 unique_id port 138611 remote_ip 10.8.0.170 138613 username amir 138613 mac 138613 bytes_out 0 138613 bytes_in 0 138613 station_ip 37.129.144.161 138613 port 206 138613 unique_id port 138613 remote_ip 10.8.1.22 138615 username asma2026 138615 mac 138615 bytes_out 0 138615 bytes_in 0 138615 station_ip 5.217.155.155 138615 port 206 138615 unique_id port 138615 remote_ip 10.8.1.122 138619 username aminvpn 138619 mac 138619 bytes_out 0 138619 bytes_in 0 138619 station_ip 83.122.228.204 138619 port 341 138619 unique_id port 138619 remote_ip 10.8.0.14 138622 username barzegar 138622 mac 138622 bytes_out 5530 138622 bytes_in 8398 138622 station_ip 5.120.8.40 138622 port 201 138622 unique_id port 138622 remote_ip 10.8.1.174 138623 username amir 138623 mac 138623 bytes_out 0 138623 bytes_in 0 138623 station_ip 37.129.144.161 138623 port 206 138623 unique_id port 138623 remote_ip 10.8.1.22 138627 username aminvpn 138627 mac 138627 bytes_out 0 138627 bytes_in 0 138627 station_ip 83.122.228.204 138627 port 345 138627 unique_id port 138627 remote_ip 10.8.0.14 138630 username aminvpn 138630 mac 138630 bytes_out 0 138630 bytes_in 0 138630 station_ip 83.123.230.211 138630 port 332 138630 unique_id port 138630 remote_ip 10.8.0.14 138631 username amir 138631 mac 138631 bytes_out 0 138631 bytes_in 0 138631 station_ip 37.129.144.161 138631 port 343 138631 unique_id port 138631 remote_ip 10.8.0.50 138634 username asma2026 138634 mac 138634 bytes_out 0 138634 bytes_in 0 138634 station_ip 5.217.84.54 138634 port 206 138634 unique_id port 138634 remote_ip 10.8.1.122 138637 username aminvpn 138637 mac 138637 bytes_out 0 138637 bytes_in 0 138637 station_ip 83.122.228.204 138637 port 332 138637 unique_id port 138637 remote_ip 10.8.0.14 138643 username alipour 138643 mac 138643 bytes_out 0 138643 bytes_in 0 138643 station_ip 113.203.112.25 138643 port 327 138643 unique_id port 138643 remote_ip 10.8.0.102 138592 mac 138592 bytes_out 0 138592 bytes_in 0 138592 station_ip 83.123.230.211 138592 port 339 138592 unique_id port 138592 remote_ip 10.8.0.14 138593 username farhad2 138593 mac 138593 bytes_out 0 138593 bytes_in 0 138593 station_ip 5.119.109.5 138593 port 340 138593 unique_id port 138593 remote_ip 10.8.0.190 138595 username amir 138595 mac 138595 bytes_out 19619 138595 bytes_in 107790 138595 station_ip 37.129.144.161 138595 port 206 138595 unique_id port 138595 remote_ip 10.8.1.22 138599 username aminvpn 138599 mac 138599 bytes_out 0 138599 bytes_in 0 138599 station_ip 83.123.230.211 138599 port 343 138599 unique_id port 138599 remote_ip 10.8.0.14 138604 username barzegar 138604 mac 138604 bytes_out 13640 138604 bytes_in 23501 138604 station_ip 5.120.8.40 138604 port 201 138604 unique_id port 138604 remote_ip 10.8.1.174 138606 username farhad2 138606 mac 138606 bytes_out 64151 138606 bytes_in 216607 138606 station_ip 5.119.109.5 138606 port 206 138606 unique_id port 138606 remote_ip 10.8.1.222 138607 username aminvpn 138607 mac 138607 bytes_out 0 138607 bytes_in 0 138607 station_ip 83.122.228.204 138607 port 341 138607 unique_id port 138607 remote_ip 10.8.0.14 138614 username aminvpn 138614 mac 138614 bytes_out 0 138614 bytes_in 0 138614 station_ip 83.123.230.211 138614 port 336 138614 unique_id port 138614 remote_ip 10.8.0.14 138621 username aminvpn 138621 mac 138621 bytes_out 0 138621 bytes_in 0 138621 station_ip 83.123.230.211 138621 port 339 138621 unique_id port 138621 remote_ip 10.8.0.14 138626 username amir 138626 mac 138626 bytes_out 0 138626 bytes_in 0 138626 station_ip 37.129.144.161 138626 port 332 138626 unique_id port 138626 remote_ip 10.8.0.50 138628 username mosi 138628 kill_reason Another user logged on this global unique id 138628 mac 138628 bytes_out 0 138628 bytes_in 0 138628 station_ip 151.235.75.185 138628 port 331 138628 unique_id port 138632 username aminvpn 138632 mac 138632 bytes_out 0 138632 bytes_in 0 138632 station_ip 83.122.228.204 138632 port 347 138632 unique_id port 138632 remote_ip 10.8.0.14 138636 username aminvpn 138636 unique_id port 138636 terminate_cause User-Request 138636 bytes_out 343103 138636 bytes_in 2200115 138636 station_ip 5.233.49.34 138636 port 15730616 138636 nas_port_type Virtual 138636 remote_ip 5.5.5.227 138638 username mehrpouyan 138638 mac 138638 bytes_out 311381 138638 bytes_in 1606360 138638 station_ip 5.120.136.32 138638 port 341 138638 unique_id port 138638 remote_ip 10.8.0.74 138639 username aminvpn 138639 mac 138639 bytes_out 0 138639 bytes_in 0 138639 station_ip 83.123.230.211 138639 port 282 138639 unique_id port 138639 remote_ip 10.8.0.14 138640 username aminvpn 138640 mac 138640 bytes_out 0 138640 bytes_in 0 138640 station_ip 83.122.228.204 138640 port 341 138640 unique_id port 138640 remote_ip 10.8.0.14 138641 username aminvpn 138641 mac 138641 bytes_out 0 138641 bytes_in 0 138641 station_ip 83.123.230.211 138641 port 347 138641 unique_id port 138641 remote_ip 10.8.0.14 138645 username mosi 138645 kill_reason Another user logged on this global unique id 138645 mac 138645 bytes_out 0 138645 bytes_in 0 138645 station_ip 151.235.75.185 138645 port 331 138645 unique_id port 138653 username amir 138653 mac 138653 bytes_out 0 138653 bytes_in 0 138653 station_ip 37.129.144.161 138653 port 327 138653 unique_id port 138653 remote_ip 10.8.0.50 138655 username alipour 138655 mac 138633 port 207 138633 unique_id port 138633 remote_ip 10.8.1.22 138635 username aminvpn 138635 mac 138635 bytes_out 0 138635 bytes_in 0 138635 station_ip 83.123.230.211 138635 port 282 138635 unique_id port 138635 remote_ip 10.8.0.14 138642 username amir 138642 mac 138642 bytes_out 0 138642 bytes_in 0 138642 station_ip 37.129.144.161 138642 port 206 138642 unique_id port 138642 remote_ip 10.8.1.22 138646 username farhad2 138646 mac 138646 bytes_out 0 138646 bytes_in 0 138646 station_ip 5.119.187.228 138646 port 339 138646 unique_id port 138646 remote_ip 10.8.0.190 138648 username aminvpn 138648 mac 138648 bytes_out 0 138648 bytes_in 0 138648 station_ip 83.123.230.211 138648 port 347 138648 unique_id port 138648 remote_ip 10.8.0.14 138650 username farhad2 138650 mac 138650 bytes_out 0 138650 bytes_in 0 138650 station_ip 5.119.187.228 138650 port 332 138650 unique_id port 138650 remote_ip 10.8.0.190 138654 username mosi 138654 kill_reason Another user logged on this global unique id 138654 mac 138654 bytes_out 0 138654 bytes_in 0 138654 station_ip 151.235.75.185 138654 port 331 138654 unique_id port 138657 username mehrpouyan 138657 kill_reason Maximum number of concurrent logins reached 138657 mac 138657 bytes_out 0 138657 bytes_in 0 138657 station_ip 5.119.16.100 138657 port 350 138657 unique_id port 138660 username mehrpouyan 138660 mac 138660 bytes_out 0 138660 bytes_in 0 138660 station_ip 5.120.126.81 138660 port 343 138660 unique_id port 138660 remote_ip 10.8.0.74 138667 username barzegar 138667 mac 138667 bytes_out 2807 138667 bytes_in 5432 138667 station_ip 5.120.8.40 138667 port 201 138667 unique_id port 138667 remote_ip 10.8.1.174 138669 username saeed9658 138669 mac 138669 bytes_out 0 138669 bytes_in 0 138669 station_ip 5.119.158.124 138669 port 340 138669 unique_id port 138669 remote_ip 10.8.0.62 138675 username sedighe 138675 mac 138675 bytes_out 0 138675 bytes_in 0 138675 station_ip 113.203.6.203 138675 port 336 138675 unique_id port 138675 remote_ip 10.8.0.146 138679 username milan 138679 kill_reason Another user logged on this global unique id 138679 mac 138679 bytes_out 0 138679 bytes_in 0 138679 station_ip 5.119.229.52 138679 port 315 138679 unique_id port 138679 remote_ip 10.8.0.218 138681 username vanila 138681 mac 138681 bytes_out 0 138681 bytes_in 0 138681 station_ip 83.123.212.161 138681 port 341 138681 unique_id port 138681 remote_ip 10.8.0.178 138683 username barzegar 138683 mac 138683 bytes_out 0 138683 bytes_in 0 138683 station_ip 5.120.8.40 138683 port 341 138683 unique_id port 138683 remote_ip 10.8.0.234 138692 username asma2026 138692 kill_reason Maximum check online fails reached 138692 mac 138692 bytes_out 0 138692 bytes_in 0 138692 station_ip 5.217.235.193 138692 port 201 138692 unique_id port 138696 username barzegar 138696 mac 138696 bytes_out 284104 138696 bytes_in 2709685 138696 station_ip 5.120.8.40 138696 port 336 138696 unique_id port 138696 remote_ip 10.8.0.234 138698 username sedighe 138698 mac 138698 bytes_out 0 138698 bytes_in 0 138698 station_ip 83.123.152.30 138698 port 345 138698 unique_id port 138698 remote_ip 10.8.0.146 138701 username vanila 138701 mac 138701 bytes_out 0 138701 bytes_in 0 138701 station_ip 83.123.212.161 138701 port 339 138701 unique_id port 138701 remote_ip 10.8.0.178 138703 username barzegar 138703 mac 138703 bytes_out 0 138703 bytes_in 0 138703 station_ip 5.120.8.40 138703 port 339 138644 username aminvpn 138644 mac 138644 bytes_out 0 138644 bytes_in 0 138644 station_ip 83.122.228.204 138644 port 341 138644 unique_id port 138644 remote_ip 10.8.0.14 138647 username barzegar 138647 mac 138647 bytes_out 17186 138647 bytes_in 20842 138647 station_ip 5.120.8.40 138647 port 201 138647 unique_id port 138647 remote_ip 10.8.1.174 138649 username asma2026 138649 mac 138649 bytes_out 4285 138649 bytes_in 7557 138649 station_ip 5.217.84.54 138649 port 332 138649 unique_id port 138649 remote_ip 10.8.0.170 138651 username barzegar 138651 mac 138651 bytes_out 0 138651 bytes_in 0 138651 station_ip 5.120.8.40 138651 port 201 138651 unique_id port 138651 remote_ip 10.8.1.174 138652 username farhad2 138652 mac 138652 bytes_out 0 138652 bytes_in 0 138652 station_ip 5.119.187.228 138652 port 347 138652 unique_id port 138652 remote_ip 10.8.0.190 138656 username asma2026 138656 kill_reason Maximum check online fails reached 138656 mac 138656 bytes_out 0 138656 bytes_in 0 138656 station_ip 5.217.235.193 138656 port 327 138656 unique_id port 138661 username barzegar 138661 mac 138661 bytes_out 9669 138661 bytes_in 12621 138661 station_ip 5.120.8.40 138661 port 201 138661 unique_id port 138661 remote_ip 10.8.1.174 138663 username mehrpouyan 138663 kill_reason Maximum check online fails reached 138663 mac 138663 bytes_out 0 138663 bytes_in 0 138663 station_ip 5.119.16.100 138663 port 347 138663 unique_id port 138666 username godarzi 138666 mac 138666 bytes_out 0 138666 bytes_in 0 138666 station_ip 5.202.62.33 138666 port 282 138666 unique_id port 138666 remote_ip 10.8.0.174 138668 username kordestani 138668 mac 138668 bytes_out 692149 138668 bytes_in 6507767 138668 station_ip 151.235.107.131 138668 port 351 138668 unique_id port 138668 remote_ip 10.8.0.134 138670 username alikomsari 138670 mac 138670 bytes_out 0 138670 bytes_in 0 138670 station_ip 5.120.77.5 138670 port 345 138670 unique_id port 138670 remote_ip 10.8.0.70 138671 username amir 138671 mac 138671 bytes_out 0 138671 bytes_in 0 138671 station_ip 37.129.144.161 138671 port 349 138671 unique_id port 138671 remote_ip 10.8.0.50 138673 username mehrpouyan 138673 mac 138673 bytes_out 0 138673 bytes_in 0 138673 station_ip 5.119.16.100 138673 port 343 138673 unique_id port 138673 remote_ip 10.8.0.74 138676 username barzegar 138676 mac 138676 bytes_out 0 138676 bytes_in 0 138676 station_ip 5.120.8.40 138676 port 282 138676 unique_id port 138676 remote_ip 10.8.0.234 138677 username mostafa_es78 138677 unique_id port 138677 terminate_cause User-Request 138677 bytes_out 35246 138677 bytes_in 149220 138677 station_ip 5.119.177.173 138677 port 15730619 138677 nas_port_type Virtual 138677 remote_ip 5.5.5.255 138682 username godarzi 138682 mac 138682 bytes_out 0 138682 bytes_in 0 138682 station_ip 5.202.62.33 138682 port 336 138682 unique_id port 138682 remote_ip 10.8.0.174 138685 username farhad2 138685 kill_reason Another user logged on this global unique id 138685 mac 138685 bytes_out 0 138685 bytes_in 0 138685 station_ip 5.119.187.228 138685 port 332 138685 unique_id port 138685 remote_ip 10.8.0.190 138686 username mehrpouyan 138686 mac 138686 bytes_out 443107 138686 bytes_in 3295754 138686 station_ip 5.119.13.40 138686 port 340 138686 unique_id port 138686 remote_ip 10.8.0.74 138688 username mehrpouyan 138688 mac 138688 bytes_out 148732 138688 bytes_in 489957 138688 station_ip 5.119.226.60 138688 port 341 138688 unique_id port 138655 bytes_out 0 138655 bytes_in 0 138655 station_ip 113.203.112.25 138655 port 332 138655 unique_id port 138655 remote_ip 10.8.0.102 138658 username mehrpouyan 138658 kill_reason Maximum number of concurrent logins reached 138658 mac 138658 bytes_out 0 138658 bytes_in 0 138658 station_ip 5.119.16.100 138658 port 350 138658 unique_id port 138659 username mehrpouyan 138659 kill_reason Maximum number of concurrent logins reached 138659 mac 138659 bytes_out 0 138659 bytes_in 0 138659 station_ip 5.119.16.100 138659 port 350 138659 unique_id port 138662 username asma2026 138662 mac 138662 bytes_out 5435 138662 bytes_in 13547 138662 station_ip 5.217.235.193 138662 port 349 138662 unique_id port 138662 remote_ip 10.8.0.170 138664 username amir 138664 mac 138664 bytes_out 0 138664 bytes_in 0 138664 station_ip 37.129.144.161 138664 port 351 138664 unique_id port 138664 remote_ip 10.8.0.50 138665 username asma2026 138665 mac 138665 bytes_out 0 138665 bytes_in 0 138665 station_ip 5.217.235.193 138665 port 352 138665 unique_id port 138665 remote_ip 10.8.0.170 138672 username asma2026 138672 kill_reason Maximum check online fails reached 138672 mac 138672 bytes_out 0 138672 bytes_in 0 138672 station_ip 5.217.235.193 138672 port 207 138672 unique_id port 138674 username khademi 138674 kill_reason Another user logged on this global unique id 138674 mac 138674 bytes_out 0 138674 bytes_in 0 138674 station_ip 113.203.70.160 138674 port 326 138674 unique_id port 138678 username sabaghnezhad 138678 mac 138678 bytes_out 893284 138678 bytes_in 3614992 138678 station_ip 5.215.214.3 138678 port 312 138678 unique_id port 138678 remote_ip 10.8.0.186 138680 username barzegar 138680 mac 138680 bytes_out 0 138680 bytes_in 0 138680 station_ip 5.120.8.40 138680 port 336 138680 unique_id port 138680 remote_ip 10.8.0.234 138684 username asma2026 138684 mac 138684 bytes_out 4610 138684 bytes_in 7476 138684 station_ip 5.217.235.193 138684 port 201 138684 unique_id port 138684 remote_ip 10.8.1.122 138687 username barzegar 138687 mac 138687 bytes_out 0 138687 bytes_in 0 138687 station_ip 5.120.8.40 138687 port 336 138687 unique_id port 138687 remote_ip 10.8.0.234 138690 username asma2026 138690 mac 138690 bytes_out 0 138690 bytes_in 0 138690 station_ip 5.217.235.193 138690 port 341 138690 unique_id port 138690 remote_ip 10.8.0.170 138691 username yaghobi 138691 mac 138691 bytes_out 0 138691 bytes_in 0 138691 station_ip 37.129.138.60 138691 port 346 138691 unique_id port 138691 remote_ip 10.8.0.198 138693 username aminvpn 138693 mac 138693 bytes_out 0 138693 bytes_in 0 138693 station_ip 83.122.228.204 138693 port 339 138693 unique_id port 138693 remote_ip 10.8.0.14 138695 username mahdiyehalizadeh 138695 mac 138695 bytes_out 0 138695 bytes_in 0 138695 station_ip 83.123.83.28 138695 port 350 138695 unique_id port 138695 remote_ip 10.8.0.82 138699 username vanila 138699 mac 138699 bytes_out 106968 138699 bytes_in 307940 138699 station_ip 83.123.212.161 138699 port 349 138699 unique_id port 138699 remote_ip 10.8.0.178 138702 username barzegar 138702 mac 138702 bytes_out 3920 138702 bytes_in 5466 138702 station_ip 5.120.8.40 138702 port 339 138702 unique_id port 138702 remote_ip 10.8.0.234 138706 username barzegar 138706 mac 138706 bytes_out 0 138706 bytes_in 0 138706 station_ip 5.120.8.40 138706 port 339 138706 unique_id port 138706 remote_ip 10.8.0.234 138708 username asma2026 138708 kill_reason Maximum check online fails reached 138688 remote_ip 10.8.0.74 138689 username vanila 138689 mac 138689 bytes_out 68675 138689 bytes_in 51559 138689 station_ip 83.123.212.161 138689 port 349 138689 unique_id port 138689 remote_ip 10.8.0.178 138694 username mehrpouyan 138694 mac 138694 bytes_out 0 138694 bytes_in 0 138694 station_ip 5.119.136.255 138694 port 351 138694 unique_id port 138694 remote_ip 10.8.0.74 138697 username mehrpouyan 138697 mac 138697 bytes_out 85050 138697 bytes_in 252088 138697 station_ip 5.120.142.10 138697 port 339 138697 unique_id port 138697 remote_ip 10.8.0.74 138700 username yaghobi 138700 mac 138700 bytes_out 0 138700 bytes_in 0 138700 station_ip 37.129.138.60 138700 port 341 138700 unique_id port 138700 remote_ip 10.8.0.198 138704 username sabaghnezhad 138704 mac 138704 bytes_out 1970876 138704 bytes_in 8453586 138704 station_ip 5.215.214.3 138704 port 312 138704 unique_id port 138704 remote_ip 10.8.0.186 138707 username vanila 138707 mac 138707 bytes_out 3958007 138707 bytes_in 462724 138707 station_ip 83.123.212.161 138707 port 312 138707 unique_id port 138707 remote_ip 10.8.0.178 138711 username kordestani 138711 kill_reason Another user logged on this global unique id 138711 mac 138711 bytes_out 0 138711 bytes_in 0 138711 station_ip 151.235.107.131 138711 port 282 138711 unique_id port 138711 remote_ip 10.8.0.134 138713 username mohammadmahdi 138713 kill_reason Another user logged on this global unique id 138713 mac 138713 bytes_out 0 138713 bytes_in 0 138713 station_ip 5.119.130.76 138713 port 341 138713 unique_id port 138713 remote_ip 10.8.0.54 138714 username khalili 138714 mac 138714 bytes_out 0 138714 bytes_in 0 138714 station_ip 5.120.50.142 138714 port 340 138714 unique_id port 138717 username mohammadmahdi 138717 mac 138717 bytes_out 0 138717 bytes_in 0 138717 station_ip 5.119.130.76 138717 port 341 138717 unique_id port 138719 username amir 138719 mac 138719 bytes_out 0 138719 bytes_in 0 138719 station_ip 37.129.144.161 138719 port 211 138719 unique_id port 138719 remote_ip 10.8.1.22 138720 username amir 138720 mac 138720 bytes_out 0 138720 bytes_in 0 138720 station_ip 37.129.144.161 138720 port 211 138720 unique_id port 138720 remote_ip 10.8.1.22 138722 username asma2026 138722 mac 138722 bytes_out 0 138722 bytes_in 0 138722 station_ip 5.217.29.43 138722 port 336 138722 unique_id port 138722 remote_ip 10.8.0.170 138732 username amir 138732 mac 138732 bytes_out 0 138732 bytes_in 0 138732 station_ip 37.129.144.161 138732 port 312 138732 unique_id port 138732 remote_ip 10.8.0.50 138733 username amir 138733 mac 138733 bytes_out 75237 138733 bytes_in 118019 138733 station_ip 37.129.144.161 138733 port 312 138733 unique_id port 138733 remote_ip 10.8.0.50 138735 username amir 138735 mac 138735 bytes_out 0 138735 bytes_in 0 138735 station_ip 37.129.144.161 138735 port 211 138735 unique_id port 138735 remote_ip 10.8.1.22 138736 username amir 138736 mac 138736 bytes_out 0 138736 bytes_in 0 138736 station_ip 37.129.144.161 138736 port 340 138736 unique_id port 138736 remote_ip 10.8.0.50 138739 username farhad2 138739 kill_reason Another user logged on this global unique id 138739 mac 138739 bytes_out 0 138739 bytes_in 0 138739 station_ip 5.119.187.228 138739 port 210 138739 unique_id port 138739 remote_ip 10.8.1.222 138740 username mosi 138740 kill_reason Another user logged on this global unique id 138740 mac 138740 bytes_out 0 138740 bytes_in 0 138740 station_ip 151.235.75.185 138740 port 331 138703 unique_id port 138703 remote_ip 10.8.0.234 138705 username godarzi 138705 mac 138705 bytes_out 0 138705 bytes_in 0 138705 station_ip 5.202.62.33 138705 port 339 138705 unique_id port 138705 remote_ip 10.8.0.174 138709 username khalili 138709 kill_reason Another user logged on this global unique id 138709 mac 138709 bytes_out 0 138709 bytes_in 0 138709 station_ip 5.120.50.142 138709 port 340 138709 unique_id port 138709 remote_ip 10.8.0.86 138718 username sedighe 138718 mac 138718 bytes_out 0 138718 bytes_in 0 138718 station_ip 83.123.140.55 138718 port 336 138718 unique_id port 138718 remote_ip 10.8.0.146 138721 username amir 138721 mac 138721 bytes_out 0 138721 bytes_in 0 138721 station_ip 37.129.144.161 138721 port 211 138721 unique_id port 138721 remote_ip 10.8.1.22 138723 username amir 138723 mac 138723 bytes_out 0 138723 bytes_in 0 138723 station_ip 37.129.144.161 138723 port 211 138723 unique_id port 138723 remote_ip 10.8.1.22 138728 username amir 138728 mac 138728 bytes_out 46696 138728 bytes_in 131936 138728 station_ip 37.129.144.161 138728 port 211 138728 unique_id port 138728 remote_ip 10.8.1.22 138729 username amir 138729 mac 138729 bytes_out 0 138729 bytes_in 0 138729 station_ip 37.129.144.161 138729 port 211 138729 unique_id port 138729 remote_ip 10.8.1.22 138731 username amir 138731 mac 138731 bytes_out 0 138731 bytes_in 0 138731 station_ip 37.129.144.161 138731 port 211 138731 unique_id port 138731 remote_ip 10.8.1.22 138734 username amir 138734 mac 138734 bytes_out 0 138734 bytes_in 0 138734 station_ip 37.129.144.161 138734 port 312 138734 unique_id port 138734 remote_ip 10.8.0.50 138741 username asma2026 138741 mac 138741 bytes_out 3216 138741 bytes_in 5706 138741 station_ip 5.216.42.245 138741 port 343 138741 unique_id port 138741 remote_ip 10.8.0.170 138742 username milan 138742 kill_reason Another user logged on this global unique id 138742 mac 138742 bytes_out 0 138742 bytes_in 0 138742 station_ip 5.119.229.52 138742 port 315 138742 unique_id port 138743 username mehdizare 138743 kill_reason Another user logged on this global unique id 138743 mac 138743 bytes_out 0 138743 bytes_in 0 138743 station_ip 5.120.148.206 138743 port 348 138743 unique_id port 138744 username vanila 138744 mac 138744 bytes_out 0 138744 bytes_in 0 138744 station_ip 83.123.212.161 138744 port 340 138744 unique_id port 138744 remote_ip 10.8.0.178 138746 username amir 138746 mac 138746 bytes_out 304380 138746 bytes_in 339855 138746 station_ip 37.129.144.161 138746 port 341 138746 unique_id port 138746 remote_ip 10.8.0.50 138750 username malekpoir 138750 mac 138750 bytes_out 0 138750 bytes_in 0 138750 station_ip 5.119.41.192 138750 port 282 138750 unique_id port 138751 username farhad2 138751 mac 138751 bytes_out 0 138751 bytes_in 0 138751 station_ip 5.119.187.228 138751 port 210 138751 unique_id port 138753 username houshang 138753 mac 138753 bytes_out 1166929 138753 bytes_in 10573535 138753 station_ip 5.120.169.195 138753 port 312 138753 unique_id port 138753 remote_ip 10.8.0.22 138764 username farhad2 138764 mac 138764 bytes_out 0 138764 bytes_in 0 138764 station_ip 5.119.187.228 138764 port 210 138764 unique_id port 138764 remote_ip 10.8.1.222 138769 username mosi 138769 kill_reason Another user logged on this global unique id 138769 mac 138769 bytes_out 0 138769 bytes_in 0 138769 station_ip 151.235.75.185 138769 port 331 138769 unique_id port 138708 mac 138708 bytes_out 0 138708 bytes_in 0 138708 station_ip 5.217.99.98 138708 port 208 138708 unique_id port 138710 username farhad2 138710 mac 138710 bytes_out 0 138710 bytes_in 0 138710 station_ip 5.119.187.228 138710 port 332 138710 unique_id port 138712 username amir 138712 kill_reason Another user logged on this global unique id 138712 mac 138712 bytes_out 0 138712 bytes_in 0 138712 station_ip 37.129.144.161 138712 port 343 138712 unique_id port 138712 remote_ip 10.8.0.50 138715 username amir 138715 mac 138715 bytes_out 0 138715 bytes_in 0 138715 station_ip 37.129.144.161 138715 port 343 138715 unique_id port 138716 username amir 138716 mac 138716 bytes_out 0 138716 bytes_in 0 138716 station_ip 37.129.144.161 138716 port 332 138716 unique_id port 138716 remote_ip 10.8.0.50 138724 username amir 138724 mac 138724 bytes_out 0 138724 bytes_in 0 138724 station_ip 37.129.144.161 138724 port 211 138724 unique_id port 138724 remote_ip 10.8.1.22 138725 username kordestani 138725 mac 138725 bytes_out 0 138725 bytes_in 0 138725 station_ip 151.235.107.131 138725 port 282 138725 unique_id port 138726 username amir 138726 mac 138726 bytes_out 45531 138726 bytes_in 97892 138726 station_ip 37.129.144.161 138726 port 211 138726 unique_id port 138726 remote_ip 10.8.1.22 138727 username khalili 138727 mac 138727 bytes_out 0 138727 bytes_in 0 138727 station_ip 5.119.179.17 138727 port 312 138727 unique_id port 138727 remote_ip 10.8.0.86 138730 username vanila 138730 mac 138730 bytes_out 0 138730 bytes_in 0 138730 station_ip 83.123.212.161 138730 port 340 138730 unique_id port 138730 remote_ip 10.8.0.178 138737 username mohammadmahdi 138737 kill_reason Another user logged on this global unique id 138737 mac 138737 bytes_out 0 138737 bytes_in 0 138737 station_ip 5.119.130.76 138737 port 332 138737 unique_id port 138737 remote_ip 10.8.0.54 138738 username amir 138738 mac 138738 bytes_out 0 138738 bytes_in 0 138738 station_ip 37.129.144.161 138738 port 340 138738 unique_id port 138738 remote_ip 10.8.0.50 138748 username amir 138748 mac 138748 bytes_out 0 138748 bytes_in 0 138748 station_ip 37.129.144.161 138748 port 340 138748 unique_id port 138748 remote_ip 10.8.0.50 138749 username mosi 138749 kill_reason Another user logged on this global unique id 138749 mac 138749 bytes_out 0 138749 bytes_in 0 138749 station_ip 151.235.75.185 138749 port 331 138749 unique_id port 138752 username asma2026 138752 mac 138752 bytes_out 0 138752 bytes_in 0 138752 station_ip 5.216.16.164 138752 port 282 138752 unique_id port 138752 remote_ip 10.8.0.170 138755 username mehdizare 138755 mac 138755 bytes_out 0 138755 bytes_in 0 138755 station_ip 5.120.148.206 138755 port 348 138755 unique_id port 138756 username abravesh 138756 unique_id port 138756 terminate_cause Lost-Carrier 138756 bytes_out 6725608 138756 bytes_in 144684989 138756 station_ip 5.119.252.7 138756 port 15730620 138756 nas_port_type Virtual 138756 remote_ip 5.5.5.216 138759 username houshang 138759 mac 138759 bytes_out 0 138759 bytes_in 0 138759 station_ip 5.120.169.195 138759 port 312 138759 unique_id port 138759 remote_ip 10.8.0.22 138761 username asma2026 138761 mac 138761 bytes_out 0 138761 bytes_in 0 138761 station_ip 5.216.240.58 138761 port 214 138761 unique_id port 138761 remote_ip 10.8.1.122 138762 username mohammadmahdi 138762 mac 138762 bytes_out 0 138762 bytes_in 0 138762 station_ip 5.119.208.242 138740 unique_id port 138745 username malekpoir 138745 kill_reason Another user logged on this global unique id 138745 mac 138745 bytes_out 0 138745 bytes_in 0 138745 station_ip 5.119.41.192 138745 port 282 138745 unique_id port 138745 remote_ip 10.8.0.58 138747 username amir 138747 mac 138747 bytes_out 137589 138747 bytes_in 250749 138747 station_ip 37.129.144.161 138747 port 340 138747 unique_id port 138747 remote_ip 10.8.0.50 138754 username mohammadmahdi 138754 kill_reason Another user logged on this global unique id 138754 mac 138754 bytes_out 0 138754 bytes_in 0 138754 station_ip 5.119.130.76 138754 port 332 138754 unique_id port 138757 username mohammadmahdi 138757 mac 138757 bytes_out 0 138757 bytes_in 0 138757 station_ip 5.119.130.76 138757 port 332 138757 unique_id port 138758 username sekonji3 138758 mac 138758 bytes_out 192430 138758 bytes_in 2365010 138758 station_ip 37.129.37.6 138758 port 340 138758 unique_id port 138758 remote_ip 10.8.0.6 138760 username mosi 138760 kill_reason Another user logged on this global unique id 138760 mac 138760 bytes_out 0 138760 bytes_in 0 138760 station_ip 151.235.75.185 138760 port 331 138760 unique_id port 138763 username sekonji3 138763 mac 138763 bytes_out 0 138763 bytes_in 0 138763 station_ip 37.129.37.6 138763 port 312 138763 unique_id port 138763 remote_ip 10.8.0.6 138766 username farhad2 138766 mac 138766 bytes_out 0 138766 bytes_in 0 138766 station_ip 5.119.187.228 138766 port 312 138766 unique_id port 138766 remote_ip 10.8.0.190 138768 username barzegar 138768 mac 138768 bytes_out 0 138768 bytes_in 0 138768 station_ip 5.120.8.40 138768 port 282 138768 unique_id port 138768 remote_ip 10.8.0.234 138771 username asma2026 138771 mac 138771 bytes_out 0 138771 bytes_in 0 138771 station_ip 5.216.111.138 138771 port 282 138771 unique_id port 138771 remote_ip 10.8.0.170 138774 username sekonji3 138774 mac 138774 bytes_out 43498 138774 bytes_in 114260 138774 station_ip 37.129.37.6 138774 port 312 138774 unique_id port 138774 remote_ip 10.8.0.6 138775 username farhad2 138775 mac 138775 bytes_out 0 138775 bytes_in 0 138775 station_ip 5.119.187.228 138775 port 282 138775 unique_id port 138775 remote_ip 10.8.0.190 138776 username sekonji3 138776 mac 138776 bytes_out 0 138776 bytes_in 0 138776 station_ip 37.129.37.6 138776 port 282 138776 unique_id port 138776 remote_ip 10.8.0.6 138778 username sekonji3 138778 mac 138778 bytes_out 0 138778 bytes_in 0 138778 station_ip 37.129.37.6 138778 port 282 138778 unique_id port 138778 remote_ip 10.8.0.6 138779 username amir 138779 kill_reason Another user logged on this global unique id 138779 mac 138779 bytes_out 0 138779 bytes_in 0 138779 station_ip 46.225.214.190 138779 port 211 138779 unique_id port 138779 remote_ip 10.8.1.22 138780 username sekonji3 138780 mac 138780 bytes_out 0 138780 bytes_in 0 138780 station_ip 37.129.37.6 138780 port 312 138780 unique_id port 138780 remote_ip 10.8.0.6 138782 username sekonji3 138782 mac 138782 bytes_out 0 138782 bytes_in 0 138782 station_ip 37.129.37.6 138782 port 312 138782 unique_id port 138782 remote_ip 10.8.0.6 138785 username barzegar 138785 mac 138785 bytes_out 0 138785 bytes_in 0 138785 station_ip 5.120.8.40 138785 port 282 138785 unique_id port 138785 remote_ip 10.8.0.234 138786 username sekonji3 138786 mac 138786 bytes_out 0 138786 bytes_in 0 138786 station_ip 37.129.37.6 138786 port 282 138786 unique_id port 138762 port 312 138762 unique_id port 138762 remote_ip 10.8.0.54 138765 username mansour 138765 mac 138765 bytes_out 0 138765 bytes_in 0 138765 station_ip 5.202.62.30 138765 port 282 138765 unique_id port 138765 remote_ip 10.8.0.30 138767 username barzegar 138767 mac 138767 bytes_out 0 138767 bytes_in 0 138767 station_ip 5.120.8.40 138767 port 339 138767 unique_id port 138767 remote_ip 10.8.0.234 138773 username mosi 138773 kill_reason Another user logged on this global unique id 138773 mac 138773 bytes_out 0 138773 bytes_in 0 138773 station_ip 151.235.75.185 138773 port 331 138773 unique_id port 138777 username farhad2 138777 mac 138777 bytes_out 0 138777 bytes_in 0 138777 station_ip 5.119.187.228 138777 port 312 138777 unique_id port 138777 remote_ip 10.8.0.190 138781 username sekonji3 138781 mac 138781 bytes_out 0 138781 bytes_in 0 138781 station_ip 37.129.37.6 138781 port 312 138781 unique_id port 138781 remote_ip 10.8.0.6 138789 username sekonji3 138789 mac 138789 bytes_out 0 138789 bytes_in 0 138789 station_ip 37.129.37.6 138789 port 282 138789 unique_id port 138789 remote_ip 10.8.0.6 138790 username sekonji3 138790 mac 138790 bytes_out 0 138790 bytes_in 0 138790 station_ip 37.129.37.6 138790 port 282 138790 unique_id port 138790 remote_ip 10.8.0.6 138791 username sekonji3 138791 mac 138791 bytes_out 0 138791 bytes_in 0 138791 station_ip 37.129.37.6 138791 port 282 138791 unique_id port 138791 remote_ip 10.8.0.6 138792 username mosi 138792 kill_reason Another user logged on this global unique id 138792 mac 138792 bytes_out 0 138792 bytes_in 0 138792 station_ip 151.235.75.185 138792 port 331 138792 unique_id port 138802 username amir 138802 mac 138802 bytes_out 143865 138802 bytes_in 2065858 138802 station_ip 37.129.144.161 138802 port 194 138802 unique_id port 138802 remote_ip 10.8.1.22 138803 username vanila 138803 mac 138803 bytes_out 0 138803 bytes_in 0 138803 station_ip 83.123.212.161 138803 port 332 138803 unique_id port 138803 remote_ip 10.8.0.178 138809 username yaghobi 138809 mac 138809 bytes_out 591457 138809 bytes_in 2474945 138809 station_ip 37.129.239.72 138809 port 339 138809 unique_id port 138809 remote_ip 10.8.0.198 138812 username barzegar 138812 mac 138812 bytes_out 0 138812 bytes_in 0 138812 station_ip 5.120.8.40 138812 port 332 138812 unique_id port 138812 remote_ip 10.8.0.234 138813 username amir 138813 mac 138813 bytes_out 0 138813 bytes_in 0 138813 station_ip 37.129.144.161 138813 port 332 138813 unique_id port 138813 remote_ip 10.8.0.50 138816 username amir 138816 mac 138816 bytes_out 0 138816 bytes_in 0 138816 station_ip 37.129.144.161 138816 port 339 138816 unique_id port 138816 remote_ip 10.8.0.50 138819 username amir 138819 mac 138819 bytes_out 0 138819 bytes_in 0 138819 station_ip 37.129.144.161 138819 port 339 138819 unique_id port 138819 remote_ip 10.8.0.50 138822 username aminvpn 138822 mac 138822 bytes_out 1833561 138822 bytes_in 10990507 138822 station_ip 83.122.227.32 138822 port 336 138822 unique_id port 138822 remote_ip 10.8.0.14 138825 username mahdiyehalizadeh 138825 mac 138825 bytes_out 0 138825 bytes_in 0 138825 station_ip 83.123.152.140 138825 port 312 138825 unique_id port 138825 remote_ip 10.8.0.82 138829 username amir 138829 mac 138829 bytes_out 0 138829 bytes_in 0 138829 station_ip 37.129.144.161 138829 port 194 138829 unique_id port 138829 remote_ip 10.8.1.22 138770 username farhad2 138770 mac 138770 bytes_out 0 138770 bytes_in 0 138770 station_ip 5.119.187.228 138770 port 312 138770 unique_id port 138770 remote_ip 10.8.0.190 138772 username houshang 138772 mac 138772 bytes_out 1455050 138772 bytes_in 14833707 138772 station_ip 5.120.169.195 138772 port 332 138772 unique_id port 138772 remote_ip 10.8.0.22 138783 username farhad2 138783 mac 138783 bytes_out 591764 138783 bytes_in 2955259 138783 station_ip 5.119.187.228 138783 port 282 138783 unique_id port 138783 remote_ip 10.8.0.190 138784 username yaghobi 138784 mac 138784 bytes_out 0 138784 bytes_in 0 138784 station_ip 83.123.67.37 138784 port 340 138784 unique_id port 138784 remote_ip 10.8.0.198 138787 username asma2026 138787 mac 138787 bytes_out 0 138787 bytes_in 0 138787 station_ip 5.216.67.140 138787 port 282 138787 unique_id port 138787 remote_ip 10.8.0.170 138788 username sekonji3 138788 mac 138788 bytes_out 0 138788 bytes_in 0 138788 station_ip 37.129.37.6 138788 port 282 138788 unique_id port 138788 remote_ip 10.8.0.6 138793 username mehdizare 138793 mac 138793 bytes_out 0 138793 bytes_in 0 138793 station_ip 5.120.148.206 138793 port 213 138793 unique_id port 138793 remote_ip 10.8.1.42 138795 username sekonji3 138795 mac 138795 bytes_out 0 138795 bytes_in 0 138795 station_ip 37.129.37.6 138795 port 282 138795 unique_id port 138795 remote_ip 10.8.0.6 138796 username barzegar 138796 mac 138796 bytes_out 0 138796 bytes_in 0 138796 station_ip 5.120.8.40 138796 port 282 138796 unique_id port 138796 remote_ip 10.8.0.234 138799 username sekonji3 138799 mac 138799 bytes_out 0 138799 bytes_in 0 138799 station_ip 37.129.37.6 138799 port 282 138799 unique_id port 138799 remote_ip 10.8.0.6 138800 username amir 138800 mac 138800 bytes_out 0 138800 bytes_in 0 138800 station_ip 46.225.214.190 138800 port 211 138800 unique_id port 138804 username barzegar 138804 mac 138804 bytes_out 0 138804 bytes_in 0 138804 station_ip 5.120.8.40 138804 port 312 138804 unique_id port 138804 remote_ip 10.8.0.234 138805 username amir 138805 mac 138805 bytes_out 0 138805 bytes_in 0 138805 station_ip 37.129.144.161 138805 port 194 138805 unique_id port 138805 remote_ip 10.8.1.22 138807 username asma2026 138807 mac 138807 bytes_out 0 138807 bytes_in 0 138807 station_ip 5.216.146.207 138807 port 194 138807 unique_id port 138807 remote_ip 10.8.1.122 138808 username amir 138808 mac 138808 bytes_out 0 138808 bytes_in 0 138808 station_ip 37.129.144.161 138808 port 332 138808 unique_id port 138808 remote_ip 10.8.0.50 138810 username amir 138810 mac 138810 bytes_out 12733 138810 bytes_in 34135 138810 station_ip 37.129.144.161 138810 port 194 138810 unique_id port 138810 remote_ip 10.8.1.22 138811 username amir 138811 mac 138811 bytes_out 0 138811 bytes_in 0 138811 station_ip 37.129.144.161 138811 port 194 138811 unique_id port 138811 remote_ip 10.8.1.22 138814 username amirabbas 138814 unique_id port 138814 terminate_cause User-Request 138814 bytes_out 2375002 138814 bytes_in 44518460 138814 station_ip 37.27.28.218 138814 port 15730624 138814 nas_port_type Virtual 138814 remote_ip 5.5.5.252 138815 username asma2026 138815 mac 138815 bytes_out 0 138815 bytes_in 0 138815 station_ip 5.216.28.44 138815 port 194 138815 unique_id port 138815 remote_ip 10.8.1.122 138818 username bcboard 138818 unique_id port 138818 terminate_cause Lost-Carrier 138786 remote_ip 10.8.0.6 138794 username milan 138794 kill_reason Maximum check online fails reached 138794 mac 138794 bytes_out 0 138794 bytes_in 0 138794 station_ip 5.119.229.52 138794 port 315 138794 unique_id port 138797 username aminvpn 138797 mac 138797 bytes_out 0 138797 bytes_in 0 138797 station_ip 83.123.230.211 138797 port 194 138797 unique_id port 138797 remote_ip 10.8.1.6 138798 username asma2026 138798 mac 138798 bytes_out 0 138798 bytes_in 0 138798 station_ip 5.216.37.184 138798 port 282 138798 unique_id port 138798 remote_ip 10.8.0.170 138801 username yaghobi 138801 mac 138801 bytes_out 0 138801 bytes_in 0 138801 station_ip 37.129.239.72 138801 port 312 138801 unique_id port 138801 remote_ip 10.8.0.198 138806 username mosi 138806 kill_reason Another user logged on this global unique id 138806 mac 138806 bytes_out 0 138806 bytes_in 0 138806 station_ip 151.235.75.185 138806 port 331 138806 unique_id port 138817 username aminvpn 138817 unique_id port 138817 terminate_cause User-Request 138817 bytes_out 7165916 138817 bytes_in 65638601 138817 station_ip 5.120.23.60 138817 port 15730618 138817 nas_port_type Virtual 138817 remote_ip 5.5.5.235 138823 username aminvpn 138823 mac 138823 bytes_out 0 138823 bytes_in 0 138823 station_ip 5.120.23.60 138823 port 332 138823 unique_id port 138823 remote_ip 10.8.0.14 138830 username aminvpn 138830 mac 138830 bytes_out 0 138830 bytes_in 0 138830 station_ip 83.122.227.32 138830 port 336 138830 unique_id port 138830 remote_ip 10.8.0.14 138831 username vanila 138831 mac 138831 bytes_out 0 138831 bytes_in 0 138831 station_ip 83.123.212.161 138831 port 312 138831 unique_id port 138831 remote_ip 10.8.0.178 138832 username aminvpn 138832 mac 138832 bytes_out 0 138832 bytes_in 0 138832 station_ip 5.120.23.60 138832 port 332 138832 unique_id port 138832 remote_ip 10.8.0.14 138835 username barzegar 138835 mac 138835 bytes_out 0 138835 bytes_in 0 138835 station_ip 5.120.8.40 138835 port 336 138835 unique_id port 138835 remote_ip 10.8.0.234 138836 username amir 138836 mac 138836 bytes_out 0 138836 bytes_in 0 138836 station_ip 37.129.144.161 138836 port 332 138836 unique_id port 138836 remote_ip 10.8.0.50 138843 username yaghobi 138843 mac 138843 bytes_out 0 138843 bytes_in 0 138843 station_ip 37.129.239.72 138843 port 332 138843 unique_id port 138843 remote_ip 10.8.0.198 138847 username alipour 138847 kill_reason Another user logged on this global unique id 138847 mac 138847 bytes_out 0 138847 bytes_in 0 138847 station_ip 113.203.112.25 138847 port 206 138847 unique_id port 138847 remote_ip 10.8.1.50 138852 username mosi 138852 kill_reason Another user logged on this global unique id 138852 mac 138852 bytes_out 0 138852 bytes_in 0 138852 station_ip 151.235.75.185 138852 port 331 138852 unique_id port 138859 username milan 138859 kill_reason Another user logged on this global unique id 138859 mac 138859 bytes_out 0 138859 bytes_in 0 138859 station_ip 5.119.229.52 138859 port 315 138859 unique_id port 138863 username amir 138863 mac 138863 bytes_out 0 138863 bytes_in 0 138863 station_ip 37.129.144.161 138863 port 194 138863 unique_id port 138863 remote_ip 10.8.1.22 138865 username hoorieh 138865 mac 138865 bytes_out 0 138865 bytes_in 0 138865 station_ip 5.119.64.138 138865 port 282 138865 unique_id port 138866 username milan 138866 kill_reason Another user logged on this global unique id 138866 mac 138866 bytes_out 0 138866 bytes_in 0 138866 station_ip 5.119.229.52 138818 bytes_out 869275 138818 bytes_in 702380 138818 station_ip 83.122.181.243 138818 port 15730622 138818 nas_port_type Virtual 138818 remote_ip 5.5.5.224 138820 username hassan 138820 mac 138820 bytes_out 0 138820 bytes_in 0 138820 station_ip 37.27.22.33 138820 port 332 138820 unique_id port 138820 remote_ip 10.8.0.122 138821 username aminvpn 138821 unique_id port 138821 terminate_cause Lost-Carrier 138821 bytes_out 252717 138821 bytes_in 853586 138821 station_ip 5.233.49.34 138821 port 15730623 138821 nas_port_type Virtual 138821 remote_ip 5.5.5.225 138824 username aminvpn 138824 mac 138824 bytes_out 0 138824 bytes_in 0 138824 station_ip 83.122.227.32 138824 port 336 138824 unique_id port 138824 remote_ip 10.8.0.14 138826 username amir 138826 mac 138826 bytes_out 14899 138826 bytes_in 60168 138826 station_ip 37.129.144.161 138826 port 194 138826 unique_id port 138826 remote_ip 10.8.1.22 138827 username aminvpn 138827 mac 138827 bytes_out 0 138827 bytes_in 0 138827 station_ip 5.120.23.60 138827 port 332 138827 unique_id port 138827 remote_ip 10.8.0.14 138828 username milan 138828 kill_reason Another user logged on this global unique id 138828 mac 138828 bytes_out 0 138828 bytes_in 0 138828 station_ip 5.119.229.52 138828 port 315 138828 unique_id port 138834 username amir 138834 mac 138834 bytes_out 0 138834 bytes_in 0 138834 station_ip 37.129.144.161 138834 port 332 138834 unique_id port 138834 remote_ip 10.8.0.50 138837 username asma2026 138837 mac 138837 bytes_out 0 138837 bytes_in 0 138837 station_ip 5.216.221.203 138837 port 194 138837 unique_id port 138837 remote_ip 10.8.1.122 138838 username sekonji3 138838 mac 138838 bytes_out 3468923 138838 bytes_in 44557106 138838 station_ip 37.129.37.6 138838 port 282 138838 unique_id port 138838 remote_ip 10.8.0.6 138841 username sabaghnezhad 138841 mac 138841 bytes_out 938827 138841 bytes_in 3653927 138841 station_ip 5.216.26.70 138841 port 345 138841 unique_id port 138841 remote_ip 10.8.0.186 138842 username amir 138842 mac 138842 bytes_out 0 138842 bytes_in 0 138842 station_ip 37.129.144.161 138842 port 332 138842 unique_id port 138842 remote_ip 10.8.0.50 138845 username sekonji3 138845 mac 138845 bytes_out 0 138845 bytes_in 0 138845 station_ip 83.122.154.72 138845 port 282 138845 unique_id port 138845 remote_ip 10.8.0.6 138848 username mahdixz 138848 unique_id port 138848 terminate_cause Lost-Carrier 138848 bytes_out 801870 138848 bytes_in 6427973 138848 station_ip 5.233.49.34 138848 port 15730628 138848 nas_port_type Virtual 138848 remote_ip 5.5.5.198 138849 username barzegar 138849 mac 138849 bytes_out 0 138849 bytes_in 0 138849 station_ip 5.120.8.40 138849 port 282 138849 unique_id port 138849 remote_ip 10.8.0.234 138853 username amir 138853 mac 138853 bytes_out 0 138853 bytes_in 0 138853 station_ip 37.129.144.161 138853 port 332 138853 unique_id port 138853 remote_ip 10.8.0.50 138855 username amir 138855 mac 138855 bytes_out 0 138855 bytes_in 0 138855 station_ip 37.129.144.161 138855 port 332 138855 unique_id port 138855 remote_ip 10.8.0.50 138860 username amir 138860 mac 138860 bytes_out 0 138860 bytes_in 0 138860 station_ip 37.129.144.161 138860 port 332 138860 unique_id port 138860 remote_ip 10.8.0.50 138861 username alipour 138861 kill_reason Another user logged on this global unique id 138861 mac 138861 bytes_out 0 138861 bytes_in 0 138861 station_ip 113.203.112.25 138861 port 206 138861 unique_id port 138862 username barzegar 138833 username amir 138833 mac 138833 bytes_out 0 138833 bytes_in 0 138833 station_ip 37.129.144.161 138833 port 336 138833 unique_id port 138833 remote_ip 10.8.0.50 138839 username amir 138839 mac 138839 bytes_out 0 138839 bytes_in 0 138839 station_ip 37.129.144.161 138839 port 194 138839 unique_id port 138839 remote_ip 10.8.1.22 138840 username amir 138840 mac 138840 bytes_out 0 138840 bytes_in 0 138840 station_ip 37.129.144.161 138840 port 194 138840 unique_id port 138840 remote_ip 10.8.1.22 138844 username amir 138844 mac 138844 bytes_out 0 138844 bytes_in 0 138844 station_ip 37.129.144.161 138844 port 194 138844 unique_id port 138844 remote_ip 10.8.1.22 138846 username amir 138846 mac 138846 bytes_out 0 138846 bytes_in 0 138846 station_ip 37.129.144.161 138846 port 282 138846 unique_id port 138846 remote_ip 10.8.0.50 138850 username milan 138850 kill_reason Another user logged on this global unique id 138850 mac 138850 bytes_out 0 138850 bytes_in 0 138850 station_ip 5.119.229.52 138850 port 315 138850 unique_id port 138851 username amir 138851 mac 138851 bytes_out 15210 138851 bytes_in 75762 138851 station_ip 37.129.144.161 138851 port 194 138851 unique_id port 138851 remote_ip 10.8.1.22 138854 username asma2026 138854 mac 138854 bytes_out 0 138854 bytes_in 0 138854 station_ip 5.216.162.158 138854 port 332 138854 unique_id port 138854 remote_ip 10.8.0.170 138856 username amir 138856 mac 138856 bytes_out 0 138856 bytes_in 0 138856 station_ip 37.129.144.161 138856 port 332 138856 unique_id port 138856 remote_ip 10.8.0.50 138857 username barzegar 138857 mac 138857 bytes_out 0 138857 bytes_in 0 138857 station_ip 5.120.8.40 138857 port 332 138857 unique_id port 138857 remote_ip 10.8.0.234 138858 username hoorieh 138858 kill_reason Another user logged on this global unique id 138858 mac 138858 bytes_out 0 138858 bytes_in 0 138858 station_ip 5.119.64.138 138858 port 282 138858 unique_id port 138858 remote_ip 10.8.0.38 138869 username amir 138869 mac 138869 bytes_out 0 138869 bytes_in 0 138869 station_ip 37.129.144.161 138869 port 194 138869 unique_id port 138869 remote_ip 10.8.1.22 138874 username amir 138874 mac 138874 bytes_out 0 138874 bytes_in 0 138874 station_ip 37.129.144.161 138874 port 194 138874 unique_id port 138874 remote_ip 10.8.1.22 138875 username barzegar 138875 mac 138875 bytes_out 0 138875 bytes_in 0 138875 station_ip 5.120.8.40 138875 port 282 138875 unique_id port 138875 remote_ip 10.8.0.234 138878 username milan 138878 mac 138878 bytes_out 0 138878 bytes_in 0 138878 station_ip 5.119.229.52 138878 port 315 138878 unique_id port 138888 username barzegar 138888 mac 138888 bytes_out 0 138888 bytes_in 0 138888 station_ip 5.120.8.40 138888 port 336 138888 unique_id port 138888 remote_ip 10.8.0.234 138890 username amir 138890 mac 138890 bytes_out 0 138890 bytes_in 0 138890 station_ip 37.129.144.161 138890 port 315 138890 unique_id port 138890 remote_ip 10.8.0.50 138891 username amir 138891 mac 138891 bytes_out 0 138891 bytes_in 0 138891 station_ip 37.129.144.161 138891 port 315 138891 unique_id port 138891 remote_ip 10.8.0.50 138896 username asma2026 138896 mac 138896 bytes_out 0 138896 bytes_in 0 138896 station_ip 5.216.136.240 138896 port 194 138896 unique_id port 138896 remote_ip 10.8.1.122 138897 username asma2026 138897 mac 138897 bytes_out 0 138897 bytes_in 0 138862 mac 138862 bytes_out 0 138862 bytes_in 0 138862 station_ip 5.120.8.40 138862 port 336 138862 unique_id port 138862 remote_ip 10.8.0.234 138864 username farhad2 138864 mac 138864 bytes_out 0 138864 bytes_in 0 138864 station_ip 5.120.16.123 138864 port 332 138864 unique_id port 138864 remote_ip 10.8.0.190 138871 username amir 138871 mac 138871 bytes_out 0 138871 bytes_in 0 138871 station_ip 37.129.144.161 138871 port 194 138871 unique_id port 138871 remote_ip 10.8.1.22 138877 username amir 138877 mac 138877 bytes_out 0 138877 bytes_in 0 138877 station_ip 37.129.144.161 138877 port 282 138877 unique_id port 138877 remote_ip 10.8.0.50 138879 username alipour 138879 kill_reason Another user logged on this global unique id 138879 mac 138879 bytes_out 0 138879 bytes_in 0 138879 station_ip 113.203.112.25 138879 port 206 138879 unique_id port 138880 username amir 138880 mac 138880 bytes_out 0 138880 bytes_in 0 138880 station_ip 37.129.144.161 138880 port 282 138880 unique_id port 138880 remote_ip 10.8.0.50 138882 username amir 138882 mac 138882 bytes_out 0 138882 bytes_in 0 138882 station_ip 37.129.144.161 138882 port 315 138882 unique_id port 138882 remote_ip 10.8.0.50 138883 username amir 138883 mac 138883 bytes_out 0 138883 bytes_in 0 138883 station_ip 37.129.144.161 138883 port 211 138883 unique_id port 138883 remote_ip 10.8.1.22 138884 username asma2026 138884 kill_reason Maximum check online fails reached 138884 mac 138884 bytes_out 0 138884 bytes_in 0 138884 station_ip 5.216.118.7 138884 port 282 138884 unique_id port 138889 username farhad2 138889 kill_reason Another user logged on this global unique id 138889 mac 138889 bytes_out 0 138889 bytes_in 0 138889 station_ip 5.120.108.229 138889 port 332 138889 unique_id port 138893 username amir 138893 mac 138893 bytes_out 0 138893 bytes_in 0 138893 station_ip 37.129.144.161 138893 port 315 138893 unique_id port 138893 remote_ip 10.8.0.50 138898 username asma2026 138898 mac 138898 bytes_out 0 138898 bytes_in 0 138898 station_ip 5.216.136.240 138898 port 340 138898 unique_id port 138898 remote_ip 10.8.0.170 138900 username alipour 138900 kill_reason Another user logged on this global unique id 138900 mac 138900 bytes_out 0 138900 bytes_in 0 138900 station_ip 113.203.112.25 138900 port 206 138900 unique_id port 138901 username farhad2 138901 mac 138901 bytes_out 0 138901 bytes_in 0 138901 station_ip 5.120.108.229 138901 port 332 138901 unique_id port 138903 username asma2026 138903 mac 138903 bytes_out 0 138903 bytes_in 0 138903 station_ip 5.216.222.28 138903 port 336 138903 unique_id port 138903 remote_ip 10.8.0.170 138907 username farhad2 138907 mac 138907 bytes_out 0 138907 bytes_in 0 138907 station_ip 5.120.108.229 138907 port 336 138907 unique_id port 138907 remote_ip 10.8.0.190 138909 username barzegar 138909 mac 138909 bytes_out 0 138909 bytes_in 0 138909 station_ip 5.120.8.40 138909 port 336 138909 unique_id port 138909 remote_ip 10.8.0.234 138911 username amir 138911 mac 138911 bytes_out 1695 138911 bytes_in 5058 138911 station_ip 37.129.144.161 138911 port 336 138911 unique_id port 138911 remote_ip 10.8.0.50 138912 username asma2026 138912 mac 138912 bytes_out 0 138912 bytes_in 0 138912 station_ip 5.216.40.48 138912 port 336 138912 unique_id port 138912 remote_ip 10.8.0.170 138913 username amir 138913 mac 138913 bytes_out 17187 138913 bytes_in 76515 138866 port 315 138866 unique_id port 138867 username farhad2 138867 kill_reason Another user logged on this global unique id 138867 mac 138867 bytes_out 0 138867 bytes_in 0 138867 station_ip 5.120.16.123 138867 port 282 138867 unique_id port 138867 remote_ip 10.8.0.190 138868 username milan 138868 kill_reason Maximum check online fails reached 138868 mac 138868 bytes_out 0 138868 bytes_in 0 138868 station_ip 5.119.229.52 138868 port 315 138868 unique_id port 138870 username bcboard 138870 unique_id port 138870 terminate_cause Lost-Carrier 138870 bytes_out 476855 138870 bytes_in 3460450 138870 station_ip 37.129.175.93 138870 port 15730630 138870 nas_port_type Virtual 138870 remote_ip 5.5.5.211 138872 username amir 138872 mac 138872 bytes_out 0 138872 bytes_in 0 138872 station_ip 37.129.144.161 138872 port 194 138872 unique_id port 138872 remote_ip 10.8.1.22 138873 username farhad2 138873 mac 138873 bytes_out 0 138873 bytes_in 0 138873 station_ip 5.120.16.123 138873 port 282 138873 unique_id port 138876 username amir 138876 mac 138876 bytes_out 0 138876 bytes_in 0 138876 station_ip 37.129.144.161 138876 port 194 138876 unique_id port 138876 remote_ip 10.8.1.22 138881 username farhad2 138881 kill_reason Another user logged on this global unique id 138881 mac 138881 bytes_out 0 138881 bytes_in 0 138881 station_ip 5.120.108.229 138881 port 332 138881 unique_id port 138881 remote_ip 10.8.0.190 138885 username amir 138885 mac 138885 bytes_out 0 138885 bytes_in 0 138885 station_ip 37.129.144.161 138885 port 211 138885 unique_id port 138885 remote_ip 10.8.1.22 138886 username amir 138886 mac 138886 bytes_out 0 138886 bytes_in 0 138886 station_ip 37.129.144.161 138886 port 211 138886 unique_id port 138886 remote_ip 10.8.1.22 138887 username asma2026 138887 mac 138887 bytes_out 0 138887 bytes_in 0 138887 station_ip 5.216.230.229 138887 port 315 138887 unique_id port 138887 remote_ip 10.8.0.170 138892 username naeimeh 138892 mac 138892 bytes_out 2975010 138892 bytes_in 18642037 138892 station_ip 37.129.204.123 138892 port 194 138892 unique_id port 138892 remote_ip 10.8.1.206 138894 username aminvpn 138894 kill_reason Another user logged on this global unique id 138894 mac 138894 bytes_out 0 138894 bytes_in 0 138894 station_ip 83.122.227.32 138894 port 312 138894 unique_id port 138894 remote_ip 10.8.0.14 138895 username amir 138895 mac 138895 bytes_out 0 138895 bytes_in 0 138895 station_ip 37.129.144.161 138895 port 336 138895 unique_id port 138895 remote_ip 10.8.0.50 138899 username barzegar 138899 mac 138899 bytes_out 0 138899 bytes_in 0 138899 station_ip 5.120.8.40 138899 port 336 138899 unique_id port 138899 remote_ip 10.8.0.234 138905 username asma2026 138905 mac 138905 bytes_out 0 138905 bytes_in 0 138905 station_ip 5.216.222.28 138905 port 332 138905 unique_id port 138905 remote_ip 10.8.0.170 138908 username amir 138908 mac 138908 bytes_out 0 138908 bytes_in 0 138908 station_ip 37.129.144.161 138908 port 332 138908 unique_id port 138908 remote_ip 10.8.0.50 138915 username farhad2 138915 mac 138915 bytes_out 1808140 138915 bytes_in 18961639 138915 station_ip 5.120.108.229 138915 port 332 138915 unique_id port 138915 remote_ip 10.8.0.190 138918 username amir 138918 mac 138918 bytes_out 0 138918 bytes_in 0 138918 station_ip 37.129.144.161 138918 port 194 138918 unique_id port 138918 remote_ip 10.8.1.22 138921 username barzegar 138921 mac 138921 bytes_out 0 138921 bytes_in 0 138897 station_ip 5.216.136.240 138897 port 339 138897 unique_id port 138897 remote_ip 10.8.0.170 138902 username amir 138902 mac 138902 bytes_out 0 138902 bytes_in 0 138902 station_ip 37.129.144.161 138902 port 194 138902 unique_id port 138902 remote_ip 10.8.1.22 138904 username farhad2 138904 mac 138904 bytes_out 130563 138904 bytes_in 1424971 138904 station_ip 5.120.108.229 138904 port 332 138904 unique_id port 138904 remote_ip 10.8.0.190 138906 username aminvpn 138906 unique_id port 138906 terminate_cause User-Request 138906 bytes_out 5624095 138906 bytes_in 109686966 138906 station_ip 5.120.23.60 138906 port 15730633 138906 nas_port_type Virtual 138906 remote_ip 5.5.5.228 138910 username amir 138910 mac 138910 bytes_out 0 138910 bytes_in 0 138910 station_ip 37.129.144.161 138910 port 194 138910 unique_id port 138910 remote_ip 10.8.1.22 138914 username amir 138914 mac 138914 bytes_out 0 138914 bytes_in 0 138914 station_ip 37.129.144.161 138914 port 194 138914 unique_id port 138914 remote_ip 10.8.1.22 138916 username barzegar 138916 mac 138916 bytes_out 0 138916 bytes_in 0 138916 station_ip 5.120.8.40 138916 port 336 138916 unique_id port 138916 remote_ip 10.8.0.234 138917 username aminvpn 138917 kill_reason Another user logged on this global unique id 138917 mac 138917 bytes_out 0 138917 bytes_in 0 138917 station_ip 83.122.227.32 138917 port 312 138917 unique_id port 138919 username asma2026 138919 mac 138919 bytes_out 0 138919 bytes_in 0 138919 station_ip 5.216.192.69 138919 port 336 138919 unique_id port 138919 remote_ip 10.8.0.170 138920 username amir 138920 mac 138920 bytes_out 0 138920 bytes_in 0 138920 station_ip 37.129.144.161 138920 port 194 138920 unique_id port 138920 remote_ip 10.8.1.22 138922 username farhad2 138922 mac 138922 bytes_out 0 138922 bytes_in 0 138922 station_ip 5.120.108.229 138922 port 332 138922 unique_id port 138922 remote_ip 10.8.0.190 138925 username farhad2 138925 mac 138925 bytes_out 62861 138925 bytes_in 337427 138925 station_ip 5.120.108.229 138925 port 332 138925 unique_id port 138925 remote_ip 10.8.0.190 138927 username aminvpn 138927 kill_reason Another user logged on this global unique id 138927 mac 138927 bytes_out 0 138927 bytes_in 0 138927 station_ip 83.122.227.32 138927 port 312 138927 unique_id port 138936 username vanila 138936 mac 138936 bytes_out 91391 138936 bytes_in 104498 138936 station_ip 83.122.169.94 138936 port 336 138936 unique_id port 138936 remote_ip 10.8.0.178 138940 username alipour 138940 kill_reason Another user logged on this global unique id 138940 mac 138940 bytes_out 0 138940 bytes_in 0 138940 station_ip 113.203.112.25 138940 port 206 138940 unique_id port 138942 username aminvpn 138942 kill_reason Another user logged on this global unique id 138942 mac 138942 bytes_out 0 138942 bytes_in 0 138942 station_ip 83.122.227.32 138942 port 312 138942 unique_id port 138943 username farhad2 138943 mac 138943 bytes_out 0 138943 bytes_in 0 138943 station_ip 5.120.108.229 138943 port 194 138943 unique_id port 138943 remote_ip 10.8.1.222 138945 username asma2026 138945 mac 138945 bytes_out 0 138945 bytes_in 0 138945 station_ip 5.216.233.70 138945 port 336 138945 unique_id port 138945 remote_ip 10.8.0.170 138955 username asma2026 138955 mac 138955 bytes_out 0 138955 bytes_in 0 138955 station_ip 5.216.116.124 138955 port 211 138955 unique_id port 138955 remote_ip 10.8.1.122 138965 username aminvpn 138965 kill_reason Another user logged on this global unique id 138913 station_ip 37.129.144.161 138913 port 194 138913 unique_id port 138913 remote_ip 10.8.1.22 138923 username alipour 138923 kill_reason Another user logged on this global unique id 138923 mac 138923 bytes_out 0 138923 bytes_in 0 138923 station_ip 113.203.112.25 138923 port 206 138923 unique_id port 138924 username amir 138924 mac 138924 bytes_out 0 138924 bytes_in 0 138924 station_ip 37.129.144.161 138924 port 194 138924 unique_id port 138924 remote_ip 10.8.1.22 138926 username amir 138926 mac 138926 bytes_out 0 138926 bytes_in 0 138926 station_ip 37.129.144.161 138926 port 332 138926 unique_id port 138926 remote_ip 10.8.0.50 138930 username aminvpn 138930 kill_reason Another user logged on this global unique id 138930 mac 138930 bytes_out 0 138930 bytes_in 0 138930 station_ip 83.122.227.32 138930 port 312 138930 unique_id port 138934 username asma2026 138934 mac 138934 bytes_out 0 138934 bytes_in 0 138934 station_ip 5.216.86.104 138934 port 332 138934 unique_id port 138934 remote_ip 10.8.0.170 138935 username barzegar 138935 mac 138935 bytes_out 0 138935 bytes_in 0 138935 station_ip 5.120.8.40 138935 port 211 138935 unique_id port 138935 remote_ip 10.8.1.174 138944 username amir 138944 mac 138944 bytes_out 1751472 138944 bytes_in 18852373 138944 station_ip 37.129.144.161 138944 port 332 138944 unique_id port 138944 remote_ip 10.8.0.50 138946 username vanila 138946 mac 138946 bytes_out 0 138946 bytes_in 0 138946 station_ip 83.122.169.94 138946 port 332 138946 unique_id port 138946 remote_ip 10.8.0.178 138947 username barzegar 138947 mac 138947 bytes_out 0 138947 bytes_in 0 138947 station_ip 5.120.8.40 138947 port 211 138947 unique_id port 138947 remote_ip 10.8.1.174 138949 username aminvpn 138949 kill_reason Another user logged on this global unique id 138949 mac 138949 bytes_out 0 138949 bytes_in 0 138949 station_ip 83.122.227.32 138949 port 312 138949 unique_id port 138951 username aminvpn 138951 kill_reason Another user logged on this global unique id 138951 mac 138951 bytes_out 0 138951 bytes_in 0 138951 station_ip 83.122.227.32 138951 port 312 138951 unique_id port 138953 username mirzaei 138953 kill_reason Another user logged on this global unique id 138953 mac 138953 bytes_out 0 138953 bytes_in 0 138953 station_ip 5.120.72.122 138953 port 315 138953 unique_id port 138954 username aminvpn 138954 kill_reason Another user logged on this global unique id 138954 mac 138954 bytes_out 0 138954 bytes_in 0 138954 station_ip 83.122.227.32 138954 port 312 138954 unique_id port 138956 username barzegar 138956 mac 138956 bytes_out 0 138956 bytes_in 0 138956 station_ip 5.120.8.40 138956 port 332 138956 unique_id port 138956 remote_ip 10.8.0.234 138960 username asma2026 138960 mac 138960 bytes_out 0 138960 bytes_in 0 138960 station_ip 5.216.232.224 138960 port 211 138960 unique_id port 138960 remote_ip 10.8.1.122 138963 username asma2026 138963 mac 138963 bytes_out 0 138963 bytes_in 0 138963 station_ip 5.216.232.224 138963 port 211 138963 unique_id port 138963 remote_ip 10.8.1.122 138964 username mosi 138964 kill_reason Another user logged on this global unique id 138964 mac 138964 bytes_out 0 138964 bytes_in 0 138964 station_ip 151.235.75.185 138964 port 331 138964 unique_id port 138967 username barzegar 138967 mac 138967 bytes_out 0 138967 bytes_in 0 138967 station_ip 5.120.8.40 138967 port 332 138967 unique_id port 138967 remote_ip 10.8.0.234 138971 username asma2026 138971 mac 138971 bytes_out 0 138921 station_ip 5.120.8.40 138921 port 194 138921 unique_id port 138921 remote_ip 10.8.1.174 138928 username amir 138928 mac 138928 bytes_out 0 138928 bytes_in 0 138928 station_ip 37.129.144.161 138928 port 211 138928 unique_id port 138928 remote_ip 10.8.1.22 138929 username amir 138929 mac 138929 bytes_out 0 138929 bytes_in 0 138929 station_ip 37.129.144.161 138929 port 211 138929 unique_id port 138929 remote_ip 10.8.1.22 138931 username amir 138931 mac 138931 bytes_out 0 138931 bytes_in 0 138931 station_ip 37.129.144.161 138931 port 211 138931 unique_id port 138931 remote_ip 10.8.1.22 138932 username amir 138932 mac 138932 bytes_out 0 138932 bytes_in 0 138932 station_ip 37.129.144.161 138932 port 332 138932 unique_id port 138932 remote_ip 10.8.0.50 138933 username aminvpn 138933 kill_reason Another user logged on this global unique id 138933 mac 138933 bytes_out 0 138933 bytes_in 0 138933 station_ip 83.122.227.32 138933 port 312 138933 unique_id port 138937 username farhad2 138937 mac 138937 bytes_out 0 138937 bytes_in 0 138937 station_ip 5.120.108.229 138937 port 194 138937 unique_id port 138937 remote_ip 10.8.1.222 138938 username farhad2 138938 mac 138938 bytes_out 0 138938 bytes_in 0 138938 station_ip 5.120.108.229 138938 port 194 138938 unique_id port 138938 remote_ip 10.8.1.222 138939 username farhad2 138939 mac 138939 bytes_out 0 138939 bytes_in 0 138939 station_ip 5.120.108.229 138939 port 194 138939 unique_id port 138939 remote_ip 10.8.1.222 138941 username mirzaei 138941 kill_reason Another user logged on this global unique id 138941 mac 138941 bytes_out 0 138941 bytes_in 0 138941 station_ip 5.120.72.122 138941 port 315 138941 unique_id port 138941 remote_ip 10.8.0.66 138948 username amir 138948 mac 138948 bytes_out 32450 138948 bytes_in 12434 138948 station_ip 37.129.144.161 138948 port 339 138948 unique_id port 138948 remote_ip 10.8.0.50 138950 username aminvpn 138950 unique_id port 138950 terminate_cause User-Request 138950 bytes_out 293403 138950 bytes_in 2032361 138950 station_ip 5.233.49.34 138950 port 15730634 138950 nas_port_type Virtual 138950 remote_ip 5.5.5.230 138952 username farhad2 138952 mac 138952 bytes_out 0 138952 bytes_in 0 138952 station_ip 5.120.108.229 138952 port 194 138952 unique_id port 138952 remote_ip 10.8.1.222 138957 username farhad2 138957 mac 138957 bytes_out 0 138957 bytes_in 0 138957 station_ip 5.120.108.229 138957 port 194 138957 unique_id port 138957 remote_ip 10.8.1.222 138958 username farhad2 138958 mac 138958 bytes_out 0 138958 bytes_in 0 138958 station_ip 5.119.119.87 138958 port 211 138958 unique_id port 138958 remote_ip 10.8.1.222 138959 username aminvpn 138959 kill_reason Another user logged on this global unique id 138959 mac 138959 bytes_out 0 138959 bytes_in 0 138959 station_ip 83.122.227.32 138959 port 312 138959 unique_id port 138961 username barzegar 138961 mac 138961 bytes_out 0 138961 bytes_in 0 138961 station_ip 5.120.8.40 138961 port 332 138961 unique_id port 138961 remote_ip 10.8.0.234 138962 username aminvpn 138962 kill_reason Another user logged on this global unique id 138962 mac 138962 bytes_out 0 138962 bytes_in 0 138962 station_ip 83.122.227.32 138962 port 312 138962 unique_id port 138966 username asma2026 138966 mac 138966 bytes_out 0 138966 bytes_in 0 138966 station_ip 5.216.122.187 138966 port 211 138966 unique_id port 138966 remote_ip 10.8.1.122 138968 username mosi 138968 mac 138965 mac 138965 bytes_out 0 138965 bytes_in 0 138965 station_ip 83.122.227.32 138965 port 312 138965 unique_id port 138969 username aminvpn 138969 kill_reason Another user logged on this global unique id 138969 mac 138969 bytes_out 0 138969 bytes_in 0 138969 station_ip 83.122.227.32 138969 port 312 138969 unique_id port 138970 username vanila 138970 mac 138970 bytes_out 0 138970 bytes_in 0 138970 station_ip 83.122.169.94 138970 port 336 138970 unique_id port 138970 remote_ip 10.8.0.178 138972 username barzegar 138972 mac 138972 bytes_out 0 138972 bytes_in 0 138972 station_ip 5.120.8.40 138972 port 331 138972 unique_id port 138972 remote_ip 10.8.0.234 138975 username barzegar 138975 mac 138975 bytes_out 0 138975 bytes_in 0 138975 station_ip 5.120.8.40 138975 port 331 138975 unique_id port 138975 remote_ip 10.8.0.234 138980 username alipour 138980 mac 138980 bytes_out 0 138980 bytes_in 0 138980 station_ip 113.203.112.25 138980 port 206 138980 unique_id port 138980 remote_ip 10.8.1.50 138982 username aminvpn 138982 unique_id port 138982 terminate_cause Lost-Carrier 138982 bytes_out 1552478 138982 bytes_in 5550190 138982 station_ip 5.233.49.34 138982 port 15730635 138982 nas_port_type Virtual 138982 remote_ip 5.5.5.255 138984 username milan 138984 kill_reason Another user logged on this global unique id 138984 mac 138984 bytes_out 0 138984 bytes_in 0 138984 station_ip 5.119.229.52 138984 port 332 138984 unique_id port 138985 username farhad2 138985 mac 138985 bytes_out 0 138985 bytes_in 0 138985 station_ip 5.119.119.87 138985 port 194 138985 unique_id port 138985 remote_ip 10.8.1.222 138989 username asma2026 138989 mac 138989 bytes_out 0 138989 bytes_in 0 138989 station_ip 5.216.249.233 138989 port 331 138989 unique_id port 138989 remote_ip 10.8.0.170 138993 username alipour 138993 mac 138993 bytes_out 0 138993 bytes_in 0 138993 station_ip 113.203.112.25 138993 port 194 138993 unique_id port 138993 remote_ip 10.8.1.50 138997 username irannezhad 138997 mac 138997 bytes_out 226592 138997 bytes_in 1503942 138997 station_ip 37.129.197.245 138997 port 336 138997 unique_id port 138997 remote_ip 10.8.0.182 139000 username milan 139000 kill_reason Another user logged on this global unique id 139000 mac 139000 bytes_out 0 139000 bytes_in 0 139000 station_ip 5.119.229.52 139000 port 332 139000 unique_id port 139003 username milan 139003 kill_reason Another user logged on this global unique id 139003 mac 139003 bytes_out 0 139003 bytes_in 0 139003 station_ip 5.119.229.52 139003 port 332 139003 unique_id port 139004 username farhad2 139004 mac 139004 bytes_out 3681580 139004 bytes_in 30023602 139004 station_ip 5.120.63.124 139004 port 312 139004 unique_id port 139004 remote_ip 10.8.0.190 139005 username barzegar 139005 mac 139005 bytes_out 0 139005 bytes_in 0 139005 station_ip 5.120.8.40 139005 port 331 139005 unique_id port 139005 remote_ip 10.8.0.234 139007 username mosi 139007 kill_reason Another user logged on this global unique id 139007 mac 139007 bytes_out 0 139007 bytes_in 0 139007 station_ip 151.235.75.185 139007 port 331 139007 unique_id port 139007 remote_ip 10.8.0.138 139015 username alipour 139015 mac 139015 bytes_out 0 139015 bytes_in 0 139015 station_ip 113.203.112.25 139015 port 194 139015 unique_id port 139015 remote_ip 10.8.1.50 139020 username barzegar 139020 kill_reason Maximum check online fails reached 139020 mac 139020 bytes_out 0 139020 bytes_in 0 139020 station_ip 5.120.8.40 139020 port 206 138968 bytes_out 0 138968 bytes_in 0 138968 station_ip 151.235.75.185 138968 port 331 138968 unique_id port 138974 username alipour 138974 mac 138974 bytes_out 0 138974 bytes_in 0 138974 station_ip 113.203.112.25 138974 port 206 138974 unique_id port 138976 username milan 138976 kill_reason Another user logged on this global unique id 138976 mac 138976 bytes_out 0 138976 bytes_in 0 138976 station_ip 5.119.229.52 138976 port 332 138976 unique_id port 138976 remote_ip 10.8.0.218 138979 username asma2026 138979 mac 138979 bytes_out 0 138979 bytes_in 0 138979 station_ip 5.216.123.85 138979 port 331 138979 unique_id port 138979 remote_ip 10.8.0.170 138981 username alipour 138981 mac 138981 bytes_out 0 138981 bytes_in 0 138981 station_ip 113.203.112.25 138981 port 206 138981 unique_id port 138981 remote_ip 10.8.1.50 138983 username aminvpn 138983 kill_reason Another user logged on this global unique id 138983 mac 138983 bytes_out 0 138983 bytes_in 0 138983 station_ip 83.122.227.32 138983 port 312 138983 unique_id port 138988 username alipour 138988 mac 138988 bytes_out 0 138988 bytes_in 0 138988 station_ip 113.203.112.25 138988 port 206 138988 unique_id port 138988 remote_ip 10.8.1.50 138990 username farhad2 138990 kill_reason Another user logged on this global unique id 138990 mac 138990 bytes_out 0 138990 bytes_in 0 138990 station_ip 5.120.63.124 138990 port 336 138990 unique_id port 138990 remote_ip 10.8.0.190 138992 username irannezhad 138992 mac 138992 bytes_out 0 138992 bytes_in 0 138992 station_ip 83.122.237.20 138992 port 331 138992 unique_id port 138992 remote_ip 10.8.0.182 138994 username barzegar 138994 mac 138994 bytes_out 0 138994 bytes_in 0 138994 station_ip 5.120.8.40 138994 port 331 138994 unique_id port 138994 remote_ip 10.8.0.234 138995 username irannezhad 138995 mac 138995 bytes_out 99847 138995 bytes_in 604672 138995 station_ip 83.122.237.20 138995 port 331 138995 unique_id port 138995 remote_ip 10.8.0.182 138998 username alipour 138998 mac 138998 bytes_out 0 138998 bytes_in 0 138998 station_ip 113.203.112.25 138998 port 194 138998 unique_id port 138998 remote_ip 10.8.1.50 139001 username irannezhad 139001 mac 139001 bytes_out 386255 139001 bytes_in 1893558 139001 station_ip 37.129.197.245 139001 port 331 139001 unique_id port 139001 remote_ip 10.8.0.182 139006 username farhad2 139006 mac 139006 bytes_out 199492 139006 bytes_in 496712 139006 station_ip 5.120.63.124 139006 port 312 139006 unique_id port 139006 remote_ip 10.8.0.190 139009 username barzegar 139009 mac 139009 bytes_out 0 139009 bytes_in 0 139009 station_ip 5.120.8.40 139009 port 336 139009 unique_id port 139009 remote_ip 10.8.0.234 139010 username mosi 139010 kill_reason Another user logged on this global unique id 139010 mac 139010 bytes_out 0 139010 bytes_in 0 139010 station_ip 151.235.75.185 139010 port 331 139010 unique_id port 139011 username farhad2 139011 kill_reason Another user logged on this global unique id 139011 mac 139011 bytes_out 0 139011 bytes_in 0 139011 station_ip 5.120.63.124 139011 port 312 139011 unique_id port 139011 remote_ip 10.8.0.190 139013 username milan 139013 kill_reason Another user logged on this global unique id 139013 mac 139013 bytes_out 0 139013 bytes_in 0 139013 station_ip 5.119.229.52 139013 port 332 139013 unique_id port 139022 username milan 139022 kill_reason Another user logged on this global unique id 139022 mac 139022 bytes_out 0 139022 bytes_in 0 139022 station_ip 5.119.229.52 139022 port 332 139022 unique_id port 138971 bytes_in 0 138971 station_ip 5.216.251.224 138971 port 211 138971 unique_id port 138971 remote_ip 10.8.1.122 138973 username aminvpn 138973 kill_reason Another user logged on this global unique id 138973 mac 138973 bytes_out 0 138973 bytes_in 0 138973 station_ip 83.122.227.32 138973 port 312 138973 unique_id port 138977 username aminvpn 138977 kill_reason Another user logged on this global unique id 138977 mac 138977 bytes_out 0 138977 bytes_in 0 138977 station_ip 83.122.227.32 138977 port 312 138977 unique_id port 138978 username asma2026 138978 mac 138978 bytes_out 0 138978 bytes_in 0 138978 station_ip 5.216.123.85 138978 port 331 138978 unique_id port 138978 remote_ip 10.8.0.170 138986 username barzegar 138986 mac 138986 bytes_out 0 138986 bytes_in 0 138986 station_ip 5.120.8.40 138986 port 331 138986 unique_id port 138986 remote_ip 10.8.0.234 138987 username aminvpn 138987 mac 138987 bytes_out 0 138987 bytes_in 0 138987 station_ip 83.122.227.32 138987 port 312 138987 unique_id port 138991 username farhad2 138991 mac 138991 bytes_out 0 138991 bytes_in 0 138991 station_ip 5.120.63.124 138991 port 336 138991 unique_id port 138996 username farhad2 138996 mac 138996 bytes_out 2169798 138996 bytes_in 13646310 138996 station_ip 5.120.63.124 138996 port 312 138996 unique_id port 138996 remote_ip 10.8.0.190 138999 username barzegar 138999 mac 138999 bytes_out 0 138999 bytes_in 0 138999 station_ip 5.120.8.40 138999 port 331 138999 unique_id port 138999 remote_ip 10.8.0.234 139002 username barzegar 139002 mac 139002 bytes_out 0 139002 bytes_in 0 139002 station_ip 5.120.8.40 139002 port 331 139002 unique_id port 139002 remote_ip 10.8.0.234 139008 username milan 139008 kill_reason Another user logged on this global unique id 139008 mac 139008 bytes_out 0 139008 bytes_in 0 139008 station_ip 5.119.229.52 139008 port 332 139008 unique_id port 139012 username farhad2 139012 mac 139012 bytes_out 0 139012 bytes_in 0 139012 station_ip 5.120.63.124 139012 port 312 139012 unique_id port 139014 username barzegar 139014 mac 139014 bytes_out 0 139014 bytes_in 0 139014 station_ip 5.120.8.40 139014 port 336 139014 unique_id port 139014 remote_ip 10.8.0.234 139016 username farhad2 139016 mac 139016 bytes_out 1302172 139016 bytes_in 14937329 139016 station_ip 5.120.63.124 139016 port 312 139016 unique_id port 139016 remote_ip 10.8.0.190 139017 username mosi 139017 kill_reason Another user logged on this global unique id 139017 mac 139017 bytes_out 0 139017 bytes_in 0 139017 station_ip 151.235.75.185 139017 port 331 139017 unique_id port 139018 username barzegar 139018 mac 139018 bytes_out 0 139018 bytes_in 0 139018 station_ip 5.120.8.40 139018 port 206 139018 unique_id port 139018 remote_ip 10.8.1.174 139019 username sobhan 139019 unique_id port 139019 terminate_cause Lost-Carrier 139019 bytes_out 6631549 139019 bytes_in 111919985 139019 station_ip 5.120.83.124 139019 port 15730636 139019 nas_port_type Virtual 139019 remote_ip 5.5.5.210 139021 username mosi 139021 kill_reason Another user logged on this global unique id 139021 mac 139021 bytes_out 0 139021 bytes_in 0 139021 station_ip 151.235.75.185 139021 port 331 139021 unique_id port 139024 username barzegar 139024 mac 139024 bytes_out 0 139024 bytes_in 0 139024 station_ip 5.120.8.40 139024 port 336 139024 unique_id port 139024 remote_ip 10.8.0.234 139027 username farhad2 139027 mac 139027 bytes_out 0 139027 bytes_in 0 139027 station_ip 5.120.63.124 139020 unique_id port 139026 username mosi 139026 kill_reason Another user logged on this global unique id 139026 mac 139026 bytes_out 0 139026 bytes_in 0 139026 station_ip 151.235.75.185 139026 port 331 139026 unique_id port 139027 port 312 139027 unique_id port 139030 username barzegar 139030 mac 139030 bytes_out 0 139030 bytes_in 0 139030 station_ip 5.120.8.40 139030 port 336 139030 unique_id port 139030 remote_ip 10.8.0.234 139031 username milan 139031 kill_reason Another user logged on this global unique id 139031 mac 139031 bytes_out 0 139031 bytes_in 0 139031 station_ip 5.119.229.52 139031 port 332 139031 unique_id port 139032 username khademi 139032 kill_reason Another user logged on this global unique id 139032 mac 139032 bytes_out 0 139032 bytes_in 0 139032 station_ip 113.203.70.160 139032 port 326 139032 unique_id port 139035 username barzegar 139035 mac 139035 bytes_out 0 139035 bytes_in 0 139035 station_ip 5.120.8.40 139035 port 336 139035 unique_id port 139035 remote_ip 10.8.0.234 139036 username khademi 139036 kill_reason Another user logged on this global unique id 139036 mac 139036 bytes_out 0 139036 bytes_in 0 139036 station_ip 113.203.70.160 139036 port 326 139036 unique_id port 139038 username mosi 139038 kill_reason Another user logged on this global unique id 139038 mac 139038 bytes_out 0 139038 bytes_in 0 139038 station_ip 151.235.75.185 139038 port 331 139038 unique_id port 139040 username khademi 139040 kill_reason Another user logged on this global unique id 139040 mac 139040 bytes_out 0 139040 bytes_in 0 139040 station_ip 113.203.70.160 139040 port 326 139040 unique_id port 139041 username alipour 139041 mac 139041 bytes_out 52892 139041 bytes_in 61784 139041 station_ip 113.203.112.25 139041 port 194 139041 unique_id port 139041 remote_ip 10.8.1.50 139042 username barzegar 139042 mac 139042 bytes_out 0 139042 bytes_in 0 139042 station_ip 5.120.8.40 139042 port 312 139042 unique_id port 139042 remote_ip 10.8.0.234 139043 username khademi 139043 kill_reason Another user logged on this global unique id 139043 mac 139043 bytes_out 0 139043 bytes_in 0 139043 station_ip 113.203.70.160 139043 port 326 139043 unique_id port 139044 username barzegar 139044 mac 139044 bytes_out 0 139044 bytes_in 0 139044 station_ip 5.120.8.40 139044 port 332 139044 unique_id port 139044 remote_ip 10.8.0.234 139045 username khademi 139045 kill_reason Another user logged on this global unique id 139045 mac 139045 bytes_out 0 139045 bytes_in 0 139045 station_ip 113.203.70.160 139045 port 326 139045 unique_id port 139046 username mehdizare 139046 mac 139046 bytes_out 0 139046 bytes_in 0 139046 station_ip 5.120.148.206 139046 port 210 139046 unique_id port 139046 remote_ip 10.8.1.42 139049 username hashtadani3 139049 mac 139049 bytes_out 3048983 139049 bytes_in 15024322 139049 station_ip 83.122.122.88 139049 port 312 139049 unique_id port 139049 remote_ip 10.8.0.154 139051 username khademi 139051 kill_reason Another user logged on this global unique id 139051 mac 139051 bytes_out 0 139051 bytes_in 0 139051 station_ip 113.203.70.160 139051 port 326 139051 unique_id port 139053 username alipour 139053 mac 139053 bytes_out 26111 139053 bytes_in 40653 139053 station_ip 113.203.112.25 139053 port 194 139053 unique_id port 139053 remote_ip 10.8.1.50 139054 username barzegar 139054 mac 139054 bytes_out 0 139054 bytes_in 0 139054 station_ip 5.120.8.40 139054 port 211 139054 unique_id port 139054 remote_ip 10.8.1.174 139055 username khademi 139056 username hashtadani3 139023 username farhad2 139023 kill_reason Another user logged on this global unique id 139023 mac 139023 bytes_out 0 139023 bytes_in 0 139023 station_ip 5.120.63.124 139023 port 312 139023 unique_id port 139023 remote_ip 10.8.0.190 139025 username farhad2 139025 kill_reason Another user logged on this global unique id 139025 mac 139025 bytes_out 0 139025 bytes_in 0 139025 station_ip 5.120.63.124 139025 port 312 139025 unique_id port 139028 username mosi 139028 kill_reason Another user logged on this global unique id 139028 mac 139028 bytes_out 0 139028 bytes_in 0 139028 station_ip 151.235.75.185 139028 port 331 139028 unique_id port 139029 username alipour 139029 mac 139029 bytes_out 33269 139029 bytes_in 37894 139029 station_ip 113.203.112.25 139029 port 194 139029 unique_id port 139029 remote_ip 10.8.1.50 139033 username mosi 139033 kill_reason Another user logged on this global unique id 139033 mac 139033 bytes_out 0 139033 bytes_in 0 139033 station_ip 151.235.75.185 139033 port 331 139033 unique_id port 139034 username milan 139034 mac 139034 bytes_out 0 139034 bytes_in 0 139034 station_ip 5.119.229.52 139034 port 332 139034 unique_id port 139037 username farhad2 139037 mac 139037 bytes_out 2876902 139037 bytes_in 30023096 139037 station_ip 5.120.63.124 139037 port 312 139037 unique_id port 139037 remote_ip 10.8.0.190 139039 username barzegar 139039 mac 139039 bytes_out 0 139039 bytes_in 0 139039 station_ip 5.120.8.40 139039 port 312 139039 unique_id port 139039 remote_ip 10.8.0.234 139047 username khademi 139047 kill_reason Another user logged on this global unique id 139047 mac 139047 bytes_out 0 139047 bytes_in 0 139047 station_ip 113.203.70.160 139047 port 326 139047 unique_id port 139048 username barzegar 139048 mac 139048 bytes_out 0 139048 bytes_in 0 139048 station_ip 5.120.8.40 139048 port 211 139048 unique_id port 139048 remote_ip 10.8.1.174 139050 username hashtadani3 139050 mac 139050 bytes_out 0 139050 bytes_in 0 139050 station_ip 83.122.122.88 139050 port 312 139050 unique_id port 139050 remote_ip 10.8.0.154 139052 username hashtadani3 139052 kill_reason Another user logged on this global unique id 139052 mac 139052 bytes_out 0 139052 bytes_in 0 139052 station_ip 83.122.122.88 139052 port 312 139052 unique_id port 139052 remote_ip 10.8.0.154 139055 kill_reason Another user logged on this global unique id 139055 mac 139055 bytes_out 0 139055 bytes_in 0 139055 station_ip 113.203.70.160 139055 port 326 139055 unique_id port 139056 mac 139056 bytes_out 0 139056 bytes_in 0 139056 station_ip 83.122.122.88 139056 port 312 139056 unique_id port 139057 username hashtadani3 139057 mac 139057 bytes_out 0 139057 bytes_in 0 139057 station_ip 83.122.122.88 139057 port 312 139057 unique_id port 139057 remote_ip 10.8.0.154 139058 username hashtadani3 139058 mac 139058 bytes_out 0 139058 bytes_in 0 139058 station_ip 83.122.122.88 139058 port 211 139058 unique_id port 139058 remote_ip 10.8.1.94 139059 username alipour 139059 mac 139059 bytes_out 0 139059 bytes_in 0 139059 station_ip 113.203.112.25 139059 port 194 139059 unique_id port 139059 remote_ip 10.8.1.50 139060 username hashtadani3 139060 mac 139060 bytes_out 0 139060 bytes_in 0 139060 station_ip 83.122.122.88 139060 port 312 139060 unique_id port 139060 remote_ip 10.8.0.154 139061 username hashtadani3 139061 mac 139061 bytes_out 0 139061 bytes_in 0 139061 station_ip 83.122.122.88 139061 port 312 139061 unique_id port 139061 remote_ip 10.8.0.154 139062 username barzegar 139062 mac 139062 bytes_out 0 139062 bytes_in 0 139062 station_ip 5.120.8.40 139062 port 211 139062 unique_id port 139062 remote_ip 10.8.1.174 139063 username hashtadani3 139063 mac 139063 bytes_out 0 139063 bytes_in 0 139063 station_ip 83.122.122.88 139063 port 312 139063 unique_id port 139063 remote_ip 10.8.0.154 139065 username hashtadani3 139065 kill_reason Maximum check online fails reached 139065 mac 139065 bytes_out 0 139065 bytes_in 0 139065 station_ip 83.122.122.88 139065 port 211 139065 unique_id port 139071 username hashtadani3 139071 mac 139071 bytes_out 0 139071 bytes_in 0 139071 station_ip 83.122.122.88 139071 port 312 139071 unique_id port 139071 remote_ip 10.8.0.154 139073 username hashtadani3 139073 mac 139073 bytes_out 0 139073 bytes_in 0 139073 station_ip 83.122.122.88 139073 port 312 139073 unique_id port 139073 remote_ip 10.8.0.154 139075 username hashtadani3 139075 mac 139075 bytes_out 0 139075 bytes_in 0 139075 station_ip 83.122.122.88 139075 port 332 139075 unique_id port 139075 remote_ip 10.8.0.154 139081 username hashtadani3 139081 mac 139081 bytes_out 0 139081 bytes_in 0 139081 station_ip 83.122.122.88 139081 port 332 139081 unique_id port 139081 remote_ip 10.8.0.154 139085 username hashtadani3 139085 mac 139085 bytes_out 0 139085 bytes_in 0 139085 station_ip 83.122.122.88 139085 port 213 139085 unique_id port 139085 remote_ip 10.8.1.94 139087 username sedighe 139087 mac 139087 bytes_out 0 139087 bytes_in 0 139087 station_ip 37.129.149.60 139087 port 332 139087 unique_id port 139087 remote_ip 10.8.0.146 139092 username alipour 139092 mac 139092 bytes_out 58601 139092 bytes_in 458233 139092 station_ip 113.203.112.25 139092 port 194 139092 unique_id port 139092 remote_ip 10.8.1.50 139093 username hashtadani3 139093 mac 139093 bytes_out 0 139093 bytes_in 0 139093 station_ip 83.122.122.88 139093 port 332 139093 unique_id port 139093 remote_ip 10.8.0.154 139094 username hashtadani3 139094 mac 139094 bytes_out 0 139094 bytes_in 0 139094 station_ip 83.122.122.88 139094 port 332 139094 unique_id port 139094 remote_ip 10.8.0.154 139102 username hashtadani3 139102 mac 139102 bytes_out 0 139102 bytes_in 0 139102 station_ip 83.122.122.88 139102 port 336 139102 unique_id port 139102 remote_ip 10.8.0.154 139107 username hashtadani3 139107 kill_reason Maximum check online fails reached 139107 mac 139107 bytes_out 0 139107 bytes_in 0 139107 station_ip 83.122.122.88 139107 port 336 139107 unique_id port 139108 username hashtadani3 139108 mac 139108 bytes_out 0 139108 bytes_in 0 139108 station_ip 83.122.122.88 139108 port 339 139108 unique_id port 139108 remote_ip 10.8.0.154 139109 username barzegar 139109 mac 139109 bytes_out 0 139109 bytes_in 0 139109 station_ip 5.120.8.40 139109 port 339 139109 unique_id port 139109 remote_ip 10.8.0.234 139115 username morteza 139115 mac 139115 bytes_out 1309574 139115 bytes_in 23196322 139115 station_ip 37.129.191.78 139115 port 312 139115 unique_id port 139115 remote_ip 10.8.0.46 139120 username barzegar 139120 mac 139120 bytes_out 0 139120 bytes_in 0 139120 station_ip 5.120.8.40 139120 port 214 139120 unique_id port 139120 remote_ip 10.8.1.174 139121 username hashtadani3 139121 mac 139121 bytes_out 0 139121 bytes_in 0 139121 station_ip 83.122.122.88 139121 port 312 139121 unique_id port 139121 remote_ip 10.8.0.154 139123 username hashtadani3 139064 username hashtadani3 139064 mac 139064 bytes_out 0 139064 bytes_in 0 139064 station_ip 83.122.122.88 139064 port 312 139064 unique_id port 139064 remote_ip 10.8.0.154 139072 username hashtadani3 139072 mac 139072 bytes_out 0 139072 bytes_in 0 139072 station_ip 83.122.122.88 139072 port 213 139072 unique_id port 139072 remote_ip 10.8.1.94 139078 username houshang 139078 mac 139078 bytes_out 166896 139078 bytes_in 283622 139078 station_ip 5.120.169.195 139078 port 312 139078 unique_id port 139078 remote_ip 10.8.0.22 139082 username barzegar 139082 mac 139082 bytes_out 0 139082 bytes_in 0 139082 station_ip 5.120.8.40 139082 port 336 139082 unique_id port 139082 remote_ip 10.8.0.234 139083 username hashtadani3 139083 mac 139083 bytes_out 0 139083 bytes_in 0 139083 station_ip 83.122.122.88 139083 port 336 139083 unique_id port 139083 remote_ip 10.8.0.154 139086 username hashtadani3 139086 mac 139086 bytes_out 0 139086 bytes_in 0 139086 station_ip 83.122.122.88 139086 port 213 139086 unique_id port 139086 remote_ip 10.8.1.94 139089 username hashtadani3 139089 mac 139089 bytes_out 0 139089 bytes_in 0 139089 station_ip 83.122.122.88 139089 port 332 139089 unique_id port 139089 remote_ip 10.8.0.154 139091 username mehdizare 139091 mac 139091 bytes_out 122246 139091 bytes_in 131963 139091 station_ip 5.120.148.206 139091 port 210 139091 unique_id port 139091 remote_ip 10.8.1.42 139095 username mehdizare 139095 mac 139095 bytes_out 0 139095 bytes_in 0 139095 station_ip 5.120.148.206 139095 port 210 139095 unique_id port 139095 remote_ip 10.8.1.42 139096 username hashtadani3 139096 mac 139096 bytes_out 0 139096 bytes_in 0 139096 station_ip 83.122.122.88 139096 port 332 139096 unique_id port 139096 remote_ip 10.8.0.154 139097 username sedighe 139097 mac 139097 bytes_out 49103 139097 bytes_in 53092 139097 station_ip 37.129.149.60 139097 port 339 139097 unique_id port 139097 remote_ip 10.8.0.146 139098 username hashtadani3 139098 mac 139098 bytes_out 0 139098 bytes_in 0 139098 station_ip 83.122.122.88 139098 port 336 139098 unique_id port 139098 remote_ip 10.8.0.154 139100 username hashtadani3 139100 mac 139100 bytes_out 0 139100 bytes_in 0 139100 station_ip 83.122.122.88 139100 port 336 139100 unique_id port 139100 remote_ip 10.8.0.154 139101 username hashtadani3 139101 mac 139101 bytes_out 0 139101 bytes_in 0 139101 station_ip 83.122.122.88 139101 port 336 139101 unique_id port 139101 remote_ip 10.8.0.154 139103 username hashtadani3 139103 mac 139103 bytes_out 0 139103 bytes_in 0 139103 station_ip 83.122.122.88 139103 port 336 139103 unique_id port 139103 remote_ip 10.8.0.154 139104 username hashtadani3 139104 mac 139104 bytes_out 0 139104 bytes_in 0 139104 station_ip 83.122.122.88 139104 port 336 139104 unique_id port 139104 remote_ip 10.8.0.154 139105 username hashtadani3 139105 mac 139105 bytes_out 0 139105 bytes_in 0 139105 station_ip 83.122.122.88 139105 port 214 139105 unique_id port 139105 remote_ip 10.8.1.94 139106 username hashtadani3 139106 mac 139106 bytes_out 0 139106 bytes_in 0 139106 station_ip 83.122.122.88 139106 port 339 139106 unique_id port 139106 remote_ip 10.8.0.154 139118 username hashtadani3 139118 mac 139118 bytes_out 0 139118 bytes_in 0 139118 station_ip 83.122.122.88 139118 port 312 139118 unique_id port 139118 remote_ip 10.8.0.154 139122 username hashtadani3 139122 mac 139066 username hashtadani3 139066 mac 139066 bytes_out 0 139066 bytes_in 0 139066 station_ip 83.122.122.88 139066 port 312 139066 unique_id port 139066 remote_ip 10.8.0.154 139067 username hashtadani3 139067 mac 139067 bytes_out 0 139067 bytes_in 0 139067 station_ip 83.122.122.88 139067 port 312 139067 unique_id port 139067 remote_ip 10.8.0.154 139068 username hashtadani3 139068 mac 139068 bytes_out 0 139068 bytes_in 0 139068 station_ip 83.122.122.88 139068 port 312 139068 unique_id port 139068 remote_ip 10.8.0.154 139069 username hashtadani3 139069 mac 139069 bytes_out 0 139069 bytes_in 0 139069 station_ip 83.122.122.88 139069 port 213 139069 unique_id port 139069 remote_ip 10.8.1.94 139070 username hashtadani3 139070 mac 139070 bytes_out 0 139070 bytes_in 0 139070 station_ip 83.122.122.88 139070 port 312 139070 unique_id port 139070 remote_ip 10.8.0.154 139074 username barzegar 139074 mac 139074 bytes_out 0 139074 bytes_in 0 139074 station_ip 5.120.8.40 139074 port 213 139074 unique_id port 139074 remote_ip 10.8.1.174 139076 username hashtadani3 139076 mac 139076 bytes_out 0 139076 bytes_in 0 139076 station_ip 83.122.122.88 139076 port 332 139076 unique_id port 139076 remote_ip 10.8.0.154 139077 username hashtadani3 139077 mac 139077 bytes_out 0 139077 bytes_in 0 139077 station_ip 83.122.122.88 139077 port 332 139077 unique_id port 139077 remote_ip 10.8.0.154 139079 username hashtadani3 139079 mac 139079 bytes_out 0 139079 bytes_in 0 139079 station_ip 83.122.122.88 139079 port 332 139079 unique_id port 139079 remote_ip 10.8.0.154 139080 username hashtadani3 139080 mac 139080 bytes_out 0 139080 bytes_in 0 139080 station_ip 83.122.122.88 139080 port 332 139080 unique_id port 139080 remote_ip 10.8.0.154 139084 username hashtadani3 139084 mac 139084 bytes_out 0 139084 bytes_in 0 139084 station_ip 83.122.122.88 139084 port 336 139084 unique_id port 139084 remote_ip 10.8.0.154 139088 username hashtadani3 139088 mac 139088 bytes_out 0 139088 bytes_in 0 139088 station_ip 83.122.122.88 139088 port 336 139088 unique_id port 139088 remote_ip 10.8.0.154 139090 username hashtadani3 139090 kill_reason Maximum check online fails reached 139090 mac 139090 bytes_out 0 139090 bytes_in 0 139090 station_ip 83.122.122.88 139090 port 213 139090 unique_id port 139099 username barzegar 139099 mac 139099 bytes_out 0 139099 bytes_in 0 139099 station_ip 5.120.8.40 139099 port 339 139099 unique_id port 139099 remote_ip 10.8.0.234 139110 username hashtadani3 139110 mac 139110 bytes_out 0 139110 bytes_in 0 139110 station_ip 83.122.122.88 139110 port 339 139110 unique_id port 139110 remote_ip 10.8.0.154 139111 username hashtadani3 139111 mac 139111 bytes_out 0 139111 bytes_in 0 139111 station_ip 83.122.122.88 139111 port 214 139111 unique_id port 139111 remote_ip 10.8.1.94 139112 username hashtadani3 139112 mac 139112 bytes_out 0 139112 bytes_in 0 139112 station_ip 83.122.122.88 139112 port 339 139112 unique_id port 139112 remote_ip 10.8.0.154 139113 username hashtadani3 139113 mac 139113 bytes_out 0 139113 bytes_in 0 139113 station_ip 83.122.122.88 139113 port 214 139113 unique_id port 139113 remote_ip 10.8.1.94 139114 username hashtadani3 139114 mac 139114 bytes_out 0 139114 bytes_in 0 139114 station_ip 83.122.122.88 139114 port 340 139114 unique_id port 139114 remote_ip 10.8.0.154 139116 username hashtadani3 139116 mac 139116 bytes_out 0 139116 bytes_in 0 139116 station_ip 83.122.122.88 139116 port 312 139116 unique_id port 139116 remote_ip 10.8.0.154 139117 username hashtadani3 139117 mac 139117 bytes_out 0 139117 bytes_in 0 139117 station_ip 83.122.122.88 139117 port 214 139117 unique_id port 139117 remote_ip 10.8.1.94 139119 username hashtadani3 139119 mac 139119 bytes_out 0 139119 bytes_in 0 139119 station_ip 83.122.122.88 139119 port 312 139119 unique_id port 139119 remote_ip 10.8.0.154 139128 username hashtadani3 139128 mac 139128 bytes_out 0 139128 bytes_in 0 139128 station_ip 83.122.122.88 139128 port 214 139128 unique_id port 139128 remote_ip 10.8.1.94 139129 username hashtadani3 139129 mac 139129 bytes_out 0 139129 bytes_in 0 139129 station_ip 83.122.122.88 139129 port 332 139129 unique_id port 139129 remote_ip 10.8.0.154 139132 username hashtadani3 139132 mac 139132 bytes_out 0 139132 bytes_in 0 139132 station_ip 83.122.122.88 139132 port 312 139132 unique_id port 139132 remote_ip 10.8.0.154 139133 username hashtadani3 139133 kill_reason Maximum check online fails reached 139133 mac 139133 bytes_out 0 139133 bytes_in 0 139133 station_ip 83.122.122.88 139133 port 214 139133 unique_id port 139136 username hashtadani3 139136 mac 139136 bytes_out 0 139136 bytes_in 0 139136 station_ip 83.122.122.88 139136 port 312 139136 unique_id port 139136 remote_ip 10.8.0.154 139140 username hashtadani3 139140 mac 139140 bytes_out 0 139140 bytes_in 0 139140 station_ip 83.122.122.88 139140 port 312 139140 unique_id port 139140 remote_ip 10.8.0.154 139142 username hashtadani3 139142 mac 139142 bytes_out 0 139142 bytes_in 0 139142 station_ip 83.122.122.88 139142 port 312 139142 unique_id port 139142 remote_ip 10.8.0.154 139143 username hashtadani3 139143 mac 139143 bytes_out 0 139143 bytes_in 0 139143 station_ip 83.122.122.88 139143 port 312 139143 unique_id port 139143 remote_ip 10.8.0.154 139149 username hashtadani3 139149 mac 139149 bytes_out 0 139149 bytes_in 0 139149 station_ip 83.122.122.88 139149 port 312 139149 unique_id port 139149 remote_ip 10.8.0.154 139150 username hashtadani3 139150 mac 139150 bytes_out 0 139150 bytes_in 0 139150 station_ip 83.122.122.88 139150 port 312 139150 unique_id port 139150 remote_ip 10.8.0.154 139151 username hashtadani3 139151 mac 139151 bytes_out 0 139151 bytes_in 0 139151 station_ip 83.122.122.88 139151 port 312 139151 unique_id port 139151 remote_ip 10.8.0.154 139161 username barzegar 139161 mac 139161 bytes_out 0 139161 bytes_in 0 139161 station_ip 5.120.8.40 139161 port 215 139161 unique_id port 139161 remote_ip 10.8.1.174 139162 username hashtadani3 139162 mac 139162 bytes_out 0 139162 bytes_in 0 139162 station_ip 83.122.122.88 139162 port 215 139162 unique_id port 139162 remote_ip 10.8.1.94 139164 username hashtadani3 139164 mac 139164 bytes_out 0 139164 bytes_in 0 139164 station_ip 83.122.122.88 139164 port 312 139164 unique_id port 139164 remote_ip 10.8.0.154 139171 username hashtadani3 139171 mac 139171 bytes_out 0 139171 bytes_in 0 139171 station_ip 83.122.122.88 139171 port 312 139171 unique_id port 139171 remote_ip 10.8.0.154 139173 username hashtadani3 139173 mac 139173 bytes_out 0 139173 bytes_in 0 139173 station_ip 83.122.122.88 139173 port 312 139173 unique_id port 139173 remote_ip 10.8.0.154 139175 username hashtadani3 139175 mac 139175 bytes_out 0 139175 bytes_in 0 139122 bytes_out 0 139122 bytes_in 0 139122 station_ip 83.122.122.88 139122 port 312 139122 unique_id port 139122 remote_ip 10.8.0.154 139125 username sedighe 139125 mac 139125 bytes_out 0 139125 bytes_in 0 139125 station_ip 37.129.149.60 139125 port 332 139125 unique_id port 139125 remote_ip 10.8.0.146 139127 username houshang 139127 kill_reason Another user logged on this global unique id 139127 mac 139127 bytes_out 0 139127 bytes_in 0 139127 station_ip 5.120.169.195 139127 port 339 139127 unique_id port 139127 remote_ip 10.8.0.22 139131 username hashtadani3 139131 mac 139131 bytes_out 0 139131 bytes_in 0 139131 station_ip 83.122.122.88 139131 port 312 139131 unique_id port 139131 remote_ip 10.8.0.154 139134 username hashtadani3 139134 mac 139134 bytes_out 0 139134 bytes_in 0 139134 station_ip 83.122.122.88 139134 port 312 139134 unique_id port 139134 remote_ip 10.8.0.154 139135 username houshang 139135 mac 139135 bytes_out 0 139135 bytes_in 0 139135 station_ip 5.120.169.195 139135 port 339 139135 unique_id port 139137 username barzegar 139137 mac 139137 bytes_out 0 139137 bytes_in 0 139137 station_ip 5.120.8.40 139137 port 215 139137 unique_id port 139137 remote_ip 10.8.1.174 139144 username hashtadani3 139144 mac 139144 bytes_out 0 139144 bytes_in 0 139144 station_ip 83.122.122.88 139144 port 312 139144 unique_id port 139144 remote_ip 10.8.0.154 139145 username hashtadani3 139145 mac 139145 bytes_out 0 139145 bytes_in 0 139145 station_ip 83.122.122.88 139145 port 312 139145 unique_id port 139145 remote_ip 10.8.0.154 139146 username sedighe 139146 mac 139146 bytes_out 870536 139146 bytes_in 14565624 139146 station_ip 83.122.137.12 139146 port 332 139146 unique_id port 139146 remote_ip 10.8.0.146 139147 username hashtadani3 139147 mac 139147 bytes_out 0 139147 bytes_in 0 139147 station_ip 83.122.122.88 139147 port 312 139147 unique_id port 139147 remote_ip 10.8.0.154 139148 username barzegar 139148 mac 139148 bytes_out 0 139148 bytes_in 0 139148 station_ip 5.120.8.40 139148 port 215 139148 unique_id port 139148 remote_ip 10.8.1.174 139152 username alipour 139152 mac 139152 bytes_out 0 139152 bytes_in 0 139152 station_ip 113.203.112.25 139152 port 194 139152 unique_id port 139152 remote_ip 10.8.1.50 139153 username hashtadani3 139153 mac 139153 bytes_out 0 139153 bytes_in 0 139153 station_ip 83.122.122.88 139153 port 312 139153 unique_id port 139153 remote_ip 10.8.0.154 139156 username sedighe 139156 mac 139156 bytes_out 0 139156 bytes_in 0 139156 station_ip 83.123.200.134 139156 port 332 139156 unique_id port 139156 remote_ip 10.8.0.146 139163 username hashtadani3 139163 mac 139163 bytes_out 0 139163 bytes_in 0 139163 station_ip 83.122.122.88 139163 port 312 139163 unique_id port 139163 remote_ip 10.8.0.154 139165 username hashtadani3 139165 mac 139165 bytes_out 0 139165 bytes_in 0 139165 station_ip 83.122.122.88 139165 port 312 139165 unique_id port 139165 remote_ip 10.8.0.154 139166 username hashtadani3 139166 mac 139166 bytes_out 0 139166 bytes_in 0 139166 station_ip 83.122.122.88 139166 port 312 139166 unique_id port 139166 remote_ip 10.8.0.154 139167 username hashtadani3 139167 mac 139167 bytes_out 0 139167 bytes_in 0 139167 station_ip 83.122.122.88 139167 port 312 139167 unique_id port 139167 remote_ip 10.8.0.154 139168 username hashtadani3 139168 mac 139168 bytes_out 0 139168 bytes_in 0 139123 mac 139123 bytes_out 0 139123 bytes_in 0 139123 station_ip 83.122.122.88 139123 port 312 139123 unique_id port 139123 remote_ip 10.8.0.154 139124 username hashtadani3 139124 mac 139124 bytes_out 0 139124 bytes_in 0 139124 station_ip 83.122.122.88 139124 port 312 139124 unique_id port 139124 remote_ip 10.8.0.154 139126 username hashtadani3 139126 mac 139126 bytes_out 0 139126 bytes_in 0 139126 station_ip 83.122.122.88 139126 port 332 139126 unique_id port 139126 remote_ip 10.8.0.154 139130 username sedighe 139130 mac 139130 bytes_out 56247 139130 bytes_in 70882 139130 station_ip 83.123.11.244 139130 port 312 139130 unique_id port 139130 remote_ip 10.8.0.146 139138 username hashtadani3 139138 mac 139138 bytes_out 0 139138 bytes_in 0 139138 station_ip 83.122.122.88 139138 port 312 139138 unique_id port 139138 remote_ip 10.8.0.154 139139 username hashtadani3 139139 mac 139139 bytes_out 2111 139139 bytes_in 4706 139139 station_ip 83.122.122.88 139139 port 312 139139 unique_id port 139139 remote_ip 10.8.0.154 139141 username hashtadani3 139141 mac 139141 bytes_out 0 139141 bytes_in 0 139141 station_ip 83.122.122.88 139141 port 312 139141 unique_id port 139141 remote_ip 10.8.0.154 139154 username hashtadani3 139154 mac 139154 bytes_out 0 139154 bytes_in 0 139154 station_ip 83.122.122.88 139154 port 312 139154 unique_id port 139154 remote_ip 10.8.0.154 139155 username hashtadani3 139155 mac 139155 bytes_out 0 139155 bytes_in 0 139155 station_ip 83.122.122.88 139155 port 312 139155 unique_id port 139155 remote_ip 10.8.0.154 139157 username hashtadani3 139157 mac 139157 bytes_out 0 139157 bytes_in 0 139157 station_ip 83.122.122.88 139157 port 215 139157 unique_id port 139157 remote_ip 10.8.1.94 139158 username hashtadani3 139158 mac 139158 bytes_out 0 139158 bytes_in 0 139158 station_ip 83.122.122.88 139158 port 215 139158 unique_id port 139158 remote_ip 10.8.1.94 139159 username hashtadani3 139159 mac 139159 bytes_out 0 139159 bytes_in 0 139159 station_ip 83.122.122.88 139159 port 215 139159 unique_id port 139159 remote_ip 10.8.1.94 139160 username hashtadani3 139160 mac 139160 bytes_out 0 139160 bytes_in 0 139160 station_ip 83.122.122.88 139160 port 312 139160 unique_id port 139160 remote_ip 10.8.0.154 139170 username barzegar 139170 mac 139170 bytes_out 0 139170 bytes_in 0 139170 station_ip 5.120.8.40 139170 port 216 139170 unique_id port 139170 remote_ip 10.8.1.174 139172 username hashtadani3 139172 mac 139172 bytes_out 0 139172 bytes_in 0 139172 station_ip 83.122.122.88 139172 port 312 139172 unique_id port 139172 remote_ip 10.8.0.154 139177 username alipour 139177 mac 139177 bytes_out 0 139177 bytes_in 0 139177 station_ip 113.203.112.25 139177 port 194 139177 unique_id port 139177 remote_ip 10.8.1.50 139180 username hashtadani3 139180 mac 139180 bytes_out 0 139180 bytes_in 0 139180 station_ip 83.122.122.88 139180 port 332 139180 unique_id port 139180 remote_ip 10.8.0.154 139181 username mohammadjavad 139181 mac 139181 bytes_out 0 139181 bytes_in 0 139181 station_ip 83.123.234.73 139181 port 215 139181 unique_id port 139181 remote_ip 10.8.1.146 139183 username hashtadani3 139183 mac 139183 bytes_out 0 139183 bytes_in 0 139183 station_ip 83.122.122.88 139183 port 332 139183 unique_id port 139183 remote_ip 10.8.0.154 139188 username alipour 139188 mac 139188 bytes_out 0 139168 station_ip 83.122.122.88 139168 port 312 139168 unique_id port 139168 remote_ip 10.8.0.154 139169 username hashtadani3 139169 mac 139169 bytes_out 0 139169 bytes_in 0 139169 station_ip 83.122.122.88 139169 port 312 139169 unique_id port 139169 remote_ip 10.8.0.154 139174 username hashtadani3 139174 mac 139174 bytes_out 0 139174 bytes_in 0 139174 station_ip 83.122.122.88 139174 port 216 139174 unique_id port 139174 remote_ip 10.8.1.94 139178 username hashtadani3 139178 mac 139178 bytes_out 0 139178 bytes_in 0 139178 station_ip 83.122.122.88 139178 port 332 139178 unique_id port 139178 remote_ip 10.8.0.154 139179 username hashtadani3 139179 mac 139179 bytes_out 0 139179 bytes_in 0 139179 station_ip 83.122.122.88 139179 port 332 139179 unique_id port 139179 remote_ip 10.8.0.154 139184 username hashtadani3 139184 mac 139184 bytes_out 0 139184 bytes_in 0 139184 station_ip 83.122.122.88 139184 port 332 139184 unique_id port 139184 remote_ip 10.8.0.154 139186 username hashtadani3 139186 mac 139186 bytes_out 0 139186 bytes_in 0 139186 station_ip 83.122.122.88 139186 port 332 139186 unique_id port 139186 remote_ip 10.8.0.154 139187 username hashtadani3 139187 mac 139187 bytes_out 0 139187 bytes_in 0 139187 station_ip 83.122.122.88 139187 port 332 139187 unique_id port 139187 remote_ip 10.8.0.154 139189 username hashtadani3 139189 mac 139189 bytes_out 0 139189 bytes_in 0 139189 station_ip 83.122.122.88 139189 port 332 139189 unique_id port 139189 remote_ip 10.8.0.154 139190 username hashtadani3 139190 mac 139190 bytes_out 0 139190 bytes_in 0 139190 station_ip 83.122.122.88 139190 port 332 139190 unique_id port 139190 remote_ip 10.8.0.154 139192 username hashtadani3 139192 mac 139192 bytes_out 0 139192 bytes_in 0 139192 station_ip 83.122.122.88 139192 port 215 139192 unique_id port 139192 remote_ip 10.8.1.94 139197 username hashtadani3 139197 mac 139197 bytes_out 0 139197 bytes_in 0 139197 station_ip 83.122.122.88 139197 port 312 139197 unique_id port 139197 remote_ip 10.8.0.154 139198 username hashtadani3 139198 mac 139198 bytes_out 0 139198 bytes_in 0 139198 station_ip 83.122.122.88 139198 port 215 139198 unique_id port 139198 remote_ip 10.8.1.94 139201 username hashtadani3 139201 mac 139201 bytes_out 0 139201 bytes_in 0 139201 station_ip 83.122.122.88 139201 port 194 139201 unique_id port 139201 remote_ip 10.8.1.94 139202 username hashtadani3 139202 mac 139202 bytes_out 0 139202 bytes_in 0 139202 station_ip 83.122.122.88 139202 port 332 139202 unique_id port 139202 remote_ip 10.8.0.154 139204 username hashtadani3 139204 mac 139204 bytes_out 0 139204 bytes_in 0 139204 station_ip 83.122.122.88 139204 port 312 139204 unique_id port 139204 remote_ip 10.8.0.154 139206 username barzegar 139206 mac 139206 bytes_out 0 139206 bytes_in 0 139206 station_ip 5.120.8.40 139206 port 312 139206 unique_id port 139206 remote_ip 10.8.0.234 139207 username hashtadani3 139207 mac 139207 bytes_out 0 139207 bytes_in 0 139207 station_ip 83.122.122.88 139207 port 312 139207 unique_id port 139207 remote_ip 10.8.0.154 139210 username hashtadani3 139210 kill_reason Maximum check online fails reached 139210 mac 139210 bytes_out 0 139210 bytes_in 0 139210 station_ip 83.122.122.88 139210 port 332 139210 unique_id port 139214 username alipour 139214 mac 139214 bytes_out 0 139214 bytes_in 0 139214 station_ip 113.203.112.25 139214 port 215 139175 station_ip 83.122.122.88 139175 port 312 139175 unique_id port 139175 remote_ip 10.8.0.154 139176 username hashtadani3 139176 mac 139176 bytes_out 0 139176 bytes_in 0 139176 station_ip 83.122.122.88 139176 port 312 139176 unique_id port 139176 remote_ip 10.8.0.154 139182 username barzegar 139182 mac 139182 bytes_out 0 139182 bytes_in 0 139182 station_ip 5.120.8.40 139182 port 216 139182 unique_id port 139182 remote_ip 10.8.1.174 139185 username hashtadani3 139185 mac 139185 bytes_out 0 139185 bytes_in 0 139185 station_ip 83.122.122.88 139185 port 332 139185 unique_id port 139185 remote_ip 10.8.0.154 139199 username alipour 139199 mac 139199 bytes_out 0 139199 bytes_in 0 139199 station_ip 113.203.112.25 139199 port 194 139199 unique_id port 139199 remote_ip 10.8.1.50 139200 username barzegar 139200 mac 139200 bytes_out 0 139200 bytes_in 0 139200 station_ip 5.120.8.40 139200 port 332 139200 unique_id port 139200 remote_ip 10.8.0.234 139205 username mehdizare 139205 mac 139205 bytes_out 0 139205 bytes_in 0 139205 station_ip 5.120.148.206 139205 port 210 139205 unique_id port 139205 remote_ip 10.8.1.42 139209 username hashtadani3 139209 mac 139209 bytes_out 0 139209 bytes_in 0 139209 station_ip 83.122.122.88 139209 port 339 139209 unique_id port 139209 remote_ip 10.8.0.154 139213 username barzegar 139213 mac 139213 bytes_out 5098 139213 bytes_in 9788 139213 station_ip 5.120.8.40 139213 port 339 139213 unique_id port 139213 remote_ip 10.8.0.234 139215 username hashtadani3 139215 mac 139215 bytes_out 0 139215 bytes_in 0 139215 station_ip 83.122.122.88 139215 port 339 139215 unique_id port 139215 remote_ip 10.8.0.154 139217 username mehdizare 139217 mac 139217 bytes_out 22759 139217 bytes_in 32340 139217 station_ip 5.120.148.206 139217 port 312 139217 unique_id port 139217 remote_ip 10.8.0.90 139224 username hashtadani3 139224 mac 139224 bytes_out 0 139224 bytes_in 0 139224 station_ip 83.122.122.88 139224 port 216 139224 unique_id port 139224 remote_ip 10.8.1.94 139225 username hashtadani3 139225 mac 139225 bytes_out 0 139225 bytes_in 0 139225 station_ip 83.122.122.88 139225 port 340 139225 unique_id port 139225 remote_ip 10.8.0.154 139230 username hashtadani3 139230 mac 139230 bytes_out 0 139230 bytes_in 0 139230 station_ip 83.122.122.88 139230 port 345 139230 unique_id port 139230 remote_ip 10.8.0.154 139240 username meysam 139240 kill_reason Another user logged on this global unique id 139240 mac 139240 bytes_out 0 139240 bytes_in 0 139240 station_ip 188.159.251.62 139240 port 348 139240 unique_id port 139240 remote_ip 10.8.0.110 139243 username hashtadani3 139243 mac 139243 bytes_out 2217 139243 bytes_in 4706 139243 station_ip 83.122.122.88 139243 port 349 139243 unique_id port 139243 remote_ip 10.8.0.154 139245 username meysam 139245 mac 139245 bytes_out 0 139245 bytes_in 0 139245 station_ip 188.159.251.62 139245 port 348 139245 unique_id port 139246 username hashtadani3 139246 mac 139246 bytes_out 0 139246 bytes_in 0 139246 station_ip 83.122.122.88 139246 port 348 139246 unique_id port 139246 remote_ip 10.8.0.154 139248 username hashtadani3 139248 mac 139248 bytes_out 0 139248 bytes_in 0 139248 station_ip 83.122.122.88 139248 port 348 139248 unique_id port 139248 remote_ip 10.8.0.154 139252 username hashtadani3 139252 mac 139252 bytes_out 0 139252 bytes_in 0 139252 station_ip 83.122.122.88 139252 port 348 139188 bytes_in 0 139188 station_ip 113.203.112.25 139188 port 194 139188 unique_id port 139188 remote_ip 10.8.1.50 139191 username jafari 139191 kill_reason Another user logged on this global unique id 139191 mac 139191 bytes_out 0 139191 bytes_in 0 139191 station_ip 5.134.167.225 139191 port 312 139191 unique_id port 139191 remote_ip 10.8.0.242 139193 username jafari 139193 mac 139193 bytes_out 0 139193 bytes_in 0 139193 station_ip 5.134.167.225 139193 port 312 139193 unique_id port 139194 username hashtadani3 139194 mac 139194 bytes_out 0 139194 bytes_in 0 139194 station_ip 83.122.122.88 139194 port 312 139194 unique_id port 139194 remote_ip 10.8.0.154 139195 username hashtadani3 139195 mac 139195 bytes_out 0 139195 bytes_in 0 139195 station_ip 83.122.122.88 139195 port 312 139195 unique_id port 139195 remote_ip 10.8.0.154 139196 username barzegar 139196 mac 139196 bytes_out 0 139196 bytes_in 0 139196 station_ip 5.120.8.40 139196 port 215 139196 unique_id port 139196 remote_ip 10.8.1.174 139203 username sekonji3 139203 mac 139203 bytes_out 99843 139203 bytes_in 632066 139203 station_ip 83.122.205.43 139203 port 312 139203 unique_id port 139203 remote_ip 10.8.0.6 139208 username hashtadani3 139208 kill_reason Maximum check online fails reached 139208 mac 139208 bytes_out 0 139208 bytes_in 0 139208 station_ip 83.122.122.88 139208 port 194 139208 unique_id port 139211 username hashtadani3 139211 mac 139211 bytes_out 0 139211 bytes_in 0 139211 station_ip 83.122.122.88 139211 port 340 139211 unique_id port 139211 remote_ip 10.8.0.154 139212 username hashtadani3 139212 mac 139212 bytes_out 0 139212 bytes_in 0 139212 station_ip 83.122.122.88 139212 port 340 139212 unique_id port 139212 remote_ip 10.8.0.154 139216 username hashtadani3 139216 mac 139216 bytes_out 0 139216 bytes_in 0 139216 station_ip 83.122.122.88 139216 port 340 139216 unique_id port 139216 remote_ip 10.8.0.154 139221 username hashtadani3 139221 mac 139221 bytes_out 0 139221 bytes_in 0 139221 station_ip 83.122.122.88 139221 port 340 139221 unique_id port 139221 remote_ip 10.8.0.154 139222 username hashtadani3 139222 mac 139222 bytes_out 0 139222 bytes_in 0 139222 station_ip 83.122.122.88 139222 port 340 139222 unique_id port 139222 remote_ip 10.8.0.154 139223 username hashtadani3 139223 mac 139223 bytes_out 0 139223 bytes_in 0 139223 station_ip 83.122.122.88 139223 port 340 139223 unique_id port 139223 remote_ip 10.8.0.154 139226 username hashtadani3 139226 mac 139226 bytes_out 0 139226 bytes_in 0 139226 station_ip 83.122.122.88 139226 port 340 139226 unique_id port 139226 remote_ip 10.8.0.154 139227 username hashtadani3 139227 mac 139227 bytes_out 0 139227 bytes_in 0 139227 station_ip 83.122.122.88 139227 port 340 139227 unique_id port 139227 remote_ip 10.8.0.154 139228 username hashtadani3 139228 mac 139228 bytes_out 0 139228 bytes_in 0 139228 station_ip 83.122.122.88 139228 port 340 139228 unique_id port 139228 remote_ip 10.8.0.154 139229 username hashtadani3 139229 mac 139229 bytes_out 0 139229 bytes_in 0 139229 station_ip 83.122.122.88 139229 port 343 139229 unique_id port 139229 remote_ip 10.8.0.154 139231 username khalili 139231 mac 139231 bytes_out 0 139231 bytes_in 0 139231 station_ip 5.119.179.17 139231 port 212 139231 unique_id port 139231 remote_ip 10.8.1.18 139232 username hashtadani3 139232 mac 139232 bytes_out 0 139232 bytes_in 0 139214 unique_id port 139214 remote_ip 10.8.1.50 139218 username hashtadani3 139218 mac 139218 bytes_out 0 139218 bytes_in 0 139218 station_ip 83.122.122.88 139218 port 340 139218 unique_id port 139218 remote_ip 10.8.0.154 139219 username alipour 139219 mac 139219 bytes_out 0 139219 bytes_in 0 139219 station_ip 113.203.112.25 139219 port 215 139219 unique_id port 139219 remote_ip 10.8.1.50 139220 username hashtadani3 139220 kill_reason Maximum check online fails reached 139220 mac 139220 bytes_out 0 139220 bytes_in 0 139220 station_ip 83.122.122.88 139220 port 312 139220 unique_id port 139233 username hashtadani3 139233 mac 139233 bytes_out 0 139233 bytes_in 0 139233 station_ip 83.122.122.88 139233 port 348 139233 unique_id port 139233 remote_ip 10.8.0.154 139239 username hashtadani3 139239 mac 139239 bytes_out 0 139239 bytes_in 0 139239 station_ip 83.122.122.88 139239 port 349 139239 unique_id port 139239 remote_ip 10.8.0.154 139241 username hashtadani3 139241 mac 139241 bytes_out 0 139241 bytes_in 0 139241 station_ip 83.122.122.88 139241 port 349 139241 unique_id port 139241 remote_ip 10.8.0.154 139242 username hashtadani3 139242 mac 139242 bytes_out 0 139242 bytes_in 0 139242 station_ip 83.122.122.88 139242 port 349 139242 unique_id port 139242 remote_ip 10.8.0.154 139249 username hashtadani3 139249 mac 139249 bytes_out 0 139249 bytes_in 0 139249 station_ip 83.122.122.88 139249 port 348 139249 unique_id port 139249 remote_ip 10.8.0.154 139257 username hashtadani3 139257 mac 139257 bytes_out 0 139257 bytes_in 0 139257 station_ip 83.122.122.88 139257 port 349 139257 unique_id port 139257 remote_ip 10.8.0.154 139258 username hashtadani3 139258 mac 139258 bytes_out 0 139258 bytes_in 0 139258 station_ip 83.122.122.88 139258 port 349 139258 unique_id port 139258 remote_ip 10.8.0.154 139259 username mostafa_es78 139259 unique_id port 139259 terminate_cause User-Request 139259 bytes_out 601148 139259 bytes_in 14946145 139259 station_ip 109.125.174.62 139259 port 15730641 139259 nas_port_type Virtual 139259 remote_ip 5.5.5.215 139266 username barzegar 139266 kill_reason Another user logged on this global unique id 139266 mac 139266 bytes_out 0 139266 bytes_in 0 139266 station_ip 5.120.8.40 139266 port 210 139266 unique_id port 139267 username hashtadani3 139267 mac 139267 bytes_out 0 139267 bytes_in 0 139267 station_ip 83.122.122.88 139267 port 349 139267 unique_id port 139267 remote_ip 10.8.0.154 139271 username hashtadani3 139271 mac 139271 bytes_out 0 139271 bytes_in 0 139271 station_ip 83.122.122.88 139271 port 216 139271 unique_id port 139271 remote_ip 10.8.1.94 139274 username sedighe 139274 mac 139274 bytes_out 799794 139274 bytes_in 14999806 139274 station_ip 113.203.42.2 139274 port 350 139274 unique_id port 139274 remote_ip 10.8.0.146 139281 username hashtadani3 139281 mac 139281 bytes_out 0 139281 bytes_in 0 139281 station_ip 83.122.122.88 139281 port 350 139281 unique_id port 139281 remote_ip 10.8.0.154 139285 username meysam 139285 kill_reason Another user logged on this global unique id 139285 mac 139285 bytes_out 0 139285 bytes_in 0 139285 station_ip 188.159.251.62 139285 port 348 139285 unique_id port 139285 remote_ip 10.8.0.110 139289 username barzegar 139289 kill_reason Another user logged on this global unique id 139289 mac 139289 bytes_out 0 139289 bytes_in 0 139289 station_ip 5.120.8.40 139289 port 210 139289 unique_id port 139294 username sedighe 139294 mac 139294 bytes_out 0 139232 station_ip 83.122.122.88 139232 port 345 139232 unique_id port 139232 remote_ip 10.8.0.154 139234 username hashtadani3 139234 mac 139234 bytes_out 0 139234 bytes_in 0 139234 station_ip 83.122.122.88 139234 port 345 139234 unique_id port 139234 remote_ip 10.8.0.154 139235 username hashtadani3 139235 mac 139235 bytes_out 0 139235 bytes_in 0 139235 station_ip 83.122.122.88 139235 port 349 139235 unique_id port 139235 remote_ip 10.8.0.154 139236 username hashtadani3 139236 mac 139236 bytes_out 0 139236 bytes_in 0 139236 station_ip 83.122.122.88 139236 port 349 139236 unique_id port 139236 remote_ip 10.8.0.154 139237 username hashtadani3 139237 mac 139237 bytes_out 0 139237 bytes_in 0 139237 station_ip 83.122.122.88 139237 port 349 139237 unique_id port 139237 remote_ip 10.8.0.154 139238 username hashtadani3 139238 mac 139238 bytes_out 0 139238 bytes_in 0 139238 station_ip 83.122.122.88 139238 port 349 139238 unique_id port 139238 remote_ip 10.8.0.154 139244 username hashtadani3 139244 mac 139244 bytes_out 0 139244 bytes_in 0 139244 station_ip 83.122.122.88 139244 port 349 139244 unique_id port 139244 remote_ip 10.8.0.154 139247 username godarzi 139247 kill_reason Another user logged on this global unique id 139247 mac 139247 bytes_out 0 139247 bytes_in 0 139247 station_ip 5.202.62.33 139247 port 345 139247 unique_id port 139247 remote_ip 10.8.0.174 139250 username hashtadani3 139250 mac 139250 bytes_out 0 139250 bytes_in 0 139250 station_ip 83.122.122.88 139250 port 348 139250 unique_id port 139250 remote_ip 10.8.0.154 139251 username hashtadani3 139251 mac 139251 bytes_out 0 139251 bytes_in 0 139251 station_ip 83.122.122.88 139251 port 348 139251 unique_id port 139251 remote_ip 10.8.0.154 139253 username hashtadani3 139253 mac 139253 bytes_out 0 139253 bytes_in 0 139253 station_ip 83.122.122.88 139253 port 348 139253 unique_id port 139253 remote_ip 10.8.0.154 139254 username barzegar 139254 kill_reason Another user logged on this global unique id 139254 mac 139254 bytes_out 0 139254 bytes_in 0 139254 station_ip 5.120.8.40 139254 port 210 139254 unique_id port 139254 remote_ip 10.8.1.174 139255 username meysam 139255 mac 139255 bytes_out 1531789 139255 bytes_in 26093231 139255 station_ip 188.159.251.62 139255 port 349 139255 unique_id port 139255 remote_ip 10.8.0.110 139260 username alipour 139260 mac 139260 bytes_out 0 139260 bytes_in 0 139260 station_ip 113.203.112.25 139260 port 215 139260 unique_id port 139260 remote_ip 10.8.1.50 139261 username godarzi 139261 mac 139261 bytes_out 0 139261 bytes_in 0 139261 station_ip 5.202.62.33 139261 port 345 139261 unique_id port 139263 username hashtadani3 139263 mac 139263 bytes_out 0 139263 bytes_in 0 139263 station_ip 83.122.122.88 139263 port 345 139263 unique_id port 139263 remote_ip 10.8.0.154 139270 username hashtadani3 139270 mac 139270 bytes_out 0 139270 bytes_in 0 139270 station_ip 83.122.122.88 139270 port 349 139270 unique_id port 139270 remote_ip 10.8.0.154 139272 username hashtadani3 139272 mac 139272 bytes_out 0 139272 bytes_in 0 139272 station_ip 83.122.122.88 139272 port 349 139272 unique_id port 139272 remote_ip 10.8.0.154 139273 username hashtadani3 139273 mac 139273 bytes_out 0 139273 bytes_in 0 139273 station_ip 83.122.122.88 139273 port 349 139273 unique_id port 139273 remote_ip 10.8.0.154 139275 username mohammadjavad 139275 mac 139275 bytes_out 0 139275 bytes_in 0 139252 unique_id port 139252 remote_ip 10.8.0.154 139256 username hashtadani3 139256 mac 139256 bytes_out 0 139256 bytes_in 0 139256 station_ip 83.122.122.88 139256 port 348 139256 unique_id port 139256 remote_ip 10.8.0.154 139262 username hashtadani3 139262 mac 139262 bytes_out 0 139262 bytes_in 0 139262 station_ip 83.122.122.88 139262 port 349 139262 unique_id port 139262 remote_ip 10.8.0.154 139264 username hashtadani3 139264 mac 139264 bytes_out 0 139264 bytes_in 0 139264 station_ip 83.122.122.88 139264 port 349 139264 unique_id port 139264 remote_ip 10.8.0.154 139265 username hashtadani3 139265 mac 139265 bytes_out 0 139265 bytes_in 0 139265 station_ip 83.122.122.88 139265 port 349 139265 unique_id port 139265 remote_ip 10.8.0.154 139268 username godarzi 139268 mac 139268 bytes_out 918243 139268 bytes_in 9315621 139268 station_ip 5.202.62.33 139268 port 345 139268 unique_id port 139268 remote_ip 10.8.0.174 139269 username hashtadani3 139269 mac 139269 bytes_out 0 139269 bytes_in 0 139269 station_ip 83.122.122.88 139269 port 345 139269 unique_id port 139269 remote_ip 10.8.0.154 139279 username barzegar 139279 kill_reason Another user logged on this global unique id 139279 mac 139279 bytes_out 0 139279 bytes_in 0 139279 station_ip 5.120.8.40 139279 port 210 139279 unique_id port 139280 username hashtadani3 139280 mac 139280 bytes_out 0 139280 bytes_in 0 139280 station_ip 83.122.122.88 139280 port 215 139280 unique_id port 139280 remote_ip 10.8.1.94 139282 username hashtadani3 139282 mac 139282 bytes_out 0 139282 bytes_in 0 139282 station_ip 83.122.122.88 139282 port 350 139282 unique_id port 139282 remote_ip 10.8.0.154 139283 username sedighe 139283 mac 139283 bytes_out 342828 139283 bytes_in 5550813 139283 station_ip 37.129.208.34 139283 port 349 139283 unique_id port 139283 remote_ip 10.8.0.146 139288 username hashtadani3 139288 mac 139288 bytes_out 0 139288 bytes_in 0 139288 station_ip 83.122.122.88 139288 port 349 139288 unique_id port 139288 remote_ip 10.8.0.154 139290 username hashtadani3 139290 mac 139290 bytes_out 0 139290 bytes_in 0 139290 station_ip 83.122.122.88 139290 port 349 139290 unique_id port 139290 remote_ip 10.8.0.154 139291 username hashtadani3 139291 mac 139291 bytes_out 0 139291 bytes_in 0 139291 station_ip 83.122.122.88 139291 port 215 139291 unique_id port 139291 remote_ip 10.8.1.94 139298 username hashtadani3 139298 mac 139298 bytes_out 0 139298 bytes_in 0 139298 station_ip 83.122.122.88 139298 port 351 139298 unique_id port 139298 remote_ip 10.8.0.154 139301 username hashtadani3 139301 mac 139301 bytes_out 0 139301 bytes_in 0 139301 station_ip 83.122.122.88 139301 port 345 139301 unique_id port 139301 remote_ip 10.8.0.154 139304 username hashtadani3 139304 mac 139304 bytes_out 0 139304 bytes_in 0 139304 station_ip 83.122.122.88 139304 port 345 139304 unique_id port 139304 remote_ip 10.8.0.154 139305 username hashtadani3 139305 mac 139305 bytes_out 0 139305 bytes_in 0 139305 station_ip 83.122.122.88 139305 port 345 139305 unique_id port 139305 remote_ip 10.8.0.154 139311 username hashtadani3 139311 mac 139311 bytes_out 0 139311 bytes_in 0 139311 station_ip 83.122.122.88 139311 port 348 139311 unique_id port 139311 remote_ip 10.8.0.154 139316 username hashtadani3 139316 mac 139316 bytes_out 0 139316 bytes_in 0 139316 station_ip 83.122.122.88 139316 port 348 139316 unique_id port 139275 station_ip 83.123.9.167 139275 port 215 139275 unique_id port 139275 remote_ip 10.8.1.146 139276 username hashtadani3 139276 mac 139276 bytes_out 0 139276 bytes_in 0 139276 station_ip 83.122.122.88 139276 port 350 139276 unique_id port 139276 remote_ip 10.8.0.154 139277 username hashtadani3 139277 mac 139277 bytes_out 0 139277 bytes_in 0 139277 station_ip 83.122.122.88 139277 port 350 139277 unique_id port 139277 remote_ip 10.8.0.154 139278 username hashtadani3 139278 mac 139278 bytes_out 0 139278 bytes_in 0 139278 station_ip 83.122.122.88 139278 port 350 139278 unique_id port 139278 remote_ip 10.8.0.154 139284 username hashtadani3 139284 mac 139284 bytes_out 0 139284 bytes_in 0 139284 station_ip 83.122.122.88 139284 port 349 139284 unique_id port 139284 remote_ip 10.8.0.154 139286 username hashtadani3 139286 mac 139286 bytes_out 0 139286 bytes_in 0 139286 station_ip 83.122.122.88 139286 port 215 139286 unique_id port 139286 remote_ip 10.8.1.94 139287 username hashtadani3 139287 mac 139287 bytes_out 0 139287 bytes_in 0 139287 station_ip 83.122.122.88 139287 port 349 139287 unique_id port 139287 remote_ip 10.8.0.154 139292 username hashtadani3 139292 mac 139292 bytes_out 0 139292 bytes_in 0 139292 station_ip 83.122.122.88 139292 port 215 139292 unique_id port 139292 remote_ip 10.8.1.94 139293 username hashtadani3 139293 mac 139293 bytes_out 0 139293 bytes_in 0 139293 station_ip 83.122.122.88 139293 port 349 139293 unique_id port 139293 remote_ip 10.8.0.154 139296 username hashtadani3 139296 mac 139296 bytes_out 0 139296 bytes_in 0 139296 station_ip 83.122.122.88 139296 port 350 139296 unique_id port 139296 remote_ip 10.8.0.154 139297 username hashtadani3 139297 mac 139297 bytes_out 0 139297 bytes_in 0 139297 station_ip 83.122.122.88 139297 port 350 139297 unique_id port 139297 remote_ip 10.8.0.154 139300 username meysam 139300 kill_reason Another user logged on this global unique id 139300 mac 139300 bytes_out 0 139300 bytes_in 0 139300 station_ip 188.159.251.62 139300 port 348 139300 unique_id port 139303 username meysam 139303 mac 139303 bytes_out 0 139303 bytes_in 0 139303 station_ip 188.159.251.62 139303 port 348 139303 unique_id port 139308 username hashtadani3 139308 mac 139308 bytes_out 0 139308 bytes_in 0 139308 station_ip 83.122.122.88 139308 port 348 139308 unique_id port 139308 remote_ip 10.8.0.154 139309 username hashtadani3 139309 mac 139309 bytes_out 0 139309 bytes_in 0 139309 station_ip 83.122.122.88 139309 port 348 139309 unique_id port 139309 remote_ip 10.8.0.154 139313 username barzegar 139313 mac 139313 bytes_out 0 139313 bytes_in 0 139313 station_ip 5.120.8.40 139313 port 351 139313 unique_id port 139313 remote_ip 10.8.0.234 139317 username hashtadani3 139317 mac 139317 bytes_out 0 139317 bytes_in 0 139317 station_ip 83.122.122.88 139317 port 348 139317 unique_id port 139317 remote_ip 10.8.0.154 139319 username barzegar 139319 mac 139319 bytes_out 0 139319 bytes_in 0 139319 station_ip 5.120.8.40 139319 port 350 139319 unique_id port 139319 remote_ip 10.8.0.234 139322 username barzegar 139322 mac 139322 bytes_out 0 139322 bytes_in 0 139322 station_ip 5.120.8.40 139322 port 352 139322 unique_id port 139322 remote_ip 10.8.0.234 139323 username hashtadani3 139323 mac 139323 bytes_out 1002454 139323 bytes_in 16254479 139323 station_ip 83.122.122.88 139323 port 348 139323 unique_id port 139294 bytes_in 0 139294 station_ip 37.129.208.34 139294 port 350 139294 unique_id port 139294 remote_ip 10.8.0.146 139295 username alipour 139295 mac 139295 bytes_out 53356 139295 bytes_in 78748 139295 station_ip 113.203.112.25 139295 port 212 139295 unique_id port 139295 remote_ip 10.8.1.50 139299 username godarzi 139299 mac 139299 bytes_out 0 139299 bytes_in 0 139299 station_ip 5.202.62.33 139299 port 345 139299 unique_id port 139299 remote_ip 10.8.0.174 139302 username yaghobi 139302 mac 139302 bytes_out 0 139302 bytes_in 0 139302 station_ip 37.129.30.129 139302 port 350 139302 unique_id port 139302 remote_ip 10.8.0.198 139306 username barzegar 139306 mac 139306 bytes_out 0 139306 bytes_in 0 139306 station_ip 5.120.8.40 139306 port 210 139306 unique_id port 139307 username hashtadani3 139307 mac 139307 bytes_out 0 139307 bytes_in 0 139307 station_ip 83.122.122.88 139307 port 345 139307 unique_id port 139307 remote_ip 10.8.0.154 139310 username barzegar 139310 mac 139310 bytes_out 0 139310 bytes_in 0 139310 station_ip 5.120.8.40 139310 port 210 139310 unique_id port 139310 remote_ip 10.8.1.174 139312 username hashtadani3 139312 mac 139312 bytes_out 0 139312 bytes_in 0 139312 station_ip 83.122.122.88 139312 port 350 139312 unique_id port 139312 remote_ip 10.8.0.154 139314 username hashtadani3 139314 mac 139314 bytes_out 0 139314 bytes_in 0 139314 station_ip 83.122.122.88 139314 port 350 139314 unique_id port 139314 remote_ip 10.8.0.154 139315 username godarzi 139315 mac 139315 bytes_out 903954 139315 bytes_in 15300245 139315 station_ip 5.202.62.33 139315 port 348 139315 unique_id port 139315 remote_ip 10.8.0.174 139321 username barzegar 139321 mac 139321 bytes_out 0 139321 bytes_in 0 139321 station_ip 5.120.8.40 139321 port 350 139321 unique_id port 139321 remote_ip 10.8.0.234 139336 username irannezhad 139336 mac 139336 bytes_out 30477 139336 bytes_in 416775 139336 station_ip 113.203.28.197 139336 port 210 139336 unique_id port 139336 remote_ip 10.8.1.134 139337 username hashtadani3 139337 mac 139337 bytes_out 0 139337 bytes_in 0 139337 station_ip 83.122.122.88 139337 port 351 139337 unique_id port 139337 remote_ip 10.8.0.154 139341 username hashtadani3 139341 mac 139341 bytes_out 0 139341 bytes_in 0 139341 station_ip 83.122.122.88 139341 port 351 139341 unique_id port 139341 remote_ip 10.8.0.154 139346 username mohammadjavad 139346 kill_reason Another user logged on this global unique id 139346 mac 139346 bytes_out 0 139346 bytes_in 0 139346 station_ip 83.122.144.29 139346 port 215 139346 unique_id port 139346 remote_ip 10.8.1.146 139348 username hashtadani3 139348 mac 139348 bytes_out 0 139348 bytes_in 0 139348 station_ip 83.122.122.88 139348 port 351 139348 unique_id port 139348 remote_ip 10.8.0.154 139351 username hashtadani3 139351 mac 139351 bytes_out 0 139351 bytes_in 0 139351 station_ip 83.122.122.88 139351 port 351 139351 unique_id port 139351 remote_ip 10.8.0.154 139355 username barzegar 139355 mac 139355 bytes_out 0 139355 bytes_in 0 139355 station_ip 5.120.8.40 139355 port 350 139355 unique_id port 139355 remote_ip 10.8.0.234 139358 username barzegar 139358 mac 139358 bytes_out 0 139358 bytes_in 0 139358 station_ip 5.120.8.40 139358 port 350 139358 unique_id port 139358 remote_ip 10.8.0.234 139360 username irannezhad 139360 mac 139360 bytes_out 0 139360 bytes_in 0 139360 station_ip 113.203.28.197 139316 remote_ip 10.8.0.154 139318 username mehdizare 139318 mac 139318 bytes_out 0 139318 bytes_in 0 139318 station_ip 5.120.148.206 139318 port 341 139318 unique_id port 139318 remote_ip 10.8.0.90 139320 username sedighe 139320 mac 139320 bytes_out 0 139320 bytes_in 0 139320 station_ip 37.129.208.34 139320 port 349 139320 unique_id port 139320 remote_ip 10.8.0.146 139324 username meysam 139324 mac 139324 bytes_out 253741 139324 bytes_in 3315617 139324 station_ip 188.158.49.40 139324 port 350 139324 unique_id port 139324 remote_ip 10.8.0.110 139325 username barzegar 139325 mac 139325 bytes_out 0 139325 bytes_in 0 139325 station_ip 5.120.8.40 139325 port 352 139325 unique_id port 139325 remote_ip 10.8.0.234 139328 username hashtadani3 139328 mac 139328 bytes_out 0 139328 bytes_in 0 139328 station_ip 83.122.122.88 139328 port 348 139328 unique_id port 139328 remote_ip 10.8.0.154 139330 username mohammadjavad 139330 mac 139330 bytes_out 787212 139330 bytes_in 3473134 139330 station_ip 113.203.45.46 139330 port 215 139330 unique_id port 139330 remote_ip 10.8.1.146 139331 username hashtadani3 139331 mac 139331 bytes_out 0 139331 bytes_in 0 139331 station_ip 83.122.122.88 139331 port 348 139331 unique_id port 139331 remote_ip 10.8.0.154 139332 username irannezhad 139332 mac 139332 bytes_out 18350 139332 bytes_in 52601 139332 station_ip 113.203.28.197 139332 port 210 139332 unique_id port 139332 remote_ip 10.8.1.134 139334 username mehdizare 139334 mac 139334 bytes_out 0 139334 bytes_in 0 139334 station_ip 5.120.148.206 139334 port 341 139334 unique_id port 139334 remote_ip 10.8.0.90 139338 username hashtadani3 139338 mac 139338 bytes_out 0 139338 bytes_in 0 139338 station_ip 83.122.122.88 139338 port 351 139338 unique_id port 139338 remote_ip 10.8.0.154 139340 username barzegar 139340 mac 139340 bytes_out 172034 139340 bytes_in 1199138 139340 station_ip 5.120.8.40 139340 port 350 139340 unique_id port 139340 remote_ip 10.8.0.234 139343 username godarzi 139343 mac 139343 bytes_out 0 139343 bytes_in 0 139343 station_ip 5.202.62.33 139343 port 348 139343 unique_id port 139343 remote_ip 10.8.0.174 139347 username hashtadani3 139347 mac 139347 bytes_out 0 139347 bytes_in 0 139347 station_ip 83.122.122.88 139347 port 351 139347 unique_id port 139347 remote_ip 10.8.0.154 139349 username hashtadani3 139349 kill_reason Maximum check online fails reached 139349 mac 139349 bytes_out 0 139349 bytes_in 0 139349 station_ip 83.122.122.88 139349 port 210 139349 unique_id port 139356 username barzegar 139356 mac 139356 bytes_out 0 139356 bytes_in 0 139356 station_ip 5.120.8.40 139356 port 350 139356 unique_id port 139356 remote_ip 10.8.0.234 139357 username barzegar 139357 mac 139357 bytes_out 0 139357 bytes_in 0 139357 station_ip 5.120.8.40 139357 port 350 139357 unique_id port 139357 remote_ip 10.8.0.234 139362 username alipour 139362 mac 139362 bytes_out 0 139362 bytes_in 0 139362 station_ip 113.203.112.25 139362 port 212 139362 unique_id port 139365 username hashtadani3 139365 mac 139365 bytes_out 0 139365 bytes_in 0 139365 station_ip 5.202.12.209 139365 port 350 139365 unique_id port 139365 remote_ip 10.8.0.154 139367 username hashtadani3 139367 mac 139367 bytes_out 0 139367 bytes_in 0 139367 station_ip 5.202.3.28 139367 port 350 139367 unique_id port 139367 remote_ip 10.8.0.154 139373 username hashtadani3 139373 mac 139323 remote_ip 10.8.0.154 139326 username hashtadani3 139326 mac 139326 bytes_out 0 139326 bytes_in 0 139326 station_ip 83.122.122.88 139326 port 348 139326 unique_id port 139326 remote_ip 10.8.0.154 139327 username godarzi 139327 mac 139327 bytes_out 0 139327 bytes_in 0 139327 station_ip 5.202.62.33 139327 port 351 139327 unique_id port 139327 remote_ip 10.8.0.174 139329 username hashtadani3 139329 mac 139329 bytes_out 0 139329 bytes_in 0 139329 station_ip 83.122.122.88 139329 port 348 139329 unique_id port 139329 remote_ip 10.8.0.154 139333 username hashtadani3 139333 mac 139333 bytes_out 0 139333 bytes_in 0 139333 station_ip 83.122.122.88 139333 port 351 139333 unique_id port 139333 remote_ip 10.8.0.154 139335 username hashtadani3 139335 mac 139335 bytes_out 0 139335 bytes_in 0 139335 station_ip 83.122.122.88 139335 port 351 139335 unique_id port 139335 remote_ip 10.8.0.154 139339 username malekpoir 139339 kill_reason Another user logged on this global unique id 139339 mac 139339 bytes_out 0 139339 bytes_in 0 139339 station_ip 5.119.41.192 139339 port 340 139339 unique_id port 139339 remote_ip 10.8.0.58 139342 username hashtadani3 139342 mac 139342 bytes_out 0 139342 bytes_in 0 139342 station_ip 83.122.122.88 139342 port 351 139342 unique_id port 139342 remote_ip 10.8.0.154 139344 username alipour 139344 kill_reason Another user logged on this global unique id 139344 mac 139344 bytes_out 0 139344 bytes_in 0 139344 station_ip 113.203.112.25 139344 port 212 139344 unique_id port 139344 remote_ip 10.8.1.50 139345 username hashtadani3 139345 mac 139345 bytes_out 0 139345 bytes_in 0 139345 station_ip 83.122.122.88 139345 port 348 139345 unique_id port 139345 remote_ip 10.8.0.154 139350 username malekpoir 139350 kill_reason Another user logged on this global unique id 139350 mac 139350 bytes_out 0 139350 bytes_in 0 139350 station_ip 5.119.41.192 139350 port 340 139350 unique_id port 139352 username godarzi 139352 mac 139352 bytes_out 40020 139352 bytes_in 148443 139352 station_ip 5.202.62.33 139352 port 348 139352 unique_id port 139352 remote_ip 10.8.0.174 139353 username mosi 139353 kill_reason Another user logged on this global unique id 139353 mac 139353 bytes_out 0 139353 bytes_in 0 139353 station_ip 151.235.75.185 139353 port 331 139353 unique_id port 139354 username irannezhad 139354 mac 139354 bytes_out 0 139354 bytes_in 0 139354 station_ip 113.203.28.197 139354 port 352 139354 unique_id port 139354 remote_ip 10.8.0.182 139359 username barzegar 139359 mac 139359 bytes_out 0 139359 bytes_in 0 139359 station_ip 5.120.8.40 139359 port 350 139359 unique_id port 139359 remote_ip 10.8.0.234 139361 username hashtadani3 139361 mac 139361 bytes_out 0 139361 bytes_in 0 139361 station_ip 83.122.122.88 139361 port 348 139361 unique_id port 139361 remote_ip 10.8.0.154 139374 username mohammadjavad 139374 mac 139374 bytes_out 0 139374 bytes_in 0 139374 station_ip 83.122.144.29 139374 port 215 139374 unique_id port 139378 username hashtadani3 139378 kill_reason Maximum check online fails reached 139378 mac 139378 bytes_out 0 139378 bytes_in 0 139378 station_ip 5.202.12.209 139378 port 350 139378 unique_id port 139388 username hashtadani3 139388 mac 139388 bytes_out 0 139388 bytes_in 0 139388 station_ip 5.202.12.209 139388 port 349 139388 unique_id port 139388 remote_ip 10.8.0.154 139391 username barzegar 139391 mac 139391 bytes_out 2406 139391 bytes_in 4917 139391 station_ip 5.119.151.104 139360 port 351 139360 unique_id port 139360 remote_ip 10.8.0.182 139363 username hashtadani3 139363 mac 139363 bytes_out 0 139363 bytes_in 0 139363 station_ip 5.202.12.209 139363 port 350 139363 unique_id port 139363 remote_ip 10.8.0.154 139364 username barzegar 139364 mac 139364 bytes_out 4775 139364 bytes_in 9307 139364 station_ip 5.120.8.40 139364 port 217 139364 unique_id port 139364 remote_ip 10.8.1.174 139366 username hashtadani3 139366 mac 139366 bytes_out 10571 139366 bytes_in 80330 139366 station_ip 83.122.122.88 139366 port 351 139366 unique_id port 139366 remote_ip 10.8.0.154 139368 username hashtadani3 139368 mac 139368 bytes_out 5655 139368 bytes_in 11796 139368 station_ip 5.202.12.209 139368 port 351 139368 unique_id port 139368 remote_ip 10.8.0.154 139369 username hashtadani3 139369 mac 139369 bytes_out 0 139369 bytes_in 0 139369 station_ip 5.202.12.209 139369 port 350 139369 unique_id port 139369 remote_ip 10.8.0.154 139370 username hashtadani3 139370 mac 139370 bytes_out 0 139370 bytes_in 0 139370 station_ip 5.202.12.209 139370 port 350 139370 unique_id port 139370 remote_ip 10.8.0.154 139371 username hashtadani3 139371 mac 139371 bytes_out 0 139371 bytes_in 0 139371 station_ip 5.202.12.209 139371 port 350 139371 unique_id port 139371 remote_ip 10.8.0.154 139372 username hashtadani3 139372 mac 139372 bytes_out 0 139372 bytes_in 0 139372 station_ip 5.202.12.209 139372 port 350 139372 unique_id port 139372 remote_ip 10.8.0.154 139376 username meysam 139376 mac 139376 bytes_out 0 139376 bytes_in 0 139376 station_ip 188.158.49.40 139376 port 348 139376 unique_id port 139376 remote_ip 10.8.0.110 139377 username forozandeh1 139377 mac 139377 bytes_out 0 139377 bytes_in 0 139377 station_ip 113.203.34.241 139377 port 341 139377 unique_id port 139377 remote_ip 10.8.0.130 139379 username hashtadani3 139379 mac 139379 bytes_out 0 139379 bytes_in 0 139379 station_ip 5.202.12.209 139379 port 212 139379 unique_id port 139379 remote_ip 10.8.1.94 139380 username hashtadani3 139380 kill_reason Maximum check online fails reached 139380 mac 139380 bytes_out 0 139380 bytes_in 0 139380 station_ip 5.202.12.209 139380 port 348 139380 unique_id port 139382 username hashtadani3 139382 kill_reason Maximum check online fails reached 139382 mac 139382 bytes_out 0 139382 bytes_in 0 139382 station_ip 5.202.12.209 139382 port 341 139382 unique_id port 139386 username hashtadani3 139386 mac 139386 bytes_out 0 139386 bytes_in 0 139386 station_ip 5.202.12.209 139386 port 349 139386 unique_id port 139386 remote_ip 10.8.0.154 139387 username barzegar 139387 mac 139387 bytes_out 0 139387 bytes_in 0 139387 station_ip 5.119.151.104 139387 port 212 139387 unique_id port 139387 remote_ip 10.8.1.174 139389 username hashtadani3 139389 mac 139389 bytes_out 0 139389 bytes_in 0 139389 station_ip 5.202.12.209 139389 port 349 139389 unique_id port 139389 remote_ip 10.8.0.154 139392 username hashtadani3 139392 mac 139392 bytes_out 0 139392 bytes_in 0 139392 station_ip 5.202.12.209 139392 port 349 139392 unique_id port 139392 remote_ip 10.8.0.154 139393 username hashtadani3 139393 mac 139393 bytes_out 0 139393 bytes_in 0 139393 station_ip 5.202.12.209 139393 port 349 139393 unique_id port 139393 remote_ip 10.8.0.154 139395 username malekpoir 139395 mac 139395 bytes_out 0 139395 bytes_in 0 139395 station_ip 5.119.41.192 139395 port 340 139395 unique_id port 139373 bytes_out 0 139373 bytes_in 0 139373 station_ip 5.202.12.209 139373 port 350 139373 unique_id port 139373 remote_ip 10.8.0.154 139375 username barzegar 139375 mac 139375 bytes_out 0 139375 bytes_in 0 139375 station_ip 5.120.8.40 139375 port 212 139375 unique_id port 139375 remote_ip 10.8.1.174 139381 username aminvpn 139381 mac 139381 bytes_out 3960079 139381 bytes_in 16930241 139381 station_ip 83.122.41.30 139381 port 349 139381 unique_id port 139381 remote_ip 10.8.0.14 139383 username hashtadani3 139383 mac 139383 bytes_out 0 139383 bytes_in 0 139383 station_ip 5.202.12.209 139383 port 349 139383 unique_id port 139383 remote_ip 10.8.0.154 139384 username hashtadani3 139384 mac 139384 bytes_out 0 139384 bytes_in 0 139384 station_ip 5.202.12.209 139384 port 349 139384 unique_id port 139384 remote_ip 10.8.0.154 139385 username hashtadani3 139385 mac 139385 bytes_out 0 139385 bytes_in 0 139385 station_ip 5.202.12.209 139385 port 349 139385 unique_id port 139385 remote_ip 10.8.0.154 139390 username hashtadani3 139390 mac 139390 bytes_out 0 139390 bytes_in 0 139390 station_ip 5.202.12.209 139390 port 349 139390 unique_id port 139390 remote_ip 10.8.0.154 139394 username hashtadani3 139394 mac 139394 bytes_out 0 139394 bytes_in 0 139394 station_ip 5.202.12.209 139394 port 349 139394 unique_id port 139394 remote_ip 10.8.0.154 139396 username hashtadani3 139396 mac 139396 bytes_out 0 139396 bytes_in 0 139396 station_ip 5.202.12.209 139396 port 340 139396 unique_id port 139396 remote_ip 10.8.0.154 139401 username hashtadani3 139401 kill_reason Maximum check online fails reached 139401 mac 139401 bytes_out 0 139401 bytes_in 0 139401 station_ip 5.202.12.209 139401 port 352 139401 unique_id port 139404 username hashtadani3 139404 kill_reason Maximum number of concurrent logins reached 139404 mac 139404 bytes_out 0 139404 bytes_in 0 139404 station_ip 5.202.12.209 139404 port 216 139404 unique_id port 139407 username mehdizare 139407 mac 139407 bytes_out 0 139407 bytes_in 0 139407 station_ip 5.120.148.206 139407 port 351 139407 unique_id port 139407 remote_ip 10.8.0.90 139413 username saeed9658 139413 mac 139413 bytes_out 274078 139413 bytes_in 1321009 139413 station_ip 5.119.34.165 139413 port 356 139413 unique_id port 139413 remote_ip 10.8.0.62 139418 username malekpoir 139418 mac 139418 bytes_out 0 139418 bytes_in 0 139418 station_ip 5.119.41.192 139418 port 349 139418 unique_id port 139418 remote_ip 10.8.0.58 139422 username saeed9658 139422 mac 139422 bytes_out 0 139422 bytes_in 0 139422 station_ip 5.119.34.165 139422 port 355 139422 unique_id port 139422 remote_ip 10.8.0.62 139425 username hashtadani3 139425 mac 139425 bytes_out 0 139425 bytes_in 0 139425 station_ip 83.123.144.9 139425 port 355 139425 unique_id port 139425 remote_ip 10.8.0.154 139426 username hashtadani3 139426 mac 139426 bytes_out 0 139426 bytes_in 0 139426 station_ip 83.123.144.9 139426 port 355 139426 unique_id port 139426 remote_ip 10.8.0.154 139427 username barzegar 139427 mac 139427 bytes_out 0 139427 bytes_in 0 139427 station_ip 5.119.120.215 139427 port 353 139427 unique_id port 139427 remote_ip 10.8.0.234 139431 username saeed9658 139431 mac 139431 bytes_out 0 139431 bytes_in 0 139431 station_ip 5.119.34.165 139431 port 356 139431 unique_id port 139431 remote_ip 10.8.0.62 139437 username saeed9658 139437 mac 139437 bytes_out 0 139437 bytes_in 0 139391 port 212 139391 unique_id port 139391 remote_ip 10.8.1.174 139397 username hashtadani3 139397 mac 139397 bytes_out 1644 139397 bytes_in 5182 139397 station_ip 5.202.12.209 139397 port 351 139397 unique_id port 139397 remote_ip 10.8.0.154 139398 username hashtadani3 139398 mac 139398 bytes_out 0 139398 bytes_in 0 139398 station_ip 5.202.12.209 139398 port 351 139398 unique_id port 139398 remote_ip 10.8.0.154 139400 username mehdizare 139400 mac 139400 bytes_out 109266 139400 bytes_in 145030 139400 station_ip 5.120.148.206 139400 port 216 139400 unique_id port 139400 remote_ip 10.8.1.42 139402 username godarzi 139402 mac 139402 bytes_out 0 139402 bytes_in 0 139402 station_ip 5.202.62.33 139402 port 340 139402 unique_id port 139402 remote_ip 10.8.0.174 139403 username barzegar 139403 mac 139403 bytes_out 0 139403 bytes_in 0 139403 station_ip 5.119.120.215 139403 port 215 139403 unique_id port 139403 remote_ip 10.8.1.174 139406 username hashtadani3 139406 kill_reason Maximum check online fails reached 139406 mac 139406 bytes_out 0 139406 bytes_in 0 139406 station_ip 5.202.12.209 139406 port 340 139406 unique_id port 139412 username mohammadjavad 139412 mac 139412 bytes_out 20401 139412 bytes_in 21628 139412 station_ip 83.123.217.77 139412 port 355 139412 unique_id port 139412 remote_ip 10.8.0.142 139415 username saeed9658 139415 mac 139415 bytes_out 0 139415 bytes_in 0 139415 station_ip 5.119.34.165 139415 port 353 139415 unique_id port 139415 remote_ip 10.8.0.62 139419 username saeed9658 139419 mac 139419 bytes_out 0 139419 bytes_in 0 139419 station_ip 5.119.34.165 139419 port 212 139419 unique_id port 139419 remote_ip 10.8.1.210 139424 username barzegar 139424 mac 139424 bytes_out 8022 139424 bytes_in 22148 139424 station_ip 5.119.120.215 139424 port 215 139424 unique_id port 139424 remote_ip 10.8.1.174 139430 username barzegar 139430 mac 139430 bytes_out 0 139430 bytes_in 0 139430 station_ip 5.119.120.215 139430 port 356 139430 unique_id port 139430 remote_ip 10.8.0.234 139433 username hashtadani3 139433 mac 139433 bytes_out 0 139433 bytes_in 0 139433 station_ip 83.123.144.9 139433 port 353 139433 unique_id port 139433 remote_ip 10.8.0.154 139438 username saeed9658 139438 mac 139438 bytes_out 0 139438 bytes_in 0 139438 station_ip 5.119.34.165 139438 port 353 139438 unique_id port 139438 remote_ip 10.8.0.62 139441 username amin.saeedi 139441 unique_id port 139441 terminate_cause User-Request 139441 bytes_out 986446 139441 bytes_in 44656363 139441 station_ip 5.120.44.172 139441 port 15730643 139441 nas_port_type Virtual 139441 remote_ip 5.5.5.232 139445 username yaghobi 139445 mac 139445 bytes_out 0 139445 bytes_in 0 139445 station_ip 83.122.159.157 139445 port 353 139445 unique_id port 139445 remote_ip 10.8.0.198 139447 username hashtadani3 139447 mac 139447 bytes_out 15630 139447 bytes_in 161056 139447 station_ip 83.123.144.9 139447 port 212 139447 unique_id port 139447 remote_ip 10.8.1.94 139450 username barzegar 139450 mac 139450 bytes_out 0 139450 bytes_in 0 139450 station_ip 5.119.120.215 139450 port 353 139450 unique_id port 139450 remote_ip 10.8.0.234 139451 username hashtadani3 139451 mac 139451 bytes_out 2808 139451 bytes_in 5187 139451 station_ip 83.123.144.9 139451 port 212 139451 unique_id port 139451 remote_ip 10.8.1.94 139456 username Mahin 139456 mac 139456 bytes_out 0 139456 bytes_in 0 139456 station_ip 5.120.183.163 139456 port 358 139399 username vanila 139399 mac 139399 bytes_out 0 139399 bytes_in 0 139399 station_ip 83.122.149.2 139399 port 351 139399 unique_id port 139399 remote_ip 10.8.0.178 139405 username hashtadani3 139405 kill_reason Maximum check online fails reached 139405 mac 139405 bytes_out 0 139405 bytes_in 0 139405 station_ip 5.202.12.209 139405 port 354 139405 unique_id port 139408 username barzegar 139408 mac 139408 bytes_out 3484 139408 bytes_in 5974 139408 station_ip 5.119.120.215 139408 port 215 139408 unique_id port 139408 remote_ip 10.8.1.174 139409 username alihosseini1 139409 mac 139409 bytes_out 1190457 139409 bytes_in 11656054 139409 station_ip 5.119.118.207 139409 port 212 139409 unique_id port 139409 remote_ip 10.8.1.106 139410 username barzegar 139410 mac 139410 bytes_out 2589 139410 bytes_in 5008 139410 station_ip 5.119.120.215 139410 port 212 139410 unique_id port 139410 remote_ip 10.8.1.174 139411 username vanila 139411 mac 139411 bytes_out 8584918 139411 bytes_in 5368010 139411 station_ip 83.122.149.2 139411 port 353 139411 unique_id port 139411 remote_ip 10.8.0.178 139414 username saeed9658 139414 mac 139414 bytes_out 0 139414 bytes_in 0 139414 station_ip 5.119.34.165 139414 port 215 139414 unique_id port 139414 remote_ip 10.8.1.210 139416 username hashtadani3 139416 mac 139416 bytes_out 105952 139416 bytes_in 782534 139416 station_ip 83.123.144.9 139416 port 212 139416 unique_id port 139416 remote_ip 10.8.1.94 139417 username saeed9658 139417 mac 139417 bytes_out 0 139417 bytes_in 0 139417 station_ip 5.119.34.165 139417 port 355 139417 unique_id port 139417 remote_ip 10.8.0.62 139420 username hashtadani3 139420 mac 139420 bytes_out 0 139420 bytes_in 0 139420 station_ip 83.123.144.9 139420 port 355 139420 unique_id port 139420 remote_ip 10.8.0.154 139421 username hashtadani3 139421 mac 139421 bytes_out 0 139421 bytes_in 0 139421 station_ip 83.123.144.9 139421 port 355 139421 unique_id port 139421 remote_ip 10.8.0.154 139423 username meysam 139423 mac 139423 bytes_out 0 139423 bytes_in 0 139423 station_ip 188.158.49.40 139423 port 353 139423 unique_id port 139423 remote_ip 10.8.0.110 139428 username saeed9658 139428 mac 139428 bytes_out 10966 139428 bytes_in 18373 139428 station_ip 5.119.34.165 139428 port 356 139428 unique_id port 139428 remote_ip 10.8.0.62 139429 username saeed9658 139429 mac 139429 bytes_out 7189 139429 bytes_in 8679 139429 station_ip 5.119.34.165 139429 port 353 139429 unique_id port 139429 remote_ip 10.8.0.62 139432 username hashtadani3 139432 kill_reason Maximum check online fails reached 139432 mac 139432 bytes_out 0 139432 bytes_in 0 139432 station_ip 83.123.144.9 139432 port 355 139432 unique_id port 139434 username hashtadani3 139434 mac 139434 bytes_out 0 139434 bytes_in 0 139434 station_ip 83.123.144.9 139434 port 353 139434 unique_id port 139434 remote_ip 10.8.0.154 139435 username saeed9658 139435 mac 139435 bytes_out 0 139435 bytes_in 0 139435 station_ip 5.119.34.165 139435 port 353 139435 unique_id port 139435 remote_ip 10.8.0.62 139436 username hashtadani3 139436 mac 139436 bytes_out 0 139436 bytes_in 0 139436 station_ip 83.123.144.9 139436 port 356 139436 unique_id port 139436 remote_ip 10.8.0.154 139439 username saeed9658 139439 mac 139439 bytes_out 0 139439 bytes_in 0 139439 station_ip 5.119.34.165 139439 port 353 139439 unique_id port 139439 remote_ip 10.8.0.62 139440 username saeed9658 139440 mac 139437 station_ip 5.119.34.165 139437 port 353 139437 unique_id port 139437 remote_ip 10.8.0.62 139442 username alikomsari 139442 kill_reason Another user logged on this global unique id 139442 mac 139442 bytes_out 0 139442 bytes_in 0 139442 station_ip 5.119.228.209 139442 port 339 139442 unique_id port 139442 remote_ip 10.8.0.70 139443 username saeed9658 139443 mac 139443 bytes_out 12984 139443 bytes_in 18881 139443 station_ip 5.119.34.165 139443 port 356 139443 unique_id port 139443 remote_ip 10.8.0.62 139454 username Mahin 139454 mac 139454 bytes_out 0 139454 bytes_in 0 139454 station_ip 5.120.183.163 139454 port 356 139454 unique_id port 139454 remote_ip 10.8.0.158 139460 username Mahin 139460 mac 139460 bytes_out 23637 139460 bytes_in 156972 139460 station_ip 5.120.183.163 139460 port 359 139460 unique_id port 139460 remote_ip 10.8.0.158 139464 username sabaghnezhad 139464 mac 139464 bytes_out 928145 139464 bytes_in 2207016 139464 station_ip 5.214.192.37 139464 port 345 139464 unique_id port 139464 remote_ip 10.8.0.186 139467 username hasanahmadi 139467 mac 139467 bytes_out 7174 139467 bytes_in 12687 139467 station_ip 37.129.39.60 139467 port 358 139467 unique_id port 139467 remote_ip 10.8.0.126 139475 username Mahin 139475 mac 139475 bytes_out 134280 139475 bytes_in 450112 139475 station_ip 5.120.183.163 139475 port 357 139475 unique_id port 139475 remote_ip 10.8.0.158 139478 username saeed9658 139478 mac 139478 bytes_out 0 139478 bytes_in 0 139478 station_ip 5.119.34.165 139478 port 357 139478 unique_id port 139478 remote_ip 10.8.0.62 139481 username hashtadani3 139481 mac 139481 bytes_out 4122 139481 bytes_in 6543 139481 station_ip 83.123.144.9 139481 port 331 139481 unique_id port 139481 remote_ip 10.8.0.154 139482 username hosseine 139482 kill_reason Another user logged on this global unique id 139482 mac 139482 bytes_out 0 139482 bytes_in 0 139482 station_ip 83.122.71.104 139482 port 346 139482 unique_id port 139482 remote_ip 10.8.0.238 139484 username morteza 139484 mac 139484 bytes_out 0 139484 bytes_in 0 139484 station_ip 113.203.95.36 139484 port 357 139484 unique_id port 139484 remote_ip 10.8.0.46 139489 username kalantary 139489 kill_reason Wrong password 139489 mac 139489 bytes_out 0 139489 bytes_in 0 139489 station_ip 83.123.19.129 139489 port 331 139489 unique_id port 139492 username rajaei 139492 mac 139492 bytes_out 0 139492 bytes_in 0 139492 station_ip 89.32.96.27 139492 port 360 139492 unique_id port 139492 remote_ip 10.8.0.34 139496 username kalantary 139496 kill_reason Wrong password 139496 mac 139496 bytes_out 0 139496 bytes_in 0 139496 station_ip 46.225.214.99 139496 port 361 139496 unique_id port 139499 username rajaei 139499 mac 139499 bytes_out 0 139499 bytes_in 0 139499 station_ip 89.32.96.27 139499 port 345 139499 unique_id port 139499 remote_ip 10.8.0.34 139502 username khalili 139502 kill_reason Another user logged on this global unique id 139502 mac 139502 bytes_out 0 139502 bytes_in 0 139502 station_ip 5.119.71.25 139502 port 359 139502 unique_id port 139502 remote_ip 10.8.0.86 139504 username hashtadani3 139504 mac 139504 bytes_out 0 139504 bytes_in 0 139504 station_ip 83.123.144.9 139504 port 360 139504 unique_id port 139504 remote_ip 10.8.0.154 139508 username hashtadani3 139508 kill_reason Maximum check online fails reached 139508 mac 139508 bytes_out 0 139508 bytes_in 0 139508 station_ip 83.123.144.9 139508 port 360 139508 unique_id port 139509 username kalantary 139440 bytes_out 0 139440 bytes_in 0 139440 station_ip 5.119.34.165 139440 port 356 139440 unique_id port 139440 remote_ip 10.8.0.62 139444 username barzegar 139444 mac 139444 bytes_out 0 139444 bytes_in 0 139444 station_ip 5.119.120.215 139444 port 358 139444 unique_id port 139444 remote_ip 10.8.0.234 139446 username saeed9658 139446 mac 139446 bytes_out 0 139446 bytes_in 0 139446 station_ip 5.119.34.165 139446 port 357 139446 unique_id port 139446 remote_ip 10.8.0.62 139448 username hashtadani3 139448 mac 139448 bytes_out 0 139448 bytes_in 0 139448 station_ip 83.123.144.9 139448 port 212 139448 unique_id port 139448 remote_ip 10.8.1.94 139449 username saeed9658 139449 mac 139449 bytes_out 0 139449 bytes_in 0 139449 station_ip 5.119.34.165 139449 port 215 139449 unique_id port 139449 remote_ip 10.8.1.210 139452 username saeed9658 139452 mac 139452 bytes_out 4700 139452 bytes_in 7251 139452 station_ip 5.119.34.165 139452 port 215 139452 unique_id port 139452 remote_ip 10.8.1.210 139453 username hashtadani3 139453 mac 139453 bytes_out 0 139453 bytes_in 0 139453 station_ip 83.123.144.9 139453 port 212 139453 unique_id port 139453 remote_ip 10.8.1.94 139455 username hasanahmadi 139455 mac 139455 bytes_out 0 139455 bytes_in 0 139455 station_ip 46.225.214.99 139455 port 357 139455 unique_id port 139455 remote_ip 10.8.0.126 139458 username hasanahmadi 139458 mac 139458 bytes_out 0 139458 bytes_in 0 139458 station_ip 46.225.214.99 139458 port 356 139458 unique_id port 139458 remote_ip 10.8.0.126 139465 username hashtadani3 139465 kill_reason Maximum check online fails reached 139465 mac 139465 bytes_out 0 139465 bytes_in 0 139465 station_ip 83.123.144.9 139465 port 356 139465 unique_id port 139466 username barzegar 139466 mac 139466 bytes_out 3832 139466 bytes_in 5976 139466 station_ip 5.119.120.215 139466 port 353 139466 unique_id port 139466 remote_ip 10.8.0.234 139469 username amin.saeedi 139469 unique_id port 139469 terminate_cause User-Request 139469 bytes_out 1193990 139469 bytes_in 13807817 139469 station_ip 31.56.159.23 139469 port 15730644 139469 nas_port_type Virtual 139469 remote_ip 5.5.5.241 139473 username hashtadani3 139473 mac 139473 bytes_out 0 139473 bytes_in 0 139473 station_ip 83.123.144.9 139473 port 331 139473 unique_id port 139473 remote_ip 10.8.0.154 139476 username saeed9658 139476 mac 139476 bytes_out 0 139476 bytes_in 0 139476 station_ip 5.119.34.165 139476 port 212 139476 unique_id port 139476 remote_ip 10.8.1.210 139477 username vanila 139477 mac 139477 bytes_out 0 139477 bytes_in 0 139477 station_ip 83.122.155.157 139477 port 358 139477 unique_id port 139477 remote_ip 10.8.0.178 139488 username kalantary 139488 kill_reason Wrong password 139488 mac 139488 bytes_out 0 139488 bytes_in 0 139488 station_ip 83.123.19.129 139488 port 331 139488 unique_id port 139490 username hashtadani3 139490 mac 139490 bytes_out 0 139490 bytes_in 0 139490 station_ip 83.123.144.9 139490 port 345 139490 unique_id port 139490 remote_ip 10.8.0.154 139494 username barzegar 139494 mac 139494 bytes_out 19244 139494 bytes_in 21999 139494 station_ip 5.119.120.215 139494 port 212 139494 unique_id port 139494 remote_ip 10.8.1.174 139497 username hashtadani3 139497 mac 139497 bytes_out 0 139497 bytes_in 0 139497 station_ip 83.123.144.9 139497 port 360 139497 unique_id port 139497 remote_ip 10.8.0.154 139500 username hashtadani3 139500 mac 139500 bytes_out 0 139456 unique_id port 139456 remote_ip 10.8.0.158 139457 username barzegar 139457 mac 139457 bytes_out 3635 139457 bytes_in 5989 139457 station_ip 5.119.120.215 139457 port 353 139457 unique_id port 139457 remote_ip 10.8.0.234 139459 username hashtadani3 139459 mac 139459 bytes_out 0 139459 bytes_in 0 139459 station_ip 83.123.144.9 139459 port 357 139459 unique_id port 139459 remote_ip 10.8.0.154 139461 username alikomsari 139461 kill_reason Another user logged on this global unique id 139461 mac 139461 bytes_out 0 139461 bytes_in 0 139461 station_ip 5.119.228.209 139461 port 339 139461 unique_id port 139462 username saeed9658 139462 mac 139462 bytes_out 0 139462 bytes_in 0 139462 station_ip 5.119.34.165 139462 port 212 139462 unique_id port 139462 remote_ip 10.8.1.210 139463 username hashtadani3 139463 mac 139463 bytes_out 0 139463 bytes_in 0 139463 station_ip 83.123.144.9 139463 port 359 139463 unique_id port 139463 remote_ip 10.8.0.154 139468 username hashtadani3 139468 mac 139468 bytes_out 0 139468 bytes_in 0 139468 station_ip 83.123.144.9 139468 port 345 139468 unique_id port 139468 remote_ip 10.8.0.154 139470 username barzegar 139470 mac 139470 bytes_out 0 139470 bytes_in 0 139470 station_ip 5.119.120.215 139470 port 212 139470 unique_id port 139470 remote_ip 10.8.1.174 139471 username hashtadani3 139471 mac 139471 bytes_out 0 139471 bytes_in 0 139471 station_ip 83.123.144.9 139471 port 353 139471 unique_id port 139471 remote_ip 10.8.0.154 139472 username mosi 139472 mac 139472 bytes_out 0 139472 bytes_in 0 139472 station_ip 151.235.75.185 139472 port 331 139472 unique_id port 139474 username saeed9658 139474 mac 139474 bytes_out 0 139474 bytes_in 0 139474 station_ip 5.119.34.165 139474 port 212 139474 unique_id port 139474 remote_ip 10.8.1.210 139479 username alikomsari 139479 kill_reason Another user logged on this global unique id 139479 mac 139479 bytes_out 0 139479 bytes_in 0 139479 station_ip 5.119.228.209 139479 port 339 139479 unique_id port 139480 username saeed9658 139480 mac 139480 bytes_out 0 139480 bytes_in 0 139480 station_ip 5.119.34.165 139480 port 357 139480 unique_id port 139480 remote_ip 10.8.0.62 139483 username godarzi 139483 kill_reason Another user logged on this global unique id 139483 mac 139483 bytes_out 0 139483 bytes_in 0 139483 station_ip 5.202.62.33 139483 port 351 139483 unique_id port 139483 remote_ip 10.8.0.174 139485 username hasanahmadi 139485 mac 139485 bytes_out 842999 139485 bytes_in 17900151 139485 station_ip 83.122.17.49 139485 port 345 139485 unique_id port 139485 remote_ip 10.8.0.126 139486 username rajaei 139486 mac 139486 bytes_out 0 139486 bytes_in 0 139486 station_ip 89.32.96.27 139486 port 331 139486 unique_id port 139486 remote_ip 10.8.0.34 139487 username kalantary 139487 kill_reason Wrong password 139487 mac 139487 bytes_out 0 139487 bytes_in 0 139487 station_ip 83.123.19.129 139487 port 331 139487 unique_id port 139491 username mostafa_es78 139491 unique_id port 139491 terminate_cause Lost-Carrier 139491 bytes_out 96731 139491 bytes_in 352145 139491 station_ip 109.125.174.62 139491 port 15730645 139491 nas_port_type Virtual 139491 remote_ip 5.5.5.255 139493 username kalantary 139493 kill_reason Wrong password 139493 mac 139493 bytes_out 0 139493 bytes_in 0 139493 station_ip 46.225.214.99 139493 port 360 139493 unique_id port 139495 username hashtadani3 139495 mac 139495 bytes_out 0 139495 bytes_in 0 139495 station_ip 83.123.144.9 139495 port 215 139495 unique_id port 139495 remote_ip 10.8.1.94 139498 username hashtadani3 139498 kill_reason Maximum check online fails reached 139498 mac 139498 bytes_out 0 139498 bytes_in 0 139498 station_ip 83.123.144.9 139498 port 331 139498 unique_id port 139501 username hashtadani3 139501 kill_reason Maximum check online fails reached 139501 mac 139501 bytes_out 0 139501 bytes_in 0 139501 station_ip 83.123.144.9 139501 port 345 139501 unique_id port 139503 username hashtadani3 139503 mac 139503 bytes_out 0 139503 bytes_in 0 139503 station_ip 83.123.144.9 139503 port 360 139503 unique_id port 139503 remote_ip 10.8.0.154 139507 username barzegar 139507 mac 139507 bytes_out 0 139507 bytes_in 0 139507 station_ip 5.119.120.215 139507 port 212 139507 unique_id port 139507 remote_ip 10.8.1.174 139510 username khalili 139510 mac 139510 bytes_out 0 139510 bytes_in 0 139510 station_ip 5.119.71.25 139510 port 359 139510 unique_id port 139513 username hashtadani3 139513 mac 139513 bytes_out 0 139513 bytes_in 0 139513 station_ip 83.123.144.9 139513 port 359 139513 unique_id port 139513 remote_ip 10.8.0.154 139515 username Mahin 139515 mac 139515 bytes_out 0 139515 bytes_in 0 139515 station_ip 5.120.183.163 139515 port 358 139515 unique_id port 139515 remote_ip 10.8.0.158 139517 username Mahin 139517 mac 139517 bytes_out 26731 139517 bytes_in 44386 139517 station_ip 5.120.183.163 139517 port 365 139517 unique_id port 139517 remote_ip 10.8.0.158 139519 username barzegar 139519 mac 139519 bytes_out 0 139519 bytes_in 0 139519 station_ip 5.119.120.215 139519 port 364 139519 unique_id port 139519 remote_ip 10.8.0.234 139521 username hashtadani3 139521 mac 139521 bytes_out 0 139521 bytes_in 0 139521 station_ip 83.123.144.9 139521 port 358 139521 unique_id port 139521 remote_ip 10.8.0.154 139525 username barzegar 139525 mac 139525 bytes_out 0 139525 bytes_in 0 139525 station_ip 5.119.120.215 139525 port 212 139525 unique_id port 139525 remote_ip 10.8.1.174 139527 username amir 139527 mac 139527 bytes_out 0 139527 bytes_in 0 139527 station_ip 46.225.210.77 139527 port 362 139527 unique_id port 139527 remote_ip 10.8.0.50 139528 username alikomsari 139528 kill_reason Another user logged on this global unique id 139528 mac 139528 bytes_out 0 139528 bytes_in 0 139528 station_ip 5.119.228.209 139528 port 339 139528 unique_id port 139532 username Mahin 139532 mac 139532 bytes_out 4916 139532 bytes_in 6279 139532 station_ip 5.120.183.163 139532 port 362 139532 unique_id port 139532 remote_ip 10.8.0.158 139534 username Mahin 139534 mac 139534 bytes_out 0 139534 bytes_in 0 139534 station_ip 5.120.183.163 139534 port 358 139534 unique_id port 139534 remote_ip 10.8.0.158 139535 username sedighe 139535 mac 139535 bytes_out 58822 139535 bytes_in 112486 139535 station_ip 83.122.32.58 139535 port 365 139535 unique_id port 139535 remote_ip 10.8.0.146 139536 username hamid.e 139536 unique_id port 139536 terminate_cause User-Request 139536 bytes_out 2001745 139536 bytes_in 17206541 139536 station_ip 37.27.28.101 139536 port 15730647 139536 nas_port_type Virtual 139536 remote_ip 5.5.5.197 139539 username barzegar 139539 mac 139539 bytes_out 0 139539 bytes_in 0 139539 station_ip 5.119.120.215 139539 port 212 139539 unique_id port 139539 remote_ip 10.8.1.174 139544 username kalantary 139544 mac 139544 bytes_out 0 139544 bytes_in 0 139544 station_ip 83.123.19.129 139544 port 351 139500 bytes_in 0 139500 station_ip 83.123.144.9 139500 port 212 139500 unique_id port 139500 remote_ip 10.8.1.94 139505 username barzegar 139505 mac 139505 bytes_out 0 139505 bytes_in 0 139505 station_ip 5.119.120.215 139505 port 212 139505 unique_id port 139505 remote_ip 10.8.1.174 139506 username hashtadani3 139506 mac 139506 bytes_out 0 139506 bytes_in 0 139506 station_ip 83.123.144.9 139506 port 215 139506 unique_id port 139506 remote_ip 10.8.1.94 139512 username hashtadani3 139512 kill_reason Maximum check online fails reached 139512 mac 139512 bytes_out 0 139512 bytes_in 0 139512 station_ip 83.123.144.9 139512 port 361 139512 unique_id port 139518 username hashtadani3 139518 mac 139518 bytes_out 0 139518 bytes_in 0 139518 station_ip 83.123.144.9 139518 port 358 139518 unique_id port 139518 remote_ip 10.8.0.154 139523 username hasanahmadi 139523 mac 139523 bytes_out 0 139523 bytes_in 0 139523 station_ip 83.122.17.49 139523 port 357 139523 unique_id port 139526 username kalantary 139526 mac 139526 bytes_out 328287 139526 bytes_in 2255605 139526 station_ip 83.123.19.129 139526 port 366 139526 unique_id port 139526 remote_ip 10.8.0.98 139529 username hasanahmadi 139529 mac 139529 bytes_out 853852 139529 bytes_in 15650123 139529 station_ip 83.122.17.49 139529 port 358 139529 unique_id port 139529 remote_ip 10.8.0.126 139530 username Mahin 139530 mac 139530 bytes_out 17043 139530 bytes_in 22384 139530 station_ip 5.120.183.163 139530 port 367 139530 unique_id port 139530 remote_ip 10.8.0.158 139537 username kalantary 139537 mac 139537 bytes_out 0 139537 bytes_in 0 139537 station_ip 83.123.19.129 139537 port 351 139537 unique_id port 139537 remote_ip 10.8.0.98 139538 username barzegar 139538 mac 139538 bytes_out 10156442 139538 bytes_in 11330308 139538 station_ip 5.119.120.215 139538 port 212 139538 unique_id port 139538 remote_ip 10.8.1.174 139540 username sabaghnezhad 139540 mac 139540 bytes_out 0 139540 bytes_in 0 139540 station_ip 95.64.98.128 139540 port 366 139540 unique_id port 139540 remote_ip 10.8.0.186 139541 username sekonji3 139541 mac 139541 bytes_out 0 139541 bytes_in 0 139541 station_ip 83.122.61.123 139541 port 365 139541 unique_id port 139541 remote_ip 10.8.0.6 139543 username meysam 139543 mac 139543 bytes_out 0 139543 bytes_in 0 139543 station_ip 188.158.49.40 139543 port 368 139543 unique_id port 139543 remote_ip 10.8.0.110 139545 username barzegar 139545 mac 139545 bytes_out 0 139545 bytes_in 0 139545 station_ip 5.119.120.215 139545 port 212 139545 unique_id port 139545 remote_ip 10.8.1.174 139547 username sekonji3 139547 mac 139547 bytes_out 0 139547 bytes_in 0 139547 station_ip 83.122.61.123 139547 port 212 139547 unique_id port 139547 remote_ip 10.8.1.238 139557 username hashtadani3 139557 mac 139557 bytes_out 0 139557 bytes_in 0 139557 station_ip 37.129.120.27 139557 port 363 139557 unique_id port 139557 remote_ip 10.8.0.154 139561 username hashtadani3 139561 kill_reason Maximum check online fails reached 139561 mac 139561 bytes_out 0 139561 bytes_in 0 139561 station_ip 37.129.120.27 139561 port 363 139561 unique_id port 139563 username sabaghnezhad 139563 mac 139563 bytes_out 0 139563 bytes_in 0 139563 station_ip 95.64.75.238 139563 port 357 139563 unique_id port 139563 remote_ip 10.8.0.186 139565 username hashtadani3 139565 kill_reason Maximum check online fails reached 139565 mac 139565 bytes_out 0 139565 bytes_in 0 139509 kill_reason Wrong password 139509 mac 139509 bytes_out 0 139509 bytes_in 0 139509 station_ip 46.225.214.99 139509 port 362 139509 unique_id port 139511 username hashtadani3 139511 mac 139511 bytes_out 0 139511 bytes_in 0 139511 station_ip 83.123.144.9 139511 port 364 139511 unique_id port 139511 remote_ip 10.8.0.154 139514 username kalantary 139514 mac 139514 bytes_out 0 139514 bytes_in 0 139514 station_ip 46.225.214.99 139514 port 365 139514 unique_id port 139514 remote_ip 10.8.0.98 139516 username hashtadani3 139516 kill_reason Maximum check online fails reached 139516 mac 139516 bytes_out 0 139516 bytes_in 0 139516 station_ip 83.123.144.9 139516 port 359 139516 unique_id port 139520 username hasanahmadi 139520 kill_reason Another user logged on this global unique id 139520 mac 139520 bytes_out 0 139520 bytes_in 0 139520 station_ip 83.122.17.49 139520 port 357 139520 unique_id port 139520 remote_ip 10.8.0.126 139522 username godarzi 139522 kill_reason Another user logged on this global unique id 139522 mac 139522 bytes_out 0 139522 bytes_in 0 139522 station_ip 5.202.62.33 139522 port 351 139522 unique_id port 139524 username godarzi 139524 mac 139524 bytes_out 0 139524 bytes_in 0 139524 station_ip 5.202.62.33 139524 port 351 139524 unique_id port 139531 username Mahin 139531 mac 139531 bytes_out 0 139531 bytes_in 0 139531 station_ip 5.120.183.163 139531 port 358 139531 unique_id port 139531 remote_ip 10.8.0.158 139533 username meysam 139533 mac 139533 bytes_out 1706196 139533 bytes_in 27474531 139533 station_ip 188.158.49.40 139533 port 363 139533 unique_id port 139533 remote_ip 10.8.0.110 139542 username sekonji3 139542 mac 139542 bytes_out 0 139542 bytes_in 0 139542 station_ip 83.122.61.123 139542 port 365 139542 unique_id port 139542 remote_ip 10.8.0.6 139548 username godarzi 139548 mac 139548 bytes_out 0 139548 bytes_in 0 139548 station_ip 5.202.62.33 139548 port 357 139548 unique_id port 139548 remote_ip 10.8.0.174 139549 username kordestani 139549 mac 139549 bytes_out 0 139549 bytes_in 0 139549 station_ip 151.235.92.45 139549 port 363 139549 unique_id port 139549 remote_ip 10.8.0.134 139550 username barzegar 139550 mac 139550 bytes_out 0 139550 bytes_in 0 139550 station_ip 5.119.120.215 139550 port 351 139550 unique_id port 139550 remote_ip 10.8.0.234 139551 username alikomsari 139551 mac 139551 bytes_out 0 139551 bytes_in 0 139551 station_ip 5.119.228.209 139551 port 339 139551 unique_id port 139554 username sekonji3 139554 mac 139554 bytes_out 0 139554 bytes_in 0 139554 station_ip 83.122.61.123 139554 port 339 139554 unique_id port 139554 remote_ip 10.8.0.6 139555 username sekonji3 139555 mac 139555 bytes_out 0 139555 bytes_in 0 139555 station_ip 83.122.61.123 139555 port 339 139555 unique_id port 139555 remote_ip 10.8.0.6 139558 username hashtadani3 139558 mac 139558 bytes_out 0 139558 bytes_in 0 139558 station_ip 37.129.120.27 139558 port 212 139558 unique_id port 139558 remote_ip 10.8.1.94 139559 username sekonji3 139559 mac 139559 bytes_out 0 139559 bytes_in 0 139559 station_ip 83.122.61.123 139559 port 368 139559 unique_id port 139559 remote_ip 10.8.0.6 139560 username godarzi 139560 mac 139560 bytes_out 0 139560 bytes_in 0 139560 station_ip 5.202.62.33 139560 port 366 139560 unique_id port 139560 remote_ip 10.8.0.174 139567 username hashtadani3 139567 mac 139567 bytes_out 0 139567 bytes_in 0 139544 unique_id port 139544 remote_ip 10.8.0.98 139546 username sekonji3 139546 mac 139546 bytes_out 0 139546 bytes_in 0 139546 station_ip 83.122.61.123 139546 port 215 139546 unique_id port 139546 remote_ip 10.8.1.238 139552 username sekonji3 139552 mac 139552 bytes_out 0 139552 bytes_in 0 139552 station_ip 83.122.61.123 139552 port 339 139552 unique_id port 139552 remote_ip 10.8.0.6 139553 username sekonji3 139553 mac 139553 bytes_out 0 139553 bytes_in 0 139553 station_ip 83.122.61.123 139553 port 339 139553 unique_id port 139553 remote_ip 10.8.0.6 139556 username amir 139556 kill_reason Another user logged on this global unique id 139556 mac 139556 bytes_out 0 139556 bytes_in 0 139556 station_ip 46.225.210.77 139556 port 362 139556 unique_id port 139556 remote_ip 10.8.0.50 139562 username kalantary 139562 mac 139562 bytes_out 0 139562 bytes_in 0 139562 station_ip 83.123.19.129 139562 port 351 139562 unique_id port 139562 remote_ip 10.8.0.98 139564 username hashtadani3 139564 mac 139564 bytes_out 0 139564 bytes_in 0 139564 station_ip 37.129.120.27 139564 port 369 139564 unique_id port 139564 remote_ip 10.8.0.154 139566 username sabaghnezhad 139566 mac 139566 bytes_out 0 139566 bytes_in 0 139566 station_ip 95.64.75.238 139566 port 351 139566 unique_id port 139566 remote_ip 10.8.0.186 139568 username hashtadani3 139568 mac 139568 bytes_out 0 139568 bytes_in 0 139568 station_ip 37.129.120.27 139568 port 351 139568 unique_id port 139568 remote_ip 10.8.0.154 139570 username aminvpn 139570 mac 139570 bytes_out 0 139570 bytes_in 0 139570 station_ip 83.122.41.30 139570 port 364 139570 unique_id port 139570 remote_ip 10.8.0.14 139571 username hashtadani3 139571 mac 139571 bytes_out 0 139571 bytes_in 0 139571 station_ip 37.129.120.27 139571 port 364 139571 unique_id port 139571 remote_ip 10.8.0.154 139575 username sekonji3 139575 mac 139575 bytes_out 0 139575 bytes_in 0 139575 station_ip 83.122.61.123 139575 port 364 139575 unique_id port 139575 remote_ip 10.8.0.6 139580 username hashtadani3 139580 kill_reason Maximum check online fails reached 139580 mac 139580 bytes_out 0 139580 bytes_in 0 139580 station_ip 37.129.120.27 139580 port 339 139580 unique_id port 139585 username barzegar 139585 mac 139585 bytes_out 0 139585 bytes_in 0 139585 station_ip 5.119.120.215 139585 port 365 139585 unique_id port 139585 remote_ip 10.8.0.234 139587 username hashtadani3 139587 mac 139587 bytes_out 0 139587 bytes_in 0 139587 station_ip 37.129.120.27 139587 port 369 139587 unique_id port 139587 remote_ip 10.8.0.154 139588 username hashtadani3 139588 kill_reason Maximum check online fails reached 139588 mac 139588 bytes_out 0 139588 bytes_in 0 139588 station_ip 37.129.120.27 139588 port 365 139588 unique_id port 139591 username godarzi 139591 mac 139591 bytes_out 527548 139591 bytes_in 1559388 139591 station_ip 5.202.62.33 139591 port 369 139591 unique_id port 139591 remote_ip 10.8.0.174 139596 username hashtadani3 139596 kill_reason Maximum check online fails reached 139596 mac 139596 bytes_out 0 139596 bytes_in 0 139596 station_ip 37.129.120.27 139596 port 369 139596 unique_id port 139597 username barzegar 139597 mac 139597 bytes_out 0 139597 bytes_in 0 139597 station_ip 5.119.120.215 139597 port 364 139597 unique_id port 139597 remote_ip 10.8.0.234 139601 username hashtadani3 139601 kill_reason Maximum check online fails reached 139601 mac 139601 bytes_out 0 139601 bytes_in 0 139565 station_ip 37.129.120.27 139565 port 357 139565 unique_id port 139574 username hashtadani3 139574 kill_reason Maximum check online fails reached 139574 mac 139574 bytes_out 0 139574 bytes_in 0 139574 station_ip 37.129.120.27 139574 port 351 139574 unique_id port 139576 username sekonji3 139576 mac 139576 bytes_out 0 139576 bytes_in 0 139576 station_ip 83.122.61.123 139576 port 364 139576 unique_id port 139576 remote_ip 10.8.0.6 139577 username barzegar 139577 mac 139577 bytes_out 0 139577 bytes_in 0 139577 station_ip 5.119.120.215 139577 port 365 139577 unique_id port 139577 remote_ip 10.8.0.234 139579 username sekonji3 139579 mac 139579 bytes_out 0 139579 bytes_in 0 139579 station_ip 83.122.61.123 139579 port 368 139579 unique_id port 139579 remote_ip 10.8.0.6 139582 username hashtadani3 139582 mac 139582 bytes_out 0 139582 bytes_in 0 139582 station_ip 37.129.120.27 139582 port 364 139582 unique_id port 139582 remote_ip 10.8.0.154 139584 username hashtadani3 139584 mac 139584 bytes_out 0 139584 bytes_in 0 139584 station_ip 37.129.120.27 139584 port 364 139584 unique_id port 139584 remote_ip 10.8.0.154 139589 username barzegar 139589 mac 139589 bytes_out 3105 139589 bytes_in 5459 139589 station_ip 5.119.120.215 139589 port 364 139589 unique_id port 139589 remote_ip 10.8.0.234 139590 username hashtadani3 139590 kill_reason Maximum check online fails reached 139590 mac 139590 bytes_out 0 139590 bytes_in 0 139590 station_ip 37.129.120.27 139590 port 370 139590 unique_id port 139592 username hashtadani3 139592 mac 139592 bytes_out 0 139592 bytes_in 0 139592 station_ip 37.129.120.27 139592 port 212 139592 unique_id port 139592 remote_ip 10.8.1.94 139598 username kordestani 139598 mac 139598 bytes_out 0 139598 bytes_in 0 139598 station_ip 151.235.88.162 139598 port 368 139598 unique_id port 139598 remote_ip 10.8.0.134 139600 username hashtadani3 139600 kill_reason Maximum number of concurrent logins reached 139600 mac 139600 bytes_out 0 139600 bytes_in 0 139600 station_ip 37.129.120.27 139600 port 373 139600 unique_id port 139603 username aminvpn 139603 mac 139603 bytes_out 0 139603 bytes_in 0 139603 station_ip 37.129.174.83 139603 port 364 139603 unique_id port 139603 remote_ip 10.8.0.14 139604 username rasoul56 139604 kill_reason Relative expiration date has reached 139604 mac 139604 bytes_out 0 139604 bytes_in 0 139604 station_ip 83.123.106.126 139604 port 374 139604 unique_id port 139612 username sabaghnezhad 139612 mac 139612 bytes_out 8020 139612 bytes_in 11278 139612 station_ip 95.64.11.239 139612 port 374 139612 unique_id port 139612 remote_ip 10.8.0.186 139615 username aminvpn 139615 mac 139615 bytes_out 0 139615 bytes_in 0 139615 station_ip 37.129.174.83 139615 port 371 139615 unique_id port 139615 remote_ip 10.8.0.14 139619 username barzegar 139619 mac 139619 bytes_out 0 139619 bytes_in 0 139619 station_ip 5.119.120.215 139619 port 212 139619 unique_id port 139619 remote_ip 10.8.1.174 139620 username aminvpn 139620 mac 139620 bytes_out 0 139620 bytes_in 0 139620 station_ip 37.129.174.83 139620 port 371 139620 unique_id port 139620 remote_ip 10.8.0.14 139623 username mohammadjavad 139623 mac 139623 bytes_out 456607 139623 bytes_in 9099505 139623 station_ip 83.122.82.106 139623 port 377 139623 unique_id port 139623 remote_ip 10.8.0.142 139626 username amin.saeedi 139626 unique_id port 139626 terminate_cause User-Request 139626 bytes_out 130979 139626 bytes_in 6319669 139567 station_ip 37.129.120.27 139567 port 366 139567 unique_id port 139567 remote_ip 10.8.0.154 139569 username amir 139569 mac 139569 bytes_out 0 139569 bytes_in 0 139569 station_ip 46.225.210.77 139569 port 362 139569 unique_id port 139572 username sekonji3 139572 mac 139572 bytes_out 0 139572 bytes_in 0 139572 station_ip 83.122.61.123 139572 port 368 139572 unique_id port 139572 remote_ip 10.8.0.6 139573 username sedighe 139573 mac 139573 bytes_out 0 139573 bytes_in 0 139573 station_ip 83.122.32.58 139573 port 339 139573 unique_id port 139573 remote_ip 10.8.0.146 139578 username hashtadani3 139578 mac 139578 bytes_out 0 139578 bytes_in 0 139578 station_ip 37.129.120.27 139578 port 364 139578 unique_id port 139578 remote_ip 10.8.0.154 139581 username sekonji3 139581 mac 139581 bytes_out 0 139581 bytes_in 0 139581 station_ip 83.122.61.123 139581 port 368 139581 unique_id port 139581 remote_ip 10.8.0.6 139583 username hashtadani3 139583 mac 139583 bytes_out 0 139583 bytes_in 0 139583 station_ip 37.129.120.27 139583 port 364 139583 unique_id port 139583 remote_ip 10.8.0.154 139586 username hashtadani3 139586 mac 139586 bytes_out 0 139586 bytes_in 0 139586 station_ip 37.129.120.27 139586 port 212 139586 unique_id port 139586 remote_ip 10.8.1.94 139593 username hashtadani3 139593 mac 139593 bytes_out 0 139593 bytes_in 0 139593 station_ip 37.129.120.27 139593 port 212 139593 unique_id port 139593 remote_ip 10.8.1.94 139594 username amir 139594 mac 139594 bytes_out 1056031 139594 bytes_in 6232352 139594 station_ip 46.225.210.77 139594 port 362 139594 unique_id port 139594 remote_ip 10.8.0.50 139595 username kordestani 139595 mac 139595 bytes_out 349685 139595 bytes_in 4157528 139595 station_ip 151.235.92.45 139595 port 368 139595 unique_id port 139595 remote_ip 10.8.0.134 139599 username hashtadani3 139599 kill_reason Maximum number of concurrent logins reached 139599 mac 139599 bytes_out 0 139599 bytes_in 0 139599 station_ip 37.129.120.27 139599 port 364 139599 unique_id port 139602 username hashtadani3 139602 kill_reason Maximum check online fails reached 139602 mac 139602 bytes_out 0 139602 bytes_in 0 139602 station_ip 37.129.120.27 139602 port 362 139602 unique_id port 139605 username rasoul56 139605 kill_reason Relative expiration date has reached 139605 mac 139605 bytes_out 0 139605 bytes_in 0 139605 station_ip 83.123.106.126 139605 port 374 139605 unique_id port 139609 username hashtadani3 139609 kill_reason Maximum check online fails reached 139609 mac 139609 bytes_out 0 139609 bytes_in 0 139609 station_ip 37.129.120.27 139609 port 364 139609 unique_id port 139613 username vanila 139613 mac 139613 bytes_out 9126082 139613 bytes_in 3155524 139613 station_ip 83.122.212.113 139613 port 371 139613 unique_id port 139613 remote_ip 10.8.0.178 139614 username aminvpn 139614 mac 139614 bytes_out 466943 139614 bytes_in 5934113 139614 station_ip 5.120.23.60 139614 port 366 139614 unique_id port 139614 remote_ip 10.8.0.14 139616 username aminvpn 139616 mac 139616 bytes_out 0 139616 bytes_in 0 139616 station_ip 5.120.23.60 139616 port 366 139616 unique_id port 139616 remote_ip 10.8.0.14 139617 username aminvpn 139617 mac 139617 bytes_out 0 139617 bytes_in 0 139617 station_ip 37.129.174.83 139617 port 371 139617 unique_id port 139617 remote_ip 10.8.0.14 139624 username aminvpn 139624 mac 139624 bytes_out 0 139624 bytes_in 0 139624 station_ip 37.129.174.83 139601 station_ip 37.129.120.27 139601 port 372 139601 unique_id port 139606 username barzegar 139606 mac 139606 bytes_out 2642 139606 bytes_in 4951 139606 station_ip 5.119.120.215 139606 port 368 139606 unique_id port 139606 remote_ip 10.8.0.234 139607 username hashtadani3 139607 kill_reason Maximum number of concurrent logins reached 139607 mac 139607 bytes_out 0 139607 bytes_in 0 139607 station_ip 37.129.120.27 139607 port 374 139607 unique_id port 139608 username rasoul56 139608 kill_reason Relative expiration date has reached 139608 mac 139608 bytes_out 0 139608 bytes_in 0 139608 station_ip 83.123.106.126 139608 port 374 139608 unique_id port 139610 username hashtadani3 139610 kill_reason Maximum check online fails reached 139610 mac 139610 bytes_out 0 139610 bytes_in 0 139610 station_ip 37.129.120.27 139610 port 368 139610 unique_id port 139611 username sabaghnezhad 139611 mac 139611 bytes_out 56206 139611 bytes_in 51980 139611 station_ip 95.64.11.239 139611 port 366 139611 unique_id port 139611 remote_ip 10.8.0.186 139618 username aminvpn 139618 mac 139618 bytes_out 0 139618 bytes_in 0 139618 station_ip 5.120.23.60 139618 port 366 139618 unique_id port 139618 remote_ip 10.8.0.14 139621 username hosseine 139621 mac 139621 bytes_out 0 139621 bytes_in 0 139621 station_ip 83.122.71.104 139621 port 346 139621 unique_id port 139622 username aminvpn 139622 mac 139622 bytes_out 0 139622 bytes_in 0 139622 station_ip 5.120.23.60 139622 port 366 139622 unique_id port 139622 remote_ip 10.8.0.14 139628 username kalantary 139628 mac 139628 bytes_out 473876 139628 bytes_in 1905551 139628 station_ip 83.123.84.249 139628 port 374 139628 unique_id port 139628 remote_ip 10.8.0.98 139629 username mahdiyehalizadeh 139629 mac 139629 bytes_out 1221094 139629 bytes_in 23025619 139629 station_ip 113.203.67.36 139629 port 371 139629 unique_id port 139629 remote_ip 10.8.0.82 139630 username kordestani 139630 mac 139630 bytes_out 108213 139630 bytes_in 1582381 139630 station_ip 151.235.88.162 139630 port 373 139630 unique_id port 139630 remote_ip 10.8.0.134 139632 username amirabbas 139632 unique_id port 139632 terminate_cause User-Request 139632 bytes_out 9830724 139632 bytes_in 210445444 139632 station_ip 37.27.28.218 139632 port 15730646 139632 nas_port_type Virtual 139632 remote_ip 5.5.5.182 139633 username aminvpn 139633 mac 139633 bytes_out 636612 139633 bytes_in 3815848 139633 station_ip 37.129.174.83 139633 port 346 139633 unique_id port 139633 remote_ip 10.8.0.14 139634 username aminvpn 139634 mac 139634 bytes_out 0 139634 bytes_in 0 139634 station_ip 5.120.23.60 139634 port 371 139634 unique_id port 139634 remote_ip 10.8.0.14 139637 username aminvpn 139637 mac 139637 bytes_out 0 139637 bytes_in 0 139637 station_ip 37.129.174.83 139637 port 346 139637 unique_id port 139637 remote_ip 10.8.0.14 139639 username aminvpn 139639 mac 139639 bytes_out 0 139639 bytes_in 0 139639 station_ip 37.129.174.83 139639 port 346 139639 unique_id port 139639 remote_ip 10.8.0.14 139641 username kordestani 139641 mac 139641 bytes_out 87124 139641 bytes_in 1146618 139641 station_ip 151.235.88.162 139641 port 212 139641 unique_id port 139641 remote_ip 10.8.1.98 139642 username aminvpn 139642 mac 139642 bytes_out 0 139642 bytes_in 0 139642 station_ip 37.129.174.83 139642 port 346 139642 unique_id port 139642 remote_ip 10.8.0.14 139644 username aminvpn 139644 mac 139644 bytes_out 0 139644 bytes_in 0 139644 station_ip 5.120.23.60 139624 port 346 139624 unique_id port 139624 remote_ip 10.8.0.14 139625 username aminvpn 139625 mac 139625 bytes_out 0 139625 bytes_in 0 139625 station_ip 5.120.23.60 139625 port 371 139625 unique_id port 139625 remote_ip 10.8.0.14 139631 username barzegar 139631 mac 139631 bytes_out 0 139631 bytes_in 0 139631 station_ip 5.119.120.215 139631 port 212 139631 unique_id port 139631 remote_ip 10.8.1.174 139643 username alirezazadeh 139643 unique_id port 139643 terminate_cause Lost-Carrier 139643 bytes_out 1447889 139643 bytes_in 7014374 139643 station_ip 151.238.246.169 139643 port 15730642 139643 nas_port_type Virtual 139643 remote_ip 5.5.5.218 139645 username aminvpn 139645 mac 139645 bytes_out 0 139645 bytes_in 0 139645 station_ip 37.129.174.83 139645 port 346 139645 unique_id port 139645 remote_ip 10.8.0.14 139646 username aminvpn 139646 mac 139646 bytes_out 0 139646 bytes_in 0 139646 station_ip 5.120.23.60 139646 port 373 139646 unique_id port 139646 remote_ip 10.8.0.14 139647 username aminvpn 139647 mac 139647 bytes_out 0 139647 bytes_in 0 139647 station_ip 37.129.174.83 139647 port 374 139647 unique_id port 139647 remote_ip 10.8.0.14 139648 username aminvpn 139648 mac 139648 bytes_out 0 139648 bytes_in 0 139648 station_ip 5.120.23.60 139648 port 373 139648 unique_id port 139648 remote_ip 10.8.0.14 139650 username aminvpn 139650 mac 139650 bytes_out 0 139650 bytes_in 0 139650 station_ip 5.120.23.60 139650 port 373 139650 unique_id port 139650 remote_ip 10.8.0.14 139653 username barzegar 139653 kill_reason Another user logged on this global unique id 139653 mac 139653 bytes_out 0 139653 bytes_in 0 139653 station_ip 5.119.120.215 139653 port 371 139653 unique_id port 139653 remote_ip 10.8.0.234 139654 username aminvpn 139654 mac 139654 bytes_out 0 139654 bytes_in 0 139654 station_ip 37.129.174.83 139654 port 374 139654 unique_id port 139654 remote_ip 10.8.0.14 139655 username aminvpn 139655 mac 139655 bytes_out 0 139655 bytes_in 0 139655 station_ip 5.120.23.60 139655 port 373 139655 unique_id port 139655 remote_ip 10.8.0.14 139658 username aminvpn 139658 mac 139658 bytes_out 0 139658 bytes_in 0 139658 station_ip 5.120.23.60 139658 port 373 139658 unique_id port 139658 remote_ip 10.8.0.14 139663 username amir 139663 mac 139663 bytes_out 0 139663 bytes_in 0 139663 station_ip 46.225.210.77 139663 port 376 139663 unique_id port 139663 remote_ip 10.8.0.50 139671 username barzegar 139671 kill_reason Another user logged on this global unique id 139671 mac 139671 bytes_out 0 139671 bytes_in 0 139671 station_ip 5.119.120.215 139671 port 371 139671 unique_id port 139672 username sedighe 139672 mac 139672 bytes_out 0 139672 bytes_in 0 139672 station_ip 83.123.60.15 139672 port 346 139672 unique_id port 139672 remote_ip 10.8.0.146 139674 username sabaghnezhad 139674 mac 139674 bytes_out 21380 139674 bytes_in 21390 139674 station_ip 95.64.18.113 139674 port 215 139674 unique_id port 139674 remote_ip 10.8.1.130 139675 username barzegar 139675 mac 139675 bytes_out 0 139675 bytes_in 0 139675 station_ip 5.119.120.215 139675 port 371 139675 unique_id port 139676 username aminvpn 139676 mac 139676 bytes_out 0 139676 bytes_in 0 139676 station_ip 5.120.23.60 139676 port 371 139676 unique_id port 139676 remote_ip 10.8.0.14 139680 username barzegar 139680 mac 139680 bytes_out 0 139680 bytes_in 0 139680 station_ip 5.119.120.215 139680 port 371 139626 station_ip 5.120.44.172 139626 port 15730648 139626 nas_port_type Virtual 139626 remote_ip 5.5.5.255 139627 username kordestani 139627 mac 139627 bytes_out 437261 139627 bytes_in 5541661 139627 station_ip 151.235.88.162 139627 port 373 139627 unique_id port 139627 remote_ip 10.8.0.134 139635 username aminvpn 139635 mac 139635 bytes_out 0 139635 bytes_in 0 139635 station_ip 37.129.174.83 139635 port 346 139635 unique_id port 139635 remote_ip 10.8.0.14 139636 username aminvpn 139636 mac 139636 bytes_out 0 139636 bytes_in 0 139636 station_ip 5.120.23.60 139636 port 371 139636 unique_id port 139636 remote_ip 10.8.0.14 139638 username aminvpn 139638 mac 139638 bytes_out 0 139638 bytes_in 0 139638 station_ip 5.120.23.60 139638 port 373 139638 unique_id port 139638 remote_ip 10.8.0.14 139640 username aminvpn 139640 mac 139640 bytes_out 0 139640 bytes_in 0 139640 station_ip 5.120.23.60 139640 port 373 139640 unique_id port 139640 remote_ip 10.8.0.14 139656 username kordestani 139656 mac 139656 bytes_out 13663 139656 bytes_in 12963 139656 station_ip 151.235.88.162 139656 port 212 139656 unique_id port 139656 remote_ip 10.8.1.98 139657 username aminvpn 139657 mac 139657 bytes_out 0 139657 bytes_in 0 139657 station_ip 37.129.174.83 139657 port 374 139657 unique_id port 139657 remote_ip 10.8.0.14 139659 username aminvpn 139659 mac 139659 bytes_out 0 139659 bytes_in 0 139659 station_ip 37.129.174.83 139659 port 374 139659 unique_id port 139659 remote_ip 10.8.0.14 139665 username sabaghnezhad 139665 mac 139665 bytes_out 299192 139665 bytes_in 359193 139665 station_ip 95.64.11.239 139665 port 375 139665 unique_id port 139665 remote_ip 10.8.0.186 139666 username mahdiyehalizadeh 139666 mac 139666 bytes_out 0 139666 bytes_in 0 139666 station_ip 113.203.67.36 139666 port 374 139666 unique_id port 139666 remote_ip 10.8.0.82 139670 username aminvpn 139670 mac 139670 bytes_out 0 139670 bytes_in 0 139670 station_ip 37.129.174.83 139670 port 374 139670 unique_id port 139670 remote_ip 10.8.0.14 139673 username kalantary 139673 mac 139673 bytes_out 0 139673 bytes_in 0 139673 station_ip 83.123.66.9 139673 port 373 139673 unique_id port 139673 remote_ip 10.8.0.98 139678 username aminvpn 139678 mac 139678 bytes_out 0 139678 bytes_in 0 139678 station_ip 5.120.23.60 139678 port 371 139678 unique_id port 139678 remote_ip 10.8.0.14 139679 username barzegar 139679 kill_reason Maximum check online fails reached 139679 mac 139679 bytes_out 0 139679 bytes_in 0 139679 station_ip 5.119.120.215 139679 port 375 139679 unique_id port 139684 username barzegar 139684 mac 139684 bytes_out 0 139684 bytes_in 0 139684 station_ip 5.119.120.215 139684 port 378 139684 unique_id port 139684 remote_ip 10.8.0.234 139688 username kalantary 139688 mac 139688 bytes_out 462755 139688 bytes_in 4303182 139688 station_ip 83.123.1.253 139688 port 346 139688 unique_id port 139688 remote_ip 10.8.0.98 139690 username vanila 139690 mac 139690 bytes_out 0 139690 bytes_in 0 139690 station_ip 83.122.212.113 139690 port 343 139690 unique_id port 139690 remote_ip 10.8.0.178 139692 username barzegar 139692 mac 139692 bytes_out 0 139692 bytes_in 0 139692 station_ip 5.119.120.215 139692 port 215 139692 unique_id port 139692 remote_ip 10.8.1.174 139695 username malekpoir 139695 kill_reason Another user logged on this global unique id 139695 mac 139695 bytes_out 0 139695 bytes_in 0 139695 station_ip 5.119.41.192 139644 port 373 139644 unique_id port 139644 remote_ip 10.8.0.14 139649 username aminvpn 139649 mac 139649 bytes_out 0 139649 bytes_in 0 139649 station_ip 37.129.174.83 139649 port 374 139649 unique_id port 139649 remote_ip 10.8.0.14 139651 username aminvpn 139651 mac 139651 bytes_out 0 139651 bytes_in 0 139651 station_ip 37.129.174.83 139651 port 374 139651 unique_id port 139651 remote_ip 10.8.0.14 139652 username aminvpn 139652 mac 139652 bytes_out 0 139652 bytes_in 0 139652 station_ip 5.120.23.60 139652 port 373 139652 unique_id port 139652 remote_ip 10.8.0.14 139660 username aminvpn 139660 mac 139660 bytes_out 189470 139660 bytes_in 2680188 139660 station_ip 5.120.23.60 139660 port 373 139660 unique_id port 139660 remote_ip 10.8.0.14 139661 username seyedmostafa 139661 mac 139661 bytes_out 0 139661 bytes_in 0 139661 station_ip 5.120.25.194 139661 port 346 139661 unique_id port 139661 remote_ip 10.8.0.26 139662 username kalantary 139662 mac 139662 bytes_out 0 139662 bytes_in 0 139662 station_ip 83.123.66.9 139662 port 373 139662 unique_id port 139662 remote_ip 10.8.0.98 139664 username barzegar 139664 kill_reason Another user logged on this global unique id 139664 mac 139664 bytes_out 0 139664 bytes_in 0 139664 station_ip 5.119.120.215 139664 port 371 139664 unique_id port 139667 username aminvpn 139667 mac 139667 bytes_out 0 139667 bytes_in 0 139667 station_ip 37.129.174.83 139667 port 346 139667 unique_id port 139667 remote_ip 10.8.0.14 139668 username aminvpn 139668 mac 139668 bytes_out 0 139668 bytes_in 0 139668 station_ip 5.120.23.60 139668 port 374 139668 unique_id port 139668 remote_ip 10.8.0.14 139669 username sabaghnezhad 139669 mac 139669 bytes_out 0 139669 bytes_in 0 139669 station_ip 95.64.18.113 139669 port 373 139669 unique_id port 139669 remote_ip 10.8.0.186 139677 username kordestani 139677 mac 139677 bytes_out 12908 139677 bytes_in 19154 139677 station_ip 151.235.88.162 139677 port 212 139677 unique_id port 139677 remote_ip 10.8.1.98 139681 username hamidsalari 139681 mac 139681 bytes_out 4634196 139681 bytes_in 42362657 139681 station_ip 5.119.200.40 139681 port 343 139681 unique_id port 139681 remote_ip 10.8.0.222 139683 username kordestani 139683 mac 139683 bytes_out 0 139683 bytes_in 0 139683 station_ip 151.235.88.162 139683 port 212 139683 unique_id port 139683 remote_ip 10.8.1.98 139686 username godarzi 139686 mac 139686 bytes_out 948795 139686 bytes_in 13191101 139686 station_ip 5.120.159.109 139686 port 343 139686 unique_id port 139686 remote_ip 10.8.0.174 139687 username aminvpn 139687 mac 139687 bytes_out 0 139687 bytes_in 0 139687 station_ip 5.120.23.60 139687 port 373 139687 unique_id port 139687 remote_ip 10.8.0.14 139689 username moradi 139689 mac 139689 bytes_out 0 139689 bytes_in 0 139689 station_ip 46.225.214.99 139689 port 371 139689 unique_id port 139689 remote_ip 10.8.0.250 139694 username mosi 139694 mac 139694 bytes_out 8602 139694 bytes_in 6845 139694 station_ip 151.235.75.185 139694 port 212 139694 unique_id port 139694 remote_ip 10.8.1.86 139703 username alikomsari 139703 mac 139703 bytes_out 47971 139703 bytes_in 116268 139703 station_ip 5.119.7.51 139703 port 346 139703 unique_id port 139703 remote_ip 10.8.0.70 139704 username barzegar 139704 mac 139704 bytes_out 0 139704 bytes_in 0 139704 station_ip 5.119.120.215 139704 port 216 139704 unique_id port 139704 remote_ip 10.8.1.174 139680 unique_id port 139680 remote_ip 10.8.0.234 139682 username godarzi 139682 mac 139682 bytes_out 2467479 139682 bytes_in 21245946 139682 station_ip 5.120.159.109 139682 port 346 139682 unique_id port 139682 remote_ip 10.8.0.174 139685 username amir 139685 mac 139685 bytes_out 1358738 139685 bytes_in 10369604 139685 station_ip 46.225.210.77 139685 port 373 139685 unique_id port 139685 remote_ip 10.8.0.50 139691 username mosi 139691 mac 139691 bytes_out 8638367 139691 bytes_in 44710096 139691 station_ip 151.235.75.185 139691 port 353 139691 unique_id port 139691 remote_ip 10.8.0.138 139693 username mosi 139693 kill_reason Maximum check online fails reached 139693 mac 139693 bytes_out 0 139693 bytes_in 0 139693 station_ip 37.156.156.241 139693 port 343 139693 unique_id port 139697 username aminvpn 139697 mac 139697 bytes_out 0 139697 bytes_in 0 139697 station_ip 5.120.23.60 139697 port 373 139697 unique_id port 139697 remote_ip 10.8.0.14 139699 username meysam 139699 mac 139699 bytes_out 0 139699 bytes_in 0 139699 station_ip 188.159.254.137 139699 port 353 139699 unique_id port 139699 remote_ip 10.8.0.110 139700 username barzegar 139700 mac 139700 bytes_out 0 139700 bytes_in 0 139700 station_ip 5.119.120.215 139700 port 215 139700 unique_id port 139700 remote_ip 10.8.1.174 139706 username amir 139706 mac 139706 bytes_out 0 139706 bytes_in 0 139706 station_ip 46.225.210.77 139706 port 346 139706 unique_id port 139706 remote_ip 10.8.0.50 139714 username amir 139714 mac 139714 bytes_out 0 139714 bytes_in 0 139714 station_ip 46.225.210.77 139714 port 371 139714 unique_id port 139714 remote_ip 10.8.0.50 139716 username mosi 139716 mac 139716 bytes_out 445283 139716 bytes_in 2902653 139716 station_ip 151.235.75.185 139716 port 212 139716 unique_id port 139716 remote_ip 10.8.1.86 139720 username naeimeh 139720 mac 139720 bytes_out 1247884 139720 bytes_in 11471324 139720 station_ip 37.129.65.86 139720 port 216 139720 unique_id port 139720 remote_ip 10.8.1.206 139724 username malekpoir 139724 mac 139724 bytes_out 0 139724 bytes_in 0 139724 station_ip 5.119.41.192 139724 port 349 139724 unique_id port 139725 username mahdiyehalizadeh 139725 mac 139725 bytes_out 859693 139725 bytes_in 13713894 139725 station_ip 83.122.185.198 139725 port 371 139725 unique_id port 139725 remote_ip 10.8.0.82 139728 username mohammadjavad 139728 mac 139728 bytes_out 0 139728 bytes_in 0 139728 station_ip 83.122.82.106 139728 port 366 139728 unique_id port 139728 remote_ip 10.8.0.142 139729 username naeimeh 139729 mac 139729 bytes_out 579146 139729 bytes_in 5004996 139729 station_ip 37.129.65.86 139729 port 212 139729 unique_id port 139729 remote_ip 10.8.1.206 139731 username moradi 139731 kill_reason Another user logged on this global unique id 139731 mac 139731 bytes_out 0 139731 bytes_in 0 139731 station_ip 83.122.188.67 139731 port 346 139731 unique_id port 139735 username barzegar 139735 mac 139735 bytes_out 783693 139735 bytes_in 4567265 139735 station_ip 5.119.120.215 139735 port 374 139735 unique_id port 139735 remote_ip 10.8.0.234 139736 username hashtadani3 139736 kill_reason Another user logged on this global unique id 139736 mac 139736 bytes_out 0 139736 bytes_in 0 139736 station_ip 37.129.86.243 139736 port 349 139736 unique_id port 139736 remote_ip 10.8.0.154 139738 username moradi 139738 kill_reason Another user logged on this global unique id 139738 mac 139738 bytes_out 0 139738 bytes_in 0 139695 port 349 139695 unique_id port 139695 remote_ip 10.8.0.58 139696 username kalantary 139696 mac 139696 bytes_out 184828 139696 bytes_in 1849240 139696 station_ip 83.123.1.253 139696 port 346 139696 unique_id port 139696 remote_ip 10.8.0.98 139698 username amir 139698 mac 139698 bytes_out 0 139698 bytes_in 0 139698 station_ip 46.225.210.77 139698 port 371 139698 unique_id port 139698 remote_ip 10.8.0.50 139701 username avaanna 139701 mac 139701 bytes_out 997830 139701 bytes_in 10453770 139701 station_ip 113.203.93.220 139701 port 374 139701 unique_id port 139701 remote_ip 10.8.0.94 139702 username kalantary 139702 mac 139702 bytes_out 0 139702 bytes_in 0 139702 station_ip 83.123.1.253 139702 port 346 139702 unique_id port 139702 remote_ip 10.8.0.98 139709 username avaanna 139709 mac 139709 bytes_out 112812 139709 bytes_in 664490 139709 station_ip 113.203.93.220 139709 port 215 139709 unique_id port 139709 remote_ip 10.8.1.46 139710 username mahdiyehalizadeh 139710 mac 139710 bytes_out 0 139710 bytes_in 0 139710 station_ip 83.122.185.198 139710 port 353 139710 unique_id port 139710 remote_ip 10.8.0.82 139712 username barzegar 139712 mac 139712 bytes_out 0 139712 bytes_in 0 139712 station_ip 5.119.120.215 139712 port 373 139712 unique_id port 139712 remote_ip 10.8.0.234 139717 username mosi 139717 kill_reason Another user logged on this global unique id 139717 mac 139717 bytes_out 0 139717 bytes_in 0 139717 station_ip 151.235.75.185 139717 port 373 139717 unique_id port 139717 remote_ip 10.8.0.138 139718 username moradi 139718 kill_reason Another user logged on this global unique id 139718 mac 139718 bytes_out 0 139718 bytes_in 0 139718 station_ip 83.122.188.67 139718 port 346 139718 unique_id port 139718 remote_ip 10.8.0.250 139719 username amirabbas 139719 unique_id port 139719 terminate_cause User-Request 139719 bytes_out 1710607 139719 bytes_in 15741133 139719 station_ip 37.27.28.218 139719 port 15730649 139719 nas_port_type Virtual 139719 remote_ip 5.5.5.255 139722 username kalantary 139722 mac 139722 bytes_out 0 139722 bytes_in 0 139722 station_ip 83.123.18.213 139722 port 353 139722 unique_id port 139722 remote_ip 10.8.0.98 139726 username moradi 139726 kill_reason Another user logged on this global unique id 139726 mac 139726 bytes_out 0 139726 bytes_in 0 139726 station_ip 83.122.188.67 139726 port 346 139726 unique_id port 139733 username forozandeh1 139733 mac 139733 bytes_out 0 139733 bytes_in 0 139733 station_ip 83.123.134.2 139733 port 353 139733 unique_id port 139733 remote_ip 10.8.0.130 139737 username barzegar 139737 mac 139737 bytes_out 0 139737 bytes_in 0 139737 station_ip 5.119.120.215 139737 port 216 139737 unique_id port 139737 remote_ip 10.8.1.174 139741 username hashtadani3 139741 kill_reason Another user logged on this global unique id 139741 mac 139741 bytes_out 0 139741 bytes_in 0 139741 station_ip 37.129.86.243 139741 port 349 139741 unique_id port 139745 username amir 139745 mac 139745 bytes_out 0 139745 bytes_in 0 139745 station_ip 46.225.210.77 139745 port 358 139745 unique_id port 139745 remote_ip 10.8.0.50 139746 username moradi 139746 mac 139746 bytes_out 0 139746 bytes_in 0 139746 station_ip 83.122.188.67 139746 port 346 139746 unique_id port 139748 username amir 139748 mac 139748 bytes_out 0 139748 bytes_in 0 139748 station_ip 46.225.210.77 139748 port 218 139748 unique_id port 139748 remote_ip 10.8.1.22 139749 username barzegar 139749 mac 139749 bytes_out 20290 139705 username khalili 139705 kill_reason Another user logged on this global unique id 139705 mac 139705 bytes_out 0 139705 bytes_in 0 139705 station_ip 5.119.71.25 139705 port 358 139705 unique_id port 139705 remote_ip 10.8.0.86 139707 username aminvpn 139707 mac 139707 bytes_out 0 139707 bytes_in 0 139707 station_ip 5.120.23.60 139707 port 346 139707 unique_id port 139707 remote_ip 10.8.0.14 139708 username meysam 139708 mac 139708 bytes_out 0 139708 bytes_in 0 139708 station_ip 188.159.254.137 139708 port 371 139708 unique_id port 139708 remote_ip 10.8.0.110 139711 username barzegar 139711 mac 139711 bytes_out 0 139711 bytes_in 0 139711 station_ip 5.119.120.215 139711 port 371 139711 unique_id port 139711 remote_ip 10.8.0.234 139713 username aminvpn 139713 mac 139713 bytes_out 0 139713 bytes_in 0 139713 station_ip 5.120.23.60 139713 port 374 139713 unique_id port 139713 remote_ip 10.8.0.14 139715 username khalili 139715 kill_reason Another user logged on this global unique id 139715 mac 139715 bytes_out 0 139715 bytes_in 0 139715 station_ip 5.119.71.25 139715 port 358 139715 unique_id port 139721 username mosi 139721 kill_reason Another user logged on this global unique id 139721 mac 139721 bytes_out 0 139721 bytes_in 0 139721 station_ip 151.235.75.185 139721 port 373 139721 unique_id port 139723 username aminvpn 139723 mac 139723 bytes_out 0 139723 bytes_in 0 139723 station_ip 5.120.23.60 139723 port 379 139723 unique_id port 139723 remote_ip 10.8.0.14 139727 username kalantary 139727 mac 139727 bytes_out 481604 139727 bytes_in 3619167 139727 station_ip 83.123.18.213 139727 port 353 139727 unique_id port 139727 remote_ip 10.8.0.98 139730 username khalili 139730 mac 139730 bytes_out 0 139730 bytes_in 0 139730 station_ip 5.119.71.25 139730 port 358 139730 unique_id port 139732 username aminvpn 139732 mac 139732 bytes_out 0 139732 bytes_in 0 139732 station_ip 5.120.23.60 139732 port 349 139732 unique_id port 139732 remote_ip 10.8.0.14 139734 username amir 139734 mac 139734 bytes_out 742064 139734 bytes_in 1115546 139734 station_ip 46.225.210.77 139734 port 379 139734 unique_id port 139734 remote_ip 10.8.0.50 139739 username aminvpn 139739 mac 139739 bytes_out 0 139739 bytes_in 0 139739 station_ip 5.120.23.60 139739 port 353 139739 unique_id port 139739 remote_ip 10.8.0.14 139740 username malekpoir 139740 mac 139740 bytes_out 0 139740 bytes_in 0 139740 station_ip 5.119.41.192 139740 port 380 139740 unique_id port 139740 remote_ip 10.8.0.58 139744 username mosi 139744 kill_reason Another user logged on this global unique id 139744 mac 139744 bytes_out 0 139744 bytes_in 0 139744 station_ip 151.235.75.185 139744 port 373 139744 unique_id port 139747 username amir 139747 kill_reason Maximum check online fails reached 139747 mac 139747 bytes_out 0 139747 bytes_in 0 139747 station_ip 46.225.210.77 139747 port 353 139747 unique_id port 139750 username meysam 139750 kill_reason Another user logged on this global unique id 139750 mac 139750 bytes_out 0 139750 bytes_in 0 139750 station_ip 188.159.254.137 139750 port 217 139750 unique_id port 139750 remote_ip 10.8.1.34 139751 username aminvpn 139751 mac 139751 bytes_out 0 139751 bytes_in 0 139751 station_ip 5.120.23.60 139751 port 371 139751 unique_id port 139751 remote_ip 10.8.0.14 139753 username barzegar 139753 mac 139753 bytes_out 6276 139753 bytes_in 8365 139753 station_ip 5.119.120.215 139753 port 358 139753 unique_id port 139738 station_ip 83.122.188.67 139738 port 346 139738 unique_id port 139742 username aminvpn 139742 mac 139742 bytes_out 0 139742 bytes_in 0 139742 station_ip 83.122.41.30 139742 port 353 139742 unique_id port 139742 remote_ip 10.8.0.14 139743 username kalantary 139743 mac 139743 bytes_out 0 139743 bytes_in 0 139743 station_ip 83.123.69.225 139743 port 371 139743 unique_id port 139743 remote_ip 10.8.0.98 139757 username amir 139757 mac 139757 bytes_out 0 139757 bytes_in 0 139757 station_ip 46.225.210.77 139757 port 346 139757 unique_id port 139757 remote_ip 10.8.0.50 139760 username barzegar 139760 mac 139760 bytes_out 5960 139760 bytes_in 18889 139760 station_ip 5.119.120.215 139760 port 216 139760 unique_id port 139760 remote_ip 10.8.1.174 139763 username kalantary 139763 mac 139763 bytes_out 0 139763 bytes_in 0 139763 station_ip 83.123.47.133 139763 port 358 139763 unique_id port 139763 remote_ip 10.8.0.98 139766 username aminvpn 139766 mac 139766 bytes_out 0 139766 bytes_in 0 139766 station_ip 5.120.23.60 139766 port 358 139766 unique_id port 139766 remote_ip 10.8.0.14 139767 username forozandeh1 139767 mac 139767 bytes_out 981584 139767 bytes_in 9436436 139767 station_ip 37.129.1.71 139767 port 374 139767 unique_id port 139767 remote_ip 10.8.0.130 139768 username mohammadmahdi 139768 kill_reason Another user logged on this global unique id 139768 mac 139768 bytes_out 0 139768 bytes_in 0 139768 station_ip 5.120.29.146 139768 port 371 139768 unique_id port 139768 remote_ip 10.8.0.54 139774 username amir 139774 mac 139774 bytes_out 0 139774 bytes_in 0 139774 station_ip 46.225.210.77 139774 port 374 139774 unique_id port 139774 remote_ip 10.8.0.50 139776 username barzegar 139776 mac 139776 bytes_out 0 139776 bytes_in 0 139776 station_ip 5.119.120.215 139776 port 216 139776 unique_id port 139776 remote_ip 10.8.1.174 139777 username kordestani 139777 mac 139777 bytes_out 300070 139777 bytes_in 3850499 139777 station_ip 37.129.249.244 139777 port 378 139777 unique_id port 139777 remote_ip 10.8.0.134 139780 username meysam 139780 mac 139780 bytes_out 0 139780 bytes_in 0 139780 station_ip 188.159.254.137 139780 port 217 139780 unique_id port 139785 username hashtadani3 139785 mac 139785 bytes_out 0 139785 bytes_in 0 139785 station_ip 37.129.86.243 139785 port 349 139785 unique_id port 139790 username naeimeh 139790 mac 139790 bytes_out 0 139790 bytes_in 0 139790 station_ip 37.129.160.77 139790 port 215 139790 unique_id port 139790 remote_ip 10.8.1.206 139794 username kalantary 139794 kill_reason Another user logged on this global unique id 139794 mac 139794 bytes_out 0 139794 bytes_in 0 139794 station_ip 83.123.47.133 139794 port 380 139794 unique_id port 139794 remote_ip 10.8.0.98 139798 username hashtadani3 139798 mac 139798 bytes_out 0 139798 bytes_in 0 139798 station_ip 37.129.86.243 139798 port 346 139798 unique_id port 139798 remote_ip 10.8.0.154 139799 username irannezhad 139799 mac 139799 bytes_out 624474 139799 bytes_in 4831958 139799 station_ip 83.123.105.180 139799 port 216 139799 unique_id port 139799 remote_ip 10.8.1.134 139801 username moradi 139801 kill_reason Another user logged on this global unique id 139801 mac 139801 bytes_out 0 139801 bytes_in 0 139801 station_ip 83.122.255.235 139801 port 349 139801 unique_id port 139801 remote_ip 10.8.0.250 139802 username kalantary 139802 mac 139802 bytes_out 0 139802 bytes_in 0 139802 station_ip 83.123.47.133 139749 bytes_in 24240 139749 station_ip 5.119.120.215 139749 port 216 139749 unique_id port 139749 remote_ip 10.8.1.174 139752 username avaanna 139752 mac 139752 bytes_out 0 139752 bytes_in 0 139752 station_ip 113.203.93.220 139752 port 215 139752 unique_id port 139752 remote_ip 10.8.1.46 139755 username godarzi 139755 kill_reason Another user logged on this global unique id 139755 mac 139755 bytes_out 0 139755 bytes_in 0 139755 station_ip 5.202.62.33 139755 port 378 139755 unique_id port 139755 remote_ip 10.8.0.174 139762 username godarzi 139762 mac 139762 bytes_out 0 139762 bytes_in 0 139762 station_ip 5.202.62.33 139762 port 378 139762 unique_id port 139764 username vanila 139764 mac 139764 bytes_out 0 139764 bytes_in 0 139764 station_ip 83.122.212.113 139764 port 379 139764 unique_id port 139764 remote_ip 10.8.0.178 139765 username hashtadani3 139765 kill_reason Another user logged on this global unique id 139765 mac 139765 bytes_out 0 139765 bytes_in 0 139765 station_ip 37.129.86.243 139765 port 349 139765 unique_id port 139771 username aminvpn 139771 mac 139771 bytes_out 0 139771 bytes_in 0 139771 station_ip 5.120.23.60 139771 port 378 139771 unique_id port 139771 remote_ip 10.8.0.14 139772 username barzegar 139772 mac 139772 bytes_out 0 139772 bytes_in 0 139772 station_ip 5.119.120.215 139772 port 216 139772 unique_id port 139772 remote_ip 10.8.1.174 139781 username sekonji3 139781 mac 139781 bytes_out 0 139781 bytes_in 0 139781 station_ip 83.122.61.79 139781 port 381 139781 unique_id port 139781 remote_ip 10.8.0.6 139782 username aminvpn 139782 mac 139782 bytes_out 0 139782 bytes_in 0 139782 station_ip 5.120.23.60 139782 port 381 139782 unique_id port 139782 remote_ip 10.8.0.14 139788 username barzegar 139788 mac 139788 bytes_out 0 139788 bytes_in 0 139788 station_ip 5.119.120.215 139788 port 216 139788 unique_id port 139788 remote_ip 10.8.1.174 139789 username mohammadjavad 139789 mac 139789 bytes_out 1141718 139789 bytes_in 11756768 139789 station_ip 83.123.139.254 139789 port 379 139789 unique_id port 139789 remote_ip 10.8.0.142 139791 username hashtadani3 139791 mac 139791 bytes_out 0 139791 bytes_in 0 139791 station_ip 37.129.86.243 139791 port 346 139791 unique_id port 139791 remote_ip 10.8.0.154 139792 username mirzaei 139792 mac 139792 bytes_out 0 139792 bytes_in 0 139792 station_ip 5.120.72.122 139792 port 315 139792 unique_id port 139793 username malekpoir 139793 mac 139793 bytes_out 0 139793 bytes_in 0 139793 station_ip 5.119.41.192 139793 port 366 139793 unique_id port 139793 remote_ip 10.8.0.58 139800 username hashtadani3 139800 mac 139800 bytes_out 0 139800 bytes_in 0 139800 station_ip 37.129.86.243 139800 port 346 139800 unique_id port 139800 remote_ip 10.8.0.154 139814 username houshang 139814 kill_reason Another user logged on this global unique id 139814 mac 139814 bytes_out 0 139814 bytes_in 0 139814 station_ip 5.120.169.195 139814 port 378 139814 unique_id port 139814 remote_ip 10.8.0.22 139815 username malekpoir 139815 mac 139815 bytes_out 0 139815 bytes_in 0 139815 station_ip 5.119.41.192 139815 port 366 139815 unique_id port 139815 remote_ip 10.8.0.58 139817 username barzegar 139817 mac 139817 bytes_out 0 139817 bytes_in 0 139817 station_ip 5.119.120.215 139817 port 366 139817 unique_id port 139817 remote_ip 10.8.0.234 139825 username aminvpn 139825 mac 139825 bytes_out 0 139825 bytes_in 0 139825 station_ip 5.120.23.60 139753 remote_ip 10.8.0.234 139754 username saeed9658 139754 mac 139754 bytes_out 40877 139754 bytes_in 39873 139754 station_ip 5.120.32.38 139754 port 358 139754 unique_id port 139754 remote_ip 10.8.0.62 139756 username amir 139756 mac 139756 bytes_out 121926 139756 bytes_in 378303 139756 station_ip 46.225.210.77 139756 port 346 139756 unique_id port 139756 remote_ip 10.8.0.50 139758 username barzegar 139758 mac 139758 bytes_out 58742 139758 bytes_in 675272 139758 station_ip 5.119.120.215 139758 port 216 139758 unique_id port 139758 remote_ip 10.8.1.174 139759 username vanila 139759 mac 139759 bytes_out 0 139759 bytes_in 0 139759 station_ip 83.122.212.113 139759 port 346 139759 unique_id port 139759 remote_ip 10.8.0.178 139761 username hashtadani3 139761 kill_reason Another user logged on this global unique id 139761 mac 139761 bytes_out 0 139761 bytes_in 0 139761 station_ip 37.129.86.243 139761 port 349 139761 unique_id port 139769 username hosseine 139769 kill_reason Another user logged on this global unique id 139769 mac 139769 bytes_out 0 139769 bytes_in 0 139769 station_ip 83.122.71.104 139769 port 377 139769 unique_id port 139769 remote_ip 10.8.0.238 139770 username mosi 139770 kill_reason Another user logged on this global unique id 139770 mac 139770 bytes_out 0 139770 bytes_in 0 139770 station_ip 151.235.75.185 139770 port 373 139770 unique_id port 139773 username mohammadmahdi 139773 kill_reason Another user logged on this global unique id 139773 mac 139773 bytes_out 0 139773 bytes_in 0 139773 station_ip 5.120.29.146 139773 port 371 139773 unique_id port 139775 username kalantary 139775 mac 139775 bytes_out 965646 139775 bytes_in 5380665 139775 station_ip 83.123.47.133 139775 port 358 139775 unique_id port 139775 remote_ip 10.8.0.98 139778 username hosseine 139778 kill_reason Another user logged on this global unique id 139778 mac 139778 bytes_out 0 139778 bytes_in 0 139778 station_ip 83.122.71.104 139778 port 377 139778 unique_id port 139779 username barzegar 139779 mac 139779 bytes_out 0 139779 bytes_in 0 139779 station_ip 5.119.120.215 139779 port 216 139779 unique_id port 139779 remote_ip 10.8.1.174 139783 username yaghobi 139783 kill_reason Another user logged on this global unique id 139783 mac 139783 bytes_out 0 139783 bytes_in 0 139783 station_ip 37.129.92.233 139783 port 346 139783 unique_id port 139783 remote_ip 10.8.0.198 139784 username yaghobi 139784 mac 139784 bytes_out 0 139784 bytes_in 0 139784 station_ip 37.129.92.233 139784 port 346 139784 unique_id port 139786 username irannezhad 139786 mac 139786 bytes_out 1342608 139786 bytes_in 20761729 139786 station_ip 83.123.105.180 139786 port 378 139786 unique_id port 139786 remote_ip 10.8.0.182 139787 username irannezhad 139787 mac 139787 bytes_out 0 139787 bytes_in 0 139787 station_ip 83.123.105.180 139787 port 349 139787 unique_id port 139787 remote_ip 10.8.0.182 139795 username hashtadani3 139795 mac 139795 bytes_out 32393 139795 bytes_in 46116 139795 station_ip 37.129.86.243 139795 port 346 139795 unique_id port 139795 remote_ip 10.8.0.154 139796 username hashtadani3 139796 mac 139796 bytes_out 0 139796 bytes_in 0 139796 station_ip 37.129.86.243 139796 port 346 139796 unique_id port 139796 remote_ip 10.8.0.154 139797 username mostafa_es78 139797 kill_reason Maximum check online fails reached 139797 unique_id port 139797 bytes_out 103475 139797 bytes_in 386785 139797 station_ip 5.119.217.65 139797 port 15730652 139797 nas_port_type Virtual 139797 remote_ip 5.5.5.254 139805 username aminvpn 139805 mac 139802 port 380 139802 unique_id port 139803 username irannezhad 139803 mac 139803 bytes_out 0 139803 bytes_in 0 139803 station_ip 83.123.105.180 139803 port 379 139803 unique_id port 139803 remote_ip 10.8.0.182 139804 username irannezhad 139804 mac 139804 bytes_out 0 139804 bytes_in 0 139804 station_ip 83.123.105.180 139804 port 379 139804 unique_id port 139804 remote_ip 10.8.0.182 139806 username barzegar 139806 mac 139806 bytes_out 0 139806 bytes_in 0 139806 station_ip 5.119.120.215 139806 port 215 139806 unique_id port 139806 remote_ip 10.8.1.174 139809 username hashtadani3 139809 mac 139809 bytes_out 0 139809 bytes_in 0 139809 station_ip 37.129.86.243 139809 port 346 139809 unique_id port 139809 remote_ip 10.8.0.154 139810 username moradi 139810 kill_reason Another user logged on this global unique id 139810 mac 139810 bytes_out 0 139810 bytes_in 0 139810 station_ip 83.122.255.235 139810 port 349 139810 unique_id port 139811 username hashtadani3 139811 mac 139811 bytes_out 2270 139811 bytes_in 4547 139811 station_ip 37.129.86.243 139811 port 346 139811 unique_id port 139811 remote_ip 10.8.0.154 139816 username hashtadani3 139816 mac 139816 bytes_out 0 139816 bytes_in 0 139816 station_ip 37.129.86.243 139816 port 346 139816 unique_id port 139816 remote_ip 10.8.0.154 139820 username amir 139820 kill_reason Another user logged on this global unique id 139820 mac 139820 bytes_out 0 139820 bytes_in 0 139820 station_ip 46.225.210.77 139820 port 374 139820 unique_id port 139820 remote_ip 10.8.0.50 139823 username hashtadani3 139823 mac 139823 bytes_out 0 139823 bytes_in 0 139823 station_ip 37.129.86.243 139823 port 346 139823 unique_id port 139823 remote_ip 10.8.0.154 139824 username aminvpn 139824 mac 139824 bytes_out 0 139824 bytes_in 0 139824 station_ip 5.120.23.60 139824 port 346 139824 unique_id port 139824 remote_ip 10.8.0.14 139827 username hashtadani3 139827 mac 139827 bytes_out 2535 139827 bytes_in 4812 139827 station_ip 37.129.86.243 139827 port 366 139827 unique_id port 139827 remote_ip 10.8.0.154 139829 username mosi 139829 mac 139829 bytes_out 0 139829 bytes_in 0 139829 station_ip 151.235.75.185 139829 port 373 139829 unique_id port 139832 username amin.saeedi 139832 unique_id port 139832 terminate_cause Lost-Carrier 139832 bytes_out 26148702 139832 bytes_in 853680096 139832 station_ip 31.56.159.23 139832 port 15730651 139832 nas_port_type Virtual 139832 remote_ip 5.5.5.194 139835 username moradi 139835 kill_reason Another user logged on this global unique id 139835 mac 139835 bytes_out 0 139835 bytes_in 0 139835 station_ip 83.122.255.235 139835 port 349 139835 unique_id port 139838 username moradi 139838 mac 139838 bytes_out 0 139838 bytes_in 0 139838 station_ip 83.122.255.235 139838 port 349 139838 unique_id port 139845 username amin.saeedi 139845 unique_id port 139845 terminate_cause User-Request 139845 bytes_out 286284 139845 bytes_in 4668496 139845 station_ip 31.56.113.1 139845 port 15730653 139845 nas_port_type Virtual 139845 remote_ip 5.5.5.252 139852 username mohammadjavad 139852 kill_reason Another user logged on this global unique id 139852 mac 139852 bytes_out 0 139852 bytes_in 0 139852 station_ip 37.129.178.49 139852 port 380 139852 unique_id port 139852 remote_ip 10.8.0.142 139853 username mosi 139853 mac 139853 bytes_out 200913 139853 bytes_in 649978 139853 station_ip 37.137.11.40 139853 port 379 139853 unique_id port 139853 remote_ip 10.8.0.138 139854 username kalantary 139854 mac 139805 bytes_out 0 139805 bytes_in 0 139805 station_ip 5.120.23.60 139805 port 379 139805 unique_id port 139805 remote_ip 10.8.0.14 139807 username hashtadani3 139807 mac 139807 bytes_out 0 139807 bytes_in 0 139807 station_ip 37.129.86.243 139807 port 346 139807 unique_id port 139807 remote_ip 10.8.0.154 139808 username hashtadani3 139808 mac 139808 bytes_out 0 139808 bytes_in 0 139808 station_ip 37.129.86.243 139808 port 346 139808 unique_id port 139808 remote_ip 10.8.0.154 139812 username barzegar 139812 mac 139812 bytes_out 2585 139812 bytes_in 4686 139812 station_ip 5.119.120.215 139812 port 380 139812 unique_id port 139812 remote_ip 10.8.0.234 139813 username hashtadani3 139813 mac 139813 bytes_out 0 139813 bytes_in 0 139813 station_ip 37.129.86.243 139813 port 346 139813 unique_id port 139813 remote_ip 10.8.0.154 139818 username hashtadani3 139818 mac 139818 bytes_out 0 139818 bytes_in 0 139818 station_ip 37.129.86.243 139818 port 346 139818 unique_id port 139818 remote_ip 10.8.0.154 139819 username mohammadmahdi 139819 kill_reason Another user logged on this global unique id 139819 mac 139819 bytes_out 0 139819 bytes_in 0 139819 station_ip 5.120.29.146 139819 port 371 139819 unique_id port 139821 username hashtadani3 139821 mac 139821 bytes_out 0 139821 bytes_in 0 139821 station_ip 37.129.86.243 139821 port 346 139821 unique_id port 139821 remote_ip 10.8.0.154 139822 username kalantary 139822 mac 139822 bytes_out 1652898 139822 bytes_in 25669660 139822 station_ip 83.123.47.133 139822 port 379 139822 unique_id port 139822 remote_ip 10.8.0.98 139826 username saeed9658 139826 mac 139826 bytes_out 1772371 139826 bytes_in 21649105 139826 station_ip 5.120.170.230 139826 port 380 139826 unique_id port 139826 remote_ip 10.8.0.62 139828 username moradi 139828 kill_reason Another user logged on this global unique id 139828 mac 139828 bytes_out 0 139828 bytes_in 0 139828 station_ip 83.122.255.235 139828 port 349 139828 unique_id port 139830 username hashtadani3 139830 mac 139830 bytes_out 0 139830 bytes_in 0 139830 station_ip 37.129.86.243 139830 port 366 139830 unique_id port 139830 remote_ip 10.8.0.154 139836 username hashtadani3 139836 mac 139836 bytes_out 0 139836 bytes_in 0 139836 station_ip 37.129.86.243 139836 port 366 139836 unique_id port 139836 remote_ip 10.8.0.154 139837 username hasanahmadi 139837 mac 139837 bytes_out 20492 139837 bytes_in 107600 139837 station_ip 113.203.118.112 139837 port 373 139837 unique_id port 139837 remote_ip 10.8.0.126 139847 username hasanahmadi 139847 mac 139847 bytes_out 0 139847 bytes_in 0 139847 station_ip 113.203.71.230 139847 port 380 139847 unique_id port 139850 username amir 139850 mac 139850 bytes_out 0 139850 bytes_in 0 139850 station_ip 46.225.210.77 139850 port 374 139850 unique_id port 139851 username hasanahmadi 139851 mac 139851 bytes_out 0 139851 bytes_in 0 139851 station_ip 83.122.152.82 139851 port 381 139851 unique_id port 139851 remote_ip 10.8.0.126 139859 username hashtadani3 139859 kill_reason Another user logged on this global unique id 139859 mac 139859 bytes_out 0 139859 bytes_in 0 139859 station_ip 37.129.86.243 139859 port 349 139859 unique_id port 139859 remote_ip 10.8.0.154 139868 username aminvpn 139868 mac 139868 bytes_out 0 139868 bytes_in 0 139868 station_ip 5.120.23.60 139868 port 346 139868 unique_id port 139868 remote_ip 10.8.0.14 139870 username barzegar 139870 mac 139870 bytes_out 0 139825 port 379 139825 unique_id port 139825 remote_ip 10.8.0.14 139831 username hashtadani3 139831 mac 139831 bytes_out 0 139831 bytes_in 0 139831 station_ip 37.129.86.243 139831 port 366 139831 unique_id port 139831 remote_ip 10.8.0.154 139833 username hashtadani3 139833 mac 139833 bytes_out 2482 139833 bytes_in 4759 139833 station_ip 37.129.86.243 139833 port 366 139833 unique_id port 139833 remote_ip 10.8.0.154 139834 username houshang 139834 kill_reason Another user logged on this global unique id 139834 mac 139834 bytes_out 0 139834 bytes_in 0 139834 station_ip 5.120.169.195 139834 port 378 139834 unique_id port 139839 username hashtadani3 139839 mac 139839 bytes_out 2535 139839 bytes_in 4812 139839 station_ip 37.129.86.243 139839 port 366 139839 unique_id port 139839 remote_ip 10.8.0.154 139840 username malekpoir 139840 mac 139840 bytes_out 0 139840 bytes_in 0 139840 station_ip 5.119.41.192 139840 port 381 139840 unique_id port 139840 remote_ip 10.8.0.58 139841 username hashtadani3 139841 mac 139841 bytes_out 0 139841 bytes_in 0 139841 station_ip 37.129.86.243 139841 port 349 139841 unique_id port 139841 remote_ip 10.8.0.154 139842 username mohammadmahdi 139842 kill_reason Another user logged on this global unique id 139842 mac 139842 bytes_out 0 139842 bytes_in 0 139842 station_ip 5.120.29.146 139842 port 371 139842 unique_id port 139843 username rostami 139843 mac 139843 bytes_out 0 139843 bytes_in 0 139843 station_ip 5.120.102.41 139843 port 366 139843 unique_id port 139843 remote_ip 10.8.0.206 139844 username hasanahmadi 139844 kill_reason Another user logged on this global unique id 139844 mac 139844 bytes_out 0 139844 bytes_in 0 139844 station_ip 113.203.71.230 139844 port 380 139844 unique_id port 139844 remote_ip 10.8.0.126 139846 username aminvpn 139846 mac 139846 bytes_out 0 139846 bytes_in 0 139846 station_ip 5.120.23.60 139846 port 366 139846 unique_id port 139846 remote_ip 10.8.0.14 139848 username aminvpn 139848 mac 139848 bytes_out 1644 139848 bytes_in 5036 139848 station_ip 5.120.23.60 139848 port 366 139848 unique_id port 139848 remote_ip 10.8.0.14 139849 username forozandeh1 139849 mac 139849 bytes_out 7680328 139849 bytes_in 14853391 139849 station_ip 83.123.190.145 139849 port 358 139849 unique_id port 139849 remote_ip 10.8.0.130 139855 username mohammadmahdi 139855 kill_reason Another user logged on this global unique id 139855 mac 139855 bytes_out 0 139855 bytes_in 0 139855 station_ip 5.120.29.146 139855 port 371 139855 unique_id port 139856 username mohammadmahdi 139856 mac 139856 bytes_out 0 139856 bytes_in 0 139856 station_ip 5.120.29.146 139856 port 371 139856 unique_id port 139858 username aminvpn 139858 mac 139858 bytes_out 0 139858 bytes_in 0 139858 station_ip 5.120.23.60 139858 port 215 139858 unique_id port 139858 remote_ip 10.8.1.6 139860 username mirzaei 139860 mac 139860 bytes_out 72563 139860 bytes_in 153205 139860 station_ip 5.120.72.122 139860 port 315 139860 unique_id port 139860 remote_ip 10.8.0.66 139862 username mohammadmahdi 139862 mac 139862 bytes_out 91012 139862 bytes_in 291746 139862 station_ip 5.120.29.146 139862 port 346 139862 unique_id port 139862 remote_ip 10.8.0.54 139864 username mirzaei 139864 mac 139864 bytes_out 0 139864 bytes_in 0 139864 station_ip 5.112.175.146 139864 port 215 139864 unique_id port 139864 remote_ip 10.8.1.30 139866 username mostafa_es78 139866 unique_id port 139866 terminate_cause User-Request 139866 bytes_out 157445 139854 bytes_out 1804964 139854 bytes_in 18622214 139854 station_ip 83.123.47.133 139854 port 346 139854 unique_id port 139854 remote_ip 10.8.0.98 139857 username houshang 139857 kill_reason Another user logged on this global unique id 139857 mac 139857 bytes_out 0 139857 bytes_in 0 139857 station_ip 5.120.169.195 139857 port 378 139857 unique_id port 139861 username barzegar 139861 mac 139861 bytes_out 0 139861 bytes_in 0 139861 station_ip 5.120.16.37 139861 port 358 139861 unique_id port 139861 remote_ip 10.8.0.234 139863 username mirzaei 139863 mac 139863 bytes_out 19915 139863 bytes_in 59271 139863 station_ip 5.112.175.146 139863 port 215 139863 unique_id port 139863 remote_ip 10.8.1.30 139865 username amir 139865 mac 139865 bytes_out 142771 139865 bytes_in 917157 139865 station_ip 46.225.210.77 139865 port 346 139865 unique_id port 139865 remote_ip 10.8.0.50 139869 username kalantary 139869 mac 139869 bytes_out 652955 139869 bytes_in 4550405 139869 station_ip 83.123.47.133 139869 port 315 139869 unique_id port 139869 remote_ip 10.8.0.98 139873 username alihosseini1 139873 mac 139873 bytes_out 0 139873 bytes_in 0 139873 station_ip 5.120.50.196 139873 port 216 139873 unique_id port 139873 remote_ip 10.8.1.106 139876 username aminvpn 139876 mac 139876 bytes_out 158125 139876 bytes_in 209435 139876 station_ip 83.122.41.30 139876 port 346 139876 unique_id port 139876 remote_ip 10.8.0.14 139877 username aminvpn 139877 mac 139877 bytes_out 0 139877 bytes_in 0 139877 station_ip 5.120.23.60 139877 port 358 139877 unique_id port 139877 remote_ip 10.8.0.14 139878 username mirzaei 139878 mac 139878 bytes_out 11579 139878 bytes_in 18676 139878 station_ip 5.114.195.232 139878 port 358 139878 unique_id port 139878 remote_ip 10.8.0.66 139879 username forozandeh1 139879 mac 139879 bytes_out 932991 139879 bytes_in 7846872 139879 station_ip 113.203.81.231 139879 port 315 139879 unique_id port 139879 remote_ip 10.8.0.130 139882 username houshang 139882 mac 139882 bytes_out 0 139882 bytes_in 0 139882 station_ip 5.120.169.195 139882 port 378 139882 unique_id port 139887 username Mahin 139887 mac 139887 bytes_out 92933 139887 bytes_in 112180 139887 station_ip 5.120.183.163 139887 port 315 139887 unique_id port 139887 remote_ip 10.8.0.158 139888 username amir 139888 mac 139888 bytes_out 0 139888 bytes_in 0 139888 station_ip 46.225.210.77 139888 port 346 139888 unique_id port 139888 remote_ip 10.8.0.50 139894 username mohammadjavad 139894 mac 139894 bytes_out 0 139894 bytes_in 0 139894 station_ip 37.129.178.49 139894 port 380 139894 unique_id port 139900 username alihosseini1 139900 mac 139900 bytes_out 0 139900 bytes_in 0 139900 station_ip 5.120.50.196 139900 port 366 139900 unique_id port 139900 remote_ip 10.8.0.166 139904 username sabaghnezhad 139904 mac 139904 bytes_out 0 139904 bytes_in 0 139904 station_ip 5.217.127.224 139904 port 212 139904 unique_id port 139904 remote_ip 10.8.1.130 139907 username barzegar 139907 mac 139907 bytes_out 0 139907 bytes_in 0 139907 station_ip 5.120.166.247 139907 port 367 139907 unique_id port 139907 remote_ip 10.8.0.234 139909 username kalantary 139909 mac 139909 bytes_out 128214 139909 bytes_in 408500 139909 station_ip 83.123.120.217 139909 port 366 139909 unique_id port 139909 remote_ip 10.8.0.98 139913 username mirzaei 139913 mac 139913 bytes_out 33706 139913 bytes_in 36349 139913 station_ip 5.113.82.184 139913 port 367 139866 bytes_in 7408611 139866 station_ip 5.119.217.65 139866 port 15730654 139866 nas_port_type Virtual 139866 remote_ip 5.5.5.254 139867 username aminvpn 139867 mac 139867 bytes_out 0 139867 bytes_in 0 139867 station_ip 83.122.41.30 139867 port 366 139867 unique_id port 139867 remote_ip 10.8.0.14 139874 username amir 139874 mac 139874 bytes_out 0 139874 bytes_in 0 139874 station_ip 46.225.210.77 139874 port 358 139874 unique_id port 139874 remote_ip 10.8.0.50 139883 username alihosseini1 139883 mac 139883 bytes_out 0 139883 bytes_in 0 139883 station_ip 5.120.50.196 139883 port 216 139883 unique_id port 139883 remote_ip 10.8.1.106 139884 username alihosseini1 139884 mac 139884 bytes_out 0 139884 bytes_in 0 139884 station_ip 5.120.50.196 139884 port 216 139884 unique_id port 139884 remote_ip 10.8.1.106 139885 username mirzaei 139885 mac 139885 bytes_out 0 139885 bytes_in 0 139885 station_ip 5.114.195.232 139885 port 215 139885 unique_id port 139885 remote_ip 10.8.1.30 139889 username hashtadani3 139889 kill_reason Another user logged on this global unique id 139889 mac 139889 bytes_out 0 139889 bytes_in 0 139889 station_ip 37.129.86.243 139889 port 349 139889 unique_id port 139891 username aminvpn 139891 mac 139891 bytes_out 248590 139891 bytes_in 2590686 139891 station_ip 83.122.41.30 139891 port 366 139891 unique_id port 139891 remote_ip 10.8.0.14 139893 username alihosseini1 139893 mac 139893 bytes_out 0 139893 bytes_in 0 139893 station_ip 5.120.50.196 139893 port 346 139893 unique_id port 139893 remote_ip 10.8.0.166 139895 username aminvpn 139895 unique_id port 139895 terminate_cause Lost-Carrier 139895 bytes_out 474282 139895 bytes_in 9342827 139895 station_ip 151.238.228.57 139895 port 15730658 139895 nas_port_type Virtual 139895 remote_ip 5.5.5.199 139896 username godarzi 139896 mac 139896 bytes_out 344869 139896 bytes_in 3402421 139896 station_ip 5.120.159.109 139896 port 366 139896 unique_id port 139896 remote_ip 10.8.0.174 139898 username barzegar 139898 mac 139898 bytes_out 0 139898 bytes_in 0 139898 station_ip 5.120.166.247 139898 port 215 139898 unique_id port 139898 remote_ip 10.8.1.174 139902 username aminvpn 139902 mac 139902 bytes_out 0 139902 bytes_in 0 139902 station_ip 5.120.23.60 139902 port 367 139902 unique_id port 139902 remote_ip 10.8.0.14 139905 username mirzaei 139905 mac 139905 bytes_out 0 139905 bytes_in 0 139905 station_ip 5.119.41.180 139905 port 215 139905 unique_id port 139905 remote_ip 10.8.1.30 139912 username sabaghnezhad 139912 mac 139912 bytes_out 0 139912 bytes_in 0 139912 station_ip 5.217.127.224 139912 port 212 139912 unique_id port 139912 remote_ip 10.8.1.130 139914 username kordestani 139914 mac 139914 bytes_out 1020706 139914 bytes_in 14635207 139914 station_ip 151.235.92.141 139914 port 371 139914 unique_id port 139914 remote_ip 10.8.0.134 139915 username khademi 139915 kill_reason Another user logged on this global unique id 139915 mac 139915 bytes_out 0 139915 bytes_in 0 139915 station_ip 113.203.70.160 139915 port 326 139915 unique_id port 139916 username aminvpn 139916 unique_id port 139916 terminate_cause Lost-Carrier 139916 bytes_out 26501 139916 bytes_in 59644 139916 station_ip 151.238.228.57 139916 port 15730661 139916 nas_port_type Virtual 139916 remote_ip 5.5.5.208 139919 username hashtadani3 139919 kill_reason Another user logged on this global unique id 139919 mac 139919 bytes_out 0 139919 bytes_in 0 139919 station_ip 37.129.86.243 139919 port 349 139919 unique_id port 139870 bytes_in 0 139870 station_ip 5.119.9.245 139870 port 216 139870 unique_id port 139870 remote_ip 10.8.1.174 139871 username mirzaei 139871 kill_reason Maximum check online fails reached 139871 mac 139871 bytes_out 0 139871 bytes_in 0 139871 station_ip 5.112.175.146 139871 port 215 139871 unique_id port 139871 remote_ip 10.8.1.30 139872 username barzegar 139872 mac 139872 bytes_out 2310 139872 bytes_in 4770 139872 station_ip 5.119.9.245 139872 port 358 139872 unique_id port 139872 remote_ip 10.8.0.234 139875 username mostafa_es78 139875 unique_id port 139875 terminate_cause Lost-Carrier 139875 bytes_out 50060 139875 bytes_in 190925 139875 station_ip 5.119.217.65 139875 port 15730655 139875 nas_port_type Virtual 139875 remote_ip 5.5.5.254 139880 username Mahin 139880 mac 139880 bytes_out 0 139880 bytes_in 0 139880 station_ip 5.120.183.163 139880 port 367 139880 unique_id port 139880 remote_ip 10.8.0.158 139881 username kalantary 139881 mac 139881 bytes_out 0 139881 bytes_in 0 139881 station_ip 83.123.62.153 139881 port 371 139881 unique_id port 139881 remote_ip 10.8.0.98 139886 username vanila 139886 mac 139886 bytes_out 9082616 139886 bytes_in 19289598 139886 station_ip 83.122.221.153 139886 port 346 139886 unique_id port 139886 remote_ip 10.8.0.178 139890 username sekonji3 139890 mac 139890 bytes_out 14759 139890 bytes_in 23147 139890 station_ip 83.122.46.147 139890 port 315 139890 unique_id port 139890 remote_ip 10.8.0.6 139892 username aminvpn 139892 mac 139892 bytes_out 0 139892 bytes_in 0 139892 station_ip 5.120.23.60 139892 port 315 139892 unique_id port 139892 remote_ip 10.8.0.14 139897 username alihosseini1 139897 mac 139897 bytes_out 0 139897 bytes_in 0 139897 station_ip 5.120.50.196 139897 port 346 139897 unique_id port 139897 remote_ip 10.8.0.166 139899 username amir 139899 mac 139899 bytes_out 0 139899 bytes_in 0 139899 station_ip 46.225.210.77 139899 port 346 139899 unique_id port 139899 remote_ip 10.8.0.50 139901 username aminvpn 139901 mac 139901 bytes_out 1223509 139901 bytes_in 26330793 139901 station_ip 83.122.41.30 139901 port 315 139901 unique_id port 139901 remote_ip 10.8.0.14 139903 username alihosseini1 139903 mac 139903 bytes_out 0 139903 bytes_in 0 139903 station_ip 5.120.50.196 139903 port 366 139903 unique_id port 139903 remote_ip 10.8.0.166 139906 username aminvpn 139906 unique_id port 139906 terminate_cause Lost-Carrier 139906 bytes_out 149724 139906 bytes_in 679338 139906 station_ip 151.238.228.57 139906 port 15730660 139906 nas_port_type Virtual 139906 remote_ip 5.5.5.207 139908 username moradi 139908 mac 139908 bytes_out 0 139908 bytes_in 0 139908 station_ip 46.225.214.99 139908 port 346 139908 unique_id port 139908 remote_ip 10.8.0.250 139910 username amir 139910 mac 139910 bytes_out 41425 139910 bytes_in 269158 139910 station_ip 46.225.210.77 139910 port 374 139910 unique_id port 139910 remote_ip 10.8.0.50 139911 username alihosseini1 139911 mac 139911 bytes_out 0 139911 bytes_in 0 139911 station_ip 5.120.50.196 139911 port 215 139911 unique_id port 139911 remote_ip 10.8.1.106 139917 username aminvpn 139917 mac 139917 bytes_out 0 139917 bytes_in 0 139917 station_ip 83.122.41.30 139917 port 315 139917 unique_id port 139917 remote_ip 10.8.0.14 139921 username hamid 139921 mac 139921 bytes_out 2200361 139921 bytes_in 27439380 139921 station_ip 37.129.67.225 139921 port 346 139921 unique_id port 139921 remote_ip 10.8.0.106 139925 username amir 139913 unique_id port 139913 remote_ip 10.8.0.66 139918 username aminvpn 139918 mac 139918 bytes_out 0 139918 bytes_in 0 139918 station_ip 5.120.23.60 139918 port 374 139918 unique_id port 139918 remote_ip 10.8.0.14 139920 username mostafa_es78 139920 unique_id port 139920 terminate_cause Lost-Carrier 139920 bytes_out 198368 139920 bytes_in 2924744 139920 station_ip 5.119.11.227 139920 port 15730659 139920 nas_port_type Virtual 139920 remote_ip 5.5.5.206 139922 username aminvpn 139922 unique_id port 139922 terminate_cause Lost-Carrier 139922 bytes_out 95363 139922 bytes_in 97439 139922 station_ip 151.238.228.57 139922 port 15730662 139922 nas_port_type Virtual 139922 remote_ip 5.5.5.209 139926 username barzegar 139926 mac 139926 bytes_out 0 139926 bytes_in 0 139926 station_ip 5.120.166.247 139926 port 315 139926 unique_id port 139926 remote_ip 10.8.0.234 139930 username aminvpn 139930 mac 139930 bytes_out 0 139930 bytes_in 0 139930 station_ip 151.238.228.57 139930 port 373 139930 unique_id port 139930 remote_ip 10.8.0.14 139935 username aminvpn 139935 mac 139935 bytes_out 0 139935 bytes_in 0 139935 station_ip 151.238.228.57 139935 port 374 139935 unique_id port 139935 remote_ip 10.8.0.14 139938 username meysam 139938 mac 139938 bytes_out 433892 139938 bytes_in 2609667 139938 station_ip 188.159.251.172 139938 port 212 139938 unique_id port 139938 remote_ip 10.8.1.34 139940 username aminvpn 139940 mac 139940 bytes_out 0 139940 bytes_in 0 139940 station_ip 151.238.228.57 139940 port 374 139940 unique_id port 139940 remote_ip 10.8.0.14 139942 username aminvpn 139942 mac 139942 bytes_out 0 139942 bytes_in 0 139942 station_ip 5.120.23.60 139942 port 346 139942 unique_id port 139942 remote_ip 10.8.0.14 139943 username aminvpn 139943 mac 139943 bytes_out 0 139943 bytes_in 0 139943 station_ip 83.122.41.30 139943 port 346 139943 unique_id port 139943 remote_ip 10.8.0.14 139945 username mohammadjavad 139945 mac 139945 bytes_out 0 139945 bytes_in 0 139945 station_ip 37.129.178.49 139945 port 366 139945 unique_id port 139945 remote_ip 10.8.0.142 139947 username aminvpn 139947 mac 139947 bytes_out 0 139947 bytes_in 0 139947 station_ip 83.122.41.30 139947 port 346 139947 unique_id port 139947 remote_ip 10.8.0.14 139954 username khademi 139954 kill_reason Another user logged on this global unique id 139954 mac 139954 bytes_out 0 139954 bytes_in 0 139954 station_ip 113.203.70.160 139954 port 326 139954 unique_id port 139955 username amir 139955 mac 139955 bytes_out 0 139955 bytes_in 0 139955 station_ip 46.225.210.77 139955 port 374 139955 unique_id port 139955 remote_ip 10.8.0.50 139959 username Mahin 139959 mac 139959 bytes_out 988274 139959 bytes_in 8427863 139959 station_ip 5.120.183.163 139959 port 358 139959 unique_id port 139959 remote_ip 10.8.0.158 139962 username aminvpn 139962 mac 139962 bytes_out 0 139962 bytes_in 0 139962 station_ip 83.122.41.30 139962 port 349 139962 unique_id port 139962 remote_ip 10.8.0.14 139964 username bcboard 139964 unique_id port 139964 terminate_cause User-Request 139964 bytes_out 3200312 139964 bytes_in 38002558 139964 station_ip 83.122.127.241 139964 port 15730657 139964 nas_port_type Virtual 139964 remote_ip 5.5.5.167 139966 username aminvpn 139966 mac 139966 bytes_out 0 139966 bytes_in 0 139966 station_ip 83.122.41.30 139966 port 378 139966 unique_id port 139966 remote_ip 10.8.0.14 139968 username hamid 139968 kill_reason Another user logged on this global unique id 139968 mac 139923 username khalili 139923 mac 139923 bytes_out 0 139923 bytes_in 0 139923 station_ip 5.119.71.25 139923 port 373 139923 unique_id port 139923 remote_ip 10.8.0.86 139924 username khalili 139924 mac 139924 bytes_out 5441 139924 bytes_in 9253 139924 station_ip 5.119.71.25 139924 port 373 139924 unique_id port 139924 remote_ip 10.8.0.86 139927 username alihosseini1 139927 mac 139927 bytes_out 0 139927 bytes_in 0 139927 station_ip 5.120.50.196 139927 port 379 139927 unique_id port 139927 remote_ip 10.8.0.166 139928 username aminvpn 139928 mac 139928 bytes_out 0 139928 bytes_in 0 139928 station_ip 83.122.41.30 139928 port 374 139928 unique_id port 139928 remote_ip 10.8.0.14 139929 username hamid 139929 mac 139929 bytes_out 0 139929 bytes_in 0 139929 station_ip 37.129.67.225 139929 port 346 139929 unique_id port 139929 remote_ip 10.8.0.106 139934 username aminvpn 139934 mac 139934 bytes_out 0 139934 bytes_in 0 139934 station_ip 83.122.41.30 139934 port 346 139934 unique_id port 139934 remote_ip 10.8.0.14 139939 username aminvpn 139939 unique_id port 139939 terminate_cause Lost-Carrier 139939 bytes_out 277611 139939 bytes_in 108071 139939 station_ip 151.238.228.57 139939 port 15730663 139939 nas_port_type Virtual 139939 remote_ip 5.5.5.212 139941 username hashtadani3 139941 mac 139941 bytes_out 0 139941 bytes_in 0 139941 station_ip 37.129.86.243 139941 port 349 139941 unique_id port 139946 username houshang 139946 mac 139946 bytes_out 48343 139946 bytes_in 85014 139946 station_ip 5.119.16.151 139946 port 315 139946 unique_id port 139946 remote_ip 10.8.0.22 139949 username aminvpn 139949 mac 139949 bytes_out 51730 139949 bytes_in 93858 139949 station_ip 83.122.41.30 139949 port 346 139949 unique_id port 139949 remote_ip 10.8.0.14 139950 username aminvpn 139950 mac 139950 bytes_out 0 139950 bytes_in 0 139950 station_ip 151.238.228.57 139950 port 366 139950 unique_id port 139950 remote_ip 10.8.0.14 139951 username aminvpn 139951 mac 139951 bytes_out 0 139951 bytes_in 0 139951 station_ip 83.122.41.30 139951 port 346 139951 unique_id port 139951 remote_ip 10.8.0.14 139953 username alihosseini1 139953 mac 139953 bytes_out 0 139953 bytes_in 0 139953 station_ip 5.120.50.196 139953 port 379 139953 unique_id port 139953 remote_ip 10.8.0.166 139961 username aminvpn 139961 mac 139961 bytes_out 0 139961 bytes_in 0 139961 station_ip 151.238.228.57 139961 port 378 139961 unique_id port 139961 remote_ip 10.8.0.14 139965 username aminvpn 139965 mac 139965 bytes_out 0 139965 bytes_in 0 139965 station_ip 151.238.228.57 139965 port 349 139965 unique_id port 139965 remote_ip 10.8.0.14 139970 username aminvpn 139970 mac 139970 bytes_out 0 139970 bytes_in 0 139970 station_ip 151.238.228.57 139970 port 349 139970 unique_id port 139970 remote_ip 10.8.0.14 139972 username aminvpn 139972 mac 139972 bytes_out 0 139972 bytes_in 0 139972 station_ip 5.120.23.60 139972 port 349 139972 unique_id port 139972 remote_ip 10.8.0.14 139973 username aminvpn 139973 mac 139973 bytes_out 0 139973 bytes_in 0 139973 station_ip 151.238.228.57 139973 port 349 139973 unique_id port 139973 remote_ip 10.8.0.14 139974 username aminvpn 139974 mac 139974 bytes_out 0 139974 bytes_in 0 139974 station_ip 37.129.57.105 139974 port 378 139974 unique_id port 139974 remote_ip 10.8.0.14 139977 username mostafa_es78 139977 unique_id port 139977 terminate_cause User-Request 139925 mac 139925 bytes_out 0 139925 bytes_in 0 139925 station_ip 46.225.210.77 139925 port 378 139925 unique_id port 139925 remote_ip 10.8.0.50 139931 username alihosseini1 139931 mac 139931 bytes_out 0 139931 bytes_in 0 139931 station_ip 5.120.50.196 139931 port 373 139931 unique_id port 139931 remote_ip 10.8.0.166 139932 username aminvpn 139932 mac 139932 bytes_out 0 139932 bytes_in 0 139932 station_ip 83.122.41.30 139932 port 346 139932 unique_id port 139932 remote_ip 10.8.0.14 139933 username aminvpn 139933 mac 139933 bytes_out 0 139933 bytes_in 0 139933 station_ip 151.238.228.57 139933 port 373 139933 unique_id port 139933 remote_ip 10.8.0.14 139936 username hamid 139936 mac 139936 bytes_out 167210 139936 bytes_in 744942 139936 station_ip 37.129.67.225 139936 port 215 139936 unique_id port 139936 remote_ip 10.8.1.66 139937 username aminvpn 139937 mac 139937 bytes_out 0 139937 bytes_in 0 139937 station_ip 83.122.41.30 139937 port 346 139937 unique_id port 139937 remote_ip 10.8.0.14 139944 username aminvpn 139944 mac 139944 bytes_out 0 139944 bytes_in 0 139944 station_ip 151.238.228.57 139944 port 349 139944 unique_id port 139944 remote_ip 10.8.0.14 139948 username aminvpn 139948 mac 139948 bytes_out 0 139948 bytes_in 0 139948 station_ip 151.238.228.57 139948 port 315 139948 unique_id port 139948 remote_ip 10.8.0.14 139952 username aminvpn 139952 mac 139952 bytes_out 0 139952 bytes_in 0 139952 station_ip 151.238.228.57 139952 port 374 139952 unique_id port 139952 remote_ip 10.8.0.14 139956 username kalantary 139956 mac 139956 bytes_out 0 139956 bytes_in 0 139956 station_ip 83.123.75.189 139956 port 346 139956 unique_id port 139956 remote_ip 10.8.0.98 139957 username aminvpn 139957 mac 139957 bytes_out 0 139957 bytes_in 0 139957 station_ip 83.122.41.30 139957 port 378 139957 unique_id port 139957 remote_ip 10.8.0.14 139958 username aminvpn 139958 mac 139958 bytes_out 0 139958 bytes_in 0 139958 station_ip 37.129.57.105 139958 port 379 139958 unique_id port 139958 remote_ip 10.8.0.14 139960 username forozandeh1 139960 mac 139960 bytes_out 0 139960 bytes_in 0 139960 station_ip 83.122.181.111 139960 port 349 139960 unique_id port 139960 remote_ip 10.8.0.130 139963 username aminvpn 139963 mac 139963 bytes_out 0 139963 bytes_in 0 139963 station_ip 37.129.57.105 139963 port 358 139963 unique_id port 139963 remote_ip 10.8.0.14 139967 username aminvpn 139967 mac 139967 bytes_out 0 139967 bytes_in 0 139967 station_ip 37.129.57.105 139967 port 349 139967 unique_id port 139967 remote_ip 10.8.0.14 139976 username aminvpn 139976 unique_id port 139976 terminate_cause Lost-Carrier 139976 bytes_out 355788 139976 bytes_in 1538899 139976 station_ip 151.238.228.57 139976 port 15730664 139976 nas_port_type Virtual 139976 remote_ip 5.5.5.253 139981 username aminvpn 139981 mac 139981 bytes_out 0 139981 bytes_in 0 139981 station_ip 151.238.228.57 139981 port 379 139981 unique_id port 139981 remote_ip 10.8.0.14 139984 username hashtadani3 139984 mac 139984 bytes_out 0 139984 bytes_in 0 139984 station_ip 5.202.17.37 139984 port 349 139984 unique_id port 139984 remote_ip 10.8.0.154 139987 username alihosseini1 139987 mac 139987 bytes_out 0 139987 bytes_in 0 139987 station_ip 5.120.50.196 139987 port 379 139987 unique_id port 139987 remote_ip 10.8.0.166 139990 username aminvpn 139990 mac 139990 bytes_out 0 139990 bytes_in 0 139968 bytes_out 0 139968 bytes_in 0 139968 station_ip 37.129.67.225 139968 port 215 139968 unique_id port 139968 remote_ip 10.8.1.66 139969 username aminvpn 139969 mac 139969 bytes_out 0 139969 bytes_in 0 139969 station_ip 5.120.23.60 139969 port 378 139969 unique_id port 139969 remote_ip 10.8.0.14 139971 username aminvpn 139971 mac 139971 bytes_out 0 139971 bytes_in 0 139971 station_ip 37.129.57.105 139971 port 378 139971 unique_id port 139971 remote_ip 10.8.0.14 139975 username aminvpn 139975 mac 139975 bytes_out 0 139975 bytes_in 0 139975 station_ip 151.238.228.57 139975 port 349 139975 unique_id port 139975 remote_ip 10.8.0.14 139978 username aminvpn 139978 mac 139978 bytes_out 0 139978 bytes_in 0 139978 station_ip 37.129.57.105 139978 port 378 139978 unique_id port 139978 remote_ip 10.8.0.14 139980 username hashtadani3 139980 mac 139980 bytes_out 0 139980 bytes_in 0 139980 station_ip 83.122.154.253 139980 port 346 139980 unique_id port 139980 remote_ip 10.8.0.154 139988 username hashtadani3 139988 mac 139988 bytes_out 12500 139988 bytes_in 16945 139988 station_ip 5.202.17.37 139988 port 349 139988 unique_id port 139988 remote_ip 10.8.0.154 139989 username aminvpn 139989 mac 139989 bytes_out 0 139989 bytes_in 0 139989 station_ip 151.238.228.57 139989 port 380 139989 unique_id port 139989 remote_ip 10.8.0.14 139992 username aminvpn 139992 mac 139992 bytes_out 0 139992 bytes_in 0 139992 station_ip 83.122.41.30 139992 port 349 139992 unique_id port 139992 remote_ip 10.8.0.14 139996 username hashtadani3 139996 mac 139996 bytes_out 0 139996 bytes_in 0 139996 station_ip 5.202.17.37 139996 port 349 139996 unique_id port 139996 remote_ip 10.8.0.154 139998 username aminvpn 139998 mac 139998 bytes_out 0 139998 bytes_in 0 139998 station_ip 83.122.41.30 139998 port 379 139998 unique_id port 139998 remote_ip 10.8.0.14 139999 username aminvpn 139999 mac 139999 bytes_out 0 139999 bytes_in 0 139999 station_ip 37.129.57.105 139999 port 346 139999 unique_id port 139999 remote_ip 10.8.0.14 140001 username aminvpn 140001 mac 140001 bytes_out 0 140001 bytes_in 0 140001 station_ip 83.122.41.30 140001 port 366 140001 unique_id port 140001 remote_ip 10.8.0.14 140004 username aminvpn 140004 mac 140004 bytes_out 0 140004 bytes_in 0 140004 station_ip 151.238.228.57 140004 port 366 140004 unique_id port 140004 remote_ip 10.8.0.14 140006 username aminvpn 140006 mac 140006 bytes_out 0 140006 bytes_in 0 140006 station_ip 83.122.41.30 140006 port 379 140006 unique_id port 140006 remote_ip 10.8.0.14 140013 username aminvpn 140013 mac 140013 bytes_out 0 140013 bytes_in 0 140013 station_ip 5.120.23.60 140013 port 379 140013 unique_id port 140013 remote_ip 10.8.0.14 140014 username aminvpn 140014 mac 140014 bytes_out 0 140014 bytes_in 0 140014 station_ip 151.238.228.57 140014 port 381 140014 unique_id port 140014 remote_ip 10.8.0.14 140017 username aminvpn 140017 mac 140017 bytes_out 0 140017 bytes_in 0 140017 station_ip 5.120.23.60 140017 port 382 140017 unique_id port 140017 remote_ip 10.8.0.14 140020 username hashtadani3 140020 kill_reason Maximum check online fails reached 140020 mac 140020 bytes_out 0 140020 bytes_in 0 140020 station_ip 5.202.17.37 140020 port 366 140020 unique_id port 140024 username mostafa_es78 140024 unique_id port 140024 terminate_cause User-Request 140024 bytes_out 106492 140024 bytes_in 1520193 139977 bytes_out 258 139977 bytes_in 172 139977 station_ip 5.120.49.41 139977 port 15730665 139977 nas_port_type Virtual 139977 remote_ip 5.5.5.168 139979 username aminvpn 139979 mac 139979 bytes_out 0 139979 bytes_in 0 139979 station_ip 83.122.41.30 139979 port 349 139979 unique_id port 139979 remote_ip 10.8.0.14 139982 username mostafa_es78 139982 unique_id port 139982 terminate_cause User-Request 139982 bytes_out 258 139982 bytes_in 186 139982 station_ip 5.120.49.41 139982 port 15730666 139982 nas_port_type Virtual 139982 remote_ip 5.5.5.172 139983 username aminvpn 139983 mac 139983 bytes_out 0 139983 bytes_in 0 139983 station_ip 37.129.57.105 139983 port 346 139983 unique_id port 139983 remote_ip 10.8.0.14 139985 username aminvpn 139985 mac 139985 bytes_out 0 139985 bytes_in 0 139985 station_ip 151.238.228.57 139985 port 379 139985 unique_id port 139985 remote_ip 10.8.0.14 139986 username aminvpn 139986 mac 139986 bytes_out 0 139986 bytes_in 0 139986 station_ip 37.129.57.105 139986 port 346 139986 unique_id port 139986 remote_ip 10.8.0.14 139991 username hashtadani3 139991 mac 139991 bytes_out 0 139991 bytes_in 0 139991 station_ip 5.202.17.37 139991 port 346 139991 unique_id port 139991 remote_ip 10.8.0.154 139993 username mostafa_es78 139993 unique_id port 139993 terminate_cause User-Request 139993 bytes_out 272 139993 bytes_in 210 139993 station_ip 5.120.49.41 139993 port 15730667 139993 nas_port_type Virtual 139993 remote_ip 5.5.5.174 139997 username amir 139997 mac 139997 bytes_out 0 139997 bytes_in 0 139997 station_ip 46.225.210.77 139997 port 366 139997 unique_id port 139997 remote_ip 10.8.0.50 140000 username aminvpn 140000 mac 140000 bytes_out 0 140000 bytes_in 0 140000 station_ip 151.238.228.57 140000 port 349 140000 unique_id port 140000 remote_ip 10.8.0.14 140002 username hamid 140002 kill_reason Another user logged on this global unique id 140002 mac 140002 bytes_out 0 140002 bytes_in 0 140002 station_ip 37.129.67.225 140002 port 215 140002 unique_id port 140003 username aminvpn 140003 mac 140003 bytes_out 0 140003 bytes_in 0 140003 station_ip 37.129.57.105 140003 port 349 140003 unique_id port 140003 remote_ip 10.8.0.14 140005 username hashtadani3 140005 kill_reason Maximum check online fails reached 140005 mac 140005 bytes_out 0 140005 bytes_in 0 140005 station_ip 5.202.17.37 140005 port 346 140005 unique_id port 140007 username alipour 140007 kill_reason Another user logged on this global unique id 140007 mac 140007 bytes_out 0 140007 bytes_in 0 140007 station_ip 113.203.112.25 140007 port 371 140007 unique_id port 140007 remote_ip 10.8.0.102 140008 username aminvpn 140008 mac 140008 bytes_out 0 140008 bytes_in 0 140008 station_ip 37.129.57.105 140008 port 366 140008 unique_id port 140008 remote_ip 10.8.0.14 140009 username aminvpn 140009 mac 140009 bytes_out 0 140009 bytes_in 0 140009 station_ip 5.120.23.60 140009 port 379 140009 unique_id port 140009 remote_ip 10.8.0.14 140016 username hashtadani3 140016 kill_reason Maximum number of concurrent logins reached 140016 mac 140016 bytes_out 0 140016 bytes_in 0 140016 station_ip 5.202.17.37 140016 port 379 140016 unique_id port 140018 username aminvpn 140018 mac 140018 bytes_out 0 140018 bytes_in 0 140018 station_ip 151.238.228.57 140018 port 379 140018 unique_id port 140018 remote_ip 10.8.0.14 140027 username barzegar 140027 mac 140027 bytes_out 0 140027 bytes_in 0 140027 station_ip 5.119.230.184 140027 port 379 140027 unique_id port 139990 station_ip 37.129.57.105 139990 port 346 139990 unique_id port 139990 remote_ip 10.8.0.14 139994 username mahdiyehalizadeh 139994 mac 139994 bytes_out 0 139994 bytes_in 0 139994 station_ip 83.122.156.245 139994 port 366 139994 unique_id port 139994 remote_ip 10.8.0.82 139995 username aminvpn 139995 mac 139995 bytes_out 0 139995 bytes_in 0 139995 station_ip 37.129.57.105 139995 port 346 139995 unique_id port 139995 remote_ip 10.8.0.14 140010 username houshang 140010 mac 140010 bytes_out 774808 140010 bytes_in 6623480 140010 station_ip 5.119.16.151 140010 port 378 140010 unique_id port 140010 remote_ip 10.8.0.22 140011 username aminvpn 140011 mac 140011 bytes_out 0 140011 bytes_in 0 140011 station_ip 151.238.228.57 140011 port 380 140011 unique_id port 140011 remote_ip 10.8.0.14 140012 username aminvpn 140012 mac 140012 bytes_out 0 140012 bytes_in 0 140012 station_ip 37.129.57.105 140012 port 378 140012 unique_id port 140012 remote_ip 10.8.0.14 140015 username aminvpn 140015 mac 140015 bytes_out 0 140015 bytes_in 0 140015 station_ip 37.129.57.105 140015 port 379 140015 unique_id port 140015 remote_ip 10.8.0.14 140019 username hashtadani3 140019 kill_reason Maximum check online fails reached 140019 mac 140019 bytes_out 0 140019 bytes_in 0 140019 station_ip 5.202.17.37 140019 port 216 140019 unique_id port 140021 username aminvpn 140021 mac 140021 bytes_out 0 140021 bytes_in 0 140021 station_ip 37.129.57.105 140021 port 383 140021 unique_id port 140021 remote_ip 10.8.0.14 140022 username aminvpn 140022 mac 140022 bytes_out 0 140022 bytes_in 0 140022 station_ip 151.238.228.57 140022 port 379 140022 unique_id port 140022 remote_ip 10.8.0.14 140023 username aminvpn 140023 mac 140023 bytes_out 0 140023 bytes_in 0 140023 station_ip 5.120.23.60 140023 port 383 140023 unique_id port 140023 remote_ip 10.8.0.14 140025 username aminvpn 140025 mac 140025 bytes_out 0 140025 bytes_in 0 140025 station_ip 83.122.41.30 140025 port 384 140025 unique_id port 140025 remote_ip 10.8.0.14 140036 username aminvpn 140036 mac 140036 bytes_out 0 140036 bytes_in 0 140036 station_ip 37.129.57.105 140036 port 383 140036 unique_id port 140036 remote_ip 10.8.0.14 140037 username aminvpn 140037 mac 140037 bytes_out 0 140037 bytes_in 0 140037 station_ip 151.238.228.57 140037 port 380 140037 unique_id port 140037 remote_ip 10.8.0.14 140039 username hamid 140039 kill_reason Another user logged on this global unique id 140039 mac 140039 bytes_out 0 140039 bytes_in 0 140039 station_ip 37.129.67.225 140039 port 215 140039 unique_id port 140046 username barzegar 140046 mac 140046 bytes_out 27506 140046 bytes_in 9633 140046 station_ip 5.119.230.184 140046 port 218 140046 unique_id port 140046 remote_ip 10.8.1.174 140047 username kalantary 140047 mac 140047 bytes_out 0 140047 bytes_in 0 140047 station_ip 83.123.44.229 140047 port 379 140047 unique_id port 140047 remote_ip 10.8.0.98 140050 username moradi 140050 mac 140050 bytes_out 0 140050 bytes_in 0 140050 station_ip 5.202.17.253 140050 port 378 140050 unique_id port 140050 remote_ip 10.8.0.250 140053 username amir 140053 mac 140053 bytes_out 4093235 140053 bytes_in 43659827 140053 station_ip 46.225.210.77 140053 port 349 140053 unique_id port 140053 remote_ip 10.8.0.50 140058 username barzegar 140058 mac 140058 bytes_out 15964 140058 bytes_in 49006 140058 station_ip 5.119.230.184 140058 port 219 140024 station_ip 5.120.81.12 140024 port 15730668 140024 nas_port_type Virtual 140024 remote_ip 5.5.5.187 140026 username alihosseini1 140026 mac 140026 bytes_out 0 140026 bytes_in 0 140026 station_ip 5.120.50.196 140026 port 383 140026 unique_id port 140026 remote_ip 10.8.0.166 140029 username aminvpn 140029 mac 140029 bytes_out 0 140029 bytes_in 0 140029 station_ip 83.122.41.30 140029 port 379 140029 unique_id port 140029 remote_ip 10.8.0.14 140032 username aminvpn 140032 mac 140032 bytes_out 0 140032 bytes_in 0 140032 station_ip 37.129.57.105 140032 port 379 140032 unique_id port 140032 remote_ip 10.8.0.14 140033 username aminvpn 140033 mac 140033 bytes_out 0 140033 bytes_in 0 140033 station_ip 83.122.41.30 140033 port 380 140033 unique_id port 140033 remote_ip 10.8.0.14 140035 username sekonji3 140035 mac 140035 bytes_out 17774 140035 bytes_in 21433 140035 station_ip 83.122.46.147 140035 port 382 140035 unique_id port 140035 remote_ip 10.8.0.6 140038 username aminvpn 140038 mac 140038 bytes_out 0 140038 bytes_in 0 140038 station_ip 83.122.41.30 140038 port 382 140038 unique_id port 140038 remote_ip 10.8.0.14 140044 username sekonji3 140044 mac 140044 bytes_out 0 140044 bytes_in 0 140044 station_ip 83.122.46.147 140044 port 381 140044 unique_id port 140044 remote_ip 10.8.0.6 140048 username Mahin 140048 mac 140048 bytes_out 123146 140048 bytes_in 152397 140048 station_ip 5.119.83.161 140048 port 212 140048 unique_id port 140048 remote_ip 10.8.1.186 140049 username barzegar 140049 mac 140049 bytes_out 19338 140049 bytes_in 34181 140049 station_ip 5.119.230.184 140049 port 218 140049 unique_id port 140049 remote_ip 10.8.1.174 140052 username hamid 140052 mac 140052 bytes_out 0 140052 bytes_in 0 140052 station_ip 37.129.67.225 140052 port 215 140052 unique_id port 140054 username mirzaei 140054 mac 140054 bytes_out 0 140054 bytes_in 0 140054 station_ip 5.119.96.235 140054 port 374 140054 unique_id port 140054 remote_ip 10.8.0.66 140055 username meysam 140055 mac 140055 bytes_out 47193 140055 bytes_in 96295 140055 station_ip 188.159.251.172 140055 port 218 140055 unique_id port 140055 remote_ip 10.8.1.34 140056 username Mahin 140056 mac 140056 bytes_out 450408 140056 bytes_in 10837876 140056 station_ip 5.119.83.161 140056 port 212 140056 unique_id port 140056 remote_ip 10.8.1.186 140057 username mirzaei 140057 mac 140057 bytes_out 0 140057 bytes_in 0 140057 station_ip 5.120.81.163 140057 port 349 140057 unique_id port 140057 remote_ip 10.8.0.66 140059 username houshang 140059 mac 140059 bytes_out 866954 140059 bytes_in 12467480 140059 station_ip 5.119.16.151 140059 port 374 140059 unique_id port 140059 remote_ip 10.8.0.22 140060 username kalantary 140060 mac 140060 bytes_out 0 140060 bytes_in 0 140060 station_ip 83.123.98.133 140060 port 378 140060 unique_id port 140060 remote_ip 10.8.0.98 140062 username hamid 140062 mac 140062 bytes_out 0 140062 bytes_in 0 140062 station_ip 37.129.67.225 140062 port 215 140062 unique_id port 140062 remote_ip 10.8.1.66 140066 username moradi 140066 mac 140066 bytes_out 45581 140066 bytes_in 187480 140066 station_ip 217.172.125.176 140066 port 374 140066 unique_id port 140066 remote_ip 10.8.0.250 140067 username barzegar 140067 mac 140067 bytes_out 2809 140067 bytes_in 5262 140067 station_ip 5.119.230.184 140067 port 215 140067 unique_id port 140067 remote_ip 10.8.1.174 140027 remote_ip 10.8.0.234 140028 username aminvpn 140028 mac 140028 bytes_out 0 140028 bytes_in 0 140028 station_ip 37.129.57.105 140028 port 385 140028 unique_id port 140028 remote_ip 10.8.0.14 140030 username houshang 140030 mac 140030 bytes_out 306842 140030 bytes_in 2367901 140030 station_ip 5.119.16.151 140030 port 380 140030 unique_id port 140030 remote_ip 10.8.0.22 140031 username aminvpn 140031 mac 140031 bytes_out 0 140031 bytes_in 0 140031 station_ip 151.238.228.57 140031 port 383 140031 unique_id port 140031 remote_ip 10.8.0.14 140034 username barzegar 140034 mac 140034 bytes_out 0 140034 bytes_in 0 140034 station_ip 5.119.230.184 140034 port 379 140034 unique_id port 140034 remote_ip 10.8.0.234 140040 username alihosseini1 140040 mac 140040 bytes_out 0 140040 bytes_in 0 140040 station_ip 5.120.50.196 140040 port 217 140040 unique_id port 140040 remote_ip 10.8.1.106 140041 username alipour 140041 kill_reason Another user logged on this global unique id 140041 mac 140041 bytes_out 0 140041 bytes_in 0 140041 station_ip 113.203.112.25 140041 port 371 140041 unique_id port 140042 username aminvpn 140042 unique_id port 140042 terminate_cause Lost-Carrier 140042 bytes_out 6236059 140042 bytes_in 23363470 140042 station_ip 5.233.49.34 140042 port 15730656 140042 nas_port_type Virtual 140042 remote_ip 5.5.5.254 140043 username mohammadjavad 140043 mac 140043 bytes_out 443370 140043 bytes_in 3097332 140043 station_ip 37.129.60.136 140043 port 381 140043 unique_id port 140043 remote_ip 10.8.0.142 140045 username sekonji3 140045 mac 140045 bytes_out 0 140045 bytes_in 0 140045 station_ip 83.122.46.147 140045 port 381 140045 unique_id port 140045 remote_ip 10.8.0.6 140051 username barzegar 140051 mac 140051 bytes_out 0 140051 bytes_in 0 140051 station_ip 5.119.230.184 140051 port 378 140051 unique_id port 140051 remote_ip 10.8.0.234 140061 username khademi 140061 kill_reason Another user logged on this global unique id 140061 mac 140061 bytes_out 0 140061 bytes_in 0 140061 station_ip 113.203.70.160 140061 port 326 140061 unique_id port 140063 username malekpoir 140063 mac 140063 bytes_out 0 140063 bytes_in 0 140063 station_ip 5.119.41.192 140063 port 315 140063 unique_id port 140063 remote_ip 10.8.0.58 140064 username barzegar 140064 mac 140064 bytes_out 0 140064 bytes_in 0 140064 station_ip 5.119.230.184 140064 port 215 140064 unique_id port 140064 remote_ip 10.8.1.174 140069 username aminvpn 140069 unique_id port 140069 terminate_cause Lost-Carrier 140069 bytes_out 1828170 140069 bytes_in 27805098 140069 station_ip 151.238.228.57 140069 port 15730669 140069 nas_port_type Virtual 140069 remote_ip 5.5.5.188 140074 username alihosseini1 140074 mac 140074 bytes_out 0 140074 bytes_in 0 140074 station_ip 5.120.50.196 140074 port 217 140074 unique_id port 140078 username vanila 140078 mac 140078 bytes_out 8198720 140078 bytes_in 1103498 140078 station_ip 83.122.207.253 140078 port 374 140078 unique_id port 140078 remote_ip 10.8.0.178 140082 username barzegar 140082 mac 140082 bytes_out 0 140082 bytes_in 0 140082 station_ip 5.119.230.184 140082 port 378 140082 unique_id port 140082 remote_ip 10.8.0.234 140083 username barzegar 140083 mac 140083 bytes_out 0 140083 bytes_in 0 140083 station_ip 5.119.230.184 140083 port 378 140083 unique_id port 140083 remote_ip 10.8.0.234 140090 username barzegar 140090 mac 140090 bytes_out 0 140090 bytes_in 0 140090 station_ip 5.119.230.184 140090 port 378 140058 unique_id port 140058 remote_ip 10.8.1.174 140065 username aminvpn 140065 mac 140065 bytes_out 269729 140065 bytes_in 891271 140065 station_ip 151.238.228.57 140065 port 380 140065 unique_id port 140065 remote_ip 10.8.0.14 140070 username alihosseini1 140070 kill_reason Another user logged on this global unique id 140070 mac 140070 bytes_out 0 140070 bytes_in 0 140070 station_ip 5.120.50.196 140070 port 217 140070 unique_id port 140070 remote_ip 10.8.1.106 140071 username barzegar 140071 mac 140071 bytes_out 0 140071 bytes_in 0 140071 station_ip 5.119.230.184 140071 port 215 140071 unique_id port 140071 remote_ip 10.8.1.174 140072 username kalantary 140072 mac 140072 bytes_out 0 140072 bytes_in 0 140072 station_ip 83.123.98.133 140072 port 374 140072 unique_id port 140072 remote_ip 10.8.0.98 140075 username barzegar 140075 mac 140075 bytes_out 5218 140075 bytes_in 7867 140075 station_ip 5.119.230.184 140075 port 378 140075 unique_id port 140075 remote_ip 10.8.0.234 140076 username barzegar 140076 mac 140076 bytes_out 0 140076 bytes_in 0 140076 station_ip 5.119.230.184 140076 port 378 140076 unique_id port 140076 remote_ip 10.8.0.234 140077 username barzegar 140077 mac 140077 bytes_out 0 140077 bytes_in 0 140077 station_ip 5.119.230.184 140077 port 378 140077 unique_id port 140077 remote_ip 10.8.0.234 140079 username barzegar 140079 mac 140079 bytes_out 0 140079 bytes_in 0 140079 station_ip 5.119.230.184 140079 port 378 140079 unique_id port 140079 remote_ip 10.8.0.234 140081 username meysam 140081 mac 140081 bytes_out 1718599 140081 bytes_in 36656044 140081 station_ip 188.159.251.172 140081 port 215 140081 unique_id port 140081 remote_ip 10.8.1.34 140085 username mohammadjavad 140085 mac 140085 bytes_out 0 140085 bytes_in 0 140085 station_ip 113.203.109.248 140085 port 349 140085 unique_id port 140085 remote_ip 10.8.0.142 140092 username alipour 140092 kill_reason Another user logged on this global unique id 140092 mac 140092 bytes_out 0 140092 bytes_in 0 140092 station_ip 113.203.112.25 140092 port 371 140092 unique_id port 140097 username hashtadani3 140097 mac 140097 bytes_out 0 140097 bytes_in 0 140097 station_ip 37.129.67.30 140097 port 383 140097 unique_id port 140097 remote_ip 10.8.0.154 140100 username vanila 140100 mac 140100 bytes_out 10319127 140100 bytes_in 36737188 140100 station_ip 83.122.207.253 140100 port 378 140100 unique_id port 140100 remote_ip 10.8.0.178 140106 username hashtadani3 140106 mac 140106 bytes_out 3212406 140106 bytes_in 38752055 140106 station_ip 37.129.67.30 140106 port 217 140106 unique_id port 140106 remote_ip 10.8.1.94 140108 username farhad2 140108 kill_reason Another user logged on this global unique id 140108 mac 140108 bytes_out 7114013 140108 bytes_in 49067851 140108 station_ip 5.120.95.185 140108 port 380 140108 unique_id port 140108 remote_ip 10.8.0.190 140111 username zotaher 140111 kill_reason Another user logged on this global unique id 140111 mac 140111 bytes_out 0 140111 bytes_in 0 140111 station_ip 83.122.250.229 140111 port 374 140111 unique_id port 140111 remote_ip 10.8.0.194 140113 username hashtadani3 140113 mac 140113 bytes_out 0 140113 bytes_in 0 140113 station_ip 37.129.67.30 140113 port 218 140113 unique_id port 140113 remote_ip 10.8.1.94 140115 username hashtadani3 140115 mac 140115 bytes_out 0 140115 bytes_in 0 140115 station_ip 37.129.67.30 140115 port 218 140115 unique_id port 140115 remote_ip 10.8.1.94 140122 username hashtadani3 140122 mac 140068 username barzegar 140068 mac 140068 bytes_out 0 140068 bytes_in 0 140068 station_ip 5.119.230.184 140068 port 215 140068 unique_id port 140068 remote_ip 10.8.1.174 140073 username aminvpn 140073 unique_id port 140073 terminate_cause Lost-Carrier 140073 bytes_out 52546 140073 bytes_in 227224 140073 station_ip 151.238.228.57 140073 port 15730670 140073 nas_port_type Virtual 140073 remote_ip 5.5.5.191 140080 username barzegar 140080 mac 140080 bytes_out 0 140080 bytes_in 0 140080 station_ip 5.119.230.184 140080 port 378 140080 unique_id port 140080 remote_ip 10.8.0.234 140084 username khademi 140084 kill_reason Maximum check online fails reached 140084 mac 140084 bytes_out 0 140084 bytes_in 0 140084 station_ip 113.203.70.160 140084 port 326 140084 unique_id port 140086 username barzegar 140086 mac 140086 bytes_out 4163 140086 bytes_in 6620 140086 station_ip 5.119.230.184 140086 port 378 140086 unique_id port 140086 remote_ip 10.8.0.234 140087 username sekonji3 140087 mac 140087 bytes_out 23275 140087 bytes_in 223759 140087 station_ip 83.122.46.147 140087 port 349 140087 unique_id port 140087 remote_ip 10.8.0.6 140088 username barzegar 140088 mac 140088 bytes_out 0 140088 bytes_in 0 140088 station_ip 5.119.230.184 140088 port 378 140088 unique_id port 140088 remote_ip 10.8.0.234 140089 username barzegar 140089 mac 140089 bytes_out 0 140089 bytes_in 0 140089 station_ip 5.119.230.184 140089 port 378 140089 unique_id port 140089 remote_ip 10.8.0.234 140093 username forozandeh1 140093 mac 140093 bytes_out 0 140093 bytes_in 0 140093 station_ip 37.129.132.92 140093 port 383 140093 unique_id port 140093 remote_ip 10.8.0.130 140095 username Mahin 140095 mac 140095 bytes_out 149664 140095 bytes_in 204698 140095 station_ip 5.119.83.161 140095 port 212 140095 unique_id port 140095 remote_ip 10.8.1.186 140096 username hashtadani3 140096 mac 140096 bytes_out 0 140096 bytes_in 0 140096 station_ip 37.129.67.30 140096 port 383 140096 unique_id port 140096 remote_ip 10.8.0.154 140098 username hashtadani3 140098 kill_reason Maximum check online fails reached 140098 mac 140098 bytes_out 0 140098 bytes_in 0 140098 station_ip 37.129.67.30 140098 port 383 140098 unique_id port 140102 username barzegar 140102 mac 140102 bytes_out 0 140102 bytes_in 0 140102 station_ip 5.119.230.184 140102 port 382 140102 unique_id port 140102 remote_ip 10.8.0.234 140104 username aminvpn 140104 mac 140104 bytes_out 0 140104 bytes_in 0 140104 station_ip 37.129.125.113 140104 port 384 140104 unique_id port 140104 remote_ip 10.8.0.14 140107 username hashtadani3 140107 mac 140107 bytes_out 0 140107 bytes_in 0 140107 station_ip 37.129.67.30 140107 port 218 140107 unique_id port 140107 remote_ip 10.8.1.94 140112 username zotaher 140112 kill_reason Another user logged on this global unique id 140112 mac 140112 bytes_out 0 140112 bytes_in 0 140112 station_ip 83.122.250.229 140112 port 374 140112 unique_id port 140117 username kalantary 140117 mac 140117 bytes_out 30042 140117 bytes_in 30047 140117 station_ip 83.123.71.201 140117 port 382 140117 unique_id port 140117 remote_ip 10.8.0.98 140118 username farhad2 140118 kill_reason Another user logged on this global unique id 140118 mac 140118 bytes_out 0 140118 bytes_in 0 140118 station_ip 5.120.95.185 140118 port 380 140118 unique_id port 140119 username meysam 140119 mac 140119 bytes_out 2437506 140119 bytes_in 41357604 140119 station_ip 188.159.251.183 140119 port 215 140119 unique_id port 140090 unique_id port 140090 remote_ip 10.8.0.234 140091 username godarzi 140091 kill_reason Another user logged on this global unique id 140091 mac 140091 bytes_out 0 140091 bytes_in 0 140091 station_ip 5.120.159.109 140091 port 358 140091 unique_id port 140091 remote_ip 10.8.0.174 140094 username barzegar 140094 mac 140094 bytes_out 0 140094 bytes_in 0 140094 station_ip 5.119.230.184 140094 port 382 140094 unique_id port 140094 remote_ip 10.8.0.234 140099 username hashtadani3 140099 kill_reason Maximum check online fails reached 140099 mac 140099 bytes_out 0 140099 bytes_in 0 140099 station_ip 37.129.67.30 140099 port 326 140099 unique_id port 140101 username kalantary 140101 mac 140101 bytes_out 0 140101 bytes_in 0 140101 station_ip 83.123.71.201 140101 port 386 140101 unique_id port 140101 remote_ip 10.8.0.98 140103 username barzegar 140103 mac 140103 bytes_out 3826 140103 bytes_in 5518 140103 station_ip 5.119.230.184 140103 port 378 140103 unique_id port 140103 remote_ip 10.8.0.234 140105 username barzegar 140105 mac 140105 bytes_out 0 140105 bytes_in 0 140105 station_ip 5.119.230.184 140105 port 378 140105 unique_id port 140105 remote_ip 10.8.0.234 140109 username hashtadani3 140109 mac 140109 bytes_out 0 140109 bytes_in 0 140109 station_ip 37.129.67.30 140109 port 378 140109 unique_id port 140109 remote_ip 10.8.0.154 140110 username barzegar 140110 mac 140110 bytes_out 0 140110 bytes_in 0 140110 station_ip 5.119.230.184 140110 port 218 140110 unique_id port 140110 remote_ip 10.8.1.174 140114 username hashtadani3 140114 kill_reason Maximum check online fails reached 140114 mac 140114 bytes_out 0 140114 bytes_in 0 140114 station_ip 37.129.67.30 140114 port 378 140114 unique_id port 140116 username hashtadani3 140116 mac 140116 bytes_out 0 140116 bytes_in 0 140116 station_ip 37.129.67.30 140116 port 384 140116 unique_id port 140116 remote_ip 10.8.0.154 140121 username kalantary 140121 mac 140121 bytes_out 113139 140121 bytes_in 228380 140121 station_ip 83.123.71.201 140121 port 384 140121 unique_id port 140121 remote_ip 10.8.0.98 140125 username hashtadani3 140125 mac 140125 bytes_out 0 140125 bytes_in 0 140125 station_ip 37.129.67.30 140125 port 384 140125 unique_id port 140125 remote_ip 10.8.0.154 140129 username barzegar 140129 mac 140129 bytes_out 0 140129 bytes_in 0 140129 station_ip 5.119.230.184 140129 port 384 140129 unique_id port 140129 remote_ip 10.8.0.234 140131 username hashtadani3 140131 mac 140131 bytes_out 0 140131 bytes_in 0 140131 station_ip 37.129.67.30 140131 port 386 140131 unique_id port 140131 remote_ip 10.8.0.154 140139 username aminvpn 140139 mac 140139 bytes_out 0 140139 bytes_in 0 140139 station_ip 37.129.125.113 140139 port 215 140139 unique_id port 140139 remote_ip 10.8.1.6 140142 username hasanahmadi 140142 kill_reason Another user logged on this global unique id 140142 mac 140142 bytes_out 0 140142 bytes_in 0 140142 station_ip 37.129.92.165 140142 port 388 140142 unique_id port 140142 remote_ip 10.8.0.126 140143 username barzegar 140143 mac 140143 bytes_out 846151 140143 bytes_in 645828 140143 station_ip 5.119.230.184 140143 port 217 140143 unique_id port 140143 remote_ip 10.8.1.174 140146 username barzegar 140146 mac 140146 bytes_out 0 140146 bytes_in 0 140146 station_ip 5.119.230.184 140146 port 215 140146 unique_id port 140146 remote_ip 10.8.1.174 140150 username hashtadani3 140150 mac 140150 bytes_out 0 140150 bytes_in 0 140119 remote_ip 10.8.1.34 140120 username hashtadani3 140120 kill_reason Maximum check online fails reached 140120 mac 140120 bytes_out 0 140120 bytes_in 0 140120 station_ip 37.129.67.30 140120 port 382 140120 unique_id port 140124 username vanila 140124 mac 140124 bytes_out 120539 140124 bytes_in 270062 140124 station_ip 83.122.207.253 140124 port 219 140124 unique_id port 140124 remote_ip 10.8.1.74 140126 username Mahin 140126 mac 140126 bytes_out 0 140126 bytes_in 0 140126 station_ip 5.119.83.161 140126 port 212 140126 unique_id port 140126 remote_ip 10.8.1.186 140127 username hashtadani3 140127 mac 140127 bytes_out 0 140127 bytes_in 0 140127 station_ip 37.129.67.30 140127 port 384 140127 unique_id port 140127 remote_ip 10.8.0.154 140130 username barzegar 140130 mac 140130 bytes_out 0 140130 bytes_in 0 140130 station_ip 5.119.230.184 140130 port 217 140130 unique_id port 140130 remote_ip 10.8.1.174 140134 username hashtadani3 140134 kill_reason Maximum check online fails reached 140134 mac 140134 bytes_out 0 140134 bytes_in 0 140134 station_ip 37.129.67.30 140134 port 384 140134 unique_id port 140135 username hashtadani3 140135 kill_reason Maximum check online fails reached 140135 mac 140135 bytes_out 0 140135 bytes_in 0 140135 station_ip 37.129.67.30 140135 port 386 140135 unique_id port 140138 username godarzi 140138 mac 140138 bytes_out 0 140138 bytes_in 0 140138 station_ip 5.120.159.109 140138 port 358 140138 unique_id port 140141 username aminvpn 140141 unique_id port 140141 terminate_cause Lost-Carrier 140141 bytes_out 4348200 140141 bytes_in 19982623 140141 station_ip 5.233.49.34 140141 port 15730671 140141 nas_port_type Virtual 140141 remote_ip 5.5.5.192 140144 username barzegar 140144 mac 140144 bytes_out 0 140144 bytes_in 0 140144 station_ip 5.119.230.184 140144 port 215 140144 unique_id port 140144 remote_ip 10.8.1.174 140145 username hasanahmadi 140145 mac 140145 bytes_out 0 140145 bytes_in 0 140145 station_ip 37.129.92.165 140145 port 388 140145 unique_id port 140147 username zotaher 140147 kill_reason Another user logged on this global unique id 140147 mac 140147 bytes_out 0 140147 bytes_in 0 140147 station_ip 83.122.250.229 140147 port 374 140147 unique_id port 140152 username hashtadani3 140152 mac 140152 bytes_out 0 140152 bytes_in 0 140152 station_ip 37.129.67.30 140152 port 217 140152 unique_id port 140152 remote_ip 10.8.1.94 140156 username sedighe 140156 mac 140156 bytes_out 1016117 140156 bytes_in 16042089 140156 station_ip 37.129.113.173 140156 port 380 140156 unique_id port 140156 remote_ip 10.8.0.146 140159 username hashtadani3 140159 kill_reason Maximum check online fails reached 140159 mac 140159 bytes_out 0 140159 bytes_in 0 140159 station_ip 37.129.67.30 140159 port 388 140159 unique_id port 140163 username barzegar 140163 mac 140163 bytes_out 0 140163 bytes_in 0 140163 station_ip 5.119.230.184 140163 port 392 140163 unique_id port 140163 remote_ip 10.8.0.234 140166 username hashtadani3 140166 kill_reason Maximum check online fails reached 140166 mac 140166 bytes_out 0 140166 bytes_in 0 140166 station_ip 37.129.67.30 140166 port 393 140166 unique_id port 140169 username hashtadani3 140169 mac 140169 bytes_out 0 140169 bytes_in 0 140169 station_ip 37.129.67.30 140169 port 315 140169 unique_id port 140169 remote_ip 10.8.0.154 140170 username hashtadani3 140170 mac 140170 bytes_out 0 140170 bytes_in 0 140170 station_ip 37.129.67.30 140170 port 315 140170 unique_id port 140122 bytes_out 0 140122 bytes_in 0 140122 station_ip 37.129.67.30 140122 port 386 140122 unique_id port 140122 remote_ip 10.8.0.154 140123 username barzegar 140123 mac 140123 bytes_out 0 140123 bytes_in 0 140123 station_ip 5.119.230.184 140123 port 218 140123 unique_id port 140123 remote_ip 10.8.1.174 140128 username aminvpn 140128 mac 140128 bytes_out 0 140128 bytes_in 0 140128 station_ip 37.129.125.113 140128 port 217 140128 unique_id port 140128 remote_ip 10.8.1.6 140132 username barzegar 140132 mac 140132 bytes_out 0 140132 bytes_in 0 140132 station_ip 5.119.230.184 140132 port 217 140132 unique_id port 140132 remote_ip 10.8.1.174 140133 username amirabbas 140133 unique_id port 140133 terminate_cause User-Request 140133 bytes_out 5463623 140133 bytes_in 150018194 140133 station_ip 188.245.88.20 140133 port 15730672 140133 nas_port_type Virtual 140133 remote_ip 5.5.5.202 140136 username kalantary 140136 mac 140136 bytes_out 0 140136 bytes_in 0 140136 station_ip 83.123.71.201 140136 port 387 140136 unique_id port 140136 remote_ip 10.8.0.98 140137 username hashtadani3 140137 kill_reason Maximum check online fails reached 140137 mac 140137 bytes_out 0 140137 bytes_in 0 140137 station_ip 37.129.67.30 140137 port 389 140137 unique_id port 140140 username farhad2 140140 mac 140140 bytes_out 0 140140 bytes_in 0 140140 station_ip 5.120.95.185 140140 port 380 140140 unique_id port 140148 username hashtadani3 140148 mac 140148 bytes_out 0 140148 bytes_in 0 140148 station_ip 37.129.67.30 140148 port 219 140148 unique_id port 140148 remote_ip 10.8.1.94 140149 username hashtadani3 140149 mac 140149 bytes_out 0 140149 bytes_in 0 140149 station_ip 37.129.67.30 140149 port 217 140149 unique_id port 140149 remote_ip 10.8.1.94 140151 username tahmasebi 140151 mac 140151 bytes_out 4271101 140151 bytes_in 19263399 140151 station_ip 5.125.5.47 140151 port 381 140151 unique_id port 140151 remote_ip 10.8.0.42 140154 username hashtadani3 140154 mac 140154 bytes_out 0 140154 bytes_in 0 140154 station_ip 37.129.67.30 140154 port 388 140154 unique_id port 140154 remote_ip 10.8.0.154 140155 username hashtadani3 140155 kill_reason Maximum check online fails reached 140155 mac 140155 bytes_out 0 140155 bytes_in 0 140155 station_ip 37.129.67.30 140155 port 381 140155 unique_id port 140158 username zotaher 140158 mac 140158 bytes_out 0 140158 bytes_in 0 140158 station_ip 83.122.250.229 140158 port 374 140158 unique_id port 140165 username alipour 140165 mac 140165 bytes_out 0 140165 bytes_in 0 140165 station_ip 113.203.112.25 140165 port 371 140165 unique_id port 140168 username hashtadani3 140168 mac 140168 bytes_out 0 140168 bytes_in 0 140168 station_ip 37.129.67.30 140168 port 392 140168 unique_id port 140168 remote_ip 10.8.0.154 140175 username farhad2 140175 kill_reason Another user logged on this global unique id 140175 mac 140175 bytes_out 0 140175 bytes_in 0 140175 station_ip 5.120.95.185 140175 port 358 140175 unique_id port 140182 username barzegar 140182 mac 140182 bytes_out 0 140182 bytes_in 0 140182 station_ip 5.119.230.184 140182 port 396 140182 unique_id port 140182 remote_ip 10.8.0.234 140184 username vanila 140184 mac 140184 bytes_out 2506718 140184 bytes_in 176880 140184 station_ip 83.122.207.253 140184 port 392 140184 unique_id port 140184 remote_ip 10.8.0.178 140189 username farhad2 140189 mac 140189 bytes_out 0 140189 bytes_in 0 140189 station_ip 5.120.95.185 140150 station_ip 37.129.67.30 140150 port 217 140150 unique_id port 140150 remote_ip 10.8.1.94 140153 username barzegar 140153 kill_reason Maximum check online fails reached 140153 mac 140153 bytes_out 0 140153 bytes_in 0 140153 station_ip 5.119.230.184 140153 port 215 140153 unique_id port 140157 username farhad2 140157 kill_reason Another user logged on this global unique id 140157 mac 140157 bytes_out 0 140157 bytes_in 0 140157 station_ip 5.120.95.185 140157 port 358 140157 unique_id port 140157 remote_ip 10.8.0.190 140160 username hashtadani3 140160 kill_reason Maximum check online fails reached 140160 mac 140160 bytes_out 0 140160 bytes_in 0 140160 station_ip 37.129.67.30 140160 port 380 140160 unique_id port 140161 username hashtadani3 140161 kill_reason Maximum number of concurrent logins reached 140161 mac 140161 bytes_out 0 140161 bytes_in 0 140161 station_ip 37.129.67.30 140161 port 392 140161 unique_id port 140162 username hashtadani3 140162 kill_reason Maximum check online fails reached 140162 mac 140162 bytes_out 0 140162 bytes_in 0 140162 station_ip 37.129.67.30 140162 port 390 140162 unique_id port 140164 username hashtadani3 140164 kill_reason Maximum check online fails reached 140164 mac 140164 bytes_out 0 140164 bytes_in 0 140164 station_ip 37.129.67.30 140164 port 391 140164 unique_id port 140167 username malekpoir 140167 mac 140167 bytes_out 124928 140167 bytes_in 132950 140167 station_ip 5.119.41.192 140167 port 315 140167 unique_id port 140167 remote_ip 10.8.0.58 140171 username hashtadani3 140171 mac 140171 bytes_out 0 140171 bytes_in 0 140171 station_ip 37.129.67.30 140171 port 315 140171 unique_id port 140171 remote_ip 10.8.0.154 140172 username hashtadani3 140172 mac 140172 bytes_out 0 140172 bytes_in 0 140172 station_ip 37.129.67.30 140172 port 315 140172 unique_id port 140172 remote_ip 10.8.0.154 140174 username hashtadani3 140174 mac 140174 bytes_out 0 140174 bytes_in 0 140174 station_ip 37.129.67.30 140174 port 315 140174 unique_id port 140174 remote_ip 10.8.0.154 140177 username hashtadani3 140177 mac 140177 bytes_out 0 140177 bytes_in 0 140177 station_ip 37.129.67.30 140177 port 315 140177 unique_id port 140177 remote_ip 10.8.0.154 140178 username barzegar 140178 mac 140178 bytes_out 0 140178 bytes_in 0 140178 station_ip 5.119.230.184 140178 port 392 140178 unique_id port 140178 remote_ip 10.8.0.234 140179 username vanila 140179 mac 140179 bytes_out 0 140179 bytes_in 0 140179 station_ip 83.122.207.253 140179 port 387 140179 unique_id port 140179 remote_ip 10.8.0.178 140181 username hashtadani3 140181 kill_reason Maximum check online fails reached 140181 mac 140181 bytes_out 0 140181 bytes_in 0 140181 station_ip 37.129.67.30 140181 port 315 140181 unique_id port 140186 username godarzi 140186 kill_reason Another user logged on this global unique id 140186 mac 140186 bytes_out 0 140186 bytes_in 0 140186 station_ip 5.120.159.109 140186 port 374 140186 unique_id port 140186 remote_ip 10.8.0.174 140188 username hashtadani3 140188 mac 140188 bytes_out 0 140188 bytes_in 0 140188 station_ip 37.129.67.30 140188 port 392 140188 unique_id port 140188 remote_ip 10.8.0.154 140191 username abravesh 140191 unique_id port 140191 terminate_cause Lost-Carrier 140191 bytes_out 1326689 140191 bytes_in 21339348 140191 station_ip 5.120.149.200 140191 port 15730673 140191 nas_port_type Virtual 140191 remote_ip 5.5.5.205 140194 username hashtadani3 140194 kill_reason Maximum check online fails reached 140194 mac 140194 bytes_out 0 140194 bytes_in 0 140194 station_ip 37.129.67.30 140170 remote_ip 10.8.0.154 140173 username hashtadani3 140173 mac 140173 bytes_out 0 140173 bytes_in 0 140173 station_ip 37.129.67.30 140173 port 315 140173 unique_id port 140173 remote_ip 10.8.0.154 140176 username hashtadani3 140176 mac 140176 bytes_out 0 140176 bytes_in 0 140176 station_ip 37.129.67.30 140176 port 315 140176 unique_id port 140176 remote_ip 10.8.0.154 140180 username hashtadani3 140180 kill_reason Maximum number of concurrent logins reached 140180 mac 140180 bytes_out 0 140180 bytes_in 0 140180 station_ip 37.129.67.30 140180 port 387 140180 unique_id port 140183 username hashtadani3 140183 kill_reason Maximum check online fails reached 140183 mac 140183 bytes_out 0 140183 bytes_in 0 140183 station_ip 37.129.67.30 140183 port 395 140183 unique_id port 140185 username hashtadani3 140185 mac 140185 bytes_out 0 140185 bytes_in 0 140185 station_ip 37.129.67.30 140185 port 219 140185 unique_id port 140185 remote_ip 10.8.1.94 140187 username hashtadani3 140187 kill_reason Maximum check online fails reached 140187 mac 140187 bytes_out 0 140187 bytes_in 0 140187 station_ip 37.129.67.30 140187 port 396 140187 unique_id port 140192 username saeed9658 140192 mac 140192 bytes_out 13353611 140192 bytes_in 17453845 140192 station_ip 5.119.222.178 140192 port 387 140192 unique_id port 140192 remote_ip 10.8.0.62 140193 username aminvpn 140193 mac 140193 bytes_out 246016 140193 bytes_in 642062 140193 station_ip 83.122.174.80 140193 port 358 140193 unique_id port 140193 remote_ip 10.8.0.14 140198 username hashtadani3 140198 mac 140198 bytes_out 0 140198 bytes_in 0 140198 station_ip 37.129.67.30 140198 port 358 140198 unique_id port 140198 remote_ip 10.8.0.154 140202 username barzegar 140202 mac 140202 bytes_out 0 140202 bytes_in 0 140202 station_ip 5.119.230.184 140202 port 220 140202 unique_id port 140202 remote_ip 10.8.1.174 140205 username hashtadani3 140205 mac 140205 bytes_out 0 140205 bytes_in 0 140205 station_ip 37.129.67.30 140205 port 219 140205 unique_id port 140205 remote_ip 10.8.1.94 140206 username vanila 140206 mac 140206 bytes_out 0 140206 bytes_in 0 140206 station_ip 83.122.207.253 140206 port 397 140206 unique_id port 140206 remote_ip 10.8.0.178 140211 username aminvpn 140211 mac 140211 bytes_out 0 140211 bytes_in 0 140211 station_ip 5.233.49.34 140211 port 374 140211 unique_id port 140211 remote_ip 10.8.0.14 140214 username barzegar 140214 mac 140214 bytes_out 0 140214 bytes_in 0 140214 station_ip 5.119.230.184 140214 port 394 140214 unique_id port 140214 remote_ip 10.8.0.234 140215 username vanila 140215 mac 140215 bytes_out 0 140215 bytes_in 0 140215 station_ip 83.122.207.253 140215 port 387 140215 unique_id port 140215 remote_ip 10.8.0.178 140216 username kalantary 140216 mac 140216 bytes_out 0 140216 bytes_in 0 140216 station_ip 83.123.64.133 140216 port 358 140216 unique_id port 140216 remote_ip 10.8.0.98 140220 username aminvpn 140220 mac 140220 bytes_out 0 140220 bytes_in 0 140220 station_ip 5.233.49.34 140220 port 397 140220 unique_id port 140220 remote_ip 10.8.0.14 140222 username moradi 140222 kill_reason Another user logged on this global unique id 140222 mac 140222 bytes_out 0 140222 bytes_in 0 140222 station_ip 46.225.214.99 140222 port 349 140222 unique_id port 140222 remote_ip 10.8.0.250 140223 username Mahin 140223 mac 140223 bytes_out 28978 140223 bytes_in 41233 140223 station_ip 5.119.83.161 140223 port 212 140223 unique_id port 140189 port 358 140189 unique_id port 140190 username kalantary 140190 mac 140190 bytes_out 614685 140190 bytes_in 1280261 140190 station_ip 83.123.45.153 140190 port 371 140190 unique_id port 140190 remote_ip 10.8.0.98 140195 username Mahin 140195 mac 140195 bytes_out 0 140195 bytes_in 0 140195 station_ip 5.119.83.161 140195 port 212 140195 unique_id port 140195 remote_ip 10.8.1.186 140196 username hashtadani3 140196 mac 140196 bytes_out 0 140196 bytes_in 0 140196 station_ip 37.129.67.30 140196 port 387 140196 unique_id port 140196 remote_ip 10.8.0.154 140197 username farhad2 140197 mac 140197 bytes_out 265233 140197 bytes_in 593053 140197 station_ip 5.120.95.185 140197 port 392 140197 unique_id port 140197 remote_ip 10.8.0.190 140200 username hashtadani3 140200 mac 140200 bytes_out 0 140200 bytes_in 0 140200 station_ip 37.129.67.30 140200 port 219 140200 unique_id port 140200 remote_ip 10.8.1.94 140208 username hashtadani3 140208 mac 140208 bytes_out 0 140208 bytes_in 0 140208 station_ip 37.129.67.30 140208 port 219 140208 unique_id port 140208 remote_ip 10.8.1.94 140209 username hashtadani3 140209 mac 140209 bytes_out 0 140209 bytes_in 0 140209 station_ip 37.129.67.30 140209 port 219 140209 unique_id port 140209 remote_ip 10.8.1.94 140210 username godarzi 140210 mac 140210 bytes_out 0 140210 bytes_in 0 140210 station_ip 5.120.159.109 140210 port 374 140210 unique_id port 140212 username kalantary 140212 mac 140212 bytes_out 0 140212 bytes_in 0 140212 station_ip 83.123.64.133 140212 port 394 140212 unique_id port 140212 remote_ip 10.8.0.98 140213 username sedighe 140213 mac 140213 bytes_out 0 140213 bytes_in 0 140213 station_ip 37.129.110.241 140213 port 358 140213 unique_id port 140213 remote_ip 10.8.0.146 140217 username mehrpouyan 140217 mac 140217 bytes_out 0 140217 bytes_in 0 140217 station_ip 5.119.100.186 140217 port 221 140217 unique_id port 140217 remote_ip 10.8.1.38 140228 username khademi 140228 mac 140228 bytes_out 418876 140228 bytes_in 3659750 140228 station_ip 113.203.70.160 140228 port 385 140228 unique_id port 140228 remote_ip 10.8.0.10 140230 username amir 140230 mac 140230 bytes_out 144645 140230 bytes_in 766157 140230 station_ip 46.225.214.125 140230 port 397 140230 unique_id port 140230 remote_ip 10.8.0.50 140231 username mehrpouyan 140231 mac 140231 bytes_out 0 140231 bytes_in 0 140231 station_ip 5.119.110.165 140231 port 387 140231 unique_id port 140231 remote_ip 10.8.0.74 140234 username mehrpouyan 140234 mac 140234 bytes_out 412485 140234 bytes_in 3889651 140234 station_ip 5.119.112.234 140234 port 385 140234 unique_id port 140234 remote_ip 10.8.0.74 140239 username hashtadani3 140239 kill_reason Maximum check online fails reached 140239 mac 140239 bytes_out 0 140239 bytes_in 0 140239 station_ip 37.129.67.30 140239 port 398 140239 unique_id port 140242 username barzegar 140242 mac 140242 bytes_out 0 140242 bytes_in 0 140242 station_ip 5.119.230.184 140242 port 392 140242 unique_id port 140242 remote_ip 10.8.0.234 140243 username mehrpouyan 140243 mac 140243 bytes_out 395233 140243 bytes_in 2425336 140243 station_ip 5.120.39.224 140243 port 394 140243 unique_id port 140243 remote_ip 10.8.0.74 140247 username mehrpouyan 140247 mac 140247 bytes_out 316053 140247 bytes_in 1541304 140247 station_ip 5.119.15.35 140247 port 392 140247 unique_id port 140247 remote_ip 10.8.0.74 140248 username hamid.e 140194 port 371 140194 unique_id port 140199 username sabaghnezhad 140199 mac 140199 bytes_out 0 140199 bytes_in 0 140199 station_ip 5.217.127.224 140199 port 367 140199 unique_id port 140199 remote_ip 10.8.0.186 140201 username hashtadani3 140201 kill_reason Maximum check online fails reached 140201 mac 140201 bytes_out 0 140201 bytes_in 0 140201 station_ip 37.129.67.30 140201 port 367 140201 unique_id port 140203 username hashtadani3 140203 mac 140203 bytes_out 0 140203 bytes_in 0 140203 station_ip 37.129.67.30 140203 port 219 140203 unique_id port 140203 remote_ip 10.8.1.94 140204 username farhad2 140204 mac 140204 bytes_out 616245 140204 bytes_in 7447876 140204 station_ip 5.120.95.185 140204 port 387 140204 unique_id port 140204 remote_ip 10.8.0.190 140207 username alipour 140207 mac 140207 bytes_out 725598 140207 bytes_in 8426981 140207 station_ip 113.203.112.25 140207 port 394 140207 unique_id port 140207 remote_ip 10.8.0.102 140218 username farhad2 140218 mac 140218 bytes_out 0 140218 bytes_in 0 140218 station_ip 5.119.32.117 140218 port 387 140218 unique_id port 140218 remote_ip 10.8.0.190 140219 username alipour 140219 kill_reason Another user logged on this global unique id 140219 mac 140219 bytes_out 0 140219 bytes_in 0 140219 station_ip 113.203.112.25 140219 port 220 140219 unique_id port 140219 remote_ip 10.8.1.50 140221 username farhad2 140221 mac 140221 bytes_out 0 140221 bytes_in 0 140221 station_ip 5.119.32.117 140221 port 358 140221 unique_id port 140221 remote_ip 10.8.0.190 140225 username farhad2 140225 mac 140225 bytes_out 129393 140225 bytes_in 525632 140225 station_ip 5.119.32.117 140225 port 221 140225 unique_id port 140225 remote_ip 10.8.1.222 140229 username farhad2 140229 mac 140229 bytes_out 0 140229 bytes_in 0 140229 station_ip 5.119.32.117 140229 port 212 140229 unique_id port 140229 remote_ip 10.8.1.222 140232 username vanila 140232 mac 140232 bytes_out 0 140232 bytes_in 0 140232 station_ip 83.122.207.253 140232 port 394 140232 unique_id port 140232 remote_ip 10.8.0.178 140235 username hashtadani3 140235 mac 140235 bytes_out 0 140235 bytes_in 0 140235 station_ip 37.129.67.30 140235 port 219 140235 unique_id port 140236 username aminvpn 140236 unique_id port 140236 terminate_cause Lost-Carrier 140236 bytes_out 1298715 140236 bytes_in 7165462 140236 station_ip 5.233.49.34 140236 port 15730674 140236 nas_port_type Virtual 140236 remote_ip 5.5.5.219 140237 username hashtadani3 140237 kill_reason Maximum check online fails reached 140237 mac 140237 bytes_out 0 140237 bytes_in 0 140237 station_ip 37.129.67.30 140237 port 397 140237 unique_id port 140241 username alihosseini1 140241 mac 140241 bytes_out 696029 140241 bytes_in 2902976 140241 station_ip 5.120.41.110 140241 port 218 140241 unique_id port 140241 remote_ip 10.8.1.106 140244 username aminvpn 140244 unique_id port 140244 terminate_cause User-Request 140244 bytes_out 2439022 140244 bytes_in 78001000 140244 station_ip 31.57.142.129 140244 port 15730675 140244 nas_port_type Virtual 140244 remote_ip 5.5.5.144 140246 username farhad2 140246 mac 140246 bytes_out 2062394 140246 bytes_in 12887835 140246 station_ip 5.120.96.78 140246 port 212 140246 unique_id port 140246 remote_ip 10.8.1.222 140252 username barzegar 140252 mac 140252 bytes_out 0 140252 bytes_in 0 140252 station_ip 5.119.230.184 140252 port 379 140252 unique_id port 140252 remote_ip 10.8.0.234 140254 username aminvpn 140254 unique_id port 140254 terminate_cause User-Request 140223 remote_ip 10.8.1.186 140224 username barzegar 140224 mac 140224 bytes_out 0 140224 bytes_in 0 140224 station_ip 5.119.230.184 140224 port 212 140224 unique_id port 140224 remote_ip 10.8.1.174 140226 username hashtadani3 140226 kill_reason Another user logged on this global unique id 140226 mac 140226 bytes_out 0 140226 bytes_in 0 140226 station_ip 37.129.67.30 140226 port 219 140226 unique_id port 140226 remote_ip 10.8.1.94 140227 username farhad2 140227 mac 140227 bytes_out 0 140227 bytes_in 0 140227 station_ip 5.119.32.117 140227 port 212 140227 unique_id port 140227 remote_ip 10.8.1.222 140233 username aminvpn 140233 mac 140233 bytes_out 0 140233 bytes_in 0 140233 station_ip 5.233.49.34 140233 port 387 140233 unique_id port 140233 remote_ip 10.8.0.14 140238 username jafari 140238 kill_reason Another user logged on this global unique id 140238 mac 140238 bytes_out 0 140238 bytes_in 0 140238 station_ip 5.134.155.135 140238 port 358 140238 unique_id port 140238 remote_ip 10.8.0.242 140240 username sabaghnezhad 140240 mac 140240 bytes_out 92183 140240 bytes_in 95728 140240 station_ip 5.217.47.14 140240 port 392 140240 unique_id port 140240 remote_ip 10.8.0.186 140245 username mirzaei 140245 mac 140245 bytes_out 2061935 140245 bytes_in 22242663 140245 station_ip 5.120.81.163 140245 port 379 140245 unique_id port 140245 remote_ip 10.8.0.66 140249 username aminvpn 140249 mac 140249 bytes_out 0 140249 bytes_in 0 140249 station_ip 5.233.49.34 140249 port 392 140249 unique_id port 140249 remote_ip 10.8.0.14 140251 username amir 140251 mac 140251 bytes_out 147640 140251 bytes_in 563107 140251 station_ip 46.225.214.125 140251 port 399 140251 unique_id port 140251 remote_ip 10.8.0.50 140260 username hashtadani3 140260 mac 140260 bytes_out 0 140260 bytes_in 0 140260 station_ip 37.129.67.30 140260 port 221 140260 unique_id port 140260 remote_ip 10.8.1.94 140262 username barzegar 140262 kill_reason Maximum check online fails reached 140262 mac 140262 bytes_out 0 140262 bytes_in 0 140262 station_ip 5.119.230.184 140262 port 212 140262 unique_id port 140265 username hashtadani3 140265 mac 140265 bytes_out 0 140265 bytes_in 0 140265 station_ip 37.129.67.30 140265 port 218 140265 unique_id port 140265 remote_ip 10.8.1.94 140266 username hashtadani3 140266 mac 140266 bytes_out 2437 140266 bytes_in 4857 140266 station_ip 37.129.67.30 140266 port 218 140266 unique_id port 140266 remote_ip 10.8.1.94 140268 username kalantary 140268 mac 140268 bytes_out 823079 140268 bytes_in 4243835 140268 station_ip 83.123.64.13 140268 port 379 140268 unique_id port 140268 remote_ip 10.8.0.98 140273 username morteza 140273 mac 140273 bytes_out 0 140273 bytes_in 0 140273 station_ip 83.122.199.127 140273 port 399 140273 unique_id port 140273 remote_ip 10.8.0.46 140275 username jafari 140275 kill_reason Another user logged on this global unique id 140275 mac 140275 bytes_out 0 140275 bytes_in 0 140275 station_ip 5.134.155.135 140275 port 358 140275 unique_id port 140278 username hashtadani3 140278 mac 140278 bytes_out 0 140278 bytes_in 0 140278 station_ip 37.129.67.30 140278 port 392 140278 unique_id port 140278 remote_ip 10.8.0.154 140282 username morteza 140282 mac 140282 bytes_out 0 140282 bytes_in 0 140282 station_ip 83.122.199.127 140282 port 379 140282 unique_id port 140282 remote_ip 10.8.0.46 140284 username vanila 140284 mac 140284 bytes_out 911480 140284 bytes_in 1180254 140284 station_ip 83.122.207.253 140248 kill_reason Maximum number of concurrent logins reached 140248 unique_id port 140248 bytes_out 0 140248 bytes_in 0 140248 station_ip 37.27.5.72 140248 port 15730679 140248 nas_port_type Virtual 140250 username mehrpouyan 140250 mac 140250 bytes_out 0 140250 bytes_in 0 140250 station_ip 5.119.65.238 140250 port 379 140250 unique_id port 140250 remote_ip 10.8.0.74 140253 username meysam 140253 mac 140253 bytes_out 0 140253 bytes_in 0 140253 station_ip 5.120.107.107 140253 port 212 140253 unique_id port 140253 remote_ip 10.8.1.34 140258 username yaghobi 140258 mac 140258 bytes_out 1737131 140258 bytes_in 20986570 140258 station_ip 83.123.241.6 140258 port 219 140258 unique_id port 140258 remote_ip 10.8.1.118 140259 username farhad2 140259 mac 140259 bytes_out 0 140259 bytes_in 0 140259 station_ip 5.120.96.78 140259 port 218 140259 unique_id port 140259 remote_ip 10.8.1.222 140261 username hashtadani3 140261 mac 140261 bytes_out 0 140261 bytes_in 0 140261 station_ip 37.129.67.30 140261 port 218 140261 unique_id port 140261 remote_ip 10.8.1.94 140263 username hashtadani3 140263 mac 140263 bytes_out 0 140263 bytes_in 0 140263 station_ip 37.129.67.30 140263 port 218 140263 unique_id port 140263 remote_ip 10.8.1.94 140264 username farhad2 140264 mac 140264 bytes_out 56614 140264 bytes_in 184931 140264 station_ip 5.120.96.78 140264 port 392 140264 unique_id port 140264 remote_ip 10.8.0.190 140267 username yaghobi 140267 mac 140267 bytes_out 0 140267 bytes_in 0 140267 station_ip 83.123.241.6 140267 port 219 140267 unique_id port 140267 remote_ip 10.8.1.118 140269 username hashtadani3 140269 mac 140269 bytes_out 0 140269 bytes_in 0 140269 station_ip 37.129.67.30 140269 port 218 140269 unique_id port 140269 remote_ip 10.8.1.94 140270 username aminvpn 140270 mac 140270 bytes_out 0 140270 bytes_in 0 140270 station_ip 5.233.49.34 140270 port 379 140270 unique_id port 140270 remote_ip 10.8.0.14 140272 username morteza 140272 mac 140272 bytes_out 1202771 140272 bytes_in 19421495 140272 station_ip 83.122.199.127 140272 port 399 140272 unique_id port 140272 remote_ip 10.8.0.46 140274 username amir 140274 mac 140274 bytes_out 0 140274 bytes_in 0 140274 station_ip 46.225.214.125 140274 port 379 140274 unique_id port 140274 remote_ip 10.8.0.50 140277 username hashtadani3 140277 kill_reason Maximum check online fails reached 140277 mac 140277 bytes_out 0 140277 bytes_in 0 140277 station_ip 37.129.67.30 140277 port 400 140277 unique_id port 140279 username farhad2 140279 mac 140279 bytes_out 0 140279 bytes_in 0 140279 station_ip 5.120.96.78 140279 port 401 140279 unique_id port 140279 remote_ip 10.8.0.190 140280 username morteza 140280 mac 140280 bytes_out 26689605 140280 bytes_in 15124098 140280 station_ip 83.122.199.127 140280 port 379 140280 unique_id port 140280 remote_ip 10.8.0.46 140285 username morteza 140285 mac 140285 bytes_out 0 140285 bytes_in 0 140285 station_ip 83.122.199.127 140285 port 379 140285 unique_id port 140285 remote_ip 10.8.0.46 140286 username mohammadjavad 140286 mac 140286 bytes_out 0 140286 bytes_in 0 140286 station_ip 37.129.227.65 140286 port 399 140286 unique_id port 140286 remote_ip 10.8.0.142 140289 username aminvpn 140289 mac 140289 bytes_out 0 140289 bytes_in 0 140289 station_ip 5.233.49.34 140289 port 399 140289 unique_id port 140289 remote_ip 10.8.0.14 140291 username hashtadani3 140291 mac 140291 bytes_out 0 140254 bytes_out 835459 140254 bytes_in 2501307 140254 station_ip 5.233.49.34 140254 port 15730677 140254 nas_port_type Virtual 140254 remote_ip 5.5.5.150 140255 username jafari 140255 kill_reason Another user logged on this global unique id 140255 mac 140255 bytes_out 0 140255 bytes_in 0 140255 station_ip 5.134.155.135 140255 port 358 140255 unique_id port 140256 username hamid.e 140256 unique_id port 140256 terminate_cause Lost-Carrier 140256 bytes_out 414335 140256 bytes_in 4100083 140256 station_ip 188.245.91.61 140256 port 15730676 140256 nas_port_type Virtual 140256 remote_ip 5.5.5.147 140257 username hashtadani3 140257 mac 140257 bytes_out 0 140257 bytes_in 0 140257 station_ip 37.129.67.30 140257 port 221 140257 unique_id port 140257 remote_ip 10.8.1.94 140271 username hashtadani3 140271 mac 140271 bytes_out 0 140271 bytes_in 0 140271 station_ip 37.129.67.30 140271 port 400 140271 unique_id port 140271 remote_ip 10.8.0.154 140276 username farhad2 140276 mac 140276 bytes_out 0 140276 bytes_in 0 140276 station_ip 5.120.96.78 140276 port 392 140276 unique_id port 140276 remote_ip 10.8.0.190 140281 username barzegar 140281 mac 140281 bytes_out 0 140281 bytes_in 0 140281 station_ip 5.119.230.184 140281 port 218 140281 unique_id port 140281 remote_ip 10.8.1.174 140283 username morteza 140283 mac 140283 bytes_out 0 140283 bytes_in 0 140283 station_ip 83.122.199.127 140283 port 379 140283 unique_id port 140283 remote_ip 10.8.0.46 140290 username hashtadani3 140290 mac 140290 bytes_out 1945796 140290 bytes_in 16521463 140290 station_ip 37.129.67.30 140290 port 392 140290 unique_id port 140290 remote_ip 10.8.0.154 140292 username farhad2 140292 mac 140292 bytes_out 936583 140292 bytes_in 9077806 140292 station_ip 5.120.96.78 140292 port 401 140292 unique_id port 140292 remote_ip 10.8.0.190 140293 username mohammadjavad 140293 mac 140293 bytes_out 296625 140293 bytes_in 4806241 140293 station_ip 113.203.74.58 140293 port 379 140293 unique_id port 140293 remote_ip 10.8.0.142 140294 username amir 140294 mac 140294 bytes_out 49499 140294 bytes_in 265023 140294 station_ip 46.225.214.125 140294 port 399 140294 unique_id port 140294 remote_ip 10.8.0.50 140296 username vanila 140296 mac 140296 bytes_out 1331725 140296 bytes_in 915135 140296 station_ip 83.122.207.253 140296 port 385 140296 unique_id port 140296 remote_ip 10.8.0.178 140298 username barzegar 140298 mac 140298 bytes_out 0 140298 bytes_in 0 140298 station_ip 5.119.230.184 140298 port 218 140298 unique_id port 140298 remote_ip 10.8.1.174 140300 username hashtadani3 140300 mac 140300 bytes_out 0 140300 bytes_in 0 140300 station_ip 37.129.67.30 140300 port 219 140300 unique_id port 140300 remote_ip 10.8.1.94 140304 username hashtadani3 140304 mac 140304 bytes_out 0 140304 bytes_in 0 140304 station_ip 37.129.67.30 140304 port 399 140304 unique_id port 140304 remote_ip 10.8.0.154 140306 username hashtadani3 140306 mac 140306 bytes_out 0 140306 bytes_in 0 140306 station_ip 37.129.67.30 140306 port 385 140306 unique_id port 140306 remote_ip 10.8.0.154 140307 username hashtadani3 140307 mac 140307 bytes_out 0 140307 bytes_in 0 140307 station_ip 37.129.67.30 140307 port 385 140307 unique_id port 140307 remote_ip 10.8.0.154 140308 username kalantary 140308 mac 140308 bytes_out 0 140308 bytes_in 0 140308 station_ip 83.123.101.165 140308 port 402 140308 unique_id port 140308 remote_ip 10.8.0.98 140311 username mohammadjavad 140284 port 385 140284 unique_id port 140284 remote_ip 10.8.0.178 140287 username vanila 140287 mac 140287 bytes_out 0 140287 bytes_in 0 140287 station_ip 83.122.207.253 140287 port 379 140287 unique_id port 140287 remote_ip 10.8.0.178 140288 username aminvpn 140288 mac 140288 bytes_out 91838 140288 bytes_in 172576 140288 station_ip 83.122.62.10 140288 port 402 140288 unique_id port 140288 remote_ip 10.8.0.14 140295 username hashtadani3 140295 kill_reason Maximum check online fails reached 140295 mac 140295 bytes_out 0 140295 bytes_in 0 140295 station_ip 37.129.67.30 140295 port 403 140295 unique_id port 140299 username aminvpn 140299 mac 140299 bytes_out 26050 140299 bytes_in 29569 140299 station_ip 83.122.62.10 140299 port 392 140299 unique_id port 140299 remote_ip 10.8.0.14 140301 username hashtadani3 140301 mac 140301 bytes_out 0 140301 bytes_in 0 140301 station_ip 37.129.67.30 140301 port 218 140301 unique_id port 140301 remote_ip 10.8.1.94 140303 username barzegar 140303 mac 140303 bytes_out 0 140303 bytes_in 0 140303 station_ip 5.119.230.184 140303 port 385 140303 unique_id port 140303 remote_ip 10.8.0.234 140309 username hashtadani3 140309 mac 140309 bytes_out 0 140309 bytes_in 0 140309 station_ip 37.129.67.30 140309 port 218 140309 unique_id port 140309 remote_ip 10.8.1.94 140310 username hashtadani3 140310 mac 140310 bytes_out 0 140310 bytes_in 0 140310 station_ip 37.129.67.30 140310 port 218 140310 unique_id port 140310 remote_ip 10.8.1.94 140313 username hashtadani3 140313 mac 140313 bytes_out 0 140313 bytes_in 0 140313 station_ip 37.129.67.30 140313 port 218 140313 unique_id port 140313 remote_ip 10.8.1.94 140320 username hashtadani3 140320 kill_reason Maximum number of concurrent logins reached 140320 mac 140320 bytes_out 0 140320 bytes_in 0 140320 station_ip 37.129.67.30 140320 port 402 140320 unique_id port 140322 username amir 140322 mac 140322 bytes_out 0 140322 bytes_in 0 140322 station_ip 46.225.214.125 140322 port 392 140322 unique_id port 140322 remote_ip 10.8.0.50 140323 username hamidsalari 140323 kill_reason Another user logged on this global unique id 140323 mac 140323 bytes_out 0 140323 bytes_in 0 140323 station_ip 5.119.200.40 140323 port 376 140323 unique_id port 140323 remote_ip 10.8.0.222 140324 username hashtadani3 140324 kill_reason Maximum check online fails reached 140324 mac 140324 bytes_out 0 140324 bytes_in 0 140324 station_ip 37.129.67.30 140324 port 401 140324 unique_id port 140325 username jafari 140325 kill_reason Another user logged on this global unique id 140325 mac 140325 bytes_out 0 140325 bytes_in 0 140325 station_ip 5.134.155.135 140325 port 358 140325 unique_id port 140327 username forozandeh1 140327 mac 140327 bytes_out 663196 140327 bytes_in 6292941 140327 station_ip 37.129.129.20 140327 port 405 140327 unique_id port 140327 remote_ip 10.8.0.130 140331 username moradi 140331 mac 140331 bytes_out 0 140331 bytes_in 0 140331 station_ip 188.245.91.205 140331 port 219 140331 unique_id port 140331 remote_ip 10.8.1.202 140335 username kalantary 140335 mac 140335 bytes_out 74214 140335 bytes_in 175901 140335 station_ip 83.123.35.233 140335 port 379 140335 unique_id port 140335 remote_ip 10.8.0.98 140336 username alihajmalek 140336 mac 140336 bytes_out 1231436 140336 bytes_in 6053579 140336 station_ip 46.225.214.99 140336 port 392 140336 unique_id port 140336 remote_ip 10.8.0.210 140338 username sedighe 140338 mac 140338 bytes_out 765387 140338 bytes_in 11982594 140291 bytes_in 0 140291 station_ip 37.129.67.30 140291 port 402 140291 unique_id port 140291 remote_ip 10.8.0.154 140297 username hashtadani3 140297 mac 140297 bytes_out 0 140297 bytes_in 0 140297 station_ip 37.129.67.30 140297 port 219 140297 unique_id port 140297 remote_ip 10.8.1.94 140302 username jafari 140302 kill_reason Another user logged on this global unique id 140302 mac 140302 bytes_out 0 140302 bytes_in 0 140302 station_ip 5.134.155.135 140302 port 358 140302 unique_id port 140305 username alihosseini1 140305 mac 140305 bytes_out 0 140305 bytes_in 0 140305 station_ip 5.120.41.110 140305 port 392 140305 unique_id port 140305 remote_ip 10.8.0.166 140312 username hashtadani3 140312 kill_reason Maximum check online fails reached 140312 mac 140312 bytes_out 0 140312 bytes_in 0 140312 station_ip 37.129.67.30 140312 port 385 140312 unique_id port 140314 username barzegar 140314 mac 140314 bytes_out 0 140314 bytes_in 0 140314 station_ip 5.119.230.184 140314 port 392 140314 unique_id port 140314 remote_ip 10.8.0.234 140316 username hashtadani3 140316 mac 140316 bytes_out 0 140316 bytes_in 0 140316 station_ip 37.129.67.30 140316 port 218 140316 unique_id port 140316 remote_ip 10.8.1.94 140321 username hashtadani3 140321 kill_reason Maximum check online fails reached 140321 mac 140321 bytes_out 0 140321 bytes_in 0 140321 station_ip 37.129.67.30 140321 port 399 140321 unique_id port 140326 username barzegar 140326 mac 140326 bytes_out 8807 140326 bytes_in 14582 140326 station_ip 5.119.230.184 140326 port 402 140326 unique_id port 140326 remote_ip 10.8.0.234 140328 username hamid.e 140328 unique_id port 140328 terminate_cause User-Request 140328 bytes_out 3248158 140328 bytes_in 67463259 140328 station_ip 37.27.23.188 140328 port 15730680 140328 nas_port_type Virtual 140328 remote_ip 5.5.5.161 140329 username jafari 140329 kill_reason Another user logged on this global unique id 140329 mac 140329 bytes_out 0 140329 bytes_in 0 140329 station_ip 5.134.155.135 140329 port 358 140329 unique_id port 140334 username barzegar 140334 mac 140334 bytes_out 0 140334 bytes_in 0 140334 station_ip 5.119.230.184 140334 port 218 140334 unique_id port 140334 remote_ip 10.8.1.174 140342 username hosseine 140342 kill_reason Another user logged on this global unique id 140342 mac 140342 bytes_out 0 140342 bytes_in 0 140342 station_ip 83.122.71.104 140342 port 377 140342 unique_id port 140343 username sedighe 140343 mac 140343 bytes_out 0 140343 bytes_in 0 140343 station_ip 37.129.236.208 140343 port 379 140343 unique_id port 140343 remote_ip 10.8.0.146 140348 username kalantary 140348 mac 140348 bytes_out 166046 140348 bytes_in 166125 140348 station_ip 83.123.35.233 140348 port 379 140348 unique_id port 140348 remote_ip 10.8.0.98 140350 username alihosseini1 140350 mac 140350 bytes_out 428642 140350 bytes_in 1361251 140350 station_ip 5.120.41.110 140350 port 349 140350 unique_id port 140350 remote_ip 10.8.0.166 140351 username alihosseini1 140351 mac 140351 bytes_out 0 140351 bytes_in 0 140351 station_ip 5.120.41.110 140351 port 218 140351 unique_id port 140351 remote_ip 10.8.1.106 140352 username jafari 140352 kill_reason Another user logged on this global unique id 140352 mac 140352 bytes_out 0 140352 bytes_in 0 140352 station_ip 5.134.155.135 140352 port 358 140352 unique_id port 140356 username moradi 140356 mac 140356 bytes_out 121265 140356 bytes_in 121919 140356 station_ip 46.225.214.99 140356 port 219 140356 unique_id port 140356 remote_ip 10.8.1.202 140311 mac 140311 bytes_out 1061447 140311 bytes_in 21645893 140311 station_ip 113.203.74.58 140311 port 401 140311 unique_id port 140311 remote_ip 10.8.0.142 140315 username moradi 140315 mac 140315 bytes_out 0 140315 bytes_in 0 140315 station_ip 46.225.214.99 140315 port 349 140315 unique_id port 140317 username hashtadani3 140317 mac 140317 bytes_out 0 140317 bytes_in 0 140317 station_ip 37.129.67.30 140317 port 218 140317 unique_id port 140317 remote_ip 10.8.1.94 140318 username aminvpn 140318 mac 140318 bytes_out 0 140318 bytes_in 0 140318 station_ip 5.233.49.34 140318 port 392 140318 unique_id port 140318 remote_ip 10.8.0.14 140319 username hashtadani3 140319 mac 140319 bytes_out 0 140319 bytes_in 0 140319 station_ip 37.129.67.30 140319 port 218 140319 unique_id port 140319 remote_ip 10.8.1.94 140330 username aminvpn 140330 mac 140330 bytes_out 1644 140330 bytes_in 4983 140330 station_ip 5.233.49.34 140330 port 406 140330 unique_id port 140330 remote_ip 10.8.0.14 140332 username amir 140332 mac 140332 bytes_out 0 140332 bytes_in 0 140332 station_ip 46.225.214.125 140332 port 406 140332 unique_id port 140332 remote_ip 10.8.0.50 140333 username farhad2 140333 mac 140333 bytes_out 3291529 140333 bytes_in 16977511 140333 station_ip 5.120.96.78 140333 port 379 140333 unique_id port 140333 remote_ip 10.8.0.190 140337 username vanila 140337 mac 140337 bytes_out 0 140337 bytes_in 0 140337 station_ip 83.122.207.253 140337 port 404 140337 unique_id port 140337 remote_ip 10.8.0.178 140339 username barzegar 140339 mac 140339 bytes_out 0 140339 bytes_in 0 140339 station_ip 5.119.230.184 140339 port 218 140339 unique_id port 140339 remote_ip 10.8.1.174 140344 username farhad2 140344 kill_reason Another user logged on this global unique id 140344 mac 140344 bytes_out 0 140344 bytes_in 0 140344 station_ip 5.120.96.78 140344 port 221 140344 unique_id port 140344 remote_ip 10.8.1.222 140346 username kordestani 140346 kill_reason Another user logged on this global unique id 140346 mac 140346 bytes_out 0 140346 bytes_in 0 140346 station_ip 37.129.183.239 140346 port 402 140346 unique_id port 140346 remote_ip 10.8.0.134 140349 username godarzi 140349 kill_reason Maximum check online fails reached 140349 mac 140349 bytes_out 2666965 140349 bytes_in 28244200 140349 station_ip 5.120.159.109 140349 port 374 140349 unique_id port 140349 remote_ip 10.8.0.174 140355 username aminvpn 140355 mac 140355 bytes_out 0 140355 bytes_in 0 140355 station_ip 5.233.49.34 140355 port 349 140355 unique_id port 140355 remote_ip 10.8.0.14 140357 username alihosseini1 140357 mac 140357 bytes_out 0 140357 bytes_in 0 140357 station_ip 5.120.41.110 140357 port 405 140357 unique_id port 140357 remote_ip 10.8.0.166 140358 username alihosseini1 140358 mac 140358 bytes_out 0 140358 bytes_in 0 140358 station_ip 5.120.41.110 140358 port 407 140358 unique_id port 140358 remote_ip 10.8.0.166 140360 username alihosseini1 140360 mac 140360 bytes_out 0 140360 bytes_in 0 140360 station_ip 5.120.41.110 140360 port 219 140360 unique_id port 140360 remote_ip 10.8.1.106 140363 username alihosseini1 140363 mac 140363 bytes_out 0 140363 bytes_in 0 140363 station_ip 5.120.41.110 140363 port 219 140363 unique_id port 140363 remote_ip 10.8.1.106 140367 username hashtadani3 140367 mac 140367 bytes_out 0 140367 bytes_in 0 140367 station_ip 37.129.67.30 140367 port 349 140367 unique_id port 140367 remote_ip 10.8.0.154 140338 station_ip 37.129.236.208 140338 port 405 140338 unique_id port 140338 remote_ip 10.8.0.146 140340 username jafari 140340 kill_reason Another user logged on this global unique id 140340 mac 140340 bytes_out 0 140340 bytes_in 0 140340 station_ip 5.134.155.135 140340 port 358 140340 unique_id port 140341 username aminvpn 140341 mac 140341 bytes_out 0 140341 bytes_in 0 140341 station_ip 5.233.49.34 140341 port 218 140341 unique_id port 140341 remote_ip 10.8.1.6 140345 username hamidsalari 140345 kill_reason Another user logged on this global unique id 140345 mac 140345 bytes_out 0 140345 bytes_in 0 140345 station_ip 5.119.200.40 140345 port 376 140345 unique_id port 140347 username amir 140347 mac 140347 bytes_out 0 140347 bytes_in 0 140347 station_ip 46.225.214.125 140347 port 404 140347 unique_id port 140347 remote_ip 10.8.0.50 140353 username amir 140353 mac 140353 bytes_out 0 140353 bytes_in 0 140353 station_ip 46.225.214.125 140353 port 349 140353 unique_id port 140353 remote_ip 10.8.0.50 140354 username aminvpn 140354 mac 140354 bytes_out 143744 140354 bytes_in 346356 140354 station_ip 83.122.41.30 140354 port 379 140354 unique_id port 140354 remote_ip 10.8.0.14 140359 username farhad2 140359 mac 140359 bytes_out 0 140359 bytes_in 0 140359 station_ip 5.120.96.78 140359 port 221 140359 unique_id port 140361 username jafari 140361 kill_reason Another user logged on this global unique id 140361 mac 140361 bytes_out 0 140361 bytes_in 0 140361 station_ip 5.134.155.135 140361 port 358 140361 unique_id port 140364 username moradi 140364 mac 140364 bytes_out 0 140364 bytes_in 0 140364 station_ip 46.225.214.99 140364 port 218 140364 unique_id port 140364 remote_ip 10.8.1.202 140365 username hashtadani3 140365 mac 140365 bytes_out 0 140365 bytes_in 0 140365 station_ip 37.129.67.30 140365 port 349 140365 unique_id port 140366 username farhad2 140366 mac 140366 bytes_out 0 140366 bytes_in 0 140366 station_ip 5.119.216.251 140366 port 223 140366 unique_id port 140366 remote_ip 10.8.1.222 140368 username aminvpn 140368 mac 140368 bytes_out 149325 140368 bytes_in 906232 140368 station_ip 83.122.41.30 140368 port 374 140368 unique_id port 140368 remote_ip 10.8.0.14 140370 username aminvpn 140370 mac 140370 bytes_out 0 140370 bytes_in 0 140370 station_ip 5.233.49.34 140370 port 349 140370 unique_id port 140370 remote_ip 10.8.0.14 140371 username kalantary 140371 mac 140371 bytes_out 71743 140371 bytes_in 97855 140371 station_ip 83.123.1.229 140371 port 407 140371 unique_id port 140371 remote_ip 10.8.0.98 140378 username hashtadani3 140378 kill_reason Maximum check online fails reached 140378 mac 140378 bytes_out 0 140378 bytes_in 0 140378 station_ip 37.129.67.30 140378 port 349 140378 unique_id port 140381 username alihosseini1 140381 mac 140381 bytes_out 0 140381 bytes_in 0 140381 station_ip 5.120.41.110 140381 port 409 140381 unique_id port 140381 remote_ip 10.8.0.166 140387 username alireza 140387 kill_reason Relative expiration date has reached 140387 unique_id port 140387 bytes_out 0 140387 bytes_in 0 140387 station_ip 5.120.94.146 140387 port 15730684 140387 nas_port_type Virtual 140389 username hashtadani3 140389 kill_reason Maximum check online fails reached 140389 mac 140389 bytes_out 0 140389 bytes_in 0 140389 station_ip 37.129.67.30 140389 port 410 140389 unique_id port 140392 username hashtadani3 140392 mac 140392 bytes_out 0 140392 bytes_in 0 140392 station_ip 37.129.67.30 140392 port 394 140362 username hashtadani3 140362 kill_reason Another user logged on this global unique id 140362 mac 140362 bytes_out 0 140362 bytes_in 0 140362 station_ip 37.129.67.30 140362 port 349 140362 unique_id port 140362 remote_ip 10.8.0.154 140373 username hashtadani3 140373 mac 140373 bytes_out 0 140373 bytes_in 0 140373 station_ip 37.129.67.30 140373 port 349 140373 unique_id port 140373 remote_ip 10.8.0.154 140376 username farhad2 140376 mac 140376 bytes_out 0 140376 bytes_in 0 140376 station_ip 5.119.216.251 140376 port 218 140376 unique_id port 140376 remote_ip 10.8.1.222 140377 username alihosseini1 140377 mac 140377 bytes_out 0 140377 bytes_in 0 140377 station_ip 5.120.41.110 140377 port 219 140377 unique_id port 140377 remote_ip 10.8.1.106 140379 username hashtadani3 140379 mac 140379 bytes_out 0 140379 bytes_in 0 140379 station_ip 37.129.67.30 140379 port 218 140379 unique_id port 140379 remote_ip 10.8.1.94 140380 username hashtadani3 140380 kill_reason Maximum check online fails reached 140380 mac 140380 bytes_out 0 140380 bytes_in 0 140380 station_ip 37.129.67.30 140380 port 407 140380 unique_id port 140383 username hashtadani3 140383 kill_reason Maximum check online fails reached 140383 mac 140383 bytes_out 0 140383 bytes_in 0 140383 station_ip 37.129.67.30 140383 port 408 140383 unique_id port 140385 username avaanna 140385 mac 140385 bytes_out 0 140385 bytes_in 0 140385 station_ip 83.123.250.115 140385 port 379 140385 unique_id port 140385 remote_ip 10.8.0.94 140388 username alireza 140388 kill_reason Relative expiration date has reached 140388 unique_id port 140388 bytes_out 0 140388 bytes_in 0 140388 station_ip 5.120.94.146 140388 port 15730685 140388 nas_port_type Virtual 140391 username sabaghnezhad 140391 mac 140391 bytes_out 519236 140391 bytes_in 1187918 140391 station_ip 5.217.135.110 140391 port 394 140391 unique_id port 140391 remote_ip 10.8.0.186 140398 username hashtadani3 140398 kill_reason Maximum check online fails reached 140398 mac 140398 bytes_out 0 140398 bytes_in 0 140398 station_ip 37.129.67.30 140398 port 411 140398 unique_id port 140404 username jafari 140404 kill_reason Another user logged on this global unique id 140404 mac 140404 bytes_out 0 140404 bytes_in 0 140404 station_ip 5.134.155.135 140404 port 358 140404 unique_id port 140409 username kalantary 140409 mac 140409 bytes_out 7468 140409 bytes_in 11048 140409 station_ip 83.123.105.201 140409 port 414 140409 unique_id port 140409 remote_ip 10.8.0.98 140412 username hashtadani3 140412 kill_reason Maximum check online fails reached 140412 mac 140412 bytes_out 0 140412 bytes_in 0 140412 station_ip 37.129.67.30 140412 port 402 140412 unique_id port 140417 username aminvpn 140417 mac 140417 bytes_out 0 140417 bytes_in 0 140417 station_ip 83.122.97.202 140417 port 417 140417 unique_id port 140417 remote_ip 10.8.0.14 140420 username barzegar 140420 mac 140420 bytes_out 26550 140420 bytes_in 59010 140420 station_ip 5.119.21.255 140420 port 414 140420 unique_id port 140420 remote_ip 10.8.0.234 140425 username alihosseini1 140425 mac 140425 bytes_out 520377 140425 bytes_in 4047413 140425 station_ip 5.120.146.39 140425 port 409 140425 unique_id port 140425 remote_ip 10.8.0.166 140426 username barzegar 140426 mac 140426 bytes_out 3045 140426 bytes_in 5363 140426 station_ip 5.119.21.255 140426 port 419 140426 unique_id port 140426 remote_ip 10.8.0.234 140430 username mehrpouyan 140430 mac 140430 bytes_out 78550 140430 bytes_in 339612 140430 station_ip 5.120.167.194 140369 username kordestani 140369 mac 140369 bytes_out 0 140369 bytes_in 0 140369 station_ip 37.129.183.239 140369 port 402 140369 unique_id port 140372 username amir 140372 mac 140372 bytes_out 94411 140372 bytes_in 559074 140372 station_ip 46.225.214.125 140372 port 408 140372 unique_id port 140372 remote_ip 10.8.0.50 140374 username jafari 140374 kill_reason Another user logged on this global unique id 140374 mac 140374 bytes_out 0 140374 bytes_in 0 140374 station_ip 5.134.155.135 140374 port 358 140374 unique_id port 140375 username hashtadani3 140375 mac 140375 bytes_out 0 140375 bytes_in 0 140375 station_ip 37.129.67.30 140375 port 221 140375 unique_id port 140375 remote_ip 10.8.1.94 140382 username alipour 140382 mac 140382 bytes_out 0 140382 bytes_in 0 140382 station_ip 113.203.112.25 140382 port 220 140382 unique_id port 140384 username alireza 140384 kill_reason Relative expiration date has reached 140384 unique_id port 140384 bytes_out 0 140384 bytes_in 0 140384 station_ip 5.120.94.146 140384 port 15730682 140384 nas_port_type Virtual 140386 username alireza 140386 kill_reason Relative expiration date has reached 140386 unique_id port 140386 bytes_out 0 140386 bytes_in 0 140386 station_ip 5.120.94.146 140386 port 15730683 140386 nas_port_type Virtual 140390 username hashtadani3 140390 mac 140390 bytes_out 0 140390 bytes_in 0 140390 station_ip 37.129.67.30 140390 port 409 140390 unique_id port 140390 remote_ip 10.8.0.154 140394 username alireza 140394 kill_reason Relative expiration date has reached 140394 unique_id port 140394 bytes_out 0 140394 bytes_in 0 140394 station_ip 5.120.38.10 140394 port 15730687 140394 nas_port_type Virtual 140396 username hashtadani3 140396 mac 140396 bytes_out 0 140396 bytes_in 0 140396 station_ip 37.129.67.30 140396 port 218 140396 unique_id port 140396 remote_ip 10.8.1.94 140397 username alihosseini1 140397 mac 140397 bytes_out 0 140397 bytes_in 0 140397 station_ip 5.120.41.110 140397 port 219 140397 unique_id port 140397 remote_ip 10.8.1.106 140400 username hashtadani3 140400 mac 140400 bytes_out 0 140400 bytes_in 0 140400 station_ip 37.129.67.30 140400 port 412 140400 unique_id port 140400 remote_ip 10.8.0.154 140401 username aminvpn 140401 mac 140401 bytes_out 49452 140401 bytes_in 76403 140401 station_ip 83.122.41.30 140401 port 402 140401 unique_id port 140401 remote_ip 10.8.0.14 140406 username saeed9658 140406 kill_reason Another user logged on this global unique id 140406 mac 140406 bytes_out 0 140406 bytes_in 0 140406 station_ip 5.119.222.178 140406 port 406 140406 unique_id port 140406 remote_ip 10.8.0.62 140407 username hashtadani3 140407 mac 140407 bytes_out 0 140407 bytes_in 0 140407 station_ip 37.129.67.30 140407 port 402 140407 unique_id port 140407 remote_ip 10.8.0.154 140408 username amir 140408 mac 140408 bytes_out 0 140408 bytes_in 0 140408 station_ip 46.225.214.125 140408 port 413 140408 unique_id port 140408 remote_ip 10.8.0.50 140411 username sabaghnezhad 140411 mac 140411 bytes_out 42503 140411 bytes_in 57302 140411 station_ip 5.217.135.110 140411 port 409 140411 unique_id port 140411 remote_ip 10.8.0.186 140415 username hashtadani3 140415 kill_reason Maximum check online fails reached 140415 mac 140415 bytes_out 0 140415 bytes_in 0 140415 station_ip 37.129.67.30 140415 port 415 140415 unique_id port 140416 username aminvpn 140416 mac 140416 bytes_out 47179 140416 bytes_in 65027 140416 station_ip 83.122.41.30 140416 port 412 140416 unique_id port 140416 remote_ip 10.8.0.14 140392 unique_id port 140392 remote_ip 10.8.0.154 140393 username alireza 140393 kill_reason Relative expiration date has reached 140393 unique_id port 140393 bytes_out 0 140393 bytes_in 0 140393 station_ip 5.120.38.10 140393 port 15730686 140393 nas_port_type Virtual 140395 username alireza 140395 kill_reason Relative expiration date has reached 140395 unique_id port 140395 bytes_out 0 140395 bytes_in 0 140395 station_ip 5.120.38.10 140395 port 15730688 140395 nas_port_type Virtual 140399 username alihosseini1 140399 kill_reason Maximum check online fails reached 140399 mac 140399 bytes_out 0 140399 bytes_in 0 140399 station_ip 5.120.41.110 140399 port 394 140399 unique_id port 140402 username aminvpn 140402 mac 140402 bytes_out 0 140402 bytes_in 0 140402 station_ip 5.233.49.34 140402 port 412 140402 unique_id port 140402 remote_ip 10.8.0.14 140403 username alireza 140403 kill_reason Relative expiration date has reached 140403 unique_id port 140403 bytes_out 0 140403 bytes_in 0 140403 station_ip 5.120.38.10 140403 port 15730689 140403 nas_port_type Virtual 140405 username hashtadani3 140405 mac 140405 bytes_out 0 140405 bytes_in 0 140405 station_ip 37.129.67.30 140405 port 402 140405 unique_id port 140405 remote_ip 10.8.0.154 140410 username hashtadani3 140410 mac 140410 bytes_out 0 140410 bytes_in 0 140410 station_ip 37.129.67.30 140410 port 402 140410 unique_id port 140410 remote_ip 10.8.0.154 140413 username mohammadjavad 140413 mac 140413 bytes_out 1748920 140413 bytes_in 21740839 140413 station_ip 37.129.6.89 140413 port 405 140413 unique_id port 140413 remote_ip 10.8.0.142 140414 username hashtadani3 140414 mac 140414 bytes_out 0 140414 bytes_in 0 140414 station_ip 37.129.67.30 140414 port 218 140414 unique_id port 140414 remote_ip 10.8.1.94 140418 username hashtadani3 140418 kill_reason Maximum check online fails reached 140418 mac 140418 bytes_out 0 140418 bytes_in 0 140418 station_ip 37.129.67.30 140418 port 405 140418 unique_id port 140419 username hashtadani3 140419 kill_reason Maximum check online fails reached 140419 mac 140419 bytes_out 0 140419 bytes_in 0 140419 station_ip 37.129.67.30 140419 port 412 140419 unique_id port 140421 username meysam 140421 mac 140421 bytes_out 1365461 140421 bytes_in 18481724 140421 station_ip 188.158.49.222 140421 port 404 140421 unique_id port 140421 remote_ip 10.8.0.110 140422 username avaanna 140422 mac 140422 bytes_out 117718 140422 bytes_in 133992 140422 station_ip 83.123.250.115 140422 port 379 140422 unique_id port 140422 remote_ip 10.8.0.94 140424 username hashtadani3 140424 kill_reason Maximum check online fails reached 140424 mac 140424 bytes_out 0 140424 bytes_in 0 140424 station_ip 37.129.67.30 140424 port 417 140424 unique_id port 140428 username hashtadani3 140428 kill_reason Maximum check online fails reached 140428 mac 140428 bytes_out 0 140428 bytes_in 0 140428 station_ip 37.129.67.30 140428 port 404 140428 unique_id port 140431 username amir 140431 mac 140431 bytes_out 61862 140431 bytes_in 453330 140431 station_ip 46.225.214.125 140431 port 414 140431 unique_id port 140431 remote_ip 10.8.0.50 140433 username kalantary 140433 mac 140433 bytes_out 10236 140433 bytes_in 21321 140433 station_ip 83.123.6.49 140433 port 414 140433 unique_id port 140433 remote_ip 10.8.0.98 140440 username sedighe 140440 mac 140440 bytes_out 128129 140440 bytes_in 411104 140440 station_ip 37.129.236.208 140440 port 413 140440 unique_id port 140440 remote_ip 10.8.0.146 140442 username alireza 140442 kill_reason Relative expiration date has reached 140442 unique_id port 140423 username jafari 140423 kill_reason Another user logged on this global unique id 140423 mac 140423 bytes_out 0 140423 bytes_in 0 140423 station_ip 5.134.155.135 140423 port 358 140423 unique_id port 140427 username aminvpn 140427 mac 140427 bytes_out 35645 140427 bytes_in 72821 140427 station_ip 83.122.41.30 140427 port 418 140427 unique_id port 140427 remote_ip 10.8.0.14 140429 username aminvpn 140429 mac 140429 bytes_out 0 140429 bytes_in 0 140429 station_ip 5.233.49.34 140429 port 419 140429 unique_id port 140429 remote_ip 10.8.0.14 140432 username vanila 140432 mac 140432 bytes_out 19298233 140432 bytes_in 32396439 140432 station_ip 83.122.207.253 140432 port 392 140432 unique_id port 140432 remote_ip 10.8.0.178 140434 username forozandeh1 140434 mac 140434 bytes_out 0 140434 bytes_in 0 140434 station_ip 83.122.219.118 140434 port 416 140434 unique_id port 140434 remote_ip 10.8.0.130 140436 username alireza 140436 kill_reason Relative expiration date has reached 140436 unique_id port 140436 bytes_out 0 140436 bytes_in 0 140436 station_ip 5.120.38.10 140436 port 15730690 140436 nas_port_type Virtual 140437 username alireza 140437 kill_reason Relative expiration date has reached 140437 unique_id port 140437 bytes_out 0 140437 bytes_in 0 140437 station_ip 5.120.38.10 140437 port 15730691 140437 nas_port_type Virtual 140439 username aminvpn 140439 mac 140439 bytes_out 80543 140439 bytes_in 113591 140439 station_ip 83.122.41.30 140439 port 419 140439 unique_id port 140439 remote_ip 10.8.0.14 140441 username aminvpn 140441 mac 140441 bytes_out 0 140441 bytes_in 0 140441 station_ip 5.233.49.34 140441 port 392 140441 unique_id port 140441 remote_ip 10.8.0.14 140443 username alireza 140443 kill_reason Relative expiration date has reached 140443 unique_id port 140443 bytes_out 0 140443 bytes_in 0 140443 station_ip 5.120.38.10 140443 port 15730695 140443 nas_port_type Virtual 140445 username alireza 140445 kill_reason Relative expiration date has reached 140445 unique_id port 140445 bytes_out 0 140445 bytes_in 0 140445 station_ip 5.120.38.10 140445 port 15730696 140445 nas_port_type Virtual 140447 username jafari 140447 kill_reason Another user logged on this global unique id 140447 mac 140447 bytes_out 0 140447 bytes_in 0 140447 station_ip 5.134.155.135 140447 port 358 140447 unique_id port 140450 username sedighe 140450 mac 140450 bytes_out 33407 140450 bytes_in 26881 140450 station_ip 37.129.236.208 140450 port 414 140450 unique_id port 140450 remote_ip 10.8.0.146 140452 username hashtadani3 140452 mac 140452 bytes_out 0 140452 bytes_in 0 140452 station_ip 37.129.67.30 140452 port 413 140452 unique_id port 140452 remote_ip 10.8.0.154 140453 username aminvpn 140453 mac 140453 bytes_out 0 140453 bytes_in 0 140453 station_ip 5.233.49.34 140453 port 414 140453 unique_id port 140453 remote_ip 10.8.0.14 140460 username hashtadani3 140460 kill_reason Maximum check online fails reached 140460 mac 140460 bytes_out 0 140460 bytes_in 0 140460 station_ip 37.129.67.30 140460 port 420 140460 unique_id port 140462 username hashtadani3 140462 kill_reason Maximum check online fails reached 140462 mac 140462 bytes_out 0 140462 bytes_in 0 140462 station_ip 37.129.67.30 140462 port 409 140462 unique_id port 140464 username morteza 140464 mac 140464 bytes_out 0 140464 bytes_in 0 140464 station_ip 83.122.192.123 140464 port 418 140464 unique_id port 140464 remote_ip 10.8.0.46 140466 username hashtadani3 140466 mac 140466 bytes_out 0 140466 bytes_in 0 140466 station_ip 37.129.67.30 140466 port 218 140430 port 414 140430 unique_id port 140430 remote_ip 10.8.0.74 140435 username zotaher 140435 mac 140435 bytes_out 1783705 140435 bytes_in 19284934 140435 station_ip 37.129.218.125 140435 port 420 140435 unique_id port 140435 remote_ip 10.8.0.194 140438 username alireza 140438 kill_reason Relative expiration date has reached 140438 unique_id port 140438 bytes_out 0 140438 bytes_in 0 140438 station_ip 5.120.38.10 140438 port 15730692 140438 nas_port_type Virtual 140454 username hashtadani3 140454 mac 140454 bytes_out 0 140454 bytes_in 0 140454 station_ip 37.129.67.30 140454 port 413 140454 unique_id port 140454 remote_ip 10.8.0.154 140456 username barzegar 140456 mac 140456 bytes_out 93033 140456 bytes_in 129493 140456 station_ip 5.119.21.255 140456 port 409 140456 unique_id port 140456 remote_ip 10.8.0.234 140458 username morteza 140458 kill_reason Another user logged on this global unique id 140458 mac 140458 bytes_out 0 140458 bytes_in 0 140458 station_ip 83.122.192.123 140458 port 418 140458 unique_id port 140458 remote_ip 10.8.0.46 140467 username morteza 140467 mac 140467 bytes_out 0 140467 bytes_in 0 140467 station_ip 83.122.192.123 140467 port 418 140467 unique_id port 140467 remote_ip 10.8.0.46 140469 username alihosseini1 140469 mac 140469 bytes_out 2629 140469 bytes_in 4798 140469 station_ip 5.120.146.39 140469 port 423 140469 unique_id port 140469 remote_ip 10.8.0.166 140473 username morteza 140473 mac 140473 bytes_out 0 140473 bytes_in 0 140473 station_ip 83.122.192.123 140473 port 426 140473 unique_id port 140473 remote_ip 10.8.0.46 140480 username vanila 140480 mac 140480 bytes_out 0 140480 bytes_in 0 140480 station_ip 83.122.207.253 140480 port 379 140480 unique_id port 140480 remote_ip 10.8.0.178 140482 username saeed9658 140482 mac 140482 bytes_out 0 140482 bytes_in 0 140482 station_ip 5.119.222.178 140482 port 406 140482 unique_id port 140484 username saeed9658 140484 mac 140484 bytes_out 0 140484 bytes_in 0 140484 station_ip 5.119.222.178 140484 port 379 140484 unique_id port 140484 remote_ip 10.8.0.62 140486 username hashtadani3 140486 mac 140486 bytes_out 0 140486 bytes_in 0 140486 station_ip 37.129.67.30 140486 port 218 140486 unique_id port 140486 remote_ip 10.8.1.94 140489 username aminvpn 140489 kill_reason Maximum check online fails reached 140489 mac 140489 bytes_out 0 140489 bytes_in 0 140489 station_ip 5.233.49.34 140489 port 358 140489 unique_id port 140497 username vanila 140497 mac 140497 bytes_out 0 140497 bytes_in 0 140497 station_ip 83.122.207.253 140497 port 406 140497 unique_id port 140497 remote_ip 10.8.0.178 140499 username godarzi 140499 kill_reason Another user logged on this global unique id 140499 mac 140499 bytes_out 0 140499 bytes_in 0 140499 station_ip 5.202.62.33 140499 port 374 140499 unique_id port 140499 remote_ip 10.8.0.174 140501 username hashtadani3 140501 mac 140501 bytes_out 0 140501 bytes_in 0 140501 station_ip 37.129.67.30 140501 port 218 140501 unique_id port 140501 remote_ip 10.8.1.94 140503 username hashtadani3 140503 mac 140503 bytes_out 0 140503 bytes_in 0 140503 station_ip 37.129.67.30 140503 port 218 140503 unique_id port 140503 remote_ip 10.8.1.94 140504 username hashtadani3 140504 mac 140504 bytes_out 0 140504 bytes_in 0 140504 station_ip 37.129.67.30 140504 port 424 140504 unique_id port 140504 remote_ip 10.8.0.154 140509 username alihosseini1 140509 mac 140509 bytes_out 0 140509 bytes_in 0 140509 station_ip 5.120.146.39 140442 bytes_out 0 140442 bytes_in 0 140442 station_ip 5.120.38.10 140442 port 15730693 140442 nas_port_type Virtual 140444 username hashtadani3 140444 kill_reason Another user logged on this global unique id 140444 mac 140444 bytes_out 0 140444 bytes_in 0 140444 station_ip 37.129.67.30 140444 port 218 140444 unique_id port 140444 remote_ip 10.8.1.94 140446 username amir 140446 mac 140446 bytes_out 51648 140446 bytes_in 317660 140446 station_ip 46.225.214.125 140446 port 413 140446 unique_id port 140446 remote_ip 10.8.0.50 140448 username hashtadani3 140448 mac 140448 bytes_out 0 140448 bytes_in 0 140448 station_ip 37.129.67.30 140448 port 218 140448 unique_id port 140449 username hashtadani3 140449 mac 140449 bytes_out 0 140449 bytes_in 0 140449 station_ip 37.129.67.30 140449 port 413 140449 unique_id port 140449 remote_ip 10.8.0.154 140451 username aminvpn 140451 mac 140451 bytes_out 40262 140451 bytes_in 74490 140451 station_ip 83.122.41.30 140451 port 392 140451 unique_id port 140451 remote_ip 10.8.0.14 140455 username vanila 140455 mac 140455 bytes_out 4505374 140455 bytes_in 1857666 140455 station_ip 83.122.207.253 140455 port 416 140455 unique_id port 140455 remote_ip 10.8.0.178 140457 username hashtadani3 140457 kill_reason Maximum check online fails reached 140457 mac 140457 bytes_out 0 140457 bytes_in 0 140457 station_ip 37.129.67.30 140457 port 419 140457 unique_id port 140459 username alihosseini1 140459 mac 140459 bytes_out 1008757 140459 bytes_in 6482383 140459 station_ip 5.120.146.39 140459 port 379 140459 unique_id port 140459 remote_ip 10.8.0.166 140461 username morteza 140461 mac 140461 bytes_out 0 140461 bytes_in 0 140461 station_ip 83.122.192.123 140461 port 418 140461 unique_id port 140463 username moradi 140463 mac 140463 bytes_out 0 140463 bytes_in 0 140463 station_ip 37.129.10.33 140463 port 218 140463 unique_id port 140463 remote_ip 10.8.1.202 140465 username aminvpn 140465 unique_id port 140465 terminate_cause Lost-Carrier 140465 bytes_out 207969 140465 bytes_in 1078281 140465 station_ip 5.233.49.34 140465 port 15730697 140465 nas_port_type Virtual 140465 remote_ip 5.5.5.171 140468 username hashtadani3 140468 kill_reason Maximum check online fails reached 140468 mac 140468 bytes_out 0 140468 bytes_in 0 140468 station_ip 37.129.67.30 140468 port 422 140468 unique_id port 140474 username hashtadani3 140474 kill_reason Maximum check online fails reached 140474 mac 140474 bytes_out 0 140474 bytes_in 0 140474 station_ip 37.129.67.30 140474 port 425 140474 unique_id port 140476 username jafari 140476 mac 140476 bytes_out 0 140476 bytes_in 0 140476 station_ip 5.134.155.135 140476 port 358 140476 unique_id port 140478 username morteza 140478 mac 140478 bytes_out 0 140478 bytes_in 0 140478 station_ip 83.122.192.123 140478 port 426 140478 unique_id port 140478 remote_ip 10.8.0.46 140483 username sedighe 140483 mac 140483 bytes_out 0 140483 bytes_in 0 140483 station_ip 37.129.236.208 140483 port 392 140483 unique_id port 140483 remote_ip 10.8.0.146 140487 username hashtadani3 140487 mac 140487 bytes_out 0 140487 bytes_in 0 140487 station_ip 37.129.67.30 140487 port 218 140487 unique_id port 140487 remote_ip 10.8.1.94 140491 username saeed9658 140491 mac 140491 bytes_out 0 140491 bytes_in 0 140491 station_ip 5.119.222.178 140491 port 379 140491 unique_id port 140491 remote_ip 10.8.0.62 140492 username hashtadani3 140492 mac 140492 bytes_out 0 140492 bytes_in 0 140466 unique_id port 140466 remote_ip 10.8.1.94 140470 username hashtadani3 140470 mac 140470 bytes_out 0 140470 bytes_in 0 140470 station_ip 37.129.67.30 140470 port 218 140470 unique_id port 140470 remote_ip 10.8.1.94 140471 username kalantary 140471 mac 140471 bytes_out 0 140471 bytes_in 0 140471 station_ip 83.123.19.153 140471 port 379 140471 unique_id port 140471 remote_ip 10.8.0.98 140472 username hashtadani3 140472 kill_reason Maximum check online fails reached 140472 mac 140472 bytes_out 0 140472 bytes_in 0 140472 station_ip 37.129.67.30 140472 port 423 140472 unique_id port 140475 username hashtadani3 140475 mac 140475 bytes_out 0 140475 bytes_in 0 140475 station_ip 37.129.67.30 140475 port 427 140475 unique_id port 140475 remote_ip 10.8.0.154 140477 username forozandeh1 140477 mac 140477 bytes_out 0 140477 bytes_in 0 140477 station_ip 37.129.42.26 140477 port 416 140477 unique_id port 140477 remote_ip 10.8.0.130 140479 username barzegar 140479 mac 140479 bytes_out 5193 140479 bytes_in 8192 140479 station_ip 5.119.21.255 140479 port 219 140479 unique_id port 140479 remote_ip 10.8.1.174 140481 username amir 140481 mac 140481 bytes_out 0 140481 bytes_in 0 140481 station_ip 46.225.214.125 140481 port 424 140481 unique_id port 140481 remote_ip 10.8.0.50 140485 username saeed9658 140485 mac 140485 bytes_out 0 140485 bytes_in 0 140485 station_ip 5.119.222.178 140485 port 379 140485 unique_id port 140485 remote_ip 10.8.0.62 140488 username aminvpn 140488 unique_id port 140488 terminate_cause User-Request 140488 bytes_out 4586118 140488 bytes_in 140946260 140488 station_ip 31.57.142.129 140488 port 15730694 140488 nas_port_type Virtual 140488 remote_ip 5.5.5.169 140490 username saeed9658 140490 mac 140490 bytes_out 0 140490 bytes_in 0 140490 station_ip 5.119.222.178 140490 port 379 140490 unique_id port 140490 remote_ip 10.8.0.62 140493 username hashtadani3 140493 mac 140493 bytes_out 0 140493 bytes_in 0 140493 station_ip 37.129.67.30 140493 port 392 140493 unique_id port 140493 remote_ip 10.8.0.154 140495 username saeed9658 140495 mac 140495 bytes_out 0 140495 bytes_in 0 140495 station_ip 5.119.222.178 140495 port 379 140495 unique_id port 140495 remote_ip 10.8.0.62 140496 username barzegar 140496 mac 140496 bytes_out 0 140496 bytes_in 0 140496 station_ip 5.119.21.255 140496 port 421 140496 unique_id port 140496 remote_ip 10.8.0.234 140498 username hashtadani3 140498 mac 140498 bytes_out 0 140498 bytes_in 0 140498 station_ip 37.129.67.30 140498 port 218 140498 unique_id port 140498 remote_ip 10.8.1.94 140500 username hashtadani3 140500 kill_reason Maximum check online fails reached 140500 mac 140500 bytes_out 0 140500 bytes_in 0 140500 station_ip 37.129.67.30 140500 port 392 140500 unique_id port 140502 username hashtadani3 140502 mac 140502 bytes_out 0 140502 bytes_in 0 140502 station_ip 37.129.67.30 140502 port 218 140502 unique_id port 140502 remote_ip 10.8.1.94 140506 username sedighe 140506 mac 140506 bytes_out 0 140506 bytes_in 0 140506 station_ip 37.129.236.208 140506 port 379 140506 unique_id port 140506 remote_ip 10.8.0.146 140507 username barzegar 140507 mac 140507 bytes_out 0 140507 bytes_in 0 140507 station_ip 5.119.21.255 140507 port 421 140507 unique_id port 140507 remote_ip 10.8.0.234 140511 username alihosseini1 140511 mac 140511 bytes_out 0 140511 bytes_in 0 140511 station_ip 5.120.146.39 140511 port 418 140511 unique_id port 140492 station_ip 37.129.67.30 140492 port 218 140492 unique_id port 140492 remote_ip 10.8.1.94 140494 username avaanna 140494 mac 140494 bytes_out 0 140494 bytes_in 0 140494 station_ip 83.123.250.115 140494 port 421 140494 unique_id port 140494 remote_ip 10.8.0.94 140505 username saeed9658 140505 mac 140505 bytes_out 0 140505 bytes_in 0 140505 station_ip 5.119.222.178 140505 port 416 140505 unique_id port 140505 remote_ip 10.8.0.62 140508 username malekpoir 140508 mac 140508 bytes_out 1830119 140508 bytes_in 17577119 140508 station_ip 5.119.229.8 140508 port 217 140508 unique_id port 140508 remote_ip 10.8.1.54 140510 username hashtadani3 140510 mac 140510 bytes_out 0 140510 bytes_in 0 140510 station_ip 37.129.67.30 140510 port 421 140510 unique_id port 140510 remote_ip 10.8.0.154 140514 username alihosseini1 140514 mac 140514 bytes_out 0 140514 bytes_in 0 140514 station_ip 5.120.146.39 140514 port 421 140514 unique_id port 140514 remote_ip 10.8.0.166 140516 username hashtadani3 140516 mac 140516 bytes_out 0 140516 bytes_in 0 140516 station_ip 37.129.67.30 140516 port 418 140516 unique_id port 140516 remote_ip 10.8.0.154 140519 username alihosseini1 140519 mac 140519 bytes_out 0 140519 bytes_in 0 140519 station_ip 5.120.146.39 140519 port 421 140519 unique_id port 140519 remote_ip 10.8.0.166 140525 username hashtadani3 140525 mac 140525 bytes_out 0 140525 bytes_in 0 140525 station_ip 37.129.67.30 140525 port 413 140525 unique_id port 140525 remote_ip 10.8.0.154 140530 username amir 140530 mac 140530 bytes_out 0 140530 bytes_in 0 140530 station_ip 46.225.214.125 140530 port 379 140530 unique_id port 140530 remote_ip 10.8.0.50 140531 username kamali2 140531 mac 140531 bytes_out 0 140531 bytes_in 0 140531 station_ip 5.120.161.190 140531 port 424 140531 unique_id port 140531 remote_ip 10.8.0.214 140535 username kalantary 140535 mac 140535 bytes_out 0 140535 bytes_in 0 140535 station_ip 83.123.100.57 140535 port 424 140535 unique_id port 140535 remote_ip 10.8.0.98 140538 username hashtadani3 140538 kill_reason Maximum check online fails reached 140538 mac 140538 bytes_out 0 140538 bytes_in 0 140538 station_ip 37.129.67.30 140538 port 430 140538 unique_id port 140543 username hashtadani3 140543 mac 140543 bytes_out 0 140543 bytes_in 0 140543 station_ip 37.129.67.30 140543 port 217 140543 unique_id port 140543 remote_ip 10.8.1.94 140544 username hashtadani3 140544 mac 140544 bytes_out 0 140544 bytes_in 0 140544 station_ip 37.129.67.30 140544 port 217 140544 unique_id port 140544 remote_ip 10.8.1.94 140546 username hashtadani3 140546 mac 140546 bytes_out 0 140546 bytes_in 0 140546 station_ip 37.129.67.30 140546 port 217 140546 unique_id port 140546 remote_ip 10.8.1.94 140547 username hashtadani3 140547 mac 140547 bytes_out 0 140547 bytes_in 0 140547 station_ip 37.129.67.30 140547 port 217 140547 unique_id port 140547 remote_ip 10.8.1.94 140555 username barzegar 140555 mac 140555 bytes_out 0 140555 bytes_in 0 140555 station_ip 5.119.21.255 140555 port 418 140555 unique_id port 140555 remote_ip 10.8.0.234 140557 username sekonji3 140557 mac 140557 bytes_out 0 140557 bytes_in 0 140557 station_ip 83.122.3.23 140557 port 217 140557 unique_id port 140557 remote_ip 10.8.1.238 140567 username hashtadani3 140567 mac 140567 bytes_out 0 140567 bytes_in 0 140567 station_ip 37.129.67.30 140567 port 374 140567 unique_id port 140509 port 418 140509 unique_id port 140509 remote_ip 10.8.0.166 140512 username jafari 140512 kill_reason Another user logged on this global unique id 140512 mac 140512 bytes_out 0 140512 bytes_in 0 140512 station_ip 5.134.155.135 140512 port 427 140512 unique_id port 140512 remote_ip 10.8.0.242 140515 username saeed9658 140515 mac 140515 bytes_out 0 140515 bytes_in 0 140515 station_ip 5.119.222.178 140515 port 379 140515 unique_id port 140515 remote_ip 10.8.0.62 140518 username hashtadani3 140518 mac 140518 bytes_out 0 140518 bytes_in 0 140518 station_ip 37.129.67.30 140518 port 217 140518 unique_id port 140518 remote_ip 10.8.1.94 140520 username hashtadani3 140520 mac 140520 bytes_out 0 140520 bytes_in 0 140520 station_ip 37.129.67.30 140520 port 217 140520 unique_id port 140520 remote_ip 10.8.1.94 140523 username hashtadani3 140523 mac 140523 bytes_out 0 140523 bytes_in 0 140523 station_ip 37.129.67.30 140523 port 217 140523 unique_id port 140523 remote_ip 10.8.1.94 140527 username aminvpn 140527 unique_id port 140527 terminate_cause Lost-Carrier 140527 bytes_out 2228358 140527 bytes_in 60926971 140527 station_ip 31.57.142.129 140527 port 15730699 140527 nas_port_type Virtual 140527 remote_ip 5.5.5.176 140529 username sekonji3 140529 mac 140529 bytes_out 0 140529 bytes_in 0 140529 station_ip 83.122.3.23 140529 port 424 140529 unique_id port 140529 remote_ip 10.8.0.6 140532 username hashtadani3 140532 mac 140532 bytes_out 0 140532 bytes_in 0 140532 station_ip 37.129.67.30 140532 port 429 140532 unique_id port 140532 remote_ip 10.8.0.154 140533 username hashtadani3 140533 kill_reason Maximum number of concurrent logins reached 140533 mac 140533 bytes_out 0 140533 bytes_in 0 140533 station_ip 37.129.67.30 140533 port 217 140533 unique_id port 140540 username mansour 140540 mac 140540 bytes_out 0 140540 bytes_in 0 140540 station_ip 5.202.62.30 140540 port 414 140540 unique_id port 140540 remote_ip 10.8.0.30 140542 username aminvpn 140542 unique_id port 140542 terminate_cause Lost-Carrier 140542 bytes_out 1168305 140542 bytes_in 5188941 140542 station_ip 5.233.49.34 140542 port 15730698 140542 nas_port_type Virtual 140542 remote_ip 5.5.5.175 140545 username alihosseini1 140545 mac 140545 bytes_out 0 140545 bytes_in 0 140545 station_ip 5.120.146.39 140545 port 413 140545 unique_id port 140545 remote_ip 10.8.0.166 140548 username hashtadani3 140548 mac 140548 bytes_out 0 140548 bytes_in 0 140548 station_ip 37.129.67.30 140548 port 413 140548 unique_id port 140548 remote_ip 10.8.0.154 140551 username morteza 140551 kill_reason Another user logged on this global unique id 140551 mac 140551 bytes_out 0 140551 bytes_in 0 140551 station_ip 83.122.192.123 140551 port 416 140551 unique_id port 140551 remote_ip 10.8.0.46 140552 username alihosseini1 140552 mac 140552 bytes_out 0 140552 bytes_in 0 140552 station_ip 5.120.146.39 140552 port 217 140552 unique_id port 140552 remote_ip 10.8.1.106 140554 username hashtadani3 140554 mac 140554 bytes_out 0 140554 bytes_in 0 140554 station_ip 37.129.67.30 140554 port 217 140554 unique_id port 140554 remote_ip 10.8.1.94 140559 username hashtadani3 140559 mac 140559 bytes_out 0 140559 bytes_in 0 140559 station_ip 37.129.67.30 140559 port 374 140559 unique_id port 140559 remote_ip 10.8.0.154 140561 username hashtadani3 140561 mac 140561 bytes_out 0 140561 bytes_in 0 140561 station_ip 37.129.67.30 140561 port 374 140561 unique_id port 140561 remote_ip 10.8.0.154 140562 username hashtadani3 140511 remote_ip 10.8.0.166 140513 username barzegar 140513 mac 140513 bytes_out 0 140513 bytes_in 0 140513 station_ip 5.119.21.255 140513 port 421 140513 unique_id port 140513 remote_ip 10.8.0.234 140517 username alihosseini1 140517 mac 140517 bytes_out 0 140517 bytes_in 0 140517 station_ip 5.120.146.39 140517 port 421 140517 unique_id port 140517 remote_ip 10.8.0.166 140521 username alihosseini1 140521 mac 140521 bytes_out 0 140521 bytes_in 0 140521 station_ip 5.120.146.39 140521 port 421 140521 unique_id port 140521 remote_ip 10.8.0.166 140522 username aminvpn 140522 mac 140522 bytes_out 0 140522 bytes_in 0 140522 station_ip 83.122.41.30 140522 port 413 140522 unique_id port 140522 remote_ip 10.8.0.14 140524 username aminvpn 140524 mac 140524 bytes_out 0 140524 bytes_in 0 140524 station_ip 5.233.49.34 140524 port 421 140524 unique_id port 140524 remote_ip 10.8.0.14 140526 username hashtadani3 140526 kill_reason Maximum check online fails reached 140526 mac 140526 bytes_out 0 140526 bytes_in 0 140526 station_ip 37.129.67.30 140526 port 428 140526 unique_id port 140528 username hashtadani3 140528 mac 140528 bytes_out 0 140528 bytes_in 0 140528 station_ip 37.129.67.30 140528 port 429 140528 unique_id port 140528 remote_ip 10.8.0.154 140534 username hashtadani3 140534 kill_reason Maximum number of concurrent logins reached 140534 mac 140534 bytes_out 0 140534 bytes_in 0 140534 station_ip 37.129.67.30 140534 port 431 140534 unique_id port 140536 username jafari 140536 kill_reason Another user logged on this global unique id 140536 mac 140536 bytes_out 0 140536 bytes_in 0 140536 station_ip 5.134.155.135 140536 port 427 140536 unique_id port 140537 username jafari 140537 mac 140537 bytes_out 0 140537 bytes_in 0 140537 station_ip 5.134.155.135 140537 port 427 140537 unique_id port 140539 username hashtadani3 140539 kill_reason Maximum check online fails reached 140539 mac 140539 bytes_out 0 140539 bytes_in 0 140539 station_ip 37.129.67.30 140539 port 429 140539 unique_id port 140541 username sekonji3 140541 mac 140541 bytes_out 0 140541 bytes_in 0 140541 station_ip 83.122.3.23 140541 port 414 140541 unique_id port 140541 remote_ip 10.8.0.6 140549 username aminvpn 140549 mac 140549 bytes_out 0 140549 bytes_in 0 140549 station_ip 83.122.41.30 140549 port 421 140549 unique_id port 140549 remote_ip 10.8.0.14 140550 username aminvpn 140550 mac 140550 bytes_out 0 140550 bytes_in 0 140550 station_ip 5.233.49.34 140550 port 413 140550 unique_id port 140550 remote_ip 10.8.0.14 140553 username hashtadani3 140553 mac 140553 bytes_out 0 140553 bytes_in 0 140553 station_ip 37.129.67.30 140553 port 414 140553 unique_id port 140553 remote_ip 10.8.0.154 140556 username godarzi 140556 mac 140556 bytes_out 0 140556 bytes_in 0 140556 station_ip 5.202.62.33 140556 port 374 140556 unique_id port 140558 username amir 140558 mac 140558 bytes_out 0 140558 bytes_in 0 140558 station_ip 46.225.214.125 140558 port 414 140558 unique_id port 140558 remote_ip 10.8.0.50 140560 username sekonji3 140560 mac 140560 bytes_out 0 140560 bytes_in 0 140560 station_ip 83.122.3.23 140560 port 217 140560 unique_id port 140560 remote_ip 10.8.1.238 140564 username hashtadani3 140564 mac 140564 bytes_out 0 140564 bytes_in 0 140564 station_ip 37.129.67.30 140564 port 219 140564 unique_id port 140564 remote_ip 10.8.1.94 140566 username alihosseini1 140566 mac 140566 bytes_out 0 140566 bytes_in 0 140562 mac 140562 bytes_out 0 140562 bytes_in 0 140562 station_ip 37.129.67.30 140562 port 374 140562 unique_id port 140562 remote_ip 10.8.0.154 140563 username hashtadani3 140563 mac 140563 bytes_out 0 140563 bytes_in 0 140563 station_ip 37.129.67.30 140563 port 219 140563 unique_id port 140563 remote_ip 10.8.1.94 140565 username hashtadani3 140565 mac 140565 bytes_out 0 140565 bytes_in 0 140565 station_ip 37.129.67.30 140565 port 418 140565 unique_id port 140565 remote_ip 10.8.0.154 140568 username hosseine 140568 kill_reason Another user logged on this global unique id 140568 mac 140568 bytes_out 0 140568 bytes_in 0 140568 station_ip 83.122.71.104 140568 port 377 140568 unique_id port 140571 username morteza 140571 kill_reason Another user logged on this global unique id 140571 mac 140571 bytes_out 0 140571 bytes_in 0 140571 station_ip 83.122.192.123 140571 port 416 140571 unique_id port 140575 username hashtadani3 140575 mac 140575 bytes_out 0 140575 bytes_in 0 140575 station_ip 37.129.67.30 140575 port 374 140575 unique_id port 140575 remote_ip 10.8.0.154 140577 username aminvpn 140577 mac 140577 bytes_out 0 140577 bytes_in 0 140577 station_ip 83.122.41.30 140577 port 413 140577 unique_id port 140577 remote_ip 10.8.0.14 140588 username godarzi 140588 mac 140588 bytes_out 0 140588 bytes_in 0 140588 station_ip 5.202.62.33 140588 port 418 140588 unique_id port 140588 remote_ip 10.8.0.174 140589 username alihosseini1 140589 mac 140589 bytes_out 0 140589 bytes_in 0 140589 station_ip 5.120.146.39 140589 port 413 140589 unique_id port 140589 remote_ip 10.8.0.166 140591 username sekonji3 140591 mac 140591 bytes_out 0 140591 bytes_in 0 140591 station_ip 83.122.3.23 140591 port 219 140591 unique_id port 140591 remote_ip 10.8.1.238 140593 username alihosseini1 140593 mac 140593 bytes_out 0 140593 bytes_in 0 140593 station_ip 5.120.146.39 140593 port 413 140593 unique_id port 140593 remote_ip 10.8.0.166 140596 username hashtadani3 140596 mac 140596 bytes_out 0 140596 bytes_in 0 140596 station_ip 37.129.67.30 140596 port 374 140596 unique_id port 140596 remote_ip 10.8.0.154 140597 username hashtadani3 140597 mac 140597 bytes_out 0 140597 bytes_in 0 140597 station_ip 37.129.67.30 140597 port 413 140597 unique_id port 140597 remote_ip 10.8.0.154 140598 username kordestani 140598 kill_reason Another user logged on this global unique id 140598 mac 140598 bytes_out 0 140598 bytes_in 0 140598 station_ip 151.235.113.81 140598 port 379 140598 unique_id port 140610 username farhad2 140610 mac 140610 bytes_out 1660606 140610 bytes_in 14172532 140610 station_ip 5.119.222.213 140610 port 217 140610 unique_id port 140610 remote_ip 10.8.1.222 140611 username hashtadani3 140611 mac 140611 bytes_out 0 140611 bytes_in 0 140611 station_ip 37.129.67.30 140611 port 379 140611 unique_id port 140611 remote_ip 10.8.0.154 140612 username alihosseini1 140612 mac 140612 bytes_out 0 140612 bytes_in 0 140612 station_ip 5.120.146.39 140612 port 424 140612 unique_id port 140612 remote_ip 10.8.0.166 140614 username farhad2 140614 mac 140614 bytes_out 48197 140614 bytes_in 89095 140614 station_ip 5.119.222.213 140614 port 217 140614 unique_id port 140614 remote_ip 10.8.1.222 140625 username moradi 140625 mac 140625 bytes_out 1621294 140625 bytes_in 27931908 140625 station_ip 37.129.90.225 140625 port 219 140625 unique_id port 140625 remote_ip 10.8.1.202 140629 username aminvpn 140629 mac 140566 station_ip 5.120.146.39 140566 port 374 140566 unique_id port 140566 remote_ip 10.8.0.166 140569 username sekonji3 140569 mac 140569 bytes_out 0 140569 bytes_in 0 140569 station_ip 83.122.3.23 140569 port 219 140569 unique_id port 140569 remote_ip 10.8.1.238 140570 username barzegar 140570 mac 140570 bytes_out 165128 140570 bytes_in 692120 140570 station_ip 5.119.21.255 140570 port 217 140570 unique_id port 140570 remote_ip 10.8.1.174 140572 username kordestani 140572 kill_reason Another user logged on this global unique id 140572 mac 140572 bytes_out 0 140572 bytes_in 0 140572 station_ip 151.235.113.81 140572 port 379 140572 unique_id port 140572 remote_ip 10.8.0.134 140574 username alihosseini1 140574 mac 140574 bytes_out 0 140574 bytes_in 0 140574 station_ip 5.120.146.39 140574 port 424 140574 unique_id port 140574 remote_ip 10.8.0.166 140579 username hashtadani3 140579 mac 140579 bytes_out 0 140579 bytes_in 0 140579 station_ip 37.129.67.30 140579 port 374 140579 unique_id port 140579 remote_ip 10.8.0.154 140580 username alihosseini1 140580 mac 140580 bytes_out 0 140580 bytes_in 0 140580 station_ip 5.120.146.39 140580 port 374 140580 unique_id port 140580 remote_ip 10.8.0.166 140582 username hashtadani3 140582 mac 140582 bytes_out 0 140582 bytes_in 0 140582 station_ip 37.129.67.30 140582 port 426 140582 unique_id port 140582 remote_ip 10.8.0.154 140583 username hashtadani3 140583 mac 140583 bytes_out 0 140583 bytes_in 0 140583 station_ip 37.129.67.30 140583 port 426 140583 unique_id port 140583 remote_ip 10.8.0.154 140585 username amir 140585 mac 140585 bytes_out 0 140585 bytes_in 0 140585 station_ip 46.225.214.125 140585 port 413 140585 unique_id port 140585 remote_ip 10.8.0.50 140592 username vanila 140592 mac 140592 bytes_out 0 140592 bytes_in 0 140592 station_ip 83.122.193.213 140592 port 374 140592 unique_id port 140592 remote_ip 10.8.0.178 140595 username morteza 140595 mac 140595 bytes_out 0 140595 bytes_in 0 140595 station_ip 83.122.192.123 140595 port 416 140595 unique_id port 140599 username hashtadani3 140599 mac 140599 bytes_out 0 140599 bytes_in 0 140599 station_ip 37.129.67.30 140599 port 413 140599 unique_id port 140599 remote_ip 10.8.0.154 140600 username hashtadani3 140600 mac 140600 bytes_out 0 140600 bytes_in 0 140600 station_ip 37.129.67.30 140600 port 413 140600 unique_id port 140600 remote_ip 10.8.0.154 140604 username hashtadani3 140604 mac 140604 bytes_out 0 140604 bytes_in 0 140604 station_ip 37.129.67.30 140604 port 413 140604 unique_id port 140604 remote_ip 10.8.0.154 140606 username amin.saeedi 140606 unique_id port 140606 terminate_cause User-Request 140606 bytes_out 1094470 140606 bytes_in 22048319 140606 station_ip 5.119.116.232 140606 port 15730701 140606 nas_port_type Virtual 140606 remote_ip 5.5.5.181 140608 username alihosseini1 140608 mac 140608 bytes_out 0 140608 bytes_in 0 140608 station_ip 5.120.146.39 140608 port 416 140608 unique_id port 140608 remote_ip 10.8.0.166 140616 username alihosseini1 140616 mac 140616 bytes_out 0 140616 bytes_in 0 140616 station_ip 5.120.146.39 140616 port 379 140616 unique_id port 140616 remote_ip 10.8.0.166 140619 username sekonji3 140619 mac 140619 bytes_out 747836 140619 bytes_in 14477871 140619 station_ip 83.122.3.23 140619 port 374 140619 unique_id port 140619 remote_ip 10.8.0.6 140621 username sekonji3 140621 mac 140621 bytes_out 0 140621 bytes_in 0 140567 remote_ip 10.8.0.154 140573 username hashtadani3 140573 mac 140573 bytes_out 0 140573 bytes_in 0 140573 station_ip 37.129.67.30 140573 port 374 140573 unique_id port 140573 remote_ip 10.8.0.154 140576 username alikomsari 140576 mac 140576 bytes_out 1771134 140576 bytes_in 16193416 140576 station_ip 5.119.84.26 140576 port 426 140576 unique_id port 140576 remote_ip 10.8.0.70 140578 username aminvpn 140578 mac 140578 bytes_out 0 140578 bytes_in 0 140578 station_ip 5.233.49.34 140578 port 374 140578 unique_id port 140578 remote_ip 10.8.0.14 140581 username alihosseini1 140581 mac 140581 bytes_out 0 140581 bytes_in 0 140581 station_ip 5.120.146.39 140581 port 374 140581 unique_id port 140581 remote_ip 10.8.0.166 140584 username hashtadani3 140584 mac 140584 bytes_out 0 140584 bytes_in 0 140584 station_ip 37.129.67.30 140584 port 426 140584 unique_id port 140584 remote_ip 10.8.0.154 140586 username sekonji3 140586 mac 140586 bytes_out 8521 140586 bytes_in 11611 140586 station_ip 83.122.3.23 140586 port 219 140586 unique_id port 140586 remote_ip 10.8.1.238 140587 username barzegar 140587 mac 140587 bytes_out 175123 140587 bytes_in 1418557 140587 station_ip 5.119.21.255 140587 port 217 140587 unique_id port 140587 remote_ip 10.8.1.174 140590 username hashtadani3 140590 mac 140590 bytes_out 0 140590 bytes_in 0 140590 station_ip 37.129.67.30 140590 port 427 140590 unique_id port 140590 remote_ip 10.8.0.154 140594 username mosi 140594 kill_reason Another user logged on this global unique id 140594 mac 140594 bytes_out 0 140594 bytes_in 0 140594 station_ip 151.235.75.185 140594 port 414 140594 unique_id port 140594 remote_ip 10.8.0.138 140601 username aminvpn 140601 mac 140601 bytes_out 0 140601 bytes_in 0 140601 station_ip 83.122.41.30 140601 port 424 140601 unique_id port 140601 remote_ip 10.8.0.14 140602 username aminvpn 140602 mac 140602 bytes_out 0 140602 bytes_in 0 140602 station_ip 5.233.49.34 140602 port 413 140602 unique_id port 140602 remote_ip 10.8.0.14 140603 username alihosseini1 140603 mac 140603 bytes_out 0 140603 bytes_in 0 140603 station_ip 5.120.146.39 140603 port 416 140603 unique_id port 140603 remote_ip 10.8.0.166 140605 username kordestani 140605 mac 140605 bytes_out 0 140605 bytes_in 0 140605 station_ip 151.235.113.81 140605 port 379 140605 unique_id port 140607 username hashtadani3 140607 mac 140607 bytes_out 0 140607 bytes_in 0 140607 station_ip 37.129.67.30 140607 port 379 140607 unique_id port 140607 remote_ip 10.8.0.154 140609 username tahmasebi 140609 kill_reason Another user logged on this global unique id 140609 mac 140609 bytes_out 0 140609 bytes_in 0 140609 station_ip 5.126.46.117 140609 port 418 140609 unique_id port 140609 remote_ip 10.8.0.42 140613 username amir 140613 mac 140613 bytes_out 0 140613 bytes_in 0 140613 station_ip 46.225.214.125 140613 port 379 140613 unique_id port 140613 remote_ip 10.8.0.50 140615 username hashtadani3 140615 mac 140615 bytes_out 0 140615 bytes_in 0 140615 station_ip 37.129.67.30 140615 port 424 140615 unique_id port 140615 remote_ip 10.8.0.154 140617 username alihosseini1 140617 mac 140617 bytes_out 0 140617 bytes_in 0 140617 station_ip 5.120.146.39 140617 port 379 140617 unique_id port 140617 remote_ip 10.8.0.166 140618 username hashtadani3 140618 mac 140618 bytes_out 0 140618 bytes_in 0 140618 station_ip 37.129.67.30 140618 port 379 140618 unique_id port 140618 remote_ip 10.8.0.154 140620 username sekonji3 140620 mac 140620 bytes_out 0 140620 bytes_in 0 140620 station_ip 83.122.3.23 140620 port 374 140620 unique_id port 140620 remote_ip 10.8.0.6 140622 username alihosseini1 140622 mac 140622 bytes_out 0 140622 bytes_in 0 140622 station_ip 5.120.146.39 140622 port 220 140622 unique_id port 140622 remote_ip 10.8.1.106 140627 username aminvpn 140627 mac 140627 bytes_out 0 140627 bytes_in 0 140627 station_ip 83.122.41.30 140627 port 413 140627 unique_id port 140627 remote_ip 10.8.0.14 140631 username aminvpn 140631 unique_id port 140631 terminate_cause Lost-Carrier 140631 bytes_out 2102549 140631 bytes_in 8160154 140631 station_ip 5.233.49.34 140631 port 15730700 140631 nas_port_type Virtual 140631 remote_ip 5.5.5.177 140633 username alihosseini1 140633 mac 140633 bytes_out 0 140633 bytes_in 0 140633 station_ip 5.120.146.39 140633 port 379 140633 unique_id port 140633 remote_ip 10.8.0.166 140636 username godarzi 140636 mac 140636 bytes_out 0 140636 bytes_in 0 140636 station_ip 5.202.62.33 140636 port 416 140636 unique_id port 140636 remote_ip 10.8.0.174 140638 username alihosseini1 140638 mac 140638 bytes_out 0 140638 bytes_in 0 140638 station_ip 5.120.146.39 140638 port 416 140638 unique_id port 140638 remote_ip 10.8.0.166 140640 username hashtadani3 140640 mac 140640 bytes_out 0 140640 bytes_in 0 140640 station_ip 37.129.67.30 140640 port 416 140640 unique_id port 140640 remote_ip 10.8.0.154 140641 username sekonji3 140641 mac 140641 bytes_out 0 140641 bytes_in 0 140641 station_ip 83.122.3.23 140641 port 374 140641 unique_id port 140641 remote_ip 10.8.0.6 140649 username barzegar 140649 mac 140649 bytes_out 0 140649 bytes_in 0 140649 station_ip 5.119.21.255 140649 port 426 140649 unique_id port 140649 remote_ip 10.8.0.234 140650 username hashtadani3 140650 mac 140650 bytes_out 0 140650 bytes_in 0 140650 station_ip 37.129.67.30 140650 port 220 140650 unique_id port 140650 remote_ip 10.8.1.94 140652 username hashtadani3 140652 mac 140652 bytes_out 0 140652 bytes_in 0 140652 station_ip 37.129.67.30 140652 port 374 140652 unique_id port 140652 remote_ip 10.8.0.154 140653 username sekonji3 140653 mac 140653 bytes_out 0 140653 bytes_in 0 140653 station_ip 83.122.3.23 140653 port 374 140653 unique_id port 140653 remote_ip 10.8.0.6 140654 username vanila 140654 mac 140654 bytes_out 0 140654 bytes_in 0 140654 station_ip 83.122.193.213 140654 port 416 140654 unique_id port 140654 remote_ip 10.8.0.178 140656 username sekonji3 140656 mac 140656 bytes_out 0 140656 bytes_in 0 140656 station_ip 83.122.3.23 140656 port 374 140656 unique_id port 140656 remote_ip 10.8.0.6 140658 username sekonji3 140658 mac 140658 bytes_out 0 140658 bytes_in 0 140658 station_ip 83.122.3.23 140658 port 374 140658 unique_id port 140658 remote_ip 10.8.0.6 140660 username hashtadani3 140660 mac 140660 bytes_out 0 140660 bytes_in 0 140660 station_ip 37.129.67.30 140660 port 379 140660 unique_id port 140660 remote_ip 10.8.0.154 140666 username hashtadani3 140666 mac 140666 bytes_out 0 140666 bytes_in 0 140666 station_ip 37.129.67.30 140666 port 418 140666 unique_id port 140666 remote_ip 10.8.0.154 140667 username hashtadani3 140667 mac 140667 bytes_out 0 140667 bytes_in 0 140667 station_ip 37.129.67.30 140667 port 377 140667 unique_id port 140667 remote_ip 10.8.0.154 140673 username Mahin 140673 mac 140673 bytes_out 782871 140621 station_ip 83.122.3.23 140621 port 374 140621 unique_id port 140621 remote_ip 10.8.0.6 140623 username hashtadani3 140623 mac 140623 bytes_out 0 140623 bytes_in 0 140623 station_ip 37.129.67.30 140623 port 221 140623 unique_id port 140623 remote_ip 10.8.1.94 140624 username hashtadani3 140624 mac 140624 bytes_out 0 140624 bytes_in 0 140624 station_ip 37.129.67.30 140624 port 379 140624 unique_id port 140624 remote_ip 10.8.0.154 140626 username alihosseini1 140626 mac 140626 bytes_out 0 140626 bytes_in 0 140626 station_ip 5.120.146.39 140626 port 220 140626 unique_id port 140626 remote_ip 10.8.1.106 140628 username hashtadani3 140628 mac 140628 bytes_out 0 140628 bytes_in 0 140628 station_ip 37.129.67.30 140628 port 219 140628 unique_id port 140628 remote_ip 10.8.1.94 140630 username hashtadani3 140630 mac 140630 bytes_out 0 140630 bytes_in 0 140630 station_ip 37.129.67.30 140630 port 379 140630 unique_id port 140630 remote_ip 10.8.0.154 140632 username tahmasebi 140632 mac 140632 bytes_out 0 140632 bytes_in 0 140632 station_ip 5.126.46.117 140632 port 418 140632 unique_id port 140634 username avaanna 140634 mac 140634 bytes_out 0 140634 bytes_in 0 140634 station_ip 83.123.250.115 140634 port 406 140634 unique_id port 140634 remote_ip 10.8.0.94 140637 username kalantary 140637 mac 140637 bytes_out 0 140637 bytes_in 0 140637 station_ip 83.123.70.145 140637 port 379 140637 unique_id port 140637 remote_ip 10.8.0.98 140639 username hashtadani3 140639 mac 140639 bytes_out 0 140639 bytes_in 0 140639 station_ip 37.129.67.30 140639 port 220 140639 unique_id port 140639 remote_ip 10.8.1.94 140642 username mosi 140642 kill_reason Another user logged on this global unique id 140642 mac 140642 bytes_out 0 140642 bytes_in 0 140642 station_ip 151.235.75.185 140642 port 414 140642 unique_id port 140643 username hosseine 140643 mac 140643 bytes_out 0 140643 bytes_in 0 140643 station_ip 83.122.71.104 140643 port 377 140643 unique_id port 140646 username hashtadani3 140646 mac 140646 bytes_out 0 140646 bytes_in 0 140646 station_ip 37.129.67.30 140646 port 377 140646 unique_id port 140646 remote_ip 10.8.0.154 140651 username sekonji3 140651 mac 140651 bytes_out 0 140651 bytes_in 0 140651 station_ip 83.122.3.23 140651 port 374 140651 unique_id port 140651 remote_ip 10.8.0.6 140655 username barzegar 140655 mac 140655 bytes_out 0 140655 bytes_in 0 140655 station_ip 5.119.21.255 140655 port 220 140655 unique_id port 140655 remote_ip 10.8.1.174 140659 username alihosseini1 140659 mac 140659 bytes_out 0 140659 bytes_in 0 140659 station_ip 5.120.146.39 140659 port 374 140659 unique_id port 140659 remote_ip 10.8.0.166 140663 username hashtadani3 140663 mac 140663 bytes_out 0 140663 bytes_in 0 140663 station_ip 37.129.67.30 140663 port 219 140663 unique_id port 140663 remote_ip 10.8.1.94 140664 username sekonji3 140664 mac 140664 bytes_out 0 140664 bytes_in 0 140664 station_ip 83.122.3.23 140664 port 374 140664 unique_id port 140664 remote_ip 10.8.0.6 140668 username sekonji3 140668 mac 140668 bytes_out 0 140668 bytes_in 0 140668 station_ip 83.122.3.23 140668 port 374 140668 unique_id port 140668 remote_ip 10.8.0.6 140669 username hashtadani3 140669 mac 140669 bytes_out 0 140669 bytes_in 0 140669 station_ip 37.129.67.30 140669 port 418 140669 unique_id port 140669 remote_ip 10.8.0.154 140672 username barzegar 140672 mac 140629 bytes_out 0 140629 bytes_in 0 140629 station_ip 5.233.49.34 140629 port 379 140629 unique_id port 140629 remote_ip 10.8.0.14 140635 username hashtadani3 140635 mac 140635 bytes_out 0 140635 bytes_in 0 140635 station_ip 37.129.67.30 140635 port 418 140635 unique_id port 140635 remote_ip 10.8.0.154 140644 username hashtadani3 140644 mac 140644 bytes_out 0 140644 bytes_in 0 140644 station_ip 37.129.67.30 140644 port 416 140644 unique_id port 140644 remote_ip 10.8.0.154 140645 username hashtadani3 140645 mac 140645 bytes_out 0 140645 bytes_in 0 140645 station_ip 37.129.67.30 140645 port 377 140645 unique_id port 140645 remote_ip 10.8.0.154 140647 username amir 140647 mac 140647 bytes_out 0 140647 bytes_in 0 140647 station_ip 46.225.214.125 140647 port 379 140647 unique_id port 140647 remote_ip 10.8.0.50 140648 username hashtadani3 140648 mac 140648 bytes_out 0 140648 bytes_in 0 140648 station_ip 37.129.67.30 140648 port 379 140648 unique_id port 140648 remote_ip 10.8.0.154 140657 username hashtadani3 140657 mac 140657 bytes_out 0 140657 bytes_in 0 140657 station_ip 37.129.67.30 140657 port 379 140657 unique_id port 140657 remote_ip 10.8.0.154 140661 username hashtadani3 140661 mac 140661 bytes_out 0 140661 bytes_in 0 140661 station_ip 37.129.67.30 140661 port 416 140661 unique_id port 140661 remote_ip 10.8.0.154 140662 username tahmasebi 140662 mac 140662 bytes_out 1943601 140662 bytes_in 26124875 140662 station_ip 5.126.236.96 140662 port 219 140662 unique_id port 140662 remote_ip 10.8.1.90 140665 username houshang 140665 mac 140665 bytes_out 0 140665 bytes_in 0 140665 station_ip 5.119.16.151 140665 port 377 140665 unique_id port 140665 remote_ip 10.8.0.22 140670 username sekonji3 140670 mac 140670 bytes_out 0 140670 bytes_in 0 140670 station_ip 83.122.3.23 140670 port 374 140670 unique_id port 140670 remote_ip 10.8.0.6 140671 username sekonji3 140671 mac 140671 bytes_out 0 140671 bytes_in 0 140671 station_ip 83.122.3.23 140671 port 374 140671 unique_id port 140671 remote_ip 10.8.0.6 140676 username amir 140676 mac 140676 bytes_out 0 140676 bytes_in 0 140676 station_ip 46.225.214.125 140676 port 377 140676 unique_id port 140676 remote_ip 10.8.0.50 140681 username sekonji3 140681 mac 140681 bytes_out 11645 140681 bytes_in 14533 140681 station_ip 83.122.3.23 140681 port 374 140681 unique_id port 140681 remote_ip 10.8.0.6 140686 username sekonji3 140686 kill_reason Maximum check online fails reached 140686 mac 140686 bytes_out 0 140686 bytes_in 0 140686 station_ip 83.122.3.23 140686 port 374 140686 unique_id port 140689 username hashtadani3 140689 mac 140689 bytes_out 0 140689 bytes_in 0 140689 station_ip 37.129.67.30 140689 port 220 140689 unique_id port 140689 remote_ip 10.8.1.94 140691 username aminvpn 140691 mac 140691 bytes_out 0 140691 bytes_in 0 140691 station_ip 5.233.49.34 140691 port 377 140691 unique_id port 140691 remote_ip 10.8.0.14 140692 username sekonji3 140692 mac 140692 bytes_out 0 140692 bytes_in 0 140692 station_ip 83.122.3.23 140692 port 221 140692 unique_id port 140692 remote_ip 10.8.1.238 140694 username sekonji3 140694 mac 140694 bytes_out 0 140694 bytes_in 0 140694 station_ip 83.122.3.23 140694 port 221 140694 unique_id port 140694 remote_ip 10.8.1.238 140695 username moradi 140695 mac 140695 bytes_out 75748 140695 bytes_in 124915 140695 station_ip 37.129.38.13 140695 port 220 140672 bytes_out 0 140672 bytes_in 0 140672 station_ip 5.119.21.255 140672 port 219 140672 unique_id port 140672 remote_ip 10.8.1.174 140674 username aminvpn 140674 unique_id port 140674 terminate_cause Lost-Carrier 140674 bytes_out 1593771 140674 bytes_in 5789659 140674 station_ip 5.233.49.34 140674 port 15730702 140674 nas_port_type Virtual 140674 remote_ip 5.5.5.183 140677 username hashtadani3 140677 mac 140677 bytes_out 0 140677 bytes_in 0 140677 station_ip 37.129.67.30 140677 port 377 140677 unique_id port 140677 remote_ip 10.8.0.154 140683 username sekonji3 140683 mac 140683 bytes_out 0 140683 bytes_in 0 140683 station_ip 83.122.3.23 140683 port 220 140683 unique_id port 140683 remote_ip 10.8.1.238 140684 username hashtadani3 140684 mac 140684 bytes_out 0 140684 bytes_in 0 140684 station_ip 37.129.67.30 140684 port 377 140684 unique_id port 140684 remote_ip 10.8.0.154 140690 username hashtadani3 140690 mac 140690 bytes_out 0 140690 bytes_in 0 140690 station_ip 37.129.67.30 140690 port 406 140690 unique_id port 140690 remote_ip 10.8.0.154 140693 username mostafa_es78 140693 unique_id port 140693 terminate_cause User-Request 140693 bytes_out 585228 140693 bytes_in 7519904 140693 station_ip 5.120.134.245 140693 port 15730703 140693 nas_port_type Virtual 140693 remote_ip 5.5.5.193 140700 username farhad2 140700 kill_reason Another user logged on this global unique id 140700 mac 140700 bytes_out 0 140700 bytes_in 0 140700 station_ip 5.119.222.213 140700 port 217 140700 unique_id port 140703 username aminvpn 140703 mac 140703 bytes_out 0 140703 bytes_in 0 140703 station_ip 83.122.41.30 140703 port 406 140703 unique_id port 140703 remote_ip 10.8.0.14 140707 username sekonji3 140707 mac 140707 bytes_out 0 140707 bytes_in 0 140707 station_ip 83.122.3.23 140707 port 219 140707 unique_id port 140707 remote_ip 10.8.1.238 140710 username farhad2 140710 mac 140710 bytes_out 0 140710 bytes_in 0 140710 station_ip 5.119.222.213 140710 port 217 140710 unique_id port 140714 username sekonji3 140714 mac 140714 bytes_out 0 140714 bytes_in 0 140714 station_ip 83.122.3.23 140714 port 219 140714 unique_id port 140714 remote_ip 10.8.1.238 140716 username vanila 140716 mac 140716 bytes_out 0 140716 bytes_in 0 140716 station_ip 83.122.193.213 140716 port 379 140716 unique_id port 140716 remote_ip 10.8.0.178 140719 username aminvpn 140719 mac 140719 bytes_out 0 140719 bytes_in 0 140719 station_ip 5.119.94.12 140719 port 379 140719 unique_id port 140719 remote_ip 10.8.0.14 140724 username sekonji3 140724 mac 140724 bytes_out 58556 140724 bytes_in 242314 140724 station_ip 83.122.3.23 140724 port 219 140724 unique_id port 140724 remote_ip 10.8.1.238 140733 username jafari 140733 kill_reason Another user logged on this global unique id 140733 mac 140733 bytes_out 0 140733 bytes_in 0 140733 station_ip 37.137.5.7 140733 port 379 140733 unique_id port 140733 remote_ip 10.8.0.242 140742 username hashtadani3 140742 mac 140742 bytes_out 0 140742 bytes_in 0 140742 station_ip 37.129.67.30 140742 port 406 140742 unique_id port 140742 remote_ip 10.8.0.154 140746 username hassan 140746 mac 140746 bytes_out 0 140746 bytes_in 0 140746 station_ip 37.27.1.116 140746 port 427 140746 unique_id port 140746 remote_ip 10.8.0.122 140748 username hashtadani3 140748 mac 140748 bytes_out 773138 140748 bytes_in 5039167 140748 station_ip 37.129.67.30 140748 port 219 140748 unique_id port 140748 remote_ip 10.8.1.94 140673 bytes_in 3496583 140673 station_ip 5.119.83.161 140673 port 222 140673 unique_id port 140673 remote_ip 10.8.1.186 140675 username hashtadani3 140675 mac 140675 bytes_out 0 140675 bytes_in 0 140675 station_ip 37.129.67.30 140675 port 424 140675 unique_id port 140675 remote_ip 10.8.0.154 140678 username mosi 140678 kill_reason Another user logged on this global unique id 140678 mac 140678 bytes_out 0 140678 bytes_in 0 140678 station_ip 151.235.75.185 140678 port 414 140678 unique_id port 140679 username hashtadani3 140679 mac 140679 bytes_out 0 140679 bytes_in 0 140679 station_ip 37.129.67.30 140679 port 377 140679 unique_id port 140679 remote_ip 10.8.0.154 140680 username mahdiyehalizadeh 140680 mac 140680 bytes_out 0 140680 bytes_in 0 140680 station_ip 37.129.160.187 140680 port 418 140680 unique_id port 140680 remote_ip 10.8.0.82 140682 username hashtadani3 140682 mac 140682 bytes_out 0 140682 bytes_in 0 140682 station_ip 37.129.67.30 140682 port 377 140682 unique_id port 140682 remote_ip 10.8.0.154 140685 username hashtadani3 140685 mac 140685 bytes_out 0 140685 bytes_in 0 140685 station_ip 37.129.67.30 140685 port 377 140685 unique_id port 140685 remote_ip 10.8.0.154 140687 username farhad2 140687 kill_reason Another user logged on this global unique id 140687 mac 140687 bytes_out 0 140687 bytes_in 0 140687 station_ip 5.119.222.213 140687 port 217 140687 unique_id port 140687 remote_ip 10.8.1.222 140688 username aminvpn 140688 mac 140688 bytes_out 0 140688 bytes_in 0 140688 station_ip 83.122.41.30 140688 port 406 140688 unique_id port 140688 remote_ip 10.8.0.14 140696 username barzegar 140696 mac 140696 bytes_out 0 140696 bytes_in 0 140696 station_ip 5.119.21.255 140696 port 418 140696 unique_id port 140696 remote_ip 10.8.0.234 140698 username hashtadani3 140698 mac 140698 bytes_out 0 140698 bytes_in 0 140698 station_ip 37.129.67.30 140698 port 377 140698 unique_id port 140698 remote_ip 10.8.0.154 140702 username sekonji3 140702 mac 140702 bytes_out 362185 140702 bytes_in 5486643 140702 station_ip 83.122.3.23 140702 port 219 140702 unique_id port 140702 remote_ip 10.8.1.238 140705 username aminvpn 140705 mac 140705 bytes_out 0 140705 bytes_in 0 140705 station_ip 5.233.49.34 140705 port 426 140705 unique_id port 140705 remote_ip 10.8.0.14 140708 username hashtadani3 140708 kill_reason Another user logged on this global unique id 140708 mac 140708 bytes_out 0 140708 bytes_in 0 140708 station_ip 37.129.67.30 140708 port 418 140708 unique_id port 140708 remote_ip 10.8.0.154 140711 username amir 140711 mac 140711 bytes_out 0 140711 bytes_in 0 140711 station_ip 46.225.214.125 140711 port 427 140711 unique_id port 140711 remote_ip 10.8.0.50 140712 username tahmasebi 140712 mac 140712 bytes_out 0 140712 bytes_in 0 140712 station_ip 5.125.92.202 140712 port 416 140712 unique_id port 140712 remote_ip 10.8.0.42 140721 username barzegar 140721 mac 140721 bytes_out 0 140721 bytes_in 0 140721 station_ip 5.119.21.255 140721 port 219 140721 unique_id port 140721 remote_ip 10.8.1.174 140722 username Mahin 140722 kill_reason Another user logged on this global unique id 140722 mac 140722 bytes_out 0 140722 bytes_in 0 140722 station_ip 5.119.83.161 140722 port 220 140722 unique_id port 140723 username aminvpn 140723 mac 140723 bytes_out 0 140723 bytes_in 0 140723 station_ip 5.119.94.12 140723 port 379 140723 unique_id port 140723 remote_ip 10.8.0.14 140725 username sekonji3 140725 mac 140695 unique_id port 140695 remote_ip 10.8.1.202 140697 username Mahin 140697 mac 140697 bytes_out 38495 140697 bytes_in 60527 140697 station_ip 5.119.83.161 140697 port 219 140697 unique_id port 140697 remote_ip 10.8.1.186 140699 username amir 140699 mac 140699 bytes_out 0 140699 bytes_in 0 140699 station_ip 46.225.214.125 140699 port 377 140699 unique_id port 140699 remote_ip 10.8.0.50 140701 username moradi 140701 mac 140701 bytes_out 0 140701 bytes_in 0 140701 station_ip 37.129.38.13 140701 port 221 140701 unique_id port 140701 remote_ip 10.8.1.202 140704 username barzegar 140704 mac 140704 bytes_out 0 140704 bytes_in 0 140704 station_ip 5.119.21.255 140704 port 219 140704 unique_id port 140704 remote_ip 10.8.1.174 140706 username farhad2 140706 kill_reason Another user logged on this global unique id 140706 mac 140706 bytes_out 0 140706 bytes_in 0 140706 station_ip 5.119.222.213 140706 port 217 140706 unique_id port 140709 username Mahin 140709 kill_reason Another user logged on this global unique id 140709 mac 140709 bytes_out 0 140709 bytes_in 0 140709 station_ip 5.119.83.161 140709 port 220 140709 unique_id port 140709 remote_ip 10.8.1.186 140713 username sekonji3 140713 mac 140713 bytes_out 0 140713 bytes_in 0 140713 station_ip 83.122.3.23 140713 port 219 140713 unique_id port 140713 remote_ip 10.8.1.238 140715 username mahdiyehalizadeh 140715 mac 140715 bytes_out 0 140715 bytes_in 0 140715 station_ip 37.129.160.187 140715 port 427 140715 unique_id port 140715 remote_ip 10.8.0.82 140717 username farhad2 140717 kill_reason Another user logged on this global unique id 140717 mac 140717 bytes_out 0 140717 bytes_in 0 140717 station_ip 5.119.222.213 140717 port 217 140717 unique_id port 140717 remote_ip 10.8.1.222 140718 username aminvpn 140718 mac 140718 bytes_out 0 140718 bytes_in 0 140718 station_ip 83.122.41.30 140718 port 406 140718 unique_id port 140718 remote_ip 10.8.0.14 140720 username aminvpn 140720 mac 140720 bytes_out 0 140720 bytes_in 0 140720 station_ip 5.233.49.34 140720 port 406 140720 unique_id port 140720 remote_ip 10.8.0.14 140727 username farhad2 140727 mac 140727 bytes_out 0 140727 bytes_in 0 140727 station_ip 5.119.222.213 140727 port 217 140727 unique_id port 140727 remote_ip 10.8.1.222 140729 username houshang 140729 kill_reason Another user logged on this global unique id 140729 mac 140729 bytes_out 0 140729 bytes_in 0 140729 station_ip 5.119.16.151 140729 port 426 140729 unique_id port 140729 remote_ip 10.8.0.22 140730 username ehsun 140730 unique_id port 140730 terminate_cause User-Request 140730 bytes_out 4770982 140730 bytes_in 131453850 140730 station_ip 113.203.106.39 140730 port 15730711 140730 nas_port_type Virtual 140730 remote_ip 5.5.5.254 140732 username mahdiyehalizadeh 140732 mac 140732 bytes_out 60459 140732 bytes_in 318240 140732 station_ip 83.123.217.13 140732 port 406 140732 unique_id port 140732 remote_ip 10.8.0.82 140736 username barzegar 140736 mac 140736 bytes_out 0 140736 bytes_in 0 140736 station_ip 5.119.21.255 140736 port 217 140736 unique_id port 140736 remote_ip 10.8.1.174 140738 username sekonji3 140738 mac 140738 bytes_out 0 140738 bytes_in 0 140738 station_ip 83.122.3.23 140738 port 219 140738 unique_id port 140738 remote_ip 10.8.1.238 140740 username moradi 140740 kill_reason Another user logged on this global unique id 140740 mac 140740 bytes_out 0 140740 bytes_in 0 140740 station_ip 37.129.38.13 140740 port 377 140740 unique_id port 140740 remote_ip 10.8.0.250 140725 bytes_out 0 140725 bytes_in 0 140725 station_ip 83.122.3.23 140725 port 219 140725 unique_id port 140725 remote_ip 10.8.1.238 140726 username farhad2 140726 mac 140726 bytes_out 0 140726 bytes_in 0 140726 station_ip 5.119.222.213 140726 port 217 140726 unique_id port 140728 username amir 140728 mac 140728 bytes_out 0 140728 bytes_in 0 140728 station_ip 46.225.214.125 140728 port 406 140728 unique_id port 140728 remote_ip 10.8.0.50 140731 username sekonji3 140731 mac 140731 bytes_out 94937 140731 bytes_in 335011 140731 station_ip 83.122.3.23 140731 port 219 140731 unique_id port 140731 remote_ip 10.8.1.238 140734 username khalili 140734 kill_reason Another user logged on this global unique id 140734 mac 140734 bytes_out 0 140734 bytes_in 0 140734 station_ip 5.119.71.25 140734 port 373 140734 unique_id port 140734 remote_ip 10.8.0.86 140735 username aminvpn 140735 mac 140735 bytes_out 0 140735 bytes_in 0 140735 station_ip 5.233.49.34 140735 port 406 140735 unique_id port 140735 remote_ip 10.8.0.14 140737 username aminvpn 140737 mac 140737 bytes_out 0 140737 bytes_in 0 140737 station_ip 5.233.49.34 140737 port 406 140737 unique_id port 140737 remote_ip 10.8.0.14 140739 username hashtadani3 140739 mac 140739 bytes_out 0 140739 bytes_in 0 140739 station_ip 37.129.67.30 140739 port 418 140739 unique_id port 140741 username sekonji3 140741 mac 140741 bytes_out 0 140741 bytes_in 0 140741 station_ip 83.122.3.23 140741 port 217 140741 unique_id port 140741 remote_ip 10.8.1.238 140744 username amir 140744 mac 140744 bytes_out 0 140744 bytes_in 0 140744 station_ip 46.225.214.125 140744 port 406 140744 unique_id port 140744 remote_ip 10.8.0.50 140747 username sekonji3 140747 mac 140747 bytes_out 3594 140747 bytes_in 5764 140747 station_ip 83.122.3.23 140747 port 217 140747 unique_id port 140747 remote_ip 10.8.1.238 140750 username hassan 140750 kill_reason Another user logged on this global unique id 140750 mac 140750 bytes_out 0 140750 bytes_in 0 140750 station_ip 5.119.107.148 140750 port 406 140750 unique_id port 140750 remote_ip 10.8.0.122 140752 username moradi 140752 kill_reason Maximum check online fails reached 140752 mac 140752 bytes_out 0 140752 bytes_in 0 140752 station_ip 37.129.38.13 140752 port 377 140752 unique_id port 140754 username hashtadani3 140754 mac 140754 bytes_out 0 140754 bytes_in 0 140754 station_ip 37.129.67.30 140754 port 218 140754 unique_id port 140754 remote_ip 10.8.1.94 140756 username hashtadani3 140756 mac 140756 bytes_out 0 140756 bytes_in 0 140756 station_ip 37.129.67.30 140756 port 218 140756 unique_id port 140756 remote_ip 10.8.1.94 140757 username hashtadani3 140757 mac 140757 bytes_out 0 140757 bytes_in 0 140757 station_ip 37.129.67.30 140757 port 218 140757 unique_id port 140757 remote_ip 10.8.1.94 140763 username barzegar 140763 mac 140763 bytes_out 0 140763 bytes_in 0 140763 station_ip 5.119.21.255 140763 port 418 140763 unique_id port 140763 remote_ip 10.8.0.234 140765 username amir 140765 mac 140765 bytes_out 0 140765 bytes_in 0 140765 station_ip 46.225.214.125 140765 port 418 140765 unique_id port 140765 remote_ip 10.8.0.50 140768 username hashtadani3 140768 mac 140768 bytes_out 247710 140768 bytes_in 530941 140768 station_ip 37.129.67.30 140768 port 219 140768 unique_id port 140768 remote_ip 10.8.1.94 140770 username sekonji3 140770 mac 140770 bytes_out 368724 140770 bytes_in 1493847 140743 username aminvpn 140743 unique_id port 140743 terminate_cause Lost-Carrier 140743 bytes_out 1650737 140743 bytes_in 76015379 140743 station_ip 5.119.94.12 140743 port 15730705 140743 nas_port_type Virtual 140743 remote_ip 5.5.5.127 140745 username sekonji3 140745 mac 140745 bytes_out 0 140745 bytes_in 0 140745 station_ip 83.122.3.23 140745 port 217 140745 unique_id port 140745 remote_ip 10.8.1.238 140749 username malekpoir 140749 mac 140749 bytes_out 221859 140749 bytes_in 325670 140749 station_ip 5.119.229.8 140749 port 218 140749 unique_id port 140749 remote_ip 10.8.1.54 140751 username jafari 140751 kill_reason Another user logged on this global unique id 140751 mac 140751 bytes_out 0 140751 bytes_in 0 140751 station_ip 37.137.5.7 140751 port 379 140751 unique_id port 140759 username hashtadani3 140759 mac 140759 bytes_out 0 140759 bytes_in 0 140759 station_ip 37.129.67.30 140759 port 426 140759 unique_id port 140759 remote_ip 10.8.0.154 140761 username hassan 140761 kill_reason Another user logged on this global unique id 140761 mac 140761 bytes_out 0 140761 bytes_in 0 140761 station_ip 5.119.107.148 140761 port 406 140761 unique_id port 140766 username moradi 140766 kill_reason Another user logged on this global unique id 140766 mac 140766 bytes_out 0 140766 bytes_in 0 140766 station_ip 37.129.38.13 140766 port 377 140766 unique_id port 140778 username hassan 140778 kill_reason Another user logged on this global unique id 140778 mac 140778 bytes_out 0 140778 bytes_in 0 140778 station_ip 5.119.107.148 140778 port 406 140778 unique_id port 140782 username hashtadani3 140782 mac 140782 bytes_out 0 140782 bytes_in 0 140782 station_ip 37.129.67.30 140782 port 418 140782 unique_id port 140782 remote_ip 10.8.0.154 140787 username amir 140787 mac 140787 bytes_out 0 140787 bytes_in 0 140787 station_ip 46.225.214.125 140787 port 426 140787 unique_id port 140787 remote_ip 10.8.0.50 140789 username khademi 140789 kill_reason Another user logged on this global unique id 140789 mac 140789 bytes_out 0 140789 bytes_in 0 140789 station_ip 113.203.70.160 140789 port 387 140789 unique_id port 140792 username aminvpn 140792 unique_id port 140792 terminate_cause Lost-Carrier 140792 bytes_out 563107 140792 bytes_in 2530731 140792 station_ip 5.233.49.34 140792 port 15730717 140792 nas_port_type Virtual 140792 remote_ip 5.5.5.254 140800 username aminvpn 140800 mac 140800 bytes_out 0 140800 bytes_in 0 140800 station_ip 5.233.49.34 140800 port 424 140800 unique_id port 140800 remote_ip 10.8.0.14 140801 username aminvpn 140801 mac 140801 bytes_out 0 140801 bytes_in 0 140801 station_ip 5.233.49.34 140801 port 424 140801 unique_id port 140801 remote_ip 10.8.0.14 140806 username hoorieh 140806 mac 140806 bytes_out 0 140806 bytes_in 0 140806 station_ip 5.119.64.138 140806 port 426 140806 unique_id port 140806 remote_ip 10.8.0.38 140807 username khademi 140807 mac 140807 bytes_out 0 140807 bytes_in 0 140807 station_ip 113.203.70.160 140807 port 387 140807 unique_id port 140809 username mosi 140809 kill_reason Another user logged on this global unique id 140809 mac 140809 bytes_out 0 140809 bytes_in 0 140809 station_ip 151.235.75.185 140809 port 414 140809 unique_id port 140810 username hashtadani3 140810 kill_reason Another user logged on this global unique id 140810 mac 140810 bytes_out 0 140810 bytes_in 0 140810 station_ip 37.129.67.30 140810 port 431 140810 unique_id port 140810 remote_ip 10.8.0.154 140812 username aminvpn 140812 mac 140812 bytes_out 0 140812 bytes_in 0 140753 username hashtadani3 140753 mac 140753 bytes_out 0 140753 bytes_in 0 140753 station_ip 37.129.67.30 140753 port 218 140753 unique_id port 140753 remote_ip 10.8.1.94 140755 username houshang 140755 mac 140755 bytes_out 0 140755 bytes_in 0 140755 station_ip 5.119.16.151 140755 port 426 140755 unique_id port 140758 username tahmasebi 140758 mac 140758 bytes_out 0 140758 bytes_in 0 140758 station_ip 5.125.11.19 140758 port 431 140758 unique_id port 140758 remote_ip 10.8.0.42 140760 username vanila 140760 mac 140760 bytes_out 0 140760 bytes_in 0 140760 station_ip 37.129.108.216 140760 port 418 140760 unique_id port 140760 remote_ip 10.8.0.178 140762 username aminvpn 140762 mac 140762 bytes_out 0 140762 bytes_in 0 140762 station_ip 5.233.49.34 140762 port 427 140762 unique_id port 140762 remote_ip 10.8.0.14 140764 username aminvpn 140764 mac 140764 bytes_out 0 140764 bytes_in 0 140764 station_ip 5.233.49.34 140764 port 427 140764 unique_id port 140764 remote_ip 10.8.0.14 140767 username khademi 140767 kill_reason Another user logged on this global unique id 140767 mac 140767 bytes_out 0 140767 bytes_in 0 140767 station_ip 113.203.70.160 140767 port 387 140767 unique_id port 140767 remote_ip 10.8.0.10 140769 username hashtadani3 140769 mac 140769 bytes_out 0 140769 bytes_in 0 140769 station_ip 37.129.67.30 140769 port 219 140769 unique_id port 140769 remote_ip 10.8.1.94 140771 username houshang 140771 mac 140771 bytes_out 0 140771 bytes_in 0 140771 station_ip 5.119.16.151 140771 port 426 140771 unique_id port 140771 remote_ip 10.8.0.22 140774 username farhad2 140774 mac 140774 bytes_out 1207527 140774 bytes_in 18818069 140774 station_ip 5.119.222.213 140774 port 218 140774 unique_id port 140774 remote_ip 10.8.1.222 140776 username aminvpn 140776 unique_id port 140776 terminate_cause Lost-Carrier 140776 bytes_out 800180 140776 bytes_in 4029755 140776 station_ip 5.233.49.34 140776 port 15730715 140776 nas_port_type Virtual 140776 remote_ip 5.5.5.254 140777 username jafari 140777 kill_reason Another user logged on this global unique id 140777 mac 140777 bytes_out 0 140777 bytes_in 0 140777 station_ip 37.137.5.7 140777 port 379 140777 unique_id port 140779 username hashtadani3 140779 mac 140779 bytes_out 0 140779 bytes_in 0 140779 station_ip 37.129.67.30 140779 port 377 140779 unique_id port 140779 remote_ip 10.8.0.154 140781 username hashtadani3 140781 mac 140781 bytes_out 0 140781 bytes_in 0 140781 station_ip 37.129.67.30 140781 port 377 140781 unique_id port 140781 remote_ip 10.8.0.154 140784 username barzegar 140784 mac 140784 bytes_out 0 140784 bytes_in 0 140784 station_ip 5.119.21.255 140784 port 218 140784 unique_id port 140784 remote_ip 10.8.1.174 140785 username hashtadani3 140785 mac 140785 bytes_out 0 140785 bytes_in 0 140785 station_ip 37.129.67.30 140785 port 218 140785 unique_id port 140785 remote_ip 10.8.1.94 140788 username aminvpn 140788 unique_id port 140788 terminate_cause Lost-Carrier 140788 bytes_out 1677461 140788 bytes_in 9336134 140788 station_ip 5.119.157.176 140788 port 15730704 140788 nas_port_type Virtual 140788 remote_ip 5.5.5.121 140790 username hashtadani3 140790 mac 140790 bytes_out 346845 140790 bytes_in 1302716 140790 station_ip 37.129.67.30 140790 port 418 140790 unique_id port 140790 remote_ip 10.8.0.154 140794 username hamidsalari 140794 kill_reason Another user logged on this global unique id 140794 mac 140794 bytes_out 0 140794 bytes_in 0 140794 station_ip 5.119.200.40 140770 station_ip 83.122.3.23 140770 port 217 140770 unique_id port 140770 remote_ip 10.8.1.238 140772 username hashtadani3 140772 mac 140772 bytes_out 33603 140772 bytes_in 363124 140772 station_ip 37.129.67.30 140772 port 219 140772 unique_id port 140772 remote_ip 10.8.1.94 140773 username hashtadani3 140773 mac 140773 bytes_out 0 140773 bytes_in 0 140773 station_ip 37.129.67.30 140773 port 418 140773 unique_id port 140773 remote_ip 10.8.0.154 140775 username moradi 140775 mac 140775 bytes_out 0 140775 bytes_in 0 140775 station_ip 37.129.38.13 140775 port 377 140775 unique_id port 140780 username aminvpn 140780 unique_id port 140780 terminate_cause Lost-Carrier 140780 bytes_out 147614 140780 bytes_in 603254 140780 station_ip 5.233.49.34 140780 port 15730716 140780 nas_port_type Virtual 140780 remote_ip 5.5.5.254 140783 username aminvpn 140783 mac 140783 bytes_out 0 140783 bytes_in 0 140783 station_ip 5.233.49.34 140783 port 418 140783 unique_id port 140783 remote_ip 10.8.0.14 140786 username hashtadani3 140786 mac 140786 bytes_out 0 140786 bytes_in 0 140786 station_ip 37.129.67.30 140786 port 418 140786 unique_id port 140786 remote_ip 10.8.0.154 140791 username hashtadani3 140791 mac 140791 bytes_out 0 140791 bytes_in 0 140791 station_ip 37.129.67.30 140791 port 418 140791 unique_id port 140791 remote_ip 10.8.0.154 140793 username amir 140793 mac 140793 bytes_out 18817 140793 bytes_in 24435 140793 station_ip 46.225.214.125 140793 port 426 140793 unique_id port 140793 remote_ip 10.8.0.50 140795 username hashtadani3 140795 mac 140795 bytes_out 0 140795 bytes_in 0 140795 station_ip 37.129.67.30 140795 port 218 140795 unique_id port 140795 remote_ip 10.8.1.94 140798 username sabaghnezhad 140798 mac 140798 bytes_out 0 140798 bytes_in 0 140798 station_ip 5.212.87.120 140798 port 424 140798 unique_id port 140798 remote_ip 10.8.0.186 140802 username rezaei 140802 kill_reason Another user logged on this global unique id 140802 mac 140802 bytes_out 0 140802 bytes_in 0 140802 station_ip 5.119.147.166 140802 port 427 140802 unique_id port 140802 remote_ip 10.8.0.230 140803 username aminvpn 140803 mac 140803 bytes_out 0 140803 bytes_in 0 140803 station_ip 5.233.49.34 140803 port 424 140803 unique_id port 140803 remote_ip 10.8.0.14 140805 username farhad2 140805 mac 140805 bytes_out 0 140805 bytes_in 0 140805 station_ip 5.119.222.213 140805 port 217 140805 unique_id port 140805 remote_ip 10.8.1.222 140816 username jafari 140816 kill_reason Another user logged on this global unique id 140816 mac 140816 bytes_out 0 140816 bytes_in 0 140816 station_ip 37.137.5.7 140816 port 379 140816 unique_id port 140818 username hassan 140818 kill_reason Another user logged on this global unique id 140818 mac 140818 bytes_out 0 140818 bytes_in 0 140818 station_ip 5.119.107.148 140818 port 406 140818 unique_id port 140822 username hashtadani3 140822 mac 140822 bytes_out 0 140822 bytes_in 0 140822 station_ip 37.129.67.30 140822 port 218 140822 unique_id port 140822 remote_ip 10.8.1.94 140826 username jafari 140826 kill_reason Another user logged on this global unique id 140826 mac 140826 bytes_out 0 140826 bytes_in 0 140826 station_ip 37.137.5.7 140826 port 379 140826 unique_id port 140827 username aminvpn 140827 mac 140827 bytes_out 0 140827 bytes_in 0 140827 station_ip 37.129.202.182 140827 port 427 140827 unique_id port 140827 remote_ip 10.8.0.14 140828 username hashtadani3 140828 mac 140828 bytes_out 0 140828 bytes_in 0 140794 port 376 140794 unique_id port 140796 username hassan 140796 kill_reason Another user logged on this global unique id 140796 mac 140796 bytes_out 0 140796 bytes_in 0 140796 station_ip 5.119.107.148 140796 port 406 140796 unique_id port 140797 username hashtadani3 140797 mac 140797 bytes_out 0 140797 bytes_in 0 140797 station_ip 37.129.67.30 140797 port 426 140797 unique_id port 140797 remote_ip 10.8.0.154 140799 username jafari 140799 kill_reason Another user logged on this global unique id 140799 mac 140799 bytes_out 0 140799 bytes_in 0 140799 station_ip 37.137.5.7 140799 port 379 140799 unique_id port 140804 username barzegar 140804 mac 140804 bytes_out 0 140804 bytes_in 0 140804 station_ip 5.119.21.255 140804 port 218 140804 unique_id port 140804 remote_ip 10.8.1.174 140808 username aminvpn 140808 kill_reason Maximum check online fails reached 140808 mac 140808 bytes_out 0 140808 bytes_in 0 140808 station_ip 5.233.49.34 140808 port 424 140808 unique_id port 140811 username rezaei 140811 kill_reason Another user logged on this global unique id 140811 mac 140811 bytes_out 0 140811 bytes_in 0 140811 station_ip 5.119.147.166 140811 port 427 140811 unique_id port 140813 username hamidsalari 140813 kill_reason Another user logged on this global unique id 140813 mac 140813 bytes_out 0 140813 bytes_in 0 140813 station_ip 5.119.200.40 140813 port 376 140813 unique_id port 140815 username hashtadani3 140815 kill_reason Another user logged on this global unique id 140815 mac 140815 bytes_out 0 140815 bytes_in 0 140815 station_ip 37.129.67.30 140815 port 431 140815 unique_id port 140817 username amir 140817 kill_reason Another user logged on this global unique id 140817 mac 140817 bytes_out 0 140817 bytes_in 0 140817 station_ip 46.225.214.125 140817 port 418 140817 unique_id port 140817 remote_ip 10.8.0.50 140819 username farhad2 140819 kill_reason Another user logged on this global unique id 140819 mac 140819 bytes_out 0 140819 bytes_in 0 140819 station_ip 5.119.222.213 140819 port 217 140819 unique_id port 140819 remote_ip 10.8.1.222 140823 username barzegar 140823 mac 140823 bytes_out 0 140823 bytes_in 0 140823 station_ip 5.119.21.255 140823 port 219 140823 unique_id port 140823 remote_ip 10.8.1.174 140824 username aminvpn 140824 mac 140824 bytes_out 0 140824 bytes_in 0 140824 station_ip 5.233.49.34 140824 port 427 140824 unique_id port 140824 remote_ip 10.8.0.14 140825 username hamidsalari 140825 kill_reason Another user logged on this global unique id 140825 mac 140825 bytes_out 0 140825 bytes_in 0 140825 station_ip 5.119.200.40 140825 port 376 140825 unique_id port 140830 username hashtadani3 140830 mac 140830 bytes_out 0 140830 bytes_in 0 140830 station_ip 37.129.67.30 140830 port 218 140830 unique_id port 140830 remote_ip 10.8.1.94 140834 username tahmasebi 140834 kill_reason Another user logged on this global unique id 140834 mac 140834 bytes_out 0 140834 bytes_in 0 140834 station_ip 5.125.122.143 140834 port 387 140834 unique_id port 140834 remote_ip 10.8.0.42 140837 username hassan 140837 mac 140837 bytes_out 0 140837 bytes_in 0 140837 station_ip 5.119.107.148 140837 port 406 140837 unique_id port 140842 username amir 140842 kill_reason Another user logged on this global unique id 140842 mac 140842 bytes_out 0 140842 bytes_in 0 140842 station_ip 46.225.214.125 140842 port 418 140842 unique_id port 140844 username hashtadani3 140844 mac 140844 bytes_out 0 140844 bytes_in 0 140844 station_ip 37.129.67.30 140844 port 406 140844 unique_id port 140844 remote_ip 10.8.0.154 140846 username tahmasebi 140812 station_ip 5.233.49.34 140812 port 387 140812 unique_id port 140812 remote_ip 10.8.0.14 140814 username barzegar 140814 mac 140814 bytes_out 0 140814 bytes_in 0 140814 station_ip 5.119.21.255 140814 port 387 140814 unique_id port 140814 remote_ip 10.8.0.234 140820 username rezaei 140820 mac 140820 bytes_out 0 140820 bytes_in 0 140820 station_ip 5.119.147.166 140820 port 427 140820 unique_id port 140821 username hashtadani3 140821 mac 140821 bytes_out 0 140821 bytes_in 0 140821 station_ip 37.129.67.30 140821 port 431 140821 unique_id port 140829 username hashtadani3 140829 mac 140829 bytes_out 0 140829 bytes_in 0 140829 station_ip 37.129.67.30 140829 port 218 140829 unique_id port 140829 remote_ip 10.8.1.94 140835 username hamidsalari 140835 mac 140835 bytes_out 0 140835 bytes_in 0 140835 station_ip 5.119.200.40 140835 port 376 140835 unique_id port 140839 username hashtadani3 140839 mac 140839 bytes_out 0 140839 bytes_in 0 140839 station_ip 37.129.67.30 140839 port 427 140839 unique_id port 140839 remote_ip 10.8.0.154 140841 username tahmasebi 140841 kill_reason Another user logged on this global unique id 140841 mac 140841 bytes_out 0 140841 bytes_in 0 140841 station_ip 5.125.122.143 140841 port 387 140841 unique_id port 140843 username hashtadani3 140843 mac 140843 bytes_out 0 140843 bytes_in 0 140843 station_ip 37.129.67.30 140843 port 406 140843 unique_id port 140843 remote_ip 10.8.0.154 140853 username farhad2 140853 mac 140853 bytes_out 0 140853 bytes_in 0 140853 station_ip 5.119.222.213 140853 port 217 140853 unique_id port 140858 username jafari 140858 kill_reason Another user logged on this global unique id 140858 mac 140858 bytes_out 0 140858 bytes_in 0 140858 station_ip 37.137.5.7 140858 port 379 140858 unique_id port 140859 username hashtadani3 140859 mac 140859 bytes_out 0 140859 bytes_in 0 140859 station_ip 37.129.67.30 140859 port 218 140859 unique_id port 140859 remote_ip 10.8.1.94 140860 username aminvpn 140860 mac 140860 bytes_out 0 140860 bytes_in 0 140860 station_ip 5.233.49.34 140860 port 418 140860 unique_id port 140860 remote_ip 10.8.0.14 140864 username farhad2 140864 mac 140864 bytes_out 116171 140864 bytes_in 323738 140864 station_ip 5.119.222.213 140864 port 406 140864 unique_id port 140864 remote_ip 10.8.0.190 140866 username hashtadani3 140866 mac 140866 bytes_out 0 140866 bytes_in 0 140866 station_ip 37.129.67.30 140866 port 406 140866 unique_id port 140866 remote_ip 10.8.0.154 140873 username amir 140873 mac 140873 bytes_out 0 140873 bytes_in 0 140873 station_ip 46.225.214.125 140873 port 418 140873 unique_id port 140873 remote_ip 10.8.0.50 140887 username hashtadani3 140887 mac 140887 bytes_out 0 140887 bytes_in 0 140887 station_ip 37.129.67.30 140887 port 376 140887 unique_id port 140887 remote_ip 10.8.0.154 140888 username hashtadani3 140888 mac 140888 bytes_out 0 140888 bytes_in 0 140888 station_ip 37.129.67.30 140888 port 376 140888 unique_id port 140888 remote_ip 10.8.0.154 140892 username tahmasebi 140892 kill_reason Another user logged on this global unique id 140892 mac 140892 bytes_out 0 140892 bytes_in 0 140892 station_ip 5.125.122.143 140892 port 387 140892 unique_id port 140893 username hashtadani3 140893 mac 140893 bytes_out 0 140893 bytes_in 0 140893 station_ip 37.129.67.30 140893 port 377 140893 unique_id port 140893 remote_ip 10.8.0.154 140894 username aminvpn 140894 mac 140828 station_ip 37.129.67.30 140828 port 218 140828 unique_id port 140828 remote_ip 10.8.1.94 140831 username hashtadani3 140831 mac 140831 bytes_out 0 140831 bytes_in 0 140831 station_ip 37.129.67.30 140831 port 427 140831 unique_id port 140831 remote_ip 10.8.0.154 140832 username hashtadani3 140832 mac 140832 bytes_out 0 140832 bytes_in 0 140832 station_ip 37.129.67.30 140832 port 427 140832 unique_id port 140832 remote_ip 10.8.0.154 140833 username hashtadani3 140833 mac 140833 bytes_out 0 140833 bytes_in 0 140833 station_ip 37.129.67.30 140833 port 427 140833 unique_id port 140833 remote_ip 10.8.0.154 140836 username barzegar 140836 mac 140836 bytes_out 0 140836 bytes_in 0 140836 station_ip 5.119.21.255 140836 port 218 140836 unique_id port 140836 remote_ip 10.8.1.174 140838 username jafari 140838 kill_reason Another user logged on this global unique id 140838 mac 140838 bytes_out 0 140838 bytes_in 0 140838 station_ip 37.137.5.7 140838 port 379 140838 unique_id port 140840 username aminvpn 140840 mac 140840 bytes_out 0 140840 bytes_in 0 140840 station_ip 5.233.49.34 140840 port 376 140840 unique_id port 140840 remote_ip 10.8.0.14 140845 username rezaei 140845 kill_reason Another user logged on this global unique id 140845 mac 140845 bytes_out 0 140845 bytes_in 0 140845 station_ip 5.119.147.166 140845 port 426 140845 unique_id port 140845 remote_ip 10.8.0.230 140848 username hashtadani3 140848 mac 140848 bytes_out 0 140848 bytes_in 0 140848 station_ip 37.129.67.30 140848 port 218 140848 unique_id port 140848 remote_ip 10.8.1.94 140851 username aminvpn 140851 unique_id port 140851 terminate_cause User-Request 140851 bytes_out 17764533 140851 bytes_in 261257308 140851 station_ip 5.119.94.12 140851 port 15730713 140851 nas_port_type Virtual 140851 remote_ip 5.5.5.252 140854 username kordestani 140854 mac 140854 bytes_out 0 140854 bytes_in 0 140854 station_ip 151.235.113.81 140854 port 406 140854 unique_id port 140854 remote_ip 10.8.0.134 140855 username hashtadani3 140855 mac 140855 bytes_out 0 140855 bytes_in 0 140855 station_ip 37.129.67.30 140855 port 406 140855 unique_id port 140855 remote_ip 10.8.0.154 140856 username amir 140856 mac 140856 bytes_out 0 140856 bytes_in 0 140856 station_ip 46.225.214.125 140856 port 418 140856 unique_id port 140861 username hashtadani3 140861 mac 140861 bytes_out 0 140861 bytes_in 0 140861 station_ip 37.129.67.30 140861 port 427 140861 unique_id port 140861 remote_ip 10.8.0.154 140862 username hashtadani3 140862 mac 140862 bytes_out 0 140862 bytes_in 0 140862 station_ip 37.129.67.30 140862 port 418 140862 unique_id port 140862 remote_ip 10.8.0.154 140865 username mosi 140865 kill_reason Another user logged on this global unique id 140865 mac 140865 bytes_out 0 140865 bytes_in 0 140865 station_ip 151.235.75.185 140865 port 414 140865 unique_id port 140867 username mohammadmahdi 140867 mac 140867 bytes_out 0 140867 bytes_in 0 140867 station_ip 5.120.29.146 140867 port 377 140867 unique_id port 140870 username hashtadani3 140870 mac 140870 bytes_out 0 140870 bytes_in 0 140870 station_ip 37.129.67.30 140870 port 406 140870 unique_id port 140870 remote_ip 10.8.0.154 140871 username amir 140871 mac 140871 bytes_out 0 140871 bytes_in 0 140871 station_ip 46.225.214.125 140871 port 406 140871 unique_id port 140871 remote_ip 10.8.0.50 140872 username hashtadani3 140872 mac 140872 bytes_out 0 140872 bytes_in 0 140872 station_ip 37.129.67.30 140846 kill_reason Another user logged on this global unique id 140846 mac 140846 bytes_out 0 140846 bytes_in 0 140846 station_ip 5.125.122.143 140846 port 387 140846 unique_id port 140847 username rezaei 140847 mac 140847 bytes_out 0 140847 bytes_in 0 140847 station_ip 5.119.147.166 140847 port 426 140847 unique_id port 140849 username mohammadmahdi 140849 kill_reason Another user logged on this global unique id 140849 mac 140849 bytes_out 0 140849 bytes_in 0 140849 station_ip 5.120.29.146 140849 port 377 140849 unique_id port 140849 remote_ip 10.8.0.54 140850 username hashtadani3 140850 mac 140850 bytes_out 0 140850 bytes_in 0 140850 station_ip 37.129.67.30 140850 port 426 140850 unique_id port 140850 remote_ip 10.8.0.154 140852 username hashtadani3 140852 mac 140852 bytes_out 0 140852 bytes_in 0 140852 station_ip 37.129.67.30 140852 port 426 140852 unique_id port 140852 remote_ip 10.8.0.154 140857 username barzegar 140857 mac 140857 bytes_out 0 140857 bytes_in 0 140857 station_ip 5.119.21.255 140857 port 217 140857 unique_id port 140857 remote_ip 10.8.1.174 140863 username amir 140863 kill_reason Maximum check online fails reached 140863 mac 140863 bytes_out 0 140863 bytes_in 0 140863 station_ip 46.225.214.125 140863 port 426 140863 unique_id port 140868 username amir 140868 mac 140868 bytes_out 0 140868 bytes_in 0 140868 station_ip 46.225.214.125 140868 port 406 140868 unique_id port 140868 remote_ip 10.8.0.50 140869 username hashtadani3 140869 mac 140869 bytes_out 0 140869 bytes_in 0 140869 station_ip 37.129.67.30 140869 port 406 140869 unique_id port 140869 remote_ip 10.8.0.154 140876 username hashtadani3 140876 mac 140876 bytes_out 0 140876 bytes_in 0 140876 station_ip 37.129.67.30 140876 port 217 140876 unique_id port 140876 remote_ip 10.8.1.94 140877 username aminvpn 140877 mac 140877 bytes_out 0 140877 bytes_in 0 140877 station_ip 5.233.49.34 140877 port 406 140877 unique_id port 140877 remote_ip 10.8.0.14 140879 username barzegar 140879 mac 140879 bytes_out 0 140879 bytes_in 0 140879 station_ip 5.119.21.255 140879 port 217 140879 unique_id port 140879 remote_ip 10.8.1.174 140881 username mosi 140881 kill_reason Another user logged on this global unique id 140881 mac 140881 bytes_out 0 140881 bytes_in 0 140881 station_ip 151.235.75.185 140881 port 414 140881 unique_id port 140884 username hashtadani3 140884 mac 140884 bytes_out 0 140884 bytes_in 0 140884 station_ip 37.129.67.30 140884 port 376 140884 unique_id port 140884 remote_ip 10.8.0.154 140886 username amir 140886 kill_reason Maximum check online fails reached 140886 mac 140886 bytes_out 0 140886 bytes_in 0 140886 station_ip 46.225.214.125 140886 port 406 140886 unique_id port 140890 username hashtadani3 140890 mac 140890 bytes_out 0 140890 bytes_in 0 140890 station_ip 37.129.67.30 140890 port 377 140890 unique_id port 140890 remote_ip 10.8.0.154 140895 username amir 140895 mac 140895 bytes_out 0 140895 bytes_in 0 140895 station_ip 46.225.214.125 140895 port 218 140895 unique_id port 140895 remote_ip 10.8.1.22 140898 username hashtadani3 140898 mac 140898 bytes_out 0 140898 bytes_in 0 140898 station_ip 37.129.67.30 140898 port 377 140898 unique_id port 140898 remote_ip 10.8.0.154 140900 username naeimeh 140900 mac 140900 bytes_out 0 140900 bytes_in 0 140900 station_ip 113.203.97.64 140900 port 217 140900 unique_id port 140900 remote_ip 10.8.1.206 140903 username hashtadani3 140903 mac 140872 port 406 140872 unique_id port 140872 remote_ip 10.8.0.154 140874 username hashtadani3 140874 mac 140874 bytes_out 0 140874 bytes_in 0 140874 station_ip 37.129.67.30 140874 port 406 140874 unique_id port 140874 remote_ip 10.8.0.154 140875 username hashtadani3 140875 mac 140875 bytes_out 0 140875 bytes_in 0 140875 station_ip 37.129.67.30 140875 port 406 140875 unique_id port 140875 remote_ip 10.8.0.154 140878 username mahdiyehalizadeh 140878 mac 140878 bytes_out 0 140878 bytes_in 0 140878 station_ip 83.122.255.83 140878 port 376 140878 unique_id port 140878 remote_ip 10.8.0.82 140880 username hashtadani3 140880 mac 140880 bytes_out 0 140880 bytes_in 0 140880 station_ip 37.129.67.30 140880 port 406 140880 unique_id port 140880 remote_ip 10.8.0.154 140882 username hashtadani3 140882 mac 140882 bytes_out 0 140882 bytes_in 0 140882 station_ip 37.129.67.30 140882 port 217 140882 unique_id port 140882 remote_ip 10.8.1.94 140883 username hashtadani3 140883 mac 140883 bytes_out 0 140883 bytes_in 0 140883 station_ip 37.129.67.30 140883 port 217 140883 unique_id port 140883 remote_ip 10.8.1.94 140885 username tahmasebi 140885 kill_reason Another user logged on this global unique id 140885 mac 140885 bytes_out 0 140885 bytes_in 0 140885 station_ip 5.125.122.143 140885 port 387 140885 unique_id port 140889 username farhad2 140889 mac 140889 bytes_out 1785650 140889 bytes_in 9295470 140889 station_ip 5.119.222.213 140889 port 377 140889 unique_id port 140889 remote_ip 10.8.0.190 140891 username amir 140891 mac 140891 bytes_out 21335 140891 bytes_in 27154 140891 station_ip 46.225.214.125 140891 port 218 140891 unique_id port 140891 remote_ip 10.8.1.22 140897 username barzegar 140897 mac 140897 bytes_out 0 140897 bytes_in 0 140897 station_ip 5.119.21.255 140897 port 218 140897 unique_id port 140897 remote_ip 10.8.1.174 140902 username farhad2 140902 mac 140902 bytes_out 0 140902 bytes_in 0 140902 station_ip 5.120.80.75 140902 port 376 140902 unique_id port 140902 remote_ip 10.8.0.190 140905 username tahmasebi 140905 kill_reason Another user logged on this global unique id 140905 mac 140905 bytes_out 0 140905 bytes_in 0 140905 station_ip 5.125.122.143 140905 port 387 140905 unique_id port 140909 username hashtadani3 140909 mac 140909 bytes_out 0 140909 bytes_in 0 140909 station_ip 37.129.67.30 140909 port 377 140909 unique_id port 140909 remote_ip 10.8.0.154 140911 username zare 140911 kill_reason Relative expiration date has reached 140911 mac 140911 bytes_out 0 140911 bytes_in 0 140911 station_ip 37.27.13.103 140911 port 377 140911 unique_id port 140913 username hashtadani3 140913 mac 140913 bytes_out 0 140913 bytes_in 0 140913 station_ip 37.129.67.30 140913 port 418 140913 unique_id port 140913 remote_ip 10.8.0.154 140915 username tahmasebi 140915 kill_reason Another user logged on this global unique id 140915 mac 140915 bytes_out 0 140915 bytes_in 0 140915 station_ip 5.125.122.143 140915 port 387 140915 unique_id port 140918 username alikomsari 140918 kill_reason Another user logged on this global unique id 140918 mac 140918 bytes_out 0 140918 bytes_in 0 140918 station_ip 5.120.123.174 140918 port 416 140918 unique_id port 140918 remote_ip 10.8.0.70 140920 username barzegar 140920 mac 140920 bytes_out 0 140920 bytes_in 0 140920 station_ip 5.119.21.255 140920 port 217 140920 unique_id port 140920 remote_ip 10.8.1.174 140932 username hashtadani3 140932 mac 140932 bytes_out 0 140932 bytes_in 0 140894 bytes_out 0 140894 bytes_in 0 140894 station_ip 5.233.49.34 140894 port 377 140894 unique_id port 140894 remote_ip 10.8.0.14 140896 username aminvpn 140896 mac 140896 bytes_out 0 140896 bytes_in 0 140896 station_ip 5.233.49.34 140896 port 418 140896 unique_id port 140896 remote_ip 10.8.0.14 140899 username mosi 140899 kill_reason Another user logged on this global unique id 140899 mac 140899 bytes_out 0 140899 bytes_in 0 140899 station_ip 151.235.75.185 140899 port 414 140899 unique_id port 140901 username hashtadani3 140901 mac 140901 bytes_out 0 140901 bytes_in 0 140901 station_ip 37.129.67.30 140901 port 377 140901 unique_id port 140901 remote_ip 10.8.0.154 140906 username hashtadani3 140906 mac 140906 bytes_out 0 140906 bytes_in 0 140906 station_ip 37.129.67.30 140906 port 377 140906 unique_id port 140906 remote_ip 10.8.0.154 140908 username amir 140908 mac 140908 bytes_out 0 140908 bytes_in 0 140908 station_ip 46.225.214.125 140908 port 418 140908 unique_id port 140908 remote_ip 10.8.0.50 140910 username amir 140910 mac 140910 bytes_out 0 140910 bytes_in 0 140910 station_ip 46.225.214.125 140910 port 377 140910 unique_id port 140910 remote_ip 10.8.0.50 140912 username zare 140912 kill_reason Relative expiration date has reached 140912 mac 140912 bytes_out 0 140912 bytes_in 0 140912 station_ip 37.27.13.103 140912 port 377 140912 unique_id port 140917 username hashtadani3 140917 mac 140917 bytes_out 0 140917 bytes_in 0 140917 station_ip 37.129.67.30 140917 port 418 140917 unique_id port 140917 remote_ip 10.8.0.154 140919 username tahmasebi 140919 mac 140919 bytes_out 0 140919 bytes_in 0 140919 station_ip 5.125.122.143 140919 port 387 140919 unique_id port 140921 username hashtadani3 140921 mac 140921 bytes_out 0 140921 bytes_in 0 140921 station_ip 37.129.67.30 140921 port 217 140921 unique_id port 140921 remote_ip 10.8.1.94 140922 username hashtadani3 140922 mac 140922 bytes_out 0 140922 bytes_in 0 140922 station_ip 37.129.67.30 140922 port 387 140922 unique_id port 140922 remote_ip 10.8.0.154 140924 username hashtadani3 140924 mac 140924 bytes_out 0 140924 bytes_in 0 140924 station_ip 37.129.67.30 140924 port 217 140924 unique_id port 140924 remote_ip 10.8.1.94 140925 username hashtadani3 140925 mac 140925 bytes_out 0 140925 bytes_in 0 140925 station_ip 37.129.67.30 140925 port 387 140925 unique_id port 140925 remote_ip 10.8.0.154 140926 username alihajmalek 140926 mac 140926 bytes_out 1600975 140926 bytes_in 26201722 140926 station_ip 83.122.138.165 140926 port 377 140926 unique_id port 140926 remote_ip 10.8.0.210 140927 username hashtadani3 140927 mac 140927 bytes_out 0 140927 bytes_in 0 140927 station_ip 37.129.67.30 140927 port 217 140927 unique_id port 140927 remote_ip 10.8.1.94 140928 username farhad2 140928 kill_reason Another user logged on this global unique id 140928 mac 140928 bytes_out 0 140928 bytes_in 0 140928 station_ip 5.120.104.173 140928 port 376 140928 unique_id port 140928 remote_ip 10.8.0.190 140937 username alihajmalek 140937 kill_reason Another user logged on this global unique id 140937 mac 140937 bytes_out 0 140937 bytes_in 0 140937 station_ip 83.122.138.165 140937 port 377 140937 unique_id port 140943 username aminvpn 140943 mac 140943 bytes_out 0 140943 bytes_in 0 140943 station_ip 5.233.49.34 140943 port 418 140943 unique_id port 140943 remote_ip 10.8.0.14 140946 username barzegar 140946 mac 140946 bytes_out 0 140903 bytes_out 0 140903 bytes_in 0 140903 station_ip 37.129.67.30 140903 port 377 140903 unique_id port 140903 remote_ip 10.8.0.154 140904 username sabaghnezhad 140904 mac 140904 bytes_out 323629 140904 bytes_in 755087 140904 station_ip 5.216.55.222 140904 port 432 140904 unique_id port 140904 remote_ip 10.8.0.186 140907 username hashtadani3 140907 mac 140907 bytes_out 0 140907 bytes_in 0 140907 station_ip 37.129.67.30 140907 port 377 140907 unique_id port 140907 remote_ip 10.8.0.154 140914 username farhad2 140914 mac 140914 bytes_out 1347847 140914 bytes_in 5928948 140914 station_ip 5.120.104.173 140914 port 376 140914 unique_id port 140914 remote_ip 10.8.0.190 140916 username mosi 140916 kill_reason Another user logged on this global unique id 140916 mac 140916 bytes_out 0 140916 bytes_in 0 140916 station_ip 151.235.75.185 140916 port 414 140916 unique_id port 140923 username hashtadani3 140923 mac 140923 bytes_out 0 140923 bytes_in 0 140923 station_ip 37.129.67.30 140923 port 387 140923 unique_id port 140923 remote_ip 10.8.0.154 140929 username hashtadani3 140929 mac 140929 bytes_out 0 140929 bytes_in 0 140929 station_ip 37.129.67.30 140929 port 217 140929 unique_id port 140929 remote_ip 10.8.1.94 140930 username hashtadani3 140930 mac 140930 bytes_out 0 140930 bytes_in 0 140930 station_ip 37.129.67.30 140930 port 387 140930 unique_id port 140930 remote_ip 10.8.0.154 140931 username hashtadani3 140931 kill_reason Maximum check online fails reached 140931 mac 140931 bytes_out 0 140931 bytes_in 0 140931 station_ip 37.129.67.30 140931 port 217 140931 unique_id port 140933 username barzegar 140933 mac 140933 bytes_out 0 140933 bytes_in 0 140933 station_ip 5.119.21.255 140933 port 218 140933 unique_id port 140933 remote_ip 10.8.1.174 140935 username alihajmalek 140935 kill_reason Another user logged on this global unique id 140935 mac 140935 bytes_out 0 140935 bytes_in 0 140935 station_ip 83.122.138.165 140935 port 377 140935 unique_id port 140935 remote_ip 10.8.0.210 140938 username hashtadani3 140938 mac 140938 bytes_out 0 140938 bytes_in 0 140938 station_ip 37.129.67.30 140938 port 387 140938 unique_id port 140938 remote_ip 10.8.0.154 140940 username hashtadani3 140940 mac 140940 bytes_out 0 140940 bytes_in 0 140940 station_ip 37.129.67.30 140940 port 387 140940 unique_id port 140940 remote_ip 10.8.0.154 140941 username hashtadani3 140941 mac 140941 bytes_out 0 140941 bytes_in 0 140941 station_ip 37.129.67.30 140941 port 387 140941 unique_id port 140941 remote_ip 10.8.0.154 140942 username hashtadani3 140942 mac 140942 bytes_out 0 140942 bytes_in 0 140942 station_ip 37.129.67.30 140942 port 418 140942 unique_id port 140942 remote_ip 10.8.0.154 140945 username hashtadani3 140945 mac 140945 bytes_out 0 140945 bytes_in 0 140945 station_ip 37.129.67.30 140945 port 218 140945 unique_id port 140945 remote_ip 10.8.1.94 140951 username alihajmalek 140951 kill_reason Another user logged on this global unique id 140951 mac 140951 bytes_out 0 140951 bytes_in 0 140951 station_ip 83.122.138.165 140951 port 377 140951 unique_id port 140953 username hashtadani3 140953 mac 140953 bytes_out 0 140953 bytes_in 0 140953 station_ip 37.129.67.30 140953 port 418 140953 unique_id port 140953 remote_ip 10.8.0.154 140957 username hashtadani3 140957 mac 140957 bytes_out 0 140957 bytes_in 0 140957 station_ip 37.129.67.30 140957 port 377 140957 unique_id port 140957 remote_ip 10.8.0.154 140958 username hashtadani3 140932 station_ip 37.129.67.30 140932 port 387 140932 unique_id port 140932 remote_ip 10.8.0.154 140934 username hashtadani3 140934 mac 140934 bytes_out 0 140934 bytes_in 0 140934 station_ip 37.129.67.30 140934 port 387 140934 unique_id port 140934 remote_ip 10.8.0.154 140936 username hashtadani3 140936 mac 140936 bytes_out 0 140936 bytes_in 0 140936 station_ip 37.129.67.30 140936 port 418 140936 unique_id port 140936 remote_ip 10.8.0.154 140939 username farhad2 140939 mac 140939 bytes_out 0 140939 bytes_in 0 140939 station_ip 5.120.104.173 140939 port 376 140939 unique_id port 140944 username farhad2 140944 kill_reason Maximum check online fails reached 140944 mac 140944 bytes_out 0 140944 bytes_in 0 140944 station_ip 5.120.104.173 140944 port 376 140944 unique_id port 140948 username hashtadani3 140948 mac 140948 bytes_out 0 140948 bytes_in 0 140948 station_ip 37.129.67.30 140948 port 218 140948 unique_id port 140948 remote_ip 10.8.1.94 140950 username hashtadani3 140950 mac 140950 bytes_out 0 140950 bytes_in 0 140950 station_ip 37.129.67.30 140950 port 418 140950 unique_id port 140950 remote_ip 10.8.0.154 140952 username hashtadani3 140952 mac 140952 bytes_out 0 140952 bytes_in 0 140952 station_ip 37.129.67.30 140952 port 418 140952 unique_id port 140952 remote_ip 10.8.0.154 140955 username hashtadani3 140955 mac 140955 bytes_out 0 140955 bytes_in 0 140955 station_ip 37.129.67.30 140955 port 377 140955 unique_id port 140955 remote_ip 10.8.0.154 140956 username aminvpn 140956 mac 140956 bytes_out 0 140956 bytes_in 0 140956 station_ip 5.233.49.34 140956 port 418 140956 unique_id port 140956 remote_ip 10.8.0.14 140960 username hashtadani3 140960 mac 140960 bytes_out 0 140960 bytes_in 0 140960 station_ip 37.129.67.30 140960 port 377 140960 unique_id port 140960 remote_ip 10.8.0.154 140962 username hashtadani3 140962 mac 140962 bytes_out 0 140962 bytes_in 0 140962 station_ip 37.129.67.30 140962 port 377 140962 unique_id port 140962 remote_ip 10.8.0.154 140968 username hashtadani3 140968 mac 140968 bytes_out 0 140968 bytes_in 0 140968 station_ip 37.129.67.30 140968 port 377 140968 unique_id port 140968 remote_ip 10.8.0.154 140971 username hashtadani3 140971 mac 140971 bytes_out 0 140971 bytes_in 0 140971 station_ip 37.129.67.30 140971 port 377 140971 unique_id port 140971 remote_ip 10.8.0.154 140975 username hashtadani3 140975 mac 140975 bytes_out 0 140975 bytes_in 0 140975 station_ip 37.129.67.30 140975 port 377 140975 unique_id port 140975 remote_ip 10.8.0.154 140978 username hashtadani3 140978 mac 140978 bytes_out 0 140978 bytes_in 0 140978 station_ip 37.129.67.30 140978 port 218 140978 unique_id port 140978 remote_ip 10.8.1.94 140982 username hashtadani3 140982 mac 140982 bytes_out 0 140982 bytes_in 0 140982 station_ip 37.129.67.30 140982 port 379 140982 unique_id port 140982 remote_ip 10.8.0.154 140983 username aminvpn 140983 mac 140983 bytes_out 0 140983 bytes_in 0 140983 station_ip 5.233.49.34 140983 port 377 140983 unique_id port 140983 remote_ip 10.8.0.14 140984 username hashtadani3 140984 mac 140984 bytes_out 0 140984 bytes_in 0 140984 station_ip 37.129.67.30 140984 port 219 140984 unique_id port 140984 remote_ip 10.8.1.94 140985 username hashtadani3 140985 mac 140985 bytes_out 0 140985 bytes_in 0 140985 station_ip 37.129.67.30 140985 port 377 140985 unique_id port 140985 remote_ip 10.8.0.154 140946 bytes_in 0 140946 station_ip 5.119.21.255 140946 port 418 140946 unique_id port 140946 remote_ip 10.8.0.234 140947 username hashtadani3 140947 mac 140947 bytes_out 0 140947 bytes_in 0 140947 station_ip 37.129.67.30 140947 port 418 140947 unique_id port 140947 remote_ip 10.8.0.154 140949 username hashtadani3 140949 mac 140949 bytes_out 0 140949 bytes_in 0 140949 station_ip 37.129.67.30 140949 port 218 140949 unique_id port 140949 remote_ip 10.8.1.94 140954 username alihajmalek 140954 mac 140954 bytes_out 0 140954 bytes_in 0 140954 station_ip 83.122.138.165 140954 port 377 140954 unique_id port 140959 username jafari 140959 kill_reason Another user logged on this global unique id 140959 mac 140959 bytes_out 0 140959 bytes_in 0 140959 station_ip 37.137.5.7 140959 port 379 140959 unique_id port 140961 username barzegar 140961 mac 140961 bytes_out 0 140961 bytes_in 0 140961 station_ip 5.119.21.255 140961 port 218 140961 unique_id port 140961 remote_ip 10.8.1.174 140963 username hashtadani3 140963 mac 140963 bytes_out 0 140963 bytes_in 0 140963 station_ip 37.129.67.30 140963 port 377 140963 unique_id port 140963 remote_ip 10.8.0.154 140964 username hashtadani3 140964 mac 140964 bytes_out 0 140964 bytes_in 0 140964 station_ip 37.129.67.30 140964 port 218 140964 unique_id port 140964 remote_ip 10.8.1.94 140966 username hashtadani3 140966 mac 140966 bytes_out 0 140966 bytes_in 0 140966 station_ip 37.129.67.30 140966 port 377 140966 unique_id port 140966 remote_ip 10.8.0.154 140973 username barzegar 140973 mac 140973 bytes_out 0 140973 bytes_in 0 140973 station_ip 5.119.21.255 140973 port 377 140973 unique_id port 140973 remote_ip 10.8.0.234 140977 username farhad2 140977 mac 140977 bytes_out 4122322 140977 bytes_in 44792432 140977 station_ip 5.120.104.173 140977 port 387 140977 unique_id port 140977 remote_ip 10.8.0.190 140979 username hashtadani3 140979 mac 140979 bytes_out 0 140979 bytes_in 0 140979 station_ip 37.129.67.30 140979 port 218 140979 unique_id port 140979 remote_ip 10.8.1.94 140981 username farhad2 140981 mac 140981 bytes_out 16053 140981 bytes_in 12729 140981 station_ip 5.120.104.173 140981 port 377 140981 unique_id port 140981 remote_ip 10.8.0.190 140988 username hashtadani3 140988 mac 140988 bytes_out 0 140988 bytes_in 0 140988 station_ip 37.129.67.30 140988 port 219 140988 unique_id port 140988 remote_ip 10.8.1.94 140995 username hashtadani3 140995 mac 140995 bytes_out 0 140995 bytes_in 0 140995 station_ip 37.129.67.30 140995 port 377 140995 unique_id port 140995 remote_ip 10.8.0.154 140999 username aminvpn 140999 mac 140999 bytes_out 0 140999 bytes_in 0 140999 station_ip 5.233.49.34 140999 port 387 140999 unique_id port 140999 remote_ip 10.8.0.14 141003 username hashtadani3 141003 mac 141003 bytes_out 0 141003 bytes_in 0 141003 station_ip 37.129.67.30 141003 port 219 141003 unique_id port 141003 remote_ip 10.8.1.94 141012 username barzegar 141012 mac 141012 bytes_out 2530 141012 bytes_in 4929 141012 station_ip 5.119.21.255 141012 port 219 141012 unique_id port 141012 remote_ip 10.8.1.174 141017 username hashtadani3 141017 mac 141017 bytes_out 0 141017 bytes_in 0 141017 station_ip 37.129.67.30 141017 port 379 141017 unique_id port 141017 remote_ip 10.8.0.154 141018 username hashtadani3 141018 mac 141018 bytes_out 0 141018 bytes_in 0 141018 station_ip 37.129.67.30 141018 port 379 141018 unique_id port 140958 mac 140958 bytes_out 0 140958 bytes_in 0 140958 station_ip 37.129.67.30 140958 port 377 140958 unique_id port 140958 remote_ip 10.8.0.154 140965 username hashtadani3 140965 mac 140965 bytes_out 0 140965 bytes_in 0 140965 station_ip 37.129.67.30 140965 port 377 140965 unique_id port 140965 remote_ip 10.8.0.154 140967 username aminvpn 140967 mac 140967 bytes_out 0 140967 bytes_in 0 140967 station_ip 5.233.49.34 140967 port 377 140967 unique_id port 140967 remote_ip 10.8.0.14 140969 username jafari 140969 mac 140969 bytes_out 0 140969 bytes_in 0 140969 station_ip 37.137.5.7 140969 port 379 140969 unique_id port 140970 username hashtadani3 140970 mac 140970 bytes_out 0 140970 bytes_in 0 140970 station_ip 37.129.67.30 140970 port 377 140970 unique_id port 140970 remote_ip 10.8.0.154 140972 username hashtadani3 140972 mac 140972 bytes_out 0 140972 bytes_in 0 140972 station_ip 37.129.67.30 140972 port 379 140972 unique_id port 140972 remote_ip 10.8.0.154 140974 username hashtadani3 140974 mac 140974 bytes_out 0 140974 bytes_in 0 140974 station_ip 37.129.67.30 140974 port 218 140974 unique_id port 140974 remote_ip 10.8.1.94 140976 username hashtadani3 140976 mac 140976 bytes_out 0 140976 bytes_in 0 140976 station_ip 37.129.67.30 140976 port 377 140976 unique_id port 140976 remote_ip 10.8.0.154 140980 username hashtadani3 140980 mac 140980 bytes_out 0 140980 bytes_in 0 140980 station_ip 37.129.67.30 140980 port 218 140980 unique_id port 140980 remote_ip 10.8.1.94 140986 username hashtadani3 140986 kill_reason Maximum check online fails reached 140986 mac 140986 bytes_out 0 140986 bytes_in 0 140986 station_ip 37.129.67.30 140986 port 218 140986 unique_id port 140987 username barzegar 140987 mac 140987 bytes_out 0 140987 bytes_in 0 140987 station_ip 5.119.21.255 140987 port 377 140987 unique_id port 140987 remote_ip 10.8.0.234 140989 username hashtadani3 140989 mac 140989 bytes_out 0 140989 bytes_in 0 140989 station_ip 37.129.67.30 140989 port 377 140989 unique_id port 140989 remote_ip 10.8.0.154 140990 username alikomsari 140990 kill_reason Another user logged on this global unique id 140990 mac 140990 bytes_out 0 140990 bytes_in 0 140990 station_ip 5.120.123.174 140990 port 416 140990 unique_id port 140993 username alikomsari 140993 mac 140993 bytes_out 0 140993 bytes_in 0 140993 station_ip 5.120.123.174 140993 port 416 140993 unique_id port 140997 username hashtadani3 140997 mac 140997 bytes_out 0 140997 bytes_in 0 140997 station_ip 37.129.67.30 140997 port 219 140997 unique_id port 140997 remote_ip 10.8.1.94 140998 username hashtadani3 140998 mac 140998 bytes_out 0 140998 bytes_in 0 140998 station_ip 37.129.67.30 140998 port 219 140998 unique_id port 140998 remote_ip 10.8.1.94 141001 username hashtadani3 141001 mac 141001 bytes_out 0 141001 bytes_in 0 141001 station_ip 37.129.67.30 141001 port 379 141001 unique_id port 141001 remote_ip 10.8.0.154 141002 username hashtadani3 141002 mac 141002 bytes_out 0 141002 bytes_in 0 141002 station_ip 37.129.67.30 141002 port 379 141002 unique_id port 141002 remote_ip 10.8.0.154 141004 username barzegar 141004 mac 141004 bytes_out 0 141004 bytes_in 0 141004 station_ip 5.119.21.255 141004 port 379 141004 unique_id port 141004 remote_ip 10.8.0.234 141005 username hashtadani3 141005 mac 141005 bytes_out 0 141005 bytes_in 0 141005 station_ip 37.129.67.30 141005 port 387 140991 username hashtadani3 140991 mac 140991 bytes_out 0 140991 bytes_in 0 140991 station_ip 37.129.67.30 140991 port 377 140991 unique_id port 140991 remote_ip 10.8.0.154 140992 username hashtadani3 140992 mac 140992 bytes_out 0 140992 bytes_in 0 140992 station_ip 37.129.67.30 140992 port 377 140992 unique_id port 140992 remote_ip 10.8.0.154 140994 username farhad2 140994 mac 140994 bytes_out 0 140994 bytes_in 0 140994 station_ip 5.120.104.173 140994 port 379 140994 unique_id port 140994 remote_ip 10.8.0.190 140996 username hashtadani3 140996 mac 140996 bytes_out 0 140996 bytes_in 0 140996 station_ip 37.129.67.30 140996 port 379 140996 unique_id port 140996 remote_ip 10.8.0.154 141000 username avaanna 141000 mac 141000 bytes_out 0 141000 bytes_in 0 141000 station_ip 83.123.250.115 141000 port 413 141000 unique_id port 141000 remote_ip 10.8.0.94 141006 username farhad2 141006 mac 141006 bytes_out 0 141006 bytes_in 0 141006 station_ip 5.120.104.173 141006 port 377 141006 unique_id port 141006 remote_ip 10.8.0.190 141008 username hashtadani3 141008 mac 141008 bytes_out 0 141008 bytes_in 0 141008 station_ip 37.129.67.30 141008 port 379 141008 unique_id port 141008 remote_ip 10.8.0.154 141009 username hashtadani3 141009 mac 141009 bytes_out 0 141009 bytes_in 0 141009 station_ip 37.129.67.30 141009 port 379 141009 unique_id port 141009 remote_ip 10.8.0.154 141010 username farhad2 141010 mac 141010 bytes_out 0 141010 bytes_in 0 141010 station_ip 5.120.104.173 141010 port 377 141010 unique_id port 141010 remote_ip 10.8.0.190 141013 username hashtadani3 141013 mac 141013 bytes_out 0 141013 bytes_in 0 141013 station_ip 37.129.67.30 141013 port 379 141013 unique_id port 141013 remote_ip 10.8.0.154 141014 username hashtadani3 141014 mac 141014 bytes_out 0 141014 bytes_in 0 141014 station_ip 37.129.67.30 141014 port 379 141014 unique_id port 141014 remote_ip 10.8.0.154 141019 username hashtadani3 141019 mac 141019 bytes_out 0 141019 bytes_in 0 141019 station_ip 37.129.67.30 141019 port 379 141019 unique_id port 141019 remote_ip 10.8.0.154 141023 username hashtadani3 141023 mac 141023 bytes_out 0 141023 bytes_in 0 141023 station_ip 37.129.67.30 141023 port 221 141023 unique_id port 141023 remote_ip 10.8.1.94 141024 username hashtadani3 141024 mac 141024 bytes_out 0 141024 bytes_in 0 141024 station_ip 37.129.67.30 141024 port 379 141024 unique_id port 141024 remote_ip 10.8.0.154 141028 username hashtadani3 141028 mac 141028 bytes_out 0 141028 bytes_in 0 141028 station_ip 37.129.67.30 141028 port 387 141028 unique_id port 141028 remote_ip 10.8.0.154 141032 username hashtadani3 141032 mac 141032 bytes_out 0 141032 bytes_in 0 141032 station_ip 37.129.67.30 141032 port 221 141032 unique_id port 141032 remote_ip 10.8.1.94 141034 username hashtadani3 141034 mac 141034 bytes_out 0 141034 bytes_in 0 141034 station_ip 37.129.67.30 141034 port 221 141034 unique_id port 141034 remote_ip 10.8.1.94 141047 username hashtadani3 141047 mac 141047 bytes_out 0 141047 bytes_in 0 141047 station_ip 37.129.67.30 141047 port 379 141047 unique_id port 141047 remote_ip 10.8.0.154 141048 username hashtadani3 141048 mac 141048 bytes_out 0 141048 bytes_in 0 141048 station_ip 37.129.67.30 141048 port 387 141048 unique_id port 141048 remote_ip 10.8.0.154 141051 username hashtadani3 141051 mac 141051 bytes_out 0 141051 bytes_in 0 141005 unique_id port 141005 remote_ip 10.8.0.154 141007 username hashtadani3 141007 mac 141007 bytes_out 0 141007 bytes_in 0 141007 station_ip 37.129.67.30 141007 port 379 141007 unique_id port 141007 remote_ip 10.8.0.154 141011 username hashtadani3 141011 mac 141011 bytes_out 0 141011 bytes_in 0 141011 station_ip 37.129.67.30 141011 port 379 141011 unique_id port 141011 remote_ip 10.8.0.154 141015 username hashtadani3 141015 mac 141015 bytes_out 0 141015 bytes_in 0 141015 station_ip 37.129.67.30 141015 port 379 141015 unique_id port 141015 remote_ip 10.8.0.154 141016 username farhad2 141016 mac 141016 bytes_out 0 141016 bytes_in 0 141016 station_ip 5.120.104.173 141016 port 377 141016 unique_id port 141016 remote_ip 10.8.0.190 141021 username hashtadani3 141021 mac 141021 bytes_out 0 141021 bytes_in 0 141021 station_ip 37.129.67.30 141021 port 379 141021 unique_id port 141021 remote_ip 10.8.0.154 141022 username barzegar 141022 mac 141022 bytes_out 0 141022 bytes_in 0 141022 station_ip 5.119.21.255 141022 port 379 141022 unique_id port 141022 remote_ip 10.8.0.234 141026 username aminvpn 141026 kill_reason Maximum check online fails reached 141026 mac 141026 bytes_out 0 141026 bytes_in 0 141026 station_ip 5.233.49.34 141026 port 219 141026 unique_id port 141027 username aminvpn 141027 mac 141027 bytes_out 0 141027 bytes_in 0 141027 station_ip 5.119.94.12 141027 port 379 141027 unique_id port 141027 remote_ip 10.8.0.14 141037 username hashtadani3 141037 mac 141037 bytes_out 0 141037 bytes_in 0 141037 station_ip 37.129.67.30 141037 port 379 141037 unique_id port 141037 remote_ip 10.8.0.154 141038 username aminvpn 141038 mac 141038 bytes_out 0 141038 bytes_in 0 141038 station_ip 5.119.94.12 141038 port 387 141038 unique_id port 141038 remote_ip 10.8.0.14 141040 username hashtadani3 141040 mac 141040 bytes_out 0 141040 bytes_in 0 141040 station_ip 37.129.67.30 141040 port 221 141040 unique_id port 141040 remote_ip 10.8.1.94 141043 username hashtadani3 141043 mac 141043 bytes_out 0 141043 bytes_in 0 141043 station_ip 37.129.67.30 141043 port 387 141043 unique_id port 141043 remote_ip 10.8.0.154 141045 username hashtadani3 141045 mac 141045 bytes_out 0 141045 bytes_in 0 141045 station_ip 37.129.67.30 141045 port 387 141045 unique_id port 141045 remote_ip 10.8.0.154 141050 username hashtadani3 141050 mac 141050 bytes_out 0 141050 bytes_in 0 141050 station_ip 37.129.67.30 141050 port 221 141050 unique_id port 141050 remote_ip 10.8.1.94 141055 username farhad2 141055 mac 141055 bytes_out 4481937 141055 bytes_in 46692608 141055 station_ip 5.120.104.173 141055 port 377 141055 unique_id port 141055 remote_ip 10.8.0.190 141068 username hashtadani3 141068 mac 141068 bytes_out 0 141068 bytes_in 0 141068 station_ip 37.129.67.30 141068 port 379 141068 unique_id port 141068 remote_ip 10.8.0.154 141079 username hashtadani3 141079 mac 141079 bytes_out 0 141079 bytes_in 0 141079 station_ip 37.129.67.30 141079 port 387 141079 unique_id port 141079 remote_ip 10.8.0.154 141080 username hashtadani3 141080 mac 141080 bytes_out 0 141080 bytes_in 0 141080 station_ip 37.129.67.30 141080 port 379 141080 unique_id port 141080 remote_ip 10.8.0.154 141083 username hashtadani3 141083 mac 141083 bytes_out 0 141083 bytes_in 0 141083 station_ip 37.129.67.30 141083 port 379 141083 unique_id port 141083 remote_ip 10.8.0.154 141084 username hashtadani3 141018 remote_ip 10.8.0.154 141020 username aminvpn 141020 mac 141020 bytes_out 0 141020 bytes_in 0 141020 station_ip 5.233.49.34 141020 port 219 141020 unique_id port 141020 remote_ip 10.8.1.6 141025 username hashtadani3 141025 mac 141025 bytes_out 0 141025 bytes_in 0 141025 station_ip 37.129.67.30 141025 port 379 141025 unique_id port 141025 remote_ip 10.8.0.154 141029 username hashtadani3 141029 mac 141029 bytes_out 0 141029 bytes_in 0 141029 station_ip 37.129.67.30 141029 port 379 141029 unique_id port 141029 remote_ip 10.8.0.154 141030 username hashtadani3 141030 mac 141030 bytes_out 0 141030 bytes_in 0 141030 station_ip 37.129.67.30 141030 port 379 141030 unique_id port 141030 remote_ip 10.8.0.154 141031 username farhad2 141031 mac 141031 bytes_out 0 141031 bytes_in 0 141031 station_ip 5.120.104.173 141031 port 377 141031 unique_id port 141031 remote_ip 10.8.0.190 141033 username hashtadani3 141033 mac 141033 bytes_out 0 141033 bytes_in 0 141033 station_ip 37.129.67.30 141033 port 377 141033 unique_id port 141033 remote_ip 10.8.0.154 141035 username hashtadani3 141035 mac 141035 bytes_out 0 141035 bytes_in 0 141035 station_ip 37.129.67.30 141035 port 379 141035 unique_id port 141035 remote_ip 10.8.0.154 141036 username barzegar 141036 mac 141036 bytes_out 0 141036 bytes_in 0 141036 station_ip 5.119.21.255 141036 port 221 141036 unique_id port 141036 remote_ip 10.8.1.174 141039 username hashtadani3 141039 mac 141039 bytes_out 0 141039 bytes_in 0 141039 station_ip 37.129.67.30 141039 port 221 141039 unique_id port 141039 remote_ip 10.8.1.94 141041 username hashtadani3 141041 mac 141041 bytes_out 0 141041 bytes_in 0 141041 station_ip 37.129.67.30 141041 port 387 141041 unique_id port 141041 remote_ip 10.8.0.154 141042 username hashtadani3 141042 mac 141042 bytes_out 0 141042 bytes_in 0 141042 station_ip 37.129.67.30 141042 port 221 141042 unique_id port 141042 remote_ip 10.8.1.94 141044 username hashtadani3 141044 mac 141044 bytes_out 0 141044 bytes_in 0 141044 station_ip 37.129.67.30 141044 port 387 141044 unique_id port 141044 remote_ip 10.8.0.154 141046 username mohammadjavad 141046 mac 141046 bytes_out 0 141046 bytes_in 0 141046 station_ip 83.123.2.50 141046 port 379 141046 unique_id port 141046 remote_ip 10.8.0.142 141049 username barzegar 141049 mac 141049 bytes_out 0 141049 bytes_in 0 141049 station_ip 5.119.21.255 141049 port 379 141049 unique_id port 141049 remote_ip 10.8.0.234 141053 username aminvpn 141053 mac 141053 bytes_out 0 141053 bytes_in 0 141053 station_ip 5.119.94.12 141053 port 379 141053 unique_id port 141053 remote_ip 10.8.0.14 141057 username hashtadani3 141057 mac 141057 bytes_out 0 141057 bytes_in 0 141057 station_ip 37.129.67.30 141057 port 379 141057 unique_id port 141057 remote_ip 10.8.0.154 141058 username hashtadani3 141058 mac 141058 bytes_out 0 141058 bytes_in 0 141058 station_ip 37.129.67.30 141058 port 379 141058 unique_id port 141058 remote_ip 10.8.0.154 141059 username barzegar 141059 mac 141059 bytes_out 0 141059 bytes_in 0 141059 station_ip 5.119.21.255 141059 port 379 141059 unique_id port 141059 remote_ip 10.8.0.234 141061 username hashtadani3 141061 mac 141061 bytes_out 0 141061 bytes_in 0 141061 station_ip 37.129.67.30 141061 port 379 141061 unique_id port 141061 remote_ip 10.8.0.154 141064 username barzegar 141064 mac 141064 bytes_out 0 141051 station_ip 37.129.67.30 141051 port 379 141051 unique_id port 141051 remote_ip 10.8.0.154 141052 username hashtadani3 141052 mac 141052 bytes_out 0 141052 bytes_in 0 141052 station_ip 37.129.67.30 141052 port 379 141052 unique_id port 141052 remote_ip 10.8.0.154 141054 username hashtadani3 141054 mac 141054 bytes_out 0 141054 bytes_in 0 141054 station_ip 37.129.67.30 141054 port 221 141054 unique_id port 141054 remote_ip 10.8.1.94 141056 username hashtadani3 141056 mac 141056 bytes_out 0 141056 bytes_in 0 141056 station_ip 37.129.67.30 141056 port 377 141056 unique_id port 141056 remote_ip 10.8.0.154 141060 username hashtadani3 141060 mac 141060 bytes_out 0 141060 bytes_in 0 141060 station_ip 37.129.67.30 141060 port 221 141060 unique_id port 141060 remote_ip 10.8.1.94 141062 username hashtadani3 141062 mac 141062 bytes_out 0 141062 bytes_in 0 141062 station_ip 37.129.67.30 141062 port 221 141062 unique_id port 141062 remote_ip 10.8.1.94 141063 username hashtadani3 141063 mac 141063 bytes_out 0 141063 bytes_in 0 141063 station_ip 37.129.67.30 141063 port 379 141063 unique_id port 141063 remote_ip 10.8.0.154 141066 username milan 141066 kill_reason Another user logged on this global unique id 141066 mac 141066 bytes_out 0 141066 bytes_in 0 141066 station_ip 5.119.229.52 141066 port 377 141066 unique_id port 141066 remote_ip 10.8.0.218 141071 username milan 141071 kill_reason Another user logged on this global unique id 141071 mac 141071 bytes_out 0 141071 bytes_in 0 141071 station_ip 5.119.229.52 141071 port 377 141071 unique_id port 141072 username hashtadani3 141072 mac 141072 bytes_out 0 141072 bytes_in 0 141072 station_ip 37.129.67.30 141072 port 379 141072 unique_id port 141072 remote_ip 10.8.0.154 141075 username hashtadani3 141075 mac 141075 bytes_out 0 141075 bytes_in 0 141075 station_ip 37.129.67.30 141075 port 221 141075 unique_id port 141075 remote_ip 10.8.1.94 141086 username mirzaei 141086 mac 141086 bytes_out 0 141086 bytes_in 0 141086 station_ip 5.119.123.6 141086 port 421 141086 unique_id port 141086 remote_ip 10.8.0.66 141100 username kalantary 141100 mac 141100 bytes_out 0 141100 bytes_in 0 141100 station_ip 83.123.6.241 141100 port 377 141100 unique_id port 141100 remote_ip 10.8.0.98 141101 username hashtadani3 141101 mac 141101 bytes_out 0 141101 bytes_in 0 141101 station_ip 37.129.67.30 141101 port 222 141101 unique_id port 141101 remote_ip 10.8.1.94 141103 username hashtadani3 141103 mac 141103 bytes_out 0 141103 bytes_in 0 141103 station_ip 37.129.67.30 141103 port 377 141103 unique_id port 141103 remote_ip 10.8.0.154 141105 username hashtadani3 141105 mac 141105 bytes_out 0 141105 bytes_in 0 141105 station_ip 37.129.67.30 141105 port 223 141105 unique_id port 141105 remote_ip 10.8.1.94 141106 username aminvpn 141106 mac 141106 bytes_out 0 141106 bytes_in 0 141106 station_ip 5.119.94.12 141106 port 377 141106 unique_id port 141106 remote_ip 10.8.0.14 141110 username hashtadani3 141110 mac 141110 bytes_out 0 141110 bytes_in 0 141110 station_ip 37.129.67.30 141110 port 377 141110 unique_id port 141110 remote_ip 10.8.0.154 141112 username hashtadani3 141112 mac 141112 bytes_out 0 141112 bytes_in 0 141112 station_ip 37.129.67.30 141112 port 377 141112 unique_id port 141112 remote_ip 10.8.0.154 141114 username barzegar 141114 mac 141114 bytes_out 0 141114 bytes_in 0 141114 station_ip 5.119.21.255 141114 port 222 141064 bytes_in 0 141064 station_ip 5.119.21.255 141064 port 379 141064 unique_id port 141064 remote_ip 10.8.0.234 141065 username aminvpn 141065 mac 141065 bytes_out 0 141065 bytes_in 0 141065 station_ip 5.119.94.12 141065 port 379 141065 unique_id port 141065 remote_ip 10.8.0.14 141067 username hashtadani3 141067 mac 141067 bytes_out 0 141067 bytes_in 0 141067 station_ip 37.129.67.30 141067 port 221 141067 unique_id port 141067 remote_ip 10.8.1.94 141069 username hashtadani3 141069 mac 141069 bytes_out 0 141069 bytes_in 0 141069 station_ip 37.129.67.30 141069 port 379 141069 unique_id port 141069 remote_ip 10.8.0.154 141070 username hashtadani3 141070 mac 141070 bytes_out 0 141070 bytes_in 0 141070 station_ip 37.129.67.30 141070 port 379 141070 unique_id port 141070 remote_ip 10.8.0.154 141073 username hashtadani3 141073 mac 141073 bytes_out 0 141073 bytes_in 0 141073 station_ip 37.129.67.30 141073 port 379 141073 unique_id port 141073 remote_ip 10.8.0.154 141074 username barzegar 141074 mac 141074 bytes_out 0 141074 bytes_in 0 141074 station_ip 5.119.21.255 141074 port 379 141074 unique_id port 141074 remote_ip 10.8.0.234 141076 username hashtadani3 141076 mac 141076 bytes_out 0 141076 bytes_in 0 141076 station_ip 37.129.67.30 141076 port 221 141076 unique_id port 141076 remote_ip 10.8.1.94 141077 username milan 141077 kill_reason Another user logged on this global unique id 141077 mac 141077 bytes_out 0 141077 bytes_in 0 141077 station_ip 5.119.229.52 141077 port 377 141077 unique_id port 141078 username aminvpn 141078 mac 141078 bytes_out 0 141078 bytes_in 0 141078 station_ip 5.119.94.12 141078 port 379 141078 unique_id port 141078 remote_ip 10.8.0.14 141081 username kalantary 141081 mac 141081 bytes_out 189384 141081 bytes_in 368585 141081 station_ip 83.123.103.253 141081 port 413 141081 unique_id port 141081 remote_ip 10.8.0.98 141082 username hashtadani3 141082 mac 141082 bytes_out 0 141082 bytes_in 0 141082 station_ip 37.129.67.30 141082 port 379 141082 unique_id port 141082 remote_ip 10.8.0.154 141085 username milan 141085 mac 141085 bytes_out 0 141085 bytes_in 0 141085 station_ip 5.119.229.52 141085 port 377 141085 unique_id port 141087 username hashtadani3 141087 mac 141087 bytes_out 0 141087 bytes_in 0 141087 station_ip 37.129.67.30 141087 port 221 141087 unique_id port 141087 remote_ip 10.8.1.94 141088 username hashtadani3 141088 mac 141088 bytes_out 0 141088 bytes_in 0 141088 station_ip 37.129.67.30 141088 port 221 141088 unique_id port 141088 remote_ip 10.8.1.94 141090 username barzegar 141090 mac 141090 bytes_out 0 141090 bytes_in 0 141090 station_ip 5.119.21.255 141090 port 379 141090 unique_id port 141090 remote_ip 10.8.0.234 141095 username hashtadani3 141095 mac 141095 bytes_out 0 141095 bytes_in 0 141095 station_ip 37.129.67.30 141095 port 379 141095 unique_id port 141095 remote_ip 10.8.0.154 141096 username hashtadani3 141096 mac 141096 bytes_out 0 141096 bytes_in 0 141096 station_ip 37.129.67.30 141096 port 222 141096 unique_id port 141096 remote_ip 10.8.1.94 141097 username hashtadani3 141097 mac 141097 bytes_out 0 141097 bytes_in 0 141097 station_ip 37.129.67.30 141097 port 222 141097 unique_id port 141097 remote_ip 10.8.1.94 141102 username hashtadani3 141102 mac 141102 bytes_out 0 141102 bytes_in 0 141102 station_ip 37.129.67.30 141102 port 222 141102 unique_id port 141102 remote_ip 10.8.1.94 141084 mac 141084 bytes_out 0 141084 bytes_in 0 141084 station_ip 37.129.67.30 141084 port 379 141084 unique_id port 141084 remote_ip 10.8.0.154 141089 username hashtadani3 141089 mac 141089 bytes_out 0 141089 bytes_in 0 141089 station_ip 37.129.67.30 141089 port 377 141089 unique_id port 141089 remote_ip 10.8.0.154 141091 username hashtadani3 141091 kill_reason Maximum check online fails reached 141091 mac 141091 bytes_out 0 141091 bytes_in 0 141091 station_ip 37.129.67.30 141091 port 221 141091 unique_id port 141092 username barzegar 141092 mac 141092 bytes_out 0 141092 bytes_in 0 141092 station_ip 5.119.21.255 141092 port 222 141092 unique_id port 141092 remote_ip 10.8.1.174 141093 username hashtadani3 141093 mac 141093 bytes_out 0 141093 bytes_in 0 141093 station_ip 37.129.67.30 141093 port 377 141093 unique_id port 141093 remote_ip 10.8.0.154 141094 username aminvpn 141094 mac 141094 bytes_out 0 141094 bytes_in 0 141094 station_ip 5.119.94.12 141094 port 377 141094 unique_id port 141094 remote_ip 10.8.0.14 141098 username hashtadani3 141098 mac 141098 bytes_out 0 141098 bytes_in 0 141098 station_ip 37.129.67.30 141098 port 379 141098 unique_id port 141098 remote_ip 10.8.0.154 141099 username hashtadani3 141099 mac 141099 bytes_out 0 141099 bytes_in 0 141099 station_ip 37.129.67.30 141099 port 379 141099 unique_id port 141099 remote_ip 10.8.0.154 141104 username barzegar 141104 mac 141104 bytes_out 2482 141104 bytes_in 4865 141104 station_ip 5.119.21.255 141104 port 222 141104 unique_id port 141104 remote_ip 10.8.1.174 141107 username hashtadani3 141107 mac 141107 bytes_out 0 141107 bytes_in 0 141107 station_ip 37.129.67.30 141107 port 379 141107 unique_id port 141107 remote_ip 10.8.0.154 141108 username hashtadani3 141108 mac 141108 bytes_out 0 141108 bytes_in 0 141108 station_ip 37.129.67.30 141108 port 377 141108 unique_id port 141108 remote_ip 10.8.0.154 141109 username hashtadani3 141109 mac 141109 bytes_out 0 141109 bytes_in 0 141109 station_ip 37.129.67.30 141109 port 377 141109 unique_id port 141109 remote_ip 10.8.0.154 141111 username hashtadani3 141111 mac 141111 bytes_out 0 141111 bytes_in 0 141111 station_ip 37.129.67.30 141111 port 377 141111 unique_id port 141111 remote_ip 10.8.0.154 141113 username hashtadani3 141113 mac 141113 bytes_out 0 141113 bytes_in 0 141113 station_ip 37.129.67.30 141113 port 377 141113 unique_id port 141113 remote_ip 10.8.0.154 141114 unique_id port 141114 remote_ip 10.8.1.174 141115 username aminvpn 141115 mac 141115 bytes_out 0 141115 bytes_in 0 141115 station_ip 5.119.94.12 141115 port 377 141115 unique_id port 141115 remote_ip 10.8.0.14 141116 username aminvpn 141116 mac 141116 bytes_out 0 141116 bytes_in 0 141116 station_ip 5.119.94.12 141116 port 377 141116 unique_id port 141116 remote_ip 10.8.0.14 141117 username aminvpn 141117 mac 141117 bytes_out 0 141117 bytes_in 0 141117 station_ip 5.119.94.12 141117 port 377 141117 unique_id port 141117 remote_ip 10.8.0.14 141118 username hashtadani3 141118 mac 141118 bytes_out 0 141118 bytes_in 0 141118 station_ip 37.129.67.30 141118 port 377 141118 unique_id port 141118 remote_ip 10.8.0.154 141119 username hashtadani3 141119 mac 141119 bytes_out 0 141119 bytes_in 0 141119 station_ip 37.129.67.30 141119 port 377 141119 unique_id port 141119 remote_ip 10.8.0.154 141120 username hashtadani3 141120 mac 141120 bytes_out 0 141120 bytes_in 0 141120 station_ip 37.129.67.30 141120 port 377 141120 unique_id port 141120 remote_ip 10.8.0.154 141121 username hashtadani3 141121 mac 141121 bytes_out 0 141121 bytes_in 0 141121 station_ip 37.129.67.30 141121 port 377 141121 unique_id port 141121 remote_ip 10.8.0.154 141122 username hashtadani3 141122 mac 141122 bytes_out 0 141122 bytes_in 0 141122 station_ip 37.129.67.30 141122 port 377 141122 unique_id port 141122 remote_ip 10.8.0.154 141129 username hashtadani3 141129 mac 141129 bytes_out 0 141129 bytes_in 0 141129 station_ip 37.129.67.30 141129 port 222 141129 unique_id port 141129 remote_ip 10.8.1.94 141132 username hashtadani3 141132 mac 141132 bytes_out 0 141132 bytes_in 0 141132 station_ip 37.129.67.30 141132 port 377 141132 unique_id port 141132 remote_ip 10.8.0.154 141135 username hashtadani3 141135 mac 141135 bytes_out 0 141135 bytes_in 0 141135 station_ip 37.129.67.30 141135 port 377 141135 unique_id port 141135 remote_ip 10.8.0.154 141136 username mirzaei 141136 mac 141136 bytes_out 0 141136 bytes_in 0 141136 station_ip 5.119.139.70 141136 port 379 141136 unique_id port 141136 remote_ip 10.8.0.66 141137 username barzegar 141137 mac 141137 bytes_out 0 141137 bytes_in 0 141137 station_ip 5.119.21.255 141137 port 222 141137 unique_id port 141137 remote_ip 10.8.1.174 141141 username hashtadani3 141141 mac 141141 bytes_out 0 141141 bytes_in 0 141141 station_ip 37.129.67.30 141141 port 222 141141 unique_id port 141141 remote_ip 10.8.1.94 141145 username hashtadani3 141145 mac 141145 bytes_out 0 141145 bytes_in 0 141145 station_ip 37.129.67.30 141145 port 222 141145 unique_id port 141145 remote_ip 10.8.1.94 141146 username hashtadani3 141146 mac 141146 bytes_out 80975 141146 bytes_in 648712 141146 station_ip 37.129.67.30 141146 port 222 141146 unique_id port 141146 remote_ip 10.8.1.94 141149 username barzegar 141149 mac 141149 bytes_out 0 141149 bytes_in 0 141149 station_ip 5.119.21.255 141149 port 222 141149 unique_id port 141149 remote_ip 10.8.1.174 141156 username hashtadani3 141156 mac 141156 bytes_out 0 141156 bytes_in 0 141156 station_ip 37.129.67.30 141156 port 379 141156 unique_id port 141156 remote_ip 10.8.0.154 141157 username hashtadani3 141157 mac 141157 bytes_out 0 141157 bytes_in 0 141157 station_ip 37.129.67.30 141157 port 379 141157 unique_id port 141157 remote_ip 10.8.0.154 141161 username aminvpn 141161 mac 141161 bytes_out 0 141161 bytes_in 0 141161 station_ip 5.119.94.12 141161 port 387 141161 unique_id port 141161 remote_ip 10.8.0.14 141162 username hashtadani3 141162 mac 141162 bytes_out 2912461 141162 bytes_in 34161494 141162 station_ip 37.129.67.30 141162 port 379 141162 unique_id port 141162 remote_ip 10.8.0.154 141163 username hashtadani3 141163 mac 141163 bytes_out 0 141163 bytes_in 0 141163 station_ip 37.129.67.30 141163 port 222 141163 unique_id port 141163 remote_ip 10.8.1.94 141164 username hashtadani3 141164 mac 141164 bytes_out 0 141164 bytes_in 0 141164 station_ip 37.129.67.30 141164 port 379 141164 unique_id port 141164 remote_ip 10.8.0.154 141171 username kalantary 141171 mac 141171 bytes_out 0 141171 bytes_in 0 141171 station_ip 83.123.13.133 141171 port 377 141171 unique_id port 141171 remote_ip 10.8.0.98 141176 username aminvpn 141176 mac 141176 bytes_out 0 141176 bytes_in 0 141176 station_ip 5.119.94.12 141176 port 387 141123 username hashtadani3 141123 mac 141123 bytes_out 0 141123 bytes_in 0 141123 station_ip 37.129.67.30 141123 port 377 141123 unique_id port 141123 remote_ip 10.8.0.154 141124 username hashtadani3 141124 mac 141124 bytes_out 0 141124 bytes_in 0 141124 station_ip 37.129.67.30 141124 port 377 141124 unique_id port 141124 remote_ip 10.8.0.154 141125 username barzegar 141125 mac 141125 bytes_out 0 141125 bytes_in 0 141125 station_ip 5.119.21.255 141125 port 222 141125 unique_id port 141125 remote_ip 10.8.1.174 141127 username hashtadani3 141127 mac 141127 bytes_out 0 141127 bytes_in 0 141127 station_ip 37.129.67.30 141127 port 222 141127 unique_id port 141127 remote_ip 10.8.1.94 141130 username hashtadani3 141130 mac 141130 bytes_out 0 141130 bytes_in 0 141130 station_ip 37.129.67.30 141130 port 222 141130 unique_id port 141130 remote_ip 10.8.1.94 141133 username hashtadani3 141133 mac 141133 bytes_out 0 141133 bytes_in 0 141133 station_ip 37.129.67.30 141133 port 222 141133 unique_id port 141133 remote_ip 10.8.1.94 141139 username hashtadani3 141139 mac 141139 bytes_out 0 141139 bytes_in 0 141139 station_ip 37.129.67.30 141139 port 222 141139 unique_id port 141139 remote_ip 10.8.1.94 141140 username aminvpn 141140 mac 141140 bytes_out 0 141140 bytes_in 0 141140 station_ip 5.119.94.12 141140 port 377 141140 unique_id port 141140 remote_ip 10.8.0.14 141142 username hashtadani3 141142 mac 141142 bytes_out 0 141142 bytes_in 0 141142 station_ip 37.129.67.30 141142 port 222 141142 unique_id port 141142 remote_ip 10.8.1.94 141144 username hashtadani3 141144 mac 141144 bytes_out 0 141144 bytes_in 0 141144 station_ip 37.129.67.30 141144 port 377 141144 unique_id port 141144 remote_ip 10.8.0.154 141147 username hashtadani3 141147 mac 141147 bytes_out 0 141147 bytes_in 0 141147 station_ip 37.129.67.30 141147 port 222 141147 unique_id port 141147 remote_ip 10.8.1.94 141150 username hashtadani3 141150 mac 141150 bytes_out 0 141150 bytes_in 0 141150 station_ip 37.129.67.30 141150 port 377 141150 unique_id port 141150 remote_ip 10.8.0.154 141151 username aminvpn 141151 mac 141151 bytes_out 0 141151 bytes_in 0 141151 station_ip 5.119.94.12 141151 port 377 141151 unique_id port 141151 remote_ip 10.8.0.14 141152 username hashtadani3 141152 mac 141152 bytes_out 0 141152 bytes_in 0 141152 station_ip 37.129.67.30 141152 port 379 141152 unique_id port 141152 remote_ip 10.8.0.154 141153 username hashtadani3 141153 mac 141153 bytes_out 0 141153 bytes_in 0 141153 station_ip 37.129.67.30 141153 port 222 141153 unique_id port 141153 remote_ip 10.8.1.94 141158 username aminvpn 141158 mac 141158 bytes_out 0 141158 bytes_in 0 141158 station_ip 5.119.94.12 141158 port 387 141158 unique_id port 141158 remote_ip 10.8.0.14 141159 username barzegar 141159 mac 141159 bytes_out 0 141159 bytes_in 0 141159 station_ip 5.119.21.255 141159 port 387 141159 unique_id port 141159 remote_ip 10.8.0.234 141160 username houshang 141160 mac 141160 bytes_out 0 141160 bytes_in 0 141160 station_ip 5.119.16.151 141160 port 387 141160 unique_id port 141160 remote_ip 10.8.0.22 141165 username hashtadani3 141165 mac 141165 bytes_out 0 141165 bytes_in 0 141165 station_ip 37.129.67.30 141165 port 379 141165 unique_id port 141165 remote_ip 10.8.0.154 141167 username hashtadani3 141167 mac 141167 bytes_out 0 141167 bytes_in 0 141126 username hashtadani3 141126 mac 141126 bytes_out 0 141126 bytes_in 0 141126 station_ip 37.129.67.30 141126 port 377 141126 unique_id port 141126 remote_ip 10.8.0.154 141128 username aminvpn 141128 mac 141128 bytes_out 0 141128 bytes_in 0 141128 station_ip 5.119.94.12 141128 port 377 141128 unique_id port 141128 remote_ip 10.8.0.14 141131 username hashtadani3 141131 mac 141131 bytes_out 0 141131 bytes_in 0 141131 station_ip 37.129.67.30 141131 port 377 141131 unique_id port 141131 remote_ip 10.8.0.154 141134 username hashtadani3 141134 mac 141134 bytes_out 0 141134 bytes_in 0 141134 station_ip 37.129.67.30 141134 port 222 141134 unique_id port 141134 remote_ip 10.8.1.94 141138 username hashtadani3 141138 mac 141138 bytes_out 0 141138 bytes_in 0 141138 station_ip 37.129.67.30 141138 port 377 141138 unique_id port 141138 remote_ip 10.8.0.154 141143 username hashtadani3 141143 mac 141143 bytes_out 0 141143 bytes_in 0 141143 station_ip 37.129.67.30 141143 port 222 141143 unique_id port 141143 remote_ip 10.8.1.94 141148 username hashtadani3 141148 mac 141148 bytes_out 0 141148 bytes_in 0 141148 station_ip 37.129.67.30 141148 port 377 141148 unique_id port 141148 remote_ip 10.8.0.154 141154 username hashtadani3 141154 mac 141154 bytes_out 0 141154 bytes_in 0 141154 station_ip 37.129.67.30 141154 port 379 141154 unique_id port 141154 remote_ip 10.8.0.154 141155 username hashtadani3 141155 mac 141155 bytes_out 0 141155 bytes_in 0 141155 station_ip 37.129.67.30 141155 port 222 141155 unique_id port 141155 remote_ip 10.8.1.94 141166 username barzegar 141166 mac 141166 bytes_out 0 141166 bytes_in 0 141166 station_ip 5.119.21.255 141166 port 222 141166 unique_id port 141166 remote_ip 10.8.1.174 141168 username hashtadani3 141168 mac 141168 bytes_out 0 141168 bytes_in 0 141168 station_ip 37.129.67.30 141168 port 222 141168 unique_id port 141168 remote_ip 10.8.1.94 141172 username hashtadani3 141172 mac 141172 bytes_out 0 141172 bytes_in 0 141172 station_ip 37.129.67.30 141172 port 222 141172 unique_id port 141172 remote_ip 10.8.1.94 141173 username hashtadani3 141173 mac 141173 bytes_out 0 141173 bytes_in 0 141173 station_ip 37.129.67.30 141173 port 222 141173 unique_id port 141173 remote_ip 10.8.1.94 141178 username hashtadani3 141178 kill_reason Maximum check online fails reached 141178 mac 141178 bytes_out 0 141178 bytes_in 0 141178 station_ip 37.129.67.30 141178 port 222 141178 unique_id port 141181 username houshang 141181 mac 141181 bytes_out 0 141181 bytes_in 0 141181 station_ip 5.119.16.151 141181 port 377 141181 unique_id port 141181 remote_ip 10.8.0.22 141185 username houshang 141185 mac 141185 bytes_out 0 141185 bytes_in 0 141185 station_ip 5.119.16.151 141185 port 387 141185 unique_id port 141185 remote_ip 10.8.0.22 141190 username hashtadani3 141190 mac 141190 bytes_out 0 141190 bytes_in 0 141190 station_ip 37.129.67.30 141190 port 224 141190 unique_id port 141190 remote_ip 10.8.1.94 141192 username houshang 141192 mac 141192 bytes_out 2273433 141192 bytes_in 37695061 141192 station_ip 5.119.16.151 141192 port 377 141192 unique_id port 141192 remote_ip 10.8.0.22 141195 username mirzaei 141195 mac 141195 bytes_out 0 141195 bytes_in 0 141195 station_ip 5.119.139.70 141195 port 379 141195 unique_id port 141195 remote_ip 10.8.0.66 141196 username hashtadani3 141196 mac 141196 bytes_out 0 141196 bytes_in 0 141167 station_ip 37.129.67.30 141167 port 223 141167 unique_id port 141167 remote_ip 10.8.1.94 141169 username hashtadani3 141169 mac 141169 bytes_out 0 141169 bytes_in 0 141169 station_ip 37.129.67.30 141169 port 222 141169 unique_id port 141169 remote_ip 10.8.1.94 141170 username hashtadani3 141170 mac 141170 bytes_out 0 141170 bytes_in 0 141170 station_ip 37.129.67.30 141170 port 379 141170 unique_id port 141170 remote_ip 10.8.0.154 141174 username hashtadani3 141174 mac 141174 bytes_out 0 141174 bytes_in 0 141174 station_ip 37.129.67.30 141174 port 222 141174 unique_id port 141174 remote_ip 10.8.1.94 141175 username hashtadani3 141175 mac 141175 bytes_out 0 141175 bytes_in 0 141175 station_ip 37.129.67.30 141175 port 222 141175 unique_id port 141175 remote_ip 10.8.1.94 141179 username hashtadani3 141179 mac 141179 bytes_out 0 141179 bytes_in 0 141179 station_ip 37.129.67.30 141179 port 387 141179 unique_id port 141179 remote_ip 10.8.0.154 141182 username hashtadani3 141182 mac 141182 bytes_out 0 141182 bytes_in 0 141182 station_ip 37.129.67.30 141182 port 379 141182 unique_id port 141182 remote_ip 10.8.0.154 141186 username barzegar 141186 mac 141186 bytes_out 0 141186 bytes_in 0 141186 station_ip 5.119.21.255 141186 port 224 141186 unique_id port 141186 remote_ip 10.8.1.174 141187 username hashtadani3 141187 mac 141187 bytes_out 0 141187 bytes_in 0 141187 station_ip 37.129.67.30 141187 port 224 141187 unique_id port 141187 remote_ip 10.8.1.94 141188 username hashtadani3 141188 mac 141188 bytes_out 0 141188 bytes_in 0 141188 station_ip 37.129.67.30 141188 port 379 141188 unique_id port 141188 remote_ip 10.8.0.154 141193 username aminvpn 141193 mac 141193 bytes_out 0 141193 bytes_in 0 141193 station_ip 5.119.94.12 141193 port 387 141193 unique_id port 141193 remote_ip 10.8.0.14 141194 username hashtadani3 141194 mac 141194 bytes_out 0 141194 bytes_in 0 141194 station_ip 37.129.67.30 141194 port 377 141194 unique_id port 141194 remote_ip 10.8.0.154 141198 username hashtadani3 141198 mac 141198 bytes_out 0 141198 bytes_in 0 141198 station_ip 37.129.67.30 141198 port 377 141198 unique_id port 141198 remote_ip 10.8.0.154 141205 username hashtadani3 141205 mac 141205 bytes_out 0 141205 bytes_in 0 141205 station_ip 37.129.67.30 141205 port 377 141205 unique_id port 141205 remote_ip 10.8.0.154 141206 username hashtadani3 141206 mac 141206 bytes_out 0 141206 bytes_in 0 141206 station_ip 37.129.67.30 141206 port 377 141206 unique_id port 141206 remote_ip 10.8.0.154 141208 username hashtadani3 141208 mac 141208 bytes_out 0 141208 bytes_in 0 141208 station_ip 37.129.67.30 141208 port 377 141208 unique_id port 141208 remote_ip 10.8.0.154 141209 username barzegar 141209 mac 141209 bytes_out 0 141209 bytes_in 0 141209 station_ip 5.119.21.255 141209 port 377 141209 unique_id port 141209 remote_ip 10.8.0.234 141210 username hashtadani3 141210 mac 141210 bytes_out 0 141210 bytes_in 0 141210 station_ip 37.129.67.30 141210 port 377 141210 unique_id port 141210 remote_ip 10.8.0.154 141211 username hashtadani3 141211 mac 141211 bytes_out 0 141211 bytes_in 0 141211 station_ip 37.129.67.30 141211 port 377 141211 unique_id port 141211 remote_ip 10.8.0.154 141217 username hashtadani3 141217 mac 141217 bytes_out 0 141217 bytes_in 0 141217 station_ip 37.129.67.30 141217 port 379 141217 unique_id port 141217 remote_ip 10.8.0.154 141176 unique_id port 141176 remote_ip 10.8.0.14 141177 username hashtadani3 141177 mac 141177 bytes_out 6883 141177 bytes_in 13744 141177 station_ip 37.129.67.30 141177 port 387 141177 unique_id port 141177 remote_ip 10.8.0.154 141180 username kalantary 141180 mac 141180 bytes_out 282074 141180 bytes_in 1079753 141180 station_ip 83.123.13.133 141180 port 379 141180 unique_id port 141180 remote_ip 10.8.0.98 141183 username hashtadani3 141183 kill_reason Maximum check online fails reached 141183 mac 141183 bytes_out 0 141183 bytes_in 0 141183 station_ip 37.129.67.30 141183 port 223 141183 unique_id port 141184 username hashtadani3 141184 mac 141184 bytes_out 0 141184 bytes_in 0 141184 station_ip 37.129.67.30 141184 port 377 141184 unique_id port 141184 remote_ip 10.8.0.154 141189 username hashtadani3 141189 mac 141189 bytes_out 0 141189 bytes_in 0 141189 station_ip 37.129.67.30 141189 port 379 141189 unique_id port 141189 remote_ip 10.8.0.154 141191 username hashtadani3 141191 mac 141191 bytes_out 0 141191 bytes_in 0 141191 station_ip 37.129.67.30 141191 port 387 141191 unique_id port 141191 remote_ip 10.8.0.154 141201 username houshang 141201 mac 141201 bytes_out 0 141201 bytes_in 0 141201 station_ip 5.119.16.151 141201 port 377 141201 unique_id port 141201 remote_ip 10.8.0.22 141202 username hashtadani3 141202 mac 141202 bytes_out 0 141202 bytes_in 0 141202 station_ip 37.129.67.30 141202 port 377 141202 unique_id port 141202 remote_ip 10.8.0.154 141213 username aminvpn 141213 mac 141213 bytes_out 0 141213 bytes_in 0 141213 station_ip 5.119.94.12 141213 port 379 141213 unique_id port 141213 remote_ip 10.8.0.14 141215 username aminvpn 141215 mac 141215 bytes_out 0 141215 bytes_in 0 141215 station_ip 5.119.94.12 141215 port 379 141215 unique_id port 141215 remote_ip 10.8.0.14 141219 username hashtadani3 141219 mac 141219 bytes_out 0 141219 bytes_in 0 141219 station_ip 37.129.67.30 141219 port 379 141219 unique_id port 141219 remote_ip 10.8.0.154 141221 username aminvpn 141221 mac 141221 bytes_out 0 141221 bytes_in 0 141221 station_ip 5.119.94.12 141221 port 224 141221 unique_id port 141221 remote_ip 10.8.1.6 141224 username hashtadani3 141224 mac 141224 bytes_out 0 141224 bytes_in 0 141224 station_ip 37.129.67.30 141224 port 379 141224 unique_id port 141224 remote_ip 10.8.0.154 141226 username hashtadani3 141226 mac 141226 bytes_out 0 141226 bytes_in 0 141226 station_ip 37.129.67.30 141226 port 224 141226 unique_id port 141226 remote_ip 10.8.1.94 141229 username aminvpn 141229 mac 141229 bytes_out 0 141229 bytes_in 0 141229 station_ip 5.119.94.12 141229 port 224 141229 unique_id port 141229 remote_ip 10.8.1.6 141234 username barzegar 141234 mac 141234 bytes_out 0 141234 bytes_in 0 141234 station_ip 5.119.21.255 141234 port 413 141234 unique_id port 141234 remote_ip 10.8.0.234 141235 username hashtadani3 141235 mac 141235 bytes_out 0 141235 bytes_in 0 141235 station_ip 37.129.67.30 141235 port 387 141235 unique_id port 141235 remote_ip 10.8.0.154 141236 username hashtadani3 141236 mac 141236 bytes_out 0 141236 bytes_in 0 141236 station_ip 37.129.67.30 141236 port 224 141236 unique_id port 141236 remote_ip 10.8.1.94 141247 username hashtadani3 141247 mac 141247 bytes_out 0 141247 bytes_in 0 141247 station_ip 37.129.67.30 141247 port 387 141247 unique_id port 141247 remote_ip 10.8.0.154 141248 username hashtadani3 141196 station_ip 37.129.67.30 141196 port 377 141196 unique_id port 141196 remote_ip 10.8.0.154 141197 username hashtadani3 141197 mac 141197 bytes_out 0 141197 bytes_in 0 141197 station_ip 37.129.67.30 141197 port 377 141197 unique_id port 141197 remote_ip 10.8.0.154 141199 username barzegar 141199 mac 141199 bytes_out 0 141199 bytes_in 0 141199 station_ip 5.119.21.255 141199 port 377 141199 unique_id port 141199 remote_ip 10.8.0.234 141200 username hashtadani3 141200 mac 141200 bytes_out 0 141200 bytes_in 0 141200 station_ip 37.129.67.30 141200 port 379 141200 unique_id port 141200 remote_ip 10.8.0.154 141203 username aminvpn 141203 mac 141203 bytes_out 0 141203 bytes_in 0 141203 station_ip 5.119.94.12 141203 port 377 141203 unique_id port 141203 remote_ip 10.8.0.14 141204 username hashtadani3 141204 mac 141204 bytes_out 0 141204 bytes_in 0 141204 station_ip 37.129.67.30 141204 port 377 141204 unique_id port 141204 remote_ip 10.8.0.154 141207 username hashtadani3 141207 mac 141207 bytes_out 0 141207 bytes_in 0 141207 station_ip 37.129.67.30 141207 port 377 141207 unique_id port 141207 remote_ip 10.8.0.154 141212 username hashtadani3 141212 mac 141212 bytes_out 0 141212 bytes_in 0 141212 station_ip 37.129.67.30 141212 port 377 141212 unique_id port 141212 remote_ip 10.8.0.154 141214 username hashtadani3 141214 mac 141214 bytes_out 0 141214 bytes_in 0 141214 station_ip 37.129.67.30 141214 port 413 141214 unique_id port 141214 remote_ip 10.8.0.154 141216 username kalantary 141216 mac 141216 bytes_out 2526672 141216 bytes_in 44321144 141216 station_ip 83.123.123.57 141216 port 387 141216 unique_id port 141216 remote_ip 10.8.0.98 141222 username barzegar 141222 mac 141222 bytes_out 0 141222 bytes_in 0 141222 station_ip 5.119.21.255 141222 port 225 141222 unique_id port 141222 remote_ip 10.8.1.174 141225 username hashtadani3 141225 mac 141225 bytes_out 0 141225 bytes_in 0 141225 station_ip 37.129.67.30 141225 port 379 141225 unique_id port 141225 remote_ip 10.8.0.154 141227 username hashtadani3 141227 mac 141227 bytes_out 0 141227 bytes_in 0 141227 station_ip 37.129.67.30 141227 port 379 141227 unique_id port 141227 remote_ip 10.8.0.154 141231 username hashtadani3 141231 mac 141231 bytes_out 0 141231 bytes_in 0 141231 station_ip 37.129.67.30 141231 port 387 141231 unique_id port 141231 remote_ip 10.8.0.154 141232 username hashtadani3 141232 mac 141232 bytes_out 0 141232 bytes_in 0 141232 station_ip 37.129.67.30 141232 port 224 141232 unique_id port 141232 remote_ip 10.8.1.94 141237 username hashtadani3 141237 mac 141237 bytes_out 0 141237 bytes_in 0 141237 station_ip 37.129.67.30 141237 port 387 141237 unique_id port 141237 remote_ip 10.8.0.154 141242 username houshang 141242 mac 141242 bytes_out 0 141242 bytes_in 0 141242 station_ip 5.119.16.151 141242 port 377 141242 unique_id port 141246 username houshang 141246 mac 141246 bytes_out 0 141246 bytes_in 0 141246 station_ip 5.119.16.151 141246 port 413 141246 unique_id port 141246 remote_ip 10.8.0.22 141250 username mosi 141250 kill_reason Another user logged on this global unique id 141250 mac 141250 bytes_out 0 141250 bytes_in 0 141250 station_ip 151.235.75.185 141250 port 414 141250 unique_id port 141251 username hashtadani3 141251 mac 141251 bytes_out 0 141251 bytes_in 0 141251 station_ip 37.129.67.30 141251 port 387 141251 unique_id port 141251 remote_ip 10.8.0.154 141218 username hashtadani3 141218 mac 141218 bytes_out 0 141218 bytes_in 0 141218 station_ip 37.129.67.30 141218 port 224 141218 unique_id port 141218 remote_ip 10.8.1.94 141220 username hashtadani3 141220 mac 141220 bytes_out 0 141220 bytes_in 0 141220 station_ip 37.129.67.30 141220 port 379 141220 unique_id port 141220 remote_ip 10.8.0.154 141223 username houshang 141223 mac 141223 bytes_out 1383249 141223 bytes_in 21305023 141223 station_ip 5.119.16.151 141223 port 377 141223 unique_id port 141223 remote_ip 10.8.0.22 141228 username hashtadani3 141228 mac 141228 bytes_out 0 141228 bytes_in 0 141228 station_ip 37.129.67.30 141228 port 387 141228 unique_id port 141228 remote_ip 10.8.0.154 141230 username hashtadani3 141230 mac 141230 bytes_out 0 141230 bytes_in 0 141230 station_ip 37.129.67.30 141230 port 387 141230 unique_id port 141230 remote_ip 10.8.0.154 141233 username hashtadani3 141233 mac 141233 bytes_out 0 141233 bytes_in 0 141233 station_ip 37.129.67.30 141233 port 387 141233 unique_id port 141233 remote_ip 10.8.0.154 141238 username houshang 141238 kill_reason Another user logged on this global unique id 141238 mac 141238 bytes_out 0 141238 bytes_in 0 141238 station_ip 5.119.16.151 141238 port 377 141238 unique_id port 141238 remote_ip 10.8.0.22 141239 username aminvpn 141239 unique_id port 141239 terminate_cause Lost-Carrier 141239 bytes_out 2998222 141239 bytes_in 32909498 141239 station_ip 5.119.20.102 141239 port 15730718 141239 nas_port_type Virtual 141239 remote_ip 5.5.5.120 141240 username hashtadani3 141240 mac 141240 bytes_out 0 141240 bytes_in 0 141240 station_ip 37.129.67.30 141240 port 387 141240 unique_id port 141240 remote_ip 10.8.0.154 141241 username hashtadani3 141241 mac 141241 bytes_out 0 141241 bytes_in 0 141241 station_ip 37.129.67.30 141241 port 224 141241 unique_id port 141241 remote_ip 10.8.1.94 141243 username aminvpn 141243 mac 141243 bytes_out 0 141243 bytes_in 0 141243 station_ip 5.119.94.12 141243 port 387 141243 unique_id port 141243 remote_ip 10.8.0.14 141244 username hashtadani3 141244 mac 141244 bytes_out 0 141244 bytes_in 0 141244 station_ip 37.129.67.30 141244 port 377 141244 unique_id port 141244 remote_ip 10.8.0.154 141245 username hashtadani3 141245 mac 141245 bytes_out 0 141245 bytes_in 0 141245 station_ip 37.129.67.30 141245 port 377 141245 unique_id port 141245 remote_ip 10.8.0.154 141249 username hashtadani3 141249 mac 141249 bytes_out 0 141249 bytes_in 0 141249 station_ip 37.129.67.30 141249 port 387 141249 unique_id port 141249 remote_ip 10.8.0.154 141254 username hashtadani3 141254 mac 141254 bytes_out 0 141254 bytes_in 0 141254 station_ip 37.129.67.30 141254 port 387 141254 unique_id port 141254 remote_ip 10.8.0.154 141255 username hashtadani3 141255 mac 141255 bytes_out 0 141255 bytes_in 0 141255 station_ip 37.129.67.30 141255 port 413 141255 unique_id port 141255 remote_ip 10.8.0.154 141257 username aminvpn 141257 mac 141257 bytes_out 0 141257 bytes_in 0 141257 station_ip 5.119.94.12 141257 port 413 141257 unique_id port 141257 remote_ip 10.8.0.14 141263 username barzegar 141263 mac 141263 bytes_out 0 141263 bytes_in 0 141263 station_ip 5.119.21.255 141263 port 224 141263 unique_id port 141263 remote_ip 10.8.1.174 141264 username hashtadani3 141264 mac 141264 bytes_out 0 141264 bytes_in 0 141264 station_ip 37.129.67.30 141264 port 413 141264 unique_id port 141264 remote_ip 10.8.0.154 141248 mac 141248 bytes_out 0 141248 bytes_in 0 141248 station_ip 37.129.67.30 141248 port 387 141248 unique_id port 141248 remote_ip 10.8.0.154 141252 username barzegar 141252 mac 141252 bytes_out 0 141252 bytes_in 0 141252 station_ip 5.119.21.255 141252 port 224 141252 unique_id port 141252 remote_ip 10.8.1.174 141256 username hashtadani3 141256 mac 141256 bytes_out 0 141256 bytes_in 0 141256 station_ip 37.129.67.30 141256 port 413 141256 unique_id port 141256 remote_ip 10.8.0.154 141261 username hashtadani3 141261 mac 141261 bytes_out 0 141261 bytes_in 0 141261 station_ip 37.129.67.30 141261 port 224 141261 unique_id port 141261 remote_ip 10.8.1.94 141262 username hashtadani3 141262 mac 141262 bytes_out 0 141262 bytes_in 0 141262 station_ip 37.129.67.30 141262 port 413 141262 unique_id port 141262 remote_ip 10.8.0.154 141265 username houshang 141265 kill_reason Another user logged on this global unique id 141265 mac 141265 bytes_out 0 141265 bytes_in 0 141265 station_ip 5.120.52.140 141265 port 377 141265 unique_id port 141267 username hashtadani3 141267 mac 141267 bytes_out 0 141267 bytes_in 0 141267 station_ip 37.129.67.30 141267 port 413 141267 unique_id port 141267 remote_ip 10.8.0.154 141268 username aminvpn 141268 mac 141268 bytes_out 0 141268 bytes_in 0 141268 station_ip 5.119.94.12 141268 port 413 141268 unique_id port 141268 remote_ip 10.8.0.14 141269 username aminvpn 141269 mac 141269 bytes_out 0 141269 bytes_in 0 141269 station_ip 5.119.94.12 141269 port 413 141269 unique_id port 141269 remote_ip 10.8.0.14 141270 username aminvpn 141270 mac 141270 bytes_out 0 141270 bytes_in 0 141270 station_ip 5.119.94.12 141270 port 416 141270 unique_id port 141270 remote_ip 10.8.0.14 141275 username hashtadani3 141275 mac 141275 bytes_out 0 141275 bytes_in 0 141275 station_ip 37.129.67.30 141275 port 377 141275 unique_id port 141275 remote_ip 10.8.0.154 141276 username hashtadani3 141276 mac 141276 bytes_out 0 141276 bytes_in 0 141276 station_ip 37.129.67.30 141276 port 224 141276 unique_id port 141276 remote_ip 10.8.1.94 141283 username kalantary 141283 mac 141283 bytes_out 1077765 141283 bytes_in 19003834 141283 station_ip 83.123.70.181 141283 port 377 141283 unique_id port 141283 remote_ip 10.8.0.98 141289 username hashtadani3 141289 mac 141289 bytes_out 0 141289 bytes_in 0 141289 station_ip 37.129.67.30 141289 port 224 141289 unique_id port 141289 remote_ip 10.8.1.94 141290 username hashtadani3 141290 mac 141290 bytes_out 0 141290 bytes_in 0 141290 station_ip 37.129.67.30 141290 port 413 141290 unique_id port 141290 remote_ip 10.8.0.154 141291 username barzegar 141291 mac 141291 bytes_out 0 141291 bytes_in 0 141291 station_ip 5.119.21.255 141291 port 379 141291 unique_id port 141291 remote_ip 10.8.0.234 141292 username hashtadani3 141292 mac 141292 bytes_out 0 141292 bytes_in 0 141292 station_ip 37.129.67.30 141292 port 379 141292 unique_id port 141292 remote_ip 10.8.0.154 141293 username hashtadani3 141293 mac 141293 bytes_out 0 141293 bytes_in 0 141293 station_ip 37.129.67.30 141293 port 379 141293 unique_id port 141293 remote_ip 10.8.0.154 141294 username aminvpn 141294 mac 141294 bytes_out 0 141294 bytes_in 0 141294 station_ip 5.119.94.12 141294 port 379 141294 unique_id port 141294 remote_ip 10.8.0.14 141295 username hashtadani3 141295 mac 141295 bytes_out 0 141295 bytes_in 0 141253 username houshang 141253 kill_reason Another user logged on this global unique id 141253 mac 141253 bytes_out 0 141253 bytes_in 0 141253 station_ip 5.120.52.140 141253 port 377 141253 unique_id port 141253 remote_ip 10.8.0.22 141258 username hashtadani3 141258 mac 141258 bytes_out 0 141258 bytes_in 0 141258 station_ip 37.129.67.30 141258 port 413 141258 unique_id port 141258 remote_ip 10.8.0.154 141259 username hashtadani3 141259 mac 141259 bytes_out 0 141259 bytes_in 0 141259 station_ip 37.129.67.30 141259 port 413 141259 unique_id port 141259 remote_ip 10.8.0.154 141260 username barzegar 141260 mac 141260 bytes_out 0 141260 bytes_in 0 141260 station_ip 5.119.21.255 141260 port 224 141260 unique_id port 141260 remote_ip 10.8.1.174 141271 username hashtadani3 141271 mac 141271 bytes_out 0 141271 bytes_in 0 141271 station_ip 37.129.67.30 141271 port 413 141271 unique_id port 141271 remote_ip 10.8.0.154 141273 username houshang 141273 mac 141273 bytes_out 0 141273 bytes_in 0 141273 station_ip 5.120.52.140 141273 port 377 141273 unique_id port 141277 username barzegar 141277 mac 141277 bytes_out 0 141277 bytes_in 0 141277 station_ip 5.119.21.255 141277 port 225 141277 unique_id port 141277 remote_ip 10.8.1.174 141279 username sedighe 141279 mac 141279 bytes_out 1250061 141279 bytes_in 11609675 141279 station_ip 83.122.66.104 141279 port 379 141279 unique_id port 141279 remote_ip 10.8.0.146 141287 username hashtadani3 141287 mac 141287 bytes_out 0 141287 bytes_in 0 141287 station_ip 37.129.67.30 141287 port 379 141287 unique_id port 141287 remote_ip 10.8.0.154 141296 username hashtadani3 141296 mac 141296 bytes_out 0 141296 bytes_in 0 141296 station_ip 37.129.67.30 141296 port 379 141296 unique_id port 141296 remote_ip 10.8.0.154 141297 username hashtadani3 141297 mac 141297 bytes_out 0 141297 bytes_in 0 141297 station_ip 37.129.67.30 141297 port 379 141297 unique_id port 141297 remote_ip 10.8.0.154 141308 username hashtadani3 141308 mac 141308 bytes_out 0 141308 bytes_in 0 141308 station_ip 37.129.67.30 141308 port 379 141308 unique_id port 141308 remote_ip 10.8.0.154 141315 username hashtadani3 141315 mac 141315 bytes_out 0 141315 bytes_in 0 141315 station_ip 37.129.67.30 141315 port 379 141315 unique_id port 141315 remote_ip 10.8.0.154 141316 username aminvpn 141316 mac 141316 bytes_out 0 141316 bytes_in 0 141316 station_ip 5.119.94.12 141316 port 379 141316 unique_id port 141316 remote_ip 10.8.0.14 141320 username barzegar 141320 mac 141320 bytes_out 0 141320 bytes_in 0 141320 station_ip 5.119.21.255 141320 port 379 141320 unique_id port 141320 remote_ip 10.8.0.234 141322 username hashtadani3 141322 mac 141322 bytes_out 0 141322 bytes_in 0 141322 station_ip 37.129.67.30 141322 port 379 141322 unique_id port 141322 remote_ip 10.8.0.154 141323 username hashtadani3 141323 mac 141323 bytes_out 0 141323 bytes_in 0 141323 station_ip 37.129.67.30 141323 port 224 141323 unique_id port 141323 remote_ip 10.8.1.94 141325 username aminvpn 141325 mac 141325 bytes_out 0 141325 bytes_in 0 141325 station_ip 5.119.94.12 141325 port 379 141325 unique_id port 141325 remote_ip 10.8.0.14 141327 username hashtadani3 141327 mac 141327 bytes_out 0 141327 bytes_in 0 141327 station_ip 37.129.67.30 141327 port 379 141327 unique_id port 141327 remote_ip 10.8.0.154 141330 username hashtadani3 141330 mac 141330 bytes_out 0 141266 username hashtadani3 141266 mac 141266 bytes_out 0 141266 bytes_in 0 141266 station_ip 37.129.67.30 141266 port 413 141266 unique_id port 141266 remote_ip 10.8.0.154 141272 username hashtadani3 141272 mac 141272 bytes_out 0 141272 bytes_in 0 141272 station_ip 37.129.67.30 141272 port 413 141272 unique_id port 141272 remote_ip 10.8.0.154 141274 username barzegar 141274 mac 141274 bytes_out 0 141274 bytes_in 0 141274 station_ip 5.119.21.255 141274 port 224 141274 unique_id port 141274 remote_ip 10.8.1.174 141278 username hashtadani3 141278 mac 141278 bytes_out 0 141278 bytes_in 0 141278 station_ip 37.129.67.30 141278 port 413 141278 unique_id port 141278 remote_ip 10.8.0.154 141280 username hashtadani3 141280 mac 141280 bytes_out 0 141280 bytes_in 0 141280 station_ip 37.129.67.30 141280 port 379 141280 unique_id port 141280 remote_ip 10.8.0.154 141281 username hashtadani3 141281 mac 141281 bytes_out 0 141281 bytes_in 0 141281 station_ip 37.129.67.30 141281 port 379 141281 unique_id port 141281 remote_ip 10.8.0.154 141282 username hashtadani3 141282 mac 141282 bytes_out 0 141282 bytes_in 0 141282 station_ip 37.129.67.30 141282 port 379 141282 unique_id port 141282 remote_ip 10.8.0.154 141284 username aminvpn 141284 mac 141284 bytes_out 0 141284 bytes_in 0 141284 station_ip 5.119.94.12 141284 port 377 141284 unique_id port 141284 remote_ip 10.8.0.14 141285 username hashtadani3 141285 mac 141285 bytes_out 0 141285 bytes_in 0 141285 station_ip 37.129.67.30 141285 port 224 141285 unique_id port 141285 remote_ip 10.8.1.94 141286 username hashtadani3 141286 mac 141286 bytes_out 0 141286 bytes_in 0 141286 station_ip 37.129.67.30 141286 port 224 141286 unique_id port 141286 remote_ip 10.8.1.94 141288 username sedighe 141288 mac 141288 bytes_out 579948 141288 bytes_in 8432501 141288 station_ip 83.122.66.104 141288 port 413 141288 unique_id port 141288 remote_ip 10.8.0.146 141298 username barzegar 141298 mac 141298 bytes_out 0 141298 bytes_in 0 141298 station_ip 5.119.21.255 141298 port 379 141298 unique_id port 141298 remote_ip 10.8.0.234 141302 username hashtadani3 141302 mac 141302 bytes_out 0 141302 bytes_in 0 141302 station_ip 37.129.67.30 141302 port 379 141302 unique_id port 141302 remote_ip 10.8.0.154 141309 username barzegar 141309 mac 141309 bytes_out 0 141309 bytes_in 0 141309 station_ip 5.119.21.255 141309 port 224 141309 unique_id port 141309 remote_ip 10.8.1.174 141313 username hashtadani3 141313 mac 141313 bytes_out 0 141313 bytes_in 0 141313 station_ip 37.129.67.30 141313 port 379 141313 unique_id port 141313 remote_ip 10.8.0.154 141314 username hashtadani3 141314 mac 141314 bytes_out 0 141314 bytes_in 0 141314 station_ip 37.129.67.30 141314 port 379 141314 unique_id port 141314 remote_ip 10.8.0.154 141317 username hashtadani3 141317 mac 141317 bytes_out 0 141317 bytes_in 0 141317 station_ip 37.129.67.30 141317 port 413 141317 unique_id port 141317 remote_ip 10.8.0.154 141321 username hashtadani3 141321 mac 141321 bytes_out 0 141321 bytes_in 0 141321 station_ip 37.129.67.30 141321 port 224 141321 unique_id port 141321 remote_ip 10.8.1.94 141328 username hashtadani3 141328 mac 141328 bytes_out 0 141328 bytes_in 0 141328 station_ip 37.129.67.30 141328 port 379 141328 unique_id port 141328 remote_ip 10.8.0.154 141329 username barzegar 141329 mac 141329 bytes_out 0 141329 bytes_in 0 141295 station_ip 37.129.67.30 141295 port 379 141295 unique_id port 141295 remote_ip 10.8.0.154 141299 username hashtadani3 141299 mac 141299 bytes_out 0 141299 bytes_in 0 141299 station_ip 37.129.67.30 141299 port 379 141299 unique_id port 141299 remote_ip 10.8.0.154 141300 username hashtadani3 141300 mac 141300 bytes_out 0 141300 bytes_in 0 141300 station_ip 37.129.67.30 141300 port 379 141300 unique_id port 141300 remote_ip 10.8.0.154 141301 username hashtadani3 141301 mac 141301 bytes_out 0 141301 bytes_in 0 141301 station_ip 37.129.67.30 141301 port 379 141301 unique_id port 141301 remote_ip 10.8.0.154 141303 username aminvpn 141303 mac 141303 bytes_out 0 141303 bytes_in 0 141303 station_ip 5.119.94.12 141303 port 413 141303 unique_id port 141303 remote_ip 10.8.0.14 141304 username aminvpn 141304 mac 141304 bytes_out 0 141304 bytes_in 0 141304 station_ip 5.119.94.12 141304 port 379 141304 unique_id port 141304 remote_ip 10.8.0.14 141305 username hashtadani3 141305 mac 141305 bytes_out 0 141305 bytes_in 0 141305 station_ip 37.129.67.30 141305 port 379 141305 unique_id port 141305 remote_ip 10.8.0.154 141306 username hashtadani3 141306 mac 141306 bytes_out 0 141306 bytes_in 0 141306 station_ip 37.129.67.30 141306 port 379 141306 unique_id port 141306 remote_ip 10.8.0.154 141307 username hashtadani3 141307 mac 141307 bytes_out 0 141307 bytes_in 0 141307 station_ip 37.129.67.30 141307 port 379 141307 unique_id port 141307 remote_ip 10.8.0.154 141310 username hashtadani3 141310 mac 141310 bytes_out 0 141310 bytes_in 0 141310 station_ip 37.129.67.30 141310 port 379 141310 unique_id port 141310 remote_ip 10.8.0.154 141311 username hashtadani3 141311 mac 141311 bytes_out 0 141311 bytes_in 0 141311 station_ip 37.129.67.30 141311 port 224 141311 unique_id port 141311 remote_ip 10.8.1.94 141312 username hashtadani3 141312 mac 141312 bytes_out 0 141312 bytes_in 0 141312 station_ip 37.129.67.30 141312 port 224 141312 unique_id port 141312 remote_ip 10.8.1.94 141318 username hashtadani3 141318 mac 141318 bytes_out 0 141318 bytes_in 0 141318 station_ip 37.129.67.30 141318 port 379 141318 unique_id port 141318 remote_ip 10.8.0.154 141319 username hashtadani3 141319 mac 141319 bytes_out 0 141319 bytes_in 0 141319 station_ip 37.129.67.30 141319 port 379 141319 unique_id port 141319 remote_ip 10.8.0.154 141324 username hashtadani3 141324 mac 141324 bytes_out 0 141324 bytes_in 0 141324 station_ip 37.129.67.30 141324 port 379 141324 unique_id port 141324 remote_ip 10.8.0.154 141326 username hashtadani3 141326 mac 141326 bytes_out 0 141326 bytes_in 0 141326 station_ip 37.129.67.30 141326 port 379 141326 unique_id port 141326 remote_ip 10.8.0.154 141331 username Mahin 141331 mac 141331 bytes_out 0 141331 bytes_in 0 141331 station_ip 5.119.83.161 141331 port 220 141331 unique_id port 141334 username aminvpn 141334 mac 141334 bytes_out 0 141334 bytes_in 0 141334 station_ip 5.119.94.12 141334 port 413 141334 unique_id port 141334 remote_ip 10.8.0.14 141335 username hashtadani3 141335 mac 141335 bytes_out 0 141335 bytes_in 0 141335 station_ip 37.129.67.30 141335 port 413 141335 unique_id port 141335 remote_ip 10.8.0.154 141343 username hashtadani3 141343 mac 141343 bytes_out 0 141343 bytes_in 0 141343 station_ip 37.129.67.30 141343 port 418 141343 unique_id port 141343 remote_ip 10.8.0.154 141348 username barzegar 141329 station_ip 5.119.21.255 141329 port 224 141329 unique_id port 141329 remote_ip 10.8.1.174 141340 username barzegar 141340 mac 141340 bytes_out 0 141340 bytes_in 0 141340 station_ip 5.119.21.255 141340 port 416 141340 unique_id port 141340 remote_ip 10.8.0.234 141345 username hashtadani3 141345 mac 141345 bytes_out 0 141345 bytes_in 0 141345 station_ip 37.129.67.30 141345 port 413 141345 unique_id port 141345 remote_ip 10.8.0.154 141346 username aminvpn 141346 mac 141346 bytes_out 0 141346 bytes_in 0 141346 station_ip 5.119.94.12 141346 port 413 141346 unique_id port 141346 remote_ip 10.8.0.14 141347 username hashtadani3 141347 mac 141347 bytes_out 0 141347 bytes_in 0 141347 station_ip 37.129.67.30 141347 port 413 141347 unique_id port 141347 remote_ip 10.8.0.154 141352 username barzegar 141352 mac 141352 bytes_out 0 141352 bytes_in 0 141352 station_ip 5.119.21.255 141352 port 413 141352 unique_id port 141352 remote_ip 10.8.0.234 141355 username mohammadjavad 141355 mac 141355 bytes_out 1300027 141355 bytes_in 28333609 141355 station_ip 83.123.239.221 141355 port 416 141355 unique_id port 141355 remote_ip 10.8.0.142 141356 username aminvpn 141356 mac 141356 bytes_out 0 141356 bytes_in 0 141356 station_ip 5.119.94.12 141356 port 387 141356 unique_id port 141356 remote_ip 10.8.0.14 141357 username hashtadani3 141357 mac 141357 bytes_out 0 141357 bytes_in 0 141357 station_ip 37.129.67.30 141357 port 387 141357 unique_id port 141357 remote_ip 10.8.0.154 141362 username hashtadani3 141362 mac 141362 bytes_out 0 141362 bytes_in 0 141362 station_ip 37.129.67.30 141362 port 387 141362 unique_id port 141362 remote_ip 10.8.0.154 141364 username hashtadani3 141364 mac 141364 bytes_out 0 141364 bytes_in 0 141364 station_ip 37.129.67.30 141364 port 413 141364 unique_id port 141364 remote_ip 10.8.0.154 141365 username hamid.e 141365 unique_id port 141365 terminate_cause User-Request 141365 bytes_out 1962867 141365 bytes_in 38348106 141365 station_ip 37.27.22.128 141365 port 15730719 141365 nas_port_type Virtual 141365 remote_ip 5.5.5.125 141369 username hashtadani3 141369 mac 141369 bytes_out 0 141369 bytes_in 0 141369 station_ip 37.129.67.30 141369 port 413 141369 unique_id port 141369 remote_ip 10.8.0.154 141371 username hashtadani3 141371 mac 141371 bytes_out 0 141371 bytes_in 0 141371 station_ip 37.129.67.30 141371 port 413 141371 unique_id port 141371 remote_ip 10.8.0.154 141375 username hashtadani3 141375 kill_reason Maximum check online fails reached 141375 mac 141375 bytes_out 0 141375 bytes_in 0 141375 station_ip 37.129.67.30 141375 port 224 141375 unique_id port 141377 username hashtadani3 141377 mac 141377 bytes_out 0 141377 bytes_in 0 141377 station_ip 37.129.67.30 141377 port 413 141377 unique_id port 141377 remote_ip 10.8.0.154 141379 username aminvpn 141379 mac 141379 bytes_out 0 141379 bytes_in 0 141379 station_ip 5.119.94.12 141379 port 413 141379 unique_id port 141379 remote_ip 10.8.0.14 141380 username barzegar 141380 mac 141380 bytes_out 0 141380 bytes_in 0 141380 station_ip 5.119.21.255 141380 port 413 141380 unique_id port 141380 remote_ip 10.8.0.234 141385 username hashtadani3 141385 mac 141385 bytes_out 0 141385 bytes_in 0 141385 station_ip 37.129.67.30 141385 port 416 141385 unique_id port 141385 remote_ip 10.8.0.154 141388 username moradi 141388 mac 141388 bytes_out 0 141388 bytes_in 0 141388 station_ip 37.129.65.241 141330 bytes_in 0 141330 station_ip 37.129.67.30 141330 port 413 141330 unique_id port 141330 remote_ip 10.8.0.154 141332 username hashtadani3 141332 mac 141332 bytes_out 0 141332 bytes_in 0 141332 station_ip 37.129.67.30 141332 port 413 141332 unique_id port 141332 remote_ip 10.8.0.154 141333 username barzegar 141333 mac 141333 bytes_out 3106 141333 bytes_in 5561 141333 station_ip 5.119.21.255 141333 port 413 141333 unique_id port 141333 remote_ip 10.8.0.234 141336 username sedighe 141336 mac 141336 bytes_out 199363 141336 bytes_in 533620 141336 station_ip 37.129.200.202 141336 port 416 141336 unique_id port 141336 remote_ip 10.8.0.146 141337 username hashtadani3 141337 mac 141337 bytes_out 0 141337 bytes_in 0 141337 station_ip 37.129.67.30 141337 port 416 141337 unique_id port 141337 remote_ip 10.8.0.154 141338 username hashtadani3 141338 mac 141338 bytes_out 0 141338 bytes_in 0 141338 station_ip 37.129.67.30 141338 port 416 141338 unique_id port 141338 remote_ip 10.8.0.154 141339 username hashtadani3 141339 mac 141339 bytes_out 0 141339 bytes_in 0 141339 station_ip 37.129.67.30 141339 port 416 141339 unique_id port 141339 remote_ip 10.8.0.154 141341 username hashtadani3 141341 mac 141341 bytes_out 0 141341 bytes_in 0 141341 station_ip 37.129.67.30 141341 port 418 141341 unique_id port 141341 remote_ip 10.8.0.154 141342 username hashtadani3 141342 mac 141342 bytes_out 0 141342 bytes_in 0 141342 station_ip 37.129.67.30 141342 port 224 141342 unique_id port 141342 remote_ip 10.8.1.94 141344 username sedighe 141344 mac 141344 bytes_out 53267 141344 bytes_in 197304 141344 station_ip 83.122.220.59 141344 port 413 141344 unique_id port 141344 remote_ip 10.8.0.146 141350 username hashtadani3 141350 mac 141350 bytes_out 0 141350 bytes_in 0 141350 station_ip 37.129.67.30 141350 port 413 141350 unique_id port 141350 remote_ip 10.8.0.154 141354 username hashtadani3 141354 mac 141354 bytes_out 0 141354 bytes_in 0 141354 station_ip 37.129.67.30 141354 port 387 141354 unique_id port 141354 remote_ip 10.8.0.154 141359 username barzegar 141359 mac 141359 bytes_out 0 141359 bytes_in 0 141359 station_ip 5.119.21.255 141359 port 224 141359 unique_id port 141359 remote_ip 10.8.1.174 141361 username hashtadani3 141361 mac 141361 bytes_out 0 141361 bytes_in 0 141361 station_ip 37.129.67.30 141361 port 387 141361 unique_id port 141361 remote_ip 10.8.0.154 141367 username hashtadani3 141367 mac 141367 bytes_out 0 141367 bytes_in 0 141367 station_ip 37.129.67.30 141367 port 413 141367 unique_id port 141367 remote_ip 10.8.0.154 141376 username hashtadani3 141376 mac 141376 bytes_out 0 141376 bytes_in 0 141376 station_ip 37.129.67.30 141376 port 413 141376 unique_id port 141376 remote_ip 10.8.0.154 141383 username aminvpn 141383 mac 141383 bytes_out 1644 141383 bytes_in 4670 141383 station_ip 5.119.94.12 141383 port 416 141383 unique_id port 141383 remote_ip 10.8.0.14 141384 username hashtadani3 141384 mac 141384 bytes_out 0 141384 bytes_in 0 141384 station_ip 37.129.67.30 141384 port 416 141384 unique_id port 141384 remote_ip 10.8.0.154 141387 username hashtadani3 141387 mac 141387 bytes_out 0 141387 bytes_in 0 141387 station_ip 37.129.67.30 141387 port 416 141387 unique_id port 141387 remote_ip 10.8.0.154 141390 username hashtadani3 141390 mac 141390 bytes_out 0 141390 bytes_in 0 141390 station_ip 37.129.67.30 141390 port 421 141348 mac 141348 bytes_out 0 141348 bytes_in 0 141348 station_ip 5.119.21.255 141348 port 224 141348 unique_id port 141348 remote_ip 10.8.1.174 141349 username hashtadani3 141349 mac 141349 bytes_out 0 141349 bytes_in 0 141349 station_ip 37.129.67.30 141349 port 413 141349 unique_id port 141349 remote_ip 10.8.0.154 141351 username mirzaei 141351 mac 141351 bytes_out 308553 141351 bytes_in 642614 141351 station_ip 5.119.139.70 141351 port 387 141351 unique_id port 141351 remote_ip 10.8.0.66 141353 username hashtadani3 141353 mac 141353 bytes_out 0 141353 bytes_in 0 141353 station_ip 37.129.67.30 141353 port 387 141353 unique_id port 141353 remote_ip 10.8.0.154 141358 username hashtadani3 141358 mac 141358 bytes_out 0 141358 bytes_in 0 141358 station_ip 37.129.67.30 141358 port 387 141358 unique_id port 141358 remote_ip 10.8.0.154 141360 username hashtadani3 141360 mac 141360 bytes_out 0 141360 bytes_in 0 141360 station_ip 37.129.67.30 141360 port 387 141360 unique_id port 141360 remote_ip 10.8.0.154 141363 username hashtadani3 141363 mac 141363 bytes_out 0 141363 bytes_in 0 141363 station_ip 37.129.67.30 141363 port 387 141363 unique_id port 141363 remote_ip 10.8.0.154 141366 username aminvpn 141366 mac 141366 bytes_out 0 141366 bytes_in 0 141366 station_ip 5.119.94.12 141366 port 416 141366 unique_id port 141366 remote_ip 10.8.0.14 141368 username barzegar 141368 mac 141368 bytes_out 0 141368 bytes_in 0 141368 station_ip 5.119.21.255 141368 port 224 141368 unique_id port 141368 remote_ip 10.8.1.174 141370 username hashtadani3 141370 mac 141370 bytes_out 0 141370 bytes_in 0 141370 station_ip 37.129.67.30 141370 port 224 141370 unique_id port 141370 remote_ip 10.8.1.94 141372 username hashtadani3 141372 mac 141372 bytes_out 0 141372 bytes_in 0 141372 station_ip 37.129.67.30 141372 port 413 141372 unique_id port 141372 remote_ip 10.8.0.154 141373 username hashtadani3 141373 mac 141373 bytes_out 0 141373 bytes_in 0 141373 station_ip 37.129.67.30 141373 port 413 141373 unique_id port 141373 remote_ip 10.8.0.154 141374 username moradi 141374 kill_reason Another user logged on this global unique id 141374 mac 141374 bytes_out 0 141374 bytes_in 0 141374 station_ip 37.129.65.241 141374 port 387 141374 unique_id port 141374 remote_ip 10.8.0.250 141378 username hashtadani3 141378 mac 141378 bytes_out 0 141378 bytes_in 0 141378 station_ip 37.129.67.30 141378 port 413 141378 unique_id port 141378 remote_ip 10.8.0.154 141381 username hashtadani3 141381 mac 141381 bytes_out 0 141381 bytes_in 0 141381 station_ip 37.129.67.30 141381 port 225 141381 unique_id port 141381 remote_ip 10.8.1.94 141382 username hashtadani3 141382 mac 141382 bytes_out 0 141382 bytes_in 0 141382 station_ip 37.129.67.30 141382 port 225 141382 unique_id port 141382 remote_ip 10.8.1.94 141386 username moradi 141386 kill_reason Another user logged on this global unique id 141386 mac 141386 bytes_out 0 141386 bytes_in 0 141386 station_ip 37.129.65.241 141386 port 387 141386 unique_id port 141393 username aminvpn 141393 mac 141393 bytes_out 0 141393 bytes_in 0 141393 station_ip 37.129.171.174 141393 port 421 141393 unique_id port 141393 remote_ip 10.8.0.14 141395 username hashtadani3 141395 mac 141395 bytes_out 0 141395 bytes_in 0 141395 station_ip 37.129.67.30 141395 port 225 141395 unique_id port 141395 remote_ip 10.8.1.94 141396 username aminvpn 141396 mac 141396 bytes_out 0 141388 port 387 141388 unique_id port 141389 username hashtadani3 141389 mac 141389 bytes_out 0 141389 bytes_in 0 141389 station_ip 37.129.67.30 141389 port 387 141389 unique_id port 141389 remote_ip 10.8.0.154 141391 username vanila 141391 mac 141391 bytes_out 4414187 141391 bytes_in 481718 141391 station_ip 37.129.38.212 141391 port 416 141391 unique_id port 141391 remote_ip 10.8.0.178 141400 username aminvpn 141400 mac 141400 bytes_out 0 141400 bytes_in 0 141400 station_ip 5.119.94.12 141400 port 418 141400 unique_id port 141400 remote_ip 10.8.0.14 141401 username hashtadani3 141401 mac 141401 bytes_out 0 141401 bytes_in 0 141401 station_ip 37.129.67.30 141401 port 418 141401 unique_id port 141401 remote_ip 10.8.0.154 141404 username aminvpn 141404 mac 141404 bytes_out 0 141404 bytes_in 0 141404 station_ip 37.129.171.174 141404 port 421 141404 unique_id port 141404 remote_ip 10.8.0.14 141406 username aminvpn 141406 mac 141406 bytes_out 0 141406 bytes_in 0 141406 station_ip 5.119.94.12 141406 port 421 141406 unique_id port 141406 remote_ip 10.8.0.14 141407 username hashtadani3 141407 mac 141407 bytes_out 0 141407 bytes_in 0 141407 station_ip 37.129.67.30 141407 port 418 141407 unique_id port 141407 remote_ip 10.8.0.154 141408 username aminvpn 141408 mac 141408 bytes_out 0 141408 bytes_in 0 141408 station_ip 37.129.171.174 141408 port 418 141408 unique_id port 141408 remote_ip 10.8.0.14 141412 username hashtadani3 141412 mac 141412 bytes_out 0 141412 bytes_in 0 141412 station_ip 37.129.67.30 141412 port 225 141412 unique_id port 141412 remote_ip 10.8.1.94 141416 username hashtadani3 141416 mac 141416 bytes_out 0 141416 bytes_in 0 141416 station_ip 37.129.67.30 141416 port 418 141416 unique_id port 141416 remote_ip 10.8.0.154 141419 username barzegar 141419 mac 141419 bytes_out 629909 141419 bytes_in 4321532 141419 station_ip 5.119.21.255 141419 port 413 141419 unique_id port 141419 remote_ip 10.8.0.234 141423 username aminvpn 141423 mac 141423 bytes_out 0 141423 bytes_in 0 141423 station_ip 83.122.21.54 141423 port 418 141423 unique_id port 141423 remote_ip 10.8.0.14 141424 username aminvpn 141424 mac 141424 bytes_out 0 141424 bytes_in 0 141424 station_ip 37.129.171.174 141424 port 413 141424 unique_id port 141424 remote_ip 10.8.0.14 141428 username aminvpn 141428 mac 141428 bytes_out 0 141428 bytes_in 0 141428 station_ip 5.119.94.12 141428 port 416 141428 unique_id port 141428 remote_ip 10.8.0.14 141430 username aminvpn 141430 mac 141430 bytes_out 0 141430 bytes_in 0 141430 station_ip 37.129.171.174 141430 port 416 141430 unique_id port 141430 remote_ip 10.8.0.14 141434 username hashtadani3 141434 mac 141434 bytes_out 0 141434 bytes_in 0 141434 station_ip 37.129.67.30 141434 port 225 141434 unique_id port 141434 remote_ip 10.8.1.94 141435 username hashtadani3 141435 mac 141435 bytes_out 0 141435 bytes_in 0 141435 station_ip 37.129.67.30 141435 port 225 141435 unique_id port 141435 remote_ip 10.8.1.94 141436 username aminvpn 141436 mac 141436 bytes_out 12112 141436 bytes_in 11523 141436 station_ip 37.129.171.174 141436 port 416 141436 unique_id port 141436 remote_ip 10.8.0.14 141438 username hashtadani3 141438 mac 141438 bytes_out 0 141438 bytes_in 0 141438 station_ip 37.129.67.30 141438 port 413 141438 unique_id port 141438 remote_ip 10.8.0.154 141439 username aminvpn 141439 mac 141390 unique_id port 141390 remote_ip 10.8.0.154 141392 username aminvpn 141392 mac 141392 bytes_out 118541 141392 bytes_in 1077265 141392 station_ip 83.122.21.54 141392 port 418 141392 unique_id port 141392 remote_ip 10.8.0.14 141394 username aminvpn 141394 mac 141394 bytes_out 0 141394 bytes_in 0 141394 station_ip 5.119.94.12 141394 port 225 141394 unique_id port 141394 remote_ip 10.8.1.6 141398 username hashtadani3 141398 mac 141398 bytes_out 0 141398 bytes_in 0 141398 station_ip 37.129.67.30 141398 port 418 141398 unique_id port 141398 remote_ip 10.8.0.154 141402 username aminvpn 141402 mac 141402 bytes_out 0 141402 bytes_in 0 141402 station_ip 83.122.21.54 141402 port 421 141402 unique_id port 141402 remote_ip 10.8.0.14 141405 username aminvpn 141405 mac 141405 bytes_out 0 141405 bytes_in 0 141405 station_ip 83.122.21.54 141405 port 418 141405 unique_id port 141405 remote_ip 10.8.0.14 141410 username hashtadani3 141410 mac 141410 bytes_out 0 141410 bytes_in 0 141410 station_ip 37.129.67.30 141410 port 418 141410 unique_id port 141410 remote_ip 10.8.0.154 141414 username hashtadani3 141414 mac 141414 bytes_out 0 141414 bytes_in 0 141414 station_ip 37.129.67.30 141414 port 421 141414 unique_id port 141414 remote_ip 10.8.0.154 141417 username aminvpn 141417 mac 141417 bytes_out 0 141417 bytes_in 0 141417 station_ip 37.129.171.174 141417 port 416 141417 unique_id port 141417 remote_ip 10.8.0.14 141418 username aminvpn 141418 mac 141418 bytes_out 0 141418 bytes_in 0 141418 station_ip 83.122.21.54 141418 port 418 141418 unique_id port 141418 remote_ip 10.8.0.14 141421 username aminvpn 141421 mac 141421 bytes_out 0 141421 bytes_in 0 141421 station_ip 37.129.171.174 141421 port 416 141421 unique_id port 141421 remote_ip 10.8.0.14 141425 username aminvpn 141425 mac 141425 bytes_out 0 141425 bytes_in 0 141425 station_ip 83.122.21.54 141425 port 416 141425 unique_id port 141425 remote_ip 10.8.0.14 141426 username hashtadani3 141426 mac 141426 bytes_out 0 141426 bytes_in 0 141426 station_ip 37.129.67.30 141426 port 416 141426 unique_id port 141426 remote_ip 10.8.0.154 141433 username aminvpn 141433 mac 141433 bytes_out 0 141433 bytes_in 0 141433 station_ip 83.122.21.54 141433 port 413 141433 unique_id port 141433 remote_ip 10.8.0.14 141437 username barzegar 141437 mac 141437 bytes_out 0 141437 bytes_in 0 141437 station_ip 5.119.21.255 141437 port 225 141437 unique_id port 141437 remote_ip 10.8.1.174 141440 username aminvpn 141440 mac 141440 bytes_out 0 141440 bytes_in 0 141440 station_ip 37.129.171.174 141440 port 413 141440 unique_id port 141440 remote_ip 10.8.0.14 141441 username aminvpn 141441 mac 141441 bytes_out 0 141441 bytes_in 0 141441 station_ip 83.122.21.54 141441 port 416 141441 unique_id port 141441 remote_ip 10.8.0.14 141443 username hashtadani3 141443 mac 141443 bytes_out 0 141443 bytes_in 0 141443 station_ip 37.129.67.30 141443 port 413 141443 unique_id port 141443 remote_ip 10.8.0.154 141444 username aminvpn 141444 mac 141444 bytes_out 0 141444 bytes_in 0 141444 station_ip 83.122.21.54 141444 port 416 141444 unique_id port 141444 remote_ip 10.8.0.14 141449 username aminvpn 141449 mac 141449 bytes_out 0 141449 bytes_in 0 141449 station_ip 37.129.171.174 141449 port 418 141449 unique_id port 141449 remote_ip 10.8.0.14 141454 username hashtadani3 141454 mac 141396 bytes_in 0 141396 station_ip 83.122.21.54 141396 port 418 141396 unique_id port 141396 remote_ip 10.8.0.14 141397 username aminvpn 141397 mac 141397 bytes_out 0 141397 bytes_in 0 141397 station_ip 5.119.94.12 141397 port 421 141397 unique_id port 141397 remote_ip 10.8.0.14 141399 username aminvpn 141399 mac 141399 bytes_out 0 141399 bytes_in 0 141399 station_ip 37.129.171.174 141399 port 427 141399 unique_id port 141399 remote_ip 10.8.0.14 141403 username aminvpn 141403 mac 141403 bytes_out 0 141403 bytes_in 0 141403 station_ip 5.119.94.12 141403 port 418 141403 unique_id port 141403 remote_ip 10.8.0.14 141409 username aminvpn 141409 mac 141409 bytes_out 0 141409 bytes_in 0 141409 station_ip 83.122.21.54 141409 port 421 141409 unique_id port 141409 remote_ip 10.8.0.14 141411 username aminvpn 141411 mac 141411 bytes_out 0 141411 bytes_in 0 141411 station_ip 37.129.171.174 141411 port 427 141411 unique_id port 141411 remote_ip 10.8.0.14 141413 username forozandeh1 141413 mac 141413 bytes_out 1268702 141413 bytes_in 10339960 141413 station_ip 83.122.180.227 141413 port 416 141413 unique_id port 141413 remote_ip 10.8.0.130 141415 username aminvpn 141415 mac 141415 bytes_out 0 141415 bytes_in 0 141415 station_ip 83.122.21.54 141415 port 418 141415 unique_id port 141415 remote_ip 10.8.0.14 141420 username khademi 141420 kill_reason Another user logged on this global unique id 141420 mac 141420 bytes_out 0 141420 bytes_in 0 141420 station_ip 113.203.108.212 141420 port 379 141420 unique_id port 141420 remote_ip 10.8.0.10 141422 username hashtadani3 141422 mac 141422 bytes_out 0 141422 bytes_in 0 141422 station_ip 37.129.67.30 141422 port 413 141422 unique_id port 141422 remote_ip 10.8.0.154 141427 username aminvpn 141427 mac 141427 bytes_out 0 141427 bytes_in 0 141427 station_ip 37.129.171.174 141427 port 413 141427 unique_id port 141427 remote_ip 10.8.0.14 141429 username aminvpn 141429 mac 141429 bytes_out 0 141429 bytes_in 0 141429 station_ip 83.122.21.54 141429 port 413 141429 unique_id port 141429 remote_ip 10.8.0.14 141431 username aminvpn 141431 mac 141431 bytes_out 0 141431 bytes_in 0 141431 station_ip 5.119.94.12 141431 port 413 141431 unique_id port 141431 remote_ip 10.8.0.14 141432 username hashtadani3 141432 mac 141432 bytes_out 0 141432 bytes_in 0 141432 station_ip 37.129.67.30 141432 port 225 141432 unique_id port 141432 remote_ip 10.8.1.94 141442 username aminvpn 141442 mac 141442 bytes_out 0 141442 bytes_in 0 141442 station_ip 37.129.171.174 141442 port 413 141442 unique_id port 141442 remote_ip 10.8.0.14 141445 username hashtadani3 141445 mac 141445 bytes_out 0 141445 bytes_in 0 141445 station_ip 37.129.67.30 141445 port 416 141445 unique_id port 141445 remote_ip 10.8.0.154 141446 username aminvpn 141446 mac 141446 bytes_out 0 141446 bytes_in 0 141446 station_ip 37.129.171.174 141446 port 418 141446 unique_id port 141446 remote_ip 10.8.0.14 141451 username aminvpn 141451 mac 141451 bytes_out 0 141451 bytes_in 0 141451 station_ip 83.122.21.54 141451 port 416 141451 unique_id port 141451 remote_ip 10.8.0.14 141453 username sekonji3 141453 mac 141453 bytes_out 542113 141453 bytes_in 5027110 141453 station_ip 83.122.168.143 141453 port 387 141453 unique_id port 141453 remote_ip 10.8.0.6 141456 username barzegar 141456 mac 141456 bytes_out 6182 141456 bytes_in 8172 141456 station_ip 5.119.21.255 141439 bytes_out 0 141439 bytes_in 0 141439 station_ip 83.122.21.54 141439 port 418 141439 unique_id port 141439 remote_ip 10.8.0.14 141447 username aminvpn 141447 mac 141447 bytes_out 0 141447 bytes_in 0 141447 station_ip 83.122.21.54 141447 port 416 141447 unique_id port 141447 remote_ip 10.8.0.14 141448 username hashtadani3 141448 mac 141448 bytes_out 0 141448 bytes_in 0 141448 station_ip 37.129.67.30 141448 port 416 141448 unique_id port 141448 remote_ip 10.8.0.154 141450 username khademi 141450 kill_reason Another user logged on this global unique id 141450 mac 141450 bytes_out 0 141450 bytes_in 0 141450 station_ip 113.203.108.212 141450 port 379 141450 unique_id port 141452 username aminvpn 141452 mac 141452 bytes_out 6778 141452 bytes_in 9871 141452 station_ip 37.129.171.174 141452 port 421 141452 unique_id port 141452 remote_ip 10.8.0.14 141455 username aminvpn 141455 mac 141455 bytes_out 0 141455 bytes_in 0 141455 station_ip 83.122.21.54 141455 port 427 141455 unique_id port 141455 remote_ip 10.8.0.14 141457 username hashtadani3 141457 mac 141457 bytes_out 0 141457 bytes_in 0 141457 station_ip 37.129.67.30 141457 port 413 141457 unique_id port 141457 remote_ip 10.8.0.154 141461 username hashtadani3 141461 mac 141461 bytes_out 0 141461 bytes_in 0 141461 station_ip 37.129.67.30 141461 port 418 141461 unique_id port 141461 remote_ip 10.8.0.154 141466 username hashtadani3 141466 mac 141466 bytes_out 0 141466 bytes_in 0 141466 station_ip 37.129.67.30 141466 port 225 141466 unique_id port 141466 remote_ip 10.8.1.94 141473 username hashtadani3 141473 mac 141473 bytes_out 0 141473 bytes_in 0 141473 station_ip 37.129.67.30 141473 port 225 141473 unique_id port 141473 remote_ip 10.8.1.94 141476 username aminvpn 141476 mac 141476 bytes_out 0 141476 bytes_in 0 141476 station_ip 83.122.21.54 141476 port 413 141476 unique_id port 141476 remote_ip 10.8.0.14 141477 username hashtadani3 141477 mac 141477 bytes_out 0 141477 bytes_in 0 141477 station_ip 37.129.67.30 141477 port 413 141477 unique_id port 141477 remote_ip 10.8.0.154 141481 username barzegar 141481 mac 141481 bytes_out 0 141481 bytes_in 0 141481 station_ip 5.119.21.255 141481 port 413 141481 unique_id port 141481 remote_ip 10.8.0.234 141483 username aminvpn 141483 mac 141483 bytes_out 0 141483 bytes_in 0 141483 station_ip 83.122.21.54 141483 port 427 141483 unique_id port 141483 remote_ip 10.8.0.14 141495 username hashtadani3 141495 mac 141495 bytes_out 0 141495 bytes_in 0 141495 station_ip 37.129.67.30 141495 port 416 141495 unique_id port 141495 remote_ip 10.8.0.154 141499 username aminvpn 141499 mac 141499 bytes_out 0 141499 bytes_in 0 141499 station_ip 83.122.21.54 141499 port 421 141499 unique_id port 141499 remote_ip 10.8.0.14 141500 username hashtadani3 141500 mac 141500 bytes_out 0 141500 bytes_in 0 141500 station_ip 37.129.67.30 141500 port 225 141500 unique_id port 141500 remote_ip 10.8.1.94 141504 username hashtadani3 141504 mac 141504 bytes_out 0 141504 bytes_in 0 141504 station_ip 37.129.67.30 141504 port 418 141504 unique_id port 141504 remote_ip 10.8.0.154 141506 username sekonji3 141506 mac 141506 bytes_out 0 141506 bytes_in 0 141506 station_ip 83.122.168.143 141506 port 413 141506 unique_id port 141506 remote_ip 10.8.0.6 141510 username aminvpn 141510 mac 141510 bytes_out 8489 141510 bytes_in 17092 141510 station_ip 83.122.21.54 141510 port 418 141454 bytes_out 74078 141454 bytes_in 102474 141454 station_ip 37.129.67.30 141454 port 418 141454 unique_id port 141454 remote_ip 10.8.0.154 141458 username aminvpn 141458 mac 141458 bytes_out 0 141458 bytes_in 0 141458 station_ip 37.129.171.174 141458 port 387 141458 unique_id port 141458 remote_ip 10.8.0.14 141462 username aminvpn 141462 mac 141462 bytes_out 0 141462 bytes_in 0 141462 station_ip 83.122.21.54 141462 port 413 141462 unique_id port 141462 remote_ip 10.8.0.14 141463 username aminvpn 141463 mac 141463 bytes_out 2562 141463 bytes_in 4370 141463 station_ip 37.129.171.174 141463 port 418 141463 unique_id port 141463 remote_ip 10.8.0.14 141465 username hashtadani3 141465 mac 141465 bytes_out 0 141465 bytes_in 0 141465 station_ip 37.129.67.30 141465 port 225 141465 unique_id port 141465 remote_ip 10.8.1.94 141467 username hashtadani3 141467 mac 141467 bytes_out 0 141467 bytes_in 0 141467 station_ip 37.129.67.30 141467 port 421 141467 unique_id port 141467 remote_ip 10.8.0.154 141469 username forozandeh1 141469 mac 141469 bytes_out 969411 141469 bytes_in 14347259 141469 station_ip 37.129.178.240 141469 port 416 141469 unique_id port 141469 remote_ip 10.8.0.130 141470 username aminvpn 141470 mac 141470 bytes_out 0 141470 bytes_in 0 141470 station_ip 37.129.171.174 141470 port 427 141470 unique_id port 141470 remote_ip 10.8.0.14 141471 username aminvpn 141471 mac 141471 bytes_out 0 141471 bytes_in 0 141471 station_ip 83.122.21.54 141471 port 413 141471 unique_id port 141471 remote_ip 10.8.0.14 141474 username aminvpn 141474 mac 141474 bytes_out 0 141474 bytes_in 0 141474 station_ip 37.129.171.174 141474 port 416 141474 unique_id port 141474 remote_ip 10.8.0.14 141478 username aminvpn 141478 mac 141478 bytes_out 0 141478 bytes_in 0 141478 station_ip 37.129.171.174 141478 port 416 141478 unique_id port 141478 remote_ip 10.8.0.14 141480 username aminvpn 141480 mac 141480 bytes_out 0 141480 bytes_in 0 141480 station_ip 37.129.171.174 141480 port 416 141480 unique_id port 141480 remote_ip 10.8.0.14 141484 username aminvpn 141484 mac 141484 bytes_out 0 141484 bytes_in 0 141484 station_ip 37.129.171.174 141484 port 413 141484 unique_id port 141484 remote_ip 10.8.0.14 141485 username hashtadani3 141485 mac 141485 bytes_out 0 141485 bytes_in 0 141485 station_ip 37.129.67.30 141485 port 413 141485 unique_id port 141485 remote_ip 10.8.0.154 141487 username aminvpn 141487 mac 141487 bytes_out 0 141487 bytes_in 0 141487 station_ip 5.119.94.12 141487 port 413 141487 unique_id port 141487 remote_ip 10.8.0.14 141490 username hashtadani3 141490 mac 141490 bytes_out 0 141490 bytes_in 0 141490 station_ip 37.129.67.30 141490 port 416 141490 unique_id port 141490 remote_ip 10.8.0.154 141491 username aminvpn 141491 mac 141491 bytes_out 0 141491 bytes_in 0 141491 station_ip 83.122.21.54 141491 port 413 141491 unique_id port 141491 remote_ip 10.8.0.14 141494 username mohammadjavad 141494 mac 141494 bytes_out 0 141494 bytes_in 0 141494 station_ip 83.123.198.189 141494 port 421 141494 unique_id port 141494 remote_ip 10.8.0.142 141496 username aminvpn 141496 mac 141496 bytes_out 0 141496 bytes_in 0 141496 station_ip 83.122.21.54 141496 port 418 141496 unique_id port 141496 remote_ip 10.8.0.14 141497 username aminvpn 141497 mac 141497 bytes_out 0 141497 bytes_in 0 141497 station_ip 37.129.171.174 141497 port 416 141456 port 413 141456 unique_id port 141456 remote_ip 10.8.0.234 141459 username hashtadani3 141459 mac 141459 bytes_out 0 141459 bytes_in 0 141459 station_ip 37.129.67.30 141459 port 387 141459 unique_id port 141459 remote_ip 10.8.0.154 141460 username aminvpn 141460 mac 141460 bytes_out 0 141460 bytes_in 0 141460 station_ip 5.119.94.12 141460 port 413 141460 unique_id port 141460 remote_ip 10.8.0.14 141464 username sekonji3 141464 mac 141464 bytes_out 3005 141464 bytes_in 5667 141464 station_ip 83.122.168.143 141464 port 421 141464 unique_id port 141464 remote_ip 10.8.0.6 141468 username aminvpn 141468 mac 141468 bytes_out 107982 141468 bytes_in 1654184 141468 station_ip 83.122.21.54 141468 port 413 141468 unique_id port 141468 remote_ip 10.8.0.14 141472 username hashtadani3 141472 mac 141472 bytes_out 0 141472 bytes_in 0 141472 station_ip 37.129.67.30 141472 port 225 141472 unique_id port 141472 remote_ip 10.8.1.94 141475 username hashtadani3 141475 mac 141475 bytes_out 0 141475 bytes_in 0 141475 station_ip 37.129.67.30 141475 port 225 141475 unique_id port 141475 remote_ip 10.8.1.94 141479 username aminvpn 141479 mac 141479 bytes_out 0 141479 bytes_in 0 141479 station_ip 83.122.21.54 141479 port 413 141479 unique_id port 141479 remote_ip 10.8.0.14 141482 username hashtadani3 141482 mac 141482 bytes_out 0 141482 bytes_in 0 141482 station_ip 37.129.67.30 141482 port 413 141482 unique_id port 141482 remote_ip 10.8.0.154 141486 username aminvpn 141486 mac 141486 bytes_out 0 141486 bytes_in 0 141486 station_ip 83.122.21.54 141486 port 416 141486 unique_id port 141486 remote_ip 10.8.0.14 141488 username khademi 141488 kill_reason Another user logged on this global unique id 141488 mac 141488 bytes_out 0 141488 bytes_in 0 141488 station_ip 113.203.108.212 141488 port 379 141488 unique_id port 141489 username sekonji3 141489 mac 141489 bytes_out 0 141489 bytes_in 0 141489 station_ip 83.122.168.143 141489 port 418 141489 unique_id port 141489 remote_ip 10.8.0.6 141492 username jafari 141492 kill_reason Another user logged on this global unique id 141492 mac 141492 bytes_out 0 141492 bytes_in 0 141492 station_ip 37.137.5.7 141492 port 387 141492 unique_id port 141492 remote_ip 10.8.0.242 141493 username aminvpn 141493 mac 141493 bytes_out 0 141493 bytes_in 0 141493 station_ip 37.129.171.174 141493 port 416 141493 unique_id port 141493 remote_ip 10.8.0.14 141498 username hashtadani3 141498 mac 141498 bytes_out 0 141498 bytes_in 0 141498 station_ip 37.129.67.30 141498 port 418 141498 unique_id port 141498 remote_ip 10.8.0.154 141503 username aminvpn 141503 mac 141503 bytes_out 0 141503 bytes_in 0 141503 station_ip 37.129.171.174 141503 port 416 141503 unique_id port 141503 remote_ip 10.8.0.14 141507 username hashtadani3 141507 mac 141507 bytes_out 0 141507 bytes_in 0 141507 station_ip 37.129.67.30 141507 port 225 141507 unique_id port 141507 remote_ip 10.8.1.94 141509 username hashtadani3 141509 mac 141509 bytes_out 0 141509 bytes_in 0 141509 station_ip 37.129.67.30 141509 port 413 141509 unique_id port 141509 remote_ip 10.8.0.154 141515 username hashtadani3 141515 mac 141515 bytes_out 0 141515 bytes_in 0 141515 station_ip 37.129.67.30 141515 port 418 141515 unique_id port 141515 remote_ip 10.8.0.154 141517 username hashtadani3 141517 mac 141517 bytes_out 0 141517 bytes_in 0 141517 station_ip 37.129.67.30 141517 port 421 141517 unique_id port 141497 unique_id port 141497 remote_ip 10.8.0.14 141501 username hashtadani3 141501 mac 141501 bytes_out 0 141501 bytes_in 0 141501 station_ip 37.129.67.30 141501 port 418 141501 unique_id port 141501 remote_ip 10.8.0.154 141502 username hashtadani3 141502 mac 141502 bytes_out 0 141502 bytes_in 0 141502 station_ip 37.129.67.30 141502 port 418 141502 unique_id port 141502 remote_ip 10.8.0.154 141505 username barzegar 141505 mac 141505 bytes_out 0 141505 bytes_in 0 141505 station_ip 5.119.21.255 141505 port 416 141505 unique_id port 141505 remote_ip 10.8.0.234 141508 username barzegar 141508 mac 141508 bytes_out 0 141508 bytes_in 0 141508 station_ip 5.119.21.255 141508 port 413 141508 unique_id port 141508 remote_ip 10.8.0.234 141511 username aminvpn 141511 mac 141511 bytes_out 0 141511 bytes_in 0 141511 station_ip 5.119.94.12 141511 port 413 141511 unique_id port 141511 remote_ip 10.8.0.14 141512 username aminvpn 141512 unique_id port 141512 terminate_cause Lost-Carrier 141512 bytes_out 920543 141512 bytes_in 4009572 141512 station_ip 5.233.49.34 141512 port 15730722 141512 nas_port_type Virtual 141512 remote_ip 5.5.5.133 141519 username forozandeh1 141519 mac 141519 bytes_out 553399 141519 bytes_in 6561496 141519 station_ip 113.203.32.97 141519 port 416 141519 unique_id port 141519 remote_ip 10.8.0.130 141520 username hashtadani3 141520 mac 141520 bytes_out 0 141520 bytes_in 0 141520 station_ip 37.129.67.30 141520 port 225 141520 unique_id port 141520 remote_ip 10.8.1.94 141524 username sabaghnezhad 141524 mac 141524 bytes_out 0 141524 bytes_in 0 141524 station_ip 5.213.151.163 141524 port 416 141524 unique_id port 141524 remote_ip 10.8.0.186 141526 username barzegar 141526 mac 141526 bytes_out 0 141526 bytes_in 0 141526 station_ip 5.119.21.255 141526 port 421 141526 unique_id port 141526 remote_ip 10.8.0.234 141531 username hashtadani3 141531 mac 141531 bytes_out 0 141531 bytes_in 0 141531 station_ip 37.129.67.30 141531 port 421 141531 unique_id port 141531 remote_ip 10.8.0.154 141532 username hashtadani3 141532 mac 141532 bytes_out 0 141532 bytes_in 0 141532 station_ip 37.129.67.30 141532 port 421 141532 unique_id port 141532 remote_ip 10.8.0.154 141536 username hashtadani3 141536 mac 141536 bytes_out 0 141536 bytes_in 0 141536 station_ip 37.129.67.30 141536 port 418 141536 unique_id port 141536 remote_ip 10.8.0.154 141538 username tahmasebi 141538 mac 141538 bytes_out 0 141538 bytes_in 0 141538 station_ip 5.125.147.62 141538 port 427 141538 unique_id port 141538 remote_ip 10.8.0.42 141544 username aminvpn 141544 mac 141544 bytes_out 0 141544 bytes_in 0 141544 station_ip 5.119.94.12 141544 port 418 141544 unique_id port 141544 remote_ip 10.8.0.14 141547 username jafari 141547 kill_reason Another user logged on this global unique id 141547 mac 141547 bytes_out 0 141547 bytes_in 0 141547 station_ip 37.137.5.7 141547 port 387 141547 unique_id port 141553 username khalili 141553 mac 141553 bytes_out 0 141553 bytes_in 0 141553 station_ip 5.119.71.25 141553 port 373 141553 unique_id port 141560 username mamal 141560 unique_id port 141560 terminate_cause User-Request 141560 bytes_out 10957632 141560 bytes_in 377249884 141560 station_ip 83.123.28.150 141560 port 15730726 141560 nas_port_type Virtual 141560 remote_ip 5.5.5.140 141563 username forozandeh1 141563 mac 141563 bytes_out 0 141563 bytes_in 0 141563 station_ip 83.123.83.193 141563 port 427 141510 unique_id port 141510 remote_ip 10.8.0.14 141513 username aminvpn 141513 mac 141513 bytes_out 0 141513 bytes_in 0 141513 station_ip 5.119.94.12 141513 port 413 141513 unique_id port 141513 remote_ip 10.8.0.14 141514 username khademi 141514 kill_reason Another user logged on this global unique id 141514 mac 141514 bytes_out 0 141514 bytes_in 0 141514 station_ip 113.203.108.212 141514 port 379 141514 unique_id port 141516 username shahrooz 141516 unique_id port 141516 terminate_cause Lost-Carrier 141516 bytes_out 2454577 141516 bytes_in 37217765 141516 station_ip 83.122.213.227 141516 port 15730720 141516 nas_port_type Virtual 141516 remote_ip 5.5.5.129 141521 username vanila 141521 mac 141521 bytes_out 0 141521 bytes_in 0 141521 station_ip 37.129.83.184 141521 port 418 141521 unique_id port 141521 remote_ip 10.8.0.178 141522 username hashtadani3 141522 mac 141522 bytes_out 0 141522 bytes_in 0 141522 station_ip 37.129.67.30 141522 port 225 141522 unique_id port 141522 remote_ip 10.8.1.94 141523 username hashtadani3 141523 mac 141523 bytes_out 0 141523 bytes_in 0 141523 station_ip 37.129.67.30 141523 port 416 141523 unique_id port 141523 remote_ip 10.8.0.154 141530 username hashtadani3 141530 mac 141530 bytes_out 0 141530 bytes_in 0 141530 station_ip 37.129.67.30 141530 port 421 141530 unique_id port 141530 remote_ip 10.8.0.154 141533 username mohammadjavad 141533 mac 141533 bytes_out 0 141533 bytes_in 0 141533 station_ip 37.129.64.32 141533 port 418 141533 unique_id port 141533 remote_ip 10.8.0.142 141535 username khademi 141535 kill_reason Another user logged on this global unique id 141535 mac 141535 bytes_out 0 141535 bytes_in 0 141535 station_ip 113.203.108.212 141535 port 379 141535 unique_id port 141539 username hashtadani3 141539 mac 141539 bytes_out 0 141539 bytes_in 0 141539 station_ip 37.129.67.30 141539 port 431 141539 unique_id port 141539 remote_ip 10.8.0.154 141541 username aminvpn 141541 mac 141541 bytes_out 717335 141541 bytes_in 885935 141541 station_ip 83.122.21.54 141541 port 413 141541 unique_id port 141541 remote_ip 10.8.0.14 141543 username hashtadani3 141543 mac 141543 bytes_out 0 141543 bytes_in 0 141543 station_ip 37.129.67.30 141543 port 413 141543 unique_id port 141543 remote_ip 10.8.0.154 141549 username khademi 141549 kill_reason Another user logged on this global unique id 141549 mac 141549 bytes_out 0 141549 bytes_in 0 141549 station_ip 113.203.108.212 141549 port 379 141549 unique_id port 141550 username hashtadani3 141550 mac 141550 bytes_out 0 141550 bytes_in 0 141550 station_ip 37.129.67.30 141550 port 418 141550 unique_id port 141550 remote_ip 10.8.0.154 141552 username barzegar 141552 mac 141552 bytes_out 0 141552 bytes_in 0 141552 station_ip 5.119.21.255 141552 port 225 141552 unique_id port 141552 remote_ip 10.8.1.174 141555 username aminvpn 141555 mac 141555 bytes_out 0 141555 bytes_in 0 141555 station_ip 83.122.21.54 141555 port 413 141555 unique_id port 141555 remote_ip 10.8.0.14 141558 username barzegar 141558 mac 141558 bytes_out 0 141558 bytes_in 0 141558 station_ip 5.119.21.255 141558 port 225 141558 unique_id port 141558 remote_ip 10.8.1.174 141559 username barzegar 141559 mac 141559 bytes_out 0 141559 bytes_in 0 141559 station_ip 5.119.21.255 141559 port 225 141559 unique_id port 141559 remote_ip 10.8.1.174 141561 username aminvpn 141561 mac 141561 bytes_out 797628 141561 bytes_in 2989930 141561 station_ip 83.122.21.54 141561 port 413 141517 remote_ip 10.8.0.154 141518 username hashtadani3 141518 mac 141518 bytes_out 0 141518 bytes_in 0 141518 station_ip 37.129.67.30 141518 port 421 141518 unique_id port 141518 remote_ip 10.8.0.154 141525 username hashtadani3 141525 mac 141525 bytes_out 0 141525 bytes_in 0 141525 station_ip 37.129.67.30 141525 port 225 141525 unique_id port 141525 remote_ip 10.8.1.94 141527 username hashtadani3 141527 mac 141527 bytes_out 0 141527 bytes_in 0 141527 station_ip 37.129.67.30 141527 port 421 141527 unique_id port 141527 remote_ip 10.8.0.154 141528 username aminvpn 141528 mac 141528 bytes_out 0 141528 bytes_in 0 141528 station_ip 83.122.21.54 141528 port 413 141528 unique_id port 141528 remote_ip 10.8.0.14 141529 username aminvpn 141529 mac 141529 bytes_out 0 141529 bytes_in 0 141529 station_ip 5.119.94.12 141529 port 421 141529 unique_id port 141529 remote_ip 10.8.0.14 141534 username hashtadani3 141534 mac 141534 bytes_out 0 141534 bytes_in 0 141534 station_ip 37.129.67.30 141534 port 427 141534 unique_id port 141534 remote_ip 10.8.0.154 141537 username hashtadani3 141537 mac 141537 bytes_out 0 141537 bytes_in 0 141537 station_ip 37.129.67.30 141537 port 225 141537 unique_id port 141537 remote_ip 10.8.1.94 141540 username barzegar 141540 mac 141540 bytes_out 0 141540 bytes_in 0 141540 station_ip 5.119.21.255 141540 port 418 141540 unique_id port 141540 remote_ip 10.8.0.234 141542 username hashtadani3 141542 mac 141542 bytes_out 0 141542 bytes_in 0 141542 station_ip 37.129.67.30 141542 port 225 141542 unique_id port 141542 remote_ip 10.8.1.94 141545 username hashtadani3 141545 mac 141545 bytes_out 0 141545 bytes_in 0 141545 station_ip 37.129.67.30 141545 port 418 141545 unique_id port 141545 remote_ip 10.8.0.154 141546 username hashtadani3 141546 mac 141546 bytes_out 0 141546 bytes_in 0 141546 station_ip 37.129.67.30 141546 port 418 141546 unique_id port 141546 remote_ip 10.8.0.154 141548 username godarzi 141548 mac 141548 bytes_out 0 141548 bytes_in 0 141548 station_ip 5.120.3.215 141548 port 421 141548 unique_id port 141548 remote_ip 10.8.0.174 141551 username barzegar 141551 mac 141551 bytes_out 0 141551 bytes_in 0 141551 station_ip 5.119.21.255 141551 port 225 141551 unique_id port 141551 remote_ip 10.8.1.174 141554 username meysam 141554 mac 141554 bytes_out 392801 141554 bytes_in 3275697 141554 station_ip 188.159.254.216 141554 port 421 141554 unique_id port 141554 remote_ip 10.8.0.110 141556 username barzegar 141556 mac 141556 bytes_out 0 141556 bytes_in 0 141556 station_ip 5.119.21.255 141556 port 225 141556 unique_id port 141556 remote_ip 10.8.1.174 141557 username aminvpn 141557 mac 141557 bytes_out 0 141557 bytes_in 0 141557 station_ip 5.119.94.12 141557 port 373 141557 unique_id port 141557 remote_ip 10.8.0.14 141562 username aminvpn 141562 mac 141562 bytes_out 0 141562 bytes_in 0 141562 station_ip 5.119.94.12 141562 port 432 141562 unique_id port 141562 remote_ip 10.8.0.14 141565 username barzegar 141565 mac 141565 bytes_out 0 141565 bytes_in 0 141565 station_ip 5.119.21.255 141565 port 225 141565 unique_id port 141565 remote_ip 10.8.1.174 141569 username aminvpn 141569 mac 141569 bytes_out 0 141569 bytes_in 0 141569 station_ip 83.122.21.54 141569 port 413 141569 unique_id port 141569 remote_ip 10.8.0.14 141571 username hashtadani3 141571 mac 141571 bytes_out 0 141561 unique_id port 141561 remote_ip 10.8.0.14 141564 username moradi 141564 mac 141564 bytes_out 0 141564 bytes_in 0 141564 station_ip 37.129.119.225 141564 port 431 141564 unique_id port 141564 remote_ip 10.8.0.250 141567 username jafari 141567 kill_reason Another user logged on this global unique id 141567 mac 141567 bytes_out 0 141567 bytes_in 0 141567 station_ip 37.137.5.7 141567 port 387 141567 unique_id port 141574 username aminvpn 141574 mac 141574 bytes_out 0 141574 bytes_in 0 141574 station_ip 5.119.94.12 141574 port 413 141574 unique_id port 141574 remote_ip 10.8.0.14 141578 username hashtadani3 141578 mac 141578 bytes_out 0 141578 bytes_in 0 141578 station_ip 37.129.67.30 141578 port 225 141578 unique_id port 141578 remote_ip 10.8.1.94 141579 username hashtadani3 141579 mac 141579 bytes_out 0 141579 bytes_in 0 141579 station_ip 37.129.67.30 141579 port 413 141579 unique_id port 141579 remote_ip 10.8.0.154 141582 username hashtadani3 141582 mac 141582 bytes_out 0 141582 bytes_in 0 141582 station_ip 37.129.67.30 141582 port 413 141582 unique_id port 141582 remote_ip 10.8.0.154 141584 username hashtadani3 141584 mac 141584 bytes_out 0 141584 bytes_in 0 141584 station_ip 37.129.67.30 141584 port 373 141584 unique_id port 141584 remote_ip 10.8.0.154 141589 username godarzi 141589 mac 141589 bytes_out 0 141589 bytes_in 0 141589 station_ip 5.120.3.215 141589 port 418 141589 unique_id port 141589 remote_ip 10.8.0.174 141590 username khademi 141590 kill_reason Another user logged on this global unique id 141590 mac 141590 bytes_out 0 141590 bytes_in 0 141590 station_ip 113.203.108.212 141590 port 379 141590 unique_id port 141591 username hashtadani3 141591 mac 141591 bytes_out 262048 141591 bytes_in 3094373 141591 station_ip 37.129.67.30 141591 port 373 141591 unique_id port 141591 remote_ip 10.8.0.154 141595 username aminvpn 141595 mac 141595 bytes_out 0 141595 bytes_in 0 141595 station_ip 5.119.94.12 141595 port 421 141595 unique_id port 141595 remote_ip 10.8.0.14 141600 username hashtadani3 141600 mac 141600 bytes_out 0 141600 bytes_in 0 141600 station_ip 37.129.67.30 141600 port 227 141600 unique_id port 141600 remote_ip 10.8.1.94 141602 username hashtadani3 141602 mac 141602 bytes_out 0 141602 bytes_in 0 141602 station_ip 37.129.67.30 141602 port 427 141602 unique_id port 141602 remote_ip 10.8.0.154 141609 username hashtadani3 141609 mac 141609 bytes_out 0 141609 bytes_in 0 141609 station_ip 37.129.67.30 141609 port 225 141609 unique_id port 141609 remote_ip 10.8.1.94 141611 username aminvpn 141611 mac 141611 bytes_out 54877 141611 bytes_in 77121 141611 station_ip 83.122.67.186 141611 port 373 141611 unique_id port 141611 remote_ip 10.8.0.14 141613 username forozandeh1 141613 mac 141613 bytes_out 1278575 141613 bytes_in 14730052 141613 station_ip 37.129.244.125 141613 port 421 141613 unique_id port 141613 remote_ip 10.8.0.130 141622 username forozandeh1 141622 mac 141622 bytes_out 813860 141622 bytes_in 7378783 141622 station_ip 37.129.244.125 141622 port 373 141622 unique_id port 141622 remote_ip 10.8.0.130 141624 username barzegar 141624 mac 141624 bytes_out 0 141624 bytes_in 0 141624 station_ip 5.119.21.255 141624 port 225 141624 unique_id port 141624 remote_ip 10.8.1.174 141627 username hashtadani3 141627 mac 141627 bytes_out 1340721 141627 bytes_in 21791244 141627 station_ip 37.129.67.30 141627 port 418 141627 unique_id port 141563 unique_id port 141563 remote_ip 10.8.0.130 141566 username godarzi 141566 mac 141566 bytes_out 0 141566 bytes_in 0 141566 station_ip 5.120.3.215 141566 port 421 141566 unique_id port 141566 remote_ip 10.8.0.174 141568 username godarzi 141568 mac 141568 bytes_out 991697 141568 bytes_in 13361678 141568 station_ip 5.120.3.215 141568 port 421 141568 unique_id port 141568 remote_ip 10.8.0.174 141570 username hashtadani3 141570 mac 141570 bytes_out 2922871 141570 bytes_in 39033798 141570 station_ip 37.129.67.30 141570 port 418 141570 unique_id port 141570 remote_ip 10.8.0.154 141573 username hashtadani3 141573 mac 141573 bytes_out 4478 141573 bytes_in 7285 141573 station_ip 37.129.67.30 141573 port 225 141573 unique_id port 141573 remote_ip 10.8.1.94 141575 username hashtadani3 141575 mac 141575 bytes_out 0 141575 bytes_in 0 141575 station_ip 37.129.67.30 141575 port 225 141575 unique_id port 141575 remote_ip 10.8.1.94 141577 username barzegar 141577 mac 141577 bytes_out 0 141577 bytes_in 0 141577 station_ip 5.119.21.255 141577 port 226 141577 unique_id port 141577 remote_ip 10.8.1.174 141580 username hashtadani3 141580 mac 141580 bytes_out 0 141580 bytes_in 0 141580 station_ip 37.129.67.30 141580 port 413 141580 unique_id port 141580 remote_ip 10.8.0.154 141581 username meysam 141581 mac 141581 bytes_out 0 141581 bytes_in 0 141581 station_ip 188.159.254.216 141581 port 427 141581 unique_id port 141581 remote_ip 10.8.0.110 141586 username hashtadani3 141586 mac 141586 bytes_out 0 141586 bytes_in 0 141586 station_ip 37.129.67.30 141586 port 373 141586 unique_id port 141586 remote_ip 10.8.0.154 141592 username hashtadani3 141592 mac 141592 bytes_out 0 141592 bytes_in 0 141592 station_ip 37.129.67.30 141592 port 373 141592 unique_id port 141592 remote_ip 10.8.0.154 141594 username hashtadani3 141594 mac 141594 bytes_out 0 141594 bytes_in 0 141594 station_ip 37.129.67.30 141594 port 373 141594 unique_id port 141594 remote_ip 10.8.0.154 141598 username hashtadani3 141598 mac 141598 bytes_out 0 141598 bytes_in 0 141598 station_ip 37.129.67.30 141598 port 413 141598 unique_id port 141598 remote_ip 10.8.0.154 141599 username hashtadani3 141599 mac 141599 bytes_out 0 141599 bytes_in 0 141599 station_ip 37.129.67.30 141599 port 413 141599 unique_id port 141599 remote_ip 10.8.0.154 141601 username kalantary 141601 mac 141601 bytes_out 0 141601 bytes_in 0 141601 station_ip 83.123.87.133 141601 port 418 141601 unique_id port 141601 remote_ip 10.8.0.98 141603 username aminvpn 141603 unique_id port 141603 terminate_cause Lost-Carrier 141603 bytes_out 658723 141603 bytes_in 5772804 141603 station_ip 5.233.49.34 141603 port 15730728 141603 nas_port_type Virtual 141603 remote_ip 5.5.5.148 141605 username barzegar 141605 mac 141605 bytes_out 9634 141605 bytes_in 11635 141605 station_ip 5.119.21.255 141605 port 225 141605 unique_id port 141605 remote_ip 10.8.1.174 141606 username vanila 141606 mac 141606 bytes_out 0 141606 bytes_in 0 141606 station_ip 37.129.107.208 141606 port 413 141606 unique_id port 141606 remote_ip 10.8.0.178 141607 username barzegar 141607 mac 141607 bytes_out 0 141607 bytes_in 0 141607 station_ip 5.119.21.255 141607 port 427 141607 unique_id port 141607 remote_ip 10.8.0.234 141619 username vanila 141619 mac 141619 bytes_out 0 141619 bytes_in 0 141619 station_ip 37.129.107.208 141619 port 413 141619 unique_id port 141571 bytes_in 0 141571 station_ip 37.129.67.30 141571 port 225 141571 unique_id port 141571 remote_ip 10.8.1.94 141572 username aminvpn 141572 kill_reason Maximum check online fails reached 141572 mac 141572 bytes_out 0 141572 bytes_in 0 141572 station_ip 83.122.21.54 141572 port 431 141572 unique_id port 141576 username hashtadani3 141576 mac 141576 bytes_out 0 141576 bytes_in 0 141576 station_ip 37.129.67.30 141576 port 413 141576 unique_id port 141576 remote_ip 10.8.0.154 141583 username mohammadjavad 141583 mac 141583 bytes_out 0 141583 bytes_in 0 141583 station_ip 37.129.201.165 141583 port 373 141583 unique_id port 141583 remote_ip 10.8.0.142 141585 username hashtadani3 141585 mac 141585 bytes_out 0 141585 bytes_in 0 141585 station_ip 37.129.67.30 141585 port 373 141585 unique_id port 141585 remote_ip 10.8.0.154 141587 username hashtadani3 141587 mac 141587 bytes_out 0 141587 bytes_in 0 141587 station_ip 37.129.67.30 141587 port 373 141587 unique_id port 141587 remote_ip 10.8.0.154 141588 username hashtadani3 141588 mac 141588 bytes_out 0 141588 bytes_in 0 141588 station_ip 37.129.67.30 141588 port 373 141588 unique_id port 141588 remote_ip 10.8.0.154 141593 username aminvpn 141593 mac 141593 bytes_out 870393 141593 bytes_in 8034784 141593 station_ip 83.122.67.186 141593 port 413 141593 unique_id port 141593 remote_ip 10.8.0.14 141596 username hashtadani3 141596 mac 141596 bytes_out 0 141596 bytes_in 0 141596 station_ip 37.129.67.30 141596 port 225 141596 unique_id port 141596 remote_ip 10.8.1.94 141597 username hashtadani3 141597 mac 141597 bytes_out 0 141597 bytes_in 0 141597 station_ip 37.129.67.30 141597 port 413 141597 unique_id port 141597 remote_ip 10.8.0.154 141604 username hashtadani3 141604 kill_reason Maximum check online fails reached 141604 mac 141604 bytes_out 0 141604 bytes_in 0 141604 station_ip 37.129.67.30 141604 port 226 141604 unique_id port 141608 username hashtadani3 141608 mac 141608 bytes_out 0 141608 bytes_in 0 141608 station_ip 37.129.67.30 141608 port 418 141608 unique_id port 141608 remote_ip 10.8.0.154 141610 username hashtadani3 141610 mac 141610 bytes_out 0 141610 bytes_in 0 141610 station_ip 37.129.67.30 141610 port 418 141610 unique_id port 141610 remote_ip 10.8.0.154 141612 username aminvpn 141612 mac 141612 bytes_out 0 141612 bytes_in 0 141612 station_ip 5.119.94.12 141612 port 427 141612 unique_id port 141612 remote_ip 10.8.0.14 141614 username barzegar 141614 mac 141614 bytes_out 0 141614 bytes_in 0 141614 station_ip 5.119.21.255 141614 port 432 141614 unique_id port 141614 remote_ip 10.8.0.234 141615 username barzegar 141615 mac 141615 bytes_out 0 141615 bytes_in 0 141615 station_ip 5.119.21.255 141615 port 421 141615 unique_id port 141615 remote_ip 10.8.0.234 141616 username vanila 141616 mac 141616 bytes_out 0 141616 bytes_in 0 141616 station_ip 37.129.107.208 141616 port 413 141616 unique_id port 141616 remote_ip 10.8.0.178 141617 username barzegar 141617 mac 141617 bytes_out 0 141617 bytes_in 0 141617 station_ip 5.119.21.255 141617 port 433 141617 unique_id port 141617 remote_ip 10.8.0.234 141618 username barzegar 141618 mac 141618 bytes_out 0 141618 bytes_in 0 141618 station_ip 5.119.21.255 141618 port 225 141618 unique_id port 141618 remote_ip 10.8.1.174 141620 username sabaghnezhad 141620 mac 141620 bytes_out 3483345 141620 bytes_in 16083817 141620 station_ip 5.213.151.163 141619 remote_ip 10.8.0.178 141621 username jafari 141621 kill_reason Another user logged on this global unique id 141621 mac 141621 bytes_out 0 141621 bytes_in 0 141621 station_ip 37.137.5.7 141621 port 387 141621 unique_id port 141626 username aminvpn 141626 mac 141626 bytes_out 0 141626 bytes_in 0 141626 station_ip 5.119.94.12 141626 port 413 141626 unique_id port 141626 remote_ip 10.8.0.14 141630 username hashtadani3 141630 mac 141630 bytes_out 0 141630 bytes_in 0 141630 station_ip 5.202.23.155 141630 port 416 141630 unique_id port 141630 remote_ip 10.8.0.154 141636 username hashtadani3 141636 mac 141636 bytes_out 0 141636 bytes_in 0 141636 station_ip 5.202.23.155 141636 port 373 141636 unique_id port 141636 remote_ip 10.8.0.154 141639 username kalantary 141639 mac 141639 bytes_out 180925 141639 bytes_in 281690 141639 station_ip 83.123.51.141 141639 port 418 141639 unique_id port 141639 remote_ip 10.8.0.98 141640 username barzegar 141640 mac 141640 bytes_out 0 141640 bytes_in 0 141640 station_ip 5.119.21.255 141640 port 416 141640 unique_id port 141640 remote_ip 10.8.0.234 141641 username hashtadani3 141641 mac 141641 bytes_out 0 141641 bytes_in 0 141641 station_ip 5.202.23.155 141641 port 434 141641 unique_id port 141641 remote_ip 10.8.0.154 141643 username jafari 141643 kill_reason Another user logged on this global unique id 141643 mac 141643 bytes_out 0 141643 bytes_in 0 141643 station_ip 37.137.5.7 141643 port 387 141643 unique_id port 141644 username aminvpn 141644 mac 141644 bytes_out 8417 141644 bytes_in 14018 141644 station_ip 83.122.67.186 141644 port 421 141644 unique_id port 141644 remote_ip 10.8.0.14 141647 username aminvpn 141647 mac 141647 bytes_out 0 141647 bytes_in 0 141647 station_ip 5.119.94.12 141647 port 434 141647 unique_id port 141647 remote_ip 10.8.0.14 141658 username barzegar 141658 mac 141658 bytes_out 0 141658 bytes_in 0 141658 station_ip 5.119.21.255 141658 port 225 141658 unique_id port 141658 remote_ip 10.8.1.174 141661 username houshang 141661 mac 141661 bytes_out 521952 141661 bytes_in 2239162 141661 station_ip 5.120.52.140 141661 port 373 141661 unique_id port 141661 remote_ip 10.8.0.22 141663 username malekpoir 141663 kill_reason Another user logged on this global unique id 141663 mac 141663 bytes_out 0 141663 bytes_in 0 141663 station_ip 5.119.229.8 141663 port 433 141663 unique_id port 141665 username hashtadani3 141665 mac 141665 bytes_out 0 141665 bytes_in 0 141665 station_ip 5.202.23.155 141665 port 227 141665 unique_id port 141665 remote_ip 10.8.1.94 141666 username aminvpn 141666 mac 141666 bytes_out 40237 141666 bytes_in 69568 141666 station_ip 83.122.67.186 141666 port 416 141666 unique_id port 141666 remote_ip 10.8.0.14 141668 username malekpoir 141668 kill_reason Another user logged on this global unique id 141668 mac 141668 bytes_out 0 141668 bytes_in 0 141668 station_ip 5.119.229.8 141668 port 433 141668 unique_id port 141671 username meysam 141671 mac 141671 bytes_out 0 141671 bytes_in 0 141671 station_ip 188.158.50.130 141671 port 418 141671 unique_id port 141671 remote_ip 10.8.0.110 141672 username hashtadani3 141672 kill_reason Maximum check online fails reached 141672 mac 141672 bytes_out 0 141672 bytes_in 0 141672 station_ip 5.202.23.155 141672 port 421 141672 unique_id port 141684 username hashtadani3 141684 mac 141684 bytes_out 0 141684 bytes_in 0 141684 station_ip 5.202.23.155 141684 port 225 141684 unique_id port 141620 port 416 141620 unique_id port 141620 remote_ip 10.8.0.186 141623 username moradi 141623 mac 141623 bytes_out 0 141623 bytes_in 0 141623 station_ip 37.129.102.253 141623 port 432 141623 unique_id port 141623 remote_ip 10.8.0.250 141625 username aminvpn 141625 mac 141625 bytes_out 23459 141625 bytes_in 26876 141625 station_ip 83.122.67.186 141625 port 421 141625 unique_id port 141625 remote_ip 10.8.0.14 141628 username barzegar 141628 mac 141628 bytes_out 0 141628 bytes_in 0 141628 station_ip 5.119.21.255 141628 port 225 141628 unique_id port 141628 remote_ip 10.8.1.174 141632 username sedighe 141632 mac 141632 bytes_out 0 141632 bytes_in 0 141632 station_ip 37.129.19.97 141632 port 433 141632 unique_id port 141632 remote_ip 10.8.0.146 141633 username mohammadjavad 141633 mac 141633 bytes_out 0 141633 bytes_in 0 141633 station_ip 113.203.4.187 141633 port 373 141633 unique_id port 141633 remote_ip 10.8.0.142 141635 username hashtadani3 141635 mac 141635 bytes_out 0 141635 bytes_in 0 141635 station_ip 5.202.23.155 141635 port 225 141635 unique_id port 141635 remote_ip 10.8.1.94 141638 username barzegar 141638 mac 141638 bytes_out 0 141638 bytes_in 0 141638 station_ip 5.119.21.255 141638 port 416 141638 unique_id port 141638 remote_ip 10.8.0.234 141646 username hashtadani3 141646 mac 141646 bytes_out 0 141646 bytes_in 0 141646 station_ip 5.202.23.155 141646 port 225 141646 unique_id port 141646 remote_ip 10.8.1.94 141649 username Mahin 141649 mac 141649 bytes_out 0 141649 bytes_in 0 141649 station_ip 5.119.83.161 141649 port 220 141649 unique_id port 141649 remote_ip 10.8.1.186 141650 username hashtadani3 141650 kill_reason Maximum check online fails reached 141650 mac 141650 bytes_out 0 141650 bytes_in 0 141650 station_ip 5.202.23.155 141650 port 387 141650 unique_id port 141653 username meysam 141653 mac 141653 bytes_out 0 141653 bytes_in 0 141653 station_ip 188.159.254.216 141653 port 432 141653 unique_id port 141655 username malekpoir 141655 kill_reason Another user logged on this global unique id 141655 mac 141655 bytes_out 0 141655 bytes_in 0 141655 station_ip 5.119.229.8 141655 port 433 141655 unique_id port 141655 remote_ip 10.8.0.58 141662 username hashtadani3 141662 mac 141662 bytes_out 0 141662 bytes_in 0 141662 station_ip 5.202.23.155 141662 port 373 141662 unique_id port 141662 remote_ip 10.8.0.154 141664 username barzegar 141664 mac 141664 bytes_out 0 141664 bytes_in 0 141664 station_ip 5.119.21.255 141664 port 225 141664 unique_id port 141664 remote_ip 10.8.1.174 141670 username Mahin 141670 mac 141670 bytes_out 56488 141670 bytes_in 108176 141670 station_ip 5.119.83.161 141670 port 220 141670 unique_id port 141670 remote_ip 10.8.1.186 141674 username barzegar 141674 mac 141674 bytes_out 6027 141674 bytes_in 14768 141674 station_ip 5.119.21.255 141674 port 416 141674 unique_id port 141674 remote_ip 10.8.0.234 141676 username malekpoir 141676 kill_reason Another user logged on this global unique id 141676 mac 141676 bytes_out 0 141676 bytes_in 0 141676 station_ip 5.119.229.8 141676 port 433 141676 unique_id port 141677 username hashtadani3 141677 mac 141677 bytes_out 0 141677 bytes_in 0 141677 station_ip 5.202.23.155 141677 port 416 141677 unique_id port 141677 remote_ip 10.8.0.154 141679 username hashtadani3 141679 mac 141679 bytes_out 1644 141679 bytes_in 4702 141679 station_ip 5.202.23.155 141679 port 435 141679 unique_id port 141627 remote_ip 10.8.0.154 141629 username hashtadani3 141629 mac 141629 bytes_out 0 141629 bytes_in 0 141629 station_ip 37.129.67.30 141629 port 416 141629 unique_id port 141629 remote_ip 10.8.0.154 141631 username hashtadani3 141631 mac 141631 bytes_out 0 141631 bytes_in 0 141631 station_ip 5.202.23.155 141631 port 418 141631 unique_id port 141631 remote_ip 10.8.0.154 141634 username barzegar 141634 mac 141634 bytes_out 0 141634 bytes_in 0 141634 station_ip 5.119.21.255 141634 port 416 141634 unique_id port 141634 remote_ip 10.8.0.234 141637 username meysam 141637 kill_reason Another user logged on this global unique id 141637 mac 141637 bytes_out 0 141637 bytes_in 0 141637 station_ip 188.159.254.216 141637 port 432 141637 unique_id port 141637 remote_ip 10.8.0.110 141642 username hamidsalari 141642 kill_reason Another user logged on this global unique id 141642 mac 141642 bytes_out 0 141642 bytes_in 0 141642 station_ip 5.119.200.40 141642 port 377 141642 unique_id port 141642 remote_ip 10.8.0.222 141645 username barzegar 141645 mac 141645 bytes_out 3172 141645 bytes_in 5481 141645 station_ip 5.119.21.255 141645 port 418 141645 unique_id port 141645 remote_ip 10.8.0.234 141648 username jafari 141648 mac 141648 bytes_out 0 141648 bytes_in 0 141648 station_ip 37.137.5.7 141648 port 387 141648 unique_id port 141651 username hashtadani3 141651 mac 141651 bytes_out 0 141651 bytes_in 0 141651 station_ip 5.202.23.155 141651 port 418 141651 unique_id port 141651 remote_ip 10.8.0.154 141652 username forozandeh1 141652 mac 141652 bytes_out 0 141652 bytes_in 0 141652 station_ip 83.123.221.16 141652 port 416 141652 unique_id port 141652 remote_ip 10.8.0.130 141654 username hashtadani3 141654 mac 141654 bytes_out 0 141654 bytes_in 0 141654 station_ip 5.202.23.155 141654 port 416 141654 unique_id port 141654 remote_ip 10.8.0.154 141656 username barzegar 141656 mac 141656 bytes_out 666129 141656 bytes_in 309603 141656 station_ip 5.119.21.255 141656 port 225 141656 unique_id port 141656 remote_ip 10.8.1.174 141657 username hashtadani3 141657 mac 141657 bytes_out 25745 141657 bytes_in 33424 141657 station_ip 5.202.23.155 141657 port 418 141657 unique_id port 141657 remote_ip 10.8.0.154 141659 username godarzi 141659 kill_reason Another user logged on this global unique id 141659 mac 141659 bytes_out 0 141659 bytes_in 0 141659 station_ip 5.202.134.253 141659 port 427 141659 unique_id port 141659 remote_ip 10.8.0.174 141660 username hashtadani3 141660 mac 141660 bytes_out 0 141660 bytes_in 0 141660 station_ip 5.202.23.155 141660 port 418 141660 unique_id port 141660 remote_ip 10.8.0.154 141667 username aminvpn 141667 mac 141667 bytes_out 0 141667 bytes_in 0 141667 station_ip 5.119.94.12 141667 port 418 141667 unique_id port 141667 remote_ip 10.8.0.14 141669 username aminvpn 141669 mac 141669 bytes_out 0 141669 bytes_in 0 141669 station_ip 5.119.94.12 141669 port 421 141669 unique_id port 141669 remote_ip 10.8.0.14 141673 username aminvpn 141673 unique_id port 141673 terminate_cause Lost-Carrier 141673 bytes_out 2264513 141673 bytes_in 7438400 141673 station_ip 5.233.49.34 141673 port 15730729 141673 nas_port_type Virtual 141673 remote_ip 5.5.5.152 141675 username hashtadani3 141675 kill_reason Maximum check online fails reached 141675 mac 141675 bytes_out 0 141675 bytes_in 0 141675 station_ip 5.202.23.155 141675 port 434 141675 unique_id port 141678 username rajaei 141678 kill_reason Another user logged on this global unique id 141678 mac 141678 bytes_out 0 141678 bytes_in 0 141678 station_ip 89.32.102.73 141678 port 373 141678 unique_id port 141678 remote_ip 10.8.0.34 141680 username barzegar 141680 mac 141680 bytes_out 0 141680 bytes_in 0 141680 station_ip 5.119.21.255 141680 port 436 141680 unique_id port 141680 remote_ip 10.8.0.234 141682 username barzegar 141682 mac 141682 bytes_out 0 141682 bytes_in 0 141682 station_ip 5.119.21.255 141682 port 438 141682 unique_id port 141682 remote_ip 10.8.0.234 141689 username aminvpn 141689 mac 141689 bytes_out 0 141689 bytes_in 0 141689 station_ip 5.119.94.12 141689 port 418 141689 unique_id port 141689 remote_ip 10.8.0.14 141694 username malekpoir 141694 kill_reason Another user logged on this global unique id 141694 mac 141694 bytes_out 0 141694 bytes_in 0 141694 station_ip 5.119.229.8 141694 port 433 141694 unique_id port 141695 username barzegar 141695 kill_reason Another user logged on this global unique id 141695 mac 141695 bytes_out 0 141695 bytes_in 0 141695 station_ip 5.119.21.255 141695 port 373 141695 unique_id port 141698 username godarzi 141698 mac 141698 bytes_out 0 141698 bytes_in 0 141698 station_ip 5.202.134.253 141698 port 427 141698 unique_id port 141701 username malekpoir 141701 kill_reason Another user logged on this global unique id 141701 mac 141701 bytes_out 0 141701 bytes_in 0 141701 station_ip 5.119.229.8 141701 port 433 141701 unique_id port 141704 username aminvpn 141704 mac 141704 bytes_out 0 141704 bytes_in 0 141704 station_ip 5.119.94.12 141704 port 435 141704 unique_id port 141704 remote_ip 10.8.0.14 141707 username hashtadani3 141707 mac 141707 bytes_out 0 141707 bytes_in 0 141707 station_ip 5.202.23.155 141707 port 373 141707 unique_id port 141707 remote_ip 10.8.0.154 141708 username jafari 141708 mac 141708 bytes_out 2356303 141708 bytes_in 11045045 141708 station_ip 37.137.5.7 141708 port 427 141708 unique_id port 141708 remote_ip 10.8.0.242 141713 username mohammadmahdi 141713 mac 141713 bytes_out 3306003 141713 bytes_in 39762621 141713 station_ip 5.119.13.214 141713 port 416 141713 unique_id port 141713 remote_ip 10.8.0.54 141720 username amir 141720 mac 141720 bytes_out 0 141720 bytes_in 0 141720 station_ip 46.225.209.132 141720 port 416 141720 unique_id port 141720 remote_ip 10.8.0.50 141727 username hashtadani3 141727 mac 141727 bytes_out 1644 141727 bytes_in 5023 141727 station_ip 5.202.23.155 141727 port 438 141727 unique_id port 141727 remote_ip 10.8.0.154 141729 username kalantary 141729 mac 141729 bytes_out 110158 141729 bytes_in 183424 141729 station_ip 83.123.21.37 141729 port 373 141729 unique_id port 141729 remote_ip 10.8.0.98 141735 username aminvpn 141735 mac 141735 bytes_out 0 141735 bytes_in 0 141735 station_ip 5.119.94.12 141735 port 438 141735 unique_id port 141735 remote_ip 10.8.0.14 141741 username hashtadani3 141741 mac 141741 bytes_out 0 141741 bytes_in 0 141741 station_ip 5.202.23.155 141741 port 440 141741 unique_id port 141741 remote_ip 10.8.0.154 141745 username hashtadani3 141745 mac 141745 bytes_out 0 141745 bytes_in 0 141745 station_ip 5.202.23.155 141745 port 441 141745 unique_id port 141745 remote_ip 10.8.0.154 141748 username hashtadani3 141748 mac 141748 bytes_out 0 141748 bytes_in 0 141748 station_ip 83.122.125.231 141748 port 225 141748 unique_id port 141748 remote_ip 10.8.1.94 141755 username hashtadani3 141755 mac 141755 bytes_out 0 141755 bytes_in 0 141755 station_ip 83.122.125.231 141679 remote_ip 10.8.0.154 141681 username mohammadjavad 141681 mac 141681 bytes_out 193276 141681 bytes_in 1335495 141681 station_ip 37.129.219.72 141681 port 418 141681 unique_id port 141681 remote_ip 10.8.0.142 141683 username hashtadani3 141683 kill_reason Maximum check online fails reached 141683 mac 141683 bytes_out 0 141683 bytes_in 0 141683 station_ip 5.202.23.155 141683 port 437 141683 unique_id port 141685 username rajaei 141685 mac 141685 bytes_out 0 141685 bytes_in 0 141685 station_ip 89.32.102.73 141685 port 373 141685 unique_id port 141690 username forozandeh1 141690 mac 141690 bytes_out 273312 141690 bytes_in 857105 141690 station_ip 37.129.253.110 141690 port 373 141690 unique_id port 141690 remote_ip 10.8.0.130 141691 username hashtadani3 141691 kill_reason Maximum check online fails reached 141691 mac 141691 bytes_out 0 141691 bytes_in 0 141691 station_ip 5.202.23.155 141691 port 418 141691 unique_id port 141693 username hashtadani3 141693 mac 141693 bytes_out 0 141693 bytes_in 0 141693 station_ip 5.202.23.155 141693 port 373 141693 unique_id port 141693 remote_ip 10.8.0.154 141697 username hashtadani3 141697 mac 141697 bytes_out 0 141697 bytes_in 0 141697 station_ip 5.202.23.155 141697 port 373 141697 unique_id port 141697 remote_ip 10.8.0.154 141702 username hashtadani3 141702 mac 141702 bytes_out 0 141702 bytes_in 0 141702 station_ip 5.202.23.155 141702 port 373 141702 unique_id port 141702 remote_ip 10.8.0.154 141706 username hashtadani3 141706 mac 141706 bytes_out 0 141706 bytes_in 0 141706 station_ip 5.202.23.155 141706 port 373 141706 unique_id port 141709 username Mahin 141709 mac 141709 bytes_out 0 141709 bytes_in 0 141709 station_ip 5.119.83.161 141709 port 220 141709 unique_id port 141709 remote_ip 10.8.1.186 141710 username hashtadani3 141710 mac 141710 bytes_out 0 141710 bytes_in 0 141710 station_ip 5.202.23.155 141710 port 220 141710 unique_id port 141710 remote_ip 10.8.1.94 141711 username kalantary 141711 mac 141711 bytes_out 1931238 141711 bytes_in 26010643 141711 station_ip 83.123.21.37 141711 port 436 141711 unique_id port 141711 remote_ip 10.8.0.98 141715 username aminvpn 141715 mac 141715 bytes_out 33388 141715 bytes_in 66086 141715 station_ip 83.122.67.186 141715 port 373 141715 unique_id port 141715 remote_ip 10.8.0.14 141718 username yaghobi 141718 mac 141718 bytes_out 0 141718 bytes_in 0 141718 station_ip 83.123.36.205 141718 port 227 141718 unique_id port 141719 username houshang 141719 mac 141719 bytes_out 1345441 141719 bytes_in 21540331 141719 station_ip 5.120.52.140 141719 port 435 141719 unique_id port 141719 remote_ip 10.8.0.22 141721 username hashtadani3 141721 mac 141721 bytes_out 7360 141721 bytes_in 8871 141721 station_ip 5.202.23.155 141721 port 373 141721 unique_id port 141721 remote_ip 10.8.0.154 141722 username hashtadani3 141722 mac 141722 bytes_out 0 141722 bytes_in 0 141722 station_ip 5.202.23.155 141722 port 373 141722 unique_id port 141722 remote_ip 10.8.0.154 141724 username amir 141724 kill_reason Maximum check online fails reached 141724 mac 141724 bytes_out 0 141724 bytes_in 0 141724 station_ip 46.225.209.132 141724 port 220 141724 unique_id port 141725 username Mahin 141725 mac 141725 bytes_out 9788 141725 bytes_in 14718 141725 station_ip 5.119.83.161 141725 port 427 141725 unique_id port 141725 remote_ip 10.8.0.158 141731 username khademi 141731 kill_reason Another user logged on this global unique id 141731 mac 141684 remote_ip 10.8.1.94 141686 username hashtadani3 141686 mac 141686 bytes_out 0 141686 bytes_in 0 141686 station_ip 5.202.23.155 141686 port 225 141686 unique_id port 141686 remote_ip 10.8.1.94 141687 username malekpoir 141687 kill_reason Another user logged on this global unique id 141687 mac 141687 bytes_out 0 141687 bytes_in 0 141687 station_ip 5.119.229.8 141687 port 433 141687 unique_id port 141688 username aminvpn 141688 mac 141688 bytes_out 0 141688 bytes_in 0 141688 station_ip 83.122.67.186 141688 port 432 141688 unique_id port 141688 remote_ip 10.8.0.14 141692 username hashtadani3 141692 mac 141692 bytes_out 0 141692 bytes_in 0 141692 station_ip 5.202.23.155 141692 port 373 141692 unique_id port 141692 remote_ip 10.8.0.154 141696 username barzegar 141696 kill_reason Another user logged on this global unique id 141696 mac 141696 bytes_out 0 141696 bytes_in 0 141696 station_ip 5.119.21.255 141696 port 373 141696 unique_id port 141699 username mahdiyehalizadeh 141699 mac 141699 bytes_out 878169 141699 bytes_in 13943846 141699 station_ip 83.123.209.27 141699 port 435 141699 unique_id port 141699 remote_ip 10.8.0.82 141700 username hashtadani3 141700 mac 141700 bytes_out 0 141700 bytes_in 0 141700 station_ip 5.202.23.155 141700 port 373 141700 unique_id port 141700 remote_ip 10.8.0.154 141703 username aminvpn 141703 mac 141703 bytes_out 37272 141703 bytes_in 66237 141703 station_ip 83.122.67.186 141703 port 432 141703 unique_id port 141703 remote_ip 10.8.0.14 141705 username hashtadani3 141705 kill_reason Another user logged on this global unique id 141705 mac 141705 bytes_out 0 141705 bytes_in 0 141705 station_ip 5.202.23.155 141705 port 373 141705 unique_id port 141705 remote_ip 10.8.0.154 141712 username yaghobi 141712 kill_reason Another user logged on this global unique id 141712 mac 141712 bytes_out 0 141712 bytes_in 0 141712 station_ip 83.123.36.205 141712 port 227 141712 unique_id port 141712 remote_ip 10.8.1.118 141714 username hashtadani3 141714 mac 141714 bytes_out 733372 141714 bytes_in 2107393 141714 station_ip 5.202.23.155 141714 port 427 141714 unique_id port 141714 remote_ip 10.8.0.154 141716 username aminvpn 141716 mac 141716 bytes_out 0 141716 bytes_in 0 141716 station_ip 5.119.94.12 141716 port 416 141716 unique_id port 141716 remote_ip 10.8.0.14 141717 username amir 141717 mac 141717 bytes_out 0 141717 bytes_in 0 141717 station_ip 46.225.209.132 141717 port 225 141717 unique_id port 141717 remote_ip 10.8.1.22 141723 username godarzi 141723 kill_reason Another user logged on this global unique id 141723 mac 141723 bytes_out 0 141723 bytes_in 0 141723 station_ip 5.202.134.253 141723 port 432 141723 unique_id port 141723 remote_ip 10.8.0.174 141726 username forozandeh1 141726 mac 141726 bytes_out 0 141726 bytes_in 0 141726 station_ip 83.122.85.136 141726 port 416 141726 unique_id port 141726 remote_ip 10.8.0.130 141728 username hashtadani3 141728 mac 141728 bytes_out 0 141728 bytes_in 0 141728 station_ip 5.202.23.155 141728 port 225 141728 unique_id port 141728 remote_ip 10.8.1.94 141730 username hashtadani3 141730 mac 141730 bytes_out 0 141730 bytes_in 0 141730 station_ip 5.202.23.155 141730 port 416 141730 unique_id port 141730 remote_ip 10.8.0.154 141733 username hashtadani3 141733 kill_reason Maximum check online fails reached 141733 mac 141733 bytes_out 0 141733 bytes_in 0 141733 station_ip 5.202.23.155 141733 port 416 141733 unique_id port 141734 username aminvpn 141734 mac 141734 bytes_out 0 141731 bytes_out 0 141731 bytes_in 0 141731 station_ip 113.203.108.212 141731 port 379 141731 unique_id port 141732 username hashtadani3 141732 mac 141732 bytes_out 0 141732 bytes_in 0 141732 station_ip 5.202.23.155 141732 port 416 141732 unique_id port 141732 remote_ip 10.8.0.154 141736 username hashtadani3 141736 kill_reason Maximum check online fails reached 141736 mac 141736 bytes_out 0 141736 bytes_in 0 141736 station_ip 5.202.23.155 141736 port 427 141736 unique_id port 141737 username hashtadani3 141737 mac 141737 bytes_out 0 141737 bytes_in 0 141737 station_ip 5.202.23.155 141737 port 438 141737 unique_id port 141737 remote_ip 10.8.0.154 141738 username mohammadmahdi 141738 kill_reason Another user logged on this global unique id 141738 mac 141738 bytes_out 0 141738 bytes_in 0 141738 station_ip 5.119.13.214 141738 port 436 141738 unique_id port 141738 remote_ip 10.8.0.54 141742 username hashtadani3 141742 mac 141742 bytes_out 0 141742 bytes_in 0 141742 station_ip 5.202.23.155 141742 port 440 141742 unique_id port 141742 remote_ip 10.8.0.154 141749 username aminvpn 141749 mac 141749 bytes_out 0 141749 bytes_in 0 141749 station_ip 5.119.94.12 141749 port 439 141749 unique_id port 141749 remote_ip 10.8.0.14 141752 username hashtadani3 141752 mac 141752 bytes_out 0 141752 bytes_in 0 141752 station_ip 83.122.125.231 141752 port 414 141752 unique_id port 141752 remote_ip 10.8.0.154 141754 username hashtadani3 141754 mac 141754 bytes_out 0 141754 bytes_in 0 141754 station_ip 83.122.125.231 141754 port 225 141754 unique_id port 141754 remote_ip 10.8.1.94 141758 username hashtadani3 141758 kill_reason Maximum check online fails reached 141758 mac 141758 bytes_out 0 141758 bytes_in 0 141758 station_ip 83.122.125.231 141758 port 435 141758 unique_id port 141760 username hashtadani3 141760 mac 141760 bytes_out 0 141760 bytes_in 0 141760 station_ip 83.122.125.231 141760 port 439 141760 unique_id port 141760 remote_ip 10.8.0.154 141762 username hashtadani3 141762 mac 141762 bytes_out 2376 141762 bytes_in 4653 141762 station_ip 83.122.125.231 141762 port 379 141762 unique_id port 141762 remote_ip 10.8.0.154 141765 username hashtadani3 141765 mac 141765 bytes_out 0 141765 bytes_in 0 141765 station_ip 83.122.125.231 141765 port 439 141765 unique_id port 141765 remote_ip 10.8.0.154 141766 username hashtadani3 141766 mac 141766 bytes_out 0 141766 bytes_in 0 141766 station_ip 83.122.125.231 141766 port 225 141766 unique_id port 141766 remote_ip 10.8.1.94 141769 username hosseine 141769 mac 141769 bytes_out 0 141769 bytes_in 0 141769 station_ip 83.122.33.12 141769 port 413 141769 unique_id port 141771 username hashtadani3 141771 mac 141771 bytes_out 0 141771 bytes_in 0 141771 station_ip 83.122.125.231 141771 port 225 141771 unique_id port 141771 remote_ip 10.8.1.94 141776 username hashtadani3 141776 mac 141776 bytes_out 0 141776 bytes_in 0 141776 station_ip 83.122.125.231 141776 port 439 141776 unique_id port 141776 remote_ip 10.8.0.154 141778 username aminvpn 141778 mac 141778 bytes_out 48050 141778 bytes_in 33820 141778 station_ip 83.122.67.186 141778 port 414 141778 unique_id port 141778 remote_ip 10.8.0.14 141780 username Mahin 141780 mac 141780 bytes_out 61882 141780 bytes_in 63097 141780 station_ip 5.119.161.167 141780 port 379 141780 unique_id port 141780 remote_ip 10.8.0.158 141782 username hashtadani3 141782 mac 141782 bytes_out 0 141782 bytes_in 0 141734 bytes_in 0 141734 station_ip 83.122.67.186 141734 port 435 141734 unique_id port 141734 remote_ip 10.8.0.14 141739 username hashtadani3 141739 mac 141739 bytes_out 0 141739 bytes_in 0 141739 station_ip 5.202.23.155 141739 port 440 141739 unique_id port 141739 remote_ip 10.8.0.154 141740 username amir 141740 mac 141740 bytes_out 0 141740 bytes_in 0 141740 station_ip 46.225.209.132 141740 port 438 141740 unique_id port 141740 remote_ip 10.8.0.50 141743 username hashtadani3 141743 mac 141743 bytes_out 0 141743 bytes_in 0 141743 station_ip 5.202.23.155 141743 port 440 141743 unique_id port 141743 remote_ip 10.8.0.154 141744 username hosseine 141744 kill_reason Another user logged on this global unique id 141744 mac 141744 bytes_out 0 141744 bytes_in 0 141744 station_ip 83.122.33.12 141744 port 413 141744 unique_id port 141744 remote_ip 10.8.0.238 141746 username meysam 141746 mac 141746 bytes_out 0 141746 bytes_in 0 141746 station_ip 188.158.50.130 141746 port 439 141746 unique_id port 141746 remote_ip 10.8.0.110 141747 username aminvpn 141747 mac 141747 bytes_out 0 141747 bytes_in 0 141747 station_ip 83.122.67.186 141747 port 435 141747 unique_id port 141747 remote_ip 10.8.0.14 141750 username hashtadani3 141750 mac 141750 bytes_out 0 141750 bytes_in 0 141750 station_ip 5.202.23.155 141750 port 442 141750 unique_id port 141750 remote_ip 10.8.0.154 141751 username mosi 141751 mac 141751 bytes_out 0 141751 bytes_in 0 141751 station_ip 151.235.75.185 141751 port 414 141751 unique_id port 141753 username khademi 141753 mac 141753 bytes_out 0 141753 bytes_in 0 141753 station_ip 113.203.108.212 141753 port 379 141753 unique_id port 141768 username hashtadani3 141768 mac 141768 bytes_out 0 141768 bytes_in 0 141768 station_ip 83.122.125.231 141768 port 225 141768 unique_id port 141768 remote_ip 10.8.1.94 141770 username hashtadani3 141770 mac 141770 bytes_out 0 141770 bytes_in 0 141770 station_ip 83.122.125.231 141770 port 225 141770 unique_id port 141770 remote_ip 10.8.1.94 141772 username mohammadmahdi 141772 kill_reason Another user logged on this global unique id 141772 mac 141772 bytes_out 0 141772 bytes_in 0 141772 station_ip 5.119.13.214 141772 port 436 141772 unique_id port 141773 username hashtadani3 141773 mac 141773 bytes_out 0 141773 bytes_in 0 141773 station_ip 83.122.125.231 141773 port 439 141773 unique_id port 141773 remote_ip 10.8.0.154 141774 username hashtadani3 141774 mac 141774 bytes_out 0 141774 bytes_in 0 141774 station_ip 83.122.125.231 141774 port 225 141774 unique_id port 141774 remote_ip 10.8.1.94 141777 username hosseine 141777 mac 141777 bytes_out 166347 141777 bytes_in 2047794 141777 station_ip 83.122.33.12 141777 port 413 141777 unique_id port 141777 remote_ip 10.8.0.238 141779 username aminvpn 141779 mac 141779 bytes_out 0 141779 bytes_in 0 141779 station_ip 5.119.94.12 141779 port 439 141779 unique_id port 141779 remote_ip 10.8.0.14 141781 username hashtadani3 141781 mac 141781 bytes_out 2270 141781 bytes_in 4600 141781 station_ip 83.122.125.231 141781 port 413 141781 unique_id port 141781 remote_ip 10.8.0.154 141783 username hashtadani3 141783 mac 141783 bytes_out 0 141783 bytes_in 0 141783 station_ip 83.122.125.231 141783 port 379 141783 unique_id port 141783 remote_ip 10.8.0.154 141784 username godarzi 141784 mac 141784 bytes_out 0 141784 bytes_in 0 141784 station_ip 5.202.134.253 141784 port 432 141755 port 379 141755 unique_id port 141755 remote_ip 10.8.0.154 141756 username hashtadani3 141756 mac 141756 bytes_out 0 141756 bytes_in 0 141756 station_ip 83.122.125.231 141756 port 379 141756 unique_id port 141756 remote_ip 10.8.0.154 141757 username hashtadani3 141757 mac 141757 bytes_out 0 141757 bytes_in 0 141757 station_ip 83.122.125.231 141757 port 379 141757 unique_id port 141757 remote_ip 10.8.0.154 141759 username hashtadani3 141759 mac 141759 bytes_out 0 141759 bytes_in 0 141759 station_ip 83.122.125.231 141759 port 379 141759 unique_id port 141759 remote_ip 10.8.0.154 141761 username hamid.e 141761 unique_id port 141761 terminate_cause User-Request 141761 bytes_out 3163263 141761 bytes_in 47154806 141761 station_ip 37.27.22.128 141761 port 15730730 141761 nas_port_type Virtual 141761 remote_ip 5.5.5.153 141763 username vanila 141763 mac 141763 bytes_out 0 141763 bytes_in 0 141763 station_ip 37.129.31.164 141763 port 439 141763 unique_id port 141763 remote_ip 10.8.0.178 141764 username aminvpn 141764 unique_id port 141764 terminate_cause Lost-Carrier 141764 bytes_out 381384 141764 bytes_in 5288811 141764 station_ip 5.233.49.34 141764 port 15730732 141764 nas_port_type Virtual 141764 remote_ip 5.5.5.158 141767 username hashtadani3 141767 mac 141767 bytes_out 0 141767 bytes_in 0 141767 station_ip 83.122.125.231 141767 port 439 141767 unique_id port 141767 remote_ip 10.8.0.154 141775 username mohammadmahdi 141775 mac 141775 bytes_out 0 141775 bytes_in 0 141775 station_ip 5.119.13.214 141775 port 436 141775 unique_id port 141786 username hashtadani3 141786 mac 141786 bytes_out 0 141786 bytes_in 0 141786 station_ip 83.122.125.231 141786 port 379 141786 unique_id port 141786 remote_ip 10.8.0.154 141792 username hashtadani3 141792 mac 141792 bytes_out 1644 141792 bytes_in 3683 141792 station_ip 83.122.125.231 141792 port 379 141792 unique_id port 141792 remote_ip 10.8.0.154 141793 username hashtadani3 141793 kill_reason Maximum check online fails reached 141793 mac 141793 bytes_out 0 141793 bytes_in 0 141793 station_ip 83.122.125.231 141793 port 225 141793 unique_id port 141796 username aminvpn 141796 mac 141796 bytes_out 0 141796 bytes_in 0 141796 station_ip 5.119.94.12 141796 port 441 141796 unique_id port 141796 remote_ip 10.8.0.14 141797 username aminvpn 141797 unique_id port 141797 terminate_cause User-Request 141797 bytes_out 786095 141797 bytes_in 2976017 141797 station_ip 5.119.94.12 141797 port 15730734 141797 nas_port_type Virtual 141797 remote_ip 5.5.5.163 141802 username rajaei 141802 kill_reason Another user logged on this global unique id 141802 mac 141802 bytes_out 0 141802 bytes_in 0 141802 station_ip 89.32.102.73 141802 port 379 141802 unique_id port 141802 remote_ip 10.8.0.34 141804 username meysam 141804 kill_reason Another user logged on this global unique id 141804 mac 141804 bytes_out 0 141804 bytes_in 0 141804 station_ip 188.158.50.130 141804 port 432 141804 unique_id port 141804 remote_ip 10.8.0.110 141807 username houshang 141807 mac 141807 bytes_out 198381 141807 bytes_in 1029488 141807 station_ip 5.120.52.140 141807 port 439 141807 unique_id port 141807 remote_ip 10.8.0.22 141812 username aminvpn 141812 mac 141812 bytes_out 0 141812 bytes_in 0 141812 station_ip 5.119.94.12 141812 port 443 141812 unique_id port 141812 remote_ip 10.8.0.14 141814 username sedighe 141814 mac 141814 bytes_out 44310 141814 bytes_in 161615 141814 station_ip 83.123.132.172 141814 port 432 141814 unique_id port 141782 station_ip 83.122.125.231 141782 port 379 141782 unique_id port 141782 remote_ip 10.8.0.154 141785 username hashtadani3 141785 mac 141785 bytes_out 0 141785 bytes_in 0 141785 station_ip 83.122.125.231 141785 port 379 141785 unique_id port 141785 remote_ip 10.8.0.154 141788 username hashtadani3 141788 mac 141788 bytes_out 0 141788 bytes_in 0 141788 station_ip 83.122.125.231 141788 port 379 141788 unique_id port 141788 remote_ip 10.8.0.154 141789 username mohammadjavad 141789 mac 141789 bytes_out 0 141789 bytes_in 0 141789 station_ip 83.123.47.123 141789 port 441 141789 unique_id port 141789 remote_ip 10.8.0.142 141791 username hashtadani3 141791 kill_reason Maximum number of concurrent logins reached 141791 mac 141791 bytes_out 0 141791 bytes_in 0 141791 station_ip 83.122.125.231 141791 port 227 141791 unique_id port 141795 username aminvpn 141795 mac 141795 bytes_out 1730190 141795 bytes_in 15147901 141795 station_ip 83.122.67.186 141795 port 413 141795 unique_id port 141795 remote_ip 10.8.0.14 141798 username saeed9658 141798 mac 141798 bytes_out 0 141798 bytes_in 0 141798 station_ip 5.119.207.68 141798 port 440 141798 unique_id port 141798 remote_ip 10.8.0.62 141803 username saeed9658 141803 mac 141803 bytes_out 0 141803 bytes_in 0 141803 station_ip 5.119.207.68 141803 port 227 141803 unique_id port 141803 remote_ip 10.8.1.210 141806 username saeed9658 141806 mac 141806 bytes_out 0 141806 bytes_in 0 141806 station_ip 5.119.207.68 141806 port 443 141806 unique_id port 141806 remote_ip 10.8.0.62 141808 username meysam 141808 mac 141808 bytes_out 0 141808 bytes_in 0 141808 station_ip 188.158.50.130 141808 port 432 141808 unique_id port 141809 username forozandeh1 141809 mac 141809 bytes_out 342977 141809 bytes_in 1680246 141809 station_ip 37.129.126.132 141809 port 440 141809 unique_id port 141809 remote_ip 10.8.0.130 141817 username naeimeh 141817 mac 141817 bytes_out 0 141817 bytes_in 0 141817 station_ip 37.129.95.167 141817 port 227 141817 unique_id port 141817 remote_ip 10.8.1.206 141819 username saeed9658 141819 mac 141819 bytes_out 0 141819 bytes_in 0 141819 station_ip 5.119.207.68 141819 port 439 141819 unique_id port 141819 remote_ip 10.8.0.62 141820 username houshang 141820 mac 141820 bytes_out 0 141820 bytes_in 0 141820 station_ip 5.120.52.140 141820 port 379 141820 unique_id port 141820 remote_ip 10.8.0.22 141823 username rajaei 141823 kill_reason Another user logged on this global unique id 141823 mac 141823 bytes_out 0 141823 bytes_in 0 141823 station_ip 89.32.102.73 141823 port 432 141823 unique_id port 141823 remote_ip 10.8.0.34 141824 username malekpoir 141824 kill_reason Another user logged on this global unique id 141824 mac 141824 bytes_out 0 141824 bytes_in 0 141824 station_ip 5.119.229.8 141824 port 433 141824 unique_id port 141827 username aminvpn 141827 mac 141827 bytes_out 0 141827 bytes_in 0 141827 station_ip 5.119.94.12 141827 port 438 141827 unique_id port 141827 remote_ip 10.8.0.14 141831 username aminvpn 141831 mac 141831 bytes_out 0 141831 bytes_in 0 141831 station_ip 83.122.63.162 141831 port 438 141831 unique_id port 141831 remote_ip 10.8.0.14 141836 username aminvpn 141836 mac 141836 bytes_out 0 141836 bytes_in 0 141836 station_ip 5.119.94.12 141836 port 438 141836 unique_id port 141836 remote_ip 10.8.0.14 141843 username mirzaei 141843 mac 141843 bytes_out 0 141843 bytes_in 0 141843 station_ip 5.119.62.236 141843 port 373 141784 unique_id port 141787 username hashtadani3 141787 mac 141787 bytes_out 0 141787 bytes_in 0 141787 station_ip 83.122.125.231 141787 port 225 141787 unique_id port 141787 remote_ip 10.8.1.94 141790 username hashtadani3 141790 mac 141790 bytes_out 0 141790 bytes_in 0 141790 station_ip 83.122.125.231 141790 port 379 141790 unique_id port 141790 remote_ip 10.8.0.154 141794 username rajaei 141794 mac 141794 bytes_out 0 141794 bytes_in 0 141794 station_ip 89.32.102.73 141794 port 432 141794 unique_id port 141794 remote_ip 10.8.0.34 141799 username vanila 141799 mac 141799 bytes_out 1026217 141799 bytes_in 897156 141799 station_ip 37.129.31.164 141799 port 439 141799 unique_id port 141799 remote_ip 10.8.0.178 141800 username mostafa_es78 141800 unique_id port 141800 terminate_cause User-Request 141800 bytes_out 253855 141800 bytes_in 4440898 141800 station_ip 109.125.164.197 141800 port 15730735 141800 nas_port_type Virtual 141800 remote_ip 5.5.5.173 141801 username mostafa_es78 141801 unique_id port 141801 terminate_cause User-Request 141801 bytes_out 57672 141801 bytes_in 453201 141801 station_ip 109.125.164.197 141801 port 15730736 141801 nas_port_type Virtual 141801 remote_ip 5.5.5.179 141805 username kalantary 141805 mac 141805 bytes_out 366224 141805 bytes_in 728676 141805 station_ip 83.123.100.225 141805 port 442 141805 unique_id port 141805 remote_ip 10.8.0.98 141810 username aminvpn 141810 kill_reason Another user logged on this global unique id 141810 mac 141810 bytes_out 0 141810 bytes_in 0 141810 station_ip 83.122.67.186 141810 port 441 141810 unique_id port 141810 remote_ip 10.8.0.14 141811 username aminvpn 141811 mac 141811 bytes_out 0 141811 bytes_in 0 141811 station_ip 83.122.67.186 141811 port 441 141811 unique_id port 141813 username amirabbas 141813 unique_id port 141813 terminate_cause User-Request 141813 bytes_out 20979259 141813 bytes_in 623143614 141813 station_ip 37.27.23.77 141813 port 15730733 141813 nas_port_type Virtual 141813 remote_ip 5.5.5.160 141821 username houshang 141821 mac 141821 bytes_out 0 141821 bytes_in 0 141821 station_ip 5.120.52.140 141821 port 379 141821 unique_id port 141821 remote_ip 10.8.0.22 141822 username meysam 141822 mac 141822 bytes_out 600564 141822 bytes_in 9014562 141822 station_ip 188.158.50.130 141822 port 439 141822 unique_id port 141822 remote_ip 10.8.0.110 141826 username amir 141826 kill_reason Relative expiration date has reached, Relative expiration date has reached 141826 mac 141826 bytes_out 0 141826 bytes_in 0 141826 station_ip 46.225.209.132 141826 port 438 141826 unique_id port 141826 remote_ip 10.8.0.50 141828 username amir 141828 kill_reason Relative expiration date has reached 141828 mac 141828 bytes_out 0 141828 bytes_in 0 141828 station_ip 46.225.209.132 141828 port 438 141828 unique_id port 141830 username aminvpn 141830 unique_id port 141830 terminate_cause Lost-Carrier 141830 bytes_out 384703 141830 bytes_in 1008971 141830 station_ip 5.233.49.34 141830 port 15730738 141830 nas_port_type Virtual 141830 remote_ip 5.5.5.255 141832 username forozandeh1 141832 mac 141832 bytes_out 0 141832 bytes_in 0 141832 station_ip 83.123.141.81 141832 port 439 141832 unique_id port 141832 remote_ip 10.8.0.130 141835 username sabaghnezhad 141835 mac 141835 bytes_out 8594 141835 bytes_in 14758 141835 station_ip 95.64.30.133 141835 port 438 141835 unique_id port 141835 remote_ip 10.8.0.186 141837 username houshang 141837 mac 141837 bytes_out 0 141837 bytes_in 0 141837 station_ip 5.120.52.140 141837 port 379 141837 unique_id port 141814 remote_ip 10.8.0.146 141815 username hosseine 141815 mac 141815 bytes_out 48509 141815 bytes_in 54667 141815 station_ip 83.122.33.12 141815 port 442 141815 unique_id port 141815 remote_ip 10.8.0.238 141816 username rajaei 141816 mac 141816 bytes_out 0 141816 bytes_in 0 141816 station_ip 89.32.102.73 141816 port 379 141816 unique_id port 141818 username aminvpn 141818 mac 141818 bytes_out 0 141818 bytes_in 0 141818 station_ip 83.122.67.186 141818 port 441 141818 unique_id port 141818 remote_ip 10.8.0.14 141825 username houshang 141825 mac 141825 bytes_out 0 141825 bytes_in 0 141825 station_ip 5.120.52.140 141825 port 379 141825 unique_id port 141825 remote_ip 10.8.0.22 141829 username rajaei 141829 kill_reason Another user logged on this global unique id 141829 mac 141829 bytes_out 0 141829 bytes_in 0 141829 station_ip 89.32.102.73 141829 port 432 141829 unique_id port 141833 username sabaghnezhad 141833 mac 141833 bytes_out 0 141833 bytes_in 0 141833 station_ip 5.217.101.190 141833 port 440 141833 unique_id port 141833 remote_ip 10.8.0.186 141834 username houshang 141834 kill_reason Another user logged on this global unique id 141834 mac 141834 bytes_out 0 141834 bytes_in 0 141834 station_ip 5.120.52.140 141834 port 379 141834 unique_id port 141834 remote_ip 10.8.0.22 141838 username mostafa_es78 141838 unique_id port 141838 terminate_cause User-Request 141838 bytes_out 1293531 141838 bytes_in 23376229 141838 station_ip 109.125.164.197 141838 port 15730737 141838 nas_port_type Virtual 141838 remote_ip 5.5.5.180 141839 username mohammadjavad 141839 mac 141839 bytes_out 127335 141839 bytes_in 1222544 141839 station_ip 37.129.199.190 141839 port 439 141839 unique_id port 141839 remote_ip 10.8.0.142 141842 username mohammadjavad 141842 mac 141842 bytes_out 56844 141842 bytes_in 105983 141842 station_ip 37.129.199.190 141842 port 379 141842 unique_id port 141842 remote_ip 10.8.0.142 141847 username rajaei 141847 kill_reason Another user logged on this global unique id 141847 mac 141847 bytes_out 0 141847 bytes_in 0 141847 station_ip 89.32.102.73 141847 port 432 141847 unique_id port 141848 username kalantary 141848 mac 141848 bytes_out 0 141848 bytes_in 0 141848 station_ip 83.123.74.61 141848 port 413 141848 unique_id port 141848 remote_ip 10.8.0.98 141850 username mirzaei 141850 mac 141850 bytes_out 45382 141850 bytes_in 95010 141850 station_ip 5.119.62.236 141850 port 373 141850 unique_id port 141850 remote_ip 10.8.0.66 141852 username rajaei 141852 mac 141852 bytes_out 0 141852 bytes_in 0 141852 station_ip 89.32.102.73 141852 port 432 141852 unique_id port 141855 username malekpoir 141855 kill_reason Another user logged on this global unique id 141855 mac 141855 bytes_out 0 141855 bytes_in 0 141855 station_ip 5.119.229.8 141855 port 433 141855 unique_id port 141860 username mohammadmahdi 141860 kill_reason Another user logged on this global unique id 141860 mac 141860 bytes_out 0 141860 bytes_in 0 141860 station_ip 5.119.13.214 141860 port 438 141860 unique_id port 141863 username mosi 141863 kill_reason Another user logged on this global unique id 141863 mac 141863 bytes_out 0 141863 bytes_in 0 141863 station_ip 151.235.75.185 141863 port 413 141863 unique_id port 141863 remote_ip 10.8.0.138 141872 username yaghobi 141872 mac 141872 bytes_out 0 141872 bytes_in 0 141872 station_ip 37.129.56.73 141872 port 414 141872 unique_id port 141872 remote_ip 10.8.0.198 141875 username godarzi 141875 kill_reason Another user logged on this global unique id 141875 mac 141875 bytes_out 0 141840 username mohammadmahdi 141840 mac 141840 bytes_out 0 141840 bytes_in 0 141840 station_ip 5.119.13.214 141840 port 436 141840 unique_id port 141840 remote_ip 10.8.0.54 141841 username godarzi 141841 mac 141841 bytes_out 0 141841 bytes_in 0 141841 station_ip 5.202.134.253 141841 port 413 141841 unique_id port 141841 remote_ip 10.8.0.174 141844 username rajaei 141844 kill_reason Another user logged on this global unique id 141844 mac 141844 bytes_out 0 141844 bytes_in 0 141844 station_ip 89.32.102.73 141844 port 432 141844 unique_id port 141846 username vanila 141846 mac 141846 bytes_out 1172838 141846 bytes_in 150801 141846 station_ip 37.129.84.40 141846 port 379 141846 unique_id port 141846 remote_ip 10.8.0.178 141849 username aminvpn 141849 mac 141849 bytes_out 0 141849 bytes_in 0 141849 station_ip 5.119.94.12 141849 port 227 141849 unique_id port 141849 remote_ip 10.8.1.6 141854 username mirzaei 141854 mac 141854 bytes_out 3674 141854 bytes_in 5372 141854 station_ip 5.119.62.236 141854 port 413 141854 unique_id port 141854 remote_ip 10.8.0.66 141856 username aminvpn 141856 mac 141856 bytes_out 0 141856 bytes_in 0 141856 station_ip 5.119.94.12 141856 port 439 141856 unique_id port 141856 remote_ip 10.8.0.14 141857 username godarzi 141857 mac 141857 bytes_out 475356 141857 bytes_in 6207653 141857 station_ip 5.202.134.253 141857 port 436 141857 unique_id port 141857 remote_ip 10.8.0.174 141858 username houshang 141858 mac 141858 bytes_out 0 141858 bytes_in 0 141858 station_ip 5.120.52.140 141858 port 436 141858 unique_id port 141858 remote_ip 10.8.0.22 141859 username Mahin 141859 mac 141859 bytes_out 1483579 141859 bytes_in 11755464 141859 station_ip 5.119.161.167 141859 port 414 141859 unique_id port 141859 remote_ip 10.8.0.158 141862 username alihosseini1 141862 mac 141862 bytes_out 2512101 141862 bytes_in 30602216 141862 station_ip 5.119.139.246 141862 port 379 141862 unique_id port 141862 remote_ip 10.8.0.166 141865 username forozandeh1 141865 mac 141865 bytes_out 1161449 141865 bytes_in 3142566 141865 station_ip 83.123.69.170 141865 port 414 141865 unique_id port 141865 remote_ip 10.8.0.130 141867 username aminvpn 141867 unique_id port 141867 terminate_cause User-Request 141867 bytes_out 654104 141867 bytes_in 5716905 141867 station_ip 5.119.94.12 141867 port 15730741 141867 nas_port_type Virtual 141867 remote_ip 5.5.5.111 141868 username mohammadmahdi 141868 mac 141868 bytes_out 0 141868 bytes_in 0 141868 station_ip 5.119.13.214 141868 port 438 141868 unique_id port 141871 username mohammadmahdi 141871 kill_reason Another user logged on this global unique id 141871 mac 141871 bytes_out 0 141871 bytes_in 0 141871 station_ip 5.119.13.214 141871 port 436 141871 unique_id port 141871 remote_ip 10.8.0.54 141879 username alirr 141879 kill_reason Relative expiration date has reached 141879 unique_id port 141879 bytes_out 0 141879 bytes_in 0 141879 station_ip 151.238.246.202 141879 port 15730744 141879 nas_port_type Virtual 141881 username aminvpn 141881 mac 141881 bytes_out 0 141881 bytes_in 0 141881 station_ip 5.119.94.12 141881 port 442 141881 unique_id port 141881 remote_ip 10.8.0.14 141888 username mohammadjavad 141888 mac 141888 bytes_out 76255 141888 bytes_in 216941 141888 station_ip 83.123.94.226 141888 port 414 141888 unique_id port 141888 remote_ip 10.8.0.142 141891 username mohammadjavad 141891 mac 141891 bytes_out 0 141891 bytes_in 0 141891 station_ip 83.123.94.226 141891 port 438 141843 unique_id port 141843 remote_ip 10.8.0.66 141845 username aminvpn 141845 mac 141845 bytes_out 0 141845 bytes_in 0 141845 station_ip 5.119.94.12 141845 port 227 141845 unique_id port 141845 remote_ip 10.8.1.6 141851 username aminvpn 141851 unique_id port 141851 terminate_cause Lost-Carrier 141851 bytes_out 1933549 141851 bytes_in 7195979 141851 station_ip 5.233.49.34 141851 port 15730739 141851 nas_port_type Virtual 141851 remote_ip 5.5.5.108 141853 username mohammadmahdi 141853 kill_reason Another user logged on this global unique id 141853 mac 141853 bytes_out 0 141853 bytes_in 0 141853 station_ip 5.119.13.214 141853 port 438 141853 unique_id port 141853 remote_ip 10.8.0.54 141861 username houshang 141861 mac 141861 bytes_out 650044 141861 bytes_in 11462202 141861 station_ip 5.120.52.140 141861 port 436 141861 unique_id port 141861 remote_ip 10.8.0.22 141864 username mohammadjavad 141864 mac 141864 bytes_out 735650 141864 bytes_in 9268975 141864 station_ip 83.123.46.75 141864 port 432 141864 unique_id port 141864 remote_ip 10.8.0.142 141866 username aminvpn 141866 mac 141866 bytes_out 0 141866 bytes_in 0 141866 station_ip 5.119.94.12 141866 port 414 141866 unique_id port 141866 remote_ip 10.8.0.14 141869 username meysam 141869 mac 141869 bytes_out 0 141869 bytes_in 0 141869 station_ip 188.158.50.130 141869 port 227 141869 unique_id port 141869 remote_ip 10.8.1.34 141870 username aminvpn 141870 mac 141870 bytes_out 0 141870 bytes_in 0 141870 station_ip 5.119.94.12 141870 port 438 141870 unique_id port 141870 remote_ip 10.8.0.14 141873 username mohammadmahdi 141873 mac 141873 bytes_out 0 141873 bytes_in 0 141873 station_ip 5.119.13.214 141873 port 436 141873 unique_id port 141874 username aminvpn 141874 mac 141874 bytes_out 0 141874 bytes_in 0 141874 station_ip 5.119.94.12 141874 port 436 141874 unique_id port 141874 remote_ip 10.8.0.14 141876 username mosi 141876 kill_reason Another user logged on this global unique id 141876 mac 141876 bytes_out 0 141876 bytes_in 0 141876 station_ip 151.235.75.185 141876 port 413 141876 unique_id port 141878 username godarzi 141878 kill_reason Another user logged on this global unique id 141878 mac 141878 bytes_out 0 141878 bytes_in 0 141878 station_ip 5.202.134.253 141878 port 432 141878 unique_id port 141880 username aminvpn 141880 mac 141880 bytes_out 0 141880 bytes_in 0 141880 station_ip 83.122.21.54 141880 port 441 141880 unique_id port 141880 remote_ip 10.8.0.14 141884 username forozandeh1 141884 mac 141884 bytes_out 0 141884 bytes_in 0 141884 station_ip 37.129.195.15 141884 port 442 141884 unique_id port 141884 remote_ip 10.8.0.130 141885 username aminvpn 141885 unique_id port 141885 terminate_cause Lost-Carrier 141885 bytes_out 2508705 141885 bytes_in 8146364 141885 station_ip 5.233.49.34 141885 port 15730743 141885 nas_port_type Virtual 141885 remote_ip 5.5.5.118 141889 username vanila 141889 mac 141889 bytes_out 0 141889 bytes_in 0 141889 station_ip 37.129.97.220 141889 port 442 141889 unique_id port 141889 remote_ip 10.8.0.178 141890 username forozandeh1 141890 mac 141890 bytes_out 0 141890 bytes_in 0 141890 station_ip 37.129.195.15 141890 port 443 141890 unique_id port 141890 remote_ip 10.8.0.130 141892 username avaanna 141892 mac 141892 bytes_out 0 141892 bytes_in 0 141892 station_ip 83.123.156.187 141892 port 436 141892 unique_id port 141892 remote_ip 10.8.0.94 141893 username aminvpn 141893 unique_id port 141893 terminate_cause Lost-Carrier 141893 bytes_out 21725 141875 bytes_in 0 141875 station_ip 5.202.134.253 141875 port 432 141875 unique_id port 141875 remote_ip 10.8.0.174 141877 username kalantary 141877 mac 141877 bytes_out 0 141877 bytes_in 0 141877 station_ip 83.123.32.229 141877 port 436 141877 unique_id port 141877 remote_ip 10.8.0.98 141882 username houshang 141882 mac 141882 bytes_out 0 141882 bytes_in 0 141882 station_ip 5.120.38.110 141882 port 439 141882 unique_id port 141882 remote_ip 10.8.0.22 141883 username mostafa_es78 141883 unique_id port 141883 terminate_cause User-Request 141883 bytes_out 7521900 141883 bytes_in 251182244 141883 station_ip 5.119.54.98 141883 port 15730742 141883 nas_port_type Virtual 141883 remote_ip 5.5.5.114 141886 username godarzi 141886 kill_reason Another user logged on this global unique id 141886 mac 141886 bytes_out 0 141886 bytes_in 0 141886 station_ip 5.202.134.253 141886 port 432 141886 unique_id port 141887 username alikomsari 141887 mac 141887 bytes_out 0 141887 bytes_in 0 141887 station_ip 5.119.234.44 141887 port 438 141887 unique_id port 141887 remote_ip 10.8.0.70 141897 username aminvpn 141897 mac 141897 bytes_out 0 141897 bytes_in 0 141897 station_ip 5.119.94.12 141897 port 436 141897 unique_id port 141897 remote_ip 10.8.0.14 141901 username kalantary 141901 mac 141901 bytes_out 0 141901 bytes_in 0 141901 station_ip 83.123.69.225 141901 port 414 141901 unique_id port 141901 remote_ip 10.8.0.98 141904 username moradi 141904 kill_reason Another user logged on this global unique id 141904 mac 141904 bytes_out 0 141904 bytes_in 0 141904 station_ip 37.129.22.145 141904 port 432 141904 unique_id port 141904 remote_ip 10.8.0.250 141906 username amirabbas 141906 unique_id port 141906 terminate_cause User-Request 141906 bytes_out 6590847 141906 bytes_in 166867163 141906 station_ip 37.27.23.77 141906 port 15730740 141906 nas_port_type Virtual 141906 remote_ip 5.5.5.110 141911 username aminvpn 141911 mac 141911 bytes_out 0 141911 bytes_in 0 141911 station_ip 83.122.21.54 141911 port 436 141911 unique_id port 141911 remote_ip 10.8.0.14 141913 username aminvpn 141913 mac 141913 bytes_out 0 141913 bytes_in 0 141913 station_ip 5.119.94.12 141913 port 414 141913 unique_id port 141913 remote_ip 10.8.0.14 141914 username aminvpn 141914 mac 141914 bytes_out 0 141914 bytes_in 0 141914 station_ip 5.119.94.12 141914 port 414 141914 unique_id port 141914 remote_ip 10.8.0.14 141915 username aminvpn 141915 mac 141915 bytes_out 0 141915 bytes_in 0 141915 station_ip 83.122.21.54 141915 port 436 141915 unique_id port 141915 remote_ip 10.8.0.14 141917 username aminvpn 141917 mac 141917 bytes_out 0 141917 bytes_in 0 141917 station_ip 5.119.94.12 141917 port 414 141917 unique_id port 141917 remote_ip 10.8.0.14 141924 username alireza 141924 kill_reason Relative expiration date has reached 141924 unique_id port 141924 bytes_out 0 141924 bytes_in 0 141924 station_ip 5.120.120.36 141924 port 15730751 141924 nas_port_type Virtual 141926 username aminvpn 141926 mac 141926 bytes_out 0 141926 bytes_in 0 141926 station_ip 83.122.21.54 141926 port 414 141926 unique_id port 141926 remote_ip 10.8.0.14 141936 username aminvpn 141936 mac 141936 bytes_out 0 141936 bytes_in 0 141936 station_ip 83.122.21.54 141936 port 442 141936 unique_id port 141936 remote_ip 10.8.0.14 141944 username aminvpn 141944 mac 141944 bytes_out 0 141944 bytes_in 0 141944 station_ip 5.119.94.12 141944 port 379 141944 unique_id port 141944 remote_ip 10.8.0.14 141945 username hashtadani3 141891 unique_id port 141891 remote_ip 10.8.0.142 141894 username godarzi 141894 mac 141894 bytes_out 0 141894 bytes_in 0 141894 station_ip 5.202.134.253 141894 port 432 141894 unique_id port 141896 username aminvpn 141896 mac 141896 bytes_out 0 141896 bytes_in 0 141896 station_ip 5.119.94.12 141896 port 432 141896 unique_id port 141896 remote_ip 10.8.0.14 141899 username mahdixz 141899 unique_id port 141899 terminate_cause Lost-Carrier 141899 bytes_out 378606 141899 bytes_in 6965643 141899 station_ip 5.119.94.12 141899 port 15730745 141899 nas_port_type Virtual 141899 remote_ip 5.5.5.130 141900 username mosi 141900 kill_reason Another user logged on this global unique id 141900 mac 141900 bytes_out 0 141900 bytes_in 0 141900 station_ip 151.235.75.185 141900 port 413 141900 unique_id port 141902 username mosi 141902 kill_reason Another user logged on this global unique id 141902 mac 141902 bytes_out 0 141902 bytes_in 0 141902 station_ip 151.235.75.185 141902 port 413 141902 unique_id port 141903 username aminvpn 141903 mac 141903 bytes_out 106998 141903 bytes_in 151837 141903 station_ip 83.122.21.54 141903 port 436 141903 unique_id port 141903 remote_ip 10.8.0.14 141905 username aminvpn 141905 mac 141905 bytes_out 0 141905 bytes_in 0 141905 station_ip 5.119.94.12 141905 port 439 141905 unique_id port 141905 remote_ip 10.8.0.14 141909 username kalantary 141909 mac 141909 bytes_out 0 141909 bytes_in 0 141909 station_ip 83.123.69.225 141909 port 414 141909 unique_id port 141909 remote_ip 10.8.0.98 141910 username moradi 141910 kill_reason Another user logged on this global unique id 141910 mac 141910 bytes_out 0 141910 bytes_in 0 141910 station_ip 37.129.22.145 141910 port 432 141910 unique_id port 141918 username aminvpn 141918 mac 141918 bytes_out 0 141918 bytes_in 0 141918 station_ip 5.119.94.12 141918 port 414 141918 unique_id port 141918 remote_ip 10.8.0.14 141921 username alireza 141921 kill_reason Relative expiration date has reached 141921 unique_id port 141921 bytes_out 0 141921 bytes_in 0 141921 station_ip 5.120.120.36 141921 port 15730748 141921 nas_port_type Virtual 141923 username alireza 141923 kill_reason Relative expiration date has reached 141923 unique_id port 141923 bytes_out 0 141923 bytes_in 0 141923 station_ip 5.120.120.36 141923 port 15730750 141923 nas_port_type Virtual 141928 username mostafa_es78 141928 unique_id port 141928 terminate_cause User-Request 141928 bytes_out 35844 141928 bytes_in 1406056 141928 station_ip 5.119.54.98 141928 port 15730752 141928 nas_port_type Virtual 141928 remote_ip 5.5.5.138 141930 username hassan 141930 mac 141930 bytes_out 0 141930 bytes_in 0 141930 station_ip 37.27.1.165 141930 port 414 141930 unique_id port 141930 remote_ip 10.8.0.122 141933 username moradi 141933 kill_reason Another user logged on this global unique id 141933 mac 141933 bytes_out 0 141933 bytes_in 0 141933 station_ip 37.129.22.145 141933 port 432 141933 unique_id port 141934 username vanila 141934 mac 141934 bytes_out 0 141934 bytes_in 0 141934 station_ip 37.129.47.52 141934 port 436 141934 unique_id port 141934 remote_ip 10.8.0.178 141935 username alireza 141935 kill_reason Relative expiration date has reached 141935 unique_id port 141935 bytes_out 0 141935 bytes_in 0 141935 station_ip 5.120.120.36 141935 port 15730758 141935 nas_port_type Virtual 141937 username alireza 141937 kill_reason Relative expiration date has reached 141937 unique_id port 141937 bytes_out 0 141937 bytes_in 0 141937 station_ip 5.120.120.36 141937 port 15730759 141937 nas_port_type Virtual 141939 username jafari 141939 mac 141893 bytes_in 45728 141893 station_ip 5.233.49.34 141893 port 15730746 141893 nas_port_type Virtual 141893 remote_ip 5.5.5.136 141895 username aminvpn 141895 mac 141895 bytes_out 0 141895 bytes_in 0 141895 station_ip 83.122.21.54 141895 port 439 141895 unique_id port 141895 remote_ip 10.8.0.14 141898 username avaanna 141898 mac 141898 bytes_out 0 141898 bytes_in 0 141898 station_ip 83.123.156.187 141898 port 227 141898 unique_id port 141898 remote_ip 10.8.1.46 141907 username avaanna 141907 mac 141907 bytes_out 415991 141907 bytes_in 4445064 141907 station_ip 83.123.156.187 141907 port 227 141907 unique_id port 141907 remote_ip 10.8.1.46 141908 username kalantary 141908 mac 141908 bytes_out 0 141908 bytes_in 0 141908 station_ip 83.123.69.225 141908 port 414 141908 unique_id port 141908 remote_ip 10.8.0.98 141912 username aminvpn 141912 mac 141912 bytes_out 0 141912 bytes_in 0 141912 station_ip 5.119.94.12 141912 port 414 141912 unique_id port 141912 remote_ip 10.8.0.14 141916 username aminvpn 141916 mac 141916 bytes_out 0 141916 bytes_in 0 141916 station_ip 5.119.94.12 141916 port 414 141916 unique_id port 141916 remote_ip 10.8.0.14 141919 username moradi 141919 kill_reason Another user logged on this global unique id 141919 mac 141919 bytes_out 0 141919 bytes_in 0 141919 station_ip 37.129.22.145 141919 port 432 141919 unique_id port 141920 username jafari 141920 kill_reason Another user logged on this global unique id 141920 mac 141920 bytes_out 0 141920 bytes_in 0 141920 station_ip 89.47.77.61 141920 port 228 141920 unique_id port 141920 remote_ip 10.8.1.198 141922 username alireza 141922 kill_reason Relative expiration date has reached 141922 unique_id port 141922 bytes_out 0 141922 bytes_in 0 141922 station_ip 5.120.120.36 141922 port 15730749 141922 nas_port_type Virtual 141925 username alireza 141925 kill_reason Relative expiration date has reached 141925 unique_id port 141925 bytes_out 0 141925 bytes_in 0 141925 station_ip 5.120.120.36 141925 port 15730753 141925 nas_port_type Virtual 141927 username aminvpn 141927 mac 141927 bytes_out 0 141927 bytes_in 0 141927 station_ip 5.119.94.12 141927 port 443 141927 unique_id port 141927 remote_ip 10.8.0.14 141929 username hassan 141929 mac 141929 bytes_out 517747 141929 bytes_in 5147107 141929 station_ip 37.27.1.165 141929 port 442 141929 unique_id port 141929 remote_ip 10.8.0.122 141931 username hassan 141931 mac 141931 bytes_out 0 141931 bytes_in 0 141931 station_ip 5.119.100.205 141931 port 443 141931 unique_id port 141931 remote_ip 10.8.0.122 141932 username hosseine 141932 mac 141932 bytes_out 0 141932 bytes_in 0 141932 station_ip 83.122.33.12 141932 port 379 141932 unique_id port 141932 remote_ip 10.8.0.238 141938 username alireza 141938 kill_reason Relative expiration date has reached 141938 unique_id port 141938 bytes_out 0 141938 bytes_in 0 141938 station_ip 5.120.120.36 141938 port 15730760 141938 nas_port_type Virtual 141940 username alireza 141940 kill_reason Relative expiration date has reached 141940 unique_id port 141940 bytes_out 0 141940 bytes_in 0 141940 station_ip 5.120.120.36 141940 port 15730761 141940 nas_port_type Virtual 141942 username alireza 141942 kill_reason Relative expiration date has reached 141942 unique_id port 141942 bytes_out 0 141942 bytes_in 0 141942 station_ip 5.120.120.36 141942 port 15730762 141942 nas_port_type Virtual 141943 username alireza 141943 kill_reason Relative expiration date has reached 141943 unique_id port 141943 bytes_out 0 141943 bytes_in 0 141943 station_ip 5.120.120.36 141943 port 15730763 141939 bytes_out 0 141939 bytes_in 0 141939 station_ip 89.47.77.61 141939 port 228 141939 unique_id port 141941 username aminvpn 141941 unique_id port 141941 terminate_cause Lost-Carrier 141941 bytes_out 3265 141941 bytes_in 5634 141941 station_ip 5.233.49.34 141941 port 15730757 141941 nas_port_type Virtual 141941 remote_ip 5.5.5.141 141946 username aminvpn 141946 mac 141946 bytes_out 0 141946 bytes_in 0 141946 station_ip 5.119.94.12 141946 port 379 141946 unique_id port 141946 remote_ip 10.8.0.14 141949 username moradi 141949 kill_reason Another user logged on this global unique id 141949 mac 141949 bytes_out 0 141949 bytes_in 0 141949 station_ip 37.129.22.145 141949 port 432 141949 unique_id port 141952 username moradi 141952 mac 141952 bytes_out 0 141952 bytes_in 0 141952 station_ip 37.129.22.145 141952 port 432 141952 unique_id port 141957 username mohammadmahdi 141957 mac 141957 bytes_out 1725568 141957 bytes_in 5719290 141957 station_ip 5.119.13.214 141957 port 441 141957 unique_id port 141957 remote_ip 10.8.0.54 141962 username hashtadani3 141962 mac 141962 bytes_out 0 141962 bytes_in 0 141962 station_ip 83.122.70.87 141962 port 379 141962 unique_id port 141962 remote_ip 10.8.0.154 141964 username sabaghnezhad 141964 mac 141964 bytes_out 3384448 141964 bytes_in 1273807 141964 station_ip 95.64.30.133 141964 port 440 141964 unique_id port 141964 remote_ip 10.8.0.186 141965 username alihosseini1 141965 mac 141965 bytes_out 78541 141965 bytes_in 185306 141965 station_ip 5.120.47.24 141965 port 227 141965 unique_id port 141965 remote_ip 10.8.1.106 141966 username zotaher 141966 mac 141966 bytes_out 736690 141966 bytes_in 3319852 141966 station_ip 37.129.185.29 141966 port 379 141966 unique_id port 141966 remote_ip 10.8.0.194 141967 username mosi 141967 mac 141967 bytes_out 0 141967 bytes_in 0 141967 station_ip 151.235.75.185 141967 port 413 141967 unique_id port 141981 username hashtadani3 141981 mac 141981 bytes_out 0 141981 bytes_in 0 141981 station_ip 83.122.70.87 141981 port 373 141981 unique_id port 141981 remote_ip 10.8.0.154 141988 username malekpoir 141988 kill_reason Another user logged on this global unique id 141988 mac 141988 bytes_out 0 141988 bytes_in 0 141988 station_ip 5.119.229.8 141988 port 433 141988 unique_id port 141990 username hashtadani3 141990 mac 141990 bytes_out 0 141990 bytes_in 0 141990 station_ip 83.122.70.87 141990 port 227 141990 unique_id port 141990 remote_ip 10.8.1.94 141991 username hashtadani3 141991 mac 141991 bytes_out 2270 141991 bytes_in 4547 141991 station_ip 83.122.70.87 141991 port 414 141991 unique_id port 141991 remote_ip 10.8.0.154 141995 username hashtadani3 141995 mac 141995 bytes_out 0 141995 bytes_in 0 141995 station_ip 83.122.70.87 141995 port 436 141995 unique_id port 141995 remote_ip 10.8.0.154 142000 username mosi 142000 mac 142000 bytes_out 214359 142000 bytes_in 353719 142000 station_ip 37.156.54.232 142000 port 379 142000 unique_id port 142000 remote_ip 10.8.0.138 142001 username hashtadani3 142001 mac 142001 bytes_out 0 142001 bytes_in 0 142001 station_ip 83.122.70.87 142001 port 379 142001 unique_id port 142001 remote_ip 10.8.0.154 142002 username mosi 142002 mac 142002 bytes_out 10551 142002 bytes_in 15771 142002 station_ip 37.156.54.232 142002 port 414 142002 unique_id port 142002 remote_ip 10.8.0.138 142006 username moradi 142006 mac 142006 bytes_out 0 142006 bytes_in 0 142006 station_ip 37.129.5.45 141943 nas_port_type Virtual 141947 username alireza 141947 kill_reason Relative expiration date has reached 141947 unique_id port 141947 bytes_out 0 141947 bytes_in 0 141947 station_ip 5.120.120.36 141947 port 15730764 141947 nas_port_type Virtual 141950 username hashtadani3 141950 mac 141950 bytes_out 0 141950 bytes_in 0 141950 station_ip 83.122.70.87 141950 port 227 141950 unique_id port 141950 remote_ip 10.8.1.94 141951 username alireza 141951 kill_reason Relative expiration date has reached 141951 unique_id port 141951 bytes_out 0 141951 bytes_in 0 141951 station_ip 5.120.120.36 141951 port 15730765 141951 nas_port_type Virtual 141953 username vanila 141953 mac 141953 bytes_out 432819 141953 bytes_in 4665412 141953 station_ip 37.129.47.52 141953 port 379 141953 unique_id port 141953 remote_ip 10.8.0.178 141954 username godarzi 141954 mac 141954 bytes_out 0 141954 bytes_in 0 141954 station_ip 5.202.134.253 141954 port 379 141954 unique_id port 141954 remote_ip 10.8.0.174 141955 username alireza 141955 kill_reason Relative expiration date has reached 141955 unique_id port 141955 bytes_out 0 141955 bytes_in 0 141955 station_ip 5.120.120.36 141955 port 15730766 141955 nas_port_type Virtual 141959 username hashtadani3 141959 mac 141959 bytes_out 0 141959 bytes_in 0 141959 station_ip 83.122.70.87 141959 port 227 141959 unique_id port 141959 remote_ip 10.8.1.94 141963 username hashtadani3 141963 mac 141963 bytes_out 0 141963 bytes_in 0 141963 station_ip 83.122.70.87 141963 port 379 141963 unique_id port 141963 remote_ip 10.8.0.154 141968 username alihosseini1 141968 mac 141968 bytes_out 0 141968 bytes_in 0 141968 station_ip 5.120.47.24 141968 port 414 141968 unique_id port 141968 remote_ip 10.8.0.166 141970 username alihosseini1 141970 mac 141970 bytes_out 1753 141970 bytes_in 5000 141970 station_ip 5.120.47.24 141970 port 413 141970 unique_id port 141970 remote_ip 10.8.0.166 141971 username aminvpn 141971 mac 141971 bytes_out 0 141971 bytes_in 0 141971 station_ip 5.119.94.12 141971 port 413 141971 unique_id port 141971 remote_ip 10.8.0.14 141973 username hashtadani3 141973 mac 141973 bytes_out 875713 141973 bytes_in 5640890 141973 station_ip 83.122.70.87 141973 port 228 141973 unique_id port 141973 remote_ip 10.8.1.94 141976 username mirzaei 141976 mac 141976 bytes_out 0 141976 bytes_in 0 141976 station_ip 5.119.62.236 141976 port 373 141976 unique_id port 141976 remote_ip 10.8.0.66 141978 username hoorieh 141978 mac 141978 bytes_out 0 141978 bytes_in 0 141978 station_ip 5.119.64.138 141978 port 373 141978 unique_id port 141978 remote_ip 10.8.0.38 141980 username hashtadani3 141980 mac 141980 bytes_out 2115560 141980 bytes_in 21517370 141980 station_ip 83.122.70.87 141980 port 413 141980 unique_id port 141980 remote_ip 10.8.0.154 141983 username hashtadani3 141983 mac 141983 bytes_out 0 141983 bytes_in 0 141983 station_ip 83.122.70.87 141983 port 227 141983 unique_id port 141983 remote_ip 10.8.1.94 141985 username hashtadani3 141985 mac 141985 bytes_out 2543 141985 bytes_in 4912 141985 station_ip 83.122.70.87 141985 port 227 141985 unique_id port 141985 remote_ip 10.8.1.94 141986 username hashtadani3 141986 mac 141986 bytes_out 0 141986 bytes_in 0 141986 station_ip 83.122.70.87 141986 port 414 141986 unique_id port 141986 remote_ip 10.8.0.154 141987 username aminvpn 141987 mac 141987 bytes_out 0 141987 bytes_in 0 141987 station_ip 5.119.94.12 141987 port 227 141987 unique_id port 141945 mac 141945 bytes_out 2548569 141945 bytes_in 32581683 141945 station_ip 83.122.70.87 141945 port 439 141945 unique_id port 141945 remote_ip 10.8.0.154 141948 username hashtadani3 141948 mac 141948 bytes_out 0 141948 bytes_in 0 141948 station_ip 83.122.70.87 141948 port 414 141948 unique_id port 141948 remote_ip 10.8.0.154 141956 username aminvpn 141956 mac 141956 bytes_out 0 141956 bytes_in 0 141956 station_ip 5.119.94.12 141956 port 379 141956 unique_id port 141956 remote_ip 10.8.0.14 141958 username hashtadani3 141958 mac 141958 bytes_out 0 141958 bytes_in 0 141958 station_ip 83.122.70.87 141958 port 227 141958 unique_id port 141958 remote_ip 10.8.1.94 141960 username hashtadani3 141960 mac 141960 bytes_out 0 141960 bytes_in 0 141960 station_ip 83.122.70.87 141960 port 379 141960 unique_id port 141960 remote_ip 10.8.0.154 141961 username hashtadani3 141961 mac 141961 bytes_out 0 141961 bytes_in 0 141961 station_ip 83.122.70.87 141961 port 379 141961 unique_id port 141961 remote_ip 10.8.0.154 141969 username mansour 141969 mac 141969 bytes_out 0 141969 bytes_in 0 141969 station_ip 5.202.62.30 141969 port 438 141969 unique_id port 141969 remote_ip 10.8.0.30 141972 username aminvpn 141972 mac 141972 bytes_out 0 141972 bytes_in 0 141972 station_ip 5.119.94.12 141972 port 413 141972 unique_id port 141972 remote_ip 10.8.0.14 141974 username hashtadani3 141974 mac 141974 bytes_out 0 141974 bytes_in 0 141974 station_ip 83.122.70.87 141974 port 227 141974 unique_id port 141974 remote_ip 10.8.1.94 141975 username hashtadani3 141975 mac 141975 bytes_out 0 141975 bytes_in 0 141975 station_ip 83.122.70.87 141975 port 413 141975 unique_id port 141975 remote_ip 10.8.0.154 141977 username kalantary 141977 mac 141977 bytes_out 230321 141977 bytes_in 346382 141977 station_ip 83.123.3.193 141977 port 432 141977 unique_id port 141977 remote_ip 10.8.0.98 141979 username aminvpn 141979 mac 141979 bytes_out 0 141979 bytes_in 0 141979 station_ip 83.122.21.54 141979 port 414 141979 unique_id port 141979 remote_ip 10.8.0.14 141982 username hashtadani3 141982 mac 141982 bytes_out 2490 141982 bytes_in 4857 141982 station_ip 83.122.70.87 141982 port 227 141982 unique_id port 141982 remote_ip 10.8.1.94 141984 username houshang 141984 kill_reason Another user logged on this global unique id 141984 mac 141984 bytes_out 0 141984 bytes_in 0 141984 station_ip 5.120.38.110 141984 port 438 141984 unique_id port 141984 remote_ip 10.8.0.22 141989 username hashtadani3 141989 mac 141989 bytes_out 2429 141989 bytes_in 4706 141989 station_ip 83.122.70.87 141989 port 414 141989 unique_id port 141989 remote_ip 10.8.0.154 141994 username aminvpn 141994 mac 141994 bytes_out 0 141994 bytes_in 0 141994 station_ip 5.119.94.12 141994 port 414 141994 unique_id port 141994 remote_ip 10.8.0.14 141998 username hashtadani3 141998 mac 141998 bytes_out 0 141998 bytes_in 0 141998 station_ip 83.122.70.87 141998 port 227 141998 unique_id port 141998 remote_ip 10.8.1.94 141999 username hashtadani3 141999 mac 141999 bytes_out 0 141999 bytes_in 0 141999 station_ip 83.122.70.87 141999 port 227 141999 unique_id port 141999 remote_ip 10.8.1.94 142004 username kalantary 142004 kill_reason Another user logged on this global unique id 142004 mac 142004 bytes_out 0 142004 bytes_in 0 142004 station_ip 83.123.3.193 142004 port 373 142004 unique_id port 142004 remote_ip 10.8.0.98 142005 username hashtadani3 141987 remote_ip 10.8.1.6 141992 username hamidsalari 141992 kill_reason Another user logged on this global unique id 141992 mac 141992 bytes_out 0 141992 bytes_in 0 141992 station_ip 5.119.200.40 141992 port 377 141992 unique_id port 141993 username Mahin 141993 mac 141993 bytes_out 440549 141993 bytes_in 3105879 141993 station_ip 5.119.161.167 141993 port 436 141993 unique_id port 141993 remote_ip 10.8.0.158 141996 username houshang 141996 kill_reason Another user logged on this global unique id 141996 mac 141996 bytes_out 0 141996 bytes_in 0 141996 station_ip 5.120.38.110 141996 port 438 141996 unique_id port 141997 username hashtadani3 141997 mac 141997 bytes_out 0 141997 bytes_in 0 141997 station_ip 83.122.70.87 141997 port 227 141997 unique_id port 141997 remote_ip 10.8.1.94 142003 username hamidsalari 142003 kill_reason Another user logged on this global unique id 142003 mac 142003 bytes_out 0 142003 bytes_in 0 142003 station_ip 5.119.200.40 142003 port 377 142003 unique_id port 142007 username aminvpn 142007 mac 142007 bytes_out 0 142007 bytes_in 0 142007 station_ip 5.119.94.12 142007 port 439 142007 unique_id port 142007 remote_ip 10.8.0.14 142009 username kalantary 142009 mac 142009 bytes_out 0 142009 bytes_in 0 142009 station_ip 83.123.3.193 142009 port 373 142009 unique_id port 142010 username houshang 142010 kill_reason Another user logged on this global unique id 142010 mac 142010 bytes_out 0 142010 bytes_in 0 142010 station_ip 5.120.38.110 142010 port 438 142010 unique_id port 142012 username hashtadani3 142012 mac 142012 bytes_out 2973 142012 bytes_in 5338 142012 station_ip 83.122.70.87 142012 port 373 142012 unique_id port 142012 remote_ip 10.8.0.154 142014 username hashtadani3 142014 mac 142014 bytes_out 0 142014 bytes_in 0 142014 station_ip 83.122.70.87 142014 port 227 142014 unique_id port 142014 remote_ip 10.8.1.94 142015 username aminvpn 142015 mac 142015 bytes_out 0 142015 bytes_in 0 142015 station_ip 5.119.94.12 142015 port 373 142015 unique_id port 142015 remote_ip 10.8.0.14 142017 username mohammadmahdi 142017 mac 142017 bytes_out 0 142017 bytes_in 0 142017 station_ip 5.119.13.214 142017 port 432 142017 unique_id port 142019 username alikomsari 142019 mac 142019 bytes_out 524754 142019 bytes_in 1576504 142019 station_ip 5.119.66.138 142019 port 373 142019 unique_id port 142019 remote_ip 10.8.0.70 142026 username saeed9658 142026 mac 142026 bytes_out 3008287 142026 bytes_in 32272677 142026 station_ip 5.120.96.5 142026 port 439 142026 unique_id port 142026 remote_ip 10.8.0.62 142027 username aminvpn 142027 mac 142027 bytes_out 0 142027 bytes_in 0 142027 station_ip 5.233.49.34 142027 port 379 142027 unique_id port 142027 remote_ip 10.8.0.14 142030 username farhad2 142030 mac 142030 bytes_out 583939 142030 bytes_in 2432971 142030 station_ip 5.119.78.202 142030 port 379 142030 unique_id port 142030 remote_ip 10.8.0.190 142031 username vanila 142031 mac 142031 bytes_out 2376457 142031 bytes_in 2446323 142031 station_ip 37.129.17.160 142031 port 413 142031 unique_id port 142031 remote_ip 10.8.0.178 142032 username farhad2 142032 mac 142032 bytes_out 753272 142032 bytes_in 8223682 142032 station_ip 5.119.78.202 142032 port 379 142032 unique_id port 142032 remote_ip 10.8.0.190 142038 username alihajmalek 142038 kill_reason Another user logged on this global unique id 142038 mac 142038 bytes_out 0 142038 bytes_in 0 142038 station_ip 113.203.95.123 142038 port 379 142038 unique_id port 142005 mac 142005 bytes_out 6067 142005 bytes_in 11177 142005 station_ip 83.122.70.87 142005 port 379 142005 unique_id port 142005 remote_ip 10.8.0.154 142008 username hashtadani3 142008 mac 142008 bytes_out 2800 142008 bytes_in 5130 142008 station_ip 83.122.70.87 142008 port 414 142008 unique_id port 142008 remote_ip 10.8.0.154 142013 username moradi 142013 mac 142013 bytes_out 100668 142013 bytes_in 226211 142013 station_ip 37.129.5.45 142013 port 379 142013 unique_id port 142013 remote_ip 10.8.0.250 142016 username mohammadmahdi 142016 kill_reason Another user logged on this global unique id 142016 mac 142016 bytes_out 0 142016 bytes_in 0 142016 station_ip 5.119.13.214 142016 port 432 142016 unique_id port 142016 remote_ip 10.8.0.54 142018 username houshang 142018 kill_reason Another user logged on this global unique id 142018 mac 142018 bytes_out 0 142018 bytes_in 0 142018 station_ip 5.120.38.110 142018 port 438 142018 unique_id port 142022 username aminvpn 142022 mac 142022 bytes_out 0 142022 bytes_in 0 142022 station_ip 5.233.49.34 142022 port 373 142022 unique_id port 142022 remote_ip 10.8.0.14 142025 username aminvpn 142025 mac 142025 bytes_out 0 142025 bytes_in 0 142025 station_ip 5.233.49.34 142025 port 379 142025 unique_id port 142025 remote_ip 10.8.0.14 142028 username houshang 142028 mac 142028 bytes_out 0 142028 bytes_in 0 142028 station_ip 5.120.38.110 142028 port 438 142028 unique_id port 142036 username mostafa_es78 142036 unique_id port 142036 terminate_cause Lost-Carrier 142036 bytes_out 470069 142036 bytes_in 6528086 142036 station_ip 109.125.164.197 142036 port 15730767 142036 nas_port_type Virtual 142036 remote_ip 5.5.5.143 142037 username farhad2 142037 mac 142037 bytes_out 0 142037 bytes_in 0 142037 station_ip 5.119.78.202 142037 port 413 142037 unique_id port 142037 remote_ip 10.8.0.190 142039 username mosi 142039 mac 142039 bytes_out 29716 142039 bytes_in 62726 142039 station_ip 93.114.28.183 142039 port 432 142039 unique_id port 142039 remote_ip 10.8.0.138 142041 username hashtadani3 142041 mac 142041 bytes_out 0 142041 bytes_in 0 142041 station_ip 83.122.70.87 142041 port 227 142041 unique_id port 142042 username mosi 142042 mac 142042 bytes_out 0 142042 bytes_in 0 142042 station_ip 93.114.28.183 142042 port 432 142042 unique_id port 142042 remote_ip 10.8.0.138 142045 username farhad2 142045 mac 142045 bytes_out 1181506 142045 bytes_in 8980438 142045 station_ip 5.119.78.202 142045 port 436 142045 unique_id port 142045 remote_ip 10.8.0.190 142048 username sedighe 142048 mac 142048 bytes_out 203107 142048 bytes_in 731061 142048 station_ip 83.123.68.200 142048 port 432 142048 unique_id port 142048 remote_ip 10.8.0.146 142050 username farhad2 142050 mac 142050 bytes_out 177135 142050 bytes_in 499828 142050 station_ip 5.119.78.202 142050 port 436 142050 unique_id port 142050 remote_ip 10.8.0.190 142056 username aminvpn 142056 mac 142056 bytes_out 0 142056 bytes_in 0 142056 station_ip 5.119.168.38 142056 port 436 142056 unique_id port 142056 remote_ip 10.8.0.14 142058 username mohammadmahdi 142058 mac 142058 bytes_out 1364232 142058 bytes_in 13177432 142058 station_ip 5.119.13.214 142058 port 438 142058 unique_id port 142058 remote_ip 10.8.0.54 142063 username aminvpn 142063 mac 142063 bytes_out 0 142063 bytes_in 0 142063 station_ip 5.119.168.38 142063 port 432 142063 unique_id port 142063 remote_ip 10.8.0.14 142066 username houshang 142066 mac 142006 port 379 142006 unique_id port 142006 remote_ip 10.8.0.250 142011 username mosi 142011 mac 142011 bytes_out 109579 142011 bytes_in 51494 142011 station_ip 37.156.54.232 142011 port 436 142011 unique_id port 142011 remote_ip 10.8.0.138 142020 username mirzaei 142020 mac 142020 bytes_out 137865 142020 bytes_in 223353 142020 station_ip 5.119.62.236 142020 port 413 142020 unique_id port 142020 remote_ip 10.8.0.66 142021 username mirzaei 142021 kill_reason Maximum check online fails reached 142021 mac 142021 bytes_out 0 142021 bytes_in 0 142021 station_ip 5.119.62.236 142021 port 228 142021 unique_id port 142023 username houshang 142023 kill_reason Another user logged on this global unique id 142023 mac 142023 bytes_out 0 142023 bytes_in 0 142023 station_ip 5.120.38.110 142023 port 438 142023 unique_id port 142024 username Mahin 142024 mac 142024 bytes_out 22793 142024 bytes_in 40186 142024 station_ip 5.120.107.97 142024 port 379 142024 unique_id port 142024 remote_ip 10.8.0.158 142029 username hashtadani3 142029 kill_reason Another user logged on this global unique id 142029 mac 142029 bytes_out 0 142029 bytes_in 0 142029 station_ip 83.122.70.87 142029 port 227 142029 unique_id port 142029 remote_ip 10.8.1.94 142033 username farhad2 142033 mac 142033 bytes_out 0 142033 bytes_in 0 142033 station_ip 5.119.78.202 142033 port 413 142033 unique_id port 142033 remote_ip 10.8.0.190 142034 username mosi 142034 mac 142034 bytes_out 554058 142034 bytes_in 1733976 142034 station_ip 5.62.206.32 142034 port 414 142034 unique_id port 142034 remote_ip 10.8.0.138 142035 username farhad2 142035 mac 142035 bytes_out 1539257 142035 bytes_in 14633353 142035 station_ip 5.119.78.202 142035 port 413 142035 unique_id port 142035 remote_ip 10.8.0.190 142046 username farhad2 142046 mac 142046 bytes_out 0 142046 bytes_in 0 142046 station_ip 5.119.78.202 142046 port 436 142046 unique_id port 142046 remote_ip 10.8.0.190 142049 username alihajmalek 142049 kill_reason Another user logged on this global unique id 142049 mac 142049 bytes_out 0 142049 bytes_in 0 142049 station_ip 113.203.95.123 142049 port 379 142049 unique_id port 142051 username Mahin 142051 mac 142051 bytes_out 173700 142051 bytes_in 390829 142051 station_ip 5.120.107.97 142051 port 373 142051 unique_id port 142051 remote_ip 10.8.0.158 142054 username farhad2 142054 mac 142054 bytes_out 0 142054 bytes_in 0 142054 station_ip 5.119.78.202 142054 port 432 142054 unique_id port 142054 remote_ip 10.8.0.190 142061 username farhad2 142061 mac 142061 bytes_out 108212 142061 bytes_in 703993 142061 station_ip 5.119.78.202 142061 port 432 142061 unique_id port 142061 remote_ip 10.8.0.190 142062 username amirabbas 142062 unique_id port 142062 terminate_cause User-Request 142062 bytes_out 23396788 142062 bytes_in 652535544 142062 station_ip 37.27.23.77 142062 port 15730747 142062 nas_port_type Virtual 142062 remote_ip 5.5.5.137 142065 username vanila 142065 mac 142065 bytes_out 6861356 142065 bytes_in 3058512 142065 station_ip 37.129.17.160 142065 port 439 142065 unique_id port 142065 remote_ip 10.8.0.178 142067 username sabaghnezhad 142067 mac 142067 bytes_out 0 142067 bytes_in 0 142067 station_ip 5.213.12.70 142067 port 414 142067 unique_id port 142067 remote_ip 10.8.0.186 142074 username sedighe 142074 mac 142074 bytes_out 304305 142074 bytes_in 1342608 142074 station_ip 83.123.68.200 142074 port 440 142074 unique_id port 142074 remote_ip 10.8.0.146 142075 username mosi 142075 mac 142038 remote_ip 10.8.0.210 142040 username farhad2 142040 mac 142040 bytes_out 0 142040 bytes_in 0 142040 station_ip 5.119.78.202 142040 port 414 142040 unique_id port 142040 remote_ip 10.8.0.190 142043 username hashtadani3 142043 mac 142043 bytes_out 0 142043 bytes_in 0 142043 station_ip 83.122.70.87 142043 port 227 142043 unique_id port 142043 remote_ip 10.8.1.94 142044 username alihajmalek 142044 kill_reason Another user logged on this global unique id 142044 mac 142044 bytes_out 0 142044 bytes_in 0 142044 station_ip 113.203.95.123 142044 port 379 142044 unique_id port 142047 username farhad2 142047 mac 142047 bytes_out 48853 142047 bytes_in 69987 142047 station_ip 5.119.78.202 142047 port 436 142047 unique_id port 142047 remote_ip 10.8.0.190 142052 username farhad2 142052 mac 142052 bytes_out 0 142052 bytes_in 0 142052 station_ip 5.119.78.202 142052 port 432 142052 unique_id port 142052 remote_ip 10.8.0.190 142053 username farhad2 142053 mac 142053 bytes_out 0 142053 bytes_in 0 142053 station_ip 5.119.78.202 142053 port 432 142053 unique_id port 142053 remote_ip 10.8.0.190 142055 username aminvpn 142055 mac 142055 bytes_out 0 142055 bytes_in 0 142055 station_ip 5.119.168.38 142055 port 436 142055 unique_id port 142055 remote_ip 10.8.0.14 142057 username farhad2 142057 mac 142057 bytes_out 0 142057 bytes_in 0 142057 station_ip 5.119.78.202 142057 port 432 142057 unique_id port 142057 remote_ip 10.8.0.190 142059 username alihajmalek 142059 kill_reason Another user logged on this global unique id 142059 mac 142059 bytes_out 0 142059 bytes_in 0 142059 station_ip 113.203.95.123 142059 port 379 142059 unique_id port 142060 username farhad2 142060 mac 142060 bytes_out 0 142060 bytes_in 0 142060 station_ip 5.119.78.202 142060 port 432 142060 unique_id port 142060 remote_ip 10.8.0.190 142064 username alihajmalek 142064 kill_reason Another user logged on this global unique id 142064 mac 142064 bytes_out 0 142064 bytes_in 0 142064 station_ip 113.203.95.123 142064 port 379 142064 unique_id port 142069 username alihajmalek 142069 mac 142069 bytes_out 0 142069 bytes_in 0 142069 station_ip 113.203.95.123 142069 port 379 142069 unique_id port 142070 username Mahin 142070 mac 142070 bytes_out 42729 142070 bytes_in 78582 142070 station_ip 5.120.107.97 142070 port 373 142070 unique_id port 142070 remote_ip 10.8.0.158 142071 username hashtadani3 142071 kill_reason Another user logged on this global unique id 142071 mac 142071 bytes_out 0 142071 bytes_in 0 142071 station_ip 83.122.70.87 142071 port 227 142071 unique_id port 142071 remote_ip 10.8.1.94 142072 username alihajmalek 142072 kill_reason Another user logged on this global unique id 142072 mac 142072 bytes_out 0 142072 bytes_in 0 142072 station_ip 113.203.95.123 142072 port 436 142072 unique_id port 142072 remote_ip 10.8.0.210 142085 username bcboard 142085 unique_id port 142085 terminate_cause User-Request 142085 bytes_out 48416 142085 bytes_in 194145 142085 station_ip 83.122.83.141 142085 port 15730772 142085 nas_port_type Virtual 142085 remote_ip 5.5.5.255 142086 username farhad2 142086 mac 142086 bytes_out 0 142086 bytes_in 0 142086 station_ip 5.119.78.202 142086 port 229 142086 unique_id port 142086 remote_ip 10.8.1.222 142087 username bcboard 142087 unique_id port 142087 terminate_cause User-Request 142087 bytes_out 128133 142087 bytes_in 1721802 142087 station_ip 83.122.83.141 142087 port 15730773 142087 nas_port_type Virtual 142087 remote_ip 5.5.5.255 142090 username bcboard 142090 unique_id port 142066 bytes_out 3106139 142066 bytes_in 44880867 142066 station_ip 5.120.38.110 142066 port 414 142066 unique_id port 142066 remote_ip 10.8.0.22 142068 username farhad2 142068 mac 142068 bytes_out 186280 142068 bytes_in 355404 142068 station_ip 5.119.78.202 142068 port 432 142068 unique_id port 142068 remote_ip 10.8.0.190 142073 username farhad2 142073 mac 142073 bytes_out 266760 142073 bytes_in 1111669 142073 station_ip 5.119.78.202 142073 port 432 142073 unique_id port 142073 remote_ip 10.8.0.190 142076 username farhad2 142076 mac 142076 bytes_out 0 142076 bytes_in 0 142076 station_ip 5.119.78.202 142076 port 432 142076 unique_id port 142076 remote_ip 10.8.0.190 142078 username aminvpn 142078 mac 142078 bytes_out 1644 142078 bytes_in 4617 142078 station_ip 5.119.168.38 142078 port 432 142078 unique_id port 142078 remote_ip 10.8.0.14 142080 username sedighe 142080 mac 142080 bytes_out 39906 142080 bytes_in 58185 142080 station_ip 113.203.42.241 142080 port 438 142080 unique_id port 142080 remote_ip 10.8.0.146 142081 username bcboard 142081 unique_id port 142081 terminate_cause User-Request 142081 bytes_out 99929 142081 bytes_in 317790 142081 station_ip 83.122.83.141 142081 port 15730770 142081 nas_port_type Virtual 142081 remote_ip 5.5.5.255 142082 username alihajmalek 142082 kill_reason Another user logged on this global unique id 142082 mac 142082 bytes_out 0 142082 bytes_in 0 142082 station_ip 113.203.95.123 142082 port 436 142082 unique_id port 142084 username mohammadjavad 142084 mac 142084 bytes_out 704362 142084 bytes_in 9647914 142084 station_ip 83.122.92.36 142084 port 379 142084 unique_id port 142084 remote_ip 10.8.0.142 142088 username alihajmalek 142088 kill_reason Another user logged on this global unique id 142088 mac 142088 bytes_out 0 142088 bytes_in 0 142088 station_ip 113.203.95.123 142088 port 436 142088 unique_id port 142091 username aminvpn 142091 mac 142091 bytes_out 0 142091 bytes_in 0 142091 station_ip 5.119.168.38 142091 port 231 142091 unique_id port 142091 remote_ip 10.8.1.6 142094 username mirzaei 142094 mac 142094 bytes_out 640907 142094 bytes_in 3556241 142094 station_ip 5.119.62.236 142094 port 413 142094 unique_id port 142094 remote_ip 10.8.0.66 142095 username alihajmalek 142095 kill_reason Another user logged on this global unique id 142095 mac 142095 bytes_out 0 142095 bytes_in 0 142095 station_ip 113.203.95.123 142095 port 436 142095 unique_id port 142097 username saeed9658 142097 mac 142097 bytes_out 0 142097 bytes_in 0 142097 station_ip 5.120.96.5 142097 port 439 142097 unique_id port 142097 remote_ip 10.8.0.62 142098 username farhad2 142098 mac 142098 bytes_out 0 142098 bytes_in 0 142098 station_ip 5.119.78.202 142098 port 229 142098 unique_id port 142098 remote_ip 10.8.1.222 142104 username aminvpn 142104 mac 142104 bytes_out 0 142104 bytes_in 0 142104 station_ip 5.119.168.38 142104 port 229 142104 unique_id port 142104 remote_ip 10.8.1.6 142109 username hashtadani3 142109 mac 142109 bytes_out 0 142109 bytes_in 0 142109 station_ip 83.122.70.87 142109 port 227 142109 unique_id port 142110 username mohammadmahdi 142110 kill_reason Another user logged on this global unique id 142110 mac 142110 bytes_out 0 142110 bytes_in 0 142110 station_ip 5.119.13.214 142110 port 438 142110 unique_id port 142110 remote_ip 10.8.0.54 142111 username hashtadani3 142111 kill_reason Maximum number of concurrent logins reached 142111 mac 142111 bytes_out 0 142111 bytes_in 0 142111 station_ip 83.122.70.87 142111 port 441 142075 bytes_out 0 142075 bytes_in 0 142075 station_ip 5.200.115.61 142075 port 229 142075 unique_id port 142075 remote_ip 10.8.1.86 142077 username ahmadipour 142077 kill_reason Relative expiration date has reached 142077 unique_id port 142077 bytes_out 0 142077 bytes_in 0 142077 station_ip 83.123.223.68 142077 port 15730769 142077 nas_port_type Virtual 142079 username alihajmalek 142079 kill_reason Another user logged on this global unique id 142079 mac 142079 bytes_out 0 142079 bytes_in 0 142079 station_ip 113.203.95.123 142079 port 436 142079 unique_id port 142083 username bcboard 142083 unique_id port 142083 terminate_cause User-Request 142083 bytes_out 195317 142083 bytes_in 721062 142083 station_ip 83.122.83.141 142083 port 15730771 142083 nas_port_type Virtual 142083 remote_ip 5.5.5.255 142089 username malekpoir 142089 kill_reason Another user logged on this global unique id 142089 mac 142089 bytes_out 0 142089 bytes_in 0 142089 station_ip 5.119.229.8 142089 port 433 142089 unique_id port 142096 username mosi 142096 mac 142096 bytes_out 0 142096 bytes_in 0 142096 station_ip 5.200.115.61 142096 port 230 142096 unique_id port 142096 remote_ip 10.8.1.86 142100 username mohammadmahdi 142100 kill_reason Another user logged on this global unique id 142100 mac 142100 bytes_out 0 142100 bytes_in 0 142100 station_ip 5.119.13.214 142100 port 432 142100 unique_id port 142100 remote_ip 10.8.0.54 142105 username alihajmalek 142105 kill_reason Another user logged on this global unique id 142105 mac 142105 bytes_out 0 142105 bytes_in 0 142105 station_ip 113.203.95.123 142105 port 436 142105 unique_id port 142106 username aminvpn 142106 mac 142106 bytes_out 0 142106 bytes_in 0 142106 station_ip 5.119.168.38 142106 port 432 142106 unique_id port 142106 remote_ip 10.8.0.14 142108 username mirzaei 142108 mac 142108 bytes_out 48462 142108 bytes_in 64093 142108 station_ip 5.112.129.95 142108 port 413 142108 unique_id port 142108 remote_ip 10.8.0.66 142114 username hashtadani3 142114 kill_reason Maximum check online fails reached 142114 mac 142114 bytes_out 0 142114 bytes_in 0 142114 station_ip 83.122.70.87 142114 port 227 142114 unique_id port 142116 username alihajmalek 142116 kill_reason Another user logged on this global unique id 142116 mac 142116 bytes_out 0 142116 bytes_in 0 142116 station_ip 113.203.95.123 142116 port 436 142116 unique_id port 142120 username kalantary 142120 mac 142120 bytes_out 0 142120 bytes_in 0 142120 station_ip 83.123.103.233 142120 port 379 142120 unique_id port 142120 remote_ip 10.8.0.98 142121 username mohammadjavad 142121 mac 142121 bytes_out 0 142121 bytes_in 0 142121 station_ip 113.203.56.160 142121 port 440 142121 unique_id port 142121 remote_ip 10.8.0.142 142124 username kalantary 142124 mac 142124 bytes_out 0 142124 bytes_in 0 142124 station_ip 83.123.103.233 142124 port 379 142124 unique_id port 142124 remote_ip 10.8.0.98 142131 username kalantary 142131 kill_reason Another user logged on this global unique id 142131 mac 142131 bytes_out 0 142131 bytes_in 0 142131 station_ip 83.123.103.233 142131 port 413 142131 unique_id port 142131 remote_ip 10.8.0.98 142137 username mehrpouyan 142137 mac 142137 bytes_out 1572 142137 bytes_in 8178 142137 station_ip 5.119.117.210 142137 port 444 142137 unique_id port 142137 remote_ip 10.8.0.74 142140 username bcboard 142140 unique_id port 142140 terminate_cause Lost-Carrier 142140 bytes_out 15161647 142140 bytes_in 413716772 142140 station_ip 83.122.83.141 142140 port 15730776 142140 nas_port_type Virtual 142140 remote_ip 5.5.5.65 142141 username mohammadmahdi 142141 mac 142090 terminate_cause User-Request 142090 bytes_out 74848 142090 bytes_in 303420 142090 station_ip 83.122.83.141 142090 port 15730774 142090 nas_port_type Virtual 142090 remote_ip 5.5.5.255 142092 username alikomsari 142092 kill_reason Another user logged on this global unique id 142092 mac 142092 bytes_out 0 142092 bytes_in 0 142092 station_ip 5.119.182.42 142092 port 373 142092 unique_id port 142092 remote_ip 10.8.0.70 142093 username sabaghnezhad 142093 mac 142093 bytes_out 694827 142093 bytes_in 4421090 142093 station_ip 5.213.12.70 142093 port 414 142093 unique_id port 142093 remote_ip 10.8.0.186 142099 username vanila 142099 mac 142099 bytes_out 7739027 142099 bytes_in 30206401 142099 station_ip 37.129.17.160 142099 port 379 142099 unique_id port 142099 remote_ip 10.8.0.178 142101 username alihajmalek 142101 kill_reason Another user logged on this global unique id 142101 mac 142101 bytes_out 0 142101 bytes_in 0 142101 station_ip 113.203.95.123 142101 port 436 142101 unique_id port 142102 username mohammadmahdi 142102 mac 142102 bytes_out 0 142102 bytes_in 0 142102 station_ip 5.119.13.214 142102 port 432 142102 unique_id port 142103 username bcboard 142103 unique_id port 142103 terminate_cause User-Request 142103 bytes_out 8969 142103 bytes_in 336 142103 station_ip 83.122.83.141 142103 port 15730775 142103 nas_port_type Virtual 142103 remote_ip 5.5.5.64 142107 username vanila 142107 mac 142107 bytes_out 481210 142107 bytes_in 2726253 142107 station_ip 37.129.17.160 142107 port 379 142107 unique_id port 142107 remote_ip 10.8.0.178 142112 username alihajmalek 142112 kill_reason Another user logged on this global unique id 142112 mac 142112 bytes_out 0 142112 bytes_in 0 142112 station_ip 113.203.95.123 142112 port 436 142112 unique_id port 142113 username hashtadani3 142113 mac 142113 bytes_out 1644 142113 bytes_in 4001 142113 station_ip 83.122.70.87 142113 port 439 142113 unique_id port 142113 remote_ip 10.8.0.154 142115 username moradi 142115 mac 142115 bytes_out 0 142115 bytes_in 0 142115 station_ip 37.129.26.13 142115 port 379 142115 unique_id port 142115 remote_ip 10.8.0.250 142118 username houshang 142118 mac 142118 bytes_out 0 142118 bytes_in 0 142118 station_ip 5.120.38.110 142118 port 413 142118 unique_id port 142118 remote_ip 10.8.0.22 142122 username aminvpn 142122 mac 142122 bytes_out 0 142122 bytes_in 0 142122 station_ip 5.119.168.38 142122 port 379 142122 unique_id port 142122 remote_ip 10.8.0.14 142123 username mohammadmahdi 142123 kill_reason Another user logged on this global unique id 142123 mac 142123 bytes_out 0 142123 bytes_in 0 142123 station_ip 5.119.13.214 142123 port 438 142123 unique_id port 142126 username farhad2 142126 mac 142126 bytes_out 31713 142126 bytes_in 48313 142126 station_ip 5.119.78.202 142126 port 229 142126 unique_id port 142126 remote_ip 10.8.1.222 142127 username mirzaei 142127 mac 142127 bytes_out 53396 142127 bytes_in 116631 142127 station_ip 5.114.91.96 142127 port 413 142127 unique_id port 142127 remote_ip 10.8.0.66 142128 username alikomsari 142128 kill_reason Another user logged on this global unique id 142128 mac 142128 bytes_out 0 142128 bytes_in 0 142128 station_ip 5.119.182.42 142128 port 373 142128 unique_id port 142129 username aminvpn 142129 mac 142129 bytes_out 0 142129 bytes_in 0 142129 station_ip 5.119.168.38 142129 port 440 142129 unique_id port 142129 remote_ip 10.8.0.14 142132 username farhad2 142132 mac 142132 bytes_out 99162 142132 bytes_in 357918 142132 station_ip 5.119.78.202 142132 port 229 142111 unique_id port 142117 username farhad2 142117 mac 142117 bytes_out 0 142117 bytes_in 0 142117 station_ip 5.119.78.202 142117 port 414 142117 unique_id port 142117 remote_ip 10.8.0.190 142119 username alihajmalek 142119 kill_reason Another user logged on this global unique id 142119 mac 142119 bytes_out 0 142119 bytes_in 0 142119 station_ip 113.203.95.123 142119 port 436 142119 unique_id port 142125 username farhad2 142125 mac 142125 bytes_out 42907306 142125 bytes_in 4436664 142125 station_ip 5.119.78.202 142125 port 229 142125 unique_id port 142125 remote_ip 10.8.1.222 142130 username vanila 142130 mac 142130 bytes_out 0 142130 bytes_in 0 142130 station_ip 37.129.17.160 142130 port 432 142130 unique_id port 142130 remote_ip 10.8.0.178 142133 username alihajmalek 142133 kill_reason Another user logged on this global unique id 142133 mac 142133 bytes_out 0 142133 bytes_in 0 142133 station_ip 113.203.95.123 142133 port 436 142133 unique_id port 142134 username mehrpouyan 142134 mac 142134 bytes_out 0 142134 bytes_in 0 142134 station_ip 5.120.7.102 142134 port 439 142134 unique_id port 142134 remote_ip 10.8.0.74 142135 username sekonji3 142135 mac 142135 bytes_out 0 142135 bytes_in 0 142135 station_ip 113.203.56.77 142135 port 442 142135 unique_id port 142135 remote_ip 10.8.0.6 142138 username vanila 142138 mac 142138 bytes_out 0 142138 bytes_in 0 142138 station_ip 37.129.17.160 142138 port 440 142138 unique_id port 142138 remote_ip 10.8.0.178 142145 username shahrooz 142145 unique_id port 142145 terminate_cause User-Request 142145 bytes_out 10952961 142145 bytes_in 314524672 142145 station_ip 83.123.93.233 142145 port 15730777 142145 nas_port_type Virtual 142145 remote_ip 5.5.5.78 142147 username farhad2 142147 mac 142147 bytes_out 0 142147 bytes_in 0 142147 station_ip 5.119.78.202 142147 port 229 142147 unique_id port 142147 remote_ip 10.8.1.222 142150 username moradi 142150 mac 142150 bytes_out 0 142150 bytes_in 0 142150 station_ip 37.129.118.149 142150 port 414 142150 unique_id port 142150 remote_ip 10.8.0.250 142152 username mehrpouyan 142152 mac 142152 bytes_out 0 142152 bytes_in 0 142152 station_ip 5.119.117.210 142152 port 379 142152 unique_id port 142152 remote_ip 10.8.0.74 142157 username moradi 142157 mac 142157 bytes_out 0 142157 bytes_in 0 142157 station_ip 37.129.118.149 142157 port 230 142157 unique_id port 142157 remote_ip 10.8.1.202 142159 username farhad2 142159 mac 142159 bytes_out 0 142159 bytes_in 0 142159 station_ip 5.119.158.126 142159 port 436 142159 unique_id port 142159 remote_ip 10.8.0.190 142165 username farhad2 142165 mac 142165 bytes_out 2047036 142165 bytes_in 30382050 142165 station_ip 5.119.158.126 142165 port 436 142165 unique_id port 142165 remote_ip 10.8.0.190 142166 username aminvpn 142166 mac 142166 bytes_out 0 142166 bytes_in 0 142166 station_ip 5.119.168.38 142166 port 230 142166 unique_id port 142166 remote_ip 10.8.1.6 142170 username moradi 142170 mac 142170 bytes_out 0 142170 bytes_in 0 142170 station_ip 37.129.118.149 142170 port 229 142170 unique_id port 142170 remote_ip 10.8.1.202 142175 username mahdixz 142175 unique_id port 142175 terminate_cause User-Request 142175 bytes_out 206940 142175 bytes_in 1328224 142175 station_ip 37.129.189.153 142175 port 15730779 142175 nas_port_type Virtual 142175 remote_ip 5.5.5.90 142177 username mahdiyehalizadeh 142177 mac 142177 bytes_out 116921 142177 bytes_in 1492306 142177 station_ip 83.123.122.178 142132 unique_id port 142132 remote_ip 10.8.1.222 142136 username mirzaei 142136 mac 142136 bytes_out 39969 142136 bytes_in 56956 142136 station_ip 5.113.255.217 142136 port 379 142136 unique_id port 142136 remote_ip 10.8.0.66 142139 username kalantary 142139 mac 142139 bytes_out 0 142139 bytes_in 0 142139 station_ip 83.123.103.233 142139 port 413 142139 unique_id port 142143 username mohammadjavad 142143 mac 142143 bytes_out 0 142143 bytes_in 0 142143 station_ip 113.203.56.160 142143 port 414 142143 unique_id port 142143 remote_ip 10.8.0.142 142146 username alihajmalek 142146 mac 142146 bytes_out 0 142146 bytes_in 0 142146 station_ip 113.203.95.123 142146 port 436 142146 unique_id port 142148 username mirzaei 142148 mac 142148 bytes_out 24449 142148 bytes_in 38679 142148 station_ip 5.113.255.217 142148 port 438 142148 unique_id port 142148 remote_ip 10.8.0.66 142151 username farhad2 142151 mac 142151 bytes_out 0 142151 bytes_in 0 142151 station_ip 5.119.78.202 142151 port 229 142151 unique_id port 142151 remote_ip 10.8.1.222 142153 username aminvpn 142153 mac 142153 bytes_out 0 142153 bytes_in 0 142153 station_ip 5.119.168.38 142153 port 414 142153 unique_id port 142153 remote_ip 10.8.0.14 142154 username khademi 142154 kill_reason Another user logged on this global unique id 142154 mac 142154 bytes_out 0 142154 bytes_in 0 142154 station_ip 83.122.155.34 142154 port 442 142154 unique_id port 142154 remote_ip 10.8.0.10 142156 username hamid 142156 kill_reason Another user logged on this global unique id 142156 mac 142156 bytes_out 0 142156 bytes_in 0 142156 station_ip 83.122.69.25 142156 port 432 142156 unique_id port 142158 username forozandeh1 142158 mac 142158 bytes_out 0 142158 bytes_in 0 142158 station_ip 83.123.229.45 142158 port 440 142158 unique_id port 142158 remote_ip 10.8.0.130 142161 username forozandeh1 142161 mac 142161 bytes_out 0 142161 bytes_in 0 142161 station_ip 83.123.229.45 142161 port 373 142161 unique_id port 142161 remote_ip 10.8.0.130 142163 username mirzaei 142163 mac 142163 bytes_out 60210 142163 bytes_in 131073 142163 station_ip 5.112.147.133 142163 port 379 142163 unique_id port 142163 remote_ip 10.8.0.66 142168 username mehrpouyan 142168 mac 142168 bytes_out 8822 142168 bytes_in 9498 142168 station_ip 5.119.117.210 142168 port 379 142168 unique_id port 142168 remote_ip 10.8.0.74 142171 username godarzi 142171 kill_reason Another user logged on this global unique id 142171 mac 142171 bytes_out 0 142171 bytes_in 0 142171 station_ip 5.202.134.253 142171 port 439 142171 unique_id port 142174 username mehrpouyan 142174 mac 142174 bytes_out 994799 142174 bytes_in 9969344 142174 station_ip 5.119.180.19 142174 port 379 142174 unique_id port 142174 remote_ip 10.8.0.74 142178 username mehrpouyan 142178 mac 142178 bytes_out 358678 142178 bytes_in 2225279 142178 station_ip 5.120.138.150 142178 port 373 142178 unique_id port 142178 remote_ip 10.8.0.74 142184 username godarzi 142184 kill_reason Another user logged on this global unique id 142184 mac 142184 bytes_out 0 142184 bytes_in 0 142184 station_ip 5.202.134.253 142184 port 439 142184 unique_id port 142186 username malekpoir 142186 mac 142186 bytes_out 0 142186 bytes_in 0 142186 station_ip 5.119.229.8 142186 port 433 142186 unique_id port 142187 username hosseine 142187 mac 142187 bytes_out 959262 142187 bytes_in 5283883 142187 station_ip 83.122.18.148 142187 port 443 142187 unique_id port 142187 remote_ip 10.8.0.238 142141 bytes_out 0 142141 bytes_in 0 142141 station_ip 5.119.13.214 142141 port 438 142141 unique_id port 142142 username mirzaei 142142 kill_reason Maximum check online fails reached 142142 mac 142142 bytes_out 0 142142 bytes_in 0 142142 station_ip 5.113.255.217 142142 port 413 142142 unique_id port 142144 username aminvpn 142144 mac 142144 bytes_out 0 142144 bytes_in 0 142144 station_ip 5.119.168.38 142144 port 444 142144 unique_id port 142144 remote_ip 10.8.0.14 142149 username hamid 142149 kill_reason Another user logged on this global unique id 142149 mac 142149 bytes_out 0 142149 bytes_in 0 142149 station_ip 83.122.69.25 142149 port 432 142149 unique_id port 142149 remote_ip 10.8.0.106 142155 username alikomsari 142155 mac 142155 bytes_out 0 142155 bytes_in 0 142155 station_ip 5.119.182.42 142155 port 373 142155 unique_id port 142160 username moradi 142160 mac 142160 bytes_out 0 142160 bytes_in 0 142160 station_ip 37.129.118.149 142160 port 229 142160 unique_id port 142160 remote_ip 10.8.1.202 142162 username kalantary 142162 mac 142162 bytes_out 2705727 142162 bytes_in 44343786 142162 station_ip 83.123.105.221 142162 port 414 142162 unique_id port 142162 remote_ip 10.8.0.98 142164 username godarzi 142164 kill_reason Another user logged on this global unique id 142164 mac 142164 bytes_out 0 142164 bytes_in 0 142164 station_ip 5.202.134.253 142164 port 439 142164 unique_id port 142164 remote_ip 10.8.0.174 142167 username hamid 142167 mac 142167 bytes_out 0 142167 bytes_in 0 142167 station_ip 83.122.69.25 142167 port 432 142167 unique_id port 142169 username mehrpouyan 142169 mac 142169 bytes_out 1690 142169 bytes_in 4383 142169 station_ip 5.119.117.210 142169 port 379 142169 unique_id port 142169 remote_ip 10.8.0.74 142172 username aminvpn 142172 mac 142172 bytes_out 0 142172 bytes_in 0 142172 station_ip 5.119.168.38 142172 port 438 142172 unique_id port 142172 remote_ip 10.8.0.14 142173 username mirzaei 142173 mac 142173 bytes_out 88661 142173 bytes_in 166735 142173 station_ip 5.113.29.234 142173 port 373 142173 unique_id port 142173 remote_ip 10.8.0.66 142176 username vanila 142176 mac 142176 bytes_out 6984286 142176 bytes_in 3705553 142176 station_ip 37.129.90.172 142176 port 414 142176 unique_id port 142176 remote_ip 10.8.0.178 142179 username mahdixz 142179 unique_id port 142179 terminate_cause User-Request 142179 bytes_out 520092 142179 bytes_in 1544940 142179 station_ip 37.129.189.153 142179 port 15730780 142179 nas_port_type Virtual 142179 remote_ip 5.5.5.91 142185 username hamid 142185 mac 142185 bytes_out 0 142185 bytes_in 0 142185 station_ip 83.122.69.25 142185 port 432 142185 unique_id port 142185 remote_ip 10.8.0.106 142190 username godarzi 142190 kill_reason Another user logged on this global unique id 142190 mac 142190 bytes_out 0 142190 bytes_in 0 142190 station_ip 5.202.134.253 142190 port 439 142190 unique_id port 142194 username hashtadani3 142194 mac 142194 bytes_out 0 142194 bytes_in 0 142194 station_ip 83.122.70.87 142194 port 229 142194 unique_id port 142194 remote_ip 10.8.1.94 142196 username hashtadani3 142196 kill_reason Maximum check online fails reached 142196 mac 142196 bytes_out 0 142196 bytes_in 0 142196 station_ip 83.122.70.87 142196 port 373 142196 unique_id port 142197 username malekpoir 142197 mac 142197 bytes_out 0 142197 bytes_in 0 142197 station_ip 5.119.229.8 142197 port 414 142197 unique_id port 142197 remote_ip 10.8.0.58 142199 username hashtadani3 142199 mac 142177 port 438 142177 unique_id port 142177 remote_ip 10.8.0.82 142180 username godarzi 142180 kill_reason Another user logged on this global unique id 142180 mac 142180 bytes_out 0 142180 bytes_in 0 142180 station_ip 5.202.134.253 142180 port 439 142180 unique_id port 142181 username mahdixz 142181 unique_id port 142181 terminate_cause User-Request 142181 bytes_out 244448 142181 bytes_in 1598603 142181 station_ip 37.129.189.153 142181 port 15730781 142181 nas_port_type Virtual 142181 remote_ip 5.5.5.94 142182 username aminvpn 142182 mac 142182 bytes_out 0 142182 bytes_in 0 142182 station_ip 5.119.168.38 142182 port 373 142182 unique_id port 142182 remote_ip 10.8.0.14 142183 username moradi 142183 mac 142183 bytes_out 127915 142183 bytes_in 165140 142183 station_ip 37.129.118.149 142183 port 436 142183 unique_id port 142183 remote_ip 10.8.0.250 142188 username aminvpn 142188 mac 142188 bytes_out 0 142188 bytes_in 0 142188 station_ip 5.119.168.38 142188 port 432 142188 unique_id port 142188 remote_ip 10.8.0.14 142191 username aminvpn 142191 mac 142191 bytes_out 0 142191 bytes_in 0 142191 station_ip 5.119.168.38 142191 port 373 142191 unique_id port 142191 remote_ip 10.8.0.14 142193 username hashtadani3 142193 mac 142193 bytes_out 0 142193 bytes_in 0 142193 station_ip 83.122.70.87 142193 port 432 142193 unique_id port 142193 remote_ip 10.8.0.154 142198 username hashtadani3 142198 kill_reason Maximum check online fails reached 142198 mac 142198 bytes_out 0 142198 bytes_in 0 142198 station_ip 83.122.70.87 142198 port 433 142198 unique_id port 142202 username hashtadani3 142202 kill_reason Maximum check online fails reached 142202 mac 142202 bytes_out 0 142202 bytes_in 0 142202 station_ip 83.122.70.87 142202 port 414 142202 unique_id port 142205 username farhad2 142205 mac 142205 bytes_out 0 142205 bytes_in 0 142205 station_ip 5.120.118.85 142205 port 432 142205 unique_id port 142205 remote_ip 10.8.0.190 142206 username kalantary 142206 kill_reason Another user logged on this global unique id 142206 mac 142206 bytes_out 0 142206 bytes_in 0 142206 station_ip 83.123.87.1 142206 port 443 142206 unique_id port 142206 remote_ip 10.8.0.98 142207 username aminvpn 142207 mac 142207 bytes_out 0 142207 bytes_in 0 142207 station_ip 5.119.168.38 142207 port 439 142207 unique_id port 142207 remote_ip 10.8.0.14 142214 username farhad2 142214 mac 142214 bytes_out 0 142214 bytes_in 0 142214 station_ip 5.120.118.85 142214 port 230 142214 unique_id port 142214 remote_ip 10.8.1.222 142217 username kalantary 142217 mac 142217 bytes_out 0 142217 bytes_in 0 142217 station_ip 83.123.87.1 142217 port 443 142217 unique_id port 142218 username kalantary 142218 mac 142218 bytes_out 96457 142218 bytes_in 166343 142218 station_ip 83.123.87.1 142218 port 439 142218 unique_id port 142218 remote_ip 10.8.0.98 142220 username hamidsalari 142220 kill_reason Another user logged on this global unique id 142220 mac 142220 bytes_out 0 142220 bytes_in 0 142220 station_ip 5.119.200.40 142220 port 377 142220 unique_id port 142221 username aminvpn 142221 mac 142221 bytes_out 0 142221 bytes_in 0 142221 station_ip 37.129.186.14 142221 port 444 142221 unique_id port 142221 remote_ip 10.8.0.14 142222 username aminvpn 142222 mac 142222 bytes_out 0 142222 bytes_in 0 142222 station_ip 5.119.168.38 142222 port 445 142222 unique_id port 142222 remote_ip 10.8.0.14 142228 username mahdiyehalizadeh 142228 mac 142228 bytes_out 61881 142228 bytes_in 182638 142189 username hashtadani3 142189 mac 142189 bytes_out 1796843 142189 bytes_in 13797267 142189 station_ip 83.122.70.87 142189 port 373 142189 unique_id port 142189 remote_ip 10.8.0.154 142192 username mosi 142192 kill_reason Another user logged on this global unique id 142192 mac 142192 bytes_out 0 142192 bytes_in 0 142192 station_ip 151.235.75.185 142192 port 441 142192 unique_id port 142192 remote_ip 10.8.0.138 142195 username hashtadani3 142195 kill_reason Maximum number of concurrent logins reached 142195 mac 142195 bytes_out 0 142195 bytes_in 0 142195 station_ip 83.122.70.87 142195 port 436 142195 unique_id port 142200 username hashtadani3 142200 kill_reason Maximum check online fails reached 142200 mac 142200 bytes_out 0 142200 bytes_in 0 142200 station_ip 83.122.70.87 142200 port 436 142200 unique_id port 142201 username hashtadani3 142201 kill_reason Maximum number of concurrent logins reached 142201 mac 142201 bytes_out 0 142201 bytes_in 0 142201 station_ip 83.122.70.87 142201 port 230 142201 unique_id port 142210 username hamidsalari 142210 kill_reason Another user logged on this global unique id 142210 mac 142210 bytes_out 0 142210 bytes_in 0 142210 station_ip 5.119.200.40 142210 port 377 142210 unique_id port 142211 username vanila 142211 mac 142211 bytes_out 0 142211 bytes_in 0 142211 station_ip 37.129.90.212 142211 port 446 142211 unique_id port 142211 remote_ip 10.8.0.178 142216 username aminvpn 142216 mac 142216 bytes_out 0 142216 bytes_in 0 142216 station_ip 5.119.168.38 142216 port 439 142216 unique_id port 142216 remote_ip 10.8.0.14 142223 username yaghobi 142223 mac 142223 bytes_out 0 142223 bytes_in 0 142223 station_ip 83.123.220.168 142223 port 444 142223 unique_id port 142223 remote_ip 10.8.0.198 142224 username mahdiyehalizadeh 142224 mac 142224 bytes_out 0 142224 bytes_in 0 142224 station_ip 37.129.164.6 142224 port 446 142224 unique_id port 142224 remote_ip 10.8.0.82 142225 username hamid.e 142225 unique_id port 142225 terminate_cause User-Request 142225 bytes_out 4164028 142225 bytes_in 52744212 142225 station_ip 37.27.25.207 142225 port 15730778 142225 nas_port_type Virtual 142225 remote_ip 5.5.5.88 142227 username hamidsalari 142227 kill_reason Another user logged on this global unique id 142227 mac 142227 bytes_out 0 142227 bytes_in 0 142227 station_ip 5.119.200.40 142227 port 377 142227 unique_id port 142229 username yaghobi 142229 mac 142229 bytes_out 0 142229 bytes_in 0 142229 station_ip 83.123.220.168 142229 port 445 142229 unique_id port 142229 remote_ip 10.8.0.198 142230 username aminvpn 142230 mac 142230 bytes_out 0 142230 bytes_in 0 142230 station_ip 5.119.168.38 142230 port 445 142230 unique_id port 142230 remote_ip 10.8.0.14 142231 username kalantary 142231 mac 142231 bytes_out 2530737 142231 bytes_in 26960936 142231 station_ip 83.123.87.1 142231 port 443 142231 unique_id port 142231 remote_ip 10.8.0.98 142234 username farhad2 142234 mac 142234 bytes_out 0 142234 bytes_in 0 142234 station_ip 5.120.138.169 142234 port 444 142234 unique_id port 142237 username godarzi 142237 mac 142237 bytes_out 0 142237 bytes_in 0 142237 station_ip 5.202.134.253 142237 port 439 142237 unique_id port 142237 remote_ip 10.8.0.174 142240 username aminvpn 142240 mac 142240 bytes_out 0 142240 bytes_in 0 142240 station_ip 37.129.186.14 142240 port 230 142240 unique_id port 142240 remote_ip 10.8.1.6 142243 username aminvpn 142243 mac 142243 bytes_out 0 142243 bytes_in 0 142243 station_ip 5.119.168.38 142243 port 231 142199 bytes_out 0 142199 bytes_in 0 142199 station_ip 83.122.70.87 142199 port 229 142199 unique_id port 142199 remote_ip 10.8.1.94 142203 username hashtadani3 142203 kill_reason Maximum check online fails reached 142203 mac 142203 bytes_out 0 142203 bytes_in 0 142203 station_ip 83.122.70.87 142203 port 438 142203 unique_id port 142204 username godarzi 142204 mac 142204 bytes_out 0 142204 bytes_in 0 142204 station_ip 5.202.134.253 142204 port 439 142204 unique_id port 142208 username farhad2 142208 mac 142208 bytes_out 0 142208 bytes_in 0 142208 station_ip 5.120.118.85 142208 port 432 142208 unique_id port 142208 remote_ip 10.8.0.190 142209 username farhad2 142209 kill_reason Maximum check online fails reached 142209 mac 142209 bytes_out 0 142209 bytes_in 0 142209 station_ip 5.120.118.85 142209 port 432 142209 unique_id port 142212 username mohammadjavad 142212 mac 142212 bytes_out 0 142212 bytes_in 0 142212 station_ip 37.129.39.184 142212 port 439 142212 unique_id port 142212 remote_ip 10.8.0.142 142213 username mehrpouyan 142213 mac 142213 bytes_out 0 142213 bytes_in 0 142213 station_ip 5.119.178.1 142213 port 445 142213 unique_id port 142213 remote_ip 10.8.0.74 142215 username aminvpn 142215 mac 142215 bytes_out 0 142215 bytes_in 0 142215 station_ip 37.129.186.14 142215 port 444 142215 unique_id port 142215 remote_ip 10.8.0.14 142219 username mosi 142219 kill_reason Another user logged on this global unique id 142219 mac 142219 bytes_out 0 142219 bytes_in 0 142219 station_ip 151.235.75.185 142219 port 441 142219 unique_id port 142226 username aminvpn 142226 unique_id port 142226 terminate_cause User-Request 142226 bytes_out 174393 142226 bytes_in 269900 142226 station_ip 79.127.6.247 142226 port 15730782 142226 nas_port_type Virtual 142226 remote_ip 5.5.5.100 142233 username meysam 142233 mac 142233 bytes_out 0 142233 bytes_in 0 142233 station_ip 188.158.50.135 142233 port 231 142233 unique_id port 142233 remote_ip 10.8.1.34 142235 username aminvpn 142235 mac 142235 bytes_out 0 142235 bytes_in 0 142235 station_ip 5.119.168.38 142235 port 445 142235 unique_id port 142235 remote_ip 10.8.0.14 142236 username kalantary 142236 mac 142236 bytes_out 346799 142236 bytes_in 1176150 142236 station_ip 83.123.87.1 142236 port 444 142236 unique_id port 142236 remote_ip 10.8.0.98 142239 username aminvpn 142239 mac 142239 bytes_out 0 142239 bytes_in 0 142239 station_ip 5.119.168.38 142239 port 231 142239 unique_id port 142239 remote_ip 10.8.1.6 142242 username aminvpn 142242 mac 142242 bytes_out 0 142242 bytes_in 0 142242 station_ip 37.129.186.14 142242 port 230 142242 unique_id port 142242 remote_ip 10.8.1.6 142245 username aminvpn 142245 mac 142245 bytes_out 0 142245 bytes_in 0 142245 station_ip 5.119.168.38 142245 port 231 142245 unique_id port 142245 remote_ip 10.8.1.6 142250 username aminvpn 142250 mac 142250 bytes_out 0 142250 bytes_in 0 142250 station_ip 83.122.125.186 142250 port 439 142250 unique_id port 142250 remote_ip 10.8.0.14 142251 username aminvpn 142251 mac 142251 bytes_out 0 142251 bytes_in 0 142251 station_ip 83.122.125.186 142251 port 439 142251 unique_id port 142251 remote_ip 10.8.0.14 142254 username vanila 142254 mac 142254 bytes_out 7320709 142254 bytes_in 884168 142254 station_ip 37.129.90.212 142254 port 444 142254 unique_id port 142254 remote_ip 10.8.0.178 142255 username aminvpn 142255 mac 142255 bytes_out 0 142255 bytes_in 0 142228 station_ip 37.129.164.6 142228 port 446 142228 unique_id port 142228 remote_ip 10.8.0.82 142232 username farhad2 142232 kill_reason Another user logged on this global unique id 142232 mac 142232 bytes_out 0 142232 bytes_in 0 142232 station_ip 5.120.138.169 142232 port 444 142232 unique_id port 142232 remote_ip 10.8.0.190 142238 username aminvpn 142238 mac 142238 bytes_out 1074090 142238 bytes_in 11228300 142238 station_ip 37.129.186.14 142238 port 230 142238 unique_id port 142238 remote_ip 10.8.1.6 142241 username aminvpn 142241 mac 142241 bytes_out 0 142241 bytes_in 0 142241 station_ip 5.119.168.38 142241 port 231 142241 unique_id port 142241 remote_ip 10.8.1.6 142246 username aminvpn 142246 mac 142246 bytes_out 515811 142246 bytes_in 3403214 142246 station_ip 83.122.125.186 142246 port 439 142246 unique_id port 142246 remote_ip 10.8.0.14 142248 username aminvpn 142248 mac 142248 bytes_out 0 142248 bytes_in 0 142248 station_ip 5.119.168.38 142248 port 446 142248 unique_id port 142248 remote_ip 10.8.0.14 142252 username aminvpn 142252 mac 142252 bytes_out 0 142252 bytes_in 0 142252 station_ip 37.129.186.14 142252 port 230 142252 unique_id port 142252 remote_ip 10.8.1.6 142256 username moradi 142256 mac 142256 bytes_out 0 142256 bytes_in 0 142256 station_ip 37.129.118.17 142256 port 445 142256 unique_id port 142259 username kalantary 142259 mac 142259 bytes_out 830335 142259 bytes_in 14957049 142259 station_ip 83.123.87.1 142259 port 446 142259 unique_id port 142259 remote_ip 10.8.0.98 142261 username aminvpn 142261 mac 142261 bytes_out 0 142261 bytes_in 0 142261 station_ip 5.119.168.38 142261 port 444 142261 unique_id port 142261 remote_ip 10.8.0.14 142262 username aminvpn 142262 mac 142262 bytes_out 0 142262 bytes_in 0 142262 station_ip 83.122.21.54 142262 port 439 142262 unique_id port 142262 remote_ip 10.8.0.14 142263 username aminvpn 142263 mac 142263 bytes_out 0 142263 bytes_in 0 142263 station_ip 83.122.125.186 142263 port 445 142263 unique_id port 142263 remote_ip 10.8.0.14 142270 username mosi 142270 mac 142270 bytes_out 0 142270 bytes_in 0 142270 station_ip 151.235.75.185 142270 port 441 142270 unique_id port 142272 username mosi 142272 mac 142272 bytes_out 0 142272 bytes_in 0 142272 station_ip 83.122.79.167 142272 port 447 142272 unique_id port 142272 remote_ip 10.8.0.138 142278 username mosi 142278 mac 142278 bytes_out 25309 142278 bytes_in 4970 142278 station_ip 151.235.75.185 142278 port 447 142278 unique_id port 142278 remote_ip 10.8.0.138 142279 username aminvpn 142279 mac 142279 bytes_out 0 142279 bytes_in 0 142279 station_ip 83.122.21.54 142279 port 449 142279 unique_id port 142279 remote_ip 10.8.0.14 142284 username mosi 142284 mac 142284 bytes_out 0 142284 bytes_in 0 142284 station_ip 83.122.79.167 142284 port 231 142284 unique_id port 142284 remote_ip 10.8.1.86 142287 username sabaghnezhad 142287 mac 142287 bytes_out 1998172 142287 bytes_in 5776656 142287 station_ip 5.217.225.153 142287 port 379 142287 unique_id port 142287 remote_ip 10.8.0.186 142294 username sedighe 142294 mac 142294 bytes_out 1285472 142294 bytes_in 21073025 142294 station_ip 83.122.159.230 142294 port 379 142294 unique_id port 142294 remote_ip 10.8.0.146 142296 username aminvpn 142296 mac 142296 bytes_out 0 142296 bytes_in 0 142296 station_ip 37.129.186.14 142296 port 230 142296 unique_id port 142243 unique_id port 142243 remote_ip 10.8.1.6 142244 username aminvpn 142244 mac 142244 bytes_out 0 142244 bytes_in 0 142244 station_ip 37.129.186.14 142244 port 230 142244 unique_id port 142244 remote_ip 10.8.1.6 142247 username moradi 142247 kill_reason Another user logged on this global unique id 142247 mac 142247 bytes_out 0 142247 bytes_in 0 142247 station_ip 37.129.118.17 142247 port 445 142247 unique_id port 142247 remote_ip 10.8.0.250 142249 username kalantary 142249 mac 142249 bytes_out 0 142249 bytes_in 0 142249 station_ip 83.123.87.1 142249 port 444 142249 unique_id port 142249 remote_ip 10.8.0.98 142253 username aminvpn 142253 mac 142253 bytes_out 0 142253 bytes_in 0 142253 station_ip 83.122.125.186 142253 port 439 142253 unique_id port 142253 remote_ip 10.8.0.14 142265 username aminvpn 142265 mac 142265 bytes_out 0 142265 bytes_in 0 142265 station_ip 83.122.125.186 142265 port 447 142265 unique_id port 142265 remote_ip 10.8.0.14 142268 username aminvpn 142268 mac 142268 bytes_out 0 142268 bytes_in 0 142268 station_ip 83.122.21.54 142268 port 445 142268 unique_id port 142268 remote_ip 10.8.0.14 142269 username aminvpn 142269 mac 142269 bytes_out 0 142269 bytes_in 0 142269 station_ip 83.122.125.186 142269 port 447 142269 unique_id port 142269 remote_ip 10.8.0.14 142275 username mosi 142275 mac 142275 bytes_out 0 142275 bytes_in 0 142275 station_ip 83.122.79.167 142275 port 448 142275 unique_id port 142275 remote_ip 10.8.0.138 142276 username aminvpn 142276 mac 142276 bytes_out 0 142276 bytes_in 0 142276 station_ip 83.122.125.186 142276 port 441 142276 unique_id port 142276 remote_ip 10.8.0.14 142277 username forozandeh1 142277 mac 142277 bytes_out 0 142277 bytes_in 0 142277 station_ip 83.122.221.182 142277 port 445 142277 unique_id port 142277 remote_ip 10.8.0.130 142280 username aminvpn 142280 mac 142280 bytes_out 0 142280 bytes_in 0 142280 station_ip 83.122.125.186 142280 port 445 142280 unique_id port 142280 remote_ip 10.8.0.14 142282 username jafari 142282 mac 142282 bytes_out 0 142282 bytes_in 0 142282 station_ip 5.200.122.8 142282 port 448 142282 unique_id port 142282 remote_ip 10.8.0.242 142283 username mosi 142283 mac 142283 bytes_out 57945 142283 bytes_in 115395 142283 station_ip 83.122.79.167 142283 port 441 142283 unique_id port 142283 remote_ip 10.8.0.138 142285 username mohammadjavad 142285 mac 142285 bytes_out 0 142285 bytes_in 0 142285 station_ip 83.123.178.212 142285 port 444 142285 unique_id port 142285 remote_ip 10.8.0.142 142289 username aminvpn 142289 mac 142289 bytes_out 0 142289 bytes_in 0 142289 station_ip 5.119.168.38 142289 port 231 142289 unique_id port 142289 remote_ip 10.8.1.6 142291 username hosseine 142291 kill_reason Another user logged on this global unique id 142291 mac 142291 bytes_out 0 142291 bytes_in 0 142291 station_ip 83.122.18.148 142291 port 229 142291 unique_id port 142291 remote_ip 10.8.1.190 142292 username mosi 142292 mac 142292 bytes_out 364896 142292 bytes_in 433549 142292 station_ip 151.235.75.185 142292 port 232 142292 unique_id port 142292 remote_ip 10.8.1.86 142293 username kalantary 142293 mac 142293 bytes_out 817860 142293 bytes_in 9513781 142293 station_ip 83.123.13.133 142293 port 439 142293 unique_id port 142293 remote_ip 10.8.0.98 142295 username godarzi 142295 mac 142295 bytes_out 1094064 142295 bytes_in 10632107 142295 station_ip 5.119.21.62 142295 port 441 142255 station_ip 83.122.21.54 142255 port 447 142255 unique_id port 142255 remote_ip 10.8.0.14 142257 username aminvpn 142257 mac 142257 bytes_out 0 142257 bytes_in 0 142257 station_ip 83.122.125.186 142257 port 439 142257 unique_id port 142257 remote_ip 10.8.0.14 142258 username aminvpn 142258 mac 142258 bytes_out 0 142258 bytes_in 0 142258 station_ip 83.122.21.54 142258 port 444 142258 unique_id port 142258 remote_ip 10.8.0.14 142260 username aminvpn 142260 mac 142260 bytes_out 0 142260 bytes_in 0 142260 station_ip 83.122.125.186 142260 port 439 142260 unique_id port 142260 remote_ip 10.8.0.14 142264 username aminvpn 142264 mac 142264 bytes_out 101184 142264 bytes_in 537689 142264 station_ip 83.122.21.54 142264 port 445 142264 unique_id port 142264 remote_ip 10.8.0.14 142266 username aminvpn 142266 mac 142266 bytes_out 0 142266 bytes_in 0 142266 station_ip 83.122.21.54 142266 port 445 142266 unique_id port 142266 remote_ip 10.8.0.14 142267 username aminvpn 142267 mac 142267 bytes_out 0 142267 bytes_in 0 142267 station_ip 83.122.125.186 142267 port 447 142267 unique_id port 142267 remote_ip 10.8.0.14 142271 username aminvpn 142271 mac 142271 bytes_out 0 142271 bytes_in 0 142271 station_ip 83.122.21.54 142271 port 445 142271 unique_id port 142271 remote_ip 10.8.0.14 142273 username aminvpn 142273 mac 142273 bytes_out 0 142273 bytes_in 0 142273 station_ip 83.122.125.186 142273 port 441 142273 unique_id port 142273 remote_ip 10.8.0.14 142274 username aminvpn 142274 mac 142274 bytes_out 0 142274 bytes_in 0 142274 station_ip 83.122.21.54 142274 port 447 142274 unique_id port 142274 remote_ip 10.8.0.14 142281 username hasanahmadi 142281 mac 142281 bytes_out 279512 142281 bytes_in 3644627 142281 station_ip 83.123.161.255 142281 port 448 142281 unique_id port 142281 remote_ip 10.8.0.126 142286 username aminvpn 142286 kill_reason Maximum check online fails reached 142286 mac 142286 bytes_out 0 142286 bytes_in 0 142286 station_ip 5.119.168.38 142286 port 447 142286 unique_id port 142288 username aminvpn 142288 mac 142288 bytes_out 0 142288 bytes_in 0 142288 station_ip 37.129.186.14 142288 port 230 142288 unique_id port 142288 remote_ip 10.8.1.6 142290 username yaghobi 142290 mac 142290 bytes_out 1646190 142290 bytes_in 24123359 142290 station_ip 83.122.114.132 142290 port 439 142290 unique_id port 142290 remote_ip 10.8.0.198 142298 username aminvpn 142298 mac 142298 bytes_out 0 142298 bytes_in 0 142298 station_ip 37.129.186.14 142298 port 230 142298 unique_id port 142298 remote_ip 10.8.1.6 142299 username aminvpn 142299 mac 142299 bytes_out 0 142299 bytes_in 0 142299 station_ip 5.119.168.38 142299 port 232 142299 unique_id port 142299 remote_ip 10.8.1.6 142302 username aminvpn 142302 kill_reason Maximum check online fails reached 142302 mac 142302 bytes_out 0 142302 bytes_in 0 142302 station_ip 5.119.168.38 142302 port 232 142302 unique_id port 142303 username kordestani 142303 mac 142303 bytes_out 486593 142303 bytes_in 4049138 142303 station_ip 151.235.73.178 142303 port 441 142303 unique_id port 142303 remote_ip 10.8.0.134 142304 username Mahin 142304 mac 142304 bytes_out 0 142304 bytes_in 0 142304 station_ip 5.120.107.97 142304 port 443 142304 unique_id port 142304 remote_ip 10.8.0.158 142307 username Mahin 142307 mac 142307 bytes_out 0 142307 bytes_in 0 142307 station_ip 5.120.107.97 142307 port 443 142307 unique_id port 142295 unique_id port 142295 remote_ip 10.8.0.174 142300 username aminvpn 142300 mac 142300 bytes_out 0 142300 bytes_in 0 142300 station_ip 37.129.186.14 142300 port 230 142300 unique_id port 142300 remote_ip 10.8.1.6 142301 username aminvpn 142301 mac 142301 bytes_out 0 142301 bytes_in 0 142301 station_ip 5.119.168.38 142301 port 232 142301 unique_id port 142301 remote_ip 10.8.1.6 142305 username Mahin 142305 mac 142305 bytes_out 0 142305 bytes_in 0 142305 station_ip 5.120.107.97 142305 port 441 142305 unique_id port 142305 remote_ip 10.8.0.158 142308 username avaanna 142308 kill_reason Relative expiration date has reached 142308 mac 142308 bytes_out 0 142308 bytes_in 0 142308 station_ip 83.122.251.225 142308 port 443 142308 unique_id port 142314 username farhad2 142314 mac 142314 bytes_out 3068769 142314 bytes_in 39589016 142314 station_ip 5.119.130.189 142314 port 379 142314 unique_id port 142314 remote_ip 10.8.0.190 142316 username aminvpn 142316 mac 142316 bytes_out 0 142316 bytes_in 0 142316 station_ip 37.129.186.14 142316 port 230 142316 unique_id port 142316 remote_ip 10.8.1.6 142318 username hasanahmadi 142318 mac 142318 bytes_out 153204 142318 bytes_in 267352 142318 station_ip 37.129.86.212 142318 port 439 142318 unique_id port 142318 remote_ip 10.8.0.126 142322 username saeed9658 142322 mac 142322 bytes_out 2018098 142322 bytes_in 27988226 142322 station_ip 5.119.210.224 142322 port 443 142322 unique_id port 142322 remote_ip 10.8.0.62 142325 username bcboard 142325 unique_id port 142325 terminate_cause Lost-Carrier 142325 bytes_out 5980926 142325 bytes_in 90954738 142325 station_ip 83.122.55.73 142325 port 15730784 142325 nas_port_type Virtual 142325 remote_ip 5.5.5.104 142327 username farhad2 142327 mac 142327 bytes_out 0 142327 bytes_in 0 142327 station_ip 5.119.130.189 142327 port 233 142327 unique_id port 142327 remote_ip 10.8.1.222 142328 username kordestani 142328 mac 142328 bytes_out 2370969 142328 bytes_in 38388986 142328 station_ip 151.235.92.129 142328 port 443 142328 unique_id port 142328 remote_ip 10.8.0.134 142331 username saeed9658 142331 mac 142331 bytes_out 567906 142331 bytes_in 6095932 142331 station_ip 5.119.210.224 142331 port 439 142331 unique_id port 142331 remote_ip 10.8.0.62 142336 username kalantary 142336 mac 142336 bytes_out 1981708 142336 bytes_in 23501467 142336 station_ip 83.123.116.141 142336 port 452 142336 unique_id port 142336 remote_ip 10.8.0.98 142338 username sedighe 142338 mac 142338 bytes_out 32606 142338 bytes_in 46387 142338 station_ip 37.129.41.184 142338 port 443 142338 unique_id port 142338 remote_ip 10.8.0.146 142340 username aminvpn 142340 mac 142340 bytes_out 0 142340 bytes_in 0 142340 station_ip 37.129.186.14 142340 port 230 142340 unique_id port 142340 remote_ip 10.8.1.6 142342 username kalantary 142342 mac 142342 bytes_out 201476 142342 bytes_in 1619130 142342 station_ip 83.123.116.141 142342 port 444 142342 unique_id port 142342 remote_ip 10.8.0.98 142345 username saeed9658 142345 mac 142345 bytes_out 0 142345 bytes_in 0 142345 station_ip 5.120.162.92 142345 port 443 142345 unique_id port 142345 remote_ip 10.8.0.62 142348 username alihosseini1 142348 kill_reason Another user logged on this global unique id 142348 mac 142348 bytes_out 0 142348 bytes_in 0 142348 station_ip 5.119.173.31 142348 port 439 142348 unique_id port 142348 remote_ip 10.8.0.166 142350 username aminvpn 142350 mac 142350 bytes_out 79222 142350 bytes_in 140740 142296 remote_ip 10.8.1.6 142297 username aminvpn 142297 mac 142297 bytes_out 0 142297 bytes_in 0 142297 station_ip 5.119.168.38 142297 port 232 142297 unique_id port 142297 remote_ip 10.8.1.6 142306 username avaanna 142306 kill_reason Relative expiration date has reached 142306 mac 142306 bytes_out 0 142306 bytes_in 0 142306 station_ip 83.122.251.225 142306 port 441 142306 unique_id port 142309 username aminvpn 142309 unique_id port 142309 terminate_cause User-Request 142309 bytes_out 4809244 142309 bytes_in 161176610 142309 station_ip 31.57.141.15 142309 port 15730786 142309 nas_port_type Virtual 142309 remote_ip 5.5.5.116 142311 username aminvpn 142311 mac 142311 bytes_out 49825 142311 bytes_in 124168 142311 station_ip 37.129.186.14 142311 port 230 142311 unique_id port 142311 remote_ip 10.8.1.6 142320 username vanila 142320 mac 142320 bytes_out 40190 142320 bytes_in 32503 142320 station_ip 37.129.125.180 142320 port 450 142320 unique_id port 142320 remote_ip 10.8.0.178 142321 username mostafa_es78 142321 unique_id port 142321 terminate_cause User-Request 142321 bytes_out 331857 142321 bytes_in 11200511 142321 station_ip 5.119.110.154 142321 port 15730787 142321 nas_port_type Virtual 142321 remote_ip 5.5.5.119 142324 username amirabbas 142324 unique_id port 142324 terminate_cause User-Request 142324 bytes_out 20592747 142324 bytes_in 617537747 142324 station_ip 37.27.23.77 142324 port 15730783 142324 nas_port_type Virtual 142324 remote_ip 5.5.5.102 142329 username aminvpn 142329 mac 142329 bytes_out 0 142329 bytes_in 0 142329 station_ip 37.129.186.14 142329 port 230 142329 unique_id port 142329 remote_ip 10.8.1.6 142332 username saeed9658 142332 mac 142332 bytes_out 0 142332 bytes_in 0 142332 station_ip 5.119.210.224 142332 port 443 142332 unique_id port 142332 remote_ip 10.8.0.62 142333 username arabpour 142333 kill_reason Relative expiration date has reached 142333 unique_id port 142333 bytes_out 0 142333 bytes_in 0 142333 station_ip 158.58.24.162 142333 port 15730788 142333 nas_port_type Virtual 142337 username saeed9658 142337 mac 142337 bytes_out 13209 142337 bytes_in 27911 142337 station_ip 5.119.210.224 142337 port 444 142337 unique_id port 142337 remote_ip 10.8.0.62 142356 username godarzi 142356 mac 142356 bytes_out 0 142356 bytes_in 0 142356 station_ip 5.119.21.62 142356 port 448 142356 unique_id port 142356 remote_ip 10.8.0.174 142361 username saeed9658 142361 mac 142361 bytes_out 0 142361 bytes_in 0 142361 station_ip 5.120.162.92 142361 port 450 142361 unique_id port 142361 remote_ip 10.8.0.62 142363 username moradi 142363 kill_reason Another user logged on this global unique id 142363 mac 142363 bytes_out 0 142363 bytes_in 0 142363 station_ip 37.129.99.241 142363 port 443 142363 unique_id port 142363 remote_ip 10.8.0.250 142364 username aminvpn 142364 mac 142364 bytes_out 0 142364 bytes_in 0 142364 station_ip 83.122.21.54 142364 port 445 142364 unique_id port 142364 remote_ip 10.8.0.14 142371 username mehrpouyan 142371 mac 142371 bytes_out 0 142371 bytes_in 0 142371 station_ip 5.119.29.37 142371 port 445 142371 unique_id port 142371 remote_ip 10.8.0.74 142372 username vanila 142372 mac 142372 bytes_out 0 142372 bytes_in 0 142372 station_ip 37.129.68.192 142372 port 454 142372 unique_id port 142372 remote_ip 10.8.0.178 142374 username godarzi 142374 mac 142374 bytes_out 0 142374 bytes_in 0 142374 station_ip 5.119.21.62 142374 port 453 142374 unique_id port 142374 remote_ip 10.8.0.174 142376 username moradi 142407 port 448 142307 remote_ip 10.8.0.158 142310 username avaanna 142310 kill_reason Relative expiration date has reached 142310 mac 142310 bytes_out 0 142310 bytes_in 0 142310 station_ip 83.122.251.225 142310 port 443 142310 unique_id port 142312 username aminvpn 142312 mac 142312 bytes_out 0 142312 bytes_in 0 142312 station_ip 5.119.168.38 142312 port 233 142312 unique_id port 142312 remote_ip 10.8.1.6 142313 username jafari 142313 kill_reason Another user logged on this global unique id 142313 mac 142313 bytes_out 0 142313 bytes_in 0 142313 station_ip 5.200.122.8 142313 port 448 142313 unique_id port 142313 remote_ip 10.8.0.242 142315 username kalantary 142315 mac 142315 bytes_out 181841 142315 bytes_in 488012 142315 station_ip 83.123.116.141 142315 port 450 142315 unique_id port 142315 remote_ip 10.8.0.98 142317 username aminvpn 142317 mac 142317 bytes_out 0 142317 bytes_in 0 142317 station_ip 5.119.168.38 142317 port 233 142317 unique_id port 142317 remote_ip 10.8.1.6 142319 username hasanahmadi 142319 mac 142319 bytes_out 0 142319 bytes_in 0 142319 station_ip 37.129.86.212 142319 port 439 142319 unique_id port 142319 remote_ip 10.8.0.126 142323 username kordestani 142323 mac 142323 bytes_out 2848188 142323 bytes_in 37922966 142323 station_ip 151.235.73.178 142323 port 449 142323 unique_id port 142323 remote_ip 10.8.0.134 142326 username jafari 142326 kill_reason Another user logged on this global unique id 142326 mac 142326 bytes_out 0 142326 bytes_in 0 142326 station_ip 5.200.122.8 142326 port 448 142326 unique_id port 142330 username aminvpn 142330 mac 142330 bytes_out 0 142330 bytes_in 0 142330 station_ip 5.119.168.38 142330 port 233 142330 unique_id port 142330 remote_ip 10.8.1.6 142334 username arabpour 142334 kill_reason Relative expiration date has reached 142334 unique_id port 142334 bytes_out 0 142334 bytes_in 0 142334 station_ip 158.58.24.162 142334 port 15730789 142334 nas_port_type Virtual 142335 username sedighe 142335 mac 142335 bytes_out 384127 142335 bytes_in 1021705 142335 station_ip 37.129.41.184 142335 port 444 142335 unique_id port 142335 remote_ip 10.8.0.146 142339 username saeed9658 142339 mac 142339 bytes_out 0 142339 bytes_in 0 142339 station_ip 5.119.210.224 142339 port 449 142339 unique_id port 142339 remote_ip 10.8.0.62 142341 username aminvpn 142341 mac 142341 bytes_out 0 142341 bytes_in 0 142341 station_ip 5.119.168.38 142341 port 233 142341 unique_id port 142341 remote_ip 10.8.1.6 142343 username saeed9658 142343 mac 142343 bytes_out 0 142343 bytes_in 0 142343 station_ip 5.120.162.92 142343 port 443 142343 unique_id port 142343 remote_ip 10.8.0.62 142344 username aminvpn 142344 kill_reason Maximum check online fails reached 142344 mac 142344 bytes_out 0 142344 bytes_in 0 142344 station_ip 5.119.168.38 142344 port 233 142344 unique_id port 142346 username jafari 142346 mac 142346 bytes_out 0 142346 bytes_in 0 142346 station_ip 5.200.122.8 142346 port 448 142346 unique_id port 142347 username sedighe 142347 mac 142347 bytes_out 93167 142347 bytes_in 430884 142347 station_ip 37.129.41.184 142347 port 450 142347 unique_id port 142347 remote_ip 10.8.0.146 142349 username saeed9658 142349 mac 142349 bytes_out 0 142349 bytes_in 0 142349 station_ip 5.120.162.92 142349 port 449 142349 unique_id port 142349 remote_ip 10.8.0.62 142351 username aminvpn 142351 mac 142351 bytes_out 0 142351 bytes_in 0 142351 station_ip 5.119.168.38 142351 port 234 142351 unique_id port 142350 station_ip 37.129.186.14 142350 port 230 142350 unique_id port 142350 remote_ip 10.8.1.6 142352 username aminvpn 142352 mac 142352 bytes_out 0 142352 bytes_in 0 142352 station_ip 37.129.186.14 142352 port 230 142352 unique_id port 142352 remote_ip 10.8.1.6 142354 username sedighe 142354 mac 142354 bytes_out 0 142354 bytes_in 0 142354 station_ip 37.129.41.184 142354 port 443 142354 unique_id port 142354 remote_ip 10.8.0.146 142358 username mosi 142358 mac 142358 bytes_out 0 142358 bytes_in 0 142358 station_ip 151.235.75.185 142358 port 230 142358 unique_id port 142358 remote_ip 10.8.1.86 142360 username alihosseini1 142360 kill_reason Another user logged on this global unique id 142360 mac 142360 bytes_out 0 142360 bytes_in 0 142360 station_ip 5.119.173.31 142360 port 439 142360 unique_id port 142362 username sedighe 142362 mac 142362 bytes_out 0 142362 bytes_in 0 142362 station_ip 83.122.128.21 142362 port 448 142362 unique_id port 142362 remote_ip 10.8.0.146 142365 username aminvpn 142365 mac 142365 bytes_out 0 142365 bytes_in 0 142365 station_ip 5.119.168.38 142365 port 453 142365 unique_id port 142365 remote_ip 10.8.0.14 142367 username mehrpouyan 142367 mac 142367 bytes_out 0 142367 bytes_in 0 142367 station_ip 5.119.177.51 142367 port 452 142367 unique_id port 142367 remote_ip 10.8.0.74 142370 username aminvpn 142370 mac 142370 bytes_out 1572930 142370 bytes_in 29429493 142370 station_ip 37.129.186.14 142370 port 234 142370 unique_id port 142370 remote_ip 10.8.1.6 142388 username mehrpouyan 142388 mac 142388 bytes_out 0 142388 bytes_in 0 142388 station_ip 5.119.158.251 142388 port 445 142388 unique_id port 142388 remote_ip 10.8.0.74 142395 username milan 142395 kill_reason Another user logged on this global unique id 142395 mac 142395 bytes_out 0 142395 bytes_in 0 142395 station_ip 5.120.137.214 142395 port 449 142395 unique_id port 142395 remote_ip 10.8.0.218 142398 username houshang 142398 mac 142398 bytes_out 0 142398 bytes_in 0 142398 station_ip 5.120.38.110 142398 port 451 142398 unique_id port 142398 remote_ip 10.8.0.22 142400 username aminvpn 142400 mac 142400 bytes_out 0 142400 bytes_in 0 142400 station_ip 83.122.21.54 142400 port 455 142400 unique_id port 142400 remote_ip 10.8.0.14 142405 username aminvpn 142405 mac 142405 bytes_out 0 142405 bytes_in 0 142405 station_ip 37.129.186.14 142405 port 448 142405 unique_id port 142405 remote_ip 10.8.0.14 142411 username mehrpouyan 142411 mac 142411 bytes_out 0 142411 bytes_in 0 142411 station_ip 5.119.252.172 142411 port 439 142411 unique_id port 142411 remote_ip 10.8.0.74 142414 username yaghobi 142414 mac 142414 bytes_out 0 142414 bytes_in 0 142414 station_ip 83.122.159.140 142414 port 445 142414 unique_id port 142414 remote_ip 10.8.0.198 142416 username moradi 142416 mac 142416 bytes_out 0 142416 bytes_in 0 142416 station_ip 37.129.99.241 142416 port 443 142416 unique_id port 142420 username aminvpn 142420 mac 142420 bytes_out 0 142420 bytes_in 0 142420 station_ip 83.122.21.54 142420 port 452 142420 unique_id port 142420 remote_ip 10.8.0.14 142425 username aminvpn 142425 mac 142425 bytes_out 0 142425 bytes_in 0 142425 station_ip 37.129.186.14 142425 port 443 142425 unique_id port 142425 remote_ip 10.8.0.14 142428 username mehrpouyan 142428 mac 142428 bytes_out 0 142428 bytes_in 0 142428 station_ip 5.119.176.62 142428 port 452 142428 unique_id port 142351 remote_ip 10.8.1.6 142353 username aminvpn 142353 mac 142353 bytes_out 0 142353 bytes_in 0 142353 station_ip 5.119.168.38 142353 port 234 142353 unique_id port 142353 remote_ip 10.8.1.6 142355 username saeed9658 142355 mac 142355 bytes_out 0 142355 bytes_in 0 142355 station_ip 5.120.162.92 142355 port 230 142355 unique_id port 142355 remote_ip 10.8.1.210 142357 username mosi 142357 mac 142357 bytes_out 941912 142357 bytes_in 3307466 142357 station_ip 94.24.87.59 142357 port 231 142357 unique_id port 142357 remote_ip 10.8.1.86 142359 username sedighe 142359 mac 142359 bytes_out 11957 142359 bytes_in 22475 142359 station_ip 37.129.41.184 142359 port 449 142359 unique_id port 142359 remote_ip 10.8.0.146 142366 username saeed9658 142366 mac 142366 bytes_out 0 142366 bytes_in 0 142366 station_ip 5.120.162.92 142366 port 448 142366 unique_id port 142366 remote_ip 10.8.0.62 142368 username saeed9658 142368 mac 142368 bytes_out 2207 142368 bytes_in 5232 142368 station_ip 5.120.162.92 142368 port 230 142368 unique_id port 142368 remote_ip 10.8.1.210 142369 username vanila 142369 mac 142369 bytes_out 0 142369 bytes_in 0 142369 station_ip 37.129.68.192 142369 port 449 142369 unique_id port 142369 remote_ip 10.8.0.178 142373 username sabaghnezhad 142373 mac 142373 bytes_out 0 142373 bytes_in 0 142373 station_ip 5.216.199.61 142373 port 451 142373 unique_id port 142373 remote_ip 10.8.0.186 142375 username mehrpouyan 142375 mac 142375 bytes_out 0 142375 bytes_in 0 142375 station_ip 5.119.89.171 142375 port 455 142375 unique_id port 142375 remote_ip 10.8.0.74 142377 username aminvpn 142377 mac 142377 bytes_out 0 142377 bytes_in 0 142377 station_ip 83.122.21.54 142377 port 448 142377 unique_id port 142377 remote_ip 10.8.0.14 142379 username aminvpn 142379 mac 142379 bytes_out 0 142379 bytes_in 0 142379 station_ip 5.119.168.38 142379 port 453 142379 unique_id port 142379 remote_ip 10.8.0.14 142384 username aminvpn 142384 mac 142384 bytes_out 0 142384 bytes_in 0 142384 station_ip 37.129.186.14 142384 port 453 142384 unique_id port 142384 remote_ip 10.8.0.14 142385 username aminvpn 142385 mac 142385 bytes_out 0 142385 bytes_in 0 142385 station_ip 83.122.21.54 142385 port 448 142385 unique_id port 142385 remote_ip 10.8.0.14 142391 username aminvpn 142391 mac 142391 bytes_out 0 142391 bytes_in 0 142391 station_ip 37.129.186.14 142391 port 453 142391 unique_id port 142391 remote_ip 10.8.0.14 142399 username vanila 142399 mac 142399 bytes_out 0 142399 bytes_in 0 142399 station_ip 37.129.68.192 142399 port 448 142399 unique_id port 142399 remote_ip 10.8.0.178 142401 username kordestani 142401 mac 142401 bytes_out 0 142401 bytes_in 0 142401 station_ip 151.235.106.74 142401 port 452 142401 unique_id port 142402 username aminvpn 142402 mac 142402 bytes_out 0 142402 bytes_in 0 142402 station_ip 37.129.186.14 142402 port 448 142402 unique_id port 142402 remote_ip 10.8.0.14 142404 username aminvpn 142404 mac 142404 bytes_out 0 142404 bytes_in 0 142404 station_ip 83.122.21.54 142404 port 450 142404 unique_id port 142404 remote_ip 10.8.0.14 142406 username aminvpn 142406 mac 142406 bytes_out 0 142406 bytes_in 0 142406 station_ip 83.122.21.54 142406 port 450 142406 unique_id port 142406 remote_ip 10.8.0.14 142407 username aminvpn 142407 mac 142407 bytes_out 0 142407 bytes_in 0 142407 station_ip 37.129.186.14 142376 kill_reason Another user logged on this global unique id 142376 mac 142376 bytes_out 0 142376 bytes_in 0 142376 station_ip 37.129.99.241 142376 port 443 142376 unique_id port 142378 username alihosseini1 142378 kill_reason Another user logged on this global unique id 142378 mac 142378 bytes_out 0 142378 bytes_in 0 142378 station_ip 5.119.173.31 142378 port 439 142378 unique_id port 142380 username aminvpn 142380 mac 142380 bytes_out 0 142380 bytes_in 0 142380 station_ip 83.122.21.54 142380 port 448 142380 unique_id port 142380 remote_ip 10.8.0.14 142381 username forozandeh1 142381 mac 142381 bytes_out 0 142381 bytes_in 0 142381 station_ip 83.122.200.200 142381 port 445 142381 unique_id port 142381 remote_ip 10.8.0.130 142382 username mehrpouyan 142382 mac 142382 bytes_out 544597 142382 bytes_in 8287897 142382 station_ip 5.119.125.222 142382 port 451 142382 unique_id port 142382 remote_ip 10.8.0.74 142383 username kalantary 142383 mac 142383 bytes_out 0 142383 bytes_in 0 142383 station_ip 83.123.64.137 142383 port 450 142383 unique_id port 142383 remote_ip 10.8.0.98 142386 username kordestani 142386 kill_reason Another user logged on this global unique id 142386 mac 142386 bytes_out 0 142386 bytes_in 0 142386 station_ip 151.235.106.74 142386 port 452 142386 unique_id port 142386 remote_ip 10.8.0.134 142387 username alihosseini1 142387 mac 142387 bytes_out 0 142387 bytes_in 0 142387 station_ip 5.119.173.31 142387 port 439 142387 unique_id port 142389 username aminvpn 142389 mac 142389 bytes_out 0 142389 bytes_in 0 142389 station_ip 37.129.186.14 142389 port 451 142389 unique_id port 142389 remote_ip 10.8.0.14 142390 username aminvpn 142390 mac 142390 bytes_out 0 142390 bytes_in 0 142390 station_ip 83.122.21.54 142390 port 448 142390 unique_id port 142390 remote_ip 10.8.0.14 142392 username aminvpn 142392 mac 142392 bytes_out 0 142392 bytes_in 0 142392 station_ip 5.119.168.38 142392 port 448 142392 unique_id port 142392 remote_ip 10.8.0.14 142393 username vanila 142393 mac 142393 bytes_out 0 142393 bytes_in 0 142393 station_ip 37.129.68.192 142393 port 450 142393 unique_id port 142393 remote_ip 10.8.0.178 142394 username khademi 142394 mac 142394 bytes_out 0 142394 bytes_in 0 142394 station_ip 83.122.155.34 142394 port 442 142394 unique_id port 142396 username alihosseini1 142396 mac 142396 bytes_out 6154 142396 bytes_in 8429 142396 station_ip 5.119.173.31 142396 port 231 142396 unique_id port 142396 remote_ip 10.8.1.106 142397 username aminvpn 142397 mac 142397 bytes_out 184208 142397 bytes_in 3782992 142397 station_ip 37.129.186.14 142397 port 450 142397 unique_id port 142397 remote_ip 10.8.0.14 142403 username mehrpouyan 142403 mac 142403 bytes_out 0 142403 bytes_in 0 142403 station_ip 5.120.179.75 142403 port 439 142403 unique_id port 142403 remote_ip 10.8.0.74 142408 username kalantary 142408 mac 142408 bytes_out 0 142408 bytes_in 0 142408 station_ip 83.123.87.21 142408 port 450 142408 unique_id port 142408 remote_ip 10.8.0.98 142410 username milan 142410 kill_reason Another user logged on this global unique id 142410 mac 142410 bytes_out 0 142410 bytes_in 0 142410 station_ip 5.120.137.214 142410 port 449 142410 unique_id port 142412 username ayobi 142412 kill_reason Another user logged on this global unique id 142412 mac 142412 bytes_out 0 142412 bytes_in 0 142412 station_ip 37.27.13.217 142412 port 379 142412 unique_id port 142412 remote_ip 10.8.0.246 142417 username aminvpn 142407 unique_id port 142407 remote_ip 10.8.0.14 142409 username aminvpn 142409 mac 142409 bytes_out 0 142409 bytes_in 0 142409 station_ip 83.122.21.54 142409 port 451 142409 unique_id port 142409 remote_ip 10.8.0.14 142413 username aminvpn 142413 mac 142413 bytes_out 0 142413 bytes_in 0 142413 station_ip 37.129.186.14 142413 port 448 142413 unique_id port 142413 remote_ip 10.8.0.14 142415 username aminvpn 142415 mac 142415 bytes_out 0 142415 bytes_in 0 142415 station_ip 5.119.168.38 142415 port 439 142415 unique_id port 142415 remote_ip 10.8.0.14 142418 username aminvpn 142418 mac 142418 bytes_out 0 142418 bytes_in 0 142418 station_ip 83.122.21.54 142418 port 445 142418 unique_id port 142418 remote_ip 10.8.0.14 142422 username farhad2 142422 mac 142422 bytes_out 0 142422 bytes_in 0 142422 station_ip 5.120.137.224 142422 port 445 142422 unique_id port 142422 remote_ip 10.8.0.190 142427 username mehrpouyan 142427 kill_reason Maximum number of concurrent logins reached 142427 mac 142427 bytes_out 0 142427 bytes_in 0 142427 station_ip 5.119.35.102 142427 port 456 142427 unique_id port 142435 username vanila 142435 mac 142435 bytes_out 0 142435 bytes_in 0 142435 station_ip 37.129.16.32 142435 port 456 142435 unique_id port 142435 remote_ip 10.8.0.178 142437 username aminvpn 142437 mac 142437 bytes_out 0 142437 bytes_in 0 142437 station_ip 5.119.168.38 142437 port 456 142437 unique_id port 142437 remote_ip 10.8.0.14 142440 username malekpoir 142440 mac 142440 bytes_out 0 142440 bytes_in 0 142440 station_ip 5.119.229.8 142440 port 444 142440 unique_id port 142440 remote_ip 10.8.0.58 142442 username aminvpn 142442 mac 142442 bytes_out 0 142442 bytes_in 0 142442 station_ip 37.129.186.14 142442 port 458 142442 unique_id port 142442 remote_ip 10.8.0.14 142445 username mehrpouyan 142445 mac 142445 bytes_out 440379 142445 bytes_in 1620855 142445 station_ip 5.119.35.102 142445 port 452 142445 unique_id port 142445 remote_ip 10.8.0.74 142448 username ayobi 142448 kill_reason Another user logged on this global unique id 142448 mac 142448 bytes_out 0 142448 bytes_in 0 142448 station_ip 37.27.13.217 142448 port 379 142448 unique_id port 142450 username farhad2 142450 mac 142450 bytes_out 715676 142450 bytes_in 9117618 142450 station_ip 5.119.147.177 142450 port 444 142450 unique_id port 142450 remote_ip 10.8.0.190 142451 username moradi 142451 mac 142451 bytes_out 0 142451 bytes_in 0 142451 station_ip 37.129.99.241 142451 port 439 142451 unique_id port 142453 username mosi 142453 mac 142453 bytes_out 0 142453 bytes_in 0 142453 station_ip 151.235.76.146 142453 port 443 142453 unique_id port 142453 remote_ip 10.8.0.138 142454 username mehrpouyan 142454 mac 142454 bytes_out 0 142454 bytes_in 0 142454 station_ip 5.119.110.116 142454 port 441 142454 unique_id port 142454 remote_ip 10.8.0.74 142455 username aminvpn 142455 mac 142455 bytes_out 0 142455 bytes_in 0 142455 station_ip 83.122.21.54 142455 port 439 142455 unique_id port 142455 remote_ip 10.8.0.14 142456 username aminvpn 142456 mac 142456 bytes_out 0 142456 bytes_in 0 142456 station_ip 37.129.186.14 142456 port 445 142456 unique_id port 142456 remote_ip 10.8.0.14 142462 username sedighe 142462 mac 142462 bytes_out 0 142462 bytes_in 0 142462 station_ip 83.123.247.1 142462 port 451 142462 unique_id port 142462 remote_ip 10.8.0.146 142464 username aminvpn 142464 mac 142417 mac 142417 bytes_out 0 142417 bytes_in 0 142417 station_ip 37.129.186.14 142417 port 443 142417 unique_id port 142417 remote_ip 10.8.0.14 142419 username aminvpn 142419 mac 142419 bytes_out 0 142419 bytes_in 0 142419 station_ip 37.129.186.14 142419 port 443 142419 unique_id port 142419 remote_ip 10.8.0.14 142421 username mehrpouyan 142421 mac 142421 bytes_out 0 142421 bytes_in 0 142421 station_ip 5.120.57.244 142421 port 451 142421 unique_id port 142421 remote_ip 10.8.0.74 142423 username sedighe 142423 mac 142423 bytes_out 2548 142423 bytes_in 4318 142423 station_ip 83.123.247.1 142423 port 445 142423 unique_id port 142423 remote_ip 10.8.0.146 142424 username ayobi 142424 kill_reason Another user logged on this global unique id 142424 mac 142424 bytes_out 0 142424 bytes_in 0 142424 station_ip 37.27.13.217 142424 port 379 142424 unique_id port 142426 username aminvpn 142426 mac 142426 bytes_out 0 142426 bytes_in 0 142426 station_ip 83.122.21.54 142426 port 455 142426 unique_id port 142426 remote_ip 10.8.0.14 142429 username mehrpouyan 142429 kill_reason Maximum check online fails reached 142429 mac 142429 bytes_out 0 142429 bytes_in 0 142429 station_ip 5.119.35.102 142429 port 455 142429 unique_id port 142430 username aminvpn 142430 mac 142430 bytes_out 0 142430 bytes_in 0 142430 station_ip 37.129.186.14 142430 port 443 142430 unique_id port 142430 remote_ip 10.8.0.14 142431 username aminvpn 142431 mac 142431 bytes_out 0 142431 bytes_in 0 142431 station_ip 83.122.21.54 142431 port 457 142431 unique_id port 142431 remote_ip 10.8.0.14 142439 username aminvpn 142439 mac 142439 bytes_out 0 142439 bytes_in 0 142439 station_ip 83.122.21.54 142439 port 456 142439 unique_id port 142439 remote_ip 10.8.0.14 142441 username farhad2 142441 mac 142441 bytes_out 0 142441 bytes_in 0 142441 station_ip 5.120.137.224 142441 port 451 142441 unique_id port 142441 remote_ip 10.8.0.190 142444 username Mahin 142444 mac 142444 bytes_out 0 142444 bytes_in 0 142444 station_ip 5.120.107.97 142444 port 441 142444 unique_id port 142444 remote_ip 10.8.0.158 142447 username khademi 142447 kill_reason Another user logged on this global unique id 142447 mac 142447 bytes_out 0 142447 bytes_in 0 142447 station_ip 37.129.130.183 142447 port 453 142447 unique_id port 142447 remote_ip 10.8.0.10 142457 username jafari 142457 mac 142457 bytes_out 0 142457 bytes_in 0 142457 station_ip 5.200.122.8 142457 port 457 142457 unique_id port 142457 remote_ip 10.8.0.242 142458 username yaghobi 142458 mac 142458 bytes_out 1609181 142458 bytes_in 16521707 142458 station_ip 37.129.246.249 142458 port 448 142458 unique_id port 142458 remote_ip 10.8.0.198 142459 username aminvpn 142459 mac 142459 bytes_out 0 142459 bytes_in 0 142459 station_ip 5.119.168.38 142459 port 439 142459 unique_id port 142459 remote_ip 10.8.0.14 142460 username farhad2 142460 mac 142460 bytes_out 0 142460 bytes_in 0 142460 station_ip 5.119.147.177 142460 port 444 142460 unique_id port 142460 remote_ip 10.8.0.190 142466 username vanila 142466 mac 142466 bytes_out 0 142466 bytes_in 0 142466 station_ip 37.129.16.32 142466 port 445 142466 unique_id port 142466 remote_ip 10.8.0.178 142468 username Mahin 142468 mac 142468 bytes_out 114198 142468 bytes_in 207729 142468 station_ip 5.120.107.97 142468 port 450 142468 unique_id port 142468 remote_ip 10.8.0.158 142469 username forozandeh1 142469 mac 142469 bytes_out 0 142428 remote_ip 10.8.0.74 142432 username moradi 142432 kill_reason Another user logged on this global unique id 142432 mac 142432 bytes_out 0 142432 bytes_in 0 142432 station_ip 37.129.99.241 142432 port 439 142432 unique_id port 142432 remote_ip 10.8.0.250 142433 username jafari 142433 mac 142433 bytes_out 0 142433 bytes_in 0 142433 station_ip 5.200.122.8 142433 port 443 142433 unique_id port 142433 remote_ip 10.8.0.242 142434 username aminvpn 142434 mac 142434 bytes_out 0 142434 bytes_in 0 142434 station_ip 5.119.168.38 142434 port 458 142434 unique_id port 142434 remote_ip 10.8.0.14 142436 username aminvpn 142436 mac 142436 bytes_out 0 142436 bytes_in 0 142436 station_ip 37.129.186.14 142436 port 443 142436 unique_id port 142436 remote_ip 10.8.0.14 142438 username aminvpn 142438 mac 142438 bytes_out 0 142438 bytes_in 0 142438 station_ip 37.129.186.14 142438 port 443 142438 unique_id port 142438 remote_ip 10.8.0.14 142443 username morteza 142443 mac 142443 bytes_out 0 142443 bytes_in 0 142443 station_ip 113.203.16.211 142443 port 450 142443 unique_id port 142443 remote_ip 10.8.0.46 142446 username aminvpn 142446 mac 142446 bytes_out 0 142446 bytes_in 0 142446 station_ip 83.122.21.54 142446 port 451 142446 unique_id port 142446 remote_ip 10.8.0.14 142449 username sedighe 142449 mac 142449 bytes_out 629009 142449 bytes_in 4163095 142449 station_ip 83.123.247.1 142449 port 445 142449 unique_id port 142449 remote_ip 10.8.0.146 142452 username aminvpn 142452 mac 142452 bytes_out 0 142452 bytes_in 0 142452 station_ip 37.129.186.14 142452 port 452 142452 unique_id port 142452 remote_ip 10.8.0.14 142461 username aminvpn 142461 mac 142461 bytes_out 0 142461 bytes_in 0 142461 station_ip 83.122.21.54 142461 port 439 142461 unique_id port 142461 remote_ip 10.8.0.14 142463 username farhad2 142463 mac 142463 bytes_out 0 142463 bytes_in 0 142463 station_ip 5.119.147.177 142463 port 439 142463 unique_id port 142463 remote_ip 10.8.0.190 142471 username aminvpn 142471 mac 142471 bytes_out 0 142471 bytes_in 0 142471 station_ip 83.122.21.54 142471 port 439 142471 unique_id port 142471 remote_ip 10.8.0.14 142474 username aminvpn 142474 mac 142474 bytes_out 0 142474 bytes_in 0 142474 station_ip 37.129.186.14 142474 port 444 142474 unique_id port 142474 remote_ip 10.8.0.14 142479 username aminvpn 142479 mac 142479 bytes_out 0 142479 bytes_in 0 142479 station_ip 37.129.186.14 142479 port 443 142479 unique_id port 142479 remote_ip 10.8.0.14 142481 username aminvpn 142481 mac 142481 bytes_out 0 142481 bytes_in 0 142481 station_ip 83.122.21.54 142481 port 445 142481 unique_id port 142481 remote_ip 10.8.0.14 142484 username farhad2 142484 mac 142484 bytes_out 1159993 142484 bytes_in 11317587 142484 station_ip 5.119.147.177 142484 port 234 142484 unique_id port 142484 remote_ip 10.8.1.222 142488 username khademi 142488 kill_reason Another user logged on this global unique id 142488 mac 142488 bytes_out 0 142488 bytes_in 0 142488 station_ip 37.129.130.183 142488 port 453 142488 unique_id port 142492 username malekpoir 142492 mac 142492 bytes_out 0 142492 bytes_in 0 142492 station_ip 5.119.229.8 142492 port 456 142492 unique_id port 142492 remote_ip 10.8.0.58 142496 username amir 142496 kill_reason Relative expiration date has reached 142496 mac 142496 bytes_out 0 142496 bytes_in 0 142496 station_ip 46.225.212.186 142496 port 450 142496 unique_id port 142464 bytes_out 0 142464 bytes_in 0 142464 station_ip 37.129.186.14 142464 port 457 142464 unique_id port 142464 remote_ip 10.8.0.14 142465 username jafari 142465 kill_reason Maximum check online fails reached 142465 mac 142465 bytes_out 0 142465 bytes_in 0 142465 station_ip 5.200.122.8 142465 port 448 142465 unique_id port 142467 username farhad2 142467 mac 142467 bytes_out 0 142467 bytes_in 0 142467 station_ip 5.119.147.177 142467 port 234 142467 unique_id port 142467 remote_ip 10.8.1.222 142470 username Mahin 142470 mac 142470 bytes_out 0 142470 bytes_in 0 142470 station_ip 5.120.107.97 142470 port 444 142470 unique_id port 142470 remote_ip 10.8.0.158 142472 username khademi 142472 kill_reason Another user logged on this global unique id 142472 mac 142472 bytes_out 0 142472 bytes_in 0 142472 station_ip 37.129.130.183 142472 port 453 142472 unique_id port 142473 username yaghobi 142473 mac 142473 bytes_out 0 142473 bytes_in 0 142473 station_ip 37.129.88.204 142473 port 452 142473 unique_id port 142473 remote_ip 10.8.0.198 142477 username mehrpouyan 142477 mac 142477 bytes_out 0 142477 bytes_in 0 142477 station_ip 5.119.141.178 142477 port 443 142477 unique_id port 142477 remote_ip 10.8.0.74 142482 username aminvpn 142482 mac 142482 bytes_out 0 142482 bytes_in 0 142482 station_ip 5.119.168.38 142482 port 443 142482 unique_id port 142482 remote_ip 10.8.0.14 142486 username mehrpouyan 142486 mac 142486 bytes_out 0 142486 bytes_in 0 142486 station_ip 5.120.97.17 142486 port 444 142486 unique_id port 142486 remote_ip 10.8.0.74 142489 username aminvpn 142489 mac 142489 bytes_out 0 142489 bytes_in 0 142489 station_ip 37.129.186.14 142489 port 443 142489 unique_id port 142489 remote_ip 10.8.0.14 142491 username mehrpouyan 142491 mac 142491 bytes_out 0 142491 bytes_in 0 142491 station_ip 5.119.15.199 142491 port 449 142491 unique_id port 142491 remote_ip 10.8.0.74 142494 username amir 142494 kill_reason Relative expiration date has reached 142494 mac 142494 bytes_out 0 142494 bytes_in 0 142494 station_ip 46.225.212.186 142494 port 450 142494 unique_id port 142495 username amir 142495 kill_reason Relative expiration date has reached 142495 mac 142495 bytes_out 0 142495 bytes_in 0 142495 station_ip 46.225.212.186 142495 port 450 142495 unique_id port 142498 username farhad2 142498 mac 142498 bytes_out 799085 142498 bytes_in 6796223 142498 station_ip 5.119.147.177 142498 port 234 142498 unique_id port 142498 remote_ip 10.8.1.222 142500 username aminvpn 142500 mac 142500 bytes_out 0 142500 bytes_in 0 142500 station_ip 37.129.186.14 142500 port 450 142500 unique_id port 142500 remote_ip 10.8.0.14 142502 username saeed9658 142502 kill_reason Maximum check online fails reached 142502 mac 142502 bytes_out 0 142502 bytes_in 0 142502 station_ip 5.120.162.92 142502 port 450 142502 unique_id port 142505 username mehrpouyan 142505 mac 142505 bytes_out 0 142505 bytes_in 0 142505 station_ip 5.119.15.199 142505 port 445 142505 unique_id port 142505 remote_ip 10.8.0.74 142508 username khademi 142508 kill_reason Another user logged on this global unique id 142508 mac 142508 bytes_out 0 142508 bytes_in 0 142508 station_ip 37.129.130.183 142508 port 453 142508 unique_id port 142509 username aminvpn 142509 mac 142509 bytes_out 0 142509 bytes_in 0 142509 station_ip 83.122.21.54 142509 port 452 142509 unique_id port 142509 remote_ip 10.8.0.14 142511 username godarzi 142511 mac 142511 bytes_out 0 142469 bytes_in 0 142469 station_ip 37.129.29.247 142469 port 441 142469 unique_id port 142469 remote_ip 10.8.0.130 142475 username aminvpn 142475 mac 142475 bytes_out 0 142475 bytes_in 0 142475 station_ip 83.122.21.54 142475 port 439 142475 unique_id port 142475 remote_ip 10.8.0.14 142476 username aminvpn 142476 mac 142476 bytes_out 0 142476 bytes_in 0 142476 station_ip 37.129.186.14 142476 port 444 142476 unique_id port 142476 remote_ip 10.8.0.14 142478 username aminvpn 142478 mac 142478 bytes_out 53822 142478 bytes_in 65843 142478 station_ip 83.122.21.54 142478 port 439 142478 unique_id port 142478 remote_ip 10.8.0.14 142480 username ayobi 142480 kill_reason Another user logged on this global unique id 142480 mac 142480 bytes_out 0 142480 bytes_in 0 142480 station_ip 37.27.13.217 142480 port 379 142480 unique_id port 142483 username aminvpn 142483 mac 142483 bytes_out 0 142483 bytes_in 0 142483 station_ip 37.129.186.14 142483 port 443 142483 unique_id port 142483 remote_ip 10.8.0.14 142485 username aminvpn 142485 mac 142485 bytes_out 0 142485 bytes_in 0 142485 station_ip 83.122.21.54 142485 port 445 142485 unique_id port 142485 remote_ip 10.8.0.14 142487 username milan 142487 mac 142487 bytes_out 0 142487 bytes_in 0 142487 station_ip 5.120.137.214 142487 port 449 142487 unique_id port 142490 username mehrpouyan 142490 mac 142490 bytes_out 0 142490 bytes_in 0 142490 station_ip 5.119.242.248 142490 port 445 142490 unique_id port 142490 remote_ip 10.8.0.74 142493 username amir 142493 kill_reason Relative expiration date has reached 142493 mac 142493 bytes_out 0 142493 bytes_in 0 142493 station_ip 46.225.212.186 142493 port 450 142493 unique_id port 142499 username saeed9658 142499 mac 142499 bytes_out 0 142499 bytes_in 0 142499 station_ip 5.120.162.92 142499 port 231 142499 unique_id port 142499 remote_ip 10.8.1.210 142501 username ayobi 142501 kill_reason Another user logged on this global unique id 142501 mac 142501 bytes_out 0 142501 bytes_in 0 142501 station_ip 37.27.13.217 142501 port 379 142501 unique_id port 142506 username saeed9658 142506 mac 142506 bytes_out 0 142506 bytes_in 0 142506 station_ip 5.120.162.92 142506 port 444 142506 unique_id port 142506 remote_ip 10.8.0.62 142510 username forozandeh1 142510 mac 142510 bytes_out 0 142510 bytes_in 0 142510 station_ip 83.123.147.164 142510 port 439 142510 unique_id port 142510 remote_ip 10.8.0.130 142517 username godarzi 142517 mac 142517 bytes_out 0 142517 bytes_in 0 142517 station_ip 5.202.134.253 142517 port 443 142517 unique_id port 142517 remote_ip 10.8.0.174 142518 username alipour 142518 kill_reason Another user logged on this global unique id 142518 mac 142518 bytes_out 0 142518 bytes_in 0 142518 station_ip 83.122.223.127 142518 port 454 142518 unique_id port 142518 remote_ip 10.8.0.102 142522 username aminvpn 142522 mac 142522 bytes_out 0 142522 bytes_in 0 142522 station_ip 5.119.168.38 142522 port 235 142522 unique_id port 142522 remote_ip 10.8.1.6 142526 username aminvpn 142526 mac 142526 bytes_out 5768 142526 bytes_in 9106 142526 station_ip 83.122.21.54 142526 port 444 142526 unique_id port 142526 remote_ip 10.8.0.14 142528 username houshang 142528 mac 142528 bytes_out 0 142528 bytes_in 0 142528 station_ip 5.120.38.110 142528 port 444 142528 unique_id port 142528 remote_ip 10.8.0.22 142530 username aminvpn 142530 mac 142530 bytes_out 0 142530 bytes_in 0 142530 station_ip 37.129.186.14 142497 username aminvpn 142497 mac 142497 bytes_out 39363 142497 bytes_in 40041 142497 station_ip 83.122.21.54 142497 port 444 142497 unique_id port 142497 remote_ip 10.8.0.14 142503 username aminvpn 142503 mac 142503 bytes_out 0 142503 bytes_in 0 142503 station_ip 83.122.21.54 142503 port 444 142503 unique_id port 142503 remote_ip 10.8.0.14 142504 username aminvpn 142504 mac 142504 bytes_out 8780 142504 bytes_in 10071 142504 station_ip 37.129.186.14 142504 port 451 142504 unique_id port 142504 remote_ip 10.8.0.14 142507 username godarzi 142507 kill_reason Another user logged on this global unique id 142507 mac 142507 bytes_out 0 142507 bytes_in 0 142507 station_ip 5.202.134.253 142507 port 442 142507 unique_id port 142507 remote_ip 10.8.0.174 142513 username ayobi 142513 kill_reason Another user logged on this global unique id 142513 mac 142513 bytes_out 0 142513 bytes_in 0 142513 station_ip 37.27.13.217 142513 port 379 142513 unique_id port 142514 username aminvpn 142514 mac 142514 bytes_out 14320 142514 bytes_in 19552 142514 station_ip 37.129.186.14 142514 port 444 142514 unique_id port 142514 remote_ip 10.8.0.14 142519 username aminvpn 142519 mac 142519 bytes_out 11306 142519 bytes_in 14172 142519 station_ip 37.129.186.14 142519 port 444 142519 unique_id port 142519 remote_ip 10.8.0.14 142524 username aminvpn 142524 mac 142524 bytes_out 0 142524 bytes_in 0 142524 station_ip 37.129.186.14 142524 port 443 142524 unique_id port 142524 remote_ip 10.8.0.14 142525 username Mahin 142525 mac 142525 bytes_out 0 142525 bytes_in 0 142525 station_ip 5.120.107.97 142525 port 443 142525 unique_id port 142525 remote_ip 10.8.0.158 142529 username aminvpn 142529 mac 142529 bytes_out 0 142529 bytes_in 0 142529 station_ip 83.122.21.54 142529 port 451 142529 unique_id port 142529 remote_ip 10.8.0.14 142540 username aminvpn 142540 mac 142540 bytes_out 0 142540 bytes_in 0 142540 station_ip 83.122.21.54 142540 port 451 142540 unique_id port 142540 remote_ip 10.8.0.14 142541 username aminvpn 142541 mac 142541 bytes_out 0 142541 bytes_in 0 142541 station_ip 37.129.186.14 142541 port 444 142541 unique_id port 142541 remote_ip 10.8.0.14 142543 username aminvpn 142543 mac 142543 bytes_out 0 142543 bytes_in 0 142543 station_ip 83.122.21.54 142543 port 444 142543 unique_id port 142543 remote_ip 10.8.0.14 142545 username farhad2 142545 mac 142545 bytes_out 91359 142545 bytes_in 217848 142545 station_ip 5.119.147.177 142545 port 451 142545 unique_id port 142545 remote_ip 10.8.0.190 142549 username aminvpn 142549 mac 142549 bytes_out 0 142549 bytes_in 0 142549 station_ip 37.129.186.14 142549 port 452 142549 unique_id port 142549 remote_ip 10.8.0.14 142552 username aminvpn 142552 mac 142552 bytes_out 0 142552 bytes_in 0 142552 station_ip 83.122.21.54 142552 port 444 142552 unique_id port 142552 remote_ip 10.8.0.14 142554 username alihosseini1 142554 kill_reason Another user logged on this global unique id 142554 mac 142554 bytes_out 0 142554 bytes_in 0 142554 station_ip 5.119.92.228 142554 port 439 142554 unique_id port 142554 remote_ip 10.8.0.166 142559 username sekonji3 142559 mac 142559 bytes_out 887218 142559 bytes_in 19426833 142559 station_ip 113.203.56.77 142559 port 441 142559 unique_id port 142559 remote_ip 10.8.0.6 142560 username aminvpn 142560 mac 142560 bytes_out 12299 142560 bytes_in 16632 142560 station_ip 37.129.186.14 142560 port 443 142560 unique_id port 142511 bytes_in 0 142511 station_ip 5.202.134.253 142511 port 442 142511 unique_id port 142512 username alihosseini1 142512 mac 142512 bytes_out 0 142512 bytes_in 0 142512 station_ip 5.119.93.10 142512 port 443 142512 unique_id port 142512 remote_ip 10.8.0.166 142515 username aminvpn 142515 mac 142515 bytes_out 6287 142515 bytes_in 13111 142515 station_ip 83.122.21.54 142515 port 442 142515 unique_id port 142515 remote_ip 10.8.0.14 142516 username farhad2 142516 mac 142516 bytes_out 1770787 142516 bytes_in 15941039 142516 station_ip 5.119.147.177 142516 port 234 142516 unique_id port 142516 remote_ip 10.8.1.222 142520 username saeed9658 142520 mac 142520 bytes_out 0 142520 bytes_in 0 142520 station_ip 5.120.162.92 142520 port 231 142520 unique_id port 142520 remote_ip 10.8.1.210 142521 username Mahin 142521 mac 142521 bytes_out 2713609 142521 bytes_in 26476046 142521 station_ip 5.120.107.97 142521 port 441 142521 unique_id port 142521 remote_ip 10.8.0.158 142523 username aminvpn 142523 mac 142523 bytes_out 6322 142523 bytes_in 9714 142523 station_ip 83.122.21.54 142523 port 442 142523 unique_id port 142523 remote_ip 10.8.0.14 142527 username aminvpn 142527 mac 142527 bytes_out 0 142527 bytes_in 0 142527 station_ip 37.129.186.14 142527 port 443 142527 unique_id port 142527 remote_ip 10.8.0.14 142532 username aminvpn 142532 mac 142532 bytes_out 0 142532 bytes_in 0 142532 station_ip 83.122.21.54 142532 port 451 142532 unique_id port 142532 remote_ip 10.8.0.14 142535 username aminvpn 142535 mac 142535 bytes_out 0 142535 bytes_in 0 142535 station_ip 5.119.168.38 142535 port 444 142535 unique_id port 142535 remote_ip 10.8.0.14 142536 username aminvpn 142536 mac 142536 bytes_out 0 142536 bytes_in 0 142536 station_ip 37.129.186.14 142536 port 452 142536 unique_id port 142536 remote_ip 10.8.0.14 142538 username farhad2 142538 mac 142538 bytes_out 0 142538 bytes_in 0 142538 station_ip 5.119.147.177 142538 port 451 142538 unique_id port 142538 remote_ip 10.8.0.190 142539 username aminvpn 142539 mac 142539 bytes_out 0 142539 bytes_in 0 142539 station_ip 83.122.120.106 142539 port 444 142539 unique_id port 142539 remote_ip 10.8.0.14 142546 username aminvpn 142546 mac 142546 bytes_out 0 142546 bytes_in 0 142546 station_ip 83.122.120.106 142546 port 444 142546 unique_id port 142546 remote_ip 10.8.0.14 142548 username forozandeh1 142548 mac 142548 bytes_out 0 142548 bytes_in 0 142548 station_ip 37.129.94.216 142548 port 443 142548 unique_id port 142548 remote_ip 10.8.0.130 142550 username sabaghnezhad 142550 mac 142550 bytes_out 0 142550 bytes_in 0 142550 station_ip 5.216.199.61 142550 port 230 142550 unique_id port 142550 remote_ip 10.8.1.130 142551 username aminvpn 142551 mac 142551 bytes_out 0 142551 bytes_in 0 142551 station_ip 83.122.120.106 142551 port 443 142551 unique_id port 142551 remote_ip 10.8.0.14 142557 username aminvpn 142557 mac 142557 bytes_out 0 142557 bytes_in 0 142557 station_ip 83.122.21.54 142557 port 444 142557 unique_id port 142557 remote_ip 10.8.0.14 142558 username farhad2 142558 mac 142558 bytes_out 0 142558 bytes_in 0 142558 station_ip 5.119.147.177 142558 port 444 142558 unique_id port 142558 remote_ip 10.8.0.190 142561 username aminvpn 142561 mac 142561 bytes_out 0 142561 bytes_in 0 142561 station_ip 83.122.21.54 142561 port 441 142561 unique_id port 142561 remote_ip 10.8.0.14 142530 port 444 142530 unique_id port 142530 remote_ip 10.8.0.14 142531 username farhad2 142531 mac 142531 bytes_out 1188299 142531 bytes_in 14265123 142531 station_ip 5.119.147.177 142531 port 231 142531 unique_id port 142531 remote_ip 10.8.1.222 142533 username aminvpn 142533 mac 142533 bytes_out 0 142533 bytes_in 0 142533 station_ip 37.129.186.14 142533 port 444 142533 unique_id port 142533 remote_ip 10.8.0.14 142534 username aminvpn 142534 mac 142534 bytes_out 66618 142534 bytes_in 201664 142534 station_ip 83.122.21.54 142534 port 452 142534 unique_id port 142534 remote_ip 10.8.0.14 142537 username aminvpn 142537 mac 142537 bytes_out 0 142537 bytes_in 0 142537 station_ip 5.119.168.38 142537 port 444 142537 unique_id port 142537 remote_ip 10.8.0.14 142542 username aminvpn 142542 mac 142542 bytes_out 0 142542 bytes_in 0 142542 station_ip 83.122.120.106 142542 port 452 142542 unique_id port 142542 remote_ip 10.8.0.14 142544 username aminvpn 142544 mac 142544 bytes_out 0 142544 bytes_in 0 142544 station_ip 37.129.186.14 142544 port 452 142544 unique_id port 142544 remote_ip 10.8.0.14 142547 username mohammadmahdi 142547 kill_reason Another user logged on this global unique id 142547 mac 142547 bytes_out 0 142547 bytes_in 0 142547 station_ip 5.119.13.214 142547 port 442 142547 unique_id port 142547 remote_ip 10.8.0.54 142553 username aminvpn 142553 mac 142553 bytes_out 0 142553 bytes_in 0 142553 station_ip 83.122.120.106 142553 port 443 142553 unique_id port 142553 remote_ip 10.8.0.14 142555 username aminvpn 142555 mac 142555 bytes_out 0 142555 bytes_in 0 142555 station_ip 37.129.186.14 142555 port 443 142555 unique_id port 142555 remote_ip 10.8.0.14 142556 username farhad2 142556 mac 142556 bytes_out 0 142556 bytes_in 0 142556 station_ip 5.119.147.177 142556 port 451 142556 unique_id port 142556 remote_ip 10.8.0.190 142563 username sabaghnezhad 142563 mac 142563 bytes_out 0 142563 bytes_in 0 142563 station_ip 5.212.123.110 142563 port 230 142563 unique_id port 142563 remote_ip 10.8.1.130 142564 username farhad2 142564 mac 142564 bytes_out 0 142564 bytes_in 0 142564 station_ip 5.119.147.177 142564 port 443 142564 unique_id port 142564 remote_ip 10.8.0.190 142566 username mohammadmahdi 142566 mac 142566 bytes_out 0 142566 bytes_in 0 142566 station_ip 5.119.13.214 142566 port 442 142566 unique_id port 142568 username alihosseini1 142568 mac 142568 bytes_out 0 142568 bytes_in 0 142568 station_ip 5.119.92.228 142568 port 439 142568 unique_id port 142570 username aminvpn 142570 mac 142570 bytes_out 0 142570 bytes_in 0 142570 station_ip 83.122.21.54 142570 port 439 142570 unique_id port 142570 remote_ip 10.8.0.14 142574 username aminvpn 142574 mac 142574 bytes_out 0 142574 bytes_in 0 142574 station_ip 83.122.21.54 142574 port 439 142574 unique_id port 142574 remote_ip 10.8.0.14 142575 username aminvpn 142575 mac 142575 bytes_out 0 142575 bytes_in 0 142575 station_ip 37.129.186.14 142575 port 441 142575 unique_id port 142575 remote_ip 10.8.0.14 142577 username aminvpn 142577 mac 142577 bytes_out 0 142577 bytes_in 0 142577 station_ip 5.119.168.38 142577 port 441 142577 unique_id port 142577 remote_ip 10.8.0.14 142580 username aminvpn 142580 mac 142580 bytes_out 0 142580 bytes_in 0 142580 station_ip 37.129.186.14 142580 port 441 142580 unique_id port 142580 remote_ip 10.8.0.14 142584 username aminvpn 142584 mac 142560 remote_ip 10.8.0.14 142562 username aminvpn 142562 mac 142562 bytes_out 0 142562 bytes_in 0 142562 station_ip 5.119.168.38 142562 port 444 142562 unique_id port 142562 remote_ip 10.8.0.14 142567 username aminvpn 142567 mac 142567 bytes_out 0 142567 bytes_in 0 142567 station_ip 83.122.21.54 142567 port 443 142567 unique_id port 142567 remote_ip 10.8.0.14 142572 username aminvpn 142572 mac 142572 bytes_out 0 142572 bytes_in 0 142572 station_ip 83.122.21.54 142572 port 439 142572 unique_id port 142572 remote_ip 10.8.0.14 142573 username aminvpn 142573 mac 142573 bytes_out 0 142573 bytes_in 0 142573 station_ip 37.129.186.14 142573 port 441 142573 unique_id port 142573 remote_ip 10.8.0.14 142579 username aminvpn 142579 mac 142579 bytes_out 0 142579 bytes_in 0 142579 station_ip 83.122.21.54 142579 port 443 142579 unique_id port 142579 remote_ip 10.8.0.14 142583 username aminvpn 142583 mac 142583 bytes_out 0 142583 bytes_in 0 142583 station_ip 83.122.21.54 142583 port 444 142583 unique_id port 142583 remote_ip 10.8.0.14 142587 username aminvpn 142587 mac 142587 bytes_out 0 142587 bytes_in 0 142587 station_ip 83.122.120.106 142587 port 442 142587 unique_id port 142587 remote_ip 10.8.0.14 142589 username mostafa_es78 142589 unique_id port 142589 terminate_cause User-Request 142589 bytes_out 15530975 142589 bytes_in 109362541 142589 station_ip 77.237.189.1 142589 port 15730793 142589 nas_port_type Virtual 142589 remote_ip 5.5.5.132 142593 username aminvpn 142593 mac 142593 bytes_out 0 142593 bytes_in 0 142593 station_ip 37.129.186.14 142593 port 451 142593 unique_id port 142593 remote_ip 10.8.0.14 142594 username farhad2 142594 mac 142594 bytes_out 0 142594 bytes_in 0 142594 station_ip 5.119.147.177 142594 port 439 142594 unique_id port 142594 remote_ip 10.8.0.190 142598 username aminvpn 142598 mac 142598 bytes_out 0 142598 bytes_in 0 142598 station_ip 37.129.186.14 142598 port 439 142598 unique_id port 142598 remote_ip 10.8.0.14 142600 username aminvpn 142600 mac 142600 bytes_out 0 142600 bytes_in 0 142600 station_ip 83.122.21.54 142600 port 439 142600 unique_id port 142600 remote_ip 10.8.0.14 142610 username kordestani 142610 mac 142610 bytes_out 0 142610 bytes_in 0 142610 station_ip 151.235.117.62 142610 port 439 142610 unique_id port 142610 remote_ip 10.8.0.134 142611 username aminvpn 142611 mac 142611 bytes_out 0 142611 bytes_in 0 142611 station_ip 37.129.186.14 142611 port 441 142611 unique_id port 142611 remote_ip 10.8.0.14 142614 username farhad2 142614 mac 142614 bytes_out 249927 142614 bytes_in 2305388 142614 station_ip 5.119.147.177 142614 port 230 142614 unique_id port 142614 remote_ip 10.8.1.222 142623 username aminvpn 142623 mac 142623 bytes_out 0 142623 bytes_in 0 142623 station_ip 37.129.186.14 142623 port 442 142623 unique_id port 142623 remote_ip 10.8.0.14 142627 username aminvpn 142627 mac 142627 bytes_out 0 142627 bytes_in 0 142627 station_ip 37.129.186.14 142627 port 444 142627 unique_id port 142627 remote_ip 10.8.0.14 142630 username farhad2 142630 mac 142630 bytes_out 255533 142630 bytes_in 1910569 142630 station_ip 5.119.147.177 142630 port 230 142630 unique_id port 142630 remote_ip 10.8.1.222 142631 username vanila 142631 mac 142631 bytes_out 0 142631 bytes_in 0 142631 station_ip 37.129.37.210 142631 port 443 142631 unique_id port 142633 username saeed9658 142633 kill_reason Maximum check online fails reached 142565 username aminvpn 142565 mac 142565 bytes_out 0 142565 bytes_in 0 142565 station_ip 37.129.186.14 142565 port 441 142565 unique_id port 142565 remote_ip 10.8.0.14 142569 username aminvpn 142569 mac 142569 bytes_out 0 142569 bytes_in 0 142569 station_ip 37.129.186.14 142569 port 441 142569 unique_id port 142569 remote_ip 10.8.0.14 142571 username aminvpn 142571 mac 142571 bytes_out 0 142571 bytes_in 0 142571 station_ip 37.129.186.14 142571 port 441 142571 unique_id port 142571 remote_ip 10.8.0.14 142576 username aminvpn 142576 mac 142576 bytes_out 0 142576 bytes_in 0 142576 station_ip 83.122.21.54 142576 port 443 142576 unique_id port 142576 remote_ip 10.8.0.14 142578 username aminvpn 142578 mac 142578 bytes_out 0 142578 bytes_in 0 142578 station_ip 37.129.186.14 142578 port 441 142578 unique_id port 142578 remote_ip 10.8.0.14 142581 username aminvpn 142581 mac 142581 bytes_out 0 142581 bytes_in 0 142581 station_ip 83.122.120.106 142581 port 444 142581 unique_id port 142581 remote_ip 10.8.0.14 142582 username aminvpn 142582 mac 142582 bytes_out 0 142582 bytes_in 0 142582 station_ip 37.129.186.14 142582 port 441 142582 unique_id port 142582 remote_ip 10.8.0.14 142586 username aminvpn 142586 mac 142586 bytes_out 0 142586 bytes_in 0 142586 station_ip 37.129.186.14 142586 port 444 142586 unique_id port 142586 remote_ip 10.8.0.14 142588 username hosseine 142588 kill_reason Another user logged on this global unique id 142588 mac 142588 bytes_out 0 142588 bytes_in 0 142588 station_ip 83.122.18.148 142588 port 229 142588 unique_id port 142590 username malekpoir 142590 kill_reason Another user logged on this global unique id 142590 mac 142590 bytes_out 0 142590 bytes_in 0 142590 station_ip 5.119.229.8 142590 port 449 142590 unique_id port 142590 remote_ip 10.8.0.58 142591 username aminvpn 142591 mac 142591 bytes_out 0 142591 bytes_in 0 142591 station_ip 37.129.186.14 142591 port 451 142591 unique_id port 142591 remote_ip 10.8.0.14 142592 username aminvpn 142592 mac 142592 bytes_out 0 142592 bytes_in 0 142592 station_ip 83.122.120.106 142592 port 442 142592 unique_id port 142592 remote_ip 10.8.0.14 142595 username alihosseini1 142595 mac 142595 bytes_out 0 142595 bytes_in 0 142595 station_ip 5.119.92.228 142595 port 441 142595 unique_id port 142595 remote_ip 10.8.0.166 142597 username aminvpn 142597 mac 142597 bytes_out 0 142597 bytes_in 0 142597 station_ip 83.122.120.106 142597 port 442 142597 unique_id port 142597 remote_ip 10.8.0.14 142604 username aminvpn 142604 mac 142604 bytes_out 0 142604 bytes_in 0 142604 station_ip 83.122.120.106 142604 port 442 142604 unique_id port 142604 remote_ip 10.8.0.14 142605 username farhad2 142605 mac 142605 bytes_out 204996 142605 bytes_in 1966378 142605 station_ip 5.119.147.177 142605 port 230 142605 unique_id port 142605 remote_ip 10.8.1.222 142607 username aminvpn 142607 mac 142607 bytes_out 0 142607 bytes_in 0 142607 station_ip 5.119.168.38 142607 port 441 142607 unique_id port 142607 remote_ip 10.8.0.14 142612 username ayobi 142612 kill_reason Another user logged on this global unique id 142612 mac 142612 bytes_out 0 142612 bytes_in 0 142612 station_ip 37.27.13.217 142612 port 379 142612 unique_id port 142613 username aminvpn 142613 mac 142613 bytes_out 0 142613 bytes_in 0 142613 station_ip 83.122.21.54 142613 port 442 142613 unique_id port 142613 remote_ip 10.8.0.14 142617 username mansour 142584 bytes_out 0 142584 bytes_in 0 142584 station_ip 83.122.120.106 142584 port 441 142584 unique_id port 142584 remote_ip 10.8.0.14 142585 username alihosseini1 142585 mac 142585 bytes_out 1666399 142585 bytes_in 13712952 142585 station_ip 5.119.92.228 142585 port 442 142585 unique_id port 142585 remote_ip 10.8.0.166 142596 username houshang 142596 mac 142596 bytes_out 0 142596 bytes_in 0 142596 station_ip 5.120.38.110 142596 port 444 142596 unique_id port 142596 remote_ip 10.8.0.22 142599 username aminvpn 142599 mac 142599 bytes_out 0 142599 bytes_in 0 142599 station_ip 83.122.120.106 142599 port 441 142599 unique_id port 142599 remote_ip 10.8.0.14 142601 username aminvpn 142601 mac 142601 bytes_out 0 142601 bytes_in 0 142601 station_ip 37.129.186.14 142601 port 441 142601 unique_id port 142601 remote_ip 10.8.0.14 142602 username aminvpn 142602 mac 142602 bytes_out 0 142602 bytes_in 0 142602 station_ip 83.122.120.106 142602 port 439 142602 unique_id port 142602 remote_ip 10.8.0.14 142603 username aminvpn 142603 mac 142603 bytes_out 0 142603 bytes_in 0 142603 station_ip 37.129.186.14 142603 port 441 142603 unique_id port 142603 remote_ip 10.8.0.14 142606 username aminvpn 142606 mac 142606 bytes_out 0 142606 bytes_in 0 142606 station_ip 5.119.168.38 142606 port 441 142606 unique_id port 142606 remote_ip 10.8.0.14 142608 username aminvpn 142608 mac 142608 bytes_out 0 142608 bytes_in 0 142608 station_ip 37.129.186.14 142608 port 441 142608 unique_id port 142608 remote_ip 10.8.0.14 142609 username aminvpn 142609 mac 142609 bytes_out 0 142609 bytes_in 0 142609 station_ip 83.122.120.106 142609 port 442 142609 unique_id port 142609 remote_ip 10.8.0.14 142615 username aminvpn 142615 mac 142615 bytes_out 0 142615 bytes_in 0 142615 station_ip 83.122.120.106 142615 port 441 142615 unique_id port 142615 remote_ip 10.8.0.14 142616 username aminvpn 142616 mac 142616 bytes_out 0 142616 bytes_in 0 142616 station_ip 37.129.186.14 142616 port 442 142616 unique_id port 142616 remote_ip 10.8.0.14 142618 username malekpoir 142618 mac 142618 bytes_out 0 142618 bytes_in 0 142618 station_ip 5.119.229.8 142618 port 449 142618 unique_id port 142629 username aminvpn 142629 mac 142629 bytes_out 0 142629 bytes_in 0 142629 station_ip 83.122.21.54 142629 port 441 142629 unique_id port 142629 remote_ip 10.8.0.14 142632 username farhad2 142632 mac 142632 bytes_out 147519 142632 bytes_in 1074581 142632 station_ip 5.119.147.177 142632 port 230 142632 unique_id port 142632 remote_ip 10.8.1.222 142637 username aminvpn 142637 mac 142637 bytes_out 347063 142637 bytes_in 1522013 142637 station_ip 37.129.186.14 142637 port 234 142637 unique_id port 142637 remote_ip 10.8.1.6 142638 username aminvpn 142638 mac 142638 bytes_out 13885 142638 bytes_in 20646 142638 station_ip 83.122.120.106 142638 port 442 142638 unique_id port 142638 remote_ip 10.8.0.14 142640 username hashtadani3 142640 mac 142640 bytes_out 0 142640 bytes_in 0 142640 station_ip 83.122.70.87 142640 port 439 142640 unique_id port 142640 remote_ip 10.8.0.154 142643 username aminvpn 142643 mac 142643 bytes_out 0 142643 bytes_in 0 142643 station_ip 5.119.168.38 142643 port 452 142643 unique_id port 142643 remote_ip 10.8.0.14 142651 username aminvpn 142651 mac 142651 bytes_out 0 142651 bytes_in 0 142651 station_ip 83.122.21.54 142651 port 230 142651 unique_id port 142617 mac 142617 bytes_out 0 142617 bytes_in 0 142617 station_ip 5.202.132.13 142617 port 446 142617 unique_id port 142617 remote_ip 10.8.0.30 142619 username aminvpn 142619 mac 142619 bytes_out 0 142619 bytes_in 0 142619 station_ip 83.122.120.106 142619 port 441 142619 unique_id port 142619 remote_ip 10.8.0.14 142620 username aminvpn 142620 mac 142620 bytes_out 0 142620 bytes_in 0 142620 station_ip 37.129.186.14 142620 port 442 142620 unique_id port 142620 remote_ip 10.8.0.14 142621 username aminvpn 142621 mac 142621 bytes_out 0 142621 bytes_in 0 142621 station_ip 83.122.120.106 142621 port 441 142621 unique_id port 142621 remote_ip 10.8.0.14 142622 username farhad2 142622 mac 142622 bytes_out 0 142622 bytes_in 0 142622 station_ip 5.119.147.177 142622 port 230 142622 unique_id port 142622 remote_ip 10.8.1.222 142624 username saeed9658 142624 mac 142624 bytes_out 32731648 142624 bytes_in 1374722 142624 station_ip 5.120.162.92 142624 port 234 142624 unique_id port 142624 remote_ip 10.8.1.210 142625 username vanila 142625 kill_reason Another user logged on this global unique id 142625 mac 142625 bytes_out 0 142625 bytes_in 0 142625 station_ip 37.129.37.210 142625 port 443 142625 unique_id port 142625 remote_ip 10.8.0.178 142626 username aminvpn 142626 mac 142626 bytes_out 0 142626 bytes_in 0 142626 station_ip 83.122.120.106 142626 port 441 142626 unique_id port 142626 remote_ip 10.8.0.14 142628 username saeed9658 142628 mac 142628 bytes_out 0 142628 bytes_in 0 142628 station_ip 5.120.162.92 142628 port 442 142628 unique_id port 142628 remote_ip 10.8.0.62 142634 username aminvpn 142634 kill_reason Maximum check online fails reached 142634 mac 142634 bytes_out 0 142634 bytes_in 0 142634 station_ip 37.129.186.14 142634 port 444 142634 unique_id port 142639 username aminvpn 142639 mac 142639 bytes_out 0 142639 bytes_in 0 142639 station_ip 83.122.21.54 142639 port 230 142639 unique_id port 142639 remote_ip 10.8.1.6 142641 username aminvpn 142641 mac 142641 bytes_out 0 142641 bytes_in 0 142641 station_ip 37.129.186.14 142641 port 234 142641 unique_id port 142641 remote_ip 10.8.1.6 142642 username aminvpn 142642 mac 142642 bytes_out 0 142642 bytes_in 0 142642 station_ip 83.122.21.54 142642 port 230 142642 unique_id port 142642 remote_ip 10.8.1.6 142644 username saeed9658 142644 kill_reason Maximum check online fails reached 142644 mac 142644 bytes_out 0 142644 bytes_in 0 142644 station_ip 5.120.162.92 142644 port 449 142644 unique_id port 142646 username aminvpn 142646 mac 142646 bytes_out 32490 142646 bytes_in 44980 142646 station_ip 37.129.186.14 142646 port 234 142646 unique_id port 142646 remote_ip 10.8.1.6 142650 username aminvpn 142650 mac 142650 bytes_out 0 142650 bytes_in 0 142650 station_ip 37.129.186.14 142650 port 234 142650 unique_id port 142650 remote_ip 10.8.1.6 142653 username vanila 142653 mac 142653 bytes_out 0 142653 bytes_in 0 142653 station_ip 37.129.37.210 142653 port 443 142653 unique_id port 142653 remote_ip 10.8.0.178 142654 username godarzi 142654 mac 142654 bytes_out 0 142654 bytes_in 0 142654 station_ip 5.202.134.253 142654 port 456 142654 unique_id port 142654 remote_ip 10.8.0.174 142657 username kordestani 142657 mac 142657 bytes_out 0 142657 bytes_in 0 142657 station_ip 83.122.142.6 142657 port 231 142657 unique_id port 142657 remote_ip 10.8.1.98 142659 username ayobi 142659 mac 142659 bytes_out 0 142633 mac 142633 bytes_out 0 142633 bytes_in 0 142633 station_ip 5.120.162.92 142633 port 441 142633 unique_id port 142635 username farhad2 142635 mac 142635 bytes_out 0 142635 bytes_in 0 142635 station_ip 5.119.147.177 142635 port 446 142635 unique_id port 142635 remote_ip 10.8.0.190 142636 username hashtadani3 142636 mac 142636 bytes_out 2238110 142636 bytes_in 13615103 142636 station_ip 83.122.70.87 142636 port 439 142636 unique_id port 142636 remote_ip 10.8.0.154 142645 username hashtadani3 142645 mac 142645 bytes_out 0 142645 bytes_in 0 142645 station_ip 83.122.70.87 142645 port 442 142645 unique_id port 142645 remote_ip 10.8.0.154 142647 username aminvpn 142647 mac 142647 bytes_out 0 142647 bytes_in 0 142647 station_ip 83.122.21.54 142647 port 230 142647 unique_id port 142647 remote_ip 10.8.1.6 142648 username saeed9658 142648 mac 142648 bytes_out 0 142648 bytes_in 0 142648 station_ip 5.120.162.92 142648 port 452 142648 unique_id port 142648 remote_ip 10.8.0.62 142649 username farhad2 142649 mac 142649 bytes_out 0 142649 bytes_in 0 142649 station_ip 5.119.147.177 142649 port 446 142649 unique_id port 142649 remote_ip 10.8.0.190 142652 username saeed9658 142652 mac 142652 bytes_out 0 142652 bytes_in 0 142652 station_ip 5.120.162.92 142652 port 234 142652 unique_id port 142652 remote_ip 10.8.1.210 142656 username aminvpn 142656 mac 142656 bytes_out 0 142656 bytes_in 0 142656 station_ip 5.119.168.38 142656 port 443 142656 unique_id port 142656 remote_ip 10.8.0.14 142660 username saeed9658 142660 mac 142660 bytes_out 0 142660 bytes_in 0 142660 station_ip 5.120.162.92 142660 port 443 142660 unique_id port 142660 remote_ip 10.8.0.62 142664 username alihosseini1 142664 mac 142664 bytes_out 0 142664 bytes_in 0 142664 station_ip 5.119.92.228 142664 port 451 142664 unique_id port 142664 remote_ip 10.8.0.166 142679 username farhad2 142679 kill_reason Another user logged on this global unique id 142679 mac 142679 bytes_out 0 142679 bytes_in 0 142679 station_ip 5.119.233.82 142679 port 452 142679 unique_id port 142679 remote_ip 10.8.0.190 142680 username aminvpn 142680 mac 142680 bytes_out 0 142680 bytes_in 0 142680 station_ip 83.122.120.106 142680 port 443 142680 unique_id port 142680 remote_ip 10.8.0.14 142683 username amin.saeedi 142683 kill_reason Relative expiration date has reached 142683 unique_id port 142683 bytes_out 0 142683 bytes_in 0 142683 station_ip 5.119.116.232 142683 port 15730803 142683 nas_port_type Virtual 142684 username aminvpn 142684 mac 142684 bytes_out 0 142684 bytes_in 0 142684 station_ip 83.122.120.106 142684 port 439 142684 unique_id port 142684 remote_ip 10.8.0.14 142690 username amin.saeedi 142690 kill_reason Relative expiration date has reached 142690 unique_id port 142690 bytes_out 0 142690 bytes_in 0 142690 station_ip 5.119.116.232 142690 port 15730805 142690 nas_port_type Virtual 142691 username aminvpn 142691 mac 142691 bytes_out 0 142691 bytes_in 0 142691 station_ip 37.129.186.14 142691 port 443 142691 unique_id port 142691 remote_ip 10.8.0.14 142693 username aminvpn 142693 mac 142693 bytes_out 0 142693 bytes_in 0 142693 station_ip 83.122.120.106 142693 port 451 142693 unique_id port 142693 remote_ip 10.8.0.14 142697 username aminvpn 142697 mac 142697 bytes_out 0 142697 bytes_in 0 142697 station_ip 83.122.120.106 142697 port 443 142697 unique_id port 142697 remote_ip 10.8.0.14 142703 username hoorieh 142703 mac 142703 bytes_out 0 142651 remote_ip 10.8.1.6 142655 username aminvpn 142655 mac 142655 bytes_out 0 142655 bytes_in 0 142655 station_ip 83.122.120.106 142655 port 439 142655 unique_id port 142655 remote_ip 10.8.0.14 142658 username hashtadani3 142658 kill_reason Another user logged on this global unique id 142658 mac 142658 bytes_out 0 142658 bytes_in 0 142658 station_ip 83.122.70.87 142658 port 442 142658 unique_id port 142658 remote_ip 10.8.0.154 142661 username saeed9658 142661 mac 142661 bytes_out 0 142661 bytes_in 0 142661 station_ip 5.120.162.92 142661 port 379 142661 unique_id port 142661 remote_ip 10.8.0.62 142666 username alipour 142666 kill_reason Another user logged on this global unique id 142666 mac 142666 bytes_out 0 142666 bytes_in 0 142666 station_ip 83.122.223.127 142666 port 454 142666 unique_id port 142669 username sobhan 142669 unique_id port 142669 terminate_cause Lost-Carrier 142669 bytes_out 821630 142669 bytes_in 3970169 142669 station_ip 5.119.239.236 142669 port 15730801 142669 nas_port_type Virtual 142669 remote_ip 5.5.5.41 142671 username aminvpn 142671 mac 142671 bytes_out 0 142671 bytes_in 0 142671 station_ip 37.129.186.14 142671 port 379 142671 unique_id port 142671 remote_ip 10.8.0.14 142673 username aminvpn 142673 mac 142673 bytes_out 0 142673 bytes_in 0 142673 station_ip 5.119.168.38 142673 port 379 142673 unique_id port 142673 remote_ip 10.8.0.14 142675 username hashtadani3 142675 mac 142675 bytes_out 0 142675 bytes_in 0 142675 station_ip 83.122.70.87 142675 port 442 142675 unique_id port 142677 username sabaghnezhad 142677 mac 142677 bytes_out 313081 142677 bytes_in 858332 142677 station_ip 5.214.79.130 142677 port 234 142677 unique_id port 142677 remote_ip 10.8.1.130 142681 username saeed9658 142681 mac 142681 bytes_out 0 142681 bytes_in 0 142681 station_ip 5.120.162.92 142681 port 439 142681 unique_id port 142681 remote_ip 10.8.0.62 142686 username hosseine 142686 mac 142686 bytes_out 0 142686 bytes_in 0 142686 station_ip 83.122.18.148 142686 port 229 142686 unique_id port 142688 username aminvpn 142688 mac 142688 bytes_out 0 142688 bytes_in 0 142688 station_ip 83.122.120.106 142688 port 439 142688 unique_id port 142688 remote_ip 10.8.0.14 142692 username alipour 142692 kill_reason Another user logged on this global unique id 142692 mac 142692 bytes_out 0 142692 bytes_in 0 142692 station_ip 83.122.223.127 142692 port 454 142692 unique_id port 142699 username aminvpn 142699 mac 142699 bytes_out 0 142699 bytes_in 0 142699 station_ip 37.129.186.14 142699 port 451 142699 unique_id port 142699 remote_ip 10.8.0.14 142701 username saeed9658 142701 mac 142701 bytes_out 0 142701 bytes_in 0 142701 station_ip 5.120.162.92 142701 port 443 142701 unique_id port 142701 remote_ip 10.8.0.62 142702 username aminvpn 142702 mac 142702 bytes_out 0 142702 bytes_in 0 142702 station_ip 37.129.186.14 142702 port 451 142702 unique_id port 142702 remote_ip 10.8.0.14 142704 username aminvpn 142704 mac 142704 bytes_out 0 142704 bytes_in 0 142704 station_ip 83.122.120.106 142704 port 443 142704 unique_id port 142704 remote_ip 10.8.0.14 142706 username hashtadani3 142706 mac 142706 bytes_out 0 142706 bytes_in 0 142706 station_ip 83.122.70.87 142706 port 442 142706 unique_id port 142706 remote_ip 10.8.0.154 142707 username aminvpn 142707 mac 142707 bytes_out 0 142707 bytes_in 0 142707 station_ip 5.119.168.38 142707 port 443 142707 unique_id port 142707 remote_ip 10.8.0.14 142659 bytes_in 0 142659 station_ip 37.27.13.217 142659 port 379 142659 unique_id port 142662 username aminvpn 142662 mac 142662 bytes_out 306252 142662 bytes_in 499004 142662 station_ip 37.129.186.14 142662 port 230 142662 unique_id port 142662 remote_ip 10.8.1.6 142663 username hashtadani3 142663 kill_reason Another user logged on this global unique id 142663 mac 142663 bytes_out 0 142663 bytes_in 0 142663 station_ip 83.122.70.87 142663 port 442 142663 unique_id port 142665 username vanila 142665 mac 142665 bytes_out 0 142665 bytes_in 0 142665 station_ip 37.129.37.210 142665 port 457 142665 unique_id port 142665 remote_ip 10.8.0.178 142667 username aminvpn 142667 mac 142667 bytes_out 0 142667 bytes_in 0 142667 station_ip 83.122.120.106 142667 port 439 142667 unique_id port 142667 remote_ip 10.8.0.14 142668 username aminvpn 142668 mac 142668 bytes_out 0 142668 bytes_in 0 142668 station_ip 37.129.186.14 142668 port 379 142668 unique_id port 142668 remote_ip 10.8.0.14 142670 username aminvpn 142670 mac 142670 bytes_out 0 142670 bytes_in 0 142670 station_ip 83.122.120.106 142670 port 439 142670 unique_id port 142670 remote_ip 10.8.0.14 142672 username aminvpn 142672 mac 142672 bytes_out 0 142672 bytes_in 0 142672 station_ip 83.122.120.106 142672 port 439 142672 unique_id port 142672 remote_ip 10.8.0.14 142674 username aminvpn 142674 mac 142674 bytes_out 0 142674 bytes_in 0 142674 station_ip 37.129.186.14 142674 port 439 142674 unique_id port 142674 remote_ip 10.8.0.14 142676 username aminvpn 142676 mac 142676 bytes_out 0 142676 bytes_in 0 142676 station_ip 83.122.120.106 142676 port 443 142676 unique_id port 142676 remote_ip 10.8.0.14 142678 username aminvpn 142678 mac 142678 bytes_out 0 142678 bytes_in 0 142678 station_ip 37.129.186.14 142678 port 439 142678 unique_id port 142678 remote_ip 10.8.0.14 142682 username aminvpn 142682 mac 142682 bytes_out 0 142682 bytes_in 0 142682 station_ip 37.129.186.14 142682 port 451 142682 unique_id port 142682 remote_ip 10.8.0.14 142685 username amirabbas 142685 unique_id port 142685 terminate_cause User-Request 142685 bytes_out 21398022 142685 bytes_in 602066585 142685 station_ip 37.27.23.77 142685 port 15730794 142685 nas_port_type Virtual 142685 remote_ip 5.5.5.134 142687 username aminvpn 142687 mac 142687 bytes_out 0 142687 bytes_in 0 142687 station_ip 37.129.186.14 142687 port 443 142687 unique_id port 142687 remote_ip 10.8.0.14 142689 username amin.saeedi 142689 kill_reason Relative expiration date has reached 142689 unique_id port 142689 bytes_out 0 142689 bytes_in 0 142689 station_ip 5.119.116.232 142689 port 15730804 142689 nas_port_type Virtual 142694 username saeed9658 142694 mac 142694 bytes_out 0 142694 bytes_in 0 142694 station_ip 5.120.162.92 142694 port 443 142694 unique_id port 142694 remote_ip 10.8.0.62 142695 username aminvpn 142695 mac 142695 bytes_out 0 142695 bytes_in 0 142695 station_ip 37.129.186.14 142695 port 456 142695 unique_id port 142695 remote_ip 10.8.0.14 142696 username saeed9658 142696 mac 142696 bytes_out 0 142696 bytes_in 0 142696 station_ip 5.120.162.92 142696 port 451 142696 unique_id port 142696 remote_ip 10.8.0.62 142698 username saeed9658 142698 mac 142698 bytes_out 0 142698 bytes_in 0 142698 station_ip 5.120.162.92 142698 port 456 142698 unique_id port 142698 remote_ip 10.8.0.62 142700 username aminvpn 142700 mac 142700 bytes_out 0 142700 bytes_in 0 142700 station_ip 83.122.120.106 142700 port 456 142700 unique_id port 142700 remote_ip 10.8.0.14 142708 username hashtadani3 142708 mac 142708 bytes_out 0 142708 bytes_in 0 142708 station_ip 83.122.70.87 142708 port 443 142708 unique_id port 142708 remote_ip 10.8.0.154 142710 username hassan 142710 mac 142710 bytes_out 2037086 142710 bytes_in 28147061 142710 station_ip 37.27.24.64 142710 port 439 142710 unique_id port 142710 remote_ip 10.8.0.122 142713 username aminvpn 142713 mac 142713 bytes_out 0 142713 bytes_in 0 142713 station_ip 5.119.168.38 142713 port 439 142713 unique_id port 142713 remote_ip 10.8.0.14 142714 username hashtadani3 142714 mac 142714 bytes_out 0 142714 bytes_in 0 142714 station_ip 83.122.70.87 142714 port 443 142714 unique_id port 142714 remote_ip 10.8.0.154 142717 username hashtadani3 142717 mac 142717 bytes_out 0 142717 bytes_in 0 142717 station_ip 83.122.70.87 142717 port 439 142717 unique_id port 142717 remote_ip 10.8.0.154 142719 username hashtadani3 142719 kill_reason Maximum check online fails reached 142719 mac 142719 bytes_out 0 142719 bytes_in 0 142719 station_ip 83.122.70.87 142719 port 229 142719 unique_id port 142724 username saeed9658 142724 mac 142724 bytes_out 0 142724 bytes_in 0 142724 station_ip 5.120.162.92 142724 port 234 142724 unique_id port 142724 remote_ip 10.8.1.210 142732 username hashtadani3 142732 mac 142732 bytes_out 0 142732 bytes_in 0 142732 station_ip 83.122.70.87 142732 port 231 142732 unique_id port 142732 remote_ip 10.8.1.94 142736 username hashtadani3 142736 mac 142736 bytes_out 0 142736 bytes_in 0 142736 station_ip 83.122.70.87 142736 port 442 142736 unique_id port 142736 remote_ip 10.8.0.154 142743 username saeed9658 142743 mac 142743 bytes_out 0 142743 bytes_in 0 142743 station_ip 5.120.162.92 142743 port 442 142743 unique_id port 142743 remote_ip 10.8.0.62 142747 username aminvpn 142747 mac 142747 bytes_out 0 142747 bytes_in 0 142747 station_ip 5.119.168.38 142747 port 443 142747 unique_id port 142747 remote_ip 10.8.0.14 142753 username saeed9658 142753 mac 142753 bytes_out 0 142753 bytes_in 0 142753 station_ip 5.120.162.92 142753 port 443 142753 unique_id port 142753 remote_ip 10.8.0.62 142757 username saeed9658 142757 mac 142757 bytes_out 0 142757 bytes_in 0 142757 station_ip 5.120.162.92 142757 port 443 142757 unique_id port 142757 remote_ip 10.8.0.62 142759 username saeed9658 142759 mac 142759 bytes_out 0 142759 bytes_in 0 142759 station_ip 5.120.162.92 142759 port 443 142759 unique_id port 142759 remote_ip 10.8.0.62 142762 username saeed9658 142762 mac 142762 bytes_out 0 142762 bytes_in 0 142762 station_ip 5.120.162.92 142762 port 443 142762 unique_id port 142762 remote_ip 10.8.0.62 142768 username hashtadani3 142768 mac 142768 bytes_out 0 142768 bytes_in 0 142768 station_ip 83.122.70.87 142768 port 442 142768 unique_id port 142768 remote_ip 10.8.0.154 142772 username hashtadani3 142772 mac 142772 bytes_out 0 142772 bytes_in 0 142772 station_ip 83.122.70.87 142772 port 231 142772 unique_id port 142772 remote_ip 10.8.1.94 142774 username hashtadani3 142774 mac 142774 bytes_out 0 142774 bytes_in 0 142774 station_ip 83.122.70.87 142774 port 231 142774 unique_id port 142774 remote_ip 10.8.1.94 142780 username aminvpn 142780 mac 142780 bytes_out 0 142780 bytes_in 0 142780 station_ip 5.119.168.38 142780 port 443 142780 unique_id port 142780 remote_ip 10.8.0.14 142782 username farhad2 142703 bytes_in 0 142703 station_ip 5.119.75.242 142703 port 446 142703 unique_id port 142703 remote_ip 10.8.0.38 142705 username aminvpn 142705 mac 142705 bytes_out 0 142705 bytes_in 0 142705 station_ip 37.129.186.14 142705 port 446 142705 unique_id port 142705 remote_ip 10.8.0.14 142709 username aminvpn 142709 mac 142709 bytes_out 0 142709 bytes_in 0 142709 station_ip 83.122.120.106 142709 port 442 142709 unique_id port 142709 remote_ip 10.8.0.14 142718 username hamidsalari 142718 mac 142718 bytes_out 0 142718 bytes_in 0 142718 station_ip 5.119.200.40 142718 port 377 142718 unique_id port 142720 username hashtadani3 142720 mac 142720 bytes_out 0 142720 bytes_in 0 142720 station_ip 83.122.70.87 142720 port 377 142720 unique_id port 142720 remote_ip 10.8.0.154 142726 username aminvpn 142726 mac 142726 bytes_out 0 142726 bytes_in 0 142726 station_ip 5.119.168.38 142726 port 377 142726 unique_id port 142726 remote_ip 10.8.0.14 142727 username hashtadani3 142727 mac 142727 bytes_out 0 142727 bytes_in 0 142727 station_ip 83.122.70.87 142727 port 231 142727 unique_id port 142727 remote_ip 10.8.1.94 142730 username alipour 142730 kill_reason Another user logged on this global unique id 142730 mac 142730 bytes_out 0 142730 bytes_in 0 142730 station_ip 83.122.223.127 142730 port 454 142730 unique_id port 142731 username saeed9658 142731 mac 142731 bytes_out 0 142731 bytes_in 0 142731 station_ip 5.120.162.92 142731 port 442 142731 unique_id port 142731 remote_ip 10.8.0.62 142733 username hashtadani3 142733 mac 142733 bytes_out 0 142733 bytes_in 0 142733 station_ip 83.122.70.87 142733 port 231 142733 unique_id port 142733 remote_ip 10.8.1.94 142734 username hashtadani3 142734 mac 142734 bytes_out 0 142734 bytes_in 0 142734 station_ip 83.122.70.87 142734 port 442 142734 unique_id port 142734 remote_ip 10.8.0.154 142737 username hashtadani3 142737 mac 142737 bytes_out 0 142737 bytes_in 0 142737 station_ip 83.122.70.87 142737 port 231 142737 unique_id port 142737 remote_ip 10.8.1.94 142738 username hashtadani3 142738 mac 142738 bytes_out 0 142738 bytes_in 0 142738 station_ip 83.122.70.87 142738 port 442 142738 unique_id port 142738 remote_ip 10.8.0.154 142740 username hashtadani3 142740 mac 142740 bytes_out 0 142740 bytes_in 0 142740 station_ip 83.122.70.87 142740 port 231 142740 unique_id port 142740 remote_ip 10.8.1.94 142742 username hashtadani3 142742 mac 142742 bytes_out 0 142742 bytes_in 0 142742 station_ip 83.122.70.87 142742 port 443 142742 unique_id port 142742 remote_ip 10.8.0.154 142744 username hashtadani3 142744 mac 142744 bytes_out 0 142744 bytes_in 0 142744 station_ip 83.122.70.87 142744 port 442 142744 unique_id port 142744 remote_ip 10.8.0.154 142745 username hashtadani3 142745 mac 142745 bytes_out 0 142745 bytes_in 0 142745 station_ip 83.122.70.87 142745 port 442 142745 unique_id port 142745 remote_ip 10.8.0.154 142746 username hashtadani3 142746 mac 142746 bytes_out 0 142746 bytes_in 0 142746 station_ip 83.122.70.87 142746 port 231 142746 unique_id port 142746 remote_ip 10.8.1.94 142748 username hashtadani3 142748 mac 142748 bytes_out 0 142748 bytes_in 0 142748 station_ip 83.122.70.87 142748 port 442 142748 unique_id port 142748 remote_ip 10.8.0.154 142752 username hashtadani3 142752 mac 142752 bytes_out 0 142752 bytes_in 0 142752 station_ip 83.122.70.87 142752 port 442 142752 unique_id port 142711 username aminvpn 142711 mac 142711 bytes_out 0 142711 bytes_in 0 142711 station_ip 5.119.168.38 142711 port 443 142711 unique_id port 142711 remote_ip 10.8.0.14 142712 username aminvpn 142712 unique_id port 142712 terminate_cause User-Request 142712 bytes_out 5015544 142712 bytes_in 67553383 142712 station_ip 83.122.120.106 142712 port 15730798 142712 nas_port_type Virtual 142712 remote_ip 5.5.5.38 142715 username saeed9658 142715 mac 142715 bytes_out 0 142715 bytes_in 0 142715 station_ip 5.120.162.92 142715 port 439 142715 unique_id port 142715 remote_ip 10.8.0.62 142716 username aminvpn 142716 mac 142716 bytes_out 0 142716 bytes_in 0 142716 station_ip 83.122.120.106 142716 port 442 142716 unique_id port 142716 remote_ip 10.8.0.14 142721 username mahdixz 142721 unique_id port 142721 terminate_cause Lost-Carrier 142721 bytes_out 771613 142721 bytes_in 4447370 142721 station_ip 151.235.102.30 142721 port 15730802 142721 nas_port_type Virtual 142721 remote_ip 5.5.5.49 142722 username saeed9658 142722 mac 142722 bytes_out 0 142722 bytes_in 0 142722 station_ip 5.120.162.92 142722 port 234 142722 unique_id port 142722 remote_ip 10.8.1.210 142723 username alipour 142723 kill_reason Another user logged on this global unique id 142723 mac 142723 bytes_out 0 142723 bytes_in 0 142723 station_ip 83.122.223.127 142723 port 454 142723 unique_id port 142725 username saeed9658 142725 mac 142725 bytes_out 0 142725 bytes_in 0 142725 station_ip 5.120.162.92 142725 port 234 142725 unique_id port 142725 remote_ip 10.8.1.210 142728 username hashtadani3 142728 mac 142728 bytes_out 0 142728 bytes_in 0 142728 station_ip 83.122.70.87 142728 port 231 142728 unique_id port 142728 remote_ip 10.8.1.94 142729 username saeed9658 142729 kill_reason Maximum check online fails reached 142729 mac 142729 bytes_out 0 142729 bytes_in 0 142729 station_ip 5.120.162.92 142729 port 234 142729 unique_id port 142735 username hashtadani3 142735 mac 142735 bytes_out 0 142735 bytes_in 0 142735 station_ip 83.122.70.87 142735 port 442 142735 unique_id port 142735 remote_ip 10.8.0.154 142739 username hashtadani3 142739 mac 142739 bytes_out 0 142739 bytes_in 0 142739 station_ip 83.122.70.87 142739 port 442 142739 unique_id port 142739 remote_ip 10.8.0.154 142741 username hashtadani3 142741 mac 142741 bytes_out 0 142741 bytes_in 0 142741 station_ip 83.122.70.87 142741 port 231 142741 unique_id port 142741 remote_ip 10.8.1.94 142749 username hashtadani3 142749 mac 142749 bytes_out 0 142749 bytes_in 0 142749 station_ip 83.122.70.87 142749 port 231 142749 unique_id port 142749 remote_ip 10.8.1.94 142750 username hashtadani3 142750 mac 142750 bytes_out 0 142750 bytes_in 0 142750 station_ip 83.122.70.87 142750 port 442 142750 unique_id port 142750 remote_ip 10.8.0.154 142751 username saeed9658 142751 mac 142751 bytes_out 0 142751 bytes_in 0 142751 station_ip 5.120.162.92 142751 port 443 142751 unique_id port 142751 remote_ip 10.8.0.62 142754 username saeed9658 142754 mac 142754 bytes_out 0 142754 bytes_in 0 142754 station_ip 5.120.162.92 142754 port 443 142754 unique_id port 142754 remote_ip 10.8.0.62 142764 username shahrooz 142764 unique_id port 142764 terminate_cause Lost-Carrier 142764 bytes_out 1439188 142764 bytes_in 31732397 142764 station_ip 37.129.209.146 142764 port 15730795 142764 nas_port_type Virtual 142764 remote_ip 5.5.5.170 142766 username hashtadani3 142766 mac 142766 bytes_out 0 142766 bytes_in 0 142766 station_ip 83.122.70.87 142766 port 442 142752 remote_ip 10.8.0.154 142755 username hashtadani3 142755 mac 142755 bytes_out 0 142755 bytes_in 0 142755 station_ip 83.122.70.87 142755 port 442 142755 unique_id port 142755 remote_ip 10.8.0.154 142756 username hashtadani3 142756 mac 142756 bytes_out 0 142756 bytes_in 0 142756 station_ip 83.122.70.87 142756 port 442 142756 unique_id port 142756 remote_ip 10.8.0.154 142758 username hashtadani3 142758 mac 142758 bytes_out 0 142758 bytes_in 0 142758 station_ip 83.122.70.87 142758 port 442 142758 unique_id port 142758 remote_ip 10.8.0.154 142760 username hashtadani3 142760 mac 142760 bytes_out 0 142760 bytes_in 0 142760 station_ip 83.122.70.87 142760 port 442 142760 unique_id port 142760 remote_ip 10.8.0.154 142761 username hashtadani3 142761 mac 142761 bytes_out 0 142761 bytes_in 0 142761 station_ip 83.122.70.87 142761 port 442 142761 unique_id port 142761 remote_ip 10.8.0.154 142763 username hashtadani3 142763 mac 142763 bytes_out 0 142763 bytes_in 0 142763 station_ip 83.122.70.87 142763 port 442 142763 unique_id port 142763 remote_ip 10.8.0.154 142765 username hashtadani3 142765 mac 142765 bytes_out 0 142765 bytes_in 0 142765 station_ip 83.122.70.87 142765 port 442 142765 unique_id port 142765 remote_ip 10.8.0.154 142773 username hashtadani3 142773 mac 142773 bytes_out 0 142773 bytes_in 0 142773 station_ip 83.122.70.87 142773 port 231 142773 unique_id port 142773 remote_ip 10.8.1.94 142775 username hashtadani3 142775 mac 142775 bytes_out 0 142775 bytes_in 0 142775 station_ip 83.122.70.87 142775 port 231 142775 unique_id port 142775 remote_ip 10.8.1.94 142781 username hashtadani3 142781 mac 142781 bytes_out 0 142781 bytes_in 0 142781 station_ip 83.122.70.87 142781 port 231 142781 unique_id port 142781 remote_ip 10.8.1.94 142783 username hashtadani3 142783 mac 142783 bytes_out 0 142783 bytes_in 0 142783 station_ip 83.122.70.87 142783 port 442 142783 unique_id port 142783 remote_ip 10.8.0.154 142787 username hashtadani3 142787 mac 142787 bytes_out 0 142787 bytes_in 0 142787 station_ip 83.122.70.87 142787 port 231 142787 unique_id port 142787 remote_ip 10.8.1.94 142789 username hashtadani3 142789 mac 142789 bytes_out 0 142789 bytes_in 0 142789 station_ip 83.122.70.87 142789 port 442 142789 unique_id port 142789 remote_ip 10.8.0.154 142792 username amir 142792 kill_reason Relative expiration date has reached 142792 unique_id port 142792 bytes_out 0 142792 bytes_in 0 142792 station_ip 46.225.212.186 142792 port 15730806 142792 nas_port_type Virtual 142795 username amir 142795 kill_reason Relative expiration date has reached 142795 mac 142795 bytes_out 0 142795 bytes_in 0 142795 station_ip 46.225.212.186 142795 port 456 142795 unique_id port 142797 username hashtadani3 142797 mac 142797 bytes_out 0 142797 bytes_in 0 142797 station_ip 83.122.70.87 142797 port 442 142797 unique_id port 142797 remote_ip 10.8.0.154 142798 username saeed9658 142798 mac 142798 bytes_out 0 142798 bytes_in 0 142798 station_ip 5.120.162.92 142798 port 446 142798 unique_id port 142798 remote_ip 10.8.0.62 142804 username saeed9658 142804 mac 142804 bytes_out 0 142804 bytes_in 0 142804 station_ip 5.120.162.92 142804 port 442 142804 unique_id port 142804 remote_ip 10.8.0.62 142807 username hashtadani3 142807 mac 142807 bytes_out 0 142807 bytes_in 0 142807 station_ip 83.122.70.87 142807 port 231 142807 unique_id port 142807 remote_ip 10.8.1.94 142810 username farhad2 142766 unique_id port 142766 remote_ip 10.8.0.154 142767 username hashtadani3 142767 mac 142767 bytes_out 0 142767 bytes_in 0 142767 station_ip 83.122.70.87 142767 port 231 142767 unique_id port 142767 remote_ip 10.8.1.94 142769 username alipour 142769 kill_reason Another user logged on this global unique id 142769 mac 142769 bytes_out 0 142769 bytes_in 0 142769 station_ip 83.122.223.127 142769 port 454 142769 unique_id port 142770 username hashtadani3 142770 mac 142770 bytes_out 0 142770 bytes_in 0 142770 station_ip 83.122.70.87 142770 port 442 142770 unique_id port 142770 remote_ip 10.8.0.154 142771 username hashtadani3 142771 mac 142771 bytes_out 0 142771 bytes_in 0 142771 station_ip 83.122.70.87 142771 port 231 142771 unique_id port 142771 remote_ip 10.8.1.94 142776 username hashtadani3 142776 mac 142776 bytes_out 0 142776 bytes_in 0 142776 station_ip 83.122.70.87 142776 port 442 142776 unique_id port 142776 remote_ip 10.8.0.154 142777 username hashtadani3 142777 mac 142777 bytes_out 0 142777 bytes_in 0 142777 station_ip 83.122.70.87 142777 port 442 142777 unique_id port 142777 remote_ip 10.8.0.154 142778 username hashtadani3 142778 mac 142778 bytes_out 0 142778 bytes_in 0 142778 station_ip 83.122.70.87 142778 port 442 142778 unique_id port 142778 remote_ip 10.8.0.154 142779 username hashtadani3 142779 mac 142779 bytes_out 0 142779 bytes_in 0 142779 station_ip 83.122.70.87 142779 port 442 142779 unique_id port 142779 remote_ip 10.8.0.154 142784 username hashtadani3 142784 mac 142784 bytes_out 0 142784 bytes_in 0 142784 station_ip 83.122.70.87 142784 port 442 142784 unique_id port 142784 remote_ip 10.8.0.154 142785 username hashtadani3 142785 mac 142785 bytes_out 0 142785 bytes_in 0 142785 station_ip 83.122.70.87 142785 port 231 142785 unique_id port 142785 remote_ip 10.8.1.94 142790 username amir 142790 kill_reason Relative expiration date has reached 142790 mac 142790 bytes_out 0 142790 bytes_in 0 142790 station_ip 46.225.212.186 142790 port 442 142790 unique_id port 142794 username saeed9658 142794 mac 142794 bytes_out 0 142794 bytes_in 0 142794 station_ip 5.120.162.92 142794 port 446 142794 unique_id port 142794 remote_ip 10.8.0.62 142800 username sabaghnezhad 142800 mac 142800 bytes_out 124743 142800 bytes_in 152991 142800 station_ip 5.214.79.130 142800 port 230 142800 unique_id port 142800 remote_ip 10.8.1.130 142801 username hashtadani3 142801 mac 142801 bytes_out 0 142801 bytes_in 0 142801 station_ip 83.122.70.87 142801 port 442 142801 unique_id port 142801 remote_ip 10.8.0.154 142803 username hashtadani3 142803 mac 142803 bytes_out 0 142803 bytes_in 0 142803 station_ip 83.122.70.87 142803 port 237 142803 unique_id port 142803 remote_ip 10.8.1.94 142806 username hashtadani3 142806 mac 142806 bytes_out 0 142806 bytes_in 0 142806 station_ip 83.122.70.87 142806 port 231 142806 unique_id port 142806 remote_ip 10.8.1.94 142808 username hashtadani3 142808 mac 142808 bytes_out 0 142808 bytes_in 0 142808 station_ip 83.122.70.87 142808 port 231 142808 unique_id port 142808 remote_ip 10.8.1.94 142811 username hashtadani3 142811 mac 142811 bytes_out 0 142811 bytes_in 0 142811 station_ip 83.122.70.87 142811 port 442 142811 unique_id port 142811 remote_ip 10.8.0.154 142812 username hashtadani3 142812 mac 142812 bytes_out 0 142812 bytes_in 0 142812 station_ip 83.122.70.87 142812 port 442 142812 unique_id port 142812 remote_ip 10.8.0.154 142782 kill_reason Another user logged on this global unique id 142782 mac 142782 bytes_out 0 142782 bytes_in 0 142782 station_ip 5.119.233.82 142782 port 452 142782 unique_id port 142786 username hashtadani3 142786 mac 142786 bytes_out 0 142786 bytes_in 0 142786 station_ip 83.122.70.87 142786 port 442 142786 unique_id port 142786 remote_ip 10.8.0.154 142788 username hashtadani3 142788 mac 142788 bytes_out 0 142788 bytes_in 0 142788 station_ip 83.122.70.87 142788 port 231 142788 unique_id port 142788 remote_ip 10.8.1.94 142791 username hashtadani3 142791 mac 142791 bytes_out 0 142791 bytes_in 0 142791 station_ip 83.122.70.87 142791 port 231 142791 unique_id port 142791 remote_ip 10.8.1.94 142793 username hashtadani3 142793 mac 142793 bytes_out 0 142793 bytes_in 0 142793 station_ip 83.122.70.87 142793 port 442 142793 unique_id port 142793 remote_ip 10.8.0.154 142796 username hashtadani3 142796 mac 142796 bytes_out 0 142796 bytes_in 0 142796 station_ip 83.122.70.87 142796 port 442 142796 unique_id port 142796 remote_ip 10.8.0.154 142799 username hashtadani3 142799 mac 142799 bytes_out 0 142799 bytes_in 0 142799 station_ip 83.122.70.87 142799 port 442 142799 unique_id port 142799 remote_ip 10.8.0.154 142802 username kordestani 142802 mac 142802 bytes_out 0 142802 bytes_in 0 142802 station_ip 83.123.188.195 142802 port 231 142802 unique_id port 142802 remote_ip 10.8.1.98 142805 username hashtadani3 142805 kill_reason Maximum check online fails reached 142805 mac 142805 bytes_out 0 142805 bytes_in 0 142805 station_ip 83.122.70.87 142805 port 236 142805 unique_id port 142809 username hashtadani3 142809 mac 142809 bytes_out 0 142809 bytes_in 0 142809 station_ip 83.122.70.87 142809 port 231 142809 unique_id port 142809 remote_ip 10.8.1.94 142813 username hashtadani3 142813 mac 142813 bytes_out 0 142813 bytes_in 0 142813 station_ip 83.122.70.87 142813 port 231 142813 unique_id port 142813 remote_ip 10.8.1.94 142820 username hashtadani3 142820 mac 142820 bytes_out 0 142820 bytes_in 0 142820 station_ip 83.122.70.87 142820 port 456 142820 unique_id port 142820 remote_ip 10.8.0.154 142825 username mansur 142825 mac 142825 bytes_out 0 142825 bytes_in 0 142825 station_ip 5.120.139.124 142825 port 456 142825 unique_id port 142825 remote_ip 10.8.0.18 142832 username saeed9658 142832 mac 142832 bytes_out 0 142832 bytes_in 0 142832 station_ip 5.120.162.92 142832 port 442 142832 unique_id port 142832 remote_ip 10.8.0.62 142838 username sabaghnezhad 142838 mac 142838 bytes_out 0 142838 bytes_in 0 142838 station_ip 5.214.79.130 142838 port 230 142838 unique_id port 142838 remote_ip 10.8.1.130 142841 username farhad2 142841 mac 142841 bytes_out 0 142841 bytes_in 0 142841 station_ip 5.119.233.82 142841 port 452 142841 unique_id port 142843 username saeed9658 142843 mac 142843 bytes_out 0 142843 bytes_in 0 142843 station_ip 5.120.162.92 142843 port 235 142843 unique_id port 142843 remote_ip 10.8.1.210 142844 username aminvpn 142844 mac 142844 bytes_out 0 142844 bytes_in 0 142844 station_ip 5.119.168.38 142844 port 235 142844 unique_id port 142844 remote_ip 10.8.1.6 142845 username alikomsari 142845 kill_reason Another user logged on this global unique id 142845 mac 142845 bytes_out 0 142845 bytes_in 0 142845 station_ip 5.120.148.132 142845 port 377 142845 unique_id port 142845 remote_ip 10.8.0.70 142848 username sabaghnezhad 142848 mac 142848 bytes_out 0 142848 bytes_in 0 142810 kill_reason Another user logged on this global unique id 142810 mac 142810 bytes_out 0 142810 bytes_in 0 142810 station_ip 5.119.233.82 142810 port 452 142810 unique_id port 142814 username hashtadani3 142814 mac 142814 bytes_out 0 142814 bytes_in 0 142814 station_ip 83.122.70.87 142814 port 442 142814 unique_id port 142814 remote_ip 10.8.0.154 142816 username hashtadani3 142816 mac 142816 bytes_out 0 142816 bytes_in 0 142816 station_ip 83.122.70.87 142816 port 231 142816 unique_id port 142816 remote_ip 10.8.1.94 142822 username hashtadani3 142822 mac 142822 bytes_out 0 142822 bytes_in 0 142822 station_ip 83.122.70.87 142822 port 231 142822 unique_id port 142822 remote_ip 10.8.1.94 142824 username hashtadani3 142824 mac 142824 bytes_out 0 142824 bytes_in 0 142824 station_ip 83.122.70.87 142824 port 231 142824 unique_id port 142824 remote_ip 10.8.1.94 142827 username saeed9658 142827 mac 142827 bytes_out 0 142827 bytes_in 0 142827 station_ip 5.120.162.92 142827 port 231 142827 unique_id port 142827 remote_ip 10.8.1.210 142828 username farhad2 142828 kill_reason Another user logged on this global unique id 142828 mac 142828 bytes_out 0 142828 bytes_in 0 142828 station_ip 5.119.233.82 142828 port 452 142828 unique_id port 142829 username mahdiyehalizadeh 142829 mac 142829 bytes_out 0 142829 bytes_in 0 142829 station_ip 113.203.21.59 142829 port 442 142829 unique_id port 142829 remote_ip 10.8.0.82 142830 username aminvpn 142830 mac 142830 bytes_out 0 142830 bytes_in 0 142830 station_ip 5.119.168.38 142830 port 237 142830 unique_id port 142830 remote_ip 10.8.1.6 142831 username naeimeh 142831 mac 142831 bytes_out 0 142831 bytes_in 0 142831 station_ip 83.123.36.7 142831 port 235 142831 unique_id port 142831 remote_ip 10.8.1.206 142833 username kordestani 142833 mac 142833 bytes_out 1812985 142833 bytes_in 31982230 142833 station_ip 83.122.80.248 142833 port 231 142833 unique_id port 142833 remote_ip 10.8.1.98 142837 username aminvpn 142837 mac 142837 bytes_out 0 142837 bytes_in 0 142837 station_ip 5.119.168.38 142837 port 231 142837 unique_id port 142837 remote_ip 10.8.1.6 142840 username aminvpn 142840 mac 142840 bytes_out 0 142840 bytes_in 0 142840 station_ip 5.119.168.38 142840 port 231 142840 unique_id port 142840 remote_ip 10.8.1.6 142842 username saeed9658 142842 mac 142842 bytes_out 0 142842 bytes_in 0 142842 station_ip 5.120.162.92 142842 port 235 142842 unique_id port 142842 remote_ip 10.8.1.210 142846 username farhad2 142846 mac 142846 bytes_out 0 142846 bytes_in 0 142846 station_ip 5.119.233.82 142846 port 231 142846 unique_id port 142846 remote_ip 10.8.1.222 142847 username saeed9658 142847 mac 142847 bytes_out 0 142847 bytes_in 0 142847 station_ip 5.120.162.92 142847 port 452 142847 unique_id port 142847 remote_ip 10.8.0.62 142851 username saeed9658 142851 mac 142851 bytes_out 0 142851 bytes_in 0 142851 station_ip 5.120.162.92 142851 port 230 142851 unique_id port 142851 remote_ip 10.8.1.210 142853 username saeed9658 142853 mac 142853 bytes_out 0 142853 bytes_in 0 142853 station_ip 5.120.162.92 142853 port 457 142853 unique_id port 142853 remote_ip 10.8.0.62 142856 username aminvpn 142856 mac 142856 bytes_out 0 142856 bytes_in 0 142856 station_ip 5.119.168.38 142856 port 230 142856 unique_id port 142856 remote_ip 10.8.1.6 142858 username milan 142858 kill_reason Another user logged on this global unique id 142858 mac 142858 bytes_out 0 142815 username saeed9658 142815 mac 142815 bytes_out 0 142815 bytes_in 0 142815 station_ip 5.120.162.92 142815 port 446 142815 unique_id port 142815 remote_ip 10.8.0.62 142817 username hashtadani3 142817 mac 142817 bytes_out 0 142817 bytes_in 0 142817 station_ip 83.122.70.87 142817 port 231 142817 unique_id port 142817 remote_ip 10.8.1.94 142818 username hashtadani3 142818 mac 142818 bytes_out 0 142818 bytes_in 0 142818 station_ip 83.122.70.87 142818 port 231 142818 unique_id port 142818 remote_ip 10.8.1.94 142819 username hashtadani3 142819 mac 142819 bytes_out 0 142819 bytes_in 0 142819 station_ip 83.122.70.87 142819 port 231 142819 unique_id port 142819 remote_ip 10.8.1.94 142821 username aminvpn 142821 kill_reason Maximum check online fails reached 142821 mac 142821 bytes_out 0 142821 bytes_in 0 142821 station_ip 5.119.168.38 142821 port 446 142821 unique_id port 142823 username hashtadani3 142823 mac 142823 bytes_out 0 142823 bytes_in 0 142823 station_ip 83.122.70.87 142823 port 457 142823 unique_id port 142823 remote_ip 10.8.0.154 142826 username hashtadani3 142826 mac 142826 bytes_out 148477 142826 bytes_in 894233 142826 station_ip 83.122.70.87 142826 port 457 142826 unique_id port 142826 remote_ip 10.8.0.154 142834 username saeed9658 142834 mac 142834 bytes_out 0 142834 bytes_in 0 142834 station_ip 5.120.162.92 142834 port 235 142834 unique_id port 142834 remote_ip 10.8.1.210 142835 username kordestani 142835 mac 142835 bytes_out 0 142835 bytes_in 0 142835 station_ip 37.129.202.52 142835 port 231 142835 unique_id port 142835 remote_ip 10.8.1.98 142836 username saeed9658 142836 kill_reason Maximum check online fails reached 142836 mac 142836 bytes_out 0 142836 bytes_in 0 142836 station_ip 5.120.162.92 142836 port 456 142836 unique_id port 142839 username saeed9658 142839 mac 142839 bytes_out 0 142839 bytes_in 0 142839 station_ip 5.120.162.92 142839 port 231 142839 unique_id port 142839 remote_ip 10.8.1.210 142852 username saeed9658 142852 mac 142852 bytes_out 0 142852 bytes_in 0 142852 station_ip 5.120.162.92 142852 port 230 142852 unique_id port 142852 remote_ip 10.8.1.210 142857 username kalantary 142857 mac 142857 bytes_out 312148 142857 bytes_in 1165325 142857 station_ip 83.123.60.161 142857 port 457 142857 unique_id port 142857 remote_ip 10.8.0.98 142860 username mosi 142860 kill_reason Another user logged on this global unique id 142860 mac 142860 bytes_out 0 142860 bytes_in 0 142860 station_ip 151.235.76.146 142860 port 452 142860 unique_id port 142863 username aminvpn 142863 mac 142863 bytes_out 0 142863 bytes_in 0 142863 station_ip 5.119.168.38 142863 port 457 142863 unique_id port 142863 remote_ip 10.8.0.14 142865 username hamidsalari 142865 mac 142865 bytes_out 0 142865 bytes_in 0 142865 station_ip 5.120.116.230 142865 port 439 142865 unique_id port 142867 username saeed9658 142867 mac 142867 bytes_out 0 142867 bytes_in 0 142867 station_ip 5.120.162.92 142867 port 231 142867 unique_id port 142867 remote_ip 10.8.1.210 142870 username mosi 142870 kill_reason Another user logged on this global unique id 142870 mac 142870 bytes_out 0 142870 bytes_in 0 142870 station_ip 151.235.76.146 142870 port 452 142870 unique_id port 142873 username farhad2 142873 mac 142873 bytes_out 0 142873 bytes_in 0 142873 station_ip 5.119.233.82 142873 port 230 142873 unique_id port 142874 username saeed9658 142874 kill_reason Maximum check online fails reached 142874 mac 142848 station_ip 5.214.79.130 142848 port 230 142848 unique_id port 142848 remote_ip 10.8.1.130 142849 username aminvpn 142849 mac 142849 bytes_out 0 142849 bytes_in 0 142849 station_ip 5.119.168.38 142849 port 230 142849 unique_id port 142849 remote_ip 10.8.1.6 142850 username saeed9658 142850 mac 142850 bytes_out 0 142850 bytes_in 0 142850 station_ip 5.120.162.92 142850 port 452 142850 unique_id port 142850 remote_ip 10.8.0.62 142854 username mosi 142854 kill_reason Another user logged on this global unique id 142854 mac 142854 bytes_out 0 142854 bytes_in 0 142854 station_ip 151.235.76.146 142854 port 452 142854 unique_id port 142854 remote_ip 10.8.0.138 142855 username saeed9658 142855 mac 142855 bytes_out 0 142855 bytes_in 0 142855 station_ip 5.120.162.92 142855 port 230 142855 unique_id port 142855 remote_ip 10.8.1.210 142861 username saeed9658 142861 mac 142861 bytes_out 0 142861 bytes_in 0 142861 station_ip 5.120.162.92 142861 port 457 142861 unique_id port 142861 remote_ip 10.8.0.62 142864 username hamidsalari 142864 kill_reason Another user logged on this global unique id 142864 mac 142864 bytes_out 0 142864 bytes_in 0 142864 station_ip 5.120.116.230 142864 port 439 142864 unique_id port 142864 remote_ip 10.8.0.222 142866 username alikomsari 142866 mac 142866 bytes_out 0 142866 bytes_in 0 142866 station_ip 5.120.148.132 142866 port 377 142866 unique_id port 142868 username saeed9658 142868 mac 142868 bytes_out 0 142868 bytes_in 0 142868 station_ip 5.120.162.92 142868 port 377 142868 unique_id port 142868 remote_ip 10.8.0.62 142869 username saeed9658 142869 mac 142869 bytes_out 0 142869 bytes_in 0 142869 station_ip 5.120.162.92 142869 port 231 142869 unique_id port 142869 remote_ip 10.8.1.210 142872 username farhad2 142872 kill_reason Another user logged on this global unique id 142872 mac 142872 bytes_out 0 142872 bytes_in 0 142872 station_ip 5.119.233.82 142872 port 230 142872 unique_id port 142872 remote_ip 10.8.1.222 142877 username saeed9658 142877 mac 142877 bytes_out 0 142877 bytes_in 0 142877 station_ip 5.120.162.92 142877 port 231 142877 unique_id port 142877 remote_ip 10.8.1.210 142879 username saeed9658 142879 mac 142879 bytes_out 0 142879 bytes_in 0 142879 station_ip 5.120.162.92 142879 port 231 142879 unique_id port 142879 remote_ip 10.8.1.210 142884 username kalantary 142884 mac 142884 bytes_out 543295 142884 bytes_in 3113492 142884 station_ip 83.123.35.229 142884 port 439 142884 unique_id port 142884 remote_ip 10.8.0.98 142886 username saeed9658 142886 mac 142886 bytes_out 0 142886 bytes_in 0 142886 station_ip 5.120.162.92 142886 port 439 142886 unique_id port 142886 remote_ip 10.8.0.62 142887 username jafari 142887 mac 142887 bytes_out 1516406 142887 bytes_in 16356481 142887 station_ip 37.137.23.170 142887 port 379 142887 unique_id port 142887 remote_ip 10.8.0.242 142889 username mosi 142889 kill_reason Another user logged on this global unique id 142889 mac 142889 bytes_out 0 142889 bytes_in 0 142889 station_ip 151.235.76.146 142889 port 452 142889 unique_id port 142890 username hamidsalari 142890 mac 142890 bytes_out 0 142890 bytes_in 0 142890 station_ip 5.120.173.194 142890 port 457 142890 unique_id port 142891 username saeed9658 142891 mac 142891 bytes_out 0 142891 bytes_in 0 142891 station_ip 5.120.162.92 142891 port 231 142891 unique_id port 142891 remote_ip 10.8.1.210 142892 username aminvpn 142892 mac 142892 bytes_out 0 142892 bytes_in 0 142858 bytes_in 0 142858 station_ip 5.120.137.214 142858 port 443 142858 unique_id port 142858 remote_ip 10.8.0.218 142859 username farhad2 142859 mac 142859 bytes_out 3050605 142859 bytes_in 30013459 142859 station_ip 5.119.233.82 142859 port 231 142859 unique_id port 142859 remote_ip 10.8.1.222 142862 username saeed9658 142862 mac 142862 bytes_out 0 142862 bytes_in 0 142862 station_ip 5.120.162.92 142862 port 231 142862 unique_id port 142862 remote_ip 10.8.1.210 142871 username aminvpn 142871 mac 142871 bytes_out 0 142871 bytes_in 0 142871 station_ip 5.119.168.38 142871 port 377 142871 unique_id port 142871 remote_ip 10.8.0.14 142875 username hamidsalari 142875 kill_reason Another user logged on this global unique id 142875 mac 142875 bytes_out 0 142875 bytes_in 0 142875 station_ip 5.120.173.194 142875 port 457 142875 unique_id port 142875 remote_ip 10.8.0.222 142878 username mosi 142878 kill_reason Another user logged on this global unique id 142878 mac 142878 bytes_out 0 142878 bytes_in 0 142878 station_ip 151.235.76.146 142878 port 452 142878 unique_id port 142881 username saeed9658 142881 mac 142881 bytes_out 0 142881 bytes_in 0 142881 station_ip 5.120.162.92 142881 port 379 142881 unique_id port 142881 remote_ip 10.8.0.62 142883 username saeed9658 142883 mac 142883 bytes_out 0 142883 bytes_in 0 142883 station_ip 5.120.162.92 142883 port 231 142883 unique_id port 142883 remote_ip 10.8.1.210 142893 username saeed9658 142893 kill_reason Maximum check online fails reached 142893 mac 142893 bytes_out 0 142893 bytes_in 0 142893 station_ip 5.120.162.92 142893 port 379 142893 unique_id port 142896 username mosi 142896 kill_reason Another user logged on this global unique id 142896 mac 142896 bytes_out 0 142896 bytes_in 0 142896 station_ip 151.235.76.146 142896 port 452 142896 unique_id port 142898 username saeed9658 142898 mac 142898 bytes_out 0 142898 bytes_in 0 142898 station_ip 5.120.162.92 142898 port 231 142898 unique_id port 142898 remote_ip 10.8.1.210 142901 username farhad2 142901 kill_reason Another user logged on this global unique id 142901 mac 142901 bytes_out 0 142901 bytes_in 0 142901 station_ip 5.119.233.82 142901 port 230 142901 unique_id port 142901 remote_ip 10.8.1.222 142905 username mosi 142905 kill_reason Another user logged on this global unique id 142905 mac 142905 bytes_out 0 142905 bytes_in 0 142905 station_ip 151.235.76.146 142905 port 452 142905 unique_id port 142907 username kalantary 142907 mac 142907 bytes_out 2053115 142907 bytes_in 33819824 142907 station_ip 83.123.28.25 142907 port 439 142907 unique_id port 142907 remote_ip 10.8.0.98 142910 username aminvpn 142910 mac 142910 bytes_out 0 142910 bytes_in 0 142910 station_ip 5.119.168.38 142910 port 439 142910 unique_id port 142910 remote_ip 10.8.0.14 142914 username saeed9658 142914 mac 142914 bytes_out 0 142914 bytes_in 0 142914 station_ip 5.120.162.92 142914 port 231 142914 unique_id port 142914 remote_ip 10.8.1.210 142919 username farhad2 142919 mac 142919 bytes_out 0 142919 bytes_in 0 142919 station_ip 5.119.233.82 142919 port 230 142919 unique_id port 142920 username saeed9658 142920 mac 142920 bytes_out 0 142920 bytes_in 0 142920 station_ip 5.120.162.92 142920 port 459 142920 unique_id port 142920 remote_ip 10.8.0.62 142925 username saeed9658 142925 kill_reason Maximum check online fails reached 142925 mac 142925 bytes_out 0 142925 bytes_in 0 142925 station_ip 5.120.162.92 142925 port 230 142925 unique_id port 142927 username kordestani 142927 mac 142874 bytes_out 0 142874 bytes_in 0 142874 station_ip 5.120.162.92 142874 port 377 142874 unique_id port 142876 username farhad2 142876 mac 142876 bytes_out 0 142876 bytes_in 0 142876 station_ip 5.119.233.82 142876 port 230 142876 unique_id port 142876 remote_ip 10.8.1.222 142880 username zotaher 142880 mac 142880 bytes_out 2626232 142880 bytes_in 13448151 142880 station_ip 83.122.105.25 142880 port 379 142880 unique_id port 142880 remote_ip 10.8.0.194 142882 username mosi 142882 kill_reason Another user logged on this global unique id 142882 mac 142882 bytes_out 0 142882 bytes_in 0 142882 station_ip 151.235.76.146 142882 port 452 142882 unique_id port 142885 username aminvpn 142885 mac 142885 bytes_out 9643 142885 bytes_in 10470 142885 station_ip 5.119.168.38 142885 port 439 142885 unique_id port 142885 remote_ip 10.8.0.14 142888 username saeed9658 142888 mac 142888 bytes_out 0 142888 bytes_in 0 142888 station_ip 5.120.162.92 142888 port 379 142888 unique_id port 142888 remote_ip 10.8.0.62 142897 username saeed9658 142897 mac 142897 bytes_out 0 142897 bytes_in 0 142897 station_ip 5.120.162.92 142897 port 439 142897 unique_id port 142897 remote_ip 10.8.0.62 142900 username saeed9658 142900 mac 142900 bytes_out 0 142900 bytes_in 0 142900 station_ip 5.120.162.92 142900 port 231 142900 unique_id port 142900 remote_ip 10.8.1.210 142903 username saeed9658 142903 mac 142903 bytes_out 0 142903 bytes_in 0 142903 station_ip 5.120.162.92 142903 port 231 142903 unique_id port 142903 remote_ip 10.8.1.210 142908 username saeed9658 142908 mac 142908 bytes_out 0 142908 bytes_in 0 142908 station_ip 5.120.162.92 142908 port 231 142908 unique_id port 142908 remote_ip 10.8.1.210 142909 username mosi 142909 kill_reason Another user logged on this global unique id 142909 mac 142909 bytes_out 0 142909 bytes_in 0 142909 station_ip 151.235.76.146 142909 port 452 142909 unique_id port 142911 username mahdixz 142911 unique_id port 142911 terminate_cause Lost-Carrier 142911 bytes_out 8848029 142911 bytes_in 311929465 142911 station_ip 151.235.102.30 142911 port 15730807 142911 nas_port_type Virtual 142911 remote_ip 5.5.5.53 142912 username aminvpn 142912 mac 142912 bytes_out 0 142912 bytes_in 0 142912 station_ip 5.119.168.38 142912 port 439 142912 unique_id port 142912 remote_ip 10.8.0.14 142915 username aminvpn 142915 mac 142915 bytes_out 0 142915 bytes_in 0 142915 station_ip 5.119.168.38 142915 port 235 142915 unique_id port 142915 remote_ip 10.8.1.6 142916 username saeed9658 142916 mac 142916 bytes_out 0 142916 bytes_in 0 142916 station_ip 5.120.162.92 142916 port 235 142916 unique_id port 142916 remote_ip 10.8.1.210 142917 username farhad2 142917 kill_reason Another user logged on this global unique id 142917 mac 142917 bytes_out 0 142917 bytes_in 0 142917 station_ip 5.119.233.82 142917 port 230 142917 unique_id port 142918 username mahdixz 142918 unique_id port 142918 terminate_cause Lost-Carrier 142918 bytes_out 1957131 142918 bytes_in 79473569 142918 station_ip 151.235.102.30 142918 port 15730808 142918 nas_port_type Virtual 142918 remote_ip 5.5.5.56 142923 username saeed9658 142923 mac 142923 bytes_out 2472 142923 bytes_in 5067 142923 station_ip 5.120.162.92 142923 port 230 142923 unique_id port 142923 remote_ip 10.8.1.210 142930 username saeed9658 142930 mac 142930 bytes_out 0 142930 bytes_in 0 142930 station_ip 5.120.162.92 142930 port 439 142930 unique_id port 142930 remote_ip 10.8.0.62 142935 username saeed9658 142892 station_ip 5.119.168.38 142892 port 379 142892 unique_id port 142892 remote_ip 10.8.0.14 142894 username saeed9658 142894 mac 142894 bytes_out 0 142894 bytes_in 0 142894 station_ip 5.120.162.92 142894 port 439 142894 unique_id port 142894 remote_ip 10.8.0.62 142895 username saeed9658 142895 mac 142895 bytes_out 0 142895 bytes_in 0 142895 station_ip 5.120.162.92 142895 port 231 142895 unique_id port 142895 remote_ip 10.8.1.210 142899 username aminvpn 142899 mac 142899 bytes_out 0 142899 bytes_in 0 142899 station_ip 5.119.168.38 142899 port 439 142899 unique_id port 142899 remote_ip 10.8.0.14 142902 username saeed9658 142902 kill_reason Maximum check online fails reached 142902 mac 142902 bytes_out 0 142902 bytes_in 0 142902 station_ip 5.120.162.92 142902 port 457 142902 unique_id port 142904 username saeed9658 142904 mac 142904 bytes_out 0 142904 bytes_in 0 142904 station_ip 5.120.162.92 142904 port 231 142904 unique_id port 142904 remote_ip 10.8.1.210 142906 username aminvpn 142906 mac 142906 bytes_out 0 142906 bytes_in 0 142906 station_ip 5.119.168.38 142906 port 458 142906 unique_id port 142906 remote_ip 10.8.0.14 142913 username saeed9658 142913 mac 142913 bytes_out 0 142913 bytes_in 0 142913 station_ip 5.120.162.92 142913 port 439 142913 unique_id port 142913 remote_ip 10.8.0.62 142921 username aminvpn 142921 mac 142921 bytes_out 0 142921 bytes_in 0 142921 station_ip 5.119.168.38 142921 port 439 142921 unique_id port 142921 remote_ip 10.8.0.14 142922 username mohammadjavad 142922 mac 142922 bytes_out 0 142922 bytes_in 0 142922 station_ip 37.129.22.109 142922 port 458 142922 unique_id port 142922 remote_ip 10.8.0.142 142924 username kordestani 142924 kill_reason Another user logged on this global unique id 142924 mac 142924 bytes_out 0 142924 bytes_in 0 142924 station_ip 37.129.219.159 142924 port 231 142924 unique_id port 142924 remote_ip 10.8.1.98 142926 username aminvpn 142926 mac 142926 bytes_out 0 142926 bytes_in 0 142926 station_ip 5.119.168.38 142926 port 439 142926 unique_id port 142926 remote_ip 10.8.0.14 142929 username saeed9658 142929 mac 142929 bytes_out 0 142929 bytes_in 0 142929 station_ip 5.120.162.92 142929 port 231 142929 unique_id port 142929 remote_ip 10.8.1.210 142931 username aminvpn 142931 mac 142931 bytes_out 0 142931 bytes_in 0 142931 station_ip 5.119.168.38 142931 port 439 142931 unique_id port 142931 remote_ip 10.8.0.14 142934 username aminvpn 142934 mac 142934 bytes_out 0 142934 bytes_in 0 142934 station_ip 5.119.168.38 142934 port 231 142934 unique_id port 142934 remote_ip 10.8.1.6 142937 username aminvpn 142937 mac 142937 bytes_out 0 142937 bytes_in 0 142937 station_ip 5.119.168.38 142937 port 458 142937 unique_id port 142937 remote_ip 10.8.0.14 142945 username aminvpn 142945 mac 142945 bytes_out 0 142945 bytes_in 0 142945 station_ip 5.119.168.38 142945 port 458 142945 unique_id port 142945 remote_ip 10.8.0.14 142954 username saeed9658 142954 mac 142954 bytes_out 0 142954 bytes_in 0 142954 station_ip 5.120.162.92 142954 port 460 142954 unique_id port 142954 remote_ip 10.8.0.62 142955 username morteza 142955 mac 142955 bytes_out 39303 142955 bytes_in 186571 142955 station_ip 113.203.103.223 142955 port 458 142955 unique_id port 142955 remote_ip 10.8.0.46 142957 username saeed9658 142957 mac 142957 bytes_out 0 142957 bytes_in 0 142957 station_ip 5.120.162.92 142957 port 460 142957 unique_id port 142927 bytes_out 0 142927 bytes_in 0 142927 station_ip 37.129.219.159 142927 port 231 142927 unique_id port 142928 username saeed9658 142928 mac 142928 bytes_out 0 142928 bytes_in 0 142928 station_ip 5.120.162.92 142928 port 439 142928 unique_id port 142928 remote_ip 10.8.0.62 142932 username saeed9658 142932 mac 142932 bytes_out 0 142932 bytes_in 0 142932 station_ip 5.120.162.92 142932 port 439 142932 unique_id port 142932 remote_ip 10.8.0.62 142933 username saeed9658 142933 mac 142933 bytes_out 0 142933 bytes_in 0 142933 station_ip 5.120.162.92 142933 port 439 142933 unique_id port 142933 remote_ip 10.8.0.62 142936 username saeed9658 142936 mac 142936 bytes_out 0 142936 bytes_in 0 142936 station_ip 5.120.162.92 142936 port 439 142936 unique_id port 142936 remote_ip 10.8.0.62 142939 username saeed9658 142939 mac 142939 bytes_out 0 142939 bytes_in 0 142939 station_ip 5.120.162.92 142939 port 439 142939 unique_id port 142939 remote_ip 10.8.0.62 142940 username saeed9658 142940 mac 142940 bytes_out 0 142940 bytes_in 0 142940 station_ip 5.120.162.92 142940 port 235 142940 unique_id port 142940 remote_ip 10.8.1.210 142941 username aminvpn 142941 mac 142941 bytes_out 0 142941 bytes_in 0 142941 station_ip 5.119.168.38 142941 port 459 142941 unique_id port 142941 remote_ip 10.8.0.14 142943 username saeed9658 142943 mac 142943 bytes_out 0 142943 bytes_in 0 142943 station_ip 5.120.162.92 142943 port 439 142943 unique_id port 142943 remote_ip 10.8.0.62 142944 username farhad2 142944 mac 142944 bytes_out 0 142944 bytes_in 0 142944 station_ip 5.119.233.82 142944 port 458 142944 unique_id port 142944 remote_ip 10.8.0.190 142946 username morteza 142946 mac 142946 bytes_out 0 142946 bytes_in 0 142946 station_ip 113.203.103.223 142946 port 458 142946 unique_id port 142946 remote_ip 10.8.0.46 142947 username saeed9658 142947 mac 142947 bytes_out 0 142947 bytes_in 0 142947 station_ip 5.120.162.92 142947 port 235 142947 unique_id port 142947 remote_ip 10.8.1.210 142948 username morteza 142948 mac 142948 bytes_out 0 142948 bytes_in 0 142948 station_ip 113.203.103.223 142948 port 458 142948 unique_id port 142948 remote_ip 10.8.0.46 142952 username aminvpn 142952 mac 142952 bytes_out 0 142952 bytes_in 0 142952 station_ip 5.119.168.38 142952 port 459 142952 unique_id port 142952 remote_ip 10.8.0.14 142953 username morteza 142953 mac 142953 bytes_out 0 142953 bytes_in 0 142953 station_ip 113.203.103.223 142953 port 458 142953 unique_id port 142953 remote_ip 10.8.0.46 142956 username morteza 142956 mac 142956 bytes_out 0 142956 bytes_in 0 142956 station_ip 113.203.103.223 142956 port 458 142956 unique_id port 142956 remote_ip 10.8.0.46 142957 remote_ip 10.8.0.62 142959 username kalantary 142959 mac 142959 bytes_out 1095433 142959 bytes_in 19056006 142959 station_ip 83.123.18.217 142959 port 459 142959 unique_id port 142959 remote_ip 10.8.0.98 142961 username aminvpn 142961 mac 142961 bytes_out 0 142961 bytes_in 0 142961 station_ip 5.119.168.38 142961 port 458 142961 unique_id port 142961 remote_ip 10.8.0.14 142962 username farhad2 142962 kill_reason Another user logged on this global unique id 142962 mac 142962 bytes_out 0 142962 bytes_in 0 142962 station_ip 5.119.233.82 142962 port 439 142962 unique_id port 142962 remote_ip 10.8.0.190 142963 username saeed9658 142963 mac 142963 bytes_out 0 142963 bytes_in 0 142963 station_ip 5.120.162.92 142935 mac 142935 bytes_out 0 142935 bytes_in 0 142935 station_ip 5.120.162.92 142935 port 439 142935 unique_id port 142935 remote_ip 10.8.0.62 142938 username saeed9658 142938 kill_reason Maximum check online fails reached 142938 mac 142938 bytes_out 0 142938 bytes_in 0 142938 station_ip 5.120.162.92 142938 port 231 142938 unique_id port 142942 username kalantary 142942 mac 142942 bytes_out 954080 142942 bytes_in 9974406 142942 station_ip 83.123.87.25 142942 port 439 142942 unique_id port 142942 remote_ip 10.8.0.98 142949 username saeed9658 142949 mac 142949 bytes_out 0 142949 bytes_in 0 142949 station_ip 5.120.162.92 142949 port 235 142949 unique_id port 142949 remote_ip 10.8.1.210 142950 username saeed9658 142950 mac 142950 bytes_out 0 142950 bytes_in 0 142950 station_ip 5.120.162.92 142950 port 235 142950 unique_id port 142950 remote_ip 10.8.1.210 142951 username aminvpn 142951 mac 142951 bytes_out 0 142951 bytes_in 0 142951 station_ip 5.119.168.38 142951 port 459 142951 unique_id port 142951 remote_ip 10.8.0.14 142958 username morteza 142958 mac 142958 bytes_out 0 142958 bytes_in 0 142958 station_ip 113.203.103.223 142958 port 458 142958 unique_id port 142958 remote_ip 10.8.0.46 142960 username aminvpn 142960 mac 142960 bytes_out 0 142960 bytes_in 0 142960 station_ip 5.119.168.38 142960 port 458 142960 unique_id port 142960 remote_ip 10.8.0.14 142963 port 459 142963 unique_id port 142963 remote_ip 10.8.0.62 142964 username morteza 142964 mac 142964 bytes_out 21449 142964 bytes_in 30523 142964 station_ip 113.203.103.223 142964 port 235 142964 unique_id port 142964 remote_ip 10.8.1.62 142965 username hashtadani3 142965 mac 142965 bytes_out 211710 142965 bytes_in 77104 142965 station_ip 37.129.1.245 142965 port 458 142965 unique_id port 142965 remote_ip 10.8.0.154 142966 username hashtadani3 142966 mac 142966 bytes_out 0 142966 bytes_in 0 142966 station_ip 37.129.1.245 142966 port 235 142966 unique_id port 142966 remote_ip 10.8.1.94 142967 username hashtadani3 142967 mac 142967 bytes_out 0 142967 bytes_in 0 142967 station_ip 37.129.1.245 142967 port 458 142967 unique_id port 142967 remote_ip 10.8.0.154 142968 username hashtadani3 142968 mac 142968 bytes_out 0 142968 bytes_in 0 142968 station_ip 37.129.1.245 142968 port 458 142968 unique_id port 142968 remote_ip 10.8.0.154 142969 username hashtadani3 142969 mac 142969 bytes_out 0 142969 bytes_in 0 142969 station_ip 37.129.1.245 142969 port 235 142969 unique_id port 142969 remote_ip 10.8.1.94 142970 username hashtadani3 142970 mac 142970 bytes_out 0 142970 bytes_in 0 142970 station_ip 37.129.1.245 142970 port 458 142970 unique_id port 142970 remote_ip 10.8.0.154 142971 username hashtadani3 142971 mac 142971 bytes_out 0 142971 bytes_in 0 142971 station_ip 37.129.1.245 142971 port 458 142971 unique_id port 142971 remote_ip 10.8.0.154 142972 username hashtadani3 142972 mac 142972 bytes_out 0 142972 bytes_in 0 142972 station_ip 37.129.1.245 142972 port 458 142972 unique_id port 142972 remote_ip 10.8.0.154 142973 username sobhan 142973 unique_id port 142973 terminate_cause Lost-Carrier 142973 bytes_out 1792846 142973 bytes_in 24068139 142973 station_ip 5.119.239.236 142973 port 15730809 142973 nas_port_type Virtual 142973 remote_ip 5.5.5.59 142974 username hashtadani3 142974 mac 142974 bytes_out 0 142974 bytes_in 0 142974 station_ip 37.129.1.245 142974 port 458 142974 unique_id port 142974 remote_ip 10.8.0.154 142975 username hashtadani3 142975 mac 142975 bytes_out 0 142975 bytes_in 0 142975 station_ip 37.129.1.245 142975 port 235 142975 unique_id port 142975 remote_ip 10.8.1.94 142977 username hashtadani3 142977 mac 142977 bytes_out 0 142977 bytes_in 0 142977 station_ip 37.129.1.245 142977 port 458 142977 unique_id port 142977 remote_ip 10.8.0.154 142980 username hashtadani3 142980 mac 142980 bytes_out 0 142980 bytes_in 0 142980 station_ip 37.129.1.245 142980 port 460 142980 unique_id port 142980 remote_ip 10.8.0.154 142983 username hashtadani3 142983 mac 142983 bytes_out 0 142983 bytes_in 0 142983 station_ip 37.129.1.245 142983 port 458 142983 unique_id port 142983 remote_ip 10.8.0.154 142984 username aminvpn 142984 mac 142984 bytes_out 0 142984 bytes_in 0 142984 station_ip 5.119.168.38 142984 port 459 142984 unique_id port 142984 remote_ip 10.8.0.14 142985 username hashtadani3 142985 mac 142985 bytes_out 0 142985 bytes_in 0 142985 station_ip 37.129.1.245 142985 port 458 142985 unique_id port 142985 remote_ip 10.8.0.154 142987 username hashtadani3 142987 mac 142987 bytes_out 0 142987 bytes_in 0 142987 station_ip 37.129.1.245 142987 port 458 142987 unique_id port 142987 remote_ip 10.8.0.154 142989 username saeed9658 142989 kill_reason Maximum check online fails reached 142989 mac 142989 bytes_out 0 142989 bytes_in 0 142989 station_ip 5.120.162.92 142989 port 235 142989 unique_id port 142990 username hashtadani3 142990 mac 142990 bytes_out 0 142990 bytes_in 0 142990 station_ip 37.129.1.245 142990 port 459 142990 unique_id port 142990 remote_ip 10.8.0.154 142993 username hashtadani3 142993 mac 142993 bytes_out 0 142993 bytes_in 0 142993 station_ip 37.129.1.245 142993 port 237 142993 unique_id port 142993 remote_ip 10.8.1.94 142997 username hashtadani3 142997 kill_reason Maximum check online fails reached 142997 mac 142997 bytes_out 0 142997 bytes_in 0 142997 station_ip 37.129.1.245 142997 port 458 142997 unique_id port 142999 username hashtadani3 142999 mac 142999 bytes_out 0 142999 bytes_in 0 142999 station_ip 37.129.1.245 142999 port 459 142999 unique_id port 142999 remote_ip 10.8.0.154 143003 username hashtadani3 143003 mac 143003 bytes_out 357640 143003 bytes_in 4821680 143003 station_ip 37.129.1.245 143003 port 459 143003 unique_id port 143003 remote_ip 10.8.0.154 143005 username hashtadani3 143005 mac 143005 bytes_out 0 143005 bytes_in 0 143005 station_ip 37.129.1.245 143005 port 459 143005 unique_id port 143005 remote_ip 10.8.0.154 143009 username aminvpn 143009 mac 143009 bytes_out 0 143009 bytes_in 0 143009 station_ip 5.119.168.38 143009 port 460 143009 unique_id port 143009 remote_ip 10.8.0.14 143011 username hashtadani3 143011 mac 143011 bytes_out 0 143011 bytes_in 0 143011 station_ip 37.129.1.245 143011 port 459 143011 unique_id port 143011 remote_ip 10.8.0.154 143016 username saeed9658 143016 mac 143016 bytes_out 0 143016 bytes_in 0 143016 station_ip 5.120.162.92 143016 port 237 143016 unique_id port 143016 remote_ip 10.8.1.210 143019 username saeed9658 143019 mac 143019 bytes_out 0 143019 bytes_in 0 143019 station_ip 5.120.162.92 143019 port 460 143019 unique_id port 143019 remote_ip 10.8.0.62 143022 username hashtadani3 143022 mac 143022 bytes_out 0 143022 bytes_in 0 143022 station_ip 37.129.1.245 143022 port 459 143022 unique_id port 143022 remote_ip 10.8.0.154 143027 username hashtadani3 143027 mac 142976 username hashtadani3 142976 mac 142976 bytes_out 0 142976 bytes_in 0 142976 station_ip 37.129.1.245 142976 port 458 142976 unique_id port 142976 remote_ip 10.8.0.154 142978 username farhad2 142978 kill_reason Another user logged on this global unique id 142978 mac 142978 bytes_out 0 142978 bytes_in 0 142978 station_ip 5.119.233.82 142978 port 439 142978 unique_id port 142981 username hashtadani3 142981 mac 142981 bytes_out 0 142981 bytes_in 0 142981 station_ip 37.129.1.245 142981 port 458 142981 unique_id port 142981 remote_ip 10.8.0.154 142986 username hashtadani3 142986 mac 142986 bytes_out 0 142986 bytes_in 0 142986 station_ip 37.129.1.245 142986 port 237 142986 unique_id port 142986 remote_ip 10.8.1.94 142988 username hashtadani3 142988 mac 142988 bytes_out 0 142988 bytes_in 0 142988 station_ip 37.129.1.245 142988 port 458 142988 unique_id port 142988 remote_ip 10.8.0.154 142991 username saeed9658 142991 mac 142991 bytes_out 0 142991 bytes_in 0 142991 station_ip 5.120.162.92 142991 port 458 142991 unique_id port 142991 remote_ip 10.8.0.62 142992 username hashtadani3 142992 mac 142992 bytes_out 0 142992 bytes_in 0 142992 station_ip 37.129.1.245 142992 port 459 142992 unique_id port 142992 remote_ip 10.8.0.154 142994 username hashtadani3 142994 mac 142994 bytes_out 0 142994 bytes_in 0 142994 station_ip 37.129.1.245 142994 port 459 142994 unique_id port 142994 remote_ip 10.8.0.154 142995 username hashtadani3 142995 mac 142995 bytes_out 0 142995 bytes_in 0 142995 station_ip 37.129.1.245 142995 port 459 142995 unique_id port 142995 remote_ip 10.8.0.154 143001 username saeed9658 143001 mac 143001 bytes_out 0 143001 bytes_in 0 143001 station_ip 5.120.162.92 143001 port 460 143001 unique_id port 143001 remote_ip 10.8.0.62 143004 username hashtadani3 143004 mac 143004 bytes_out 0 143004 bytes_in 0 143004 station_ip 37.129.1.245 143004 port 459 143004 unique_id port 143004 remote_ip 10.8.0.154 143008 username hashtadani3 143008 mac 143008 bytes_out 0 143008 bytes_in 0 143008 station_ip 37.129.1.245 143008 port 460 143008 unique_id port 143008 remote_ip 10.8.0.154 143012 username hashtadani3 143012 mac 143012 bytes_out 0 143012 bytes_in 0 143012 station_ip 37.129.1.245 143012 port 459 143012 unique_id port 143012 remote_ip 10.8.0.154 143013 username hashtadani3 143013 mac 143013 bytes_out 0 143013 bytes_in 0 143013 station_ip 37.129.1.245 143013 port 459 143013 unique_id port 143013 remote_ip 10.8.0.154 143014 username hashtadani3 143014 mac 143014 bytes_out 0 143014 bytes_in 0 143014 station_ip 37.129.1.245 143014 port 459 143014 unique_id port 143014 remote_ip 10.8.0.154 143015 username hashtadani3 143015 mac 143015 bytes_out 0 143015 bytes_in 0 143015 station_ip 37.129.1.245 143015 port 459 143015 unique_id port 143015 remote_ip 10.8.0.154 143017 username hashtadani3 143017 mac 143017 bytes_out 0 143017 bytes_in 0 143017 station_ip 37.129.1.245 143017 port 459 143017 unique_id port 143017 remote_ip 10.8.0.154 143023 username hashtadani3 143023 mac 143023 bytes_out 0 143023 bytes_in 0 143023 station_ip 37.129.1.245 143023 port 459 143023 unique_id port 143023 remote_ip 10.8.0.154 143024 username hashtadani3 143024 mac 143024 bytes_out 0 143024 bytes_in 0 143024 station_ip 37.129.1.245 143024 port 459 143024 unique_id port 143024 remote_ip 10.8.0.154 143026 username saeed9658 143026 mac 143026 bytes_out 0 142979 username saeed9658 142979 mac 142979 bytes_out 0 142979 bytes_in 0 142979 station_ip 5.120.162.92 142979 port 459 142979 unique_id port 142979 remote_ip 10.8.0.62 142982 username hashtadani3 142982 mac 142982 bytes_out 0 142982 bytes_in 0 142982 station_ip 37.129.1.245 142982 port 458 142982 unique_id port 142982 remote_ip 10.8.0.154 142996 username hashtadani3 142996 mac 142996 bytes_out 0 142996 bytes_in 0 142996 station_ip 37.129.1.245 142996 port 459 142996 unique_id port 142996 remote_ip 10.8.0.154 142998 username hashtadani3 142998 mac 142998 bytes_out 0 142998 bytes_in 0 142998 station_ip 37.129.1.245 142998 port 459 142998 unique_id port 142998 remote_ip 10.8.0.154 143000 username hashtadani3 143000 mac 143000 bytes_out 0 143000 bytes_in 0 143000 station_ip 37.129.1.245 143000 port 459 143000 unique_id port 143000 remote_ip 10.8.0.154 143002 username hashtadani3 143002 mac 143002 bytes_out 0 143002 bytes_in 0 143002 station_ip 37.129.1.245 143002 port 459 143002 unique_id port 143002 remote_ip 10.8.0.154 143006 username saeed9658 143006 mac 143006 bytes_out 0 143006 bytes_in 0 143006 station_ip 5.120.162.92 143006 port 237 143006 unique_id port 143006 remote_ip 10.8.1.210 143007 username hashtadani3 143007 mac 143007 bytes_out 0 143007 bytes_in 0 143007 station_ip 37.129.1.245 143007 port 459 143007 unique_id port 143007 remote_ip 10.8.0.154 143010 username hashtadani3 143010 mac 143010 bytes_out 0 143010 bytes_in 0 143010 station_ip 37.129.1.245 143010 port 459 143010 unique_id port 143010 remote_ip 10.8.0.154 143018 username hashtadani3 143018 mac 143018 bytes_out 0 143018 bytes_in 0 143018 station_ip 37.129.1.245 143018 port 459 143018 unique_id port 143018 remote_ip 10.8.0.154 143020 username hashtadani3 143020 mac 143020 bytes_out 0 143020 bytes_in 0 143020 station_ip 37.129.1.245 143020 port 459 143020 unique_id port 143020 remote_ip 10.8.0.154 143021 username hashtadani3 143021 mac 143021 bytes_out 0 143021 bytes_in 0 143021 station_ip 37.129.1.245 143021 port 459 143021 unique_id port 143021 remote_ip 10.8.0.154 143025 username hashtadani3 143025 mac 143025 bytes_out 0 143025 bytes_in 0 143025 station_ip 37.129.1.245 143025 port 459 143025 unique_id port 143025 remote_ip 10.8.0.154 143029 username hashtadani3 143029 mac 143029 bytes_out 0 143029 bytes_in 0 143029 station_ip 37.129.1.245 143029 port 459 143029 unique_id port 143029 remote_ip 10.8.0.154 143030 username saeed9658 143030 mac 143030 bytes_out 0 143030 bytes_in 0 143030 station_ip 5.120.162.92 143030 port 460 143030 unique_id port 143030 remote_ip 10.8.0.62 143032 username hashtadani3 143032 mac 143032 bytes_out 0 143032 bytes_in 0 143032 station_ip 37.129.1.245 143032 port 459 143032 unique_id port 143032 remote_ip 10.8.0.154 143042 username hashtadani3 143042 mac 143042 bytes_out 0 143042 bytes_in 0 143042 station_ip 37.129.1.245 143042 port 459 143042 unique_id port 143042 remote_ip 10.8.0.154 143043 username hashtadani3 143043 mac 143043 bytes_out 0 143043 bytes_in 0 143043 station_ip 37.129.1.245 143043 port 459 143043 unique_id port 143043 remote_ip 10.8.0.154 143047 username farhad2 143047 kill_reason Another user logged on this global unique id 143047 mac 143047 bytes_out 0 143047 bytes_in 0 143047 station_ip 5.119.233.82 143047 port 439 143047 unique_id port 143048 username hashtadani3 143048 mac 143048 bytes_out 0 143026 bytes_in 0 143026 station_ip 5.120.162.92 143026 port 237 143026 unique_id port 143026 remote_ip 10.8.1.210 143028 username hashtadani3 143028 mac 143028 bytes_out 0 143028 bytes_in 0 143028 station_ip 37.129.1.245 143028 port 459 143028 unique_id port 143028 remote_ip 10.8.0.154 143031 username hashtadani3 143031 mac 143031 bytes_out 0 143031 bytes_in 0 143031 station_ip 37.129.1.245 143031 port 459 143031 unique_id port 143031 remote_ip 10.8.0.154 143035 username hashtadani3 143035 mac 143035 bytes_out 0 143035 bytes_in 0 143035 station_ip 37.129.1.245 143035 port 459 143035 unique_id port 143035 remote_ip 10.8.0.154 143038 username hashtadani3 143038 mac 143038 bytes_out 0 143038 bytes_in 0 143038 station_ip 37.129.1.245 143038 port 459 143038 unique_id port 143038 remote_ip 10.8.0.154 143040 username aminvpn 143040 mac 143040 bytes_out 0 143040 bytes_in 0 143040 station_ip 5.119.168.38 143040 port 459 143040 unique_id port 143040 remote_ip 10.8.0.14 143045 username hashtadani3 143045 mac 143045 bytes_out 0 143045 bytes_in 0 143045 station_ip 37.129.1.245 143045 port 459 143045 unique_id port 143045 remote_ip 10.8.0.154 143052 username hashtadani3 143052 mac 143052 bytes_out 0 143052 bytes_in 0 143052 station_ip 37.129.1.245 143052 port 459 143052 unique_id port 143052 remote_ip 10.8.0.154 143054 username saeed9658 143054 mac 143054 bytes_out 0 143054 bytes_in 0 143054 station_ip 5.120.162.92 143054 port 237 143054 unique_id port 143054 remote_ip 10.8.1.210 143056 username hashtadani3 143056 mac 143056 bytes_out 0 143056 bytes_in 0 143056 station_ip 37.129.1.245 143056 port 459 143056 unique_id port 143056 remote_ip 10.8.0.154 143060 username hashtadani3 143060 mac 143060 bytes_out 0 143060 bytes_in 0 143060 station_ip 37.129.1.245 143060 port 237 143060 unique_id port 143060 remote_ip 10.8.1.94 143066 username hashtadani3 143066 mac 143066 bytes_out 0 143066 bytes_in 0 143066 station_ip 37.129.1.245 143066 port 459 143066 unique_id port 143066 remote_ip 10.8.0.154 143067 username hashtadani3 143067 mac 143067 bytes_out 0 143067 bytes_in 0 143067 station_ip 37.129.1.245 143067 port 459 143067 unique_id port 143067 remote_ip 10.8.0.154 143070 username hashtadani3 143070 mac 143070 bytes_out 0 143070 bytes_in 0 143070 station_ip 37.129.1.245 143070 port 459 143070 unique_id port 143070 remote_ip 10.8.0.154 143071 username hashtadani3 143071 mac 143071 bytes_out 0 143071 bytes_in 0 143071 station_ip 37.129.1.245 143071 port 459 143071 unique_id port 143071 remote_ip 10.8.0.154 143072 username farhad2 143072 mac 143072 bytes_out 0 143072 bytes_in 0 143072 station_ip 5.119.233.82 143072 port 439 143072 unique_id port 143074 username aminvpn 143074 mac 143074 bytes_out 0 143074 bytes_in 0 143074 station_ip 5.119.168.38 143074 port 460 143074 unique_id port 143074 remote_ip 10.8.0.14 143077 username hashtadani3 143077 mac 143077 bytes_out 0 143077 bytes_in 0 143077 station_ip 37.129.1.245 143077 port 439 143077 unique_id port 143077 remote_ip 10.8.0.154 143079 username hashtadani3 143079 mac 143079 bytes_out 0 143079 bytes_in 0 143079 station_ip 37.129.1.245 143079 port 439 143079 unique_id port 143079 remote_ip 10.8.0.154 143082 username saeed9658 143082 mac 143082 bytes_out 0 143082 bytes_in 0 143082 station_ip 5.120.162.92 143082 port 237 143082 unique_id port 143082 remote_ip 10.8.1.210 143027 bytes_out 0 143027 bytes_in 0 143027 station_ip 37.129.1.245 143027 port 459 143027 unique_id port 143027 remote_ip 10.8.0.154 143033 username hashtadani3 143033 mac 143033 bytes_out 0 143033 bytes_in 0 143033 station_ip 37.129.1.245 143033 port 459 143033 unique_id port 143033 remote_ip 10.8.0.154 143034 username hashtadani3 143034 mac 143034 bytes_out 0 143034 bytes_in 0 143034 station_ip 37.129.1.245 143034 port 459 143034 unique_id port 143034 remote_ip 10.8.0.154 143036 username hashtadani3 143036 mac 143036 bytes_out 0 143036 bytes_in 0 143036 station_ip 37.129.1.245 143036 port 459 143036 unique_id port 143036 remote_ip 10.8.0.154 143037 username hashtadani3 143037 mac 143037 bytes_out 0 143037 bytes_in 0 143037 station_ip 37.129.1.245 143037 port 459 143037 unique_id port 143037 remote_ip 10.8.0.154 143039 username aminvpn 143039 mac 143039 bytes_out 0 143039 bytes_in 0 143039 station_ip 5.119.168.38 143039 port 459 143039 unique_id port 143039 remote_ip 10.8.0.14 143041 username hashtadani3 143041 mac 143041 bytes_out 0 143041 bytes_in 0 143041 station_ip 37.129.1.245 143041 port 237 143041 unique_id port 143041 remote_ip 10.8.1.94 143044 username hashtadani3 143044 mac 143044 bytes_out 0 143044 bytes_in 0 143044 station_ip 37.129.1.245 143044 port 459 143044 unique_id port 143044 remote_ip 10.8.0.154 143046 username hashtadani3 143046 mac 143046 bytes_out 0 143046 bytes_in 0 143046 station_ip 37.129.1.245 143046 port 459 143046 unique_id port 143046 remote_ip 10.8.0.154 143050 username hashtadani3 143050 mac 143050 bytes_out 0 143050 bytes_in 0 143050 station_ip 37.129.1.245 143050 port 459 143050 unique_id port 143050 remote_ip 10.8.0.154 143051 username hashtadani3 143051 mac 143051 bytes_out 0 143051 bytes_in 0 143051 station_ip 37.129.1.245 143051 port 459 143051 unique_id port 143051 remote_ip 10.8.0.154 143053 username hashtadani3 143053 mac 143053 bytes_out 0 143053 bytes_in 0 143053 station_ip 37.129.1.245 143053 port 459 143053 unique_id port 143053 remote_ip 10.8.0.154 143055 username hashtadani3 143055 mac 143055 bytes_out 0 143055 bytes_in 0 143055 station_ip 37.129.1.245 143055 port 459 143055 unique_id port 143055 remote_ip 10.8.0.154 143058 username hashtadani3 143058 mac 143058 bytes_out 0 143058 bytes_in 0 143058 station_ip 37.129.1.245 143058 port 459 143058 unique_id port 143058 remote_ip 10.8.0.154 143059 username hashtadani3 143059 mac 143059 bytes_out 0 143059 bytes_in 0 143059 station_ip 37.129.1.245 143059 port 459 143059 unique_id port 143059 remote_ip 10.8.0.154 143061 username hashtadani3 143061 mac 143061 bytes_out 0 143061 bytes_in 0 143061 station_ip 37.129.1.245 143061 port 459 143061 unique_id port 143061 remote_ip 10.8.0.154 143062 username sedighe 143062 mac 143062 bytes_out 717491 143062 bytes_in 8502439 143062 station_ip 37.129.193.66 143062 port 460 143062 unique_id port 143062 remote_ip 10.8.0.146 143065 username hashtadani3 143065 mac 143065 bytes_out 0 143065 bytes_in 0 143065 station_ip 37.129.1.245 143065 port 459 143065 unique_id port 143065 remote_ip 10.8.0.154 143069 username hashtadani3 143069 mac 143069 bytes_out 0 143069 bytes_in 0 143069 station_ip 37.129.1.245 143069 port 459 143069 unique_id port 143069 remote_ip 10.8.0.154 143073 username hashtadani3 143073 mac 143073 bytes_out 0 143073 bytes_in 0 143073 station_ip 37.129.1.245 143048 bytes_in 0 143048 station_ip 37.129.1.245 143048 port 459 143048 unique_id port 143048 remote_ip 10.8.0.154 143049 username hashtadani3 143049 mac 143049 bytes_out 0 143049 bytes_in 0 143049 station_ip 37.129.1.245 143049 port 459 143049 unique_id port 143049 remote_ip 10.8.0.154 143057 username hashtadani3 143057 mac 143057 bytes_out 0 143057 bytes_in 0 143057 station_ip 37.129.1.245 143057 port 459 143057 unique_id port 143057 remote_ip 10.8.0.154 143063 username hashtadani3 143063 mac 143063 bytes_out 0 143063 bytes_in 0 143063 station_ip 37.129.1.245 143063 port 459 143063 unique_id port 143063 remote_ip 10.8.0.154 143064 username hashtadani3 143064 mac 143064 bytes_out 0 143064 bytes_in 0 143064 station_ip 37.129.1.245 143064 port 459 143064 unique_id port 143064 remote_ip 10.8.0.154 143068 username hashtadani3 143068 mac 143068 bytes_out 0 143068 bytes_in 0 143068 station_ip 37.129.1.245 143068 port 459 143068 unique_id port 143068 remote_ip 10.8.0.154 143078 username hashtadani3 143078 mac 143078 bytes_out 0 143078 bytes_in 0 143078 station_ip 37.129.1.245 143078 port 439 143078 unique_id port 143078 remote_ip 10.8.0.154 143080 username hashtadani3 143080 mac 143080 bytes_out 0 143080 bytes_in 0 143080 station_ip 37.129.1.245 143080 port 439 143080 unique_id port 143080 remote_ip 10.8.0.154 143081 username hashtadani3 143081 mac 143081 bytes_out 8405 143081 bytes_in 27229 143081 station_ip 37.129.1.245 143081 port 439 143081 unique_id port 143081 remote_ip 10.8.0.154 143083 username hashtadani3 143083 mac 143083 bytes_out 0 143083 bytes_in 0 143083 station_ip 37.129.1.245 143083 port 439 143083 unique_id port 143083 remote_ip 10.8.0.154 143087 username hashtadani3 143087 mac 143087 bytes_out 0 143087 bytes_in 0 143087 station_ip 37.129.1.245 143087 port 439 143087 unique_id port 143087 remote_ip 10.8.0.154 143092 username hashtadani3 143092 mac 143092 bytes_out 0 143092 bytes_in 0 143092 station_ip 37.129.1.245 143092 port 439 143092 unique_id port 143092 remote_ip 10.8.0.154 143093 username hashtadani3 143093 mac 143093 bytes_out 0 143093 bytes_in 0 143093 station_ip 37.129.1.245 143093 port 439 143093 unique_id port 143093 remote_ip 10.8.0.154 143095 username saeed9658 143095 mac 143095 bytes_out 0 143095 bytes_in 0 143095 station_ip 5.120.162.92 143095 port 459 143095 unique_id port 143095 remote_ip 10.8.0.62 143099 username hashtadani3 143099 mac 143099 bytes_out 0 143099 bytes_in 0 143099 station_ip 37.129.1.245 143099 port 439 143099 unique_id port 143099 remote_ip 10.8.0.154 143100 username aminvpn 143100 mac 143100 bytes_out 0 143100 bytes_in 0 143100 station_ip 5.119.168.38 143100 port 460 143100 unique_id port 143100 remote_ip 10.8.0.14 143105 username hashtadani3 143105 mac 143105 bytes_out 0 143105 bytes_in 0 143105 station_ip 37.129.1.245 143105 port 439 143105 unique_id port 143105 remote_ip 10.8.0.154 143106 username hashtadani3 143106 mac 143106 bytes_out 0 143106 bytes_in 0 143106 station_ip 37.129.1.245 143106 port 439 143106 unique_id port 143106 remote_ip 10.8.0.154 143110 username hashtadani3 143110 mac 143110 bytes_out 0 143110 bytes_in 0 143110 station_ip 37.129.1.245 143110 port 439 143110 unique_id port 143110 remote_ip 10.8.0.154 143111 username hashtadani3 143111 mac 143111 bytes_out 0 143111 bytes_in 0 143111 station_ip 37.129.1.245 143111 port 460 143073 port 459 143073 unique_id port 143073 remote_ip 10.8.0.154 143075 username hashtadani3 143075 mac 143075 bytes_out 0 143075 bytes_in 0 143075 station_ip 37.129.1.245 143075 port 439 143075 unique_id port 143075 remote_ip 10.8.0.154 143076 username hashtadani3 143076 mac 143076 bytes_out 0 143076 bytes_in 0 143076 station_ip 37.129.1.245 143076 port 439 143076 unique_id port 143076 remote_ip 10.8.0.154 143084 username hashtadani3 143084 mac 143084 bytes_out 0 143084 bytes_in 0 143084 station_ip 37.129.1.245 143084 port 439 143084 unique_id port 143084 remote_ip 10.8.0.154 143085 username hashtadani3 143085 mac 143085 bytes_out 0 143085 bytes_in 0 143085 station_ip 37.129.1.245 143085 port 439 143085 unique_id port 143085 remote_ip 10.8.0.154 143088 username hashtadani3 143088 mac 143088 bytes_out 0 143088 bytes_in 0 143088 station_ip 37.129.1.245 143088 port 439 143088 unique_id port 143088 remote_ip 10.8.0.154 143090 username hashtadani3 143090 mac 143090 bytes_out 0 143090 bytes_in 0 143090 station_ip 37.129.1.245 143090 port 439 143090 unique_id port 143090 remote_ip 10.8.0.154 143094 username hashtadani3 143094 mac 143094 bytes_out 0 143094 bytes_in 0 143094 station_ip 37.129.1.245 143094 port 439 143094 unique_id port 143094 remote_ip 10.8.0.154 143097 username hashtadani3 143097 mac 143097 bytes_out 0 143097 bytes_in 0 143097 station_ip 37.129.1.245 143097 port 439 143097 unique_id port 143097 remote_ip 10.8.0.154 143101 username hashtadani3 143101 mac 143101 bytes_out 0 143101 bytes_in 0 143101 station_ip 37.129.1.245 143101 port 439 143101 unique_id port 143101 remote_ip 10.8.0.154 143103 username hashtadani3 143103 mac 143103 bytes_out 0 143103 bytes_in 0 143103 station_ip 37.129.1.245 143103 port 439 143103 unique_id port 143103 remote_ip 10.8.0.154 143107 username hashtadani3 143107 mac 143107 bytes_out 0 143107 bytes_in 0 143107 station_ip 37.129.1.245 143107 port 439 143107 unique_id port 143107 remote_ip 10.8.0.154 143112 username hashtadani3 143112 mac 143112 bytes_out 0 143112 bytes_in 0 143112 station_ip 37.129.1.245 143112 port 460 143112 unique_id port 143112 remote_ip 10.8.0.154 143115 username hashtadani3 143115 mac 143115 bytes_out 0 143115 bytes_in 0 143115 station_ip 37.129.1.245 143115 port 439 143115 unique_id port 143115 remote_ip 10.8.0.154 143116 username hashtadani3 143116 mac 143116 bytes_out 0 143116 bytes_in 0 143116 station_ip 37.129.1.245 143116 port 439 143116 unique_id port 143116 remote_ip 10.8.0.154 143122 username hashtadani3 143122 mac 143122 bytes_out 0 143122 bytes_in 0 143122 station_ip 37.129.1.245 143122 port 439 143122 unique_id port 143122 remote_ip 10.8.0.154 143129 username hashtadani3 143129 mac 143129 bytes_out 0 143129 bytes_in 0 143129 station_ip 37.129.1.245 143129 port 439 143129 unique_id port 143129 remote_ip 10.8.0.154 143131 username hashtadani3 143131 mac 143131 bytes_out 0 143131 bytes_in 0 143131 station_ip 37.129.1.245 143131 port 439 143131 unique_id port 143131 remote_ip 10.8.0.154 143132 username hashtadani3 143132 mac 143132 bytes_out 0 143132 bytes_in 0 143132 station_ip 37.129.1.245 143132 port 439 143132 unique_id port 143132 remote_ip 10.8.0.154 143134 username aminvpn 143134 mac 143134 bytes_out 0 143134 bytes_in 0 143134 station_ip 5.119.168.38 143134 port 442 143134 unique_id port 143134 remote_ip 10.8.0.14 143086 username hashtadani3 143086 mac 143086 bytes_out 0 143086 bytes_in 0 143086 station_ip 37.129.1.245 143086 port 439 143086 unique_id port 143086 remote_ip 10.8.0.154 143089 username hashtadani3 143089 mac 143089 bytes_out 0 143089 bytes_in 0 143089 station_ip 37.129.1.245 143089 port 439 143089 unique_id port 143089 remote_ip 10.8.0.154 143091 username hashtadani3 143091 mac 143091 bytes_out 0 143091 bytes_in 0 143091 station_ip 37.129.1.245 143091 port 439 143091 unique_id port 143091 remote_ip 10.8.0.154 143096 username hashtadani3 143096 mac 143096 bytes_out 0 143096 bytes_in 0 143096 station_ip 37.129.1.245 143096 port 439 143096 unique_id port 143096 remote_ip 10.8.0.154 143098 username hashtadani3 143098 mac 143098 bytes_out 0 143098 bytes_in 0 143098 station_ip 37.129.1.245 143098 port 439 143098 unique_id port 143098 remote_ip 10.8.0.154 143102 username hashtadani3 143102 mac 143102 bytes_out 0 143102 bytes_in 0 143102 station_ip 37.129.1.245 143102 port 439 143102 unique_id port 143102 remote_ip 10.8.0.154 143104 username hashtadani3 143104 mac 143104 bytes_out 0 143104 bytes_in 0 143104 station_ip 37.129.1.245 143104 port 439 143104 unique_id port 143104 remote_ip 10.8.0.154 143108 username hashtadani3 143108 mac 143108 bytes_out 0 143108 bytes_in 0 143108 station_ip 37.129.1.245 143108 port 439 143108 unique_id port 143108 remote_ip 10.8.0.154 143109 username hashtadani3 143109 mac 143109 bytes_out 0 143109 bytes_in 0 143109 station_ip 37.129.1.245 143109 port 439 143109 unique_id port 143109 remote_ip 10.8.0.154 143113 username saeed9658 143113 mac 143113 bytes_out 0 143113 bytes_in 0 143113 station_ip 5.120.162.92 143113 port 439 143113 unique_id port 143113 remote_ip 10.8.0.62 143117 username hashtadani3 143117 mac 143117 bytes_out 0 143117 bytes_in 0 143117 station_ip 37.129.1.245 143117 port 439 143117 unique_id port 143117 remote_ip 10.8.0.154 143119 username hashtadani3 143119 mac 143119 bytes_out 0 143119 bytes_in 0 143119 station_ip 37.129.1.245 143119 port 439 143119 unique_id port 143119 remote_ip 10.8.0.154 143121 username saeed9658 143121 mac 143121 bytes_out 0 143121 bytes_in 0 143121 station_ip 5.120.162.92 143121 port 237 143121 unique_id port 143121 remote_ip 10.8.1.210 143123 username hashtadani3 143123 mac 143123 bytes_out 0 143123 bytes_in 0 143123 station_ip 37.129.1.245 143123 port 439 143123 unique_id port 143123 remote_ip 10.8.0.154 143126 username hashtadani3 143126 mac 143126 bytes_out 0 143126 bytes_in 0 143126 station_ip 37.129.1.245 143126 port 439 143126 unique_id port 143126 remote_ip 10.8.0.154 143127 username hashtadani3 143127 mac 143127 bytes_out 0 143127 bytes_in 0 143127 station_ip 37.129.1.245 143127 port 439 143127 unique_id port 143127 remote_ip 10.8.0.154 143133 username hashtadani3 143133 mac 143133 bytes_out 0 143133 bytes_in 0 143133 station_ip 37.129.1.245 143133 port 439 143133 unique_id port 143133 remote_ip 10.8.0.154 143140 username hashtadani3 143140 mac 143140 bytes_out 0 143140 bytes_in 0 143140 station_ip 37.129.1.245 143140 port 439 143140 unique_id port 143140 remote_ip 10.8.0.154 143142 username hashtadani3 143142 mac 143142 bytes_out 0 143142 bytes_in 0 143142 station_ip 37.129.1.245 143142 port 439 143142 unique_id port 143142 remote_ip 10.8.0.154 143146 username aminvpn 143146 mac 143146 bytes_out 0 143146 bytes_in 0 143111 unique_id port 143111 remote_ip 10.8.0.154 143114 username hashtadani3 143114 mac 143114 bytes_out 0 143114 bytes_in 0 143114 station_ip 37.129.1.245 143114 port 460 143114 unique_id port 143114 remote_ip 10.8.0.154 143118 username farhad2 143118 mac 143118 bytes_out 766030 143118 bytes_in 3539018 143118 station_ip 5.120.18.138 143118 port 459 143118 unique_id port 143118 remote_ip 10.8.0.190 143120 username hashtadani3 143120 mac 143120 bytes_out 0 143120 bytes_in 0 143120 station_ip 37.129.1.245 143120 port 439 143120 unique_id port 143120 remote_ip 10.8.0.154 143124 username hashtadani3 143124 mac 143124 bytes_out 0 143124 bytes_in 0 143124 station_ip 37.129.1.245 143124 port 439 143124 unique_id port 143124 remote_ip 10.8.0.154 143125 username saeed9658 143125 mac 143125 bytes_out 0 143125 bytes_in 0 143125 station_ip 5.120.94.129 143125 port 460 143125 unique_id port 143125 remote_ip 10.8.0.62 143128 username hashtadani3 143128 mac 143128 bytes_out 0 143128 bytes_in 0 143128 station_ip 37.129.1.245 143128 port 439 143128 unique_id port 143128 remote_ip 10.8.0.154 143130 username rajaei 143130 mac 143130 bytes_out 2578783 143130 bytes_in 18530859 143130 station_ip 89.34.32.193 143130 port 442 143130 unique_id port 143130 remote_ip 10.8.0.34 143135 username hashtadani3 143135 mac 143135 bytes_out 0 143135 bytes_in 0 143135 station_ip 37.129.1.245 143135 port 439 143135 unique_id port 143135 remote_ip 10.8.0.154 143137 username hashtadani3 143137 mac 143137 bytes_out 0 143137 bytes_in 0 143137 station_ip 37.129.1.245 143137 port 439 143137 unique_id port 143137 remote_ip 10.8.0.154 143143 username hashtadani3 143143 mac 143143 bytes_out 0 143143 bytes_in 0 143143 station_ip 37.129.1.245 143143 port 439 143143 unique_id port 143143 remote_ip 10.8.0.154 143145 username hashtadani3 143145 mac 143145 bytes_out 0 143145 bytes_in 0 143145 station_ip 37.129.1.245 143145 port 439 143145 unique_id port 143145 remote_ip 10.8.0.154 143147 username hashtadani3 143147 mac 143147 bytes_out 0 143147 bytes_in 0 143147 station_ip 37.129.1.245 143147 port 439 143147 unique_id port 143147 remote_ip 10.8.0.154 143148 username hashtadani3 143148 mac 143148 bytes_out 0 143148 bytes_in 0 143148 station_ip 37.129.1.245 143148 port 439 143148 unique_id port 143148 remote_ip 10.8.0.154 143150 username saeed9658 143150 mac 143150 bytes_out 974897 143150 bytes_in 286930 143150 station_ip 5.120.94.129 143150 port 237 143150 unique_id port 143150 remote_ip 10.8.1.210 143151 username hashtadani3 143151 mac 143151 bytes_out 0 143151 bytes_in 0 143151 station_ip 37.129.1.245 143151 port 238 143151 unique_id port 143151 remote_ip 10.8.1.94 143153 username hashtadani3 143153 mac 143153 bytes_out 0 143153 bytes_in 0 143153 station_ip 37.129.1.245 143153 port 439 143153 unique_id port 143153 remote_ip 10.8.0.154 143154 username hashtadani3 143154 mac 143154 bytes_out 0 143154 bytes_in 0 143154 station_ip 37.129.1.245 143154 port 439 143154 unique_id port 143154 remote_ip 10.8.0.154 143155 username hashtadani3 143155 mac 143155 bytes_out 0 143155 bytes_in 0 143155 station_ip 37.129.1.245 143155 port 237 143155 unique_id port 143155 remote_ip 10.8.1.94 143158 username hashtadani3 143158 mac 143158 bytes_out 0 143158 bytes_in 0 143158 station_ip 37.129.1.245 143158 port 439 143158 unique_id port 143158 remote_ip 10.8.0.154 143159 username hashtadani3 143136 username hashtadani3 143136 mac 143136 bytes_out 0 143136 bytes_in 0 143136 station_ip 37.129.1.245 143136 port 439 143136 unique_id port 143136 remote_ip 10.8.0.154 143138 username hashtadani3 143138 mac 143138 bytes_out 0 143138 bytes_in 0 143138 station_ip 37.129.1.245 143138 port 439 143138 unique_id port 143138 remote_ip 10.8.0.154 143139 username hashtadani3 143139 mac 143139 bytes_out 0 143139 bytes_in 0 143139 station_ip 37.129.1.245 143139 port 439 143139 unique_id port 143139 remote_ip 10.8.0.154 143141 username hashtadani3 143141 mac 143141 bytes_out 0 143141 bytes_in 0 143141 station_ip 37.129.1.245 143141 port 439 143141 unique_id port 143141 remote_ip 10.8.0.154 143144 username hashtadani3 143144 mac 143144 bytes_out 0 143144 bytes_in 0 143144 station_ip 37.129.1.245 143144 port 439 143144 unique_id port 143144 remote_ip 10.8.0.154 143156 username hashtadani3 143156 mac 143156 bytes_out 0 143156 bytes_in 0 143156 station_ip 37.129.1.245 143156 port 237 143156 unique_id port 143156 remote_ip 10.8.1.94 143160 username hashtadani3 143160 mac 143160 bytes_out 0 143160 bytes_in 0 143160 station_ip 37.129.1.245 143160 port 439 143160 unique_id port 143160 remote_ip 10.8.0.154 143161 username hashtadani3 143161 mac 143161 bytes_out 0 143161 bytes_in 0 143161 station_ip 37.129.1.245 143161 port 442 143161 unique_id port 143161 remote_ip 10.8.0.154 143163 username hashtadani3 143163 mac 143163 bytes_out 0 143163 bytes_in 0 143163 station_ip 37.129.1.245 143163 port 439 143163 unique_id port 143163 remote_ip 10.8.0.154 143167 username hashtadani3 143167 mac 143167 bytes_out 0 143167 bytes_in 0 143167 station_ip 37.129.1.245 143167 port 439 143167 unique_id port 143167 remote_ip 10.8.0.154 143168 username farhad2 143168 mac 143168 bytes_out 3663782 143168 bytes_in 39514031 143168 station_ip 5.120.18.138 143168 port 459 143168 unique_id port 143168 remote_ip 10.8.0.190 143172 username hashtadani3 143172 mac 143172 bytes_out 0 143172 bytes_in 0 143172 station_ip 37.129.1.245 143172 port 439 143172 unique_id port 143172 remote_ip 10.8.0.154 143178 username saeed9658 143178 mac 143178 bytes_out 0 143178 bytes_in 0 143178 station_ip 5.120.94.129 143178 port 237 143178 unique_id port 143178 remote_ip 10.8.1.210 143184 username hashtadani3 143184 mac 143184 bytes_out 0 143184 bytes_in 0 143184 station_ip 37.129.1.245 143184 port 439 143184 unique_id port 143184 remote_ip 10.8.0.154 143189 username hashtadani3 143189 mac 143189 bytes_out 0 143189 bytes_in 0 143189 station_ip 37.129.1.245 143189 port 439 143189 unique_id port 143189 remote_ip 10.8.0.154 143190 username saeed9658 143190 mac 143190 bytes_out 0 143190 bytes_in 0 143190 station_ip 5.120.94.129 143190 port 237 143190 unique_id port 143190 remote_ip 10.8.1.210 143197 username hashtadani3 143197 mac 143197 bytes_out 0 143197 bytes_in 0 143197 station_ip 37.129.1.245 143197 port 439 143197 unique_id port 143197 remote_ip 10.8.0.154 143199 username hashtadani3 143199 mac 143199 bytes_out 0 143199 bytes_in 0 143199 station_ip 37.129.1.245 143199 port 439 143199 unique_id port 143199 remote_ip 10.8.0.154 143200 username hashtadani3 143200 mac 143200 bytes_out 0 143200 bytes_in 0 143200 station_ip 37.129.1.245 143200 port 439 143200 unique_id port 143200 remote_ip 10.8.0.154 143210 username hashtadani3 143210 mac 143210 bytes_out 0 143146 station_ip 5.119.168.38 143146 port 442 143146 unique_id port 143146 remote_ip 10.8.0.14 143149 username hashtadani3 143149 mac 143149 bytes_out 0 143149 bytes_in 0 143149 station_ip 37.129.1.245 143149 port 439 143149 unique_id port 143149 remote_ip 10.8.0.154 143152 username saeed9658 143152 mac 143152 bytes_out 0 143152 bytes_in 0 143152 station_ip 5.120.94.129 143152 port 237 143152 unique_id port 143152 remote_ip 10.8.1.210 143157 username hashtadani3 143157 mac 143157 bytes_out 0 143157 bytes_in 0 143157 station_ip 37.129.1.245 143157 port 439 143157 unique_id port 143157 remote_ip 10.8.0.154 143164 username hashtadani3 143164 mac 143164 bytes_out 0 143164 bytes_in 0 143164 station_ip 37.129.1.245 143164 port 439 143164 unique_id port 143164 remote_ip 10.8.0.154 143166 username saeed9658 143166 mac 143166 bytes_out 0 143166 bytes_in 0 143166 station_ip 5.120.94.129 143166 port 237 143166 unique_id port 143166 remote_ip 10.8.1.210 143170 username hashtadani3 143170 mac 143170 bytes_out 0 143170 bytes_in 0 143170 station_ip 37.129.1.245 143170 port 439 143170 unique_id port 143170 remote_ip 10.8.0.154 143171 username saeed9658 143171 kill_reason Maximum check online fails reached 143171 mac 143171 bytes_out 0 143171 bytes_in 0 143171 station_ip 5.120.94.129 143171 port 442 143171 unique_id port 143173 username hashtadani3 143173 mac 143173 bytes_out 0 143173 bytes_in 0 143173 station_ip 37.129.1.245 143173 port 439 143173 unique_id port 143173 remote_ip 10.8.0.154 143175 username aminvpn 143175 mac 143175 bytes_out 0 143175 bytes_in 0 143175 station_ip 5.119.168.38 143175 port 460 143175 unique_id port 143175 remote_ip 10.8.0.14 143177 username sedighe 143177 mac 143177 bytes_out 0 143177 bytes_in 0 143177 station_ip 37.129.193.66 143177 port 461 143177 unique_id port 143177 remote_ip 10.8.0.146 143180 username saeed9658 143180 mac 143180 bytes_out 1636 143180 bytes_in 4930 143180 station_ip 5.120.94.129 143180 port 459 143180 unique_id port 143180 remote_ip 10.8.0.62 143182 username hashtadani3 143182 mac 143182 bytes_out 0 143182 bytes_in 0 143182 station_ip 37.129.1.245 143182 port 439 143182 unique_id port 143182 remote_ip 10.8.0.154 143185 username hashtadani3 143185 mac 143185 bytes_out 0 143185 bytes_in 0 143185 station_ip 37.129.1.245 143185 port 439 143185 unique_id port 143185 remote_ip 10.8.0.154 143186 username hashtadani3 143186 mac 143186 bytes_out 0 143186 bytes_in 0 143186 station_ip 37.129.1.245 143186 port 439 143186 unique_id port 143186 remote_ip 10.8.0.154 143194 username hashtadani3 143194 mac 143194 bytes_out 0 143194 bytes_in 0 143194 station_ip 37.129.1.245 143194 port 439 143194 unique_id port 143194 remote_ip 10.8.0.154 143195 username hashtadani3 143195 mac 143195 bytes_out 0 143195 bytes_in 0 143195 station_ip 37.129.1.245 143195 port 439 143195 unique_id port 143195 remote_ip 10.8.0.154 143201 username hashtadani3 143201 mac 143201 bytes_out 0 143201 bytes_in 0 143201 station_ip 37.129.1.245 143201 port 439 143201 unique_id port 143201 remote_ip 10.8.0.154 143202 username hashtadani3 143202 mac 143202 bytes_out 0 143202 bytes_in 0 143202 station_ip 37.129.1.245 143202 port 439 143202 unique_id port 143202 remote_ip 10.8.0.154 143207 username hashtadani3 143207 mac 143207 bytes_out 0 143207 bytes_in 0 143207 station_ip 37.129.1.245 143207 port 439 143207 unique_id port 143159 mac 143159 bytes_out 0 143159 bytes_in 0 143159 station_ip 37.129.1.245 143159 port 439 143159 unique_id port 143159 remote_ip 10.8.0.154 143162 username saeed9658 143162 mac 143162 bytes_out 0 143162 bytes_in 0 143162 station_ip 5.120.94.129 143162 port 439 143162 unique_id port 143162 remote_ip 10.8.0.62 143165 username hashtadani3 143165 mac 143165 bytes_out 0 143165 bytes_in 0 143165 station_ip 37.129.1.245 143165 port 439 143165 unique_id port 143165 remote_ip 10.8.0.154 143169 username saeed9658 143169 mac 143169 bytes_out 0 143169 bytes_in 0 143169 station_ip 5.120.94.129 143169 port 460 143169 unique_id port 143169 remote_ip 10.8.0.62 143174 username hashtadani3 143174 mac 143174 bytes_out 0 143174 bytes_in 0 143174 station_ip 37.129.1.245 143174 port 439 143174 unique_id port 143174 remote_ip 10.8.0.154 143176 username hashtadani3 143176 mac 143176 bytes_out 0 143176 bytes_in 0 143176 station_ip 37.129.1.245 143176 port 439 143176 unique_id port 143176 remote_ip 10.8.0.154 143179 username hashtadani3 143179 mac 143179 bytes_out 0 143179 bytes_in 0 143179 station_ip 37.129.1.245 143179 port 439 143179 unique_id port 143179 remote_ip 10.8.0.154 143181 username hashtadani3 143181 mac 143181 bytes_out 0 143181 bytes_in 0 143181 station_ip 37.129.1.245 143181 port 439 143181 unique_id port 143181 remote_ip 10.8.0.154 143183 username hashtadani3 143183 mac 143183 bytes_out 0 143183 bytes_in 0 143183 station_ip 37.129.1.245 143183 port 439 143183 unique_id port 143183 remote_ip 10.8.0.154 143187 username hashtadani3 143187 mac 143187 bytes_out 0 143187 bytes_in 0 143187 station_ip 37.129.1.245 143187 port 439 143187 unique_id port 143187 remote_ip 10.8.0.154 143188 username hashtadani3 143188 mac 143188 bytes_out 0 143188 bytes_in 0 143188 station_ip 37.129.1.245 143188 port 439 143188 unique_id port 143188 remote_ip 10.8.0.154 143191 username hashtadani3 143191 mac 143191 bytes_out 0 143191 bytes_in 0 143191 station_ip 37.129.1.245 143191 port 439 143191 unique_id port 143191 remote_ip 10.8.0.154 143192 username hashtadani3 143192 mac 143192 bytes_out 0 143192 bytes_in 0 143192 station_ip 37.129.1.245 143192 port 439 143192 unique_id port 143192 remote_ip 10.8.0.154 143193 username saeed9658 143193 mac 143193 bytes_out 0 143193 bytes_in 0 143193 station_ip 5.120.94.129 143193 port 459 143193 unique_id port 143193 remote_ip 10.8.0.62 143196 username hashtadani3 143196 mac 143196 bytes_out 0 143196 bytes_in 0 143196 station_ip 37.129.1.245 143196 port 439 143196 unique_id port 143196 remote_ip 10.8.0.154 143198 username hashtadani3 143198 mac 143198 bytes_out 0 143198 bytes_in 0 143198 station_ip 37.129.1.245 143198 port 439 143198 unique_id port 143198 remote_ip 10.8.0.154 143203 username hashtadani3 143203 mac 143203 bytes_out 0 143203 bytes_in 0 143203 station_ip 37.129.1.245 143203 port 439 143203 unique_id port 143203 remote_ip 10.8.0.154 143204 username hashtadani3 143204 mac 143204 bytes_out 0 143204 bytes_in 0 143204 station_ip 37.129.1.245 143204 port 439 143204 unique_id port 143204 remote_ip 10.8.0.154 143205 username hashtadani3 143205 mac 143205 bytes_out 0 143205 bytes_in 0 143205 station_ip 37.129.1.245 143205 port 439 143205 unique_id port 143205 remote_ip 10.8.0.154 143206 username aminvpn 143206 mac 143206 bytes_out 0 143206 bytes_in 0 143206 station_ip 5.119.168.38 143206 port 459 143206 unique_id port 143206 remote_ip 10.8.0.14 143209 username hashtadani3 143209 mac 143209 bytes_out 0 143209 bytes_in 0 143209 station_ip 37.129.1.245 143209 port 439 143209 unique_id port 143209 remote_ip 10.8.0.154 143212 username hashtadani3 143212 mac 143212 bytes_out 0 143212 bytes_in 0 143212 station_ip 37.129.1.245 143212 port 439 143212 unique_id port 143212 remote_ip 10.8.0.154 143213 username hashtadani3 143213 mac 143213 bytes_out 0 143213 bytes_in 0 143213 station_ip 37.129.1.245 143213 port 439 143213 unique_id port 143213 remote_ip 10.8.0.154 143217 username hashtadani3 143217 mac 143217 bytes_out 0 143217 bytes_in 0 143217 station_ip 37.129.1.245 143217 port 439 143217 unique_id port 143217 remote_ip 10.8.0.154 143221 username kordestani 143221 mac 143221 bytes_out 0 143221 bytes_in 0 143221 station_ip 113.203.127.106 143221 port 237 143221 unique_id port 143221 remote_ip 10.8.1.98 143223 username hashtadani3 143223 mac 143223 bytes_out 0 143223 bytes_in 0 143223 station_ip 37.129.1.245 143223 port 237 143223 unique_id port 143223 remote_ip 10.8.1.94 143226 username hashtadani3 143226 mac 143226 bytes_out 0 143226 bytes_in 0 143226 station_ip 37.129.1.245 143226 port 237 143226 unique_id port 143226 remote_ip 10.8.1.94 143227 username hashtadani3 143227 mac 143227 bytes_out 0 143227 bytes_in 0 143227 station_ip 37.129.1.245 143227 port 439 143227 unique_id port 143227 remote_ip 10.8.0.154 143228 username hashtadani3 143228 mac 143228 bytes_out 0 143228 bytes_in 0 143228 station_ip 37.129.1.245 143228 port 237 143228 unique_id port 143228 remote_ip 10.8.1.94 143232 username hashtadani3 143232 mac 143232 bytes_out 0 143232 bytes_in 0 143232 station_ip 37.129.1.245 143232 port 439 143232 unique_id port 143232 remote_ip 10.8.0.154 143234 username aminvpn 143234 mac 143234 bytes_out 0 143234 bytes_in 0 143234 station_ip 5.119.168.38 143234 port 439 143234 unique_id port 143234 remote_ip 10.8.0.14 143237 username aminvpn 143237 mac 143237 bytes_out 0 143237 bytes_in 0 143237 station_ip 5.119.168.38 143237 port 439 143237 unique_id port 143237 remote_ip 10.8.0.14 143241 username hashtadani3 143241 mac 143241 bytes_out 0 143241 bytes_in 0 143241 station_ip 37.129.1.245 143241 port 439 143241 unique_id port 143241 remote_ip 10.8.0.154 143242 username hashtadani3 143242 mac 143242 bytes_out 0 143242 bytes_in 0 143242 station_ip 37.129.1.245 143242 port 439 143242 unique_id port 143242 remote_ip 10.8.0.154 143246 username hashtadani3 143246 mac 143246 bytes_out 0 143246 bytes_in 0 143246 station_ip 37.129.1.245 143246 port 439 143246 unique_id port 143246 remote_ip 10.8.0.154 143247 username hashtadani3 143247 mac 143247 bytes_out 0 143247 bytes_in 0 143247 station_ip 37.129.1.245 143247 port 439 143247 unique_id port 143247 remote_ip 10.8.0.154 143250 username hashtadani3 143250 mac 143250 bytes_out 0 143250 bytes_in 0 143250 station_ip 37.129.1.245 143250 port 237 143250 unique_id port 143250 remote_ip 10.8.1.94 143251 username hashtadani3 143251 mac 143251 bytes_out 0 143251 bytes_in 0 143251 station_ip 37.129.1.245 143251 port 439 143251 unique_id port 143251 remote_ip 10.8.0.154 143253 username hashtadani3 143253 mac 143253 bytes_out 0 143253 bytes_in 0 143253 station_ip 37.129.1.245 143253 port 237 143253 unique_id port 143253 remote_ip 10.8.1.94 143256 username hashtadani3 143207 remote_ip 10.8.0.154 143208 username hashtadani3 143208 mac 143208 bytes_out 0 143208 bytes_in 0 143208 station_ip 37.129.1.245 143208 port 439 143208 unique_id port 143208 remote_ip 10.8.0.154 143211 username hashtadani3 143211 mac 143211 bytes_out 0 143211 bytes_in 0 143211 station_ip 37.129.1.245 143211 port 439 143211 unique_id port 143211 remote_ip 10.8.0.154 143216 username hashtadani3 143216 mac 143216 bytes_out 0 143216 bytes_in 0 143216 station_ip 37.129.1.245 143216 port 439 143216 unique_id port 143216 remote_ip 10.8.0.154 143220 username hashtadani3 143220 mac 143220 bytes_out 0 143220 bytes_in 0 143220 station_ip 37.129.1.245 143220 port 439 143220 unique_id port 143220 remote_ip 10.8.0.154 143225 username hashtadani3 143225 mac 143225 bytes_out 0 143225 bytes_in 0 143225 station_ip 37.129.1.245 143225 port 439 143225 unique_id port 143225 remote_ip 10.8.0.154 143230 username hashtadani3 143230 mac 143230 bytes_out 0 143230 bytes_in 0 143230 station_ip 37.129.1.245 143230 port 439 143230 unique_id port 143230 remote_ip 10.8.0.154 143231 username hashtadani3 143231 mac 143231 bytes_out 0 143231 bytes_in 0 143231 station_ip 37.129.1.245 143231 port 237 143231 unique_id port 143231 remote_ip 10.8.1.94 143235 username hashtadani3 143235 mac 143235 bytes_out 0 143235 bytes_in 0 143235 station_ip 37.129.1.245 143235 port 459 143235 unique_id port 143235 remote_ip 10.8.0.154 143236 username hashtadani3 143236 mac 143236 bytes_out 0 143236 bytes_in 0 143236 station_ip 37.129.1.245 143236 port 237 143236 unique_id port 143236 remote_ip 10.8.1.94 143238 username hashtadani3 143238 mac 143238 bytes_out 0 143238 bytes_in 0 143238 station_ip 37.129.1.245 143238 port 459 143238 unique_id port 143238 remote_ip 10.8.0.154 143240 username hashtadani3 143240 mac 143240 bytes_out 0 143240 bytes_in 0 143240 station_ip 37.129.1.245 143240 port 439 143240 unique_id port 143240 remote_ip 10.8.0.154 143244 username hashtadani3 143244 mac 143244 bytes_out 0 143244 bytes_in 0 143244 station_ip 37.129.1.245 143244 port 237 143244 unique_id port 143244 remote_ip 10.8.1.94 143245 username hashtadani3 143245 mac 143245 bytes_out 0 143245 bytes_in 0 143245 station_ip 37.129.1.245 143245 port 237 143245 unique_id port 143245 remote_ip 10.8.1.94 143249 username hashtadani3 143249 mac 143249 bytes_out 0 143249 bytes_in 0 143249 station_ip 37.129.1.245 143249 port 439 143249 unique_id port 143249 remote_ip 10.8.0.154 143255 username hashtadani3 143255 mac 143255 bytes_out 0 143255 bytes_in 0 143255 station_ip 37.129.1.245 143255 port 237 143255 unique_id port 143255 remote_ip 10.8.1.94 143260 username hashtadani3 143260 mac 143260 bytes_out 0 143260 bytes_in 0 143260 station_ip 37.129.1.245 143260 port 237 143260 unique_id port 143260 remote_ip 10.8.1.94 143264 username hashtadani3 143264 mac 143264 bytes_out 0 143264 bytes_in 0 143264 station_ip 37.129.1.245 143264 port 439 143264 unique_id port 143264 remote_ip 10.8.0.154 143268 username hashtadani3 143268 mac 143268 bytes_out 0 143268 bytes_in 0 143268 station_ip 37.129.1.245 143268 port 439 143268 unique_id port 143268 remote_ip 10.8.0.154 143273 username hashtadani3 143273 mac 143273 bytes_out 0 143273 bytes_in 0 143273 station_ip 37.129.1.245 143273 port 439 143273 unique_id port 143273 remote_ip 10.8.0.154 143274 username hashtadani3 143274 mac 143274 bytes_out 0 143210 bytes_in 0 143210 station_ip 37.129.1.245 143210 port 439 143210 unique_id port 143210 remote_ip 10.8.0.154 143214 username hashtadani3 143214 mac 143214 bytes_out 0 143214 bytes_in 0 143214 station_ip 37.129.1.245 143214 port 439 143214 unique_id port 143214 remote_ip 10.8.0.154 143215 username hashtadani3 143215 mac 143215 bytes_out 0 143215 bytes_in 0 143215 station_ip 37.129.1.245 143215 port 439 143215 unique_id port 143215 remote_ip 10.8.0.154 143218 username hashtadani3 143218 mac 143218 bytes_out 0 143218 bytes_in 0 143218 station_ip 37.129.1.245 143218 port 239 143218 unique_id port 143218 remote_ip 10.8.1.94 143219 username hashtadani3 143219 mac 143219 bytes_out 0 143219 bytes_in 0 143219 station_ip 37.129.1.245 143219 port 439 143219 unique_id port 143219 remote_ip 10.8.0.154 143222 username hashtadani3 143222 mac 143222 bytes_out 2217 143222 bytes_in 4494 143222 station_ip 37.129.1.245 143222 port 439 143222 unique_id port 143222 remote_ip 10.8.0.154 143224 username hashtadani3 143224 mac 143224 bytes_out 0 143224 bytes_in 0 143224 station_ip 37.129.1.245 143224 port 439 143224 unique_id port 143224 remote_ip 10.8.0.154 143229 username hashtadani3 143229 mac 143229 bytes_out 0 143229 bytes_in 0 143229 station_ip 37.129.1.245 143229 port 439 143229 unique_id port 143229 remote_ip 10.8.0.154 143233 username hashtadani3 143233 mac 143233 bytes_out 0 143233 bytes_in 0 143233 station_ip 37.129.1.245 143233 port 237 143233 unique_id port 143233 remote_ip 10.8.1.94 143239 username hashtadani3 143239 mac 143239 bytes_out 0 143239 bytes_in 0 143239 station_ip 37.129.1.245 143239 port 237 143239 unique_id port 143239 remote_ip 10.8.1.94 143243 username hashtadani3 143243 mac 143243 bytes_out 0 143243 bytes_in 0 143243 station_ip 37.129.1.245 143243 port 237 143243 unique_id port 143243 remote_ip 10.8.1.94 143248 username hashtadani3 143248 mac 143248 bytes_out 0 143248 bytes_in 0 143248 station_ip 37.129.1.245 143248 port 237 143248 unique_id port 143248 remote_ip 10.8.1.94 143252 username hashtadani3 143252 mac 143252 bytes_out 0 143252 bytes_in 0 143252 station_ip 37.129.1.245 143252 port 439 143252 unique_id port 143252 remote_ip 10.8.0.154 143254 username hashtadani3 143254 mac 143254 bytes_out 0 143254 bytes_in 0 143254 station_ip 37.129.1.245 143254 port 439 143254 unique_id port 143254 remote_ip 10.8.0.154 143258 username hashtadani3 143258 mac 143258 bytes_out 0 143258 bytes_in 0 143258 station_ip 37.129.1.245 143258 port 237 143258 unique_id port 143258 remote_ip 10.8.1.94 143259 username hashtadani3 143259 mac 143259 bytes_out 0 143259 bytes_in 0 143259 station_ip 37.129.1.245 143259 port 439 143259 unique_id port 143259 remote_ip 10.8.0.154 143262 username hashtadani3 143262 mac 143262 bytes_out 0 143262 bytes_in 0 143262 station_ip 37.129.1.245 143262 port 439 143262 unique_id port 143262 remote_ip 10.8.0.154 143263 username hashtadani3 143263 mac 143263 bytes_out 0 143263 bytes_in 0 143263 station_ip 37.129.1.245 143263 port 237 143263 unique_id port 143263 remote_ip 10.8.1.94 143267 username hashtadani3 143267 mac 143267 bytes_out 0 143267 bytes_in 0 143267 station_ip 37.129.1.245 143267 port 237 143267 unique_id port 143267 remote_ip 10.8.1.94 143270 username aminvpn 143270 mac 143270 bytes_out 0 143270 bytes_in 0 143270 station_ip 5.119.168.38 143270 port 459 143270 unique_id port 143256 mac 143256 bytes_out 0 143256 bytes_in 0 143256 station_ip 37.129.1.245 143256 port 439 143256 unique_id port 143256 remote_ip 10.8.0.154 143257 username hashtadani3 143257 mac 143257 bytes_out 0 143257 bytes_in 0 143257 station_ip 37.129.1.245 143257 port 439 143257 unique_id port 143257 remote_ip 10.8.0.154 143261 username hashtadani3 143261 mac 143261 bytes_out 0 143261 bytes_in 0 143261 station_ip 37.129.1.245 143261 port 439 143261 unique_id port 143261 remote_ip 10.8.0.154 143265 username hashtadani3 143265 mac 143265 bytes_out 0 143265 bytes_in 0 143265 station_ip 37.129.1.245 143265 port 237 143265 unique_id port 143265 remote_ip 10.8.1.94 143266 username hashtadani3 143266 mac 143266 bytes_out 0 143266 bytes_in 0 143266 station_ip 37.129.1.245 143266 port 439 143266 unique_id port 143266 remote_ip 10.8.0.154 143269 username hashtadani3 143269 mac 143269 bytes_out 0 143269 bytes_in 0 143269 station_ip 37.129.1.245 143269 port 237 143269 unique_id port 143269 remote_ip 10.8.1.94 143271 username hashtadani3 143271 mac 143271 bytes_out 0 143271 bytes_in 0 143271 station_ip 37.129.1.245 143271 port 439 143271 unique_id port 143271 remote_ip 10.8.0.154 143275 username hashtadani3 143275 mac 143275 bytes_out 0 143275 bytes_in 0 143275 station_ip 37.129.1.245 143275 port 439 143275 unique_id port 143275 remote_ip 10.8.0.154 143281 username hashtadani3 143281 mac 143281 bytes_out 0 143281 bytes_in 0 143281 station_ip 37.129.1.245 143281 port 439 143281 unique_id port 143281 remote_ip 10.8.0.154 143287 username hashtadani3 143287 mac 143287 bytes_out 0 143287 bytes_in 0 143287 station_ip 37.129.1.245 143287 port 237 143287 unique_id port 143287 remote_ip 10.8.1.94 143293 username hashtadani3 143293 mac 143293 bytes_out 0 143293 bytes_in 0 143293 station_ip 37.129.1.245 143293 port 463 143293 unique_id port 143293 remote_ip 10.8.0.154 143297 username hashtadani3 143297 mac 143297 bytes_out 0 143297 bytes_in 0 143297 station_ip 37.129.1.245 143297 port 237 143297 unique_id port 143297 remote_ip 10.8.1.94 143300 username houshang 143300 mac 143300 bytes_out 427211 143300 bytes_in 4215149 143300 station_ip 5.120.38.110 143300 port 462 143300 unique_id port 143300 remote_ip 10.8.0.22 143304 username aminvpn 143304 unique_id port 143304 terminate_cause User-Request 143304 bytes_out 375795029 143304 bytes_in 3918073524 143304 station_ip 5.119.168.38 143304 port 15730768 143304 nas_port_type Virtual 143304 remote_ip 5.5.5.156 143305 username hashtadani3 143305 mac 143305 bytes_out 0 143305 bytes_in 0 143305 station_ip 37.129.1.245 143305 port 462 143305 unique_id port 143305 remote_ip 10.8.0.154 143309 username hashtadani3 143309 mac 143309 bytes_out 0 143309 bytes_in 0 143309 station_ip 37.129.1.245 143309 port 462 143309 unique_id port 143309 remote_ip 10.8.0.154 143311 username hashtadani3 143311 mac 143311 bytes_out 0 143311 bytes_in 0 143311 station_ip 37.129.1.245 143311 port 237 143311 unique_id port 143311 remote_ip 10.8.1.94 143315 username hashtadani3 143315 mac 143315 bytes_out 0 143315 bytes_in 0 143315 station_ip 37.129.1.245 143315 port 237 143315 unique_id port 143315 remote_ip 10.8.1.94 143319 username hashtadani3 143319 mac 143319 bytes_out 0 143319 bytes_in 0 143319 station_ip 37.129.1.245 143319 port 462 143319 unique_id port 143319 remote_ip 10.8.0.154 143320 username hashtadani3 143320 mac 143320 bytes_out 0 143270 remote_ip 10.8.0.14 143272 username hashtadani3 143272 mac 143272 bytes_out 0 143272 bytes_in 0 143272 station_ip 37.129.1.245 143272 port 237 143272 unique_id port 143272 remote_ip 10.8.1.94 143276 username hashtadani3 143276 mac 143276 bytes_out 0 143276 bytes_in 0 143276 station_ip 37.129.1.245 143276 port 237 143276 unique_id port 143276 remote_ip 10.8.1.94 143277 username hashtadani3 143277 mac 143277 bytes_out 0 143277 bytes_in 0 143277 station_ip 37.129.1.245 143277 port 439 143277 unique_id port 143277 remote_ip 10.8.0.154 143278 username hashtadani3 143278 mac 143278 bytes_out 0 143278 bytes_in 0 143278 station_ip 37.129.1.245 143278 port 439 143278 unique_id port 143278 remote_ip 10.8.0.154 143282 username hashtadani3 143282 mac 143282 bytes_out 0 143282 bytes_in 0 143282 station_ip 37.129.1.245 143282 port 237 143282 unique_id port 143282 remote_ip 10.8.1.94 143283 username hashtadani3 143283 mac 143283 bytes_out 0 143283 bytes_in 0 143283 station_ip 37.129.1.245 143283 port 439 143283 unique_id port 143283 remote_ip 10.8.0.154 143285 username hashtadani3 143285 mac 143285 bytes_out 0 143285 bytes_in 0 143285 station_ip 37.129.1.245 143285 port 237 143285 unique_id port 143285 remote_ip 10.8.1.94 143288 username hashtadani3 143288 mac 143288 bytes_out 0 143288 bytes_in 0 143288 station_ip 37.129.1.245 143288 port 439 143288 unique_id port 143288 remote_ip 10.8.0.154 143289 username hashtadani3 143289 mac 143289 bytes_out 0 143289 bytes_in 0 143289 station_ip 37.129.1.245 143289 port 439 143289 unique_id port 143289 remote_ip 10.8.0.154 143291 username khalili 143291 kill_reason Another user logged on this global unique id 143291 mac 143291 bytes_out 0 143291 bytes_in 0 143291 station_ip 5.119.175.202 143291 port 459 143291 unique_id port 143291 remote_ip 10.8.0.86 143292 username hashtadani3 143292 mac 143292 bytes_out 0 143292 bytes_in 0 143292 station_ip 37.129.1.245 143292 port 439 143292 unique_id port 143292 remote_ip 10.8.0.154 143294 username hashtadani3 143294 mac 143294 bytes_out 0 143294 bytes_in 0 143294 station_ip 37.129.1.245 143294 port 237 143294 unique_id port 143294 remote_ip 10.8.1.94 143298 username hashtadani3 143298 mac 143298 bytes_out 0 143298 bytes_in 0 143298 station_ip 37.129.1.245 143298 port 463 143298 unique_id port 143298 remote_ip 10.8.0.154 143299 username hashtadani3 143299 mac 143299 bytes_out 0 143299 bytes_in 0 143299 station_ip 37.129.1.245 143299 port 463 143299 unique_id port 143299 remote_ip 10.8.0.154 143301 username hashtadani3 143301 mac 143301 bytes_out 0 143301 bytes_in 0 143301 station_ip 37.129.1.245 143301 port 237 143301 unique_id port 143301 remote_ip 10.8.1.94 143303 username hashtadani3 143303 mac 143303 bytes_out 0 143303 bytes_in 0 143303 station_ip 37.129.1.245 143303 port 237 143303 unique_id port 143303 remote_ip 10.8.1.94 143306 username hashtadani3 143306 mac 143306 bytes_out 0 143306 bytes_in 0 143306 station_ip 37.129.1.245 143306 port 237 143306 unique_id port 143306 remote_ip 10.8.1.94 143312 username hashtadani3 143312 mac 143312 bytes_out 0 143312 bytes_in 0 143312 station_ip 37.129.1.245 143312 port 462 143312 unique_id port 143312 remote_ip 10.8.0.154 143313 username hashtadani3 143313 mac 143313 bytes_out 0 143313 bytes_in 0 143313 station_ip 37.129.1.245 143313 port 462 143313 unique_id port 143313 remote_ip 10.8.0.154 143316 username hashtadani3 143274 bytes_in 0 143274 station_ip 37.129.1.245 143274 port 237 143274 unique_id port 143274 remote_ip 10.8.1.94 143279 username hashtadani3 143279 mac 143279 bytes_out 0 143279 bytes_in 0 143279 station_ip 37.129.1.245 143279 port 439 143279 unique_id port 143279 remote_ip 10.8.0.154 143280 username hashtadani3 143280 mac 143280 bytes_out 0 143280 bytes_in 0 143280 station_ip 37.129.1.245 143280 port 237 143280 unique_id port 143280 remote_ip 10.8.1.94 143284 username hashtadani3 143284 mac 143284 bytes_out 0 143284 bytes_in 0 143284 station_ip 37.129.1.245 143284 port 439 143284 unique_id port 143284 remote_ip 10.8.0.154 143286 username hashtadani3 143286 mac 143286 bytes_out 0 143286 bytes_in 0 143286 station_ip 37.129.1.245 143286 port 439 143286 unique_id port 143286 remote_ip 10.8.0.154 143290 username hashtadani3 143290 mac 143290 bytes_out 0 143290 bytes_in 0 143290 station_ip 37.129.1.245 143290 port 237 143290 unique_id port 143290 remote_ip 10.8.1.94 143295 username hashtadani3 143295 mac 143295 bytes_out 0 143295 bytes_in 0 143295 station_ip 37.129.1.245 143295 port 463 143295 unique_id port 143295 remote_ip 10.8.0.154 143296 username hashtadani3 143296 mac 143296 bytes_out 0 143296 bytes_in 0 143296 station_ip 37.129.1.245 143296 port 463 143296 unique_id port 143296 remote_ip 10.8.0.154 143302 username hashtadani3 143302 mac 143302 bytes_out 0 143302 bytes_in 0 143302 station_ip 37.129.1.245 143302 port 462 143302 unique_id port 143302 remote_ip 10.8.0.154 143307 username hashtadani3 143307 mac 143307 bytes_out 0 143307 bytes_in 0 143307 station_ip 37.129.1.245 143307 port 462 143307 unique_id port 143307 remote_ip 10.8.0.154 143308 username hashtadani3 143308 mac 143308 bytes_out 0 143308 bytes_in 0 143308 station_ip 37.129.1.245 143308 port 462 143308 unique_id port 143308 remote_ip 10.8.0.154 143310 username aminvpn 143310 mac 143310 bytes_out 1644 143310 bytes_in 5089 143310 station_ip 5.119.168.38 143310 port 463 143310 unique_id port 143310 remote_ip 10.8.0.14 143314 username hashtadani3 143314 mac 143314 bytes_out 0 143314 bytes_in 0 143314 station_ip 37.129.1.245 143314 port 462 143314 unique_id port 143314 remote_ip 10.8.0.154 143318 username hashtadani3 143318 mac 143318 bytes_out 0 143318 bytes_in 0 143318 station_ip 37.129.1.245 143318 port 237 143318 unique_id port 143318 remote_ip 10.8.1.94 143322 username hashtadani3 143322 mac 143322 bytes_out 0 143322 bytes_in 0 143322 station_ip 37.129.1.245 143322 port 462 143322 unique_id port 143322 remote_ip 10.8.0.154 143324 username mohammadjavad 143324 mac 143324 bytes_out 1000669 143324 bytes_in 18866506 143324 station_ip 37.129.242.102 143324 port 461 143324 unique_id port 143324 remote_ip 10.8.0.142 143326 username hashtadani3 143326 mac 143326 bytes_out 0 143326 bytes_in 0 143326 station_ip 37.129.1.245 143326 port 461 143326 unique_id port 143326 remote_ip 10.8.0.154 143327 username hashtadani3 143327 mac 143327 bytes_out 0 143327 bytes_in 0 143327 station_ip 37.129.1.245 143327 port 461 143327 unique_id port 143327 remote_ip 10.8.0.154 143333 username hashtadani3 143333 mac 143333 bytes_out 0 143333 bytes_in 0 143333 station_ip 37.129.1.245 143333 port 461 143333 unique_id port 143333 remote_ip 10.8.0.154 143335 username hashtadani3 143335 mac 143335 bytes_out 0 143335 bytes_in 0 143335 station_ip 37.129.1.245 143335 port 461 143316 mac 143316 bytes_out 0 143316 bytes_in 0 143316 station_ip 37.129.1.245 143316 port 462 143316 unique_id port 143316 remote_ip 10.8.0.154 143317 username hashtadani3 143317 mac 143317 bytes_out 0 143317 bytes_in 0 143317 station_ip 37.129.1.245 143317 port 462 143317 unique_id port 143317 remote_ip 10.8.0.154 143321 username hashtadani3 143321 mac 143321 bytes_out 0 143321 bytes_in 0 143321 station_ip 37.129.1.245 143321 port 237 143321 unique_id port 143321 remote_ip 10.8.1.94 143323 username hashtadani3 143323 mac 143323 bytes_out 0 143323 bytes_in 0 143323 station_ip 37.129.1.245 143323 port 462 143323 unique_id port 143323 remote_ip 10.8.0.154 143325 username hashtadani3 143325 mac 143325 bytes_out 0 143325 bytes_in 0 143325 station_ip 37.129.1.245 143325 port 237 143325 unique_id port 143325 remote_ip 10.8.1.94 143329 username hashtadani3 143329 mac 143329 bytes_out 0 143329 bytes_in 0 143329 station_ip 37.129.1.245 143329 port 461 143329 unique_id port 143329 remote_ip 10.8.0.154 143332 username hashtadani3 143332 mac 143332 bytes_out 0 143332 bytes_in 0 143332 station_ip 37.129.1.245 143332 port 461 143332 unique_id port 143332 remote_ip 10.8.0.154 143334 username hashtadani3 143334 mac 143334 bytes_out 0 143334 bytes_in 0 143334 station_ip 37.129.1.245 143334 port 461 143334 unique_id port 143334 remote_ip 10.8.0.154 143343 username hashtadani3 143343 mac 143343 bytes_out 0 143343 bytes_in 0 143343 station_ip 37.129.1.245 143343 port 461 143343 unique_id port 143343 remote_ip 10.8.0.154 143344 username hashtadani3 143344 mac 143344 bytes_out 0 143344 bytes_in 0 143344 station_ip 37.129.1.245 143344 port 461 143344 unique_id port 143344 remote_ip 10.8.0.154 143348 username hashtadani3 143348 mac 143348 bytes_out 0 143348 bytes_in 0 143348 station_ip 37.129.1.245 143348 port 237 143348 unique_id port 143348 remote_ip 10.8.1.94 143352 username hashtadani3 143352 mac 143352 bytes_out 0 143352 bytes_in 0 143352 station_ip 37.129.1.245 143352 port 237 143352 unique_id port 143352 remote_ip 10.8.1.94 143353 username hashtadani3 143353 mac 143353 bytes_out 0 143353 bytes_in 0 143353 station_ip 37.129.1.245 143353 port 237 143353 unique_id port 143353 remote_ip 10.8.1.94 143355 username hashtadani3 143355 mac 143355 bytes_out 0 143355 bytes_in 0 143355 station_ip 37.129.1.245 143355 port 461 143355 unique_id port 143355 remote_ip 10.8.0.154 143359 username hashtadani3 143359 mac 143359 bytes_out 0 143359 bytes_in 0 143359 station_ip 37.129.1.245 143359 port 237 143359 unique_id port 143359 remote_ip 10.8.1.94 143360 username hashtadani3 143360 mac 143360 bytes_out 0 143360 bytes_in 0 143360 station_ip 37.129.1.245 143360 port 439 143360 unique_id port 143360 remote_ip 10.8.0.154 143364 username hashtadani3 143364 mac 143364 bytes_out 0 143364 bytes_in 0 143364 station_ip 37.129.1.245 143364 port 439 143364 unique_id port 143364 remote_ip 10.8.0.154 143370 username hashtadani3 143370 mac 143370 bytes_out 0 143370 bytes_in 0 143370 station_ip 37.129.1.245 143370 port 439 143370 unique_id port 143370 remote_ip 10.8.0.154 143374 username hashtadani3 143374 mac 143374 bytes_out 0 143374 bytes_in 0 143374 station_ip 37.129.1.245 143374 port 237 143374 unique_id port 143374 remote_ip 10.8.1.94 143376 username hashtadani3 143376 mac 143376 bytes_out 0 143376 bytes_in 0 143376 station_ip 37.129.1.245 143320 bytes_in 0 143320 station_ip 37.129.1.245 143320 port 462 143320 unique_id port 143320 remote_ip 10.8.0.154 143328 username hashtadani3 143328 mac 143328 bytes_out 0 143328 bytes_in 0 143328 station_ip 37.129.1.245 143328 port 237 143328 unique_id port 143328 remote_ip 10.8.1.94 143330 username saeed9658 143330 mac 143330 bytes_out 0 143330 bytes_in 0 143330 station_ip 5.120.94.129 143330 port 238 143330 unique_id port 143330 remote_ip 10.8.1.210 143331 username hashtadani3 143331 mac 143331 bytes_out 0 143331 bytes_in 0 143331 station_ip 37.129.1.245 143331 port 237 143331 unique_id port 143331 remote_ip 10.8.1.94 143336 username hashtadani3 143336 mac 143336 bytes_out 0 143336 bytes_in 0 143336 station_ip 37.129.1.245 143336 port 461 143336 unique_id port 143336 remote_ip 10.8.0.154 143337 username hashtadani3 143337 mac 143337 bytes_out 0 143337 bytes_in 0 143337 station_ip 37.129.1.245 143337 port 461 143337 unique_id port 143337 remote_ip 10.8.0.154 143338 username hashtadani3 143338 mac 143338 bytes_out 0 143338 bytes_in 0 143338 station_ip 37.129.1.245 143338 port 461 143338 unique_id port 143338 remote_ip 10.8.0.154 143340 username hashtadani3 143340 mac 143340 bytes_out 0 143340 bytes_in 0 143340 station_ip 37.129.1.245 143340 port 461 143340 unique_id port 143340 remote_ip 10.8.0.154 143342 username hashtadani3 143342 mac 143342 bytes_out 0 143342 bytes_in 0 143342 station_ip 37.129.1.245 143342 port 461 143342 unique_id port 143342 remote_ip 10.8.0.154 143346 username hashtadani3 143346 mac 143346 bytes_out 0 143346 bytes_in 0 143346 station_ip 37.129.1.245 143346 port 237 143346 unique_id port 143346 remote_ip 10.8.1.94 143347 username hashtadani3 143347 mac 143347 bytes_out 0 143347 bytes_in 0 143347 station_ip 37.129.1.245 143347 port 461 143347 unique_id port 143347 remote_ip 10.8.0.154 143351 username hashtadani3 143351 mac 143351 bytes_out 0 143351 bytes_in 0 143351 station_ip 37.129.1.245 143351 port 461 143351 unique_id port 143351 remote_ip 10.8.0.154 143358 username sedighe 143358 mac 143358 bytes_out 0 143358 bytes_in 0 143358 station_ip 37.129.193.66 143358 port 439 143358 unique_id port 143358 remote_ip 10.8.0.146 143362 username hashtadani3 143362 mac 143362 bytes_out 0 143362 bytes_in 0 143362 station_ip 37.129.1.245 143362 port 237 143362 unique_id port 143362 remote_ip 10.8.1.94 143363 username hashtadani3 143363 mac 143363 bytes_out 0 143363 bytes_in 0 143363 station_ip 37.129.1.245 143363 port 237 143363 unique_id port 143363 remote_ip 10.8.1.94 143366 username hashtadani3 143366 mac 143366 bytes_out 0 143366 bytes_in 0 143366 station_ip 37.129.1.245 143366 port 237 143366 unique_id port 143366 remote_ip 10.8.1.94 143369 username hashtadani3 143369 mac 143369 bytes_out 0 143369 bytes_in 0 143369 station_ip 37.129.1.245 143369 port 237 143369 unique_id port 143369 remote_ip 10.8.1.94 143373 username hashtadani3 143373 mac 143373 bytes_out 0 143373 bytes_in 0 143373 station_ip 37.129.1.245 143373 port 439 143373 unique_id port 143373 remote_ip 10.8.0.154 143375 username hashtadani3 143375 mac 143375 bytes_out 0 143375 bytes_in 0 143375 station_ip 37.129.1.245 143375 port 439 143375 unique_id port 143375 remote_ip 10.8.0.154 143378 username hashtadani3 143378 mac 143378 bytes_out 0 143378 bytes_in 0 143378 station_ip 37.129.1.245 143378 port 439 143378 unique_id port 143335 unique_id port 143335 remote_ip 10.8.0.154 143339 username hassan 143339 mac 143339 bytes_out 0 143339 bytes_in 0 143339 station_ip 5.119.100.205 143339 port 462 143339 unique_id port 143339 remote_ip 10.8.0.122 143341 username hashtadani3 143341 mac 143341 bytes_out 0 143341 bytes_in 0 143341 station_ip 37.129.1.245 143341 port 461 143341 unique_id port 143341 remote_ip 10.8.0.154 143345 username hashtadani3 143345 mac 143345 bytes_out 0 143345 bytes_in 0 143345 station_ip 37.129.1.245 143345 port 461 143345 unique_id port 143345 remote_ip 10.8.0.154 143349 username hashtadani3 143349 mac 143349 bytes_out 0 143349 bytes_in 0 143349 station_ip 37.129.1.245 143349 port 461 143349 unique_id port 143349 remote_ip 10.8.0.154 143350 username hashtadani3 143350 mac 143350 bytes_out 0 143350 bytes_in 0 143350 station_ip 37.129.1.245 143350 port 461 143350 unique_id port 143350 remote_ip 10.8.0.154 143354 username hashtadani3 143354 mac 143354 bytes_out 0 143354 bytes_in 0 143354 station_ip 37.129.1.245 143354 port 237 143354 unique_id port 143354 remote_ip 10.8.1.94 143356 username hashtadani3 143356 mac 143356 bytes_out 0 143356 bytes_in 0 143356 station_ip 37.129.1.245 143356 port 237 143356 unique_id port 143356 remote_ip 10.8.1.94 143357 username hashtadani3 143357 mac 143357 bytes_out 0 143357 bytes_in 0 143357 station_ip 37.129.1.245 143357 port 461 143357 unique_id port 143357 remote_ip 10.8.0.154 143361 username hashtadani3 143361 mac 143361 bytes_out 0 143361 bytes_in 0 143361 station_ip 37.129.1.245 143361 port 237 143361 unique_id port 143361 remote_ip 10.8.1.94 143365 username hashtadani3 143365 mac 143365 bytes_out 0 143365 bytes_in 0 143365 station_ip 37.129.1.245 143365 port 237 143365 unique_id port 143365 remote_ip 10.8.1.94 143367 username mostafa_es78 143367 unique_id port 143367 terminate_cause Lost-Carrier 143367 bytes_out 66396 143367 bytes_in 348395 143367 station_ip 77.237.189.1 143367 port 15730810 143367 nas_port_type Virtual 143367 remote_ip 5.5.5.61 143368 username hashtadani3 143368 mac 143368 bytes_out 0 143368 bytes_in 0 143368 station_ip 37.129.1.245 143368 port 439 143368 unique_id port 143368 remote_ip 10.8.0.154 143371 username hashtadani3 143371 mac 143371 bytes_out 0 143371 bytes_in 0 143371 station_ip 37.129.1.245 143371 port 237 143371 unique_id port 143371 remote_ip 10.8.1.94 143372 username hashtadani3 143372 mac 143372 bytes_out 0 143372 bytes_in 0 143372 station_ip 37.129.1.245 143372 port 439 143372 unique_id port 143372 remote_ip 10.8.0.154 143377 username hashtadani3 143377 mac 143377 bytes_out 0 143377 bytes_in 0 143377 station_ip 37.129.1.245 143377 port 439 143377 unique_id port 143377 remote_ip 10.8.0.154 143381 username hashtadani3 143381 mac 143381 bytes_out 0 143381 bytes_in 0 143381 station_ip 37.129.1.245 143381 port 237 143381 unique_id port 143381 remote_ip 10.8.1.94 143382 username hashtadani3 143382 mac 143382 bytes_out 0 143382 bytes_in 0 143382 station_ip 37.129.1.245 143382 port 439 143382 unique_id port 143382 remote_ip 10.8.0.154 143386 username sedighe 143386 mac 143386 bytes_out 0 143386 bytes_in 0 143386 station_ip 37.129.193.66 143386 port 461 143386 unique_id port 143386 remote_ip 10.8.0.146 143389 username hashtadani3 143389 mac 143389 bytes_out 0 143389 bytes_in 0 143389 station_ip 37.129.1.245 143389 port 439 143389 unique_id port 143389 remote_ip 10.8.0.154 143376 port 237 143376 unique_id port 143376 remote_ip 10.8.1.94 143380 username hashtadani3 143380 mac 143380 bytes_out 0 143380 bytes_in 0 143380 station_ip 37.129.1.245 143380 port 439 143380 unique_id port 143380 remote_ip 10.8.0.154 143384 username hashtadani3 143384 mac 143384 bytes_out 0 143384 bytes_in 0 143384 station_ip 37.129.1.245 143384 port 439 143384 unique_id port 143384 remote_ip 10.8.0.154 143385 username hashtadani3 143385 mac 143385 bytes_out 0 143385 bytes_in 0 143385 station_ip 37.129.1.245 143385 port 439 143385 unique_id port 143385 remote_ip 10.8.0.154 143387 username hashtadani3 143387 mac 143387 bytes_out 0 143387 bytes_in 0 143387 station_ip 37.129.1.245 143387 port 439 143387 unique_id port 143387 remote_ip 10.8.0.154 143388 username hashtadani3 143388 mac 143388 bytes_out 0 143388 bytes_in 0 143388 station_ip 37.129.1.245 143388 port 439 143388 unique_id port 143388 remote_ip 10.8.0.154 143392 username hashtadani3 143392 mac 143392 bytes_out 0 143392 bytes_in 0 143392 station_ip 37.129.1.245 143392 port 237 143392 unique_id port 143392 remote_ip 10.8.1.94 143396 username hashtadani3 143396 mac 143396 bytes_out 0 143396 bytes_in 0 143396 station_ip 37.129.1.245 143396 port 461 143396 unique_id port 143396 remote_ip 10.8.0.154 143397 username hashtadani3 143397 mac 143397 bytes_out 0 143397 bytes_in 0 143397 station_ip 37.129.1.245 143397 port 461 143397 unique_id port 143397 remote_ip 10.8.0.154 143400 username hashtadani3 143400 mac 143400 bytes_out 0 143400 bytes_in 0 143400 station_ip 37.129.1.245 143400 port 237 143400 unique_id port 143400 remote_ip 10.8.1.94 143401 username hashtadani3 143401 mac 143401 bytes_out 0 143401 bytes_in 0 143401 station_ip 37.129.1.245 143401 port 461 143401 unique_id port 143401 remote_ip 10.8.0.154 143405 username hashtadani3 143405 mac 143405 bytes_out 0 143405 bytes_in 0 143405 station_ip 37.129.1.245 143405 port 237 143405 unique_id port 143405 remote_ip 10.8.1.94 143410 username hashtadani3 143410 mac 143410 bytes_out 0 143410 bytes_in 0 143410 station_ip 37.129.1.245 143410 port 461 143410 unique_id port 143410 remote_ip 10.8.0.154 143411 username hashtadani3 143411 mac 143411 bytes_out 0 143411 bytes_in 0 143411 station_ip 37.129.1.245 143411 port 461 143411 unique_id port 143411 remote_ip 10.8.0.154 143418 username hashtadani3 143418 mac 143418 bytes_out 0 143418 bytes_in 0 143418 station_ip 37.129.1.245 143418 port 461 143418 unique_id port 143418 remote_ip 10.8.0.154 143419 username hashtadani3 143419 mac 143419 bytes_out 0 143419 bytes_in 0 143419 station_ip 37.129.1.245 143419 port 461 143419 unique_id port 143419 remote_ip 10.8.0.154 143420 username hashtadani3 143420 mac 143420 bytes_out 0 143420 bytes_in 0 143420 station_ip 37.129.1.245 143420 port 237 143420 unique_id port 143420 remote_ip 10.8.1.94 143424 username hashtadani3 143424 mac 143424 bytes_out 0 143424 bytes_in 0 143424 station_ip 37.129.1.245 143424 port 237 143424 unique_id port 143424 remote_ip 10.8.1.94 143426 username hashtadani3 143426 mac 143426 bytes_out 0 143426 bytes_in 0 143426 station_ip 37.129.1.245 143426 port 237 143426 unique_id port 143426 remote_ip 10.8.1.94 143430 username mahdiyehalizadeh 143430 mac 143430 bytes_out 323144 143430 bytes_in 5595286 143430 station_ip 83.123.111.121 143430 port 461 143430 unique_id port 143430 remote_ip 10.8.0.82 143378 remote_ip 10.8.0.154 143379 username hashtadani3 143379 mac 143379 bytes_out 0 143379 bytes_in 0 143379 station_ip 37.129.1.245 143379 port 237 143379 unique_id port 143379 remote_ip 10.8.1.94 143383 username hashtadani3 143383 mac 143383 bytes_out 0 143383 bytes_in 0 143383 station_ip 37.129.1.245 143383 port 237 143383 unique_id port 143383 remote_ip 10.8.1.94 143391 username hashtadani3 143391 mac 143391 bytes_out 0 143391 bytes_in 0 143391 station_ip 37.129.1.245 143391 port 463 143391 unique_id port 143391 remote_ip 10.8.0.154 143395 username hashtadani3 143395 mac 143395 bytes_out 0 143395 bytes_in 0 143395 station_ip 37.129.1.245 143395 port 237 143395 unique_id port 143395 remote_ip 10.8.1.94 143399 username hashtadani3 143399 mac 143399 bytes_out 0 143399 bytes_in 0 143399 station_ip 37.129.1.245 143399 port 461 143399 unique_id port 143399 remote_ip 10.8.0.154 143403 username hashtadani3 143403 mac 143403 bytes_out 0 143403 bytes_in 0 143403 station_ip 37.129.1.245 143403 port 461 143403 unique_id port 143403 remote_ip 10.8.0.154 143407 username hashtadani3 143407 mac 143407 bytes_out 0 143407 bytes_in 0 143407 station_ip 37.129.1.245 143407 port 461 143407 unique_id port 143407 remote_ip 10.8.0.154 143409 username hashtadani3 143409 mac 143409 bytes_out 0 143409 bytes_in 0 143409 station_ip 37.129.1.245 143409 port 237 143409 unique_id port 143409 remote_ip 10.8.1.94 143413 username hashtadani3 143413 mac 143413 bytes_out 0 143413 bytes_in 0 143413 station_ip 37.129.1.245 143413 port 461 143413 unique_id port 143413 remote_ip 10.8.0.154 143414 username hashtadani3 143414 mac 143414 bytes_out 0 143414 bytes_in 0 143414 station_ip 37.129.1.245 143414 port 237 143414 unique_id port 143414 remote_ip 10.8.1.94 143415 username sedighe 143415 mac 143415 bytes_out 44688 143415 bytes_in 53185 143415 station_ip 83.123.58.97 143415 port 463 143415 unique_id port 143415 remote_ip 10.8.0.146 143417 username hashtadani3 143417 mac 143417 bytes_out 0 143417 bytes_in 0 143417 station_ip 37.129.1.245 143417 port 237 143417 unique_id port 143417 remote_ip 10.8.1.94 143423 username hashtadani3 143423 mac 143423 bytes_out 0 143423 bytes_in 0 143423 station_ip 37.129.1.245 143423 port 237 143423 unique_id port 143423 remote_ip 10.8.1.94 143428 username hashtadani3 143428 mac 143428 bytes_out 0 143428 bytes_in 0 143428 station_ip 37.129.1.245 143428 port 237 143428 unique_id port 143428 remote_ip 10.8.1.94 143429 username hashtadani3 143429 mac 143429 bytes_out 0 143429 bytes_in 0 143429 station_ip 37.129.1.245 143429 port 463 143429 unique_id port 143429 remote_ip 10.8.0.154 143431 username hashtadani3 143431 mac 143431 bytes_out 0 143431 bytes_in 0 143431 station_ip 37.129.1.245 143431 port 463 143431 unique_id port 143431 remote_ip 10.8.0.154 143434 username farhad2 143434 mac 143434 bytes_out 0 143434 bytes_in 0 143434 station_ip 5.120.18.138 143434 port 462 143434 unique_id port 143436 username hashtadani3 143436 mac 143436 bytes_out 0 143436 bytes_in 0 143436 station_ip 37.129.1.245 143436 port 461 143436 unique_id port 143436 remote_ip 10.8.0.154 143437 username hashtadani3 143437 mac 143437 bytes_out 0 143437 bytes_in 0 143437 station_ip 37.129.1.245 143437 port 443 143437 unique_id port 143437 remote_ip 10.8.0.154 143439 username hashtadani3 143439 mac 143439 bytes_out 0 143439 bytes_in 0 143390 username hashtadani3 143390 mac 143390 bytes_out 0 143390 bytes_in 0 143390 station_ip 37.129.1.245 143390 port 237 143390 unique_id port 143390 remote_ip 10.8.1.94 143393 username hashtadani3 143393 mac 143393 bytes_out 0 143393 bytes_in 0 143393 station_ip 37.129.1.245 143393 port 463 143393 unique_id port 143393 remote_ip 10.8.0.154 143394 username sedighe 143394 mac 143394 bytes_out 2156 143394 bytes_in 4451 143394 station_ip 37.129.193.66 143394 port 461 143394 unique_id port 143394 remote_ip 10.8.0.146 143398 username hashtadani3 143398 mac 143398 bytes_out 0 143398 bytes_in 0 143398 station_ip 37.129.1.245 143398 port 237 143398 unique_id port 143398 remote_ip 10.8.1.94 143402 username hashtadani3 143402 mac 143402 bytes_out 0 143402 bytes_in 0 143402 station_ip 37.129.1.245 143402 port 237 143402 unique_id port 143402 remote_ip 10.8.1.94 143404 username farhad2 143404 kill_reason Another user logged on this global unique id 143404 mac 143404 bytes_out 0 143404 bytes_in 0 143404 station_ip 5.120.18.138 143404 port 462 143404 unique_id port 143404 remote_ip 10.8.0.190 143406 username hashtadani3 143406 mac 143406 bytes_out 0 143406 bytes_in 0 143406 station_ip 37.129.1.245 143406 port 237 143406 unique_id port 143406 remote_ip 10.8.1.94 143408 username hashtadani3 143408 mac 143408 bytes_out 0 143408 bytes_in 0 143408 station_ip 37.129.1.245 143408 port 461 143408 unique_id port 143408 remote_ip 10.8.0.154 143412 username hashtadani3 143412 mac 143412 bytes_out 0 143412 bytes_in 0 143412 station_ip 37.129.1.245 143412 port 237 143412 unique_id port 143412 remote_ip 10.8.1.94 143416 username hashtadani3 143416 mac 143416 bytes_out 0 143416 bytes_in 0 143416 station_ip 37.129.1.245 143416 port 461 143416 unique_id port 143416 remote_ip 10.8.0.154 143421 username hashtadani3 143421 mac 143421 bytes_out 0 143421 bytes_in 0 143421 station_ip 37.129.1.245 143421 port 463 143421 unique_id port 143421 remote_ip 10.8.0.154 143422 username hashtadani3 143422 mac 143422 bytes_out 0 143422 bytes_in 0 143422 station_ip 37.129.1.245 143422 port 237 143422 unique_id port 143422 remote_ip 10.8.1.94 143425 username hashtadani3 143425 mac 143425 bytes_out 0 143425 bytes_in 0 143425 station_ip 37.129.1.245 143425 port 463 143425 unique_id port 143425 remote_ip 10.8.0.154 143427 username hashtadani3 143427 mac 143427 bytes_out 0 143427 bytes_in 0 143427 station_ip 37.129.1.245 143427 port 463 143427 unique_id port 143427 remote_ip 10.8.0.154 143441 username hashtadani3 143441 mac 143441 bytes_out 0 143441 bytes_in 0 143441 station_ip 37.129.1.245 143441 port 443 143441 unique_id port 143441 remote_ip 10.8.0.154 143442 username farhad2 143442 mac 143442 bytes_out 0 143442 bytes_in 0 143442 station_ip 5.120.18.138 143442 port 461 143442 unique_id port 143442 remote_ip 10.8.0.190 143447 username hashtadani3 143447 mac 143447 bytes_out 0 143447 bytes_in 0 143447 station_ip 37.129.1.245 143447 port 461 143447 unique_id port 143447 remote_ip 10.8.0.154 143448 username hashtadani3 143448 mac 143448 bytes_out 0 143448 bytes_in 0 143448 station_ip 37.129.1.245 143448 port 237 143448 unique_id port 143448 remote_ip 10.8.1.94 143450 username hashtadani3 143450 mac 143450 bytes_out 0 143450 bytes_in 0 143450 station_ip 37.129.1.245 143450 port 461 143450 unique_id port 143450 remote_ip 10.8.0.154 143456 username hashtadani3 143456 mac 143432 username hashtadani3 143432 mac 143432 bytes_out 0 143432 bytes_in 0 143432 station_ip 37.129.1.245 143432 port 237 143432 unique_id port 143432 remote_ip 10.8.1.94 143433 username hashtadani3 143433 mac 143433 bytes_out 0 143433 bytes_in 0 143433 station_ip 37.129.1.245 143433 port 237 143433 unique_id port 143433 remote_ip 10.8.1.94 143435 username milan 143435 mac 143435 bytes_out 0 143435 bytes_in 0 143435 station_ip 5.120.137.214 143435 port 443 143435 unique_id port 143438 username hashtadani3 143438 mac 143438 bytes_out 0 143438 bytes_in 0 143438 station_ip 37.129.1.245 143438 port 237 143438 unique_id port 143438 remote_ip 10.8.1.94 143440 username hashtadani3 143440 mac 143440 bytes_out 0 143440 bytes_in 0 143440 station_ip 37.129.1.245 143440 port 237 143440 unique_id port 143440 remote_ip 10.8.1.94 143444 username hashtadani3 143444 mac 143444 bytes_out 0 143444 bytes_in 0 143444 station_ip 37.129.1.245 143444 port 237 143444 unique_id port 143444 remote_ip 10.8.1.94 143446 username hashtadani3 143446 mac 143446 bytes_out 0 143446 bytes_in 0 143446 station_ip 37.129.1.245 143446 port 237 143446 unique_id port 143446 remote_ip 10.8.1.94 143452 username hashtadani3 143452 mac 143452 bytes_out 0 143452 bytes_in 0 143452 station_ip 37.129.1.245 143452 port 443 143452 unique_id port 143452 remote_ip 10.8.0.154 143454 username hashtadani3 143454 mac 143454 bytes_out 0 143454 bytes_in 0 143454 station_ip 37.129.1.245 143454 port 461 143454 unique_id port 143454 remote_ip 10.8.0.154 143455 username hashtadani3 143455 mac 143455 bytes_out 0 143455 bytes_in 0 143455 station_ip 37.129.1.245 143455 port 237 143455 unique_id port 143455 remote_ip 10.8.1.94 143457 username hashtadani3 143457 mac 143457 bytes_out 0 143457 bytes_in 0 143457 station_ip 37.129.1.245 143457 port 461 143457 unique_id port 143457 remote_ip 10.8.0.154 143463 username sedighe 143463 mac 143463 bytes_out 85864 143463 bytes_in 83491 143463 station_ip 83.123.58.97 143463 port 464 143463 unique_id port 143463 remote_ip 10.8.0.146 143466 username yaghobi 143466 mac 143466 bytes_out 0 143466 bytes_in 0 143466 station_ip 83.122.248.195 143466 port 462 143466 unique_id port 143466 remote_ip 10.8.0.198 143467 username sedighe 143467 mac 143467 bytes_out 0 143467 bytes_in 0 143467 station_ip 83.123.58.97 143467 port 460 143467 unique_id port 143467 remote_ip 10.8.0.146 143468 username mohammadjavad 143468 mac 143468 bytes_out 1311627 143468 bytes_in 33194929 143468 station_ip 37.129.207.82 143468 port 439 143468 unique_id port 143468 remote_ip 10.8.0.142 143470 username tahmasebi 143470 kill_reason Another user logged on this global unique id 143470 mac 143470 bytes_out 0 143470 bytes_in 0 143470 station_ip 5.126.76.196 143470 port 451 143470 unique_id port 143470 remote_ip 10.8.0.42 143471 username mosi 143471 mac 143471 bytes_out 0 143471 bytes_in 0 143471 station_ip 94.24.83.20 143471 port 460 143471 unique_id port 143471 remote_ip 10.8.0.138 143472 username sekonji3 143472 mac 143472 bytes_out 0 143472 bytes_in 0 143472 station_ip 37.129.243.190 143472 port 439 143472 unique_id port 143472 remote_ip 10.8.0.6 143475 username khalili 143475 mac 143475 bytes_out 0 143475 bytes_in 0 143475 station_ip 5.119.175.202 143475 port 439 143475 unique_id port 143475 remote_ip 10.8.0.86 143476 username sedighe 143476 mac 143476 bytes_out 0 143439 station_ip 37.129.1.245 143439 port 443 143439 unique_id port 143439 remote_ip 10.8.0.154 143443 username hashtadani3 143443 mac 143443 bytes_out 0 143443 bytes_in 0 143443 station_ip 37.129.1.245 143443 port 237 143443 unique_id port 143443 remote_ip 10.8.1.94 143445 username hashtadani3 143445 mac 143445 bytes_out 0 143445 bytes_in 0 143445 station_ip 37.129.1.245 143445 port 461 143445 unique_id port 143445 remote_ip 10.8.0.154 143449 username farhad2 143449 mac 143449 bytes_out 0 143449 bytes_in 0 143449 station_ip 5.120.18.138 143449 port 443 143449 unique_id port 143449 remote_ip 10.8.0.190 143451 username hashtadani3 143451 mac 143451 bytes_out 0 143451 bytes_in 0 143451 station_ip 37.129.1.245 143451 port 237 143451 unique_id port 143451 remote_ip 10.8.1.94 143453 username hashtadani3 143453 mac 143453 bytes_out 0 143453 bytes_in 0 143453 station_ip 37.129.1.245 143453 port 237 143453 unique_id port 143453 remote_ip 10.8.1.94 143461 username hashtadani3 143461 kill_reason Maximum check online fails reached 143461 mac 143461 bytes_out 0 143461 bytes_in 0 143461 station_ip 37.129.1.245 143461 port 238 143461 unique_id port 143462 username hosseine 143462 mac 143462 bytes_out 3625863 143462 bytes_in 12369806 143462 station_ip 83.122.71.100 143462 port 460 143462 unique_id port 143462 remote_ip 10.8.0.238 143465 username farhad2 143465 mac 143465 bytes_out 0 143465 bytes_in 0 143465 station_ip 5.120.18.138 143465 port 443 143465 unique_id port 143465 remote_ip 10.8.0.190 143479 username farhad2 143479 mac 143479 bytes_out 0 143479 bytes_in 0 143479 station_ip 5.120.18.138 143479 port 443 143479 unique_id port 143482 username amin.saeedi 143482 kill_reason Relative expiration date has reached 143482 unique_id port 143482 bytes_out 0 143482 bytes_in 0 143482 station_ip 5.119.116.232 143482 port 15730811 143482 nas_port_type Virtual 143484 username sedighe 143484 mac 143484 bytes_out 87694 143484 bytes_in 517544 143484 station_ip 37.129.158.129 143484 port 464 143484 unique_id port 143484 remote_ip 10.8.0.146 143487 username Mahin 143487 mac 143487 bytes_out 0 143487 bytes_in 0 143487 station_ip 5.120.107.97 143487 port 445 143487 unique_id port 143487 remote_ip 10.8.0.158 143496 username vanila 143496 mac 143496 bytes_out 8569473 143496 bytes_in 30945509 143496 station_ip 83.123.111.24 143496 port 461 143496 unique_id port 143496 remote_ip 10.8.0.178 143497 username hamidsalari 143497 mac 143497 bytes_out 2218463 143497 bytes_in 35569528 143497 station_ip 5.119.145.25 143497 port 463 143497 unique_id port 143497 remote_ip 10.8.0.222 143498 username hamidsalari 143498 mac 143498 bytes_out 0 143498 bytes_in 0 143498 station_ip 5.120.147.84 143498 port 462 143498 unique_id port 143498 remote_ip 10.8.0.222 143500 username moradi 143500 mac 143500 bytes_out 271463 143500 bytes_in 2578828 143500 station_ip 37.129.19.205 143500 port 445 143500 unique_id port 143500 remote_ip 10.8.0.250 143503 username tahmasebi 143503 kill_reason Another user logged on this global unique id 143503 mac 143503 bytes_out 0 143503 bytes_in 0 143503 station_ip 5.126.76.196 143503 port 451 143503 unique_id port 143504 username vanila 143504 mac 143504 bytes_out 117452 143504 bytes_in 122658 143504 station_ip 83.123.111.24 143504 port 461 143504 unique_id port 143504 remote_ip 10.8.0.178 143509 username meysam 143509 kill_reason Another user logged on this global unique id 143509 mac 143509 bytes_out 0 143509 bytes_in 0 143456 bytes_out 0 143456 bytes_in 0 143456 station_ip 37.129.1.245 143456 port 461 143456 unique_id port 143456 remote_ip 10.8.0.154 143458 username hashtadani3 143458 mac 143458 bytes_out 0 143458 bytes_in 0 143458 station_ip 37.129.1.245 143458 port 461 143458 unique_id port 143458 remote_ip 10.8.0.154 143459 username hashtadani3 143459 kill_reason Maximum number of concurrent logins reached 143459 mac 143459 bytes_out 0 143459 bytes_in 0 143459 station_ip 37.129.1.245 143459 port 461 143459 unique_id port 143460 username hashtadani3 143460 kill_reason Maximum check online fails reached 143460 mac 143460 bytes_out 0 143460 bytes_in 0 143460 station_ip 37.129.1.245 143460 port 237 143460 unique_id port 143464 username farhad2 143464 mac 143464 bytes_out 0 143464 bytes_in 0 143464 station_ip 5.120.18.138 143464 port 443 143464 unique_id port 143464 remote_ip 10.8.0.190 143469 username mosi 143469 mac 143469 bytes_out 0 143469 bytes_in 0 143469 station_ip 151.235.76.146 143469 port 452 143469 unique_id port 143473 username sekonji3 143473 mac 143473 bytes_out 0 143473 bytes_in 0 143473 station_ip 37.129.243.190 143473 port 439 143473 unique_id port 143473 remote_ip 10.8.0.6 143474 username khalili 143474 mac 143474 bytes_out 0 143474 bytes_in 0 143474 station_ip 5.119.175.202 143474 port 459 143474 unique_id port 143477 username farhad2 143477 kill_reason Another user logged on this global unique id 143477 mac 143477 bytes_out 0 143477 bytes_in 0 143477 station_ip 5.120.18.138 143477 port 443 143477 unique_id port 143477 remote_ip 10.8.0.190 143481 username yaghobi 143481 mac 143481 bytes_out 486459 143481 bytes_in 3403315 143481 station_ip 83.123.122.193 143481 port 463 143481 unique_id port 143481 remote_ip 10.8.0.198 143483 username yaghobi 143483 mac 143483 bytes_out 0 143483 bytes_in 0 143483 station_ip 83.123.122.193 143483 port 460 143483 unique_id port 143483 remote_ip 10.8.0.198 143485 username yaghobi 143485 mac 143485 bytes_out 90208 143485 bytes_in 736174 143485 station_ip 83.123.122.193 143485 port 465 143485 unique_id port 143485 remote_ip 10.8.0.198 143486 username forozandeh1 143486 mac 143486 bytes_out 0 143486 bytes_in 0 143486 station_ip 83.122.128.37 143486 port 461 143486 unique_id port 143486 remote_ip 10.8.0.130 143488 username meysam 143488 kill_reason Another user logged on this global unique id 143488 mac 143488 bytes_out 0 143488 bytes_in 0 143488 station_ip 188.158.48.17 143488 port 239 143488 unique_id port 143488 remote_ip 10.8.1.34 143489 username malekpoir 143489 kill_reason Another user logged on this global unique id 143489 mac 143489 bytes_out 0 143489 bytes_in 0 143489 station_ip 5.119.18.226 143489 port 459 143489 unique_id port 143489 remote_ip 10.8.0.58 143490 username mahdiyehalizadeh 143490 mac 143490 bytes_out 0 143490 bytes_in 0 143490 station_ip 83.123.70.105 143490 port 443 143490 unique_id port 143490 remote_ip 10.8.0.82 143491 username meysam 143491 mac 143491 bytes_out 0 143491 bytes_in 0 143491 station_ip 188.158.48.17 143491 port 239 143491 unique_id port 143492 username forozandeh1 143492 mac 143492 bytes_out 0 143492 bytes_in 0 143492 station_ip 37.129.149.241 143492 port 445 143492 unique_id port 143492 remote_ip 10.8.0.130 143494 username aminvpn 143494 mac 143494 bytes_out 0 143494 bytes_in 0 143494 station_ip 83.122.59.8 143494 port 462 143494 unique_id port 143494 remote_ip 10.8.0.14 143499 username barzegar 143499 mac 143476 bytes_in 0 143476 station_ip 83.123.58.97 143476 port 463 143476 unique_id port 143476 remote_ip 10.8.0.146 143478 username sedighe 143478 mac 143478 bytes_out 0 143478 bytes_in 0 143478 station_ip 37.129.158.129 143478 port 439 143478 unique_id port 143478 remote_ip 10.8.0.146 143480 username khalili 143480 mac 143480 bytes_out 0 143480 bytes_in 0 143480 station_ip 5.119.175.202 143480 port 460 143480 unique_id port 143480 remote_ip 10.8.0.86 143493 username barzegar 143493 mac 143493 bytes_out 6135 143493 bytes_in 8237 143493 station_ip 5.119.219.19 143493 port 443 143493 unique_id port 143493 remote_ip 10.8.0.234 143495 username aminvpn 143495 mac 143495 bytes_out 0 143495 bytes_in 0 143495 station_ip 83.122.8.182 143495 port 443 143495 unique_id port 143495 remote_ip 10.8.0.14 143501 username barzegar 143501 kill_reason Another user logged on this global unique id 143501 mac 143501 bytes_out 0 143501 bytes_in 0 143501 station_ip 5.119.219.19 143501 port 462 143501 unique_id port 143505 username barzegar 143505 kill_reason Another user logged on this global unique id 143505 mac 143505 bytes_out 0 143505 bytes_in 0 143505 station_ip 5.119.219.19 143505 port 445 143505 unique_id port 143505 remote_ip 10.8.0.234 143506 username aminvpn 143506 mac 143506 bytes_out 165956 143506 bytes_in 297959 143506 station_ip 83.122.59.8 143506 port 443 143506 unique_id port 143506 remote_ip 10.8.0.14 143507 username barzegar 143507 kill_reason Another user logged on this global unique id 143507 mac 143507 bytes_out 0 143507 bytes_in 0 143507 station_ip 5.119.219.19 143507 port 445 143507 unique_id port 143511 username barzegar 143511 kill_reason Another user logged on this global unique id 143511 mac 143511 bytes_out 0 143511 bytes_in 0 143511 station_ip 5.119.219.19 143511 port 445 143511 unique_id port 143512 username barzegar 143512 mac 143512 bytes_out 0 143512 bytes_in 0 143512 station_ip 5.119.219.19 143512 port 445 143512 unique_id port 143515 username barzegar 143515 kill_reason Another user logged on this global unique id 143515 mac 143515 bytes_out 0 143515 bytes_in 0 143515 station_ip 5.119.219.19 143515 port 445 143515 unique_id port 143518 username barzegar 143518 mac 143518 bytes_out 0 143518 bytes_in 0 143518 station_ip 5.119.219.19 143518 port 461 143518 unique_id port 143518 remote_ip 10.8.0.234 143521 username forozandeh1 143521 mac 143521 bytes_out 0 143521 bytes_in 0 143521 station_ip 113.203.92.169 143521 port 461 143521 unique_id port 143521 remote_ip 10.8.0.130 143523 username barzegar 143523 mac 143523 bytes_out 0 143523 bytes_in 0 143523 station_ip 5.119.219.19 143523 port 460 143523 unique_id port 143523 remote_ip 10.8.0.234 143527 username khalili 143527 kill_reason Another user logged on this global unique id 143527 mac 143527 bytes_out 0 143527 bytes_in 0 143527 station_ip 5.119.175.202 143527 port 439 143527 unique_id port 143527 remote_ip 10.8.0.86 143529 username aminvpn 143529 mac 143529 bytes_out 192576 143529 bytes_in 926955 143529 station_ip 83.122.59.8 143529 port 240 143529 unique_id port 143529 remote_ip 10.8.1.6 143530 username aminvpn 143530 mac 143530 bytes_out 0 143530 bytes_in 0 143530 station_ip 83.122.105.190 143530 port 241 143530 unique_id port 143530 remote_ip 10.8.1.6 143533 username aminvpn 143533 mac 143533 bytes_out 0 143533 bytes_in 0 143533 station_ip 83.122.59.8 143533 port 240 143533 unique_id port 143533 remote_ip 10.8.1.6 143534 username aminvpn 143534 mac 143499 bytes_out 0 143499 bytes_in 0 143499 station_ip 5.119.219.19 143499 port 239 143499 unique_id port 143499 remote_ip 10.8.1.174 143502 username barzegar 143502 kill_reason Maximum check online fails reached 143502 mac 143502 bytes_out 0 143502 bytes_in 0 143502 station_ip 5.119.219.19 143502 port 462 143502 unique_id port 143508 username aminvpn 143508 kill_reason Maximum check online fails reached 143508 mac 143508 bytes_out 0 143508 bytes_in 0 143508 station_ip 83.122.8.182 143508 port 443 143508 unique_id port 143510 username meysam 143510 mac 143510 bytes_out 0 143510 bytes_in 0 143510 station_ip 188.158.48.17 143510 port 239 143510 unique_id port 143513 username meysam 143513 mac 143513 bytes_out 0 143513 bytes_in 0 143513 station_ip 188.158.48.17 143513 port 239 143513 unique_id port 143513 remote_ip 10.8.1.34 143516 username barzegar 143516 mac 143516 bytes_out 0 143516 bytes_in 0 143516 station_ip 5.119.219.19 143516 port 445 143516 unique_id port 143524 username vanila 143524 mac 143524 bytes_out 0 143524 bytes_in 0 143524 station_ip 83.123.111.24 143524 port 445 143524 unique_id port 143524 remote_ip 10.8.0.178 143526 username morteza 143526 mac 143526 bytes_out 0 143526 bytes_in 0 143526 station_ip 113.203.122.215 143526 port 445 143526 unique_id port 143526 remote_ip 10.8.0.46 143528 username barzegar 143528 mac 143528 bytes_out 0 143528 bytes_in 0 143528 station_ip 5.119.219.19 143528 port 445 143528 unique_id port 143528 remote_ip 10.8.0.234 143531 username aminvpn 143531 mac 143531 bytes_out 0 143531 bytes_in 0 143531 station_ip 83.122.59.8 143531 port 240 143531 unique_id port 143531 remote_ip 10.8.1.6 143535 username aminvpn 143535 mac 143535 bytes_out 0 143535 bytes_in 0 143535 station_ip 83.122.59.8 143535 port 240 143535 unique_id port 143535 remote_ip 10.8.1.6 143540 username aminvpn 143540 mac 143540 bytes_out 0 143540 bytes_in 0 143540 station_ip 83.122.105.190 143540 port 241 143540 unique_id port 143540 remote_ip 10.8.1.6 143542 username forozandeh1 143542 mac 143542 bytes_out 0 143542 bytes_in 0 143542 station_ip 83.123.189.97 143542 port 460 143542 unique_id port 143542 remote_ip 10.8.0.130 143546 username barzegar 143546 mac 143546 bytes_out 0 143546 bytes_in 0 143546 station_ip 5.119.219.19 143546 port 445 143546 unique_id port 143546 remote_ip 10.8.0.234 143547 username aminvpn 143547 mac 143547 bytes_out 0 143547 bytes_in 0 143547 station_ip 83.122.105.190 143547 port 239 143547 unique_id port 143547 remote_ip 10.8.1.6 143548 username aminvpn 143548 mac 143548 bytes_out 6621 143548 bytes_in 13464 143548 station_ip 83.122.59.8 143548 port 240 143548 unique_id port 143548 remote_ip 10.8.1.6 143549 username aminvpn 143549 mac 143549 bytes_out 0 143549 bytes_in 0 143549 station_ip 83.122.105.190 143549 port 239 143549 unique_id port 143549 remote_ip 10.8.1.6 143551 username aminvpn 143551 mac 143551 bytes_out 5591 143551 bytes_in 12007 143551 station_ip 83.122.59.8 143551 port 240 143551 unique_id port 143551 remote_ip 10.8.1.6 143553 username aminvpn 143553 mac 143553 bytes_out 0 143553 bytes_in 0 143553 station_ip 83.122.105.190 143553 port 239 143553 unique_id port 143553 remote_ip 10.8.1.6 143554 username aminvpn 143554 mac 143554 bytes_out 0 143554 bytes_in 0 143554 station_ip 83.122.59.8 143554 port 240 143554 unique_id port 143554 remote_ip 10.8.1.6 143509 station_ip 188.158.48.17 143509 port 239 143509 unique_id port 143509 remote_ip 10.8.1.34 143514 username barzegar 143514 kill_reason Another user logged on this global unique id 143514 mac 143514 bytes_out 0 143514 bytes_in 0 143514 station_ip 5.119.219.19 143514 port 445 143514 unique_id port 143514 remote_ip 10.8.0.234 143517 username meysam 143517 mac 143517 bytes_out 1502405 143517 bytes_in 28329656 143517 station_ip 188.158.48.17 143517 port 239 143517 unique_id port 143517 remote_ip 10.8.1.34 143519 username vanila 143519 mac 143519 bytes_out 0 143519 bytes_in 0 143519 station_ip 83.123.111.24 143519 port 445 143519 unique_id port 143519 remote_ip 10.8.0.178 143520 username morteza 143520 mac 143520 bytes_out 0 143520 bytes_in 0 143520 station_ip 113.203.122.215 143520 port 239 143520 unique_id port 143520 remote_ip 10.8.1.62 143522 username Mahin 143522 mac 143522 bytes_out 0 143522 bytes_in 0 143522 station_ip 5.120.107.97 143522 port 460 143522 unique_id port 143522 remote_ip 10.8.0.158 143525 username barzegar 143525 mac 143525 bytes_out 0 143525 bytes_in 0 143525 station_ip 5.119.219.19 143525 port 460 143525 unique_id port 143525 remote_ip 10.8.0.234 143532 username aminvpn 143532 mac 143532 bytes_out 0 143532 bytes_in 0 143532 station_ip 83.122.105.190 143532 port 241 143532 unique_id port 143532 remote_ip 10.8.1.6 143536 username aminvpn 143536 mac 143536 bytes_out 0 143536 bytes_in 0 143536 station_ip 83.122.105.190 143536 port 241 143536 unique_id port 143536 remote_ip 10.8.1.6 143541 username aminvpn 143541 mac 143541 bytes_out 0 143541 bytes_in 0 143541 station_ip 83.122.59.8 143541 port 240 143541 unique_id port 143541 remote_ip 10.8.1.6 143543 username aminvpn 143543 mac 143543 bytes_out 0 143543 bytes_in 0 143543 station_ip 83.122.105.190 143543 port 241 143543 unique_id port 143543 remote_ip 10.8.1.6 143545 username aminvpn 143545 mac 143545 bytes_out 29385 143545 bytes_in 43205 143545 station_ip 83.122.59.8 143545 port 240 143545 unique_id port 143545 remote_ip 10.8.1.6 143557 username amir 143557 kill_reason Relative expiration date has reached 143557 mac 143557 bytes_out 0 143557 bytes_in 0 143557 station_ip 46.225.214.110 143557 port 445 143557 unique_id port 143558 username aminvpn 143558 mac 143558 bytes_out 4197 143558 bytes_in 10152 143558 station_ip 83.122.59.8 143558 port 240 143558 unique_id port 143558 remote_ip 10.8.1.6 143559 username forozandeh1 143559 mac 143559 bytes_out 0 143559 bytes_in 0 143559 station_ip 83.123.19.201 143559 port 445 143559 unique_id port 143559 remote_ip 10.8.0.130 143562 username khademi 143562 kill_reason Another user logged on this global unique id 143562 mac 143562 bytes_out 0 143562 bytes_in 0 143562 station_ip 37.129.130.183 143562 port 453 143562 unique_id port 143564 username malekpoir 143564 kill_reason Another user logged on this global unique id 143564 mac 143564 bytes_out 0 143564 bytes_in 0 143564 station_ip 5.119.18.226 143564 port 459 143564 unique_id port 143570 username alipour 143570 mac 143570 bytes_out 0 143570 bytes_in 0 143570 station_ip 83.122.223.127 143570 port 239 143570 unique_id port 143570 remote_ip 10.8.1.50 143571 username zotaher 143571 mac 143571 bytes_out 0 143571 bytes_in 0 143571 station_ip 37.129.127.250 143571 port 454 143571 unique_id port 143571 remote_ip 10.8.0.194 143572 username meysam 143572 mac 143572 bytes_out 0 143572 bytes_in 0 143534 bytes_out 0 143534 bytes_in 0 143534 station_ip 83.122.105.190 143534 port 241 143534 unique_id port 143534 remote_ip 10.8.1.6 143537 username aminvpn 143537 mac 143537 bytes_out 0 143537 bytes_in 0 143537 station_ip 83.122.59.8 143537 port 240 143537 unique_id port 143537 remote_ip 10.8.1.6 143538 username aminvpn 143538 mac 143538 bytes_out 0 143538 bytes_in 0 143538 station_ip 83.122.105.190 143538 port 241 143538 unique_id port 143538 remote_ip 10.8.1.6 143539 username aminvpn 143539 mac 143539 bytes_out 0 143539 bytes_in 0 143539 station_ip 83.122.59.8 143539 port 240 143539 unique_id port 143539 remote_ip 10.8.1.6 143544 username meysam 143544 mac 143544 bytes_out 267435 143544 bytes_in 1352444 143544 station_ip 188.158.48.17 143544 port 239 143544 unique_id port 143544 remote_ip 10.8.1.34 143550 username forozandeh1 143550 mac 143550 bytes_out 0 143550 bytes_in 0 143550 station_ip 83.123.189.97 143550 port 445 143550 unique_id port 143550 remote_ip 10.8.0.130 143552 username barzegar 143552 mac 143552 bytes_out 0 143552 bytes_in 0 143552 station_ip 5.119.219.19 143552 port 464 143552 unique_id port 143552 remote_ip 10.8.0.234 143555 username tahmasebi 143555 mac 143555 bytes_out 0 143555 bytes_in 0 143555 station_ip 5.126.76.196 143555 port 451 143555 unique_id port 143560 username meysam 143560 mac 143560 bytes_out 158716 143560 bytes_in 1681774 143560 station_ip 188.158.48.17 143560 port 239 143560 unique_id port 143560 remote_ip 10.8.1.34 143561 username barzegar 143561 mac 143561 bytes_out 0 143561 bytes_in 0 143561 station_ip 5.119.219.19 143561 port 451 143561 unique_id port 143561 remote_ip 10.8.0.234 143563 username moradi 143563 mac 143563 bytes_out 0 143563 bytes_in 0 143563 station_ip 46.225.213.35 143563 port 460 143563 unique_id port 143563 remote_ip 10.8.0.250 143565 username barzegar 143565 mac 143565 bytes_out 543012 143565 bytes_in 3031786 143565 station_ip 5.119.219.19 143565 port 445 143565 unique_id port 143565 remote_ip 10.8.0.234 143566 username alipour 143566 mac 143566 bytes_out 0 143566 bytes_in 0 143566 station_ip 83.122.223.127 143566 port 454 143566 unique_id port 143568 username godarzi 143568 kill_reason Another user logged on this global unique id 143568 mac 143568 bytes_out 0 143568 bytes_in 0 143568 station_ip 5.202.5.1 143568 port 461 143568 unique_id port 143568 remote_ip 10.8.0.174 143580 username barzegar 143580 mac 143580 bytes_out 0 143580 bytes_in 0 143580 station_ip 5.119.219.19 143580 port 445 143580 unique_id port 143580 remote_ip 10.8.0.234 143582 username alipour 143582 mac 143582 bytes_out 37895 143582 bytes_in 43090 143582 station_ip 83.122.223.127 143582 port 451 143582 unique_id port 143582 remote_ip 10.8.0.102 143583 username barzegar 143583 mac 143583 bytes_out 0 143583 bytes_in 0 143583 station_ip 5.119.219.19 143583 port 240 143583 unique_id port 143583 remote_ip 10.8.1.174 143587 username meysam 143587 mac 143587 bytes_out 0 143587 bytes_in 0 143587 station_ip 188.158.48.17 143587 port 240 143587 unique_id port 143587 remote_ip 10.8.1.34 143589 username mohammadmahdi 143589 mac 143589 bytes_out 3556971 143589 bytes_in 47166612 143589 station_ip 5.120.118.94 143589 port 454 143589 unique_id port 143589 remote_ip 10.8.0.54 143596 username barzegar 143596 mac 143596 bytes_out 0 143596 bytes_in 0 143596 station_ip 5.119.219.19 143596 port 240 143556 username aminvpn 143556 mac 143556 bytes_out 0 143556 bytes_in 0 143556 station_ip 83.122.105.190 143556 port 239 143556 unique_id port 143556 remote_ip 10.8.1.6 143567 username vanila 143567 mac 143567 bytes_out 6172431 143567 bytes_in 897832 143567 station_ip 83.123.111.24 143567 port 445 143567 unique_id port 143567 remote_ip 10.8.0.178 143569 username barzegar 143569 mac 143569 bytes_out 0 143569 bytes_in 0 143569 station_ip 5.119.219.19 143569 port 454 143569 unique_id port 143569 remote_ip 10.8.0.234 143574 username aminvpn 143574 mac 143574 bytes_out 122245 143574 bytes_in 170127 143574 station_ip 83.122.105.190 143574 port 240 143574 unique_id port 143574 remote_ip 10.8.1.6 143577 username meysam 143577 mac 143577 bytes_out 0 143577 bytes_in 0 143577 station_ip 188.158.48.17 143577 port 239 143577 unique_id port 143577 remote_ip 10.8.1.34 143578 username mohammadmahdi 143578 mac 143578 bytes_out 62813 143578 bytes_in 72575 143578 station_ip 5.120.118.94 143578 port 445 143578 unique_id port 143578 remote_ip 10.8.0.54 143586 username mirzaei 143586 mac 143586 bytes_out 3626463 143586 bytes_in 11171546 143586 station_ip 5.119.108.72 143586 port 440 143586 unique_id port 143586 remote_ip 10.8.0.66 143588 username khalili 143588 mac 143588 bytes_out 0 143588 bytes_in 0 143588 station_ip 5.119.175.202 143588 port 439 143588 unique_id port 143591 username forozandeh1 143591 mac 143591 bytes_out 0 143591 bytes_in 0 143591 station_ip 83.123.172.134 143591 port 454 143591 unique_id port 143591 remote_ip 10.8.0.130 143593 username barzegar 143593 mac 143593 bytes_out 0 143593 bytes_in 0 143593 station_ip 5.119.219.19 143593 port 454 143593 unique_id port 143593 remote_ip 10.8.0.234 143597 username moradi 143597 kill_reason Another user logged on this global unique id 143597 mac 143597 bytes_out 0 143597 bytes_in 0 143597 station_ip 5.202.4.134 143597 port 451 143597 unique_id port 143597 remote_ip 10.8.0.250 143599 username barzegar 143599 mac 143599 bytes_out 0 143599 bytes_in 0 143599 station_ip 5.119.219.19 143599 port 240 143599 unique_id port 143599 remote_ip 10.8.1.174 143603 username barzegar 143603 mac 143603 bytes_out 0 143603 bytes_in 0 143603 station_ip 5.119.219.19 143603 port 459 143603 unique_id port 143603 remote_ip 10.8.0.234 143605 username morteza 143605 mac 143605 bytes_out 9739 143605 bytes_in 14243 143605 station_ip 37.129.9.239 143605 port 461 143605 unique_id port 143605 remote_ip 10.8.0.46 143607 username morteza 143607 mac 143607 bytes_out 0 143607 bytes_in 0 143607 station_ip 37.129.9.239 143607 port 460 143607 unique_id port 143607 remote_ip 10.8.0.46 143608 username vanila 143608 mac 143608 bytes_out 5767845 143608 bytes_in 373420 143608 station_ip 83.123.60.80 143608 port 459 143608 unique_id port 143608 remote_ip 10.8.0.178 143615 username alipour 143615 mac 143615 bytes_out 2156841 143615 bytes_in 28517440 143615 station_ip 83.122.223.127 143615 port 453 143615 unique_id port 143615 remote_ip 10.8.0.102 143616 username moradi 143616 mac 143616 bytes_out 0 143616 bytes_in 0 143616 station_ip 5.202.4.134 143616 port 451 143616 unique_id port 143618 username godarzi 143618 mac 143618 bytes_out 726327 143618 bytes_in 9478067 143618 station_ip 5.119.114.234 143618 port 459 143618 unique_id port 143618 remote_ip 10.8.0.174 143619 username hamid.e 143619 unique_id port 143619 terminate_cause User-Request 143572 station_ip 188.158.48.17 143572 port 239 143572 unique_id port 143572 remote_ip 10.8.1.34 143573 username moradi 143573 mac 143573 bytes_out 71369 143573 bytes_in 84245 143573 station_ip 46.225.213.35 143573 port 445 143573 unique_id port 143573 remote_ip 10.8.0.250 143575 username mohammadmahdi 143575 mac 143575 bytes_out 1925788 143575 bytes_in 22377668 143575 station_ip 5.120.118.94 143575 port 451 143575 unique_id port 143575 remote_ip 10.8.0.54 143576 username alipour 143576 mac 143576 bytes_out 27787 143576 bytes_in 151451 143576 station_ip 83.122.223.127 143576 port 460 143576 unique_id port 143576 remote_ip 10.8.0.102 143579 username barzegar 143579 mac 143579 bytes_out 0 143579 bytes_in 0 143579 station_ip 5.119.219.19 143579 port 445 143579 unique_id port 143579 remote_ip 10.8.0.234 143581 username Mahin 143581 mac 143581 bytes_out 815463 143581 bytes_in 5049390 143581 station_ip 5.120.107.97 143581 port 462 143581 unique_id port 143581 remote_ip 10.8.0.158 143584 username godarzi 143584 mac 143584 bytes_out 0 143584 bytes_in 0 143584 station_ip 5.202.5.1 143584 port 461 143584 unique_id port 143585 username malekpoir 143585 mac 143585 bytes_out 0 143585 bytes_in 0 143585 station_ip 5.119.18.226 143585 port 459 143585 unique_id port 143590 username hamidsalari 143590 mac 143590 bytes_out 0 143590 bytes_in 0 143590 station_ip 5.120.87.192 143590 port 463 143590 unique_id port 143590 remote_ip 10.8.0.222 143592 username sekonji3 143592 mac 143592 bytes_out 0 143592 bytes_in 0 143592 station_ip 37.129.243.190 143592 port 451 143592 unique_id port 143592 remote_ip 10.8.0.6 143594 username khademi 143594 mac 143594 bytes_out 0 143594 bytes_in 0 143594 station_ip 37.129.130.183 143594 port 453 143594 unique_id port 143595 username alipour 143595 mac 143595 bytes_out 0 143595 bytes_in 0 143595 station_ip 83.122.223.127 143595 port 445 143595 unique_id port 143595 remote_ip 10.8.0.102 143601 username morteza 143601 mac 143601 bytes_out 29044 143601 bytes_in 140969 143601 station_ip 37.129.9.239 143601 port 459 143601 unique_id port 143601 remote_ip 10.8.0.46 143602 username morteza 143602 mac 143602 bytes_out 5739 143602 bytes_in 11295 143602 station_ip 37.129.9.239 143602 port 460 143602 unique_id port 143602 remote_ip 10.8.0.46 143612 username mosi 143612 mac 143612 bytes_out 6928 143612 bytes_in 12157 143612 station_ip 5.134.153.32 143612 port 459 143612 unique_id port 143612 remote_ip 10.8.0.138 143614 username barzegar 143614 mac 143614 bytes_out 0 143614 bytes_in 0 143614 station_ip 5.119.219.19 143614 port 241 143614 unique_id port 143614 remote_ip 10.8.1.174 143620 username mohammadjavad 143620 mac 143620 bytes_out 29894 143620 bytes_in 14371 143620 station_ip 83.123.66.64 143620 port 462 143620 unique_id port 143620 remote_ip 10.8.0.142 143623 username malekpoir 143623 mac 143623 bytes_out 0 143623 bytes_in 0 143623 station_ip 5.119.18.226 143623 port 452 143623 unique_id port 143623 remote_ip 10.8.0.58 143628 username zotaher 143628 kill_reason Another user logged on this global unique id 143628 mac 143628 bytes_out 0 143628 bytes_in 0 143628 station_ip 37.129.127.250 143628 port 454 143628 unique_id port 143628 remote_ip 10.8.0.194 143631 username barzegar 143631 mac 143631 bytes_out 0 143631 bytes_in 0 143631 station_ip 5.119.219.19 143631 port 240 143631 unique_id port 143631 remote_ip 10.8.1.174 143596 unique_id port 143596 remote_ip 10.8.1.174 143598 username moradi 143598 kill_reason Another user logged on this global unique id 143598 mac 143598 bytes_out 0 143598 bytes_in 0 143598 station_ip 5.202.4.134 143598 port 451 143598 unique_id port 143600 username barzegar 143600 mac 143600 bytes_out 0 143600 bytes_in 0 143600 station_ip 5.119.219.19 143600 port 240 143600 unique_id port 143600 remote_ip 10.8.1.174 143604 username barzegar 143604 mac 143604 bytes_out 0 143604 bytes_in 0 143604 station_ip 5.119.219.19 143604 port 460 143604 unique_id port 143604 remote_ip 10.8.0.234 143606 username morteza 143606 mac 143606 bytes_out 18628 143606 bytes_in 34047 143606 station_ip 37.129.9.239 143606 port 460 143606 unique_id port 143606 remote_ip 10.8.0.46 143609 username barzegar 143609 mac 143609 bytes_out 0 143609 bytes_in 0 143609 station_ip 5.119.219.19 143609 port 240 143609 unique_id port 143609 remote_ip 10.8.1.174 143610 username mosi 143610 mac 143610 bytes_out 2188037 143610 bytes_in 8324371 143610 station_ip 151.235.119.93 143610 port 452 143610 unique_id port 143610 remote_ip 10.8.0.138 143611 username mohammadjavad 143611 mac 143611 bytes_out 312514 143611 bytes_in 3254369 143611 station_ip 83.122.173.148 143611 port 460 143611 unique_id port 143611 remote_ip 10.8.0.142 143613 username mohammadjavad 143613 mac 143613 bytes_out 0 143613 bytes_in 0 143613 station_ip 83.123.66.64 143613 port 452 143613 unique_id port 143613 remote_ip 10.8.0.142 143617 username morteza 143617 mac 143617 bytes_out 57073 143617 bytes_in 166176 143617 station_ip 37.129.9.239 143617 port 461 143617 unique_id port 143617 remote_ip 10.8.0.46 143625 username meysam 143625 mac 143625 bytes_out 1133056 143625 bytes_in 22161809 143625 station_ip 188.158.48.17 143625 port 240 143625 unique_id port 143625 remote_ip 10.8.1.34 143626 username barzegar 143626 mac 143626 bytes_out 0 143626 bytes_in 0 143626 station_ip 5.119.219.19 143626 port 240 143626 unique_id port 143626 remote_ip 10.8.1.174 143627 username forozandeh1 143627 mac 143627 bytes_out 0 143627 bytes_in 0 143627 station_ip 83.122.17.23 143627 port 439 143627 unique_id port 143627 remote_ip 10.8.0.130 143632 username barzegar 143632 mac 143632 bytes_out 0 143632 bytes_in 0 143632 station_ip 5.119.219.19 143632 port 240 143632 unique_id port 143632 remote_ip 10.8.1.174 143636 username barzegar 143636 mac 143636 bytes_out 0 143636 bytes_in 0 143636 station_ip 5.119.219.19 143636 port 241 143636 unique_id port 143636 remote_ip 10.8.1.174 143638 username hamidsalari 143638 mac 143638 bytes_out 0 143638 bytes_in 0 143638 station_ip 5.120.87.192 143638 port 445 143638 unique_id port 143638 remote_ip 10.8.0.222 143641 username mohammadmahdi 143641 mac 143641 bytes_out 0 143641 bytes_in 0 143641 station_ip 5.120.118.94 143641 port 452 143641 unique_id port 143641 remote_ip 10.8.0.54 143642 username mirzaei 143642 mac 143642 bytes_out 211007 143642 bytes_in 464752 143642 station_ip 5.119.108.72 143642 port 440 143642 unique_id port 143642 remote_ip 10.8.0.66 143646 username godarzi 143646 mac 143646 bytes_out 0 143646 bytes_in 0 143646 station_ip 5.119.114.234 143646 port 440 143646 unique_id port 143646 remote_ip 10.8.0.174 143647 username barzegar 143647 mac 143647 bytes_out 0 143647 bytes_in 0 143647 station_ip 5.119.219.19 143647 port 242 143647 unique_id port 143647 remote_ip 10.8.1.174 143619 bytes_out 28213063 143619 bytes_in 272488612 143619 station_ip 37.27.10.131 143619 port 15730812 143619 nas_port_type Virtual 143619 remote_ip 5.5.5.70 143621 username morteza 143621 mac 143621 bytes_out 0 143621 bytes_in 0 143621 station_ip 37.129.9.239 143621 port 241 143621 unique_id port 143621 remote_ip 10.8.1.62 143622 username malekpoir 143622 mac 143622 bytes_out 18496123 143622 bytes_in 8371800 143622 station_ip 5.119.18.226 143622 port 439 143622 unique_id port 143622 remote_ip 10.8.0.58 143624 username vanila 143624 mac 143624 bytes_out 0 143624 bytes_in 0 143624 station_ip 83.123.60.80 143624 port 451 143624 unique_id port 143624 remote_ip 10.8.0.178 143629 username mohammadjavad 143629 mac 143629 bytes_out 0 143629 bytes_in 0 143629 station_ip 37.129.118.164 143629 port 451 143629 unique_id port 143629 remote_ip 10.8.0.142 143630 username barzegar 143630 mac 143630 bytes_out 0 143630 bytes_in 0 143630 station_ip 5.119.219.19 143630 port 240 143630 unique_id port 143630 remote_ip 10.8.1.174 143633 username zotaher 143633 kill_reason Another user logged on this global unique id 143633 mac 143633 bytes_out 0 143633 bytes_in 0 143633 station_ip 37.129.127.250 143633 port 454 143633 unique_id port 143634 username amirabbas 143634 unique_id port 143634 terminate_cause User-Request 143634 bytes_out 9238687 143634 bytes_in 237627966 143634 station_ip 188.245.90.225 143634 port 15730813 143634 nas_port_type Virtual 143634 remote_ip 5.5.5.76 143635 username mansour 143635 mac 143635 bytes_out 0 143635 bytes_in 0 143635 station_ip 5.202.132.13 143635 port 439 143635 unique_id port 143635 remote_ip 10.8.0.30 143640 username malekpoir 143640 mac 143640 bytes_out 42229 143640 bytes_in 61533 143640 station_ip 5.119.18.226 143640 port 459 143640 unique_id port 143640 remote_ip 10.8.0.58 143643 username bcboard 143643 unique_id port 143643 terminate_cause Lost-Carrier 143643 bytes_out 469430 143643 bytes_in 3050325 143643 station_ip 83.123.200.185 143643 port 15730814 143643 nas_port_type Virtual 143643 remote_ip 5.5.5.82 143654 username meysam 143654 mac 143654 bytes_out 2158625 143654 bytes_in 37350047 143654 station_ip 188.158.48.17 143654 port 240 143654 unique_id port 143654 remote_ip 10.8.1.34 143656 username saeed9658 143656 mac 143656 bytes_out 623186 143656 bytes_in 7588913 143656 station_ip 5.119.30.177 143656 port 240 143656 unique_id port 143656 remote_ip 10.8.1.210 143659 username amirabbas 143659 unique_id port 143659 terminate_cause User-Request 143659 bytes_out 2249948 143659 bytes_in 55825330 143659 station_ip 188.245.90.225 143659 port 15730815 143659 nas_port_type Virtual 143659 remote_ip 5.5.5.83 143666 username mohammadmahdi 143666 mac 143666 bytes_out 0 143666 bytes_in 0 143666 station_ip 5.120.118.94 143666 port 452 143666 unique_id port 143666 remote_ip 10.8.0.54 143669 username moradi 143669 mac 143669 bytes_out 93090 143669 bytes_in 504538 143669 station_ip 5.202.4.134 143669 port 461 143669 unique_id port 143669 remote_ip 10.8.0.250 143671 username alipour 143671 mac 143671 bytes_out 0 143671 bytes_in 0 143671 station_ip 83.122.223.127 143671 port 453 143671 unique_id port 143671 remote_ip 10.8.0.102 143672 username zotaher 143672 kill_reason Another user logged on this global unique id 143672 mac 143672 bytes_out 0 143672 bytes_in 0 143672 station_ip 37.129.127.250 143672 port 454 143672 unique_id port 143673 username moradi 143673 mac 143673 bytes_out 0 143673 bytes_in 0 143673 station_ip 5.202.4.134 143673 port 452 143637 username moradi 143637 mac 143637 bytes_out 0 143637 bytes_in 0 143637 station_ip 37.129.63.9 143637 port 462 143637 unique_id port 143637 remote_ip 10.8.0.250 143639 username godarzi 143639 mac 143639 bytes_out 0 143639 bytes_in 0 143639 station_ip 5.119.114.234 143639 port 461 143639 unique_id port 143639 remote_ip 10.8.0.174 143644 username alipour 143644 mac 143644 bytes_out 0 143644 bytes_in 0 143644 station_ip 83.122.223.127 143644 port 453 143644 unique_id port 143644 remote_ip 10.8.0.102 143645 username kordestani 143645 mac 143645 bytes_out 0 143645 bytes_in 0 143645 station_ip 151.235.80.140 143645 port 451 143645 unique_id port 143645 remote_ip 10.8.0.134 143648 username meysam 143648 mac 143648 bytes_out 1630091 143648 bytes_in 32230510 143648 station_ip 188.158.48.17 143648 port 240 143648 unique_id port 143648 remote_ip 10.8.1.34 143651 username barzegar 143651 mac 143651 bytes_out 0 143651 bytes_in 0 143651 station_ip 5.119.219.19 143651 port 242 143651 unique_id port 143651 remote_ip 10.8.1.174 143652 username kordestani 143652 mac 143652 bytes_out 0 143652 bytes_in 0 143652 station_ip 151.235.80.140 143652 port 451 143652 unique_id port 143652 remote_ip 10.8.0.134 143655 username barzegar 143655 mac 143655 bytes_out 0 143655 bytes_in 0 143655 station_ip 5.119.219.19 143655 port 242 143655 unique_id port 143655 remote_ip 10.8.1.174 143657 username zotaher 143657 kill_reason Another user logged on this global unique id 143657 mac 143657 bytes_out 0 143657 bytes_in 0 143657 station_ip 37.129.127.250 143657 port 454 143657 unique_id port 143658 username aminvpn 143658 mac 143658 bytes_out 0 143658 bytes_in 0 143658 station_ip 83.122.105.190 143658 port 239 143658 unique_id port 143658 remote_ip 10.8.1.6 143660 username barzegar 143660 mac 143660 bytes_out 4869 143660 bytes_in 7702 143660 station_ip 5.119.219.19 143660 port 239 143660 unique_id port 143660 remote_ip 10.8.1.174 143661 username mosi 143661 mac 143661 bytes_out 0 143661 bytes_in 0 143661 station_ip 5.134.153.32 143661 port 460 143661 unique_id port 143661 remote_ip 10.8.0.138 143663 username khademi 143663 mac 143663 bytes_out 0 143663 bytes_in 0 143663 station_ip 83.123.64.23 143663 port 460 143663 unique_id port 143663 remote_ip 10.8.0.10 143665 username mosi 143665 mac 143665 bytes_out 0 143665 bytes_in 0 143665 station_ip 5.134.153.32 143665 port 460 143665 unique_id port 143665 remote_ip 10.8.0.138 143670 username godarzi 143670 mac 143670 bytes_out 1074498 143670 bytes_in 14313889 143670 station_ip 5.119.114.234 143670 port 451 143670 unique_id port 143670 remote_ip 10.8.0.174 143677 username mohammadmahdi 143677 mac 143677 bytes_out 0 143677 bytes_in 0 143677 station_ip 5.120.118.94 143677 port 453 143677 unique_id port 143677 remote_ip 10.8.0.54 143679 username zotaher 143679 kill_reason Another user logged on this global unique id 143679 mac 143679 bytes_out 0 143679 bytes_in 0 143679 station_ip 37.129.127.250 143679 port 454 143679 unique_id port 143686 username aminvpn 143686 unique_id port 143686 terminate_cause Lost-Carrier 143686 bytes_out 1280425 143686 bytes_in 8056362 143686 station_ip 5.233.49.34 143686 port 15730816 143686 nas_port_type Virtual 143686 remote_ip 5.5.5.84 143690 username barzegar 143690 mac 143690 bytes_out 0 143690 bytes_in 0 143690 station_ip 5.119.219.19 143690 port 240 143690 unique_id port 143690 remote_ip 10.8.1.174 143649 username moradi 143649 mac 143649 bytes_out 0 143649 bytes_in 0 143649 station_ip 37.129.39.53 143649 port 453 143649 unique_id port 143649 remote_ip 10.8.0.250 143650 username zotaher 143650 kill_reason Another user logged on this global unique id 143650 mac 143650 bytes_out 0 143650 bytes_in 0 143650 station_ip 37.129.127.250 143650 port 454 143650 unique_id port 143653 username barzegar 143653 mac 143653 bytes_out 0 143653 bytes_in 0 143653 station_ip 5.119.219.19 143653 port 242 143653 unique_id port 143653 remote_ip 10.8.1.174 143662 username khalili 143662 kill_reason Another user logged on this global unique id 143662 mac 143662 bytes_out 0 143662 bytes_in 0 143662 station_ip 5.119.175.202 143662 port 440 143662 unique_id port 143662 remote_ip 10.8.0.86 143664 username mosi 143664 mac 143664 bytes_out 9657 143664 bytes_in 14982 143664 station_ip 5.134.153.32 143664 port 462 143664 unique_id port 143664 remote_ip 10.8.0.138 143667 username barzegar 143667 mac 143667 bytes_out 0 143667 bytes_in 0 143667 station_ip 5.119.219.19 143667 port 240 143667 unique_id port 143667 remote_ip 10.8.1.174 143668 username aminvpn 143668 mac 143668 bytes_out 0 143668 bytes_in 0 143668 station_ip 83.122.105.190 143668 port 239 143668 unique_id port 143668 remote_ip 10.8.1.6 143674 username barzegar 143674 mac 143674 bytes_out 0 143674 bytes_in 0 143674 station_ip 5.119.219.19 143674 port 453 143674 unique_id port 143674 remote_ip 10.8.0.234 143676 username saeed9658 143676 mac 143676 bytes_out 0 143676 bytes_in 0 143676 station_ip 5.119.30.177 143676 port 459 143676 unique_id port 143676 remote_ip 10.8.0.62 143678 username barzegar 143678 mac 143678 bytes_out 0 143678 bytes_in 0 143678 station_ip 5.119.219.19 143678 port 452 143678 unique_id port 143678 remote_ip 10.8.0.234 143681 username kalantary 143681 mac 143681 bytes_out 0 143681 bytes_in 0 143681 station_ip 83.122.61.209 143681 port 459 143681 unique_id port 143681 remote_ip 10.8.0.98 143684 username barzegar 143684 mac 143684 bytes_out 0 143684 bytes_in 0 143684 station_ip 5.119.219.19 143684 port 239 143684 unique_id port 143684 remote_ip 10.8.1.174 143687 username zotaher 143687 mac 143687 bytes_out 0 143687 bytes_in 0 143687 station_ip 37.129.127.250 143687 port 454 143687 unique_id port 143688 username barzegar 143688 mac 143688 bytes_out 0 143688 bytes_in 0 143688 station_ip 5.119.219.19 143688 port 239 143688 unique_id port 143688 remote_ip 10.8.1.174 143689 username saeed9658 143689 mac 143689 bytes_out 0 143689 bytes_in 0 143689 station_ip 5.119.30.177 143689 port 453 143689 unique_id port 143689 remote_ip 10.8.0.62 143694 username hosseine 143694 kill_reason Another user logged on this global unique id 143694 mac 143694 bytes_out 0 143694 bytes_in 0 143694 station_ip 83.122.86.108 143694 port 460 143694 unique_id port 143697 username mohammadjavad 143697 mac 143697 bytes_out 0 143697 bytes_in 0 143697 station_ip 37.129.160.134 143697 port 452 143697 unique_id port 143697 remote_ip 10.8.0.142 143698 username kalantary 143698 kill_reason Another user logged on this global unique id 143698 mac 143698 bytes_out 0 143698 bytes_in 0 143698 station_ip 83.122.61.209 143698 port 459 143698 unique_id port 143702 username barzegar 143702 mac 143702 bytes_out 3501 143702 bytes_in 5585 143702 station_ip 5.119.219.19 143702 port 461 143702 unique_id port 143702 remote_ip 10.8.0.234 143713 username amirabbas 143673 unique_id port 143673 remote_ip 10.8.0.250 143675 username mohammadmahdi 143675 mac 143675 bytes_out 390672 143675 bytes_in 3758542 143675 station_ip 5.120.118.94 143675 port 242 143675 unique_id port 143675 remote_ip 10.8.1.158 143680 username meysam 143680 mac 143680 bytes_out 1204468 143680 bytes_in 24328751 143680 station_ip 188.158.48.17 143680 port 239 143680 unique_id port 143680 remote_ip 10.8.1.34 143682 username zotaher 143682 kill_reason Another user logged on this global unique id 143682 mac 143682 bytes_out 0 143682 bytes_in 0 143682 station_ip 37.129.127.250 143682 port 454 143682 unique_id port 143683 username forozandeh1 143683 mac 143683 bytes_out 426784 143683 bytes_in 2625104 143683 station_ip 37.129.250.103 143683 port 460 143683 unique_id port 143683 remote_ip 10.8.0.130 143685 username godarzi 143685 mac 143685 bytes_out 348727 143685 bytes_in 3663587 143685 station_ip 5.119.114.234 143685 port 452 143685 unique_id port 143685 remote_ip 10.8.0.174 143692 username kalantary 143692 kill_reason Another user logged on this global unique id 143692 mac 143692 bytes_out 0 143692 bytes_in 0 143692 station_ip 83.122.61.209 143692 port 459 143692 unique_id port 143692 remote_ip 10.8.0.98 143695 username hosseine 143695 kill_reason Another user logged on this global unique id 143695 mac 143695 bytes_out 0 143695 bytes_in 0 143695 station_ip 83.122.86.108 143695 port 460 143695 unique_id port 143699 username hosseine 143699 kill_reason Another user logged on this global unique id 143699 mac 143699 bytes_out 0 143699 bytes_in 0 143699 station_ip 83.122.86.108 143699 port 460 143699 unique_id port 143704 username kalantary 143704 kill_reason Another user logged on this global unique id 143704 mac 143704 bytes_out 0 143704 bytes_in 0 143704 station_ip 83.122.61.209 143704 port 459 143704 unique_id port 143705 username kalantary 143705 kill_reason Another user logged on this global unique id 143705 mac 143705 bytes_out 0 143705 bytes_in 0 143705 station_ip 83.122.61.209 143705 port 459 143705 unique_id port 143706 username barzegar 143706 mac 143706 bytes_out 0 143706 bytes_in 0 143706 station_ip 5.119.219.19 143706 port 239 143706 unique_id port 143706 remote_ip 10.8.1.174 143710 username godarzi 143710 mac 143710 bytes_out 0 143710 bytes_in 0 143710 station_ip 5.119.114.234 143710 port 454 143710 unique_id port 143710 remote_ip 10.8.0.174 143712 username morteza 143712 mac 143712 bytes_out 22861 143712 bytes_in 94118 143712 station_ip 37.129.10.95 143712 port 239 143712 unique_id port 143712 remote_ip 10.8.1.62 143720 username malekpoir 143720 mac 143720 bytes_out 0 143720 bytes_in 0 143720 station_ip 5.119.18.226 143720 port 439 143720 unique_id port 143720 remote_ip 10.8.0.58 143723 username barzegar 143723 kill_reason Maximum check online fails reached 143723 mac 143723 bytes_out 0 143723 bytes_in 0 143723 station_ip 5.119.219.19 143723 port 453 143723 unique_id port 143728 username aminvpn 143728 mac 143728 bytes_out 1966062 143728 bytes_in 18784140 143728 station_ip 83.122.9.208 143728 port 242 143728 unique_id port 143728 remote_ip 10.8.1.6 143733 username barzegar 143733 mac 143733 bytes_out 0 143733 bytes_in 0 143733 station_ip 5.119.219.19 143733 port 461 143733 unique_id port 143736 username kalantary 143736 mac 143736 bytes_out 627725 143736 bytes_in 2705734 143736 station_ip 83.122.100.49 143736 port 452 143736 unique_id port 143736 remote_ip 10.8.0.98 143738 username forozandeh1 143738 mac 143738 bytes_out 0 143738 bytes_in 0 143691 username barzegar 143691 mac 143691 bytes_out 0 143691 bytes_in 0 143691 station_ip 5.119.219.19 143691 port 461 143691 unique_id port 143691 remote_ip 10.8.0.234 143693 username moradi 143693 mac 143693 bytes_out 52394 143693 bytes_in 176807 143693 station_ip 46.225.213.35 143693 port 460 143693 unique_id port 143693 remote_ip 10.8.0.250 143696 username hosseine 143696 kill_reason Another user logged on this global unique id 143696 mac 143696 bytes_out 0 143696 bytes_in 0 143696 station_ip 83.122.86.108 143696 port 460 143696 unique_id port 143700 username barzegar 143700 mac 143700 bytes_out 3280 143700 bytes_in 5397 143700 station_ip 5.119.219.19 143700 port 461 143700 unique_id port 143700 remote_ip 10.8.0.234 143701 username moradi 143701 kill_reason Maximum check online fails reached 143701 mac 143701 bytes_out 0 143701 bytes_in 0 143701 station_ip 46.225.213.35 143701 port 240 143701 unique_id port 143703 username meysam 143703 mac 143703 bytes_out 0 143703 bytes_in 0 143703 station_ip 188.158.48.17 143703 port 239 143703 unique_id port 143703 remote_ip 10.8.1.34 143707 username saeed9658 143707 kill_reason Another user logged on this global unique id 143707 mac 143707 bytes_out 0 143707 bytes_in 0 143707 station_ip 5.119.30.177 143707 port 453 143707 unique_id port 143707 remote_ip 10.8.0.62 143708 username kalantary 143708 mac 143708 bytes_out 0 143708 bytes_in 0 143708 station_ip 83.122.61.209 143708 port 459 143708 unique_id port 143709 username hosseine 143709 mac 143709 bytes_out 0 143709 bytes_in 0 143709 station_ip 83.122.86.108 143709 port 460 143709 unique_id port 143709 remote_ip 10.8.0.238 143711 username barzegar 143711 mac 143711 bytes_out 0 143711 bytes_in 0 143711 station_ip 5.119.219.19 143711 port 242 143711 unique_id port 143711 remote_ip 10.8.1.174 143714 username saeed9658 143714 mac 143714 bytes_out 0 143714 bytes_in 0 143714 station_ip 5.119.30.177 143714 port 453 143714 unique_id port 143715 username barzegar 143715 mac 143715 bytes_out 0 143715 bytes_in 0 143715 station_ip 5.119.219.19 143715 port 239 143715 unique_id port 143715 remote_ip 10.8.1.174 143718 username mahdiyehalizadeh 143718 mac 143718 bytes_out 0 143718 bytes_in 0 143718 station_ip 113.203.54.88 143718 port 459 143718 unique_id port 143718 remote_ip 10.8.0.82 143719 username aminvpn 143719 unique_id port 143719 terminate_cause Lost-Carrier 143719 bytes_out 1011197 143719 bytes_in 3460471 143719 station_ip 5.233.49.34 143719 port 15730819 143719 nas_port_type Virtual 143719 remote_ip 5.5.5.96 143724 username vanila 143724 mac 143724 bytes_out 5855435 143724 bytes_in 682366 143724 station_ip 83.123.90.80 143724 port 459 143724 unique_id port 143724 remote_ip 10.8.0.178 143727 username vanila 143727 mac 143727 bytes_out 4262381 143727 bytes_in 323857 143727 station_ip 83.123.90.80 143727 port 463 143727 unique_id port 143727 remote_ip 10.8.0.178 143730 username barzegar 143730 kill_reason Another user logged on this global unique id 143730 mac 143730 bytes_out 0 143730 bytes_in 0 143730 station_ip 5.119.219.19 143730 port 461 143730 unique_id port 143730 remote_ip 10.8.0.234 143731 username mostafa_es78 143731 unique_id port 143731 terminate_cause User-Request 143731 bytes_out 194343 143731 bytes_in 1485014 143731 station_ip 5.120.169.176 143731 port 15730820 143731 nas_port_type Virtual 143731 remote_ip 5.5.5.99 143732 username aminvpn 143732 mac 143732 bytes_out 0 143732 bytes_in 0 143732 station_ip 83.122.9.208 143713 unique_id port 143713 terminate_cause User-Request 143713 bytes_out 818151 143713 bytes_in 8458641 143713 station_ip 188.245.90.225 143713 port 15730817 143713 nas_port_type Virtual 143713 remote_ip 5.5.5.85 143716 username mohammadjavad 143716 mac 143716 bytes_out 15325 143716 bytes_in 21576 143716 station_ip 37.129.126.181 143716 port 461 143716 unique_id port 143716 remote_ip 10.8.0.142 143717 username godarzi 143717 mac 143717 bytes_out 0 143717 bytes_in 0 143717 station_ip 5.119.114.234 143717 port 453 143717 unique_id port 143717 remote_ip 10.8.0.174 143721 username godarzi 143721 mac 143721 bytes_out 0 143721 bytes_in 0 143721 station_ip 5.119.114.234 143721 port 453 143721 unique_id port 143721 remote_ip 10.8.0.174 143722 username barzegar 143722 mac 143722 bytes_out 1462052 143722 bytes_in 13229333 143722 station_ip 5.119.219.19 143722 port 239 143722 unique_id port 143722 remote_ip 10.8.1.174 143725 username forozandeh1 143725 mac 143725 bytes_out 0 143725 bytes_in 0 143725 station_ip 83.122.21.15 143725 port 454 143725 unique_id port 143725 remote_ip 10.8.0.130 143726 username moradi 143726 mac 143726 bytes_out 100415 143726 bytes_in 125510 143726 station_ip 46.225.213.35 143726 port 452 143726 unique_id port 143726 remote_ip 10.8.0.250 143729 username meysam 143729 mac 143729 bytes_out 0 143729 bytes_in 0 143729 station_ip 188.158.48.17 143729 port 239 143729 unique_id port 143729 remote_ip 10.8.1.34 143734 username meysam 143734 mac 143734 bytes_out 0 143734 bytes_in 0 143734 station_ip 188.158.48.17 143734 port 239 143734 unique_id port 143734 remote_ip 10.8.1.34 143735 username barzegar 143735 mac 143735 bytes_out 0 143735 bytes_in 0 143735 station_ip 5.119.219.19 143735 port 459 143735 unique_id port 143735 remote_ip 10.8.0.234 143737 username saeed9658 143737 mac 143737 bytes_out 92995 143737 bytes_in 955404 143737 station_ip 5.119.30.177 143737 port 459 143737 unique_id port 143737 remote_ip 10.8.0.62 143744 username vanila 143744 mac 143744 bytes_out 7204303 143744 bytes_in 7464852 143744 station_ip 83.123.90.80 143744 port 452 143744 unique_id port 143744 remote_ip 10.8.0.178 143746 username aminvpn 143746 mac 143746 bytes_out 58556 143746 bytes_in 100300 143746 station_ip 83.122.9.208 143746 port 459 143746 unique_id port 143746 remote_ip 10.8.0.14 143753 username hasanahmadi 143753 mac 143753 bytes_out 2040291 143753 bytes_in 9273077 143753 station_ip 83.122.203.226 143753 port 452 143753 unique_id port 143753 remote_ip 10.8.0.126 143754 username godarzi 143754 mac 143754 bytes_out 96141 143754 bytes_in 250902 143754 station_ip 5.119.114.234 143754 port 454 143754 unique_id port 143754 remote_ip 10.8.0.174 143757 username mosi 143757 kill_reason Another user logged on this global unique id 143757 mac 143757 bytes_out 0 143757 bytes_in 0 143757 station_ip 151.235.107.13 143757 port 462 143757 unique_id port 143757 remote_ip 10.8.0.138 143759 username barzegar 143759 mac 143759 bytes_out 0 143759 bytes_in 0 143759 station_ip 5.119.219.19 143759 port 454 143759 unique_id port 143759 remote_ip 10.8.0.234 143763 username aminvpn 143763 mac 143763 bytes_out 0 143763 bytes_in 0 143763 station_ip 83.122.203.201 143763 port 454 143763 unique_id port 143763 remote_ip 10.8.0.14 143768 username mosi 143768 mac 143768 bytes_out 0 143768 bytes_in 0 143768 station_ip 151.235.107.13 143768 port 462 143768 unique_id port 143770 username tahmasebi 143732 port 452 143732 unique_id port 143732 remote_ip 10.8.0.14 143739 username hosseine 143739 kill_reason Another user logged on this global unique id 143739 mac 143739 bytes_out 0 143739 bytes_in 0 143739 station_ip 83.122.86.108 143739 port 460 143739 unique_id port 143739 remote_ip 10.8.0.238 143740 username barzegar 143740 mac 143740 bytes_out 0 143740 bytes_in 0 143740 station_ip 5.119.219.19 143740 port 452 143740 unique_id port 143740 remote_ip 10.8.0.234 143741 username aminvpn 143741 mac 143741 bytes_out 137645 143741 bytes_in 311591 143741 station_ip 83.122.9.208 143741 port 461 143741 unique_id port 143741 remote_ip 10.8.0.14 143742 username barzegar 143742 mac 143742 bytes_out 0 143742 bytes_in 0 143742 station_ip 5.119.219.19 143742 port 239 143742 unique_id port 143742 remote_ip 10.8.1.174 143743 username godarzi 143743 mac 143743 bytes_out 13537505 143743 bytes_in 4218172 143743 station_ip 5.119.114.234 143743 port 462 143743 unique_id port 143743 remote_ip 10.8.0.174 143747 username godarzi 143747 mac 143747 bytes_out 48918 143747 bytes_in 215592 143747 station_ip 5.119.114.234 143747 port 454 143747 unique_id port 143747 remote_ip 10.8.0.174 143749 username meysam 143749 mac 143749 bytes_out 0 143749 bytes_in 0 143749 station_ip 188.158.48.17 143749 port 239 143749 unique_id port 143749 remote_ip 10.8.1.34 143751 username kalantary 143751 mac 143751 bytes_out 57824 143751 bytes_in 92901 143751 station_ip 83.122.1.245 143751 port 459 143751 unique_id port 143751 remote_ip 10.8.0.98 143755 username aminvpn 143755 unique_id port 143755 terminate_cause Lost-Carrier 143755 bytes_out 766806 143755 bytes_in 8844842 143755 station_ip 5.233.49.34 143755 port 15730823 143755 nas_port_type Virtual 143755 remote_ip 5.5.5.115 143760 username tahmasebi 143760 kill_reason Another user logged on this global unique id 143760 mac 143760 bytes_out 0 143760 bytes_in 0 143760 station_ip 5.126.76.196 143760 port 461 143760 unique_id port 143761 username hasanahmadi 143761 mac 143761 bytes_out 0 143761 bytes_in 0 143761 station_ip 113.203.105.195 143761 port 459 143761 unique_id port 143761 remote_ip 10.8.0.126 143764 username aminvpn 143764 kill_reason Maximum check online fails reached 143764 mac 143764 bytes_out 0 143764 bytes_in 0 143764 station_ip 83.122.203.201 143764 port 239 143764 unique_id port 143767 username godarzi 143767 mac 143767 bytes_out 0 143767 bytes_in 0 143767 station_ip 5.119.114.234 143767 port 452 143767 unique_id port 143767 remote_ip 10.8.0.174 143776 username forozandeh1 143776 mac 143776 bytes_out 880224 143776 bytes_in 9239510 143776 station_ip 113.203.19.162 143776 port 454 143776 unique_id port 143776 remote_ip 10.8.0.130 143779 username mosi 143779 mac 143779 bytes_out 1521317 143779 bytes_in 21106438 143779 station_ip 151.235.107.13 143779 port 243 143779 unique_id port 143779 remote_ip 10.8.1.86 143785 username mosi 143785 mac 143785 bytes_out 0 143785 bytes_in 0 143785 station_ip 151.235.107.13 143785 port 439 143785 unique_id port 143785 remote_ip 10.8.0.138 143786 username saeed9658 143786 mac 143786 bytes_out 0 143786 bytes_in 0 143786 station_ip 5.119.30.177 143786 port 242 143786 unique_id port 143786 remote_ip 10.8.1.210 143789 username mosi 143789 mac 143789 bytes_out 0 143789 bytes_in 0 143789 station_ip 151.235.107.13 143789 port 439 143789 unique_id port 143789 remote_ip 10.8.0.138 143793 username vanila 143793 mac 143793 bytes_out 0 143738 station_ip 37.129.144.26 143738 port 454 143738 unique_id port 143738 remote_ip 10.8.0.130 143745 username kordestani 143745 mac 143745 bytes_out 778248 143745 bytes_in 11144233 143745 station_ip 83.122.85.214 143745 port 454 143745 unique_id port 143745 remote_ip 10.8.0.134 143748 username tahmasebi 143748 kill_reason Another user logged on this global unique id 143748 mac 143748 bytes_out 0 143748 bytes_in 0 143748 station_ip 5.126.76.196 143748 port 461 143748 unique_id port 143748 remote_ip 10.8.0.42 143750 username barzegar 143750 mac 143750 bytes_out 0 143750 bytes_in 0 143750 station_ip 5.119.219.19 143750 port 459 143750 unique_id port 143750 remote_ip 10.8.0.234 143752 username aminvpn 143752 unique_id port 143752 terminate_cause Lost-Carrier 143752 bytes_out 2629833 143752 bytes_in 9630968 143752 station_ip 5.233.49.34 143752 port 15730821 143752 nas_port_type Virtual 143752 remote_ip 5.5.5.113 143756 username tahmasebi 143756 kill_reason Another user logged on this global unique id 143756 mac 143756 bytes_out 0 143756 bytes_in 0 143756 station_ip 5.126.76.196 143756 port 461 143756 unique_id port 143758 username barzegar 143758 mac 143758 bytes_out 0 143758 bytes_in 0 143758 station_ip 5.119.219.19 143758 port 454 143758 unique_id port 143758 remote_ip 10.8.0.234 143762 username aminvpn 143762 unique_id port 143762 terminate_cause Lost-Carrier 143762 bytes_out 2375835 143762 bytes_in 6186457 143762 station_ip 5.233.49.34 143762 port 15730824 143762 nas_port_type Virtual 143762 remote_ip 5.5.5.255 143765 username tahmasebi 143765 kill_reason Another user logged on this global unique id 143765 mac 143765 bytes_out 0 143765 bytes_in 0 143765 station_ip 5.126.76.196 143765 port 461 143765 unique_id port 143766 username barzegar 143766 mac 143766 bytes_out 0 143766 bytes_in 0 143766 station_ip 5.119.219.19 143766 port 454 143766 unique_id port 143766 remote_ip 10.8.0.234 143769 username barzegar 143769 mac 143769 bytes_out 0 143769 bytes_in 0 143769 station_ip 5.119.219.19 143769 port 452 143769 unique_id port 143769 remote_ip 10.8.0.234 143772 username malekpoir 143772 mac 143772 bytes_out 0 143772 bytes_in 0 143772 station_ip 5.119.18.226 143772 port 439 143772 unique_id port 143772 remote_ip 10.8.0.58 143773 username mosi 143773 mac 143773 bytes_out 0 143773 bytes_in 0 143773 station_ip 94.24.101.45 143773 port 242 143773 unique_id port 143773 remote_ip 10.8.1.86 143777 username barzegar 143777 mac 143777 bytes_out 0 143777 bytes_in 0 143777 station_ip 5.119.219.19 143777 port 439 143777 unique_id port 143777 remote_ip 10.8.0.234 143778 username saeed9658 143778 mac 143778 bytes_out 0 143778 bytes_in 0 143778 station_ip 5.119.30.177 143778 port 452 143778 unique_id port 143778 remote_ip 10.8.0.62 143781 username sabaghnezhad 143781 mac 143781 bytes_out 0 143781 bytes_in 0 143781 station_ip 5.213.43.233 143781 port 439 143781 unique_id port 143781 remote_ip 10.8.0.186 143784 username mosi 143784 mac 143784 bytes_out 0 143784 bytes_in 0 143784 station_ip 151.235.107.13 143784 port 439 143784 unique_id port 143784 remote_ip 10.8.0.138 143788 username barzegar 143788 mac 143788 bytes_out 29609 143788 bytes_in 101259 143788 station_ip 5.119.219.19 143788 port 454 143788 unique_id port 143788 remote_ip 10.8.0.234 143791 username aminvpn 143791 mac 143791 bytes_out 0 143791 bytes_in 0 143791 station_ip 5.119.168.38 143791 port 463 143791 unique_id port 143795 username godarzi 143795 mac 143770 kill_reason Another user logged on this global unique id 143770 mac 143770 bytes_out 0 143770 bytes_in 0 143770 station_ip 5.126.76.196 143770 port 461 143770 unique_id port 143771 username vanila 143771 mac 143771 bytes_out 0 143771 bytes_in 0 143771 station_ip 83.123.90.80 143771 port 459 143771 unique_id port 143771 remote_ip 10.8.0.178 143774 username hasanahmadi 143774 mac 143774 bytes_out 0 143774 bytes_in 0 143774 station_ip 37.129.6.97 143774 port 452 143774 unique_id port 143774 remote_ip 10.8.0.126 143775 username aminvpn 143775 kill_reason Another user logged on this global unique id 143775 mac 143775 bytes_out 0 143775 bytes_in 0 143775 station_ip 5.119.168.38 143775 port 463 143775 unique_id port 143775 remote_ip 10.8.0.14 143780 username saeed9658 143780 mac 143780 bytes_out 0 143780 bytes_in 0 143780 station_ip 5.119.30.177 143780 port 242 143780 unique_id port 143780 remote_ip 10.8.1.210 143782 username mosi 143782 mac 143782 bytes_out 121822 143782 bytes_in 495367 143782 station_ip 151.235.107.13 143782 port 243 143782 unique_id port 143782 remote_ip 10.8.1.86 143783 username hasanahmadi 143783 mac 143783 bytes_out 0 143783 bytes_in 0 143783 station_ip 83.123.110.128 143783 port 454 143783 unique_id port 143783 remote_ip 10.8.0.126 143787 username mosi 143787 mac 143787 bytes_out 0 143787 bytes_in 0 143787 station_ip 94.24.101.45 143787 port 464 143787 unique_id port 143787 remote_ip 10.8.0.138 143790 username aminvpn 143790 kill_reason Another user logged on this global unique id 143790 mac 143790 bytes_out 0 143790 bytes_in 0 143790 station_ip 5.119.168.38 143790 port 463 143790 unique_id port 143792 username forozandeh1 143792 mac 143792 bytes_out 0 143792 bytes_in 0 143792 station_ip 83.122.107.96 143792 port 464 143792 unique_id port 143792 remote_ip 10.8.0.130 143794 username alikomsari 143794 mac 143794 bytes_out 0 143794 bytes_in 0 143794 station_ip 5.120.31.61 143794 port 452 143794 unique_id port 143794 remote_ip 10.8.0.70 143798 username alireza 143798 kill_reason Relative expiration date has reached 143798 unique_id port 143798 bytes_out 0 143798 bytes_in 0 143798 station_ip 5.120.120.36 143798 port 15730825 143798 nas_port_type Virtual 143803 username malekpoir 143803 mac 143803 bytes_out 0 143803 bytes_in 0 143803 station_ip 5.119.18.226 143803 port 459 143803 unique_id port 143803 remote_ip 10.8.0.58 143804 username mosi 143804 mac 143804 bytes_out 0 143804 bytes_in 0 143804 station_ip 94.24.101.45 143804 port 439 143804 unique_id port 143804 remote_ip 10.8.0.138 143811 username godarzi 143811 mac 143811 bytes_out 2283679 143811 bytes_in 12720301 143811 station_ip 5.202.5.1 143811 port 459 143811 unique_id port 143811 remote_ip 10.8.0.174 143812 username hamidsalari 143812 kill_reason Another user logged on this global unique id 143812 mac 143812 bytes_out 0 143812 bytes_in 0 143812 station_ip 5.120.87.192 143812 port 445 143812 unique_id port 143812 remote_ip 10.8.0.222 143815 username barzegar 143815 mac 143815 bytes_out 0 143815 bytes_in 0 143815 station_ip 5.119.219.19 143815 port 242 143815 unique_id port 143815 remote_ip 10.8.1.174 143818 username barzegar 143818 mac 143818 bytes_out 0 143818 bytes_in 0 143818 station_ip 5.119.219.19 143818 port 242 143818 unique_id port 143818 remote_ip 10.8.1.174 143819 username moradi 143819 kill_reason Another user logged on this global unique id 143819 mac 143819 bytes_out 0 143819 bytes_in 0 143819 station_ip 83.123.96.86 143819 port 452 143793 bytes_in 0 143793 station_ip 83.123.90.80 143793 port 439 143793 unique_id port 143793 remote_ip 10.8.0.178 143796 username mosi 143796 mac 143796 bytes_out 0 143796 bytes_in 0 143796 station_ip 151.235.107.13 143796 port 465 143796 unique_id port 143796 remote_ip 10.8.0.138 143797 username hasanahmadi 143797 mac 143797 bytes_out 0 143797 bytes_in 0 143797 station_ip 83.123.70.117 143797 port 462 143797 unique_id port 143797 remote_ip 10.8.0.126 143801 username hashtadani3 143801 mac 143801 bytes_out 0 143801 bytes_in 0 143801 station_ip 83.122.228.119 143801 port 452 143801 unique_id port 143801 remote_ip 10.8.0.154 143805 username hashtadani3 143805 mac 143805 bytes_out 0 143805 bytes_in 0 143805 station_ip 83.122.228.119 143805 port 452 143805 unique_id port 143805 remote_ip 10.8.0.154 143807 username tahmasebi 143807 kill_reason Another user logged on this global unique id 143807 mac 143807 bytes_out 0 143807 bytes_in 0 143807 station_ip 5.126.76.196 143807 port 461 143807 unique_id port 143810 username hashtadani3 143810 mac 143810 bytes_out 0 143810 bytes_in 0 143810 station_ip 83.122.228.119 143810 port 439 143810 unique_id port 143810 remote_ip 10.8.0.154 143813 username mosi 143813 kill_reason Another user logged on this global unique id 143813 mac 143813 bytes_out 0 143813 bytes_in 0 143813 station_ip 151.235.107.13 143813 port 464 143813 unique_id port 143813 remote_ip 10.8.0.138 143814 username kordestani 143814 mac 143814 bytes_out 262740 143814 bytes_in 3904389 143814 station_ip 37.129.33.12 143814 port 454 143814 unique_id port 143814 remote_ip 10.8.0.134 143817 username barzegar 143817 mac 143817 bytes_out 0 143817 bytes_in 0 143817 station_ip 5.119.219.19 143817 port 242 143817 unique_id port 143817 remote_ip 10.8.1.174 143823 username mostafa_es78 143823 unique_id port 143823 terminate_cause User-Request 143823 bytes_out 258 143823 bytes_in 172 143823 station_ip 5.119.202.104 143823 port 15730827 143823 nas_port_type Virtual 143823 remote_ip 5.5.5.5 143825 username barzegar 143825 mac 143825 bytes_out 10538 143825 bytes_in 21587 143825 station_ip 5.119.219.19 143825 port 242 143825 unique_id port 143825 remote_ip 10.8.1.174 143830 username tahmasebi 143830 kill_reason Another user logged on this global unique id 143830 mac 143830 bytes_out 0 143830 bytes_in 0 143830 station_ip 5.126.76.196 143830 port 461 143830 unique_id port 143832 username barzegar 143832 mac 143832 bytes_out 21089 143832 bytes_in 56014 143832 station_ip 5.119.219.19 143832 port 242 143832 unique_id port 143832 remote_ip 10.8.1.174 143836 username kalantary 143836 mac 143836 bytes_out 951801 143836 bytes_in 10030266 143836 station_ip 83.122.30.21 143836 port 459 143836 unique_id port 143836 remote_ip 10.8.0.98 143838 username barzegar 143838 mac 143838 bytes_out 0 143838 bytes_in 0 143838 station_ip 5.119.219.19 143838 port 459 143838 unique_id port 143838 remote_ip 10.8.0.234 143840 username moradi 143840 mac 143840 bytes_out 0 143840 bytes_in 0 143840 station_ip 83.123.96.86 143840 port 452 143840 unique_id port 143848 username barzegar 143848 mac 143848 bytes_out 5724 143848 bytes_in 14804 143848 station_ip 5.119.219.19 143848 port 244 143848 unique_id port 143848 remote_ip 10.8.1.174 143850 username hashtadani3 143850 mac 143850 bytes_out 0 143850 bytes_in 0 143850 station_ip 83.122.228.119 143850 port 243 143850 unique_id port 143850 remote_ip 10.8.1.94 143851 username hashtadani3 143851 mac 143795 bytes_out 431438 143795 bytes_in 5449779 143795 station_ip 5.202.5.1 143795 port 464 143795 unique_id port 143795 remote_ip 10.8.0.174 143799 username kalantary 143799 kill_reason Another user logged on this global unique id 143799 mac 143799 bytes_out 0 143799 bytes_in 0 143799 station_ip 83.122.89.61 143799 port 454 143799 unique_id port 143799 remote_ip 10.8.0.98 143800 username hashtadani3 143800 mac 143800 bytes_out 0 143800 bytes_in 0 143800 station_ip 83.122.228.119 143800 port 463 143800 unique_id port 143800 remote_ip 10.8.0.154 143802 username hashtadani3 143802 mac 143802 bytes_out 0 143802 bytes_in 0 143802 station_ip 83.122.228.119 143802 port 452 143802 unique_id port 143802 remote_ip 10.8.0.154 143806 username kalantary 143806 mac 143806 bytes_out 0 143806 bytes_in 0 143806 station_ip 83.122.89.61 143806 port 454 143806 unique_id port 143808 username hashtadani3 143808 mac 143808 bytes_out 0 143808 bytes_in 0 143808 station_ip 83.122.228.119 143808 port 439 143808 unique_id port 143808 remote_ip 10.8.0.154 143809 username barzegar 143809 mac 143809 bytes_out 0 143809 bytes_in 0 143809 station_ip 5.119.219.19 143809 port 466 143809 unique_id port 143809 remote_ip 10.8.0.234 143816 username houshang 143816 mac 143816 bytes_out 1190448 143816 bytes_in 9734912 143816 station_ip 5.119.59.188 143816 port 452 143816 unique_id port 143816 remote_ip 10.8.0.22 143821 username tahmasebi 143821 kill_reason Another user logged on this global unique id 143821 mac 143821 bytes_out 0 143821 bytes_in 0 143821 station_ip 5.126.76.196 143821 port 461 143821 unique_id port 143822 username vanila 143822 mac 143822 bytes_out 0 143822 bytes_in 0 143822 station_ip 83.123.90.80 143822 port 459 143822 unique_id port 143822 remote_ip 10.8.0.178 143824 username forozandeh1 143824 mac 143824 bytes_out 1041385 143824 bytes_in 20531009 143824 station_ip 37.129.31.153 143824 port 454 143824 unique_id port 143824 remote_ip 10.8.0.130 143828 username tahmasebi 143828 kill_reason Another user logged on this global unique id 143828 mac 143828 bytes_out 0 143828 bytes_in 0 143828 station_ip 5.126.76.196 143828 port 461 143828 unique_id port 143829 username mostafa_es78 143829 kill_reason Maximum check online fails reached 143829 unique_id port 143829 bytes_out 105172 143829 bytes_in 2265251 143829 station_ip 5.119.202.104 143829 port 15730828 143829 nas_port_type Virtual 143829 remote_ip 5.5.5.7 143833 username tahmasebi 143833 kill_reason Another user logged on this global unique id 143833 mac 143833 bytes_out 0 143833 bytes_in 0 143833 station_ip 5.126.76.196 143833 port 461 143833 unique_id port 143834 username moradi 143834 kill_reason Another user logged on this global unique id 143834 mac 143834 bytes_out 0 143834 bytes_in 0 143834 station_ip 83.123.96.86 143834 port 452 143834 unique_id port 143835 username khalili 143835 kill_reason Another user logged on this global unique id 143835 mac 143835 bytes_out 0 143835 bytes_in 0 143835 station_ip 5.119.175.202 143835 port 440 143835 unique_id port 143839 username mahdiyehalizadeh 143839 mac 143839 bytes_out 522892 143839 bytes_in 8509926 143839 station_ip 83.122.173.124 143839 port 462 143839 unique_id port 143839 remote_ip 10.8.0.82 143841 username sabaghnezhad 143841 mac 143841 bytes_out 11070 143841 bytes_in 15627 143841 station_ip 95.64.96.166 143841 port 454 143841 unique_id port 143841 remote_ip 10.8.0.186 143846 username hashtadani3 143846 mac 143846 bytes_out 0 143846 bytes_in 0 143846 station_ip 83.122.228.119 143846 port 439 143819 unique_id port 143819 remote_ip 10.8.0.250 143820 username mostafa_es78 143820 unique_id port 143820 terminate_cause User-Request 143820 bytes_out 272 143820 bytes_in 214 143820 station_ip 5.119.202.104 143820 port 15730826 143820 nas_port_type Virtual 143820 remote_ip 5.5.5.3 143826 username sabaghnezhad 143826 mac 143826 bytes_out 869942 143826 bytes_in 184807 143826 station_ip 5.213.34.232 143826 port 462 143826 unique_id port 143826 remote_ip 10.8.0.186 143827 username mosi 143827 kill_reason Another user logged on this global unique id 143827 mac 143827 bytes_out 0 143827 bytes_in 0 143827 station_ip 151.235.107.13 143827 port 464 143827 unique_id port 143831 username bcboard 143831 unique_id port 143831 terminate_cause User-Request 143831 bytes_out 11167724 143831 bytes_in 183362898 143831 station_ip 83.123.76.231 143831 port 15730818 143831 nas_port_type Virtual 143831 remote_ip 5.5.5.95 143837 username hosseine 143837 mac 143837 bytes_out 0 143837 bytes_in 0 143837 station_ip 83.122.86.108 143837 port 460 143837 unique_id port 143842 username hashtadani3 143842 kill_reason Another user logged on this global unique id 143842 mac 143842 bytes_out 0 143842 bytes_in 0 143842 station_ip 83.122.228.119 143842 port 439 143842 unique_id port 143842 remote_ip 10.8.0.154 143843 username barzegar 143843 mac 143843 bytes_out 0 143843 bytes_in 0 143843 station_ip 5.119.219.19 143843 port 452 143843 unique_id port 143843 remote_ip 10.8.0.234 143844 username hashtadani3 143844 mac 143844 bytes_out 0 143844 bytes_in 0 143844 station_ip 83.122.228.119 143844 port 439 143844 unique_id port 143845 username hamidsalari 143845 kill_reason Another user logged on this global unique id 143845 mac 143845 bytes_out 0 143845 bytes_in 0 143845 station_ip 5.120.87.192 143845 port 445 143845 unique_id port 143847 username hashtadani3 143847 mac 143847 bytes_out 0 143847 bytes_in 0 143847 station_ip 83.122.228.119 143847 port 243 143847 unique_id port 143847 remote_ip 10.8.1.94 143853 username kordestani 143853 mac 143853 bytes_out 969525 143853 bytes_in 12226415 143853 station_ip 37.129.184.12 143853 port 466 143853 unique_id port 143853 remote_ip 10.8.0.134 143858 username barzegar 143858 mac 143858 bytes_out 0 143858 bytes_in 0 143858 station_ip 5.119.219.19 143858 port 243 143858 unique_id port 143858 remote_ip 10.8.1.174 143862 username malekpoir 143862 kill_reason Another user logged on this global unique id 143862 mac 143862 bytes_out 0 143862 bytes_in 0 143862 station_ip 5.119.18.226 143862 port 463 143862 unique_id port 143862 remote_ip 10.8.0.58 143863 username hamidsalari 143863 mac 143863 bytes_out 0 143863 bytes_in 0 143863 station_ip 5.120.87.192 143863 port 445 143863 unique_id port 143872 username malekpoir 143872 mac 143872 bytes_out 0 143872 bytes_in 0 143872 station_ip 5.119.18.226 143872 port 463 143872 unique_id port 143880 username barzegar 143880 mac 143880 bytes_out 0 143880 bytes_in 0 143880 station_ip 5.119.219.19 143880 port 245 143880 unique_id port 143880 remote_ip 10.8.1.174 143882 username moradi 143882 kill_reason Another user logged on this global unique id 143882 mac 143882 bytes_out 0 143882 bytes_in 0 143882 station_ip 83.123.96.86 143882 port 459 143882 unique_id port 143885 username mohammadmahdi 143885 mac 143885 bytes_out 0 143885 bytes_in 0 143885 station_ip 5.120.118.94 143885 port 465 143885 unique_id port 143891 username hashtadani3 143891 mac 143891 bytes_out 0 143891 bytes_in 0 143891 station_ip 83.122.228.119 143846 unique_id port 143846 remote_ip 10.8.0.154 143849 username hashtadani3 143849 mac 143849 bytes_out 2543 143849 bytes_in 4912 143849 station_ip 83.122.228.119 143849 port 243 143849 unique_id port 143849 remote_ip 10.8.1.94 143852 username godarzi 143852 mac 143852 bytes_out 0 143852 bytes_in 0 143852 station_ip 5.202.5.1 143852 port 245 143852 unique_id port 143852 remote_ip 10.8.1.230 143855 username hamidsalari 143855 kill_reason Another user logged on this global unique id 143855 mac 143855 bytes_out 0 143855 bytes_in 0 143855 station_ip 5.120.87.192 143855 port 445 143855 unique_id port 143856 username barzegar 143856 mac 143856 bytes_out 0 143856 bytes_in 0 143856 station_ip 5.119.219.19 143856 port 244 143856 unique_id port 143856 remote_ip 10.8.1.174 143857 username hashtadani3 143857 kill_reason Another user logged on this global unique id 143857 mac 143857 bytes_out 0 143857 bytes_in 0 143857 station_ip 83.122.228.119 143857 port 439 143857 unique_id port 143857 remote_ip 10.8.0.154 143865 username alipour 143865 mac 143865 bytes_out 1751605 143865 bytes_in 14313853 143865 station_ip 83.122.223.127 143865 port 451 143865 unique_id port 143865 remote_ip 10.8.0.102 143866 username hashtadani3 143866 mac 143866 bytes_out 0 143866 bytes_in 0 143866 station_ip 83.122.228.119 143866 port 243 143866 unique_id port 143866 remote_ip 10.8.1.94 143869 username hashtadani3 143869 mac 143869 bytes_out 0 143869 bytes_in 0 143869 station_ip 83.122.228.119 143869 port 243 143869 unique_id port 143869 remote_ip 10.8.1.94 143874 username barzegar 143874 mac 143874 bytes_out 0 143874 bytes_in 0 143874 station_ip 5.119.219.19 143874 port 245 143874 unique_id port 143874 remote_ip 10.8.1.174 143875 username hashtadani3 143875 mac 143875 bytes_out 0 143875 bytes_in 0 143875 station_ip 83.122.228.119 143875 port 243 143875 unique_id port 143875 remote_ip 10.8.1.94 143876 username hashtadani3 143876 mac 143876 bytes_out 0 143876 bytes_in 0 143876 station_ip 83.122.228.119 143876 port 243 143876 unique_id port 143876 remote_ip 10.8.1.94 143877 username moradi 143877 kill_reason Another user logged on this global unique id 143877 mac 143877 bytes_out 0 143877 bytes_in 0 143877 station_ip 83.123.96.86 143877 port 459 143877 unique_id port 143881 username barzegar 143881 mac 143881 bytes_out 2659 143881 bytes_in 5840 143881 station_ip 5.119.219.19 143881 port 243 143881 unique_id port 143881 remote_ip 10.8.1.174 143884 username moradi 143884 mac 143884 bytes_out 0 143884 bytes_in 0 143884 station_ip 83.123.96.86 143884 port 459 143884 unique_id port 143886 username godarzi 143886 mac 143886 bytes_out 0 143886 bytes_in 0 143886 station_ip 5.119.114.234 143886 port 243 143886 unique_id port 143886 remote_ip 10.8.1.230 143890 username alipour 143890 mac 143890 bytes_out 0 143890 bytes_in 0 143890 station_ip 83.122.223.127 143890 port 244 143890 unique_id port 143890 remote_ip 10.8.1.50 143896 username hashtadani3 143896 kill_reason Maximum check online fails reached 143896 mac 143896 bytes_out 0 143896 bytes_in 0 143896 station_ip 83.122.228.119 143896 port 244 143896 unique_id port 143898 username hashtadani3 143898 mac 143898 bytes_out 0 143898 bytes_in 0 143898 station_ip 83.122.228.119 143898 port 245 143898 unique_id port 143898 remote_ip 10.8.1.94 143902 username hashtadani3 143902 mac 143902 bytes_out 0 143902 bytes_in 0 143902 station_ip 83.122.228.119 143902 port 462 143851 bytes_out 0 143851 bytes_in 0 143851 station_ip 83.122.228.119 143851 port 439 143851 unique_id port 143851 remote_ip 10.8.0.154 143854 username mohammadmahdi 143854 kill_reason Another user logged on this global unique id 143854 mac 143854 bytes_out 0 143854 bytes_in 0 143854 station_ip 5.120.118.94 143854 port 465 143854 unique_id port 143854 remote_ip 10.8.0.54 143859 username hashtadani3 143859 mac 143859 bytes_out 0 143859 bytes_in 0 143859 station_ip 83.122.228.119 143859 port 439 143859 unique_id port 143860 username barzegar 143860 mac 143860 bytes_out 0 143860 bytes_in 0 143860 station_ip 5.119.219.19 143860 port 243 143860 unique_id port 143860 remote_ip 10.8.1.174 143861 username moradi 143861 kill_reason Another user logged on this global unique id 143861 mac 143861 bytes_out 0 143861 bytes_in 0 143861 station_ip 83.123.96.86 143861 port 459 143861 unique_id port 143861 remote_ip 10.8.0.250 143864 username hashtadani3 143864 mac 143864 bytes_out 3927 143864 bytes_in 6486 143864 station_ip 83.122.228.119 143864 port 243 143864 unique_id port 143864 remote_ip 10.8.1.94 143867 username mohammadmahdi 143867 kill_reason Another user logged on this global unique id 143867 mac 143867 bytes_out 0 143867 bytes_in 0 143867 station_ip 5.120.118.94 143867 port 465 143867 unique_id port 143868 username mostafa_es78 143868 unique_id port 143868 terminate_cause User-Request 143868 bytes_out 149488 143868 bytes_in 2510670 143868 station_ip 5.125.125.172 143868 port 15730830 143868 nas_port_type Virtual 143868 remote_ip 5.5.5.44 143870 username kalantary 143870 mac 143870 bytes_out 700382 143870 bytes_in 7494802 143870 station_ip 83.122.48.181 143870 port 439 143870 unique_id port 143870 remote_ip 10.8.0.98 143871 username hashtadani3 143871 mac 143871 bytes_out 0 143871 bytes_in 0 143871 station_ip 83.122.228.119 143871 port 243 143871 unique_id port 143871 remote_ip 10.8.1.94 143873 username forozandeh1 143873 mac 143873 bytes_out 0 143873 bytes_in 0 143873 station_ip 83.123.46.67 143873 port 452 143873 unique_id port 143873 remote_ip 10.8.0.130 143878 username hashtadani3 143878 mac 143878 bytes_out 2967 143878 bytes_in 5352 143878 station_ip 83.122.228.119 143878 port 243 143878 unique_id port 143878 remote_ip 10.8.1.94 143879 username hashtadani3 143879 mac 143879 bytes_out 0 143879 bytes_in 0 143879 station_ip 83.122.228.119 143879 port 243 143879 unique_id port 143879 remote_ip 10.8.1.94 143883 username kalantary 143883 mac 143883 bytes_out 236353 143883 bytes_in 608533 143883 station_ip 83.122.16.225 143883 port 451 143883 unique_id port 143883 remote_ip 10.8.0.98 143887 username hashtadani3 143887 mac 143887 bytes_out 2517193 143887 bytes_in 30453316 143887 station_ip 83.122.228.119 143887 port 445 143887 unique_id port 143887 remote_ip 10.8.0.154 143888 username hashtadani3 143888 mac 143888 bytes_out 0 143888 bytes_in 0 143888 station_ip 83.122.228.119 143888 port 445 143888 unique_id port 143888 remote_ip 10.8.0.154 143889 username mehdizare 143889 mac 143889 bytes_out 4675754 143889 bytes_in 319641 143889 station_ip 5.120.252.120 143889 port 451 143889 unique_id port 143889 remote_ip 10.8.0.90 143894 username barzegar 143894 mac 143894 bytes_out 0 143894 bytes_in 0 143894 station_ip 5.119.254.153 143894 port 245 143894 unique_id port 143894 remote_ip 10.8.1.174 143895 username vanila 143895 mac 143895 bytes_out 1564697 143895 bytes_in 3380266 143895 station_ip 83.123.90.80 143895 port 452 143895 unique_id port 143891 port 244 143891 unique_id port 143891 remote_ip 10.8.1.94 143892 username mansour 143892 mac 143892 bytes_out 0 143892 bytes_in 0 143892 station_ip 5.119.116.221 143892 port 445 143892 unique_id port 143892 remote_ip 10.8.0.30 143893 username hashtadani3 143893 mac 143893 bytes_out 0 143893 bytes_in 0 143893 station_ip 83.122.228.119 143893 port 445 143893 unique_id port 143893 remote_ip 10.8.0.154 143897 username hashtadani3 143897 mac 143897 bytes_out 0 143897 bytes_in 0 143897 station_ip 83.122.228.119 143897 port 245 143897 unique_id port 143897 remote_ip 10.8.1.94 143899 username hashtadani3 143899 mac 143899 bytes_out 0 143899 bytes_in 0 143899 station_ip 83.122.228.119 143899 port 460 143899 unique_id port 143899 remote_ip 10.8.0.154 143904 username hashtadani3 143904 mac 143904 bytes_out 0 143904 bytes_in 0 143904 station_ip 83.122.228.119 143904 port 459 143904 unique_id port 143904 remote_ip 10.8.0.154 143907 username hashtadani3 143907 mac 143907 bytes_out 0 143907 bytes_in 0 143907 station_ip 83.122.228.119 143907 port 245 143907 unique_id port 143907 remote_ip 10.8.1.94 143912 username barzegar 143912 mac 143912 bytes_out 0 143912 bytes_in 0 143912 station_ip 5.119.254.153 143912 port 246 143912 unique_id port 143912 remote_ip 10.8.1.174 143913 username alipour 143913 mac 143913 bytes_out 0 143913 bytes_in 0 143913 station_ip 83.122.223.127 143913 port 451 143913 unique_id port 143913 remote_ip 10.8.0.102 143918 username mohammadjavad 143918 mac 143918 bytes_out 0 143918 bytes_in 0 143918 station_ip 83.122.55.212 143918 port 445 143918 unique_id port 143918 remote_ip 10.8.0.142 143928 username hashtadani3 143928 mac 143928 bytes_out 2482 143928 bytes_in 4759 143928 station_ip 83.122.228.119 143928 port 459 143928 unique_id port 143928 remote_ip 10.8.0.154 143930 username vanila 143930 mac 143930 bytes_out 0 143930 bytes_in 0 143930 station_ip 83.123.90.80 143930 port 445 143930 unique_id port 143930 remote_ip 10.8.0.178 143933 username hashtadani3 143933 mac 143933 bytes_out 0 143933 bytes_in 0 143933 station_ip 83.122.228.119 143933 port 445 143933 unique_id port 143933 remote_ip 10.8.0.154 143936 username hashtadani3 143936 mac 143936 bytes_out 0 143936 bytes_in 0 143936 station_ip 83.122.228.119 143936 port 459 143936 unique_id port 143936 remote_ip 10.8.0.154 143938 username kalantary 143938 mac 143938 bytes_out 187140 143938 bytes_in 420835 143938 station_ip 83.122.75.185 143938 port 445 143938 unique_id port 143938 remote_ip 10.8.0.98 143939 username hashtadani3 143939 mac 143939 bytes_out 0 143939 bytes_in 0 143939 station_ip 83.122.228.119 143939 port 459 143939 unique_id port 143939 remote_ip 10.8.0.154 143941 username barzegar 143941 mac 143941 bytes_out 0 143941 bytes_in 0 143941 station_ip 5.119.254.153 143941 port 245 143941 unique_id port 143941 remote_ip 10.8.1.174 143944 username hashtadani3 143944 mac 143944 bytes_out 2376 143944 bytes_in 4653 143944 station_ip 83.122.228.119 143944 port 451 143944 unique_id port 143944 remote_ip 10.8.0.154 143945 username hashtadani3 143945 mac 143945 bytes_out 0 143945 bytes_in 0 143945 station_ip 83.122.228.119 143945 port 445 143945 unique_id port 143945 remote_ip 10.8.0.154 143947 username barzegar 143947 mac 143947 bytes_out 0 143947 bytes_in 0 143947 station_ip 5.119.254.153 143947 port 246 143947 unique_id port 143895 remote_ip 10.8.0.178 143900 username hashtadani3 143900 mac 143900 bytes_out 0 143900 bytes_in 0 143900 station_ip 83.122.228.119 143900 port 462 143900 unique_id port 143900 remote_ip 10.8.0.154 143901 username kalantary 143901 mac 143901 bytes_out 0 143901 bytes_in 0 143901 station_ip 83.122.16.225 143901 port 459 143901 unique_id port 143901 remote_ip 10.8.0.98 143903 username hamidehfatemi 143903 mac 143903 bytes_out 1424503 143903 bytes_in 23113077 143903 station_ip 83.123.19.157 143903 port 460 143903 unique_id port 143903 remote_ip 10.8.0.162 143905 username khademi 143905 mac 143905 bytes_out 3069299 143905 bytes_in 48513184 143905 station_ip 83.123.6.251 143905 port 445 143905 unique_id port 143905 remote_ip 10.8.0.10 143906 username hashtadani3 143906 mac 143906 bytes_out 2543 143906 bytes_in 4967 143906 station_ip 83.122.228.119 143906 port 245 143906 unique_id port 143906 remote_ip 10.8.1.94 143909 username forozandeh1 143909 mac 143909 bytes_out 1157599 143909 bytes_in 13648429 143909 station_ip 37.129.81.181 143909 port 452 143909 unique_id port 143909 remote_ip 10.8.0.130 143910 username hashtadani3 143910 mac 143910 bytes_out 0 143910 bytes_in 0 143910 station_ip 83.122.228.119 143910 port 452 143910 unique_id port 143910 remote_ip 10.8.0.154 143911 username hashtadani3 143911 mac 143911 bytes_out 0 143911 bytes_in 0 143911 station_ip 83.122.228.119 143911 port 452 143911 unique_id port 143911 remote_ip 10.8.0.154 143914 username kordestani 143914 mac 143914 bytes_out 0 143914 bytes_in 0 143914 station_ip 83.123.57.243 143914 port 439 143914 unique_id port 143914 remote_ip 10.8.0.134 143915 username tahmasebi 143915 kill_reason Another user logged on this global unique id 143915 mac 143915 bytes_out 0 143915 bytes_in 0 143915 station_ip 5.126.76.196 143915 port 461 143915 unique_id port 143919 username mahdixz 143919 unique_id port 143919 terminate_cause Lost-Carrier 143919 bytes_out 5167927 143919 bytes_in 167894799 143919 station_ip 151.235.102.30 143919 port 15730831 143919 nas_port_type Virtual 143919 remote_ip 5.5.5.46 143920 username kalantary 143920 mac 143920 bytes_out 411527 143920 bytes_in 4156695 143920 station_ip 83.122.16.225 143920 port 451 143920 unique_id port 143920 remote_ip 10.8.0.98 143923 username hashtadani3 143923 mac 143923 bytes_out 2366148 143923 bytes_in 42793752 143923 station_ip 83.122.228.119 143923 port 246 143923 unique_id port 143923 remote_ip 10.8.1.94 143924 username hashtadani3 143924 mac 143924 bytes_out 0 143924 bytes_in 0 143924 station_ip 83.122.228.119 143924 port 246 143924 unique_id port 143924 remote_ip 10.8.1.94 143925 username hashtadani3 143925 mac 143925 bytes_out 0 143925 bytes_in 0 143925 station_ip 83.122.228.119 143925 port 246 143925 unique_id port 143925 remote_ip 10.8.1.94 143926 username godarzi 143926 mac 143926 bytes_out 0 143926 bytes_in 0 143926 station_ip 5.119.114.234 143926 port 245 143926 unique_id port 143926 remote_ip 10.8.1.230 143929 username hashtadani3 143929 mac 143929 bytes_out 0 143929 bytes_in 0 143929 station_ip 83.122.228.119 143929 port 459 143929 unique_id port 143929 remote_ip 10.8.0.154 143931 username hashtadani3 143931 mac 143931 bytes_out 0 143931 bytes_in 0 143931 station_ip 83.122.228.119 143931 port 459 143931 unique_id port 143931 remote_ip 10.8.0.154 143934 username hashtadani3 143934 mac 143934 bytes_out 0 143934 bytes_in 0 143934 station_ip 83.122.228.119 143934 port 459 143902 unique_id port 143902 remote_ip 10.8.0.154 143908 username hashtadani3 143908 mac 143908 bytes_out 0 143908 bytes_in 0 143908 station_ip 83.122.228.119 143908 port 459 143908 unique_id port 143908 remote_ip 10.8.0.154 143916 username kalantary 143916 mac 143916 bytes_out 0 143916 bytes_in 0 143916 station_ip 83.122.16.225 143916 port 459 143916 unique_id port 143916 remote_ip 10.8.0.98 143917 username zotaher 143917 mac 143917 bytes_out 1688379 143917 bytes_in 33286385 143917 station_ip 83.122.125.255 143917 port 245 143917 unique_id port 143917 remote_ip 10.8.1.246 143921 username barzegar 143921 mac 143921 bytes_out 0 143921 bytes_in 0 143921 station_ip 5.119.254.153 143921 port 452 143921 unique_id port 143921 remote_ip 10.8.0.234 143922 username aminvpn 143922 unique_id port 143922 terminate_cause Lost-Carrier 143922 bytes_out 2661638 143922 bytes_in 10449049 143922 station_ip 5.120.40.63 143922 port 15730829 143922 nas_port_type Virtual 143922 remote_ip 5.5.5.22 143927 username hashtadani3 143927 mac 143927 bytes_out 0 143927 bytes_in 0 143927 station_ip 83.122.228.119 143927 port 459 143927 unique_id port 143927 remote_ip 10.8.0.154 143932 username barzegar 143932 mac 143932 bytes_out 0 143932 bytes_in 0 143932 station_ip 5.119.254.153 143932 port 245 143932 unique_id port 143932 remote_ip 10.8.1.174 143937 username yaghobi 143937 mac 143937 bytes_out 1300510 143937 bytes_in 13579844 143937 station_ip 83.123.44.118 143937 port 451 143937 unique_id port 143937 remote_ip 10.8.0.198 143940 username hashtadani3 143940 mac 143940 bytes_out 0 143940 bytes_in 0 143940 station_ip 83.122.228.119 143940 port 451 143940 unique_id port 143940 remote_ip 10.8.0.154 143943 username mehdizare 143943 mac 143943 bytes_out 145878 143943 bytes_in 172429 143943 station_ip 5.120.252.120 143943 port 243 143943 unique_id port 143943 remote_ip 10.8.1.42 143946 username kordestani 143946 mac 143946 bytes_out 0 143946 bytes_in 0 143946 station_ip 37.129.21.239 143946 port 439 143946 unique_id port 143946 remote_ip 10.8.0.134 143949 username hashtadani3 143949 mac 143949 bytes_out 0 143949 bytes_in 0 143949 station_ip 83.122.228.119 143949 port 445 143949 unique_id port 143949 remote_ip 10.8.0.154 143952 username yaghobi 143952 mac 143952 bytes_out 0 143952 bytes_in 0 143952 station_ip 83.123.44.118 143952 port 445 143952 unique_id port 143952 remote_ip 10.8.0.198 143959 username hashtadani3 143959 mac 143959 bytes_out 0 143959 bytes_in 0 143959 station_ip 83.122.228.119 143959 port 445 143959 unique_id port 143959 remote_ip 10.8.0.154 143961 username hashtadani3 143961 mac 143961 bytes_out 0 143961 bytes_in 0 143961 station_ip 83.122.228.119 143961 port 445 143961 unique_id port 143961 remote_ip 10.8.0.154 143966 username hashtadani3 143966 mac 143966 bytes_out 0 143966 bytes_in 0 143966 station_ip 83.122.228.119 143966 port 445 143966 unique_id port 143966 remote_ip 10.8.0.154 143969 username hashtadani3 143969 mac 143969 bytes_out 0 143969 bytes_in 0 143969 station_ip 83.122.228.119 143969 port 445 143969 unique_id port 143969 remote_ip 10.8.0.154 143972 username tahmasebi 143972 mac 143972 bytes_out 0 143972 bytes_in 0 143972 station_ip 5.126.76.196 143972 port 461 143972 unique_id port 143978 username kalantary 143978 mac 143978 bytes_out 0 143978 bytes_in 0 143978 station_ip 83.122.48.161 143978 port 451 143978 unique_id port 143934 unique_id port 143934 remote_ip 10.8.0.154 143935 username hashtadani3 143935 mac 143935 bytes_out 0 143935 bytes_in 0 143935 station_ip 83.122.228.119 143935 port 459 143935 unique_id port 143935 remote_ip 10.8.0.154 143942 username yaghobi 143942 mac 143942 bytes_out 0 143942 bytes_in 0 143942 station_ip 83.123.44.118 143942 port 445 143942 unique_id port 143942 remote_ip 10.8.0.198 143948 username zotaher 143948 mac 143948 bytes_out 2290281 143948 bytes_in 47605165 143948 station_ip 83.122.125.255 143948 port 452 143948 unique_id port 143948 remote_ip 10.8.0.194 143950 username hashtadani3 143950 mac 143950 bytes_out 0 143950 bytes_in 0 143950 station_ip 83.122.228.119 143950 port 439 143950 unique_id port 143950 remote_ip 10.8.0.154 143953 username hashtadani3 143953 mac 143953 bytes_out 0 143953 bytes_in 0 143953 station_ip 83.122.228.119 143953 port 439 143953 unique_id port 143953 remote_ip 10.8.0.154 143956 username barzegar 143956 mac 143956 bytes_out 0 143956 bytes_in 0 143956 station_ip 5.119.254.153 143956 port 246 143956 unique_id port 143956 remote_ip 10.8.1.174 143962 username hashtadani3 143962 mac 143962 bytes_out 0 143962 bytes_in 0 143962 station_ip 83.122.228.119 143962 port 445 143962 unique_id port 143962 remote_ip 10.8.0.154 143963 username hashtadani3 143963 mac 143963 bytes_out 0 143963 bytes_in 0 143963 station_ip 83.122.228.119 143963 port 248 143963 unique_id port 143963 remote_ip 10.8.1.94 143964 username hashtadani3 143964 mac 143964 bytes_out 0 143964 bytes_in 0 143964 station_ip 83.122.228.119 143964 port 445 143964 unique_id port 143964 remote_ip 10.8.0.154 143967 username hashtadani3 143967 mac 143967 bytes_out 0 143967 bytes_in 0 143967 station_ip 83.122.228.119 143967 port 445 143967 unique_id port 143967 remote_ip 10.8.0.154 143968 username kordestani 143968 mac 143968 bytes_out 21996 143968 bytes_in 37979 143968 station_ip 37.129.21.239 143968 port 439 143968 unique_id port 143968 remote_ip 10.8.0.134 143970 username mohammadmahdi 143970 mac 143970 bytes_out 0 143970 bytes_in 0 143970 station_ip 5.120.118.94 143970 port 459 143970 unique_id port 143970 remote_ip 10.8.0.54 143974 username sedighe 143974 mac 143974 bytes_out 0 143974 bytes_in 0 143974 station_ip 37.129.152.89 143974 port 246 143974 unique_id port 143974 remote_ip 10.8.1.78 143979 username mehdizare 143979 mac 143979 bytes_out 0 143979 bytes_in 0 143979 station_ip 5.120.252.120 143979 port 243 143979 unique_id port 143979 remote_ip 10.8.1.42 143984 username vanila 143984 mac 143984 bytes_out 0 143984 bytes_in 0 143984 station_ip 83.123.90.80 143984 port 439 143984 unique_id port 143984 remote_ip 10.8.0.178 143992 username barzegar 143992 mac 143992 bytes_out 0 143992 bytes_in 0 143992 station_ip 5.119.254.153 143992 port 246 143992 unique_id port 143992 remote_ip 10.8.1.174 143993 username malekpoir 143993 mac 143993 bytes_out 307658 143993 bytes_in 2578549 143993 station_ip 5.119.18.226 143993 port 451 143993 unique_id port 143993 remote_ip 10.8.0.58 143995 username malekpoir 143995 mac 143995 bytes_out 0 143995 bytes_in 0 143995 station_ip 5.119.18.226 143995 port 445 143995 unique_id port 143995 remote_ip 10.8.0.58 143997 username zotaher 143997 kill_reason Another user logged on this global unique id 143997 mac 143997 bytes_out 0 143997 bytes_in 0 143997 station_ip 83.122.92.23 143997 port 452 143997 unique_id port 143947 remote_ip 10.8.1.174 143951 username kordestani 143951 mac 143951 bytes_out 0 143951 bytes_in 0 143951 station_ip 37.129.21.239 143951 port 245 143951 unique_id port 143951 remote_ip 10.8.1.98 143954 username hashtadani3 143954 mac 143954 bytes_out 0 143954 bytes_in 0 143954 station_ip 83.122.228.119 143954 port 439 143954 unique_id port 143954 remote_ip 10.8.0.154 143955 username kordestani 143955 mac 143955 bytes_out 35482 143955 bytes_in 169877 143955 station_ip 37.129.21.239 143955 port 451 143955 unique_id port 143955 remote_ip 10.8.0.134 143957 username hashtadani3 143957 mac 143957 bytes_out 233541 143957 bytes_in 3159214 143957 station_ip 83.122.228.119 143957 port 245 143957 unique_id port 143957 remote_ip 10.8.1.94 143958 username hashtadani3 143958 mac 143958 bytes_out 0 143958 bytes_in 0 143958 station_ip 83.122.228.119 143958 port 445 143958 unique_id port 143958 remote_ip 10.8.0.154 143960 username hashtadani3 143960 mac 143960 bytes_out 0 143960 bytes_in 0 143960 station_ip 83.122.228.119 143960 port 445 143960 unique_id port 143960 remote_ip 10.8.0.154 143965 username hashtadani3 143965 mac 143965 bytes_out 0 143965 bytes_in 0 143965 station_ip 83.122.228.119 143965 port 445 143965 unique_id port 143965 remote_ip 10.8.0.154 143971 username barzegar 143971 mac 143971 bytes_out 4270 143971 bytes_in 7031 143971 station_ip 5.119.254.153 143971 port 245 143971 unique_id port 143971 remote_ip 10.8.1.174 143973 username barzegar 143973 mac 143973 bytes_out 5908 143973 bytes_in 11858 143973 station_ip 5.119.254.153 143973 port 245 143973 unique_id port 143973 remote_ip 10.8.1.174 143975 username sabaghnezhad 143975 mac 143975 bytes_out 0 143975 bytes_in 0 143975 station_ip 95.64.96.166 143975 port 242 143975 unique_id port 143975 remote_ip 10.8.1.130 143976 username houshang 143976 mac 143976 bytes_out 631701 143976 bytes_in 3981766 143976 station_ip 5.119.229.51 143976 port 445 143976 unique_id port 143976 remote_ip 10.8.0.22 143977 username hashtadani3 143977 mac 143977 bytes_out 566172 143977 bytes_in 7814616 143977 station_ip 83.122.228.119 143977 port 439 143977 unique_id port 143977 remote_ip 10.8.0.154 143983 username kalantary 143983 mac 143983 bytes_out 0 143983 bytes_in 0 143983 station_ip 83.122.48.161 143983 port 459 143983 unique_id port 143983 remote_ip 10.8.0.98 143987 username hashtadani3 143987 mac 143987 bytes_out 0 143987 bytes_in 0 143987 station_ip 83.122.228.119 143987 port 451 143987 unique_id port 143987 remote_ip 10.8.0.154 143991 username zotaher 143991 mac 143991 bytes_out 0 143991 bytes_in 0 143991 station_ip 83.122.92.23 143991 port 445 143991 unique_id port 143998 username malekpoir 143998 mac 143998 bytes_out 0 143998 bytes_in 0 143998 station_ip 5.119.18.226 143998 port 461 143998 unique_id port 143998 remote_ip 10.8.0.58 144000 username zotaher 144000 mac 144000 bytes_out 0 144000 bytes_in 0 144000 station_ip 83.122.92.23 144000 port 452 144000 unique_id port 144003 username hashtadani3 144003 mac 144003 bytes_out 2337225 144003 bytes_in 18056085 144003 station_ip 83.122.228.119 144003 port 461 144003 unique_id port 144003 remote_ip 10.8.0.154 144005 username hashtadani3 144005 mac 144005 bytes_out 0 144005 bytes_in 0 144005 station_ip 83.122.228.119 144005 port 461 144005 unique_id port 144005 remote_ip 10.8.0.154 144009 username hashtadani3 144009 mac 144009 bytes_out 0 143978 remote_ip 10.8.0.98 143980 username hashtadani3 143980 mac 143980 bytes_out 6023 143980 bytes_in 11621 143980 station_ip 83.122.228.119 143980 port 439 143980 unique_id port 143980 remote_ip 10.8.0.154 143981 username zotaher 143981 kill_reason Another user logged on this global unique id 143981 mac 143981 bytes_out 0 143981 bytes_in 0 143981 station_ip 83.122.92.23 143981 port 445 143981 unique_id port 143981 remote_ip 10.8.0.194 143982 username barzegar 143982 mac 143982 bytes_out 0 143982 bytes_in 0 143982 station_ip 5.119.254.153 143982 port 452 143982 unique_id port 143982 remote_ip 10.8.0.234 143985 username barzegar 143985 mac 143985 bytes_out 0 143985 bytes_in 0 143985 station_ip 5.119.254.153 143985 port 452 143985 unique_id port 143985 remote_ip 10.8.0.234 143986 username zotaher 143986 kill_reason Another user logged on this global unique id 143986 mac 143986 bytes_out 0 143986 bytes_in 0 143986 station_ip 83.122.92.23 143986 port 445 143986 unique_id port 143988 username hashtadani3 143988 mac 143988 bytes_out 0 143988 bytes_in 0 143988 station_ip 83.122.228.119 143988 port 439 143988 unique_id port 143988 remote_ip 10.8.0.154 143989 username hashtadani3 143989 mac 143989 bytes_out 0 143989 bytes_in 0 143989 station_ip 83.122.228.119 143989 port 439 143989 unique_id port 143989 remote_ip 10.8.0.154 143990 username hashtadani3 143990 mac 143990 bytes_out 0 143990 bytes_in 0 143990 station_ip 83.122.228.119 143990 port 439 143990 unique_id port 143990 remote_ip 10.8.0.154 143994 username mosi 143994 mac 143994 bytes_out 0 143994 bytes_in 0 143994 station_ip 151.235.107.13 143994 port 464 143994 unique_id port 143996 username barzegar 143996 mac 143996 bytes_out 0 143996 bytes_in 0 143996 station_ip 5.119.254.153 143996 port 246 143996 unique_id port 143996 remote_ip 10.8.1.174 144001 username meysam 144001 mac 144001 bytes_out 0 144001 bytes_in 0 144001 station_ip 188.158.48.17 144001 port 246 144001 unique_id port 144001 remote_ip 10.8.1.34 144006 username hashtadani3 144006 mac 144006 bytes_out 0 144006 bytes_in 0 144006 station_ip 83.122.228.119 144006 port 246 144006 unique_id port 144006 remote_ip 10.8.1.94 144007 username hashtadani3 144007 mac 144007 bytes_out 0 144007 bytes_in 0 144007 station_ip 83.122.228.119 144007 port 461 144007 unique_id port 144007 remote_ip 10.8.0.154 144010 username alipour 144010 mac 144010 bytes_out 1665283 144010 bytes_in 19223204 144010 station_ip 83.122.223.127 144010 port 247 144010 unique_id port 144010 remote_ip 10.8.1.50 144012 username hashtadani3 144012 mac 144012 bytes_out 0 144012 bytes_in 0 144012 station_ip 83.122.228.119 144012 port 248 144012 unique_id port 144012 remote_ip 10.8.1.94 144014 username kalantary 144014 mac 144014 bytes_out 232968 144014 bytes_in 407365 144014 station_ip 83.122.48.161 144014 port 249 144014 unique_id port 144014 remote_ip 10.8.1.26 144018 username hashtadani3 144018 mac 144018 bytes_out 0 144018 bytes_in 0 144018 station_ip 83.122.228.119 144018 port 247 144018 unique_id port 144018 remote_ip 10.8.1.94 144020 username mehdizare 144020 mac 144020 bytes_out 0 144020 bytes_in 0 144020 station_ip 5.120.252.120 144020 port 243 144020 unique_id port 144020 remote_ip 10.8.1.42 144023 username hashtadani3 144023 mac 144023 bytes_out 0 144023 bytes_in 0 144023 station_ip 83.122.228.119 144023 port 451 144023 unique_id port 144023 remote_ip 10.8.0.154 143997 remote_ip 10.8.0.194 143999 username hashtadani3 143999 mac 143999 bytes_out 812435 143999 bytes_in 8297768 143999 station_ip 83.122.228.119 143999 port 439 143999 unique_id port 143999 remote_ip 10.8.0.154 144002 username barzegar 144002 mac 144002 bytes_out 0 144002 bytes_in 0 144002 station_ip 5.119.254.153 144002 port 246 144002 unique_id port 144002 remote_ip 10.8.1.174 144004 username hashtadani3 144004 mac 144004 bytes_out 0 144004 bytes_in 0 144004 station_ip 83.122.228.119 144004 port 246 144004 unique_id port 144004 remote_ip 10.8.1.94 144008 username mosi 144008 mac 144008 bytes_out 0 144008 bytes_in 0 144008 station_ip 89.47.152.109 144008 port 451 144008 unique_id port 144008 remote_ip 10.8.0.138 144013 username mohammadjavad 144013 mac 144013 bytes_out 0 144013 bytes_in 0 144013 station_ip 37.129.155.59 144013 port 451 144013 unique_id port 144013 remote_ip 10.8.0.142 144016 username hashtadani3 144016 mac 144016 bytes_out 0 144016 bytes_in 0 144016 station_ip 83.122.228.119 144016 port 248 144016 unique_id port 144016 remote_ip 10.8.1.94 144019 username hashtadani3 144019 mac 144019 bytes_out 0 144019 bytes_in 0 144019 station_ip 83.122.228.119 144019 port 451 144019 unique_id port 144019 remote_ip 10.8.0.154 144021 username hashtadani3 144021 mac 144021 bytes_out 0 144021 bytes_in 0 144021 station_ip 83.122.228.119 144021 port 461 144021 unique_id port 144021 remote_ip 10.8.0.154 144027 username aminvpn 144027 mac 144027 bytes_out 0 144027 bytes_in 0 144027 station_ip 83.122.125.76 144027 port 460 144027 unique_id port 144027 remote_ip 10.8.0.14 144029 username barzegar 144029 mac 144029 bytes_out 0 144029 bytes_in 0 144029 station_ip 5.119.254.153 144029 port 461 144029 unique_id port 144029 remote_ip 10.8.0.234 144032 username hashtadani3 144032 mac 144032 bytes_out 0 144032 bytes_in 0 144032 station_ip 83.122.228.119 144032 port 461 144032 unique_id port 144032 remote_ip 10.8.0.154 144034 username hashtadani3 144034 mac 144034 bytes_out 0 144034 bytes_in 0 144034 station_ip 83.122.228.119 144034 port 461 144034 unique_id port 144034 remote_ip 10.8.0.154 144035 username hashtadani3 144035 mac 144035 bytes_out 0 144035 bytes_in 0 144035 station_ip 83.122.228.119 144035 port 466 144035 unique_id port 144035 remote_ip 10.8.0.154 144036 username mirzaei 144036 mac 144036 bytes_out 1517166 144036 bytes_in 2957994 144036 station_ip 5.119.108.72 144036 port 241 144036 unique_id port 144036 remote_ip 10.8.1.30 144038 username alipour 144038 mac 144038 bytes_out 37323 144038 bytes_in 45811 144038 station_ip 83.122.223.127 144038 port 246 144038 unique_id port 144038 remote_ip 10.8.1.50 144040 username forozandeh1 144040 mac 144040 bytes_out 1631583 144040 bytes_in 22065549 144040 station_ip 83.122.134.244 144040 port 459 144040 unique_id port 144040 remote_ip 10.8.0.130 144042 username malekpoir 144042 mac 144042 bytes_out 0 144042 bytes_in 0 144042 station_ip 5.119.18.226 144042 port 462 144042 unique_id port 144042 remote_ip 10.8.0.58 144043 username hashtadani3 144043 kill_reason Maximum check online fails reached 144043 mac 144043 bytes_out 0 144043 bytes_in 0 144043 station_ip 83.122.228.119 144043 port 460 144043 unique_id port 144047 username kordestani 144047 mac 144047 bytes_out 845250 144047 bytes_in 8028734 144047 station_ip 151.235.89.246 144047 port 461 144047 unique_id port 144047 remote_ip 10.8.0.134 144009 bytes_in 0 144009 station_ip 83.122.228.119 144009 port 461 144009 unique_id port 144009 remote_ip 10.8.0.154 144011 username hashtadani3 144011 mac 144011 bytes_out 0 144011 bytes_in 0 144011 station_ip 83.122.228.119 144011 port 248 144011 unique_id port 144011 remote_ip 10.8.1.94 144015 username barzegar 144015 mac 144015 bytes_out 13454 144015 bytes_in 39895 144015 station_ip 5.119.254.153 144015 port 247 144015 unique_id port 144015 remote_ip 10.8.1.174 144017 username hashtadani3 144017 mac 144017 bytes_out 0 144017 bytes_in 0 144017 station_ip 83.122.228.119 144017 port 451 144017 unique_id port 144017 remote_ip 10.8.0.154 144022 username hashtadani3 144022 mac 144022 bytes_out 0 144022 bytes_in 0 144022 station_ip 83.122.228.119 144022 port 451 144022 unique_id port 144022 remote_ip 10.8.0.154 144025 username hashtadani3 144025 mac 144025 bytes_out 0 144025 bytes_in 0 144025 station_ip 83.122.228.119 144025 port 461 144025 unique_id port 144025 remote_ip 10.8.0.154 144026 username hashtadani3 144026 mac 144026 bytes_out 0 144026 bytes_in 0 144026 station_ip 83.122.228.119 144026 port 461 144026 unique_id port 144026 remote_ip 10.8.0.154 144028 username hashtadani3 144028 mac 144028 bytes_out 0 144028 bytes_in 0 144028 station_ip 83.122.228.119 144028 port 460 144028 unique_id port 144028 remote_ip 10.8.0.154 144030 username hashtadani3 144030 mac 144030 bytes_out 0 144030 bytes_in 0 144030 station_ip 83.122.228.119 144030 port 460 144030 unique_id port 144030 remote_ip 10.8.0.154 144033 username kalantary 144033 mac 144033 bytes_out 0 144033 bytes_in 0 144033 station_ip 83.122.48.161 144033 port 243 144033 unique_id port 144033 remote_ip 10.8.1.26 144041 username hashtadani3 144041 kill_reason Maximum number of concurrent logins reached 144041 mac 144041 bytes_out 0 144041 bytes_in 0 144041 station_ip 83.122.228.119 144041 port 459 144041 unique_id port 144046 username hashtadani3 144046 kill_reason Maximum check online fails reached 144046 mac 144046 bytes_out 0 144046 bytes_in 0 144046 station_ip 83.122.228.119 144046 port 243 144046 unique_id port 144052 username mohammadjavad 144052 mac 144052 bytes_out 797566 144052 bytes_in 14311561 144052 station_ip 37.129.20.218 144052 port 467 144052 unique_id port 144052 remote_ip 10.8.0.142 144056 username morteza 144056 mac 144056 bytes_out 0 144056 bytes_in 0 144056 station_ip 37.129.74.51 144056 port 439 144056 unique_id port 144056 remote_ip 10.8.0.46 144060 username farhad2 144060 mac 144060 bytes_out 0 144060 bytes_in 0 144060 station_ip 5.120.137.191 144060 port 246 144060 unique_id port 144060 remote_ip 10.8.1.222 144062 username meysam 144062 mac 144062 bytes_out 0 144062 bytes_in 0 144062 station_ip 188.158.48.17 144062 port 247 144062 unique_id port 144062 remote_ip 10.8.1.34 144063 username farhad2 144063 mac 144063 bytes_out 0 144063 bytes_in 0 144063 station_ip 5.120.137.191 144063 port 246 144063 unique_id port 144063 remote_ip 10.8.1.222 144070 username mohammadjavad 144070 mac 144070 bytes_out 0 144070 bytes_in 0 144070 station_ip 83.122.206.154 144070 port 445 144070 unique_id port 144070 remote_ip 10.8.0.142 144072 username forozandeh1 144072 mac 144072 bytes_out 845597 144072 bytes_in 5670132 144072 station_ip 83.122.134.244 144072 port 459 144072 unique_id port 144072 remote_ip 10.8.0.130 144074 username barzegar 144074 mac 144074 bytes_out 0 144074 bytes_in 0 144024 username hashtadani3 144024 mac 144024 bytes_out 0 144024 bytes_in 0 144024 station_ip 83.122.228.119 144024 port 451 144024 unique_id port 144024 remote_ip 10.8.0.154 144031 username hashtadani3 144031 mac 144031 bytes_out 0 144031 bytes_in 0 144031 station_ip 83.122.228.119 144031 port 461 144031 unique_id port 144031 remote_ip 10.8.0.154 144037 username barzegar 144037 mac 144037 bytes_out 0 144037 bytes_in 0 144037 station_ip 5.119.254.153 144037 port 467 144037 unique_id port 144037 remote_ip 10.8.0.234 144039 username hashtadani3 144039 mac 144039 bytes_out 0 144039 bytes_in 0 144039 station_ip 83.122.228.119 144039 port 466 144039 unique_id port 144039 remote_ip 10.8.0.154 144044 username kalantary 144044 mac 144044 bytes_out 13469 144044 bytes_in 17824 144044 station_ip 83.122.48.161 144044 port 466 144044 unique_id port 144044 remote_ip 10.8.0.98 144045 username farhad2 144045 mac 144045 bytes_out 669955 144045 bytes_in 4294117 144045 station_ip 5.120.137.191 144045 port 463 144045 unique_id port 144045 remote_ip 10.8.0.190 144048 username malekpoir 144048 mac 144048 bytes_out 6047 144048 bytes_in 11386 144048 station_ip 5.119.18.226 144048 port 462 144048 unique_id port 144048 remote_ip 10.8.0.58 144049 username barzegar 144049 mac 144049 bytes_out 0 144049 bytes_in 0 144049 station_ip 5.119.254.153 144049 port 462 144049 unique_id port 144049 remote_ip 10.8.0.234 144051 username morteza 144051 mac 144051 bytes_out 1619865 144051 bytes_in 27276716 144051 station_ip 37.129.74.51 144051 port 439 144051 unique_id port 144051 remote_ip 10.8.0.46 144054 username sekonji3 144054 mac 144054 bytes_out 24542 144054 bytes_in 41194 144054 station_ip 37.129.243.190 144054 port 465 144054 unique_id port 144054 remote_ip 10.8.0.6 144055 username yarmohamadi 144055 mac 144055 bytes_out 9721 144055 bytes_in 22315 144055 station_ip 5.120.57.199 144055 port 241 144055 unique_id port 144055 remote_ip 10.8.1.234 144059 username kalantary 144059 mac 144059 bytes_out 148956 144059 bytes_in 243626 144059 station_ip 83.122.48.161 144059 port 463 144059 unique_id port 144059 remote_ip 10.8.0.98 144061 username moradi 144061 mac 144061 bytes_out 0 144061 bytes_in 0 144061 station_ip 46.225.213.35 144061 port 445 144061 unique_id port 144061 remote_ip 10.8.0.250 144066 username kalantary 144066 mac 144066 bytes_out 0 144066 bytes_in 0 144066 station_ip 83.122.48.161 144066 port 463 144066 unique_id port 144066 remote_ip 10.8.0.98 144067 username godarzi 144067 mac 144067 bytes_out 0 144067 bytes_in 0 144067 station_ip 5.119.114.234 144067 port 245 144067 unique_id port 144067 remote_ip 10.8.1.230 144068 username mehdizare 144068 mac 144068 bytes_out 65431 144068 bytes_in 529552 144068 station_ip 5.120.252.120 144068 port 451 144068 unique_id port 144068 remote_ip 10.8.0.90 144071 username godarzi 144071 mac 144071 bytes_out 656773 144071 bytes_in 4825983 144071 station_ip 5.119.114.234 144071 port 247 144071 unique_id port 144071 remote_ip 10.8.1.230 144082 username hamid.e 144082 kill_reason Maximum number of concurrent logins reached 144082 unique_id port 144082 bytes_out 0 144082 bytes_in 0 144082 station_ip 37.27.25.222 144082 port 15730833 144082 nas_port_type Virtual 144085 username barzegar 144085 mac 144085 bytes_out 0 144085 bytes_in 0 144085 station_ip 5.119.254.153 144085 port 245 144085 unique_id port 144085 remote_ip 10.8.1.174 144088 username hamid.e 144050 username alipour 144050 mac 144050 bytes_out 0 144050 bytes_in 0 144050 station_ip 83.122.223.127 144050 port 241 144050 unique_id port 144050 remote_ip 10.8.1.50 144053 username vanila 144053 mac 144053 bytes_out 0 144053 bytes_in 0 144053 station_ip 37.129.15.32 144053 port 466 144053 unique_id port 144053 remote_ip 10.8.0.178 144057 username sabaghnezhad 144057 mac 144057 bytes_out 0 144057 bytes_in 0 144057 station_ip 95.64.96.166 144057 port 242 144057 unique_id port 144057 remote_ip 10.8.1.130 144058 username mirzaei 144058 mac 144058 bytes_out 0 144058 bytes_in 0 144058 station_ip 5.112.179.64 144058 port 248 144058 unique_id port 144058 remote_ip 10.8.1.30 144064 username moradi 144064 mac 144064 bytes_out 31457 144064 bytes_in 46959 144064 station_ip 188.245.91.205 144064 port 242 144064 unique_id port 144064 remote_ip 10.8.1.202 144065 username alipour 144065 mac 144065 bytes_out 0 144065 bytes_in 0 144065 station_ip 83.122.223.127 144065 port 249 144065 unique_id port 144065 remote_ip 10.8.1.50 144069 username mehdizare 144069 mac 144069 bytes_out 0 144069 bytes_in 0 144069 station_ip 5.120.252.120 144069 port 242 144069 unique_id port 144069 remote_ip 10.8.1.42 144073 username morteza 144073 kill_reason Another user logged on this global unique id 144073 mac 144073 bytes_out 0 144073 bytes_in 0 144073 station_ip 37.129.74.51 144073 port 439 144073 unique_id port 144073 remote_ip 10.8.0.46 144076 username godarzi 144076 mac 144076 bytes_out 69064 144076 bytes_in 266380 144076 station_ip 5.119.114.234 144076 port 247 144076 unique_id port 144076 remote_ip 10.8.1.230 144078 username barzegar 144078 mac 144078 bytes_out 0 144078 bytes_in 0 144078 station_ip 5.119.254.153 144078 port 245 144078 unique_id port 144078 remote_ip 10.8.1.174 144084 username morteza 144084 mac 144084 bytes_out 0 144084 bytes_in 0 144084 station_ip 37.129.74.51 144084 port 247 144084 unique_id port 144084 remote_ip 10.8.1.62 144086 username mirzaei 144086 mac 144086 bytes_out 166674 144086 bytes_in 328259 144086 station_ip 5.119.189.131 144086 port 241 144086 unique_id port 144086 remote_ip 10.8.1.30 144089 username meysam 144089 mac 144089 bytes_out 0 144089 bytes_in 0 144089 station_ip 188.158.48.17 144089 port 248 144089 unique_id port 144089 remote_ip 10.8.1.34 144090 username barzegar 144090 mac 144090 bytes_out 0 144090 bytes_in 0 144090 station_ip 5.119.254.153 144090 port 245 144090 unique_id port 144090 remote_ip 10.8.1.174 144094 username hashtadani3 144094 kill_reason Maximum number of concurrent logins reached 144094 mac 144094 bytes_out 0 144094 bytes_in 0 144094 station_ip 37.129.10.50 144094 port 463 144094 unique_id port 144097 username barzegar 144097 mac 144097 bytes_out 0 144097 bytes_in 0 144097 station_ip 5.119.254.153 144097 port 245 144097 unique_id port 144097 remote_ip 10.8.1.174 144099 username hashtadani3 144099 kill_reason Maximum check online fails reached 144099 mac 144099 bytes_out 0 144099 bytes_in 0 144099 station_ip 37.129.10.50 144099 port 462 144099 unique_id port 144100 username hashtadani3 144100 mac 144100 bytes_out 0 144100 bytes_in 0 144100 station_ip 37.129.10.50 144100 port 463 144100 unique_id port 144100 remote_ip 10.8.0.154 144102 username farhad2 144102 mac 144102 bytes_out 76420 144102 bytes_in 323025 144102 station_ip 5.120.137.191 144102 port 445 144102 unique_id port 144102 remote_ip 10.8.0.190 144110 username mirzaei 144074 station_ip 5.119.254.153 144074 port 462 144074 unique_id port 144074 remote_ip 10.8.0.234 144075 username sabaghnezhad 144075 mac 144075 bytes_out 0 144075 bytes_in 0 144075 station_ip 5.216.51.187 144075 port 245 144075 unique_id port 144075 remote_ip 10.8.1.130 144077 username barzegar 144077 mac 144077 bytes_out 0 144077 bytes_in 0 144077 station_ip 5.119.254.153 144077 port 445 144077 unique_id port 144077 remote_ip 10.8.0.234 144079 username godarzi 144079 mac 144079 bytes_out 0 144079 bytes_in 0 144079 station_ip 5.119.114.234 144079 port 245 144079 unique_id port 144079 remote_ip 10.8.1.230 144080 username morteza 144080 mac 144080 bytes_out 0 144080 bytes_in 0 144080 station_ip 37.129.74.51 144080 port 439 144080 unique_id port 144081 username morteza 144081 mac 144081 bytes_out 0 144081 bytes_in 0 144081 station_ip 37.129.74.51 144081 port 439 144081 unique_id port 144081 remote_ip 10.8.0.46 144083 username barzegar 144083 mac 144083 bytes_out 0 144083 bytes_in 0 144083 station_ip 5.119.254.153 144083 port 247 144083 unique_id port 144083 remote_ip 10.8.1.174 144087 username mohammadjavad 144087 mac 144087 bytes_out 5094407 144087 bytes_in 2966022 144087 station_ip 83.122.86.189 144087 port 459 144087 unique_id port 144087 remote_ip 10.8.0.142 144091 username hashtadani3 144091 mac 144091 bytes_out 45895 144091 bytes_in 94780 144091 station_ip 37.129.10.50 144091 port 459 144091 unique_id port 144091 remote_ip 10.8.0.154 144093 username hashtadani3 144093 mac 144093 bytes_out 0 144093 bytes_in 0 144093 station_ip 37.129.10.50 144093 port 247 144093 unique_id port 144093 remote_ip 10.8.1.94 144104 username godarzi 144104 mac 144104 bytes_out 0 144104 bytes_in 0 144104 station_ip 5.119.114.234 144104 port 245 144104 unique_id port 144104 remote_ip 10.8.1.230 144106 username farhad2 144106 mac 144106 bytes_out 0 144106 bytes_in 0 144106 station_ip 5.120.137.191 144106 port 465 144106 unique_id port 144106 remote_ip 10.8.0.190 144109 username hamidsalari 144109 mac 144109 bytes_out 3244703 144109 bytes_in 38966907 144109 station_ip 5.120.173.3 144109 port 454 144109 unique_id port 144109 remote_ip 10.8.0.222 144115 username hashtadani3 144115 mac 144115 bytes_out 0 144115 bytes_in 0 144115 station_ip 37.129.10.50 144115 port 454 144115 unique_id port 144115 remote_ip 10.8.0.154 144116 username barzegar 144116 mac 144116 bytes_out 5167 144116 bytes_in 7540 144116 station_ip 5.119.254.153 144116 port 465 144116 unique_id port 144116 remote_ip 10.8.0.234 144119 username hashtadani3 144119 mac 144119 bytes_out 0 144119 bytes_in 0 144119 station_ip 37.129.10.50 144119 port 466 144119 unique_id port 144119 remote_ip 10.8.0.154 144121 username morteza 144121 mac 144121 bytes_out 0 144121 bytes_in 0 144121 station_ip 37.129.74.51 144121 port 465 144121 unique_id port 144121 remote_ip 10.8.0.46 144125 username hashtadani3 144125 mac 144125 bytes_out 0 144125 bytes_in 0 144125 station_ip 37.129.10.50 144125 port 465 144125 unique_id port 144125 remote_ip 10.8.0.154 144126 username morteza 144126 mac 144126 bytes_out 0 144126 bytes_in 0 144126 station_ip 37.129.74.51 144126 port 467 144126 unique_id port 144126 remote_ip 10.8.0.46 144128 username hashtadani3 144128 kill_reason Maximum check online fails reached 144128 mac 144128 bytes_out 0 144128 bytes_in 0 144128 station_ip 37.129.10.50 144128 port 466 144088 unique_id port 144088 terminate_cause Lost-Carrier 144088 bytes_out 5210515 144088 bytes_in 96129293 144088 station_ip 37.27.10.131 144088 port 15730832 144088 nas_port_type Virtual 144088 remote_ip 5.5.5.48 144092 username mehdizare 144092 mac 144092 bytes_out 48826 144092 bytes_in 62466 144092 station_ip 5.120.252.120 144092 port 451 144092 unique_id port 144092 remote_ip 10.8.0.90 144095 username farhad2 144095 mac 144095 bytes_out 4089884 144095 bytes_in 43298458 144095 station_ip 5.120.137.191 144095 port 246 144095 unique_id port 144095 remote_ip 10.8.1.222 144096 username morteza 144096 mac 144096 bytes_out 2013 144096 bytes_in 4888 144096 station_ip 37.129.74.51 144096 port 245 144096 unique_id port 144096 remote_ip 10.8.1.62 144098 username kalantary 144098 mac 144098 bytes_out 0 144098 bytes_in 0 144098 station_ip 83.122.13.149 144098 port 445 144098 unique_id port 144098 remote_ip 10.8.0.98 144101 username hashtadani3 144101 kill_reason Maximum check online fails reached 144101 mac 144101 bytes_out 0 144101 bytes_in 0 144101 station_ip 37.129.10.50 144101 port 459 144101 unique_id port 144103 username barzegar 144103 mac 144103 bytes_out 0 144103 bytes_in 0 144103 station_ip 5.119.254.153 144103 port 445 144103 unique_id port 144103 remote_ip 10.8.0.234 144105 username mehdizare 144105 mac 144105 bytes_out 0 144105 bytes_in 0 144105 station_ip 5.120.252.120 144105 port 451 144105 unique_id port 144105 remote_ip 10.8.0.90 144107 username forozandeh1 144107 mac 144107 bytes_out 0 144107 bytes_in 0 144107 station_ip 83.123.92.198 144107 port 439 144107 unique_id port 144107 remote_ip 10.8.0.130 144108 username hashtadani3 144108 mac 144108 bytes_out 835261 144108 bytes_in 12178313 144108 station_ip 37.129.10.50 144108 port 463 144108 unique_id port 144108 remote_ip 10.8.0.154 144117 username hashtadani3 144117 mac 144117 bytes_out 0 144117 bytes_in 0 144117 station_ip 37.129.10.50 144117 port 465 144117 unique_id port 144117 remote_ip 10.8.0.154 144120 username godarzi 144120 mac 144120 bytes_out 55182 144120 bytes_in 79733 144120 station_ip 5.119.114.234 144120 port 247 144120 unique_id port 144120 remote_ip 10.8.1.230 144123 username morteza 144123 mac 144123 bytes_out 0 144123 bytes_in 0 144123 station_ip 37.129.74.51 144123 port 247 144123 unique_id port 144123 remote_ip 10.8.1.62 144124 username hashtadani3 144124 mac 144124 bytes_out 0 144124 bytes_in 0 144124 station_ip 37.129.10.50 144124 port 247 144124 unique_id port 144124 remote_ip 10.8.1.94 144127 username morteza 144127 mac 144127 bytes_out 0 144127 bytes_in 0 144127 station_ip 37.129.74.51 144127 port 467 144127 unique_id port 144127 remote_ip 10.8.0.46 144133 username morteza 144133 mac 144133 bytes_out 0 144133 bytes_in 0 144133 station_ip 37.129.74.51 144133 port 467 144133 unique_id port 144133 remote_ip 10.8.0.46 144134 username hashtadani3 144134 mac 144134 bytes_out 0 144134 bytes_in 0 144134 station_ip 37.129.10.50 144134 port 467 144134 unique_id port 144134 remote_ip 10.8.0.154 144140 username morteza 144140 mac 144140 bytes_out 0 144140 bytes_in 0 144140 station_ip 37.129.74.51 144140 port 467 144140 unique_id port 144140 remote_ip 10.8.0.46 144143 username hashtadani3 144143 kill_reason Maximum number of concurrent logins reached 144143 mac 144143 bytes_out 0 144143 bytes_in 0 144143 station_ip 37.129.10.50 144143 port 241 144143 unique_id port 144148 username hashtadani3 144110 mac 144110 bytes_out 40277 144110 bytes_in 96840 144110 station_ip 5.119.189.131 144110 port 241 144110 unique_id port 144110 remote_ip 10.8.1.30 144111 username meysam 144111 kill_reason Another user logged on this global unique id 144111 mac 144111 bytes_out 0 144111 bytes_in 0 144111 station_ip 188.158.48.17 144111 port 246 144111 unique_id port 144111 remote_ip 10.8.1.34 144112 username barzegar 144112 mac 144112 bytes_out 0 144112 bytes_in 0 144112 station_ip 5.119.254.153 144112 port 454 144112 unique_id port 144112 remote_ip 10.8.0.234 144113 username hashtadani3 144113 mac 144113 bytes_out 0 144113 bytes_in 0 144113 station_ip 37.129.10.50 144113 port 454 144113 unique_id port 144113 remote_ip 10.8.0.154 144114 username morteza 144114 mac 144114 bytes_out 1026203 144114 bytes_in 10119212 144114 station_ip 37.129.74.51 144114 port 247 144114 unique_id port 144114 remote_ip 10.8.1.62 144118 username hashtadani3 144118 kill_reason Maximum check online fails reached 144118 mac 144118 bytes_out 0 144118 bytes_in 0 144118 station_ip 37.129.10.50 144118 port 454 144118 unique_id port 144122 username hashtadani3 144122 mac 144122 bytes_out 0 144122 bytes_in 0 144122 station_ip 37.129.10.50 144122 port 248 144122 unique_id port 144122 remote_ip 10.8.1.94 144129 username meysam 144129 kill_reason Another user logged on this global unique id 144129 mac 144129 bytes_out 0 144129 bytes_in 0 144129 station_ip 188.158.48.17 144129 port 246 144129 unique_id port 144130 username godarzi 144130 mac 144130 bytes_out 42123 144130 bytes_in 57000 144130 station_ip 5.119.114.234 144130 port 247 144130 unique_id port 144130 remote_ip 10.8.1.230 144135 username avaanna 144135 kill_reason Relative expiration date has reached 144135 mac 144135 bytes_out 0 144135 bytes_in 0 144135 station_ip 83.123.237.126 144135 port 467 144135 unique_id port 144138 username morteza 144138 mac 144138 bytes_out 0 144138 bytes_in 0 144138 station_ip 37.129.74.51 144138 port 469 144138 unique_id port 144138 remote_ip 10.8.0.46 144142 username morteza 144142 mac 144142 bytes_out 0 144142 bytes_in 0 144142 station_ip 37.129.74.51 144142 port 469 144142 unique_id port 144142 remote_ip 10.8.0.46 144146 username aminvpn 144146 unique_id port 144146 terminate_cause Lost-Carrier 144146 bytes_out 996154 144146 bytes_in 3275939 144146 station_ip 5.233.49.34 144146 port 15730834 144146 nas_port_type Virtual 144146 remote_ip 5.5.5.54 144149 username morteza 144149 mac 144149 bytes_out 0 144149 bytes_in 0 144149 station_ip 37.129.74.51 144149 port 469 144149 unique_id port 144149 remote_ip 10.8.0.46 144150 username mehrpouyan 144150 mac 144150 bytes_out 0 144150 bytes_in 0 144150 station_ip 5.120.127.196 144150 port 463 144150 unique_id port 144150 remote_ip 10.8.0.74 144160 username hashtadani3 144160 mac 144160 bytes_out 14149 144160 bytes_in 65732 144160 station_ip 37.129.10.50 144160 port 470 144160 unique_id port 144160 remote_ip 10.8.0.154 144162 username hashtadani3 144162 mac 144162 bytes_out 0 144162 bytes_in 0 144162 station_ip 37.129.10.50 144162 port 247 144162 unique_id port 144162 remote_ip 10.8.1.94 144165 username hashtadani3 144165 mac 144165 bytes_out 0 144165 bytes_in 0 144165 station_ip 37.129.10.50 144165 port 247 144165 unique_id port 144165 remote_ip 10.8.1.94 144167 username hashtadani3 144167 mac 144167 bytes_out 2270 144167 bytes_in 4547 144167 station_ip 37.129.10.50 144167 port 465 144167 unique_id port 144128 unique_id port 144131 username hashtadani3 144131 mac 144131 bytes_out 0 144131 bytes_in 0 144131 station_ip 37.129.10.50 144131 port 468 144131 unique_id port 144131 remote_ip 10.8.0.154 144132 username morteza 144132 mac 144132 bytes_out 0 144132 bytes_in 0 144132 station_ip 37.129.74.51 144132 port 467 144132 unique_id port 144132 remote_ip 10.8.0.46 144136 username avaanna 144136 kill_reason Relative expiration date has reached 144136 mac 144136 bytes_out 0 144136 bytes_in 0 144136 station_ip 83.123.237.126 144136 port 467 144136 unique_id port 144137 username mehrpouyan 144137 mac 144137 bytes_out 0 144137 bytes_in 0 144137 station_ip 5.119.213.100 144137 port 463 144137 unique_id port 144137 remote_ip 10.8.0.74 144139 username barzegar 144139 mac 144139 bytes_out 64306 144139 bytes_in 207144 144139 station_ip 5.119.254.153 144139 port 468 144139 unique_id port 144139 remote_ip 10.8.0.234 144141 username mirzaei 144141 mac 144141 bytes_out 0 144141 bytes_in 0 144141 station_ip 5.119.189.131 144141 port 241 144141 unique_id port 144141 remote_ip 10.8.1.30 144144 username morteza 144144 mac 144144 bytes_out 0 144144 bytes_in 0 144144 station_ip 37.129.74.51 144144 port 469 144144 unique_id port 144144 remote_ip 10.8.0.46 144145 username hashtadani3 144145 kill_reason Maximum check online fails reached 144145 mac 144145 bytes_out 0 144145 bytes_in 0 144145 station_ip 37.129.10.50 144145 port 468 144145 unique_id port 144147 username kalantary 144147 kill_reason Another user logged on this global unique id 144147 mac 144147 bytes_out 0 144147 bytes_in 0 144147 station_ip 83.122.116.133 144147 port 465 144147 unique_id port 144147 remote_ip 10.8.0.98 144152 username meysam 144152 mac 144152 bytes_out 0 144152 bytes_in 0 144152 station_ip 188.158.48.17 144152 port 246 144152 unique_id port 144153 username farhad2 144153 kill_reason Another user logged on this global unique id 144153 mac 144153 bytes_out 0 144153 bytes_in 0 144153 station_ip 5.120.137.191 144153 port 245 144153 unique_id port 144153 remote_ip 10.8.1.222 144156 username mehrpouyan 144156 mac 144156 bytes_out 0 144156 bytes_in 0 144156 station_ip 5.120.0.152 144156 port 469 144156 unique_id port 144156 remote_ip 10.8.0.74 144159 username mohammadjavad 144159 kill_reason Another user logged on this global unique id 144159 mac 144159 bytes_out 0 144159 bytes_in 0 144159 station_ip 113.203.10.176 144159 port 465 144159 unique_id port 144159 remote_ip 10.8.0.142 144161 username mohammadjavad 144161 mac 144161 bytes_out 0 144161 bytes_in 0 144161 station_ip 113.203.10.176 144161 port 465 144161 unique_id port 144166 username hashtadani3 144166 mac 144166 bytes_out 0 144166 bytes_in 0 144166 station_ip 37.129.10.50 144166 port 247 144166 unique_id port 144166 remote_ip 10.8.1.94 144170 username hashtadani3 144170 mac 144170 bytes_out 1644 144170 bytes_in 5076 144170 station_ip 37.129.10.50 144170 port 465 144170 unique_id port 144170 remote_ip 10.8.0.154 144173 username barzegar 144173 mac 144173 bytes_out 0 144173 bytes_in 0 144173 station_ip 5.119.254.153 144173 port 248 144173 unique_id port 144173 remote_ip 10.8.1.174 144177 username moradi 144177 mac 144177 bytes_out 378871 144177 bytes_in 504235 144177 station_ip 46.225.213.35 144177 port 242 144177 unique_id port 144177 remote_ip 10.8.1.202 144180 username hashtadani3 144180 mac 144180 bytes_out 0 144180 bytes_in 0 144180 station_ip 37.129.10.50 144180 port 465 144148 kill_reason Maximum check online fails reached 144148 mac 144148 bytes_out 0 144148 bytes_in 0 144148 station_ip 37.129.10.50 144148 port 467 144148 unique_id port 144151 username kalantary 144151 mac 144151 bytes_out 0 144151 bytes_in 0 144151 station_ip 83.122.116.133 144151 port 465 144151 unique_id port 144154 username barzegar 144154 mac 144154 bytes_out 4345 144154 bytes_in 10855 144154 station_ip 5.119.254.153 144154 port 470 144154 unique_id port 144154 remote_ip 10.8.0.234 144155 username godarzi 144155 mac 144155 bytes_out 0 144155 bytes_in 0 144155 station_ip 5.119.114.234 144155 port 241 144155 unique_id port 144155 remote_ip 10.8.1.230 144157 username farhad2 144157 mac 144157 bytes_out 0 144157 bytes_in 0 144157 station_ip 5.120.137.191 144157 port 245 144157 unique_id port 144158 username barzegar 144158 mac 144158 bytes_out 0 144158 bytes_in 0 144158 station_ip 5.119.254.153 144158 port 241 144158 unique_id port 144158 remote_ip 10.8.1.174 144163 username hashtadani3 144163 mac 144163 bytes_out 2248 144163 bytes_in 4679 144163 station_ip 37.129.10.50 144163 port 471 144163 unique_id port 144163 remote_ip 10.8.0.154 144164 username farhad2 144164 mac 144164 bytes_out 0 144164 bytes_in 0 144164 station_ip 5.120.137.191 144164 port 246 144164 unique_id port 144164 remote_ip 10.8.1.222 144169 username barzegar 144169 mac 144169 bytes_out 0 144169 bytes_in 0 144169 station_ip 5.119.254.153 144169 port 247 144169 unique_id port 144169 remote_ip 10.8.1.174 144172 username godarzi 144172 mac 144172 bytes_out 298919 144172 bytes_in 1427138 144172 station_ip 5.119.114.234 144172 port 241 144172 unique_id port 144172 remote_ip 10.8.1.230 144176 username hashtadani3 144176 mac 144176 bytes_out 0 144176 bytes_in 0 144176 station_ip 37.129.10.50 144176 port 241 144176 unique_id port 144176 remote_ip 10.8.1.94 144178 username hashtadani3 144178 mac 144178 bytes_out 0 144178 bytes_in 0 144178 station_ip 37.129.10.50 144178 port 241 144178 unique_id port 144178 remote_ip 10.8.1.94 144179 username houshang 144179 mac 144179 bytes_out 1032903 144179 bytes_in 7918348 144179 station_ip 5.119.229.51 144179 port 463 144179 unique_id port 144179 remote_ip 10.8.0.22 144186 username barzegar 144186 mac 144186 bytes_out 0 144186 bytes_in 0 144186 station_ip 5.119.254.153 144186 port 463 144186 unique_id port 144186 remote_ip 10.8.0.234 144192 username barzegar 144192 mac 144192 bytes_out 0 144192 bytes_in 0 144192 station_ip 5.119.254.153 144192 port 475 144192 unique_id port 144192 remote_ip 10.8.0.234 144195 username hashtadani3 144195 kill_reason Maximum check online fails reached 144195 mac 144195 bytes_out 0 144195 bytes_in 0 144195 station_ip 37.129.10.50 144195 port 474 144195 unique_id port 144201 username aminvpn 144201 unique_id port 144201 terminate_cause Lost-Carrier 144201 bytes_out 36784 144201 bytes_in 285643 144201 station_ip 5.233.49.34 144201 port 15730837 144201 nas_port_type Virtual 144201 remote_ip 5.5.5.62 144203 username mohammadjavad 144203 kill_reason Another user logged on this global unique id 144203 mac 144203 bytes_out 0 144203 bytes_in 0 144203 station_ip 37.129.56.141 144203 port 472 144203 unique_id port 144203 remote_ip 10.8.0.142 144209 username barzegar 144209 mac 144209 bytes_out 0 144209 bytes_in 0 144209 station_ip 5.119.254.153 144209 port 245 144209 unique_id port 144209 remote_ip 10.8.1.174 144214 username mohammadjavad 144167 remote_ip 10.8.0.154 144168 username mirzaei 144168 mac 144168 bytes_out 0 144168 bytes_in 0 144168 station_ip 5.119.189.131 144168 port 463 144168 unique_id port 144168 remote_ip 10.8.0.66 144171 username hashtadani3 144171 mac 144171 bytes_out 0 144171 bytes_in 0 144171 station_ip 37.129.10.50 144171 port 248 144171 unique_id port 144171 remote_ip 10.8.1.94 144174 username hashtadani3 144174 mac 144174 bytes_out 0 144174 bytes_in 0 144174 station_ip 37.129.10.50 144174 port 247 144174 unique_id port 144174 remote_ip 10.8.1.94 144175 username barzegar 144175 mac 144175 bytes_out 0 144175 bytes_in 0 144175 station_ip 5.119.254.153 144175 port 465 144175 unique_id port 144175 remote_ip 10.8.0.234 144181 username hashtadani3 144181 mac 144181 bytes_out 0 144181 bytes_in 0 144181 station_ip 37.129.10.50 144181 port 463 144181 unique_id port 144181 remote_ip 10.8.0.154 144185 username godarzi 144185 mac 144185 bytes_out 0 144185 bytes_in 0 144185 station_ip 5.119.114.234 144185 port 242 144185 unique_id port 144185 remote_ip 10.8.1.230 144188 username hashtadani3 144188 kill_reason Maximum check online fails reached 144188 mac 144188 bytes_out 0 144188 bytes_in 0 144188 station_ip 37.129.10.50 144188 port 463 144188 unique_id port 144190 username houshang 144190 kill_reason Another user logged on this global unique id 144190 mac 144190 bytes_out 0 144190 bytes_in 0 144190 station_ip 5.119.229.51 144190 port 471 144190 unique_id port 144190 remote_ip 10.8.0.22 144191 username hashtadani3 144191 kill_reason Maximum check online fails reached 144191 mac 144191 bytes_out 0 144191 bytes_in 0 144191 station_ip 37.129.10.50 144191 port 473 144191 unique_id port 144194 username hashtadani3 144194 kill_reason Maximum number of concurrent logins reached 144194 mac 144194 bytes_out 0 144194 bytes_in 0 144194 station_ip 37.129.10.50 144194 port 242 144194 unique_id port 144197 username hashtadani3 144197 kill_reason Maximum check online fails reached 144197 mac 144197 bytes_out 0 144197 bytes_in 0 144197 station_ip 37.129.10.50 144197 port 475 144197 unique_id port 144198 username kalantary 144198 mac 144198 bytes_out 0 144198 bytes_in 0 144198 station_ip 83.122.22.153 144198 port 470 144198 unique_id port 144198 remote_ip 10.8.0.98 144199 username aminvpn 144199 unique_id port 144199 terminate_cause Lost-Carrier 144199 bytes_out 349437 144199 bytes_in 1093501 144199 station_ip 5.233.49.34 144199 port 15730836 144199 nas_port_type Virtual 144199 remote_ip 5.5.5.60 144202 username barzegar 144202 mac 144202 bytes_out 0 144202 bytes_in 0 144202 station_ip 5.119.254.153 144202 port 470 144202 unique_id port 144202 remote_ip 10.8.0.234 144206 username houshang 144206 kill_reason Another user logged on this global unique id 144206 mac 144206 bytes_out 0 144206 bytes_in 0 144206 station_ip 5.119.229.51 144206 port 471 144206 unique_id port 144208 username forozandeh1 144208 mac 144208 bytes_out 1506521 144208 bytes_in 21434778 144208 station_ip 83.123.138.64 144208 port 470 144208 unique_id port 144208 remote_ip 10.8.0.130 144211 username hashtadani3 144211 mac 144211 bytes_out 0 144211 bytes_in 0 144211 station_ip 113.203.49.14 144211 port 478 144211 unique_id port 144211 remote_ip 10.8.0.154 144216 username houshang 144216 mac 144216 bytes_out 0 144216 bytes_in 0 144216 station_ip 5.119.229.51 144216 port 471 144216 unique_id port 144221 username mirzaei 144221 mac 144221 bytes_out 127515 144221 bytes_in 221154 144221 station_ip 5.119.92.154 144180 unique_id port 144180 remote_ip 10.8.0.154 144182 username hashtadani3 144182 mac 144182 bytes_out 1644 144182 bytes_in 4649 144182 station_ip 37.129.10.50 144182 port 463 144182 unique_id port 144182 remote_ip 10.8.0.154 144183 username hashtadani3 144183 mac 144183 bytes_out 0 144183 bytes_in 0 144183 station_ip 37.129.10.50 144183 port 463 144183 unique_id port 144183 remote_ip 10.8.0.154 144184 username hashtadani3 144184 mac 144184 bytes_out 0 144184 bytes_in 0 144184 station_ip 37.129.10.50 144184 port 463 144184 unique_id port 144184 remote_ip 10.8.0.154 144187 username mohammadjavad 144187 mac 144187 bytes_out 250699 144187 bytes_in 4468703 144187 station_ip 37.129.56.141 144187 port 465 144187 unique_id port 144187 remote_ip 10.8.0.142 144189 username hashtadani3 144189 kill_reason Maximum check online fails reached 144189 mac 144189 bytes_out 0 144189 bytes_in 0 144189 station_ip 37.129.10.50 144189 port 465 144189 unique_id port 144193 username meysam 144193 mac 144193 bytes_out 359485 144193 bytes_in 4249644 144193 station_ip 188.158.48.17 144193 port 242 144193 unique_id port 144193 remote_ip 10.8.1.34 144196 username farhad2 144196 kill_reason Another user logged on this global unique id 144196 mac 144196 bytes_out 0 144196 bytes_in 0 144196 station_ip 5.120.137.191 144196 port 246 144196 unique_id port 144196 remote_ip 10.8.1.222 144200 username houshang 144200 kill_reason Another user logged on this global unique id 144200 mac 144200 bytes_out 0 144200 bytes_in 0 144200 station_ip 5.119.229.51 144200 port 471 144200 unique_id port 144204 username saeed9658 144204 mac 144204 bytes_out 0 144204 bytes_in 0 144204 station_ip 5.119.125.222 144204 port 245 144204 unique_id port 144204 remote_ip 10.8.1.210 144205 username barzegar 144205 mac 144205 bytes_out 0 144205 bytes_in 0 144205 station_ip 5.119.254.153 144205 port 478 144205 unique_id port 144205 remote_ip 10.8.0.234 144207 username farhad2 144207 mac 144207 bytes_out 0 144207 bytes_in 0 144207 station_ip 5.120.137.191 144207 port 246 144207 unique_id port 144210 username barzegar 144210 mac 144210 bytes_out 0 144210 bytes_in 0 144210 station_ip 5.119.254.153 144210 port 470 144210 unique_id port 144210 remote_ip 10.8.0.234 144212 username houshang 144212 kill_reason Another user logged on this global unique id 144212 mac 144212 bytes_out 0 144212 bytes_in 0 144212 station_ip 5.119.229.51 144212 port 471 144212 unique_id port 144213 username mehdizare 144213 mac 144213 bytes_out 1225961 144213 bytes_in 12586935 144213 station_ip 5.120.252.120 144213 port 445 144213 unique_id port 144213 remote_ip 10.8.0.90 144215 username farhad2 144215 mac 144215 bytes_out 0 144215 bytes_in 0 144215 station_ip 5.120.137.191 144215 port 242 144215 unique_id port 144215 remote_ip 10.8.1.222 144218 username kalantary 144218 mac 144218 bytes_out 0 144218 bytes_in 0 144218 station_ip 83.122.35.225 144218 port 470 144218 unique_id port 144218 remote_ip 10.8.0.98 144220 username yaghobi 144220 mac 144220 bytes_out 1743784 144220 bytes_in 14495544 144220 station_ip 83.122.184.233 144220 port 477 144220 unique_id port 144220 remote_ip 10.8.0.198 144223 username mohammadjavad 144223 mac 144223 bytes_out 0 144223 bytes_in 0 144223 station_ip 37.129.56.141 144223 port 472 144223 unique_id port 144225 username barzegar 144225 mac 144225 bytes_out 0 144225 bytes_in 0 144225 station_ip 5.119.254.153 144225 port 472 144225 unique_id port 144214 kill_reason Another user logged on this global unique id 144214 mac 144214 bytes_out 0 144214 bytes_in 0 144214 station_ip 37.129.56.141 144214 port 472 144214 unique_id port 144217 username godarzi 144217 mac 144217 bytes_out 0 144217 bytes_in 0 144217 station_ip 5.119.114.234 144217 port 248 144217 unique_id port 144217 remote_ip 10.8.1.230 144219 username farhad2 144219 mac 144219 bytes_out 0 144219 bytes_in 0 144219 station_ip 5.120.137.191 144219 port 242 144219 unique_id port 144219 remote_ip 10.8.1.222 144222 username barzegar 144222 mac 144222 bytes_out 0 144222 bytes_in 0 144222 station_ip 5.119.254.153 144222 port 477 144222 unique_id port 144222 remote_ip 10.8.0.234 144224 username meysam 144224 mac 144224 bytes_out 0 144224 bytes_in 0 144224 station_ip 188.158.48.17 144224 port 245 144224 unique_id port 144224 remote_ip 10.8.1.34 144226 username hosseine 144226 kill_reason Another user logged on this global unique id 144226 mac 144226 bytes_out 0 144226 bytes_in 0 144226 station_ip 83.122.86.112 144226 port 452 144226 unique_id port 144226 remote_ip 10.8.0.238 144230 username farhad2 144230 mac 144230 bytes_out 0 144230 bytes_in 0 144230 station_ip 5.120.137.191 144230 port 242 144230 unique_id port 144230 remote_ip 10.8.1.222 144234 username hosseine 144234 mac 144234 bytes_out 0 144234 bytes_in 0 144234 station_ip 83.122.86.112 144234 port 452 144234 unique_id port 144238 username barzegar 144238 mac 144238 bytes_out 0 144238 bytes_in 0 144238 station_ip 5.119.254.153 144238 port 242 144238 unique_id port 144238 remote_ip 10.8.1.174 144242 username barzegar 144242 mac 144242 bytes_out 2631 144242 bytes_in 5168 144242 station_ip 5.119.254.153 144242 port 242 144242 unique_id port 144242 remote_ip 10.8.1.174 144243 username mosi 144243 kill_reason Another user logged on this global unique id 144243 mac 144243 bytes_out 0 144243 bytes_in 0 144243 station_ip 151.235.107.13 144243 port 469 144243 unique_id port 144250 username farhad2 144250 mac 144250 bytes_out 0 144250 bytes_in 0 144250 station_ip 5.119.198.149 144250 port 470 144250 unique_id port 144250 remote_ip 10.8.0.190 144254 username farhad2 144254 mac 144254 bytes_out 35004 144254 bytes_in 138626 144254 station_ip 5.119.198.149 144254 port 470 144254 unique_id port 144254 remote_ip 10.8.0.190 144256 username farhad2 144256 mac 144256 bytes_out 249624 144256 bytes_in 666310 144256 station_ip 5.119.122.155 144256 port 470 144256 unique_id port 144256 remote_ip 10.8.0.190 144262 username kalantary 144262 mac 144262 bytes_out 0 144262 bytes_in 0 144262 station_ip 83.122.19.141 144262 port 471 144262 unique_id port 144262 remote_ip 10.8.0.98 144265 username farhad2 144265 mac 144265 bytes_out 0 144265 bytes_in 0 144265 station_ip 5.119.122.155 144265 port 242 144265 unique_id port 144265 remote_ip 10.8.1.222 144268 username zotaher 144268 mac 144268 bytes_out 0 144268 bytes_in 0 144268 station_ip 83.122.22.96 144268 port 461 144268 unique_id port 144268 remote_ip 10.8.0.194 144269 username zotaher 144269 mac 144269 bytes_out 0 144269 bytes_in 0 144269 station_ip 83.122.22.96 144269 port 471 144269 unique_id port 144269 remote_ip 10.8.0.194 144280 username zotaher 144280 mac 144280 bytes_out 0 144280 bytes_in 0 144280 station_ip 83.122.22.96 144280 port 461 144280 unique_id port 144283 username zotaher 144283 mac 144283 bytes_out 0 144283 bytes_in 0 144221 port 241 144221 unique_id port 144221 remote_ip 10.8.1.30 144227 username morteza 144227 mac 144227 bytes_out 328122 144227 bytes_in 5166342 144227 station_ip 37.129.10.99 144227 port 471 144227 unique_id port 144227 remote_ip 10.8.0.46 144233 username yarmohamadi 144233 mac 144233 bytes_out 5574259 144233 bytes_in 23314014 144233 station_ip 5.120.57.171 144233 port 439 144233 unique_id port 144233 remote_ip 10.8.0.150 144235 username barzegar 144235 mac 144235 bytes_out 0 144235 bytes_in 0 144235 station_ip 5.119.254.153 144235 port 242 144235 unique_id port 144235 remote_ip 10.8.1.174 144239 username mehdizare 144239 mac 144239 bytes_out 0 144239 bytes_in 0 144239 station_ip 5.120.252.120 144239 port 470 144239 unique_id port 144239 remote_ip 10.8.0.90 144244 username forozandeh1 144244 mac 144244 bytes_out 0 144244 bytes_in 0 144244 station_ip 83.123.179.178 144244 port 470 144244 unique_id port 144244 remote_ip 10.8.0.130 144246 username morteza 144246 mac 144246 bytes_out 0 144246 bytes_in 0 144246 station_ip 37.129.43.95 144246 port 470 144246 unique_id port 144246 remote_ip 10.8.0.46 144247 username farhad2 144247 mac 144247 bytes_out 2112975 144247 bytes_in 7123275 144247 station_ip 5.119.198.149 144247 port 471 144247 unique_id port 144247 remote_ip 10.8.0.190 144248 username barzegar 144248 mac 144248 bytes_out 0 144248 bytes_in 0 144248 station_ip 5.119.254.153 144248 port 242 144248 unique_id port 144248 remote_ip 10.8.1.174 144257 username kamali2 144257 kill_reason Another user logged on this global unique id 144257 mac 144257 bytes_out 0 144257 bytes_in 0 144257 station_ip 5.202.9.251 144257 port 476 144257 unique_id port 144257 remote_ip 10.8.0.214 144258 username barzegar 144258 mac 144258 bytes_out 0 144258 bytes_in 0 144258 station_ip 5.119.254.153 144258 port 245 144258 unique_id port 144258 remote_ip 10.8.1.174 144263 username barzegar 144263 mac 144263 bytes_out 0 144263 bytes_in 0 144263 station_ip 5.119.254.153 144263 port 245 144263 unique_id port 144263 remote_ip 10.8.1.174 144267 username farhad2 144267 mac 144267 bytes_out 0 144267 bytes_in 0 144267 station_ip 5.119.122.155 144267 port 242 144267 unique_id port 144267 remote_ip 10.8.1.222 144271 username zotaher 144271 kill_reason Another user logged on this global unique id 144271 mac 144271 bytes_out 0 144271 bytes_in 0 144271 station_ip 83.122.22.96 144271 port 461 144271 unique_id port 144271 remote_ip 10.8.0.194 144272 username moradi 144272 kill_reason Another user logged on this global unique id 144272 mac 144272 bytes_out 0 144272 bytes_in 0 144272 station_ip 46.225.213.35 144272 port 247 144272 unique_id port 144272 remote_ip 10.8.1.202 144274 username kordestani 144274 mac 144274 bytes_out 0 144274 bytes_in 0 144274 station_ip 151.235.89.246 144274 port 445 144274 unique_id port 144274 remote_ip 10.8.0.134 144276 username kalantary 144276 mac 144276 bytes_out 0 144276 bytes_in 0 144276 station_ip 83.122.123.49 144276 port 246 144276 unique_id port 144276 remote_ip 10.8.1.26 144277 username farhad2 144277 mac 144277 bytes_out 2318731 144277 bytes_in 25131910 144277 station_ip 5.119.122.155 144277 port 242 144277 unique_id port 144277 remote_ip 10.8.1.222 144282 username barzegar 144282 mac 144282 bytes_out 0 144282 bytes_in 0 144282 station_ip 5.119.254.153 144282 port 477 144282 unique_id port 144282 remote_ip 10.8.0.234 144285 username zotaher 144285 mac 144225 remote_ip 10.8.0.234 144228 username morteza 144228 mac 144228 bytes_out 0 144228 bytes_in 0 144228 station_ip 37.129.10.99 144228 port 471 144228 unique_id port 144228 remote_ip 10.8.0.46 144229 username mosi 144229 kill_reason Another user logged on this global unique id 144229 mac 144229 bytes_out 0 144229 bytes_in 0 144229 station_ip 151.235.107.13 144229 port 469 144229 unique_id port 144229 remote_ip 10.8.0.138 144231 username morteza 144231 mac 144231 bytes_out 0 144231 bytes_in 0 144231 station_ip 37.129.10.99 144231 port 242 144231 unique_id port 144231 remote_ip 10.8.1.62 144232 username malekpoir 144232 kill_reason Another user logged on this global unique id 144232 mac 144232 bytes_out 0 144232 bytes_in 0 144232 station_ip 5.119.18.226 144232 port 461 144232 unique_id port 144232 remote_ip 10.8.0.58 144236 username barzegar 144236 mac 144236 bytes_out 0 144236 bytes_in 0 144236 station_ip 5.119.254.153 144236 port 242 144236 unique_id port 144236 remote_ip 10.8.1.174 144237 username malekpoir 144237 kill_reason Another user logged on this global unique id 144237 mac 144237 bytes_out 0 144237 bytes_in 0 144237 station_ip 5.119.18.226 144237 port 461 144237 unique_id port 144240 username barzegar 144240 mac 144240 bytes_out 0 144240 bytes_in 0 144240 station_ip 5.119.254.153 144240 port 242 144240 unique_id port 144240 remote_ip 10.8.1.174 144241 username malekpoir 144241 mac 144241 bytes_out 0 144241 bytes_in 0 144241 station_ip 5.119.18.226 144241 port 461 144241 unique_id port 144245 username kordestani 144245 mac 144245 bytes_out 635827 144245 bytes_in 3828813 144245 station_ip 151.235.89.246 144245 port 445 144245 unique_id port 144245 remote_ip 10.8.0.134 144249 username hamid.e 144249 unique_id port 144249 terminate_cause User-Request 144249 bytes_out 12458940 144249 bytes_in 216331981 144249 station_ip 37.27.25.222 144249 port 15730835 144249 nas_port_type Virtual 144249 remote_ip 5.5.5.58 144251 username mosi 144251 kill_reason Another user logged on this global unique id 144251 mac 144251 bytes_out 0 144251 bytes_in 0 144251 station_ip 151.235.107.13 144251 port 469 144251 unique_id port 144252 username alikomsari 144252 mac 144252 bytes_out 3293834 144252 bytes_in 30806729 144252 station_ip 5.119.68.223 144252 port 472 144252 unique_id port 144252 remote_ip 10.8.0.70 144253 username kalantary 144253 mac 144253 bytes_out 639902 144253 bytes_in 7989645 144253 station_ip 83.122.75.181 144253 port 477 144253 unique_id port 144253 remote_ip 10.8.0.98 144255 username zotaher 144255 kill_reason Another user logged on this global unique id 144255 mac 144255 bytes_out 0 144255 bytes_in 0 144255 station_ip 83.122.22.96 144255 port 471 144255 unique_id port 144255 remote_ip 10.8.0.194 144259 username malekpoir 144259 mac 144259 bytes_out 62040 144259 bytes_in 215107 144259 station_ip 5.119.18.226 144259 port 461 144259 unique_id port 144259 remote_ip 10.8.0.58 144260 username zotaher 144260 mac 144260 bytes_out 0 144260 bytes_in 0 144260 station_ip 83.122.22.96 144260 port 471 144260 unique_id port 144261 username sabaghnezhad 144261 mac 144261 bytes_out 1567312 144261 bytes_in 24534523 144261 station_ip 5.216.51.187 144261 port 478 144261 unique_id port 144261 remote_ip 10.8.0.186 144264 username aminvpn 144264 kill_reason Another user logged on this global unique id 144264 mac 144264 bytes_out 0 144264 bytes_in 0 144264 station_ip 83.122.125.76 144264 port 464 144264 unique_id port 144264 remote_ip 10.8.0.14 144266 username barzegar 144266 mac 144266 bytes_out 0 144266 bytes_in 0 144266 station_ip 5.119.254.153 144266 port 245 144266 unique_id port 144266 remote_ip 10.8.1.174 144270 username barzegar 144270 mac 144270 bytes_out 3263 144270 bytes_in 5723 144270 station_ip 5.119.254.153 144270 port 471 144270 unique_id port 144270 remote_ip 10.8.0.234 144273 username mosi 144273 kill_reason Another user logged on this global unique id 144273 mac 144273 bytes_out 0 144273 bytes_in 0 144273 station_ip 151.235.107.13 144273 port 469 144273 unique_id port 144275 username barzegar 144275 mac 144275 bytes_out 0 144275 bytes_in 0 144275 station_ip 5.119.254.153 144275 port 471 144275 unique_id port 144275 remote_ip 10.8.0.234 144278 username barzegar 144278 mac 144278 bytes_out 0 144278 bytes_in 0 144278 station_ip 5.119.254.153 144278 port 477 144278 unique_id port 144278 remote_ip 10.8.0.234 144279 username mohammadjavad 144279 kill_reason Another user logged on this global unique id 144279 mac 144279 bytes_out 0 144279 bytes_in 0 144279 station_ip 83.122.69.122 144279 port 445 144279 unique_id port 144279 remote_ip 10.8.0.142 144281 username houshang 144281 mac 144281 bytes_out 0 144281 bytes_in 0 144281 station_ip 5.119.229.51 144281 port 471 144281 unique_id port 144281 remote_ip 10.8.0.22 144286 username farhad2 144286 mac 144286 bytes_out 0 144286 bytes_in 0 144286 station_ip 5.119.122.155 144286 port 242 144286 unique_id port 144286 remote_ip 10.8.1.222 144289 username aminvpn 144289 unique_id port 144289 terminate_cause Lost-Carrier 144289 bytes_out 1567102 144289 bytes_in 5945164 144289 station_ip 5.233.49.34 144289 port 15730838 144289 nas_port_type Virtual 144289 remote_ip 5.5.5.63 144293 username saeed9658 144293 mac 144293 bytes_out 8675 144293 bytes_in 21265 144293 station_ip 5.119.125.222 144293 port 246 144293 unique_id port 144293 remote_ip 10.8.1.210 144301 username barzegar 144301 mac 144301 bytes_out 0 144301 bytes_in 0 144301 station_ip 5.119.254.153 144301 port 242 144301 unique_id port 144301 remote_ip 10.8.1.174 144305 username hosseine 144305 mac 144305 bytes_out 0 144305 bytes_in 0 144305 station_ip 83.122.86.112 144305 port 439 144305 unique_id port 144312 username hashtadani3 144312 kill_reason Maximum check online fails reached 144312 mac 144312 bytes_out 0 144312 bytes_in 0 144312 station_ip 37.129.172.2 144312 port 461 144312 unique_id port 144315 username hashtadani3 144315 mac 144315 bytes_out 0 144315 bytes_in 0 144315 station_ip 37.129.172.2 144315 port 245 144315 unique_id port 144315 remote_ip 10.8.1.94 144322 username kamali2 144322 mac 144322 bytes_out 0 144322 bytes_in 0 144322 station_ip 5.202.9.251 144322 port 476 144322 unique_id port 144323 username barzegar 144323 mac 144323 bytes_out 0 144323 bytes_in 0 144323 station_ip 5.119.254.153 144323 port 245 144323 unique_id port 144323 remote_ip 10.8.1.174 144325 username hashtadani3 144325 kill_reason Maximum check online fails reached 144325 mac 144325 bytes_out 0 144325 bytes_in 0 144325 station_ip 37.129.172.2 144325 port 478 144325 unique_id port 144330 username vanila 144330 mac 144330 bytes_out 1586439 144330 bytes_in 5970418 144330 station_ip 37.129.114.68 144330 port 439 144330 unique_id port 144330 remote_ip 10.8.0.178 144332 username mehdizare 144332 mac 144332 bytes_out 316565 144332 bytes_in 467856 144332 station_ip 5.120.252.120 144332 port 452 144332 unique_id port 144332 remote_ip 10.8.0.90 144333 username barzegar 144333 mac 144283 station_ip 83.122.22.96 144283 port 478 144283 unique_id port 144283 remote_ip 10.8.0.194 144284 username zotaher 144284 mac 144284 bytes_out 2687 144284 bytes_in 5330 144284 station_ip 83.122.22.96 144284 port 461 144284 unique_id port 144284 remote_ip 10.8.0.194 144288 username kamali2 144288 kill_reason Another user logged on this global unique id 144288 mac 144288 bytes_out 0 144288 bytes_in 0 144288 station_ip 5.202.9.251 144288 port 476 144288 unique_id port 144292 username mohammadjavad 144292 kill_reason Another user logged on this global unique id 144292 mac 144292 bytes_out 0 144292 bytes_in 0 144292 station_ip 83.122.69.122 144292 port 445 144292 unique_id port 144295 username farhad2 144295 mac 144295 bytes_out 0 144295 bytes_in 0 144295 station_ip 5.119.122.155 144295 port 242 144295 unique_id port 144295 remote_ip 10.8.1.222 144296 username mohammadjavad 144296 kill_reason Another user logged on this global unique id 144296 mac 144296 bytes_out 0 144296 bytes_in 0 144296 station_ip 83.122.69.122 144296 port 445 144296 unique_id port 144299 username farhad2 144299 mac 144299 bytes_out 3134848 144299 bytes_in 40317672 144299 station_ip 5.119.122.155 144299 port 461 144299 unique_id port 144299 remote_ip 10.8.0.190 144300 username kalantary 144300 mac 144300 bytes_out 0 144300 bytes_in 0 144300 station_ip 83.122.7.149 144300 port 242 144300 unique_id port 144300 remote_ip 10.8.1.26 144303 username hosseine 144303 kill_reason Another user logged on this global unique id 144303 mac 144303 bytes_out 0 144303 bytes_in 0 144303 station_ip 83.122.86.112 144303 port 439 144303 unique_id port 144303 remote_ip 10.8.0.238 144307 username moradi 144307 mac 144307 bytes_out 0 144307 bytes_in 0 144307 station_ip 46.225.213.35 144307 port 247 144307 unique_id port 144308 username godarzi 144308 mac 144308 bytes_out 0 144308 bytes_in 0 144308 station_ip 5.202.5.1 144308 port 245 144308 unique_id port 144308 remote_ip 10.8.1.230 144316 username aminvpn 144316 mac 144316 bytes_out 0 144316 bytes_in 0 144316 station_ip 83.122.88.47 144316 port 471 144316 unique_id port 144316 remote_ip 10.8.0.14 144317 username hashtadani3 144317 mac 144317 bytes_out 0 144317 bytes_in 0 144317 station_ip 37.129.172.2 144317 port 245 144317 unique_id port 144317 remote_ip 10.8.1.94 144318 username hashtadani3 144318 mac 144318 bytes_out 0 144318 bytes_in 0 144318 station_ip 37.129.172.2 144318 port 477 144318 unique_id port 144318 remote_ip 10.8.0.154 144320 username aminvpn 144320 kill_reason Maximum check online fails reached 144320 mac 144320 bytes_out 0 144320 bytes_in 0 144320 station_ip 83.122.88.47 144320 port 472 144320 unique_id port 144321 username hashtadani3 144321 kill_reason Maximum number of concurrent logins reached 144321 mac 144321 bytes_out 0 144321 bytes_in 0 144321 station_ip 37.129.172.2 144321 port 245 144321 unique_id port 144327 username mirzaei 144327 mac 144327 bytes_out 0 144327 bytes_in 0 144327 station_ip 5.119.92.154 144327 port 241 144327 unique_id port 144327 remote_ip 10.8.1.30 144328 username barzegar 144328 mac 144328 bytes_out 0 144328 bytes_in 0 144328 station_ip 5.119.254.153 144328 port 476 144328 unique_id port 144328 remote_ip 10.8.0.234 144334 username moradi 144334 mac 144334 bytes_out 0 144334 bytes_in 0 144334 station_ip 46.225.213.35 144334 port 242 144334 unique_id port 144334 remote_ip 10.8.1.202 144335 username mohammadmahdi 144335 kill_reason Another user logged on this global unique id 144335 mac 144285 bytes_out 3141 144285 bytes_in 5638 144285 station_ip 83.122.22.96 144285 port 471 144285 unique_id port 144285 remote_ip 10.8.0.194 144287 username mohammadjavad 144287 kill_reason Another user logged on this global unique id 144287 mac 144287 bytes_out 0 144287 bytes_in 0 144287 station_ip 83.122.69.122 144287 port 445 144287 unique_id port 144290 username barzegar 144290 mac 144290 bytes_out 0 144290 bytes_in 0 144290 station_ip 5.119.254.153 144290 port 461 144290 unique_id port 144290 remote_ip 10.8.0.234 144291 username farhad2 144291 mac 144291 bytes_out 0 144291 bytes_in 0 144291 station_ip 5.119.122.155 144291 port 242 144291 unique_id port 144291 remote_ip 10.8.1.222 144294 username barzegar 144294 mac 144294 bytes_out 0 144294 bytes_in 0 144294 station_ip 5.119.254.153 144294 port 246 144294 unique_id port 144294 remote_ip 10.8.1.174 144297 username barzegar 144297 mac 144297 bytes_out 0 144297 bytes_in 0 144297 station_ip 5.119.254.153 144297 port 242 144297 unique_id port 144297 remote_ip 10.8.1.174 144298 username mohammadjavad 144298 mac 144298 bytes_out 0 144298 bytes_in 0 144298 station_ip 83.122.69.122 144298 port 445 144298 unique_id port 144302 username bcboard 144302 unique_id port 144302 terminate_cause User-Request 144302 bytes_out 91586 144302 bytes_in 1010970 144302 station_ip 37.129.161.211 144302 port 15730841 144302 nas_port_type Virtual 144302 remote_ip 5.5.5.81 144304 username sabaghnezhad 144304 mac 144304 bytes_out 0 144304 bytes_in 0 144304 station_ip 5.216.51.187 144304 port 472 144304 unique_id port 144304 remote_ip 10.8.0.186 144306 username barzegar 144306 mac 144306 bytes_out 0 144306 bytes_in 0 144306 station_ip 5.119.254.153 144306 port 242 144306 unique_id port 144306 remote_ip 10.8.1.174 144309 username hashtadani3 144309 mac 144309 bytes_out 81535 144309 bytes_in 773121 144309 station_ip 37.129.172.2 144309 port 445 144309 unique_id port 144309 remote_ip 10.8.0.154 144310 username aminvpn 144310 mac 144310 bytes_out 0 144310 bytes_in 0 144310 station_ip 83.122.125.76 144310 port 464 144310 unique_id port 144311 username aminvpn 144311 mac 144311 bytes_out 0 144311 bytes_in 0 144311 station_ip 83.122.88.47 144311 port 471 144311 unique_id port 144311 remote_ip 10.8.0.14 144313 username hashtadani3 144313 mac 144313 bytes_out 0 144313 bytes_in 0 144313 station_ip 37.129.172.2 144313 port 245 144313 unique_id port 144313 remote_ip 10.8.1.94 144314 username aminvpn 144314 mac 144314 bytes_out 0 144314 bytes_in 0 144314 station_ip 83.122.125.76 144314 port 464 144314 unique_id port 144314 remote_ip 10.8.0.14 144319 username hashtadani3 144319 kill_reason Maximum check online fails reached 144319 mac 144319 bytes_out 0 144319 bytes_in 0 144319 station_ip 37.129.172.2 144319 port 471 144319 unique_id port 144324 username mosi 144324 kill_reason Another user logged on this global unique id 144324 mac 144324 bytes_out 0 144324 bytes_in 0 144324 station_ip 151.235.107.13 144324 port 469 144324 unique_id port 144326 username hashtadani3 144326 kill_reason Maximum check online fails reached 144326 mac 144326 bytes_out 0 144326 bytes_in 0 144326 station_ip 37.129.172.2 144326 port 477 144326 unique_id port 144329 username barzegar 144329 mac 144329 bytes_out 0 144329 bytes_in 0 144329 station_ip 5.119.254.153 144329 port 476 144329 unique_id port 144329 remote_ip 10.8.0.234 144331 username morteza 144331 mac 144331 bytes_out 0 144331 bytes_in 0 144331 station_ip 83.123.205.194 144331 port 247 144331 unique_id port 144331 remote_ip 10.8.1.62 144336 username kalantary 144336 mac 144336 bytes_out 0 144336 bytes_in 0 144336 station_ip 83.122.33.165 144336 port 246 144336 unique_id port 144336 remote_ip 10.8.1.26 144339 username morteza 144339 mac 144339 bytes_out 0 144339 bytes_in 0 144339 station_ip 83.123.205.194 144339 port 246 144339 unique_id port 144339 remote_ip 10.8.1.62 144341 username amirabbas 144341 unique_id port 144341 terminate_cause User-Request 144341 bytes_out 670528 144341 bytes_in 9987192 144341 station_ip 37.27.31.233 144341 port 15730842 144341 nas_port_type Virtual 144341 remote_ip 5.5.5.93 144343 username moradi 144343 mac 144343 bytes_out 0 144343 bytes_in 0 144343 station_ip 46.225.213.35 144343 port 247 144343 unique_id port 144343 remote_ip 10.8.1.202 144344 username morteza 144344 kill_reason Another user logged on this global unique id 144344 mac 144344 bytes_out 0 144344 bytes_in 0 144344 station_ip 83.123.205.194 144344 port 476 144344 unique_id port 144344 remote_ip 10.8.0.46 144346 username barzegar 144346 mac 144346 bytes_out 30700 144346 bytes_in 46276 144346 station_ip 5.119.254.153 144346 port 439 144346 unique_id port 144346 remote_ip 10.8.0.234 144354 username aminvpn 144354 mac 144354 bytes_out 0 144354 bytes_in 0 144354 station_ip 83.122.125.76 144354 port 480 144354 unique_id port 144354 remote_ip 10.8.0.14 144357 username houshang 144357 kill_reason Another user logged on this global unique id 144357 mac 144357 bytes_out 0 144357 bytes_in 0 144357 station_ip 5.119.229.51 144357 port 439 144357 unique_id port 144357 remote_ip 10.8.0.22 144364 username malekpoir 144364 kill_reason Another user logged on this global unique id 144364 mac 144364 bytes_out 0 144364 bytes_in 0 144364 station_ip 5.119.18.226 144364 port 470 144364 unique_id port 144364 remote_ip 10.8.0.58 144369 username hosseine 144369 mac 144369 bytes_out 0 144369 bytes_in 0 144369 station_ip 83.122.86.112 144369 port 245 144369 unique_id port 144369 remote_ip 10.8.1.190 144371 username morteza 144371 kill_reason Another user logged on this global unique id 144371 mac 144371 bytes_out 0 144371 bytes_in 0 144371 station_ip 83.123.205.194 144371 port 476 144371 unique_id port 144378 username barzegar 144378 mac 144378 bytes_out 0 144378 bytes_in 0 144378 station_ip 5.119.254.153 144378 port 247 144378 unique_id port 144378 remote_ip 10.8.1.174 144380 username hamidsalari 144380 kill_reason Another user logged on this global unique id 144380 mac 144380 bytes_out 0 144380 bytes_in 0 144380 station_ip 5.120.173.3 144380 port 451 144380 unique_id port 144380 remote_ip 10.8.0.222 144387 username morteza 144387 mac 144387 bytes_out 0 144387 bytes_in 0 144387 station_ip 83.123.205.194 144387 port 247 144387 unique_id port 144387 remote_ip 10.8.1.62 144391 username mosi 144391 mac 144391 bytes_out 0 144391 bytes_in 0 144391 station_ip 92.114.74.231 144391 port 481 144391 unique_id port 144391 remote_ip 10.8.0.138 144396 username ayobi 144396 mac 144396 bytes_out 1354071 144396 bytes_in 21278047 144396 station_ip 37.27.13.217 144396 port 452 144396 unique_id port 144396 remote_ip 10.8.0.246 144406 username mosi 144406 mac 144406 bytes_out 0 144406 bytes_in 0 144406 station_ip 151.235.107.13 144406 port 469 144406 unique_id port 144406 remote_ip 10.8.0.138 144408 username morteza 144408 mac 144408 bytes_out 0 144408 bytes_in 0 144408 station_ip 83.123.205.194 144333 bytes_out 0 144333 bytes_in 0 144333 station_ip 5.119.254.153 144333 port 247 144333 unique_id port 144333 remote_ip 10.8.1.174 144337 username morteza 144337 mac 144337 bytes_out 0 144337 bytes_in 0 144337 station_ip 83.123.205.194 144337 port 479 144337 unique_id port 144337 remote_ip 10.8.0.46 144340 username godarzi 144340 mac 144340 bytes_out 0 144340 bytes_in 0 144340 station_ip 5.202.5.1 144340 port 242 144340 unique_id port 144340 remote_ip 10.8.1.230 144342 username mehdizare 144342 mac 144342 bytes_out 0 144342 bytes_in 0 144342 station_ip 5.120.252.120 144342 port 242 144342 unique_id port 144342 remote_ip 10.8.1.42 144345 username aminvpn 144345 mac 144345 bytes_out 2973130 144345 bytes_in 5517216 144345 station_ip 83.122.125.76 144345 port 464 144345 unique_id port 144345 remote_ip 10.8.0.14 144347 username aminvpn 144347 mac 144347 bytes_out 0 144347 bytes_in 0 144347 station_ip 83.122.193.213 144347 port 481 144347 unique_id port 144347 remote_ip 10.8.0.14 144348 username aminvpn 144348 mac 144348 bytes_out 0 144348 bytes_in 0 144348 station_ip 83.122.125.76 144348 port 439 144348 unique_id port 144348 remote_ip 10.8.0.14 144355 username aminvpn 144355 mac 144355 bytes_out 0 144355 bytes_in 0 144355 station_ip 83.122.193.213 144355 port 464 144355 unique_id port 144355 remote_ip 10.8.0.14 144356 username aminvpn 144356 mac 144356 bytes_out 0 144356 bytes_in 0 144356 station_ip 83.122.125.76 144356 port 479 144356 unique_id port 144356 remote_ip 10.8.0.14 144359 username mosi 144359 kill_reason Another user logged on this global unique id 144359 mac 144359 bytes_out 0 144359 bytes_in 0 144359 station_ip 151.235.107.13 144359 port 469 144359 unique_id port 144363 username aminvpn 144363 mac 144363 bytes_out 170105 144363 bytes_in 264721 144363 station_ip 83.122.193.213 144363 port 464 144363 unique_id port 144363 remote_ip 10.8.0.14 144367 username sabaghnezhad 144367 mac 144367 bytes_out 21498 144367 bytes_in 92687 144367 station_ip 5.213.47.11 144367 port 464 144367 unique_id port 144367 remote_ip 10.8.0.186 144372 username aminvpn 144372 mac 144372 bytes_out 192440 144372 bytes_in 1019279 144372 station_ip 83.122.193.213 144372 port 479 144372 unique_id port 144372 remote_ip 10.8.0.14 144374 username forozandeh1 144374 mac 144374 bytes_out 0 144374 bytes_in 0 144374 station_ip 37.129.110.62 144374 port 464 144374 unique_id port 144374 remote_ip 10.8.0.130 144379 username aminvpn 144379 mac 144379 bytes_out 0 144379 bytes_in 0 144379 station_ip 83.122.125.76 144379 port 464 144379 unique_id port 144379 remote_ip 10.8.0.14 144381 username aminvpn 144381 mac 144381 bytes_out 257800 144381 bytes_in 955517 144381 station_ip 83.122.193.213 144381 port 480 144381 unique_id port 144381 remote_ip 10.8.0.14 144382 username aminvpn 144382 mac 144382 bytes_out 0 144382 bytes_in 0 144382 station_ip 83.122.125.76 144382 port 464 144382 unique_id port 144382 remote_ip 10.8.0.14 144383 username kalantary 144383 mac 144383 bytes_out 0 144383 bytes_in 0 144383 station_ip 83.122.55.53 144383 port 247 144383 unique_id port 144383 remote_ip 10.8.1.26 144384 username aminvpn 144384 mac 144384 bytes_out 190916 144384 bytes_in 863709 144384 station_ip 83.122.193.213 144384 port 480 144384 unique_id port 144384 remote_ip 10.8.0.14 144388 username mosi 144388 mac 144388 bytes_out 0 144388 bytes_in 0 144335 bytes_out 0 144335 bytes_in 0 144335 station_ip 5.120.118.94 144335 port 445 144335 unique_id port 144335 remote_ip 10.8.0.54 144338 username vanila 144338 mac 144338 bytes_out 6102946 144338 bytes_in 659452 144338 station_ip 37.129.114.68 144338 port 476 144338 unique_id port 144338 remote_ip 10.8.0.178 144349 username houshang 144349 mac 144349 bytes_out 0 144349 bytes_in 0 144349 station_ip 5.119.229.51 144349 port 480 144349 unique_id port 144349 remote_ip 10.8.0.22 144350 username aminvpn 144350 mac 144350 bytes_out 0 144350 bytes_in 0 144350 station_ip 83.122.193.213 144350 port 464 144350 unique_id port 144350 remote_ip 10.8.0.14 144351 username aminvpn 144351 mac 144351 bytes_out 0 144351 bytes_in 0 144351 station_ip 83.122.125.76 144351 port 480 144351 unique_id port 144351 remote_ip 10.8.0.14 144352 username aminvpn 144352 mac 144352 bytes_out 0 144352 bytes_in 0 144352 station_ip 83.122.193.213 144352 port 464 144352 unique_id port 144352 remote_ip 10.8.0.14 144353 username sabaghnezhad 144353 mac 144353 bytes_out 130844 144353 bytes_in 132701 144353 station_ip 5.215.22.102 144353 port 479 144353 unique_id port 144353 remote_ip 10.8.0.186 144358 username aminvpn 144358 mac 144358 bytes_out 0 144358 bytes_in 0 144358 station_ip 83.122.193.213 144358 port 464 144358 unique_id port 144358 remote_ip 10.8.0.14 144360 username morteza 144360 kill_reason Another user logged on this global unique id 144360 mac 144360 bytes_out 0 144360 bytes_in 0 144360 station_ip 83.123.205.194 144360 port 476 144360 unique_id port 144361 username aminvpn 144361 mac 144361 bytes_out 0 144361 bytes_in 0 144361 station_ip 83.122.125.76 144361 port 479 144361 unique_id port 144361 remote_ip 10.8.0.14 144362 username mohammadmahdi 144362 kill_reason Another user logged on this global unique id 144362 mac 144362 bytes_out 0 144362 bytes_in 0 144362 station_ip 5.120.118.94 144362 port 445 144362 unique_id port 144365 username aminvpn 144365 mac 144365 bytes_out 0 144365 bytes_in 0 144365 station_ip 83.122.125.76 144365 port 479 144365 unique_id port 144365 remote_ip 10.8.0.14 144366 username houshang 144366 mac 144366 bytes_out 0 144366 bytes_in 0 144366 station_ip 5.119.229.51 144366 port 439 144366 unique_id port 144368 username aminvpn 144368 mac 144368 bytes_out 277384 144368 bytes_in 892440 144368 station_ip 83.122.193.213 144368 port 480 144368 unique_id port 144368 remote_ip 10.8.0.14 144370 username aminvpn 144370 mac 144370 bytes_out 0 144370 bytes_in 0 144370 station_ip 83.122.125.76 144370 port 439 144370 unique_id port 144370 remote_ip 10.8.0.14 144373 username aminvpn 144373 mac 144373 bytes_out 0 144373 bytes_in 0 144373 station_ip 83.122.125.76 144373 port 480 144373 unique_id port 144373 remote_ip 10.8.0.14 144375 username aminvpn 144375 mac 144375 bytes_out 156022 144375 bytes_in 322212 144375 station_ip 83.122.193.213 144375 port 479 144375 unique_id port 144375 remote_ip 10.8.0.14 144376 username aminvpn 144376 mac 144376 bytes_out 0 144376 bytes_in 0 144376 station_ip 83.122.125.76 144376 port 464 144376 unique_id port 144376 remote_ip 10.8.0.14 144377 username aminvpn 144377 mac 144377 bytes_out 515077 144377 bytes_in 2968271 144377 station_ip 83.122.193.213 144377 port 480 144377 unique_id port 144377 remote_ip 10.8.0.14 144385 username morteza 144385 mac 144385 bytes_out 0 144385 bytes_in 0 144385 station_ip 83.123.205.194 144385 port 476 144385 unique_id port 144386 username aminvpn 144386 mac 144386 bytes_out 0 144386 bytes_in 0 144386 station_ip 83.122.125.76 144386 port 481 144386 unique_id port 144386 remote_ip 10.8.0.14 144389 username aminvpn 144389 mac 144389 bytes_out 0 144389 bytes_in 0 144389 station_ip 83.122.193.213 144389 port 476 144389 unique_id port 144389 remote_ip 10.8.0.14 144390 username aminvpn 144390 mac 144390 bytes_out 0 144390 bytes_in 0 144390 station_ip 83.122.125.76 144390 port 469 144390 unique_id port 144390 remote_ip 10.8.0.14 144392 username hamidsalari 144392 kill_reason Another user logged on this global unique id 144392 mac 144392 bytes_out 0 144392 bytes_in 0 144392 station_ip 5.120.173.3 144392 port 451 144392 unique_id port 144393 username aminvpn 144393 mac 144393 bytes_out 0 144393 bytes_in 0 144393 station_ip 83.122.193.213 144393 port 476 144393 unique_id port 144393 remote_ip 10.8.0.14 144399 username morteza 144399 mac 144399 bytes_out 0 144399 bytes_in 0 144399 station_ip 83.123.205.194 144399 port 481 144399 unique_id port 144399 remote_ip 10.8.0.46 144400 username aminvpn 144400 mac 144400 bytes_out 0 144400 bytes_in 0 144400 station_ip 83.122.193.213 144400 port 469 144400 unique_id port 144400 remote_ip 10.8.0.14 144403 username mosi 144403 mac 144403 bytes_out 27137 144403 bytes_in 32046 144403 station_ip 5.200.121.35 144403 port 476 144403 unique_id port 144403 remote_ip 10.8.0.138 144405 username aminvpn 144405 mac 144405 bytes_out 4585 144405 bytes_in 6305 144405 station_ip 83.122.125.76 144405 port 481 144405 unique_id port 144405 remote_ip 10.8.0.14 144412 username mirzaei 144412 mac 144412 bytes_out 0 144412 bytes_in 0 144412 station_ip 5.119.92.154 144412 port 241 144412 unique_id port 144412 remote_ip 10.8.1.30 144414 username morteza 144414 mac 144414 bytes_out 0 144414 bytes_in 0 144414 station_ip 83.123.205.194 144414 port 481 144414 unique_id port 144414 remote_ip 10.8.0.46 144416 username malekpoir 144416 kill_reason Another user logged on this global unique id 144416 mac 144416 bytes_out 0 144416 bytes_in 0 144416 station_ip 5.119.18.226 144416 port 470 144416 unique_id port 144417 username morteza 144417 mac 144417 bytes_out 0 144417 bytes_in 0 144417 station_ip 83.123.205.194 144417 port 481 144417 unique_id port 144417 remote_ip 10.8.0.46 144421 username morteza 144421 mac 144421 bytes_out 0 144421 bytes_in 0 144421 station_ip 83.123.205.194 144421 port 246 144421 unique_id port 144421 remote_ip 10.8.1.62 144424 username houshang 144424 mac 144424 bytes_out 0 144424 bytes_in 0 144424 station_ip 5.119.229.51 144424 port 479 144424 unique_id port 144426 username aminvpn 144426 mac 144426 bytes_out 209577 144426 bytes_in 1373866 144426 station_ip 83.122.193.213 144426 port 476 144426 unique_id port 144426 remote_ip 10.8.0.14 144429 username morteza 144429 kill_reason Maximum check online fails reached 144429 mac 144429 bytes_out 0 144429 bytes_in 0 144429 station_ip 83.123.205.194 144429 port 439 144429 unique_id port 144432 username barzegar 144432 mac 144432 bytes_out 0 144432 bytes_in 0 144432 station_ip 5.119.254.153 144432 port 482 144432 unique_id port 144432 remote_ip 10.8.0.234 144434 username morteza 144434 mac 144434 bytes_out 0 144434 bytes_in 0 144434 station_ip 83.123.205.194 144434 port 482 144434 unique_id port 144434 remote_ip 10.8.0.46 144436 username mohammadmahdi 144388 station_ip 151.235.107.13 144388 port 469 144388 unique_id port 144394 username morteza 144394 mac 144394 bytes_out 0 144394 bytes_in 0 144394 station_ip 83.123.205.194 144394 port 247 144394 unique_id port 144394 remote_ip 10.8.1.62 144395 username mosi 144395 mac 144395 bytes_out 0 144395 bytes_in 0 144395 station_ip 151.235.107.13 144395 port 469 144395 unique_id port 144395 remote_ip 10.8.0.138 144397 username morteza 144397 mac 144397 bytes_out 0 144397 bytes_in 0 144397 station_ip 83.123.205.194 144397 port 247 144397 unique_id port 144397 remote_ip 10.8.1.62 144398 username aminvpn 144398 mac 144398 bytes_out 3977 144398 bytes_in 6339 144398 station_ip 83.122.125.76 144398 port 481 144398 unique_id port 144398 remote_ip 10.8.0.14 144401 username houshang 144401 kill_reason Another user logged on this global unique id 144401 mac 144401 bytes_out 0 144401 bytes_in 0 144401 station_ip 5.119.229.51 144401 port 479 144401 unique_id port 144401 remote_ip 10.8.0.22 144402 username moradi 144402 mac 144402 bytes_out 2619769 144402 bytes_in 36141545 144402 station_ip 46.225.213.35 144402 port 246 144402 unique_id port 144402 remote_ip 10.8.1.202 144404 username barzegar 144404 mac 144404 bytes_out 0 144404 bytes_in 0 144404 station_ip 5.119.254.153 144404 port 248 144404 unique_id port 144404 remote_ip 10.8.1.174 144407 username bcboard 144407 unique_id port 144407 terminate_cause User-Request 144407 bytes_out 333790 144407 bytes_in 2553950 144407 station_ip 37.129.161.211 144407 port 15730845 144407 nas_port_type Virtual 144407 remote_ip 5.5.5.244 144409 username mosi 144409 mac 144409 bytes_out 3940 144409 bytes_in 6696 144409 station_ip 89.47.69.253 144409 port 481 144409 unique_id port 144409 remote_ip 10.8.0.138 144410 username aminvpn 144410 mac 144410 bytes_out 189511 144410 bytes_in 1142650 144410 station_ip 83.122.193.213 144410 port 476 144410 unique_id port 144410 remote_ip 10.8.0.14 144411 username aminvpn 144411 mac 144411 bytes_out 0 144411 bytes_in 0 144411 station_ip 83.122.125.76 144411 port 481 144411 unique_id port 144411 remote_ip 10.8.0.14 144413 username barzegar 144413 mac 144413 bytes_out 0 144413 bytes_in 0 144413 station_ip 5.119.254.153 144413 port 246 144413 unique_id port 144413 remote_ip 10.8.1.174 144419 username mahdiyehalizadeh 144419 mac 144419 bytes_out 0 144419 bytes_in 0 144419 station_ip 37.129.100.156 144419 port 464 144419 unique_id port 144419 remote_ip 10.8.0.82 144425 username mahdiyehalizadeh 144425 mac 144425 bytes_out 19337 144425 bytes_in 20873 144425 station_ip 37.129.100.156 144425 port 439 144425 unique_id port 144425 remote_ip 10.8.0.82 144433 username morteza 144433 kill_reason Maximum check online fails reached 144433 mac 144433 bytes_out 0 144433 bytes_in 0 144433 station_ip 83.123.205.194 144433 port 246 144433 unique_id port 144435 username hamidsalari 144435 kill_reason Another user logged on this global unique id 144435 mac 144435 bytes_out 0 144435 bytes_in 0 144435 station_ip 5.120.173.3 144435 port 451 144435 unique_id port 144441 username mirzaei 144441 mac 144441 bytes_out 0 144441 bytes_in 0 144441 station_ip 5.119.92.154 144441 port 241 144441 unique_id port 144441 remote_ip 10.8.1.30 144443 username morteza 144443 kill_reason Maximum check online fails reached 144443 mac 144443 bytes_out 0 144443 bytes_in 0 144443 station_ip 83.123.205.194 144443 port 247 144443 unique_id port 144446 username bcboard 144446 unique_id port 144408 port 469 144408 unique_id port 144408 remote_ip 10.8.0.46 144415 username morteza 144415 mac 144415 bytes_out 0 144415 bytes_in 0 144415 station_ip 83.123.205.194 144415 port 481 144415 unique_id port 144415 remote_ip 10.8.0.46 144418 username sedighe 144418 mac 144418 bytes_out 304009 144418 bytes_in 1518161 144418 station_ip 37.129.112.189 144418 port 439 144418 unique_id port 144418 remote_ip 10.8.0.146 144420 username hamidsalari 144420 kill_reason Another user logged on this global unique id 144420 mac 144420 bytes_out 0 144420 bytes_in 0 144420 station_ip 5.120.173.3 144420 port 451 144420 unique_id port 144422 username aminvpn 144422 mac 144422 bytes_out 128548 144422 bytes_in 449362 144422 station_ip 83.122.193.213 144422 port 476 144422 unique_id port 144422 remote_ip 10.8.0.14 144423 username aminvpn 144423 mac 144423 bytes_out 0 144423 bytes_in 0 144423 station_ip 83.122.125.76 144423 port 483 144423 unique_id port 144423 remote_ip 10.8.0.14 144427 username morteza 144427 mac 144427 bytes_out 0 144427 bytes_in 0 144427 station_ip 83.123.205.194 144427 port 246 144427 unique_id port 144427 remote_ip 10.8.1.62 144428 username morteza 144428 mac 144428 bytes_out 0 144428 bytes_in 0 144428 station_ip 83.123.205.194 144428 port 476 144428 unique_id port 144428 remote_ip 10.8.0.46 144430 username morteza 144430 kill_reason Maximum check online fails reached 144430 mac 144430 bytes_out 0 144430 bytes_in 0 144430 station_ip 83.123.205.194 144430 port 476 144430 unique_id port 144431 username morteza 144431 mac 144431 bytes_out 0 144431 bytes_in 0 144431 station_ip 83.123.205.194 144431 port 483 144431 unique_id port 144431 remote_ip 10.8.0.46 144438 username morteza 144438 mac 144438 bytes_out 0 144438 bytes_in 0 144438 station_ip 83.123.205.194 144438 port 445 144438 unique_id port 144438 remote_ip 10.8.0.46 144451 username sedighe 144451 mac 144451 bytes_out 67618 144451 bytes_in 98464 144451 station_ip 83.122.192.45 144451 port 481 144451 unique_id port 144451 remote_ip 10.8.0.146 144453 username mehdizare 144453 mac 144453 bytes_out 0 144453 bytes_in 0 144453 station_ip 5.120.252.120 144453 port 242 144453 unique_id port 144453 remote_ip 10.8.1.42 144454 username barzegar 144454 mac 144454 bytes_out 0 144454 bytes_in 0 144454 station_ip 5.119.254.153 144454 port 251 144454 unique_id port 144454 remote_ip 10.8.1.174 144456 username hamidsalari 144456 kill_reason Another user logged on this global unique id 144456 mac 144456 bytes_out 0 144456 bytes_in 0 144456 station_ip 5.120.173.3 144456 port 451 144456 unique_id port 144457 username sedighe 144457 mac 144457 bytes_out 46819 144457 bytes_in 17697 144457 station_ip 83.122.192.45 144457 port 482 144457 unique_id port 144457 remote_ip 10.8.0.146 144458 username sedighe 144458 mac 144458 bytes_out 13066 144458 bytes_in 14382 144458 station_ip 83.122.192.45 144458 port 483 144458 unique_id port 144458 remote_ip 10.8.0.146 144461 username houshang 144461 mac 144461 bytes_out 19675 144461 bytes_in 31777 144461 station_ip 5.119.229.51 144461 port 483 144461 unique_id port 144461 remote_ip 10.8.0.22 144462 username barzegar 144462 mac 144462 bytes_out 0 144462 bytes_in 0 144462 station_ip 5.119.254.153 144462 port 483 144462 unique_id port 144462 remote_ip 10.8.0.234 144464 username farhad2 144464 mac 144464 bytes_out 0 144464 bytes_in 0 144464 station_ip 5.120.180.46 144464 port 482 144436 mac 144436 bytes_out 0 144436 bytes_in 0 144436 station_ip 5.120.118.94 144436 port 445 144436 unique_id port 144437 username morteza 144437 mac 144437 bytes_out 0 144437 bytes_in 0 144437 station_ip 83.123.205.194 144437 port 445 144437 unique_id port 144437 remote_ip 10.8.0.46 144439 username morteza 144439 mac 144439 bytes_out 0 144439 bytes_in 0 144439 station_ip 83.123.205.194 144439 port 445 144439 unique_id port 144439 remote_ip 10.8.0.46 144440 username barzegar 144440 mac 144440 bytes_out 0 144440 bytes_in 0 144440 station_ip 5.119.254.153 144440 port 445 144440 unique_id port 144440 remote_ip 10.8.0.234 144442 username morteza 144442 kill_reason Maximum number of concurrent logins reached 144442 mac 144442 bytes_out 0 144442 bytes_in 0 144442 station_ip 83.123.205.194 144442 port 445 144442 unique_id port 144444 username morteza 144444 kill_reason Maximum check online fails reached 144444 mac 144444 bytes_out 0 144444 bytes_in 0 144444 station_ip 83.123.205.194 144444 port 248 144444 unique_id port 144445 username jafari 144445 mac 144445 bytes_out 4198198 144445 bytes_in 26086795 144445 station_ip 89.34.62.87 144445 port 464 144445 unique_id port 144445 remote_ip 10.8.0.242 144447 username mirzaei 144447 mac 144447 bytes_out 0 144447 bytes_in 0 144447 station_ip 5.119.92.154 144447 port 241 144447 unique_id port 144447 remote_ip 10.8.1.30 144450 username barzegar 144450 kill_reason Maximum check online fails reached 144450 mac 144450 bytes_out 0 144450 bytes_in 0 144450 station_ip 5.119.254.153 144450 port 241 144450 unique_id port 144460 username vanila 144460 mac 144460 bytes_out 1319333 144460 bytes_in 9162724 144460 station_ip 37.129.100.72 144460 port 481 144460 unique_id port 144460 remote_ip 10.8.0.178 144465 username sedighe 144465 mac 144465 bytes_out 16812 144465 bytes_in 18971 144465 station_ip 83.122.192.45 144465 port 484 144465 unique_id port 144465 remote_ip 10.8.0.146 144467 username farhad2 144467 mac 144467 bytes_out 96235 144467 bytes_in 235189 144467 station_ip 5.120.180.46 144467 port 482 144467 unique_id port 144467 remote_ip 10.8.0.190 144469 username malekpoir 144469 kill_reason Another user logged on this global unique id 144469 mac 144469 bytes_out 0 144469 bytes_in 0 144469 station_ip 5.119.18.226 144469 port 470 144469 unique_id port 144471 username mohammadmahdi 144471 kill_reason Another user logged on this global unique id 144471 mac 144471 bytes_out 0 144471 bytes_in 0 144471 station_ip 5.120.118.94 144471 port 480 144471 unique_id port 144474 username moradi 144474 mac 144474 bytes_out 0 144474 bytes_in 0 144474 station_ip 37.129.11.85 144474 port 250 144474 unique_id port 144474 remote_ip 10.8.1.202 144476 username farhad2 144476 mac 144476 bytes_out 0 144476 bytes_in 0 144476 station_ip 5.120.117.121 144476 port 251 144476 unique_id port 144476 remote_ip 10.8.1.222 144479 username sekonji3 144479 mac 144479 bytes_out 0 144479 bytes_in 0 144479 station_ip 37.129.3.166 144479 port 464 144479 unique_id port 144479 remote_ip 10.8.0.6 144480 username barzegar 144480 mac 144480 bytes_out 0 144480 bytes_in 0 144480 station_ip 5.119.254.153 144480 port 464 144480 unique_id port 144480 remote_ip 10.8.0.234 144485 username mehdizare 144485 kill_reason Another user logged on this global unique id 144485 mac 144485 bytes_out 0 144485 bytes_in 0 144485 station_ip 5.120.252.120 144485 port 242 144485 unique_id port 144485 remote_ip 10.8.1.42 144489 username forozandeh1 144446 terminate_cause User-Request 144446 bytes_out 101923 144446 bytes_in 118629 144446 station_ip 37.129.161.211 144446 port 15730846 144446 nas_port_type Virtual 144446 remote_ip 5.5.5.255 144448 username barzegar 144448 mac 144448 bytes_out 0 144448 bytes_in 0 144448 station_ip 5.119.254.153 144448 port 250 144448 unique_id port 144448 remote_ip 10.8.1.174 144449 username alikomsari 144449 mac 144449 bytes_out 4575329 144449 bytes_in 33128630 144449 station_ip 5.120.186.67 144449 port 480 144449 unique_id port 144449 remote_ip 10.8.0.70 144452 username vanila 144452 mac 144452 bytes_out 0 144452 bytes_in 0 144452 station_ip 37.129.100.72 144452 port 480 144452 unique_id port 144452 remote_ip 10.8.0.178 144455 username kalantary 144455 mac 144455 bytes_out 0 144455 bytes_in 0 144455 station_ip 83.122.120.209 144455 port 250 144455 unique_id port 144455 remote_ip 10.8.1.26 144459 username mohammadmahdi 144459 kill_reason Another user logged on this global unique id 144459 mac 144459 bytes_out 0 144459 bytes_in 0 144459 station_ip 5.120.118.94 144459 port 480 144459 unique_id port 144459 remote_ip 10.8.0.54 144463 username sekonji3 144463 mac 144463 bytes_out 245622 144463 bytes_in 2514153 144463 station_ip 37.129.3.166 144463 port 482 144463 unique_id port 144463 remote_ip 10.8.0.6 144473 username godarzi 144473 kill_reason Another user logged on this global unique id 144473 mac 144473 bytes_out 0 144473 bytes_in 0 144473 station_ip 5.202.5.1 144473 port 249 144473 unique_id port 144473 remote_ip 10.8.1.230 144475 username sekonji3 144475 mac 144475 bytes_out 107229 144475 bytes_in 2121645 144475 station_ip 37.129.3.166 144475 port 485 144475 unique_id port 144475 remote_ip 10.8.0.6 144477 username jafari 144477 mac 144477 bytes_out 1022312 144477 bytes_in 1930133 144477 station_ip 89.34.62.87 144477 port 482 144477 unique_id port 144477 remote_ip 10.8.0.242 144481 username aminvpn 144481 mac 144481 bytes_out 239358 144481 bytes_in 602883 144481 station_ip 83.122.125.76 144481 port 479 144481 unique_id port 144481 remote_ip 10.8.0.14 144482 username houshang 144482 mac 144482 bytes_out 0 144482 bytes_in 0 144482 station_ip 5.119.229.51 144482 port 481 144482 unique_id port 144490 username sedighe 144490 mac 144490 bytes_out 1508280 144490 bytes_in 19570344 144490 station_ip 37.129.91.232 144490 port 486 144490 unique_id port 144490 remote_ip 10.8.0.146 144491 username mohammadmahdi 144491 kill_reason Another user logged on this global unique id 144491 mac 144491 bytes_out 0 144491 bytes_in 0 144491 station_ip 5.120.118.94 144491 port 480 144491 unique_id port 144493 username sekonji3 144493 mac 144493 bytes_out 91786 144493 bytes_in 1198028 144493 station_ip 37.129.3.166 144493 port 464 144493 unique_id port 144493 remote_ip 10.8.0.6 144494 username mohammadmahdi 144494 mac 144494 bytes_out 0 144494 bytes_in 0 144494 station_ip 5.120.118.94 144494 port 480 144494 unique_id port 144496 username sekonji3 144496 mac 144496 bytes_out 0 144496 bytes_in 0 144496 station_ip 37.129.3.166 144496 port 480 144496 unique_id port 144496 remote_ip 10.8.0.6 144499 username ayobi 144499 kill_reason Another user logged on this global unique id 144499 mac 144499 bytes_out 0 144499 bytes_in 0 144499 station_ip 37.27.13.217 144499 port 452 144499 unique_id port 144500 username houshang 144500 mac 144500 bytes_out 0 144500 bytes_in 0 144500 station_ip 5.120.49.92 144500 port 485 144500 unique_id port 144500 remote_ip 10.8.0.22 144464 unique_id port 144464 remote_ip 10.8.0.190 144466 username jafari 144466 mac 144466 bytes_out 4683656 144466 bytes_in 22285049 144466 station_ip 89.34.62.87 144466 port 464 144466 unique_id port 144466 remote_ip 10.8.0.242 144468 username vanila 144468 mac 144468 bytes_out 5921690 144468 bytes_in 1089601 144468 station_ip 37.129.100.72 144468 port 483 144468 unique_id port 144468 remote_ip 10.8.0.178 144470 username farhad2 144470 mac 144470 bytes_out 256168 144470 bytes_in 1586891 144470 station_ip 5.120.117.121 144470 port 464 144470 unique_id port 144470 remote_ip 10.8.0.190 144472 username ayobi 144472 kill_reason Another user logged on this global unique id 144472 mac 144472 bytes_out 0 144472 bytes_in 0 144472 station_ip 37.27.13.217 144472 port 452 144472 unique_id port 144472 remote_ip 10.8.0.246 144478 username houshang 144478 kill_reason Another user logged on this global unique id 144478 mac 144478 bytes_out 0 144478 bytes_in 0 144478 station_ip 5.119.229.51 144478 port 481 144478 unique_id port 144478 remote_ip 10.8.0.22 144483 username mohammadmahdi 144483 kill_reason Another user logged on this global unique id 144483 mac 144483 bytes_out 0 144483 bytes_in 0 144483 station_ip 5.120.118.94 144483 port 480 144483 unique_id port 144484 username sekonji3 144484 mac 144484 bytes_out 5939 144484 bytes_in 7753 144484 station_ip 37.129.3.166 144484 port 464 144484 unique_id port 144484 remote_ip 10.8.0.6 144486 username sekonji3 144486 mac 144486 bytes_out 0 144486 bytes_in 0 144486 station_ip 37.129.3.166 144486 port 464 144486 unique_id port 144486 remote_ip 10.8.0.6 144487 username aminvpn 144487 unique_id port 144487 terminate_cause User-Request 144487 bytes_out 3410835 144487 bytes_in 97229279 144487 station_ip 31.57.128.244 144487 port 15730849 144487 nas_port_type Virtual 144487 remote_ip 5.5.5.17 144488 username ayobi 144488 kill_reason Another user logged on this global unique id 144488 mac 144488 bytes_out 0 144488 bytes_in 0 144488 station_ip 37.27.13.217 144488 port 452 144488 unique_id port 144492 username barzegar 144492 mac 144492 bytes_out 0 144492 bytes_in 0 144492 station_ip 5.119.254.153 144492 port 252 144492 unique_id port 144492 remote_ip 10.8.1.174 144495 username farhad2 144495 mac 144495 bytes_out 250394 144495 bytes_in 2211838 144495 station_ip 5.119.124.181 144495 port 464 144495 unique_id port 144495 remote_ip 10.8.0.190 144497 username kalantary 144497 mac 144497 bytes_out 0 144497 bytes_in 0 144497 station_ip 83.122.47.5 144497 port 251 144497 unique_id port 144497 remote_ip 10.8.1.26 144503 username sedighe 144503 mac 144503 bytes_out 712189 144503 bytes_in 3276182 144503 station_ip 37.129.91.232 144503 port 482 144503 unique_id port 144503 remote_ip 10.8.0.146 144505 username sekonji3 144505 mac 144505 bytes_out 45953 144505 bytes_in 103852 144505 station_ip 37.129.3.166 144505 port 483 144505 unique_id port 144505 remote_ip 10.8.0.6 144506 username farhad2 144506 mac 144506 bytes_out 865620 144506 bytes_in 3924620 144506 station_ip 5.119.124.181 144506 port 480 144506 unique_id port 144506 remote_ip 10.8.0.190 144507 username sekonji3 144507 mac 144507 bytes_out 0 144507 bytes_in 0 144507 station_ip 37.129.3.166 144507 port 480 144507 unique_id port 144507 remote_ip 10.8.0.6 144509 username kordestani 144509 kill_reason Another user logged on this global unique id 144509 mac 144509 bytes_out 0 144509 bytes_in 0 144509 station_ip 113.203.35.121 144509 port 479 144509 unique_id port 144509 remote_ip 10.8.0.134 144489 mac 144489 bytes_out 2033255 144489 bytes_in 15451409 144489 station_ip 83.123.125.254 144489 port 484 144489 unique_id port 144489 remote_ip 10.8.0.130 144498 username farhad2 144498 mac 144498 bytes_out 0 144498 bytes_in 0 144498 station_ip 5.119.124.181 144498 port 480 144498 unique_id port 144498 remote_ip 10.8.0.190 144501 username sabaghnezhad 144501 mac 144501 bytes_out 81279 144501 bytes_in 124355 144501 station_ip 95.64.31.12 144501 port 481 144501 unique_id port 144501 remote_ip 10.8.0.186 144502 username houshang 144502 mac 144502 bytes_out 263723 144502 bytes_in 1607513 144502 station_ip 5.120.49.92 144502 port 486 144502 unique_id port 144502 remote_ip 10.8.0.22 144504 username barzegar 144504 mac 144504 bytes_out 0 144504 bytes_in 0 144504 station_ip 5.119.254.153 144504 port 482 144504 unique_id port 144504 remote_ip 10.8.0.234 144508 username ayobi 144508 kill_reason Another user logged on this global unique id 144508 mac 144508 bytes_out 0 144508 bytes_in 0 144508 station_ip 37.27.13.217 144508 port 452 144508 unique_id port 144511 username farhad2 144511 mac 144511 bytes_out 0 144511 bytes_in 0 144511 station_ip 5.119.124.181 144511 port 480 144511 unique_id port 144511 remote_ip 10.8.0.190 144513 username barzegar 144513 mac 144513 bytes_out 0 144513 bytes_in 0 144513 station_ip 5.119.254.153 144513 port 486 144513 unique_id port 144513 remote_ip 10.8.0.234 144516 username sekonji3 144516 mac 144516 bytes_out 0 144516 bytes_in 0 144516 station_ip 37.129.3.166 144516 port 470 144516 unique_id port 144516 remote_ip 10.8.0.6 144519 username farhad2 144519 mac 144519 bytes_out 0 144519 bytes_in 0 144519 station_ip 5.119.124.181 144519 port 486 144519 unique_id port 144519 remote_ip 10.8.0.190 144520 username vanila 144520 mac 144520 bytes_out 0 144520 bytes_in 0 144520 station_ip 37.129.100.72 144520 port 480 144520 unique_id port 144520 remote_ip 10.8.0.178 144523 username godarzi 144523 mac 144523 bytes_out 0 144523 bytes_in 0 144523 station_ip 5.202.5.1 144523 port 249 144523 unique_id port 144524 username sekonji3 144524 mac 144524 bytes_out 0 144524 bytes_in 0 144524 station_ip 37.129.3.166 144524 port 482 144524 unique_id port 144524 remote_ip 10.8.0.6 144527 username barzegar 144527 mac 144527 bytes_out 0 144527 bytes_in 0 144527 station_ip 5.119.254.153 144527 port 482 144527 unique_id port 144527 remote_ip 10.8.0.234 144529 username aminvpn 144529 unique_id port 144529 terminate_cause User-Request 144529 bytes_out 689239 144529 bytes_in 30411755 144529 station_ip 79.127.6.247 144529 port 15730850 144529 nas_port_type Virtual 144529 remote_ip 5.5.5.20 144536 username mohammadmahdi 144536 kill_reason Another user logged on this global unique id 144536 mac 144536 bytes_out 0 144536 bytes_in 0 144536 station_ip 5.120.118.94 144536 port 470 144536 unique_id port 144536 remote_ip 10.8.0.54 144540 username godarzi 144540 mac 144540 bytes_out 89997 144540 bytes_in 114135 144540 station_ip 5.202.5.1 144540 port 482 144540 unique_id port 144540 remote_ip 10.8.0.174 144542 username amirabbas 144542 unique_id port 144542 terminate_cause Lost-Carrier 144542 bytes_out 13158592 144542 bytes_in 355164098 144542 station_ip 37.27.31.233 144542 port 15730848 144542 nas_port_type Virtual 144542 remote_ip 5.5.5.8 144544 username sekonji3 144544 mac 144544 bytes_out 0 144544 bytes_in 0 144544 station_ip 37.129.3.166 144544 port 452 144544 unique_id port 144510 username malekpoir 144510 mac 144510 bytes_out 0 144510 bytes_in 0 144510 station_ip 5.119.18.226 144510 port 470 144510 unique_id port 144512 username jafari 144512 kill_reason Another user logged on this global unique id 144512 mac 144512 bytes_out 0 144512 bytes_in 0 144512 station_ip 94.24.18.22 144512 port 464 144512 unique_id port 144512 remote_ip 10.8.0.242 144514 username farhad2 144514 mac 144514 bytes_out 0 144514 bytes_in 0 144514 station_ip 5.119.124.181 144514 port 480 144514 unique_id port 144514 remote_ip 10.8.0.190 144526 username mahdiyehalizadeh 144526 mac 144526 bytes_out 0 144526 bytes_in 0 144526 station_ip 37.129.3.176 144526 port 484 144526 unique_id port 144526 remote_ip 10.8.0.82 144528 username forozandeh1 144528 mac 144528 bytes_out 0 144528 bytes_in 0 144528 station_ip 83.123.127.128 144528 port 483 144528 unique_id port 144528 remote_ip 10.8.0.130 144532 username sekonji3 144532 mac 144532 bytes_out 0 144532 bytes_in 0 144532 station_ip 37.129.3.166 144532 port 482 144532 unique_id port 144532 remote_ip 10.8.0.6 144534 username sekonji3 144534 mac 144534 bytes_out 0 144534 bytes_in 0 144534 station_ip 37.129.3.166 144534 port 482 144534 unique_id port 144534 remote_ip 10.8.0.6 144535 username sekonji3 144535 mac 144535 bytes_out 0 144535 bytes_in 0 144535 station_ip 37.129.3.166 144535 port 452 144535 unique_id port 144535 remote_ip 10.8.0.6 144538 username sekonji3 144538 mac 144538 bytes_out 0 144538 bytes_in 0 144538 station_ip 37.129.3.166 144538 port 452 144538 unique_id port 144538 remote_ip 10.8.0.6 144541 username alihosseini1 144541 mac 144541 bytes_out 0 144541 bytes_in 0 144541 station_ip 5.120.139.60 144541 port 485 144541 unique_id port 144541 remote_ip 10.8.0.166 144547 username moradi 144547 kill_reason Another user logged on this global unique id 144547 mac 144547 bytes_out 0 144547 bytes_in 0 144547 station_ip 37.129.53.73 144547 port 251 144547 unique_id port 144547 remote_ip 10.8.1.202 144548 username barzegar 144548 mac 144548 bytes_out 0 144548 bytes_in 0 144548 station_ip 5.119.254.153 144548 port 249 144548 unique_id port 144548 remote_ip 10.8.1.174 144549 username farhad2 144549 mac 144549 bytes_out 0 144549 bytes_in 0 144549 station_ip 5.119.21.190 144549 port 480 144549 unique_id port 144549 remote_ip 10.8.0.190 144551 username houshang 144551 kill_reason Another user logged on this global unique id 144551 mac 144551 bytes_out 0 144551 bytes_in 0 144551 station_ip 5.120.49.92 144551 port 481 144551 unique_id port 144552 username jafari 144552 kill_reason Another user logged on this global unique id 144552 mac 144552 bytes_out 0 144552 bytes_in 0 144552 station_ip 94.24.18.22 144552 port 464 144552 unique_id port 144555 username sekonji3 144555 mac 144555 bytes_out 0 144555 bytes_in 0 144555 station_ip 37.129.3.166 144555 port 482 144555 unique_id port 144555 remote_ip 10.8.0.6 144556 username moradi 144556 kill_reason Another user logged on this global unique id 144556 mac 144556 bytes_out 0 144556 bytes_in 0 144556 station_ip 37.129.53.73 144556 port 251 144556 unique_id port 144557 username farhad2 144557 mac 144557 bytes_out 0 144557 bytes_in 0 144557 station_ip 5.119.21.190 144557 port 445 144557 unique_id port 144557 remote_ip 10.8.0.190 144558 username barzegar 144558 mac 144558 bytes_out 0 144558 bytes_in 0 144558 station_ip 5.119.254.153 144558 port 249 144558 unique_id port 144558 remote_ip 10.8.1.174 144515 username houshang 144515 kill_reason Another user logged on this global unique id 144515 mac 144515 bytes_out 0 144515 bytes_in 0 144515 station_ip 5.120.49.92 144515 port 481 144515 unique_id port 144515 remote_ip 10.8.0.22 144517 username houshang 144517 kill_reason Another user logged on this global unique id 144517 mac 144517 bytes_out 0 144517 bytes_in 0 144517 station_ip 5.120.49.92 144517 port 481 144517 unique_id port 144518 username mohammadmahdi 144518 mac 144518 bytes_out 0 144518 bytes_in 0 144518 station_ip 5.120.118.94 144518 port 482 144518 unique_id port 144518 remote_ip 10.8.0.54 144521 username khalili 144521 kill_reason Another user logged on this global unique id 144521 mac 144521 bytes_out 0 144521 bytes_in 0 144521 station_ip 5.119.175.202 144521 port 440 144521 unique_id port 144522 username ayobi 144522 kill_reason Another user logged on this global unique id 144522 mac 144522 bytes_out 0 144522 bytes_in 0 144522 station_ip 37.27.13.217 144522 port 452 144522 unique_id port 144525 username sekonji3 144525 mac 144525 bytes_out 0 144525 bytes_in 0 144525 station_ip 37.129.3.166 144525 port 487 144525 unique_id port 144525 remote_ip 10.8.0.6 144530 username houshang 144530 kill_reason Another user logged on this global unique id 144530 mac 144530 bytes_out 0 144530 bytes_in 0 144530 station_ip 5.120.49.92 144530 port 481 144530 unique_id port 144531 username vanila 144531 mac 144531 bytes_out 0 144531 bytes_in 0 144531 station_ip 37.129.100.72 144531 port 486 144531 unique_id port 144531 remote_ip 10.8.0.178 144533 username ayobi 144533 mac 144533 bytes_out 0 144533 bytes_in 0 144533 station_ip 37.27.13.217 144533 port 452 144533 unique_id port 144537 username sekonji3 144537 mac 144537 bytes_out 0 144537 bytes_in 0 144537 station_ip 37.129.3.166 144537 port 452 144537 unique_id port 144537 remote_ip 10.8.0.6 144539 username jafari 144539 kill_reason Another user logged on this global unique id 144539 mac 144539 bytes_out 0 144539 bytes_in 0 144539 station_ip 94.24.18.22 144539 port 464 144539 unique_id port 144543 username sekonji3 144543 mac 144543 bytes_out 0 144543 bytes_in 0 144543 station_ip 37.129.3.166 144543 port 452 144543 unique_id port 144543 remote_ip 10.8.0.6 144546 username mirzaei 144546 mac 144546 bytes_out 0 144546 bytes_in 0 144546 station_ip 5.119.92.154 144546 port 445 144546 unique_id port 144546 remote_ip 10.8.0.66 144553 username mohammadmahdi 144553 kill_reason Another user logged on this global unique id 144553 mac 144553 bytes_out 0 144553 bytes_in 0 144553 station_ip 5.120.118.94 144553 port 470 144553 unique_id port 144563 username kordestani 144563 mac 144563 bytes_out 0 144563 bytes_in 0 144563 station_ip 113.203.35.121 144563 port 479 144563 unique_id port 144565 username farhad2 144565 mac 144565 bytes_out 0 144565 bytes_in 0 144565 station_ip 5.119.21.190 144565 port 445 144565 unique_id port 144565 remote_ip 10.8.0.190 144575 username sekonji3 144575 mac 144575 bytes_out 0 144575 bytes_in 0 144575 station_ip 37.129.3.166 144575 port 445 144575 unique_id port 144575 remote_ip 10.8.0.6 144578 username sekonji3 144578 mac 144578 bytes_out 0 144578 bytes_in 0 144578 station_ip 37.129.3.166 144578 port 445 144578 unique_id port 144578 remote_ip 10.8.0.6 144579 username hosseine 144579 kill_reason Another user logged on this global unique id 144579 mac 144579 bytes_out 0 144579 bytes_in 0 144579 station_ip 83.122.86.112 144579 port 245 144579 unique_id port 144579 remote_ip 10.8.1.190 144544 remote_ip 10.8.0.6 144545 username amirabbas 144545 unique_id port 144545 terminate_cause User-Request 144545 bytes_out 2215942 144545 bytes_in 64337484 144545 station_ip 37.27.31.233 144545 port 15730851 144545 nas_port_type Virtual 144545 remote_ip 5.5.5.26 144550 username sekonji3 144550 mac 144550 bytes_out 0 144550 bytes_in 0 144550 station_ip 37.129.3.166 144550 port 445 144550 unique_id port 144550 remote_ip 10.8.0.6 144554 username godarzi 144554 mac 144554 bytes_out 0 144554 bytes_in 0 144554 station_ip 5.202.5.1 144554 port 452 144554 unique_id port 144554 remote_ip 10.8.0.174 144559 username jafari 144559 kill_reason Another user logged on this global unique id 144559 mac 144559 bytes_out 0 144559 bytes_in 0 144559 station_ip 94.24.18.22 144559 port 464 144559 unique_id port 144562 username sekonji3 144562 mac 144562 bytes_out 0 144562 bytes_in 0 144562 station_ip 37.129.3.166 144562 port 482 144562 unique_id port 144562 remote_ip 10.8.0.6 144566 username houshang 144566 kill_reason Another user logged on this global unique id 144566 mac 144566 bytes_out 0 144566 bytes_in 0 144566 station_ip 5.120.49.92 144566 port 481 144566 unique_id port 144568 username mohammadmahdi 144568 mac 144568 bytes_out 0 144568 bytes_in 0 144568 station_ip 5.120.118.94 144568 port 470 144568 unique_id port 144570 username kordestani 144570 mac 144570 bytes_out 0 144570 bytes_in 0 144570 station_ip 151.235.95.80 144570 port 482 144570 unique_id port 144570 remote_ip 10.8.0.134 144572 username moradi 144572 kill_reason Another user logged on this global unique id 144572 mac 144572 bytes_out 0 144572 bytes_in 0 144572 station_ip 37.129.53.73 144572 port 251 144572 unique_id port 144574 username sekonji3 144574 mac 144574 bytes_out 0 144574 bytes_in 0 144574 station_ip 37.129.3.166 144574 port 445 144574 unique_id port 144574 remote_ip 10.8.0.6 144576 username houshang 144576 kill_reason Another user logged on this global unique id 144576 mac 144576 bytes_out 0 144576 bytes_in 0 144576 station_ip 5.120.49.92 144576 port 481 144576 unique_id port 144581 username moradi 144581 kill_reason Another user logged on this global unique id 144581 mac 144581 bytes_out 0 144581 bytes_in 0 144581 station_ip 37.129.53.73 144581 port 251 144581 unique_id port 144583 username aminvpn 144583 mac 144583 bytes_out 468322 144583 bytes_in 6294699 144583 station_ip 83.122.125.76 144583 port 250 144583 unique_id port 144583 remote_ip 10.8.1.6 144586 username moradi 144586 mac 144586 bytes_out 0 144586 bytes_in 0 144586 station_ip 37.129.53.73 144586 port 251 144586 unique_id port 144591 username hassan 144591 mac 144591 bytes_out 0 144591 bytes_in 0 144591 station_ip 37.27.40.5 144591 port 479 144591 unique_id port 144591 remote_ip 10.8.0.122 144596 username hassan 144596 kill_reason Another user logged on this global unique id 144596 mac 144596 bytes_out 0 144596 bytes_in 0 144596 station_ip 5.119.199.195 144596 port 480 144596 unique_id port 144596 remote_ip 10.8.0.122 144597 username rezaei 144597 kill_reason Another user logged on this global unique id 144597 mac 144597 bytes_out 0 144597 bytes_in 0 144597 station_ip 5.120.124.44 144597 port 470 144597 unique_id port 144597 remote_ip 10.8.0.230 144600 username hassan 144600 kill_reason Another user logged on this global unique id 144600 mac 144600 bytes_out 0 144600 bytes_in 0 144600 station_ip 5.119.199.195 144600 port 480 144600 unique_id port 144601 username aminvpn 144601 unique_id port 144601 terminate_cause User-Request 144601 bytes_out 68584 144560 username houshang 144560 kill_reason Another user logged on this global unique id 144560 mac 144560 bytes_out 0 144560 bytes_in 0 144560 station_ip 5.120.49.92 144560 port 481 144560 unique_id port 144561 username aminvpn 144561 unique_id port 144561 terminate_cause Lost-Carrier 144561 bytes_out 1003220 144561 bytes_in 12946824 144561 station_ip 31.57.128.244 144561 port 15730852 144561 nas_port_type Virtual 144561 remote_ip 5.5.5.27 144564 username mostafa_es78 144564 unique_id port 144564 terminate_cause User-Request 144564 bytes_out 2134155 144564 bytes_in 63177974 144564 station_ip 109.125.166.79 144564 port 15730853 144564 nas_port_type Virtual 144564 remote_ip 5.5.5.30 144567 username saeed9658 144567 mac 144567 bytes_out 2998898 144567 bytes_in 35828255 144567 station_ip 5.119.125.222 144567 port 252 144567 unique_id port 144567 remote_ip 10.8.1.210 144569 username sekonji3 144569 mac 144569 bytes_out 0 144569 bytes_in 0 144569 station_ip 37.129.3.166 144569 port 445 144569 unique_id port 144569 remote_ip 10.8.0.6 144571 username barzegar 144571 mac 144571 bytes_out 0 144571 bytes_in 0 144571 station_ip 5.119.254.153 144571 port 252 144571 unique_id port 144571 remote_ip 10.8.1.174 144573 username jafari 144573 mac 144573 bytes_out 0 144573 bytes_in 0 144573 station_ip 94.24.18.22 144573 port 464 144573 unique_id port 144577 username mehdizare 144577 mac 144577 bytes_out 0 144577 bytes_in 0 144577 station_ip 5.120.252.120 144577 port 242 144577 unique_id port 144582 username hosseine 144582 mac 144582 bytes_out 0 144582 bytes_in 0 144582 station_ip 83.122.86.112 144582 port 245 144582 unique_id port 144584 username houshang 144584 kill_reason Another user logged on this global unique id 144584 mac 144584 bytes_out 0 144584 bytes_in 0 144584 station_ip 5.120.49.92 144584 port 481 144584 unique_id port 144593 username sekonji3 144593 mac 144593 bytes_out 0 144593 bytes_in 0 144593 station_ip 37.129.3.166 144593 port 481 144593 unique_id port 144593 remote_ip 10.8.0.6 144594 username barzegar 144594 mac 144594 bytes_out 0 144594 bytes_in 0 144594 station_ip 5.119.254.153 144594 port 250 144594 unique_id port 144594 remote_ip 10.8.1.174 144602 username moradi 144602 kill_reason Another user logged on this global unique id 144602 mac 144602 bytes_out 0 144602 bytes_in 0 144602 station_ip 37.129.53.73 144602 port 245 144602 unique_id port 144602 remote_ip 10.8.1.202 144604 username farhad2 144604 mac 144604 bytes_out 0 144604 bytes_in 0 144604 station_ip 5.119.205.209 144604 port 445 144604 unique_id port 144604 remote_ip 10.8.0.190 144605 username hassan 144605 kill_reason Another user logged on this global unique id 144605 mac 144605 bytes_out 0 144605 bytes_in 0 144605 station_ip 5.119.199.195 144605 port 480 144605 unique_id port 144606 username houshang 144606 kill_reason Another user logged on this global unique id 144606 mac 144606 bytes_out 0 144606 bytes_in 0 144606 station_ip 5.120.49.92 144606 port 464 144606 unique_id port 144611 username moradi 144611 mac 144611 bytes_out 0 144611 bytes_in 0 144611 station_ip 37.129.53.73 144611 port 245 144611 unique_id port 144612 username rezaei 144612 mac 144612 bytes_out 0 144612 bytes_in 0 144612 station_ip 5.120.124.44 144612 port 470 144612 unique_id port 144614 username mahdiyehalizadeh 144614 mac 144614 bytes_out 0 144614 bytes_in 0 144614 station_ip 83.123.230.220 144614 port 481 144614 unique_id port 144614 remote_ip 10.8.0.82 144618 username hashtadani3 144580 username farhad2 144580 mac 144580 bytes_out 709170 144580 bytes_in 2746140 144580 station_ip 5.119.249.242 144580 port 253 144580 unique_id port 144580 remote_ip 10.8.1.222 144585 username sekonji3 144585 mac 144585 bytes_out 0 144585 bytes_in 0 144585 station_ip 37.129.3.166 144585 port 464 144585 unique_id port 144585 remote_ip 10.8.0.6 144587 username aminvpn 144587 mac 144587 bytes_out 0 144587 bytes_in 0 144587 station_ip 83.122.250.209 144587 port 480 144587 unique_id port 144587 remote_ip 10.8.0.14 144588 username barzegar 144588 mac 144588 bytes_out 0 144588 bytes_in 0 144588 station_ip 5.119.254.153 144588 port 245 144588 unique_id port 144588 remote_ip 10.8.1.174 144589 username houshang 144589 mac 144589 bytes_out 0 144589 bytes_in 0 144589 station_ip 5.120.49.92 144589 port 481 144589 unique_id port 144590 username sekonji3 144590 mac 144590 bytes_out 0 144590 bytes_in 0 144590 station_ip 37.129.3.166 144590 port 479 144590 unique_id port 144590 remote_ip 10.8.0.6 144592 username houshang 144592 mac 144592 bytes_out 0 144592 bytes_in 0 144592 station_ip 5.120.49.92 144592 port 464 144592 unique_id port 144592 remote_ip 10.8.0.22 144595 username houshang 144595 kill_reason Another user logged on this global unique id 144595 mac 144595 bytes_out 0 144595 bytes_in 0 144595 station_ip 5.120.49.92 144595 port 464 144595 unique_id port 144595 remote_ip 10.8.0.22 144598 username hamidsalari 144598 kill_reason Another user logged on this global unique id 144598 mac 144598 bytes_out 0 144598 bytes_in 0 144598 station_ip 5.120.173.3 144598 port 451 144598 unique_id port 144599 username mahdiyehalizadeh 144599 mac 144599 bytes_out 0 144599 bytes_in 0 144599 station_ip 83.123.230.220 144599 port 479 144599 unique_id port 144599 remote_ip 10.8.0.82 144603 username hashtadani3 144603 mac 144603 bytes_out 0 144603 bytes_in 0 144603 station_ip 37.129.172.2 144603 port 479 144603 unique_id port 144603 remote_ip 10.8.0.154 144607 username barzegar 144607 mac 144607 bytes_out 0 144607 bytes_in 0 144607 station_ip 5.119.254.153 144607 port 250 144607 unique_id port 144607 remote_ip 10.8.1.174 144608 username hashtadani3 144608 mac 144608 bytes_out 0 144608 bytes_in 0 144608 station_ip 37.129.172.2 144608 port 483 144608 unique_id port 144608 remote_ip 10.8.0.154 144615 username houshang 144615 mac 144615 bytes_out 0 144615 bytes_in 0 144615 station_ip 5.120.49.92 144615 port 464 144615 unique_id port 144619 username barzegar 144619 mac 144619 bytes_out 0 144619 bytes_in 0 144619 station_ip 5.119.254.153 144619 port 245 144619 unique_id port 144619 remote_ip 10.8.1.174 144628 username barzegar 144628 mac 144628 bytes_out 0 144628 bytes_in 0 144628 station_ip 5.119.254.153 144628 port 251 144628 unique_id port 144628 remote_ip 10.8.1.174 144630 username farhad2 144630 mac 144630 bytes_out 1473556 144630 bytes_in 3355587 144630 station_ip 5.119.205.209 144630 port 249 144630 unique_id port 144630 remote_ip 10.8.1.222 144634 username hashtadani3 144634 mac 144634 bytes_out 0 144634 bytes_in 0 144634 station_ip 37.129.172.2 144634 port 452 144634 unique_id port 144634 remote_ip 10.8.0.154 144635 username farhad2 144635 mac 144635 bytes_out 0 144635 bytes_in 0 144635 station_ip 5.119.205.209 144635 port 445 144635 unique_id port 144635 remote_ip 10.8.0.190 144636 username hashtadani3 144636 mac 144636 bytes_out 0 144601 bytes_in 309444 144601 station_ip 5.233.49.34 144601 port 15730854 144601 nas_port_type Virtual 144601 remote_ip 5.5.5.31 144609 username mirzaei 144609 mac 144609 bytes_out 178890 144609 bytes_in 377270 144609 station_ip 5.119.92.154 144609 port 249 144609 unique_id port 144609 remote_ip 10.8.1.30 144610 username tahmasebi 144610 kill_reason Another user logged on this global unique id 144610 mac 144610 bytes_out 0 144610 bytes_in 0 144610 station_ip 5.126.18.72 144610 port 479 144610 unique_id port 144610 remote_ip 10.8.0.42 144613 username hassan 144613 kill_reason Another user logged on this global unique id 144613 mac 144613 bytes_out 0 144613 bytes_in 0 144613 station_ip 5.119.199.195 144613 port 480 144613 unique_id port 144616 username hamidsalari 144616 kill_reason Another user logged on this global unique id 144616 mac 144616 bytes_out 0 144616 bytes_in 0 144616 station_ip 5.120.173.3 144616 port 451 144616 unique_id port 144617 username hassan 144617 kill_reason Another user logged on this global unique id 144617 mac 144617 bytes_out 0 144617 bytes_in 0 144617 station_ip 5.119.199.195 144617 port 480 144617 unique_id port 144620 username sabaghnezhad 144620 mac 144620 bytes_out 0 144620 bytes_in 0 144620 station_ip 5.213.156.98 144620 port 452 144620 unique_id port 144620 remote_ip 10.8.0.186 144622 username tahmasebi 144622 kill_reason Another user logged on this global unique id 144622 mac 144622 bytes_out 0 144622 bytes_in 0 144622 station_ip 5.126.18.72 144622 port 479 144622 unique_id port 144624 username barzegar 144624 mac 144624 bytes_out 0 144624 bytes_in 0 144624 station_ip 5.119.254.153 144624 port 249 144624 unique_id port 144624 remote_ip 10.8.1.174 144627 username hashtadani3 144627 mac 144627 bytes_out 0 144627 bytes_in 0 144627 station_ip 37.129.172.2 144627 port 445 144627 unique_id port 144627 remote_ip 10.8.0.154 144629 username mansour 144629 mac 144629 bytes_out 0 144629 bytes_in 0 144629 station_ip 5.202.132.13 144629 port 482 144629 unique_id port 144629 remote_ip 10.8.0.30 144633 username farhad2 144633 mac 144633 bytes_out 0 144633 bytes_in 0 144633 station_ip 5.119.205.209 144633 port 445 144633 unique_id port 144633 remote_ip 10.8.0.190 144637 username barzegar 144637 mac 144637 bytes_out 0 144637 bytes_in 0 144637 station_ip 5.119.254.153 144637 port 249 144637 unique_id port 144637 remote_ip 10.8.1.174 144639 username farhad2 144639 mac 144639 bytes_out 266157 144639 bytes_in 626983 144639 station_ip 5.119.205.209 144639 port 445 144639 unique_id port 144639 remote_ip 10.8.0.190 144640 username hashtadani3 144640 mac 144640 bytes_out 0 144640 bytes_in 0 144640 station_ip 37.129.172.2 144640 port 445 144640 unique_id port 144640 remote_ip 10.8.0.154 144643 username mirzaei 144643 mac 144643 bytes_out 147078 144643 bytes_in 268837 144643 station_ip 5.119.55.204 144643 port 250 144643 unique_id port 144643 remote_ip 10.8.1.30 144644 username hashtadani3 144644 mac 144644 bytes_out 0 144644 bytes_in 0 144644 station_ip 37.129.172.2 144644 port 464 144644 unique_id port 144644 remote_ip 10.8.0.154 144648 username hashtadani3 144648 mac 144648 bytes_out 0 144648 bytes_in 0 144648 station_ip 37.129.172.2 144648 port 445 144648 unique_id port 144648 remote_ip 10.8.0.154 144649 username farhad2 144649 mac 144649 bytes_out 0 144649 bytes_in 0 144649 station_ip 5.119.205.209 144649 port 452 144649 unique_id port 144649 remote_ip 10.8.0.190 144650 username barzegar 144618 mac 144618 bytes_out 1596632 144618 bytes_in 19004205 144618 station_ip 37.129.172.2 144618 port 470 144618 unique_id port 144618 remote_ip 10.8.0.154 144621 username hashtadani3 144621 mac 144621 bytes_out 0 144621 bytes_in 0 144621 station_ip 37.129.172.2 144621 port 452 144621 unique_id port 144621 remote_ip 10.8.0.154 144623 username hamidsalari 144623 mac 144623 bytes_out 0 144623 bytes_in 0 144623 station_ip 5.120.173.3 144623 port 451 144623 unique_id port 144625 username farhad2 144625 mac 144625 bytes_out 0 144625 bytes_in 0 144625 station_ip 5.119.205.209 144625 port 445 144625 unique_id port 144625 remote_ip 10.8.0.190 144626 username aminvpn 144626 unique_id port 144626 terminate_cause Lost-Carrier 144626 bytes_out 2499981 144626 bytes_in 8608926 144626 station_ip 5.233.49.34 144626 port 15730856 144626 nas_port_type Virtual 144626 remote_ip 5.5.5.33 144631 username tahmasebi 144631 kill_reason Another user logged on this global unique id 144631 mac 144631 bytes_out 0 144631 bytes_in 0 144631 station_ip 5.126.18.72 144631 port 479 144631 unique_id port 144632 username hashtadani3 144632 mac 144632 bytes_out 0 144632 bytes_in 0 144632 station_ip 37.129.172.2 144632 port 445 144632 unique_id port 144632 remote_ip 10.8.0.154 144638 username farhad2 144638 mac 144638 bytes_out 0 144638 bytes_in 0 144638 station_ip 5.119.205.209 144638 port 452 144638 unique_id port 144638 remote_ip 10.8.0.190 144642 username barzegar 144642 mac 144642 bytes_out 0 144642 bytes_in 0 144642 station_ip 5.119.254.153 144642 port 249 144642 unique_id port 144642 remote_ip 10.8.1.174 144645 username hashtadani3 144645 mac 144645 bytes_out 84375 144645 bytes_in 1046102 144645 station_ip 37.129.172.2 144645 port 249 144645 unique_id port 144645 remote_ip 10.8.1.94 144647 username mirzaei 144647 mac 144647 bytes_out 0 144647 bytes_in 0 144647 station_ip 5.113.225.232 144647 port 445 144647 unique_id port 144647 remote_ip 10.8.0.66 144654 username mosi 144654 kill_reason Another user logged on this global unique id 144654 mac 144654 bytes_out 0 144654 bytes_in 0 144654 station_ip 151.235.107.13 144654 port 469 144654 unique_id port 144654 remote_ip 10.8.0.138 144655 username afarin1 144655 mac 144655 bytes_out 0 144655 bytes_in 0 144655 station_ip 113.203.97.77 144655 port 452 144655 unique_id port 144655 remote_ip 10.8.0.118 144657 username mirzaei 144657 mac 144657 bytes_out 0 144657 bytes_in 0 144657 station_ip 5.120.58.147 144657 port 464 144657 unique_id port 144657 remote_ip 10.8.0.66 144662 username mirzaei 144662 mac 144662 bytes_out 4379 144662 bytes_in 6504 144662 station_ip 5.120.58.147 144662 port 249 144662 unique_id port 144662 remote_ip 10.8.1.30 144667 username barzegar 144667 mac 144667 bytes_out 0 144667 bytes_in 0 144667 station_ip 5.119.254.153 144667 port 250 144667 unique_id port 144667 remote_ip 10.8.1.174 144671 username barzegar 144671 mac 144671 bytes_out 0 144671 bytes_in 0 144671 station_ip 5.119.254.153 144671 port 249 144671 unique_id port 144671 remote_ip 10.8.1.174 144675 username mosi 144675 kill_reason Another user logged on this global unique id 144675 mac 144675 bytes_out 0 144675 bytes_in 0 144675 station_ip 151.235.107.13 144675 port 469 144675 unique_id port 144677 username barzegar 144677 mac 144677 bytes_out 0 144677 bytes_in 0 144677 station_ip 5.119.254.153 144677 port 249 144677 unique_id port 144677 remote_ip 10.8.1.174 144636 bytes_in 0 144636 station_ip 37.129.172.2 144636 port 445 144636 unique_id port 144636 remote_ip 10.8.0.154 144641 username hashtadani3 144641 mac 144641 bytes_out 0 144641 bytes_in 0 144641 station_ip 37.129.172.2 144641 port 445 144641 unique_id port 144641 remote_ip 10.8.0.154 144646 username hashtadani3 144646 mac 144646 bytes_out 0 144646 bytes_in 0 144646 station_ip 37.129.172.2 144646 port 464 144646 unique_id port 144646 remote_ip 10.8.0.154 144652 username hashtadani3 144652 mac 144652 bytes_out 0 144652 bytes_in 0 144652 station_ip 37.129.172.2 144652 port 452 144652 unique_id port 144652 remote_ip 10.8.0.154 144653 username farhad2 144653 mac 144653 bytes_out 0 144653 bytes_in 0 144653 station_ip 5.119.205.209 144653 port 445 144653 unique_id port 144653 remote_ip 10.8.0.190 144661 username mirzaei 144661 mac 144661 bytes_out 0 144661 bytes_in 0 144661 station_ip 5.120.58.147 144661 port 452 144661 unique_id port 144661 remote_ip 10.8.0.66 144663 username mosi 144663 kill_reason Another user logged on this global unique id 144663 mac 144663 bytes_out 0 144663 bytes_in 0 144663 station_ip 151.235.107.13 144663 port 469 144663 unique_id port 144665 username amirabbas 144665 unique_id port 144665 terminate_cause User-Request 144665 bytes_out 6641388 144665 bytes_in 172623278 144665 station_ip 37.27.31.233 144665 port 15730857 144665 nas_port_type Virtual 144665 remote_ip 5.5.5.34 144666 username mirzaei 144666 mac 144666 bytes_out 7659 144666 bytes_in 14343 144666 station_ip 5.120.58.147 144666 port 249 144666 unique_id port 144666 remote_ip 10.8.1.30 144670 username mosi 144670 kill_reason Another user logged on this global unique id 144670 mac 144670 bytes_out 0 144670 bytes_in 0 144670 station_ip 151.235.107.13 144670 port 469 144670 unique_id port 144681 username hashtadani3 144681 mac 144681 bytes_out 0 144681 bytes_in 0 144681 station_ip 37.129.172.2 144681 port 452 144681 unique_id port 144681 remote_ip 10.8.0.154 144684 username alikomsari 144684 kill_reason Another user logged on this global unique id 144684 mac 144684 bytes_out 0 144684 bytes_in 0 144684 station_ip 5.119.112.222 144684 port 451 144684 unique_id port 144684 remote_ip 10.8.0.70 144686 username mansour 144686 mac 144686 bytes_out 0 144686 bytes_in 0 144686 station_ip 5.202.132.13 144686 port 452 144686 unique_id port 144686 remote_ip 10.8.0.30 144687 username barzegar 144687 mac 144687 bytes_out 0 144687 bytes_in 0 144687 station_ip 5.119.254.153 144687 port 249 144687 unique_id port 144687 remote_ip 10.8.1.174 144688 username hassan 144688 mac 144688 bytes_out 0 144688 bytes_in 0 144688 station_ip 5.119.199.195 144688 port 480 144688 unique_id port 144691 username barzegar 144691 mac 144691 bytes_out 0 144691 bytes_in 0 144691 station_ip 5.119.254.153 144691 port 249 144691 unique_id port 144691 remote_ip 10.8.1.174 144695 username barzegar 144695 mac 144695 bytes_out 0 144695 bytes_in 0 144695 station_ip 5.119.254.153 144695 port 249 144695 unique_id port 144695 remote_ip 10.8.1.174 144696 username barzegar 144696 mac 144696 bytes_out 0 144696 bytes_in 0 144696 station_ip 5.119.254.153 144696 port 249 144696 unique_id port 144696 remote_ip 10.8.1.174 144702 username barzegar 144702 mac 144702 bytes_out 0 144702 bytes_in 0 144702 station_ip 5.119.254.153 144702 port 245 144702 unique_id port 144702 remote_ip 10.8.1.174 144705 username mehdizare 144705 mac 144705 bytes_out 0 144650 mac 144650 bytes_out 0 144650 bytes_in 0 144650 station_ip 5.119.254.153 144650 port 249 144650 unique_id port 144650 remote_ip 10.8.1.174 144651 username tahmasebi 144651 mac 144651 bytes_out 0 144651 bytes_in 0 144651 station_ip 5.126.18.72 144651 port 479 144651 unique_id port 144656 username hashtadani3 144656 mac 144656 bytes_out 0 144656 bytes_in 0 144656 station_ip 37.129.172.2 144656 port 452 144656 unique_id port 144656 remote_ip 10.8.0.154 144658 username barzegar 144658 mac 144658 bytes_out 0 144658 bytes_in 0 144658 station_ip 5.119.254.153 144658 port 249 144658 unique_id port 144658 remote_ip 10.8.1.174 144659 username hashtadani3 144659 mac 144659 bytes_out 0 144659 bytes_in 0 144659 station_ip 37.129.172.2 144659 port 464 144659 unique_id port 144659 remote_ip 10.8.0.154 144660 username farhad2 144660 mac 144660 bytes_out 856300 144660 bytes_in 2195194 144660 station_ip 5.119.205.209 144660 port 445 144660 unique_id port 144660 remote_ip 10.8.0.190 144664 username hashtadani3 144664 mac 144664 bytes_out 0 144664 bytes_in 0 144664 station_ip 37.129.172.2 144664 port 445 144664 unique_id port 144664 remote_ip 10.8.0.154 144668 username hashtadani3 144668 mac 144668 bytes_out 0 144668 bytes_in 0 144668 station_ip 37.129.172.2 144668 port 445 144668 unique_id port 144668 remote_ip 10.8.0.154 144669 username hashtadani3 144669 mac 144669 bytes_out 0 144669 bytes_in 0 144669 station_ip 37.129.172.2 144669 port 452 144669 unique_id port 144669 remote_ip 10.8.0.154 144672 username hashtadani3 144672 mac 144672 bytes_out 0 144672 bytes_in 0 144672 station_ip 37.129.172.2 144672 port 452 144672 unique_id port 144672 remote_ip 10.8.0.154 144673 username hashtadani3 144673 mac 144673 bytes_out 0 144673 bytes_in 0 144673 station_ip 37.129.172.2 144673 port 452 144673 unique_id port 144673 remote_ip 10.8.0.154 144674 username zotaher 144674 kill_reason Another user logged on this global unique id 144674 mac 144674 bytes_out 0 144674 bytes_in 0 144674 station_ip 83.123.57.0 144674 port 245 144674 unique_id port 144674 remote_ip 10.8.1.246 144676 username hashtadani3 144676 mac 144676 bytes_out 0 144676 bytes_in 0 144676 station_ip 37.129.172.2 144676 port 452 144676 unique_id port 144676 remote_ip 10.8.0.154 144678 username zotaher 144678 kill_reason Another user logged on this global unique id 144678 mac 144678 bytes_out 0 144678 bytes_in 0 144678 station_ip 83.123.57.0 144678 port 245 144678 unique_id port 144679 username hashtadani3 144679 mac 144679 bytes_out 0 144679 bytes_in 0 144679 station_ip 37.129.172.2 144679 port 452 144679 unique_id port 144679 remote_ip 10.8.0.154 144692 username sobhan 144692 unique_id port 144692 terminate_cause Lost-Carrier 144692 bytes_out 3538939 144692 bytes_in 55983461 144692 station_ip 5.119.87.24 144692 port 15730858 144692 nas_port_type Virtual 144692 remote_ip 5.5.5.36 144697 username barzegar 144697 mac 144697 bytes_out 0 144697 bytes_in 0 144697 station_ip 5.119.254.153 144697 port 249 144697 unique_id port 144697 remote_ip 10.8.1.174 144698 username barzegar 144698 mac 144698 bytes_out 0 144698 bytes_in 0 144698 station_ip 5.119.254.153 144698 port 249 144698 unique_id port 144698 remote_ip 10.8.1.174 144699 username barzegar 144699 mac 144699 bytes_out 0 144699 bytes_in 0 144699 station_ip 5.119.254.153 144699 port 249 144699 unique_id port 144699 remote_ip 10.8.1.174 144700 username zotaher 144680 username zotaher 144680 kill_reason Another user logged on this global unique id 144680 mac 144680 bytes_out 0 144680 bytes_in 0 144680 station_ip 83.123.57.0 144680 port 245 144680 unique_id port 144682 username barzegar 144682 mac 144682 bytes_out 0 144682 bytes_in 0 144682 station_ip 5.119.254.153 144682 port 249 144682 unique_id port 144682 remote_ip 10.8.1.174 144683 username hashtadani3 144683 kill_reason Another user logged on this global unique id 144683 mac 144683 bytes_out 0 144683 bytes_in 0 144683 station_ip 37.129.172.2 144683 port 452 144683 unique_id port 144685 username hashtadani3 144685 kill_reason Maximum check online fails reached 144685 mac 144685 bytes_out 0 144685 bytes_in 0 144685 station_ip 37.129.172.2 144685 port 452 144685 unique_id port 144689 username barzegar 144689 mac 144689 bytes_out 0 144689 bytes_in 0 144689 station_ip 5.119.254.153 144689 port 249 144689 unique_id port 144689 remote_ip 10.8.1.174 144690 username mehdizare 144690 mac 144690 bytes_out 0 144690 bytes_in 0 144690 station_ip 5.120.252.120 144690 port 242 144690 unique_id port 144690 remote_ip 10.8.1.42 144693 username barzegar 144693 mac 144693 bytes_out 0 144693 bytes_in 0 144693 station_ip 5.119.254.153 144693 port 249 144693 unique_id port 144693 remote_ip 10.8.1.174 144694 username alikomsari 144694 kill_reason Another user logged on this global unique id 144694 mac 144694 bytes_out 0 144694 bytes_in 0 144694 station_ip 5.119.112.222 144694 port 451 144694 unique_id port 144706 username barzegar 144706 mac 144706 bytes_out 0 144706 bytes_in 0 144706 station_ip 5.119.254.153 144706 port 464 144706 unique_id port 144706 remote_ip 10.8.0.234 144707 username barzegar 144707 mac 144707 bytes_out 0 144707 bytes_in 0 144707 station_ip 5.119.254.153 144707 port 464 144707 unique_id port 144707 remote_ip 10.8.0.234 144711 username barzegar 144711 mac 144711 bytes_out 0 144711 bytes_in 0 144711 station_ip 5.119.254.153 144711 port 452 144711 unique_id port 144711 remote_ip 10.8.0.234 144713 username hasanahmadi 144713 kill_reason Another user logged on this global unique id 144713 mac 144713 bytes_out 0 144713 bytes_in 0 144713 station_ip 37.129.115.109 144713 port 452 144713 unique_id port 144713 remote_ip 10.8.0.126 144714 username mosi 144714 mac 144714 bytes_out 0 144714 bytes_in 0 144714 station_ip 151.235.107.13 144714 port 469 144714 unique_id port 144716 username hasanahmadi 144716 mac 144716 bytes_out 0 144716 bytes_in 0 144716 station_ip 37.129.115.109 144716 port 469 144716 unique_id port 144716 remote_ip 10.8.0.126 144717 username barzegar 144717 mac 144717 bytes_out 0 144717 bytes_in 0 144717 station_ip 5.119.254.153 144717 port 469 144717 unique_id port 144717 remote_ip 10.8.0.234 144728 username barzegar 144728 mac 144728 bytes_out 0 144728 bytes_in 0 144728 station_ip 5.119.254.153 144728 port 242 144728 unique_id port 144728 remote_ip 10.8.1.174 144731 username hashtadani3 144731 mac 144731 bytes_out 0 144731 bytes_in 0 144731 station_ip 37.129.172.2 144731 port 469 144731 unique_id port 144731 remote_ip 10.8.0.154 144734 username hashtadani3 144734 mac 144734 bytes_out 0 144734 bytes_in 0 144734 station_ip 37.129.172.2 144734 port 469 144734 unique_id port 144734 remote_ip 10.8.0.154 144738 username hasanahmadi 144738 mac 144738 bytes_out 0 144738 bytes_in 0 144738 station_ip 113.203.33.89 144738 port 452 144738 unique_id port 144738 remote_ip 10.8.0.126 144700 mac 144700 bytes_out 0 144700 bytes_in 0 144700 station_ip 83.123.57.0 144700 port 245 144700 unique_id port 144701 username barzegar 144701 mac 144701 bytes_out 0 144701 bytes_in 0 144701 station_ip 5.119.254.153 144701 port 245 144701 unique_id port 144701 remote_ip 10.8.1.174 144703 username arash 144703 mac 144703 bytes_out 338013 144703 bytes_in 2915870 144703 station_ip 37.27.30.158 144703 port 452 144703 unique_id port 144703 remote_ip 10.8.0.114 144704 username barzegar 144704 mac 144704 bytes_out 0 144704 bytes_in 0 144704 station_ip 5.119.254.153 144704 port 452 144704 unique_id port 144704 remote_ip 10.8.0.234 144708 username alikomsari 144708 kill_reason Another user logged on this global unique id 144708 mac 144708 bytes_out 0 144708 bytes_in 0 144708 station_ip 5.119.112.222 144708 port 451 144708 unique_id port 144718 username alikomsari 144718 kill_reason Another user logged on this global unique id 144718 mac 144718 bytes_out 0 144718 bytes_in 0 144718 station_ip 5.119.112.222 144718 port 451 144718 unique_id port 144721 username barzegar 144721 mac 144721 bytes_out 0 144721 bytes_in 0 144721 station_ip 5.119.254.153 144721 port 470 144721 unique_id port 144721 remote_ip 10.8.0.234 144722 username barzegar 144722 mac 144722 bytes_out 0 144722 bytes_in 0 144722 station_ip 5.119.254.153 144722 port 242 144722 unique_id port 144722 remote_ip 10.8.1.174 144723 username hashtadani3 144723 mac 144723 bytes_out 0 144723 bytes_in 0 144723 station_ip 37.129.172.2 144723 port 452 144723 unique_id port 144723 remote_ip 10.8.0.154 144732 username hashtadani3 144732 mac 144732 bytes_out 0 144732 bytes_in 0 144732 station_ip 37.129.172.2 144732 port 469 144732 unique_id port 144732 remote_ip 10.8.0.154 144733 username barzegar 144733 mac 144733 bytes_out 0 144733 bytes_in 0 144733 station_ip 5.119.254.153 144733 port 242 144733 unique_id port 144733 remote_ip 10.8.1.174 144736 username barzegar 144736 mac 144736 bytes_out 0 144736 bytes_in 0 144736 station_ip 5.119.254.153 144736 port 242 144736 unique_id port 144736 remote_ip 10.8.1.174 144737 username hashtadani3 144737 mac 144737 bytes_out 0 144737 bytes_in 0 144737 station_ip 37.129.172.2 144737 port 470 144737 unique_id port 144737 remote_ip 10.8.0.154 144739 username hashtadani3 144739 mac 144739 bytes_out 0 144739 bytes_in 0 144739 station_ip 37.129.172.2 144739 port 452 144739 unique_id port 144739 remote_ip 10.8.0.154 144741 username mohammadjavad 144741 mac 144741 bytes_out 1014635 144741 bytes_in 15424188 144741 station_ip 83.123.157.176 144741 port 469 144741 unique_id port 144741 remote_ip 10.8.0.142 144742 username hashtadani3 144742 mac 144742 bytes_out 0 144742 bytes_in 0 144742 station_ip 37.129.172.2 144742 port 469 144742 unique_id port 144742 remote_ip 10.8.0.154 144743 username hashtadani3 144743 mac 144743 bytes_out 0 144743 bytes_in 0 144743 station_ip 37.129.172.2 144743 port 479 144743 unique_id port 144743 remote_ip 10.8.0.154 144748 username hashtadani3 144748 mac 144748 bytes_out 0 144748 bytes_in 0 144748 station_ip 37.129.172.2 144748 port 469 144748 unique_id port 144748 remote_ip 10.8.0.154 144749 username hashtadani3 144749 mac 144749 bytes_out 0 144749 bytes_in 0 144749 station_ip 37.129.172.2 144749 port 469 144749 unique_id port 144749 remote_ip 10.8.0.154 144750 unique_id port 144750 remote_ip 10.8.1.174 144751 username hashtadani3 144705 bytes_in 0 144705 station_ip 5.120.252.120 144705 port 242 144705 unique_id port 144705 remote_ip 10.8.1.42 144709 username barzegar 144709 mac 144709 bytes_out 0 144709 bytes_in 0 144709 station_ip 5.119.254.153 144709 port 464 144709 unique_id port 144709 remote_ip 10.8.0.234 144710 username mehdizare 144710 mac 144710 bytes_out 29309 144710 bytes_in 41862 144710 station_ip 5.120.252.120 144710 port 452 144710 unique_id port 144710 remote_ip 10.8.0.90 144712 username barzegar 144712 mac 144712 bytes_out 0 144712 bytes_in 0 144712 station_ip 5.119.254.153 144712 port 470 144712 unique_id port 144712 remote_ip 10.8.0.234 144715 username hasanahmadi 144715 mac 144715 bytes_out 0 144715 bytes_in 0 144715 station_ip 37.129.115.109 144715 port 452 144715 unique_id port 144719 username barzegar 144719 mac 144719 bytes_out 0 144719 bytes_in 0 144719 station_ip 5.119.254.153 144719 port 469 144719 unique_id port 144719 remote_ip 10.8.0.234 144720 username hasanahmadi 144720 mac 144720 bytes_out 0 144720 bytes_in 0 144720 station_ip 37.129.115.109 144720 port 470 144720 unique_id port 144720 remote_ip 10.8.0.126 144724 username hashtadani3 144724 mac 144724 bytes_out 0 144724 bytes_in 0 144724 station_ip 37.129.172.2 144724 port 452 144724 unique_id port 144724 remote_ip 10.8.0.154 144725 username hasanahmadi 144725 mac 144725 bytes_out 0 144725 bytes_in 0 144725 station_ip 113.203.33.89 144725 port 469 144725 unique_id port 144725 remote_ip 10.8.0.126 144726 username hashtadani3 144726 mac 144726 bytes_out 0 144726 bytes_in 0 144726 station_ip 37.129.172.2 144726 port 469 144726 unique_id port 144726 remote_ip 10.8.0.154 144727 username hashtadani3 144727 mac 144727 bytes_out 0 144727 bytes_in 0 144727 station_ip 37.129.172.2 144727 port 469 144727 unique_id port 144727 remote_ip 10.8.0.154 144729 username hashtadani3 144729 mac 144729 bytes_out 0 144729 bytes_in 0 144729 station_ip 37.129.172.2 144729 port 469 144729 unique_id port 144729 remote_ip 10.8.0.154 144730 username hashtadani3 144730 mac 144730 bytes_out 0 144730 bytes_in 0 144730 station_ip 37.129.172.2 144730 port 469 144730 unique_id port 144730 remote_ip 10.8.0.154 144735 username alikomsari 144735 kill_reason Another user logged on this global unique id 144735 mac 144735 bytes_out 0 144735 bytes_in 0 144735 station_ip 5.119.112.222 144735 port 451 144735 unique_id port 144740 username barzegar 144740 mac 144740 bytes_out 0 144740 bytes_in 0 144740 station_ip 5.119.254.153 144740 port 242 144740 unique_id port 144740 remote_ip 10.8.1.174 144744 username hosseine 144744 mac 144744 bytes_out 0 144744 bytes_in 0 144744 station_ip 83.122.3.4 144744 port 470 144744 unique_id port 144744 remote_ip 10.8.0.238 144745 username sedighe 144745 mac 144745 bytes_out 0 144745 bytes_in 0 144745 station_ip 83.123.109.115 144745 port 469 144745 unique_id port 144745 remote_ip 10.8.0.146 144746 username barzegar 144746 mac 144746 bytes_out 0 144746 bytes_in 0 144746 station_ip 5.119.254.153 144746 port 242 144746 unique_id port 144746 remote_ip 10.8.1.174 144747 username hashtadani3 144747 mac 144747 bytes_out 0 144747 bytes_in 0 144747 station_ip 37.129.172.2 144747 port 469 144747 unique_id port 144747 remote_ip 10.8.0.154 144750 username barzegar 144750 mac 144750 bytes_out 0 144750 bytes_in 0 144750 station_ip 5.119.254.153 144750 port 242 144751 mac 144751 bytes_out 0 144751 bytes_in 0 144751 station_ip 37.129.172.2 144751 port 469 144751 unique_id port 144751 remote_ip 10.8.0.154 144755 username khalili 144755 mac 144755 bytes_out 0 144755 bytes_in 0 144755 station_ip 5.119.175.202 144755 port 440 144755 unique_id port 144758 username barzegar 144758 mac 144758 bytes_out 0 144758 bytes_in 0 144758 station_ip 5.119.254.153 144758 port 245 144758 unique_id port 144758 remote_ip 10.8.1.174 144759 username sedighe 144759 mac 144759 bytes_out 161171 144759 bytes_in 219193 144759 station_ip 83.122.199.78 144759 port 452 144759 unique_id port 144759 remote_ip 10.8.0.146 144764 username hashtadani3 144764 mac 144764 bytes_out 0 144764 bytes_in 0 144764 station_ip 37.129.172.2 144764 port 452 144764 unique_id port 144764 remote_ip 10.8.0.154 144770 username sedighe 144770 mac 144770 bytes_out 111236 144770 bytes_in 141490 144770 station_ip 83.122.62.94 144770 port 440 144770 unique_id port 144770 remote_ip 10.8.0.146 144773 username barzegar 144773 mac 144773 bytes_out 0 144773 bytes_in 0 144773 station_ip 5.119.254.153 144773 port 245 144773 unique_id port 144773 remote_ip 10.8.1.174 144776 username hashtadani3 144776 mac 144776 bytes_out 0 144776 bytes_in 0 144776 station_ip 37.129.172.2 144776 port 440 144776 unique_id port 144776 remote_ip 10.8.0.154 144777 username sedighe 144777 kill_reason Another user logged on this global unique id 144777 mac 144777 bytes_out 0 144777 bytes_in 0 144777 station_ip 113.203.100.26 144777 port 452 144777 unique_id port 144777 remote_ip 10.8.0.146 144778 username hasanahmadi 144778 mac 144778 bytes_out 0 144778 bytes_in 0 144778 station_ip 113.203.33.89 144778 port 479 144778 unique_id port 144778 remote_ip 10.8.0.126 144779 username sedighe 144779 mac 144779 bytes_out 0 144779 bytes_in 0 144779 station_ip 113.203.100.26 144779 port 452 144779 unique_id port 144782 username sedighe 144782 mac 144782 bytes_out 0 144782 bytes_in 0 144782 station_ip 113.203.13.119 144782 port 470 144782 unique_id port 144782 remote_ip 10.8.0.146 144789 username barzegar 144789 mac 144789 bytes_out 0 144789 bytes_in 0 144789 station_ip 5.119.254.153 144789 port 242 144789 unique_id port 144789 remote_ip 10.8.1.174 144792 username hashtadani3 144792 mac 144792 bytes_out 0 144792 bytes_in 0 144792 station_ip 37.129.172.2 144792 port 451 144792 unique_id port 144792 remote_ip 10.8.0.154 144797 username meysam 144797 mac 144797 bytes_out 123128 144797 bytes_in 1245915 144797 station_ip 5.119.229.182 144797 port 242 144797 unique_id port 144797 remote_ip 10.8.1.34 144798 username hashtadani3 144798 mac 144798 bytes_out 0 144798 bytes_in 0 144798 station_ip 37.129.172.2 144798 port 470 144798 unique_id port 144798 remote_ip 10.8.0.154 144799 username hashtadani3 144799 mac 144799 bytes_out 0 144799 bytes_in 0 144799 station_ip 37.129.172.2 144799 port 470 144799 unique_id port 144799 remote_ip 10.8.0.154 144800 username meysam 144800 mac 144800 bytes_out 259301 144800 bytes_in 4540406 144800 station_ip 188.159.251.16 144800 port 242 144800 unique_id port 144800 remote_ip 10.8.1.34 144802 username barzegar 144802 mac 144802 bytes_out 0 144802 bytes_in 0 144802 station_ip 5.119.254.153 144802 port 242 144802 unique_id port 144802 remote_ip 10.8.1.174 144805 username jafari 144805 kill_reason Another user logged on this global unique id 144805 mac 144752 username hasanahmadi 144752 mac 144752 bytes_out 49866 144752 bytes_in 85155 144752 station_ip 113.203.33.89 144752 port 452 144752 unique_id port 144752 remote_ip 10.8.0.126 144753 username sedighe 144753 mac 144753 bytes_out 1498181 144753 bytes_in 22485091 144753 station_ip 83.123.109.115 144753 port 470 144753 unique_id port 144753 remote_ip 10.8.0.146 144756 username hashtadani3 144756 mac 144756 bytes_out 0 144756 bytes_in 0 144756 station_ip 37.129.172.2 144756 port 440 144756 unique_id port 144756 remote_ip 10.8.0.154 144757 username hashtadani3 144757 mac 144757 bytes_out 0 144757 bytes_in 0 144757 station_ip 37.129.172.2 144757 port 440 144757 unique_id port 144757 remote_ip 10.8.0.154 144760 username sedighe 144760 mac 144760 bytes_out 0 144760 bytes_in 0 144760 station_ip 83.122.199.78 144760 port 440 144760 unique_id port 144760 remote_ip 10.8.0.146 144765 username moradi 144765 kill_reason Another user logged on this global unique id 144765 mac 144765 bytes_out 0 144765 bytes_in 0 144765 station_ip 37.129.14.153 144765 port 242 144765 unique_id port 144765 remote_ip 10.8.1.202 144766 username hashtadani3 144766 mac 144766 bytes_out 0 144766 bytes_in 0 144766 station_ip 37.129.172.2 144766 port 452 144766 unique_id port 144766 remote_ip 10.8.0.154 144767 username barzegar 144767 mac 144767 bytes_out 0 144767 bytes_in 0 144767 station_ip 5.119.254.153 144767 port 245 144767 unique_id port 144767 remote_ip 10.8.1.174 144768 username hashtadani3 144768 mac 144768 bytes_out 0 144768 bytes_in 0 144768 station_ip 37.129.172.2 144768 port 245 144768 unique_id port 144768 remote_ip 10.8.1.94 144769 username hashtadani3 144769 mac 144769 bytes_out 0 144769 bytes_in 0 144769 station_ip 37.129.172.2 144769 port 452 144769 unique_id port 144769 remote_ip 10.8.0.154 144775 username hashtadani3 144775 mac 144775 bytes_out 0 144775 bytes_in 0 144775 station_ip 37.129.172.2 144775 port 245 144775 unique_id port 144775 remote_ip 10.8.1.94 144781 username moradi 144781 kill_reason Another user logged on this global unique id 144781 mac 144781 bytes_out 0 144781 bytes_in 0 144781 station_ip 37.129.14.153 144781 port 242 144781 unique_id port 144783 username barzegar 144783 mac 144783 bytes_out 0 144783 bytes_in 0 144783 station_ip 5.119.254.153 144783 port 245 144783 unique_id port 144783 remote_ip 10.8.1.174 144784 username alikomsari 144784 mac 144784 bytes_out 0 144784 bytes_in 0 144784 station_ip 5.119.112.222 144784 port 451 144784 unique_id port 144788 username hashtadani3 144788 mac 144788 bytes_out 0 144788 bytes_in 0 144788 station_ip 37.129.172.2 144788 port 451 144788 unique_id port 144788 remote_ip 10.8.0.154 144791 username hashtadani3 144791 mac 144791 bytes_out 0 144791 bytes_in 0 144791 station_ip 37.129.172.2 144791 port 451 144791 unique_id port 144791 remote_ip 10.8.0.154 144794 username barzegar 144794 mac 144794 bytes_out 0 144794 bytes_in 0 144794 station_ip 5.119.254.153 144794 port 242 144794 unique_id port 144794 remote_ip 10.8.1.174 144796 username jafari 144796 kill_reason Another user logged on this global unique id 144796 mac 144796 bytes_out 0 144796 bytes_in 0 144796 station_ip 37.137.14.188 144796 port 440 144796 unique_id port 144796 remote_ip 10.8.0.242 144801 username alikomsari 144801 mac 144801 bytes_out 1534644 144801 bytes_in 2926668 144801 station_ip 5.119.112.222 144801 port 245 144801 unique_id port 144801 remote_ip 10.8.1.14 144754 username hashtadani3 144754 mac 144754 bytes_out 0 144754 bytes_in 0 144754 station_ip 37.129.172.2 144754 port 470 144754 unique_id port 144754 remote_ip 10.8.0.154 144761 username alikomsari 144761 kill_reason Another user logged on this global unique id 144761 mac 144761 bytes_out 0 144761 bytes_in 0 144761 station_ip 5.119.112.222 144761 port 451 144761 unique_id port 144762 username hashtadani3 144762 mac 144762 bytes_out 5915 144762 bytes_in 20054 144762 station_ip 37.129.172.2 144762 port 452 144762 unique_id port 144762 remote_ip 10.8.0.154 144763 username sedighe 144763 mac 144763 bytes_out 33108 144763 bytes_in 57174 144763 station_ip 83.122.199.78 144763 port 470 144763 unique_id port 144763 remote_ip 10.8.0.146 144771 username hashtadani3 144771 mac 144771 bytes_out 0 144771 bytes_in 0 144771 station_ip 37.129.172.2 144771 port 440 144771 unique_id port 144771 remote_ip 10.8.0.154 144772 username moradi 144772 kill_reason Another user logged on this global unique id 144772 mac 144772 bytes_out 0 144772 bytes_in 0 144772 station_ip 37.129.14.153 144772 port 242 144772 unique_id port 144774 username mohammadjavad 144774 mac 144774 bytes_out 0 144774 bytes_in 0 144774 station_ip 83.123.133.212 144774 port 440 144774 unique_id port 144774 remote_ip 10.8.0.142 144780 username hashtadani3 144780 mac 144780 bytes_out 0 144780 bytes_in 0 144780 station_ip 37.129.172.2 144780 port 452 144780 unique_id port 144780 remote_ip 10.8.0.154 144785 username hashtadani3 144785 mac 144785 bytes_out 0 144785 bytes_in 0 144785 station_ip 37.129.172.2 144785 port 451 144785 unique_id port 144785 remote_ip 10.8.0.154 144786 username hashtadani3 144786 mac 144786 bytes_out 0 144786 bytes_in 0 144786 station_ip 37.129.172.2 144786 port 451 144786 unique_id port 144786 remote_ip 10.8.0.154 144787 username moradi 144787 mac 144787 bytes_out 0 144787 bytes_in 0 144787 station_ip 37.129.14.153 144787 port 242 144787 unique_id port 144790 username hashtadani3 144790 mac 144790 bytes_out 0 144790 bytes_in 0 144790 station_ip 37.129.172.2 144790 port 451 144790 unique_id port 144790 remote_ip 10.8.0.154 144793 username hasanahmadi 144793 mac 144793 bytes_out 0 144793 bytes_in 0 144793 station_ip 113.203.9.119 144793 port 440 144793 unique_id port 144793 remote_ip 10.8.0.126 144795 username hashtadani3 144795 mac 144795 bytes_out 0 144795 bytes_in 0 144795 station_ip 37.129.172.2 144795 port 470 144795 unique_id port 144795 remote_ip 10.8.0.154 144803 username hashtadani3 144803 mac 144803 bytes_out 0 144803 bytes_in 0 144803 station_ip 37.129.172.2 144803 port 242 144803 unique_id port 144803 remote_ip 10.8.1.94 144804 username hashtadani3 144804 mac 144804 bytes_out 0 144804 bytes_in 0 144804 station_ip 37.129.172.2 144804 port 470 144804 unique_id port 144804 remote_ip 10.8.0.154 144807 username mehdizare 144807 kill_reason Another user logged on this global unique id 144807 mac 144807 bytes_out 0 144807 bytes_in 0 144807 station_ip 5.120.252.120 144807 port 464 144807 unique_id port 144807 remote_ip 10.8.0.90 144809 username hasanahmadi 144809 mac 144809 bytes_out 0 144809 bytes_in 0 144809 station_ip 113.203.9.119 144809 port 470 144809 unique_id port 144809 remote_ip 10.8.0.126 144811 username barzegar 144811 mac 144811 bytes_out 0 144811 bytes_in 0 144811 station_ip 5.119.254.153 144811 port 242 144811 unique_id port 144811 remote_ip 10.8.1.174 144816 username hashtadani3 144805 bytes_out 0 144805 bytes_in 0 144805 station_ip 37.137.14.188 144805 port 440 144805 unique_id port 144812 username forozandeh1 144812 mac 144812 bytes_out 0 144812 bytes_in 0 144812 station_ip 37.129.47.194 144812 port 480 144812 unique_id port 144812 remote_ip 10.8.0.130 144813 username jafari 144813 kill_reason Another user logged on this global unique id 144813 mac 144813 bytes_out 0 144813 bytes_in 0 144813 station_ip 37.137.14.188 144813 port 440 144813 unique_id port 144817 username vanila 144817 kill_reason Another user logged on this global unique id 144817 mac 144817 bytes_out 0 144817 bytes_in 0 144817 station_ip 37.129.46.212 144817 port 479 144817 unique_id port 144817 remote_ip 10.8.0.178 144821 username hashtadani3 144821 mac 144821 bytes_out 0 144821 bytes_in 0 144821 station_ip 37.129.172.2 144821 port 451 144821 unique_id port 144821 remote_ip 10.8.0.154 144824 username jafari 144824 mac 144824 bytes_out 0 144824 bytes_in 0 144824 station_ip 37.137.14.188 144824 port 440 144824 unique_id port 144825 username hasanahmadi 144825 mac 144825 bytes_out 35026 144825 bytes_in 52478 144825 station_ip 83.122.124.100 144825 port 481 144825 unique_id port 144825 remote_ip 10.8.0.126 144832 username hashtadani3 144832 mac 144832 bytes_out 0 144832 bytes_in 0 144832 station_ip 37.129.172.2 144832 port 440 144832 unique_id port 144832 remote_ip 10.8.0.154 144835 username hasanahmadi 144835 mac 144835 bytes_out 41845 144835 bytes_in 146343 144835 station_ip 83.122.228.187 144835 port 451 144835 unique_id port 144835 remote_ip 10.8.0.126 144836 username kalantary 144836 mac 144836 bytes_out 0 144836 bytes_in 0 144836 station_ip 83.122.100.237 144836 port 242 144836 unique_id port 144836 remote_ip 10.8.1.26 144838 username khalili 144838 kill_reason Another user logged on this global unique id 144838 mac 144838 bytes_out 0 144838 bytes_in 0 144838 station_ip 5.119.28.218 144838 port 452 144838 unique_id port 144838 remote_ip 10.8.0.86 144839 username sedighe 144839 mac 144839 bytes_out 292635 144839 bytes_in 504624 144839 station_ip 83.123.176.197 144839 port 440 144839 unique_id port 144839 remote_ip 10.8.0.146 144840 username hasanahmadi 144840 mac 144840 bytes_out 0 144840 bytes_in 0 144840 station_ip 83.122.200.142 144840 port 470 144840 unique_id port 144840 remote_ip 10.8.0.126 144841 username hashtadani3 144841 mac 144841 bytes_out 0 144841 bytes_in 0 144841 station_ip 37.129.172.2 144841 port 242 144841 unique_id port 144841 remote_ip 10.8.1.94 144843 username barzegar 144843 mac 144843 bytes_out 0 144843 bytes_in 0 144843 station_ip 5.119.254.153 144843 port 470 144843 unique_id port 144843 remote_ip 10.8.0.234 144845 username barzegar 144845 mac 144845 bytes_out 0 144845 bytes_in 0 144845 station_ip 5.119.254.153 144845 port 470 144845 unique_id port 144845 remote_ip 10.8.0.234 144847 username sedighe 144847 mac 144847 bytes_out 0 144847 bytes_in 0 144847 station_ip 83.123.176.197 144847 port 451 144847 unique_id port 144847 remote_ip 10.8.0.146 144848 username barzegar 144848 mac 144848 bytes_out 0 144848 bytes_in 0 144848 station_ip 5.119.254.153 144848 port 470 144848 unique_id port 144848 remote_ip 10.8.0.234 144849 username godarzi 144849 mac 144849 bytes_out 951607 144849 bytes_in 12300641 144849 station_ip 5.119.104.127 144849 port 479 144849 unique_id port 144849 remote_ip 10.8.0.174 144851 username hashtadani3 144851 mac 144806 username hasanahmadi 144806 mac 144806 bytes_out 0 144806 bytes_in 0 144806 station_ip 113.203.9.119 144806 port 451 144806 unique_id port 144806 remote_ip 10.8.0.126 144808 username hashtadani3 144808 mac 144808 bytes_out 0 144808 bytes_in 0 144808 station_ip 37.129.172.2 144808 port 479 144808 unique_id port 144808 remote_ip 10.8.0.154 144810 username hashtadani3 144810 mac 144810 bytes_out 0 144810 bytes_in 0 144810 station_ip 37.129.172.2 144810 port 470 144810 unique_id port 144810 remote_ip 10.8.0.154 144814 username vanila 144814 mac 144814 bytes_out 0 144814 bytes_in 0 144814 station_ip 37.129.46.212 144814 port 479 144814 unique_id port 144814 remote_ip 10.8.0.178 144815 username mehdizare 144815 kill_reason Another user logged on this global unique id 144815 mac 144815 bytes_out 0 144815 bytes_in 0 144815 station_ip 5.120.252.120 144815 port 464 144815 unique_id port 144818 username godarzi 144818 mac 144818 bytes_out 1962195 144818 bytes_in 3915258 144818 station_ip 5.119.104.127 144818 port 470 144818 unique_id port 144818 remote_ip 10.8.0.174 144820 username mohammadjavad 144820 mac 144820 bytes_out 444764 144820 bytes_in 4131699 144820 station_ip 83.122.166.184 144820 port 451 144820 unique_id port 144820 remote_ip 10.8.0.142 144822 username malekpoir 144822 kill_reason Another user logged on this global unique id 144822 mac 144822 bytes_out 0 144822 bytes_in 0 144822 station_ip 5.119.18.226 144822 port 452 144822 unique_id port 144822 remote_ip 10.8.0.58 144826 username malekpoir 144826 mac 144826 bytes_out 0 144826 bytes_in 0 144826 station_ip 5.119.18.226 144826 port 452 144826 unique_id port 144827 username hashtadani3 144827 mac 144827 bytes_out 0 144827 bytes_in 0 144827 station_ip 37.129.172.2 144827 port 451 144827 unique_id port 144827 remote_ip 10.8.0.154 144828 username hashtadani3 144828 mac 144828 bytes_out 0 144828 bytes_in 0 144828 station_ip 37.129.172.2 144828 port 452 144828 unique_id port 144828 remote_ip 10.8.0.154 144830 username forozandeh1 144830 mac 144830 bytes_out 0 144830 bytes_in 0 144830 station_ip 37.129.21.112 144830 port 451 144830 unique_id port 144830 remote_ip 10.8.0.130 144834 username barzegar 144834 mac 144834 bytes_out 0 144834 bytes_in 0 144834 station_ip 5.119.254.153 144834 port 440 144834 unique_id port 144834 remote_ip 10.8.0.234 144844 username hashtadani3 144844 mac 144844 bytes_out 0 144844 bytes_in 0 144844 station_ip 37.129.172.2 144844 port 480 144844 unique_id port 144844 remote_ip 10.8.0.154 144846 username hashtadani3 144846 mac 144846 bytes_out 0 144846 bytes_in 0 144846 station_ip 37.129.172.2 144846 port 480 144846 unique_id port 144846 remote_ip 10.8.0.154 144850 username hashtadani3 144850 mac 144850 bytes_out 0 144850 bytes_in 0 144850 station_ip 37.129.172.2 144850 port 451 144850 unique_id port 144850 remote_ip 10.8.0.154 144852 username hasanahmadi 144852 mac 144852 bytes_out 0 144852 bytes_in 0 144852 station_ip 37.129.191.199 144852 port 440 144852 unique_id port 144852 remote_ip 10.8.0.126 144853 username hashtadani3 144853 mac 144853 bytes_out 0 144853 bytes_in 0 144853 station_ip 37.129.172.2 144853 port 250 144853 unique_id port 144853 remote_ip 10.8.1.94 144856 username kalantary 144856 mac 144856 bytes_out 1199416 144856 bytes_in 6697221 144856 station_ip 83.122.48.137 144856 port 242 144856 unique_id port 144856 remote_ip 10.8.1.26 144858 username barzegar 144816 mac 144816 bytes_out 0 144816 bytes_in 0 144816 station_ip 37.129.172.2 144816 port 480 144816 unique_id port 144816 remote_ip 10.8.0.154 144819 username vanila 144819 mac 144819 bytes_out 0 144819 bytes_in 0 144819 station_ip 37.129.46.212 144819 port 479 144819 unique_id port 144823 username barzegar 144823 mac 144823 bytes_out 0 144823 bytes_in 0 144823 station_ip 5.119.254.153 144823 port 242 144823 unique_id port 144823 remote_ip 10.8.1.174 144829 username barzegar 144829 mac 144829 bytes_out 0 144829 bytes_in 0 144829 station_ip 5.119.254.153 144829 port 242 144829 unique_id port 144829 remote_ip 10.8.1.174 144831 username hasanahmadi 144831 mac 144831 bytes_out 0 144831 bytes_in 0 144831 station_ip 83.122.228.187 144831 port 440 144831 unique_id port 144831 remote_ip 10.8.0.126 144833 username hashtadani3 144833 mac 144833 bytes_out 0 144833 bytes_in 0 144833 station_ip 37.129.172.2 144833 port 440 144833 unique_id port 144833 remote_ip 10.8.0.154 144837 username barzegar 144837 mac 144837 bytes_out 0 144837 bytes_in 0 144837 station_ip 5.119.254.153 144837 port 451 144837 unique_id port 144837 remote_ip 10.8.0.234 144842 username hashtadani3 144842 mac 144842 bytes_out 0 144842 bytes_in 0 144842 station_ip 37.129.172.2 144842 port 479 144842 unique_id port 144842 remote_ip 10.8.0.154 144861 username sedighe 144861 mac 144861 bytes_out 0 144861 bytes_in 0 144861 station_ip 83.123.176.197 144861 port 480 144861 unique_id port 144861 remote_ip 10.8.0.146 144862 username forozandeh1 144862 mac 144862 bytes_out 0 144862 bytes_in 0 144862 station_ip 37.129.29.2 144862 port 479 144862 unique_id port 144862 remote_ip 10.8.0.130 144867 username alihosseini1 144867 mac 144867 bytes_out 0 144867 bytes_in 0 144867 station_ip 5.119.39.95 144867 port 451 144867 unique_id port 144867 remote_ip 10.8.0.166 144868 username alikomsari 144868 mac 144868 bytes_out 0 144868 bytes_in 0 144868 station_ip 5.119.112.222 144868 port 440 144868 unique_id port 144868 remote_ip 10.8.0.70 144870 username zare 144870 kill_reason Relative expiration date has reached 144870 mac 144870 bytes_out 0 144870 bytes_in 0 144870 station_ip 94.183.214.14 144870 port 440 144870 unique_id port 144871 username hashtadani3 144871 mac 144871 bytes_out 0 144871 bytes_in 0 144871 station_ip 37.129.172.2 144871 port 242 144871 unique_id port 144871 remote_ip 10.8.1.94 144876 username hashtadani3 144876 mac 144876 bytes_out 0 144876 bytes_in 0 144876 station_ip 37.129.172.2 144876 port 470 144876 unique_id port 144876 remote_ip 10.8.0.154 144878 username hashtadani3 144878 mac 144878 bytes_out 0 144878 bytes_in 0 144878 station_ip 37.129.172.2 144878 port 470 144878 unique_id port 144878 remote_ip 10.8.0.154 144881 username hashtadani3 144881 mac 144881 bytes_out 0 144881 bytes_in 0 144881 station_ip 37.129.172.2 144881 port 470 144881 unique_id port 144881 remote_ip 10.8.0.154 144885 username hashtadani3 144885 mac 144885 bytes_out 0 144885 bytes_in 0 144885 station_ip 37.129.172.2 144885 port 470 144885 unique_id port 144885 remote_ip 10.8.0.154 144887 username hashtadani3 144887 mac 144887 bytes_out 0 144887 bytes_in 0 144887 station_ip 37.129.172.2 144887 port 470 144887 unique_id port 144887 remote_ip 10.8.0.154 144891 username hashtadani3 144891 kill_reason Maximum check online fails reached 144891 mac 144891 bytes_out 0 144891 bytes_in 0 144851 bytes_out 0 144851 bytes_in 0 144851 station_ip 37.129.172.2 144851 port 451 144851 unique_id port 144851 remote_ip 10.8.0.154 144854 username hashtadani3 144854 mac 144854 bytes_out 0 144854 bytes_in 0 144854 station_ip 37.129.172.2 144854 port 250 144854 unique_id port 144854 remote_ip 10.8.1.94 144855 username hashtadani3 144855 mac 144855 bytes_out 0 144855 bytes_in 0 144855 station_ip 37.129.172.2 144855 port 251 144855 unique_id port 144855 remote_ip 10.8.1.94 144857 username hashtadani3 144857 mac 144857 bytes_out 0 144857 bytes_in 0 144857 station_ip 37.129.172.2 144857 port 440 144857 unique_id port 144857 remote_ip 10.8.0.154 144859 username hasanahmadi 144859 mac 144859 bytes_out 0 144859 bytes_in 0 144859 station_ip 37.129.191.199 144859 port 470 144859 unique_id port 144859 remote_ip 10.8.0.126 144869 username hashtadani3 144869 mac 144869 bytes_out 0 144869 bytes_in 0 144869 station_ip 37.129.172.2 144869 port 451 144869 unique_id port 144869 remote_ip 10.8.0.154 144875 username hashtadani3 144875 mac 144875 bytes_out 0 144875 bytes_in 0 144875 station_ip 37.129.172.2 144875 port 242 144875 unique_id port 144875 remote_ip 10.8.1.94 144880 username hashtadani3 144880 mac 144880 bytes_out 0 144880 bytes_in 0 144880 station_ip 37.129.172.2 144880 port 470 144880 unique_id port 144880 remote_ip 10.8.0.154 144884 username hashtadani3 144884 mac 144884 bytes_out 0 144884 bytes_in 0 144884 station_ip 37.129.172.2 144884 port 470 144884 unique_id port 144884 remote_ip 10.8.0.154 144886 username hashtadani3 144886 mac 144886 bytes_out 0 144886 bytes_in 0 144886 station_ip 37.129.172.2 144886 port 470 144886 unique_id port 144886 remote_ip 10.8.0.154 144890 username hashtadani3 144890 mac 144890 bytes_out 0 144890 bytes_in 0 144890 station_ip 37.129.172.2 144890 port 252 144890 unique_id port 144890 remote_ip 10.8.1.94 144892 username barzegar 144892 kill_reason Maximum check online fails reached 144892 mac 144892 bytes_out 0 144892 bytes_in 0 144892 station_ip 5.119.254.153 144892 port 479 144892 unique_id port 144894 username barzegar 144894 mac 144894 bytes_out 2181 144894 bytes_in 4584 144894 station_ip 5.119.254.153 144894 port 250 144894 unique_id port 144894 remote_ip 10.8.1.174 144898 username hashtadani3 144898 mac 144898 bytes_out 0 144898 bytes_in 0 144898 station_ip 37.129.172.2 144898 port 451 144898 unique_id port 144898 remote_ip 10.8.0.154 144905 username hashtadani3 144905 mac 144905 bytes_out 0 144905 bytes_in 0 144905 station_ip 37.129.172.2 144905 port 253 144905 unique_id port 144905 remote_ip 10.8.1.94 144907 username hashtadani3 144907 mac 144907 bytes_out 0 144907 bytes_in 0 144907 station_ip 37.129.172.2 144907 port 451 144907 unique_id port 144907 remote_ip 10.8.0.154 144909 username hashtadani3 144909 mac 144909 bytes_out 0 144909 bytes_in 0 144909 station_ip 37.129.172.2 144909 port 470 144909 unique_id port 144909 remote_ip 10.8.0.154 144910 username moradi 144910 mac 144910 bytes_out 1782485 144910 bytes_in 28017585 144910 station_ip 46.225.208.84 144910 port 245 144910 unique_id port 144910 remote_ip 10.8.1.202 144912 username hashtadani3 144912 mac 144912 bytes_out 0 144912 bytes_in 0 144912 station_ip 37.129.172.2 144912 port 245 144912 unique_id port 144912 remote_ip 10.8.1.94 144913 username hashtadani3 144913 mac 144913 bytes_out 0 144913 bytes_in 0 144913 station_ip 37.129.172.2 144858 mac 144858 bytes_out 14161 144858 bytes_in 38808 144858 station_ip 5.119.254.153 144858 port 250 144858 unique_id port 144858 remote_ip 10.8.1.174 144860 username godarzi 144860 mac 144860 bytes_out 164457 144860 bytes_in 425460 144860 station_ip 5.119.104.127 144860 port 249 144860 unique_id port 144860 remote_ip 10.8.1.230 144863 username vanila 144863 mac 144863 bytes_out 0 144863 bytes_in 0 144863 station_ip 37.129.88.68 144863 port 470 144863 unique_id port 144863 remote_ip 10.8.0.178 144864 username hashtadani3 144864 mac 144864 bytes_out 0 144864 bytes_in 0 144864 station_ip 37.129.172.2 144864 port 440 144864 unique_id port 144864 remote_ip 10.8.0.154 144865 username hashtadani3 144865 mac 144865 bytes_out 0 144865 bytes_in 0 144865 station_ip 37.129.172.2 144865 port 242 144865 unique_id port 144865 remote_ip 10.8.1.94 144866 username hashtadani3 144866 mac 144866 bytes_out 0 144866 bytes_in 0 144866 station_ip 37.129.172.2 144866 port 242 144866 unique_id port 144866 remote_ip 10.8.1.94 144872 username hashtadani3 144872 mac 144872 bytes_out 0 144872 bytes_in 0 144872 station_ip 37.129.172.2 144872 port 440 144872 unique_id port 144872 remote_ip 10.8.0.154 144873 username hashtadani3 144873 mac 144873 bytes_out 0 144873 bytes_in 0 144873 station_ip 37.129.172.2 144873 port 451 144873 unique_id port 144873 remote_ip 10.8.0.154 144874 username sedighe 144874 mac 144874 bytes_out 0 144874 bytes_in 0 144874 station_ip 83.123.176.197 144874 port 480 144874 unique_id port 144874 remote_ip 10.8.0.146 144877 username hashtadani3 144877 mac 144877 bytes_out 0 144877 bytes_in 0 144877 station_ip 37.129.172.2 144877 port 242 144877 unique_id port 144877 remote_ip 10.8.1.94 144879 username hashtadani3 144879 mac 144879 bytes_out 0 144879 bytes_in 0 144879 station_ip 37.129.172.2 144879 port 242 144879 unique_id port 144879 remote_ip 10.8.1.94 144882 username hashtadani3 144882 mac 144882 bytes_out 0 144882 bytes_in 0 144882 station_ip 37.129.172.2 144882 port 470 144882 unique_id port 144882 remote_ip 10.8.0.154 144883 username hashtadani3 144883 mac 144883 bytes_out 0 144883 bytes_in 0 144883 station_ip 37.129.172.2 144883 port 242 144883 unique_id port 144883 remote_ip 10.8.1.94 144888 username sedighe 144888 mac 144888 bytes_out 0 144888 bytes_in 0 144888 station_ip 83.123.176.197 144888 port 451 144888 unique_id port 144888 remote_ip 10.8.0.146 144889 username hashtadani3 144889 mac 144889 bytes_out 0 144889 bytes_in 0 144889 station_ip 37.129.172.2 144889 port 451 144889 unique_id port 144889 remote_ip 10.8.0.154 144893 username hashtadani3 144893 mac 144893 bytes_out 0 144893 bytes_in 0 144893 station_ip 37.129.172.2 144893 port 451 144893 unique_id port 144893 remote_ip 10.8.0.154 144897 username hashtadani3 144897 mac 144897 bytes_out 0 144897 bytes_in 0 144897 station_ip 37.129.172.2 144897 port 252 144897 unique_id port 144897 remote_ip 10.8.1.94 144899 username hashtadani3 144899 kill_reason Maximum check online fails reached 144899 mac 144899 bytes_out 0 144899 bytes_in 0 144899 station_ip 37.129.172.2 144899 port 250 144899 unique_id port 144901 username hashtadani3 144901 mac 144901 bytes_out 0 144901 bytes_in 0 144901 station_ip 37.129.172.2 144901 port 451 144901 unique_id port 144901 remote_ip 10.8.0.154 144903 username hashtadani3 144903 mac 144903 bytes_out 0 144903 bytes_in 0 144891 station_ip 37.129.172.2 144891 port 249 144891 unique_id port 144895 username hashtadani3 144895 mac 144895 bytes_out 0 144895 bytes_in 0 144895 station_ip 37.129.172.2 144895 port 451 144895 unique_id port 144895 remote_ip 10.8.0.154 144896 username hashtadani3 144896 mac 144896 bytes_out 0 144896 bytes_in 0 144896 station_ip 37.129.172.2 144896 port 451 144896 unique_id port 144896 remote_ip 10.8.0.154 144900 username hashtadani3 144900 mac 144900 bytes_out 0 144900 bytes_in 0 144900 station_ip 37.129.172.2 144900 port 252 144900 unique_id port 144900 remote_ip 10.8.1.94 144902 username hashtadani3 144902 mac 144902 bytes_out 0 144902 bytes_in 0 144902 station_ip 37.129.172.2 144902 port 451 144902 unique_id port 144902 remote_ip 10.8.0.154 144906 username hashtadani3 144906 kill_reason Maximum check online fails reached 144906 mac 144906 bytes_out 0 144906 bytes_in 0 144906 station_ip 37.129.172.2 144906 port 252 144906 unique_id port 144915 username hashtadani3 144915 kill_reason Maximum check online fails reached 144915 mac 144915 bytes_out 0 144915 bytes_in 0 144915 station_ip 37.129.172.2 144915 port 253 144915 unique_id port 144916 username hashtadani3 144916 mac 144916 bytes_out 0 144916 bytes_in 0 144916 station_ip 37.129.172.2 144916 port 470 144916 unique_id port 144916 remote_ip 10.8.0.154 144918 username hashtadani3 144918 mac 144918 bytes_out 0 144918 bytes_in 0 144918 station_ip 37.129.172.2 144918 port 470 144918 unique_id port 144918 remote_ip 10.8.0.154 144919 username barzegar 144919 mac 144919 bytes_out 0 144919 bytes_in 0 144919 station_ip 5.119.254.153 144919 port 451 144919 unique_id port 144919 remote_ip 10.8.0.234 144921 username hashtadani3 144921 mac 144921 bytes_out 0 144921 bytes_in 0 144921 station_ip 37.129.172.2 144921 port 451 144921 unique_id port 144921 remote_ip 10.8.0.154 144925 username hashtadani3 144925 mac 144925 bytes_out 0 144925 bytes_in 0 144925 station_ip 37.129.172.2 144925 port 451 144925 unique_id port 144925 remote_ip 10.8.0.154 144929 username hashtadani3 144929 mac 144929 bytes_out 0 144929 bytes_in 0 144929 station_ip 37.129.172.2 144929 port 470 144929 unique_id port 144929 remote_ip 10.8.0.154 144933 username hashtadani3 144933 mac 144933 bytes_out 0 144933 bytes_in 0 144933 station_ip 37.129.172.2 144933 port 245 144933 unique_id port 144933 remote_ip 10.8.1.94 144935 username hashtadani3 144935 mac 144935 bytes_out 0 144935 bytes_in 0 144935 station_ip 37.129.172.2 144935 port 451 144935 unique_id port 144935 remote_ip 10.8.0.154 144939 username hashtadani3 144939 mac 144939 bytes_out 0 144939 bytes_in 0 144939 station_ip 37.129.172.2 144939 port 440 144939 unique_id port 144939 remote_ip 10.8.0.154 144940 username hashtadani3 144940 mac 144940 bytes_out 0 144940 bytes_in 0 144940 station_ip 37.129.172.2 144940 port 440 144940 unique_id port 144940 remote_ip 10.8.0.154 144943 username hashtadani3 144943 mac 144943 bytes_out 0 144943 bytes_in 0 144943 station_ip 37.129.172.2 144943 port 480 144943 unique_id port 144943 remote_ip 10.8.0.154 144945 username hashtadani3 144945 mac 144945 bytes_out 0 144945 bytes_in 0 144945 station_ip 37.129.172.2 144945 port 251 144945 unique_id port 144945 remote_ip 10.8.1.94 144947 username hashtadani3 144947 mac 144947 bytes_out 0 144947 bytes_in 0 144947 station_ip 37.129.172.2 144947 port 440 144947 unique_id port 144903 station_ip 37.129.172.2 144903 port 451 144903 unique_id port 144903 remote_ip 10.8.0.154 144904 username hashtadani3 144904 mac 144904 bytes_out 0 144904 bytes_in 0 144904 station_ip 37.129.172.2 144904 port 451 144904 unique_id port 144904 remote_ip 10.8.0.154 144908 username meysam 144908 kill_reason Another user logged on this global unique id 144908 mac 144908 bytes_out 0 144908 bytes_in 0 144908 station_ip 188.159.251.16 144908 port 242 144908 unique_id port 144908 remote_ip 10.8.1.34 144911 username hashtadani3 144911 mac 144911 bytes_out 0 144911 bytes_in 0 144911 station_ip 37.129.172.2 144911 port 470 144911 unique_id port 144911 remote_ip 10.8.0.154 144914 username barzegar 144914 mac 144914 bytes_out 0 144914 bytes_in 0 144914 station_ip 5.119.254.153 144914 port 451 144914 unique_id port 144914 remote_ip 10.8.0.234 144922 username hashtadani3 144922 mac 144922 bytes_out 0 144922 bytes_in 0 144922 station_ip 37.129.172.2 144922 port 451 144922 unique_id port 144922 remote_ip 10.8.0.154 144923 username barzegar 144923 mac 144923 bytes_out 0 144923 bytes_in 0 144923 station_ip 5.119.254.153 144923 port 470 144923 unique_id port 144923 remote_ip 10.8.0.234 144931 username barzegar 144931 mac 144931 bytes_out 0 144931 bytes_in 0 144931 station_ip 5.119.254.153 144931 port 451 144931 unique_id port 144931 remote_ip 10.8.0.234 144934 username aminvpn 144934 mac 144934 bytes_out 0 144934 bytes_in 0 144934 station_ip 37.129.1.170 144934 port 440 144934 unique_id port 144934 remote_ip 10.8.0.14 144936 username hashtadani3 144936 mac 144936 bytes_out 0 144936 bytes_in 0 144936 station_ip 37.129.172.2 144936 port 440 144936 unique_id port 144936 remote_ip 10.8.0.154 144938 username sedighe 144938 mac 144938 bytes_out 15997 144938 bytes_in 22296 144938 station_ip 83.123.176.197 144938 port 251 144938 unique_id port 144938 remote_ip 10.8.1.78 144941 username hashtadani3 144941 mac 144941 bytes_out 0 144941 bytes_in 0 144941 station_ip 37.129.172.2 144941 port 440 144941 unique_id port 144941 remote_ip 10.8.0.154 144944 username barzegar 144944 mac 144944 bytes_out 0 144944 bytes_in 0 144944 station_ip 5.119.254.153 144944 port 440 144944 unique_id port 144944 remote_ip 10.8.0.234 144952 username hashtadani3 144952 mac 144952 bytes_out 0 144952 bytes_in 0 144952 station_ip 37.129.172.2 144952 port 251 144952 unique_id port 144952 remote_ip 10.8.1.94 144953 username sedighe 144953 mac 144953 bytes_out 99116 144953 bytes_in 169327 144953 station_ip 83.123.176.197 144953 port 245 144953 unique_id port 144953 remote_ip 10.8.1.78 144956 username hashtadani3 144956 mac 144956 bytes_out 0 144956 bytes_in 0 144956 station_ip 37.129.172.2 144956 port 440 144956 unique_id port 144956 remote_ip 10.8.0.154 144957 username hashtadani3 144957 mac 144957 bytes_out 0 144957 bytes_in 0 144957 station_ip 37.129.172.2 144957 port 245 144957 unique_id port 144957 remote_ip 10.8.1.94 144960 username hashtadani3 144960 mac 144960 bytes_out 0 144960 bytes_in 0 144960 station_ip 37.129.172.2 144960 port 440 144960 unique_id port 144960 remote_ip 10.8.0.154 144962 username hashtadani3 144962 mac 144962 bytes_out 0 144962 bytes_in 0 144962 station_ip 37.129.172.2 144962 port 245 144962 unique_id port 144962 remote_ip 10.8.1.94 144964 username hashtadani3 144964 mac 144964 bytes_out 0 144964 bytes_in 0 144964 station_ip 37.129.172.2 144964 port 451 144913 port 470 144913 unique_id port 144913 remote_ip 10.8.0.154 144917 username hashtadani3 144917 mac 144917 bytes_out 0 144917 bytes_in 0 144917 station_ip 37.129.172.2 144917 port 470 144917 unique_id port 144917 remote_ip 10.8.0.154 144920 username hashtadani3 144920 mac 144920 bytes_out 0 144920 bytes_in 0 144920 station_ip 37.129.172.2 144920 port 480 144920 unique_id port 144920 remote_ip 10.8.0.154 144924 username hashtadani3 144924 mac 144924 bytes_out 0 144924 bytes_in 0 144924 station_ip 37.129.172.2 144924 port 245 144924 unique_id port 144924 remote_ip 10.8.1.94 144926 username hashtadani3 144926 mac 144926 bytes_out 0 144926 bytes_in 0 144926 station_ip 37.129.172.2 144926 port 470 144926 unique_id port 144926 remote_ip 10.8.0.154 144927 username hashtadani3 144927 mac 144927 bytes_out 0 144927 bytes_in 0 144927 station_ip 37.129.172.2 144927 port 451 144927 unique_id port 144927 remote_ip 10.8.0.154 144928 username hashtadani3 144928 mac 144928 bytes_out 0 144928 bytes_in 0 144928 station_ip 37.129.172.2 144928 port 470 144928 unique_id port 144928 remote_ip 10.8.0.154 144930 username hashtadani3 144930 mac 144930 bytes_out 0 144930 bytes_in 0 144930 station_ip 37.129.172.2 144930 port 480 144930 unique_id port 144930 remote_ip 10.8.0.154 144932 username hashtadani3 144932 mac 144932 bytes_out 0 144932 bytes_in 0 144932 station_ip 37.129.172.2 144932 port 481 144932 unique_id port 144932 remote_ip 10.8.0.154 144937 username hashtadani3 144937 mac 144937 bytes_out 0 144937 bytes_in 0 144937 station_ip 37.129.172.2 144937 port 440 144937 unique_id port 144937 remote_ip 10.8.0.154 144942 username hashtadani3 144942 mac 144942 bytes_out 0 144942 bytes_in 0 144942 station_ip 37.129.172.2 144942 port 480 144942 unique_id port 144942 remote_ip 10.8.0.154 144946 username vanila 144946 mac 144946 bytes_out 0 144946 bytes_in 0 144946 station_ip 37.129.88.68 144946 port 451 144946 unique_id port 144946 remote_ip 10.8.0.178 144948 username hashtadani3 144948 mac 144948 bytes_out 0 144948 bytes_in 0 144948 station_ip 37.129.172.2 144948 port 440 144948 unique_id port 144948 remote_ip 10.8.0.154 144950 username barzegar 144950 mac 144950 bytes_out 0 144950 bytes_in 0 144950 station_ip 5.119.254.153 144950 port 451 144950 unique_id port 144950 remote_ip 10.8.0.234 144954 username hashtadani3 144954 mac 144954 bytes_out 0 144954 bytes_in 0 144954 station_ip 37.129.172.2 144954 port 440 144954 unique_id port 144954 remote_ip 10.8.0.154 144958 username hashtadani3 144958 mac 144958 bytes_out 0 144958 bytes_in 0 144958 station_ip 37.129.172.2 144958 port 440 144958 unique_id port 144958 remote_ip 10.8.0.154 144961 username hashtadani3 144961 mac 144961 bytes_out 0 144961 bytes_in 0 144961 station_ip 37.129.172.2 144961 port 440 144961 unique_id port 144961 remote_ip 10.8.0.154 144963 username hashtadani3 144963 mac 144963 bytes_out 0 144963 bytes_in 0 144963 station_ip 37.129.172.2 144963 port 245 144963 unique_id port 144963 remote_ip 10.8.1.94 144965 username hashtadani3 144965 mac 144965 bytes_out 0 144965 bytes_in 0 144965 station_ip 37.129.172.2 144965 port 451 144965 unique_id port 144965 remote_ip 10.8.0.154 144969 username hashtadani3 144969 mac 144969 bytes_out 0 144969 bytes_in 0 144969 station_ip 37.129.172.2 144969 port 451 144969 unique_id port 144969 remote_ip 10.8.0.154 144947 remote_ip 10.8.0.154 144949 username hashtadani3 144949 mac 144949 bytes_out 0 144949 bytes_in 0 144949 station_ip 37.129.172.2 144949 port 251 144949 unique_id port 144949 remote_ip 10.8.1.94 144951 username hashtadani3 144951 mac 144951 bytes_out 0 144951 bytes_in 0 144951 station_ip 37.129.172.2 144951 port 251 144951 unique_id port 144951 remote_ip 10.8.1.94 144955 username hashtadani3 144955 mac 144955 bytes_out 0 144955 bytes_in 0 144955 station_ip 37.129.172.2 144955 port 440 144955 unique_id port 144955 remote_ip 10.8.0.154 144959 username hashtadani3 144959 mac 144959 bytes_out 0 144959 bytes_in 0 144959 station_ip 37.129.172.2 144959 port 440 144959 unique_id port 144959 remote_ip 10.8.0.154 144966 username hashtadani3 144966 mac 144966 bytes_out 0 144966 bytes_in 0 144966 station_ip 37.129.172.2 144966 port 451 144966 unique_id port 144966 remote_ip 10.8.0.154 144970 username hashtadani3 144970 mac 144970 bytes_out 0 144970 bytes_in 0 144970 station_ip 37.129.172.2 144970 port 451 144970 unique_id port 144970 remote_ip 10.8.0.154 144971 username barzegar 144971 mac 144971 bytes_out 0 144971 bytes_in 0 144971 station_ip 5.119.254.153 144971 port 440 144971 unique_id port 144971 remote_ip 10.8.0.234 144973 username hashtadani3 144973 mac 144973 bytes_out 99562 144973 bytes_in 789707 144973 station_ip 37.129.172.2 144973 port 451 144973 unique_id port 144973 remote_ip 10.8.0.154 144974 username hashtadani3 144974 mac 144974 bytes_out 0 144974 bytes_in 0 144974 station_ip 37.129.172.2 144974 port 251 144974 unique_id port 144974 remote_ip 10.8.1.94 144976 username mehdizare 144976 mac 144976 bytes_out 0 144976 bytes_in 0 144976 station_ip 5.120.252.120 144976 port 464 144976 unique_id port 144980 username meysam 144980 kill_reason Another user logged on this global unique id 144980 mac 144980 bytes_out 0 144980 bytes_in 0 144980 station_ip 188.159.251.16 144980 port 242 144980 unique_id port 144983 username hashtadani3 144983 mac 144983 bytes_out 0 144983 bytes_in 0 144983 station_ip 37.129.172.2 144983 port 464 144983 unique_id port 144983 remote_ip 10.8.0.154 144989 username sedighe 144989 mac 144989 bytes_out 0 144989 bytes_in 0 144989 station_ip 83.122.163.119 144989 port 245 144989 unique_id port 144989 remote_ip 10.8.1.78 144993 username hashtadani3 144993 mac 144993 bytes_out 0 144993 bytes_in 0 144993 station_ip 37.129.172.2 144993 port 464 144993 unique_id port 144993 remote_ip 10.8.0.154 144994 username hashtadani3 144994 mac 144994 bytes_out 0 144994 bytes_in 0 144994 station_ip 37.129.172.2 144994 port 464 144994 unique_id port 144994 remote_ip 10.8.0.154 144999 username barzegar 144999 mac 144999 bytes_out 0 144999 bytes_in 0 144999 station_ip 5.119.254.153 144999 port 440 144999 unique_id port 144999 remote_ip 10.8.0.234 145001 username hashtadani3 145001 mac 145001 bytes_out 0 145001 bytes_in 0 145001 station_ip 37.129.172.2 145001 port 464 145001 unique_id port 145002 username mehdizare 145002 mac 145002 bytes_out 0 145002 bytes_in 0 145002 station_ip 5.120.252.120 145002 port 440 145002 unique_id port 145002 remote_ip 10.8.0.90 145005 username barzegar 145005 mac 145005 bytes_out 0 145005 bytes_in 0 145005 station_ip 5.119.254.153 145005 port 242 145005 unique_id port 145005 remote_ip 10.8.1.174 145007 username hashtadani3 145007 mac 145007 bytes_out 1010834 145007 bytes_in 15242821 144964 unique_id port 144964 remote_ip 10.8.0.154 144967 username hashtadani3 144967 mac 144967 bytes_out 0 144967 bytes_in 0 144967 station_ip 37.129.172.2 144967 port 451 144967 unique_id port 144967 remote_ip 10.8.0.154 144968 username hashtadani3 144968 mac 144968 bytes_out 0 144968 bytes_in 0 144968 station_ip 37.129.172.2 144968 port 245 144968 unique_id port 144968 remote_ip 10.8.1.94 144972 username sedighe 144972 mac 144972 bytes_out 71431 144972 bytes_in 105206 144972 station_ip 83.122.163.119 144972 port 251 144972 unique_id port 144972 remote_ip 10.8.1.78 144977 username hashtadani3 144977 mac 144977 bytes_out 0 144977 bytes_in 0 144977 station_ip 37.129.172.2 144977 port 464 144977 unique_id port 144977 remote_ip 10.8.0.154 144978 username hashtadani3 144978 mac 144978 bytes_out 0 144978 bytes_in 0 144978 station_ip 37.129.172.2 144978 port 254 144978 unique_id port 144978 remote_ip 10.8.1.94 144981 username hashtadani3 144981 mac 144981 bytes_out 0 144981 bytes_in 0 144981 station_ip 37.129.172.2 144981 port 254 144981 unique_id port 144981 remote_ip 10.8.1.94 144985 username hashtadani3 144985 mac 144985 bytes_out 0 144985 bytes_in 0 144985 station_ip 37.129.172.2 144985 port 464 144985 unique_id port 144985 remote_ip 10.8.0.154 144986 username hashtadani3 144986 mac 144986 bytes_out 0 144986 bytes_in 0 144986 station_ip 37.129.172.2 144986 port 254 144986 unique_id port 144986 remote_ip 10.8.1.94 144995 username hashtadani3 144995 mac 144995 bytes_out 0 144995 bytes_in 0 144995 station_ip 37.129.172.2 144995 port 464 144995 unique_id port 144995 remote_ip 10.8.0.154 144997 username hashtadani3 144997 mac 144997 bytes_out 0 144997 bytes_in 0 144997 station_ip 37.129.172.2 144997 port 464 144997 unique_id port 144997 remote_ip 10.8.0.154 144998 username hashtadani3 144998 kill_reason Another user logged on this global unique id 144998 mac 144998 bytes_out 0 144998 bytes_in 0 144998 station_ip 37.129.172.2 144998 port 464 144998 unique_id port 144998 remote_ip 10.8.0.154 145003 username malekpoir 145003 kill_reason Another user logged on this global unique id 145003 mac 145003 bytes_out 0 145003 bytes_in 0 145003 station_ip 5.119.97.234 145003 port 480 145003 unique_id port 145003 remote_ip 10.8.0.58 145010 username mohammadmahdi 145010 mac 145010 bytes_out 0 145010 bytes_in 0 145010 station_ip 5.120.181.136 145010 port 440 145010 unique_id port 145016 username sedighe 145016 mac 145016 bytes_out 68874 145016 bytes_in 135301 145016 station_ip 83.122.163.119 145016 port 242 145016 unique_id port 145016 remote_ip 10.8.1.78 145018 username moradi 145018 mac 145018 bytes_out 1967503 145018 bytes_in 34259933 145018 station_ip 46.225.208.84 145018 port 470 145018 unique_id port 145018 remote_ip 10.8.0.250 145022 username hashtadani3 145022 mac 145022 bytes_out 0 145022 bytes_in 0 145022 station_ip 5.202.15.61 145022 port 464 145022 unique_id port 145022 remote_ip 10.8.0.154 145023 username alihosseini1 145023 mac 145023 bytes_out 2467 145023 bytes_in 5532 145023 station_ip 5.120.49.249 145023 port 245 145023 unique_id port 145023 remote_ip 10.8.1.106 145025 username hashtadani3 145025 mac 145025 bytes_out 0 145025 bytes_in 0 145025 station_ip 5.202.15.61 145025 port 470 145025 unique_id port 145025 remote_ip 10.8.0.154 145028 username mehdizare 145028 mac 145028 bytes_out 8405 145028 bytes_in 15056 145028 station_ip 5.120.252.120 145028 port 470 144975 username hashtadani3 144975 mac 144975 bytes_out 0 144975 bytes_in 0 144975 station_ip 37.129.172.2 144975 port 254 144975 unique_id port 144975 remote_ip 10.8.1.94 144979 username hashtadani3 144979 mac 144979 bytes_out 0 144979 bytes_in 0 144979 station_ip 37.129.172.2 144979 port 254 144979 unique_id port 144979 remote_ip 10.8.1.94 144982 username hashtadani3 144982 mac 144982 bytes_out 0 144982 bytes_in 0 144982 station_ip 37.129.172.2 144982 port 464 144982 unique_id port 144982 remote_ip 10.8.0.154 144984 username hashtadani3 144984 kill_reason Maximum check online fails reached 144984 mac 144984 bytes_out 0 144984 bytes_in 0 144984 station_ip 37.129.172.2 144984 port 251 144984 unique_id port 144987 username hashtadani3 144987 mac 144987 bytes_out 0 144987 bytes_in 0 144987 station_ip 37.129.172.2 144987 port 464 144987 unique_id port 144987 remote_ip 10.8.0.154 144988 username hashtadani3 144988 mac 144988 bytes_out 0 144988 bytes_in 0 144988 station_ip 37.129.172.2 144988 port 464 144988 unique_id port 144988 remote_ip 10.8.0.154 144990 username hashtadani3 144990 mac 144990 bytes_out 0 144990 bytes_in 0 144990 station_ip 37.129.172.2 144990 port 464 144990 unique_id port 144990 remote_ip 10.8.0.154 144991 username hashtadani3 144991 mac 144991 bytes_out 0 144991 bytes_in 0 144991 station_ip 37.129.172.2 144991 port 464 144991 unique_id port 144991 remote_ip 10.8.0.154 144992 username hashtadani3 144992 mac 144992 bytes_out 0 144992 bytes_in 0 144992 station_ip 37.129.172.2 144992 port 254 144992 unique_id port 144992 remote_ip 10.8.1.94 144996 username meysam 144996 mac 144996 bytes_out 0 144996 bytes_in 0 144996 station_ip 188.159.251.16 144996 port 242 144996 unique_id port 145000 username mehdizare 145000 mac 145000 bytes_out 0 145000 bytes_in 0 145000 station_ip 5.120.252.120 145000 port 451 145000 unique_id port 145000 remote_ip 10.8.0.90 145004 username barzegar 145004 mac 145004 bytes_out 6111 145004 bytes_in 23478 145004 station_ip 5.119.254.153 145004 port 464 145004 unique_id port 145004 remote_ip 10.8.0.234 145006 username sedighe 145006 mac 145006 bytes_out 17911 145006 bytes_in 37154 145006 station_ip 83.122.163.119 145006 port 245 145006 unique_id port 145006 remote_ip 10.8.1.78 145008 username mohammadmahdi 145008 kill_reason Another user logged on this global unique id 145008 mac 145008 bytes_out 0 145008 bytes_in 0 145008 station_ip 5.120.181.136 145008 port 440 145008 unique_id port 145008 remote_ip 10.8.0.54 145009 username barzegar 145009 mac 145009 bytes_out 0 145009 bytes_in 0 145009 station_ip 5.119.254.153 145009 port 254 145009 unique_id port 145009 remote_ip 10.8.1.174 145011 username hashtadani3 145011 mac 145011 bytes_out 323040 145011 bytes_in 4876178 145011 station_ip 37.129.172.2 145011 port 245 145011 unique_id port 145011 remote_ip 10.8.1.94 145014 username mehdizare 145014 mac 145014 bytes_out 22667 145014 bytes_in 31368 145014 station_ip 5.120.252.120 145014 port 481 145014 unique_id port 145014 remote_ip 10.8.0.90 145015 username hashtadani3 145015 mac 145015 bytes_out 0 145015 bytes_in 0 145015 station_ip 5.202.15.61 145015 port 245 145015 unique_id port 145015 remote_ip 10.8.1.94 145017 username hashtadani3 145017 mac 145017 bytes_out 0 145017 bytes_in 0 145017 station_ip 5.202.15.61 145017 port 242 145017 unique_id port 145017 remote_ip 10.8.1.94 145020 username hashtadani3 145020 mac 145007 station_ip 37.129.172.2 145007 port 451 145007 unique_id port 145007 remote_ip 10.8.0.154 145012 username hashtadani3 145012 mac 145012 bytes_out 0 145012 bytes_in 0 145012 station_ip 5.202.15.61 145012 port 254 145012 unique_id port 145012 remote_ip 10.8.1.94 145013 username mahdiyehalizadeh 145013 mac 145013 bytes_out 0 145013 bytes_in 0 145013 station_ip 83.122.242.185 145013 port 482 145013 unique_id port 145013 remote_ip 10.8.0.82 145019 username hashtadani3 145019 mac 145019 bytes_out 0 145019 bytes_in 0 145019 station_ip 5.202.15.61 145019 port 242 145019 unique_id port 145019 remote_ip 10.8.1.94 145021 username mehdizare 145021 mac 145021 bytes_out 25679 145021 bytes_in 38587 145021 station_ip 5.120.252.120 145021 port 451 145021 unique_id port 145021 remote_ip 10.8.0.90 145026 username hashtadani3 145026 mac 145026 bytes_out 0 145026 bytes_in 0 145026 station_ip 5.202.15.61 145026 port 482 145026 unique_id port 145026 remote_ip 10.8.0.154 145029 username hashtadani3 145029 mac 145029 bytes_out 0 145029 bytes_in 0 145029 station_ip 37.129.172.2 145029 port 482 145029 unique_id port 145029 remote_ip 10.8.0.154 145035 username meysam 145035 mac 145035 bytes_out 552923 145035 bytes_in 10895506 145035 station_ip 188.159.251.16 145035 port 245 145035 unique_id port 145035 remote_ip 10.8.1.34 145038 username hashtadani3 145038 kill_reason Maximum check online fails reached 145038 mac 145038 bytes_out 0 145038 bytes_in 0 145038 station_ip 5.202.15.61 145038 port 440 145038 unique_id port 145040 username hashtadani3 145040 mac 145040 bytes_out 0 145040 bytes_in 0 145040 station_ip 5.202.15.61 145040 port 482 145040 unique_id port 145040 remote_ip 10.8.0.154 145042 username barzegar 145042 mac 145042 bytes_out 0 145042 bytes_in 0 145042 station_ip 5.119.254.153 145042 port 245 145042 unique_id port 145042 remote_ip 10.8.1.174 145044 username meysam 145044 mac 145044 bytes_out 0 145044 bytes_in 0 145044 station_ip 188.159.251.16 145044 port 242 145044 unique_id port 145044 remote_ip 10.8.1.34 145046 username mehdizare 145046 mac 145046 bytes_out 5180 145046 bytes_in 8202 145046 station_ip 5.120.252.120 145046 port 470 145046 unique_id port 145046 remote_ip 10.8.0.90 145047 username mohammadmahdi 145047 mac 145047 bytes_out 1397158 145047 bytes_in 18646171 145047 station_ip 5.120.181.136 145047 port 483 145047 unique_id port 145047 remote_ip 10.8.0.54 145050 username barzegar 145050 mac 145050 bytes_out 0 145050 bytes_in 0 145050 station_ip 5.119.254.153 145050 port 483 145050 unique_id port 145050 remote_ip 10.8.0.234 145052 username mehdizare 145052 mac 145052 bytes_out 54312 145052 bytes_in 38017 145052 station_ip 5.120.252.120 145052 port 470 145052 unique_id port 145052 remote_ip 10.8.0.90 145054 username yarmohamadi 145054 kill_reason Another user logged on this global unique id 145054 mac 145054 bytes_out 0 145054 bytes_in 0 145054 station_ip 5.119.23.117 145054 port 451 145054 unique_id port 145056 username forozandeh1 145056 mac 145056 bytes_out 121553 145056 bytes_in 175487 145056 station_ip 83.123.165.237 145056 port 482 145056 unique_id port 145056 remote_ip 10.8.0.130 145057 username mehdizare 145057 mac 145057 bytes_out 23387 145057 bytes_in 23492 145057 station_ip 5.120.252.120 145057 port 483 145057 unique_id port 145057 remote_ip 10.8.0.90 145060 username mohammadmahdi 145060 mac 145060 bytes_out 750428 145060 bytes_in 8864839 145060 station_ip 5.120.181.136 145020 bytes_out 0 145020 bytes_in 0 145020 station_ip 5.202.15.61 145020 port 464 145020 unique_id port 145020 remote_ip 10.8.0.154 145024 username mehdizare 145024 mac 145024 bytes_out 6992 145024 bytes_in 10538 145024 station_ip 5.120.252.120 145024 port 242 145024 unique_id port 145024 remote_ip 10.8.1.42 145027 username forozandeh1 145027 mac 145027 bytes_out 113532 145027 bytes_in 402220 145027 station_ip 37.129.10.125 145027 port 481 145027 unique_id port 145027 remote_ip 10.8.0.130 145032 username hashtadani3 145032 mac 145032 bytes_out 0 145032 bytes_in 0 145032 station_ip 5.202.15.61 145032 port 470 145032 unique_id port 145032 remote_ip 10.8.0.154 145034 username sedighe 145034 mac 145034 bytes_out 70978 145034 bytes_in 87525 145034 station_ip 83.123.195.27 145034 port 440 145034 unique_id port 145034 remote_ip 10.8.0.146 145036 username hashtadani3 145036 mac 145036 bytes_out 0 145036 bytes_in 0 145036 station_ip 5.202.15.61 145036 port 242 145036 unique_id port 145036 remote_ip 10.8.1.94 145037 username hashtadani3 145037 mac 145037 bytes_out 0 145037 bytes_in 0 145037 station_ip 5.202.15.61 145037 port 242 145037 unique_id port 145037 remote_ip 10.8.1.94 145043 username barzegar 145043 mac 145043 bytes_out 0 145043 bytes_in 0 145043 station_ip 5.119.254.153 145043 port 245 145043 unique_id port 145043 remote_ip 10.8.1.174 145048 username hashtadani3 145048 mac 145048 bytes_out 796131 145048 bytes_in 6401497 145048 station_ip 5.202.15.61 145048 port 481 145048 unique_id port 145048 remote_ip 10.8.0.154 145049 username vanila 145049 mac 145049 bytes_out 673524 145049 bytes_in 3242576 145049 station_ip 37.129.88.68 145049 port 482 145049 unique_id port 145049 remote_ip 10.8.0.178 145065 username hashtadani3 145065 mac 145065 bytes_out 20323 145065 bytes_in 21576 145065 station_ip 5.202.15.61 145065 port 481 145065 unique_id port 145065 remote_ip 10.8.0.154 145066 username forozandeh1 145066 mac 145066 bytes_out 18781 145066 bytes_in 24839 145066 station_ip 83.123.165.237 145066 port 470 145066 unique_id port 145066 remote_ip 10.8.0.130 145068 username hashtadani3 145068 mac 145068 bytes_out 0 145068 bytes_in 0 145068 station_ip 5.202.15.61 145068 port 470 145068 unique_id port 145068 remote_ip 10.8.0.154 145082 username alihosseini1 145082 mac 145082 bytes_out 0 145082 bytes_in 0 145082 station_ip 5.119.18.46 145082 port 255 145082 unique_id port 145082 remote_ip 10.8.1.106 145084 username mohammadmahdi 145084 mac 145084 bytes_out 2525911 145084 bytes_in 32323966 145084 station_ip 5.120.181.136 145084 port 464 145084 unique_id port 145084 remote_ip 10.8.0.54 145092 username vanila 145092 mac 145092 bytes_out 8162926 145092 bytes_in 8630149 145092 station_ip 37.129.88.68 145092 port 485 145092 unique_id port 145092 remote_ip 10.8.0.178 145093 username aminvpn 145093 mac 145093 bytes_out 116654 145093 bytes_in 207679 145093 station_ip 5.120.36.54 145093 port 469 145093 unique_id port 145093 remote_ip 10.8.0.14 145095 username yahodi 145095 kill_reason Another user logged on this global unique id 145095 mac 145095 bytes_out 0 145095 bytes_in 0 145095 station_ip 37.129.73.39 145095 port 483 145095 unique_id port 145096 username forozandeh1 145096 mac 145096 bytes_out 0 145096 bytes_in 0 145096 station_ip 83.123.165.237 145096 port 254 145096 unique_id port 145096 remote_ip 10.8.1.250 145098 username alihosseini1 145098 mac 145098 bytes_out 0 145028 unique_id port 145028 remote_ip 10.8.0.90 145030 username hashtadani3 145030 mac 145030 bytes_out 0 145030 bytes_in 0 145030 station_ip 37.129.172.2 145030 port 470 145030 unique_id port 145030 remote_ip 10.8.0.154 145031 username hashtadani3 145031 mac 145031 bytes_out 0 145031 bytes_in 0 145031 station_ip 5.202.15.61 145031 port 470 145031 unique_id port 145031 remote_ip 10.8.0.154 145033 username barzegar 145033 mac 145033 bytes_out 0 145033 bytes_in 0 145033 station_ip 5.119.254.153 145033 port 242 145033 unique_id port 145033 remote_ip 10.8.1.174 145039 username morteza 145039 mac 145039 bytes_out 0 145039 bytes_in 0 145039 station_ip 83.122.8.11 145039 port 481 145039 unique_id port 145039 remote_ip 10.8.0.46 145041 username hashtadani3 145041 mac 145041 bytes_out 0 145041 bytes_in 0 145041 station_ip 5.202.15.61 145041 port 481 145041 unique_id port 145041 remote_ip 10.8.0.154 145045 username sedighe 145045 mac 145045 bytes_out 47717 145045 bytes_in 69692 145045 station_ip 83.123.38.130 145045 port 470 145045 unique_id port 145045 remote_ip 10.8.0.146 145051 username yarmohamadi 145051 kill_reason Another user logged on this global unique id 145051 mac 145051 bytes_out 0 145051 bytes_in 0 145051 station_ip 5.119.23.117 145051 port 451 145051 unique_id port 145051 remote_ip 10.8.0.150 145053 username alihosseini1 145053 mac 145053 bytes_out 1607229 145053 bytes_in 13591326 145053 station_ip 5.119.18.46 145053 port 464 145053 unique_id port 145053 remote_ip 10.8.0.166 145055 username alihosseini1 145055 mac 145055 bytes_out 0 145055 bytes_in 0 145055 station_ip 5.119.18.46 145055 port 470 145055 unique_id port 145055 remote_ip 10.8.0.166 145058 username meysam 145058 mac 145058 bytes_out 0 145058 bytes_in 0 145058 station_ip 188.159.251.16 145058 port 245 145058 unique_id port 145058 remote_ip 10.8.1.34 145059 username mehdizare 145059 mac 145059 bytes_out 0 145059 bytes_in 0 145059 station_ip 5.120.252.120 145059 port 245 145059 unique_id port 145059 remote_ip 10.8.1.42 145061 username alihosseini1 145061 mac 145061 bytes_out 0 145061 bytes_in 0 145061 station_ip 5.119.18.46 145061 port 483 145061 unique_id port 145061 remote_ip 10.8.0.166 145062 username yaghobi 145062 mac 145062 bytes_out 1554146 145062 bytes_in 24849770 145062 station_ip 83.122.174.213 145062 port 464 145062 unique_id port 145062 remote_ip 10.8.0.198 145064 username alihosseini1 145064 mac 145064 bytes_out 0 145064 bytes_in 0 145064 station_ip 5.119.18.46 145064 port 255 145064 unique_id port 145064 remote_ip 10.8.1.106 145067 username hashtadani3 145067 mac 145067 bytes_out 0 145067 bytes_in 0 145067 station_ip 5.202.15.61 145067 port 484 145067 unique_id port 145067 remote_ip 10.8.0.154 145071 username mosi 145071 mac 145071 bytes_out 8028123 145071 bytes_in 37779035 145071 station_ip 151.235.107.13 145071 port 469 145071 unique_id port 145071 remote_ip 10.8.0.138 145072 username tahmasebi 145072 kill_reason Another user logged on this global unique id 145072 mac 145072 bytes_out 0 145072 bytes_in 0 145072 station_ip 5.126.18.72 145072 port 482 145072 unique_id port 145075 username sekonji3 145075 mac 145075 bytes_out 503049 145075 bytes_in 103779 145075 station_ip 37.129.11.101 145075 port 481 145075 unique_id port 145075 remote_ip 10.8.0.6 145077 username meysam 145077 mac 145077 bytes_out 0 145077 bytes_in 0 145077 station_ip 188.159.251.16 145077 port 245 145060 port 484 145060 unique_id port 145060 remote_ip 10.8.0.54 145063 username tahmasebi 145063 kill_reason Another user logged on this global unique id 145063 mac 145063 bytes_out 0 145063 bytes_in 0 145063 station_ip 5.126.18.72 145063 port 482 145063 unique_id port 145063 remote_ip 10.8.0.42 145069 username mehdizare 145069 mac 145069 bytes_out 0 145069 bytes_in 0 145069 station_ip 5.120.252.120 145069 port 245 145069 unique_id port 145069 remote_ip 10.8.1.42 145070 username barzegar 145070 mac 145070 bytes_out 0 145070 bytes_in 0 145070 station_ip 5.119.254.153 145070 port 481 145070 unique_id port 145070 remote_ip 10.8.0.234 145073 username yahodi 145073 kill_reason Another user logged on this global unique id 145073 mac 145073 bytes_out 0 145073 bytes_in 0 145073 station_ip 37.129.73.39 145073 port 483 145073 unique_id port 145073 remote_ip 10.8.0.202 145074 username mehdizare 145074 mac 145074 bytes_out 0 145074 bytes_in 0 145074 station_ip 5.120.252.120 145074 port 255 145074 unique_id port 145074 remote_ip 10.8.1.42 145076 username aminvpn 145076 mac 145076 bytes_out 515063 145076 bytes_in 1425560 145076 station_ip 5.120.36.54 145076 port 469 145076 unique_id port 145076 remote_ip 10.8.0.14 145078 username aminvpn 145078 mac 145078 bytes_out 0 145078 bytes_in 0 145078 station_ip 5.120.36.54 145078 port 469 145078 unique_id port 145078 remote_ip 10.8.0.14 145079 username hashtadani3 145079 kill_reason Maximum number of concurrent logins reached 145079 mac 145079 bytes_out 0 145079 bytes_in 0 145079 station_ip 5.202.15.61 145079 port 245 145079 unique_id port 145081 username hashtadani3 145081 kill_reason Maximum check online fails reached 145081 mac 145081 bytes_out 0 145081 bytes_in 0 145081 station_ip 5.202.15.61 145081 port 256 145081 unique_id port 145085 username mosi 145085 mac 145085 bytes_out 85181 145085 bytes_in 163317 145085 station_ip 37.156.59.130 145085 port 470 145085 unique_id port 145085 remote_ip 10.8.0.138 145086 username tahmasebi 145086 kill_reason Another user logged on this global unique id 145086 mac 145086 bytes_out 0 145086 bytes_in 0 145086 station_ip 5.126.18.72 145086 port 482 145086 unique_id port 145089 username barzegar 145089 mac 145089 bytes_out 0 145089 bytes_in 0 145089 station_ip 5.119.254.153 145089 port 255 145089 unique_id port 145089 remote_ip 10.8.1.174 145090 username saeed9658 145090 mac 145090 bytes_out 0 145090 bytes_in 0 145090 station_ip 5.119.125.222 145090 port 242 145090 unique_id port 145090 remote_ip 10.8.1.210 145091 username alihosseini1 145091 mac 145091 bytes_out 0 145091 bytes_in 0 145091 station_ip 5.119.18.46 145091 port 470 145091 unique_id port 145091 remote_ip 10.8.0.166 145094 username kordestani 145094 mac 145094 bytes_out 1196035 145094 bytes_in 16584966 145094 station_ip 151.235.108.227 145094 port 470 145094 unique_id port 145094 remote_ip 10.8.0.134 145099 username mohammadmahdi 145099 kill_reason Another user logged on this global unique id 145099 mac 145099 bytes_out 0 145099 bytes_in 0 145099 station_ip 5.120.181.136 145099 port 484 145099 unique_id port 145099 remote_ip 10.8.0.54 145103 username mohammadmahdi 145103 mac 145103 bytes_out 0 145103 bytes_in 0 145103 station_ip 5.120.181.136 145103 port 484 145103 unique_id port 145104 username alihosseini1 145104 mac 145104 bytes_out 0 145104 bytes_in 0 145104 station_ip 5.119.18.46 145104 port 242 145104 unique_id port 145104 remote_ip 10.8.1.106 145107 username barzegar 145107 mac 145077 unique_id port 145077 remote_ip 10.8.1.34 145080 username hashtadani3 145080 kill_reason Maximum check online fails reached 145080 mac 145080 bytes_out 0 145080 bytes_in 0 145080 station_ip 5.202.15.61 145080 port 481 145080 unique_id port 145083 username mehdizare 145083 mac 145083 bytes_out 8480 145083 bytes_in 11306 145083 station_ip 5.120.252.120 145083 port 484 145083 unique_id port 145083 remote_ip 10.8.0.90 145087 username yahodi 145087 kill_reason Another user logged on this global unique id 145087 mac 145087 bytes_out 0 145087 bytes_in 0 145087 station_ip 37.129.73.39 145087 port 483 145087 unique_id port 145088 username alihosseini1 145088 mac 145088 bytes_out 0 145088 bytes_in 0 145088 station_ip 5.119.18.46 145088 port 257 145088 unique_id port 145088 remote_ip 10.8.1.106 145097 username barzegar 145097 mac 145097 bytes_out 0 145097 bytes_in 0 145097 station_ip 5.119.254.153 145097 port 242 145097 unique_id port 145097 remote_ip 10.8.1.174 145102 username vanila 145102 mac 145102 bytes_out 861031 145102 bytes_in 3625975 145102 station_ip 37.129.88.68 145102 port 470 145102 unique_id port 145102 remote_ip 10.8.0.178 145105 username alihosseini1 145105 mac 145105 bytes_out 0 145105 bytes_in 0 145105 station_ip 5.119.18.46 145105 port 242 145105 unique_id port 145105 remote_ip 10.8.1.106 145108 username alihosseini1 145108 mac 145108 bytes_out 0 145108 bytes_in 0 145108 station_ip 5.119.18.46 145108 port 469 145108 unique_id port 145108 remote_ip 10.8.0.166 145110 username barzegar 145110 mac 145110 bytes_out 19615 145110 bytes_in 25134 145110 station_ip 5.119.254.153 145110 port 242 145110 unique_id port 145110 remote_ip 10.8.1.174 145114 username kalantary 145114 mac 145114 bytes_out 35655 145114 bytes_in 51831 145114 station_ip 83.122.31.147 145114 port 242 145114 unique_id port 145114 remote_ip 10.8.1.26 145117 username alihosseini1 145117 kill_reason Maximum check online fails reached 145117 mac 145117 bytes_out 0 145117 bytes_in 0 145117 station_ip 5.119.18.46 145117 port 464 145117 unique_id port 145121 username hashtadani3 145121 mac 145121 bytes_out 0 145121 bytes_in 0 145121 station_ip 5.202.15.61 145121 port 484 145121 unique_id port 145121 remote_ip 10.8.0.154 145123 username mosi 145123 kill_reason Another user logged on this global unique id 145123 mac 145123 bytes_out 0 145123 bytes_in 0 145123 station_ip 151.235.107.13 145123 port 486 145123 unique_id port 145123 remote_ip 10.8.0.138 145126 username meysam 145126 mac 145126 bytes_out 0 145126 bytes_in 0 145126 station_ip 188.159.251.16 145126 port 254 145126 unique_id port 145126 remote_ip 10.8.1.34 145132 username yahodi 145132 kill_reason Another user logged on this global unique id 145132 mac 145132 bytes_out 0 145132 bytes_in 0 145132 station_ip 37.129.73.39 145132 port 483 145132 unique_id port 145134 username aminvpn 145134 mac 145134 bytes_out 0 145134 bytes_in 0 145134 station_ip 5.120.36.54 145134 port 485 145134 unique_id port 145134 remote_ip 10.8.0.14 145137 username hashtadani3 145137 mac 145137 bytes_out 0 145137 bytes_in 0 145137 station_ip 5.202.15.61 145137 port 470 145137 unique_id port 145137 remote_ip 10.8.0.154 145140 username barzegar 145140 mac 145140 bytes_out 0 145140 bytes_in 0 145140 station_ip 5.119.254.153 145140 port 242 145140 unique_id port 145140 remote_ip 10.8.1.174 145146 username yahodi 145146 kill_reason Another user logged on this global unique id 145146 mac 145146 bytes_out 0 145146 bytes_in 0 145098 bytes_in 0 145098 station_ip 5.119.18.46 145098 port 469 145098 unique_id port 145098 remote_ip 10.8.0.166 145100 username kalantary 145100 mac 145100 bytes_out 0 145100 bytes_in 0 145100 station_ip 83.122.31.147 145100 port 254 145100 unique_id port 145100 remote_ip 10.8.1.26 145101 username hashtadani3 145101 mac 145101 bytes_out 71413 145101 bytes_in 129824 145101 station_ip 5.202.15.61 145101 port 469 145101 unique_id port 145101 remote_ip 10.8.0.154 145106 username kalantary 145106 mac 145106 bytes_out 0 145106 bytes_in 0 145106 station_ip 83.122.31.147 145106 port 254 145106 unique_id port 145106 remote_ip 10.8.1.26 145109 username hashtadani3 145109 mac 145109 bytes_out 0 145109 bytes_in 0 145109 station_ip 5.202.15.61 145109 port 469 145109 unique_id port 145109 remote_ip 10.8.0.154 145111 username moradi 145111 mac 145111 bytes_out 0 145111 bytes_in 0 145111 station_ip 46.225.208.84 145111 port 464 145111 unique_id port 145111 remote_ip 10.8.0.250 145112 username yahodi 145112 kill_reason Another user logged on this global unique id 145112 mac 145112 bytes_out 0 145112 bytes_in 0 145112 station_ip 37.129.73.39 145112 port 483 145112 unique_id port 145113 username hashtadani3 145113 mac 145113 bytes_out 0 145113 bytes_in 0 145113 station_ip 5.202.15.61 145113 port 484 145113 unique_id port 145113 remote_ip 10.8.0.154 145116 username alihosseini1 145116 mac 145116 bytes_out 0 145116 bytes_in 0 145116 station_ip 5.119.18.46 145116 port 484 145116 unique_id port 145116 remote_ip 10.8.0.166 145120 username barzegar 145120 mac 145120 bytes_out 0 145120 bytes_in 0 145120 station_ip 5.119.254.153 145120 port 242 145120 unique_id port 145120 remote_ip 10.8.1.174 145124 username yahodi 145124 kill_reason Another user logged on this global unique id 145124 mac 145124 bytes_out 0 145124 bytes_in 0 145124 station_ip 37.129.73.39 145124 port 483 145124 unique_id port 145130 username hashtadani3 145130 mac 145130 bytes_out 0 145130 bytes_in 0 145130 station_ip 5.202.15.61 145130 port 487 145130 unique_id port 145130 remote_ip 10.8.0.154 145131 username alihosseini1 145131 mac 145131 bytes_out 305173 145131 bytes_in 1641226 145131 station_ip 5.119.18.46 145131 port 242 145131 unique_id port 145131 remote_ip 10.8.1.106 145133 username moradi 145133 mac 145133 bytes_out 0 145133 bytes_in 0 145133 station_ip 46.225.208.84 145133 port 470 145133 unique_id port 145133 remote_ip 10.8.0.250 145135 username mosi 145135 kill_reason Another user logged on this global unique id 145135 mac 145135 bytes_out 0 145135 bytes_in 0 145135 station_ip 151.235.107.13 145135 port 486 145135 unique_id port 145136 username barzegar 145136 mac 145136 bytes_out 0 145136 bytes_in 0 145136 station_ip 5.119.254.153 145136 port 242 145136 unique_id port 145136 remote_ip 10.8.1.174 145138 username shahrooz 145138 kill_reason Relative expiration date has reached 145138 unique_id port 145138 bytes_out 0 145138 bytes_in 0 145138 station_ip 37.129.241.91 145138 port 15730859 145138 nas_port_type Virtual 145141 username shahrooz 145141 kill_reason Relative expiration date has reached 145141 unique_id port 145141 bytes_out 0 145141 bytes_in 0 145141 station_ip 37.129.241.91 145141 port 15730860 145141 nas_port_type Virtual 145143 username mosi 145143 kill_reason Another user logged on this global unique id 145143 mac 145143 bytes_out 0 145143 bytes_in 0 145143 station_ip 151.235.107.13 145143 port 486 145143 unique_id port 145144 username shahrooz 145107 bytes_out 0 145107 bytes_in 0 145107 station_ip 5.119.254.153 145107 port 242 145107 unique_id port 145107 remote_ip 10.8.1.174 145115 username hashtadani3 145115 mac 145115 bytes_out 0 145115 bytes_in 0 145115 station_ip 5.202.15.61 145115 port 487 145115 unique_id port 145115 remote_ip 10.8.0.154 145118 username alihosseini1 145118 mac 145118 bytes_out 0 145118 bytes_in 0 145118 station_ip 5.119.18.46 145118 port 242 145118 unique_id port 145118 remote_ip 10.8.1.106 145119 username hashtadani3 145119 mac 145119 bytes_out 0 145119 bytes_in 0 145119 station_ip 5.202.15.61 145119 port 484 145119 unique_id port 145119 remote_ip 10.8.0.154 145122 username hashtadani3 145122 mac 145122 bytes_out 0 145122 bytes_in 0 145122 station_ip 5.202.15.61 145122 port 484 145122 unique_id port 145122 remote_ip 10.8.0.154 145125 username forozandeh1 145125 mac 145125 bytes_out 234852 145125 bytes_in 793907 145125 station_ip 37.129.19.81 145125 port 242 145125 unique_id port 145125 remote_ip 10.8.1.250 145127 username alihosseini1 145127 mac 145127 bytes_out 0 145127 bytes_in 0 145127 station_ip 5.119.18.46 145127 port 487 145127 unique_id port 145127 remote_ip 10.8.0.166 145128 username hashtadani3 145128 mac 145128 bytes_out 0 145128 bytes_in 0 145128 station_ip 5.202.15.61 145128 port 487 145128 unique_id port 145128 remote_ip 10.8.0.154 145129 username hashtadani3 145129 mac 145129 bytes_out 0 145129 bytes_in 0 145129 station_ip 5.202.15.61 145129 port 487 145129 unique_id port 145129 remote_ip 10.8.0.154 145139 username hashtadani3 145139 mac 145139 bytes_out 0 145139 bytes_in 0 145139 station_ip 5.202.15.61 145139 port 485 145139 unique_id port 145139 remote_ip 10.8.0.154 145142 username shahrooz 145142 kill_reason Relative expiration date has reached 145142 unique_id port 145142 bytes_out 0 145142 bytes_in 0 145142 station_ip 37.129.241.91 145142 port 15730861 145142 nas_port_type Virtual 145148 username yarmohamadi 145148 kill_reason Another user logged on this global unique id 145148 mac 145148 bytes_out 0 145148 bytes_in 0 145148 station_ip 5.119.23.117 145148 port 451 145148 unique_id port 145150 username kalantary 145150 mac 145150 bytes_out 48493 145150 bytes_in 72954 145150 station_ip 83.122.125.139 145150 port 254 145150 unique_id port 145150 remote_ip 10.8.1.26 145155 username yarmohamadi 145155 kill_reason Another user logged on this global unique id 145155 mac 145155 bytes_out 0 145155 bytes_in 0 145155 station_ip 5.119.23.117 145155 port 451 145155 unique_id port 145156 username hashtadani3 145156 mac 145156 bytes_out 0 145156 bytes_in 0 145156 station_ip 5.202.15.61 145156 port 254 145156 unique_id port 145156 remote_ip 10.8.1.94 145157 username zotaher 145157 mac 145157 bytes_out 0 145157 bytes_in 0 145157 station_ip 83.123.8.112 145157 port 254 145157 unique_id port 145157 remote_ip 10.8.1.246 145158 username hashtadani3 145158 mac 145158 bytes_out 0 145158 bytes_in 0 145158 station_ip 5.202.15.61 145158 port 487 145158 unique_id port 145158 remote_ip 10.8.0.154 145160 username mosi 145160 kill_reason Another user logged on this global unique id 145160 mac 145160 bytes_out 0 145160 bytes_in 0 145160 station_ip 151.235.107.13 145160 port 486 145160 unique_id port 145162 username yarmohamadi 145162 kill_reason Another user logged on this global unique id 145162 mac 145162 bytes_out 0 145162 bytes_in 0 145162 station_ip 5.119.23.117 145162 port 451 145162 unique_id port 145163 username malekpoir 145144 kill_reason Relative expiration date has reached 145144 unique_id port 145144 bytes_out 0 145144 bytes_in 0 145144 station_ip 37.129.241.91 145144 port 15730862 145144 nas_port_type Virtual 145145 username hashtadani3 145145 mac 145145 bytes_out 0 145145 bytes_in 0 145145 station_ip 5.202.15.61 145145 port 485 145145 unique_id port 145145 remote_ip 10.8.0.154 145149 username mosi 145149 kill_reason Another user logged on this global unique id 145149 mac 145149 bytes_out 0 145149 bytes_in 0 145149 station_ip 151.235.107.13 145149 port 486 145149 unique_id port 145151 username barzegar 145151 mac 145151 bytes_out 0 145151 bytes_in 0 145151 station_ip 5.119.254.153 145151 port 255 145151 unique_id port 145151 remote_ip 10.8.1.174 145161 username alihosseini1 145161 mac 145161 bytes_out 0 145161 bytes_in 0 145161 station_ip 5.119.227.214 145161 port 242 145161 unique_id port 145161 remote_ip 10.8.1.106 145165 username yahodi 145165 kill_reason Another user logged on this global unique id 145165 mac 145165 bytes_out 0 145165 bytes_in 0 145165 station_ip 37.129.73.39 145165 port 483 145165 unique_id port 145169 username fezealinaghi 145169 mac 145169 bytes_out 0 145169 bytes_in 0 145169 station_ip 113.203.89.191 145169 port 470 145169 unique_id port 145169 remote_ip 10.8.0.78 145173 username sedighe 145173 mac 145173 bytes_out 0 145173 bytes_in 0 145173 station_ip 37.129.103.244 145173 port 490 145173 unique_id port 145173 remote_ip 10.8.0.146 145174 username yahodi 145174 mac 145174 bytes_out 0 145174 bytes_in 0 145174 station_ip 37.129.73.39 145174 port 483 145174 unique_id port 145176 username moradi 145176 mac 145176 bytes_out 0 145176 bytes_in 0 145176 station_ip 46.225.208.84 145176 port 485 145176 unique_id port 145176 remote_ip 10.8.0.250 145178 username sedighe 145178 mac 145178 bytes_out 0 145178 bytes_in 0 145178 station_ip 37.129.103.244 145178 port 491 145178 unique_id port 145178 remote_ip 10.8.0.146 145179 username hashtadani3 145179 mac 145179 bytes_out 0 145179 bytes_in 0 145179 station_ip 5.202.15.61 145179 port 485 145179 unique_id port 145179 remote_ip 10.8.0.154 145180 username mosi 145180 kill_reason Another user logged on this global unique id 145180 mac 145180 bytes_out 0 145180 bytes_in 0 145180 station_ip 151.235.107.13 145180 port 486 145180 unique_id port 145181 username hashtadani3 145181 mac 145181 bytes_out 0 145181 bytes_in 0 145181 station_ip 5.202.15.61 145181 port 485 145181 unique_id port 145181 remote_ip 10.8.0.154 145184 username hashtadani3 145184 mac 145184 bytes_out 0 145184 bytes_in 0 145184 station_ip 5.202.15.61 145184 port 485 145184 unique_id port 145184 remote_ip 10.8.0.154 145186 username hashtadani3 145186 mac 145186 bytes_out 0 145186 bytes_in 0 145186 station_ip 5.202.15.61 145186 port 485 145186 unique_id port 145186 remote_ip 10.8.0.154 145187 username sedighe 145187 mac 145187 bytes_out 0 145187 bytes_in 0 145187 station_ip 37.129.103.244 145187 port 482 145187 unique_id port 145187 remote_ip 10.8.0.146 145188 username hashtadani3 145188 mac 145188 bytes_out 0 145188 bytes_in 0 145188 station_ip 5.202.15.61 145188 port 482 145188 unique_id port 145188 remote_ip 10.8.0.154 145189 username kalantary 145189 mac 145189 bytes_out 0 145189 bytes_in 0 145189 station_ip 83.122.125.139 145189 port 254 145189 unique_id port 145189 remote_ip 10.8.1.26 145191 username mehdizare 145191 mac 145191 bytes_out 0 145146 station_ip 37.129.73.39 145146 port 483 145146 unique_id port 145147 username hashtadani3 145147 mac 145147 bytes_out 0 145147 bytes_in 0 145147 station_ip 5.202.15.61 145147 port 485 145147 unique_id port 145147 remote_ip 10.8.0.154 145152 username mosi 145152 kill_reason Another user logged on this global unique id 145152 mac 145152 bytes_out 0 145152 bytes_in 0 145152 station_ip 151.235.107.13 145152 port 486 145152 unique_id port 145153 username yahodi 145153 kill_reason Another user logged on this global unique id 145153 mac 145153 bytes_out 0 145153 bytes_in 0 145153 station_ip 37.129.73.39 145153 port 483 145153 unique_id port 145154 username hashtadani3 145154 mac 145154 bytes_out 0 145154 bytes_in 0 145154 station_ip 5.202.15.61 145154 port 487 145154 unique_id port 145154 remote_ip 10.8.0.154 145159 username barzegar 145159 mac 145159 bytes_out 0 145159 bytes_in 0 145159 station_ip 5.119.254.153 145159 port 485 145159 unique_id port 145159 remote_ip 10.8.0.234 145167 username yarmohamadi 145167 kill_reason Another user logged on this global unique id 145167 mac 145167 bytes_out 0 145167 bytes_in 0 145167 station_ip 5.119.23.117 145167 port 451 145167 unique_id port 145168 username tahmasebi 145168 mac 145168 bytes_out 0 145168 bytes_in 0 145168 station_ip 5.126.18.72 145168 port 482 145168 unique_id port 145185 username forozandeh1 145185 mac 145185 bytes_out 1137335 145185 bytes_in 9955486 145185 station_ip 37.129.151.239 145185 port 242 145185 unique_id port 145185 remote_ip 10.8.1.250 145190 username moradi 145190 kill_reason Another user logged on this global unique id 145190 mac 145190 bytes_out 0 145190 bytes_in 0 145190 station_ip 37.129.24.93 145190 port 483 145190 unique_id port 145190 remote_ip 10.8.0.250 145194 username hashtadani3 145194 mac 145194 bytes_out 10957586 145194 bytes_in 5266085 145194 station_ip 5.202.15.61 145194 port 482 145194 unique_id port 145194 remote_ip 10.8.0.154 145198 username hashtadani3 145198 mac 145198 bytes_out 0 145198 bytes_in 0 145198 station_ip 5.202.15.61 145198 port 482 145198 unique_id port 145198 remote_ip 10.8.0.154 145205 username mohammadjavad 145205 mac 145205 bytes_out 0 145205 bytes_in 0 145205 station_ip 37.129.132.145 145205 port 487 145205 unique_id port 145205 remote_ip 10.8.0.142 145210 username fezealinaghi 145210 kill_reason Another user logged on this global unique id 145210 mac 145210 bytes_out 0 145210 bytes_in 0 145210 station_ip 113.203.11.119 145210 port 490 145210 unique_id port 145210 remote_ip 10.8.0.78 145211 username barzegar 145211 mac 145211 bytes_out 0 145211 bytes_in 0 145211 station_ip 5.119.254.153 145211 port 470 145211 unique_id port 145214 username moradi 145214 mac 145214 bytes_out 0 145214 bytes_in 0 145214 station_ip 37.129.24.93 145214 port 483 145214 unique_id port 145217 username moradi 145217 mac 145217 bytes_out 0 145217 bytes_in 0 145217 station_ip 37.129.24.93 145217 port 487 145217 unique_id port 145217 remote_ip 10.8.0.250 145227 username mosi 145227 kill_reason Another user logged on this global unique id 145227 mac 145227 bytes_out 0 145227 bytes_in 0 145227 station_ip 151.235.107.13 145227 port 486 145227 unique_id port 145230 username meysam 145230 mac 145230 bytes_out 0 145230 bytes_in 0 145230 station_ip 188.159.251.16 145230 port 245 145230 unique_id port 145230 remote_ip 10.8.1.34 145233 username fezealinaghi 145233 kill_reason Another user logged on this global unique id 145233 mac 145233 bytes_out 0 145233 bytes_in 0 145163 kill_reason Another user logged on this global unique id 145163 mac 145163 bytes_out 0 145163 bytes_in 0 145163 station_ip 5.119.97.234 145163 port 480 145163 unique_id port 145164 username kalantary 145164 mac 145164 bytes_out 167992 145164 bytes_in 858726 145164 station_ip 83.122.125.139 145164 port 254 145164 unique_id port 145164 remote_ip 10.8.1.26 145166 username houshang 145166 mac 145166 bytes_out 148075 145166 bytes_in 315895 145166 station_ip 5.120.49.92 145166 port 487 145166 unique_id port 145166 remote_ip 10.8.0.22 145170 username sedighe 145170 mac 145170 bytes_out 0 145170 bytes_in 0 145170 station_ip 37.129.103.244 145170 port 487 145170 unique_id port 145170 remote_ip 10.8.0.146 145171 username yarmohamadi 145171 kill_reason Another user logged on this global unique id 145171 mac 145171 bytes_out 0 145171 bytes_in 0 145171 station_ip 5.119.23.117 145171 port 451 145171 unique_id port 145172 username yahodi 145172 kill_reason Another user logged on this global unique id 145172 mac 145172 bytes_out 0 145172 bytes_in 0 145172 station_ip 37.129.73.39 145172 port 483 145172 unique_id port 145175 username hashtadani3 145175 mac 145175 bytes_out 0 145175 bytes_in 0 145175 station_ip 5.202.15.61 145175 port 482 145175 unique_id port 145175 remote_ip 10.8.0.154 145177 username hashtadani3 145177 mac 145177 bytes_out 0 145177 bytes_in 0 145177 station_ip 5.202.15.61 145177 port 482 145177 unique_id port 145177 remote_ip 10.8.0.154 145182 username yarmohamadi 145182 kill_reason Another user logged on this global unique id 145182 mac 145182 bytes_out 0 145182 bytes_in 0 145182 station_ip 5.119.23.117 145182 port 451 145182 unique_id port 145183 username hashtadani3 145183 mac 145183 bytes_out 0 145183 bytes_in 0 145183 station_ip 5.202.15.61 145183 port 485 145183 unique_id port 145183 remote_ip 10.8.0.154 145193 username mosi 145193 kill_reason Another user logged on this global unique id 145193 mac 145193 bytes_out 0 145193 bytes_in 0 145193 station_ip 151.235.107.13 145193 port 486 145193 unique_id port 145199 username moradi 145199 kill_reason Another user logged on this global unique id 145199 mac 145199 bytes_out 0 145199 bytes_in 0 145199 station_ip 37.129.24.93 145199 port 483 145199 unique_id port 145202 username meysam 145202 kill_reason Another user logged on this global unique id 145202 mac 145202 bytes_out 0 145202 bytes_in 0 145202 station_ip 188.159.251.16 145202 port 245 145202 unique_id port 145202 remote_ip 10.8.1.34 145203 username hashtadani3 145203 mac 145203 bytes_out 0 145203 bytes_in 0 145203 station_ip 37.129.220.24 145203 port 254 145203 unique_id port 145203 remote_ip 10.8.1.94 145206 username hashtadani3 145206 mac 145206 bytes_out 0 145206 bytes_in 0 145206 station_ip 5.202.15.61 145206 port 487 145206 unique_id port 145206 remote_ip 10.8.0.154 145207 username barzegar 145207 kill_reason Another user logged on this global unique id 145207 mac 145207 bytes_out 0 145207 bytes_in 0 145207 station_ip 5.119.254.153 145207 port 470 145207 unique_id port 145207 remote_ip 10.8.0.234 145208 username kalantary 145208 mac 145208 bytes_out 414481 145208 bytes_in 3485167 145208 station_ip 83.122.16.179 145208 port 254 145208 unique_id port 145208 remote_ip 10.8.1.26 145209 username hashtadani3 145209 mac 145209 bytes_out 0 145209 bytes_in 0 145209 station_ip 5.202.15.61 145209 port 254 145209 unique_id port 145209 remote_ip 10.8.1.94 145212 username hamid.e 145212 unique_id port 145212 terminate_cause User-Request 145212 bytes_out 2042304 145191 bytes_in 0 145191 station_ip 5.120.252.120 145191 port 245 145191 unique_id port 145191 remote_ip 10.8.1.42 145192 username khalili 145192 kill_reason Another user logged on this global unique id 145192 mac 145192 bytes_out 0 145192 bytes_in 0 145192 station_ip 5.119.28.218 145192 port 452 145192 unique_id port 145195 username vanila 145195 mac 145195 bytes_out 0 145195 bytes_in 0 145195 station_ip 37.129.88.68 145195 port 491 145195 unique_id port 145195 remote_ip 10.8.0.178 145196 username hashtadani3 145196 mac 145196 bytes_out 0 145196 bytes_in 0 145196 station_ip 5.202.15.61 145196 port 482 145196 unique_id port 145196 remote_ip 10.8.0.154 145197 username sabaghnezhad 145197 mac 145197 bytes_out 543616 145197 bytes_in 2020855 145197 station_ip 95.64.40.200 145197 port 487 145197 unique_id port 145197 remote_ip 10.8.0.186 145200 username kalantary 145200 mac 145200 bytes_out 0 145200 bytes_in 0 145200 station_ip 83.122.16.179 145200 port 254 145200 unique_id port 145200 remote_ip 10.8.1.26 145201 username shahrooz 145201 kill_reason Relative expiration date has reached 145201 unique_id port 145201 bytes_out 0 145201 bytes_in 0 145201 station_ip 37.129.241.91 145201 port 15730865 145201 nas_port_type Virtual 145204 username hashtadani3 145204 mac 145204 bytes_out 0 145204 bytes_in 0 145204 station_ip 5.202.15.61 145204 port 492 145204 unique_id port 145204 remote_ip 10.8.0.154 145218 username meysam 145218 mac 145218 bytes_out 0 145218 bytes_in 0 145218 station_ip 188.159.251.16 145218 port 245 145218 unique_id port 145219 username hashtadani3 145219 mac 145219 bytes_out 0 145219 bytes_in 0 145219 station_ip 5.202.15.61 145219 port 483 145219 unique_id port 145219 remote_ip 10.8.0.154 145220 username yarmohamadi 145220 kill_reason Another user logged on this global unique id 145220 mac 145220 bytes_out 0 145220 bytes_in 0 145220 station_ip 5.119.23.117 145220 port 451 145220 unique_id port 145224 username sedighe 145224 mac 145224 bytes_out 2818 145224 bytes_in 5710 145224 station_ip 37.129.103.244 145224 port 487 145224 unique_id port 145224 remote_ip 10.8.0.146 145226 username yarmohamadi 145226 mac 145226 bytes_out 0 145226 bytes_in 0 145226 station_ip 5.119.23.117 145226 port 451 145226 unique_id port 145228 username mehdizare 145228 mac 145228 bytes_out 0 145228 bytes_in 0 145228 station_ip 5.120.252.120 145228 port 242 145228 unique_id port 145228 remote_ip 10.8.1.42 145235 username barzegar 145235 mac 145235 bytes_out 0 145235 bytes_in 0 145235 station_ip 5.119.254.153 145235 port 470 145235 unique_id port 145235 remote_ip 10.8.0.234 145238 username meysam 145238 mac 145238 bytes_out 0 145238 bytes_in 0 145238 station_ip 188.159.251.16 145238 port 242 145238 unique_id port 145238 remote_ip 10.8.1.34 145240 username sedighe 145240 mac 145240 bytes_out 74995 145240 bytes_in 146949 145240 station_ip 37.129.103.244 145240 port 492 145240 unique_id port 145240 remote_ip 10.8.0.146 145241 username mosi 145241 mac 145241 bytes_out 0 145241 bytes_in 0 145241 station_ip 151.235.107.13 145241 port 486 145241 unique_id port 145243 username kalantary 145243 mac 145243 bytes_out 0 145243 bytes_in 0 145243 station_ip 83.122.32.179 145243 port 254 145243 unique_id port 145243 remote_ip 10.8.1.26 145245 username godarzi 145245 mac 145245 bytes_out 0 145245 bytes_in 0 145245 station_ip 5.119.83.92 145245 port 486 145245 unique_id port 145212 bytes_in 40463254 145212 station_ip 37.27.1.249 145212 port 15730863 145212 nas_port_type Virtual 145212 remote_ip 5.5.5.42 145213 username mosi 145213 kill_reason Another user logged on this global unique id 145213 mac 145213 bytes_out 0 145213 bytes_in 0 145213 station_ip 151.235.107.13 145213 port 486 145213 unique_id port 145215 username meysam 145215 kill_reason Another user logged on this global unique id 145215 mac 145215 bytes_out 0 145215 bytes_in 0 145215 station_ip 188.159.251.16 145215 port 245 145215 unique_id port 145216 username kordestani 145216 mac 145216 bytes_out 0 145216 bytes_in 0 145216 station_ip 151.235.108.227 145216 port 482 145216 unique_id port 145216 remote_ip 10.8.0.134 145221 username sedighe 145221 mac 145221 bytes_out 167636 145221 bytes_in 203083 145221 station_ip 37.129.103.244 145221 port 485 145221 unique_id port 145221 remote_ip 10.8.0.146 145222 username moradi 145222 mac 145222 bytes_out 36205 145222 bytes_in 52522 145222 station_ip 37.129.24.93 145222 port 482 145222 unique_id port 145222 remote_ip 10.8.0.250 145223 username godarzi 145223 mac 145223 bytes_out 0 145223 bytes_in 0 145223 station_ip 5.119.83.92 145223 port 488 145223 unique_id port 145223 remote_ip 10.8.0.174 145225 username aminvpn 145225 mac 145225 bytes_out 5063929 145225 bytes_in 27271844 145225 station_ip 5.120.36.54 145225 port 491 145225 unique_id port 145225 remote_ip 10.8.0.14 145229 username hashtadani3 145229 mac 145229 bytes_out 4048590 145229 bytes_in 45176363 145229 station_ip 5.202.15.61 145229 port 483 145229 unique_id port 145229 remote_ip 10.8.0.154 145231 username tahmasebi 145231 kill_reason Another user logged on this global unique id 145231 mac 145231 bytes_out 0 145231 bytes_in 0 145231 station_ip 5.126.18.72 145231 port 489 145231 unique_id port 145231 remote_ip 10.8.0.42 145232 username godarzi 145232 mac 145232 bytes_out 193501 145232 bytes_in 1695513 145232 station_ip 5.119.83.92 145232 port 483 145232 unique_id port 145232 remote_ip 10.8.0.174 145234 username barzegar 145234 mac 145234 bytes_out 0 145234 bytes_in 0 145234 station_ip 5.119.254.153 145234 port 470 145234 unique_id port 145234 remote_ip 10.8.0.234 145236 username saeed9658 145236 mac 145236 bytes_out 474487 145236 bytes_in 3311359 145236 station_ip 5.119.125.222 145236 port 482 145236 unique_id port 145236 remote_ip 10.8.0.62 145239 username hashtadani3 145239 mac 145239 bytes_out 0 145239 bytes_in 0 145239 station_ip 5.202.15.61 145239 port 483 145239 unique_id port 145239 remote_ip 10.8.0.154 145250 username sedighe 145250 mac 145250 bytes_out 30779 145250 bytes_in 31175 145250 station_ip 37.129.103.244 145250 port 483 145250 unique_id port 145250 remote_ip 10.8.0.146 145252 username saeed9658 145252 mac 145252 bytes_out 0 145252 bytes_in 0 145252 station_ip 5.119.125.222 145252 port 470 145252 unique_id port 145252 remote_ip 10.8.0.62 145257 username mosi 145257 mac 145257 bytes_out 29418 145257 bytes_in 31671 145257 station_ip 89.47.136.76 145257 port 488 145257 unique_id port 145257 remote_ip 10.8.0.138 145259 username khalili 145259 mac 145259 bytes_out 0 145259 bytes_in 0 145259 station_ip 5.119.28.218 145259 port 452 145259 unique_id port 145260 username hashtadani3 145260 mac 145260 bytes_out 0 145260 bytes_in 0 145260 station_ip 5.202.15.61 145260 port 482 145260 unique_id port 145260 remote_ip 10.8.0.154 145261 username forozandeh1 145261 mac 145261 bytes_out 3134747 145233 station_ip 113.203.11.119 145233 port 490 145233 unique_id port 145237 username tahmasebi 145237 kill_reason Another user logged on this global unique id 145237 mac 145237 bytes_out 0 145237 bytes_in 0 145237 station_ip 5.126.18.72 145237 port 489 145237 unique_id port 145242 username saeed9658 145242 mac 145242 bytes_out 0 145242 bytes_in 0 145242 station_ip 5.119.125.222 145242 port 470 145242 unique_id port 145242 remote_ip 10.8.0.62 145244 username tahmasebi 145244 mac 145244 bytes_out 0 145244 bytes_in 0 145244 station_ip 5.126.18.72 145244 port 489 145244 unique_id port 145247 username hashtadani3 145247 mac 145247 bytes_out 0 145247 bytes_in 0 145247 station_ip 5.202.15.61 145247 port 486 145247 unique_id port 145247 remote_ip 10.8.0.154 145249 username morteza 145249 mac 145249 bytes_out 0 145249 bytes_in 0 145249 station_ip 83.122.8.11 145249 port 482 145249 unique_id port 145249 remote_ip 10.8.0.46 145254 username morteza 145254 mac 145254 bytes_out 0 145254 bytes_in 0 145254 station_ip 83.122.8.11 145254 port 254 145254 unique_id port 145254 remote_ip 10.8.1.62 145255 username barzegar 145255 mac 145255 bytes_out 0 145255 bytes_in 0 145255 station_ip 5.119.254.153 145255 port 470 145255 unique_id port 145255 remote_ip 10.8.0.234 145256 username hashtadani3 145256 mac 145256 bytes_out 0 145256 bytes_in 0 145256 station_ip 5.202.15.61 145256 port 470 145256 unique_id port 145256 remote_ip 10.8.0.154 145263 username barzegar 145263 mac 145263 bytes_out 0 145263 bytes_in 0 145263 station_ip 5.119.254.153 145263 port 470 145263 unique_id port 145263 remote_ip 10.8.0.234 145265 username morteza 145265 mac 145265 bytes_out 894452 145265 bytes_in 55471 145265 station_ip 83.122.8.11 145265 port 482 145265 unique_id port 145265 remote_ip 10.8.0.46 145266 username hashtadani3 145266 mac 145266 bytes_out 244672 145266 bytes_in 1278717 145266 station_ip 5.202.15.61 145266 port 483 145266 unique_id port 145266 remote_ip 10.8.0.154 145269 username hashtadani3 145269 mac 145269 bytes_out 265911 145269 bytes_in 1486744 145269 station_ip 5.202.64.250 145269 port 470 145269 unique_id port 145269 remote_ip 10.8.0.154 145270 username morteza 145270 mac 145270 bytes_out 0 145270 bytes_in 0 145270 station_ip 83.122.8.11 145270 port 254 145270 unique_id port 145270 remote_ip 10.8.1.62 145274 username sedighe 145274 mac 145274 bytes_out 663063 145274 bytes_in 6430622 145274 station_ip 37.129.103.244 145274 port 242 145274 unique_id port 145274 remote_ip 10.8.1.78 145275 username morteza 145275 mac 145275 bytes_out 0 145275 bytes_in 0 145275 station_ip 83.122.8.11 145275 port 483 145275 unique_id port 145275 remote_ip 10.8.0.46 145276 username barzegar 145276 mac 145276 bytes_out 0 145276 bytes_in 0 145276 station_ip 5.119.254.153 145276 port 245 145276 unique_id port 145276 remote_ip 10.8.1.174 145279 username mirzaei 145279 mac 145279 bytes_out 0 145279 bytes_in 0 145279 station_ip 5.120.58.147 145279 port 445 145279 unique_id port 145279 remote_ip 10.8.0.66 145282 username moradi 145282 mac 145282 bytes_out 546355 145282 bytes_in 324503 145282 station_ip 37.129.34.93 145282 port 451 145282 unique_id port 145282 remote_ip 10.8.0.250 145287 username morteza 145287 mac 145287 bytes_out 0 145287 bytes_in 0 145287 station_ip 83.122.8.11 145287 port 483 145287 unique_id port 145287 remote_ip 10.8.0.46 145289 username morteza 145245 remote_ip 10.8.0.174 145246 username morteza 145246 mac 145246 bytes_out 1842968 145246 bytes_in 420951 145246 station_ip 83.122.8.11 145246 port 482 145246 unique_id port 145246 remote_ip 10.8.0.46 145248 username aminvpn 145248 mac 145248 bytes_out 1624122 145248 bytes_in 8498022 145248 station_ip 5.120.36.54 145248 port 451 145248 unique_id port 145248 remote_ip 10.8.0.14 145251 username moradi 145251 mac 145251 bytes_out 408375 145251 bytes_in 334029 145251 station_ip 46.225.208.84 145251 port 485 145251 unique_id port 145251 remote_ip 10.8.0.250 145253 username barzegar 145253 mac 145253 bytes_out 7013 145253 bytes_in 8388 145253 station_ip 5.119.254.153 145253 port 482 145253 unique_id port 145253 remote_ip 10.8.0.234 145258 username morteza 145258 mac 145258 bytes_out 0 145258 bytes_in 0 145258 station_ip 83.122.8.11 145258 port 254 145258 unique_id port 145258 remote_ip 10.8.1.62 145264 username fezealinaghi 145264 kill_reason Another user logged on this global unique id 145264 mac 145264 bytes_out 0 145264 bytes_in 0 145264 station_ip 113.203.11.119 145264 port 490 145264 unique_id port 145268 username morteza 145268 mac 145268 bytes_out 0 145268 bytes_in 0 145268 station_ip 83.122.8.11 145268 port 482 145268 unique_id port 145268 remote_ip 10.8.0.46 145271 username kordestani 145271 mac 145271 bytes_out 0 145271 bytes_in 0 145271 station_ip 151.235.117.135 145271 port 452 145271 unique_id port 145271 remote_ip 10.8.0.134 145272 username morteza 145272 mac 145272 bytes_out 0 145272 bytes_in 0 145272 station_ip 83.122.8.11 145272 port 452 145272 unique_id port 145272 remote_ip 10.8.0.46 145278 username mosi 145278 mac 145278 bytes_out 290989 145278 bytes_in 744866 145278 station_ip 89.34.133.170 145278 port 470 145278 unique_id port 145278 remote_ip 10.8.0.138 145281 username hamidsalari 145281 kill_reason Another user logged on this global unique id 145281 mac 145281 bytes_out 0 145281 bytes_in 0 145281 station_ip 5.119.244.56 145281 port 469 145281 unique_id port 145281 remote_ip 10.8.0.222 145283 username morteza 145283 mac 145283 bytes_out 0 145283 bytes_in 0 145283 station_ip 83.122.8.11 145283 port 245 145283 unique_id port 145283 remote_ip 10.8.1.62 145284 username mehdizare 145284 mac 145284 bytes_out 743054 145284 bytes_in 8317446 145284 station_ip 5.120.252.120 145284 port 487 145284 unique_id port 145284 remote_ip 10.8.0.90 145286 username fezealinaghi 145286 mac 145286 bytes_out 0 145286 bytes_in 0 145286 station_ip 113.203.11.119 145286 port 490 145286 unique_id port 145291 username hashtadani3 145291 mac 145291 bytes_out 524750 145291 bytes_in 7476785 145291 station_ip 83.123.192.125 145291 port 482 145291 unique_id port 145291 remote_ip 10.8.0.154 145293 username fezealinaghi 145293 kill_reason Another user logged on this global unique id 145293 mac 145293 bytes_out 0 145293 bytes_in 0 145293 station_ip 37.129.249.129 145293 port 451 145293 unique_id port 145293 remote_ip 10.8.0.78 145294 username meysam 145294 mac 145294 bytes_out 0 145294 bytes_in 0 145294 station_ip 188.159.254.121 145294 port 255 145294 unique_id port 145294 remote_ip 10.8.1.34 145298 username hashtadani3 145298 mac 145298 bytes_out 0 145298 bytes_in 0 145298 station_ip 83.123.192.125 145298 port 482 145298 unique_id port 145298 remote_ip 10.8.0.154 145306 username malekpoir 145306 mac 145306 bytes_out 0 145306 bytes_in 0 145306 station_ip 5.119.97.234 145306 port 480 145261 bytes_in 35034104 145261 station_ip 37.129.65.122 145261 port 245 145261 unique_id port 145261 remote_ip 10.8.1.250 145262 username morteza 145262 mac 145262 bytes_out 0 145262 bytes_in 0 145262 station_ip 83.122.8.11 145262 port 482 145262 unique_id port 145262 remote_ip 10.8.0.46 145267 username hashtadani3 145267 mac 145267 bytes_out 0 145267 bytes_in 0 145267 station_ip 83.123.192.125 145267 port 470 145267 unique_id port 145267 remote_ip 10.8.0.154 145273 username mostafa_es78 145273 unique_id port 145273 terminate_cause Lost-Carrier 145273 bytes_out 91093 145273 bytes_in 1220505 145273 station_ip 5.119.167.133 145273 port 15730866 145273 nas_port_type Virtual 145273 remote_ip 5.5.5.55 145277 username mirzaei 145277 mac 145277 bytes_out 2594891 145277 bytes_in 4914433 145277 station_ip 5.120.58.147 145277 port 445 145277 unique_id port 145277 remote_ip 10.8.0.66 145280 username morteza 145280 mac 145280 bytes_out 0 145280 bytes_in 0 145280 station_ip 83.122.8.11 145280 port 245 145280 unique_id port 145280 remote_ip 10.8.1.62 145285 username morteza 145285 mac 145285 bytes_out 0 145285 bytes_in 0 145285 station_ip 83.122.8.11 145285 port 451 145285 unique_id port 145285 remote_ip 10.8.0.46 145288 username meysam 145288 mac 145288 bytes_out 0 145288 bytes_in 0 145288 station_ip 188.159.254.121 145288 port 255 145288 unique_id port 145288 remote_ip 10.8.1.34 145290 username mirzaei 145290 mac 145290 bytes_out 32355 145290 bytes_in 59647 145290 station_ip 5.120.58.147 145290 port 470 145290 unique_id port 145290 remote_ip 10.8.0.66 145292 username moradi 145292 mac 145292 bytes_out 66476 145292 bytes_in 77699 145292 station_ip 46.225.208.84 145292 port 445 145292 unique_id port 145292 remote_ip 10.8.0.250 145295 username barzegar 145295 mac 145295 bytes_out 0 145295 bytes_in 0 145295 station_ip 5.119.254.153 145295 port 485 145295 unique_id port 145295 remote_ip 10.8.0.234 145297 username morteza 145297 mac 145297 bytes_out 0 145297 bytes_in 0 145297 station_ip 83.122.8.11 145297 port 257 145297 unique_id port 145297 remote_ip 10.8.1.62 145299 username hashtadani3 145299 mac 145299 bytes_out 0 145299 bytes_in 0 145299 station_ip 83.123.192.125 145299 port 482 145299 unique_id port 145299 remote_ip 10.8.0.154 145302 username yahodi 145302 mac 145302 bytes_out 0 145302 bytes_in 0 145302 station_ip 37.129.90.115 145302 port 483 145302 unique_id port 145302 remote_ip 10.8.0.202 145304 username mehdizare 145304 mac 145304 bytes_out 0 145304 bytes_in 0 145304 station_ip 5.120.252.120 145304 port 245 145304 unique_id port 145304 remote_ip 10.8.1.42 145309 username hashtadani3 145309 mac 145309 bytes_out 0 145309 bytes_in 0 145309 station_ip 83.123.192.125 145309 port 480 145309 unique_id port 145309 remote_ip 10.8.0.154 145312 username hashtadani3 145312 mac 145312 bytes_out 0 145312 bytes_in 0 145312 station_ip 83.123.192.125 145312 port 480 145312 unique_id port 145312 remote_ip 10.8.0.154 145317 username forozandeh1 145317 kill_reason Another user logged on this global unique id 145317 mac 145317 bytes_out 0 145317 bytes_in 0 145317 station_ip 113.203.21.98 145317 port 255 145317 unique_id port 145317 remote_ip 10.8.1.250 145318 username fezealinaghi 145318 kill_reason Another user logged on this global unique id 145318 mac 145318 bytes_out 0 145318 bytes_in 0 145318 station_ip 37.129.249.129 145318 port 451 145318 unique_id port 145319 username alihosseini1 145319 mac 145289 mac 145289 bytes_out 0 145289 bytes_in 0 145289 station_ip 83.122.8.11 145289 port 257 145289 unique_id port 145289 remote_ip 10.8.1.62 145296 username meysam 145296 mac 145296 bytes_out 0 145296 bytes_in 0 145296 station_ip 5.119.87.109 145296 port 258 145296 unique_id port 145296 remote_ip 10.8.1.34 145300 username hamidsalari 145300 kill_reason Another user logged on this global unique id 145300 mac 145300 bytes_out 0 145300 bytes_in 0 145300 station_ip 5.119.244.56 145300 port 469 145300 unique_id port 145301 username morteza 145301 mac 145301 bytes_out 0 145301 bytes_in 0 145301 station_ip 83.122.8.11 145301 port 257 145301 unique_id port 145301 remote_ip 10.8.1.62 145303 username vanila 145303 mac 145303 bytes_out 0 145303 bytes_in 0 145303 station_ip 37.129.63.196 145303 port 257 145303 unique_id port 145303 remote_ip 10.8.1.74 145305 username godarzi 145305 mac 145305 bytes_out 63234 145305 bytes_in 99269 145305 station_ip 5.119.83.92 145305 port 482 145305 unique_id port 145305 remote_ip 10.8.0.174 145308 username mosi 145308 mac 145308 bytes_out 0 145308 bytes_in 0 145308 station_ip 89.47.138.130 145308 port 242 145308 unique_id port 145308 remote_ip 10.8.1.86 145310 username hashtadani3 145310 mac 145310 bytes_out 0 145310 bytes_in 0 145310 station_ip 83.123.192.125 145310 port 480 145310 unique_id port 145310 remote_ip 10.8.0.154 145311 username mosi 145311 mac 145311 bytes_out 0 145311 bytes_in 0 145311 station_ip 89.47.129.57 145311 port 242 145311 unique_id port 145311 remote_ip 10.8.1.86 145315 username hamidsalari 145315 kill_reason Another user logged on this global unique id 145315 mac 145315 bytes_out 0 145315 bytes_in 0 145315 station_ip 5.119.244.56 145315 port 469 145315 unique_id port 145316 username alihosseini1 145316 mac 145316 bytes_out 0 145316 bytes_in 0 145316 station_ip 5.119.1.115 145316 port 245 145316 unique_id port 145316 remote_ip 10.8.1.106 145320 username moradi 145320 mac 145320 bytes_out 53167 145320 bytes_in 78650 145320 station_ip 46.225.208.84 145320 port 470 145320 unique_id port 145320 remote_ip 10.8.0.250 145321 username hashtadani3 145321 mac 145321 bytes_out 0 145321 bytes_in 0 145321 station_ip 83.123.192.125 145321 port 488 145321 unique_id port 145321 remote_ip 10.8.0.154 145322 username hashtadani3 145322 mac 145322 bytes_out 6457 145322 bytes_in 13876 145322 station_ip 83.123.192.125 145322 port 488 145322 unique_id port 145322 remote_ip 10.8.0.154 145324 username saeed9658 145324 mac 145324 bytes_out 227336 145324 bytes_in 889158 145324 station_ip 5.119.125.222 145324 port 480 145324 unique_id port 145324 remote_ip 10.8.0.62 145328 username mohammadmahdi 145328 mac 145328 bytes_out 642065 145328 bytes_in 6835797 145328 station_ip 5.120.181.136 145328 port 480 145328 unique_id port 145328 remote_ip 10.8.0.54 145329 username hashtadani3 145329 mac 145329 bytes_out 0 145329 bytes_in 0 145329 station_ip 83.123.192.125 145329 port 489 145329 unique_id port 145329 remote_ip 10.8.0.154 145332 username hashtadani3 145332 mac 145332 bytes_out 0 145332 bytes_in 0 145332 station_ip 83.123.192.125 145332 port 488 145332 unique_id port 145332 remote_ip 10.8.0.154 145336 username hashtadani3 145336 mac 145336 bytes_out 0 145336 bytes_in 0 145336 station_ip 83.123.192.125 145336 port 480 145336 unique_id port 145336 remote_ip 10.8.0.154 145344 username mehdizare 145344 mac 145344 bytes_out 0 145306 unique_id port 145307 username hashtadani3 145307 mac 145307 bytes_out 0 145307 bytes_in 0 145307 station_ip 83.123.192.125 145307 port 480 145307 unique_id port 145307 remote_ip 10.8.0.154 145313 username barzegar 145313 mac 145313 bytes_out 0 145313 bytes_in 0 145313 station_ip 5.119.254.153 145313 port 486 145313 unique_id port 145313 remote_ip 10.8.0.234 145314 username vanila 145314 mac 145314 bytes_out 8464408 145314 bytes_in 1938310 145314 station_ip 37.129.63.196 145314 port 483 145314 unique_id port 145314 remote_ip 10.8.0.178 145327 username forozandeh1 145327 mac 145327 bytes_out 0 145327 bytes_in 0 145327 station_ip 113.203.21.98 145327 port 255 145327 unique_id port 145331 username vanila 145331 mac 145331 bytes_out 3031603 145331 bytes_in 274123 145331 station_ip 37.129.63.196 145331 port 488 145331 unique_id port 145331 remote_ip 10.8.0.178 145335 username hashtadani3 145335 mac 145335 bytes_out 0 145335 bytes_in 0 145335 station_ip 83.123.192.125 145335 port 255 145335 unique_id port 145335 remote_ip 10.8.1.94 145338 username aminvpn 145338 mac 145338 bytes_out 877303 145338 bytes_in 11069534 145338 station_ip 37.129.91.170 145338 port 486 145338 unique_id port 145338 remote_ip 10.8.0.14 145339 username meysam 145339 mac 145339 bytes_out 0 145339 bytes_in 0 145339 station_ip 5.120.8.101 145339 port 257 145339 unique_id port 145339 remote_ip 10.8.1.34 145343 username hashtadani3 145343 mac 145343 bytes_out 0 145343 bytes_in 0 145343 station_ip 83.123.192.125 145343 port 480 145343 unique_id port 145343 remote_ip 10.8.0.154 145348 username barzegar 145348 mac 145348 bytes_out 800368 145348 bytes_in 492801 145348 station_ip 5.119.254.153 145348 port 488 145348 unique_id port 145348 remote_ip 10.8.0.234 145351 username mehdizare 145351 mac 145351 bytes_out 12610 145351 bytes_in 21796 145351 station_ip 5.120.252.120 145351 port 490 145351 unique_id port 145351 remote_ip 10.8.0.90 145354 username sedighe 145354 mac 145354 bytes_out 426703 145354 bytes_in 1732381 145354 station_ip 37.129.255.102 145354 port 452 145354 unique_id port 145354 remote_ip 10.8.0.146 145360 username mirzaei 145360 mac 145360 bytes_out 117996 145360 bytes_in 177055 145360 station_ip 5.120.58.147 145360 port 445 145360 unique_id port 145360 remote_ip 10.8.0.66 145362 username sedighe 145362 mac 145362 bytes_out 3211 145362 bytes_in 5428 145362 station_ip 37.129.255.102 145362 port 485 145362 unique_id port 145362 remote_ip 10.8.0.146 145364 username alihosseini1 145364 mac 145364 bytes_out 0 145364 bytes_in 0 145364 station_ip 5.119.1.115 145364 port 255 145364 unique_id port 145364 remote_ip 10.8.1.106 145367 username hashtadani3 145367 mac 145367 bytes_out 0 145367 bytes_in 0 145367 station_ip 83.123.192.125 145367 port 480 145367 unique_id port 145367 remote_ip 10.8.0.154 145369 username saeed9658 145369 mac 145369 bytes_out 5022 145369 bytes_in 7509 145369 station_ip 5.119.125.222 145369 port 445 145369 unique_id port 145369 remote_ip 10.8.0.62 145375 username hashtadani3 145375 mac 145375 bytes_out 0 145375 bytes_in 0 145375 station_ip 83.123.192.125 145375 port 452 145375 unique_id port 145375 remote_ip 10.8.0.154 145381 username hashtadani3 145381 mac 145381 bytes_out 0 145381 bytes_in 0 145381 station_ip 83.123.192.125 145381 port 445 145381 unique_id port 145381 remote_ip 10.8.0.154 145383 username hamidsalari 145319 bytes_out 0 145319 bytes_in 0 145319 station_ip 5.119.1.115 145319 port 242 145319 unique_id port 145319 remote_ip 10.8.1.106 145323 username moradi 145323 mac 145323 bytes_out 0 145323 bytes_in 0 145323 station_ip 37.129.92.105 145323 port 487 145323 unique_id port 145323 remote_ip 10.8.0.250 145325 username hashtadani3 145325 mac 145325 bytes_out 0 145325 bytes_in 0 145325 station_ip 83.123.192.125 145325 port 480 145325 unique_id port 145325 remote_ip 10.8.0.154 145326 username barzegar 145326 mac 145326 bytes_out 0 145326 bytes_in 0 145326 station_ip 5.119.254.153 145326 port 488 145326 unique_id port 145326 remote_ip 10.8.0.234 145330 username mosi 145330 mac 145330 bytes_out 0 145330 bytes_in 0 145330 station_ip 89.47.129.57 145330 port 470 145330 unique_id port 145330 remote_ip 10.8.0.138 145333 username zotaher 145333 mac 145333 bytes_out 0 145333 bytes_in 0 145333 station_ip 83.123.239.1 145333 port 480 145333 unique_id port 145333 remote_ip 10.8.0.194 145334 username meysam 145334 mac 145334 bytes_out 0 145334 bytes_in 0 145334 station_ip 188.159.254.121 145334 port 259 145334 unique_id port 145334 remote_ip 10.8.1.34 145337 username hashtadani3 145337 mac 145337 bytes_out 0 145337 bytes_in 0 145337 station_ip 83.123.192.125 145337 port 480 145337 unique_id port 145337 remote_ip 10.8.0.154 145340 username hashtadani3 145340 mac 145340 bytes_out 0 145340 bytes_in 0 145340 station_ip 83.123.192.125 145340 port 480 145340 unique_id port 145340 remote_ip 10.8.0.154 145341 username hashtadani3 145341 mac 145341 bytes_out 0 145341 bytes_in 0 145341 station_ip 83.123.192.125 145341 port 480 145341 unique_id port 145341 remote_ip 10.8.0.154 145342 username meysam 145342 mac 145342 bytes_out 0 145342 bytes_in 0 145342 station_ip 188.159.254.121 145342 port 255 145342 unique_id port 145342 remote_ip 10.8.1.34 145345 username hashtadani3 145345 mac 145345 bytes_out 0 145345 bytes_in 0 145345 station_ip 83.123.192.125 145345 port 480 145345 unique_id port 145345 remote_ip 10.8.0.154 145347 username hashtadani3 145347 mac 145347 bytes_out 0 145347 bytes_in 0 145347 station_ip 83.123.192.125 145347 port 480 145347 unique_id port 145347 remote_ip 10.8.0.154 145353 username hamidsalari 145353 kill_reason Another user logged on this global unique id 145353 mac 145353 bytes_out 0 145353 bytes_in 0 145353 station_ip 5.119.244.56 145353 port 469 145353 unique_id port 145357 username fezealinaghi 145357 mac 145357 bytes_out 0 145357 bytes_in 0 145357 station_ip 37.129.249.129 145357 port 451 145357 unique_id port 145358 username alihosseini1 145358 mac 145358 bytes_out 0 145358 bytes_in 0 145358 station_ip 5.119.1.115 145358 port 255 145358 unique_id port 145358 remote_ip 10.8.1.106 145359 username barzegar 145359 mac 145359 bytes_out 25907 145359 bytes_in 59743 145359 station_ip 5.119.254.153 145359 port 480 145359 unique_id port 145359 remote_ip 10.8.0.234 145363 username mirzaei 145363 mac 145363 bytes_out 3024 145363 bytes_in 4761 145363 station_ip 5.119.143.96 145363 port 445 145363 unique_id port 145363 remote_ip 10.8.0.66 145368 username mehdizare 145368 mac 145368 bytes_out 0 145368 bytes_in 0 145368 station_ip 5.120.252.120 145368 port 242 145368 unique_id port 145368 remote_ip 10.8.1.42 145371 username mahdiyehalizadeh 145371 mac 145371 bytes_out 779221 145371 bytes_in 10047841 145371 station_ip 83.122.145.87 145344 bytes_in 0 145344 station_ip 5.120.252.120 145344 port 485 145344 unique_id port 145344 remote_ip 10.8.0.90 145346 username alihosseini1 145346 mac 145346 bytes_out 0 145346 bytes_in 0 145346 station_ip 5.119.1.115 145346 port 242 145346 unique_id port 145346 remote_ip 10.8.1.106 145349 username fezealinaghi 145349 kill_reason Another user logged on this global unique id 145349 mac 145349 bytes_out 0 145349 bytes_in 0 145349 station_ip 37.129.249.129 145349 port 451 145349 unique_id port 145350 username hashtadani3 145350 mac 145350 bytes_out 0 145350 bytes_in 0 145350 station_ip 83.123.192.125 145350 port 242 145350 unique_id port 145350 remote_ip 10.8.1.94 145352 username hashtadani3 145352 mac 145352 bytes_out 0 145352 bytes_in 0 145352 station_ip 83.123.192.125 145352 port 485 145352 unique_id port 145352 remote_ip 10.8.0.154 145355 username mohammadmahdi 145355 kill_reason Another user logged on this global unique id 145355 mac 145355 bytes_out 0 145355 bytes_in 0 145355 station_ip 5.120.181.136 145355 port 470 145355 unique_id port 145355 remote_ip 10.8.0.54 145356 username hashtadani3 145356 mac 145356 bytes_out 0 145356 bytes_in 0 145356 station_ip 83.123.192.125 145356 port 452 145356 unique_id port 145356 remote_ip 10.8.0.154 145361 username hashtadani3 145361 mac 145361 bytes_out 0 145361 bytes_in 0 145361 station_ip 83.123.192.125 145361 port 445 145361 unique_id port 145361 remote_ip 10.8.0.154 145365 username moradi 145365 mac 145365 bytes_out 0 145365 bytes_in 0 145365 station_ip 37.129.92.105 145365 port 245 145365 unique_id port 145365 remote_ip 10.8.1.202 145366 username barzegar 145366 mac 145366 bytes_out 0 145366 bytes_in 0 145366 station_ip 5.119.254.153 145366 port 480 145366 unique_id port 145366 remote_ip 10.8.0.234 145370 username mohammadmahdi 145370 mac 145370 bytes_out 0 145370 bytes_in 0 145370 station_ip 5.120.181.136 145370 port 470 145370 unique_id port 145376 username saeed9658 145376 mac 145376 bytes_out 97139 145376 bytes_in 456575 145376 station_ip 5.119.125.222 145376 port 245 145376 unique_id port 145376 remote_ip 10.8.1.210 145378 username mirzaei 145378 mac 145378 bytes_out 0 145378 bytes_in 0 145378 station_ip 5.113.118.151 145378 port 242 145378 unique_id port 145378 remote_ip 10.8.1.30 145382 username moradi 145382 kill_reason Another user logged on this global unique id 145382 mac 145382 bytes_out 0 145382 bytes_in 0 145382 station_ip 37.129.92.105 145382 port 470 145382 unique_id port 145382 remote_ip 10.8.0.250 145384 username yaghobi 145384 mac 145384 bytes_out 2860365 145384 bytes_in 31689121 145384 station_ip 83.122.182.39 145384 port 485 145384 unique_id port 145384 remote_ip 10.8.0.198 145387 username mirzaei 145387 mac 145387 bytes_out 0 145387 bytes_in 0 145387 station_ip 5.112.18.98 145387 port 255 145387 unique_id port 145387 remote_ip 10.8.1.30 145397 username barzegar 145397 mac 145397 bytes_out 0 145397 bytes_in 0 145397 station_ip 5.119.254.153 145397 port 483 145397 unique_id port 145397 remote_ip 10.8.0.234 145399 username moradi 145399 kill_reason Another user logged on this global unique id 145399 mac 145399 bytes_out 0 145399 bytes_in 0 145399 station_ip 37.129.92.105 145399 port 470 145399 unique_id port 145408 username yaghobi 145408 mac 145408 bytes_out 509863 145408 bytes_in 3390956 145408 station_ip 83.122.182.39 145408 port 445 145408 unique_id port 145408 remote_ip 10.8.0.198 145414 username mirzaei 145414 mac 145371 port 486 145371 unique_id port 145371 remote_ip 10.8.0.82 145372 username kalantary 145372 kill_reason Another user logged on this global unique id 145372 mac 145372 bytes_out 0 145372 bytes_in 0 145372 station_ip 83.122.32.179 145372 port 257 145372 unique_id port 145372 remote_ip 10.8.1.26 145373 username barzegar 145373 mac 145373 bytes_out 2666 145373 bytes_in 5159 145373 station_ip 5.119.254.153 145373 port 445 145373 unique_id port 145373 remote_ip 10.8.0.234 145374 username houshang 145374 mac 145374 bytes_out 51522 145374 bytes_in 64989 145374 station_ip 5.119.56.73 145374 port 452 145374 unique_id port 145374 remote_ip 10.8.0.22 145377 username barzegar 145377 mac 145377 bytes_out 3014 145377 bytes_in 5285 145377 station_ip 5.119.254.153 145377 port 445 145377 unique_id port 145377 remote_ip 10.8.0.234 145379 username kalantary 145379 mac 145379 bytes_out 0 145379 bytes_in 0 145379 station_ip 83.122.32.179 145379 port 257 145379 unique_id port 145380 username mostafa_es78 145380 unique_id port 145380 terminate_cause User-Request 145380 bytes_out 2166220 145380 bytes_in 30939758 145380 station_ip 77.237.186.158 145380 port 15730867 145380 nas_port_type Virtual 145380 remote_ip 5.5.5.72 145389 username kalantary 145389 mac 145389 bytes_out 0 145389 bytes_in 0 145389 station_ip 83.122.32.179 145389 port 245 145389 unique_id port 145389 remote_ip 10.8.1.26 145391 username forozandeh1 145391 mac 145391 bytes_out 0 145391 bytes_in 0 145391 station_ip 37.129.56.80 145391 port 242 145391 unique_id port 145391 remote_ip 10.8.1.250 145392 username barzegar 145392 mac 145392 bytes_out 15811 145392 bytes_in 14993 145392 station_ip 5.119.254.153 145392 port 451 145392 unique_id port 145392 remote_ip 10.8.0.234 145394 username barzegar 145394 mac 145394 bytes_out 0 145394 bytes_in 0 145394 station_ip 5.119.254.153 145394 port 242 145394 unique_id port 145394 remote_ip 10.8.1.174 145395 username malekpoir 145395 mac 145395 bytes_out 0 145395 bytes_in 0 145395 station_ip 5.119.97.234 145395 port 482 145395 unique_id port 145400 username yaghobi 145400 mac 145400 bytes_out 1556299 145400 bytes_in 13805585 145400 station_ip 83.122.182.39 145400 port 452 145400 unique_id port 145400 remote_ip 10.8.0.198 145401 username sedighe 145401 mac 145401 bytes_out 0 145401 bytes_in 0 145401 station_ip 83.123.251.5 145401 port 255 145401 unique_id port 145401 remote_ip 10.8.1.78 145403 username moradi 145403 mac 145403 bytes_out 0 145403 bytes_in 0 145403 station_ip 37.129.92.105 145403 port 470 145403 unique_id port 145407 username alihosseini1 145407 mac 145407 bytes_out 0 145407 bytes_in 0 145407 station_ip 5.120.119.165 145407 port 452 145407 unique_id port 145407 remote_ip 10.8.0.166 145409 username mirzaei 145409 mac 145409 bytes_out 4660 145409 bytes_in 7672 145409 station_ip 5.120.115.75 145409 port 255 145409 unique_id port 145409 remote_ip 10.8.1.30 145412 username vanila 145412 mac 145412 bytes_out 26574 145412 bytes_in 41193 145412 station_ip 37.129.30.220 145412 port 445 145412 unique_id port 145412 remote_ip 10.8.0.178 145413 username saeed9658 145413 mac 145413 bytes_out 0 145413 bytes_in 0 145413 station_ip 5.119.125.222 145413 port 242 145413 unique_id port 145413 remote_ip 10.8.1.210 145415 username mirzaei 145415 mac 145415 bytes_out 0 145415 bytes_in 0 145415 station_ip 5.120.115.75 145415 port 242 145415 unique_id port 145383 kill_reason Another user logged on this global unique id 145383 mac 145383 bytes_out 0 145383 bytes_in 0 145383 station_ip 5.119.244.56 145383 port 469 145383 unique_id port 145385 username mirzaei 145385 mac 145385 bytes_out 0 145385 bytes_in 0 145385 station_ip 5.112.18.98 145385 port 255 145385 unique_id port 145385 remote_ip 10.8.1.30 145386 username malekpoir 145386 kill_reason Another user logged on this global unique id 145386 mac 145386 bytes_out 0 145386 bytes_in 0 145386 station_ip 5.119.97.234 145386 port 482 145386 unique_id port 145386 remote_ip 10.8.0.58 145388 username sedighe 145388 mac 145388 bytes_out 30218 145388 bytes_in 47119 145388 station_ip 83.123.251.5 145388 port 451 145388 unique_id port 145388 remote_ip 10.8.0.146 145390 username kordestani 145390 mac 145390 bytes_out 0 145390 bytes_in 0 145390 station_ip 151.235.117.135 145390 port 483 145390 unique_id port 145390 remote_ip 10.8.0.134 145393 username mohammadjavad 145393 mac 145393 bytes_out 118041 145393 bytes_in 173572 145393 station_ip 83.123.6.164 145393 port 487 145393 unique_id port 145393 remote_ip 10.8.0.142 145396 username fezealinaghi 145396 mac 145396 bytes_out 216619 145396 bytes_in 1241489 145396 station_ip 83.123.17.232 145396 port 445 145396 unique_id port 145396 remote_ip 10.8.0.78 145398 username mirzaei 145398 mac 145398 bytes_out 2366 145398 bytes_in 4537 145398 station_ip 5.112.18.98 145398 port 451 145398 unique_id port 145398 remote_ip 10.8.0.66 145402 username hamidsalari 145402 mac 145402 bytes_out 0 145402 bytes_in 0 145402 station_ip 5.119.244.56 145402 port 469 145402 unique_id port 145404 username sedighe 145404 mac 145404 bytes_out 20064 145404 bytes_in 35559 145404 station_ip 83.123.181.4 145404 port 257 145404 unique_id port 145404 remote_ip 10.8.1.78 145405 username alihosseini1 145405 mac 145405 bytes_out 0 145405 bytes_in 0 145405 station_ip 5.120.119.165 145405 port 245 145405 unique_id port 145405 remote_ip 10.8.1.106 145406 username sedighe 145406 mac 145406 bytes_out 0 145406 bytes_in 0 145406 station_ip 83.123.181.4 145406 port 255 145406 unique_id port 145406 remote_ip 10.8.1.78 145410 username barzegar 145410 mac 145410 bytes_out 0 145410 bytes_in 0 145410 station_ip 5.119.254.153 145410 port 255 145410 unique_id port 145410 remote_ip 10.8.1.174 145411 username barzegar 145411 mac 145411 bytes_out 0 145411 bytes_in 0 145411 station_ip 5.119.254.153 145411 port 255 145411 unique_id port 145411 remote_ip 10.8.1.174 145417 username forozandeh1 145417 mac 145417 bytes_out 0 145417 bytes_in 0 145417 station_ip 83.122.86.70 145417 port 242 145417 unique_id port 145417 remote_ip 10.8.1.250 145418 username vanila 145418 mac 145418 bytes_out 4602255 145418 bytes_in 556604 145418 station_ip 37.129.30.220 145418 port 469 145418 unique_id port 145418 remote_ip 10.8.0.178 145422 username aminvpn 145422 mac 145422 bytes_out 0 145422 bytes_in 0 145422 station_ip 5.120.105.123 145422 port 445 145422 unique_id port 145422 remote_ip 10.8.0.14 145423 username aminvpn 145423 mac 145423 bytes_out 0 145423 bytes_in 0 145423 station_ip 37.129.91.170 145423 port 469 145423 unique_id port 145423 remote_ip 10.8.0.14 145432 username hashtadani3 145432 mac 145432 bytes_out 0 145432 bytes_in 0 145432 station_ip 83.123.192.125 145432 port 480 145432 unique_id port 145432 remote_ip 10.8.0.154 145434 username sabaghnezhad 145434 mac 145434 bytes_out 26986 145414 bytes_out 0 145414 bytes_in 0 145414 station_ip 5.120.115.75 145414 port 255 145414 unique_id port 145414 remote_ip 10.8.1.30 145426 username aminvpn 145426 mac 145426 bytes_out 0 145426 bytes_in 0 145426 station_ip 5.120.105.123 145426 port 445 145426 unique_id port 145426 remote_ip 10.8.0.14 145427 username aminvpn 145427 mac 145427 bytes_out 0 145427 bytes_in 0 145427 station_ip 37.129.91.170 145427 port 469 145427 unique_id port 145427 remote_ip 10.8.0.14 145430 username sedighe 145430 mac 145430 bytes_out 131979 145430 bytes_in 146268 145430 station_ip 83.123.181.4 145430 port 242 145430 unique_id port 145430 remote_ip 10.8.1.78 145431 username sabaghnezhad 145431 mac 145431 bytes_out 80506 145431 bytes_in 228603 145431 station_ip 5.214.125.99 145431 port 255 145431 unique_id port 145431 remote_ip 10.8.1.130 145433 username hashtadani3 145433 mac 145433 bytes_out 0 145433 bytes_in 0 145433 station_ip 83.123.192.125 145433 port 480 145433 unique_id port 145433 remote_ip 10.8.0.154 145436 username hashtadani3 145436 mac 145436 bytes_out 0 145436 bytes_in 0 145436 station_ip 83.123.192.125 145436 port 483 145436 unique_id port 145436 remote_ip 10.8.0.154 145444 username hashtadani3 145444 mac 145444 bytes_out 0 145444 bytes_in 0 145444 station_ip 83.123.192.125 145444 port 470 145444 unique_id port 145444 remote_ip 10.8.0.154 145446 username hashtadani3 145446 mac 145446 bytes_out 0 145446 bytes_in 0 145446 station_ip 83.123.192.125 145446 port 483 145446 unique_id port 145446 remote_ip 10.8.0.154 145447 username aminvpn 145447 unique_id port 145447 terminate_cause Lost-Carrier 145447 bytes_out 1001123 145447 bytes_in 33896503 145447 station_ip 5.233.49.34 145447 port 15730869 145447 nas_port_type Virtual 145447 remote_ip 5.5.5.105 145451 username mosi 145451 mac 145451 bytes_out 0 145451 bytes_in 0 145451 station_ip 2.183.150.162 145451 port 489 145451 unique_id port 145451 remote_ip 10.8.0.138 145453 username sedighe 145453 mac 145453 bytes_out 0 145453 bytes_in 0 145453 station_ip 83.122.53.141 145453 port 470 145453 unique_id port 145453 remote_ip 10.8.0.146 145454 username zotaher 145454 kill_reason Another user logged on this global unique id 145454 mac 145454 bytes_out 0 145454 bytes_in 0 145454 station_ip 83.122.178.45 145454 port 480 145454 unique_id port 145456 username hashtadani3 145456 mac 145456 bytes_out 0 145456 bytes_in 0 145456 station_ip 83.123.192.125 145456 port 470 145456 unique_id port 145456 remote_ip 10.8.0.154 145457 username hashtadani3 145457 mac 145457 bytes_out 0 145457 bytes_in 0 145457 station_ip 83.123.192.125 145457 port 257 145457 unique_id port 145457 remote_ip 10.8.1.94 145459 username mirzaei 145459 mac 145459 bytes_out 0 145459 bytes_in 0 145459 station_ip 5.119.206.48 145459 port 242 145459 unique_id port 145459 remote_ip 10.8.1.30 145467 username zotaher 145467 kill_reason Another user logged on this global unique id 145467 mac 145467 bytes_out 0 145467 bytes_in 0 145467 station_ip 83.122.178.45 145467 port 480 145467 unique_id port 145469 username godarzi 145469 kill_reason Another user logged on this global unique id 145469 mac 145469 bytes_out 0 145469 bytes_in 0 145469 station_ip 5.202.5.1 145469 port 470 145469 unique_id port 145469 remote_ip 10.8.0.174 145471 username zotaher 145471 kill_reason Another user logged on this global unique id 145471 mac 145471 bytes_out 0 145471 bytes_in 0 145471 station_ip 83.122.178.45 145471 port 480 145415 remote_ip 10.8.1.30 145416 username sedighe 145416 mac 145416 bytes_out 0 145416 bytes_in 0 145416 station_ip 83.123.181.4 145416 port 245 145416 unique_id port 145416 remote_ip 10.8.1.78 145419 username sedighe 145419 mac 145419 bytes_out 0 145419 bytes_in 0 145419 station_ip 83.123.181.4 145419 port 242 145419 unique_id port 145419 remote_ip 10.8.1.78 145420 username sabaghnezhad 145420 mac 145420 bytes_out 0 145420 bytes_in 0 145420 station_ip 5.214.125.99 145420 port 245 145420 unique_id port 145420 remote_ip 10.8.1.130 145421 username barzegar 145421 mac 145421 bytes_out 0 145421 bytes_in 0 145421 station_ip 5.119.254.153 145421 port 245 145421 unique_id port 145421 remote_ip 10.8.1.174 145424 username aminvpn 145424 mac 145424 bytes_out 0 145424 bytes_in 0 145424 station_ip 5.120.105.123 145424 port 445 145424 unique_id port 145424 remote_ip 10.8.0.14 145425 username aminvpn 145425 mac 145425 bytes_out 0 145425 bytes_in 0 145425 station_ip 37.129.91.170 145425 port 469 145425 unique_id port 145425 remote_ip 10.8.0.14 145428 username mirzaei 145428 mac 145428 bytes_out 14085 145428 bytes_in 15702 145428 station_ip 5.114.181.172 145428 port 245 145428 unique_id port 145428 remote_ip 10.8.1.30 145429 username aminvpn 145429 mac 145429 bytes_out 0 145429 bytes_in 0 145429 station_ip 5.120.105.123 145429 port 445 145429 unique_id port 145429 remote_ip 10.8.0.14 145435 username barzegar 145435 mac 145435 bytes_out 0 145435 bytes_in 0 145435 station_ip 5.119.254.153 145435 port 480 145435 unique_id port 145435 remote_ip 10.8.0.234 145437 username hamidsalari 145437 kill_reason Another user logged on this global unique id 145437 mac 145437 bytes_out 0 145437 bytes_in 0 145437 station_ip 5.119.244.56 145437 port 451 145437 unique_id port 145437 remote_ip 10.8.0.222 145440 username vanila 145440 mac 145440 bytes_out 0 145440 bytes_in 0 145440 station_ip 37.129.30.220 145440 port 483 145440 unique_id port 145440 remote_ip 10.8.0.178 145442 username sedighe 145442 mac 145442 bytes_out 0 145442 bytes_in 0 145442 station_ip 113.203.78.49 145442 port 485 145442 unique_id port 145442 remote_ip 10.8.0.146 145443 username hashtadani3 145443 mac 145443 bytes_out 0 145443 bytes_in 0 145443 station_ip 83.123.192.125 145443 port 470 145443 unique_id port 145443 remote_ip 10.8.0.154 145445 username hashtadani3 145445 mac 145445 bytes_out 0 145445 bytes_in 0 145445 station_ip 83.123.192.125 145445 port 470 145445 unique_id port 145445 remote_ip 10.8.0.154 145448 username barzegar 145448 mac 145448 bytes_out 0 145448 bytes_in 0 145448 station_ip 5.119.228.217 145448 port 485 145448 unique_id port 145448 remote_ip 10.8.0.234 145450 username vanila 145450 mac 145450 bytes_out 0 145450 bytes_in 0 145450 station_ip 83.123.9.246 145450 port 483 145450 unique_id port 145450 remote_ip 10.8.0.178 145458 username hashtadani3 145458 mac 145458 bytes_out 0 145458 bytes_in 0 145458 station_ip 83.123.192.125 145458 port 485 145458 unique_id port 145458 remote_ip 10.8.0.154 145460 username hashtadani3 145460 mac 145460 bytes_out 0 145460 bytes_in 0 145460 station_ip 83.123.192.125 145460 port 485 145460 unique_id port 145460 remote_ip 10.8.0.154 145463 username hashtadani3 145463 mac 145463 bytes_out 0 145463 bytes_in 0 145463 station_ip 83.123.192.125 145463 port 485 145463 unique_id port 145463 remote_ip 10.8.0.154 145434 bytes_in 144268 145434 station_ip 5.214.125.99 145434 port 242 145434 unique_id port 145434 remote_ip 10.8.1.130 145438 username hashtadani3 145438 mac 145438 bytes_out 0 145438 bytes_in 0 145438 station_ip 83.123.192.125 145438 port 485 145438 unique_id port 145438 remote_ip 10.8.0.154 145439 username sedighe 145439 mac 145439 bytes_out 92294 145439 bytes_in 135878 145439 station_ip 83.123.181.4 145439 port 470 145439 unique_id port 145439 remote_ip 10.8.0.146 145441 username aminvpn 145441 unique_id port 145441 terminate_cause User-Request 145441 bytes_out 13201000 145441 bytes_in 189871042 145441 station_ip 5.120.92.93 145441 port 15730864 145441 nas_port_type Virtual 145441 remote_ip 5.5.5.51 145449 username zotaher 145449 kill_reason Another user logged on this global unique id 145449 mac 145449 bytes_out 0 145449 bytes_in 0 145449 station_ip 83.122.178.45 145449 port 480 145449 unique_id port 145449 remote_ip 10.8.0.194 145452 username hashtadani3 145452 mac 145452 bytes_out 0 145452 bytes_in 0 145452 station_ip 83.123.192.125 145452 port 483 145452 unique_id port 145452 remote_ip 10.8.0.154 145455 username mohammadjavad 145455 mac 145455 bytes_out 0 145455 bytes_in 0 145455 station_ip 37.129.144.176 145455 port 470 145455 unique_id port 145455 remote_ip 10.8.0.142 145461 username hashtadani3 145461 mac 145461 bytes_out 0 145461 bytes_in 0 145461 station_ip 83.123.192.125 145461 port 485 145461 unique_id port 145461 remote_ip 10.8.0.154 145462 username zotaher 145462 kill_reason Another user logged on this global unique id 145462 mac 145462 bytes_out 0 145462 bytes_in 0 145462 station_ip 83.122.178.45 145462 port 480 145462 unique_id port 145464 username mohammadmahdi 145464 mac 145464 bytes_out 0 145464 bytes_in 0 145464 station_ip 5.120.181.136 145464 port 483 145464 unique_id port 145464 remote_ip 10.8.0.54 145466 username sedighe 145466 mac 145466 bytes_out 1761205 145466 bytes_in 18567347 145466 station_ip 83.122.53.141 145466 port 255 145466 unique_id port 145466 remote_ip 10.8.1.78 145468 username hashtadani3 145468 mac 145468 bytes_out 0 145468 bytes_in 0 145468 station_ip 83.123.192.125 145468 port 485 145468 unique_id port 145468 remote_ip 10.8.0.154 145470 username mirzaei 145470 mac 145470 bytes_out 0 145470 bytes_in 0 145470 station_ip 5.119.206.48 145470 port 483 145470 unique_id port 145470 remote_ip 10.8.0.66 145473 username kalantary 145473 mac 145473 bytes_out 416101 145473 bytes_in 1426460 145473 station_ip 83.122.24.219 145473 port 242 145473 unique_id port 145473 remote_ip 10.8.1.26 145476 username mirzaei 145476 mac 145476 bytes_out 0 145476 bytes_in 0 145476 station_ip 5.119.206.48 145476 port 485 145476 unique_id port 145476 remote_ip 10.8.0.66 145477 username fezealinaghi 145477 kill_reason Another user logged on this global unique id 145477 mac 145477 bytes_out 0 145477 bytes_in 0 145477 station_ip 83.123.17.232 145477 port 482 145477 unique_id port 145477 remote_ip 10.8.0.78 145479 username zotaher 145479 mac 145479 bytes_out 0 145479 bytes_in 0 145479 station_ip 83.122.178.45 145479 port 480 145479 unique_id port 145481 username barzegar 145481 mac 145481 bytes_out 0 145481 bytes_in 0 145481 station_ip 5.119.55.210 145481 port 480 145481 unique_id port 145481 remote_ip 10.8.0.234 145487 username barzegar 145487 mac 145487 bytes_out 19546 145487 bytes_in 32627 145487 station_ip 5.119.55.210 145487 port 242 145487 unique_id port 145487 remote_ip 10.8.1.174 145465 username saeed9658 145465 mac 145465 bytes_out 906616 145465 bytes_in 9483382 145465 station_ip 5.119.125.222 145465 port 245 145465 unique_id port 145465 remote_ip 10.8.1.210 145472 username khalili 145472 mac 145472 bytes_out 3469869 145472 bytes_in 45294657 145472 station_ip 5.119.28.218 145472 port 254 145472 unique_id port 145472 remote_ip 10.8.1.18 145474 username barzegar 145474 mac 145474 bytes_out 0 145474 bytes_in 0 145474 station_ip 5.119.55.210 145474 port 489 145474 unique_id port 145474 remote_ip 10.8.0.234 145478 username alihosseini1 145478 mac 145478 bytes_out 0 145478 bytes_in 0 145478 station_ip 5.120.119.165 145478 port 452 145478 unique_id port 145478 remote_ip 10.8.0.166 145480 username hashtadani3 145480 kill_reason Another user logged on this global unique id 145480 mac 145480 bytes_out 0 145480 bytes_in 0 145480 station_ip 83.123.192.125 145480 port 483 145480 unique_id port 145480 remote_ip 10.8.0.154 145485 username alihosseini1 145485 mac 145485 bytes_out 0 145485 bytes_in 0 145485 station_ip 5.120.119.165 145485 port 245 145485 unique_id port 145485 remote_ip 10.8.1.106 145494 username hashtadani3 145494 mac 145494 bytes_out 0 145494 bytes_in 0 145494 station_ip 83.123.192.125 145494 port 445 145494 unique_id port 145494 remote_ip 10.8.0.154 145497 username barzegar 145497 mac 145497 bytes_out 0 145497 bytes_in 0 145497 station_ip 5.119.55.210 145497 port 242 145497 unique_id port 145497 remote_ip 10.8.1.174 145503 username mohammadjavad 145503 mac 145503 bytes_out 0 145503 bytes_in 0 145503 station_ip 83.123.26.201 145503 port 489 145503 unique_id port 145503 remote_ip 10.8.0.142 145505 username hashtadani3 145505 mac 145505 bytes_out 0 145505 bytes_in 0 145505 station_ip 83.123.192.125 145505 port 242 145505 unique_id port 145505 remote_ip 10.8.1.94 145510 username fezealinaghi 145510 kill_reason Another user logged on this global unique id 145510 mac 145510 bytes_out 0 145510 bytes_in 0 145510 station_ip 83.123.17.232 145510 port 482 145510 unique_id port 145512 username godarzi 145512 mac 145512 bytes_out 0 145512 bytes_in 0 145512 station_ip 5.202.5.1 145512 port 470 145512 unique_id port 145518 username aminvpn 145518 unique_id port 145518 terminate_cause User-Request 145518 bytes_out 12544404 145518 bytes_in 405171205 145518 station_ip 31.57.128.244 145518 port 15730871 145518 nas_port_type Virtual 145518 remote_ip 5.5.5.0 145519 username meysam 145519 kill_reason Another user logged on this global unique id 145519 mac 145519 bytes_out 0 145519 bytes_in 0 145519 station_ip 188.158.48.89 145519 port 255 145519 unique_id port 145519 remote_ip 10.8.1.34 145523 username yahodi 145523 mac 145523 bytes_out 0 145523 bytes_in 0 145523 station_ip 37.129.57.19 145523 port 470 145523 unique_id port 145523 remote_ip 10.8.0.202 145525 username mosi 145525 kill_reason Another user logged on this global unique id 145525 mac 145525 bytes_out 0 145525 bytes_in 0 145525 station_ip 2.183.150.162 145525 port 485 145525 unique_id port 145526 username tahmasebi 145526 mac 145526 bytes_out 0 145526 bytes_in 0 145526 station_ip 5.112.126.231 145526 port 487 145526 unique_id port 145526 remote_ip 10.8.0.42 145532 username rezaei 145532 kill_reason Another user logged on this global unique id 145532 mac 145532 bytes_out 0 145532 bytes_in 0 145532 station_ip 5.119.53.199 145532 port 488 145532 unique_id port 145532 remote_ip 10.8.0.230 145535 username hashtadani3 145535 kill_reason Another user logged on this global unique id 145535 mac 145471 unique_id port 145475 username alihosseini1 145475 mac 145475 bytes_out 1856707 145475 bytes_in 1917898 145475 station_ip 5.120.119.165 145475 port 452 145475 unique_id port 145475 remote_ip 10.8.0.166 145482 username forozandeh1 145482 mac 145482 bytes_out 309544 145482 bytes_in 1167863 145482 station_ip 113.203.108.48 145482 port 242 145482 unique_id port 145482 remote_ip 10.8.1.250 145483 username alihosseini1 145483 mac 145483 bytes_out 3278 145483 bytes_in 5604 145483 station_ip 5.120.119.165 145483 port 242 145483 unique_id port 145483 remote_ip 10.8.1.106 145484 username sabaghnezhad 145484 mac 145484 bytes_out 0 145484 bytes_in 0 145484 station_ip 5.217.176.232 145484 port 242 145484 unique_id port 145484 remote_ip 10.8.1.130 145486 username barzegar 145486 mac 145486 bytes_out 3172 145486 bytes_in 5481 145486 station_ip 5.119.55.210 145486 port 485 145486 unique_id port 145486 remote_ip 10.8.0.234 145489 username Mahin 145489 mac 145489 bytes_out 53281 145489 bytes_in 187930 145489 station_ip 5.119.153.234 145489 port 480 145489 unique_id port 145489 remote_ip 10.8.0.158 145491 username yahodi 145491 kill_reason Another user logged on this global unique id 145491 mac 145491 bytes_out 0 145491 bytes_in 0 145491 station_ip 37.129.76.127 145491 port 480 145491 unique_id port 145491 remote_ip 10.8.0.202 145492 username rajaei 145492 mac 145492 bytes_out 0 145492 bytes_in 0 145492 station_ip 89.32.109.112 145492 port 445 145492 unique_id port 145492 remote_ip 10.8.0.34 145495 username mosi 145495 kill_reason Another user logged on this global unique id 145495 mac 145495 bytes_out 0 145495 bytes_in 0 145495 station_ip 2.183.150.162 145495 port 485 145495 unique_id port 145495 remote_ip 10.8.0.138 145500 username fezealinaghi 145500 kill_reason Another user logged on this global unique id 145500 mac 145500 bytes_out 0 145500 bytes_in 0 145500 station_ip 83.123.17.232 145500 port 482 145500 unique_id port 145501 username yahodi 145501 mac 145501 bytes_out 0 145501 bytes_in 0 145501 station_ip 37.129.76.127 145501 port 480 145501 unique_id port 145504 username hashtadani3 145504 mac 145504 bytes_out 0 145504 bytes_in 0 145504 station_ip 83.123.192.125 145504 port 242 145504 unique_id port 145504 remote_ip 10.8.1.94 145508 username alireza 145508 kill_reason Relative expiration date has reached 145508 unique_id port 145508 bytes_out 0 145508 bytes_in 0 145508 station_ip 5.120.35.174 145508 port 15730872 145508 nas_port_type Virtual 145514 username barzegar 145514 mac 145514 bytes_out 45304 145514 bytes_in 112868 145514 station_ip 5.119.55.210 145514 port 245 145514 unique_id port 145514 remote_ip 10.8.1.174 145517 username vanila 145517 mac 145517 bytes_out 9491963 145517 bytes_in 1119746 145517 station_ip 83.123.9.246 145517 port 480 145517 unique_id port 145517 remote_ip 10.8.0.178 145520 username barzegar 145520 kill_reason Maximum check online fails reached 145520 mac 145520 bytes_out 0 145520 bytes_in 0 145520 station_ip 5.119.55.210 145520 port 480 145520 unique_id port 145521 username tahmasebi 145521 kill_reason Maximum check online fails reached 145521 mac 145521 bytes_out 0 145521 bytes_in 0 145521 station_ip 5.114.144.212 145521 port 483 145521 unique_id port 145528 username kalantary 145528 mac 145528 bytes_out 0 145528 bytes_in 0 145528 station_ip 83.122.67.155 145528 port 245 145528 unique_id port 145528 remote_ip 10.8.1.26 145530 username barzegar 145530 mac 145530 bytes_out 0 145530 bytes_in 0 145488 username mohammadjavad 145488 mac 145488 bytes_out 1206402 145488 bytes_in 23579561 145488 station_ip 83.123.26.201 145488 port 487 145488 unique_id port 145488 remote_ip 10.8.0.142 145490 username kordestani 145490 mac 145490 bytes_out 2352916 145490 bytes_in 34918762 145490 station_ip 151.235.117.135 145490 port 445 145490 unique_id port 145490 remote_ip 10.8.0.134 145493 username hashtadani3 145493 mac 145493 bytes_out 0 145493 bytes_in 0 145493 station_ip 83.123.192.125 145493 port 483 145493 unique_id port 145496 username barzegar 145496 mac 145496 bytes_out 0 145496 bytes_in 0 145496 station_ip 5.119.55.210 145496 port 242 145496 unique_id port 145496 remote_ip 10.8.1.174 145498 username hashtadani3 145498 mac 145498 bytes_out 0 145498 bytes_in 0 145498 station_ip 83.123.192.125 145498 port 445 145498 unique_id port 145498 remote_ip 10.8.0.154 145499 username hashtadani3 145499 mac 145499 bytes_out 0 145499 bytes_in 0 145499 station_ip 83.123.192.125 145499 port 242 145499 unique_id port 145499 remote_ip 10.8.1.94 145502 username hashtadani3 145502 mac 145502 bytes_out 0 145502 bytes_in 0 145502 station_ip 83.123.192.125 145502 port 242 145502 unique_id port 145502 remote_ip 10.8.1.94 145506 username hashtadani3 145506 mac 145506 bytes_out 0 145506 bytes_in 0 145506 station_ip 83.123.192.125 145506 port 242 145506 unique_id port 145506 remote_ip 10.8.1.94 145507 username mohammadjavad 145507 mac 145507 bytes_out 1956 145507 bytes_in 4437 145507 station_ip 83.123.26.201 145507 port 445 145507 unique_id port 145507 remote_ip 10.8.0.142 145509 username mohammadjavad 145509 mac 145509 bytes_out 0 145509 bytes_in 0 145509 station_ip 83.123.26.201 145509 port 487 145509 unique_id port 145509 remote_ip 10.8.0.142 145511 username kalantary 145511 mac 145511 bytes_out 449265 145511 bytes_in 1806143 145511 station_ip 83.122.111.223 145511 port 254 145511 unique_id port 145511 remote_ip 10.8.1.26 145513 username forozandeh1 145513 mac 145513 bytes_out 0 145513 bytes_in 0 145513 station_ip 37.129.187.10 145513 port 483 145513 unique_id port 145513 remote_ip 10.8.0.130 145515 username mohammadjavad 145515 mac 145515 bytes_out 0 145515 bytes_in 0 145515 station_ip 83.123.26.201 145515 port 445 145515 unique_id port 145515 remote_ip 10.8.0.142 145516 username mansour 145516 mac 145516 bytes_out 0 145516 bytes_in 0 145516 station_ip 5.202.132.13 145516 port 488 145516 unique_id port 145516 remote_ip 10.8.0.30 145522 username meysam 145522 mac 145522 bytes_out 0 145522 bytes_in 0 145522 station_ip 188.158.48.89 145522 port 255 145522 unique_id port 145524 username barzegar 145524 mac 145524 bytes_out 0 145524 bytes_in 0 145524 station_ip 5.119.55.210 145524 port 245 145524 unique_id port 145524 remote_ip 10.8.1.174 145527 username tahmasebi 145527 mac 145527 bytes_out 5064 145527 bytes_in 13487 145527 station_ip 5.112.126.231 145527 port 488 145527 unique_id port 145527 remote_ip 10.8.0.42 145529 username mohammadjavad 145529 mac 145529 bytes_out 0 145529 bytes_in 0 145529 station_ip 83.122.57.227 145529 port 490 145529 unique_id port 145529 remote_ip 10.8.0.142 145531 username moradi 145531 mac 145531 bytes_out 0 145531 bytes_in 0 145531 station_ip 46.225.208.84 145531 port 470 145531 unique_id port 145531 remote_ip 10.8.0.250 145541 username mosi 145541 kill_reason Another user logged on this global unique id 145541 mac 145541 bytes_out 0 145530 station_ip 5.119.55.210 145530 port 490 145530 unique_id port 145530 remote_ip 10.8.0.234 145533 username zotaher 145533 mac 145533 bytes_out 0 145533 bytes_in 0 145533 station_ip 83.122.248.89 145533 port 487 145533 unique_id port 145533 remote_ip 10.8.0.194 145534 username barzegar 145534 mac 145534 bytes_out 0 145534 bytes_in 0 145534 station_ip 5.119.55.210 145534 port 470 145534 unique_id port 145534 remote_ip 10.8.0.234 145536 username tahmasebi 145536 mac 145536 bytes_out 0 145536 bytes_in 0 145536 station_ip 5.112.126.231 145536 port 489 145536 unique_id port 145536 remote_ip 10.8.0.42 145537 username barzegar 145537 mac 145537 bytes_out 0 145537 bytes_in 0 145537 station_ip 5.119.55.210 145537 port 470 145537 unique_id port 145537 remote_ip 10.8.0.234 145538 username barzegar 145538 mac 145538 bytes_out 0 145538 bytes_in 0 145538 station_ip 5.119.55.210 145538 port 487 145538 unique_id port 145538 remote_ip 10.8.0.234 145542 username barzegar 145542 mac 145542 bytes_out 0 145542 bytes_in 0 145542 station_ip 5.119.55.210 145542 port 487 145542 unique_id port 145542 remote_ip 10.8.0.234 145543 username fezealinaghi 145543 kill_reason Another user logged on this global unique id 145543 mac 145543 bytes_out 0 145543 bytes_in 0 145543 station_ip 83.123.17.232 145543 port 482 145543 unique_id port 145546 username moradi 145546 mac 145546 bytes_out 89917 145546 bytes_in 1718514 145546 station_ip 5.202.30.49 145546 port 487 145546 unique_id port 145546 remote_ip 10.8.0.250 145547 username barzegar 145547 mac 145547 bytes_out 0 145547 bytes_in 0 145547 station_ip 5.119.55.210 145547 port 487 145547 unique_id port 145547 remote_ip 10.8.0.234 145548 username fezealinaghi 145548 kill_reason Another user logged on this global unique id 145548 mac 145548 bytes_out 0 145548 bytes_in 0 145548 station_ip 83.123.17.232 145548 port 482 145548 unique_id port 145553 username hashtadani3 145553 mac 145553 bytes_out 0 145553 bytes_in 0 145553 station_ip 83.123.192.125 145553 port 242 145553 unique_id port 145555 username hashtadani3 145555 mac 145555 bytes_out 0 145555 bytes_in 0 145555 station_ip 83.123.192.125 145555 port 489 145555 unique_id port 145555 remote_ip 10.8.0.154 145557 username hashtadani3 145557 mac 145557 bytes_out 0 145557 bytes_in 0 145557 station_ip 83.123.192.125 145557 port 489 145557 unique_id port 145557 remote_ip 10.8.0.154 145562 username mosi 145562 mac 145562 bytes_out 0 145562 bytes_in 0 145562 station_ip 2.183.150.162 145562 port 485 145562 unique_id port 145565 username hashtadani3 145565 mac 145565 bytes_out 0 145565 bytes_in 0 145565 station_ip 83.123.192.125 145565 port 485 145565 unique_id port 145565 remote_ip 10.8.0.154 145567 username hashtadani3 145567 mac 145567 bytes_out 0 145567 bytes_in 0 145567 station_ip 83.123.192.125 145567 port 485 145567 unique_id port 145567 remote_ip 10.8.0.154 145570 username saeed9658 145570 mac 145570 bytes_out 864279 145570 bytes_in 7987414 145570 station_ip 5.120.175.153 145570 port 255 145570 unique_id port 145570 remote_ip 10.8.1.210 145571 username hashtadani3 145571 mac 145571 bytes_out 0 145571 bytes_in 0 145571 station_ip 83.123.192.125 145571 port 485 145571 unique_id port 145571 remote_ip 10.8.0.154 145575 username hashtadani3 145575 mac 145575 bytes_out 0 145575 bytes_in 0 145575 station_ip 83.123.192.125 145575 port 470 145575 unique_id port 145535 bytes_out 0 145535 bytes_in 0 145535 station_ip 83.123.192.125 145535 port 242 145535 unique_id port 145535 remote_ip 10.8.1.94 145539 username barzegar 145539 mac 145539 bytes_out 0 145539 bytes_in 0 145539 station_ip 5.119.55.210 145539 port 487 145539 unique_id port 145539 remote_ip 10.8.0.234 145540 username barzegar 145540 mac 145540 bytes_out 0 145540 bytes_in 0 145540 station_ip 5.119.55.210 145540 port 487 145540 unique_id port 145540 remote_ip 10.8.0.234 145549 username rezaei 145549 mac 145549 bytes_out 0 145549 bytes_in 0 145549 station_ip 5.119.53.199 145549 port 488 145549 unique_id port 145554 username hashtadani3 145554 mac 145554 bytes_out 0 145554 bytes_in 0 145554 station_ip 83.123.192.125 145554 port 242 145554 unique_id port 145554 remote_ip 10.8.1.94 145558 username tahmasebi 145558 mac 145558 bytes_out 0 145558 bytes_in 0 145558 station_ip 5.112.126.231 145558 port 254 145558 unique_id port 145558 remote_ip 10.8.1.90 145561 username hashtadani3 145561 mac 145561 bytes_out 0 145561 bytes_in 0 145561 station_ip 83.123.192.125 145561 port 486 145561 unique_id port 145561 remote_ip 10.8.0.154 145564 username hashtadani3 145564 mac 145564 bytes_out 0 145564 bytes_in 0 145564 station_ip 83.123.192.125 145564 port 485 145564 unique_id port 145564 remote_ip 10.8.0.154 145566 username hashtadani3 145566 mac 145566 bytes_out 0 145566 bytes_in 0 145566 station_ip 83.123.192.125 145566 port 485 145566 unique_id port 145566 remote_ip 10.8.0.154 145572 username farhad2 145572 mac 145572 bytes_out 0 145572 bytes_in 0 145572 station_ip 5.120.152.211 145572 port 487 145572 unique_id port 145572 remote_ip 10.8.0.190 145574 username hashtadani3 145574 mac 145574 bytes_out 0 145574 bytes_in 0 145574 station_ip 83.123.192.125 145574 port 470 145574 unique_id port 145574 remote_ip 10.8.0.154 145580 username hashtadani3 145580 kill_reason Maximum check online fails reached 145580 mac 145580 bytes_out 0 145580 bytes_in 0 145580 station_ip 83.123.192.125 145580 port 257 145580 unique_id port 145584 username farhad2 145584 mac 145584 bytes_out 228144 145584 bytes_in 1209300 145584 station_ip 5.120.152.211 145584 port 486 145584 unique_id port 145584 remote_ip 10.8.0.190 145587 username sedighe 145587 mac 145587 bytes_out 0 145587 bytes_in 0 145587 station_ip 113.203.13.216 145587 port 488 145587 unique_id port 145587 remote_ip 10.8.0.146 145589 username sedighe 145589 mac 145589 bytes_out 1797 145589 bytes_in 4216 145589 station_ip 113.203.13.216 145589 port 470 145589 unique_id port 145589 remote_ip 10.8.0.146 145594 username sedighe 145594 mac 145594 bytes_out 4308 145594 bytes_in 4928 145594 station_ip 113.203.13.216 145594 port 260 145594 unique_id port 145594 remote_ip 10.8.1.78 145596 username aminvpn 145596 kill_reason Another user logged on this global unique id 145596 mac 145596 bytes_out 0 145596 bytes_in 0 145596 station_ip 37.129.91.170 145596 port 469 145596 unique_id port 145596 remote_ip 10.8.0.14 145597 username sabaghnezhad 145597 mac 145597 bytes_out 0 145597 bytes_in 0 145597 station_ip 83.122.109.100 145597 port 484 145597 unique_id port 145597 remote_ip 10.8.0.186 145601 username barzegar 145601 mac 145601 bytes_out 0 145601 bytes_in 0 145601 station_ip 5.119.55.210 145601 port 484 145601 unique_id port 145601 remote_ip 10.8.0.234 145603 username moradi 145603 mac 145603 bytes_out 0 145603 bytes_in 0 145541 bytes_in 0 145541 station_ip 2.183.150.162 145541 port 485 145541 unique_id port 145544 username sedighe 145544 mac 145544 bytes_out 0 145544 bytes_in 0 145544 station_ip 113.203.28.56 145544 port 470 145544 unique_id port 145544 remote_ip 10.8.0.146 145545 username barzegar 145545 mac 145545 bytes_out 0 145545 bytes_in 0 145545 station_ip 5.119.55.210 145545 port 470 145545 unique_id port 145545 remote_ip 10.8.0.234 145550 username barzegar 145550 mac 145550 bytes_out 0 145550 bytes_in 0 145550 station_ip 5.119.55.210 145550 port 488 145550 unique_id port 145550 remote_ip 10.8.0.234 145551 username fezealinaghi 145551 kill_reason Another user logged on this global unique id 145551 mac 145551 bytes_out 0 145551 bytes_in 0 145551 station_ip 83.123.17.232 145551 port 482 145551 unique_id port 145552 username sedighe 145552 mac 145552 bytes_out 0 145552 bytes_in 0 145552 station_ip 113.203.28.56 145552 port 487 145552 unique_id port 145552 remote_ip 10.8.0.146 145556 username alipour 145556 mac 145556 bytes_out 0 145556 bytes_in 0 145556 station_ip 113.203.51.30 145556 port 486 145556 unique_id port 145556 remote_ip 10.8.0.102 145559 username hashtadani3 145559 mac 145559 bytes_out 0 145559 bytes_in 0 145559 station_ip 83.123.192.125 145559 port 486 145559 unique_id port 145559 remote_ip 10.8.0.154 145560 username hashtadani3 145560 mac 145560 bytes_out 0 145560 bytes_in 0 145560 station_ip 83.123.192.125 145560 port 257 145560 unique_id port 145560 remote_ip 10.8.1.94 145563 username hashtadani3 145563 mac 145563 bytes_out 0 145563 bytes_in 0 145563 station_ip 83.123.192.125 145563 port 485 145563 unique_id port 145563 remote_ip 10.8.0.154 145568 username alipour 145568 mac 145568 bytes_out 32704 145568 bytes_in 50026 145568 station_ip 113.203.51.30 145568 port 254 145568 unique_id port 145568 remote_ip 10.8.1.50 145569 username hashtadani3 145569 mac 145569 bytes_out 0 145569 bytes_in 0 145569 station_ip 83.123.192.125 145569 port 485 145569 unique_id port 145569 remote_ip 10.8.0.154 145573 username forozandeh1 145573 mac 145573 bytes_out 2788378 145573 bytes_in 7895725 145573 station_ip 83.123.2.146 145573 port 470 145573 unique_id port 145573 remote_ip 10.8.0.130 145576 username hashtadani3 145576 mac 145576 bytes_out 0 145576 bytes_in 0 145576 station_ip 83.123.192.125 145576 port 470 145576 unique_id port 145576 remote_ip 10.8.0.154 145579 username hashtadani3 145579 kill_reason Maximum number of concurrent logins reached 145579 mac 145579 bytes_out 0 145579 bytes_in 0 145579 station_ip 83.123.192.125 145579 port 470 145579 unique_id port 145582 username hashtadani3 145582 kill_reason Maximum check online fails reached 145582 mac 145582 bytes_out 0 145582 bytes_in 0 145582 station_ip 83.123.192.125 145582 port 255 145582 unique_id port 145583 username fezealinaghi 145583 kill_reason Another user logged on this global unique id 145583 mac 145583 bytes_out 0 145583 bytes_in 0 145583 station_ip 83.123.17.232 145583 port 482 145583 unique_id port 145586 username farhad2 145586 mac 145586 bytes_out 0 145586 bytes_in 0 145586 station_ip 5.120.152.211 145586 port 486 145586 unique_id port 145586 remote_ip 10.8.0.190 145590 username farhad2 145590 mac 145590 bytes_out 43078 145590 bytes_in 187818 145590 station_ip 5.120.152.211 145590 port 258 145590 unique_id port 145590 remote_ip 10.8.1.222 145593 username barzegar 145593 mac 145593 bytes_out 0 145593 bytes_in 0 145575 remote_ip 10.8.0.154 145577 username hashtadani3 145577 mac 145577 bytes_out 0 145577 bytes_in 0 145577 station_ip 83.123.192.125 145577 port 485 145577 unique_id port 145577 remote_ip 10.8.0.154 145578 username farhad2 145578 mac 145578 bytes_out 0 145578 bytes_in 0 145578 station_ip 5.120.152.211 145578 port 470 145578 unique_id port 145578 remote_ip 10.8.0.190 145581 username barzegar 145581 mac 145581 bytes_out 0 145581 bytes_in 0 145581 station_ip 5.119.55.210 145581 port 470 145581 unique_id port 145581 remote_ip 10.8.0.234 145585 username rezaei 145585 mac 145585 bytes_out 384958 145585 bytes_in 1880527 145585 station_ip 5.119.53.199 145585 port 470 145585 unique_id port 145585 remote_ip 10.8.0.230 145588 username mahdiyehalizadeh 145588 mac 145588 bytes_out 0 145588 bytes_in 0 145588 station_ip 83.123.84.200 145588 port 489 145588 unique_id port 145588 remote_ip 10.8.0.82 145591 username fezealinaghi 145591 kill_reason Another user logged on this global unique id 145591 mac 145591 bytes_out 0 145591 bytes_in 0 145591 station_ip 83.123.17.232 145591 port 482 145591 unique_id port 145592 username hosseine 145592 mac 145592 bytes_out 0 145592 bytes_in 0 145592 station_ip 83.122.25.212 145592 port 484 145592 unique_id port 145592 remote_ip 10.8.0.238 145598 username tahmasebi 145598 mac 145598 bytes_out 0 145598 bytes_in 0 145598 station_ip 5.112.126.231 145598 port 242 145598 unique_id port 145598 remote_ip 10.8.1.90 145605 username kalantary 145605 mac 145605 bytes_out 260080 145605 bytes_in 844462 145605 station_ip 83.122.28.247 145605 port 242 145605 unique_id port 145605 remote_ip 10.8.1.26 145607 username barzegar 145607 mac 145607 bytes_out 0 145607 bytes_in 0 145607 station_ip 5.119.55.210 145607 port 470 145607 unique_id port 145607 remote_ip 10.8.0.234 145609 username fezealinaghi 145609 kill_reason Another user logged on this global unique id 145609 mac 145609 bytes_out 0 145609 bytes_in 0 145609 station_ip 83.123.17.232 145609 port 482 145609 unique_id port 145613 username godarzi 145613 mac 145613 bytes_out 3390715 145613 bytes_in 30390590 145613 station_ip 5.119.83.92 145613 port 245 145613 unique_id port 145613 remote_ip 10.8.1.230 145616 username mostafa_es78 145616 unique_id port 145616 terminate_cause User-Request 145616 bytes_out 258 145616 bytes_in 176 145616 station_ip 5.120.111.165 145616 port 15730874 145616 nas_port_type Virtual 145616 remote_ip 5.5.5.21 145619 username alipour 145619 mac 145619 bytes_out 1262882 145619 bytes_in 10011476 145619 station_ip 113.203.51.30 145619 port 254 145619 unique_id port 145619 remote_ip 10.8.1.50 145622 username malekpoir 145622 mac 145622 bytes_out 0 145622 bytes_in 0 145622 station_ip 5.119.97.234 145622 port 445 145622 unique_id port 145622 remote_ip 10.8.0.58 145624 username barzegar 145624 mac 145624 bytes_out 0 145624 bytes_in 0 145624 station_ip 5.119.55.210 145624 port 258 145624 unique_id port 145624 remote_ip 10.8.1.174 145626 username Mahin 145626 mac 145626 bytes_out 62658 145626 bytes_in 197305 145626 station_ip 5.119.170.249 145626 port 485 145626 unique_id port 145626 remote_ip 10.8.0.158 145631 username farhad2 145631 mac 145631 bytes_out 513322 145631 bytes_in 4047926 145631 station_ip 5.120.152.211 145631 port 262 145631 unique_id port 145631 remote_ip 10.8.1.222 145634 username alipour 145634 mac 145634 bytes_out 9944 145634 bytes_in 14766 145634 station_ip 113.203.51.30 145634 port 245 145593 station_ip 5.119.55.210 145593 port 484 145593 unique_id port 145593 remote_ip 10.8.0.234 145595 username kalantary 145595 mac 145595 bytes_out 201127 145595 bytes_in 519674 145595 station_ip 83.122.94.115 145595 port 258 145595 unique_id port 145595 remote_ip 10.8.1.26 145599 username saeed9658 145599 mac 145599 bytes_out 2877934 145599 bytes_in 36844374 145599 station_ip 5.120.175.153 145599 port 261 145599 unique_id port 145599 remote_ip 10.8.1.210 145600 username mosi 145600 mac 145600 bytes_out 0 145600 bytes_in 0 145600 station_ip 2.183.150.162 145600 port 487 145600 unique_id port 145600 remote_ip 10.8.0.138 145602 username barzegar 145602 mac 145602 bytes_out 4091 145602 bytes_in 6568 145602 station_ip 5.119.55.210 145602 port 484 145602 unique_id port 145602 remote_ip 10.8.0.234 145604 username hosseine 145604 mac 145604 bytes_out 0 145604 bytes_in 0 145604 station_ip 83.122.25.212 145604 port 470 145604 unique_id port 145604 remote_ip 10.8.0.238 145606 username meysam 145606 mac 145606 bytes_out 928646 145606 bytes_in 16349444 145606 station_ip 188.158.48.89 145606 port 258 145606 unique_id port 145606 remote_ip 10.8.1.34 145608 username aminvpn 145608 unique_id port 145608 terminate_cause User-Request 145608 bytes_out 11110706 145608 bytes_in 362052694 145608 station_ip 31.57.143.85 145608 port 15730873 145608 nas_port_type Virtual 145608 remote_ip 5.5.5.14 145610 username meysam 145610 kill_reason Maximum check online fails reached 145610 mac 145610 bytes_out 0 145610 bytes_in 0 145610 station_ip 188.158.48.89 145610 port 242 145610 unique_id port 145612 username barzegar 145612 mac 145612 bytes_out 0 145612 bytes_in 0 145612 station_ip 5.119.55.210 145612 port 470 145612 unique_id port 145612 remote_ip 10.8.0.234 145614 username fezealinaghi 145614 kill_reason Another user logged on this global unique id 145614 mac 145614 bytes_out 0 145614 bytes_in 0 145614 station_ip 83.123.17.232 145614 port 482 145614 unique_id port 145617 username mostafa_es78 145617 unique_id port 145617 terminate_cause User-Request 145617 bytes_out 258 145617 bytes_in 172 145617 station_ip 5.120.111.165 145617 port 15730875 145617 nas_port_type Virtual 145617 remote_ip 5.5.5.24 145625 username alihosseini1 145625 mac 145625 bytes_out 0 145625 bytes_in 0 145625 station_ip 5.120.119.165 145625 port 258 145625 unique_id port 145625 remote_ip 10.8.1.106 145627 username mohammadjavad 145627 mac 145627 bytes_out 1626826 145627 bytes_in 19150246 145627 station_ip 37.129.124.226 145627 port 486 145627 unique_id port 145627 remote_ip 10.8.0.142 145628 username Mahin 145628 mac 145628 bytes_out 0 145628 bytes_in 0 145628 station_ip 5.119.170.249 145628 port 485 145628 unique_id port 145628 remote_ip 10.8.0.158 145632 username fezealinaghi 145632 kill_reason Another user logged on this global unique id 145632 mac 145632 bytes_out 0 145632 bytes_in 0 145632 station_ip 83.123.17.232 145632 port 482 145632 unique_id port 145635 username moradi 145635 kill_reason Another user logged on this global unique id 145635 mac 145635 bytes_out 0 145635 bytes_in 0 145635 station_ip 46.225.208.84 145635 port 487 145635 unique_id port 145638 username mahdiyehalizadeh 145638 mac 145638 bytes_out 0 145638 bytes_in 0 145638 station_ip 83.122.10.203 145638 port 445 145638 unique_id port 145638 remote_ip 10.8.0.82 145641 username Mahin 145641 mac 145641 bytes_out 350284 145641 bytes_in 1128673 145641 station_ip 5.119.170.249 145641 port 485 145641 unique_id port 145641 remote_ip 10.8.0.158 145603 station_ip 5.202.30.49 145603 port 485 145603 unique_id port 145603 remote_ip 10.8.0.250 145611 username barzegar 145611 mac 145611 bytes_out 0 145611 bytes_in 0 145611 station_ip 5.119.55.210 145611 port 470 145611 unique_id port 145611 remote_ip 10.8.0.234 145615 username vanila 145615 mac 145615 bytes_out 6176589 145615 bytes_in 1129046 145615 station_ip 83.123.13.194 145615 port 485 145615 unique_id port 145615 remote_ip 10.8.0.178 145618 username barzegar 145618 mac 145618 bytes_out 0 145618 bytes_in 0 145618 station_ip 5.119.55.210 145618 port 245 145618 unique_id port 145618 remote_ip 10.8.1.174 145620 username farhad2 145620 mac 145620 bytes_out 5449761 145620 bytes_in 40801380 145620 station_ip 5.120.152.211 145620 port 259 145620 unique_id port 145620 remote_ip 10.8.1.222 145621 username meysam 145621 mac 145621 bytes_out 0 145621 bytes_in 0 145621 station_ip 188.158.48.89 145621 port 470 145621 unique_id port 145621 remote_ip 10.8.0.110 145623 username fezealinaghi 145623 kill_reason Another user logged on this global unique id 145623 mac 145623 bytes_out 0 145623 bytes_in 0 145623 station_ip 83.123.17.232 145623 port 482 145623 unique_id port 145629 username mosi 145629 kill_reason Another user logged on this global unique id 145629 mac 145629 bytes_out 0 145629 bytes_in 0 145629 station_ip 5.233.82.58 145629 port 260 145629 unique_id port 145629 remote_ip 10.8.1.86 145630 username moradi 145630 kill_reason Another user logged on this global unique id 145630 mac 145630 bytes_out 0 145630 bytes_in 0 145630 station_ip 46.225.208.84 145630 port 487 145630 unique_id port 145630 remote_ip 10.8.0.250 145633 username alihosseini1 145633 mac 145633 bytes_out 18792 145633 bytes_in 39755 145633 station_ip 5.120.119.165 145633 port 261 145633 unique_id port 145633 remote_ip 10.8.1.106 145636 username barzegar 145636 mac 145636 bytes_out 0 145636 bytes_in 0 145636 station_ip 5.119.55.210 145636 port 258 145636 unique_id port 145636 remote_ip 10.8.1.174 145639 username barzegar 145639 mac 145639 bytes_out 0 145639 bytes_in 0 145639 station_ip 5.119.55.210 145639 port 258 145639 unique_id port 145639 remote_ip 10.8.1.174 145643 username malekpoir 145643 mac 145643 bytes_out 0 145643 bytes_in 0 145643 station_ip 5.119.97.234 145643 port 470 145643 unique_id port 145643 remote_ip 10.8.0.58 145646 username alipour 145646 mac 145646 bytes_out 6335 145646 bytes_in 9320 145646 station_ip 113.203.51.30 145646 port 245 145646 unique_id port 145646 remote_ip 10.8.1.50 145648 username vanila 145648 mac 145648 bytes_out 0 145648 bytes_in 0 145648 station_ip 83.123.13.194 145648 port 486 145648 unique_id port 145648 remote_ip 10.8.0.178 145649 username mosi 145649 kill_reason Another user logged on this global unique id 145649 mac 145649 bytes_out 0 145649 bytes_in 0 145649 station_ip 5.233.82.58 145649 port 260 145649 unique_id port 145652 username alihosseini1 145652 mac 145652 bytes_out 18608 145652 bytes_in 20909 145652 station_ip 5.120.119.165 145652 port 488 145652 unique_id port 145652 remote_ip 10.8.0.166 145657 username kalantary 145657 mac 145657 bytes_out 526202 145657 bytes_in 5318055 145657 station_ip 83.122.28.227 145657 port 254 145657 unique_id port 145657 remote_ip 10.8.1.26 145660 username forozandeh1 145660 mac 145660 bytes_out 0 145660 bytes_in 0 145660 station_ip 113.203.69.247 145660 port 470 145660 unique_id port 145660 remote_ip 10.8.0.130 145663 username kordestani 145663 mac 145634 unique_id port 145634 remote_ip 10.8.1.50 145637 username mahdiyehalizadeh 145637 mac 145637 bytes_out 0 145637 bytes_in 0 145637 station_ip 83.122.10.203 145637 port 262 145637 unique_id port 145637 remote_ip 10.8.1.110 145640 username mahdiyehalizadeh 145640 mac 145640 bytes_out 0 145640 bytes_in 0 145640 station_ip 83.122.10.203 145640 port 258 145640 unique_id port 145640 remote_ip 10.8.1.110 145642 username mahdiyehalizadeh 145642 mac 145642 bytes_out 0 145642 bytes_in 0 145642 station_ip 83.122.10.203 145642 port 491 145642 unique_id port 145642 remote_ip 10.8.0.82 145645 username mirzaei 145645 mac 145645 bytes_out 474053 145645 bytes_in 886092 145645 station_ip 5.120.18.93 145645 port 452 145645 unique_id port 145645 remote_ip 10.8.0.66 145647 username moradi 145647 mac 145647 bytes_out 0 145647 bytes_in 0 145647 station_ip 46.225.208.84 145647 port 487 145647 unique_id port 145650 username fezealinaghi 145650 kill_reason Another user logged on this global unique id 145650 mac 145650 bytes_out 0 145650 bytes_in 0 145650 station_ip 83.123.17.232 145650 port 482 145650 unique_id port 145653 username yahodi 145653 mac 145653 bytes_out 0 145653 bytes_in 0 145653 station_ip 37.129.67.111 145653 port 470 145653 unique_id port 145653 remote_ip 10.8.0.202 145656 username yahodi 145656 mac 145656 bytes_out 283540 145656 bytes_in 6062771 145656 station_ip 37.129.67.111 145656 port 487 145656 unique_id port 145656 remote_ip 10.8.0.202 145659 username barzegar 145659 mac 145659 bytes_out 0 145659 bytes_in 0 145659 station_ip 5.119.55.210 145659 port 254 145659 unique_id port 145659 remote_ip 10.8.1.174 145662 username rezaei 145662 mac 145662 bytes_out 0 145662 bytes_in 0 145662 station_ip 5.119.53.199 145662 port 489 145662 unique_id port 145662 remote_ip 10.8.0.230 145664 username rezaei 145664 mac 145664 bytes_out 0 145664 bytes_in 0 145664 station_ip 5.119.53.199 145664 port 452 145664 unique_id port 145664 remote_ip 10.8.0.230 145665 username jafari 145665 kill_reason Another user logged on this global unique id 145665 mac 145665 bytes_out 0 145665 bytes_in 0 145665 station_ip 89.34.35.24 145665 port 487 145665 unique_id port 145665 remote_ip 10.8.0.242 145667 username farhad2 145667 kill_reason Another user logged on this global unique id 145667 mac 145667 bytes_out 0 145667 bytes_in 0 145667 station_ip 5.120.152.211 145667 port 261 145667 unique_id port 145667 remote_ip 10.8.1.222 145668 username hosseine 145668 mac 145668 bytes_out 169429 145668 bytes_in 330928 145668 station_ip 83.122.25.212 145668 port 258 145668 unique_id port 145668 remote_ip 10.8.1.190 145673 username kalantary 145673 mac 145673 bytes_out 429927 145673 bytes_in 2022554 145673 station_ip 83.122.28.227 145673 port 254 145673 unique_id port 145673 remote_ip 10.8.1.26 145675 username milan 145675 kill_reason Another user logged on this global unique id 145675 mac 145675 bytes_out 0 145675 bytes_in 0 145675 station_ip 5.119.234.109 145675 port 490 145675 unique_id port 145677 username farhad2 145677 kill_reason Another user logged on this global unique id 145677 mac 145677 bytes_out 0 145677 bytes_in 0 145677 station_ip 5.120.152.211 145677 port 261 145677 unique_id port 145679 username alihosseini1 145679 mac 145679 bytes_out 613785 145679 bytes_in 319026 145679 station_ip 5.120.119.165 145679 port 486 145679 unique_id port 145679 remote_ip 10.8.0.166 145680 username hamidsalari 145680 kill_reason Another user logged on this global unique id 145680 mac 145644 username kalantary 145644 mac 145644 bytes_out 0 145644 bytes_in 0 145644 station_ip 83.122.28.227 145644 port 254 145644 unique_id port 145644 remote_ip 10.8.1.26 145651 username milan 145651 kill_reason Another user logged on this global unique id 145651 mac 145651 bytes_out 0 145651 bytes_in 0 145651 station_ip 5.119.234.109 145651 port 490 145651 unique_id port 145651 remote_ip 10.8.0.218 145654 username hosseine 145654 mac 145654 bytes_out 130087 145654 bytes_in 163994 145654 station_ip 83.122.25.212 145654 port 484 145654 unique_id port 145654 remote_ip 10.8.0.238 145655 username godarzi 145655 mac 145655 bytes_out 1303602 145655 bytes_in 17416036 145655 station_ip 5.119.83.92 145655 port 259 145655 unique_id port 145655 remote_ip 10.8.1.230 145658 username mostafa_es78 145658 unique_id port 145658 terminate_cause Lost-Carrier 145658 bytes_out 135804 145658 bytes_in 1631385 145658 station_ip 5.120.111.165 145658 port 15730876 145658 nas_port_type Virtual 145658 remote_ip 5.5.5.25 145661 username vanila 145661 mac 145661 bytes_out 0 145661 bytes_in 0 145661 station_ip 83.123.13.194 145661 port 452 145661 unique_id port 145661 remote_ip 10.8.0.178 145666 username aminvpn 145666 mac 145666 bytes_out 0 145666 bytes_in 0 145666 station_ip 37.129.91.170 145666 port 469 145666 unique_id port 145681 username barzegar 145681 mac 145681 bytes_out 0 145681 bytes_in 0 145681 station_ip 5.119.55.210 145681 port 484 145681 unique_id port 145681 remote_ip 10.8.0.234 145684 username meysam 145684 kill_reason Another user logged on this global unique id 145684 mac 145684 bytes_out 0 145684 bytes_in 0 145684 station_ip 188.158.48.89 145684 port 470 145684 unique_id port 145684 remote_ip 10.8.0.110 145685 username aminvpn 145685 unique_id port 145685 terminate_cause User-Request 145685 bytes_out 4677813 145685 bytes_in 34891345 145685 station_ip 5.120.92.93 145685 port 15730870 145685 nas_port_type Virtual 145685 remote_ip 5.5.5.255 145686 username hamidsalari 145686 kill_reason Another user logged on this global unique id 145686 mac 145686 bytes_out 0 145686 bytes_in 0 145686 station_ip 5.119.244.56 145686 port 451 145686 unique_id port 145688 username barzegar 145688 mac 145688 bytes_out 0 145688 bytes_in 0 145688 station_ip 5.119.55.210 145688 port 469 145688 unique_id port 145688 remote_ip 10.8.0.234 145689 username mostafa_es78 145689 unique_id port 145689 terminate_cause Lost-Carrier 145689 bytes_out 1923234 145689 bytes_in 44862996 145689 station_ip 5.120.28.15 145689 port 15730879 145689 nas_port_type Virtual 145689 remote_ip 5.5.5.67 145692 username farhad2 145692 mac 145692 bytes_out 0 145692 bytes_in 0 145692 station_ip 5.120.152.211 145692 port 261 145692 unique_id port 145697 username fezealinaghi 145697 kill_reason Another user logged on this global unique id 145697 mac 145697 bytes_out 0 145697 bytes_in 0 145697 station_ip 83.123.17.232 145697 port 482 145697 unique_id port 145699 username milan 145699 kill_reason Another user logged on this global unique id 145699 mac 145699 bytes_out 0 145699 bytes_in 0 145699 station_ip 5.119.234.109 145699 port 490 145699 unique_id port 145706 username farhad2 145706 kill_reason Another user logged on this global unique id 145706 mac 145706 bytes_out 0 145706 bytes_in 0 145706 station_ip 5.120.152.211 145706 port 259 145706 unique_id port 145706 remote_ip 10.8.1.222 145707 username alihosseini1 145707 mac 145707 bytes_out 0 145707 bytes_in 0 145707 station_ip 5.120.119.165 145707 port 452 145707 unique_id port 145707 remote_ip 10.8.0.166 145663 bytes_out 0 145663 bytes_in 0 145663 station_ip 151.235.102.149 145663 port 484 145663 unique_id port 145663 remote_ip 10.8.0.134 145669 username jafari 145669 mac 145669 bytes_out 0 145669 bytes_in 0 145669 station_ip 89.34.35.24 145669 port 487 145669 unique_id port 145670 username kordestani 145670 mac 145670 bytes_out 477546 145670 bytes_in 6561133 145670 station_ip 151.235.102.149 145670 port 262 145670 unique_id port 145670 remote_ip 10.8.1.98 145671 username malekpoir 145671 mac 145671 bytes_out 0 145671 bytes_in 0 145671 station_ip 5.119.97.234 145671 port 485 145671 unique_id port 145671 remote_ip 10.8.0.58 145672 username barzegar 145672 mac 145672 bytes_out 0 145672 bytes_in 0 145672 station_ip 5.119.55.210 145672 port 470 145672 unique_id port 145672 remote_ip 10.8.0.234 145674 username mosi 145674 kill_reason Another user logged on this global unique id 145674 mac 145674 bytes_out 0 145674 bytes_in 0 145674 station_ip 5.233.82.58 145674 port 260 145674 unique_id port 145676 username forozandeh1 145676 mac 145676 bytes_out 204629 145676 bytes_in 890562 145676 station_ip 37.129.232.138 145676 port 452 145676 unique_id port 145676 remote_ip 10.8.0.130 145678 username kalantary 145678 mac 145678 bytes_out 202812 145678 bytes_in 1097600 145678 station_ip 83.122.28.227 145678 port 254 145678 unique_id port 145678 remote_ip 10.8.1.26 145687 username malekpoir 145687 mac 145687 bytes_out 0 145687 bytes_in 0 145687 station_ip 5.119.97.234 145687 port 469 145687 unique_id port 145687 remote_ip 10.8.0.58 145691 username barzegar 145691 mac 145691 bytes_out 0 145691 bytes_in 0 145691 station_ip 5.119.55.210 145691 port 469 145691 unique_id port 145691 remote_ip 10.8.0.234 145694 username farhad2 145694 mac 145694 bytes_out 0 145694 bytes_in 0 145694 station_ip 5.120.152.211 145694 port 259 145694 unique_id port 145694 remote_ip 10.8.1.222 145698 username farhad2 145698 mac 145698 bytes_out 0 145698 bytes_in 0 145698 station_ip 5.120.152.211 145698 port 452 145698 unique_id port 145698 remote_ip 10.8.0.190 145700 username barzegar 145700 mac 145700 bytes_out 0 145700 bytes_in 0 145700 station_ip 5.119.55.210 145700 port 452 145700 unique_id port 145700 remote_ip 10.8.0.234 145703 username milan 145703 mac 145703 bytes_out 0 145703 bytes_in 0 145703 station_ip 5.119.234.109 145703 port 490 145703 unique_id port 145704 username fezealinaghi 145704 kill_reason Another user logged on this global unique id 145704 mac 145704 bytes_out 0 145704 bytes_in 0 145704 station_ip 83.123.17.232 145704 port 482 145704 unique_id port 145708 username mosi 145708 kill_reason Another user logged on this global unique id 145708 mac 145708 bytes_out 0 145708 bytes_in 0 145708 station_ip 5.233.82.58 145708 port 260 145708 unique_id port 145711 username rezaei 145711 mac 145711 bytes_out 0 145711 bytes_in 0 145711 station_ip 5.119.53.199 145711 port 452 145711 unique_id port 145711 remote_ip 10.8.0.230 145712 username alihosseini1 145712 mac 145712 bytes_out 0 145712 bytes_in 0 145712 station_ip 5.120.119.165 145712 port 254 145712 unique_id port 145712 remote_ip 10.8.1.106 145713 username godarzi 145713 mac 145713 bytes_out 2327949 145713 bytes_in 39661187 145713 station_ip 5.119.83.92 145713 port 261 145713 unique_id port 145713 remote_ip 10.8.1.230 145714 username alihosseini1 145714 kill_reason Maximum check online fails reached 145714 mac 145714 bytes_out 0 145714 bytes_in 0 145680 bytes_out 0 145680 bytes_in 0 145680 station_ip 5.119.244.56 145680 port 451 145680 unique_id port 145682 username farhad2 145682 kill_reason Another user logged on this global unique id 145682 mac 145682 bytes_out 0 145682 bytes_in 0 145682 station_ip 5.120.152.211 145682 port 261 145682 unique_id port 145683 username aminvpn 145683 mac 145683 bytes_out 1444262 145683 bytes_in 10776349 145683 station_ip 37.129.91.170 145683 port 259 145683 unique_id port 145683 remote_ip 10.8.1.6 145690 username alihosseini1 145690 mac 145690 bytes_out 169026 145690 bytes_in 117590 145690 station_ip 5.120.119.165 145690 port 485 145690 unique_id port 145690 remote_ip 10.8.0.166 145693 username alihosseini1 145693 mac 145693 bytes_out 0 145693 bytes_in 0 145693 station_ip 5.120.119.165 145693 port 469 145693 unique_id port 145693 remote_ip 10.8.0.166 145695 username vanila 145695 mac 145695 bytes_out 8446359 145695 bytes_in 7982770 145695 station_ip 83.123.13.194 145695 port 452 145695 unique_id port 145695 remote_ip 10.8.0.178 145696 username meysam 145696 mac 145696 bytes_out 0 145696 bytes_in 0 145696 station_ip 188.158.48.89 145696 port 470 145696 unique_id port 145701 username alihosseini1 145701 mac 145701 bytes_out 0 145701 bytes_in 0 145701 station_ip 5.120.119.165 145701 port 261 145701 unique_id port 145701 remote_ip 10.8.1.106 145702 username barzegar 145702 mac 145702 bytes_out 2345 145702 bytes_in 4881 145702 station_ip 5.119.55.210 145702 port 262 145702 unique_id port 145702 remote_ip 10.8.1.174 145705 username kalantary 145705 mac 145705 bytes_out 1532160 145705 bytes_in 10308799 145705 station_ip 83.122.28.227 145705 port 254 145705 unique_id port 145705 remote_ip 10.8.1.26 145709 username alihosseini1 145709 mac 145709 bytes_out 0 145709 bytes_in 0 145709 station_ip 5.120.119.165 145709 port 469 145709 unique_id port 145709 remote_ip 10.8.0.166 145716 username alihosseini1 145716 mac 145716 bytes_out 46853 145716 bytes_in 47424 145716 station_ip 5.120.119.165 145716 port 486 145716 unique_id port 145716 remote_ip 10.8.0.166 145724 username rezaei 145724 kill_reason Another user logged on this global unique id 145724 mac 145724 bytes_out 0 145724 bytes_in 0 145724 station_ip 5.119.53.199 145724 port 485 145724 unique_id port 145724 remote_ip 10.8.0.230 145725 username malekpoir 145725 mac 145725 bytes_out 0 145725 bytes_in 0 145725 station_ip 5.119.97.234 145725 port 484 145725 unique_id port 145725 remote_ip 10.8.0.58 145727 username barzegar 145727 mac 145727 bytes_out 0 145727 bytes_in 0 145727 station_ip 5.119.55.210 145727 port 263 145727 unique_id port 145727 remote_ip 10.8.1.174 145730 username vanila 145730 mac 145730 bytes_out 5230353 145730 bytes_in 510218 145730 station_ip 83.123.13.194 145730 port 484 145730 unique_id port 145730 remote_ip 10.8.0.178 145731 username forozandeh1 145731 mac 145731 bytes_out 0 145731 bytes_in 0 145731 station_ip 83.122.235.242 145731 port 487 145731 unique_id port 145731 remote_ip 10.8.0.130 145736 username kalantary 145736 mac 145736 bytes_out 1011169 145736 bytes_in 13575571 145736 station_ip 83.122.120.175 145736 port 258 145736 unique_id port 145736 remote_ip 10.8.1.26 145742 username vanila 145742 mac 145742 bytes_out 0 145742 bytes_in 0 145742 station_ip 83.123.13.194 145742 port 484 145742 unique_id port 145742 remote_ip 10.8.0.178 145744 username alihosseini1 145744 mac 145744 bytes_out 3688 145710 username barzegar 145710 mac 145710 bytes_out 0 145710 bytes_in 0 145710 station_ip 5.119.55.210 145710 port 254 145710 unique_id port 145710 remote_ip 10.8.1.174 145715 username barzegar 145715 mac 145715 bytes_out 0 145715 bytes_in 0 145715 station_ip 5.119.55.210 145715 port 262 145715 unique_id port 145715 remote_ip 10.8.1.174 145717 username barzegar 145717 mac 145717 bytes_out 0 145717 bytes_in 0 145717 station_ip 5.119.55.210 145717 port 262 145717 unique_id port 145717 remote_ip 10.8.1.174 145720 username vanila 145720 mac 145720 bytes_out 0 145720 bytes_in 0 145720 station_ip 83.123.13.194 145720 port 452 145720 unique_id port 145720 remote_ip 10.8.0.178 145721 username milan 145721 kill_reason Another user logged on this global unique id 145721 mac 145721 bytes_out 0 145721 bytes_in 0 145721 station_ip 5.120.31.183 145721 port 470 145721 unique_id port 145721 remote_ip 10.8.0.218 145722 username farhad2 145722 mac 145722 bytes_out 0 145722 bytes_in 0 145722 station_ip 5.120.152.211 145722 port 259 145722 unique_id port 145728 username farhad2 145728 mac 145728 bytes_out 373241 145728 bytes_in 1922915 145728 station_ip 5.120.152.211 145728 port 259 145728 unique_id port 145728 remote_ip 10.8.1.222 145729 username godarzi 145729 mac 145729 bytes_out 0 145729 bytes_in 0 145729 station_ip 5.119.83.92 145729 port 261 145729 unique_id port 145729 remote_ip 10.8.1.230 145732 username kordestani 145732 mac 145732 bytes_out 1540270 145732 bytes_in 27626668 145732 station_ip 151.235.102.149 145732 port 258 145732 unique_id port 145732 remote_ip 10.8.1.98 145733 username barzegar 145733 mac 145733 bytes_out 0 145733 bytes_in 0 145733 station_ip 5.119.55.210 145733 port 261 145733 unique_id port 145733 remote_ip 10.8.1.174 145738 username mohammadjavad 145738 kill_reason Maximum check online fails reached 145738 mac 145738 bytes_out 0 145738 bytes_in 0 145738 station_ip 37.129.187.221 145738 port 485 145738 unique_id port 145738 remote_ip 10.8.0.142 145741 username godarzi 145741 mac 145741 bytes_out 1116956 145741 bytes_in 13594277 145741 station_ip 5.119.83.92 145741 port 259 145741 unique_id port 145741 remote_ip 10.8.1.230 145747 username mosi 145747 mac 145747 bytes_out 0 145747 bytes_in 0 145747 station_ip 5.233.82.58 145747 port 260 145747 unique_id port 145750 username alihosseini1 145750 mac 145750 bytes_out 0 145750 bytes_in 0 145750 station_ip 5.120.119.165 145750 port 488 145750 unique_id port 145750 remote_ip 10.8.0.166 145751 username kalantary 145751 mac 145751 bytes_out 432879 145751 bytes_in 2365376 145751 station_ip 83.122.120.175 145751 port 259 145751 unique_id port 145751 remote_ip 10.8.1.26 145756 username moradi 145756 kill_reason Another user logged on this global unique id 145756 mac 145756 bytes_out 0 145756 bytes_in 0 145756 station_ip 46.225.208.84 145756 port 445 145756 unique_id port 145756 remote_ip 10.8.0.226 145757 username milan 145757 kill_reason Another user logged on this global unique id 145757 mac 145757 bytes_out 0 145757 bytes_in 0 145757 station_ip 5.120.31.183 145757 port 470 145757 unique_id port 145760 username alihosseini1 145760 mac 145760 bytes_out 0 145760 bytes_in 0 145760 station_ip 5.120.119.165 145760 port 488 145760 unique_id port 145760 remote_ip 10.8.0.166 145761 username farhad2 145761 mac 145761 bytes_out 0 145761 bytes_in 0 145761 station_ip 5.120.152.211 145761 port 258 145761 unique_id port 145714 station_ip 5.120.119.165 145714 port 254 145714 unique_id port 145718 username alihosseini1 145718 mac 145718 bytes_out 0 145718 bytes_in 0 145718 station_ip 5.120.119.165 145718 port 486 145718 unique_id port 145718 remote_ip 10.8.0.166 145719 username fezealinaghi 145719 kill_reason Another user logged on this global unique id 145719 mac 145719 bytes_out 0 145719 bytes_in 0 145719 station_ip 83.123.17.232 145719 port 482 145719 unique_id port 145723 username farhad2 145723 mac 145723 bytes_out 0 145723 bytes_in 0 145723 station_ip 5.120.152.211 145723 port 259 145723 unique_id port 145723 remote_ip 10.8.1.222 145726 username fezealinaghi 145726 kill_reason Another user logged on this global unique id 145726 mac 145726 bytes_out 0 145726 bytes_in 0 145726 station_ip 83.123.17.232 145726 port 482 145726 unique_id port 145734 username rezaei 145734 mac 145734 bytes_out 0 145734 bytes_in 0 145734 station_ip 5.119.53.199 145734 port 485 145734 unique_id port 145735 username aminvpn 145735 mac 145735 bytes_out 664186 145735 bytes_in 8016603 145735 station_ip 113.203.115.34 145735 port 488 145735 unique_id port 145735 remote_ip 10.8.0.14 145737 username aminvpn 145737 unique_id port 145737 terminate_cause User-Request 145737 bytes_out 973979 145737 bytes_in 6354983 145737 station_ip 5.233.49.34 145737 port 15730882 145737 nas_port_type Virtual 145737 remote_ip 5.5.5.253 145739 username milan 145739 kill_reason Another user logged on this global unique id 145739 mac 145739 bytes_out 0 145739 bytes_in 0 145739 station_ip 5.120.31.183 145739 port 470 145739 unique_id port 145740 username alihosseini1 145740 mac 145740 bytes_out 29822 145740 bytes_in 52616 145740 station_ip 5.120.119.165 145740 port 486 145740 unique_id port 145740 remote_ip 10.8.0.166 145743 username aminvpn 145743 unique_id port 145743 terminate_cause Lost-Carrier 145743 bytes_out 493532 145743 bytes_in 8687642 145743 station_ip 5.233.49.34 145743 port 15730883 145743 nas_port_type Virtual 145743 remote_ip 5.5.5.253 145745 username arash 145745 mac 145745 bytes_out 0 145745 bytes_in 0 145745 station_ip 37.27.30.158 145745 port 487 145745 unique_id port 145745 remote_ip 10.8.0.114 145746 username alihosseini1 145746 mac 145746 bytes_out 0 145746 bytes_in 0 145746 station_ip 5.120.119.165 145746 port 261 145746 unique_id port 145746 remote_ip 10.8.1.106 145748 username fezealinaghi 145748 kill_reason Another user logged on this global unique id 145748 mac 145748 bytes_out 0 145748 bytes_in 0 145748 station_ip 83.123.17.232 145748 port 482 145748 unique_id port 145749 username barzegar 145749 mac 145749 bytes_out 0 145749 bytes_in 0 145749 station_ip 5.119.55.210 145749 port 487 145749 unique_id port 145749 remote_ip 10.8.0.234 145758 username kalantary 145758 mac 145758 bytes_out 0 145758 bytes_in 0 145758 station_ip 83.122.120.175 145758 port 258 145758 unique_id port 145758 remote_ip 10.8.1.26 145764 username fezealinaghi 145764 kill_reason Another user logged on this global unique id 145764 mac 145764 bytes_out 0 145764 bytes_in 0 145764 station_ip 83.123.17.232 145764 port 482 145764 unique_id port 145765 username farhad2 145765 mac 145765 bytes_out 0 145765 bytes_in 0 145765 station_ip 5.120.152.211 145765 port 258 145765 unique_id port 145765 remote_ip 10.8.1.222 145767 username alihosseini1 145767 kill_reason Maximum check online fails reached 145767 mac 145767 bytes_out 0 145767 bytes_in 0 145767 station_ip 5.120.119.165 145767 port 487 145767 unique_id port 145769 username rezaei 145744 bytes_in 4854 145744 station_ip 5.120.119.165 145744 port 484 145744 unique_id port 145744 remote_ip 10.8.0.166 145752 username vanila 145752 mac 145752 bytes_out 0 145752 bytes_in 0 145752 station_ip 83.123.13.194 145752 port 258 145752 unique_id port 145752 remote_ip 10.8.1.74 145753 username alihosseini1 145753 mac 145753 bytes_out 4863 145753 bytes_in 13396 145753 station_ip 5.120.119.165 145753 port 260 145753 unique_id port 145753 remote_ip 10.8.1.106 145754 username fezealinaghi 145754 kill_reason Another user logged on this global unique id 145754 mac 145754 bytes_out 0 145754 bytes_in 0 145754 station_ip 83.123.17.232 145754 port 482 145754 unique_id port 145755 username alihosseini1 145755 mac 145755 bytes_out 0 145755 bytes_in 0 145755 station_ip 5.120.119.165 145755 port 487 145755 unique_id port 145755 remote_ip 10.8.0.166 145759 username alihosseini1 145759 mac 145759 bytes_out 0 145759 bytes_in 0 145759 station_ip 5.120.119.165 145759 port 488 145759 unique_id port 145759 remote_ip 10.8.0.166 145762 username aminvpn 145762 mac 145762 bytes_out 0 145762 bytes_in 0 145762 station_ip 37.129.246.232 145762 port 487 145762 unique_id port 145762 remote_ip 10.8.0.14 145766 username alihosseini1 145766 mac 145766 bytes_out 0 145766 bytes_in 0 145766 station_ip 5.120.119.165 145766 port 489 145766 unique_id port 145766 remote_ip 10.8.0.166 145774 username godarzi 145774 mac 145774 bytes_out 362982 145774 bytes_in 4196607 145774 station_ip 5.119.83.92 145774 port 258 145774 unique_id port 145774 remote_ip 10.8.1.230 145779 username hashtadani3 145779 mac 145779 bytes_out 0 145779 bytes_in 0 145779 station_ip 5.202.14.108 145779 port 488 145779 unique_id port 145779 remote_ip 10.8.0.154 145781 username alipour 145781 kill_reason Another user logged on this global unique id 145781 mac 145781 bytes_out 0 145781 bytes_in 0 145781 station_ip 113.203.51.30 145781 port 245 145781 unique_id port 145781 remote_ip 10.8.1.50 145782 username alihosseini1 145782 mac 145782 bytes_out 0 145782 bytes_in 0 145782 station_ip 5.120.119.165 145782 port 451 145782 unique_id port 145782 remote_ip 10.8.0.166 145785 username hashtadani3 145785 mac 145785 bytes_out 0 145785 bytes_in 0 145785 station_ip 5.202.14.108 145785 port 488 145785 unique_id port 145785 remote_ip 10.8.0.154 145787 username mosi 145787 mac 145787 bytes_out 0 145787 bytes_in 0 145787 station_ip 78.39.126.55 145787 port 484 145787 unique_id port 145787 remote_ip 10.8.0.138 145790 username moradi 145790 kill_reason Another user logged on this global unique id 145790 mac 145790 bytes_out 0 145790 bytes_in 0 145790 station_ip 46.225.208.84 145790 port 445 145790 unique_id port 145792 username aminvpn 145792 mac 145792 bytes_out 0 145792 bytes_in 0 145792 station_ip 37.129.246.232 145792 port 491 145792 unique_id port 145794 username yarmohamadi 145794 kill_reason Another user logged on this global unique id 145794 mac 145794 bytes_out 0 145794 bytes_in 0 145794 station_ip 5.119.138.103 145794 port 469 145794 unique_id port 145796 username alipour 145796 mac 145796 bytes_out 0 145796 bytes_in 0 145796 station_ip 113.203.51.30 145796 port 245 145796 unique_id port 145801 username aminvpn 145801 mac 145801 bytes_out 53767 145801 bytes_in 126837 145801 station_ip 37.129.246.232 145801 port 452 145801 unique_id port 145801 remote_ip 10.8.0.14 145807 username alihosseini1 145807 mac 145807 bytes_out 0 145807 bytes_in 0 145761 remote_ip 10.8.1.222 145763 username barzegar 145763 mac 145763 bytes_out 0 145763 bytes_in 0 145763 station_ip 5.119.55.210 145763 port 489 145763 unique_id port 145763 remote_ip 10.8.0.234 145768 username aminvpn 145768 mac 145768 bytes_out 0 145768 bytes_in 0 145768 station_ip 37.129.246.232 145768 port 488 145768 unique_id port 145768 remote_ip 10.8.0.14 145770 username fezealinaghi 145770 kill_reason Another user logged on this global unique id 145770 mac 145770 bytes_out 0 145770 bytes_in 0 145770 station_ip 83.123.17.232 145770 port 482 145770 unique_id port 145772 username milan 145772 kill_reason Another user logged on this global unique id 145772 mac 145772 bytes_out 0 145772 bytes_in 0 145772 station_ip 5.120.31.183 145772 port 470 145772 unique_id port 145773 username vanila 145773 mac 145773 bytes_out 0 145773 bytes_in 0 145773 station_ip 83.123.13.194 145773 port 485 145773 unique_id port 145773 remote_ip 10.8.0.178 145775 username yarmohamadi 145775 kill_reason Another user logged on this global unique id 145775 mac 145775 bytes_out 0 145775 bytes_in 0 145775 station_ip 5.119.138.103 145775 port 469 145775 unique_id port 145775 remote_ip 10.8.0.150 145777 username alihosseini1 145777 mac 145777 bytes_out 80183 145777 bytes_in 109711 145777 station_ip 5.120.119.165 145777 port 490 145777 unique_id port 145777 remote_ip 10.8.0.166 145780 username hashtadani3 145780 mac 145780 bytes_out 0 145780 bytes_in 0 145780 station_ip 5.202.14.108 145780 port 451 145780 unique_id port 145780 remote_ip 10.8.0.154 145783 username aminvpn 145783 kill_reason Another user logged on this global unique id 145783 mac 145783 bytes_out 0 145783 bytes_in 0 145783 station_ip 37.129.246.232 145783 port 491 145783 unique_id port 145783 remote_ip 10.8.0.14 145784 username barzegar 145784 mac 145784 bytes_out 0 145784 bytes_in 0 145784 station_ip 5.119.55.210 145784 port 258 145784 unique_id port 145784 remote_ip 10.8.1.174 145786 username hashtadani3 145786 mac 145786 bytes_out 0 145786 bytes_in 0 145786 station_ip 5.202.14.108 145786 port 451 145786 unique_id port 145786 remote_ip 10.8.0.154 145788 username barzegar 145788 mac 145788 bytes_out 2477 145788 bytes_in 4874 145788 station_ip 5.119.55.210 145788 port 258 145788 unique_id port 145788 remote_ip 10.8.1.174 145798 username jafari 145798 kill_reason Another user logged on this global unique id 145798 mac 145798 bytes_out 0 145798 bytes_in 0 145798 station_ip 89.34.35.24 145798 port 489 145798 unique_id port 145798 remote_ip 10.8.0.242 145800 username hashtadani3 145800 mac 145800 bytes_out 0 145800 bytes_in 0 145800 station_ip 5.202.14.108 145800 port 493 145800 unique_id port 145800 remote_ip 10.8.0.154 145803 username godarzi 145803 mac 145803 bytes_out 198469 145803 bytes_in 1711739 145803 station_ip 5.202.5.1 145803 port 258 145803 unique_id port 145803 remote_ip 10.8.1.230 145806 username kalantary 145806 mac 145806 bytes_out 0 145806 bytes_in 0 145806 station_ip 83.122.23.27 145806 port 260 145806 unique_id port 145806 remote_ip 10.8.1.26 145808 username yarmohamadi 145808 kill_reason Another user logged on this global unique id 145808 mac 145808 bytes_out 0 145808 bytes_in 0 145808 station_ip 5.119.138.103 145808 port 469 145808 unique_id port 145813 username moradi 145813 kill_reason Another user logged on this global unique id 145813 mac 145813 bytes_out 0 145813 bytes_in 0 145813 station_ip 46.225.208.84 145813 port 491 145813 unique_id port 145813 remote_ip 10.8.0.250 145814 username alihosseini1 145769 mac 145769 bytes_out 0 145769 bytes_in 0 145769 station_ip 5.119.53.199 145769 port 486 145769 unique_id port 145769 remote_ip 10.8.0.230 145771 username farhad2 145771 mac 145771 bytes_out 0 145771 bytes_in 0 145771 station_ip 5.120.152.211 145771 port 489 145771 unique_id port 145771 remote_ip 10.8.0.190 145776 username barzegar 145776 mac 145776 bytes_out 0 145776 bytes_in 0 145776 station_ip 5.119.55.210 145776 port 258 145776 unique_id port 145776 remote_ip 10.8.1.174 145778 username hamidsalari 145778 mac 145778 bytes_out 0 145778 bytes_in 0 145778 station_ip 5.119.244.56 145778 port 451 145778 unique_id port 145789 username farhad2 145789 mac 145789 bytes_out 0 145789 bytes_in 0 145789 station_ip 5.120.6.58 145789 port 492 145789 unique_id port 145789 remote_ip 10.8.0.190 145791 username malekpoir 145791 mac 145791 bytes_out 0 145791 bytes_in 0 145791 station_ip 5.119.97.234 145791 port 452 145791 unique_id port 145791 remote_ip 10.8.0.58 145793 username hashtadani3 145793 mac 145793 bytes_out 0 145793 bytes_in 0 145793 station_ip 5.202.14.108 145793 port 484 145793 unique_id port 145793 remote_ip 10.8.0.154 145795 username alihajmalek 145795 mac 145795 bytes_out 2242791 145795 bytes_in 26420239 145795 station_ip 37.129.172.252 145795 port 486 145795 unique_id port 145795 remote_ip 10.8.0.210 145797 username sabaghnezhad 145797 mac 145797 bytes_out 30876 145797 bytes_in 48488 145797 station_ip 83.123.211.196 145797 port 488 145797 unique_id port 145797 remote_ip 10.8.0.186 145799 username milan 145799 kill_reason Another user logged on this global unique id 145799 mac 145799 bytes_out 0 145799 bytes_in 0 145799 station_ip 5.120.31.183 145799 port 470 145799 unique_id port 145802 username moradi 145802 mac 145802 bytes_out 0 145802 bytes_in 0 145802 station_ip 46.225.208.84 145802 port 445 145802 unique_id port 145804 username alihosseini1 145804 mac 145804 bytes_out 0 145804 bytes_in 0 145804 station_ip 5.120.119.165 145804 port 259 145804 unique_id port 145804 remote_ip 10.8.1.106 145805 username barzegar 145805 mac 145805 bytes_out 0 145805 bytes_in 0 145805 station_ip 5.119.55.210 145805 port 258 145805 unique_id port 145805 remote_ip 10.8.1.174 145809 username alihosseini1 145809 mac 145809 bytes_out 0 145809 bytes_in 0 145809 station_ip 5.120.119.165 145809 port 258 145809 unique_id port 145809 remote_ip 10.8.1.106 145812 username alihosseini1 145812 mac 145812 bytes_out 0 145812 bytes_in 0 145812 station_ip 5.120.119.165 145812 port 445 145812 unique_id port 145812 remote_ip 10.8.0.166 145816 username alihosseini1 145816 kill_reason Maximum check online fails reached 145816 mac 145816 bytes_out 0 145816 bytes_in 0 145816 station_ip 5.120.119.165 145816 port 258 145816 unique_id port 145819 username hashtadani3 145819 mac 145819 bytes_out 0 145819 bytes_in 0 145819 station_ip 5.202.14.108 145819 port 452 145819 unique_id port 145819 remote_ip 10.8.0.154 145824 username yarmohamadi 145824 kill_reason Another user logged on this global unique id 145824 mac 145824 bytes_out 0 145824 bytes_in 0 145824 station_ip 5.119.138.103 145824 port 469 145824 unique_id port 145826 username barzegar 145826 mac 145826 bytes_out 0 145826 bytes_in 0 145826 station_ip 5.119.55.210 145826 port 245 145826 unique_id port 145826 remote_ip 10.8.1.174 145827 username jafari 145827 kill_reason Another user logged on this global unique id 145827 mac 145827 bytes_out 0 145807 station_ip 5.120.119.165 145807 port 259 145807 unique_id port 145807 remote_ip 10.8.1.106 145810 username hashtadani3 145810 mac 145810 bytes_out 0 145810 bytes_in 0 145810 station_ip 5.202.14.108 145810 port 445 145810 unique_id port 145810 remote_ip 10.8.0.154 145811 username shokokian 145811 unique_id port 145811 terminate_cause User-Request 145811 bytes_out 518321 145811 bytes_in 11896608 145811 station_ip 31.59.36.215 145811 port 15730884 145811 nas_port_type Virtual 145811 remote_ip 5.5.5.15 145815 username sabaghnezhad 145815 mac 145815 bytes_out 54532 145815 bytes_in 50074 145815 station_ip 83.123.211.196 145815 port 245 145815 unique_id port 145815 remote_ip 10.8.1.130 145820 username moradi 145820 kill_reason Another user logged on this global unique id 145820 mac 145820 bytes_out 0 145820 bytes_in 0 145820 station_ip 46.225.208.84 145820 port 491 145820 unique_id port 145823 username moradi 145823 mac 145823 bytes_out 0 145823 bytes_in 0 145823 station_ip 46.225.208.84 145823 port 491 145823 unique_id port 145825 username farhad2 145825 mac 145825 bytes_out 1593078 145825 bytes_in 7901850 145825 station_ip 5.119.43.45 145825 port 484 145825 unique_id port 145825 remote_ip 10.8.0.190 146226 username barzegar 146226 mac 146226 bytes_out 0 146226 bytes_in 0 146226 station_ip 5.119.55.210 146226 port 451 146226 unique_id port 146226 remote_ip 10.8.0.234 146227 username barzegar 146227 mac 146227 bytes_out 0 146227 bytes_in 0 146227 station_ip 5.119.55.210 146227 port 451 146227 unique_id port 146227 remote_ip 10.8.0.234 146228 username jafari 146228 kill_reason Another user logged on this global unique id 146228 mac 146228 bytes_out 0 146228 bytes_in 0 146228 station_ip 5.200.108.21 146228 port 451 146228 unique_id port 146228 remote_ip 10.8.0.242 146233 username jafari 146233 mac 146233 bytes_out 0 146233 bytes_in 0 146233 station_ip 5.200.108.21 146233 port 451 146233 unique_id port 146238 username barzegar 146238 mac 146238 bytes_out 0 146238 bytes_in 0 146238 station_ip 5.119.55.210 146238 port 451 146238 unique_id port 146238 remote_ip 10.8.0.234 146239 username barzegar 146239 mac 146239 bytes_out 0 146239 bytes_in 0 146239 station_ip 5.119.55.210 146239 port 451 146239 unique_id port 146239 remote_ip 10.8.0.234 146240 username barzegar 146240 mac 146240 bytes_out 0 146240 bytes_in 0 146240 station_ip 5.119.55.210 146240 port 451 146240 unique_id port 146240 remote_ip 10.8.0.234 146242 username barzegar 146242 mac 146242 bytes_out 0 146242 bytes_in 0 146242 station_ip 5.119.55.210 146242 port 451 146242 unique_id port 146242 remote_ip 10.8.0.234 146243 username barzegar 146243 mac 146243 bytes_out 0 146243 bytes_in 0 146243 station_ip 5.119.55.210 146243 port 451 146243 unique_id port 146243 remote_ip 10.8.0.234 146247 username khalili 146247 mac 146247 bytes_out 3634490 146247 bytes_in 34971000 146247 station_ip 5.119.28.218 146247 port 445 146247 unique_id port 146247 remote_ip 10.8.0.86 146253 username mehdizare 146253 kill_reason Another user logged on this global unique id 146253 mac 146253 bytes_out 0 146253 bytes_in 0 146253 station_ip 5.120.18.104 146253 port 497 146253 unique_id port 146254 username sedighe 146254 mac 146254 bytes_out 0 146254 bytes_in 0 146254 station_ip 83.122.133.129 146254 port 469 146254 unique_id port 146264 username barzegar 146264 mac 146264 bytes_out 84636 146264 bytes_in 349190 146264 station_ip 5.119.55.210 146264 port 445 145814 mac 145814 bytes_out 0 145814 bytes_in 0 145814 station_ip 5.120.119.165 145814 port 452 145814 unique_id port 145814 remote_ip 10.8.0.166 145817 username jafari 145817 kill_reason Another user logged on this global unique id 145817 mac 145817 bytes_out 0 145817 bytes_in 0 145817 station_ip 89.34.35.24 145817 port 489 145817 unique_id port 145818 username yaghobi 145818 mac 145818 bytes_out 0 145818 bytes_in 0 145818 station_ip 37.129.22.196 145818 port 488 145818 unique_id port 145818 remote_ip 10.8.0.198 145821 username hashtadani3 145821 mac 145821 bytes_out 0 145821 bytes_in 0 145821 station_ip 5.202.14.108 145821 port 488 145821 unique_id port 145821 remote_ip 10.8.0.154 145822 username milan 145822 kill_reason Another user logged on this global unique id 145822 mac 145822 bytes_out 0 145822 bytes_in 0 145822 station_ip 5.120.31.183 145822 port 470 145822 unique_id port 146229 username saeed9658 146229 mac 146229 bytes_out 239443 146229 bytes_in 729985 146229 station_ip 5.120.179.203 146229 port 262 146229 unique_id port 146229 remote_ip 10.8.1.210 146230 username barzegar 146230 mac 146230 bytes_out 0 146230 bytes_in 0 146230 station_ip 5.119.55.210 146230 port 469 146230 unique_id port 146230 remote_ip 10.8.0.234 146232 username jafari 146232 kill_reason Another user logged on this global unique id 146232 mac 146232 bytes_out 0 146232 bytes_in 0 146232 station_ip 5.200.108.21 146232 port 451 146232 unique_id port 146234 username barzegar 146234 mac 146234 bytes_out 0 146234 bytes_in 0 146234 station_ip 5.119.55.210 146234 port 469 146234 unique_id port 146234 remote_ip 10.8.0.234 146235 username jafari 146235 kill_reason Another user logged on this global unique id 146235 mac 146235 bytes_out 0 146235 bytes_in 0 146235 station_ip 5.200.108.21 146235 port 451 146235 unique_id port 146235 remote_ip 10.8.0.242 146236 username barzegar 146236 mac 146236 bytes_out 0 146236 bytes_in 0 146236 station_ip 5.119.55.210 146236 port 469 146236 unique_id port 146236 remote_ip 10.8.0.234 146237 username jafari 146237 mac 146237 bytes_out 0 146237 bytes_in 0 146237 station_ip 5.200.108.21 146237 port 451 146237 unique_id port 146244 username afarin1 146244 mac 146244 bytes_out 670375 146244 bytes_in 6280517 146244 station_ip 31.56.158.69 146244 port 452 146244 unique_id port 146244 remote_ip 10.8.0.118 146245 username hosseine 146245 mac 146245 bytes_out 0 146245 bytes_in 0 146245 station_ip 83.122.25.212 146245 port 488 146245 unique_id port 146246 username sedighe 146246 mac 146246 bytes_out 736023 146246 bytes_in 12472594 146246 station_ip 83.122.133.129 146246 port 451 146246 unique_id port 146246 remote_ip 10.8.0.146 146248 username barzegar 146248 mac 146248 bytes_out 0 146248 bytes_in 0 146248 station_ip 5.119.55.210 146248 port 445 146248 unique_id port 146248 remote_ip 10.8.0.234 146249 username mehdizare 146249 kill_reason Another user logged on this global unique id 146249 mac 146249 bytes_out 0 146249 bytes_in 0 146249 station_ip 5.120.18.104 146249 port 497 146249 unique_id port 146249 remote_ip 10.8.0.90 146250 username barzegar 146250 mac 146250 bytes_out 0 146250 bytes_in 0 146250 station_ip 5.119.55.210 146250 port 445 146250 unique_id port 146250 remote_ip 10.8.0.234 146251 username sedighe 146251 kill_reason Another user logged on this global unique id 146251 mac 146251 bytes_out 0 146251 bytes_in 0 146251 station_ip 83.122.133.129 146251 port 469 146251 unique_id port 145827 bytes_in 0 145827 station_ip 89.34.35.24 145827 port 489 145827 unique_id port 145828 username mosi 145828 kill_reason Another user logged on this global unique id 145828 mac 145828 bytes_out 0 145828 bytes_in 0 145828 station_ip 78.39.126.55 145828 port 451 145828 unique_id port 145828 remote_ip 10.8.0.138 145829 username vanila 145829 mac 145829 bytes_out 0 145829 bytes_in 0 145829 station_ip 83.123.13.194 145829 port 485 145829 unique_id port 145829 remote_ip 10.8.0.178 145830 username alihosseini1 145830 mac 145830 bytes_out 0 145830 bytes_in 0 145830 station_ip 5.120.119.165 145830 port 488 145830 unique_id port 145830 remote_ip 10.8.0.166 145831 username yarmohamadi 145831 kill_reason Another user logged on this global unique id 145831 mac 145831 bytes_out 0 145831 bytes_in 0 145831 station_ip 5.119.138.103 145831 port 469 145831 unique_id port 145832 username alihosseini1 145832 mac 145832 bytes_out 0 145832 bytes_in 0 145832 station_ip 5.120.119.165 145832 port 485 145832 unique_id port 145832 remote_ip 10.8.0.166 145833 username hashtadani3 145833 mac 145833 bytes_out 0 145833 bytes_in 0 145833 station_ip 5.202.14.108 145833 port 485 145833 unique_id port 145833 remote_ip 10.8.0.154 145834 username jafari 145834 mac 145834 bytes_out 0 145834 bytes_in 0 145834 station_ip 89.34.35.24 145834 port 489 145834 unique_id port 145835 username mohammadjavad 145835 mac 145835 bytes_out 0 145835 bytes_in 0 145835 station_ip 83.123.229.189 145835 port 491 145835 unique_id port 145835 remote_ip 10.8.0.142 145836 username barzegar 145836 mac 145836 bytes_out 2629 145836 bytes_in 5073 145836 station_ip 5.119.55.210 145836 port 259 145836 unique_id port 145836 remote_ip 10.8.1.174 145837 username alihosseini1 145837 mac 145837 bytes_out 0 145837 bytes_in 0 145837 station_ip 5.120.119.165 145837 port 485 145837 unique_id port 145837 remote_ip 10.8.0.166 145838 username vanila 145838 mac 145838 bytes_out 6025776 145838 bytes_in 1042972 145838 station_ip 83.123.13.194 145838 port 484 145838 unique_id port 145838 remote_ip 10.8.0.178 145839 username hamidsalari 145839 mac 145839 bytes_out 0 145839 bytes_in 0 145839 station_ip 5.119.134.130 145839 port 490 145839 unique_id port 145839 remote_ip 10.8.0.222 145840 username sabaghnezhad 145840 mac 145840 bytes_out 31500 145840 bytes_in 34809 145840 station_ip 83.123.211.196 145840 port 452 145840 unique_id port 145840 remote_ip 10.8.0.186 145841 username alihosseini1 145841 mac 145841 bytes_out 49010 145841 bytes_in 134247 145841 station_ip 5.120.119.165 145841 port 259 145841 unique_id port 145841 remote_ip 10.8.1.106 145842 username barzegar 145842 mac 145842 bytes_out 0 145842 bytes_in 0 145842 station_ip 5.119.55.210 145842 port 259 145842 unique_id port 145842 remote_ip 10.8.1.174 145843 username mosi 145843 kill_reason Another user logged on this global unique id 145843 mac 145843 bytes_out 0 145843 bytes_in 0 145843 station_ip 78.39.126.55 145843 port 451 145843 unique_id port 145844 username alihosseini1 145844 mac 145844 bytes_out 7607 145844 bytes_in 15575 145844 station_ip 5.120.119.165 145844 port 489 145844 unique_id port 145844 remote_ip 10.8.0.166 145845 username alihosseini1 145845 mac 145845 bytes_out 0 145845 bytes_in 0 145845 station_ip 5.120.119.165 145845 port 491 145845 unique_id port 145845 remote_ip 10.8.0.166 145846 username yahodi 145846 kill_reason Another user logged on this global unique id 145846 mac 145846 bytes_out 0 145846 bytes_in 0 145846 station_ip 37.129.55.239 145846 port 490 145846 unique_id port 145846 remote_ip 10.8.0.202 145847 username hashtadani3 145847 mac 145847 bytes_out 0 145847 bytes_in 0 145847 station_ip 5.202.14.108 145847 port 488 145847 unique_id port 145847 remote_ip 10.8.0.154 145848 username alihosseini1 145848 mac 145848 bytes_out 0 145848 bytes_in 0 145848 station_ip 5.120.119.165 145848 port 259 145848 unique_id port 145848 remote_ip 10.8.1.106 145864 username aminvpn 145864 mac 145864 bytes_out 0 145864 bytes_in 0 145864 station_ip 37.129.188.209 145864 port 469 145864 unique_id port 145864 remote_ip 10.8.0.14 145866 username barzegar 145866 mac 145866 bytes_out 12595 145866 bytes_in 15947 145866 station_ip 5.119.55.210 145866 port 259 145866 unique_id port 145866 remote_ip 10.8.1.174 145870 username vanila 145870 mac 145870 bytes_out 75297 145870 bytes_in 111717 145870 station_ip 83.123.13.194 145870 port 493 145870 unique_id port 145870 remote_ip 10.8.0.178 145871 username jafari 145871 kill_reason Another user logged on this global unique id 145871 mac 145871 bytes_out 0 145871 bytes_in 0 145871 station_ip 5.200.110.155 145871 port 489 145871 unique_id port 145871 remote_ip 10.8.0.242 145874 username alihosseini1 145874 mac 145874 bytes_out 57095 145874 bytes_in 88374 145874 station_ip 5.120.119.165 145874 port 469 145874 unique_id port 145874 remote_ip 10.8.0.166 145879 username barzegar 145879 mac 145879 bytes_out 0 145879 bytes_in 0 145879 station_ip 5.119.55.210 145879 port 485 145879 unique_id port 145879 remote_ip 10.8.0.234 145880 username aminvpn 145880 mac 145880 bytes_out 57338 145880 bytes_in 163199 145880 station_ip 37.129.168.33 145880 port 469 145880 unique_id port 145880 remote_ip 10.8.0.14 145881 username hashtadani3 145881 mac 145881 bytes_out 0 145881 bytes_in 0 145881 station_ip 83.123.221.221 145881 port 491 145881 unique_id port 145884 username milan 145884 kill_reason Another user logged on this global unique id 145884 mac 145884 bytes_out 0 145884 bytes_in 0 145884 station_ip 5.120.31.183 145884 port 470 145884 unique_id port 145885 username kalantary 145885 mac 145885 bytes_out 0 145885 bytes_in 0 145885 station_ip 83.122.62.183 145885 port 245 145885 unique_id port 145885 remote_ip 10.8.1.26 145886 username hashtadani3 145886 mac 145886 bytes_out 2959806 145886 bytes_in 17776689 145886 station_ip 83.123.221.221 145886 port 469 145886 unique_id port 145886 remote_ip 10.8.0.154 145889 username alirezazadeh 145889 unique_id port 145889 terminate_cause Lost-Carrier 145889 bytes_out 3116283 145889 bytes_in 48514055 145889 station_ip 5.119.95.42 145889 port 15730885 145889 nas_port_type Virtual 145889 remote_ip 5.5.5.252 145893 username barzegar 145893 mac 145893 bytes_out 14415 145893 bytes_in 28746 145893 station_ip 5.119.55.210 145893 port 491 145893 unique_id port 145893 remote_ip 10.8.0.234 145900 username hamidsalari 145900 mac 145900 bytes_out 195684 145900 bytes_in 1016086 145900 station_ip 5.119.31.212 145900 port 493 145900 unique_id port 145900 remote_ip 10.8.0.222 145901 username hashtadani3 145901 mac 145901 bytes_out 0 145901 bytes_in 0 145901 station_ip 83.123.221.221 145901 port 484 145901 unique_id port 145901 remote_ip 10.8.0.154 145904 username mosi 145904 kill_reason Another user logged on this global unique id 145904 mac 145904 bytes_out 0 145904 bytes_in 0 145904 station_ip 78.39.126.55 145904 port 451 145904 unique_id port 145905 username barzegar 145849 username hamid 145849 kill_reason Another user logged on this global unique id 145849 mac 145849 bytes_out 0 145849 bytes_in 0 145849 station_ip 83.122.124.0 145849 port 445 145849 unique_id port 145849 remote_ip 10.8.0.106 145850 username alihosseini1 145850 mac 145850 bytes_out 0 145850 bytes_in 0 145850 station_ip 5.120.119.165 145850 port 491 145850 unique_id port 145850 remote_ip 10.8.0.166 145853 username yarmohamadi 145853 kill_reason Another user logged on this global unique id 145853 mac 145853 bytes_out 0 145853 bytes_in 0 145853 station_ip 5.119.138.103 145853 port 469 145853 unique_id port 145854 username malekpoir 145854 kill_reason Another user logged on this global unique id 145854 mac 145854 bytes_out 0 145854 bytes_in 0 145854 station_ip 5.119.97.234 145854 port 492 145854 unique_id port 145854 remote_ip 10.8.0.58 145857 username yarmohamadi 145857 mac 145857 bytes_out 0 145857 bytes_in 0 145857 station_ip 5.119.138.103 145857 port 469 145857 unique_id port 145858 username aminvpn 145858 mac 145858 bytes_out 0 145858 bytes_in 0 145858 station_ip 91.251.134.84 145858 port 488 145858 unique_id port 145858 remote_ip 10.8.0.14 145860 username yahodi 145860 mac 145860 bytes_out 0 145860 bytes_in 0 145860 station_ip 37.129.55.239 145860 port 490 145860 unique_id port 145862 username hamid 145862 kill_reason Another user logged on this global unique id 145862 mac 145862 bytes_out 0 145862 bytes_in 0 145862 station_ip 83.122.124.0 145862 port 445 145862 unique_id port 145865 username alihosseini1 145865 mac 145865 bytes_out 0 145865 bytes_in 0 145865 station_ip 5.120.119.165 145865 port 490 145865 unique_id port 145865 remote_ip 10.8.0.166 145869 username hamid 145869 kill_reason Another user logged on this global unique id 145869 mac 145869 bytes_out 0 145869 bytes_in 0 145869 station_ip 83.122.124.0 145869 port 445 145869 unique_id port 145872 username hashtadani3 145872 kill_reason Another user logged on this global unique id 145872 mac 145872 bytes_out 0 145872 bytes_in 0 145872 station_ip 83.123.221.221 145872 port 491 145872 unique_id port 145872 remote_ip 10.8.0.154 145875 username barzegar 145875 mac 145875 bytes_out 0 145875 bytes_in 0 145875 station_ip 5.119.55.210 145875 port 469 145875 unique_id port 145875 remote_ip 10.8.0.234 145883 username aminvpn 145883 mac 145883 bytes_out 18524 145883 bytes_in 26113 145883 station_ip 37.129.168.33 145883 port 469 145883 unique_id port 145883 remote_ip 10.8.0.14 145887 username mosi 145887 kill_reason Another user logged on this global unique id 145887 mac 145887 bytes_out 0 145887 bytes_in 0 145887 station_ip 78.39.126.55 145887 port 451 145887 unique_id port 145888 username hashtadani3 145888 mac 145888 bytes_out 0 145888 bytes_in 0 145888 station_ip 83.123.221.221 145888 port 469 145888 unique_id port 145888 remote_ip 10.8.0.154 145897 username forozandeh1 145897 mac 145897 bytes_out 331836 145897 bytes_in 800619 145897 station_ip 37.129.136.93 145897 port 469 145897 unique_id port 145897 remote_ip 10.8.0.130 145899 username hashtadani3 145899 mac 145899 bytes_out 0 145899 bytes_in 0 145899 station_ip 83.123.221.221 145899 port 469 145899 unique_id port 145899 remote_ip 10.8.0.154 145913 username khalili 145913 mac 145913 bytes_out 0 145913 bytes_in 0 145913 station_ip 5.119.28.218 145913 port 259 145913 unique_id port 145913 remote_ip 10.8.1.18 145914 username yahodi 145914 mac 145914 bytes_out 419792 145914 bytes_in 6938263 145914 station_ip 37.129.38.119 145851 username kalantary 145851 mac 145851 bytes_out 1312021 145851 bytes_in 6728517 145851 station_ip 83.122.94.115 145851 port 245 145851 unique_id port 145851 remote_ip 10.8.1.26 145852 username hashtadani3 145852 mac 145852 bytes_out 95570 145852 bytes_in 112782 145852 station_ip 5.202.132.255 145852 port 489 145852 unique_id port 145852 remote_ip 10.8.0.154 145855 username aminvpn 145855 mac 145855 bytes_out 0 145855 bytes_in 0 145855 station_ip 83.123.194.106 145855 port 488 145855 unique_id port 145855 remote_ip 10.8.0.14 145856 username barzegar 145856 mac 145856 bytes_out 0 145856 bytes_in 0 145856 station_ip 5.119.55.210 145856 port 259 145856 unique_id port 145856 remote_ip 10.8.1.174 145859 username aminvpn 145859 unique_id port 145859 terminate_cause Lost-Carrier 145859 bytes_out 3799619 145859 bytes_in 7629847 145859 station_ip 5.233.49.34 145859 port 15730886 145859 nas_port_type Virtual 145859 remote_ip 5.5.5.254 145861 username alihosseini1 145861 mac 145861 bytes_out 40081 145861 bytes_in 37674 145861 station_ip 5.120.119.165 145861 port 245 145861 unique_id port 145861 remote_ip 10.8.1.106 145863 username godarzi 145863 mac 145863 bytes_out 8919399 145863 bytes_in 13005820 145863 station_ip 5.202.5.1 145863 port 260 145863 unique_id port 145863 remote_ip 10.8.1.230 145867 username aminvpn 145867 mac 145867 bytes_out 29353 145867 bytes_in 49063 145867 station_ip 37.129.188.209 145867 port 245 145867 unique_id port 145867 remote_ip 10.8.1.6 145868 username vanila 145868 mac 145868 bytes_out 9414718 145868 bytes_in 24014572 145868 station_ip 83.123.13.194 145868 port 485 145868 unique_id port 145868 remote_ip 10.8.0.178 145873 username barzegar 145873 mac 145873 bytes_out 0 145873 bytes_in 0 145873 station_ip 5.119.55.210 145873 port 490 145873 unique_id port 145873 remote_ip 10.8.0.234 145876 username jafari 145876 mac 145876 bytes_out 0 145876 bytes_in 0 145876 station_ip 5.200.110.155 145876 port 489 145876 unique_id port 145877 username hashtadani3 145877 kill_reason Another user logged on this global unique id 145877 mac 145877 bytes_out 0 145877 bytes_in 0 145877 station_ip 83.123.221.221 145877 port 491 145877 unique_id port 145878 username hamid 145878 kill_reason Another user logged on this global unique id 145878 mac 145878 bytes_out 0 145878 bytes_in 0 145878 station_ip 83.122.124.0 145878 port 445 145878 unique_id port 145882 username hashtadani3 145882 mac 145882 bytes_out 0 145882 bytes_in 0 145882 station_ip 83.123.221.221 145882 port 485 145882 unique_id port 145882 remote_ip 10.8.0.154 145890 username aminvpn 145890 mac 145890 bytes_out 2350405 145890 bytes_in 1765072 145890 station_ip 5.119.78.71 145890 port 489 145890 unique_id port 145890 remote_ip 10.8.0.14 145891 username kamali2 145891 mac 145891 bytes_out 5385198 145891 bytes_in 37511257 145891 station_ip 5.119.132.231 145891 port 485 145891 unique_id port 145891 remote_ip 10.8.0.214 145892 username aminvpn 145892 mac 145892 bytes_out 0 145892 bytes_in 0 145892 station_ip 83.123.190.161 145892 port 469 145892 unique_id port 145892 remote_ip 10.8.0.14 145894 username mohammadjavad 145894 mac 145894 bytes_out 1283576 145894 bytes_in 19751314 145894 station_ip 113.203.111.229 145894 port 490 145894 unique_id port 145894 remote_ip 10.8.0.142 145895 username hashtadani3 145895 mac 145895 bytes_out 0 145895 bytes_in 0 145895 station_ip 83.123.221.221 145895 port 493 145895 unique_id port 145895 remote_ip 10.8.0.154 145896 username hamidsalari 145896 mac 145896 bytes_out 1166687 145896 bytes_in 4866809 145896 station_ip 5.120.155.66 145896 port 484 145896 unique_id port 145896 remote_ip 10.8.0.222 145898 username vanila 145898 mac 145898 bytes_out 0 145898 bytes_in 0 145898 station_ip 83.123.13.194 145898 port 485 145898 unique_id port 145898 remote_ip 10.8.0.178 145902 username farhad2 145902 kill_reason Another user logged on this global unique id 145902 mac 145902 bytes_out 0 145902 bytes_in 0 145902 station_ip 5.120.76.154 145902 port 491 145902 unique_id port 145902 remote_ip 10.8.0.190 145903 username jafari 145903 mac 145903 bytes_out 4173120 145903 bytes_in 32971586 145903 station_ip 94.24.93.73 145903 port 490 145903 unique_id port 145903 remote_ip 10.8.0.242 145906 username godarzi 145906 mac 145906 bytes_out 915596 145906 bytes_in 3103127 145906 station_ip 5.119.108.61 145906 port 259 145906 unique_id port 145906 remote_ip 10.8.1.230 145908 username farhad2 145908 mac 145908 bytes_out 0 145908 bytes_in 0 145908 station_ip 5.120.76.154 145908 port 491 145908 unique_id port 145909 username godarzi 145909 mac 145909 bytes_out 0 145909 bytes_in 0 145909 station_ip 5.119.108.61 145909 port 260 145909 unique_id port 145909 remote_ip 10.8.1.230 145911 username hamid 145911 mac 145911 bytes_out 0 145911 bytes_in 0 145911 station_ip 83.122.124.0 145911 port 445 145911 unique_id port 145912 username hashtadani3 145912 mac 145912 bytes_out 0 145912 bytes_in 0 145912 station_ip 83.123.221.221 145912 port 445 145912 unique_id port 145912 remote_ip 10.8.0.154 145916 username houshang 145916 mac 145916 bytes_out 0 145916 bytes_in 0 145916 station_ip 5.119.10.56 145916 port 493 145916 unique_id port 145916 remote_ip 10.8.0.22 145920 username farhad2 145920 mac 145920 bytes_out 96354 145920 bytes_in 395645 145920 station_ip 5.120.76.154 145920 port 485 145920 unique_id port 145920 remote_ip 10.8.0.190 145925 username jafari 145925 mac 145925 bytes_out 0 145925 bytes_in 0 145925 station_ip 94.24.93.73 145925 port 484 145925 unique_id port 145925 remote_ip 10.8.0.242 145928 username aminvpn 145928 unique_id port 145928 terminate_cause User-Request 145928 bytes_out 12665521 145928 bytes_in 494932310 145928 station_ip 5.119.76.142 145928 port 15730888 145928 nas_port_type Virtual 145928 remote_ip 5.5.5.250 145932 username godarzi 145932 mac 145932 bytes_out 0 145932 bytes_in 0 145932 station_ip 5.119.108.61 145932 port 260 145932 unique_id port 145932 remote_ip 10.8.1.230 145936 username hashtadani3 145936 mac 145936 bytes_out 0 145936 bytes_in 0 145936 station_ip 83.123.221.221 145936 port 245 145936 unique_id port 145936 remote_ip 10.8.1.94 145938 username barzegar 145938 mac 145938 bytes_out 0 145938 bytes_in 0 145938 station_ip 5.119.55.210 145938 port 261 145938 unique_id port 145938 remote_ip 10.8.1.174 145940 username farhad2 145940 mac 145940 bytes_out 0 145940 bytes_in 0 145940 station_ip 5.120.76.154 145940 port 245 145940 unique_id port 145940 remote_ip 10.8.1.222 145950 username aminvpn 145950 mac 145950 bytes_out 0 145950 bytes_in 0 145950 station_ip 5.119.78.71 145950 port 489 145950 unique_id port 145950 remote_ip 10.8.0.14 145953 username barzegar 145953 kill_reason Maximum check online fails reached 145953 mac 145953 bytes_out 0 145953 bytes_in 0 145953 station_ip 5.119.55.210 145953 port 245 145953 unique_id port 145905 mac 145905 bytes_out 0 145905 bytes_in 0 145905 station_ip 5.119.55.210 145905 port 245 145905 unique_id port 145905 remote_ip 10.8.1.174 145907 username hashtadani3 145907 mac 145907 bytes_out 0 145907 bytes_in 0 145907 station_ip 83.123.221.221 145907 port 485 145907 unique_id port 145907 remote_ip 10.8.0.154 145910 username khalili 145910 mac 145910 bytes_out 2796177 145910 bytes_in 40679167 145910 station_ip 5.119.28.218 145910 port 262 145910 unique_id port 145910 remote_ip 10.8.1.18 145915 username farhad2 145915 mac 145915 bytes_out 2762380 145915 bytes_in 38661372 145915 station_ip 5.120.76.154 145915 port 485 145915 unique_id port 145915 remote_ip 10.8.0.190 145918 username fezealinaghi 145918 kill_reason Another user logged on this global unique id 145918 mac 145918 bytes_out 0 145918 bytes_in 0 145918 station_ip 83.123.17.232 145918 port 482 145918 unique_id port 145919 username hashtadani3 145919 mac 145919 bytes_out 1644 145919 bytes_in 4556 145919 station_ip 83.123.221.221 145919 port 491 145919 unique_id port 145919 remote_ip 10.8.0.154 145924 username hashtadani3 145924 kill_reason Maximum check online fails reached 145924 mac 145924 bytes_out 0 145924 bytes_in 0 145924 station_ip 83.123.221.221 145924 port 259 145924 unique_id port 145927 username malekpoir 145927 kill_reason Another user logged on this global unique id 145927 mac 145927 bytes_out 0 145927 bytes_in 0 145927 station_ip 5.119.97.234 145927 port 492 145927 unique_id port 145929 username farhad2 145929 mac 145929 bytes_out 279367 145929 bytes_in 1164442 145929 station_ip 5.120.76.154 145929 port 490 145929 unique_id port 145929 remote_ip 10.8.0.190 145930 username mosi 145930 kill_reason Another user logged on this global unique id 145930 mac 145930 bytes_out 0 145930 bytes_in 0 145930 station_ip 78.39.126.55 145930 port 451 145930 unique_id port 145931 username milan 145931 kill_reason Another user logged on this global unique id 145931 mac 145931 bytes_out 0 145931 bytes_in 0 145931 station_ip 5.120.31.183 145931 port 470 145931 unique_id port 145933 username vanila 145933 mac 145933 bytes_out 6018243 145933 bytes_in 471446 145933 station_ip 83.122.80.109 145933 port 484 145933 unique_id port 145933 remote_ip 10.8.0.178 145941 username hashtadani3 145941 kill_reason Maximum number of concurrent logins reached 145941 mac 145941 bytes_out 0 145941 bytes_in 0 145941 station_ip 83.123.221.221 145941 port 245 145941 unique_id port 145942 username aminvpn 145942 mac 145942 bytes_out 146753 145942 bytes_in 293040 145942 station_ip 5.119.78.71 145942 port 489 145942 unique_id port 145942 remote_ip 10.8.0.14 145944 username hashtadani3 145944 kill_reason Maximum check online fails reached 145944 mac 145944 bytes_out 0 145944 bytes_in 0 145944 station_ip 83.123.221.221 145944 port 493 145944 unique_id port 145948 username farhad2 145948 mac 145948 bytes_out 0 145948 bytes_in 0 145948 station_ip 5.120.76.154 145948 port 260 145948 unique_id port 145948 remote_ip 10.8.1.222 145952 username aminvpn 145952 mac 145952 bytes_out 0 145952 bytes_in 0 145952 station_ip 5.119.78.71 145952 port 489 145952 unique_id port 145952 remote_ip 10.8.0.14 145954 username sedighe 145954 mac 145954 bytes_out 0 145954 bytes_in 0 145954 station_ip 113.203.13.216 145954 port 491 145954 unique_id port 145954 remote_ip 10.8.0.146 145957 username barzegar 145957 mac 145957 bytes_out 4339 145957 bytes_in 6124 145957 station_ip 5.119.55.210 145957 port 489 145957 unique_id port 145914 port 491 145914 unique_id port 145914 remote_ip 10.8.0.202 145917 username forozandeh1 145917 mac 145917 bytes_out 198580 145917 bytes_in 556239 145917 station_ip 83.122.121.154 145917 port 490 145917 unique_id port 145917 remote_ip 10.8.0.130 145921 username alipour 145921 kill_reason Another user logged on this global unique id 145921 mac 145921 bytes_out 0 145921 bytes_in 0 145921 station_ip 113.203.51.30 145921 port 486 145921 unique_id port 145921 remote_ip 10.8.0.102 145922 username jafari 145922 mac 145922 bytes_out 0 145922 bytes_in 0 145922 station_ip 94.24.93.73 145922 port 484 145922 unique_id port 145922 remote_ip 10.8.0.242 145923 username hashtadani3 145923 kill_reason Maximum check online fails reached 145923 mac 145923 bytes_out 0 145923 bytes_in 0 145923 station_ip 83.123.221.221 145923 port 485 145923 unique_id port 145926 username barzegar 145926 mac 145926 bytes_out 0 145926 bytes_in 0 145926 station_ip 5.119.55.210 145926 port 245 145926 unique_id port 145926 remote_ip 10.8.1.174 145934 username hashtadani3 145934 mac 145934 bytes_out 1186399 145934 bytes_in 4135039 145934 station_ip 83.123.221.221 145934 port 245 145934 unique_id port 145934 remote_ip 10.8.1.94 145935 username hashtadani3 145935 kill_reason Maximum check online fails reached 145935 mac 145935 bytes_out 0 145935 bytes_in 0 145935 station_ip 83.123.221.221 145935 port 484 145935 unique_id port 145937 username hashtadani3 145937 kill_reason Maximum check online fails reached 145937 mac 145937 bytes_out 0 145937 bytes_in 0 145937 station_ip 83.123.221.221 145937 port 490 145937 unique_id port 145939 username hashtadani3 145939 mac 145939 bytes_out 0 145939 bytes_in 0 145939 station_ip 83.123.221.221 145939 port 260 145939 unique_id port 145939 remote_ip 10.8.1.94 145943 username hashtadani3 145943 kill_reason Maximum check online fails reached 145943 mac 145943 bytes_out 0 145943 bytes_in 0 145943 station_ip 83.123.221.221 145943 port 494 145943 unique_id port 145945 username aminvpn 145945 mac 145945 bytes_out 316622 145945 bytes_in 834942 145945 station_ip 83.122.7.223 145945 port 495 145945 unique_id port 145945 remote_ip 10.8.0.14 145946 username aminvpn 145946 mac 145946 bytes_out 0 145946 bytes_in 0 145946 station_ip 5.119.78.71 145946 port 489 145946 unique_id port 145946 remote_ip 10.8.0.14 145947 username aminvpn 145947 mac 145947 bytes_out 0 145947 bytes_in 0 145947 station_ip 83.122.7.223 145947 port 495 145947 unique_id port 145947 remote_ip 10.8.0.14 145949 username barzegar 145949 mac 145949 bytes_out 0 145949 bytes_in 0 145949 station_ip 5.119.55.210 145949 port 245 145949 unique_id port 145949 remote_ip 10.8.1.174 145951 username aminvpn 145951 mac 145951 bytes_out 0 145951 bytes_in 0 145951 station_ip 83.122.7.223 145951 port 496 145951 unique_id port 145951 remote_ip 10.8.0.14 145955 username mosi 145955 kill_reason Another user logged on this global unique id 145955 mac 145955 bytes_out 0 145955 bytes_in 0 145955 station_ip 78.39.126.55 145955 port 451 145955 unique_id port 145956 username aminvpn 145956 mac 145956 bytes_out 0 145956 bytes_in 0 145956 station_ip 83.122.7.223 145956 port 497 145956 unique_id port 145956 remote_ip 10.8.0.14 145958 username sekonji3 145958 mac 145958 bytes_out 0 145958 bytes_in 0 145958 station_ip 83.122.250.50 145958 port 491 145958 unique_id port 145958 remote_ip 10.8.0.6 145963 username barzegar 145963 mac 145963 bytes_out 0 145963 bytes_in 0 145957 remote_ip 10.8.0.234 145960 username fezealinaghi 145960 kill_reason Another user logged on this global unique id 145960 mac 145960 bytes_out 0 145960 bytes_in 0 145960 station_ip 83.123.17.232 145960 port 482 145960 unique_id port 145962 username vanila 145962 mac 145962 bytes_out 0 145962 bytes_in 0 145962 station_ip 83.122.80.109 145962 port 496 145962 unique_id port 145962 remote_ip 10.8.0.178 145966 username godarzi 145966 mac 145966 bytes_out 200303 145966 bytes_in 652703 145966 station_ip 5.119.108.61 145966 port 260 145966 unique_id port 145966 remote_ip 10.8.1.230 145972 username mosi 145972 kill_reason Another user logged on this global unique id 145972 mac 145972 bytes_out 0 145972 bytes_in 0 145972 station_ip 78.39.126.55 145972 port 451 145972 unique_id port 145974 username sedighe 145974 mac 145974 bytes_out 262726 145974 bytes_in 2951481 145974 station_ip 113.203.13.216 145974 port 499 145974 unique_id port 145974 remote_ip 10.8.0.146 145976 username vanila 145976 mac 145976 bytes_out 13295434 145976 bytes_in 6057088 145976 station_ip 83.122.80.109 145976 port 491 145976 unique_id port 145976 remote_ip 10.8.0.178 145977 username mosi 145977 kill_reason Another user logged on this global unique id 145977 mac 145977 bytes_out 0 145977 bytes_in 0 145977 station_ip 78.39.126.55 145977 port 451 145977 unique_id port 145978 username fezealinaghi 145978 kill_reason Another user logged on this global unique id 145978 mac 145978 bytes_out 0 145978 bytes_in 0 145978 station_ip 83.123.17.232 145978 port 482 145978 unique_id port 145982 username alihosseini1 145982 mac 145982 bytes_out 2683151 145982 bytes_in 28377853 145982 station_ip 5.119.105.253 145982 port 489 145982 unique_id port 145982 remote_ip 10.8.0.166 145985 username mosi 145985 kill_reason Another user logged on this global unique id 145985 mac 145985 bytes_out 0 145985 bytes_in 0 145985 station_ip 78.39.126.55 145985 port 451 145985 unique_id port 145987 username malekpoir 145987 kill_reason Another user logged on this global unique id 145987 mac 145987 bytes_out 0 145987 bytes_in 0 145987 station_ip 5.119.97.234 145987 port 492 145987 unique_id port 145989 username rezaei 145989 kill_reason Another user logged on this global unique id 145989 mac 145989 bytes_out 0 145989 bytes_in 0 145989 station_ip 5.119.53.199 145989 port 498 145989 unique_id port 145990 username malekpoir 145990 mac 145990 bytes_out 0 145990 bytes_in 0 145990 station_ip 5.119.97.234 145990 port 492 145990 unique_id port 146000 username mansour 146000 mac 146000 bytes_out 0 146000 bytes_in 0 146000 station_ip 5.202.98.165 146000 port 489 146000 unique_id port 146000 remote_ip 10.8.0.30 146002 username forozandeh1 146002 mac 146002 bytes_out 0 146002 bytes_in 0 146002 station_ip 37.129.147.145 146002 port 491 146002 unique_id port 146002 remote_ip 10.8.0.130 146010 username farhad2 146001 bytes_out 0 146010 kill_reason Maximum check online fails reached 146010 mac 146010 bytes_out 0 146010 bytes_in 0 146010 station_ip 5.120.76.154 146010 port 261 146010 unique_id port 146013 username aminvpn 146013 mac 146013 bytes_out 0 146013 bytes_in 0 146013 station_ip 83.123.128.25 146013 port 496 146013 unique_id port 146013 remote_ip 10.8.0.14 146019 username hassan 146019 kill_reason Another user logged on this global unique id 146019 mac 146019 bytes_out 0 146019 bytes_in 0 146019 station_ip 5.120.135.7 146019 port 502 146019 unique_id port 146020 username aminvpn 146020 mac 146020 bytes_out 0 146020 bytes_in 0 146020 station_ip 83.123.128.25 145959 username aminvpn 145959 mac 145959 bytes_out 0 145959 bytes_in 0 145959 station_ip 5.119.78.71 145959 port 498 145959 unique_id port 145959 remote_ip 10.8.0.14 145961 username kalantary 145961 mac 145961 bytes_out 0 145961 bytes_in 0 145961 station_ip 83.122.49.175 145961 port 260 145961 unique_id port 145961 remote_ip 10.8.1.26 145964 username aminvpn 145964 mac 145964 bytes_out 50611 145964 bytes_in 101135 145964 station_ip 83.122.7.223 145964 port 489 145964 unique_id port 145964 remote_ip 10.8.0.14 145969 username barzegar 145969 mac 145969 bytes_out 2715 145969 bytes_in 5694 145969 station_ip 5.119.55.210 145969 port 260 145969 unique_id port 145969 remote_ip 10.8.1.174 145973 username alireza 145973 kill_reason Relative expiration date has reached 145973 unique_id port 145973 bytes_out 0 145973 bytes_in 0 145973 station_ip 5.120.115.19 145973 port 15730891 145973 nas_port_type Virtual 145975 username barzegar 145975 mac 145975 bytes_out 44188 145975 bytes_in 125915 145975 station_ip 5.119.55.210 145975 port 495 145975 unique_id port 145975 remote_ip 10.8.0.234 145980 username alipour 145980 kill_reason Another user logged on this global unique id 145980 mac 145980 bytes_out 0 145980 bytes_in 0 145980 station_ip 113.203.51.30 145980 port 486 145980 unique_id port 145983 username barzegar 145983 mac 145983 bytes_out 0 145983 bytes_in 0 145983 station_ip 5.119.55.210 145983 port 260 145983 unique_id port 145983 remote_ip 10.8.1.174 145986 username barzegar 145986 mac 145986 bytes_out 45073 145986 bytes_in 49987 145986 station_ip 5.119.55.210 145986 port 260 145986 unique_id port 145986 remote_ip 10.8.1.174 145988 username alipour 145988 kill_reason Another user logged on this global unique id 145988 mac 145988 bytes_out 0 145988 bytes_in 0 145988 station_ip 113.203.51.30 145988 port 486 145988 unique_id port 145992 username fezealinaghi 145992 kill_reason Another user logged on this global unique id 145992 mac 145992 bytes_out 0 145992 bytes_in 0 145992 station_ip 83.123.17.232 145992 port 482 145992 unique_id port 145995 username barzegar 145995 mac 145995 bytes_out 0 145995 bytes_in 0 145995 station_ip 5.119.55.210 145995 port 260 145995 unique_id port 145995 remote_ip 10.8.1.174 145996 username farhad2 145996 mac 145996 bytes_out 0 145996 bytes_in 0 145996 station_ip 5.120.76.154 145996 port 496 145996 unique_id port 145996 remote_ip 10.8.0.190 145998 username barzegar 145998 mac 145998 bytes_out 0 145998 bytes_in 0 145998 station_ip 5.119.55.210 145998 port 260 145998 unique_id port 145998 remote_ip 10.8.1.174 145999 username sekonji3 145999 mac 145999 bytes_out 0 145999 bytes_in 0 145999 station_ip 83.122.250.50 145999 port 501 145999 unique_id port 145999 remote_ip 10.8.0.6 146001 username mosi 146001 kill_reason Another user logged on this global unique id 146001 mac 146001 bytes_in 0 146001 station_ip 78.39.126.55 146001 port 451 146001 unique_id port 146003 username barzegar 146003 mac 146003 bytes_out 2530 146003 bytes_in 4929 146003 station_ip 5.119.55.210 146003 port 260 146003 unique_id port 146003 remote_ip 10.8.1.174 146005 username farhad2 146005 mac 146005 bytes_out 729006 146005 bytes_in 2974537 146005 station_ip 5.120.76.154 146005 port 499 146005 unique_id port 146005 remote_ip 10.8.0.190 146007 username jafari 146007 kill_reason Another user logged on this global unique id 146007 mac 146007 bytes_out 0 146007 bytes_in 0 146007 station_ip 37.156.59.171 146007 port 495 145963 station_ip 5.119.55.210 145963 port 261 145963 unique_id port 145963 remote_ip 10.8.1.174 145965 username aminvpn 145965 mac 145965 bytes_out 0 145965 bytes_in 0 145965 station_ip 5.119.78.71 145965 port 491 145965 unique_id port 145965 remote_ip 10.8.0.14 145967 username aminvpn 145967 mac 145967 bytes_out 0 145967 bytes_in 0 145967 station_ip 83.122.7.223 145967 port 496 145967 unique_id port 145967 remote_ip 10.8.0.14 145968 username farhad2 145968 mac 145968 bytes_out 1617412 145968 bytes_in 9248995 145968 station_ip 5.120.76.154 145968 port 495 145968 unique_id port 145968 remote_ip 10.8.0.190 145970 username farhad2 145970 mac 145970 bytes_out 83084 145970 bytes_in 410139 145970 station_ip 5.120.76.154 145970 port 495 145970 unique_id port 145970 remote_ip 10.8.0.190 145971 username alipour 145971 kill_reason Another user logged on this global unique id 145971 mac 145971 bytes_out 0 145971 bytes_in 0 145971 station_ip 113.203.51.30 145971 port 486 145971 unique_id port 145979 username rezaei 145979 kill_reason Another user logged on this global unique id 145979 mac 145979 bytes_out 0 145979 bytes_in 0 145979 station_ip 5.119.53.199 145979 port 498 145979 unique_id port 145979 remote_ip 10.8.0.230 145981 username aminvpn 145981 unique_id port 145981 terminate_cause Lost-Carrier 145981 bytes_out 2887306 145981 bytes_in 11044597 145981 station_ip 5.233.49.34 145981 port 15730890 145981 nas_port_type Virtual 145981 remote_ip 5.5.5.254 145984 username kalantary 145984 mac 145984 bytes_out 698342 145984 bytes_in 2177195 145984 station_ip 83.122.49.175 145984 port 500 145984 unique_id port 145984 remote_ip 10.8.0.98 145991 username jafari 145991 kill_reason Another user logged on this global unique id 145991 mac 145991 bytes_out 0 145991 bytes_in 0 145991 station_ip 37.156.59.171 145991 port 495 145991 unique_id port 145991 remote_ip 10.8.0.242 145993 username kalantary 145993 mac 145993 bytes_out 0 145993 bytes_in 0 145993 station_ip 83.122.49.175 145993 port 499 145993 unique_id port 145993 remote_ip 10.8.0.98 145994 username rajaei 145994 kill_reason Another user logged on this global unique id 145994 mac 145994 bytes_out 0 145994 bytes_in 0 145994 station_ip 5.134.191.145 145994 port 500 145994 unique_id port 145994 remote_ip 10.8.0.34 145997 username amirabbas 145997 unique_id port 145997 terminate_cause User-Request 145997 bytes_out 41610343 145997 bytes_in 1078333263 145997 station_ip 37.27.32.211 145997 port 15730880 145997 nas_port_type Virtual 145997 remote_ip 5.5.5.255 146004 username hassan 146004 kill_reason Another user logged on this global unique id 146004 mac 146004 bytes_out 0 146004 bytes_in 0 146004 station_ip 5.120.135.7 146004 port 502 146004 unique_id port 146004 remote_ip 10.8.0.122 146006 username rajaei 146006 kill_reason Another user logged on this global unique id 146006 mac 146006 bytes_out 0 146006 bytes_in 0 146006 station_ip 5.134.191.145 146006 port 500 146006 unique_id port 146008 username alipour 146008 kill_reason Another user logged on this global unique id 146008 mac 146008 bytes_out 0 146008 bytes_in 0 146008 station_ip 113.203.51.30 146008 port 486 146008 unique_id port 146011 username vanila 146011 mac 146011 bytes_out 5989659 146011 bytes_in 882440 146011 station_ip 83.122.80.109 146011 port 496 146011 unique_id port 146011 remote_ip 10.8.0.178 146014 username rajaei 146014 kill_reason Another user logged on this global unique id 146014 mac 146014 bytes_out 0 146014 bytes_in 0 146014 station_ip 5.134.191.145 146014 port 500 146014 unique_id port 146015 username aminvpn 146015 mac 146007 unique_id port 146009 username hassan 146009 kill_reason Another user logged on this global unique id 146009 mac 146009 bytes_out 0 146009 bytes_in 0 146009 station_ip 5.120.135.7 146009 port 502 146009 unique_id port 146012 username aminvpn 146012 mac 146012 bytes_out 6092140 146012 bytes_in 6035538 146012 station_ip 5.119.78.71 146012 port 497 146012 unique_id port 146012 remote_ip 10.8.0.14 146017 username aminvpn 146017 mac 146017 bytes_out 239966 146017 bytes_in 2515950 146017 station_ip 83.123.128.25 146017 port 496 146017 unique_id port 146017 remote_ip 10.8.0.14 146018 username aminvpn 146018 mac 146018 bytes_out 0 146018 bytes_in 0 146018 station_ip 5.119.78.71 146018 port 497 146018 unique_id port 146018 remote_ip 10.8.0.14 146021 username aminvpn 146021 mac 146021 bytes_out 0 146021 bytes_in 0 146021 station_ip 5.119.78.71 146021 port 499 146021 unique_id port 146021 remote_ip 10.8.0.14 146026 username aminvpn 146026 mac 146026 bytes_out 0 146026 bytes_in 0 146026 station_ip 5.119.251.225 146026 port 499 146026 unique_id port 146026 remote_ip 10.8.0.14 146029 username aminvpn 146029 mac 146029 bytes_out 0 146029 bytes_in 0 146029 station_ip 5.119.251.225 146029 port 501 146029 unique_id port 146029 remote_ip 10.8.0.14 146030 username kalantary 146030 mac 146030 bytes_out 1642075 146030 bytes_in 21135925 146030 station_ip 83.122.35.179 146030 port 491 146030 unique_id port 146030 remote_ip 10.8.0.98 146032 username jafari 146032 kill_reason Another user logged on this global unique id 146032 mac 146032 bytes_out 0 146032 bytes_in 0 146032 station_ip 37.156.59.171 146032 port 495 146032 unique_id port 146035 username barzegar 146035 mac 146035 bytes_out 4322 146035 bytes_in 5534 146035 station_ip 5.119.55.210 146035 port 260 146035 unique_id port 146035 remote_ip 10.8.1.174 146045 username aminvpn 146045 mac 146045 bytes_out 0 146045 bytes_in 0 146045 station_ip 5.119.78.71 146045 port 499 146045 unique_id port 146045 remote_ip 10.8.0.14 146049 username jafari 146049 kill_reason Another user logged on this global unique id 146049 mac 146049 bytes_out 0 146049 bytes_in 0 146049 station_ip 37.156.59.171 146049 port 495 146049 unique_id port 146050 username aminvpn 146050 mac 146050 bytes_out 0 146050 bytes_in 0 146050 station_ip 83.123.128.25 146050 port 491 146050 unique_id port 146050 remote_ip 10.8.0.14 146051 username aminvpn 146051 mac 146051 bytes_out 0 146051 bytes_in 0 146051 station_ip 5.119.78.71 146051 port 501 146051 unique_id port 146051 remote_ip 10.8.0.14 146053 username aminvpn 146053 mac 146053 bytes_out 0 146053 bytes_in 0 146053 station_ip 5.119.78.71 146053 port 503 146053 unique_id port 146053 remote_ip 10.8.0.14 146054 username aminvpn 146054 mac 146054 bytes_out 0 146054 bytes_in 0 146054 station_ip 83.123.128.25 146054 port 491 146054 unique_id port 146054 remote_ip 10.8.0.14 146055 username aminvpn 146055 mac 146055 bytes_out 0 146055 bytes_in 0 146055 station_ip 5.119.78.71 146055 port 503 146055 unique_id port 146055 remote_ip 10.8.0.14 146056 username farhad2 146056 mac 146056 bytes_out 758984 146056 bytes_in 5411352 146056 station_ip 5.119.136.223 146056 port 496 146056 unique_id port 146056 remote_ip 10.8.0.190 146058 username rajaei 146058 kill_reason Another user logged on this global unique id 146058 mac 146058 bytes_out 0 146058 bytes_in 0 146058 station_ip 5.134.191.145 146058 port 500 146058 unique_id port 146015 bytes_out 0 146015 bytes_in 0 146015 station_ip 5.119.78.71 146015 port 497 146015 unique_id port 146015 remote_ip 10.8.0.14 146016 username farhad2 146016 mac 146016 bytes_out 0 146016 bytes_in 0 146016 station_ip 5.120.76.154 146016 port 499 146016 unique_id port 146016 remote_ip 10.8.0.190 146022 username vanila 146022 mac 146022 bytes_out 84289 146022 bytes_in 43214 146022 station_ip 83.122.80.109 146022 port 497 146022 unique_id port 146022 remote_ip 10.8.0.178 146023 username barzegar 146023 mac 146023 bytes_out 143805 146023 bytes_in 443638 146023 station_ip 5.119.55.210 146023 port 260 146023 unique_id port 146023 remote_ip 10.8.1.174 146024 username aminvpn 146024 mac 146024 bytes_out 0 146024 bytes_in 0 146024 station_ip 83.123.128.25 146024 port 501 146024 unique_id port 146024 remote_ip 10.8.0.14 146028 username aminvpn 146028 mac 146028 bytes_out 0 146028 bytes_in 0 146028 station_ip 83.123.128.25 146028 port 499 146028 unique_id port 146028 remote_ip 10.8.0.14 146034 username aminvpn 146034 mac 146034 bytes_out 0 146034 bytes_in 0 146034 station_ip 83.123.128.25 146034 port 491 146034 unique_id port 146034 remote_ip 10.8.0.14 146036 username rajaei 146036 kill_reason Another user logged on this global unique id 146036 mac 146036 bytes_out 0 146036 bytes_in 0 146036 station_ip 5.134.191.145 146036 port 500 146036 unique_id port 146037 username aminvpn 146037 mac 146037 bytes_out 0 146037 bytes_in 0 146037 station_ip 5.119.78.71 146037 port 496 146037 unique_id port 146037 remote_ip 10.8.0.14 146039 username aminvpn 146039 mac 146039 bytes_out 0 146039 bytes_in 0 146039 station_ip 5.119.78.71 146039 port 496 146039 unique_id port 146039 remote_ip 10.8.0.14 146041 username farhad2 146041 mac 146041 bytes_out 0 146041 bytes_in 0 146041 station_ip 5.119.136.223 146041 port 496 146041 unique_id port 146041 remote_ip 10.8.0.190 146052 username aminvpn 146052 mac 146052 bytes_out 0 146052 bytes_in 0 146052 station_ip 83.123.128.25 146052 port 491 146052 unique_id port 146052 remote_ip 10.8.0.14 146059 username aminvpn 146059 mac 146059 bytes_out 0 146059 bytes_in 0 146059 station_ip 5.119.78.71 146059 port 496 146059 unique_id port 146059 remote_ip 10.8.0.14 146066 username aminvpn 146066 mac 146066 bytes_out 0 146066 bytes_in 0 146066 station_ip 83.123.128.25 146066 port 503 146066 unique_id port 146066 remote_ip 10.8.0.14 146070 username hassan 146070 kill_reason Another user logged on this global unique id 146070 mac 146070 bytes_out 0 146070 bytes_in 0 146070 station_ip 5.120.135.7 146070 port 502 146070 unique_id port 146072 username farhad2 146072 mac 146072 bytes_out 0 146072 bytes_in 0 146072 station_ip 5.119.136.223 146072 port 499 146072 unique_id port 146072 remote_ip 10.8.0.190 146075 username mosi 146075 mac 146075 bytes_out 0 146075 bytes_in 0 146075 station_ip 85.185.171.214 146075 port 451 146075 unique_id port 146075 remote_ip 10.8.0.138 146077 username barzegar 146077 mac 146077 bytes_out 0 146077 bytes_in 0 146077 station_ip 5.119.55.210 146077 port 264 146077 unique_id port 146077 remote_ip 10.8.1.174 146079 username houshang 146079 mac 146079 bytes_out 0 146079 bytes_in 0 146079 station_ip 5.119.10.56 146079 port 497 146079 unique_id port 146080 username houshang 146080 mac 146080 bytes_out 0 146080 bytes_in 0 146080 station_ip 5.119.10.56 146080 port 451 146020 port 496 146020 unique_id port 146020 remote_ip 10.8.0.14 146025 username mosi 146025 kill_reason Another user logged on this global unique id 146025 mac 146025 bytes_out 0 146025 bytes_in 0 146025 station_ip 78.39.126.55 146025 port 451 146025 unique_id port 146027 username aminvpn 146027 mac 146027 bytes_out 0 146027 bytes_in 0 146027 station_ip 5.119.78.71 146027 port 501 146027 unique_id port 146027 remote_ip 10.8.0.14 146031 username aminvpn 146031 mac 146031 bytes_out 0 146031 bytes_in 0 146031 station_ip 5.119.78.71 146031 port 499 146031 unique_id port 146031 remote_ip 10.8.0.14 146033 username farhad2 146033 mac 146033 bytes_out 442278 146033 bytes_in 1621710 146033 station_ip 5.119.136.223 146033 port 496 146033 unique_id port 146033 remote_ip 10.8.0.190 146038 username aminvpn 146038 mac 146038 bytes_out 0 146038 bytes_in 0 146038 station_ip 83.123.128.25 146038 port 491 146038 unique_id port 146038 remote_ip 10.8.0.14 146040 username fezealinaghi 146040 kill_reason Another user logged on this global unique id 146040 mac 146040 bytes_out 0 146040 bytes_in 0 146040 station_ip 83.123.17.232 146040 port 482 146040 unique_id port 146042 username farhad2 146042 kill_reason Maximum check online fails reached 146042 mac 146042 bytes_out 0 146042 bytes_in 0 146042 station_ip 5.119.136.223 146042 port 260 146042 unique_id port 146043 username houshang 146043 kill_reason Another user logged on this global unique id 146043 mac 146043 bytes_out 0 146043 bytes_in 0 146043 station_ip 5.119.10.56 146043 port 497 146043 unique_id port 146043 remote_ip 10.8.0.22 146044 username aminvpn 146044 mac 146044 bytes_out 171578 146044 bytes_in 2372599 146044 station_ip 83.123.128.25 146044 port 491 146044 unique_id port 146044 remote_ip 10.8.0.14 146046 username alikomsari 146046 kill_reason Another user logged on this global unique id 146046 mac 146046 bytes_out 0 146046 bytes_in 0 146046 station_ip 5.120.158.205 146046 port 489 146046 unique_id port 146046 remote_ip 10.8.0.70 146047 username aminvpn 146047 mac 146047 bytes_out 0 146047 bytes_in 0 146047 station_ip 83.123.128.25 146047 port 491 146047 unique_id port 146047 remote_ip 10.8.0.14 146048 username aminvpn 146048 mac 146048 bytes_out 0 146048 bytes_in 0 146048 station_ip 5.119.78.71 146048 port 501 146048 unique_id port 146048 remote_ip 10.8.0.14 146057 username aminvpn 146057 mac 146057 bytes_out 0 146057 bytes_in 0 146057 station_ip 83.123.128.25 146057 port 504 146057 unique_id port 146057 remote_ip 10.8.0.14 146061 username aminvpn 146061 mac 146061 bytes_out 0 146061 bytes_in 0 146061 station_ip 83.123.128.25 146061 port 503 146061 unique_id port 146061 remote_ip 10.8.0.14 146063 username barzegar 146063 mac 146063 bytes_out 0 146063 bytes_in 0 146063 station_ip 5.119.55.210 146063 port 262 146063 unique_id port 146063 remote_ip 10.8.1.174 146064 username aminvpn 146064 mac 146064 bytes_out 0 146064 bytes_in 0 146064 station_ip 5.119.78.71 146064 port 496 146064 unique_id port 146064 remote_ip 10.8.0.14 146067 username houshang 146067 kill_reason Another user logged on this global unique id 146067 mac 146067 bytes_out 0 146067 bytes_in 0 146067 station_ip 5.119.10.56 146067 port 497 146067 unique_id port 146068 username aminvpn 146068 mac 146068 bytes_out 0 146068 bytes_in 0 146068 station_ip 5.119.78.71 146068 port 496 146068 unique_id port 146068 remote_ip 10.8.0.14 146073 username jafari 146073 kill_reason Another user logged on this global unique id 146060 username farhad2 146060 mac 146060 bytes_out 0 146060 bytes_in 0 146060 station_ip 5.119.136.223 146060 port 496 146060 unique_id port 146060 remote_ip 10.8.0.190 146062 username kalantary 146062 mac 146062 bytes_out 236478 146062 bytes_in 804815 146062 station_ip 83.122.35.179 146062 port 499 146062 unique_id port 146062 remote_ip 10.8.0.98 146065 username fezealinaghi 146065 kill_reason Another user logged on this global unique id 146065 mac 146065 bytes_out 0 146065 bytes_in 0 146065 station_ip 83.123.17.232 146065 port 482 146065 unique_id port 146069 username mosi 146069 mac 146069 bytes_out 0 146069 bytes_in 0 146069 station_ip 78.39.126.55 146069 port 451 146069 unique_id port 146071 username aminvpn 146071 mac 146071 bytes_out 0 146071 bytes_in 0 146071 station_ip 83.123.128.25 146071 port 503 146071 unique_id port 146071 remote_ip 10.8.0.14 146078 username hassan 146078 kill_reason Another user logged on this global unique id 146078 mac 146078 bytes_out 0 146078 bytes_in 0 146078 station_ip 5.120.135.7 146078 port 502 146078 unique_id port 146083 username fezealinaghi 146083 kill_reason Another user logged on this global unique id 146083 mac 146083 bytes_out 0 146083 bytes_in 0 146083 station_ip 83.123.17.232 146083 port 482 146083 unique_id port 146087 username farhad2 146087 mac 146087 bytes_out 210593 146087 bytes_in 1215688 146087 station_ip 5.119.136.223 146087 port 263 146087 unique_id port 146087 remote_ip 10.8.1.222 146095 username fezealinaghi 146095 kill_reason Another user logged on this global unique id 146095 mac 146095 bytes_out 0 146095 bytes_in 0 146095 station_ip 83.123.17.232 146095 port 482 146095 unique_id port 146099 username mohammadmahdi 146099 kill_reason Another user logged on this global unique id 146099 mac 146099 bytes_out 0 146099 bytes_in 0 146099 station_ip 5.120.181.136 146099 port 496 146099 unique_id port 146099 remote_ip 10.8.0.54 146100 username aminvpn 146100 mac 146100 bytes_out 0 146100 bytes_in 0 146100 station_ip 5.119.78.71 146100 port 491 146100 unique_id port 146100 remote_ip 10.8.0.14 146101 username barzegar 146101 mac 146101 bytes_out 0 146101 bytes_in 0 146101 station_ip 5.119.55.210 146101 port 264 146101 unique_id port 146101 remote_ip 10.8.1.174 146105 username mahdixz 146105 unique_id port 146105 terminate_cause User-Request 146105 bytes_out 158888 146105 bytes_in 937723 146105 station_ip 37.129.21.44 146105 port 15730902 146105 nas_port_type Virtual 146105 remote_ip 5.5.5.249 146108 username sekonji3 146108 mac 146108 bytes_out 0 146108 bytes_in 0 146108 station_ip 83.122.250.50 146108 port 492 146108 unique_id port 146108 remote_ip 10.8.0.6 146111 username jafari 146111 kill_reason Another user logged on this global unique id 146111 mac 146111 bytes_out 0 146111 bytes_in 0 146111 station_ip 37.156.59.171 146111 port 495 146111 unique_id port 146115 username barzegar 146115 mac 146115 bytes_out 0 146115 bytes_in 0 146115 station_ip 5.119.55.210 146115 port 264 146115 unique_id port 146115 remote_ip 10.8.1.174 146121 username farhad2 146121 kill_reason Another user logged on this global unique id 146121 mac 146121 bytes_out 0 146121 bytes_in 0 146121 station_ip 5.120.170.241 146121 port 451 146121 unique_id port 146123 username jafari 146123 kill_reason Another user logged on this global unique id 146123 mac 146123 bytes_out 0 146123 bytes_in 0 146123 station_ip 37.156.59.171 146123 port 495 146123 unique_id port 146125 username barzegar 146125 mac 146125 bytes_out 0 146125 bytes_in 0 146073 mac 146073 bytes_out 0 146073 bytes_in 0 146073 station_ip 37.156.59.171 146073 port 495 146073 unique_id port 146074 username aminvpn 146074 mac 146074 bytes_out 0 146074 bytes_in 0 146074 station_ip 5.119.78.71 146074 port 504 146074 unique_id port 146074 remote_ip 10.8.0.14 146076 username vanila 146076 mac 146076 bytes_out 0 146076 bytes_in 0 146076 station_ip 83.123.186.21 146076 port 496 146076 unique_id port 146076 remote_ip 10.8.0.178 146081 username rajaei 146081 kill_reason Another user logged on this global unique id 146081 mac 146081 bytes_out 0 146081 bytes_in 0 146081 station_ip 5.134.191.145 146081 port 500 146081 unique_id port 146084 username zotaher 146084 mac 146084 bytes_out 0 146084 bytes_in 0 146084 station_ip 83.123.138.172 146084 port 492 146084 unique_id port 146084 remote_ip 10.8.0.194 146090 username rezaei 146090 kill_reason Another user logged on this global unique id 146090 mac 146090 bytes_out 0 146090 bytes_in 0 146090 station_ip 5.119.53.199 146090 port 498 146090 unique_id port 146091 username kalantary 146091 mac 146091 bytes_out 0 146091 bytes_in 0 146091 station_ip 83.122.35.179 146091 port 497 146091 unique_id port 146091 remote_ip 10.8.0.98 146092 username jafari 146092 kill_reason Another user logged on this global unique id 146092 mac 146092 bytes_out 0 146092 bytes_in 0 146092 station_ip 37.156.59.171 146092 port 495 146092 unique_id port 146096 username mehdizare 146096 kill_reason Another user logged on this global unique id 146096 mac 146096 bytes_out 0 146096 bytes_in 0 146096 station_ip 5.120.18.104 146096 port 501 146096 unique_id port 146096 remote_ip 10.8.0.90 146103 username mosi 146103 kill_reason Another user logged on this global unique id 146103 mac 146103 bytes_out 0 146103 bytes_in 0 146103 station_ip 94.176.13.18 146103 port 262 146103 unique_id port 146103 remote_ip 10.8.1.86 146104 username farhad2 146104 mac 146104 bytes_out 0 146104 bytes_in 0 146104 station_ip 5.120.170.241 146104 port 451 146104 unique_id port 146104 remote_ip 10.8.0.190 146110 username rezaei 146110 kill_reason Another user logged on this global unique id 146110 mac 146110 bytes_out 0 146110 bytes_in 0 146110 station_ip 5.119.53.199 146110 port 498 146110 unique_id port 146116 username rajaei 146116 kill_reason Another user logged on this global unique id 146116 mac 146116 bytes_out 0 146116 bytes_in 0 146116 station_ip 5.134.191.145 146116 port 500 146116 unique_id port 146120 username mostafa_es78 146120 unique_id port 146120 terminate_cause Lost-Carrier 146120 bytes_out 328130 146120 bytes_in 8796202 146120 station_ip 5.119.129.9 146120 port 15730903 146120 nas_port_type Virtual 146120 remote_ip 5.5.5.250 146122 username mohammadmahdi 146122 mac 146122 bytes_out 0 146122 bytes_in 0 146122 station_ip 5.120.181.136 146122 port 496 146122 unique_id port 146131 username barzegar 146131 mac 146131 bytes_out 0 146131 bytes_in 0 146131 station_ip 5.119.55.210 146131 port 263 146131 unique_id port 146131 remote_ip 10.8.1.174 146134 username hamidsalari 146134 mac 146134 bytes_out 0 146134 bytes_in 0 146134 station_ip 5.119.174.87 146134 port 469 146134 unique_id port 146134 remote_ip 10.8.0.222 146139 username mansour 146139 mac 146139 bytes_out 0 146139 bytes_in 0 146139 station_ip 5.202.98.165 146139 port 492 146139 unique_id port 146139 remote_ip 10.8.0.30 146143 username jafari 146143 kill_reason Another user logged on this global unique id 146143 mac 146143 bytes_out 0 146143 bytes_in 0 146143 station_ip 37.156.59.171 146080 unique_id port 146080 remote_ip 10.8.0.22 146082 username farhad2 146082 mac 146082 bytes_out 670130 146082 bytes_in 3075628 146082 station_ip 5.119.136.223 146082 port 263 146082 unique_id port 146082 remote_ip 10.8.1.222 146085 username alihosseini1 146085 mac 146085 bytes_out 294751 146085 bytes_in 2332258 146085 station_ip 5.119.185.119 146085 port 491 146085 unique_id port 146085 remote_ip 10.8.0.166 146086 username hassan 146086 kill_reason Another user logged on this global unique id 146086 mac 146086 bytes_out 0 146086 bytes_in 0 146086 station_ip 5.120.135.7 146086 port 502 146086 unique_id port 146088 username aminvpn 146088 mac 146088 bytes_out 752061 146088 bytes_in 7204719 146088 station_ip 83.123.128.25 146088 port 499 146088 unique_id port 146088 remote_ip 10.8.0.14 146089 username barzegar 146089 mac 146089 bytes_out 0 146089 bytes_in 0 146089 station_ip 5.119.55.210 146089 port 264 146089 unique_id port 146089 remote_ip 10.8.1.174 146093 username rajaei 146093 kill_reason Another user logged on this global unique id 146093 mac 146093 bytes_out 0 146093 bytes_in 0 146093 station_ip 5.134.191.145 146093 port 500 146093 unique_id port 146094 username farhad2 146094 mac 146094 bytes_out 0 146094 bytes_in 0 146094 station_ip 5.119.136.223 146094 port 451 146094 unique_id port 146094 remote_ip 10.8.0.190 146097 username zotaher 146097 mac 146097 bytes_out 0 146097 bytes_in 0 146097 station_ip 83.123.132.240 146097 port 492 146097 unique_id port 146097 remote_ip 10.8.0.194 146098 username alikomsari 146098 kill_reason Another user logged on this global unique id 146098 mac 146098 bytes_out 0 146098 bytes_in 0 146098 station_ip 5.120.158.205 146098 port 489 146098 unique_id port 146102 username vanila 146102 mac 146102 bytes_out 0 146102 bytes_in 0 146102 station_ip 83.123.186.21 146102 port 497 146102 unique_id port 146102 remote_ip 10.8.0.178 146106 username fezealinaghi 146106 kill_reason Another user logged on this global unique id 146106 mac 146106 bytes_out 0 146106 bytes_in 0 146106 station_ip 83.123.17.232 146106 port 482 146106 unique_id port 146107 username mehdizare 146107 kill_reason Another user logged on this global unique id 146107 mac 146107 bytes_out 0 146107 bytes_in 0 146107 station_ip 5.120.18.104 146107 port 501 146107 unique_id port 146109 username rajaei 146109 kill_reason Another user logged on this global unique id 146109 mac 146109 bytes_out 0 146109 bytes_in 0 146109 station_ip 5.134.191.145 146109 port 500 146109 unique_id port 146112 username rezaei 146112 mac 146112 bytes_out 0 146112 bytes_in 0 146112 station_ip 5.119.53.199 146112 port 498 146112 unique_id port 146113 username mohammadmahdi 146113 kill_reason Another user logged on this global unique id 146113 mac 146113 bytes_out 0 146113 bytes_in 0 146113 station_ip 5.120.181.136 146113 port 496 146113 unique_id port 146114 username farhad2 146114 kill_reason Another user logged on this global unique id 146114 mac 146114 bytes_out 0 146114 bytes_in 0 146114 station_ip 5.120.170.241 146114 port 451 146114 unique_id port 146114 remote_ip 10.8.0.190 146117 username kalantary 146117 mac 146117 bytes_out 0 146117 bytes_in 0 146117 station_ip 83.122.14.167 146117 port 491 146117 unique_id port 146117 remote_ip 10.8.0.98 146118 username saeed9658 146118 mac 146118 bytes_out 2502056 146118 bytes_in 20216258 146118 station_ip 5.120.185.154 146118 port 263 146118 unique_id port 146118 remote_ip 10.8.1.210 146119 username rajaei 146119 mac 146119 bytes_out 0 146119 bytes_in 0 146119 station_ip 5.134.191.145 146119 port 500 146119 unique_id port 146124 username fezealinaghi 146124 kill_reason Another user logged on this global unique id 146124 mac 146124 bytes_out 0 146124 bytes_in 0 146124 station_ip 83.123.17.232 146124 port 482 146124 unique_id port 146127 username mehdizare 146127 kill_reason Another user logged on this global unique id 146127 mac 146127 bytes_out 0 146127 bytes_in 0 146127 station_ip 5.120.18.104 146127 port 501 146127 unique_id port 146128 username fezealinaghi 146128 kill_reason Another user logged on this global unique id 146128 mac 146128 bytes_out 0 146128 bytes_in 0 146128 station_ip 83.123.17.232 146128 port 482 146128 unique_id port 146129 username jafari 146129 kill_reason Another user logged on this global unique id 146129 mac 146129 bytes_out 0 146129 bytes_in 0 146129 station_ip 37.156.59.171 146129 port 495 146129 unique_id port 146130 username fezealinaghi 146130 kill_reason Another user logged on this global unique id 146130 mac 146130 bytes_out 0 146130 bytes_in 0 146130 station_ip 83.123.17.232 146130 port 482 146130 unique_id port 146133 username farhad2 146133 kill_reason Another user logged on this global unique id 146133 mac 146133 bytes_out 0 146133 bytes_in 0 146133 station_ip 5.120.170.241 146133 port 451 146133 unique_id port 146136 username jafari 146136 kill_reason Another user logged on this global unique id 146136 mac 146136 bytes_out 0 146136 bytes_in 0 146136 station_ip 37.156.59.171 146136 port 495 146136 unique_id port 146138 username godarzi 146138 mac 146138 bytes_out 0 146138 bytes_in 0 146138 station_ip 5.202.5.1 146138 port 469 146138 unique_id port 146138 remote_ip 10.8.0.174 146141 username barzegar 146141 mac 146141 bytes_out 0 146141 bytes_in 0 146141 station_ip 5.119.55.210 146141 port 263 146141 unique_id port 146141 remote_ip 10.8.1.174 146142 username hassan 146142 mac 146142 bytes_out 0 146142 bytes_in 0 146142 station_ip 37.27.9.86 146142 port 497 146142 unique_id port 146142 remote_ip 10.8.0.122 146146 username jafari 146146 kill_reason Another user logged on this global unique id 146146 mac 146146 bytes_out 0 146146 bytes_in 0 146146 station_ip 37.156.59.171 146146 port 495 146146 unique_id port 146148 username aminvpn 146148 mac 146148 bytes_out 0 146148 bytes_in 0 146148 station_ip 83.122.7.223 146148 port 497 146148 unique_id port 146148 remote_ip 10.8.0.14 146156 username mostafa_es78 146156 unique_id port 146156 terminate_cause User-Request 146156 bytes_out 154402 146156 bytes_in 1530711 146156 station_ip 109.125.167.112 146156 port 15730904 146156 nas_port_type Virtual 146156 remote_ip 5.5.5.19 146159 username fezealinaghi 146159 mac 146159 bytes_out 0 146159 bytes_in 0 146159 station_ip 83.123.17.232 146159 port 482 146159 unique_id port 146160 username farhad2 146160 mac 146160 bytes_out 0 146160 bytes_in 0 146160 station_ip 5.120.170.241 146160 port 451 146160 unique_id port 146160 remote_ip 10.8.0.190 146169 username aminvpn 146169 mac 146169 bytes_out 161104 146169 bytes_in 271077 146169 station_ip 5.119.78.71 146169 port 495 146169 unique_id port 146169 remote_ip 10.8.0.14 146177 username farhad2 146177 mac 146177 bytes_out 75092 146177 bytes_in 151264 146177 station_ip 5.120.170.241 146177 port 451 146177 unique_id port 146177 remote_ip 10.8.0.190 146184 username tahmasebi 146184 kill_reason Another user logged on this global unique id 146184 mac 146184 bytes_out 0 146184 bytes_in 0 146184 station_ip 5.123.107.128 146184 port 491 146184 unique_id port 146125 station_ip 5.119.55.210 146125 port 263 146125 unique_id port 146125 remote_ip 10.8.1.174 146126 username mosi 146126 kill_reason Another user logged on this global unique id 146126 mac 146126 bytes_out 0 146126 bytes_in 0 146126 station_ip 94.176.13.18 146126 port 262 146126 unique_id port 146132 username alikomsari 146132 kill_reason Another user logged on this global unique id 146132 mac 146132 bytes_out 0 146132 bytes_in 0 146132 station_ip 5.120.158.205 146132 port 489 146132 unique_id port 146135 username kalantary 146135 mac 146135 bytes_out 98405 146135 bytes_in 150113 146135 station_ip 83.122.35.179 146135 port 469 146135 unique_id port 146135 remote_ip 10.8.0.98 146137 username hassan 146137 mac 146137 bytes_out 0 146137 bytes_in 0 146137 station_ip 5.120.135.7 146137 port 502 146137 unique_id port 146140 username fezealinaghi 146140 kill_reason Another user logged on this global unique id 146140 mac 146140 bytes_out 0 146140 bytes_in 0 146140 station_ip 83.123.17.232 146140 port 482 146140 unique_id port 146144 username farhad2 146144 mac 146144 bytes_out 0 146144 bytes_in 0 146144 station_ip 5.120.170.241 146144 port 451 146144 unique_id port 146149 username mosi 146149 mac 146149 bytes_out 0 146149 bytes_in 0 146149 station_ip 94.176.13.18 146149 port 262 146149 unique_id port 146150 username barzegar 146150 mac 146150 bytes_out 0 146150 bytes_in 0 146150 station_ip 5.119.55.210 146150 port 262 146150 unique_id port 146150 remote_ip 10.8.1.174 146153 username hamidsalari 146153 mac 146153 bytes_out 0 146153 bytes_in 0 146153 station_ip 5.119.174.87 146153 port 496 146153 unique_id port 146153 remote_ip 10.8.0.222 146155 username alikomsari 146155 mac 146155 bytes_out 0 146155 bytes_in 0 146155 station_ip 5.120.158.205 146155 port 489 146155 unique_id port 146157 username jafari 146157 kill_reason Another user logged on this global unique id 146157 mac 146157 bytes_out 0 146157 bytes_in 0 146157 station_ip 37.156.59.171 146157 port 495 146157 unique_id port 146163 username barzegar 146163 mac 146163 bytes_out 0 146163 bytes_in 0 146163 station_ip 5.119.55.210 146163 port 262 146163 unique_id port 146163 remote_ip 10.8.1.174 146165 username kordestani 146165 mac 146165 bytes_out 0 146165 bytes_in 0 146165 station_ip 151.235.92.191 146165 port 492 146165 unique_id port 146166 username hamidsalari 146166 kill_reason Another user logged on this global unique id 146166 mac 146166 bytes_out 0 146166 bytes_in 0 146166 station_ip 5.119.174.87 146166 port 496 146166 unique_id port 146166 remote_ip 10.8.0.222 146172 username ehsun 146172 kill_reason Maximum check online fails reached 146172 unique_id port 146172 bytes_out 0 146172 bytes_in 0 146172 station_ip 46.225.211.208 146172 port 15730906 146172 nas_port_type Virtual 146174 username arash 146174 mac 146174 bytes_out 71931 146174 bytes_in 214066 146174 station_ip 37.27.17.169 146174 port 451 146174 unique_id port 146174 remote_ip 10.8.0.114 146176 username farhad2 146176 mac 146176 bytes_out 449244 146176 bytes_in 1555344 146176 station_ip 5.120.170.241 146176 port 451 146176 unique_id port 146176 remote_ip 10.8.0.190 146178 username barzegar 146178 mac 146178 bytes_out 0 146178 bytes_in 0 146178 station_ip 5.119.55.210 146178 port 263 146178 unique_id port 146178 remote_ip 10.8.1.174 146180 username hamidsalari 146180 kill_reason Another user logged on this global unique id 146180 mac 146180 bytes_out 0 146180 bytes_in 0 146180 station_ip 5.119.174.87 146180 port 496 146143 port 495 146143 unique_id port 146145 username fezealinaghi 146145 kill_reason Another user logged on this global unique id 146145 mac 146145 bytes_out 0 146145 bytes_in 0 146145 station_ip 83.123.17.232 146145 port 482 146145 unique_id port 146147 username rajaei 146147 mac 146147 bytes_out 0 146147 bytes_in 0 146147 station_ip 89.47.137.33 146147 port 492 146147 unique_id port 146147 remote_ip 10.8.0.34 146151 username mosi 146151 mac 146151 bytes_out 0 146151 bytes_in 0 146151 station_ip 5.233.81.129 146151 port 497 146151 unique_id port 146151 remote_ip 10.8.0.138 146152 username mehdizare 146152 mac 146152 bytes_out 0 146152 bytes_in 0 146152 station_ip 5.120.18.104 146152 port 501 146152 unique_id port 146154 username alikomsari 146154 kill_reason Maximum number of concurrent logins reached 146154 mac 146154 bytes_out 0 146154 bytes_in 0 146154 station_ip 5.120.158.205 146154 port 496 146154 unique_id port 146158 username hosseine 146158 kill_reason Another user logged on this global unique id 146158 mac 146158 bytes_out 0 146158 bytes_in 0 146158 station_ip 83.122.25.212 146158 port 488 146158 unique_id port 146158 remote_ip 10.8.0.238 146161 username kordestani 146161 kill_reason Another user logged on this global unique id 146161 mac 146161 bytes_out 0 146161 bytes_in 0 146161 station_ip 151.235.92.191 146161 port 492 146161 unique_id port 146161 remote_ip 10.8.0.134 146162 username jafari 146162 kill_reason Another user logged on this global unique id 146162 mac 146162 bytes_out 0 146162 bytes_in 0 146162 station_ip 37.156.59.171 146162 port 495 146162 unique_id port 146164 username jafari 146164 mac 146164 bytes_out 0 146164 bytes_in 0 146164 station_ip 37.156.59.171 146164 port 495 146164 unique_id port 146167 username barzegar 146167 mac 146167 bytes_out 0 146167 bytes_in 0 146167 station_ip 5.119.55.210 146167 port 262 146167 unique_id port 146167 remote_ip 10.8.1.174 146168 username mahdiyehalizadeh 146168 mac 146168 bytes_out 1052025 146168 bytes_in 14019984 146168 station_ip 83.122.35.165 146168 port 489 146168 unique_id port 146168 remote_ip 10.8.0.82 146170 username zotaher 146170 mac 146170 bytes_out 15421 146170 bytes_in 23037 146170 station_ip 83.123.132.240 146170 port 492 146170 unique_id port 146170 remote_ip 10.8.0.194 146171 username barzegar 146171 mac 146171 bytes_out 0 146171 bytes_in 0 146171 station_ip 5.119.55.210 146171 port 262 146171 unique_id port 146171 remote_ip 10.8.1.174 146173 username farhad2 146173 mac 146173 bytes_out 2384020 146173 bytes_in 15006516 146173 station_ip 5.120.170.241 146173 port 482 146173 unique_id port 146173 remote_ip 10.8.0.190 146175 username hamidsalari 146175 kill_reason Another user logged on this global unique id 146175 mac 146175 bytes_out 0 146175 bytes_in 0 146175 station_ip 5.119.174.87 146175 port 496 146175 unique_id port 146179 username farhad2 146179 mac 146179 bytes_out 0 146179 bytes_in 0 146179 station_ip 5.120.170.241 146179 port 262 146179 unique_id port 146179 remote_ip 10.8.1.222 146181 username tahmasebi 146181 kill_reason Another user logged on this global unique id 146181 mac 146181 bytes_out 0 146181 bytes_in 0 146181 station_ip 5.123.107.128 146181 port 491 146181 unique_id port 146181 remote_ip 10.8.0.42 146185 username alipour 146185 mac 146185 bytes_out 0 146185 bytes_in 0 146185 station_ip 113.203.51.30 146185 port 486 146185 unique_id port 146186 username tahmasebi 146186 kill_reason Another user logged on this global unique id 146186 mac 146186 bytes_out 0 146180 unique_id port 146182 username hamidsalari 146182 kill_reason Another user logged on this global unique id 146182 mac 146182 bytes_out 0 146182 bytes_in 0 146182 station_ip 5.119.174.87 146182 port 496 146182 unique_id port 146183 username barzegar 146183 mac 146183 bytes_out 0 146183 bytes_in 0 146183 station_ip 5.119.55.210 146183 port 262 146183 unique_id port 146183 remote_ip 10.8.1.174 146187 username hamidsalari 146187 kill_reason Another user logged on this global unique id 146187 mac 146187 bytes_out 0 146187 bytes_in 0 146187 station_ip 5.119.174.87 146187 port 496 146187 unique_id port 146196 username farhad2 146196 mac 146196 bytes_out 5052441 146196 bytes_in 1033420 146196 station_ip 5.119.78.140 146196 port 451 146196 unique_id port 146196 remote_ip 10.8.0.190 146197 username farhad2 146197 mac 146197 bytes_out 2245926 146197 bytes_in 2808745 146197 station_ip 5.119.78.140 146197 port 451 146197 unique_id port 146197 remote_ip 10.8.0.190 146199 username farhad2 146199 mac 146199 bytes_out 0 146199 bytes_in 0 146199 station_ip 5.119.78.140 146199 port 262 146199 unique_id port 146199 remote_ip 10.8.1.222 146201 username barzegar 146201 mac 146201 bytes_out 0 146201 bytes_in 0 146201 station_ip 5.119.55.210 146201 port 263 146201 unique_id port 146201 remote_ip 10.8.1.174 146203 username hasanahmadi 146203 mac 146203 bytes_out 0 146203 bytes_in 0 146203 station_ip 83.122.235.22 146203 port 451 146203 unique_id port 146203 remote_ip 10.8.0.126 146204 username barzegar 146204 mac 146204 bytes_out 0 146204 bytes_in 0 146204 station_ip 5.119.55.210 146204 port 451 146204 unique_id port 146204 remote_ip 10.8.0.234 146206 username sabaghnezhad 146206 mac 146206 bytes_out 0 146206 bytes_in 0 146206 station_ip 83.123.211.196 146206 port 452 146206 unique_id port 146206 remote_ip 10.8.0.186 146207 username barzegar 146207 mac 146207 bytes_out 0 146207 bytes_in 0 146207 station_ip 5.119.55.210 146207 port 452 146207 unique_id port 146207 remote_ip 10.8.0.234 146209 username aminvpn 146209 unique_id port 146209 terminate_cause Lost-Carrier 146209 bytes_out 3378408 146209 bytes_in 10092695 146209 station_ip 5.119.166.9 146209 port 15730905 146209 nas_port_type Virtual 146209 remote_ip 5.5.5.251 146210 username barzegar 146210 mac 146210 bytes_out 0 146210 bytes_in 0 146210 station_ip 5.119.55.210 146210 port 452 146210 unique_id port 146210 remote_ip 10.8.0.234 146212 username farhad2 146212 mac 146212 bytes_out 0 146212 bytes_in 0 146212 station_ip 5.119.114.4 146212 port 451 146212 unique_id port 146212 remote_ip 10.8.0.190 146231 username barzegar 146231 mac 146231 bytes_out 0 146231 bytes_in 0 146231 station_ip 5.119.55.210 146231 port 469 146231 unique_id port 146231 remote_ip 10.8.0.234 146241 username barzegar 146241 mac 146241 bytes_out 0 146241 bytes_in 0 146241 station_ip 5.119.55.210 146241 port 451 146241 unique_id port 146241 remote_ip 10.8.0.234 146252 username houshang 146252 mac 146252 bytes_out 3394372 146252 bytes_in 48453407 146252 station_ip 5.119.10.56 146252 port 451 146252 unique_id port 146252 remote_ip 10.8.0.22 146255 username barzegar 146255 mac 146255 bytes_out 0 146255 bytes_in 0 146255 station_ip 5.119.55.210 146255 port 451 146255 unique_id port 146255 remote_ip 10.8.0.234 146259 username mehdizare 146259 kill_reason Another user logged on this global unique id 146259 mac 146259 bytes_out 0 146259 bytes_in 0 146259 station_ip 5.120.18.104 146186 bytes_in 0 146186 station_ip 5.123.107.128 146186 port 491 146186 unique_id port 146189 username tahmasebi 146189 mac 146189 bytes_out 0 146189 bytes_in 0 146189 station_ip 5.123.107.128 146189 port 491 146189 unique_id port 146190 username mahdiyehalizadeh 146190 mac 146190 bytes_out 6390 146190 bytes_in 10079 146190 station_ip 83.122.35.165 146190 port 451 146190 unique_id port 146190 remote_ip 10.8.0.82 146191 username hassan 146191 mac 146191 bytes_out 0 146191 bytes_in 0 146191 station_ip 5.120.135.7 146191 port 469 146191 unique_id port 146191 remote_ip 10.8.0.122 146192 username barzegar 146192 mac 146192 bytes_out 0 146192 bytes_in 0 146192 station_ip 5.119.55.210 146192 port 262 146192 unique_id port 146192 remote_ip 10.8.1.174 146193 username hamidsalari 146193 kill_reason Another user logged on this global unique id 146193 mac 146193 bytes_out 0 146193 bytes_in 0 146193 station_ip 5.119.174.87 146193 port 496 146193 unique_id port 146194 username farhad2 146194 mac 146194 bytes_out 0 146194 bytes_in 0 146194 station_ip 5.119.78.140 146194 port 451 146194 unique_id port 146194 remote_ip 10.8.0.190 146195 username barzegar 146195 mac 146195 bytes_out 0 146195 bytes_in 0 146195 station_ip 5.119.55.210 146195 port 262 146195 unique_id port 146195 remote_ip 10.8.1.174 146198 username farhad2 146198 mac 146198 bytes_out 0 146198 bytes_in 0 146198 station_ip 5.119.78.140 146198 port 451 146198 unique_id port 146198 remote_ip 10.8.0.190 146200 username farhad2 146200 mac 146200 bytes_out 0 146200 bytes_in 0 146200 station_ip 5.120.158.23 146200 port 263 146200 unique_id port 146200 remote_ip 10.8.1.222 146202 username farhad2 146202 mac 146202 bytes_out 0 146202 bytes_in 0 146202 station_ip 5.120.158.23 146202 port 262 146202 unique_id port 146202 remote_ip 10.8.1.222 146213 username barzegar 146213 mac 146213 bytes_out 0 146213 bytes_in 0 146213 station_ip 5.119.55.210 146213 port 451 146213 unique_id port 146213 remote_ip 10.8.0.234 146215 username farhad2 146215 kill_reason Another user logged on this global unique id 146215 mac 146215 bytes_out 0 146215 bytes_in 0 146215 station_ip 5.119.114.4 146215 port 451 146215 unique_id port 146215 remote_ip 10.8.0.190 146217 username barzegar 146217 mac 146217 bytes_out 0 146217 bytes_in 0 146217 station_ip 5.119.55.210 146217 port 262 146217 unique_id port 146217 remote_ip 10.8.1.174 146218 username barzegar 146218 mac 146218 bytes_out 0 146218 bytes_in 0 146218 station_ip 5.119.55.210 146218 port 262 146218 unique_id port 146218 remote_ip 10.8.1.174 146220 username barzegar 146220 mac 146220 bytes_out 0 146220 bytes_in 0 146220 station_ip 5.119.55.210 146220 port 262 146220 unique_id port 146220 remote_ip 10.8.1.174 146221 username farhad2 146221 mac 146221 bytes_out 591324 146221 bytes_in 2609839 146221 station_ip 5.120.59.118 146221 port 451 146221 unique_id port 146221 remote_ip 10.8.0.190 146223 username farhad2 146223 mac 146223 bytes_out 0 146223 bytes_in 0 146223 station_ip 5.119.152.165 146223 port 469 146223 unique_id port 146223 remote_ip 10.8.0.190 146224 username barzegar 146224 mac 146224 bytes_out 0 146224 bytes_in 0 146224 station_ip 5.119.55.210 146224 port 262 146224 unique_id port 146224 remote_ip 10.8.1.174 146225 username barzegar 146225 mac 146225 bytes_out 0 146225 bytes_in 0 146225 station_ip 5.119.55.210 146225 port 451 146225 unique_id port 146188 username barzegar 146188 mac 146188 bytes_out 0 146188 bytes_in 0 146188 station_ip 5.119.55.210 146188 port 262 146188 unique_id port 146188 remote_ip 10.8.1.174 146205 username farhad2 146205 mac 146205 bytes_out 0 146205 bytes_in 0 146205 station_ip 5.120.158.23 146205 port 469 146205 unique_id port 146205 remote_ip 10.8.0.190 146208 username farhad2 146208 mac 146208 bytes_out 0 146208 bytes_in 0 146208 station_ip 5.119.114.4 146208 port 451 146208 unique_id port 146208 remote_ip 10.8.0.190 146211 username mahdixz 146211 unique_id port 146211 terminate_cause User-Request 146211 bytes_out 64877 146211 bytes_in 236839 146211 station_ip 37.129.46.181 146211 port 15730907 146211 nas_port_type Virtual 146211 remote_ip 5.5.5.10 146214 username barzegar 146214 mac 146214 bytes_out 0 146214 bytes_in 0 146214 station_ip 5.119.55.210 146214 port 469 146214 unique_id port 146214 remote_ip 10.8.0.234 146216 username farhad2 146216 mac 146216 bytes_out 0 146216 bytes_in 0 146216 station_ip 5.119.114.4 146216 port 451 146216 unique_id port 146219 username farhad2 146219 mac 146219 bytes_out 183664 146219 bytes_in 677392 146219 station_ip 5.120.59.118 146219 port 451 146219 unique_id port 146219 remote_ip 10.8.0.190 146222 username farhad2 146222 mac 146222 bytes_out 0 146222 bytes_in 0 146222 station_ip 5.119.131.101 146222 port 451 146222 unique_id port 146222 remote_ip 10.8.0.190 146251 remote_ip 10.8.0.146 146256 username houshang 146256 kill_reason Another user logged on this global unique id 146256 mac 146256 bytes_out 0 146256 bytes_in 0 146256 station_ip 5.119.10.56 146256 port 445 146256 unique_id port 146256 remote_ip 10.8.0.22 146257 username houshang 146257 mac 146257 bytes_out 0 146257 bytes_in 0 146257 station_ip 5.119.10.56 146257 port 445 146257 unique_id port 146258 username barzegar 146258 mac 146258 bytes_out 0 146258 bytes_in 0 146258 station_ip 5.119.55.210 146258 port 451 146258 unique_id port 146258 remote_ip 10.8.0.234 146260 username mohammadjavad 146260 mac 146260 bytes_out 518925 146260 bytes_in 2507129 146260 station_ip 83.123.43.222 146260 port 445 146260 unique_id port 146260 remote_ip 10.8.0.142 146262 username mehdizare 146262 kill_reason Another user logged on this global unique id 146262 mac 146262 bytes_out 0 146262 bytes_in 0 146262 station_ip 5.120.18.104 146262 port 497 146262 unique_id port 146263 username moradi 146263 mac 146263 bytes_out 0 146263 bytes_in 0 146263 station_ip 37.129.73.131 146263 port 451 146263 unique_id port 146264 unique_id port 146264 remote_ip 10.8.0.234 146265 username barzegar 146265 mac 146265 bytes_out 0 146265 bytes_in 0 146265 station_ip 5.119.55.210 146265 port 445 146265 unique_id port 146265 remote_ip 10.8.0.234 146267 username barzegar 146267 mac 146267 bytes_out 0 146267 bytes_in 0 146267 station_ip 5.119.55.210 146267 port 445 146267 unique_id port 146267 remote_ip 10.8.0.234 146268 username mehdizare 146268 kill_reason Another user logged on this global unique id 146268 mac 146268 bytes_out 0 146268 bytes_in 0 146268 station_ip 5.120.18.104 146268 port 497 146268 unique_id port 146270 username jafari 146270 mac 146270 bytes_out 0 146270 bytes_in 0 146270 station_ip 5.200.110.31 146270 port 445 146270 unique_id port 146272 username barzegar 146272 mac 146272 bytes_out 0 146272 bytes_in 0 146272 station_ip 5.119.55.210 146272 port 262 146272 unique_id port 146272 remote_ip 10.8.1.174 146225 remote_ip 10.8.0.234 146259 port 497 146259 unique_id port 146261 username moradi 146261 kill_reason Another user logged on this global unique id 146261 mac 146261 bytes_out 0 146261 bytes_in 0 146261 station_ip 37.129.73.131 146261 port 451 146261 unique_id port 146261 remote_ip 10.8.0.226 146266 username barzegar 146266 mac 146266 bytes_out 0 146266 bytes_in 0 146266 station_ip 5.119.55.210 146266 port 445 146266 unique_id port 146266 remote_ip 10.8.0.234 146269 username jafari 146269 kill_reason Another user logged on this global unique id 146269 mac 146269 bytes_out 0 146269 bytes_in 0 146269 station_ip 5.200.110.31 146269 port 445 146269 unique_id port 146269 remote_ip 10.8.0.242 146271 username mehdizare 146271 kill_reason Another user logged on this global unique id 146271 mac 146271 bytes_out 0 146271 bytes_in 0 146271 station_ip 5.120.18.104 146271 port 497 146271 unique_id port 146273 username milan 146273 mac 146273 bytes_out 0 146273 bytes_in 0 146273 station_ip 5.120.31.183 146273 port 470 146273 unique_id port 146274 username moradi 146274 kill_reason Another user logged on this global unique id 146274 mac 146274 bytes_out 0 146274 bytes_in 0 146274 station_ip 37.129.41.171 146274 port 451 146274 unique_id port 146274 remote_ip 10.8.0.226 146275 username barzegar 146275 mac 146275 bytes_out 22655 146275 bytes_in 128174 146275 station_ip 5.119.55.210 146275 port 262 146275 unique_id port 146275 remote_ip 10.8.1.174 146276 username kalantary 146276 mac 146276 bytes_out 535859 146276 bytes_in 1204932 146276 station_ip 83.122.105.163 146276 port 445 146276 unique_id port 146276 remote_ip 10.8.0.98 146277 username barzegar 146277 mac 146277 bytes_out 0 146277 bytes_in 0 146277 station_ip 5.119.55.210 146277 port 262 146277 unique_id port 146277 remote_ip 10.8.1.174 146278 username moradi 146278 kill_reason Another user logged on this global unique id 146278 mac 146278 bytes_out 0 146278 bytes_in 0 146278 station_ip 37.129.41.171 146278 port 451 146278 unique_id port 146279 username barzegar 146279 mac 146279 bytes_out 0 146279 bytes_in 0 146279 station_ip 5.119.55.210 146279 port 262 146279 unique_id port 146279 remote_ip 10.8.1.174 146280 username moradi 146280 kill_reason Another user logged on this global unique id 146280 mac 146280 bytes_out 0 146280 bytes_in 0 146280 station_ip 37.129.41.171 146280 port 451 146280 unique_id port 146281 username barzegar 146281 mac 146281 bytes_out 0 146281 bytes_in 0 146281 station_ip 5.119.55.210 146281 port 262 146281 unique_id port 146281 remote_ip 10.8.1.174 146282 username barzegar 146282 mac 146282 bytes_out 0 146282 bytes_in 0 146282 station_ip 5.119.55.210 146282 port 469 146282 unique_id port 146282 remote_ip 10.8.0.234 146283 username mohammadjavad 146283 mac 146283 bytes_out 1989188 146283 bytes_in 39933896 146283 station_ip 37.129.180.120 146283 port 445 146283 unique_id port 146283 remote_ip 10.8.0.142 146284 username moradi 146284 kill_reason Another user logged on this global unique id 146284 mac 146284 bytes_out 0 146284 bytes_in 0 146284 station_ip 37.129.41.171 146284 port 451 146284 unique_id port 146285 username barzegar 146285 mac 146285 bytes_out 0 146285 bytes_in 0 146285 station_ip 5.119.55.210 146285 port 469 146285 unique_id port 146285 remote_ip 10.8.0.234 146286 username moradi 146286 kill_reason Another user logged on this global unique id 146286 mac 146286 bytes_out 0 146286 bytes_in 0 146286 station_ip 37.129.41.171 146286 port 451 146286 unique_id port 146287 username jafari 146287 mac 146287 bytes_out 1567647 146287 bytes_in 23972735 146287 station_ip 37.137.29.85 146287 port 445 146287 unique_id port 146287 remote_ip 10.8.0.242 146288 username kalantary 146288 mac 146288 bytes_out 308389 146288 bytes_in 506265 146288 station_ip 83.122.76.191 146288 port 469 146288 unique_id port 146288 remote_ip 10.8.0.98 146289 username barzegar 146289 mac 146289 bytes_out 0 146289 bytes_in 0 146289 station_ip 5.119.55.210 146289 port 445 146289 unique_id port 146289 remote_ip 10.8.0.234 146290 username barzegar 146290 mac 146290 bytes_out 0 146290 bytes_in 0 146290 station_ip 5.119.55.210 146290 port 262 146290 unique_id port 146290 remote_ip 10.8.1.174 146291 username barzegar 146291 mac 146291 bytes_out 0 146291 bytes_in 0 146291 station_ip 5.119.55.210 146291 port 262 146291 unique_id port 146291 remote_ip 10.8.1.174 146293 username mohammadjavad 146293 mac 146293 bytes_out 0 146293 bytes_in 0 146293 station_ip 37.129.202.110 146293 port 469 146293 unique_id port 146293 remote_ip 10.8.0.142 146294 username barzegar 146294 mac 146294 bytes_out 0 146294 bytes_in 0 146294 station_ip 5.119.55.210 146294 port 262 146294 unique_id port 146294 remote_ip 10.8.1.174 146297 username barzegar 146297 mac 146297 bytes_out 0 146297 bytes_in 0 146297 station_ip 5.119.55.210 146297 port 469 146297 unique_id port 146297 remote_ip 10.8.0.234 146298 username barzegar 146298 mac 146298 bytes_out 0 146298 bytes_in 0 146298 station_ip 5.119.55.210 146298 port 469 146298 unique_id port 146298 remote_ip 10.8.0.234 146300 username malekpoir 146300 kill_reason Another user logged on this global unique id 146300 mac 146300 bytes_out 0 146300 bytes_in 0 146300 station_ip 5.119.150.243 146300 port 451 146300 unique_id port 146300 remote_ip 10.8.0.58 146303 username sedighe 146303 mac 146303 bytes_out 541848 146303 bytes_in 4957777 146303 station_ip 37.129.195.137 146303 port 445 146303 unique_id port 146303 remote_ip 10.8.0.146 146310 username moradi 146310 mac 146310 bytes_out 759636 146310 bytes_in 14929862 146310 station_ip 37.129.127.179 146310 port 470 146310 unique_id port 146310 remote_ip 10.8.0.226 146313 username kalantary 146313 mac 146313 bytes_out 134020 146313 bytes_in 384442 146313 station_ip 83.122.37.175 146313 port 469 146313 unique_id port 146313 remote_ip 10.8.0.98 146314 username forozandeh1 146314 mac 146314 bytes_out 996628 146314 bytes_in 16037127 146314 station_ip 83.123.6.15 146314 port 470 146314 unique_id port 146314 remote_ip 10.8.0.130 146315 username kalantary 146315 mac 146315 bytes_out 141019 146315 bytes_in 233488 146315 station_ip 83.122.37.175 146315 port 470 146315 unique_id port 146315 remote_ip 10.8.0.98 146316 username milan 146316 kill_reason Another user logged on this global unique id 146316 mac 146316 bytes_out 0 146316 bytes_in 0 146316 station_ip 5.120.31.183 146316 port 469 146316 unique_id port 146316 remote_ip 10.8.0.218 146318 username mohammadjavad 146318 mac 146318 bytes_out 235085 146318 bytes_in 8777200 146318 station_ip 113.203.25.120 146318 port 470 146318 unique_id port 146318 remote_ip 10.8.0.142 146319 username barzegar 146319 mac 146319 bytes_out 0 146319 bytes_in 0 146319 station_ip 5.119.55.210 146319 port 262 146319 unique_id port 146319 remote_ip 10.8.1.174 146326 username mosi 146326 mac 146326 bytes_out 0 146326 bytes_in 0 146326 station_ip 37.137.46.247 146326 port 498 146326 unique_id port 146292 username kalantary 146292 mac 146292 bytes_out 491140 146292 bytes_in 3182922 146292 station_ip 83.122.76.191 146292 port 445 146292 unique_id port 146292 remote_ip 10.8.0.98 146295 username moradi 146295 mac 146295 bytes_out 0 146295 bytes_in 0 146295 station_ip 37.129.41.171 146295 port 451 146295 unique_id port 146301 username barzegar 146301 mac 146301 bytes_out 0 146301 bytes_in 0 146301 station_ip 5.119.55.210 146301 port 482 146301 unique_id port 146301 remote_ip 10.8.0.234 146304 username sedighe 146304 mac 146304 bytes_out 68872 146304 bytes_in 89248 146304 station_ip 113.203.117.221 146304 port 445 146304 unique_id port 146304 remote_ip 10.8.0.146 146306 username aminvpn 146306 mac 146306 bytes_out 101487 146306 bytes_in 197301 146306 station_ip 83.123.190.237 146306 port 470 146306 unique_id port 146306 remote_ip 10.8.0.14 146307 username barzegar 146307 mac 146307 bytes_out 0 146307 bytes_in 0 146307 station_ip 5.119.55.210 146307 port 470 146307 unique_id port 146307 remote_ip 10.8.0.234 146308 username aminvpn 146308 mac 146308 bytes_out 22050 146308 bytes_in 68355 146308 station_ip 83.123.190.237 146308 port 452 146308 unique_id port 146308 remote_ip 10.8.0.14 146309 username forozandeh1 146309 mac 146309 bytes_out 1836928 146309 bytes_in 20983740 146309 station_ip 113.203.110.93 146309 port 445 146309 unique_id port 146309 remote_ip 10.8.0.130 146311 username kalantary 146311 mac 146311 bytes_out 1001885 146311 bytes_in 4609087 146311 station_ip 83.122.14.191 146311 port 469 146311 unique_id port 146311 remote_ip 10.8.0.98 146320 username afarin1 146320 mac 146320 bytes_out 65266 146320 bytes_in 507854 146320 station_ip 31.56.159.130 146320 port 452 146320 unique_id port 146320 remote_ip 10.8.0.118 146321 username milan 146321 kill_reason Another user logged on this global unique id 146321 mac 146321 bytes_out 0 146321 bytes_in 0 146321 station_ip 5.120.31.183 146321 port 469 146321 unique_id port 146322 username afarin1 146322 mac 146322 bytes_out 0 146322 bytes_in 0 146322 station_ip 31.56.159.130 146322 port 452 146322 unique_id port 146322 remote_ip 10.8.0.118 146323 username kalantary 146323 kill_reason Another user logged on this global unique id 146323 mac 146323 bytes_out 0 146323 bytes_in 0 146323 station_ip 83.122.37.175 146323 port 482 146323 unique_id port 146323 remote_ip 10.8.0.98 146325 username kalantary 146325 mac 146325 bytes_out 0 146325 bytes_in 0 146325 station_ip 83.122.37.175 146325 port 482 146325 unique_id port 146327 username barzegar 146327 mac 146327 bytes_out 224773 146327 bytes_in 2078941 146327 station_ip 5.119.55.210 146327 port 452 146327 unique_id port 146327 remote_ip 10.8.0.234 146328 username mosi 146328 mac 146328 bytes_out 0 146328 bytes_in 0 146328 station_ip 37.137.46.247 146328 port 482 146328 unique_id port 146328 remote_ip 10.8.0.138 146332 username vanila 146332 mac 146332 bytes_out 0 146332 bytes_in 0 146332 station_ip 83.123.229.117 146332 port 489 146332 unique_id port 146332 remote_ip 10.8.0.178 146340 username barzegar 146340 mac 146340 bytes_out 0 146340 bytes_in 0 146340 station_ip 5.119.55.210 146340 port 263 146340 unique_id port 146340 remote_ip 10.8.1.174 146343 username houshang 146343 kill_reason Another user logged on this global unique id 146343 mac 146343 bytes_out 0 146343 bytes_in 0 146343 station_ip 5.119.10.56 146343 port 482 146343 unique_id port 146343 remote_ip 10.8.0.22 146296 username barzegar 146296 mac 146296 bytes_out 0 146296 bytes_in 0 146296 station_ip 5.119.55.210 146296 port 469 146296 unique_id port 146296 remote_ip 10.8.0.234 146299 username mohammadjavad 146299 mac 146299 bytes_out 2517518 146299 bytes_in 49199987 146299 station_ip 37.129.37.124 146299 port 445 146299 unique_id port 146299 remote_ip 10.8.0.142 146302 username forozandeh1 146302 mac 146302 bytes_out 1435301 146302 bytes_in 27082498 146302 station_ip 83.123.1.115 146302 port 470 146302 unique_id port 146302 remote_ip 10.8.0.130 146305 username afarin1 146305 mac 146305 bytes_out 172713 146305 bytes_in 429521 146305 station_ip 31.56.158.69 146305 port 452 146305 unique_id port 146305 remote_ip 10.8.0.118 146312 username barzegar 146312 mac 146312 bytes_out 0 146312 bytes_in 0 146312 station_ip 5.119.55.210 146312 port 469 146312 unique_id port 146312 remote_ip 10.8.0.234 146317 username mehdizare 146317 mac 146317 bytes_out 0 146317 bytes_in 0 146317 station_ip 5.120.18.104 146317 port 497 146317 unique_id port 146324 username barzegar 146324 mac 146324 bytes_out 0 146324 bytes_in 0 146324 station_ip 5.119.55.210 146324 port 262 146324 unique_id port 146324 remote_ip 10.8.1.174 146329 username barzegar 146329 mac 146329 bytes_out 0 146329 bytes_in 0 146329 station_ip 5.119.55.210 146329 port 488 146329 unique_id port 146329 remote_ip 10.8.0.234 146333 username barzegar 146333 mac 146333 bytes_out 0 146333 bytes_in 0 146333 station_ip 5.119.55.210 146333 port 491 146333 unique_id port 146333 remote_ip 10.8.0.234 146334 username kalantary 146334 mac 146334 bytes_out 0 146334 bytes_in 0 146334 station_ip 83.122.55.171 146334 port 488 146334 unique_id port 146334 remote_ip 10.8.0.98 146336 username barzegar 146336 mac 146336 bytes_out 0 146336 bytes_in 0 146336 station_ip 5.119.55.210 146336 port 482 146336 unique_id port 146336 remote_ip 10.8.0.234 146342 username morteza 146342 mac 146342 bytes_out 0 146342 bytes_in 0 146342 station_ip 83.122.4.15 146342 port 263 146342 unique_id port 146342 remote_ip 10.8.1.62 146344 username godarzi 146344 mac 146344 bytes_out 0 146344 bytes_in 0 146344 station_ip 5.202.5.1 146344 port 488 146344 unique_id port 146344 remote_ip 10.8.0.174 146345 username morteza 146345 mac 146345 bytes_out 0 146345 bytes_in 0 146345 station_ip 83.122.4.15 146345 port 263 146345 unique_id port 146345 remote_ip 10.8.1.62 146351 username barzegar 146351 mac 146351 bytes_out 0 146351 bytes_in 0 146351 station_ip 5.119.55.210 146351 port 263 146351 unique_id port 146351 remote_ip 10.8.1.174 146362 username barzegar 146362 mac 146362 bytes_out 0 146362 bytes_in 0 146362 station_ip 5.119.55.210 146362 port 262 146362 unique_id port 146362 remote_ip 10.8.1.174 146364 username barzegar 146364 mac 146364 bytes_out 2889 146364 bytes_in 5683 146364 station_ip 5.119.55.210 146364 port 262 146364 unique_id port 146364 remote_ip 10.8.1.174 146370 username meysam 146370 kill_reason Another user logged on this global unique id 146370 mac 146370 bytes_out 0 146370 bytes_in 0 146370 station_ip 188.158.50.28 146370 port 495 146370 unique_id port 146372 username mohammadmahdi 146372 mac 146372 bytes_out 0 146372 bytes_in 0 146372 station_ip 5.120.56.43 146372 port 489 146372 unique_id port 146380 username kalantary 146380 mac 146380 bytes_out 0 146380 bytes_in 0 146380 station_ip 83.122.47.171 146326 remote_ip 10.8.0.138 146330 username meysam 146330 mac 146330 bytes_out 0 146330 bytes_in 0 146330 station_ip 5.119.215.139 146330 port 486 146330 unique_id port 146330 remote_ip 10.8.0.110 146331 username malekpoir 146331 kill_reason Another user logged on this global unique id 146331 mac 146331 bytes_out 0 146331 bytes_in 0 146331 station_ip 5.119.150.243 146331 port 451 146331 unique_id port 146335 username godarzi 146335 mac 146335 bytes_out 2971269 146335 bytes_in 47989763 146335 station_ip 5.202.5.1 146335 port 482 146335 unique_id port 146335 remote_ip 10.8.0.174 146337 username mostafa_es78 146337 unique_id port 146337 terminate_cause User-Request 146337 bytes_out 115431 146337 bytes_in 762856 146337 station_ip 109.125.167.112 146337 port 15730908 146337 nas_port_type Virtual 146337 remote_ip 5.5.5.101 146338 username morteza 146338 mac 146338 bytes_out 0 146338 bytes_in 0 146338 station_ip 83.122.4.15 146338 port 486 146338 unique_id port 146338 remote_ip 10.8.0.46 146339 username morteza 146339 mac 146339 bytes_out 0 146339 bytes_in 0 146339 station_ip 83.122.4.15 146339 port 263 146339 unique_id port 146339 remote_ip 10.8.1.62 146341 username morteza 146341 mac 146341 bytes_out 0 146341 bytes_in 0 146341 station_ip 83.122.4.15 146341 port 488 146341 unique_id port 146341 remote_ip 10.8.0.46 146347 username jafari 146347 kill_reason Another user logged on this global unique id 146347 mac 146347 bytes_out 0 146347 bytes_in 0 146347 station_ip 37.137.27.205 146347 port 486 146347 unique_id port 146347 remote_ip 10.8.0.242 146353 username kalantary 146353 mac 146353 bytes_out 0 146353 bytes_in 0 146353 station_ip 83.122.52.171 146353 port 489 146353 unique_id port 146353 remote_ip 10.8.0.98 146354 username jafari 146354 kill_reason Another user logged on this global unique id 146354 mac 146354 bytes_out 0 146354 bytes_in 0 146354 station_ip 37.137.27.205 146354 port 486 146354 unique_id port 146355 username godarzi 146355 mac 146355 bytes_out 592093 146355 bytes_in 7906572 146355 station_ip 5.202.5.1 146355 port 488 146355 unique_id port 146355 remote_ip 10.8.0.174 146357 username kalantary 146357 mac 146357 bytes_out 0 146357 bytes_in 0 146357 station_ip 83.122.52.171 146357 port 489 146357 unique_id port 146357 remote_ip 10.8.0.98 146358 username godarzi 146358 mac 146358 bytes_out 453815 146358 bytes_in 8220291 146358 station_ip 5.202.5.1 146358 port 488 146358 unique_id port 146358 remote_ip 10.8.0.174 146360 username kalantary 146360 mac 146360 bytes_out 1348289 146360 bytes_in 27458910 146360 station_ip 83.122.52.171 146360 port 482 146360 unique_id port 146360 remote_ip 10.8.0.98 146361 username mosi 146361 mac 146361 bytes_out 0 146361 bytes_in 0 146361 station_ip 37.137.46.247 146361 port 262 146361 unique_id port 146361 remote_ip 10.8.1.86 146363 username kalantary 146363 mac 146363 bytes_out 0 146363 bytes_in 0 146363 station_ip 83.122.52.171 146363 port 482 146363 unique_id port 146363 remote_ip 10.8.0.98 146365 username meysam 146365 kill_reason Another user logged on this global unique id 146365 mac 146365 bytes_out 0 146365 bytes_in 0 146365 station_ip 188.158.50.28 146365 port 495 146365 unique_id port 146365 remote_ip 10.8.0.110 146367 username mohammadmahdi 146367 kill_reason Another user logged on this global unique id 146367 mac 146367 bytes_out 0 146367 bytes_in 0 146367 station_ip 5.120.56.43 146367 port 489 146367 unique_id port 146367 remote_ip 10.8.0.54 146368 username jafari 146368 mac 146346 username morteza 146346 mac 146346 bytes_out 0 146346 bytes_in 0 146346 station_ip 83.122.4.15 146346 port 263 146346 unique_id port 146346 remote_ip 10.8.1.62 146348 username kalantary 146348 mac 146348 bytes_out 0 146348 bytes_in 0 146348 station_ip 83.122.52.171 146348 port 489 146348 unique_id port 146348 remote_ip 10.8.0.98 146349 username morteza 146349 mac 146349 bytes_out 0 146349 bytes_in 0 146349 station_ip 83.122.4.15 146349 port 488 146349 unique_id port 146349 remote_ip 10.8.0.46 146350 username barzegar 146350 mac 146350 bytes_out 0 146350 bytes_in 0 146350 station_ip 5.119.55.210 146350 port 263 146350 unique_id port 146350 remote_ip 10.8.1.174 146352 username alirezazadeh 146352 unique_id port 146352 terminate_cause Lost-Carrier 146352 bytes_out 14429611 146352 bytes_in 481724970 146352 station_ip 5.120.90.206 146352 port 15730889 146352 nas_port_type Virtual 146352 remote_ip 5.5.5.252 146356 username barzegar 146356 mac 146356 bytes_out 0 146356 bytes_in 0 146356 station_ip 5.119.55.210 146356 port 263 146356 unique_id port 146356 remote_ip 10.8.1.174 146359 username houshang 146359 mac 146359 bytes_out 0 146359 bytes_in 0 146359 station_ip 5.119.10.56 146359 port 482 146359 unique_id port 146366 username jafari 146366 kill_reason Another user logged on this global unique id 146366 mac 146366 bytes_out 0 146366 bytes_in 0 146366 station_ip 37.137.27.205 146366 port 486 146366 unique_id port 146369 username fezealinaghi 146369 mac 146369 bytes_out 1930986 146369 bytes_in 38924480 146369 station_ip 83.123.83.24 146369 port 492 146369 unique_id port 146369 remote_ip 10.8.0.78 146371 username mosi 146371 kill_reason Another user logged on this global unique id 146371 mac 146371 bytes_out 0 146371 bytes_in 0 146371 station_ip 94.24.96.165 146371 port 263 146371 unique_id port 146371 remote_ip 10.8.1.86 146375 username meysam 146375 kill_reason Another user logged on this global unique id 146375 mac 146375 bytes_out 0 146375 bytes_in 0 146375 station_ip 188.158.50.28 146375 port 495 146375 unique_id port 146376 username barzegar 146376 mac 146376 bytes_out 0 146376 bytes_in 0 146376 station_ip 5.119.55.210 146376 port 264 146376 unique_id port 146376 remote_ip 10.8.1.174 146378 username afarin1 146378 mac 146378 bytes_out 146122 146378 bytes_in 794927 146378 station_ip 31.59.37.151 146378 port 262 146378 unique_id port 146378 remote_ip 10.8.1.114 146382 username fezealinaghi 146382 kill_reason Another user logged on this global unique id 146382 mac 146382 bytes_out 0 146382 bytes_in 0 146382 station_ip 83.123.247.189 146382 port 486 146382 unique_id port 146382 remote_ip 10.8.0.78 146383 username hamid.e 146383 kill_reason Maximum number of concurrent logins reached 146383 unique_id port 146383 bytes_out 0 146383 bytes_in 0 146383 station_ip 31.56.159.123 146383 port 15730910 146383 nas_port_type Virtual 146389 username barzegar 146389 mac 146389 bytes_out 0 146389 bytes_in 0 146389 station_ip 5.119.55.210 146389 port 264 146389 unique_id port 146389 remote_ip 10.8.1.174 146391 username amin.saeedi 146391 kill_reason Relative expiration date has reached 146391 unique_id port 146391 bytes_out 0 146391 bytes_in 0 146391 station_ip 31.56.159.123 146391 port 15730913 146391 nas_port_type Virtual 146392 username kalantary 146392 mac 146392 bytes_out 167397 146392 bytes_in 405743 146392 station_ip 83.122.47.171 146392 port 470 146392 unique_id port 146392 remote_ip 10.8.0.98 146399 username fezealinaghi 146399 kill_reason Another user logged on this global unique id 146399 mac 146368 bytes_out 0 146368 bytes_in 0 146368 station_ip 37.137.27.205 146368 port 486 146368 unique_id port 146373 username mahdiyehalizadeh 146373 kill_reason Another user logged on this global unique id 146373 mac 146373 bytes_out 0 146373 bytes_in 0 146373 station_ip 5.119.26.33 146373 port 452 146373 unique_id port 146373 remote_ip 10.8.0.82 146374 username jafari 146374 mac 146374 bytes_out 0 146374 bytes_in 0 146374 station_ip 37.137.27.205 146374 port 486 146374 unique_id port 146374 remote_ip 10.8.0.242 146377 username barzegar 146377 mac 146377 bytes_out 0 146377 bytes_in 0 146377 station_ip 5.119.55.210 146377 port 264 146377 unique_id port 146377 remote_ip 10.8.1.174 146379 username barzegar 146379 mac 146379 bytes_out 0 146379 bytes_in 0 146379 station_ip 5.119.55.210 146379 port 264 146379 unique_id port 146379 remote_ip 10.8.1.174 146384 username jafari 146384 kill_reason Another user logged on this global unique id 146384 mac 146384 bytes_out 0 146384 bytes_in 0 146384 station_ip 37.137.27.205 146384 port 489 146384 unique_id port 146384 remote_ip 10.8.0.242 146386 username barzegar 146386 mac 146386 bytes_out 0 146386 bytes_in 0 146386 station_ip 5.119.55.210 146386 port 264 146386 unique_id port 146386 remote_ip 10.8.1.174 146388 username mehdizare 146388 mac 146388 bytes_out 372827 146388 bytes_in 484053 146388 station_ip 5.120.18.104 146388 port 470 146388 unique_id port 146388 remote_ip 10.8.0.90 146393 username jafari 146393 kill_reason Maximum check online fails reached 146393 mac 146393 bytes_out 0 146393 bytes_in 0 146393 station_ip 37.137.27.205 146393 port 498 146393 unique_id port 146394 username mosi 146394 kill_reason Another user logged on this global unique id 146394 mac 146394 bytes_out 0 146394 bytes_in 0 146394 station_ip 94.24.96.165 146394 port 263 146394 unique_id port 146395 username rezaei 146395 kill_reason Another user logged on this global unique id 146395 mac 146395 bytes_out 0 146395 bytes_in 0 146395 station_ip 5.119.4.59 146395 port 497 146395 unique_id port 146395 remote_ip 10.8.0.230 146396 username fezealinaghi 146396 kill_reason Another user logged on this global unique id 146396 mac 146396 bytes_out 0 146396 bytes_in 0 146396 station_ip 83.123.247.189 146396 port 486 146396 unique_id port 146397 username meysam 146397 mac 146397 bytes_out 0 146397 bytes_in 0 146397 station_ip 188.158.50.28 146397 port 495 146397 unique_id port 146404 username hamidsalari 146404 kill_reason Another user logged on this global unique id 146404 mac 146404 bytes_out 0 146404 bytes_in 0 146404 station_ip 5.119.174.87 146404 port 496 146404 unique_id port 146405 username vanila 146405 mac 146405 bytes_out 6053042 146405 bytes_in 1594394 146405 station_ip 83.123.195.253 146405 port 470 146405 unique_id port 146405 remote_ip 10.8.0.178 146407 username barzegar 146407 mac 146407 bytes_out 3184 146407 bytes_in 5377 146407 station_ip 5.119.55.210 146407 port 495 146407 unique_id port 146407 remote_ip 10.8.0.234 146409 username mosi 146409 mac 146409 bytes_out 0 146409 bytes_in 0 146409 station_ip 94.24.96.165 146409 port 263 146409 unique_id port 146410 username mosi 146410 mac 146410 bytes_out 0 146410 bytes_in 0 146410 station_ip 94.24.96.165 146410 port 263 146410 unique_id port 146410 remote_ip 10.8.1.86 146414 username rezaei 146414 kill_reason Another user logged on this global unique id 146414 mac 146414 bytes_out 0 146414 bytes_in 0 146414 station_ip 5.119.4.59 146414 port 497 146414 unique_id port 146418 username mehdizare 146380 port 482 146380 unique_id port 146380 remote_ip 10.8.0.98 146381 username mosi 146381 kill_reason Another user logged on this global unique id 146381 mac 146381 bytes_out 0 146381 bytes_in 0 146381 station_ip 94.24.96.165 146381 port 263 146381 unique_id port 146385 username jafari 146385 mac 146385 bytes_out 0 146385 bytes_in 0 146385 station_ip 37.137.27.205 146385 port 489 146385 unique_id port 146387 username hamid.e 146387 kill_reason Maximum number of concurrent logins reached 146387 unique_id port 146387 bytes_out 0 146387 bytes_in 0 146387 station_ip 31.56.159.123 146387 port 15730911 146387 nas_port_type Virtual 146390 username hamid.e 146390 kill_reason Maximum number of concurrent logins reached 146390 unique_id port 146390 bytes_out 0 146390 bytes_in 0 146390 station_ip 31.56.159.123 146390 port 15730912 146390 nas_port_type Virtual 146398 username barzegar 146398 mac 146398 bytes_out 0 146398 bytes_in 0 146398 station_ip 5.119.55.210 146398 port 264 146398 unique_id port 146398 remote_ip 10.8.1.174 146401 username mohammadjavad 146401 mac 146401 bytes_out 0 146401 bytes_in 0 146401 station_ip 83.123.171.90 146401 port 482 146401 unique_id port 146401 remote_ip 10.8.0.142 146402 username mehdizare 146402 mac 146402 bytes_out 31849 146402 bytes_in 44778 146402 station_ip 5.120.18.104 146402 port 489 146402 unique_id port 146402 remote_ip 10.8.0.90 146403 username barzegar 146403 mac 146403 bytes_out 0 146403 bytes_in 0 146403 station_ip 5.119.55.210 146403 port 482 146403 unique_id port 146403 remote_ip 10.8.0.234 146406 username mehdizare 146406 mac 146406 bytes_out 26028 146406 bytes_in 42903 146406 station_ip 5.120.18.104 146406 port 470 146406 unique_id port 146406 remote_ip 10.8.0.90 146408 username mehdizare 146408 mac 146408 bytes_out 0 146408 bytes_in 0 146408 station_ip 5.120.18.104 146408 port 499 146408 unique_id port 146408 remote_ip 10.8.0.90 146411 username malekpoir 146411 kill_reason Another user logged on this global unique id 146411 mac 146411 bytes_out 0 146411 bytes_in 0 146411 station_ip 5.119.150.243 146411 port 451 146411 unique_id port 146413 username mostafa_es78 146413 unique_id port 146413 terminate_cause User-Request 146413 bytes_out 36588 146413 bytes_in 297240 146413 station_ip 5.120.73.159 146413 port 15730915 146413 nas_port_type Virtual 146413 remote_ip 5.5.5.252 146422 username mehdizare 146422 kill_reason Maximum check online fails reached 146422 mac 146422 bytes_out 0 146422 bytes_in 0 146422 station_ip 5.120.18.104 146422 port 499 146422 unique_id port 146429 username milan 146429 kill_reason Another user logged on this global unique id 146429 mac 146429 bytes_out 0 146429 bytes_in 0 146429 station_ip 5.120.31.183 146429 port 469 146429 unique_id port 146433 username moradi 146433 mac 146433 bytes_out 2767110 146433 bytes_in 44485847 146433 station_ip 113.203.74.150 146433 port 452 146433 unique_id port 146433 remote_ip 10.8.0.226 146439 username hasanahmadi 146439 mac 146439 bytes_out 0 146439 bytes_in 0 146439 station_ip 83.122.143.251 146439 port 452 146439 unique_id port 146439 remote_ip 10.8.0.126 146441 username forozandeh1 146441 mac 146441 bytes_out 0 146441 bytes_in 0 146441 station_ip 83.122.197.127 146441 port 470 146441 unique_id port 146441 remote_ip 10.8.0.130 146443 username mosi 146443 mac 146443 bytes_out 0 146443 bytes_in 0 146443 station_ip 94.24.96.165 146443 port 491 146443 unique_id port 146443 remote_ip 10.8.0.138 146447 username amirabbas 146447 unique_id port 146447 terminate_cause User-Request 146399 bytes_out 0 146399 bytes_in 0 146399 station_ip 83.123.247.189 146399 port 486 146399 unique_id port 146400 username mostafa_es78 146400 unique_id port 146400 terminate_cause User-Request 146400 bytes_out 224726 146400 bytes_in 2834345 146400 station_ip 5.120.188.82 146400 port 15730914 146400 nas_port_type Virtual 146400 remote_ip 5.5.5.252 146412 username kalantary 146412 mac 146412 bytes_out 417041 146412 bytes_in 1807540 146412 station_ip 83.122.8.151 146412 port 489 146412 unique_id port 146412 remote_ip 10.8.0.98 146415 username mosi 146415 mac 146415 bytes_out 10369 146415 bytes_in 11427 146415 station_ip 94.24.96.165 146415 port 495 146415 unique_id port 146415 remote_ip 10.8.0.138 146416 username mosi 146416 mac 146416 bytes_out 0 146416 bytes_in 0 146416 station_ip 94.24.96.165 146416 port 489 146416 unique_id port 146416 remote_ip 10.8.0.138 146417 username mehdizare 146417 mac 146417 bytes_out 0 146417 bytes_in 0 146417 station_ip 5.120.18.104 146417 port 470 146417 unique_id port 146417 remote_ip 10.8.0.90 146419 username barzegar 146419 mac 146419 bytes_out 0 146419 bytes_in 0 146419 station_ip 5.119.55.210 146419 port 489 146419 unique_id port 146419 remote_ip 10.8.0.234 146420 username mehdizare 146420 mac 146420 bytes_out 2659 146420 bytes_in 4478 146420 station_ip 5.120.18.104 146420 port 470 146420 unique_id port 146420 remote_ip 10.8.0.90 146421 username barzegar 146421 mac 146421 bytes_out 0 146421 bytes_in 0 146421 station_ip 5.119.55.210 146421 port 470 146421 unique_id port 146421 remote_ip 10.8.0.234 146425 username vanila 146425 mac 146425 bytes_out 348814 146425 bytes_in 55314 146425 station_ip 83.123.195.253 146425 port 470 146425 unique_id port 146425 remote_ip 10.8.0.178 146427 username alipour 146427 kill_reason Another user logged on this global unique id 146427 mac 146427 bytes_out 0 146427 bytes_in 0 146427 station_ip 83.122.135.165 146427 port 482 146427 unique_id port 146427 remote_ip 10.8.0.102 146428 username barzegar 146428 mac 146428 bytes_out 0 146428 bytes_in 0 146428 station_ip 5.119.55.210 146428 port 489 146428 unique_id port 146428 remote_ip 10.8.0.234 146430 username afarin1 146430 mac 146430 bytes_out 0 146430 bytes_in 0 146430 station_ip 31.59.37.151 146430 port 262 146430 unique_id port 146430 remote_ip 10.8.1.114 146431 username mosi 146431 mac 146431 bytes_out 3374092 146431 bytes_in 37663702 146431 station_ip 94.24.96.165 146431 port 495 146431 unique_id port 146431 remote_ip 10.8.0.138 146432 username barzegar 146432 mac 146432 bytes_out 2894 146432 bytes_in 5232 146432 station_ip 5.119.55.210 146432 port 489 146432 unique_id port 146432 remote_ip 10.8.0.234 146437 username godarzi 146437 kill_reason Another user logged on this global unique id 146437 mac 146437 bytes_out 0 146437 bytes_in 0 146437 station_ip 5.202.5.1 146437 port 488 146437 unique_id port 146437 remote_ip 10.8.0.174 146442 username hasanahmadi 146442 kill_reason Maximum check online fails reached 146442 mac 146442 bytes_out 0 146442 bytes_in 0 146442 station_ip 83.122.143.251 146442 port 500 146442 unique_id port 146454 username forozandeh1 146454 mac 146454 bytes_out 0 146454 bytes_in 0 146454 station_ip 37.129.25.70 146454 port 502 146454 unique_id port 146454 remote_ip 10.8.0.130 146455 username zotaher 146455 mac 146455 bytes_out 0 146455 bytes_in 0 146455 station_ip 83.122.6.81 146455 port 470 146455 unique_id port 146455 remote_ip 10.8.0.194 146418 mac 146418 bytes_out 3907 146418 bytes_in 8896 146418 station_ip 5.120.18.104 146418 port 489 146418 unique_id port 146418 remote_ip 10.8.0.90 146423 username mohammadmahdi 146423 mac 146423 bytes_out 14204 146423 bytes_in 22249 146423 station_ip 5.120.56.43 146423 port 470 146423 unique_id port 146423 remote_ip 10.8.0.54 146424 username mansour 146424 mac 146424 bytes_out 639684 146424 bytes_in 4328626 146424 station_ip 5.202.98.165 146424 port 491 146424 unique_id port 146424 remote_ip 10.8.0.30 146426 username mahdiyehalizadeh 146426 mac 146426 bytes_out 0 146426 bytes_in 0 146426 station_ip 5.119.26.33 146426 port 452 146426 unique_id port 146434 username vanila 146434 mac 146434 bytes_out 7493267 146434 bytes_in 8456345 146434 station_ip 83.123.195.253 146434 port 470 146434 unique_id port 146434 remote_ip 10.8.0.178 146435 username hasanahmadi 146435 mac 146435 bytes_out 0 146435 bytes_in 0 146435 station_ip 83.122.143.251 146435 port 500 146435 unique_id port 146435 remote_ip 10.8.0.126 146436 username kalantary 146436 mac 146436 bytes_out 0 146436 bytes_in 0 146436 station_ip 83.122.47.167 146436 port 489 146436 unique_id port 146436 remote_ip 10.8.0.98 146438 username vanila 146438 mac 146438 bytes_out 0 146438 bytes_in 0 146438 station_ip 83.123.195.253 146438 port 452 146438 unique_id port 146438 remote_ip 10.8.0.178 146440 username amirabbas 146440 unique_id port 146440 terminate_cause User-Request 146440 bytes_out 2169948 146440 bytes_in 18500037 146440 station_ip 37.27.32.211 146440 port 15730916 146440 nas_port_type Virtual 146440 remote_ip 5.5.5.253 146444 username fezealinaghi 146444 kill_reason Another user logged on this global unique id 146444 mac 146444 bytes_out 0 146444 bytes_in 0 146444 station_ip 83.123.247.189 146444 port 486 146444 unique_id port 146445 username barzegar 146445 mac 146445 bytes_out 0 146445 bytes_in 0 146445 station_ip 5.119.55.210 146445 port 495 146445 unique_id port 146445 remote_ip 10.8.0.234 146446 username alipour 146446 kill_reason Another user logged on this global unique id 146446 mac 146446 bytes_out 0 146446 bytes_in 0 146446 station_ip 83.122.135.165 146446 port 482 146446 unique_id port 146448 username godarzi 146448 mac 146448 bytes_out 0 146448 bytes_in 0 146448 station_ip 5.202.5.1 146448 port 488 146448 unique_id port 146453 username hasanahmadi 146453 mac 146453 bytes_out 0 146453 bytes_in 0 146453 station_ip 83.122.143.251 146453 port 452 146453 unique_id port 146453 remote_ip 10.8.0.126 146456 username barzegar 146456 kill_reason Another user logged on this global unique id 146456 mac 146456 bytes_out 0 146456 bytes_in 0 146456 station_ip 5.119.55.210 146456 port 263 146456 unique_id port 146456 remote_ip 10.8.1.174 146457 username barzegar 146457 mac 146457 bytes_out 0 146457 bytes_in 0 146457 station_ip 5.119.55.210 146457 port 263 146457 unique_id port 146460 username houshang 146460 mac 146460 bytes_out 0 146460 bytes_in 0 146460 station_ip 5.119.10.56 146460 port 470 146460 unique_id port 146460 remote_ip 10.8.0.22 146463 username kalantary 146463 mac 146463 bytes_out 0 146463 bytes_in 0 146463 station_ip 83.122.37.175 146463 port 488 146463 unique_id port 146463 remote_ip 10.8.0.98 146467 username milan 146467 mac 146467 bytes_out 0 146467 bytes_in 0 146467 station_ip 5.120.31.183 146467 port 469 146467 unique_id port 146471 username alipour 146471 mac 146471 bytes_out 0 146471 bytes_in 0 146447 bytes_out 565576 146447 bytes_in 8183357 146447 station_ip 37.27.32.211 146447 port 15730917 146447 nas_port_type Virtual 146447 remote_ip 5.5.5.253 146449 username mansur 146449 mac 146449 bytes_out 0 146449 bytes_in 0 146449 station_ip 5.119.82.230 146449 port 491 146449 unique_id port 146449 remote_ip 10.8.0.18 146450 username tahmasebi 146450 kill_reason Another user logged on this global unique id 146450 mac 146450 bytes_out 0 146450 bytes_in 0 146450 station_ip 5.124.104.75 146450 port 495 146450 unique_id port 146450 remote_ip 10.8.0.42 146451 username barzegar 146451 mac 146451 bytes_out 1062227 146451 bytes_in 14714186 146451 station_ip 5.119.55.210 146451 port 263 146451 unique_id port 146451 remote_ip 10.8.1.174 146452 username forozandeh1 146452 mac 146452 bytes_out 0 146452 bytes_in 0 146452 station_ip 37.129.25.70 146452 port 488 146452 unique_id port 146452 remote_ip 10.8.0.130 146458 username zotaher 146458 mac 146458 bytes_out 162928 146458 bytes_in 412493 146458 station_ip 83.122.6.81 146458 port 264 146458 unique_id port 146458 remote_ip 10.8.1.246 146465 username hamid.e 146465 unique_id port 146465 terminate_cause User-Request 146465 bytes_out 6962010 146465 bytes_in 123894789 146465 station_ip 37.27.22.60 146465 port 15730909 146465 nas_port_type Virtual 146465 remote_ip 5.5.5.254 146466 username tahmasebi 146466 mac 146466 bytes_out 0 146466 bytes_in 0 146466 station_ip 5.124.104.75 146466 port 495 146466 unique_id port 146468 username kalantary 146468 mac 146468 bytes_out 83282 146468 bytes_in 186900 146468 station_ip 83.122.37.175 146468 port 488 146468 unique_id port 146468 remote_ip 10.8.0.98 146469 username vanila 146469 mac 146469 bytes_out 0 146469 bytes_in 0 146469 station_ip 83.123.222.157 146469 port 489 146469 unique_id port 146469 remote_ip 10.8.0.178 146470 username aminvpn 146470 unique_id port 146470 terminate_cause Lost-Carrier 146470 bytes_out 552470 146470 bytes_in 21949124 146470 station_ip 5.233.49.34 146470 port 15730918 146470 nas_port_type Virtual 146470 remote_ip 5.5.5.255 146473 username moradi 146473 kill_reason Another user logged on this global unique id 146473 mac 146473 bytes_out 0 146473 bytes_in 0 146473 station_ip 113.203.9.251 146473 port 470 146473 unique_id port 146475 username tahmasebi 146475 mac 146475 bytes_out 68949 146475 bytes_in 105582 146475 station_ip 5.124.104.75 146475 port 264 146475 unique_id port 146475 remote_ip 10.8.1.90 146477 username tahmasebi 146477 mac 146477 bytes_out 0 146477 bytes_in 0 146477 station_ip 5.124.104.75 146477 port 489 146477 unique_id port 146477 remote_ip 10.8.0.42 146480 username forozandeh1 146480 mac 146480 bytes_out 1299052 146480 bytes_in 11869348 146480 station_ip 83.122.25.100 146480 port 469 146480 unique_id port 146480 remote_ip 10.8.0.130 146481 username tahmasebi 146481 mac 146481 bytes_out 8490 146481 bytes_in 15884 146481 station_ip 5.124.104.75 146481 port 263 146481 unique_id port 146481 remote_ip 10.8.1.90 146487 username kalantary 146487 mac 146487 bytes_out 0 146487 bytes_in 0 146487 station_ip 83.122.117.167 146487 port 469 146487 unique_id port 146487 remote_ip 10.8.0.98 146494 username vanila 146494 mac 146494 bytes_out 2531010 146494 bytes_in 2401287 146494 station_ip 83.123.222.157 146494 port 489 146494 unique_id port 146494 remote_ip 10.8.0.178 146498 username vanila 146498 mac 146498 bytes_out 96886 146498 bytes_in 337074 146498 station_ip 83.123.222.157 146498 port 470 146498 unique_id port 146459 username zotaher 146459 mac 146459 bytes_out 0 146459 bytes_in 0 146459 station_ip 83.122.6.81 146459 port 263 146459 unique_id port 146459 remote_ip 10.8.1.246 146461 username mohammadjavad 146461 mac 146461 bytes_out 0 146461 bytes_in 0 146461 station_ip 113.203.80.43 146461 port 501 146461 unique_id port 146461 remote_ip 10.8.0.142 146462 username mosi 146462 mac 146462 bytes_out 0 146462 bytes_in 0 146462 station_ip 94.24.96.165 146462 port 489 146462 unique_id port 146462 remote_ip 10.8.0.138 146464 username moradi 146464 kill_reason Another user logged on this global unique id 146464 mac 146464 bytes_out 0 146464 bytes_in 0 146464 station_ip 113.203.9.251 146464 port 470 146464 unique_id port 146464 remote_ip 10.8.0.226 146472 username barzegar 146472 kill_reason Another user logged on this global unique id 146472 mac 146472 bytes_out 0 146472 bytes_in 0 146472 station_ip 5.119.55.210 146472 port 263 146472 unique_id port 146472 remote_ip 10.8.1.174 146474 username barzegar 146474 mac 146474 bytes_out 0 146474 bytes_in 0 146474 station_ip 5.119.55.210 146474 port 263 146474 unique_id port 146476 username barzegar 146476 mac 146476 bytes_out 0 146476 bytes_in 0 146476 station_ip 5.119.55.210 146476 port 263 146476 unique_id port 146476 remote_ip 10.8.1.174 146483 username barzegar 146483 mac 146483 bytes_out 41083 146483 bytes_in 360880 146483 station_ip 5.119.55.210 146483 port 469 146483 unique_id port 146483 remote_ip 10.8.0.234 146486 username vanila 146486 mac 146486 bytes_out 0 146486 bytes_in 0 146486 station_ip 83.123.222.157 146486 port 495 146486 unique_id port 146486 remote_ip 10.8.0.178 146489 username barzegar 146489 mac 146489 bytes_out 8599 146489 bytes_in 57840 146489 station_ip 5.119.55.210 146489 port 501 146489 unique_id port 146489 remote_ip 10.8.0.234 146502 username fezealinaghi 146502 kill_reason Another user logged on this global unique id 146502 mac 146502 bytes_out 0 146502 bytes_in 0 146502 station_ip 83.123.247.189 146502 port 486 146502 unique_id port 146505 username barzegar 146505 mac 146505 bytes_out 0 146505 bytes_in 0 146505 station_ip 5.119.55.210 146505 port 263 146505 unique_id port 146505 remote_ip 10.8.1.174 146507 username mohammadmahdi 146507 mac 146507 bytes_out 3386152 146507 bytes_in 35735941 146507 station_ip 5.120.56.43 146507 port 495 146507 unique_id port 146507 remote_ip 10.8.0.54 146509 username kalantary 146509 mac 146509 bytes_out 0 146509 bytes_in 0 146509 station_ip 83.122.1.175 146509 port 482 146509 unique_id port 146509 remote_ip 10.8.0.98 146514 username barzegar 146514 mac 146514 bytes_out 0 146514 bytes_in 0 146514 station_ip 5.119.55.210 146514 port 263 146514 unique_id port 146514 remote_ip 10.8.1.174 146515 username farhad2 146515 mac 146515 bytes_out 350586 146515 bytes_in 949784 146515 station_ip 5.119.188.177 146515 port 495 146515 unique_id port 146515 remote_ip 10.8.0.190 146517 username farhad2 146517 mac 146517 bytes_out 0 146517 bytes_in 0 146517 station_ip 5.119.188.177 146517 port 469 146517 unique_id port 146517 remote_ip 10.8.0.190 146519 username farhad2 146519 mac 146519 bytes_out 267820 146519 bytes_in 1523318 146519 station_ip 5.119.188.177 146519 port 469 146519 unique_id port 146519 remote_ip 10.8.0.190 146524 username farhad2 146524 mac 146524 bytes_out 0 146524 bytes_in 0 146524 station_ip 5.119.188.177 146524 port 469 146524 unique_id port 146524 remote_ip 10.8.0.190 146471 station_ip 83.122.135.165 146471 port 482 146471 unique_id port 146478 username tahmasebi 146478 mac 146478 bytes_out 0 146478 bytes_in 0 146478 station_ip 5.124.104.75 146478 port 263 146478 unique_id port 146478 remote_ip 10.8.1.90 146479 username barzegar 146479 mac 146479 bytes_out 104904 146479 bytes_in 1010786 146479 station_ip 5.119.55.210 146479 port 501 146479 unique_id port 146479 remote_ip 10.8.0.234 146482 username mohammadjavad 146482 mac 146482 bytes_out 0 146482 bytes_in 0 146482 station_ip 37.129.185.144 146482 port 482 146482 unique_id port 146482 remote_ip 10.8.0.142 146484 username houshang 146484 mac 146484 bytes_out 391479 146484 bytes_in 3365440 146484 station_ip 5.119.10.56 146484 port 489 146484 unique_id port 146484 remote_ip 10.8.0.22 146485 username moradi 146485 kill_reason Another user logged on this global unique id 146485 mac 146485 bytes_out 0 146485 bytes_in 0 146485 station_ip 113.203.9.251 146485 port 470 146485 unique_id port 146488 username moradi 146488 kill_reason Another user logged on this global unique id 146488 mac 146488 bytes_out 0 146488 bytes_in 0 146488 station_ip 113.203.9.251 146488 port 470 146488 unique_id port 146490 username mehdizare 146490 mac 146490 bytes_out 0 146490 bytes_in 0 146490 station_ip 5.120.18.104 146490 port 452 146490 unique_id port 146490 remote_ip 10.8.0.90 146491 username malekpoir 146491 kill_reason Another user logged on this global unique id 146491 mac 146491 bytes_out 0 146491 bytes_in 0 146491 station_ip 5.119.150.243 146491 port 451 146491 unique_id port 146492 username moradi 146492 mac 146492 bytes_out 0 146492 bytes_in 0 146492 station_ip 113.203.9.251 146492 port 470 146492 unique_id port 146493 username godarzi 146493 mac 146493 bytes_out 13349230 146493 bytes_in 44806220 146493 station_ip 5.202.5.1 146493 port 491 146493 unique_id port 146493 remote_ip 10.8.0.174 146495 username barzegar 146495 mac 146495 bytes_out 0 146495 bytes_in 0 146495 station_ip 5.119.55.210 146495 port 264 146495 unique_id port 146495 remote_ip 10.8.1.174 146496 username tahmasebi 146496 kill_reason Another user logged on this global unique id 146496 mac 146496 bytes_out 0 146496 bytes_in 0 146496 station_ip 5.124.104.75 146496 port 263 146496 unique_id port 146496 remote_ip 10.8.1.90 146497 username fezealinaghi 146497 kill_reason Another user logged on this global unique id 146497 mac 146497 bytes_out 0 146497 bytes_in 0 146497 station_ip 83.123.247.189 146497 port 486 146497 unique_id port 146499 username tahmasebi 146499 mac 146499 bytes_out 0 146499 bytes_in 0 146499 station_ip 5.124.104.75 146499 port 263 146499 unique_id port 146501 username sedighe 146501 mac 146501 bytes_out 321818 146501 bytes_in 1668559 146501 station_ip 113.203.75.218 146501 port 482 146501 unique_id port 146501 remote_ip 10.8.0.146 146503 username aminvpn 146503 unique_id port 146503 terminate_cause Lost-Carrier 146503 bytes_out 851376 146503 bytes_in 2686921 146503 station_ip 5.233.49.34 146503 port 15730919 146503 nas_port_type Virtual 146503 remote_ip 5.5.5.255 146504 username rezaei 146504 mac 146504 bytes_out 0 146504 bytes_in 0 146504 station_ip 5.119.4.59 146504 port 497 146504 unique_id port 146512 username fezealinaghi 146512 kill_reason Another user logged on this global unique id 146512 mac 146512 bytes_out 0 146512 bytes_in 0 146512 station_ip 83.123.247.189 146512 port 486 146512 unique_id port 146513 username forozandeh1 146513 mac 146513 bytes_out 1536476 146513 bytes_in 6604780 146498 remote_ip 10.8.0.178 146500 username vanila 146500 mac 146500 bytes_out 0 146500 bytes_in 0 146500 station_ip 83.123.222.157 146500 port 470 146500 unique_id port 146500 remote_ip 10.8.0.178 146506 username rezaei 146506 mac 146506 bytes_out 0 146506 bytes_in 0 146506 station_ip 5.119.4.59 146506 port 470 146506 unique_id port 146506 remote_ip 10.8.0.230 146508 username tahmasebi 146508 kill_reason Another user logged on this global unique id 146508 mac 146508 bytes_out 0 146508 bytes_in 0 146508 station_ip 5.124.104.75 146508 port 489 146508 unique_id port 146508 remote_ip 10.8.0.42 146510 username fezealinaghi 146510 kill_reason Another user logged on this global unique id 146510 mac 146510 bytes_out 0 146510 bytes_in 0 146510 station_ip 83.123.247.189 146510 port 486 146510 unique_id port 146511 username mohammadjavad 146511 mac 146511 bytes_out 615474 146511 bytes_in 11403643 146511 station_ip 83.122.224.123 146511 port 470 146511 unique_id port 146511 remote_ip 10.8.0.142 146516 username farhad2 146516 mac 146516 bytes_out 0 146516 bytes_in 0 146516 station_ip 5.119.188.177 146516 port 469 146516 unique_id port 146516 remote_ip 10.8.0.190 146518 username tahmasebi 146518 kill_reason Another user logged on this global unique id 146518 mac 146518 bytes_out 0 146518 bytes_in 0 146518 station_ip 5.124.104.75 146518 port 489 146518 unique_id port 146520 username barzegar 146520 mac 146520 bytes_out 0 146520 bytes_in 0 146520 station_ip 5.119.55.210 146520 port 263 146520 unique_id port 146520 remote_ip 10.8.1.174 146522 username fezealinaghi 146522 kill_reason Another user logged on this global unique id 146522 mac 146522 bytes_out 0 146522 bytes_in 0 146522 station_ip 83.123.247.189 146522 port 486 146522 unique_id port 146531 username barzegar 146531 mac 146531 bytes_out 0 146531 bytes_in 0 146531 station_ip 5.119.55.210 146531 port 263 146531 unique_id port 146531 remote_ip 10.8.1.174 146535 username barzegar 146535 mac 146535 bytes_out 0 146535 bytes_in 0 146535 station_ip 5.119.55.210 146535 port 263 146535 unique_id port 146535 remote_ip 10.8.1.174 146536 username hosseine 146536 kill_reason Another user logged on this global unique id 146536 mac 146536 bytes_out 0 146536 bytes_in 0 146536 station_ip 83.122.46.124 146536 port 492 146536 unique_id port 146536 remote_ip 10.8.0.238 146537 username kalantary 146537 mac 146537 bytes_out 135658 146537 bytes_in 222972 146537 station_ip 83.122.110.191 146537 port 469 146537 unique_id port 146537 remote_ip 10.8.0.98 146541 username godarzi 146541 mac 146541 bytes_out 0 146541 bytes_in 0 146541 station_ip 5.202.5.1 146541 port 469 146541 unique_id port 146541 remote_ip 10.8.0.174 146543 username mohammadmahdi 146543 kill_reason Another user logged on this global unique id 146543 mac 146543 bytes_out 0 146543 bytes_in 0 146543 station_ip 5.120.56.43 146543 port 491 146543 unique_id port 146543 remote_ip 10.8.0.54 146546 username houshang 146546 mac 146546 bytes_out 118716 146546 bytes_in 1120156 146546 station_ip 5.119.43.164 146546 port 469 146546 unique_id port 146546 remote_ip 10.8.0.22 146548 username barzegar 146548 mac 146548 bytes_out 0 146548 bytes_in 0 146548 station_ip 5.119.55.210 146548 port 263 146548 unique_id port 146548 remote_ip 10.8.1.174 146549 username mohammadjavad 146549 mac 146549 bytes_out 235130 146549 bytes_in 3908062 146549 station_ip 83.123.183.0 146549 port 482 146549 unique_id port 146549 remote_ip 10.8.0.142 146550 username godarzi 146550 mac 146513 station_ip 83.122.27.171 146513 port 469 146513 unique_id port 146513 remote_ip 10.8.0.130 146521 username forozandeh1 146521 mac 146521 bytes_out 140892 146521 bytes_in 153673 146521 station_ip 37.129.242.51 146521 port 470 146521 unique_id port 146521 remote_ip 10.8.0.130 146523 username farhad2 146523 mac 146523 bytes_out 589370 146523 bytes_in 2854551 146523 station_ip 5.119.188.177 146523 port 469 146523 unique_id port 146523 remote_ip 10.8.0.190 146525 username malekpoir 146525 mac 146525 bytes_out 0 146525 bytes_in 0 146525 station_ip 5.119.150.243 146525 port 451 146525 unique_id port 146527 username kalantary 146527 mac 146527 bytes_out 150272 146527 bytes_in 239382 146527 station_ip 83.122.110.191 146527 port 495 146527 unique_id port 146527 remote_ip 10.8.0.98 146529 username farhad2 146529 mac 146529 bytes_out 0 146529 bytes_in 0 146529 station_ip 5.119.188.177 146529 port 263 146529 unique_id port 146529 remote_ip 10.8.1.222 146532 username malekpoir 146532 mac 146532 bytes_out 11507 146532 bytes_in 21483 146532 station_ip 5.119.150.243 146532 port 469 146532 unique_id port 146532 remote_ip 10.8.0.58 146538 username rezaei 146538 mac 146538 bytes_out 1615534 146538 bytes_in 17987574 146538 station_ip 5.119.4.59 146538 port 451 146538 unique_id port 146538 remote_ip 10.8.0.230 146540 username aminvpn 146540 unique_id port 146540 terminate_cause Lost-Carrier 146540 bytes_out 483945 146540 bytes_in 1711526 146540 station_ip 5.233.49.34 146540 port 15730921 146540 nas_port_type Virtual 146540 remote_ip 5.5.5.255 146542 username barzegar 146542 mac 146542 bytes_out 0 146542 bytes_in 0 146542 station_ip 5.119.55.210 146542 port 263 146542 unique_id port 146542 remote_ip 10.8.1.174 146545 username farhad2 146545 mac 146545 bytes_out 0 146545 bytes_in 0 146545 station_ip 5.119.188.177 146545 port 495 146545 unique_id port 146547 username mohammadmahdi 146547 mac 146547 bytes_out 0 146547 bytes_in 0 146547 station_ip 5.120.56.43 146547 port 491 146547 unique_id port 146551 username farhad2 146551 mac 146551 bytes_out 1873702 146551 bytes_in 16077920 146551 station_ip 5.119.188.177 146551 port 469 146551 unique_id port 146551 remote_ip 10.8.0.190 146555 username tahmasebi 146555 mac 146555 bytes_out 0 146555 bytes_in 0 146555 station_ip 5.124.104.75 146555 port 489 146555 unique_id port 146561 username barzegar 146561 mac 146561 bytes_out 0 146561 bytes_in 0 146561 station_ip 5.119.55.210 146561 port 263 146561 unique_id port 146561 remote_ip 10.8.1.174 146562 username mohammadmahdi 146562 kill_reason Another user logged on this global unique id 146562 mac 146562 bytes_out 0 146562 bytes_in 0 146562 station_ip 5.120.56.43 146562 port 488 146562 unique_id port 146562 remote_ip 10.8.0.54 146563 username mosi 146563 mac 146563 bytes_out 0 146563 bytes_in 0 146563 station_ip 94.24.96.165 146563 port 470 146563 unique_id port 146563 remote_ip 10.8.0.138 146568 username barzegar 146568 mac 146568 bytes_out 0 146568 bytes_in 0 146568 station_ip 5.119.55.210 146568 port 265 146568 unique_id port 146568 remote_ip 10.8.1.174 146572 username mohammadmahdi 146572 kill_reason Another user logged on this global unique id 146572 mac 146572 bytes_out 0 146572 bytes_in 0 146572 station_ip 5.120.56.43 146572 port 488 146572 unique_id port 146573 username aminvpn 146573 unique_id port 146573 terminate_cause User-Request 146573 bytes_out 5468970 146573 bytes_in 83806418 146573 station_ip 79.127.6.247 146526 username farhad2 146526 mac 146526 bytes_out 0 146526 bytes_in 0 146526 station_ip 5.119.188.177 146526 port 451 146526 unique_id port 146526 remote_ip 10.8.0.190 146528 username forozandeh1 146528 mac 146528 bytes_out 161161 146528 bytes_in 221353 146528 station_ip 83.123.217.73 146528 port 470 146528 unique_id port 146528 remote_ip 10.8.0.130 146530 username godarzi 146530 mac 146530 bytes_out 8054291 146530 bytes_in 19762360 146530 station_ip 5.202.5.1 146530 port 482 146530 unique_id port 146530 remote_ip 10.8.0.174 146533 username alipour 146533 mac 146533 bytes_out 1964528 146533 bytes_in 38792331 146533 station_ip 83.122.135.165 146533 port 488 146533 unique_id port 146533 remote_ip 10.8.0.102 146534 username fezealinaghi 146534 kill_reason Another user logged on this global unique id 146534 mac 146534 bytes_out 0 146534 bytes_in 0 146534 station_ip 83.123.247.189 146534 port 486 146534 unique_id port 146539 username barzegar 146539 mac 146539 bytes_out 0 146539 bytes_in 0 146539 station_ip 5.119.55.210 146539 port 263 146539 unique_id port 146539 remote_ip 10.8.1.174 146544 username farhad2 146544 kill_reason Another user logged on this global unique id 146544 mac 146544 bytes_out 0 146544 bytes_in 0 146544 station_ip 5.119.188.177 146544 port 495 146544 unique_id port 146544 remote_ip 10.8.0.190 146552 username barzegar 146552 mac 146552 bytes_out 0 146552 bytes_in 0 146552 station_ip 5.119.55.210 146552 port 469 146552 unique_id port 146552 remote_ip 10.8.0.234 146553 username farhad2 146553 mac 146553 bytes_out 140984 146553 bytes_in 751145 146553 station_ip 5.119.188.177 146553 port 482 146553 unique_id port 146553 remote_ip 10.8.0.190 146554 username barzegar 146554 mac 146554 bytes_out 0 146554 bytes_in 0 146554 station_ip 5.119.55.210 146554 port 482 146554 unique_id port 146554 remote_ip 10.8.0.234 146556 username mehdizare 146556 mac 146556 bytes_out 184415 146556 bytes_in 568319 146556 station_ip 5.120.18.104 146556 port 452 146556 unique_id port 146556 remote_ip 10.8.0.90 146565 username mosi 146565 mac 146565 bytes_out 1819 146565 bytes_in 4259 146565 station_ip 89.47.146.220 146565 port 265 146565 unique_id port 146565 remote_ip 10.8.1.86 146567 username farhad2 146567 mac 146567 bytes_out 0 146567 bytes_in 0 146567 station_ip 5.119.188.177 146567 port 452 146567 unique_id port 146567 remote_ip 10.8.0.190 146569 username hamidsalari 146569 mac 146569 bytes_out 0 146569 bytes_in 0 146569 station_ip 5.119.174.87 146569 port 496 146569 unique_id port 146571 username bcboard 146571 unique_id port 146571 terminate_cause Lost-Carrier 146571 bytes_out 620056 146571 bytes_in 8933746 146571 station_ip 37.129.81.213 146571 port 15730923 146571 nas_port_type Virtual 146571 remote_ip 5.5.5.250 146575 username barzegar 146575 mac 146575 bytes_out 11400 146575 bytes_in 30763 146575 station_ip 5.119.55.210 146575 port 265 146575 unique_id port 146575 remote_ip 10.8.1.174 146576 username barzegar 146576 mac 146576 bytes_out 0 146576 bytes_in 0 146576 station_ip 5.119.55.210 146576 port 495 146576 unique_id port 146576 remote_ip 10.8.0.234 146578 username forozandeh1 146578 mac 146578 bytes_out 0 146578 bytes_in 0 146578 station_ip 37.129.178.51 146578 port 491 146578 unique_id port 146578 remote_ip 10.8.0.130 146581 username aminvpn 146581 unique_id port 146581 terminate_cause Lost-Carrier 146581 bytes_out 210437 146581 bytes_in 4089650 146581 station_ip 79.127.6.247 146550 bytes_out 0 146550 bytes_in 0 146550 station_ip 5.202.5.1 146550 port 482 146550 unique_id port 146550 remote_ip 10.8.0.174 146557 username farhad2 146557 mac 146557 bytes_out 709173 146557 bytes_in 5037129 146557 station_ip 5.119.188.177 146557 port 469 146557 unique_id port 146557 remote_ip 10.8.0.190 146558 username barzegar 146558 mac 146558 bytes_out 0 146558 bytes_in 0 146558 station_ip 5.119.55.210 146558 port 469 146558 unique_id port 146558 remote_ip 10.8.0.234 146559 username barzegar 146559 mac 146559 bytes_out 0 146559 bytes_in 0 146559 station_ip 5.119.55.210 146559 port 489 146559 unique_id port 146559 remote_ip 10.8.0.234 146560 username vanila 146560 mac 146560 bytes_out 6464474 146560 bytes_in 666613 146560 station_ip 83.123.222.157 146560 port 469 146560 unique_id port 146560 remote_ip 10.8.0.178 146564 username alipour 146564 mac 146564 bytes_out 0 146564 bytes_in 0 146564 station_ip 83.122.135.165 146564 port 451 146564 unique_id port 146564 remote_ip 10.8.0.102 146566 username kalantary 146566 mac 146566 bytes_out 0 146566 bytes_in 0 146566 station_ip 83.122.40.163 146566 port 469 146566 unique_id port 146566 remote_ip 10.8.0.98 146570 username barzegar 146570 mac 146570 bytes_out 0 146570 bytes_in 0 146570 station_ip 5.119.55.210 146570 port 265 146570 unique_id port 146570 remote_ip 10.8.1.174 146574 username afarin1 146574 mac 146574 bytes_out 0 146574 bytes_in 0 146574 station_ip 31.56.158.25 146574 port 262 146574 unique_id port 146574 remote_ip 10.8.1.114 146579 username kalantary 146579 mac 146579 bytes_out 0 146579 bytes_in 0 146579 station_ip 83.122.113.235 146579 port 470 146579 unique_id port 146579 remote_ip 10.8.0.98 146580 username meysam 146580 mac 146580 bytes_out 0 146580 bytes_in 0 146580 station_ip 188.159.254.108 146580 port 489 146580 unique_id port 146580 remote_ip 10.8.0.110 146583 username barzegar 146583 mac 146583 bytes_out 0 146583 bytes_in 0 146583 station_ip 5.119.55.210 146583 port 488 146583 unique_id port 146583 remote_ip 10.8.0.234 146584 username aminvpn 146584 unique_id port 146584 terminate_cause User-Request 146584 bytes_out 6199642 146584 bytes_in 120126709 146584 station_ip 5.119.251.225 146584 port 15730920 146584 nas_port_type Virtual 146584 remote_ip 5.5.5.253 146587 username aminvpn 146587 mac 146587 bytes_out 477974 146587 bytes_in 4288003 146587 station_ip 83.122.223.217 146587 port 470 146587 unique_id port 146587 remote_ip 10.8.0.14 146598 username barzegar 146598 mac 146598 bytes_out 0 146598 bytes_in 0 146598 station_ip 5.119.55.210 146598 port 489 146598 unique_id port 146598 remote_ip 10.8.0.234 146605 username alirezazadeh 146605 unique_id port 146605 terminate_cause Lost-Carrier 146605 bytes_out 488047 146605 bytes_in 2201163 146605 station_ip 5.119.180.19 146605 port 15730927 146605 nas_port_type Virtual 146605 remote_ip 5.5.5.250 146607 username barzegar 146607 mac 146607 bytes_out 0 146607 bytes_in 0 146607 station_ip 5.119.55.210 146607 port 488 146607 unique_id port 146607 remote_ip 10.8.0.234 146609 username fezealinaghi 146609 kill_reason Another user logged on this global unique id 146609 mac 146609 bytes_out 0 146609 bytes_in 0 146609 station_ip 83.123.247.189 146609 port 486 146609 unique_id port 146610 username aminvpn 146610 mac 146610 bytes_out 0 146610 bytes_in 0 146610 station_ip 83.122.11.118 146610 port 489 146610 unique_id port 146610 remote_ip 10.8.0.14 146613 username hasanahmadi 146573 port 15730924 146573 nas_port_type Virtual 146573 remote_ip 5.5.5.249 146577 username mohammadmahdi 146577 mac 146577 bytes_out 0 146577 bytes_in 0 146577 station_ip 5.120.56.43 146577 port 488 146577 unique_id port 146585 username fezealinaghi 146585 kill_reason Another user logged on this global unique id 146585 mac 146585 bytes_out 0 146585 bytes_in 0 146585 station_ip 83.123.247.189 146585 port 486 146585 unique_id port 146586 username mohammadjavad 146586 mac 146586 bytes_out 0 146586 bytes_in 0 146586 station_ip 83.123.69.67 146586 port 452 146586 unique_id port 146586 remote_ip 10.8.0.142 146588 username farhad2 146588 kill_reason Another user logged on this global unique id 146588 mac 146588 bytes_out 0 146588 bytes_in 0 146588 station_ip 5.119.188.177 146588 port 469 146588 unique_id port 146588 remote_ip 10.8.0.190 146589 username mehdizare 146589 kill_reason Another user logged on this global unique id 146589 mac 146589 bytes_out 0 146589 bytes_in 0 146589 station_ip 5.120.18.104 146589 port 482 146589 unique_id port 146589 remote_ip 10.8.0.90 146592 username fezealinaghi 146592 kill_reason Another user logged on this global unique id 146592 mac 146592 bytes_out 0 146592 bytes_in 0 146592 station_ip 83.123.247.189 146592 port 486 146592 unique_id port 146593 username hamid 146593 mac 146593 bytes_out 0 146593 bytes_in 0 146593 station_ip 83.122.124.0 146593 port 489 146593 unique_id port 146593 remote_ip 10.8.0.106 146595 username hamid 146595 mac 146595 bytes_out 0 146595 bytes_in 0 146595 station_ip 83.122.124.0 146595 port 489 146595 unique_id port 146595 remote_ip 10.8.0.106 146596 username fezealinaghi 146596 kill_reason Another user logged on this global unique id 146596 mac 146596 bytes_out 0 146596 bytes_in 0 146596 station_ip 83.123.247.189 146596 port 486 146596 unique_id port 146600 username hasanahmadi 146600 mac 146600 bytes_out 0 146600 bytes_in 0 146600 station_ip 83.122.90.40 146600 port 488 146600 unique_id port 146600 remote_ip 10.8.0.126 146601 username kordestani 146601 mac 146601 bytes_out 0 146601 bytes_in 0 146601 station_ip 151.235.110.56 146601 port 489 146601 unique_id port 146601 remote_ip 10.8.0.134 146602 username fezealinaghi 146602 kill_reason Another user logged on this global unique id 146602 mac 146602 bytes_out 0 146602 bytes_in 0 146602 station_ip 83.123.247.189 146602 port 486 146602 unique_id port 146603 username rezaei 146603 kill_reason Another user logged on this global unique id 146603 mac 146603 bytes_out 0 146603 bytes_in 0 146603 station_ip 5.119.4.59 146603 port 470 146603 unique_id port 146603 remote_ip 10.8.0.230 146604 username hasanahmadi 146604 mac 146604 bytes_out 0 146604 bytes_in 0 146604 station_ip 83.122.90.40 146604 port 489 146604 unique_id port 146604 remote_ip 10.8.0.126 146606 username kordestani 146606 mac 146606 bytes_out 0 146606 bytes_in 0 146606 station_ip 151.235.110.56 146606 port 488 146606 unique_id port 146606 remote_ip 10.8.0.134 146608 username aminvpn 146608 mac 146608 bytes_out 398756 146608 bytes_in 1502559 146608 station_ip 5.120.79.112 146608 port 469 146608 unique_id port 146608 remote_ip 10.8.0.14 146611 username hasanahmadi 146611 mac 146611 bytes_out 260132 146611 bytes_in 1725981 146611 station_ip 83.122.90.40 146611 port 491 146611 unique_id port 146611 remote_ip 10.8.0.126 146612 username aminvpn 146612 mac 146612 bytes_out 0 146612 bytes_in 0 146612 station_ip 5.120.79.112 146612 port 469 146612 unique_id port 146612 remote_ip 10.8.0.14 146615 username hasanahmadi 146581 port 15730926 146581 nas_port_type Virtual 146581 remote_ip 5.5.5.255 146582 username sobhan 146582 unique_id port 146582 terminate_cause Lost-Carrier 146582 bytes_out 5095132 146582 bytes_in 65425015 146582 station_ip 5.120.48.47 146582 port 15730925 146582 nas_port_type Virtual 146582 remote_ip 5.5.5.247 146590 username barzegar 146590 mac 146590 bytes_out 0 146590 bytes_in 0 146590 station_ip 5.119.55.210 146590 port 265 146590 unique_id port 146590 remote_ip 10.8.1.174 146591 username farhad2 146591 mac 146591 bytes_out 0 146591 bytes_in 0 146591 station_ip 5.119.188.177 146591 port 469 146591 unique_id port 146594 username hamid 146594 mac 146594 bytes_out 0 146594 bytes_in 0 146594 station_ip 83.122.124.0 146594 port 469 146594 unique_id port 146594 remote_ip 10.8.0.106 146597 username hamid 146597 mac 146597 bytes_out 787762 146597 bytes_in 4472406 146597 station_ip 83.122.124.0 146597 port 491 146597 unique_id port 146597 remote_ip 10.8.0.106 146599 username barzegar 146599 mac 146599 bytes_out 0 146599 bytes_in 0 146599 station_ip 5.119.55.210 146599 port 489 146599 unique_id port 146599 remote_ip 10.8.0.234 146622 username kalantary 146622 mac 146622 bytes_out 0 146622 bytes_in 0 146622 station_ip 83.122.1.179 146622 port 491 146622 unique_id port 146622 remote_ip 10.8.0.98 146623 username barzegar 146623 mac 146623 bytes_out 0 146623 bytes_in 0 146623 station_ip 5.119.55.210 146623 port 491 146623 unique_id port 146623 remote_ip 10.8.0.234 146627 username hasanahmadi 146627 mac 146627 bytes_out 0 146627 bytes_in 0 146627 station_ip 83.122.90.40 146627 port 489 146627 unique_id port 146627 remote_ip 10.8.0.126 146630 username barzegar 146630 mac 146630 bytes_out 0 146630 bytes_in 0 146630 station_ip 5.119.55.210 146630 port 266 146630 unique_id port 146630 remote_ip 10.8.1.174 146635 username milan 146635 kill_reason Another user logged on this global unique id 146635 mac 146635 bytes_out 0 146635 bytes_in 0 146635 station_ip 5.120.31.183 146635 port 491 146635 unique_id port 146635 remote_ip 10.8.0.218 146637 username barzegar 146637 mac 146637 bytes_out 0 146637 bytes_in 0 146637 station_ip 5.119.55.210 146637 port 495 146637 unique_id port 146637 remote_ip 10.8.0.234 146639 username farhad2 146639 mac 146639 bytes_out 0 146639 bytes_in 0 146639 station_ip 5.119.188.177 146639 port 451 146639 unique_id port 146641 username barzegar 146641 kill_reason Maximum check online fails reached 146641 mac 146641 bytes_out 0 146641 bytes_in 0 146641 station_ip 5.119.55.210 146641 port 451 146641 unique_id port 146643 username farhad2 146643 mac 146643 bytes_out 0 146643 bytes_in 0 146643 station_ip 5.119.188.177 146643 port 452 146643 unique_id port 146643 remote_ip 10.8.0.190 146649 username hashtadani3 146649 kill_reason Relative expiration date has reached 146649 mac 146649 bytes_out 0 146649 bytes_in 0 146649 station_ip 37.129.223.200 146649 port 452 146649 unique_id port 146650 username barzegar 146650 mac 146650 bytes_out 0 146650 bytes_in 0 146650 station_ip 5.119.55.210 146650 port 266 146650 unique_id port 146650 remote_ip 10.8.1.174 146653 username forozandeh1 146653 mac 146653 bytes_out 0 146653 bytes_in 0 146653 station_ip 113.203.45.208 146653 port 489 146653 unique_id port 146653 remote_ip 10.8.0.130 146654 username kalantary 146654 mac 146654 bytes_out 0 146654 bytes_in 0 146654 station_ip 83.122.37.127 146654 port 452 146613 mac 146613 bytes_out 0 146613 bytes_in 0 146613 station_ip 83.122.90.40 146613 port 488 146613 unique_id port 146613 remote_ip 10.8.0.126 146614 username aminvpn 146614 mac 146614 bytes_out 0 146614 bytes_in 0 146614 station_ip 83.122.11.118 146614 port 489 146614 unique_id port 146614 remote_ip 10.8.0.14 146618 username farhad2 146618 mac 146618 bytes_out 0 146618 bytes_in 0 146618 station_ip 5.119.188.177 146618 port 452 146618 unique_id port 146618 remote_ip 10.8.0.190 146619 username hasanahmadi 146619 kill_reason Maximum check online fails reached 146619 mac 146619 bytes_out 0 146619 bytes_in 0 146619 station_ip 83.122.90.40 146619 port 488 146619 unique_id port 146621 username rezaei 146621 kill_reason Another user logged on this global unique id 146621 mac 146621 bytes_out 0 146621 bytes_in 0 146621 station_ip 5.119.4.59 146621 port 470 146621 unique_id port 146624 username aminvpn 146624 mac 146624 bytes_out 1195355 146624 bytes_in 1089041 146624 station_ip 83.122.11.118 146624 port 469 146624 unique_id port 146624 remote_ip 10.8.0.14 146626 username hamidsalari 146626 mac 146626 bytes_out 0 146626 bytes_in 0 146626 station_ip 5.119.174.87 146626 port 451 146626 unique_id port 146626 remote_ip 10.8.0.222 146628 username farhad2 146628 mac 146628 bytes_out 1312242 146628 bytes_in 9407407 146628 station_ip 5.119.188.177 146628 port 452 146628 unique_id port 146628 remote_ip 10.8.0.190 146633 username mohammadjavad 146633 mac 146633 bytes_out 0 146633 bytes_in 0 146633 station_ip 83.122.40.109 146633 port 452 146633 unique_id port 146633 remote_ip 10.8.0.142 146636 username farhad2 146636 kill_reason Another user logged on this global unique id 146636 mac 146636 bytes_out 0 146636 bytes_in 0 146636 station_ip 5.119.188.177 146636 port 451 146636 unique_id port 146640 username aminvpn 146640 mac 146640 bytes_out 0 146640 bytes_in 0 146640 station_ip 5.120.79.112 146640 port 266 146640 unique_id port 146640 remote_ip 10.8.1.6 146642 username rezaei 146642 mac 146642 bytes_out 0 146642 bytes_in 0 146642 station_ip 5.119.4.59 146642 port 470 146642 unique_id port 146645 username milan 146645 kill_reason Another user logged on this global unique id 146645 mac 146645 bytes_out 0 146645 bytes_in 0 146645 station_ip 5.120.31.183 146645 port 491 146645 unique_id port 146648 username hashtadani3 146648 kill_reason Relative expiration date has reached 146648 mac 146648 bytes_out 0 146648 bytes_in 0 146648 station_ip 37.129.223.200 146648 port 452 146648 unique_id port 146651 username afarin1 146651 mac 146651 bytes_out 0 146651 bytes_in 0 146651 station_ip 31.56.222.84 146651 port 262 146651 unique_id port 146651 remote_ip 10.8.1.114 146656 username barzegar 146656 mac 146656 bytes_out 0 146656 bytes_in 0 146656 station_ip 5.119.55.210 146656 port 268 146656 unique_id port 146656 remote_ip 10.8.1.174 146657 username forozandeh1 146657 mac 146657 bytes_out 250291 146657 bytes_in 921502 146657 station_ip 113.203.45.208 146657 port 262 146657 unique_id port 146657 remote_ip 10.8.1.250 146665 username barzegar 146665 mac 146665 bytes_out 0 146665 bytes_in 0 146665 station_ip 5.119.55.210 146665 port 452 146665 unique_id port 146665 remote_ip 10.8.0.234 146667 username morteza 146667 mac 146667 bytes_out 0 146667 bytes_in 0 146667 station_ip 113.203.41.201 146667 port 470 146667 unique_id port 146667 remote_ip 10.8.0.46 146669 username barzegar 146669 mac 146669 bytes_out 0 146615 mac 146615 bytes_out 0 146615 bytes_in 0 146615 station_ip 83.122.90.40 146615 port 469 146615 unique_id port 146615 remote_ip 10.8.0.126 146616 username aminvpn 146616 mac 146616 bytes_out 0 146616 bytes_in 0 146616 station_ip 5.120.79.112 146616 port 488 146616 unique_id port 146616 remote_ip 10.8.0.14 146617 username farhad2 146617 mac 146617 bytes_out 0 146617 bytes_in 0 146617 station_ip 5.119.188.177 146617 port 452 146617 unique_id port 146617 remote_ip 10.8.0.190 146620 username farhad2 146620 mac 146620 bytes_out 0 146620 bytes_in 0 146620 station_ip 5.119.188.177 146620 port 452 146620 unique_id port 146620 remote_ip 10.8.0.190 146625 username barzegar 146625 mac 146625 bytes_out 2583 146625 bytes_in 4984 146625 station_ip 5.119.55.210 146625 port 265 146625 unique_id port 146625 remote_ip 10.8.1.174 146629 username kalantary 146629 mac 146629 bytes_out 0 146629 bytes_in 0 146629 station_ip 83.122.62.187 146629 port 489 146629 unique_id port 146629 remote_ip 10.8.0.98 146631 username farhad2 146631 mac 146631 bytes_out 0 146631 bytes_in 0 146631 station_ip 5.119.188.177 146631 port 451 146631 unique_id port 146631 remote_ip 10.8.0.190 146632 username barzegar 146632 mac 146632 bytes_out 0 146632 bytes_in 0 146632 station_ip 5.119.55.210 146632 port 266 146632 unique_id port 146632 remote_ip 10.8.1.174 146634 username farhad2 146634 kill_reason Another user logged on this global unique id 146634 mac 146634 bytes_out 0 146634 bytes_in 0 146634 station_ip 5.119.188.177 146634 port 451 146634 unique_id port 146634 remote_ip 10.8.0.190 146638 username barzegar 146638 mac 146638 bytes_out 0 146638 bytes_in 0 146638 station_ip 5.119.55.210 146638 port 452 146638 unique_id port 146638 remote_ip 10.8.0.234 146644 username barzegar 146644 mac 146644 bytes_out 0 146644 bytes_in 0 146644 station_ip 5.119.55.210 146644 port 266 146644 unique_id port 146644 remote_ip 10.8.1.174 146646 username malekpoir 146646 mac 146646 bytes_out 914871 146646 bytes_in 6933947 146646 station_ip 5.119.150.243 146646 port 264 146646 unique_id port 146646 remote_ip 10.8.1.54 146647 username milan 146647 mac 146647 bytes_out 0 146647 bytes_in 0 146647 station_ip 5.120.31.183 146647 port 491 146647 unique_id port 146652 username hosseine 146652 mac 146652 bytes_out 0 146652 bytes_in 0 146652 station_ip 83.122.46.124 146652 port 492 146652 unique_id port 146655 username sobhan 146655 unique_id port 146655 terminate_cause Lost-Carrier 146655 bytes_out 1243405 146655 bytes_in 14299771 146655 station_ip 5.120.48.47 146655 port 15730930 146655 nas_port_type Virtual 146655 remote_ip 5.5.5.254 146659 username saeed9658 146659 kill_reason Another user logged on this global unique id 146659 mac 146659 bytes_out 0 146659 bytes_in 0 146659 station_ip 5.119.126.90 146659 port 266 146659 unique_id port 146659 remote_ip 10.8.1.210 146660 username mohammadjavad 146660 mac 146660 bytes_out 0 146660 bytes_in 0 146660 station_ip 83.122.76.57 146660 port 470 146660 unique_id port 146660 remote_ip 10.8.0.142 146662 username hashtadani3 146662 kill_reason Relative expiration date has reached 146662 mac 146662 bytes_out 0 146662 bytes_in 0 146662 station_ip 37.129.223.200 146662 port 452 146662 unique_id port 146664 username rezaei 146664 mac 146664 bytes_out 0 146664 bytes_in 0 146664 station_ip 5.119.4.59 146664 port 491 146664 unique_id port 146664 remote_ip 10.8.0.230 146676 username farhad2 146654 unique_id port 146654 remote_ip 10.8.0.98 146658 username barzegar 146658 mac 146658 bytes_out 5137 146658 bytes_in 11633 146658 station_ip 5.119.55.210 146658 port 268 146658 unique_id port 146658 remote_ip 10.8.1.174 146661 username ehsun 146661 mac 146661 bytes_out 1541613 146661 bytes_in 39880083 146661 station_ip 46.225.211.208 146661 port 452 146661 unique_id port 146661 remote_ip 10.8.0.170 146663 username barzegar 146663 mac 146663 bytes_out 0 146663 bytes_in 0 146663 station_ip 5.119.55.210 146663 port 269 146663 unique_id port 146663 remote_ip 10.8.1.174 146666 username forozandeh1 146666 mac 146666 bytes_out 534487 146666 bytes_in 4092260 146666 station_ip 83.122.145.54 146666 port 262 146666 unique_id port 146666 remote_ip 10.8.1.250 146668 username alipour 146668 mac 146668 bytes_out 3676387 146668 bytes_in 35919977 146668 station_ip 83.122.135.165 146668 port 263 146668 unique_id port 146668 remote_ip 10.8.1.50 146670 username farhad2 146670 mac 146670 bytes_out 3757607 146670 bytes_in 46183875 146670 station_ip 5.119.24.125 146670 port 452 146670 unique_id port 146670 remote_ip 10.8.0.190 146673 username morteza 146673 mac 146673 bytes_out 243917 146673 bytes_in 1016598 146673 station_ip 113.203.41.201 146673 port 269 146673 unique_id port 146673 remote_ip 10.8.1.62 146675 username morteza 146675 mac 146675 bytes_out 0 146675 bytes_in 0 146675 station_ip 113.203.41.201 146675 port 491 146675 unique_id port 146675 remote_ip 10.8.0.46 146678 username forozandeh1 146678 mac 146678 bytes_out 574810 146678 bytes_in 3489498 146678 station_ip 37.129.74.104 146678 port 262 146678 unique_id port 146678 remote_ip 10.8.1.250 146681 username farhad2 146681 mac 146681 bytes_out 0 146681 bytes_in 0 146681 station_ip 5.119.24.125 146681 port 452 146681 unique_id port 146681 remote_ip 10.8.0.190 146682 username godarzi 146682 mac 146682 bytes_out 0 146682 bytes_in 0 146682 station_ip 5.202.5.1 146682 port 491 146682 unique_id port 146682 remote_ip 10.8.0.174 146683 username fezealinaghi 146683 kill_reason Another user logged on this global unique id 146683 mac 146683 bytes_out 0 146683 bytes_in 0 146683 station_ip 83.123.247.189 146683 port 486 146683 unique_id port 146687 username malekpoir 146687 mac 146687 bytes_out 4609 146687 bytes_in 12493 146687 station_ip 5.119.150.243 146687 port 262 146687 unique_id port 146687 remote_ip 10.8.1.54 146688 username saeed9658 146688 mac 146688 bytes_out 0 146688 bytes_in 0 146688 station_ip 5.119.126.90 146688 port 266 146688 unique_id port 146691 username aminvpn 146691 kill_reason Another user logged on this global unique id 146691 mac 146691 bytes_out 0 146691 bytes_in 0 146691 station_ip 5.120.79.112 146691 port 268 146691 unique_id port 146694 username aminvpn 146694 unique_id port 146694 terminate_cause Lost-Carrier 146694 bytes_out 153981 146694 bytes_in 507316 146694 station_ip 79.127.6.111 146694 port 15730932 146694 nas_port_type Virtual 146694 remote_ip 5.5.5.249 146695 username aminvpn 146695 kill_reason Another user logged on this global unique id 146695 mac 146695 bytes_out 0 146695 bytes_in 0 146695 station_ip 5.120.79.112 146695 port 268 146695 unique_id port 146697 username aminvpn 146697 mac 146697 bytes_out 0 146697 bytes_in 0 146697 station_ip 5.120.79.112 146697 port 268 146697 unique_id port 146700 username vanila 146700 mac 146700 bytes_out 0 146700 bytes_in 0 146700 station_ip 83.123.180.133 146700 port 491 146669 bytes_in 0 146669 station_ip 5.119.55.210 146669 port 470 146669 unique_id port 146669 remote_ip 10.8.0.234 146671 username afarin1 146671 mac 146671 bytes_out 260335 146671 bytes_in 235825 146671 station_ip 151.238.240.104 146671 port 267 146671 unique_id port 146671 remote_ip 10.8.1.114 146672 username farhad2 146672 mac 146672 bytes_out 0 146672 bytes_in 0 146672 station_ip 5.119.24.125 146672 port 452 146672 unique_id port 146672 remote_ip 10.8.0.190 146674 username aminvpn 146674 kill_reason Another user logged on this global unique id 146674 mac 146674 bytes_out 0 146674 bytes_in 0 146674 station_ip 5.120.79.112 146674 port 268 146674 unique_id port 146674 remote_ip 10.8.1.6 146679 username ehsun 146679 mac 146679 bytes_out 0 146679 bytes_in 0 146679 station_ip 46.225.211.208 146679 port 470 146679 unique_id port 146679 remote_ip 10.8.0.170 146684 username malekpoir 146684 mac 146684 bytes_out 0 146684 bytes_in 0 146684 station_ip 5.119.150.243 146684 port 264 146684 unique_id port 146684 remote_ip 10.8.1.54 146685 username mahdiyehalizadeh 146685 mac 146685 bytes_out 0 146685 bytes_in 0 146685 station_ip 5.119.26.33 146685 port 489 146685 unique_id port 146685 remote_ip 10.8.0.82 146690 username bcboard 146690 unique_id port 146690 terminate_cause Lost-Carrier 146690 bytes_out 787679 146690 bytes_in 4023546 146690 station_ip 37.129.40.38 146690 port 15730931 146690 nas_port_type Virtual 146690 remote_ip 5.5.5.253 146693 username barzegar 146693 mac 146693 bytes_out 0 146693 bytes_in 0 146693 station_ip 5.119.55.210 146693 port 489 146693 unique_id port 146693 remote_ip 10.8.0.234 146698 username forozandeh1 146698 mac 146698 bytes_out 0 146698 bytes_in 0 146698 station_ip 37.129.98.209 146698 port 264 146698 unique_id port 146698 remote_ip 10.8.1.250 146699 username kalantary 146699 mac 146699 bytes_out 0 146699 bytes_in 0 146699 station_ip 83.122.11.191 146699 port 495 146699 unique_id port 146699 remote_ip 10.8.0.98 146704 username saeed9658 146704 mac 146704 bytes_out 0 146704 bytes_in 0 146704 station_ip 5.119.126.90 146704 port 263 146704 unique_id port 146704 remote_ip 10.8.1.210 146706 username godarzi 146706 kill_reason Another user logged on this global unique id 146706 mac 146706 bytes_out 0 146706 bytes_in 0 146706 station_ip 5.202.5.1 146706 port 489 146706 unique_id port 146706 remote_ip 10.8.0.174 146708 username barzegar 146708 mac 146708 bytes_out 0 146708 bytes_in 0 146708 station_ip 5.119.55.210 146708 port 263 146708 unique_id port 146708 remote_ip 10.8.1.174 146714 username forozandeh1 146714 mac 146714 bytes_out 416565 146714 bytes_in 3013510 146714 station_ip 113.203.53.218 146714 port 263 146714 unique_id port 146714 remote_ip 10.8.1.250 146715 username alipour 146715 mac 146715 bytes_out 0 146715 bytes_in 0 146715 station_ip 83.122.135.165 146715 port 492 146715 unique_id port 146715 remote_ip 10.8.0.102 146716 username barzegar 146716 mac 146716 bytes_out 3007 146716 bytes_in 5479 146716 station_ip 5.119.55.210 146716 port 264 146716 unique_id port 146716 remote_ip 10.8.1.174 146717 username barzegar 146717 mac 146717 bytes_out 0 146717 bytes_in 0 146717 station_ip 5.119.55.210 146717 port 263 146717 unique_id port 146717 remote_ip 10.8.1.174 146718 username rezaei 146718 mac 146718 bytes_out 0 146718 bytes_in 0 146718 station_ip 5.119.4.59 146718 port 486 146718 unique_id port 146718 remote_ip 10.8.0.230 146719 username mosi 146676 mac 146676 bytes_out 0 146676 bytes_in 0 146676 station_ip 5.119.24.125 146676 port 452 146676 unique_id port 146676 remote_ip 10.8.0.190 146677 username farhad2 146677 mac 146677 bytes_out 0 146677 bytes_in 0 146677 station_ip 5.119.24.125 146677 port 452 146677 unique_id port 146677 remote_ip 10.8.0.190 146680 username barzegar 146680 mac 146680 bytes_out 0 146680 bytes_in 0 146680 station_ip 5.119.55.210 146680 port 495 146680 unique_id port 146680 remote_ip 10.8.0.234 146686 username barzegar 146686 mac 146686 bytes_out 0 146686 bytes_in 0 146686 station_ip 5.119.55.210 146686 port 470 146686 unique_id port 146686 remote_ip 10.8.0.234 146689 username farhad2 146689 kill_reason Another user logged on this global unique id 146689 mac 146689 bytes_out 0 146689 bytes_in 0 146689 station_ip 5.119.24.125 146689 port 452 146689 unique_id port 146689 remote_ip 10.8.0.190 146692 username fezealinaghi 146692 kill_reason Another user logged on this global unique id 146692 mac 146692 bytes_out 0 146692 bytes_in 0 146692 station_ip 83.123.247.189 146692 port 486 146692 unique_id port 146696 username barzegar 146696 mac 146696 bytes_out 2583 146696 bytes_in 5039 146696 station_ip 5.119.55.210 146696 port 263 146696 unique_id port 146696 remote_ip 10.8.1.174 146701 username farhad2 146701 mac 146701 bytes_out 0 146701 bytes_in 0 146701 station_ip 5.119.24.125 146701 port 452 146701 unique_id port 146702 username vanila 146702 mac 146702 bytes_out 0 146702 bytes_in 0 146702 station_ip 83.123.180.133 146702 port 452 146702 unique_id port 146702 remote_ip 10.8.0.178 146707 username fezealinaghi 146707 mac 146707 bytes_out 0 146707 bytes_in 0 146707 station_ip 83.123.247.189 146707 port 486 146707 unique_id port 146710 username malekpoir 146710 kill_reason Another user logged on this global unique id 146710 mac 146710 bytes_out 0 146710 bytes_in 0 146710 station_ip 5.119.150.243 146710 port 262 146710 unique_id port 146710 remote_ip 10.8.1.54 146711 username godarzi 146711 mac 146711 bytes_out 0 146711 bytes_in 0 146711 station_ip 5.202.5.1 146711 port 489 146711 unique_id port 146712 username sabaghnezhad 146712 mac 146712 bytes_out 0 146712 bytes_in 0 146712 station_ip 113.203.126.196 146712 port 265 146712 unique_id port 146712 remote_ip 10.8.1.130 146713 username abravesh 146713 unique_id port 146713 terminate_cause User-Request 146713 bytes_out 3511707 146713 bytes_in 42197610 146713 station_ip 5.119.189.238 146713 port 15730922 146713 nas_port_type Virtual 146713 remote_ip 5.5.5.251 146721 username moradi 146721 mac 146721 bytes_out 2374348 146721 bytes_in 40724655 146721 station_ip 113.203.106.239 146721 port 491 146721 unique_id port 146721 remote_ip 10.8.0.226 146724 username fezealinaghi 146724 mac 146724 bytes_out 1035881 146724 bytes_in 1391797 146724 station_ip 83.123.247.189 146724 port 469 146724 unique_id port 146724 remote_ip 10.8.0.78 146726 username morteza 146726 mac 146726 bytes_out 0 146726 bytes_in 0 146726 station_ip 113.203.24.109 146726 port 492 146726 unique_id port 146726 remote_ip 10.8.0.46 146727 username morteza 146727 mac 146727 bytes_out 0 146727 bytes_in 0 146727 station_ip 113.203.24.109 146727 port 264 146727 unique_id port 146727 remote_ip 10.8.1.62 146731 username barzegar 146731 mac 146731 bytes_out 0 146731 bytes_in 0 146731 station_ip 5.119.55.210 146731 port 264 146731 unique_id port 146731 remote_ip 10.8.1.174 146734 username morteza 146734 mac 146700 unique_id port 146700 remote_ip 10.8.0.178 146703 username barzegar 146703 mac 146703 bytes_out 0 146703 bytes_in 0 146703 station_ip 5.119.55.210 146703 port 264 146703 unique_id port 146703 remote_ip 10.8.1.174 146705 username hamidsalari 146705 mac 146705 bytes_out 0 146705 bytes_in 0 146705 station_ip 5.119.212.252 146705 port 469 146705 unique_id port 146705 remote_ip 10.8.0.222 146709 username mirzaei 146709 kill_reason Another user logged on this global unique id 146709 mac 146709 bytes_out 0 146709 bytes_in 0 146709 station_ip 5.119.134.234 146709 port 445 146709 unique_id port 146709 remote_ip 10.8.0.66 146722 username barzegar 146722 mac 146722 bytes_out 6928 146722 bytes_in 31016 146722 station_ip 5.119.55.210 146722 port 264 146722 unique_id port 146722 remote_ip 10.8.1.174 146733 username morteza 146733 mac 146733 bytes_out 0 146733 bytes_in 0 146733 station_ip 113.203.24.109 146733 port 486 146733 unique_id port 146733 remote_ip 10.8.0.46 146741 username aminvpn 146741 unique_id port 146741 terminate_cause Lost-Carrier 146741 bytes_out 585956 146741 bytes_in 7010942 146741 station_ip 5.119.251.225 146741 port 15730936 146741 nas_port_type Virtual 146741 remote_ip 5.5.5.253 146742 username morteza 146742 mac 146742 bytes_out 0 146742 bytes_in 0 146742 station_ip 113.203.24.109 146742 port 265 146742 unique_id port 146742 remote_ip 10.8.1.62 146748 username mirzaei 146748 kill_reason Another user logged on this global unique id 146748 mac 146748 bytes_out 0 146748 bytes_in 0 146748 station_ip 5.119.134.234 146748 port 445 146748 unique_id port 146752 username morteza 146752 mac 146752 bytes_out 0 146752 bytes_in 0 146752 station_ip 113.203.24.109 146752 port 470 146752 unique_id port 146752 remote_ip 10.8.0.46 146754 username godarzi 146754 mac 146754 bytes_out 0 146754 bytes_in 0 146754 station_ip 5.202.5.1 146754 port 491 146754 unique_id port 146754 remote_ip 10.8.0.174 146759 username morteza 146759 mac 146759 bytes_out 0 146759 bytes_in 0 146759 station_ip 113.203.24.109 146759 port 495 146759 unique_id port 146759 remote_ip 10.8.0.46 146760 username morteza 146760 mac 146760 bytes_out 0 146760 bytes_in 0 146760 station_ip 113.203.24.109 146760 port 265 146760 unique_id port 146760 remote_ip 10.8.1.62 146762 username morteza 146762 mac 146762 bytes_out 0 146762 bytes_in 0 146762 station_ip 113.203.24.109 146762 port 495 146762 unique_id port 146762 remote_ip 10.8.0.46 146766 username barzegar 146766 mac 146766 bytes_out 0 146766 bytes_in 0 146766 station_ip 5.119.55.210 146766 port 266 146766 unique_id port 146766 remote_ip 10.8.1.174 146769 username forozandeh1 146769 mac 146769 bytes_out 551930 146769 bytes_in 4947637 146769 station_ip 113.203.15.139 146769 port 265 146769 unique_id port 146769 remote_ip 10.8.1.250 146770 username vanila 146770 mac 146770 bytes_out 0 146770 bytes_in 0 146770 station_ip 83.123.167.129 146770 port 495 146770 unique_id port 146770 remote_ip 10.8.0.178 146773 username kordestani 146773 mac 146773 bytes_out 1166744 146773 bytes_in 15763369 146773 station_ip 151.235.103.215 146773 port 264 146773 unique_id port 146773 remote_ip 10.8.1.98 146776 username sedighe 146776 mac 146776 bytes_out 0 146776 bytes_in 0 146776 station_ip 83.123.83.22 146776 port 491 146776 unique_id port 146776 remote_ip 10.8.0.146 146780 username mosi 146780 mac 146780 bytes_out 0 146780 bytes_in 0 146780 station_ip 37.153.183.251 146719 mac 146719 bytes_out 1262593 146719 bytes_in 10016169 146719 station_ip 151.235.107.13 146719 port 470 146719 unique_id port 146719 remote_ip 10.8.0.138 146720 username mohammadjavad 146720 mac 146720 bytes_out 0 146720 bytes_in 0 146720 station_ip 113.203.93.51 146720 port 489 146720 unique_id port 146720 remote_ip 10.8.0.142 146723 username barzegar 146723 mac 146723 bytes_out 0 146723 bytes_in 0 146723 station_ip 5.119.55.210 146723 port 264 146723 unique_id port 146723 remote_ip 10.8.1.174 146725 username mosi 146725 mac 146725 bytes_out 49508 146725 bytes_in 47528 146725 station_ip 93.114.23.81 146725 port 486 146725 unique_id port 146725 remote_ip 10.8.0.138 146728 username morteza 146728 mac 146728 bytes_out 0 146728 bytes_in 0 146728 station_ip 113.203.24.109 146728 port 264 146728 unique_id port 146728 remote_ip 10.8.1.62 146729 username reza2742 146729 kill_reason Relative expiration date has reached 146729 unique_id port 146729 bytes_out 0 146729 bytes_in 0 146729 station_ip 5.202.14.178 146729 port 15730933 146729 nas_port_type Virtual 146730 username farhad2 146730 mac 146730 bytes_out 178356 146730 bytes_in 707037 146730 station_ip 5.120.45.57 146730 port 486 146730 unique_id port 146730 remote_ip 10.8.0.190 146732 username kordestani 146732 mac 146732 bytes_out 0 146732 bytes_in 0 146732 station_ip 151.235.123.28 146732 port 489 146732 unique_id port 146732 remote_ip 10.8.0.134 146735 username rezaei 146735 mac 146735 bytes_out 0 146735 bytes_in 0 146735 station_ip 5.119.4.59 146735 port 470 146735 unique_id port 146735 remote_ip 10.8.0.230 146736 username hoorieh 146736 mac 146736 bytes_out 0 146736 bytes_in 0 146736 station_ip 5.119.87.88 146736 port 470 146736 unique_id port 146736 remote_ip 10.8.0.38 146737 username farhad2 146737 mac 146737 bytes_out 0 146737 bytes_in 0 146737 station_ip 5.120.45.57 146737 port 470 146737 unique_id port 146737 remote_ip 10.8.0.190 146738 username barzegar 146738 mac 146738 bytes_out 0 146738 bytes_in 0 146738 station_ip 5.119.55.210 146738 port 266 146738 unique_id port 146738 remote_ip 10.8.1.174 146743 username morteza 146743 mac 146743 bytes_out 0 146743 bytes_in 0 146743 station_ip 113.203.24.109 146743 port 470 146743 unique_id port 146743 remote_ip 10.8.0.46 146744 username fezealinaghi 146744 mac 146744 bytes_out 1793681 146744 bytes_in 23660442 146744 station_ip 83.123.247.189 146744 port 495 146744 unique_id port 146744 remote_ip 10.8.0.78 146745 username morteza 146745 mac 146745 bytes_out 0 146745 bytes_in 0 146745 station_ip 113.203.24.109 146745 port 470 146745 unique_id port 146745 remote_ip 10.8.0.46 146751 username morteza 146751 mac 146751 bytes_out 0 146751 bytes_in 0 146751 station_ip 113.203.24.109 146751 port 470 146751 unique_id port 146751 remote_ip 10.8.0.46 146755 username morteza 146755 mac 146755 bytes_out 0 146755 bytes_in 0 146755 station_ip 113.203.24.109 146755 port 489 146755 unique_id port 146755 remote_ip 10.8.0.46 146758 username morteza 146758 mac 146758 bytes_out 0 146758 bytes_in 0 146758 station_ip 113.203.24.109 146758 port 495 146758 unique_id port 146758 remote_ip 10.8.0.46 146771 username morteza 146771 mac 146771 bytes_out 0 146771 bytes_in 0 146771 station_ip 113.203.24.109 146771 port 496 146771 unique_id port 146771 remote_ip 10.8.0.46 146774 username barzegar 146774 mac 146774 bytes_out 0 146774 bytes_in 0 146734 bytes_out 0 146734 bytes_in 0 146734 station_ip 113.203.24.109 146734 port 486 146734 unique_id port 146734 remote_ip 10.8.0.46 146739 username farhad2 146739 mac 146739 bytes_out 0 146739 bytes_in 0 146739 station_ip 5.120.45.57 146739 port 470 146739 unique_id port 146739 remote_ip 10.8.0.190 146740 username kalantary 146740 mac 146740 bytes_out 0 146740 bytes_in 0 146740 station_ip 83.122.79.103 146740 port 486 146740 unique_id port 146740 remote_ip 10.8.0.98 146746 username afarin1 146746 kill_reason Another user logged on this global unique id 146746 mac 146746 bytes_out 0 146746 bytes_in 0 146746 station_ip 113.203.69.179 146746 port 489 146746 unique_id port 146746 remote_ip 10.8.0.118 146747 username farhad2 146747 mac 146747 bytes_out 0 146747 bytes_in 0 146747 station_ip 5.120.45.57 146747 port 266 146747 unique_id port 146747 remote_ip 10.8.1.222 146749 username afarin1 146749 mac 146749 bytes_out 0 146749 bytes_in 0 146749 station_ip 113.203.69.179 146749 port 489 146749 unique_id port 146750 username barzegar 146750 mac 146750 bytes_out 0 146750 bytes_in 0 146750 station_ip 5.119.55.210 146750 port 265 146750 unique_id port 146750 remote_ip 10.8.1.174 146753 username morteza 146753 mac 146753 bytes_out 0 146753 bytes_in 0 146753 station_ip 113.203.24.109 146753 port 489 146753 unique_id port 146753 remote_ip 10.8.0.46 146756 username morteza 146756 mac 146756 bytes_out 0 146756 bytes_in 0 146756 station_ip 113.203.24.109 146756 port 265 146756 unique_id port 146756 remote_ip 10.8.1.62 146757 username morteza 146757 mac 146757 bytes_out 0 146757 bytes_in 0 146757 station_ip 113.203.24.109 146757 port 495 146757 unique_id port 146757 remote_ip 10.8.0.46 146761 username morteza 146761 mac 146761 bytes_out 0 146761 bytes_in 0 146761 station_ip 113.203.24.109 146761 port 265 146761 unique_id port 146761 remote_ip 10.8.1.62 146763 username morteza 146763 mac 146763 bytes_out 0 146763 bytes_in 0 146763 station_ip 113.203.24.109 146763 port 495 146763 unique_id port 146763 remote_ip 10.8.0.46 146764 username morteza 146764 mac 146764 bytes_out 0 146764 bytes_in 0 146764 station_ip 113.203.24.109 146764 port 266 146764 unique_id port 146764 remote_ip 10.8.1.62 146765 username morteza 146765 mac 146765 bytes_out 0 146765 bytes_in 0 146765 station_ip 113.203.24.109 146765 port 267 146765 unique_id port 146765 remote_ip 10.8.1.62 146767 username fezealinaghi 146767 mac 146767 bytes_out 0 146767 bytes_in 0 146767 station_ip 113.203.85.178 146767 port 489 146767 unique_id port 146767 remote_ip 10.8.0.78 146768 username morteza 146768 mac 146768 bytes_out 0 146768 bytes_in 0 146768 station_ip 113.203.24.109 146768 port 489 146768 unique_id port 146768 remote_ip 10.8.0.46 146772 username morteza 146772 mac 146772 bytes_out 6345152 146772 bytes_in 358042 146772 station_ip 113.203.24.109 146772 port 495 146772 unique_id port 146772 remote_ip 10.8.0.46 146775 username morteza 146775 mac 146775 bytes_out 0 146775 bytes_in 0 146775 station_ip 113.203.24.109 146775 port 495 146775 unique_id port 146775 remote_ip 10.8.0.46 146777 username hashtadani3 146777 kill_reason Relative expiration date has reached 146777 mac 146777 bytes_out 0 146777 bytes_in 0 146777 station_ip 83.123.107.24 146777 port 491 146777 unique_id port 146778 username morteza 146778 mac 146778 bytes_out 0 146778 bytes_in 0 146778 station_ip 113.203.24.109 146774 station_ip 5.119.55.210 146774 port 265 146774 unique_id port 146774 remote_ip 10.8.1.174 146779 username mohammadjavad 146779 mac 146779 bytes_out 2094532 146779 bytes_in 42355972 146779 station_ip 83.123.54.182 146779 port 470 146779 unique_id port 146779 remote_ip 10.8.0.142 146782 username aminvpn 146782 mac 146782 bytes_out 1587425 146782 bytes_in 18240185 146782 station_ip 83.122.19.254 146782 port 486 146782 unique_id port 146782 remote_ip 10.8.0.14 146785 username meysam 146785 mac 146785 bytes_out 0 146785 bytes_in 0 146785 station_ip 5.119.173.138 146785 port 469 146785 unique_id port 146785 remote_ip 10.8.0.110 146789 username kalantary 146789 mac 146789 bytes_out 0 146789 bytes_in 0 146789 station_ip 83.122.100.191 146789 port 486 146789 unique_id port 146789 remote_ip 10.8.0.98 146797 username meysam 146797 mac 146797 bytes_out 0 146797 bytes_in 0 146797 station_ip 5.120.127.48 146797 port 482 146797 unique_id port 146797 remote_ip 10.8.0.110 146798 username sedighe 146798 mac 146798 bytes_out 330554 146798 bytes_in 280927 146798 station_ip 83.123.83.22 146798 port 495 146798 unique_id port 146798 remote_ip 10.8.0.146 146802 username mosi 146802 mac 146802 bytes_out 0 146802 bytes_in 0 146802 station_ip 94.24.89.118 146802 port 486 146802 unique_id port 146802 remote_ip 10.8.0.138 146806 username kordestani 146806 mac 146806 bytes_out 129127 146806 bytes_in 1496909 146806 station_ip 151.235.83.116 146806 port 264 146806 unique_id port 146806 remote_ip 10.8.1.98 146807 username kalantary 146807 mac 146807 bytes_out 170866 146807 bytes_in 274069 146807 station_ip 83.122.100.191 146807 port 486 146807 unique_id port 146807 remote_ip 10.8.0.98 146808 username barzegar 146808 mac 146808 bytes_out 2854 146808 bytes_in 5293 146808 station_ip 5.119.55.210 146808 port 265 146808 unique_id port 146808 remote_ip 10.8.1.174 146809 username barzegar 146809 mac 146809 bytes_out 2499 146809 bytes_in 4890 146809 station_ip 5.119.55.210 146809 port 265 146809 unique_id port 146809 remote_ip 10.8.1.174 146811 username sedighe 146811 mac 146811 bytes_out 79859 146811 bytes_in 86485 146811 station_ip 83.123.83.22 146811 port 482 146811 unique_id port 146811 remote_ip 10.8.0.146 146814 username barzegar 146814 mac 146814 bytes_out 2530 146814 bytes_in 4929 146814 station_ip 5.119.55.210 146814 port 264 146814 unique_id port 146814 remote_ip 10.8.1.174 146821 username jafari 146821 mac 146821 bytes_out 0 146821 bytes_in 0 146821 station_ip 5.62.200.88 146821 port 264 146821 unique_id port 146821 remote_ip 10.8.1.198 146829 username barzegar 146829 mac 146829 bytes_out 0 146829 bytes_in 0 146829 station_ip 5.119.55.210 146829 port 469 146829 unique_id port 146829 remote_ip 10.8.0.234 146835 username aminvpn 146835 unique_id port 146835 terminate_cause Lost-Carrier 146835 bytes_out 1861220 146835 bytes_in 27145515 146835 station_ip 31.56.223.76 146835 port 15730938 146835 nas_port_type Virtual 146835 remote_ip 5.5.5.251 146839 username mehdizare 146839 mac 146839 bytes_out 118701 146839 bytes_in 810119 146839 station_ip 5.120.18.104 146839 port 470 146839 unique_id port 146839 remote_ip 10.8.0.90 146840 username mosi 146840 mac 146840 bytes_out 0 146840 bytes_in 0 146840 station_ip 89.34.56.140 146840 port 264 146840 unique_id port 146840 remote_ip 10.8.1.86 146842 username barzegar 146842 mac 146842 bytes_out 0 146842 bytes_in 0 146842 station_ip 5.119.55.210 146778 port 491 146778 unique_id port 146778 remote_ip 10.8.0.46 146781 username meysam 146781 mac 146781 bytes_out 139353 146781 bytes_in 1650607 146781 station_ip 5.119.239.99 146781 port 491 146781 unique_id port 146781 remote_ip 10.8.0.110 146783 username aminvpn 146783 mac 146783 bytes_out 0 146783 bytes_in 0 146783 station_ip 83.122.19.254 146783 port 470 146783 unique_id port 146783 remote_ip 10.8.0.14 146786 username farhad2 146786 mac 146786 bytes_out 3372001 146786 bytes_in 26289621 146786 station_ip 5.120.150.218 146786 port 492 146786 unique_id port 146786 remote_ip 10.8.0.190 146788 username barzegar 146788 mac 146788 bytes_out 0 146788 bytes_in 0 146788 station_ip 5.119.55.210 146788 port 486 146788 unique_id port 146788 remote_ip 10.8.0.234 146790 username kalantary 146790 mac 146790 bytes_out 0 146790 bytes_in 0 146790 station_ip 83.122.100.191 146790 port 489 146790 unique_id port 146790 remote_ip 10.8.0.98 146793 username mehdizare 146793 mac 146793 bytes_out 0 146793 bytes_in 0 146793 station_ip 5.120.18.104 146793 port 482 146793 unique_id port 146794 username mosi 146794 mac 146794 bytes_out 1820 146794 bytes_in 4175 146794 station_ip 37.153.183.251 146794 port 482 146794 unique_id port 146794 remote_ip 10.8.0.138 146795 username meysam 146795 mac 146795 bytes_out 0 146795 bytes_in 0 146795 station_ip 5.120.127.48 146795 port 486 146795 unique_id port 146795 remote_ip 10.8.0.110 146796 username barzegar 146796 mac 146796 bytes_out 0 146796 bytes_in 0 146796 station_ip 5.119.55.210 146796 port 264 146796 unique_id port 146796 remote_ip 10.8.1.174 146799 username moradi 146799 mac 146799 bytes_out 0 146799 bytes_in 0 146799 station_ip 113.203.72.249 146799 port 486 146799 unique_id port 146799 remote_ip 10.8.0.226 146800 username barzegar 146800 mac 146800 bytes_out 0 146800 bytes_in 0 146800 station_ip 5.119.55.210 146800 port 264 146800 unique_id port 146800 remote_ip 10.8.1.174 146803 username rezaei 146803 kill_reason Another user logged on this global unique id 146803 mac 146803 bytes_out 0 146803 bytes_in 0 146803 station_ip 5.119.4.59 146803 port 469 146803 unique_id port 146803 remote_ip 10.8.0.230 146810 username rezaei 146810 mac 146810 bytes_out 0 146810 bytes_in 0 146810 station_ip 5.119.4.59 146810 port 469 146810 unique_id port 146812 username forozandeh1 146812 mac 146812 bytes_out 0 146812 bytes_in 0 146812 station_ip 37.129.210.230 146812 port 264 146812 unique_id port 146812 remote_ip 10.8.1.250 146815 username sedighe 146815 mac 146815 bytes_out 0 146815 bytes_in 0 146815 station_ip 83.123.83.22 146815 port 482 146815 unique_id port 146815 remote_ip 10.8.0.146 146817 username kalantary 146817 mac 146817 bytes_out 0 146817 bytes_in 0 146817 station_ip 83.122.100.191 146817 port 469 146817 unique_id port 146817 remote_ip 10.8.0.98 146818 username barzegar 146818 mac 146818 bytes_out 3219 146818 bytes_in 5650 146818 station_ip 5.119.55.210 146818 port 469 146818 unique_id port 146818 remote_ip 10.8.0.234 146823 username barzegar 146823 mac 146823 bytes_out 0 146823 bytes_in 0 146823 station_ip 5.119.55.210 146823 port 469 146823 unique_id port 146823 remote_ip 10.8.0.234 146826 username bcboard 146826 unique_id port 146826 terminate_cause Lost-Carrier 146826 bytes_out 2166432 146826 bytes_in 34015633 146826 station_ip 37.129.100.26 146826 port 15730937 146826 nas_port_type Virtual 146780 port 469 146780 unique_id port 146780 remote_ip 10.8.0.138 146784 username kalantary 146784 mac 146784 bytes_out 0 146784 bytes_in 0 146784 station_ip 83.122.100.191 146784 port 489 146784 unique_id port 146784 remote_ip 10.8.0.98 146787 username morteza 146787 mac 146787 bytes_out 0 146787 bytes_in 0 146787 station_ip 113.203.24.109 146787 port 264 146787 unique_id port 146787 remote_ip 10.8.1.62 146791 username barzegar 146791 mac 146791 bytes_out 0 146791 bytes_in 0 146791 station_ip 5.119.55.210 146791 port 486 146791 unique_id port 146791 remote_ip 10.8.0.234 146792 username meysam 146792 mac 146792 bytes_out 1521885 146792 bytes_in 23207775 146792 station_ip 5.119.252.224 146792 port 470 146792 unique_id port 146792 remote_ip 10.8.0.110 146801 username kalantary 146801 mac 146801 bytes_out 0 146801 bytes_in 0 146801 station_ip 83.122.100.191 146801 port 489 146801 unique_id port 146801 remote_ip 10.8.0.98 146804 username vanila 146804 mac 146804 bytes_out 0 146804 bytes_in 0 146804 station_ip 83.123.167.129 146804 port 491 146804 unique_id port 146804 remote_ip 10.8.0.178 146805 username mosi 146805 mac 146805 bytes_out 0 146805 bytes_in 0 146805 station_ip 37.153.188.24 146805 port 489 146805 unique_id port 146805 remote_ip 10.8.0.138 146813 username vanila 146813 mac 146813 bytes_out 1810684 146813 bytes_in 1948298 146813 station_ip 83.123.167.129 146813 port 486 146813 unique_id port 146813 remote_ip 10.8.0.178 146816 username barzegar 146816 mac 146816 bytes_out 14641 146816 bytes_in 20904 146816 station_ip 5.119.55.210 146816 port 264 146816 unique_id port 146816 remote_ip 10.8.1.174 146819 username barzegar 146819 mac 146819 bytes_out 0 146819 bytes_in 0 146819 station_ip 5.119.55.210 146819 port 469 146819 unique_id port 146819 remote_ip 10.8.0.234 146820 username barzegar 146820 mac 146820 bytes_out 0 146820 bytes_in 0 146820 station_ip 5.119.55.210 146820 port 469 146820 unique_id port 146820 remote_ip 10.8.0.234 146822 username alipour 146822 mac 146822 bytes_out 2740787 146822 bytes_in 37049945 146822 station_ip 83.122.135.165 146822 port 263 146822 unique_id port 146822 remote_ip 10.8.1.50 146824 username kalantary 146824 mac 146824 bytes_out 0 146824 bytes_in 0 146824 station_ip 83.122.43.195 146824 port 482 146824 unique_id port 146824 remote_ip 10.8.0.98 146825 username barzegar 146825 mac 146825 bytes_out 2653 146825 bytes_in 5042 146825 station_ip 5.119.55.210 146825 port 469 146825 unique_id port 146825 remote_ip 10.8.0.234 146827 username jafari 146827 mac 146827 bytes_out 0 146827 bytes_in 0 146827 station_ip 37.156.63.22 146827 port 265 146827 unique_id port 146827 remote_ip 10.8.1.198 146830 username jafari 146830 mac 146830 bytes_out 0 146830 bytes_in 0 146830 station_ip 37.156.63.22 146830 port 263 146830 unique_id port 146830 remote_ip 10.8.1.198 146831 username malekpoir 146831 kill_reason Another user logged on this global unique id 146831 mac 146831 bytes_out 0 146831 bytes_in 0 146831 station_ip 5.119.150.243 146831 port 262 146831 unique_id port 146838 username barzegar 146838 mac 146838 bytes_out 0 146838 bytes_in 0 146838 station_ip 5.119.55.210 146838 port 469 146838 unique_id port 146838 remote_ip 10.8.0.234 146843 username vanila 146843 mac 146843 bytes_out 2581491 146843 bytes_in 1204075 146843 station_ip 83.123.167.129 146843 port 469 146843 unique_id port 146826 remote_ip 5.5.5.253 146828 username barzegar 146828 mac 146828 bytes_out 4499 146828 bytes_in 7122 146828 station_ip 5.119.55.210 146828 port 469 146828 unique_id port 146828 remote_ip 10.8.0.234 146832 username sedighe 146832 mac 146832 bytes_out 0 146832 bytes_in 0 146832 station_ip 83.123.83.22 146832 port 486 146832 unique_id port 146832 remote_ip 10.8.0.146 146833 username barzegar 146833 mac 146833 bytes_out 0 146833 bytes_in 0 146833 station_ip 5.119.55.210 146833 port 469 146833 unique_id port 146833 remote_ip 10.8.0.234 146834 username sedighe 146834 kill_reason Maximum check online fails reached 146834 mac 146834 bytes_out 15513 146834 bytes_in 22466 146834 station_ip 83.122.1.162 146834 port 489 146834 unique_id port 146834 remote_ip 10.8.0.146 146836 username kalantary 146836 mac 146836 bytes_out 143935 146836 bytes_in 527875 146836 station_ip 83.122.113.183 146836 port 486 146836 unique_id port 146836 remote_ip 10.8.0.98 146837 username mahdiyehalizadeh 146837 mac 146837 bytes_out 17926 146837 bytes_in 21685 146837 station_ip 5.119.245.95 146837 port 482 146837 unique_id port 146837 remote_ip 10.8.0.82 146841 username mosi 146841 mac 146841 bytes_out 0 146841 bytes_in 0 146841 station_ip 37.137.15.251 146841 port 265 146841 unique_id port 146841 remote_ip 10.8.1.86 146848 username kalantary 146848 mac 146848 bytes_out 484889 146848 bytes_in 2616603 146848 station_ip 83.122.55.191 146848 port 470 146848 unique_id port 146848 remote_ip 10.8.0.98 146852 username sedighe 146852 mac 146852 bytes_out 86809 146852 bytes_in 148169 146852 station_ip 83.122.1.162 146852 port 469 146852 unique_id port 146852 remote_ip 10.8.0.146 146853 username jafari 146853 kill_reason Another user logged on this global unique id 146853 mac 146853 bytes_out 0 146853 bytes_in 0 146853 station_ip 37.153.190.57 146853 port 263 146853 unique_id port 146853 remote_ip 10.8.1.198 146854 username amirabbas 146854 unique_id port 146854 terminate_cause User-Request 146854 bytes_out 5626646 146854 bytes_in 121141924 146854 station_ip 37.27.32.211 146854 port 15730939 146854 nas_port_type Virtual 146854 remote_ip 5.5.5.254 146857 username aminvpn 146857 mac 146857 bytes_out 0 146857 bytes_in 0 146857 station_ip 5.119.86.230 146857 port 264 146857 unique_id port 146857 remote_ip 10.8.1.6 146861 username vanila 146861 mac 146861 bytes_out 192014 146861 bytes_in 555065 146861 station_ip 83.123.167.129 146861 port 489 146861 unique_id port 146861 remote_ip 10.8.0.178 146862 username farhad2 146862 kill_reason Another user logged on this global unique id 146862 mac 146862 bytes_out 0 146862 bytes_in 0 146862 station_ip 5.120.146.133 146862 port 491 146862 unique_id port 146862 remote_ip 10.8.0.190 146867 username sedighe 146867 mac 146867 bytes_out 0 146867 bytes_in 0 146867 station_ip 83.122.1.162 146867 port 486 146867 unique_id port 146867 remote_ip 10.8.0.146 146870 username barzegar 146870 mac 146870 bytes_out 0 146870 bytes_in 0 146870 station_ip 5.119.55.210 146870 port 491 146870 unique_id port 146870 remote_ip 10.8.0.234 146871 username farhad2 146871 mac 146871 bytes_out 751561 146871 bytes_in 10198176 146871 station_ip 5.120.175.218 146871 port 486 146871 unique_id port 146871 remote_ip 10.8.0.190 146875 username farhad2 146875 mac 146875 bytes_out 94925 146875 bytes_in 312646 146875 station_ip 5.120.175.218 146875 port 263 146875 unique_id port 146875 remote_ip 10.8.1.222 146877 username barzegar 146877 mac 146842 port 470 146842 unique_id port 146842 remote_ip 10.8.0.234 146844 username forozandeh1 146844 mac 146844 bytes_out 200881 146844 bytes_in 1186545 146844 station_ip 113.203.95.143 146844 port 264 146844 unique_id port 146844 remote_ip 10.8.1.250 146847 username saeed9658 146847 mac 146847 bytes_out 0 146847 bytes_in 0 146847 station_ip 5.119.126.90 146847 port 263 146847 unique_id port 146847 remote_ip 10.8.1.210 146850 username yahodi 146850 mac 146850 bytes_out 0 146850 bytes_in 0 146850 station_ip 113.203.27.186 146850 port 482 146850 unique_id port 146850 remote_ip 10.8.0.202 146851 username forozandeh1 146851 mac 146851 bytes_out 0 146851 bytes_in 0 146851 station_ip 83.123.0.196 146851 port 265 146851 unique_id port 146851 remote_ip 10.8.1.250 146856 username barzegar 146856 mac 146856 bytes_out 0 146856 bytes_in 0 146856 station_ip 5.119.55.210 146856 port 482 146856 unique_id port 146856 remote_ip 10.8.0.234 146859 username yahodi 146859 kill_reason Another user logged on this global unique id 146859 mac 146859 bytes_out 0 146859 bytes_in 0 146859 station_ip 113.203.27.186 146859 port 470 146859 unique_id port 146859 remote_ip 10.8.0.202 146863 username farhad2 146863 mac 146863 bytes_out 0 146863 bytes_in 0 146863 station_ip 5.120.146.133 146863 port 491 146863 unique_id port 146873 username aminvpn 146873 unique_id port 146873 terminate_cause User-Request 146873 bytes_out 804584 146873 bytes_in 12922071 146873 station_ip 151.238.226.162 146873 port 15730942 146873 nas_port_type Virtual 146873 remote_ip 5.5.5.251 146876 username sedighe 146876 mac 146876 bytes_out 163968 146876 bytes_in 344182 146876 station_ip 83.122.78.218 146876 port 489 146876 unique_id port 146876 remote_ip 10.8.0.146 146879 username yahodi 146879 kill_reason Another user logged on this global unique id 146879 mac 146879 bytes_out 0 146879 bytes_in 0 146879 station_ip 113.203.27.186 146879 port 470 146879 unique_id port 146881 username farhad2 146881 mac 146881 bytes_out 11753 146881 bytes_in 22605 146881 station_ip 5.120.175.218 146881 port 482 146881 unique_id port 146881 remote_ip 10.8.0.190 146886 username sedighe 146886 mac 146886 bytes_out 82679 146886 bytes_in 124023 146886 station_ip 83.122.78.218 146886 port 486 146886 unique_id port 146886 remote_ip 10.8.0.146 146889 username fezealinaghi 146889 mac 146889 bytes_out 518544 146889 bytes_in 6973768 146889 station_ip 113.203.66.43 146889 port 492 146889 unique_id port 146889 remote_ip 10.8.0.78 146893 username kalantary 146893 mac 146893 bytes_out 1726488 146893 bytes_in 12086924 146893 station_ip 83.122.76.167 146893 port 491 146893 unique_id port 146893 remote_ip 10.8.0.98 146899 username morteza 146899 mac 146899 bytes_out 0 146899 bytes_in 0 146899 station_ip 113.203.117.9 146899 port 486 146899 unique_id port 146899 remote_ip 10.8.0.46 146908 username morteza 146908 mac 146908 bytes_out 0 146908 bytes_in 0 146908 station_ip 113.203.117.9 146908 port 263 146908 unique_id port 146908 remote_ip 10.8.1.62 146916 username barzegar 146916 mac 146916 bytes_out 0 146916 bytes_in 0 146916 station_ip 5.119.55.210 146916 port 470 146916 unique_id port 146916 remote_ip 10.8.0.234 146921 username mohammadjavad 146921 mac 146921 bytes_out 244580 146921 bytes_in 2555711 146921 station_ip 83.122.24.63 146921 port 496 146921 unique_id port 146921 remote_ip 10.8.0.142 146927 username fezealinaghi 146927 mac 146927 bytes_out 1559034 146927 bytes_in 6411082 146843 remote_ip 10.8.0.178 146845 username kordestani 146845 mac 146845 bytes_out 0 146845 bytes_in 0 146845 station_ip 151.235.94.243 146845 port 263 146845 unique_id port 146845 remote_ip 10.8.1.98 146846 username barzegar 146846 mac 146846 bytes_out 0 146846 bytes_in 0 146846 station_ip 5.119.55.210 146846 port 470 146846 unique_id port 146846 remote_ip 10.8.0.234 146849 username barzegar 146849 mac 146849 bytes_out 6219 146849 bytes_in 17921 146849 station_ip 5.119.55.210 146849 port 470 146849 unique_id port 146849 remote_ip 10.8.0.234 146855 username mohammadjavad 146855 mac 146855 bytes_out 244294 146855 bytes_in 2067052 146855 station_ip 83.123.214.130 146855 port 482 146855 unique_id port 146855 remote_ip 10.8.0.142 146858 username malekpoir 146858 kill_reason Another user logged on this global unique id 146858 mac 146858 bytes_out 0 146858 bytes_in 0 146858 station_ip 5.119.150.243 146858 port 262 146858 unique_id port 146860 username barzegar 146860 mac 146860 bytes_out 0 146860 bytes_in 0 146860 station_ip 5.119.55.210 146860 port 482 146860 unique_id port 146860 remote_ip 10.8.0.234 146864 username jafari 146864 mac 146864 bytes_out 0 146864 bytes_in 0 146864 station_ip 37.153.190.57 146864 port 263 146864 unique_id port 146865 username barzegar 146865 kill_reason Maximum check online fails reached 146865 mac 146865 bytes_out 0 146865 bytes_in 0 146865 station_ip 5.119.55.210 146865 port 264 146865 unique_id port 146866 username aminvpn 146866 mac 146866 bytes_out 64523 146866 bytes_in 86419 146866 station_ip 5.119.86.230 146866 port 489 146866 unique_id port 146866 remote_ip 10.8.0.14 146868 username yahodi 146868 kill_reason Another user logged on this global unique id 146868 mac 146868 bytes_out 0 146868 bytes_in 0 146868 station_ip 113.203.27.186 146868 port 470 146868 unique_id port 146869 username farhad2 146869 mac 146869 bytes_out 93974 146869 bytes_in 613968 146869 station_ip 5.120.146.133 146869 port 482 146869 unique_id port 146869 remote_ip 10.8.0.190 146872 username saeed9658 146872 mac 146872 bytes_out 1224970 146872 bytes_in 16782978 146872 station_ip 5.119.126.90 146872 port 469 146872 unique_id port 146872 remote_ip 10.8.0.62 146874 username barzegar 146874 mac 146874 bytes_out 2277 146874 bytes_in 4602 146874 station_ip 5.119.55.210 146874 port 486 146874 unique_id port 146874 remote_ip 10.8.0.234 146878 username mahdiyehalizadeh 146878 mac 146878 bytes_out 288248 146878 bytes_in 2356951 146878 station_ip 5.119.245.95 146878 port 482 146878 unique_id port 146878 remote_ip 10.8.0.82 146882 username barzegar 146882 mac 146882 bytes_out 0 146882 bytes_in 0 146882 station_ip 5.119.55.210 146882 port 263 146882 unique_id port 146882 remote_ip 10.8.1.174 146883 username hamid.e 146883 unique_id port 146883 terminate_cause User-Request 146883 bytes_out 21754382 146883 bytes_in 160291211 146883 station_ip 37.27.22.60 146883 port 15730929 146883 nas_port_type Virtual 146883 remote_ip 5.5.5.6 146884 username barzegar 146884 mac 146884 bytes_out 2633 146884 bytes_in 5185 146884 station_ip 5.119.55.210 146884 port 263 146884 unique_id port 146884 remote_ip 10.8.1.174 146888 username barzegar 146888 mac 146888 bytes_out 0 146888 bytes_in 0 146888 station_ip 5.119.55.210 146888 port 495 146888 unique_id port 146888 remote_ip 10.8.0.234 146892 username saeed9658 146892 mac 146892 bytes_out 499263 146892 bytes_in 5416178 146892 station_ip 5.119.126.90 146892 port 469 146892 unique_id port 146877 bytes_out 0 146877 bytes_in 0 146877 station_ip 5.119.55.210 146877 port 265 146877 unique_id port 146877 remote_ip 10.8.1.174 146880 username farhad2 146880 mac 146880 bytes_out 0 146880 bytes_in 0 146880 station_ip 5.120.175.218 146880 port 263 146880 unique_id port 146880 remote_ip 10.8.1.222 146885 username barzegar 146885 mac 146885 bytes_out 0 146885 bytes_in 0 146885 station_ip 5.119.55.210 146885 port 495 146885 unique_id port 146885 remote_ip 10.8.0.234 146887 username barzegar 146887 mac 146887 bytes_out 0 146887 bytes_in 0 146887 station_ip 5.119.55.210 146887 port 495 146887 unique_id port 146887 remote_ip 10.8.0.234 146890 username hamidsalari 146890 mac 146890 bytes_out 3143813 146890 bytes_in 38456069 146890 station_ip 5.119.101.161 146890 port 452 146890 unique_id port 146890 remote_ip 10.8.0.222 146891 username barzegar 146891 mac 146891 bytes_out 0 146891 bytes_in 0 146891 station_ip 5.119.55.210 146891 port 492 146891 unique_id port 146891 remote_ip 10.8.0.234 146894 username morteza 146894 mac 146894 bytes_out 0 146894 bytes_in 0 146894 station_ip 113.203.117.9 146894 port 263 146894 unique_id port 146894 remote_ip 10.8.1.62 146896 username morteza 146896 mac 146896 bytes_out 0 146896 bytes_in 0 146896 station_ip 113.203.117.9 146896 port 263 146896 unique_id port 146896 remote_ip 10.8.1.62 146898 username farhad2 146898 mac 146898 bytes_out 1146519 146898 bytes_in 13997352 146898 station_ip 5.119.148.143 146898 port 482 146898 unique_id port 146898 remote_ip 10.8.0.190 146901 username morteza 146901 mac 146901 bytes_out 0 146901 bytes_in 0 146901 station_ip 113.203.117.9 146901 port 469 146901 unique_id port 146901 remote_ip 10.8.0.46 146910 username amirabbas 146910 unique_id port 146910 terminate_cause User-Request 146910 bytes_out 17310726 146910 bytes_in 405235768 146910 station_ip 37.27.32.211 146910 port 15730941 146910 nas_port_type Virtual 146910 remote_ip 5.5.5.253 146911 username mohammadmahdi 146911 mac 146911 bytes_out 0 146911 bytes_in 0 146911 station_ip 5.119.225.179 146911 port 495 146911 unique_id port 146911 remote_ip 10.8.0.54 146913 username sedighe 146913 mac 146913 bytes_out 145001 146913 bytes_in 456275 146913 station_ip 83.122.78.218 146913 port 482 146913 unique_id port 146913 remote_ip 10.8.0.146 146915 username kalantary 146915 mac 146915 bytes_out 191263 146915 bytes_in 396031 146915 station_ip 83.122.99.171 146915 port 492 146915 unique_id port 146915 remote_ip 10.8.0.98 146917 username morteza 146917 mac 146917 bytes_out 0 146917 bytes_in 0 146917 station_ip 113.203.117.9 146917 port 263 146917 unique_id port 146917 remote_ip 10.8.1.62 146920 username sekonji3 146920 mac 146920 bytes_out 0 146920 bytes_in 0 146920 station_ip 113.203.72.155 146920 port 470 146920 unique_id port 146920 remote_ip 10.8.0.6 146923 username sekonji3 146923 mac 146923 bytes_out 0 146923 bytes_in 0 146923 station_ip 113.203.72.155 146923 port 470 146923 unique_id port 146923 remote_ip 10.8.0.6 146926 username barzegar 146926 mac 146926 bytes_out 0 146926 bytes_in 0 146926 station_ip 5.119.55.210 146926 port 502 146926 unique_id port 146926 remote_ip 10.8.0.234 146928 username houshang 146928 mac 146928 bytes_out 929036 146928 bytes_in 9973944 146928 station_ip 5.119.43.164 146928 port 497 146928 unique_id port 146928 remote_ip 10.8.0.22 146929 username malekpoir 146929 mac 146929 bytes_out 0 146892 remote_ip 10.8.0.62 146895 username sedighe 146895 mac 146895 bytes_out 0 146895 bytes_in 0 146895 station_ip 83.122.78.218 146895 port 486 146895 unique_id port 146895 remote_ip 10.8.0.146 146897 username morteza 146897 mac 146897 bytes_out 0 146897 bytes_in 0 146897 station_ip 113.203.117.9 146897 port 486 146897 unique_id port 146897 remote_ip 10.8.0.46 146900 username sedighe 146900 mac 146900 bytes_out 71494 146900 bytes_in 128755 146900 station_ip 83.122.78.218 146900 port 469 146900 unique_id port 146900 remote_ip 10.8.0.146 146902 username morteza 146902 mac 146902 bytes_out 0 146902 bytes_in 0 146902 station_ip 113.203.117.9 146902 port 469 146902 unique_id port 146902 remote_ip 10.8.0.46 146903 username barzegar 146903 mac 146903 bytes_out 0 146903 bytes_in 0 146903 station_ip 5.119.55.210 146903 port 263 146903 unique_id port 146903 remote_ip 10.8.1.174 146904 username morteza 146904 mac 146904 bytes_out 0 146904 bytes_in 0 146904 station_ip 113.203.117.9 146904 port 486 146904 unique_id port 146904 remote_ip 10.8.0.46 146905 username yahodi 146905 mac 146905 bytes_out 0 146905 bytes_in 0 146905 station_ip 113.203.27.186 146905 port 470 146905 unique_id port 146906 username morteza 146906 mac 146906 bytes_out 0 146906 bytes_in 0 146906 station_ip 113.203.117.9 146906 port 470 146906 unique_id port 146906 remote_ip 10.8.0.46 146907 username morteza 146907 mac 146907 bytes_out 0 146907 bytes_in 0 146907 station_ip 113.203.117.9 146907 port 470 146907 unique_id port 146907 remote_ip 10.8.0.46 146909 username sekonji3 146909 mac 146909 bytes_out 24769 146909 bytes_in 99669 146909 station_ip 113.203.72.155 146909 port 470 146909 unique_id port 146909 remote_ip 10.8.0.6 146912 username morteza 146912 mac 146912 bytes_out 0 146912 bytes_in 0 146912 station_ip 113.203.117.9 146912 port 263 146912 unique_id port 146912 remote_ip 10.8.1.62 146914 username barzegar 146914 mac 146914 bytes_out 0 146914 bytes_in 0 146914 station_ip 5.119.55.210 146914 port 470 146914 unique_id port 146914 remote_ip 10.8.0.234 146918 username sekonji3 146918 mac 146918 bytes_out 1895 146918 bytes_in 4027 146918 station_ip 113.203.72.155 146918 port 482 146918 unique_id port 146918 remote_ip 10.8.0.6 146919 username vanila 146919 mac 146919 bytes_out 0 146919 bytes_in 0 146919 station_ip 83.123.211.53 146919 port 470 146919 unique_id port 146919 remote_ip 10.8.0.178 146922 username sekonji3 146922 mac 146922 bytes_out 0 146922 bytes_in 0 146922 station_ip 113.203.72.155 146922 port 470 146922 unique_id port 146922 remote_ip 10.8.0.6 146924 username amirabbas 146924 unique_id port 146924 terminate_cause User-Request 146924 bytes_out 95925 146924 bytes_in 1581695 146924 station_ip 37.27.32.211 146924 port 15730943 146924 nas_port_type Virtual 146924 remote_ip 5.5.5.255 146925 username mirzaei 146925 kill_reason Another user logged on this global unique id 146925 mac 146925 bytes_out 0 146925 bytes_in 0 146925 station_ip 5.119.134.234 146925 port 445 146925 unique_id port 146931 username mansur 146931 mac 146931 bytes_out 1947312 146931 bytes_in 44948266 146931 station_ip 5.119.164.73 146931 port 492 146931 unique_id port 146931 remote_ip 10.8.0.18 146933 username aminvpn 146933 mac 146933 bytes_out 2695393 146933 bytes_in 3585121 146933 station_ip 5.119.86.230 146933 port 496 146933 unique_id port 146933 remote_ip 10.8.0.14 146939 username sekonji3 146927 station_ip 83.122.200.218 146927 port 496 146927 unique_id port 146927 remote_ip 10.8.0.78 146930 username morteza 146930 kill_reason Another user logged on this global unique id 146930 mac 146930 bytes_out 0 146930 bytes_in 0 146930 station_ip 113.203.117.9 146930 port 482 146930 unique_id port 146930 remote_ip 10.8.0.46 146934 username sekonji3 146934 mac 146934 bytes_out 550079 146934 bytes_in 4000030 146934 station_ip 113.203.72.155 146934 port 470 146934 unique_id port 146934 remote_ip 10.8.0.6 146937 username sekonji3 146937 mac 146937 bytes_out 0 146937 bytes_in 0 146937 station_ip 113.203.72.155 146937 port 470 146937 unique_id port 146937 remote_ip 10.8.0.6 146940 username kalantary 146940 mac 146940 bytes_out 419661 146940 bytes_in 800268 146940 station_ip 83.122.69.167 146940 port 495 146940 unique_id port 146940 remote_ip 10.8.0.98 146944 username Mahin 146944 mac 146944 bytes_out 618652 146944 bytes_in 2880431 146944 station_ip 5.120.7.139 146944 port 491 146944 unique_id port 146944 remote_ip 10.8.0.158 146947 username mansur 146947 kill_reason Another user logged on this global unique id 146947 mac 146947 bytes_out 0 146947 bytes_in 0 146947 station_ip 5.119.164.73 146947 port 497 146947 unique_id port 146947 remote_ip 10.8.0.18 146948 username rezaei 146948 mac 146948 bytes_out 0 146948 bytes_in 0 146948 station_ip 5.119.4.59 146948 port 489 146948 unique_id port 146951 username farhad2 146951 mac 146951 bytes_out 0 146951 bytes_in 0 146951 station_ip 5.119.250.23 146951 port 495 146951 unique_id port 146951 remote_ip 10.8.0.190 146954 username fariba 146954 kill_reason Relative expiration date has reached 146954 mac 146954 bytes_out 0 146954 bytes_in 0 146954 station_ip 5.120.81.141 146954 port 496 146954 unique_id port 146955 username barzegar 146955 mac 146955 bytes_out 0 146955 bytes_in 0 146955 station_ip 5.119.55.210 146955 port 495 146955 unique_id port 146955 remote_ip 10.8.0.234 146956 username fariba 146956 kill_reason Relative expiration date has reached 146956 mac 146956 bytes_out 0 146956 bytes_in 0 146956 station_ip 5.120.81.141 146956 port 262 146956 unique_id port 146959 username mohammadjavad 146959 mac 146959 bytes_out 229085 146959 bytes_in 6596291 146959 station_ip 83.122.18.249 146959 port 496 146959 unique_id port 146959 remote_ip 10.8.0.142 146967 username mansur 146967 mac 146967 bytes_out 0 146967 bytes_in 0 146967 station_ip 5.119.164.73 146967 port 497 146967 unique_id port 146969 username mirzaei 146969 mac 146969 bytes_out 0 146969 bytes_in 0 146969 station_ip 5.119.134.234 146969 port 445 146969 unique_id port 146974 username aminvpn 146974 mac 146974 bytes_out 0 146974 bytes_in 0 146974 station_ip 5.119.251.225 146974 port 495 146974 unique_id port 146974 remote_ip 10.8.0.14 146977 username farhad2 146977 mac 146977 bytes_out 0 146977 bytes_in 0 146977 station_ip 5.119.250.23 146977 port 491 146977 unique_id port 146977 remote_ip 10.8.0.190 146978 username mirzaei 146978 mac 146978 bytes_out 0 146978 bytes_in 0 146978 station_ip 5.120.140.230 146978 port 495 146978 unique_id port 146978 remote_ip 10.8.0.66 146980 username fezealinaghi 146980 mac 146980 bytes_out 538585 146980 bytes_in 4046959 146980 station_ip 83.122.213.22 146980 port 262 146980 unique_id port 146980 remote_ip 10.8.1.162 146981 username barzegar 146981 mac 146981 bytes_out 0 146981 bytes_in 0 146981 station_ip 5.119.55.210 146981 port 492 146929 bytes_in 0 146929 station_ip 5.119.150.243 146929 port 262 146929 unique_id port 146932 username sedighe 146932 mac 146932 bytes_out 508293 146932 bytes_in 2441563 146932 station_ip 83.122.65.190 146932 port 495 146932 unique_id port 146932 remote_ip 10.8.0.146 146935 username morteza 146935 mac 146935 bytes_out 0 146935 bytes_in 0 146935 station_ip 113.203.117.9 146935 port 482 146935 unique_id port 146936 username barzegar 146936 mac 146936 bytes_out 0 146936 bytes_in 0 146936 station_ip 5.119.55.210 146936 port 470 146936 unique_id port 146936 remote_ip 10.8.0.234 146938 username amir 146938 kill_reason Relative expiration date has reached 146938 mac 146938 bytes_out 0 146938 bytes_in 0 146938 station_ip 46.225.208.220 146938 port 496 146938 unique_id port 146942 username rezaei 146942 kill_reason Another user logged on this global unique id 146942 mac 146942 bytes_out 0 146942 bytes_in 0 146942 station_ip 5.119.4.59 146942 port 489 146942 unique_id port 146942 remote_ip 10.8.0.230 146949 username sekonji3 146949 mac 146949 bytes_out 4470 146949 bytes_in 6504 146949 station_ip 113.203.72.155 146949 port 482 146949 unique_id port 146949 remote_ip 10.8.0.6 146950 username aminvpn 146950 mac 146950 bytes_out 0 146950 bytes_in 0 146950 station_ip 5.119.86.230 146950 port 492 146950 unique_id port 146950 remote_ip 10.8.0.14 146953 username fariba 146953 kill_reason Relative expiration date has reached 146953 mac 146953 bytes_out 0 146953 bytes_in 0 146953 station_ip 5.120.81.141 146953 port 496 146953 unique_id port 146958 username mohammadmahdi 146958 mac 146958 bytes_out 0 146958 bytes_in 0 146958 station_ip 5.120.56.43 146958 port 470 146958 unique_id port 146962 username barzegar 146962 mac 146962 bytes_out 0 146962 bytes_in 0 146962 station_ip 5.119.55.210 146962 port 263 146962 unique_id port 146962 remote_ip 10.8.1.174 146964 username aminvpn 146964 mac 146964 bytes_out 0 146964 bytes_in 0 146964 station_ip 5.119.251.225 146964 port 470 146964 unique_id port 146964 remote_ip 10.8.0.14 146973 username aminvpn 146973 mac 146973 bytes_out 0 146973 bytes_in 0 146973 station_ip 5.119.86.230 146973 port 491 146973 unique_id port 146973 remote_ip 10.8.0.14 146975 username farhad2 146975 mac 146975 bytes_out 0 146975 bytes_in 0 146975 station_ip 5.119.250.23 146975 port 470 146975 unique_id port 146975 remote_ip 10.8.0.190 146979 username kalantary 146979 mac 146979 bytes_out 0 146979 bytes_in 0 146979 station_ip 83.122.117.191 146979 port 492 146979 unique_id port 146979 remote_ip 10.8.0.98 146986 username moradi 146986 kill_reason Another user logged on this global unique id 146986 mac 146986 bytes_out 0 146986 bytes_in 0 146986 station_ip 37.129.123.109 146986 port 482 146986 unique_id port 146987 username fezealinaghi 146987 mac 146987 bytes_out 0 146987 bytes_in 0 146987 station_ip 83.123.104.126 146987 port 497 146987 unique_id port 146987 remote_ip 10.8.0.78 146990 username mahdiyehalizadeh 146990 mac 146990 bytes_out 0 146990 bytes_in 0 146990 station_ip 5.119.245.95 146990 port 495 146990 unique_id port 146990 remote_ip 10.8.0.82 146992 username mirzaei 146992 mac 146992 bytes_out 2073 146992 bytes_in 4575 146992 station_ip 5.119.198.85 146992 port 266 146992 unique_id port 146992 remote_ip 10.8.1.30 146994 username farhad2 146994 mac 146994 bytes_out 1720062 146994 bytes_in 6625660 146994 station_ip 5.119.250.23 146994 port 491 146939 mac 146939 bytes_out 3689 146939 bytes_in 5163 146939 station_ip 113.203.72.155 146939 port 482 146939 unique_id port 146939 remote_ip 10.8.0.6 146941 username sedighe 146941 mac 146941 bytes_out 66121 146941 bytes_in 671273 146941 station_ip 83.122.65.190 146941 port 492 146941 unique_id port 146941 remote_ip 10.8.0.146 146943 username barzegar 146943 mac 146943 bytes_out 0 146943 bytes_in 0 146943 station_ip 5.119.55.210 146943 port 495 146943 unique_id port 146943 remote_ip 10.8.0.234 146945 username mohammadmahdi 146945 kill_reason Another user logged on this global unique id 146945 mac 146945 bytes_out 0 146945 bytes_in 0 146945 station_ip 5.120.56.43 146945 port 470 146945 unique_id port 146945 remote_ip 10.8.0.54 146946 username malekpoir 146946 mac 146946 bytes_out 0 146946 bytes_in 0 146946 station_ip 5.119.150.243 146946 port 262 146946 unique_id port 146946 remote_ip 10.8.1.54 146952 username fariba 146952 kill_reason Relative expiration date has reached 146952 mac 146952 bytes_out 0 146952 bytes_in 0 146952 station_ip 5.120.81.141 146952 port 496 146952 unique_id port 146957 username mansur 146957 kill_reason Another user logged on this global unique id 146957 mac 146957 bytes_out 0 146957 bytes_in 0 146957 station_ip 5.119.164.73 146957 port 497 146957 unique_id port 146960 username mahdiyehalizadeh 146960 mac 146960 bytes_out 0 146960 bytes_in 0 146960 station_ip 5.119.245.95 146960 port 495 146960 unique_id port 146960 remote_ip 10.8.0.82 146961 username aminvpn 146961 mac 146961 bytes_out 0 146961 bytes_in 0 146961 station_ip 5.119.86.230 146961 port 491 146961 unique_id port 146961 remote_ip 10.8.0.14 146963 username farhad2 146963 mac 146963 bytes_out 0 146963 bytes_in 0 146963 station_ip 5.119.250.23 146963 port 492 146963 unique_id port 146963 remote_ip 10.8.0.190 146965 username aminvpn 146965 mac 146965 bytes_out 0 146965 bytes_in 0 146965 station_ip 5.119.86.230 146965 port 491 146965 unique_id port 146965 remote_ip 10.8.0.14 146966 username aminvpn 146966 mac 146966 bytes_out 0 146966 bytes_in 0 146966 station_ip 5.119.251.225 146966 port 492 146966 unique_id port 146966 remote_ip 10.8.0.14 146968 username aminvpn 146968 mac 146968 bytes_out 0 146968 bytes_in 0 146968 station_ip 5.119.86.230 146968 port 491 146968 unique_id port 146968 remote_ip 10.8.0.14 146970 username aminvpn 146970 mac 146970 bytes_out 0 146970 bytes_in 0 146970 station_ip 5.119.251.225 146970 port 492 146970 unique_id port 146970 remote_ip 10.8.0.14 146971 username aminvpn 146971 mac 146971 bytes_out 0 146971 bytes_in 0 146971 station_ip 5.119.86.230 146971 port 491 146971 unique_id port 146971 remote_ip 10.8.0.14 146972 username aminvpn 146972 mac 146972 bytes_out 0 146972 bytes_in 0 146972 station_ip 5.119.251.225 146972 port 495 146972 unique_id port 146972 remote_ip 10.8.0.14 146976 username moradi 146976 kill_reason Another user logged on this global unique id 146976 mac 146976 bytes_out 0 146976 bytes_in 0 146976 station_ip 37.129.123.109 146976 port 482 146976 unique_id port 146976 remote_ip 10.8.0.226 146984 username aminvpn 146984 mac 146984 bytes_out 0 146984 bytes_in 0 146984 station_ip 5.119.86.230 146984 port 470 146984 unique_id port 146984 remote_ip 10.8.0.14 146988 username mirzaei 146988 mac 146988 bytes_out 0 146988 bytes_in 0 146988 station_ip 5.119.198.85 146988 port 492 146988 unique_id port 146988 remote_ip 10.8.0.66 146991 username hoorieh 146981 unique_id port 146981 remote_ip 10.8.0.234 146982 username mirzaei 146982 mac 146982 bytes_out 16096 146982 bytes_in 28396 146982 station_ip 5.119.198.85 146982 port 496 146982 unique_id port 146982 remote_ip 10.8.0.66 146983 username mirzaei 146983 kill_reason Maximum check online fails reached 146983 mac 146983 bytes_out 0 146983 bytes_in 0 146983 station_ip 5.119.198.85 146983 port 262 146983 unique_id port 146985 username fezealinaghi 146985 mac 146985 bytes_out 0 146985 bytes_in 0 146985 station_ip 83.123.104.126 146985 port 492 146985 unique_id port 146985 remote_ip 10.8.0.78 146989 username mohammadjavad 146989 mac 146989 bytes_out 346193 146989 bytes_in 1334522 146989 station_ip 37.129.210.245 146989 port 470 146989 unique_id port 146989 remote_ip 10.8.0.142 146993 username moradi 146993 mac 146993 bytes_out 0 146993 bytes_in 0 146993 station_ip 37.129.123.109 146993 port 482 146993 unique_id port 146995 username barzegar 146995 mac 146995 bytes_out 0 146995 bytes_in 0 146995 station_ip 5.119.55.210 146995 port 482 146995 unique_id port 146995 remote_ip 10.8.0.234 146996 username amirabbas 146996 unique_id port 146996 terminate_cause User-Request 146996 bytes_out 317180 146996 bytes_in 2645192 146996 station_ip 37.27.32.211 146996 port 15730945 146996 nas_port_type Virtual 146996 remote_ip 5.5.5.252 146999 username rezaei 146999 mac 146999 bytes_out 0 146999 bytes_in 0 146999 station_ip 5.119.4.59 146999 port 482 146999 unique_id port 146999 remote_ip 10.8.0.230 147002 username barzegar 147002 mac 147002 bytes_out 0 147002 bytes_in 0 147002 station_ip 5.119.55.210 147002 port 492 147002 unique_id port 147002 remote_ip 10.8.0.234 147006 username fezealinaghi 147006 mac 147006 bytes_out 0 147006 bytes_in 0 147006 station_ip 83.123.104.126 147006 port 265 147006 unique_id port 147006 remote_ip 10.8.1.162 147008 username kalantary 147008 mac 147008 bytes_out 186226 147008 bytes_in 281220 147008 station_ip 83.122.21.171 147008 port 482 147008 unique_id port 147008 remote_ip 10.8.0.98 147016 username mahdixz 147016 unique_id port 147016 terminate_cause User-Request 147016 bytes_out 4021839 147016 bytes_in 32495505 147016 station_ip 151.235.102.30 147016 port 15730946 147016 nas_port_type Virtual 147016 remote_ip 5.5.5.252 147017 username forozandeh1 147017 kill_reason Another user logged on this global unique id 147017 mac 147017 bytes_out 0 147017 bytes_in 0 147017 station_ip 83.123.35.23 147017 port 263 147017 unique_id port 147017 remote_ip 10.8.1.250 147023 username mirzaei 147023 mac 147023 bytes_out 26805 147023 bytes_in 35763 147023 station_ip 5.113.172.40 147023 port 266 147023 unique_id port 147023 remote_ip 10.8.1.30 147025 username barzegar 147025 mac 147025 bytes_out 0 147025 bytes_in 0 147025 station_ip 5.119.55.210 147025 port 504 147025 unique_id port 147025 remote_ip 10.8.0.234 147026 username farhad2 147026 mac 147026 bytes_out 0 147026 bytes_in 0 147026 station_ip 5.120.96.205 147026 port 503 147026 unique_id port 147026 remote_ip 10.8.0.190 147029 username vanila 147029 mac 147029 bytes_out 553109 147029 bytes_in 3819168 147029 station_ip 37.129.203.195 147029 port 482 147029 unique_id port 147029 remote_ip 10.8.0.178 147032 username hamidsalari 147032 kill_reason Another user logged on this global unique id 147032 mac 147032 bytes_out 0 147032 bytes_in 0 147032 station_ip 5.119.101.161 147032 port 452 147032 unique_id port 147033 username farhad2 147033 mac 147033 bytes_out 552064 146991 mac 146991 bytes_out 0 146991 bytes_in 0 146991 station_ip 5.120.24.185 146991 port 470 146991 unique_id port 146991 remote_ip 10.8.0.38 146997 username hoorieh 146997 mac 146997 bytes_out 0 146997 bytes_in 0 146997 station_ip 5.120.24.185 146997 port 470 146997 unique_id port 146997 remote_ip 10.8.0.38 146998 username barzegar 146998 mac 146998 bytes_out 0 146998 bytes_in 0 146998 station_ip 5.119.55.210 146998 port 492 146998 unique_id port 146998 remote_ip 10.8.0.234 147003 username mansur 147003 mac 147003 bytes_out 526730 147003 bytes_in 4295143 147003 station_ip 5.119.179.240 147003 port 482 147003 unique_id port 147003 remote_ip 10.8.0.18 147005 username farhad2 147005 mac 147005 bytes_out 0 147005 bytes_in 0 147005 station_ip 5.119.250.23 147005 port 445 147005 unique_id port 147005 remote_ip 10.8.0.190 147007 username mansur 147007 mac 147007 bytes_out 0 147007 bytes_in 0 147007 station_ip 5.120.134.185 147007 port 492 147007 unique_id port 147007 remote_ip 10.8.0.18 147009 username barzegar 147009 mac 147009 bytes_out 0 147009 bytes_in 0 147009 station_ip 5.119.55.210 147009 port 482 147009 unique_id port 147009 remote_ip 10.8.0.234 147012 username kordestani 147012 mac 147012 bytes_out 1700060 147012 bytes_in 27293134 147012 station_ip 151.235.82.184 147012 port 266 147012 unique_id port 147012 remote_ip 10.8.1.98 147013 username Mahin 147013 mac 147013 bytes_out 251284 147013 bytes_in 436400 147013 station_ip 5.120.125.165 147013 port 470 147013 unique_id port 147013 remote_ip 10.8.0.158 147015 username Mahin 147015 mac 147015 bytes_out 6693 147015 bytes_in 9576 147015 station_ip 5.120.125.165 147015 port 445 147015 unique_id port 147015 remote_ip 10.8.0.158 147020 username forozandeh1 147020 mac 147020 bytes_out 0 147020 bytes_in 0 147020 station_ip 83.123.35.23 147020 port 263 147020 unique_id port 147022 username vanila 147022 mac 147022 bytes_out 0 147022 bytes_in 0 147022 station_ip 37.129.203.195 147022 port 470 147022 unique_id port 147022 remote_ip 10.8.0.178 147024 username sedighe 147024 mac 147024 bytes_out 0 147024 bytes_in 0 147024 station_ip 37.129.179.117 147024 port 495 147024 unique_id port 147024 remote_ip 10.8.0.146 147027 username farhad2 147027 mac 147027 bytes_out 0 147027 bytes_in 0 147027 station_ip 5.120.96.205 147027 port 503 147027 unique_id port 147027 remote_ip 10.8.0.190 147039 username farhad2 147039 mac 147039 bytes_out 0 147039 bytes_in 0 147039 station_ip 5.120.96.205 147039 port 263 147039 unique_id port 147039 remote_ip 10.8.1.222 147049 username yaghobi 147049 mac 147049 bytes_out 1152353 147049 bytes_in 13057998 147049 station_ip 83.123.21.128 147049 port 506 147049 unique_id port 147049 remote_ip 10.8.0.198 147053 username barzegar 147053 mac 147053 bytes_out 7174 147053 bytes_in 18587 147053 station_ip 5.119.55.210 147053 port 504 147053 unique_id port 147053 remote_ip 10.8.0.234 147065 username barzegar 147065 mac 147065 bytes_out 0 147065 bytes_in 0 147065 station_ip 5.119.55.210 147065 port 263 147065 unique_id port 147065 remote_ip 10.8.1.174 147067 username barzegar 147067 mac 147067 bytes_out 5270 147067 bytes_in 15076 147067 station_ip 5.119.55.210 147067 port 266 147067 unique_id port 147067 remote_ip 10.8.1.174 147068 username mehdizare 147068 mac 147068 bytes_out 0 147068 bytes_in 0 147068 station_ip 5.120.25.52 146994 unique_id port 146994 remote_ip 10.8.0.190 147000 username farhad2 147000 mac 147000 bytes_out 0 147000 bytes_in 0 147000 station_ip 5.119.250.23 147000 port 491 147000 unique_id port 147000 remote_ip 10.8.0.190 147001 username mansur 147001 mac 147001 bytes_out 943381 147001 bytes_in 11691120 147001 station_ip 5.119.164.73 147001 port 445 147001 unique_id port 147001 remote_ip 10.8.0.18 147004 username farhad2 147004 mac 147004 bytes_out 0 147004 bytes_in 0 147004 station_ip 5.119.250.23 147004 port 445 147004 unique_id port 147004 remote_ip 10.8.0.190 147010 username farhad2 147010 mac 147010 bytes_out 874535 147010 bytes_in 2658480 147010 station_ip 5.119.250.23 147010 port 445 147010 unique_id port 147010 remote_ip 10.8.0.190 147011 username mirzaei 147011 mac 147011 bytes_out 72406 147011 bytes_in 102747 147011 station_ip 5.119.14.130 147011 port 267 147011 unique_id port 147011 remote_ip 10.8.1.30 147014 username hamidsalari 147014 kill_reason Another user logged on this global unique id 147014 mac 147014 bytes_out 0 147014 bytes_in 0 147014 station_ip 5.119.101.161 147014 port 452 147014 unique_id port 147014 remote_ip 10.8.0.222 147018 username rezaei 147018 mac 147018 bytes_out 452143 147018 bytes_in 4480713 147018 station_ip 5.119.4.59 147018 port 482 147018 unique_id port 147018 remote_ip 10.8.0.230 147019 username rezaei 147019 mac 147019 bytes_out 0 147019 bytes_in 0 147019 station_ip 5.119.4.59 147019 port 502 147019 unique_id port 147019 remote_ip 10.8.0.230 147021 username rezaei 147021 mac 147021 bytes_out 0 147021 bytes_in 0 147021 station_ip 5.119.4.59 147021 port 482 147021 unique_id port 147021 remote_ip 10.8.0.230 147028 username mansur 147028 kill_reason Another user logged on this global unique id 147028 mac 147028 bytes_out 0 147028 bytes_in 0 147028 station_ip 5.119.197.113 147028 port 470 147028 unique_id port 147028 remote_ip 10.8.0.18 147030 username barzegar 147030 mac 147030 bytes_out 0 147030 bytes_in 0 147030 station_ip 5.119.55.210 147030 port 503 147030 unique_id port 147030 remote_ip 10.8.0.234 147031 username mansur 147031 mac 147031 bytes_out 0 147031 bytes_in 0 147031 station_ip 5.119.197.113 147031 port 470 147031 unique_id port 147034 username mirzaei 147034 mac 147034 bytes_out 0 147034 bytes_in 0 147034 station_ip 5.120.129.137 147034 port 263 147034 unique_id port 147034 remote_ip 10.8.1.30 147036 username mosi 147036 kill_reason Another user logged on this global unique id 147036 mac 147036 bytes_out 0 147036 bytes_in 0 147036 station_ip 151.235.107.13 147036 port 445 147036 unique_id port 147036 remote_ip 10.8.0.138 147037 username hamidsalari 147037 kill_reason Another user logged on this global unique id 147037 mac 147037 bytes_out 0 147037 bytes_in 0 147037 station_ip 5.119.101.161 147037 port 452 147037 unique_id port 147038 username yaghobi 147038 mac 147038 bytes_out 814363 147038 bytes_in 8930565 147038 station_ip 83.123.21.128 147038 port 470 147038 unique_id port 147038 remote_ip 10.8.0.198 147040 username mirzaei 147040 mac 147040 bytes_out 0 147040 bytes_in 0 147040 station_ip 5.113.192.240 147040 port 482 147040 unique_id port 147040 remote_ip 10.8.0.66 147042 username mohammadjavad 147042 mac 147042 bytes_out 24038 147042 bytes_in 104892 147042 station_ip 37.129.251.52 147042 port 505 147042 unique_id port 147042 remote_ip 10.8.0.142 147043 username hamidsalari 147043 kill_reason Another user logged on this global unique id 147043 mac 147033 bytes_in 2209054 147033 station_ip 5.120.96.205 147033 port 482 147033 unique_id port 147033 remote_ip 10.8.0.190 147035 username barzegar 147035 mac 147035 bytes_out 0 147035 bytes_in 0 147035 station_ip 5.119.55.210 147035 port 504 147035 unique_id port 147035 remote_ip 10.8.0.234 147041 username mehdizare 147041 mac 147041 bytes_out 0 147041 bytes_in 0 147041 station_ip 5.120.25.52 147041 port 503 147041 unique_id port 147041 remote_ip 10.8.0.90 147044 username mehdizare 147044 mac 147044 bytes_out 0 147044 bytes_in 0 147044 station_ip 5.120.25.52 147044 port 470 147044 unique_id port 147044 remote_ip 10.8.0.90 147048 username mirzaei 147048 mac 147048 bytes_out 0 147048 bytes_in 0 147048 station_ip 5.112.231.96 147048 port 263 147048 unique_id port 147048 remote_ip 10.8.1.30 147051 username mehdizare 147051 mac 147051 bytes_out 1852386 147051 bytes_in 4531549 147051 station_ip 5.120.25.52 147051 port 470 147051 unique_id port 147051 remote_ip 10.8.0.90 147054 username sabaghnezhad 147054 mac 147054 bytes_out 0 147054 bytes_in 0 147054 station_ip 83.123.66.14 147054 port 469 147054 unique_id port 147054 remote_ip 10.8.0.186 147056 username farhad2 147056 mac 147056 bytes_out 2386798 147056 bytes_in 19115041 147056 station_ip 5.120.96.205 147056 port 482 147056 unique_id port 147056 remote_ip 10.8.0.190 147058 username mehdizare 147058 mac 147058 bytes_out 0 147058 bytes_in 0 147058 station_ip 5.120.25.52 147058 port 266 147058 unique_id port 147058 remote_ip 10.8.1.42 147060 username mosi 147060 kill_reason Another user logged on this global unique id 147060 mac 147060 bytes_out 0 147060 bytes_in 0 147060 station_ip 151.235.107.13 147060 port 445 147060 unique_id port 147061 username farhad2 147061 mac 147061 bytes_out 518771 147061 bytes_in 1652851 147061 station_ip 5.120.96.205 147061 port 470 147061 unique_id port 147061 remote_ip 10.8.0.190 147062 username Mahin 147062 mac 147062 bytes_out 169427 147062 bytes_in 214720 147062 station_ip 5.120.125.165 147062 port 492 147062 unique_id port 147062 remote_ip 10.8.0.158 147063 username vanila 147063 mac 147063 bytes_out 5822011 147063 bytes_in 349390 147063 station_ip 37.129.172.227 147063 port 503 147063 unique_id port 147063 remote_ip 10.8.0.178 147066 username mehdizare 147066 mac 147066 bytes_out 21648 147066 bytes_in 31888 147066 station_ip 5.120.25.52 147066 port 263 147066 unique_id port 147066 remote_ip 10.8.1.42 147070 username mahdixz 147070 unique_id port 147070 terminate_cause User-Request 147070 bytes_out 1646810 147070 bytes_in 13189982 147070 station_ip 151.235.102.30 147070 port 15730950 147070 nas_port_type Virtual 147070 remote_ip 5.5.5.255 147074 username farhad2 147074 mac 147074 bytes_out 2532416 147074 bytes_in 18480434 147074 station_ip 5.120.96.205 147074 port 470 147074 unique_id port 147074 remote_ip 10.8.0.190 147079 username naeimeh 147079 kill_reason Another user logged on this global unique id 147079 mac 147079 bytes_out 0 147079 bytes_in 0 147079 station_ip 37.129.81.1 147079 port 469 147079 unique_id port 147079 remote_ip 10.8.0.26 147085 username aminvpn 147085 mac 147085 bytes_out 3830740 147085 bytes_in 22641302 147085 station_ip 5.119.86.230 147085 port 496 147085 unique_id port 147085 remote_ip 10.8.0.14 147087 username naeimeh 147087 mac 147087 bytes_out 0 147087 bytes_in 0 147087 station_ip 37.129.81.1 147087 port 469 147087 unique_id port 147089 username aminvpn 147089 mac 147043 bytes_out 0 147043 bytes_in 0 147043 station_ip 5.119.101.161 147043 port 452 147043 unique_id port 147045 username vanila 147045 mac 147045 bytes_out 0 147045 bytes_in 0 147045 station_ip 37.129.203.195 147045 port 504 147045 unique_id port 147045 remote_ip 10.8.0.178 147046 username mehdizare 147046 mac 147046 bytes_out 0 147046 bytes_in 0 147046 station_ip 5.120.25.52 147046 port 503 147046 unique_id port 147046 remote_ip 10.8.0.90 147047 username barzegar 147047 mac 147047 bytes_out 0 147047 bytes_in 0 147047 station_ip 5.119.55.210 147047 port 503 147047 unique_id port 147047 remote_ip 10.8.0.234 147050 username yaghobi 147050 mac 147050 bytes_out 0 147050 bytes_in 0 147050 station_ip 83.123.21.128 147050 port 503 147050 unique_id port 147050 remote_ip 10.8.0.198 147052 username godarzi 147052 mac 147052 bytes_out 0 147052 bytes_in 0 147052 station_ip 5.202.5.1 147052 port 503 147052 unique_id port 147052 remote_ip 10.8.0.174 147055 username mirzaei 147055 mac 147055 bytes_out 0 147055 bytes_in 0 147055 station_ip 5.112.231.96 147055 port 470 147055 unique_id port 147055 remote_ip 10.8.0.66 147057 username mehdizare 147057 mac 147057 bytes_out 55833 147057 bytes_in 71972 147057 station_ip 5.120.25.52 147057 port 505 147057 unique_id port 147057 remote_ip 10.8.0.90 147059 username aminvpn 147059 unique_id port 147059 terminate_cause Lost-Carrier 147059 bytes_out 1572307 147059 bytes_in 4272546 147059 station_ip 109.125.128.116 147059 port 15730949 147059 nas_port_type Virtual 147059 remote_ip 5.5.5.251 147064 username mehdizare 147064 mac 147064 bytes_out 135445 147064 bytes_in 171524 147064 station_ip 5.120.25.52 147064 port 482 147064 unique_id port 147064 remote_ip 10.8.0.90 147069 username milan 147069 kill_reason Another user logged on this global unique id 147069 mac 147069 bytes_out 0 147069 bytes_in 0 147069 station_ip 5.120.31.183 147069 port 497 147069 unique_id port 147069 remote_ip 10.8.0.218 147071 username vanila 147071 mac 147071 bytes_out 6390304 147071 bytes_in 1308806 147071 station_ip 37.129.172.227 147071 port 482 147071 unique_id port 147071 remote_ip 10.8.0.178 147072 username mahdiyehalizadeh 147072 mac 147072 bytes_out 986318 147072 bytes_in 11964854 147072 station_ip 5.119.245.95 147072 port 469 147072 unique_id port 147072 remote_ip 10.8.0.82 147073 username rezaei 147073 kill_reason Another user logged on this global unique id 147073 mac 147073 bytes_out 0 147073 bytes_in 0 147073 station_ip 5.119.4.59 147073 port 502 147073 unique_id port 147073 remote_ip 10.8.0.230 147077 username vanila 147077 mac 147077 bytes_out 0 147077 bytes_in 0 147077 station_ip 37.129.172.227 147077 port 482 147077 unique_id port 147077 remote_ip 10.8.0.178 147081 username saeed9658 147081 mac 147081 bytes_out 2686639 147081 bytes_in 29852020 147081 station_ip 5.119.126.90 147081 port 489 147081 unique_id port 147081 remote_ip 10.8.0.62 147082 username barzegar 147082 mac 147082 bytes_out 2893 147082 bytes_in 5194 147082 station_ip 5.119.55.210 147082 port 482 147082 unique_id port 147082 remote_ip 10.8.0.234 147088 username aminvpn 147088 mac 147088 bytes_out 672200 147088 bytes_in 3576823 147088 station_ip 83.123.0.74 147088 port 489 147088 unique_id port 147088 remote_ip 10.8.0.14 147090 username rezaei 147090 kill_reason Another user logged on this global unique id 147090 mac 147090 bytes_out 0 147090 bytes_in 0 147090 station_ip 5.119.4.59 147090 port 502 147090 unique_id port 147068 port 263 147068 unique_id port 147068 remote_ip 10.8.1.42 147075 username milan 147075 kill_reason Another user logged on this global unique id 147075 mac 147075 bytes_out 0 147075 bytes_in 0 147075 station_ip 5.120.31.183 147075 port 497 147075 unique_id port 147076 username mehdizare 147076 mac 147076 bytes_out 0 147076 bytes_in 0 147076 station_ip 5.120.25.52 147076 port 263 147076 unique_id port 147076 remote_ip 10.8.1.42 147078 username mosi 147078 kill_reason Another user logged on this global unique id 147078 mac 147078 bytes_out 0 147078 bytes_in 0 147078 station_ip 151.235.107.13 147078 port 445 147078 unique_id port 147080 username barzegar 147080 mac 147080 bytes_out 0 147080 bytes_in 0 147080 station_ip 5.119.55.210 147080 port 266 147080 unique_id port 147080 remote_ip 10.8.1.174 147083 username milan 147083 kill_reason Another user logged on this global unique id 147083 mac 147083 bytes_out 0 147083 bytes_in 0 147083 station_ip 5.120.31.183 147083 port 497 147083 unique_id port 147084 username ayobi 147084 mac 147084 bytes_out 2864347 147084 bytes_in 32165351 147084 station_ip 37.27.52.128 147084 port 501 147084 unique_id port 147084 remote_ip 10.8.0.246 147086 username barzegar 147086 mac 147086 bytes_out 5530 147086 bytes_in 7864 147086 station_ip 5.119.55.210 147086 port 482 147086 unique_id port 147086 remote_ip 10.8.0.234 147091 username zotaher 147091 kill_reason Another user logged on this global unique id 147091 mac 147091 bytes_out 0 147091 bytes_in 0 147091 station_ip 83.122.68.129 147091 port 495 147091 unique_id port 147091 remote_ip 10.8.0.194 147094 username rezaei 147094 kill_reason Another user logged on this global unique id 147094 mac 147094 bytes_out 0 147094 bytes_in 0 147094 station_ip 5.119.4.59 147094 port 502 147094 unique_id port 147097 username aminvpn 147097 unique_id port 147097 terminate_cause Lost-Carrier 147097 bytes_out 23531456 147097 bytes_in 451940430 147097 station_ip 5.119.251.225 147097 port 15730948 147097 nas_port_type Virtual 147097 remote_ip 5.5.5.252 147098 username farhad2 147098 mac 147098 bytes_out 0 147098 bytes_in 0 147098 station_ip 5.120.96.205 147098 port 469 147098 unique_id port 147098 remote_ip 10.8.0.190 147100 username mosi 147100 kill_reason Another user logged on this global unique id 147100 mac 147100 bytes_out 0 147100 bytes_in 0 147100 station_ip 151.235.107.13 147100 port 445 147100 unique_id port 147102 username arash 147102 mac 147102 bytes_out 0 147102 bytes_in 0 147102 station_ip 94.24.82.159 147102 port 492 147102 unique_id port 147102 remote_ip 10.8.0.114 147103 username rezaei 147103 mac 147103 bytes_out 0 147103 bytes_in 0 147103 station_ip 5.119.4.59 147103 port 502 147103 unique_id port 147106 username milan 147106 kill_reason Another user logged on this global unique id 147106 mac 147106 bytes_out 0 147106 bytes_in 0 147106 station_ip 5.120.31.183 147106 port 497 147106 unique_id port 147110 username hosseine 147110 mac 147110 bytes_out 0 147110 bytes_in 0 147110 station_ip 37.129.32.242 147110 port 491 147110 unique_id port 147110 remote_ip 10.8.0.238 147111 username aminvpn 147111 unique_id port 147111 terminate_cause Lost-Carrier 147111 bytes_out 8507770 147111 bytes_in 49584541 147111 station_ip 109.125.128.116 147111 port 15730951 147111 nas_port_type Virtual 147111 remote_ip 5.5.5.255 147113 username mosi 147113 kill_reason Another user logged on this global unique id 147113 mac 147113 bytes_out 0 147113 bytes_in 0 147113 station_ip 151.235.107.13 147113 port 445 147113 unique_id port 147089 bytes_out 0 147089 bytes_in 0 147089 station_ip 5.119.86.230 147089 port 469 147089 unique_id port 147089 remote_ip 10.8.0.14 147095 username hamidsalari 147095 kill_reason Another user logged on this global unique id 147095 mac 147095 bytes_out 0 147095 bytes_in 0 147095 station_ip 5.119.101.161 147095 port 452 147095 unique_id port 147096 username zotaher 147096 kill_reason Another user logged on this global unique id 147096 mac 147096 bytes_out 0 147096 bytes_in 0 147096 station_ip 83.122.68.129 147096 port 495 147096 unique_id port 147101 username mostafa_es78 147101 unique_id port 147101 terminate_cause Lost-Carrier 147101 bytes_out 80427 147101 bytes_in 555092 147101 station_ip 5.119.89.136 147101 port 15730952 147101 nas_port_type Virtual 147101 remote_ip 5.5.5.223 147105 username hamidsalari 147105 kill_reason Another user logged on this global unique id 147105 mac 147105 bytes_out 0 147105 bytes_in 0 147105 station_ip 5.119.101.161 147105 port 452 147105 unique_id port 147117 username barzegar 147117 mac 147117 bytes_out 0 147117 bytes_in 0 147117 station_ip 5.119.55.210 147117 port 266 147117 unique_id port 147117 remote_ip 10.8.1.174 147132 username barzegar 147132 mac 147132 bytes_out 0 147132 bytes_in 0 147132 station_ip 5.119.55.210 147132 port 469 147132 unique_id port 147132 remote_ip 10.8.0.234 147133 username milan 147133 mac 147133 bytes_out 0 147133 bytes_in 0 147133 station_ip 5.120.31.183 147133 port 497 147133 unique_id port 147136 username farhad2 147136 mac 147136 bytes_out 0 147136 bytes_in 0 147136 station_ip 5.120.171.249 147136 port 452 147136 unique_id port 147136 remote_ip 10.8.0.190 147137 username barzegar 147137 mac 147137 bytes_out 0 147137 bytes_in 0 147137 station_ip 5.119.55.210 147137 port 469 147137 unique_id port 147137 remote_ip 10.8.0.234 147141 username barzegar 147141 mac 147141 bytes_out 0 147141 bytes_in 0 147141 station_ip 5.119.55.210 147141 port 470 147141 unique_id port 147141 remote_ip 10.8.0.234 147143 username sabaghnezhad 147143 mac 147143 bytes_out 926148 147143 bytes_in 7715473 147143 station_ip 37.129.213.44 147143 port 469 147143 unique_id port 147143 remote_ip 10.8.0.186 147144 username barzegar 147144 mac 147144 bytes_out 0 147144 bytes_in 0 147144 station_ip 5.119.55.210 147144 port 452 147144 unique_id port 147144 remote_ip 10.8.0.234 147145 username farhad2 147145 kill_reason Another user logged on this global unique id 147145 mac 147145 bytes_out 0 147145 bytes_in 0 147145 station_ip 5.120.171.249 147145 port 445 147145 unique_id port 147145 remote_ip 10.8.0.190 147151 username barzegar 147151 mac 147151 bytes_out 0 147151 bytes_in 0 147151 station_ip 5.119.55.210 147151 port 267 147151 unique_id port 147151 remote_ip 10.8.1.174 147152 username fezealinaghi 147152 mac 147152 bytes_out 485726 147152 bytes_in 1777642 147152 station_ip 83.123.68.254 147152 port 266 147152 unique_id port 147152 remote_ip 10.8.1.162 147154 username farhad2 147154 mac 147154 bytes_out 0 147154 bytes_in 0 147154 station_ip 5.120.171.249 147154 port 265 147154 unique_id port 147160 username barzegar 147160 mac 147160 bytes_out 0 147160 bytes_in 0 147160 station_ip 5.119.55.210 147160 port 265 147160 unique_id port 147160 remote_ip 10.8.1.174 147161 username barzegar 147161 mac 147161 bytes_out 0 147161 bytes_in 0 147161 station_ip 5.119.55.210 147161 port 265 147161 unique_id port 147161 remote_ip 10.8.1.174 147162 username barzegar 147162 mac 147092 username farhad2 147092 mac 147092 bytes_out 3259767 147092 bytes_in 15011516 147092 station_ip 5.120.96.205 147092 port 470 147092 unique_id port 147092 remote_ip 10.8.0.190 147093 username aminvpn 147093 mac 147093 bytes_out 0 147093 bytes_in 0 147093 station_ip 83.123.0.74 147093 port 489 147093 unique_id port 147093 remote_ip 10.8.0.14 147099 username farhad2 147099 mac 147099 bytes_out 0 147099 bytes_in 0 147099 station_ip 5.120.96.205 147099 port 469 147099 unique_id port 147099 remote_ip 10.8.0.190 147104 username barzegar 147104 mac 147104 bytes_out 616686 147104 bytes_in 4129075 147104 station_ip 5.119.55.210 147104 port 482 147104 unique_id port 147104 remote_ip 10.8.0.234 147107 username farhad2 147107 kill_reason Another user logged on this global unique id 147107 mac 147107 bytes_out 0 147107 bytes_in 0 147107 station_ip 5.120.96.205 147107 port 469 147107 unique_id port 147107 remote_ip 10.8.0.190 147108 username hamidsalari 147108 kill_reason Another user logged on this global unique id 147108 mac 147108 bytes_out 0 147108 bytes_in 0 147108 station_ip 5.119.101.161 147108 port 452 147108 unique_id port 147109 username barzegar 147109 mac 147109 bytes_out 0 147109 bytes_in 0 147109 station_ip 5.119.55.210 147109 port 492 147109 unique_id port 147109 remote_ip 10.8.0.234 147112 username mahdiyehalizadeh 147112 mac 147112 bytes_out 0 147112 bytes_in 0 147112 station_ip 5.119.36.211 147112 port 482 147112 unique_id port 147112 remote_ip 10.8.0.82 147114 username barzegar 147114 mac 147114 bytes_out 0 147114 bytes_in 0 147114 station_ip 5.119.55.210 147114 port 491 147114 unique_id port 147114 remote_ip 10.8.0.234 147116 username farhad2 147116 kill_reason Another user logged on this global unique id 147116 mac 147116 bytes_out 0 147116 bytes_in 0 147116 station_ip 5.120.96.205 147116 port 469 147116 unique_id port 147118 username naeimeh 147118 mac 147118 bytes_out 0 147118 bytes_in 0 147118 station_ip 83.122.90.28 147118 port 482 147118 unique_id port 147118 remote_ip 10.8.0.26 147119 username farhad2 147119 mac 147119 bytes_out 0 147119 bytes_in 0 147119 station_ip 5.120.96.205 147119 port 469 147119 unique_id port 147120 username alikomsari 147120 kill_reason Another user logged on this global unique id 147120 mac 147120 bytes_out 0 147120 bytes_in 0 147120 station_ip 5.119.0.160 147120 port 489 147120 unique_id port 147120 remote_ip 10.8.0.70 147121 username hamidsalari 147121 mac 147121 bytes_out 0 147121 bytes_in 0 147121 station_ip 5.119.101.161 147121 port 452 147121 unique_id port 147123 username barzegar 147123 mac 147123 bytes_out 0 147123 bytes_in 0 147123 station_ip 5.119.55.210 147123 port 266 147123 unique_id port 147123 remote_ip 10.8.1.174 147124 username hasanahmadi 147124 kill_reason Another user logged on this global unique id 147124 mac 147124 bytes_out 0 147124 bytes_in 0 147124 station_ip 83.122.64.137 147124 port 469 147124 unique_id port 147124 remote_ip 10.8.0.126 147126 username zotaher 147126 mac 147126 bytes_out 0 147126 bytes_in 0 147126 station_ip 83.122.68.129 147126 port 495 147126 unique_id port 147128 username barzegar 147128 mac 147128 bytes_out 0 147128 bytes_in 0 147128 station_ip 5.119.55.210 147128 port 469 147128 unique_id port 147128 remote_ip 10.8.0.234 147135 username alikomsari 147135 mac 147135 bytes_out 0 147135 bytes_in 0 147135 station_ip 5.119.0.160 147135 port 489 147135 unique_id port 147138 username aminvpn 147115 username milan 147115 kill_reason Another user logged on this global unique id 147115 mac 147115 bytes_out 0 147115 bytes_in 0 147115 station_ip 5.120.31.183 147115 port 497 147115 unique_id port 147122 username milan 147122 kill_reason Another user logged on this global unique id 147122 mac 147122 bytes_out 0 147122 bytes_in 0 147122 station_ip 5.120.31.183 147122 port 497 147122 unique_id port 147125 username hasanahmadi 147125 mac 147125 bytes_out 0 147125 bytes_in 0 147125 station_ip 83.122.64.137 147125 port 469 147125 unique_id port 147127 username zotaher 147127 mac 147127 bytes_out 0 147127 bytes_in 0 147127 station_ip 83.122.68.129 147127 port 469 147127 unique_id port 147127 remote_ip 10.8.0.194 147129 username milan 147129 kill_reason Another user logged on this global unique id 147129 mac 147129 bytes_out 0 147129 bytes_in 0 147129 station_ip 5.120.31.183 147129 port 497 147129 unique_id port 147130 username fezealinaghi 147130 mac 147130 bytes_out 4984079 147130 bytes_in 38210499 147130 station_ip 83.123.104.126 147130 port 265 147130 unique_id port 147130 remote_ip 10.8.1.162 147131 username farhad2 147131 mac 147131 bytes_out 0 147131 bytes_in 0 147131 station_ip 5.120.171.249 147131 port 452 147131 unique_id port 147131 remote_ip 10.8.0.190 147134 username mosi 147134 mac 147134 bytes_out 0 147134 bytes_in 0 147134 station_ip 151.235.107.13 147134 port 445 147134 unique_id port 147139 username farhad2 147139 mac 147139 bytes_out 2773235 147139 bytes_in 21799152 147139 station_ip 5.120.171.249 147139 port 445 147139 unique_id port 147139 remote_ip 10.8.0.190 147147 username farhad2 147147 mac 147147 bytes_out 0 147147 bytes_in 0 147147 station_ip 5.120.171.249 147147 port 445 147147 unique_id port 147149 username mosi 147149 mac 147149 bytes_out 0 147149 bytes_in 0 147149 station_ip 37.137.1.239 147149 port 470 147149 unique_id port 147149 remote_ip 10.8.0.138 147153 username mosi 147153 mac 147153 bytes_out 18999 147153 bytes_in 33998 147153 station_ip 89.47.74.70 147153 port 445 147153 unique_id port 147153 remote_ip 10.8.0.138 147163 username mosi 147163 mac 147163 bytes_out 0 147163 bytes_in 0 147163 station_ip 89.32.104.183 147163 port 445 147163 unique_id port 147163 remote_ip 10.8.0.138 147164 username barzegar 147164 mac 147164 bytes_out 0 147164 bytes_in 0 147164 station_ip 5.119.55.210 147164 port 265 147164 unique_id port 147164 remote_ip 10.8.1.174 147168 username barzegar 147168 mac 147168 bytes_out 0 147168 bytes_in 0 147168 station_ip 5.119.55.210 147168 port 265 147168 unique_id port 147168 remote_ip 10.8.1.174 147169 username barzegar 147169 mac 147169 bytes_out 0 147169 bytes_in 0 147169 station_ip 5.119.55.210 147169 port 265 147169 unique_id port 147169 remote_ip 10.8.1.174 147170 username barzegar 147170 mac 147170 bytes_out 0 147170 bytes_in 0 147170 station_ip 5.119.55.210 147170 port 265 147170 unique_id port 147170 remote_ip 10.8.1.174 147171 username barzegar 147171 mac 147171 bytes_out 0 147171 bytes_in 0 147171 station_ip 5.119.55.210 147171 port 265 147171 unique_id port 147171 remote_ip 10.8.1.174 147178 username barzegar 147178 mac 147178 bytes_out 11010 147178 bytes_in 32390 147178 station_ip 5.119.55.210 147178 port 265 147178 unique_id port 147178 remote_ip 10.8.1.174 147185 username mehdizare 147185 mac 147185 bytes_out 11237 147185 bytes_in 15199 147185 station_ip 5.120.25.52 147138 mac 147138 bytes_out 0 147138 bytes_in 0 147138 station_ip 5.119.86.230 147138 port 470 147138 unique_id port 147138 remote_ip 10.8.0.14 147140 username farhad2 147140 mac 147140 bytes_out 0 147140 bytes_in 0 147140 station_ip 5.120.171.249 147140 port 445 147140 unique_id port 147140 remote_ip 10.8.0.190 147142 username mosi 147142 mac 147142 bytes_out 0 147142 bytes_in 0 147142 station_ip 37.137.1.239 147142 port 452 147142 unique_id port 147142 remote_ip 10.8.0.138 147146 username barzegar 147146 mac 147146 bytes_out 0 147146 bytes_in 0 147146 station_ip 5.119.55.210 147146 port 265 147146 unique_id port 147146 remote_ip 10.8.1.174 147148 username barzegar 147148 mac 147148 bytes_out 0 147148 bytes_in 0 147148 station_ip 5.119.55.210 147148 port 266 147148 unique_id port 147148 remote_ip 10.8.1.174 147150 username farhad2 147150 kill_reason Another user logged on this global unique id 147150 mac 147150 bytes_out 0 147150 bytes_in 0 147150 station_ip 5.120.171.249 147150 port 265 147150 unique_id port 147150 remote_ip 10.8.1.222 147155 username mosi 147155 mac 147155 bytes_out 6392 147155 bytes_in 10235 147155 station_ip 89.32.104.183 147155 port 445 147155 unique_id port 147155 remote_ip 10.8.0.138 147156 username barzegar 147156 mac 147156 bytes_out 0 147156 bytes_in 0 147156 station_ip 5.119.55.210 147156 port 266 147156 unique_id port 147156 remote_ip 10.8.1.174 147157 username barzegar 147157 mac 147157 bytes_out 0 147157 bytes_in 0 147157 station_ip 5.119.55.210 147157 port 266 147157 unique_id port 147157 remote_ip 10.8.1.174 147158 username mosi 147158 mac 147158 bytes_out 87690 147158 bytes_in 87203 147158 station_ip 89.32.104.183 147158 port 452 147158 unique_id port 147158 remote_ip 10.8.0.138 147159 username farhad2 147159 mac 147159 bytes_out 1096959 147159 bytes_in 12487459 147159 station_ip 5.120.171.249 147159 port 265 147159 unique_id port 147159 remote_ip 10.8.1.222 147165 username barzegar 147165 mac 147165 bytes_out 0 147165 bytes_in 0 147165 station_ip 5.119.55.210 147165 port 265 147165 unique_id port 147165 remote_ip 10.8.1.174 147172 username barzegar 147172 mac 147172 bytes_out 0 147172 bytes_in 0 147172 station_ip 5.119.55.210 147172 port 265 147172 unique_id port 147172 remote_ip 10.8.1.174 147173 username barzegar 147173 mac 147173 bytes_out 0 147173 bytes_in 0 147173 station_ip 5.119.55.210 147173 port 265 147173 unique_id port 147173 remote_ip 10.8.1.174 147174 username barzegar 147174 mac 147174 bytes_out 0 147174 bytes_in 0 147174 station_ip 5.119.55.210 147174 port 265 147174 unique_id port 147174 remote_ip 10.8.1.174 147176 username barzegar 147176 mac 147176 bytes_out 0 147176 bytes_in 0 147176 station_ip 5.119.55.210 147176 port 265 147176 unique_id port 147176 remote_ip 10.8.1.174 147179 username hasanahmadi 147179 mac 147179 bytes_out 0 147179 bytes_in 0 147179 station_ip 83.122.89.202 147179 port 445 147179 unique_id port 147180 username barzegar 147180 mac 147180 bytes_out 0 147180 bytes_in 0 147180 station_ip 5.119.55.210 147180 port 265 147180 unique_id port 147180 remote_ip 10.8.1.174 147184 username sedighe 147184 mac 147184 bytes_out 95871 147184 bytes_in 172814 147184 station_ip 83.122.53.65 147184 port 445 147184 unique_id port 147184 remote_ip 10.8.0.146 147185 port 263 147185 unique_id port 147185 remote_ip 10.8.1.42 147188 username sedighe 147162 bytes_out 0 147162 bytes_in 0 147162 station_ip 5.119.55.210 147162 port 265 147162 unique_id port 147162 remote_ip 10.8.1.174 147166 username morteza 147166 mac 147166 bytes_out 0 147166 bytes_in 0 147166 station_ip 113.203.42.61 147166 port 445 147166 unique_id port 147166 remote_ip 10.8.0.46 147167 username barzegar 147167 mac 147167 bytes_out 0 147167 bytes_in 0 147167 station_ip 5.119.55.210 147167 port 265 147167 unique_id port 147167 remote_ip 10.8.1.174 147175 username barzegar 147175 mac 147175 bytes_out 0 147175 bytes_in 0 147175 station_ip 5.119.55.210 147175 port 265 147175 unique_id port 147175 remote_ip 10.8.1.174 147177 username hasanahmadi 147177 kill_reason Another user logged on this global unique id 147177 mac 147177 bytes_out 0 147177 bytes_in 0 147177 station_ip 83.122.89.202 147177 port 445 147177 unique_id port 147177 remote_ip 10.8.0.126 147181 username mehdizare 147181 mac 147181 bytes_out 1429756 147181 bytes_in 2068564 147181 station_ip 5.120.25.52 147181 port 263 147181 unique_id port 147181 remote_ip 10.8.1.42 147182 username sedighe 147182 mac 147182 bytes_out 0 147182 bytes_in 0 147182 station_ip 83.123.175.87 147182 port 445 147182 unique_id port 147182 remote_ip 10.8.0.146 147183 username barzegar 147183 mac 147183 bytes_out 0 147183 bytes_in 0 147183 station_ip 5.119.55.210 147183 port 265 147183 unique_id port 147183 remote_ip 10.8.1.174 147186 username barzegar 147186 mac 147186 bytes_out 0 147186 bytes_in 0 147186 station_ip 5.119.55.210 147186 port 263 147186 unique_id port 147186 remote_ip 10.8.1.174 147187 username sedighe 147187 mac 147187 bytes_out 0 147187 bytes_in 0 147187 station_ip 83.122.53.65 147187 port 469 147187 unique_id port 147187 remote_ip 10.8.0.146 147188 mac 147188 bytes_out 0 147188 bytes_in 0 147188 station_ip 83.122.53.65 147188 port 469 147188 unique_id port 147188 remote_ip 10.8.0.146 147189 username barzegar 147189 mac 147189 bytes_out 0 147189 bytes_in 0 147189 station_ip 5.119.55.210 147189 port 265 147189 unique_id port 147189 remote_ip 10.8.1.174 147190 username barzegar 147190 mac 147190 bytes_out 0 147190 bytes_in 0 147190 station_ip 5.119.55.210 147190 port 265 147190 unique_id port 147190 remote_ip 10.8.1.174 147191 username sedighe 147191 mac 147191 bytes_out 254937 147191 bytes_in 3015727 147191 station_ip 83.123.89.59 147191 port 469 147191 unique_id port 147191 remote_ip 10.8.0.146 147192 username barzegar 147192 mac 147192 bytes_out 0 147192 bytes_in 0 147192 station_ip 5.119.55.210 147192 port 265 147192 unique_id port 147192 remote_ip 10.8.1.174 147193 username fezealinaghi 147193 mac 147193 bytes_out 0 147193 bytes_in 0 147193 station_ip 83.123.49.250 147193 port 265 147193 unique_id port 147193 remote_ip 10.8.1.162 147194 username mohammadjavad 147194 mac 147194 bytes_out 0 147194 bytes_in 0 147194 station_ip 83.123.105.66 147194 port 445 147194 unique_id port 147194 remote_ip 10.8.0.142 147195 username mehdizare 147195 mac 147195 bytes_out 43086 147195 bytes_in 53020 147195 station_ip 5.119.217.159 147195 port 263 147195 unique_id port 147195 remote_ip 10.8.1.42 147196 username kalantary 147196 mac 147196 bytes_out 355891 147196 bytes_in 1127081 147196 station_ip 83.122.79.103 147196 port 445 147196 unique_id port 147196 remote_ip 10.8.0.98 147197 username barzegar 147197 mac 147197 bytes_out 0 147197 bytes_in 0 147197 station_ip 5.119.55.210 147197 port 470 147197 unique_id port 147197 remote_ip 10.8.0.234 147198 username jafari 147198 mac 147198 bytes_out 0 147198 bytes_in 0 147198 station_ip 5.62.194.44 147198 port 445 147198 unique_id port 147198 remote_ip 10.8.0.242 147199 username barzegar 147199 mac 147199 bytes_out 0 147199 bytes_in 0 147199 station_ip 5.119.55.210 147199 port 263 147199 unique_id port 147199 remote_ip 10.8.1.174 147200 username milan 147200 kill_reason Another user logged on this global unique id 147200 mac 147200 bytes_out 0 147200 bytes_in 0 147200 station_ip 5.120.31.183 147200 port 489 147200 unique_id port 147200 remote_ip 10.8.0.218 147201 username mohammadjavad 147201 mac 147201 bytes_out 113819 147201 bytes_in 249811 147201 station_ip 37.129.91.95 147201 port 491 147201 unique_id port 147201 remote_ip 10.8.0.142 147203 username mostafa_es78 147203 unique_id port 147203 terminate_cause User-Request 147203 bytes_out 138372 147203 bytes_in 1521983 147203 station_ip 5.125.184.57 147203 port 15730953 147203 nas_port_type Virtual 147203 remote_ip 5.5.5.255 147207 username vanila 147207 mac 147207 bytes_out 0 147207 bytes_in 0 147207 station_ip 37.129.228.127 147207 port 492 147207 unique_id port 147207 remote_ip 10.8.0.178 147216 username barzegar 147216 mac 147216 bytes_out 0 147216 bytes_in 0 147216 station_ip 5.119.55.210 147216 port 495 147216 unique_id port 147216 remote_ip 10.8.0.234 147217 username hamidsalari 147217 kill_reason Another user logged on this global unique id 147217 mac 147217 bytes_out 0 147217 bytes_in 0 147217 station_ip 5.119.54.120 147217 port 482 147217 unique_id port 147217 remote_ip 10.8.0.222 147222 username saeed9658 147222 mac 147222 bytes_out 0 147222 bytes_in 0 147222 station_ip 5.119.126.90 147222 port 495 147222 unique_id port 147222 remote_ip 10.8.0.62 147230 username mohammadjavad 147230 mac 147230 bytes_out 847474 147230 bytes_in 18249330 147230 station_ip 37.129.11.83 147230 port 445 147230 unique_id port 147230 remote_ip 10.8.0.142 147231 username vanila 147231 mac 147231 bytes_out 0 147231 bytes_in 0 147231 station_ip 37.129.228.127 147231 port 470 147231 unique_id port 147231 remote_ip 10.8.0.178 147234 username mohammadjavad 147234 mac 147234 bytes_out 0 147234 bytes_in 0 147234 station_ip 83.122.147.218 147234 port 470 147234 unique_id port 147234 remote_ip 10.8.0.142 147236 username barzegar 147236 mac 147236 bytes_out 0 147236 bytes_in 0 147236 station_ip 5.119.55.210 147236 port 445 147236 unique_id port 147236 remote_ip 10.8.0.234 147237 username milan 147237 mac 147237 bytes_out 0 147237 bytes_in 0 147237 station_ip 5.120.31.183 147237 port 489 147237 unique_id port 147241 username vanila 147241 mac 147241 bytes_out 0 147241 bytes_in 0 147241 station_ip 37.129.228.127 147241 port 445 147241 unique_id port 147241 remote_ip 10.8.0.178 147243 username kalantary 147243 mac 147243 bytes_out 0 147243 bytes_in 0 147243 station_ip 113.203.30.231 147243 port 265 147243 unique_id port 147243 remote_ip 10.8.1.26 147245 username hassan 147245 kill_reason Another user logged on this global unique id 147245 mac 147245 bytes_out 0 147245 bytes_in 0 147245 station_ip 5.120.62.219 147245 port 445 147245 unique_id port 147245 remote_ip 10.8.0.122 147247 username khalili 147247 kill_reason Another user logged on this global unique id 147247 mac 147247 bytes_out 0 147247 bytes_in 0 147247 station_ip 5.119.173.8 147247 port 489 147247 unique_id port 147247 remote_ip 10.8.0.86 147202 username rezaei 147202 mac 147202 bytes_out 1304258 147202 bytes_in 12788165 147202 station_ip 5.119.4.59 147202 port 470 147202 unique_id port 147202 remote_ip 10.8.0.230 147208 username jafari 147208 kill_reason Another user logged on this global unique id 147208 mac 147208 bytes_out 0 147208 bytes_in 0 147208 station_ip 5.62.194.44 147208 port 445 147208 unique_id port 147208 remote_ip 10.8.0.242 147211 username mostafa_es78 147211 unique_id port 147211 terminate_cause Lost-Carrier 147211 bytes_out 80335 147211 bytes_in 1942284 147211 station_ip 5.125.184.57 147211 port 15730954 147211 nas_port_type Virtual 147211 remote_ip 5.5.5.255 147212 username barzegar 147212 mac 147212 bytes_out 0 147212 bytes_in 0 147212 station_ip 5.119.55.210 147212 port 263 147212 unique_id port 147212 remote_ip 10.8.1.174 147214 username alirezazadeh 147214 unique_id port 147214 terminate_cause Lost-Carrier 147214 bytes_out 4144725 147214 bytes_in 52736253 147214 station_ip 5.119.66.150 147214 port 15730940 147214 nas_port_type Virtual 147214 remote_ip 5.5.5.1 147218 username jafari 147218 mac 147218 bytes_out 0 147218 bytes_in 0 147218 station_ip 5.62.194.44 147218 port 445 147218 unique_id port 147221 username vanila 147221 mac 147221 bytes_out 0 147221 bytes_in 0 147221 station_ip 37.129.228.127 147221 port 445 147221 unique_id port 147221 remote_ip 10.8.0.178 147223 username barzegar 147223 mac 147223 bytes_out 0 147223 bytes_in 0 147223 station_ip 5.119.55.210 147223 port 445 147223 unique_id port 147223 remote_ip 10.8.0.234 147225 username milan 147225 kill_reason Another user logged on this global unique id 147225 mac 147225 bytes_out 0 147225 bytes_in 0 147225 station_ip 5.120.31.183 147225 port 489 147225 unique_id port 147226 username malekpoir 147226 kill_reason Another user logged on this global unique id 147226 mac 147226 bytes_out 0 147226 bytes_in 0 147226 station_ip 5.120.180.209 147226 port 263 147226 unique_id port 147226 remote_ip 10.8.1.54 147227 username mohammadmahdi 147227 mac 147227 bytes_out 1126031 147227 bytes_in 12175334 147227 station_ip 5.120.131.70 147227 port 491 147227 unique_id port 147227 remote_ip 10.8.0.54 147228 username vanila 147228 mac 147228 bytes_out 0 147228 bytes_in 0 147228 station_ip 37.129.228.127 147228 port 470 147228 unique_id port 147228 remote_ip 10.8.0.178 147229 username barzegar 147229 mac 147229 bytes_out 0 147229 bytes_in 0 147229 station_ip 5.119.55.210 147229 port 491 147229 unique_id port 147229 remote_ip 10.8.0.234 147232 username barzegar 147232 mac 147232 bytes_out 0 147232 bytes_in 0 147232 station_ip 5.119.55.210 147232 port 445 147232 unique_id port 147232 remote_ip 10.8.0.234 147235 username barzegar 147235 mac 147235 bytes_out 0 147235 bytes_in 0 147235 station_ip 5.119.55.210 147235 port 445 147235 unique_id port 147235 remote_ip 10.8.0.234 147246 username barzegar 147246 mac 147246 bytes_out 8184 147246 bytes_in 10392 147246 station_ip 5.119.55.210 147246 port 265 147246 unique_id port 147246 remote_ip 10.8.1.174 147250 username mehdizare 147250 mac 147250 bytes_out 496007 147250 bytes_in 757476 147250 station_ip 5.119.217.159 147250 port 469 147250 unique_id port 147250 remote_ip 10.8.0.90 147251 username mahdiyehalizadeh 147251 mac 147251 bytes_out 0 147251 bytes_in 0 147251 station_ip 5.119.210.193 147251 port 470 147251 unique_id port 147251 remote_ip 10.8.0.82 147252 username mehdizare 147252 mac 147252 bytes_out 0 147252 bytes_in 0 147252 station_ip 5.119.217.159 147204 username vanila 147204 mac 147204 bytes_out 5977528 147204 bytes_in 2801826 147204 station_ip 37.129.228.127 147204 port 492 147204 unique_id port 147204 remote_ip 10.8.0.178 147205 username barzegar 147205 mac 147205 bytes_out 0 147205 bytes_in 0 147205 station_ip 5.119.55.210 147205 port 263 147205 unique_id port 147205 remote_ip 10.8.1.174 147206 username milan 147206 kill_reason Another user logged on this global unique id 147206 mac 147206 bytes_out 0 147206 bytes_in 0 147206 station_ip 5.120.31.183 147206 port 489 147206 unique_id port 147209 username mohammadjavad 147209 mac 147209 bytes_out 0 147209 bytes_in 0 147209 station_ip 37.129.82.175 147209 port 470 147209 unique_id port 147209 remote_ip 10.8.0.142 147210 username sekonji3 147210 mac 147210 bytes_out 0 147210 bytes_in 0 147210 station_ip 83.122.226.139 147210 port 492 147210 unique_id port 147210 remote_ip 10.8.0.6 147213 username milan 147213 kill_reason Another user logged on this global unique id 147213 mac 147213 bytes_out 0 147213 bytes_in 0 147213 station_ip 5.120.31.183 147213 port 489 147213 unique_id port 147215 username vanila 147215 mac 147215 bytes_out 0 147215 bytes_in 0 147215 station_ip 37.129.228.127 147215 port 470 147215 unique_id port 147215 remote_ip 10.8.0.178 147219 username vanila 147219 mac 147219 bytes_out 0 147219 bytes_in 0 147219 station_ip 37.129.228.127 147219 port 470 147219 unique_id port 147219 remote_ip 10.8.0.178 147220 username barzegar 147220 mac 147220 bytes_out 0 147220 bytes_in 0 147220 station_ip 5.119.55.210 147220 port 445 147220 unique_id port 147220 remote_ip 10.8.0.234 147224 username barzegar 147224 mac 147224 bytes_out 0 147224 bytes_in 0 147224 station_ip 5.119.55.210 147224 port 445 147224 unique_id port 147224 remote_ip 10.8.0.234 147233 username malekpoir 147233 kill_reason Another user logged on this global unique id 147233 mac 147233 bytes_out 0 147233 bytes_in 0 147233 station_ip 5.120.180.209 147233 port 263 147233 unique_id port 147238 username moradi 147238 mac 147238 bytes_out 0 147238 bytes_in 0 147238 station_ip 37.129.112.209 147238 port 445 147238 unique_id port 147238 remote_ip 10.8.0.226 147239 username vanila 147239 mac 147239 bytes_out 658160 147239 bytes_in 86604 147239 station_ip 37.129.228.127 147239 port 491 147239 unique_id port 147239 remote_ip 10.8.0.178 147240 username barzegar 147240 mac 147240 bytes_out 0 147240 bytes_in 0 147240 station_ip 5.119.55.210 147240 port 495 147240 unique_id port 147240 remote_ip 10.8.0.234 147242 username sedighe 147242 mac 147242 bytes_out 0 147242 bytes_in 0 147242 station_ip 83.122.227.87 147242 port 491 147242 unique_id port 147242 remote_ip 10.8.0.146 147244 username vanila 147244 mac 147244 bytes_out 0 147244 bytes_in 0 147244 station_ip 37.129.228.127 147244 port 495 147244 unique_id port 147244 remote_ip 10.8.0.178 147254 username godarzi 147254 mac 147254 bytes_out 1263066 147254 bytes_in 17102295 147254 station_ip 5.202.5.1 147254 port 491 147254 unique_id port 147254 remote_ip 10.8.0.174 147257 username mehdizare 147257 mac 147257 bytes_out 14872 147257 bytes_in 23135 147257 station_ip 5.119.217.159 147257 port 469 147257 unique_id port 147257 remote_ip 10.8.0.90 147263 username barzegar 147263 mac 147263 bytes_out 4756 147263 bytes_in 16142 147263 station_ip 5.119.55.210 147263 port 265 147263 unique_id port 147263 remote_ip 10.8.1.174 147265 username zotaher 147248 username zotaher 147248 mac 147248 bytes_out 2465522 147248 bytes_in 38691833 147248 station_ip 83.122.12.149 147248 port 491 147248 unique_id port 147248 remote_ip 10.8.0.194 147249 username barzegar 147249 mac 147249 bytes_out 5275 147249 bytes_in 7179 147249 station_ip 5.119.55.210 147249 port 265 147249 unique_id port 147249 remote_ip 10.8.1.174 147253 username forozandeh1 147253 mac 147253 bytes_out 891903 147253 bytes_in 7464146 147253 station_ip 37.129.71.166 147253 port 495 147253 unique_id port 147253 remote_ip 10.8.0.130 147256 username zotaher 147256 mac 147256 bytes_out 1358443 147256 bytes_in 21400584 147256 station_ip 83.122.12.149 147256 port 496 147256 unique_id port 147256 remote_ip 10.8.0.194 147259 username barzegar 147259 mac 147259 bytes_out 0 147259 bytes_in 0 147259 station_ip 5.119.55.210 147259 port 266 147259 unique_id port 147259 remote_ip 10.8.1.174 147260 username barzegar 147260 mac 147260 bytes_out 0 147260 bytes_in 0 147260 station_ip 5.119.55.210 147260 port 266 147260 unique_id port 147260 remote_ip 10.8.1.174 147262 username barzegar 147262 mac 147262 bytes_out 0 147262 bytes_in 0 147262 station_ip 5.119.55.210 147262 port 266 147262 unique_id port 147262 remote_ip 10.8.1.174 147267 username hassan 147267 mac 147267 bytes_out 0 147267 bytes_in 0 147267 station_ip 5.120.62.219 147267 port 445 147267 unique_id port 147268 username barzegar 147268 mac 147268 bytes_out 0 147268 bytes_in 0 147268 station_ip 5.119.55.210 147268 port 265 147268 unique_id port 147268 remote_ip 10.8.1.174 147272 username kalantary 147272 mac 147272 bytes_out 0 147272 bytes_in 0 147272 station_ip 83.123.10.69 147272 port 266 147272 unique_id port 147272 remote_ip 10.8.1.26 147275 username hashtadani4 147275 mac 147275 bytes_out 0 147275 bytes_in 0 147275 station_ip 83.122.217.69 147275 port 445 147275 unique_id port 147275 remote_ip 10.8.0.182 147276 username hashtadani4 147276 mac 147276 bytes_out 2270 147276 bytes_in 4653 147276 station_ip 83.122.217.69 147276 port 470 147276 unique_id port 147276 remote_ip 10.8.0.182 147296 username hashtadani4 147296 mac 147296 bytes_out 0 147296 bytes_in 0 147296 station_ip 83.122.217.69 147296 port 496 147296 unique_id port 147296 remote_ip 10.8.0.182 147299 username hassan 147299 mac 147299 bytes_out 826146 147299 bytes_in 9145342 147299 station_ip 5.120.44.196 147299 port 495 147299 unique_id port 147299 remote_ip 10.8.0.122 147302 username mehdizare 147302 mac 147302 bytes_out 39556 147302 bytes_in 57632 147302 station_ip 5.119.217.159 147302 port 469 147302 unique_id port 147302 remote_ip 10.8.0.90 147304 username nilufarrajaei 147304 mac 147304 bytes_out 1108007 147304 bytes_in 4803336 147304 station_ip 37.129.62.221 147304 port 470 147304 unique_id port 147304 remote_ip 10.8.0.206 147306 username hashtadani4 147306 mac 147306 bytes_out 2369 147306 bytes_in 4643 147306 station_ip 83.122.217.69 147306 port 482 147306 unique_id port 147306 remote_ip 10.8.0.182 147307 username mosi 147307 mac 147307 bytes_out 0 147307 bytes_in 0 147307 station_ip 37.44.57.146 147307 port 491 147307 unique_id port 147307 remote_ip 10.8.0.138 147310 username hashtadani4 147310 mac 147310 bytes_out 0 147310 bytes_in 0 147310 station_ip 83.122.217.69 147310 port 470 147310 unique_id port 147310 remote_ip 10.8.0.182 147319 username meysam 147319 kill_reason Another user logged on this global unique id 147252 port 497 147252 unique_id port 147252 remote_ip 10.8.0.90 147255 username barzegar 147255 mac 147255 bytes_out 0 147255 bytes_in 0 147255 station_ip 5.119.55.210 147255 port 265 147255 unique_id port 147255 remote_ip 10.8.1.174 147258 username mehdizare 147258 mac 147258 bytes_out 0 147258 bytes_in 0 147258 station_ip 5.119.217.159 147258 port 470 147258 unique_id port 147258 remote_ip 10.8.0.90 147261 username kalantary 147261 mac 147261 bytes_out 0 147261 bytes_in 0 147261 station_ip 83.123.10.69 147261 port 265 147261 unique_id port 147261 remote_ip 10.8.1.26 147264 username mehdizare 147264 mac 147264 bytes_out 19457 147264 bytes_in 23295 147264 station_ip 5.119.217.159 147264 port 469 147264 unique_id port 147264 remote_ip 10.8.0.90 147270 username yaghobi 147270 mac 147270 bytes_out 0 147270 bytes_in 0 147270 station_ip 83.122.114.239 147270 port 445 147270 unique_id port 147270 remote_ip 10.8.0.198 147271 username godarzi 147271 mac 147271 bytes_out 1188546 147271 bytes_in 4631725 147271 station_ip 5.202.5.1 147271 port 491 147271 unique_id port 147271 remote_ip 10.8.0.174 147279 username hashtadani4 147279 mac 147279 bytes_out 0 147279 bytes_in 0 147279 station_ip 83.122.217.69 147279 port 496 147279 unique_id port 147279 remote_ip 10.8.0.182 147280 username kalantary 147280 mac 147280 bytes_out 0 147280 bytes_in 0 147280 station_ip 83.123.10.69 147280 port 265 147280 unique_id port 147280 remote_ip 10.8.1.26 147283 username hashtadani4 147283 mac 147283 bytes_out 0 147283 bytes_in 0 147283 station_ip 83.122.217.69 147283 port 496 147283 unique_id port 147283 remote_ip 10.8.0.182 147285 username nilufarrajaei 147285 mac 147285 bytes_out 260443 147285 bytes_in 1574637 147285 station_ip 37.129.62.221 147285 port 470 147285 unique_id port 147285 remote_ip 10.8.0.206 147286 username hashtadani4 147286 mac 147286 bytes_out 0 147286 bytes_in 0 147286 station_ip 83.122.217.69 147286 port 470 147286 unique_id port 147286 remote_ip 10.8.0.182 147289 username hashtadani4 147289 mac 147289 bytes_out 0 147289 bytes_in 0 147289 station_ip 83.122.217.69 147289 port 497 147289 unique_id port 147289 remote_ip 10.8.0.182 147290 username aminvpn 147290 unique_id port 147290 terminate_cause Lost-Carrier 147290 bytes_out 1912039 147290 bytes_in 68182843 147290 station_ip 31.57.141.210 147290 port 15730955 147290 nas_port_type Virtual 147290 remote_ip 5.5.5.29 147291 username mosi 147291 mac 147291 bytes_out 7851018 147291 bytes_in 43435523 147291 station_ip 151.235.107.13 147291 port 452 147291 unique_id port 147291 remote_ip 10.8.0.138 147292 username barzegar 147292 mac 147292 bytes_out 0 147292 bytes_in 0 147292 station_ip 5.119.55.210 147292 port 496 147292 unique_id port 147292 remote_ip 10.8.0.234 147298 username fezealinaghi 147298 mac 147298 bytes_out 0 147298 bytes_in 0 147298 station_ip 83.123.101.62 147298 port 265 147298 unique_id port 147298 remote_ip 10.8.1.162 147300 username hashtadani4 147300 mac 147300 bytes_out 0 147300 bytes_in 0 147300 station_ip 83.122.217.69 147300 port 482 147300 unique_id port 147300 remote_ip 10.8.0.182 147303 username hashtadani4 147303 mac 147303 bytes_out 2477 147303 bytes_in 4834 147303 station_ip 83.122.217.69 147303 port 469 147303 unique_id port 147303 remote_ip 10.8.0.182 147308 username hashtadani4 147308 mac 147308 bytes_out 0 147308 bytes_in 0 147308 station_ip 83.122.217.69 147265 mac 147265 bytes_out 0 147265 bytes_in 0 147265 station_ip 83.122.97.13 147265 port 491 147265 unique_id port 147265 remote_ip 10.8.0.194 147266 username kalantary 147266 mac 147266 bytes_out 80388 147266 bytes_in 119828 147266 station_ip 83.123.10.69 147266 port 265 147266 unique_id port 147266 remote_ip 10.8.1.26 147269 username yaghobi 147269 mac 147269 bytes_out 1567166 147269 bytes_in 22141918 147269 station_ip 83.122.33.223 147269 port 470 147269 unique_id port 147269 remote_ip 10.8.0.198 147273 username hashtadani4 147273 mac 147273 bytes_out 2429 147273 bytes_in 4706 147273 station_ip 83.122.217.69 147273 port 445 147273 unique_id port 147273 remote_ip 10.8.0.182 147274 username hashtadani4 147274 mac 147274 bytes_out 0 147274 bytes_in 0 147274 station_ip 83.122.217.69 147274 port 266 147274 unique_id port 147274 remote_ip 10.8.1.142 147277 username hashtadani4 147277 mac 147277 bytes_out 0 147277 bytes_in 0 147277 station_ip 83.122.217.69 147277 port 491 147277 unique_id port 147277 remote_ip 10.8.0.182 147278 username barzegar 147278 mac 147278 bytes_out 0 147278 bytes_in 0 147278 station_ip 5.119.55.210 147278 port 491 147278 unique_id port 147278 remote_ip 10.8.0.234 147281 username nilufarrajaei 147281 mac 147281 bytes_out 0 147281 bytes_in 0 147281 station_ip 37.129.62.221 147281 port 470 147281 unique_id port 147281 remote_ip 10.8.0.206 147282 username barzegar 147282 mac 147282 bytes_out 0 147282 bytes_in 0 147282 station_ip 5.119.55.210 147282 port 491 147282 unique_id port 147282 remote_ip 10.8.0.234 147284 username barzegar 147284 mac 147284 bytes_out 0 147284 bytes_in 0 147284 station_ip 5.119.55.210 147284 port 496 147284 unique_id port 147284 remote_ip 10.8.0.234 147287 username nilufarrajaei 147287 mac 147287 bytes_out 0 147287 bytes_in 0 147287 station_ip 37.129.62.221 147287 port 497 147287 unique_id port 147287 remote_ip 10.8.0.206 147288 username rezaei 147288 mac 147288 bytes_out 1059942 147288 bytes_in 11556812 147288 station_ip 5.119.4.59 147288 port 491 147288 unique_id port 147288 remote_ip 10.8.0.230 147293 username hashtadani4 147293 mac 147293 bytes_out 0 147293 bytes_in 0 147293 station_ip 5.202.26.125 147293 port 265 147293 unique_id port 147293 remote_ip 10.8.1.142 147294 username barzegar 147294 mac 147294 bytes_out 0 147294 bytes_in 0 147294 station_ip 5.119.55.210 147294 port 452 147294 unique_id port 147294 remote_ip 10.8.0.234 147295 username hashtadani4 147295 mac 147295 bytes_out 0 147295 bytes_in 0 147295 station_ip 83.122.217.69 147295 port 266 147295 unique_id port 147295 remote_ip 10.8.1.142 147297 username hamidsalari 147297 mac 147297 bytes_out 0 147297 bytes_in 0 147297 station_ip 5.119.54.120 147297 port 482 147297 unique_id port 147301 username hashtadani4 147301 mac 147301 bytes_out 0 147301 bytes_in 0 147301 station_ip 83.122.217.69 147301 port 501 147301 unique_id port 147301 remote_ip 10.8.0.182 147305 username vanila 147305 mac 147305 bytes_out 0 147305 bytes_in 0 147305 station_ip 37.129.228.127 147305 port 452 147305 unique_id port 147305 remote_ip 10.8.0.178 147309 username barzegar 147309 mac 147309 bytes_out 21959 147309 bytes_in 36899 147309 station_ip 5.119.55.210 147309 port 495 147309 unique_id port 147309 remote_ip 10.8.0.234 147311 username vanila 147311 mac 147311 bytes_out 86430 147311 bytes_in 166939 147311 station_ip 37.129.228.127 147308 port 267 147308 unique_id port 147308 remote_ip 10.8.1.142 147315 username barzegar 147315 mac 147315 bytes_out 0 147315 bytes_in 0 147315 station_ip 5.119.55.210 147315 port 267 147315 unique_id port 147315 remote_ip 10.8.1.174 147324 username saeed9658 147324 mac 147324 bytes_out 1695 147324 bytes_in 4639 147324 station_ip 5.119.126.90 147324 port 486 147324 unique_id port 147324 remote_ip 10.8.0.62 147326 username meysam 147326 mac 147326 bytes_out 0 147326 bytes_in 0 147326 station_ip 188.158.50.122 147326 port 452 147326 unique_id port 147327 username hashtadani4 147327 mac 147327 bytes_out 0 147327 bytes_in 0 147327 station_ip 83.122.217.69 147327 port 452 147327 unique_id port 147327 remote_ip 10.8.0.182 147328 username godarzi 147328 kill_reason Another user logged on this global unique id 147328 mac 147328 bytes_out 0 147328 bytes_in 0 147328 station_ip 5.202.5.1 147328 port 445 147328 unique_id port 147328 remote_ip 10.8.0.174 147329 username hashtadani4 147329 mac 147329 bytes_out 26862 147329 bytes_in 266634 147329 station_ip 83.122.217.69 147329 port 452 147329 unique_id port 147329 remote_ip 10.8.0.182 147335 username hashtadani4 147335 mac 147335 bytes_out 0 147335 bytes_in 0 147335 station_ip 83.122.217.69 147335 port 265 147335 unique_id port 147335 remote_ip 10.8.1.142 147339 username mosi 147339 mac 147339 bytes_out 977162 147339 bytes_in 7894979 147339 station_ip 37.44.57.146 147339 port 469 147339 unique_id port 147339 remote_ip 10.8.0.138 147342 username barzegar 147342 mac 147342 bytes_out 0 147342 bytes_in 0 147342 station_ip 5.119.55.210 147342 port 268 147342 unique_id port 147342 remote_ip 10.8.1.174 147347 username hassan 147347 mac 147347 bytes_out 0 147347 bytes_in 0 147347 station_ip 5.120.44.196 147347 port 266 147347 unique_id port 147347 remote_ip 10.8.1.138 147349 username hashtadani4 147349 mac 147349 bytes_out 0 147349 bytes_in 0 147349 station_ip 83.122.217.69 147349 port 266 147349 unique_id port 147349 remote_ip 10.8.1.142 147354 username hamidsalari 147354 mac 147354 bytes_out 180444 147354 bytes_in 395645 147354 station_ip 5.119.54.120 147354 port 497 147354 unique_id port 147354 remote_ip 10.8.0.222 147356 username hashtadani4 147356 kill_reason Maximum check online fails reached 147356 mac 147356 bytes_out 0 147356 bytes_in 0 147356 station_ip 83.122.217.69 147356 port 502 147356 unique_id port 147358 username hashtadani4 147358 mac 147358 bytes_out 0 147358 bytes_in 0 147358 station_ip 83.122.217.69 147358 port 491 147358 unique_id port 147358 remote_ip 10.8.0.182 147360 username nilufarrajaei 147360 kill_reason Another user logged on this global unique id 147360 mac 147360 bytes_out 0 147360 bytes_in 0 147360 station_ip 37.129.62.221 147360 port 269 147360 unique_id port 147360 remote_ip 10.8.1.166 147364 username aminvpn 147364 unique_id port 147364 terminate_cause User-Request 147364 bytes_out 202872 147364 bytes_in 2099832 147364 station_ip 109.125.128.116 147364 port 15730956 147364 nas_port_type Virtual 147364 remote_ip 5.5.5.238 147366 username barzegar 147366 mac 147366 bytes_out 0 147366 bytes_in 0 147366 station_ip 5.119.55.210 147366 port 491 147366 unique_id port 147366 remote_ip 10.8.0.234 147367 username aminvpn 147367 unique_id port 147367 terminate_cause Lost-Carrier 147367 bytes_out 33834 147367 bytes_in 251103 147367 station_ip 109.125.128.116 147367 port 15730957 147367 nas_port_type Virtual 147367 remote_ip 5.5.5.246 147369 username sabaghnezhad 147311 port 469 147311 unique_id port 147311 remote_ip 10.8.0.178 147312 username saeed9658 147312 mac 147312 bytes_out 0 147312 bytes_in 0 147312 station_ip 5.119.126.90 147312 port 452 147312 unique_id port 147312 remote_ip 10.8.0.62 147313 username hashtadani4 147313 mac 147313 bytes_out 0 147313 bytes_in 0 147313 station_ip 83.122.217.69 147313 port 470 147313 unique_id port 147313 remote_ip 10.8.0.182 147314 username yahodi 147314 mac 147314 bytes_out 3000343 147314 bytes_in 12491083 147314 station_ip 113.203.27.186 147314 port 486 147314 unique_id port 147314 remote_ip 10.8.0.202 147316 username mehdizare 147316 mac 147316 bytes_out 0 147316 bytes_in 0 147316 station_ip 5.119.217.159 147316 port 265 147316 unique_id port 147316 remote_ip 10.8.1.42 147317 username hashtadani4 147317 mac 147317 bytes_out 0 147317 bytes_in 0 147317 station_ip 83.122.217.69 147317 port 482 147317 unique_id port 147317 remote_ip 10.8.0.182 147318 username hashtadani4 147318 mac 147318 bytes_out 0 147318 bytes_in 0 147318 station_ip 83.122.217.69 147318 port 486 147318 unique_id port 147318 remote_ip 10.8.0.182 147320 username saeed9658 147320 mac 147320 bytes_out 0 147320 bytes_in 0 147320 station_ip 5.119.126.90 147320 port 265 147320 unique_id port 147320 remote_ip 10.8.1.210 147321 username hashtadani4 147321 mac 147321 bytes_out 0 147321 bytes_in 0 147321 station_ip 83.122.217.69 147321 port 486 147321 unique_id port 147321 remote_ip 10.8.0.182 147322 username meysam 147322 kill_reason Another user logged on this global unique id 147322 mac 147322 bytes_out 0 147322 bytes_in 0 147322 station_ip 188.158.50.122 147322 port 452 147322 unique_id port 147323 username hashtadani4 147323 mac 147323 bytes_out 0 147323 bytes_in 0 147323 station_ip 83.122.217.69 147323 port 491 147323 unique_id port 147323 remote_ip 10.8.0.182 147331 username barzegar 147331 mac 147331 bytes_out 0 147331 bytes_in 0 147331 station_ip 5.119.55.210 147331 port 265 147331 unique_id port 147331 remote_ip 10.8.1.174 147333 username hashtadani4 147333 mac 147333 bytes_out 0 147333 bytes_in 0 147333 station_ip 83.122.217.69 147333 port 267 147333 unique_id port 147333 remote_ip 10.8.1.142 147334 username barzegar 147334 mac 147334 bytes_out 0 147334 bytes_in 0 147334 station_ip 5.119.55.210 147334 port 486 147334 unique_id port 147334 remote_ip 10.8.0.234 147337 username hashtadani4 147337 kill_reason Maximum check online fails reached 147337 mac 147337 bytes_out 0 147337 bytes_in 0 147337 station_ip 83.122.217.69 147337 port 486 147337 unique_id port 147338 username barzegar 147338 mac 147338 bytes_out 0 147338 bytes_in 0 147338 station_ip 5.119.55.210 147338 port 495 147338 unique_id port 147338 remote_ip 10.8.0.234 147340 username hashtadani4 147340 mac 147340 bytes_out 0 147340 bytes_in 0 147340 station_ip 83.122.217.69 147340 port 268 147340 unique_id port 147340 remote_ip 10.8.1.142 147343 username hashtadani4 147343 kill_reason Maximum check online fails reached 147343 mac 147343 bytes_out 0 147343 bytes_in 0 147343 station_ip 83.122.217.69 147343 port 495 147343 unique_id port 147345 username vanila 147345 mac 147345 bytes_out 840430 147345 bytes_in 3864071 147345 station_ip 37.129.228.127 147345 port 470 147345 unique_id port 147345 remote_ip 10.8.0.178 147346 username barzegar 147346 mac 147346 bytes_out 0 147346 bytes_in 0 147346 station_ip 5.119.55.210 147346 port 265 147319 mac 147319 bytes_out 0 147319 bytes_in 0 147319 station_ip 188.158.50.122 147319 port 452 147319 unique_id port 147319 remote_ip 10.8.0.110 147325 username barzegar 147325 mac 147325 bytes_out 0 147325 bytes_in 0 147325 station_ip 5.119.55.210 147325 port 265 147325 unique_id port 147325 remote_ip 10.8.1.174 147330 username saeed9658 147330 mac 147330 bytes_out 0 147330 bytes_in 0 147330 station_ip 5.119.149.246 147330 port 265 147330 unique_id port 147330 remote_ip 10.8.1.210 147332 username saeed9658 147332 mac 147332 bytes_out 0 147332 bytes_in 0 147332 station_ip 5.119.149.246 147332 port 265 147332 unique_id port 147332 remote_ip 10.8.1.210 147336 username hashtadani4 147336 kill_reason Maximum check online fails reached 147336 mac 147336 bytes_out 0 147336 bytes_in 0 147336 station_ip 83.122.217.69 147336 port 452 147336 unique_id port 147341 username hashtadani4 147341 kill_reason Maximum check online fails reached 147341 mac 147341 bytes_out 0 147341 bytes_in 0 147341 station_ip 83.122.217.69 147341 port 469 147341 unique_id port 147344 username saeed9658 147344 mac 147344 bytes_out 3791670 147344 bytes_in 4897368 147344 station_ip 5.120.72.136 147344 port 265 147344 unique_id port 147344 remote_ip 10.8.1.210 147348 username hashtadani4 147348 mac 147348 bytes_out 0 147348 bytes_in 0 147348 station_ip 83.122.217.69 147348 port 268 147348 unique_id port 147348 remote_ip 10.8.1.142 147351 username fezealinaghi 147351 kill_reason Another user logged on this global unique id 147351 mac 147351 bytes_out 0 147351 bytes_in 0 147351 station_ip 83.123.81.78 147351 port 267 147351 unique_id port 147351 remote_ip 10.8.1.162 147352 username moradi 147352 kill_reason Another user logged on this global unique id 147352 mac 147352 bytes_out 0 147352 bytes_in 0 147352 station_ip 46.225.211.159 147352 port 496 147352 unique_id port 147352 remote_ip 10.8.0.226 147353 username hashtadani4 147353 mac 147353 bytes_out 0 147353 bytes_in 0 147353 station_ip 83.122.217.69 147353 port 266 147353 unique_id port 147353 remote_ip 10.8.1.142 147357 username hashtadani4 147357 mac 147357 bytes_out 0 147357 bytes_in 0 147357 station_ip 83.122.217.69 147357 port 266 147357 unique_id port 147357 remote_ip 10.8.1.142 147361 username vanila 147361 mac 147361 bytes_out 225517 147361 bytes_in 589572 147361 station_ip 37.129.228.127 147361 port 505 147361 unique_id port 147361 remote_ip 10.8.0.178 147368 username hashtadani4 147368 mac 147368 bytes_out 0 147368 bytes_in 0 147368 station_ip 83.122.217.69 147368 port 266 147368 unique_id port 147368 remote_ip 10.8.1.142 147372 username hashtadani4 147372 mac 147372 bytes_out 0 147372 bytes_in 0 147372 station_ip 83.122.217.69 147372 port 505 147372 unique_id port 147372 remote_ip 10.8.0.182 147373 username sabaghnezhad 147373 mac 147373 bytes_out 57273 147373 bytes_in 94143 147373 station_ip 113.203.100.203 147373 port 508 147373 unique_id port 147373 remote_ip 10.8.0.186 147374 username hashtadani4 147374 mac 147374 bytes_out 0 147374 bytes_in 0 147374 station_ip 83.122.217.69 147374 port 482 147374 unique_id port 147374 remote_ip 10.8.0.182 147376 username alipour 147376 mac 147376 bytes_out 306422 147376 bytes_in 1505648 147376 station_ip 37.129.171.226 147376 port 503 147376 unique_id port 147376 remote_ip 10.8.0.102 147379 username nilufarrajaei 147379 kill_reason Another user logged on this global unique id 147379 mac 147379 bytes_out 0 147379 bytes_in 0 147346 unique_id port 147346 remote_ip 10.8.1.174 147350 username hashtadani4 147350 kill_reason Maximum check online fails reached 147350 mac 147350 bytes_out 0 147350 bytes_in 0 147350 station_ip 83.122.217.69 147350 port 470 147350 unique_id port 147355 username rezaei 147355 mac 147355 bytes_out 1081495 147355 bytes_in 8483916 147355 station_ip 5.119.4.59 147355 port 491 147355 unique_id port 147355 remote_ip 10.8.0.230 147359 username barzegar 147359 mac 147359 bytes_out 0 147359 bytes_in 0 147359 station_ip 5.119.55.210 147359 port 266 147359 unique_id port 147359 remote_ip 10.8.1.174 147362 username barzegar 147362 mac 147362 bytes_out 0 147362 bytes_in 0 147362 station_ip 5.119.55.210 147362 port 506 147362 unique_id port 147362 remote_ip 10.8.0.234 147363 username barzegar 147363 mac 147363 bytes_out 0 147363 bytes_in 0 147363 station_ip 5.119.55.210 147363 port 505 147363 unique_id port 147363 remote_ip 10.8.0.234 147365 username hashtadani4 147365 mac 147365 bytes_out 3171 147365 bytes_in 5766 147365 station_ip 83.122.217.69 147365 port 491 147365 unique_id port 147365 remote_ip 10.8.0.182 147370 username mehdizare 147370 mac 147370 bytes_out 0 147370 bytes_in 0 147370 station_ip 5.120.140.28 147370 port 482 147370 unique_id port 147370 remote_ip 10.8.0.90 147375 username hashtadani4 147375 mac 147375 bytes_out 0 147375 bytes_in 0 147375 station_ip 83.122.217.69 147375 port 505 147375 unique_id port 147375 remote_ip 10.8.0.182 147378 username hashtadani4 147378 mac 147378 bytes_out 0 147378 bytes_in 0 147378 station_ip 83.122.217.69 147378 port 503 147378 unique_id port 147378 remote_ip 10.8.0.182 147381 username hashtadani4 147381 mac 147381 bytes_out 0 147381 bytes_in 0 147381 station_ip 83.122.217.69 147381 port 503 147381 unique_id port 147381 remote_ip 10.8.0.182 147383 username hashtadani4 147383 mac 147383 bytes_out 0 147383 bytes_in 0 147383 station_ip 83.122.217.69 147383 port 505 147383 unique_id port 147383 remote_ip 10.8.0.182 147390 username hashtadani4 147390 mac 147390 bytes_out 0 147390 bytes_in 0 147390 station_ip 83.122.217.69 147390 port 482 147390 unique_id port 147390 remote_ip 10.8.0.182 147391 username barzegar 147391 mac 147391 bytes_out 0 147391 bytes_in 0 147391 station_ip 5.119.55.210 147391 port 266 147391 unique_id port 147391 remote_ip 10.8.1.174 147394 username hashtadani4 147394 kill_reason Maximum check online fails reached 147394 mac 147394 bytes_out 0 147394 bytes_in 0 147394 station_ip 83.122.217.69 147394 port 507 147394 unique_id port 147396 username mehdizare 147396 mac 147396 bytes_out 41582 147396 bytes_in 41497 147396 station_ip 5.120.140.28 147396 port 506 147396 unique_id port 147396 remote_ip 10.8.0.90 147398 username sabaghnezhad 147398 mac 147398 bytes_out 0 147398 bytes_in 0 147398 station_ip 83.122.10.251 147398 port 268 147398 unique_id port 147398 remote_ip 10.8.1.130 147402 username alipour 147402 mac 147402 bytes_out 0 147402 bytes_in 0 147402 station_ip 37.129.171.226 147402 port 504 147402 unique_id port 147402 remote_ip 10.8.0.102 147406 username godarzi 147406 mac 147406 bytes_out 0 147406 bytes_in 0 147406 station_ip 5.202.5.1 147406 port 445 147406 unique_id port 147411 username alipour 147411 mac 147411 bytes_out 39473 147411 bytes_in 54196 147411 station_ip 37.129.171.226 147411 port 445 147411 unique_id port 147411 remote_ip 10.8.0.102 147369 mac 147369 bytes_out 0 147369 bytes_in 0 147369 station_ip 113.203.100.203 147369 port 506 147369 unique_id port 147369 remote_ip 10.8.0.186 147371 username vanila 147371 mac 147371 bytes_out 67354 147371 bytes_in 181509 147371 station_ip 37.129.228.127 147371 port 507 147371 unique_id port 147371 remote_ip 10.8.0.178 147377 username hashtadani4 147377 mac 147377 bytes_out 0 147377 bytes_in 0 147377 station_ip 83.122.217.69 147377 port 503 147377 unique_id port 147377 remote_ip 10.8.0.182 147380 username hashtadani4 147380 mac 147380 bytes_out 0 147380 bytes_in 0 147380 station_ip 83.122.217.69 147380 port 503 147380 unique_id port 147380 remote_ip 10.8.0.182 147382 username khalili 147382 kill_reason Another user logged on this global unique id 147382 mac 147382 bytes_out 0 147382 bytes_in 0 147382 station_ip 5.119.173.8 147382 port 489 147382 unique_id port 147385 username alipour 147385 mac 147385 bytes_out 218037 147385 bytes_in 3335331 147385 station_ip 37.129.171.226 147385 port 503 147385 unique_id port 147385 remote_ip 10.8.0.102 147386 username barzegar 147386 mac 147386 bytes_out 26966 147386 bytes_in 61491 147386 station_ip 5.119.55.210 147386 port 482 147386 unique_id port 147386 remote_ip 10.8.0.234 147389 username vanila 147389 mac 147389 bytes_out 79927 147389 bytes_in 473230 147389 station_ip 37.129.228.127 147389 port 503 147389 unique_id port 147389 remote_ip 10.8.0.178 147392 username mosi 147392 mac 147392 bytes_out 279668 147392 bytes_in 397091 147392 station_ip 37.44.57.146 147392 port 501 147392 unique_id port 147392 remote_ip 10.8.0.138 147397 username hashtadani4 147397 mac 147397 bytes_out 0 147397 bytes_in 0 147397 station_ip 83.122.217.69 147397 port 266 147397 unique_id port 147397 remote_ip 10.8.1.142 147400 username hashtadani4 147400 kill_reason Maximum check online fails reached 147400 mac 147400 bytes_out 0 147400 bytes_in 0 147400 station_ip 83.122.217.69 147400 port 508 147400 unique_id port 147403 username vanila 147403 mac 147403 bytes_out 181169 147403 bytes_in 496694 147403 station_ip 37.129.228.127 147403 port 505 147403 unique_id port 147403 remote_ip 10.8.0.178 147407 username forozandeh1 147407 mac 147407 bytes_out 1779694 147407 bytes_in 8403377 147407 station_ip 83.122.78.59 147407 port 497 147407 unique_id port 147407 remote_ip 10.8.0.130 147410 username mosi 147410 mac 147410 bytes_out 167132 147410 bytes_in 190393 147410 station_ip 37.44.57.146 147410 port 501 147410 unique_id port 147410 remote_ip 10.8.0.138 147416 username hosseine 147416 kill_reason Another user logged on this global unique id 147416 mac 147416 bytes_out 0 147416 bytes_in 0 147416 station_ip 37.129.45.162 147416 port 491 147416 unique_id port 147416 remote_ip 10.8.0.238 147418 username fezealinaghi 147418 mac 147418 bytes_out 0 147418 bytes_in 0 147418 station_ip 83.123.81.78 147418 port 266 147418 unique_id port 147418 remote_ip 10.8.1.162 147425 username ahmadi 147425 kill_reason Relative expiration date has reached 147425 unique_id port 147425 bytes_out 0 147425 bytes_in 0 147425 station_ip 83.122.50.212 147425 port 15730960 147425 nas_port_type Virtual 147430 username hosseine 147430 kill_reason Another user logged on this global unique id 147430 mac 147430 bytes_out 0 147430 bytes_in 0 147430 station_ip 37.129.45.162 147430 port 491 147430 unique_id port 147431 username mehdizare 147431 mac 147431 bytes_out 0 147431 bytes_in 0 147431 station_ip 5.120.140.28 147431 port 506 147431 unique_id port 147379 station_ip 37.129.62.221 147379 port 269 147379 unique_id port 147384 username hamidsalari 147384 mac 147384 bytes_out 100528 147384 bytes_in 217880 147384 station_ip 5.119.76.57 147384 port 504 147384 unique_id port 147384 remote_ip 10.8.0.222 147387 username hashtadani4 147387 mac 147387 bytes_out 0 147387 bytes_in 0 147387 station_ip 83.122.217.69 147387 port 482 147387 unique_id port 147387 remote_ip 10.8.0.182 147388 username hashtadani4 147388 mac 147388 bytes_out 0 147388 bytes_in 0 147388 station_ip 83.122.217.69 147388 port 482 147388 unique_id port 147388 remote_ip 10.8.0.182 147393 username meysam 147393 mac 147393 bytes_out 585642 147393 bytes_in 8198937 147393 station_ip 188.158.50.122 147393 port 505 147393 unique_id port 147393 remote_ip 10.8.0.110 147395 username hashtadani4 147395 mac 147395 bytes_out 0 147395 bytes_in 0 147395 station_ip 83.122.217.69 147395 port 266 147395 unique_id port 147395 remote_ip 10.8.1.142 147399 username hashtadani4 147399 mac 147399 bytes_out 0 147399 bytes_in 0 147399 station_ip 83.122.217.69 147399 port 266 147399 unique_id port 147399 remote_ip 10.8.1.142 147401 username barzegar 147401 mac 147401 bytes_out 0 147401 bytes_in 0 147401 station_ip 5.119.55.210 147401 port 266 147401 unique_id port 147401 remote_ip 10.8.1.174 147404 username hashtadani4 147404 mac 147404 bytes_out 0 147404 bytes_in 0 147404 station_ip 83.122.217.69 147404 port 266 147404 unique_id port 147404 remote_ip 10.8.1.142 147405 username hashtadani4 147405 mac 147405 bytes_out 0 147405 bytes_in 0 147405 station_ip 83.122.217.69 147405 port 504 147405 unique_id port 147405 remote_ip 10.8.0.182 147408 username nilufarrajaei 147408 kill_reason Another user logged on this global unique id 147408 mac 147408 bytes_out 0 147408 bytes_in 0 147408 station_ip 37.129.62.221 147408 port 269 147408 unique_id port 147409 username hashtadani4 147409 kill_reason Maximum check online fails reached 147409 mac 147409 bytes_out 0 147409 bytes_in 0 147409 station_ip 83.122.217.69 147409 port 497 147409 unique_id port 147415 username sedighe 147415 mac 147415 bytes_out 130654 147415 bytes_in 187064 147415 station_ip 37.129.37.245 147415 port 503 147415 unique_id port 147415 remote_ip 10.8.0.146 147417 username barzegar 147417 mac 147417 bytes_out 0 147417 bytes_in 0 147417 station_ip 5.119.55.210 147417 port 505 147417 unique_id port 147417 remote_ip 10.8.0.234 147419 username hashtadani4 147419 mac 147419 bytes_out 0 147419 bytes_in 0 147419 station_ip 83.122.217.69 147419 port 503 147419 unique_id port 147419 remote_ip 10.8.0.182 147421 username moradi 147421 kill_reason Another user logged on this global unique id 147421 mac 147421 bytes_out 0 147421 bytes_in 0 147421 station_ip 46.225.211.159 147421 port 496 147421 unique_id port 147424 username meysam 147424 mac 147424 bytes_out 2042513 147424 bytes_in 33062845 147424 station_ip 188.158.50.122 147424 port 503 147424 unique_id port 147424 remote_ip 10.8.0.110 147426 username hashtadani4 147426 kill_reason Maximum check online fails reached 147426 mac 147426 bytes_out 0 147426 bytes_in 0 147426 station_ip 83.122.217.69 147426 port 501 147426 unique_id port 147427 username godarzi 147427 mac 147427 bytes_out 71171 147427 bytes_in 107855 147427 station_ip 5.119.113.255 147427 port 505 147427 unique_id port 147427 remote_ip 10.8.0.174 147429 username kalantary 147429 mac 147429 bytes_out 0 147429 bytes_in 0 147412 username fezealinaghi 147412 mac 147412 bytes_out 0 147412 bytes_in 0 147412 station_ip 83.123.81.78 147412 port 267 147412 unique_id port 147413 username aminvpn 147413 unique_id port 147413 terminate_cause Lost-Carrier 147413 bytes_out 3135672 147413 bytes_in 9714060 147413 station_ip 5.120.36.63 147413 port 15730958 147413 nas_port_type Virtual 147413 remote_ip 5.5.5.222 147414 username hashtadani4 147414 mac 147414 bytes_out 0 147414 bytes_in 0 147414 station_ip 83.122.217.69 147414 port 267 147414 unique_id port 147414 remote_ip 10.8.1.142 147420 username sedighe 147420 mac 147420 bytes_out 24478 147420 bytes_in 28418 147420 station_ip 37.129.37.245 147420 port 501 147420 unique_id port 147420 remote_ip 10.8.0.146 147422 username hosseine 147422 kill_reason Another user logged on this global unique id 147422 mac 147422 bytes_out 0 147422 bytes_in 0 147422 station_ip 37.129.45.162 147422 port 491 147422 unique_id port 147423 username barzegar 147423 mac 147423 bytes_out 5435 147423 bytes_in 14652 147423 station_ip 5.119.55.210 147423 port 501 147423 unique_id port 147423 remote_ip 10.8.0.234 147428 username hashtadani4 147428 kill_reason Maximum check online fails reached 147428 mac 147428 bytes_out 0 147428 bytes_in 0 147428 station_ip 83.122.217.69 147428 port 509 147428 unique_id port 147434 username hashtadani4 147434 mac 147434 bytes_out 2086 147434 bytes_in 4803 147434 station_ip 83.122.217.69 147434 port 505 147434 unique_id port 147434 remote_ip 10.8.0.182 147436 username hashtadani4 147436 mac 147436 bytes_out 0 147436 bytes_in 0 147436 station_ip 83.122.217.69 147436 port 506 147436 unique_id port 147436 remote_ip 10.8.0.182 147438 username hashtadani4 147438 mac 147438 bytes_out 0 147438 bytes_in 0 147438 station_ip 83.122.217.69 147438 port 506 147438 unique_id port 147438 remote_ip 10.8.0.182 147440 username mehdizare 147440 mac 147440 bytes_out 13594 147440 bytes_in 16955 147440 station_ip 5.120.140.28 147440 port 503 147440 unique_id port 147440 remote_ip 10.8.0.90 147447 username hashtadani4 147447 mac 147447 bytes_out 0 147447 bytes_in 0 147447 station_ip 83.122.217.69 147447 port 503 147447 unique_id port 147447 remote_ip 10.8.0.182 147448 username hashtadani4 147448 mac 147448 bytes_out 0 147448 bytes_in 0 147448 station_ip 83.122.217.69 147448 port 503 147448 unique_id port 147448 remote_ip 10.8.0.182 147450 username fezealinaghi 147450 mac 147450 bytes_out 0 147450 bytes_in 0 147450 station_ip 83.123.81.78 147450 port 266 147450 unique_id port 147450 remote_ip 10.8.1.162 147454 username alipour 147454 mac 147454 bytes_out 175523 147454 bytes_in 220891 147454 station_ip 37.129.171.226 147454 port 445 147454 unique_id port 147454 remote_ip 10.8.0.102 147455 username mostafa_es78 147455 unique_id port 147455 terminate_cause User-Request 147455 bytes_out 258 147455 bytes_in 172 147455 station_ip 5.125.51.14 147455 port 15730962 147455 nas_port_type Virtual 147455 remote_ip 5.5.5.254 147456 username hashtadani4 147456 mac 147456 bytes_out 0 147456 bytes_in 0 147456 station_ip 83.122.217.69 147456 port 512 147456 unique_id port 147456 remote_ip 10.8.0.182 147458 username kalantary 147458 mac 147458 bytes_out 476068 147458 bytes_in 1705249 147458 station_ip 83.122.182.82 147458 port 503 147458 unique_id port 147458 remote_ip 10.8.0.98 147460 username meysam 147460 mac 147460 bytes_out 2414176 147460 bytes_in 39279502 147460 station_ip 188.158.50.122 147460 port 506 147429 station_ip 83.123.92.37 147429 port 266 147429 unique_id port 147429 remote_ip 10.8.1.26 147432 username fezealinaghi 147432 mac 147432 bytes_out 0 147432 bytes_in 0 147432 station_ip 83.123.81.78 147432 port 267 147432 unique_id port 147432 remote_ip 10.8.1.162 147444 username hashtadani4 147444 mac 147444 bytes_out 0 147444 bytes_in 0 147444 station_ip 83.122.217.69 147444 port 503 147444 unique_id port 147444 remote_ip 10.8.0.182 147445 username hashtadani4 147445 mac 147445 bytes_out 0 147445 bytes_in 0 147445 station_ip 83.122.217.69 147445 port 503 147445 unique_id port 147445 remote_ip 10.8.0.182 147446 username hashtadani4 147446 mac 147446 bytes_out 0 147446 bytes_in 0 147446 station_ip 83.122.217.69 147446 port 503 147446 unique_id port 147446 remote_ip 10.8.0.182 147449 username hashtadani4 147449 mac 147449 bytes_out 0 147449 bytes_in 0 147449 station_ip 83.122.217.69 147449 port 503 147449 unique_id port 147449 remote_ip 10.8.0.182 147453 username nilufarrajaei 147453 mac 147453 bytes_out 1363973 147453 bytes_in 19496661 147453 station_ip 37.129.62.221 147453 port 505 147453 unique_id port 147453 remote_ip 10.8.0.206 147457 username barzegar 147457 mac 147457 bytes_out 0 147457 bytes_in 0 147457 station_ip 5.119.55.210 147457 port 505 147457 unique_id port 147457 remote_ip 10.8.0.234 147459 username mehdizare 147459 mac 147459 bytes_out 0 147459 bytes_in 0 147459 station_ip 5.120.140.28 147459 port 510 147459 unique_id port 147459 remote_ip 10.8.0.90 147463 username hashtadani4 147463 mac 147463 bytes_out 0 147463 bytes_in 0 147463 station_ip 83.122.217.69 147463 port 505 147463 unique_id port 147463 remote_ip 10.8.0.182 147468 username hashtadani4 147468 mac 147468 bytes_out 0 147468 bytes_in 0 147468 station_ip 83.122.217.69 147468 port 492 147468 unique_id port 147468 remote_ip 10.8.0.182 147471 username aminvpn 147471 mac 147471 bytes_out 0 147471 bytes_in 0 147471 station_ip 83.123.199.186 147471 port 492 147471 unique_id port 147471 remote_ip 10.8.0.14 147472 username aminvpn 147472 mac 147472 bytes_out 0 147472 bytes_in 0 147472 station_ip 83.123.150.235 147472 port 506 147472 unique_id port 147472 remote_ip 10.8.0.14 147474 username hashtadani4 147474 mac 147474 bytes_out 0 147474 bytes_in 0 147474 station_ip 83.122.217.69 147474 port 268 147474 unique_id port 147474 remote_ip 10.8.1.142 147475 username aminvpn 147475 mac 147475 bytes_out 0 147475 bytes_in 0 147475 station_ip 83.123.199.186 147475 port 492 147475 unique_id port 147475 remote_ip 10.8.0.14 147477 username barzegar 147477 mac 147477 bytes_out 0 147477 bytes_in 0 147477 station_ip 5.119.55.210 147477 port 492 147477 unique_id port 147477 remote_ip 10.8.0.234 147478 username aminvpn 147478 mac 147478 bytes_out 0 147478 bytes_in 0 147478 station_ip 83.123.150.235 147478 port 505 147478 unique_id port 147478 remote_ip 10.8.0.14 147479 username hashtadani4 147479 mac 147479 bytes_out 0 147479 bytes_in 0 147479 station_ip 83.122.217.69 147479 port 505 147479 unique_id port 147479 remote_ip 10.8.0.182 147481 username mostafa_es78 147481 unique_id port 147481 terminate_cause Lost-Carrier 147481 bytes_out 97072 147481 bytes_in 2909072 147481 station_ip 5.125.51.14 147481 port 15730963 147481 nas_port_type Virtual 147481 remote_ip 5.5.5.254 147485 username vanila 147485 mac 147485 bytes_out 76717 147485 bytes_in 139918 147485 station_ip 37.129.134.147 147431 remote_ip 10.8.0.90 147433 username hashtadani4 147433 mac 147433 bytes_out 0 147433 bytes_in 0 147433 station_ip 83.122.217.69 147433 port 503 147433 unique_id port 147433 remote_ip 10.8.0.182 147435 username nilufarrajaei 147435 mac 147435 bytes_out 0 147435 bytes_in 0 147435 station_ip 37.129.62.221 147435 port 269 147435 unique_id port 147437 username hashtadani4 147437 mac 147437 bytes_out 0 147437 bytes_in 0 147437 station_ip 83.122.217.69 147437 port 266 147437 unique_id port 147437 remote_ip 10.8.1.142 147439 username hashtadani4 147439 mac 147439 bytes_out 0 147439 bytes_in 0 147439 station_ip 83.122.217.69 147439 port 510 147439 unique_id port 147439 remote_ip 10.8.0.182 147441 username barzegar 147441 mac 147441 bytes_out 0 147441 bytes_in 0 147441 station_ip 5.119.55.210 147441 port 503 147441 unique_id port 147441 remote_ip 10.8.0.234 147442 username hashtadani4 147442 mac 147442 bytes_out 0 147442 bytes_in 0 147442 station_ip 83.122.217.69 147442 port 503 147442 unique_id port 147442 remote_ip 10.8.0.182 147443 username mehdizare 147443 mac 147443 bytes_out 13650 147443 bytes_in 25976 147443 station_ip 5.120.140.28 147443 port 506 147443 unique_id port 147443 remote_ip 10.8.0.90 147451 username barzegar 147451 mac 147451 bytes_out 0 147451 bytes_in 0 147451 station_ip 5.119.55.210 147451 port 511 147451 unique_id port 147451 remote_ip 10.8.0.234 147452 username hashtadani4 147452 mac 147452 bytes_out 7296 147452 bytes_in 20439 147452 station_ip 83.122.217.69 147452 port 503 147452 unique_id port 147452 remote_ip 10.8.0.182 147461 username aminvpn 147461 mac 147461 bytes_out 2295757 147461 bytes_in 27213833 147461 station_ip 83.123.199.186 147461 port 492 147461 unique_id port 147461 remote_ip 10.8.0.14 147462 username aminvpn 147462 mac 147462 bytes_out 0 147462 bytes_in 0 147462 station_ip 83.123.150.235 147462 port 506 147462 unique_id port 147462 remote_ip 10.8.0.14 147464 username aminvpn 147464 mac 147464 bytes_out 0 147464 bytes_in 0 147464 station_ip 83.123.199.186 147464 port 492 147464 unique_id port 147464 remote_ip 10.8.0.14 147465 username aminvpn 147465 mac 147465 bytes_out 0 147465 bytes_in 0 147465 station_ip 83.123.150.235 147465 port 505 147465 unique_id port 147465 remote_ip 10.8.0.14 147469 username aminvpn 147469 mac 147469 bytes_out 0 147469 bytes_in 0 147469 station_ip 83.123.150.235 147469 port 505 147469 unique_id port 147469 remote_ip 10.8.0.14 147476 username hashtadani4 147476 mac 147476 bytes_out 0 147476 bytes_in 0 147476 station_ip 83.122.217.69 147476 port 268 147476 unique_id port 147476 remote_ip 10.8.1.142 147480 username rezaei 147480 mac 147480 bytes_out 3642092 147480 bytes_in 40984946 147480 station_ip 5.119.4.59 147480 port 482 147480 unique_id port 147480 remote_ip 10.8.0.230 147482 username forozandeh1 147482 mac 147482 bytes_out 0 147482 bytes_in 0 147482 station_ip 83.122.231.181 147482 port 511 147482 unique_id port 147482 remote_ip 10.8.0.130 147484 username hashtadani4 147484 mac 147484 bytes_out 0 147484 bytes_in 0 147484 station_ip 83.122.217.69 147484 port 492 147484 unique_id port 147484 remote_ip 10.8.0.182 147486 username aminvpn 147486 mac 147486 bytes_out 7912 147486 bytes_in 15034 147486 station_ip 83.123.150.235 147486 port 482 147486 unique_id port 147486 remote_ip 10.8.0.14 147487 username hashtadani4 147487 mac 147460 unique_id port 147460 remote_ip 10.8.0.110 147466 username hashtadani4 147466 mac 147466 bytes_out 0 147466 bytes_in 0 147466 station_ip 83.122.217.69 147466 port 505 147466 unique_id port 147466 remote_ip 10.8.0.182 147467 username aminvpn 147467 mac 147467 bytes_out 0 147467 bytes_in 0 147467 station_ip 83.123.199.186 147467 port 492 147467 unique_id port 147467 remote_ip 10.8.0.14 147470 username hashtadani4 147470 mac 147470 bytes_out 0 147470 bytes_in 0 147470 station_ip 83.122.217.69 147470 port 505 147470 unique_id port 147470 remote_ip 10.8.0.182 147473 username hashtadani4 147473 mac 147473 bytes_out 0 147473 bytes_in 0 147473 station_ip 83.122.217.69 147473 port 505 147473 unique_id port 147473 remote_ip 10.8.0.182 147483 username aminvpn 147483 mac 147483 bytes_out 8220 147483 bytes_in 20976 147483 station_ip 83.123.199.186 147483 port 492 147483 unique_id port 147483 remote_ip 10.8.0.14 147488 username aminvpn 147488 mac 147488 bytes_out 0 147488 bytes_in 0 147488 station_ip 83.123.199.186 147488 port 492 147488 unique_id port 147488 remote_ip 10.8.0.14 147494 username hosseine 147494 kill_reason Another user logged on this global unique id 147494 mac 147494 bytes_out 0 147494 bytes_in 0 147494 station_ip 37.129.45.162 147494 port 491 147494 unique_id port 147495 username alipour 147495 mac 147495 bytes_out 0 147495 bytes_in 0 147495 station_ip 37.129.171.226 147495 port 267 147495 unique_id port 147495 remote_ip 10.8.1.50 147496 username hashtadani4 147496 mac 147496 bytes_out 339824 147496 bytes_in 2076390 147496 station_ip 83.122.217.69 147496 port 482 147496 unique_id port 147496 remote_ip 10.8.0.182 147499 username aminvpn 147499 mac 147499 bytes_out 30384 147499 bytes_in 49053 147499 station_ip 83.123.199.186 147499 port 506 147499 unique_id port 147499 remote_ip 10.8.0.14 147500 username malekpoir 147500 kill_reason Another user logged on this global unique id 147500 mac 147500 bytes_out 0 147500 bytes_in 0 147500 station_ip 5.120.180.209 147500 port 263 147500 unique_id port 147501 username aminvpn 147501 mac 147501 bytes_out 0 147501 bytes_in 0 147501 station_ip 83.123.150.235 147501 port 482 147501 unique_id port 147501 remote_ip 10.8.0.14 147502 username hashtadani4 147502 mac 147502 bytes_out 0 147502 bytes_in 0 147502 station_ip 83.122.217.69 147502 port 510 147502 unique_id port 147502 remote_ip 10.8.0.182 147503 username aminvpn 147503 mac 147503 bytes_out 7194 147503 bytes_in 15697 147503 station_ip 83.123.199.186 147503 port 505 147503 unique_id port 147503 remote_ip 10.8.0.14 147505 username meysam 147505 mac 147505 bytes_out 1585503 147505 bytes_in 26019392 147505 station_ip 188.158.50.122 147505 port 482 147505 unique_id port 147505 remote_ip 10.8.0.110 147507 username aminvpn 147507 mac 147507 bytes_out 0 147507 bytes_in 0 147507 station_ip 83.123.199.186 147507 port 482 147507 unique_id port 147507 remote_ip 10.8.0.14 147508 username hashtadani4 147508 kill_reason Maximum check online fails reached 147508 mac 147508 bytes_out 0 147508 bytes_in 0 147508 station_ip 83.122.217.69 147508 port 482 147508 unique_id port 147517 username hashtadani4 147517 kill_reason Maximum check online fails reached 147517 mac 147517 bytes_out 0 147517 bytes_in 0 147517 station_ip 83.122.217.69 147517 port 510 147517 unique_id port 147518 username mehdizare 147518 mac 147518 bytes_out 84324 147518 bytes_in 105137 147518 station_ip 5.120.140.28 147518 port 503 147485 port 505 147485 unique_id port 147485 remote_ip 10.8.0.178 147490 username hashtadani4 147490 mac 147490 bytes_out 0 147490 bytes_in 0 147490 station_ip 83.122.217.69 147490 port 492 147490 unique_id port 147490 remote_ip 10.8.0.182 147493 username barzegar 147493 mac 147493 bytes_out 13823 147493 bytes_in 44395 147493 station_ip 5.119.55.210 147493 port 505 147493 unique_id port 147493 remote_ip 10.8.0.234 147497 username barzegar 147497 mac 147497 bytes_out 0 147497 bytes_in 0 147497 station_ip 5.119.55.210 147497 port 505 147497 unique_id port 147497 remote_ip 10.8.0.234 147504 username rezaei 147504 mac 147504 bytes_out 0 147504 bytes_in 0 147504 station_ip 5.119.4.59 147504 port 492 147504 unique_id port 147504 remote_ip 10.8.0.230 147506 username aminvpn 147506 mac 147506 bytes_out 0 147506 bytes_in 0 147506 station_ip 83.123.150.235 147506 port 510 147506 unique_id port 147506 remote_ip 10.8.0.14 147510 username sabaghnezhad 147510 mac 147510 bytes_out 277058 147510 bytes_in 604317 147510 station_ip 83.122.154.211 147510 port 268 147510 unique_id port 147510 remote_ip 10.8.1.130 147513 username mosi 147513 kill_reason Another user logged on this global unique id 147513 mac 147513 bytes_out 0 147513 bytes_in 0 147513 station_ip 151.235.107.13 147513 port 504 147513 unique_id port 147513 remote_ip 10.8.0.138 147515 username hamid.e 147515 unique_id port 147515 terminate_cause User-Request 147515 bytes_out 3545821 147515 bytes_in 48495990 147515 station_ip 188.245.88.13 147515 port 15730961 147515 nas_port_type Virtual 147515 remote_ip 5.5.5.236 147516 username hashtadani4 147516 mac 147516 bytes_out 0 147516 bytes_in 0 147516 station_ip 83.122.217.69 147516 port 266 147516 unique_id port 147516 remote_ip 10.8.1.142 147520 username hashtadani4 147520 mac 147520 bytes_out 0 147520 bytes_in 0 147520 station_ip 83.122.217.69 147520 port 512 147520 unique_id port 147520 remote_ip 10.8.0.182 147528 username fezealinaghi 147528 mac 147528 bytes_out 8909 147528 bytes_in 17601 147528 station_ip 83.123.81.78 147528 port 503 147528 unique_id port 147528 remote_ip 10.8.0.78 147534 username alipour 147534 mac 147534 bytes_out 0 147534 bytes_in 0 147534 station_ip 37.129.171.226 147534 port 266 147534 unique_id port 147534 remote_ip 10.8.1.50 147536 username kordestani 147536 mac 147536 bytes_out 2055012 147536 bytes_in 31480537 147536 station_ip 151.235.87.87 147536 port 505 147536 unique_id port 147536 remote_ip 10.8.0.134 147537 username barzegar 147537 mac 147537 bytes_out 0 147537 bytes_in 0 147537 station_ip 5.119.55.210 147537 port 266 147537 unique_id port 147537 remote_ip 10.8.1.174 147545 username hashtadani4 147545 mac 147545 bytes_out 0 147545 bytes_in 0 147545 station_ip 83.122.217.69 147545 port 503 147545 unique_id port 147545 remote_ip 10.8.0.182 147552 username alipour 147552 mac 147552 bytes_out 64651 147552 bytes_in 141727 147552 station_ip 37.129.171.226 147552 port 492 147552 unique_id port 147552 remote_ip 10.8.0.102 147564 username alipour 147564 mac 147564 bytes_out 0 147564 bytes_in 0 147564 station_ip 37.129.171.226 147564 port 265 147564 unique_id port 147564 remote_ip 10.8.1.50 147565 username hosseine 147565 kill_reason Another user logged on this global unique id 147565 mac 147565 bytes_out 0 147565 bytes_in 0 147565 station_ip 37.129.45.162 147565 port 491 147565 unique_id port 147571 username hashtadani4 147571 mac 147571 bytes_out 0 147487 bytes_out 2300 147487 bytes_in 4878 147487 station_ip 83.122.217.69 147487 port 482 147487 unique_id port 147487 remote_ip 10.8.0.182 147489 username aminvpn 147489 mac 147489 bytes_out 8457 147489 bytes_in 16618 147489 station_ip 83.123.150.235 147489 port 482 147489 unique_id port 147489 remote_ip 10.8.0.14 147491 username aminvpn 147491 mac 147491 bytes_out 0 147491 bytes_in 0 147491 station_ip 83.123.199.186 147491 port 506 147491 unique_id port 147491 remote_ip 10.8.0.14 147492 username aminvpn 147492 mac 147492 bytes_out 0 147492 bytes_in 0 147492 station_ip 83.123.150.235 147492 port 492 147492 unique_id port 147492 remote_ip 10.8.0.14 147498 username hashtadani4 147498 mac 147498 bytes_out 0 147498 bytes_in 0 147498 station_ip 83.122.217.69 147498 port 482 147498 unique_id port 147498 remote_ip 10.8.0.182 147509 username fezealinaghi 147509 mac 147509 bytes_out 0 147509 bytes_in 0 147509 station_ip 83.123.81.78 147509 port 266 147509 unique_id port 147509 remote_ip 10.8.1.162 147511 username hashtadani4 147511 mac 147511 bytes_out 1644 147511 bytes_in 5023 147511 station_ip 83.122.217.69 147511 port 505 147511 unique_id port 147511 remote_ip 10.8.0.182 147512 username barzegar 147512 mac 147512 bytes_out 2565 147512 bytes_in 4813 147512 station_ip 5.119.55.210 147512 port 510 147512 unique_id port 147512 remote_ip 10.8.0.234 147514 username barzegar 147514 mac 147514 bytes_out 0 147514 bytes_in 0 147514 station_ip 5.119.55.210 147514 port 266 147514 unique_id port 147514 remote_ip 10.8.1.174 147519 username hashtadani4 147519 kill_reason Maximum check online fails reached 147519 mac 147519 bytes_out 0 147519 bytes_in 0 147519 station_ip 83.122.217.69 147519 port 511 147519 unique_id port 147521 username fezealinaghi 147521 mac 147521 bytes_out 0 147521 bytes_in 0 147521 station_ip 83.123.81.78 147521 port 266 147521 unique_id port 147521 remote_ip 10.8.1.162 147522 username alipour 147522 mac 147522 bytes_out 0 147522 bytes_in 0 147522 station_ip 37.129.171.226 147522 port 267 147522 unique_id port 147522 remote_ip 10.8.1.50 147526 username kordestani 147526 mac 147526 bytes_out 1580995 147526 bytes_in 18529305 147526 station_ip 151.235.87.87 147526 port 513 147526 unique_id port 147526 remote_ip 10.8.0.134 147527 username hashtadani4 147527 mac 147527 bytes_out 0 147527 bytes_in 0 147527 station_ip 83.122.217.69 147527 port 505 147527 unique_id port 147527 remote_ip 10.8.0.182 147530 username malekpoir 147530 mac 147530 bytes_out 0 147530 bytes_in 0 147530 station_ip 5.120.180.209 147530 port 263 147530 unique_id port 147533 username meysam 147533 mac 147533 bytes_out 2540 147533 bytes_in 8384 147533 station_ip 188.158.50.122 147533 port 503 147533 unique_id port 147533 remote_ip 10.8.0.110 147540 username aminvpn 147540 mac 147540 bytes_out 125340 147540 bytes_in 255302 147540 station_ip 83.123.150.235 147540 port 492 147540 unique_id port 147540 remote_ip 10.8.0.14 147543 username hashtadani4 147543 mac 147543 bytes_out 0 147543 bytes_in 0 147543 station_ip 83.122.217.69 147543 port 506 147543 unique_id port 147543 remote_ip 10.8.0.182 147548 username hamidehfatemi 147548 mac 147548 bytes_out 1640947 147548 bytes_in 25994693 147548 station_ip 83.122.114.81 147548 port 505 147548 unique_id port 147548 remote_ip 10.8.0.162 147549 username hashtadani4 147549 mac 147549 bytes_out 0 147549 bytes_in 0 147518 unique_id port 147518 remote_ip 10.8.0.90 147523 username fezealinaghi 147523 mac 147523 bytes_out 6409 147523 bytes_in 13102 147523 station_ip 83.123.81.78 147523 port 503 147523 unique_id port 147523 remote_ip 10.8.0.78 147524 username mohammadjavad 147524 mac 147524 bytes_out 420343 147524 bytes_in 3911709 147524 station_ip 113.203.91.47 147524 port 505 147524 unique_id port 147524 remote_ip 10.8.0.142 147525 username hashtadani4 147525 mac 147525 bytes_out 749842 147525 bytes_in 6902107 147525 station_ip 83.122.217.69 147525 port 512 147525 unique_id port 147525 remote_ip 10.8.0.182 147529 username barzegar 147529 mac 147529 bytes_out 0 147529 bytes_in 0 147529 station_ip 5.119.55.210 147529 port 268 147529 unique_id port 147529 remote_ip 10.8.1.174 147531 username yarmohamadi 147531 kill_reason Another user logged on this global unique id 147531 mac 147531 bytes_out 0 147531 bytes_in 0 147531 station_ip 5.120.95.71 147531 port 445 147531 unique_id port 147531 remote_ip 10.8.0.150 147532 username godarzi 147532 mac 147532 bytes_out 3307874 147532 bytes_in 47328921 147532 station_ip 5.119.217.59 147532 port 506 147532 unique_id port 147532 remote_ip 10.8.0.174 147535 username mosi 147535 mac 147535 bytes_out 0 147535 bytes_in 0 147535 station_ip 151.235.107.13 147535 port 504 147535 unique_id port 147538 username kalantary 147538 mac 147538 bytes_out 408139 147538 bytes_in 1650782 147538 station_ip 83.123.7.117 147538 port 503 147538 unique_id port 147538 remote_ip 10.8.0.98 147539 username godarzi 147539 mac 147539 bytes_out 7751 147539 bytes_in 11752 147539 station_ip 5.119.217.59 147539 port 505 147539 unique_id port 147539 remote_ip 10.8.0.174 147541 username saeed9658 147541 mac 147541 bytes_out 0 147541 bytes_in 0 147541 station_ip 5.120.98.225 147541 port 267 147541 unique_id port 147541 remote_ip 10.8.1.210 147542 username hashtadani4 147542 mac 147542 bytes_out 4251665 147542 bytes_in 30892550 147542 station_ip 83.122.217.69 147542 port 512 147542 unique_id port 147542 remote_ip 10.8.0.182 147544 username godarzi 147544 mac 147544 bytes_out 971499 147544 bytes_in 10165304 147544 station_ip 5.119.217.59 147544 port 503 147544 unique_id port 147544 remote_ip 10.8.0.174 147546 username barzegar 147546 mac 147546 bytes_out 0 147546 bytes_in 0 147546 station_ip 5.119.55.210 147546 port 266 147546 unique_id port 147546 remote_ip 10.8.1.174 147547 username hassan 147547 mac 147547 bytes_out 2389515 147547 bytes_in 7220191 147547 station_ip 5.120.44.196 147547 port 265 147547 unique_id port 147547 remote_ip 10.8.1.138 147550 username hashtadani4 147550 mac 147550 bytes_out 0 147550 bytes_in 0 147550 station_ip 83.122.217.69 147550 port 506 147550 unique_id port 147550 remote_ip 10.8.0.182 147553 username hashtadani4 147553 mac 147553 bytes_out 11841 147553 bytes_in 18788 147553 station_ip 83.122.217.69 147553 port 513 147553 unique_id port 147553 remote_ip 10.8.0.182 147555 username hashtadani4 147555 mac 147555 bytes_out 0 147555 bytes_in 0 147555 station_ip 83.122.217.69 147555 port 505 147555 unique_id port 147555 remote_ip 10.8.0.182 147556 username hashtadani4 147556 mac 147556 bytes_out 0 147556 bytes_in 0 147556 station_ip 83.122.217.69 147556 port 505 147556 unique_id port 147556 remote_ip 10.8.0.182 147560 username mehdizare 147560 mac 147560 bytes_out 12588 147560 bytes_in 20384 147560 station_ip 5.120.140.28 147560 port 268 147549 station_ip 83.122.217.69 147549 port 503 147549 unique_id port 147549 remote_ip 10.8.0.182 147551 username hamidehfatemi 147551 mac 147551 bytes_out 1444 147551 bytes_in 7629 147551 station_ip 83.122.114.81 147551 port 505 147551 unique_id port 147551 remote_ip 10.8.0.162 147554 username godarzi 147554 mac 147554 bytes_out 301027 147554 bytes_in 5563482 147554 station_ip 5.119.217.59 147554 port 512 147554 unique_id port 147554 remote_ip 10.8.0.174 147557 username mehdizare 147557 mac 147557 bytes_out 0 147557 bytes_in 0 147557 station_ip 5.120.140.28 147557 port 514 147557 unique_id port 147557 remote_ip 10.8.0.90 147558 username barzegar 147558 mac 147558 bytes_out 0 147558 bytes_in 0 147558 station_ip 5.119.55.210 147558 port 267 147558 unique_id port 147558 remote_ip 10.8.1.174 147559 username meysam 147559 mac 147559 bytes_out 2380701 147559 bytes_in 37949333 147559 station_ip 188.158.50.122 147559 port 505 147559 unique_id port 147559 remote_ip 10.8.0.110 147561 username nilufarrajaei 147561 kill_reason Another user logged on this global unique id 147561 mac 147561 bytes_out 0 147561 bytes_in 0 147561 station_ip 45.86.196.51 147561 port 492 147561 unique_id port 147561 remote_ip 10.8.0.206 147562 username kalantary 147562 mac 147562 bytes_out 394481 147562 bytes_in 2700884 147562 station_ip 83.123.60.253 147562 port 513 147562 unique_id port 147562 remote_ip 10.8.0.98 147566 username hashtadani4 147566 kill_reason Another user logged on this global unique id 147566 mac 147566 bytes_out 0 147566 bytes_in 0 147566 station_ip 83.122.217.69 147566 port 512 147566 unique_id port 147566 remote_ip 10.8.0.182 147568 username hashtadani4 147568 mac 147568 bytes_out 0 147568 bytes_in 0 147568 station_ip 83.122.217.69 147568 port 512 147568 unique_id port 147570 username godarzi 147570 mac 147570 bytes_out 0 147570 bytes_in 0 147570 station_ip 5.119.217.59 147570 port 513 147570 unique_id port 147570 remote_ip 10.8.0.174 147572 username hashtadani4 147572 mac 147572 bytes_out 0 147572 bytes_in 0 147572 station_ip 83.122.217.69 147572 port 513 147572 unique_id port 147572 remote_ip 10.8.0.182 147573 username mosi 147573 mac 147573 bytes_out 0 147573 bytes_in 0 147573 station_ip 151.235.107.13 147573 port 504 147573 unique_id port 147573 remote_ip 10.8.0.138 147575 username kalantary 147575 mac 147575 bytes_out 0 147575 bytes_in 0 147575 station_ip 83.123.60.253 147575 port 506 147575 unique_id port 147575 remote_ip 10.8.0.98 147582 username khalili 147582 kill_reason Another user logged on this global unique id 147582 mac 147582 bytes_out 0 147582 bytes_in 0 147582 station_ip 5.119.173.8 147582 port 489 147582 unique_id port 147584 username meysam 147584 mac 147584 bytes_out 0 147584 bytes_in 0 147584 station_ip 188.158.50.122 147584 port 505 147584 unique_id port 147584 remote_ip 10.8.0.110 147588 username hassan 147588 mac 147588 bytes_out 1023747 147588 bytes_in 10523306 147588 station_ip 5.119.38.65 147588 port 266 147588 unique_id port 147588 remote_ip 10.8.1.138 147592 username hashtadani4 147592 mac 147592 bytes_out 0 147592 bytes_in 0 147592 station_ip 83.122.217.69 147592 port 504 147592 unique_id port 147594 username forozandeh1 147594 mac 147594 bytes_out 0 147594 bytes_in 0 147594 station_ip 37.129.137.49 147594 port 491 147594 unique_id port 147594 remote_ip 10.8.0.130 147600 username hashtadani4 147600 mac 147600 bytes_out 0 147600 bytes_in 0 147560 unique_id port 147560 remote_ip 10.8.1.42 147563 username mohammadjavad 147563 mac 147563 bytes_out 3915937 147563 bytes_in 8067076 147563 station_ip 37.129.167.194 147563 port 506 147563 unique_id port 147563 remote_ip 10.8.0.142 147567 username forozandeh1 147567 mac 147567 bytes_out 500948 147567 bytes_in 1946276 147567 station_ip 113.203.32.83 147567 port 514 147567 unique_id port 147567 remote_ip 10.8.0.130 147569 username rezaei 147569 mac 147569 bytes_out 111329 147569 bytes_in 627274 147569 station_ip 5.119.4.59 147569 port 516 147569 unique_id port 147569 remote_ip 10.8.0.230 147574 username hashtadani4 147574 mac 147574 bytes_out 0 147574 bytes_in 0 147574 station_ip 83.122.217.69 147574 port 504 147574 unique_id port 147574 remote_ip 10.8.0.182 147577 username barzegar 147577 kill_reason Another user logged on this global unique id 147577 mac 147577 bytes_out 0 147577 bytes_in 0 147577 station_ip 5.119.55.210 147577 port 515 147577 unique_id port 147577 remote_ip 10.8.0.234 147578 username mosi 147578 mac 147578 bytes_out 0 147578 bytes_in 0 147578 station_ip 5.134.185.5 147578 port 265 147578 unique_id port 147578 remote_ip 10.8.1.86 147583 username hosseine 147583 mac 147583 bytes_out 0 147583 bytes_in 0 147583 station_ip 37.129.45.162 147583 port 506 147583 unique_id port 147583 remote_ip 10.8.0.238 147585 username hashtadani4 147585 kill_reason Another user logged on this global unique id 147585 mac 147585 bytes_out 0 147585 bytes_in 0 147585 station_ip 83.122.217.69 147585 port 504 147585 unique_id port 147585 remote_ip 10.8.0.182 147587 username barzegar 147587 kill_reason Another user logged on this global unique id 147587 mac 147587 bytes_out 0 147587 bytes_in 0 147587 station_ip 5.119.137.225 147587 port 505 147587 unique_id port 147587 remote_ip 10.8.0.234 147589 username mahdiyehalizadeh 147589 mac 147589 bytes_out 0 147589 bytes_in 0 147589 station_ip 5.119.8.79 147589 port 503 147589 unique_id port 147589 remote_ip 10.8.0.82 147591 username sedighe 147591 mac 147591 bytes_out 0 147591 bytes_in 0 147591 station_ip 83.122.105.139 147591 port 506 147591 unique_id port 147591 remote_ip 10.8.0.146 147593 username rahim 147593 mac 147593 bytes_out 0 147593 bytes_in 0 147593 station_ip 5.120.180.50 147593 port 515 147593 unique_id port 147593 remote_ip 10.8.0.50 147597 username sedighe 147597 mac 147597 bytes_out 15481 147597 bytes_in 15638 147597 station_ip 83.122.105.139 147597 port 491 147597 unique_id port 147597 remote_ip 10.8.0.146 147598 username barzegar 147598 mac 147598 bytes_out 0 147598 bytes_in 0 147598 station_ip 5.119.137.225 147598 port 505 147598 unique_id port 147599 username hamid.e 147599 unique_id port 147599 terminate_cause User-Request 147599 bytes_out 6272398 147599 bytes_in 195762084 147599 station_ip 31.56.159.123 147599 port 15730964 147599 nas_port_type Virtual 147599 remote_ip 5.5.5.43 147604 username barzegar 147604 mac 147604 bytes_out 0 147604 bytes_in 0 147604 station_ip 5.119.137.225 147604 port 506 147604 unique_id port 147604 remote_ip 10.8.0.234 147607 username kalantary 147607 mac 147607 bytes_out 0 147607 bytes_in 0 147607 station_ip 83.123.3.253 147607 port 491 147607 unique_id port 147607 remote_ip 10.8.0.98 147612 username hashtadani4 147612 mac 147612 bytes_out 0 147612 bytes_in 0 147612 station_ip 83.122.217.69 147612 port 445 147612 unique_id port 147612 remote_ip 10.8.0.182 147614 username alihosseini1 147614 mac 147571 bytes_in 0 147571 station_ip 83.122.217.69 147571 port 265 147571 unique_id port 147571 remote_ip 10.8.1.142 147576 username hosseine 147576 mac 147576 bytes_out 0 147576 bytes_in 0 147576 station_ip 37.129.45.162 147576 port 491 147576 unique_id port 147579 username nilufarrajaei 147579 mac 147579 bytes_out 0 147579 bytes_in 0 147579 station_ip 45.86.196.51 147579 port 492 147579 unique_id port 147580 username mehdizare 147580 mac 147580 bytes_out 0 147580 bytes_in 0 147580 station_ip 5.120.140.28 147580 port 505 147580 unique_id port 147580 remote_ip 10.8.0.90 147581 username barzegar 147581 mac 147581 bytes_out 0 147581 bytes_in 0 147581 station_ip 5.119.55.210 147581 port 515 147581 unique_id port 147586 username vanila 147586 mac 147586 bytes_out 0 147586 bytes_in 0 147586 station_ip 37.129.250.171 147586 port 514 147586 unique_id port 147586 remote_ip 10.8.0.178 147590 username mansour 147590 mac 147590 bytes_out 0 147590 bytes_in 0 147590 station_ip 5.202.98.165 147590 port 512 147590 unique_id port 147590 remote_ip 10.8.0.30 147595 username kordestani 147595 mac 147595 bytes_out 2587212 147595 bytes_in 33664236 147595 station_ip 151.235.87.87 147595 port 513 147595 unique_id port 147595 remote_ip 10.8.0.134 147596 username hashtadani4 147596 mac 147596 bytes_out 0 147596 bytes_in 0 147596 station_ip 83.122.217.69 147596 port 491 147596 unique_id port 147596 remote_ip 10.8.0.182 147601 username kordestani 147601 mac 147601 bytes_out 0 147601 bytes_in 0 147601 station_ip 151.235.87.87 147601 port 504 147601 unique_id port 147601 remote_ip 10.8.0.134 147606 username godarzi 147606 mac 147606 bytes_out 0 147606 bytes_in 0 147606 station_ip 5.119.217.59 147606 port 503 147606 unique_id port 147606 remote_ip 10.8.0.174 147608 username hashtadani4 147608 mac 147608 bytes_out 0 147608 bytes_in 0 147608 station_ip 83.122.217.69 147608 port 445 147608 unique_id port 147608 remote_ip 10.8.0.182 147609 username jafari 147609 kill_reason Another user logged on this global unique id 147609 mac 147609 bytes_out 0 147609 bytes_in 0 147609 station_ip 94.24.88.219 147609 port 505 147609 unique_id port 147609 remote_ip 10.8.0.242 147611 username hamid.e 147611 unique_id port 147611 terminate_cause User-Request 147611 bytes_out 3979641 147611 bytes_in 147181078 147611 station_ip 31.56.159.123 147611 port 15730965 147611 nas_port_type Virtual 147611 remote_ip 5.5.5.226 147613 username barzegar 147613 mac 147613 bytes_out 0 147613 bytes_in 0 147613 station_ip 5.119.137.225 147613 port 503 147613 unique_id port 147613 remote_ip 10.8.0.234 147615 username mehdizare 147615 mac 147615 bytes_out 0 147615 bytes_in 0 147615 station_ip 5.120.140.28 147615 port 492 147615 unique_id port 147615 remote_ip 10.8.0.90 147617 username hashtadani4 147617 mac 147617 bytes_out 0 147617 bytes_in 0 147617 station_ip 83.122.217.69 147617 port 445 147617 unique_id port 147617 remote_ip 10.8.0.182 147618 username jafari 147618 mac 147618 bytes_out 0 147618 bytes_in 0 147618 station_ip 94.24.88.219 147618 port 505 147618 unique_id port 147622 username hashtadani4 147622 mac 147622 bytes_out 0 147622 bytes_in 0 147622 station_ip 83.122.217.69 147622 port 491 147622 unique_id port 147622 remote_ip 10.8.0.182 147623 username hashtadani4 147623 mac 147623 bytes_out 0 147623 bytes_in 0 147623 station_ip 83.122.217.69 147623 port 445 147623 unique_id port 147600 station_ip 83.122.217.69 147600 port 503 147600 unique_id port 147600 remote_ip 10.8.0.182 147602 username nilufarrajaei 147602 kill_reason Another user logged on this global unique id 147602 mac 147602 bytes_out 0 147602 bytes_in 0 147602 station_ip 37.129.11.181 147602 port 514 147602 unique_id port 147602 remote_ip 10.8.0.206 147603 username hashtadani4 147603 mac 147603 bytes_out 0 147603 bytes_in 0 147603 station_ip 83.122.217.69 147603 port 504 147603 unique_id port 147603 remote_ip 10.8.0.182 147605 username yarmohamadi 147605 mac 147605 bytes_out 0 147605 bytes_in 0 147605 station_ip 5.120.95.71 147605 port 445 147605 unique_id port 147610 username hashtadani4 147610 mac 147610 bytes_out 0 147610 bytes_in 0 147610 station_ip 83.122.217.69 147610 port 445 147610 unique_id port 147610 remote_ip 10.8.0.182 147620 username hashtadani4 147620 mac 147620 bytes_out 0 147620 bytes_in 0 147620 station_ip 83.122.217.69 147620 port 266 147620 unique_id port 147620 remote_ip 10.8.1.142 147624 username hashtadani4 147624 mac 147624 bytes_out 0 147624 bytes_in 0 147624 station_ip 83.122.217.69 147624 port 266 147624 unique_id port 147624 remote_ip 10.8.1.142 147626 username barzegar 147626 mac 147626 bytes_out 0 147626 bytes_in 0 147626 station_ip 5.119.137.225 147626 port 492 147626 unique_id port 147626 remote_ip 10.8.0.234 147628 username hashtadani4 147628 mac 147628 bytes_out 0 147628 bytes_in 0 147628 station_ip 83.122.217.69 147628 port 492 147628 unique_id port 147628 remote_ip 10.8.0.182 147629 username moradi 147629 mac 147629 bytes_out 0 147629 bytes_in 0 147629 station_ip 46.225.211.159 147629 port 496 147629 unique_id port 147631 username hashtadani4 147631 mac 147631 bytes_out 0 147631 bytes_in 0 147631 station_ip 83.122.217.69 147631 port 496 147631 unique_id port 147631 remote_ip 10.8.0.182 147632 username hashtadani4 147632 mac 147632 bytes_out 0 147632 bytes_in 0 147632 station_ip 83.122.217.69 147632 port 445 147632 unique_id port 147632 remote_ip 10.8.0.182 147633 username mehdizare 147633 mac 147633 bytes_out 0 147633 bytes_in 0 147633 station_ip 5.120.140.28 147633 port 503 147633 unique_id port 147633 remote_ip 10.8.0.90 147635 username nilufarrajaei 147635 kill_reason Another user logged on this global unique id 147635 mac 147635 bytes_out 0 147635 bytes_in 0 147635 station_ip 37.129.11.181 147635 port 514 147635 unique_id port 147643 username mehdizare 147643 mac 147643 bytes_out 18399 147643 bytes_in 32424 147643 station_ip 5.120.140.28 147643 port 445 147643 unique_id port 147643 remote_ip 10.8.0.90 147644 username kordestani 147644 mac 147644 bytes_out 0 147644 bytes_in 0 147644 station_ip 151.235.87.87 147644 port 496 147644 unique_id port 147644 remote_ip 10.8.0.134 147645 username moradi 147645 mac 147645 bytes_out 0 147645 bytes_in 0 147645 station_ip 37.129.96.97 147645 port 492 147645 unique_id port 147645 remote_ip 10.8.0.226 147650 username farhad2 147650 mac 147650 bytes_out 0 147650 bytes_in 0 147650 station_ip 5.119.89.91 147650 port 491 147650 unique_id port 147650 remote_ip 10.8.0.190 147653 username moradi 147653 mac 147653 bytes_out 0 147653 bytes_in 0 147653 station_ip 37.129.96.97 147653 port 491 147653 unique_id port 147653 remote_ip 10.8.0.226 147655 username farhad2 147655 mac 147655 bytes_out 122183 147655 bytes_in 1118230 147655 station_ip 5.119.89.91 147655 port 266 147614 bytes_out 0 147614 bytes_in 0 147614 station_ip 5.120.169.53 147614 port 491 147614 unique_id port 147614 remote_ip 10.8.0.166 147616 username hashtadani4 147616 mac 147616 bytes_out 0 147616 bytes_in 0 147616 station_ip 83.122.217.69 147616 port 445 147616 unique_id port 147616 remote_ip 10.8.0.182 147619 username godarzi 147619 mac 147619 bytes_out 0 147619 bytes_in 0 147619 station_ip 5.119.217.59 147619 port 491 147619 unique_id port 147619 remote_ip 10.8.0.174 147621 username hashtadani4 147621 mac 147621 bytes_out 0 147621 bytes_in 0 147621 station_ip 83.122.217.69 147621 port 445 147621 unique_id port 147621 remote_ip 10.8.0.182 147625 username hashtadani4 147625 mac 147625 bytes_out 0 147625 bytes_in 0 147625 station_ip 83.122.217.69 147625 port 266 147625 unique_id port 147625 remote_ip 10.8.1.142 147630 username godarzi 147630 mac 147630 bytes_out 0 147630 bytes_in 0 147630 station_ip 5.119.217.59 147630 port 445 147630 unique_id port 147630 remote_ip 10.8.0.174 147637 username farhad2 147637 mac 147637 bytes_out 139331 147637 bytes_in 82245 147637 station_ip 5.120.172.115 147637 port 266 147637 unique_id port 147637 remote_ip 10.8.1.222 147638 username hashtadani4 147638 mac 147638 bytes_out 0 147638 bytes_in 0 147638 station_ip 83.122.217.69 147638 port 491 147638 unique_id port 147638 remote_ip 10.8.0.182 147647 username rahim 147647 mac 147647 bytes_out 0 147647 bytes_in 0 147647 station_ip 5.120.180.50 147647 port 445 147647 unique_id port 147647 remote_ip 10.8.0.50 147648 username hamidehfatemi 147648 mac 147648 bytes_out 1524075 147648 bytes_in 30799783 147648 station_ip 113.203.114.234 147648 port 266 147648 unique_id port 147648 remote_ip 10.8.1.214 147649 username farhad2 147649 mac 147649 bytes_out 0 147649 bytes_in 0 147649 station_ip 5.120.172.115 147649 port 491 147649 unique_id port 147649 remote_ip 10.8.0.190 147651 username moradi 147651 mac 147651 bytes_out 10708 147651 bytes_in 16549 147651 station_ip 37.129.96.97 147651 port 445 147651 unique_id port 147651 remote_ip 10.8.0.226 147654 username nilufarrajaei 147654 kill_reason Another user logged on this global unique id 147654 mac 147654 bytes_out 0 147654 bytes_in 0 147654 station_ip 37.129.11.181 147654 port 514 147654 unique_id port 147658 username hashtadani4 147658 mac 147658 bytes_out 0 147658 bytes_in 0 147658 station_ip 83.122.225.149 147658 port 445 147658 unique_id port 147658 remote_ip 10.8.0.182 147660 username hashtadani4 147660 mac 147660 bytes_out 0 147660 bytes_in 0 147660 station_ip 83.122.225.149 147660 port 445 147660 unique_id port 147660 remote_ip 10.8.0.182 147661 username nilufarrajaei 147661 kill_reason Another user logged on this global unique id 147661 mac 147661 bytes_out 0 147661 bytes_in 0 147661 station_ip 37.129.11.181 147661 port 514 147661 unique_id port 147663 username hashtadani4 147663 mac 147663 bytes_out 0 147663 bytes_in 0 147663 station_ip 83.122.225.149 147663 port 491 147663 unique_id port 147663 remote_ip 10.8.0.182 147665 username kalantary 147665 mac 147665 bytes_out 0 147665 bytes_in 0 147665 station_ip 113.203.14.246 147665 port 445 147665 unique_id port 147665 remote_ip 10.8.0.98 147668 username hashtadani4 147668 mac 147668 bytes_out 0 147668 bytes_in 0 147668 station_ip 83.122.225.149 147668 port 503 147668 unique_id port 147668 remote_ip 10.8.0.182 147672 username hashtadani4 147672 mac 147672 bytes_out 0 147623 remote_ip 10.8.0.182 147627 username hashtadani4 147627 mac 147627 bytes_out 0 147627 bytes_in 0 147627 station_ip 83.122.217.69 147627 port 504 147627 unique_id port 147627 remote_ip 10.8.0.182 147634 username kalantary 147634 mac 147634 bytes_out 0 147634 bytes_in 0 147634 station_ip 83.123.96.65 147634 port 492 147634 unique_id port 147634 remote_ip 10.8.0.98 147636 username alihosseini1 147636 mac 147636 bytes_out 0 147636 bytes_in 0 147636 station_ip 5.120.92.126 147636 port 491 147636 unique_id port 147636 remote_ip 10.8.0.166 147639 username farhad2 147639 mac 147639 bytes_out 0 147639 bytes_in 0 147639 station_ip 5.120.172.115 147639 port 491 147639 unique_id port 147639 remote_ip 10.8.0.190 147640 username mehdizare 147640 mac 147640 bytes_out 0 147640 bytes_in 0 147640 station_ip 5.120.140.28 147640 port 445 147640 unique_id port 147640 remote_ip 10.8.0.90 147641 username barzegar 147641 mac 147641 bytes_out 0 147641 bytes_in 0 147641 station_ip 5.119.137.225 147641 port 445 147641 unique_id port 147641 remote_ip 10.8.0.234 147642 username hamid.e 147642 unique_id port 147642 terminate_cause User-Request 147642 bytes_out 2774298 147642 bytes_in 99001166 147642 station_ip 31.56.159.123 147642 port 15730967 147642 nas_port_type Virtual 147642 remote_ip 5.5.5.227 147646 username hashtadani4 147646 mac 147646 bytes_out 0 147646 bytes_in 0 147646 station_ip 83.122.217.69 147646 port 503 147646 unique_id port 147646 remote_ip 10.8.0.182 147652 username barzegar 147652 mac 147652 bytes_out 0 147652 bytes_in 0 147652 station_ip 5.119.137.225 147652 port 492 147652 unique_id port 147652 remote_ip 10.8.0.234 147657 username hashtadani4 147657 mac 147657 bytes_out 0 147657 bytes_in 0 147657 station_ip 83.122.225.149 147657 port 445 147657 unique_id port 147657 remote_ip 10.8.0.182 147659 username hashtadani4 147659 mac 147659 bytes_out 0 147659 bytes_in 0 147659 station_ip 83.122.225.149 147659 port 445 147659 unique_id port 147659 remote_ip 10.8.0.182 147662 username barzegar 147662 mac 147662 bytes_out 0 147662 bytes_in 0 147662 station_ip 5.119.137.225 147662 port 491 147662 unique_id port 147662 remote_ip 10.8.0.234 147664 username mehdizare 147664 mac 147664 bytes_out 695932 147664 bytes_in 16551918 147664 station_ip 5.120.140.28 147664 port 504 147664 unique_id port 147664 remote_ip 10.8.0.90 147669 username godarzi 147669 mac 147669 bytes_out 0 147669 bytes_in 0 147669 station_ip 5.202.5.1 147669 port 496 147669 unique_id port 147669 remote_ip 10.8.0.174 147671 username hashtadani4 147671 mac 147671 bytes_out 0 147671 bytes_in 0 147671 station_ip 83.122.225.149 147671 port 503 147671 unique_id port 147671 remote_ip 10.8.0.182 147674 username hashtadani4 147674 mac 147674 bytes_out 0 147674 bytes_in 0 147674 station_ip 83.122.225.149 147674 port 496 147674 unique_id port 147674 remote_ip 10.8.0.182 147678 username meysam 147678 mac 147678 bytes_out 0 147678 bytes_in 0 147678 station_ip 188.158.48.51 147678 port 503 147678 unique_id port 147678 remote_ip 10.8.0.110 147682 username hashtadani4 147682 mac 147682 bytes_out 0 147682 bytes_in 0 147682 station_ip 83.122.225.149 147682 port 503 147682 unique_id port 147682 remote_ip 10.8.0.182 147684 username hashtadani4 147684 mac 147684 bytes_out 0 147684 bytes_in 0 147684 station_ip 83.122.225.149 147684 port 496 147684 unique_id port 147684 remote_ip 10.8.0.182 147655 unique_id port 147655 remote_ip 10.8.1.222 147656 username kalantary 147656 mac 147656 bytes_out 0 147656 bytes_in 0 147656 station_ip 113.203.14.246 147656 port 445 147656 unique_id port 147656 remote_ip 10.8.0.98 147666 username hashtadani4 147666 mac 147666 bytes_out 0 147666 bytes_in 0 147666 station_ip 83.122.225.149 147666 port 492 147666 unique_id port 147666 remote_ip 10.8.0.182 147667 username hashtadani4 147667 mac 147667 bytes_out 0 147667 bytes_in 0 147667 station_ip 83.122.225.149 147667 port 503 147667 unique_id port 147667 remote_ip 10.8.0.182 147670 username alipour 147670 mac 147670 bytes_out 0 147670 bytes_in 0 147670 station_ip 37.129.171.226 147670 port 517 147670 unique_id port 147670 remote_ip 10.8.0.102 147676 username hamidehfatemi 147676 mac 147676 bytes_out 0 147676 bytes_in 0 147676 station_ip 83.122.251.97 147676 port 266 147676 unique_id port 147676 remote_ip 10.8.1.214 147677 username hashtadani4 147677 mac 147677 bytes_out 0 147677 bytes_in 0 147677 station_ip 83.122.225.149 147677 port 496 147677 unique_id port 147677 remote_ip 10.8.0.182 147679 username hashtadani4 147679 mac 147679 bytes_out 0 147679 bytes_in 0 147679 station_ip 83.122.225.149 147679 port 266 147679 unique_id port 147679 remote_ip 10.8.1.142 147680 username hashtadani4 147680 mac 147680 bytes_out 0 147680 bytes_in 0 147680 station_ip 83.122.225.149 147680 port 266 147680 unique_id port 147680 remote_ip 10.8.1.142 147681 username hashtadani4 147681 mac 147681 bytes_out 0 147681 bytes_in 0 147681 station_ip 83.122.225.149 147681 port 266 147681 unique_id port 147681 remote_ip 10.8.1.142 147685 username hashtadani4 147685 mac 147685 bytes_out 2753 147685 bytes_in 5062 147685 station_ip 83.122.225.149 147685 port 496 147685 unique_id port 147685 remote_ip 10.8.0.182 147686 username hashtadani4 147686 mac 147686 bytes_out 0 147686 bytes_in 0 147686 station_ip 83.122.225.149 147686 port 496 147686 unique_id port 147686 remote_ip 10.8.0.182 147688 username hashtadani4 147688 mac 147688 bytes_out 0 147688 bytes_in 0 147688 station_ip 83.122.225.149 147688 port 496 147688 unique_id port 147688 remote_ip 10.8.0.182 147689 username amirabbas 147689 unique_id port 147689 terminate_cause User-Request 147689 bytes_out 1635576 147689 bytes_in 9956160 147689 station_ip 37.27.10.12 147689 port 15730969 147689 nas_port_type Virtual 147689 remote_ip 5.5.5.255 147691 username hashtadani4 147691 mac 147691 bytes_out 0 147691 bytes_in 0 147691 station_ip 83.122.225.149 147691 port 496 147691 unique_id port 147691 remote_ip 10.8.0.182 147694 username hashtadani4 147694 mac 147694 bytes_out 0 147694 bytes_in 0 147694 station_ip 83.122.225.149 147694 port 496 147694 unique_id port 147694 remote_ip 10.8.0.182 147706 username kordestani 147706 mac 147706 bytes_out 0 147706 bytes_in 0 147706 station_ip 151.235.117.57 147706 port 503 147706 unique_id port 147706 remote_ip 10.8.0.134 147710 username barzegar 147710 mac 147710 bytes_out 0 147710 bytes_in 0 147710 station_ip 5.119.137.225 147710 port 503 147710 unique_id port 147710 remote_ip 10.8.0.234 147711 username kordestani 147711 mac 147711 bytes_out 0 147711 bytes_in 0 147711 station_ip 151.235.75.91 147711 port 505 147711 unique_id port 147711 remote_ip 10.8.0.134 147715 username mosi 147715 mac 147715 bytes_out 6605756 147715 bytes_in 36191981 147715 station_ip 151.235.107.13 147715 port 267 147672 bytes_in 0 147672 station_ip 83.122.225.149 147672 port 496 147672 unique_id port 147672 remote_ip 10.8.0.182 147673 username hashtadani4 147673 mac 147673 bytes_out 0 147673 bytes_in 0 147673 station_ip 83.122.225.149 147673 port 496 147673 unique_id port 147673 remote_ip 10.8.0.182 147675 username hashtadani4 147675 mac 147675 bytes_out 0 147675 bytes_in 0 147675 station_ip 83.122.225.149 147675 port 496 147675 unique_id port 147675 remote_ip 10.8.0.182 147683 username barzegar 147683 mac 147683 bytes_out 0 147683 bytes_in 0 147683 station_ip 5.119.137.225 147683 port 496 147683 unique_id port 147683 remote_ip 10.8.0.234 147687 username barzegar 147687 mac 147687 bytes_out 0 147687 bytes_in 0 147687 station_ip 5.119.137.225 147687 port 505 147687 unique_id port 147687 remote_ip 10.8.0.234 147692 username kalantary 147692 mac 147692 bytes_out 0 147692 bytes_in 0 147692 station_ip 113.203.7.154 147692 port 503 147692 unique_id port 147692 remote_ip 10.8.0.98 147696 username kordestani 147696 mac 147696 bytes_out 0 147696 bytes_in 0 147696 station_ip 151.235.110.40 147696 port 503 147696 unique_id port 147696 remote_ip 10.8.0.134 147697 username hashtadani4 147697 kill_reason Another user logged on this global unique id 147697 mac 147697 bytes_out 0 147697 bytes_in 0 147697 station_ip 83.122.225.149 147697 port 496 147697 unique_id port 147697 remote_ip 10.8.0.182 147698 username farhad2 147698 mac 147698 bytes_out 0 147698 bytes_in 0 147698 station_ip 5.119.170.213 147698 port 504 147698 unique_id port 147698 remote_ip 10.8.0.190 147701 username yaghobi 147701 mac 147701 bytes_out 0 147701 bytes_in 0 147701 station_ip 37.129.54.185 147701 port 513 147701 unique_id port 147701 remote_ip 10.8.0.198 147702 username hashtadani4 147702 kill_reason Another user logged on this global unique id 147702 mac 147702 bytes_out 0 147702 bytes_in 0 147702 station_ip 83.122.225.149 147702 port 496 147702 unique_id port 147703 username nilufarrajaei 147703 mac 147703 bytes_out 0 147703 bytes_in 0 147703 station_ip 37.129.11.181 147703 port 514 147703 unique_id port 147707 username mahdiyehalizadeh 147707 mac 147707 bytes_out 0 147707 bytes_in 0 147707 station_ip 5.120.35.160 147707 port 445 147707 unique_id port 147707 remote_ip 10.8.0.82 147709 username nilufarrajaei 147709 mac 147709 bytes_out 155123 147709 bytes_in 192110 147709 station_ip 37.129.11.181 147709 port 513 147709 unique_id port 147709 remote_ip 10.8.0.206 147712 username vanila 147712 mac 147712 bytes_out 0 147712 bytes_in 0 147712 station_ip 37.129.144.179 147712 port 506 147712 unique_id port 147712 remote_ip 10.8.0.178 147714 username forozandeh1 147714 mac 147714 bytes_out 0 147714 bytes_in 0 147714 station_ip 83.122.92.121 147714 port 506 147714 unique_id port 147714 remote_ip 10.8.0.130 147717 username farhad2 147717 kill_reason Another user logged on this global unique id 147717 mac 147717 bytes_out 0 147717 bytes_in 0 147717 station_ip 5.119.170.213 147717 port 504 147717 unique_id port 147717 remote_ip 10.8.0.190 147722 username hashtadani4 147722 mac 147722 bytes_out 0 147722 bytes_in 0 147722 station_ip 83.122.225.149 147722 port 269 147722 unique_id port 147722 remote_ip 10.8.1.142 147723 username fezealinaghi 147723 mac 147723 bytes_out 0 147723 bytes_in 0 147723 station_ip 83.123.124.8 147723 port 492 147723 unique_id port 147723 remote_ip 10.8.0.78 147725 username hashtadani4 147725 mac 147690 username nilufarrajaei 147690 kill_reason Another user logged on this global unique id 147690 mac 147690 bytes_out 0 147690 bytes_in 0 147690 station_ip 37.129.11.181 147690 port 514 147690 unique_id port 147693 username hashtadani4 147693 mac 147693 bytes_out 0 147693 bytes_in 0 147693 station_ip 83.122.225.149 147693 port 496 147693 unique_id port 147693 remote_ip 10.8.0.182 147695 username barzegar 147695 mac 147695 bytes_out 0 147695 bytes_in 0 147695 station_ip 5.119.137.225 147695 port 513 147695 unique_id port 147695 remote_ip 10.8.0.234 147699 username barzegar 147699 mac 147699 bytes_out 0 147699 bytes_in 0 147699 station_ip 5.119.137.225 147699 port 513 147699 unique_id port 147699 remote_ip 10.8.0.234 147700 username yaghobi 147700 mac 147700 bytes_out 0 147700 bytes_in 0 147700 station_ip 37.129.249.42 147700 port 505 147700 unique_id port 147700 remote_ip 10.8.0.198 147704 username kalantary 147704 mac 147704 bytes_out 0 147704 bytes_in 0 147704 station_ip 113.203.7.154 147704 port 506 147704 unique_id port 147704 remote_ip 10.8.0.98 147705 username forozandeh1 147705 mac 147705 bytes_out 309044 147705 bytes_in 595285 147705 station_ip 83.123.138.22 147705 port 505 147705 unique_id port 147705 remote_ip 10.8.0.130 147708 username kordestani 147708 mac 147708 bytes_out 0 147708 bytes_in 0 147708 station_ip 151.235.117.112 147708 port 503 147708 unique_id port 147708 remote_ip 10.8.0.134 147713 username alihosseini1 147713 mac 147713 bytes_out 0 147713 bytes_in 0 147713 station_ip 5.120.45.75 147713 port 512 147713 unique_id port 147713 remote_ip 10.8.0.166 147720 username hashtadani4 147720 mac 147720 bytes_out 0 147720 bytes_in 0 147720 station_ip 83.122.225.149 147720 port 496 147720 unique_id port 147720 remote_ip 10.8.0.182 147721 username yaghobi 147721 mac 147721 bytes_out 0 147721 bytes_in 0 147721 station_ip 37.129.54.185 147721 port 515 147721 unique_id port 147721 remote_ip 10.8.0.198 147724 username sedighe 147724 mac 147724 bytes_out 0 147724 bytes_in 0 147724 station_ip 83.122.229.158 147724 port 513 147724 unique_id port 147724 remote_ip 10.8.0.146 147726 username hashtadani4 147726 mac 147726 bytes_out 0 147726 bytes_in 0 147726 station_ip 83.122.225.149 147726 port 269 147726 unique_id port 147726 remote_ip 10.8.1.142 147727 username hashtadani4 147727 mac 147727 bytes_out 0 147727 bytes_in 0 147727 station_ip 83.122.225.149 147727 port 269 147727 unique_id port 147727 remote_ip 10.8.1.142 147729 username hashtadani4 147729 mac 147729 bytes_out 0 147729 bytes_in 0 147729 station_ip 83.122.225.149 147729 port 492 147729 unique_id port 147729 remote_ip 10.8.0.182 147734 username hashtadani4 147734 mac 147734 bytes_out 920261 147734 bytes_in 8001584 147734 station_ip 83.122.225.149 147734 port 492 147734 unique_id port 147734 remote_ip 10.8.0.182 147735 username moradi 147735 mac 147735 bytes_out 868872 147735 bytes_in 7377667 147735 station_ip 37.129.96.97 147735 port 268 147735 unique_id port 147735 remote_ip 10.8.1.202 147744 username hashtadani4 147744 mac 147744 bytes_out 0 147744 bytes_in 0 147744 station_ip 83.122.225.149 147744 port 266 147744 unique_id port 147744 remote_ip 10.8.1.142 147746 username hashtadani4 147746 mac 147746 bytes_out 0 147746 bytes_in 0 147746 station_ip 83.122.225.149 147746 port 492 147746 unique_id port 147746 remote_ip 10.8.0.182 147756 username hashtadani4 147715 unique_id port 147715 remote_ip 10.8.1.86 147716 username kalantary 147716 mac 147716 bytes_out 490651 147716 bytes_in 4155509 147716 station_ip 113.203.7.154 147716 port 503 147716 unique_id port 147716 remote_ip 10.8.0.98 147718 username hashtadani4 147718 mac 147718 bytes_out 0 147718 bytes_in 0 147718 station_ip 83.122.225.149 147718 port 496 147718 unique_id port 147719 username forozandeh1 147719 mac 147719 bytes_out 0 147719 bytes_in 0 147719 station_ip 83.122.64.83 147719 port 503 147719 unique_id port 147719 remote_ip 10.8.0.130 147730 username hashtadani4 147730 mac 147730 bytes_out 0 147730 bytes_in 0 147730 station_ip 83.122.225.149 147730 port 492 147730 unique_id port 147730 remote_ip 10.8.0.182 147736 username kalantary 147736 mac 147736 bytes_out 0 147736 bytes_in 0 147736 station_ip 113.203.7.154 147736 port 506 147736 unique_id port 147736 remote_ip 10.8.0.98 147739 username hashtadani4 147739 mac 147739 bytes_out 0 147739 bytes_in 0 147739 station_ip 83.122.225.149 147739 port 492 147739 unique_id port 147739 remote_ip 10.8.0.182 147741 username forozandeh1 147741 mac 147741 bytes_out 0 147741 bytes_in 0 147741 station_ip 37.129.1.76 147741 port 504 147741 unique_id port 147741 remote_ip 10.8.0.130 147742 username hashtadani4 147742 mac 147742 bytes_out 0 147742 bytes_in 0 147742 station_ip 83.122.225.149 147742 port 266 147742 unique_id port 147742 remote_ip 10.8.1.142 147747 username hashtadani4 147747 mac 147747 bytes_out 0 147747 bytes_in 0 147747 station_ip 83.122.225.149 147747 port 492 147747 unique_id port 147747 remote_ip 10.8.0.182 147749 username hashtadani4 147749 mac 147749 bytes_out 0 147749 bytes_in 0 147749 station_ip 83.122.225.149 147749 port 492 147749 unique_id port 147749 remote_ip 10.8.0.182 147751 username hashtadani4 147751 mac 147751 bytes_out 0 147751 bytes_in 0 147751 station_ip 83.122.225.149 147751 port 492 147751 unique_id port 147751 remote_ip 10.8.0.182 147752 username nilufarrajaei 147752 kill_reason Another user logged on this global unique id 147752 mac 147752 bytes_out 0 147752 bytes_in 0 147752 station_ip 37.129.11.181 147752 port 445 147752 unique_id port 147752 remote_ip 10.8.0.206 147753 username mosi 147753 mac 147753 bytes_out 0 147753 bytes_in 0 147753 station_ip 151.235.107.13 147753 port 267 147753 unique_id port 147753 remote_ip 10.8.1.86 147757 username hashtadani4 147757 mac 147757 bytes_out 0 147757 bytes_in 0 147757 station_ip 83.122.225.149 147757 port 266 147757 unique_id port 147757 remote_ip 10.8.1.142 147760 username hashtadani4 147760 mac 147760 bytes_out 0 147760 bytes_in 0 147760 station_ip 83.122.225.149 147760 port 266 147760 unique_id port 147760 remote_ip 10.8.1.142 147763 username hashtadani4 147763 mac 147763 bytes_out 0 147763 bytes_in 0 147763 station_ip 83.122.225.149 147763 port 445 147763 unique_id port 147763 remote_ip 10.8.0.182 147764 username hashtadani4 147764 mac 147764 bytes_out 0 147764 bytes_in 0 147764 station_ip 83.122.225.149 147764 port 445 147764 unique_id port 147764 remote_ip 10.8.0.182 147767 username moradi 147767 mac 147767 bytes_out 2486981 147767 bytes_in 35248893 147767 station_ip 37.129.96.97 147767 port 269 147767 unique_id port 147767 remote_ip 10.8.1.202 147769 username hashtadani4 147769 kill_reason Maximum check online fails reached 147769 mac 147769 bytes_out 0 147769 bytes_in 0 147769 station_ip 83.122.225.149 147769 port 267 147725 bytes_out 0 147725 bytes_in 0 147725 station_ip 83.122.225.149 147725 port 269 147725 unique_id port 147725 remote_ip 10.8.1.142 147728 username barzegar 147728 mac 147728 bytes_out 0 147728 bytes_in 0 147728 station_ip 5.119.137.225 147728 port 266 147728 unique_id port 147728 remote_ip 10.8.1.174 147731 username hashtadani4 147731 mac 147731 bytes_out 0 147731 bytes_in 0 147731 station_ip 83.122.225.149 147731 port 492 147731 unique_id port 147731 remote_ip 10.8.0.182 147732 username farhad2 147732 mac 147732 bytes_out 0 147732 bytes_in 0 147732 station_ip 5.119.170.213 147732 port 504 147732 unique_id port 147733 username farhad2 147733 mac 147733 bytes_out 0 147733 bytes_in 0 147733 station_ip 5.119.170.213 147733 port 269 147733 unique_id port 147733 remote_ip 10.8.1.222 147737 username barzegar 147737 mac 147737 bytes_out 113924 147737 bytes_in 454754 147737 station_ip 5.119.137.225 147737 port 266 147737 unique_id port 147737 remote_ip 10.8.1.174 147738 username barzegar 147738 mac 147738 bytes_out 0 147738 bytes_in 0 147738 station_ip 5.119.137.225 147738 port 506 147738 unique_id port 147738 remote_ip 10.8.0.234 147740 username hashtadani4 147740 mac 147740 bytes_out 0 147740 bytes_in 0 147740 station_ip 83.122.225.149 147740 port 492 147740 unique_id port 147740 remote_ip 10.8.0.182 147743 username hashtadani4 147743 mac 147743 bytes_out 0 147743 bytes_in 0 147743 station_ip 83.122.225.149 147743 port 492 147743 unique_id port 147743 remote_ip 10.8.0.182 147745 username barzegar 147745 mac 147745 bytes_out 0 147745 bytes_in 0 147745 station_ip 5.119.137.225 147745 port 492 147745 unique_id port 147745 remote_ip 10.8.0.234 147748 username hashtadani4 147748 mac 147748 bytes_out 0 147748 bytes_in 0 147748 station_ip 83.122.225.149 147748 port 266 147748 unique_id port 147748 remote_ip 10.8.1.142 147750 username vanila 147750 mac 147750 bytes_out 0 147750 bytes_in 0 147750 station_ip 37.129.144.179 147750 port 505 147750 unique_id port 147750 remote_ip 10.8.0.178 147754 username farhad2 147754 mac 147754 bytes_out 1556539 147754 bytes_in 9009629 147754 station_ip 5.119.170.213 147754 port 268 147754 unique_id port 147754 remote_ip 10.8.1.222 147755 username nilufarrajaei 147755 mac 147755 bytes_out 0 147755 bytes_in 0 147755 station_ip 37.129.11.181 147755 port 445 147755 unique_id port 147761 username hashtadani4 147761 mac 147761 bytes_out 0 147761 bytes_in 0 147761 station_ip 83.122.225.149 147761 port 445 147761 unique_id port 147761 remote_ip 10.8.0.182 147765 username hashtadani4 147765 mac 147765 bytes_out 0 147765 bytes_in 0 147765 station_ip 83.122.225.149 147765 port 266 147765 unique_id port 147765 remote_ip 10.8.1.142 147766 username hashtadani4 147766 mac 147766 bytes_out 0 147766 bytes_in 0 147766 station_ip 83.122.225.149 147766 port 445 147766 unique_id port 147766 remote_ip 10.8.0.182 147768 username moradi 147768 mac 147768 bytes_out 3317 147768 bytes_in 6515 147768 station_ip 37.129.96.97 147768 port 266 147768 unique_id port 147768 remote_ip 10.8.1.202 147770 username kalantary 147770 mac 147770 bytes_out 797109 147770 bytes_in 6277707 147770 station_ip 113.203.7.154 147770 port 504 147770 unique_id port 147770 remote_ip 10.8.0.98 147772 username farhad2 147772 mac 147772 bytes_out 0 147772 bytes_in 0 147772 station_ip 5.119.170.213 147772 port 268 147756 mac 147756 bytes_out 1204994 147756 bytes_in 15047209 147756 station_ip 83.122.225.149 147756 port 266 147756 unique_id port 147756 remote_ip 10.8.1.142 147758 username barzegar 147758 mac 147758 bytes_out 0 147758 bytes_in 0 147758 station_ip 5.119.137.225 147758 port 445 147758 unique_id port 147758 remote_ip 10.8.0.234 147759 username hashtadani4 147759 mac 147759 bytes_out 0 147759 bytes_in 0 147759 station_ip 83.122.225.149 147759 port 445 147759 unique_id port 147759 remote_ip 10.8.0.182 147762 username hashtadani4 147762 mac 147762 bytes_out 0 147762 bytes_in 0 147762 station_ip 83.122.225.149 147762 port 266 147762 unique_id port 147762 remote_ip 10.8.1.142 147779 username hashtadani4 147779 mac 147779 bytes_out 0 147779 bytes_in 0 147779 station_ip 83.122.225.149 147779 port 445 147779 unique_id port 147779 remote_ip 10.8.0.182 147781 username hamid.e 147781 unique_id port 147781 terminate_cause User-Request 147781 bytes_out 478393 147781 bytes_in 16940374 147781 station_ip 31.56.159.123 147781 port 15730971 147781 nas_port_type Virtual 147781 remote_ip 5.5.5.216 147783 username hashtadani4 147783 mac 147783 bytes_out 0 147783 bytes_in 0 147783 station_ip 83.122.225.149 147783 port 445 147783 unique_id port 147783 remote_ip 10.8.0.182 147789 username kalantary 147789 mac 147789 bytes_out 0 147789 bytes_in 0 147789 station_ip 113.203.7.154 147789 port 506 147789 unique_id port 147789 remote_ip 10.8.0.98 147793 username hashtadani4 147793 mac 147793 bytes_out 0 147793 bytes_in 0 147793 station_ip 83.122.225.149 147793 port 445 147793 unique_id port 147793 remote_ip 10.8.0.182 147799 username barzegar 147799 mac 147799 bytes_out 0 147799 bytes_in 0 147799 station_ip 5.119.137.225 147799 port 506 147799 unique_id port 147799 remote_ip 10.8.0.234 147803 username fezealinaghi 147803 mac 147803 bytes_out 0 147803 bytes_in 0 147803 station_ip 83.123.124.8 147803 port 503 147803 unique_id port 147803 remote_ip 10.8.0.78 147806 username hashtadani4 147806 mac 147806 bytes_out 0 147806 bytes_in 0 147806 station_ip 83.122.225.149 147806 port 268 147806 unique_id port 147806 remote_ip 10.8.1.142 147807 username hashtadani4 147807 mac 147807 bytes_out 0 147807 bytes_in 0 147807 station_ip 83.122.225.149 147807 port 445 147807 unique_id port 147807 remote_ip 10.8.0.182 147810 username hashtadani4 147810 mac 147810 bytes_out 0 147810 bytes_in 0 147810 station_ip 83.122.225.149 147810 port 268 147810 unique_id port 147810 remote_ip 10.8.1.142 147811 username hashtadani4 147811 mac 147811 bytes_out 0 147811 bytes_in 0 147811 station_ip 83.122.225.149 147811 port 445 147811 unique_id port 147811 remote_ip 10.8.0.182 147815 username hashtadani4 147815 mac 147815 bytes_out 0 147815 bytes_in 0 147815 station_ip 83.122.225.149 147815 port 270 147815 unique_id port 147815 remote_ip 10.8.1.142 147819 username hashtadani4 147819 mac 147819 bytes_out 0 147819 bytes_in 0 147819 station_ip 83.122.225.149 147819 port 270 147819 unique_id port 147819 remote_ip 10.8.1.142 147822 username hamidsalari 147822 kill_reason Another user logged on this global unique id 147822 mac 147822 bytes_out 0 147822 bytes_in 0 147822 station_ip 5.119.193.27 147822 port 504 147822 unique_id port 147824 username rahim 147824 kill_reason Another user logged on this global unique id 147824 mac 147824 bytes_out 0 147824 bytes_in 0 147824 station_ip 5.120.180.50 147824 port 513 147824 unique_id port 147769 unique_id port 147771 username farhad2 147771 mac 147771 bytes_out 0 147771 bytes_in 0 147771 station_ip 5.119.170.213 147771 port 492 147771 unique_id port 147771 remote_ip 10.8.0.190 147773 username barzegar 147773 mac 147773 bytes_out 0 147773 bytes_in 0 147773 station_ip 5.119.137.225 147773 port 504 147773 unique_id port 147773 remote_ip 10.8.0.234 147774 username hashtadani4 147774 mac 147774 bytes_out 0 147774 bytes_in 0 147774 station_ip 83.122.225.149 147774 port 445 147774 unique_id port 147774 remote_ip 10.8.0.182 147775 username hashtadani4 147775 mac 147775 bytes_out 0 147775 bytes_in 0 147775 station_ip 83.122.225.149 147775 port 269 147775 unique_id port 147775 remote_ip 10.8.1.142 147780 username hashtadani4 147780 mac 147780 bytes_out 0 147780 bytes_in 0 147780 station_ip 83.122.225.149 147780 port 445 147780 unique_id port 147780 remote_ip 10.8.0.182 147784 username forozandeh1 147784 mac 147784 bytes_out 0 147784 bytes_in 0 147784 station_ip 83.122.191.84 147784 port 515 147784 unique_id port 147784 remote_ip 10.8.0.130 147786 username hamidsalari 147786 kill_reason Another user logged on this global unique id 147786 mac 147786 bytes_out 0 147786 bytes_in 0 147786 station_ip 5.119.193.27 147786 port 504 147786 unique_id port 147786 remote_ip 10.8.0.222 147787 username hashtadani4 147787 mac 147787 bytes_out 0 147787 bytes_in 0 147787 station_ip 83.122.225.149 147787 port 445 147787 unique_id port 147787 remote_ip 10.8.0.182 147788 username hashtadani4 147788 mac 147788 bytes_out 0 147788 bytes_in 0 147788 station_ip 83.122.225.149 147788 port 269 147788 unique_id port 147788 remote_ip 10.8.1.142 147795 username mohammadmahdi 147795 kill_reason Another user logged on this global unique id 147795 mac 147795 bytes_out 0 147795 bytes_in 0 147795 station_ip 5.120.131.70 147795 port 492 147795 unique_id port 147795 remote_ip 10.8.0.54 147796 username hashtadani4 147796 mac 147796 bytes_out 0 147796 bytes_in 0 147796 station_ip 83.122.225.149 147796 port 269 147796 unique_id port 147796 remote_ip 10.8.1.142 147798 username houshang 147798 mac 147798 bytes_out 0 147798 bytes_in 0 147798 station_ip 5.120.99.93 147798 port 505 147798 unique_id port 147798 remote_ip 10.8.0.22 147800 username hashtadani4 147800 mac 147800 bytes_out 0 147800 bytes_in 0 147800 station_ip 83.122.225.149 147800 port 269 147800 unique_id port 147800 remote_ip 10.8.1.142 147801 username hashtadani4 147801 mac 147801 bytes_out 0 147801 bytes_in 0 147801 station_ip 83.122.225.149 147801 port 445 147801 unique_id port 147801 remote_ip 10.8.0.182 147802 username hashtadani4 147802 mac 147802 bytes_out 0 147802 bytes_in 0 147802 station_ip 83.122.225.149 147802 port 269 147802 unique_id port 147802 remote_ip 10.8.1.142 147808 username hashtadani4 147808 mac 147808 bytes_out 0 147808 bytes_in 0 147808 station_ip 83.122.225.149 147808 port 268 147808 unique_id port 147808 remote_ip 10.8.1.142 147812 username hamid.e 147812 unique_id port 147812 terminate_cause User-Request 147812 bytes_out 1255274 147812 bytes_in 38729688 147812 station_ip 31.56.159.123 147812 port 15730973 147812 nas_port_type Virtual 147812 remote_ip 5.5.5.254 147814 username hashtadani4 147814 mac 147814 bytes_out 0 147814 bytes_in 0 147814 station_ip 83.122.225.149 147814 port 503 147814 unique_id port 147814 remote_ip 10.8.0.182 147816 username hashtadani4 147816 mac 147816 bytes_out 0 147816 bytes_in 0 147772 unique_id port 147772 remote_ip 10.8.1.222 147776 username hashtadani4 147776 mac 147776 bytes_out 0 147776 bytes_in 0 147776 station_ip 83.122.225.149 147776 port 269 147776 unique_id port 147776 remote_ip 10.8.1.142 147777 username hashtadani4 147777 mac 147777 bytes_out 0 147777 bytes_in 0 147777 station_ip 83.122.225.149 147777 port 269 147777 unique_id port 147777 remote_ip 10.8.1.142 147778 username hashtadani4 147778 mac 147778 bytes_out 0 147778 bytes_in 0 147778 station_ip 83.122.225.149 147778 port 445 147778 unique_id port 147778 remote_ip 10.8.0.182 147782 username hashtadani4 147782 mac 147782 bytes_out 0 147782 bytes_in 0 147782 station_ip 83.122.225.149 147782 port 445 147782 unique_id port 147782 remote_ip 10.8.0.182 147785 username hashtadani4 147785 mac 147785 bytes_out 0 147785 bytes_in 0 147785 station_ip 83.122.225.149 147785 port 445 147785 unique_id port 147785 remote_ip 10.8.0.182 147790 username hashtadani4 147790 mac 147790 bytes_out 0 147790 bytes_in 0 147790 station_ip 83.122.225.149 147790 port 445 147790 unique_id port 147790 remote_ip 10.8.0.182 147791 username hashtadani4 147791 mac 147791 bytes_out 0 147791 bytes_in 0 147791 station_ip 83.122.225.149 147791 port 445 147791 unique_id port 147791 remote_ip 10.8.0.182 147792 username hashtadani4 147792 mac 147792 bytes_out 0 147792 bytes_in 0 147792 station_ip 83.122.225.149 147792 port 269 147792 unique_id port 147792 remote_ip 10.8.1.142 147794 username hashtadani4 147794 mac 147794 bytes_out 0 147794 bytes_in 0 147794 station_ip 83.122.225.149 147794 port 445 147794 unique_id port 147794 remote_ip 10.8.0.182 147797 username hashtadani4 147797 mac 147797 bytes_out 0 147797 bytes_in 0 147797 station_ip 83.122.225.149 147797 port 445 147797 unique_id port 147797 remote_ip 10.8.0.182 147804 username farhad2 147804 mac 147804 bytes_out 893087 147804 bytes_in 2398583 147804 station_ip 5.119.170.213 147804 port 268 147804 unique_id port 147804 remote_ip 10.8.1.222 147805 username hamidsalari 147805 kill_reason Another user logged on this global unique id 147805 mac 147805 bytes_out 0 147805 bytes_in 0 147805 station_ip 5.119.193.27 147805 port 504 147805 unique_id port 147809 username hashtadani4 147809 mac 147809 bytes_out 0 147809 bytes_in 0 147809 station_ip 83.122.225.149 147809 port 445 147809 unique_id port 147809 remote_ip 10.8.0.182 147813 username hashtadani4 147813 mac 147813 bytes_out 0 147813 bytes_in 0 147813 station_ip 83.122.225.149 147813 port 445 147813 unique_id port 147813 remote_ip 10.8.0.182 147818 username moradi 147818 kill_reason Another user logged on this global unique id 147818 mac 147818 bytes_out 0 147818 bytes_in 0 147818 station_ip 37.129.96.97 147818 port 266 147818 unique_id port 147818 remote_ip 10.8.1.202 147821 username hashtadani4 147821 kill_reason Maximum check online fails reached 147821 mac 147821 bytes_out 0 147821 bytes_in 0 147821 station_ip 83.122.225.149 147821 port 268 147821 unique_id port 147841 username hamidsalari 147841 kill_reason Another user logged on this global unique id 147841 mac 147841 bytes_out 0 147841 bytes_in 0 147841 station_ip 5.119.193.27 147841 port 504 147841 unique_id port 147843 username hashtadani4 147843 mac 147843 bytes_out 0 147843 bytes_in 0 147843 station_ip 83.122.225.149 147843 port 503 147843 unique_id port 147843 remote_ip 10.8.0.182 147845 username barzegar 147845 mac 147845 bytes_out 2005 147845 bytes_in 4535 147816 station_ip 83.122.225.149 147816 port 270 147816 unique_id port 147816 remote_ip 10.8.1.142 147817 username hashtadani4 147817 mac 147817 bytes_out 0 147817 bytes_in 0 147817 station_ip 83.122.225.149 147817 port 270 147817 unique_id port 147817 remote_ip 10.8.1.142 147820 username hashtadani4 147820 mac 147820 bytes_out 0 147820 bytes_in 0 147820 station_ip 83.122.225.149 147820 port 503 147820 unique_id port 147820 remote_ip 10.8.0.182 147823 username mohammadmahdi 147823 mac 147823 bytes_out 0 147823 bytes_in 0 147823 station_ip 5.120.131.70 147823 port 492 147823 unique_id port 147825 username malekpoir 147825 mac 147825 bytes_out 4650850 147825 bytes_in 39332211 147825 station_ip 5.120.180.209 147825 port 263 147825 unique_id port 147825 remote_ip 10.8.1.54 147826 username hosseine 147826 mac 147826 bytes_out 8277345 147826 bytes_in 42064610 147826 station_ip 37.129.45.162 147826 port 265 147826 unique_id port 147826 remote_ip 10.8.1.190 147829 username rahim 147829 kill_reason Another user logged on this global unique id 147829 mac 147829 bytes_out 0 147829 bytes_in 0 147829 station_ip 5.120.180.50 147829 port 513 147829 unique_id port 147830 username rezaei 147830 kill_reason Another user logged on this global unique id 147830 mac 147830 bytes_out 0 147830 bytes_in 0 147830 station_ip 5.119.4.59 147830 port 514 147830 unique_id port 147830 remote_ip 10.8.0.230 147832 username mostafa_es78 147832 unique_id port 147832 terminate_cause User-Request 147832 bytes_out 3157070 147832 bytes_in 68248749 147832 station_ip 178.236.35.96 147832 port 15730972 147832 nas_port_type Virtual 147832 remote_ip 5.5.5.235 147833 username farhad2 147833 mac 147833 bytes_out 0 147833 bytes_in 0 147833 station_ip 5.119.170.213 147833 port 269 147833 unique_id port 147833 remote_ip 10.8.1.222 147834 username kalantary 147834 mac 147834 bytes_out 0 147834 bytes_in 0 147834 station_ip 113.203.11.94 147834 port 445 147834 unique_id port 147834 remote_ip 10.8.0.98 147835 username hamidsalari 147835 kill_reason Another user logged on this global unique id 147835 mac 147835 bytes_out 0 147835 bytes_in 0 147835 station_ip 5.119.193.27 147835 port 504 147835 unique_id port 147837 username hashtadani4 147837 mac 147837 bytes_out 0 147837 bytes_in 0 147837 station_ip 83.122.225.149 147837 port 503 147837 unique_id port 147837 remote_ip 10.8.0.182 147839 username hashtadani4 147839 mac 147839 bytes_out 0 147839 bytes_in 0 147839 station_ip 83.122.225.149 147839 port 503 147839 unique_id port 147839 remote_ip 10.8.0.182 147840 username hashtadani4 147840 mac 147840 bytes_out 0 147840 bytes_in 0 147840 station_ip 83.122.225.149 147840 port 503 147840 unique_id port 147840 remote_ip 10.8.0.182 147844 username farhad2 147844 mac 147844 bytes_out 649109 147844 bytes_in 4654319 147844 station_ip 5.119.170.213 147844 port 263 147844 unique_id port 147844 remote_ip 10.8.1.222 147848 username hashtadani4 147848 mac 147848 bytes_out 0 147848 bytes_in 0 147848 station_ip 83.122.225.149 147848 port 503 147848 unique_id port 147848 remote_ip 10.8.0.182 147850 username hamidsalari 147850 kill_reason Another user logged on this global unique id 147850 mac 147850 bytes_out 0 147850 bytes_in 0 147850 station_ip 5.119.193.27 147850 port 504 147850 unique_id port 147853 username hashtadani4 147853 mac 147853 bytes_out 0 147853 bytes_in 0 147853 station_ip 83.122.225.149 147853 port 515 147853 unique_id port 147853 remote_ip 10.8.0.182 147857 username godarzi 147824 remote_ip 10.8.0.50 147827 username hamidsalari 147827 kill_reason Another user logged on this global unique id 147827 mac 147827 bytes_out 0 147827 bytes_in 0 147827 station_ip 5.119.193.27 147827 port 504 147827 unique_id port 147828 username mohammadjavad 147828 mac 147828 bytes_out 0 147828 bytes_in 0 147828 station_ip 83.123.192.237 147828 port 445 147828 unique_id port 147828 remote_ip 10.8.0.142 147831 username hamidsalari 147831 kill_reason Another user logged on this global unique id 147831 mac 147831 bytes_out 0 147831 bytes_in 0 147831 station_ip 5.119.193.27 147831 port 504 147831 unique_id port 147836 username hashtadani4 147836 mac 147836 bytes_out 0 147836 bytes_in 0 147836 station_ip 83.122.225.149 147836 port 503 147836 unique_id port 147836 remote_ip 10.8.0.182 147838 username hashtadani4 147838 mac 147838 bytes_out 0 147838 bytes_in 0 147838 station_ip 83.122.225.149 147838 port 503 147838 unique_id port 147838 remote_ip 10.8.0.182 147842 username hashtadani4 147842 mac 147842 bytes_out 0 147842 bytes_in 0 147842 station_ip 83.122.225.149 147842 port 503 147842 unique_id port 147842 remote_ip 10.8.0.182 147846 username moradi 147846 kill_reason Another user logged on this global unique id 147846 mac 147846 bytes_out 0 147846 bytes_in 0 147846 station_ip 37.129.96.97 147846 port 266 147846 unique_id port 147849 username barzegar 147849 mac 147849 bytes_out 0 147849 bytes_in 0 147849 station_ip 5.119.137.225 147849 port 263 147849 unique_id port 147849 remote_ip 10.8.1.174 147851 username hashtadani4 147851 mac 147851 bytes_out 0 147851 bytes_in 0 147851 station_ip 83.122.225.149 147851 port 503 147851 unique_id port 147851 remote_ip 10.8.0.182 147852 username malekpoir 147852 mac 147852 bytes_out 0 147852 bytes_in 0 147852 station_ip 5.120.180.209 147852 port 492 147852 unique_id port 147852 remote_ip 10.8.0.58 147855 username morteza 147855 mac 147855 bytes_out 0 147855 bytes_in 0 147855 station_ip 37.129.49.36 147855 port 492 147855 unique_id port 147855 remote_ip 10.8.0.46 147860 username hamidsalari 147860 kill_reason Another user logged on this global unique id 147860 mac 147860 bytes_out 0 147860 bytes_in 0 147860 station_ip 5.119.193.27 147860 port 504 147860 unique_id port 147864 username hamidsalari 147864 kill_reason Another user logged on this global unique id 147864 mac 147864 bytes_out 0 147864 bytes_in 0 147864 station_ip 5.119.193.27 147864 port 504 147864 unique_id port 147867 username morteza 147867 kill_reason Another user logged on this global unique id 147867 mac 147867 bytes_out 0 147867 bytes_in 0 147867 station_ip 37.129.49.36 147867 port 516 147867 unique_id port 147867 remote_ip 10.8.0.46 147871 username hamidsalari 147871 kill_reason Another user logged on this global unique id 147871 mac 147871 bytes_out 0 147871 bytes_in 0 147871 station_ip 5.119.193.27 147871 port 504 147871 unique_id port 147877 username kalantary 147877 mac 147877 bytes_out 0 147877 bytes_in 0 147877 station_ip 113.203.120.82 147877 port 506 147877 unique_id port 147877 remote_ip 10.8.0.98 147881 username mehdizare 147881 mac 147881 bytes_out 0 147881 bytes_in 0 147881 station_ip 5.120.140.28 147881 port 491 147881 unique_id port 147881 remote_ip 10.8.0.90 147883 username hamidsalari 147883 kill_reason Another user logged on this global unique id 147883 mac 147883 bytes_out 0 147883 bytes_in 0 147883 station_ip 5.119.193.27 147883 port 504 147883 unique_id port 147884 username alihosseini1 147884 mac 147884 bytes_out 0 147884 bytes_in 0 147845 station_ip 5.119.137.225 147845 port 265 147845 unique_id port 147845 remote_ip 10.8.1.174 147847 username hashtadani4 147847 mac 147847 bytes_out 0 147847 bytes_in 0 147847 station_ip 83.122.225.149 147847 port 503 147847 unique_id port 147847 remote_ip 10.8.0.182 147854 username hashtadani4 147854 mac 147854 bytes_out 0 147854 bytes_in 0 147854 station_ip 83.122.225.149 147854 port 515 147854 unique_id port 147854 remote_ip 10.8.0.182 147856 username hashtadani4 147856 mac 147856 bytes_out 0 147856 bytes_in 0 147856 station_ip 83.122.225.149 147856 port 515 147856 unique_id port 147856 remote_ip 10.8.0.182 147858 username hashtadani4 147858 mac 147858 bytes_out 0 147858 bytes_in 0 147858 station_ip 83.122.225.149 147858 port 492 147858 unique_id port 147858 remote_ip 10.8.0.182 147862 username barzegar 147862 mac 147862 bytes_out 2260 147862 bytes_in 4846 147862 station_ip 5.119.137.225 147862 port 265 147862 unique_id port 147862 remote_ip 10.8.1.174 147863 username farhad2 147863 mac 147863 bytes_out 398296 147863 bytes_in 1324998 147863 station_ip 5.119.170.213 147863 port 263 147863 unique_id port 147863 remote_ip 10.8.1.222 147865 username hashtadani4 147865 kill_reason Another user logged on this global unique id 147865 mac 147865 bytes_out 0 147865 bytes_in 0 147865 station_ip 83.122.225.149 147865 port 492 147865 unique_id port 147865 remote_ip 10.8.0.182 147868 username alihosseini1 147868 kill_reason Another user logged on this global unique id 147868 mac 147868 bytes_out 0 147868 bytes_in 0 147868 station_ip 5.119.112.178 147868 port 503 147868 unique_id port 147868 remote_ip 10.8.0.166 147869 username kalantary 147869 mac 147869 bytes_out 0 147869 bytes_in 0 147869 station_ip 113.203.120.82 147869 port 514 147869 unique_id port 147869 remote_ip 10.8.0.98 147872 username mohammadjavad 147872 mac 147872 bytes_out 0 147872 bytes_in 0 147872 station_ip 83.123.44.159 147872 port 445 147872 unique_id port 147872 remote_ip 10.8.0.142 147873 username moradi 147873 mac 147873 bytes_out 0 147873 bytes_in 0 147873 station_ip 37.129.96.97 147873 port 266 147873 unique_id port 147875 username rahim 147875 mac 147875 bytes_out 0 147875 bytes_in 0 147875 station_ip 5.120.180.50 147875 port 513 147875 unique_id port 147876 username alihosseini1 147876 mac 147876 bytes_out 0 147876 bytes_in 0 147876 station_ip 5.119.112.178 147876 port 503 147876 unique_id port 147878 username godarzi 147878 mac 147878 bytes_out 0 147878 bytes_in 0 147878 station_ip 5.120.41.138 147878 port 445 147878 unique_id port 147878 remote_ip 10.8.0.174 147882 username mahdiyehalizadeh 147882 mac 147882 bytes_out 353237 147882 bytes_in 3964270 147882 station_ip 5.120.35.160 147882 port 505 147882 unique_id port 147882 remote_ip 10.8.0.82 147887 username morteza 147887 mac 147887 bytes_out 0 147887 bytes_in 0 147887 station_ip 37.129.49.36 147887 port 516 147887 unique_id port 147892 username hamidsalari 147892 kill_reason Another user logged on this global unique id 147892 mac 147892 bytes_out 0 147892 bytes_in 0 147892 station_ip 5.119.193.27 147892 port 504 147892 unique_id port 147893 username morteza 147893 mac 147893 bytes_out 0 147893 bytes_in 0 147893 station_ip 37.129.49.36 147893 port 263 147893 unique_id port 147893 remote_ip 10.8.1.62 147895 username barzegar 147895 mac 147895 bytes_out 0 147895 bytes_in 0 147895 station_ip 5.120.148.63 147895 port 503 147895 unique_id port 147857 mac 147857 bytes_out 242927 147857 bytes_in 2716013 147857 station_ip 5.120.41.138 147857 port 503 147857 unique_id port 147857 remote_ip 10.8.0.174 147859 username rezaei 147859 mac 147859 bytes_out 0 147859 bytes_in 0 147859 station_ip 5.119.4.59 147859 port 514 147859 unique_id port 147861 username vanila 147861 mac 147861 bytes_out 321352 147861 bytes_in 754228 147861 station_ip 37.129.188.175 147861 port 445 147861 unique_id port 147861 remote_ip 10.8.0.178 147866 username hamidsalari 147866 kill_reason Another user logged on this global unique id 147866 mac 147866 bytes_out 0 147866 bytes_in 0 147866 station_ip 5.119.193.27 147866 port 504 147866 unique_id port 147870 username forozandeh1 147870 mac 147870 bytes_out 0 147870 bytes_in 0 147870 station_ip 83.123.94.132 147870 port 506 147870 unique_id port 147870 remote_ip 10.8.0.130 147874 username hamidsalari 147874 kill_reason Another user logged on this global unique id 147874 mac 147874 bytes_out 0 147874 bytes_in 0 147874 station_ip 5.119.193.27 147874 port 504 147874 unique_id port 147879 username alihosseini1 147879 mac 147879 bytes_out 0 147879 bytes_in 0 147879 station_ip 5.119.112.178 147879 port 265 147879 unique_id port 147879 remote_ip 10.8.1.106 147880 username hamidsalari 147880 kill_reason Another user logged on this global unique id 147880 mac 147880 bytes_out 0 147880 bytes_in 0 147880 station_ip 5.119.193.27 147880 port 504 147880 unique_id port 147886 username hamidsalari 147886 kill_reason Another user logged on this global unique id 147886 mac 147886 bytes_out 0 147886 bytes_in 0 147886 station_ip 5.119.193.27 147886 port 504 147886 unique_id port 147888 username farhad2 147888 kill_reason Another user logged on this global unique id 147888 mac 147888 bytes_out 0 147888 bytes_in 0 147888 station_ip 5.119.170.213 147888 port 263 147888 unique_id port 147888 remote_ip 10.8.1.222 147889 username alihosseini1 147889 mac 147889 bytes_out 0 147889 bytes_in 0 147889 station_ip 5.119.112.178 147889 port 265 147889 unique_id port 147889 remote_ip 10.8.1.106 147891 username farhad2 147891 mac 147891 bytes_out 0 147891 bytes_in 0 147891 station_ip 5.119.170.213 147891 port 263 147891 unique_id port 147894 username mehdizare 147894 mac 147894 bytes_out 0 147894 bytes_in 0 147894 station_ip 5.120.140.28 147894 port 445 147894 unique_id port 147894 remote_ip 10.8.0.90 147898 username hamidsalari 147898 kill_reason Another user logged on this global unique id 147898 mac 147898 bytes_out 0 147898 bytes_in 0 147898 station_ip 5.119.193.27 147898 port 504 147898 unique_id port 147899 username mohammadjavad 147899 mac 147899 bytes_out 0 147899 bytes_in 0 147899 station_ip 113.203.20.81 147899 port 445 147899 unique_id port 147899 remote_ip 10.8.0.142 147902 username mehdizare 147902 mac 147902 bytes_out 0 147902 bytes_in 0 147902 station_ip 5.120.140.28 147902 port 263 147902 unique_id port 147902 remote_ip 10.8.1.42 147903 username kordestani 147903 mac 147903 bytes_out 0 147903 bytes_in 0 147903 station_ip 151.235.95.195 147903 port 505 147903 unique_id port 147903 remote_ip 10.8.0.134 147905 username hashtadani4 147905 mac 147905 bytes_out 0 147905 bytes_in 0 147905 station_ip 83.122.225.149 147905 port 492 147905 unique_id port 147907 username meysam 147907 mac 147907 bytes_out 0 147907 bytes_in 0 147907 station_ip 188.159.252.203 147907 port 445 147907 unique_id port 147907 remote_ip 10.8.0.110 147910 username barzegar 147910 mac 147884 station_ip 5.119.112.178 147884 port 265 147884 unique_id port 147884 remote_ip 10.8.1.106 147885 username alihosseini1 147885 mac 147885 bytes_out 0 147885 bytes_in 0 147885 station_ip 5.119.112.178 147885 port 265 147885 unique_id port 147885 remote_ip 10.8.1.106 147890 username morteza 147890 mac 147890 bytes_out 0 147890 bytes_in 0 147890 station_ip 37.129.49.36 147890 port 491 147890 unique_id port 147890 remote_ip 10.8.0.46 147896 username morteza 147896 mac 147896 bytes_out 0 147896 bytes_in 0 147896 station_ip 37.129.49.36 147896 port 503 147896 unique_id port 147896 remote_ip 10.8.0.46 147906 username hamidsalari 147906 kill_reason Another user logged on this global unique id 147906 mac 147906 bytes_out 0 147906 bytes_in 0 147906 station_ip 5.119.193.27 147906 port 504 147906 unique_id port 147908 username hashtadani4 147908 mac 147908 bytes_out 0 147908 bytes_in 0 147908 station_ip 83.122.225.149 147908 port 505 147908 unique_id port 147908 remote_ip 10.8.0.182 147912 username hashtadani4 147912 mac 147912 bytes_out 0 147912 bytes_in 0 147912 station_ip 83.122.225.149 147912 port 505 147912 unique_id port 147912 remote_ip 10.8.0.182 147918 username barzegar 147918 mac 147918 bytes_out 0 147918 bytes_in 0 147918 station_ip 5.119.236.105 147918 port 492 147918 unique_id port 147918 remote_ip 10.8.0.234 147924 username morteza 147924 mac 147924 bytes_out 0 147924 bytes_in 0 147924 station_ip 37.129.49.36 147924 port 263 147924 unique_id port 147924 remote_ip 10.8.1.62 147929 username hamidsalari 147929 mac 147929 bytes_out 0 147929 bytes_in 0 147929 station_ip 5.119.193.27 147929 port 504 147929 unique_id port 147936 username mehdizare 147936 mac 147936 bytes_out 19878 147936 bytes_in 37374 147936 station_ip 5.120.140.28 147936 port 513 147936 unique_id port 147936 remote_ip 10.8.0.90 147938 username meysam 147938 mac 147938 bytes_out 1323342 147938 bytes_in 19917963 147938 station_ip 188.159.252.203 147938 port 492 147938 unique_id port 147938 remote_ip 10.8.0.110 147939 username farhad2 147939 mac 147939 bytes_out 0 147939 bytes_in 0 147939 station_ip 5.119.170.213 147939 port 492 147939 unique_id port 147939 remote_ip 10.8.0.190 147940 username godarzi 147940 mac 147940 bytes_out 0 147940 bytes_in 0 147940 station_ip 5.120.41.138 147940 port 504 147940 unique_id port 147940 remote_ip 10.8.0.174 147945 username farhad2 147945 mac 147945 bytes_out 226890 147945 bytes_in 837072 147945 station_ip 5.119.170.213 147945 port 492 147945 unique_id port 147945 remote_ip 10.8.0.190 147946 username mohammadjavad 147946 mac 147946 bytes_out 0 147946 bytes_in 0 147946 station_ip 113.203.40.157 147946 port 491 147946 unique_id port 147946 remote_ip 10.8.0.142 147948 username fezealinaghi 147948 mac 147948 bytes_out 12592 147948 bytes_in 20519 147948 station_ip 83.123.124.8 147948 port 265 147948 unique_id port 147948 remote_ip 10.8.1.162 147952 username farhad2 147952 mac 147952 bytes_out 0 147952 bytes_in 0 147952 station_ip 5.120.79.46 147952 port 491 147952 unique_id port 147952 remote_ip 10.8.0.190 147956 username morteza 147956 mac 147956 bytes_out 0 147956 bytes_in 0 147956 station_ip 37.129.49.36 147956 port 491 147956 unique_id port 147956 remote_ip 10.8.0.46 147957 username morteza 147957 mac 147957 bytes_out 0 147957 bytes_in 0 147957 station_ip 37.129.49.36 147957 port 265 147957 unique_id port 147895 remote_ip 10.8.0.234 147897 username morteza 147897 mac 147897 bytes_out 0 147897 bytes_in 0 147897 station_ip 37.129.49.36 147897 port 503 147897 unique_id port 147897 remote_ip 10.8.0.46 147900 username hamidsalari 147900 kill_reason Another user logged on this global unique id 147900 mac 147900 bytes_out 0 147900 bytes_in 0 147900 station_ip 5.119.193.27 147900 port 504 147900 unique_id port 147901 username forozandeh1 147901 mac 147901 bytes_out 1259185 147901 bytes_in 14592161 147901 station_ip 113.203.57.31 147901 port 513 147901 unique_id port 147901 remote_ip 10.8.0.130 147904 username hamidsalari 147904 kill_reason Another user logged on this global unique id 147904 mac 147904 bytes_out 0 147904 bytes_in 0 147904 station_ip 5.119.193.27 147904 port 504 147904 unique_id port 147909 username hashtadani4 147909 mac 147909 bytes_out 0 147909 bytes_in 0 147909 station_ip 83.122.225.149 147909 port 266 147909 unique_id port 147909 remote_ip 10.8.1.142 147911 username hashtadani4 147911 mac 147911 bytes_out 0 147911 bytes_in 0 147911 station_ip 83.122.225.149 147911 port 266 147911 unique_id port 147911 remote_ip 10.8.1.142 147914 username mohammadjavad 147914 mac 147914 bytes_out 0 147914 bytes_in 0 147914 station_ip 113.203.20.81 147914 port 492 147914 unique_id port 147914 remote_ip 10.8.0.142 147915 username morteza 147915 mac 147915 bytes_out 0 147915 bytes_in 0 147915 station_ip 37.129.49.36 147915 port 266 147915 unique_id port 147915 remote_ip 10.8.1.62 147917 username mehdizare 147917 mac 147917 bytes_out 19728 147917 bytes_in 22194 147917 station_ip 5.120.140.28 147917 port 263 147917 unique_id port 147917 remote_ip 10.8.1.42 147919 username amin.saeedi 147919 unique_id port 147919 terminate_cause User-Request 147919 bytes_out 7705458 147919 bytes_in 215696763 147919 station_ip 31.56.159.123 147919 port 15730974 147919 nas_port_type Virtual 147919 remote_ip 5.5.5.225 147920 username hamidsalari 147920 kill_reason Another user logged on this global unique id 147920 mac 147920 bytes_out 0 147920 bytes_in 0 147920 station_ip 5.119.193.27 147920 port 504 147920 unique_id port 147922 username godarzi 147922 mac 147922 bytes_out 0 147922 bytes_in 0 147922 station_ip 5.120.41.138 147922 port 503 147922 unique_id port 147922 remote_ip 10.8.0.174 147925 username hamidsalari 147925 kill_reason Another user logged on this global unique id 147925 mac 147925 bytes_out 0 147925 bytes_in 0 147925 station_ip 5.119.193.27 147925 port 504 147925 unique_id port 147926 username barzegar 147926 mac 147926 bytes_out 0 147926 bytes_in 0 147926 station_ip 5.119.236.105 147926 port 491 147926 unique_id port 147926 remote_ip 10.8.0.234 147928 username kalantary 147928 mac 147928 bytes_out 0 147928 bytes_in 0 147928 station_ip 113.203.76.106 147928 port 445 147928 unique_id port 147928 remote_ip 10.8.0.98 147930 username mehdizare 147930 mac 147930 bytes_out 0 147930 bytes_in 0 147930 station_ip 5.120.140.28 147930 port 266 147930 unique_id port 147930 remote_ip 10.8.1.42 147931 username mehdizare 147931 mac 147931 bytes_out 0 147931 bytes_in 0 147931 station_ip 5.120.140.28 147931 port 263 147931 unique_id port 147931 remote_ip 10.8.1.42 147932 username mehdizare 147932 mac 147932 bytes_out 0 147932 bytes_in 0 147932 station_ip 5.120.140.28 147932 port 491 147932 unique_id port 147932 remote_ip 10.8.0.90 147934 username barzegar 147934 mac 147934 bytes_out 2974 147934 bytes_in 5279 147934 station_ip 5.119.236.105 147934 port 504 147910 bytes_out 0 147910 bytes_in 0 147910 station_ip 5.119.236.105 147910 port 505 147910 unique_id port 147910 remote_ip 10.8.0.234 147913 username hamidsalari 147913 kill_reason Another user logged on this global unique id 147913 mac 147913 bytes_out 0 147913 bytes_in 0 147913 station_ip 5.119.193.27 147913 port 504 147913 unique_id port 147916 username farhad2 147916 mac 147916 bytes_out 2551056 147916 bytes_in 24375673 147916 station_ip 5.119.170.213 147916 port 491 147916 unique_id port 147916 remote_ip 10.8.0.190 147921 username farhad2 147921 mac 147921 bytes_out 235550 147921 bytes_in 1436387 147921 station_ip 5.119.170.213 147921 port 491 147921 unique_id port 147921 remote_ip 10.8.0.190 147923 username mehdizare 147923 mac 147923 bytes_out 16064 147923 bytes_in 36192 147923 station_ip 5.120.140.28 147923 port 263 147923 unique_id port 147923 remote_ip 10.8.1.42 147927 username alihosseini1 147927 mac 147927 bytes_out 567158 147927 bytes_in 4654669 147927 station_ip 5.119.112.178 147927 port 265 147927 unique_id port 147927 remote_ip 10.8.1.106 147933 username farhad2 147933 mac 147933 bytes_out 240914 147933 bytes_in 798961 147933 station_ip 5.119.170.213 147933 port 503 147933 unique_id port 147933 remote_ip 10.8.0.190 147935 username morteza 147935 mac 147935 bytes_out 0 147935 bytes_in 0 147935 station_ip 37.129.49.36 147935 port 263 147935 unique_id port 147935 remote_ip 10.8.1.62 147937 username morteza 147937 mac 147937 bytes_out 0 147937 bytes_in 0 147937 station_ip 37.129.49.36 147937 port 263 147937 unique_id port 147937 remote_ip 10.8.1.62 147944 username moradi 147944 kill_reason Maximum check online fails reached 147944 mac 147944 bytes_out 0 147944 bytes_in 0 147944 station_ip 46.225.209.243 147944 port 263 147944 unique_id port 147947 username hamidsalari 147947 mac 147947 bytes_out 0 147947 bytes_in 0 147947 station_ip 5.120.28.196 147947 port 445 147947 unique_id port 147947 remote_ip 10.8.0.222 147949 username hashtadani4 147949 kill_reason Another user logged on this global unique id 147949 mac 147949 bytes_out 0 147949 bytes_in 0 147949 station_ip 83.122.225.149 147949 port 505 147949 unique_id port 147949 remote_ip 10.8.0.182 147950 username amirabbas 147950 unique_id port 147950 terminate_cause User-Request 147950 bytes_out 16902476 147950 bytes_in 492490789 147950 station_ip 37.27.10.12 147950 port 15730970 147950 nas_port_type Virtual 147950 remote_ip 5.5.5.255 147953 username barzegar 147953 mac 147953 bytes_out 0 147953 bytes_in 0 147953 station_ip 5.119.236.105 147953 port 491 147953 unique_id port 147953 remote_ip 10.8.0.234 147955 username farhad2 147955 mac 147955 bytes_out 0 147955 bytes_in 0 147955 station_ip 5.120.79.46 147955 port 512 147955 unique_id port 147955 remote_ip 10.8.0.190 147962 username morteza 147962 mac 147962 bytes_out 0 147962 bytes_in 0 147962 station_ip 37.129.49.36 147962 port 266 147962 unique_id port 147962 remote_ip 10.8.1.62 147963 username kalantary 147963 mac 147963 bytes_out 0 147963 bytes_in 0 147963 station_ip 113.203.53.158 147963 port 513 147963 unique_id port 147963 remote_ip 10.8.0.98 147965 username farhad2 147965 mac 147965 bytes_out 0 147965 bytes_in 0 147965 station_ip 5.119.243.205 147965 port 512 147965 unique_id port 147965 remote_ip 10.8.0.190 147966 username vanila 147966 mac 147966 bytes_out 0 147966 bytes_in 0 147966 station_ip 37.129.245.103 147966 port 514 147966 unique_id port 147966 remote_ip 10.8.0.178 147934 unique_id port 147934 remote_ip 10.8.0.234 147941 username barzegar 147941 mac 147941 bytes_out 0 147941 bytes_in 0 147941 station_ip 5.119.236.105 147941 port 513 147941 unique_id port 147941 remote_ip 10.8.0.234 147942 username forozandeh1 147942 mac 147942 bytes_out 250346 147942 bytes_in 756044 147942 station_ip 113.203.57.31 147942 port 506 147942 unique_id port 147942 remote_ip 10.8.0.130 147943 username mosi 147943 mac 147943 bytes_out 0 147943 bytes_in 0 147943 station_ip 151.235.107.13 147943 port 512 147943 unique_id port 147943 remote_ip 10.8.0.138 147951 username farhad2 147951 mac 147951 bytes_out 0 147951 bytes_in 0 147951 station_ip 5.120.62.157 147951 port 491 147951 unique_id port 147951 remote_ip 10.8.0.190 147954 username kalantary 147954 mac 147954 bytes_out 0 147954 bytes_in 0 147954 station_ip 113.203.53.158 147954 port 492 147954 unique_id port 147954 remote_ip 10.8.0.98 147958 username morteza 147958 mac 147958 bytes_out 0 147958 bytes_in 0 147958 station_ip 37.129.49.36 147958 port 512 147958 unique_id port 147958 remote_ip 10.8.0.46 147960 username barzegar 147960 mac 147960 bytes_out 0 147960 bytes_in 0 147960 station_ip 5.119.236.105 147960 port 512 147960 unique_id port 147960 remote_ip 10.8.0.234 147961 username farhad2 147961 mac 147961 bytes_out 0 147961 bytes_in 0 147961 station_ip 5.119.243.205 147961 port 265 147961 unique_id port 147961 remote_ip 10.8.1.222 147964 username amin.saeedi 147964 unique_id port 147964 terminate_cause User-Request 147964 bytes_out 888086 147964 bytes_in 19092062 147964 station_ip 31.56.159.123 147964 port 15730977 147964 nas_port_type Virtual 147964 remote_ip 5.5.5.201 147968 username barzegar 147968 mac 147968 bytes_out 0 147968 bytes_in 0 147968 station_ip 5.119.236.105 147968 port 514 147968 unique_id port 147968 remote_ip 10.8.0.234 147969 username hashtadani4 147969 mac 147969 bytes_out 0 147969 bytes_in 0 147969 station_ip 83.122.225.149 147969 port 505 147969 unique_id port 147972 username morteza 147972 mac 147972 bytes_out 0 147972 bytes_in 0 147972 station_ip 37.129.49.36 147972 port 265 147972 unique_id port 147972 remote_ip 10.8.1.62 147977 username hashtadani4 147977 mac 147977 bytes_out 0 147977 bytes_in 0 147977 station_ip 83.122.225.149 147977 port 505 147977 unique_id port 147977 remote_ip 10.8.0.182 147978 username hashtadani4 147978 mac 147978 bytes_out 0 147978 bytes_in 0 147978 station_ip 83.122.225.149 147978 port 505 147978 unique_id port 147978 remote_ip 10.8.0.182 147981 username hashtadani4 147981 mac 147981 bytes_out 0 147981 bytes_in 0 147981 station_ip 83.122.225.149 147981 port 505 147981 unique_id port 147981 remote_ip 10.8.0.182 147991 username hashtadani4 147991 mac 147991 bytes_out 0 147991 bytes_in 0 147991 station_ip 83.122.225.149 147991 port 265 147991 unique_id port 147991 remote_ip 10.8.1.142 147993 username hashtadani4 147993 mac 147993 bytes_out 0 147993 bytes_in 0 147993 station_ip 83.122.225.149 147993 port 491 147993 unique_id port 147993 remote_ip 10.8.0.182 147994 username hashtadani4 147994 mac 147994 bytes_out 0 147994 bytes_in 0 147994 station_ip 83.122.225.149 147994 port 504 147994 unique_id port 147994 remote_ip 10.8.0.182 147995 username hashtadani4 147995 mac 147995 bytes_out 0 147995 bytes_in 0 147995 station_ip 83.122.225.149 147995 port 504 147995 unique_id port 147995 remote_ip 10.8.0.182 147957 remote_ip 10.8.1.62 147959 username morteza 147959 mac 147959 bytes_out 0 147959 bytes_in 0 147959 station_ip 37.129.49.36 147959 port 266 147959 unique_id port 147959 remote_ip 10.8.1.62 147967 username morteza 147967 mac 147967 bytes_out 0 147967 bytes_in 0 147967 station_ip 37.129.49.36 147967 port 265 147967 unique_id port 147967 remote_ip 10.8.1.62 147970 username hashtadani4 147970 mac 147970 bytes_out 0 147970 bytes_in 0 147970 station_ip 83.122.225.149 147970 port 265 147970 unique_id port 147970 remote_ip 10.8.1.142 147974 username khalili 147974 kill_reason Another user logged on this global unique id 147974 mac 147974 bytes_out 0 147974 bytes_in 0 147974 station_ip 5.119.173.8 147974 port 489 147974 unique_id port 147976 username meysam 147976 mac 147976 bytes_out 0 147976 bytes_in 0 147976 station_ip 188.159.252.203 147976 port 506 147976 unique_id port 147979 username farhad2 147979 mac 147979 bytes_out 624236 147979 bytes_in 3434480 147979 station_ip 5.119.243.205 147979 port 513 147979 unique_id port 147979 remote_ip 10.8.0.190 147980 username barzegar 147980 mac 147980 bytes_out 0 147980 bytes_in 0 147980 station_ip 5.119.236.105 147980 port 506 147980 unique_id port 147980 remote_ip 10.8.0.234 147982 username hashtadani4 147982 mac 147982 bytes_out 0 147982 bytes_in 0 147982 station_ip 83.122.225.149 147982 port 505 147982 unique_id port 147982 remote_ip 10.8.0.182 147983 username hashtadani4 147983 mac 147983 bytes_out 0 147983 bytes_in 0 147983 station_ip 83.122.225.149 147983 port 265 147983 unique_id port 147983 remote_ip 10.8.1.142 147985 username godarzi 147985 mac 147985 bytes_out 0 147985 bytes_in 0 147985 station_ip 5.120.41.138 147985 port 445 147985 unique_id port 147985 remote_ip 10.8.0.174 147988 username hashtadani4 147988 mac 147988 bytes_out 0 147988 bytes_in 0 147988 station_ip 83.122.225.149 147988 port 265 147988 unique_id port 147988 remote_ip 10.8.1.142 147990 username farhad2 147990 mac 147990 bytes_out 146446 147990 bytes_in 634721 147990 station_ip 5.119.243.205 147990 port 513 147990 unique_id port 147990 remote_ip 10.8.0.190 147997 username hashtadani4 147997 mac 147997 bytes_out 0 147997 bytes_in 0 147997 station_ip 83.122.225.149 147997 port 265 147997 unique_id port 147997 remote_ip 10.8.1.142 148000 username hashtadani4 148000 mac 148000 bytes_out 0 148000 bytes_in 0 148000 station_ip 83.122.225.149 148000 port 265 148000 unique_id port 148000 remote_ip 10.8.1.142 148006 username mehdizare 148006 mac 148006 bytes_out 0 148006 bytes_in 0 148006 station_ip 5.120.140.28 148006 port 503 148006 unique_id port 148006 remote_ip 10.8.0.90 148008 username hashtadani4 148008 mac 148008 bytes_out 0 148008 bytes_in 0 148008 station_ip 83.122.225.149 148008 port 503 148008 unique_id port 148008 remote_ip 10.8.0.182 148009 username fezealinaghi 148009 mac 148009 bytes_out 0 148009 bytes_in 0 148009 station_ip 83.123.124.8 148009 port 492 148009 unique_id port 148009 remote_ip 10.8.0.78 148010 username kalantary 148010 mac 148010 bytes_out 0 148010 bytes_in 0 148010 station_ip 113.203.78.154 148010 port 505 148010 unique_id port 148010 remote_ip 10.8.0.98 148012 username morteza 148012 mac 148012 bytes_out 0 148012 bytes_in 0 148012 station_ip 37.129.49.36 148012 port 503 148012 unique_id port 148012 remote_ip 10.8.0.46 148032 username hashtadani4 148032 mac 147971 username hashtadani4 147971 mac 147971 bytes_out 0 147971 bytes_in 0 147971 station_ip 83.122.225.149 147971 port 505 147971 unique_id port 147971 remote_ip 10.8.0.182 147973 username hashtadani4 147973 mac 147973 bytes_out 0 147973 bytes_in 0 147973 station_ip 83.122.225.149 147973 port 505 147973 unique_id port 147973 remote_ip 10.8.0.182 147975 username meysam 147975 kill_reason Another user logged on this global unique id 147975 mac 147975 bytes_out 0 147975 bytes_in 0 147975 station_ip 188.159.252.203 147975 port 506 147975 unique_id port 147975 remote_ip 10.8.0.110 147984 username hashtadani4 147984 mac 147984 bytes_out 0 147984 bytes_in 0 147984 station_ip 83.122.225.149 147984 port 265 147984 unique_id port 147984 remote_ip 10.8.1.142 147986 username forozandeh1 147986 mac 147986 bytes_out 755380 147986 bytes_in 3556464 147986 station_ip 37.129.111.124 147986 port 491 147986 unique_id port 147986 remote_ip 10.8.0.130 147987 username mosi 147987 mac 147987 bytes_out 438881 147987 bytes_in 1631687 147987 station_ip 151.235.107.13 147987 port 504 147987 unique_id port 147987 remote_ip 10.8.0.138 147989 username hashtadani4 147989 mac 147989 bytes_out 0 147989 bytes_in 0 147989 station_ip 83.122.225.149 147989 port 265 147989 unique_id port 147989 remote_ip 10.8.1.142 147992 username vanila 147992 mac 147992 bytes_out 604827 147992 bytes_in 7595952 147992 station_ip 37.129.245.103 147992 port 512 147992 unique_id port 147992 remote_ip 10.8.0.178 147998 username hashtadani4 147998 mac 147998 bytes_out 0 147998 bytes_in 0 147998 station_ip 83.122.225.149 147998 port 265 147998 unique_id port 147998 remote_ip 10.8.1.142 147999 username hashtadani4 147999 mac 147999 bytes_out 0 147999 bytes_in 0 147999 station_ip 83.122.225.149 147999 port 504 147999 unique_id port 147999 remote_ip 10.8.0.182 148002 username barzegar 148002 mac 148002 bytes_out 0 148002 bytes_in 0 148002 station_ip 5.119.236.105 148002 port 266 148002 unique_id port 148002 remote_ip 10.8.1.174 148005 username hashtadani4 148005 mac 148005 bytes_out 690510 148005 bytes_in 9662509 148005 station_ip 83.122.225.149 148005 port 265 148005 unique_id port 148005 remote_ip 10.8.1.142 148007 username hashtadani4 148007 mac 148007 bytes_out 0 148007 bytes_in 0 148007 station_ip 83.122.225.149 148007 port 503 148007 unique_id port 148007 remote_ip 10.8.0.182 148011 username hashtadani4 148011 mac 148011 bytes_out 0 148011 bytes_in 0 148011 station_ip 83.122.225.149 148011 port 492 148011 unique_id port 148011 remote_ip 10.8.0.182 148013 username hashtadani4 148013 mac 148013 bytes_out 0 148013 bytes_in 0 148013 station_ip 83.122.225.149 148013 port 505 148013 unique_id port 148013 remote_ip 10.8.0.182 148016 username hashtadani4 148016 mac 148016 bytes_out 0 148016 bytes_in 0 148016 station_ip 83.122.225.149 148016 port 503 148016 unique_id port 148016 remote_ip 10.8.0.182 148019 username hashtadani4 148019 mac 148019 bytes_out 0 148019 bytes_in 0 148019 station_ip 83.122.225.149 148019 port 445 148019 unique_id port 148019 remote_ip 10.8.0.182 148022 username hashtadani4 148022 mac 148022 bytes_out 0 148022 bytes_in 0 148022 station_ip 83.122.225.149 148022 port 512 148022 unique_id port 148022 remote_ip 10.8.0.182 148023 username barzegar 148023 mac 148023 bytes_out 0 148023 bytes_in 0 148023 station_ip 5.119.236.105 148023 port 445 148023 unique_id port 147996 username morteza 147996 mac 147996 bytes_out 0 147996 bytes_in 0 147996 station_ip 37.129.49.36 147996 port 505 147996 unique_id port 147996 remote_ip 10.8.0.46 148001 username farhad2 148001 mac 148001 bytes_out 0 148001 bytes_in 0 148001 station_ip 5.119.243.205 148001 port 491 148001 unique_id port 148001 remote_ip 10.8.0.190 148003 username morteza 148003 mac 148003 bytes_out 0 148003 bytes_in 0 148003 station_ip 37.129.49.36 148003 port 266 148003 unique_id port 148003 remote_ip 10.8.1.62 148004 username aminvpn 148004 unique_id port 148004 terminate_cause Lost-Carrier 148004 bytes_out 1544102 148004 bytes_in 44374659 148004 station_ip 5.119.124.170 148004 port 15730978 148004 nas_port_type Virtual 148004 remote_ip 5.5.5.228 148014 username hashtadani4 148014 mac 148014 bytes_out 0 148014 bytes_in 0 148014 station_ip 83.122.225.149 148014 port 503 148014 unique_id port 148014 remote_ip 10.8.0.182 148015 username mosi 148015 mac 148015 bytes_out 0 148015 bytes_in 0 148015 station_ip 5.134.177.237 148015 port 445 148015 unique_id port 148015 remote_ip 10.8.0.138 148017 username hashtadani4 148017 mac 148017 bytes_out 0 148017 bytes_in 0 148017 station_ip 83.122.225.149 148017 port 445 148017 unique_id port 148017 remote_ip 10.8.0.182 148018 username mehdizare 148018 mac 148018 bytes_out 0 148018 bytes_in 0 148018 station_ip 5.120.140.28 148018 port 512 148018 unique_id port 148018 remote_ip 10.8.0.90 148020 username hashtadani4 148020 mac 148020 bytes_out 0 148020 bytes_in 0 148020 station_ip 83.122.225.149 148020 port 445 148020 unique_id port 148020 remote_ip 10.8.0.182 148021 username hashtadani4 148021 mac 148021 bytes_out 0 148021 bytes_in 0 148021 station_ip 83.122.225.149 148021 port 505 148021 unique_id port 148021 remote_ip 10.8.0.182 148024 username barzegar 148024 mac 148024 bytes_out 0 148024 bytes_in 0 148024 station_ip 5.119.236.105 148024 port 445 148024 unique_id port 148024 remote_ip 10.8.0.234 148028 username sarcheshmepour 148028 mac 148028 bytes_out 0 148028 bytes_in 0 148028 station_ip 83.122.35.108 148028 port 445 148028 unique_id port 148028 remote_ip 10.8.0.94 148031 username sarcheshmepour 148031 mac 148031 bytes_out 0 148031 bytes_in 0 148031 station_ip 83.122.53.209 148031 port 506 148031 unique_id port 148031 remote_ip 10.8.0.94 148035 username fezealinaghi 148035 mac 148035 bytes_out 0 148035 bytes_in 0 148035 station_ip 83.123.124.8 148035 port 492 148035 unique_id port 148035 remote_ip 10.8.0.78 148039 username morteza 148039 mac 148039 bytes_out 0 148039 bytes_in 0 148039 station_ip 37.129.49.36 148039 port 265 148039 unique_id port 148039 remote_ip 10.8.1.62 148040 username morteza 148040 mac 148040 bytes_out 0 148040 bytes_in 0 148040 station_ip 37.129.49.36 148040 port 265 148040 unique_id port 148040 remote_ip 10.8.1.62 148043 username meysam 148043 mac 148043 bytes_out 0 148043 bytes_in 0 148043 station_ip 188.159.252.203 148043 port 514 148043 unique_id port 148043 remote_ip 10.8.0.110 148057 username farhad2 148057 mac 148057 bytes_out 0 148057 bytes_in 0 148057 station_ip 5.120.57.215 148057 port 265 148057 unique_id port 148057 remote_ip 10.8.1.222 148058 username barzegar 148058 mac 148058 bytes_out 0 148058 bytes_in 0 148058 station_ip 5.119.236.105 148058 port 265 148058 unique_id port 148058 remote_ip 10.8.1.174 148060 username morteza 148060 mac 148023 remote_ip 10.8.0.234 148025 username rezaei 148025 mac 148025 bytes_out 669157 148025 bytes_in 7145509 148025 station_ip 5.119.4.59 148025 port 506 148025 unique_id port 148025 remote_ip 10.8.0.230 148026 username morteza 148026 mac 148026 bytes_out 0 148026 bytes_in 0 148026 station_ip 37.129.49.36 148026 port 445 148026 unique_id port 148026 remote_ip 10.8.0.46 148027 username meysam 148027 mac 148027 bytes_out 0 148027 bytes_in 0 148027 station_ip 188.159.252.203 148027 port 514 148027 unique_id port 148027 remote_ip 10.8.0.110 148029 username barzegar 148029 mac 148029 bytes_out 0 148029 bytes_in 0 148029 station_ip 5.119.236.105 148029 port 265 148029 unique_id port 148029 remote_ip 10.8.1.174 148030 username morteza 148030 mac 148030 bytes_out 0 148030 bytes_in 0 148030 station_ip 37.129.49.36 148030 port 445 148030 unique_id port 148030 remote_ip 10.8.0.46 148033 username sarcheshmepour 148033 mac 148033 bytes_out 0 148033 bytes_in 0 148033 station_ip 83.123.206.170 148033 port 445 148033 unique_id port 148033 remote_ip 10.8.0.94 148037 username morteza 148037 mac 148037 bytes_out 0 148037 bytes_in 0 148037 station_ip 37.129.49.36 148037 port 506 148037 unique_id port 148037 remote_ip 10.8.0.46 148038 username sarcheshmepour 148038 mac 148038 bytes_out 0 148038 bytes_in 0 148038 station_ip 46.225.209.243 148038 port 492 148038 unique_id port 148038 remote_ip 10.8.0.94 148045 username morteza 148045 mac 148045 bytes_out 0 148045 bytes_in 0 148045 station_ip 37.129.49.36 148045 port 265 148045 unique_id port 148045 remote_ip 10.8.1.62 148046 username morteza 148046 mac 148046 bytes_out 0 148046 bytes_in 0 148046 station_ip 37.129.49.36 148046 port 506 148046 unique_id port 148046 remote_ip 10.8.0.46 148048 username khalili 148048 mac 148048 bytes_out 0 148048 bytes_in 0 148048 station_ip 5.119.173.8 148048 port 489 148048 unique_id port 148050 username amirabbas 148050 unique_id port 148050 terminate_cause User-Request 148050 bytes_out 8795486 148050 bytes_in 245418755 148050 station_ip 37.27.10.12 148050 port 15730980 148050 nas_port_type Virtual 148050 remote_ip 5.5.5.254 148052 username hashtadani4 148052 mac 148052 bytes_out 0 148052 bytes_in 0 148052 station_ip 83.122.225.149 148052 port 489 148052 unique_id port 148052 remote_ip 10.8.0.182 148054 username khalili 148054 mac 148054 bytes_out 0 148054 bytes_in 0 148054 station_ip 5.119.173.8 148054 port 506 148054 unique_id port 148054 remote_ip 10.8.0.86 148059 username morteza 148059 mac 148059 bytes_out 0 148059 bytes_in 0 148059 station_ip 37.129.49.36 148059 port 266 148059 unique_id port 148059 remote_ip 10.8.1.62 148061 username morteza 148061 mac 148061 bytes_out 0 148061 bytes_in 0 148061 station_ip 37.129.49.36 148061 port 265 148061 unique_id port 148061 remote_ip 10.8.1.62 148063 username farhad2 148063 mac 148063 bytes_out 0 148063 bytes_in 0 148063 station_ip 5.120.57.215 148063 port 492 148063 unique_id port 148063 remote_ip 10.8.0.190 148069 username morteza 148069 mac 148069 bytes_out 10527 148069 bytes_in 18433 148069 station_ip 37.129.49.36 148069 port 265 148069 unique_id port 148069 remote_ip 10.8.1.62 148076 username hashtadani4 148076 mac 148076 bytes_out 0 148076 bytes_in 0 148076 station_ip 83.122.225.149 148076 port 496 148076 unique_id port 148076 remote_ip 10.8.0.182 148079 username hashtadani4 148079 mac 148079 bytes_out 0 148032 bytes_out 617745 148032 bytes_in 4769007 148032 station_ip 83.122.225.149 148032 port 512 148032 unique_id port 148032 remote_ip 10.8.0.182 148034 username farhad2 148034 kill_reason Another user logged on this global unique id 148034 mac 148034 bytes_out 0 148034 bytes_in 0 148034 station_ip 5.120.57.215 148034 port 513 148034 unique_id port 148034 remote_ip 10.8.0.190 148036 username morteza 148036 mac 148036 bytes_out 0 148036 bytes_in 0 148036 station_ip 37.129.49.36 148036 port 506 148036 unique_id port 148036 remote_ip 10.8.0.46 148041 username morteza 148041 mac 148041 bytes_out 0 148041 bytes_in 0 148041 station_ip 37.129.49.36 148041 port 265 148041 unique_id port 148041 remote_ip 10.8.1.62 148042 username morteza 148042 mac 148042 bytes_out 0 148042 bytes_in 0 148042 station_ip 37.129.49.36 148042 port 265 148042 unique_id port 148042 remote_ip 10.8.1.62 148044 username morteza 148044 mac 148044 bytes_out 0 148044 bytes_in 0 148044 station_ip 37.129.49.36 148044 port 265 148044 unique_id port 148044 remote_ip 10.8.1.62 148047 username farhad2 148047 mac 148047 bytes_out 0 148047 bytes_in 0 148047 station_ip 5.120.57.215 148047 port 513 148047 unique_id port 148049 username kalantary 148049 mac 148049 bytes_out 412282 148049 bytes_in 2612020 148049 station_ip 113.203.41.234 148049 port 492 148049 unique_id port 148049 remote_ip 10.8.0.98 148051 username hashtadani4 148051 mac 148051 bytes_out 8041229 148051 bytes_in 4217779 148051 station_ip 83.122.225.149 148051 port 512 148051 unique_id port 148051 remote_ip 10.8.0.182 148053 username farhad2 148053 mac 148053 bytes_out 0 148053 bytes_in 0 148053 station_ip 5.120.57.215 148053 port 266 148053 unique_id port 148053 remote_ip 10.8.1.222 148055 username saeed9658 148055 mac 148055 bytes_out 0 148055 bytes_in 0 148055 station_ip 5.120.172.203 148055 port 265 148055 unique_id port 148055 remote_ip 10.8.1.210 148056 username hashtadani4 148056 mac 148056 bytes_out 0 148056 bytes_in 0 148056 station_ip 83.122.225.149 148056 port 269 148056 unique_id port 148056 remote_ip 10.8.1.142 148062 username morteza 148062 mac 148062 bytes_out 0 148062 bytes_in 0 148062 station_ip 37.129.49.36 148062 port 265 148062 unique_id port 148062 remote_ip 10.8.1.62 148065 username mosi 148065 mac 148065 bytes_out 0 148065 bytes_in 0 148065 station_ip 5.134.177.237 148065 port 505 148065 unique_id port 148065 remote_ip 10.8.0.138 148067 username barzegar 148067 mac 148067 bytes_out 0 148067 bytes_in 0 148067 station_ip 5.119.236.105 148067 port 266 148067 unique_id port 148067 remote_ip 10.8.1.174 148070 username farhad2 148070 mac 148070 bytes_out 0 148070 bytes_in 0 148070 station_ip 5.120.57.215 148070 port 513 148070 unique_id port 148070 remote_ip 10.8.0.190 148073 username aminvpn 148073 mac 148073 bytes_out 0 148073 bytes_in 0 148073 station_ip 83.122.237.147 148073 port 496 148073 unique_id port 148073 remote_ip 10.8.0.14 148074 username morteza 148074 mac 148074 bytes_out 0 148074 bytes_in 0 148074 station_ip 37.129.49.36 148074 port 496 148074 unique_id port 148074 remote_ip 10.8.0.46 148075 username hashtadani4 148075 mac 148075 bytes_out 0 148075 bytes_in 0 148075 station_ip 83.122.225.149 148075 port 496 148075 unique_id port 148075 remote_ip 10.8.0.182 148077 username houshang 148077 kill_reason Another user logged on this global unique id 148077 mac 148077 bytes_out 0 148060 bytes_out 0 148060 bytes_in 0 148060 station_ip 37.129.49.36 148060 port 265 148060 unique_id port 148060 remote_ip 10.8.1.62 148064 username sarcheshmepour 148064 mac 148064 bytes_out 124592 148064 bytes_in 764596 148064 station_ip 46.225.209.243 148064 port 512 148064 unique_id port 148064 remote_ip 10.8.0.94 148066 username sabaghnezhad 148066 mac 148066 bytes_out 0 148066 bytes_in 0 148066 station_ip 37.129.117.4 148066 port 269 148066 unique_id port 148066 remote_ip 10.8.1.130 148068 username sarcheshmepour 148068 mac 148068 bytes_out 0 148068 bytes_in 0 148068 station_ip 83.122.121.51 148068 port 492 148068 unique_id port 148068 remote_ip 10.8.0.94 148071 username morteza 148071 mac 148071 bytes_out 0 148071 bytes_in 0 148071 station_ip 37.129.49.36 148071 port 265 148071 unique_id port 148071 remote_ip 10.8.1.62 148072 username morteza 148072 mac 148072 bytes_out 0 148072 bytes_in 0 148072 station_ip 37.129.49.36 148072 port 492 148072 unique_id port 148072 remote_ip 10.8.0.46 148078 username morteza 148078 mac 148078 bytes_out 0 148078 bytes_in 0 148078 station_ip 37.129.49.36 148078 port 265 148078 unique_id port 148078 remote_ip 10.8.1.62 148082 username hashtadani4 148082 mac 148082 bytes_out 0 148082 bytes_in 0 148082 station_ip 83.122.225.149 148082 port 496 148082 unique_id port 148082 remote_ip 10.8.0.182 148083 username barzegar 148083 mac 148083 bytes_out 0 148083 bytes_in 0 148083 station_ip 5.119.236.105 148083 port 265 148083 unique_id port 148083 remote_ip 10.8.1.174 148085 username hashtadani4 148085 mac 148085 bytes_out 0 148085 bytes_in 0 148085 station_ip 83.122.225.149 148085 port 496 148085 unique_id port 148085 remote_ip 10.8.0.182 148089 username hashtadani4 148089 mac 148089 bytes_out 0 148089 bytes_in 0 148089 station_ip 83.122.225.149 148089 port 515 148089 unique_id port 148089 remote_ip 10.8.0.182 148090 username hashtadani4 148090 mac 148090 bytes_out 0 148090 bytes_in 0 148090 station_ip 5.202.61.187 148090 port 515 148090 unique_id port 148090 remote_ip 10.8.0.182 148091 username rezaei 148091 mac 148091 bytes_out 772260 148091 bytes_in 7065597 148091 station_ip 5.119.4.59 148091 port 496 148091 unique_id port 148091 remote_ip 10.8.0.230 148094 username fezealinaghi 148094 mac 148094 bytes_out 1802151 148094 bytes_in 5257175 148094 station_ip 83.123.124.8 148094 port 445 148094 unique_id port 148094 remote_ip 10.8.0.78 148095 username godarzi 148095 mac 148095 bytes_out 0 148095 bytes_in 0 148095 station_ip 5.120.41.138 148095 port 491 148095 unique_id port 148098 username sabaghnezhad 148098 mac 148098 bytes_out 243621 148098 bytes_in 839481 148098 station_ip 37.129.117.4 148098 port 505 148098 unique_id port 148098 remote_ip 10.8.0.186 148099 username barzegar 148099 mac 148099 bytes_out 0 148099 bytes_in 0 148099 station_ip 5.119.236.105 148099 port 266 148099 unique_id port 148099 remote_ip 10.8.1.174 148103 username morteza 148103 mac 148103 bytes_out 0 148103 bytes_in 0 148103 station_ip 113.203.64.144 148103 port 503 148103 unique_id port 148103 remote_ip 10.8.0.46 148104 username morteza 148104 mac 148104 bytes_out 0 148104 bytes_in 0 148104 station_ip 113.203.64.144 148104 port 503 148104 unique_id port 148104 remote_ip 10.8.0.46 148105 username morteza 148105 mac 148105 bytes_out 0 148105 bytes_in 0 148105 station_ip 113.203.64.144 148105 port 503 148077 bytes_in 0 148077 station_ip 5.119.243.96 148077 port 506 148077 unique_id port 148077 remote_ip 10.8.0.22 148081 username godarzi 148081 kill_reason Another user logged on this global unique id 148081 mac 148081 bytes_out 0 148081 bytes_in 0 148081 station_ip 5.120.41.138 148081 port 491 148081 unique_id port 148081 remote_ip 10.8.0.174 148087 username morteza 148087 mac 148087 bytes_out 0 148087 bytes_in 0 148087 station_ip 37.129.49.36 148087 port 265 148087 unique_id port 148087 remote_ip 10.8.1.62 148093 username kalantary 148093 mac 148093 bytes_out 137175 148093 bytes_in 198127 148093 station_ip 113.203.21.98 148093 port 515 148093 unique_id port 148093 remote_ip 10.8.0.98 148096 username mehdizare 148096 mac 148096 bytes_out 246124 148096 bytes_in 322619 148096 station_ip 5.120.140.28 148096 port 503 148096 unique_id port 148096 remote_ip 10.8.0.90 148101 username morteza 148101 mac 148101 bytes_out 0 148101 bytes_in 0 148101 station_ip 113.203.64.144 148101 port 265 148101 unique_id port 148101 remote_ip 10.8.1.62 148102 username houshang 148102 mac 148102 bytes_out 0 148102 bytes_in 0 148102 station_ip 5.119.243.96 148102 port 269 148102 unique_id port 148102 remote_ip 10.8.1.70 148106 username morteza 148106 mac 148106 bytes_out 0 148106 bytes_in 0 148106 station_ip 113.203.64.144 148106 port 505 148106 unique_id port 148106 remote_ip 10.8.0.46 148110 username morteza 148110 mac 148110 bytes_out 0 148110 bytes_in 0 148110 station_ip 113.203.64.144 148110 port 503 148110 unique_id port 148110 remote_ip 10.8.0.46 148114 username hashtadani4 148114 kill_reason Maximum number of concurrent logins reached 148114 mac 148114 bytes_out 0 148114 bytes_in 0 148114 station_ip 83.122.218.25 148114 port 506 148114 unique_id port 148116 username hashtadani4 148116 kill_reason Maximum number of concurrent logins reached 148116 mac 148116 bytes_out 0 148116 bytes_in 0 148116 station_ip 83.122.218.25 148116 port 265 148116 unique_id port 148118 username hashtadani4 148118 kill_reason Maximum check online fails reached 148118 mac 148118 bytes_out 0 148118 bytes_in 0 148118 station_ip 83.122.218.25 148118 port 445 148118 unique_id port 148119 username morteza 148119 mac 148119 bytes_out 0 148119 bytes_in 0 148119 station_ip 113.203.64.144 148119 port 265 148119 unique_id port 148119 remote_ip 10.8.1.62 148125 username barzegar 148125 mac 148125 bytes_out 0 148125 bytes_in 0 148125 station_ip 5.119.236.105 148125 port 513 148125 unique_id port 148125 remote_ip 10.8.0.234 148131 username morteza 148131 mac 148131 bytes_out 0 148131 bytes_in 0 148131 station_ip 113.203.64.144 148131 port 516 148131 unique_id port 148131 remote_ip 10.8.0.46 148134 username morteza 148134 mac 148134 bytes_out 0 148134 bytes_in 0 148134 station_ip 113.203.64.144 148134 port 516 148134 unique_id port 148134 remote_ip 10.8.0.46 148136 username saeed9658 148136 mac 148136 bytes_out 0 148136 bytes_in 0 148136 station_ip 5.120.172.203 148136 port 516 148136 unique_id port 148136 remote_ip 10.8.0.62 148137 username farhad2 148137 mac 148137 bytes_out 0 148137 bytes_in 0 148137 station_ip 5.119.110.159 148137 port 505 148137 unique_id port 148137 remote_ip 10.8.0.190 148140 username hashtadani4 148140 mac 148140 bytes_out 0 148140 bytes_in 0 148140 station_ip 83.122.218.25 148140 port 266 148140 unique_id port 148140 remote_ip 10.8.1.142 148142 username saeed9658 148142 mac 148142 bytes_out 0 148079 bytes_in 0 148079 station_ip 83.122.225.149 148079 port 496 148079 unique_id port 148079 remote_ip 10.8.0.182 148080 username hashtadani4 148080 mac 148080 bytes_out 0 148080 bytes_in 0 148080 station_ip 83.122.225.149 148080 port 496 148080 unique_id port 148080 remote_ip 10.8.0.182 148084 username aminvpn 148084 unique_id port 148084 terminate_cause User-Request 148084 bytes_out 13094645 148084 bytes_in 246640264 148084 station_ip 5.119.251.225 148084 port 15730968 148084 nas_port_type Virtual 148084 remote_ip 5.5.5.240 148086 username hashtadani4 148086 mac 148086 bytes_out 0 148086 bytes_in 0 148086 station_ip 83.122.225.149 148086 port 515 148086 unique_id port 148086 remote_ip 10.8.0.182 148088 username hashtadani4 148088 mac 148088 bytes_out 0 148088 bytes_in 0 148088 station_ip 83.122.225.149 148088 port 496 148088 unique_id port 148088 remote_ip 10.8.0.182 148092 username hashtadani4 148092 mac 148092 bytes_out 8045 148092 bytes_in 10781 148092 station_ip 5.202.61.187 148092 port 516 148092 unique_id port 148092 remote_ip 10.8.0.182 148097 username houshang 148097 kill_reason Another user logged on this global unique id 148097 mac 148097 bytes_out 0 148097 bytes_in 0 148097 station_ip 5.119.243.96 148097 port 506 148097 unique_id port 148100 username houshang 148100 mac 148100 bytes_out 0 148100 bytes_in 0 148100 station_ip 5.119.243.96 148100 port 506 148100 unique_id port 148108 username hashtadani4 148108 mac 148108 bytes_out 282103 148108 bytes_in 5798684 148108 station_ip 5.202.61.187 148108 port 496 148108 unique_id port 148108 remote_ip 10.8.0.182 148109 username mehdizare 148109 mac 148109 bytes_out 19747 148109 bytes_in 29269 148109 station_ip 5.120.140.28 148109 port 445 148109 unique_id port 148109 remote_ip 10.8.0.90 148117 username morteza 148117 mac 148117 bytes_out 0 148117 bytes_in 0 148117 station_ip 113.203.64.144 148117 port 265 148117 unique_id port 148117 remote_ip 10.8.1.62 148122 username morteza 148122 mac 148122 bytes_out 0 148122 bytes_in 0 148122 station_ip 113.203.64.144 148122 port 513 148122 unique_id port 148122 remote_ip 10.8.0.46 148123 username morteza 148123 mac 148123 bytes_out 0 148123 bytes_in 0 148123 station_ip 113.203.64.144 148123 port 513 148123 unique_id port 148123 remote_ip 10.8.0.46 148124 username morteza 148124 mac 148124 bytes_out 0 148124 bytes_in 0 148124 station_ip 113.203.64.144 148124 port 513 148124 unique_id port 148124 remote_ip 10.8.0.46 148126 username aminvpn 148126 kill_reason Another user logged on this global unique id 148126 mac 148126 bytes_out 0 148126 bytes_in 0 148126 station_ip 83.122.237.147 148126 port 492 148126 unique_id port 148126 remote_ip 10.8.0.14 148129 username morteza 148129 mac 148129 bytes_out 0 148129 bytes_in 0 148129 station_ip 113.203.64.144 148129 port 496 148129 unique_id port 148129 remote_ip 10.8.0.46 148130 username khademi 148130 mac 148130 bytes_out 0 148130 bytes_in 0 148130 station_ip 46.225.209.243 148130 port 496 148130 unique_id port 148130 remote_ip 10.8.0.10 148132 username morteza 148132 mac 148132 bytes_out 0 148132 bytes_in 0 148132 station_ip 113.203.64.144 148132 port 496 148132 unique_id port 148132 remote_ip 10.8.0.46 148135 username morteza 148135 mac 148135 bytes_out 0 148135 bytes_in 0 148135 station_ip 113.203.64.144 148135 port 266 148135 unique_id port 148135 remote_ip 10.8.1.62 148139 username hashtadani4 148139 mac 148139 bytes_out 0 148105 unique_id port 148105 remote_ip 10.8.0.46 148107 username farhad2 148107 mac 148107 bytes_out 2754234 148107 bytes_in 12461419 148107 station_ip 5.119.110.159 148107 port 513 148107 unique_id port 148107 remote_ip 10.8.0.190 148111 username hashtadani4 148111 mac 148111 bytes_out 0 148111 bytes_in 0 148111 station_ip 83.122.218.25 148111 port 506 148111 unique_id port 148111 remote_ip 10.8.0.182 148112 username morteza 148112 mac 148112 bytes_out 0 148112 bytes_in 0 148112 station_ip 113.203.64.144 148112 port 265 148112 unique_id port 148112 remote_ip 10.8.1.62 148113 username morteza 148113 mac 148113 bytes_out 0 148113 bytes_in 0 148113 station_ip 113.203.64.144 148113 port 265 148113 unique_id port 148113 remote_ip 10.8.1.62 148115 username morteza 148115 mac 148115 bytes_out 0 148115 bytes_in 0 148115 station_ip 113.203.64.144 148115 port 265 148115 unique_id port 148115 remote_ip 10.8.1.62 148120 username hashtadani4 148120 kill_reason Maximum check online fails reached 148120 mac 148120 bytes_out 0 148120 bytes_in 0 148120 station_ip 83.122.218.25 148120 port 503 148120 unique_id port 148121 username mosi 148121 mac 148121 bytes_out 0 148121 bytes_in 0 148121 station_ip 5.134.177.237 148121 port 512 148121 unique_id port 148121 remote_ip 10.8.0.138 148127 username mehdizare 148127 mac 148127 bytes_out 0 148127 bytes_in 0 148127 station_ip 5.120.140.28 148127 port 496 148127 unique_id port 148127 remote_ip 10.8.0.90 148128 username morteza 148128 mac 148128 bytes_out 0 148128 bytes_in 0 148128 station_ip 113.203.64.144 148128 port 265 148128 unique_id port 148128 remote_ip 10.8.1.62 148133 username morteza 148133 mac 148133 bytes_out 0 148133 bytes_in 0 148133 station_ip 113.203.64.144 148133 port 496 148133 unique_id port 148133 remote_ip 10.8.0.46 148138 username hashtadani4 148138 mac 148138 bytes_out 0 148138 bytes_in 0 148138 station_ip 83.122.218.25 148138 port 512 148138 unique_id port 148138 remote_ip 10.8.0.182 148141 username morteza 148141 mac 148141 bytes_out 140576 148141 bytes_in 246883 148141 station_ip 113.203.64.144 148141 port 517 148141 unique_id port 148141 remote_ip 10.8.0.46 148145 username hashtadani4 148145 kill_reason Maximum check online fails reached 148145 mac 148145 bytes_out 0 148145 bytes_in 0 148145 station_ip 83.122.218.25 148145 port 505 148145 unique_id port 148146 username saeed9658 148146 mac 148146 bytes_out 0 148146 bytes_in 0 148146 station_ip 5.119.217.122 148146 port 512 148146 unique_id port 148146 remote_ip 10.8.0.62 148149 username barzegar 148149 mac 148149 bytes_out 0 148149 bytes_in 0 148149 station_ip 5.119.236.105 148149 port 518 148149 unique_id port 148149 remote_ip 10.8.0.234 148161 username hamid.e 148161 unique_id port 148161 terminate_cause Lost-Carrier 148161 bytes_out 12729373 148161 bytes_in 172175895 148161 station_ip 37.27.13.19 148161 port 15730975 148161 nas_port_type Virtual 148161 remote_ip 5.5.5.198 148162 username hashtadani4 148162 mac 148162 bytes_out 0 148162 bytes_in 0 148162 station_ip 83.122.218.25 148162 port 514 148162 unique_id port 148162 remote_ip 10.8.0.182 148166 username saeed9658 148166 mac 148166 bytes_out 0 148166 bytes_in 0 148166 station_ip 5.119.217.122 148166 port 266 148166 unique_id port 148166 remote_ip 10.8.1.210 148168 username barzegar 148168 mac 148168 bytes_out 0 148168 bytes_in 0 148168 station_ip 5.119.236.105 148168 port 514 148139 bytes_in 0 148139 station_ip 83.122.218.25 148139 port 266 148139 unique_id port 148139 remote_ip 10.8.1.142 148143 username hashtadani4 148143 mac 148143 bytes_out 0 148143 bytes_in 0 148143 station_ip 83.122.218.25 148143 port 266 148143 unique_id port 148143 remote_ip 10.8.1.142 148151 username meysam 148151 mac 148151 bytes_out 0 148151 bytes_in 0 148151 station_ip 188.159.252.203 148151 port 515 148151 unique_id port 148151 remote_ip 10.8.0.110 148152 username saeed9658 148152 mac 148152 bytes_out 0 148152 bytes_in 0 148152 station_ip 5.119.217.122 148152 port 512 148152 unique_id port 148152 remote_ip 10.8.0.62 148153 username hashtadani4 148153 mac 148153 bytes_out 0 148153 bytes_in 0 148153 station_ip 83.122.218.25 148153 port 515 148153 unique_id port 148153 remote_ip 10.8.0.182 148155 username sarcheshmepour 148155 mac 148155 bytes_out 0 148155 bytes_in 0 148155 station_ip 83.122.121.51 148155 port 514 148155 unique_id port 148155 remote_ip 10.8.0.94 148158 username saeed9658 148158 mac 148158 bytes_out 436928 148158 bytes_in 146577 148158 station_ip 5.119.217.122 148158 port 266 148158 unique_id port 148158 remote_ip 10.8.1.210 148159 username kalantary 148159 mac 148159 bytes_out 2611394 148159 bytes_in 35116729 148159 station_ip 113.203.14.138 148159 port 517 148159 unique_id port 148159 remote_ip 10.8.0.98 148164 username hashtadani4 148164 mac 148164 bytes_out 0 148164 bytes_in 0 148164 station_ip 83.122.218.25 148164 port 514 148164 unique_id port 148164 remote_ip 10.8.0.182 148165 username hashtadani4 148165 mac 148165 bytes_out 0 148165 bytes_in 0 148165 station_ip 83.122.218.25 148165 port 514 148165 unique_id port 148165 remote_ip 10.8.0.182 148170 username aminvpn 148170 unique_id port 148170 terminate_cause Lost-Carrier 148170 bytes_out 3429516 148170 bytes_in 16018170 148170 station_ip 151.238.246.5 148170 port 15730979 148170 nas_port_type Virtual 148170 remote_ip 5.5.5.255 148173 username hashtadani4 148173 kill_reason Another user logged on this global unique id 148173 mac 148173 bytes_out 0 148173 bytes_in 0 148173 station_ip 83.122.218.25 148173 port 515 148173 unique_id port 148173 remote_ip 10.8.0.182 148174 username ahmadi 148174 kill_reason Relative expiration date has reached 148174 unique_id port 148174 bytes_out 0 148174 bytes_in 0 148174 station_ip 37.129.23.5 148174 port 15730982 148174 nas_port_type Virtual 148175 username farhad2 148175 mac 148175 bytes_out 3069082 148175 bytes_in 21231331 148175 station_ip 5.119.110.159 148175 port 269 148175 unique_id port 148175 remote_ip 10.8.1.222 148181 username kalantary 148181 mac 148181 bytes_out 167561 148181 bytes_in 629624 148181 station_ip 113.203.19.158 148181 port 496 148181 unique_id port 148181 remote_ip 10.8.0.98 148183 username hamid.e 148183 unique_id port 148183 terminate_cause User-Request 148183 bytes_out 162901 148183 bytes_in 2254247 148183 station_ip 37.27.20.51 148183 port 15730983 148183 nas_port_type Virtual 148183 remote_ip 5.5.5.230 148184 username mehdizare 148184 mac 148184 bytes_out 17452 148184 bytes_in 25498 148184 station_ip 5.120.140.28 148184 port 496 148184 unique_id port 148184 remote_ip 10.8.0.90 148185 username meysam 148185 mac 148185 bytes_out 0 148185 bytes_in 0 148185 station_ip 188.159.252.203 148185 port 506 148185 unique_id port 148185 remote_ip 10.8.0.110 148189 username barzegar 148189 mac 148189 bytes_out 7931 148189 bytes_in 14926 148189 station_ip 5.119.236.105 148189 port 506 148189 unique_id port 148142 bytes_in 0 148142 station_ip 5.120.172.203 148142 port 516 148142 unique_id port 148142 remote_ip 10.8.0.62 148144 username hashtadani4 148144 mac 148144 bytes_out 0 148144 bytes_in 0 148144 station_ip 83.122.218.25 148144 port 516 148144 unique_id port 148144 remote_ip 10.8.0.182 148147 username hashtadani4 148147 mac 148147 bytes_out 0 148147 bytes_in 0 148147 station_ip 83.122.218.25 148147 port 516 148147 unique_id port 148147 remote_ip 10.8.0.182 148148 username hashtadani4 148148 mac 148148 bytes_out 27722 148148 bytes_in 167731 148148 station_ip 83.122.218.25 148148 port 516 148148 unique_id port 148148 remote_ip 10.8.0.182 148150 username mehdizare 148150 mac 148150 bytes_out 0 148150 bytes_in 0 148150 station_ip 5.120.140.28 148150 port 513 148150 unique_id port 148150 remote_ip 10.8.0.90 148154 username saeed9658 148154 mac 148154 bytes_out 0 148154 bytes_in 0 148154 station_ip 5.119.217.122 148154 port 515 148154 unique_id port 148154 remote_ip 10.8.0.62 148156 username saeed9658 148156 mac 148156 bytes_out 0 148156 bytes_in 0 148156 station_ip 5.119.217.122 148156 port 266 148156 unique_id port 148156 remote_ip 10.8.1.210 148157 username sarcheshmepour 148157 mac 148157 bytes_out 90696 148157 bytes_in 1689029 148157 station_ip 83.122.121.51 148157 port 515 148157 unique_id port 148157 remote_ip 10.8.0.94 148160 username saeed9658 148160 mac 148160 bytes_out 0 148160 bytes_in 0 148160 station_ip 5.119.217.122 148160 port 266 148160 unique_id port 148160 remote_ip 10.8.1.210 148163 username saeed9658 148163 mac 148163 bytes_out 0 148163 bytes_in 0 148163 station_ip 5.119.217.122 148163 port 266 148163 unique_id port 148163 remote_ip 10.8.1.210 148167 username saeed9658 148167 mac 148167 bytes_out 0 148167 bytes_in 0 148167 station_ip 5.119.217.122 148167 port 515 148167 unique_id port 148167 remote_ip 10.8.0.62 148171 username saeed9658 148171 mac 148171 bytes_out 2159 148171 bytes_in 4829 148171 station_ip 5.119.217.122 148171 port 266 148171 unique_id port 148171 remote_ip 10.8.1.210 148172 username mosi 148172 mac 148172 bytes_out 0 148172 bytes_in 0 148172 station_ip 151.235.107.13 148172 port 506 148172 unique_id port 148172 remote_ip 10.8.0.138 148177 username khademi 148177 mac 148177 bytes_out 0 148177 bytes_in 0 148177 station_ip 46.225.209.243 148177 port 496 148177 unique_id port 148177 remote_ip 10.8.0.10 148179 username mostafa_es78 148179 unique_id port 148179 terminate_cause Lost-Carrier 148179 bytes_out 3750362 148179 bytes_in 108938893 148179 station_ip 5.125.79.83 148179 port 15730981 148179 nas_port_type Virtual 148179 remote_ip 5.5.5.210 148182 username barzegar 148182 mac 148182 bytes_out 0 148182 bytes_in 0 148182 station_ip 5.119.236.105 148182 port 506 148182 unique_id port 148182 remote_ip 10.8.0.234 148186 username barzegar 148186 mac 148186 bytes_out 0 148186 bytes_in 0 148186 station_ip 5.119.236.105 148186 port 514 148186 unique_id port 148186 remote_ip 10.8.0.234 148187 username hashtadani4 148187 mac 148187 bytes_out 0 148187 bytes_in 0 148187 station_ip 83.122.218.25 148187 port 515 148187 unique_id port 148188 username hashtadani4 148188 mac 148188 bytes_out 0 148188 bytes_in 0 148188 station_ip 83.122.218.25 148188 port 514 148188 unique_id port 148188 remote_ip 10.8.0.182 148190 username jafari 148190 kill_reason Another user logged on this global unique id 148190 mac 148190 bytes_out 0 148168 unique_id port 148168 remote_ip 10.8.0.234 148169 username vanila 148169 mac 148169 bytes_out 0 148169 bytes_in 0 148169 station_ip 37.129.214.171 148169 port 512 148169 unique_id port 148169 remote_ip 10.8.0.178 148176 username barzegar 148176 mac 148176 bytes_out 0 148176 bytes_in 0 148176 station_ip 5.119.236.105 148176 port 506 148176 unique_id port 148176 remote_ip 10.8.0.234 148178 username alihosseini1 148178 mac 148178 bytes_out 0 148178 bytes_in 0 148178 station_ip 5.120.145.67 148178 port 265 148178 unique_id port 148178 remote_ip 10.8.1.106 148180 username mehdizare 148180 mac 148180 bytes_out 0 148180 bytes_in 0 148180 station_ip 5.120.140.28 148180 port 516 148180 unique_id port 148180 remote_ip 10.8.0.90 148194 username barzegar 148194 mac 148194 bytes_out 0 148194 bytes_in 0 148194 station_ip 5.119.236.105 148194 port 266 148194 unique_id port 148194 remote_ip 10.8.1.174 148198 username godarzi 148198 kill_reason Another user logged on this global unique id 148198 mac 148198 bytes_out 0 148198 bytes_in 0 148198 station_ip 5.120.41.138 148198 port 491 148198 unique_id port 148198 remote_ip 10.8.0.174 148200 username godarzi 148200 mac 148200 bytes_out 0 148200 bytes_in 0 148200 station_ip 5.120.41.138 148200 port 491 148200 unique_id port 148203 username meysam 148203 kill_reason Another user logged on this global unique id 148203 mac 148203 bytes_out 0 148203 bytes_in 0 148203 station_ip 188.159.252.203 148203 port 516 148203 unique_id port 148203 remote_ip 10.8.0.110 148204 username hashtadani4 148204 mac 148204 bytes_out 0 148204 bytes_in 0 148204 station_ip 83.122.218.25 148204 port 515 148204 unique_id port 148204 remote_ip 10.8.0.182 148209 username forozandeh1 148209 mac 148209 bytes_out 730330 148209 bytes_in 9234830 148209 station_ip 83.123.229.189 148209 port 517 148209 unique_id port 148209 remote_ip 10.8.0.130 148210 username godarzi 148210 mac 148210 bytes_out 347253 148210 bytes_in 4237339 148210 station_ip 5.120.41.138 148210 port 515 148210 unique_id port 148210 remote_ip 10.8.0.174 148213 username hashtadani4 148213 mac 148213 bytes_out 0 148213 bytes_in 0 148213 station_ip 83.122.218.25 148213 port 515 148213 unique_id port 148213 remote_ip 10.8.0.182 148216 username barzegar 148216 mac 148216 bytes_out 0 148216 bytes_in 0 148216 station_ip 5.119.236.105 148216 port 517 148216 unique_id port 148216 remote_ip 10.8.0.234 148221 username barzegar 148221 mac 148221 bytes_out 0 148221 bytes_in 0 148221 station_ip 5.119.236.105 148221 port 517 148221 unique_id port 148221 remote_ip 10.8.0.234 148223 username barzegar 148223 mac 148223 bytes_out 0 148223 bytes_in 0 148223 station_ip 5.119.236.105 148223 port 269 148223 unique_id port 148223 remote_ip 10.8.1.174 148226 username barzegar 148226 mac 148226 bytes_out 0 148226 bytes_in 0 148226 station_ip 5.119.236.105 148226 port 512 148226 unique_id port 148226 remote_ip 10.8.0.234 148228 username aminvpn 148228 kill_reason Another user logged on this global unique id 148228 mac 148228 bytes_out 0 148228 bytes_in 0 148228 station_ip 83.122.237.147 148228 port 492 148228 unique_id port 148229 username kalantary 148229 mac 148229 bytes_out 235838 148229 bytes_in 855234 148229 station_ip 113.203.3.74 148229 port 512 148229 unique_id port 148229 remote_ip 10.8.0.98 148232 username vanila 148232 mac 148232 bytes_out 107555 148232 bytes_in 252954 148232 station_ip 37.129.148.147 148189 remote_ip 10.8.0.234 148191 username hashtadani4 148191 kill_reason Another user logged on this global unique id 148191 mac 148191 bytes_out 0 148191 bytes_in 0 148191 station_ip 83.122.218.25 148191 port 515 148191 unique_id port 148191 remote_ip 10.8.0.182 148192 username sarcheshmepour 148192 mac 148192 bytes_out 0 148192 bytes_in 0 148192 station_ip 83.122.241.183 148192 port 517 148192 unique_id port 148192 remote_ip 10.8.0.94 148195 username kalantary 148195 mac 148195 bytes_out 333842 148195 bytes_in 784956 148195 station_ip 113.203.87.154 148195 port 506 148195 unique_id port 148195 remote_ip 10.8.0.98 148199 username jafari 148199 kill_reason Another user logged on this global unique id 148199 mac 148199 bytes_out 0 148199 bytes_in 0 148199 station_ip 5.134.189.200 148199 port 514 148199 unique_id port 148201 username hashtadani4 148201 mac 148201 bytes_out 0 148201 bytes_in 0 148201 station_ip 83.122.218.25 148201 port 515 148201 unique_id port 148205 username barzegar 148205 mac 148205 bytes_out 0 148205 bytes_in 0 148205 station_ip 5.119.236.105 148205 port 269 148205 unique_id port 148205 remote_ip 10.8.1.174 148207 username hashtadani4 148207 mac 148207 bytes_out 0 148207 bytes_in 0 148207 station_ip 83.122.218.25 148207 port 518 148207 unique_id port 148207 remote_ip 10.8.0.182 148208 username hashtadani4 148208 mac 148208 bytes_out 0 148208 bytes_in 0 148208 station_ip 83.122.218.25 148208 port 518 148208 unique_id port 148208 remote_ip 10.8.0.182 148214 username hashtadani4 148214 kill_reason Maximum number of concurrent logins reached 148214 mac 148214 bytes_out 0 148214 bytes_in 0 148214 station_ip 83.122.218.25 148214 port 517 148214 unique_id port 148215 username hashtadani4 148215 kill_reason Maximum number of concurrent logins reached 148215 mac 148215 bytes_out 0 148215 bytes_in 0 148215 station_ip 83.122.218.25 148215 port 518 148215 unique_id port 148217 username hashtadani4 148217 kill_reason Maximum check online fails reached 148217 mac 148217 bytes_out 0 148217 bytes_in 0 148217 station_ip 83.122.218.25 148217 port 516 148217 unique_id port 148218 username jafari 148218 mac 148218 bytes_out 0 148218 bytes_in 0 148218 station_ip 5.134.189.200 148218 port 514 148218 unique_id port 148220 username saeed9658 148220 mac 148220 bytes_out 635020 148220 bytes_in 7503110 148220 station_ip 5.119.217.122 148220 port 269 148220 unique_id port 148220 remote_ip 10.8.1.210 148225 username kamali2 148225 mac 148225 bytes_out 114156 148225 bytes_in 168875 148225 station_ip 5.119.208.78 148225 port 512 148225 unique_id port 148225 remote_ip 10.8.0.214 148227 username godarzi 148227 mac 148227 bytes_out 0 148227 bytes_in 0 148227 station_ip 5.120.41.138 148227 port 496 148227 unique_id port 148227 remote_ip 10.8.0.174 148231 username jafari 148231 kill_reason Another user logged on this global unique id 148231 mac 148231 bytes_out 0 148231 bytes_in 0 148231 station_ip 5.134.189.200 148231 port 514 148231 unique_id port 148231 remote_ip 10.8.0.242 148233 username vanila 148233 mac 148233 bytes_out 0 148233 bytes_in 0 148233 station_ip 37.129.148.147 148233 port 519 148233 unique_id port 148233 remote_ip 10.8.0.178 148236 username vanila 148236 mac 148236 bytes_out 215716 148236 bytes_in 1780822 148236 station_ip 37.129.148.147 148236 port 491 148236 unique_id port 148236 remote_ip 10.8.0.178 148241 username amirabbas 148241 unique_id port 148241 terminate_cause User-Request 148241 bytes_out 4159298 148241 bytes_in 102218040 148190 bytes_in 0 148190 station_ip 5.134.189.200 148190 port 514 148190 unique_id port 148190 remote_ip 10.8.0.242 148193 username barzegar 148193 mac 148193 bytes_out 4165 148193 bytes_in 6519 148193 station_ip 5.119.236.105 148193 port 516 148193 unique_id port 148193 remote_ip 10.8.0.234 148196 username hashtadani4 148196 kill_reason Another user logged on this global unique id 148196 mac 148196 bytes_out 0 148196 bytes_in 0 148196 station_ip 83.122.218.25 148196 port 515 148196 unique_id port 148197 username barzegar 148197 mac 148197 bytes_out 0 148197 bytes_in 0 148197 station_ip 5.119.236.105 148197 port 266 148197 unique_id port 148197 remote_ip 10.8.1.174 148202 username mehdizare 148202 mac 148202 bytes_out 0 148202 bytes_in 0 148202 station_ip 5.120.140.28 148202 port 496 148202 unique_id port 148202 remote_ip 10.8.0.90 148206 username barzegar 148206 mac 148206 bytes_out 0 148206 bytes_in 0 148206 station_ip 5.119.236.105 148206 port 269 148206 unique_id port 148206 remote_ip 10.8.1.174 148211 username meysam 148211 mac 148211 bytes_out 0 148211 bytes_in 0 148211 station_ip 188.159.252.203 148211 port 516 148211 unique_id port 148212 username kalantary 148212 mac 148212 bytes_out 393716 148212 bytes_in 3622680 148212 station_ip 113.203.42.106 148212 port 496 148212 unique_id port 148212 remote_ip 10.8.0.98 148219 username hashtadani4 148219 kill_reason Maximum check online fails reached 148219 mac 148219 bytes_out 0 148219 bytes_in 0 148219 station_ip 83.122.218.25 148219 port 515 148219 unique_id port 148222 username mansour 148222 mac 148222 bytes_out 0 148222 bytes_in 0 148222 station_ip 5.202.98.165 148222 port 512 148222 unique_id port 148222 remote_ip 10.8.0.30 148224 username forozandeh1 148224 mac 148224 bytes_out 755476 148224 bytes_in 8501635 148224 station_ip 37.129.158.248 148224 port 514 148224 unique_id port 148224 remote_ip 10.8.0.130 148230 username sedighe 148230 mac 148230 bytes_out 0 148230 bytes_in 0 148230 station_ip 83.122.229.72 148230 port 491 148230 unique_id port 148230 remote_ip 10.8.0.146 148235 username fezealinaghi 148235 mac 148235 bytes_out 0 148235 bytes_in 0 148235 station_ip 83.123.124.8 148235 port 513 148235 unique_id port 148235 remote_ip 10.8.0.78 148237 username rezaei 148237 mac 148237 bytes_out 810288 148237 bytes_in 12100804 148237 station_ip 5.119.4.59 148237 port 518 148237 unique_id port 148237 remote_ip 10.8.0.230 148238 username jafari 148238 mac 148238 bytes_out 0 148238 bytes_in 0 148238 station_ip 5.134.189.200 148238 port 514 148238 unique_id port 148240 username mahdiyehalizadeh 148240 mac 148240 bytes_out 713730 148240 bytes_in 2895848 148240 station_ip 5.120.35.160 148240 port 517 148240 unique_id port 148240 remote_ip 10.8.0.82 148244 username hamidsalari1 148244 mac 148244 bytes_out 1564744 148244 bytes_in 8303961 148244 station_ip 83.123.124.232 148244 port 265 148244 unique_id port 148244 remote_ip 10.8.1.170 148248 username barzegar 148248 mac 148248 bytes_out 0 148248 bytes_in 0 148248 station_ip 5.119.236.105 148248 port 265 148248 unique_id port 148248 remote_ip 10.8.1.174 148255 username forozandeh1 148255 mac 148255 bytes_out 535008 148255 bytes_in 6208106 148255 station_ip 83.123.23.66 148255 port 513 148255 unique_id port 148255 remote_ip 10.8.0.130 148257 username barzegar 148257 mac 148257 bytes_out 0 148257 bytes_in 0 148257 station_ip 5.119.236.105 148257 port 496 148232 port 491 148232 unique_id port 148232 remote_ip 10.8.0.178 148234 username abravesh 148234 unique_id port 148234 terminate_cause Lost-Carrier 148234 bytes_out 2263875 148234 bytes_in 38775549 148234 station_ip 5.119.158.206 148234 port 15730985 148234 nas_port_type Virtual 148234 remote_ip 5.5.5.255 148239 username barzegar 148239 mac 148239 bytes_out 18330 148239 bytes_in 28505 148239 station_ip 5.119.236.105 148239 port 496 148239 unique_id port 148239 remote_ip 10.8.0.234 148243 username barzegar 148243 mac 148243 bytes_out 0 148243 bytes_in 0 148243 station_ip 5.119.236.105 148243 port 513 148243 unique_id port 148243 remote_ip 10.8.0.234 148247 username aminvpn 148247 mac 148247 bytes_out 0 148247 bytes_in 0 148247 station_ip 83.122.237.147 148247 port 492 148247 unique_id port 148253 username barzegar 148253 mac 148253 bytes_out 0 148253 bytes_in 0 148253 station_ip 5.119.236.105 148253 port 517 148253 unique_id port 148253 remote_ip 10.8.0.234 148254 username fezealinaghi 148254 kill_reason Another user logged on this global unique id 148254 mac 148254 bytes_out 0 148254 bytes_in 0 148254 station_ip 83.123.124.8 148254 port 514 148254 unique_id port 148254 remote_ip 10.8.0.78 148258 username barzegar 148258 mac 148258 bytes_out 0 148258 bytes_in 0 148258 station_ip 5.119.236.105 148258 port 265 148258 unique_id port 148258 remote_ip 10.8.1.174 148262 username aminvpn 148262 unique_id port 148262 terminate_cause Lost-Carrier 148262 bytes_out 1542593 148262 bytes_in 23808388 148262 station_ip 151.238.246.5 148262 port 15730986 148262 nas_port_type Virtual 148262 remote_ip 5.5.5.254 148267 username fezealinaghi 148267 mac 148267 bytes_out 0 148267 bytes_in 0 148267 station_ip 83.123.124.8 148267 port 514 148267 unique_id port 148269 username barzegar 148269 mac 148269 bytes_out 0 148269 bytes_in 0 148269 station_ip 5.119.236.105 148269 port 513 148269 unique_id port 148269 remote_ip 10.8.0.234 148271 username vanila 148271 mac 148271 bytes_out 0 148271 bytes_in 0 148271 station_ip 37.129.148.147 148271 port 492 148271 unique_id port 148271 remote_ip 10.8.0.178 148273 username mahdixz 148273 unique_id port 148273 terminate_cause User-Request 148273 bytes_out 64298 148273 bytes_in 1199081 148273 station_ip 37.129.134.104 148273 port 15730991 148273 nas_port_type Virtual 148273 remote_ip 5.5.5.229 148275 username godarzi 148275 mac 148275 bytes_out 0 148275 bytes_in 0 148275 station_ip 5.120.41.138 148275 port 506 148275 unique_id port 148275 remote_ip 10.8.0.174 148278 username barzegar 148278 mac 148278 bytes_out 4532 148278 bytes_in 13810 148278 station_ip 5.119.236.105 148278 port 496 148278 unique_id port 148278 remote_ip 10.8.0.234 148281 username sedighe 148281 mac 148281 bytes_out 66384 148281 bytes_in 105308 148281 station_ip 37.129.236.234 148281 port 519 148281 unique_id port 148281 remote_ip 10.8.0.146 148282 username mehdizare 148285 unique_id port 148282 kill_reason Another user logged on this global unique id 148282 mac 148282 bytes_out 0 148282 bytes_in 0 148282 station_ip 5.120.140.28 148282 port 266 148282 unique_id port 148282 remote_ip 10.8.1.42 148283 username godarzi 148283 mac 148283 bytes_out 0 148283 bytes_in 0 148283 station_ip 5.120.41.138 148283 port 506 148283 unique_id port 148283 remote_ip 10.8.0.174 148286 username mohammadjavad 148286 mac 148286 bytes_out 420533 148286 bytes_in 2307936 148286 station_ip 83.123.247.202 148286 port 492 148286 unique_id port 148286 remote_ip 10.8.0.142 148288 username hashtadani4 148241 station_ip 37.27.10.12 148241 port 15730987 148241 nas_port_type Virtual 148241 remote_ip 5.5.5.253 148242 username mahdiyehalizadeh 148242 mac 148242 bytes_out 0 148242 bytes_in 0 148242 station_ip 37.129.106.52 148242 port 496 148242 unique_id port 148242 remote_ip 10.8.0.82 148245 username barzegar 148245 mac 148245 bytes_out 0 148245 bytes_in 0 148245 station_ip 5.119.236.105 148245 port 265 148245 unique_id port 148245 remote_ip 10.8.1.174 148246 username vanila 148246 mac 148246 bytes_out 2189734 148246 bytes_in 37709925 148246 station_ip 37.129.148.147 148246 port 491 148246 unique_id port 148246 remote_ip 10.8.0.178 148249 username sedighe 148249 mac 148249 bytes_out 431052 148249 bytes_in 2326430 148249 station_ip 83.122.196.188 148249 port 512 148249 unique_id port 148249 remote_ip 10.8.0.146 148250 username meysam 148250 mac 148250 bytes_out 689238 148250 bytes_in 8566748 148250 station_ip 5.119.8.12 148250 port 517 148250 unique_id port 148250 remote_ip 10.8.0.110 148251 username hosseine 148251 mac 148251 bytes_out 0 148251 bytes_in 0 148251 station_ip 37.129.32.118 148251 port 513 148251 unique_id port 148251 remote_ip 10.8.0.238 148252 username kalantary 148252 mac 148252 bytes_out 533477 148252 bytes_in 3471566 148252 station_ip 113.203.96.70 148252 port 496 148252 unique_id port 148252 remote_ip 10.8.0.98 148256 username mohammadjavad 148256 mac 148256 bytes_out 1122660 148256 bytes_in 22054712 148256 station_ip 113.203.86.172 148256 port 512 148256 unique_id port 148256 remote_ip 10.8.0.142 148264 username barzegar 148264 mac 148264 bytes_out 0 148264 bytes_in 0 148264 station_ip 5.119.236.105 148264 port 492 148264 unique_id port 148264 remote_ip 10.8.0.234 148272 username mahdixz 148272 unique_id port 148272 terminate_cause User-Request 148272 bytes_out 160589 148272 bytes_in 339932 148272 station_ip 37.129.134.104 148272 port 15730990 148272 nas_port_type Virtual 148272 remote_ip 5.5.5.220 148274 username forozandeh1 148274 mac 148274 bytes_out 191781 148274 bytes_in 476748 148274 station_ip 113.203.113.190 148274 port 496 148274 unique_id port 148274 remote_ip 10.8.0.130 148276 username alipour 148276 mac 148276 bytes_out 1175530 148276 bytes_in 4735227 148276 station_ip 37.129.171.226 148276 port 512 148276 unique_id port 148276 remote_ip 10.8.0.102 148280 username hamid.e 148280 unique_id port 148280 terminate_cause User-Request 148280 bytes_out 21119465 148280 bytes_in 477193969 148280 station_ip 37.27.20.51 148280 port 15730984 148280 nas_port_type Virtual 148280 remote_ip 5.5.5.232 148284 username barzegar 148284 mac 148284 bytes_out 0 148284 bytes_in 0 148284 station_ip 5.119.236.105 148284 port 512 148284 unique_id port 148284 remote_ip 10.8.0.234 148285 username milan 148285 kill_reason Another user logged on this global unique id 148285 mac 148285 bytes_out 0 148285 bytes_in 0 148285 station_ip 5.120.31.183 148285 port 514 148285 remote_ip 10.8.0.218 148287 username vanila 148287 mac 148287 bytes_out 0 148287 bytes_in 0 148287 station_ip 37.129.148.147 148287 port 506 148287 unique_id port 148287 remote_ip 10.8.0.178 148297 username barzegar 148297 mac 148297 bytes_out 2603 148297 bytes_in 4920 148297 station_ip 5.119.236.105 148297 port 506 148297 unique_id port 148297 remote_ip 10.8.0.234 148298 username alihosseini1 148298 mac 148298 bytes_out 0 148298 bytes_in 0 148298 station_ip 5.120.49.56 148298 port 269 148298 unique_id port 148257 unique_id port 148257 remote_ip 10.8.0.234 148259 username vanila 148259 mac 148259 bytes_out 40430 148259 bytes_in 68674 148259 station_ip 37.129.148.147 148259 port 496 148259 unique_id port 148259 remote_ip 10.8.0.178 148260 username jafari 148260 mac 148260 bytes_out 0 148260 bytes_in 0 148260 station_ip 5.134.189.200 148260 port 512 148260 unique_id port 148260 remote_ip 10.8.0.242 148261 username alipour 148261 mac 148261 bytes_out 3529580 148261 bytes_in 47462933 148261 station_ip 37.129.171.226 148261 port 506 148261 unique_id port 148261 remote_ip 10.8.0.102 148263 username sedighe 148263 mac 148263 bytes_out 59207 148263 bytes_in 66140 148263 station_ip 83.122.196.188 148263 port 492 148263 unique_id port 148263 remote_ip 10.8.0.146 148265 username godarzi 148265 mac 148265 bytes_out 455110 148265 bytes_in 5208436 148265 station_ip 5.120.41.138 148265 port 492 148265 unique_id port 148265 remote_ip 10.8.0.174 148266 username barzegar 148266 mac 148266 bytes_out 0 148266 bytes_in 0 148266 station_ip 5.119.236.105 148266 port 492 148266 unique_id port 148266 remote_ip 10.8.0.234 148268 username sedighe 148268 mac 148268 bytes_out 66566 148268 bytes_in 87614 148268 station_ip 83.122.196.188 148268 port 506 148268 unique_id port 148268 remote_ip 10.8.0.146 148270 username fezealinaghi 148270 mac 148270 bytes_out 25467 148270 bytes_in 32370 148270 station_ip 83.123.95.43 148270 port 518 148270 unique_id port 148270 remote_ip 10.8.0.78 148277 username mahdixz 148277 unique_id port 148277 terminate_cause Lost-Carrier 148277 bytes_out 1645070 148277 bytes_in 27829924 148277 station_ip 151.235.102.30 148277 port 15730989 148277 nas_port_type Virtual 148277 remote_ip 5.5.5.186 148279 username kalantary 148279 mac 148279 bytes_out 415510 148279 bytes_in 6855150 148279 station_ip 113.203.14.246 148279 port 512 148279 unique_id port 148279 remote_ip 10.8.0.98 148290 username vanila 148290 mac 148290 bytes_out 473935 148290 bytes_in 6498155 148290 station_ip 37.129.148.147 148290 port 506 148290 unique_id port 148290 remote_ip 10.8.0.178 148291 username barzegar 148291 mac 148291 bytes_out 0 148291 bytes_in 0 148291 station_ip 5.119.236.105 148291 port 506 148291 unique_id port 148291 remote_ip 10.8.0.234 148294 username barzegar 148294 mac 148294 bytes_out 2522 148294 bytes_in 4823 148294 station_ip 5.119.236.105 148294 port 506 148294 unique_id port 148294 remote_ip 10.8.0.234 148296 username hashtadani4 148296 kill_reason Another user logged on this global unique id 148296 mac 148296 bytes_out 0 148296 bytes_in 0 148296 station_ip 83.122.218.25 148296 port 517 148296 unique_id port 148299 username bcboard 148299 unique_id port 148299 terminate_cause User-Request 148299 bytes_out 136956 148299 bytes_in 1373326 148299 station_ip 37.129.34.70 148299 port 15730994 148299 nas_port_type Virtual 148299 remote_ip 5.5.5.218 148303 username vanila 148303 mac 148303 bytes_out 651090 148303 bytes_in 8406250 148303 station_ip 37.129.148.147 148303 port 512 148303 unique_id port 148303 remote_ip 10.8.0.178 148305 username bcboard 148305 unique_id port 148305 terminate_cause User-Request 148305 bytes_out 314315 148305 bytes_in 7669303 148305 station_ip 37.129.34.70 148305 port 15730995 148305 nas_port_type Virtual 148305 remote_ip 5.5.5.255 148306 username bcboard 148306 unique_id port 148306 terminate_cause User-Request 148306 bytes_out 86140 148306 bytes_in 718128 148306 station_ip 37.129.34.70 148306 port 15730996 148306 nas_port_type Virtual 148288 kill_reason Another user logged on this global unique id 148288 mac 148288 bytes_out 0 148288 bytes_in 0 148288 station_ip 83.122.218.25 148288 port 517 148288 unique_id port 148288 remote_ip 10.8.0.182 148289 username barzegar 148289 mac 148289 bytes_out 0 148289 bytes_in 0 148289 station_ip 5.119.236.105 148289 port 492 148289 unique_id port 148289 remote_ip 10.8.0.234 148292 username aminvpn 148292 unique_id port 148292 terminate_cause Lost-Carrier 148292 bytes_out 138431 148292 bytes_in 663054 148292 station_ip 5.120.103.178 148292 port 15730992 148292 nas_port_type Virtual 148292 remote_ip 5.5.5.255 148293 username vanila 148293 mac 148293 bytes_out 108248 148293 bytes_in 290623 148293 station_ip 37.129.148.147 148293 port 512 148293 unique_id port 148293 remote_ip 10.8.0.178 148295 username malekpoir 148295 kill_reason Another user logged on this global unique id 148295 mac 148295 bytes_out 0 148295 bytes_in 0 148295 station_ip 5.120.180.209 148295 port 504 148295 unique_id port 148295 remote_ip 10.8.0.58 148301 username sedighe 148301 mac 148301 bytes_out 123170 148301 bytes_in 232511 148301 station_ip 83.122.165.59 148301 port 496 148301 unique_id port 148301 remote_ip 10.8.0.146 148304 username meysam 148304 mac 148304 bytes_out 649772 148304 bytes_in 8891986 148304 station_ip 188.158.50.221 148304 port 506 148304 unique_id port 148304 remote_ip 10.8.0.110 148309 username bcboard 148309 unique_id port 148309 terminate_cause User-Request 148309 bytes_out 62601 148309 bytes_in 592181 148309 station_ip 37.129.34.70 148309 port 15730997 148309 nas_port_type Virtual 148309 remote_ip 5.5.5.255 148317 username jafari 148317 mac 148317 bytes_out 0 148317 bytes_in 0 148317 station_ip 5.134.189.200 148317 port 265 148317 unique_id port 148324 username barzegar 148324 mac 148324 bytes_out 0 148324 bytes_in 0 148324 station_ip 5.119.236.105 148324 port 266 148324 unique_id port 148324 remote_ip 10.8.1.174 148325 username barzegar 148325 mac 148325 bytes_out 0 148325 bytes_in 0 148325 station_ip 5.119.236.105 148325 port 269 148325 unique_id port 148325 remote_ip 10.8.1.174 148327 username barzegar 148327 mac 148327 bytes_out 0 148327 bytes_in 0 148327 station_ip 5.119.236.105 148327 port 512 148327 unique_id port 148327 remote_ip 10.8.0.234 148334 username barzegar 148334 mac 148334 bytes_out 0 148334 bytes_in 0 148334 station_ip 5.119.236.105 148334 port 492 148334 unique_id port 148334 remote_ip 10.8.0.234 148336 username barzegar 148336 mac 148336 bytes_out 2318 148336 bytes_in 4764 148336 station_ip 5.119.236.105 148336 port 266 148336 unique_id port 148336 remote_ip 10.8.1.174 148338 username barzegar 148338 mac 148338 bytes_out 0 148338 bytes_in 0 148338 station_ip 5.119.236.105 148338 port 492 148338 unique_id port 148338 remote_ip 10.8.0.234 148339 username moradi 148339 mac 148339 bytes_out 0 148339 bytes_in 0 148339 station_ip 46.225.209.243 148339 port 512 148339 unique_id port 148346 username hashtadani4 148346 kill_reason Maximum number of concurrent logins reached 148346 mac 148346 bytes_out 0 148346 bytes_in 0 148346 station_ip 83.122.218.25 148346 port 517 148346 unique_id port 148347 username hashtadani4 148347 kill_reason Maximum number of concurrent logins reached 148347 mac 148347 bytes_out 0 148347 bytes_in 0 148347 station_ip 83.122.218.25 148347 port 518 148347 unique_id port 148349 username kordestani 148349 mac 148349 bytes_out 0 148349 bytes_in 0 148349 station_ip 83.122.24.0 148349 port 513 148298 remote_ip 10.8.1.106 148300 username godarzi 148300 mac 148300 bytes_out 4062459 148300 bytes_in 40691691 148300 station_ip 5.120.41.138 148300 port 492 148300 unique_id port 148300 remote_ip 10.8.0.174 148302 username barzegar 148302 mac 148302 bytes_out 2416 148302 bytes_in 4717 148302 station_ip 5.119.236.105 148302 port 492 148302 unique_id port 148302 remote_ip 10.8.0.234 148307 username hashtadani4 148307 kill_reason Another user logged on this global unique id 148307 mac 148307 bytes_out 0 148307 bytes_in 0 148307 station_ip 83.122.218.25 148307 port 517 148307 unique_id port 148308 username hashtadani4 148308 mac 148308 bytes_out 0 148308 bytes_in 0 148308 station_ip 83.122.218.25 148308 port 517 148308 unique_id port 148310 username barzegar 148310 mac 148310 bytes_out 2536 148310 bytes_in 4898 148310 station_ip 5.119.236.105 148310 port 496 148310 unique_id port 148310 remote_ip 10.8.0.234 148312 username hashtadani4 148312 kill_reason Maximum check online fails reached 148312 mac 148312 bytes_out 0 148312 bytes_in 0 148312 station_ip 83.122.218.25 148312 port 506 148312 unique_id port 148314 username hashtadani4 148314 kill_reason Maximum check online fails reached 148314 mac 148314 bytes_out 0 148314 bytes_in 0 148314 station_ip 83.122.218.25 148314 port 496 148314 unique_id port 148318 username barzegar 148318 mac 148318 bytes_out 0 148318 bytes_in 0 148318 station_ip 5.119.236.105 148318 port 513 148318 unique_id port 148318 remote_ip 10.8.0.234 148319 username forozandeh1 148319 mac 148319 bytes_out 633381 148319 bytes_in 5937954 148319 station_ip 83.122.152.223 148319 port 512 148319 unique_id port 148319 remote_ip 10.8.0.130 148328 username fezealinaghi 148328 mac 148328 bytes_out 0 148328 bytes_in 0 148328 station_ip 83.123.95.43 148328 port 266 148328 unique_id port 148328 remote_ip 10.8.1.162 148329 username kordestani 148329 kill_reason Another user logged on this global unique id 148329 mac 148329 bytes_out 0 148329 bytes_in 0 148329 station_ip 83.122.24.0 148329 port 513 148329 unique_id port 148329 remote_ip 10.8.0.134 148331 username moradi 148331 kill_reason Another user logged on this global unique id 148331 mac 148331 bytes_out 0 148331 bytes_in 0 148331 station_ip 46.225.209.243 148331 port 512 148331 unique_id port 148331 remote_ip 10.8.0.226 148332 username khalili 148332 kill_reason Another user logged on this global unique id 148332 mac 148332 bytes_out 0 148332 bytes_in 0 148332 station_ip 5.119.173.8 148332 port 489 148332 unique_id port 148332 remote_ip 10.8.0.86 148335 username aminvpn 148335 mac 148335 bytes_out 0 148335 bytes_in 0 148335 station_ip 83.122.237.147 148335 port 491 148335 unique_id port 148335 remote_ip 10.8.0.14 148337 username barzegar 148337 mac 148337 bytes_out 2642 148337 bytes_in 5128 148337 station_ip 5.119.236.105 148337 port 266 148337 unique_id port 148337 remote_ip 10.8.1.174 148340 username fezealinaghi 148340 kill_reason Another user logged on this global unique id 148340 mac 148340 bytes_out 0 148340 bytes_in 0 148340 station_ip 83.123.95.43 148340 port 517 148340 unique_id port 148340 remote_ip 10.8.0.78 148342 username fezealinaghi 148342 mac 148342 bytes_out 0 148342 bytes_in 0 148342 station_ip 83.123.95.43 148342 port 517 148342 unique_id port 148343 username barzegar 148343 mac 148343 bytes_out 0 148343 bytes_in 0 148343 station_ip 5.119.236.105 148343 port 492 148343 unique_id port 148343 remote_ip 10.8.0.234 148344 username hashtadani4 148344 mac 148344 bytes_out 0 148306 remote_ip 5.5.5.255 148311 username hashtadani4 148311 kill_reason Maximum number of concurrent logins reached 148311 mac 148311 bytes_out 0 148311 bytes_in 0 148311 station_ip 83.122.218.25 148311 port 512 148311 unique_id port 148313 username kalantary 148313 mac 148313 bytes_out 622964 148313 bytes_in 3727729 148313 station_ip 113.203.103.146 148313 port 513 148313 unique_id port 148313 remote_ip 10.8.0.98 148315 username jafari 148315 kill_reason Another user logged on this global unique id 148315 mac 148315 bytes_out 0 148315 bytes_in 0 148315 station_ip 5.134.189.200 148315 port 265 148315 unique_id port 148315 remote_ip 10.8.1.198 148316 username barzegar 148316 mac 148316 bytes_out 0 148316 bytes_in 0 148316 station_ip 5.119.236.105 148316 port 513 148316 unique_id port 148316 remote_ip 10.8.0.234 148320 username godarzi 148320 mac 148320 bytes_out 149805 148320 bytes_in 1170334 148320 station_ip 5.120.41.138 148320 port 517 148320 unique_id port 148320 remote_ip 10.8.0.174 148321 username mehdizare 148321 mac 148321 bytes_out 0 148321 bytes_in 0 148321 station_ip 5.120.140.28 148321 port 266 148321 unique_id port 148322 username barzegar 148322 mac 148322 bytes_out 1523416 148322 bytes_in 20420988 148322 station_ip 5.119.236.105 148322 port 512 148322 unique_id port 148322 remote_ip 10.8.0.234 148323 username fezealinaghi 148323 mac 148323 bytes_out 346627 148323 bytes_in 2826408 148323 station_ip 83.123.95.43 148323 port 492 148323 unique_id port 148323 remote_ip 10.8.0.78 148326 username mohammadjavad 148326 mac 148326 bytes_out 147605 148326 bytes_in 4054130 148326 station_ip 113.203.96.70 148326 port 492 148326 unique_id port 148326 remote_ip 10.8.0.142 148330 username kalantary 148330 mac 148330 bytes_out 0 148330 bytes_in 0 148330 station_ip 113.203.22.246 148330 port 520 148330 unique_id port 148330 remote_ip 10.8.0.98 148333 username hasanahmadi 148333 mac 148333 bytes_out 0 148333 bytes_in 0 148333 station_ip 83.123.50.132 148333 port 518 148333 unique_id port 148333 remote_ip 10.8.0.126 148341 username hashtadani4 148341 kill_reason Another user logged on this global unique id 148341 mac 148341 bytes_out 0 148341 bytes_in 0 148341 station_ip 83.122.218.25 148341 port 519 148341 unique_id port 148341 remote_ip 10.8.0.182 148348 username hashtadani4 148348 kill_reason Maximum number of concurrent logins reached 148348 mac 148348 bytes_out 0 148348 bytes_in 0 148348 station_ip 83.122.218.25 148348 port 518 148348 unique_id port 148350 username hashtadani4 148350 kill_reason Maximum number of concurrent logins reached 148350 mac 148350 bytes_out 0 148350 bytes_in 0 148350 station_ip 83.122.218.25 148350 port 513 148350 unique_id port 148354 username hashtadani4 148354 kill_reason Maximum check online fails reached 148354 mac 148354 bytes_out 0 148354 bytes_in 0 148354 station_ip 83.122.218.25 148354 port 512 148354 unique_id port 148358 username khalili 148358 mac 148358 bytes_out 0 148358 bytes_in 0 148358 station_ip 5.119.173.8 148358 port 518 148358 unique_id port 148358 remote_ip 10.8.0.86 148363 username khalili 148363 mac 148363 bytes_out 0 148363 bytes_in 0 148363 station_ip 5.119.173.8 148363 port 518 148363 unique_id port 148363 remote_ip 10.8.0.86 148365 username aminvpn 148365 mac 148365 bytes_out 0 148365 bytes_in 0 148365 station_ip 5.120.103.178 148365 port 489 148365 unique_id port 148365 remote_ip 10.8.0.14 148370 username barzegar 148370 mac 148370 bytes_out 178423 148370 bytes_in 251625 148344 bytes_in 0 148344 station_ip 83.122.218.25 148344 port 519 148344 unique_id port 148345 username hashtadani4 148345 mac 148345 bytes_out 0 148345 bytes_in 0 148345 station_ip 83.122.218.25 148345 port 269 148345 unique_id port 148345 remote_ip 10.8.1.142 148353 username barzegar 148353 mac 148353 bytes_out 0 148353 bytes_in 0 148353 station_ip 5.119.236.105 148353 port 517 148353 unique_id port 148353 remote_ip 10.8.0.234 148357 username khalili 148357 mac 148357 bytes_out 0 148357 bytes_in 0 148357 station_ip 5.119.173.8 148357 port 489 148357 unique_id port 148359 username khalili 148359 mac 148359 bytes_out 0 148359 bytes_in 0 148359 station_ip 5.119.173.8 148359 port 489 148359 unique_id port 148359 remote_ip 10.8.0.86 148361 username aminvpn 148361 mac 148361 bytes_out 0 148361 bytes_in 0 148361 station_ip 5.120.103.178 148361 port 517 148361 unique_id port 148361 remote_ip 10.8.0.14 148362 username aminvpn 148362 mac 148362 bytes_out 19885 148362 bytes_in 20425 148362 station_ip 5.120.103.178 148362 port 489 148362 unique_id port 148362 remote_ip 10.8.0.14 148364 username aminvpn 148364 mac 148364 bytes_out 0 148364 bytes_in 0 148364 station_ip 83.122.221.199 148364 port 517 148364 unique_id port 148364 remote_ip 10.8.0.14 148367 username tahmasebi 148367 mac 148367 bytes_out 354573 148367 bytes_in 4488050 148367 station_ip 5.119.244.196 148367 port 517 148367 unique_id port 148367 remote_ip 10.8.0.42 148371 username aminvpn 148371 mac 148371 bytes_out 0 148371 bytes_in 0 148371 station_ip 5.120.103.178 148371 port 489 148371 unique_id port 148371 remote_ip 10.8.0.14 148375 username aminvpn 148375 mac 148375 bytes_out 0 148375 bytes_in 0 148375 station_ip 83.122.221.199 148375 port 513 148375 unique_id port 148375 remote_ip 10.8.0.14 148376 username aminvpn 148376 mac 148376 bytes_out 0 148376 bytes_in 0 148376 station_ip 5.120.103.178 148376 port 519 148376 unique_id port 148376 remote_ip 10.8.0.14 148378 username aminvpn 148378 mac 148378 bytes_out 0 148378 bytes_in 0 148378 station_ip 5.120.103.178 148378 port 519 148378 unique_id port 148378 remote_ip 10.8.0.14 148379 username aminvpn 148379 mac 148379 bytes_out 0 148379 bytes_in 0 148379 station_ip 83.122.221.199 148379 port 513 148379 unique_id port 148379 remote_ip 10.8.0.14 148383 username farhad2 148383 mac 148383 bytes_out 105765 148383 bytes_in 434917 148383 station_ip 5.119.34.164 148383 port 519 148383 unique_id port 148383 remote_ip 10.8.0.190 148384 username aminvpn 148384 mac 148384 bytes_out 0 148384 bytes_in 0 148384 station_ip 83.122.221.199 148384 port 522 148384 unique_id port 148384 remote_ip 10.8.0.14 148385 username aminvpn 148385 mac 148385 bytes_out 0 148385 bytes_in 0 148385 station_ip 5.120.103.178 148385 port 521 148385 unique_id port 148385 remote_ip 10.8.0.14 148389 username jafari 148389 kill_reason Another user logged on this global unique id 148389 mac 148389 bytes_out 0 148389 bytes_in 0 148389 station_ip 5.134.189.200 148389 port 517 148389 unique_id port 148389 remote_ip 10.8.0.242 148390 username aminvpn 148390 mac 148390 bytes_out 0 148390 bytes_in 0 148390 station_ip 83.122.221.199 148390 port 522 148390 unique_id port 148390 remote_ip 10.8.0.14 148393 username saeed9658 148393 mac 148393 bytes_out 0 148393 bytes_in 0 148393 station_ip 5.119.195.219 148393 port 521 148393 unique_id port 148349 unique_id port 148351 username moradi 148351 mac 148351 bytes_out 213482 148351 bytes_in 2624436 148351 station_ip 46.225.211.82 148351 port 266 148351 unique_id port 148351 remote_ip 10.8.1.202 148352 username hashtadani4 148352 kill_reason Maximum number of concurrent logins reached 148352 mac 148352 bytes_out 0 148352 bytes_in 0 148352 station_ip 83.122.218.25 148352 port 266 148352 unique_id port 148355 username hashtadani4 148355 kill_reason Maximum check online fails reached 148355 mac 148355 bytes_out 0 148355 bytes_in 0 148355 station_ip 83.122.218.25 148355 port 492 148355 unique_id port 148356 username aminvpn 148356 mac 148356 bytes_out 0 148356 bytes_in 0 148356 station_ip 5.120.103.178 148356 port 513 148356 unique_id port 148356 remote_ip 10.8.0.14 148360 username barzegar 148360 mac 148360 bytes_out 0 148360 bytes_in 0 148360 station_ip 5.119.236.105 148360 port 513 148360 unique_id port 148360 remote_ip 10.8.0.234 148366 username aminvpn 148366 mac 148366 bytes_out 0 148366 bytes_in 0 148366 station_ip 83.122.221.199 148366 port 518 148366 unique_id port 148366 remote_ip 10.8.0.14 148368 username aminvpn 148368 mac 148368 bytes_out 0 148368 bytes_in 0 148368 station_ip 5.120.103.178 148368 port 489 148368 unique_id port 148368 remote_ip 10.8.0.14 148369 username aminvpn 148369 mac 148369 bytes_out 0 148369 bytes_in 0 148369 station_ip 83.122.221.199 148369 port 517 148369 unique_id port 148369 remote_ip 10.8.0.14 148372 username mammad 148372 kill_reason Relative expiration date has reached 148372 unique_id port 148372 bytes_out 0 148372 bytes_in 0 148372 station_ip 5.120.103.178 148372 port 15731003 148372 nas_port_type Virtual 148377 username aminvpn 148377 mac 148377 bytes_out 0 148377 bytes_in 0 148377 station_ip 83.122.221.199 148377 port 513 148377 unique_id port 148377 remote_ip 10.8.0.14 148380 username aminvpn 148380 mac 148380 bytes_out 0 148380 bytes_in 0 148380 station_ip 5.120.103.178 148380 port 519 148380 unique_id port 148380 remote_ip 10.8.0.14 148388 username aminvpn 148388 mac 148388 bytes_out 0 148388 bytes_in 0 148388 station_ip 5.120.103.178 148388 port 521 148388 unique_id port 148388 remote_ip 10.8.0.14 148391 username aminvpn 148391 mac 148391 bytes_out 0 148391 bytes_in 0 148391 station_ip 5.120.103.178 148391 port 524 148391 unique_id port 148391 remote_ip 10.8.0.14 148392 username aminvpn 148392 mac 148392 bytes_out 0 148392 bytes_in 0 148392 station_ip 83.122.221.199 148392 port 522 148392 unique_id port 148392 remote_ip 10.8.0.14 148395 username barzegar 148395 mac 148395 bytes_out 173212 148395 bytes_in 257821 148395 station_ip 5.119.236.105 148395 port 489 148395 unique_id port 148395 remote_ip 10.8.0.234 148399 username saeed9658 148399 mac 148399 bytes_out 0 148399 bytes_in 0 148399 station_ip 5.119.195.219 148399 port 489 148399 unique_id port 148399 remote_ip 10.8.0.62 148402 username saeed9658 148402 mac 148402 bytes_out 0 148402 bytes_in 0 148402 station_ip 5.119.195.219 148402 port 489 148402 unique_id port 148402 remote_ip 10.8.0.62 148404 username aminvpn 148404 mac 148404 bytes_out 0 148404 bytes_in 0 148404 station_ip 5.120.103.178 148404 port 521 148404 unique_id port 148404 remote_ip 10.8.0.14 148406 username jafari 148406 mac 148406 bytes_out 0 148406 bytes_in 0 148406 station_ip 5.134.189.200 148406 port 517 148406 unique_id port 148407 username aminvpn 148407 mac 148370 station_ip 5.119.236.105 148370 port 513 148370 unique_id port 148370 remote_ip 10.8.0.234 148373 username aminvpn 148373 mac 148373 bytes_out 0 148373 bytes_in 0 148373 station_ip 83.122.221.199 148373 port 513 148373 unique_id port 148373 remote_ip 10.8.0.14 148374 username aminvpn 148374 mac 148374 bytes_out 0 148374 bytes_in 0 148374 station_ip 5.120.103.178 148374 port 519 148374 unique_id port 148374 remote_ip 10.8.0.14 148381 username aminvpn 148381 mac 148381 bytes_out 0 148381 bytes_in 0 148381 station_ip 83.122.221.199 148381 port 513 148381 unique_id port 148381 remote_ip 10.8.0.14 148382 username aminvpn 148382 mac 148382 bytes_out 0 148382 bytes_in 0 148382 station_ip 5.120.103.178 148382 port 521 148382 unique_id port 148382 remote_ip 10.8.0.14 148386 username milan 148386 kill_reason Another user logged on this global unique id 148386 mac 148386 bytes_out 0 148386 bytes_in 0 148386 station_ip 5.120.31.183 148386 port 514 148386 unique_id port 148387 username aminvpn 148387 mac 148387 bytes_out 0 148387 bytes_in 0 148387 station_ip 83.122.221.199 148387 port 522 148387 unique_id port 148387 remote_ip 10.8.0.14 148394 username kalantary 148394 mac 148394 bytes_out 568152 148394 bytes_in 3796881 148394 station_ip 113.203.61.126 148394 port 518 148394 unique_id port 148394 remote_ip 10.8.0.98 148396 username aminvpn 148396 mac 148396 bytes_out 0 148396 bytes_in 0 148396 station_ip 5.120.103.178 148396 port 524 148396 unique_id port 148396 remote_ip 10.8.0.14 148397 username farhad2 148397 mac 148397 bytes_out 0 148397 bytes_in 0 148397 station_ip 5.119.34.164 148397 port 519 148397 unique_id port 148397 remote_ip 10.8.0.190 148400 username aminvpn 148400 mac 148400 bytes_out 0 148400 bytes_in 0 148400 station_ip 5.120.103.178 148400 port 519 148400 unique_id port 148400 remote_ip 10.8.0.14 148408 username alireza 148408 kill_reason Relative expiration date has reached 148408 unique_id port 148408 bytes_out 0 148408 bytes_in 0 148408 station_ip 5.119.119.229 148408 port 15731004 148408 nas_port_type Virtual 148409 username aminvpn 148409 mac 148409 bytes_out 0 148409 bytes_in 0 148409 station_ip 5.120.103.178 148409 port 521 148409 unique_id port 148409 remote_ip 10.8.0.14 148413 username aminvpn 148413 mac 148413 bytes_out 0 148413 bytes_in 0 148413 station_ip 83.122.221.199 148413 port 518 148413 unique_id port 148413 remote_ip 10.8.0.14 148416 username hashtadani4 148416 kill_reason Another user logged on this global unique id 148416 mac 148416 bytes_out 0 148416 bytes_in 0 148416 station_ip 83.122.218.25 148416 port 520 148416 unique_id port 148416 remote_ip 10.8.0.182 148417 username saeed9658 148417 mac 148417 bytes_out 13179 148417 bytes_in 31090 148417 station_ip 5.119.195.219 148417 port 269 148417 unique_id port 148417 remote_ip 10.8.1.210 148418 username moradi 148418 mac 148418 bytes_out 0 148418 bytes_in 0 148418 station_ip 83.122.220.34 148418 port 266 148418 unique_id port 148418 remote_ip 10.8.1.202 148422 username jafari 148422 kill_reason Another user logged on this global unique id 148422 mac 148422 bytes_out 0 148422 bytes_in 0 148422 station_ip 5.134.189.200 148422 port 489 148422 unique_id port 148422 remote_ip 10.8.0.242 148424 username barzegar 148424 mac 148424 bytes_out 0 148424 bytes_in 0 148424 station_ip 5.119.236.105 148424 port 524 148424 unique_id port 148424 remote_ip 10.8.0.234 148427 username hashtadani4 148455 remote_ip 10.8.0.86 148393 remote_ip 10.8.0.62 148398 username aminvpn 148398 mac 148398 bytes_out 0 148398 bytes_in 0 148398 station_ip 83.122.221.199 148398 port 489 148398 unique_id port 148398 remote_ip 10.8.0.14 148401 username aminvpn 148401 mac 148401 bytes_out 0 148401 bytes_in 0 148401 station_ip 83.122.221.199 148401 port 489 148401 unique_id port 148401 remote_ip 10.8.0.14 148403 username rezaei 148403 mac 148403 bytes_out 244172 148403 bytes_in 2040435 148403 station_ip 5.119.164.255 148403 port 518 148403 unique_id port 148403 remote_ip 10.8.0.230 148405 username saeed9658 148405 mac 148405 bytes_out 0 148405 bytes_in 0 148405 station_ip 5.119.195.219 148405 port 489 148405 unique_id port 148405 remote_ip 10.8.0.62 148411 username farhad2 148411 mac 148411 bytes_out 333897 148411 bytes_in 1983398 148411 station_ip 5.119.34.164 148411 port 519 148411 unique_id port 148411 remote_ip 10.8.0.190 148415 username barzegar 148415 mac 148415 bytes_out 0 148415 bytes_in 0 148415 station_ip 5.119.236.105 148415 port 518 148415 unique_id port 148415 remote_ip 10.8.0.234 148423 username moradi 148423 mac 148423 bytes_out 0 148423 bytes_in 0 148423 station_ip 83.122.220.34 148423 port 266 148423 unique_id port 148423 remote_ip 10.8.1.202 148432 username sedighe 148432 mac 148432 bytes_out 0 148432 bytes_in 0 148432 station_ip 83.122.165.59 148432 port 517 148432 unique_id port 148432 remote_ip 10.8.0.146 148441 username barzegar 148441 mac 148441 bytes_out 0 148441 bytes_in 0 148441 station_ip 5.119.236.105 148441 port 266 148441 unique_id port 148441 remote_ip 10.8.1.174 148443 username hamidsalari 148443 mac 148443 bytes_out 125871 148443 bytes_in 843824 148443 station_ip 5.119.237.95 148443 port 525 148443 unique_id port 148443 remote_ip 10.8.0.222 148448 username khalili 148448 mac 148448 bytes_out 0 148448 bytes_in 0 148448 station_ip 5.119.173.8 148448 port 518 148448 unique_id port 148448 remote_ip 10.8.0.86 148449 username barzegar 148449 mac 148449 bytes_out 19827 148449 bytes_in 23646 148449 station_ip 5.119.236.105 148449 port 266 148449 unique_id port 148449 remote_ip 10.8.1.174 148451 username kalantary 148451 mac 148451 bytes_out 0 148451 bytes_in 0 148451 station_ip 113.203.41.146 148451 port 519 148451 unique_id port 148451 remote_ip 10.8.0.98 148453 username forozandeh1 148453 mac 148453 bytes_out 0 148453 bytes_in 0 148453 station_ip 37.129.88.81 148453 port 518 148453 unique_id port 148453 remote_ip 10.8.0.130 148468 username godarzi 148468 mac 148468 bytes_out 0 148468 bytes_in 0 148468 station_ip 5.202.5.1 148468 port 491 148468 unique_id port 148468 remote_ip 10.8.0.174 148472 username nilufarrajaei 148472 mac 148472 bytes_out 0 148472 bytes_in 0 148472 station_ip 37.129.11.181 148472 port 521 148472 unique_id port 148472 remote_ip 10.8.0.206 148473 username hamidsalari 148473 mac 148473 bytes_out 0 148473 bytes_in 0 148473 station_ip 5.119.158.228 148473 port 513 148473 unique_id port 148473 remote_ip 10.8.0.222 148474 username hamidsalari 148474 mac 148474 bytes_out 0 148474 bytes_in 0 148474 station_ip 5.120.57.212 148474 port 518 148474 unique_id port 148474 remote_ip 10.8.0.222 148480 username barzegar 148480 mac 148480 bytes_out 156466 148480 bytes_in 790952 148480 station_ip 5.119.236.105 148480 port 270 148480 unique_id port 148480 remote_ip 10.8.1.174 148489 username barzegar 148489 mac 148407 bytes_out 0 148407 bytes_in 0 148407 station_ip 83.122.221.199 148407 port 518 148407 unique_id port 148407 remote_ip 10.8.0.14 148410 username mehdizare 148410 mac 148410 bytes_out 144527 148410 bytes_in 210566 148410 station_ip 5.120.140.28 148410 port 265 148410 unique_id port 148410 remote_ip 10.8.1.42 148412 username saeed9658 148412 mac 148412 bytes_out 0 148412 bytes_in 0 148412 station_ip 5.119.195.219 148412 port 519 148412 unique_id port 148412 remote_ip 10.8.0.62 148414 username barzegar 148414 mac 148414 bytes_out 0 148414 bytes_in 0 148414 station_ip 5.119.236.105 148414 port 517 148414 unique_id port 148414 remote_ip 10.8.0.234 148419 username mostafa_es78 148419 unique_id port 148419 terminate_cause Lost-Carrier 148419 bytes_out 4256012 148419 bytes_in 17874757 148419 station_ip 5.125.210.125 148419 port 15731000 148419 nas_port_type Virtual 148419 remote_ip 5.5.5.208 148420 username mahdixz 148420 unique_id port 148420 terminate_cause User-Request 148420 bytes_out 196438 148420 bytes_in 429335 148420 station_ip 37.129.134.104 148420 port 15731005 148420 nas_port_type Virtual 148420 remote_ip 5.5.5.254 148421 username khademi 148421 kill_reason Another user logged on this global unique id 148421 mac 148421 bytes_out 0 148421 bytes_in 0 148421 station_ip 83.123.168.1 148421 port 523 148421 unique_id port 148421 remote_ip 10.8.0.10 148425 username hashtadani4 148425 mac 148425 bytes_out 0 148425 bytes_in 0 148425 station_ip 83.122.218.25 148425 port 520 148425 unique_id port 148426 username hashtadani4 148426 mac 148426 bytes_out 0 148426 bytes_in 0 148426 station_ip 83.122.218.25 148426 port 524 148426 unique_id port 148426 remote_ip 10.8.0.182 148428 username jafari 148428 mac 148428 bytes_out 0 148428 bytes_in 0 148428 station_ip 5.134.189.200 148428 port 489 148428 unique_id port 148429 username hashtadani4 148429 mac 148429 bytes_out 0 148429 bytes_in 0 148429 station_ip 83.122.218.25 148429 port 489 148429 unique_id port 148429 remote_ip 10.8.0.182 148431 username hashtadani4 148431 mac 148431 bytes_out 1644 148431 bytes_in 5182 148431 station_ip 83.122.218.25 148431 port 489 148431 unique_id port 148431 remote_ip 10.8.0.182 148433 username hashtadani4 148433 kill_reason Maximum check online fails reached 148433 mac 148433 bytes_out 0 148433 bytes_in 0 148433 station_ip 83.122.218.25 148433 port 269 148433 unique_id port 148434 username moradi 148434 mac 148434 bytes_out 67698 148434 bytes_in 179882 148434 station_ip 83.122.220.34 148434 port 266 148434 unique_id port 148434 remote_ip 10.8.1.202 148438 username barzegar 148438 mac 148438 bytes_out 4105 148438 bytes_in 6345 148438 station_ip 5.119.236.105 148438 port 524 148438 unique_id port 148438 remote_ip 10.8.0.234 148440 username rezaei 148440 mac 148440 bytes_out 73063 148440 bytes_in 637298 148440 station_ip 5.119.164.255 148440 port 513 148440 unique_id port 148440 remote_ip 10.8.0.230 148446 username sedighe 148446 mac 148446 bytes_out 103143 148446 bytes_in 120437 148446 station_ip 83.122.165.59 148446 port 521 148446 unique_id port 148446 remote_ip 10.8.0.146 148454 username jafari 148454 kill_reason Another user logged on this global unique id 148454 mac 148454 bytes_out 0 148454 bytes_in 0 148454 station_ip 5.134.189.200 148454 port 489 148454 unique_id port 148454 remote_ip 10.8.0.242 148455 username khalili 148455 mac 148455 bytes_out 1953360 148455 bytes_in 22981430 148455 station_ip 5.119.173.8 148455 port 522 148455 unique_id port 148427 kill_reason Maximum check online fails reached 148427 mac 148427 bytes_out 0 148427 bytes_in 0 148427 station_ip 83.122.218.25 148427 port 520 148427 unique_id port 148430 username hashtadani4 148430 kill_reason Maximum number of concurrent logins reached 148430 mac 148430 bytes_out 0 148430 bytes_in 0 148430 station_ip 83.122.218.25 148430 port 524 148430 unique_id port 148435 username mahdiyehalizadeh 148435 mac 148435 bytes_out 1228212 148435 bytes_in 16644777 148435 station_ip 37.129.106.52 148435 port 521 148435 unique_id port 148435 remote_ip 10.8.0.82 148436 username sedighe 148436 mac 148436 bytes_out 0 148436 bytes_in 0 148436 station_ip 83.122.165.59 148436 port 489 148436 unique_id port 148436 remote_ip 10.8.0.146 148437 username hamidsalari 148437 mac 148437 bytes_out 0 148437 bytes_in 0 148437 station_ip 5.119.71.146 148437 port 513 148437 unique_id port 148437 remote_ip 10.8.0.222 148439 username aminvpn 148439 mac 148439 bytes_out 0 148439 bytes_in 0 148439 station_ip 5.120.103.178 148439 port 519 148439 unique_id port 148439 remote_ip 10.8.0.14 148442 username houshang 148442 mac 148442 bytes_out 0 148442 bytes_in 0 148442 station_ip 5.119.243.96 148442 port 489 148442 unique_id port 148442 remote_ip 10.8.0.22 148444 username forozandeh1 148444 mac 148444 bytes_out 1110022 148444 bytes_in 9622747 148444 station_ip 83.122.254.74 148444 port 522 148444 unique_id port 148444 remote_ip 10.8.0.130 148445 username mostafa_es78 148445 unique_id port 148445 terminate_cause User-Request 148445 bytes_out 75380 148445 bytes_in 1139602 148445 station_ip 5.125.210.125 148445 port 15731008 148445 nas_port_type Virtual 148445 remote_ip 5.5.5.206 148447 username barzegar 148447 mac 148447 bytes_out 0 148447 bytes_in 0 148447 station_ip 5.119.236.105 148447 port 266 148447 unique_id port 148447 remote_ip 10.8.1.174 148450 username godarzi 148450 kill_reason Another user logged on this global unique id 148450 mac 148450 bytes_out 0 148450 bytes_in 0 148450 station_ip 5.202.5.1 148450 port 491 148450 unique_id port 148450 remote_ip 10.8.0.174 148452 username mehdizare 148452 mac 148452 bytes_out 96184 148452 bytes_in 80372 148452 station_ip 5.120.140.28 148452 port 265 148452 unique_id port 148452 remote_ip 10.8.1.42 148456 username godarzi 148456 mac 148456 bytes_out 0 148456 bytes_in 0 148456 station_ip 5.202.5.1 148456 port 491 148456 unique_id port 148457 username vanila 148457 mac 148457 bytes_out 0 148457 bytes_in 0 148457 station_ip 37.129.251.147 148457 port 519 148457 unique_id port 148457 remote_ip 10.8.0.178 148458 username vanila 148458 mac 148458 bytes_out 50911 148458 bytes_in 117934 148458 station_ip 37.129.251.147 148458 port 491 148458 unique_id port 148458 remote_ip 10.8.0.178 148460 username mehdizare 148460 mac 148460 bytes_out 0 148460 bytes_in 0 148460 station_ip 5.120.140.28 148460 port 265 148460 unique_id port 148460 remote_ip 10.8.1.42 148462 username jafari 148462 mac 148462 bytes_out 0 148462 bytes_in 0 148462 station_ip 5.134.189.200 148462 port 489 148462 unique_id port 148463 username godarzi 148463 mac 148463 bytes_out 101384 148463 bytes_in 282147 148463 station_ip 5.202.5.1 148463 port 519 148463 unique_id port 148463 remote_ip 10.8.0.174 148465 username vanila 148465 mac 148465 bytes_out 684160 148465 bytes_in 3014447 148465 station_ip 37.129.251.147 148465 port 491 148465 unique_id port 148465 remote_ip 10.8.0.178 148466 username malekpoir 148459 username khademi 148459 kill_reason Another user logged on this global unique id 148459 mac 148459 bytes_out 0 148459 bytes_in 0 148459 station_ip 83.123.168.1 148459 port 523 148459 unique_id port 148461 username barzegar 148461 mac 148461 bytes_out 0 148461 bytes_in 0 148461 station_ip 5.119.236.105 148461 port 525 148461 unique_id port 148461 remote_ip 10.8.0.234 148464 username sekonji3 148464 mac 148464 bytes_out 390833 148464 bytes_in 6799466 148464 station_ip 83.122.218.158 148464 port 518 148464 unique_id port 148464 remote_ip 10.8.0.6 148467 username kalantary 148467 mac 148467 bytes_out 0 148467 bytes_in 0 148467 station_ip 113.203.50.246 148467 port 518 148467 unique_id port 148467 remote_ip 10.8.0.98 148469 username hosseine 148469 kill_reason Another user logged on this global unique id 148469 mac 148469 bytes_out 0 148469 bytes_in 0 148469 station_ip 37.129.32.118 148469 port 517 148469 unique_id port 148469 remote_ip 10.8.0.238 148471 username hamidsalari1 148471 mac 148471 bytes_out 0 148471 bytes_in 0 148471 station_ip 83.122.28.211 148471 port 266 148471 unique_id port 148471 remote_ip 10.8.1.170 148477 username barzegar 148477 mac 148477 bytes_out 27771 148477 bytes_in 70459 148477 station_ip 5.119.236.105 148477 port 270 148477 unique_id port 148477 remote_ip 10.8.1.174 148478 username mammad 148478 kill_reason Relative expiration date has reached 148478 unique_id port 148478 bytes_out 0 148478 bytes_in 0 148478 station_ip 5.233.57.39 148478 port 15731011 148478 nas_port_type Virtual 148481 username khademi 148481 kill_reason Another user logged on this global unique id 148481 mac 148481 bytes_out 0 148481 bytes_in 0 148481 station_ip 83.123.168.1 148481 port 523 148481 unique_id port 148484 username barzegar 148484 mac 148484 bytes_out 0 148484 bytes_in 0 148484 station_ip 5.119.236.105 148484 port 270 148484 unique_id port 148484 remote_ip 10.8.1.174 148485 username khademi 148485 kill_reason Another user logged on this global unique id 148485 mac 148485 bytes_out 0 148485 bytes_in 0 148485 station_ip 83.123.168.1 148485 port 523 148485 unique_id port 148493 username barzegar 148493 mac 148493 bytes_out 0 148493 bytes_in 0 148493 station_ip 5.119.236.105 148493 port 522 148493 unique_id port 148493 remote_ip 10.8.0.234 148494 username arash 148494 mac 148494 bytes_out 0 148494 bytes_in 0 148494 station_ip 37.137.21.146 148494 port 518 148494 unique_id port 148494 remote_ip 10.8.0.114 148497 username hamidsalari 148497 kill_reason Another user logged on this global unique id 148497 mac 148497 bytes_out 0 148497 bytes_in 0 148497 station_ip 5.120.7.122 148497 port 519 148497 unique_id port 148497 remote_ip 10.8.0.222 148504 username barzegar 148504 mac 148504 bytes_out 0 148504 bytes_in 0 148504 station_ip 5.119.236.105 148504 port 518 148504 unique_id port 148504 remote_ip 10.8.0.234 148506 username hashtadani4 148506 mac 148506 bytes_out 0 148506 bytes_in 0 148506 station_ip 83.122.218.25 148506 port 522 148506 unique_id port 148506 remote_ip 10.8.0.182 148513 username hosseine 148513 mac 148513 bytes_out 0 148513 bytes_in 0 148513 station_ip 37.129.32.118 148513 port 517 148513 unique_id port 148517 username hashtadani4 148517 mac 148517 bytes_out 0 148517 bytes_in 0 148517 station_ip 83.122.218.25 148517 port 270 148517 unique_id port 148517 remote_ip 10.8.1.142 148523 username hashtadani4 148523 mac 148523 bytes_out 0 148523 bytes_in 0 148523 station_ip 83.122.218.25 148523 port 513 148466 mac 148466 bytes_out 0 148466 bytes_in 0 148466 station_ip 5.120.180.209 148466 port 504 148466 unique_id port 148470 username hamidsalari1 148470 mac 148470 bytes_out 0 148470 bytes_in 0 148470 station_ip 83.122.28.211 148470 port 524 148470 unique_id port 148470 remote_ip 10.8.0.74 148475 username khademi 148475 kill_reason Another user logged on this global unique id 148475 mac 148475 bytes_out 0 148475 bytes_in 0 148475 station_ip 83.123.168.1 148475 port 523 148475 unique_id port 148476 username godarzi 148476 mac 148476 bytes_out 0 148476 bytes_in 0 148476 station_ip 5.202.5.1 148476 port 513 148476 unique_id port 148476 remote_ip 10.8.0.174 148479 username naeimeh 148479 kill_reason Another user logged on this global unique id 148479 mac 148479 bytes_out 0 148479 bytes_in 0 148479 station_ip 37.129.10.125 148479 port 504 148479 unique_id port 148479 remote_ip 10.8.0.26 148482 username tahmasebi 148482 mac 148482 bytes_out 0 148482 bytes_in 0 148482 station_ip 5.120.168.95 148482 port 519 148482 unique_id port 148482 remote_ip 10.8.0.42 148483 username vanila 148483 mac 148483 bytes_out 871086 148483 bytes_in 301730 148483 station_ip 37.129.216.191 148483 port 518 148483 unique_id port 148483 remote_ip 10.8.0.178 148486 username naeimeh 148486 mac 148486 bytes_out 0 148486 bytes_in 0 148486 station_ip 37.129.10.125 148486 port 504 148486 unique_id port 148487 username barzegar 148487 mac 148487 bytes_out 0 148487 bytes_in 0 148487 station_ip 5.119.236.105 148487 port 270 148487 unique_id port 148487 remote_ip 10.8.1.174 148488 username mansour 148488 mac 148488 bytes_out 0 148488 bytes_in 0 148488 station_ip 5.202.98.165 148488 port 513 148488 unique_id port 148488 remote_ip 10.8.0.30 148490 username mahdixz 148490 unique_id port 148490 terminate_cause User-Request 148490 bytes_out 131452 148490 bytes_in 143735 148490 station_ip 151.235.102.30 148490 port 15731013 148490 nas_port_type Virtual 148490 remote_ip 5.5.5.166 148492 username zotaher 148492 mac 148492 bytes_out 0 148492 bytes_in 0 148492 station_ip 37.129.154.254 148492 port 525 148492 unique_id port 148492 remote_ip 10.8.0.194 148501 username hashtadani4 148501 mac 148501 bytes_out 0 148501 bytes_in 0 148501 station_ip 83.122.218.25 148501 port 524 148501 unique_id port 148501 remote_ip 10.8.0.182 148505 username hashtadani4 148505 mac 148505 bytes_out 0 148505 bytes_in 0 148505 station_ip 83.122.218.25 148505 port 270 148505 unique_id port 148505 remote_ip 10.8.1.142 148510 username arash 148510 mac 148510 bytes_out 0 148510 bytes_in 0 148510 station_ip 37.137.21.146 148510 port 521 148510 unique_id port 148510 remote_ip 10.8.0.114 148515 username hashtadani4 148515 mac 148515 bytes_out 0 148515 bytes_in 0 148515 station_ip 83.122.218.25 148515 port 270 148515 unique_id port 148515 remote_ip 10.8.1.142 148516 username tahmasebi 148516 mac 148516 bytes_out 0 148516 bytes_in 0 148516 station_ip 5.120.168.95 148516 port 489 148516 unique_id port 148516 remote_ip 10.8.0.42 148518 username hashtadani4 148518 mac 148518 bytes_out 0 148518 bytes_in 0 148518 station_ip 83.122.218.25 148518 port 489 148518 unique_id port 148518 remote_ip 10.8.0.182 148519 username hashtadani4 148519 mac 148519 bytes_out 0 148519 bytes_in 0 148519 station_ip 83.122.218.25 148519 port 517 148519 unique_id port 148519 remote_ip 10.8.0.182 148520 username barzegar 148520 mac 148520 bytes_out 0 148489 bytes_out 8232 148489 bytes_in 37572 148489 station_ip 5.119.236.105 148489 port 522 148489 unique_id port 148489 remote_ip 10.8.0.234 148491 username alihosseini1 148491 mac 148491 bytes_out 405376 148491 bytes_in 263610 148491 station_ip 5.119.117.148 148491 port 504 148491 unique_id port 148491 remote_ip 10.8.0.166 148495 username milan 148495 kill_reason Another user logged on this global unique id 148495 mac 148495 bytes_out 0 148495 bytes_in 0 148495 station_ip 5.120.31.183 148495 port 514 148495 unique_id port 148496 username khademi 148496 kill_reason Another user logged on this global unique id 148496 mac 148496 bytes_out 0 148496 bytes_in 0 148496 station_ip 83.123.168.1 148496 port 523 148496 unique_id port 148498 username ayobi 148498 mac 148498 bytes_out 0 148498 bytes_in 0 148498 station_ip 37.27.26.2 148498 port 489 148498 unique_id port 148498 remote_ip 10.8.0.246 148499 username aminvpn 148499 mac 148499 bytes_out 2647400 148499 bytes_in 30956068 148499 station_ip 5.120.103.178 148499 port 521 148499 unique_id port 148499 remote_ip 10.8.0.14 148500 username arash 148500 mac 148500 bytes_out 37433 148500 bytes_in 53041 148500 station_ip 37.137.21.146 148500 port 522 148500 unique_id port 148500 remote_ip 10.8.0.114 148502 username hashtadani4 148502 mac 148502 bytes_out 0 148502 bytes_in 0 148502 station_ip 83.122.218.25 148502 port 489 148502 unique_id port 148502 remote_ip 10.8.0.182 148503 username hashtadani4 148503 mac 148503 bytes_out 0 148503 bytes_in 0 148503 station_ip 83.122.218.25 148503 port 489 148503 unique_id port 148503 remote_ip 10.8.0.182 148507 username hashtadani4 148507 mac 148507 bytes_out 0 148507 bytes_in 0 148507 station_ip 83.122.218.25 148507 port 524 148507 unique_id port 148507 remote_ip 10.8.0.182 148508 username vanila 148508 mac 148508 bytes_out 0 148508 bytes_in 0 148508 station_ip 37.129.216.191 148508 port 489 148508 unique_id port 148508 remote_ip 10.8.0.178 148509 username hashtadani4 148509 mac 148509 bytes_out 0 148509 bytes_in 0 148509 station_ip 83.122.218.25 148509 port 489 148509 unique_id port 148509 remote_ip 10.8.0.182 148511 username hashtadani4 148511 mac 148511 bytes_out 0 148511 bytes_in 0 148511 station_ip 83.122.218.25 148511 port 489 148511 unique_id port 148511 remote_ip 10.8.0.182 148512 username tahmasebi 148512 mac 148512 bytes_out 2848050 148512 bytes_in 45960652 148512 station_ip 5.120.168.95 148512 port 518 148512 unique_id port 148512 remote_ip 10.8.0.42 148514 username mosi 148514 kill_reason Another user logged on this global unique id 148514 mac 148514 bytes_out 0 148514 bytes_in 0 148514 station_ip 151.235.107.13 148514 port 504 148514 unique_id port 148514 remote_ip 10.8.0.138 148521 username alihosseini1 148521 mac 148521 bytes_out 547547 148521 bytes_in 261949 148521 station_ip 5.119.117.148 148521 port 513 148521 unique_id port 148521 remote_ip 10.8.0.166 148524 username hashtadani4 148524 mac 148524 bytes_out 0 148524 bytes_in 0 148524 station_ip 83.122.218.25 148524 port 513 148524 unique_id port 148524 remote_ip 10.8.0.182 148526 username zotaher 148526 kill_reason Another user logged on this global unique id 148526 mac 148526 bytes_out 0 148526 bytes_in 0 148526 station_ip 37.129.154.254 148526 port 489 148526 unique_id port 148526 remote_ip 10.8.0.194 148534 username milan 148534 kill_reason Another user logged on this global unique id 148534 mac 148534 bytes_out 0 148534 bytes_in 0 148534 station_ip 5.120.31.183 148520 bytes_in 0 148520 station_ip 5.119.236.105 148520 port 517 148520 unique_id port 148520 remote_ip 10.8.0.234 148522 username hashtadani4 148522 mac 148522 bytes_out 0 148522 bytes_in 0 148522 station_ip 83.122.218.25 148522 port 513 148522 unique_id port 148522 remote_ip 10.8.0.182 148528 username hashtadani4 148528 mac 148528 bytes_out 0 148528 bytes_in 0 148528 station_ip 83.122.218.25 148528 port 513 148528 unique_id port 148528 remote_ip 10.8.0.182 148529 username alikomsari 148529 mac 148529 bytes_out 0 148529 bytes_in 0 148529 station_ip 5.119.252.137 148529 port 522 148529 unique_id port 148529 remote_ip 10.8.0.70 148533 username alihosseini1 148533 mac 148533 bytes_out 36213 148533 bytes_in 219364 148533 station_ip 5.119.117.148 148533 port 271 148533 unique_id port 148533 remote_ip 10.8.1.106 148539 username milan 148539 kill_reason Another user logged on this global unique id 148539 mac 148539 bytes_out 0 148539 bytes_in 0 148539 station_ip 5.120.31.183 148539 port 514 148539 unique_id port 148540 username hashtadani4 148540 mac 148540 bytes_out 0 148540 bytes_in 0 148540 station_ip 83.122.218.25 148540 port 513 148540 unique_id port 148540 remote_ip 10.8.0.182 148545 username amirabbas 148545 unique_id port 148545 terminate_cause Lost-Carrier 148545 bytes_out 17245821 148545 bytes_in 460262512 148545 station_ip 37.27.10.12 148545 port 15731012 148545 nas_port_type Virtual 148545 remote_ip 5.5.5.255 148553 username arash 148553 mac 148553 bytes_out 100593 148553 bytes_in 238977 148553 station_ip 37.137.21.146 148553 port 513 148553 unique_id port 148553 remote_ip 10.8.0.114 148555 username rezaei 148555 mac 148555 bytes_out 0 148555 bytes_in 0 148555 station_ip 5.119.164.255 148555 port 517 148555 unique_id port 148558 username hashtadani4 148558 mac 148558 bytes_out 0 148558 bytes_in 0 148558 station_ip 83.122.218.25 148558 port 513 148558 unique_id port 148558 remote_ip 10.8.0.182 148561 username tahmasebi 148561 mac 148561 bytes_out 0 148561 bytes_in 0 148561 station_ip 5.120.168.95 148561 port 518 148561 unique_id port 148566 username barzegar 148566 mac 148566 bytes_out 0 148566 bytes_in 0 148566 station_ip 5.119.236.105 148566 port 513 148566 unique_id port 148566 remote_ip 10.8.0.234 148569 username hashtadani4 148569 mac 148569 bytes_out 0 148569 bytes_in 0 148569 station_ip 83.122.218.25 148569 port 513 148569 unique_id port 148569 remote_ip 10.8.0.182 148572 username saeed9658 148572 mac 148572 bytes_out 0 148572 bytes_in 0 148572 station_ip 5.119.195.219 148572 port 504 148572 unique_id port 148572 remote_ip 10.8.0.62 148573 username hashtadani4 148573 mac 148573 bytes_out 0 148573 bytes_in 0 148573 station_ip 83.122.218.25 148573 port 504 148573 unique_id port 148573 remote_ip 10.8.0.182 148580 username hashtadani4 148580 mac 148580 bytes_out 0 148580 bytes_in 0 148580 station_ip 83.122.218.25 148580 port 517 148580 unique_id port 148580 remote_ip 10.8.0.182 148585 username saeed9658 148585 mac 148585 bytes_out 0 148585 bytes_in 0 148585 station_ip 5.119.195.219 148585 port 266 148585 unique_id port 148585 remote_ip 10.8.1.210 148590 username hashtadani4 148590 mac 148590 bytes_out 0 148590 bytes_in 0 148590 station_ip 83.122.218.25 148590 port 504 148590 unique_id port 148590 remote_ip 10.8.0.182 148593 username barzegar 148593 mac 148593 bytes_out 0 148593 bytes_in 0 148593 station_ip 5.119.236.105 148523 unique_id port 148523 remote_ip 10.8.0.182 148525 username hashtadani4 148525 mac 148525 bytes_out 0 148525 bytes_in 0 148525 station_ip 83.122.218.25 148525 port 513 148525 unique_id port 148525 remote_ip 10.8.0.182 148527 username barzegar 148527 mac 148527 bytes_out 0 148527 bytes_in 0 148527 station_ip 5.119.236.105 148527 port 513 148527 unique_id port 148527 remote_ip 10.8.0.234 148530 username hashtadani4 148530 mac 148530 bytes_out 0 148530 bytes_in 0 148530 station_ip 83.122.218.25 148530 port 513 148530 unique_id port 148530 remote_ip 10.8.0.182 148531 username hashtadani4 148531 mac 148531 bytes_out 0 148531 bytes_in 0 148531 station_ip 83.122.218.25 148531 port 518 148531 unique_id port 148531 remote_ip 10.8.0.182 148532 username tahmasebi 148532 mac 148532 bytes_out 1678869 148532 bytes_in 17868936 148532 station_ip 5.120.168.95 148532 port 270 148532 unique_id port 148532 remote_ip 10.8.1.90 148535 username vanila 148535 mac 148535 bytes_out 821554 148535 bytes_in 4767066 148535 station_ip 37.129.216.191 148535 port 513 148535 unique_id port 148535 remote_ip 10.8.0.178 148536 username barzegar 148536 mac 148536 bytes_out 0 148536 bytes_in 0 148536 station_ip 5.119.236.105 148536 port 513 148536 unique_id port 148536 remote_ip 10.8.0.234 148538 username hamidsalari1 148538 mac 148538 bytes_out 0 148538 bytes_in 0 148538 station_ip 83.122.28.211 148538 port 266 148538 unique_id port 148538 remote_ip 10.8.1.170 148541 username milan 148541 mac 148541 bytes_out 0 148541 bytes_in 0 148541 station_ip 5.120.31.183 148541 port 514 148541 unique_id port 148542 username barzegar 148542 mac 148542 bytes_out 0 148542 bytes_in 0 148542 station_ip 5.119.236.105 148542 port 514 148542 unique_id port 148542 remote_ip 10.8.0.234 148544 username tahmasebi 148544 kill_reason Another user logged on this global unique id 148544 mac 148544 bytes_out 0 148544 bytes_in 0 148544 station_ip 5.120.168.95 148544 port 518 148544 unique_id port 148544 remote_ip 10.8.0.42 148548 username hashtadani4 148548 mac 148548 bytes_out 0 148548 bytes_in 0 148548 station_ip 83.122.218.25 148548 port 514 148548 unique_id port 148548 remote_ip 10.8.0.182 148549 username barzegar 148549 mac 148549 bytes_out 0 148549 bytes_in 0 148549 station_ip 5.119.236.105 148549 port 514 148549 unique_id port 148549 remote_ip 10.8.0.234 148557 username saeed9658 148557 mac 148557 bytes_out 0 148557 bytes_in 0 148557 station_ip 5.119.195.219 148557 port 266 148557 unique_id port 148557 remote_ip 10.8.1.210 148559 username hashtadani4 148559 mac 148559 bytes_out 0 148559 bytes_in 0 148559 station_ip 83.122.218.25 148559 port 513 148559 unique_id port 148559 remote_ip 10.8.0.182 148560 username mosi 148560 mac 148560 bytes_out 0 148560 bytes_in 0 148560 station_ip 151.235.107.13 148560 port 504 148560 unique_id port 148563 username hashtadani4 148563 mac 148563 bytes_out 0 148563 bytes_in 0 148563 station_ip 83.122.218.25 148563 port 513 148563 unique_id port 148563 remote_ip 10.8.0.182 148567 username hashtadani4 148567 mac 148567 bytes_out 0 148567 bytes_in 0 148567 station_ip 83.122.218.25 148567 port 513 148567 unique_id port 148567 remote_ip 10.8.0.182 148568 username hashtadani4 148568 mac 148568 bytes_out 0 148568 bytes_in 0 148568 station_ip 83.122.218.25 148568 port 266 148568 unique_id port 148568 remote_ip 10.8.1.142 148570 username hashtadani4 148534 port 514 148534 unique_id port 148537 username hashtadani4 148537 mac 148537 bytes_out 0 148537 bytes_in 0 148537 station_ip 83.122.218.25 148537 port 521 148537 unique_id port 148537 remote_ip 10.8.0.182 148543 username hashtadani4 148543 mac 148543 bytes_out 0 148543 bytes_in 0 148543 station_ip 83.122.218.25 148543 port 513 148543 unique_id port 148543 remote_ip 10.8.0.182 148546 username rezaei 148546 kill_reason Another user logged on this global unique id 148546 mac 148546 bytes_out 0 148546 bytes_in 0 148546 station_ip 5.119.164.255 148546 port 517 148546 unique_id port 148546 remote_ip 10.8.0.230 148547 username hashtadani4 148547 mac 148547 bytes_out 0 148547 bytes_in 0 148547 station_ip 83.122.218.25 148547 port 514 148547 unique_id port 148547 remote_ip 10.8.0.182 148550 username saeed9658 148550 mac 148550 bytes_out 3495802 148550 bytes_in 35128667 148550 station_ip 5.119.195.219 148550 port 272 148550 unique_id port 148550 remote_ip 10.8.1.210 148551 username rezaei 148551 kill_reason Another user logged on this global unique id 148551 mac 148551 bytes_out 0 148551 bytes_in 0 148551 station_ip 5.119.164.255 148551 port 517 148551 unique_id port 148552 username hashtadani4 148552 mac 148552 bytes_out 0 148552 bytes_in 0 148552 station_ip 83.122.218.25 148552 port 514 148552 unique_id port 148552 remote_ip 10.8.0.182 148554 username mostafa_es78 148554 unique_id port 148554 terminate_cause User-Request 148554 bytes_out 166075 148554 bytes_in 2502651 148554 station_ip 5.126.109.158 148554 port 15731015 148554 nas_port_type Virtual 148554 remote_ip 5.5.5.172 148556 username barzegar 148556 mac 148556 bytes_out 0 148556 bytes_in 0 148556 station_ip 5.119.236.105 148556 port 513 148556 unique_id port 148556 remote_ip 10.8.0.234 148562 username hashtadani4 148562 mac 148562 bytes_out 0 148562 bytes_in 0 148562 station_ip 83.122.218.25 148562 port 504 148562 unique_id port 148562 remote_ip 10.8.0.182 148564 username saeed9658 148564 mac 148564 bytes_out 0 148564 bytes_in 0 148564 station_ip 5.119.195.219 148564 port 513 148564 unique_id port 148564 remote_ip 10.8.0.62 148565 username saeed9658 148565 mac 148565 bytes_out 0 148565 bytes_in 0 148565 station_ip 5.119.195.219 148565 port 514 148565 unique_id port 148565 remote_ip 10.8.0.62 148575 username arash 148575 mac 148575 bytes_out 68703 148575 bytes_in 226812 148575 station_ip 37.137.21.146 148575 port 514 148575 unique_id port 148575 remote_ip 10.8.0.114 148576 username hashtadani4 148576 mac 148576 bytes_out 0 148576 bytes_in 0 148576 station_ip 83.122.218.25 148576 port 514 148576 unique_id port 148576 remote_ip 10.8.0.182 148577 username hashtadani4 148577 mac 148577 bytes_out 0 148577 bytes_in 0 148577 station_ip 83.122.218.25 148577 port 514 148577 unique_id port 148577 remote_ip 10.8.0.182 148581 username hashtadani4 148581 mac 148581 bytes_out 0 148581 bytes_in 0 148581 station_ip 83.122.218.25 148581 port 517 148581 unique_id port 148581 remote_ip 10.8.0.182 148582 username arash 148582 mac 148582 bytes_out 23736 148582 bytes_in 53509 148582 station_ip 37.137.21.146 148582 port 514 148582 unique_id port 148582 remote_ip 10.8.0.114 148583 username barzegar 148583 mac 148583 bytes_out 0 148583 bytes_in 0 148583 station_ip 5.119.236.105 148583 port 266 148583 unique_id port 148583 remote_ip 10.8.1.174 148586 username hassan 148586 mac 148586 bytes_out 1843374 148586 bytes_in 36080649 148570 mac 148570 bytes_out 0 148570 bytes_in 0 148570 station_ip 83.122.218.25 148570 port 517 148570 unique_id port 148570 remote_ip 10.8.0.182 148571 username tahmasebi 148571 mac 148571 bytes_out 590662 148571 bytes_in 6753781 148571 station_ip 5.120.168.95 148571 port 504 148571 unique_id port 148571 remote_ip 10.8.0.42 148574 username barzegar 148574 mac 148574 bytes_out 0 148574 bytes_in 0 148574 station_ip 5.119.236.105 148574 port 504 148574 unique_id port 148574 remote_ip 10.8.0.234 148578 username hashtadani4 148578 mac 148578 bytes_out 0 148578 bytes_in 0 148578 station_ip 83.122.218.25 148578 port 514 148578 unique_id port 148578 remote_ip 10.8.0.182 148579 username saeed9658 148579 mac 148579 bytes_out 0 148579 bytes_in 0 148579 station_ip 5.119.195.219 148579 port 266 148579 unique_id port 148579 remote_ip 10.8.1.210 148584 username hashtadani4 148584 mac 148584 bytes_out 0 148584 bytes_in 0 148584 station_ip 83.122.218.25 148584 port 514 148584 unique_id port 148584 remote_ip 10.8.0.182 148589 username barzegar 148589 mac 148589 bytes_out 0 148589 bytes_in 0 148589 station_ip 5.119.236.105 148589 port 266 148589 unique_id port 148589 remote_ip 10.8.1.174 148594 username saeed9658 148594 kill_reason Maximum check online fails reached 148594 mac 148594 bytes_out 0 148594 bytes_in 0 148594 station_ip 5.119.195.219 148594 port 504 148594 unique_id port 148596 username hashtadani4 148596 mac 148596 bytes_out 0 148596 bytes_in 0 148596 station_ip 83.122.218.25 148596 port 517 148596 unique_id port 148596 remote_ip 10.8.0.182 148598 username hashtadani4 148598 mac 148598 bytes_out 0 148598 bytes_in 0 148598 station_ip 83.122.218.25 148598 port 521 148598 unique_id port 148598 remote_ip 10.8.0.182 148609 username hashtadani4 148609 mac 148609 bytes_out 0 148609 bytes_in 0 148609 station_ip 83.122.218.25 148609 port 266 148609 unique_id port 148609 remote_ip 10.8.1.142 148613 username hashtadani4 148613 mac 148613 bytes_out 0 148613 bytes_in 0 148613 station_ip 83.122.218.25 148613 port 266 148613 unique_id port 148613 remote_ip 10.8.1.142 148619 username hashtadani4 148619 mac 148619 bytes_out 0 148619 bytes_in 0 148619 station_ip 83.122.218.25 148619 port 266 148619 unique_id port 148619 remote_ip 10.8.1.142 148620 username hashtadani4 148620 mac 148620 bytes_out 0 148620 bytes_in 0 148620 station_ip 83.122.218.25 148620 port 514 148620 unique_id port 148620 remote_ip 10.8.0.182 148623 username hashtadani4 148623 mac 148623 bytes_out 0 148623 bytes_in 0 148623 station_ip 83.122.218.25 148623 port 514 148623 unique_id port 148623 remote_ip 10.8.0.182 148627 username hashtadani4 148627 mac 148627 bytes_out 0 148627 bytes_in 0 148627 station_ip 83.122.218.25 148627 port 514 148627 unique_id port 148627 remote_ip 10.8.0.182 148628 username hashtadani4 148628 mac 148628 bytes_out 0 148628 bytes_in 0 148628 station_ip 83.122.218.25 148628 port 270 148628 unique_id port 148628 remote_ip 10.8.1.142 148629 username tahmasebi 148629 kill_reason Another user logged on this global unique id 148629 mac 148629 bytes_out 0 148629 bytes_in 0 148629 station_ip 5.120.168.95 148629 port 517 148629 unique_id port 148631 username hashtadani4 148631 mac 148631 bytes_out 0 148631 bytes_in 0 148631 station_ip 83.122.218.25 148631 port 514 148631 unique_id port 148631 remote_ip 10.8.0.182 148636 username hashtadani4 148636 mac 148586 station_ip 37.27.25.218 148586 port 504 148586 unique_id port 148586 remote_ip 10.8.0.122 148587 username saeed9658 148587 mac 148587 bytes_out 0 148587 bytes_in 0 148587 station_ip 5.119.195.219 148587 port 266 148587 unique_id port 148587 remote_ip 10.8.1.210 148588 username hashtadani4 148588 mac 148588 bytes_out 0 148588 bytes_in 0 148588 station_ip 83.122.218.25 148588 port 504 148588 unique_id port 148588 remote_ip 10.8.0.182 148591 username saeed9658 148591 mac 148591 bytes_out 0 148591 bytes_in 0 148591 station_ip 5.119.195.219 148591 port 266 148591 unique_id port 148591 remote_ip 10.8.1.210 148592 username hashtadani4 148592 mac 148592 bytes_out 0 148592 bytes_in 0 148592 station_ip 83.122.218.25 148592 port 504 148592 unique_id port 148592 remote_ip 10.8.0.182 148595 username saeed9658 148595 mac 148595 bytes_out 0 148595 bytes_in 0 148595 station_ip 5.119.195.219 148595 port 517 148595 unique_id port 148595 remote_ip 10.8.0.62 148597 username saeed9658 148597 mac 148597 bytes_out 0 148597 bytes_in 0 148597 station_ip 5.119.195.219 148597 port 266 148597 unique_id port 148597 remote_ip 10.8.1.210 148600 username arash 148600 mac 148600 bytes_out 181622 148600 bytes_in 1247737 148600 station_ip 37.137.21.146 148600 port 518 148600 unique_id port 148600 remote_ip 10.8.0.114 148602 username fezealinaghi 148602 mac 148602 bytes_out 1158941 148602 bytes_in 13395464 148602 station_ip 37.129.169.60 148602 port 514 148602 unique_id port 148602 remote_ip 10.8.0.78 148604 username saeed9658 148604 mac 148604 bytes_out 0 148604 bytes_in 0 148604 station_ip 5.119.195.219 148604 port 514 148604 unique_id port 148604 remote_ip 10.8.0.62 148606 username saeed9658 148606 mac 148606 bytes_out 0 148606 bytes_in 0 148606 station_ip 5.119.195.219 148606 port 514 148606 unique_id port 148606 remote_ip 10.8.0.62 148608 username hashtadani4 148608 mac 148608 bytes_out 0 148608 bytes_in 0 148608 station_ip 83.122.218.25 148608 port 514 148608 unique_id port 148608 remote_ip 10.8.0.182 148611 username hashtadani4 148611 mac 148611 bytes_out 0 148611 bytes_in 0 148611 station_ip 83.122.218.25 148611 port 266 148611 unique_id port 148611 remote_ip 10.8.1.142 148612 username hashtadani4 148612 mac 148612 bytes_out 0 148612 bytes_in 0 148612 station_ip 83.122.218.25 148612 port 518 148612 unique_id port 148612 remote_ip 10.8.0.182 148616 username saeed9658 148616 mac 148616 bytes_out 0 148616 bytes_in 0 148616 station_ip 5.119.195.219 148616 port 514 148616 unique_id port 148616 remote_ip 10.8.0.62 148618 username hashtadani4 148618 mac 148618 bytes_out 0 148618 bytes_in 0 148618 station_ip 83.122.218.25 148618 port 514 148618 unique_id port 148618 remote_ip 10.8.0.182 148622 username hashtadani4 148622 mac 148622 bytes_out 0 148622 bytes_in 0 148622 station_ip 83.122.218.25 148622 port 514 148622 unique_id port 148622 remote_ip 10.8.0.182 148626 username hashtadani4 148626 mac 148626 bytes_out 0 148626 bytes_in 0 148626 station_ip 83.122.218.25 148626 port 266 148626 unique_id port 148626 remote_ip 10.8.1.142 148633 username hashtadani4 148633 mac 148633 bytes_out 0 148633 bytes_in 0 148633 station_ip 83.122.218.25 148633 port 514 148633 unique_id port 148633 remote_ip 10.8.0.182 148635 username hashtadani4 148635 mac 148635 bytes_out 0 148635 bytes_in 0 148635 station_ip 83.122.218.25 148635 port 266 148593 port 266 148593 unique_id port 148593 remote_ip 10.8.1.174 148599 username saeed9658 148599 mac 148599 bytes_out 0 148599 bytes_in 0 148599 station_ip 5.119.195.219 148599 port 266 148599 unique_id port 148599 remote_ip 10.8.1.210 148601 username barzegar 148601 mac 148601 bytes_out 0 148601 bytes_in 0 148601 station_ip 5.119.236.105 148601 port 266 148601 unique_id port 148601 remote_ip 10.8.1.174 148603 username hashtadani4 148603 mac 148603 bytes_out 0 148603 bytes_in 0 148603 station_ip 83.122.218.25 148603 port 514 148603 unique_id port 148603 remote_ip 10.8.0.182 148605 username tahmasebi 148605 kill_reason Another user logged on this global unique id 148605 mac 148605 bytes_out 0 148605 bytes_in 0 148605 station_ip 5.120.168.95 148605 port 517 148605 unique_id port 148605 remote_ip 10.8.0.42 148607 username hashtadani4 148607 mac 148607 bytes_out 0 148607 bytes_in 0 148607 station_ip 83.122.218.25 148607 port 266 148607 unique_id port 148607 remote_ip 10.8.1.142 148610 username hashtadani4 148610 mac 148610 bytes_out 0 148610 bytes_in 0 148610 station_ip 83.122.218.25 148610 port 514 148610 unique_id port 148610 remote_ip 10.8.0.182 148614 username hashtadani4 148614 mac 148614 bytes_out 0 148614 bytes_in 0 148614 station_ip 83.122.218.25 148614 port 518 148614 unique_id port 148614 remote_ip 10.8.0.182 148615 username hashtadani4 148615 mac 148615 bytes_out 0 148615 bytes_in 0 148615 station_ip 83.122.218.25 148615 port 266 148615 unique_id port 148615 remote_ip 10.8.1.142 148617 username hashtadani4 148617 mac 148617 bytes_out 0 148617 bytes_in 0 148617 station_ip 83.122.218.25 148617 port 518 148617 unique_id port 148617 remote_ip 10.8.0.182 148621 username hashtadani4 148621 mac 148621 bytes_out 0 148621 bytes_in 0 148621 station_ip 83.122.218.25 148621 port 266 148621 unique_id port 148621 remote_ip 10.8.1.142 148624 username hashtadani4 148624 mac 148624 bytes_out 0 148624 bytes_in 0 148624 station_ip 83.122.218.25 148624 port 266 148624 unique_id port 148624 remote_ip 10.8.1.142 148625 username hashtadani4 148625 mac 148625 bytes_out 0 148625 bytes_in 0 148625 station_ip 83.122.218.25 148625 port 514 148625 unique_id port 148625 remote_ip 10.8.0.182 148630 username barzegar 148630 mac 148630 bytes_out 0 148630 bytes_in 0 148630 station_ip 5.119.236.105 148630 port 266 148630 unique_id port 148630 remote_ip 10.8.1.174 148632 username hashtadani4 148632 mac 148632 bytes_out 0 148632 bytes_in 0 148632 station_ip 83.122.218.25 148632 port 266 148632 unique_id port 148632 remote_ip 10.8.1.142 148634 username hashtadani4 148634 mac 148634 bytes_out 0 148634 bytes_in 0 148634 station_ip 83.122.218.25 148634 port 266 148634 unique_id port 148634 remote_ip 10.8.1.142 148637 username hashtadani4 148637 mac 148637 bytes_out 0 148637 bytes_in 0 148637 station_ip 83.122.218.25 148637 port 266 148637 unique_id port 148637 remote_ip 10.8.1.142 148641 username hashtadani4 148641 mac 148641 bytes_out 0 148641 bytes_in 0 148641 station_ip 83.122.218.25 148641 port 266 148641 unique_id port 148641 remote_ip 10.8.1.142 148644 username tahmasebi 148644 kill_reason Another user logged on this global unique id 148644 mac 148644 bytes_out 0 148644 bytes_in 0 148644 station_ip 5.120.168.95 148644 port 517 148644 unique_id port 148645 username hashtadani4 148645 mac 148645 bytes_out 0 148645 bytes_in 0 148645 station_ip 83.122.218.25 148635 unique_id port 148635 remote_ip 10.8.1.142 148638 username hashtadani4 148638 mac 148638 bytes_out 0 148638 bytes_in 0 148638 station_ip 83.122.218.25 148638 port 514 148638 unique_id port 148638 remote_ip 10.8.0.182 148639 username hashtadani4 148639 mac 148639 bytes_out 0 148639 bytes_in 0 148639 station_ip 83.122.218.25 148639 port 266 148639 unique_id port 148639 remote_ip 10.8.1.142 148642 username hashtadani4 148642 mac 148642 bytes_out 0 148642 bytes_in 0 148642 station_ip 83.122.218.25 148642 port 514 148642 unique_id port 148642 remote_ip 10.8.0.182 148643 username hashtadani4 148643 mac 148643 bytes_out 0 148643 bytes_in 0 148643 station_ip 83.122.218.25 148643 port 266 148643 unique_id port 148643 remote_ip 10.8.1.142 148647 username hashtadani4 148647 mac 148647 bytes_out 0 148647 bytes_in 0 148647 station_ip 83.122.218.25 148647 port 518 148647 unique_id port 148647 remote_ip 10.8.0.182 148648 username saeed9658 148648 mac 148648 bytes_out 0 148648 bytes_in 0 148648 station_ip 5.119.195.219 148648 port 514 148648 unique_id port 148648 remote_ip 10.8.0.62 148650 username hashtadani4 148650 mac 148650 bytes_out 0 148650 bytes_in 0 148650 station_ip 83.122.218.25 148650 port 266 148650 unique_id port 148650 remote_ip 10.8.1.142 148651 username hashtadani4 148651 mac 148651 bytes_out 0 148651 bytes_in 0 148651 station_ip 83.122.218.25 148651 port 514 148651 unique_id port 148651 remote_ip 10.8.0.182 148655 username hashtadani4 148655 mac 148655 bytes_out 0 148655 bytes_in 0 148655 station_ip 83.122.218.25 148655 port 518 148655 unique_id port 148655 remote_ip 10.8.0.182 148657 username hashtadani4 148657 mac 148657 bytes_out 0 148657 bytes_in 0 148657 station_ip 83.122.218.25 148657 port 518 148657 unique_id port 148657 remote_ip 10.8.0.182 148661 username hashtadani4 148661 mac 148661 bytes_out 0 148661 bytes_in 0 148661 station_ip 83.122.218.25 148661 port 518 148661 unique_id port 148661 remote_ip 10.8.0.182 148665 username hashtadani4 148665 mac 148665 bytes_out 0 148665 bytes_in 0 148665 station_ip 83.122.218.25 148665 port 266 148665 unique_id port 148665 remote_ip 10.8.1.142 148669 username hashtadani4 148669 mac 148669 bytes_out 0 148669 bytes_in 0 148669 station_ip 83.122.218.25 148669 port 518 148669 unique_id port 148669 remote_ip 10.8.0.182 148670 username hashtadani4 148670 mac 148670 bytes_out 0 148670 bytes_in 0 148670 station_ip 83.122.218.25 148670 port 266 148670 unique_id port 148670 remote_ip 10.8.1.142 148673 username hashtadani4 148673 mac 148673 bytes_out 0 148673 bytes_in 0 148673 station_ip 83.122.218.25 148673 port 270 148673 unique_id port 148673 remote_ip 10.8.1.142 148677 username hashtadani4 148677 mac 148677 bytes_out 0 148677 bytes_in 0 148677 station_ip 83.122.218.25 148677 port 514 148677 unique_id port 148677 remote_ip 10.8.0.182 148679 username hashtadani4 148679 mac 148679 bytes_out 0 148679 bytes_in 0 148679 station_ip 83.122.218.25 148679 port 514 148679 unique_id port 148679 remote_ip 10.8.0.182 148683 username hashtadani4 148683 mac 148683 bytes_out 0 148683 bytes_in 0 148683 station_ip 83.122.218.25 148683 port 514 148683 unique_id port 148683 remote_ip 10.8.0.182 148685 username hashtadani4 148685 mac 148685 bytes_out 0 148685 bytes_in 0 148685 station_ip 83.122.218.25 148685 port 266 148685 unique_id port 148685 remote_ip 10.8.1.142 148636 bytes_out 0 148636 bytes_in 0 148636 station_ip 83.122.218.25 148636 port 514 148636 unique_id port 148636 remote_ip 10.8.0.182 148640 username hashtadani4 148640 mac 148640 bytes_out 0 148640 bytes_in 0 148640 station_ip 83.122.218.25 148640 port 514 148640 unique_id port 148640 remote_ip 10.8.0.182 148652 username hashtadani4 148652 mac 148652 bytes_out 0 148652 bytes_in 0 148652 station_ip 83.122.218.25 148652 port 266 148652 unique_id port 148652 remote_ip 10.8.1.142 148658 username hashtadani4 148658 mac 148658 bytes_out 0 148658 bytes_in 0 148658 station_ip 83.122.218.25 148658 port 518 148658 unique_id port 148658 remote_ip 10.8.0.182 148659 username hashtadani4 148659 mac 148659 bytes_out 0 148659 bytes_in 0 148659 station_ip 83.122.218.25 148659 port 518 148659 unique_id port 148659 remote_ip 10.8.0.182 148662 username hashtadani4 148662 mac 148662 bytes_out 0 148662 bytes_in 0 148662 station_ip 83.122.218.25 148662 port 266 148662 unique_id port 148662 remote_ip 10.8.1.142 148663 username hashtadani4 148663 mac 148663 bytes_out 0 148663 bytes_in 0 148663 station_ip 83.122.218.25 148663 port 266 148663 unique_id port 148663 remote_ip 10.8.1.142 148666 username hashtadani4 148666 mac 148666 bytes_out 0 148666 bytes_in 0 148666 station_ip 83.122.218.25 148666 port 518 148666 unique_id port 148666 remote_ip 10.8.0.182 148671 username hashtadani4 148671 mac 148671 bytes_out 0 148671 bytes_in 0 148671 station_ip 83.122.218.25 148671 port 518 148671 unique_id port 148671 remote_ip 10.8.0.182 148674 username hashtadani4 148674 mac 148674 bytes_out 0 148674 bytes_in 0 148674 station_ip 83.122.218.25 148674 port 514 148674 unique_id port 148674 remote_ip 10.8.0.182 148675 username barzegar 148675 mac 148675 bytes_out 0 148675 bytes_in 0 148675 station_ip 5.119.236.105 148675 port 266 148675 unique_id port 148675 remote_ip 10.8.1.174 148678 username hashtadani4 148678 mac 148678 bytes_out 0 148678 bytes_in 0 148678 station_ip 83.122.218.25 148678 port 514 148678 unique_id port 148678 remote_ip 10.8.0.182 148681 username tahmasebi 148681 mac 148681 bytes_out 0 148681 bytes_in 0 148681 station_ip 5.120.168.95 148681 port 517 148681 unique_id port 148690 username hashtadani4 148690 mac 148690 bytes_out 0 148690 bytes_in 0 148690 station_ip 83.122.218.25 148690 port 266 148690 unique_id port 148690 remote_ip 10.8.1.142 148694 username hashtadani4 148694 mac 148694 bytes_out 0 148694 bytes_in 0 148694 station_ip 83.122.218.25 148694 port 266 148694 unique_id port 148694 remote_ip 10.8.1.142 148696 username hashtadani4 148696 mac 148696 bytes_out 0 148696 bytes_in 0 148696 station_ip 83.122.218.25 148696 port 266 148696 unique_id port 148696 remote_ip 10.8.1.142 148700 username arash 148700 mac 148700 bytes_out 36505 148700 bytes_in 123196 148700 station_ip 37.137.21.146 148700 port 517 148700 unique_id port 148700 remote_ip 10.8.0.114 148705 username hashtadani4 148705 mac 148705 bytes_out 0 148705 bytes_in 0 148705 station_ip 83.122.218.25 148705 port 513 148705 unique_id port 148705 remote_ip 10.8.0.182 148709 username hashtadani4 148709 mac 148709 bytes_out 0 148709 bytes_in 0 148709 station_ip 83.122.218.25 148709 port 266 148709 unique_id port 148709 remote_ip 10.8.1.142 148713 username hashtadani4 148713 mac 148713 bytes_out 0 148713 bytes_in 0 148713 station_ip 83.122.218.25 148645 port 514 148645 unique_id port 148645 remote_ip 10.8.0.182 148646 username hashtadani4 148646 mac 148646 bytes_out 0 148646 bytes_in 0 148646 station_ip 83.122.218.25 148646 port 266 148646 unique_id port 148646 remote_ip 10.8.1.142 148649 username hashtadani4 148649 mac 148649 bytes_out 0 148649 bytes_in 0 148649 station_ip 83.122.218.25 148649 port 266 148649 unique_id port 148649 remote_ip 10.8.1.142 148653 username hashtadani4 148653 mac 148653 bytes_out 0 148653 bytes_in 0 148653 station_ip 83.122.218.25 148653 port 514 148653 unique_id port 148653 remote_ip 10.8.0.182 148654 username hashtadani4 148654 mac 148654 bytes_out 0 148654 bytes_in 0 148654 station_ip 83.122.218.25 148654 port 266 148654 unique_id port 148654 remote_ip 10.8.1.142 148656 username hashtadani4 148656 mac 148656 bytes_out 0 148656 bytes_in 0 148656 station_ip 83.122.218.25 148656 port 518 148656 unique_id port 148656 remote_ip 10.8.0.182 148660 username hashtadani4 148660 mac 148660 bytes_out 0 148660 bytes_in 0 148660 station_ip 83.122.218.25 148660 port 266 148660 unique_id port 148660 remote_ip 10.8.1.142 148664 username hashtadani4 148664 mac 148664 bytes_out 0 148664 bytes_in 0 148664 station_ip 83.122.218.25 148664 port 518 148664 unique_id port 148664 remote_ip 10.8.0.182 148667 username hashtadani4 148667 mac 148667 bytes_out 0 148667 bytes_in 0 148667 station_ip 83.122.218.25 148667 port 266 148667 unique_id port 148667 remote_ip 10.8.1.142 148668 username hashtadani4 148668 mac 148668 bytes_out 0 148668 bytes_in 0 148668 station_ip 83.122.218.25 148668 port 518 148668 unique_id port 148668 remote_ip 10.8.0.182 148672 username mohammadjavad 148672 mac 148672 bytes_out 439094 148672 bytes_in 2982062 148672 station_ip 83.123.113.137 148672 port 514 148672 unique_id port 148672 remote_ip 10.8.0.142 148676 username hashtadani4 148676 mac 148676 bytes_out 0 148676 bytes_in 0 148676 station_ip 83.122.218.25 148676 port 266 148676 unique_id port 148676 remote_ip 10.8.1.142 148680 username saeed9658 148680 mac 148680 bytes_out 0 148680 bytes_in 0 148680 station_ip 5.119.195.219 148680 port 518 148680 unique_id port 148680 remote_ip 10.8.0.62 148682 username hashtadani4 148682 mac 148682 bytes_out 0 148682 bytes_in 0 148682 station_ip 83.122.218.25 148682 port 266 148682 unique_id port 148682 remote_ip 10.8.1.142 148684 username hashtadani4 148684 mac 148684 bytes_out 0 148684 bytes_in 0 148684 station_ip 83.122.218.25 148684 port 514 148684 unique_id port 148684 remote_ip 10.8.0.182 148688 username hashtadani4 148688 mac 148688 bytes_out 0 148688 bytes_in 0 148688 station_ip 83.122.218.25 148688 port 514 148688 unique_id port 148688 remote_ip 10.8.0.182 148691 username hashtadani4 148691 mac 148691 bytes_out 0 148691 bytes_in 0 148691 station_ip 83.122.218.25 148691 port 514 148691 unique_id port 148691 remote_ip 10.8.0.182 148692 username hashtadani4 148692 mac 148692 bytes_out 0 148692 bytes_in 0 148692 station_ip 83.122.218.25 148692 port 266 148692 unique_id port 148692 remote_ip 10.8.1.142 148697 username hashtadani4 148697 mac 148697 bytes_out 0 148697 bytes_in 0 148697 station_ip 83.122.218.25 148697 port 514 148697 unique_id port 148697 remote_ip 10.8.0.182 148702 username sabaghnezhad 148702 mac 148702 bytes_out 732754 148702 bytes_in 10142596 148702 station_ip 37.129.163.180 148702 port 513 148686 username hashtadani4 148686 mac 148686 bytes_out 0 148686 bytes_in 0 148686 station_ip 83.122.218.25 148686 port 514 148686 unique_id port 148686 remote_ip 10.8.0.182 148687 username saeed9658 148687 mac 148687 bytes_out 0 148687 bytes_in 0 148687 station_ip 5.119.195.219 148687 port 266 148687 unique_id port 148687 remote_ip 10.8.1.210 148689 username hashtadani4 148689 mac 148689 bytes_out 0 148689 bytes_in 0 148689 station_ip 83.122.218.25 148689 port 514 148689 unique_id port 148689 remote_ip 10.8.0.182 148693 username hashtadani4 148693 mac 148693 bytes_out 0 148693 bytes_in 0 148693 station_ip 83.122.218.25 148693 port 514 148693 unique_id port 148693 remote_ip 10.8.0.182 148695 username hashtadani4 148695 mac 148695 bytes_out 0 148695 bytes_in 0 148695 station_ip 83.122.218.25 148695 port 514 148695 unique_id port 148695 remote_ip 10.8.0.182 148698 username hashtadani4 148698 mac 148698 bytes_out 0 148698 bytes_in 0 148698 station_ip 83.122.218.25 148698 port 266 148698 unique_id port 148698 remote_ip 10.8.1.142 148699 username hashtadani4 148699 mac 148699 bytes_out 0 148699 bytes_in 0 148699 station_ip 83.122.218.25 148699 port 514 148699 unique_id port 148699 remote_ip 10.8.0.182 148701 username hashtadani4 148701 mac 148701 bytes_out 0 148701 bytes_in 0 148701 station_ip 83.122.218.25 148701 port 266 148701 unique_id port 148701 remote_ip 10.8.1.142 148703 username hashtadani4 148703 mac 148703 bytes_out 0 148703 bytes_in 0 148703 station_ip 83.122.218.25 148703 port 513 148703 unique_id port 148703 remote_ip 10.8.0.182 148704 username hashtadani4 148704 mac 148704 bytes_out 0 148704 bytes_in 0 148704 station_ip 83.122.218.25 148704 port 513 148704 unique_id port 148704 remote_ip 10.8.0.182 148708 username hashtadani4 148708 mac 148708 bytes_out 0 148708 bytes_in 0 148708 station_ip 83.122.218.25 148708 port 513 148708 unique_id port 148708 remote_ip 10.8.0.182 148712 username hashtadani4 148712 mac 148712 bytes_out 0 148712 bytes_in 0 148712 station_ip 83.122.218.25 148712 port 266 148712 unique_id port 148712 remote_ip 10.8.1.142 148722 username hashtadani4 148722 mac 148722 bytes_out 0 148722 bytes_in 0 148722 station_ip 83.122.218.25 148722 port 266 148722 unique_id port 148722 remote_ip 10.8.1.142 148724 username hashtadani4 148724 mac 148724 bytes_out 0 148724 bytes_in 0 148724 station_ip 83.122.218.25 148724 port 270 148724 unique_id port 148724 remote_ip 10.8.1.142 148726 username hashtadani4 148726 mac 148726 bytes_out 0 148726 bytes_in 0 148726 station_ip 83.122.218.25 148726 port 514 148726 unique_id port 148726 remote_ip 10.8.0.182 148730 username hashtadani4 148730 mac 148730 bytes_out 0 148730 bytes_in 0 148730 station_ip 83.122.218.25 148730 port 514 148730 unique_id port 148730 remote_ip 10.8.0.182 148731 username hashtadani4 148731 mac 148731 bytes_out 0 148731 bytes_in 0 148731 station_ip 83.122.218.25 148731 port 266 148731 unique_id port 148731 remote_ip 10.8.1.142 148734 username hashtadani4 148734 mac 148734 bytes_out 0 148734 bytes_in 0 148734 station_ip 83.122.218.25 148734 port 514 148734 unique_id port 148734 remote_ip 10.8.0.182 148736 username hashtadani4 148736 mac 148736 bytes_out 0 148736 bytes_in 0 148736 station_ip 83.122.218.25 148736 port 514 148736 unique_id port 148736 remote_ip 10.8.0.182 148739 username hashtadani4 148739 mac 148702 unique_id port 148702 remote_ip 10.8.0.186 148706 username hashtadani4 148706 mac 148706 bytes_out 0 148706 bytes_in 0 148706 station_ip 83.122.218.25 148706 port 266 148706 unique_id port 148706 remote_ip 10.8.1.142 148707 username hashtadani4 148707 mac 148707 bytes_out 0 148707 bytes_in 0 148707 station_ip 83.122.218.25 148707 port 513 148707 unique_id port 148707 remote_ip 10.8.0.182 148710 username hashtadani4 148710 mac 148710 bytes_out 0 148710 bytes_in 0 148710 station_ip 83.122.218.25 148710 port 513 148710 unique_id port 148710 remote_ip 10.8.0.182 148711 username hashtadani4 148711 mac 148711 bytes_out 0 148711 bytes_in 0 148711 station_ip 83.122.218.25 148711 port 513 148711 unique_id port 148711 remote_ip 10.8.0.182 148714 username hashtadani4 148714 mac 148714 bytes_out 0 148714 bytes_in 0 148714 station_ip 83.122.218.25 148714 port 266 148714 unique_id port 148714 remote_ip 10.8.1.142 148717 username hashtadani4 148717 mac 148717 bytes_out 0 148717 bytes_in 0 148717 station_ip 83.122.218.25 148717 port 270 148717 unique_id port 148717 remote_ip 10.8.1.142 148719 username hashtadani4 148719 mac 148719 bytes_out 0 148719 bytes_in 0 148719 station_ip 83.122.218.25 148719 port 513 148719 unique_id port 148719 remote_ip 10.8.0.182 148721 username hashtadani4 148721 mac 148721 bytes_out 0 148721 bytes_in 0 148721 station_ip 83.122.218.25 148721 port 514 148721 unique_id port 148721 remote_ip 10.8.0.182 148723 username hashtadani4 148723 mac 148723 bytes_out 0 148723 bytes_in 0 148723 station_ip 83.122.218.25 148723 port 514 148723 unique_id port 148723 remote_ip 10.8.0.182 148727 username saeed9658 148727 mac 148727 bytes_out 0 148727 bytes_in 0 148727 station_ip 5.119.195.219 148727 port 266 148727 unique_id port 148727 remote_ip 10.8.1.210 148728 username hashtadani4 148728 mac 148728 bytes_out 0 148728 bytes_in 0 148728 station_ip 83.122.218.25 148728 port 513 148728 unique_id port 148728 remote_ip 10.8.0.182 148729 username hashtadani4 148729 mac 148729 bytes_out 0 148729 bytes_in 0 148729 station_ip 83.122.218.25 148729 port 266 148729 unique_id port 148729 remote_ip 10.8.1.142 148733 username hashtadani4 148733 mac 148733 bytes_out 0 148733 bytes_in 0 148733 station_ip 83.122.218.25 148733 port 266 148733 unique_id port 148733 remote_ip 10.8.1.142 148735 username hashtadani4 148735 mac 148735 bytes_out 0 148735 bytes_in 0 148735 station_ip 83.122.218.25 148735 port 266 148735 unique_id port 148735 remote_ip 10.8.1.142 148738 username hashtadani4 148738 mac 148738 bytes_out 0 148738 bytes_in 0 148738 station_ip 83.122.218.25 148738 port 266 148738 unique_id port 148738 remote_ip 10.8.1.142 148742 username hashtadani4 148742 mac 148742 bytes_out 0 148742 bytes_in 0 148742 station_ip 83.122.218.25 148742 port 514 148742 unique_id port 148742 remote_ip 10.8.0.182 148746 username hashtadani4 148746 mac 148746 bytes_out 0 148746 bytes_in 0 148746 station_ip 83.122.218.25 148746 port 514 148746 unique_id port 148746 remote_ip 10.8.0.182 148747 username hashtadani4 148747 mac 148747 bytes_out 0 148747 bytes_in 0 148747 station_ip 83.122.218.25 148747 port 270 148747 unique_id port 148747 remote_ip 10.8.1.142 148750 username hashtadani4 148750 mac 148750 bytes_out 0 148750 bytes_in 0 148750 station_ip 83.122.218.25 148750 port 514 148750 unique_id port 148750 remote_ip 10.8.0.182 148713 port 513 148713 unique_id port 148713 remote_ip 10.8.0.182 148715 username hashtadani4 148715 mac 148715 bytes_out 0 148715 bytes_in 0 148715 station_ip 83.122.218.25 148715 port 513 148715 unique_id port 148715 remote_ip 10.8.0.182 148716 username hashtadani4 148716 mac 148716 bytes_out 0 148716 bytes_in 0 148716 station_ip 83.122.218.25 148716 port 513 148716 unique_id port 148716 remote_ip 10.8.0.182 148718 username barzegar 148718 mac 148718 bytes_out 0 148718 bytes_in 0 148718 station_ip 5.119.236.105 148718 port 266 148718 unique_id port 148718 remote_ip 10.8.1.174 148720 username hashtadani4 148720 mac 148720 bytes_out 0 148720 bytes_in 0 148720 station_ip 83.122.218.25 148720 port 266 148720 unique_id port 148720 remote_ip 10.8.1.142 148725 username fezealinaghi 148725 mac 148725 bytes_out 0 148725 bytes_in 0 148725 station_ip 37.129.156.60 148725 port 513 148725 unique_id port 148725 remote_ip 10.8.0.78 148732 username hashtadani4 148732 mac 148732 bytes_out 0 148732 bytes_in 0 148732 station_ip 83.122.218.25 148732 port 514 148732 unique_id port 148732 remote_ip 10.8.0.182 148737 username hashtadani4 148737 mac 148737 bytes_out 0 148737 bytes_in 0 148737 station_ip 83.122.218.25 148737 port 514 148737 unique_id port 148737 remote_ip 10.8.0.182 148741 username hashtadani4 148741 mac 148741 bytes_out 0 148741 bytes_in 0 148741 station_ip 83.122.218.25 148741 port 266 148741 unique_id port 148741 remote_ip 10.8.1.142 148745 username hashtadani4 148745 mac 148745 bytes_out 0 148745 bytes_in 0 148745 station_ip 83.122.218.25 148745 port 266 148745 unique_id port 148745 remote_ip 10.8.1.142 148748 username saeed9658 148748 mac 148748 bytes_out 0 148748 bytes_in 0 148748 station_ip 5.119.195.219 148748 port 266 148748 unique_id port 148748 remote_ip 10.8.1.210 148749 username hashtadani4 148749 mac 148749 bytes_out 0 148749 bytes_in 0 148749 station_ip 83.122.218.25 148749 port 514 148749 unique_id port 148749 remote_ip 10.8.0.182 148752 username hashtadani4 148752 mac 148752 bytes_out 0 148752 bytes_in 0 148752 station_ip 83.122.218.25 148752 port 266 148752 unique_id port 148752 remote_ip 10.8.1.142 148753 username hashtadani4 148753 mac 148753 bytes_out 0 148753 bytes_in 0 148753 station_ip 83.122.218.25 148753 port 266 148753 unique_id port 148753 remote_ip 10.8.1.142 148755 username zotaher 148755 kill_reason Another user logged on this global unique id 148755 mac 148755 bytes_out 0 148755 bytes_in 0 148755 station_ip 37.129.154.254 148755 port 489 148755 unique_id port 148756 username hashtadani4 148756 mac 148756 bytes_out 0 148756 bytes_in 0 148756 station_ip 83.122.218.25 148756 port 266 148756 unique_id port 148756 remote_ip 10.8.1.142 148758 username hashtadani4 148758 mac 148758 bytes_out 0 148758 bytes_in 0 148758 station_ip 83.122.218.25 148758 port 266 148758 unique_id port 148758 remote_ip 10.8.1.142 148761 username hashtadani4 148761 mac 148761 bytes_out 0 148761 bytes_in 0 148761 station_ip 83.122.218.25 148761 port 266 148761 unique_id port 148761 remote_ip 10.8.1.142 148762 username hashtadani4 148762 mac 148762 bytes_out 0 148762 bytes_in 0 148762 station_ip 83.122.218.25 148762 port 514 148762 unique_id port 148762 remote_ip 10.8.0.182 148763 username hashtadani4 148763 mac 148763 bytes_out 0 148763 bytes_in 0 148763 station_ip 83.122.218.25 148763 port 514 148739 bytes_out 0 148739 bytes_in 0 148739 station_ip 83.122.218.25 148739 port 514 148739 unique_id port 148739 remote_ip 10.8.0.182 148740 username hashtadani4 148740 mac 148740 bytes_out 0 148740 bytes_in 0 148740 station_ip 83.122.218.25 148740 port 514 148740 unique_id port 148740 remote_ip 10.8.0.182 148743 username hashtadani4 148743 mac 148743 bytes_out 0 148743 bytes_in 0 148743 station_ip 83.122.218.25 148743 port 266 148743 unique_id port 148743 remote_ip 10.8.1.142 148744 username hashtadani4 148744 mac 148744 bytes_out 0 148744 bytes_in 0 148744 station_ip 83.122.218.25 148744 port 514 148744 unique_id port 148744 remote_ip 10.8.0.182 148751 username hashtadani4 148751 mac 148751 bytes_out 0 148751 bytes_in 0 148751 station_ip 83.122.218.25 148751 port 514 148751 unique_id port 148751 remote_ip 10.8.0.182 148757 username hashtadani4 148757 mac 148757 bytes_out 0 148757 bytes_in 0 148757 station_ip 83.122.218.25 148757 port 514 148757 unique_id port 148757 remote_ip 10.8.0.182 148760 username hashtadani4 148760 mac 148760 bytes_out 0 148760 bytes_in 0 148760 station_ip 83.122.218.25 148760 port 514 148760 unique_id port 148760 remote_ip 10.8.0.182 148764 username barzegar 148764 mac 148764 bytes_out 0 148764 bytes_in 0 148764 station_ip 5.119.236.105 148764 port 266 148764 unique_id port 148764 remote_ip 10.8.1.174 148769 username hashtadani4 148769 mac 148769 bytes_out 0 148769 bytes_in 0 148769 station_ip 83.122.218.25 148769 port 514 148769 unique_id port 148769 remote_ip 10.8.0.182 148772 username hashtadani4 148772 mac 148772 bytes_out 0 148772 bytes_in 0 148772 station_ip 83.122.218.25 148772 port 266 148772 unique_id port 148772 remote_ip 10.8.1.142 148776 username hashtadani4 148776 mac 148776 bytes_out 0 148776 bytes_in 0 148776 station_ip 83.122.218.25 148776 port 266 148776 unique_id port 148776 remote_ip 10.8.1.142 148781 username hashtadani4 148781 mac 148781 bytes_out 0 148781 bytes_in 0 148781 station_ip 83.122.218.25 148781 port 514 148781 unique_id port 148781 remote_ip 10.8.0.182 148782 username hashtadani4 148782 mac 148782 bytes_out 0 148782 bytes_in 0 148782 station_ip 83.122.218.25 148782 port 514 148782 unique_id port 148782 remote_ip 10.8.0.182 148783 username hashtadani4 148783 mac 148783 bytes_out 0 148783 bytes_in 0 148783 station_ip 83.122.218.25 148783 port 514 148783 unique_id port 148783 remote_ip 10.8.0.182 148785 username zotaher 148785 mac 148785 bytes_out 0 148785 bytes_in 0 148785 station_ip 37.129.154.254 148785 port 489 148785 unique_id port 148788 username hashtadani4 148788 mac 148788 bytes_out 0 148788 bytes_in 0 148788 station_ip 83.122.218.25 148788 port 266 148788 unique_id port 148788 remote_ip 10.8.1.142 148792 username hashtadani4 148792 mac 148792 bytes_out 0 148792 bytes_in 0 148792 station_ip 83.122.218.25 148792 port 489 148792 unique_id port 148792 remote_ip 10.8.0.182 148796 username hashtadani4 148796 mac 148796 bytes_out 0 148796 bytes_in 0 148796 station_ip 83.122.218.25 148796 port 489 148796 unique_id port 148796 remote_ip 10.8.0.182 148798 username hashtadani4 148798 mac 148798 bytes_out 0 148798 bytes_in 0 148798 station_ip 83.122.218.25 148798 port 489 148798 unique_id port 148798 remote_ip 10.8.0.182 148800 username hashtadani4 148800 mac 148800 bytes_out 0 148800 bytes_in 0 148800 station_ip 83.122.218.25 148754 username hashtadani4 148754 mac 148754 bytes_out 0 148754 bytes_in 0 148754 station_ip 83.122.218.25 148754 port 514 148754 unique_id port 148754 remote_ip 10.8.0.182 148759 username hashtadani4 148759 mac 148759 bytes_out 0 148759 bytes_in 0 148759 station_ip 83.122.218.25 148759 port 514 148759 unique_id port 148759 remote_ip 10.8.0.182 148766 username hashtadani4 148766 mac 148766 bytes_out 0 148766 bytes_in 0 148766 station_ip 83.122.218.25 148766 port 514 148766 unique_id port 148766 remote_ip 10.8.0.182 148768 username hashtadani4 148768 mac 148768 bytes_out 0 148768 bytes_in 0 148768 station_ip 83.122.218.25 148768 port 270 148768 unique_id port 148768 remote_ip 10.8.1.142 148770 username saeed9658 148770 mac 148770 bytes_out 0 148770 bytes_in 0 148770 station_ip 5.119.195.219 148770 port 266 148770 unique_id port 148770 remote_ip 10.8.1.210 148771 username hashtadani4 148771 mac 148771 bytes_out 0 148771 bytes_in 0 148771 station_ip 83.122.218.25 148771 port 266 148771 unique_id port 148771 remote_ip 10.8.1.142 148775 username hashtadani4 148775 mac 148775 bytes_out 0 148775 bytes_in 0 148775 station_ip 83.122.218.25 148775 port 514 148775 unique_id port 148775 remote_ip 10.8.0.182 148778 username hashtadani4 148778 mac 148778 bytes_out 0 148778 bytes_in 0 148778 station_ip 83.122.218.25 148778 port 514 148778 unique_id port 148778 remote_ip 10.8.0.182 148780 username hashtadani4 148780 mac 148780 bytes_out 0 148780 bytes_in 0 148780 station_ip 83.122.218.25 148780 port 514 148780 unique_id port 148780 remote_ip 10.8.0.182 148784 username saeed9658 148784 mac 148784 bytes_out 0 148784 bytes_in 0 148784 station_ip 5.119.195.219 148784 port 266 148784 unique_id port 148784 remote_ip 10.8.1.210 148786 username hashtadani4 148786 mac 148786 bytes_out 0 148786 bytes_in 0 148786 station_ip 83.122.218.25 148786 port 514 148786 unique_id port 148786 remote_ip 10.8.0.182 148787 username hashtadani4 148787 mac 148787 bytes_out 0 148787 bytes_in 0 148787 station_ip 83.122.218.25 148787 port 489 148787 unique_id port 148787 remote_ip 10.8.0.182 148791 username hashtadani4 148791 mac 148791 bytes_out 0 148791 bytes_in 0 148791 station_ip 83.122.218.25 148791 port 266 148791 unique_id port 148791 remote_ip 10.8.1.142 148795 username hashtadani4 148795 mac 148795 bytes_out 0 148795 bytes_in 0 148795 station_ip 83.122.218.25 148795 port 489 148795 unique_id port 148795 remote_ip 10.8.0.182 148799 username sabaghnezhad 148799 mac 148799 bytes_out 0 148799 bytes_in 0 148799 station_ip 37.129.2.47 148799 port 513 148799 unique_id port 148799 remote_ip 10.8.0.186 148802 username hashtadani4 148802 mac 148802 bytes_out 0 148802 bytes_in 0 148802 station_ip 83.122.218.25 148802 port 266 148802 unique_id port 148802 remote_ip 10.8.1.142 148803 username hashtadani4 148803 mac 148803 bytes_out 0 148803 bytes_in 0 148803 station_ip 83.122.218.25 148803 port 489 148803 unique_id port 148803 remote_ip 10.8.0.182 148804 username hashtadani4 148804 mac 148804 bytes_out 0 148804 bytes_in 0 148804 station_ip 83.122.218.25 148804 port 489 148804 unique_id port 148804 remote_ip 10.8.0.182 148806 username hashtadani4 148806 mac 148806 bytes_out 0 148806 bytes_in 0 148806 station_ip 83.122.218.25 148806 port 489 148806 unique_id port 148806 remote_ip 10.8.0.182 148808 username hashtadani4 148808 mac 148763 unique_id port 148763 remote_ip 10.8.0.182 148765 username hashtadani4 148765 mac 148765 bytes_out 0 148765 bytes_in 0 148765 station_ip 83.122.218.25 148765 port 266 148765 unique_id port 148765 remote_ip 10.8.1.142 148767 username hashtadani4 148767 mac 148767 bytes_out 0 148767 bytes_in 0 148767 station_ip 83.122.218.25 148767 port 514 148767 unique_id port 148767 remote_ip 10.8.0.182 148773 username hashtadani4 148773 mac 148773 bytes_out 0 148773 bytes_in 0 148773 station_ip 83.122.218.25 148773 port 514 148773 unique_id port 148773 remote_ip 10.8.0.182 148774 username hashtadani4 148774 mac 148774 bytes_out 0 148774 bytes_in 0 148774 station_ip 83.122.218.25 148774 port 266 148774 unique_id port 148774 remote_ip 10.8.1.142 148777 username hashtadani4 148777 mac 148777 bytes_out 0 148777 bytes_in 0 148777 station_ip 83.122.218.25 148777 port 514 148777 unique_id port 148777 remote_ip 10.8.0.182 148779 username hashtadani4 148779 mac 148779 bytes_out 0 148779 bytes_in 0 148779 station_ip 83.122.218.25 148779 port 266 148779 unique_id port 148779 remote_ip 10.8.1.142 148789 username hashtadani4 148789 mac 148789 bytes_out 0 148789 bytes_in 0 148789 station_ip 83.122.218.25 148789 port 489 148789 unique_id port 148789 remote_ip 10.8.0.182 148790 username hashtadani4 148790 mac 148790 bytes_out 0 148790 bytes_in 0 148790 station_ip 83.122.218.25 148790 port 489 148790 unique_id port 148790 remote_ip 10.8.0.182 148793 username hashtadani4 148793 mac 148793 bytes_out 0 148793 bytes_in 0 148793 station_ip 83.122.218.25 148793 port 489 148793 unique_id port 148793 remote_ip 10.8.0.182 148794 username hashtadani4 148794 mac 148794 bytes_out 0 148794 bytes_in 0 148794 station_ip 83.122.218.25 148794 port 266 148794 unique_id port 148794 remote_ip 10.8.1.142 148797 username barzegar 148797 mac 148797 bytes_out 0 148797 bytes_in 0 148797 station_ip 5.119.236.105 148797 port 266 148797 unique_id port 148797 remote_ip 10.8.1.174 148801 username hashtadani4 148801 mac 148801 bytes_out 0 148801 bytes_in 0 148801 station_ip 83.122.218.25 148801 port 489 148801 unique_id port 148801 remote_ip 10.8.0.182 148805 username hashtadani4 148805 mac 148805 bytes_out 0 148805 bytes_in 0 148805 station_ip 83.122.218.25 148805 port 489 148805 unique_id port 148805 remote_ip 10.8.0.182 148807 username saeed9658 148807 mac 148807 bytes_out 0 148807 bytes_in 0 148807 station_ip 5.119.195.219 148807 port 514 148807 unique_id port 148807 remote_ip 10.8.0.62 148811 username hashtadani4 148811 mac 148811 bytes_out 0 148811 bytes_in 0 148811 station_ip 83.122.218.25 148811 port 489 148811 unique_id port 148811 remote_ip 10.8.0.182 148815 username hashtadani4 148815 mac 148815 bytes_out 0 148815 bytes_in 0 148815 station_ip 83.122.218.25 148815 port 266 148815 unique_id port 148815 remote_ip 10.8.1.142 148817 username hashtadani4 148817 mac 148817 bytes_out 0 148817 bytes_in 0 148817 station_ip 83.122.218.25 148817 port 266 148817 unique_id port 148817 remote_ip 10.8.1.142 148822 username hashtadani4 148822 mac 148822 bytes_out 0 148822 bytes_in 0 148822 station_ip 83.122.218.25 148822 port 489 148822 unique_id port 148822 remote_ip 10.8.0.182 148826 username hashtadani4 148826 mac 148826 bytes_out 0 148826 bytes_in 0 148826 station_ip 83.122.218.25 148826 port 489 148826 unique_id port 148826 remote_ip 10.8.0.182 148800 port 266 148800 unique_id port 148800 remote_ip 10.8.1.142 148809 username hashtadani4 148809 mac 148809 bytes_out 0 148809 bytes_in 0 148809 station_ip 83.122.218.25 148809 port 489 148809 unique_id port 148809 remote_ip 10.8.0.182 148810 username hashtadani4 148810 mac 148810 bytes_out 0 148810 bytes_in 0 148810 station_ip 83.122.218.25 148810 port 266 148810 unique_id port 148810 remote_ip 10.8.1.142 148814 username hashtadani4 148814 mac 148814 bytes_out 0 148814 bytes_in 0 148814 station_ip 83.122.218.25 148814 port 489 148814 unique_id port 148814 remote_ip 10.8.0.182 148819 username hashtadani4 148819 mac 148819 bytes_out 0 148819 bytes_in 0 148819 station_ip 83.122.218.25 148819 port 266 148819 unique_id port 148819 remote_ip 10.8.1.142 148821 username hashtadani4 148821 mac 148821 bytes_out 0 148821 bytes_in 0 148821 station_ip 83.122.218.25 148821 port 270 148821 unique_id port 148821 remote_ip 10.8.1.142 148825 username hashtadani4 148825 mac 148825 bytes_out 0 148825 bytes_in 0 148825 station_ip 83.122.218.25 148825 port 489 148825 unique_id port 148825 remote_ip 10.8.0.182 148827 username saeed9658 148827 kill_reason Maximum check online fails reached 148827 mac 148827 bytes_out 0 148827 bytes_in 0 148827 station_ip 5.119.195.219 148827 port 266 148827 unique_id port 148828 username hashtadani4 148828 mac 148828 bytes_out 0 148828 bytes_in 0 148828 station_ip 83.122.218.25 148828 port 489 148828 unique_id port 148828 remote_ip 10.8.0.182 148832 username hashtadani4 148832 mac 148832 bytes_out 0 148832 bytes_in 0 148832 station_ip 83.122.218.25 148832 port 489 148832 unique_id port 148832 remote_ip 10.8.0.182 148833 username saeed9658 148833 mac 148833 bytes_out 0 148833 bytes_in 0 148833 station_ip 5.119.195.219 148833 port 514 148833 unique_id port 148833 remote_ip 10.8.0.62 148837 username hashtadani4 148837 mac 148837 bytes_out 0 148837 bytes_in 0 148837 station_ip 83.122.218.25 148837 port 489 148837 unique_id port 148837 remote_ip 10.8.0.182 148840 username barzegar 148840 mac 148840 bytes_out 0 148840 bytes_in 0 148840 station_ip 5.119.236.105 148840 port 270 148840 unique_id port 148840 remote_ip 10.8.1.174 148841 username hashtadani4 148841 mac 148841 bytes_out 0 148841 bytes_in 0 148841 station_ip 83.122.218.25 148841 port 270 148841 unique_id port 148841 remote_ip 10.8.1.142 148843 username amirabbas 148843 unique_id port 148843 terminate_cause User-Request 148843 bytes_out 18204485 148843 bytes_in 557112446 148843 station_ip 37.27.10.12 148843 port 15731017 148843 nas_port_type Virtual 148843 remote_ip 5.5.5.187 148848 username hashtadani4 148848 mac 148848 bytes_out 0 148848 bytes_in 0 148848 station_ip 83.122.218.25 148848 port 489 148848 unique_id port 148848 remote_ip 10.8.0.182 148850 username hashtadani4 148850 mac 148850 bytes_out 0 148850 bytes_in 0 148850 station_ip 83.122.218.25 148850 port 489 148850 unique_id port 148850 remote_ip 10.8.0.182 148851 username hashtadani4 148851 mac 148851 bytes_out 0 148851 bytes_in 0 148851 station_ip 83.122.218.25 148851 port 489 148851 unique_id port 148851 remote_ip 10.8.0.182 148855 username hashtadani4 148855 mac 148855 bytes_out 0 148855 bytes_in 0 148855 station_ip 83.122.218.25 148855 port 270 148855 unique_id port 148855 remote_ip 10.8.1.142 148857 username hashtadani4 148857 mac 148857 bytes_out 0 148857 bytes_in 0 148857 station_ip 83.122.218.25 148808 bytes_out 0 148808 bytes_in 0 148808 station_ip 83.122.218.25 148808 port 266 148808 unique_id port 148808 remote_ip 10.8.1.142 148812 username hashtadani4 148812 mac 148812 bytes_out 0 148812 bytes_in 0 148812 station_ip 83.122.218.25 148812 port 266 148812 unique_id port 148812 remote_ip 10.8.1.142 148813 username hashtadani4 148813 mac 148813 bytes_out 0 148813 bytes_in 0 148813 station_ip 83.122.218.25 148813 port 266 148813 unique_id port 148813 remote_ip 10.8.1.142 148816 username hashtadani4 148816 mac 148816 bytes_out 0 148816 bytes_in 0 148816 station_ip 83.122.218.25 148816 port 489 148816 unique_id port 148816 remote_ip 10.8.0.182 148818 username hashtadani4 148818 mac 148818 bytes_out 0 148818 bytes_in 0 148818 station_ip 83.122.218.25 148818 port 489 148818 unique_id port 148818 remote_ip 10.8.0.182 148820 username hashtadani4 148820 mac 148820 bytes_out 0 148820 bytes_in 0 148820 station_ip 83.122.218.25 148820 port 489 148820 unique_id port 148820 remote_ip 10.8.0.182 148823 username hashtadani4 148823 mac 148823 bytes_out 0 148823 bytes_in 0 148823 station_ip 83.122.218.25 148823 port 270 148823 unique_id port 148823 remote_ip 10.8.1.142 148824 username hashtadani4 148824 mac 148824 bytes_out 0 148824 bytes_in 0 148824 station_ip 83.122.218.25 148824 port 489 148824 unique_id port 148824 remote_ip 10.8.0.182 148830 username hashtadani4 148830 mac 148830 bytes_out 0 148830 bytes_in 0 148830 station_ip 83.122.218.25 148830 port 489 148830 unique_id port 148830 remote_ip 10.8.0.182 148831 username hashtadani4 148831 mac 148831 bytes_out 0 148831 bytes_in 0 148831 station_ip 83.122.218.25 148831 port 270 148831 unique_id port 148831 remote_ip 10.8.1.142 148834 username hashtadani4 148834 mac 148834 bytes_out 0 148834 bytes_in 0 148834 station_ip 83.122.218.25 148834 port 489 148834 unique_id port 148834 remote_ip 10.8.0.182 148836 username hashtadani4 148836 mac 148836 bytes_out 0 148836 bytes_in 0 148836 station_ip 83.122.218.25 148836 port 270 148836 unique_id port 148836 remote_ip 10.8.1.142 148845 username hashtadani4 148845 mac 148845 bytes_out 0 148845 bytes_in 0 148845 station_ip 83.122.218.25 148845 port 489 148845 unique_id port 148845 remote_ip 10.8.0.182 148846 username hashtadani4 148846 mac 148846 bytes_out 0 148846 bytes_in 0 148846 station_ip 83.122.218.25 148846 port 271 148846 unique_id port 148846 remote_ip 10.8.1.142 148847 username hashtadani4 148847 mac 148847 bytes_out 0 148847 bytes_in 0 148847 station_ip 83.122.218.25 148847 port 489 148847 unique_id port 148847 remote_ip 10.8.0.182 148849 username saeed9658 148849 mac 148849 bytes_out 0 148849 bytes_in 0 148849 station_ip 5.119.195.219 148849 port 270 148849 unique_id port 148849 remote_ip 10.8.1.210 148854 username hashtadani4 148854 mac 148854 bytes_out 0 148854 bytes_in 0 148854 station_ip 83.122.218.25 148854 port 489 148854 unique_id port 148854 remote_ip 10.8.0.182 148856 username hashtadani4 148856 mac 148856 bytes_out 0 148856 bytes_in 0 148856 station_ip 83.122.218.25 148856 port 270 148856 unique_id port 148856 remote_ip 10.8.1.142 148858 username hashtadani4 148858 mac 148858 bytes_out 0 148858 bytes_in 0 148858 station_ip 83.122.218.25 148858 port 270 148858 unique_id port 148858 remote_ip 10.8.1.142 148862 username hashtadani4 148862 mac 148862 bytes_out 0 148862 bytes_in 0 148829 username hashtadani4 148829 mac 148829 bytes_out 0 148829 bytes_in 0 148829 station_ip 83.122.218.25 148829 port 489 148829 unique_id port 148829 remote_ip 10.8.0.182 148835 username hashtadani4 148835 mac 148835 bytes_out 0 148835 bytes_in 0 148835 station_ip 83.122.218.25 148835 port 270 148835 unique_id port 148835 remote_ip 10.8.1.142 148838 username hashtadani4 148838 mac 148838 bytes_out 0 148838 bytes_in 0 148838 station_ip 83.122.218.25 148838 port 270 148838 unique_id port 148838 remote_ip 10.8.1.142 148839 username hashtadani4 148839 mac 148839 bytes_out 0 148839 bytes_in 0 148839 station_ip 83.122.218.25 148839 port 489 148839 unique_id port 148839 remote_ip 10.8.0.182 148842 username hashtadani4 148842 mac 148842 bytes_out 0 148842 bytes_in 0 148842 station_ip 83.122.218.25 148842 port 489 148842 unique_id port 148842 remote_ip 10.8.0.182 148844 username hashtadani4 148844 mac 148844 bytes_out 0 148844 bytes_in 0 148844 station_ip 83.122.218.25 148844 port 270 148844 unique_id port 148844 remote_ip 10.8.1.142 148852 username hashtadani4 148852 mac 148852 bytes_out 0 148852 bytes_in 0 148852 station_ip 83.122.218.25 148852 port 489 148852 unique_id port 148852 remote_ip 10.8.0.182 148853 username hashtadani4 148853 mac 148853 bytes_out 0 148853 bytes_in 0 148853 station_ip 83.122.218.25 148853 port 270 148853 unique_id port 148853 remote_ip 10.8.1.142 148860 username hashtadani4 148860 mac 148860 bytes_out 0 148860 bytes_in 0 148860 station_ip 83.122.218.25 148860 port 514 148860 unique_id port 148860 remote_ip 10.8.0.182 148861 username saeed9658 148861 mac 148861 bytes_out 0 148861 bytes_in 0 148861 station_ip 5.119.195.219 148861 port 489 148861 unique_id port 148861 remote_ip 10.8.0.62 148866 username hashtadani4 148866 mac 148866 bytes_out 0 148866 bytes_in 0 148866 station_ip 83.122.218.25 148866 port 270 148866 unique_id port 148866 remote_ip 10.8.1.142 148870 username hashtadani4 148870 mac 148870 bytes_out 0 148870 bytes_in 0 148870 station_ip 83.122.218.25 148870 port 270 148870 unique_id port 148870 remote_ip 10.8.1.142 148872 username hashtadani4 148872 mac 148872 bytes_out 0 148872 bytes_in 0 148872 station_ip 83.122.218.25 148872 port 270 148872 unique_id port 148872 remote_ip 10.8.1.142 148875 username kalantary 148875 mac 148875 bytes_out 0 148875 bytes_in 0 148875 station_ip 113.203.114.226 148875 port 514 148875 unique_id port 148875 remote_ip 10.8.0.98 148876 username hashtadani4 148876 mac 148876 bytes_out 0 148876 bytes_in 0 148876 station_ip 83.122.218.25 148876 port 489 148876 unique_id port 148876 remote_ip 10.8.0.182 148880 username saeed9658 148880 mac 148880 bytes_out 0 148880 bytes_in 0 148880 station_ip 5.119.195.219 148880 port 514 148880 unique_id port 148880 remote_ip 10.8.0.62 148882 username hashtadani4 148882 mac 148882 bytes_out 0 148882 bytes_in 0 148882 station_ip 83.122.218.25 148882 port 489 148882 unique_id port 148882 remote_ip 10.8.0.182 148886 username hashtadani4 148886 mac 148886 bytes_out 0 148886 bytes_in 0 148886 station_ip 83.122.218.25 148886 port 489 148886 unique_id port 148886 remote_ip 10.8.0.182 148889 username hashtadani4 148889 mac 148889 bytes_out 0 148889 bytes_in 0 148889 station_ip 83.122.218.25 148889 port 489 148889 unique_id port 148889 remote_ip 10.8.0.182 148893 username hashtadani4 148893 mac 148857 port 270 148857 unique_id port 148857 remote_ip 10.8.1.142 148859 username hashtadani4 148859 mac 148859 bytes_out 0 148859 bytes_in 0 148859 station_ip 83.122.218.25 148859 port 514 148859 unique_id port 148859 remote_ip 10.8.0.182 148863 username hashtadani4 148863 mac 148863 bytes_out 0 148863 bytes_in 0 148863 station_ip 83.122.218.25 148863 port 270 148863 unique_id port 148863 remote_ip 10.8.1.142 148864 username hashtadani4 148864 mac 148864 bytes_out 0 148864 bytes_in 0 148864 station_ip 83.122.218.25 148864 port 489 148864 unique_id port 148864 remote_ip 10.8.0.182 148865 username hashtadani4 148865 mac 148865 bytes_out 0 148865 bytes_in 0 148865 station_ip 83.122.218.25 148865 port 489 148865 unique_id port 148865 remote_ip 10.8.0.182 148869 username hashtadani4 148869 mac 148869 bytes_out 0 148869 bytes_in 0 148869 station_ip 83.122.218.25 148869 port 489 148869 unique_id port 148869 remote_ip 10.8.0.182 148878 username hashtadani4 148878 mac 148878 bytes_out 0 148878 bytes_in 0 148878 station_ip 83.122.218.25 148878 port 489 148878 unique_id port 148878 remote_ip 10.8.0.182 148879 username hashtadani4 148879 mac 148879 bytes_out 0 148879 bytes_in 0 148879 station_ip 83.122.218.25 148879 port 489 148879 unique_id port 148879 remote_ip 10.8.0.182 148881 username hashtadani4 148881 mac 148881 bytes_out 0 148881 bytes_in 0 148881 station_ip 83.122.218.25 148881 port 270 148881 unique_id port 148881 remote_ip 10.8.1.142 148885 username hashtadani4 148885 mac 148885 bytes_out 0 148885 bytes_in 0 148885 station_ip 83.122.218.25 148885 port 270 148885 unique_id port 148885 remote_ip 10.8.1.142 148888 username zotaher 148888 mac 148888 bytes_out 0 148888 bytes_in 0 148888 station_ip 37.129.154.254 148888 port 517 148888 unique_id port 148888 remote_ip 10.8.0.194 148890 username hashtadani4 148890 mac 148890 bytes_out 0 148890 bytes_in 0 148890 station_ip 83.122.218.25 148890 port 270 148890 unique_id port 148890 remote_ip 10.8.1.142 148891 username hashtadani4 148891 mac 148891 bytes_out 0 148891 bytes_in 0 148891 station_ip 83.122.218.25 148891 port 270 148891 unique_id port 148891 remote_ip 10.8.1.142 148892 username hashtadani4 148892 mac 148892 bytes_out 0 148892 bytes_in 0 148892 station_ip 83.122.218.25 148892 port 489 148892 unique_id port 148892 remote_ip 10.8.0.182 148896 username hashtadani4 148896 mac 148896 bytes_out 0 148896 bytes_in 0 148896 station_ip 83.122.218.25 148896 port 489 148896 unique_id port 148896 remote_ip 10.8.0.182 148897 username hashtadani4 148897 mac 148897 bytes_out 0 148897 bytes_in 0 148897 station_ip 83.122.218.25 148897 port 270 148897 unique_id port 148897 remote_ip 10.8.1.142 148900 username hashtadani4 148900 mac 148900 bytes_out 0 148900 bytes_in 0 148900 station_ip 83.122.218.25 148900 port 489 148900 unique_id port 148900 remote_ip 10.8.0.182 148905 username barzegar 148905 mac 148905 bytes_out 0 148905 bytes_in 0 148905 station_ip 5.119.236.105 148905 port 489 148905 unique_id port 148905 remote_ip 10.8.0.234 148908 username hashtadani4 148908 mac 148908 bytes_out 0 148908 bytes_in 0 148908 station_ip 83.122.218.25 148908 port 270 148908 unique_id port 148908 remote_ip 10.8.1.142 148910 username hashtadani4 148910 mac 148910 bytes_out 0 148910 bytes_in 0 148910 station_ip 83.122.218.25 148910 port 270 148910 unique_id port 148862 station_ip 83.122.218.25 148862 port 270 148862 unique_id port 148862 remote_ip 10.8.1.142 148867 username hashtadani4 148867 mac 148867 bytes_out 0 148867 bytes_in 0 148867 station_ip 83.122.218.25 148867 port 489 148867 unique_id port 148867 remote_ip 10.8.0.182 148868 username hashtadani4 148868 mac 148868 bytes_out 0 148868 bytes_in 0 148868 station_ip 83.122.218.25 148868 port 270 148868 unique_id port 148868 remote_ip 10.8.1.142 148871 username hashtadani4 148871 mac 148871 bytes_out 0 148871 bytes_in 0 148871 station_ip 83.122.218.25 148871 port 489 148871 unique_id port 148871 remote_ip 10.8.0.182 148873 username hashtadani4 148873 mac 148873 bytes_out 0 148873 bytes_in 0 148873 station_ip 83.122.218.25 148873 port 489 148873 unique_id port 148873 remote_ip 10.8.0.182 148874 username hashtadani4 148874 mac 148874 bytes_out 0 148874 bytes_in 0 148874 station_ip 83.122.218.25 148874 port 270 148874 unique_id port 148874 remote_ip 10.8.1.142 148877 username barzegar 148877 mac 148877 bytes_out 0 148877 bytes_in 0 148877 station_ip 5.119.236.105 148877 port 514 148877 unique_id port 148877 remote_ip 10.8.0.234 148883 username hashtadani4 148883 mac 148883 bytes_out 0 148883 bytes_in 0 148883 station_ip 83.122.218.25 148883 port 270 148883 unique_id port 148883 remote_ip 10.8.1.142 148884 username hashtadani4 148884 mac 148884 bytes_out 0 148884 bytes_in 0 148884 station_ip 83.122.218.25 148884 port 489 148884 unique_id port 148884 remote_ip 10.8.0.182 148887 username hashtadani4 148887 mac 148887 bytes_out 0 148887 bytes_in 0 148887 station_ip 83.122.218.25 148887 port 270 148887 unique_id port 148887 remote_ip 10.8.1.142 148894 username hashtadani4 148894 mac 148894 bytes_out 0 148894 bytes_in 0 148894 station_ip 83.122.218.25 148894 port 270 148894 unique_id port 148894 remote_ip 10.8.1.142 148895 username hashtadani4 148895 mac 148895 bytes_out 0 148895 bytes_in 0 148895 station_ip 83.122.218.25 148895 port 270 148895 unique_id port 148895 remote_ip 10.8.1.142 148899 username hashtadani4 148899 mac 148899 bytes_out 0 148899 bytes_in 0 148899 station_ip 83.122.218.25 148899 port 489 148899 unique_id port 148899 remote_ip 10.8.0.182 148901 username hashtadani4 148901 mac 148901 bytes_out 0 148901 bytes_in 0 148901 station_ip 83.122.218.25 148901 port 489 148901 unique_id port 148901 remote_ip 10.8.0.182 148902 username hashtadani4 148902 mac 148902 bytes_out 0 148902 bytes_in 0 148902 station_ip 83.122.218.25 148902 port 270 148902 unique_id port 148902 remote_ip 10.8.1.142 148906 username hashtadani4 148906 mac 148906 bytes_out 0 148906 bytes_in 0 148906 station_ip 83.122.218.25 148906 port 271 148906 unique_id port 148906 remote_ip 10.8.1.142 148907 username hashtadani4 148907 mac 148907 bytes_out 0 148907 bytes_in 0 148907 station_ip 83.122.218.25 148907 port 489 148907 unique_id port 148907 remote_ip 10.8.0.182 148909 username hashtadani4 148909 mac 148909 bytes_out 0 148909 bytes_in 0 148909 station_ip 83.122.218.25 148909 port 270 148909 unique_id port 148909 remote_ip 10.8.1.142 148916 username hashtadani4 148916 mac 148916 bytes_out 0 148916 bytes_in 0 148916 station_ip 83.122.218.25 148916 port 270 148916 unique_id port 148916 remote_ip 10.8.1.142 148921 username arash 148921 mac 148921 bytes_out 0 148921 bytes_in 0 148921 station_ip 5.134.149.235 148921 port 489 148893 bytes_out 0 148893 bytes_in 0 148893 station_ip 83.122.218.25 148893 port 489 148893 unique_id port 148893 remote_ip 10.8.0.182 148898 username hashtadani4 148898 mac 148898 bytes_out 0 148898 bytes_in 0 148898 station_ip 83.122.218.25 148898 port 270 148898 unique_id port 148898 remote_ip 10.8.1.142 148903 username hashtadani4 148903 mac 148903 bytes_out 0 148903 bytes_in 0 148903 station_ip 83.122.218.25 148903 port 489 148903 unique_id port 148903 remote_ip 10.8.0.182 148904 username saeed9658 148904 mac 148904 bytes_out 0 148904 bytes_in 0 148904 station_ip 5.119.195.219 148904 port 270 148904 unique_id port 148904 remote_ip 10.8.1.210 148911 username hashtadani4 148911 mac 148911 bytes_out 0 148911 bytes_in 0 148911 station_ip 83.122.218.25 148911 port 514 148911 unique_id port 148911 remote_ip 10.8.0.182 148914 username hashtadani4 148914 mac 148914 bytes_out 0 148914 bytes_in 0 148914 station_ip 83.122.218.25 148914 port 514 148914 unique_id port 148914 remote_ip 10.8.0.182 148915 username hashtadani4 148915 mac 148915 bytes_out 0 148915 bytes_in 0 148915 station_ip 83.122.218.25 148915 port 270 148915 unique_id port 148915 remote_ip 10.8.1.142 148920 username hashtadani4 148920 mac 148920 bytes_out 0 148920 bytes_in 0 148920 station_ip 83.122.218.25 148920 port 270 148920 unique_id port 148920 remote_ip 10.8.1.142 148924 username hashtadani4 148924 mac 148924 bytes_out 0 148924 bytes_in 0 148924 station_ip 83.122.218.25 148924 port 270 148924 unique_id port 148924 remote_ip 10.8.1.142 148935 username hashtadani4 148935 mac 148935 bytes_out 0 148935 bytes_in 0 148935 station_ip 83.122.218.25 148935 port 489 148935 unique_id port 148935 remote_ip 10.8.0.182 148936 username hashtadani4 148936 mac 148936 bytes_out 0 148936 bytes_in 0 148936 station_ip 83.122.218.25 148936 port 270 148936 unique_id port 148936 remote_ip 10.8.1.142 148940 username hashtadani4 148940 mac 148940 bytes_out 0 148940 bytes_in 0 148940 station_ip 83.122.218.25 148940 port 489 148940 unique_id port 148940 remote_ip 10.8.0.182 148942 username hashtadani4 148942 mac 148942 bytes_out 0 148942 bytes_in 0 148942 station_ip 83.122.218.25 148942 port 270 148942 unique_id port 148942 remote_ip 10.8.1.142 148949 username hashtadani4 148949 mac 148949 bytes_out 2543 148949 bytes_in 4975 148949 station_ip 83.122.218.25 148949 port 270 148949 unique_id port 148949 remote_ip 10.8.1.142 148951 username hashtadani4 148951 mac 148951 bytes_out 0 148951 bytes_in 0 148951 station_ip 83.122.218.25 148951 port 270 148951 unique_id port 148951 remote_ip 10.8.1.142 148952 username hashtadani4 148952 mac 148952 bytes_out 0 148952 bytes_in 0 148952 station_ip 83.122.218.25 148952 port 270 148952 unique_id port 148952 remote_ip 10.8.1.142 148956 username hashtadani4 148956 mac 148956 bytes_out 0 148956 bytes_in 0 148956 station_ip 83.122.218.25 148956 port 270 148956 unique_id port 148956 remote_ip 10.8.1.142 148958 username hashtadani4 148958 mac 148958 bytes_out 0 148958 bytes_in 0 148958 station_ip 83.122.218.25 148958 port 270 148958 unique_id port 148958 remote_ip 10.8.1.142 148959 username hashtadani4 148959 mac 148959 bytes_out 0 148959 bytes_in 0 148959 station_ip 83.122.218.25 148959 port 514 148959 unique_id port 148959 remote_ip 10.8.0.182 148961 username hashtadani4 148961 mac 148961 bytes_out 0 148961 bytes_in 0 148910 remote_ip 10.8.1.142 148912 username hashtadani4 148912 mac 148912 bytes_out 0 148912 bytes_in 0 148912 station_ip 83.122.218.25 148912 port 514 148912 unique_id port 148912 remote_ip 10.8.0.182 148913 username hashtadani4 148913 mac 148913 bytes_out 0 148913 bytes_in 0 148913 station_ip 83.122.218.25 148913 port 514 148913 unique_id port 148913 remote_ip 10.8.0.182 148917 username hashtadani4 148917 mac 148917 bytes_out 0 148917 bytes_in 0 148917 station_ip 83.122.218.25 148917 port 514 148917 unique_id port 148917 remote_ip 10.8.0.182 148918 username hashtadani4 148918 mac 148918 bytes_out 0 148918 bytes_in 0 148918 station_ip 83.122.218.25 148918 port 270 148918 unique_id port 148918 remote_ip 10.8.1.142 148919 username hashtadani4 148919 mac 148919 bytes_out 0 148919 bytes_in 0 148919 station_ip 83.122.218.25 148919 port 514 148919 unique_id port 148919 remote_ip 10.8.0.182 148925 username saeed9658 148925 mac 148925 bytes_out 0 148925 bytes_in 0 148925 station_ip 5.119.195.219 148925 port 271 148925 unique_id port 148925 remote_ip 10.8.1.210 148926 username hashtadani4 148926 mac 148926 bytes_out 0 148926 bytes_in 0 148926 station_ip 83.122.218.25 148926 port 489 148926 unique_id port 148926 remote_ip 10.8.0.182 148927 username barzegar 148927 mac 148927 bytes_out 0 148927 bytes_in 0 148927 station_ip 5.119.236.105 148927 port 514 148927 unique_id port 148927 remote_ip 10.8.0.234 148930 username hashtadani4 148930 mac 148930 bytes_out 0 148930 bytes_in 0 148930 station_ip 83.122.218.25 148930 port 489 148930 unique_id port 148930 remote_ip 10.8.0.182 148932 username hashtadani4 148932 mac 148932 bytes_out 0 148932 bytes_in 0 148932 station_ip 83.122.218.25 148932 port 270 148932 unique_id port 148932 remote_ip 10.8.1.142 148933 username hashtadani4 148933 mac 148933 bytes_out 0 148933 bytes_in 0 148933 station_ip 83.122.218.25 148933 port 489 148933 unique_id port 148933 remote_ip 10.8.0.182 148934 username hashtadani4 148934 mac 148934 bytes_out 0 148934 bytes_in 0 148934 station_ip 83.122.218.25 148934 port 489 148934 unique_id port 148934 remote_ip 10.8.0.182 148939 username hashtadani4 148939 mac 148939 bytes_out 0 148939 bytes_in 0 148939 station_ip 83.122.218.25 148939 port 270 148939 unique_id port 148939 remote_ip 10.8.1.142 148941 username hashtadani4 148941 mac 148941 bytes_out 0 148941 bytes_in 0 148941 station_ip 83.122.218.25 148941 port 270 148941 unique_id port 148941 remote_ip 10.8.1.142 148943 username hashtadani4 148943 mac 148943 bytes_out 0 148943 bytes_in 0 148943 station_ip 83.122.218.25 148943 port 270 148943 unique_id port 148943 remote_ip 10.8.1.142 148944 username saeed9658 148944 mac 148944 bytes_out 0 148944 bytes_in 0 148944 station_ip 5.119.195.219 148944 port 489 148944 unique_id port 148944 remote_ip 10.8.0.62 148948 username barzegar 148948 mac 148948 bytes_out 0 148948 bytes_in 0 148948 station_ip 5.119.236.105 148948 port 514 148948 unique_id port 148948 remote_ip 10.8.0.234 148950 username saeed9658 148950 mac 148950 bytes_out 0 148950 bytes_in 0 148950 station_ip 5.119.195.219 148950 port 271 148950 unique_id port 148950 remote_ip 10.8.1.210 148954 username hashtadani4 148954 mac 148954 bytes_out 0 148954 bytes_in 0 148954 station_ip 83.122.218.25 148954 port 489 148954 unique_id port 148954 remote_ip 10.8.0.182 148955 username hashtadani4 148921 unique_id port 148921 remote_ip 10.8.0.114 148922 username hashtadani4 148922 mac 148922 bytes_out 0 148922 bytes_in 0 148922 station_ip 83.122.218.25 148922 port 270 148922 unique_id port 148922 remote_ip 10.8.1.142 148923 username hashtadani4 148923 mac 148923 bytes_out 0 148923 bytes_in 0 148923 station_ip 83.122.218.25 148923 port 489 148923 unique_id port 148923 remote_ip 10.8.0.182 148928 username hashtadani4 148928 mac 148928 bytes_out 0 148928 bytes_in 0 148928 station_ip 83.122.218.25 148928 port 270 148928 unique_id port 148928 remote_ip 10.8.1.142 148929 username hashtadani4 148929 mac 148929 bytes_out 0 148929 bytes_in 0 148929 station_ip 83.122.218.25 148929 port 270 148929 unique_id port 148929 remote_ip 10.8.1.142 148931 username hashtadani4 148931 mac 148931 bytes_out 0 148931 bytes_in 0 148931 station_ip 83.122.218.25 148931 port 489 148931 unique_id port 148931 remote_ip 10.8.0.182 148937 username hashtadani4 148937 mac 148937 bytes_out 0 148937 bytes_in 0 148937 station_ip 83.122.218.25 148937 port 270 148937 unique_id port 148937 remote_ip 10.8.1.142 148938 username hashtadani4 148938 mac 148938 bytes_out 0 148938 bytes_in 0 148938 station_ip 83.122.218.25 148938 port 270 148938 unique_id port 148938 remote_ip 10.8.1.142 148945 username hashtadani4 148945 mac 148945 bytes_out 0 148945 bytes_in 0 148945 station_ip 83.122.218.25 148945 port 270 148945 unique_id port 148945 remote_ip 10.8.1.142 148946 username hashtadani4 148946 mac 148946 bytes_out 0 148946 bytes_in 0 148946 station_ip 83.122.218.25 148946 port 489 148946 unique_id port 148946 remote_ip 10.8.0.182 148947 username hashtadani4 148947 mac 148947 bytes_out 0 148947 bytes_in 0 148947 station_ip 83.122.218.25 148947 port 489 148947 unique_id port 148947 remote_ip 10.8.0.182 148953 username hashtadani4 148953 mac 148953 bytes_out 0 148953 bytes_in 0 148953 station_ip 83.122.218.25 148953 port 270 148953 unique_id port 148953 remote_ip 10.8.1.142 148957 username hashtadani4 148957 mac 148957 bytes_out 0 148957 bytes_in 0 148957 station_ip 83.122.218.25 148957 port 489 148957 unique_id port 148957 remote_ip 10.8.0.182 148960 username hashtadani4 148960 mac 148960 bytes_out 0 148960 bytes_in 0 148960 station_ip 83.122.218.25 148960 port 514 148960 unique_id port 148960 remote_ip 10.8.0.182 148962 username hashtadani4 148962 mac 148962 bytes_out 0 148962 bytes_in 0 148962 station_ip 83.122.218.25 148962 port 270 148962 unique_id port 148962 remote_ip 10.8.1.142 148967 username hashtadani4 148967 mac 148967 bytes_out 0 148967 bytes_in 0 148967 station_ip 83.122.218.25 148967 port 270 148967 unique_id port 148967 remote_ip 10.8.1.142 148971 username hashtadani4 148971 mac 148971 bytes_out 0 148971 bytes_in 0 148971 station_ip 83.122.218.25 148971 port 270 148971 unique_id port 148971 remote_ip 10.8.1.142 148972 username hashtadani4 148972 mac 148972 bytes_out 0 148972 bytes_in 0 148972 station_ip 83.122.218.25 148972 port 514 148972 unique_id port 148972 remote_ip 10.8.0.182 148974 username hashtadani4 148974 mac 148974 bytes_out 0 148974 bytes_in 0 148974 station_ip 83.122.218.25 148974 port 270 148974 unique_id port 148974 remote_ip 10.8.1.142 148976 username kalantary 148976 mac 148976 bytes_out 429130 148976 bytes_in 1636866 148976 station_ip 113.203.68.130 148976 port 489 148976 unique_id port 148955 mac 148955 bytes_out 0 148955 bytes_in 0 148955 station_ip 83.122.218.25 148955 port 270 148955 unique_id port 148955 remote_ip 10.8.1.142 148963 username hashtadani4 148963 mac 148963 bytes_out 0 148963 bytes_in 0 148963 station_ip 83.122.218.25 148963 port 270 148963 unique_id port 148963 remote_ip 10.8.1.142 148964 username hashtadani4 148964 mac 148964 bytes_out 0 148964 bytes_in 0 148964 station_ip 83.122.218.25 148964 port 270 148964 unique_id port 148964 remote_ip 10.8.1.142 148965 username hashtadani4 148965 mac 148965 bytes_out 0 148965 bytes_in 0 148965 station_ip 83.122.218.25 148965 port 514 148965 unique_id port 148965 remote_ip 10.8.0.182 148968 username hashtadani4 148968 mac 148968 bytes_out 0 148968 bytes_in 0 148968 station_ip 83.122.218.25 148968 port 514 148968 unique_id port 148968 remote_ip 10.8.0.182 148970 username barzegar 148970 mac 148970 bytes_out 0 148970 bytes_in 0 148970 station_ip 5.119.236.105 148970 port 514 148970 unique_id port 148970 remote_ip 10.8.0.234 148975 username hashtadani4 148975 mac 148975 bytes_out 0 148975 bytes_in 0 148975 station_ip 83.122.218.25 148975 port 514 148975 unique_id port 148975 remote_ip 10.8.0.182 148978 username hashtadani4 148978 mac 148978 bytes_out 0 148978 bytes_in 0 148978 station_ip 83.122.218.25 148978 port 270 148978 unique_id port 148978 remote_ip 10.8.1.142 148983 username hashtadani4 148983 mac 148983 bytes_out 0 148983 bytes_in 0 148983 station_ip 83.122.218.25 148983 port 489 148983 unique_id port 148983 remote_ip 10.8.0.182 148984 username hashtadani4 148984 mac 148984 bytes_out 0 148984 bytes_in 0 148984 station_ip 83.122.218.25 148984 port 270 148984 unique_id port 148984 remote_ip 10.8.1.142 148987 username hashtadani4 148987 mac 148987 bytes_out 0 148987 bytes_in 0 148987 station_ip 83.122.218.25 148987 port 489 148987 unique_id port 148987 remote_ip 10.8.0.182 148991 username saeed9658 148991 mac 148991 bytes_out 0 148991 bytes_in 0 148991 station_ip 5.119.195.219 148991 port 514 148991 unique_id port 148991 remote_ip 10.8.0.62 148996 username barzegar 148996 mac 148996 bytes_out 0 148996 bytes_in 0 148996 station_ip 5.119.236.105 148996 port 489 148996 unique_id port 148996 remote_ip 10.8.0.234 149003 username hashtadani4 149003 mac 149003 bytes_out 0 149003 bytes_in 0 149003 station_ip 83.122.218.25 149003 port 489 149003 unique_id port 149003 remote_ip 10.8.0.182 149004 username abravesh 149004 unique_id port 149004 terminate_cause Lost-Carrier 149004 bytes_out 11587303 149004 bytes_in 530400647 149004 station_ip 5.120.51.179 149004 port 15731016 149004 nas_port_type Virtual 149004 remote_ip 5.5.5.184 149007 username hashtadani4 149007 mac 149007 bytes_out 0 149007 bytes_in 0 149007 station_ip 83.122.218.25 149007 port 489 149007 unique_id port 149007 remote_ip 10.8.0.182 149008 username hashtadani4 149008 mac 149008 bytes_out 0 149008 bytes_in 0 149008 station_ip 83.122.218.25 149008 port 270 149008 unique_id port 149008 remote_ip 10.8.1.142 149011 username saeed9658 149011 mac 149011 bytes_out 0 149011 bytes_in 0 149011 station_ip 5.119.195.219 149011 port 514 149011 unique_id port 149011 remote_ip 10.8.0.62 149014 username hashtadani4 149014 mac 149014 bytes_out 0 149014 bytes_in 0 149014 station_ip 83.122.218.25 149014 port 489 149014 unique_id port 149014 remote_ip 10.8.0.182 149015 username hashtadani4 149015 mac 148961 station_ip 83.122.218.25 148961 port 270 148961 unique_id port 148961 remote_ip 10.8.1.142 148966 username saeed9658 148966 mac 148966 bytes_out 0 148966 bytes_in 0 148966 station_ip 5.119.195.219 148966 port 517 148966 unique_id port 148966 remote_ip 10.8.0.62 148969 username hashtadani4 148969 mac 148969 bytes_out 0 148969 bytes_in 0 148969 station_ip 83.122.218.25 148969 port 514 148969 unique_id port 148969 remote_ip 10.8.0.182 148973 username hashtadani4 148973 mac 148973 bytes_out 0 148973 bytes_in 0 148973 station_ip 83.122.218.25 148973 port 270 148973 unique_id port 148973 remote_ip 10.8.1.142 148979 username hashtadani4 148979 mac 148979 bytes_out 0 148979 bytes_in 0 148979 station_ip 83.122.218.25 148979 port 489 148979 unique_id port 148979 remote_ip 10.8.0.182 148980 username hashtadani4 148980 mac 148980 bytes_out 0 148980 bytes_in 0 148980 station_ip 83.122.218.25 148980 port 489 148980 unique_id port 148980 remote_ip 10.8.0.182 148981 username hashtadani4 148981 mac 148981 bytes_out 0 148981 bytes_in 0 148981 station_ip 83.122.218.25 148981 port 270 148981 unique_id port 148981 remote_ip 10.8.1.142 148985 username hashtadani4 148985 mac 148985 bytes_out 0 148985 bytes_in 0 148985 station_ip 83.122.218.25 148985 port 270 148985 unique_id port 148985 remote_ip 10.8.1.142 148989 username hashtadani4 148989 mac 148989 bytes_out 0 148989 bytes_in 0 148989 station_ip 83.122.218.25 148989 port 489 148989 unique_id port 148989 remote_ip 10.8.0.182 148992 username hashtadani4 148992 mac 148992 bytes_out 0 148992 bytes_in 0 148992 station_ip 83.122.218.25 148992 port 270 148992 unique_id port 148992 remote_ip 10.8.1.142 148997 username hashtadani4 148997 mac 148997 bytes_out 0 148997 bytes_in 0 148997 station_ip 83.122.218.25 148997 port 489 148997 unique_id port 148997 remote_ip 10.8.0.182 148999 username hashtadani4 148999 mac 148999 bytes_out 0 148999 bytes_in 0 148999 station_ip 83.122.218.25 148999 port 270 148999 unique_id port 148999 remote_ip 10.8.1.142 149000 username hashtadani4 149000 mac 149000 bytes_out 0 149000 bytes_in 0 149000 station_ip 83.122.218.25 149000 port 489 149000 unique_id port 149000 remote_ip 10.8.0.182 149001 username hashtadani4 149001 mac 149001 bytes_out 0 149001 bytes_in 0 149001 station_ip 83.122.218.25 149001 port 270 149001 unique_id port 149001 remote_ip 10.8.1.142 149005 username hashtadani4 149005 mac 149005 bytes_out 0 149005 bytes_in 0 149005 station_ip 83.122.218.25 149005 port 270 149005 unique_id port 149005 remote_ip 10.8.1.142 149010 username hashtadani4 149010 mac 149010 bytes_out 0 149010 bytes_in 0 149010 station_ip 83.122.218.25 149010 port 489 149010 unique_id port 149010 remote_ip 10.8.0.182 149012 username hashtadani4 149012 mac 149012 bytes_out 0 149012 bytes_in 0 149012 station_ip 83.122.218.25 149012 port 270 149012 unique_id port 149012 remote_ip 10.8.1.142 149013 username hashtadani4 149013 mac 149013 bytes_out 0 149013 bytes_in 0 149013 station_ip 83.122.218.25 149013 port 489 149013 unique_id port 149013 remote_ip 10.8.0.182 149016 username hashtadani4 149016 mac 149016 bytes_out 0 149016 bytes_in 0 149016 station_ip 83.122.218.25 149016 port 270 149016 unique_id port 149016 remote_ip 10.8.1.142 149017 username hashtadani4 149017 mac 149017 bytes_out 0 149017 bytes_in 0 149017 station_ip 83.122.218.25 149017 port 489 148976 remote_ip 10.8.0.98 148977 username hashtadani4 148977 mac 148977 bytes_out 0 148977 bytes_in 0 148977 station_ip 83.122.218.25 148977 port 270 148977 unique_id port 148977 remote_ip 10.8.1.142 148982 username hashtadani4 148982 mac 148982 bytes_out 0 148982 bytes_in 0 148982 station_ip 83.122.218.25 148982 port 270 148982 unique_id port 148982 remote_ip 10.8.1.142 148986 username hashtadani4 148986 mac 148986 bytes_out 0 148986 bytes_in 0 148986 station_ip 83.122.218.25 148986 port 489 148986 unique_id port 148986 remote_ip 10.8.0.182 148988 username hashtadani4 148988 mac 148988 bytes_out 0 148988 bytes_in 0 148988 station_ip 83.122.218.25 148988 port 270 148988 unique_id port 148988 remote_ip 10.8.1.142 148990 username hashtadani4 148990 mac 148990 bytes_out 0 148990 bytes_in 0 148990 station_ip 83.122.218.25 148990 port 489 148990 unique_id port 148990 remote_ip 10.8.0.182 148993 username hashtadani4 148993 mac 148993 bytes_out 0 148993 bytes_in 0 148993 station_ip 83.122.218.25 148993 port 270 148993 unique_id port 148993 remote_ip 10.8.1.142 148994 username hashtadani4 148994 mac 148994 bytes_out 0 148994 bytes_in 0 148994 station_ip 83.122.218.25 148994 port 489 148994 unique_id port 148994 remote_ip 10.8.0.182 148995 username hashtadani4 148995 mac 148995 bytes_out 0 148995 bytes_in 0 148995 station_ip 83.122.218.25 148995 port 270 148995 unique_id port 148995 remote_ip 10.8.1.142 148998 username hashtadani4 148998 mac 148998 bytes_out 0 148998 bytes_in 0 148998 station_ip 83.122.218.25 148998 port 489 148998 unique_id port 148998 remote_ip 10.8.0.182 149002 username hashtadani4 149002 mac 149002 bytes_out 0 149002 bytes_in 0 149002 station_ip 83.122.218.25 149002 port 489 149002 unique_id port 149002 remote_ip 10.8.0.182 149006 username hashtadani4 149006 mac 149006 bytes_out 0 149006 bytes_in 0 149006 station_ip 83.122.218.25 149006 port 489 149006 unique_id port 149006 remote_ip 10.8.0.182 149009 username hashtadani4 149009 mac 149009 bytes_out 0 149009 bytes_in 0 149009 station_ip 83.122.218.25 149009 port 270 149009 unique_id port 149009 remote_ip 10.8.1.142 149015 bytes_out 0 149015 bytes_in 0 149015 station_ip 83.122.218.25 149015 port 270 149015 unique_id port 149015 remote_ip 10.8.1.142 149017 unique_id port 149017 remote_ip 10.8.0.182 149018 username hashtadani4 149018 mac 149018 bytes_out 0 149018 bytes_in 0 149018 station_ip 83.122.218.25 149018 port 489 149018 unique_id port 149018 remote_ip 10.8.0.182 149019 username hashtadani4 149019 mac 149019 bytes_out 0 149019 bytes_in 0 149019 station_ip 83.122.218.25 149019 port 489 149019 unique_id port 149019 remote_ip 10.8.0.182 149020 username barzegar 149020 mac 149020 bytes_out 0 149020 bytes_in 0 149020 station_ip 5.119.236.105 149020 port 514 149020 unique_id port 149020 remote_ip 10.8.0.234 149021 username hashtadani4 149021 mac 149021 bytes_out 0 149021 bytes_in 0 149021 station_ip 83.122.218.25 149021 port 270 149021 unique_id port 149021 remote_ip 10.8.1.142 149022 username hashtadani4 149022 mac 149022 bytes_out 0 149022 bytes_in 0 149022 station_ip 83.122.218.25 149022 port 489 149022 unique_id port 149022 remote_ip 10.8.0.182 149023 username hashtadani4 149023 mac 149023 bytes_out 0 149023 bytes_in 0 149023 station_ip 83.122.218.25 149023 port 270 149023 unique_id port 149023 remote_ip 10.8.1.142 149024 username hashtadani4 149024 mac 149024 bytes_out 0 149024 bytes_in 0 149024 station_ip 83.122.218.25 149024 port 489 149024 unique_id port 149024 remote_ip 10.8.0.182 149025 username hashtadani4 149025 mac 149025 bytes_out 0 149025 bytes_in 0 149025 station_ip 83.122.218.25 149025 port 270 149025 unique_id port 149025 remote_ip 10.8.1.142 149026 username hashtadani4 149026 mac 149026 bytes_out 0 149026 bytes_in 0 149026 station_ip 83.122.218.25 149026 port 489 149026 unique_id port 149026 remote_ip 10.8.0.182 149031 username hashtadani4 149031 mac 149031 bytes_out 0 149031 bytes_in 0 149031 station_ip 83.122.218.25 149031 port 489 149031 unique_id port 149031 remote_ip 10.8.0.182 149033 username hashtadani4 149033 mac 149033 bytes_out 0 149033 bytes_in 0 149033 station_ip 83.122.218.25 149033 port 270 149033 unique_id port 149033 remote_ip 10.8.1.142 149036 username hashtadani4 149036 mac 149036 bytes_out 0 149036 bytes_in 0 149036 station_ip 83.122.218.25 149036 port 489 149036 unique_id port 149036 remote_ip 10.8.0.182 149037 username hashtadani4 149037 mac 149037 bytes_out 0 149037 bytes_in 0 149037 station_ip 83.122.218.25 149037 port 270 149037 unique_id port 149037 remote_ip 10.8.1.142 149038 username saeed9658 149038 mac 149038 bytes_out 0 149038 bytes_in 0 149038 station_ip 5.119.195.219 149038 port 489 149038 unique_id port 149038 remote_ip 10.8.0.62 149041 username barzegar 149041 mac 149041 bytes_out 0 149041 bytes_in 0 149041 station_ip 5.119.236.105 149041 port 489 149041 unique_id port 149041 remote_ip 10.8.0.234 149045 username hashtadani4 149045 mac 149045 bytes_out 0 149045 bytes_in 0 149045 station_ip 83.122.218.25 149045 port 489 149045 unique_id port 149045 remote_ip 10.8.0.182 149047 username mehdizare 149047 mac 149047 bytes_out 3386563 149047 bytes_in 34615527 149047 station_ip 5.120.140.28 149047 port 265 149047 unique_id port 149047 remote_ip 10.8.1.42 149050 username hashtadani4 149050 mac 149050 bytes_out 0 149050 bytes_in 0 149050 station_ip 83.122.218.25 149050 port 489 149050 unique_id port 149050 remote_ip 10.8.0.182 149052 username hashtadani4 149052 mac 149052 bytes_out 0 149052 bytes_in 0 149052 station_ip 83.122.218.25 149052 port 489 149052 unique_id port 149052 remote_ip 10.8.0.182 149053 username hashtadani4 149053 mac 149053 bytes_out 0 149053 bytes_in 0 149053 station_ip 83.122.218.25 149053 port 489 149053 unique_id port 149053 remote_ip 10.8.0.182 149057 username hashtadani4 149057 mac 149057 bytes_out 0 149057 bytes_in 0 149057 station_ip 83.122.218.25 149057 port 265 149057 unique_id port 149057 remote_ip 10.8.1.142 149069 username saeed9658 149069 mac 149069 bytes_out 2098 149069 bytes_in 5041 149069 station_ip 5.119.195.219 149069 port 514 149069 unique_id port 149069 remote_ip 10.8.0.62 149070 username hashtadani4 149070 mac 149070 bytes_out 345938 149070 bytes_in 3502599 149070 station_ip 83.122.218.25 149070 port 489 149070 unique_id port 149070 remote_ip 10.8.0.182 149075 username hashtadani4 149075 mac 149075 bytes_out 0 149075 bytes_in 0 149075 station_ip 83.122.218.25 149075 port 265 149075 unique_id port 149075 remote_ip 10.8.1.142 149079 username hashtadani4 149079 mac 149079 bytes_out 0 149079 bytes_in 0 149079 station_ip 83.122.218.25 149079 port 489 149079 unique_id port 149079 remote_ip 10.8.0.182 149080 username hashtadani4 149080 mac 149027 username hashtadani4 149027 mac 149027 bytes_out 0 149027 bytes_in 0 149027 station_ip 83.122.218.25 149027 port 489 149027 unique_id port 149027 remote_ip 10.8.0.182 149029 username saeed9658 149029 mac 149029 bytes_out 0 149029 bytes_in 0 149029 station_ip 5.119.195.219 149029 port 270 149029 unique_id port 149029 remote_ip 10.8.1.210 149039 username hashtadani4 149039 mac 149039 bytes_out 0 149039 bytes_in 0 149039 station_ip 83.122.218.25 149039 port 270 149039 unique_id port 149039 remote_ip 10.8.1.142 149046 username hashtadani4 149046 mac 149046 bytes_out 0 149046 bytes_in 0 149046 station_ip 83.122.218.25 149046 port 489 149046 unique_id port 149046 remote_ip 10.8.0.182 149054 username hashtadani4 149054 mac 149054 bytes_out 0 149054 bytes_in 0 149054 station_ip 83.122.218.25 149054 port 489 149054 unique_id port 149054 remote_ip 10.8.0.182 149059 username saeed9658 149059 mac 149059 bytes_out 0 149059 bytes_in 0 149059 station_ip 5.119.195.219 149059 port 489 149059 unique_id port 149059 remote_ip 10.8.0.62 149062 username hashtadani4 149062 mac 149062 bytes_out 0 149062 bytes_in 0 149062 station_ip 83.122.218.25 149062 port 489 149062 unique_id port 149062 remote_ip 10.8.0.182 149064 username hashtadani4 149064 mac 149064 bytes_out 0 149064 bytes_in 0 149064 station_ip 83.122.218.25 149064 port 265 149064 unique_id port 149064 remote_ip 10.8.1.142 149066 username barzegar 149066 mac 149066 bytes_out 0 149066 bytes_in 0 149066 station_ip 5.119.236.105 149066 port 489 149066 unique_id port 149066 remote_ip 10.8.0.234 149067 username hashtadani4 149067 mac 149067 bytes_out 0 149067 bytes_in 0 149067 station_ip 83.122.218.25 149067 port 489 149067 unique_id port 149067 remote_ip 10.8.0.182 149071 username hashtadani4 149071 mac 149071 bytes_out 0 149071 bytes_in 0 149071 station_ip 83.122.218.25 149071 port 265 149071 unique_id port 149071 remote_ip 10.8.1.142 149076 username hashtadani4 149076 mac 149076 bytes_out 0 149076 bytes_in 0 149076 station_ip 83.122.218.25 149076 port 489 149076 unique_id port 149076 remote_ip 10.8.0.182 149081 username hashtadani4 149081 mac 149081 bytes_out 0 149081 bytes_in 0 149081 station_ip 83.122.218.25 149081 port 489 149081 unique_id port 149081 remote_ip 10.8.0.182 149084 username barzegar 149084 mac 149084 bytes_out 0 149084 bytes_in 0 149084 station_ip 5.119.236.105 149084 port 514 149084 unique_id port 149084 remote_ip 10.8.0.234 149086 username hashtadani4 149086 mac 149086 bytes_out 8451 149086 bytes_in 14844 149086 station_ip 83.122.218.25 149086 port 265 149086 unique_id port 149086 remote_ip 10.8.1.142 149090 username hashtadani4 149090 mac 149090 bytes_out 0 149090 bytes_in 0 149090 station_ip 83.122.218.25 149090 port 265 149090 unique_id port 149090 remote_ip 10.8.1.142 149094 username hashtadani4 149094 mac 149094 bytes_out 0 149094 bytes_in 0 149094 station_ip 83.122.218.25 149094 port 489 149094 unique_id port 149094 remote_ip 10.8.0.182 149097 username hashtadani4 149097 mac 149097 bytes_out 0 149097 bytes_in 0 149097 station_ip 83.122.218.25 149097 port 265 149097 unique_id port 149097 remote_ip 10.8.1.142 149098 username barzegar 149098 mac 149098 bytes_out 0 149098 bytes_in 0 149098 station_ip 5.119.236.105 149098 port 514 149098 unique_id port 149098 remote_ip 10.8.0.234 149099 username mehdizare 149099 mac 149028 username hashtadani4 149028 mac 149028 bytes_out 0 149028 bytes_in 0 149028 station_ip 83.122.218.25 149028 port 489 149028 unique_id port 149028 remote_ip 10.8.0.182 149030 username hashtadani4 149030 mac 149030 bytes_out 0 149030 bytes_in 0 149030 station_ip 83.122.218.25 149030 port 489 149030 unique_id port 149030 remote_ip 10.8.0.182 149032 username hashtadani4 149032 mac 149032 bytes_out 0 149032 bytes_in 0 149032 station_ip 83.122.218.25 149032 port 270 149032 unique_id port 149032 remote_ip 10.8.1.142 149034 username saeed9658 149034 mac 149034 bytes_out 0 149034 bytes_in 0 149034 station_ip 5.119.195.219 149034 port 489 149034 unique_id port 149034 remote_ip 10.8.0.62 149035 username hashtadani4 149035 mac 149035 bytes_out 0 149035 bytes_in 0 149035 station_ip 83.122.218.25 149035 port 270 149035 unique_id port 149035 remote_ip 10.8.1.142 149040 username hashtadani4 149040 mac 149040 bytes_out 0 149040 bytes_in 0 149040 station_ip 83.122.218.25 149040 port 489 149040 unique_id port 149040 remote_ip 10.8.0.182 149042 username hashtadani4 149042 mac 149042 bytes_out 0 149042 bytes_in 0 149042 station_ip 83.122.218.25 149042 port 270 149042 unique_id port 149042 remote_ip 10.8.1.142 149043 username hashtadani4 149043 mac 149043 bytes_out 0 149043 bytes_in 0 149043 station_ip 83.122.218.25 149043 port 489 149043 unique_id port 149043 remote_ip 10.8.0.182 149044 username hashtadani4 149044 mac 149044 bytes_out 0 149044 bytes_in 0 149044 station_ip 83.122.218.25 149044 port 489 149044 unique_id port 149044 remote_ip 10.8.0.182 149048 username hashtadani4 149048 mac 149048 bytes_out 0 149048 bytes_in 0 149048 station_ip 83.122.218.25 149048 port 265 149048 unique_id port 149048 remote_ip 10.8.1.142 149049 username hashtadani4 149049 mac 149049 bytes_out 0 149049 bytes_in 0 149049 station_ip 83.122.218.25 149049 port 489 149049 unique_id port 149049 remote_ip 10.8.0.182 149051 username hashtadani4 149051 mac 149051 bytes_out 0 149051 bytes_in 0 149051 station_ip 83.122.218.25 149051 port 265 149051 unique_id port 149051 remote_ip 10.8.1.142 149055 username hashtadani4 149055 mac 149055 bytes_out 0 149055 bytes_in 0 149055 station_ip 83.122.218.25 149055 port 489 149055 unique_id port 149055 remote_ip 10.8.0.182 149056 username hashtadani4 149056 mac 149056 bytes_out 0 149056 bytes_in 0 149056 station_ip 83.122.218.25 149056 port 489 149056 unique_id port 149056 remote_ip 10.8.0.182 149058 username hashtadani4 149058 mac 149058 bytes_out 0 149058 bytes_in 0 149058 station_ip 83.122.218.25 149058 port 514 149058 unique_id port 149058 remote_ip 10.8.0.182 149060 username hashtadani4 149060 mac 149060 bytes_out 0 149060 bytes_in 0 149060 station_ip 83.122.218.25 149060 port 489 149060 unique_id port 149060 remote_ip 10.8.0.182 149061 username hashtadani4 149061 mac 149061 bytes_out 0 149061 bytes_in 0 149061 station_ip 83.122.218.25 149061 port 265 149061 unique_id port 149061 remote_ip 10.8.1.142 149063 username hashtadani4 149063 mac 149063 bytes_out 0 149063 bytes_in 0 149063 station_ip 83.122.218.25 149063 port 489 149063 unique_id port 149063 remote_ip 10.8.0.182 149065 username hashtadani4 149065 mac 149065 bytes_out 0 149065 bytes_in 0 149065 station_ip 83.122.218.25 149065 port 265 149065 unique_id port 149065 remote_ip 10.8.1.142 149068 username hashtadani4 149068 mac 149068 bytes_out 0 149068 bytes_in 0 149068 station_ip 83.122.218.25 149068 port 265 149068 unique_id port 149068 remote_ip 10.8.1.142 149072 username hashtadani4 149072 mac 149072 bytes_out 0 149072 bytes_in 0 149072 station_ip 83.122.218.25 149072 port 489 149072 unique_id port 149072 remote_ip 10.8.0.182 149073 username hashtadani4 149073 mac 149073 bytes_out 0 149073 bytes_in 0 149073 station_ip 83.122.218.25 149073 port 265 149073 unique_id port 149073 remote_ip 10.8.1.142 149074 username hashtadani4 149074 mac 149074 bytes_out 0 149074 bytes_in 0 149074 station_ip 83.122.218.25 149074 port 489 149074 unique_id port 149074 remote_ip 10.8.0.182 149077 username hashtadani4 149077 mac 149077 bytes_out 0 149077 bytes_in 0 149077 station_ip 83.122.218.25 149077 port 265 149077 unique_id port 149077 remote_ip 10.8.1.142 149078 username hashtadani4 149078 mac 149078 bytes_out 0 149078 bytes_in 0 149078 station_ip 83.122.218.25 149078 port 489 149078 unique_id port 149078 remote_ip 10.8.0.182 149082 username hashtadani4 149082 mac 149082 bytes_out 0 149082 bytes_in 0 149082 station_ip 83.122.218.25 149082 port 265 149082 unique_id port 149082 remote_ip 10.8.1.142 149083 username hashtadani4 149083 mac 149083 bytes_out 0 149083 bytes_in 0 149083 station_ip 83.122.218.25 149083 port 514 149083 unique_id port 149083 remote_ip 10.8.0.182 149085 username kalantary 149085 mac 149085 bytes_out 0 149085 bytes_in 0 149085 station_ip 113.203.68.130 149085 port 489 149085 unique_id port 149085 remote_ip 10.8.0.98 149087 username hashtadani4 149087 mac 149087 bytes_out 0 149087 bytes_in 0 149087 station_ip 83.122.218.25 149087 port 489 149087 unique_id port 149087 remote_ip 10.8.0.182 149091 username hashtadani4 149091 mac 149091 bytes_out 0 149091 bytes_in 0 149091 station_ip 83.122.218.25 149091 port 489 149091 unique_id port 149091 remote_ip 10.8.0.182 149095 username hashtadani4 149095 mac 149095 bytes_out 0 149095 bytes_in 0 149095 station_ip 83.122.218.25 149095 port 489 149095 unique_id port 149095 remote_ip 10.8.0.182 149100 username barzegar 149100 mac 149100 bytes_out 0 149100 bytes_in 0 149100 station_ip 5.119.236.105 149100 port 518 149100 unique_id port 149100 remote_ip 10.8.0.234 149106 username hashtadani4 149106 mac 149106 bytes_out 0 149106 bytes_in 0 149106 station_ip 83.122.218.25 149106 port 489 149106 unique_id port 149108 username sedighe 149108 mac 149108 bytes_out 0 149108 bytes_in 0 149108 station_ip 113.203.70.111 149108 port 518 149108 unique_id port 149108 remote_ip 10.8.0.146 149112 username morteza 149112 mac 149112 bytes_out 0 149112 bytes_in 0 149112 station_ip 113.203.91.242 149112 port 270 149112 unique_id port 149112 remote_ip 10.8.1.62 149116 username morteza 149116 mac 149116 bytes_out 0 149116 bytes_in 0 149116 station_ip 113.203.91.242 149116 port 489 149116 unique_id port 149116 remote_ip 10.8.0.46 149117 username barzegar 149117 mac 149117 bytes_out 0 149117 bytes_in 0 149117 station_ip 5.119.236.105 149117 port 517 149117 unique_id port 149117 remote_ip 10.8.0.234 149121 username irannezhad 149121 kill_reason Another user logged on this global unique id 149121 mac 149121 bytes_out 0 149121 bytes_in 0 149121 station_ip 83.123.27.112 149121 port 518 149121 unique_id port 149121 remote_ip 10.8.0.210 149123 username irannezhad 149123 mac 149123 bytes_out 0 149123 bytes_in 0 149080 bytes_out 0 149080 bytes_in 0 149080 station_ip 83.122.218.25 149080 port 489 149080 unique_id port 149080 remote_ip 10.8.0.182 149088 username hashtadani4 149088 mac 149088 bytes_out 0 149088 bytes_in 0 149088 station_ip 83.122.218.25 149088 port 265 149088 unique_id port 149088 remote_ip 10.8.1.142 149089 username hashtadani4 149089 mac 149089 bytes_out 0 149089 bytes_in 0 149089 station_ip 83.122.218.25 149089 port 489 149089 unique_id port 149089 remote_ip 10.8.0.182 149092 username hashtadani4 149092 mac 149092 bytes_out 0 149092 bytes_in 0 149092 station_ip 83.122.218.25 149092 port 489 149092 unique_id port 149092 remote_ip 10.8.0.182 149093 username hashtadani4 149093 mac 149093 bytes_out 0 149093 bytes_in 0 149093 station_ip 83.122.218.25 149093 port 489 149093 unique_id port 149093 remote_ip 10.8.0.182 149096 username hashtadani4 149096 mac 149096 bytes_out 0 149096 bytes_in 0 149096 station_ip 83.122.218.25 149096 port 489 149096 unique_id port 149096 remote_ip 10.8.0.182 149101 username morteza 149101 mac 149101 bytes_out 0 149101 bytes_in 0 149101 station_ip 113.203.91.242 149101 port 517 149101 unique_id port 149101 remote_ip 10.8.0.46 149103 username morteza 149103 mac 149103 bytes_out 0 149103 bytes_in 0 149103 station_ip 113.203.91.242 149103 port 270 149103 unique_id port 149103 remote_ip 10.8.1.62 149104 username hashtadani4 149104 kill_reason Another user logged on this global unique id 149104 mac 149104 bytes_out 0 149104 bytes_in 0 149104 station_ip 83.122.218.25 149104 port 489 149104 unique_id port 149104 remote_ip 10.8.0.182 149113 username morteza 149113 mac 149113 bytes_out 0 149113 bytes_in 0 149113 station_ip 113.203.91.242 149113 port 270 149113 unique_id port 149113 remote_ip 10.8.1.62 149118 username morteza 149118 mac 149118 bytes_out 2058 149118 bytes_in 4462 149118 station_ip 113.203.91.242 149118 port 489 149118 unique_id port 149118 remote_ip 10.8.0.46 149119 username sedighe 149119 mac 149119 bytes_out 0 149119 bytes_in 0 149119 station_ip 113.203.70.111 149119 port 518 149119 unique_id port 149119 remote_ip 10.8.0.146 149125 username barzegar 149125 mac 149125 bytes_out 0 149125 bytes_in 0 149125 station_ip 5.119.236.105 149125 port 518 149125 unique_id port 149125 remote_ip 10.8.0.234 149128 username mehdizare 149128 mac 149128 bytes_out 0 149128 bytes_in 0 149128 station_ip 5.120.140.28 149128 port 265 149128 unique_id port 149128 remote_ip 10.8.1.42 149129 username saeed9658 149129 mac 149129 bytes_out 2616668 149129 bytes_in 22569387 149129 station_ip 5.119.195.219 149129 port 517 149129 unique_id port 149129 remote_ip 10.8.0.62 149131 username barzegar 149131 mac 149131 bytes_out 0 149131 bytes_in 0 149131 station_ip 5.119.236.105 149131 port 517 149131 unique_id port 149131 remote_ip 10.8.0.234 149134 username sedighe 149134 mac 149134 bytes_out 42661 149134 bytes_in 74560 149134 station_ip 83.122.93.78 149134 port 517 149134 unique_id port 149134 remote_ip 10.8.0.146 149137 username sedighe 149137 mac 149137 bytes_out 0 149137 bytes_in 0 149137 station_ip 83.122.93.78 149137 port 518 149137 unique_id port 149137 remote_ip 10.8.0.146 149139 username sabaghnezhad 149139 mac 149139 bytes_out 0 149139 bytes_in 0 149139 station_ip 113.203.88.140 149139 port 513 149139 unique_id port 149139 remote_ip 10.8.0.186 149140 username barzegar 149140 mac 149140 bytes_out 0 149099 bytes_out 0 149099 bytes_in 0 149099 station_ip 5.120.140.28 149099 port 270 149099 unique_id port 149099 remote_ip 10.8.1.42 149102 username barzegar 149102 mac 149102 bytes_out 0 149102 bytes_in 0 149102 station_ip 5.119.236.105 149102 port 518 149102 unique_id port 149102 remote_ip 10.8.0.234 149105 username sedighe 149105 mac 149105 bytes_out 101483 149105 bytes_in 118224 149105 station_ip 113.203.70.111 149105 port 517 149105 unique_id port 149105 remote_ip 10.8.0.146 149107 username mehdizare 149107 mac 149107 bytes_out 0 149107 bytes_in 0 149107 station_ip 5.120.140.28 149107 port 265 149107 unique_id port 149107 remote_ip 10.8.1.42 149109 username morteza 149109 mac 149109 bytes_out 0 149109 bytes_in 0 149109 station_ip 113.203.91.242 149109 port 270 149109 unique_id port 149109 remote_ip 10.8.1.62 149110 username morteza 149110 mac 149110 bytes_out 0 149110 bytes_in 0 149110 station_ip 113.203.91.242 149110 port 270 149110 unique_id port 149110 remote_ip 10.8.1.62 149111 username sedighe 149111 mac 149111 bytes_out 29454 149111 bytes_in 45400 149111 station_ip 113.203.70.111 149111 port 489 149111 unique_id port 149111 remote_ip 10.8.0.146 149114 username morteza 149114 mac 149114 bytes_out 0 149114 bytes_in 0 149114 station_ip 113.203.91.242 149114 port 270 149114 unique_id port 149114 remote_ip 10.8.1.62 149115 username morteza 149115 mac 149115 bytes_out 0 149115 bytes_in 0 149115 station_ip 113.203.91.242 149115 port 489 149115 unique_id port 149115 remote_ip 10.8.0.46 149120 username barzegar 149120 mac 149120 bytes_out 0 149120 bytes_in 0 149120 station_ip 5.119.236.105 149120 port 521 149120 unique_id port 149120 remote_ip 10.8.0.234 149122 username irannezhad 149122 kill_reason Another user logged on this global unique id 149122 mac 149122 bytes_out 0 149122 bytes_in 0 149122 station_ip 83.123.27.112 149122 port 518 149122 unique_id port 149124 username mehdizare 149124 mac 149124 bytes_out 0 149124 bytes_in 0 149124 station_ip 5.120.140.28 149124 port 265 149124 unique_id port 149124 remote_ip 10.8.1.42 149130 username mehdizare 149130 mac 149130 bytes_out 4649 149130 bytes_in 8095 149130 station_ip 5.120.140.28 149130 port 489 149130 unique_id port 149130 remote_ip 10.8.0.90 149132 username sedighe 149132 mac 149132 bytes_out 160050 149132 bytes_in 2311073 149132 station_ip 83.122.93.78 149132 port 521 149132 unique_id port 149132 remote_ip 10.8.0.146 149141 username barzegar 149141 mac 149141 bytes_out 0 149141 bytes_in 0 149141 station_ip 5.119.236.105 149141 port 489 149141 unique_id port 149141 remote_ip 10.8.0.234 149144 username sabaghnezhad 149144 mac 149144 bytes_out 0 149144 bytes_in 0 149144 station_ip 113.203.88.140 149144 port 518 149144 unique_id port 149144 remote_ip 10.8.0.186 149145 username sedighe 149145 mac 149145 bytes_out 0 149145 bytes_in 0 149145 station_ip 37.129.160.248 149145 port 517 149145 unique_id port 149145 remote_ip 10.8.0.146 149146 username sabaghnezhad 149146 mac 149146 bytes_out 0 149146 bytes_in 0 149146 station_ip 113.203.88.140 149146 port 491 149146 unique_id port 149146 remote_ip 10.8.0.186 149147 username barzegar 149147 mac 149147 bytes_out 0 149147 bytes_in 0 149147 station_ip 5.119.236.105 149147 port 491 149147 unique_id port 149147 remote_ip 10.8.0.234 149149 username hassan 149149 kill_reason Maximum check online fails reached 149149 mac 149149 bytes_out 0 149123 station_ip 83.123.27.112 149123 port 518 149123 unique_id port 149126 username mehdizare 149126 mac 149126 bytes_out 0 149126 bytes_in 0 149126 station_ip 5.120.140.28 149126 port 265 149126 unique_id port 149126 remote_ip 10.8.1.42 149127 username sedighe 149127 mac 149127 bytes_out 26273 149127 bytes_in 36845 149127 station_ip 83.122.93.78 149127 port 489 149127 unique_id port 149127 remote_ip 10.8.0.146 149133 username mohammadjavad 149133 mac 149133 bytes_out 818207 149133 bytes_in 9172621 149133 station_ip 83.122.112.158 149133 port 518 149133 unique_id port 149133 remote_ip 10.8.0.142 149135 username mehdizare 149135 mac 149135 bytes_out 30007 149135 bytes_in 32999 149135 station_ip 5.119.250.91 149135 port 489 149135 unique_id port 149135 remote_ip 10.8.0.90 149136 username mehdizare 149136 mac 149136 bytes_out 0 149136 bytes_in 0 149136 station_ip 5.119.250.91 149136 port 517 149136 unique_id port 149136 remote_ip 10.8.0.90 149138 username fezealinaghi 149138 mac 149138 bytes_out 385321 149138 bytes_in 1192183 149138 station_ip 37.129.159.236 149138 port 489 149138 unique_id port 149138 remote_ip 10.8.0.78 149142 username nilufarrajaei 149142 mac 149142 bytes_out 0 149142 bytes_in 0 149142 station_ip 37.129.11.181 149142 port 491 149142 unique_id port 149142 remote_ip 10.8.0.206 149143 username mehdizare 149143 mac 149143 bytes_out 0 149143 bytes_in 0 149143 station_ip 5.112.135.146 149143 port 491 149143 unique_id port 149143 remote_ip 10.8.0.90 149148 username mehdizare 149148 mac 149148 bytes_out 0 149148 bytes_in 0 149148 station_ip 5.120.147.203 149148 port 265 149148 unique_id port 149148 remote_ip 10.8.1.42 149150 username mehdizare 149150 mac 149150 bytes_out 0 149150 bytes_in 0 149150 station_ip 5.120.147.203 149150 port 518 149150 unique_id port 149150 remote_ip 10.8.0.90 149153 username hassan 149153 kill_reason Another user logged on this global unique id 149153 mac 149153 bytes_out 0 149153 bytes_in 0 149153 station_ip 37.27.25.218 149153 port 265 149153 unique_id port 149153 remote_ip 10.8.1.138 149157 username sedighe 149157 mac 149157 bytes_out 0 149157 bytes_in 0 149157 station_ip 37.129.160.248 149157 port 491 149157 unique_id port 149157 remote_ip 10.8.0.146 149159 username moradi 149159 kill_reason Another user logged on this global unique id 149159 mac 149159 bytes_out 0 149159 bytes_in 0 149159 station_ip 83.122.152.18 149159 port 270 149159 unique_id port 149159 remote_ip 10.8.1.202 149163 username barzegar 149163 mac 149163 bytes_out 0 149163 bytes_in 0 149163 station_ip 5.119.236.105 149163 port 491 149163 unique_id port 149163 remote_ip 10.8.0.234 149164 username jafari 149164 kill_reason Another user logged on this global unique id 149164 mac 149164 bytes_out 0 149164 bytes_in 0 149164 station_ip 5.134.189.200 149164 port 521 149164 unique_id port 149164 remote_ip 10.8.0.242 149165 username hassan 149165 kill_reason Another user logged on this global unique id 149165 mac 149165 bytes_out 0 149165 bytes_in 0 149165 station_ip 37.27.25.218 149165 port 265 149165 unique_id port 149168 username moradi 149168 mac 149168 bytes_out 0 149168 bytes_in 0 149168 station_ip 83.122.152.18 149168 port 270 149168 unique_id port 149173 username barzegar 149173 mac 149173 bytes_out 0 149173 bytes_in 0 149173 station_ip 5.119.236.105 149173 port 270 149173 unique_id port 149173 remote_ip 10.8.1.174 149174 username hamidsalari 149174 mac 149174 bytes_out 0 149140 bytes_in 0 149140 station_ip 5.119.236.105 149140 port 489 149140 unique_id port 149140 remote_ip 10.8.0.234 149152 username barzegar 149152 mac 149152 bytes_out 0 149152 bytes_in 0 149152 station_ip 5.119.236.105 149152 port 270 149152 unique_id port 149152 remote_ip 10.8.1.174 149156 username mohammadjavad 149156 mac 149156 bytes_out 0 149156 bytes_in 0 149156 station_ip 83.122.171.58 149156 port 521 149156 unique_id port 149156 remote_ip 10.8.0.142 149160 username hassan 149160 kill_reason Another user logged on this global unique id 149160 mac 149160 bytes_out 0 149160 bytes_in 0 149160 station_ip 37.27.25.218 149160 port 265 149160 unique_id port 149162 username khademi 149162 kill_reason Another user logged on this global unique id 149162 mac 149162 bytes_out 0 149162 bytes_in 0 149162 station_ip 83.123.168.1 149162 port 523 149162 unique_id port 149166 username milan 149166 kill_reason Another user logged on this global unique id 149166 mac 149166 bytes_out 0 149166 bytes_in 0 149166 station_ip 5.120.31.183 149166 port 518 149166 unique_id port 149167 username jafari 149167 mac 149167 bytes_out 0 149167 bytes_in 0 149167 station_ip 5.134.189.200 149167 port 521 149167 unique_id port 149169 username mehdizare 149169 mac 149169 bytes_out 17428 149169 bytes_in 15545 149169 station_ip 5.120.156.215 149169 port 272 149169 unique_id port 149169 remote_ip 10.8.1.42 149170 username mehdizare 149170 mac 149170 bytes_out 0 149170 bytes_in 0 149170 station_ip 5.120.156.215 149170 port 491 149170 unique_id port 149170 remote_ip 10.8.0.90 149171 username hassan 149171 kill_reason Another user logged on this global unique id 149171 mac 149171 bytes_out 0 149171 bytes_in 0 149171 station_ip 37.27.25.218 149171 port 265 149171 unique_id port 149172 username sekonji3 149172 mac 149172 bytes_out 0 149172 bytes_in 0 149172 station_ip 83.122.182.73 149172 port 491 149172 unique_id port 149172 remote_ip 10.8.0.6 149177 username hassan 149177 kill_reason Another user logged on this global unique id 149177 mac 149177 bytes_out 0 149177 bytes_in 0 149177 station_ip 37.27.25.218 149177 port 265 149177 unique_id port 149179 username arash 149179 mac 149179 bytes_out 0 149179 bytes_in 0 149179 station_ip 5.134.149.235 149179 port 514 149179 unique_id port 149179 remote_ip 10.8.0.114 149182 username barzegar 149182 mac 149182 bytes_out 0 149182 bytes_in 0 149182 station_ip 5.119.236.105 149182 port 265 149182 unique_id port 149182 remote_ip 10.8.1.174 149186 username sabaghnezhad 149186 kill_reason Another user logged on this global unique id 149186 mac 149186 bytes_out 0 149186 bytes_in 0 149186 station_ip 113.203.88.140 149186 port 513 149186 unique_id port 149186 remote_ip 10.8.0.186 149188 username morteza 149188 mac 149188 bytes_out 19251 149188 bytes_in 38837 149188 station_ip 113.203.117.118 149188 port 524 149188 unique_id port 149188 remote_ip 10.8.0.46 149189 username morteza 149189 mac 149189 bytes_out 0 149189 bytes_in 0 149189 station_ip 113.203.117.118 149189 port 270 149189 unique_id port 149189 remote_ip 10.8.1.62 149191 username mohammadjavad 149191 mac 149191 bytes_out 0 149191 bytes_in 0 149191 station_ip 83.122.109.133 149191 port 489 149191 unique_id port 149191 remote_ip 10.8.0.142 149192 username barzegar 149192 kill_reason Another user logged on this global unique id 149192 mac 149192 bytes_out 0 149192 bytes_in 0 149192 station_ip 5.119.236.105 149192 port 265 149192 unique_id port 149192 remote_ip 10.8.1.174 149199 username hashtadani4 149149 bytes_in 0 149149 station_ip 5.120.97.42 149149 port 517 149149 unique_id port 149151 username abravesh 149151 unique_id port 149151 terminate_cause Lost-Carrier 149151 bytes_out 1219812 149151 bytes_in 41295317 149151 station_ip 5.119.118.204 149151 port 15731023 149151 nas_port_type Virtual 149151 remote_ip 5.5.5.191 149154 username milan 149154 kill_reason Another user logged on this global unique id 149154 mac 149154 bytes_out 0 149154 bytes_in 0 149154 station_ip 5.120.31.183 149154 port 518 149154 unique_id port 149154 remote_ip 10.8.0.218 149155 username barzegar 149155 mac 149155 bytes_out 0 149155 bytes_in 0 149155 station_ip 5.119.236.105 149155 port 521 149155 unique_id port 149155 remote_ip 10.8.0.234 149158 username sedighe 149158 mac 149158 bytes_out 33252 149158 bytes_in 40088 149158 station_ip 37.129.160.248 149158 port 522 149158 unique_id port 149158 remote_ip 10.8.0.146 149161 username milan 149161 kill_reason Another user logged on this global unique id 149161 mac 149161 bytes_out 0 149161 bytes_in 0 149161 station_ip 5.120.31.183 149161 port 518 149161 unique_id port 149175 username khademi 149175 mac 149175 bytes_out 0 149175 bytes_in 0 149175 station_ip 83.123.168.1 149175 port 523 149175 unique_id port 149176 username rahim 149176 mac 149176 bytes_out 0 149176 bytes_in 0 149176 station_ip 5.120.153.199 149176 port 522 149176 unique_id port 149176 remote_ip 10.8.0.50 149183 username forozandeh1 149183 mac 149183 bytes_out 772969 149183 bytes_in 6069371 149183 station_ip 83.123.200.248 149183 port 514 149183 unique_id port 149183 remote_ip 10.8.0.130 149184 username nilufarrajaei 149184 mac 149184 bytes_out 887338 149184 bytes_in 5775951 149184 station_ip 37.129.11.181 149184 port 489 149184 unique_id port 149184 remote_ip 10.8.0.206 149185 username mohammadjavad 149185 mac 149185 bytes_out 308804 149185 bytes_in 6605277 149185 station_ip 83.122.109.133 149185 port 514 149185 unique_id port 149185 remote_ip 10.8.0.142 149190 username morteza 149190 mac 149190 bytes_out 2172 149190 bytes_in 4723 149190 station_ip 113.203.117.118 149190 port 270 149190 unique_id port 149190 remote_ip 10.8.1.62 149195 username barzegar 149195 kill_reason Another user logged on this global unique id 149195 mac 149195 bytes_out 0 149195 bytes_in 0 149195 station_ip 5.119.236.105 149195 port 265 149195 unique_id port 149196 username godarzi 149196 kill_reason Another user logged on this global unique id 149196 mac 149196 bytes_out 0 149196 bytes_in 0 149196 station_ip 5.202.5.1 149196 port 489 149196 unique_id port 149196 remote_ip 10.8.0.174 149200 username hashtadani4 149200 mac 149200 bytes_out 0 149200 bytes_in 0 149200 station_ip 37.129.210.144 149200 port 491 149200 unique_id port 149200 remote_ip 10.8.0.182 149205 username hashtadani4 149205 mac 149205 bytes_out 0 149205 bytes_in 0 149205 station_ip 37.129.210.144 149205 port 272 149205 unique_id port 149205 remote_ip 10.8.1.142 149209 username hashtadani4 149209 mac 149209 bytes_out 0 149209 bytes_in 0 149209 station_ip 37.129.210.144 149209 port 272 149209 unique_id port 149209 remote_ip 10.8.1.142 149212 username hashtadani4 149212 mac 149212 bytes_out 0 149212 bytes_in 0 149212 station_ip 37.129.210.144 149212 port 272 149212 unique_id port 149212 remote_ip 10.8.1.142 149215 username hashtadani4 149215 mac 149215 bytes_out 0 149215 bytes_in 0 149215 station_ip 37.129.210.144 149215 port 272 149215 unique_id port 149215 remote_ip 10.8.1.142 149174 bytes_in 0 149174 station_ip 5.120.7.122 149174 port 519 149174 unique_id port 149178 username kalantary 149178 mac 149178 bytes_out 0 149178 bytes_in 0 149178 station_ip 113.203.63.130 149178 port 523 149178 unique_id port 149178 remote_ip 10.8.0.98 149180 username barzegar 149180 mac 149180 bytes_out 0 149180 bytes_in 0 149180 station_ip 5.119.236.105 149180 port 524 149180 unique_id port 149180 remote_ip 10.8.0.234 149181 username hassan 149181 mac 149181 bytes_out 0 149181 bytes_in 0 149181 station_ip 37.27.25.218 149181 port 265 149181 unique_id port 149187 username forozandeh1 149187 mac 149187 bytes_out 0 149187 bytes_in 0 149187 station_ip 37.129.221.171 149187 port 514 149187 unique_id port 149187 remote_ip 10.8.0.130 149193 username mahdiyehalizadeh 149193 mac 149193 bytes_out 3498456 149193 bytes_in 49979921 149193 station_ip 5.119.49.234 149193 port 491 149193 unique_id port 149193 remote_ip 10.8.0.82 149194 username malekpoir 149194 kill_reason Another user logged on this global unique id 149194 mac 149194 bytes_out 0 149194 bytes_in 0 149194 station_ip 5.120.180.209 149194 port 524 149194 unique_id port 149194 remote_ip 10.8.0.58 149197 username hashtadani4 149197 mac 149197 bytes_out 0 149197 bytes_in 0 149197 station_ip 37.129.210.144 149197 port 491 149197 unique_id port 149197 remote_ip 10.8.0.182 149198 username hashtadani4 149198 mac 149198 bytes_out 0 149198 bytes_in 0 149198 station_ip 37.129.210.144 149198 port 272 149198 unique_id port 149198 remote_ip 10.8.1.142 149201 username hashtadani4 149201 mac 149201 bytes_out 0 149201 bytes_in 0 149201 station_ip 37.129.210.144 149201 port 491 149201 unique_id port 149201 remote_ip 10.8.0.182 149202 username hashtadani4 149202 mac 149202 bytes_out 0 149202 bytes_in 0 149202 station_ip 37.129.210.144 149202 port 491 149202 unique_id port 149202 remote_ip 10.8.0.182 149206 username hashtadani4 149206 mac 149206 bytes_out 0 149206 bytes_in 0 149206 station_ip 37.129.210.144 149206 port 491 149206 unique_id port 149206 remote_ip 10.8.0.182 149210 username hashtadani4 149210 mac 149210 bytes_out 0 149210 bytes_in 0 149210 station_ip 37.129.210.144 149210 port 491 149210 unique_id port 149210 remote_ip 10.8.0.182 149211 username hashtadani4 149211 mac 149211 bytes_out 0 149211 bytes_in 0 149211 station_ip 37.129.210.144 149211 port 525 149211 unique_id port 149211 remote_ip 10.8.0.182 149213 username hashtadani4 149213 mac 149213 bytes_out 0 149213 bytes_in 0 149213 station_ip 37.129.210.144 149213 port 525 149213 unique_id port 149213 remote_ip 10.8.0.182 149217 username hashtadani4 149217 mac 149217 bytes_out 0 149217 bytes_in 0 149217 station_ip 37.129.210.144 149217 port 272 149217 unique_id port 149217 remote_ip 10.8.1.142 149225 username hashtadani4 149225 mac 149225 bytes_out 0 149225 bytes_in 0 149225 station_ip 37.129.210.144 149225 port 525 149225 unique_id port 149225 remote_ip 10.8.0.182 149226 username hashtadani4 149226 mac 149226 bytes_out 0 149226 bytes_in 0 149226 station_ip 37.129.210.144 149226 port 272 149226 unique_id port 149226 remote_ip 10.8.1.142 149229 username hashtadani4 149229 mac 149229 bytes_out 0 149229 bytes_in 0 149229 station_ip 37.129.210.144 149229 port 272 149229 unique_id port 149229 remote_ip 10.8.1.142 149235 username hashtadani4 149235 mac 149235 bytes_out 0 149235 bytes_in 0 149235 station_ip 37.129.210.144 149235 port 525 149199 mac 149199 bytes_out 0 149199 bytes_in 0 149199 station_ip 37.129.210.144 149199 port 491 149199 unique_id port 149199 remote_ip 10.8.0.182 149203 username hashtadani4 149203 mac 149203 bytes_out 0 149203 bytes_in 0 149203 station_ip 37.129.210.144 149203 port 272 149203 unique_id port 149203 remote_ip 10.8.1.142 149204 username hashtadani4 149204 mac 149204 bytes_out 0 149204 bytes_in 0 149204 station_ip 37.129.210.144 149204 port 491 149204 unique_id port 149204 remote_ip 10.8.0.182 149207 username hashtadani4 149207 mac 149207 bytes_out 0 149207 bytes_in 0 149207 station_ip 37.129.210.144 149207 port 272 149207 unique_id port 149207 remote_ip 10.8.1.142 149208 username hashtadani4 149208 mac 149208 bytes_out 0 149208 bytes_in 0 149208 station_ip 37.129.210.144 149208 port 491 149208 unique_id port 149208 remote_ip 10.8.0.182 149214 username hashtadani4 149214 mac 149214 bytes_out 0 149214 bytes_in 0 149214 station_ip 37.129.210.144 149214 port 525 149214 unique_id port 149214 remote_ip 10.8.0.182 149218 username hashtadani4 149218 mac 149218 bytes_out 0 149218 bytes_in 0 149218 station_ip 37.129.210.144 149218 port 525 149218 unique_id port 149218 remote_ip 10.8.0.182 149220 username barzegar 149220 kill_reason Another user logged on this global unique id 149220 mac 149220 bytes_out 0 149220 bytes_in 0 149220 station_ip 5.119.236.105 149220 port 265 149220 unique_id port 149221 username hashtadani4 149221 mac 149221 bytes_out 0 149221 bytes_in 0 149221 station_ip 37.129.210.144 149221 port 525 149221 unique_id port 149221 remote_ip 10.8.0.182 149222 username hashtadani4 149222 mac 149222 bytes_out 0 149222 bytes_in 0 149222 station_ip 37.129.210.144 149222 port 272 149222 unique_id port 149222 remote_ip 10.8.1.142 149223 username hashtadani4 149223 mac 149223 bytes_out 0 149223 bytes_in 0 149223 station_ip 37.129.210.144 149223 port 525 149223 unique_id port 149223 remote_ip 10.8.0.182 149227 username hashtadani4 149227 mac 149227 bytes_out 0 149227 bytes_in 0 149227 station_ip 37.129.210.144 149227 port 525 149227 unique_id port 149227 remote_ip 10.8.0.182 149230 username hashtadani4 149230 mac 149230 bytes_out 0 149230 bytes_in 0 149230 station_ip 37.129.210.144 149230 port 525 149230 unique_id port 149230 remote_ip 10.8.0.182 149231 username hashtadani4 149231 mac 149231 bytes_out 0 149231 bytes_in 0 149231 station_ip 37.129.210.144 149231 port 272 149231 unique_id port 149231 remote_ip 10.8.1.142 149233 username barzegar 149233 mac 149233 bytes_out 0 149233 bytes_in 0 149233 station_ip 5.119.236.105 149233 port 265 149233 unique_id port 149236 username hashtadani4 149236 mac 149236 bytes_out 0 149236 bytes_in 0 149236 station_ip 37.129.210.144 149236 port 265 149236 unique_id port 149236 remote_ip 10.8.1.142 149240 username hashtadani4 149240 mac 149240 bytes_out 0 149240 bytes_in 0 149240 station_ip 37.129.210.144 149240 port 525 149240 unique_id port 149240 remote_ip 10.8.0.182 149242 username moradi 149242 mac 149242 bytes_out 1003036 149242 bytes_in 12713712 149242 station_ip 83.122.211.62 149242 port 270 149242 unique_id port 149242 remote_ip 10.8.1.202 149245 username hashtadani4 149245 mac 149245 bytes_out 0 149245 bytes_in 0 149245 station_ip 37.129.210.144 149245 port 525 149245 unique_id port 149245 remote_ip 10.8.0.182 149247 username barzegar 149247 mac 149247 bytes_out 0 149247 bytes_in 0 149216 username hashtadani4 149216 mac 149216 bytes_out 0 149216 bytes_in 0 149216 station_ip 37.129.210.144 149216 port 525 149216 unique_id port 149216 remote_ip 10.8.0.182 149219 username hashtadani4 149219 mac 149219 bytes_out 0 149219 bytes_in 0 149219 station_ip 37.129.210.144 149219 port 272 149219 unique_id port 149219 remote_ip 10.8.1.142 149224 username hashtadani4 149224 mac 149224 bytes_out 0 149224 bytes_in 0 149224 station_ip 37.129.210.144 149224 port 272 149224 unique_id port 149224 remote_ip 10.8.1.142 149228 username hashtadani4 149228 mac 149228 bytes_out 0 149228 bytes_in 0 149228 station_ip 37.129.210.144 149228 port 272 149228 unique_id port 149228 remote_ip 10.8.1.142 149232 username hashtadani4 149232 mac 149232 bytes_out 0 149232 bytes_in 0 149232 station_ip 37.129.210.144 149232 port 525 149232 unique_id port 149232 remote_ip 10.8.0.182 149234 username Mahin 149234 mac 149234 bytes_out 2761944 149234 bytes_in 25038988 149234 station_ip 5.120.115.76 149234 port 514 149234 unique_id port 149234 remote_ip 10.8.0.158 149237 username hashtadani4 149237 mac 149237 bytes_out 0 149237 bytes_in 0 149237 station_ip 37.129.210.144 149237 port 525 149237 unique_id port 149237 remote_ip 10.8.0.182 149241 username hashtadani4 149241 mac 149241 bytes_out 0 149241 bytes_in 0 149241 station_ip 37.129.210.144 149241 port 525 149241 unique_id port 149241 remote_ip 10.8.0.182 149243 username hashtadani4 149243 mac 149243 bytes_out 0 149243 bytes_in 0 149243 station_ip 37.129.210.144 149243 port 265 149243 unique_id port 149243 remote_ip 10.8.1.142 149248 username hashtadani4 149248 mac 149248 bytes_out 0 149248 bytes_in 0 149248 station_ip 37.129.210.144 149248 port 265 149248 unique_id port 149248 remote_ip 10.8.1.142 149256 username hashtadani4 149256 mac 149256 bytes_out 0 149256 bytes_in 0 149256 station_ip 37.129.210.144 149256 port 525 149256 unique_id port 149256 remote_ip 10.8.0.182 149261 username hashtadani4 149261 mac 149261 bytes_out 0 149261 bytes_in 0 149261 station_ip 37.129.210.144 149261 port 527 149261 unique_id port 149261 remote_ip 10.8.0.182 149264 username hashtadani4 149264 mac 149264 bytes_out 0 149264 bytes_in 0 149264 station_ip 37.129.210.144 149264 port 525 149264 unique_id port 149264 remote_ip 10.8.0.182 149267 username godarzi 149267 mac 149267 bytes_out 0 149267 bytes_in 0 149267 station_ip 5.202.5.1 149267 port 489 149267 unique_id port 149271 username hashtadani4 149271 mac 149271 bytes_out 0 149271 bytes_in 0 149271 station_ip 37.129.210.144 149271 port 489 149271 unique_id port 149271 remote_ip 10.8.0.182 149273 username hashtadani4 149273 mac 149273 bytes_out 0 149273 bytes_in 0 149273 station_ip 37.129.210.144 149273 port 489 149273 unique_id port 149273 remote_ip 10.8.0.182 149277 username morteza 149277 mac 149277 bytes_out 0 149277 bytes_in 0 149277 station_ip 113.203.2.42 149277 port 265 149277 unique_id port 149277 remote_ip 10.8.1.62 149278 username khademi 149278 mac 149278 bytes_out 2648124 149278 bytes_in 36848562 149278 station_ip 83.123.16.121 149278 port 519 149278 unique_id port 149278 remote_ip 10.8.0.10 149281 username hashtadani4 149281 mac 149281 bytes_out 0 149281 bytes_in 0 149281 station_ip 37.129.210.144 149281 port 519 149281 unique_id port 149281 remote_ip 10.8.0.182 149283 username khademi 149283 mac 149283 bytes_out 0 149235 unique_id port 149235 remote_ip 10.8.0.182 149238 username hashtadani4 149238 mac 149238 bytes_out 0 149238 bytes_in 0 149238 station_ip 37.129.210.144 149238 port 525 149238 unique_id port 149238 remote_ip 10.8.0.182 149239 username hashtadani4 149239 mac 149239 bytes_out 0 149239 bytes_in 0 149239 station_ip 37.129.210.144 149239 port 265 149239 unique_id port 149239 remote_ip 10.8.1.142 149244 username hashtadani4 149244 mac 149244 bytes_out 0 149244 bytes_in 0 149244 station_ip 37.129.210.144 149244 port 265 149244 unique_id port 149244 remote_ip 10.8.1.142 149246 username hashtadani4 149246 mac 149246 bytes_out 0 149246 bytes_in 0 149246 station_ip 37.129.210.144 149246 port 525 149246 unique_id port 149246 remote_ip 10.8.0.182 149249 username hashtadani4 149249 mac 149249 bytes_out 0 149249 bytes_in 0 149249 station_ip 37.129.210.144 149249 port 527 149249 unique_id port 149249 remote_ip 10.8.0.182 149250 username hashtadani4 149250 mac 149250 bytes_out 0 149250 bytes_in 0 149250 station_ip 37.129.210.144 149250 port 265 149250 unique_id port 149250 remote_ip 10.8.1.142 149252 username hashtadani4 149252 mac 149252 bytes_out 0 149252 bytes_in 0 149252 station_ip 37.129.210.144 149252 port 527 149252 unique_id port 149252 remote_ip 10.8.0.182 149254 username hashtadani4 149254 mac 149254 bytes_out 0 149254 bytes_in 0 149254 station_ip 37.129.210.144 149254 port 525 149254 unique_id port 149254 remote_ip 10.8.0.182 149257 username hashtadani4 149257 mac 149257 bytes_out 0 149257 bytes_in 0 149257 station_ip 37.129.210.144 149257 port 265 149257 unique_id port 149257 remote_ip 10.8.1.142 149258 username hashtadani4 149258 mac 149258 bytes_out 0 149258 bytes_in 0 149258 station_ip 37.129.210.144 149258 port 525 149258 unique_id port 149258 remote_ip 10.8.0.182 149262 username barzegar 149262 mac 149262 bytes_out 0 149262 bytes_in 0 149262 station_ip 5.119.236.105 149262 port 525 149262 unique_id port 149262 remote_ip 10.8.0.234 149265 username hashtadani4 149265 mac 149265 bytes_out 0 149265 bytes_in 0 149265 station_ip 37.129.210.144 149265 port 525 149265 unique_id port 149265 remote_ip 10.8.0.182 149268 username hashtadani4 149268 mac 149268 bytes_out 0 149268 bytes_in 0 149268 station_ip 37.129.210.144 149268 port 525 149268 unique_id port 149268 remote_ip 10.8.0.182 149272 username hashtadani4 149272 mac 149272 bytes_out 0 149272 bytes_in 0 149272 station_ip 37.129.210.144 149272 port 489 149272 unique_id port 149272 remote_ip 10.8.0.182 149274 username hashtadani4 149274 mac 149274 bytes_out 0 149274 bytes_in 0 149274 station_ip 37.129.210.144 149274 port 265 149274 unique_id port 149274 remote_ip 10.8.1.142 149275 username hashtadani4 149275 mac 149275 bytes_out 0 149275 bytes_in 0 149275 station_ip 37.129.210.144 149275 port 489 149275 unique_id port 149275 remote_ip 10.8.0.182 149276 username hashtadani4 149276 mac 149276 bytes_out 0 149276 bytes_in 0 149276 station_ip 37.129.210.144 149276 port 489 149276 unique_id port 149276 remote_ip 10.8.0.182 149279 username hashtadani4 149279 mac 149279 bytes_out 0 149279 bytes_in 0 149279 station_ip 37.129.210.144 149279 port 265 149279 unique_id port 149279 remote_ip 10.8.1.142 149282 username barzegar 149282 mac 149282 bytes_out 0 149282 bytes_in 0 149282 station_ip 5.119.236.105 149282 port 270 149282 unique_id port 149282 remote_ip 10.8.1.174 149247 station_ip 5.119.236.105 149247 port 265 149247 unique_id port 149247 remote_ip 10.8.1.174 149251 username kalantary 149251 mac 149251 bytes_out 99761 149251 bytes_in 327119 149251 station_ip 113.203.19.98 149251 port 525 149251 unique_id port 149251 remote_ip 10.8.0.98 149253 username hashtadani4 149253 mac 149253 bytes_out 0 149253 bytes_in 0 149253 station_ip 37.129.210.144 149253 port 265 149253 unique_id port 149253 remote_ip 10.8.1.142 149255 username hashtadani4 149255 mac 149255 bytes_out 0 149255 bytes_in 0 149255 station_ip 37.129.210.144 149255 port 265 149255 unique_id port 149255 remote_ip 10.8.1.142 149259 username hashtadani4 149259 mac 149259 bytes_out 0 149259 bytes_in 0 149259 station_ip 37.129.210.144 149259 port 525 149259 unique_id port 149259 remote_ip 10.8.0.182 149260 username hashtadani4 149260 mac 149260 bytes_out 0 149260 bytes_in 0 149260 station_ip 37.129.210.144 149260 port 265 149260 unique_id port 149260 remote_ip 10.8.1.142 149263 username hashtadani4 149263 mac 149263 bytes_out 0 149263 bytes_in 0 149263 station_ip 37.129.210.144 149263 port 265 149263 unique_id port 149263 remote_ip 10.8.1.142 149266 username hashtadani4 149266 mac 149266 bytes_out 0 149266 bytes_in 0 149266 station_ip 37.129.210.144 149266 port 525 149266 unique_id port 149266 remote_ip 10.8.0.182 149269 username hashtadani4 149269 mac 149269 bytes_out 0 149269 bytes_in 0 149269 station_ip 37.129.210.144 149269 port 489 149269 unique_id port 149269 remote_ip 10.8.0.182 149270 username hashtadani4 149270 mac 149270 bytes_out 0 149270 bytes_in 0 149270 station_ip 37.129.210.144 149270 port 489 149270 unique_id port 149270 remote_ip 10.8.0.182 149280 username hashtadani4 149280 mac 149280 bytes_out 0 149280 bytes_in 0 149280 station_ip 37.129.210.144 149280 port 519 149280 unique_id port 149280 remote_ip 10.8.0.182 149285 username hashtadani4 149285 mac 149285 bytes_out 0 149285 bytes_in 0 149285 station_ip 37.129.210.144 149285 port 265 149285 unique_id port 149285 remote_ip 10.8.1.142 149287 username hashtadani4 149287 mac 149287 bytes_out 0 149287 bytes_in 0 149287 station_ip 37.129.210.144 149287 port 265 149287 unique_id port 149287 remote_ip 10.8.1.142 149289 username aminvpn 149289 unique_id port 149289 terminate_cause User-Request 149289 bytes_out 691161 149289 bytes_in 8866167 149289 station_ip 31.57.143.98 149289 port 15731024 149289 nas_port_type Virtual 149289 remote_ip 5.5.5.202 149291 username hashtadani4 149291 mac 149291 bytes_out 0 149291 bytes_in 0 149291 station_ip 37.129.210.144 149291 port 525 149291 unique_id port 149291 remote_ip 10.8.0.182 149293 username hashtadani4 149293 mac 149293 bytes_out 0 149293 bytes_in 0 149293 station_ip 37.129.210.144 149293 port 265 149293 unique_id port 149293 remote_ip 10.8.1.142 149296 username mosi 149296 mac 149296 bytes_out 0 149296 bytes_in 0 149296 station_ip 151.235.107.13 149296 port 271 149296 unique_id port 149296 remote_ip 10.8.1.86 149300 username barzegar 149300 mac 149300 bytes_out 0 149300 bytes_in 0 149300 station_ip 5.119.236.105 149300 port 265 149300 unique_id port 149300 remote_ip 10.8.1.174 149302 username hashtadani4 149302 mac 149302 bytes_out 0 149302 bytes_in 0 149302 station_ip 37.129.210.144 149302 port 265 149302 unique_id port 149302 remote_ip 10.8.1.142 149306 username hashtadani4 149306 mac 149306 bytes_out 0 149306 bytes_in 0 149283 bytes_in 0 149283 station_ip 83.123.229.197 149283 port 489 149283 unique_id port 149283 remote_ip 10.8.0.10 149286 username hashtadani4 149286 mac 149286 bytes_out 0 149286 bytes_in 0 149286 station_ip 37.129.210.144 149286 port 489 149286 unique_id port 149286 remote_ip 10.8.0.182 149288 username hashtadani4 149288 mac 149288 bytes_out 0 149288 bytes_in 0 149288 station_ip 37.129.210.144 149288 port 265 149288 unique_id port 149288 remote_ip 10.8.1.142 149292 username hashtadani4 149292 mac 149292 bytes_out 0 149292 bytes_in 0 149292 station_ip 37.129.210.144 149292 port 525 149292 unique_id port 149292 remote_ip 10.8.0.182 149294 username hashtadani4 149294 mac 149294 bytes_out 0 149294 bytes_in 0 149294 station_ip 37.129.210.144 149294 port 265 149294 unique_id port 149294 remote_ip 10.8.1.142 149295 username hashtadani4 149295 mac 149295 bytes_out 0 149295 bytes_in 0 149295 station_ip 37.129.210.144 149295 port 265 149295 unique_id port 149295 remote_ip 10.8.1.142 149297 username hashtadani4 149297 mac 149297 bytes_out 0 149297 bytes_in 0 149297 station_ip 37.129.210.144 149297 port 527 149297 unique_id port 149297 remote_ip 10.8.0.182 149298 username hashtadani4 149298 mac 149298 bytes_out 0 149298 bytes_in 0 149298 station_ip 37.129.210.144 149298 port 527 149298 unique_id port 149298 remote_ip 10.8.0.182 149299 username godarzi 149299 mac 149299 bytes_out 151438 149299 bytes_in 1042629 149299 station_ip 5.202.5.1 149299 port 525 149299 unique_id port 149299 remote_ip 10.8.0.174 149303 username hashtadani4 149303 mac 149303 bytes_out 0 149303 bytes_in 0 149303 station_ip 37.129.210.144 149303 port 265 149303 unique_id port 149303 remote_ip 10.8.1.142 149308 username hashtadani4 149308 mac 149308 bytes_out 0 149308 bytes_in 0 149308 station_ip 37.129.210.144 149308 port 513 149308 unique_id port 149308 remote_ip 10.8.0.182 149312 username milan 149312 mac 149312 bytes_out 0 149312 bytes_in 0 149312 station_ip 5.120.31.183 149312 port 518 149312 unique_id port 149314 username hashtadani4 149314 mac 149314 bytes_out 0 149314 bytes_in 0 149314 station_ip 37.129.210.144 149314 port 270 149314 unique_id port 149314 remote_ip 10.8.1.142 149325 username hashtadani4 149325 mac 149325 bytes_out 0 149325 bytes_in 0 149325 station_ip 37.129.210.144 149325 port 489 149325 unique_id port 149325 remote_ip 10.8.0.182 149333 username hashtadani4 149333 mac 149333 bytes_out 0 149333 bytes_in 0 149333 station_ip 37.129.210.144 149333 port 265 149333 unique_id port 149333 remote_ip 10.8.1.142 149336 username hashtadani4 149336 mac 149336 bytes_out 0 149336 bytes_in 0 149336 station_ip 37.129.210.144 149336 port 518 149336 unique_id port 149336 remote_ip 10.8.0.182 149337 username hashtadani4 149337 mac 149337 bytes_out 0 149337 bytes_in 0 149337 station_ip 37.129.210.144 149337 port 518 149337 unique_id port 149337 remote_ip 10.8.0.182 149340 username hashtadani4 149340 mac 149340 bytes_out 0 149340 bytes_in 0 149340 station_ip 37.129.210.144 149340 port 525 149340 unique_id port 149340 remote_ip 10.8.0.182 149343 username barzegar 149343 mac 149343 bytes_out 0 149343 bytes_in 0 149343 station_ip 5.119.236.105 149343 port 525 149343 unique_id port 149343 remote_ip 10.8.0.234 149346 username hashtadani4 149346 mac 149346 bytes_out 0 149346 bytes_in 0 149346 station_ip 37.129.210.144 149346 port 265 149284 username hashtadani4 149284 mac 149284 bytes_out 0 149284 bytes_in 0 149284 station_ip 37.129.210.144 149284 port 265 149284 unique_id port 149284 remote_ip 10.8.1.142 149290 username hashtadani4 149290 mac 149290 bytes_out 0 149290 bytes_in 0 149290 station_ip 37.129.210.144 149290 port 525 149290 unique_id port 149290 remote_ip 10.8.0.182 149301 username hashtadani4 149301 mac 149301 bytes_out 0 149301 bytes_in 0 149301 station_ip 37.129.210.144 149301 port 527 149301 unique_id port 149301 remote_ip 10.8.0.182 149304 username hashtadani4 149304 mac 149304 bytes_out 0 149304 bytes_in 0 149304 station_ip 37.129.210.144 149304 port 525 149304 unique_id port 149304 remote_ip 10.8.0.182 149305 username hashtadani4 149305 mac 149305 bytes_out 0 149305 bytes_in 0 149305 station_ip 37.129.210.144 149305 port 265 149305 unique_id port 149305 remote_ip 10.8.1.142 149307 username sabaghnezhad 149307 mac 149307 bytes_out 0 149307 bytes_in 0 149307 station_ip 113.203.88.140 149307 port 513 149307 unique_id port 149309 username hashtadani4 149309 mac 149309 bytes_out 0 149309 bytes_in 0 149309 station_ip 37.129.210.144 149309 port 265 149309 unique_id port 149309 remote_ip 10.8.1.142 149311 username hashtadani4 149311 mac 149311 bytes_out 0 149311 bytes_in 0 149311 station_ip 37.129.210.144 149311 port 513 149311 unique_id port 149311 remote_ip 10.8.0.182 149313 username hashtadani4 149313 mac 149313 bytes_out 0 149313 bytes_in 0 149313 station_ip 37.129.210.144 149313 port 270 149313 unique_id port 149313 remote_ip 10.8.1.142 149315 username hashtadani4 149315 mac 149315 bytes_out 0 149315 bytes_in 0 149315 station_ip 37.129.210.144 149315 port 513 149315 unique_id port 149315 remote_ip 10.8.0.182 149316 username hashtadani4 149316 mac 149316 bytes_out 0 149316 bytes_in 0 149316 station_ip 37.129.210.144 149316 port 513 149316 unique_id port 149316 remote_ip 10.8.0.182 149318 username hashtadani4 149318 mac 149318 bytes_out 0 149318 bytes_in 0 149318 station_ip 37.129.210.144 149318 port 513 149318 unique_id port 149318 remote_ip 10.8.0.182 149321 username hashtadani4 149321 mac 149321 bytes_out 0 149321 bytes_in 0 149321 station_ip 37.129.210.144 149321 port 270 149321 unique_id port 149321 remote_ip 10.8.1.142 149326 username hashtadani4 149326 mac 149326 bytes_out 0 149326 bytes_in 0 149326 station_ip 37.129.210.144 149326 port 489 149326 unique_id port 149326 remote_ip 10.8.0.182 149327 username hashtadani4 149327 mac 149327 bytes_out 0 149327 bytes_in 0 149327 station_ip 37.129.210.144 149327 port 270 149327 unique_id port 149327 remote_ip 10.8.1.142 149329 username sabaghnezhad 149329 mac 149329 bytes_out 13614 149329 bytes_in 25409 149329 station_ip 113.203.88.140 149329 port 265 149329 unique_id port 149329 remote_ip 10.8.1.130 149330 username hashtadani4 149330 mac 149330 bytes_out 0 149330 bytes_in 0 149330 station_ip 37.129.210.144 149330 port 514 149330 unique_id port 149330 remote_ip 10.8.0.182 149332 username vanila 149332 mac 149332 bytes_out 0 149332 bytes_in 0 149332 station_ip 37.129.172.239 149332 port 519 149332 unique_id port 149332 remote_ip 10.8.0.178 149334 username hashtadani4 149334 mac 149334 bytes_out 0 149334 bytes_in 0 149334 station_ip 37.129.210.144 149334 port 265 149334 unique_id port 149334 remote_ip 10.8.1.142 149347 username hashtadani4 149347 mac 149347 bytes_out 0 149306 station_ip 37.129.210.144 149306 port 265 149306 unique_id port 149306 remote_ip 10.8.1.142 149310 username hashtadani4 149310 mac 149310 bytes_out 0 149310 bytes_in 0 149310 station_ip 37.129.210.144 149310 port 513 149310 unique_id port 149310 remote_ip 10.8.0.182 149317 username barzegar 149317 mac 149317 bytes_out 0 149317 bytes_in 0 149317 station_ip 5.119.236.105 149317 port 271 149317 unique_id port 149317 remote_ip 10.8.1.174 149319 username hashtadani4 149319 mac 149319 bytes_out 0 149319 bytes_in 0 149319 station_ip 37.129.210.144 149319 port 513 149319 unique_id port 149319 remote_ip 10.8.0.182 149320 username khademi 149320 mac 149320 bytes_out 65070 149320 bytes_in 109791 149320 station_ip 83.123.229.197 149320 port 489 149320 unique_id port 149320 remote_ip 10.8.0.10 149322 username hashtadani4 149322 mac 149322 bytes_out 0 149322 bytes_in 0 149322 station_ip 37.129.210.144 149322 port 270 149322 unique_id port 149322 remote_ip 10.8.1.142 149323 username Mahin 149323 mac 149323 bytes_out 90097 149323 bytes_in 161816 149323 station_ip 5.120.115.76 149323 port 514 149323 unique_id port 149323 remote_ip 10.8.0.158 149324 username hashtadani4 149324 mac 149324 bytes_out 0 149324 bytes_in 0 149324 station_ip 37.129.210.144 149324 port 489 149324 unique_id port 149324 remote_ip 10.8.0.182 149328 username hashtadani4 149328 mac 149328 bytes_out 0 149328 bytes_in 0 149328 station_ip 37.129.210.144 149328 port 514 149328 unique_id port 149328 remote_ip 10.8.0.182 149331 username hashtadani4 149331 mac 149331 bytes_out 0 149331 bytes_in 0 149331 station_ip 37.129.210.144 149331 port 514 149331 unique_id port 149331 remote_ip 10.8.0.182 149335 username hashtadani4 149335 mac 149335 bytes_out 0 149335 bytes_in 0 149335 station_ip 37.129.210.144 149335 port 265 149335 unique_id port 149335 remote_ip 10.8.1.142 149338 username hashtadani4 149338 mac 149338 bytes_out 0 149338 bytes_in 0 149338 station_ip 37.129.210.144 149338 port 519 149338 unique_id port 149338 remote_ip 10.8.0.182 149339 username hashtadani4 149339 mac 149339 bytes_out 0 149339 bytes_in 0 149339 station_ip 37.129.210.144 149339 port 525 149339 unique_id port 149339 remote_ip 10.8.0.182 149341 username hashtadani4 149341 mac 149341 bytes_out 0 149341 bytes_in 0 149341 station_ip 37.129.210.144 149341 port 265 149341 unique_id port 149341 remote_ip 10.8.1.142 149342 username hashtadani4 149342 mac 149342 bytes_out 0 149342 bytes_in 0 149342 station_ip 37.129.210.144 149342 port 527 149342 unique_id port 149342 remote_ip 10.8.0.182 149344 username hashtadani4 149344 mac 149344 bytes_out 0 149344 bytes_in 0 149344 station_ip 37.129.210.144 149344 port 527 149344 unique_id port 149344 remote_ip 10.8.0.182 149345 username hashtadani4 149345 mac 149345 bytes_out 0 149345 bytes_in 0 149345 station_ip 37.129.210.144 149345 port 525 149345 unique_id port 149345 remote_ip 10.8.0.182 149348 username hashtadani4 149348 mac 149348 bytes_out 0 149348 bytes_in 0 149348 station_ip 37.129.210.144 149348 port 525 149348 unique_id port 149348 remote_ip 10.8.0.182 149349 username hashtadani4 149349 mac 149349 bytes_out 0 149349 bytes_in 0 149349 station_ip 37.129.210.144 149349 port 265 149349 unique_id port 149349 remote_ip 10.8.1.142 149350 username hashtadani4 149350 mac 149350 bytes_out 0 149350 bytes_in 0 149350 station_ip 37.129.210.144 149350 port 525 149346 unique_id port 149346 remote_ip 10.8.1.142 149351 username hashtadani4 149351 mac 149351 bytes_out 0 149351 bytes_in 0 149351 station_ip 37.129.210.144 149351 port 525 149351 unique_id port 149351 remote_ip 10.8.0.182 149353 username sedighe 149353 mac 149353 bytes_out 0 149353 bytes_in 0 149353 station_ip 37.129.99.131 149353 port 489 149353 unique_id port 149353 remote_ip 10.8.0.146 149355 username hashtadani4 149355 mac 149355 bytes_out 0 149355 bytes_in 0 149355 station_ip 37.129.210.144 149355 port 489 149355 unique_id port 149355 remote_ip 10.8.0.182 149359 username hashtadani4 149359 mac 149359 bytes_out 0 149359 bytes_in 0 149359 station_ip 37.129.210.144 149359 port 489 149359 unique_id port 149359 remote_ip 10.8.0.182 149363 username hashtadani4 149363 mac 149363 bytes_out 0 149363 bytes_in 0 149363 station_ip 37.129.210.144 149363 port 265 149363 unique_id port 149363 remote_ip 10.8.1.142 149364 username vanila 149364 mac 149364 bytes_out 0 149364 bytes_in 0 149364 station_ip 37.129.172.239 149364 port 519 149364 unique_id port 149364 remote_ip 10.8.0.178 149370 username hashtadani4 149370 mac 149370 bytes_out 0 149370 bytes_in 0 149370 station_ip 37.129.210.144 149370 port 265 149370 unique_id port 149370 remote_ip 10.8.1.142 149371 username hashtadani4 149371 mac 149371 bytes_out 0 149371 bytes_in 0 149371 station_ip 37.129.210.144 149371 port 525 149371 unique_id port 149371 remote_ip 10.8.0.182 149372 username forozandeh1 149372 mac 149372 bytes_out 483902 149372 bytes_in 1408743 149372 station_ip 113.203.71.36 149372 port 527 149372 unique_id port 149372 remote_ip 10.8.0.130 149375 username hashtadani4 149375 mac 149375 bytes_out 0 149375 bytes_in 0 149375 station_ip 37.129.210.144 149375 port 525 149375 unique_id port 149375 remote_ip 10.8.0.182 149376 username hashtadani4 149376 mac 149376 bytes_out 0 149376 bytes_in 0 149376 station_ip 37.129.210.144 149376 port 525 149376 unique_id port 149376 remote_ip 10.8.0.182 149377 username hashtadani4 149377 mac 149377 bytes_out 0 149377 bytes_in 0 149377 station_ip 37.129.210.144 149377 port 265 149377 unique_id port 149377 remote_ip 10.8.1.142 149379 username vanila 149379 mac 149379 bytes_out 2195064 149379 bytes_in 44639336 149379 station_ip 37.129.172.239 149379 port 519 149379 unique_id port 149379 remote_ip 10.8.0.178 149383 username hashtadani4 149383 mac 149383 bytes_out 0 149383 bytes_in 0 149383 station_ip 37.129.210.144 149383 port 519 149383 unique_id port 149383 remote_ip 10.8.0.182 149386 username Mahin 149386 mac 149386 bytes_out 0 149386 bytes_in 0 149386 station_ip 5.120.115.76 149386 port 519 149386 unique_id port 149386 remote_ip 10.8.0.158 149389 username Mahin 149389 mac 149389 bytes_out 0 149389 bytes_in 0 149389 station_ip 5.120.115.76 149389 port 513 149389 unique_id port 149389 remote_ip 10.8.0.158 149390 username Mahin 149390 mac 149390 bytes_out 0 149390 bytes_in 0 149390 station_ip 5.120.115.76 149390 port 519 149390 unique_id port 149390 remote_ip 10.8.0.158 149393 username hashtadani4 149393 mac 149393 bytes_out 0 149393 bytes_in 0 149393 station_ip 37.129.210.144 149393 port 519 149393 unique_id port 149393 remote_ip 10.8.0.182 149397 username Mahin 149397 mac 149397 bytes_out 0 149397 bytes_in 0 149397 station_ip 5.120.115.76 149397 port 525 149397 unique_id port 149397 remote_ip 10.8.0.158 149347 bytes_in 0 149347 station_ip 37.129.210.144 149347 port 265 149347 unique_id port 149347 remote_ip 10.8.1.142 149352 username hashtadani4 149352 mac 149352 bytes_out 0 149352 bytes_in 0 149352 station_ip 37.129.210.144 149352 port 265 149352 unique_id port 149352 remote_ip 10.8.1.142 149356 username hashtadani4 149356 mac 149356 bytes_out 0 149356 bytes_in 0 149356 station_ip 37.129.210.144 149356 port 265 149356 unique_id port 149356 remote_ip 10.8.1.142 149361 username hashtadani4 149361 mac 149361 bytes_out 0 149361 bytes_in 0 149361 station_ip 37.129.210.144 149361 port 489 149361 unique_id port 149361 remote_ip 10.8.0.182 149366 username hashtadani4 149366 mac 149366 bytes_out 209241 149366 bytes_in 2156182 149366 station_ip 37.129.210.144 149366 port 519 149366 unique_id port 149366 remote_ip 10.8.0.182 149374 username hashtadani4 149374 mac 149374 bytes_out 57141 149374 bytes_in 147070 149374 station_ip 37.129.210.144 149374 port 270 149374 unique_id port 149374 remote_ip 10.8.1.142 149378 username hashtadani4 149378 mac 149378 bytes_out 0 149378 bytes_in 0 149378 station_ip 37.129.210.144 149378 port 265 149378 unique_id port 149378 remote_ip 10.8.1.142 149380 username hashtadani4 149380 mac 149380 bytes_out 0 149380 bytes_in 0 149380 station_ip 37.129.210.144 149380 port 519 149380 unique_id port 149380 remote_ip 10.8.0.182 149381 username hashtadani4 149381 mac 149381 bytes_out 0 149381 bytes_in 0 149381 station_ip 37.129.210.144 149381 port 265 149381 unique_id port 149381 remote_ip 10.8.1.142 149387 username Mahin 149387 mac 149387 bytes_out 0 149387 bytes_in 0 149387 station_ip 5.120.115.76 149387 port 513 149387 unique_id port 149387 remote_ip 10.8.0.158 149395 username arash 149395 mac 149395 bytes_out 141249 149395 bytes_in 241667 149395 station_ip 5.134.152.167 149395 port 523 149395 unique_id port 149395 remote_ip 10.8.0.114 149401 username hashtadani4 149401 mac 149401 bytes_out 0 149401 bytes_in 0 149401 station_ip 37.129.210.144 149401 port 270 149401 unique_id port 149401 remote_ip 10.8.1.142 149406 username hashtadani4 149406 mac 149406 bytes_out 0 149406 bytes_in 0 149406 station_ip 37.129.210.144 149406 port 519 149406 unique_id port 149406 remote_ip 10.8.0.182 149408 username hashtadani4 149408 mac 149408 bytes_out 0 149408 bytes_in 0 149408 station_ip 37.129.210.144 149408 port 519 149408 unique_id port 149408 remote_ip 10.8.0.182 149409 username ahmadi1 149409 mac 149409 bytes_out 0 149409 bytes_in 0 149409 station_ip 83.123.72.40 149409 port 523 149409 unique_id port 149409 remote_ip 10.8.0.250 149411 username hashtadani4 149411 mac 149411 bytes_out 0 149411 bytes_in 0 149411 station_ip 37.129.210.144 149411 port 519 149411 unique_id port 149411 remote_ip 10.8.0.182 149412 username hashtadani4 149412 mac 149412 bytes_out 0 149412 bytes_in 0 149412 station_ip 37.129.210.144 149412 port 270 149412 unique_id port 149412 remote_ip 10.8.1.142 149414 username hashtadani4 149414 mac 149414 bytes_out 0 149414 bytes_in 0 149414 station_ip 37.129.210.144 149414 port 513 149414 unique_id port 149414 remote_ip 10.8.0.182 149415 username hashtadani4 149415 mac 149415 bytes_out 0 149415 bytes_in 0 149415 station_ip 37.129.210.144 149415 port 513 149415 unique_id port 149415 remote_ip 10.8.0.182 149416 username hashtadani4 149416 mac 149416 bytes_out 0 149416 bytes_in 0 149350 unique_id port 149350 remote_ip 10.8.0.182 149354 username hashtadani4 149354 mac 149354 bytes_out 0 149354 bytes_in 0 149354 station_ip 37.129.210.144 149354 port 525 149354 unique_id port 149354 remote_ip 10.8.0.182 149357 username hashtadani4 149357 mac 149357 bytes_out 0 149357 bytes_in 0 149357 station_ip 37.129.210.144 149357 port 489 149357 unique_id port 149357 remote_ip 10.8.0.182 149358 username hashtadani4 149358 mac 149358 bytes_out 0 149358 bytes_in 0 149358 station_ip 37.129.210.144 149358 port 265 149358 unique_id port 149358 remote_ip 10.8.1.142 149360 username sedighe 149360 mac 149360 bytes_out 17140 149360 bytes_in 27533 149360 station_ip 37.129.99.131 149360 port 528 149360 unique_id port 149360 remote_ip 10.8.0.146 149362 username hashtadani4 149362 mac 149362 bytes_out 0 149362 bytes_in 0 149362 station_ip 37.129.210.144 149362 port 489 149362 unique_id port 149362 remote_ip 10.8.0.182 149365 username hashtadani4 149365 mac 149365 bytes_out 0 149365 bytes_in 0 149365 station_ip 37.129.210.144 149365 port 489 149365 unique_id port 149365 remote_ip 10.8.0.182 149367 username hashtadani4 149367 mac 149367 bytes_out 0 149367 bytes_in 0 149367 station_ip 37.129.210.144 149367 port 265 149367 unique_id port 149367 remote_ip 10.8.1.142 149368 username hashtadani4 149368 mac 149368 bytes_out 0 149368 bytes_in 0 149368 station_ip 37.129.210.144 149368 port 519 149368 unique_id port 149368 remote_ip 10.8.0.182 149369 username hashtadani4 149369 mac 149369 bytes_out 0 149369 bytes_in 0 149369 station_ip 37.129.210.144 149369 port 265 149369 unique_id port 149369 remote_ip 10.8.1.142 149373 username barzegar 149373 mac 149373 bytes_out 0 149373 bytes_in 0 149373 station_ip 5.119.236.105 149373 port 265 149373 unique_id port 149373 remote_ip 10.8.1.174 149382 username hashtadani4 149382 mac 149382 bytes_out 0 149382 bytes_in 0 149382 station_ip 37.129.210.144 149382 port 519 149382 unique_id port 149382 remote_ip 10.8.0.182 149384 username hashtadani4 149384 mac 149384 bytes_out 0 149384 bytes_in 0 149384 station_ip 37.129.210.144 149384 port 519 149384 unique_id port 149384 remote_ip 10.8.0.182 149385 username Mahin 149385 mac 149385 bytes_out 0 149385 bytes_in 0 149385 station_ip 5.120.115.76 149385 port 513 149385 unique_id port 149385 remote_ip 10.8.0.158 149388 username Mahin 149388 mac 149388 bytes_out 0 149388 bytes_in 0 149388 station_ip 5.120.115.76 149388 port 519 149388 unique_id port 149388 remote_ip 10.8.0.158 149391 username hashtadani4 149391 mac 149391 bytes_out 2278 149391 bytes_in 4645 149391 station_ip 37.129.210.144 149391 port 265 149391 unique_id port 149391 remote_ip 10.8.1.142 149392 username hashtadani4 149392 mac 149392 bytes_out 0 149392 bytes_in 0 149392 station_ip 37.129.210.144 149392 port 519 149392 unique_id port 149392 remote_ip 10.8.0.182 149394 username ahmadi1 149394 mac 149394 bytes_out 0 149394 bytes_in 0 149394 station_ip 83.123.72.40 149394 port 513 149394 unique_id port 149394 remote_ip 10.8.0.250 149396 username hashtadani4 149396 mac 149396 bytes_out 0 149396 bytes_in 0 149396 station_ip 37.129.210.144 149396 port 519 149396 unique_id port 149396 remote_ip 10.8.0.182 149398 username hashtadani4 149398 mac 149398 bytes_out 0 149398 bytes_in 0 149398 station_ip 37.129.210.144 149398 port 519 149398 unique_id port 149398 remote_ip 10.8.0.182 149399 username hashtadani4 149399 mac 149399 bytes_out 0 149399 bytes_in 0 149399 station_ip 37.129.210.144 149399 port 519 149399 unique_id port 149399 remote_ip 10.8.0.182 149403 username hashtadani4 149403 mac 149403 bytes_out 0 149403 bytes_in 0 149403 station_ip 37.129.210.144 149403 port 519 149403 unique_id port 149403 remote_ip 10.8.0.182 149405 username hashtadani4 149405 mac 149405 bytes_out 0 149405 bytes_in 0 149405 station_ip 37.129.210.144 149405 port 519 149405 unique_id port 149405 remote_ip 10.8.0.182 149407 username hashtadani4 149407 mac 149407 bytes_out 0 149407 bytes_in 0 149407 station_ip 37.129.210.144 149407 port 519 149407 unique_id port 149407 remote_ip 10.8.0.182 149410 username hashtadani4 149410 mac 149410 bytes_out 0 149410 bytes_in 0 149410 station_ip 37.129.210.144 149410 port 270 149410 unique_id port 149410 remote_ip 10.8.1.142 149413 username arash 149413 mac 149413 bytes_out 152572 149413 bytes_in 618504 149413 station_ip 5.134.152.167 149413 port 513 149413 unique_id port 149413 remote_ip 10.8.0.114 149419 username hashtadani4 149419 mac 149419 bytes_out 0 149419 bytes_in 0 149419 station_ip 37.129.210.144 149419 port 513 149419 unique_id port 149419 remote_ip 10.8.0.182 149422 username bcboard 149422 unique_id port 149422 terminate_cause User-Request 149422 bytes_out 52623 149422 bytes_in 98098 149422 station_ip 37.129.112.47 149422 port 15731026 149422 nas_port_type Virtual 149422 remote_ip 5.5.5.255 149423 username sabaghnezhad 149423 mac 149423 bytes_out 70906 149423 bytes_in 106093 149423 station_ip 113.203.88.140 149423 port 518 149423 unique_id port 149423 remote_ip 10.8.0.186 149430 username hashtadani4 149430 kill_reason Another user logged on this global unique id 149430 mac 149430 bytes_out 0 149430 bytes_in 0 149430 station_ip 5.202.12.184 149430 port 523 149430 unique_id port 149430 remote_ip 10.8.0.182 149433 username hashtadani4 149433 kill_reason Another user logged on this global unique id 149433 mac 149433 bytes_out 0 149433 bytes_in 0 149433 station_ip 5.202.12.184 149433 port 523 149433 unique_id port 149434 username nilufarrajaei 149434 mac 149434 bytes_out 274783 149434 bytes_in 1073874 149434 station_ip 37.129.124.77 149434 port 513 149434 unique_id port 149434 remote_ip 10.8.0.206 149436 username hashtadani4 149436 mac 149436 bytes_out 0 149436 bytes_in 0 149436 station_ip 5.202.12.184 149436 port 523 149436 unique_id port 149440 username aminvpn 149440 mac 149440 bytes_out 4603071 149440 bytes_in 14455006 149440 station_ip 83.122.31.126 149440 port 522 149440 unique_id port 149440 remote_ip 10.8.0.14 149442 username hashtadani4 149442 mac 149442 bytes_out 0 149442 bytes_in 0 149442 station_ip 37.129.232.176 149442 port 270 149442 unique_id port 149442 remote_ip 10.8.1.142 149445 username barzegar 149445 mac 149445 bytes_out 0 149445 bytes_in 0 149445 station_ip 5.119.236.105 149445 port 270 149445 unique_id port 149445 remote_ip 10.8.1.174 149446 username barzegar 149446 mac 149446 bytes_out 0 149446 bytes_in 0 149446 station_ip 5.119.236.105 149446 port 270 149446 unique_id port 149446 remote_ip 10.8.1.174 149452 username hashtadani4 149452 mac 149452 bytes_out 0 149452 bytes_in 0 149452 station_ip 37.129.232.176 149452 port 270 149452 unique_id port 149452 remote_ip 10.8.1.142 149454 username hashtadani4 149454 mac 149454 bytes_out 0 149454 bytes_in 0 149454 station_ip 37.129.232.176 149454 port 270 149400 username barzegar 149400 mac 149400 bytes_out 0 149400 bytes_in 0 149400 station_ip 5.119.236.105 149400 port 519 149400 unique_id port 149400 remote_ip 10.8.0.234 149402 username hashtadani4 149402 mac 149402 bytes_out 0 149402 bytes_in 0 149402 station_ip 37.129.210.144 149402 port 519 149402 unique_id port 149402 remote_ip 10.8.0.182 149404 username hashtadani4 149404 mac 149404 bytes_out 0 149404 bytes_in 0 149404 station_ip 37.129.210.144 149404 port 519 149404 unique_id port 149404 remote_ip 10.8.0.182 149418 username hashtadani4 149418 mac 149418 bytes_out 0 149418 bytes_in 0 149418 station_ip 37.129.210.144 149418 port 513 149418 unique_id port 149418 remote_ip 10.8.0.182 149420 username bcboard 149420 unique_id port 149420 terminate_cause User-Request 149420 bytes_out 32413 149420 bytes_in 300451 149420 station_ip 37.129.112.47 149420 port 15731025 149420 nas_port_type Virtual 149420 remote_ip 5.5.5.255 149424 username barzegar 149424 mac 149424 bytes_out 0 149424 bytes_in 0 149424 station_ip 5.119.236.105 149424 port 523 149424 unique_id port 149424 remote_ip 10.8.0.234 149426 username hashtadani4 149426 kill_reason Maximum check online fails reached 149426 mac 149426 bytes_out 0 149426 bytes_in 0 149426 station_ip 5.202.12.184 149426 port 519 149426 unique_id port 149428 username sabaghnezhad 149428 mac 149428 bytes_out 0 149428 bytes_in 0 149428 station_ip 113.203.88.140 149428 port 270 149428 unique_id port 149428 remote_ip 10.8.1.130 149435 username meysam 149435 mac 149435 bytes_out 877267 149435 bytes_in 10434608 149435 station_ip 188.159.251.74 149435 port 525 149435 unique_id port 149435 remote_ip 10.8.0.110 149437 username hashtadani4 149437 mac 149437 bytes_out 0 149437 bytes_in 0 149437 station_ip 37.129.232.176 149437 port 525 149437 unique_id port 149437 remote_ip 10.8.0.182 149447 username hashtadani4 149447 mac 149447 bytes_out 6036 149447 bytes_in 11373 149447 station_ip 37.129.232.176 149447 port 513 149447 unique_id port 149447 remote_ip 10.8.0.182 149448 username barzegar 149448 mac 149448 bytes_out 0 149448 bytes_in 0 149448 station_ip 5.119.236.105 149448 port 270 149448 unique_id port 149448 remote_ip 10.8.1.174 149451 username hashtadani4 149451 mac 149451 bytes_out 0 149451 bytes_in 0 149451 station_ip 37.129.232.176 149451 port 270 149451 unique_id port 149451 remote_ip 10.8.1.142 149453 username hashtadani4 149453 mac 149453 bytes_out 0 149453 bytes_in 0 149453 station_ip 37.129.232.176 149453 port 513 149453 unique_id port 149453 remote_ip 10.8.0.182 149458 username hashtadani4 149458 mac 149458 bytes_out 0 149458 bytes_in 0 149458 station_ip 37.129.232.176 149458 port 513 149458 unique_id port 149458 remote_ip 10.8.0.182 149459 username hashtadani4 149459 mac 149459 bytes_out 0 149459 bytes_in 0 149459 station_ip 37.129.232.176 149459 port 513 149459 unique_id port 149459 remote_ip 10.8.0.182 149461 username hashtadani4 149461 mac 149461 bytes_out 0 149461 bytes_in 0 149461 station_ip 37.129.232.176 149461 port 513 149461 unique_id port 149461 remote_ip 10.8.0.182 149464 username hashtadani4 149464 mac 149464 bytes_out 0 149464 bytes_in 0 149464 station_ip 37.129.232.176 149464 port 513 149464 unique_id port 149464 remote_ip 10.8.0.182 149465 username hashtadani4 149465 mac 149465 bytes_out 0 149465 bytes_in 0 149465 station_ip 37.129.232.176 149465 port 513 149465 unique_id port 149465 remote_ip 10.8.0.182 149416 station_ip 37.129.210.144 149416 port 513 149416 unique_id port 149416 remote_ip 10.8.0.182 149417 username Mahin 149417 mac 149417 bytes_out 22823 149417 bytes_in 28702 149417 station_ip 5.120.26.85 149417 port 265 149417 unique_id port 149417 remote_ip 10.8.1.186 149421 username hashtadani4 149421 mac 149421 bytes_out 0 149421 bytes_in 0 149421 station_ip 5.202.12.184 149421 port 513 149421 unique_id port 149421 remote_ip 10.8.0.182 149425 username sabaghnezhad 149425 mac 149425 bytes_out 0 149425 bytes_in 0 149425 station_ip 113.203.88.140 149425 port 270 149425 unique_id port 149425 remote_ip 10.8.1.130 149427 username hashtadani4 149427 mac 149427 bytes_out 0 149427 bytes_in 0 149427 station_ip 5.202.12.184 149427 port 518 149427 unique_id port 149427 remote_ip 10.8.0.182 149429 username hashtadani4 149429 kill_reason Maximum check online fails reached 149429 mac 149429 bytes_out 0 149429 bytes_in 0 149429 station_ip 5.202.12.184 149429 port 518 149429 unique_id port 149431 username barzegar 149431 mac 149431 bytes_out 2819 149431 bytes_in 4965 149431 station_ip 5.119.236.105 149431 port 525 149431 unique_id port 149431 remote_ip 10.8.0.234 149432 username sabaghnezhad 149432 mac 149432 bytes_out 15007 149432 bytes_in 17936 149432 station_ip 113.203.88.140 149432 port 270 149432 unique_id port 149432 remote_ip 10.8.1.130 149438 username mosi 149438 mac 149438 bytes_out 1630 149438 bytes_in 3898 149438 station_ip 151.235.107.13 149438 port 513 149438 unique_id port 149438 remote_ip 10.8.0.138 149439 username hashtadani4 149439 mac 149439 bytes_out 0 149439 bytes_in 0 149439 station_ip 37.129.232.176 149439 port 513 149439 unique_id port 149439 remote_ip 10.8.0.182 149441 username hashtadani4 149441 mac 149441 bytes_out 0 149441 bytes_in 0 149441 station_ip 37.129.232.176 149441 port 513 149441 unique_id port 149441 remote_ip 10.8.0.182 149443 username hashtadani4 149443 mac 149443 bytes_out 0 149443 bytes_in 0 149443 station_ip 37.129.232.176 149443 port 513 149443 unique_id port 149443 remote_ip 10.8.0.182 149444 username hashtadani4 149444 mac 149444 bytes_out 0 149444 bytes_in 0 149444 station_ip 37.129.232.176 149444 port 513 149444 unique_id port 149444 remote_ip 10.8.0.182 149449 username hashtadani4 149449 mac 149449 bytes_out 0 149449 bytes_in 0 149449 station_ip 37.129.232.176 149449 port 513 149449 unique_id port 149449 remote_ip 10.8.0.182 149450 username hashtadani4 149450 mac 149450 bytes_out 0 149450 bytes_in 0 149450 station_ip 37.129.232.176 149450 port 513 149450 unique_id port 149450 remote_ip 10.8.0.182 149456 username hashtadani4 149456 mac 149456 bytes_out 0 149456 bytes_in 0 149456 station_ip 37.129.232.176 149456 port 513 149456 unique_id port 149456 remote_ip 10.8.0.182 149457 username hashtadani4 149457 mac 149457 bytes_out 0 149457 bytes_in 0 149457 station_ip 37.129.232.176 149457 port 513 149457 unique_id port 149457 remote_ip 10.8.0.182 149463 username hashtadani4 149463 mac 149463 bytes_out 0 149463 bytes_in 0 149463 station_ip 37.129.232.176 149463 port 270 149463 unique_id port 149463 remote_ip 10.8.1.142 149467 username hashtadani4 149467 mac 149467 bytes_out 0 149467 bytes_in 0 149467 station_ip 37.129.232.176 149467 port 513 149467 unique_id port 149467 remote_ip 10.8.0.182 149469 username hashtadani4 149469 mac 149469 bytes_out 0 149469 bytes_in 0 149469 station_ip 37.129.232.176 149454 unique_id port 149454 remote_ip 10.8.1.142 149455 username malekpoir 149455 mac 149455 bytes_out 0 149455 bytes_in 0 149455 station_ip 5.120.180.209 149455 port 524 149455 unique_id port 149460 username sekonji3 149460 mac 149460 bytes_out 17014 149460 bytes_in 67306 149460 station_ip 83.122.234.228 149460 port 522 149460 unique_id port 149460 remote_ip 10.8.0.6 149462 username aminvpn 149462 unique_id port 149462 terminate_cause Lost-Carrier 149462 bytes_out 9858291 149462 bytes_in 141203707 149462 station_ip 5.119.251.225 149462 port 15730999 149462 nas_port_type Virtual 149462 remote_ip 5.5.5.200 149466 username hashtadani4 149466 mac 149466 bytes_out 0 149466 bytes_in 0 149466 station_ip 37.129.232.176 149466 port 270 149466 unique_id port 149466 remote_ip 10.8.1.142 149474 username hashtadani4 149474 mac 149474 bytes_out 0 149474 bytes_in 0 149474 station_ip 37.129.232.176 149474 port 513 149474 unique_id port 149474 remote_ip 10.8.0.182 149475 username hashtadani4 149475 mac 149475 bytes_out 0 149475 bytes_in 0 149475 station_ip 37.129.232.176 149475 port 513 149475 unique_id port 149475 remote_ip 10.8.0.182 149476 username hashtadani4 149476 mac 149476 bytes_out 0 149476 bytes_in 0 149476 station_ip 37.129.232.176 149476 port 513 149476 unique_id port 149476 remote_ip 10.8.0.182 149481 username aminvpn 149481 mac 149481 bytes_out 212964 149481 bytes_in 510276 149481 station_ip 5.120.183.250 149481 port 522 149481 unique_id port 149481 remote_ip 10.8.0.14 149482 username Mahin 149482 kill_reason Maximum check online fails reached 149482 mac 149482 bytes_out 0 149482 bytes_in 0 149482 station_ip 5.120.26.85 149482 port 265 149482 unique_id port 149482 remote_ip 10.8.1.186 149483 username barzegar 149483 mac 149483 bytes_out 0 149483 bytes_in 0 149483 station_ip 5.119.236.105 149483 port 524 149483 unique_id port 149483 remote_ip 10.8.0.234 149485 username hashtadani4 149485 mac 149485 bytes_out 694881 149485 bytes_in 3294025 149485 station_ip 37.129.232.176 149485 port 513 149485 unique_id port 149485 remote_ip 10.8.0.182 149489 username hashtadani4 149489 mac 149489 bytes_out 0 149489 bytes_in 0 149489 station_ip 37.129.232.176 149489 port 271 149489 unique_id port 149489 remote_ip 10.8.1.142 149491 username hashtadani4 149491 mac 149491 bytes_out 91790 149491 bytes_in 383427 149491 station_ip 37.129.232.176 149491 port 513 149491 unique_id port 149491 remote_ip 10.8.0.182 149492 username godarzi 149492 mac 149492 bytes_out 4491106 149492 bytes_in 49264593 149492 station_ip 5.202.5.1 149492 port 489 149492 unique_id port 149492 remote_ip 10.8.0.174 149494 username hashtadani4 149494 mac 149494 bytes_out 0 149494 bytes_in 0 149494 station_ip 37.129.232.176 149494 port 271 149494 unique_id port 149494 remote_ip 10.8.1.142 149495 username sabaghnezhad 149495 mac 149495 bytes_out 0 149495 bytes_in 0 149495 station_ip 113.203.88.140 149495 port 270 149495 unique_id port 149495 remote_ip 10.8.1.130 149497 username barzegar 149497 mac 149497 bytes_out 0 149497 bytes_in 0 149497 station_ip 5.119.236.105 149497 port 489 149497 unique_id port 149497 remote_ip 10.8.0.234 149499 username hashtadani4 149499 mac 149499 bytes_out 0 149499 bytes_in 0 149499 station_ip 37.129.232.176 149499 port 271 149499 unique_id port 149499 remote_ip 10.8.1.142 149502 username forozandeh1 149502 mac 149502 bytes_out 216202 149502 bytes_in 634392 149502 station_ip 37.129.126.188 149468 username barzegar 149468 mac 149468 bytes_out 0 149468 bytes_in 0 149468 station_ip 5.119.236.105 149468 port 513 149468 unique_id port 149468 remote_ip 10.8.0.234 149471 username hashtadani4 149471 mac 149471 bytes_out 0 149471 bytes_in 0 149471 station_ip 37.129.232.176 149471 port 513 149471 unique_id port 149471 remote_ip 10.8.0.182 149473 username hashtadani4 149473 mac 149473 bytes_out 0 149473 bytes_in 0 149473 station_ip 37.129.232.176 149473 port 513 149473 unique_id port 149473 remote_ip 10.8.0.182 149479 username hashtadani4 149479 mac 149479 bytes_out 0 149479 bytes_in 0 149479 station_ip 37.129.232.176 149479 port 513 149479 unique_id port 149479 remote_ip 10.8.0.182 149480 username hashtadani4 149480 mac 149480 bytes_out 0 149480 bytes_in 0 149480 station_ip 37.129.232.176 149480 port 513 149480 unique_id port 149480 remote_ip 10.8.0.182 149488 username hashtadani4 149488 mac 149488 bytes_out 0 149488 bytes_in 0 149488 station_ip 37.129.232.176 149488 port 513 149488 unique_id port 149488 remote_ip 10.8.0.182 149493 username hashtadani4 149493 mac 149493 bytes_out 0 149493 bytes_in 0 149493 station_ip 37.129.232.176 149493 port 271 149493 unique_id port 149493 remote_ip 10.8.1.142 149496 username hashtadani4 149496 mac 149496 bytes_out 0 149496 bytes_in 0 149496 station_ip 37.129.232.176 149496 port 271 149496 unique_id port 149496 remote_ip 10.8.1.142 149498 username hashtadani4 149498 mac 149498 bytes_out 0 149498 bytes_in 0 149498 station_ip 37.129.232.176 149498 port 271 149498 unique_id port 149498 remote_ip 10.8.1.142 149500 username ahmadi1 149500 mac 149500 bytes_out 3197387 149500 bytes_in 15171509 149500 station_ip 83.123.72.40 149500 port 522 149500 unique_id port 149500 remote_ip 10.8.0.250 149504 username Mahin 149504 mac 149504 bytes_out 0 149504 bytes_in 0 149504 station_ip 5.120.112.67 149504 port 524 149504 unique_id port 149504 remote_ip 10.8.0.158 149505 username ahmadi1 149505 mac 149505 bytes_out 9055139 149505 bytes_in 2330583 149505 station_ip 83.123.72.40 149505 port 522 149505 unique_id port 149505 remote_ip 10.8.0.250 149508 username hashtadani4 149508 mac 149508 bytes_out 0 149508 bytes_in 0 149508 station_ip 37.129.232.176 149508 port 489 149508 unique_id port 149508 remote_ip 10.8.0.182 149509 username hashtadani4 149509 mac 149509 bytes_out 0 149509 bytes_in 0 149509 station_ip 37.129.232.176 149509 port 489 149509 unique_id port 149509 remote_ip 10.8.0.182 149515 username barzegar 149515 mac 149515 bytes_out 0 149515 bytes_in 0 149515 station_ip 5.119.236.105 149515 port 524 149515 unique_id port 149515 remote_ip 10.8.0.234 149520 username hashtadani4 149520 mac 149520 bytes_out 0 149520 bytes_in 0 149520 station_ip 37.129.232.176 149520 port 489 149520 unique_id port 149520 remote_ip 10.8.0.182 149521 username hashtadani4 149521 mac 149521 bytes_out 0 149521 bytes_in 0 149521 station_ip 37.129.232.176 149521 port 489 149521 unique_id port 149521 remote_ip 10.8.0.182 149522 username hashtadani4 149522 mac 149522 bytes_out 0 149522 bytes_in 0 149522 station_ip 37.129.232.176 149522 port 265 149522 unique_id port 149522 remote_ip 10.8.1.142 149525 username nilufarrajaei 149525 kill_reason Another user logged on this global unique id 149525 mac 149525 bytes_out 0 149525 bytes_in 0 149525 station_ip 37.129.124.77 149525 port 527 149525 unique_id port 149525 remote_ip 10.8.0.206 149469 port 522 149469 unique_id port 149469 remote_ip 10.8.0.182 149470 username hashtadani4 149470 mac 149470 bytes_out 0 149470 bytes_in 0 149470 station_ip 37.129.232.176 149470 port 513 149470 unique_id port 149470 remote_ip 10.8.0.182 149472 username hashtadani4 149472 mac 149472 bytes_out 0 149472 bytes_in 0 149472 station_ip 37.129.232.176 149472 port 513 149472 unique_id port 149472 remote_ip 10.8.0.182 149477 username hashtadani4 149477 mac 149477 bytes_out 0 149477 bytes_in 0 149477 station_ip 37.129.232.176 149477 port 513 149477 unique_id port 149477 remote_ip 10.8.0.182 149478 username hashtadani4 149478 mac 149478 bytes_out 0 149478 bytes_in 0 149478 station_ip 37.129.232.176 149478 port 513 149478 unique_id port 149478 remote_ip 10.8.0.182 149484 username aminvpn 149484 unique_id port 149484 terminate_cause Lost-Carrier 149484 bytes_out 1484090 149484 bytes_in 91373349 149484 station_ip 5.119.96.174 149484 port 15731027 149484 nas_port_type Virtual 149484 remote_ip 5.5.5.185 149486 username hashtadani4 149486 mac 149486 bytes_out 0 149486 bytes_in 0 149486 station_ip 37.129.232.176 149486 port 513 149486 unique_id port 149486 remote_ip 10.8.0.182 149487 username hashtadani4 149487 mac 149487 bytes_out 0 149487 bytes_in 0 149487 station_ip 37.129.232.176 149487 port 271 149487 unique_id port 149487 remote_ip 10.8.1.142 149490 username aminvpn 149490 unique_id port 149490 terminate_cause User-Request 149490 bytes_out 830438 149490 bytes_in 15710971 149490 station_ip 31.57.129.158 149490 port 15731028 149490 nas_port_type Virtual 149490 remote_ip 5.5.5.204 149501 username ahmadi1 149501 mac 149501 bytes_out 0 149501 bytes_in 0 149501 station_ip 83.123.72.40 149501 port 271 149501 unique_id port 149501 remote_ip 10.8.1.10 149503 username Mahin 149503 mac 149503 bytes_out 0 149503 bytes_in 0 149503 station_ip 5.120.26.85 149503 port 513 149503 unique_id port 149503 remote_ip 10.8.0.158 149507 username hashtadani4 149507 mac 149507 bytes_out 0 149507 bytes_in 0 149507 station_ip 37.129.232.176 149507 port 489 149507 unique_id port 149507 remote_ip 10.8.0.182 149512 username hashtadani4 149512 mac 149512 bytes_out 0 149512 bytes_in 0 149512 station_ip 37.129.232.176 149512 port 265 149512 unique_id port 149512 remote_ip 10.8.1.142 149513 username hashtadani4 149513 mac 149513 bytes_out 0 149513 bytes_in 0 149513 station_ip 37.129.232.176 149513 port 489 149513 unique_id port 149513 remote_ip 10.8.0.182 149514 username hashtadani4 149514 mac 149514 bytes_out 0 149514 bytes_in 0 149514 station_ip 37.129.232.176 149514 port 265 149514 unique_id port 149514 remote_ip 10.8.1.142 149516 username hashtadani4 149516 mac 149516 bytes_out 0 149516 bytes_in 0 149516 station_ip 37.129.232.176 149516 port 489 149516 unique_id port 149516 remote_ip 10.8.0.182 149517 username hashtadani4 149517 mac 149517 bytes_out 0 149517 bytes_in 0 149517 station_ip 37.129.232.176 149517 port 489 149517 unique_id port 149517 remote_ip 10.8.0.182 149519 username hashtadani4 149519 mac 149519 bytes_out 0 149519 bytes_in 0 149519 station_ip 37.129.232.176 149519 port 489 149519 unique_id port 149519 remote_ip 10.8.0.182 149524 username hashtadani4 149524 mac 149524 bytes_out 0 149524 bytes_in 0 149524 station_ip 37.129.232.176 149524 port 265 149524 unique_id port 149524 remote_ip 10.8.1.142 149528 username hashtadani4 149528 mac 149528 bytes_out 0 149528 bytes_in 0 149502 port 513 149502 unique_id port 149502 remote_ip 10.8.0.130 149506 username yarmohamadi 149506 mac 149506 bytes_out 983090 149506 bytes_in 2501008 149506 station_ip 5.119.105.175 149506 port 524 149506 unique_id port 149506 remote_ip 10.8.0.150 149510 username hashtadani4 149510 mac 149510 bytes_out 0 149510 bytes_in 0 149510 station_ip 37.129.232.176 149510 port 265 149510 unique_id port 149510 remote_ip 10.8.1.142 149511 username hashtadani4 149511 mac 149511 bytes_out 0 149511 bytes_in 0 149511 station_ip 37.129.232.176 149511 port 489 149511 unique_id port 149511 remote_ip 10.8.0.182 149518 username hashtadani4 149518 mac 149518 bytes_out 0 149518 bytes_in 0 149518 station_ip 37.129.232.176 149518 port 265 149518 unique_id port 149518 remote_ip 10.8.1.142 149523 username hashtadani4 149523 mac 149523 bytes_out 0 149523 bytes_in 0 149523 station_ip 37.129.232.176 149523 port 489 149523 unique_id port 149523 remote_ip 10.8.0.182 149527 username sabaghnezhad 149527 mac 149527 bytes_out 0 149527 bytes_in 0 149527 station_ip 113.203.88.140 149527 port 270 149527 unique_id port 149527 remote_ip 10.8.1.130 149530 username hashtadani4 149530 mac 149530 bytes_out 0 149530 bytes_in 0 149530 station_ip 37.129.232.176 149530 port 489 149530 unique_id port 149530 remote_ip 10.8.0.182 149534 username hashtadani4 149534 mac 149534 bytes_out 0 149534 bytes_in 0 149534 station_ip 37.129.232.176 149534 port 270 149534 unique_id port 149534 remote_ip 10.8.1.142 149535 username hashtadani4 149535 mac 149535 bytes_out 0 149535 bytes_in 0 149535 station_ip 37.129.232.176 149535 port 270 149535 unique_id port 149535 remote_ip 10.8.1.142 149539 username hashtadani4 149539 mac 149539 bytes_out 0 149539 bytes_in 0 149539 station_ip 37.129.232.176 149539 port 270 149539 unique_id port 149539 remote_ip 10.8.1.142 149542 username Mahin 149542 kill_reason Maximum number of concurrent logins reached 149542 mac 149542 bytes_out 0 149542 bytes_in 0 149542 station_ip 5.119.43.107 149542 port 270 149542 unique_id port 149549 username Mahin 149549 kill_reason Maximum check online fails reached 149549 mac 149549 bytes_out 0 149549 bytes_in 0 149549 station_ip 5.119.43.107 149549 port 528 149549 unique_id port 149556 username hashtadani4 149556 mac 149556 bytes_out 0 149556 bytes_in 0 149556 station_ip 37.129.232.176 149556 port 270 149556 unique_id port 149556 remote_ip 10.8.1.142 149558 username barzegar 149558 mac 149558 bytes_out 0 149558 bytes_in 0 149558 station_ip 5.119.236.105 149558 port 489 149558 unique_id port 149558 remote_ip 10.8.0.234 149561 username hashtadani4 149561 mac 149561 bytes_out 0 149561 bytes_in 0 149561 station_ip 37.129.232.176 149561 port 489 149561 unique_id port 149561 remote_ip 10.8.0.182 149563 username barzegar 149563 mac 149563 bytes_out 0 149563 bytes_in 0 149563 station_ip 5.119.236.105 149563 port 525 149563 unique_id port 149563 remote_ip 10.8.0.234 149564 username meysam 149564 mac 149564 bytes_out 0 149564 bytes_in 0 149564 station_ip 188.159.251.74 149564 port 529 149564 unique_id port 149564 remote_ip 10.8.0.110 149566 username hashtadani4 149566 mac 149566 bytes_out 0 149566 bytes_in 0 149566 station_ip 37.129.232.176 149566 port 270 149566 unique_id port 149566 remote_ip 10.8.1.142 149568 username hashtadani4 149568 mac 149568 bytes_out 0 149568 bytes_in 0 149568 station_ip 37.129.232.176 149568 port 489 149526 username hashtadani4 149526 mac 149526 bytes_out 0 149526 bytes_in 0 149526 station_ip 37.129.232.176 149526 port 489 149526 unique_id port 149526 remote_ip 10.8.0.182 149529 username hashtadani4 149529 mac 149529 bytes_out 0 149529 bytes_in 0 149529 station_ip 37.129.232.176 149529 port 489 149529 unique_id port 149529 remote_ip 10.8.0.182 149533 username hashtadani4 149533 mac 149533 bytes_out 0 149533 bytes_in 0 149533 station_ip 37.129.232.176 149533 port 270 149533 unique_id port 149533 remote_ip 10.8.1.142 149537 username Mahin 149537 mac 149537 bytes_out 0 149537 bytes_in 0 149537 station_ip 5.119.43.107 149537 port 513 149537 unique_id port 149537 remote_ip 10.8.0.158 149538 username Mahin 149538 mac 149538 bytes_out 0 149538 bytes_in 0 149538 station_ip 5.119.43.107 149538 port 489 149538 unique_id port 149538 remote_ip 10.8.0.158 149541 username hashtadani4 149541 mac 149541 bytes_out 0 149541 bytes_in 0 149541 station_ip 37.129.232.176 149541 port 513 149541 unique_id port 149541 remote_ip 10.8.0.182 149544 username hashtadani4 149544 mac 149544 bytes_out 0 149544 bytes_in 0 149544 station_ip 37.129.232.176 149544 port 513 149544 unique_id port 149544 remote_ip 10.8.0.182 149545 username hashtadani4 149545 mac 149545 bytes_out 0 149545 bytes_in 0 149545 station_ip 37.129.232.176 149545 port 513 149545 unique_id port 149545 remote_ip 10.8.0.182 149548 username hashtadani4 149548 mac 149548 bytes_out 0 149548 bytes_in 0 149548 station_ip 37.129.232.176 149548 port 513 149548 unique_id port 149548 remote_ip 10.8.0.182 149550 username forozandeh1 149550 mac 149550 bytes_out 0 149550 bytes_in 0 149550 station_ip 83.123.191.190 149550 port 489 149550 unique_id port 149550 remote_ip 10.8.0.130 149553 username hashtadani4 149553 mac 149553 bytes_out 0 149553 bytes_in 0 149553 station_ip 37.129.232.176 149553 port 270 149553 unique_id port 149553 remote_ip 10.8.1.142 149554 username hashtadani4 149554 mac 149554 bytes_out 0 149554 bytes_in 0 149554 station_ip 37.129.232.176 149554 port 270 149554 unique_id port 149554 remote_ip 10.8.1.142 149555 username hashtadani4 149555 mac 149555 bytes_out 0 149555 bytes_in 0 149555 station_ip 37.129.232.176 149555 port 513 149555 unique_id port 149555 remote_ip 10.8.0.182 149560 username hashtadani4 149560 mac 149560 bytes_out 0 149560 bytes_in 0 149560 station_ip 37.129.232.176 149560 port 270 149560 unique_id port 149560 remote_ip 10.8.1.142 149565 username hashtadani4 149565 mac 149565 bytes_out 0 149565 bytes_in 0 149565 station_ip 37.129.232.176 149565 port 489 149565 unique_id port 149565 remote_ip 10.8.0.182 149572 username hashtadani4 149572 mac 149572 bytes_out 0 149572 bytes_in 0 149572 station_ip 37.129.232.176 149572 port 489 149572 unique_id port 149572 remote_ip 10.8.0.182 149573 username hashtadani4 149573 mac 149573 bytes_out 0 149573 bytes_in 0 149573 station_ip 37.129.232.176 149573 port 489 149573 unique_id port 149573 remote_ip 10.8.0.182 149576 username hashtadani4 149576 mac 149576 bytes_out 0 149576 bytes_in 0 149576 station_ip 37.129.232.176 149576 port 265 149576 unique_id port 149576 remote_ip 10.8.1.142 149577 username hashtadani4 149577 mac 149577 bytes_out 0 149577 bytes_in 0 149577 station_ip 37.129.232.176 149577 port 513 149577 unique_id port 149577 remote_ip 10.8.0.182 149580 username hashtadani4 149580 mac 149528 station_ip 37.129.232.176 149528 port 270 149528 unique_id port 149528 remote_ip 10.8.1.142 149531 username hashtadani4 149531 mac 149531 bytes_out 0 149531 bytes_in 0 149531 station_ip 37.129.232.176 149531 port 270 149531 unique_id port 149531 remote_ip 10.8.1.142 149532 username hashtadani4 149532 mac 149532 bytes_out 0 149532 bytes_in 0 149532 station_ip 37.129.232.176 149532 port 489 149532 unique_id port 149532 remote_ip 10.8.0.182 149536 username hashtadani4 149536 mac 149536 bytes_out 0 149536 bytes_in 0 149536 station_ip 37.129.232.176 149536 port 489 149536 unique_id port 149536 remote_ip 10.8.0.182 149540 username Mahin 149540 mac 149540 bytes_out 0 149540 bytes_in 0 149540 station_ip 5.119.43.107 149540 port 513 149540 unique_id port 149540 remote_ip 10.8.0.158 149543 username hashtadani4 149543 mac 149543 bytes_out 0 149543 bytes_in 0 149543 station_ip 37.129.232.176 149543 port 270 149543 unique_id port 149543 remote_ip 10.8.1.142 149546 username Mahin 149546 mac 149546 bytes_out 0 149546 bytes_in 0 149546 station_ip 5.119.43.107 149546 port 525 149546 unique_id port 149546 remote_ip 10.8.0.158 149547 username hashtadani4 149547 mac 149547 bytes_out 0 149547 bytes_in 0 149547 station_ip 37.129.232.176 149547 port 270 149547 unique_id port 149547 remote_ip 10.8.1.142 149551 username hashtadani4 149551 mac 149551 bytes_out 0 149551 bytes_in 0 149551 station_ip 37.129.232.176 149551 port 270 149551 unique_id port 149551 remote_ip 10.8.1.142 149552 username hashtadani4 149552 mac 149552 bytes_out 0 149552 bytes_in 0 149552 station_ip 37.129.232.176 149552 port 489 149552 unique_id port 149552 remote_ip 10.8.0.182 149557 username hashtadani4 149557 mac 149557 bytes_out 0 149557 bytes_in 0 149557 station_ip 37.129.232.176 149557 port 513 149557 unique_id port 149557 remote_ip 10.8.0.182 149559 username hashtadani4 149559 mac 149559 bytes_out 0 149559 bytes_in 0 149559 station_ip 37.129.232.176 149559 port 489 149559 unique_id port 149559 remote_ip 10.8.0.182 149562 username aminvpn 149562 mac 149562 bytes_out 0 149562 bytes_in 0 149562 station_ip 31.56.220.23 149562 port 513 149562 unique_id port 149562 remote_ip 10.8.0.14 149567 username sabaghnezhad 149567 mac 149567 bytes_out 17102 149567 bytes_in 35008 149567 station_ip 37.129.114.36 149567 port 265 149567 unique_id port 149567 remote_ip 10.8.1.130 149571 username hashtadani4 149571 mac 149571 bytes_out 0 149571 bytes_in 0 149571 station_ip 37.129.232.176 149571 port 265 149571 unique_id port 149571 remote_ip 10.8.1.142 149578 username hashtadani4 149578 mac 149578 bytes_out 0 149578 bytes_in 0 149578 station_ip 37.129.232.176 149578 port 529 149578 unique_id port 149578 remote_ip 10.8.0.182 149587 username hashtadani4 149587 mac 149587 bytes_out 0 149587 bytes_in 0 149587 station_ip 37.129.232.176 149587 port 265 149587 unique_id port 149587 remote_ip 10.8.1.142 149589 username hashtadani4 149589 mac 149589 bytes_out 0 149589 bytes_in 0 149589 station_ip 37.129.232.176 149589 port 265 149589 unique_id port 149589 remote_ip 10.8.1.142 149590 username hashtadani4 149590 mac 149590 bytes_out 375788 149590 bytes_in 4833610 149590 station_ip 37.129.232.176 149590 port 529 149590 unique_id port 149590 remote_ip 10.8.0.182 149594 username hashtadani4 149594 mac 149594 bytes_out 12856 149594 bytes_in 13950 149594 station_ip 5.202.12.184 149594 port 529 149568 unique_id port 149568 remote_ip 10.8.0.182 149569 username hashtadani4 149569 mac 149569 bytes_out 0 149569 bytes_in 0 149569 station_ip 37.129.232.176 149569 port 489 149569 unique_id port 149569 remote_ip 10.8.0.182 149570 username hashtadani4 149570 mac 149570 bytes_out 0 149570 bytes_in 0 149570 station_ip 37.129.232.176 149570 port 489 149570 unique_id port 149570 remote_ip 10.8.0.182 149574 username hashtadani4 149574 mac 149574 bytes_out 0 149574 bytes_in 0 149574 station_ip 37.129.232.176 149574 port 489 149574 unique_id port 149574 remote_ip 10.8.0.182 149575 username hashtadani4 149575 mac 149575 bytes_out 0 149575 bytes_in 0 149575 station_ip 37.129.232.176 149575 port 265 149575 unique_id port 149575 remote_ip 10.8.1.142 149579 username barzegar 149579 mac 149579 bytes_out 0 149579 bytes_in 0 149579 station_ip 5.119.236.105 149579 port 525 149579 unique_id port 149579 remote_ip 10.8.0.234 149581 username hashtadani4 149581 mac 149581 bytes_out 0 149581 bytes_in 0 149581 station_ip 37.129.232.176 149581 port 513 149581 unique_id port 149581 remote_ip 10.8.0.182 149582 username hashtadani4 149582 mac 149582 bytes_out 0 149582 bytes_in 0 149582 station_ip 37.129.232.176 149582 port 513 149582 unique_id port 149582 remote_ip 10.8.0.182 149584 username sabaghnezhad 149584 mac 149584 bytes_out 0 149584 bytes_in 0 149584 station_ip 37.129.114.36 149584 port 513 149584 unique_id port 149584 remote_ip 10.8.0.186 149586 username hashtadani4 149586 mac 149586 bytes_out 0 149586 bytes_in 0 149586 station_ip 37.129.232.176 149586 port 265 149586 unique_id port 149586 remote_ip 10.8.1.142 149588 username hashtadani4 149588 mac 149588 bytes_out 0 149588 bytes_in 0 149588 station_ip 37.129.232.176 149588 port 265 149588 unique_id port 149588 remote_ip 10.8.1.142 149592 username barzegar 149592 mac 149592 bytes_out 0 149592 bytes_in 0 149592 station_ip 5.119.236.105 149592 port 531 149592 unique_id port 149592 remote_ip 10.8.0.234 149596 username meysam 149596 kill_reason Another user logged on this global unique id 149596 mac 149596 bytes_out 0 149596 bytes_in 0 149596 station_ip 188.159.251.74 149596 port 513 149596 unique_id port 149596 remote_ip 10.8.0.110 149602 username meysam 149602 kill_reason Another user logged on this global unique id 149602 mac 149602 bytes_out 0 149602 bytes_in 0 149602 station_ip 188.158.49.160 149602 port 534 149602 unique_id port 149606 username barzegar 149606 mac 149606 bytes_out 8245 149606 bytes_in 10294 149606 station_ip 5.119.236.105 149606 port 529 149606 unique_id port 149606 remote_ip 10.8.0.234 149610 username saeed9658 149610 mac 149610 bytes_out 0 149610 bytes_in 0 149610 station_ip 5.119.214.91 149610 port 530 149610 unique_id port 149610 remote_ip 10.8.0.62 149611 username barzegar 149611 mac 149611 bytes_out 6356 149611 bytes_in 8558 149611 station_ip 5.119.236.105 149611 port 534 149611 unique_id port 149611 remote_ip 10.8.0.234 149613 username hashtadani4 149613 mac 149613 bytes_out 0 149613 bytes_in 0 149613 station_ip 5.202.12.184 149613 port 534 149613 unique_id port 149613 remote_ip 10.8.0.182 149616 username sabaghnezhad 149616 mac 149616 bytes_out 0 149616 bytes_in 0 149616 station_ip 37.129.114.36 149616 port 525 149616 unique_id port 149616 remote_ip 10.8.0.186 149625 username barzegar 149625 mac 149625 bytes_out 0 149625 bytes_in 0 149625 station_ip 5.119.236.105 149625 port 513 149580 bytes_out 0 149580 bytes_in 0 149580 station_ip 37.129.232.176 149580 port 265 149580 unique_id port 149580 remote_ip 10.8.1.142 149583 username aminvpn 149583 unique_id port 149583 terminate_cause User-Request 149583 bytes_out 1192549 149583 bytes_in 14170812 149583 station_ip 31.57.129.158 149583 port 15731029 149583 nas_port_type Virtual 149583 remote_ip 5.5.5.205 149585 username hashtadani4 149585 mac 149585 bytes_out 54162 149585 bytes_in 30173 149585 station_ip 37.129.232.176 149585 port 265 149585 unique_id port 149585 remote_ip 10.8.1.142 149591 username hashtadani4 149591 mac 149591 bytes_out 0 149591 bytes_in 0 149591 station_ip 37.129.232.176 149591 port 529 149591 unique_id port 149591 remote_ip 10.8.0.182 149593 username hashtadani4 149593 mac 149593 bytes_out 0 149593 bytes_in 0 149593 station_ip 5.202.12.184 149593 port 529 149593 unique_id port 149593 remote_ip 10.8.0.182 149597 username hashtadani4 149597 kill_reason Maximum check online fails reached 149597 mac 149597 bytes_out 0 149597 bytes_in 0 149597 station_ip 5.202.12.184 149597 port 531 149597 unique_id port 149598 username meysam 149598 mac 149598 bytes_out 0 149598 bytes_in 0 149598 station_ip 188.159.251.74 149598 port 513 149598 unique_id port 149601 username meysam 149601 kill_reason Another user logged on this global unique id 149601 mac 149601 bytes_out 0 149601 bytes_in 0 149601 station_ip 188.158.49.160 149601 port 534 149601 unique_id port 149604 username hashtadani4 149604 mac 149604 bytes_out 0 149604 bytes_in 0 149604 station_ip 5.202.12.184 149604 port 513 149604 unique_id port 149604 remote_ip 10.8.0.182 149608 username godarzi 149608 kill_reason Another user logged on this global unique id 149608 mac 149608 bytes_out 0 149608 bytes_in 0 149608 station_ip 5.202.5.1 149608 port 522 149608 unique_id port 149608 remote_ip 10.8.0.174 149609 username saeed9658 149609 mac 149609 bytes_out 0 149609 bytes_in 0 149609 station_ip 5.119.214.91 149609 port 530 149609 unique_id port 149609 remote_ip 10.8.0.62 149612 username hashtadani4 149612 mac 149612 bytes_out 0 149612 bytes_in 0 149612 station_ip 5.202.12.184 149612 port 529 149612 unique_id port 149612 remote_ip 10.8.0.182 149614 username amin.saeedi 149614 unique_id port 149614 terminate_cause User-Request 149614 bytes_out 871670 149614 bytes_in 9552466 149614 station_ip 151.238.243.163 149614 port 15731031 149614 nas_port_type Virtual 149614 remote_ip 5.5.5.145 149618 username meysam 149618 mac 149618 bytes_out 0 149618 bytes_in 0 149618 station_ip 188.158.49.160 149618 port 513 149618 unique_id port 149621 username nilufarrajaei 149621 mac 149621 bytes_out 0 149621 bytes_in 0 149621 station_ip 37.129.124.77 149621 port 527 149621 unique_id port 149622 username barzegar 149622 mac 149622 bytes_out 9948 149622 bytes_in 106635 149622 station_ip 5.119.236.105 149622 port 513 149622 unique_id port 149622 remote_ip 10.8.0.234 149627 username barzegar 149627 mac 149627 bytes_out 0 149627 bytes_in 0 149627 station_ip 5.119.236.105 149627 port 513 149627 unique_id port 149627 remote_ip 10.8.0.234 149631 username barzegar 149631 mac 149631 bytes_out 0 149631 bytes_in 0 149631 station_ip 5.119.236.105 149631 port 271 149631 unique_id port 149631 remote_ip 10.8.1.174 149633 username hashtadani4 149633 mac 149633 bytes_out 0 149633 bytes_in 0 149633 station_ip 113.203.106.73 149633 port 525 149633 unique_id port 149633 remote_ip 10.8.0.182 149634 username hadibarzegar 149594 unique_id port 149594 remote_ip 10.8.0.182 149595 username hashtadani4 149595 mac 149595 bytes_out 0 149595 bytes_in 0 149595 station_ip 5.202.12.184 149595 port 529 149595 unique_id port 149595 remote_ip 10.8.0.182 149599 username hashtadani4 149599 kill_reason Maximum check online fails reached 149599 mac 149599 bytes_out 0 149599 bytes_in 0 149599 station_ip 5.202.12.184 149599 port 532 149599 unique_id port 149600 username hashtadani4 149600 kill_reason Maximum check online fails reached 149600 mac 149600 bytes_out 0 149600 bytes_in 0 149600 station_ip 5.202.12.184 149600 port 533 149600 unique_id port 149603 username saeed9658 149603 mac 149603 bytes_out 0 149603 bytes_in 0 149603 station_ip 5.119.214.91 149603 port 530 149603 unique_id port 149603 remote_ip 10.8.0.62 149605 username meysam 149605 mac 149605 bytes_out 0 149605 bytes_in 0 149605 station_ip 188.158.49.160 149605 port 534 149605 unique_id port 149605 remote_ip 10.8.0.110 149607 username hashtadani4 149607 mac 149607 bytes_out 0 149607 bytes_in 0 149607 station_ip 5.202.12.184 149607 port 529 149607 unique_id port 149607 remote_ip 10.8.0.182 149615 username meysam 149615 kill_reason Another user logged on this global unique id 149615 mac 149615 bytes_out 0 149615 bytes_in 0 149615 station_ip 188.158.49.160 149615 port 513 149615 unique_id port 149615 remote_ip 10.8.0.110 149617 username hashtadani4 149617 mac 149617 bytes_out 0 149617 bytes_in 0 149617 station_ip 5.202.12.184 149617 port 534 149617 unique_id port 149617 remote_ip 10.8.0.182 149619 username barzegar 149619 mac 149619 bytes_out 0 149619 bytes_in 0 149619 station_ip 5.119.236.105 149619 port 529 149619 unique_id port 149619 remote_ip 10.8.0.234 149620 username saeed9658 149620 kill_reason Another user logged on this global unique id 149620 mac 149620 bytes_out 0 149620 bytes_in 0 149620 station_ip 5.119.214.91 149620 port 530 149620 unique_id port 149620 remote_ip 10.8.0.62 149623 username saeed9658 149623 kill_reason Another user logged on this global unique id 149623 mac 149623 bytes_out 0 149623 bytes_in 0 149623 station_ip 5.119.214.91 149623 port 530 149623 unique_id port 149624 username alipour 149624 mac 149624 bytes_out 0 149624 bytes_in 0 149624 station_ip 83.123.143.5 149624 port 535 149624 unique_id port 149624 remote_ip 10.8.0.102 149626 username saeed9658 149626 mac 149626 bytes_out 0 149626 bytes_in 0 149626 station_ip 5.119.214.91 149626 port 530 149626 unique_id port 149628 username hadibarzegar 149628 kill_reason Maximum check online fails reached 149628 mac 149628 bytes_out 0 149628 bytes_in 0 149628 station_ip 37.129.232.6 149628 port 270 149628 unique_id port 149629 username godarzi 149629 mac 149629 bytes_out 0 149629 bytes_in 0 149629 station_ip 5.202.5.1 149629 port 522 149629 unique_id port 149632 username barzegar 149632 mac 149632 bytes_out 0 149632 bytes_in 0 149632 station_ip 5.119.236.105 149632 port 265 149632 unique_id port 149632 remote_ip 10.8.1.174 149635 username barzegar 149635 mac 149635 bytes_out 0 149635 bytes_in 0 149635 station_ip 5.119.236.105 149635 port 265 149635 unique_id port 149635 remote_ip 10.8.1.174 149637 username hashtadani4 149637 mac 149637 bytes_out 0 149637 bytes_in 0 149637 station_ip 113.203.106.73 149637 port 525 149637 unique_id port 149637 remote_ip 10.8.0.182 149638 username aminvpn 149638 mac 149638 bytes_out 0 149638 bytes_in 0 149638 station_ip 31.56.220.23 149638 port 522 149625 unique_id port 149625 remote_ip 10.8.0.234 149630 username alipour 149630 mac 149630 bytes_out 44123 149630 bytes_in 65098 149630 station_ip 83.123.143.5 149630 port 265 149630 unique_id port 149630 remote_ip 10.8.1.50 149636 username khalili 149636 kill_reason Another user logged on this global unique id 149636 mac 149636 bytes_out 0 149636 bytes_in 0 149636 station_ip 5.119.24.180 149636 port 526 149636 unique_id port 149636 remote_ip 10.8.0.86 149642 username barzegar 149642 mac 149642 bytes_out 0 149642 bytes_in 0 149642 station_ip 5.119.236.105 149642 port 265 149642 unique_id port 149642 remote_ip 10.8.1.174 149646 username nilufarrajaei 149646 kill_reason Another user logged on this global unique id 149646 mac 149646 bytes_out 0 149646 bytes_in 0 149646 station_ip 37.129.124.77 149646 port 529 149646 unique_id port 149646 remote_ip 10.8.0.206 149647 username barzegar 149647 mac 149647 bytes_out 0 149647 bytes_in 0 149647 station_ip 5.119.236.105 149647 port 271 149647 unique_id port 149647 remote_ip 10.8.1.174 149652 username hashtadani4 149652 mac 149652 bytes_out 0 149652 bytes_in 0 149652 station_ip 113.203.106.73 149652 port 265 149652 unique_id port 149652 remote_ip 10.8.1.142 149655 username barzegar 149655 mac 149655 bytes_out 0 149655 bytes_in 0 149655 station_ip 5.119.236.105 149655 port 535 149655 unique_id port 149655 remote_ip 10.8.0.234 149657 username hashtadani4 149657 kill_reason Maximum check online fails reached 149657 mac 149657 bytes_out 0 149657 bytes_in 0 149657 station_ip 113.203.106.73 149657 port 534 149657 unique_id port 149661 username khademi 149661 mac 149661 bytes_out 517879 149661 bytes_in 2259961 149661 station_ip 83.123.229.197 149661 port 514 149661 unique_id port 149661 remote_ip 10.8.0.10 149662 username hadibarzegar 149662 mac 149662 bytes_out 372575 149662 bytes_in 7918437 149662 station_ip 37.129.232.6 149662 port 522 149662 unique_id port 149662 remote_ip 10.8.0.154 149664 username zotaher 149664 mac 149664 bytes_out 93457 149664 bytes_in 288449 149664 station_ip 83.123.226.187 149664 port 527 149664 unique_id port 149664 remote_ip 10.8.0.194 149665 username moradi 149665 mac 149665 bytes_out 1343108 149665 bytes_in 2502359 149665 station_ip 46.225.212.70 149665 port 524 149665 unique_id port 149665 remote_ip 10.8.0.226 149667 username barzegar 149667 mac 149667 bytes_out 0 149667 bytes_in 0 149667 station_ip 5.119.236.105 149667 port 524 149667 unique_id port 149667 remote_ip 10.8.0.234 149670 username mamal 149670 kill_reason Relative expiration date has reached 149670 unique_id port 149670 bytes_out 0 149670 bytes_in 0 149670 station_ip 37.129.228.116 149670 port 15731035 149670 nas_port_type Virtual 149674 username mamal 149674 kill_reason Relative expiration date has reached 149674 unique_id port 149674 bytes_out 0 149674 bytes_in 0 149674 station_ip 37.129.228.116 149674 port 15731037 149674 nas_port_type Virtual 149680 username mamal 149680 kill_reason Relative expiration date has reached 149680 unique_id port 149680 bytes_out 0 149680 bytes_in 0 149680 station_ip 113.203.104.81 149680 port 15731040 149680 nas_port_type Virtual 149682 username mamal 149682 kill_reason Relative expiration date has reached 149682 unique_id port 149682 bytes_out 0 149682 bytes_in 0 149682 station_ip 113.203.104.81 149682 port 15731041 149682 nas_port_type Virtual 149685 username mamal 149685 kill_reason Relative expiration date has reached 149685 unique_id port 149685 bytes_out 0 149685 bytes_in 0 149685 station_ip 113.203.104.81 149685 port 15731042 149685 nas_port_type Virtual 149634 mac 149634 bytes_out 441829 149634 bytes_in 577687 149634 station_ip 37.129.232.6 149634 port 527 149634 unique_id port 149634 remote_ip 10.8.0.154 149640 username hashtadani4 149640 mac 149640 bytes_out 0 149640 bytes_in 0 149640 station_ip 113.203.106.73 149640 port 522 149640 unique_id port 149640 remote_ip 10.8.0.182 149641 username aminvpn 149641 mac 149641 bytes_out 0 149641 bytes_in 0 149641 station_ip 31.56.220.23 149641 port 527 149641 unique_id port 149641 remote_ip 10.8.0.14 149643 username hashtadani4 149643 mac 149643 bytes_out 0 149643 bytes_in 0 149643 station_ip 113.203.106.73 149643 port 271 149643 unique_id port 149643 remote_ip 10.8.1.142 149644 username hashtadani4 149644 mac 149644 bytes_out 0 149644 bytes_in 0 149644 station_ip 113.203.106.73 149644 port 522 149644 unique_id port 149644 remote_ip 10.8.0.182 149649 username nilufarrajaei 149649 mac 149649 bytes_out 0 149649 bytes_in 0 149649 station_ip 37.129.124.77 149649 port 529 149649 unique_id port 149654 username hashtadani4 149654 kill_reason Maximum number of concurrent logins reached 149654 mac 149654 bytes_out 0 149654 bytes_in 0 149654 station_ip 113.203.106.73 149654 port 265 149654 unique_id port 149656 username vanila 149656 mac 149656 bytes_out 148124 149656 bytes_in 534276 149656 station_ip 37.129.245.139 149656 port 527 149656 unique_id port 149656 remote_ip 10.8.0.178 149658 username hashtadani4 149658 kill_reason Maximum check online fails reached 149658 mac 149658 bytes_out 0 149658 bytes_in 0 149658 station_ip 113.203.106.73 149658 port 513 149658 unique_id port 149663 username barzegar 149663 mac 149663 bytes_out 37058 149663 bytes_in 143389 149663 station_ip 5.119.236.105 149663 port 522 149663 unique_id port 149663 remote_ip 10.8.0.234 149668 username barzegar 149668 mac 149668 bytes_out 5078 149668 bytes_in 10527 149668 station_ip 5.119.236.105 149668 port 514 149668 unique_id port 149668 remote_ip 10.8.0.234 149671 username barzegar 149671 mac 149671 bytes_out 0 149671 bytes_in 0 149671 station_ip 5.119.236.105 149671 port 272 149671 unique_id port 149671 remote_ip 10.8.1.174 149672 username mamal 149672 kill_reason Relative expiration date has reached 149672 unique_id port 149672 bytes_out 0 149672 bytes_in 0 149672 station_ip 37.129.228.116 149672 port 15731036 149672 nas_port_type Virtual 149673 username hadibarzegar 149673 mac 149673 bytes_out 0 149673 bytes_in 0 149673 station_ip 37.129.232.6 149673 port 271 149673 unique_id port 149673 remote_ip 10.8.1.150 149676 username hashtadani4 149676 mac 149676 bytes_out 0 149676 bytes_in 0 149676 station_ip 113.203.106.73 149676 port 514 149676 unique_id port 149676 remote_ip 10.8.0.182 149677 username mamal 149677 kill_reason Relative expiration date has reached 149677 unique_id port 149677 bytes_out 0 149677 bytes_in 0 149677 station_ip 113.203.104.81 149677 port 15731038 149677 nas_port_type Virtual 149678 username mamal 149678 kill_reason Relative expiration date has reached 149678 unique_id port 149678 bytes_out 0 149678 bytes_in 0 149678 station_ip 113.203.104.81 149678 port 15731039 149678 nas_port_type Virtual 149679 username hashtadani4 149679 mac 149679 bytes_out 1644 149679 bytes_in 5182 149679 station_ip 113.203.106.73 149679 port 524 149679 unique_id port 149679 remote_ip 10.8.0.182 149681 username barzegar 149681 mac 149681 bytes_out 0 149681 bytes_in 0 149681 station_ip 5.119.236.105 149681 port 537 149681 unique_id port 149681 remote_ip 10.8.0.234 149638 unique_id port 149638 remote_ip 10.8.0.14 149639 username hashtadani4 149639 mac 149639 bytes_out 0 149639 bytes_in 0 149639 station_ip 113.203.106.73 149639 port 525 149639 unique_id port 149639 remote_ip 10.8.0.182 149645 username hashtadani4 149645 mac 149645 bytes_out 1644 149645 bytes_in 5182 149645 station_ip 113.203.106.73 149645 port 527 149645 unique_id port 149645 remote_ip 10.8.0.182 149648 username hashtadani4 149648 mac 149648 bytes_out 0 149648 bytes_in 0 149648 station_ip 113.203.106.73 149648 port 265 149648 unique_id port 149648 remote_ip 10.8.1.142 149650 username hadibarzegar 149650 mac 149650 bytes_out 59160 149650 bytes_in 62458 149650 station_ip 37.129.232.6 149650 port 530 149650 unique_id port 149650 remote_ip 10.8.0.154 149651 username alipour 149651 mac 149651 bytes_out 157967 149651 bytes_in 348012 149651 station_ip 83.123.143.5 149651 port 513 149651 unique_id port 149651 remote_ip 10.8.0.102 149653 username hashtadani4 149653 mac 149653 bytes_out 0 149653 bytes_in 0 149653 station_ip 113.203.106.73 149653 port 265 149653 unique_id port 149653 remote_ip 10.8.1.142 149659 username aminvpn 149659 unique_id port 149659 terminate_cause User-Request 149659 bytes_out 17829349 149659 bytes_in 681935401 149659 station_ip 31.57.129.158 149659 port 15731030 149659 nas_port_type Virtual 149659 remote_ip 5.5.5.219 149660 username barzegar 149660 mac 149660 bytes_out 0 149660 bytes_in 0 149660 station_ip 5.119.236.105 149660 port 527 149660 unique_id port 149660 remote_ip 10.8.0.234 149666 username hadibarzegar 149666 mac 149666 bytes_out 14762 149666 bytes_in 10342 149666 station_ip 37.129.232.6 149666 port 514 149666 unique_id port 149666 remote_ip 10.8.0.154 149669 username fezealinaghi 149669 kill_reason Another user logged on this global unique id 149669 mac 149669 bytes_out 0 149669 bytes_in 0 149669 station_ip 113.203.106.33 149669 port 489 149669 unique_id port 149669 remote_ip 10.8.0.78 149675 username hashtadani4 149675 mac 149675 bytes_out 1609387 149675 bytes_in 13538941 149675 station_ip 113.203.106.73 149675 port 514 149675 unique_id port 149675 remote_ip 10.8.0.182 149684 username aminvpn 149684 unique_id port 149684 terminate_cause Lost-Carrier 149684 bytes_out 139519 149684 bytes_in 246442 149684 station_ip 31.57.129.158 149684 port 15731034 149684 nas_port_type Virtual 149684 remote_ip 5.5.5.157 149690 username hashtadani4 149690 mac 149690 bytes_out 0 149690 bytes_in 0 149690 station_ip 113.203.106.73 149690 port 538 149690 unique_id port 149690 remote_ip 10.8.0.182 149693 username barzegar 149693 mac 149693 bytes_out 0 149693 bytes_in 0 149693 station_ip 5.119.236.105 149693 port 272 149693 unique_id port 149693 remote_ip 10.8.1.174 149699 username hashtadani4 149699 mac 149699 bytes_out 2164 149699 bytes_in 4441 149699 station_ip 113.203.106.73 149699 port 539 149699 unique_id port 149699 remote_ip 10.8.0.182 149701 username moradi 149701 mac 149701 bytes_out 92633 149701 bytes_in 156941 149701 station_ip 83.122.218.74 149701 port 522 149701 unique_id port 149701 remote_ip 10.8.0.226 149704 username hashtadani4 149704 kill_reason Maximum check online fails reached 149704 mac 149704 bytes_out 0 149704 bytes_in 0 149704 station_ip 113.203.106.73 149704 port 539 149704 unique_id port 149706 username barzegar 149706 mac 149706 bytes_out 2314 149706 bytes_in 4570 149706 station_ip 5.119.236.105 149706 port 522 149706 unique_id port 149706 remote_ip 10.8.0.234 149711 username barzegar 149683 username hashtadani4 149683 kill_reason Maximum check online fails reached 149683 mac 149683 bytes_out 0 149683 bytes_in 0 149683 station_ip 113.203.106.73 149683 port 527 149683 unique_id port 149686 username mamal 149686 kill_reason Relative expiration date has reached 149686 unique_id port 149686 bytes_out 0 149686 bytes_in 0 149686 station_ip 113.203.104.81 149686 port 15731043 149686 nas_port_type Virtual 149692 username hashtadani4 149692 mac 149692 bytes_out 0 149692 bytes_in 0 149692 station_ip 113.203.106.73 149692 port 535 149692 unique_id port 149692 remote_ip 10.8.0.182 149696 username hashtadani4 149696 mac 149696 bytes_out 0 149696 bytes_in 0 149696 station_ip 113.203.106.73 149696 port 535 149696 unique_id port 149696 remote_ip 10.8.0.182 149698 username hashtadani4 149698 kill_reason Maximum check online fails reached 149698 mac 149698 bytes_out 0 149698 bytes_in 0 149698 station_ip 113.203.106.73 149698 port 538 149698 unique_id port 149700 username khademi 149700 kill_reason Another user logged on this global unique id 149700 mac 149700 bytes_out 0 149700 bytes_in 0 149700 station_ip 83.123.229.197 149700 port 265 149700 unique_id port 149700 remote_ip 10.8.1.242 149707 username hashtadani4 149707 mac 149707 bytes_out 0 149707 bytes_in 0 149707 station_ip 113.203.106.73 149707 port 514 149707 unique_id port 149707 remote_ip 10.8.0.182 149710 username barzegar 149710 mac 149710 bytes_out 79877 149710 bytes_in 268240 149710 station_ip 5.119.236.105 149710 port 522 149710 unique_id port 149710 remote_ip 10.8.0.234 149715 username khalili 149715 kill_reason Another user logged on this global unique id 149715 mac 149715 bytes_out 0 149715 bytes_in 0 149715 station_ip 5.119.24.180 149715 port 526 149715 unique_id port 149717 username malekpoir 149717 mac 149717 bytes_out 0 149717 bytes_in 0 149717 station_ip 5.120.180.209 149717 port 273 149717 unique_id port 149717 remote_ip 10.8.1.54 149718 username barzegar 149718 mac 149718 bytes_out 6042 149718 bytes_in 8611 149718 station_ip 5.119.236.105 149718 port 530 149718 unique_id port 149718 remote_ip 10.8.0.234 149723 username kalantary 149723 mac 149723 bytes_out 312240 149723 bytes_in 828825 149723 station_ip 83.122.222.128 149723 port 530 149723 unique_id port 149723 remote_ip 10.8.0.98 149725 username sedighe 149725 mac 149725 bytes_out 1034505 149725 bytes_in 1032710 149725 station_ip 37.129.9.123 149725 port 543 149725 unique_id port 149725 remote_ip 10.8.0.146 149726 username hashtadani4 149726 mac 149726 bytes_out 1644 149726 bytes_in 4007 149726 station_ip 113.203.106.73 149726 port 530 149726 unique_id port 149726 remote_ip 10.8.0.182 149728 username hashtadani4 149728 mac 149728 bytes_out 0 149728 bytes_in 0 149728 station_ip 113.203.106.73 149728 port 546 149728 unique_id port 149728 remote_ip 10.8.0.182 149729 username godarzi 149729 mac 149729 bytes_out 2229889 149729 bytes_in 13086158 149729 station_ip 5.202.5.1 149729 port 529 149729 unique_id port 149729 remote_ip 10.8.0.174 149731 username hashtadani4 149731 mac 149731 bytes_out 0 149731 bytes_in 0 149731 station_ip 113.203.106.73 149731 port 273 149731 unique_id port 149731 remote_ip 10.8.1.142 149732 username rajaei 149732 mac 149732 bytes_out 0 149732 bytes_in 0 149732 station_ip 5.134.158.188 149732 port 523 149732 unique_id port 149734 username hashtadani4 149734 mac 149734 bytes_out 2535 149734 bytes_in 4812 149734 station_ip 113.203.106.73 149734 port 529 149687 username hashtadani4 149687 kill_reason Maximum check online fails reached 149687 mac 149687 bytes_out 0 149687 bytes_in 0 149687 station_ip 113.203.106.73 149687 port 524 149687 unique_id port 149688 username hashtadani4 149688 mac 149688 bytes_out 0 149688 bytes_in 0 149688 station_ip 113.203.106.73 149688 port 537 149688 unique_id port 149688 remote_ip 10.8.0.182 149689 username forozandeh1 149689 mac 149689 bytes_out 971298 149689 bytes_in 9085782 149689 station_ip 83.123.224.235 149689 port 535 149689 unique_id port 149689 remote_ip 10.8.0.130 149691 username hashtadani4 149691 kill_reason Maximum number of concurrent logins reached 149691 mac 149691 bytes_out 0 149691 bytes_in 0 149691 station_ip 113.203.106.73 149691 port 538 149691 unique_id port 149694 username hashtadani4 149694 kill_reason Maximum check online fails reached 149694 mac 149694 bytes_out 0 149694 bytes_in 0 149694 station_ip 113.203.106.73 149694 port 537 149694 unique_id port 149695 username hashtadani4 149695 mac 149695 bytes_out 0 149695 bytes_in 0 149695 station_ip 113.203.106.73 149695 port 535 149695 unique_id port 149695 remote_ip 10.8.0.182 149697 username hashtadani4 149697 kill_reason Maximum check online fails reached 149697 mac 149697 bytes_out 0 149697 bytes_in 0 149697 station_ip 113.203.106.73 149697 port 535 149697 unique_id port 149702 username hashtadani4 149702 mac 149702 bytes_out 0 149702 bytes_in 0 149702 station_ip 113.203.106.73 149702 port 522 149702 unique_id port 149702 remote_ip 10.8.0.182 149703 username kordestani 149703 kill_reason Another user logged on this global unique id 149703 mac 149703 bytes_out 0 149703 bytes_in 0 149703 station_ip 151.235.98.53 149703 port 540 149703 unique_id port 149703 remote_ip 10.8.0.134 149705 username sedighe 149705 mac 149705 bytes_out 82731 149705 bytes_in 135738 149705 station_ip 113.203.119.43 149705 port 514 149705 unique_id port 149705 remote_ip 10.8.0.146 149708 username hadibarzegar 149708 mac 149708 bytes_out 0 149708 bytes_in 0 149708 station_ip 37.129.232.6 149708 port 271 149708 unique_id port 149708 remote_ip 10.8.1.150 149709 username hashtadani4 149709 kill_reason Maximum check online fails reached 149709 mac 149709 bytes_out 0 149709 bytes_in 0 149709 station_ip 113.203.106.73 149709 port 514 149709 unique_id port 149712 username malekpoir 149712 mac 149712 bytes_out 2656720 149712 bytes_in 32796216 149712 station_ip 5.120.180.209 149712 port 523 149712 unique_id port 149712 remote_ip 10.8.0.58 149713 username hashtadani4 149713 mac 149713 bytes_out 0 149713 bytes_in 0 149713 station_ip 113.203.106.73 149713 port 272 149713 unique_id port 149713 remote_ip 10.8.1.142 149716 username sedighe 149716 mac 149716 bytes_out 649194 149716 bytes_in 2281658 149716 station_ip 113.203.119.43 149716 port 542 149716 unique_id port 149716 remote_ip 10.8.0.146 149719 username forozandeh1 149719 mac 149719 bytes_out 125156 149719 bytes_in 266004 149719 station_ip 83.122.70.120 149719 port 542 149719 unique_id port 149719 remote_ip 10.8.0.130 149720 username rajaei 149720 kill_reason Another user logged on this global unique id 149720 mac 149720 bytes_out 0 149720 bytes_in 0 149720 station_ip 5.134.158.188 149720 port 523 149720 unique_id port 149720 remote_ip 10.8.0.34 149721 username hashtadani4 149721 mac 149721 bytes_out 1097397 149721 bytes_in 10293842 149721 station_ip 113.203.106.73 149721 port 522 149721 unique_id port 149721 remote_ip 10.8.0.182 149722 username moradi 149722 mac 149722 bytes_out 142844 149711 mac 149711 bytes_out 0 149711 bytes_in 0 149711 station_ip 5.119.236.105 149711 port 522 149711 unique_id port 149711 remote_ip 10.8.0.234 149714 username alipour 149714 mac 149714 bytes_out 266929 149714 bytes_in 1047890 149714 station_ip 83.123.143.5 149714 port 530 149714 unique_id port 149714 remote_ip 10.8.0.102 149724 username hashtadani4 149724 mac 149724 bytes_out 1644 149724 bytes_in 4275 149724 station_ip 113.203.106.73 149724 port 541 149724 unique_id port 149724 remote_ip 10.8.0.182 149733 username meysam 149733 mac 149733 bytes_out 522657 149733 bytes_in 8360353 149733 station_ip 188.158.49.160 149733 port 543 149733 unique_id port 149733 remote_ip 10.8.0.110 149738 username alipour 149738 mac 149738 bytes_out 0 149738 bytes_in 0 149738 station_ip 83.123.143.5 149738 port 273 149738 unique_id port 149738 remote_ip 10.8.1.50 149739 username barzegar 149739 mac 149739 bytes_out 3456 149739 bytes_in 4656 149739 station_ip 5.119.236.105 149739 port 529 149739 unique_id port 149739 remote_ip 10.8.0.234 149741 username sedighe 149741 mac 149741 bytes_out 2424503 149741 bytes_in 51769311 149741 station_ip 37.129.9.123 149741 port 541 149741 unique_id port 149741 remote_ip 10.8.0.146 149744 username vanila 149744 mac 149744 bytes_out 345829 149744 bytes_in 4373601 149744 station_ip 113.203.54.133 149744 port 541 149744 unique_id port 149744 remote_ip 10.8.0.178 149747 username hashtadani4 149747 mac 149747 bytes_out 0 149747 bytes_in 0 149747 station_ip 113.203.106.73 149747 port 273 149747 unique_id port 149747 remote_ip 10.8.1.142 149759 username godarzi 149759 mac 149759 bytes_out 1069594 149759 bytes_in 1861913 149759 station_ip 5.202.5.1 149759 port 523 149759 unique_id port 149759 remote_ip 10.8.0.174 149761 username khalili 149761 kill_reason Another user logged on this global unique id 149761 mac 149761 bytes_out 0 149761 bytes_in 0 149761 station_ip 5.119.24.180 149761 port 526 149761 unique_id port 149771 username hashtadani4 149771 kill_reason Maximum check online fails reached 149771 mac 149771 bytes_out 0 149771 bytes_in 0 149771 station_ip 113.203.106.73 149771 port 529 149771 unique_id port 149772 username fezealinaghi 149772 kill_reason Another user logged on this global unique id 149772 mac 149772 bytes_out 0 149772 bytes_in 0 149772 station_ip 113.203.106.33 149772 port 489 149772 unique_id port 149774 username hashtadani4 149774 mac 149774 bytes_out 0 149774 bytes_in 0 149774 station_ip 113.203.106.73 149774 port 271 149774 unique_id port 149774 remote_ip 10.8.1.142 149776 username hashtadani4 149776 kill_reason Maximum number of concurrent logins reached 149776 mac 149776 bytes_out 0 149776 bytes_in 0 149776 station_ip 113.203.106.73 149776 port 547 149776 unique_id port 149778 username hashtadani4 149778 kill_reason Maximum check online fails reached 149778 mac 149778 bytes_out 0 149778 bytes_in 0 149778 station_ip 113.203.106.73 149778 port 542 149778 unique_id port 149784 username hashtadani4 149784 mac 149784 bytes_out 0 149784 bytes_in 0 149784 station_ip 113.203.106.73 149784 port 273 149784 unique_id port 149784 remote_ip 10.8.1.142 149786 username hashtadani4 149786 kill_reason Maximum check online fails reached 149786 mac 149786 bytes_out 0 149786 bytes_in 0 149786 station_ip 113.203.106.73 149786 port 550 149786 unique_id port 149792 username barzegar 149792 kill_reason Another user logged on this global unique id 149792 mac 149792 bytes_out 0 149792 bytes_in 0 149792 station_ip 5.119.236.105 149722 bytes_in 267665 149722 station_ip 5.202.24.82 149722 port 541 149722 unique_id port 149722 remote_ip 10.8.0.226 149727 username barzegar 149727 mac 149727 bytes_out 10477 149727 bytes_in 21171 149727 station_ip 5.119.236.105 149727 port 542 149727 unique_id port 149727 remote_ip 10.8.0.234 149730 username hashtadani4 149730 mac 149730 bytes_out 1644 149730 bytes_in 4275 149730 station_ip 113.203.106.73 149730 port 530 149730 unique_id port 149730 remote_ip 10.8.0.182 149736 username hashtadani4 149736 mac 149736 bytes_out 0 149736 bytes_in 0 149736 station_ip 113.203.106.73 149736 port 274 149736 unique_id port 149736 remote_ip 10.8.1.142 149740 username aminvpn 149740 mac 149740 bytes_out 2379644 149740 bytes_in 11263528 149740 station_ip 83.123.250.27 149740 port 525 149740 unique_id port 149740 remote_ip 10.8.0.14 149742 username nilufarrajaei 149742 kill_reason Another user logged on this global unique id 149742 mac 149742 bytes_out 0 149742 bytes_in 0 149742 station_ip 5.202.65.57 149742 port 545 149742 unique_id port 149742 remote_ip 10.8.0.206 149743 username aminvpn 149743 mac 149743 bytes_out 5040 149743 bytes_in 7029 149743 station_ip 83.123.250.27 149743 port 542 149743 unique_id port 149743 remote_ip 10.8.0.14 149745 username barzegar 149745 mac 149745 bytes_out 4105 149745 bytes_in 6386 149745 station_ip 5.119.236.105 149745 port 543 149745 unique_id port 149745 remote_ip 10.8.0.234 149748 username alipour 149748 mac 149748 bytes_out 93131 149748 bytes_in 131508 149748 station_ip 83.123.143.5 149748 port 529 149748 unique_id port 149748 remote_ip 10.8.0.102 149751 username hashtadani4 149751 mac 149751 bytes_out 0 149751 bytes_in 0 149751 station_ip 113.203.106.73 149751 port 529 149751 unique_id port 149751 remote_ip 10.8.0.182 149753 username aminvpn 149753 mac 149753 bytes_out 0 149753 bytes_in 0 149753 station_ip 83.123.250.27 149753 port 529 149753 unique_id port 149753 remote_ip 10.8.0.14 149754 username nilufarrajaei 149754 mac 149754 bytes_out 0 149754 bytes_in 0 149754 station_ip 5.202.65.57 149754 port 545 149754 unique_id port 149757 username barzegar 149757 mac 149757 bytes_out 0 149757 bytes_in 0 149757 station_ip 5.119.236.105 149757 port 274 149757 unique_id port 149757 remote_ip 10.8.1.174 149758 username hashtadani4 149758 mac 149758 bytes_out 0 149758 bytes_in 0 149758 station_ip 113.203.106.73 149758 port 525 149758 unique_id port 149758 remote_ip 10.8.0.182 149760 username hadibarzegar 149760 mac 149760 bytes_out 0 149760 bytes_in 0 149760 station_ip 37.129.232.6 149760 port 271 149760 unique_id port 149760 remote_ip 10.8.1.150 149764 username hashtadani4 149764 kill_reason Maximum number of concurrent logins reached 149764 mac 149764 bytes_out 0 149764 bytes_in 0 149764 station_ip 113.203.106.73 149764 port 529 149764 unique_id port 149766 username hashtadani4 149766 kill_reason Maximum number of concurrent logins reached 149766 mac 149766 bytes_out 0 149766 bytes_in 0 149766 station_ip 113.203.106.73 149766 port 529 149766 unique_id port 149768 username hashtadani4 149768 kill_reason Maximum check online fails reached 149768 mac 149768 bytes_out 0 149768 bytes_in 0 149768 station_ip 113.203.106.73 149768 port 525 149768 unique_id port 149770 username hashtadani4 149770 mac 149770 bytes_out 0 149770 bytes_in 0 149770 station_ip 113.203.106.73 149770 port 271 149770 unique_id port 149770 remote_ip 10.8.1.142 149779 username hashtadani4 149785 station_ip 113.203.106.73 149734 unique_id port 149734 remote_ip 10.8.0.182 149735 username hashtadani4 149735 mac 149735 bytes_out 1644 149735 bytes_in 4275 149735 station_ip 113.203.106.73 149735 port 529 149735 unique_id port 149735 remote_ip 10.8.0.182 149737 username barzegar 149737 mac 149737 bytes_out 0 149737 bytes_in 0 149737 station_ip 5.119.236.105 149737 port 529 149737 unique_id port 149737 remote_ip 10.8.0.234 149746 username hashtadani4 149746 mac 149746 bytes_out 0 149746 bytes_in 0 149746 station_ip 113.203.106.73 149746 port 274 149746 unique_id port 149746 remote_ip 10.8.1.142 149749 username hashtadani4 149749 kill_reason Maximum check online fails reached 149749 mac 149749 bytes_out 0 149749 bytes_in 0 149749 station_ip 113.203.106.73 149749 port 543 149749 unique_id port 149750 username hashtadani4 149750 mac 149750 bytes_out 0 149750 bytes_in 0 149750 station_ip 113.203.106.73 149750 port 529 149750 unique_id port 149750 remote_ip 10.8.0.182 149752 username barzegar 149752 mac 149752 bytes_out 4906 149752 bytes_in 6623 149752 station_ip 5.119.236.105 149752 port 542 149752 unique_id port 149752 remote_ip 10.8.0.234 149755 username sedighe 149755 mac 149755 bytes_out 179833 149755 bytes_in 203600 149755 station_ip 37.129.9.123 149755 port 525 149755 unique_id port 149755 remote_ip 10.8.0.146 149756 username hashtadani4 149756 mac 149756 bytes_out 1644 149756 bytes_in 5182 149756 station_ip 113.203.106.73 149756 port 529 149756 unique_id port 149756 remote_ip 10.8.0.182 149762 username hashtadani4 149762 mac 149762 bytes_out 1644 149762 bytes_in 3948 149762 station_ip 113.203.106.73 149762 port 529 149762 unique_id port 149762 remote_ip 10.8.0.182 149763 username barzegar 149763 mac 149763 bytes_out 0 149763 bytes_in 0 149763 station_ip 5.119.236.105 149763 port 274 149763 unique_id port 149763 remote_ip 10.8.1.174 149765 username alipour 149765 mac 149765 bytes_out 0 149765 bytes_in 0 149765 station_ip 83.123.143.5 149765 port 273 149765 unique_id port 149765 remote_ip 10.8.1.50 149767 username hashtadani4 149767 mac 149767 bytes_out 1644 149767 bytes_in 5095 149767 station_ip 113.203.106.73 149767 port 523 149767 unique_id port 149767 remote_ip 10.8.0.182 149769 username barzegar 149769 mac 149769 bytes_out 0 149769 bytes_in 0 149769 station_ip 5.119.236.105 149769 port 271 149769 unique_id port 149769 remote_ip 10.8.1.174 149773 username hashtadani4 149773 mac 149773 bytes_out 0 149773 bytes_in 0 149773 station_ip 113.203.106.73 149773 port 542 149773 unique_id port 149773 remote_ip 10.8.0.182 149775 username malekpoir 149775 mac 149775 bytes_out 0 149775 bytes_in 0 149775 station_ip 5.120.180.209 149775 port 272 149775 unique_id port 149775 remote_ip 10.8.1.54 149777 username hashtadani4 149777 kill_reason Maximum check online fails reached 149777 mac 149777 bytes_out 0 149777 bytes_in 0 149777 station_ip 113.203.106.73 149777 port 546 149777 unique_id port 149780 username mahdiyehalizadeh 149780 mac 149780 bytes_out 0 149780 bytes_in 0 149780 station_ip 5.119.122.216 149780 port 275 149780 unique_id port 149780 remote_ip 10.8.1.110 149783 username hashtadani4 149783 kill_reason Maximum check online fails reached 149783 mac 149783 bytes_out 0 149783 bytes_in 0 149783 station_ip 113.203.106.73 149783 port 548 149783 unique_id port 149785 username hashtadani4 149785 kill_reason Maximum number of concurrent logins reached 149785 mac 149785 bytes_out 0 149785 bytes_in 0 149779 kill_reason Maximum check online fails reached 149779 mac 149779 bytes_out 0 149779 bytes_in 0 149779 station_ip 113.203.106.73 149779 port 547 149779 unique_id port 149781 username mahdiyehalizadeh 149781 mac 149781 bytes_out 0 149781 bytes_in 0 149781 station_ip 5.119.122.216 149781 port 273 149781 unique_id port 149781 remote_ip 10.8.1.110 149782 username hashtadani4 149782 mac 149782 bytes_out 0 149782 bytes_in 0 149782 station_ip 113.203.106.73 149782 port 273 149782 unique_id port 149782 remote_ip 10.8.1.142 149787 username hashtadani4 149787 kill_reason Maximum check online fails reached 149787 mac 149787 bytes_out 0 149787 bytes_in 0 149787 station_ip 113.203.106.73 149787 port 549 149787 unique_id port 149789 username aminvpn 149789 unique_id port 149789 terminate_cause User-Request 149789 bytes_out 35851 149789 bytes_in 316495 149789 station_ip 109.125.128.116 149789 port 15731046 149789 nas_port_type Virtual 149789 remote_ip 5.5.5.171 149791 username mosi 149791 mac 149791 bytes_out 1992 149791 bytes_in 4216 149791 station_ip 151.235.78.77 149791 port 553 149791 unique_id port 149791 remote_ip 10.8.0.138 149794 username aminvpn 149794 unique_id port 149794 terminate_cause User-Request 149794 bytes_out 1436085 149794 bytes_in 59390166 149794 station_ip 5.119.96.174 149794 port 15731047 149794 nas_port_type Virtual 149794 remote_ip 5.5.5.175 149797 username godarzi 149797 mac 149797 bytes_out 21468 149797 bytes_in 29577 149797 station_ip 5.120.105.197 149797 port 536 149797 unique_id port 149797 remote_ip 10.8.0.174 149798 username sedighe 149798 mac 149798 bytes_out 238282 149798 bytes_in 3757685 149798 station_ip 37.129.132.161 149798 port 551 149798 unique_id port 149798 remote_ip 10.8.0.146 149799 username moradi 149799 mac 149799 bytes_out 342182 149799 bytes_in 2207658 149799 station_ip 46.225.212.70 149799 port 554 149799 unique_id port 149799 remote_ip 10.8.0.226 149802 username hashtadani4 149802 mac 149802 bytes_out 0 149802 bytes_in 0 149802 station_ip 113.203.106.73 149802 port 553 149802 unique_id port 149802 remote_ip 10.8.0.182 149804 username hashtadani4 149804 kill_reason Maximum number of concurrent logins reached 149804 mac 149804 bytes_out 0 149804 bytes_in 0 149804 station_ip 113.203.106.73 149804 port 555 149804 unique_id port 149805 username hashtadani4 149805 kill_reason Maximum number of concurrent logins reached 149805 mac 149805 bytes_out 0 149805 bytes_in 0 149805 station_ip 113.203.106.73 149805 port 273 149805 unique_id port 149810 username ahmadi1 149810 mac 149810 bytes_out 0 149810 bytes_in 0 149810 station_ip 83.123.72.40 149810 port 553 149810 unique_id port 149810 remote_ip 10.8.0.250 149816 username nilufarrajaei 149816 kill_reason Another user logged on this global unique id 149816 mac 149816 bytes_out 0 149816 bytes_in 0 149816 station_ip 37.129.171.152 149816 port 545 149816 unique_id port 149816 remote_ip 10.8.0.206 149822 username barzegar 149822 mac 149822 bytes_out 0 149822 bytes_in 0 149822 station_ip 5.119.236.105 149822 port 272 149822 unique_id port 149822 remote_ip 10.8.1.174 149829 username kordestani 149829 mac 149829 bytes_out 0 149829 bytes_in 0 149829 station_ip 151.235.98.53 149829 port 540 149829 unique_id port 149832 username mohammadmahdi 149832 kill_reason Another user logged on this global unique id 149832 mac 149832 bytes_out 0 149832 bytes_in 0 149832 station_ip 5.119.129.67 149832 port 489 149832 unique_id port 149832 remote_ip 10.8.0.54 149834 username mahdiyehalizadeh 149834 mac 149834 bytes_out 0 149785 port 273 149785 unique_id port 149788 username aminvpn 149788 unique_id port 149788 terminate_cause User-Request 149788 bytes_out 89717 149788 bytes_in 838463 149788 station_ip 109.125.128.116 149788 port 15731045 149788 nas_port_type Virtual 149788 remote_ip 5.5.5.169 149790 username moradi 149790 mac 149790 bytes_out 129236 149790 bytes_in 144299 149790 station_ip 83.122.254.18 149790 port 522 149790 unique_id port 149790 remote_ip 10.8.0.226 149795 username aminvpn 149795 unique_id port 149795 terminate_cause Lost-Carrier 149795 bytes_out 2544595 149795 bytes_in 67888148 149795 station_ip 31.57.129.158 149795 port 15731044 149795 nas_port_type Virtual 149795 remote_ip 5.5.5.161 149801 username mohammadmahdi 149801 kill_reason Another user logged on this global unique id 149801 mac 149801 bytes_out 0 149801 bytes_in 0 149801 station_ip 5.119.129.67 149801 port 552 149801 unique_id port 149801 remote_ip 10.8.0.54 149803 username hashtadani4 149803 kill_reason Maximum number of concurrent logins reached 149803 mac 149803 bytes_out 0 149803 bytes_in 0 149803 station_ip 113.203.106.73 149803 port 555 149803 unique_id port 149806 username hashtadani4 149806 mac 149806 bytes_out 1644 149806 bytes_in 5023 149806 station_ip 113.203.106.73 149806 port 553 149806 unique_id port 149806 remote_ip 10.8.0.182 149808 username hashtadani4 149808 kill_reason Maximum check online fails reached 149808 mac 149808 bytes_out 0 149808 bytes_in 0 149808 station_ip 113.203.106.73 149808 port 554 149808 unique_id port 149811 username aminvpn 149811 unique_id port 149811 terminate_cause Lost-Carrier 149811 bytes_out 90654 149811 bytes_in 527527 149811 station_ip 109.125.128.116 149811 port 15731048 149811 nas_port_type Virtual 149811 remote_ip 5.5.5.176 149812 username hosseine 149812 mac 149812 bytes_out 3883386 149812 bytes_in 27617394 149812 station_ip 37.129.101.206 149812 port 541 149812 unique_id port 149812 remote_ip 10.8.0.238 149814 username barzegar 149814 kill_reason Another user logged on this global unique id 149814 mac 149814 bytes_out 0 149814 bytes_in 0 149814 station_ip 5.119.236.105 149814 port 272 149814 unique_id port 149817 username fezealinaghi 149817 mac 149817 bytes_out 0 149817 bytes_in 0 149817 station_ip 113.203.106.33 149817 port 489 149817 unique_id port 149819 username barzegar 149819 mac 149819 bytes_out 0 149819 bytes_in 0 149819 station_ip 5.119.236.105 149819 port 272 149819 unique_id port 149819 remote_ip 10.8.1.174 149823 username barzegar 149823 kill_reason Maximum check online fails reached 149823 mac 149823 bytes_out 0 149823 bytes_in 0 149823 station_ip 5.119.236.105 149823 port 272 149823 unique_id port 149825 username fezealinaghi 149825 mac 149825 bytes_out 0 149825 bytes_in 0 149825 station_ip 113.203.106.33 149825 port 273 149825 unique_id port 149825 remote_ip 10.8.1.162 149827 username barzegar 149827 mac 149827 bytes_out 0 149827 bytes_in 0 149827 station_ip 5.119.236.105 149827 port 273 149827 unique_id port 149827 remote_ip 10.8.1.174 149828 username forozandeh1 149828 mac 149828 bytes_out 0 149828 bytes_in 0 149828 station_ip 83.122.70.120 149828 port 544 149828 unique_id port 149828 remote_ip 10.8.0.130 149830 username malekpoir 149830 mac 149830 bytes_out 78076 149830 bytes_in 111905 149830 station_ip 5.120.180.209 149830 port 271 149830 unique_id port 149830 remote_ip 10.8.1.54 149831 username nilufarrajaei 149831 kill_reason Another user logged on this global unique id 149831 mac 149831 bytes_out 0 149831 bytes_in 0 149831 station_ip 37.129.171.152 149831 port 545 149792 port 272 149792 unique_id port 149792 remote_ip 10.8.1.174 149793 username sabaghnezhad 149793 mac 149793 bytes_out 495909 149793 bytes_in 2061387 149793 station_ip 37.129.114.36 149793 port 536 149793 unique_id port 149793 remote_ip 10.8.0.186 149796 username barzegar 149796 kill_reason Another user logged on this global unique id 149796 mac 149796 bytes_out 0 149796 bytes_in 0 149796 station_ip 5.119.236.105 149796 port 272 149796 unique_id port 149800 username mohammadjavad 149800 mac 149800 bytes_out 170174 149800 bytes_in 741875 149800 station_ip 83.123.160.120 149800 port 530 149800 unique_id port 149800 remote_ip 10.8.0.142 149807 username khalili 149807 kill_reason Another user logged on this global unique id 149807 mac 149807 bytes_out 0 149807 bytes_in 0 149807 station_ip 5.119.24.180 149807 port 526 149807 unique_id port 149809 username barzegar 149809 kill_reason Another user logged on this global unique id 149809 mac 149809 bytes_out 0 149809 bytes_in 0 149809 station_ip 5.119.236.105 149809 port 272 149809 unique_id port 149813 username mohammadjavad 149813 mac 149813 bytes_out 195407 149813 bytes_in 720948 149813 station_ip 83.123.160.120 149813 port 530 149813 unique_id port 149813 remote_ip 10.8.0.142 149815 username moradi 149815 mac 149815 bytes_out 54573 149815 bytes_in 67340 149815 station_ip 83.122.224.246 149815 port 551 149815 unique_id port 149815 remote_ip 10.8.0.226 149818 username barzegar 149818 mac 149818 bytes_out 0 149818 bytes_in 0 149818 station_ip 5.119.236.105 149818 port 272 149818 unique_id port 149820 username fezealinaghi 149820 mac 149820 bytes_out 0 149820 bytes_in 0 149820 station_ip 113.203.106.33 149820 port 273 149820 unique_id port 149820 remote_ip 10.8.1.162 149821 username mohammadmahdi 149821 mac 149821 bytes_out 0 149821 bytes_in 0 149821 station_ip 5.119.129.67 149821 port 552 149821 unique_id port 149824 username sabaghnezhad 149824 kill_reason Another user logged on this global unique id 149824 mac 149824 bytes_out 0 149824 bytes_in 0 149824 station_ip 37.129.114.36 149824 port 522 149824 unique_id port 149824 remote_ip 10.8.0.186 149826 username aminvpn 149826 unique_id port 149826 terminate_cause Lost-Carrier 149826 bytes_out 1806687 149826 bytes_in 4398684 149826 station_ip 5.119.96.174 149826 port 15731049 149826 nas_port_type Virtual 149826 remote_ip 5.5.5.177 149837 username forozandeh1 149837 mac 149837 bytes_out 0 149837 bytes_in 0 149837 station_ip 37.129.60.98 149837 port 551 149837 unique_id port 149837 remote_ip 10.8.0.130 149838 username barzegar 149838 mac 149838 bytes_out 0 149838 bytes_in 0 149838 station_ip 5.119.236.105 149838 port 551 149838 unique_id port 149838 remote_ip 10.8.0.234 149844 username mahdiyehalizadeh 149844 mac 149844 bytes_out 0 149844 bytes_in 0 149844 station_ip 5.119.122.216 149844 port 541 149844 unique_id port 149844 remote_ip 10.8.0.82 149846 username jafari 149846 kill_reason Another user logged on this global unique id 149846 mac 149846 bytes_out 0 149846 bytes_in 0 149846 station_ip 5.134.189.200 149846 port 544 149846 unique_id port 149848 username malekpoir 149848 mac 149848 bytes_out 20020 149848 bytes_in 25087 149848 station_ip 5.120.180.209 149848 port 271 149848 unique_id port 149848 remote_ip 10.8.1.54 149850 username barzegar 149850 mac 149850 bytes_out 0 149850 bytes_in 0 149850 station_ip 5.119.236.105 149850 port 530 149850 unique_id port 149850 remote_ip 10.8.0.234 149854 username jafari 149854 kill_reason Another user logged on this global unique id 149831 unique_id port 149833 username jafari 149833 kill_reason Another user logged on this global unique id 149833 mac 149833 bytes_out 0 149833 bytes_in 0 149833 station_ip 5.134.189.200 149833 port 544 149833 unique_id port 149833 remote_ip 10.8.0.242 149835 username barzegar 149835 mac 149835 bytes_out 0 149835 bytes_in 0 149835 station_ip 5.119.236.105 149835 port 273 149835 unique_id port 149835 remote_ip 10.8.1.174 149840 username hamidsalari 149840 kill_reason Another user logged on this global unique id 149840 mac 149840 bytes_out 0 149840 bytes_in 0 149840 station_ip 5.120.163.14 149840 port 521 149840 unique_id port 149840 remote_ip 10.8.0.222 149841 username mohammadmahdi 149841 mac 149841 bytes_out 0 149841 bytes_in 0 149841 station_ip 5.119.129.67 149841 port 489 149841 unique_id port 149842 username sabaghnezhad 149842 kill_reason Another user logged on this global unique id 149842 mac 149842 bytes_out 0 149842 bytes_in 0 149842 station_ip 37.129.114.36 149842 port 522 149842 unique_id port 149843 username malekpoir 149843 mac 149843 bytes_out 787036 149843 bytes_in 11214508 149843 station_ip 5.120.180.209 149843 port 271 149843 unique_id port 149843 remote_ip 10.8.1.54 149845 username barzegar 149845 mac 149845 bytes_out 0 149845 bytes_in 0 149845 station_ip 5.119.236.105 149845 port 489 149845 unique_id port 149845 remote_ip 10.8.0.234 149849 username nilufarrajaei 149849 kill_reason Another user logged on this global unique id 149849 mac 149849 bytes_out 0 149849 bytes_in 0 149849 station_ip 37.129.171.152 149849 port 545 149849 unique_id port 149851 username nilufarrajaei 149851 mac 149851 bytes_out 0 149851 bytes_in 0 149851 station_ip 37.129.171.152 149851 port 545 149851 unique_id port 149853 username aminvpn 149853 unique_id port 149853 terminate_cause Lost-Carrier 149853 bytes_out 1536183 149853 bytes_in 27432915 149853 station_ip 5.119.96.174 149853 port 15731051 149853 nas_port_type Virtual 149853 remote_ip 5.5.5.183 149855 username barzegar 149855 mac 149855 bytes_out 0 149855 bytes_in 0 149855 station_ip 5.119.236.105 149855 port 545 149855 unique_id port 149855 remote_ip 10.8.0.234 149858 username vanila 149858 mac 149858 bytes_out 65464 149858 bytes_in 306120 149858 station_ip 113.203.95.181 149858 port 555 149858 unique_id port 149858 remote_ip 10.8.0.178 149860 username barzegar 149860 mac 149860 bytes_out 4082 149860 bytes_in 6459 149860 station_ip 5.119.236.105 149860 port 545 149860 unique_id port 149860 remote_ip 10.8.0.234 149866 username mohammadmahdi 149866 kill_reason Another user logged on this global unique id 149866 mac 149866 bytes_out 0 149866 bytes_in 0 149866 station_ip 5.119.129.67 149866 port 553 149866 unique_id port 149866 remote_ip 10.8.0.54 149867 username kamali2 149867 mac 149867 bytes_out 150679 149867 bytes_in 352830 149867 station_ip 5.120.42.206 149867 port 555 149867 unique_id port 149867 remote_ip 10.8.0.214 149869 username forozandeh1 149869 kill_reason Another user logged on this global unique id 149869 mac 149869 bytes_out 0 149869 bytes_in 0 149869 station_ip 37.129.60.98 149869 port 536 149869 unique_id port 149869 remote_ip 10.8.0.130 149870 username mohammadmahdi 149870 mac 149870 bytes_out 0 149870 bytes_in 0 149870 station_ip 5.119.129.67 149870 port 553 149870 unique_id port 149875 username forozandeh1 149875 mac 149875 bytes_out 0 149875 bytes_in 0 149875 station_ip 37.129.60.98 149875 port 536 149875 unique_id port 149876 username barzegar 149876 mac 149876 bytes_out 15208 149876 bytes_in 21811 149834 bytes_in 0 149834 station_ip 5.119.122.216 149834 port 541 149834 unique_id port 149834 remote_ip 10.8.0.82 149836 username sedighe 149836 mac 149836 bytes_out 0 149836 bytes_in 0 149836 station_ip 37.129.132.161 149836 port 536 149836 unique_id port 149836 remote_ip 10.8.0.146 149839 username mohammadmahdi 149839 kill_reason Another user logged on this global unique id 149839 mac 149839 bytes_out 0 149839 bytes_in 0 149839 station_ip 5.119.129.67 149839 port 489 149839 unique_id port 149847 username godarzi 149847 mac 149847 bytes_out 0 149847 bytes_in 0 149847 station_ip 5.202.5.1 149847 port 530 149847 unique_id port 149847 remote_ip 10.8.0.174 149852 username barzegar 149852 mac 149852 bytes_out 0 149852 bytes_in 0 149852 station_ip 5.119.236.105 149852 port 271 149852 unique_id port 149852 remote_ip 10.8.1.174 149857 username barzegar 149857 mac 149857 bytes_out 0 149857 bytes_in 0 149857 station_ip 5.119.236.105 149857 port 545 149857 unique_id port 149857 remote_ip 10.8.0.234 149859 username sabaghnezhad 149859 mac 149859 bytes_out 0 149859 bytes_in 0 149859 station_ip 37.129.114.36 149859 port 522 149859 unique_id port 149861 username godarzi 149861 mac 149861 bytes_out 124869 149861 bytes_in 452797 149861 station_ip 5.202.5.1 149861 port 551 149861 unique_id port 149861 remote_ip 10.8.0.174 149862 username kordestani 149862 mac 149862 bytes_out 0 149862 bytes_in 0 149862 station_ip 151.235.98.53 149862 port 522 149862 unique_id port 149862 remote_ip 10.8.0.134 149863 username jafari 149863 mac 149863 bytes_out 0 149863 bytes_in 0 149863 station_ip 5.134.189.200 149863 port 544 149863 unique_id port 149864 username barzegar 149864 mac 149864 bytes_out 0 149864 bytes_in 0 149864 station_ip 5.119.236.105 149864 port 557 149864 unique_id port 149864 remote_ip 10.8.0.234 149865 username jafari 149865 mac 149865 bytes_out 11879 149865 bytes_in 26339 149865 station_ip 5.134.189.200 149865 port 522 149865 unique_id port 149865 remote_ip 10.8.0.242 149874 username forozandeh1 149874 kill_reason Another user logged on this global unique id 149874 mac 149874 bytes_out 0 149874 bytes_in 0 149874 station_ip 37.129.60.98 149874 port 536 149874 unique_id port 149880 username hamidsalari 149880 kill_reason Another user logged on this global unique id 149880 mac 149880 bytes_out 0 149880 bytes_in 0 149880 station_ip 5.120.163.14 149880 port 521 149880 unique_id port 149883 username kalantary 149883 kill_reason Another user logged on this global unique id 149883 mac 149883 bytes_out 0 149883 bytes_in 0 149883 station_ip 83.122.145.252 149883 port 536 149883 unique_id port 149883 remote_ip 10.8.0.98 149886 username vanila 149886 mac 149886 bytes_out 0 149886 bytes_in 0 149886 station_ip 113.203.95.181 149886 port 489 149886 unique_id port 149886 remote_ip 10.8.0.178 149888 username saeed9658 149888 mac 149888 bytes_out 372042 149888 bytes_in 3485090 149888 station_ip 5.120.114.170 149888 port 552 149888 unique_id port 149888 remote_ip 10.8.0.62 149890 username barzegar 149890 mac 149890 bytes_out 0 149890 bytes_in 0 149890 station_ip 5.119.236.105 149890 port 271 149890 unique_id port 149890 remote_ip 10.8.1.174 149892 username hashtadani4 149892 mac 149892 bytes_out 0 149892 bytes_in 0 149892 station_ip 113.203.26.1 149892 port 489 149892 unique_id port 149892 remote_ip 10.8.0.182 149895 username saeed9658 149895 mac 149895 bytes_out 0 149895 bytes_in 0 149854 mac 149854 bytes_out 0 149854 bytes_in 0 149854 station_ip 5.134.189.200 149854 port 544 149854 unique_id port 149856 username malekpoir 149856 mac 149856 bytes_out 788996 149856 bytes_in 8273361 149856 station_ip 5.120.180.209 149856 port 489 149856 unique_id port 149856 remote_ip 10.8.0.58 149868 username barzegar 149868 mac 149868 bytes_out 0 149868 bytes_in 0 149868 station_ip 5.119.236.105 149868 port 544 149868 unique_id port 149868 remote_ip 10.8.0.234 149871 username hashtadani4 149871 kill_reason Another user logged on this global unique id 149871 mac 149871 bytes_out 0 149871 bytes_in 0 149871 station_ip 113.203.26.1 149871 port 556 149871 unique_id port 149871 remote_ip 10.8.0.182 149872 username malekpoir 149872 mac 149872 bytes_out 42841 149872 bytes_in 54700 149872 station_ip 5.120.180.209 149872 port 552 149872 unique_id port 149872 remote_ip 10.8.0.58 149873 username malekpoir 149873 mac 149873 bytes_out 0 149873 bytes_in 0 149873 station_ip 5.120.15.13 149873 port 545 149873 unique_id port 149873 remote_ip 10.8.0.58 149877 username sedighe 149877 mac 149877 bytes_out 1281693 149877 bytes_in 30530244 149877 station_ip 113.203.13.145 149877 port 489 149877 unique_id port 149877 remote_ip 10.8.0.146 149881 username jafari 149881 mac 149881 bytes_out 0 149881 bytes_in 0 149881 station_ip 5.134.189.200 149881 port 271 149881 unique_id port 149881 remote_ip 10.8.1.198 149882 username barzegar 149882 mac 149882 bytes_out 0 149882 bytes_in 0 149882 station_ip 5.119.236.105 149882 port 545 149882 unique_id port 149882 remote_ip 10.8.0.234 149885 username barzegar 149885 mac 149885 bytes_out 0 149885 bytes_in 0 149885 station_ip 5.119.236.105 149885 port 545 149885 unique_id port 149885 remote_ip 10.8.0.234 149887 username hashtadani4 149887 mac 149887 bytes_out 0 149887 bytes_in 0 149887 station_ip 113.203.26.1 149887 port 556 149887 unique_id port 149889 username saeed9658 149889 mac 149889 bytes_out 0 149889 bytes_in 0 149889 station_ip 5.120.114.170 149889 port 544 149889 unique_id port 149889 remote_ip 10.8.0.62 149897 username kordestani 149897 mac 149897 bytes_out 1017893 149897 bytes_in 16255733 149897 station_ip 151.235.113.175 149897 port 522 149897 unique_id port 149897 remote_ip 10.8.0.134 149900 username hashtadani4 149900 mac 149900 bytes_out 0 149900 bytes_in 0 149900 station_ip 113.203.26.1 149900 port 273 149900 unique_id port 149900 remote_ip 10.8.1.142 149901 username hashtadani4 149901 mac 149901 bytes_out 0 149901 bytes_in 0 149901 station_ip 113.203.26.1 149901 port 273 149901 unique_id port 149901 remote_ip 10.8.1.142 149904 username sedighe 149904 mac 149904 bytes_out 0 149904 bytes_in 0 149904 station_ip 83.122.131.19 149904 port 553 149904 unique_id port 149904 remote_ip 10.8.0.146 149906 username hashtadani4 149906 mac 149906 bytes_out 0 149906 bytes_in 0 149906 station_ip 113.203.26.1 149906 port 271 149906 unique_id port 149906 remote_ip 10.8.1.142 149907 username hashtadani4 149907 mac 149907 bytes_out 0 149907 bytes_in 0 149907 station_ip 113.203.26.1 149907 port 271 149907 unique_id port 149907 remote_ip 10.8.1.142 149911 username kordestani 149911 mac 149911 bytes_out 140823 149911 bytes_in 880723 149911 station_ip 151.235.117.224 149911 port 536 149911 unique_id port 149911 remote_ip 10.8.0.134 149912 username hashtadani4 149912 mac 149912 bytes_out 0 149912 bytes_in 0 149876 station_ip 5.119.236.105 149876 port 544 149876 unique_id port 149876 remote_ip 10.8.0.234 149878 username barzegar 149878 mac 149878 bytes_out 0 149878 bytes_in 0 149878 station_ip 5.119.236.105 149878 port 489 149878 unique_id port 149878 remote_ip 10.8.0.234 149879 username hashtadani4 149879 kill_reason Another user logged on this global unique id 149879 mac 149879 bytes_out 0 149879 bytes_in 0 149879 station_ip 113.203.26.1 149879 port 556 149879 unique_id port 149884 username sedighe 149884 mac 149884 bytes_out 0 149884 bytes_in 0 149884 station_ip 37.129.104.179 149884 port 544 149884 unique_id port 149884 remote_ip 10.8.0.146 149891 username saeed9658 149891 mac 149891 bytes_out 0 149891 bytes_in 0 149891 station_ip 5.120.114.170 149891 port 544 149891 unique_id port 149891 remote_ip 10.8.0.62 149893 username kalantary 149893 mac 149893 bytes_out 0 149893 bytes_in 0 149893 station_ip 83.122.145.252 149893 port 536 149893 unique_id port 149894 username nilufarrajaei 149894 kill_reason Another user logged on this global unique id 149894 mac 149894 bytes_out 0 149894 bytes_in 0 149894 station_ip 37.129.171.152 149894 port 541 149894 unique_id port 149894 remote_ip 10.8.0.206 149898 username hamidsalari 149898 kill_reason Another user logged on this global unique id 149898 mac 149898 bytes_out 0 149898 bytes_in 0 149898 station_ip 5.120.163.14 149898 port 521 149898 unique_id port 149903 username barzegar 149903 mac 149903 bytes_out 0 149903 bytes_in 0 149903 station_ip 5.119.236.105 149903 port 271 149903 unique_id port 149903 remote_ip 10.8.1.174 149910 username forozandeh1 149910 mac 149910 bytes_out 153013 149910 bytes_in 522506 149910 station_ip 113.203.89.78 149910 port 522 149910 unique_id port 149910 remote_ip 10.8.0.130 149914 username hamidsalari 149914 kill_reason Another user logged on this global unique id 149914 mac 149914 bytes_out 0 149914 bytes_in 0 149914 station_ip 5.120.163.14 149914 port 521 149914 unique_id port 149920 username aminvpn 149920 unique_id port 149920 terminate_cause User-Request 149920 bytes_out 11096587 149920 bytes_in 290348261 149920 station_ip 5.160.112.102 149920 port 15731053 149920 nas_port_type Virtual 149920 remote_ip 5.5.5.255 149925 username aminvpn 149925 mac 149925 bytes_out 0 149925 bytes_in 0 149925 station_ip 83.123.250.27 149925 port 530 149925 unique_id port 149925 remote_ip 10.8.0.14 149928 username vanila 149928 mac 149928 bytes_out 0 149928 bytes_in 0 149928 station_ip 113.203.57.165 149928 port 271 149928 unique_id port 149928 remote_ip 10.8.1.74 149930 username hamidsalari 149930 kill_reason Another user logged on this global unique id 149930 mac 149930 bytes_out 0 149930 bytes_in 0 149930 station_ip 5.120.163.14 149930 port 521 149930 unique_id port 149936 username hashtadani4 149936 mac 149936 bytes_out 0 149936 bytes_in 0 149936 station_ip 113.203.26.1 149936 port 522 149936 unique_id port 149936 remote_ip 10.8.0.182 149937 username hashtadani4 149937 mac 149937 bytes_out 0 149937 bytes_in 0 149937 station_ip 113.203.26.1 149937 port 489 149937 unique_id port 149937 remote_ip 10.8.0.182 149941 username hashtadani4 149941 mac 149941 bytes_out 0 149941 bytes_in 0 149941 station_ip 113.203.26.1 149941 port 489 149941 unique_id port 149941 remote_ip 10.8.0.182 149943 username hashtadani4 149943 mac 149943 bytes_out 0 149943 bytes_in 0 149943 station_ip 113.203.26.1 149943 port 489 149943 unique_id port 149943 remote_ip 10.8.0.182 149944 username mohammadmahdi 149895 station_ip 5.120.114.170 149895 port 544 149895 unique_id port 149895 remote_ip 10.8.0.62 149896 username hashtadani4 149896 mac 149896 bytes_out 0 149896 bytes_in 0 149896 station_ip 113.203.26.1 149896 port 489 149896 unique_id port 149896 remote_ip 10.8.0.182 149899 username hashtadani4 149899 mac 149899 bytes_out 2853 149899 bytes_in 5183 149899 station_ip 113.203.26.1 149899 port 489 149899 unique_id port 149899 remote_ip 10.8.0.182 149902 username nilufarrajaei 149902 mac 149902 bytes_out 0 149902 bytes_in 0 149902 station_ip 37.129.171.152 149902 port 541 149902 unique_id port 149905 username hashtadani4 149905 mac 149905 bytes_out 0 149905 bytes_in 0 149905 station_ip 113.203.26.1 149905 port 273 149905 unique_id port 149905 remote_ip 10.8.1.142 149908 username hashtadani4 149908 mac 149908 bytes_out 0 149908 bytes_in 0 149908 station_ip 113.203.26.1 149908 port 271 149908 unique_id port 149908 remote_ip 10.8.1.142 149909 username hashtadani4 149909 mac 149909 bytes_out 0 149909 bytes_in 0 149909 station_ip 113.203.26.1 149909 port 545 149909 unique_id port 149909 remote_ip 10.8.0.182 149915 username hashtadani4 149915 mac 149915 bytes_out 0 149915 bytes_in 0 149915 station_ip 113.203.26.1 149915 port 536 149915 unique_id port 149915 remote_ip 10.8.0.182 149916 username hashtadani4 149916 mac 149916 bytes_out 0 149916 bytes_in 0 149916 station_ip 113.203.26.1 149916 port 522 149916 unique_id port 149916 remote_ip 10.8.0.182 149917 username hashtadani4 149917 mac 149917 bytes_out 0 149917 bytes_in 0 149917 station_ip 113.203.26.1 149917 port 522 149917 unique_id port 149917 remote_ip 10.8.0.182 149918 username hassan 149918 mac 149918 bytes_out 0 149918 bytes_in 0 149918 station_ip 5.119.209.218 149918 port 491 149918 unique_id port 149918 remote_ip 10.8.0.122 149924 username barzegar 149924 mac 149924 bytes_out 0 149924 bytes_in 0 149924 station_ip 5.119.236.105 149924 port 491 149924 unique_id port 149924 remote_ip 10.8.0.234 149926 username hashtadani4 149926 mac 149926 bytes_out 0 149926 bytes_in 0 149926 station_ip 113.203.26.1 149926 port 491 149926 unique_id port 149926 remote_ip 10.8.0.182 149927 username hashtadani4 149927 mac 149927 bytes_out 0 149927 bytes_in 0 149927 station_ip 113.203.26.1 149927 port 491 149927 unique_id port 149927 remote_ip 10.8.0.182 149931 username hashtadani4 149931 mac 149931 bytes_out 0 149931 bytes_in 0 149931 station_ip 113.203.26.1 149931 port 271 149931 unique_id port 149931 remote_ip 10.8.1.142 149933 username hashtadani4 149933 mac 149933 bytes_out 0 149933 bytes_in 0 149933 station_ip 113.203.26.1 149933 port 530 149933 unique_id port 149933 remote_ip 10.8.0.182 149935 username nilufarrajaei 149935 mac 149935 bytes_out 0 149935 bytes_in 0 149935 station_ip 37.129.171.152 149935 port 489 149935 unique_id port 149935 remote_ip 10.8.0.206 149940 username godarzi 149940 mac 149940 bytes_out 0 149940 bytes_in 0 149940 station_ip 5.120.175.82 149940 port 536 149940 unique_id port 149940 remote_ip 10.8.0.174 149942 username barzegar 149942 mac 149942 bytes_out 0 149942 bytes_in 0 149942 station_ip 5.119.236.105 149942 port 489 149942 unique_id port 149942 remote_ip 10.8.0.234 149947 username hosseine 149947 kill_reason Another user logged on this global unique id 149947 mac 149947 bytes_out 0 149947 bytes_in 0 149947 station_ip 37.129.49.210 149947 port 540 149912 station_ip 113.203.26.1 149912 port 522 149912 unique_id port 149912 remote_ip 10.8.0.182 149913 username barzegar 149913 mac 149913 bytes_out 0 149913 bytes_in 0 149913 station_ip 5.119.236.105 149913 port 522 149913 unique_id port 149913 remote_ip 10.8.0.234 149919 username hashtadani4 149919 mac 149919 bytes_out 0 149919 bytes_in 0 149919 station_ip 113.203.26.1 149919 port 491 149919 unique_id port 149919 remote_ip 10.8.0.182 149921 username amin.saeedi 149921 unique_id port 149921 terminate_cause User-Request 149921 bytes_out 7803607 149921 bytes_in 318147702 149921 station_ip 151.238.243.163 149921 port 15731052 149921 nas_port_type Virtual 149921 remote_ip 5.5.5.189 149922 username hashtadani4 149922 mac 149922 bytes_out 0 149922 bytes_in 0 149922 station_ip 113.203.26.1 149922 port 491 149922 unique_id port 149922 remote_ip 10.8.0.182 149923 username hashtadani4 149923 mac 149923 bytes_out 0 149923 bytes_in 0 149923 station_ip 113.203.26.1 149923 port 522 149923 unique_id port 149923 remote_ip 10.8.0.182 149929 username kalantary 149929 mac 149929 bytes_out 33742 149929 bytes_in 62665 149929 station_ip 83.122.220.20 149929 port 530 149929 unique_id port 149929 remote_ip 10.8.0.98 149932 username hashtadani4 149932 mac 149932 bytes_out 0 149932 bytes_in 0 149932 station_ip 113.203.26.1 149932 port 271 149932 unique_id port 149932 remote_ip 10.8.1.142 149934 username mohammadmahdi 149934 mac 149934 bytes_out 192248 149934 bytes_in 1215926 149934 station_ip 5.119.129.67 149934 port 522 149934 unique_id port 149934 remote_ip 10.8.0.54 149938 username hashtadani4 149938 mac 149938 bytes_out 0 149938 bytes_in 0 149938 station_ip 113.203.26.1 149938 port 489 149938 unique_id port 149938 remote_ip 10.8.0.182 149939 username hashtadani4 149939 mac 149939 bytes_out 0 149939 bytes_in 0 149939 station_ip 113.203.26.1 149939 port 489 149939 unique_id port 149939 remote_ip 10.8.0.182 149945 username hashtadani4 149945 mac 149945 bytes_out 0 149945 bytes_in 0 149945 station_ip 113.203.26.1 149945 port 489 149945 unique_id port 149945 remote_ip 10.8.0.182 149946 username hashtadani4 149946 mac 149946 bytes_out 0 149946 bytes_in 0 149946 station_ip 113.203.26.1 149946 port 489 149946 unique_id port 149946 remote_ip 10.8.0.182 149948 username hashtadani4 149948 mac 149948 bytes_out 0 149948 bytes_in 0 149948 station_ip 113.203.26.1 149948 port 489 149948 unique_id port 149948 remote_ip 10.8.0.182 149949 username hashtadani4 149949 mac 149949 bytes_out 0 149949 bytes_in 0 149949 station_ip 113.203.26.1 149949 port 489 149949 unique_id port 149949 remote_ip 10.8.0.182 149950 username hashtadani4 149950 mac 149950 bytes_out 0 149950 bytes_in 0 149950 station_ip 113.203.26.1 149950 port 489 149950 unique_id port 149950 remote_ip 10.8.0.182 149953 username hashtadani4 149953 mac 149953 bytes_out 0 149953 bytes_in 0 149953 station_ip 113.203.26.1 149953 port 489 149953 unique_id port 149953 remote_ip 10.8.0.182 149955 username hashtadani4 149955 mac 149955 bytes_out 0 149955 bytes_in 0 149955 station_ip 113.203.26.1 149955 port 489 149955 unique_id port 149955 remote_ip 10.8.0.182 149956 username hashtadani4 149956 mac 149956 bytes_out 0 149956 bytes_in 0 149956 station_ip 113.203.26.1 149956 port 271 149956 unique_id port 149956 remote_ip 10.8.1.142 149957 username barzegar 149957 mac 149957 bytes_out 3103 149957 bytes_in 6743 149957 station_ip 5.119.236.105 149944 mac 149944 bytes_out 934471 149944 bytes_in 10774009 149944 station_ip 5.119.129.67 149944 port 530 149944 unique_id port 149944 remote_ip 10.8.0.54 149954 username hashtadani4 149954 mac 149954 bytes_out 0 149954 bytes_in 0 149954 station_ip 113.203.26.1 149954 port 489 149954 unique_id port 149954 remote_ip 10.8.0.182 149962 username hashtadani4 149962 mac 149962 bytes_out 0 149962 bytes_in 0 149962 station_ip 113.203.26.1 149962 port 491 149962 unique_id port 149962 remote_ip 10.8.0.182 149967 username hashtadani4 149967 mac 149967 bytes_out 3403 149967 bytes_in 12936 149967 station_ip 113.203.26.1 149967 port 489 149967 unique_id port 149967 remote_ip 10.8.0.182 149968 username godarzi 149968 mac 149968 bytes_out 88237 149968 bytes_in 498413 149968 station_ip 5.120.175.82 149968 port 491 149968 unique_id port 149968 remote_ip 10.8.0.174 149970 username barzegar 149970 mac 149970 bytes_out 23845 149970 bytes_in 12902 149970 station_ip 5.119.236.105 149970 port 491 149970 unique_id port 149970 remote_ip 10.8.0.234 149972 username barzegar 149972 mac 149972 bytes_out 0 149972 bytes_in 0 149972 station_ip 5.119.236.105 149972 port 491 149972 unique_id port 149972 remote_ip 10.8.0.234 149974 username barzegar 149974 mac 149974 bytes_out 0 149974 bytes_in 0 149974 station_ip 5.119.236.105 149974 port 271 149974 unique_id port 149974 remote_ip 10.8.1.174 149978 username alipour 149978 mac 149978 bytes_out 29607 149978 bytes_in 41986 149978 station_ip 83.123.143.5 149978 port 544 149978 unique_id port 149978 remote_ip 10.8.0.102 149981 username forozandeh1 149981 mac 149981 bytes_out 2115757 149981 bytes_in 11204725 149981 station_ip 83.122.159.56 149981 port 536 149981 unique_id port 149981 remote_ip 10.8.0.130 149987 username barzegar 149987 mac 149987 bytes_out 0 149987 bytes_in 0 149987 station_ip 5.119.236.105 149987 port 545 149987 unique_id port 149987 remote_ip 10.8.0.234 149994 username barzegar 149994 mac 149994 bytes_out 0 149994 bytes_in 0 149994 station_ip 5.119.236.105 149994 port 489 149994 unique_id port 149994 remote_ip 10.8.0.234 149996 username hashtadani4 149996 mac 149996 bytes_out 0 149996 bytes_in 0 149996 station_ip 113.203.26.1 149996 port 489 149996 unique_id port 149996 remote_ip 10.8.0.182 149998 username hashtadani4 149998 mac 149998 bytes_out 0 149998 bytes_in 0 149998 station_ip 113.203.26.1 149998 port 489 149998 unique_id port 149998 remote_ip 10.8.0.182 150000 username godarzi 150000 mac 150000 bytes_out 0 150000 bytes_in 0 150000 station_ip 5.120.175.82 150000 port 522 150000 unique_id port 150000 remote_ip 10.8.0.174 150001 username hashtadani4 150001 mac 150001 bytes_out 0 150001 bytes_in 0 150001 station_ip 113.203.26.1 150001 port 271 150001 unique_id port 150001 remote_ip 10.8.1.142 150002 username hashtadani4 150002 mac 150002 bytes_out 0 150002 bytes_in 0 150002 station_ip 113.203.26.1 150002 port 491 150002 unique_id port 150002 remote_ip 10.8.0.182 150006 username hashtadani4 150006 mac 150006 bytes_out 0 150006 bytes_in 0 150006 station_ip 113.203.26.1 150006 port 271 150006 unique_id port 150006 remote_ip 10.8.1.142 150012 username hashtadani4 150012 mac 150012 bytes_out 0 150012 bytes_in 0 150012 station_ip 113.203.26.1 150012 port 536 150012 unique_id port 150012 remote_ip 10.8.0.182 150014 username rezaei 150014 mac 150014 bytes_out 0 150014 bytes_in 0 149947 unique_id port 149947 remote_ip 10.8.0.238 149951 username vanila 149951 mac 149951 bytes_out 2027490 149951 bytes_in 2065513 149951 station_ip 113.203.57.165 149951 port 491 149951 unique_id port 149951 remote_ip 10.8.0.178 149952 username hashtadani4 149952 mac 149952 bytes_out 0 149952 bytes_in 0 149952 station_ip 113.203.26.1 149952 port 489 149952 unique_id port 149952 remote_ip 10.8.0.182 149958 username barzegar 149958 mac 149958 bytes_out 0 149958 bytes_in 0 149958 station_ip 5.119.236.105 149958 port 522 149958 unique_id port 149958 remote_ip 10.8.0.234 149965 username vanila 149965 mac 149965 bytes_out 1044853 149965 bytes_in 1415161 149965 station_ip 113.203.57.165 149965 port 489 149965 unique_id port 149965 remote_ip 10.8.0.178 149966 username hashtadani4 149966 mac 149966 bytes_out 0 149966 bytes_in 0 149966 station_ip 113.203.26.1 149966 port 489 149966 unique_id port 149966 remote_ip 10.8.0.182 149971 username sedighe 149971 mac 149971 bytes_out 253221 149971 bytes_in 258439 149971 station_ip 83.122.61.0 149971 port 541 149971 unique_id port 149971 remote_ip 10.8.0.146 149973 username nilufarrajaei 149973 mac 149973 bytes_out 0 149973 bytes_in 0 149973 station_ip 37.129.171.152 149973 port 545 149973 unique_id port 149975 username hashtadani4 149975 kill_reason Another user logged on this global unique id 149975 mac 149975 bytes_out 0 149975 bytes_in 0 149975 station_ip 113.203.26.1 149975 port 489 149975 unique_id port 149975 remote_ip 10.8.0.182 149976 username hosseine 149976 kill_reason Another user logged on this global unique id 149976 mac 149976 bytes_out 0 149976 bytes_in 0 149976 station_ip 37.129.49.210 149976 port 540 149976 unique_id port 149977 username alipour 149977 mac 149977 bytes_out 3155344 149977 bytes_in 36508765 149977 station_ip 83.123.143.5 149977 port 523 149977 unique_id port 149977 remote_ip 10.8.0.102 149983 username hosseine 149983 kill_reason Another user logged on this global unique id 149983 mac 149983 bytes_out 0 149983 bytes_in 0 149983 station_ip 37.129.49.210 149983 port 540 149983 unique_id port 149984 username kalantary 149984 mac 149984 bytes_out 0 149984 bytes_in 0 149984 station_ip 83.122.131.252 149984 port 491 149984 unique_id port 149984 remote_ip 10.8.0.98 149985 username mohammadjavad 149985 mac 149985 bytes_out 0 149985 bytes_in 0 149985 station_ip 37.129.179.53 149985 port 536 149985 unique_id port 149985 remote_ip 10.8.0.142 149986 username moradi 149986 mac 149986 bytes_out 0 149986 bytes_in 0 149986 station_ip 113.203.19.117 149986 port 545 149986 unique_id port 149986 remote_ip 10.8.0.226 149988 username saeed9658 149988 mac 149988 bytes_out 0 149988 bytes_in 0 149988 station_ip 5.120.114.170 149988 port 530 149988 unique_id port 149988 remote_ip 10.8.0.62 150005 username hashtadani4 150005 mac 150005 bytes_out 0 150005 bytes_in 0 150005 station_ip 113.203.26.1 150005 port 536 150005 unique_id port 150005 remote_ip 10.8.0.182 150007 username nilufarrajaei 150007 mac 150007 bytes_out 0 150007 bytes_in 0 150007 station_ip 37.129.171.152 150007 port 541 150007 unique_id port 150007 remote_ip 10.8.0.206 150010 username zotaher 150010 mac 150010 bytes_out 0 150010 bytes_in 0 150010 station_ip 37.129.188.188 150010 port 553 150010 unique_id port 150010 remote_ip 10.8.0.194 150013 username barzegar 150013 mac 150013 bytes_out 0 150013 bytes_in 0 150013 station_ip 5.119.236.105 150013 port 541 149957 port 491 149957 unique_id port 149957 remote_ip 10.8.0.234 149959 username hashtadani4 149959 mac 149959 bytes_out 0 149959 bytes_in 0 149959 station_ip 113.203.26.1 149959 port 489 149959 unique_id port 149959 remote_ip 10.8.0.182 149960 username hashtadani4 149960 mac 149960 bytes_out 0 149960 bytes_in 0 149960 station_ip 113.203.26.1 149960 port 491 149960 unique_id port 149960 remote_ip 10.8.0.182 149961 username hashtadani4 149961 mac 149961 bytes_out 0 149961 bytes_in 0 149961 station_ip 113.203.26.1 149961 port 491 149961 unique_id port 149961 remote_ip 10.8.0.182 149963 username alikomsari 149963 mac 149963 bytes_out 3602820 149963 bytes_in 28173196 149963 station_ip 5.119.86.94 149963 port 544 149963 unique_id port 149963 remote_ip 10.8.0.70 149964 username hashtadani4 149964 mac 149964 bytes_out 0 149964 bytes_in 0 149964 station_ip 113.203.26.1 149964 port 491 149964 unique_id port 149964 remote_ip 10.8.0.182 149969 username nilufarrajaei 149969 kill_reason Another user logged on this global unique id 149969 mac 149969 bytes_out 0 149969 bytes_in 0 149969 station_ip 37.129.171.152 149969 port 545 149969 unique_id port 149969 remote_ip 10.8.0.206 149979 username barzegar 149979 kill_reason Maximum check online fails reached 149979 mac 149979 bytes_out 0 149979 bytes_in 0 149979 station_ip 5.119.236.105 149979 port 544 149979 unique_id port 149980 username sedighe 149980 mac 149980 bytes_out 15601 149980 bytes_in 18701 149980 station_ip 83.122.61.0 149980 port 491 149980 unique_id port 149980 remote_ip 10.8.0.146 149982 username barzegar 149982 mac 149982 bytes_out 0 149982 bytes_in 0 149982 station_ip 5.119.236.105 149982 port 536 149982 unique_id port 149982 remote_ip 10.8.0.234 149989 username hashtadani4 149989 kill_reason Another user logged on this global unique id 149989 mac 149989 bytes_out 0 149989 bytes_in 0 149989 station_ip 113.203.26.1 149989 port 489 149989 unique_id port 149990 username moradi 149990 mac 149990 bytes_out 0 149990 bytes_in 0 149990 station_ip 113.203.19.117 149990 port 491 149990 unique_id port 149990 remote_ip 10.8.0.226 149991 username hashtadani4 149991 mac 149991 bytes_out 0 149991 bytes_in 0 149991 station_ip 113.203.26.1 149991 port 489 149991 unique_id port 149992 username hashtadani4 149992 mac 149992 bytes_out 0 149992 bytes_in 0 149992 station_ip 113.203.26.1 149992 port 491 149992 unique_id port 149992 remote_ip 10.8.0.182 149993 username sedighe 149993 mac 149993 bytes_out 0 149993 bytes_in 0 149993 station_ip 83.122.61.0 149993 port 552 149993 unique_id port 149993 remote_ip 10.8.0.146 149995 username hashtadani4 149995 mac 149995 bytes_out 0 149995 bytes_in 0 149995 station_ip 113.203.26.1 149995 port 491 149995 unique_id port 149995 remote_ip 10.8.0.182 149997 username hashtadani4 149997 mac 149997 bytes_out 0 149997 bytes_in 0 149997 station_ip 113.203.26.1 149997 port 489 149997 unique_id port 149997 remote_ip 10.8.0.182 149999 username kalantary 149999 mac 149999 bytes_out 0 149999 bytes_in 0 149999 station_ip 83.122.131.252 149999 port 536 149999 unique_id port 149999 remote_ip 10.8.0.98 150003 username hashtadani4 150003 mac 150003 bytes_out 0 150003 bytes_in 0 150003 station_ip 113.203.26.1 150003 port 536 150003 unique_id port 150003 remote_ip 10.8.0.182 150004 username barzegar 150004 mac 150004 bytes_out 0 150004 bytes_in 0 150004 station_ip 5.119.236.105 150004 port 522 150004 unique_id port 150004 remote_ip 10.8.0.234 150008 username hashtadani4 150008 mac 150008 bytes_out 0 150008 bytes_in 0 150008 station_ip 113.203.26.1 150008 port 536 150008 unique_id port 150008 remote_ip 10.8.0.182 150009 username hashtadani4 150009 mac 150009 bytes_out 0 150009 bytes_in 0 150009 station_ip 113.203.26.1 150009 port 536 150009 unique_id port 150009 remote_ip 10.8.0.182 150011 username hashtadani4 150011 mac 150011 bytes_out 0 150011 bytes_in 0 150011 station_ip 113.203.26.1 150011 port 536 150011 unique_id port 150011 remote_ip 10.8.0.182 150015 username moradi 150015 mac 150015 bytes_out 0 150015 bytes_in 0 150015 station_ip 113.203.19.117 150015 port 489 150015 unique_id port 150015 remote_ip 10.8.0.226 150019 username hashtadani4 150019 mac 150019 bytes_out 0 150019 bytes_in 0 150019 station_ip 113.203.26.1 150019 port 489 150019 unique_id port 150019 remote_ip 10.8.0.182 150022 username hashtadani4 150022 mac 150022 bytes_out 0 150022 bytes_in 0 150022 station_ip 113.203.26.1 150022 port 273 150022 unique_id port 150022 remote_ip 10.8.1.142 150023 username hashtadani4 150023 mac 150023 bytes_out 0 150023 bytes_in 0 150023 station_ip 113.203.26.1 150023 port 273 150023 unique_id port 150023 remote_ip 10.8.1.142 150028 username hashtadani4 150028 mac 150028 bytes_out 0 150028 bytes_in 0 150028 station_ip 113.203.26.1 150028 port 273 150028 unique_id port 150028 remote_ip 10.8.1.142 150031 username sedighe 150031 mac 150031 bytes_out 0 150031 bytes_in 0 150031 station_ip 83.122.61.0 150031 port 489 150031 unique_id port 150031 remote_ip 10.8.0.146 150037 username hashtadani4 150037 mac 150037 bytes_out 0 150037 bytes_in 0 150037 station_ip 113.203.26.1 150037 port 536 150037 unique_id port 150037 remote_ip 10.8.0.182 150041 username hashtadani4 150041 mac 150041 bytes_out 0 150041 bytes_in 0 150041 station_ip 113.203.26.1 150041 port 271 150041 unique_id port 150041 remote_ip 10.8.1.142 150044 username sedighe 150044 mac 150044 bytes_out 0 150044 bytes_in 0 150044 station_ip 83.122.61.0 150044 port 522 150044 unique_id port 150044 remote_ip 10.8.0.146 150045 username hashtadani4 150045 mac 150045 bytes_out 0 150045 bytes_in 0 150045 station_ip 113.203.26.1 150045 port 522 150045 unique_id port 150045 remote_ip 10.8.0.182 150062 username mohammadjavad 150062 mac 150062 bytes_out 0 150062 bytes_in 0 150062 station_ip 83.122.97.2 150062 port 522 150062 unique_id port 150062 remote_ip 10.8.0.142 150063 username barzegar 150063 mac 150063 bytes_out 0 150063 bytes_in 0 150063 station_ip 5.119.236.105 150063 port 273 150063 unique_id port 150063 remote_ip 10.8.1.174 150065 username kalantary 150065 mac 150065 bytes_out 0 150065 bytes_in 0 150065 station_ip 83.122.171.36 150065 port 540 150065 unique_id port 150065 remote_ip 10.8.0.98 150066 username godarzi 150066 mac 150066 bytes_out 0 150066 bytes_in 0 150066 station_ip 5.120.175.82 150066 port 530 150066 unique_id port 150066 remote_ip 10.8.0.174 150068 username hashtadani4 150068 mac 150068 bytes_out 21923 150068 bytes_in 333137 150068 station_ip 5.202.24.8 150068 port 273 150068 unique_id port 150068 remote_ip 10.8.1.142 150072 username hamidsalari 150072 mac 150072 bytes_out 0 150072 bytes_in 0 150072 station_ip 5.120.163.14 150072 port 521 150072 unique_id port 150073 username sedighe 150073 mac 150073 bytes_out 0 150013 unique_id port 150013 remote_ip 10.8.0.234 150020 username sedighe 150020 mac 150020 bytes_out 0 150020 bytes_in 0 150020 station_ip 83.122.61.0 150020 port 530 150020 unique_id port 150020 remote_ip 10.8.0.146 150021 username hashtadani4 150021 mac 150021 bytes_out 0 150021 bytes_in 0 150021 station_ip 113.203.26.1 150021 port 273 150021 unique_id port 150021 remote_ip 10.8.1.142 150025 username hashtadani4 150025 mac 150025 bytes_out 0 150025 bytes_in 0 150025 station_ip 113.203.26.1 150025 port 273 150025 unique_id port 150025 remote_ip 10.8.1.142 150027 username nilufarrajaei 150027 mac 150027 bytes_out 0 150027 bytes_in 0 150027 station_ip 37.129.171.152 150027 port 522 150027 unique_id port 150027 remote_ip 10.8.0.206 150030 username kalantary 150030 mac 150030 bytes_out 610990 150030 bytes_in 1228047 150030 station_ip 83.122.131.252 150030 port 553 150030 unique_id port 150030 remote_ip 10.8.0.98 150033 username hashtadani4 150033 mac 150033 bytes_out 0 150033 bytes_in 0 150033 station_ip 113.203.26.1 150033 port 273 150033 unique_id port 150033 remote_ip 10.8.1.142 150034 username barzegar 150034 mac 150034 bytes_out 16096 150034 bytes_in 85710 150034 station_ip 5.119.236.105 150034 port 271 150034 unique_id port 150034 remote_ip 10.8.1.174 150036 username hashtadani4 150036 mac 150036 bytes_out 0 150036 bytes_in 0 150036 station_ip 113.203.26.1 150036 port 271 150036 unique_id port 150036 remote_ip 10.8.1.142 150039 username sedighe 150039 mac 150039 bytes_out 0 150039 bytes_in 0 150039 station_ip 83.122.61.0 150039 port 522 150039 unique_id port 150039 remote_ip 10.8.0.146 150043 username hashtadani4 150043 mac 150043 bytes_out 0 150043 bytes_in 0 150043 station_ip 113.203.26.1 150043 port 536 150043 unique_id port 150043 remote_ip 10.8.0.182 150047 username forozandeh1 150047 mac 150047 bytes_out 0 150047 bytes_in 0 150047 station_ip 37.129.68.208 150047 port 552 150047 unique_id port 150047 remote_ip 10.8.0.130 150050 username hashtadani4 150050 mac 150050 bytes_out 0 150050 bytes_in 0 150050 station_ip 113.203.26.1 150050 port 522 150050 unique_id port 150050 remote_ip 10.8.0.182 150051 username hashtadani4 150051 mac 150051 bytes_out 0 150051 bytes_in 0 150051 station_ip 113.203.26.1 150051 port 522 150051 unique_id port 150051 remote_ip 10.8.0.182 150053 username hashtadani4 150053 mac 150053 bytes_out 0 150053 bytes_in 0 150053 station_ip 113.203.26.1 150053 port 522 150053 unique_id port 150053 remote_ip 10.8.0.182 150069 username mohammadmahdi 150069 mac 150069 bytes_out 0 150069 bytes_in 0 150069 station_ip 5.119.129.67 150069 port 489 150069 unique_id port 150071 username forozandeh1 150071 mac 150071 bytes_out 0 150071 bytes_in 0 150071 station_ip 83.123.225.246 150071 port 530 150071 unique_id port 150071 remote_ip 10.8.0.130 150074 username hashtadani4 150074 mac 150074 bytes_out 0 150074 bytes_in 0 150074 station_ip 5.202.24.8 150074 port 273 150074 unique_id port 150074 remote_ip 10.8.1.142 150076 username khademi 150076 kill_reason Another user logged on this global unique id 150076 mac 150076 bytes_out 0 150076 bytes_in 0 150076 station_ip 83.123.229.197 150076 port 265 150076 unique_id port 150077 username barzegar 150077 mac 150077 bytes_out 2155 150077 bytes_in 4712 150077 station_ip 5.119.236.105 150077 port 274 150077 unique_id port 150077 remote_ip 10.8.1.174 150081 username forozandeh1 150014 station_ip 5.120.46.216 150014 port 545 150014 unique_id port 150014 remote_ip 10.8.0.230 150016 username barzegar 150016 mac 150016 bytes_out 2552 150016 bytes_in 5100 150016 station_ip 5.119.236.105 150016 port 271 150016 unique_id port 150016 remote_ip 10.8.1.174 150017 username godarzi 150017 mac 150017 bytes_out 661146 150017 bytes_in 429474 150017 station_ip 5.120.175.82 150017 port 491 150017 unique_id port 150017 remote_ip 10.8.0.174 150018 username hashtadani4 150018 mac 150018 bytes_out 0 150018 bytes_in 0 150018 station_ip 113.203.26.1 150018 port 536 150018 unique_id port 150018 remote_ip 10.8.0.182 150024 username hashtadani4 150024 mac 150024 bytes_out 0 150024 bytes_in 0 150024 station_ip 113.203.26.1 150024 port 491 150024 unique_id port 150024 remote_ip 10.8.0.182 150026 username hashtadani4 150026 mac 150026 bytes_out 0 150026 bytes_in 0 150026 station_ip 113.203.26.1 150026 port 491 150026 unique_id port 150026 remote_ip 10.8.0.182 150029 username hashtadani4 150029 mac 150029 bytes_out 0 150029 bytes_in 0 150029 station_ip 113.203.26.1 150029 port 522 150029 unique_id port 150029 remote_ip 10.8.0.182 150032 username hashtadani4 150032 mac 150032 bytes_out 0 150032 bytes_in 0 150032 station_ip 113.203.26.1 150032 port 273 150032 unique_id port 150032 remote_ip 10.8.1.142 150035 username hashtadani4 150035 mac 150035 bytes_out 0 150035 bytes_in 0 150035 station_ip 113.203.26.1 150035 port 273 150035 unique_id port 150035 remote_ip 10.8.1.142 150038 username hashtadani4 150038 mac 150038 bytes_out 0 150038 bytes_in 0 150038 station_ip 113.203.26.1 150038 port 536 150038 unique_id port 150038 remote_ip 10.8.0.182 150040 username barzegar 150040 mac 150040 bytes_out 0 150040 bytes_in 0 150040 station_ip 5.119.236.105 150040 port 536 150040 unique_id port 150040 remote_ip 10.8.0.234 150042 username hashtadani4 150042 mac 150042 bytes_out 0 150042 bytes_in 0 150042 station_ip 113.203.26.1 150042 port 536 150042 unique_id port 150042 remote_ip 10.8.0.182 150046 username hashtadani4 150046 mac 150046 bytes_out 0 150046 bytes_in 0 150046 station_ip 113.203.26.1 150046 port 522 150046 unique_id port 150046 remote_ip 10.8.0.182 150048 username hashtadani4 150048 mac 150048 bytes_out 0 150048 bytes_in 0 150048 station_ip 113.203.26.1 150048 port 522 150048 unique_id port 150048 remote_ip 10.8.0.182 150049 username hashtadani4 150049 mac 150049 bytes_out 0 150049 bytes_in 0 150049 station_ip 113.203.26.1 150049 port 271 150049 unique_id port 150049 remote_ip 10.8.1.142 150052 username hosseine 150052 mac 150052 bytes_out 0 150052 bytes_in 0 150052 station_ip 37.129.49.210 150052 port 540 150052 unique_id port 150054 username mohammadmahdi 150054 kill_reason Another user logged on this global unique id 150054 mac 150054 bytes_out 0 150054 bytes_in 0 150054 station_ip 5.119.129.67 150054 port 489 150054 unique_id port 150054 remote_ip 10.8.0.54 150055 username hashtadani4 150055 mac 150055 bytes_out 0 150055 bytes_in 0 150055 station_ip 113.203.26.1 150055 port 540 150055 unique_id port 150055 remote_ip 10.8.0.182 150056 username barzegar 150056 mac 150056 bytes_out 0 150056 bytes_in 0 150056 station_ip 5.119.236.105 150056 port 271 150056 unique_id port 150056 remote_ip 10.8.1.174 150057 username aminvpn 150057 unique_id port 150057 terminate_cause Lost-Carrier 150057 bytes_out 15996959 150057 bytes_in 443964508 150057 station_ip 31.57.129.158 150057 port 15731059 150057 nas_port_type Virtual 150057 remote_ip 5.5.5.255 150058 username forozandeh1 150058 mac 150058 bytes_out 0 150058 bytes_in 0 150058 station_ip 83.122.139.194 150058 port 540 150058 unique_id port 150058 remote_ip 10.8.0.130 150059 username khademi 150059 kill_reason Another user logged on this global unique id 150059 mac 150059 bytes_out 0 150059 bytes_in 0 150059 station_ip 83.123.229.197 150059 port 265 150059 unique_id port 150060 username alipour 150060 mac 150060 bytes_out 0 150060 bytes_in 0 150060 station_ip 83.123.143.5 150060 port 523 150060 unique_id port 150060 remote_ip 10.8.0.102 150061 username hashtadani4 150061 mac 150061 bytes_out 0 150061 bytes_in 0 150061 station_ip 5.202.24.8 150061 port 541 150061 unique_id port 150061 remote_ip 10.8.0.182 150064 username hashtadani4 150064 mac 150064 bytes_out 0 150064 bytes_in 0 150064 station_ip 5.202.24.8 150064 port 522 150064 unique_id port 150064 remote_ip 10.8.0.182 150067 username mohammadmahdi 150067 kill_reason Another user logged on this global unique id 150067 mac 150067 bytes_out 0 150067 bytes_in 0 150067 station_ip 5.119.129.67 150067 port 489 150067 unique_id port 150070 username barzegar 150070 mac 150070 bytes_out 0 150070 bytes_in 0 150070 station_ip 5.119.236.105 150070 port 274 150070 unique_id port 150070 remote_ip 10.8.1.174 150075 username vanila 150075 mac 150075 bytes_out 0 150075 bytes_in 0 150075 station_ip 83.123.25.50 150075 port 522 150075 unique_id port 150075 remote_ip 10.8.0.178 150079 username barzegar 150079 mac 150079 bytes_out 0 150079 bytes_in 0 150079 station_ip 5.119.236.105 150079 port 530 150079 unique_id port 150079 remote_ip 10.8.0.234 150085 username hashtadani4 150085 mac 150085 bytes_out 0 150085 bytes_in 0 150085 station_ip 113.203.42.249 150085 port 522 150085 unique_id port 150085 remote_ip 10.8.0.182 150087 username hashtadani4 150087 mac 150087 bytes_out 0 150087 bytes_in 0 150087 station_ip 113.203.42.249 150087 port 265 150087 unique_id port 150087 remote_ip 10.8.1.142 150088 username moradi 150088 mac 150088 bytes_out 0 150088 bytes_in 0 150088 station_ip 83.123.245.178 150088 port 530 150088 unique_id port 150088 remote_ip 10.8.0.226 150091 username hashtadani4 150091 kill_reason Maximum check online fails reached 150091 mac 150091 bytes_out 0 150091 bytes_in 0 150091 station_ip 113.203.42.249 150091 port 522 150091 unique_id port 150096 username khalili 150096 mac 150096 bytes_out 0 150096 bytes_in 0 150096 station_ip 5.119.24.180 150096 port 526 150096 unique_id port 150097 username khalili 150097 mac 150097 bytes_out 5573 150097 bytes_in 13166 150097 station_ip 5.119.24.180 150097 port 265 150097 unique_id port 150097 remote_ip 10.8.1.18 150098 username hashtadani4 150098 mac 150098 bytes_out 0 150098 bytes_in 0 150098 station_ip 113.203.42.249 150098 port 530 150098 unique_id port 150098 remote_ip 10.8.0.182 150100 username hashtadani4 150100 kill_reason Maximum number of concurrent logins reached 150100 mac 150100 bytes_out 0 150100 bytes_in 0 150100 station_ip 113.203.42.249 150100 port 265 150100 unique_id port 150101 username fezealinaghi 150101 kill_reason Another user logged on this global unique id 150101 mac 150101 bytes_out 0 150101 bytes_in 0 150101 station_ip 113.203.54.213 150101 port 271 150101 unique_id port 150101 remote_ip 10.8.1.162 150103 username hashtadani4 150103 kill_reason Maximum check online fails reached 150103 mac 150073 bytes_in 0 150073 station_ip 37.129.49.5 150073 port 536 150073 unique_id port 150073 remote_ip 10.8.0.146 150078 username vanila 150078 mac 150078 bytes_out 255528 150078 bytes_in 1726718 150078 station_ip 83.123.25.50 150078 port 273 150078 unique_id port 150078 remote_ip 10.8.1.74 150080 username hashtadani4 150080 mac 150080 bytes_out 0 150080 bytes_in 0 150080 station_ip 5.202.24.8 150080 port 273 150080 unique_id port 150080 remote_ip 10.8.1.142 150083 username khademi 150083 mac 150083 bytes_out 0 150083 bytes_in 0 150083 station_ip 83.123.229.197 150083 port 265 150083 unique_id port 150089 username hashtadani4 150089 mac 150089 bytes_out 0 150089 bytes_in 0 150089 station_ip 113.203.42.249 150089 port 265 150089 unique_id port 150089 remote_ip 10.8.1.142 150090 username hashtadani4 150090 mac 150090 bytes_out 0 150090 bytes_in 0 150090 station_ip 113.203.42.249 150090 port 265 150090 unique_id port 150090 remote_ip 10.8.1.142 150092 username hashtadani4 150092 mac 150092 bytes_out 0 150092 bytes_in 0 150092 station_ip 113.203.42.249 150092 port 530 150092 unique_id port 150092 remote_ip 10.8.0.182 150094 username aminvpn 150094 unique_id port 150094 terminate_cause Lost-Carrier 150094 bytes_out 458217 150094 bytes_in 1618927 150094 station_ip 109.125.128.116 150094 port 15731062 150094 nas_port_type Virtual 150094 remote_ip 5.5.5.133 150099 username sedighe 150099 mac 150099 bytes_out 0 150099 bytes_in 0 150099 station_ip 37.129.49.5 150099 port 521 150099 unique_id port 150099 remote_ip 10.8.0.146 150104 username forozandeh1 150104 mac 150104 bytes_out 294095 150104 bytes_in 2055194 150104 station_ip 83.122.130.254 150104 port 555 150104 unique_id port 150104 remote_ip 10.8.0.130 150106 username kalantary 150106 mac 150106 bytes_out 0 150106 bytes_in 0 150106 station_ip 83.122.218.80 150106 port 526 150106 unique_id port 150106 remote_ip 10.8.0.98 150107 username barzegar 150107 mac 150107 bytes_out 61024 150107 bytes_in 164771 150107 station_ip 5.119.236.105 150107 port 552 150107 unique_id port 150107 remote_ip 10.8.0.234 150115 username godarzi 150115 mac 150115 bytes_out 2118611 150115 bytes_in 4667392 150115 station_ip 5.120.175.82 150115 port 540 150115 unique_id port 150115 remote_ip 10.8.0.174 150123 username nilufarrajaei 150123 mac 150123 bytes_out 2974205 150123 bytes_in 33962323 150123 station_ip 37.129.171.152 150123 port 491 150123 unique_id port 150123 remote_ip 10.8.0.206 150126 username hashtadani4 150126 mac 150126 bytes_out 973955 150126 bytes_in 10870636 150126 station_ip 113.203.42.249 150126 port 541 150126 unique_id port 150126 remote_ip 10.8.0.182 150129 username hashtadani4 150129 mac 150129 bytes_out 0 150129 bytes_in 0 150129 station_ip 113.203.42.249 150129 port 265 150129 unique_id port 150129 remote_ip 10.8.1.142 150130 username hashtadani4 150130 kill_reason Maximum check online fails reached 150130 mac 150130 bytes_out 0 150130 bytes_in 0 150130 station_ip 113.203.42.249 150130 port 526 150130 unique_id port 150137 username barzegar 150137 mac 150137 bytes_out 0 150137 bytes_in 0 150137 station_ip 5.119.236.105 150137 port 541 150137 unique_id port 150137 remote_ip 10.8.0.234 150138 username hashtadani4 150138 kill_reason Maximum check online fails reached 150138 mac 150138 bytes_out 0 150138 bytes_in 0 150138 station_ip 113.203.42.249 150138 port 491 150138 unique_id port 150141 username sedighe 150141 mac 150141 bytes_out 0 150081 mac 150081 bytes_out 0 150081 bytes_in 0 150081 station_ip 37.129.206.42 150081 port 522 150081 unique_id port 150081 remote_ip 10.8.0.130 150082 username hashtadani4 150082 mac 150082 bytes_out 0 150082 bytes_in 0 150082 station_ip 113.203.42.249 150082 port 274 150082 unique_id port 150082 remote_ip 10.8.1.142 150084 username hashtadani4 150084 mac 150084 bytes_out 0 150084 bytes_in 0 150084 station_ip 113.203.42.249 150084 port 273 150084 unique_id port 150084 remote_ip 10.8.1.142 150086 username hashtadani4 150086 mac 150086 bytes_out 0 150086 bytes_in 0 150086 station_ip 113.203.42.249 150086 port 522 150086 unique_id port 150086 remote_ip 10.8.0.182 150093 username barzegar 150093 mac 150093 bytes_out 0 150093 bytes_in 0 150093 station_ip 5.119.236.105 150093 port 536 150093 unique_id port 150093 remote_ip 10.8.0.234 150095 username vanila 150095 mac 150095 bytes_out 0 150095 bytes_in 0 150095 station_ip 83.122.225.125 150095 port 541 150095 unique_id port 150095 remote_ip 10.8.0.178 150102 username hashtadani4 150102 kill_reason Maximum check online fails reached 150102 mac 150102 bytes_out 0 150102 bytes_in 0 150102 station_ip 113.203.42.249 150102 port 530 150102 unique_id port 150109 username aminvpn 150109 kill_reason Maximum check online fails reached 150109 mac 150109 bytes_out 0 150109 bytes_in 0 150109 station_ip 83.122.31.126 150109 port 545 150109 unique_id port 150109 remote_ip 10.8.0.14 150110 username forozandeh1 150110 mac 150110 bytes_out 592130 150110 bytes_in 7738623 150110 station_ip 113.203.58.132 150110 port 526 150110 unique_id port 150110 remote_ip 10.8.0.130 150112 username barzegar 150112 mac 150112 bytes_out 0 150112 bytes_in 0 150112 station_ip 5.119.236.105 150112 port 265 150112 unique_id port 150112 remote_ip 10.8.1.174 150114 username meysam 150114 kill_reason Another user logged on this global unique id 150114 mac 150114 bytes_out 0 150114 bytes_in 0 150114 station_ip 188.158.49.160 150114 port 536 150114 unique_id port 150114 remote_ip 10.8.0.110 150116 username fezealinaghi 150116 kill_reason Another user logged on this global unique id 150116 mac 150116 bytes_out 0 150116 bytes_in 0 150116 station_ip 113.203.54.213 150116 port 271 150116 unique_id port 150117 username barzegar 150117 mac 150117 bytes_out 0 150117 bytes_in 0 150117 station_ip 5.119.236.105 150117 port 265 150117 unique_id port 150117 remote_ip 10.8.1.174 150119 username fezealinaghi 150119 kill_reason Another user logged on this global unique id 150119 mac 150119 bytes_out 0 150119 bytes_in 0 150119 station_ip 113.203.54.213 150119 port 271 150119 unique_id port 150120 username vanila 150120 mac 150120 bytes_out 0 150120 bytes_in 0 150120 station_ip 83.122.225.125 150120 port 265 150120 unique_id port 150120 remote_ip 10.8.1.74 150121 username meysam 150121 kill_reason Another user logged on this global unique id 150121 mac 150121 bytes_out 0 150121 bytes_in 0 150121 station_ip 188.158.49.160 150121 port 536 150121 unique_id port 150122 username mosi 150122 mac 150122 bytes_out 0 150122 bytes_in 0 150122 station_ip 151.235.78.77 150122 port 541 150122 unique_id port 150122 remote_ip 10.8.0.138 150125 username godarzi 150125 mac 150125 bytes_out 1014715 150125 bytes_in 1753649 150125 station_ip 5.120.175.82 150125 port 526 150125 unique_id port 150125 remote_ip 10.8.0.174 150128 username hashtadani4 150128 mac 150128 bytes_out 0 150128 bytes_in 0 150128 station_ip 113.203.42.249 150128 port 526 150103 bytes_out 0 150103 bytes_in 0 150103 station_ip 113.203.42.249 150103 port 521 150103 unique_id port 150105 username sabaghnezhad 150105 mac 150105 bytes_out 239430 150105 bytes_in 2013232 150105 station_ip 83.123.243.206 150105 port 536 150105 unique_id port 150105 remote_ip 10.8.0.186 150108 username meysam 150108 mac 150108 bytes_out 0 150108 bytes_in 0 150108 station_ip 188.158.49.160 150108 port 526 150108 unique_id port 150108 remote_ip 10.8.0.110 150111 username vanila 150111 mac 150111 bytes_out 0 150111 bytes_in 0 150111 station_ip 83.122.225.125 150111 port 541 150111 unique_id port 150111 remote_ip 10.8.0.178 150113 username forozandeh1 150113 mac 150113 bytes_out 1051400 150113 bytes_in 16217860 150113 station_ip 83.123.137.141 150113 port 526 150113 unique_id port 150113 remote_ip 10.8.0.130 150118 username aminvpn 150118 mac 150118 bytes_out 0 150118 bytes_in 0 150118 station_ip 31.59.39.200 150118 port 526 150118 unique_id port 150118 remote_ip 10.8.0.14 150124 username barzegar 150124 mac 150124 bytes_out 0 150124 bytes_in 0 150124 station_ip 5.119.236.105 150124 port 491 150124 unique_id port 150124 remote_ip 10.8.0.234 150127 username hashtadani4 150127 mac 150127 bytes_out 0 150127 bytes_in 0 150127 station_ip 113.203.42.249 150127 port 526 150127 unique_id port 150127 remote_ip 10.8.0.182 150132 username kalantary 150132 mac 150132 bytes_out 0 150132 bytes_in 0 150132 station_ip 83.122.161.120 150132 port 491 150132 unique_id port 150132 remote_ip 10.8.0.98 150135 username hashtadani4 150135 mac 150135 bytes_out 0 150135 bytes_in 0 150135 station_ip 113.203.42.249 150135 port 491 150135 unique_id port 150135 remote_ip 10.8.0.182 150136 username barzegar 150136 mac 150136 bytes_out 0 150136 bytes_in 0 150136 station_ip 5.119.236.105 150136 port 491 150136 unique_id port 150136 remote_ip 10.8.0.234 150140 username barzegar 150140 mac 150140 bytes_out 0 150140 bytes_in 0 150140 station_ip 5.119.236.105 150140 port 555 150140 unique_id port 150140 remote_ip 10.8.0.234 150142 username meysam 150142 kill_reason Another user logged on this global unique id 150142 mac 150142 bytes_out 0 150142 bytes_in 0 150142 station_ip 188.158.49.160 150142 port 536 150142 unique_id port 150153 username alipour 150153 mac 150153 bytes_out 130853 150153 bytes_in 186825 150153 station_ip 37.129.13.177 150153 port 523 150153 unique_id port 150153 remote_ip 10.8.0.102 150156 username vanila 150156 mac 150156 bytes_out 1433377 150156 bytes_in 1586957 150156 station_ip 83.122.225.125 150156 port 540 150156 unique_id port 150156 remote_ip 10.8.0.178 150157 username hashtadani4 150157 mac 150157 bytes_out 1644 150157 bytes_in 5129 150157 station_ip 113.203.42.249 150157 port 556 150157 unique_id port 150157 remote_ip 10.8.0.182 150160 username meysam 150160 mac 150160 bytes_out 0 150160 bytes_in 0 150160 station_ip 188.158.49.160 150160 port 556 150160 unique_id port 150160 remote_ip 10.8.0.110 150163 username mansour 150163 mac 150163 bytes_out 584855 150163 bytes_in 5479130 150163 station_ip 5.202.98.165 150163 port 536 150163 unique_id port 150163 remote_ip 10.8.0.30 150171 username sedighe 150171 mac 150171 bytes_out 0 150171 bytes_in 0 150171 station_ip 113.203.37.127 150171 port 555 150171 unique_id port 150171 remote_ip 10.8.0.146 150172 username rezaei 150172 mac 150172 bytes_out 0 150172 bytes_in 0 150128 unique_id port 150128 remote_ip 10.8.0.182 150131 username hashtadani4 150131 mac 150131 bytes_out 0 150131 bytes_in 0 150131 station_ip 113.203.42.249 150131 port 265 150131 unique_id port 150131 remote_ip 10.8.1.142 150133 username hashtadani4 150133 mac 150133 bytes_out 0 150133 bytes_in 0 150133 station_ip 113.203.42.249 150133 port 265 150133 unique_id port 150133 remote_ip 10.8.1.142 150134 username barzegar 150134 mac 150134 bytes_out 0 150134 bytes_in 0 150134 station_ip 5.119.236.105 150134 port 541 150134 unique_id port 150134 remote_ip 10.8.0.234 150139 username fezealinaghi 150139 kill_reason Another user logged on this global unique id 150139 mac 150139 bytes_out 0 150139 bytes_in 0 150139 station_ip 113.203.54.213 150139 port 271 150139 unique_id port 150143 username hatami 150143 mac 150143 bytes_out 0 150143 bytes_in 0 150143 station_ip 46.225.212.70 150143 port 556 150143 unique_id port 150143 remote_ip 10.8.0.106 150144 username barzegar 150144 mac 150144 bytes_out 6743 150144 bytes_in 9914 150144 station_ip 5.119.236.105 150144 port 557 150144 unique_id port 150144 remote_ip 10.8.0.234 150145 username meysam 150145 mac 150145 bytes_out 0 150145 bytes_in 0 150145 station_ip 188.158.49.160 150145 port 536 150145 unique_id port 150147 username hashtadani4 150147 mac 150147 bytes_out 2272893 150147 bytes_in 19076328 150147 station_ip 113.203.42.249 150147 port 265 150147 unique_id port 150147 remote_ip 10.8.1.142 150150 username godarzi 150150 mac 150150 bytes_out 0 150150 bytes_in 0 150150 station_ip 5.120.175.82 150150 port 545 150150 unique_id port 150150 remote_ip 10.8.0.174 150152 username hashtadani4 150152 mac 150152 bytes_out 0 150152 bytes_in 0 150152 station_ip 113.203.42.249 150152 port 265 150152 unique_id port 150152 remote_ip 10.8.1.142 150154 username hashtadani4 150154 kill_reason Maximum number of concurrent logins reached 150154 mac 150154 bytes_out 0 150154 bytes_in 0 150154 station_ip 113.203.42.249 150154 port 523 150154 unique_id port 150158 username barzegar 150158 mac 150158 bytes_out 0 150158 bytes_in 0 150158 station_ip 5.119.236.105 150158 port 540 150158 unique_id port 150158 remote_ip 10.8.0.234 150162 username kalantary 150162 mac 150162 bytes_out 0 150162 bytes_in 0 150162 station_ip 83.122.198.84 150162 port 523 150162 unique_id port 150162 remote_ip 10.8.0.98 150164 username alipour 150164 mac 150164 bytes_out 37342 150164 bytes_in 64695 150164 station_ip 37.129.13.177 150164 port 265 150164 unique_id port 150164 remote_ip 10.8.1.50 150165 username fezealinaghi 150165 kill_reason Another user logged on this global unique id 150165 mac 150165 bytes_out 0 150165 bytes_in 0 150165 station_ip 113.203.54.213 150165 port 271 150165 unique_id port 150169 username vanila 150169 mac 150169 bytes_out 287570 150169 bytes_in 1235527 150169 station_ip 83.122.225.125 150169 port 540 150169 unique_id port 150169 remote_ip 10.8.0.178 150176 username godarzi 150176 mac 150176 bytes_out 82986 150176 bytes_in 584522 150176 station_ip 5.120.175.82 150176 port 556 150176 unique_id port 150176 remote_ip 10.8.0.174 150183 username vanila 150183 mac 150183 bytes_out 29279 150183 bytes_in 35028 150183 station_ip 83.122.225.125 150183 port 556 150183 unique_id port 150183 remote_ip 10.8.0.178 150184 username fezealinaghi 150184 mac 150184 bytes_out 0 150184 bytes_in 0 150184 station_ip 113.203.54.213 150184 port 265 150184 unique_id port 150141 bytes_in 0 150141 station_ip 113.203.37.127 150141 port 556 150141 unique_id port 150141 remote_ip 10.8.0.146 150146 username aminvpn 150146 unique_id port 150146 terminate_cause Lost-Carrier 150146 bytes_out 11236951 150146 bytes_in 300908149 150146 station_ip 31.57.129.18 150146 port 15731061 150146 nas_port_type Virtual 150146 remote_ip 5.5.5.129 150148 username hatami 150148 mac 150148 bytes_out 0 150148 bytes_in 0 150148 station_ip 46.225.212.70 150148 port 558 150148 unique_id port 150148 remote_ip 10.8.0.106 150149 username hatami 150149 mac 150149 bytes_out 8654 150149 bytes_in 51146 150149 station_ip 46.225.212.70 150149 port 536 150149 unique_id port 150149 remote_ip 10.8.0.106 150151 username hashtadani4 150151 mac 150151 bytes_out 0 150151 bytes_in 0 150151 station_ip 113.203.42.249 150151 port 265 150151 unique_id port 150151 remote_ip 10.8.1.142 150155 username hashtadani4 150155 kill_reason Maximum check online fails reached 150155 mac 150155 bytes_out 0 150155 bytes_in 0 150155 station_ip 113.203.42.249 150155 port 545 150155 unique_id port 150159 username tahmasebi 150159 mac 150159 bytes_out 0 150159 bytes_in 0 150159 station_ip 5.119.16.108 150159 port 557 150159 unique_id port 150159 remote_ip 10.8.0.42 150161 username barzegar 150161 mac 150161 bytes_out 0 150161 bytes_in 0 150161 station_ip 5.119.236.105 150161 port 556 150161 unique_id port 150161 remote_ip 10.8.0.234 150166 username hamid.e 150166 unique_id port 150166 terminate_cause Lost-Carrier 150166 bytes_out 19743845 150166 bytes_in 533433067 150166 station_ip 188.245.89.101 150166 port 15731055 150166 nas_port_type Virtual 150166 remote_ip 5.5.5.149 150167 username barzegar 150167 mac 150167 bytes_out 0 150167 bytes_in 0 150167 station_ip 5.119.236.105 150167 port 536 150167 unique_id port 150167 remote_ip 10.8.0.234 150168 username godarzi 150168 mac 150168 bytes_out 56818 150168 bytes_in 330283 150168 station_ip 5.120.175.82 150168 port 558 150168 unique_id port 150168 remote_ip 10.8.0.174 150170 username rezaei 150170 mac 150170 bytes_out 0 150170 bytes_in 0 150170 station_ip 5.120.46.216 150170 port 556 150170 unique_id port 150170 remote_ip 10.8.0.230 150173 username barzegar 150173 mac 150173 bytes_out 0 150173 bytes_in 0 150173 station_ip 5.119.236.105 150173 port 265 150173 unique_id port 150173 remote_ip 10.8.1.174 150174 username fezealinaghi 150174 kill_reason Another user logged on this global unique id 150174 mac 150174 bytes_out 0 150174 bytes_in 0 150174 station_ip 113.203.54.213 150174 port 271 150174 unique_id port 150177 username vanila 150177 mac 150177 bytes_out 1008606 150177 bytes_in 540646 150177 station_ip 83.122.225.125 150177 port 555 150177 unique_id port 150177 remote_ip 10.8.0.178 150179 username fezealinaghi 150179 mac 150179 bytes_out 0 150179 bytes_in 0 150179 station_ip 113.203.54.213 150179 port 271 150179 unique_id port 150181 username barzegar 150181 mac 150181 bytes_out 0 150181 bytes_in 0 150181 station_ip 5.119.236.105 150181 port 271 150181 unique_id port 150181 remote_ip 10.8.1.174 150188 username rezaei 150188 mac 150188 bytes_out 111295 150188 bytes_in 180057 150188 station_ip 5.120.46.216 150188 port 540 150188 unique_id port 150188 remote_ip 10.8.0.230 150191 username barzegar 150191 mac 150191 bytes_out 0 150191 bytes_in 0 150191 station_ip 5.119.236.105 150191 port 271 150191 unique_id port 150191 remote_ip 10.8.1.174 150197 username alipour 150197 mac 150172 station_ip 5.120.46.216 150172 port 540 150172 unique_id port 150172 remote_ip 10.8.0.230 150175 username rezaei 150175 mac 150175 bytes_out 122931 150175 bytes_in 259123 150175 station_ip 5.120.46.216 150175 port 540 150175 unique_id port 150175 remote_ip 10.8.0.230 150178 username meysam 150178 kill_reason Another user logged on this global unique id 150178 mac 150178 bytes_out 0 150178 bytes_in 0 150178 station_ip 188.158.49.160 150178 port 523 150178 unique_id port 150178 remote_ip 10.8.0.110 150180 username sedighe 150180 mac 150180 bytes_out 188717 150180 bytes_in 1226460 150180 station_ip 113.203.37.127 150180 port 536 150180 unique_id port 150180 remote_ip 10.8.0.146 150182 username vanila 150182 mac 150182 bytes_out 192659 150182 bytes_in 1045490 150182 station_ip 83.122.225.125 150182 port 540 150182 unique_id port 150182 remote_ip 10.8.0.178 150186 username forozandeh1 150186 kill_reason Another user logged on this global unique id 150186 mac 150186 bytes_out 0 150186 bytes_in 0 150186 station_ip 83.122.87.111 150186 port 536 150186 unique_id port 150186 remote_ip 10.8.0.130 150189 username barzegar 150189 mac 150189 bytes_out 0 150189 bytes_in 0 150189 station_ip 5.119.236.105 150189 port 271 150189 unique_id port 150189 remote_ip 10.8.1.174 150192 username godarzi 150192 mac 150192 bytes_out 1947166 150192 bytes_in 27823111 150192 station_ip 5.120.175.82 150192 port 540 150192 unique_id port 150192 remote_ip 10.8.0.174 150195 username fezealinaghi 150195 kill_reason Another user logged on this global unique id 150195 mac 150195 bytes_out 0 150195 bytes_in 0 150195 station_ip 113.203.54.213 150195 port 265 150195 unique_id port 150195 remote_ip 10.8.1.162 150196 username sedighe 150196 mac 150196 bytes_out 99398 150196 bytes_in 135461 150196 station_ip 37.129.74.97 150196 port 555 150196 unique_id port 150196 remote_ip 10.8.0.146 150199 username mohammadjavad 150199 mac 150199 bytes_out 2640049 150199 bytes_in 44611014 150199 station_ip 83.122.177.199 150199 port 558 150199 unique_id port 150199 remote_ip 10.8.0.142 150207 username barzegar 150207 mac 150207 bytes_out 0 150207 bytes_in 0 150207 station_ip 5.119.236.105 150207 port 273 150207 unique_id port 150207 remote_ip 10.8.1.174 150209 username godarzi 150209 mac 150209 bytes_out 928738 150209 bytes_in 8076908 150209 station_ip 5.120.175.82 150209 port 540 150209 unique_id port 150209 remote_ip 10.8.0.174 150214 username khalili 150214 kill_reason Another user logged on this global unique id 150214 mac 150214 bytes_out 0 150214 bytes_in 0 150214 station_ip 5.119.24.180 150214 port 553 150214 unique_id port 150214 remote_ip 10.8.0.86 150217 username jamali 150217 mac 150217 bytes_out 2013453 150217 bytes_in 24222970 150217 station_ip 5.120.122.86 150217 port 555 150217 unique_id port 150217 remote_ip 10.8.0.170 150220 username khademi 150220 kill_reason Another user logged on this global unique id 150220 mac 150220 bytes_out 0 150220 bytes_in 0 150220 station_ip 83.123.229.197 150220 port 556 150220 unique_id port 150224 username vanila 150224 mac 150224 bytes_out 1138689 150224 bytes_in 6452659 150224 station_ip 83.122.225.125 150224 port 560 150224 unique_id port 150224 remote_ip 10.8.0.178 150226 username fezealinaghi 150226 kill_reason Another user logged on this global unique id 150226 mac 150226 bytes_out 0 150226 bytes_in 0 150226 station_ip 113.203.54.213 150226 port 265 150226 unique_id port 150231 username sedighe 150231 mac 150231 bytes_out 0 150231 bytes_in 0 150184 remote_ip 10.8.1.162 150185 username fezealinaghi 150185 mac 150185 bytes_out 0 150185 bytes_in 0 150185 station_ip 113.203.54.213 150185 port 265 150185 unique_id port 150185 remote_ip 10.8.1.162 150187 username forozandeh1 150187 mac 150187 bytes_out 0 150187 bytes_in 0 150187 station_ip 83.122.87.111 150187 port 536 150187 unique_id port 150190 username meysam 150190 mac 150190 bytes_out 0 150190 bytes_in 0 150190 station_ip 188.158.49.160 150190 port 523 150190 unique_id port 150193 username meysam 150193 mac 150193 bytes_out 506620 150193 bytes_in 7017272 150193 station_ip 188.158.49.160 150193 port 559 150193 unique_id port 150193 remote_ip 10.8.0.110 150194 username godarzi 150194 mac 150194 bytes_out 55738 150194 bytes_in 192699 150194 station_ip 5.120.175.82 150194 port 540 150194 unique_id port 150194 remote_ip 10.8.0.174 150198 username hamidsalari 150198 kill_reason Another user logged on this global unique id 150198 mac 150198 bytes_out 0 150198 bytes_in 0 150198 station_ip 5.119.215.228 150198 port 489 150198 unique_id port 150198 remote_ip 10.8.0.222 150202 username forozandeh1 150202 mac 150202 bytes_out 740006 150202 bytes_in 10163194 150202 station_ip 113.203.27.6 150202 port 523 150202 unique_id port 150202 remote_ip 10.8.0.130 150203 username sedighe 150203 mac 150203 bytes_out 0 150203 bytes_in 0 150203 station_ip 83.122.116.212 150203 port 540 150203 unique_id port 150203 remote_ip 10.8.0.146 150204 username godarzi 150204 mac 150204 bytes_out 303749 150204 bytes_in 111838 150204 station_ip 5.120.175.82 150204 port 559 150204 unique_id port 150204 remote_ip 10.8.0.174 150206 username abravesh 150206 unique_id port 150206 terminate_cause User-Request 150206 bytes_out 1132 150206 bytes_in 258 150206 station_ip 5.119.75.239 150206 port 15731063 150206 nas_port_type Virtual 150206 remote_ip 5.5.5.140 150208 username fezealinaghi 150208 kill_reason Another user logged on this global unique id 150208 mac 150208 bytes_out 0 150208 bytes_in 0 150208 station_ip 113.203.54.213 150208 port 265 150208 unique_id port 150212 username vanila 150212 mac 150212 bytes_out 1411312 150212 bytes_in 11256454 150212 station_ip 83.122.225.125 150212 port 557 150212 unique_id port 150212 remote_ip 10.8.0.178 150218 username rezaei 150218 mac 150218 bytes_out 173705 150218 bytes_in 791346 150218 station_ip 5.120.46.216 150218 port 536 150218 unique_id port 150218 remote_ip 10.8.0.230 150219 username rezaei 150219 mac 150219 bytes_out 8424 150219 bytes_in 9539 150219 station_ip 5.120.46.216 150219 port 555 150219 unique_id port 150219 remote_ip 10.8.0.230 150221 username jafari 150221 kill_reason Another user logged on this global unique id 150221 mac 150221 bytes_out 0 150221 bytes_in 0 150221 station_ip 5.134.191.1 150221 port 552 150221 unique_id port 150221 remote_ip 10.8.0.242 150222 username forozandeh1 150222 mac 150222 bytes_out 0 150222 bytes_in 0 150222 station_ip 37.129.139.161 150222 port 540 150222 unique_id port 150222 remote_ip 10.8.0.130 150223 username sedighe 150223 mac 150223 bytes_out 112361 150223 bytes_in 104751 150223 station_ip 83.122.116.212 150223 port 523 150223 unique_id port 150223 remote_ip 10.8.0.146 150225 username barzegar 150225 mac 150225 bytes_out 0 150225 bytes_in 0 150225 station_ip 5.119.236.105 150225 port 273 150225 unique_id port 150225 remote_ip 10.8.1.174 150228 username barzegar 150228 mac 150228 bytes_out 0 150228 bytes_in 0 150228 station_ip 5.119.236.105 150197 bytes_out 364555 150197 bytes_in 2668612 150197 station_ip 37.129.13.177 150197 port 557 150197 unique_id port 150197 remote_ip 10.8.0.102 150200 username alipour 150200 mac 150200 bytes_out 137824 150200 bytes_in 1037111 150200 station_ip 37.129.13.177 150200 port 555 150200 unique_id port 150200 remote_ip 10.8.0.102 150201 username barzegar 150201 mac 150201 bytes_out 0 150201 bytes_in 0 150201 station_ip 5.119.236.105 150201 port 273 150201 unique_id port 150201 remote_ip 10.8.1.174 150205 username kalantary 150205 mac 150205 bytes_out 538811 150205 bytes_in 2824124 150205 station_ip 83.122.179.92 150205 port 558 150205 unique_id port 150205 remote_ip 10.8.0.98 150210 username khademi 150210 kill_reason Another user logged on this global unique id 150210 mac 150210 bytes_out 0 150210 bytes_in 0 150210 station_ip 83.123.229.197 150210 port 556 150210 unique_id port 150210 remote_ip 10.8.0.10 150211 username malekpoir 150211 kill_reason Another user logged on this global unique id 150211 mac 150211 bytes_out 0 150211 bytes_in 0 150211 station_ip 5.120.15.13 150211 port 551 150211 unique_id port 150211 remote_ip 10.8.0.58 150213 username alipour 150213 mac 150213 bytes_out 0 150213 bytes_in 0 150213 station_ip 37.129.13.177 150213 port 271 150213 unique_id port 150213 remote_ip 10.8.1.50 150215 username barzegar 150215 mac 150215 bytes_out 0 150215 bytes_in 0 150215 station_ip 5.119.236.105 150215 port 273 150215 unique_id port 150215 remote_ip 10.8.1.174 150216 username godarzi 150216 mac 150216 bytes_out 481677 150216 bytes_in 4614922 150216 station_ip 5.120.175.82 150216 port 558 150216 unique_id port 150216 remote_ip 10.8.0.174 150227 username jafari 150227 kill_reason Another user logged on this global unique id 150227 mac 150227 bytes_out 0 150227 bytes_in 0 150227 station_ip 5.134.191.1 150227 port 552 150227 unique_id port 150230 username hamidsalari 150230 kill_reason Another user logged on this global unique id 150230 mac 150230 bytes_out 0 150230 bytes_in 0 150230 station_ip 5.119.215.228 150230 port 489 150230 unique_id port 150232 username forozandeh1 150232 mac 150232 bytes_out 999983 150232 bytes_in 12406052 150232 station_ip 83.122.44.225 150232 port 558 150232 unique_id port 150232 remote_ip 10.8.0.130 150235 username jafari 150235 kill_reason Another user logged on this global unique id 150235 mac 150235 bytes_out 0 150235 bytes_in 0 150235 station_ip 5.134.191.1 150235 port 552 150235 unique_id port 150238 username sedighe 150238 mac 150238 bytes_out 70159 150238 bytes_in 61312 150238 station_ip 83.122.116.212 150238 port 561 150238 unique_id port 150238 remote_ip 10.8.0.146 150242 username hamidsalari 150242 kill_reason Another user logged on this global unique id 150242 mac 150242 bytes_out 0 150242 bytes_in 0 150242 station_ip 5.119.215.228 150242 port 489 150242 unique_id port 150244 username yarmohamadi 150244 kill_reason Another user logged on this global unique id 150244 mac 150244 bytes_out 0 150244 bytes_in 0 150244 station_ip 5.119.108.204 150244 port 536 150244 unique_id port 150244 remote_ip 10.8.0.150 150246 username jamali 150246 mac 150246 bytes_out 648416 150246 bytes_in 6018121 150246 station_ip 5.120.122.86 150246 port 557 150246 unique_id port 150246 remote_ip 10.8.0.170 150249 username hashtadani4 150249 mac 150249 bytes_out 0 150249 bytes_in 0 150249 station_ip 37.129.139.52 150249 port 273 150249 unique_id port 150249 remote_ip 10.8.1.142 150251 username hamidsalari 150251 kill_reason Another user logged on this global unique id 150251 mac 150228 port 273 150228 unique_id port 150228 remote_ip 10.8.1.174 150229 username hamidsalari 150229 kill_reason Another user logged on this global unique id 150229 mac 150229 bytes_out 0 150229 bytes_in 0 150229 station_ip 5.119.215.228 150229 port 489 150229 unique_id port 150233 username hamidsalari 150233 kill_reason Another user logged on this global unique id 150233 mac 150233 bytes_out 0 150233 bytes_in 0 150233 station_ip 5.119.215.228 150233 port 489 150233 unique_id port 150234 username barzegar 150234 mac 150234 bytes_out 0 150234 bytes_in 0 150234 station_ip 5.119.236.105 150234 port 273 150234 unique_id port 150234 remote_ip 10.8.1.174 150239 username hamidsalari 150239 kill_reason Another user logged on this global unique id 150239 mac 150239 bytes_out 0 150239 bytes_in 0 150239 station_ip 5.119.215.228 150239 port 489 150239 unique_id port 150240 username kalantary 150240 mac 150240 bytes_out 186127 150240 bytes_in 463710 150240 station_ip 83.122.152.24 150240 port 540 150240 unique_id port 150240 remote_ip 10.8.0.98 150245 username kalantary 150245 mac 150245 bytes_out 51741 150245 bytes_in 68036 150245 station_ip 83.122.152.24 150245 port 540 150245 unique_id port 150245 remote_ip 10.8.0.98 150247 username barzegar 150247 mac 150247 bytes_out 0 150247 bytes_in 0 150247 station_ip 5.119.236.105 150247 port 275 150247 unique_id port 150247 remote_ip 10.8.1.174 150250 username hamidsalari 150250 mac 150250 bytes_out 0 150250 bytes_in 0 150250 station_ip 5.119.215.228 150250 port 489 150250 unique_id port 150256 username sedighe 150256 mac 150256 bytes_out 5545 150256 bytes_in 10325 150256 station_ip 83.122.116.212 150256 port 540 150256 unique_id port 150256 remote_ip 10.8.0.146 150257 username hashtadani4 150257 kill_reason Maximum check online fails reached 150257 mac 150257 bytes_out 0 150257 bytes_in 0 150257 station_ip 37.129.139.52 150257 port 489 150257 unique_id port 150262 username hamidsalari 150262 kill_reason Another user logged on this global unique id 150262 mac 150262 bytes_out 0 150262 bytes_in 0 150262 station_ip 5.119.215.228 150262 port 561 150262 unique_id port 150262 remote_ip 10.8.0.222 150267 username jamali 150267 mac 150267 bytes_out 10376 150267 bytes_in 11055 150267 station_ip 5.120.122.86 150267 port 523 150267 unique_id port 150267 remote_ip 10.8.0.170 150269 username hamidsalari 150269 kill_reason Another user logged on this global unique id 150269 mac 150269 bytes_out 0 150269 bytes_in 0 150269 station_ip 5.119.215.228 150269 port 561 150269 unique_id port 150271 username hadibarzegar 150271 mac 150271 bytes_out 0 150271 bytes_in 0 150271 station_ip 83.123.139.1 150271 port 275 150271 unique_id port 150271 remote_ip 10.8.1.150 150272 username sedighe 150272 mac 150272 bytes_out 63213 150272 bytes_in 104736 150272 station_ip 83.122.116.212 150272 port 540 150272 unique_id port 150272 remote_ip 10.8.0.146 150275 username hamidsalari 150275 mac 150275 bytes_out 0 150275 bytes_in 0 150275 station_ip 5.119.215.228 150275 port 561 150275 unique_id port 150278 username jamali 150278 mac 150278 bytes_out 34267 150278 bytes_in 92806 150278 station_ip 5.120.122.86 150278 port 523 150278 unique_id port 150278 remote_ip 10.8.0.170 150280 username yarmohamadi 150280 kill_reason Another user logged on this global unique id 150280 mac 150280 bytes_out 0 150280 bytes_in 0 150280 station_ip 5.119.108.204 150280 port 536 150280 unique_id port 150281 username jamali 150281 mac 150281 bytes_out 0 150281 bytes_in 0 150231 station_ip 83.122.116.212 150231 port 540 150231 unique_id port 150231 remote_ip 10.8.0.146 150236 username hamidsalari 150236 kill_reason Another user logged on this global unique id 150236 mac 150236 bytes_out 0 150236 bytes_in 0 150236 station_ip 5.119.215.228 150236 port 489 150236 unique_id port 150237 username hamidsalari 150237 kill_reason Another user logged on this global unique id 150237 mac 150237 bytes_out 0 150237 bytes_in 0 150237 station_ip 5.119.215.228 150237 port 489 150237 unique_id port 150241 username hashtadani4 150241 mac 150241 bytes_out 104079 150241 bytes_in 1067986 150241 station_ip 37.129.139.52 150241 port 558 150241 unique_id port 150241 remote_ip 10.8.0.182 150243 username barzegar 150243 mac 150243 bytes_out 0 150243 bytes_in 0 150243 station_ip 5.119.236.105 150243 port 275 150243 unique_id port 150243 remote_ip 10.8.1.174 150248 username sedighe 150248 mac 150248 bytes_out 0 150248 bytes_in 0 150248 station_ip 83.122.116.212 150248 port 562 150248 unique_id port 150248 remote_ip 10.8.0.146 150253 username hamidsalari 150253 kill_reason Another user logged on this global unique id 150253 mac 150253 bytes_out 0 150253 bytes_in 0 150253 station_ip 5.119.215.228 150253 port 489 150253 unique_id port 150258 username hashtadani4 150258 kill_reason Maximum check online fails reached 150258 mac 150258 bytes_out 0 150258 bytes_in 0 150258 station_ip 37.129.139.52 150258 port 273 150258 unique_id port 150259 username jamali 150259 mac 150259 bytes_out 26728 150259 bytes_in 104272 150259 station_ip 5.120.122.86 150259 port 557 150259 unique_id port 150259 remote_ip 10.8.0.170 150264 username hamidsalari 150264 kill_reason Another user logged on this global unique id 150264 mac 150264 bytes_out 0 150264 bytes_in 0 150264 station_ip 5.119.215.228 150264 port 561 150264 unique_id port 150273 username hamidsalari 150273 kill_reason Another user logged on this global unique id 150273 mac 150273 bytes_out 0 150273 bytes_in 0 150273 station_ip 5.119.215.228 150273 port 561 150273 unique_id port 150277 username mahdixz 150277 unique_id port 150277 terminate_cause Lost-Carrier 150277 bytes_out 5676553 150277 bytes_in 10210576 150277 station_ip 151.235.88.111 150277 port 15731065 150277 nas_port_type Virtual 150277 remote_ip 5.5.5.255 150279 username fezealinaghi 150279 kill_reason Another user logged on this global unique id 150279 mac 150279 bytes_out 0 150279 bytes_in 0 150279 station_ip 113.203.54.213 150279 port 265 150279 unique_id port 150282 username sedighe 150282 mac 150282 bytes_out 20928 150282 bytes_in 26181 150282 station_ip 83.122.116.212 150282 port 557 150282 unique_id port 150282 remote_ip 10.8.0.146 150283 username barzegar 150283 mac 150283 bytes_out 0 150283 bytes_in 0 150283 station_ip 5.119.236.105 150283 port 557 150283 unique_id port 150283 remote_ip 10.8.0.234 150289 username vanila 150289 mac 150289 bytes_out 316678 150289 bytes_in 1777704 150289 station_ip 83.122.225.125 150289 port 523 150289 unique_id port 150289 remote_ip 10.8.0.178 150292 username sedighe 150292 mac 150292 bytes_out 246421 150292 bytes_in 5490580 150292 station_ip 83.122.116.212 150292 port 552 150292 unique_id port 150292 remote_ip 10.8.0.146 150298 username hosseine 150298 mac 150298 bytes_out 48019 150298 bytes_in 211128 150298 station_ip 37.129.123.214 150298 port 552 150298 unique_id port 150298 remote_ip 10.8.0.238 150300 username jamali 150300 mac 150300 bytes_out 0 150300 bytes_in 0 150300 station_ip 5.120.122.86 150300 port 265 150300 unique_id port 150251 bytes_out 0 150251 bytes_in 0 150251 station_ip 5.119.215.228 150251 port 489 150251 unique_id port 150252 username hashtadani4 150252 kill_reason Another user logged on this global unique id 150252 mac 150252 bytes_out 0 150252 bytes_in 0 150252 station_ip 37.129.139.52 150252 port 273 150252 unique_id port 150254 username hashtadani4 150254 kill_reason Maximum number of concurrent logins reached 150254 mac 150254 bytes_out 0 150254 bytes_in 0 150254 station_ip 37.129.139.52 150254 port 557 150254 unique_id port 150255 username hashtadani4 150255 kill_reason Maximum number of concurrent logins reached 150255 mac 150255 bytes_out 0 150255 bytes_in 0 150255 station_ip 37.129.139.52 150255 port 561 150255 unique_id port 150260 username rezaei 150260 kill_reason Another user logged on this global unique id 150260 mac 150260 bytes_out 0 150260 bytes_in 0 150260 station_ip 5.120.46.216 150260 port 555 150260 unique_id port 150260 remote_ip 10.8.0.230 150261 username kordestani 150261 mac 150261 bytes_out 2081783 150261 bytes_in 23083575 150261 station_ip 151.235.86.8 150261 port 523 150261 unique_id port 150261 remote_ip 10.8.0.134 150263 username jamali 150263 mac 150263 bytes_out 4211 150263 bytes_in 7664 150263 station_ip 5.120.122.86 150263 port 523 150263 unique_id port 150263 remote_ip 10.8.0.170 150265 username hamidsalari 150265 kill_reason Another user logged on this global unique id 150265 mac 150265 bytes_out 0 150265 bytes_in 0 150265 station_ip 5.119.215.228 150265 port 561 150265 unique_id port 150266 username barzegar 150266 mac 150266 bytes_out 5478 150266 bytes_in 7908 150266 station_ip 5.119.236.105 150266 port 273 150266 unique_id port 150266 remote_ip 10.8.1.174 150268 username vanila 150268 mac 150268 bytes_out 0 150268 bytes_in 0 150268 station_ip 83.122.225.125 150268 port 558 150268 unique_id port 150268 remote_ip 10.8.0.178 150270 username kalantary 150270 mac 150270 bytes_out 101462 150270 bytes_in 257650 150270 station_ip 83.122.135.76 150270 port 557 150270 unique_id port 150270 remote_ip 10.8.0.98 150274 username kordestani 150274 mac 150274 bytes_out 0 150274 bytes_in 0 150274 station_ip 151.235.118.239 150274 port 273 150274 unique_id port 150274 remote_ip 10.8.1.98 150276 username aminvpn 150276 kill_reason Another user logged on this global unique id 150276 mac 150276 bytes_out 0 150276 bytes_in 0 150276 station_ip 83.123.216.163 150276 port 541 150276 unique_id port 150276 remote_ip 10.8.0.14 150287 username vanila 150287 mac 150287 bytes_out 7112 150287 bytes_in 23357 150287 station_ip 83.122.225.125 150287 port 523 150287 unique_id port 150287 remote_ip 10.8.0.178 150290 username hosseine 150290 mac 150290 bytes_out 20749410 150290 bytes_in 38831860 150290 station_ip 37.129.123.214 150290 port 559 150290 unique_id port 150290 remote_ip 10.8.0.238 150293 username barzegar 150293 mac 150293 bytes_out 0 150293 bytes_in 0 150293 station_ip 5.119.236.105 150293 port 275 150293 unique_id port 150293 remote_ip 10.8.1.174 150294 username vanila 150294 mac 150294 bytes_out 298837 150294 bytes_in 1426367 150294 station_ip 83.122.225.125 150294 port 558 150294 unique_id port 150294 remote_ip 10.8.0.178 150295 username barzegar 150295 mac 150295 bytes_out 13028 150295 bytes_in 5489 150295 station_ip 5.119.236.105 150295 port 558 150295 unique_id port 150295 remote_ip 10.8.0.234 150296 username yarmohamadi 150296 mac 150296 bytes_out 0 150296 bytes_in 0 150296 station_ip 5.119.108.204 150296 port 536 150296 unique_id port 150281 station_ip 5.120.122.86 150281 port 273 150281 unique_id port 150281 remote_ip 10.8.1.82 150284 username jafari 150284 mac 150284 bytes_out 0 150284 bytes_in 0 150284 station_ip 5.134.191.1 150284 port 552 150284 unique_id port 150285 username sedighe 150285 mac 150285 bytes_out 24796 150285 bytes_in 23824 150285 station_ip 83.122.116.212 150285 port 523 150285 unique_id port 150285 remote_ip 10.8.0.146 150286 username forozandeh1 150286 mac 150286 bytes_out 238430 150286 bytes_in 2360182 150286 station_ip 83.122.118.54 150286 port 557 150286 unique_id port 150286 remote_ip 10.8.0.130 150288 username fezealinaghi 150288 kill_reason Another user logged on this global unique id 150288 mac 150288 bytes_out 0 150288 bytes_in 0 150288 station_ip 113.203.54.213 150288 port 265 150288 unique_id port 150291 username rezaei 150291 kill_reason Another user logged on this global unique id 150291 mac 150291 bytes_out 0 150291 bytes_in 0 150291 station_ip 5.120.46.216 150291 port 555 150291 unique_id port 150297 username jamali 150297 mac 150297 bytes_out 0 150297 bytes_in 0 150297 station_ip 5.120.122.86 150297 port 273 150297 unique_id port 150297 remote_ip 10.8.1.82 150302 username moradi 150302 kill_reason Another user logged on this global unique id 150302 mac 150302 bytes_out 0 150302 bytes_in 0 150302 station_ip 37.129.65.101 150302 port 557 150302 unique_id port 150302 remote_ip 10.8.0.226 150304 username barzegar 150304 mac 150304 bytes_out 0 150304 bytes_in 0 150304 station_ip 5.119.236.105 150304 port 562 150304 unique_id port 150304 remote_ip 10.8.0.234 150306 username fezealinaghi 150306 kill_reason Another user logged on this global unique id 150306 mac 150306 bytes_out 0 150306 bytes_in 0 150306 station_ip 113.203.54.213 150306 port 536 150306 unique_id port 150306 remote_ip 10.8.0.78 150307 username vanila 150307 mac 150307 bytes_out 291066 150307 bytes_in 1345595 150307 station_ip 83.122.225.125 150307 port 558 150307 unique_id port 150307 remote_ip 10.8.0.178 150309 username malekpoir 150309 kill_reason Another user logged on this global unique id 150309 mac 150309 bytes_out 0 150309 bytes_in 0 150309 station_ip 5.120.15.13 150309 port 551 150309 unique_id port 150312 username alikomsari 150312 mac 150312 bytes_out 0 150312 bytes_in 0 150312 station_ip 5.119.86.94 150312 port 561 150312 unique_id port 150312 remote_ip 10.8.0.70 150318 username kalantary 150318 mac 150318 bytes_out 0 150318 bytes_in 0 150318 station_ip 83.122.210.224 150318 port 555 150318 unique_id port 150318 remote_ip 10.8.0.98 150320 username kalantary 150320 mac 150320 bytes_out 0 150320 bytes_in 0 150320 station_ip 83.122.210.224 150320 port 555 150320 unique_id port 150320 remote_ip 10.8.0.98 150322 username jamali 150322 mac 150322 bytes_out 14594 150322 bytes_in 14246 150322 station_ip 5.120.122.86 150322 port 265 150322 unique_id port 150322 remote_ip 10.8.1.82 150324 username aminvpn 150324 unique_id port 150324 terminate_cause Lost-Carrier 150324 bytes_out 8232612 150324 bytes_in 222076931 150324 station_ip 5.119.178.76 150324 port 15731066 150324 nas_port_type Virtual 150324 remote_ip 5.5.5.142 150336 username barzegar 150336 mac 150336 bytes_out 0 150336 bytes_in 0 150336 station_ip 5.119.236.105 150336 port 551 150336 unique_id port 150336 remote_ip 10.8.0.234 150341 username vanila 150341 mac 150341 bytes_out 426416 150341 bytes_in 3105116 150341 station_ip 83.122.225.125 150341 port 551 150341 unique_id port 150341 remote_ip 10.8.0.178 150347 username godarzi 150299 username fezealinaghi 150299 mac 150299 bytes_out 0 150299 bytes_in 0 150299 station_ip 113.203.54.213 150299 port 265 150299 unique_id port 150303 username jamali 150303 mac 150303 bytes_out 12362 150303 bytes_in 23622 150303 station_ip 5.120.122.86 150303 port 559 150303 unique_id port 150303 remote_ip 10.8.0.170 150305 username rezaei 150305 mac 150305 bytes_out 0 150305 bytes_in 0 150305 station_ip 5.120.46.216 150305 port 555 150305 unique_id port 150313 username khalili 150313 kill_reason Another user logged on this global unique id 150313 mac 150313 bytes_out 0 150313 bytes_in 0 150313 station_ip 5.119.24.180 150313 port 553 150313 unique_id port 150315 username barzegar 150315 mac 150315 bytes_out 0 150315 bytes_in 0 150315 station_ip 5.119.236.105 150315 port 561 150315 unique_id port 150315 remote_ip 10.8.0.234 150319 username vanila 150319 mac 150319 bytes_out 0 150319 bytes_in 0 150319 station_ip 83.122.225.125 150319 port 561 150319 unique_id port 150319 remote_ip 10.8.0.178 150323 username sedighe 150323 mac 150323 bytes_out 0 150323 bytes_in 0 150323 station_ip 83.122.116.212 150323 port 523 150323 unique_id port 150323 remote_ip 10.8.0.146 150325 username jamali 150325 mac 150325 bytes_out 12754 150325 bytes_in 18137 150325 station_ip 5.120.122.86 150325 port 265 150325 unique_id port 150325 remote_ip 10.8.1.82 150326 username alikomsari 150326 kill_reason Another user logged on this global unique id 150326 mac 150326 bytes_out 0 150326 bytes_in 0 150326 station_ip 5.119.86.94 150326 port 559 150326 unique_id port 150326 remote_ip 10.8.0.70 150327 username barzegar 150327 mac 150327 bytes_out 0 150327 bytes_in 0 150327 station_ip 5.119.236.105 150327 port 523 150327 unique_id port 150327 remote_ip 10.8.0.234 150329 username khalili 150329 kill_reason Another user logged on this global unique id 150329 mac 150329 bytes_out 0 150329 bytes_in 0 150329 station_ip 5.119.24.180 150329 port 553 150329 unique_id port 150331 username barzegar 150331 mac 150331 bytes_out 0 150331 bytes_in 0 150331 station_ip 5.119.236.105 150331 port 523 150331 unique_id port 150331 remote_ip 10.8.0.234 150334 username sedighe 150334 mac 150334 bytes_out 0 150334 bytes_in 0 150334 station_ip 83.122.116.212 150334 port 523 150334 unique_id port 150334 remote_ip 10.8.0.146 150338 username sedighe 150338 mac 150338 bytes_out 0 150338 bytes_in 0 150338 station_ip 83.122.116.212 150338 port 555 150338 unique_id port 150338 remote_ip 10.8.0.146 150343 username alikomsari 150343 kill_reason Another user logged on this global unique id 150343 mac 150343 bytes_out 0 150343 bytes_in 0 150343 station_ip 5.119.86.94 150343 port 559 150343 unique_id port 150344 username barzegar 150344 mac 150344 bytes_out 0 150344 bytes_in 0 150344 station_ip 5.119.236.105 150344 port 551 150344 unique_id port 150344 remote_ip 10.8.0.234 150345 username sedighe 150345 mac 150345 bytes_out 0 150345 bytes_in 0 150345 station_ip 83.122.116.212 150345 port 563 150345 unique_id port 150345 remote_ip 10.8.0.146 150346 username sedighe 150346 mac 150346 bytes_out 0 150346 bytes_in 0 150346 station_ip 83.122.116.212 150346 port 551 150346 unique_id port 150346 remote_ip 10.8.0.146 150348 username kalantary 150348 mac 150348 bytes_out 0 150348 bytes_in 0 150348 station_ip 83.122.221.236 150348 port 562 150348 unique_id port 150348 remote_ip 10.8.0.98 150351 username barzegar 150351 mac 150300 remote_ip 10.8.1.82 150301 username jamali 150301 mac 150301 bytes_out 0 150301 bytes_in 0 150301 station_ip 5.120.122.86 150301 port 558 150301 unique_id port 150301 remote_ip 10.8.0.170 150308 username jamali 150308 mac 150308 bytes_out 1252698 150308 bytes_in 14686625 150308 station_ip 5.120.122.86 150308 port 559 150308 unique_id port 150308 remote_ip 10.8.0.170 150310 username jamali 150310 mac 150310 bytes_out 0 150310 bytes_in 0 150310 station_ip 5.120.122.86 150310 port 558 150310 unique_id port 150310 remote_ip 10.8.0.170 150311 username moradi 150311 mac 150311 bytes_out 0 150311 bytes_in 0 150311 station_ip 37.129.65.101 150311 port 557 150311 unique_id port 150314 username jamali 150314 mac 150314 bytes_out 13286 150314 bytes_in 16517 150314 station_ip 5.120.122.86 150314 port 265 150314 unique_id port 150314 remote_ip 10.8.1.82 150316 username jamali 150316 mac 150316 bytes_out 11587 150316 bytes_in 15226 150316 station_ip 5.120.122.86 150316 port 265 150316 unique_id port 150316 remote_ip 10.8.1.82 150317 username mohammadjavad 150317 mac 150317 bytes_out 0 150317 bytes_in 0 150317 station_ip 113.203.61.208 150317 port 557 150317 unique_id port 150317 remote_ip 10.8.0.142 150321 username hatami 150321 kill_reason Another user logged on this global unique id 150321 mac 150321 bytes_out 0 150321 bytes_in 0 150321 station_ip 151.235.76.47 150321 port 560 150321 unique_id port 150321 remote_ip 10.8.0.106 150328 username vanila 150328 mac 150328 bytes_out 0 150328 bytes_in 0 150328 station_ip 83.122.225.125 150328 port 557 150328 unique_id port 150328 remote_ip 10.8.0.178 150330 username fezealinaghi 150330 kill_reason Another user logged on this global unique id 150330 mac 150330 bytes_out 0 150330 bytes_in 0 150330 station_ip 113.203.54.213 150330 port 536 150330 unique_id port 150332 username sedighe 150332 mac 150332 bytes_out 0 150332 bytes_in 0 150332 station_ip 83.122.116.212 150332 port 555 150332 unique_id port 150332 remote_ip 10.8.0.146 150333 username malekpoir 150333 mac 150333 bytes_out 0 150333 bytes_in 0 150333 station_ip 5.120.15.13 150333 port 551 150333 unique_id port 150335 username malekpoir 150335 mac 150335 bytes_out 0 150335 bytes_in 0 150335 station_ip 5.120.15.13 150335 port 555 150335 unique_id port 150335 remote_ip 10.8.0.58 150337 username godarzi 150337 kill_reason Another user logged on this global unique id 150337 mac 150337 bytes_out 0 150337 bytes_in 0 150337 station_ip 5.202.5.1 150337 port 274 150337 unique_id port 150337 remote_ip 10.8.1.230 150339 username jafari 150339 kill_reason Another user logged on this global unique id 150339 mac 150339 bytes_out 0 150339 bytes_in 0 150339 station_ip 5.134.191.1 150339 port 557 150339 unique_id port 150339 remote_ip 10.8.0.242 150340 username fezealinaghi 150340 kill_reason Another user logged on this global unique id 150340 mac 150340 bytes_out 0 150340 bytes_in 0 150340 station_ip 113.203.54.213 150340 port 536 150340 unique_id port 150342 username forozandeh1 150342 mac 150342 bytes_out 0 150342 bytes_in 0 150342 station_ip 83.123.81.239 150342 port 555 150342 unique_id port 150342 remote_ip 10.8.0.130 150349 username jafari 150349 kill_reason Another user logged on this global unique id 150349 mac 150349 bytes_out 0 150349 bytes_in 0 150349 station_ip 5.134.191.1 150349 port 557 150349 unique_id port 150350 username barzegar 150350 mac 150350 bytes_out 0 150350 bytes_in 0 150350 station_ip 5.119.236.105 150350 port 551 150347 kill_reason Another user logged on this global unique id 150347 mac 150347 bytes_out 0 150347 bytes_in 0 150347 station_ip 5.202.5.1 150347 port 274 150347 unique_id port 150355 username fezealinaghi 150355 mac 150355 bytes_out 0 150355 bytes_in 0 150355 station_ip 113.203.54.213 150355 port 536 150355 unique_id port 150356 username tahmasebi 150356 mac 150356 bytes_out 0 150356 bytes_in 0 150356 station_ip 5.120.56.192 150356 port 551 150356 unique_id port 150356 remote_ip 10.8.0.42 150362 username jamali 150362 mac 150362 bytes_out 0 150362 bytes_in 0 150362 station_ip 5.120.122.86 150362 port 536 150362 unique_id port 150362 remote_ip 10.8.0.170 150365 username godarzi 150365 mac 150365 bytes_out 242546 150365 bytes_in 3096959 150365 station_ip 5.202.5.1 150365 port 265 150365 unique_id port 150365 remote_ip 10.8.1.230 150370 username aminvpn 150370 kill_reason Another user logged on this global unique id 150370 mac 150370 bytes_out 0 150370 bytes_in 0 150370 station_ip 83.123.216.163 150370 port 541 150370 unique_id port 150371 username mohammadmahdi 150371 kill_reason Another user logged on this global unique id 150371 mac 150371 bytes_out 0 150371 bytes_in 0 150371 station_ip 5.119.129.67 150371 port 560 150371 unique_id port 150371 remote_ip 10.8.0.54 150372 username kalantary 150372 mac 150372 bytes_out 240928 150372 bytes_in 1174776 150372 station_ip 83.122.145.232 150372 port 551 150372 unique_id port 150372 remote_ip 10.8.0.98 150375 username barzegar 150375 mac 150375 bytes_out 0 150375 bytes_in 0 150375 station_ip 5.119.236.105 150375 port 265 150375 unique_id port 150375 remote_ip 10.8.1.174 150380 username milan 150380 kill_reason Another user logged on this global unique id 150380 mac 150380 bytes_out 0 150380 bytes_in 0 150380 station_ip 5.120.31.183 150380 port 562 150380 unique_id port 150381 username godarzi 150381 mac 150381 bytes_out 87499 150381 bytes_in 335998 150381 station_ip 5.202.5.1 150381 port 560 150381 unique_id port 150381 remote_ip 10.8.0.174 150385 username Mahin 150385 mac 150385 bytes_out 0 150385 bytes_in 0 150385 station_ip 5.120.182.223 150385 port 558 150385 unique_id port 150385 remote_ip 10.8.0.158 150389 username rahim 150389 kill_reason Another user logged on this global unique id 150389 mac 150389 bytes_out 0 150389 bytes_in 0 150389 station_ip 5.120.153.199 150389 port 564 150389 unique_id port 150390 username barzegar 150390 mac 150390 bytes_out 0 150390 bytes_in 0 150390 station_ip 5.119.236.105 150390 port 563 150390 unique_id port 150390 remote_ip 10.8.0.234 150393 username milan 150393 mac 150393 bytes_out 0 150393 bytes_in 0 150393 station_ip 5.120.31.183 150393 port 562 150393 unique_id port 150397 username jafari 150397 kill_reason Another user logged on this global unique id 150397 mac 150397 bytes_out 0 150397 bytes_in 0 150397 station_ip 5.134.191.1 150397 port 557 150397 unique_id port 150401 username mohammadmahdi 150401 kill_reason Another user logged on this global unique id 150401 mac 150401 bytes_out 0 150401 bytes_in 0 150401 station_ip 5.119.129.67 150401 port 551 150401 unique_id port 150401 remote_ip 10.8.0.54 150407 username mohammadmahdi 150407 kill_reason Another user logged on this global unique id 150407 mac 150407 bytes_out 0 150407 bytes_in 0 150407 station_ip 5.119.129.67 150407 port 551 150407 unique_id port 150408 username barzegar 150408 kill_reason Maximum check online fails reached 150408 mac 150408 bytes_out 0 150408 bytes_in 0 150408 station_ip 5.119.236.105 150408 port 562 150350 unique_id port 150350 remote_ip 10.8.0.234 150353 username tahmasebi 150353 mac 150353 bytes_out 0 150353 bytes_in 0 150353 station_ip 5.120.56.192 150353 port 551 150353 unique_id port 150353 remote_ip 10.8.0.42 150354 username vanila 150354 mac 150354 bytes_out 172062 150354 bytes_in 547157 150354 station_ip 83.122.225.125 150354 port 563 150354 unique_id port 150354 remote_ip 10.8.0.178 150359 username hatami 150359 mac 150359 bytes_out 0 150359 bytes_in 0 150359 station_ip 151.235.76.47 150359 port 560 150359 unique_id port 150360 username jamali 150360 mac 150360 bytes_out 111044 150360 bytes_in 148190 150360 station_ip 5.120.122.86 150360 port 265 150360 unique_id port 150360 remote_ip 10.8.1.82 150363 username barzegar 150363 mac 150363 bytes_out 0 150363 bytes_in 0 150363 station_ip 5.119.236.105 150363 port 551 150363 unique_id port 150363 remote_ip 10.8.0.234 150364 username jamali 150364 mac 150364 bytes_out 0 150364 bytes_in 0 150364 station_ip 5.120.122.86 150364 port 563 150364 unique_id port 150364 remote_ip 10.8.0.170 150367 username jamali 150367 mac 150367 bytes_out 0 150367 bytes_in 0 150367 station_ip 5.120.122.86 150367 port 536 150367 unique_id port 150367 remote_ip 10.8.0.170 150369 username barzegar 150369 mac 150369 bytes_out 0 150369 bytes_in 0 150369 station_ip 5.119.236.105 150369 port 551 150369 unique_id port 150369 remote_ip 10.8.0.234 150374 username rahim 150374 kill_reason Another user logged on this global unique id 150374 mac 150374 bytes_out 0 150374 bytes_in 0 150374 station_ip 5.120.153.199 150374 port 564 150374 unique_id port 150374 remote_ip 10.8.0.50 150376 username vanila 150376 mac 150376 bytes_out 0 150376 bytes_in 0 150376 station_ip 83.122.225.125 150376 port 551 150376 unique_id port 150376 remote_ip 10.8.0.178 150378 username alipour 150378 mac 150378 bytes_out 0 150378 bytes_in 0 150378 station_ip 37.129.13.177 150378 port 271 150378 unique_id port 150379 username mohammadmahdi 150379 mac 150379 bytes_out 0 150379 bytes_in 0 150379 station_ip 5.119.129.67 150379 port 560 150379 unique_id port 150382 username jamali 150382 kill_reason Another user logged on this global unique id 150382 mac 150382 bytes_out 0 150382 bytes_in 0 150382 station_ip 5.120.122.86 150382 port 536 150382 unique_id port 150382 remote_ip 10.8.0.170 150384 username rahim 150384 kill_reason Another user logged on this global unique id 150384 mac 150384 bytes_out 0 150384 bytes_in 0 150384 station_ip 5.120.153.199 150384 port 564 150384 unique_id port 150386 username sedighe 150386 mac 150386 bytes_out 100850 150386 bytes_in 118396 150386 station_ip 83.122.116.212 150386 port 563 150386 unique_id port 150386 remote_ip 10.8.0.146 150387 username Mahin 150387 mac 150387 bytes_out 0 150387 bytes_in 0 150387 station_ip 5.120.182.223 150387 port 271 150387 unique_id port 150387 remote_ip 10.8.1.186 150388 username barzegar 150388 mac 150388 bytes_out 0 150388 bytes_in 0 150388 station_ip 5.119.236.105 150388 port 558 150388 unique_id port 150388 remote_ip 10.8.0.234 150391 username barzegar 150391 mac 150391 bytes_out 0 150391 bytes_in 0 150391 station_ip 5.119.236.105 150391 port 273 150391 unique_id port 150391 remote_ip 10.8.1.174 150394 username barzegar 150394 mac 150394 bytes_out 0 150394 bytes_in 0 150394 station_ip 5.119.236.105 150394 port 566 150394 unique_id port 150394 remote_ip 10.8.0.234 150396 username barzegar 150351 bytes_out 0 150351 bytes_in 0 150351 station_ip 5.119.236.105 150351 port 273 150351 unique_id port 150351 remote_ip 10.8.1.174 150352 username jafari 150352 kill_reason Another user logged on this global unique id 150352 mac 150352 bytes_out 0 150352 bytes_in 0 150352 station_ip 5.134.191.1 150352 port 557 150352 unique_id port 150357 username barzegar 150357 mac 150357 bytes_out 0 150357 bytes_in 0 150357 station_ip 5.119.236.105 150357 port 536 150357 unique_id port 150357 remote_ip 10.8.0.234 150358 username alipour 150358 kill_reason Another user logged on this global unique id 150358 mac 150358 bytes_out 0 150358 bytes_in 0 150358 station_ip 37.129.13.177 150358 port 271 150358 unique_id port 150358 remote_ip 10.8.1.50 150361 username godarzi 150361 mac 150361 bytes_out 0 150361 bytes_in 0 150361 station_ip 5.202.5.1 150361 port 274 150361 unique_id port 150366 username jafari 150366 kill_reason Another user logged on this global unique id 150366 mac 150366 bytes_out 0 150366 bytes_in 0 150366 station_ip 5.134.191.1 150366 port 557 150366 unique_id port 150368 username milan 150368 kill_reason Another user logged on this global unique id 150368 mac 150368 bytes_out 0 150368 bytes_in 0 150368 station_ip 5.120.31.183 150368 port 562 150368 unique_id port 150368 remote_ip 10.8.0.218 150373 username khalili 150373 kill_reason Another user logged on this global unique id 150373 mac 150373 bytes_out 0 150373 bytes_in 0 150373 station_ip 5.119.24.180 150373 port 553 150373 unique_id port 150377 username aminvpn 150377 unique_id port 150377 terminate_cause User-Request 150377 bytes_out 157171 150377 bytes_in 814195 150377 station_ip 109.125.128.116 150377 port 15731068 150377 nas_port_type Virtual 150377 remote_ip 5.5.5.255 150383 username barzegar 150383 mac 150383 bytes_out 0 150383 bytes_in 0 150383 station_ip 5.119.236.105 150383 port 551 150383 unique_id port 150383 remote_ip 10.8.0.234 150392 username barzegar 150392 mac 150392 bytes_out 0 150392 bytes_in 0 150392 station_ip 5.119.236.105 150392 port 566 150392 unique_id port 150392 remote_ip 10.8.0.234 150395 username jamali 150395 mac 150395 bytes_out 0 150395 bytes_in 0 150395 station_ip 5.120.122.86 150395 port 536 150395 unique_id port 150399 username Mahin 150399 mac 150399 bytes_out 579137 150399 bytes_in 2968559 150399 station_ip 5.120.182.223 150399 port 271 150399 unique_id port 150399 remote_ip 10.8.1.186 150400 username barzegar 150400 kill_reason Maximum check online fails reached 150400 mac 150400 bytes_out 0 150400 bytes_in 0 150400 station_ip 5.119.236.105 150400 port 271 150400 unique_id port 150405 username barzegar 150405 mac 150405 bytes_out 0 150405 bytes_in 0 150405 station_ip 5.119.236.105 150405 port 275 150405 unique_id port 150405 remote_ip 10.8.1.174 150409 username malekpoir 150409 mac 150409 bytes_out 0 150409 bytes_in 0 150409 station_ip 5.120.15.13 150409 port 523 150409 unique_id port 150409 remote_ip 10.8.0.58 150414 username jafari 150414 mac 150414 bytes_out 0 150414 bytes_in 0 150414 station_ip 5.134.191.1 150414 port 557 150414 unique_id port 150416 username vanila 150416 mac 150416 bytes_out 520980 150416 bytes_in 1512245 150416 station_ip 83.122.214.121 150416 port 563 150416 unique_id port 150416 remote_ip 10.8.0.178 150418 username rezaei 150418 mac 150418 bytes_out 2620 150418 bytes_in 17781 150418 station_ip 5.120.46.216 150418 port 523 150418 unique_id port 150418 remote_ip 10.8.0.230 150422 username barzegar 150396 mac 150396 bytes_out 0 150396 bytes_in 0 150396 station_ip 5.119.236.105 150396 port 536 150396 unique_id port 150396 remote_ip 10.8.0.234 150398 username vanila 150398 mac 150398 bytes_out 211573 150398 bytes_in 405113 150398 station_ip 83.122.214.121 150398 port 562 150398 unique_id port 150398 remote_ip 10.8.0.178 150402 username rezaei 150402 kill_reason Another user logged on this global unique id 150402 mac 150402 bytes_out 0 150402 bytes_in 0 150402 station_ip 5.120.46.216 150402 port 561 150402 unique_id port 150402 remote_ip 10.8.0.230 150403 username arash 150403 mac 150403 bytes_out 0 150403 bytes_in 0 150403 station_ip 5.200.111.156 150403 port 558 150403 unique_id port 150403 remote_ip 10.8.0.114 150404 username alipour 150404 mac 150404 bytes_out 0 150404 bytes_in 0 150404 station_ip 37.129.13.177 150404 port 265 150404 unique_id port 150404 remote_ip 10.8.1.50 150406 username kalantary 150406 mac 150406 bytes_out 1832523 150406 bytes_in 14925770 150406 station_ip 83.122.135.120 150406 port 563 150406 unique_id port 150406 remote_ip 10.8.0.98 150413 username barzegar 150413 mac 150413 bytes_out 0 150413 bytes_in 0 150413 station_ip 5.119.236.105 150413 port 275 150413 unique_id port 150413 remote_ip 10.8.1.174 150415 username barzegar 150415 mac 150415 bytes_out 0 150415 bytes_in 0 150415 station_ip 5.119.236.105 150415 port 275 150415 unique_id port 150415 remote_ip 10.8.1.174 150417 username barzegar 150417 mac 150417 bytes_out 0 150417 bytes_in 0 150417 station_ip 5.119.236.105 150417 port 275 150417 unique_id port 150417 remote_ip 10.8.1.174 150420 username mohammadmahdi 150420 kill_reason Another user logged on this global unique id 150420 mac 150420 bytes_out 0 150420 bytes_in 0 150420 station_ip 5.119.129.67 150420 port 551 150420 unique_id port 150423 username mohammadjavad 150423 mac 150423 bytes_out 219007 150423 bytes_in 1181523 150423 station_ip 83.123.78.152 150423 port 558 150423 unique_id port 150423 remote_ip 10.8.0.142 150424 username godarzi 150424 mac 150424 bytes_out 846256 150424 bytes_in 11752144 150424 station_ip 5.202.5.1 150424 port 523 150424 unique_id port 150424 remote_ip 10.8.0.174 150429 username barzegar 150429 mac 150429 bytes_out 0 150429 bytes_in 0 150429 station_ip 5.119.236.105 150429 port 274 150429 unique_id port 150429 remote_ip 10.8.1.174 150435 username sekonji3 150435 mac 150435 bytes_out 0 150435 bytes_in 0 150435 station_ip 37.129.87.210 150435 port 557 150435 unique_id port 150435 remote_ip 10.8.0.6 150453 username hashtadani4 150453 mac 150453 bytes_out 0 150453 bytes_in 0 150453 station_ip 37.129.149.220 150453 port 275 150453 unique_id port 150453 remote_ip 10.8.1.142 150456 username fezealinaghi 150456 kill_reason Another user logged on this global unique id 150456 mac 150456 bytes_out 0 150456 bytes_in 0 150456 station_ip 113.203.6.81 150456 port 563 150456 unique_id port 150458 username barzegar 150458 mac 150458 bytes_out 66686 150458 bytes_in 78232 150458 station_ip 5.119.236.105 150458 port 274 150458 unique_id port 150458 remote_ip 10.8.1.174 150460 username hashtadani4 150460 mac 150460 bytes_out 0 150460 bytes_in 0 150460 station_ip 37.129.149.220 150460 port 557 150460 unique_id port 150460 remote_ip 10.8.0.182 150462 username hashtadani4 150462 mac 150462 bytes_out 0 150462 bytes_in 0 150462 station_ip 37.129.149.220 150462 port 556 150462 unique_id port 150462 remote_ip 10.8.0.182 150408 unique_id port 150410 username amin.saeedi 150410 unique_id port 150410 terminate_cause User-Request 150410 bytes_out 65914 150410 bytes_in 56972 150410 station_ip 151.238.243.163 150410 port 15731069 150410 nas_port_type Virtual 150410 remote_ip 5.5.5.255 150411 username rezaei 150411 mac 150411 bytes_out 0 150411 bytes_in 0 150411 station_ip 5.120.46.216 150411 port 561 150411 unique_id port 150412 username rezaei 150412 mac 150412 bytes_out 93605 150412 bytes_in 812452 150412 station_ip 5.120.46.216 150412 port 523 150412 unique_id port 150412 remote_ip 10.8.0.230 150419 username barzegar 150419 mac 150419 bytes_out 0 150419 bytes_in 0 150419 station_ip 5.119.236.105 150419 port 557 150419 unique_id port 150419 remote_ip 10.8.0.234 150421 username arash 150421 mac 150421 bytes_out 51007 150421 bytes_in 159087 150421 station_ip 5.200.121.76 150421 port 274 150421 unique_id port 150421 remote_ip 10.8.1.102 150427 username ayobi 150427 kill_reason Another user logged on this global unique id 150427 mac 150427 bytes_out 0 150427 bytes_in 0 150427 station_ip 37.27.26.2 150427 port 565 150427 unique_id port 150427 remote_ip 10.8.0.246 150428 username kalantary 150428 mac 150428 bytes_out 0 150428 bytes_in 0 150428 station_ip 83.122.218.100 150428 port 563 150428 unique_id port 150428 remote_ip 10.8.0.98 150430 username vanila 150430 mac 150430 bytes_out 0 150430 bytes_in 0 150430 station_ip 83.122.214.121 150430 port 561 150430 unique_id port 150430 remote_ip 10.8.0.178 150431 username rahim 150431 mac 150431 bytes_out 0 150431 bytes_in 0 150431 station_ip 5.120.153.199 150431 port 564 150431 unique_id port 150432 username aminvpn 150432 mac 150432 bytes_out 0 150432 bytes_in 0 150432 station_ip 83.123.216.163 150432 port 541 150432 unique_id port 150436 username aminvpn 150436 mac 150436 bytes_out 175771 150436 bytes_in 2521683 150436 station_ip 83.122.52.18 150436 port 561 150436 unique_id port 150436 remote_ip 10.8.0.14 150437 username aminvpn 150437 mac 150437 bytes_out 0 150437 bytes_in 0 150437 station_ip 83.123.216.163 150437 port 557 150437 unique_id port 150437 remote_ip 10.8.0.14 150441 username khademi 150441 mac 150441 bytes_out 0 150441 bytes_in 0 150441 station_ip 83.123.229.197 150441 port 556 150441 unique_id port 150444 username moradi 150444 kill_reason Another user logged on this global unique id 150444 mac 150444 bytes_out 0 150444 bytes_in 0 150444 station_ip 37.129.93.1 150444 port 558 150444 unique_id port 150444 remote_ip 10.8.0.226 150446 username hashtadani4 150446 kill_reason Another user logged on this global unique id 150446 mac 150446 bytes_out 0 150446 bytes_in 0 150446 station_ip 37.129.149.220 150446 port 557 150446 unique_id port 150446 remote_ip 10.8.0.182 150448 username hashtadani4 150448 mac 150448 bytes_out 0 150448 bytes_in 0 150448 station_ip 37.129.149.220 150448 port 557 150448 unique_id port 150449 username aminvpn 150449 mac 150449 bytes_out 0 150449 bytes_in 0 150449 station_ip 83.123.216.163 150449 port 541 150449 unique_id port 150449 remote_ip 10.8.0.14 150450 username hashtadani4 150450 mac 150450 bytes_out 0 150450 bytes_in 0 150450 station_ip 37.129.149.220 150450 port 275 150450 unique_id port 150450 remote_ip 10.8.1.142 150451 username hashtadani4 150451 mac 150451 bytes_out 0 150451 bytes_in 0 150451 station_ip 37.129.149.220 150451 port 275 150451 unique_id port 150451 remote_ip 10.8.1.142 150452 username aminvpn 150422 mac 150422 bytes_out 0 150422 bytes_in 0 150422 station_ip 5.119.236.105 150422 port 275 150422 unique_id port 150422 remote_ip 10.8.1.174 150425 username barzegar 150425 mac 150425 bytes_out 0 150425 bytes_in 0 150425 station_ip 5.119.236.105 150425 port 274 150425 unique_id port 150425 remote_ip 10.8.1.174 150426 username rahim 150426 kill_reason Another user logged on this global unique id 150426 mac 150426 bytes_out 0 150426 bytes_in 0 150426 station_ip 5.120.153.199 150426 port 564 150426 unique_id port 150433 username aminvpn 150433 mac 150433 bytes_out 0 150433 bytes_in 0 150433 station_ip 83.122.52.18 150433 port 561 150433 unique_id port 150433 remote_ip 10.8.0.14 150434 username aminvpn 150434 mac 150434 bytes_out 0 150434 bytes_in 0 150434 station_ip 83.123.216.163 150434 port 564 150434 unique_id port 150434 remote_ip 10.8.0.14 150438 username mohammadmahdi 150438 kill_reason Another user logged on this global unique id 150438 mac 150438 bytes_out 0 150438 bytes_in 0 150438 station_ip 5.119.129.67 150438 port 551 150438 unique_id port 150439 username fezealinaghi 150439 kill_reason Another user logged on this global unique id 150439 mac 150439 bytes_out 0 150439 bytes_in 0 150439 station_ip 113.203.6.81 150439 port 563 150439 unique_id port 150439 remote_ip 10.8.0.78 150440 username mohammadjavad 150440 mac 150440 bytes_out 0 150440 bytes_in 0 150440 station_ip 113.203.119.247 150440 port 541 150440 unique_id port 150440 remote_ip 10.8.0.142 150442 username aminvpn 150442 mac 150442 bytes_out 515840 150442 bytes_in 9364972 150442 station_ip 83.122.52.18 150442 port 561 150442 unique_id port 150442 remote_ip 10.8.0.14 150443 username aminvpn 150443 mac 150443 bytes_out 0 150443 bytes_in 0 150443 station_ip 83.123.216.163 150443 port 541 150443 unique_id port 150443 remote_ip 10.8.0.14 150445 username alipour 150445 mac 150445 bytes_out 0 150445 bytes_in 0 150445 station_ip 37.129.13.177 150445 port 265 150445 unique_id port 150445 remote_ip 10.8.1.50 150447 username aminvpn 150447 mac 150447 bytes_out 0 150447 bytes_in 0 150447 station_ip 83.122.52.18 150447 port 556 150447 unique_id port 150447 remote_ip 10.8.0.14 150459 username hashtadani4 150459 mac 150459 bytes_out 0 150459 bytes_in 0 150459 station_ip 37.129.149.220 150459 port 557 150459 unique_id port 150459 remote_ip 10.8.0.182 150461 username aminvpn 150461 mac 150461 bytes_out 0 150461 bytes_in 0 150461 station_ip 83.122.52.18 150461 port 556 150461 unique_id port 150461 remote_ip 10.8.0.14 150464 username hashtadani4 150464 mac 150464 bytes_out 0 150464 bytes_in 0 150464 station_ip 37.129.149.220 150464 port 557 150464 unique_id port 150464 remote_ip 10.8.0.182 150467 username aminvpn 150467 mac 150467 bytes_out 0 150467 bytes_in 0 150467 station_ip 83.123.216.163 150467 port 541 150467 unique_id port 150467 remote_ip 10.8.0.14 150468 username aminvpn 150468 mac 150468 bytes_out 0 150468 bytes_in 0 150468 station_ip 83.122.52.18 150468 port 557 150468 unique_id port 150468 remote_ip 10.8.0.14 150469 username mostafa_es78 150469 unique_id port 150469 terminate_cause User-Request 150469 bytes_out 3798110 150469 bytes_in 27539255 150469 station_ip 5.125.119.243 150469 port 15731067 150469 nas_port_type Virtual 150469 remote_ip 5.5.5.158 150475 username hashtadani4 150475 mac 150475 bytes_out 0 150475 bytes_in 0 150475 station_ip 37.129.149.220 150475 port 274 150475 unique_id port 150475 remote_ip 10.8.1.142 150452 mac 150452 bytes_out 0 150452 bytes_in 0 150452 station_ip 83.122.52.18 150452 port 556 150452 unique_id port 150452 remote_ip 10.8.0.14 150454 username hashtadani4 150454 mac 150454 bytes_out 0 150454 bytes_in 0 150454 station_ip 37.129.149.220 150454 port 556 150454 unique_id port 150454 remote_ip 10.8.0.182 150455 username aminvpn 150455 mac 150455 bytes_out 0 150455 bytes_in 0 150455 station_ip 83.123.216.163 150455 port 557 150455 unique_id port 150455 remote_ip 10.8.0.14 150457 username hosseine 150457 kill_reason Another user logged on this global unique id 150457 mac 150457 bytes_out 0 150457 bytes_in 0 150457 station_ip 37.129.123.214 150457 port 552 150457 unique_id port 150457 remote_ip 10.8.0.238 150465 username houshang 150465 mac 150465 bytes_out 244572 150465 bytes_in 1591730 150465 station_ip 5.119.169.12 150465 port 541 150465 unique_id port 150465 remote_ip 10.8.0.22 150466 username aminvpn 150466 mac 150466 bytes_out 0 150466 bytes_in 0 150466 station_ip 83.122.52.18 150466 port 561 150466 unique_id port 150466 remote_ip 10.8.0.14 150470 username hashtadani4 150470 mac 150470 bytes_out 0 150470 bytes_in 0 150470 station_ip 37.129.149.220 150470 port 561 150470 unique_id port 150470 remote_ip 10.8.0.182 150471 username aminvpn 150471 mac 150471 bytes_out 0 150471 bytes_in 0 150471 station_ip 83.123.216.163 150471 port 541 150471 unique_id port 150471 remote_ip 10.8.0.14 150473 username jafari 150473 mac 150473 bytes_out 0 150473 bytes_in 0 150473 station_ip 5.134.191.1 150473 port 556 150473 unique_id port 150473 remote_ip 10.8.0.242 150474 username hashtadani4 150474 mac 150474 bytes_out 0 150474 bytes_in 0 150474 station_ip 37.129.149.220 150474 port 274 150474 unique_id port 150474 remote_ip 10.8.1.142 150476 username fezealinaghi 150476 kill_reason Another user logged on this global unique id 150476 mac 150476 bytes_out 0 150476 bytes_in 0 150476 station_ip 113.203.6.81 150476 port 563 150476 unique_id port 150477 username hashtadani4 150477 mac 150477 bytes_out 0 150477 bytes_in 0 150477 station_ip 37.129.149.220 150477 port 541 150477 unique_id port 150477 remote_ip 10.8.0.182 150480 username houshang 150480 mac 150480 bytes_out 245833 150480 bytes_in 1620880 150480 station_ip 5.119.169.12 150480 port 557 150480 unique_id port 150480 remote_ip 10.8.0.22 150484 username alikomsari 150484 kill_reason Another user logged on this global unique id 150484 mac 150484 bytes_out 0 150484 bytes_in 0 150484 station_ip 5.119.86.94 150484 port 559 150484 unique_id port 150488 username moradi 150488 kill_reason Another user logged on this global unique id 150488 mac 150488 bytes_out 0 150488 bytes_in 0 150488 station_ip 37.129.93.1 150488 port 558 150488 unique_id port 150490 username hashtadani4 150490 mac 150490 bytes_out 0 150490 bytes_in 0 150490 station_ip 37.129.149.220 150490 port 551 150490 unique_id port 150490 remote_ip 10.8.0.182 150491 username sobhan 150491 unique_id port 150491 terminate_cause Lost-Carrier 150491 bytes_out 185186 150491 bytes_in 1118449 150491 station_ip 5.120.49.208 150491 port 15731070 150491 nas_port_type Virtual 150491 remote_ip 5.5.5.124 150493 username moradi 150493 mac 150493 bytes_out 0 150493 bytes_in 0 150493 station_ip 37.129.93.1 150493 port 558 150493 unique_id port 150495 username hashtadani4 150495 mac 150495 bytes_out 0 150495 bytes_in 0 150495 station_ip 37.129.149.220 150495 port 274 150495 unique_id port 150495 remote_ip 10.8.1.142 150463 username aminvpn 150463 mac 150463 bytes_out 0 150463 bytes_in 0 150463 station_ip 83.123.216.163 150463 port 557 150463 unique_id port 150463 remote_ip 10.8.0.14 150472 username hashtadani4 150472 mac 150472 bytes_out 0 150472 bytes_in 0 150472 station_ip 37.129.149.220 150472 port 561 150472 unique_id port 150472 remote_ip 10.8.0.182 150478 username aminvpn 150478 mac 150478 bytes_out 0 150478 bytes_in 0 150478 station_ip 83.122.52.18 150478 port 566 150478 unique_id port 150478 remote_ip 10.8.0.14 150479 username aminvpn 150479 mac 150479 bytes_out 0 150479 bytes_in 0 150479 station_ip 83.123.216.163 150479 port 541 150479 unique_id port 150479 remote_ip 10.8.0.14 150482 username aminvpn 150482 mac 150482 bytes_out 0 150482 bytes_in 0 150482 station_ip 83.122.52.18 150482 port 556 150482 unique_id port 150482 remote_ip 10.8.0.14 150485 username aminvpn 150485 mac 150485 bytes_out 0 150485 bytes_in 0 150485 station_ip 83.123.216.163 150485 port 561 150485 unique_id port 150485 remote_ip 10.8.0.14 150486 username barzegar 150486 mac 150486 bytes_out 0 150486 bytes_in 0 150486 station_ip 5.119.236.105 150486 port 557 150486 unique_id port 150486 remote_ip 10.8.0.234 150489 username mohammadmahdi 150489 mac 150489 bytes_out 0 150489 bytes_in 0 150489 station_ip 5.119.129.67 150489 port 551 150489 unique_id port 150496 username alikomsari 150496 mac 150496 bytes_out 0 150496 bytes_in 0 150496 station_ip 5.119.86.94 150496 port 559 150496 unique_id port 150498 username hashtadani4 150498 mac 150498 bytes_out 0 150498 bytes_in 0 150498 station_ip 37.129.149.220 150498 port 551 150498 unique_id port 150498 remote_ip 10.8.0.182 150509 username hashtadani4 150509 mac 150509 bytes_out 0 150509 bytes_in 0 150509 station_ip 37.129.149.220 150509 port 541 150509 unique_id port 150509 remote_ip 10.8.0.182 150512 username aminvpn 150512 mac 150512 bytes_out 0 150512 bytes_in 0 150512 station_ip 83.122.52.18 150512 port 552 150512 unique_id port 150512 remote_ip 10.8.0.14 150518 username hashtadani4 150518 kill_reason Another user logged on this global unique id 150518 mac 150518 bytes_out 0 150518 bytes_in 0 150518 station_ip 37.129.149.220 150518 port 556 150518 unique_id port 150518 remote_ip 10.8.0.182 150519 username vanila 150519 kill_reason Another user logged on this global unique id 150519 mac 150519 bytes_out 0 150519 bytes_in 0 150519 station_ip 83.122.226.232 150519 port 551 150519 unique_id port 150519 remote_ip 10.8.0.178 150520 username hamidsalari 150520 kill_reason Another user logged on this global unique id 150520 mac 150520 bytes_out 0 150520 bytes_in 0 150520 station_ip 5.119.217.42 150520 port 555 150520 unique_id port 150522 username aminvpn 150522 mac 150522 bytes_out 0 150522 bytes_in 0 150522 station_ip 83.123.216.163 150522 port 552 150522 unique_id port 150522 remote_ip 10.8.0.14 150526 username aminvpn 150526 mac 150526 bytes_out 0 150526 bytes_in 0 150526 station_ip 83.123.216.163 150526 port 552 150526 unique_id port 150526 remote_ip 10.8.0.14 150528 username vanila 150528 mac 150528 bytes_out 0 150528 bytes_in 0 150528 station_ip 83.122.226.232 150528 port 551 150528 unique_id port 150529 username barzegar 150529 mac 150529 bytes_out 0 150529 bytes_in 0 150529 station_ip 5.119.236.105 150529 port 275 150529 unique_id port 150529 remote_ip 10.8.1.174 150531 username hashtadani4 150531 kill_reason Another user logged on this global unique id 150481 username hashtadani4 150481 mac 150481 bytes_out 0 150481 bytes_in 0 150481 station_ip 37.129.149.220 150481 port 541 150481 unique_id port 150481 remote_ip 10.8.0.182 150483 username hashtadani4 150483 mac 150483 bytes_out 0 150483 bytes_in 0 150483 station_ip 37.129.149.220 150483 port 541 150483 unique_id port 150483 remote_ip 10.8.0.182 150487 username hashtadani4 150487 mac 150487 bytes_out 0 150487 bytes_in 0 150487 station_ip 37.129.149.220 150487 port 556 150487 unique_id port 150487 remote_ip 10.8.0.182 150492 username aminvpn 150492 mac 150492 bytes_out 0 150492 bytes_in 0 150492 station_ip 83.122.52.18 150492 port 541 150492 unique_id port 150492 remote_ip 10.8.0.14 150494 username hamidsalari 150494 kill_reason Another user logged on this global unique id 150494 mac 150494 bytes_out 0 150494 bytes_in 0 150494 station_ip 5.119.217.42 150494 port 555 150494 unique_id port 150494 remote_ip 10.8.0.222 150499 username hashtadani4 150499 mac 150499 bytes_out 0 150499 bytes_in 0 150499 station_ip 37.129.149.220 150499 port 558 150499 unique_id port 150499 remote_ip 10.8.0.182 150500 username hashtadani4 150500 mac 150500 bytes_out 0 150500 bytes_in 0 150500 station_ip 37.129.149.220 150500 port 551 150500 unique_id port 150500 remote_ip 10.8.0.182 150503 username hashtadani4 150503 mac 150503 bytes_out 0 150503 bytes_in 0 150503 station_ip 37.129.149.220 150503 port 552 150503 unique_id port 150503 remote_ip 10.8.0.182 150505 username aminvpn 150505 mac 150505 bytes_out 0 150505 bytes_in 0 150505 station_ip 83.123.216.163 150505 port 551 150505 unique_id port 150505 remote_ip 10.8.0.14 150507 username vanila 150507 mac 150507 bytes_out 314938 150507 bytes_in 637029 150507 station_ip 83.122.226.232 150507 port 541 150507 unique_id port 150507 remote_ip 10.8.0.178 150508 username hashtadani4 150508 mac 150508 bytes_out 0 150508 bytes_in 0 150508 station_ip 37.129.149.220 150508 port 275 150508 unique_id port 150508 remote_ip 10.8.1.142 150510 username hashtadani4 150510 mac 150510 bytes_out 0 150510 bytes_in 0 150510 station_ip 37.129.149.220 150510 port 556 150510 unique_id port 150510 remote_ip 10.8.0.182 150511 username barzegar 150511 mac 150511 bytes_out 0 150511 bytes_in 0 150511 station_ip 5.119.236.105 150511 port 274 150511 unique_id port 150511 remote_ip 10.8.1.174 150514 username aminvpn 150514 mac 150514 bytes_out 0 150514 bytes_in 0 150514 station_ip 83.123.216.163 150514 port 557 150514 unique_id port 150514 remote_ip 10.8.0.14 150517 username fezealinaghi 150517 kill_reason Another user logged on this global unique id 150517 mac 150517 bytes_out 0 150517 bytes_in 0 150517 station_ip 113.203.6.81 150517 port 563 150517 unique_id port 150521 username aminvpn 150521 mac 150521 bytes_out 148407 150521 bytes_in 108895 150521 station_ip 83.122.52.18 150521 port 536 150521 unique_id port 150521 remote_ip 10.8.0.14 150525 username hassan 150525 mac 150525 bytes_out 0 150525 bytes_in 0 150525 station_ip 5.119.140.51 150525 port 274 150525 unique_id port 150525 remote_ip 10.8.1.138 150527 username fezealinaghi 150527 kill_reason Another user logged on this global unique id 150527 mac 150527 bytes_out 0 150527 bytes_in 0 150527 station_ip 113.203.6.81 150527 port 563 150527 unique_id port 150530 username aminvpn 150530 mac 150530 bytes_out 13767 150530 bytes_in 30835 150530 station_ip 83.122.52.18 150530 port 536 150530 unique_id port 150530 remote_ip 10.8.0.14 150497 username aminvpn 150497 mac 150497 bytes_out 15717 150497 bytes_in 30245 150497 station_ip 83.123.216.163 150497 port 551 150497 unique_id port 150497 remote_ip 10.8.0.14 150501 username hosseine 150501 mac 150501 bytes_out 0 150501 bytes_in 0 150501 station_ip 37.129.123.214 150501 port 552 150501 unique_id port 150502 username aminvpn 150502 mac 150502 bytes_out 5477 150502 bytes_in 7103 150502 station_ip 83.122.52.18 150502 port 557 150502 unique_id port 150502 remote_ip 10.8.0.14 150504 username alihosseini1 150504 mac 150504 bytes_out 229350 150504 bytes_in 661104 150504 station_ip 5.119.104.6 150504 port 556 150504 unique_id port 150504 remote_ip 10.8.0.166 150506 username barzegar 150506 mac 150506 bytes_out 25353 150506 bytes_in 51593 150506 station_ip 5.119.236.105 150506 port 561 150506 unique_id port 150506 remote_ip 10.8.0.234 150513 username mahdiyehalizadeh 150513 mac 150513 bytes_out 2792079 150513 bytes_in 37947317 150513 station_ip 5.119.189.88 150513 port 536 150513 unique_id port 150513 remote_ip 10.8.0.82 150515 username aminvpn 150515 mac 150515 bytes_out 8914 150515 bytes_in 17885 150515 station_ip 83.122.52.18 150515 port 536 150515 unique_id port 150515 remote_ip 10.8.0.14 150516 username aminvpn 150516 mac 150516 bytes_out 0 150516 bytes_in 0 150516 station_ip 83.123.216.163 150516 port 552 150516 unique_id port 150516 remote_ip 10.8.0.14 150523 username aminvpn 150523 mac 150523 bytes_out 0 150523 bytes_in 0 150523 station_ip 83.122.52.18 150523 port 536 150523 unique_id port 150523 remote_ip 10.8.0.14 150524 username ayobi 150524 mac 150524 bytes_out 0 150524 bytes_in 0 150524 station_ip 37.27.26.2 150524 port 565 150524 unique_id port 150533 username fezealinaghi 150533 kill_reason Another user logged on this global unique id 150533 mac 150533 bytes_out 0 150533 bytes_in 0 150533 station_ip 113.203.6.81 150533 port 563 150533 unique_id port 150536 username aminvpn 150536 mac 150536 bytes_out 7701 150536 bytes_in 12206 150536 station_ip 83.122.52.18 150536 port 536 150536 unique_id port 150536 remote_ip 10.8.0.14 150546 username hashtadani4 150546 mac 150546 bytes_out 0 150546 bytes_in 0 150546 station_ip 37.129.149.220 150546 port 275 150546 unique_id port 150546 remote_ip 10.8.1.142 150552 username hashtadani4 150552 mac 150552 bytes_out 0 150552 bytes_in 0 150552 station_ip 37.129.149.220 150552 port 274 150552 unique_id port 150552 remote_ip 10.8.1.142 150555 username fezealinaghi 150555 kill_reason Another user logged on this global unique id 150555 mac 150555 bytes_out 0 150555 bytes_in 0 150555 station_ip 113.203.6.81 150555 port 563 150555 unique_id port 150560 username fezealinaghi 150560 kill_reason Another user logged on this global unique id 150560 mac 150560 bytes_out 0 150560 bytes_in 0 150560 station_ip 113.203.6.81 150560 port 563 150560 unique_id port 150561 username barzegar 150561 mac 150561 bytes_out 0 150561 bytes_in 0 150561 station_ip 5.119.236.105 150561 port 274 150561 unique_id port 150561 remote_ip 10.8.1.174 150562 username hashtadani4 150562 mac 150562 bytes_out 2889741 150562 bytes_in 28951077 150562 station_ip 37.129.149.220 150562 port 552 150562 unique_id port 150562 remote_ip 10.8.0.182 150569 username hassan 150569 kill_reason Another user logged on this global unique id 150569 mac 150569 bytes_out 0 150569 bytes_in 0 150569 station_ip 5.119.209.218 150569 port 551 150569 unique_id port 150569 remote_ip 10.8.0.122 150570 username hashtadani4 150531 mac 150531 bytes_out 0 150531 bytes_in 0 150531 station_ip 37.129.149.220 150531 port 556 150531 unique_id port 150532 username aminvpn 150532 mac 150532 bytes_out 4266 150532 bytes_in 6540 150532 station_ip 83.123.216.163 150532 port 552 150532 unique_id port 150532 remote_ip 10.8.0.14 150534 username zotaher 150534 mac 150534 bytes_out 0 150534 bytes_in 0 150534 station_ip 83.122.190.43 150534 port 552 150534 unique_id port 150534 remote_ip 10.8.0.194 150537 username mirzaei 150537 kill_reason Another user logged on this global unique id 150537 mac 150537 bytes_out 0 150537 bytes_in 0 150537 station_ip 5.119.66.157 150537 port 560 150537 unique_id port 150537 remote_ip 10.8.0.66 150541 username fezealinaghi 150541 kill_reason Another user logged on this global unique id 150541 mac 150541 bytes_out 0 150541 bytes_in 0 150541 station_ip 113.203.6.81 150541 port 563 150541 unique_id port 150542 username hashtadani4 150542 mac 150542 bytes_out 0 150542 bytes_in 0 150542 station_ip 37.129.149.220 150542 port 552 150542 unique_id port 150542 remote_ip 10.8.0.182 150544 username saeed9658 150544 mac 150544 bytes_out 0 150544 bytes_in 0 150544 station_ip 5.120.158.111 150544 port 564 150544 unique_id port 150545 username aminvpn 150545 mac 150545 bytes_out 7834 150545 bytes_in 11623 150545 station_ip 83.122.52.18 150545 port 536 150545 unique_id port 150545 remote_ip 10.8.0.14 150548 username barzegar 150548 mac 150548 bytes_out 0 150548 bytes_in 0 150548 station_ip 5.119.236.105 150548 port 274 150548 unique_id port 150548 remote_ip 10.8.1.174 150551 username hashtadani4 150551 mac 150551 bytes_out 0 150551 bytes_in 0 150551 station_ip 37.129.149.220 150551 port 275 150551 unique_id port 150551 remote_ip 10.8.1.142 150556 username hashtadani4 150556 mac 150556 bytes_out 0 150556 bytes_in 0 150556 station_ip 37.129.149.220 150556 port 552 150556 unique_id port 150556 remote_ip 10.8.0.182 150557 username vanila 150557 mac 150557 bytes_out 98140 150557 bytes_in 281024 150557 station_ip 83.122.226.232 150557 port 551 150557 unique_id port 150557 remote_ip 10.8.0.178 150558 username rezaei 150558 mac 150558 bytes_out 0 150558 bytes_in 0 150558 station_ip 5.120.46.216 150558 port 523 150558 unique_id port 150559 username hamidsalari 150559 kill_reason Another user logged on this global unique id 150559 mac 150559 bytes_out 0 150559 bytes_in 0 150559 station_ip 5.119.217.42 150559 port 555 150559 unique_id port 150566 username hashtadani4 150566 mac 150566 bytes_out 0 150566 bytes_in 0 150566 station_ip 37.129.149.220 150566 port 552 150566 unique_id port 150566 remote_ip 10.8.0.182 150567 username hashtadani4 150567 mac 150567 bytes_out 0 150567 bytes_in 0 150567 station_ip 37.129.149.220 150567 port 552 150567 unique_id port 150567 remote_ip 10.8.0.182 150571 username hashtadani4 150571 mac 150571 bytes_out 0 150571 bytes_in 0 150571 station_ip 37.129.149.220 150571 port 552 150571 unique_id port 150571 remote_ip 10.8.0.182 150572 username hashtadani4 150572 mac 150572 bytes_out 0 150572 bytes_in 0 150572 station_ip 37.129.149.220 150572 port 552 150572 unique_id port 150572 remote_ip 10.8.0.182 150576 username hassan 150576 kill_reason Another user logged on this global unique id 150576 mac 150576 bytes_out 0 150576 bytes_in 0 150576 station_ip 5.119.209.218 150576 port 551 150576 unique_id port 150578 username aminvpn 150578 mac 150578 bytes_out 132884 150535 username saeed9658 150535 kill_reason Another user logged on this global unique id 150535 mac 150535 bytes_out 0 150535 bytes_in 0 150535 station_ip 5.120.158.111 150535 port 564 150535 unique_id port 150535 remote_ip 10.8.0.62 150538 username hashtadani4 150538 kill_reason Another user logged on this global unique id 150538 mac 150538 bytes_out 0 150538 bytes_in 0 150538 station_ip 37.129.149.220 150538 port 556 150538 unique_id port 150539 username aminvpn 150539 mac 150539 bytes_out 3918 150539 bytes_in 5984 150539 station_ip 83.123.216.163 150539 port 552 150539 unique_id port 150539 remote_ip 10.8.0.14 150540 username hashtadani4 150540 mac 150540 bytes_out 0 150540 bytes_in 0 150540 station_ip 37.129.149.220 150540 port 556 150540 unique_id port 150543 username rezaei 150543 kill_reason Another user logged on this global unique id 150543 mac 150543 bytes_out 0 150543 bytes_in 0 150543 station_ip 5.120.46.216 150543 port 523 150543 unique_id port 150543 remote_ip 10.8.0.230 150547 username aminvpn 150547 mac 150547 bytes_out 3514 150547 bytes_in 13388 150547 station_ip 83.123.216.163 150547 port 552 150547 unique_id port 150547 remote_ip 10.8.0.14 150549 username vanila 150549 mac 150549 bytes_out 1056778 150549 bytes_in 7261045 150549 station_ip 83.122.226.232 150549 port 551 150549 unique_id port 150549 remote_ip 10.8.0.178 150550 username vanila 150550 mac 150550 bytes_out 0 150550 bytes_in 0 150550 station_ip 83.122.226.232 150550 port 551 150550 unique_id port 150550 remote_ip 10.8.0.178 150553 username hashtadani4 150553 mac 150553 bytes_out 0 150553 bytes_in 0 150553 station_ip 37.129.149.220 150553 port 551 150553 unique_id port 150553 remote_ip 10.8.0.182 150554 username vanila 150554 mac 150554 bytes_out 0 150554 bytes_in 0 150554 station_ip 83.122.226.232 150554 port 552 150554 unique_id port 150554 remote_ip 10.8.0.178 150563 username fezealinaghi 150563 kill_reason Another user logged on this global unique id 150563 mac 150563 bytes_out 0 150563 bytes_in 0 150563 station_ip 113.203.6.81 150563 port 563 150563 unique_id port 150564 username hashtadani4 150564 mac 150564 bytes_out 0 150564 bytes_in 0 150564 station_ip 37.129.149.220 150564 port 551 150564 unique_id port 150564 remote_ip 10.8.0.182 150565 username hashtadani4 150565 mac 150565 bytes_out 0 150565 bytes_in 0 150565 station_ip 37.129.149.220 150565 port 551 150565 unique_id port 150565 remote_ip 10.8.0.182 150568 username barzegar 150568 mac 150568 bytes_out 0 150568 bytes_in 0 150568 station_ip 5.119.236.105 150568 port 275 150568 unique_id port 150568 remote_ip 10.8.1.174 150574 username fezealinaghi 150574 kill_reason Another user logged on this global unique id 150574 mac 150574 bytes_out 0 150574 bytes_in 0 150574 station_ip 113.203.6.81 150574 port 563 150574 unique_id port 150575 username hashtadani4 150575 mac 150575 bytes_out 0 150575 bytes_in 0 150575 station_ip 37.129.149.220 150575 port 552 150575 unique_id port 150575 remote_ip 10.8.0.182 150580 username hassan 150580 kill_reason Another user logged on this global unique id 150580 mac 150580 bytes_out 0 150580 bytes_in 0 150580 station_ip 5.119.209.218 150580 port 551 150580 unique_id port 150583 username hassan 150583 kill_reason Another user logged on this global unique id 150583 mac 150583 bytes_out 0 150583 bytes_in 0 150583 station_ip 5.119.209.218 150583 port 551 150583 unique_id port 150588 username fezealinaghi 150588 kill_reason Another user logged on this global unique id 150588 mac 150588 bytes_out 0 150570 mac 150570 bytes_out 0 150570 bytes_in 0 150570 station_ip 37.129.149.220 150570 port 552 150570 unique_id port 150570 remote_ip 10.8.0.182 150573 username nilufarrajaei 150573 kill_reason Another user logged on this global unique id 150573 mac 150573 bytes_out 0 150573 bytes_in 0 150573 station_ip 83.123.74.236 150573 port 523 150573 unique_id port 150573 remote_ip 10.8.0.206 150577 username barzegar 150577 mac 150577 bytes_out 0 150577 bytes_in 0 150577 station_ip 5.119.236.105 150577 port 552 150577 unique_id port 150577 remote_ip 10.8.0.234 150582 username hashtadani4 150582 mac 150582 bytes_out 0 150582 bytes_in 0 150582 station_ip 37.129.149.220 150582 port 523 150582 unique_id port 150582 remote_ip 10.8.0.182 150585 username alipour 150585 kill_reason Another user logged on this global unique id 150585 mac 150585 bytes_out 0 150585 bytes_in 0 150585 station_ip 37.129.13.177 150585 port 265 150585 unique_id port 150585 remote_ip 10.8.1.50 150587 username hashtadani4 150587 mac 150587 bytes_out 0 150587 bytes_in 0 150587 station_ip 37.129.149.220 150587 port 536 150587 unique_id port 150587 remote_ip 10.8.0.182 150591 username hashtadani4 150591 mac 150591 bytes_out 0 150591 bytes_in 0 150591 station_ip 37.129.149.220 150591 port 536 150591 unique_id port 150591 remote_ip 10.8.0.182 150592 username barzegar 150592 mac 150592 bytes_out 0 150592 bytes_in 0 150592 station_ip 5.119.236.105 150592 port 275 150592 unique_id port 150592 remote_ip 10.8.1.174 150593 username hashtadani4 150593 mac 150593 bytes_out 0 150593 bytes_in 0 150593 station_ip 37.129.149.220 150593 port 536 150593 unique_id port 150593 remote_ip 10.8.0.182 150597 username hassan 150597 kill_reason Another user logged on this global unique id 150597 mac 150597 bytes_out 0 150597 bytes_in 0 150597 station_ip 5.119.209.218 150597 port 551 150597 unique_id port 150598 username hashtadani4 150598 mac 150598 bytes_out 0 150598 bytes_in 0 150598 station_ip 37.129.149.220 150598 port 275 150598 unique_id port 150598 remote_ip 10.8.1.142 150602 username kordestani 150602 mac 150602 bytes_out 754805 150602 bytes_in 12993319 150602 station_ip 113.203.95.26 150602 port 274 150602 unique_id port 150602 remote_ip 10.8.1.98 150612 username hashtadani4 150612 mac 150612 bytes_out 0 150612 bytes_in 0 150612 station_ip 37.129.149.220 150612 port 274 150612 unique_id port 150612 remote_ip 10.8.1.142 150615 username fezealinaghi 150615 kill_reason Another user logged on this global unique id 150615 mac 150615 bytes_out 0 150615 bytes_in 0 150615 station_ip 113.203.6.81 150615 port 563 150615 unique_id port 150616 username mirzaei 150616 kill_reason Another user logged on this global unique id 150616 mac 150616 bytes_out 0 150616 bytes_in 0 150616 station_ip 5.119.66.157 150616 port 560 150616 unique_id port 150627 username kordestani 150627 mac 150627 bytes_out 0 150627 bytes_in 0 150627 station_ip 151.235.102.99 150627 port 536 150627 unique_id port 150630 username alipour 150630 mac 150630 bytes_out 0 150630 bytes_in 0 150630 station_ip 37.129.13.177 150630 port 265 150630 unique_id port 150631 username hashtadani4 150631 mac 150631 bytes_out 0 150631 bytes_in 0 150631 station_ip 37.129.149.220 150631 port 523 150631 unique_id port 150631 remote_ip 10.8.0.182 150632 username fezealinaghi 150632 mac 150632 bytes_out 0 150632 bytes_in 0 150632 station_ip 113.203.6.81 150632 port 563 150632 unique_id port 150638 username hashtadani4 150578 bytes_in 253642 150578 station_ip 83.122.52.18 150578 port 536 150578 unique_id port 150578 remote_ip 10.8.0.14 150579 username hashtadani4 150579 mac 150579 bytes_out 0 150579 bytes_in 0 150579 station_ip 37.129.149.220 150579 port 536 150579 unique_id port 150579 remote_ip 10.8.0.182 150581 username nilufarrajaei 150581 mac 150581 bytes_out 0 150581 bytes_in 0 150581 station_ip 83.123.74.236 150581 port 523 150581 unique_id port 150584 username mosi 150584 mac 150584 bytes_out 0 150584 bytes_in 0 150584 station_ip 151.235.78.77 150584 port 541 150584 unique_id port 150584 remote_ip 10.8.0.138 150586 username hashtadani4 150586 mac 150586 bytes_out 0 150586 bytes_in 0 150586 station_ip 37.129.149.220 150586 port 275 150586 unique_id port 150586 remote_ip 10.8.1.142 150594 username mansour 150594 mac 150594 bytes_out 577799 150594 bytes_in 6351793 150594 station_ip 5.202.98.165 150594 port 523 150594 unique_id port 150594 remote_ip 10.8.0.30 150595 username hashtadani4 150595 mac 150595 bytes_out 0 150595 bytes_in 0 150595 station_ip 37.129.149.220 150595 port 523 150595 unique_id port 150595 remote_ip 10.8.0.182 150601 username hashtadani4 150601 mac 150601 bytes_out 0 150601 bytes_in 0 150601 station_ip 37.129.149.220 150601 port 523 150601 unique_id port 150601 remote_ip 10.8.0.182 150605 username aminvpn 150605 unique_id port 150605 terminate_cause Lost-Carrier 150605 bytes_out 3572915 150605 bytes_in 60428439 150605 station_ip 5.119.178.76 150605 port 15731072 150605 nas_port_type Virtual 150605 remote_ip 5.5.5.173 150609 username hashtadani4 150609 mac 150609 bytes_out 0 150609 bytes_in 0 150609 station_ip 37.129.149.220 150609 port 523 150609 unique_id port 150609 remote_ip 10.8.0.182 150614 username hashtadani4 150614 mac 150614 bytes_out 0 150614 bytes_in 0 150614 station_ip 37.129.149.220 150614 port 523 150614 unique_id port 150614 remote_ip 10.8.0.182 150618 username barzegar 150618 mac 150618 bytes_out 0 150618 bytes_in 0 150618 station_ip 5.119.236.105 150618 port 274 150618 unique_id port 150618 remote_ip 10.8.1.174 150619 username hashtadani4 150619 mac 150619 bytes_out 0 150619 bytes_in 0 150619 station_ip 37.129.149.220 150619 port 523 150619 unique_id port 150619 remote_ip 10.8.0.182 150621 username hashtadani4 150621 mac 150621 bytes_out 0 150621 bytes_in 0 150621 station_ip 37.129.149.220 150621 port 523 150621 unique_id port 150621 remote_ip 10.8.0.182 150622 username hashtadani4 150622 mac 150622 bytes_out 0 150622 bytes_in 0 150622 station_ip 37.129.149.220 150622 port 523 150622 unique_id port 150622 remote_ip 10.8.0.182 150624 username hashtadani4 150624 mac 150624 bytes_out 0 150624 bytes_in 0 150624 station_ip 37.129.149.220 150624 port 523 150624 unique_id port 150624 remote_ip 10.8.0.182 150625 username hashtadani4 150625 mac 150625 bytes_out 0 150625 bytes_in 0 150625 station_ip 37.129.149.220 150625 port 523 150625 unique_id port 150625 remote_ip 10.8.0.182 150634 username hashtadani4 150634 mac 150634 bytes_out 0 150634 bytes_in 0 150634 station_ip 37.129.149.220 150634 port 523 150634 unique_id port 150634 remote_ip 10.8.0.182 150635 username hashtadani4 150635 mac 150635 bytes_out 0 150635 bytes_in 0 150635 station_ip 37.129.149.220 150635 port 523 150635 unique_id port 150635 remote_ip 10.8.0.182 150637 username hashtadani4 150637 mac 150637 bytes_out 0 150637 bytes_in 0 150588 bytes_in 0 150588 station_ip 113.203.6.81 150588 port 563 150588 unique_id port 150589 username hashtadani4 150589 mac 150589 bytes_out 0 150589 bytes_in 0 150589 station_ip 37.129.149.220 150589 port 536 150589 unique_id port 150589 remote_ip 10.8.0.182 150590 username hassan 150590 kill_reason Another user logged on this global unique id 150590 mac 150590 bytes_out 0 150590 bytes_in 0 150590 station_ip 5.119.209.218 150590 port 551 150590 unique_id port 150596 username hashtadani4 150596 mac 150596 bytes_out 0 150596 bytes_in 0 150596 station_ip 37.129.149.220 150596 port 523 150596 unique_id port 150596 remote_ip 10.8.0.182 150599 username hashtadani4 150599 mac 150599 bytes_out 0 150599 bytes_in 0 150599 station_ip 37.129.149.220 150599 port 523 150599 unique_id port 150599 remote_ip 10.8.0.182 150600 username hassan 150600 mac 150600 bytes_out 0 150600 bytes_in 0 150600 station_ip 5.119.209.218 150600 port 551 150600 unique_id port 150603 username hashtadani4 150603 mac 150603 bytes_out 0 150603 bytes_in 0 150603 station_ip 37.129.149.220 150603 port 274 150603 unique_id port 150603 remote_ip 10.8.1.142 150604 username hashtadani4 150604 mac 150604 bytes_out 0 150604 bytes_in 0 150604 station_ip 37.129.149.220 150604 port 523 150604 unique_id port 150604 remote_ip 10.8.0.182 150606 username hashtadani4 150606 mac 150606 bytes_out 0 150606 bytes_in 0 150606 station_ip 37.129.149.220 150606 port 523 150606 unique_id port 150606 remote_ip 10.8.0.182 150607 username barzegar 150607 mac 150607 bytes_out 0 150607 bytes_in 0 150607 station_ip 5.119.236.105 150607 port 523 150607 unique_id port 150607 remote_ip 10.8.0.234 150608 username hashtadani4 150608 mac 150608 bytes_out 0 150608 bytes_in 0 150608 station_ip 37.129.149.220 150608 port 523 150608 unique_id port 150608 remote_ip 10.8.0.182 150610 username hashtadani4 150610 mac 150610 bytes_out 0 150610 bytes_in 0 150610 station_ip 37.129.149.220 150610 port 541 150610 unique_id port 150610 remote_ip 10.8.0.182 150611 username hashtadani4 150611 mac 150611 bytes_out 0 150611 bytes_in 0 150611 station_ip 37.129.149.220 150611 port 523 150611 unique_id port 150611 remote_ip 10.8.0.182 150613 username hashtadani4 150613 mac 150613 bytes_out 0 150613 bytes_in 0 150613 station_ip 37.129.149.220 150613 port 523 150613 unique_id port 150613 remote_ip 10.8.0.182 150617 username kordestani 150617 kill_reason Another user logged on this global unique id 150617 mac 150617 bytes_out 0 150617 bytes_in 0 150617 station_ip 151.235.102.99 150617 port 536 150617 unique_id port 150617 remote_ip 10.8.0.134 150620 username hashtadani4 150620 mac 150620 bytes_out 0 150620 bytes_in 0 150620 station_ip 37.129.149.220 150620 port 523 150620 unique_id port 150620 remote_ip 10.8.0.182 150623 username hashtadani4 150623 mac 150623 bytes_out 0 150623 bytes_in 0 150623 station_ip 37.129.149.220 150623 port 523 150623 unique_id port 150623 remote_ip 10.8.0.182 150626 username hashtadani4 150626 mac 150626 bytes_out 0 150626 bytes_in 0 150626 station_ip 37.129.149.220 150626 port 523 150626 unique_id port 150626 remote_ip 10.8.0.182 150628 username hashtadani4 150628 mac 150628 bytes_out 0 150628 bytes_in 0 150628 station_ip 37.129.149.220 150628 port 523 150628 unique_id port 150628 remote_ip 10.8.0.182 150629 username hashtadani4 150629 mac 150629 bytes_out 0 150629 bytes_in 0 150629 station_ip 37.129.149.220 150629 port 274 150629 unique_id port 150629 remote_ip 10.8.1.142 150633 username hashtadani4 150633 mac 150633 bytes_out 0 150633 bytes_in 0 150633 station_ip 37.129.149.220 150633 port 523 150633 unique_id port 150633 remote_ip 10.8.0.182 150636 username hashtadani4 150636 mac 150636 bytes_out 0 150636 bytes_in 0 150636 station_ip 37.129.149.220 150636 port 523 150636 unique_id port 150636 remote_ip 10.8.0.182 150639 username hashtadani4 150639 mac 150639 bytes_out 0 150639 bytes_in 0 150639 station_ip 37.129.149.220 150639 port 523 150639 unique_id port 150639 remote_ip 10.8.0.182 150640 username hashtadani4 150640 mac 150640 bytes_out 0 150640 bytes_in 0 150640 station_ip 37.129.149.220 150640 port 523 150640 unique_id port 150640 remote_ip 10.8.0.182 150642 username hashtadani4 150642 mac 150642 bytes_out 0 150642 bytes_in 0 150642 station_ip 37.129.149.220 150642 port 523 150642 unique_id port 150642 remote_ip 10.8.0.182 150643 username hashtadani4 150643 mac 150643 bytes_out 0 150643 bytes_in 0 150643 station_ip 37.129.149.220 150643 port 274 150643 unique_id port 150643 remote_ip 10.8.1.142 150644 username hashtadani4 150644 mac 150644 bytes_out 0 150644 bytes_in 0 150644 station_ip 37.129.149.220 150644 port 536 150644 unique_id port 150644 remote_ip 10.8.0.182 150646 username hashtadani4 150646 mac 150646 bytes_out 0 150646 bytes_in 0 150646 station_ip 37.129.149.220 150646 port 536 150646 unique_id port 150646 remote_ip 10.8.0.182 150659 username hashtadani4 150659 mac 150659 bytes_out 0 150659 bytes_in 0 150659 station_ip 37.129.149.220 150659 port 523 150659 unique_id port 150659 remote_ip 10.8.0.182 150661 username hashtadani4 150661 mac 150661 bytes_out 0 150661 bytes_in 0 150661 station_ip 37.129.149.220 150661 port 540 150661 unique_id port 150661 remote_ip 10.8.0.182 150663 username hashtadani4 150663 mac 150663 bytes_out 0 150663 bytes_in 0 150663 station_ip 37.129.149.220 150663 port 536 150663 unique_id port 150663 remote_ip 10.8.0.182 150665 username mirzaei 150665 kill_reason Another user logged on this global unique id 150665 mac 150665 bytes_out 0 150665 bytes_in 0 150665 station_ip 5.119.66.157 150665 port 560 150665 unique_id port 150666 username hashtadani4 150666 mac 150666 bytes_out 0 150666 bytes_in 0 150666 station_ip 37.129.149.220 150666 port 536 150666 unique_id port 150666 remote_ip 10.8.0.182 150670 username hashtadani4 150670 mac 150670 bytes_out 0 150670 bytes_in 0 150670 station_ip 37.129.149.220 150670 port 540 150670 unique_id port 150670 remote_ip 10.8.0.182 150674 username hashtadani4 150674 mac 150674 bytes_out 0 150674 bytes_in 0 150674 station_ip 37.129.149.220 150674 port 540 150674 unique_id port 150674 remote_ip 10.8.0.182 150679 username hashtadani4 150679 mac 150679 bytes_out 0 150679 bytes_in 0 150679 station_ip 37.129.149.220 150679 port 540 150679 unique_id port 150679 remote_ip 10.8.0.182 150683 username hashtadani4 150683 mac 150683 bytes_out 0 150683 bytes_in 0 150683 station_ip 37.129.149.220 150683 port 540 150683 unique_id port 150683 remote_ip 10.8.0.182 150684 username hashtadani4 150684 mac 150684 bytes_out 0 150684 bytes_in 0 150684 station_ip 37.129.149.220 150684 port 540 150684 unique_id port 150684 remote_ip 10.8.0.182 150685 username hashtadani4 150685 kill_reason Maximum check online fails reached 150685 mac 150685 bytes_out 0 150685 bytes_in 0 150685 station_ip 37.129.149.220 150637 station_ip 37.129.149.220 150637 port 274 150637 unique_id port 150637 remote_ip 10.8.1.142 150647 username sabaghnezhad 150647 mac 150647 bytes_out 0 150647 bytes_in 0 150647 station_ip 37.129.153.227 150647 port 540 150647 unique_id port 150647 remote_ip 10.8.0.186 150648 username hashtadani4 150648 mac 150648 bytes_out 0 150648 bytes_in 0 150648 station_ip 37.129.149.220 150648 port 536 150648 unique_id port 150648 remote_ip 10.8.0.182 150649 username hashtadani4 150649 mac 150649 bytes_out 0 150649 bytes_in 0 150649 station_ip 37.129.149.220 150649 port 540 150649 unique_id port 150649 remote_ip 10.8.0.182 150650 username hashtadani4 150650 mac 150650 bytes_out 0 150650 bytes_in 0 150650 station_ip 37.129.149.220 150650 port 274 150650 unique_id port 150650 remote_ip 10.8.1.142 150652 username hashtadani4 150652 mac 150652 bytes_out 0 150652 bytes_in 0 150652 station_ip 37.129.149.220 150652 port 540 150652 unique_id port 150652 remote_ip 10.8.0.182 150653 username hashtadani4 150653 mac 150653 bytes_out 0 150653 bytes_in 0 150653 station_ip 37.129.149.220 150653 port 540 150653 unique_id port 150653 remote_ip 10.8.0.182 150655 username naeimeh 150655 kill_reason Another user logged on this global unique id 150655 mac 150655 bytes_out 0 150655 bytes_in 0 150655 station_ip 37.129.111.0 150655 port 536 150655 unique_id port 150655 remote_ip 10.8.0.26 150660 username hashtadani4 150660 mac 150660 bytes_out 0 150660 bytes_in 0 150660 station_ip 37.129.149.220 150660 port 523 150660 unique_id port 150660 remote_ip 10.8.0.182 150667 username hashtadani4 150667 mac 150667 bytes_out 0 150667 bytes_in 0 150667 station_ip 37.129.149.220 150667 port 536 150667 unique_id port 150667 remote_ip 10.8.0.182 150671 username aminvpn 150671 unique_id port 150671 terminate_cause Lost-Carrier 150671 bytes_out 3253411 150671 bytes_in 7622933 150671 station_ip 5.119.204.160 150671 port 15731074 150671 nas_port_type Virtual 150671 remote_ip 5.5.5.254 150672 username hashtadani4 150672 mac 150672 bytes_out 0 150672 bytes_in 0 150672 station_ip 37.129.149.220 150672 port 540 150672 unique_id port 150672 remote_ip 10.8.0.182 150673 username hashtadani4 150673 mac 150673 bytes_out 0 150673 bytes_in 0 150673 station_ip 37.129.149.220 150673 port 540 150673 unique_id port 150673 remote_ip 10.8.0.182 150675 username farhad2 150675 kill_reason Another user logged on this global unique id 150675 mac 150675 bytes_out 0 150675 bytes_in 0 150675 station_ip 5.120.68.161 150675 port 536 150675 unique_id port 150675 remote_ip 10.8.0.190 150678 username hashtadani4 150678 mac 150678 bytes_out 0 150678 bytes_in 0 150678 station_ip 37.129.149.220 150678 port 540 150678 unique_id port 150678 remote_ip 10.8.0.182 150681 username hashtadani4 150681 mac 150681 bytes_out 0 150681 bytes_in 0 150681 station_ip 37.129.149.220 150681 port 540 150681 unique_id port 150681 remote_ip 10.8.0.182 150682 username hashtadani4 150682 mac 150682 bytes_out 0 150682 bytes_in 0 150682 station_ip 37.129.149.220 150682 port 540 150682 unique_id port 150682 remote_ip 10.8.0.182 150688 username hashtadani4 150688 mac 150688 bytes_out 0 150688 bytes_in 0 150688 station_ip 37.129.149.220 150688 port 541 150688 unique_id port 150688 remote_ip 10.8.0.182 150692 username farhad2 150692 mac 150692 bytes_out 0 150692 bytes_in 0 150692 station_ip 5.120.68.161 150692 port 536 150692 unique_id port 150692 remote_ip 10.8.0.190 150638 mac 150638 bytes_out 0 150638 bytes_in 0 150638 station_ip 37.129.149.220 150638 port 274 150638 unique_id port 150638 remote_ip 10.8.1.142 150641 username hashtadani4 150641 mac 150641 bytes_out 0 150641 bytes_in 0 150641 station_ip 37.129.149.220 150641 port 523 150641 unique_id port 150641 remote_ip 10.8.0.182 150645 username hashtadani4 150645 mac 150645 bytes_out 0 150645 bytes_in 0 150645 station_ip 37.129.149.220 150645 port 536 150645 unique_id port 150645 remote_ip 10.8.0.182 150651 username hashtadani4 150651 mac 150651 bytes_out 0 150651 bytes_in 0 150651 station_ip 37.129.149.220 150651 port 540 150651 unique_id port 150651 remote_ip 10.8.0.182 150654 username hashtadani4 150654 mac 150654 bytes_out 0 150654 bytes_in 0 150654 station_ip 37.129.149.220 150654 port 540 150654 unique_id port 150654 remote_ip 10.8.0.182 150656 username hashtadani4 150656 mac 150656 bytes_out 0 150656 bytes_in 0 150656 station_ip 37.129.149.220 150656 port 540 150656 unique_id port 150656 remote_ip 10.8.0.182 150657 username hashtadani4 150657 mac 150657 bytes_out 0 150657 bytes_in 0 150657 station_ip 37.129.149.220 150657 port 540 150657 unique_id port 150657 remote_ip 10.8.0.182 150658 username mansour 150658 mac 150658 bytes_out 0 150658 bytes_in 0 150658 station_ip 5.202.98.165 150658 port 523 150658 unique_id port 150658 remote_ip 10.8.0.30 150662 username naeimeh 150662 mac 150662 bytes_out 0 150662 bytes_in 0 150662 station_ip 37.129.111.0 150662 port 536 150662 unique_id port 150664 username hashtadani4 150664 mac 150664 bytes_out 0 150664 bytes_in 0 150664 station_ip 37.129.149.220 150664 port 536 150664 unique_id port 150664 remote_ip 10.8.0.182 150668 username hashtadani4 150668 mac 150668 bytes_out 0 150668 bytes_in 0 150668 station_ip 37.129.149.220 150668 port 540 150668 unique_id port 150668 remote_ip 10.8.0.182 150669 username hashtadani4 150669 mac 150669 bytes_out 0 150669 bytes_in 0 150669 station_ip 37.129.149.220 150669 port 540 150669 unique_id port 150669 remote_ip 10.8.0.182 150676 username hashtadani4 150676 mac 150676 bytes_out 0 150676 bytes_in 0 150676 station_ip 37.129.149.220 150676 port 540 150676 unique_id port 150676 remote_ip 10.8.0.182 150677 username hashtadani4 150677 mac 150677 bytes_out 0 150677 bytes_in 0 150677 station_ip 37.129.149.220 150677 port 274 150677 unique_id port 150677 remote_ip 10.8.1.142 150680 username hashtadani4 150680 mac 150680 bytes_out 0 150680 bytes_in 0 150680 station_ip 37.129.149.220 150680 port 540 150680 unique_id port 150680 remote_ip 10.8.0.182 150687 username hashtadani4 150687 kill_reason Maximum check online fails reached 150687 mac 150687 bytes_out 0 150687 bytes_in 0 150687 station_ip 37.129.149.220 150687 port 540 150687 unique_id port 150689 username hashtadani4 150689 mac 150689 bytes_out 0 150689 bytes_in 0 150689 station_ip 37.129.149.220 150689 port 541 150689 unique_id port 150689 remote_ip 10.8.0.182 150690 username farhad2 150690 mac 150690 bytes_out 0 150690 bytes_in 0 150690 station_ip 5.120.68.161 150690 port 536 150690 unique_id port 150694 username hashtadani4 150694 mac 150694 bytes_out 0 150694 bytes_in 0 150694 station_ip 37.129.149.220 150694 port 536 150694 unique_id port 150694 remote_ip 10.8.0.182 150697 username mirzaei 150697 kill_reason Another user logged on this global unique id 150697 mac 150697 bytes_out 0 150697 bytes_in 0 150685 port 274 150685 unique_id port 150686 username hashtadani4 150686 mac 150686 bytes_out 0 150686 bytes_in 0 150686 station_ip 37.129.149.220 150686 port 541 150686 unique_id port 150686 remote_ip 10.8.0.182 150691 username hashtadani4 150691 mac 150691 bytes_out 0 150691 bytes_in 0 150691 station_ip 37.129.149.220 150691 port 541 150691 unique_id port 150691 remote_ip 10.8.0.182 150695 username farhad2 150695 mac 150695 bytes_out 0 150695 bytes_in 0 150695 station_ip 5.119.64.121 150695 port 541 150695 unique_id port 150695 remote_ip 10.8.0.190 150698 username hamidsalari 150698 kill_reason Another user logged on this global unique id 150698 mac 150698 bytes_out 0 150698 bytes_in 0 150698 station_ip 5.119.217.42 150698 port 555 150698 unique_id port 150699 username hamid 150699 mac 150699 bytes_out 0 150699 bytes_in 0 150699 station_ip 37.129.81.224 150699 port 523 150699 unique_id port 150699 remote_ip 10.8.0.118 150702 username hashtadani4 150702 mac 150702 bytes_out 0 150702 bytes_in 0 150702 station_ip 37.129.149.220 150702 port 523 150702 unique_id port 150702 remote_ip 10.8.0.182 150703 username hashtadani4 150703 mac 150703 bytes_out 0 150703 bytes_in 0 150703 station_ip 37.129.149.220 150703 port 523 150703 unique_id port 150703 remote_ip 10.8.0.182 150705 username hashtadani4 150705 mac 150705 bytes_out 0 150705 bytes_in 0 150705 station_ip 37.129.149.220 150705 port 275 150705 unique_id port 150705 remote_ip 10.8.1.142 150706 username hashtadani4 150706 mac 150706 bytes_out 0 150706 bytes_in 0 150706 station_ip 37.129.149.220 150706 port 523 150706 unique_id port 150706 remote_ip 10.8.0.182 150708 username barzegar 150708 mac 150708 bytes_out 0 150708 bytes_in 0 150708 station_ip 5.119.158.39 150708 port 275 150708 unique_id port 150708 remote_ip 10.8.1.174 150712 username hashtadani4 150712 mac 150712 bytes_out 0 150712 bytes_in 0 150712 station_ip 37.129.149.220 150712 port 523 150712 unique_id port 150712 remote_ip 10.8.0.182 150718 username hashtadani4 150718 mac 150718 bytes_out 0 150718 bytes_in 0 150718 station_ip 37.129.149.220 150718 port 523 150718 unique_id port 150718 remote_ip 10.8.0.182 150721 username hashtadani4 150721 mac 150721 bytes_out 0 150721 bytes_in 0 150721 station_ip 37.129.149.220 150721 port 536 150721 unique_id port 150721 remote_ip 10.8.0.182 150724 username hashtadani4 150724 mac 150724 bytes_out 0 150724 bytes_in 0 150724 station_ip 37.129.149.220 150724 port 536 150724 unique_id port 150724 remote_ip 10.8.0.182 150725 username hashtadani4 150725 mac 150725 bytes_out 0 150725 bytes_in 0 150725 station_ip 37.129.149.220 150725 port 536 150725 unique_id port 150725 remote_ip 10.8.0.182 150729 username hashtadani4 150729 mac 150729 bytes_out 0 150729 bytes_in 0 150729 station_ip 37.129.149.220 150729 port 536 150729 unique_id port 150729 remote_ip 10.8.0.182 150732 username mirzaei 150732 kill_reason Another user logged on this global unique id 150732 mac 150732 bytes_out 0 150732 bytes_in 0 150732 station_ip 5.119.66.157 150732 port 560 150732 unique_id port 150733 username hashtadani4 150733 mac 150733 bytes_out 0 150733 bytes_in 0 150733 station_ip 37.129.149.220 150733 port 536 150733 unique_id port 150733 remote_ip 10.8.0.182 150736 username hamid 150736 mac 150736 bytes_out 0 150736 bytes_in 0 150736 station_ip 37.129.81.224 150736 port 523 150736 unique_id port 150693 username hashtadani4 150693 mac 150693 bytes_out 0 150693 bytes_in 0 150693 station_ip 37.129.149.220 150693 port 275 150693 unique_id port 150693 remote_ip 10.8.1.142 150696 username hashtadani4 150696 mac 150696 bytes_out 0 150696 bytes_in 0 150696 station_ip 37.129.149.220 150696 port 536 150696 unique_id port 150696 remote_ip 10.8.0.182 150700 username hashtadani4 150700 mac 150700 bytes_out 0 150700 bytes_in 0 150700 station_ip 37.129.149.220 150700 port 523 150700 unique_id port 150700 remote_ip 10.8.0.182 150701 username hashtadani4 150701 mac 150701 bytes_out 0 150701 bytes_in 0 150701 station_ip 37.129.149.220 150701 port 523 150701 unique_id port 150701 remote_ip 10.8.0.182 150709 username hashtadani4 150709 mac 150709 bytes_out 0 150709 bytes_in 0 150709 station_ip 37.129.149.220 150709 port 275 150709 unique_id port 150709 remote_ip 10.8.1.142 150711 username hashtadani4 150711 mac 150711 bytes_out 0 150711 bytes_in 0 150711 station_ip 37.129.149.220 150711 port 523 150711 unique_id port 150711 remote_ip 10.8.0.182 150713 username hashtadani4 150713 mac 150713 bytes_out 0 150713 bytes_in 0 150713 station_ip 37.129.149.220 150713 port 536 150713 unique_id port 150713 remote_ip 10.8.0.182 150723 username hashtadani4 150723 mac 150723 bytes_out 0 150723 bytes_in 0 150723 station_ip 37.129.149.220 150723 port 536 150723 unique_id port 150723 remote_ip 10.8.0.182 150726 username hashtadani4 150726 mac 150726 bytes_out 0 150726 bytes_in 0 150726 station_ip 37.129.149.220 150726 port 536 150726 unique_id port 150726 remote_ip 10.8.0.182 150728 username hashtadani4 150728 mac 150728 bytes_out 0 150728 bytes_in 0 150728 station_ip 37.129.149.220 150728 port 536 150728 unique_id port 150728 remote_ip 10.8.0.182 150738 username hashtadani4 150738 mac 150738 bytes_out 0 150738 bytes_in 0 150738 station_ip 37.129.149.220 150738 port 275 150738 unique_id port 150738 remote_ip 10.8.1.142 150743 username barzegar 150743 kill_reason Maximum check online fails reached 150743 mac 150743 bytes_out 0 150743 bytes_in 0 150743 station_ip 5.120.11.106 150743 port 275 150743 unique_id port 150748 username hashtadani4 150748 mac 150748 bytes_out 0 150748 bytes_in 0 150748 station_ip 37.129.149.220 150748 port 523 150748 unique_id port 150748 remote_ip 10.8.0.182 150749 username hashtadani4 150749 mac 150749 bytes_out 0 150749 bytes_in 0 150749 station_ip 37.129.149.220 150749 port 277 150749 unique_id port 150749 remote_ip 10.8.1.142 150751 username hashtadani4 150751 mac 150751 bytes_out 0 150751 bytes_in 0 150751 station_ip 37.129.149.220 150751 port 277 150751 unique_id port 150751 remote_ip 10.8.1.142 150755 username hashtadani4 150755 mac 150755 bytes_out 0 150755 bytes_in 0 150755 station_ip 37.129.149.220 150755 port 523 150755 unique_id port 150755 remote_ip 10.8.0.182 150757 username hashtadani4 150757 mac 150757 bytes_out 0 150757 bytes_in 0 150757 station_ip 37.129.149.220 150757 port 523 150757 unique_id port 150757 remote_ip 10.8.0.182 150758 username hashtadani4 150758 mac 150758 bytes_out 0 150758 bytes_in 0 150758 station_ip 37.129.149.220 150758 port 523 150758 unique_id port 150758 remote_ip 10.8.0.182 150760 username hashtadani4 150760 mac 150760 bytes_out 0 150760 bytes_in 0 150760 station_ip 37.129.149.220 150760 port 523 150760 unique_id port 150760 remote_ip 10.8.0.182 150761 username hashtadani4 150697 station_ip 5.119.66.157 150697 port 560 150697 unique_id port 150704 username hashtadani4 150704 mac 150704 bytes_out 0 150704 bytes_in 0 150704 station_ip 37.129.149.220 150704 port 523 150704 unique_id port 150704 remote_ip 10.8.0.182 150707 username hashtadani4 150707 mac 150707 bytes_out 0 150707 bytes_in 0 150707 station_ip 37.129.149.220 150707 port 523 150707 unique_id port 150707 remote_ip 10.8.0.182 150710 username hashtadani4 150710 mac 150710 bytes_out 0 150710 bytes_in 0 150710 station_ip 37.129.149.220 150710 port 523 150710 unique_id port 150710 remote_ip 10.8.0.182 150714 username afarin1 150714 mac 150714 bytes_out 352004 150714 bytes_in 5076217 150714 station_ip 151.238.226.104 150714 port 523 150714 unique_id port 150714 remote_ip 10.8.0.38 150715 username hashtadani4 150715 mac 150715 bytes_out 0 150715 bytes_in 0 150715 station_ip 37.129.149.220 150715 port 523 150715 unique_id port 150715 remote_ip 10.8.0.182 150716 username hashtadani4 150716 mac 150716 bytes_out 0 150716 bytes_in 0 150716 station_ip 37.129.149.220 150716 port 523 150716 unique_id port 150716 remote_ip 10.8.0.182 150717 username barzegar 150717 mac 150717 bytes_out 0 150717 bytes_in 0 150717 station_ip 5.119.158.39 150717 port 275 150717 unique_id port 150717 remote_ip 10.8.1.174 150719 username mirzaei 150719 kill_reason Another user logged on this global unique id 150719 mac 150719 bytes_out 0 150719 bytes_in 0 150719 station_ip 5.119.66.157 150719 port 560 150719 unique_id port 150720 username hashtadani4 150720 mac 150720 bytes_out 0 150720 bytes_in 0 150720 station_ip 37.129.149.220 150720 port 536 150720 unique_id port 150720 remote_ip 10.8.0.182 150722 username hashtadani4 150722 mac 150722 bytes_out 0 150722 bytes_in 0 150722 station_ip 37.129.149.220 150722 port 536 150722 unique_id port 150722 remote_ip 10.8.0.182 150727 username barzegar 150727 mac 150727 bytes_out 0 150727 bytes_in 0 150727 station_ip 5.119.158.39 150727 port 275 150727 unique_id port 150727 remote_ip 10.8.1.174 150730 username hashtadani4 150730 mac 150730 bytes_out 0 150730 bytes_in 0 150730 station_ip 37.129.149.220 150730 port 536 150730 unique_id port 150730 remote_ip 10.8.0.182 150731 username hamid 150731 kill_reason Another user logged on this global unique id 150731 mac 150731 bytes_out 0 150731 bytes_in 0 150731 station_ip 37.129.81.224 150731 port 523 150731 unique_id port 150731 remote_ip 10.8.0.118 150734 username hamid 150734 kill_reason Another user logged on this global unique id 150734 mac 150734 bytes_out 0 150734 bytes_in 0 150734 station_ip 37.129.81.224 150734 port 523 150734 unique_id port 150735 username hashtadani4 150735 mac 150735 bytes_out 0 150735 bytes_in 0 150735 station_ip 37.129.149.220 150735 port 536 150735 unique_id port 150735 remote_ip 10.8.0.182 150739 username hashtadani4 150739 mac 150739 bytes_out 0 150739 bytes_in 0 150739 station_ip 37.129.149.220 150739 port 523 150739 unique_id port 150739 remote_ip 10.8.0.182 150740 username hashtadani4 150740 kill_reason Maximum check online fails reached 150740 mac 150740 bytes_out 0 150740 bytes_in 0 150740 station_ip 37.129.149.220 150740 port 276 150740 unique_id port 150742 username hashtadani4 150742 mac 150742 bytes_out 0 150742 bytes_in 0 150742 station_ip 37.129.149.220 150742 port 523 150742 unique_id port 150742 remote_ip 10.8.0.182 150744 username hashtadani4 150744 mac 150744 bytes_out 0 150744 bytes_in 0 150737 username Mahin 150737 mac 150737 bytes_out 0 150737 bytes_in 0 150737 station_ip 5.120.157.199 150737 port 275 150737 unique_id port 150737 remote_ip 10.8.1.186 150741 username hashtadani4 150741 mac 150741 bytes_out 0 150741 bytes_in 0 150741 station_ip 37.129.149.220 150741 port 523 150741 unique_id port 150741 remote_ip 10.8.0.182 150745 username hashtadani4 150745 mac 150745 bytes_out 0 150745 bytes_in 0 150745 station_ip 37.129.149.220 150745 port 523 150745 unique_id port 150745 remote_ip 10.8.0.182 150746 username barzegar 150746 mac 150746 bytes_out 0 150746 bytes_in 0 150746 station_ip 5.120.11.106 150746 port 523 150746 unique_id port 150746 remote_ip 10.8.0.234 150747 username hashtadani4 150747 mac 150747 bytes_out 0 150747 bytes_in 0 150747 station_ip 37.129.149.220 150747 port 523 150747 unique_id port 150747 remote_ip 10.8.0.182 150754 username hashtadani4 150754 mac 150754 bytes_out 0 150754 bytes_in 0 150754 station_ip 37.129.149.220 150754 port 277 150754 unique_id port 150754 remote_ip 10.8.1.142 150756 username hashtadani4 150756 mac 150756 bytes_out 0 150756 bytes_in 0 150756 station_ip 37.129.149.220 150756 port 523 150756 unique_id port 150756 remote_ip 10.8.0.182 150759 username hashtadani4 150759 mac 150759 bytes_out 0 150759 bytes_in 0 150759 station_ip 37.129.149.220 150759 port 523 150759 unique_id port 150759 remote_ip 10.8.0.182 150762 username hashtadani4 150762 mac 150762 bytes_out 0 150762 bytes_in 0 150762 station_ip 37.129.149.220 150762 port 277 150762 unique_id port 150762 remote_ip 10.8.1.142 150765 username hashtadani4 150765 mac 150765 bytes_out 0 150765 bytes_in 0 150765 station_ip 37.129.149.220 150765 port 523 150765 unique_id port 150765 remote_ip 10.8.0.182 150766 username hashtadani4 150766 mac 150766 bytes_out 0 150766 bytes_in 0 150766 station_ip 37.129.149.220 150766 port 523 150766 unique_id port 150766 remote_ip 10.8.0.182 150769 username hashtadani4 150769 mac 150769 bytes_out 0 150769 bytes_in 0 150769 station_ip 37.129.149.220 150769 port 277 150769 unique_id port 150769 remote_ip 10.8.1.142 150771 username barzegar 150771 mac 150771 bytes_out 0 150771 bytes_in 0 150771 station_ip 5.119.205.62 150771 port 523 150771 unique_id port 150771 remote_ip 10.8.0.234 150774 username hashtadani4 150774 mac 150774 bytes_out 0 150774 bytes_in 0 150774 station_ip 37.129.149.220 150774 port 523 150774 unique_id port 150774 remote_ip 10.8.0.182 150775 username hashtadani4 150775 mac 150775 bytes_out 0 150775 bytes_in 0 150775 station_ip 37.129.149.220 150775 port 523 150775 unique_id port 150775 remote_ip 10.8.0.182 150777 username hashtadani4 150777 mac 150777 bytes_out 0 150777 bytes_in 0 150777 station_ip 37.129.149.220 150777 port 523 150777 unique_id port 150777 remote_ip 10.8.0.182 150778 username hashtadani4 150778 mac 150778 bytes_out 0 150778 bytes_in 0 150778 station_ip 37.129.149.220 150778 port 523 150778 unique_id port 150778 remote_ip 10.8.0.182 150779 username hashtadani4 150779 mac 150779 bytes_out 0 150779 bytes_in 0 150779 station_ip 37.129.149.220 150779 port 523 150779 unique_id port 150779 remote_ip 10.8.0.182 150780 username milan 150780 kill_reason Another user logged on this global unique id 150780 mac 150780 bytes_out 0 150780 bytes_in 0 150780 station_ip 5.120.31.183 150780 port 273 150780 unique_id port 150780 remote_ip 10.8.1.178 150744 station_ip 37.129.149.220 150744 port 523 150744 unique_id port 150744 remote_ip 10.8.0.182 150750 username hashtadani4 150750 mac 150750 bytes_out 0 150750 bytes_in 0 150750 station_ip 37.129.149.220 150750 port 523 150750 unique_id port 150750 remote_ip 10.8.0.182 150752 username barzegar 150752 mac 150752 bytes_out 0 150752 bytes_in 0 150752 station_ip 5.120.11.106 150752 port 523 150752 unique_id port 150752 remote_ip 10.8.0.234 150753 username hashtadani4 150753 mac 150753 bytes_out 0 150753 bytes_in 0 150753 station_ip 37.129.149.220 150753 port 523 150753 unique_id port 150753 remote_ip 10.8.0.182 150767 username hashtadani4 150767 mac 150767 bytes_out 0 150767 bytes_in 0 150767 station_ip 37.129.149.220 150767 port 523 150767 unique_id port 150767 remote_ip 10.8.0.182 150768 username hashtadani4 150768 mac 150768 bytes_out 0 150768 bytes_in 0 150768 station_ip 37.129.149.220 150768 port 523 150768 unique_id port 150768 remote_ip 10.8.0.182 150773 username barzegar 150773 mac 150773 bytes_out 0 150773 bytes_in 0 150773 station_ip 5.119.205.62 150773 port 523 150773 unique_id port 150773 remote_ip 10.8.0.234 150776 username hashtadani4 150776 mac 150776 bytes_out 0 150776 bytes_in 0 150776 station_ip 37.129.149.220 150776 port 523 150776 unique_id port 150776 remote_ip 10.8.0.182 150783 username hashtadani4 150783 mac 150783 bytes_out 0 150783 bytes_in 0 150783 station_ip 37.129.149.220 150783 port 523 150783 unique_id port 150783 remote_ip 10.8.0.182 150784 username hashtadani4 150784 mac 150784 bytes_out 0 150784 bytes_in 0 150784 station_ip 37.129.149.220 150784 port 523 150784 unique_id port 150784 remote_ip 10.8.0.182 150786 username hashtadani4 150786 mac 150786 bytes_out 0 150786 bytes_in 0 150786 station_ip 37.129.149.220 150786 port 277 150786 unique_id port 150786 remote_ip 10.8.1.142 150788 username hashtadani4 150788 mac 150788 bytes_out 0 150788 bytes_in 0 150788 station_ip 37.129.149.220 150788 port 523 150788 unique_id port 150788 remote_ip 10.8.0.182 150790 username hashtadani4 150790 mac 150790 bytes_out 0 150790 bytes_in 0 150790 station_ip 37.129.149.220 150790 port 523 150790 unique_id port 150790 remote_ip 10.8.0.182 150791 username hashtadani4 150791 mac 150791 bytes_out 0 150791 bytes_in 0 150791 station_ip 37.129.149.220 150791 port 523 150791 unique_id port 150791 remote_ip 10.8.0.182 150792 username hashtadani4 150792 mac 150792 bytes_out 0 150792 bytes_in 0 150792 station_ip 37.129.149.220 150792 port 523 150792 unique_id port 150792 remote_ip 10.8.0.182 150793 username hashtadani4 150793 mac 150793 bytes_out 0 150793 bytes_in 0 150793 station_ip 37.129.149.220 150793 port 523 150793 unique_id port 150793 remote_ip 10.8.0.182 150794 username hashtadani4 150794 mac 150794 bytes_out 0 150794 bytes_in 0 150794 station_ip 37.129.149.220 150794 port 523 150794 unique_id port 150794 remote_ip 10.8.0.182 150795 username hashtadani4 150795 mac 150795 bytes_out 0 150795 bytes_in 0 150795 station_ip 37.129.149.220 150795 port 523 150795 unique_id port 150795 remote_ip 10.8.0.182 150797 username hashtadani4 150797 mac 150797 bytes_out 0 150797 bytes_in 0 150797 station_ip 37.129.149.220 150797 port 523 150797 unique_id port 150797 remote_ip 10.8.0.182 150800 username hashtadani4 150800 mac 150800 bytes_out 0 150800 bytes_in 0 150800 station_ip 37.129.149.220 150800 port 523 150761 mac 150761 bytes_out 0 150761 bytes_in 0 150761 station_ip 37.129.149.220 150761 port 523 150761 unique_id port 150761 remote_ip 10.8.0.182 150763 username hashtadani4 150763 mac 150763 bytes_out 0 150763 bytes_in 0 150763 station_ip 37.129.149.220 150763 port 523 150763 unique_id port 150763 remote_ip 10.8.0.182 150764 username hashtadani4 150764 mac 150764 bytes_out 0 150764 bytes_in 0 150764 station_ip 37.129.149.220 150764 port 523 150764 unique_id port 150764 remote_ip 10.8.0.182 150770 username hashtadani4 150770 mac 150770 bytes_out 0 150770 bytes_in 0 150770 station_ip 37.129.149.220 150770 port 523 150770 unique_id port 150770 remote_ip 10.8.0.182 150772 username hashtadani4 150772 mac 150772 bytes_out 0 150772 bytes_in 0 150772 station_ip 37.129.149.220 150772 port 523 150772 unique_id port 150772 remote_ip 10.8.0.182 150781 username barzegar 150781 mac 150781 bytes_out 0 150781 bytes_in 0 150781 station_ip 5.119.205.62 150781 port 523 150781 unique_id port 150781 remote_ip 10.8.0.234 150782 username barzegar 150782 mac 150782 bytes_out 0 150782 bytes_in 0 150782 station_ip 5.119.205.62 150782 port 523 150782 unique_id port 150782 remote_ip 10.8.0.234 150785 username hashtadani4 150785 mac 150785 bytes_out 0 150785 bytes_in 0 150785 station_ip 37.129.149.220 150785 port 523 150785 unique_id port 150785 remote_ip 10.8.0.182 150787 username hashtadani4 150787 mac 150787 bytes_out 0 150787 bytes_in 0 150787 station_ip 37.129.149.220 150787 port 523 150787 unique_id port 150787 remote_ip 10.8.0.182 150789 username hashtadani4 150789 mac 150789 bytes_out 0 150789 bytes_in 0 150789 station_ip 37.129.149.220 150789 port 523 150789 unique_id port 150789 remote_ip 10.8.0.182 150796 username hashtadani4 150796 mac 150796 bytes_out 0 150796 bytes_in 0 150796 station_ip 37.129.149.220 150796 port 523 150796 unique_id port 150796 remote_ip 10.8.0.182 150798 username hashtadani4 150798 mac 150798 bytes_out 0 150798 bytes_in 0 150798 station_ip 37.129.149.220 150798 port 523 150798 unique_id port 150798 remote_ip 10.8.0.182 150799 username hashtadani4 150799 mac 150799 bytes_out 0 150799 bytes_in 0 150799 station_ip 37.129.149.220 150799 port 523 150799 unique_id port 150799 remote_ip 10.8.0.182 150800 unique_id port 150800 remote_ip 10.8.0.182 150801 username barzegar 150801 mac 150801 bytes_out 0 150801 bytes_in 0 150801 station_ip 5.120.57.235 150801 port 277 150801 unique_id port 150801 remote_ip 10.8.1.174 150802 username hashtadani4 150802 mac 150802 bytes_out 0 150802 bytes_in 0 150802 station_ip 37.129.149.220 150802 port 523 150802 unique_id port 150802 remote_ip 10.8.0.182 150803 username hashtadani4 150803 mac 150803 bytes_out 0 150803 bytes_in 0 150803 station_ip 37.129.149.220 150803 port 523 150803 unique_id port 150803 remote_ip 10.8.0.182 150804 username hashtadani4 150804 mac 150804 bytes_out 0 150804 bytes_in 0 150804 station_ip 37.129.149.220 150804 port 523 150804 unique_id port 150804 remote_ip 10.8.0.182 150805 username mehdizare 150805 mac 150805 bytes_out 1349226 150805 bytes_in 17000848 150805 station_ip 5.119.230.203 150805 port 523 150805 unique_id port 150805 remote_ip 10.8.0.90 150806 username barzegar 150806 mac 150806 bytes_out 0 150806 bytes_in 0 150806 station_ip 5.114.214.51 150806 port 277 150806 unique_id port 150806 remote_ip 10.8.1.174 150807 username barzegar 150807 mac 150807 bytes_out 0 150807 bytes_in 0 150807 station_ip 5.119.104.167 150807 port 536 150807 unique_id port 150807 remote_ip 10.8.0.234 150810 username barzegar 150810 mac 150810 bytes_out 0 150810 bytes_in 0 150810 station_ip 5.119.104.167 150810 port 552 150810 unique_id port 150810 remote_ip 10.8.0.234 150812 username barzegar 150812 mac 150812 bytes_out 0 150812 bytes_in 0 150812 station_ip 5.119.104.167 150812 port 552 150812 unique_id port 150812 remote_ip 10.8.0.234 150817 username hamid.e 150817 unique_id port 150817 terminate_cause User-Request 150817 bytes_out 918121 150817 bytes_in 20219365 150817 station_ip 37.27.22.60 150817 port 15731076 150817 nas_port_type Virtual 150817 remote_ip 5.5.5.254 150818 username morteza 150818 mac 150818 bytes_out 0 150818 bytes_in 0 150818 station_ip 83.122.136.90 150818 port 536 150818 unique_id port 150818 remote_ip 10.8.0.46 150824 username morteza 150824 mac 150824 bytes_out 0 150824 bytes_in 0 150824 station_ip 83.122.136.90 150824 port 277 150824 unique_id port 150824 remote_ip 10.8.1.62 150827 username barzegar 150827 mac 150827 bytes_out 0 150827 bytes_in 0 150827 station_ip 5.119.104.167 150827 port 536 150827 unique_id port 150827 remote_ip 10.8.0.234 150829 username morteza 150829 mac 150829 bytes_out 0 150829 bytes_in 0 150829 station_ip 83.122.136.90 150829 port 536 150829 unique_id port 150829 remote_ip 10.8.0.46 150832 username morteza 150832 mac 150832 bytes_out 0 150832 bytes_in 0 150832 station_ip 83.122.136.90 150832 port 536 150832 unique_id port 150832 remote_ip 10.8.0.46 150846 username mohammadjavad 150846 mac 150846 bytes_out 0 150846 bytes_in 0 150846 station_ip 83.122.253.161 150846 port 551 150846 unique_id port 150846 remote_ip 10.8.0.142 150855 username mehdizare 150855 mac 150855 bytes_out 135656 150855 bytes_in 316372 150855 station_ip 5.119.230.203 150855 port 523 150855 unique_id port 150855 remote_ip 10.8.0.90 150856 username nilufarrajaei 150856 mac 150856 bytes_out 3620065 150856 bytes_in 45336056 150856 station_ip 83.123.61.192 150856 port 541 150856 unique_id port 150856 remote_ip 10.8.0.206 150859 username rahim 150859 mac 150859 bytes_out 0 150859 bytes_in 0 150859 station_ip 5.120.153.199 150859 port 551 150859 unique_id port 150859 remote_ip 10.8.0.50 150867 username milan 150867 mac 150867 bytes_out 0 150867 bytes_in 0 150867 station_ip 5.120.31.183 150867 port 541 150867 unique_id port 150867 remote_ip 10.8.0.218 150873 username rezaei 150873 mac 150873 bytes_out 0 150873 bytes_in 0 150873 station_ip 5.120.46.216 150873 port 536 150873 unique_id port 150873 remote_ip 10.8.0.230 150876 username mosi 150876 mac 150876 bytes_out 0 150876 bytes_in 0 150876 station_ip 151.235.78.77 150876 port 280 150876 unique_id port 150876 remote_ip 10.8.1.86 150877 username nilufarrajaei 150877 mac 150877 bytes_out 8974 150877 bytes_in 16636 150877 station_ip 83.123.61.192 150877 port 541 150877 unique_id port 150877 remote_ip 10.8.0.206 150883 username vanila 150883 kill_reason Another user logged on this global unique id 150883 mac 150883 bytes_out 0 150883 bytes_in 0 150883 station_ip 83.122.141.228 150883 port 541 150883 unique_id port 150883 remote_ip 10.8.0.178 150886 username moradi 150886 kill_reason Another user logged on this global unique id 150886 mac 150886 bytes_out 0 150886 bytes_in 0 150886 station_ip 37.129.15.177 150886 port 523 150886 unique_id port 150808 username barzegar 150808 mac 150808 bytes_out 0 150808 bytes_in 0 150808 station_ip 5.119.104.167 150808 port 541 150808 unique_id port 150808 remote_ip 10.8.0.234 150811 username barzegar 150811 mac 150811 bytes_out 0 150811 bytes_in 0 150811 station_ip 5.119.104.167 150811 port 552 150811 unique_id port 150811 remote_ip 10.8.0.234 150813 username morteza 150813 kill_reason Another user logged on this global unique id 150813 mac 150813 bytes_out 0 150813 bytes_in 0 150813 station_ip 83.122.136.90 150813 port 536 150813 unique_id port 150815 username morteza 150815 mac 150815 bytes_out 0 150815 bytes_in 0 150815 station_ip 83.122.136.90 150815 port 536 150815 unique_id port 150816 username morteza 150816 mac 150816 bytes_out 0 150816 bytes_in 0 150816 station_ip 83.122.136.90 150816 port 277 150816 unique_id port 150816 remote_ip 10.8.1.62 150820 username morteza 150820 mac 150820 bytes_out 9698 150820 bytes_in 14388 150820 station_ip 83.122.136.90 150820 port 277 150820 unique_id port 150820 remote_ip 10.8.1.62 150823 username sedighe 150823 mac 150823 bytes_out 0 150823 bytes_in 0 150823 station_ip 37.129.24.225 150823 port 536 150823 unique_id port 150823 remote_ip 10.8.0.146 150826 username morteza 150826 kill_reason Maximum check online fails reached 150826 mac 150826 bytes_out 0 150826 bytes_in 0 150826 station_ip 83.122.136.90 150826 port 277 150826 unique_id port 150828 username morteza 150828 mac 150828 bytes_out 0 150828 bytes_in 0 150828 station_ip 83.122.136.90 150828 port 536 150828 unique_id port 150828 remote_ip 10.8.0.46 150830 username morteza 150830 mac 150830 bytes_out 0 150830 bytes_in 0 150830 station_ip 83.122.136.90 150830 port 536 150830 unique_id port 150830 remote_ip 10.8.0.46 150834 username morteza 150834 mac 150834 bytes_out 0 150834 bytes_in 0 150834 station_ip 83.122.136.90 150834 port 280 150834 unique_id port 150834 remote_ip 10.8.1.62 150837 username morteza 150837 mac 150837 bytes_out 0 150837 bytes_in 0 150837 station_ip 83.122.136.90 150837 port 279 150837 unique_id port 150837 remote_ip 10.8.1.62 150839 username barzegar 150839 mac 150839 bytes_out 0 150839 bytes_in 0 150839 station_ip 5.119.104.167 150839 port 552 150839 unique_id port 150839 remote_ip 10.8.0.234 150841 username sedighe 150841 mac 150841 bytes_out 0 150841 bytes_in 0 150841 station_ip 37.129.171.134 150841 port 536 150841 unique_id port 150841 remote_ip 10.8.0.146 150844 username morteza 150844 mac 150844 bytes_out 0 150844 bytes_in 0 150844 station_ip 83.122.136.90 150844 port 536 150844 unique_id port 150844 remote_ip 10.8.0.46 150847 username barzegar 150847 mac 150847 bytes_out 0 150847 bytes_in 0 150847 station_ip 5.119.104.167 150847 port 536 150847 unique_id port 150847 remote_ip 10.8.0.234 150848 username morteza 150848 mac 150848 bytes_out 0 150848 bytes_in 0 150848 station_ip 83.122.136.90 150848 port 551 150848 unique_id port 150848 remote_ip 10.8.0.46 150849 username morteza 150849 mac 150849 bytes_out 749253 150849 bytes_in 49884 150849 station_ip 83.122.136.90 150849 port 536 150849 unique_id port 150849 remote_ip 10.8.0.46 150850 username sedighe 150850 mac 150850 bytes_out 0 150850 bytes_in 0 150850 station_ip 37.129.171.134 150850 port 557 150850 unique_id port 150850 remote_ip 10.8.0.146 150852 username mohammadjavad 150852 mac 150852 bytes_out 1533496 150809 username morteza 150809 kill_reason Another user logged on this global unique id 150809 mac 150809 bytes_out 0 150809 bytes_in 0 150809 station_ip 83.122.136.90 150809 port 536 150809 unique_id port 150809 remote_ip 10.8.0.46 150814 username morteza 150814 kill_reason Another user logged on this global unique id 150814 mac 150814 bytes_out 0 150814 bytes_in 0 150814 station_ip 83.122.136.90 150814 port 536 150814 unique_id port 150819 username barzegar 150819 mac 150819 bytes_out 0 150819 bytes_in 0 150819 station_ip 5.119.104.167 150819 port 277 150819 unique_id port 150819 remote_ip 10.8.1.174 150821 username morteza 150821 mac 150821 bytes_out 0 150821 bytes_in 0 150821 station_ip 83.122.136.90 150821 port 277 150821 unique_id port 150821 remote_ip 10.8.1.62 150822 username morteza 150822 mac 150822 bytes_out 0 150822 bytes_in 0 150822 station_ip 83.122.136.90 150822 port 277 150822 unique_id port 150822 remote_ip 10.8.1.62 150825 username morteza 150825 mac 150825 bytes_out 0 150825 bytes_in 0 150825 station_ip 83.122.136.90 150825 port 536 150825 unique_id port 150825 remote_ip 10.8.0.46 150831 username morteza 150831 kill_reason Maximum check online fails reached 150831 mac 150831 bytes_out 0 150831 bytes_in 0 150831 station_ip 83.122.136.90 150831 port 278 150831 unique_id port 150833 username barzegar 150833 mac 150833 bytes_out 0 150833 bytes_in 0 150833 station_ip 5.119.104.167 150833 port 279 150833 unique_id port 150833 remote_ip 10.8.1.174 150835 username mehdizare 150835 mac 150835 bytes_out 0 150835 bytes_in 0 150835 station_ip 5.119.230.203 150835 port 523 150835 unique_id port 150835 remote_ip 10.8.0.90 150836 username morteza 150836 mac 150836 bytes_out 0 150836 bytes_in 0 150836 station_ip 83.122.136.90 150836 port 279 150836 unique_id port 150836 remote_ip 10.8.1.62 150838 username morteza 150838 mac 150838 bytes_out 0 150838 bytes_in 0 150838 station_ip 83.122.136.90 150838 port 279 150838 unique_id port 150838 remote_ip 10.8.1.62 150840 username morteza 150840 kill_reason Maximum check online fails reached 150840 mac 150840 bytes_out 0 150840 bytes_in 0 150840 station_ip 83.122.136.90 150840 port 279 150840 unique_id port 150842 username morteza 150842 kill_reason Maximum check online fails reached 150842 mac 150842 bytes_out 0 150842 bytes_in 0 150842 station_ip 83.122.136.90 150842 port 552 150842 unique_id port 150843 username morteza 150843 mac 150843 bytes_out 0 150843 bytes_in 0 150843 station_ip 83.122.136.90 150843 port 536 150843 unique_id port 150843 remote_ip 10.8.0.46 150845 username morteza 150845 mac 150845 bytes_out 0 150845 bytes_in 0 150845 station_ip 83.122.136.90 150845 port 280 150845 unique_id port 150845 remote_ip 10.8.1.62 150851 username vanila 150851 mac 150851 bytes_out 0 150851 bytes_in 0 150851 station_ip 83.122.141.228 150851 port 551 150851 unique_id port 150851 remote_ip 10.8.0.178 150857 username mehdizare 150857 mac 150857 bytes_out 15431 150857 bytes_in 26891 150857 station_ip 5.119.230.203 150857 port 280 150857 unique_id port 150857 remote_ip 10.8.1.42 150858 username mehdizare 150858 mac 150858 bytes_out 32666 150858 bytes_in 46647 150858 station_ip 5.119.230.203 150858 port 280 150858 unique_id port 150858 remote_ip 10.8.1.42 150860 username kalantary 150860 mac 150860 bytes_out 0 150860 bytes_in 0 150860 station_ip 83.122.164.228 150860 port 536 150860 unique_id port 150860 remote_ip 10.8.0.98 150852 bytes_in 35543818 150852 station_ip 83.122.117.226 150852 port 556 150852 unique_id port 150852 remote_ip 10.8.0.142 150853 username vanila 150853 mac 150853 bytes_out 0 150853 bytes_in 0 150853 station_ip 83.122.141.228 150853 port 536 150853 unique_id port 150853 remote_ip 10.8.0.178 150854 username barzegar 150854 mac 150854 bytes_out 0 150854 bytes_in 0 150854 station_ip 5.119.104.167 150854 port 280 150854 unique_id port 150854 remote_ip 10.8.1.174 150862 username vanila 150862 mac 150862 bytes_out 2048613 150862 bytes_in 14209774 150862 station_ip 83.122.141.228 150862 port 556 150862 unique_id port 150862 remote_ip 10.8.0.178 150864 username alipour 150864 mac 150864 bytes_out 794175 150864 bytes_in 2837084 150864 station_ip 37.129.13.177 150864 port 265 150864 unique_id port 150864 remote_ip 10.8.1.50 150866 username kalantary 150866 mac 150866 bytes_out 0 150866 bytes_in 0 150866 station_ip 83.122.164.228 150866 port 536 150866 unique_id port 150866 remote_ip 10.8.0.98 150869 username barzegar 150869 mac 150869 bytes_out 0 150869 bytes_in 0 150869 station_ip 5.119.104.167 150869 port 273 150869 unique_id port 150869 remote_ip 10.8.1.174 150870 username mehdizare 150870 mac 150870 bytes_out 45875 150870 bytes_in 103559 150870 station_ip 5.119.230.203 150870 port 280 150870 unique_id port 150870 remote_ip 10.8.1.42 150871 username hamidsalari 150871 kill_reason Another user logged on this global unique id 150871 mac 150871 bytes_out 0 150871 bytes_in 0 150871 station_ip 5.119.217.42 150871 port 555 150871 unique_id port 150872 username vanila 150872 mac 150872 bytes_out 0 150872 bytes_in 0 150872 station_ip 83.122.141.228 150872 port 541 150872 unique_id port 150872 remote_ip 10.8.0.178 150874 username barzegar 150874 mac 150874 bytes_out 0 150874 bytes_in 0 150874 station_ip 5.119.104.167 150874 port 280 150874 unique_id port 150874 remote_ip 10.8.1.174 150875 username nilufarrajaei 150875 mac 150875 bytes_out 544345 150875 bytes_in 6270556 150875 station_ip 83.123.61.192 150875 port 523 150875 unique_id port 150875 remote_ip 10.8.0.206 150878 username mehdizare 150878 mac 150878 bytes_out 0 150878 bytes_in 0 150878 station_ip 5.119.230.203 150878 port 273 150878 unique_id port 150878 remote_ip 10.8.1.42 150880 username vanila 150880 mac 150880 bytes_out 0 150880 bytes_in 0 150880 station_ip 83.122.141.228 150880 port 551 150880 unique_id port 150880 remote_ip 10.8.0.178 150885 username nilufarrajaei 150885 mac 150885 bytes_out 22983 150885 bytes_in 38796 150885 station_ip 83.123.61.192 150885 port 557 150885 unique_id port 150885 remote_ip 10.8.0.206 150887 username kalantary 150887 mac 150887 bytes_out 195011 150887 bytes_in 384474 150887 station_ip 83.122.203.72 150887 port 551 150887 unique_id port 150887 remote_ip 10.8.0.98 150888 username barzegar 150888 mac 150888 bytes_out 0 150888 bytes_in 0 150888 station_ip 5.119.104.167 150888 port 281 150888 unique_id port 150888 remote_ip 10.8.1.174 150892 username vanila 150892 mac 150892 bytes_out 0 150892 bytes_in 0 150892 station_ip 83.122.141.228 150892 port 541 150892 unique_id port 150896 username barzegar 150896 mac 150896 bytes_out 0 150896 bytes_in 0 150896 station_ip 5.119.104.167 150896 port 280 150896 unique_id port 150896 remote_ip 10.8.1.174 150902 username mohammadjavad 150902 mac 150902 bytes_out 0 150902 bytes_in 0 150902 station_ip 83.123.52.241 150861 username barzegar 150861 mac 150861 bytes_out 0 150861 bytes_in 0 150861 station_ip 5.119.104.167 150861 port 281 150861 unique_id port 150861 remote_ip 10.8.1.174 150863 username mostafa_es78 150863 unique_id port 150863 terminate_cause Lost-Carrier 150863 bytes_out 716123 150863 bytes_in 6065749 150863 station_ip 5.126.23.125 150863 port 15731073 150863 nas_port_type Virtual 150863 remote_ip 5.5.5.255 150865 username milan 150865 mac 150865 bytes_out 0 150865 bytes_in 0 150865 station_ip 5.120.31.183 150865 port 273 150865 unique_id port 150868 username rezaei 150868 mac 150868 bytes_out 0 150868 bytes_in 0 150868 station_ip 5.120.46.216 150868 port 551 150868 unique_id port 150868 remote_ip 10.8.0.230 150879 username rezaei 150879 mac 150879 bytes_out 0 150879 bytes_in 0 150879 station_ip 5.120.46.216 150879 port 556 150879 unique_id port 150879 remote_ip 10.8.0.230 150881 username hamidsalari 150881 kill_reason Another user logged on this global unique id 150881 mac 150881 bytes_out 0 150881 bytes_in 0 150881 station_ip 5.119.217.42 150881 port 555 150881 unique_id port 150882 username sekonji3 150882 mac 150882 bytes_out 0 150882 bytes_in 0 150882 station_ip 113.203.45.142 150882 port 536 150882 unique_id port 150882 remote_ip 10.8.0.6 150884 username alipour 150884 mac 150884 bytes_out 18336 150884 bytes_in 39729 150884 station_ip 37.129.13.177 150884 port 265 150884 unique_id port 150884 remote_ip 10.8.1.50 150890 username hamidsalari 150890 kill_reason Another user logged on this global unique id 150890 mac 150890 bytes_out 0 150890 bytes_in 0 150890 station_ip 5.119.217.42 150890 port 555 150890 unique_id port 150891 username khalili 150891 mac 150891 bytes_out 0 150891 bytes_in 0 150891 station_ip 5.119.24.180 150891 port 553 150891 unique_id port 150894 username kalantary 150894 mac 150894 bytes_out 0 150894 bytes_in 0 150894 station_ip 83.122.203.72 150894 port 556 150894 unique_id port 150894 remote_ip 10.8.0.98 150897 username khalili 150897 mac 150897 bytes_out 5382 150897 bytes_in 15035 150897 station_ip 5.119.24.180 150897 port 541 150897 unique_id port 150897 remote_ip 10.8.0.86 150901 username mehdizare 150901 mac 150901 bytes_out 42636 150901 bytes_in 51942 150901 station_ip 5.119.230.203 150901 port 273 150901 unique_id port 150901 remote_ip 10.8.1.42 150903 username kalantary 150903 mac 150903 bytes_out 0 150903 bytes_in 0 150903 station_ip 83.122.203.72 150903 port 523 150903 unique_id port 150903 remote_ip 10.8.0.98 150904 username morteza 150904 mac 150904 bytes_out 39809 150904 bytes_in 66474 150904 station_ip 83.122.158.138 150904 port 536 150904 unique_id port 150904 remote_ip 10.8.0.46 150912 username barzegar 150912 mac 150912 bytes_out 0 150912 bytes_in 0 150912 station_ip 5.119.104.167 150912 port 273 150912 unique_id port 150912 remote_ip 10.8.1.174 150915 username saeed9658 150915 mac 150915 bytes_out 0 150915 bytes_in 0 150915 station_ip 5.120.158.111 150915 port 553 150915 unique_id port 150915 remote_ip 10.8.0.62 150919 username godarzi 150919 mac 150919 bytes_out 0 150919 bytes_in 0 150919 station_ip 5.202.24.27 150919 port 556 150919 unique_id port 150919 remote_ip 10.8.0.174 150922 username yaghobi 150922 mac 150922 bytes_out 1288584 150922 bytes_in 9945657 150922 station_ip 113.203.67.0 150922 port 536 150922 unique_id port 150922 remote_ip 10.8.0.198 150925 username forozandeh1 150925 mac 150925 bytes_out 627549 150886 remote_ip 10.8.0.226 150889 username vanila 150889 kill_reason Another user logged on this global unique id 150889 mac 150889 bytes_out 0 150889 bytes_in 0 150889 station_ip 83.122.141.228 150889 port 541 150889 unique_id port 150893 username sedighe 150893 mac 150893 bytes_out 0 150893 bytes_in 0 150893 station_ip 83.122.5.134 150893 port 280 150893 unique_id port 150893 remote_ip 10.8.1.78 150895 username moradi 150895 mac 150895 bytes_out 0 150895 bytes_in 0 150895 station_ip 37.129.15.177 150895 port 523 150895 unique_id port 150898 username khalili 150898 mac 150898 bytes_out 0 150898 bytes_in 0 150898 station_ip 5.119.24.180 150898 port 523 150898 unique_id port 150898 remote_ip 10.8.0.86 150899 username nilufarrajaei 150899 mac 150899 bytes_out 0 150899 bytes_in 0 150899 station_ip 83.123.61.192 150899 port 536 150899 unique_id port 150899 remote_ip 10.8.0.206 150900 username barzegar 150900 mac 150900 bytes_out 0 150900 bytes_in 0 150900 station_ip 5.119.104.167 150900 port 280 150900 unique_id port 150900 remote_ip 10.8.1.174 150905 username mehdizare 150905 mac 150905 bytes_out 13892 150905 bytes_in 18850 150905 station_ip 5.119.230.203 150905 port 273 150905 unique_id port 150905 remote_ip 10.8.1.42 150907 username nilufarrajaei 150907 mac 150907 bytes_out 2212076 150907 bytes_in 29572751 150907 station_ip 83.123.61.192 150907 port 556 150907 unique_id port 150907 remote_ip 10.8.0.206 150908 username mostafa_es78 150908 unique_id port 150908 terminate_cause User-Request 150908 bytes_out 828403 150908 bytes_in 14704329 150908 station_ip 5.125.161.243 150908 port 15731078 150908 nas_port_type Virtual 150908 remote_ip 5.5.5.111 150909 username mahdiyehalizadeh 150909 mac 150909 bytes_out 0 150909 bytes_in 0 150909 station_ip 5.119.26.97 150909 port 553 150909 unique_id port 150909 remote_ip 10.8.0.82 150911 username mahdiyehalizadeh 150911 mac 150911 bytes_out 214205 150911 bytes_in 4195375 150911 station_ip 5.119.199.37 150911 port 557 150911 unique_id port 150911 remote_ip 10.8.0.82 150913 username nilufarrajaei 150913 mac 150913 bytes_out 1623297 150913 bytes_in 21374384 150913 station_ip 83.123.61.192 150913 port 536 150913 unique_id port 150913 remote_ip 10.8.0.206 150914 username barzegar 150914 mac 150914 bytes_out 0 150914 bytes_in 0 150914 station_ip 5.119.104.167 150914 port 536 150914 unique_id port 150914 remote_ip 10.8.0.234 150916 username barzegar 150916 mac 150916 bytes_out 0 150916 bytes_in 0 150916 station_ip 5.119.104.167 150916 port 557 150916 unique_id port 150916 remote_ip 10.8.0.234 150917 username hamidsalari 150917 kill_reason Another user logged on this global unique id 150917 mac 150917 bytes_out 0 150917 bytes_in 0 150917 station_ip 5.119.217.42 150917 port 555 150917 unique_id port 150920 username hashtadani4 150920 mac 150920 bytes_out 0 150920 bytes_in 0 150920 station_ip 83.122.11.152 150920 port 557 150920 unique_id port 150920 remote_ip 10.8.0.182 150921 username hashtadani4 150921 mac 150921 bytes_out 0 150921 bytes_in 0 150921 station_ip 83.122.11.152 150921 port 557 150921 unique_id port 150921 remote_ip 10.8.0.182 150923 username godarzi 150923 mac 150923 bytes_out 79263 150923 bytes_in 230999 150923 station_ip 5.202.24.27 150923 port 558 150923 unique_id port 150923 remote_ip 10.8.0.174 150928 username yaghobi 150928 mac 150928 bytes_out 40454 150928 bytes_in 99437 150928 station_ip 113.203.52.159 150928 port 553 150928 unique_id port 150902 port 536 150902 unique_id port 150902 remote_ip 10.8.0.142 150906 username barzegar 150906 mac 150906 bytes_out 0 150906 bytes_in 0 150906 station_ip 5.119.104.167 150906 port 280 150906 unique_id port 150906 remote_ip 10.8.1.174 150910 username hamidsalari 150910 kill_reason Another user logged on this global unique id 150910 mac 150910 bytes_out 0 150910 bytes_in 0 150910 station_ip 5.119.217.42 150910 port 555 150910 unique_id port 150918 username mostafa_es78 150918 unique_id port 150918 terminate_cause User-Request 150918 bytes_out 321674 150918 bytes_in 647200 150918 station_ip 5.126.252.36 150918 port 15731080 150918 nas_port_type Virtual 150918 remote_ip 5.5.5.118 150924 username hashtadani4 150924 mac 150924 bytes_out 0 150924 bytes_in 0 150924 station_ip 83.122.11.152 150924 port 559 150924 unique_id port 150924 remote_ip 10.8.0.182 150927 username barzegar 150927 mac 150927 bytes_out 0 150927 bytes_in 0 150927 station_ip 5.119.104.167 150927 port 280 150927 unique_id port 150927 remote_ip 10.8.1.174 150933 username mehdizare 150933 mac 150933 bytes_out 140968 150933 bytes_in 891886 150933 station_ip 5.119.230.203 150933 port 523 150933 unique_id port 150933 remote_ip 10.8.0.90 150935 username hashtadani4 150935 mac 150935 bytes_out 0 150935 bytes_in 0 150935 station_ip 83.122.11.152 150935 port 523 150935 unique_id port 150935 remote_ip 10.8.0.182 150944 username hashtadani4 150944 mac 150944 bytes_out 0 150944 bytes_in 0 150944 station_ip 83.122.11.152 150944 port 536 150944 unique_id port 150944 remote_ip 10.8.0.182 150946 username moradi 150946 mac 150946 bytes_out 0 150946 bytes_in 0 150946 station_ip 46.225.232.194 150946 port 280 150946 unique_id port 150946 remote_ip 10.8.1.202 150951 username nilufarrajaei 150951 mac 150951 bytes_out 871602 150951 bytes_in 15333280 150951 station_ip 83.123.61.192 150951 port 557 150951 unique_id port 150951 remote_ip 10.8.0.206 150955 username aminvpn 150955 mac 150955 bytes_out 34323 150955 bytes_in 48807 150955 station_ip 5.119.13.65 150955 port 553 150955 unique_id port 150955 remote_ip 10.8.0.14 150958 username mostafa_es78 150958 unique_id port 150958 terminate_cause User-Request 150958 bytes_out 221676 150958 bytes_in 360562 150958 station_ip 5.125.128.155 150958 port 15731081 150958 nas_port_type Virtual 150958 remote_ip 5.5.5.254 150962 username moradi 150962 kill_reason Another user logged on this global unique id 150962 mac 150962 bytes_out 0 150962 bytes_in 0 150962 station_ip 46.225.232.194 150962 port 265 150962 unique_id port 150962 remote_ip 10.8.1.202 150965 username hashtadani4 150965 mac 150965 bytes_out 0 150965 bytes_in 0 150965 station_ip 83.122.11.152 150965 port 556 150965 unique_id port 150965 remote_ip 10.8.0.182 150969 username moradi 150969 mac 150969 bytes_out 0 150969 bytes_in 0 150969 station_ip 46.225.232.194 150969 port 265 150969 unique_id port 150970 username hashtadani4 150970 mac 150970 bytes_out 0 150970 bytes_in 0 150970 station_ip 83.122.11.152 150970 port 558 150970 unique_id port 150970 remote_ip 10.8.0.182 150971 username hashtadani4 150971 mac 150971 bytes_out 0 150971 bytes_in 0 150971 station_ip 83.122.11.152 150971 port 558 150971 unique_id port 150971 remote_ip 10.8.0.182 150973 username barzegar 150973 mac 150973 bytes_out 0 150973 bytes_in 0 150973 station_ip 5.119.104.167 150973 port 265 150973 unique_id port 150973 remote_ip 10.8.1.174 150975 username aminvpn 150975 mac 150925 bytes_in 8554890 150925 station_ip 83.122.60.71 150925 port 553 150925 unique_id port 150925 remote_ip 10.8.0.130 150926 username yaghobi 150926 mac 150926 bytes_out 308622 150926 bytes_in 2251721 150926 station_ip 113.203.52.159 150926 port 536 150926 unique_id port 150926 remote_ip 10.8.0.198 150929 username barzegar 150929 mac 150929 bytes_out 0 150929 bytes_in 0 150929 station_ip 5.119.104.167 150929 port 536 150929 unique_id port 150929 remote_ip 10.8.0.234 150930 username hashtadani4 150930 mac 150930 bytes_out 0 150930 bytes_in 0 150930 station_ip 83.122.11.152 150930 port 536 150930 unique_id port 150930 remote_ip 10.8.0.182 150931 username hashtadani4 150931 mac 150931 bytes_out 0 150931 bytes_in 0 150931 station_ip 83.122.11.152 150931 port 536 150931 unique_id port 150931 remote_ip 10.8.0.182 150937 username alipour 150937 mac 150937 bytes_out 171011 150937 bytes_in 728062 150937 station_ip 37.129.13.177 150937 port 265 150937 unique_id port 150937 remote_ip 10.8.1.50 150940 username aminvpn 150940 mac 150940 bytes_out 0 150940 bytes_in 0 150940 station_ip 5.119.13.65 150940 port 536 150940 unique_id port 150940 remote_ip 10.8.0.14 150942 username kalantary 150942 mac 150942 bytes_out 0 150942 bytes_in 0 150942 station_ip 83.122.138.68 150942 port 558 150942 unique_id port 150942 remote_ip 10.8.0.98 150943 username mehdizare 150943 mac 150943 bytes_out 0 150943 bytes_in 0 150943 station_ip 5.114.82.59 150943 port 265 150943 unique_id port 150943 remote_ip 10.8.1.42 150945 username aminvpn 150945 mac 150945 bytes_out 14322 150945 bytes_in 21750 150945 station_ip 83.122.210.226 150945 port 553 150945 unique_id port 150945 remote_ip 10.8.0.14 150947 username farhad2 150947 mac 150947 bytes_out 351028 150947 bytes_in 843769 150947 station_ip 5.119.192.221 150947 port 551 150947 unique_id port 150947 remote_ip 10.8.0.190 150950 username aminvpn 150950 mac 150950 bytes_out 11164 150950 bytes_in 25304 150950 station_ip 83.122.210.226 150950 port 551 150950 unique_id port 150950 remote_ip 10.8.0.14 150953 username barzegar 150953 mac 150953 bytes_out 0 150953 bytes_in 0 150953 station_ip 5.119.104.167 150953 port 280 150953 unique_id port 150953 remote_ip 10.8.1.174 150956 username hashtadani4 150956 mac 150956 bytes_out 0 150956 bytes_in 0 150956 station_ip 83.122.11.152 150956 port 553 150956 unique_id port 150956 remote_ip 10.8.0.182 150959 username aminvpn 150959 mac 150959 bytes_out 6195 150959 bytes_in 26349 150959 station_ip 5.119.13.65 150959 port 553 150959 unique_id port 150959 remote_ip 10.8.0.14 150960 username aminvpn 150960 mac 150960 bytes_out 0 150960 bytes_in 0 150960 station_ip 83.122.210.226 150960 port 551 150960 unique_id port 150960 remote_ip 10.8.0.14 150963 username aminvpn 150963 mac 150963 bytes_out 4900 150963 bytes_in 15123 150963 station_ip 5.119.13.65 150963 port 553 150963 unique_id port 150963 remote_ip 10.8.0.14 150966 username mehdizare 150966 mac 150966 bytes_out 0 150966 bytes_in 0 150966 station_ip 5.119.6.126 150966 port 281 150966 unique_id port 150966 remote_ip 10.8.1.42 150967 username forozandeh1 150967 mac 150967 bytes_out 778897 150967 bytes_in 3937745 150967 station_ip 83.122.1.249 150967 port 553 150967 unique_id port 150967 remote_ip 10.8.0.130 150968 username aminvpn 150968 mac 150968 bytes_out 38763 150968 bytes_in 41705 150968 station_ip 5.119.13.65 150928 remote_ip 10.8.0.198 150932 username mohammadjavad 150932 mac 150932 bytes_out 91185 150932 bytes_in 82398 150932 station_ip 83.122.6.202 150932 port 556 150932 unique_id port 150932 remote_ip 10.8.0.142 150934 username barzegar 150934 mac 150934 bytes_out 0 150934 bytes_in 0 150934 station_ip 5.119.104.167 150934 port 523 150934 unique_id port 150934 remote_ip 10.8.0.234 150936 username godarzi 150936 kill_reason Another user logged on this global unique id 150936 mac 150936 bytes_out 0 150936 bytes_in 0 150936 station_ip 5.202.24.27 150936 port 559 150936 unique_id port 150936 remote_ip 10.8.0.174 150938 username alihosseini1 150938 mac 150938 bytes_out 0 150938 bytes_in 0 150938 station_ip 5.119.76.226 150938 port 282 150938 unique_id port 150938 remote_ip 10.8.1.106 150939 username aminvpn 150939 mac 150939 bytes_out 1933448 150939 bytes_in 7182712 150939 station_ip 83.122.210.226 150939 port 551 150939 unique_id port 150939 remote_ip 10.8.0.14 150941 username mehdizare 150941 mac 150941 bytes_out 0 150941 bytes_in 0 150941 station_ip 5.119.230.203 150941 port 281 150941 unique_id port 150941 remote_ip 10.8.1.42 150948 username aminvpn 150948 mac 150948 bytes_out 0 150948 bytes_in 0 150948 station_ip 5.119.13.65 150948 port 536 150948 unique_id port 150948 remote_ip 10.8.0.14 150949 username alipour 150949 mac 150949 bytes_out 0 150949 bytes_in 0 150949 station_ip 37.129.13.177 150949 port 523 150949 unique_id port 150949 remote_ip 10.8.0.102 150952 username farhad2 150952 mac 150952 bytes_out 0 150952 bytes_in 0 150952 station_ip 5.119.192.221 150952 port 523 150952 unique_id port 150952 remote_ip 10.8.0.190 150954 username godarzi 150954 mac 150954 bytes_out 0 150954 bytes_in 0 150954 station_ip 5.202.24.27 150954 port 559 150954 unique_id port 150957 username aminvpn 150957 mac 150957 bytes_out 0 150957 bytes_in 0 150957 station_ip 83.122.210.226 150957 port 551 150957 unique_id port 150957 remote_ip 10.8.0.14 150961 username hashtadani4 150961 mac 150961 bytes_out 0 150961 bytes_in 0 150961 station_ip 83.122.11.152 150961 port 551 150961 unique_id port 150961 remote_ip 10.8.0.182 150964 username aminvpn 150964 mac 150964 bytes_out 0 150964 bytes_in 0 150964 station_ip 83.122.210.226 150964 port 556 150964 unique_id port 150964 remote_ip 10.8.0.14 150978 username mehdizare 150978 mac 150978 bytes_out 11439 150978 bytes_in 14357 150978 station_ip 5.119.6.126 150978 port 557 150978 unique_id port 150978 remote_ip 10.8.0.90 150980 username aminvpn 150980 mac 150980 bytes_out 11431 150980 bytes_in 19810 150980 station_ip 83.122.210.226 150980 port 553 150980 unique_id port 150980 remote_ip 10.8.0.14 150981 username hashtadani4 150981 mac 150981 bytes_out 0 150981 bytes_in 0 150981 station_ip 83.122.11.152 150981 port 558 150981 unique_id port 150981 remote_ip 10.8.0.182 150982 username aminvpn 150982 mac 150982 bytes_out 0 150982 bytes_in 0 150982 station_ip 5.119.13.65 150982 port 557 150982 unique_id port 150982 remote_ip 10.8.0.14 150985 username pourshad 150985 mac 150985 bytes_out 271667 150985 bytes_in 1208454 150985 station_ip 5.119.207.142 150985 port 553 150985 unique_id port 150985 remote_ip 10.8.0.18 150986 username barzegar 150986 mac 150986 bytes_out 0 150986 bytes_in 0 150986 station_ip 5.119.104.167 150986 port 265 150986 unique_id port 150986 remote_ip 10.8.1.174 150992 username aminvpn 150968 port 557 150968 unique_id port 150968 remote_ip 10.8.0.14 150972 username godarzi 150972 mac 150972 bytes_out 300545 150972 bytes_in 3462361 150972 station_ip 5.202.24.27 150972 port 556 150972 unique_id port 150972 remote_ip 10.8.0.174 150974 username aminvpn 150974 mac 150974 bytes_out 9452 150974 bytes_in 18735 150974 station_ip 83.122.210.226 150974 port 553 150974 unique_id port 150974 remote_ip 10.8.0.14 150976 username hashtadani4 150976 mac 150976 bytes_out 0 150976 bytes_in 0 150976 station_ip 83.122.11.152 150976 port 556 150976 unique_id port 150976 remote_ip 10.8.0.182 150977 username kalantary 150977 mac 150977 bytes_out 234839 150977 bytes_in 445225 150977 station_ip 83.122.204.244 150977 port 559 150977 unique_id port 150977 remote_ip 10.8.0.98 150979 username hashtadani4 150979 mac 150979 bytes_out 0 150979 bytes_in 0 150979 station_ip 83.122.11.152 150979 port 557 150979 unique_id port 150979 remote_ip 10.8.0.182 150983 username hashtadani4 150983 mac 150983 bytes_out 0 150983 bytes_in 0 150983 station_ip 83.122.11.152 150983 port 557 150983 unique_id port 150983 remote_ip 10.8.0.182 150989 username mehdizare 150989 mac 150989 bytes_out 9356 150989 bytes_in 17117 150989 station_ip 5.119.6.126 150989 port 556 150989 unique_id port 150989 remote_ip 10.8.0.90 150991 username aminvpn 150991 mac 150991 bytes_out 0 150991 bytes_in 0 150991 station_ip 5.119.13.65 150991 port 561 150991 unique_id port 150991 remote_ip 10.8.0.14 150996 username aminvpn 150996 mac 150996 bytes_out 0 150996 bytes_in 0 150996 station_ip 83.122.210.226 150996 port 558 150996 unique_id port 150996 remote_ip 10.8.0.14 151001 username hashtadani4 151001 mac 151001 bytes_out 0 151001 bytes_in 0 151001 station_ip 83.122.11.152 151001 port 564 151001 unique_id port 151001 remote_ip 10.8.0.182 151004 username barzegar 151004 mac 151004 bytes_out 0 151004 bytes_in 0 151004 station_ip 5.119.104.167 151004 port 563 151004 unique_id port 151004 remote_ip 10.8.0.234 151005 username hashtadani4 151005 mac 151005 bytes_out 0 151005 bytes_in 0 151005 station_ip 83.122.11.152 151005 port 564 151005 unique_id port 151005 remote_ip 10.8.0.182 151006 username kalantary 151006 kill_reason Another user logged on this global unique id 151006 mac 151006 bytes_out 0 151006 bytes_in 0 151006 station_ip 83.122.176.120 151006 port 559 151006 unique_id port 151006 remote_ip 10.8.0.98 151009 username godarzi 151009 mac 151009 bytes_out 359109 151009 bytes_in 2867058 151009 station_ip 5.202.24.27 151009 port 563 151009 unique_id port 151009 remote_ip 10.8.0.174 151010 username meysam 151010 mac 151010 bytes_out 0 151010 bytes_in 0 151010 station_ip 188.158.49.96 151010 port 561 151010 unique_id port 151013 username hashtadani4 151013 mac 151013 bytes_out 0 151013 bytes_in 0 151013 station_ip 83.122.11.152 151013 port 553 151013 unique_id port 151013 remote_ip 10.8.0.182 151014 username hashtadani4 151014 mac 151014 bytes_out 0 151014 bytes_in 0 151014 station_ip 83.122.11.152 151014 port 561 151014 unique_id port 151014 remote_ip 10.8.0.182 151015 username barzegar 151015 mac 151015 bytes_out 0 151015 bytes_in 0 151015 station_ip 5.119.104.167 151015 port 265 151015 unique_id port 151015 remote_ip 10.8.1.174 151018 username nilufarrajaei 151018 mac 151018 bytes_out 0 151018 bytes_in 0 151018 station_ip 83.123.61.192 151018 port 523 151018 unique_id port 150975 bytes_out 0 150975 bytes_in 0 150975 station_ip 5.119.13.65 150975 port 556 150975 unique_id port 150975 remote_ip 10.8.0.14 150984 username malekpoir 150984 kill_reason Another user logged on this global unique id 150984 mac 150984 bytes_out 0 150984 bytes_in 0 150984 station_ip 5.120.144.2 150984 port 551 150984 unique_id port 150984 remote_ip 10.8.0.58 150987 username aminvpn 150987 mac 150987 bytes_out 88039 150987 bytes_in 105789 150987 station_ip 83.122.210.226 150987 port 559 150987 unique_id port 150987 remote_ip 10.8.0.14 150988 username aminvpn 150988 mac 150988 bytes_out 0 150988 bytes_in 0 150988 station_ip 5.119.13.65 150988 port 553 150988 unique_id port 150988 remote_ip 10.8.0.14 150990 username aminvpn 150990 mac 150990 bytes_out 0 150990 bytes_in 0 150990 station_ip 83.122.210.226 150990 port 559 150990 unique_id port 150990 remote_ip 10.8.0.14 150993 username godarzi 150993 mac 150993 bytes_out 1247029 150993 bytes_in 19266916 150993 station_ip 5.202.24.27 150993 port 558 150993 unique_id port 150993 remote_ip 10.8.0.174 150995 username aminvpn 150995 mac 150995 bytes_out 0 150995 bytes_in 0 150995 station_ip 5.119.13.65 150995 port 563 150995 unique_id port 150995 remote_ip 10.8.0.14 150997 username hashtadani4 150997 mac 150997 bytes_out 2005 150997 bytes_in 4759 150997 station_ip 83.122.11.152 150997 port 559 150997 unique_id port 150997 remote_ip 10.8.0.182 150998 username hashtadani4 150998 mac 150998 bytes_out 0 150998 bytes_in 0 150998 station_ip 83.122.11.152 150998 port 559 150998 unique_id port 150998 remote_ip 10.8.0.182 151000 username meysam 151000 kill_reason Another user logged on this global unique id 151000 mac 151000 bytes_out 0 151000 bytes_in 0 151000 station_ip 188.158.49.96 151000 port 561 151000 unique_id port 151000 remote_ip 10.8.0.110 151002 username hatami 151002 mac 151002 bytes_out 67255 151002 bytes_in 710517 151002 station_ip 94.241.175.204 151002 port 563 151002 unique_id port 151002 remote_ip 10.8.0.106 151011 username mehdizare 151011 mac 151011 bytes_out 94633 151011 bytes_in 231231 151011 station_ip 5.119.6.126 151011 port 553 151011 unique_id port 151011 remote_ip 10.8.0.90 151012 username moradi 151012 mac 151012 bytes_out 591528 151012 bytes_in 12243887 151012 station_ip 46.225.232.194 151012 port 280 151012 unique_id port 151012 remote_ip 10.8.1.202 151016 username aminvpn 151016 mac 151016 bytes_out 0 151016 bytes_in 0 151016 station_ip 5.119.13.65 151016 port 558 151016 unique_id port 151016 remote_ip 10.8.0.14 151017 username vanila 151017 mac 151017 bytes_out 0 151017 bytes_in 0 151017 station_ip 83.122.134.188 151017 port 565 151017 unique_id port 151017 remote_ip 10.8.0.178 151021 username pourshad 151021 mac 151021 bytes_out 0 151021 bytes_in 0 151021 station_ip 5.119.207.142 151021 port 557 151021 unique_id port 151021 remote_ip 10.8.0.18 151023 username hashtadani4 151023 kill_reason Maximum check online fails reached 151023 mac 151023 bytes_out 0 151023 bytes_in 0 151023 station_ip 83.122.11.152 151023 port 558 151023 unique_id port 151027 username hashtadani4 151027 mac 151027 bytes_out 0 151027 bytes_in 0 151027 station_ip 83.122.11.152 151027 port 523 151027 unique_id port 151027 remote_ip 10.8.0.182 151030 username aminvpn 151030 mac 151030 bytes_out 0 151030 bytes_in 0 151030 station_ip 5.119.13.65 151030 port 564 151030 unique_id port 151030 remote_ip 10.8.0.14 151033 username hashtadani4 150992 mac 150992 bytes_out 0 150992 bytes_in 0 150992 station_ip 83.122.210.226 150992 port 559 150992 unique_id port 150992 remote_ip 10.8.0.14 150994 username hashtadani4 150994 mac 150994 bytes_out 0 150994 bytes_in 0 150994 station_ip 83.122.11.152 150994 port 559 150994 unique_id port 150994 remote_ip 10.8.0.182 150999 username hashtadani4 150999 mac 150999 bytes_out 0 150999 bytes_in 0 150999 station_ip 83.122.11.152 150999 port 564 150999 unique_id port 150999 remote_ip 10.8.0.182 151003 username barzegar 151003 mac 151003 bytes_out 0 151003 bytes_in 0 151003 station_ip 5.119.104.167 151003 port 565 151003 unique_id port 151003 remote_ip 10.8.0.234 151007 username alipour 151007 mac 151007 bytes_out 1350241 151007 bytes_in 10760240 151007 station_ip 37.129.13.177 151007 port 536 151007 unique_id port 151007 remote_ip 10.8.0.102 151008 username hashtadani4 151008 mac 151008 bytes_out 0 151008 bytes_in 0 151008 station_ip 83.122.11.152 151008 port 536 151008 unique_id port 151008 remote_ip 10.8.0.182 151020 username hashtadani4 151020 mac 151020 bytes_out 0 151020 bytes_in 0 151020 station_ip 83.122.11.152 151020 port 265 151020 unique_id port 151020 remote_ip 10.8.1.142 151024 username hashtadani4 151024 mac 151024 bytes_out 0 151024 bytes_in 0 151024 station_ip 83.122.11.152 151024 port 265 151024 unique_id port 151024 remote_ip 10.8.1.142 151025 username aminvpn 151025 mac 151025 bytes_out 0 151025 bytes_in 0 151025 station_ip 5.119.13.65 151025 port 523 151025 unique_id port 151025 remote_ip 10.8.0.14 151026 username aminvpn 151026 mac 151026 bytes_out 0 151026 bytes_in 0 151026 station_ip 83.122.20.45 151026 port 557 151026 unique_id port 151026 remote_ip 10.8.0.14 151029 username forozandeh1 151029 mac 151029 bytes_out 0 151029 bytes_in 0 151029 station_ip 113.203.42.108 151029 port 556 151029 unique_id port 151029 remote_ip 10.8.0.130 151034 username godarzi 151034 mac 151034 bytes_out 0 151034 bytes_in 0 151034 station_ip 5.202.24.27 151034 port 563 151034 unique_id port 151034 remote_ip 10.8.0.174 151035 username hashtadani4 151035 mac 151035 bytes_out 0 151035 bytes_in 0 151035 station_ip 37.129.197.254 151035 port 265 151035 unique_id port 151035 remote_ip 10.8.1.142 151036 username hashtadani4 151036 mac 151036 bytes_out 0 151036 bytes_in 0 151036 station_ip 37.129.197.254 151036 port 565 151036 unique_id port 151036 remote_ip 10.8.0.182 151039 username mohammadjavad 151039 mac 151039 bytes_out 273749 151039 bytes_in 1812141 151039 station_ip 83.122.64.171 151039 port 564 151039 unique_id port 151039 remote_ip 10.8.0.142 151040 username hashtadani4 151040 mac 151040 bytes_out 0 151040 bytes_in 0 151040 station_ip 37.129.197.254 151040 port 265 151040 unique_id port 151040 remote_ip 10.8.1.142 151041 username hashtadani4 151041 mac 151041 bytes_out 0 151041 bytes_in 0 151041 station_ip 37.129.197.254 151041 port 566 151041 unique_id port 151041 remote_ip 10.8.0.182 151043 username mehdizare 151043 mac 151043 bytes_out 385044 151043 bytes_in 668367 151043 station_ip 5.119.6.126 151043 port 564 151043 unique_id port 151043 remote_ip 10.8.0.90 151049 username Mahin 151049 mac 151049 bytes_out 0 151049 bytes_in 0 151049 station_ip 5.120.157.199 151049 port 567 151049 unique_id port 151049 remote_ip 10.8.0.158 151052 username godarzi 151052 kill_reason Another user logged on this global unique id 151018 remote_ip 10.8.0.206 151019 username barzegar 151019 mac 151019 bytes_out 0 151019 bytes_in 0 151019 station_ip 5.119.104.167 151019 port 566 151019 unique_id port 151019 remote_ip 10.8.0.234 151022 username aminvpn 151022 mac 151022 bytes_out 0 151022 bytes_in 0 151022 station_ip 83.122.20.45 151022 port 564 151022 unique_id port 151022 remote_ip 10.8.0.14 151028 username hashtadani4 151028 mac 151028 bytes_out 0 151028 bytes_in 0 151028 station_ip 83.122.11.152 151028 port 265 151028 unique_id port 151028 remote_ip 10.8.1.142 151031 username nilufarrajaei 151031 mac 151031 bytes_out 0 151031 bytes_in 0 151031 station_ip 83.123.61.192 151031 port 565 151031 unique_id port 151031 remote_ip 10.8.0.206 151032 username Mahin 151032 mac 151032 bytes_out 1268538 151032 bytes_in 8630649 151032 station_ip 5.120.157.199 151032 port 273 151032 unique_id port 151032 remote_ip 10.8.1.186 151047 username barzegar 151047 mac 151047 bytes_out 0 151047 bytes_in 0 151047 station_ip 5.119.104.167 151047 port 265 151047 unique_id port 151047 remote_ip 10.8.1.174 151048 username Mahin 151048 mac 151048 bytes_out 0 151048 bytes_in 0 151048 station_ip 5.120.157.199 151048 port 557 151048 unique_id port 151048 remote_ip 10.8.0.158 151056 username mostafa_es78 151056 unique_id port 151056 terminate_cause User-Request 151056 bytes_out 512172 151056 bytes_in 9843266 151056 station_ip 5.126.198.228 151056 port 15731079 151056 nas_port_type Virtual 151056 remote_ip 5.5.5.163 151061 username hashtadani4 151061 kill_reason Another user logged on this global unique id 151061 mac 151061 bytes_out 0 151061 bytes_in 0 151061 station_ip 5.202.61.148 151061 port 273 151061 unique_id port 151066 username aminvpn 151066 mac 151066 bytes_out 0 151066 bytes_in 0 151066 station_ip 83.122.20.45 151066 port 523 151066 unique_id port 151066 remote_ip 10.8.0.14 151068 username aminvpn 151068 mac 151068 bytes_out 0 151068 bytes_in 0 151068 station_ip 83.122.210.226 151068 port 523 151068 unique_id port 151068 remote_ip 10.8.0.14 151069 username aminvpn 151069 mac 151069 bytes_out 0 151069 bytes_in 0 151069 station_ip 5.119.13.65 151069 port 565 151069 unique_id port 151069 remote_ip 10.8.0.14 151072 username moradi 151072 mac 151072 bytes_out 221864 151072 bytes_in 250890 151072 station_ip 46.225.210.41 151072 port 553 151072 unique_id port 151072 remote_ip 10.8.0.226 151074 username barzegar 151074 mac 151074 bytes_out 0 151074 bytes_in 0 151074 station_ip 5.119.104.167 151074 port 280 151074 unique_id port 151074 remote_ip 10.8.1.174 151077 username tahmasebi 151077 mac 151077 bytes_out 0 151077 bytes_in 0 151077 station_ip 5.119.88.9 151077 port 557 151077 unique_id port 151081 username aminvpn 151081 mac 151081 bytes_out 0 151081 bytes_in 0 151081 station_ip 83.122.20.45 151081 port 557 151081 unique_id port 151081 remote_ip 10.8.0.14 151085 username aminvpn 151085 mac 151085 bytes_out 0 151085 bytes_in 0 151085 station_ip 5.119.13.65 151085 port 523 151085 unique_id port 151085 remote_ip 10.8.0.14 151090 username hashtadani4 151090 mac 151090 bytes_out 0 151090 bytes_in 0 151090 station_ip 5.202.61.148 151090 port 565 151090 unique_id port 151090 remote_ip 10.8.0.182 151093 username vanila 151093 mac 151093 bytes_out 0 151093 bytes_in 0 151093 station_ip 83.122.165.184 151093 port 553 151093 unique_id port 151093 remote_ip 10.8.0.178 151095 username barzegar 151033 mac 151033 bytes_out 10230 151033 bytes_in 12268 151033 station_ip 5.202.61.148 151033 port 265 151033 unique_id port 151033 remote_ip 10.8.1.142 151037 username barzegar 151037 mac 151037 bytes_out 0 151037 bytes_in 0 151037 station_ip 5.119.104.167 151037 port 265 151037 unique_id port 151037 remote_ip 10.8.1.174 151038 username hashtadani4 151038 mac 151038 bytes_out 0 151038 bytes_in 0 151038 station_ip 37.129.197.254 151038 port 565 151038 unique_id port 151038 remote_ip 10.8.0.182 151042 username vanila 151042 mac 151042 bytes_out 191261 151042 bytes_in 946172 151042 station_ip 83.122.165.184 151042 port 563 151042 unique_id port 151042 remote_ip 10.8.0.178 151044 username hashtadani4 151044 mac 151044 bytes_out 0 151044 bytes_in 0 151044 station_ip 37.129.197.254 151044 port 273 151044 unique_id port 151044 remote_ip 10.8.1.142 151045 username alihosseini1 151045 mac 151045 bytes_out 0 151045 bytes_in 0 151045 station_ip 5.120.79.183 151045 port 265 151045 unique_id port 151045 remote_ip 10.8.1.106 151046 username hashtadani4 151046 kill_reason Another user logged on this global unique id 151046 mac 151046 bytes_out 0 151046 bytes_in 0 151046 station_ip 5.202.61.148 151046 port 273 151046 unique_id port 151046 remote_ip 10.8.1.142 151050 username Mahin 151050 mac 151050 bytes_out 0 151050 bytes_in 0 151050 station_ip 5.120.157.199 151050 port 557 151050 unique_id port 151050 remote_ip 10.8.0.158 151051 username kalantary 151051 mac 151051 bytes_out 0 151051 bytes_in 0 151051 station_ip 83.122.176.120 151051 port 559 151051 unique_id port 151054 username hashtadani4 151054 kill_reason Another user logged on this global unique id 151054 mac 151054 bytes_out 0 151054 bytes_in 0 151054 station_ip 5.202.61.148 151054 port 273 151054 unique_id port 151057 username nilufarrajaei 151057 mac 151057 bytes_out 64300 151057 bytes_in 107419 151057 station_ip 83.123.61.192 151057 port 565 151057 unique_id port 151057 remote_ip 10.8.0.206 151058 username hashtadani4 151058 kill_reason Another user logged on this global unique id 151058 mac 151058 bytes_out 0 151058 bytes_in 0 151058 station_ip 5.202.61.148 151058 port 273 151058 unique_id port 151063 username khademi 151063 kill_reason Another user logged on this global unique id 151063 mac 151063 bytes_out 0 151063 bytes_in 0 151063 station_ip 83.122.214.152 151063 port 556 151063 unique_id port 151064 username barzegar 151064 mac 151064 bytes_out 2682 151064 bytes_in 5408 151064 station_ip 5.119.104.167 151064 port 280 151064 unique_id port 151064 remote_ip 10.8.1.174 151065 username forozandeh1 151065 mac 151065 bytes_out 0 151065 bytes_in 0 151065 station_ip 37.129.96.11 151065 port 564 151065 unique_id port 151065 remote_ip 10.8.0.130 151070 username hashtadani4 151070 kill_reason Another user logged on this global unique id 151070 mac 151070 bytes_out 0 151070 bytes_in 0 151070 station_ip 5.202.61.148 151070 port 273 151070 unique_id port 151076 username aminvpn 151076 mac 151076 bytes_out 0 151076 bytes_in 0 151076 station_ip 83.122.20.45 151076 port 565 151076 unique_id port 151076 remote_ip 10.8.0.14 151079 username aminvpn 151079 mac 151079 bytes_out 0 151079 bytes_in 0 151079 station_ip 5.119.13.65 151079 port 557 151079 unique_id port 151079 remote_ip 10.8.0.14 151080 username aminvpn 151080 mac 151080 bytes_out 0 151080 bytes_in 0 151080 station_ip 83.122.210.226 151080 port 553 151080 unique_id port 151080 remote_ip 10.8.0.14 151052 mac 151052 bytes_out 0 151052 bytes_in 0 151052 station_ip 5.202.24.27 151052 port 563 151052 unique_id port 151052 remote_ip 10.8.0.174 151053 username khademi 151053 kill_reason Another user logged on this global unique id 151053 mac 151053 bytes_out 0 151053 bytes_in 0 151053 station_ip 83.122.214.152 151053 port 556 151053 unique_id port 151053 remote_ip 10.8.0.10 151055 username vanila 151055 mac 151055 bytes_out 0 151055 bytes_in 0 151055 station_ip 83.122.165.184 151055 port 564 151055 unique_id port 151055 remote_ip 10.8.0.178 151059 username barzegar 151059 mac 151059 bytes_out 0 151059 bytes_in 0 151059 station_ip 5.119.104.167 151059 port 280 151059 unique_id port 151059 remote_ip 10.8.1.174 151060 username forozandeh1 151060 mac 151060 bytes_out 887575 151060 bytes_in 3431124 151060 station_ip 37.129.96.11 151060 port 566 151060 unique_id port 151060 remote_ip 10.8.0.130 151062 username tahmasebi 151062 kill_reason Another user logged on this global unique id 151062 mac 151062 bytes_out 0 151062 bytes_in 0 151062 station_ip 5.119.88.9 151062 port 557 151062 unique_id port 151062 remote_ip 10.8.0.42 151067 username aminvpn 151067 mac 151067 bytes_out 0 151067 bytes_in 0 151067 station_ip 5.119.13.65 151067 port 565 151067 unique_id port 151067 remote_ip 10.8.0.14 151071 username aminvpn 151071 mac 151071 bytes_out 0 151071 bytes_in 0 151071 station_ip 83.122.20.45 151071 port 566 151071 unique_id port 151071 remote_ip 10.8.0.14 151073 username aminvpn 151073 mac 151073 bytes_out 0 151073 bytes_in 0 151073 station_ip 83.122.210.226 151073 port 565 151073 unique_id port 151073 remote_ip 10.8.0.14 151075 username aminvpn 151075 mac 151075 bytes_out 0 151075 bytes_in 0 151075 station_ip 5.119.13.65 151075 port 553 151075 unique_id port 151075 remote_ip 10.8.0.14 151078 username aminvpn 151078 mac 151078 bytes_out 0 151078 bytes_in 0 151078 station_ip 83.122.210.226 151078 port 553 151078 unique_id port 151078 remote_ip 10.8.0.14 151082 username aminvpn 151082 mac 151082 bytes_out 0 151082 bytes_in 0 151082 station_ip 5.119.13.65 151082 port 553 151082 unique_id port 151082 remote_ip 10.8.0.14 151083 username alihosseini1 151083 mac 151083 bytes_out 128407 151083 bytes_in 871796 151083 station_ip 5.120.172.185 151083 port 523 151083 unique_id port 151083 remote_ip 10.8.0.166 151088 username alihosseini1 151088 mac 151088 bytes_out 0 151088 bytes_in 0 151088 station_ip 5.120.172.185 151088 port 523 151088 unique_id port 151088 remote_ip 10.8.0.166 151096 username meysam 151096 mac 151096 bytes_out 1953049 151096 bytes_in 30993505 151096 station_ip 188.158.49.96 151096 port 557 151096 unique_id port 151096 remote_ip 10.8.0.110 151100 username meysam 151100 mac 151100 bytes_out 1296512 151100 bytes_in 19136404 151100 station_ip 188.158.49.96 151100 port 553 151100 unique_id port 151100 remote_ip 10.8.0.110 151105 username alihosseini1 151105 mac 151105 bytes_out 0 151105 bytes_in 0 151105 station_ip 5.120.172.185 151105 port 523 151105 unique_id port 151105 remote_ip 10.8.0.166 151109 username hasanahmadi 151109 mac 151109 bytes_out 0 151109 bytes_in 0 151109 station_ip 83.122.115.252 151109 port 553 151109 unique_id port 151109 remote_ip 10.8.0.126 151119 username kalantary 151119 mac 151119 bytes_out 0 151119 bytes_in 0 151119 station_ip 83.122.206.76 151119 port 564 151119 unique_id port 151119 remote_ip 10.8.0.98 151084 username aminvpn 151084 mac 151084 bytes_out 0 151084 bytes_in 0 151084 station_ip 83.122.210.226 151084 port 557 151084 unique_id port 151084 remote_ip 10.8.0.14 151086 username hashtadani4 151086 mac 151086 bytes_out 0 151086 bytes_in 0 151086 station_ip 5.202.61.148 151086 port 273 151086 unique_id port 151087 username hashtadani4 151087 mac 151087 bytes_out 0 151087 bytes_in 0 151087 station_ip 5.202.61.148 151087 port 566 151087 unique_id port 151087 remote_ip 10.8.0.182 151089 username aminvpn 151089 mac 151089 bytes_out 0 151089 bytes_in 0 151089 station_ip 83.122.210.226 151089 port 565 151089 unique_id port 151089 remote_ip 10.8.0.14 151091 username hamid.e 151091 unique_id port 151091 terminate_cause NAS-Request 151091 bytes_out 8623101 151091 bytes_in 117214117 151091 station_ip 37.27.22.60 151091 port 15731077 151091 nas_port_type Virtual 151091 remote_ip 5.5.5.255 151092 username aminvpn 151092 mac 151092 bytes_out 0 151092 bytes_in 0 151092 station_ip 83.122.20.45 151092 port 523 151092 unique_id port 151092 remote_ip 10.8.0.14 151094 username hashtadani4 151094 mac 151094 bytes_out 0 151094 bytes_in 0 151094 station_ip 5.202.61.148 151094 port 523 151094 unique_id port 151094 remote_ip 10.8.0.182 151097 username aminvpn 151097 mac 151097 bytes_out 0 151097 bytes_in 0 151097 station_ip 83.122.210.226 151097 port 565 151097 unique_id port 151097 remote_ip 10.8.0.14 151101 username kamali2 151101 mac 151101 bytes_out 228538 151101 bytes_in 1404288 151101 station_ip 5.120.122.230 151101 port 564 151101 unique_id port 151101 remote_ip 10.8.0.214 151102 username hashtadani4 151102 mac 151102 bytes_out 8362 151102 bytes_in 10182 151102 station_ip 5.202.61.148 151102 port 273 151102 unique_id port 151102 remote_ip 10.8.1.142 151104 username hashtadani4 151104 mac 151104 bytes_out 0 151104 bytes_in 0 151104 station_ip 5.202.61.148 151104 port 564 151104 unique_id port 151104 remote_ip 10.8.0.182 151106 username aminvpn 151106 mac 151106 bytes_out 6111 151106 bytes_in 8663 151106 station_ip 83.122.20.45 151106 port 553 151106 unique_id port 151106 remote_ip 10.8.0.14 151111 username aminvpn 151111 unique_id port 151111 terminate_cause User-Request 151111 bytes_out 508952 151111 bytes_in 2927003 151111 station_ip 109.125.128.116 151111 port 15731083 151111 nas_port_type Virtual 151111 remote_ip 5.5.5.255 151112 username barzegar 151112 mac 151112 bytes_out 0 151112 bytes_in 0 151112 station_ip 5.119.104.167 151112 port 273 151112 unique_id port 151112 remote_ip 10.8.1.174 151113 username aminvpn 151113 mac 151113 bytes_out 0 151113 bytes_in 0 151113 station_ip 83.122.20.45 151113 port 553 151113 unique_id port 151113 remote_ip 10.8.0.14 151115 username nilufarrajaei 151115 mac 151115 bytes_out 0 151115 bytes_in 0 151115 station_ip 83.123.61.192 151115 port 265 151115 unique_id port 151115 remote_ip 10.8.1.166 151116 username alipour 151116 mac 151116 bytes_out 19185 151116 bytes_in 26764 151116 station_ip 37.129.13.177 151116 port 553 151116 unique_id port 151116 remote_ip 10.8.0.102 151121 username Mahin 151121 mac 151121 bytes_out 3662361 151121 bytes_in 40064399 151121 station_ip 5.120.157.199 151121 port 567 151121 unique_id port 151121 remote_ip 10.8.0.158 151123 username aminvpn 151123 mac 151123 bytes_out 0 151123 bytes_in 0 151123 station_ip 83.122.20.45 151123 port 536 151123 unique_id port 151123 remote_ip 10.8.0.14 151095 mac 151095 bytes_out 0 151095 bytes_in 0 151095 station_ip 5.119.104.167 151095 port 273 151095 unique_id port 151095 remote_ip 10.8.1.174 151098 username aminvpn 151098 mac 151098 bytes_out 0 151098 bytes_in 0 151098 station_ip 83.122.20.45 151098 port 523 151098 unique_id port 151098 remote_ip 10.8.0.14 151099 username godarzi 151099 kill_reason Another user logged on this global unique id 151099 mac 151099 bytes_out 0 151099 bytes_in 0 151099 station_ip 5.202.24.27 151099 port 563 151099 unique_id port 151103 username aminvpn 151103 mac 151103 bytes_out 0 151103 bytes_in 0 151103 station_ip 83.122.210.226 151103 port 557 151103 unique_id port 151103 remote_ip 10.8.0.14 151107 username malekpoir 151107 kill_reason Another user logged on this global unique id 151107 mac 151107 bytes_out 0 151107 bytes_in 0 151107 station_ip 5.120.144.2 151107 port 551 151107 unique_id port 151108 username nilufarrajaei 151108 mac 151108 bytes_out 0 151108 bytes_in 0 151108 station_ip 83.123.61.192 151108 port 265 151108 unique_id port 151108 remote_ip 10.8.1.166 151110 username aminvpn 151110 mac 151110 bytes_out 0 151110 bytes_in 0 151110 station_ip 83.122.210.226 151110 port 564 151110 unique_id port 151110 remote_ip 10.8.0.14 151114 username alipour 151114 mac 151114 bytes_out 2642673 151114 bytes_in 34637016 151114 station_ip 37.129.13.177 151114 port 536 151114 unique_id port 151114 remote_ip 10.8.0.102 151117 username godarzi 151117 mac 151117 bytes_out 0 151117 bytes_in 0 151117 station_ip 5.202.24.27 151117 port 563 151117 unique_id port 151118 username aminvpn 151118 mac 151118 bytes_out 0 151118 bytes_in 0 151118 station_ip 83.122.210.226 151118 port 565 151118 unique_id port 151118 remote_ip 10.8.0.14 151120 username forozandeh1 151120 mac 151120 bytes_out 1089071 151120 bytes_in 12928298 151120 station_ip 83.122.239.236 151120 port 523 151120 unique_id port 151120 remote_ip 10.8.0.130 151122 username hasanahmadi 151122 mac 151122 bytes_out 0 151122 bytes_in 0 151122 station_ip 83.122.115.252 151122 port 563 151122 unique_id port 151122 remote_ip 10.8.0.126 151130 username aminvpn 151130 mac 151130 bytes_out 51270 151130 bytes_in 247870 151130 station_ip 83.122.210.226 151130 port 564 151130 unique_id port 151130 remote_ip 10.8.0.14 151135 username hashtadani4 151135 mac 151135 bytes_out 0 151135 bytes_in 0 151135 station_ip 113.203.80.30 151135 port 563 151135 unique_id port 151135 remote_ip 10.8.0.182 151136 username hashtadani4 151136 mac 151136 bytes_out 0 151136 bytes_in 0 151136 station_ip 113.203.80.30 151136 port 563 151136 unique_id port 151136 remote_ip 10.8.0.182 151139 username hashtadani4 151139 mac 151139 bytes_out 0 151139 bytes_in 0 151139 station_ip 113.203.80.30 151139 port 564 151139 unique_id port 151139 remote_ip 10.8.0.182 151140 username aminvpn 151140 mac 151140 bytes_out 0 151140 bytes_in 0 151140 station_ip 83.122.20.45 151140 port 563 151140 unique_id port 151140 remote_ip 10.8.0.14 151143 username fezealinaghi 151143 kill_reason Another user logged on this global unique id 151143 mac 151143 bytes_out 0 151143 bytes_in 0 151143 station_ip 113.203.63.128 151143 port 553 151143 unique_id port 151143 remote_ip 10.8.0.78 151146 username aminvpn 151146 mac 151146 bytes_out 15551 151146 bytes_in 38690 151146 station_ip 83.122.210.226 151146 port 565 151146 unique_id port 151146 remote_ip 10.8.0.14 151151 username hashtadani4 151151 mac 151124 username hasanahmadi 151124 mac 151124 bytes_out 3770 151124 bytes_in 8858 151124 station_ip 83.122.115.252 151124 port 563 151124 unique_id port 151124 remote_ip 10.8.0.126 151126 username hashtadani4 151126 mac 151126 bytes_out 0 151126 bytes_in 0 151126 station_ip 113.203.80.30 151126 port 273 151126 unique_id port 151126 remote_ip 10.8.1.142 151128 username Mahin 151128 mac 151128 bytes_out 0 151128 bytes_in 0 151128 station_ip 5.120.157.199 151128 port 566 151128 unique_id port 151128 remote_ip 10.8.0.158 151129 username hashtadani4 151129 mac 151129 bytes_out 0 151129 bytes_in 0 151129 station_ip 113.203.80.30 151129 port 565 151129 unique_id port 151129 remote_ip 10.8.0.182 151131 username aminvpn 151131 mac 151131 bytes_out 0 151131 bytes_in 0 151131 station_ip 83.122.20.45 151131 port 565 151131 unique_id port 151131 remote_ip 10.8.0.14 151132 username barzegar 151132 mac 151132 bytes_out 0 151132 bytes_in 0 151132 station_ip 5.119.104.167 151132 port 273 151132 unique_id port 151132 remote_ip 10.8.1.174 151134 username mohsenaskari 151134 mac 151134 bytes_out 0 151134 bytes_in 0 151134 station_ip 46.225.211.126 151134 port 563 151134 unique_id port 151134 remote_ip 10.8.0.202 151137 username mohammadjavad 151137 mac 151137 bytes_out 59763 151137 bytes_in 166367 151137 station_ip 37.129.153.153 151137 port 565 151137 unique_id port 151137 remote_ip 10.8.0.142 151138 username aminvpn 151138 mac 151138 bytes_out 12041 151138 bytes_in 23779 151138 station_ip 83.122.210.226 151138 port 564 151138 unique_id port 151138 remote_ip 10.8.0.14 151142 username mohammadjavad 151142 mac 151142 bytes_out 0 151142 bytes_in 0 151142 station_ip 37.129.153.153 151142 port 564 151142 unique_id port 151142 remote_ip 10.8.0.142 151145 username hashtadani4 151145 mac 151145 bytes_out 0 151145 bytes_in 0 151145 station_ip 113.203.80.30 151145 port 563 151145 unique_id port 151145 remote_ip 10.8.0.182 151147 username mohammadjavad 151147 mac 151147 bytes_out 0 151147 bytes_in 0 151147 station_ip 37.129.153.153 151147 port 536 151147 unique_id port 151147 remote_ip 10.8.0.142 151149 username hashtadani4 151149 mac 151149 bytes_out 0 151149 bytes_in 0 151149 station_ip 113.203.80.30 151149 port 564 151149 unique_id port 151149 remote_ip 10.8.0.182 151150 username aminvpn 151150 mac 151150 bytes_out 0 151150 bytes_in 0 151150 station_ip 83.122.20.45 151150 port 568 151150 unique_id port 151150 remote_ip 10.8.0.14 151153 username Mahin 151153 mac 151153 bytes_out 157450 151153 bytes_in 682220 151153 station_ip 5.120.157.199 151153 port 523 151153 unique_id port 151153 remote_ip 10.8.0.158 151157 username aminvpn 151157 mac 151157 bytes_out 7032 151157 bytes_in 11059 151157 station_ip 83.122.210.226 151157 port 523 151157 unique_id port 151157 remote_ip 10.8.0.14 151159 username barzegar 151159 mac 151159 bytes_out 0 151159 bytes_in 0 151159 station_ip 5.119.104.167 151159 port 273 151159 unique_id port 151159 remote_ip 10.8.1.174 151161 username alipour 151161 mac 151161 bytes_out 299126 151161 bytes_in 2942723 151161 station_ip 37.129.13.177 151161 port 265 151161 unique_id port 151161 remote_ip 10.8.1.50 151170 username godarzi 151170 mac 151170 bytes_out 1026301 151170 bytes_in 15361829 151170 station_ip 5.202.24.27 151170 port 564 151170 unique_id port 151170 remote_ip 10.8.0.174 151175 username sabaghnezhad 151175 mac 151125 username hashtadani4 151125 mac 151125 bytes_out 0 151125 bytes_in 0 151125 station_ip 113.203.80.30 151125 port 273 151125 unique_id port 151125 remote_ip 10.8.1.142 151127 username Mahin 151127 mac 151127 bytes_out 4020 151127 bytes_in 5932 151127 station_ip 5.120.157.199 151127 port 523 151127 unique_id port 151127 remote_ip 10.8.0.158 151133 username alipour 151133 mac 151133 bytes_out 0 151133 bytes_in 0 151133 station_ip 37.129.13.177 151133 port 265 151133 unique_id port 151133 remote_ip 10.8.1.50 151141 username kalantary 151141 mac 151141 bytes_out 934130 151141 bytes_in 5325173 151141 station_ip 83.122.206.76 151141 port 536 151141 unique_id port 151141 remote_ip 10.8.0.98 151144 username hashtadani4 151144 mac 151144 bytes_out 0 151144 bytes_in 0 151144 station_ip 113.203.80.30 151144 port 563 151144 unique_id port 151144 remote_ip 10.8.0.182 151148 username meysam 151148 kill_reason Another user logged on this global unique id 151148 mac 151148 bytes_out 0 151148 bytes_in 0 151148 station_ip 188.158.49.96 151148 port 566 151148 unique_id port 151148 remote_ip 10.8.0.110 151152 username aminvpn 151152 mac 151152 bytes_out 0 151152 bytes_in 0 151152 station_ip 83.122.210.226 151152 port 536 151152 unique_id port 151152 remote_ip 10.8.0.14 151154 username Mahin 151154 mac 151154 bytes_out 0 151154 bytes_in 0 151154 station_ip 5.120.157.199 151154 port 536 151154 unique_id port 151154 remote_ip 10.8.0.158 151156 username aminvpn 151156 mac 151156 bytes_out 0 151156 bytes_in 0 151156 station_ip 83.122.20.45 151156 port 564 151156 unique_id port 151156 remote_ip 10.8.0.14 151162 username nilufarrajaei 151162 mac 151162 bytes_out 0 151162 bytes_in 0 151162 station_ip 83.123.61.192 151162 port 280 151162 unique_id port 151162 remote_ip 10.8.1.166 151166 username aminvpn 151166 mac 151166 bytes_out 0 151166 bytes_in 0 151166 station_ip 83.122.210.226 151166 port 523 151166 unique_id port 151166 remote_ip 10.8.0.14 151169 username hashtadani4 151169 mac 151169 bytes_out 0 151169 bytes_in 0 151169 station_ip 113.203.80.30 151169 port 536 151169 unique_id port 151169 remote_ip 10.8.0.182 151171 username barzegar 151171 mac 151171 bytes_out 0 151171 bytes_in 0 151171 station_ip 5.119.104.167 151171 port 536 151171 unique_id port 151171 remote_ip 10.8.0.234 151177 username godarzi 151177 mac 151177 bytes_out 330218 151177 bytes_in 5687415 151177 station_ip 5.202.24.27 151177 port 569 151177 unique_id port 151177 remote_ip 10.8.0.174 151182 username hashtadani4 151182 mac 151182 bytes_out 1085041 151182 bytes_in 17815629 151182 station_ip 113.203.80.30 151182 port 568 151182 unique_id port 151182 remote_ip 10.8.0.182 151183 username hashtadani4 151183 mac 151183 bytes_out 0 151183 bytes_in 0 151183 station_ip 113.203.80.30 151183 port 564 151183 unique_id port 151183 remote_ip 10.8.0.182 151187 username hashtadani4 151187 mac 151187 bytes_out 0 151187 bytes_in 0 151187 station_ip 113.203.80.30 151187 port 563 151187 unique_id port 151187 remote_ip 10.8.0.182 151190 username mohammadjavad 151190 mac 151190 bytes_out 23288 151190 bytes_in 14072 151190 station_ip 37.129.153.153 151190 port 564 151190 unique_id port 151190 remote_ip 10.8.0.142 151191 username Mahin 151191 mac 151191 bytes_out 72210 151191 bytes_in 134018 151191 station_ip 5.120.157.199 151191 port 565 151191 unique_id port 151191 remote_ip 10.8.0.158 151151 bytes_out 0 151151 bytes_in 0 151151 station_ip 113.203.80.30 151151 port 564 151151 unique_id port 151151 remote_ip 10.8.0.182 151155 username hashtadani4 151155 mac 151155 bytes_out 0 151155 bytes_in 0 151155 station_ip 113.203.80.30 151155 port 523 151155 unique_id port 151155 remote_ip 10.8.0.182 151158 username meysam 151158 mac 151158 bytes_out 0 151158 bytes_in 0 151158 station_ip 188.158.49.96 151158 port 566 151158 unique_id port 151160 username aminvpn 151160 mac 151160 bytes_out 0 151160 bytes_in 0 151160 station_ip 83.122.20.45 151160 port 536 151160 unique_id port 151160 remote_ip 10.8.0.14 151163 username hashtadani4 151163 mac 151163 bytes_out 0 151163 bytes_in 0 151163 station_ip 113.203.80.30 151163 port 536 151163 unique_id port 151163 remote_ip 10.8.0.182 151164 username hashtadani4 151164 mac 151164 bytes_out 0 151164 bytes_in 0 151164 station_ip 113.203.80.30 151164 port 536 151164 unique_id port 151164 remote_ip 10.8.0.182 151165 username hashtadani4 151165 mac 151165 bytes_out 0 151165 bytes_in 0 151165 station_ip 113.203.80.30 151165 port 536 151165 unique_id port 151165 remote_ip 10.8.0.182 151167 username fezealinaghi 151167 kill_reason Another user logged on this global unique id 151167 mac 151167 bytes_out 0 151167 bytes_in 0 151167 station_ip 113.203.63.128 151167 port 553 151167 unique_id port 151168 username aminvpn 151168 mac 151168 bytes_out 0 151168 bytes_in 0 151168 station_ip 83.122.20.45 151168 port 536 151168 unique_id port 151168 remote_ip 10.8.0.14 151172 username alipour 151172 mac 151172 bytes_out 0 151172 bytes_in 0 151172 station_ip 37.129.13.177 151172 port 265 151172 unique_id port 151172 remote_ip 10.8.1.50 151173 username aminvpn 151173 mac 151173 bytes_out 8694 151173 bytes_in 14720 151173 station_ip 83.122.210.226 151173 port 523 151173 unique_id port 151173 remote_ip 10.8.0.14 151174 username aminvpn 151174 mac 151174 bytes_out 6045 151174 bytes_in 13564 151174 station_ip 83.122.20.45 151174 port 568 151174 unique_id port 151174 remote_ip 10.8.0.14 151176 username vanila 151176 mac 151176 bytes_out 1806445 151176 bytes_in 14022289 151176 station_ip 83.122.165.184 151176 port 567 151176 unique_id port 151176 remote_ip 10.8.0.178 151178 username meysam 151178 mac 151178 bytes_out 1390186 151178 bytes_in 21888042 151178 station_ip 188.158.49.96 151178 port 564 151178 unique_id port 151178 remote_ip 10.8.0.110 151180 username aminvpn 151180 mac 151180 bytes_out 7772 151180 bytes_in 8480 151180 station_ip 83.122.210.226 151180 port 523 151180 unique_id port 151180 remote_ip 10.8.0.14 151185 username aminvpn 151185 mac 151185 bytes_out 0 151185 bytes_in 0 151185 station_ip 83.122.20.45 151185 port 564 151185 unique_id port 151185 remote_ip 10.8.0.14 151188 username hashtadani4 151188 mac 151188 bytes_out 0 151188 bytes_in 0 151188 station_ip 113.203.80.30 151188 port 563 151188 unique_id port 151188 remote_ip 10.8.0.182 151189 username mostafa_es78 151189 unique_id port 151189 terminate_cause User-Request 151189 bytes_out 508790 151189 bytes_in 3900453 151189 station_ip 5.126.132.82 151189 port 15731085 151189 nas_port_type Virtual 151189 remote_ip 5.5.5.123 151193 username Mahin 151193 mac 151193 bytes_out 0 151193 bytes_in 0 151193 station_ip 5.120.157.199 151193 port 564 151193 unique_id port 151193 remote_ip 10.8.0.158 151197 username barzegar 151197 mac 151197 bytes_out 0 151175 bytes_out 0 151175 bytes_in 0 151175 station_ip 37.129.9.137 151175 port 570 151175 unique_id port 151175 remote_ip 10.8.0.186 151179 username forozandeh1 151179 mac 151179 bytes_out 772425 151179 bytes_in 10379740 151179 station_ip 83.122.221.225 151179 port 566 151179 unique_id port 151179 remote_ip 10.8.0.130 151181 username aminvpn 151181 mac 151181 bytes_out 0 151181 bytes_in 0 151181 station_ip 83.122.20.45 151181 port 564 151181 unique_id port 151181 remote_ip 10.8.0.14 151184 username aminvpn 151184 mac 151184 bytes_out 0 151184 bytes_in 0 151184 station_ip 83.122.210.226 151184 port 523 151184 unique_id port 151184 remote_ip 10.8.0.14 151186 username moradi 151186 mac 151186 bytes_out 467023 151186 bytes_in 6526226 151186 station_ip 46.225.210.41 151186 port 563 151186 unique_id port 151186 remote_ip 10.8.0.226 151192 username aminvpn 151192 mac 151192 bytes_out 7825 151192 bytes_in 11942 151192 station_ip 83.122.210.226 151192 port 523 151192 unique_id port 151192 remote_ip 10.8.0.14 151195 username Mahin 151195 mac 151195 bytes_out 0 151195 bytes_in 0 151195 station_ip 5.120.157.199 151195 port 523 151195 unique_id port 151195 remote_ip 10.8.0.158 151198 username hashtadani4 151198 mac 151198 bytes_out 0 151198 bytes_in 0 151198 station_ip 113.203.80.30 151198 port 523 151198 unique_id port 151198 remote_ip 10.8.0.182 151201 username hashtadani4 151201 mac 151201 bytes_out 0 151201 bytes_in 0 151201 station_ip 113.203.80.30 151201 port 281 151201 unique_id port 151201 remote_ip 10.8.1.142 151204 username hashtadani4 151204 kill_reason Maximum number of concurrent logins reached 151204 mac 151204 bytes_out 0 151204 bytes_in 0 151204 station_ip 113.203.80.30 151204 port 281 151204 unique_id port 151206 username hashtadani4 151206 kill_reason Maximum check online fails reached 151206 mac 151206 bytes_out 0 151206 bytes_in 0 151206 station_ip 113.203.80.30 151206 port 523 151206 unique_id port 151208 username malekpoir 151208 kill_reason Another user logged on this global unique id 151208 mac 151208 bytes_out 0 151208 bytes_in 0 151208 station_ip 5.120.144.2 151208 port 551 151208 unique_id port 151210 username barzegar 151210 mac 151210 bytes_out 0 151210 bytes_in 0 151210 station_ip 5.119.104.167 151210 port 563 151210 unique_id port 151210 remote_ip 10.8.0.234 151212 username barzegar 151212 mac 151212 bytes_out 0 151212 bytes_in 0 151212 station_ip 5.119.104.167 151212 port 568 151212 unique_id port 151212 remote_ip 10.8.0.234 151214 username barzegar 151214 mac 151214 bytes_out 2527 151214 bytes_in 4759 151214 station_ip 5.119.104.167 151214 port 569 151214 unique_id port 151214 remote_ip 10.8.0.234 151218 username moradi 151218 mac 151218 bytes_out 1498450 151218 bytes_in 32010411 151218 station_ip 113.203.63.107 151218 port 564 151218 unique_id port 151218 remote_ip 10.8.0.226 151220 username Mahin 151220 mac 151220 bytes_out 0 151220 bytes_in 0 151220 station_ip 5.120.157.199 151220 port 566 151220 unique_id port 151220 remote_ip 10.8.0.158 151222 username kalantary 151222 mac 151222 bytes_out 479981 151222 bytes_in 2537148 151222 station_ip 83.122.137.36 151222 port 567 151222 unique_id port 151222 remote_ip 10.8.0.98 151223 username alihosseini1 151223 mac 151223 bytes_out 27439 151223 bytes_in 111206 151223 station_ip 5.119.184.117 151223 port 557 151223 unique_id port 151223 remote_ip 10.8.0.166 151227 username nilufarrajaei 151227 mac 151194 username hashtadani4 151194 mac 151194 bytes_out 0 151194 bytes_in 0 151194 station_ip 113.203.80.30 151194 port 566 151194 unique_id port 151194 remote_ip 10.8.0.182 151196 username godarzi 151196 mac 151196 bytes_out 16647 151196 bytes_in 24199 151196 station_ip 5.202.24.27 151196 port 563 151196 unique_id port 151196 remote_ip 10.8.0.174 151202 username alipour 151202 mac 151202 bytes_out 0 151202 bytes_in 0 151202 station_ip 37.129.13.177 151202 port 536 151202 unique_id port 151202 remote_ip 10.8.0.102 151213 username meysam 151213 mac 151213 bytes_out 649067 151213 bytes_in 11055466 151213 station_ip 188.158.49.96 151213 port 567 151213 unique_id port 151213 remote_ip 10.8.0.110 151228 username alipour 151228 mac 151228 bytes_out 518048 151228 bytes_in 5962353 151228 station_ip 37.129.13.177 151228 port 565 151228 unique_id port 151228 remote_ip 10.8.0.102 151229 username meysam 151229 mac 151229 bytes_out 2044659 151229 bytes_in 32404027 151229 station_ip 188.158.49.96 151229 port 566 151229 unique_id port 151229 remote_ip 10.8.0.110 151234 username hashtadani4 151234 mac 151234 bytes_out 0 151234 bytes_in 0 151234 station_ip 113.203.80.30 151234 port 565 151234 unique_id port 151234 remote_ip 10.8.0.182 151236 username moradi 151236 mac 151236 bytes_out 0 151236 bytes_in 0 151236 station_ip 113.203.63.107 151236 port 281 151236 unique_id port 151236 remote_ip 10.8.1.202 151238 username hashtadani4 151238 mac 151238 bytes_out 10629 151238 bytes_in 17545 151238 station_ip 113.203.80.30 151238 port 566 151238 unique_id port 151238 remote_ip 10.8.0.182 151244 username hashtadani4 151244 mac 151244 bytes_out 0 151244 bytes_in 0 151244 station_ip 113.203.80.30 151244 port 273 151244 unique_id port 151244 remote_ip 10.8.1.142 151247 username hashtadani4 151247 mac 151247 bytes_out 0 151247 bytes_in 0 151247 station_ip 113.203.80.30 151247 port 555 151247 unique_id port 151247 remote_ip 10.8.0.182 151248 username hashtadani4 151248 mac 151248 bytes_out 0 151248 bytes_in 0 151248 station_ip 113.203.80.30 151248 port 555 151248 unique_id port 151248 remote_ip 10.8.0.182 151250 username hashtadani4 151250 mac 151250 bytes_out 0 151250 bytes_in 0 151250 station_ip 113.203.80.30 151250 port 555 151250 unique_id port 151250 remote_ip 10.8.0.182 151253 username yarmohamadi 151253 kill_reason Another user logged on this global unique id 151253 mac 151253 bytes_out 0 151253 bytes_in 0 151253 station_ip 5.120.166.191 151253 port 564 151253 unique_id port 151254 username mosi 151254 mac 151254 bytes_out 2005 151254 bytes_in 3951 151254 station_ip 151.235.78.77 151254 port 568 151254 unique_id port 151254 remote_ip 10.8.0.138 151256 username kalantary 151256 mac 151256 bytes_out 0 151256 bytes_in 0 151256 station_ip 83.122.137.36 151256 port 555 151256 unique_id port 151256 remote_ip 10.8.0.98 151262 username barzegar 151262 mac 151262 bytes_out 0 151262 bytes_in 0 151262 station_ip 5.119.104.167 151262 port 280 151262 unique_id port 151262 remote_ip 10.8.1.174 151264 username hashtadani4 151264 mac 151264 bytes_out 0 151264 bytes_in 0 151264 station_ip 113.203.80.30 151264 port 566 151264 unique_id port 151264 remote_ip 10.8.0.182 151266 username barzegar 151266 mac 151266 bytes_out 5380 151266 bytes_in 12408 151266 station_ip 5.119.104.167 151266 port 273 151266 unique_id port 151266 remote_ip 10.8.1.174 151272 username fezealinaghi 151197 bytes_in 0 151197 station_ip 5.119.104.167 151197 port 564 151197 unique_id port 151197 remote_ip 10.8.0.234 151199 username hashtadani4 151199 mac 151199 bytes_out 0 151199 bytes_in 0 151199 station_ip 113.203.80.30 151199 port 280 151199 unique_id port 151199 remote_ip 10.8.1.142 151200 username hashtadani4 151200 mac 151200 bytes_out 0 151200 bytes_in 0 151200 station_ip 113.203.80.30 151200 port 281 151200 unique_id port 151200 remote_ip 10.8.1.142 151203 username aminvpn 151203 mac 151203 bytes_out 0 151203 bytes_in 0 151203 station_ip 83.122.210.226 151203 port 265 151203 unique_id port 151203 remote_ip 10.8.1.6 151205 username hashtadani4 151205 kill_reason Maximum check online fails reached 151205 mac 151205 bytes_out 0 151205 bytes_in 0 151205 station_ip 113.203.80.30 151205 port 536 151205 unique_id port 151207 username nilufarrajaei 151207 kill_reason Another user logged on this global unique id 151207 mac 151207 bytes_out 0 151207 bytes_in 0 151207 station_ip 83.123.61.192 151207 port 273 151207 unique_id port 151207 remote_ip 10.8.1.166 151209 username mohammadjavad 151209 mac 151209 bytes_out 106944 151209 bytes_in 281069 151209 station_ip 37.129.255.41 151209 port 563 151209 unique_id port 151209 remote_ip 10.8.0.142 151211 username barzegar 151211 mac 151211 bytes_out 0 151211 bytes_in 0 151211 station_ip 5.119.104.167 151211 port 568 151211 unique_id port 151211 remote_ip 10.8.0.234 151215 username forozandeh1 151215 mac 151215 bytes_out 102040 151215 bytes_in 259698 151215 station_ip 83.122.41.138 151215 port 568 151215 unique_id port 151215 remote_ip 10.8.0.130 151216 username kamali2 151216 mac 151216 bytes_out 426338 151216 bytes_in 1016321 151216 station_ip 5.120.122.230 151216 port 557 151216 unique_id port 151216 remote_ip 10.8.0.214 151217 username barzegar 151217 mac 151217 bytes_out 5466 151217 bytes_in 8010 151217 station_ip 5.119.104.167 151217 port 568 151217 unique_id port 151217 remote_ip 10.8.0.234 151219 username aminvpn 151219 mac 151219 bytes_out 180034 151219 bytes_in 863667 151219 station_ip 83.122.20.45 151219 port 565 151219 unique_id port 151219 remote_ip 10.8.0.14 151221 username alipour 151221 mac 151221 bytes_out 815441 151221 bytes_in 8344326 151221 station_ip 37.129.13.177 151221 port 280 151221 unique_id port 151221 remote_ip 10.8.1.50 151224 username hamidsalari 151224 mac 151224 bytes_out 0 151224 bytes_in 0 151224 station_ip 5.119.217.42 151224 port 555 151224 unique_id port 151225 username nilufarrajaei 151225 mac 151225 bytes_out 0 151225 bytes_in 0 151225 station_ip 83.123.61.192 151225 port 273 151225 unique_id port 151226 username malekpoir 151226 kill_reason Another user logged on this global unique id 151226 mac 151226 bytes_out 0 151226 bytes_in 0 151226 station_ip 5.120.144.2 151226 port 551 151226 unique_id port 151230 username hosseine 151230 kill_reason Another user logged on this global unique id 151230 mac 151230 bytes_out 0 151230 bytes_in 0 151230 station_ip 37.129.2.226 151230 port 561 151230 unique_id port 151230 remote_ip 10.8.0.238 151233 username alipour 151233 mac 151233 bytes_out 0 151233 bytes_in 0 151233 station_ip 37.129.13.177 151233 port 280 151233 unique_id port 151233 remote_ip 10.8.1.50 151235 username hashtadani4 151235 mac 151235 bytes_out 0 151235 bytes_in 0 151235 station_ip 113.203.80.30 151235 port 566 151235 unique_id port 151235 remote_ip 10.8.0.182 151237 username barzegar 151237 mac 151227 bytes_out 23109 151227 bytes_in 36913 151227 station_ip 83.123.61.192 151227 port 273 151227 unique_id port 151227 remote_ip 10.8.1.166 151231 username kordestani 151231 mac 151231 bytes_out 0 151231 bytes_in 0 151231 station_ip 151.235.99.55 151231 port 559 151231 unique_id port 151231 remote_ip 10.8.0.134 151232 username hashtadani4 151232 mac 151232 bytes_out 132039 151232 bytes_in 2218134 151232 station_ip 113.203.80.30 151232 port 565 151232 unique_id port 151232 remote_ip 10.8.0.182 151239 username hashtadani4 151239 mac 151239 bytes_out 0 151239 bytes_in 0 151239 station_ip 113.203.80.30 151239 port 280 151239 unique_id port 151239 remote_ip 10.8.1.142 151241 username hashtadani4 151241 mac 151241 bytes_out 0 151241 bytes_in 0 151241 station_ip 113.203.80.30 151241 port 280 151241 unique_id port 151241 remote_ip 10.8.1.142 151251 username hashtadani4 151251 mac 151251 bytes_out 0 151251 bytes_in 0 151251 station_ip 113.203.80.30 151251 port 555 151251 unique_id port 151251 remote_ip 10.8.0.182 151252 username hashtadani4 151252 mac 151252 bytes_out 0 151252 bytes_in 0 151252 station_ip 113.203.80.30 151252 port 569 151252 unique_id port 151252 remote_ip 10.8.0.182 151255 username hashtadani4 151255 mac 151255 bytes_out 0 151255 bytes_in 0 151255 station_ip 113.203.80.30 151255 port 568 151255 unique_id port 151255 remote_ip 10.8.0.182 151257 username hashtadani4 151257 mac 151257 bytes_out 0 151257 bytes_in 0 151257 station_ip 113.203.80.30 151257 port 273 151257 unique_id port 151257 remote_ip 10.8.1.142 151258 username hashtadani4 151258 kill_reason Maximum check online fails reached 151258 mac 151258 bytes_out 0 151258 bytes_in 0 151258 station_ip 113.203.80.30 151258 port 568 151258 unique_id port 151260 username saeed9658 151260 mac 151260 bytes_out 0 151260 bytes_in 0 151260 station_ip 5.120.158.111 151260 port 566 151260 unique_id port 151260 remote_ip 10.8.0.62 151261 username hashtadani4 151261 kill_reason Maximum check online fails reached 151261 mac 151261 bytes_out 0 151261 bytes_in 0 151261 station_ip 113.203.80.30 151261 port 555 151261 unique_id port 151268 username meysam 151268 mac 151268 bytes_out 0 151268 bytes_in 0 151268 station_ip 188.158.49.96 151268 port 569 151268 unique_id port 151268 remote_ip 10.8.0.110 151269 username barzegar 151269 mac 151269 bytes_out 0 151269 bytes_in 0 151269 station_ip 5.119.104.167 151269 port 566 151269 unique_id port 151269 remote_ip 10.8.0.234 151274 username barzegar 151274 mac 151274 bytes_out 0 151274 bytes_in 0 151274 station_ip 5.119.104.167 151274 port 571 151274 unique_id port 151274 remote_ip 10.8.0.234 151276 username godarzi 151276 kill_reason Another user logged on this global unique id 151276 mac 151276 bytes_out 0 151276 bytes_in 0 151276 station_ip 5.202.24.27 151276 port 563 151276 unique_id port 151279 username fezealinaghi 151279 kill_reason Another user logged on this global unique id 151279 mac 151279 bytes_out 0 151279 bytes_in 0 151279 station_ip 113.203.63.128 151279 port 553 151279 unique_id port 151280 username hashtadani4 151280 mac 151280 bytes_out 0 151280 bytes_in 0 151280 station_ip 113.203.80.30 151280 port 273 151280 unique_id port 151280 remote_ip 10.8.1.142 151282 username hashtadani4 151282 mac 151282 bytes_out 0 151282 bytes_in 0 151282 station_ip 113.203.80.30 151282 port 273 151282 unique_id port 151282 remote_ip 10.8.1.142 151283 username khademi 151283 mac 151237 bytes_out 45564 151237 bytes_in 174286 151237 station_ip 5.119.104.167 151237 port 555 151237 unique_id port 151237 remote_ip 10.8.0.234 151240 username yarmohamadi 151240 kill_reason Another user logged on this global unique id 151240 mac 151240 bytes_out 0 151240 bytes_in 0 151240 station_ip 5.120.166.191 151240 port 564 151240 unique_id port 151240 remote_ip 10.8.0.150 151242 username barzegar 151242 mac 151242 bytes_out 0 151242 bytes_in 0 151242 station_ip 5.119.104.167 151242 port 273 151242 unique_id port 151242 remote_ip 10.8.1.174 151243 username hashtadani4 151243 kill_reason Maximum check online fails reached 151243 mac 151243 bytes_out 0 151243 bytes_in 0 151243 station_ip 113.203.80.30 151243 port 567 151243 unique_id port 151245 username vanila 151245 mac 151245 bytes_out 208010 151245 bytes_in 1001992 151245 station_ip 83.122.245.20 151245 port 555 151245 unique_id port 151245 remote_ip 10.8.0.178 151246 username hashtadani4 151246 mac 151246 bytes_out 0 151246 bytes_in 0 151246 station_ip 113.203.80.30 151246 port 555 151246 unique_id port 151246 remote_ip 10.8.0.182 151249 username barzegar 151249 mac 151249 bytes_out 0 151249 bytes_in 0 151249 station_ip 5.119.104.167 151249 port 280 151249 unique_id port 151249 remote_ip 10.8.1.174 151259 username aminvpn 151259 kill_reason Another user logged on this global unique id 151259 mac 151259 bytes_out 0 151259 bytes_in 0 151259 station_ip 83.122.210.226 151259 port 265 151259 unique_id port 151259 remote_ip 10.8.1.6 151263 username hashtadani4 151263 mac 151263 bytes_out 0 151263 bytes_in 0 151263 station_ip 113.203.80.30 151263 port 273 151263 unique_id port 151263 remote_ip 10.8.1.142 151265 username godarzi 151265 kill_reason Another user logged on this global unique id 151265 mac 151265 bytes_out 0 151265 bytes_in 0 151265 station_ip 5.202.24.27 151265 port 563 151265 unique_id port 151265 remote_ip 10.8.0.174 151267 username sabaghnezhad 151267 mac 151267 bytes_out 0 151267 bytes_in 0 151267 station_ip 37.129.9.137 151267 port 570 151267 unique_id port 151267 remote_ip 10.8.0.186 151270 username hashtadani4 151270 mac 151270 bytes_out 0 151270 bytes_in 0 151270 station_ip 113.203.80.30 151270 port 280 151270 unique_id port 151270 remote_ip 10.8.1.142 151271 username saeed9658 151271 mac 151271 bytes_out 0 151271 bytes_in 0 151271 station_ip 5.120.158.111 151271 port 273 151271 unique_id port 151271 remote_ip 10.8.1.210 151275 username forozandeh1 151275 mac 151275 bytes_out 0 151275 bytes_in 0 151275 station_ip 113.203.80.52 151275 port 566 151275 unique_id port 151275 remote_ip 10.8.0.130 151281 username hashtadani4 151281 kill_reason Maximum check online fails reached 151281 mac 151281 bytes_out 0 151281 bytes_in 0 151281 station_ip 113.203.80.30 151281 port 572 151281 unique_id port 151284 username barzegar 151284 mac 151284 bytes_out 21069 151284 bytes_in 24890 151284 station_ip 5.119.104.167 151284 port 571 151284 unique_id port 151284 remote_ip 10.8.0.234 151291 username hashtadani4 151291 mac 151291 bytes_out 2602 151291 bytes_in 5064 151291 station_ip 113.203.80.30 151291 port 280 151291 unique_id port 151291 remote_ip 10.8.1.142 151295 username hashtadani4 151295 mac 151295 bytes_out 0 151295 bytes_in 0 151295 station_ip 113.203.80.30 151295 port 571 151295 unique_id port 151295 remote_ip 10.8.0.182 151298 username hashtadani4 151298 mac 151298 bytes_out 0 151298 bytes_in 0 151298 station_ip 113.203.80.30 151272 kill_reason Another user logged on this global unique id 151272 mac 151272 bytes_out 0 151272 bytes_in 0 151272 station_ip 113.203.63.128 151272 port 553 151272 unique_id port 151273 username hashtadani4 151273 kill_reason Maximum check online fails reached 151273 mac 151273 bytes_out 0 151273 bytes_in 0 151273 station_ip 113.203.80.30 151273 port 570 151273 unique_id port 151277 username hashtadani4 151277 kill_reason Maximum check online fails reached 151277 mac 151277 bytes_out 0 151277 bytes_in 0 151277 station_ip 113.203.80.30 151277 port 566 151277 unique_id port 151278 username godarzi 151278 kill_reason Another user logged on this global unique id 151278 mac 151278 bytes_out 0 151278 bytes_in 0 151278 station_ip 5.202.24.27 151278 port 563 151278 unique_id port 151286 username hashtadani4 151286 kill_reason Maximum check online fails reached 151286 mac 151286 bytes_out 0 151286 bytes_in 0 151286 station_ip 113.203.80.30 151286 port 573 151286 unique_id port 151288 username hamid.e 151288 unique_id port 151288 terminate_cause User-Request 151288 bytes_out 32747468 151288 bytes_in 867529546 151288 station_ip 37.27.22.60 151288 port 15731084 151288 nas_port_type Virtual 151288 remote_ip 5.5.5.255 151289 username malekpoir 151289 kill_reason Another user logged on this global unique id 151289 mac 151289 bytes_out 0 151289 bytes_in 0 151289 station_ip 5.120.144.2 151289 port 551 151289 unique_id port 151290 username barzegar 151290 mac 151290 bytes_out 3311 151290 bytes_in 5993 151290 station_ip 5.119.104.167 151290 port 273 151290 unique_id port 151290 remote_ip 10.8.1.174 151293 username godarzi 151293 kill_reason Another user logged on this global unique id 151293 mac 151293 bytes_out 0 151293 bytes_in 0 151293 station_ip 5.202.24.27 151293 port 563 151293 unique_id port 151299 username khalili 151299 kill_reason Another user logged on this global unique id 151299 mac 151299 bytes_out 0 151299 bytes_in 0 151299 station_ip 5.120.42.66 151299 port 541 151299 unique_id port 151299 remote_ip 10.8.0.86 151300 username hashtadani4 151300 mac 151300 bytes_out 0 151300 bytes_in 0 151300 station_ip 113.203.80.30 151300 port 273 151300 unique_id port 151300 remote_ip 10.8.1.142 151302 username hashtadani4 151302 kill_reason Maximum check online fails reached 151302 mac 151302 bytes_out 0 151302 bytes_in 0 151302 station_ip 113.203.80.30 151302 port 571 151302 unique_id port 151303 username fezealinaghi 151303 kill_reason Another user logged on this global unique id 151303 mac 151303 bytes_out 0 151303 bytes_in 0 151303 station_ip 113.203.63.128 151303 port 553 151303 unique_id port 151305 username godarzi 151305 mac 151305 bytes_out 0 151305 bytes_in 0 151305 station_ip 5.202.24.27 151305 port 563 151305 unique_id port 151307 username hashtadani4 151307 mac 151307 bytes_out 0 151307 bytes_in 0 151307 station_ip 113.203.80.30 151307 port 563 151307 unique_id port 151307 remote_ip 10.8.0.182 151308 username barzegar 151308 mac 151308 bytes_out 0 151308 bytes_in 0 151308 station_ip 5.119.104.167 151308 port 280 151308 unique_id port 151308 remote_ip 10.8.1.174 151314 username hashtadani4 151314 mac 151314 bytes_out 0 151314 bytes_in 0 151314 station_ip 113.203.80.30 151314 port 576 151314 unique_id port 151314 remote_ip 10.8.0.182 151319 username hashtadani4 151319 mac 151319 bytes_out 0 151319 bytes_in 0 151319 station_ip 113.203.80.30 151319 port 280 151319 unique_id port 151319 remote_ip 10.8.1.142 151320 username hashtadani4 151320 mac 151320 bytes_out 0 151320 bytes_in 0 151283 bytes_out 0 151283 bytes_in 0 151283 station_ip 83.122.214.152 151283 port 556 151283 unique_id port 151285 username barzegar 151285 mac 151285 bytes_out 0 151285 bytes_in 0 151285 station_ip 5.119.104.167 151285 port 571 151285 unique_id port 151285 remote_ip 10.8.0.234 151287 username barzegar 151287 mac 151287 bytes_out 0 151287 bytes_in 0 151287 station_ip 5.119.104.167 151287 port 571 151287 unique_id port 151287 remote_ip 10.8.0.234 151292 username vanila 151292 mac 151292 bytes_out 0 151292 bytes_in 0 151292 station_ip 83.122.245.20 151292 port 574 151292 unique_id port 151292 remote_ip 10.8.0.178 151294 username fezealinaghi 151294 kill_reason Another user logged on this global unique id 151294 mac 151294 bytes_out 0 151294 bytes_in 0 151294 station_ip 113.203.63.128 151294 port 553 151294 unique_id port 151296 username barzegar 151296 mac 151296 bytes_out 0 151296 bytes_in 0 151296 station_ip 5.119.104.167 151296 port 273 151296 unique_id port 151296 remote_ip 10.8.1.174 151297 username barzegar 151297 mac 151297 bytes_out 0 151297 bytes_in 0 151297 station_ip 5.119.104.167 151297 port 571 151297 unique_id port 151297 remote_ip 10.8.0.234 151301 username hashtadani4 151301 mac 151301 bytes_out 0 151301 bytes_in 0 151301 station_ip 113.203.80.30 151301 port 574 151301 unique_id port 151301 remote_ip 10.8.0.182 151306 username barzegar 151306 mac 151306 bytes_out 0 151306 bytes_in 0 151306 station_ip 5.119.104.167 151306 port 280 151306 unique_id port 151306 remote_ip 10.8.1.174 151311 username hashtadani4 151311 mac 151311 bytes_out 854546 151311 bytes_in 9640935 151311 station_ip 113.203.80.30 151311 port 273 151311 unique_id port 151311 remote_ip 10.8.1.142 151312 username hashtadani4 151312 mac 151312 bytes_out 0 151312 bytes_in 0 151312 station_ip 113.203.80.30 151312 port 575 151312 unique_id port 151312 remote_ip 10.8.0.182 151315 username kordestani 151315 mac 151315 bytes_out 0 151315 bytes_in 0 151315 station_ip 151.235.99.55 151315 port 559 151315 unique_id port 151315 remote_ip 10.8.0.134 151316 username moradi 151316 mac 151316 bytes_out 236100 151316 bytes_in 322710 151316 station_ip 113.203.63.107 151316 port 565 151316 unique_id port 151316 remote_ip 10.8.0.226 151317 username hashtadani4 151317 mac 151317 bytes_out 0 151317 bytes_in 0 151317 station_ip 113.203.80.30 151317 port 565 151317 unique_id port 151317 remote_ip 10.8.0.182 151321 username barzegar 151321 mac 151321 bytes_out 20408 151321 bytes_in 36056 151321 station_ip 5.119.104.167 151321 port 574 151321 unique_id port 151321 remote_ip 10.8.0.234 151323 username barzegar 151323 mac 151323 bytes_out 0 151323 bytes_in 0 151323 station_ip 5.119.104.167 151323 port 574 151323 unique_id port 151323 remote_ip 10.8.0.234 151328 username kamali2 151328 mac 151328 bytes_out 441981 151328 bytes_in 2426570 151328 station_ip 5.120.122.230 151328 port 575 151328 unique_id port 151328 remote_ip 10.8.0.214 151332 username kordestani 151332 mac 151332 bytes_out 870383 151332 bytes_in 11575169 151332 station_ip 151.235.99.55 151332 port 574 151332 unique_id port 151332 remote_ip 10.8.0.134 151337 username fezealinaghi 151337 mac 151337 bytes_out 0 151337 bytes_in 0 151337 station_ip 113.203.63.128 151337 port 553 151337 unique_id port 151341 username hashtadani4 151341 mac 151341 bytes_out 0 151341 bytes_in 0 151341 station_ip 113.203.80.30 151298 port 571 151298 unique_id port 151298 remote_ip 10.8.0.182 151304 username hashtadani4 151304 mac 151304 bytes_out 266468 151304 bytes_in 1850524 151304 station_ip 113.203.80.30 151304 port 574 151304 unique_id port 151304 remote_ip 10.8.0.182 151309 username sekonji3 151309 mac 151309 bytes_out 298287 151309 bytes_in 535184 151309 station_ip 83.123.42.182 151309 port 563 151309 unique_id port 151309 remote_ip 10.8.0.6 151310 username barzegar 151310 mac 151310 bytes_out 0 151310 bytes_in 0 151310 station_ip 5.119.104.167 151310 port 563 151310 unique_id port 151310 remote_ip 10.8.0.234 151313 username hashtadani4 151313 kill_reason Maximum check online fails reached 151313 mac 151313 bytes_out 0 151313 bytes_in 0 151313 station_ip 113.203.80.30 151313 port 563 151313 unique_id port 151318 username hashtadani4 151318 mac 151318 bytes_out 0 151318 bytes_in 0 151318 station_ip 113.203.80.30 151318 port 280 151318 unique_id port 151318 remote_ip 10.8.1.142 151322 username yarmohamadi 151322 mac 151322 bytes_out 0 151322 bytes_in 0 151322 station_ip 5.120.166.191 151322 port 564 151322 unique_id port 151325 username hashtadani4 151325 kill_reason Maximum check online fails reached 151325 mac 151325 bytes_out 0 151325 bytes_in 0 151325 station_ip 113.203.80.30 151325 port 564 151325 unique_id port 151327 username hashtadani4 151327 mac 151327 bytes_out 0 151327 bytes_in 0 151327 station_ip 113.203.80.30 151327 port 578 151327 unique_id port 151327 remote_ip 10.8.0.182 151329 username saeed9658 151329 mac 151329 bytes_out 0 151329 bytes_in 0 151329 station_ip 5.120.158.111 151329 port 273 151329 unique_id port 151329 remote_ip 10.8.1.210 151336 username barzegar 151336 mac 151336 bytes_out 0 151336 bytes_in 0 151336 station_ip 5.119.104.167 151336 port 579 151336 unique_id port 151336 remote_ip 10.8.0.234 151339 username hashtadani4 151339 kill_reason Maximum check online fails reached 151339 mac 151339 bytes_out 0 151339 bytes_in 0 151339 station_ip 113.203.80.30 151339 port 580 151339 unique_id port 151340 username mohammadjavad 151340 mac 151340 bytes_out 303099 151340 bytes_in 2302365 151340 station_ip 37.129.55.10 151340 port 559 151340 unique_id port 151340 remote_ip 10.8.0.142 151344 username alipour 151344 mac 151344 bytes_out 0 151344 bytes_in 0 151344 station_ip 37.129.27.42 151344 port 577 151344 unique_id port 151345 username hashtadani4 151345 kill_reason Maximum check online fails reached 151345 mac 151345 bytes_out 0 151345 bytes_in 0 151345 station_ip 113.203.80.30 151345 port 577 151345 unique_id port 151347 username hashtadani4 151347 mac 151347 bytes_out 0 151347 bytes_in 0 151347 station_ip 113.203.80.30 151347 port 280 151347 unique_id port 151347 remote_ip 10.8.1.142 151350 username hashtadani4 151350 mac 151350 bytes_out 0 151350 bytes_in 0 151350 station_ip 113.203.80.30 151350 port 584 151350 unique_id port 151350 remote_ip 10.8.0.182 151360 username mahdiyehalizadeh 151360 mac 151360 bytes_out 1303529 151360 bytes_in 15449927 151360 station_ip 5.120.168.90 151360 port 574 151360 unique_id port 151360 remote_ip 10.8.0.82 151363 username vanila 151363 mac 151363 bytes_out 2202357 151363 bytes_in 15442246 151363 station_ip 83.122.227.176 151363 port 579 151363 unique_id port 151363 remote_ip 10.8.0.178 151367 username aminvpn 151367 unique_id port 151367 terminate_cause Lost-Carrier 151367 bytes_out 2685828 151367 bytes_in 6570602 151367 station_ip 5.119.82.189 151320 station_ip 113.203.80.30 151320 port 577 151320 unique_id port 151320 remote_ip 10.8.0.182 151324 username hashtadani4 151324 kill_reason Maximum check online fails reached 151324 mac 151324 bytes_out 0 151324 bytes_in 0 151324 station_ip 113.203.80.30 151324 port 565 151324 unique_id port 151326 username hashtadani4 151326 mac 151326 bytes_out 0 151326 bytes_in 0 151326 station_ip 113.203.80.30 151326 port 577 151326 unique_id port 151326 remote_ip 10.8.0.182 151330 username hashtadani4 151330 mac 151330 bytes_out 0 151330 bytes_in 0 151330 station_ip 113.203.80.30 151330 port 578 151330 unique_id port 151330 remote_ip 10.8.0.182 151331 username alipour 151331 kill_reason Another user logged on this global unique id 151331 mac 151331 bytes_out 0 151331 bytes_in 0 151331 station_ip 37.129.27.42 151331 port 577 151331 unique_id port 151331 remote_ip 10.8.0.102 151333 username godarzi 151333 mac 151333 bytes_out 478699 151333 bytes_in 2326189 151333 station_ip 5.202.24.27 151333 port 559 151333 unique_id port 151333 remote_ip 10.8.0.174 151334 username barzegar 151334 mac 151334 bytes_out 0 151334 bytes_in 0 151334 station_ip 5.119.104.167 151334 port 559 151334 unique_id port 151334 remote_ip 10.8.0.234 151335 username hashtadani4 151335 kill_reason Maximum check online fails reached 151335 mac 151335 bytes_out 0 151335 bytes_in 0 151335 station_ip 113.203.80.30 151335 port 578 151335 unique_id port 151338 username aminvpn 151338 unique_id port 151338 terminate_cause Lost-Carrier 151338 bytes_out 137680 151338 bytes_in 618477 151338 station_ip 109.125.128.116 151338 port 15731088 151338 nas_port_type Virtual 151338 remote_ip 5.5.5.130 151342 username moradi 151342 mac 151342 bytes_out 394461 151342 bytes_in 4027029 151342 station_ip 45.156.195.252 151342 port 576 151342 unique_id port 151342 remote_ip 10.8.0.226 151343 username hashtadani4 151343 kill_reason Maximum check online fails reached 151343 mac 151343 bytes_out 0 151343 bytes_in 0 151343 station_ip 113.203.80.30 151343 port 559 151343 unique_id port 151348 username alipour 151348 mac 151348 bytes_out 0 151348 bytes_in 0 151348 station_ip 37.129.32.164 151348 port 273 151348 unique_id port 151348 remote_ip 10.8.1.50 151349 username hashtadani4 151349 mac 151349 bytes_out 0 151349 bytes_in 0 151349 station_ip 113.203.80.30 151349 port 583 151349 unique_id port 151349 remote_ip 10.8.0.182 151351 username godarzi 151351 mac 151351 bytes_out 163745 151351 bytes_in 1818955 151351 station_ip 5.202.24.27 151351 port 582 151351 unique_id port 151351 remote_ip 10.8.0.174 151354 username hashtadani4 151354 mac 151354 bytes_out 1644 151354 bytes_in 5182 151354 station_ip 113.203.80.30 151354 port 583 151354 unique_id port 151354 remote_ip 10.8.0.182 151355 username forozandeh1 151355 mac 151355 bytes_out 245106 151355 bytes_in 2711449 151355 station_ip 83.123.209.23 151355 port 584 151355 unique_id port 151355 remote_ip 10.8.0.130 151359 username hashtadani4 151359 mac 151359 bytes_out 0 151359 bytes_in 0 151359 station_ip 113.203.80.30 151359 port 273 151359 unique_id port 151359 remote_ip 10.8.1.142 151365 username hashtadani4 151365 mac 151365 bytes_out 0 151365 bytes_in 0 151365 station_ip 113.203.80.30 151365 port 273 151365 unique_id port 151365 remote_ip 10.8.1.142 151368 username rahim 151368 mac 151368 bytes_out 0 151368 bytes_in 0 151368 station_ip 5.120.153.199 151368 port 576 151368 unique_id port 151368 remote_ip 10.8.0.50 151341 port 273 151341 unique_id port 151341 remote_ip 10.8.1.142 151346 username hashtadani4 151346 mac 151346 bytes_out 0 151346 bytes_in 0 151346 station_ip 113.203.80.30 151346 port 280 151346 unique_id port 151346 remote_ip 10.8.1.142 151352 username barzegar 151352 mac 151352 bytes_out 0 151352 bytes_in 0 151352 station_ip 5.119.104.167 151352 port 583 151352 unique_id port 151352 remote_ip 10.8.0.234 151353 username barzegar 151353 mac 151353 bytes_out 0 151353 bytes_in 0 151353 station_ip 5.119.104.167 151353 port 583 151353 unique_id port 151353 remote_ip 10.8.0.234 151356 username hashtadani4 151356 mac 151356 bytes_out 0 151356 bytes_in 0 151356 station_ip 113.203.80.30 151356 port 273 151356 unique_id port 151356 remote_ip 10.8.1.142 151357 username forozandeh1 151357 mac 151357 bytes_out 214165 151357 bytes_in 511123 151357 station_ip 113.203.110.163 151357 port 583 151357 unique_id port 151357 remote_ip 10.8.0.130 151358 username godarzi 151358 mac 151358 bytes_out 0 151358 bytes_in 0 151358 station_ip 5.202.24.27 151358 port 584 151358 unique_id port 151358 remote_ip 10.8.0.174 151361 username hashtadani4 151361 kill_reason Maximum check online fails reached 151361 mac 151361 bytes_out 0 151361 bytes_in 0 151361 station_ip 113.203.80.30 151361 port 585 151361 unique_id port 151362 username rezaei 151362 mac 151362 bytes_out 3120268 151362 bytes_in 32325639 151362 station_ip 5.120.46.216 151362 port 553 151362 unique_id port 151362 remote_ip 10.8.0.230 151364 username barzegar 151364 mac 151364 bytes_out 0 151364 bytes_in 0 151364 station_ip 5.119.104.167 151364 port 553 151364 unique_id port 151364 remote_ip 10.8.0.234 151366 username rahim 151366 mac 151366 bytes_out 2280965 151366 bytes_in 18530242 151366 station_ip 5.120.153.199 151366 port 576 151366 unique_id port 151366 remote_ip 10.8.0.50 151376 username kalantary 151376 mac 151376 bytes_out 253447 151376 bytes_in 409749 151376 station_ip 83.123.58.172 151376 port 576 151376 unique_id port 151376 remote_ip 10.8.0.98 151379 username malekpoir 151379 kill_reason Another user logged on this global unique id 151379 mac 151379 bytes_out 0 151379 bytes_in 0 151379 station_ip 5.120.144.2 151379 port 551 151379 unique_id port 151380 username rahim 151380 mac 151380 bytes_out 0 151380 bytes_in 0 151380 station_ip 5.120.153.199 151380 port 576 151380 unique_id port 151380 remote_ip 10.8.0.50 151383 username rahim 151383 mac 151383 bytes_out 0 151383 bytes_in 0 151383 station_ip 5.120.153.199 151383 port 280 151383 unique_id port 151383 remote_ip 10.8.1.126 151385 username hashtadani4 151385 mac 151385 bytes_out 0 151385 bytes_in 0 151385 station_ip 113.203.80.30 151385 port 576 151385 unique_id port 151385 remote_ip 10.8.0.182 151389 username hashtadani4 151389 mac 151389 bytes_out 0 151389 bytes_in 0 151389 station_ip 113.203.80.30 151389 port 581 151389 unique_id port 151389 remote_ip 10.8.0.182 151391 username rahim 151391 mac 151391 bytes_out 0 151391 bytes_in 0 151391 station_ip 5.120.153.199 151391 port 576 151391 unique_id port 151391 remote_ip 10.8.0.50 151395 username hashtadani4 151395 mac 151395 bytes_out 0 151395 bytes_in 0 151395 station_ip 113.203.80.30 151395 port 576 151395 unique_id port 151395 remote_ip 10.8.0.182 151399 username fezealinaghi 151399 mac 151399 bytes_out 0 151399 bytes_in 0 151399 station_ip 113.203.76.114 151399 port 579 151367 port 15731089 151367 nas_port_type Virtual 151367 remote_ip 5.5.5.138 151369 username vanila 151369 mac 151369 bytes_out 43459 151369 bytes_in 187396 151369 station_ip 83.122.227.176 151369 port 579 151369 unique_id port 151369 remote_ip 10.8.0.178 151370 username rahim 151370 mac 151370 bytes_out 0 151370 bytes_in 0 151370 station_ip 5.120.153.199 151370 port 576 151370 unique_id port 151370 remote_ip 10.8.0.50 151371 username hashtadani4 151371 mac 151371 bytes_out 0 151371 bytes_in 0 151371 station_ip 113.203.80.30 151371 port 574 151371 unique_id port 151371 remote_ip 10.8.0.182 151374 username rahim 151374 mac 151374 bytes_out 0 151374 bytes_in 0 151374 station_ip 5.120.153.199 151374 port 280 151374 unique_id port 151374 remote_ip 10.8.1.126 151378 username rahim 151378 mac 151378 bytes_out 0 151378 bytes_in 0 151378 station_ip 5.120.153.199 151378 port 576 151378 unique_id port 151378 remote_ip 10.8.0.50 151384 username hashtadani4 151384 mac 151384 bytes_out 0 151384 bytes_in 0 151384 station_ip 113.203.80.30 151384 port 574 151384 unique_id port 151384 remote_ip 10.8.0.182 151386 username rahim 151386 mac 151386 bytes_out 0 151386 bytes_in 0 151386 station_ip 5.120.153.199 151386 port 581 151386 unique_id port 151386 remote_ip 10.8.0.50 151387 username hashtadani4 151387 mac 151387 bytes_out 0 151387 bytes_in 0 151387 station_ip 113.203.80.30 151387 port 581 151387 unique_id port 151387 remote_ip 10.8.0.182 151390 username hashtadani4 151390 mac 151390 bytes_out 0 151390 bytes_in 0 151390 station_ip 113.203.80.30 151390 port 581 151390 unique_id port 151390 remote_ip 10.8.0.182 151393 username rahim 151393 kill_reason Maximum check online fails reached 151393 mac 151393 bytes_out 0 151393 bytes_in 0 151393 station_ip 5.120.153.199 151393 port 574 151393 unique_id port 151394 username mohammadjavad 151394 mac 151394 bytes_out 1824650 151394 bytes_in 31850410 151394 station_ip 37.129.230.224 151394 port 553 151394 unique_id port 151394 remote_ip 10.8.0.142 151398 username barzegar 151398 mac 151398 bytes_out 0 151398 bytes_in 0 151398 station_ip 5.119.104.167 151398 port 553 151398 unique_id port 151398 remote_ip 10.8.0.234 151405 username ahmadi1 151405 mac 151405 bytes_out 28508 151405 bytes_in 165028 151405 station_ip 113.203.39.170 151405 port 553 151405 unique_id port 151405 remote_ip 10.8.0.250 151409 username hashtadani4 151409 kill_reason Maximum check online fails reached 151409 mac 151409 bytes_out 0 151409 bytes_in 0 151409 station_ip 113.203.80.30 151409 port 576 151409 unique_id port 151412 username khademi 151412 kill_reason Another user logged on this global unique id 151412 mac 151412 bytes_out 0 151412 bytes_in 0 151412 station_ip 83.122.214.152 151412 port 556 151412 unique_id port 151412 remote_ip 10.8.0.10 151413 username mohammadmahdi 151413 mac 151413 bytes_out 1476238 151413 bytes_in 15745320 151413 station_ip 5.120.71.18 151413 port 581 151413 unique_id port 151413 remote_ip 10.8.0.54 151417 username hashtadani4 151417 mac 151417 bytes_out 9740 151417 bytes_in 23423 151417 station_ip 113.203.64.66 151417 port 582 151417 unique_id port 151417 remote_ip 10.8.0.182 151419 username aminvpn 151419 mac 151419 bytes_out 735340 151419 bytes_in 6532639 151419 station_ip 83.122.85.25 151419 port 575 151419 unique_id port 151419 remote_ip 10.8.0.14 151421 username mahdiyehalizadeh 151421 mac 151421 bytes_out 250608 151421 bytes_in 2219895 151372 username rahim 151372 mac 151372 bytes_out 0 151372 bytes_in 0 151372 station_ip 5.120.153.199 151372 port 280 151372 unique_id port 151372 remote_ip 10.8.1.126 151373 username rahim 151373 mac 151373 bytes_out 0 151373 bytes_in 0 151373 station_ip 5.120.153.199 151373 port 280 151373 unique_id port 151373 remote_ip 10.8.1.126 151375 username moradi 151375 mac 151375 bytes_out 236390 151375 bytes_in 699113 151375 station_ip 45.156.195.252 151375 port 581 151375 unique_id port 151375 remote_ip 10.8.0.226 151377 username rahim 151377 mac 151377 bytes_out 0 151377 bytes_in 0 151377 station_ip 5.120.153.199 151377 port 579 151377 unique_id port 151377 remote_ip 10.8.0.50 151381 username hashtadani4 151381 mac 151381 bytes_out 0 151381 bytes_in 0 151381 station_ip 113.203.80.30 151381 port 574 151381 unique_id port 151381 remote_ip 10.8.0.182 151382 username hashtadani4 151382 mac 151382 bytes_out 0 151382 bytes_in 0 151382 station_ip 113.203.80.30 151382 port 574 151382 unique_id port 151382 remote_ip 10.8.0.182 151388 username rahim 151388 kill_reason Maximum number of concurrent logins reached 151388 mac 151388 bytes_out 0 151388 bytes_in 0 151388 station_ip 5.120.153.199 151388 port 581 151388 unique_id port 151392 username barzegar 151392 mac 151392 bytes_out 0 151392 bytes_in 0 151392 station_ip 5.119.104.167 151392 port 583 151392 unique_id port 151392 remote_ip 10.8.0.234 151396 username malekpoir 151396 mac 151396 bytes_out 0 151396 bytes_in 0 151396 station_ip 5.120.144.2 151396 port 551 151396 unique_id port 151397 username hashtadani4 151397 mac 151397 bytes_out 0 151397 bytes_in 0 151397 station_ip 113.203.80.30 151397 port 551 151397 unique_id port 151397 remote_ip 10.8.0.182 151402 username hashtadani4 151402 mac 151402 bytes_out 0 151402 bytes_in 0 151402 station_ip 113.203.80.30 151402 port 280 151402 unique_id port 151402 remote_ip 10.8.1.142 151410 username hashtadani4 151410 mac 151410 bytes_out 0 151410 bytes_in 0 151410 station_ip 113.203.80.30 151410 port 280 151410 unique_id port 151410 remote_ip 10.8.1.142 151414 username barzegar 151414 mac 151414 bytes_out 0 151414 bytes_in 0 151414 station_ip 5.119.104.167 151414 port 281 151414 unique_id port 151414 remote_ip 10.8.1.174 151418 username farhad2 151418 mac 151418 bytes_out 515380 151418 bytes_in 1403670 151418 station_ip 5.119.72.220 151418 port 583 151418 unique_id port 151418 remote_ip 10.8.0.190 151420 username hashtadani4 151420 mac 151420 bytes_out 0 151420 bytes_in 0 151420 station_ip 113.203.64.66 151420 port 281 151420 unique_id port 151420 remote_ip 10.8.1.142 151424 username jafari 151424 kill_reason Another user logged on this global unique id 151424 mac 151424 bytes_out 0 151424 bytes_in 0 151424 station_ip 89.34.59.24 151424 port 273 151424 unique_id port 151427 username forozandeh1 151427 mac 151427 bytes_out 1071968 151427 bytes_in 11986455 151427 station_ip 83.123.42.136 151427 port 579 151427 unique_id port 151427 remote_ip 10.8.0.130 151428 username farhad2 151428 mac 151428 bytes_out 0 151428 bytes_in 0 151428 station_ip 5.119.72.220 151428 port 280 151428 unique_id port 151428 remote_ip 10.8.1.222 151430 username hashtadani4 151430 mac 151430 bytes_out 0 151430 bytes_in 0 151430 station_ip 113.203.64.66 151430 port 581 151430 unique_id port 151430 remote_ip 10.8.0.182 151432 username hashtadani4 151432 mac 151399 unique_id port 151399 remote_ip 10.8.0.78 151400 username hashtadani4 151400 mac 151400 bytes_out 0 151400 bytes_in 0 151400 station_ip 113.203.80.30 151400 port 551 151400 unique_id port 151400 remote_ip 10.8.0.182 151401 username hashtadani4 151401 mac 151401 bytes_out 0 151401 bytes_in 0 151401 station_ip 113.203.80.30 151401 port 280 151401 unique_id port 151401 remote_ip 10.8.1.142 151403 username hashtadani4 151403 mac 151403 bytes_out 0 151403 bytes_in 0 151403 station_ip 113.203.80.30 151403 port 280 151403 unique_id port 151403 remote_ip 10.8.1.142 151404 username hashtadani4 151404 mac 151404 bytes_out 0 151404 bytes_in 0 151404 station_ip 113.203.80.30 151404 port 576 151404 unique_id port 151404 remote_ip 10.8.0.182 151406 username hashtadani4 151406 kill_reason Maximum check online fails reached 151406 mac 151406 bytes_out 0 151406 bytes_in 0 151406 station_ip 113.203.80.30 151406 port 551 151406 unique_id port 151407 username alipour 151407 mac 151407 bytes_out 1717715 151407 bytes_in 24659941 151407 station_ip 37.129.32.164 151407 port 582 151407 unique_id port 151407 remote_ip 10.8.0.102 151408 username jafari 151408 kill_reason Another user logged on this global unique id 151408 mac 151408 bytes_out 0 151408 bytes_in 0 151408 station_ip 89.34.59.24 151408 port 273 151408 unique_id port 151408 remote_ip 10.8.1.198 151411 username barzegar 151411 mac 151411 bytes_out 0 151411 bytes_in 0 151411 station_ip 5.119.104.167 151411 port 579 151411 unique_id port 151411 remote_ip 10.8.0.234 151415 username godarzi 151415 mac 151415 bytes_out 759138 151415 bytes_in 10769753 151415 station_ip 5.202.24.27 151415 port 581 151415 unique_id port 151415 remote_ip 10.8.0.174 151416 username arash 151416 mac 151416 bytes_out 153029 151416 bytes_in 767608 151416 station_ip 89.32.100.6 151416 port 579 151416 unique_id port 151416 remote_ip 10.8.0.114 151423 username hashtadani4 151423 mac 151423 bytes_out 0 151423 bytes_in 0 151423 station_ip 113.203.64.66 151423 port 582 151423 unique_id port 151423 remote_ip 10.8.0.182 151425 username kamali2 151425 mac 151425 bytes_out 75423 151425 bytes_in 158314 151425 station_ip 5.120.122.230 151425 port 575 151425 unique_id port 151425 remote_ip 10.8.0.214 151426 username mohammadmahdi 151426 mac 151426 bytes_out 1834644 151426 bytes_in 24388658 151426 station_ip 5.120.71.18 151426 port 581 151426 unique_id port 151426 remote_ip 10.8.0.54 151429 username hashtadani4 151429 mac 151429 bytes_out 0 151429 bytes_in 0 151429 station_ip 113.203.64.66 151429 port 282 151429 unique_id port 151429 remote_ip 10.8.1.142 151431 username barzegar 151431 mac 151431 bytes_out 0 151431 bytes_in 0 151431 station_ip 5.119.104.167 151431 port 282 151431 unique_id port 151431 remote_ip 10.8.1.174 151436 username farhad2 151436 mac 151436 bytes_out 0 151436 bytes_in 0 151436 station_ip 5.119.72.220 151436 port 280 151436 unique_id port 151436 remote_ip 10.8.1.222 151440 username hashtadani4 151440 mac 151440 bytes_out 0 151440 bytes_in 0 151440 station_ip 113.203.64.66 151440 port 280 151440 unique_id port 151440 remote_ip 10.8.1.142 151442 username mohammadmahdi 151442 kill_reason Another user logged on this global unique id 151442 mac 151442 bytes_out 0 151442 bytes_in 0 151442 station_ip 5.120.71.18 151442 port 575 151442 unique_id port 151442 remote_ip 10.8.0.54 151444 username hashtadani4 151444 mac 151444 bytes_out 0 151444 bytes_in 0 151421 station_ip 5.119.245.62 151421 port 280 151421 unique_id port 151421 remote_ip 10.8.1.110 151422 username rahim 151422 mac 151422 bytes_out 0 151422 bytes_in 0 151422 station_ip 86.57.60.122 151422 port 584 151422 unique_id port 151422 remote_ip 10.8.0.50 151441 username hashtadani4 151441 kill_reason Maximum check online fails reached 151441 mac 151441 bytes_out 0 151441 bytes_in 0 151441 station_ip 113.203.64.66 151441 port 582 151441 unique_id port 151446 username hashtadani4 151446 mac 151446 bytes_out 0 151446 bytes_in 0 151446 station_ip 113.203.64.66 151446 port 280 151446 unique_id port 151446 remote_ip 10.8.1.142 151452 username hashtadani4 151452 mac 151452 bytes_out 0 151452 bytes_in 0 151452 station_ip 113.203.64.66 151452 port 584 151452 unique_id port 151452 remote_ip 10.8.0.182 151454 username hashtadani4 151454 mac 151454 bytes_out 0 151454 bytes_in 0 151454 station_ip 113.203.64.66 151454 port 280 151454 unique_id port 151454 remote_ip 10.8.1.142 151458 username hashtadani4 151458 mac 151458 bytes_out 0 151458 bytes_in 0 151458 station_ip 113.203.64.66 151458 port 280 151458 unique_id port 151458 remote_ip 10.8.1.142 151459 username mahdiyehalizadeh 151459 mac 151459 bytes_out 1155934 151459 bytes_in 15441902 151459 station_ip 5.119.245.62 151459 port 281 151459 unique_id port 151459 remote_ip 10.8.1.110 151461 username mirzaei 151461 kill_reason Another user logged on this global unique id 151461 mac 151461 bytes_out 0 151461 bytes_in 0 151461 station_ip 5.119.66.157 151461 port 560 151461 unique_id port 151466 username hashtadani4 151466 mac 151466 bytes_out 0 151466 bytes_in 0 151466 station_ip 113.203.64.66 151466 port 280 151466 unique_id port 151466 remote_ip 10.8.1.142 151470 username hashtadani4 151470 mac 151470 bytes_out 0 151470 bytes_in 0 151470 station_ip 113.203.64.66 151470 port 583 151470 unique_id port 151470 remote_ip 10.8.0.182 151472 username hashtadani4 151472 mac 151472 bytes_out 0 151472 bytes_in 0 151472 station_ip 113.203.64.66 151472 port 280 151472 unique_id port 151472 remote_ip 10.8.1.142 151474 username hashtadani4 151474 mac 151474 bytes_out 0 151474 bytes_in 0 151474 station_ip 113.203.64.66 151474 port 273 151474 unique_id port 151474 remote_ip 10.8.1.142 151475 username rezaei 151475 mac 151475 bytes_out 3122190 151475 bytes_in 38819664 151475 station_ip 5.120.46.216 151475 port 579 151475 unique_id port 151475 remote_ip 10.8.0.230 151482 username saeed9658 151482 mac 151482 bytes_out 1107339 151482 bytes_in 11413434 151482 station_ip 5.120.158.111 151482 port 265 151482 unique_id port 151482 remote_ip 10.8.1.210 151486 username hashtadani4 151486 mac 151486 bytes_out 0 151486 bytes_in 0 151486 station_ip 113.203.64.66 151486 port 579 151486 unique_id port 151486 remote_ip 10.8.0.182 151491 username hashtadani4 151491 mac 151491 bytes_out 0 151491 bytes_in 0 151491 station_ip 113.203.64.66 151491 port 579 151491 unique_id port 151491 remote_ip 10.8.0.182 151493 username hashtadani4 151493 mac 151493 bytes_out 0 151493 bytes_in 0 151493 station_ip 113.203.64.66 151493 port 579 151493 unique_id port 151493 remote_ip 10.8.0.182 151495 username barzegar 151495 mac 151495 bytes_out 0 151495 bytes_in 0 151495 station_ip 5.119.104.167 151495 port 273 151495 unique_id port 151495 remote_ip 10.8.1.174 151500 username hashtadani4 151500 mac 151500 bytes_out 0 151500 bytes_in 0 151432 bytes_out 0 151432 bytes_in 0 151432 station_ip 113.203.64.66 151432 port 581 151432 unique_id port 151432 remote_ip 10.8.0.182 151433 username jafari 151433 kill_reason Another user logged on this global unique id 151433 mac 151433 bytes_out 0 151433 bytes_in 0 151433 station_ip 89.34.59.24 151433 port 273 151433 unique_id port 151434 username hashtadani4 151434 mac 151434 bytes_out 2111 151434 bytes_in 4388 151434 station_ip 113.203.64.66 151434 port 581 151434 unique_id port 151434 remote_ip 10.8.0.182 151435 username farhad2 151435 mac 151435 bytes_out 0 151435 bytes_in 0 151435 station_ip 5.119.72.220 151435 port 280 151435 unique_id port 151435 remote_ip 10.8.1.222 151437 username hashtadani4 151437 mac 151437 bytes_out 0 151437 bytes_in 0 151437 station_ip 113.203.64.66 151437 port 581 151437 unique_id port 151437 remote_ip 10.8.0.182 151438 username barzegar 151438 mac 151438 bytes_out 0 151438 bytes_in 0 151438 station_ip 5.119.104.167 151438 port 581 151438 unique_id port 151438 remote_ip 10.8.0.234 151439 username hashtadani4 151439 mac 151439 bytes_out 0 151439 bytes_in 0 151439 station_ip 113.203.64.66 151439 port 280 151439 unique_id port 151439 remote_ip 10.8.1.142 151443 username hashtadani4 151443 mac 151443 bytes_out 0 151443 bytes_in 0 151443 station_ip 113.203.64.66 151443 port 280 151443 unique_id port 151443 remote_ip 10.8.1.142 151445 username barzegar 151445 mac 151445 bytes_out 0 151445 bytes_in 0 151445 station_ip 5.119.104.167 151445 port 584 151445 unique_id port 151445 remote_ip 10.8.0.234 151450 username farhad2 151450 mac 151450 bytes_out 0 151450 bytes_in 0 151450 station_ip 5.119.72.220 151450 port 583 151450 unique_id port 151450 remote_ip 10.8.0.190 151456 username hashtadani4 151456 mac 151456 bytes_out 0 151456 bytes_in 0 151456 station_ip 113.203.64.66 151456 port 584 151456 unique_id port 151456 remote_ip 10.8.0.182 151462 username hashtadani4 151462 mac 151462 bytes_out 0 151462 bytes_in 0 151462 station_ip 113.203.64.66 151462 port 584 151462 unique_id port 151462 remote_ip 10.8.0.182 151463 username hashtadani4 151463 mac 151463 bytes_out 0 151463 bytes_in 0 151463 station_ip 113.203.64.66 151463 port 584 151463 unique_id port 151463 remote_ip 10.8.0.182 151465 username hashtadani4 151465 mac 151465 bytes_out 0 151465 bytes_in 0 151465 station_ip 113.203.64.66 151465 port 280 151465 unique_id port 151465 remote_ip 10.8.1.142 151467 username hashtadani4 151467 mac 151467 bytes_out 0 151467 bytes_in 0 151467 station_ip 113.203.64.66 151467 port 280 151467 unique_id port 151467 remote_ip 10.8.1.142 151477 username barzegar 151477 mac 151477 bytes_out 0 151477 bytes_in 0 151477 station_ip 5.119.104.167 151477 port 583 151477 unique_id port 151477 remote_ip 10.8.0.234 151478 username mohammadmahdi 151478 kill_reason Another user logged on this global unique id 151478 mac 151478 bytes_out 0 151478 bytes_in 0 151478 station_ip 5.120.71.18 151478 port 575 151478 unique_id port 151483 username hashtadani4 151483 mac 151483 bytes_out 0 151483 bytes_in 0 151483 station_ip 113.203.64.66 151483 port 579 151483 unique_id port 151483 remote_ip 10.8.0.182 151489 username hashtadani4 151489 mac 151489 bytes_out 0 151489 bytes_in 0 151489 station_ip 113.203.64.66 151489 port 579 151489 unique_id port 151489 remote_ip 10.8.0.182 151492 username godarzi 151492 mac 151492 bytes_out 766974 151444 station_ip 113.203.64.66 151444 port 280 151444 unique_id port 151444 remote_ip 10.8.1.142 151447 username aminvpn 151447 mac 151447 bytes_out 0 151447 bytes_in 0 151447 station_ip 83.122.210.226 151447 port 265 151447 unique_id port 151448 username hashtadani4 151448 mac 151448 bytes_out 0 151448 bytes_in 0 151448 station_ip 113.203.64.66 151448 port 265 151448 unique_id port 151448 remote_ip 10.8.1.142 151449 username hashtadani4 151449 mac 151449 bytes_out 0 151449 bytes_in 0 151449 station_ip 113.203.64.66 151449 port 584 151449 unique_id port 151449 remote_ip 10.8.0.182 151451 username hashtadani4 151451 mac 151451 bytes_out 2535 151451 bytes_in 4812 151451 station_ip 113.203.64.66 151451 port 584 151451 unique_id port 151451 remote_ip 10.8.0.182 151453 username hashtadani4 151453 mac 151453 bytes_out 0 151453 bytes_in 0 151453 station_ip 113.203.64.66 151453 port 280 151453 unique_id port 151453 remote_ip 10.8.1.142 151455 username barzegar 151455 mac 151455 bytes_out 0 151455 bytes_in 0 151455 station_ip 5.119.104.167 151455 port 584 151455 unique_id port 151455 remote_ip 10.8.0.234 151457 username hashtadani4 151457 mac 151457 bytes_out 0 151457 bytes_in 0 151457 station_ip 113.203.64.66 151457 port 280 151457 unique_id port 151457 remote_ip 10.8.1.142 151460 username hashtadani4 151460 mac 151460 bytes_out 0 151460 bytes_in 0 151460 station_ip 113.203.64.66 151460 port 584 151460 unique_id port 151460 remote_ip 10.8.0.182 151464 username farhad2 151464 mac 151464 bytes_out 0 151464 bytes_in 0 151464 station_ip 5.119.72.220 151464 port 583 151464 unique_id port 151464 remote_ip 10.8.0.190 151468 username hashtadani4 151468 mac 151468 bytes_out 0 151468 bytes_in 0 151468 station_ip 113.203.64.66 151468 port 583 151468 unique_id port 151468 remote_ip 10.8.0.182 151469 username hashtadani4 151469 mac 151469 bytes_out 0 151469 bytes_in 0 151469 station_ip 113.203.64.66 151469 port 583 151469 unique_id port 151469 remote_ip 10.8.0.182 151471 username jafari 151471 kill_reason Another user logged on this global unique id 151471 mac 151471 bytes_out 0 151471 bytes_in 0 151471 station_ip 89.34.59.24 151471 port 273 151471 unique_id port 151473 username jafari 151473 mac 151473 bytes_out 0 151473 bytes_in 0 151473 station_ip 89.34.59.24 151473 port 273 151473 unique_id port 151476 username hashtadani4 151476 mac 151476 bytes_out 0 151476 bytes_in 0 151476 station_ip 113.203.64.66 151476 port 584 151476 unique_id port 151476 remote_ip 10.8.0.182 151479 username hashtadani4 151479 mac 151479 bytes_out 0 151479 bytes_in 0 151479 station_ip 113.203.64.66 151479 port 579 151479 unique_id port 151479 remote_ip 10.8.0.182 151480 username hashtadani4 151480 mac 151480 bytes_out 0 151480 bytes_in 0 151480 station_ip 113.203.64.66 151480 port 579 151480 unique_id port 151480 remote_ip 10.8.0.182 151481 username hashtadani4 151481 mac 151481 bytes_out 0 151481 bytes_in 0 151481 station_ip 113.203.64.66 151481 port 273 151481 unique_id port 151481 remote_ip 10.8.1.142 151484 username hashtadani4 151484 mac 151484 bytes_out 0 151484 bytes_in 0 151484 station_ip 113.203.64.66 151484 port 265 151484 unique_id port 151484 remote_ip 10.8.1.142 151485 username hashtadani4 151485 mac 151485 bytes_out 0 151485 bytes_in 0 151485 station_ip 113.203.64.66 151485 port 265 151485 unique_id port 151485 remote_ip 10.8.1.142 151487 username sabaghnezhad 151487 kill_reason Another user logged on this global unique id 151487 mac 151487 bytes_out 0 151487 bytes_in 0 151487 station_ip 37.129.9.137 151487 port 569 151487 unique_id port 151487 remote_ip 10.8.0.186 151488 username hashtadani4 151488 mac 151488 bytes_out 0 151488 bytes_in 0 151488 station_ip 113.203.64.66 151488 port 579 151488 unique_id port 151488 remote_ip 10.8.0.182 151490 username mohammadmahdi 151490 kill_reason Another user logged on this global unique id 151490 mac 151490 bytes_out 0 151490 bytes_in 0 151490 station_ip 5.120.71.18 151490 port 575 151490 unique_id port 151494 username hashtadani4 151494 mac 151494 bytes_out 0 151494 bytes_in 0 151494 station_ip 113.203.64.66 151494 port 265 151494 unique_id port 151494 remote_ip 10.8.1.142 151496 username hashtadani4 151496 mac 151496 bytes_out 0 151496 bytes_in 0 151496 station_ip 113.203.64.66 151496 port 265 151496 unique_id port 151496 remote_ip 10.8.1.142 151497 username farhad2 151497 mac 151497 bytes_out 0 151497 bytes_in 0 151497 station_ip 5.119.72.220 151497 port 281 151497 unique_id port 151497 remote_ip 10.8.1.222 151499 username hashtadani4 151499 mac 151499 bytes_out 0 151499 bytes_in 0 151499 station_ip 113.203.64.66 151499 port 579 151499 unique_id port 151499 remote_ip 10.8.0.182 151506 username hashtadani4 151506 mac 151506 bytes_out 0 151506 bytes_in 0 151506 station_ip 113.203.64.66 151506 port 579 151506 unique_id port 151506 remote_ip 10.8.0.182 151508 username hashtadani4 151508 mac 151508 bytes_out 0 151508 bytes_in 0 151508 station_ip 113.203.64.66 151508 port 579 151508 unique_id port 151508 remote_ip 10.8.0.182 151509 username rezaei 151509 kill_reason Another user logged on this global unique id 151509 mac 151509 bytes_out 0 151509 bytes_in 0 151509 station_ip 5.120.46.216 151509 port 583 151509 unique_id port 151509 remote_ip 10.8.0.230 151513 username hashtadani4 151513 mac 151513 bytes_out 0 151513 bytes_in 0 151513 station_ip 113.203.64.66 151513 port 273 151513 unique_id port 151513 remote_ip 10.8.1.142 151520 username khademi 151520 mac 151520 bytes_out 0 151520 bytes_in 0 151520 station_ip 83.122.214.152 151520 port 556 151520 unique_id port 151523 username hashtadani4 151523 mac 151523 bytes_out 0 151523 bytes_in 0 151523 station_ip 113.203.64.66 151523 port 569 151523 unique_id port 151523 remote_ip 10.8.0.182 151534 username hashtadani4 151534 mac 151534 bytes_out 0 151534 bytes_in 0 151534 station_ip 113.203.64.66 151534 port 569 151534 unique_id port 151534 remote_ip 10.8.0.182 151535 username hashtadani4 151535 mac 151535 bytes_out 0 151535 bytes_in 0 151535 station_ip 113.203.64.66 151535 port 569 151535 unique_id port 151535 remote_ip 10.8.0.182 151536 username hashtadani4 151536 mac 151536 bytes_out 0 151536 bytes_in 0 151536 station_ip 113.203.64.66 151536 port 569 151536 unique_id port 151536 remote_ip 10.8.0.182 151543 username hashtadani4 151543 mac 151543 bytes_out 0 151543 bytes_in 0 151543 station_ip 113.203.64.66 151543 port 581 151543 unique_id port 151543 remote_ip 10.8.0.182 151544 username hashtadani4 151544 mac 151544 bytes_out 0 151544 bytes_in 0 151544 station_ip 113.203.64.66 151544 port 265 151544 unique_id port 151544 remote_ip 10.8.1.142 151546 username hashtadani4 151546 mac 151546 bytes_out 0 151546 bytes_in 0 151546 station_ip 113.203.64.66 151546 port 265 151546 unique_id port 151492 bytes_in 2784473 151492 station_ip 5.202.24.27 151492 port 581 151492 unique_id port 151492 remote_ip 10.8.0.174 151498 username hashtadani4 151498 mac 151498 bytes_out 0 151498 bytes_in 0 151498 station_ip 113.203.64.66 151498 port 579 151498 unique_id port 151498 remote_ip 10.8.0.182 151502 username hashtadani4 151502 mac 151502 bytes_out 0 151502 bytes_in 0 151502 station_ip 113.203.64.66 151502 port 579 151502 unique_id port 151502 remote_ip 10.8.0.182 151504 username hashtadani4 151504 mac 151504 bytes_out 0 151504 bytes_in 0 151504 station_ip 113.203.64.66 151504 port 579 151504 unique_id port 151504 remote_ip 10.8.0.182 151505 username hashtadani4 151505 mac 151505 bytes_out 0 151505 bytes_in 0 151505 station_ip 113.203.64.66 151505 port 273 151505 unique_id port 151505 remote_ip 10.8.1.142 151507 username vanila 151507 mac 151507 bytes_out 693313 151507 bytes_in 1838852 151507 station_ip 83.122.227.176 151507 port 586 151507 unique_id port 151507 remote_ip 10.8.0.178 151512 username sabaghnezhad 151512 mac 151512 bytes_out 0 151512 bytes_in 0 151512 station_ip 37.129.9.137 151512 port 569 151512 unique_id port 151516 username hashtadani4 151516 mac 151516 bytes_out 0 151516 bytes_in 0 151516 station_ip 113.203.64.66 151516 port 569 151516 unique_id port 151516 remote_ip 10.8.0.182 151519 username hashtadani4 151519 mac 151519 bytes_out 0 151519 bytes_in 0 151519 station_ip 113.203.64.66 151519 port 569 151519 unique_id port 151519 remote_ip 10.8.0.182 151522 username alihosseini1 151522 mac 151522 bytes_out 0 151522 bytes_in 0 151522 station_ip 5.119.211.131 151522 port 265 151522 unique_id port 151522 remote_ip 10.8.1.106 151524 username hashtadani4 151524 mac 151524 bytes_out 0 151524 bytes_in 0 151524 station_ip 113.203.64.66 151524 port 273 151524 unique_id port 151524 remote_ip 10.8.1.142 151527 username alihosseini1 151527 mac 151527 bytes_out 0 151527 bytes_in 0 151527 station_ip 5.119.211.131 151527 port 265 151527 unique_id port 151527 remote_ip 10.8.1.106 151530 username hashtadani4 151530 mac 151530 bytes_out 0 151530 bytes_in 0 151530 station_ip 113.203.64.66 151530 port 569 151530 unique_id port 151530 remote_ip 10.8.0.182 151532 username hashtadani4 151532 mac 151532 bytes_out 0 151532 bytes_in 0 151532 station_ip 113.203.64.66 151532 port 569 151532 unique_id port 151532 remote_ip 10.8.0.182 151533 username hashtadani4 151533 mac 151533 bytes_out 0 151533 bytes_in 0 151533 station_ip 113.203.64.66 151533 port 569 151533 unique_id port 151533 remote_ip 10.8.0.182 151537 username alihosseini1 151537 mac 151537 bytes_out 0 151537 bytes_in 0 151537 station_ip 5.119.211.131 151537 port 265 151537 unique_id port 151537 remote_ip 10.8.1.106 151538 username hashtadani4 151538 mac 151538 bytes_out 0 151538 bytes_in 0 151538 station_ip 113.203.64.66 151538 port 265 151538 unique_id port 151538 remote_ip 10.8.1.142 151539 username farhad2 151539 mac 151539 bytes_out 0 151539 bytes_in 0 151539 station_ip 5.119.72.220 151539 port 581 151539 unique_id port 151539 remote_ip 10.8.0.190 151541 username hashtadani4 151541 mac 151541 bytes_out 0 151541 bytes_in 0 151541 station_ip 113.203.64.66 151541 port 581 151541 unique_id port 151541 remote_ip 10.8.0.182 151542 username hashtadani4 151542 mac 151542 bytes_out 0 151542 bytes_in 0 151542 station_ip 113.203.64.66 151542 port 265 151500 station_ip 113.203.64.66 151500 port 579 151500 unique_id port 151500 remote_ip 10.8.0.182 151501 username hashtadani4 151501 mac 151501 bytes_out 0 151501 bytes_in 0 151501 station_ip 113.203.64.66 151501 port 273 151501 unique_id port 151501 remote_ip 10.8.1.142 151503 username hashtadani4 151503 mac 151503 bytes_out 0 151503 bytes_in 0 151503 station_ip 113.203.64.66 151503 port 273 151503 unique_id port 151503 remote_ip 10.8.1.142 151510 username hashtadani4 151510 mac 151510 bytes_out 0 151510 bytes_in 0 151510 station_ip 113.203.64.66 151510 port 273 151510 unique_id port 151510 remote_ip 10.8.1.142 151511 username hashtadani4 151511 mac 151511 bytes_out 0 151511 bytes_in 0 151511 station_ip 113.203.64.66 151511 port 579 151511 unique_id port 151511 remote_ip 10.8.0.182 151514 username hashtadani4 151514 mac 151514 bytes_out 0 151514 bytes_in 0 151514 station_ip 113.203.64.66 151514 port 273 151514 unique_id port 151514 remote_ip 10.8.1.142 151515 username hashtadani4 151515 mac 151515 bytes_out 0 151515 bytes_in 0 151515 station_ip 113.203.64.66 151515 port 569 151515 unique_id port 151515 remote_ip 10.8.0.182 151517 username hashtadani4 151517 mac 151517 bytes_out 0 151517 bytes_in 0 151517 station_ip 113.203.64.66 151517 port 569 151517 unique_id port 151517 remote_ip 10.8.0.182 151518 username hashtadani4 151518 mac 151518 bytes_out 0 151518 bytes_in 0 151518 station_ip 113.203.64.66 151518 port 569 151518 unique_id port 151518 remote_ip 10.8.0.182 151521 username hashtadani4 151521 mac 151521 bytes_out 0 151521 bytes_in 0 151521 station_ip 113.203.64.66 151521 port 569 151521 unique_id port 151521 remote_ip 10.8.0.182 151525 username barzegar 151525 mac 151525 bytes_out 0 151525 bytes_in 0 151525 station_ip 5.119.104.167 151525 port 280 151525 unique_id port 151525 remote_ip 10.8.1.174 151526 username hashtadani4 151526 mac 151526 bytes_out 0 151526 bytes_in 0 151526 station_ip 113.203.64.66 151526 port 569 151526 unique_id port 151526 remote_ip 10.8.0.182 151528 username hashtadani4 151528 mac 151528 bytes_out 0 151528 bytes_in 0 151528 station_ip 113.203.64.66 151528 port 569 151528 unique_id port 151528 remote_ip 10.8.0.182 151529 username hashtadani4 151529 mac 151529 bytes_out 0 151529 bytes_in 0 151529 station_ip 113.203.64.66 151529 port 569 151529 unique_id port 151529 remote_ip 10.8.0.182 151531 username hashtadani4 151531 mac 151531 bytes_out 0 151531 bytes_in 0 151531 station_ip 113.203.64.66 151531 port 569 151531 unique_id port 151531 remote_ip 10.8.0.182 151540 username hashtadani4 151540 mac 151540 bytes_out 0 151540 bytes_in 0 151540 station_ip 113.203.64.66 151540 port 584 151540 unique_id port 151540 remote_ip 10.8.0.182 151545 username alihosseini1 151545 mac 151545 bytes_out 0 151545 bytes_in 0 151545 station_ip 5.119.211.131 151545 port 581 151545 unique_id port 151545 remote_ip 10.8.0.166 151547 username hashtadani4 151547 mac 151547 bytes_out 0 151547 bytes_in 0 151547 station_ip 113.203.64.66 151547 port 265 151547 unique_id port 151547 remote_ip 10.8.1.142 151552 username alihosseini1 151552 mac 151552 bytes_out 0 151552 bytes_in 0 151552 station_ip 5.119.211.131 151552 port 265 151552 unique_id port 151552 remote_ip 10.8.1.106 151556 username alihosseini1 151556 mac 151556 bytes_out 0 151556 bytes_in 0 151556 station_ip 5.119.211.131 151556 port 586 151542 unique_id port 151542 remote_ip 10.8.1.142 151549 username hashtadani4 151549 mac 151549 bytes_out 0 151549 bytes_in 0 151549 station_ip 113.203.64.66 151549 port 586 151549 unique_id port 151549 remote_ip 10.8.0.182 151550 username hashtadani4 151550 mac 151550 bytes_out 0 151550 bytes_in 0 151550 station_ip 113.203.64.66 151550 port 265 151550 unique_id port 151550 remote_ip 10.8.1.142 151553 username hashtadani4 151553 mac 151553 bytes_out 0 151553 bytes_in 0 151553 station_ip 113.203.64.66 151553 port 581 151553 unique_id port 151553 remote_ip 10.8.0.182 151554 username hashtadani4 151554 mac 151554 bytes_out 0 151554 bytes_in 0 151554 station_ip 113.203.64.66 151554 port 581 151554 unique_id port 151554 remote_ip 10.8.0.182 151558 username hashtadani4 151558 mac 151558 bytes_out 0 151558 bytes_in 0 151558 station_ip 113.203.64.66 151558 port 265 151558 unique_id port 151558 remote_ip 10.8.1.142 151560 username hashtadani4 151560 mac 151560 bytes_out 0 151560 bytes_in 0 151560 station_ip 113.203.64.66 151560 port 575 151560 unique_id port 151560 remote_ip 10.8.0.182 151565 username mirzaei 151565 kill_reason Another user logged on this global unique id 151565 mac 151565 bytes_out 0 151565 bytes_in 0 151565 station_ip 5.119.66.157 151565 port 560 151565 unique_id port 151569 username hashtadani4 151569 mac 151569 bytes_out 0 151569 bytes_in 0 151569 station_ip 113.203.64.66 151569 port 265 151569 unique_id port 151569 remote_ip 10.8.1.142 151570 username hashtadani4 151570 mac 151570 bytes_out 0 151570 bytes_in 0 151570 station_ip 113.203.64.66 151570 port 569 151570 unique_id port 151570 remote_ip 10.8.0.182 151575 username hashtadani4 151575 mac 151575 bytes_out 0 151575 bytes_in 0 151575 station_ip 113.203.64.66 151575 port 569 151575 unique_id port 151575 remote_ip 10.8.0.182 151580 username hashtadani4 151580 mac 151580 bytes_out 0 151580 bytes_in 0 151580 station_ip 113.203.64.66 151580 port 273 151580 unique_id port 151580 remote_ip 10.8.1.142 151581 username hashtadani4 151581 mac 151581 bytes_out 0 151581 bytes_in 0 151581 station_ip 113.203.64.66 151581 port 273 151581 unique_id port 151581 remote_ip 10.8.1.142 151582 username hashtadani4 151582 mac 151582 bytes_out 0 151582 bytes_in 0 151582 station_ip 113.203.64.66 151582 port 575 151582 unique_id port 151582 remote_ip 10.8.0.182 151584 username hashtadani4 151584 mac 151584 bytes_out 0 151584 bytes_in 0 151584 station_ip 113.203.64.66 151584 port 581 151584 unique_id port 151584 remote_ip 10.8.0.182 151592 username hashtadani4 151592 mac 151592 bytes_out 0 151592 bytes_in 0 151592 station_ip 113.203.64.66 151592 port 584 151592 unique_id port 151592 remote_ip 10.8.0.182 151594 username vanila 151594 mac 151594 bytes_out 260791 151594 bytes_in 912238 151594 station_ip 83.122.227.176 151594 port 569 151594 unique_id port 151594 remote_ip 10.8.0.178 151602 username hashtadani4 151602 mac 151602 bytes_out 0 151602 bytes_in 0 151602 station_ip 113.203.64.66 151602 port 273 151602 unique_id port 151602 remote_ip 10.8.1.142 151604 username alihosseini1 151604 mac 151604 bytes_out 0 151604 bytes_in 0 151604 station_ip 5.119.211.131 151604 port 581 151604 unique_id port 151604 remote_ip 10.8.0.166 151606 username hashtadani4 151606 mac 151606 bytes_out 0 151606 bytes_in 0 151606 station_ip 113.203.64.66 151606 port 581 151606 unique_id port 151546 remote_ip 10.8.1.142 151548 username alihosseini1 151548 mac 151548 bytes_out 0 151548 bytes_in 0 151548 station_ip 5.119.211.131 151548 port 581 151548 unique_id port 151548 remote_ip 10.8.0.166 151551 username barzegar 151551 mac 151551 bytes_out 0 151551 bytes_in 0 151551 station_ip 5.119.104.167 151551 port 273 151551 unique_id port 151551 remote_ip 10.8.1.174 151555 username kordestani 151555 mac 151555 bytes_out 317153 151555 bytes_in 4176001 151555 station_ip 151.235.82.128 151555 port 584 151555 unique_id port 151555 remote_ip 10.8.0.134 151557 username mohammadmahdi 151557 mac 151557 bytes_out 0 151557 bytes_in 0 151557 station_ip 5.120.71.18 151557 port 575 151557 unique_id port 151559 username hashtadani4 151559 mac 151559 bytes_out 0 151559 bytes_in 0 151559 station_ip 113.203.64.66 151559 port 575 151559 unique_id port 151559 remote_ip 10.8.0.182 151562 username rezaei 151562 mac 151562 bytes_out 0 151562 bytes_in 0 151562 station_ip 5.120.46.216 151562 port 583 151562 unique_id port 151564 username hashtadani4 151564 mac 151564 bytes_out 0 151564 bytes_in 0 151564 station_ip 113.203.64.66 151564 port 575 151564 unique_id port 151564 remote_ip 10.8.0.182 151566 username hashtadani4 151566 mac 151566 bytes_out 0 151566 bytes_in 0 151566 station_ip 113.203.64.66 151566 port 265 151566 unique_id port 151566 remote_ip 10.8.1.142 151567 username hashtadani4 151567 mac 151567 bytes_out 0 151567 bytes_in 0 151567 station_ip 113.203.64.66 151567 port 265 151567 unique_id port 151567 remote_ip 10.8.1.142 151572 username barzegar 151572 mac 151572 bytes_out 0 151572 bytes_in 0 151572 station_ip 5.119.104.167 151572 port 569 151572 unique_id port 151572 remote_ip 10.8.0.234 151573 username hashtadani4 151573 mac 151573 bytes_out 0 151573 bytes_in 0 151573 station_ip 113.203.64.66 151573 port 569 151573 unique_id port 151573 remote_ip 10.8.0.182 151576 username hashtadani4 151576 mac 151576 bytes_out 0 151576 bytes_in 0 151576 station_ip 113.203.64.66 151576 port 273 151576 unique_id port 151576 remote_ip 10.8.1.142 151577 username hamidsalari 151577 kill_reason Another user logged on this global unique id 151577 mac 151577 bytes_out 0 151577 bytes_in 0 151577 station_ip 5.119.159.147 151577 port 557 151577 unique_id port 151577 remote_ip 10.8.0.222 151579 username khalili 151579 kill_reason Another user logged on this global unique id 151579 mac 151579 bytes_out 0 151579 bytes_in 0 151579 station_ip 5.120.42.66 151579 port 541 151579 unique_id port 151583 username hashtadani4 151583 mac 151583 bytes_out 0 151583 bytes_in 0 151583 station_ip 113.203.64.66 151583 port 575 151583 unique_id port 151583 remote_ip 10.8.0.182 151585 username hashtadani4 151585 mac 151585 bytes_out 0 151585 bytes_in 0 151585 station_ip 113.203.64.66 151585 port 581 151585 unique_id port 151585 remote_ip 10.8.0.182 151587 username hashtadani4 151587 mac 151587 bytes_out 0 151587 bytes_in 0 151587 station_ip 113.203.64.66 151587 port 583 151587 unique_id port 151587 remote_ip 10.8.0.182 151590 username hashtadani4 151590 mac 151590 bytes_out 0 151590 bytes_in 0 151590 station_ip 113.203.64.66 151590 port 584 151590 unique_id port 151590 remote_ip 10.8.0.182 151595 username hashtadani4 151595 mac 151595 bytes_out 0 151595 bytes_in 0 151595 station_ip 113.203.64.66 151595 port 584 151595 unique_id port 151595 remote_ip 10.8.0.182 151600 username hashtadani4 151556 unique_id port 151556 remote_ip 10.8.0.166 151561 username alihosseini1 151561 mac 151561 bytes_out 0 151561 bytes_in 0 151561 station_ip 5.119.211.131 151561 port 265 151561 unique_id port 151561 remote_ip 10.8.1.106 151563 username rajaei 151563 mac 151563 bytes_out 0 151563 bytes_in 0 151563 station_ip 94.24.22.191 151563 port 569 151563 unique_id port 151563 remote_ip 10.8.0.34 151568 username hashtadani4 151568 mac 151568 bytes_out 0 151568 bytes_in 0 151568 station_ip 113.203.64.66 151568 port 265 151568 unique_id port 151568 remote_ip 10.8.1.142 151571 username hashtadani4 151571 mac 151571 bytes_out 0 151571 bytes_in 0 151571 station_ip 113.203.64.66 151571 port 265 151571 unique_id port 151571 remote_ip 10.8.1.142 151574 username alihosseini1 151574 mac 151574 bytes_out 0 151574 bytes_in 0 151574 station_ip 5.119.211.131 151574 port 273 151574 unique_id port 151574 remote_ip 10.8.1.106 151578 username hashtadani4 151578 kill_reason Maximum check online fails reached 151578 mac 151578 bytes_out 0 151578 bytes_in 0 151578 station_ip 113.203.64.66 151578 port 265 151578 unique_id port 151586 username hashtadani4 151586 mac 151586 bytes_out 0 151586 bytes_in 0 151586 station_ip 113.203.64.66 151586 port 581 151586 unique_id port 151586 remote_ip 10.8.0.182 151588 username hashtadani4 151588 mac 151588 bytes_out 0 151588 bytes_in 0 151588 station_ip 113.203.64.66 151588 port 583 151588 unique_id port 151588 remote_ip 10.8.0.182 151589 username hashtadani4 151589 mac 151589 bytes_out 0 151589 bytes_in 0 151589 station_ip 113.203.64.66 151589 port 583 151589 unique_id port 151589 remote_ip 10.8.0.182 151591 username hashtadani4 151591 mac 151591 bytes_out 0 151591 bytes_in 0 151591 station_ip 113.203.64.66 151591 port 584 151591 unique_id port 151591 remote_ip 10.8.0.182 151593 username hashtadani4 151593 mac 151593 bytes_out 0 151593 bytes_in 0 151593 station_ip 113.203.64.66 151593 port 273 151593 unique_id port 151593 remote_ip 10.8.1.142 151596 username hashtadani4 151596 mac 151596 bytes_out 0 151596 bytes_in 0 151596 station_ip 113.203.64.66 151596 port 584 151596 unique_id port 151596 remote_ip 10.8.0.182 151597 username arash 151597 mac 151597 bytes_out 85948 151597 bytes_in 162200 151597 station_ip 5.134.164.147 151597 port 583 151597 unique_id port 151597 remote_ip 10.8.0.114 151598 username hashtadani4 151598 mac 151598 bytes_out 0 151598 bytes_in 0 151598 station_ip 113.203.64.66 151598 port 583 151598 unique_id port 151598 remote_ip 10.8.0.182 151599 username barzegar 151599 mac 151599 bytes_out 0 151599 bytes_in 0 151599 station_ip 5.119.104.167 151599 port 583 151599 unique_id port 151599 remote_ip 10.8.0.234 151605 username hashtadani4 151605 mac 151605 bytes_out 0 151605 bytes_in 0 151605 station_ip 113.203.64.66 151605 port 581 151605 unique_id port 151605 remote_ip 10.8.0.182 151610 username godarzi 151610 mac 151610 bytes_out 0 151610 bytes_in 0 151610 station_ip 5.202.24.27 151610 port 583 151610 unique_id port 151610 remote_ip 10.8.0.174 151611 username hashtadani4 151611 mac 151611 bytes_out 0 151611 bytes_in 0 151611 station_ip 113.203.64.66 151611 port 583 151611 unique_id port 151611 remote_ip 10.8.0.182 151613 username hashtadani4 151613 mac 151613 bytes_out 0 151613 bytes_in 0 151613 station_ip 113.203.64.66 151613 port 583 151613 unique_id port 151613 remote_ip 10.8.0.182 151600 mac 151600 bytes_out 0 151600 bytes_in 0 151600 station_ip 113.203.64.66 151600 port 273 151600 unique_id port 151600 remote_ip 10.8.1.142 151601 username barzegar 151601 mac 151601 bytes_out 0 151601 bytes_in 0 151601 station_ip 5.119.104.167 151601 port 583 151601 unique_id port 151601 remote_ip 10.8.0.234 151603 username hashtadani4 151603 mac 151603 bytes_out 0 151603 bytes_in 0 151603 station_ip 113.203.64.66 151603 port 273 151603 unique_id port 151603 remote_ip 10.8.1.142 151609 username hashtadani4 151609 mac 151609 bytes_out 0 151609 bytes_in 0 151609 station_ip 113.203.64.66 151609 port 581 151609 unique_id port 151609 remote_ip 10.8.0.182 151614 username moradi 151614 mac 151614 bytes_out 2408525 151614 bytes_in 42994434 151614 station_ip 113.203.58.47 151614 port 575 151614 unique_id port 151614 remote_ip 10.8.0.226 151616 username hashtadani4 151616 mac 151616 bytes_out 6154 151616 bytes_in 14094 151616 station_ip 113.203.64.66 151616 port 273 151616 unique_id port 151616 remote_ip 10.8.1.142 151618 username hashtadani4 151618 mac 151618 bytes_out 0 151618 bytes_in 0 151618 station_ip 113.203.64.66 151618 port 575 151618 unique_id port 151618 remote_ip 10.8.0.182 151622 username hashtadani4 151622 mac 151622 bytes_out 0 151622 bytes_in 0 151622 station_ip 113.203.64.66 151622 port 581 151622 unique_id port 151622 remote_ip 10.8.0.182 151631 username mohammadmahdi 151631 mac 151631 bytes_out 3205122 151631 bytes_in 42794315 151631 station_ip 5.120.71.18 151631 port 584 151631 unique_id port 151631 remote_ip 10.8.0.54 151637 username tahmasebi 151637 mac 151637 bytes_out 0 151637 bytes_in 0 151637 station_ip 5.120.15.39 151637 port 575 151637 unique_id port 151641 username rezaei 151641 mac 151641 bytes_out 5801 151641 bytes_in 15372 151641 station_ip 5.120.46.216 151641 port 575 151641 unique_id port 151641 remote_ip 10.8.0.230 151645 username barzegar 151645 mac 151645 bytes_out 0 151645 bytes_in 0 151645 station_ip 5.119.104.167 151645 port 280 151645 unique_id port 151645 remote_ip 10.8.1.174 151651 username mohammadjavad 151651 mac 151651 bytes_out 0 151651 bytes_in 0 151651 station_ip 83.122.36.252 151651 port 583 151651 unique_id port 151651 remote_ip 10.8.0.142 151652 username barzegar 151652 mac 151652 bytes_out 0 151652 bytes_in 0 151652 station_ip 5.119.104.167 151652 port 586 151652 unique_id port 151652 remote_ip 10.8.0.234 151655 username barzegar 151655 mac 151655 bytes_out 2601 151655 bytes_in 5101 151655 station_ip 5.119.104.167 151655 port 581 151655 unique_id port 151655 remote_ip 10.8.0.234 151662 username barzegar 151662 mac 151662 bytes_out 2359 151662 bytes_in 4828 151662 station_ip 5.119.104.167 151662 port 569 151662 unique_id port 151662 remote_ip 10.8.0.234 151664 username moradi 151664 mac 151664 bytes_out 0 151664 bytes_in 0 151664 station_ip 113.203.38.47 151664 port 583 151664 unique_id port 151666 username mostafa_es78 151666 unique_id port 151666 terminate_cause User-Request 151666 bytes_out 42795 151666 bytes_in 369327 151666 station_ip 5.126.133.123 151666 port 15731098 151666 nas_port_type Virtual 151666 remote_ip 5.5.5.252 151669 username mohammadjavad 151669 mac 151669 bytes_out 0 151669 bytes_in 0 151669 station_ip 83.122.125.223 151669 port 586 151669 unique_id port 151669 remote_ip 10.8.0.142 151671 username khalili 151671 kill_reason Another user logged on this global unique id 151671 mac 151606 remote_ip 10.8.0.182 151607 username hashtadani4 151607 mac 151607 bytes_out 0 151607 bytes_in 0 151607 station_ip 113.203.64.66 151607 port 581 151607 unique_id port 151607 remote_ip 10.8.0.182 151608 username hashtadani4 151608 mac 151608 bytes_out 0 151608 bytes_in 0 151608 station_ip 113.203.64.66 151608 port 581 151608 unique_id port 151608 remote_ip 10.8.0.182 151612 username barzegar 151612 mac 151612 bytes_out 0 151612 bytes_in 0 151612 station_ip 5.119.104.167 151612 port 581 151612 unique_id port 151612 remote_ip 10.8.0.234 151617 username hashtadani4 151617 mac 151617 bytes_out 0 151617 bytes_in 0 151617 station_ip 113.203.64.66 151617 port 575 151617 unique_id port 151617 remote_ip 10.8.0.182 151621 username hashtadani4 151621 mac 151621 bytes_out 0 151621 bytes_in 0 151621 station_ip 113.203.64.66 151621 port 575 151621 unique_id port 151621 remote_ip 10.8.0.182 151625 username hashtadani4 151625 mac 151625 bytes_out 0 151625 bytes_in 0 151625 station_ip 113.203.64.66 151625 port 273 151625 unique_id port 151625 remote_ip 10.8.1.142 151626 username barzegar 151626 mac 151626 bytes_out 0 151626 bytes_in 0 151626 station_ip 5.119.104.167 151626 port 273 151626 unique_id port 151626 remote_ip 10.8.1.174 151628 username hashtadani4 151628 mac 151628 bytes_out 0 151628 bytes_in 0 151628 station_ip 113.203.64.66 151628 port 581 151628 unique_id port 151628 remote_ip 10.8.0.182 151629 username hashtadani4 151629 mac 151629 bytes_out 0 151629 bytes_in 0 151629 station_ip 113.203.64.66 151629 port 273 151629 unique_id port 151629 remote_ip 10.8.1.142 151638 username barzegar 151638 mac 151638 bytes_out 0 151638 bytes_in 0 151638 station_ip 5.119.104.167 151638 port 584 151638 unique_id port 151638 remote_ip 10.8.0.234 151639 username aminvpn 151639 unique_id port 151639 terminate_cause Lost-Carrier 151639 bytes_out 1787573 151639 bytes_in 6136697 151639 station_ip 5.119.82.189 151639 port 15731094 151639 nas_port_type Virtual 151639 remote_ip 5.5.5.252 151640 username rezaei 151640 mac 151640 bytes_out 438470 151640 bytes_in 1951051 151640 station_ip 5.120.46.216 151640 port 583 151640 unique_id port 151640 remote_ip 10.8.0.230 151642 username milan 151642 kill_reason Another user logged on this global unique id 151642 mac 151642 bytes_out 0 151642 bytes_in 0 151642 station_ip 5.120.31.183 151642 port 569 151642 unique_id port 151644 username milan 151644 kill_reason Another user logged on this global unique id 151644 mac 151644 bytes_out 0 151644 bytes_in 0 151644 station_ip 5.120.31.183 151644 port 569 151644 unique_id port 151646 username hatami 151646 mac 151646 bytes_out 511485 151646 bytes_in 6518418 151646 station_ip 151.235.125.250 151646 port 584 151646 unique_id port 151646 remote_ip 10.8.0.106 151648 username vanila 151648 mac 151648 bytes_out 523764 151648 bytes_in 5283378 151648 station_ip 83.122.227.176 151648 port 583 151648 unique_id port 151648 remote_ip 10.8.0.178 151653 username milan 151653 kill_reason Another user logged on this global unique id 151653 mac 151653 bytes_out 0 151653 bytes_in 0 151653 station_ip 5.120.31.183 151653 port 569 151653 unique_id port 151654 username sedighe 151654 mac 151654 bytes_out 289065 151654 bytes_in 823579 151654 station_ip 83.122.129.64 151654 port 581 151654 unique_id port 151654 remote_ip 10.8.0.146 151656 username milan 151656 kill_reason Another user logged on this global unique id 151656 mac 151656 bytes_out 0 151656 bytes_in 0 151615 username hashtadani4 151615 mac 151615 bytes_out 0 151615 bytes_in 0 151615 station_ip 113.203.64.66 151615 port 575 151615 unique_id port 151615 remote_ip 10.8.0.182 151619 username hashtadani4 151619 mac 151619 bytes_out 0 151619 bytes_in 0 151619 station_ip 113.203.64.66 151619 port 575 151619 unique_id port 151619 remote_ip 10.8.0.182 151620 username hashtadani4 151620 mac 151620 bytes_out 0 151620 bytes_in 0 151620 station_ip 113.203.64.66 151620 port 575 151620 unique_id port 151620 remote_ip 10.8.0.182 151623 username hashtadani4 151623 mac 151623 bytes_out 0 151623 bytes_in 0 151623 station_ip 113.203.64.66 151623 port 581 151623 unique_id port 151623 remote_ip 10.8.0.182 151624 username hashtadani4 151624 mac 151624 bytes_out 0 151624 bytes_in 0 151624 station_ip 113.203.64.66 151624 port 581 151624 unique_id port 151624 remote_ip 10.8.0.182 151627 username hashtadani4 151627 mac 151627 bytes_out 0 151627 bytes_in 0 151627 station_ip 113.203.64.66 151627 port 581 151627 unique_id port 151627 remote_ip 10.8.0.182 151630 username vanila 151630 mac 151630 bytes_out 236858 151630 bytes_in 2255681 151630 station_ip 83.122.227.176 151630 port 575 151630 unique_id port 151630 remote_ip 10.8.0.178 151632 username hashtadani4 151632 kill_reason Maximum check online fails reached 151632 mac 151632 bytes_out 0 151632 bytes_in 0 151632 station_ip 113.203.64.66 151632 port 273 151632 unique_id port 151633 username vanila 151633 mac 151633 bytes_out 135892 151633 bytes_in 710225 151633 station_ip 83.122.227.176 151633 port 581 151633 unique_id port 151633 remote_ip 10.8.0.178 151634 username barzegar 151634 mac 151634 bytes_out 0 151634 bytes_in 0 151634 station_ip 5.119.104.167 151634 port 583 151634 unique_id port 151634 remote_ip 10.8.0.234 151635 username tahmasebi 151635 kill_reason Another user logged on this global unique id 151635 mac 151635 bytes_out 0 151635 bytes_in 0 151635 station_ip 5.120.15.39 151635 port 575 151635 unique_id port 151635 remote_ip 10.8.0.42 151636 username milan 151636 kill_reason Another user logged on this global unique id 151636 mac 151636 bytes_out 0 151636 bytes_in 0 151636 station_ip 5.120.31.183 151636 port 569 151636 unique_id port 151636 remote_ip 10.8.0.218 151643 username barzegar 151643 mac 151643 bytes_out 0 151643 bytes_in 0 151643 station_ip 5.119.104.167 151643 port 280 151643 unique_id port 151643 remote_ip 10.8.1.174 151647 username godarzi 151647 mac 151647 bytes_out 395545 151647 bytes_in 6073361 151647 station_ip 5.202.24.27 151647 port 586 151647 unique_id port 151647 remote_ip 10.8.0.174 151649 username milan 151649 kill_reason Another user logged on this global unique id 151649 mac 151649 bytes_out 0 151649 bytes_in 0 151649 station_ip 5.120.31.183 151649 port 569 151649 unique_id port 151650 username mostafa_es78 151650 unique_id port 151650 terminate_cause User-Request 151650 bytes_out 2488449 151650 bytes_in 52944946 151650 station_ip 5.126.213.63 151650 port 15731092 151650 nas_port_type Virtual 151650 remote_ip 5.5.5.254 151660 username milan 151660 mac 151660 bytes_out 0 151660 bytes_in 0 151660 station_ip 5.120.31.183 151660 port 569 151660 unique_id port 151661 username kalantary 151661 mac 151661 bytes_out 0 151661 bytes_in 0 151661 station_ip 37.129.191.65 151661 port 581 151661 unique_id port 151661 remote_ip 10.8.0.98 151663 username barzegar 151663 mac 151663 bytes_out 0 151663 bytes_in 0 151663 station_ip 5.119.104.167 151656 station_ip 5.120.31.183 151656 port 569 151656 unique_id port 151657 username barzegar 151657 mac 151657 bytes_out 0 151657 bytes_in 0 151657 station_ip 5.119.104.167 151657 port 581 151657 unique_id port 151657 remote_ip 10.8.0.234 151658 username milan 151658 kill_reason Another user logged on this global unique id 151658 mac 151658 bytes_out 0 151658 bytes_in 0 151658 station_ip 5.120.31.183 151658 port 569 151658 unique_id port 151659 username moradi 151659 kill_reason Another user logged on this global unique id 151659 mac 151659 bytes_out 0 151659 bytes_in 0 151659 station_ip 113.203.38.47 151659 port 583 151659 unique_id port 151659 remote_ip 10.8.0.226 151667 username barzegar 151667 mac 151667 bytes_out 0 151667 bytes_in 0 151667 station_ip 5.119.104.167 151667 port 280 151667 unique_id port 151667 remote_ip 10.8.1.174 151670 username khademi 151670 kill_reason Another user logged on this global unique id 151670 mac 151670 bytes_out 0 151670 bytes_in 0 151670 station_ip 83.122.214.152 151670 port 556 151670 unique_id port 151670 remote_ip 10.8.0.10 151672 username kalantary 151672 mac 151672 bytes_out 0 151672 bytes_in 0 151672 station_ip 37.129.248.153 151672 port 569 151672 unique_id port 151672 remote_ip 10.8.0.98 151677 username hosseine 151677 mac 151677 bytes_out 0 151677 bytes_in 0 151677 station_ip 37.129.2.226 151677 port 561 151677 unique_id port 151680 username rezaei 151680 kill_reason Another user logged on this global unique id 151680 mac 151680 bytes_out 0 151680 bytes_in 0 151680 station_ip 5.120.46.216 151680 port 584 151680 unique_id port 151681 username sabaghnezhad 151681 mac 151681 bytes_out 237619 151681 bytes_in 1210209 151681 station_ip 37.129.9.137 151681 port 579 151681 unique_id port 151681 remote_ip 10.8.0.186 151682 username kalantary 151682 mac 151682 bytes_out 465940 151682 bytes_in 1827913 151682 station_ip 37.129.187.25 151682 port 561 151682 unique_id port 151682 remote_ip 10.8.0.98 151683 username barzegar 151683 mac 151683 bytes_out 0 151683 bytes_in 0 151683 station_ip 5.119.104.167 151683 port 579 151683 unique_id port 151683 remote_ip 10.8.0.234 151684 username moradi 151684 mac 151684 bytes_out 0 151684 bytes_in 0 151684 station_ip 46.225.210.41 151684 port 561 151684 unique_id port 151684 remote_ip 10.8.0.226 151687 username barzegar 151687 mac 151687 bytes_out 0 151687 bytes_in 0 151687 station_ip 5.119.104.167 151687 port 589 151687 unique_id port 151687 remote_ip 10.8.0.234 151688 username barzegar 151688 mac 151688 bytes_out 0 151688 bytes_in 0 151688 station_ip 5.119.104.167 151688 port 589 151688 unique_id port 151688 remote_ip 10.8.0.234 151697 username aminvpn 151697 unique_id port 151697 terminate_cause User-Request 151697 bytes_out 4608743 151697 bytes_in 26042595 151697 station_ip 5.160.115.36 151697 port 15731097 151697 nas_port_type Virtual 151697 remote_ip 5.5.5.162 151699 username kalantary 151699 mac 151699 bytes_out 1498686 151699 bytes_in 7957487 151699 station_ip 37.129.187.25 151699 port 579 151699 unique_id port 151699 remote_ip 10.8.0.98 151709 username amin.saeedi 151709 unique_id port 151709 terminate_cause User-Request 151709 bytes_out 2573689 151709 bytes_in 61997525 151709 station_ip 151.238.243.163 151709 port 15731101 151709 nas_port_type Virtual 151709 remote_ip 5.5.5.90 151710 username barzegar 151710 mac 151710 bytes_out 0 151710 bytes_in 0 151710 station_ip 5.119.104.167 151710 port 556 151710 unique_id port 151710 remote_ip 10.8.0.234 151663 port 280 151663 unique_id port 151663 remote_ip 10.8.1.174 151665 username mostafa_es78 151665 unique_id port 151665 terminate_cause User-Request 151665 bytes_out 641566 151665 bytes_in 3960660 151665 station_ip 5.125.4.229 151665 port 15731096 151665 nas_port_type Virtual 151665 remote_ip 5.5.5.64 151668 username sabaghnezhad 151668 mac 151668 bytes_out 1461172 151668 bytes_in 8664586 151668 station_ip 37.129.9.137 151668 port 579 151668 unique_id port 151668 remote_ip 10.8.0.186 151673 username barzegar 151673 mac 151673 bytes_out 3086 151673 bytes_in 5853 151673 station_ip 5.119.104.167 151673 port 280 151673 unique_id port 151673 remote_ip 10.8.1.174 151674 username rezaei 151674 kill_reason Another user logged on this global unique id 151674 mac 151674 bytes_out 0 151674 bytes_in 0 151674 station_ip 5.120.46.216 151674 port 584 151674 unique_id port 151674 remote_ip 10.8.0.230 151678 username hamid.e 151678 unique_id port 151678 terminate_cause Lost-Carrier 151678 bytes_out 2163243 151678 bytes_in 39716599 151678 station_ip 37.27.22.60 151678 port 15731093 151678 nas_port_type Virtual 151678 remote_ip 5.5.5.253 151686 username rezaei 151686 kill_reason Another user logged on this global unique id 151686 mac 151686 bytes_out 0 151686 bytes_in 0 151686 station_ip 5.120.46.216 151686 port 584 151686 unique_id port 151689 username barzegar 151689 mac 151689 bytes_out 0 151689 bytes_in 0 151689 station_ip 5.119.104.167 151689 port 589 151689 unique_id port 151689 remote_ip 10.8.0.234 151693 username barzegar 151693 mac 151693 bytes_out 0 151693 bytes_in 0 151693 station_ip 5.119.104.167 151693 port 541 151693 unique_id port 151693 remote_ip 10.8.0.234 151694 username pourshad 151694 mac 151694 bytes_out 506298 151694 bytes_in 3153501 151694 station_ip 5.119.234.176 151694 port 575 151694 unique_id port 151694 remote_ip 10.8.0.18 151698 username rezaei 151698 kill_reason Another user logged on this global unique id 151698 mac 151698 bytes_out 0 151698 bytes_in 0 151698 station_ip 5.120.46.216 151698 port 584 151698 unique_id port 151700 username morteza 151700 kill_reason Another user logged on this global unique id 151700 mac 151700 bytes_out 0 151700 bytes_in 0 151700 station_ip 113.203.23.54 151700 port 561 151700 unique_id port 151701 username barzegar 151701 mac 151701 bytes_out 0 151701 bytes_in 0 151701 station_ip 5.119.104.167 151701 port 589 151701 unique_id port 151701 remote_ip 10.8.0.234 151702 username barzegar 151702 mac 151702 bytes_out 0 151702 bytes_in 0 151702 station_ip 5.119.104.167 151702 port 589 151702 unique_id port 151702 remote_ip 10.8.0.234 151704 username saeed9658 151704 mac 151704 bytes_out 0 151704 bytes_in 0 151704 station_ip 5.120.158.111 151704 port 280 151704 unique_id port 151704 remote_ip 10.8.1.210 151706 username khademi 151706 mac 151706 bytes_out 0 151706 bytes_in 0 151706 station_ip 83.122.214.152 151706 port 556 151706 unique_id port 151712 username morteza 151712 kill_reason Another user logged on this global unique id 151712 mac 151712 bytes_out 0 151712 bytes_in 0 151712 station_ip 113.203.23.54 151712 port 561 151712 unique_id port 151716 username alipour 151716 mac 151716 bytes_out 0 151716 bytes_in 0 151716 station_ip 37.129.32.164 151716 port 553 151716 unique_id port 151721 username rezaei 151721 mac 151721 bytes_out 0 151721 bytes_in 0 151721 station_ip 5.120.46.216 151721 port 584 151721 unique_id port 151724 username morteza 151724 kill_reason Another user logged on this global unique id 151671 bytes_out 0 151671 bytes_in 0 151671 station_ip 5.120.42.66 151671 port 541 151671 unique_id port 151675 username barzegar 151675 kill_reason Maximum check online fails reached 151675 mac 151675 bytes_out 0 151675 bytes_in 0 151675 station_ip 5.119.104.167 151675 port 569 151675 unique_id port 151676 username barzegar 151676 mac 151676 bytes_out 0 151676 bytes_in 0 151676 station_ip 5.119.104.167 151676 port 280 151676 unique_id port 151676 remote_ip 10.8.1.174 151679 username barzegar 151679 mac 151679 bytes_out 0 151679 bytes_in 0 151679 station_ip 5.119.104.167 151679 port 583 151679 unique_id port 151679 remote_ip 10.8.0.234 151685 username morteza 151685 kill_reason Another user logged on this global unique id 151685 mac 151685 bytes_out 0 151685 bytes_in 0 151685 station_ip 113.203.23.54 151685 port 561 151685 unique_id port 151685 remote_ip 10.8.0.46 151690 username khalili 151690 mac 151690 bytes_out 0 151690 bytes_in 0 151690 station_ip 5.120.42.66 151690 port 541 151690 unique_id port 151691 username morteza 151691 kill_reason Another user logged on this global unique id 151691 mac 151691 bytes_out 0 151691 bytes_in 0 151691 station_ip 113.203.23.54 151691 port 561 151691 unique_id port 151692 username khalili 151692 mac 151692 bytes_out 0 151692 bytes_in 0 151692 station_ip 5.120.42.66 151692 port 541 151692 unique_id port 151692 remote_ip 10.8.0.86 151695 username alipour 151695 kill_reason Another user logged on this global unique id 151695 mac 151695 bytes_out 0 151695 bytes_in 0 151695 station_ip 37.129.32.164 151695 port 553 151695 unique_id port 151695 remote_ip 10.8.0.102 151696 username milan 151696 kill_reason Another user logged on this global unique id 151696 mac 151696 bytes_out 0 151696 bytes_in 0 151696 station_ip 5.120.37.194 151696 port 587 151696 unique_id port 151696 remote_ip 10.8.0.218 151703 username hamid.e 151703 unique_id port 151703 terminate_cause User-Request 151703 bytes_out 280597 151703 bytes_in 5014011 151703 station_ip 37.27.25.114 151703 port 15731100 151703 nas_port_type Virtual 151703 remote_ip 5.5.5.89 151705 username alipour 151705 kill_reason Another user logged on this global unique id 151705 mac 151705 bytes_out 0 151705 bytes_in 0 151705 station_ip 37.129.32.164 151705 port 553 151705 unique_id port 151707 username godarzi 151707 mac 151707 bytes_out 0 151707 bytes_in 0 151707 station_ip 5.202.24.27 151707 port 589 151707 unique_id port 151707 remote_ip 10.8.0.174 151708 username milan 151708 mac 151708 bytes_out 0 151708 bytes_in 0 151708 station_ip 5.120.37.194 151708 port 587 151708 unique_id port 151711 username kalantary 151711 mac 151711 bytes_out 0 151711 bytes_in 0 151711 station_ip 37.129.187.25 151711 port 575 151711 unique_id port 151711 remote_ip 10.8.0.98 151714 username meysam 151714 mac 151714 bytes_out 243716 151714 bytes_in 1253472 151714 station_ip 188.158.50.203 151714 port 590 151714 unique_id port 151714 remote_ip 10.8.0.110 151715 username barzegar 151715 mac 151715 bytes_out 0 151715 bytes_in 0 151715 station_ip 5.119.104.167 151715 port 556 151715 unique_id port 151715 remote_ip 10.8.0.234 151717 username mohammadjavad 151717 mac 151717 bytes_out 0 151717 bytes_in 0 151717 station_ip 37.129.166.99 151717 port 579 151717 unique_id port 151717 remote_ip 10.8.0.142 151719 username barzegar 151719 mac 151719 bytes_out 0 151719 bytes_in 0 151719 station_ip 5.119.104.167 151719 port 281 151719 unique_id port 151719 remote_ip 10.8.1.174 151713 username kordestani 151713 mac 151713 bytes_out 3299021 151713 bytes_in 46253816 151713 station_ip 151.235.113.231 151713 port 581 151713 unique_id port 151713 remote_ip 10.8.0.134 151718 username morteza 151718 kill_reason Another user logged on this global unique id 151718 mac 151718 bytes_out 0 151718 bytes_in 0 151718 station_ip 113.203.23.54 151718 port 561 151718 unique_id port 151720 username kalantary 151720 mac 151720 bytes_out 254222 151720 bytes_in 1630180 151720 station_ip 37.129.187.25 151720 port 553 151720 unique_id port 151720 remote_ip 10.8.0.98 151722 username milan 151722 kill_reason Another user logged on this global unique id 151722 mac 151722 bytes_out 0 151722 bytes_in 0 151722 station_ip 5.120.37.194 151722 port 556 151722 unique_id port 151722 remote_ip 10.8.0.218 151734 username moradi 151734 mac 151734 bytes_out 0 151734 bytes_in 0 151734 station_ip 46.225.210.41 151734 port 586 151734 unique_id port 151734 remote_ip 10.8.0.226 151738 username moradi 151738 mac 151738 bytes_out 39434 151738 bytes_in 56746 151738 station_ip 46.225.212.47 151738 port 556 151738 unique_id port 151738 remote_ip 10.8.0.226 151739 username rezaei 151739 mac 151739 bytes_out 43187 151739 bytes_in 112076 151739 station_ip 5.120.46.216 151739 port 579 151739 unique_id port 151739 remote_ip 10.8.0.230 151742 username alipour 151742 mac 151742 bytes_out 0 151742 bytes_in 0 151742 station_ip 37.129.32.164 151742 port 280 151742 unique_id port 151742 remote_ip 10.8.1.50 151745 username yarmohamadi 151745 mac 151745 bytes_out 0 151745 bytes_in 0 151745 station_ip 5.119.55.253 151745 port 588 151745 unique_id port 151746 username barzegar 151746 mac 151746 bytes_out 0 151746 bytes_in 0 151746 station_ip 5.119.104.167 151746 port 575 151746 unique_id port 151746 remote_ip 10.8.0.234 151750 username hamid 151750 kill_reason Another user logged on this global unique id 151750 mac 151750 bytes_out 0 151750 bytes_in 0 151750 station_ip 113.203.19.28 151750 port 581 151750 unique_id port 151752 username mosi 151752 mac 151752 bytes_out 0 151752 bytes_in 0 151752 station_ip 151.235.78.77 151752 port 575 151752 unique_id port 151752 remote_ip 10.8.0.138 151753 username mahdixz 151753 unique_id port 151753 terminate_cause Lost-Carrier 151753 bytes_out 409361 151753 bytes_in 15165111 151753 station_ip 151.235.97.242 151753 port 15731104 151753 nas_port_type Virtual 151753 remote_ip 5.5.5.106 151757 username hamid 151757 mac 151757 bytes_out 0 151757 bytes_in 0 151757 station_ip 113.203.19.28 151757 port 581 151757 unique_id port 151759 username forozandeh1 151759 mac 151759 bytes_out 0 151759 bytes_in 0 151759 station_ip 37.129.81.4 151759 port 581 151759 unique_id port 151759 remote_ip 10.8.0.130 151762 username vanila 151762 mac 151762 bytes_out 517929 151762 bytes_in 1478450 151762 station_ip 83.122.175.176 151762 port 584 151762 unique_id port 151762 remote_ip 10.8.0.178 151765 username mohammadjavad 151765 mac 151765 bytes_out 0 151765 bytes_in 0 151765 station_ip 83.122.3.121 151765 port 280 151765 unique_id port 151765 remote_ip 10.8.1.146 151767 username sabaghnezhad 151767 mac 151767 bytes_out 0 151767 bytes_in 0 151767 station_ip 37.129.9.137 151767 port 581 151767 unique_id port 151767 remote_ip 10.8.0.186 151769 username vanila 151769 mac 151769 bytes_out 36702 151769 bytes_in 69834 151769 station_ip 83.122.175.176 151769 port 579 151769 unique_id port 151769 remote_ip 10.8.0.178 151723 username vanila 151723 mac 151723 bytes_out 0 151723 bytes_in 0 151723 station_ip 83.122.175.176 151723 port 587 151723 unique_id port 151723 remote_ip 10.8.0.178 151725 username barzegar 151725 mac 151725 bytes_out 0 151725 bytes_in 0 151725 station_ip 5.119.104.167 151725 port 282 151725 unique_id port 151725 remote_ip 10.8.1.174 151727 username hasanahmadi 151727 mac 151727 bytes_out 0 151727 bytes_in 0 151727 station_ip 37.129.194.127 151727 port 553 151727 unique_id port 151727 remote_ip 10.8.0.126 151728 username barzegar 151728 mac 151728 bytes_out 0 151728 bytes_in 0 151728 station_ip 5.119.104.167 151728 port 282 151728 unique_id port 151728 remote_ip 10.8.1.174 151731 username morteza 151731 mac 151731 bytes_out 0 151731 bytes_in 0 151731 station_ip 113.203.23.54 151731 port 561 151731 unique_id port 151733 username aminvpn 151733 unique_id port 151733 terminate_cause Lost-Carrier 151733 bytes_out 1440801 151733 bytes_in 4715336 151733 station_ip 5.119.82.189 151733 port 15731102 151733 nas_port_type Virtual 151733 remote_ip 5.5.5.91 151735 username hadibarzegar 151735 mac 151735 bytes_out 251354 151735 bytes_in 600455 151735 station_ip 37.129.34.30 151735 port 556 151735 unique_id port 151735 remote_ip 10.8.0.154 151743 username barzegar 151743 mac 151743 bytes_out 0 151743 bytes_in 0 151743 station_ip 5.119.104.167 151743 port 280 151743 unique_id port 151743 remote_ip 10.8.1.174 151748 username saeed9658 151748 mac 151748 bytes_out 0 151748 bytes_in 0 151748 station_ip 5.120.158.111 151748 port 281 151748 unique_id port 151748 remote_ip 10.8.1.210 151754 username kalantary 151754 mac 151754 bytes_out 0 151754 bytes_in 0 151754 station_ip 37.129.229.165 151754 port 556 151754 unique_id port 151754 remote_ip 10.8.0.98 151756 username barzegar 151756 mac 151756 bytes_out 0 151756 bytes_in 0 151756 station_ip 5.119.104.167 151756 port 575 151756 unique_id port 151756 remote_ip 10.8.0.234 151758 username barzegar 151758 mac 151758 bytes_out 0 151758 bytes_in 0 151758 station_ip 5.119.104.167 151758 port 280 151758 unique_id port 151758 remote_ip 10.8.1.174 151766 username meysam 151766 mac 151766 bytes_out 0 151766 bytes_in 0 151766 station_ip 188.158.50.203 151766 port 579 151766 unique_id port 151766 remote_ip 10.8.0.110 151774 username saeed9658 151774 mac 151774 bytes_out 0 151774 bytes_in 0 151774 station_ip 5.120.158.111 151774 port 280 151774 unique_id port 151774 remote_ip 10.8.1.210 151779 username sedighe 151779 mac 151779 bytes_out 258343 151779 bytes_in 1882699 151779 station_ip 37.129.57.84 151779 port 560 151779 unique_id port 151779 remote_ip 10.8.0.146 151781 username zahra1101 151781 mac 151781 bytes_out 715494 151781 bytes_in 7792756 151781 station_ip 5.120.29.246 151781 port 280 151781 unique_id port 151781 remote_ip 10.8.1.182 151789 username aminvpn 151789 mac 151789 bytes_out 2548843 151789 bytes_in 28149981 151789 station_ip 83.122.85.25 151789 port 586 151789 unique_id port 151789 remote_ip 10.8.0.14 151791 username barzegar 151791 mac 151791 bytes_out 0 151791 bytes_in 0 151791 station_ip 5.119.104.167 151791 port 280 151791 unique_id port 151791 remote_ip 10.8.1.174 151793 username milan 151793 kill_reason Another user logged on this global unique id 151793 mac 151793 bytes_out 0 151793 bytes_in 0 151793 station_ip 5.120.37.194 151793 port 553 151793 unique_id port 151794 username zahra1101 151724 mac 151724 bytes_out 0 151724 bytes_in 0 151724 station_ip 113.203.23.54 151724 port 561 151724 unique_id port 151726 username milan 151726 mac 151726 bytes_out 0 151726 bytes_in 0 151726 station_ip 5.120.37.194 151726 port 556 151726 unique_id port 151729 username saeed9658 151729 mac 151729 bytes_out 3225305 151729 bytes_in 42682624 151729 station_ip 5.120.158.111 151729 port 281 151729 unique_id port 151729 remote_ip 10.8.1.210 151730 username kalantary 151730 mac 151730 bytes_out 0 151730 bytes_in 0 151730 station_ip 37.129.187.25 151730 port 556 151730 unique_id port 151730 remote_ip 10.8.0.98 151732 username barzegar 151732 mac 151732 bytes_out 0 151732 bytes_in 0 151732 station_ip 5.119.104.167 151732 port 281 151732 unique_id port 151732 remote_ip 10.8.1.174 151736 username barzegar 151736 mac 151736 bytes_out 0 151736 bytes_in 0 151736 station_ip 5.119.104.167 151736 port 281 151736 unique_id port 151736 remote_ip 10.8.1.174 151737 username yarmohamadi 151737 kill_reason Another user logged on this global unique id 151737 mac 151737 bytes_out 0 151737 bytes_in 0 151737 station_ip 5.119.55.253 151737 port 588 151737 unique_id port 151737 remote_ip 10.8.0.150 151740 username barzegar 151740 mac 151740 bytes_out 0 151740 bytes_in 0 151740 station_ip 5.119.104.167 151740 port 281 151740 unique_id port 151740 remote_ip 10.8.1.174 151741 username rezaei 151741 mac 151741 bytes_out 1795 151741 bytes_in 4757 151741 station_ip 5.120.46.216 151741 port 556 151741 unique_id port 151741 remote_ip 10.8.0.230 151744 username kordestani 151744 mac 151744 bytes_out 1407596 151744 bytes_in 16889763 151744 station_ip 151.235.113.231 151744 port 575 151744 unique_id port 151744 remote_ip 10.8.0.134 151747 username mahdixz 151747 unique_id port 151747 terminate_cause Lost-Carrier 151747 bytes_out 4216655 151747 bytes_in 7225099 151747 station_ip 151.235.97.242 151747 port 15731103 151747 nas_port_type Virtual 151747 remote_ip 5.5.5.100 151749 username hamid 151749 kill_reason Another user logged on this global unique id 151749 mac 151749 bytes_out 0 151749 bytes_in 0 151749 station_ip 113.203.19.28 151749 port 581 151749 unique_id port 151749 remote_ip 10.8.0.118 151751 username hamid 151751 kill_reason Another user logged on this global unique id 151751 mac 151751 bytes_out 0 151751 bytes_in 0 151751 station_ip 113.203.19.28 151751 port 581 151751 unique_id port 151755 username aminvpn 151755 mac 151755 bytes_out 0 151755 bytes_in 0 151755 station_ip 83.122.210.226 151755 port 579 151755 unique_id port 151755 remote_ip 10.8.0.14 151760 username hamid 151760 mac 151760 bytes_out 0 151760 bytes_in 0 151760 station_ip 113.203.19.28 151760 port 579 151760 unique_id port 151760 remote_ip 10.8.0.118 151761 username mohammadjavad 151761 mac 151761 bytes_out 0 151761 bytes_in 0 151761 station_ip 83.122.3.121 151761 port 575 151761 unique_id port 151761 remote_ip 10.8.0.142 151763 username hamid 151763 mac 151763 bytes_out 2152237 151763 bytes_in 368654 151763 station_ip 113.203.19.28 151763 port 581 151763 unique_id port 151763 remote_ip 10.8.0.118 151764 username sabaghnezhad 151764 mac 151764 bytes_out 0 151764 bytes_in 0 151764 station_ip 37.129.9.137 151764 port 583 151764 unique_id port 151764 remote_ip 10.8.0.186 151768 username forozandeh1 151768 mac 151768 bytes_out 0 151768 bytes_in 0 151768 station_ip 83.123.188.72 151768 port 575 151768 unique_id port 151768 remote_ip 10.8.0.130 151770 username barzegar 151770 mac 151770 bytes_out 0 151770 bytes_in 0 151770 station_ip 5.119.104.167 151770 port 575 151770 unique_id port 151770 remote_ip 10.8.0.234 151778 username milan 151778 kill_reason Another user logged on this global unique id 151778 mac 151778 bytes_out 0 151778 bytes_in 0 151778 station_ip 5.120.37.194 151778 port 553 151778 unique_id port 151778 remote_ip 10.8.0.218 151782 username zahra1101 151782 mac 151782 bytes_out 0 151782 bytes_in 0 151782 station_ip 5.120.29.246 151782 port 581 151782 unique_id port 151782 remote_ip 10.8.0.162 151783 username mostafa_es78 151783 unique_id port 151783 terminate_cause Lost-Carrier 151783 bytes_out 30937 151783 bytes_in 165195 151783 station_ip 5.126.68.120 151783 port 15731107 151783 nas_port_type Virtual 151783 remote_ip 5.5.5.116 151785 username milan 151785 kill_reason Another user logged on this global unique id 151785 mac 151785 bytes_out 0 151785 bytes_in 0 151785 station_ip 5.120.37.194 151785 port 553 151785 unique_id port 151786 username zahra1101 151786 mac 151786 bytes_out 0 151786 bytes_in 0 151786 station_ip 5.120.29.246 151786 port 280 151786 unique_id port 151786 remote_ip 10.8.1.182 151790 username zahra1101 151790 mac 151790 bytes_out 138995 151790 bytes_in 265176 151790 station_ip 5.120.29.246 151790 port 581 151790 unique_id port 151790 remote_ip 10.8.0.162 151792 username mostafa_es78 151792 unique_id port 151792 terminate_cause User-Request 151792 bytes_out 40864 151792 bytes_in 384315 151792 station_ip 5.126.68.120 151792 port 15731108 151792 nas_port_type Virtual 151792 remote_ip 5.5.5.117 151795 username kordestani 151795 mac 151795 bytes_out 1720962 151795 bytes_in 23667419 151795 station_ip 151.235.80.16 151795 port 586 151795 unique_id port 151795 remote_ip 10.8.0.134 151796 username zahra1101 151796 mac 151796 bytes_out 26876 151796 bytes_in 41718 151796 station_ip 5.120.29.246 151796 port 581 151796 unique_id port 151796 remote_ip 10.8.0.162 151797 username saeed9658 151797 mac 151797 bytes_out 1888297 151797 bytes_in 22706474 151797 station_ip 5.119.191.217 151797 port 560 151797 unique_id port 151797 remote_ip 10.8.0.62 151800 username zahra1101 151800 mac 151800 bytes_out 0 151800 bytes_in 0 151800 station_ip 5.120.29.246 151800 port 560 151800 unique_id port 151800 remote_ip 10.8.0.162 151802 username zahra1101 151802 mac 151802 bytes_out 0 151802 bytes_in 0 151802 station_ip 5.120.29.246 151802 port 280 151802 unique_id port 151802 remote_ip 10.8.1.182 151803 username zahra1101 151803 mac 151803 bytes_out 0 151803 bytes_in 0 151803 station_ip 5.120.29.246 151803 port 280 151803 unique_id port 151803 remote_ip 10.8.1.182 151805 username milan 151805 kill_reason Another user logged on this global unique id 151805 mac 151805 bytes_out 0 151805 bytes_in 0 151805 station_ip 5.120.37.194 151805 port 553 151805 unique_id port 151807 username mosi 151807 mac 151807 bytes_out 0 151807 bytes_in 0 151807 station_ip 151.235.78.77 151807 port 583 151807 unique_id port 151808 username zahra1101 151808 mac 151808 bytes_out 0 151808 bytes_in 0 151808 station_ip 5.120.29.246 151808 port 280 151808 unique_id port 151808 remote_ip 10.8.1.182 151812 username morteza 151812 mac 151812 bytes_out 0 151812 bytes_in 0 151812 station_ip 83.122.251.249 151812 port 280 151812 unique_id port 151812 remote_ip 10.8.1.62 151819 username kalantary 151819 mac 151819 bytes_out 0 151819 bytes_in 0 151819 station_ip 37.129.229.165 151819 port 556 151771 username mosi 151771 kill_reason Another user logged on this global unique id 151771 mac 151771 bytes_out 0 151771 bytes_in 0 151771 station_ip 151.235.78.77 151771 port 583 151771 unique_id port 151771 remote_ip 10.8.0.138 151772 username mirzaei 151772 mac 151772 bytes_out 0 151772 bytes_in 0 151772 station_ip 5.119.66.157 151772 port 560 151772 unique_id port 151773 username mosi 151773 kill_reason Another user logged on this global unique id 151773 mac 151773 bytes_out 0 151773 bytes_in 0 151773 station_ip 151.235.78.77 151773 port 583 151773 unique_id port 151775 username barzegar 151775 mac 151775 bytes_out 0 151775 bytes_in 0 151775 station_ip 5.119.104.167 151775 port 280 151775 unique_id port 151775 remote_ip 10.8.1.174 151776 username mohammadjavad 151776 mac 151776 bytes_out 0 151776 bytes_in 0 151776 station_ip 37.129.202.82 151776 port 280 151776 unique_id port 151776 remote_ip 10.8.1.146 151777 username meysam 151777 mac 151777 bytes_out 1367027 151777 bytes_in 21474587 151777 station_ip 188.158.50.203 151777 port 579 151777 unique_id port 151777 remote_ip 10.8.0.110 151780 username barzegar 151780 mac 151780 bytes_out 0 151780 bytes_in 0 151780 station_ip 5.119.104.167 151780 port 281 151780 unique_id port 151780 remote_ip 10.8.1.174 151784 username kalantary 151784 mac 151784 bytes_out 0 151784 bytes_in 0 151784 station_ip 37.129.229.165 151784 port 556 151784 unique_id port 151784 remote_ip 10.8.0.98 151787 username zahra1101 151787 mac 151787 bytes_out 0 151787 bytes_in 0 151787 station_ip 5.120.29.246 151787 port 280 151787 unique_id port 151787 remote_ip 10.8.1.182 151788 username zahra1101 151788 mac 151788 bytes_out 0 151788 bytes_in 0 151788 station_ip 5.120.29.246 151788 port 556 151788 unique_id port 151788 remote_ip 10.8.0.162 151801 username zahra1101 151801 mac 151801 bytes_out 0 151801 bytes_in 0 151801 station_ip 5.120.29.246 151801 port 560 151801 unique_id port 151801 remote_ip 10.8.0.162 151804 username zahra1101 151804 mac 151804 bytes_out 0 151804 bytes_in 0 151804 station_ip 5.120.29.246 151804 port 280 151804 unique_id port 151804 remote_ip 10.8.1.182 151810 username zahra1101 151810 mac 151810 bytes_out 0 151810 bytes_in 0 151810 station_ip 5.120.29.246 151810 port 280 151810 unique_id port 151810 remote_ip 10.8.1.182 151811 username morteza 151811 mac 151811 bytes_out 0 151811 bytes_in 0 151811 station_ip 83.122.251.249 151811 port 560 151811 unique_id port 151811 remote_ip 10.8.0.46 151813 username zahra1101 151813 mac 151813 bytes_out 0 151813 bytes_in 0 151813 station_ip 5.120.29.246 151813 port 560 151813 unique_id port 151813 remote_ip 10.8.0.162 151814 username forozandeh1 151814 mac 151814 bytes_out 0 151814 bytes_in 0 151814 station_ip 83.122.102.189 151814 port 581 151814 unique_id port 151814 remote_ip 10.8.0.130 151816 username morteza 151816 mac 151816 bytes_out 0 151816 bytes_in 0 151816 station_ip 83.122.251.249 151816 port 588 151816 unique_id port 151816 remote_ip 10.8.0.46 151818 username zahra1101 151818 kill_reason Maximum check online fails reached 151818 mac 151818 bytes_out 0 151818 bytes_in 0 151818 station_ip 5.120.29.246 151818 port 583 151818 unique_id port 151820 username morteza 151820 mac 151820 bytes_out 0 151820 bytes_in 0 151820 station_ip 83.122.251.249 151820 port 560 151820 unique_id port 151820 remote_ip 10.8.0.46 151822 username zahra1101 151822 mac 151794 mac 151794 bytes_out 1160418 151794 bytes_in 1901957 151794 station_ip 5.120.29.246 151794 port 581 151794 unique_id port 151794 remote_ip 10.8.0.162 151798 username aminvpn 151798 mac 151798 bytes_out 63387 151798 bytes_in 83286 151798 station_ip 83.122.85.25 151798 port 584 151798 unique_id port 151798 remote_ip 10.8.0.14 151799 username saeed9658 151799 mac 151799 bytes_out 3976 151799 bytes_in 14883 151799 station_ip 5.119.191.217 151799 port 280 151799 unique_id port 151799 remote_ip 10.8.1.210 151806 username zahra1101 151806 mac 151806 bytes_out 0 151806 bytes_in 0 151806 station_ip 5.120.29.246 151806 port 560 151806 unique_id port 151806 remote_ip 10.8.0.162 151809 username barzegar 151809 mac 151809 bytes_out 0 151809 bytes_in 0 151809 station_ip 5.119.104.167 151809 port 583 151809 unique_id port 151809 remote_ip 10.8.0.234 151815 username zahra1101 151815 mac 151815 bytes_out 0 151815 bytes_in 0 151815 station_ip 5.120.29.246 151815 port 280 151815 unique_id port 151815 remote_ip 10.8.1.182 151817 username morteza 151817 mac 151817 bytes_out 0 151817 bytes_in 0 151817 station_ip 83.122.251.249 151817 port 560 151817 unique_id port 151817 remote_ip 10.8.0.46 151827 username zahra1101 151827 mac 151827 bytes_out 0 151827 bytes_in 0 151827 station_ip 5.120.29.246 151827 port 556 151827 unique_id port 151827 remote_ip 10.8.0.162 151828 username morteza 151828 mac 151828 bytes_out 0 151828 bytes_in 0 151828 station_ip 83.122.251.249 151828 port 280 151828 unique_id port 151828 remote_ip 10.8.1.62 151829 username zahra1101 151829 mac 151829 bytes_out 0 151829 bytes_in 0 151829 station_ip 5.120.29.246 151829 port 280 151829 unique_id port 151829 remote_ip 10.8.1.182 151830 username zahra1101 151830 mac 151830 bytes_out 0 151830 bytes_in 0 151830 station_ip 5.120.29.246 151830 port 560 151830 unique_id port 151830 remote_ip 10.8.0.162 151831 username milan 151831 kill_reason Another user logged on this global unique id 151831 mac 151831 bytes_out 0 151831 bytes_in 0 151831 station_ip 5.120.37.194 151831 port 553 151831 unique_id port 151835 username meysam 151835 mac 151835 bytes_out 0 151835 bytes_in 0 151835 station_ip 188.158.50.203 151835 port 588 151835 unique_id port 151835 remote_ip 10.8.0.110 151836 username morteza 151836 mac 151836 bytes_out 0 151836 bytes_in 0 151836 station_ip 83.122.251.249 151836 port 590 151836 unique_id port 151836 remote_ip 10.8.0.46 151838 username ahmadi1 151838 mac 151838 bytes_out 0 151838 bytes_in 0 151838 station_ip 83.122.63.209 151838 port 556 151838 unique_id port 151838 remote_ip 10.8.0.250 151840 username zahra1101 151840 mac 151840 bytes_out 0 151840 bytes_in 0 151840 station_ip 5.120.29.246 151840 port 556 151840 unique_id port 151840 remote_ip 10.8.0.162 151841 username meysam 151841 mac 151841 bytes_out 0 151841 bytes_in 0 151841 station_ip 188.158.50.203 151841 port 589 151841 unique_id port 151841 remote_ip 10.8.0.110 151843 username morteza 151843 mac 151843 bytes_out 0 151843 bytes_in 0 151843 station_ip 83.122.251.249 151843 port 556 151843 unique_id port 151843 remote_ip 10.8.0.46 151845 username jafari 151845 kill_reason Another user logged on this global unique id 151845 mac 151845 bytes_out 0 151845 bytes_in 0 151845 station_ip 94.24.83.229 151845 port 587 151845 unique_id port 151845 remote_ip 10.8.0.242 151847 username zahra1101 151847 mac 151847 bytes_out 0 151819 unique_id port 151819 remote_ip 10.8.0.98 151821 username zahra1101 151821 mac 151821 bytes_out 4668 151821 bytes_in 11071 151821 station_ip 5.120.29.246 151821 port 280 151821 unique_id port 151821 remote_ip 10.8.1.182 151823 username milan 151823 kill_reason Another user logged on this global unique id 151823 mac 151823 bytes_out 0 151823 bytes_in 0 151823 station_ip 5.120.37.194 151823 port 553 151823 unique_id port 151824 username houshang 151824 mac 151824 bytes_out 0 151824 bytes_in 0 151824 station_ip 5.120.39.113 151824 port 586 151824 unique_id port 151824 remote_ip 10.8.0.22 151826 username morteza 151826 mac 151826 bytes_out 0 151826 bytes_in 0 151826 station_ip 83.122.251.249 151826 port 280 151826 unique_id port 151826 remote_ip 10.8.1.62 151832 username barzegar 151832 mac 151832 bytes_out 0 151832 bytes_in 0 151832 station_ip 5.119.104.167 151832 port 586 151832 unique_id port 151832 remote_ip 10.8.0.234 151844 username zahra1101 151844 mac 151844 bytes_out 0 151844 bytes_in 0 151844 station_ip 5.120.29.246 151844 port 280 151844 unique_id port 151844 remote_ip 10.8.1.182 151846 username zahra1101 151846 mac 151846 bytes_out 0 151846 bytes_in 0 151846 station_ip 5.120.29.246 151846 port 280 151846 unique_id port 151846 remote_ip 10.8.1.182 151848 username bcboard 151848 unique_id port 151848 terminate_cause User-Request 151848 bytes_out 130608 151848 bytes_in 2250705 151848 station_ip 83.123.91.193 151848 port 15731109 151848 nas_port_type Virtual 151848 remote_ip 5.5.5.190 151850 username milan 151850 kill_reason Another user logged on this global unique id 151850 mac 151850 bytes_out 0 151850 bytes_in 0 151850 station_ip 5.120.37.194 151850 port 553 151850 unique_id port 151853 username zahra1101 151853 mac 151853 bytes_out 0 151853 bytes_in 0 151853 station_ip 5.120.29.246 151853 port 560 151853 unique_id port 151853 remote_ip 10.8.0.162 151855 username zahra1101 151855 mac 151855 bytes_out 0 151855 bytes_in 0 151855 station_ip 5.120.29.246 151855 port 560 151855 unique_id port 151855 remote_ip 10.8.0.162 151856 username morteza 151856 kill_reason Maximum check online fails reached 151856 mac 151856 bytes_out 0 151856 bytes_in 0 151856 station_ip 83.122.251.249 151856 port 280 151856 unique_id port 151858 username zahra1101 151858 mac 151858 bytes_out 0 151858 bytes_in 0 151858 station_ip 5.120.29.246 151858 port 283 151858 unique_id port 151858 remote_ip 10.8.1.182 151859 username morteza 151859 mac 151859 bytes_out 0 151859 bytes_in 0 151859 station_ip 83.122.251.249 151859 port 282 151859 unique_id port 151859 remote_ip 10.8.1.62 151867 username zahra1101 151867 kill_reason Maximum check online fails reached 151867 mac 151867 bytes_out 0 151867 bytes_in 0 151867 station_ip 5.120.29.246 151867 port 282 151867 unique_id port 151870 username hosseine 151870 mac 151870 bytes_out 2540144 151870 bytes_in 14695004 151870 station_ip 37.129.23.134 151870 port 561 151870 unique_id port 151870 remote_ip 10.8.0.238 151873 username arash 151873 mac 151873 bytes_out 0 151873 bytes_in 0 151873 station_ip 89.32.107.41 151873 port 283 151873 unique_id port 151873 remote_ip 10.8.1.102 151875 username kalantary 151875 mac 151875 bytes_out 61223 151875 bytes_in 229173 151875 station_ip 37.129.174.65 151875 port 588 151875 unique_id port 151875 remote_ip 10.8.0.98 151877 username mostafa_es78 151877 unique_id port 151877 terminate_cause User-Request 151877 bytes_out 236847 151877 bytes_in 611698 151822 bytes_out 0 151822 bytes_in 0 151822 station_ip 5.120.29.246 151822 port 280 151822 unique_id port 151822 remote_ip 10.8.1.182 151825 username morteza 151825 mac 151825 bytes_out 0 151825 bytes_in 0 151825 station_ip 83.122.251.249 151825 port 556 151825 unique_id port 151825 remote_ip 10.8.0.46 151833 username morteza 151833 mac 151833 bytes_out 0 151833 bytes_in 0 151833 station_ip 83.122.251.249 151833 port 586 151833 unique_id port 151833 remote_ip 10.8.0.46 151834 username zahra1101 151834 mac 151834 bytes_out 0 151834 bytes_in 0 151834 station_ip 5.120.29.246 151834 port 589 151834 unique_id port 151834 remote_ip 10.8.0.162 151837 username zahra1101 151837 mac 151837 bytes_out 0 151837 bytes_in 0 151837 station_ip 5.120.29.246 151837 port 588 151837 unique_id port 151837 remote_ip 10.8.0.162 151839 username aminvpn 151839 unique_id port 151839 terminate_cause User-Request 151839 bytes_out 13254383 151839 bytes_in 531747062 151839 station_ip 31.57.143.238 151839 port 15731106 151839 nas_port_type Virtual 151839 remote_ip 5.5.5.109 151842 username kalantary 151842 mac 151842 bytes_out 0 151842 bytes_in 0 151842 station_ip 37.129.229.165 151842 port 560 151842 unique_id port 151842 remote_ip 10.8.0.98 151849 username morteza 151849 mac 151849 bytes_out 0 151849 bytes_in 0 151849 station_ip 83.122.251.249 151849 port 560 151849 unique_id port 151849 remote_ip 10.8.0.46 151851 username morteza 151851 mac 151851 bytes_out 0 151851 bytes_in 0 151851 station_ip 83.122.251.249 151851 port 280 151851 unique_id port 151851 remote_ip 10.8.1.62 151852 username zahra1101 151852 mac 151852 bytes_out 0 151852 bytes_in 0 151852 station_ip 5.120.29.246 151852 port 560 151852 unique_id port 151852 remote_ip 10.8.0.162 151854 username morteza 151854 mac 151854 bytes_out 0 151854 bytes_in 0 151854 station_ip 83.122.251.249 151854 port 282 151854 unique_id port 151854 remote_ip 10.8.1.62 151857 username barzegar 151857 mac 151857 bytes_out 0 151857 bytes_in 0 151857 station_ip 5.119.104.167 151857 port 560 151857 unique_id port 151857 remote_ip 10.8.0.234 151860 username morteza 151860 mac 151860 bytes_out 0 151860 bytes_in 0 151860 station_ip 83.122.251.249 151860 port 282 151860 unique_id port 151860 remote_ip 10.8.1.62 151863 username forozandeh1 151863 mac 151863 bytes_out 0 151863 bytes_in 0 151863 station_ip 113.203.68.73 151863 port 586 151863 unique_id port 151863 remote_ip 10.8.0.130 151865 username zahra1101 151865 mac 151865 bytes_out 0 151865 bytes_in 0 151865 station_ip 5.120.29.246 151865 port 560 151865 unique_id port 151865 remote_ip 10.8.0.162 151866 username morteza 151866 mac 151866 bytes_out 0 151866 bytes_in 0 151866 station_ip 83.122.251.249 151866 port 283 151866 unique_id port 151866 remote_ip 10.8.1.62 151868 username zahra1101 151868 mac 151868 bytes_out 0 151868 bytes_in 0 151868 station_ip 5.120.29.246 151868 port 560 151868 unique_id port 151868 remote_ip 10.8.0.162 151872 username zahra1101 151872 mac 151872 bytes_out 0 151872 bytes_in 0 151872 station_ip 5.120.29.246 151872 port 284 151872 unique_id port 151872 remote_ip 10.8.1.182 151876 username zahra1101 151876 mac 151876 bytes_out 0 151876 bytes_in 0 151876 station_ip 5.120.29.246 151876 port 283 151876 unique_id port 151876 remote_ip 10.8.1.182 151879 username sabaghnezhad 151879 mac 151879 bytes_out 592587 151879 bytes_in 1461563 151847 bytes_in 0 151847 station_ip 5.120.29.246 151847 port 280 151847 unique_id port 151847 remote_ip 10.8.1.182 151861 username zahra1101 151861 mac 151861 bytes_out 0 151861 bytes_in 0 151861 station_ip 5.120.29.246 151861 port 560 151861 unique_id port 151861 remote_ip 10.8.0.162 151862 username zahra1101 151862 mac 151862 bytes_out 0 151862 bytes_in 0 151862 station_ip 5.120.29.246 151862 port 560 151862 unique_id port 151862 remote_ip 10.8.0.162 151864 username morteza 151864 mac 151864 bytes_out 0 151864 bytes_in 0 151864 station_ip 83.122.251.249 151864 port 282 151864 unique_id port 151864 remote_ip 10.8.1.62 151869 username milan 151869 kill_reason Another user logged on this global unique id 151869 mac 151869 bytes_out 0 151869 bytes_in 0 151869 station_ip 5.120.37.194 151869 port 553 151869 unique_id port 151871 username morteza 151871 mac 151871 bytes_out 1636 151871 bytes_in 5036 151871 station_ip 83.122.251.249 151871 port 560 151871 unique_id port 151871 remote_ip 10.8.0.46 151874 username morteza 151874 mac 151874 bytes_out 0 151874 bytes_in 0 151874 station_ip 83.122.251.249 151874 port 560 151874 unique_id port 151874 remote_ip 10.8.0.46 151882 username morteza 151882 mac 151882 bytes_out 0 151882 bytes_in 0 151882 station_ip 83.122.251.249 151882 port 560 151882 unique_id port 151882 remote_ip 10.8.0.46 151888 username milan 151888 mac 151888 bytes_out 0 151888 bytes_in 0 151888 station_ip 5.120.37.194 151888 port 553 151888 unique_id port 151889 username morteza 151889 mac 151889 bytes_out 0 151889 bytes_in 0 151889 station_ip 83.122.251.249 151889 port 553 151889 unique_id port 151889 remote_ip 10.8.0.46 151890 username morteza 151890 mac 151890 bytes_out 0 151890 bytes_in 0 151890 station_ip 83.122.251.249 151890 port 553 151890 unique_id port 151890 remote_ip 10.8.0.46 151891 username zahra1101 151891 mac 151891 bytes_out 0 151891 bytes_in 0 151891 station_ip 5.120.29.246 151891 port 283 151891 unique_id port 151891 remote_ip 10.8.1.182 151893 username aminvpn 151893 unique_id port 151893 terminate_cause Lost-Carrier 151893 bytes_out 1332017 151893 bytes_in 4768792 151893 station_ip 5.119.82.189 151893 port 15731111 151893 nas_port_type Virtual 151893 remote_ip 5.5.5.255 151896 username kordestani 151896 kill_reason Another user logged on this global unique id 151896 mac 151896 bytes_out 0 151896 bytes_in 0 151896 station_ip 37.129.237.97 151896 port 556 151896 unique_id port 151896 remote_ip 10.8.0.134 151897 username morteza 151897 mac 151897 bytes_out 0 151897 bytes_in 0 151897 station_ip 83.122.251.249 151897 port 590 151897 unique_id port 151897 remote_ip 10.8.0.46 151899 username morteza 151899 mac 151899 bytes_out 0 151899 bytes_in 0 151899 station_ip 83.122.251.249 151899 port 284 151899 unique_id port 151899 remote_ip 10.8.1.62 151901 username barzegar 151901 mac 151901 bytes_out 0 151901 bytes_in 0 151901 station_ip 5.119.104.167 151901 port 590 151901 unique_id port 151901 remote_ip 10.8.0.234 151902 username morteza 151902 mac 151902 bytes_out 0 151902 bytes_in 0 151902 station_ip 83.122.251.249 151902 port 590 151902 unique_id port 151902 remote_ip 10.8.0.46 151905 username kalantary 151905 mac 151905 bytes_out 0 151905 bytes_in 0 151905 station_ip 37.129.174.65 151905 port 553 151905 unique_id port 151905 remote_ip 10.8.0.98 151906 username kordestani 151906 mac 151906 bytes_out 0 151906 bytes_in 0 151877 station_ip 5.125.221.236 151877 port 15731112 151877 nas_port_type Virtual 151877 remote_ip 5.5.5.87 151878 username zahra1101 151878 mac 151878 bytes_out 0 151878 bytes_in 0 151878 station_ip 5.120.29.246 151878 port 283 151878 unique_id port 151878 remote_ip 10.8.1.182 151880 username morteza 151880 mac 151880 bytes_out 0 151880 bytes_in 0 151880 station_ip 83.122.251.249 151880 port 560 151880 unique_id port 151880 remote_ip 10.8.0.46 151881 username zahra1101 151881 mac 151881 bytes_out 0 151881 bytes_in 0 151881 station_ip 5.120.29.246 151881 port 560 151881 unique_id port 151881 remote_ip 10.8.0.162 151884 username milan 151884 kill_reason Another user logged on this global unique id 151884 mac 151884 bytes_out 0 151884 bytes_in 0 151884 station_ip 5.120.37.194 151884 port 553 151884 unique_id port 151886 username barzegar 151886 mac 151886 bytes_out 0 151886 bytes_in 0 151886 station_ip 5.119.104.167 151886 port 588 151886 unique_id port 151886 remote_ip 10.8.0.234 151887 username morteza 151887 mac 151887 bytes_out 0 151887 bytes_in 0 151887 station_ip 83.122.251.249 151887 port 588 151887 unique_id port 151887 remote_ip 10.8.0.46 151892 username morteza 151892 mac 151892 bytes_out 0 151892 bytes_in 0 151892 station_ip 83.122.251.249 151892 port 284 151892 unique_id port 151892 remote_ip 10.8.1.62 151904 username morteza 151904 mac 151904 bytes_out 0 151904 bytes_in 0 151904 station_ip 83.122.251.249 151904 port 284 151904 unique_id port 151904 remote_ip 10.8.1.62 151907 username morteza 151907 mac 151907 bytes_out 0 151907 bytes_in 0 151907 station_ip 83.122.251.249 151907 port 553 151907 unique_id port 151907 remote_ip 10.8.0.46 151908 username mosi 151908 kill_reason Another user logged on this global unique id 151908 mac 151908 bytes_out 0 151908 bytes_in 0 151908 station_ip 151.235.78.77 151908 port 588 151908 unique_id port 151908 remote_ip 10.8.0.138 151912 username morteza 151912 mac 151912 bytes_out 0 151912 bytes_in 0 151912 station_ip 83.122.251.249 151912 port 553 151912 unique_id port 151912 remote_ip 10.8.0.46 151913 username aminvpn 151913 unique_id port 151913 terminate_cause Lost-Carrier 151913 bytes_out 137454 151913 bytes_in 1424919 151913 station_ip 109.125.128.116 151913 port 15731114 151913 nas_port_type Virtual 151913 remote_ip 5.5.5.103 151915 username morteza 151915 mac 151915 bytes_out 0 151915 bytes_in 0 151915 station_ip 83.122.251.249 151915 port 553 151915 unique_id port 151915 remote_ip 10.8.0.46 151917 username morteza 151917 mac 151917 bytes_out 0 151917 bytes_in 0 151917 station_ip 83.122.251.249 151917 port 556 151917 unique_id port 151917 remote_ip 10.8.0.46 151920 username jafari 151920 kill_reason Another user logged on this global unique id 151920 mac 151920 bytes_out 0 151920 bytes_in 0 151920 station_ip 94.24.83.229 151920 port 587 151920 unique_id port 151929 username zahra1101 151929 mac 151929 bytes_out 0 151929 bytes_in 0 151929 station_ip 5.120.29.246 151929 port 561 151929 unique_id port 151929 remote_ip 10.8.0.162 151934 username morteza 151934 mac 151934 bytes_out 0 151934 bytes_in 0 151934 station_ip 83.122.251.249 151934 port 285 151934 unique_id port 151934 remote_ip 10.8.1.62 151935 username morteza 151935 mac 151935 bytes_out 0 151935 bytes_in 0 151935 station_ip 83.122.251.249 151935 port 285 151935 unique_id port 151935 remote_ip 10.8.1.62 151937 username zahra1101 151937 mac 151937 bytes_out 0 151879 station_ip 37.129.9.137 151879 port 575 151879 unique_id port 151879 remote_ip 10.8.0.186 151883 username jafari 151883 kill_reason Another user logged on this global unique id 151883 mac 151883 bytes_out 0 151883 bytes_in 0 151883 station_ip 94.24.83.229 151883 port 587 151883 unique_id port 151885 username barzegar 151885 mac 151885 bytes_out 0 151885 bytes_in 0 151885 station_ip 5.119.104.167 151885 port 560 151885 unique_id port 151885 remote_ip 10.8.0.234 151894 username morteza 151894 kill_reason Maximum check online fails reached 151894 mac 151894 bytes_out 0 151894 bytes_in 0 151894 station_ip 83.122.251.249 151894 port 589 151894 unique_id port 151895 username morteza 151895 mac 151895 bytes_out 0 151895 bytes_in 0 151895 station_ip 83.122.251.249 151895 port 590 151895 unique_id port 151895 remote_ip 10.8.0.46 151898 username morteza 151898 mac 151898 bytes_out 0 151898 bytes_in 0 151898 station_ip 83.122.251.249 151898 port 591 151898 unique_id port 151898 remote_ip 10.8.0.46 151900 username jafari 151900 kill_reason Another user logged on this global unique id 151900 mac 151900 bytes_out 0 151900 bytes_in 0 151900 station_ip 94.24.83.229 151900 port 587 151900 unique_id port 151903 username morteza 151903 kill_reason Maximum check online fails reached 151903 mac 151903 bytes_out 0 151903 bytes_in 0 151903 station_ip 83.122.251.249 151903 port 283 151903 unique_id port 151909 username zahra1101 151909 mac 151909 bytes_out 0 151909 bytes_in 0 151909 station_ip 5.120.29.246 151909 port 556 151909 unique_id port 151909 remote_ip 10.8.0.162 151911 username hadibarzegar 151911 kill_reason Another user logged on this global unique id 151911 mac 151911 bytes_out 0 151911 bytes_in 0 151911 station_ip 37.129.34.30 151911 port 581 151911 unique_id port 151911 remote_ip 10.8.0.154 151916 username zahra1101 151916 mac 151916 bytes_out 0 151916 bytes_in 0 151916 station_ip 5.120.29.246 151916 port 284 151916 unique_id port 151916 remote_ip 10.8.1.182 151918 username zahra1101 151918 mac 151918 bytes_out 0 151918 bytes_in 0 151918 station_ip 5.120.29.246 151918 port 556 151918 unique_id port 151918 remote_ip 10.8.0.162 151919 username barzegar 151919 mac 151919 bytes_out 0 151919 bytes_in 0 151919 station_ip 5.119.104.167 151919 port 556 151919 unique_id port 151919 remote_ip 10.8.0.234 151921 username kordestani 151921 mac 151921 bytes_out 77486 151921 bytes_in 585986 151921 station_ip 37.129.247.227 151921 port 553 151921 unique_id port 151921 remote_ip 10.8.0.134 151924 username zahra1101 151924 mac 151924 bytes_out 0 151924 bytes_in 0 151924 station_ip 5.120.29.246 151924 port 591 151924 unique_id port 151924 remote_ip 10.8.0.162 151926 username morteza 151926 mac 151926 bytes_out 0 151926 bytes_in 0 151926 station_ip 83.122.251.249 151926 port 285 151926 unique_id port 151926 remote_ip 10.8.1.62 151927 username fezealinaghi 151927 kill_reason Another user logged on this global unique id 151927 mac 151927 bytes_out 0 151927 bytes_in 0 151927 station_ip 37.129.253.108 151927 port 579 151927 unique_id port 151927 remote_ip 10.8.0.78 151928 username morteza 151928 mac 151928 bytes_out 0 151928 bytes_in 0 151928 station_ip 83.122.251.249 151928 port 285 151928 unique_id port 151928 remote_ip 10.8.1.62 151938 username barzegar 151938 mac 151938 bytes_out 0 151938 bytes_in 0 151938 station_ip 5.119.104.167 151938 port 575 151938 unique_id port 151938 remote_ip 10.8.0.234 151940 username aminvpn 151940 unique_id port 151906 station_ip 37.129.237.97 151906 port 556 151906 unique_id port 151910 username morteza 151910 mac 151910 bytes_out 0 151910 bytes_in 0 151910 station_ip 83.122.251.249 151910 port 553 151910 unique_id port 151910 remote_ip 10.8.0.46 151914 username zahra1101 151914 mac 151914 bytes_out 0 151914 bytes_in 0 151914 station_ip 5.120.29.246 151914 port 553 151914 unique_id port 151914 remote_ip 10.8.0.162 151922 username farhad2 151922 mac 151922 bytes_out 0 151922 bytes_in 0 151922 station_ip 5.119.35.232 151922 port 575 151922 unique_id port 151922 remote_ip 10.8.0.190 151923 username morteza 151923 mac 151923 bytes_out 1636 151923 bytes_in 5036 151923 station_ip 83.122.251.249 151923 port 556 151923 unique_id port 151923 remote_ip 10.8.0.46 151925 username hosseine 151925 mac 151925 bytes_out 0 151925 bytes_in 0 151925 station_ip 37.129.23.134 151925 port 561 151925 unique_id port 151925 remote_ip 10.8.0.238 151930 username farhad2 151930 mac 151930 bytes_out 191063 151930 bytes_in 591407 151930 station_ip 5.119.35.232 151930 port 284 151930 unique_id port 151930 remote_ip 10.8.1.222 151931 username sedighe 151931 mac 151931 bytes_out 0 151931 bytes_in 0 151931 station_ip 37.129.36.152 151931 port 575 151931 unique_id port 151931 remote_ip 10.8.0.146 151932 username morteza 151932 mac 151932 bytes_out 0 151932 bytes_in 0 151932 station_ip 83.122.251.249 151932 port 575 151932 unique_id port 151932 remote_ip 10.8.0.46 151933 username morteza 151933 mac 151933 bytes_out 0 151933 bytes_in 0 151933 station_ip 83.122.251.249 151933 port 575 151933 unique_id port 151933 remote_ip 10.8.0.46 151936 username morteza 151936 mac 151936 bytes_out 0 151936 bytes_in 0 151936 station_ip 83.122.251.249 151936 port 285 151936 unique_id port 151936 remote_ip 10.8.1.62 151944 username hadibarzegar 151944 mac 151944 bytes_out 0 151944 bytes_in 0 151944 station_ip 37.129.34.30 151944 port 581 151944 unique_id port 151948 username zahra1101 151948 mac 151948 bytes_out 0 151948 bytes_in 0 151948 station_ip 5.120.29.246 151948 port 285 151948 unique_id port 151948 remote_ip 10.8.1.182 151950 username fezealinaghi 151950 kill_reason Another user logged on this global unique id 151950 mac 151950 bytes_out 0 151950 bytes_in 0 151950 station_ip 37.129.253.108 151950 port 579 151950 unique_id port 151951 username morteza 151951 mac 151951 bytes_out 0 151951 bytes_in 0 151951 station_ip 83.122.251.249 151951 port 286 151951 unique_id port 151951 remote_ip 10.8.1.62 151954 username aminvpn 151954 mac 151954 bytes_out 37639 151954 bytes_in 40226 151954 station_ip 5.120.143.199 151954 port 581 151954 unique_id port 151954 remote_ip 10.8.0.14 151955 username mosi 151955 kill_reason Another user logged on this global unique id 151955 mac 151955 bytes_out 0 151955 bytes_in 0 151955 station_ip 151.235.78.77 151955 port 588 151955 unique_id port 151957 username sedighe 151957 mac 151957 bytes_out 172100 151957 bytes_in 704688 151957 station_ip 37.129.36.152 151957 port 561 151957 unique_id port 151957 remote_ip 10.8.0.146 151969 username hadibarzegar 151969 kill_reason Another user logged on this global unique id 151969 mac 151969 bytes_out 0 151969 bytes_in 0 151969 station_ip 37.129.34.30 151969 port 575 151969 unique_id port 151969 remote_ip 10.8.0.154 151975 username godarzi 151975 kill_reason Another user logged on this global unique id 151975 mac 151975 bytes_out 0 151975 bytes_in 0 151937 bytes_in 0 151937 station_ip 5.120.29.246 151937 port 286 151937 unique_id port 151937 remote_ip 10.8.1.182 151939 username mosi 151939 kill_reason Another user logged on this global unique id 151939 mac 151939 bytes_out 0 151939 bytes_in 0 151939 station_ip 151.235.78.77 151939 port 588 151939 unique_id port 151941 username aminvpn 151941 mac 151941 bytes_out 0 151941 bytes_in 0 151941 station_ip 83.122.85.25 151941 port 281 151941 unique_id port 151941 remote_ip 10.8.1.6 151945 username aminvpn 151945 mac 151945 bytes_out 0 151945 bytes_in 0 151945 station_ip 83.122.85.25 151945 port 575 151945 unique_id port 151945 remote_ip 10.8.0.14 151946 username zahra1101 151946 mac 151946 bytes_out 0 151946 bytes_in 0 151946 station_ip 5.120.29.246 151946 port 281 151946 unique_id port 151946 remote_ip 10.8.1.182 151953 username morteza 151953 mac 151953 bytes_out 12575 151953 bytes_in 80434 151953 station_ip 83.122.251.249 151953 port 575 151953 unique_id port 151953 remote_ip 10.8.0.46 151956 username morteza 151956 mac 151956 bytes_out 0 151956 bytes_in 0 151956 station_ip 83.122.251.249 151956 port 285 151956 unique_id port 151956 remote_ip 10.8.1.62 151959 username farhad2 151959 kill_reason Another user logged on this global unique id 151959 mac 151959 bytes_out 0 151959 bytes_in 0 151959 station_ip 5.119.35.232 151959 port 284 151959 unique_id port 151959 remote_ip 10.8.1.222 151961 username yarmohamadi 151961 kill_reason Another user logged on this global unique id 151961 mac 151961 bytes_out 0 151961 bytes_in 0 151961 station_ip 5.119.43.252 151961 port 553 151961 unique_id port 151961 remote_ip 10.8.0.150 151965 username morteza 151965 mac 151965 bytes_out 8913 151965 bytes_in 15612 151965 station_ip 83.122.251.249 151965 port 584 151965 unique_id port 151965 remote_ip 10.8.0.46 151967 username zahra1101 151967 mac 151967 bytes_out 0 151967 bytes_in 0 151967 station_ip 5.120.29.246 151967 port 590 151967 unique_id port 151967 remote_ip 10.8.0.162 151970 username forozandeh1 151970 mac 151970 bytes_out 491378 151970 bytes_in 2254320 151970 station_ip 37.129.49.233 151970 port 561 151970 unique_id port 151970 remote_ip 10.8.0.130 151973 username mosi 151973 kill_reason Another user logged on this global unique id 151973 mac 151973 bytes_out 0 151973 bytes_in 0 151973 station_ip 151.235.78.77 151973 port 588 151973 unique_id port 151974 username sedighe 151974 mac 151974 bytes_out 0 151974 bytes_in 0 151974 station_ip 37.129.36.152 151974 port 581 151974 unique_id port 151974 remote_ip 10.8.0.146 151976 username morteza 151976 mac 151976 bytes_out 0 151976 bytes_in 0 151976 station_ip 83.122.251.249 151976 port 584 151976 unique_id port 151976 remote_ip 10.8.0.46 151977 username fezealinaghi 151987 mac 151977 kill_reason Another user logged on this global unique id 151977 mac 151977 bytes_out 0 151977 bytes_in 0 151977 station_ip 37.129.253.108 151977 port 579 151977 unique_id port 151979 username hadibarzegar 151979 kill_reason Another user logged on this global unique id 151979 mac 151979 bytes_out 0 151979 bytes_in 0 151979 station_ip 37.129.34.30 151979 port 575 151979 unique_id port 151980 username zahra1101 151980 kill_reason Maximum check online fails reached 151980 mac 151980 bytes_out 0 151980 bytes_in 0 151980 station_ip 5.120.29.246 151980 port 286 151980 unique_id port 151982 username hadibarzegar 151982 mac 151982 bytes_out 0 151982 bytes_in 0 151982 station_ip 37.129.34.30 151982 port 575 151982 unique_id port 151983 username morteza 151940 terminate_cause Lost-Carrier 151940 bytes_out 2341578 151940 bytes_in 48348251 151940 station_ip 5.119.82.189 151940 port 15731115 151940 nas_port_type Virtual 151940 remote_ip 5.5.5.104 151942 username aminvpn 151942 mac 151942 bytes_out 3280002 151942 bytes_in 25921636 151942 station_ip 5.120.143.199 151942 port 584 151942 unique_id port 151942 remote_ip 10.8.0.14 151943 username hadibarzegar 151943 kill_reason Another user logged on this global unique id 151943 mac 151943 bytes_out 0 151943 bytes_in 0 151943 station_ip 37.129.34.30 151943 port 581 151943 unique_id port 151947 username morteza 151947 mac 151947 bytes_out 19115 151947 bytes_in 102927 151947 station_ip 83.122.251.249 151947 port 575 151947 unique_id port 151947 remote_ip 10.8.0.46 151949 username forozandeh1 151949 mac 151949 bytes_out 0 151949 bytes_in 0 151949 station_ip 37.129.166.79 151949 port 590 151949 unique_id port 151949 remote_ip 10.8.0.130 151952 username zahra1101 151952 mac 151952 bytes_out 0 151952 bytes_in 0 151952 station_ip 5.120.29.246 151952 port 285 151952 unique_id port 151952 remote_ip 10.8.1.182 151958 username jafari 151958 kill_reason Another user logged on this global unique id 151958 mac 151958 bytes_out 0 151958 bytes_in 0 151958 station_ip 94.24.83.229 151958 port 587 151958 unique_id port 151960 username morteza 151960 mac 151960 bytes_out 0 151960 bytes_in 0 151960 station_ip 83.122.251.249 151960 port 285 151960 unique_id port 151960 remote_ip 10.8.1.62 151962 username barzegar 151962 mac 151962 bytes_out 0 151962 bytes_in 0 151962 station_ip 5.119.104.167 151962 port 584 151962 unique_id port 151962 remote_ip 10.8.0.234 151963 username fezealinaghi 151963 kill_reason Another user logged on this global unique id 151963 mac 151963 bytes_out 0 151963 bytes_in 0 151963 station_ip 37.129.253.108 151963 port 579 151963 unique_id port 151964 username morteza 151964 mac 151964 bytes_out 0 151964 bytes_in 0 151964 station_ip 83.122.251.249 151964 port 584 151964 unique_id port 151964 remote_ip 10.8.0.46 151966 username morteza 151966 mac 151966 bytes_out 0 151966 bytes_in 0 151966 station_ip 83.122.251.249 151966 port 584 151966 unique_id port 151966 remote_ip 10.8.0.46 151968 username morteza 151968 mac 151968 bytes_out 0 151968 bytes_in 0 151968 station_ip 83.122.251.249 151968 port 584 151968 unique_id port 151968 remote_ip 10.8.0.46 151971 username morteza 151971 mac 151971 bytes_out 0 151971 bytes_in 0 151971 station_ip 83.122.251.249 151971 port 285 151971 unique_id port 151971 remote_ip 10.8.1.62 151972 username zahra1101 151972 mac 151972 bytes_out 0 151972 bytes_in 0 151972 station_ip 5.120.29.246 151972 port 584 151972 unique_id port 151972 remote_ip 10.8.0.162 151987 username morteza 151987 bytes_out 0 151987 bytes_in 0 151987 station_ip 83.122.251.249 151987 port 287 151987 unique_id port 151987 remote_ip 10.8.1.62 151990 username yarmohamadi 151990 kill_reason Another user logged on this global unique id 151990 mac 151990 bytes_out 0 151990 bytes_in 0 151990 station_ip 5.119.43.252 151990 port 553 151990 unique_id port 151991 username zahra1101 151991 mac 151991 bytes_out 2424 151991 bytes_in 4939 151991 station_ip 5.120.29.246 151991 port 287 151991 unique_id port 151991 remote_ip 10.8.1.182 151996 username morteza 151996 mac 151996 bytes_out 0 151996 bytes_in 0 151996 station_ip 83.122.251.249 151996 port 561 151996 unique_id port 151996 remote_ip 10.8.0.46 151998 username morteza 151975 station_ip 5.202.24.27 151975 port 586 151975 unique_id port 151975 remote_ip 10.8.0.174 151978 username barzegar 151978 mac 151978 bytes_out 0 151978 bytes_in 0 151978 station_ip 5.119.104.167 151978 port 584 151978 unique_id port 151978 remote_ip 10.8.0.234 151981 username zahra1101 151981 mac 151981 bytes_out 0 151981 bytes_in 0 151981 station_ip 5.120.29.246 151981 port 287 151981 unique_id port 151981 remote_ip 10.8.1.182 151984 username yarmohamadi 151984 kill_reason Another user logged on this global unique id 151984 mac 151984 bytes_out 0 151984 bytes_in 0 151984 station_ip 5.119.43.252 151984 port 553 151984 unique_id port 151985 username forozandeh1 151985 mac 151985 bytes_out 232504 151985 bytes_in 472278 151985 station_ip 83.123.77.117 151985 port 584 151985 unique_id port 151985 remote_ip 10.8.0.130 151986 username jafari 151986 kill_reason Another user logged on this global unique id 151986 mac 151986 bytes_out 0 151986 bytes_in 0 151986 station_ip 94.24.83.229 151986 port 587 151986 unique_id port 151994 username barzegar 151994 mac 151994 bytes_out 0 151994 bytes_in 0 151994 station_ip 5.119.104.167 151994 port 561 151994 unique_id port 151994 remote_ip 10.8.0.234 151997 username farhad2 151997 mac 151997 bytes_out 0 151997 bytes_in 0 151997 station_ip 5.119.35.232 151997 port 284 151997 unique_id port 152001 username zahra1101 152001 mac 152001 bytes_out 0 152001 bytes_in 0 152001 station_ip 5.120.29.246 152001 port 287 152001 unique_id port 152001 remote_ip 10.8.1.182 152003 username morteza 152003 mac 152003 bytes_out 0 152003 bytes_in 0 152003 station_ip 83.122.251.249 152003 port 287 152003 unique_id port 152003 remote_ip 10.8.1.62 152005 username sedighe 152005 mac 152005 bytes_out 123387 152005 bytes_in 137177 152005 station_ip 37.129.36.152 152005 port 285 152005 unique_id port 152005 remote_ip 10.8.1.78 152006 username yarmohamadi 152006 kill_reason Another user logged on this global unique id 152006 mac 152006 bytes_out 0 152006 bytes_in 0 152006 station_ip 5.119.43.252 152006 port 553 152006 unique_id port 152007 username kalantary 152007 mac 152007 bytes_out 0 152007 bytes_in 0 152007 station_ip 37.129.208.189 152007 port 581 152007 unique_id port 152007 remote_ip 10.8.0.98 152011 username barzegar 152011 mac 152011 bytes_out 0 152011 bytes_in 0 152011 station_ip 5.119.104.167 152011 port 581 152011 unique_id port 152011 remote_ip 10.8.0.234 152014 username morteza 152014 mac 152014 bytes_out 0 152014 bytes_in 0 152014 station_ip 83.122.251.249 152014 port 584 152014 unique_id port 152014 remote_ip 10.8.0.46 152016 username yarmohamadi 152016 mac 152016 bytes_out 0 152016 bytes_in 0 152016 station_ip 5.119.43.252 152016 port 553 152016 unique_id port 152018 username mosi 152018 kill_reason Another user logged on this global unique id 152018 mac 152018 bytes_out 0 152018 bytes_in 0 152018 station_ip 151.235.78.77 152018 port 588 152018 unique_id port 152020 username mohammadjavad 152020 mac 152020 bytes_out 0 152020 bytes_in 0 152020 station_ip 83.122.141.150 152020 port 581 152020 unique_id port 152020 remote_ip 10.8.0.142 152021 username zahra1101 152021 mac 152021 bytes_out 0 152021 bytes_in 0 152021 station_ip 5.120.29.246 152021 port 553 152021 unique_id port 152021 remote_ip 10.8.0.162 152027 username zahra1101 152027 mac 152027 bytes_out 59234 152027 bytes_in 494902 152027 station_ip 5.120.29.246 152027 port 561 152027 unique_id port 151983 mac 151983 bytes_out 0 151983 bytes_in 0 151983 station_ip 83.122.251.249 151983 port 575 151983 unique_id port 151983 remote_ip 10.8.0.46 151988 username zahra1101 151988 mac 151988 bytes_out 0 151988 bytes_in 0 151988 station_ip 5.120.29.246 151988 port 287 151988 unique_id port 151988 remote_ip 10.8.1.182 151989 username zahra1101 151989 mac 151989 bytes_out 0 151989 bytes_in 0 151989 station_ip 5.120.29.246 151989 port 287 151989 unique_id port 151989 remote_ip 10.8.1.182 151992 username rezaei 151992 mac 151992 bytes_out 3460725 151992 bytes_in 47746860 151992 station_ip 5.120.96.217 151992 port 561 151992 unique_id port 151992 remote_ip 10.8.0.230 151993 username zahra1101 151993 mac 151993 bytes_out 0 151993 bytes_in 0 151993 station_ip 5.120.29.246 151993 port 287 151993 unique_id port 151993 remote_ip 10.8.1.182 151995 username forozandeh1 151995 mac 151995 bytes_out 0 151995 bytes_in 0 151995 station_ip 83.123.98.221 151995 port 584 151995 unique_id port 151995 remote_ip 10.8.0.130 152000 username morteza 152000 mac 152000 bytes_out 0 152000 bytes_in 0 152000 station_ip 83.122.251.249 152000 port 287 152000 unique_id port 152000 remote_ip 10.8.1.62 152002 username zahra1101 152002 mac 152002 bytes_out 0 152002 bytes_in 0 152002 station_ip 5.120.29.246 152002 port 287 152002 unique_id port 152002 remote_ip 10.8.1.182 152004 username hosseine 152004 mac 152004 bytes_out 0 152004 bytes_in 0 152004 station_ip 37.129.23.134 152004 port 556 152004 unique_id port 152004 remote_ip 10.8.0.238 152009 username aminvpn 152009 unique_id port 152009 terminate_cause Lost-Carrier 152009 bytes_out 1363891 152009 bytes_in 10686757 152009 station_ip 5.119.82.189 152009 port 15731117 152009 nas_port_type Virtual 152009 remote_ip 5.5.5.134 152010 username morteza 152010 mac 152010 bytes_out 0 152010 bytes_in 0 152010 station_ip 83.122.251.249 152010 port 581 152010 unique_id port 152010 remote_ip 10.8.0.46 152012 username morteza 152012 kill_reason Maximum check online fails reached 152012 mac 152012 bytes_out 0 152012 bytes_in 0 152012 station_ip 83.122.251.249 152012 port 285 152012 unique_id port 152017 username hosseine 152017 mac 152017 bytes_out 13227 152017 bytes_in 22580 152017 station_ip 37.129.23.134 152017 port 556 152017 unique_id port 152017 remote_ip 10.8.0.238 152019 username zahra1101 152019 mac 152019 bytes_out 364789 152019 bytes_in 2071046 152019 station_ip 5.120.29.246 152019 port 561 152019 unique_id port 152019 remote_ip 10.8.0.162 152024 username farhad2 152024 kill_reason Another user logged on this global unique id 152024 mac 152024 bytes_out 0 152024 bytes_in 0 152024 station_ip 5.119.35.232 152024 port 284 152024 unique_id port 152024 remote_ip 10.8.1.222 152025 username hamidsalari 152025 mac 152025 bytes_out 0 152025 bytes_in 0 152025 station_ip 5.119.159.147 152025 port 557 152025 unique_id port 152026 username morteza 152026 mac 152026 bytes_out 0 152026 bytes_in 0 152026 station_ip 83.122.251.249 152026 port 557 152026 unique_id port 152026 remote_ip 10.8.0.46 152029 username fezealinaghi 152029 kill_reason Another user logged on this global unique id 152029 mac 152029 bytes_out 0 152029 bytes_in 0 152029 station_ip 37.129.253.108 152029 port 579 152029 unique_id port 152031 username morteza 152031 kill_reason Maximum check online fails reached 152031 mac 152031 bytes_out 0 152031 bytes_in 0 152031 station_ip 83.122.251.249 152031 port 288 152031 unique_id port 151998 mac 151998 bytes_out 0 151998 bytes_in 0 151998 station_ip 83.122.251.249 151998 port 561 151998 unique_id port 151998 remote_ip 10.8.0.46 151999 username yarmohamadi 151999 kill_reason Another user logged on this global unique id 151999 mac 151999 bytes_out 0 151999 bytes_in 0 151999 station_ip 5.119.43.252 151999 port 553 151999 unique_id port 152008 username morteza 152008 mac 152008 bytes_out 0 152008 bytes_in 0 152008 station_ip 83.122.251.249 152008 port 285 152008 unique_id port 152008 remote_ip 10.8.1.62 152013 username hosseine 152013 mac 152013 bytes_out 0 152013 bytes_in 0 152013 station_ip 37.129.23.134 152013 port 556 152013 unique_id port 152013 remote_ip 10.8.0.238 152015 username jafari 152015 kill_reason Another user logged on this global unique id 152015 mac 152015 bytes_out 0 152015 bytes_in 0 152015 station_ip 94.24.83.229 152015 port 587 152015 unique_id port 152022 username morteza 152022 mac 152022 bytes_out 0 152022 bytes_in 0 152022 station_ip 83.122.251.249 152022 port 287 152022 unique_id port 152022 remote_ip 10.8.1.62 152023 username hashtadani4 152023 mac 152023 bytes_out 0 152023 bytes_in 0 152023 station_ip 5.202.62.175 152023 port 556 152023 unique_id port 152023 remote_ip 10.8.0.182 152030 username vanila 152030 mac 152030 bytes_out 0 152030 bytes_in 0 152030 station_ip 83.122.204.136 152030 port 556 152030 unique_id port 152030 remote_ip 10.8.0.178 152033 username jafari 152033 kill_reason Another user logged on this global unique id 152033 mac 152033 bytes_out 0 152033 bytes_in 0 152033 station_ip 94.24.83.229 152033 port 587 152033 unique_id port 152036 username houshang 152036 mac 152036 bytes_out 0 152036 bytes_in 0 152036 station_ip 5.119.15.156 152036 port 590 152036 unique_id port 152039 username morteza 152039 kill_reason Maximum check online fails reached 152039 mac 152039 bytes_out 0 152039 bytes_in 0 152039 station_ip 83.122.251.249 152039 port 289 152039 unique_id port 152045 username morteza 152045 kill_reason Maximum check online fails reached 152045 mac 152045 bytes_out 0 152045 bytes_in 0 152045 station_ip 83.122.251.249 152045 port 556 152045 unique_id port 152048 username hosseine 152048 mac 152048 bytes_out 0 152048 bytes_in 0 152048 station_ip 37.129.23.134 152048 port 553 152048 unique_id port 152048 remote_ip 10.8.0.238 152054 username hashtadani4 152054 mac 152054 bytes_out 0 152054 bytes_in 0 152054 station_ip 83.122.222.69 152054 port 561 152054 unique_id port 152054 remote_ip 10.8.0.182 152056 username hashtadani4 152056 mac 152056 bytes_out 0 152056 bytes_in 0 152056 station_ip 83.122.222.69 152056 port 561 152056 unique_id port 152056 remote_ip 10.8.0.182 152059 username hashtadani4 152059 mac 152059 bytes_out 0 152059 bytes_in 0 152059 station_ip 83.122.222.69 152059 port 584 152059 unique_id port 152059 remote_ip 10.8.0.182 152063 username aminvpn 152063 unique_id port 152063 terminate_cause Lost-Carrier 152063 bytes_out 36305 152063 bytes_in 58236 152063 station_ip 5.119.19.189 152063 port 15731129 152063 nas_port_type Virtual 152063 remote_ip 5.5.5.53 152064 username arash 152064 mac 152064 bytes_out 0 152064 bytes_in 0 152064 station_ip 89.47.78.146 152064 port 587 152064 unique_id port 152064 remote_ip 10.8.0.114 152069 username hashtadani4 152069 mac 152069 bytes_out 0 152069 bytes_in 0 152069 station_ip 5.202.134.173 152069 port 584 152069 unique_id port 152069 remote_ip 10.8.0.182 152073 username rezaei 152027 remote_ip 10.8.0.162 152028 username barzegar 152028 mac 152028 bytes_out 0 152028 bytes_in 0 152028 station_ip 5.119.104.167 152028 port 561 152028 unique_id port 152028 remote_ip 10.8.0.234 152032 username houshang 152032 kill_reason Another user logged on this global unique id 152032 mac 152032 bytes_out 0 152032 bytes_in 0 152032 station_ip 5.119.15.156 152032 port 590 152032 unique_id port 152032 remote_ip 10.8.0.22 152034 username farhad2 152034 kill_reason Another user logged on this global unique id 152034 mac 152034 bytes_out 0 152034 bytes_in 0 152034 station_ip 5.119.35.232 152034 port 284 152034 unique_id port 152035 username morteza 152035 mac 152035 bytes_out 0 152035 bytes_in 0 152035 station_ip 83.122.251.249 152035 port 556 152035 unique_id port 152035 remote_ip 10.8.0.46 152037 username aminvpn 152037 unique_id port 152037 terminate_cause User-Request 152037 bytes_out 88350 152037 bytes_in 835887 152037 station_ip 109.125.128.116 152037 port 15731127 152037 nas_port_type Virtual 152037 remote_ip 5.5.5.38 152038 username morteza 152038 mac 152038 bytes_out 0 152038 bytes_in 0 152038 station_ip 83.122.251.249 152038 port 290 152038 unique_id port 152038 remote_ip 10.8.1.62 152040 username zahra1101 152040 kill_reason Another user logged on this global unique id 152040 mac 152040 bytes_out 0 152040 bytes_in 0 152040 station_ip 5.120.29.246 152040 port 557 152040 unique_id port 152040 remote_ip 10.8.0.162 152042 username alipour 152042 kill_reason Another user logged on this global unique id 152042 mac 152042 bytes_out 0 152042 bytes_in 0 152042 station_ip 83.123.221.165 152042 port 591 152042 unique_id port 152042 remote_ip 10.8.0.102 152044 username morteza 152044 kill_reason Maximum number of concurrent logins reached 152044 mac 152044 bytes_out 0 152044 bytes_in 0 152044 station_ip 83.122.251.249 152044 port 561 152044 unique_id port 152046 username godarzi 152046 kill_reason Another user logged on this global unique id 152046 mac 152046 bytes_out 0 152046 bytes_in 0 152046 station_ip 5.202.24.27 152046 port 586 152046 unique_id port 152049 username barzegar 152049 mac 152049 bytes_out 0 152049 bytes_in 0 152049 station_ip 5.119.104.167 152049 port 561 152049 unique_id port 152049 remote_ip 10.8.0.234 152051 username zahra1101 152051 kill_reason Another user logged on this global unique id 152051 mac 152051 bytes_out 0 152051 bytes_in 0 152051 station_ip 5.120.29.246 152051 port 557 152051 unique_id port 152055 username hashtadani4 152055 mac 152055 bytes_out 0 152055 bytes_in 0 152055 station_ip 83.122.222.69 152055 port 561 152055 unique_id port 152055 remote_ip 10.8.0.182 152057 username godarzi 152057 mac 152057 bytes_out 0 152057 bytes_in 0 152057 station_ip 5.202.24.27 152057 port 586 152057 unique_id port 152058 username sedighe 152058 mac 152058 bytes_out 0 152058 bytes_in 0 152058 station_ip 37.129.36.152 152058 port 290 152058 unique_id port 152058 remote_ip 10.8.1.78 152060 username sedighe 152060 mac 152060 bytes_out 6632 152060 bytes_in 6078 152060 station_ip 37.129.36.152 152060 port 561 152060 unique_id port 152060 remote_ip 10.8.0.146 152062 username barzegar 152062 mac 152062 bytes_out 0 152062 bytes_in 0 152062 station_ip 5.119.104.167 152062 port 586 152062 unique_id port 152062 remote_ip 10.8.0.234 152065 username hashtadani4 152065 mac 152065 bytes_out 1702430 152065 bytes_in 16836937 152065 station_ip 5.202.134.173 152065 port 584 152065 unique_id port 152065 remote_ip 10.8.0.182 152068 username sedighe 152041 username hashtadani4 152041 mac 152041 bytes_out 0 152041 bytes_in 0 152041 station_ip 5.202.62.175 152041 port 581 152041 unique_id port 152041 remote_ip 10.8.0.182 152043 username farhad2 152043 mac 152043 bytes_out 0 152043 bytes_in 0 152043 station_ip 5.119.35.232 152043 port 284 152043 unique_id port 152047 username morteza 152047 kill_reason Maximum check online fails reached 152047 mac 152047 bytes_out 0 152047 bytes_in 0 152047 station_ip 83.122.251.249 152047 port 284 152047 unique_id port 152050 username hashtadani4 152050 mac 152050 bytes_out 0 152050 bytes_in 0 152050 station_ip 83.122.222.69 152050 port 561 152050 unique_id port 152050 remote_ip 10.8.0.182 152052 username jafari 152052 mac 152052 bytes_out 0 152052 bytes_in 0 152052 station_ip 94.24.83.229 152052 port 587 152052 unique_id port 152053 username hashtadani4 152053 mac 152053 bytes_out 0 152053 bytes_in 0 152053 station_ip 83.122.222.69 152053 port 290 152053 unique_id port 152053 remote_ip 10.8.1.142 152061 username aminvpn 152061 unique_id port 152061 terminate_cause Lost-Carrier 152061 bytes_out 163868 152061 bytes_in 887468 152061 station_ip 5.119.19.189 152061 port 15731128 152061 nas_port_type Virtual 152061 remote_ip 5.5.5.49 152066 username fezealinaghi 152066 kill_reason Another user logged on this global unique id 152066 mac 152066 bytes_out 0 152066 bytes_in 0 152066 station_ip 37.129.253.108 152066 port 579 152066 unique_id port 152067 username hamidsalari 152067 mac 152067 bytes_out 0 152067 bytes_in 0 152067 station_ip 5.119.159.147 152067 port 287 152067 unique_id port 152067 remote_ip 10.8.1.226 152071 username aminvpn 152071 unique_id port 152071 terminate_cause Lost-Carrier 152071 bytes_out 2702339 152071 bytes_in 24363917 152071 station_ip 5.119.19.189 152071 port 15731130 152071 nas_port_type Virtual 152071 remote_ip 5.5.5.56 152075 username zahra1101 152075 mac 152075 bytes_out 0 152075 bytes_in 0 152075 station_ip 5.120.29.246 152075 port 290 152075 unique_id port 152075 remote_ip 10.8.1.182 152080 username farhad2 152080 mac 152080 bytes_out 0 152080 bytes_in 0 152080 station_ip 5.119.223.74 152080 port 292 152080 unique_id port 152080 remote_ip 10.8.1.222 152082 username moradi 152082 mac 152082 bytes_out 1023549 152082 bytes_in 12547044 152082 station_ip 46.225.214.140 152082 port 575 152082 unique_id port 152082 remote_ip 10.8.0.226 152086 username zahra1101 152086 mac 152086 bytes_out 0 152086 bytes_in 0 152086 station_ip 5.120.29.246 152086 port 290 152086 unique_id port 152086 remote_ip 10.8.1.182 152089 username mostafa_es78 152089 unique_id port 152089 terminate_cause User-Request 152089 bytes_out 351191 152089 bytes_in 1064413 152089 station_ip 5.126.146.226 152089 port 15731131 152089 nas_port_type Virtual 152089 remote_ip 5.5.5.61 152091 username fezealinaghi 152091 kill_reason Another user logged on this global unique id 152091 mac 152091 bytes_out 0 152091 bytes_in 0 152091 station_ip 37.129.253.108 152091 port 579 152091 unique_id port 152092 username hashtadani4 152092 mac 152092 bytes_out 0 152092 bytes_in 0 152092 station_ip 5.202.134.173 152092 port 575 152092 unique_id port 152092 remote_ip 10.8.0.182 152096 username zahra1101 152096 mac 152096 bytes_out 0 152096 bytes_in 0 152096 station_ip 5.120.29.246 152096 port 575 152096 unique_id port 152096 remote_ip 10.8.0.162 152100 username zahra1101 152100 mac 152100 bytes_out 0 152100 bytes_in 0 152100 station_ip 5.120.29.246 152100 port 290 152068 mac 152068 bytes_out 129798 152068 bytes_in 113853 152068 station_ip 37.129.36.152 152068 port 290 152068 unique_id port 152068 remote_ip 10.8.1.78 152070 username fezealinaghi 152070 kill_reason Another user logged on this global unique id 152070 mac 152070 bytes_out 0 152070 bytes_in 0 152070 station_ip 37.129.253.108 152070 port 579 152070 unique_id port 152072 username barzegar 152072 mac 152072 bytes_out 0 152072 bytes_in 0 152072 station_ip 5.119.104.167 152072 port 590 152072 unique_id port 152072 remote_ip 10.8.0.234 152074 username zahra1101 152074 mac 152074 bytes_out 0 152074 bytes_in 0 152074 station_ip 5.120.29.246 152074 port 557 152074 unique_id port 152077 username sedighe 152077 mac 152077 bytes_out 0 152077 bytes_in 0 152077 station_ip 37.129.36.152 152077 port 287 152077 unique_id port 152077 remote_ip 10.8.1.78 152081 username mosi 152081 kill_reason Another user logged on this global unique id 152081 mac 152081 bytes_out 0 152081 bytes_in 0 152081 station_ip 151.235.78.77 152081 port 588 152081 unique_id port 152083 username hatami 152083 mac 152083 bytes_out 0 152083 bytes_in 0 152083 station_ip 151.235.98.155 152083 port 586 152083 unique_id port 152083 remote_ip 10.8.0.106 152098 username fezealinaghi 152098 kill_reason Another user logged on this global unique id 152098 mac 152098 bytes_out 0 152098 bytes_in 0 152098 station_ip 37.129.253.108 152098 port 579 152098 unique_id port 152101 username hamidsalari 152101 mac 152101 bytes_out 0 152101 bytes_in 0 152101 station_ip 5.119.25.45 152101 port 291 152101 unique_id port 152101 remote_ip 10.8.1.226 152107 username sedighe 152107 mac 152107 bytes_out 2779 152107 bytes_in 5270 152107 station_ip 37.129.36.152 152107 port 287 152107 unique_id port 152107 remote_ip 10.8.1.78 152109 username hashtadani4 152109 mac 152109 bytes_out 0 152109 bytes_in 0 152109 station_ip 5.202.134.173 152109 port 557 152109 unique_id port 152109 remote_ip 10.8.0.182 152114 username fezealinaghi 152114 kill_reason Another user logged on this global unique id 152114 mac 152114 bytes_out 0 152114 bytes_in 0 152114 station_ip 37.129.253.108 152114 port 579 152114 unique_id port 152116 username hashtadani4 152116 mac 152116 bytes_out 4776 152116 bytes_in 7632 152116 station_ip 83.122.207.65 152116 port 581 152116 unique_id port 152116 remote_ip 10.8.0.182 152117 username hashtadani4 152117 mac 152117 bytes_out 0 152117 bytes_in 0 152117 station_ip 83.122.207.65 152117 port 575 152117 unique_id port 152117 remote_ip 10.8.0.182 152119 username zahra1101 152119 mac 152119 bytes_out 49571 152119 bytes_in 424710 152119 station_ip 5.120.29.246 152119 port 287 152119 unique_id port 152119 remote_ip 10.8.1.182 152123 username barzegar 152123 mac 152123 bytes_out 0 152123 bytes_in 0 152123 station_ip 5.119.104.167 152123 port 292 152123 unique_id port 152123 remote_ip 10.8.1.174 152128 username hashtadani4 152128 kill_reason Maximum number of concurrent logins reached 152128 mac 152128 bytes_out 0 152128 bytes_in 0 152128 station_ip 83.122.207.65 152128 port 590 152128 unique_id port 152132 username barzegar 152132 mac 152132 bytes_out 0 152132 bytes_in 0 152132 station_ip 5.119.104.167 152132 port 287 152132 unique_id port 152132 remote_ip 10.8.1.174 152136 username zahra1101 152136 mac 152136 bytes_out 2575 152136 bytes_in 4996 152136 station_ip 5.120.29.246 152136 port 584 152136 unique_id port 152136 remote_ip 10.8.0.162 152140 username barzegar 152073 mac 152073 bytes_out 1182485 152073 bytes_in 10030140 152073 station_ip 5.120.96.217 152073 port 581 152073 unique_id port 152073 remote_ip 10.8.0.230 152076 username forozandeh1 152076 mac 152076 bytes_out 368891 152076 bytes_in 1506958 152076 station_ip 83.122.193.136 152076 port 584 152076 unique_id port 152076 remote_ip 10.8.0.130 152078 username fezealinaghi 152078 kill_reason Another user logged on this global unique id 152078 mac 152078 bytes_out 0 152078 bytes_in 0 152078 station_ip 37.129.253.108 152078 port 579 152078 unique_id port 152079 username hashtadani4 152079 mac 152079 bytes_out 0 152079 bytes_in 0 152079 station_ip 5.202.134.173 152079 port 584 152079 unique_id port 152079 remote_ip 10.8.0.182 152084 username farhad2 152084 mac 152084 bytes_out 32962 152084 bytes_in 263789 152084 station_ip 5.120.103.197 152084 port 581 152084 unique_id port 152084 remote_ip 10.8.0.190 152085 username hashtadani4 152085 mac 152085 bytes_out 0 152085 bytes_in 0 152085 station_ip 5.202.134.173 152085 port 575 152085 unique_id port 152085 remote_ip 10.8.0.182 152087 username zahra1101 152087 mac 152087 bytes_out 0 152087 bytes_in 0 152087 station_ip 5.120.29.246 152087 port 290 152087 unique_id port 152087 remote_ip 10.8.1.182 152088 username barzegar 152088 mac 152088 bytes_out 0 152088 bytes_in 0 152088 station_ip 5.119.104.167 152088 port 575 152088 unique_id port 152088 remote_ip 10.8.0.234 152090 username kalantary 152090 mac 152090 bytes_out 0 152090 bytes_in 0 152090 station_ip 37.129.170.1 152090 port 581 152090 unique_id port 152090 remote_ip 10.8.0.98 152093 username jafari 152093 mac 152093 bytes_out 3599728 152093 bytes_in 41378049 152093 station_ip 5.200.114.208 152093 port 557 152093 unique_id port 152093 remote_ip 10.8.0.242 152094 username sedighe 152094 mac 152094 bytes_out 0 152094 bytes_in 0 152094 station_ip 37.129.36.152 152094 port 287 152094 unique_id port 152094 remote_ip 10.8.1.78 152095 username zahra1101 152095 mac 152095 bytes_out 0 152095 bytes_in 0 152095 station_ip 5.120.29.246 152095 port 290 152095 unique_id port 152095 remote_ip 10.8.1.182 152097 username sedighe 152097 mac 152097 bytes_out 0 152097 bytes_in 0 152097 station_ip 37.129.36.152 152097 port 287 152097 unique_id port 152097 remote_ip 10.8.1.78 152099 username zahra1101 152099 mac 152099 bytes_out 0 152099 bytes_in 0 152099 station_ip 5.120.29.246 152099 port 290 152099 unique_id port 152099 remote_ip 10.8.1.182 152102 username jafari 152102 mac 152102 bytes_out 404389 152102 bytes_in 2222938 152102 station_ip 5.200.114.208 152102 port 557 152102 unique_id port 152102 remote_ip 10.8.0.242 152105 username alireza 152105 kill_reason Relative expiration date has reached 152105 unique_id port 152105 bytes_out 0 152105 bytes_in 0 152105 station_ip 5.120.75.41 152105 port 15731132 152105 nas_port_type Virtual 152108 username zahra1101 152108 mac 152108 bytes_out 0 152108 bytes_in 0 152108 station_ip 5.120.29.246 152108 port 581 152108 unique_id port 152108 remote_ip 10.8.0.162 152111 username godarzi 152111 mac 152111 bytes_out 0 152111 bytes_in 0 152111 station_ip 5.202.24.27 152111 port 561 152111 unique_id port 152111 remote_ip 10.8.0.174 152112 username sedighe 152112 mac 152112 bytes_out 0 152112 bytes_in 0 152112 station_ip 37.129.36.152 152112 port 291 152112 unique_id port 152112 remote_ip 10.8.1.78 152113 username barzegar 152113 mac 152100 unique_id port 152100 remote_ip 10.8.1.182 152103 username barzegar 152103 mac 152103 bytes_out 0 152103 bytes_in 0 152103 station_ip 5.119.104.167 152103 port 292 152103 unique_id port 152103 remote_ip 10.8.1.174 152104 username sedighe 152104 mac 152104 bytes_out 2229 152104 bytes_in 5023 152104 station_ip 37.129.36.152 152104 port 287 152104 unique_id port 152104 remote_ip 10.8.1.78 152106 username zahra1101 152106 mac 152106 bytes_out 0 152106 bytes_in 0 152106 station_ip 5.120.29.246 152106 port 581 152106 unique_id port 152106 remote_ip 10.8.0.162 152110 username barzegar 152110 mac 152110 bytes_out 0 152110 bytes_in 0 152110 station_ip 5.119.104.167 152110 port 287 152110 unique_id port 152110 remote_ip 10.8.1.174 152115 username forozandeh1 152115 mac 152115 bytes_out 0 152115 bytes_in 0 152115 station_ip 83.123.129.75 152115 port 575 152115 unique_id port 152115 remote_ip 10.8.0.130 152118 username hashtadani4 152118 kill_reason Maximum number of concurrent logins reached 152118 mac 152118 bytes_out 0 152118 bytes_in 0 152118 station_ip 83.122.207.65 152118 port 584 152118 unique_id port 152120 username hashtadani4 152120 kill_reason Maximum number of concurrent logins reached 152120 mac 152120 bytes_out 0 152120 bytes_in 0 152120 station_ip 83.122.207.65 152120 port 584 152120 unique_id port 152122 username hashtadani4 152122 kill_reason Maximum number of concurrent logins reached 152122 mac 152122 bytes_out 0 152122 bytes_in 0 152122 station_ip 83.122.207.65 152122 port 586 152122 unique_id port 152124 username hashtadani4 152124 kill_reason Maximum number of concurrent logins reached 152124 mac 152124 bytes_out 0 152124 bytes_in 0 152124 station_ip 83.122.207.65 152124 port 586 152124 unique_id port 152127 username hashtadani4 152127 kill_reason Maximum check online fails reached 152127 mac 152127 bytes_out 0 152127 bytes_in 0 152127 station_ip 83.122.207.65 152127 port 581 152127 unique_id port 152129 username hashtadani4 152129 kill_reason Maximum number of concurrent logins reached 152129 mac 152129 bytes_out 0 152129 bytes_in 0 152129 station_ip 83.122.207.65 152129 port 590 152129 unique_id port 152131 username hashtadani4 152131 kill_reason Maximum check online fails reached 152131 mac 152131 bytes_out 0 152131 bytes_in 0 152131 station_ip 83.122.207.65 152131 port 575 152131 unique_id port 152134 username kordestani 152134 mac 152134 bytes_out 2199708 152134 bytes_in 30843444 152134 station_ip 151.235.78.211 152134 port 557 152134 unique_id port 152134 remote_ip 10.8.0.134 152135 username zahra1101 152135 mac 152135 bytes_out 111872 152135 bytes_in 151138 152135 station_ip 5.120.29.246 152135 port 584 152135 unique_id port 152135 remote_ip 10.8.0.162 152139 username farhad2 152139 mac 152139 bytes_out 574463 152139 bytes_in 2268188 152139 station_ip 5.120.161.11 152139 port 557 152139 unique_id port 152139 remote_ip 10.8.0.190 152147 username zahra1101 152147 mac 152147 bytes_out 0 152147 bytes_in 0 152147 station_ip 5.120.29.246 152147 port 594 152147 unique_id port 152147 remote_ip 10.8.0.162 152148 username nilufarrajaei 152148 mac 152148 bytes_out 0 152148 bytes_in 0 152148 station_ip 5.233.82.115 152148 port 557 152148 unique_id port 152148 remote_ip 10.8.0.206 152151 username mohammadjavad 152151 mac 152151 bytes_out 0 152151 bytes_in 0 152151 station_ip 83.123.118.239 152151 port 584 152151 unique_id port 152151 remote_ip 10.8.0.142 152153 username sedighe 152153 mac 152153 bytes_out 0 152153 bytes_in 0 152113 bytes_out 0 152113 bytes_in 0 152113 station_ip 5.119.104.167 152113 port 287 152113 unique_id port 152113 remote_ip 10.8.1.174 152121 username hashtadani4 152121 kill_reason Maximum number of concurrent logins reached 152121 mac 152121 bytes_out 0 152121 bytes_in 0 152121 station_ip 83.122.207.65 152121 port 584 152121 unique_id port 152125 username hashtadani4 152125 kill_reason Maximum number of concurrent logins reached 152125 mac 152125 bytes_out 0 152125 bytes_in 0 152125 station_ip 83.122.207.65 152125 port 586 152125 unique_id port 152126 username hashtadani4 152126 kill_reason Maximum number of concurrent logins reached 152126 mac 152126 bytes_out 0 152126 bytes_in 0 152126 station_ip 83.122.207.65 152126 port 586 152126 unique_id port 152130 username hashtadani4 152130 kill_reason Maximum number of concurrent logins reached 152130 mac 152130 bytes_out 0 152130 bytes_in 0 152130 station_ip 83.122.207.65 152130 port 590 152130 unique_id port 152133 username hashtadani4 152133 kill_reason Maximum check online fails reached 152133 mac 152133 bytes_out 0 152133 bytes_in 0 152133 station_ip 83.122.207.65 152133 port 586 152133 unique_id port 152137 username mohammadmahdi 152137 kill_reason Another user logged on this global unique id 152137 mac 152137 bytes_out 0 152137 bytes_in 0 152137 station_ip 5.120.56.142 152137 port 561 152137 unique_id port 152137 remote_ip 10.8.0.54 152138 username barzegar 152138 mac 152138 bytes_out 0 152138 bytes_in 0 152138 station_ip 5.119.104.167 152138 port 287 152138 unique_id port 152138 remote_ip 10.8.1.174 152141 username mahdiyehalizadeh 152141 mac 152141 bytes_out 0 152141 bytes_in 0 152141 station_ip 5.119.64.162 152141 port 557 152141 unique_id port 152141 remote_ip 10.8.0.82 152143 username zahra1101 152143 mac 152143 bytes_out 2493 152143 bytes_in 4994 152143 station_ip 5.120.29.246 152143 port 594 152143 unique_id port 152143 remote_ip 10.8.0.162 152144 username fezealinaghi 152144 kill_reason Another user logged on this global unique id 152144 mac 152144 bytes_out 0 152144 bytes_in 0 152144 station_ip 37.129.253.108 152144 port 579 152144 unique_id port 152150 username barzegar 152150 mac 152150 bytes_out 0 152150 bytes_in 0 152150 station_ip 5.119.104.167 152150 port 594 152150 unique_id port 152150 remote_ip 10.8.0.234 152152 username arash 152152 mac 152152 bytes_out 0 152152 bytes_in 0 152152 station_ip 89.47.78.146 152152 port 590 152152 unique_id port 152152 remote_ip 10.8.0.114 152155 username zahra1101 152155 mac 152155 bytes_out 0 152155 bytes_in 0 152155 station_ip 5.120.29.246 152155 port 292 152155 unique_id port 152155 remote_ip 10.8.1.182 152157 username houshang 152157 mac 152157 bytes_out 0 152157 bytes_in 0 152157 station_ip 5.119.15.156 152157 port 593 152157 unique_id port 152157 remote_ip 10.8.0.22 152158 username zahra1101 152158 mac 152158 bytes_out 0 152158 bytes_in 0 152158 station_ip 5.120.29.246 152158 port 291 152158 unique_id port 152158 remote_ip 10.8.1.182 152168 username sabaghnezhad 152168 mac 152168 bytes_out 366105 152168 bytes_in 357867 152168 station_ip 37.129.9.137 152168 port 560 152168 unique_id port 152168 remote_ip 10.8.0.186 152170 username mohammadmahdi 152170 kill_reason Another user logged on this global unique id 152170 mac 152170 bytes_out 0 152170 bytes_in 0 152170 station_ip 5.120.56.142 152170 port 561 152170 unique_id port 152171 username zahra1101 152171 mac 152171 bytes_out 0 152171 bytes_in 0 152171 station_ip 5.120.29.246 152171 port 291 152171 unique_id port 152140 mac 152140 bytes_out 0 152140 bytes_in 0 152140 station_ip 5.119.104.167 152140 port 595 152140 unique_id port 152140 remote_ip 10.8.0.234 152142 username nilufarrajaei 152142 mac 152142 bytes_out 0 152142 bytes_in 0 152142 station_ip 5.233.82.115 152142 port 590 152142 unique_id port 152142 remote_ip 10.8.0.206 152145 username barzegar 152145 mac 152145 bytes_out 0 152145 bytes_in 0 152145 station_ip 5.119.104.167 152145 port 595 152145 unique_id port 152145 remote_ip 10.8.0.234 152146 username zahra1101 152146 mac 152146 bytes_out 0 152146 bytes_in 0 152146 station_ip 5.120.29.246 152146 port 594 152146 unique_id port 152146 remote_ip 10.8.0.162 152149 username zahra1101 152149 mac 152149 bytes_out 0 152149 bytes_in 0 152149 station_ip 5.120.29.246 152149 port 292 152149 unique_id port 152149 remote_ip 10.8.1.182 152154 username vanila 152154 mac 152154 bytes_out 452219 152154 bytes_in 3049590 152154 station_ip 83.122.226.228 152154 port 595 152154 unique_id port 152154 remote_ip 10.8.0.178 152156 username zahra1101 152156 mac 152156 bytes_out 0 152156 bytes_in 0 152156 station_ip 5.120.29.246 152156 port 590 152156 unique_id port 152156 remote_ip 10.8.0.162 152159 username zahra1101 152159 mac 152159 bytes_out 0 152159 bytes_in 0 152159 station_ip 5.120.29.246 152159 port 291 152159 unique_id port 152159 remote_ip 10.8.1.182 152160 username zahra1101 152160 mac 152160 bytes_out 0 152160 bytes_in 0 152160 station_ip 5.120.29.246 152160 port 291 152160 unique_id port 152160 remote_ip 10.8.1.182 152161 username zahra1101 152161 mac 152161 bytes_out 0 152161 bytes_in 0 152161 station_ip 5.120.29.246 152161 port 291 152161 unique_id port 152161 remote_ip 10.8.1.182 152162 username zahra1101 152162 mac 152162 bytes_out 0 152162 bytes_in 0 152162 station_ip 5.120.29.246 152162 port 590 152162 unique_id port 152162 remote_ip 10.8.0.162 152163 username godarzi 152163 mac 152163 bytes_out 0 152163 bytes_in 0 152163 station_ip 5.202.24.27 152163 port 292 152163 unique_id port 152163 remote_ip 10.8.1.230 152166 username fezealinaghi 152166 kill_reason Another user logged on this global unique id 152166 mac 152166 bytes_out 0 152166 bytes_in 0 152166 station_ip 37.129.253.108 152166 port 579 152166 unique_id port 152178 username barzegar 152178 mac 152178 bytes_out 0 152178 bytes_in 0 152178 station_ip 5.119.104.167 152178 port 592 152178 unique_id port 152178 remote_ip 10.8.0.234 152180 username zahra1101 152180 kill_reason Maximum check online fails reached 152180 mac 152180 bytes_out 0 152180 bytes_in 0 152180 station_ip 5.120.29.246 152180 port 291 152180 unique_id port 152182 username aminvpn 152182 mac 152182 bytes_out 0 152182 bytes_in 0 152182 station_ip 37.129.39.141 152182 port 587 152182 unique_id port 152182 remote_ip 10.8.0.14 152185 username aminvpn 152185 mac 152185 bytes_out 0 152185 bytes_in 0 152185 station_ip 5.120.143.199 152185 port 560 152185 unique_id port 152185 remote_ip 10.8.0.14 152186 username nilufarrajaei 152186 mac 152186 bytes_out 0 152186 bytes_in 0 152186 station_ip 2.184.11.46 152186 port 557 152186 unique_id port 152186 remote_ip 10.8.0.206 152189 username mosi 152189 kill_reason Another user logged on this global unique id 152189 mac 152189 bytes_out 0 152189 bytes_in 0 152189 station_ip 151.235.78.77 152189 port 588 152189 unique_id port 152192 username aminvpn 152192 mac 152192 bytes_out 0 152153 station_ip 37.129.36.152 152153 port 291 152153 unique_id port 152153 remote_ip 10.8.1.78 152164 username mosi 152164 kill_reason Another user logged on this global unique id 152164 mac 152164 bytes_out 0 152164 bytes_in 0 152164 station_ip 151.235.78.77 152164 port 588 152164 unique_id port 152165 username zahra1101 152165 mac 152165 bytes_out 0 152165 bytes_in 0 152165 station_ip 5.120.29.246 152165 port 291 152165 unique_id port 152165 remote_ip 10.8.1.182 152167 username barzegar 152167 mac 152167 bytes_out 0 152167 bytes_in 0 152167 station_ip 5.119.104.167 152167 port 593 152167 unique_id port 152167 remote_ip 10.8.0.234 152169 username zahra1101 152169 mac 152169 bytes_out 0 152169 bytes_in 0 152169 station_ip 5.120.29.246 152169 port 593 152169 unique_id port 152169 remote_ip 10.8.0.162 152172 username zahra1101 152172 mac 152172 bytes_out 0 152172 bytes_in 0 152172 station_ip 5.120.29.246 152172 port 560 152172 unique_id port 152172 remote_ip 10.8.0.162 152173 username zahra1101 152173 mac 152173 bytes_out 0 152173 bytes_in 0 152173 station_ip 5.120.29.246 152173 port 560 152173 unique_id port 152173 remote_ip 10.8.0.162 152177 username zahra1101 152177 mac 152177 bytes_out 0 152177 bytes_in 0 152177 station_ip 5.120.29.246 152177 port 560 152177 unique_id port 152177 remote_ip 10.8.0.162 152179 username zahra1101 152179 mac 152179 bytes_out 0 152179 bytes_in 0 152179 station_ip 5.120.29.246 152179 port 292 152179 unique_id port 152179 remote_ip 10.8.1.182 152183 username moradi 152183 kill_reason Another user logged on this global unique id 152183 mac 152183 bytes_out 0 152183 bytes_in 0 152183 station_ip 83.122.23.64 152183 port 590 152183 unique_id port 152183 remote_ip 10.8.0.226 152187 username aminvpn 152187 mac 152187 bytes_out 0 152187 bytes_in 0 152187 station_ip 37.129.39.141 152187 port 587 152187 unique_id port 152187 remote_ip 10.8.0.14 152188 username zahra1101 152188 mac 152188 bytes_out 0 152188 bytes_in 0 152188 station_ip 5.120.29.246 152188 port 292 152188 unique_id port 152188 remote_ip 10.8.1.182 152190 username barzegar 152190 mac 152190 bytes_out 0 152190 bytes_in 0 152190 station_ip 5.119.104.167 152190 port 292 152190 unique_id port 152190 remote_ip 10.8.1.174 152195 username zahra1101 152195 kill_reason Maximum check online fails reached 152195 mac 152195 bytes_out 0 152195 bytes_in 0 152195 station_ip 5.120.29.246 152195 port 587 152195 unique_id port 152200 username aminvpn 152200 mac 152200 bytes_out 0 152200 bytes_in 0 152200 station_ip 37.129.39.141 152200 port 597 152200 unique_id port 152200 remote_ip 10.8.0.14 152201 username barzegar 152201 mac 152201 bytes_out 0 152201 bytes_in 0 152201 station_ip 5.119.104.167 152201 port 292 152201 unique_id port 152201 remote_ip 10.8.1.174 152204 username rezaei 152204 mac 152204 bytes_out 0 152204 bytes_in 0 152204 station_ip 5.120.96.217 152204 port 592 152204 unique_id port 152204 remote_ip 10.8.0.230 152205 username mahdiyehalizadeh 152205 mac 152205 bytes_out 786267 152205 bytes_in 4771272 152205 station_ip 5.120.18.93 152205 port 596 152205 unique_id port 152205 remote_ip 10.8.0.82 152208 username ayobi 152208 mac 152208 bytes_out 0 152208 bytes_in 0 152208 station_ip 37.27.20.118 152208 port 560 152208 unique_id port 152208 remote_ip 10.8.0.246 152211 username aminvpn 152211 mac 152211 bytes_out 0 152211 bytes_in 0 152211 station_ip 5.120.143.199 152171 remote_ip 10.8.1.182 152174 username sekonji3 152174 mac 152174 bytes_out 0 152174 bytes_in 0 152174 station_ip 37.129.180.16 152174 port 592 152174 unique_id port 152174 remote_ip 10.8.0.6 152175 username zahra1101 152175 mac 152175 bytes_out 0 152175 bytes_in 0 152175 station_ip 5.120.29.246 152175 port 560 152175 unique_id port 152175 remote_ip 10.8.0.162 152176 username fezealinaghi 152176 kill_reason Another user logged on this global unique id 152176 mac 152176 bytes_out 0 152176 bytes_in 0 152176 station_ip 37.129.253.108 152176 port 579 152176 unique_id port 152181 username nilufarrajaei 152181 mac 152181 bytes_out 0 152181 bytes_in 0 152181 station_ip 5.233.82.115 152181 port 557 152181 unique_id port 152181 remote_ip 10.8.0.206 152184 username zahra1101 152184 mac 152184 bytes_out 0 152184 bytes_in 0 152184 station_ip 5.120.29.246 152184 port 587 152184 unique_id port 152184 remote_ip 10.8.0.162 152191 username aminvpn 152191 mac 152191 bytes_out 0 152191 bytes_in 0 152191 station_ip 5.120.143.199 152191 port 557 152191 unique_id port 152191 remote_ip 10.8.0.14 152193 username zahra1101 152193 mac 152193 bytes_out 0 152193 bytes_in 0 152193 station_ip 5.120.29.246 152193 port 292 152193 unique_id port 152193 remote_ip 10.8.1.182 152194 username zahra1101 152194 mac 152194 bytes_out 0 152194 bytes_in 0 152194 station_ip 5.120.29.246 152194 port 595 152194 unique_id port 152194 remote_ip 10.8.0.162 152197 username farhad2 152197 kill_reason Another user logged on this global unique id 152197 mac 152197 bytes_out 0 152197 bytes_in 0 152197 station_ip 5.120.161.11 152197 port 287 152197 unique_id port 152197 remote_ip 10.8.1.222 152199 username mohammadmahdi 152199 kill_reason Another user logged on this global unique id 152199 mac 152199 bytes_out 0 152199 bytes_in 0 152199 station_ip 5.120.56.142 152199 port 561 152199 unique_id port 152203 username nilufarrajaei 152203 mac 152203 bytes_out 33895 152203 bytes_in 114251 152203 station_ip 37.129.79.90 152203 port 560 152203 unique_id port 152203 remote_ip 10.8.0.206 152207 username fezealinaghi 152207 kill_reason Another user logged on this global unique id 152207 mac 152207 bytes_out 0 152207 bytes_in 0 152207 station_ip 37.129.253.108 152207 port 579 152207 unique_id port 152210 username aminvpn 152210 mac 152210 bytes_out 0 152210 bytes_in 0 152210 station_ip 37.129.39.141 152210 port 592 152210 unique_id port 152210 remote_ip 10.8.0.14 152214 username zahra1101 152214 mac 152214 bytes_out 0 152214 bytes_in 0 152214 station_ip 5.120.29.246 152214 port 592 152214 unique_id port 152214 remote_ip 10.8.0.162 152224 username mosi 152224 kill_reason Another user logged on this global unique id 152224 mac 152224 bytes_out 0 152224 bytes_in 0 152224 station_ip 151.235.78.77 152224 port 588 152224 unique_id port 152225 username vanila 152225 mac 152225 bytes_out 0 152225 bytes_in 0 152225 station_ip 83.122.226.228 152225 port 598 152225 unique_id port 152225 remote_ip 10.8.0.178 152229 username fezealinaghi 152229 kill_reason Another user logged on this global unique id 152229 mac 152229 bytes_out 0 152229 bytes_in 0 152229 station_ip 37.129.253.108 152229 port 579 152229 unique_id port 152232 username mamal 152232 kill_reason Relative expiration date has reached 152232 unique_id port 152232 bytes_out 0 152232 bytes_in 0 152232 station_ip 113.203.69.176 152232 port 15731137 152232 nas_port_type Virtual 152233 username avaanna 152233 kill_reason Relative expiration date has reached 152233 mac 152233 bytes_out 0 152192 bytes_in 0 152192 station_ip 37.129.39.141 152192 port 592 152192 unique_id port 152192 remote_ip 10.8.0.14 152196 username aminvpn 152196 mac 152196 bytes_out 99114 152196 bytes_in 244860 152196 station_ip 5.120.143.199 152196 port 593 152196 unique_id port 152196 remote_ip 10.8.0.14 152198 username zahra1101 152198 mac 152198 bytes_out 0 152198 bytes_in 0 152198 station_ip 5.120.29.246 152198 port 595 152198 unique_id port 152198 remote_ip 10.8.0.162 152202 username zahra1101 152202 mac 152202 bytes_out 0 152202 bytes_in 0 152202 station_ip 5.120.29.246 152202 port 293 152202 unique_id port 152202 remote_ip 10.8.1.182 152206 username zahra1101 152206 mac 152206 bytes_out 0 152206 bytes_in 0 152206 station_ip 5.120.29.246 152206 port 292 152206 unique_id port 152206 remote_ip 10.8.1.182 152209 username aminvpn 152209 mac 152209 bytes_out 16427 152209 bytes_in 19083 152209 station_ip 5.120.143.199 152209 port 593 152209 unique_id port 152209 remote_ip 10.8.0.14 152212 username zahra1101 152212 mac 152212 bytes_out 0 152212 bytes_in 0 152212 station_ip 5.120.29.246 152212 port 292 152212 unique_id port 152212 remote_ip 10.8.1.182 152213 username moradi 152213 mac 152213 bytes_out 0 152213 bytes_in 0 152213 station_ip 83.122.23.64 152213 port 590 152213 unique_id port 152219 username zahra1101 152219 mac 152219 bytes_out 0 152219 bytes_in 0 152219 station_ip 5.120.29.246 152219 port 597 152219 unique_id port 152219 remote_ip 10.8.0.162 152221 username zahra1101 152221 mac 152221 bytes_out 0 152221 bytes_in 0 152221 station_ip 5.120.29.246 152221 port 597 152221 unique_id port 152221 remote_ip 10.8.0.162 152223 username barzegar 152223 mac 152223 bytes_out 0 152223 bytes_in 0 152223 station_ip 5.119.104.167 152223 port 597 152223 unique_id port 152223 remote_ip 10.8.0.234 152227 username zahra1101 152227 mac 152227 bytes_out 0 152227 bytes_in 0 152227 station_ip 5.120.29.246 152227 port 598 152227 unique_id port 152227 remote_ip 10.8.0.162 152228 username zahra1101 152228 mac 152228 bytes_out 0 152228 bytes_in 0 152228 station_ip 5.120.29.246 152228 port 293 152228 unique_id port 152228 remote_ip 10.8.1.182 152230 username vanila 152230 mac 152230 bytes_out 0 152230 bytes_in 0 152230 station_ip 83.122.226.228 152230 port 599 152230 unique_id port 152230 remote_ip 10.8.0.178 152235 username zahra1101 152235 mac 152235 bytes_out 15863 152235 bytes_in 174957 152235 station_ip 5.120.29.246 152235 port 601 152235 unique_id port 152235 remote_ip 10.8.0.162 152236 username zahra1101 152236 mac 152236 bytes_out 0 152236 bytes_in 0 152236 station_ip 5.120.29.246 152236 port 293 152236 unique_id port 152236 remote_ip 10.8.1.182 152241 username mosi 152253 unique_id port 152241 kill_reason Another user logged on this global unique id 152241 mac 152241 bytes_out 0 152241 bytes_in 0 152241 station_ip 151.235.78.77 152241 port 588 152241 unique_id port 152242 username zahra1101 152242 mac 152242 bytes_out 0 152242 bytes_in 0 152242 station_ip 5.120.29.246 152242 port 293 152242 unique_id port 152242 remote_ip 10.8.1.182 152243 username zahra1101 152243 mac 152243 bytes_out 0 152243 bytes_in 0 152243 station_ip 5.120.29.246 152243 port 601 152243 unique_id port 152243 remote_ip 10.8.0.162 152244 username zahra1101 152244 mac 152244 bytes_out 0 152244 bytes_in 0 152244 station_ip 5.120.29.246 152244 port 293 152244 unique_id port 152211 port 595 152211 unique_id port 152211 remote_ip 10.8.0.14 152215 username zahra1101 152215 mac 152215 bytes_out 0 152215 bytes_in 0 152215 station_ip 5.120.29.246 152215 port 292 152215 unique_id port 152215 remote_ip 10.8.1.182 152216 username zahra1101 152216 mac 152216 bytes_out 0 152216 bytes_in 0 152216 station_ip 5.120.29.246 152216 port 597 152216 unique_id port 152216 remote_ip 10.8.0.162 152217 username zahra1101 152217 mac 152217 bytes_out 0 152217 bytes_in 0 152217 station_ip 5.120.29.246 152217 port 597 152217 unique_id port 152217 remote_ip 10.8.0.162 152218 username fezealinaghi 152218 kill_reason Another user logged on this global unique id 152218 mac 152218 bytes_out 0 152218 bytes_in 0 152218 station_ip 37.129.253.108 152218 port 579 152218 unique_id port 152220 username barzegar 152220 mac 152220 bytes_out 0 152220 bytes_in 0 152220 station_ip 5.119.104.167 152220 port 598 152220 unique_id port 152220 remote_ip 10.8.0.234 152222 username zahra1101 152222 mac 152222 bytes_out 0 152222 bytes_in 0 152222 station_ip 5.120.29.246 152222 port 292 152222 unique_id port 152222 remote_ip 10.8.1.182 152226 username nilufarrajaei 152226 kill_reason Another user logged on this global unique id 152226 mac 152226 bytes_out 0 152226 bytes_in 0 152226 station_ip 37.129.79.90 152226 port 593 152226 unique_id port 152226 remote_ip 10.8.0.206 152231 username zahra1101 152231 mac 152231 bytes_out 0 152231 bytes_in 0 152231 station_ip 5.120.29.246 152231 port 598 152231 unique_id port 152231 remote_ip 10.8.0.162 152234 username zahra1101 152234 kill_reason Maximum check online fails reached 152234 mac 152234 bytes_out 0 152234 bytes_in 0 152234 station_ip 5.120.29.246 152234 port 600 152234 unique_id port 152238 username moradi 152238 kill_reason Another user logged on this global unique id 152238 mac 152238 bytes_out 0 152238 bytes_in 0 152238 station_ip 83.122.22.28 152238 port 599 152238 unique_id port 152238 remote_ip 10.8.0.226 152239 username zahra1101 152239 mac 152239 bytes_out 109007 152239 bytes_in 419637 152239 station_ip 5.120.29.246 152239 port 601 152239 unique_id port 152239 remote_ip 10.8.0.162 152245 username zahra1101 152245 mac 152245 bytes_out 0 152245 bytes_in 0 152245 station_ip 5.120.29.246 152245 port 293 152245 unique_id port 152245 remote_ip 10.8.1.182 152247 username barzegar 152247 mac 152247 bytes_out 53546 152247 bytes_in 166369 152247 station_ip 5.119.104.167 152247 port 597 152247 unique_id port 152247 remote_ip 10.8.0.234 152250 username zahra1101 152250 mac 152250 bytes_out 0 152250 bytes_in 0 152250 station_ip 5.120.29.246 152250 port 293 152250 unique_id port 152250 remote_ip 10.8.1.182 152253 username zahra1101 152253 mac 152253 bytes_out 0 152253 bytes_in 0 152253 station_ip 5.120.29.246 152253 port 293 152253 remote_ip 10.8.1.182 152259 username zahra1101 152259 mac 152259 bytes_out 0 152259 bytes_in 0 152259 station_ip 5.120.29.246 152259 port 603 152259 unique_id port 152259 remote_ip 10.8.0.162 152260 username morteza 152260 mac 152260 bytes_out 2610777 152260 bytes_in 43978114 152260 station_ip 83.122.251.249 152260 port 557 152260 unique_id port 152260 remote_ip 10.8.0.46 152262 username zahra1101 152262 kill_reason Maximum check online fails reached 152262 mac 152262 bytes_out 0 152262 bytes_in 0 152262 station_ip 5.120.29.246 152262 port 602 152262 unique_id port 152266 username mosi 152266 kill_reason Another user logged on this global unique id 152266 mac 152233 bytes_in 0 152233 station_ip 37.129.107.253 152233 port 602 152233 unique_id port 152237 username godarzi 152237 mac 152237 bytes_out 2405111 152237 bytes_in 30572073 152237 station_ip 5.202.24.27 152237 port 596 152237 unique_id port 152237 remote_ip 10.8.0.174 152240 username khalili 152240 kill_reason Another user logged on this global unique id 152240 mac 152240 bytes_out 0 152240 bytes_in 0 152240 station_ip 5.120.42.66 152240 port 541 152240 unique_id port 152240 remote_ip 10.8.0.86 152248 username zahra1101 152248 mac 152248 bytes_out 0 152248 bytes_in 0 152248 station_ip 5.120.29.246 152248 port 293 152248 unique_id port 152248 remote_ip 10.8.1.182 152252 username zahra1101 152252 mac 152252 bytes_out 0 152252 bytes_in 0 152252 station_ip 5.120.29.246 152252 port 602 152252 unique_id port 152252 remote_ip 10.8.0.162 152254 username zahra1101 152254 mac 152254 bytes_out 0 152254 bytes_in 0 152254 station_ip 5.120.29.246 152254 port 293 152254 unique_id port 152254 remote_ip 10.8.1.182 152255 username farhad2 152255 kill_reason Another user logged on this global unique id 152255 mac 152255 bytes_out 0 152255 bytes_in 0 152255 station_ip 5.120.161.11 152255 port 287 152255 unique_id port 152257 username rahim 152257 kill_reason Another user logged on this global unique id 152257 mac 152257 bytes_out 0 152257 bytes_in 0 152257 station_ip 83.123.80.172 152257 port 598 152257 unique_id port 152257 remote_ip 10.8.0.50 152261 username zahra1101 152261 mac 152261 bytes_out 0 152261 bytes_in 0 152261 station_ip 5.120.29.246 152261 port 557 152261 unique_id port 152261 remote_ip 10.8.0.162 152264 username barzegar 152264 mac 152264 bytes_out 0 152264 bytes_in 0 152264 station_ip 5.119.104.167 152264 port 293 152264 unique_id port 152264 remote_ip 10.8.1.174 152265 username zahra1101 152265 mac 152265 bytes_out 0 152265 bytes_in 0 152265 station_ip 5.120.29.246 152265 port 293 152265 unique_id port 152265 remote_ip 10.8.1.182 152268 username saeed9658 152268 mac 152268 bytes_out 0 152268 bytes_in 0 152268 station_ip 5.119.191.217 152268 port 292 152268 unique_id port 152268 remote_ip 10.8.1.210 152270 username zahra1101 152270 mac 152270 bytes_out 0 152270 bytes_in 0 152270 station_ip 5.120.29.246 152270 port 557 152270 unique_id port 152270 remote_ip 10.8.0.162 152272 username kalantary 152272 mac 152272 bytes_out 1385107 152272 bytes_in 6251245 152272 station_ip 37.129.187.93 152272 port 590 152272 unique_id port 152272 remote_ip 10.8.0.98 152273 username houshang 152273 mac 152273 bytes_out 3836003 152273 bytes_in 42934514 152273 station_ip 5.119.15.156 152273 port 597 152273 unique_id port 152273 remote_ip 10.8.0.22 152278 username barzegar 152278 mac 152278 bytes_out 0 152278 bytes_in 0 152278 station_ip 5.119.104.167 152278 port 590 152278 unique_id port 152278 remote_ip 10.8.0.234 152284 username zahra1101 152284 mac 152284 bytes_out 0 152284 bytes_in 0 152284 station_ip 5.120.29.246 152284 port 292 152284 unique_id port 152284 remote_ip 10.8.1.182 152286 username mosi 152286 kill_reason Another user logged on this global unique id 152286 mac 152286 bytes_out 0 152286 bytes_in 0 152286 station_ip 151.235.78.77 152286 port 588 152286 unique_id port 152287 username aminvpn 152287 mac 152287 bytes_out 188104 152287 bytes_in 1694058 152287 station_ip 37.129.39.141 152287 port 595 152287 unique_id port 152287 remote_ip 10.8.0.14 152294 username barzegar 152294 mac 152244 remote_ip 10.8.1.182 152246 username zahra1101 152246 kill_reason Maximum check online fails reached 152246 mac 152246 bytes_out 0 152246 bytes_in 0 152246 station_ip 5.120.29.246 152246 port 601 152246 unique_id port 152249 username mohammadmahdi 152249 kill_reason Another user logged on this global unique id 152249 mac 152249 bytes_out 0 152249 bytes_in 0 152249 station_ip 5.120.56.142 152249 port 561 152249 unique_id port 152251 username moradi 152251 kill_reason Another user logged on this global unique id 152251 mac 152251 bytes_out 0 152251 bytes_in 0 152251 station_ip 83.122.22.28 152251 port 599 152251 unique_id port 152256 username zahra1101 152256 mac 152256 bytes_out 0 152256 bytes_in 0 152256 station_ip 5.120.29.246 152256 port 602 152256 unique_id port 152256 remote_ip 10.8.0.162 152258 username aminvpn 152258 unique_id port 152258 terminate_cause Lost-Carrier 152258 bytes_out 7894002 152258 bytes_in 12950187 152258 station_ip 5.119.19.189 152258 port 15731135 152258 nas_port_type Virtual 152258 remote_ip 5.5.5.70 152263 username zahra1101 152263 mac 152263 bytes_out 0 152263 bytes_in 0 152263 station_ip 5.120.29.246 152263 port 557 152263 unique_id port 152263 remote_ip 10.8.0.162 152267 username zahra1101 152267 mac 152267 bytes_out 0 152267 bytes_in 0 152267 station_ip 5.120.29.246 152267 port 557 152267 unique_id port 152267 remote_ip 10.8.0.162 152269 username rahim 152269 mac 152269 bytes_out 0 152269 bytes_in 0 152269 station_ip 83.123.80.172 152269 port 598 152269 unique_id port 152271 username zahra1101 152271 mac 152271 bytes_out 0 152271 bytes_in 0 152271 station_ip 5.120.29.246 152271 port 598 152271 unique_id port 152271 remote_ip 10.8.0.162 152275 username godarzi 152275 mac 152275 bytes_out 362726 152275 bytes_in 5240407 152275 station_ip 5.202.24.27 152275 port 557 152275 unique_id port 152275 remote_ip 10.8.0.174 152280 username moradi 152280 kill_reason Another user logged on this global unique id 152280 mac 152280 bytes_out 0 152280 bytes_in 0 152280 station_ip 83.122.22.28 152280 port 599 152280 unique_id port 152281 username nilufarrajaei 152281 kill_reason Another user logged on this global unique id 152281 mac 152281 bytes_out 0 152281 bytes_in 0 152281 station_ip 37.129.79.90 152281 port 593 152281 unique_id port 152282 username zahra1101 152282 mac 152282 bytes_out 0 152282 bytes_in 0 152282 station_ip 5.120.29.246 152282 port 292 152282 unique_id port 152282 remote_ip 10.8.1.182 152283 username tahmasebi 152283 mac 152283 bytes_out 396979 152283 bytes_in 3069316 152283 station_ip 5.120.179.22 152283 port 597 152283 unique_id port 152283 remote_ip 10.8.0.42 152290 username farhad2 152290 kill_reason Another user logged on this global unique id 152290 mac 152290 bytes_out 0 152290 bytes_in 0 152290 station_ip 5.120.161.11 152290 port 287 152290 unique_id port 152291 username aminvpn 152291 mac 152291 bytes_out 0 152291 bytes_in 0 152291 station_ip 37.129.39.141 152291 port 595 152291 unique_id port 152291 remote_ip 10.8.0.14 152293 username aminvpn 152293 mac 152293 bytes_out 106185 152293 bytes_in 371258 152293 station_ip 5.120.143.199 152293 port 604 152293 unique_id port 152293 remote_ip 10.8.0.14 152302 username milan 152302 kill_reason Another user logged on this global unique id 152302 mac 152302 bytes_out 0 152302 bytes_in 0 152302 station_ip 5.120.37.194 152302 port 584 152302 unique_id port 152302 remote_ip 10.8.0.218 152304 username godarzi 152304 mac 152304 bytes_out 307520 152304 bytes_in 2485333 152266 bytes_out 0 152266 bytes_in 0 152266 station_ip 151.235.78.77 152266 port 588 152266 unique_id port 152274 username zahra1101 152274 mac 152274 bytes_out 0 152274 bytes_in 0 152274 station_ip 5.120.29.246 152274 port 590 152274 unique_id port 152274 remote_ip 10.8.0.162 152276 username zahra1101 152276 mac 152276 bytes_out 0 152276 bytes_in 0 152276 station_ip 5.120.29.246 152276 port 590 152276 unique_id port 152276 remote_ip 10.8.0.162 152277 username mohammadmahdi 152277 kill_reason Another user logged on this global unique id 152277 mac 152277 bytes_out 0 152277 bytes_in 0 152277 station_ip 5.120.56.142 152277 port 561 152277 unique_id port 152279 username zahra1101 152279 mac 152279 bytes_out 0 152279 bytes_in 0 152279 station_ip 5.120.29.246 152279 port 292 152279 unique_id port 152279 remote_ip 10.8.1.182 152285 username mohammadmahdi 152285 mac 152285 bytes_out 0 152285 bytes_in 0 152285 station_ip 5.120.56.142 152285 port 561 152285 unique_id port 152288 username barzegar 152288 mac 152288 bytes_out 0 152288 bytes_in 0 152288 station_ip 5.119.104.167 152288 port 292 152288 unique_id port 152288 remote_ip 10.8.1.174 152289 username aminvpn 152289 mac 152289 bytes_out 0 152289 bytes_in 0 152289 station_ip 5.120.143.199 152289 port 604 152289 unique_id port 152289 remote_ip 10.8.0.14 152292 username rezaei 152292 kill_reason Another user logged on this global unique id 152292 mac 152292 bytes_out 0 152292 bytes_in 0 152292 station_ip 5.120.96.217 152292 port 603 152292 unique_id port 152292 remote_ip 10.8.0.230 152295 username houshang 152295 kill_reason Another user logged on this global unique id 152295 mac 152295 bytes_out 0 152295 bytes_in 0 152295 station_ip 5.119.15.156 152295 port 561 152295 unique_id port 152295 remote_ip 10.8.0.22 152296 username aminvpn 152296 mac 152296 bytes_out 0 152296 bytes_in 0 152296 station_ip 37.129.39.141 152296 port 605 152296 unique_id port 152296 remote_ip 10.8.0.14 152301 username barzegar 152301 mac 152301 bytes_out 0 152301 bytes_in 0 152301 station_ip 5.119.104.167 152301 port 592 152301 unique_id port 152301 remote_ip 10.8.0.234 152303 username moradi 152303 mac 152303 bytes_out 0 152303 bytes_in 0 152303 station_ip 83.122.22.28 152303 port 599 152303 unique_id port 152311 username houshang 152311 kill_reason Another user logged on this global unique id 152311 mac 152311 bytes_out 0 152311 bytes_in 0 152311 station_ip 5.119.15.156 152311 port 561 152311 unique_id port 152312 username aminvpn 152312 unique_id port 152312 terminate_cause Lost-Carrier 152312 bytes_out 1993708 152312 bytes_in 4817964 152312 station_ip 5.119.19.189 152312 port 15731138 152312 nas_port_type Virtual 152312 remote_ip 5.5.5.73 152314 username aminvpn 152314 mac 152314 bytes_out 0 152314 bytes_in 0 152314 station_ip 37.129.39.141 152314 port 599 152314 unique_id port 152314 remote_ip 10.8.0.14 152315 username aminvpn 152315 mac 152315 bytes_out 0 152315 bytes_in 0 152315 station_ip 5.120.143.199 152315 port 597 152315 unique_id port 152315 remote_ip 10.8.0.14 152320 username houshang 152320 mac 152320 bytes_out 0 152320 bytes_in 0 152320 station_ip 5.119.15.156 152320 port 561 152320 unique_id port 152322 username ayobi 152322 mac 152322 bytes_out 1112586 152322 bytes_in 9930015 152322 station_ip 37.27.20.118 152322 port 560 152322 unique_id port 152322 remote_ip 10.8.0.246 152323 username aminvpn 152323 mac 152323 bytes_out 0 152323 bytes_in 0 152294 bytes_out 0 152294 bytes_in 0 152294 station_ip 5.119.104.167 152294 port 595 152294 unique_id port 152294 remote_ip 10.8.0.234 152297 username moradi 152297 kill_reason Another user logged on this global unique id 152297 mac 152297 bytes_out 0 152297 bytes_in 0 152297 station_ip 83.122.22.28 152297 port 599 152297 unique_id port 152298 username mahdiyehalizadeh 152298 mac 152298 bytes_out 1402618 152298 bytes_in 17902352 152298 station_ip 5.120.18.93 152298 port 592 152298 unique_id port 152298 remote_ip 10.8.0.82 152299 username aminvpn 152299 mac 152299 bytes_out 100967 152299 bytes_in 397927 152299 station_ip 5.120.143.199 152299 port 595 152299 unique_id port 152299 remote_ip 10.8.0.14 152300 username aminvpn 152300 mac 152300 bytes_out 0 152300 bytes_in 0 152300 station_ip 37.129.39.141 152300 port 604 152300 unique_id port 152300 remote_ip 10.8.0.14 152305 username aminvpn 152305 mac 152305 bytes_out 69242 152305 bytes_in 223073 152305 station_ip 5.120.143.199 152305 port 595 152305 unique_id port 152305 remote_ip 10.8.0.14 152317 username aminvpn 152317 mac 152317 bytes_out 0 152317 bytes_in 0 152317 station_ip 37.129.39.141 152317 port 599 152317 unique_id port 152317 remote_ip 10.8.0.14 152321 username aminvpn 152321 mac 152321 bytes_out 93135 152321 bytes_in 79482 152321 station_ip 5.120.143.199 152321 port 597 152321 unique_id port 152321 remote_ip 10.8.0.14 152327 username aminvpn 152327 mac 152327 bytes_out 0 152327 bytes_in 0 152327 station_ip 5.120.143.199 152327 port 560 152327 unique_id port 152327 remote_ip 10.8.0.14 152330 username aminvpn 152330 mac 152330 bytes_out 0 152330 bytes_in 0 152330 station_ip 37.129.39.141 152330 port 561 152330 unique_id port 152330 remote_ip 10.8.0.14 152331 username aminvpn 152331 mac 152331 bytes_out 0 152331 bytes_in 0 152331 station_ip 5.120.143.199 152331 port 557 152331 unique_id port 152331 remote_ip 10.8.0.14 152334 username aminvpn 152334 mac 152334 bytes_out 0 152334 bytes_in 0 152334 station_ip 5.120.143.199 152334 port 557 152334 unique_id port 152334 remote_ip 10.8.0.14 152336 username rezaei 152336 kill_reason Another user logged on this global unique id 152336 mac 152336 bytes_out 0 152336 bytes_in 0 152336 station_ip 5.120.96.217 152336 port 603 152336 unique_id port 152337 username aminvpn 152337 mac 152337 bytes_out 0 152337 bytes_in 0 152337 station_ip 37.129.39.141 152337 port 561 152337 unique_id port 152337 remote_ip 10.8.0.14 152342 username barzegar 152342 mac 152342 bytes_out 0 152342 bytes_in 0 152342 station_ip 5.119.104.167 152342 port 287 152342 unique_id port 152342 remote_ip 10.8.1.174 152344 username malekpoir 152344 kill_reason Another user logged on this global unique id 152344 mac 152344 bytes_out 0 152344 bytes_in 0 152344 station_ip 5.119.173.175 152344 port 595 152344 unique_id port 152344 remote_ip 10.8.0.58 152346 username godarzi 152346 mac 152346 bytes_out 0 152346 bytes_in 0 152346 station_ip 5.202.24.27 152346 port 592 152346 unique_id port 152346 remote_ip 10.8.0.174 152348 username aminvpn 152348 mac 152348 bytes_out 70793 152348 bytes_in 109292 152348 station_ip 5.120.143.199 152348 port 557 152348 unique_id port 152348 remote_ip 10.8.0.14 152350 username mosi 152350 kill_reason Another user logged on this global unique id 152350 mac 152350 bytes_out 0 152350 bytes_in 0 152350 station_ip 151.235.78.77 152350 port 588 152350 unique_id port 152355 username vanila 152355 mac 152304 station_ip 5.202.24.27 152304 port 597 152304 unique_id port 152304 remote_ip 10.8.0.174 152306 username houshang 152306 kill_reason Another user logged on this global unique id 152306 mac 152306 bytes_out 0 152306 bytes_in 0 152306 station_ip 5.119.15.156 152306 port 561 152306 unique_id port 152307 username aminvpn 152307 mac 152307 bytes_out 0 152307 bytes_in 0 152307 station_ip 37.129.39.141 152307 port 592 152307 unique_id port 152307 remote_ip 10.8.0.14 152308 username aminvpn 152308 mac 152308 bytes_out 0 152308 bytes_in 0 152308 station_ip 5.120.143.199 152308 port 597 152308 unique_id port 152308 remote_ip 10.8.0.14 152309 username aminvpn 152309 mac 152309 bytes_out 0 152309 bytes_in 0 152309 station_ip 37.129.39.141 152309 port 592 152309 unique_id port 152309 remote_ip 10.8.0.14 152310 username aminvpn 152310 mac 152310 bytes_out 0 152310 bytes_in 0 152310 station_ip 5.120.143.199 152310 port 597 152310 unique_id port 152310 remote_ip 10.8.0.14 152313 username barzegar 152313 mac 152313 bytes_out 0 152313 bytes_in 0 152313 station_ip 5.119.104.167 152313 port 597 152313 unique_id port 152313 remote_ip 10.8.0.234 152316 username farhad2 152316 mac 152316 bytes_out 0 152316 bytes_in 0 152316 station_ip 5.120.161.11 152316 port 287 152316 unique_id port 152318 username aminvpn 152318 mac 152318 bytes_out 0 152318 bytes_in 0 152318 station_ip 5.120.143.199 152318 port 597 152318 unique_id port 152318 remote_ip 10.8.0.14 152319 username aminvpn 152319 mac 152319 bytes_out 0 152319 bytes_in 0 152319 station_ip 37.129.39.141 152319 port 599 152319 unique_id port 152319 remote_ip 10.8.0.14 152325 username tahmasebi 152325 mac 152325 bytes_out 0 152325 bytes_in 0 152325 station_ip 5.120.179.22 152325 port 592 152325 unique_id port 152325 remote_ip 10.8.0.42 152332 username aminvpn 152332 mac 152332 bytes_out 0 152332 bytes_in 0 152332 station_ip 37.129.39.141 152332 port 561 152332 unique_id port 152332 remote_ip 10.8.0.14 152335 username tahmasebi 152335 mac 152335 bytes_out 0 152335 bytes_in 0 152335 station_ip 5.120.179.22 152335 port 557 152335 unique_id port 152335 remote_ip 10.8.0.42 152338 username milan 152338 kill_reason Another user logged on this global unique id 152338 mac 152338 bytes_out 0 152338 bytes_in 0 152338 station_ip 5.120.37.194 152338 port 584 152338 unique_id port 152339 username rezaei 152339 mac 152339 bytes_out 0 152339 bytes_in 0 152339 station_ip 5.120.96.217 152339 port 603 152339 unique_id port 152343 username aminvpn 152343 mac 152343 bytes_out 0 152343 bytes_in 0 152343 station_ip 37.129.39.141 152343 port 592 152343 unique_id port 152343 remote_ip 10.8.0.14 152345 username sekonji3 152345 mac 152345 bytes_out 2177247 152345 bytes_in 29167825 152345 station_ip 37.129.50.41 152345 port 596 152345 unique_id port 152345 remote_ip 10.8.0.6 152349 username tahmasebi 152349 mac 152349 bytes_out 0 152349 bytes_in 0 152349 station_ip 5.120.179.22 152349 port 292 152349 unique_id port 152349 remote_ip 10.8.1.90 152354 username fezealinaghi 152354 kill_reason Another user logged on this global unique id 152354 mac 152354 bytes_out 0 152354 bytes_in 0 152354 station_ip 37.129.253.108 152354 port 579 152354 unique_id port 152358 username fezealinaghi 152358 kill_reason Another user logged on this global unique id 152358 mac 152358 bytes_out 0 152358 bytes_in 0 152358 station_ip 37.129.253.108 152358 port 579 152358 unique_id port 152323 station_ip 37.129.39.141 152323 port 561 152323 unique_id port 152323 remote_ip 10.8.0.14 152324 username aminvpn 152324 mac 152324 bytes_out 0 152324 bytes_in 0 152324 station_ip 5.120.143.199 152324 port 560 152324 unique_id port 152324 remote_ip 10.8.0.14 152326 username aminvpn 152326 mac 152326 bytes_out 0 152326 bytes_in 0 152326 station_ip 37.129.39.141 152326 port 561 152326 unique_id port 152326 remote_ip 10.8.0.14 152328 username nilufarrajaei 152328 kill_reason Another user logged on this global unique id 152328 mac 152328 bytes_out 0 152328 bytes_in 0 152328 station_ip 37.129.79.90 152328 port 593 152328 unique_id port 152329 username vanila 152329 mac 152329 bytes_out 1271072 152329 bytes_in 2782570 152329 station_ip 83.122.226.228 152329 port 557 152329 unique_id port 152329 remote_ip 10.8.0.178 152333 username tahmasebi 152333 mac 152333 bytes_out 0 152333 bytes_in 0 152333 station_ip 5.120.179.22 152333 port 287 152333 unique_id port 152333 remote_ip 10.8.1.90 152340 username aminvpn 152340 mac 152340 bytes_out 0 152340 bytes_in 0 152340 station_ip 5.120.143.199 152340 port 557 152340 unique_id port 152340 remote_ip 10.8.0.14 152341 username aminvpn 152341 mac 152341 bytes_out 17384047 152341 bytes_in 38215135 152341 station_ip 83.122.85.25 152341 port 281 152341 unique_id port 152341 remote_ip 10.8.1.6 152347 username rezaei 152347 mac 152347 bytes_out 0 152347 bytes_in 0 152347 station_ip 5.120.96.217 152347 port 561 152347 unique_id port 152347 remote_ip 10.8.0.230 152351 username malekpoir 152351 mac 152351 bytes_out 0 152351 bytes_in 0 152351 station_ip 5.119.173.175 152351 port 595 152351 unique_id port 152352 username barzegar 152352 mac 152352 bytes_out 0 152352 bytes_in 0 152352 station_ip 5.119.104.167 152352 port 557 152352 unique_id port 152352 remote_ip 10.8.0.234 152353 username vanila 152353 mac 152353 bytes_out 2108470 152353 bytes_in 25181784 152353 station_ip 83.122.226.228 152353 port 560 152353 unique_id port 152353 remote_ip 10.8.0.178 152357 username mosi 152357 kill_reason Another user logged on this global unique id 152357 mac 152357 bytes_out 0 152357 bytes_in 0 152357 station_ip 151.235.78.77 152357 port 588 152357 unique_id port 152361 username amin.saeedi 152361 unique_id port 152361 terminate_cause User-Request 152361 bytes_out 42380 152361 bytes_in 36092 152361 station_ip 151.238.243.163 152361 port 15731142 152361 nas_port_type Virtual 152361 remote_ip 5.5.5.96 152363 username mosi 152363 kill_reason Another user logged on this global unique id 152363 mac 152363 bytes_out 0 152363 bytes_in 0 152363 station_ip 151.235.78.77 152363 port 588 152363 unique_id port 152365 username farhad2 152365 mac 152365 bytes_out 0 152365 bytes_in 0 152365 station_ip 5.120.123.183 152365 port 560 152365 unique_id port 152365 remote_ip 10.8.0.190 152370 username barzegar 152370 mac 152370 bytes_out 0 152370 bytes_in 0 152370 station_ip 5.119.104.167 152370 port 287 152370 unique_id port 152370 remote_ip 10.8.1.174 152376 username barzegar 152376 mac 152376 bytes_out 0 152376 bytes_in 0 152376 station_ip 5.119.104.167 152376 port 287 152376 unique_id port 152376 remote_ip 10.8.1.174 152378 username farhad2 152378 mac 152378 bytes_out 0 152378 bytes_in 0 152378 station_ip 5.120.123.183 152378 port 281 152378 unique_id port 152378 remote_ip 10.8.1.222 152380 username fezealinaghi 152380 kill_reason Another user logged on this global unique id 152380 mac 152380 bytes_out 0 152355 bytes_out 61726 152355 bytes_in 55840 152355 station_ip 83.122.226.228 152355 port 557 152355 unique_id port 152355 remote_ip 10.8.0.178 152356 username mahdixz 152356 unique_id port 152356 terminate_cause Lost-Carrier 152356 bytes_out 220770 152356 bytes_in 5180903 152356 station_ip 151.235.98.234 152356 port 15731139 152356 nas_port_type Virtual 152356 remote_ip 5.5.5.77 152359 username barzegar 152359 mac 152359 bytes_out 0 152359 bytes_in 0 152359 station_ip 5.119.104.167 152359 port 281 152359 unique_id port 152359 remote_ip 10.8.1.174 152360 username nilufarrajaei 152360 mac 152360 bytes_out 0 152360 bytes_in 0 152360 station_ip 37.129.79.90 152360 port 593 152360 unique_id port 152362 username mostafa_es78 152362 unique_id port 152362 terminate_cause User-Request 152362 bytes_out 475349 152362 bytes_in 1837281 152362 station_ip 5.125.31.19 152362 port 15731140 152362 nas_port_type Virtual 152362 remote_ip 5.5.5.83 152367 username fezealinaghi 152367 kill_reason Another user logged on this global unique id 152367 mac 152367 bytes_out 0 152367 bytes_in 0 152367 station_ip 37.129.253.108 152367 port 579 152367 unique_id port 152369 username kordestani 152369 kill_reason Another user logged on this global unique id 152369 mac 152369 bytes_out 0 152369 bytes_in 0 152369 station_ip 151.235.98.119 152369 port 557 152369 unique_id port 152369 remote_ip 10.8.0.134 152375 username zahra1101 152375 mac 152375 bytes_out 247946 152375 bytes_in 545532 152375 station_ip 5.120.29.246 152375 port 598 152375 unique_id port 152375 remote_ip 10.8.0.162 152381 username zahra1101 152381 mac 152381 bytes_out 0 152381 bytes_in 0 152381 station_ip 5.120.29.246 152381 port 287 152381 unique_id port 152381 remote_ip 10.8.1.182 152386 username mostafa_es78 152386 unique_id port 152386 terminate_cause User-Request 152386 bytes_out 731768 152386 bytes_in 10258064 152386 station_ip 5.125.31.19 152386 port 15731143 152386 nas_port_type Virtual 152386 remote_ip 5.5.5.98 152387 username zahra1101 152387 mac 152387 bytes_out 0 152387 bytes_in 0 152387 station_ip 5.120.29.246 152387 port 560 152387 unique_id port 152387 remote_ip 10.8.0.162 152389 username zahra1101 152389 mac 152389 bytes_out 0 152389 bytes_in 0 152389 station_ip 5.120.29.246 152389 port 287 152389 unique_id port 152389 remote_ip 10.8.1.182 152390 username farhad2 152390 mac 152390 bytes_out 0 152390 bytes_in 0 152390 station_ip 5.120.123.183 152390 port 281 152390 unique_id port 152390 remote_ip 10.8.1.222 152396 username zahra1101 152396 mac 152396 bytes_out 1636 152396 bytes_in 4917 152396 station_ip 5.120.29.246 152396 port 561 152396 unique_id port 152396 remote_ip 10.8.0.162 152398 username kordestani 152398 mac 152398 bytes_out 0 152398 bytes_in 0 152398 station_ip 151.235.98.119 152398 port 557 152398 unique_id port 152399 username zahra1101 152399 mac 152399 bytes_out 5358 152399 bytes_in 8759 152399 station_ip 5.120.29.246 152399 port 561 152399 unique_id port 152399 remote_ip 10.8.0.162 152404 username fezealinaghi 152404 kill_reason Another user logged on this global unique id 152404 mac 152404 bytes_out 0 152404 bytes_in 0 152404 station_ip 37.129.253.108 152404 port 579 152404 unique_id port 152405 username zahra1101 152405 mac 152405 bytes_out 0 152405 bytes_in 0 152405 station_ip 5.120.29.246 152405 port 557 152405 unique_id port 152405 remote_ip 10.8.0.162 152408 username zahra1101 152408 mac 152408 bytes_out 0 152408 bytes_in 0 152408 station_ip 5.120.29.246 152408 port 557 152364 username milan 152364 kill_reason Another user logged on this global unique id 152364 mac 152364 bytes_out 0 152364 bytes_in 0 152364 station_ip 5.120.37.194 152364 port 584 152364 unique_id port 152366 username aminvpn 152366 mac 152366 bytes_out 1369202 152366 bytes_in 14677264 152366 station_ip 37.129.39.141 152366 port 561 152366 unique_id port 152366 remote_ip 10.8.0.14 152368 username farhad2 152368 mac 152368 bytes_out 542409 152368 bytes_in 3426260 152368 station_ip 5.120.123.183 152368 port 281 152368 unique_id port 152368 remote_ip 10.8.1.222 152371 username farhad2 152371 mac 152371 bytes_out 0 152371 bytes_in 0 152371 station_ip 5.120.123.183 152371 port 281 152371 unique_id port 152371 remote_ip 10.8.1.222 152372 username fezealinaghi 152372 kill_reason Another user logged on this global unique id 152372 mac 152372 bytes_out 0 152372 bytes_in 0 152372 station_ip 37.129.253.108 152372 port 579 152372 unique_id port 152373 username barzegar 152373 mac 152373 bytes_out 0 152373 bytes_in 0 152373 station_ip 5.119.104.167 152373 port 287 152373 unique_id port 152373 remote_ip 10.8.1.174 152374 username barzegar 152374 mac 152374 bytes_out 0 152374 bytes_in 0 152374 station_ip 5.119.104.167 152374 port 560 152374 unique_id port 152374 remote_ip 10.8.0.234 152377 username zahra1101 152377 mac 152377 bytes_out 0 152377 bytes_in 0 152377 station_ip 5.120.29.246 152377 port 560 152377 unique_id port 152377 remote_ip 10.8.0.162 152379 username kordestani 152379 kill_reason Another user logged on this global unique id 152379 mac 152379 bytes_out 0 152379 bytes_in 0 152379 station_ip 151.235.98.119 152379 port 557 152379 unique_id port 152383 username mosi 152383 kill_reason Another user logged on this global unique id 152383 mac 152383 bytes_out 0 152383 bytes_in 0 152383 station_ip 151.235.78.77 152383 port 588 152383 unique_id port 152384 username zahra1101 152384 mac 152384 bytes_out 0 152384 bytes_in 0 152384 station_ip 5.120.29.246 152384 port 560 152384 unique_id port 152384 remote_ip 10.8.0.162 152385 username zahra1101 152385 mac 152385 bytes_out 0 152385 bytes_in 0 152385 station_ip 5.120.29.246 152385 port 560 152385 unique_id port 152385 remote_ip 10.8.0.162 152392 username zahra1101 152392 mac 152392 bytes_out 0 152392 bytes_in 0 152392 station_ip 5.120.29.246 152392 port 560 152392 unique_id port 152392 remote_ip 10.8.0.162 152397 username farhad2 152397 mac 152397 bytes_out 278823 152397 bytes_in 1568152 152397 station_ip 5.120.123.183 152397 port 560 152397 unique_id port 152397 remote_ip 10.8.0.190 152402 username zahra1101 152402 mac 152402 bytes_out 0 152402 bytes_in 0 152402 station_ip 5.120.29.246 152402 port 557 152402 unique_id port 152402 remote_ip 10.8.0.162 152403 username barzegar 152403 mac 152403 bytes_out 0 152403 bytes_in 0 152403 station_ip 5.119.104.167 152403 port 287 152403 unique_id port 152403 remote_ip 10.8.1.174 152406 username zahra1101 152406 mac 152406 bytes_out 0 152406 bytes_in 0 152406 station_ip 5.120.29.246 152406 port 557 152406 unique_id port 152406 remote_ip 10.8.0.162 152407 username zahra1101 152407 mac 152407 bytes_out 0 152407 bytes_in 0 152407 station_ip 5.120.29.246 152407 port 557 152407 unique_id port 152407 remote_ip 10.8.0.162 152409 username zahra1101 152409 mac 152409 bytes_out 0 152409 bytes_in 0 152409 station_ip 5.120.29.246 152409 port 287 152409 unique_id port 152409 remote_ip 10.8.1.182 152380 bytes_in 0 152380 station_ip 37.129.253.108 152380 port 579 152380 unique_id port 152382 username zahra1101 152382 mac 152382 bytes_out 0 152382 bytes_in 0 152382 station_ip 5.120.29.246 152382 port 560 152382 unique_id port 152382 remote_ip 10.8.0.162 152388 username zahra1101 152388 mac 152388 bytes_out 0 152388 bytes_in 0 152388 station_ip 5.120.29.246 152388 port 561 152388 unique_id port 152388 remote_ip 10.8.0.162 152391 username mosi 152391 mac 152391 bytes_out 0 152391 bytes_in 0 152391 station_ip 151.235.78.77 152391 port 588 152391 unique_id port 152393 username zahra1101 152393 mac 152393 bytes_out 0 152393 bytes_in 0 152393 station_ip 5.120.29.246 152393 port 560 152393 unique_id port 152393 remote_ip 10.8.0.162 152394 username zahra1101 152394 mac 152394 bytes_out 0 152394 bytes_in 0 152394 station_ip 5.120.29.246 152394 port 560 152394 unique_id port 152394 remote_ip 10.8.0.162 152395 username zahra1101 152395 mac 152395 bytes_out 0 152395 bytes_in 0 152395 station_ip 5.120.29.246 152395 port 281 152395 unique_id port 152395 remote_ip 10.8.1.182 152400 username farhad2 152400 mac 152400 bytes_out 0 152400 bytes_in 0 152400 station_ip 5.120.123.183 152400 port 557 152400 unique_id port 152400 remote_ip 10.8.0.190 152401 username zahra1101 152401 mac 152401 bytes_out 0 152401 bytes_in 0 152401 station_ip 5.120.29.246 152401 port 557 152401 unique_id port 152401 remote_ip 10.8.0.162 152413 username barzegar 152413 mac 152413 bytes_out 0 152413 bytes_in 0 152413 station_ip 5.119.104.167 152413 port 292 152413 unique_id port 152413 remote_ip 10.8.1.174 152416 username barzegar 152416 mac 152416 bytes_out 0 152416 bytes_in 0 152416 station_ip 5.119.104.167 152416 port 292 152416 unique_id port 152416 remote_ip 10.8.1.174 152417 username milan 152417 kill_reason Another user logged on this global unique id 152417 mac 152417 bytes_out 0 152417 bytes_in 0 152417 station_ip 5.120.37.194 152417 port 584 152417 unique_id port 152420 username hadibarzegar 152420 kill_reason Another user logged on this global unique id 152420 mac 152420 bytes_out 0 152420 bytes_in 0 152420 station_ip 37.129.34.30 152420 port 557 152420 unique_id port 152420 remote_ip 10.8.0.154 152426 username nilufarrajaei 152426 mac 152426 bytes_out 0 152426 bytes_in 0 152426 station_ip 37.129.79.90 152426 port 294 152426 unique_id port 152426 remote_ip 10.8.1.166 152427 username nilufarrajaei 152427 mac 152427 bytes_out 0 152427 bytes_in 0 152427 station_ip 37.129.79.90 152427 port 560 152427 unique_id port 152427 remote_ip 10.8.0.206 152428 username nilufarrajaei 152428 mac 152428 bytes_out 120436 152428 bytes_in 1553568 152428 station_ip 37.129.79.90 152428 port 561 152428 unique_id port 152428 remote_ip 10.8.0.206 152432 username nilufarrajaei 152432 mac 152432 bytes_out 0 152432 bytes_in 0 152432 station_ip 37.129.79.90 152432 port 561 152432 unique_id port 152432 remote_ip 10.8.0.206 152434 username barzegar 152434 mac 152434 bytes_out 0 152434 bytes_in 0 152434 station_ip 5.119.104.167 152434 port 560 152434 unique_id port 152434 remote_ip 10.8.0.234 152437 username farhad2 152437 mac 152437 bytes_out 0 152437 bytes_in 0 152437 station_ip 5.120.123.183 152437 port 560 152437 unique_id port 152437 remote_ip 10.8.0.190 152441 username barzegar 152441 mac 152441 bytes_out 0 152441 bytes_in 0 152441 station_ip 5.119.104.167 152441 port 557 152408 unique_id port 152408 remote_ip 10.8.0.162 152411 username fezealinaghi 152411 mac 152411 bytes_out 0 152411 bytes_in 0 152411 station_ip 37.129.253.108 152411 port 579 152411 unique_id port 152414 username farhad2 152414 mac 152414 bytes_out 0 152414 bytes_in 0 152414 station_ip 5.120.123.183 152414 port 281 152414 unique_id port 152414 remote_ip 10.8.1.222 152415 username sedighe 152415 mac 152415 bytes_out 150898 152415 bytes_in 1872906 152415 station_ip 83.123.238.144 152415 port 560 152415 unique_id port 152415 remote_ip 10.8.0.146 152419 username mirzaei 152419 mac 152419 bytes_out 29102 152419 bytes_in 56313 152419 station_ip 5.119.91.25 152419 port 560 152419 unique_id port 152419 remote_ip 10.8.0.66 152422 username farhad2 152422 mac 152422 bytes_out 0 152422 bytes_in 0 152422 station_ip 5.120.123.183 152422 port 281 152422 unique_id port 152422 remote_ip 10.8.1.222 152423 username mirzaei 152423 mac 152423 bytes_out 2258 152423 bytes_in 4760 152423 station_ip 5.119.91.25 152423 port 579 152423 unique_id port 152423 remote_ip 10.8.0.66 152429 username nilufarrajaei 152429 mac 152429 bytes_out 0 152429 bytes_in 0 152429 station_ip 37.129.79.90 152429 port 560 152429 unique_id port 152429 remote_ip 10.8.0.206 152436 username zahra1101 152436 mac 152436 bytes_out 0 152436 bytes_in 0 152436 station_ip 5.120.29.246 152436 port 287 152436 unique_id port 152436 remote_ip 10.8.1.182 152439 username mirzaei 152439 mac 152439 bytes_out 0 152439 bytes_in 0 152439 station_ip 5.119.91.25 152439 port 292 152439 unique_id port 152439 remote_ip 10.8.1.30 152440 username aminvpn 152440 unique_id port 152440 terminate_cause Lost-Carrier 152440 bytes_out 4414762 152440 bytes_in 108872870 152440 station_ip 5.119.19.189 152440 port 15731146 152440 nas_port_type Virtual 152440 remote_ip 5.5.5.99 152444 username zahra1101 152444 mac 152444 bytes_out 0 152444 bytes_in 0 152444 station_ip 5.120.29.246 152444 port 281 152444 unique_id port 152444 remote_ip 10.8.1.182 152447 username barzegar 152447 mac 152447 bytes_out 0 152447 bytes_in 0 152447 station_ip 5.119.104.167 152447 port 281 152447 unique_id port 152447 remote_ip 10.8.1.174 152448 username zahra1101 152448 mac 152448 bytes_out 2904 152448 bytes_in 5425 152448 station_ip 5.120.29.246 152448 port 553 152448 unique_id port 152448 remote_ip 10.8.0.162 152451 username ehsun 152451 mac 152451 bytes_out 705630 152451 bytes_in 1967273 152451 station_ip 46.225.213.253 152451 port 588 152451 unique_id port 152451 remote_ip 10.8.0.74 152455 username zahra1101 152455 mac 152455 bytes_out 425033 152455 bytes_in 4100387 152455 station_ip 5.120.29.246 152455 port 553 152455 unique_id port 152455 remote_ip 10.8.0.162 152456 username barzegar 152456 mac 152456 bytes_out 0 152456 bytes_in 0 152456 station_ip 5.119.104.167 152456 port 281 152456 unique_id port 152456 remote_ip 10.8.1.174 152459 username farhad2 152459 mac 152459 bytes_out 5477182 152459 bytes_in 17791187 152459 station_ip 5.120.123.183 152459 port 560 152459 unique_id port 152459 remote_ip 10.8.0.190 152464 username mansur 152464 mac 152464 bytes_out 0 152464 bytes_in 0 152464 station_ip 5.120.122.192 152464 port 553 152464 unique_id port 152465 username barzegar 152465 mac 152465 bytes_out 0 152465 bytes_in 0 152465 station_ip 5.119.104.167 152465 port 553 152465 unique_id port 152465 remote_ip 10.8.0.234 152469 username barzegar 152410 username zahra1101 152410 mac 152410 bytes_out 0 152410 bytes_in 0 152410 station_ip 5.120.29.246 152410 port 557 152410 unique_id port 152410 remote_ip 10.8.0.162 152412 username farhad2 152412 mac 152412 bytes_out 1849911 152412 bytes_in 15265306 152412 station_ip 5.120.123.183 152412 port 281 152412 unique_id port 152412 remote_ip 10.8.1.222 152418 username mirzaei 152418 mac 152418 bytes_out 1601859 152418 bytes_in 10384611 152418 station_ip 5.119.23.50 152418 port 590 152418 unique_id port 152418 remote_ip 10.8.0.66 152421 username mansour 152421 mac 152421 bytes_out 977474 152421 bytes_in 14119223 152421 station_ip 5.202.98.165 152421 port 561 152421 unique_id port 152421 remote_ip 10.8.0.30 152424 username barzegar 152424 mac 152424 bytes_out 0 152424 bytes_in 0 152424 station_ip 5.119.104.167 152424 port 560 152424 unique_id port 152424 remote_ip 10.8.0.234 152425 username nilufarrajaei 152425 mac 152425 bytes_out 0 152425 bytes_in 0 152425 station_ip 37.129.79.90 152425 port 293 152425 unique_id port 152425 remote_ip 10.8.1.166 152430 username nilufarrajaei 152430 mac 152430 bytes_out 0 152430 bytes_in 0 152430 station_ip 37.129.79.90 152430 port 561 152430 unique_id port 152430 remote_ip 10.8.0.206 152431 username nilufarrajaei 152431 mac 152431 bytes_out 0 152431 bytes_in 0 152431 station_ip 37.129.79.90 152431 port 560 152431 unique_id port 152431 remote_ip 10.8.0.206 152433 username nilufarrajaei 152433 mac 152433 bytes_out 0 152433 bytes_in 0 152433 station_ip 37.129.79.90 152433 port 560 152433 unique_id port 152433 remote_ip 10.8.0.206 152435 username farhad2 152435 mac 152435 bytes_out 0 152435 bytes_in 0 152435 station_ip 5.120.123.183 152435 port 281 152435 unique_id port 152435 remote_ip 10.8.1.222 152438 username hadibarzegar 152438 mac 152438 bytes_out 0 152438 bytes_in 0 152438 station_ip 37.129.34.30 152438 port 557 152438 unique_id port 152442 username mansur 152442 mac 152442 bytes_out 723511 152442 bytes_in 9576368 152442 station_ip 5.120.8.102 152442 port 579 152442 unique_id port 152442 remote_ip 10.8.0.94 152443 username zahra1101 152443 mac 152443 bytes_out 0 152443 bytes_in 0 152443 station_ip 5.120.29.246 152443 port 281 152443 unique_id port 152443 remote_ip 10.8.1.182 152446 username zahra1101 152446 mac 152446 bytes_out 0 152446 bytes_in 0 152446 station_ip 5.120.29.246 152446 port 281 152446 unique_id port 152446 remote_ip 10.8.1.182 152449 username zahra1101 152449 mac 152449 bytes_out 0 152449 bytes_in 0 152449 station_ip 5.120.29.246 152449 port 553 152449 unique_id port 152449 remote_ip 10.8.0.162 152450 username zahra1101 152450 mac 152450 bytes_out 0 152450 bytes_in 0 152450 station_ip 5.120.29.246 152450 port 553 152450 unique_id port 152450 remote_ip 10.8.0.162 152452 username zahra1101 152452 mac 152452 bytes_out 0 152452 bytes_in 0 152452 station_ip 5.120.29.246 152452 port 553 152452 unique_id port 152452 remote_ip 10.8.0.162 152453 username zahra1101 152453 mac 152453 bytes_out 0 152453 bytes_in 0 152453 station_ip 5.120.29.246 152453 port 553 152453 unique_id port 152453 remote_ip 10.8.0.162 152457 username barzegar 152457 mac 152457 bytes_out 2315 152457 bytes_in 4600 152457 station_ip 5.119.104.167 152457 port 553 152457 unique_id port 152457 remote_ip 10.8.0.234 152458 username barzegar 152458 mac 152458 bytes_out 2103 152458 bytes_in 4388 152441 unique_id port 152441 remote_ip 10.8.0.234 152445 username hosseine 152445 mac 152445 bytes_out 6669400 152445 bytes_in 38323867 152445 station_ip 37.129.23.134 152445 port 553 152445 unique_id port 152445 remote_ip 10.8.0.238 152454 username zahra1101 152454 mac 152454 bytes_out 0 152454 bytes_in 0 152454 station_ip 5.120.29.246 152454 port 553 152454 unique_id port 152454 remote_ip 10.8.0.162 152462 username barzegar 152462 mac 152462 bytes_out 0 152462 bytes_in 0 152462 station_ip 5.119.104.167 152462 port 557 152462 unique_id port 152462 remote_ip 10.8.0.234 152463 username mansur 152463 kill_reason Another user logged on this global unique id 152463 mac 152463 bytes_out 0 152463 bytes_in 0 152463 station_ip 5.120.122.192 152463 port 553 152463 unique_id port 152463 remote_ip 10.8.0.94 152466 username nilufarrajaei 152466 mac 152466 bytes_out 149153 152466 bytes_in 365182 152466 station_ip 37.129.79.90 152466 port 561 152466 unique_id port 152466 remote_ip 10.8.0.206 152467 username farhad2 152467 kill_reason Another user logged on this global unique id 152467 mac 152467 bytes_out 0 152467 bytes_in 0 152467 station_ip 5.120.123.183 152467 port 281 152467 unique_id port 152467 remote_ip 10.8.1.222 152471 username farhad2 152471 mac 152471 bytes_out 240797 152471 bytes_in 858985 152471 station_ip 5.119.4.81 152471 port 553 152471 unique_id port 152471 remote_ip 10.8.0.190 152472 username barzegar 152472 mac 152472 bytes_out 0 152472 bytes_in 0 152472 station_ip 5.119.104.167 152472 port 560 152472 unique_id port 152472 remote_ip 10.8.0.234 152477 username hamidsalari 152477 mac 152477 bytes_out 1506918 152477 bytes_in 3579503 152477 station_ip 5.119.25.45 152477 port 290 152477 unique_id port 152477 remote_ip 10.8.1.226 152478 username barzegar 152478 mac 152478 bytes_out 0 152478 bytes_in 0 152478 station_ip 5.119.104.167 152478 port 281 152478 unique_id port 152478 remote_ip 10.8.1.174 152481 username farhad2 152481 kill_reason Another user logged on this global unique id 152481 mac 152481 bytes_out 0 152481 bytes_in 0 152481 station_ip 5.119.4.81 152481 port 553 152481 unique_id port 152481 remote_ip 10.8.0.190 152486 username farhad2 152486 mac 152486 bytes_out 0 152486 bytes_in 0 152486 station_ip 5.119.223.127 152486 port 553 152486 unique_id port 152486 remote_ip 10.8.0.190 152488 username barzegar 152488 mac 152488 bytes_out 0 152488 bytes_in 0 152488 station_ip 5.119.104.167 152488 port 553 152488 unique_id port 152488 remote_ip 10.8.0.234 152489 username barzegar 152489 mac 152489 bytes_out 0 152489 bytes_in 0 152489 station_ip 5.119.104.167 152489 port 560 152489 unique_id port 152489 remote_ip 10.8.0.234 152490 username barzegar 152490 mac 152490 bytes_out 0 152490 bytes_in 0 152490 station_ip 5.119.104.167 152490 port 560 152490 unique_id port 152490 remote_ip 10.8.0.234 152492 username barzegar 152492 mac 152492 bytes_out 0 152492 bytes_in 0 152492 station_ip 5.119.104.167 152492 port 281 152492 unique_id port 152492 remote_ip 10.8.1.174 152495 username fezealinaghi 152495 mac 152495 bytes_out 0 152495 bytes_in 0 152495 station_ip 83.122.52.252 152495 port 553 152495 unique_id port 152495 remote_ip 10.8.0.78 152498 username houshang 152498 mac 152498 bytes_out 119327 152498 bytes_in 227478 152498 station_ip 5.119.15.156 152498 port 553 152498 unique_id port 152498 remote_ip 10.8.0.22 152500 username barzegar 152500 mac 152500 bytes_out 0 152458 station_ip 5.119.104.167 152458 port 553 152458 unique_id port 152458 remote_ip 10.8.0.234 152460 username zahra1101 152460 mac 152460 bytes_out 80819 152460 bytes_in 93600 152460 station_ip 5.119.192.107 152460 port 557 152460 unique_id port 152460 remote_ip 10.8.0.162 152461 username aminvpn 152461 unique_id port 152461 terminate_cause Lost-Carrier 152461 bytes_out 3742173 152461 bytes_in 9410893 152461 station_ip 5.119.19.189 152461 port 15731148 152461 nas_port_type Virtual 152461 remote_ip 5.5.5.113 152468 username nilufarrajaei 152468 mac 152468 bytes_out 25662 152468 bytes_in 69760 152468 station_ip 37.129.79.90 152468 port 553 152468 unique_id port 152468 remote_ip 10.8.0.206 152470 username farhad2 152470 mac 152470 bytes_out 0 152470 bytes_in 0 152470 station_ip 5.120.123.183 152470 port 281 152470 unique_id port 152474 username farhad2 152474 kill_reason Another user logged on this global unique id 152474 mac 152474 bytes_out 0 152474 bytes_in 0 152474 station_ip 5.119.4.81 152474 port 553 152474 unique_id port 152475 username barzegar 152475 mac 152475 bytes_out 0 152475 bytes_in 0 152475 station_ip 5.119.104.167 152475 port 281 152475 unique_id port 152475 remote_ip 10.8.1.174 152476 username farhad2 152476 kill_reason Another user logged on this global unique id 152476 mac 152476 bytes_out 0 152476 bytes_in 0 152476 station_ip 5.119.4.81 152476 port 553 152476 unique_id port 152482 username barzegar 152482 mac 152482 bytes_out 0 152482 bytes_in 0 152482 station_ip 5.119.104.167 152482 port 560 152482 unique_id port 152482 remote_ip 10.8.0.234 152483 username barzegar 152483 mac 152483 bytes_out 0 152483 bytes_in 0 152483 station_ip 5.119.104.167 152483 port 560 152483 unique_id port 152483 remote_ip 10.8.0.234 152484 username farhad2 152484 mac 152484 bytes_out 0 152484 bytes_in 0 152484 station_ip 5.119.4.81 152484 port 553 152484 unique_id port 152485 username barzegar 152485 mac 152485 bytes_out 0 152485 bytes_in 0 152485 station_ip 5.119.104.167 152485 port 560 152485 unique_id port 152485 remote_ip 10.8.0.234 152491 username barzegar 152491 mac 152491 bytes_out 0 152491 bytes_in 0 152491 station_ip 5.119.104.167 152491 port 281 152491 unique_id port 152491 remote_ip 10.8.1.174 152494 username barzegar 152494 mac 152494 bytes_out 0 152494 bytes_in 0 152494 station_ip 5.119.104.167 152494 port 281 152494 unique_id port 152494 remote_ip 10.8.1.174 152496 username fezealinaghi 152496 mac 152496 bytes_out 7059 152496 bytes_in 20503 152496 station_ip 83.122.52.252 152496 port 560 152496 unique_id port 152496 remote_ip 10.8.0.78 152499 username barzegar 152499 mac 152499 bytes_out 0 152499 bytes_in 0 152499 station_ip 5.119.104.167 152499 port 281 152499 unique_id port 152499 remote_ip 10.8.1.174 152500 bytes_in 0 152500 station_ip 5.119.104.167 152500 port 281 152500 unique_id port 152500 remote_ip 10.8.1.174 152501 username barzegar 152501 mac 152501 bytes_out 0 152501 bytes_in 0 152501 station_ip 5.119.104.167 152501 port 281 152501 unique_id port 152501 remote_ip 10.8.1.174 152503 username hashtadani4 152503 mac 152503 bytes_out 352097 152503 bytes_in 2986909 152503 station_ip 83.123.139.23 152503 port 553 152503 unique_id port 152503 remote_ip 10.8.0.182 152505 username hashtadani4 152505 mac 152505 bytes_out 0 152505 bytes_in 0 152505 station_ip 83.123.139.23 152505 port 553 152505 unique_id port 152505 remote_ip 10.8.0.182 152469 mac 152469 bytes_out 0 152469 bytes_in 0 152469 station_ip 5.119.104.167 152469 port 553 152469 unique_id port 152469 remote_ip 10.8.0.234 152473 username farhad2 152473 kill_reason Another user logged on this global unique id 152473 mac 152473 bytes_out 0 152473 bytes_in 0 152473 station_ip 5.119.4.81 152473 port 553 152473 unique_id port 152473 remote_ip 10.8.0.190 152479 username farhad2 152479 mac 152479 bytes_out 0 152479 bytes_in 0 152479 station_ip 5.119.4.81 152479 port 553 152479 unique_id port 152480 username barzegar 152480 mac 152480 bytes_out 0 152480 bytes_in 0 152480 station_ip 5.119.104.167 152480 port 281 152480 unique_id port 152480 remote_ip 10.8.1.174 152487 username kamali2 152487 mac 152487 bytes_out 0 152487 bytes_in 0 152487 station_ip 5.120.156.143 152487 port 553 152487 unique_id port 152487 remote_ip 10.8.0.214 152493 username barzegar 152493 mac 152493 bytes_out 0 152493 bytes_in 0 152493 station_ip 5.119.104.167 152493 port 281 152493 unique_id port 152493 remote_ip 10.8.1.174 152497 username barzegar 152497 mac 152497 bytes_out 0 152497 bytes_in 0 152497 station_ip 5.119.104.167 152497 port 281 152497 unique_id port 152497 remote_ip 10.8.1.174 152502 username sedighe 152502 mac 152502 bytes_out 29364 152502 bytes_in 31939 152502 station_ip 37.129.77.175 152502 port 553 152502 unique_id port 152502 remote_ip 10.8.0.146 152504 username barzegar 152504 mac 152504 bytes_out 0 152504 bytes_in 0 152504 station_ip 5.119.104.167 152504 port 281 152504 unique_id port 152504 remote_ip 10.8.1.174 152506 username hashtadani4 152506 mac 152506 bytes_out 0 152506 bytes_in 0 152506 station_ip 83.123.139.23 152506 port 553 152506 unique_id port 152506 remote_ip 10.8.0.182 152507 username hashtadani4 152507 mac 152507 bytes_out 0 152507 bytes_in 0 152507 station_ip 83.123.139.23 152507 port 553 152507 unique_id port 152507 remote_ip 10.8.0.182 152508 username hashtadani4 152508 mac 152508 bytes_out 0 152508 bytes_in 0 152508 station_ip 83.123.139.23 152508 port 553 152508 unique_id port 152508 remote_ip 10.8.0.182 152509 username hashtadani4 152509 mac 152509 bytes_out 0 152509 bytes_in 0 152509 station_ip 83.123.139.23 152509 port 553 152509 unique_id port 152509 remote_ip 10.8.0.182 152510 username hashtadani4 152510 mac 152510 bytes_out 2005 152510 bytes_in 4600 152510 station_ip 83.123.139.23 152510 port 560 152510 unique_id port 152510 remote_ip 10.8.0.182 152511 username hashtadani4 152511 mac 152511 bytes_out 0 152511 bytes_in 0 152511 station_ip 83.123.139.23 152511 port 560 152511 unique_id port 152511 remote_ip 10.8.0.182 152512 username barzegar 152512 mac 152512 bytes_out 0 152512 bytes_in 0 152512 station_ip 5.119.104.167 152512 port 281 152512 unique_id port 152512 remote_ip 10.8.1.174 152513 username hashtadani4 152513 kill_reason Maximum check online fails reached 152513 mac 152513 bytes_out 0 152513 bytes_in 0 152513 station_ip 83.123.139.23 152513 port 560 152513 unique_id port 152514 username hashtadani4 152514 mac 152514 bytes_out 0 152514 bytes_in 0 152514 station_ip 83.123.139.23 152514 port 290 152514 unique_id port 152514 remote_ip 10.8.1.142 152515 username hashtadani4 152515 mac 152515 bytes_out 9918 152515 bytes_in 46923 152515 station_ip 83.123.139.23 152515 port 561 152515 unique_id port 152515 remote_ip 10.8.0.182 152516 username hashtadani4 152516 mac 152516 bytes_out 0 152516 bytes_in 0 152516 station_ip 83.123.139.23 152516 port 561 152516 unique_id port 152516 remote_ip 10.8.0.182 152517 username hashtadani4 152517 mac 152517 bytes_out 0 152517 bytes_in 0 152517 station_ip 83.123.139.23 152517 port 561 152517 unique_id port 152517 remote_ip 10.8.0.182 152522 username hashtadani4 152522 kill_reason Maximum check online fails reached 152522 mac 152522 bytes_out 0 152522 bytes_in 0 152522 station_ip 83.123.139.23 152522 port 561 152522 unique_id port 152523 username hashtadani4 152523 mac 152523 bytes_out 0 152523 bytes_in 0 152523 station_ip 83.123.139.23 152523 port 590 152523 unique_id port 152523 remote_ip 10.8.0.182 152526 username hashtadani4 152526 mac 152526 bytes_out 0 152526 bytes_in 0 152526 station_ip 83.123.139.23 152526 port 590 152526 unique_id port 152526 remote_ip 10.8.0.182 152527 username kalantary 152527 mac 152527 bytes_out 0 152527 bytes_in 0 152527 station_ip 37.129.138.129 152527 port 553 152527 unique_id port 152527 remote_ip 10.8.0.98 152533 username hashtadani4 152533 mac 152533 bytes_out 0 152533 bytes_in 0 152533 station_ip 83.123.139.23 152533 port 553 152533 unique_id port 152533 remote_ip 10.8.0.182 152543 username barzegar 152543 mac 152543 bytes_out 0 152543 bytes_in 0 152543 station_ip 5.119.104.167 152543 port 281 152543 unique_id port 152543 remote_ip 10.8.1.174 152545 username hashtadani4 152545 mac 152545 bytes_out 0 152545 bytes_in 0 152545 station_ip 83.123.139.23 152545 port 593 152545 unique_id port 152545 remote_ip 10.8.0.182 152547 username hashtadani4 152547 mac 152547 bytes_out 0 152547 bytes_in 0 152547 station_ip 83.123.139.23 152547 port 590 152547 unique_id port 152547 remote_ip 10.8.0.182 152548 username barzegar 152548 mac 152548 bytes_out 0 152548 bytes_in 0 152548 station_ip 5.119.104.167 152548 port 281 152548 unique_id port 152548 remote_ip 10.8.1.174 152550 username morteza 152550 mac 152550 bytes_out 0 152550 bytes_in 0 152550 station_ip 83.122.147.149 152550 port 553 152550 unique_id port 152550 remote_ip 10.8.0.46 152551 username morteza 152551 mac 152551 bytes_out 0 152551 bytes_in 0 152551 station_ip 83.122.147.149 152551 port 553 152551 unique_id port 152551 remote_ip 10.8.0.46 152554 username hashtadani4 152554 mac 152554 bytes_out 0 152554 bytes_in 0 152554 station_ip 83.123.139.23 152554 port 593 152554 unique_id port 152554 remote_ip 10.8.0.182 152558 username hashtadani4 152558 mac 152558 bytes_out 0 152558 bytes_in 0 152558 station_ip 83.123.139.23 152558 port 553 152558 unique_id port 152558 remote_ip 10.8.0.182 152559 username fezealinaghi 152559 mac 152559 bytes_out 297717 152559 bytes_in 1857411 152559 station_ip 83.122.1.96 152559 port 593 152559 unique_id port 152559 remote_ip 10.8.0.78 152568 username kalantary 152568 mac 152568 bytes_out 0 152568 bytes_in 0 152568 station_ip 37.129.235.149 152568 port 593 152568 unique_id port 152568 remote_ip 10.8.0.98 152569 username hashtadani4 152569 mac 152569 bytes_out 0 152569 bytes_in 0 152569 station_ip 83.123.139.23 152569 port 593 152569 unique_id port 152569 remote_ip 10.8.0.182 152570 username zahra1101 152570 mac 152570 bytes_out 0 152570 bytes_in 0 152570 station_ip 5.120.144.104 152570 port 541 152570 unique_id port 152570 remote_ip 10.8.0.162 152572 username zahra1101 152572 mac 152572 bytes_out 0 152572 bytes_in 0 152518 username hashtadani4 152518 mac 152518 bytes_out 0 152518 bytes_in 0 152518 station_ip 83.123.139.23 152518 port 561 152518 unique_id port 152518 remote_ip 10.8.0.182 152520 username barzegar 152520 mac 152520 bytes_out 0 152520 bytes_in 0 152520 station_ip 5.119.104.167 152520 port 281 152520 unique_id port 152520 remote_ip 10.8.1.174 152521 username hashtadani4 152521 kill_reason Maximum check online fails reached 152521 mac 152521 bytes_out 0 152521 bytes_in 0 152521 station_ip 83.123.139.23 152521 port 579 152521 unique_id port 152528 username kalantary 152528 mac 152528 bytes_out 0 152528 bytes_in 0 152528 station_ip 37.129.138.129 152528 port 553 152528 unique_id port 152528 remote_ip 10.8.0.98 152529 username hashtadani4 152529 mac 152529 bytes_out 0 152529 bytes_in 0 152529 station_ip 83.123.139.23 152529 port 553 152529 unique_id port 152529 remote_ip 10.8.0.182 152530 username hashtadani4 152530 mac 152530 bytes_out 0 152530 bytes_in 0 152530 station_ip 83.123.139.23 152530 port 553 152530 unique_id port 152530 remote_ip 10.8.0.182 152531 username nilufarrajaei 152531 kill_reason Another user logged on this global unique id 152531 mac 152531 bytes_out 0 152531 bytes_in 0 152531 station_ip 37.129.79.90 152531 port 557 152531 unique_id port 152531 remote_ip 10.8.0.206 152532 username kalantary 152532 mac 152532 bytes_out 0 152532 bytes_in 0 152532 station_ip 37.129.138.129 152532 port 590 152532 unique_id port 152532 remote_ip 10.8.0.98 152535 username hashtadani4 152535 mac 152535 bytes_out 0 152535 bytes_in 0 152535 station_ip 83.123.139.23 152535 port 553 152535 unique_id port 152535 remote_ip 10.8.0.182 152536 username hashtadani4 152536 mac 152536 bytes_out 0 152536 bytes_in 0 152536 station_ip 83.123.139.23 152536 port 553 152536 unique_id port 152536 remote_ip 10.8.0.182 152541 username kalantary 152541 mac 152541 bytes_out 0 152541 bytes_in 0 152541 station_ip 37.129.138.129 152541 port 553 152541 unique_id port 152541 remote_ip 10.8.0.98 152552 username barzegar 152552 mac 152552 bytes_out 0 152552 bytes_in 0 152552 station_ip 5.119.104.167 152552 port 281 152552 unique_id port 152552 remote_ip 10.8.1.174 152556 username hashtadani4 152556 mac 152556 bytes_out 0 152556 bytes_in 0 152556 station_ip 83.123.139.23 152556 port 553 152556 unique_id port 152556 remote_ip 10.8.0.182 152557 username hashtadani4 152557 mac 152557 bytes_out 0 152557 bytes_in 0 152557 station_ip 83.123.139.23 152557 port 553 152557 unique_id port 152557 remote_ip 10.8.0.182 152560 username hashtadani4 152560 mac 152560 bytes_out 0 152560 bytes_in 0 152560 station_ip 83.123.139.23 152560 port 553 152560 unique_id port 152560 remote_ip 10.8.0.182 152562 username barzegar 152562 mac 152562 bytes_out 0 152562 bytes_in 0 152562 station_ip 5.119.104.167 152562 port 593 152562 unique_id port 152562 remote_ip 10.8.0.234 152565 username hashtadani4 152565 mac 152565 bytes_out 0 152565 bytes_in 0 152565 station_ip 83.123.139.23 152565 port 595 152565 unique_id port 152565 remote_ip 10.8.0.182 152566 username mohammadmahdi 152566 kill_reason Another user logged on this global unique id 152566 mac 152566 bytes_out 0 152566 bytes_in 0 152566 station_ip 5.120.56.142 152566 port 590 152566 unique_id port 152566 remote_ip 10.8.0.54 152567 username khalili 152567 mac 152567 bytes_out 0 152567 bytes_in 0 152567 station_ip 5.120.42.66 152567 port 541 152567 unique_id port 152519 username hashtadani4 152519 mac 152519 bytes_out 0 152519 bytes_in 0 152519 station_ip 83.123.139.23 152519 port 561 152519 unique_id port 152519 remote_ip 10.8.0.182 152524 username hashtadani4 152524 kill_reason Maximum check online fails reached 152524 mac 152524 bytes_out 0 152524 bytes_in 0 152524 station_ip 83.123.139.23 152524 port 588 152524 unique_id port 152525 username barzegar 152525 mac 152525 bytes_out 0 152525 bytes_in 0 152525 station_ip 5.119.104.167 152525 port 281 152525 unique_id port 152525 remote_ip 10.8.1.174 152534 username barzegar 152534 mac 152534 bytes_out 0 152534 bytes_in 0 152534 station_ip 5.119.104.167 152534 port 281 152534 unique_id port 152534 remote_ip 10.8.1.174 152537 username hashtadani4 152537 mac 152537 bytes_out 0 152537 bytes_in 0 152537 station_ip 83.123.139.23 152537 port 553 152537 unique_id port 152537 remote_ip 10.8.0.182 152538 username nilufarrajaei 152538 kill_reason Another user logged on this global unique id 152538 mac 152538 bytes_out 0 152538 bytes_in 0 152538 station_ip 37.129.79.90 152538 port 557 152538 unique_id port 152539 username kalantary 152539 mac 152539 bytes_out 544960 152539 bytes_in 2044305 152539 station_ip 37.129.138.129 152539 port 590 152539 unique_id port 152539 remote_ip 10.8.0.98 152540 username hashtadani4 152540 mac 152540 bytes_out 0 152540 bytes_in 0 152540 station_ip 83.123.139.23 152540 port 590 152540 unique_id port 152540 remote_ip 10.8.0.182 152542 username hashtadani4 152542 mac 152542 bytes_out 0 152542 bytes_in 0 152542 station_ip 83.123.139.23 152542 port 590 152542 unique_id port 152542 remote_ip 10.8.0.182 152544 username hashtadani4 152544 mac 152544 bytes_out 0 152544 bytes_in 0 152544 station_ip 83.123.139.23 152544 port 593 152544 unique_id port 152544 remote_ip 10.8.0.182 152546 username kalantary 152546 mac 152546 bytes_out 0 152546 bytes_in 0 152546 station_ip 37.129.138.129 152546 port 590 152546 unique_id port 152546 remote_ip 10.8.0.98 152549 username morteza 152549 mac 152549 bytes_out 0 152549 bytes_in 0 152549 station_ip 83.122.147.149 152549 port 553 152549 unique_id port 152549 remote_ip 10.8.0.46 152553 username morteza 152553 mac 152553 bytes_out 0 152553 bytes_in 0 152553 station_ip 83.122.147.149 152553 port 553 152553 unique_id port 152553 remote_ip 10.8.0.46 152555 username morteza 152555 mac 152555 bytes_out 0 152555 bytes_in 0 152555 station_ip 83.122.147.149 152555 port 553 152555 unique_id port 152555 remote_ip 10.8.0.46 152561 username zahra1101 152561 mac 152561 bytes_out 299733 152561 bytes_in 910016 152561 station_ip 5.120.144.104 152561 port 553 152561 unique_id port 152561 remote_ip 10.8.0.162 152563 username zahra1101 152563 mac 152563 bytes_out 0 152563 bytes_in 0 152563 station_ip 5.120.144.104 152563 port 553 152563 unique_id port 152563 remote_ip 10.8.0.162 152564 username zahra1101 152564 mac 152564 bytes_out 0 152564 bytes_in 0 152564 station_ip 5.120.144.104 152564 port 281 152564 unique_id port 152564 remote_ip 10.8.1.182 152574 username mohammadmahdi 152574 mac 152574 bytes_out 0 152574 bytes_in 0 152574 station_ip 5.120.56.142 152574 port 590 152574 unique_id port 152581 username zahra1101 152581 mac 152581 bytes_out 0 152581 bytes_in 0 152581 station_ip 5.120.144.104 152581 port 553 152581 unique_id port 152581 remote_ip 10.8.0.162 152584 username hassan 152584 kill_reason Another user logged on this global unique id 152571 username sedighe 152571 mac 152571 bytes_out 0 152571 bytes_in 0 152571 station_ip 37.129.56.115 152571 port 553 152571 unique_id port 152571 remote_ip 10.8.0.146 152575 username aminvpn 152575 mac 152575 bytes_out 0 152575 bytes_in 0 152575 station_ip 5.120.143.199 152575 port 593 152575 unique_id port 152575 remote_ip 10.8.0.14 152577 username zahra1101 152577 mac 152577 bytes_out 0 152577 bytes_in 0 152577 station_ip 5.120.144.104 152577 port 281 152577 unique_id port 152577 remote_ip 10.8.1.182 152579 username zahra1101 152579 mac 152579 bytes_out 0 152579 bytes_in 0 152579 station_ip 5.120.144.104 152579 port 553 152579 unique_id port 152579 remote_ip 10.8.0.162 152582 username hashtadani4 152582 mac 152582 bytes_out 0 152582 bytes_in 0 152582 station_ip 83.123.139.23 152582 port 553 152582 unique_id port 152582 remote_ip 10.8.0.182 152585 username mohammadjavad 152585 mac 152585 bytes_out 1863068 152585 bytes_in 33443854 152585 station_ip 83.122.144.122 152585 port 592 152585 unique_id port 152585 remote_ip 10.8.0.142 152586 username zahra1101 152586 mac 152586 bytes_out 20428 152586 bytes_in 41635 152586 station_ip 5.120.144.104 152586 port 281 152586 unique_id port 152586 remote_ip 10.8.1.182 152589 username zahra1101 152589 mac 152589 bytes_out 0 152589 bytes_in 0 152589 station_ip 5.120.144.104 152589 port 592 152589 unique_id port 152589 remote_ip 10.8.0.162 152593 username hassan 152593 kill_reason Another user logged on this global unique id 152593 mac 152593 bytes_out 0 152593 bytes_in 0 152593 station_ip 5.120.159.111 152593 port 590 152593 unique_id port 152594 username zahra1101 152594 mac 152594 bytes_out 0 152594 bytes_in 0 152594 station_ip 5.120.144.104 152594 port 592 152594 unique_id port 152594 remote_ip 10.8.0.162 152597 username zahra1101 152597 mac 152597 bytes_out 0 152597 bytes_in 0 152597 station_ip 5.120.144.104 152597 port 592 152597 unique_id port 152597 remote_ip 10.8.0.162 152599 username zahra1101 152599 mac 152599 bytes_out 0 152599 bytes_in 0 152599 station_ip 5.120.144.104 152599 port 592 152599 unique_id port 152599 remote_ip 10.8.0.162 152600 username hashtadani4 152600 mac 152600 bytes_out 0 152600 bytes_in 0 152600 station_ip 83.123.139.23 152600 port 592 152600 unique_id port 152600 remote_ip 10.8.0.182 152610 username zahra1101 152610 mac 152610 bytes_out 0 152610 bytes_in 0 152610 station_ip 5.120.144.104 152610 port 281 152610 unique_id port 152610 remote_ip 10.8.1.182 152614 username zahra1101 152614 mac 152614 bytes_out 0 152614 bytes_in 0 152614 station_ip 5.120.144.104 152614 port 281 152614 unique_id port 152614 remote_ip 10.8.1.182 152615 username zahra1101 152615 mac 152615 bytes_out 0 152615 bytes_in 0 152615 station_ip 5.120.144.104 152615 port 596 152615 unique_id port 152615 remote_ip 10.8.0.162 152616 username zahra1101 152616 mac 152616 bytes_out 0 152616 bytes_in 0 152616 station_ip 5.120.144.104 152616 port 596 152616 unique_id port 152616 remote_ip 10.8.0.162 152618 username rezaei 152618 mac 152618 bytes_out 1706554 152618 bytes_in 19472402 152618 station_ip 5.120.96.217 152618 port 595 152618 unique_id port 152618 remote_ip 10.8.0.230 152620 username zahra1101 152620 mac 152620 bytes_out 0 152620 bytes_in 0 152620 station_ip 5.120.144.104 152620 port 292 152620 unique_id port 152620 remote_ip 10.8.1.182 152621 username zahra1101 152621 mac 152572 station_ip 5.120.144.104 152572 port 595 152572 unique_id port 152572 remote_ip 10.8.0.162 152573 username barzegar 152573 mac 152573 bytes_out 0 152573 bytes_in 0 152573 station_ip 5.119.104.167 152573 port 541 152573 unique_id port 152573 remote_ip 10.8.0.234 152576 username hashtadani4 152576 mac 152576 bytes_out 0 152576 bytes_in 0 152576 station_ip 83.123.139.23 152576 port 553 152576 unique_id port 152576 remote_ip 10.8.0.182 152578 username zahra1101 152578 mac 152578 bytes_out 0 152578 bytes_in 0 152578 station_ip 5.120.144.104 152578 port 281 152578 unique_id port 152578 remote_ip 10.8.1.182 152580 username hassan 152580 mac 152580 bytes_out 2461161 152580 bytes_in 13597899 152580 station_ip 37.27.14.32 152580 port 541 152580 unique_id port 152580 remote_ip 10.8.0.122 152583 username barzegar 152583 mac 152583 bytes_out 0 152583 bytes_in 0 152583 station_ip 5.119.104.167 152583 port 541 152583 unique_id port 152583 remote_ip 10.8.0.234 152588 username zahra1101 152588 mac 152588 bytes_out 0 152588 bytes_in 0 152588 station_ip 5.120.144.104 152588 port 541 152588 unique_id port 152588 remote_ip 10.8.0.162 152592 username hashtadani4 152592 mac 152592 bytes_out 0 152592 bytes_in 0 152592 station_ip 83.123.139.23 152592 port 592 152592 unique_id port 152592 remote_ip 10.8.0.182 152595 username zahra1101 152595 kill_reason Maximum check online fails reached 152595 mac 152595 bytes_out 0 152595 bytes_in 0 152595 station_ip 5.120.144.104 152595 port 541 152595 unique_id port 152596 username zahra1101 152596 mac 152596 bytes_out 0 152596 bytes_in 0 152596 station_ip 5.120.144.104 152596 port 592 152596 unique_id port 152596 remote_ip 10.8.0.162 152605 username barzegar 152605 mac 152605 bytes_out 0 152605 bytes_in 0 152605 station_ip 5.119.104.167 152605 port 595 152605 unique_id port 152605 remote_ip 10.8.0.234 152606 username zahra1101 152606 mac 152606 bytes_out 0 152606 bytes_in 0 152606 station_ip 5.120.144.104 152606 port 281 152606 unique_id port 152606 remote_ip 10.8.1.182 152611 username nilufarrajaei 152611 kill_reason Another user logged on this global unique id 152611 mac 152611 bytes_out 0 152611 bytes_in 0 152611 station_ip 37.129.79.90 152611 port 557 152611 unique_id port 152623 username sedighe 152623 mac 152623 bytes_out 21686 152623 bytes_in 39287 152623 station_ip 113.203.124.150 152623 port 595 152623 unique_id port 152623 remote_ip 10.8.0.146 152632 username hashtadani4 152632 mac 152632 bytes_out 0 152632 bytes_in 0 152632 station_ip 83.123.139.23 152632 port 595 152632 unique_id port 152632 remote_ip 10.8.0.182 152633 username sedighe 152633 mac 152633 bytes_out 0 152633 bytes_in 0 152633 station_ip 113.203.124.150 152633 port 593 152633 unique_id port 152633 remote_ip 10.8.0.146 152634 username sedighe 152634 mac 152634 bytes_out 11055 152634 bytes_in 19972 152634 station_ip 37.129.111.132 152634 port 595 152634 unique_id port 152634 remote_ip 10.8.0.146 152638 username hashtadani4 152638 mac 152638 bytes_out 0 152638 bytes_in 0 152638 station_ip 83.123.139.23 152638 port 595 152638 unique_id port 152638 remote_ip 10.8.0.182 152640 username zahra1101 152640 mac 152640 bytes_out 0 152640 bytes_in 0 152640 station_ip 5.120.144.104 152640 port 595 152640 unique_id port 152640 remote_ip 10.8.0.162 152645 username sabaghnezhad 152645 mac 152645 bytes_out 1958896 152645 bytes_in 6698897 152645 station_ip 37.129.9.137 152584 mac 152584 bytes_out 0 152584 bytes_in 0 152584 station_ip 5.120.159.111 152584 port 590 152584 unique_id port 152584 remote_ip 10.8.0.122 152587 username barzegar 152587 mac 152587 bytes_out 0 152587 bytes_in 0 152587 station_ip 5.119.104.167 152587 port 541 152587 unique_id port 152587 remote_ip 10.8.0.234 152590 username zahra1101 152590 mac 152590 bytes_out 0 152590 bytes_in 0 152590 station_ip 5.120.144.104 152590 port 592 152590 unique_id port 152590 remote_ip 10.8.0.162 152591 username hashtadani4 152591 mac 152591 bytes_out 0 152591 bytes_in 0 152591 station_ip 83.123.139.23 152591 port 281 152591 unique_id port 152591 remote_ip 10.8.1.142 152598 username zahra1101 152598 mac 152598 bytes_out 0 152598 bytes_in 0 152598 station_ip 5.120.144.104 152598 port 592 152598 unique_id port 152598 remote_ip 10.8.0.162 152601 username zahra1101 152601 mac 152601 bytes_out 0 152601 bytes_in 0 152601 station_ip 5.120.144.104 152601 port 281 152601 unique_id port 152601 remote_ip 10.8.1.182 152602 username hashtadani4 152602 mac 152602 bytes_out 0 152602 bytes_in 0 152602 station_ip 83.123.139.23 152602 port 592 152602 unique_id port 152602 remote_ip 10.8.0.182 152603 username zahra1101 152603 mac 152603 bytes_out 0 152603 bytes_in 0 152603 station_ip 5.120.144.104 152603 port 281 152603 unique_id port 152603 remote_ip 10.8.1.182 152604 username zahra1101 152604 mac 152604 bytes_out 0 152604 bytes_in 0 152604 station_ip 5.120.144.104 152604 port 592 152604 unique_id port 152604 remote_ip 10.8.0.162 152607 username zahra1101 152607 kill_reason Maximum check online fails reached 152607 mac 152607 bytes_out 0 152607 bytes_in 0 152607 station_ip 5.120.144.104 152607 port 592 152607 unique_id port 152608 username mohammadjavad 152608 kill_reason Another user logged on this global unique id 152608 mac 152608 bytes_out 0 152608 bytes_in 0 152608 station_ip 83.123.153.42 152608 port 553 152608 unique_id port 152608 remote_ip 10.8.0.142 152609 username hashtadani4 152609 mac 152609 bytes_out 0 152609 bytes_in 0 152609 station_ip 83.123.139.23 152609 port 595 152609 unique_id port 152609 remote_ip 10.8.0.182 152612 username zahra1101 152612 mac 152612 bytes_out 35772 152612 bytes_in 74459 152612 station_ip 5.120.144.104 152612 port 281 152612 unique_id port 152612 remote_ip 10.8.1.182 152613 username hassan 152613 kill_reason Another user logged on this global unique id 152613 mac 152613 bytes_out 0 152613 bytes_in 0 152613 station_ip 5.120.159.111 152613 port 590 152613 unique_id port 152617 username hashtadani4 152617 mac 152617 bytes_out 0 152617 bytes_in 0 152617 station_ip 83.123.139.23 152617 port 596 152617 unique_id port 152617 remote_ip 10.8.0.182 152619 username zahra1101 152619 kill_reason Maximum check online fails reached 152619 mac 152619 bytes_out 0 152619 bytes_in 0 152619 station_ip 5.120.144.104 152619 port 281 152619 unique_id port 152624 username barzegar 152624 mac 152624 bytes_out 0 152624 bytes_in 0 152624 station_ip 5.119.104.167 152624 port 595 152624 unique_id port 152624 remote_ip 10.8.0.234 152627 username hashtadani4 152627 mac 152627 bytes_out 0 152627 bytes_in 0 152627 station_ip 83.123.139.23 152627 port 595 152627 unique_id port 152627 remote_ip 10.8.0.182 152630 username hassan 152630 kill_reason Another user logged on this global unique id 152630 mac 152630 bytes_out 0 152630 bytes_in 0 152630 station_ip 5.120.159.111 152630 port 590 152630 unique_id port 152621 bytes_out 0 152621 bytes_in 0 152621 station_ip 5.120.144.104 152621 port 292 152621 unique_id port 152621 remote_ip 10.8.1.182 152622 username sedighe 152622 mac 152622 bytes_out 0 152622 bytes_in 0 152622 station_ip 113.203.124.150 152622 port 593 152622 unique_id port 152622 remote_ip 10.8.0.146 152625 username zahra1101 152625 mac 152625 bytes_out 0 152625 bytes_in 0 152625 station_ip 5.120.144.104 152625 port 596 152625 unique_id port 152625 remote_ip 10.8.0.162 152626 username kalantary 152626 mac 152626 bytes_out 0 152626 bytes_in 0 152626 station_ip 37.129.157.69 152626 port 290 152626 unique_id port 152626 remote_ip 10.8.1.26 152628 username zahra1101 152628 mac 152628 bytes_out 0 152628 bytes_in 0 152628 station_ip 5.120.144.104 152628 port 292 152628 unique_id port 152628 remote_ip 10.8.1.182 152629 username zahra1101 152629 mac 152629 bytes_out 0 152629 bytes_in 0 152629 station_ip 5.120.144.104 152629 port 290 152629 unique_id port 152629 remote_ip 10.8.1.182 152636 username hassan 152636 kill_reason Another user logged on this global unique id 152636 mac 152636 bytes_out 0 152636 bytes_in 0 152636 station_ip 5.120.159.111 152636 port 590 152636 unique_id port 152637 username hashtadani4 152637 mac 152637 bytes_out 0 152637 bytes_in 0 152637 station_ip 83.123.139.23 152637 port 593 152637 unique_id port 152637 remote_ip 10.8.0.182 152639 username zahra1101 152639 mac 152639 bytes_out 685716 152639 bytes_in 7521568 152639 station_ip 5.120.144.104 152639 port 290 152639 unique_id port 152639 remote_ip 10.8.1.182 152642 username zahra1101 152642 mac 152642 bytes_out 0 152642 bytes_in 0 152642 station_ip 5.120.144.104 152642 port 595 152642 unique_id port 152642 remote_ip 10.8.0.162 152647 username rezaei 152647 mac 152647 bytes_out 0 152647 bytes_in 0 152647 station_ip 5.120.96.217 152647 port 593 152647 unique_id port 152647 remote_ip 10.8.0.230 152654 username houshang 152654 mac 152654 bytes_out 0 152654 bytes_in 0 152654 station_ip 5.119.15.156 152654 port 595 152654 unique_id port 152654 remote_ip 10.8.0.22 152656 username mirzaei 152656 kill_reason Another user logged on this global unique id 152656 mac 152656 bytes_out 0 152656 bytes_in 0 152656 station_ip 5.119.91.25 152656 port 287 152656 unique_id port 152656 remote_ip 10.8.1.30 152657 username hashtadani4 152657 mac 152657 bytes_out 0 152657 bytes_in 0 152657 station_ip 83.123.139.23 152657 port 597 152657 unique_id port 152657 remote_ip 10.8.0.182 152659 username mohammadjavad 152659 mac 152659 bytes_out 0 152659 bytes_in 0 152659 station_ip 83.123.153.42 152659 port 553 152659 unique_id port 152663 username forozandeh1 152663 mac 152663 bytes_out 1475844 152663 bytes_in 15474878 152663 station_ip 83.122.213.241 152663 port 597 152663 unique_id port 152663 remote_ip 10.8.0.130 152664 username hashtadani4 152664 mac 152664 bytes_out 0 152664 bytes_in 0 152664 station_ip 83.123.139.23 152664 port 557 152664 unique_id port 152664 remote_ip 10.8.0.182 152669 username rahim 152669 kill_reason Another user logged on this global unique id 152669 mac 152669 bytes_out 0 152669 bytes_in 0 152669 station_ip 5.120.153.199 152669 port 594 152669 unique_id port 152669 remote_ip 10.8.0.50 152674 username hashtadani4 152674 mac 152674 bytes_out 0 152674 bytes_in 0 152674 station_ip 83.123.139.23 152674 port 596 152674 unique_id port 152674 remote_ip 10.8.0.182 152676 username hashtadani4 152676 mac 152631 username hashtadani4 152631 mac 152631 bytes_out 0 152631 bytes_in 0 152631 station_ip 83.123.139.23 152631 port 292 152631 unique_id port 152631 remote_ip 10.8.1.142 152635 username barzegar 152635 mac 152635 bytes_out 0 152635 bytes_in 0 152635 station_ip 5.119.104.167 152635 port 593 152635 unique_id port 152635 remote_ip 10.8.0.234 152641 username barzegar 152641 mac 152641 bytes_out 0 152641 bytes_in 0 152641 station_ip 5.119.104.167 152641 port 596 152641 unique_id port 152641 remote_ip 10.8.0.234 152643 username hassan 152643 kill_reason Another user logged on this global unique id 152643 mac 152643 bytes_out 0 152643 bytes_in 0 152643 station_ip 5.120.159.111 152643 port 590 152643 unique_id port 152644 username kalantary 152644 mac 152644 bytes_out 0 152644 bytes_in 0 152644 station_ip 37.129.140.65 152644 port 292 152644 unique_id port 152644 remote_ip 10.8.1.26 152651 username hashtadani4 152651 mac 152651 bytes_out 0 152651 bytes_in 0 152651 station_ip 83.123.139.23 152651 port 596 152651 unique_id port 152651 remote_ip 10.8.0.182 152652 username hashtadani4 152652 mac 152652 bytes_out 0 152652 bytes_in 0 152652 station_ip 83.123.139.23 152652 port 596 152652 unique_id port 152652 remote_ip 10.8.0.182 152655 username hassan 152655 kill_reason Another user logged on this global unique id 152655 mac 152655 bytes_out 0 152655 bytes_in 0 152655 station_ip 5.120.159.111 152655 port 590 152655 unique_id port 152660 username hassan 152660 kill_reason Another user logged on this global unique id 152660 mac 152660 bytes_out 0 152660 bytes_in 0 152660 station_ip 5.120.159.111 152660 port 590 152660 unique_id port 152661 username nilufarrajaei 152661 mac 152661 bytes_out 0 152661 bytes_in 0 152661 station_ip 37.129.79.90 152661 port 557 152661 unique_id port 152666 username milan 152666 kill_reason Another user logged on this global unique id 152666 mac 152666 bytes_out 0 152666 bytes_in 0 152666 station_ip 5.120.37.194 152666 port 584 152666 unique_id port 152667 username houshang 152667 mac 152667 bytes_out 0 152667 bytes_in 0 152667 station_ip 5.119.15.156 152667 port 596 152667 unique_id port 152668 username barzegar 152668 mac 152668 bytes_out 0 152668 bytes_in 0 152668 station_ip 5.119.104.167 152668 port 596 152668 unique_id port 152668 remote_ip 10.8.0.234 152670 username mohammadjavad 152670 mac 152670 bytes_out 40992 152670 bytes_in 58747 152670 station_ip 83.123.6.220 152670 port 596 152670 unique_id port 152670 remote_ip 10.8.0.142 152671 username hashtadani4 152671 mac 152671 bytes_out 0 152671 bytes_in 0 152671 station_ip 83.123.139.23 152671 port 596 152671 unique_id port 152671 remote_ip 10.8.0.182 152672 username kalantary 152672 mac 152672 bytes_out 94426 152672 bytes_in 235217 152672 station_ip 37.129.222.137 152672 port 596 152672 unique_id port 152672 remote_ip 10.8.0.98 152673 username alipour 152673 kill_reason Another user logged on this global unique id 152673 mac 152673 bytes_out 0 152673 bytes_in 0 152673 station_ip 83.123.221.165 152673 port 591 152673 unique_id port 152675 username houshang 152675 kill_reason Another user logged on this global unique id 152675 mac 152675 bytes_out 0 152675 bytes_in 0 152675 station_ip 5.119.15.156 152675 port 593 152675 unique_id port 152675 remote_ip 10.8.0.22 152677 username hamidsalari 152677 mac 152677 bytes_out 206559 152677 bytes_in 642314 152677 station_ip 5.119.25.45 152677 port 597 152677 unique_id port 152677 remote_ip 10.8.0.222 152645 port 594 152645 unique_id port 152645 remote_ip 10.8.0.186 152646 username hashtadani4 152646 mac 152646 bytes_out 0 152646 bytes_in 0 152646 station_ip 83.123.139.23 152646 port 596 152646 unique_id port 152646 remote_ip 10.8.0.182 152648 username sabaghnezhad 152648 mac 152648 bytes_out 12882 152648 bytes_in 18888 152648 station_ip 37.129.9.137 152648 port 594 152648 unique_id port 152648 remote_ip 10.8.0.186 152649 username zahra1101 152649 mac 152649 bytes_out 5385 152649 bytes_in 8501 152649 station_ip 5.120.144.104 152649 port 593 152649 unique_id port 152649 remote_ip 10.8.0.162 152650 username zahra1101 152650 mac 152650 bytes_out 0 152650 bytes_in 0 152650 station_ip 5.120.144.104 152650 port 593 152650 unique_id port 152650 remote_ip 10.8.0.162 152653 username barzegar 152653 mac 152653 bytes_out 0 152653 bytes_in 0 152653 station_ip 5.119.104.167 152653 port 596 152653 unique_id port 152653 remote_ip 10.8.0.234 152658 username houshang 152658 kill_reason Another user logged on this global unique id 152658 mac 152658 bytes_out 0 152658 bytes_in 0 152658 station_ip 5.119.15.156 152658 port 596 152658 unique_id port 152658 remote_ip 10.8.0.22 152662 username hashtadani4 152662 mac 152662 bytes_out 0 152662 bytes_in 0 152662 station_ip 83.123.139.23 152662 port 553 152662 unique_id port 152662 remote_ip 10.8.0.182 152665 username zahra1101 152665 mac 152665 bytes_out 106847 152665 bytes_in 146532 152665 station_ip 5.120.144.104 152665 port 593 152665 unique_id port 152665 remote_ip 10.8.0.162 152681 username houshang 152681 mac 152681 bytes_out 0 152681 bytes_in 0 152681 station_ip 5.119.15.156 152681 port 593 152681 unique_id port 152682 username barzegar 152682 mac 152682 bytes_out 0 152682 bytes_in 0 152682 station_ip 5.119.104.167 152682 port 584 152682 unique_id port 152682 remote_ip 10.8.0.234 152683 username hashtadani4 152683 mac 152683 bytes_out 0 152683 bytes_in 0 152683 station_ip 83.123.139.23 152683 port 584 152683 unique_id port 152683 remote_ip 10.8.0.182 152689 username zahra1101 152689 mac 152689 bytes_out 0 152689 bytes_in 0 152689 station_ip 5.120.144.104 152689 port 593 152689 unique_id port 152689 remote_ip 10.8.0.162 152690 username zahra1101 152690 mac 152690 bytes_out 0 152690 bytes_in 0 152690 station_ip 5.120.144.104 152690 port 593 152690 unique_id port 152690 remote_ip 10.8.0.162 152692 username morteza 152692 mac 152692 bytes_out 1545963 152692 bytes_in 18685489 152692 station_ip 83.122.214.197 152692 port 557 152692 unique_id port 152692 remote_ip 10.8.0.46 152698 username morteza 152698 mac 152698 bytes_out 0 152698 bytes_in 0 152698 station_ip 83.122.214.197 152698 port 292 152698 unique_id port 152698 remote_ip 10.8.1.62 152699 username hashtadani4 152699 mac 152699 bytes_out 0 152699 bytes_in 0 152699 station_ip 83.123.139.23 152699 port 593 152699 unique_id port 152699 remote_ip 10.8.0.182 152703 username morteza 152703 mac 152703 bytes_out 0 152703 bytes_in 0 152703 station_ip 83.122.214.197 152703 port 292 152703 unique_id port 152703 remote_ip 10.8.1.62 152707 username barzegar 152707 mac 152707 bytes_out 0 152707 bytes_in 0 152707 station_ip 5.119.104.167 152707 port 292 152707 unique_id port 152707 remote_ip 10.8.1.174 152709 username morteza 152709 mac 152709 bytes_out 0 152709 bytes_in 0 152709 station_ip 83.122.214.197 152709 port 596 152709 unique_id port 152676 bytes_out 0 152676 bytes_in 0 152676 station_ip 83.123.139.23 152676 port 596 152676 unique_id port 152676 remote_ip 10.8.0.182 152678 username milan 152678 mac 152678 bytes_out 0 152678 bytes_in 0 152678 station_ip 5.120.37.194 152678 port 584 152678 unique_id port 152679 username rahim 152679 mac 152679 bytes_out 0 152679 bytes_in 0 152679 station_ip 5.120.153.199 152679 port 594 152679 unique_id port 152680 username hashtadani4 152680 mac 152680 bytes_out 0 152680 bytes_in 0 152680 station_ip 83.123.139.23 152680 port 584 152680 unique_id port 152680 remote_ip 10.8.0.182 152684 username zahra1101 152684 mac 152684 bytes_out 42622 152684 bytes_in 85635 152684 station_ip 5.120.144.104 152684 port 557 152684 unique_id port 152684 remote_ip 10.8.0.162 152687 username hashtadani4 152687 mac 152687 bytes_out 0 152687 bytes_in 0 152687 station_ip 83.123.139.23 152687 port 290 152687 unique_id port 152687 remote_ip 10.8.1.142 152688 username hashtadani4 152688 mac 152688 bytes_out 0 152688 bytes_in 0 152688 station_ip 83.123.139.23 152688 port 584 152688 unique_id port 152688 remote_ip 10.8.0.182 152693 username hashtadani4 152693 mac 152693 bytes_out 0 152693 bytes_in 0 152693 station_ip 83.123.139.23 152693 port 557 152693 unique_id port 152693 remote_ip 10.8.0.182 152701 username morteza 152701 mac 152701 bytes_out 65884 152701 bytes_in 535529 152701 station_ip 83.122.214.197 152701 port 593 152701 unique_id port 152701 remote_ip 10.8.0.46 152704 username hashtadani4 152704 mac 152704 bytes_out 932799 152704 bytes_in 10561093 152704 station_ip 83.123.139.23 152704 port 594 152704 unique_id port 152704 remote_ip 10.8.0.182 152706 username morteza 152706 mac 152706 bytes_out 0 152706 bytes_in 0 152706 station_ip 83.122.214.197 152706 port 293 152706 unique_id port 152706 remote_ip 10.8.1.62 152711 username mohammadjavad 152711 kill_reason Another user logged on this global unique id 152711 mac 152711 bytes_out 0 152711 bytes_in 0 152711 station_ip 37.27.54.116 152711 port 557 152711 unique_id port 152711 remote_ip 10.8.0.142 152714 username zahra1101 152714 mac 152714 bytes_out 0 152714 bytes_in 0 152714 station_ip 5.120.144.104 152714 port 290 152714 unique_id port 152714 remote_ip 10.8.1.182 152727 username houshang 152727 mac 152727 bytes_out 842745 152727 bytes_in 9488730 152727 station_ip 5.120.130.115 152727 port 597 152727 unique_id port 152727 remote_ip 10.8.0.22 152730 username morteza 152730 mac 152730 bytes_out 0 152730 bytes_in 0 152730 station_ip 83.122.214.197 152730 port 292 152730 unique_id port 152730 remote_ip 10.8.1.62 152732 username zahra1101 152732 mac 152732 bytes_out 0 152732 bytes_in 0 152732 station_ip 5.120.144.104 152732 port 597 152732 unique_id port 152732 remote_ip 10.8.0.162 152734 username zahra1101 152734 mac 152734 bytes_out 0 152734 bytes_in 0 152734 station_ip 5.120.144.104 152734 port 290 152734 unique_id port 152734 remote_ip 10.8.1.182 152735 username morteza 152735 mac 152735 bytes_out 0 152735 bytes_in 0 152735 station_ip 83.122.214.197 152735 port 598 152735 unique_id port 152735 remote_ip 10.8.0.46 152740 username hashtadani4 152740 mac 152740 bytes_out 0 152740 bytes_in 0 152740 station_ip 83.123.139.23 152740 port 597 152740 unique_id port 152740 remote_ip 10.8.0.182 152745 username zahra1101 152745 mac 152745 bytes_out 0 152745 bytes_in 0 152745 station_ip 5.120.144.104 152685 username zahra1101 152685 mac 152685 bytes_out 0 152685 bytes_in 0 152685 station_ip 5.120.144.104 152685 port 557 152685 unique_id port 152685 remote_ip 10.8.0.162 152686 username zahra1101 152686 mac 152686 bytes_out 0 152686 bytes_in 0 152686 station_ip 5.120.144.104 152686 port 584 152686 unique_id port 152686 remote_ip 10.8.0.162 152691 username barzegar 152691 mac 152691 bytes_out 0 152691 bytes_in 0 152691 station_ip 5.119.104.167 152691 port 594 152691 unique_id port 152691 remote_ip 10.8.0.234 152694 username morteza 152694 mac 152694 bytes_out 0 152694 bytes_in 0 152694 station_ip 83.122.214.197 152694 port 290 152694 unique_id port 152694 remote_ip 10.8.1.62 152695 username zahra1101 152695 mac 152695 bytes_out 0 152695 bytes_in 0 152695 station_ip 5.120.144.104 152695 port 290 152695 unique_id port 152695 remote_ip 10.8.1.182 152696 username hashtadani4 152696 mac 152696 bytes_out 0 152696 bytes_in 0 152696 station_ip 83.123.139.23 152696 port 593 152696 unique_id port 152696 remote_ip 10.8.0.182 152697 username morteza 152697 mac 152697 bytes_out 0 152697 bytes_in 0 152697 station_ip 83.122.214.197 152697 port 593 152697 unique_id port 152697 remote_ip 10.8.0.46 152700 username godarzi 152700 mac 152700 bytes_out 0 152700 bytes_in 0 152700 station_ip 5.202.24.27 152700 port 584 152700 unique_id port 152700 remote_ip 10.8.0.174 152702 username morteza 152702 mac 152702 bytes_out 0 152702 bytes_in 0 152702 station_ip 83.122.214.197 152702 port 584 152702 unique_id port 152702 remote_ip 10.8.0.46 152705 username morteza 152705 mac 152705 bytes_out 0 152705 bytes_in 0 152705 station_ip 83.122.214.197 152705 port 292 152705 unique_id port 152705 remote_ip 10.8.1.62 152708 username morteza 152708 mac 152708 bytes_out 0 152708 bytes_in 0 152708 station_ip 83.122.214.197 152708 port 596 152708 unique_id port 152708 remote_ip 10.8.0.46 152710 username morteza 152710 mac 152710 bytes_out 11363 152710 bytes_in 31335 152710 station_ip 83.122.214.197 152710 port 596 152710 unique_id port 152710 remote_ip 10.8.0.46 152712 username godarzi 152712 kill_reason Another user logged on this global unique id 152712 mac 152712 bytes_out 0 152712 bytes_in 0 152712 station_ip 5.202.24.27 152712 port 593 152712 unique_id port 152712 remote_ip 10.8.0.174 152715 username zahra1101 152715 mac 152715 bytes_out 0 152715 bytes_in 0 152715 station_ip 5.120.144.104 152715 port 290 152715 unique_id port 152715 remote_ip 10.8.1.182 152716 username morteza 152716 mac 152716 bytes_out 0 152716 bytes_in 0 152716 station_ip 83.122.214.197 152716 port 292 152716 unique_id port 152716 remote_ip 10.8.1.62 152720 username hashtadani4 152720 mac 152720 bytes_out 657901 152720 bytes_in 3804669 152720 station_ip 83.123.139.23 152720 port 598 152720 unique_id port 152720 remote_ip 10.8.0.182 152721 username zahra1101 152721 mac 152721 bytes_out 0 152721 bytes_in 0 152721 station_ip 5.120.144.104 152721 port 290 152721 unique_id port 152721 remote_ip 10.8.1.182 152722 username morteza 152722 mac 152722 bytes_out 0 152722 bytes_in 0 152722 station_ip 83.122.214.197 152722 port 596 152722 unique_id port 152722 remote_ip 10.8.0.46 152724 username hashtadani4 152724 mac 152724 bytes_out 0 152724 bytes_in 0 152724 station_ip 83.123.139.23 152724 port 290 152724 unique_id port 152724 remote_ip 10.8.1.142 152725 username hashtadani4 152709 remote_ip 10.8.0.46 152713 username houshang 152713 mac 152713 bytes_out 63819 152713 bytes_in 99517 152713 station_ip 5.120.130.115 152713 port 597 152713 unique_id port 152713 remote_ip 10.8.0.22 152717 username morteza 152717 mac 152717 bytes_out 0 152717 bytes_in 0 152717 station_ip 83.122.214.197 152717 port 290 152717 unique_id port 152717 remote_ip 10.8.1.62 152718 username zahra1101 152718 mac 152718 bytes_out 0 152718 bytes_in 0 152718 station_ip 5.120.144.104 152718 port 596 152718 unique_id port 152718 remote_ip 10.8.0.162 152719 username morteza 152719 mac 152719 bytes_out 0 152719 bytes_in 0 152719 station_ip 83.122.214.197 152719 port 290 152719 unique_id port 152719 remote_ip 10.8.1.62 152723 username morteza 152723 mac 152723 bytes_out 0 152723 bytes_in 0 152723 station_ip 83.122.214.197 152723 port 596 152723 unique_id port 152723 remote_ip 10.8.0.46 152728 username morteza 152728 mac 152728 bytes_out 0 152728 bytes_in 0 152728 station_ip 83.122.214.197 152728 port 290 152728 unique_id port 152728 remote_ip 10.8.1.62 152736 username zahra1101 152736 mac 152736 bytes_out 0 152736 bytes_in 0 152736 station_ip 5.120.144.104 152736 port 290 152736 unique_id port 152736 remote_ip 10.8.1.182 152738 username zahra1101 152738 mac 152738 bytes_out 0 152738 bytes_in 0 152738 station_ip 5.120.144.104 152738 port 597 152738 unique_id port 152738 remote_ip 10.8.0.162 152739 username zahra1101 152739 mac 152739 bytes_out 0 152739 bytes_in 0 152739 station_ip 5.120.144.104 152739 port 290 152739 unique_id port 152739 remote_ip 10.8.1.182 152741 username zahra1101 152741 mac 152741 bytes_out 0 152741 bytes_in 0 152741 station_ip 5.120.144.104 152741 port 290 152741 unique_id port 152741 remote_ip 10.8.1.182 152742 username zahra1101 152742 mac 152742 bytes_out 0 152742 bytes_in 0 152742 station_ip 5.120.144.104 152742 port 290 152742 unique_id port 152742 remote_ip 10.8.1.182 152743 username mohammadjavad 152743 mac 152743 bytes_out 0 152743 bytes_in 0 152743 station_ip 37.27.54.116 152743 port 557 152743 unique_id port 152746 username godarzi 152746 mac 152746 bytes_out 0 152746 bytes_in 0 152746 station_ip 5.202.24.27 152746 port 593 152746 unique_id port 152747 username zahra1101 152747 mac 152747 bytes_out 0 152747 bytes_in 0 152747 station_ip 5.120.144.104 152747 port 290 152747 unique_id port 152747 remote_ip 10.8.1.182 152755 username hashtadani4 152755 mac 152755 bytes_out 0 152755 bytes_in 0 152755 station_ip 83.123.139.23 152755 port 593 152755 unique_id port 152755 remote_ip 10.8.0.182 152756 username hashtadani4 152756 mac 152756 bytes_out 0 152756 bytes_in 0 152756 station_ip 83.123.139.23 152756 port 593 152756 unique_id port 152756 remote_ip 10.8.0.182 152761 username hashtadani4 152761 mac 152761 bytes_out 0 152761 bytes_in 0 152761 station_ip 83.123.139.23 152761 port 593 152761 unique_id port 152761 remote_ip 10.8.0.182 152768 username hashtadani4 152768 mac 152768 bytes_out 0 152768 bytes_in 0 152768 station_ip 83.123.139.23 152768 port 597 152768 unique_id port 152768 remote_ip 10.8.0.182 152770 username vanila 152770 mac 152770 bytes_out 0 152770 bytes_in 0 152770 station_ip 83.122.175.228 152770 port 596 152770 unique_id port 152775 username hosseine 152775 mac 152775 bytes_out 2742875 152775 bytes_in 27838785 152775 station_ip 37.129.106.218 152725 mac 152725 bytes_out 0 152725 bytes_in 0 152725 station_ip 83.123.139.23 152725 port 290 152725 unique_id port 152725 remote_ip 10.8.1.142 152726 username barzegar 152726 mac 152726 bytes_out 2972 152726 bytes_in 5165 152726 station_ip 5.119.104.167 152726 port 598 152726 unique_id port 152726 remote_ip 10.8.0.234 152729 username zahra1101 152729 mac 152729 bytes_out 0 152729 bytes_in 0 152729 station_ip 5.120.144.104 152729 port 598 152729 unique_id port 152729 remote_ip 10.8.0.162 152731 username hashtadani4 152731 mac 152731 bytes_out 0 152731 bytes_in 0 152731 station_ip 83.123.139.23 152731 port 290 152731 unique_id port 152731 remote_ip 10.8.1.142 152733 username hashtadani4 152733 mac 152733 bytes_out 0 152733 bytes_in 0 152733 station_ip 83.123.139.23 152733 port 598 152733 unique_id port 152733 remote_ip 10.8.0.182 152737 username barzegar 152737 mac 152737 bytes_out 0 152737 bytes_in 0 152737 station_ip 5.119.104.167 152737 port 597 152737 unique_id port 152737 remote_ip 10.8.0.234 152744 username hashtadani4 152744 mac 152744 bytes_out 0 152744 bytes_in 0 152744 station_ip 83.123.139.23 152744 port 597 152744 unique_id port 152744 remote_ip 10.8.0.182 152749 username zahra1101 152749 mac 152749 bytes_out 0 152749 bytes_in 0 152749 station_ip 5.120.144.104 152749 port 290 152749 unique_id port 152749 remote_ip 10.8.1.182 152750 username zahra1101 152750 mac 152750 bytes_out 0 152750 bytes_in 0 152750 station_ip 5.120.144.104 152750 port 290 152750 unique_id port 152750 remote_ip 10.8.1.182 152751 username zahra1101 152751 mac 152751 bytes_out 0 152751 bytes_in 0 152751 station_ip 5.120.144.104 152751 port 557 152751 unique_id port 152751 remote_ip 10.8.0.162 152753 username zahra1101 152753 mac 152753 bytes_out 0 152753 bytes_in 0 152753 station_ip 5.120.144.104 152753 port 593 152753 unique_id port 152753 remote_ip 10.8.0.162 152759 username zahra1101 152759 mac 152759 bytes_out 0 152759 bytes_in 0 152759 station_ip 5.120.144.104 152759 port 593 152759 unique_id port 152759 remote_ip 10.8.0.162 152760 username hashtadani4 152760 mac 152760 bytes_out 0 152760 bytes_in 0 152760 station_ip 83.123.139.23 152760 port 593 152760 unique_id port 152760 remote_ip 10.8.0.182 152762 username zahra1101 152762 mac 152762 bytes_out 0 152762 bytes_in 0 152762 station_ip 5.120.144.104 152762 port 597 152762 unique_id port 152762 remote_ip 10.8.0.162 152764 username hashtadani4 152764 mac 152764 bytes_out 0 152764 bytes_in 0 152764 station_ip 83.123.139.23 152764 port 597 152764 unique_id port 152764 remote_ip 10.8.0.182 152767 username zahra1101 152767 mac 152767 bytes_out 0 152767 bytes_in 0 152767 station_ip 5.120.144.104 152767 port 290 152767 unique_id port 152767 remote_ip 10.8.1.182 152771 username hashtadani4 152771 mac 152771 bytes_out 0 152771 bytes_in 0 152771 station_ip 83.123.139.23 152771 port 596 152771 unique_id port 152771 remote_ip 10.8.0.182 152773 username hashtadani4 152773 mac 152773 bytes_out 0 152773 bytes_in 0 152773 station_ip 83.123.139.23 152773 port 596 152773 unique_id port 152773 remote_ip 10.8.0.182 152777 username godarzi 152777 kill_reason Another user logged on this global unique id 152777 mac 152777 bytes_out 0 152777 bytes_in 0 152777 station_ip 5.202.24.27 152777 port 597 152777 unique_id port 152777 remote_ip 10.8.0.174 152781 username morteza 152781 mac 152745 port 290 152745 unique_id port 152745 remote_ip 10.8.1.182 152748 username hashtadani4 152748 mac 152748 bytes_out 0 152748 bytes_in 0 152748 station_ip 83.123.139.23 152748 port 557 152748 unique_id port 152748 remote_ip 10.8.0.182 152752 username morteza 152752 mac 152752 bytes_out 0 152752 bytes_in 0 152752 station_ip 83.122.214.197 152752 port 593 152752 unique_id port 152752 remote_ip 10.8.0.46 152754 username barzegar 152754 mac 152754 bytes_out 0 152754 bytes_in 0 152754 station_ip 5.119.104.167 152754 port 290 152754 unique_id port 152754 remote_ip 10.8.1.174 152757 username zahra1101 152757 mac 152757 bytes_out 0 152757 bytes_in 0 152757 station_ip 5.120.144.104 152757 port 290 152757 unique_id port 152757 remote_ip 10.8.1.182 152758 username zahra1101 152758 mac 152758 bytes_out 0 152758 bytes_in 0 152758 station_ip 5.120.144.104 152758 port 290 152758 unique_id port 152758 remote_ip 10.8.1.182 152763 username vanila 152763 kill_reason Another user logged on this global unique id 152763 mac 152763 bytes_out 0 152763 bytes_in 0 152763 station_ip 83.122.175.228 152763 port 596 152763 unique_id port 152763 remote_ip 10.8.0.178 152765 username zahra1101 152765 mac 152765 bytes_out 10667 152765 bytes_in 22704 152765 station_ip 5.120.144.104 152765 port 593 152765 unique_id port 152765 remote_ip 10.8.0.162 152766 username hashtadani4 152766 mac 152766 bytes_out 0 152766 bytes_in 0 152766 station_ip 83.123.139.23 152766 port 593 152766 unique_id port 152766 remote_ip 10.8.0.182 152769 username barzegar 152769 mac 152769 bytes_out 0 152769 bytes_in 0 152769 station_ip 5.119.104.167 152769 port 290 152769 unique_id port 152769 remote_ip 10.8.1.174 152772 username hashtadani4 152772 mac 152772 bytes_out 0 152772 bytes_in 0 152772 station_ip 83.123.139.23 152772 port 596 152772 unique_id port 152772 remote_ip 10.8.0.182 152774 username hashtadani4 152774 mac 152774 bytes_out 0 152774 bytes_in 0 152774 station_ip 83.123.139.23 152774 port 603 152774 unique_id port 152774 remote_ip 10.8.0.182 152779 username hashtadani4 152779 mac 152779 bytes_out 0 152779 bytes_in 0 152779 station_ip 83.123.139.23 152779 port 603 152779 unique_id port 152779 remote_ip 10.8.0.182 152783 username hashtadani4 152783 mac 152783 bytes_out 0 152783 bytes_in 0 152783 station_ip 83.123.139.23 152783 port 557 152783 unique_id port 152783 remote_ip 10.8.0.182 152784 username hashtadani4 152784 mac 152784 bytes_out 0 152784 bytes_in 0 152784 station_ip 83.123.139.23 152784 port 557 152784 unique_id port 152784 remote_ip 10.8.0.182 152786 username hashtadani4 152786 mac 152786 bytes_out 0 152786 bytes_in 0 152786 station_ip 83.123.139.23 152786 port 557 152786 unique_id port 152786 remote_ip 10.8.0.182 152790 username houshang 152790 mac 152790 bytes_out 0 152790 bytes_in 0 152790 station_ip 5.120.130.115 152790 port 599 152790 unique_id port 152792 username hashtadani4 152792 mac 152792 bytes_out 0 152792 bytes_in 0 152792 station_ip 83.123.139.23 152792 port 290 152792 unique_id port 152792 remote_ip 10.8.1.142 152795 username hadibarzegar 152795 mac 152795 bytes_out 945234 152795 bytes_in 12848676 152795 station_ip 37.129.20.106 152795 port 596 152795 unique_id port 152795 remote_ip 10.8.0.154 152796 username morteza 152796 mac 152796 bytes_out 0 152796 bytes_in 0 152796 station_ip 83.122.214.197 152796 port 596 152775 port 594 152775 unique_id port 152775 remote_ip 10.8.0.238 152776 username hashtadani4 152776 mac 152776 bytes_out 0 152776 bytes_in 0 152776 station_ip 83.123.139.23 152776 port 290 152776 unique_id port 152776 remote_ip 10.8.1.142 152778 username hashtadani4 152778 mac 152778 bytes_out 0 152778 bytes_in 0 152778 station_ip 83.123.139.23 152778 port 290 152778 unique_id port 152778 remote_ip 10.8.1.142 152780 username hashtadani4 152780 mac 152780 bytes_out 0 152780 bytes_in 0 152780 station_ip 83.123.139.23 152780 port 604 152780 unique_id port 152780 remote_ip 10.8.0.182 152787 username forozandeh1 152787 mac 152787 bytes_out 123714 152787 bytes_in 445890 152787 station_ip 83.122.61.221 152787 port 603 152787 unique_id port 152787 remote_ip 10.8.0.130 152791 username malekpoir 152791 kill_reason Another user logged on this global unique id 152791 mac 152791 bytes_out 0 152791 bytes_in 0 152791 station_ip 5.119.173.175 152791 port 595 152791 unique_id port 152791 remote_ip 10.8.0.58 152794 username morteza 152794 mac 152794 bytes_out 11627 152794 bytes_in 32455 152794 station_ip 83.122.214.197 152794 port 557 152794 unique_id port 152794 remote_ip 10.8.0.46 152797 username zahra1101 152797 mac 152797 bytes_out 0 152797 bytes_in 0 152797 station_ip 5.120.144.104 152797 port 290 152797 unique_id port 152797 remote_ip 10.8.1.182 152799 username hadibarzegar 152799 mac 152799 bytes_out 0 152799 bytes_in 0 152799 station_ip 37.129.20.106 152799 port 557 152799 unique_id port 152799 remote_ip 10.8.0.154 152801 username barzegar 152801 mac 152801 bytes_out 0 152801 bytes_in 0 152801 station_ip 5.119.104.167 152801 port 292 152801 unique_id port 152801 remote_ip 10.8.1.174 152803 username zahra1101 152803 mac 152803 bytes_out 0 152803 bytes_in 0 152803 station_ip 5.120.144.104 152803 port 290 152803 unique_id port 152803 remote_ip 10.8.1.182 152804 username hashtadani4 152804 mac 152804 bytes_out 0 152804 bytes_in 0 152804 station_ip 83.123.139.23 152804 port 557 152804 unique_id port 152804 remote_ip 10.8.0.182 152806 username nilufarrajaei 152806 kill_reason Another user logged on this global unique id 152806 mac 152806 bytes_out 0 152806 bytes_in 0 152806 station_ip 37.129.79.90 152806 port 553 152806 unique_id port 152806 remote_ip 10.8.0.206 152807 username zahra1101 152807 mac 152807 bytes_out 0 152807 bytes_in 0 152807 station_ip 5.120.144.104 152807 port 557 152807 unique_id port 152807 remote_ip 10.8.0.162 152811 username zahra1101 152811 mac 152811 bytes_out 0 152811 bytes_in 0 152811 station_ip 5.120.144.104 152811 port 290 152811 unique_id port 152811 remote_ip 10.8.1.182 152815 username morteza 152815 mac 152815 bytes_out 0 152815 bytes_in 0 152815 station_ip 83.122.214.197 152815 port 557 152815 unique_id port 152815 remote_ip 10.8.0.46 152817 username zahra1101 152817 mac 152817 bytes_out 0 152817 bytes_in 0 152817 station_ip 5.120.144.104 152817 port 290 152817 unique_id port 152817 remote_ip 10.8.1.182 152818 username morteza 152818 mac 152818 bytes_out 0 152818 bytes_in 0 152818 station_ip 83.122.214.197 152818 port 557 152818 unique_id port 152818 remote_ip 10.8.0.46 152824 username hashtadani4 152824 mac 152824 bytes_out 0 152824 bytes_in 0 152824 station_ip 83.123.139.23 152824 port 557 152824 unique_id port 152824 remote_ip 10.8.0.182 152831 username morteza 152831 mac 152831 bytes_out 0 152831 bytes_in 0 152781 bytes_out 48350 152781 bytes_in 83112 152781 station_ip 83.122.214.197 152781 port 557 152781 unique_id port 152781 remote_ip 10.8.0.46 152782 username morteza 152782 mac 152782 bytes_out 0 152782 bytes_in 0 152782 station_ip 83.122.214.197 152782 port 604 152782 unique_id port 152782 remote_ip 10.8.0.46 152785 username godarzi 152785 mac 152785 bytes_out 0 152785 bytes_in 0 152785 station_ip 5.202.24.27 152785 port 597 152785 unique_id port 152788 username houshang 152788 kill_reason Another user logged on this global unique id 152788 mac 152788 bytes_out 0 152788 bytes_in 0 152788 station_ip 5.120.130.115 152788 port 599 152788 unique_id port 152788 remote_ip 10.8.0.22 152789 username morteza 152789 mac 152789 bytes_out 0 152789 bytes_in 0 152789 station_ip 83.122.214.197 152789 port 557 152789 unique_id port 152789 remote_ip 10.8.0.46 152793 username zahra1101 152793 mac 152793 bytes_out 1911888 152793 bytes_in 17562982 152793 station_ip 5.120.144.104 152793 port 593 152793 unique_id port 152793 remote_ip 10.8.0.162 152810 username zahra1101 152810 mac 152810 bytes_out 0 152810 bytes_in 0 152810 station_ip 5.120.144.104 152810 port 557 152810 unique_id port 152810 remote_ip 10.8.0.162 152813 username morteza 152813 mac 152813 bytes_out 0 152813 bytes_in 0 152813 station_ip 83.122.214.197 152813 port 599 152813 unique_id port 152813 remote_ip 10.8.0.46 152816 username hashtadani4 152816 mac 152816 bytes_out 0 152816 bytes_in 0 152816 station_ip 83.123.139.23 152816 port 599 152816 unique_id port 152816 remote_ip 10.8.0.182 152820 username zahra1101 152820 mac 152820 bytes_out 0 152820 bytes_in 0 152820 station_ip 5.120.144.104 152820 port 290 152820 unique_id port 152820 remote_ip 10.8.1.182 152821 username barzegar 152821 mac 152821 bytes_out 0 152821 bytes_in 0 152821 station_ip 5.119.104.167 152821 port 290 152821 unique_id port 152821 remote_ip 10.8.1.174 152822 username hashtadani4 152822 mac 152822 bytes_out 0 152822 bytes_in 0 152822 station_ip 83.123.139.23 152822 port 557 152822 unique_id port 152822 remote_ip 10.8.0.182 152823 username morteza 152823 mac 152823 bytes_out 0 152823 bytes_in 0 152823 station_ip 83.122.214.197 152823 port 290 152823 unique_id port 152823 remote_ip 10.8.1.62 152825 username morteza 152825 kill_reason Maximum check online fails reached 152825 mac 152825 bytes_out 0 152825 bytes_in 0 152825 station_ip 83.122.214.197 152825 port 599 152825 unique_id port 152827 username hashtadani4 152827 mac 152827 bytes_out 0 152827 bytes_in 0 152827 station_ip 83.123.139.23 152827 port 603 152827 unique_id port 152827 remote_ip 10.8.0.182 152829 username hashtadani4 152829 mac 152829 bytes_out 0 152829 bytes_in 0 152829 station_ip 83.123.139.23 152829 port 603 152829 unique_id port 152829 remote_ip 10.8.0.182 152830 username forozandeh1 152830 mac 152830 bytes_out 183295 152830 bytes_in 532723 152830 station_ip 37.129.208.36 152830 port 557 152830 unique_id port 152830 remote_ip 10.8.0.130 152832 username hashtadani4 152832 mac 152832 bytes_out 9631 152832 bytes_in 41253 152832 station_ip 83.123.139.23 152832 port 603 152832 unique_id port 152832 remote_ip 10.8.0.182 152833 username zahra1101 152833 mac 152833 bytes_out 0 152833 bytes_in 0 152833 station_ip 5.120.144.104 152833 port 292 152833 unique_id port 152833 remote_ip 10.8.1.182 152835 username kamali2 152835 mac 152835 bytes_out 0 152796 unique_id port 152796 remote_ip 10.8.0.46 152798 username zahra1101 152798 mac 152798 bytes_out 0 152798 bytes_in 0 152798 station_ip 5.120.144.104 152798 port 290 152798 unique_id port 152798 remote_ip 10.8.1.182 152800 username hashtadani4 152800 mac 152800 bytes_out 0 152800 bytes_in 0 152800 station_ip 83.123.139.23 152800 port 293 152800 unique_id port 152800 remote_ip 10.8.1.142 152802 username hashtadani4 152802 mac 152802 bytes_out 0 152802 bytes_in 0 152802 station_ip 83.123.139.23 152802 port 292 152802 unique_id port 152802 remote_ip 10.8.1.142 152805 username zahra1101 152805 mac 152805 bytes_out 0 152805 bytes_in 0 152805 station_ip 5.120.144.104 152805 port 290 152805 unique_id port 152805 remote_ip 10.8.1.182 152808 username barzegar 152808 mac 152808 bytes_out 0 152808 bytes_in 0 152808 station_ip 5.119.104.167 152808 port 290 152808 unique_id port 152808 remote_ip 10.8.1.174 152809 username morteza 152809 mac 152809 bytes_out 0 152809 bytes_in 0 152809 station_ip 83.122.214.197 152809 port 599 152809 unique_id port 152809 remote_ip 10.8.0.46 152812 username zahra1101 152812 mac 152812 bytes_out 1636 152812 bytes_in 5129 152812 station_ip 5.120.144.104 152812 port 599 152812 unique_id port 152812 remote_ip 10.8.0.162 152814 username hashtadani4 152814 mac 152814 bytes_out 0 152814 bytes_in 0 152814 station_ip 83.123.139.23 152814 port 557 152814 unique_id port 152814 remote_ip 10.8.0.182 152819 username hashtadani4 152819 mac 152819 bytes_out 0 152819 bytes_in 0 152819 station_ip 83.123.139.23 152819 port 557 152819 unique_id port 152819 remote_ip 10.8.0.182 152826 username hashtadani4 152826 mac 152826 bytes_out 0 152826 bytes_in 0 152826 station_ip 83.123.139.23 152826 port 557 152826 unique_id port 152826 remote_ip 10.8.0.182 152828 username morteza 152828 mac 152828 bytes_out 0 152828 bytes_in 0 152828 station_ip 83.122.214.197 152828 port 290 152828 unique_id port 152828 remote_ip 10.8.1.62 152837 username godarzi 152837 mac 152837 bytes_out 254809 152837 bytes_in 1611191 152837 station_ip 5.202.24.27 152837 port 593 152837 unique_id port 152837 remote_ip 10.8.0.174 152840 username morteza 152840 mac 152840 bytes_out 0 152840 bytes_in 0 152840 station_ip 83.122.214.197 152840 port 593 152840 unique_id port 152840 remote_ip 10.8.0.46 152846 username zahra1101 152846 mac 152846 bytes_out 0 152846 bytes_in 0 152846 station_ip 5.120.144.104 152846 port 593 152846 unique_id port 152846 remote_ip 10.8.0.162 152849 username zahra1101 152849 mac 152849 bytes_out 0 152849 bytes_in 0 152849 station_ip 5.120.144.104 152849 port 597 152849 unique_id port 152849 remote_ip 10.8.0.162 152857 username meysam 152857 mac 152857 bytes_out 0 152857 bytes_in 0 152857 station_ip 188.158.49.21 152857 port 557 152857 unique_id port 152859 username hashtadani4 152859 kill_reason Maximum check online fails reached 152859 mac 152859 bytes_out 0 152859 bytes_in 0 152859 station_ip 83.123.139.23 152859 port 290 152859 unique_id port 152862 username morteza 152862 mac 152862 bytes_out 0 152862 bytes_in 0 152862 station_ip 83.122.214.197 152862 port 557 152862 unique_id port 152862 remote_ip 10.8.0.46 152864 username barzegar 152864 mac 152864 bytes_out 0 152864 bytes_in 0 152864 station_ip 5.119.104.167 152864 port 593 152864 unique_id port 152864 remote_ip 10.8.0.234 152870 username hashtadani4 152831 station_ip 83.122.214.197 152831 port 290 152831 unique_id port 152831 remote_ip 10.8.1.62 152834 username zahra1101 152834 mac 152834 bytes_out 0 152834 bytes_in 0 152834 station_ip 5.120.144.104 152834 port 292 152834 unique_id port 152834 remote_ip 10.8.1.182 152836 username kamali2 152836 mac 152836 bytes_out 0 152836 bytes_in 0 152836 station_ip 5.119.250.246 152836 port 603 152836 unique_id port 152836 remote_ip 10.8.0.214 152838 username zahra1101 152838 mac 152838 bytes_out 0 152838 bytes_in 0 152838 station_ip 5.120.144.104 152838 port 292 152838 unique_id port 152838 remote_ip 10.8.1.182 152839 username zahra1101 152839 mac 152839 bytes_out 0 152839 bytes_in 0 152839 station_ip 5.120.144.104 152839 port 292 152839 unique_id port 152839 remote_ip 10.8.1.182 152841 username barzegar 152841 mac 152841 bytes_out 0 152841 bytes_in 0 152841 station_ip 5.119.104.167 152841 port 292 152841 unique_id port 152841 remote_ip 10.8.1.174 152843 username zahra1101 152843 mac 152843 bytes_out 0 152843 bytes_in 0 152843 station_ip 5.120.144.104 152843 port 593 152843 unique_id port 152843 remote_ip 10.8.0.162 152845 username zahra1101 152845 mac 152845 bytes_out 0 152845 bytes_in 0 152845 station_ip 5.120.144.104 152845 port 593 152845 unique_id port 152845 remote_ip 10.8.0.162 152847 username meysam 152847 kill_reason Another user logged on this global unique id 152847 mac 152847 bytes_out 0 152847 bytes_in 0 152847 station_ip 188.158.49.21 152847 port 557 152847 unique_id port 152847 remote_ip 10.8.0.110 152851 username zahra1101 152851 mac 152851 bytes_out 0 152851 bytes_in 0 152851 station_ip 5.120.144.104 152851 port 597 152851 unique_id port 152851 remote_ip 10.8.0.162 152853 username hashtadani4 152853 mac 152853 bytes_out 945923 152853 bytes_in 13124442 152853 station_ip 83.123.139.23 152853 port 290 152853 unique_id port 152853 remote_ip 10.8.1.142 152861 username hashtadani4 152861 mac 152861 bytes_out 0 152861 bytes_in 0 152861 station_ip 83.123.139.23 152861 port 557 152861 unique_id port 152861 remote_ip 10.8.0.182 152863 username morteza 152863 mac 152863 bytes_out 0 152863 bytes_in 0 152863 station_ip 83.122.214.197 152863 port 597 152863 unique_id port 152863 remote_ip 10.8.0.46 152865 username morteza 152865 mac 152865 bytes_out 0 152865 bytes_in 0 152865 station_ip 83.122.214.197 152865 port 597 152865 unique_id port 152865 remote_ip 10.8.0.46 152868 username morteza 152868 kill_reason Another user logged on this global unique id 152868 mac 152868 bytes_out 0 152868 bytes_in 0 152868 station_ip 83.122.214.197 152868 port 293 152868 unique_id port 152869 username hashtadani4 152869 mac 152869 bytes_out 0 152869 bytes_in 0 152869 station_ip 83.123.139.23 152869 port 293 152869 unique_id port 152869 remote_ip 10.8.1.142 152873 username hashtadani4 152873 mac 152873 bytes_out 0 152873 bytes_in 0 152873 station_ip 83.123.139.23 152873 port 593 152873 unique_id port 152873 remote_ip 10.8.0.182 152875 username hashtadani4 152875 mac 152875 bytes_out 0 152875 bytes_in 0 152875 station_ip 83.123.139.23 152875 port 591 152875 unique_id port 152875 remote_ip 10.8.0.182 152877 username barzegar 152877 mac 152877 bytes_out 0 152877 bytes_in 0 152877 station_ip 5.119.104.167 152877 port 597 152877 unique_id port 152877 remote_ip 10.8.0.234 152881 username hashtadani4 152881 mac 152881 bytes_out 0 152881 bytes_in 0 152835 bytes_in 0 152835 station_ip 5.119.250.246 152835 port 603 152835 unique_id port 152835 remote_ip 10.8.0.214 152842 username mohammadjavad 152842 mac 152842 bytes_out 181285 152842 bytes_in 306994 152842 station_ip 37.27.54.116 152842 port 597 152842 unique_id port 152842 remote_ip 10.8.0.142 152844 username zahra1101 152844 mac 152844 bytes_out 0 152844 bytes_in 0 152844 station_ip 5.120.144.104 152844 port 597 152844 unique_id port 152844 remote_ip 10.8.0.162 152848 username morteza 152848 mac 152848 bytes_out 0 152848 bytes_in 0 152848 station_ip 83.122.214.197 152848 port 292 152848 unique_id port 152848 remote_ip 10.8.1.62 152850 username khalili 152850 kill_reason Another user logged on this global unique id 152850 mac 152850 bytes_out 0 152850 bytes_in 0 152850 station_ip 5.119.205.43 152850 port 596 152850 unique_id port 152850 remote_ip 10.8.0.86 152852 username morteza 152852 mac 152852 bytes_out 0 152852 bytes_in 0 152852 station_ip 83.122.214.197 152852 port 597 152852 unique_id port 152852 remote_ip 10.8.0.46 152854 username morteza 152854 mac 152854 bytes_out 0 152854 bytes_in 0 152854 station_ip 83.122.214.197 152854 port 597 152854 unique_id port 152854 remote_ip 10.8.0.46 152855 username hashtadani4 152855 mac 152855 bytes_out 0 152855 bytes_in 0 152855 station_ip 83.123.139.23 152855 port 597 152855 unique_id port 152855 remote_ip 10.8.0.182 152856 username morteza 152856 mac 152856 bytes_out 0 152856 bytes_in 0 152856 station_ip 83.122.214.197 152856 port 597 152856 unique_id port 152856 remote_ip 10.8.0.46 152858 username hashtadani4 152858 mac 152858 bytes_out 0 152858 bytes_in 0 152858 station_ip 83.123.139.23 152858 port 597 152858 unique_id port 152858 remote_ip 10.8.0.182 152860 username vanila 152860 mac 152860 bytes_out 259383 152860 bytes_in 1096063 152860 station_ip 83.122.175.228 152860 port 593 152860 unique_id port 152860 remote_ip 10.8.0.178 152866 username morteza 152866 kill_reason Another user logged on this global unique id 152866 mac 152866 bytes_out 0 152866 bytes_in 0 152866 station_ip 83.122.214.197 152866 port 293 152866 unique_id port 152867 username houshang 152867 kill_reason Another user logged on this global unique id 152867 mac 152867 bytes_out 0 152867 bytes_in 0 152867 station_ip 5.120.91.163 152867 port 557 152867 unique_id port 152867 remote_ip 10.8.0.22 152874 username hashtadani4 152874 mac 152874 bytes_out 0 152874 bytes_in 0 152874 station_ip 83.123.139.23 152874 port 591 152874 unique_id port 152874 remote_ip 10.8.0.182 152876 username hashtadani4 152876 mac 152876 bytes_out 0 152876 bytes_in 0 152876 station_ip 83.123.139.23 152876 port 293 152876 unique_id port 152876 remote_ip 10.8.1.142 152879 username saeed9658 152879 mac 152879 bytes_out 1548372 152879 bytes_in 14632792 152879 station_ip 5.119.191.217 152879 port 292 152879 unique_id port 152879 remote_ip 10.8.1.210 152880 username kalantary 152880 mac 152880 bytes_out 0 152880 bytes_in 0 152880 station_ip 37.129.193.153 152880 port 604 152880 unique_id port 152880 remote_ip 10.8.0.98 152884 username godarzi 152884 mac 152884 bytes_out 0 152884 bytes_in 0 152884 station_ip 5.119.231.192 152884 port 593 152884 unique_id port 152884 remote_ip 10.8.0.174 152885 username saeed9658 152885 mac 152885 bytes_out 85544 152885 bytes_in 399281 152885 station_ip 5.119.191.217 152885 port 293 152885 unique_id port 152885 remote_ip 10.8.1.210 152887 username zahra1101 152870 mac 152870 bytes_out 0 152870 bytes_in 0 152870 station_ip 83.123.139.23 152870 port 593 152870 unique_id port 152870 remote_ip 10.8.0.182 152871 username houshang 152871 mac 152871 bytes_out 0 152871 bytes_in 0 152871 station_ip 5.120.91.163 152871 port 557 152871 unique_id port 152872 username alipour 152872 mac 152872 bytes_out 0 152872 bytes_in 0 152872 station_ip 83.123.221.165 152872 port 591 152872 unique_id port 152878 username hashtadani4 152878 mac 152878 bytes_out 0 152878 bytes_in 0 152878 station_ip 83.123.139.23 152878 port 597 152878 unique_id port 152878 remote_ip 10.8.0.182 152882 username zahra1101 152882 mac 152882 bytes_out 0 152882 bytes_in 0 152882 station_ip 5.120.144.104 152882 port 603 152882 unique_id port 152882 remote_ip 10.8.0.162 152886 username barzegar 152886 mac 152886 bytes_out 0 152886 bytes_in 0 152886 station_ip 5.119.104.167 152886 port 593 152886 unique_id port 152886 remote_ip 10.8.0.234 152888 username yaghobi 152888 mac 152888 bytes_out 0 152888 bytes_in 0 152888 station_ip 113.203.10.168 152888 port 591 152888 unique_id port 152888 remote_ip 10.8.0.198 152892 username saeed9658 152892 kill_reason Maximum check online fails reached 152892 mac 152892 bytes_out 0 152892 bytes_in 0 152892 station_ip 5.119.191.217 152892 port 293 152892 unique_id port 152894 username hashtadani4 152894 mac 152894 bytes_out 0 152894 bytes_in 0 152894 station_ip 113.203.123.206 152894 port 591 152894 unique_id port 152894 remote_ip 10.8.0.182 152895 username alipour 152895 mac 152895 bytes_out 0 152895 bytes_in 0 152895 station_ip 83.123.221.165 152895 port 557 152895 unique_id port 152895 remote_ip 10.8.0.102 152897 username vanila 152897 mac 152897 bytes_out 0 152897 bytes_in 0 152897 station_ip 83.122.175.228 152897 port 597 152897 unique_id port 152897 remote_ip 10.8.0.178 152898 username alipour 152898 mac 152898 bytes_out 32558 152898 bytes_in 80972 152898 station_ip 83.123.221.165 152898 port 295 152898 unique_id port 152898 remote_ip 10.8.1.50 152899 username milan 152899 kill_reason Another user logged on this global unique id 152899 mac 152899 bytes_out 0 152899 bytes_in 0 152899 station_ip 5.120.37.194 152899 port 598 152899 unique_id port 152899 remote_ip 10.8.0.218 152900 username saeed9658 152900 mac 152900 bytes_out 0 152900 bytes_in 0 152900 station_ip 5.119.191.217 152900 port 296 152900 unique_id port 152900 remote_ip 10.8.1.210 152904 username hashtadani4 152904 mac 152904 bytes_out 0 152904 bytes_in 0 152904 station_ip 113.203.123.206 152904 port 591 152904 unique_id port 152904 remote_ip 10.8.0.182 152906 username zahra1101 152906 mac 152906 bytes_out 0 152906 bytes_in 0 152906 station_ip 5.120.144.104 152906 port 591 152906 unique_id port 152906 remote_ip 10.8.0.162 152908 username alipour 152908 mac 152908 bytes_out 0 152908 bytes_in 0 152908 station_ip 113.203.59.152 152908 port 597 152908 unique_id port 152908 remote_ip 10.8.0.102 152911 username saeed9658 152911 mac 152911 bytes_out 0 152911 bytes_in 0 152911 station_ip 5.119.191.217 152911 port 597 152911 unique_id port 152911 remote_ip 10.8.0.62 152913 username hashtadani4 152913 mac 152913 bytes_out 0 152913 bytes_in 0 152913 station_ip 113.203.123.206 152913 port 593 152913 unique_id port 152913 remote_ip 10.8.0.182 152914 username saeed9658 152914 mac 152914 bytes_out 0 152914 bytes_in 0 152881 station_ip 113.203.123.206 152881 port 604 152881 unique_id port 152881 remote_ip 10.8.0.182 152883 username zahra1101 152883 mac 152883 bytes_out 0 152883 bytes_in 0 152883 station_ip 5.120.144.104 152883 port 604 152883 unique_id port 152883 remote_ip 10.8.0.162 152889 username nilufarrajaei 152889 mac 152889 bytes_out 0 152889 bytes_in 0 152889 station_ip 37.129.79.90 152889 port 553 152889 unique_id port 152890 username barzegar 152890 mac 152890 bytes_out 0 152890 bytes_in 0 152890 station_ip 5.119.104.167 152890 port 593 152890 unique_id port 152890 remote_ip 10.8.0.234 152891 username zahra1101 152891 mac 152891 bytes_out 0 152891 bytes_in 0 152891 station_ip 5.120.144.104 152891 port 294 152891 unique_id port 152891 remote_ip 10.8.1.182 152903 username barzegar 152903 mac 152903 bytes_out 0 152903 bytes_in 0 152903 station_ip 5.119.104.167 152903 port 593 152903 unique_id port 152903 remote_ip 10.8.0.234 152905 username mahdiyehalizadeh 152905 mac 152905 bytes_out 881605 152905 bytes_in 3479641 152905 station_ip 5.119.146.153 152905 port 292 152905 unique_id port 152905 remote_ip 10.8.1.110 152912 username mohammadjavad 152912 mac 152912 bytes_out 0 152912 bytes_in 0 152912 station_ip 37.27.54.116 152912 port 557 152912 unique_id port 152912 remote_ip 10.8.0.142 152916 username saeed9658 152916 mac 152916 bytes_out 0 152916 bytes_in 0 152916 station_ip 5.119.191.217 152916 port 593 152916 unique_id port 152916 remote_ip 10.8.0.62 152919 username nilufarrajaei 152919 mac 152919 bytes_out 0 152919 bytes_in 0 152919 station_ip 37.129.79.90 152919 port 553 152919 unique_id port 152919 remote_ip 10.8.0.206 152922 username houshang 152922 mac 152922 bytes_out 0 152922 bytes_in 0 152922 station_ip 5.120.91.163 152922 port 605 152922 unique_id port 152922 remote_ip 10.8.0.22 152925 username houshang 152925 mac 152925 bytes_out 0 152925 bytes_in 0 152925 station_ip 5.120.91.163 152925 port 553 152925 unique_id port 152925 remote_ip 10.8.0.22 152926 username hashtadani4 152926 mac 152926 bytes_out 0 152926 bytes_in 0 152926 station_ip 5.202.0.210 152926 port 553 152926 unique_id port 152926 remote_ip 10.8.0.182 152927 username hashtadani4 152927 mac 152927 bytes_out 0 152927 bytes_in 0 152927 station_ip 5.202.0.210 152927 port 553 152927 unique_id port 152927 remote_ip 10.8.0.182 152928 username zahra1101 152928 mac 152928 bytes_out 9323836 152928 bytes_in 7054862 152928 station_ip 5.120.144.104 152928 port 292 152928 unique_id port 152928 remote_ip 10.8.1.182 152932 username hashtadani4 152932 mac 152932 bytes_out 0 152932 bytes_in 0 152932 station_ip 83.122.188.26 152932 port 557 152932 unique_id port 152932 remote_ip 10.8.0.182 152937 username saeed9658 152937 mac 152937 bytes_out 0 152937 bytes_in 0 152937 station_ip 5.119.191.217 152937 port 292 152937 unique_id port 152937 remote_ip 10.8.1.210 152939 username zahra1101 152939 mac 152939 bytes_out 1446435 152939 bytes_in 14799566 152939 station_ip 5.120.144.104 152939 port 553 152939 unique_id port 152939 remote_ip 10.8.0.162 152944 username zahra1101 152944 mac 152944 bytes_out 0 152944 bytes_in 0 152944 station_ip 5.120.144.104 152944 port 557 152944 unique_id port 152944 remote_ip 10.8.0.162 152946 username zahra1101 152946 mac 152946 bytes_out 48528 152946 bytes_in 324454 152946 station_ip 5.120.144.104 152946 port 292 152946 unique_id port 152887 mac 152887 bytes_out 71578 152887 bytes_in 309888 152887 station_ip 5.120.144.104 152887 port 603 152887 unique_id port 152887 remote_ip 10.8.0.162 152893 username zahra1101 152893 mac 152893 bytes_out 0 152893 bytes_in 0 152893 station_ip 5.120.144.104 152893 port 591 152893 unique_id port 152893 remote_ip 10.8.0.162 152896 username kordestani 152896 mac 152896 bytes_out 0 152896 bytes_in 0 152896 station_ip 151.235.111.52 152896 port 593 152896 unique_id port 152896 remote_ip 10.8.0.134 152901 username alipour 152901 mac 152901 bytes_out 10430 152901 bytes_in 16292 152901 station_ip 83.123.221.165 152901 port 295 152901 unique_id port 152901 remote_ip 10.8.1.50 152902 username zahra1101 152902 mac 152902 bytes_out 247475 152902 bytes_in 510618 152902 station_ip 5.120.144.104 152902 port 294 152902 unique_id port 152902 remote_ip 10.8.1.182 152907 username zahra1101 152907 mac 152907 bytes_out 64013 152907 bytes_in 107717 152907 station_ip 5.120.144.104 152907 port 591 152907 unique_id port 152907 remote_ip 10.8.0.162 152909 username zahra1101 152909 mac 152909 bytes_out 20119 152909 bytes_in 103118 152909 station_ip 5.120.144.104 152909 port 292 152909 unique_id port 152909 remote_ip 10.8.1.182 152910 username barzegar 152910 mac 152910 bytes_out 0 152910 bytes_in 0 152910 station_ip 5.119.104.167 152910 port 292 152910 unique_id port 152910 remote_ip 10.8.1.174 152917 username abravesh 152917 unique_id port 152917 terminate_cause Lost-Carrier 152917 bytes_out 1351324 152917 bytes_in 18313229 152917 station_ip 5.119.146.115 152917 port 15731150 152917 nas_port_type Virtual 152917 remote_ip 5.5.5.156 152920 username saeed9658 152920 mac 152920 bytes_out 0 152920 bytes_in 0 152920 station_ip 5.119.191.217 152920 port 553 152920 unique_id port 152920 remote_ip 10.8.0.62 152921 username hashtadani4 152921 mac 152921 bytes_out 0 152921 bytes_in 0 152921 station_ip 5.202.0.210 152921 port 557 152921 unique_id port 152921 remote_ip 10.8.0.182 152923 username saeed9658 152923 mac 152923 bytes_out 0 152923 bytes_in 0 152923 station_ip 5.119.191.217 152923 port 557 152923 unique_id port 152923 remote_ip 10.8.0.62 152929 username hashtadani4 152929 mac 152929 bytes_out 0 152929 bytes_in 0 152929 station_ip 83.122.188.26 152929 port 292 152929 unique_id port 152929 remote_ip 10.8.1.142 152931 username barzegar 152931 mac 152931 bytes_out 2592 152931 bytes_in 5626 152931 station_ip 5.119.104.167 152931 port 294 152931 unique_id port 152931 remote_ip 10.8.1.174 152935 username saeed9658 152935 mac 152935 bytes_out 0 152935 bytes_in 0 152935 station_ip 5.119.191.217 152935 port 557 152935 unique_id port 152935 remote_ip 10.8.0.62 152936 username saeed9658 152936 mac 152936 bytes_out 0 152936 bytes_in 0 152936 station_ip 5.119.191.217 152936 port 557 152936 unique_id port 152936 remote_ip 10.8.0.62 152938 username saeed9658 152938 mac 152938 bytes_out 0 152938 bytes_in 0 152938 station_ip 5.119.191.217 152938 port 292 152938 unique_id port 152938 remote_ip 10.8.1.210 152940 username barzegar 152940 mac 152940 bytes_out 0 152940 bytes_in 0 152940 station_ip 5.119.104.167 152940 port 292 152940 unique_id port 152940 remote_ip 10.8.1.174 152941 username aminvpn 152941 mac 152941 bytes_out 3428981 152941 bytes_in 49043326 152941 station_ip 83.122.223.194 152941 port 584 152941 unique_id port 152941 remote_ip 10.8.0.14 152942 username zahra1101 152914 station_ip 5.119.191.217 152914 port 593 152914 unique_id port 152914 remote_ip 10.8.0.62 152915 username saeed9658 152915 mac 152915 bytes_out 0 152915 bytes_in 0 152915 station_ip 5.119.191.217 152915 port 593 152915 unique_id port 152915 remote_ip 10.8.0.62 152918 username zahra1101 152918 mac 152918 bytes_out 0 152918 bytes_in 0 152918 station_ip 5.120.144.104 152918 port 591 152918 unique_id port 152918 remote_ip 10.8.0.162 152924 username barzegar 152924 mac 152924 bytes_out 0 152924 bytes_in 0 152924 station_ip 5.119.104.167 152924 port 294 152924 unique_id port 152924 remote_ip 10.8.1.174 152930 username saeed9658 152930 mac 152930 bytes_out 0 152930 bytes_in 0 152930 station_ip 5.119.191.217 152930 port 557 152930 unique_id port 152930 remote_ip 10.8.0.62 152933 username hashtadani4 152933 mac 152933 bytes_out 0 152933 bytes_in 0 152933 station_ip 83.122.188.26 152933 port 557 152933 unique_id port 152933 remote_ip 10.8.0.182 152934 username hashtadani4 152934 mac 152934 bytes_out 0 152934 bytes_in 0 152934 station_ip 5.202.0.210 152934 port 557 152934 unique_id port 152934 remote_ip 10.8.0.182 152948 username hashtadani4 152948 mac 152948 bytes_out 0 152948 bytes_in 0 152948 station_ip 5.202.0.210 152948 port 584 152948 unique_id port 152948 remote_ip 10.8.0.182 152949 username saeed9658 152949 mac 152949 bytes_out 0 152949 bytes_in 0 152949 station_ip 5.119.191.217 152949 port 591 152949 unique_id port 152949 remote_ip 10.8.0.62 152957 username hashtadani4 152957 mac 152957 bytes_out 0 152957 bytes_in 0 152957 station_ip 83.122.136.114 152957 port 604 152957 unique_id port 152957 remote_ip 10.8.0.182 152958 username hashtadani4 152958 kill_reason Maximum number of concurrent logins reached 152958 mac 152958 bytes_out 0 152958 bytes_in 0 152958 station_ip 83.122.136.114 152958 port 292 152958 unique_id port 152960 username hashtadani4 152960 kill_reason Maximum check online fails reached 152960 mac 152960 bytes_out 0 152960 bytes_in 0 152960 station_ip 83.122.136.114 152960 port 593 152960 unique_id port 152964 username saeed9658 152964 mac 152964 bytes_out 0 152964 bytes_in 0 152964 station_ip 5.119.191.217 152964 port 295 152964 unique_id port 152964 remote_ip 10.8.1.210 152967 username milan 152967 mac 152967 bytes_out 0 152967 bytes_in 0 152967 station_ip 5.120.37.194 152967 port 598 152967 unique_id port 152969 username vanila 152969 mac 152969 bytes_out 0 152969 bytes_in 0 152969 station_ip 83.122.175.228 152969 port 591 152969 unique_id port 152969 remote_ip 10.8.0.178 152972 username mostafa_es78 152972 unique_id port 152972 terminate_cause User-Request 152972 bytes_out 337822 152972 bytes_in 2743077 152972 station_ip 5.125.9.79 152972 port 15731154 152972 nas_port_type Virtual 152972 remote_ip 5.5.5.92 152974 username aminvpn 152974 unique_id port 152974 terminate_cause User-Request 152974 bytes_out 2711526 152974 bytes_in 69430705 152974 station_ip 31.57.129.178 152974 port 15731153 152974 nas_port_type Virtual 152974 remote_ip 5.5.5.23 152975 username mohammadjavad 152975 mac 152975 bytes_out 0 152975 bytes_in 0 152975 station_ip 83.122.131.102 152975 port 591 152975 unique_id port 152975 remote_ip 10.8.0.142 152980 username saeed9658 152980 mac 152980 bytes_out 0 152980 bytes_in 0 152980 station_ip 5.119.191.217 152980 port 295 152980 unique_id port 152980 remote_ip 10.8.1.210 152994 username barzegar 152994 mac 152994 bytes_out 0 152994 bytes_in 0 152942 mac 152942 bytes_out 0 152942 bytes_in 0 152942 station_ip 5.120.144.104 152942 port 557 152942 unique_id port 152942 remote_ip 10.8.0.162 152943 username zahra1101 152943 mac 152943 bytes_out 0 152943 bytes_in 0 152943 station_ip 5.120.144.104 152943 port 292 152943 unique_id port 152943 remote_ip 10.8.1.182 152945 username mostafa_es78 152945 unique_id port 152945 terminate_cause Lost-Carrier 152945 bytes_out 173182 152945 bytes_in 604056 152945 station_ip 5.125.18.199 152945 port 15731151 152945 nas_port_type Virtual 152945 remote_ip 5.5.5.3 152947 username barzegar 152947 mac 152947 bytes_out 0 152947 bytes_in 0 152947 station_ip 5.119.104.167 152947 port 292 152947 unique_id port 152947 remote_ip 10.8.1.174 152950 username meysam 152950 kill_reason Another user logged on this global unique id 152950 mac 152950 bytes_out 0 152950 bytes_in 0 152950 station_ip 188.158.49.21 152950 port 557 152950 unique_id port 152950 remote_ip 10.8.0.110 152953 username zahra1101 152953 mac 152953 bytes_out 0 152953 bytes_in 0 152953 station_ip 5.120.144.104 152953 port 591 152953 unique_id port 152953 remote_ip 10.8.0.162 152955 username hashtadani4 152955 mac 152955 bytes_out 0 152955 bytes_in 0 152955 station_ip 83.122.136.114 152955 port 597 152955 unique_id port 152955 remote_ip 10.8.0.182 152959 username zahra1101 152959 mac 152959 bytes_out 39265 152959 bytes_in 64465 152959 station_ip 5.120.144.104 152959 port 591 152959 unique_id port 152959 remote_ip 10.8.0.162 152961 username hashtadani4 152961 kill_reason Maximum check online fails reached 152961 mac 152961 bytes_out 0 152961 bytes_in 0 152961 station_ip 83.122.136.114 152961 port 604 152961 unique_id port 152962 username saeed9658 152962 mac 152962 bytes_out 0 152962 bytes_in 0 152962 station_ip 5.119.191.217 152962 port 605 152962 unique_id port 152962 remote_ip 10.8.0.62 152968 username mehdizare 152968 mac 152968 bytes_out 0 152968 bytes_in 0 152968 station_ip 5.120.191.154 152968 port 597 152968 unique_id port 152968 remote_ip 10.8.0.90 152970 username kordestani 152970 mac 152970 bytes_out 0 152970 bytes_in 0 152970 station_ip 151.235.111.52 152970 port 603 152970 unique_id port 152970 remote_ip 10.8.0.134 152971 username mehdizare 152971 mac 152971 bytes_out 718827 152971 bytes_in 11642117 152971 station_ip 5.120.191.154 152971 port 598 152971 unique_id port 152971 remote_ip 10.8.0.90 152973 username barzegar 152973 mac 152973 bytes_out 0 152973 bytes_in 0 152973 station_ip 5.119.104.167 152973 port 598 152973 unique_id port 152973 remote_ip 10.8.0.234 152979 username barzegar 152979 mac 152979 bytes_out 213600 152979 bytes_in 24851 152979 station_ip 5.119.104.167 152979 port 598 152979 unique_id port 152979 remote_ip 10.8.0.234 152981 username farhad2 152981 mac 152981 bytes_out 0 152981 bytes_in 0 152981 station_ip 5.119.251.136 152981 port 297 152981 unique_id port 152981 remote_ip 10.8.1.222 152982 username meysam 152982 mac 152982 bytes_out 0 152982 bytes_in 0 152982 station_ip 188.158.49.21 152982 port 557 152982 unique_id port 152984 username godarzi 152984 mac 152984 bytes_out 865039 152984 bytes_in 11510576 152984 station_ip 5.119.231.192 152984 port 598 152984 unique_id port 152984 remote_ip 10.8.0.174 152987 username vanila 152987 mac 152987 bytes_out 0 152987 bytes_in 0 152987 station_ip 83.122.175.228 152987 port 591 152987 unique_id port 152987 remote_ip 10.8.0.178 152946 remote_ip 10.8.1.182 152951 username saeed9658 152951 mac 152951 bytes_out 0 152951 bytes_in 0 152951 station_ip 5.119.191.217 152951 port 292 152951 unique_id port 152951 remote_ip 10.8.1.210 152952 username hashtadani4 152952 mac 152952 bytes_out 0 152952 bytes_in 0 152952 station_ip 5.202.0.210 152952 port 593 152952 unique_id port 152952 remote_ip 10.8.0.182 152954 username saeed9658 152954 mac 152954 bytes_out 0 152954 bytes_in 0 152954 station_ip 5.119.191.217 152954 port 593 152954 unique_id port 152954 remote_ip 10.8.0.62 152956 username hashtadani4 152956 mac 152956 bytes_out 0 152956 bytes_in 0 152956 station_ip 83.122.136.114 152956 port 593 152956 unique_id port 152956 remote_ip 10.8.0.182 152963 username saeed9658 152963 kill_reason Maximum check online fails reached 152963 mac 152963 bytes_out 0 152963 bytes_in 0 152963 station_ip 5.119.191.217 152963 port 294 152963 unique_id port 152965 username barzegar 152965 mac 152965 bytes_out 0 152965 bytes_in 0 152965 station_ip 5.119.104.167 152965 port 296 152965 unique_id port 152965 remote_ip 10.8.1.174 152966 username meysam 152966 kill_reason Another user logged on this global unique id 152966 mac 152966 bytes_out 0 152966 bytes_in 0 152966 station_ip 188.158.49.21 152966 port 557 152966 unique_id port 152976 username vanila 152976 mac 152976 bytes_out 262188 152976 bytes_in 2072075 152976 station_ip 83.122.175.228 152976 port 603 152976 unique_id port 152976 remote_ip 10.8.0.178 152977 username malekpoir 152977 kill_reason Another user logged on this global unique id 152977 mac 152977 bytes_out 0 152977 bytes_in 0 152977 station_ip 5.119.173.175 152977 port 595 152977 unique_id port 152978 username farhad2 152978 mac 152978 bytes_out 0 152978 bytes_in 0 152978 station_ip 5.119.251.136 152978 port 591 152978 unique_id port 152978 remote_ip 10.8.0.190 152983 username barzegar 152983 mac 152983 bytes_out 0 152983 bytes_in 0 152983 station_ip 5.119.104.167 152983 port 557 152983 unique_id port 152983 remote_ip 10.8.0.234 152985 username farhad2 152985 mac 152985 bytes_out 514023 152985 bytes_in 3211906 152985 station_ip 5.119.251.136 152985 port 295 152985 unique_id port 152985 remote_ip 10.8.1.222 152986 username mehdizare 152986 mac 152986 bytes_out 2489321 152986 bytes_in 42932801 152986 station_ip 5.120.191.154 152986 port 597 152986 unique_id port 152986 remote_ip 10.8.0.90 152988 username farhad2 152988 mac 152988 bytes_out 0 152988 bytes_in 0 152988 station_ip 5.119.251.136 152988 port 295 152988 unique_id port 152988 remote_ip 10.8.1.222 152989 username barzegar 152989 mac 152989 bytes_out 0 152989 bytes_in 0 152989 station_ip 5.119.104.167 152989 port 557 152989 unique_id port 152989 remote_ip 10.8.0.234 152990 username godarzi 152990 mac 152990 bytes_out 1121691 152990 bytes_in 16744520 152990 station_ip 5.119.231.192 152990 port 557 152990 unique_id port 152990 remote_ip 10.8.0.174 152991 username barzegar 152991 mac 152991 bytes_out 2606 152991 bytes_in 4842 152991 station_ip 5.119.104.167 152991 port 597 152991 unique_id port 152991 remote_ip 10.8.0.234 152992 username farhad2 152992 mac 152992 bytes_out 1613287 152992 bytes_in 19116980 152992 station_ip 5.119.251.136 152992 port 297 152992 unique_id port 152992 remote_ip 10.8.1.222 152996 username hadibarzegar 152996 kill_reason Another user logged on this global unique id 152996 mac 152996 bytes_out 0 152996 bytes_in 0 152996 station_ip 37.129.65.30 152993 username kordestani 152993 mac 152993 bytes_out 908433 152993 bytes_in 14105335 152993 station_ip 151.235.111.52 152993 port 296 152993 unique_id port 152993 remote_ip 10.8.1.98 152997 username mehdizare 152997 mac 152997 bytes_out 2262284 152997 bytes_in 27258245 152997 station_ip 5.120.191.154 152997 port 295 152997 unique_id port 152997 remote_ip 10.8.1.42 152999 username mohammadjavad 152999 mac 152999 bytes_out 187652 152999 bytes_in 1177267 152999 station_ip 37.129.9.41 152999 port 603 152999 unique_id port 152999 remote_ip 10.8.0.142 153006 username mostafa_es78 153006 unique_id port 153006 terminate_cause Lost-Carrier 153006 bytes_out 9775558 153006 bytes_in 26311943 153006 station_ip 178.236.35.96 153006 port 15731152 153006 nas_port_type Virtual 153006 remote_ip 5.5.5.5 153009 username aminvpn 153009 unique_id port 153009 terminate_cause Lost-Carrier 153009 bytes_out 2366334 153009 bytes_in 7803599 153009 station_ip 5.119.225.51 153009 port 15731158 153009 nas_port_type Virtual 153009 remote_ip 5.5.5.255 153013 username meysam 153013 mac 153013 bytes_out 0 153013 bytes_in 0 153013 station_ip 188.158.49.21 153013 port 606 153013 unique_id port 153013 remote_ip 10.8.0.110 153014 username alihosseini1 153014 kill_reason Another user logged on this global unique id 153014 mac 153014 bytes_out 0 153014 bytes_in 0 153014 station_ip 5.120.124.137 153014 port 597 153014 unique_id port 153014 remote_ip 10.8.0.166 153018 username kordestani 153018 mac 153018 bytes_out 74005 153018 bytes_in 199985 153018 station_ip 151.235.111.52 153018 port 295 153018 unique_id port 153018 remote_ip 10.8.1.98 153023 username bcboard 153023 unique_id port 153023 terminate_cause User-Request 153023 bytes_out 85174 153023 bytes_in 221724 153023 station_ip 37.129.17.171 153023 port 15731162 153023 nas_port_type Virtual 153023 remote_ip 5.5.5.48 153024 username nilufarrajaei 153024 mac 153024 bytes_out 60350 153024 bytes_in 65223 153024 station_ip 37.129.79.90 153024 port 295 153024 unique_id port 153024 remote_ip 10.8.1.166 153028 username godarzi 153028 mac 153028 bytes_out 365197 153028 bytes_in 4703731 153028 station_ip 5.119.231.192 153028 port 606 153028 unique_id port 153028 remote_ip 10.8.0.174 153031 username nilufarrajaei 153031 mac 153031 bytes_out 91144 153031 bytes_in 193890 153031 station_ip 37.129.79.90 153031 port 295 153031 unique_id port 153031 remote_ip 10.8.1.166 153035 username kordestani 153035 mac 153035 bytes_out 131939 153035 bytes_in 216280 153035 station_ip 151.235.111.52 153035 port 298 153035 unique_id port 153035 remote_ip 10.8.1.98 153036 username barzegar 153036 mac 153036 bytes_out 6882 153036 bytes_in 49655 153036 station_ip 5.119.104.167 153036 port 295 153036 unique_id port 153036 remote_ip 10.8.1.174 153037 username kalantary 153037 mac 153037 bytes_out 772916 153037 bytes_in 5605264 153037 station_ip 83.122.39.119 153037 port 595 153037 unique_id port 153037 remote_ip 10.8.0.98 153042 username barzegar 153042 mac 153042 bytes_out 0 153042 bytes_in 0 153042 station_ip 5.119.104.167 153042 port 295 153042 unique_id port 153042 remote_ip 10.8.1.174 153043 username barzegar 153043 mac 153043 bytes_out 0 153043 bytes_in 0 153043 station_ip 5.119.104.167 153043 port 295 153043 unique_id port 153043 remote_ip 10.8.1.174 153045 username alihosseini1 153045 mac 153045 bytes_out 0 153045 bytes_in 0 153045 station_ip 5.120.124.137 153045 port 597 153045 unique_id port 153049 username meysam 153049 mac 153049 bytes_out 646724 152994 station_ip 5.119.104.167 152994 port 605 152994 unique_id port 152994 remote_ip 10.8.0.234 152995 username farhad2 152995 mac 152995 bytes_out 78669 152995 bytes_in 233851 152995 station_ip 5.119.251.136 152995 port 297 152995 unique_id port 152995 remote_ip 10.8.1.222 152998 username farhad2 152998 mac 152998 bytes_out 0 152998 bytes_in 0 152998 station_ip 5.119.251.136 152998 port 296 152998 unique_id port 152998 remote_ip 10.8.1.222 153000 username barzegar 153000 mac 153000 bytes_out 2851 153000 bytes_in 5482 153000 station_ip 5.119.104.167 153000 port 296 153000 unique_id port 153000 remote_ip 10.8.1.174 153004 username alihosseini1 153004 mac 153004 bytes_out 0 153004 bytes_in 0 153004 station_ip 5.119.252.115 153004 port 598 153004 unique_id port 153008 username mostafa_es78 153008 unique_id port 153008 terminate_cause User-Request 153008 bytes_out 495485 153008 bytes_in 1097169 153008 station_ip 5.125.160.70 153008 port 15731159 153008 nas_port_type Virtual 153008 remote_ip 5.5.5.22 153011 username mehdizare 153011 kill_reason Another user logged on this global unique id 153011 mac 153011 bytes_out 0 153011 bytes_in 0 153011 station_ip 5.120.191.154 153011 port 605 153011 unique_id port 153011 remote_ip 10.8.0.90 153019 username barzegar 153019 mac 153019 bytes_out 0 153019 bytes_in 0 153019 station_ip 5.119.104.167 153019 port 297 153019 unique_id port 153019 remote_ip 10.8.1.174 153020 username mohammadjavad 153020 mac 153020 bytes_out 0 153020 bytes_in 0 153020 station_ip 83.123.250.5 153020 port 598 153020 unique_id port 153020 remote_ip 10.8.0.142 153022 username alihosseini1 153022 kill_reason Another user logged on this global unique id 153022 mac 153022 bytes_out 0 153022 bytes_in 0 153022 station_ip 5.120.124.137 153022 port 597 153022 unique_id port 153025 username mosi 153025 mac 153025 bytes_out 0 153025 bytes_in 0 153025 station_ip 5.200.109.226 153025 port 598 153025 unique_id port 153025 remote_ip 10.8.0.138 153026 username hassan 153026 kill_reason Another user logged on this global unique id 153026 mac 153026 bytes_out 0 153026 bytes_in 0 153026 station_ip 5.120.159.111 153026 port 590 153026 unique_id port 153029 username barzegar 153029 mac 153029 bytes_out 0 153029 bytes_in 0 153029 station_ip 5.119.104.167 153029 port 297 153029 unique_id port 153029 remote_ip 10.8.1.174 153030 username mohammadjavad 153030 mac 153030 bytes_out 0 153030 bytes_in 0 153030 station_ip 37.129.249.99 153030 port 606 153030 unique_id port 153030 remote_ip 10.8.0.142 153032 username barzegar 153032 mac 153032 bytes_out 0 153032 bytes_in 0 153032 station_ip 5.119.104.167 153032 port 297 153032 unique_id port 153032 remote_ip 10.8.1.174 153033 username mehdizare 153033 mac 153033 bytes_out 0 153033 bytes_in 0 153033 station_ip 5.120.191.154 153033 port 605 153033 unique_id port 153034 username sabaghnezhad 153034 mac 153034 bytes_out 0 153034 bytes_in 0 153034 station_ip 83.123.144.44 153034 port 595 153034 unique_id port 153034 remote_ip 10.8.0.186 153039 username vanila 153039 mac 153039 bytes_out 0 153039 bytes_in 0 153039 station_ip 83.122.175.228 153039 port 595 153039 unique_id port 153039 remote_ip 10.8.0.178 153041 username alihosseini1 153041 kill_reason Another user logged on this global unique id 153041 mac 153041 bytes_out 0 153041 bytes_in 0 153041 station_ip 5.120.124.137 153041 port 597 153041 unique_id port 153044 username meysam 153044 mac 153044 bytes_out 0 152996 port 597 152996 unique_id port 152996 remote_ip 10.8.0.154 153001 username alihosseini1 153001 kill_reason Another user logged on this global unique id 153001 mac 153001 bytes_out 0 153001 bytes_in 0 153001 station_ip 5.119.252.115 153001 port 598 153001 unique_id port 153001 remote_ip 10.8.0.166 153002 username hadibarzegar 153002 mac 153002 bytes_out 0 153002 bytes_in 0 153002 station_ip 37.129.65.30 153002 port 597 153002 unique_id port 153003 username farhad2 153003 mac 153003 bytes_out 1623378 153003 bytes_in 12561632 153003 station_ip 5.119.251.136 153003 port 295 153003 unique_id port 153003 remote_ip 10.8.1.222 153005 username kordestani 153005 mac 153005 bytes_out 508314 153005 bytes_in 8111284 153005 station_ip 151.235.111.52 153005 port 296 153005 unique_id port 153005 remote_ip 10.8.1.98 153007 username farhad2 153007 mac 153007 bytes_out 0 153007 bytes_in 0 153007 station_ip 5.119.251.136 153007 port 295 153007 unique_id port 153007 remote_ip 10.8.1.222 153010 username barzegar 153010 mac 153010 bytes_out 0 153010 bytes_in 0 153010 station_ip 5.119.104.167 153010 port 295 153010 unique_id port 153010 remote_ip 10.8.1.174 153012 username godarzi 153012 mac 153012 bytes_out 0 153012 bytes_in 0 153012 station_ip 5.119.231.192 153012 port 557 153012 unique_id port 153012 remote_ip 10.8.0.174 153015 username barzegar 153015 mac 153015 bytes_out 0 153015 bytes_in 0 153015 station_ip 5.119.104.167 153015 port 296 153015 unique_id port 153015 remote_ip 10.8.1.174 153016 username alipour 153016 mac 153016 bytes_out 1975493 153016 bytes_in 39986674 153016 station_ip 113.203.59.152 153016 port 607 153016 unique_id port 153016 remote_ip 10.8.0.102 153017 username nilufarrajaei 153017 mac 153017 bytes_out 0 153017 bytes_in 0 153017 station_ip 37.129.79.90 153017 port 591 153017 unique_id port 153017 remote_ip 10.8.0.206 153021 username malekpoir 153021 mac 153021 bytes_out 0 153021 bytes_in 0 153021 station_ip 5.119.173.175 153021 port 595 153021 unique_id port 153027 username barzegar 153027 mac 153027 bytes_out 0 153027 bytes_in 0 153027 station_ip 5.119.104.167 153027 port 297 153027 unique_id port 153027 remote_ip 10.8.1.174 153038 username alipour 153038 kill_reason Another user logged on this global unique id 153038 mac 153038 bytes_out 0 153038 bytes_in 0 153038 station_ip 113.203.59.152 153038 port 296 153038 unique_id port 153038 remote_ip 10.8.1.50 153040 username meysam 153040 mac 153040 bytes_out 1932726 153040 bytes_in 30584394 153040 station_ip 188.158.49.21 153040 port 605 153040 unique_id port 153040 remote_ip 10.8.0.110 153046 username nilufarrajaei 153046 kill_reason Another user logged on this global unique id 153046 mac 153046 bytes_out 0 153046 bytes_in 0 153046 station_ip 45.86.197.16 153046 port 299 153046 unique_id port 153046 remote_ip 10.8.1.166 153047 username abravesh 153047 unique_id port 153047 terminate_cause Lost-Carrier 153047 bytes_out 115773 153047 bytes_in 274963 153047 station_ip 5.120.84.189 153047 port 15731163 153047 nas_port_type Virtual 153047 remote_ip 5.5.5.60 153050 username kalantary 153050 mac 153050 bytes_out 0 153050 bytes_in 0 153050 station_ip 83.122.114.219 153050 port 595 153050 unique_id port 153050 remote_ip 10.8.0.98 153052 username godarzi 153052 mac 153052 bytes_out 0 153052 bytes_in 0 153052 station_ip 5.119.231.192 153052 port 605 153052 unique_id port 153052 remote_ip 10.8.0.174 153053 username barzegar 153053 mac 153044 bytes_in 0 153044 station_ip 188.158.49.21 153044 port 297 153044 unique_id port 153044 remote_ip 10.8.1.34 153048 username barzegar 153048 mac 153048 bytes_out 0 153048 bytes_in 0 153048 station_ip 5.119.104.167 153048 port 297 153048 unique_id port 153048 remote_ip 10.8.1.174 153051 username mostafa_es78 153051 unique_id port 153051 terminate_cause User-Request 153051 bytes_out 458251 153051 bytes_in 2037581 153051 station_ip 5.126.229.47 153051 port 15731164 153051 nas_port_type Virtual 153051 remote_ip 5.5.5.68 153054 username mehdizare 153054 mac 153054 bytes_out 173648 153054 bytes_in 179542 153054 station_ip 5.120.191.154 153054 port 606 153054 unique_id port 153054 remote_ip 10.8.0.90 153057 username mehdizare 153057 mac 153057 bytes_out 0 153057 bytes_in 0 153057 station_ip 5.120.191.154 153057 port 595 153057 unique_id port 153057 remote_ip 10.8.0.90 153062 username barzegar 153062 mac 153062 bytes_out 3450 153062 bytes_in 6246 153062 station_ip 5.119.104.167 153062 port 298 153062 unique_id port 153062 remote_ip 10.8.1.174 153063 username nilufarrajaei 153063 mac 153063 bytes_out 0 153063 bytes_in 0 153063 station_ip 45.86.197.16 153063 port 295 153063 unique_id port 153063 remote_ip 10.8.1.166 153065 username kalantary 153065 mac 153065 bytes_out 0 153065 bytes_in 0 153065 station_ip 83.122.114.219 153065 port 605 153065 unique_id port 153065 remote_ip 10.8.0.98 153067 username barzegar 153067 mac 153067 bytes_out 0 153067 bytes_in 0 153067 station_ip 5.119.104.167 153067 port 298 153067 unique_id port 153067 remote_ip 10.8.1.174 153075 username alipour 153075 mac 153075 bytes_out 0 153075 bytes_in 0 153075 station_ip 113.203.59.152 153075 port 296 153075 unique_id port 153076 username barzegar 153076 mac 153076 bytes_out 0 153076 bytes_in 0 153076 station_ip 5.119.104.167 153076 port 296 153076 unique_id port 153076 remote_ip 10.8.1.174 153077 username barzegar 153077 mac 153077 bytes_out 0 153077 bytes_in 0 153077 station_ip 5.119.104.167 153077 port 296 153077 unique_id port 153077 remote_ip 10.8.1.174 153080 username nilufarrajaei 153080 mac 153080 bytes_out 319964 153080 bytes_in 1267715 153080 station_ip 37.129.42.46 153080 port 295 153080 unique_id port 153080 remote_ip 10.8.1.166 153086 username sabaghnezhad 153086 mac 153086 bytes_out 0 153086 bytes_in 0 153086 station_ip 37.129.199.20 153086 port 606 153086 unique_id port 153086 remote_ip 10.8.0.186 153090 username mohammadmahdi 153090 kill_reason Another user logged on this global unique id 153090 mac 153090 bytes_out 0 153090 bytes_in 0 153090 station_ip 5.120.35.227 153090 port 597 153090 unique_id port 153090 remote_ip 10.8.0.54 153091 username kalantary 153091 mac 153091 bytes_out 0 153091 bytes_in 0 153091 station_ip 83.122.36.151 153091 port 595 153091 unique_id port 153091 remote_ip 10.8.0.98 153095 username hamidsalari 153095 mac 153095 bytes_out 1541320 153095 bytes_in 20716931 153095 station_ip 5.120.156.174 153095 port 603 153095 unique_id port 153095 remote_ip 10.8.0.222 153103 username aminvpn 153103 mac 153103 bytes_out 0 153103 bytes_in 0 153103 station_ip 83.122.223.194 153103 port 595 153103 unique_id port 153103 remote_ip 10.8.0.14 153105 username mohammadjavad 153105 mac 153105 bytes_out 0 153105 bytes_in 0 153105 station_ip 83.123.43.179 153105 port 608 153105 unique_id port 153105 remote_ip 10.8.0.142 153107 username zahra1101 153107 mac 153107 bytes_out 8170 153049 bytes_in 11973404 153049 station_ip 188.158.49.21 153049 port 295 153049 unique_id port 153049 remote_ip 10.8.1.34 153055 username fezealinaghi 153055 mac 153055 bytes_out 0 153055 bytes_in 0 153055 station_ip 37.129.0.232 153055 port 584 153055 unique_id port 153055 remote_ip 10.8.0.78 153058 username barzegar 153058 mac 153058 bytes_out 115059 153058 bytes_in 35422 153058 station_ip 5.119.104.167 153058 port 298 153058 unique_id port 153058 remote_ip 10.8.1.174 153060 username fezealinaghi 153060 mac 153060 bytes_out 0 153060 bytes_in 0 153060 station_ip 37.129.0.232 153060 port 584 153060 unique_id port 153060 remote_ip 10.8.0.78 153066 username hamid.e 153066 unique_id port 153066 terminate_cause User-Request 153066 bytes_out 59279446 153066 bytes_in 968553462 153066 station_ip 37.27.8.144 153066 port 15731149 153066 nas_port_type Virtual 153066 remote_ip 5.5.5.126 153069 username mohammadjavad 153069 mac 153069 bytes_out 1278681 153069 bytes_in 16165994 153069 station_ip 37.129.35.216 153069 port 597 153069 unique_id port 153069 remote_ip 10.8.0.142 153070 username sedighe 153070 mac 153070 bytes_out 0 153070 bytes_in 0 153070 station_ip 37.129.56.20 153070 port 557 153070 unique_id port 153070 remote_ip 10.8.0.146 153073 username fezealinaghi 153073 mac 153073 bytes_out 0 153073 bytes_in 0 153073 station_ip 37.129.0.232 153073 port 557 153073 unique_id port 153073 remote_ip 10.8.0.78 153082 username barzegar 153082 mac 153082 bytes_out 2618 153082 bytes_in 5393 153082 station_ip 5.119.104.167 153082 port 295 153082 unique_id port 153082 remote_ip 10.8.1.174 153084 username malekpoir 153084 mac 153084 bytes_out 1313229 153084 bytes_in 13288811 153084 station_ip 5.119.173.175 153084 port 591 153084 unique_id port 153084 remote_ip 10.8.0.58 153089 username mostafa_es78 153089 unique_id port 153089 terminate_cause User-Request 153089 bytes_out 14889287 153089 bytes_in 6849962 153089 station_ip 5.126.229.47 153089 port 15731165 153089 nas_port_type Virtual 153089 remote_ip 5.5.5.69 153092 username vanila 153092 mac 153092 bytes_out 1733065 153092 bytes_in 22219775 153092 station_ip 83.122.175.228 153092 port 607 153092 unique_id port 153092 remote_ip 10.8.0.178 153096 username barzegar 153096 mac 153096 bytes_out 0 153096 bytes_in 0 153096 station_ip 5.119.104.167 153096 port 591 153096 unique_id port 153096 remote_ip 10.8.0.234 153098 username godarzi 153098 mac 153098 bytes_out 2293639 153098 bytes_in 10591902 153098 station_ip 5.119.83.92 153098 port 605 153098 unique_id port 153098 remote_ip 10.8.0.174 153100 username mehdizare 153100 mac 153100 bytes_out 0 153100 bytes_in 0 153100 station_ip 5.120.191.154 153100 port 603 153100 unique_id port 153100 remote_ip 10.8.0.90 153104 username zahra1101 153104 mac 153104 bytes_out 12233570 153104 bytes_in 42676347 153104 station_ip 5.120.144.104 153104 port 292 153104 unique_id port 153104 remote_ip 10.8.1.182 153106 username barzegar 153106 mac 153106 bytes_out 0 153106 bytes_in 0 153106 station_ip 5.119.104.167 153106 port 595 153106 unique_id port 153106 remote_ip 10.8.0.234 153108 username meysam 153108 mac 153108 bytes_out 0 153108 bytes_in 0 153108 station_ip 188.158.48.56 153108 port 603 153108 unique_id port 153108 remote_ip 10.8.0.110 153109 username mehdizare 153109 mac 153109 bytes_out 0 153109 bytes_in 0 153109 station_ip 5.120.191.154 153109 port 605 153109 unique_id port 153109 remote_ip 10.8.0.90 153110 username kalantary 153053 bytes_out 3192 153053 bytes_in 6251 153053 station_ip 5.119.104.167 153053 port 295 153053 unique_id port 153053 remote_ip 10.8.1.174 153056 username nilufarrajaei 153056 mac 153056 bytes_out 0 153056 bytes_in 0 153056 station_ip 45.86.197.16 153056 port 299 153056 unique_id port 153059 username mehdizare 153059 mac 153059 bytes_out 16416 153059 bytes_in 85939 153059 station_ip 5.120.191.154 153059 port 606 153059 unique_id port 153059 remote_ip 10.8.0.90 153061 username mehdizare 153061 mac 153061 bytes_out 39083 153061 bytes_in 48521 153061 station_ip 5.120.191.154 153061 port 595 153061 unique_id port 153061 remote_ip 10.8.0.90 153064 username godarzi 153064 mac 153064 bytes_out 599527 153064 bytes_in 8295058 153064 station_ip 5.119.83.92 153064 port 606 153064 unique_id port 153064 remote_ip 10.8.0.174 153068 username barzegar 153068 mac 153068 bytes_out 4192 153068 bytes_in 6659 153068 station_ip 5.119.104.167 153068 port 298 153068 unique_id port 153068 remote_ip 10.8.1.174 153071 username fezealinaghi 153071 mac 153071 bytes_out 0 153071 bytes_in 0 153071 station_ip 37.129.0.232 153071 port 595 153071 unique_id port 153071 remote_ip 10.8.0.78 153072 username mahdiyehalizadeh 153072 mac 153072 bytes_out 0 153072 bytes_in 0 153072 station_ip 5.119.22.241 153072 port 297 153072 unique_id port 153072 remote_ip 10.8.1.110 153074 username barzegar 153074 mac 153074 bytes_out 3088 153074 bytes_in 5867 153074 station_ip 5.119.104.167 153074 port 298 153074 unique_id port 153074 remote_ip 10.8.1.174 153078 username barzegar 153078 mac 153078 bytes_out 0 153078 bytes_in 0 153078 station_ip 5.119.104.167 153078 port 296 153078 unique_id port 153078 remote_ip 10.8.1.174 153079 username kalantary 153079 mac 153079 bytes_out 0 153079 bytes_in 0 153079 station_ip 83.122.48.219 153079 port 557 153079 unique_id port 153079 remote_ip 10.8.0.98 153081 username alipour 153081 mac 153081 bytes_out 0 153081 bytes_in 0 153081 station_ip 113.203.59.152 153081 port 595 153081 unique_id port 153081 remote_ip 10.8.0.102 153083 username mehdizare 153083 mac 153083 bytes_out 0 153083 bytes_in 0 153083 station_ip 5.120.191.154 153083 port 584 153083 unique_id port 153083 remote_ip 10.8.0.90 153085 username barzegar 153085 mac 153085 bytes_out 0 153085 bytes_in 0 153085 station_ip 5.119.104.167 153085 port 595 153085 unique_id port 153085 remote_ip 10.8.0.234 153087 username nilufarrajaei 153087 mac 153087 bytes_out 60504 153087 bytes_in 135319 153087 station_ip 37.129.42.46 153087 port 295 153087 unique_id port 153087 remote_ip 10.8.1.166 153088 username malekpoir 153088 mac 153088 bytes_out 7215 153088 bytes_in 12622 153088 station_ip 5.119.173.175 153088 port 591 153088 unique_id port 153088 remote_ip 10.8.0.58 153093 username aminvpn 153093 mac 153093 bytes_out 9944479 153093 bytes_in 33620515 153093 station_ip 83.122.223.194 153093 port 553 153093 unique_id port 153093 remote_ip 10.8.0.14 153094 username mehdizare 153094 mac 153094 bytes_out 0 153094 bytes_in 0 153094 station_ip 5.120.191.154 153094 port 584 153094 unique_id port 153094 remote_ip 10.8.0.90 153097 username mohammadmahdi 153097 mac 153097 bytes_out 0 153097 bytes_in 0 153097 station_ip 5.120.35.227 153097 port 597 153097 unique_id port 153099 username mehdizare 153099 mac 153099 bytes_out 0 153099 bytes_in 0 153099 station_ip 5.120.191.154 153099 port 553 153099 unique_id port 153099 remote_ip 10.8.0.90 153101 username vanila 153101 mac 153101 bytes_out 0 153101 bytes_in 0 153101 station_ip 83.122.175.228 153101 port 553 153101 unique_id port 153101 remote_ip 10.8.0.178 153102 username barzegar 153102 mac 153102 bytes_out 0 153102 bytes_in 0 153102 station_ip 5.119.104.167 153102 port 553 153102 unique_id port 153102 remote_ip 10.8.0.234 153113 username mehdizare 153113 mac 153113 bytes_out 10582 153113 bytes_in 13726 153113 station_ip 5.120.191.154 153113 port 605 153113 unique_id port 153113 remote_ip 10.8.0.90 153114 username alipour 153114 mac 153114 bytes_out 0 153114 bytes_in 0 153114 station_ip 113.203.59.152 153114 port 557 153114 unique_id port 153114 remote_ip 10.8.0.102 153115 username godarzi 153115 mac 153115 bytes_out 308178 153115 bytes_in 95833 153115 station_ip 5.119.83.92 153115 port 595 153115 unique_id port 153115 remote_ip 10.8.0.174 153116 username nilufarrajaei 153116 kill_reason Another user logged on this global unique id 153116 mac 153116 bytes_out 0 153116 bytes_in 0 153116 station_ip 37.129.42.46 153116 port 295 153116 unique_id port 153116 remote_ip 10.8.1.166 153117 username barzegar 153117 mac 153117 bytes_out 0 153117 bytes_in 0 153117 station_ip 5.119.104.167 153117 port 595 153117 unique_id port 153117 remote_ip 10.8.0.234 153118 username godarzi 153118 mac 153118 bytes_out 0 153118 bytes_in 0 153118 station_ip 5.119.83.92 153118 port 557 153118 unique_id port 153118 remote_ip 10.8.0.174 153124 username nilufarrajaei 153124 mac 153124 bytes_out 303982 153124 bytes_in 4081184 153124 station_ip 37.129.42.46 153124 port 295 153124 unique_id port 153124 remote_ip 10.8.1.166 153127 username barzegar 153127 mac 153127 bytes_out 0 153127 bytes_in 0 153127 station_ip 5.119.104.167 153127 port 603 153127 unique_id port 153127 remote_ip 10.8.0.234 153132 username sabaghnezhad 153132 mac 153132 bytes_out 9821 153132 bytes_in 15565 153132 station_ip 37.129.199.20 153132 port 557 153132 unique_id port 153132 remote_ip 10.8.0.186 153137 username nilufarrajaei 153137 mac 153137 bytes_out 0 153137 bytes_in 0 153137 station_ip 37.129.42.46 153137 port 295 153137 unique_id port 153137 remote_ip 10.8.1.166 153138 username sabaghnezhad 153138 mac 153138 bytes_out 49497 153138 bytes_in 173985 153138 station_ip 37.129.199.20 153138 port 557 153138 unique_id port 153138 remote_ip 10.8.0.186 153142 username vanila 153142 mac 153142 bytes_out 0 153142 bytes_in 0 153142 station_ip 83.122.175.228 153142 port 597 153142 unique_id port 153142 remote_ip 10.8.0.178 153143 username mohammadmahdi 153143 mac 153143 bytes_out 0 153143 bytes_in 0 153143 station_ip 5.120.35.227 153143 port 591 153143 unique_id port 153145 username kalantary 153145 mac 153145 bytes_out 0 153145 bytes_in 0 153145 station_ip 83.122.20.223 153145 port 557 153145 unique_id port 153145 remote_ip 10.8.0.98 153147 username mirzaei 153147 kill_reason Another user logged on this global unique id 153147 mac 153147 bytes_out 0 153147 bytes_in 0 153147 station_ip 5.119.91.25 153147 port 287 153147 unique_id port 153150 username fezealinaghi 153150 kill_reason Another user logged on this global unique id 153150 mac 153150 bytes_out 0 153150 bytes_in 0 153150 station_ip 83.122.124.251 153150 port 595 153150 unique_id port 153150 remote_ip 10.8.0.78 153151 username nilufarrajaei 153151 mac 153151 bytes_out 0 153151 bytes_in 0 153151 station_ip 37.129.42.46 153107 bytes_in 11064 153107 station_ip 5.120.144.104 153107 port 292 153107 unique_id port 153107 remote_ip 10.8.1.182 153111 username mohammadmahdi 153111 kill_reason Another user logged on this global unique id 153111 mac 153111 bytes_out 0 153111 bytes_in 0 153111 station_ip 5.120.35.227 153111 port 591 153111 unique_id port 153111 remote_ip 10.8.0.54 153112 username barzegar 153112 mac 153112 bytes_out 4109 153112 bytes_in 6664 153112 station_ip 5.119.104.167 153112 port 595 153112 unique_id port 153112 remote_ip 10.8.0.234 153119 username barzegar 153119 mac 153119 bytes_out 0 153119 bytes_in 0 153119 station_ip 5.119.104.167 153119 port 595 153119 unique_id port 153119 remote_ip 10.8.0.234 153120 username hassan 153120 kill_reason Another user logged on this global unique id 153120 mac 153120 bytes_out 0 153120 bytes_in 0 153120 station_ip 5.120.159.111 153120 port 590 153120 unique_id port 153122 username nilufarrajaei 153122 mac 153122 bytes_out 0 153122 bytes_in 0 153122 station_ip 37.129.42.46 153122 port 295 153122 unique_id port 153123 username mohammadmahdi 153123 kill_reason Another user logged on this global unique id 153123 mac 153123 bytes_out 0 153123 bytes_in 0 153123 station_ip 5.120.35.227 153123 port 591 153123 unique_id port 153125 username barzegar 153125 mac 153125 bytes_out 0 153125 bytes_in 0 153125 station_ip 5.119.104.167 153125 port 603 153125 unique_id port 153125 remote_ip 10.8.0.234 153126 username sedighe 153126 mac 153126 bytes_out 0 153126 bytes_in 0 153126 station_ip 37.129.100.145 153126 port 557 153126 unique_id port 153126 remote_ip 10.8.0.146 153128 username fezealinaghi 153128 kill_reason Another user logged on this global unique id 153128 mac 153128 bytes_out 0 153128 bytes_in 0 153128 station_ip 83.122.124.251 153128 port 595 153128 unique_id port 153128 remote_ip 10.8.0.78 153129 username sabaghnezhad 153129 mac 153129 bytes_out 371713 153129 bytes_in 572744 153129 station_ip 37.129.199.20 153129 port 597 153129 unique_id port 153129 remote_ip 10.8.0.186 153131 username nilufarrajaei 153131 mac 153131 bytes_out 69764 153131 bytes_in 61824 153131 station_ip 37.129.42.46 153131 port 297 153131 unique_id port 153131 remote_ip 10.8.1.166 153133 username nilufarrajaei 153133 mac 153133 bytes_out 0 153133 bytes_in 0 153133 station_ip 37.129.42.46 153133 port 295 153133 unique_id port 153133 remote_ip 10.8.1.166 153141 username fezealinaghi 153141 mac 153141 bytes_out 0 153141 bytes_in 0 153141 station_ip 83.122.124.251 153141 port 605 153141 unique_id port 153141 remote_ip 10.8.0.78 153149 username milan 153149 kill_reason Another user logged on this global unique id 153149 mac 153149 bytes_out 0 153149 bytes_in 0 153149 station_ip 5.120.37.194 153149 port 598 153149 unique_id port 153149 remote_ip 10.8.0.218 153155 username mehdizare 153155 mac 153155 bytes_out 31517 153155 bytes_in 28908 153155 station_ip 5.120.191.154 153155 port 605 153155 unique_id port 153155 remote_ip 10.8.0.90 153160 username nilufarrajaei 153160 mac 153160 bytes_out 45636 153160 bytes_in 80832 153160 station_ip 37.129.42.46 153160 port 607 153160 unique_id port 153160 remote_ip 10.8.0.206 153176 username mohammadjavad 153176 mac 153176 bytes_out 687787 153176 bytes_in 12109548 153176 station_ip 37.129.237.52 153176 port 607 153176 unique_id port 153176 remote_ip 10.8.0.142 153177 username hosseine 153177 mac 153177 bytes_out 0 153177 bytes_in 0 153177 station_ip 37.129.106.218 153177 port 594 153177 unique_id port 153110 mac 153110 bytes_out 0 153110 bytes_in 0 153110 station_ip 83.122.5.203 153110 port 603 153110 unique_id port 153110 remote_ip 10.8.0.98 153121 username alipour 153121 mac 153121 bytes_out 0 153121 bytes_in 0 153121 station_ip 37.129.93.37 153121 port 603 153121 unique_id port 153121 remote_ip 10.8.0.102 153130 username nilufarrajaei 153130 mac 153130 bytes_out 707386 153130 bytes_in 10574170 153130 station_ip 37.129.42.46 153130 port 295 153130 unique_id port 153130 remote_ip 10.8.1.166 153134 username nilufarrajaei 153134 mac 153134 bytes_out 0 153134 bytes_in 0 153134 station_ip 37.129.42.46 153134 port 297 153134 unique_id port 153134 remote_ip 10.8.1.166 153135 username hosseine 153135 kill_reason Another user logged on this global unique id 153135 mac 153135 bytes_out 0 153135 bytes_in 0 153135 station_ip 37.129.106.218 153135 port 594 153135 unique_id port 153135 remote_ip 10.8.0.238 153136 username alipour 153136 mac 153136 bytes_out 114857 153136 bytes_in 184001 153136 station_ip 37.129.93.37 153136 port 296 153136 unique_id port 153136 remote_ip 10.8.1.50 153139 username nilufarrajaei 153139 mac 153139 bytes_out 24044 153139 bytes_in 58945 153139 station_ip 37.129.42.46 153139 port 295 153139 unique_id port 153139 remote_ip 10.8.1.166 153140 username fezealinaghi 153140 mac 153140 bytes_out 0 153140 bytes_in 0 153140 station_ip 83.122.124.251 153140 port 595 153140 unique_id port 153144 username barzegar 153144 mac 153144 bytes_out 0 153144 bytes_in 0 153144 station_ip 5.119.104.167 153144 port 591 153144 unique_id port 153144 remote_ip 10.8.0.234 153146 username vanila 153146 mac 153146 bytes_out 190357 153146 bytes_in 784138 153146 station_ip 37.129.128.240 153146 port 591 153146 unique_id port 153146 remote_ip 10.8.0.178 153148 username mehdizare 153148 mac 153148 bytes_out 0 153148 bytes_in 0 153148 station_ip 5.120.191.154 153148 port 292 153148 unique_id port 153148 remote_ip 10.8.1.42 153152 username barzegar 153152 mac 153152 bytes_out 0 153152 bytes_in 0 153152 station_ip 5.119.104.167 153152 port 597 153152 unique_id port 153152 remote_ip 10.8.0.234 153159 username fezealinaghi 153159 kill_reason Another user logged on this global unique id 153159 mac 153159 bytes_out 0 153159 bytes_in 0 153159 station_ip 83.122.124.251 153159 port 595 153159 unique_id port 153161 username barzegar 153161 mac 153161 bytes_out 0 153161 bytes_in 0 153161 station_ip 5.119.104.167 153161 port 610 153161 unique_id port 153161 remote_ip 10.8.0.234 153162 username vanila 153162 mac 153162 bytes_out 0 153162 bytes_in 0 153162 station_ip 37.129.132.24 153162 port 607 153162 unique_id port 153162 remote_ip 10.8.0.178 153163 username nilufarrajaei 153163 mac 153163 bytes_out 234972 153163 bytes_in 1172519 153163 station_ip 37.129.42.46 153163 port 605 153163 unique_id port 153163 remote_ip 10.8.0.206 153165 username godarzi 153165 mac 153165 bytes_out 481007 153165 bytes_in 6961109 153165 station_ip 5.202.24.27 153165 port 557 153165 unique_id port 153165 remote_ip 10.8.0.174 153170 username kordestani 153170 mac 153170 bytes_out 2162170 153170 bytes_in 29284299 153170 station_ip 151.235.123.178 153170 port 608 153170 unique_id port 153170 remote_ip 10.8.0.134 153171 username mehdizare 153171 mac 153171 bytes_out 0 153171 bytes_in 0 153171 station_ip 5.120.191.154 153171 port 591 153171 unique_id port 153171 remote_ip 10.8.0.90 153173 username vanila 153173 mac 153151 port 296 153151 unique_id port 153151 remote_ip 10.8.1.166 153153 username khalili 153153 kill_reason Another user logged on this global unique id 153153 mac 153153 bytes_out 0 153153 bytes_in 0 153153 station_ip 5.119.205.43 153153 port 596 153153 unique_id port 153154 username malekpoir 153154 kill_reason Another user logged on this global unique id 153154 mac 153154 bytes_out 0 153154 bytes_in 0 153154 station_ip 5.119.173.175 153154 port 606 153154 unique_id port 153154 remote_ip 10.8.0.58 153156 username barzegar 153156 mac 153156 bytes_out 0 153156 bytes_in 0 153156 station_ip 5.119.104.167 153156 port 605 153156 unique_id port 153156 remote_ip 10.8.0.234 153157 username tahmasebi 153157 mac 153157 bytes_out 645436 153157 bytes_in 9011086 153157 station_ip 5.120.179.22 153157 port 597 153157 unique_id port 153157 remote_ip 10.8.0.42 153158 username vanila 153158 mac 153158 bytes_out 187643 153158 bytes_in 1233343 153158 station_ip 37.129.132.24 153158 port 605 153158 unique_id port 153158 remote_ip 10.8.0.178 153164 username hadibarzegar 153164 kill_reason Another user logged on this global unique id 153164 mac 153164 bytes_out 0 153164 bytes_in 0 153164 station_ip 37.129.119.22 153164 port 591 153164 unique_id port 153164 remote_ip 10.8.0.154 153166 username mehdizare 153166 mac 153166 bytes_out 0 153166 bytes_in 0 153166 station_ip 5.120.191.154 153166 port 609 153166 unique_id port 153166 remote_ip 10.8.0.90 153167 username hadibarzegar 153167 mac 153167 bytes_out 0 153167 bytes_in 0 153167 station_ip 37.129.119.22 153167 port 591 153167 unique_id port 153168 username tahmasebi 153168 kill_reason Another user logged on this global unique id 153168 mac 153168 bytes_out 0 153168 bytes_in 0 153168 station_ip 5.120.179.22 153168 port 597 153168 unique_id port 153168 remote_ip 10.8.0.42 153169 username mehdizare 153169 mac 153169 bytes_out 187925 153169 bytes_in 183934 153169 station_ip 5.120.191.154 153169 port 611 153169 unique_id port 153169 remote_ip 10.8.0.90 153172 username barzegar 153172 mac 153172 bytes_out 0 153172 bytes_in 0 153172 station_ip 5.119.104.167 153172 port 608 153172 unique_id port 153172 remote_ip 10.8.0.234 153175 username forozandeh1 153175 mac 153175 bytes_out 140240 153175 bytes_in 190733 153175 station_ip 83.122.237.161 153175 port 609 153175 unique_id port 153175 remote_ip 10.8.0.130 153180 username barzegar 153180 mac 153180 bytes_out 0 153180 bytes_in 0 153180 station_ip 5.119.104.167 153180 port 594 153180 unique_id port 153180 remote_ip 10.8.0.234 153190 username hashtadani4 153190 mac 153190 bytes_out 1632412 153190 bytes_in 18681532 153190 station_ip 83.123.135.92 153190 port 595 153190 unique_id port 153190 remote_ip 10.8.0.182 153192 username kalantary 153192 mac 153192 bytes_out 4121430 153192 bytes_in 41118407 153192 station_ip 83.122.95.143 153192 port 557 153192 unique_id port 153192 remote_ip 10.8.0.98 153195 username forozandeh1 153195 mac 153195 bytes_out 339554 153195 bytes_in 2426793 153195 station_ip 83.123.138.187 153195 port 557 153195 unique_id port 153195 remote_ip 10.8.0.130 153198 username barzegar 153198 mac 153198 bytes_out 3121 153198 bytes_in 13141 153198 station_ip 5.119.104.167 153198 port 597 153198 unique_id port 153198 remote_ip 10.8.0.234 153201 username tahmasebi 153201 mac 153201 bytes_out 171482 153201 bytes_in 221087 153201 station_ip 5.120.179.22 153201 port 557 153201 unique_id port 153201 remote_ip 10.8.0.42 153207 username hashtadani4 153173 bytes_out 462516 153173 bytes_in 2082701 153173 station_ip 37.129.132.24 153173 port 610 153173 unique_id port 153173 remote_ip 10.8.0.178 153174 username barzegar 153174 mac 153174 bytes_out 0 153174 bytes_in 0 153174 station_ip 5.119.104.167 153174 port 591 153174 unique_id port 153174 remote_ip 10.8.0.234 153179 username mehdizare 153179 mac 153179 bytes_out 32639 153179 bytes_in 90638 153179 station_ip 5.120.191.154 153179 port 611 153179 unique_id port 153179 remote_ip 10.8.0.90 153182 username jafari 153182 kill_reason Another user logged on this global unique id 153182 mac 153182 bytes_out 0 153182 bytes_in 0 153182 station_ip 37.137.30.77 153182 port 594 153182 unique_id port 153182 remote_ip 10.8.0.242 153183 username vanila 153183 mac 153183 bytes_out 1108287 153183 bytes_in 15180845 153183 station_ip 37.129.132.24 153183 port 607 153183 unique_id port 153183 remote_ip 10.8.0.178 153184 username forozandeh1 153184 mac 153184 bytes_out 34862169 153184 bytes_in 3839132 153184 station_ip 83.123.200.122 153184 port 591 153184 unique_id port 153184 remote_ip 10.8.0.130 153187 username tahmasebi 153187 mac 153187 bytes_out 0 153187 bytes_in 0 153187 station_ip 5.120.179.22 153187 port 591 153187 unique_id port 153187 remote_ip 10.8.0.42 153194 username hashtadani4 153194 kill_reason Maximum check online fails reached 153194 mac 153194 bytes_out 0 153194 bytes_in 0 153194 station_ip 83.123.135.92 153194 port 295 153194 unique_id port 153200 username forozandeh1 153200 mac 153200 bytes_out 321325 153200 bytes_in 2927846 153200 station_ip 83.123.43.166 153200 port 595 153200 unique_id port 153200 remote_ip 10.8.0.130 153202 username hashtadani4 153202 mac 153202 bytes_out 0 153202 bytes_in 0 153202 station_ip 37.129.54.240 153202 port 297 153202 unique_id port 153202 remote_ip 10.8.1.142 153203 username sedighe 153203 mac 153203 bytes_out 0 153203 bytes_in 0 153203 station_ip 83.122.7.101 153203 port 298 153203 unique_id port 153203 remote_ip 10.8.1.78 153206 username hashtadani4 153206 mac 153206 bytes_out 0 153206 bytes_in 0 153206 station_ip 37.129.54.240 153206 port 557 153206 unique_id port 153206 remote_ip 10.8.0.182 153209 username kalantary 153209 mac 153209 bytes_out 455323 153209 bytes_in 1629072 153209 station_ip 83.122.37.231 153209 port 594 153209 unique_id port 153209 remote_ip 10.8.0.98 153210 username hashtadani4 153210 mac 153210 bytes_out 0 153210 bytes_in 0 153210 station_ip 37.129.54.240 153210 port 296 153210 unique_id port 153210 remote_ip 10.8.1.142 153212 username aminvpn 153212 kill_reason Maximum check online fails reached 153212 unique_id port 153212 bytes_out 917311 153212 bytes_in 4455891 153212 station_ip 5.119.225.51 153212 port 15731167 153212 nas_port_type Virtual 153212 remote_ip 5.5.5.81 153216 username sedighe 153216 mac 153216 bytes_out 0 153216 bytes_in 0 153216 station_ip 83.122.7.101 153216 port 297 153216 unique_id port 153216 remote_ip 10.8.1.78 153217 username hashtadani4 153217 mac 153217 bytes_out 0 153217 bytes_in 0 153217 station_ip 37.129.54.240 153217 port 609 153217 unique_id port 153217 remote_ip 10.8.0.182 153219 username vanila 153219 mac 153219 bytes_out 812907 153219 bytes_in 5440808 153219 station_ip 37.129.155.60 153219 port 595 153219 unique_id port 153219 remote_ip 10.8.0.178 153221 username mohammadmahdi 153221 mac 153221 bytes_out 0 153221 bytes_in 0 153221 station_ip 5.120.35.227 153221 port 607 153221 unique_id port 153178 username barzegar 153178 mac 153178 bytes_out 0 153178 bytes_in 0 153178 station_ip 5.119.104.167 153178 port 607 153178 unique_id port 153178 remote_ip 10.8.0.234 153181 username fezealinaghi 153181 mac 153181 bytes_out 0 153181 bytes_in 0 153181 station_ip 83.122.124.251 153181 port 595 153181 unique_id port 153185 username vanila 153185 mac 153185 bytes_out 45217 153185 bytes_in 180575 153185 station_ip 37.129.132.24 153185 port 609 153185 unique_id port 153185 remote_ip 10.8.0.178 153186 username tahmasebi 153186 mac 153186 bytes_out 0 153186 bytes_in 0 153186 station_ip 5.120.179.22 153186 port 597 153186 unique_id port 153188 username forozandeh1 153188 mac 153188 bytes_out 358050 153188 bytes_in 2984751 153188 station_ip 83.122.183.167 153188 port 607 153188 unique_id port 153188 remote_ip 10.8.0.130 153189 username jafari 153189 kill_reason Another user logged on this global unique id 153189 mac 153189 bytes_out 0 153189 bytes_in 0 153189 station_ip 37.137.30.77 153189 port 594 153189 unique_id port 153191 username hashtadani4 153191 mac 153191 bytes_out 0 153191 bytes_in 0 153191 station_ip 83.123.135.92 153191 port 595 153191 unique_id port 153191 remote_ip 10.8.0.182 153193 username jafari 153193 kill_reason Another user logged on this global unique id 153193 mac 153193 bytes_out 0 153193 bytes_in 0 153193 station_ip 37.137.30.77 153193 port 594 153193 unique_id port 153196 username barzegar 153196 mac 153196 bytes_out 50915 153196 bytes_in 235400 153196 station_ip 5.119.104.167 153196 port 608 153196 unique_id port 153196 remote_ip 10.8.0.234 153197 username barzegar 153197 mac 153197 bytes_out 0 153197 bytes_in 0 153197 station_ip 5.119.104.167 153197 port 557 153197 unique_id port 153197 remote_ip 10.8.0.234 153199 username jafari 153199 mac 153199 bytes_out 0 153199 bytes_in 0 153199 station_ip 37.137.30.77 153199 port 594 153199 unique_id port 153204 username hashtadani4 153204 mac 153204 bytes_out 0 153204 bytes_in 0 153204 station_ip 37.129.54.240 153204 port 557 153204 unique_id port 153204 remote_ip 10.8.0.182 153205 username barzegar 153205 mac 153205 bytes_out 0 153205 bytes_in 0 153205 station_ip 5.119.104.167 153205 port 296 153205 unique_id port 153205 remote_ip 10.8.1.174 153211 username mehdizare 153211 mac 153211 bytes_out 0 153211 bytes_in 0 153211 station_ip 5.120.191.154 153211 port 292 153211 unique_id port 153211 remote_ip 10.8.1.42 153213 username mohammadmahdi 153213 kill_reason Another user logged on this global unique id 153213 mac 153213 bytes_out 0 153213 bytes_in 0 153213 station_ip 5.120.35.227 153213 port 607 153213 unique_id port 153213 remote_ip 10.8.0.54 153214 username mansour 153214 mac 153214 bytes_out 194925 153214 bytes_in 1905918 153214 station_ip 5.202.98.165 153214 port 594 153214 unique_id port 153214 remote_ip 10.8.0.30 153215 username barzegar 153215 mac 153215 bytes_out 0 153215 bytes_in 0 153215 station_ip 5.119.104.167 153215 port 608 153215 unique_id port 153215 remote_ip 10.8.0.234 153230 username malekpoir 153230 mac 153230 bytes_out 0 153230 bytes_in 0 153230 station_ip 5.119.173.175 153230 port 606 153230 unique_id port 153234 username hashtadani4 153234 mac 153234 bytes_out 0 153234 bytes_in 0 153234 station_ip 37.129.54.240 153234 port 298 153234 unique_id port 153234 remote_ip 10.8.1.142 153236 username sedighe 153236 kill_reason Maximum check online fails reached 153236 mac 153236 bytes_out 0 153207 mac 153207 bytes_out 0 153207 bytes_in 0 153207 station_ip 37.129.54.240 153207 port 557 153207 unique_id port 153207 remote_ip 10.8.0.182 153208 username barzegar 153208 mac 153208 bytes_out 0 153208 bytes_in 0 153208 station_ip 5.119.104.167 153208 port 296 153208 unique_id port 153208 remote_ip 10.8.1.174 153218 username sedighe 153218 mac 153218 bytes_out 0 153218 bytes_in 0 153218 station_ip 83.122.7.101 153218 port 296 153218 unique_id port 153218 remote_ip 10.8.1.78 153220 username saeed9658 153220 mac 153220 bytes_out 0 153220 bytes_in 0 153220 station_ip 5.119.183.45 153220 port 298 153220 unique_id port 153220 remote_ip 10.8.1.210 153222 username hatami 153222 mac 153222 bytes_out 1694806 153222 bytes_in 20112188 153222 station_ip 151.235.97.134 153222 port 557 153222 unique_id port 153222 remote_ip 10.8.0.106 153224 username kalantary 153224 mac 153224 bytes_out 1615306 153224 bytes_in 21755197 153224 station_ip 83.122.37.231 153224 port 594 153224 unique_id port 153224 remote_ip 10.8.0.98 153226 username alipour 153226 mac 153226 bytes_out 1370878 153226 bytes_in 11640990 153226 station_ip 37.129.93.37 153226 port 603 153226 unique_id port 153226 remote_ip 10.8.0.102 153228 username sedighe 153228 mac 153228 bytes_out 0 153228 bytes_in 0 153228 station_ip 83.122.7.101 153228 port 296 153228 unique_id port 153228 remote_ip 10.8.1.78 153229 username hashtadani4 153229 mac 153229 bytes_out 0 153229 bytes_in 0 153229 station_ip 37.129.54.240 153229 port 595 153229 unique_id port 153229 remote_ip 10.8.0.182 153231 username tahmasebi 153231 mac 153231 bytes_out 4101173 153231 bytes_in 41556946 153231 station_ip 5.120.179.22 153231 port 594 153231 unique_id port 153231 remote_ip 10.8.0.42 153232 username hashtadani4 153232 mac 153232 bytes_out 0 153232 bytes_in 0 153232 station_ip 37.129.54.240 153232 port 595 153232 unique_id port 153232 remote_ip 10.8.0.182 153235 username sabaghnezhad 153235 mac 153235 bytes_out 5531 153235 bytes_in 10515 153235 station_ip 113.203.102.102 153235 port 594 153235 unique_id port 153235 remote_ip 10.8.0.186 153237 username barzegar 153237 mac 153237 bytes_out 60118 153237 bytes_in 161497 153237 station_ip 5.119.104.167 153237 port 608 153237 unique_id port 153237 remote_ip 10.8.0.234 153242 username ehsun 153242 mac 153242 bytes_out 0 153242 bytes_in 0 153242 station_ip 113.203.37.51 153242 port 591 153242 unique_id port 153242 remote_ip 10.8.0.74 153244 username sabaghnezhad 153244 mac 153244 bytes_out 17374 153244 bytes_in 24067 153244 station_ip 37.129.241.188 153244 port 594 153244 unique_id port 153244 remote_ip 10.8.0.186 153247 username barzegar 153247 mac 153247 bytes_out 0 153247 bytes_in 0 153247 station_ip 5.119.104.167 153247 port 557 153247 unique_id port 153247 remote_ip 10.8.0.234 153253 username tahmasebi 153253 mac 153253 bytes_out 0 153253 bytes_in 0 153253 station_ip 5.120.179.22 153253 port 557 153253 unique_id port 153253 remote_ip 10.8.0.42 153255 username mehdizare 153255 mac 153255 bytes_out 97816 153255 bytes_in 144395 153255 station_ip 5.120.191.154 153255 port 292 153255 unique_id port 153255 remote_ip 10.8.1.42 153258 username nilufarrajaei 153258 kill_reason Another user logged on this global unique id 153258 mac 153258 bytes_out 0 153258 bytes_in 0 153258 station_ip 37.129.42.46 153258 port 605 153258 unique_id port 153258 remote_ip 10.8.0.206 153260 username barzegar 153223 username hashtadani4 153223 mac 153223 bytes_out 0 153223 bytes_in 0 153223 station_ip 37.129.54.240 153223 port 557 153223 unique_id port 153223 remote_ip 10.8.0.182 153225 username saeed9658 153225 mac 153225 bytes_out 0 153225 bytes_in 0 153225 station_ip 5.119.183.45 153225 port 297 153225 unique_id port 153225 remote_ip 10.8.1.210 153227 username kordestani 153227 mac 153227 bytes_out 2008320 153227 bytes_in 33158020 153227 station_ip 151.235.89.239 153227 port 591 153227 unique_id port 153227 remote_ip 10.8.0.134 153233 username tahmasebi 153233 mac 153233 bytes_out 0 153233 bytes_in 0 153233 station_ip 5.120.179.22 153233 port 594 153233 unique_id port 153233 remote_ip 10.8.0.42 153246 username tahmasebi 153246 mac 153246 bytes_out 1279612 153246 bytes_in 743213 153246 station_ip 5.120.179.22 153246 port 591 153246 unique_id port 153246 remote_ip 10.8.0.42 153248 username hashtadani4 153248 mac 153248 bytes_out 0 153248 bytes_in 0 153248 station_ip 37.129.54.240 153248 port 300 153248 unique_id port 153248 remote_ip 10.8.1.142 153250 username hashtadani4 153250 mac 153250 bytes_out 0 153250 bytes_in 0 153250 station_ip 37.129.54.240 153250 port 300 153250 unique_id port 153250 remote_ip 10.8.1.142 153251 username hashtadani4 153251 mac 153251 bytes_out 0 153251 bytes_in 0 153251 station_ip 37.129.54.240 153251 port 557 153251 unique_id port 153251 remote_ip 10.8.0.182 153254 username hashtadani4 153254 mac 153254 bytes_out 0 153254 bytes_in 0 153254 station_ip 37.129.54.240 153254 port 557 153254 unique_id port 153254 remote_ip 10.8.0.182 153256 username kordestani 153256 kill_reason Another user logged on this global unique id 153256 mac 153256 bytes_out 0 153256 bytes_in 0 153256 station_ip 151.235.111.52 153256 port 299 153256 unique_id port 153256 remote_ip 10.8.1.98 153257 username hashtadani4 153257 mac 153257 bytes_out 0 153257 bytes_in 0 153257 station_ip 37.129.54.240 153257 port 557 153257 unique_id port 153257 remote_ip 10.8.0.182 153261 username alipour 153261 mac 153261 bytes_out 19827 153261 bytes_in 19011 153261 station_ip 37.129.93.37 153261 port 297 153261 unique_id port 153261 remote_ip 10.8.1.50 153262 username aminvpn 153262 mac 153262 bytes_out 0 153262 bytes_in 0 153262 station_ip 83.122.223.194 153262 port 553 153262 unique_id port 153262 remote_ip 10.8.0.14 153264 username hashtadani4 153264 mac 153264 bytes_out 5716 153264 bytes_in 11570 153264 station_ip 37.129.54.240 153264 port 591 153264 unique_id port 153264 remote_ip 10.8.0.182 153265 username hashtadani4 153265 mac 153265 bytes_out 0 153265 bytes_in 0 153265 station_ip 37.129.54.240 153265 port 591 153265 unique_id port 153265 remote_ip 10.8.0.182 153270 username kordestani 153270 mac 153270 bytes_out 0 153270 bytes_in 0 153270 station_ip 151.235.111.52 153270 port 299 153270 unique_id port 153272 username zahra1101 153272 kill_reason Another user logged on this global unique id 153272 mac 153272 bytes_out 0 153272 bytes_in 0 153272 station_ip 5.120.144.104 153272 port 298 153272 unique_id port 153272 remote_ip 10.8.1.182 153275 username nilufarrajaei 153275 mac 153275 bytes_out 0 153275 bytes_in 0 153275 station_ip 37.129.42.46 153275 port 605 153275 unique_id port 153281 username barzegar 153281 mac 153281 bytes_out 0 153281 bytes_in 0 153281 station_ip 5.119.104.167 153281 port 553 153281 unique_id port 153281 remote_ip 10.8.0.234 153286 username aminvpn 153236 bytes_in 0 153236 station_ip 83.122.7.101 153236 port 296 153236 unique_id port 153238 username kalantary 153238 kill_reason Another user logged on this global unique id 153238 mac 153238 bytes_out 0 153238 bytes_in 0 153238 station_ip 83.122.37.231 153238 port 557 153238 unique_id port 153238 remote_ip 10.8.0.98 153239 username hashtadani4 153239 mac 153239 bytes_out 0 153239 bytes_in 0 153239 station_ip 37.129.54.240 153239 port 603 153239 unique_id port 153239 remote_ip 10.8.0.182 153240 username kordestani 153240 mac 153240 bytes_out 0 153240 bytes_in 0 153240 station_ip 151.235.72.9 153240 port 591 153240 unique_id port 153240 remote_ip 10.8.0.134 153241 username hashtadani4 153241 mac 153241 bytes_out 2058 153241 bytes_in 4600 153241 station_ip 37.129.54.240 153241 port 603 153241 unique_id port 153241 remote_ip 10.8.0.182 153243 username tahmasebi 153243 mac 153243 bytes_out 0 153243 bytes_in 0 153243 station_ip 5.120.179.22 153243 port 595 153243 unique_id port 153243 remote_ip 10.8.0.42 153245 username kalantary 153245 mac 153245 bytes_out 0 153245 bytes_in 0 153245 station_ip 83.122.37.231 153245 port 557 153245 unique_id port 153249 username tahmasebi 153249 mac 153249 bytes_out 0 153249 bytes_in 0 153249 station_ip 5.120.179.22 153249 port 557 153249 unique_id port 153249 remote_ip 10.8.0.42 153252 username alipour 153252 mac 153252 bytes_out 98170 153252 bytes_in 132402 153252 station_ip 37.129.93.37 153252 port 297 153252 unique_id port 153252 remote_ip 10.8.1.50 153259 username hashtadani4 153259 mac 153259 bytes_out 0 153259 bytes_in 0 153259 station_ip 37.129.54.240 153259 port 557 153259 unique_id port 153259 remote_ip 10.8.0.182 153263 username hashtadani4 153263 mac 153263 bytes_out 0 153263 bytes_in 0 153263 station_ip 37.129.54.240 153263 port 297 153263 unique_id port 153263 remote_ip 10.8.1.142 153266 username barzegar 153266 mac 153266 bytes_out 0 153266 bytes_in 0 153266 station_ip 5.119.104.167 153266 port 297 153266 unique_id port 153266 remote_ip 10.8.1.174 153267 username hashtadani4 153267 kill_reason Maximum number of concurrent logins reached 153267 mac 153267 bytes_out 0 153267 bytes_in 0 153267 station_ip 83.122.146.127 153267 port 595 153267 unique_id port 153268 username hashtadani4 153268 kill_reason Maximum check online fails reached 153268 mac 153268 bytes_out 0 153268 bytes_in 0 153268 station_ip 83.122.146.127 153268 port 297 153268 unique_id port 153274 username ehsun 153274 mac 153274 bytes_out 0 153274 bytes_in 0 153274 station_ip 37.129.225.179 153274 port 606 153274 unique_id port 153274 remote_ip 10.8.0.74 153276 username barzegar 153276 mac 153276 bytes_out 0 153276 bytes_in 0 153276 station_ip 5.119.104.167 153276 port 606 153276 unique_id port 153276 remote_ip 10.8.0.234 153278 username farhad2 153278 mac 153278 bytes_out 0 153278 bytes_in 0 153278 station_ip 5.119.22.250 153278 port 607 153278 unique_id port 153278 remote_ip 10.8.0.190 153280 username kalantary 153280 mac 153280 bytes_out 0 153280 bytes_in 0 153280 station_ip 83.122.53.131 153280 port 553 153280 unique_id port 153280 remote_ip 10.8.0.98 153282 username nilufarrajaei 153282 mac 153282 bytes_out 0 153282 bytes_in 0 153282 station_ip 37.129.42.46 153282 port 608 153282 unique_id port 153282 remote_ip 10.8.0.206 153284 username mehdizare 153284 mac 153284 bytes_out 0 153284 bytes_in 0 153284 station_ip 5.120.191.154 153284 port 557 153260 mac 153260 bytes_out 21766 153260 bytes_in 43824 153260 station_ip 5.119.104.167 153260 port 300 153260 unique_id port 153260 remote_ip 10.8.1.174 153269 username hashtadani4 153269 kill_reason Maximum check online fails reached 153269 mac 153269 bytes_out 0 153269 bytes_in 0 153269 station_ip 83.122.146.127 153269 port 591 153269 unique_id port 153271 username aminvpn 153271 mac 153271 bytes_out 0 153271 bytes_in 0 153271 station_ip 83.122.223.194 153271 port 553 153271 unique_id port 153271 remote_ip 10.8.0.14 153273 username barzegar 153273 kill_reason Maximum check online fails reached 153273 mac 153273 bytes_out 0 153273 bytes_in 0 153273 station_ip 5.119.104.167 153273 port 300 153273 unique_id port 153277 username saeed9658 153277 mac 153277 bytes_out 0 153277 bytes_in 0 153277 station_ip 5.119.183.45 153277 port 595 153277 unique_id port 153277 remote_ip 10.8.0.62 153279 username barzegar 153279 mac 153279 bytes_out 0 153279 bytes_in 0 153279 station_ip 5.119.104.167 153279 port 605 153279 unique_id port 153279 remote_ip 10.8.0.234 153283 username zahra1101 153283 kill_reason Another user logged on this global unique id 153283 mac 153283 bytes_out 0 153283 bytes_in 0 153283 station_ip 5.120.144.104 153283 port 298 153283 unique_id port 153288 username barzegar 153288 mac 153288 bytes_out 0 153288 bytes_in 0 153288 station_ip 5.119.104.167 153288 port 301 153288 unique_id port 153288 remote_ip 10.8.1.174 153292 username zahra1101 153292 mac 153292 bytes_out 0 153292 bytes_in 0 153292 station_ip 5.120.144.104 153292 port 298 153292 unique_id port 153292 remote_ip 10.8.1.182 153295 username farhad2 153295 mac 153295 bytes_out 5195865 153295 bytes_in 44173101 153295 station_ip 5.119.22.250 153295 port 595 153295 unique_id port 153295 remote_ip 10.8.0.190 153297 username kalantary 153297 mac 153297 bytes_out 0 153297 bytes_in 0 153297 station_ip 83.122.16.99 153297 port 603 153297 unique_id port 153298 username zahra1101 153298 mac 153298 bytes_out 791112 153298 bytes_in 15805426 153298 station_ip 5.120.144.104 153298 port 298 153298 unique_id port 153298 remote_ip 10.8.1.182 153301 username fezealinaghi 153301 kill_reason Another user logged on this global unique id 153301 mac 153301 bytes_out 0 153301 bytes_in 0 153301 station_ip 83.123.81.61 153301 port 597 153301 unique_id port 153304 username ehsun 153304 mac 153304 bytes_out 0 153304 bytes_in 0 153304 station_ip 46.225.213.237 153304 port 605 153304 unique_id port 153304 remote_ip 10.8.0.74 153307 username zahra1101 153307 mac 153307 bytes_out 0 153307 bytes_in 0 153307 station_ip 5.120.144.104 153307 port 298 153307 unique_id port 153307 remote_ip 10.8.1.182 153313 username barzegar 153313 mac 153313 bytes_out 0 153313 bytes_in 0 153313 station_ip 5.119.104.167 153313 port 594 153313 unique_id port 153313 remote_ip 10.8.0.234 153315 username barzegar 153315 mac 153315 bytes_out 0 153315 bytes_in 0 153315 station_ip 5.119.104.167 153315 port 594 153315 unique_id port 153315 remote_ip 10.8.0.234 153316 username kordestani 153316 mac 153316 bytes_out 1477598 153316 bytes_in 31003590 153316 station_ip 151.235.116.251 153316 port 299 153316 unique_id port 153316 remote_ip 10.8.1.98 153317 username barzegar 153317 mac 153317 bytes_out 0 153317 bytes_in 0 153317 station_ip 5.119.104.167 153317 port 594 153317 unique_id port 153317 remote_ip 10.8.0.234 153320 username fezealinaghi 153320 kill_reason Another user logged on this global unique id 153284 unique_id port 153284 remote_ip 10.8.0.90 153285 username barzegar 153285 mac 153285 bytes_out 0 153285 bytes_in 0 153285 station_ip 5.119.104.167 153285 port 557 153285 unique_id port 153285 remote_ip 10.8.0.234 153289 username zahra1101 153289 mac 153289 bytes_out 0 153289 bytes_in 0 153289 station_ip 5.120.144.104 153289 port 298 153289 unique_id port 153291 username aminvpn 153291 kill_reason Maximum check online fails reached 153291 mac 153291 bytes_out 0 153291 bytes_in 0 153291 station_ip 83.122.223.194 153291 port 606 153291 unique_id port 153291 remote_ip 10.8.0.14 153299 username zahra1101 153299 mac 153299 bytes_out 0 153299 bytes_in 0 153299 station_ip 5.120.144.104 153299 port 298 153299 unique_id port 153299 remote_ip 10.8.1.182 153303 username fezealinaghi 153303 kill_reason Another user logged on this global unique id 153303 mac 153303 bytes_out 0 153303 bytes_in 0 153303 station_ip 83.123.81.61 153303 port 597 153303 unique_id port 153305 username farhad2 153305 mac 153305 bytes_out 2286472 153305 bytes_in 17692385 153305 station_ip 5.119.22.250 153305 port 595 153305 unique_id port 153305 remote_ip 10.8.0.190 153311 username hassan 153311 kill_reason Another user logged on this global unique id 153311 mac 153311 bytes_out 0 153311 bytes_in 0 153311 station_ip 5.120.159.111 153311 port 590 153311 unique_id port 153312 username nilufarrajaei 153312 mac 153312 bytes_out 1464407 153312 bytes_in 24221255 153312 station_ip 37.129.42.46 153312 port 557 153312 unique_id port 153312 remote_ip 10.8.0.206 153322 username mehdizare 153322 mac 153322 bytes_out 0 153322 bytes_in 0 153322 station_ip 5.120.191.154 153322 port 603 153322 unique_id port 153322 remote_ip 10.8.0.90 153331 username nilufarrajaei 153331 mac 153331 bytes_out 0 153331 bytes_in 0 153331 station_ip 37.129.42.46 153331 port 594 153331 unique_id port 153335 username mehdizare 153335 mac 153335 bytes_out 0 153335 bytes_in 0 153335 station_ip 5.120.191.154 153335 port 606 153335 unique_id port 153335 remote_ip 10.8.0.90 153336 username kalantary 153336 mac 153336 bytes_out 0 153336 bytes_in 0 153336 station_ip 83.122.22.211 153336 port 607 153336 unique_id port 153339 username saeed9658 153339 mac 153339 bytes_out 0 153339 bytes_in 0 153339 station_ip 5.119.183.45 153339 port 606 153339 unique_id port 153339 remote_ip 10.8.0.62 153345 username hosseine 153345 mac 153345 bytes_out 0 153345 bytes_in 0 153345 station_ip 37.129.7.130 153345 port 299 153345 unique_id port 153345 remote_ip 10.8.1.190 153349 username nilufarrajaei 153349 mac 153349 bytes_out 0 153349 bytes_in 0 153349 station_ip 37.129.42.46 153349 port 557 153349 unique_id port 153349 remote_ip 10.8.0.206 153350 username nilufarrajaei 153350 mac 153350 bytes_out 0 153350 bytes_in 0 153350 station_ip 37.129.42.46 153350 port 595 153350 unique_id port 153350 remote_ip 10.8.0.206 153353 username hosseine 153353 mac 153353 bytes_out 30405 153353 bytes_in 66247 153353 station_ip 37.129.7.130 153353 port 299 153353 unique_id port 153353 remote_ip 10.8.1.190 153354 username farhad2 153354 mac 153354 bytes_out 211710 153354 bytes_in 1035468 153354 station_ip 5.119.22.250 153354 port 302 153354 unique_id port 153354 remote_ip 10.8.1.222 153359 username barzegar 153359 mac 153359 bytes_out 0 153359 bytes_in 0 153359 station_ip 5.119.104.167 153359 port 595 153359 unique_id port 153359 remote_ip 10.8.0.234 153365 username barzegar 153286 mac 153286 bytes_out 0 153286 bytes_in 0 153286 station_ip 83.122.223.194 153286 port 603 153286 unique_id port 153286 remote_ip 10.8.0.14 153287 username yaghobi 153287 mac 153287 bytes_out 0 153287 bytes_in 0 153287 station_ip 83.122.18.193 153287 port 553 153287 unique_id port 153287 remote_ip 10.8.0.198 153290 username mehdizare 153290 kill_reason Maximum check online fails reached 153290 mac 153290 bytes_out 0 153290 bytes_in 0 153290 station_ip 5.120.191.154 153290 port 605 153290 unique_id port 153290 remote_ip 10.8.0.90 153293 username fezealinaghi 153293 kill_reason Another user logged on this global unique id 153293 mac 153293 bytes_out 0 153293 bytes_in 0 153293 station_ip 83.123.81.61 153293 port 597 153293 unique_id port 153293 remote_ip 10.8.0.78 153294 username barzegar 153294 mac 153294 bytes_out 0 153294 bytes_in 0 153294 station_ip 5.119.104.167 153294 port 301 153294 unique_id port 153294 remote_ip 10.8.1.174 153296 username kalantary 153296 kill_reason Another user logged on this global unique id 153296 mac 153296 bytes_out 0 153296 bytes_in 0 153296 station_ip 83.122.16.99 153296 port 603 153296 unique_id port 153296 remote_ip 10.8.0.98 153300 username barzegar 153300 mac 153300 bytes_out 0 153300 bytes_in 0 153300 station_ip 5.119.104.167 153300 port 301 153300 unique_id port 153300 remote_ip 10.8.1.174 153302 username mehdizare 153302 mac 153302 bytes_out 0 153302 bytes_in 0 153302 station_ip 5.120.191.154 153302 port 605 153302 unique_id port 153302 remote_ip 10.8.0.90 153306 username zahra1101 153306 mac 153306 bytes_out 1451677 153306 bytes_in 23511725 153306 station_ip 5.120.144.104 153306 port 298 153306 unique_id port 153306 remote_ip 10.8.1.182 153308 username mahdiyehalizadeh 153308 mac 153308 bytes_out 0 153308 bytes_in 0 153308 station_ip 5.119.245.15 153308 port 594 153308 unique_id port 153308 remote_ip 10.8.0.82 153309 username khalili 153309 mac 153309 bytes_out 0 153309 bytes_in 0 153309 station_ip 5.119.205.43 153309 port 596 153309 unique_id port 153310 username barzegar 153310 mac 153310 bytes_out 0 153310 bytes_in 0 153310 station_ip 5.119.104.167 153310 port 594 153310 unique_id port 153310 remote_ip 10.8.0.234 153314 username alipour 153314 mac 153314 bytes_out 215463 153314 bytes_in 1184965 153314 station_ip 37.129.93.37 153314 port 292 153314 unique_id port 153314 remote_ip 10.8.1.50 153318 username nilufarrajaei 153318 kill_reason Another user logged on this global unique id 153318 mac 153318 bytes_out 0 153318 bytes_in 0 153318 station_ip 37.129.42.46 153318 port 605 153318 unique_id port 153318 remote_ip 10.8.0.206 153319 username nilufarrajaei 153319 mac 153319 bytes_out 0 153319 bytes_in 0 153319 station_ip 37.129.42.46 153319 port 605 153319 unique_id port 153321 username aminvpn 153321 mac 153321 bytes_out 0 153321 bytes_in 0 153321 station_ip 83.122.223.194 153321 port 608 153321 unique_id port 153321 remote_ip 10.8.0.14 153323 username hosseine 153323 mac 153323 bytes_out 0 153323 bytes_in 0 153323 station_ip 37.129.7.130 153323 port 557 153323 unique_id port 153323 remote_ip 10.8.0.238 153324 username kalantary 153324 kill_reason Another user logged on this global unique id 153324 mac 153324 bytes_out 0 153324 bytes_in 0 153324 station_ip 83.122.22.211 153324 port 607 153324 unique_id port 153324 remote_ip 10.8.0.98 153325 username mehdizare 153325 mac 153325 bytes_out 0 153325 bytes_in 0 153325 station_ip 5.120.191.154 153325 port 603 153320 mac 153320 bytes_out 0 153320 bytes_in 0 153320 station_ip 83.123.81.61 153320 port 597 153320 unique_id port 153327 username nilufarrajaei 153327 kill_reason Another user logged on this global unique id 153327 mac 153327 bytes_out 0 153327 bytes_in 0 153327 station_ip 37.129.42.46 153327 port 594 153327 unique_id port 153327 remote_ip 10.8.0.206 153328 username aminvpn 153328 mac 153328 bytes_out 0 153328 bytes_in 0 153328 station_ip 83.122.223.194 153328 port 605 153328 unique_id port 153328 remote_ip 10.8.0.14 153329 username hosseine 153329 mac 153329 bytes_out 0 153329 bytes_in 0 153329 station_ip 37.129.7.130 153329 port 603 153329 unique_id port 153329 remote_ip 10.8.0.238 153332 username nilufarrajaei 153332 mac 153332 bytes_out 0 153332 bytes_in 0 153332 station_ip 37.129.42.46 153332 port 594 153332 unique_id port 153332 remote_ip 10.8.0.206 153334 username saeed9658 153334 mac 153334 bytes_out 0 153334 bytes_in 0 153334 station_ip 5.119.183.45 153334 port 557 153334 unique_id port 153334 remote_ip 10.8.0.62 153338 username meysam 153338 mac 153338 bytes_out 0 153338 bytes_in 0 153338 station_ip 188.158.48.128 153338 port 603 153338 unique_id port 153338 remote_ip 10.8.0.110 153341 username mehdizare 153341 mac 153341 bytes_out 0 153341 bytes_in 0 153341 station_ip 5.120.191.154 153341 port 557 153341 unique_id port 153341 remote_ip 10.8.0.90 153342 username farhad2 153342 kill_reason Another user logged on this global unique id 153342 mac 153342 bytes_out 0 153342 bytes_in 0 153342 station_ip 5.119.22.250 153342 port 595 153342 unique_id port 153346 username mosi 153346 kill_reason Another user logged on this global unique id 153346 mac 153346 bytes_out 0 153346 bytes_in 0 153346 station_ip 151.235.95.177 153346 port 594 153346 unique_id port 153346 remote_ip 10.8.0.138 153347 username nilufarrajaei 153347 mac 153347 bytes_out 1627318 153347 bytes_in 27535328 153347 station_ip 37.129.42.46 153347 port 605 153347 unique_id port 153347 remote_ip 10.8.0.206 153348 username farhad2 153348 mac 153348 bytes_out 0 153348 bytes_in 0 153348 station_ip 5.119.22.250 153348 port 595 153348 unique_id port 153352 username tahmasebi 153352 kill_reason Another user logged on this global unique id 153352 mac 153352 bytes_out 0 153352 bytes_in 0 153352 station_ip 5.120.52.130 153352 port 607 153352 unique_id port 153352 remote_ip 10.8.0.42 153355 username meysam 153355 mac 153355 bytes_out 537397 153355 bytes_in 7409714 153355 station_ip 188.158.48.128 153355 port 595 153355 unique_id port 153355 remote_ip 10.8.0.110 153357 username zahra1101 153357 mac 153357 bytes_out 1363184 153357 bytes_in 25841747 153357 station_ip 5.120.144.104 153357 port 298 153357 unique_id port 153357 remote_ip 10.8.1.182 153358 username zahra1101 153358 mac 153358 bytes_out 0 153358 bytes_in 0 153358 station_ip 5.120.144.104 153358 port 298 153358 unique_id port 153358 remote_ip 10.8.1.182 153360 username farhad2 153360 mac 153360 bytes_out 0 153360 bytes_in 0 153360 station_ip 5.120.136.250 153360 port 302 153360 unique_id port 153360 remote_ip 10.8.1.222 153361 username farhad2 153361 mac 153361 bytes_out 0 153361 bytes_in 0 153361 station_ip 5.120.136.250 153361 port 302 153361 unique_id port 153361 remote_ip 10.8.1.222 153362 username barzegar 153362 mac 153362 bytes_out 0 153362 bytes_in 0 153362 station_ip 5.119.104.167 153362 port 595 153362 unique_id port 153362 remote_ip 10.8.0.234 153325 unique_id port 153325 remote_ip 10.8.0.90 153326 username hosseine 153326 mac 153326 bytes_out 0 153326 bytes_in 0 153326 station_ip 37.129.7.130 153326 port 557 153326 unique_id port 153326 remote_ip 10.8.0.238 153330 username barzegar 153330 mac 153330 bytes_out 0 153330 bytes_in 0 153330 station_ip 5.119.104.167 153330 port 299 153330 unique_id port 153330 remote_ip 10.8.1.174 153333 username kalantary 153333 kill_reason Another user logged on this global unique id 153333 mac 153333 bytes_out 0 153333 bytes_in 0 153333 station_ip 83.122.22.211 153333 port 607 153333 unique_id port 153337 username barzegar 153337 mac 153337 bytes_out 0 153337 bytes_in 0 153337 station_ip 5.119.104.167 153337 port 302 153337 unique_id port 153337 remote_ip 10.8.1.174 153340 username farhad2 153340 kill_reason Another user logged on this global unique id 153340 mac 153340 bytes_out 0 153340 bytes_in 0 153340 station_ip 5.119.22.250 153340 port 595 153340 unique_id port 153340 remote_ip 10.8.0.190 153343 username barzegar 153343 mac 153343 bytes_out 0 153343 bytes_in 0 153343 station_ip 5.119.104.167 153343 port 557 153343 unique_id port 153343 remote_ip 10.8.0.234 153344 username barzegar 153344 mac 153344 bytes_out 0 153344 bytes_in 0 153344 station_ip 5.119.104.167 153344 port 557 153344 unique_id port 153344 remote_ip 10.8.0.234 153351 username saeed9658 153351 mac 153351 bytes_out 0 153351 bytes_in 0 153351 station_ip 5.119.183.45 153351 port 605 153351 unique_id port 153351 remote_ip 10.8.0.62 153356 username mohammadmahdi 153356 kill_reason Another user logged on this global unique id 153356 mac 153356 bytes_out 0 153356 bytes_in 0 153356 station_ip 5.120.35.227 153356 port 603 153356 unique_id port 153356 remote_ip 10.8.0.54 153366 username zahra1101 153366 mac 153366 bytes_out 0 153366 bytes_in 0 153366 station_ip 5.120.144.104 153366 port 298 153366 unique_id port 153366 remote_ip 10.8.1.182 153369 username barzegar 153369 mac 153369 bytes_out 0 153369 bytes_in 0 153369 station_ip 5.119.104.167 153369 port 605 153369 unique_id port 153369 remote_ip 10.8.0.234 153372 username kalantary 153372 mac 153372 bytes_out 0 153372 bytes_in 0 153372 station_ip 83.122.80.215 153372 port 603 153372 unique_id port 153372 remote_ip 10.8.0.98 153375 username tahmasebi 153375 kill_reason Another user logged on this global unique id 153375 mac 153375 bytes_out 0 153375 bytes_in 0 153375 station_ip 5.120.52.130 153375 port 607 153375 unique_id port 153381 username mosi 153381 kill_reason Another user logged on this global unique id 153381 mac 153381 bytes_out 0 153381 bytes_in 0 153381 station_ip 151.235.95.177 153381 port 594 153381 unique_id port 153383 username barzegar 153383 mac 153383 bytes_out 0 153383 bytes_in 0 153383 station_ip 5.119.104.167 153383 port 303 153383 unique_id port 153383 remote_ip 10.8.1.174 153385 username tahmasebi 153385 mac 153385 bytes_out 0 153385 bytes_in 0 153385 station_ip 5.120.52.130 153385 port 603 153385 unique_id port 153385 remote_ip 10.8.0.42 153386 username hosseine 153386 mac 153386 bytes_out 318237 153386 bytes_in 2493349 153386 station_ip 37.129.7.130 153386 port 299 153386 unique_id port 153386 remote_ip 10.8.1.190 153388 username barzegar 153388 mac 153388 bytes_out 0 153388 bytes_in 0 153388 station_ip 5.119.104.167 153388 port 557 153388 unique_id port 153388 remote_ip 10.8.0.234 153390 username mosi 153390 kill_reason Another user logged on this global unique id 153390 mac 153363 username mohammadmahdi 153363 mac 153363 bytes_out 0 153363 bytes_in 0 153363 station_ip 5.120.35.227 153363 port 603 153363 unique_id port 153364 username zahra1101 153364 mac 153364 bytes_out 459934 153364 bytes_in 3992359 153364 station_ip 5.120.144.104 153364 port 298 153364 unique_id port 153364 remote_ip 10.8.1.182 153368 username tahmasebi 153368 kill_reason Another user logged on this global unique id 153368 mac 153368 bytes_out 0 153368 bytes_in 0 153368 station_ip 5.120.52.130 153368 port 607 153368 unique_id port 153370 username rezaei 153370 mac 153370 bytes_out 0 153370 bytes_in 0 153370 station_ip 5.120.96.217 153370 port 595 153370 unique_id port 153370 remote_ip 10.8.0.230 153374 username hosseine 153374 mac 153374 bytes_out 414684 153374 bytes_in 2765746 153374 station_ip 37.129.7.130 153374 port 299 153374 unique_id port 153374 remote_ip 10.8.1.190 153377 username nilufarrajaei 153377 kill_reason Another user logged on this global unique id 153377 mac 153377 bytes_out 0 153377 bytes_in 0 153377 station_ip 37.129.42.46 153377 port 557 153377 unique_id port 153377 remote_ip 10.8.0.206 153382 username tahmasebi 153382 mac 153382 bytes_out 0 153382 bytes_in 0 153382 station_ip 5.120.52.130 153382 port 607 153382 unique_id port 153382 remote_ip 10.8.0.42 153387 username sedighe 153387 mac 153387 bytes_out 0 153387 bytes_in 0 153387 station_ip 83.122.112.56 153387 port 608 153387 unique_id port 153387 remote_ip 10.8.0.146 153391 username barzegar 153391 mac 153391 bytes_out 0 153391 bytes_in 0 153391 station_ip 5.119.104.167 153391 port 557 153391 unique_id port 153391 remote_ip 10.8.0.234 153393 username farhad2 153393 mac 153393 bytes_out 3036521 153393 bytes_in 17234006 153393 station_ip 5.120.136.250 153393 port 302 153393 unique_id port 153393 remote_ip 10.8.1.222 153394 username barzegar 153394 mac 153394 bytes_out 0 153394 bytes_in 0 153394 station_ip 5.119.104.167 153394 port 557 153394 unique_id port 153394 remote_ip 10.8.0.234 153397 username barzegar 153397 mac 153397 bytes_out 0 153397 bytes_in 0 153397 station_ip 5.119.104.167 153397 port 299 153397 unique_id port 153397 remote_ip 10.8.1.174 153402 username moradi 153402 mac 153402 bytes_out 220503 153402 bytes_in 796188 153402 station_ip 46.225.213.237 153402 port 584 153402 unique_id port 153402 remote_ip 10.8.0.226 153407 username zahra1101 153407 mac 153407 bytes_out 89714 153407 bytes_in 352161 153407 station_ip 5.120.144.104 153407 port 298 153407 unique_id port 153407 remote_ip 10.8.1.182 153409 username kordestani 153409 kill_reason Another user logged on this global unique id 153409 mac 153409 bytes_out 0 153409 bytes_in 0 153409 station_ip 151.235.116.251 153409 port 301 153409 unique_id port 153409 remote_ip 10.8.1.98 153410 username kalantary 153410 mac 153410 bytes_out 0 153410 bytes_in 0 153410 station_ip 83.122.99.155 153410 port 608 153410 unique_id port 153412 username kordestani 153412 mac 153412 bytes_out 0 153412 bytes_in 0 153412 station_ip 151.235.116.251 153412 port 301 153412 unique_id port 153414 username pourshad 153414 mac 153414 bytes_out 0 153414 bytes_in 0 153414 station_ip 5.119.198.25 153414 port 584 153414 unique_id port 153414 remote_ip 10.8.0.18 153418 username mehdizare 153418 mac 153418 bytes_out 0 153418 bytes_in 0 153418 station_ip 5.120.191.154 153418 port 606 153418 unique_id port 153418 remote_ip 10.8.0.90 153421 username zahra1101 153421 mac 153365 mac 153365 bytes_out 0 153365 bytes_in 0 153365 station_ip 5.119.104.167 153365 port 603 153365 unique_id port 153365 remote_ip 10.8.0.234 153367 username hamidsalari 153367 kill_reason Another user logged on this global unique id 153367 mac 153367 bytes_out 0 153367 bytes_in 0 153367 station_ip 5.120.156.174 153367 port 584 153367 unique_id port 153367 remote_ip 10.8.0.222 153371 username hamidsalari 153371 mac 153371 bytes_out 0 153371 bytes_in 0 153371 station_ip 5.120.156.174 153371 port 584 153371 unique_id port 153373 username farhad2 153373 mac 153373 bytes_out 1484085 153373 bytes_in 15722732 153373 station_ip 5.120.136.250 153373 port 302 153373 unique_id port 153373 remote_ip 10.8.1.222 153376 username barzegar 153376 mac 153376 bytes_out 0 153376 bytes_in 0 153376 station_ip 5.119.104.167 153376 port 303 153376 unique_id port 153376 remote_ip 10.8.1.174 153378 username tahmasebi 153378 mac 153378 bytes_out 0 153378 bytes_in 0 153378 station_ip 5.120.52.130 153378 port 607 153378 unique_id port 153379 username barzegar 153379 mac 153379 bytes_out 7978 153379 bytes_in 19023 153379 station_ip 5.119.104.167 153379 port 303 153379 unique_id port 153379 remote_ip 10.8.1.174 153380 username sedighe 153380 mac 153380 bytes_out 0 153380 bytes_in 0 153380 station_ip 83.122.167.175 153380 port 603 153380 unique_id port 153380 remote_ip 10.8.0.146 153384 username nilufarrajaei 153384 mac 153384 bytes_out 0 153384 bytes_in 0 153384 station_ip 37.129.42.46 153384 port 557 153384 unique_id port 153389 username barzegar 153389 mac 153389 bytes_out 0 153389 bytes_in 0 153389 station_ip 5.119.104.167 153389 port 557 153389 unique_id port 153389 remote_ip 10.8.0.234 153400 username malekpoir 153400 mac 153400 bytes_out 0 153400 bytes_in 0 153400 station_ip 5.119.182.193 153400 port 301 153400 unique_id port 153400 remote_ip 10.8.1.54 153401 username aminvpn 153401 mac 153401 bytes_out 0 153401 bytes_in 0 153401 station_ip 83.122.224.89 153401 port 557 153401 unique_id port 153401 remote_ip 10.8.0.14 153403 username barzegar 153403 mac 153403 bytes_out 0 153403 bytes_in 0 153403 station_ip 5.119.104.167 153403 port 557 153403 unique_id port 153403 remote_ip 10.8.0.234 153404 username fezealinaghi 153404 kill_reason Another user logged on this global unique id 153404 mac 153404 bytes_out 0 153404 bytes_in 0 153404 station_ip 83.123.81.61 153404 port 597 153404 unique_id port 153408 username moradi 153408 mac 153408 bytes_out 0 153408 bytes_in 0 153408 station_ip 83.122.88.40 153408 port 607 153408 unique_id port 153408 remote_ip 10.8.0.226 153411 username rezaei 153411 mac 153411 bytes_out 0 153411 bytes_in 0 153411 station_ip 5.120.96.217 153411 port 605 153411 unique_id port 153411 remote_ip 10.8.0.230 153413 username alipour 153413 mac 153413 bytes_out 829860 153413 bytes_in 8457328 153413 station_ip 37.129.93.37 153413 port 292 153413 unique_id port 153413 remote_ip 10.8.1.50 153415 username kalantary 153415 mac 153415 bytes_out 0 153415 bytes_in 0 153415 station_ip 83.122.99.155 153415 port 603 153415 unique_id port 153415 remote_ip 10.8.0.98 153426 username zahra1101 153426 mac 153426 bytes_out 0 153426 bytes_in 0 153426 station_ip 5.120.144.104 153426 port 298 153426 unique_id port 153426 remote_ip 10.8.1.182 153429 username malekpoir 153429 mac 153429 bytes_out 0 153429 bytes_in 0 153429 station_ip 5.119.182.193 153390 bytes_out 0 153390 bytes_in 0 153390 station_ip 151.235.95.177 153390 port 594 153390 unique_id port 153392 username barzegar 153392 mac 153392 bytes_out 0 153392 bytes_in 0 153392 station_ip 5.119.104.167 153392 port 557 153392 unique_id port 153392 remote_ip 10.8.0.234 153395 username tahmasebi 153395 mac 153395 bytes_out 0 153395 bytes_in 0 153395 station_ip 5.120.52.130 153395 port 609 153395 unique_id port 153395 remote_ip 10.8.0.42 153396 username sedighe 153396 mac 153396 bytes_out 94810 153396 bytes_in 108356 153396 station_ip 83.122.197.65 153396 port 607 153396 unique_id port 153396 remote_ip 10.8.0.146 153398 username mosi 153398 kill_reason Another user logged on this global unique id 153398 mac 153398 bytes_out 0 153398 bytes_in 0 153398 station_ip 151.235.95.177 153398 port 594 153398 unique_id port 153399 username barzegar 153399 mac 153399 bytes_out 0 153399 bytes_in 0 153399 station_ip 5.119.104.167 153399 port 607 153399 unique_id port 153399 remote_ip 10.8.0.234 153405 username kalantary 153405 kill_reason Another user logged on this global unique id 153405 mac 153405 bytes_out 0 153405 bytes_in 0 153405 station_ip 83.122.99.155 153405 port 608 153405 unique_id port 153405 remote_ip 10.8.0.98 153406 username hosseine 153406 mac 153406 bytes_out 0 153406 bytes_in 0 153406 station_ip 37.129.7.130 153406 port 603 153406 unique_id port 153406 remote_ip 10.8.0.238 153416 username malekpoir 153416 mac 153416 bytes_out 327436 153416 bytes_in 1600980 153416 station_ip 5.119.182.193 153416 port 302 153416 unique_id port 153416 remote_ip 10.8.1.54 153417 username nilufarrajaei 153417 mac 153417 bytes_out 3084322 153417 bytes_in 30746601 153417 station_ip 37.129.42.46 153417 port 303 153417 unique_id port 153417 remote_ip 10.8.1.166 153419 username alipour 153419 mac 153419 bytes_out 0 153419 bytes_in 0 153419 station_ip 37.129.93.37 153419 port 605 153419 unique_id port 153419 remote_ip 10.8.0.102 153420 username zahra1101 153420 mac 153420 bytes_out 374486 153420 bytes_in 4615007 153420 station_ip 5.120.144.104 153420 port 298 153420 unique_id port 153420 remote_ip 10.8.1.182 153424 username pourshad 153424 mac 153424 bytes_out 139490 153424 bytes_in 102012 153424 station_ip 5.119.198.25 153424 port 292 153424 unique_id port 153424 remote_ip 10.8.1.154 153425 username sedighe 153425 mac 153425 bytes_out 0 153425 bytes_in 0 153425 station_ip 83.122.139.207 153425 port 609 153425 unique_id port 153425 remote_ip 10.8.0.146 153427 username zahra1101 153427 mac 153427 bytes_out 0 153427 bytes_in 0 153427 station_ip 5.120.144.104 153427 port 292 153427 unique_id port 153427 remote_ip 10.8.1.182 153428 username meysam 153428 mac 153428 bytes_out 548154 153428 bytes_in 7630486 153428 station_ip 188.158.51.70 153428 port 603 153428 unique_id port 153428 remote_ip 10.8.0.110 153431 username pourshad 153431 mac 153431 bytes_out 10216 153431 bytes_in 24653 153431 station_ip 5.119.198.25 153431 port 303 153431 unique_id port 153431 remote_ip 10.8.1.154 153436 username farhad2 153436 kill_reason Another user logged on this global unique id 153436 mac 153436 bytes_out 0 153436 bytes_in 0 153436 station_ip 5.120.136.250 153436 port 299 153436 unique_id port 153436 remote_ip 10.8.1.222 153438 username vanila 153438 mac 153438 bytes_out 0 153438 bytes_in 0 153438 station_ip 37.129.87.249 153438 port 584 153438 unique_id port 153438 remote_ip 10.8.0.178 153441 username mosi 153421 bytes_out 0 153421 bytes_in 0 153421 station_ip 5.120.144.104 153421 port 298 153421 unique_id port 153421 remote_ip 10.8.1.182 153422 username zahra1101 153422 mac 153422 bytes_out 0 153422 bytes_in 0 153422 station_ip 5.120.144.104 153422 port 298 153422 unique_id port 153422 remote_ip 10.8.1.182 153423 username mehdizare 153423 mac 153423 bytes_out 0 153423 bytes_in 0 153423 station_ip 5.120.191.154 153423 port 584 153423 unique_id port 153423 remote_ip 10.8.0.90 153430 username zahra1101 153430 mac 153430 bytes_out 0 153430 bytes_in 0 153430 station_ip 5.120.144.104 153430 port 292 153430 unique_id port 153430 remote_ip 10.8.1.182 153432 username zahra1101 153432 mac 153432 bytes_out 2371 153432 bytes_in 4884 153432 station_ip 5.120.144.104 153432 port 292 153432 unique_id port 153432 remote_ip 10.8.1.182 153434 username zahra1101 153434 mac 153434 bytes_out 0 153434 bytes_in 0 153434 station_ip 5.120.144.104 153434 port 292 153434 unique_id port 153434 remote_ip 10.8.1.182 153435 username barzegar 153435 mac 153435 bytes_out 0 153435 bytes_in 0 153435 station_ip 5.113.129.184 153435 port 301 153435 unique_id port 153435 remote_ip 10.8.1.174 153437 username sedighe 153437 mac 153437 bytes_out 17957 153437 bytes_in 16758 153437 station_ip 83.122.139.207 153437 port 584 153437 unique_id port 153437 remote_ip 10.8.0.146 153442 username forozandeh1 153442 mac 153442 bytes_out 0 153442 bytes_in 0 153442 station_ip 83.122.173.110 153442 port 605 153442 unique_id port 153442 remote_ip 10.8.0.130 153448 username zahra1101 153448 mac 153448 bytes_out 0 153448 bytes_in 0 153448 station_ip 5.120.144.104 153448 port 292 153448 unique_id port 153448 remote_ip 10.8.1.182 153449 username zahra1101 153449 mac 153449 bytes_out 0 153449 bytes_in 0 153449 station_ip 5.120.144.104 153449 port 292 153449 unique_id port 153449 remote_ip 10.8.1.182 153451 username sedighe 153451 mac 153451 bytes_out 106283 153451 bytes_in 269632 153451 station_ip 83.122.139.207 153451 port 301 153451 unique_id port 153451 remote_ip 10.8.1.78 153452 username sedighe 153452 mac 153452 bytes_out 0 153452 bytes_in 0 153452 station_ip 83.122.139.207 153452 port 299 153452 unique_id port 153452 remote_ip 10.8.1.78 153453 username hashtadani4 153453 mac 153453 bytes_out 0 153453 bytes_in 0 153453 station_ip 83.122.189.39 153453 port 584 153453 unique_id port 153453 remote_ip 10.8.0.182 153454 username hashtadani4 153454 kill_reason Maximum number of concurrent logins reached 153454 mac 153454 bytes_out 0 153454 bytes_in 0 153454 station_ip 83.122.189.39 153454 port 605 153454 unique_id port 153458 username hashtadani4 153458 kill_reason Maximum number of concurrent logins reached 153458 mac 153458 bytes_out 0 153458 bytes_in 0 153458 station_ip 83.122.189.39 153458 port 605 153458 unique_id port 153462 username hashtadani4 153462 kill_reason Maximum check online fails reached 153462 mac 153462 bytes_out 0 153462 bytes_in 0 153462 station_ip 83.122.189.39 153462 port 584 153462 unique_id port 153465 username hashtadani4 153465 kill_reason Maximum number of concurrent logins reached 153465 mac 153465 bytes_out 0 153465 bytes_in 0 153465 station_ip 83.122.189.39 153465 port 609 153465 unique_id port 153468 username fezealinaghi 153468 kill_reason Another user logged on this global unique id 153468 mac 153468 bytes_out 0 153468 bytes_in 0 153468 station_ip 83.123.81.61 153468 port 597 153468 unique_id port 153470 username hashtadani4 153429 port 301 153429 unique_id port 153429 remote_ip 10.8.1.54 153433 username mosi 153433 kill_reason Another user logged on this global unique id 153433 mac 153433 bytes_out 0 153433 bytes_in 0 153433 station_ip 151.235.95.177 153433 port 594 153433 unique_id port 153439 username vanila 153439 mac 153439 bytes_out 0 153439 bytes_in 0 153439 station_ip 37.129.87.249 153439 port 608 153439 unique_id port 153439 remote_ip 10.8.0.178 153440 username mehdizare 153440 mac 153440 bytes_out 0 153440 bytes_in 0 153440 station_ip 5.120.191.154 153440 port 603 153440 unique_id port 153440 remote_ip 10.8.0.90 153444 username farhad2 153444 mac 153444 bytes_out 0 153444 bytes_in 0 153444 station_ip 5.120.136.250 153444 port 299 153444 unique_id port 153446 username zahra1101 153446 mac 153446 bytes_out 4016852 153446 bytes_in 15117242 153446 station_ip 5.120.144.104 153446 port 292 153446 unique_id port 153446 remote_ip 10.8.1.182 153450 username zahra1101 153450 mac 153450 bytes_out 0 153450 bytes_in 0 153450 station_ip 5.120.144.104 153450 port 292 153450 unique_id port 153450 remote_ip 10.8.1.182 153455 username hashtadani4 153455 kill_reason Maximum number of concurrent logins reached 153455 mac 153455 bytes_out 0 153455 bytes_in 0 153455 station_ip 83.122.189.39 153455 port 605 153455 unique_id port 153459 username hashtadani4 153459 kill_reason Maximum number of concurrent logins reached 153459 mac 153459 bytes_out 0 153459 bytes_in 0 153459 station_ip 83.122.189.39 153459 port 605 153459 unique_id port 153461 username hashtadani4 153461 kill_reason Maximum check online fails reached 153461 mac 153461 bytes_out 0 153461 bytes_in 0 153461 station_ip 83.122.189.39 153461 port 594 153461 unique_id port 153463 username hashtadani4 153463 kill_reason Maximum number of concurrent logins reached 153463 mac 153463 bytes_out 0 153463 bytes_in 0 153463 station_ip 83.122.189.39 153463 port 609 153463 unique_id port 153466 username hashtadani4 153466 kill_reason Maximum number of concurrent logins reached 153466 mac 153466 bytes_out 0 153466 bytes_in 0 153466 station_ip 83.122.189.39 153466 port 609 153466 unique_id port 153467 username hashtadani4 153467 kill_reason Maximum number of concurrent logins reached 153467 mac 153467 bytes_out 0 153467 bytes_in 0 153467 station_ip 83.122.189.39 153467 port 609 153467 unique_id port 153469 username hashtadani4 153469 kill_reason Maximum check online fails reached 153469 mac 153469 bytes_out 0 153469 bytes_in 0 153469 station_ip 83.122.189.39 153469 port 608 153469 unique_id port 153478 username pourshad 153478 mac 153478 bytes_out 71075 153478 bytes_in 570771 153478 station_ip 5.119.198.25 153478 port 299 153478 unique_id port 153478 remote_ip 10.8.1.154 153483 username hamidsalari 153483 kill_reason Another user logged on this global unique id 153483 mac 153483 bytes_out 0 153483 bytes_in 0 153483 station_ip 5.120.29.182 153483 port 595 153483 unique_id port 153484 username pourshad 153484 mac 153484 bytes_out 20397 153484 bytes_in 16987 153484 station_ip 5.119.198.25 153484 port 299 153484 unique_id port 153484 remote_ip 10.8.1.154 153487 username pourshad 153487 mac 153487 bytes_out 41941 153487 bytes_in 72867 153487 station_ip 5.119.198.25 153487 port 301 153487 unique_id port 153487 remote_ip 10.8.1.154 153494 username zahra1101 153494 mac 153494 bytes_out 1278483 153494 bytes_in 22172206 153494 station_ip 5.120.144.104 153494 port 292 153494 unique_id port 153494 remote_ip 10.8.1.182 153496 username zahra1101 153496 mac 153496 bytes_out 0 153441 mac 153441 bytes_out 0 153441 bytes_in 0 153441 station_ip 151.235.95.177 153441 port 594 153441 unique_id port 153443 username vanila 153443 mac 153443 bytes_out 0 153443 bytes_in 0 153443 station_ip 83.122.245.113 153443 port 584 153443 unique_id port 153443 remote_ip 10.8.0.178 153445 username pourshad 153445 mac 153445 bytes_out 153345 153445 bytes_in 310712 153445 station_ip 5.119.198.25 153445 port 298 153445 unique_id port 153445 remote_ip 10.8.1.154 153447 username nilufarrajaei 153447 mac 153447 bytes_out 799275 153447 bytes_in 5025975 153447 station_ip 37.129.42.46 153447 port 302 153447 unique_id port 153447 remote_ip 10.8.1.166 153456 username hashtadani4 153456 kill_reason Maximum number of concurrent logins reached 153456 mac 153456 bytes_out 0 153456 bytes_in 0 153456 station_ip 83.122.189.39 153456 port 605 153456 unique_id port 153457 username hashtadani4 153457 kill_reason Maximum number of concurrent logins reached 153457 mac 153457 bytes_out 0 153457 bytes_in 0 153457 station_ip 83.122.189.39 153457 port 605 153457 unique_id port 153460 username hashtadani4 153460 kill_reason Maximum number of concurrent logins reached 153460 mac 153460 bytes_out 0 153460 bytes_in 0 153460 station_ip 83.122.189.39 153460 port 605 153460 unique_id port 153464 username hashtadani4 153464 kill_reason Maximum number of concurrent logins reached 153464 mac 153464 bytes_out 0 153464 bytes_in 0 153464 station_ip 83.122.189.39 153464 port 609 153464 unique_id port 153471 username sedighe 153471 mac 153471 bytes_out 208995 153471 bytes_in 2296870 153471 station_ip 83.122.139.207 153471 port 299 153471 unique_id port 153471 remote_ip 10.8.1.78 153474 username fezealinaghi 153474 mac 153474 bytes_out 0 153474 bytes_in 0 153474 station_ip 83.123.81.61 153474 port 597 153474 unique_id port 153477 username barzegar 153477 mac 153477 bytes_out 0 153477 bytes_in 0 153477 station_ip 5.120.166.203 153477 port 597 153477 unique_id port 153477 remote_ip 10.8.0.234 153479 username barzegar 153479 mac 153479 bytes_out 0 153479 bytes_in 0 153479 station_ip 5.120.166.203 153479 port 597 153479 unique_id port 153479 remote_ip 10.8.0.234 153480 username barzegar 153480 mac 153480 bytes_out 0 153480 bytes_in 0 153480 station_ip 5.120.166.203 153480 port 597 153480 unique_id port 153480 remote_ip 10.8.0.234 153481 username rezaei 153481 mac 153481 bytes_out 0 153481 bytes_in 0 153481 station_ip 5.120.96.217 153481 port 609 153481 unique_id port 153481 remote_ip 10.8.0.230 153485 username moradi 153485 mac 153485 bytes_out 124167 153485 bytes_in 216995 153485 station_ip 83.122.88.40 153485 port 304 153485 unique_id port 153485 remote_ip 10.8.1.202 153488 username forozandeh1 153488 mac 153488 bytes_out 0 153488 bytes_in 0 153488 station_ip 113.203.29.75 153488 port 597 153488 unique_id port 153488 remote_ip 10.8.0.130 153489 username mohammadjavad 153489 mac 153489 bytes_out 0 153489 bytes_in 0 153489 station_ip 113.203.59.223 153489 port 612 153489 unique_id port 153489 remote_ip 10.8.0.142 153490 username barzegar 153490 mac 153490 bytes_out 0 153490 bytes_in 0 153490 station_ip 5.120.166.203 153490 port 301 153490 unique_id port 153490 remote_ip 10.8.1.174 153491 username hamidsalari 153491 kill_reason Another user logged on this global unique id 153491 mac 153491 bytes_out 0 153491 bytes_in 0 153491 station_ip 5.120.29.182 153491 port 595 153491 unique_id port 153492 username mehdizare 153492 mac 153492 bytes_out 0 153470 kill_reason Maximum check online fails reached 153470 mac 153470 bytes_out 0 153470 bytes_in 0 153470 station_ip 83.122.189.39 153470 port 605 153470 unique_id port 153472 username barzegar 153472 mac 153472 bytes_out 0 153472 bytes_in 0 153472 station_ip 5.120.166.203 153472 port 612 153472 unique_id port 153472 remote_ip 10.8.0.234 153473 username malekpoir 153473 kill_reason Another user logged on this global unique id 153473 mac 153473 bytes_out 0 153473 bytes_in 0 153473 station_ip 5.119.182.193 153473 port 606 153473 unique_id port 153473 remote_ip 10.8.0.58 153475 username kalantary 153475 mac 153475 bytes_out 0 153475 bytes_in 0 153475 station_ip 83.122.48.215 153475 port 611 153475 unique_id port 153475 remote_ip 10.8.0.98 153476 username hamidsalari 153476 kill_reason Another user logged on this global unique id 153476 mac 153476 bytes_out 0 153476 bytes_in 0 153476 station_ip 5.120.29.182 153476 port 595 153476 unique_id port 153476 remote_ip 10.8.0.222 153482 username godarzi 153482 kill_reason Another user logged on this global unique id 153482 mac 153482 bytes_out 0 153482 bytes_in 0 153482 station_ip 5.202.24.27 153482 port 553 153482 unique_id port 153482 remote_ip 10.8.0.174 153486 username barzegar 153486 mac 153486 bytes_out 0 153486 bytes_in 0 153486 station_ip 5.120.166.203 153486 port 597 153486 unique_id port 153486 remote_ip 10.8.0.234 153493 username barzegar 153493 mac 153493 bytes_out 0 153493 bytes_in 0 153493 station_ip 5.120.166.203 153493 port 301 153493 unique_id port 153493 remote_ip 10.8.1.174 153499 username pourshad 153499 mac 153499 bytes_out 0 153499 bytes_in 0 153499 station_ip 5.119.198.25 153499 port 615 153499 unique_id port 153499 remote_ip 10.8.0.18 153500 username aminvpn 153500 kill_reason Another user logged on this global unique id 153500 mac 153500 bytes_out 0 153500 bytes_in 0 153500 station_ip 83.122.224.89 153500 port 557 153500 unique_id port 153500 remote_ip 10.8.0.14 153505 username zahra1101 153505 mac 153505 bytes_out 0 153505 bytes_in 0 153505 station_ip 5.120.144.104 153505 port 292 153505 unique_id port 153505 remote_ip 10.8.1.182 153514 username kordestani 153514 mac 153514 bytes_out 1830413 153514 bytes_in 38432499 153514 station_ip 151.235.122.45 153514 port 302 153514 unique_id port 153514 remote_ip 10.8.1.98 153518 username barzegar 153518 mac 153518 bytes_out 0 153518 bytes_in 0 153518 station_ip 5.120.116.59 153518 port 299 153518 unique_id port 153518 remote_ip 10.8.1.174 153519 username mehdizare 153519 mac 153519 bytes_out 0 153519 bytes_in 0 153519 station_ip 5.120.191.154 153519 port 609 153519 unique_id port 153519 remote_ip 10.8.0.90 153522 username barzegar 153522 mac 153522 bytes_out 0 153522 bytes_in 0 153522 station_ip 5.120.116.59 153522 port 612 153522 unique_id port 153522 remote_ip 10.8.0.234 153525 username mehdizare 153525 mac 153525 bytes_out 8633 153525 bytes_in 11466 153525 station_ip 5.120.191.154 153525 port 298 153525 unique_id port 153525 remote_ip 10.8.1.42 153529 username mohammadjavad 153529 mac 153529 bytes_out 0 153529 bytes_in 0 153529 station_ip 83.123.138.59 153529 port 597 153529 unique_id port 153529 remote_ip 10.8.0.142 153535 username zahra1101 153535 mac 153535 bytes_out 0 153535 bytes_in 0 153535 station_ip 5.120.96.45 153535 port 292 153535 unique_id port 153535 remote_ip 10.8.1.182 153536 username zahra1101 153536 mac 153536 bytes_out 2212 153536 bytes_in 4719 153536 station_ip 5.120.96.45 153492 bytes_in 0 153492 station_ip 5.120.191.154 153492 port 603 153492 unique_id port 153492 remote_ip 10.8.0.90 153495 username zahra1101 153495 mac 153495 bytes_out 0 153495 bytes_in 0 153495 station_ip 5.120.144.104 153495 port 292 153495 unique_id port 153495 remote_ip 10.8.1.182 153501 username malekpoir 153501 kill_reason Another user logged on this global unique id 153501 mac 153501 bytes_out 0 153501 bytes_in 0 153501 station_ip 5.119.182.193 153501 port 606 153501 unique_id port 153502 username pourshad 153502 mac 153502 bytes_out 37610 153502 bytes_in 53645 153502 station_ip 5.119.198.25 153502 port 301 153502 unique_id port 153502 remote_ip 10.8.1.154 153504 username zahra1101 153504 mac 153504 bytes_out 0 153504 bytes_in 0 153504 station_ip 5.120.144.104 153504 port 292 153504 unique_id port 153504 remote_ip 10.8.1.182 153507 username barzegar 153507 mac 153507 bytes_out 0 153507 bytes_in 0 153507 station_ip 5.120.116.59 153507 port 292 153507 unique_id port 153507 remote_ip 10.8.1.174 153509 username mehdizare 153509 mac 153509 bytes_out 0 153509 bytes_in 0 153509 station_ip 5.120.191.154 153509 port 611 153509 unique_id port 153509 remote_ip 10.8.0.90 153511 username saeed9658 153511 mac 153511 bytes_out 77902 153511 bytes_in 168477 153511 station_ip 5.120.130.212 153511 port 615 153511 unique_id port 153511 remote_ip 10.8.0.62 153512 username moradi 153512 mac 153512 bytes_out 18076 153512 bytes_in 25193 153512 station_ip 83.122.3.188 153512 port 303 153512 unique_id port 153512 remote_ip 10.8.1.202 153515 username kalantary 153515 mac 153515 bytes_out 0 153515 bytes_in 0 153515 station_ip 83.122.14.159 153515 port 609 153515 unique_id port 153517 username forozandeh1 153517 mac 153517 bytes_out 0 153517 bytes_in 0 153517 station_ip 113.203.29.75 153517 port 612 153517 unique_id port 153517 remote_ip 10.8.0.130 153521 username barzegar 153521 mac 153521 bytes_out 0 153521 bytes_in 0 153521 station_ip 5.120.116.59 153521 port 609 153521 unique_id port 153521 remote_ip 10.8.0.234 153523 username hamidsalari 153523 kill_reason Another user logged on this global unique id 153523 mac 153523 bytes_out 0 153523 bytes_in 0 153523 station_ip 5.120.29.182 153523 port 595 153523 unique_id port 153527 username barzegar 153527 mac 153527 bytes_out 0 153527 bytes_in 0 153527 station_ip 5.120.116.59 153527 port 609 153527 unique_id port 153527 remote_ip 10.8.0.234 153530 username barzegar 153530 mac 153530 bytes_out 0 153530 bytes_in 0 153530 station_ip 5.120.116.59 153530 port 609 153530 unique_id port 153530 remote_ip 10.8.0.234 153532 username pourshad 153532 mac 153532 bytes_out 0 153532 bytes_in 0 153532 station_ip 5.119.198.25 153532 port 301 153532 unique_id port 153532 remote_ip 10.8.1.154 153534 username zahra1101 153534 mac 153534 bytes_out 0 153534 bytes_in 0 153534 station_ip 5.120.96.45 153534 port 292 153534 unique_id port 153534 remote_ip 10.8.1.182 153538 username aminvpn 153538 kill_reason Another user logged on this global unique id 153538 mac 153538 bytes_out 0 153538 bytes_in 0 153538 station_ip 83.122.224.89 153538 port 557 153538 unique_id port 153540 username aminvpn 153540 mac 153540 bytes_out 0 153540 bytes_in 0 153540 station_ip 5.119.31.163 153540 port 603 153540 unique_id port 153540 remote_ip 10.8.0.14 153542 username tahmasebi 153542 mac 153542 bytes_out 0 153542 bytes_in 0 153542 station_ip 5.119.169.47 153542 port 611 153496 bytes_in 0 153496 station_ip 5.120.144.104 153496 port 292 153496 unique_id port 153496 remote_ip 10.8.1.182 153497 username zahra1101 153497 mac 153497 bytes_out 0 153497 bytes_in 0 153497 station_ip 5.120.144.104 153497 port 292 153497 unique_id port 153497 remote_ip 10.8.1.182 153498 username pourshad 153498 mac 153498 bytes_out 0 153498 bytes_in 0 153498 station_ip 5.119.198.25 153498 port 597 153498 unique_id port 153498 remote_ip 10.8.0.18 153503 username barzegar 153503 mac 153503 bytes_out 0 153503 bytes_in 0 153503 station_ip 5.120.116.59 153503 port 615 153503 unique_id port 153503 remote_ip 10.8.0.234 153506 username moradi 153506 mac 153506 bytes_out 64714 153506 bytes_in 105600 153506 station_ip 46.225.209.210 153506 port 299 153506 unique_id port 153506 remote_ip 10.8.1.202 153508 username zahra1101 153508 mac 153508 bytes_out 0 153508 bytes_in 0 153508 station_ip 5.120.96.45 153508 port 299 153508 unique_id port 153508 remote_ip 10.8.1.182 153510 username kalantary 153510 kill_reason Another user logged on this global unique id 153510 mac 153510 bytes_out 0 153510 bytes_in 0 153510 station_ip 83.122.14.159 153510 port 609 153510 unique_id port 153510 remote_ip 10.8.0.98 153513 username nilufarrajaei 153513 mac 153513 bytes_out 2364231 153513 bytes_in 26203488 153513 station_ip 37.129.42.46 153513 port 298 153513 unique_id port 153513 remote_ip 10.8.1.166 153516 username mehdizare 153516 mac 153516 bytes_out 0 153516 bytes_in 0 153516 station_ip 5.120.191.154 153516 port 616 153516 unique_id port 153516 remote_ip 10.8.0.90 153520 username aminvpn 153520 kill_reason Another user logged on this global unique id 153520 mac 153520 bytes_out 0 153520 bytes_in 0 153520 station_ip 83.122.224.89 153520 port 557 153520 unique_id port 153524 username mehdizare 153524 mac 153524 bytes_out 4710 153524 bytes_in 8602 153524 station_ip 5.120.191.154 153524 port 609 153524 unique_id port 153524 remote_ip 10.8.0.90 153526 username mohammadmahdi 153526 mac 153526 bytes_out 0 153526 bytes_in 0 153526 station_ip 5.120.35.227 153526 port 613 153526 unique_id port 153526 remote_ip 10.8.0.54 153528 username jafari 153528 kill_reason Another user logged on this global unique id 153528 mac 153528 bytes_out 0 153528 bytes_in 0 153528 station_ip 94.24.16.164 153528 port 614 153528 unique_id port 153528 remote_ip 10.8.0.242 153531 username mehdizare 153531 mac 153531 bytes_out 9369 153531 bytes_in 13577 153531 station_ip 5.120.191.154 153531 port 298 153531 unique_id port 153531 remote_ip 10.8.1.42 153533 username godarzi 153533 kill_reason Another user logged on this global unique id 153533 mac 153533 bytes_out 0 153533 bytes_in 0 153533 station_ip 5.202.24.27 153533 port 553 153533 unique_id port 153541 username tahmasebi 153541 kill_reason Another user logged on this global unique id 153541 mac 153541 bytes_out 0 153541 bytes_in 0 153541 station_ip 5.119.169.47 153541 port 611 153541 unique_id port 153541 remote_ip 10.8.0.42 153543 username malekpoir 153543 kill_reason Another user logged on this global unique id 153543 mac 153543 bytes_out 0 153543 bytes_in 0 153543 station_ip 5.119.182.193 153543 port 606 153543 unique_id port 153547 username jafari 153547 kill_reason Another user logged on this global unique id 153547 mac 153547 bytes_out 0 153547 bytes_in 0 153547 station_ip 94.24.16.164 153547 port 614 153547 unique_id port 153548 username barzegar 153548 mac 153548 bytes_out 0 153548 bytes_in 0 153548 station_ip 5.120.116.59 153548 port 611 153536 port 292 153536 unique_id port 153536 remote_ip 10.8.1.182 153537 username yarmohamadi 153537 mac 153537 bytes_out 6355446 153537 bytes_in 28354087 153537 station_ip 5.119.146.146 153537 port 603 153537 unique_id port 153537 remote_ip 10.8.0.150 153539 username aminvpn 153539 mac 153539 bytes_out 0 153539 bytes_in 0 153539 station_ip 83.122.224.89 153539 port 557 153539 unique_id port 153544 username mehdizare 153544 mac 153544 bytes_out 14751 153544 bytes_in 17656 153544 station_ip 5.120.191.154 153544 port 292 153544 unique_id port 153544 remote_ip 10.8.1.42 153546 username vanila 153546 mac 153546 bytes_out 0 153546 bytes_in 0 153546 station_ip 83.122.172.17 153546 port 611 153546 unique_id port 153546 remote_ip 10.8.0.178 153550 username aminvpn 153550 kill_reason Another user logged on this global unique id 153550 mac 153550 bytes_out 0 153550 bytes_in 0 153550 station_ip 83.122.224.89 153550 port 609 153550 unique_id port 153550 remote_ip 10.8.0.14 153553 username sedighe 153553 mac 153553 bytes_out 0 153553 bytes_in 0 153553 station_ip 83.122.139.207 153553 port 612 153553 unique_id port 153553 remote_ip 10.8.0.146 153555 username mohammadjavad 153555 mac 153555 bytes_out 0 153555 bytes_in 0 153555 station_ip 83.122.150.200 153555 port 557 153555 unique_id port 153555 remote_ip 10.8.0.142 153559 username alipour 153559 mac 153559 bytes_out 0 153559 bytes_in 0 153559 station_ip 37.129.93.37 153559 port 607 153559 unique_id port 153559 remote_ip 10.8.0.102 153560 username mehdizare 153560 mac 153560 bytes_out 26127 153560 bytes_in 42079 153560 station_ip 5.120.191.154 153560 port 292 153560 unique_id port 153560 remote_ip 10.8.1.42 153566 username hamidsalari 153566 kill_reason Another user logged on this global unique id 153566 mac 153566 bytes_out 0 153566 bytes_in 0 153566 station_ip 5.120.29.182 153566 port 595 153566 unique_id port 153567 username godarzi 153567 kill_reason Another user logged on this global unique id 153567 mac 153567 bytes_out 0 153567 bytes_in 0 153567 station_ip 5.202.24.27 153567 port 553 153567 unique_id port 153568 username zahra1101 153568 kill_reason Another user logged on this global unique id 153568 mac 153568 bytes_out 0 153568 bytes_in 0 153568 station_ip 5.120.96.45 153568 port 597 153568 unique_id port 153568 remote_ip 10.8.0.162 153569 username yaghobi 153569 mac 153569 bytes_out 0 153569 bytes_in 0 153569 station_ip 83.123.234.145 153569 port 611 153569 unique_id port 153569 remote_ip 10.8.0.198 153570 username moradi 153570 kill_reason Another user logged on this global unique id 153570 mac 153570 bytes_out 0 153570 bytes_in 0 153570 station_ip 46.225.209.210 153570 port 557 153570 unique_id port 153570 remote_ip 10.8.0.226 153575 username jafari 153575 kill_reason Another user logged on this global unique id 153575 mac 153575 bytes_out 0 153575 bytes_in 0 153575 station_ip 94.24.16.164 153575 port 614 153575 unique_id port 153576 username mehdizare 153576 mac 153576 bytes_out 0 153576 bytes_in 0 153576 station_ip 5.120.191.154 153576 port 613 153576 unique_id port 153576 remote_ip 10.8.0.90 153579 username hamidsalari 153579 kill_reason Another user logged on this global unique id 153579 mac 153579 bytes_out 0 153579 bytes_in 0 153579 station_ip 5.120.29.182 153579 port 595 153579 unique_id port 153584 username malekpoir 153584 kill_reason Another user logged on this global unique id 153584 mac 153584 bytes_out 0 153584 bytes_in 0 153584 station_ip 5.119.182.193 153584 port 606 153584 unique_id port 153542 unique_id port 153545 username godarzi 153545 kill_reason Another user logged on this global unique id 153545 mac 153545 bytes_out 0 153545 bytes_in 0 153545 station_ip 5.202.24.27 153545 port 553 153545 unique_id port 153549 username kalantary 153549 mac 153549 bytes_out 0 153549 bytes_in 0 153549 station_ip 83.122.107.195 153549 port 613 153549 unique_id port 153549 remote_ip 10.8.0.98 153561 username godarzi 153561 kill_reason Another user logged on this global unique id 153561 mac 153561 bytes_out 0 153561 bytes_in 0 153561 station_ip 5.202.24.27 153561 port 553 153561 unique_id port 153563 username milan 153563 kill_reason Another user logged on this global unique id 153563 mac 153563 bytes_out 0 153563 bytes_in 0 153563 station_ip 5.120.37.194 153563 port 598 153563 unique_id port 153572 username hamidsalari 153572 kill_reason Another user logged on this global unique id 153572 mac 153572 bytes_out 0 153572 bytes_in 0 153572 station_ip 5.120.29.182 153572 port 595 153572 unique_id port 153573 username zahra1101 153573 mac 153573 bytes_out 0 153573 bytes_in 0 153573 station_ip 5.120.96.45 153573 port 597 153573 unique_id port 153573 remote_ip 10.8.0.162 153574 username milan 153574 kill_reason Another user logged on this global unique id 153574 mac 153574 bytes_out 0 153574 bytes_in 0 153574 station_ip 5.120.37.194 153574 port 598 153574 unique_id port 153578 username forozandeh1 153578 mac 153578 bytes_out 0 153578 bytes_in 0 153578 station_ip 83.123.191.28 153578 port 616 153578 unique_id port 153578 remote_ip 10.8.0.130 153582 username kalantary 153582 mac 153582 bytes_out 0 153582 bytes_in 0 153582 station_ip 83.122.80.147 153582 port 607 153582 unique_id port 153582 remote_ip 10.8.0.98 153583 username alipour 153583 mac 153583 bytes_out 0 153583 bytes_in 0 153583 station_ip 37.129.93.37 153583 port 615 153583 unique_id port 153583 remote_ip 10.8.0.102 153588 username milan 153588 kill_reason Another user logged on this global unique id 153588 mac 153588 bytes_out 0 153588 bytes_in 0 153588 station_ip 5.120.37.194 153588 port 598 153588 unique_id port 153589 username hadibarzegar 153589 kill_reason Another user logged on this global unique id 153589 mac 153589 bytes_out 0 153589 bytes_in 0 153589 station_ip 37.129.18.210 153589 port 597 153589 unique_id port 153589 remote_ip 10.8.0.154 153590 username jafari 153590 mac 153590 bytes_out 0 153590 bytes_in 0 153590 station_ip 94.24.16.164 153590 port 614 153590 unique_id port 153592 username hamidsalari 153592 kill_reason Another user logged on this global unique id 153592 mac 153592 bytes_out 0 153592 bytes_in 0 153592 station_ip 5.120.29.182 153592 port 595 153592 unique_id port 153593 username hosseine 153593 kill_reason Another user logged on this global unique id 153593 mac 153593 bytes_out 0 153593 bytes_in 0 153593 station_ip 37.129.7.130 153593 port 610 153593 unique_id port 153593 remote_ip 10.8.0.238 153595 username milan 153595 kill_reason Another user logged on this global unique id 153595 mac 153595 bytes_out 0 153595 bytes_in 0 153595 station_ip 5.120.37.194 153595 port 598 153595 unique_id port 153596 username vanila 153596 mac 153596 bytes_out 161917 153596 bytes_in 477301 153596 station_ip 83.122.127.247 153596 port 553 153596 unique_id port 153596 remote_ip 10.8.0.178 153599 username barzegar 153599 mac 153599 bytes_out 0 153599 bytes_in 0 153599 station_ip 5.120.137.218 153599 port 302 153599 unique_id port 153599 remote_ip 10.8.1.174 153600 username hadibarzegar 153600 kill_reason Another user logged on this global unique id 153548 unique_id port 153548 remote_ip 10.8.0.234 153551 username khalili 153551 kill_reason Another user logged on this global unique id 153551 mac 153551 bytes_out 0 153551 bytes_in 0 153551 station_ip 5.119.205.43 153551 port 596 153551 unique_id port 153551 remote_ip 10.8.0.86 153552 username godarzi 153552 kill_reason Another user logged on this global unique id 153552 mac 153552 bytes_out 0 153552 bytes_in 0 153552 station_ip 5.202.24.27 153552 port 553 153552 unique_id port 153554 username sedighe 153554 mac 153554 bytes_out 0 153554 bytes_in 0 153554 station_ip 83.123.114.216 153554 port 613 153554 unique_id port 153554 remote_ip 10.8.0.146 153556 username pourshad 153556 mac 153556 bytes_out 231368 153556 bytes_in 1438182 153556 station_ip 5.119.198.25 153556 port 298 153556 unique_id port 153556 remote_ip 10.8.1.154 153557 username jafari 153557 kill_reason Another user logged on this global unique id 153557 mac 153557 bytes_out 0 153557 bytes_in 0 153557 station_ip 94.24.16.164 153557 port 614 153557 unique_id port 153558 username moradi 153558 mac 153558 bytes_out 0 153558 bytes_in 0 153558 station_ip 46.225.209.210 153558 port 304 153558 unique_id port 153558 remote_ip 10.8.1.202 153562 username mohammadjavad 153562 mac 153562 bytes_out 158432 153562 bytes_in 594862 153562 station_ip 113.203.64.54 153562 port 607 153562 unique_id port 153562 remote_ip 10.8.0.142 153564 username sedighe 153564 mac 153564 bytes_out 0 153564 bytes_in 0 153564 station_ip 83.123.114.216 153564 port 607 153564 unique_id port 153564 remote_ip 10.8.0.146 153565 username gohari1 153565 mac 153565 bytes_out 0 153565 bytes_in 0 153565 station_ip 83.122.61.54 153565 port 612 153565 unique_id port 153565 remote_ip 10.8.0.210 153571 username zahra1101 153571 mac 153571 bytes_out 0 153571 bytes_in 0 153571 station_ip 5.120.96.45 153571 port 597 153571 unique_id port 153577 username barzegar 153577 mac 153577 bytes_out 5985 153577 bytes_in 8645 153577 station_ip 5.120.137.218 153577 port 597 153577 unique_id port 153577 remote_ip 10.8.0.234 153580 username hadibarzegar 153580 mac 153580 bytes_out 875610 153580 bytes_in 4621855 153580 station_ip 37.129.18.210 153580 port 603 153580 unique_id port 153580 remote_ip 10.8.0.154 153581 username milan 153581 kill_reason Another user logged on this global unique id 153581 mac 153581 bytes_out 0 153581 bytes_in 0 153581 station_ip 5.120.37.194 153581 port 598 153581 unique_id port 153585 username mehdizare 153585 mac 153585 bytes_out 50224 153585 bytes_in 110512 153585 station_ip 5.120.191.154 153585 port 617 153585 unique_id port 153585 remote_ip 10.8.0.90 153597 username alipour 153597 mac 153597 bytes_out 107071 153597 bytes_in 510159 153597 station_ip 37.129.93.37 153597 port 301 153597 unique_id port 153597 remote_ip 10.8.1.50 153602 username alipour 153602 mac 153602 bytes_out 4860 153602 bytes_in 8209 153602 station_ip 37.129.93.37 153602 port 301 153602 unique_id port 153602 remote_ip 10.8.1.50 153605 username barzegar 153605 mac 153605 bytes_out 0 153605 bytes_in 0 153605 station_ip 5.120.137.218 153605 port 302 153605 unique_id port 153605 remote_ip 10.8.1.174 153607 username rahim 153607 mac 153607 bytes_out 0 153607 bytes_in 0 153607 station_ip 5.120.153.199 153607 port 613 153607 unique_id port 153607 remote_ip 10.8.0.50 153611 username hadibarzegar 153611 kill_reason Another user logged on this global unique id 153611 mac 153611 bytes_out 0 153611 bytes_in 0 153586 username hamidsalari 153586 kill_reason Another user logged on this global unique id 153586 mac 153586 bytes_out 0 153586 bytes_in 0 153586 station_ip 5.120.29.182 153586 port 595 153586 unique_id port 153587 username nilufarrajaei 153587 mac 153587 bytes_out 0 153587 bytes_in 0 153587 station_ip 37.129.211.205 153587 port 299 153587 unique_id port 153587 remote_ip 10.8.1.166 153591 username godarzi 153591 mac 153591 bytes_out 0 153591 bytes_in 0 153591 station_ip 5.202.24.27 153591 port 553 153591 unique_id port 153594 username barzegar 153594 mac 153594 bytes_out 0 153594 bytes_in 0 153594 station_ip 5.120.137.218 153594 port 613 153594 unique_id port 153594 remote_ip 10.8.0.234 153598 username kalantary 153598 mac 153598 bytes_out 0 153598 bytes_in 0 153598 station_ip 83.122.80.147 153598 port 607 153598 unique_id port 153598 remote_ip 10.8.0.98 153601 username hamidsalari 153601 kill_reason Another user logged on this global unique id 153601 mac 153601 bytes_out 0 153601 bytes_in 0 153601 station_ip 5.120.29.182 153601 port 595 153601 unique_id port 153603 username zahra1101 153603 mac 153603 bytes_out 225517 153603 bytes_in 818877 153603 station_ip 5.120.96.45 153603 port 611 153603 unique_id port 153603 remote_ip 10.8.0.162 153606 username hamidsalari 153606 kill_reason Another user logged on this global unique id 153606 mac 153606 bytes_out 0 153606 bytes_in 0 153606 station_ip 5.120.29.182 153606 port 595 153606 unique_id port 153608 username zahra1101 153608 mac 153608 bytes_out 0 153608 bytes_in 0 153608 station_ip 5.120.96.45 153608 port 607 153608 unique_id port 153608 remote_ip 10.8.0.162 153609 username saeed9658 153609 mac 153609 bytes_out 4053422 153609 bytes_in 46306507 153609 station_ip 5.120.130.212 153609 port 292 153609 unique_id port 153609 remote_ip 10.8.1.210 153612 username sedighe 153612 mac 153612 bytes_out 0 153612 bytes_in 0 153612 station_ip 83.123.114.216 153612 port 613 153612 unique_id port 153612 remote_ip 10.8.0.146 153616 username kalantary 153616 kill_reason Maximum check online fails reached 153616 mac 153616 bytes_out 0 153616 bytes_in 0 153616 station_ip 83.122.88.211 153616 port 613 153616 unique_id port 153619 username pourshad 153619 kill_reason Another user logged on this global unique id 153619 mac 153619 bytes_out 0 153619 bytes_in 0 153619 station_ip 5.119.198.25 153619 port 298 153619 unique_id port 153619 remote_ip 10.8.1.154 153620 username rezaei 153620 kill_reason Another user logged on this global unique id 153620 mac 153620 bytes_out 0 153620 bytes_in 0 153620 station_ip 5.120.96.217 153620 port 611 153620 unique_id port 153620 remote_ip 10.8.0.230 153623 username milan 153623 kill_reason Another user logged on this global unique id 153623 mac 153623 bytes_out 0 153623 bytes_in 0 153623 station_ip 5.120.37.194 153623 port 598 153623 unique_id port 153624 username rezaei 153624 mac 153624 bytes_out 0 153624 bytes_in 0 153624 station_ip 5.120.96.217 153624 port 611 153624 unique_id port 153627 username barzegar 153627 mac 153627 bytes_out 0 153627 bytes_in 0 153627 station_ip 5.119.160.205 153627 port 611 153627 unique_id port 153627 remote_ip 10.8.0.234 153629 username aminvpn 153629 mac 153629 bytes_out 0 153629 bytes_in 0 153629 station_ip 83.122.224.89 153629 port 609 153629 unique_id port 153632 username kordestani 153632 mac 153632 bytes_out 988806 153632 bytes_in 17828867 153632 station_ip 151.235.83.203 153632 port 292 153632 unique_id port 153632 remote_ip 10.8.1.98 153600 mac 153600 bytes_out 0 153600 bytes_in 0 153600 station_ip 37.129.18.210 153600 port 597 153600 unique_id port 153604 username zahra1101 153604 mac 153604 bytes_out 0 153604 bytes_in 0 153604 station_ip 5.120.96.45 153604 port 607 153604 unique_id port 153604 remote_ip 10.8.0.162 153610 username zahra1101 153610 mac 153610 bytes_out 0 153610 bytes_in 0 153610 station_ip 5.120.96.45 153610 port 607 153610 unique_id port 153610 remote_ip 10.8.0.162 153613 username milan 153613 kill_reason Another user logged on this global unique id 153613 mac 153613 bytes_out 0 153613 bytes_in 0 153613 station_ip 5.120.37.194 153613 port 598 153613 unique_id port 153614 username kalantary 153614 kill_reason Another user logged on this global unique id 153614 mac 153614 bytes_out 0 153614 bytes_in 0 153614 station_ip 83.122.88.211 153614 port 613 153614 unique_id port 153615 username hadibarzegar 153615 kill_reason Another user logged on this global unique id 153615 mac 153615 bytes_out 0 153615 bytes_in 0 153615 station_ip 37.129.18.210 153615 port 597 153615 unique_id port 153626 username jafari 153626 kill_reason Another user logged on this global unique id 153626 mac 153626 bytes_out 0 153626 bytes_in 0 153626 station_ip 93.114.27.254 153626 port 597 153626 unique_id port 153626 remote_ip 10.8.0.242 153628 username barzegar 153628 kill_reason Maximum check online fails reached 153628 mac 153628 bytes_out 0 153628 bytes_in 0 153628 station_ip 5.119.160.205 153628 port 302 153628 unique_id port 153630 username milan 153630 kill_reason Another user logged on this global unique id 153630 mac 153630 bytes_out 0 153630 bytes_in 0 153630 station_ip 5.120.37.194 153630 port 598 153630 unique_id port 153631 username nilufarrajaei 153631 mac 153631 bytes_out 0 153631 bytes_in 0 153631 station_ip 37.129.211.205 153631 port 299 153631 unique_id port 153638 username milan 153638 kill_reason Another user logged on this global unique id 153638 mac 153638 bytes_out 0 153638 bytes_in 0 153638 station_ip 5.120.37.194 153638 port 598 153638 unique_id port 153642 username moradi 153642 mac 153642 bytes_out 0 153642 bytes_in 0 153642 station_ip 46.225.209.210 153642 port 557 153642 unique_id port 153643 username bazgir 153643 mac 153643 bytes_out 0 153643 bytes_in 0 153643 station_ip 46.225.209.210 153643 port 614 153643 unique_id port 153643 remote_ip 10.8.0.170 153647 username barzegar 153647 mac 153647 bytes_out 0 153647 bytes_in 0 153647 station_ip 5.119.160.205 153647 port 557 153647 unique_id port 153647 remote_ip 10.8.0.234 153654 username khademi 153654 kill_reason Another user logged on this global unique id 153654 mac 153654 bytes_out 0 153654 bytes_in 0 153654 station_ip 37.129.135.128 153654 port 553 153654 unique_id port 153654 remote_ip 10.8.0.10 153657 username rezaei 153657 mac 153657 bytes_out 1325089 153657 bytes_in 15865899 153657 station_ip 5.120.96.217 153657 port 299 153657 unique_id port 153657 remote_ip 10.8.1.58 153659 username mirzaei 153659 kill_reason Another user logged on this global unique id 153659 mac 153659 bytes_out 0 153659 bytes_in 0 153659 station_ip 5.119.91.25 153659 port 287 153659 unique_id port 153660 username morteza 153660 mac 153660 bytes_out 0 153660 bytes_in 0 153660 station_ip 83.122.247.169 153660 port 298 153660 unique_id port 153660 remote_ip 10.8.1.62 153670 username alipour 153670 kill_reason Another user logged on this global unique id 153670 mac 153670 bytes_out 0 153670 bytes_in 0 153670 station_ip 37.129.93.37 153670 port 301 153670 unique_id port 153611 station_ip 37.129.18.210 153611 port 597 153611 unique_id port 153617 username barzegar 153617 mac 153617 bytes_out 0 153617 bytes_in 0 153617 station_ip 5.119.160.205 153617 port 614 153617 unique_id port 153617 remote_ip 10.8.0.234 153618 username hadibarzegar 153618 mac 153618 bytes_out 0 153618 bytes_in 0 153618 station_ip 37.129.18.210 153618 port 597 153618 unique_id port 153621 username kalantary 153621 mac 153621 bytes_out 0 153621 bytes_in 0 153621 station_ip 83.122.88.211 153621 port 613 153621 unique_id port 153621 remote_ip 10.8.0.98 153622 username hosseine 153622 mac 153622 bytes_out 0 153622 bytes_in 0 153622 station_ip 37.129.7.130 153622 port 610 153622 unique_id port 153625 username nilufarrajaei 153625 kill_reason Another user logged on this global unique id 153625 mac 153625 bytes_out 0 153625 bytes_in 0 153625 station_ip 37.129.211.205 153625 port 299 153625 unique_id port 153625 remote_ip 10.8.1.166 153633 username pourshad 153633 kill_reason Another user logged on this global unique id 153633 mac 153633 bytes_out 0 153633 bytes_in 0 153633 station_ip 5.119.198.25 153633 port 298 153633 unique_id port 153635 username milan 153635 kill_reason Another user logged on this global unique id 153635 mac 153635 bytes_out 0 153635 bytes_in 0 153635 station_ip 5.120.37.194 153635 port 598 153635 unique_id port 153637 username pourshad 153637 kill_reason Another user logged on this global unique id 153637 mac 153637 bytes_out 0 153637 bytes_in 0 153637 station_ip 5.119.198.25 153637 port 298 153637 unique_id port 153640 username kalantary 153640 mac 153640 bytes_out 0 153640 bytes_in 0 153640 station_ip 83.122.65.215 153640 port 611 153640 unique_id port 153640 remote_ip 10.8.0.98 153644 username barzegar 153644 mac 153644 bytes_out 0 153644 bytes_in 0 153644 station_ip 5.119.160.205 153644 port 292 153644 unique_id port 153644 remote_ip 10.8.1.174 153646 username jafari 153646 kill_reason Another user logged on this global unique id 153646 mac 153646 bytes_out 0 153646 bytes_in 0 153646 station_ip 93.114.27.254 153646 port 597 153646 unique_id port 153648 username milan 153648 kill_reason Another user logged on this global unique id 153648 mac 153648 bytes_out 0 153648 bytes_in 0 153648 station_ip 5.120.37.194 153648 port 598 153648 unique_id port 153651 username jafari 153651 kill_reason Another user logged on this global unique id 153651 mac 153651 bytes_out 0 153651 bytes_in 0 153651 station_ip 93.114.27.254 153651 port 597 153651 unique_id port 153653 username mahdiyehalizadeh 153653 mac 153653 bytes_out 0 153653 bytes_in 0 153653 station_ip 5.119.245.15 153653 port 613 153653 unique_id port 153653 remote_ip 10.8.0.82 153656 username mehdizare 153656 mac 153656 bytes_out 0 153656 bytes_in 0 153656 station_ip 5.120.191.154 153656 port 603 153656 unique_id port 153656 remote_ip 10.8.0.90 153661 username forozandeh1 153661 kill_reason Another user logged on this global unique id 153661 mac 153661 bytes_out 0 153661 bytes_in 0 153661 station_ip 83.122.16.205 153661 port 616 153661 unique_id port 153661 remote_ip 10.8.0.130 153663 username nilufarrajaei 153663 kill_reason Another user logged on this global unique id 153663 mac 153663 bytes_out 0 153663 bytes_in 0 153663 station_ip 37.129.211.205 153663 port 609 153663 unique_id port 153663 remote_ip 10.8.0.206 153664 username milan 153664 mac 153664 bytes_out 0 153664 bytes_in 0 153664 station_ip 5.120.37.194 153664 port 598 153664 unique_id port 153666 username pourshad 153666 mac 153666 bytes_out 0 153634 username barzegar 153634 mac 153634 bytes_out 0 153634 bytes_in 0 153634 station_ip 5.119.160.205 153634 port 613 153634 unique_id port 153634 remote_ip 10.8.0.234 153636 username rezaei 153636 mac 153636 bytes_out 0 153636 bytes_in 0 153636 station_ip 5.120.96.217 153636 port 292 153636 unique_id port 153636 remote_ip 10.8.1.58 153639 username fezealinaghi 153639 kill_reason Another user logged on this global unique id 153639 mac 153639 bytes_out 0 153639 bytes_in 0 153639 station_ip 83.123.53.165 153639 port 612 153639 unique_id port 153639 remote_ip 10.8.0.78 153641 username barzegar 153641 mac 153641 bytes_out 0 153641 bytes_in 0 153641 station_ip 5.119.160.205 153641 port 292 153641 unique_id port 153641 remote_ip 10.8.1.174 153645 username fezealinaghi 153645 kill_reason Another user logged on this global unique id 153645 mac 153645 bytes_out 0 153645 bytes_in 0 153645 station_ip 83.123.53.165 153645 port 612 153645 unique_id port 153649 username pourshad 153649 mac 153649 bytes_out 0 153649 bytes_in 0 153649 station_ip 5.119.198.25 153649 port 298 153649 unique_id port 153650 username kalantary 153650 mac 153650 bytes_out 0 153650 bytes_in 0 153650 station_ip 83.122.65.215 153650 port 557 153650 unique_id port 153650 remote_ip 10.8.0.98 153652 username mohammadjavad 153652 mac 153652 bytes_out 0 153652 bytes_in 0 153652 station_ip 83.123.95.193 153652 port 557 153652 unique_id port 153652 remote_ip 10.8.0.142 153655 username morteza 153655 mac 153655 bytes_out 0 153655 bytes_in 0 153655 station_ip 83.122.247.169 153655 port 614 153655 unique_id port 153655 remote_ip 10.8.0.46 153658 username jafari 153658 mac 153658 bytes_out 0 153658 bytes_in 0 153658 station_ip 93.114.27.254 153658 port 597 153658 unique_id port 153662 username morteza 153662 mac 153662 bytes_out 0 153662 bytes_in 0 153662 station_ip 83.122.247.169 153662 port 298 153662 unique_id port 153662 remote_ip 10.8.1.62 153665 username khalili 153665 kill_reason Another user logged on this global unique id 153665 mac 153665 bytes_out 0 153665 bytes_in 0 153665 station_ip 5.119.205.43 153665 port 596 153665 unique_id port 153667 username pourshad 153667 mac 153667 bytes_out 44330 153667 bytes_in 64235 153667 station_ip 5.119.198.25 153667 port 299 153667 unique_id port 153667 remote_ip 10.8.1.154 153669 username pourshad 153669 mac 153669 bytes_out 121568 153669 bytes_in 1532553 153669 station_ip 5.119.198.25 153669 port 299 153669 unique_id port 153669 remote_ip 10.8.1.154 153671 username khademi 153671 kill_reason Another user logged on this global unique id 153671 mac 153671 bytes_out 0 153671 bytes_in 0 153671 station_ip 37.129.135.128 153671 port 553 153671 unique_id port 153673 username kalantary 153673 mac 153673 bytes_out 0 153673 bytes_in 0 153673 station_ip 83.122.120.239 153673 port 598 153673 unique_id port 153673 remote_ip 10.8.0.98 153675 username morteza 153675 mac 153675 bytes_out 2784242 153675 bytes_in 37344783 153675 station_ip 83.122.247.169 153675 port 298 153675 unique_id port 153675 remote_ip 10.8.1.62 153677 username sekonji3 153677 mac 153677 bytes_out 0 153677 bytes_in 0 153677 station_ip 83.123.205.117 153677 port 613 153677 unique_id port 153677 remote_ip 10.8.0.6 153686 username morteza 153686 mac 153686 bytes_out 0 153686 bytes_in 0 153686 station_ip 83.122.247.169 153686 port 304 153686 unique_id port 153686 remote_ip 10.8.1.62 153691 username mohammadmahdi 153666 bytes_in 0 153666 station_ip 5.119.198.25 153666 port 617 153666 unique_id port 153666 remote_ip 10.8.0.18 153668 username jamali 153668 kill_reason Another user logged on this global unique id 153668 mac 153668 bytes_out 0 153668 bytes_in 0 153668 station_ip 5.119.161.126 153668 port 611 153668 unique_id port 153668 remote_ip 10.8.0.70 153676 username morteza 153676 mac 153676 bytes_out 0 153676 bytes_in 0 153676 station_ip 83.122.247.169 153676 port 598 153676 unique_id port 153676 remote_ip 10.8.0.46 153679 username vanila 153679 mac 153679 bytes_out 293336 153679 bytes_in 1964286 153679 station_ip 83.122.125.255 153679 port 617 153679 unique_id port 153679 remote_ip 10.8.0.178 153680 username morteza 153680 mac 153680 bytes_out 258772 153680 bytes_in 5090387 153680 station_ip 83.122.247.169 153680 port 616 153680 unique_id port 153680 remote_ip 10.8.0.46 153683 username sekonji3 153683 mac 153683 bytes_out 0 153683 bytes_in 0 153683 station_ip 83.123.205.117 153683 port 597 153683 unique_id port 153683 remote_ip 10.8.0.6 153685 username morteza 153685 mac 153685 bytes_out 0 153685 bytes_in 0 153685 station_ip 83.122.247.169 153685 port 304 153685 unique_id port 153685 remote_ip 10.8.1.62 153687 username alipour 153687 mac 153687 bytes_out 0 153687 bytes_in 0 153687 station_ip 37.129.93.37 153687 port 301 153687 unique_id port 153688 username nilufarrajaei 153688 mac 153688 bytes_out 0 153688 bytes_in 0 153688 station_ip 37.129.211.205 153688 port 609 153688 unique_id port 153690 username morteza 153690 mac 153690 bytes_out 0 153690 bytes_in 0 153690 station_ip 83.122.247.169 153690 port 304 153690 unique_id port 153690 remote_ip 10.8.1.62 153701 username tahmasebi 153701 mac 153701 bytes_out 0 153701 bytes_in 0 153701 station_ip 5.120.130.84 153701 port 616 153701 unique_id port 153701 remote_ip 10.8.0.42 153703 username sekonji3 153703 mac 153703 bytes_out 0 153703 bytes_in 0 153703 station_ip 83.123.205.117 153703 port 597 153703 unique_id port 153703 remote_ip 10.8.0.6 153705 username tahmasebi 153705 mac 153705 bytes_out 0 153705 bytes_in 0 153705 station_ip 5.120.130.84 153705 port 597 153705 unique_id port 153705 remote_ip 10.8.0.42 153707 username tahmasebi 153707 mac 153707 bytes_out 0 153707 bytes_in 0 153707 station_ip 5.120.130.84 153707 port 597 153707 unique_id port 153707 remote_ip 10.8.0.42 153709 username barzegar 153709 mac 153709 bytes_out 0 153709 bytes_in 0 153709 station_ip 5.119.217.235 153709 port 298 153709 unique_id port 153709 remote_ip 10.8.1.174 153712 username morteza 153712 mac 153712 bytes_out 0 153712 bytes_in 0 153712 station_ip 83.122.247.169 153712 port 298 153712 unique_id port 153712 remote_ip 10.8.1.62 153715 username morteza 153715 mac 153715 bytes_out 0 153715 bytes_in 0 153715 station_ip 83.122.247.169 153715 port 609 153715 unique_id port 153715 remote_ip 10.8.0.46 153716 username moradi 153716 kill_reason Another user logged on this global unique id 153716 mac 153716 bytes_out 0 153716 bytes_in 0 153716 station_ip 37.129.126.2 153716 port 303 153716 unique_id port 153716 remote_ip 10.8.1.202 153718 username pourshad 153718 kill_reason Another user logged on this global unique id 153718 mac 153718 bytes_out 0 153718 bytes_in 0 153718 station_ip 5.119.198.25 153718 port 299 153718 unique_id port 153718 remote_ip 10.8.1.154 153721 username aminvpn 153721 mac 153721 bytes_out 0 153721 bytes_in 0 153670 remote_ip 10.8.1.50 153672 username godarzi 153672 kill_reason Another user logged on this global unique id 153672 mac 153672 bytes_out 0 153672 bytes_in 0 153672 station_ip 5.202.24.27 153672 port 557 153672 unique_id port 153672 remote_ip 10.8.0.174 153674 username forozandeh1 153674 mac 153674 bytes_out 0 153674 bytes_in 0 153674 station_ip 83.122.16.205 153674 port 616 153674 unique_id port 153678 username sedighe 153678 mac 153678 bytes_out 287181 153678 bytes_in 1263903 153678 station_ip 37.129.123.95 153678 port 597 153678 unique_id port 153678 remote_ip 10.8.0.146 153681 username farhad2 153681 mac 153681 bytes_out 239835 153681 bytes_in 465168 153681 station_ip 5.120.149.114 153681 port 598 153681 unique_id port 153681 remote_ip 10.8.0.190 153682 username morteza 153682 mac 153682 bytes_out 0 153682 bytes_in 0 153682 station_ip 83.122.247.169 153682 port 597 153682 unique_id port 153682 remote_ip 10.8.0.46 153684 username morteza 153684 mac 153684 bytes_out 0 153684 bytes_in 0 153684 station_ip 83.122.247.169 153684 port 304 153684 unique_id port 153684 remote_ip 10.8.1.62 153689 username moradi 153689 mac 153689 bytes_out 3099704 153689 bytes_in 43545101 153689 station_ip 37.129.126.2 153689 port 303 153689 unique_id port 153689 remote_ip 10.8.1.202 153693 username khademi 153693 kill_reason Another user logged on this global unique id 153693 mac 153693 bytes_out 0 153693 bytes_in 0 153693 station_ip 37.129.135.128 153693 port 553 153693 unique_id port 153696 username mehdizare 153696 mac 153696 bytes_out 0 153696 bytes_in 0 153696 station_ip 5.120.191.154 153696 port 603 153696 unique_id port 153696 remote_ip 10.8.0.90 153697 username morteza 153697 mac 153697 bytes_out 0 153697 bytes_in 0 153697 station_ip 83.122.247.169 153697 port 597 153697 unique_id port 153697 remote_ip 10.8.0.46 153700 username farhad2 153700 mac 153700 bytes_out 3389222 153700 bytes_in 37792534 153700 station_ip 5.120.149.114 153700 port 609 153700 unique_id port 153700 remote_ip 10.8.0.190 153704 username morteza 153704 mac 153704 bytes_out 0 153704 bytes_in 0 153704 station_ip 83.122.247.169 153704 port 597 153704 unique_id port 153704 remote_ip 10.8.0.46 153708 username morteza 153708 mac 153708 bytes_out 0 153708 bytes_in 0 153708 station_ip 83.122.247.169 153708 port 305 153708 unique_id port 153708 remote_ip 10.8.1.62 153710 username barzegar 153710 mac 153710 bytes_out 0 153710 bytes_in 0 153710 station_ip 5.119.217.235 153710 port 597 153710 unique_id port 153710 remote_ip 10.8.0.234 153711 username tahmasebi 153711 mac 153711 bytes_out 0 153711 bytes_in 0 153711 station_ip 5.120.130.84 153711 port 609 153711 unique_id port 153711 remote_ip 10.8.0.42 153713 username sabaghnezhad 153713 mac 153713 bytes_out 0 153713 bytes_in 0 153713 station_ip 83.123.148.32 153713 port 603 153713 unique_id port 153713 remote_ip 10.8.0.186 153717 username tahmasebi 153717 mac 153717 bytes_out 0 153717 bytes_in 0 153717 station_ip 5.120.130.84 153717 port 597 153717 unique_id port 153717 remote_ip 10.8.0.42 153719 username mohammadmahdi 153719 kill_reason Another user logged on this global unique id 153719 mac 153719 bytes_out 0 153719 bytes_in 0 153719 station_ip 5.120.35.227 153719 port 598 153719 unique_id port 153722 username malekpoir 153722 mac 153722 bytes_out 0 153722 bytes_in 0 153722 station_ip 5.119.182.193 153722 port 606 153722 unique_id port 153725 username morteza 153691 kill_reason Another user logged on this global unique id 153691 mac 153691 bytes_out 0 153691 bytes_in 0 153691 station_ip 5.120.35.227 153691 port 598 153691 unique_id port 153691 remote_ip 10.8.0.54 153692 username morteza 153692 mac 153692 bytes_out 0 153692 bytes_in 0 153692 station_ip 83.122.247.169 153692 port 304 153692 unique_id port 153692 remote_ip 10.8.1.62 153694 username barzegar 153694 mac 153694 bytes_out 0 153694 bytes_in 0 153694 station_ip 5.119.217.235 153694 port 614 153694 unique_id port 153694 remote_ip 10.8.0.234 153695 username sekonji3 153695 mac 153695 bytes_out 0 153695 bytes_in 0 153695 station_ip 83.123.205.117 153695 port 597 153695 unique_id port 153695 remote_ip 10.8.0.6 153698 username rezaei 153698 mac 153698 bytes_out 2799046 153698 bytes_in 34814237 153698 station_ip 5.120.96.217 153698 port 298 153698 unique_id port 153698 remote_ip 10.8.1.58 153699 username morteza 153699 mac 153699 bytes_out 0 153699 bytes_in 0 153699 station_ip 83.122.247.169 153699 port 616 153699 unique_id port 153699 remote_ip 10.8.0.46 153702 username kamali2 153702 mac 153702 bytes_out 97001 153702 bytes_in 147248 153702 station_ip 5.120.36.123 153702 port 613 153702 unique_id port 153702 remote_ip 10.8.0.214 153706 username farhad2 153706 mac 153706 bytes_out 0 153706 bytes_in 0 153706 station_ip 5.120.149.114 153706 port 609 153706 unique_id port 153706 remote_ip 10.8.0.190 153714 username aminvpn 153714 mac 153714 bytes_out 0 153714 bytes_in 0 153714 station_ip 5.120.35.70 153714 port 615 153714 unique_id port 153714 remote_ip 10.8.0.14 153720 username tahmasebi 153720 mac 153720 bytes_out 0 153720 bytes_in 0 153720 station_ip 5.120.130.84 153720 port 597 153720 unique_id port 153720 remote_ip 10.8.0.42 153724 username aminvpn 153724 mac 153724 bytes_out 0 153724 bytes_in 0 153724 station_ip 5.120.35.70 153724 port 597 153724 unique_id port 153724 remote_ip 10.8.0.14 153726 username mohammadmahdi 153726 mac 153726 bytes_out 0 153726 bytes_in 0 153726 station_ip 5.120.35.227 153726 port 598 153726 unique_id port 153732 username aminvpn 153732 mac 153732 bytes_out 0 153732 bytes_in 0 153732 station_ip 5.120.35.70 153732 port 598 153732 unique_id port 153732 remote_ip 10.8.0.14 153736 username barzegar 153736 mac 153736 bytes_out 0 153736 bytes_in 0 153736 station_ip 5.119.217.235 153736 port 613 153736 unique_id port 153736 remote_ip 10.8.0.234 153737 username forozandeh1 153737 mac 153737 bytes_out 421795 153737 bytes_in 3735573 153737 station_ip 113.203.116.72 153737 port 606 153737 unique_id port 153737 remote_ip 10.8.0.130 153741 username barzegar 153741 mac 153741 bytes_out 0 153741 bytes_in 0 153741 station_ip 5.119.217.235 153741 port 606 153741 unique_id port 153741 remote_ip 10.8.0.234 153744 username jamali 153744 mac 153744 bytes_out 0 153744 bytes_in 0 153744 station_ip 5.119.161.126 153744 port 611 153744 unique_id port 153747 username morteza 153747 mac 153747 bytes_out 0 153747 bytes_in 0 153747 station_ip 83.122.247.169 153747 port 603 153747 unique_id port 153747 remote_ip 10.8.0.46 153754 username aminvpn 153754 mac 153754 bytes_out 0 153754 bytes_in 0 153754 station_ip 5.120.35.70 153754 port 557 153754 unique_id port 153754 remote_ip 10.8.0.14 153760 username hashtadani4 153760 mac 153760 bytes_out 0 153760 bytes_in 0 153760 station_ip 83.122.140.91 153721 station_ip 83.122.1.183 153721 port 603 153721 unique_id port 153721 remote_ip 10.8.0.14 153723 username tahmasebi 153723 mac 153723 bytes_out 0 153723 bytes_in 0 153723 station_ip 5.120.130.84 153723 port 603 153723 unique_id port 153723 remote_ip 10.8.0.42 153727 username jamali 153727 kill_reason Another user logged on this global unique id 153727 mac 153727 bytes_out 0 153727 bytes_in 0 153727 station_ip 5.119.161.126 153727 port 611 153727 unique_id port 153728 username mehdizare 153728 mac 153728 bytes_out 17536 153728 bytes_in 22153 153728 station_ip 5.120.191.154 153728 port 304 153728 unique_id port 153728 remote_ip 10.8.1.42 153730 username aminvpn 153730 mac 153730 bytes_out 0 153730 bytes_in 0 153730 station_ip 83.122.1.183 153730 port 609 153730 unique_id port 153730 remote_ip 10.8.0.14 153735 username aminvpn 153735 mac 153735 bytes_out 0 153735 bytes_in 0 153735 station_ip 5.120.35.70 153735 port 609 153735 unique_id port 153735 remote_ip 10.8.0.14 153740 username moradi 153740 mac 153740 bytes_out 0 153740 bytes_in 0 153740 station_ip 37.129.126.2 153740 port 303 153740 unique_id port 153742 username mehdizare 153742 mac 153742 bytes_out 0 153742 bytes_in 0 153742 station_ip 5.120.191.154 153742 port 597 153742 unique_id port 153742 remote_ip 10.8.0.90 153743 username mehdizare 153743 mac 153743 bytes_out 0 153743 bytes_in 0 153743 station_ip 5.120.191.154 153743 port 606 153743 unique_id port 153743 remote_ip 10.8.0.90 153748 username hamidsalari 153748 kill_reason Another user logged on this global unique id 153748 mac 153748 bytes_out 0 153748 bytes_in 0 153748 station_ip 5.120.29.182 153748 port 595 153748 unique_id port 153749 username barzegar 153749 mac 153749 bytes_out 0 153749 bytes_in 0 153749 station_ip 5.119.217.235 153749 port 303 153749 unique_id port 153749 remote_ip 10.8.1.174 153752 username morteza 153752 mac 153752 bytes_out 0 153752 bytes_in 0 153752 station_ip 83.122.247.169 153752 port 603 153752 unique_id port 153752 remote_ip 10.8.0.46 153756 username hashtadani4 153756 kill_reason Maximum check online fails reached 153756 mac 153756 bytes_out 0 153756 bytes_in 0 153756 station_ip 83.122.140.91 153756 port 303 153756 unique_id port 153758 username hashtadani4 153758 mac 153758 bytes_out 0 153758 bytes_in 0 153758 station_ip 83.122.140.91 153758 port 606 153758 unique_id port 153758 remote_ip 10.8.0.182 153768 username moradi 153768 kill_reason Another user logged on this global unique id 153768 mac 153768 bytes_out 0 153768 bytes_in 0 153768 station_ip 37.129.126.2 153768 port 298 153768 unique_id port 153768 remote_ip 10.8.1.202 153770 username alihosseini1 153770 mac 153770 bytes_out 282141 153770 bytes_in 3642226 153770 station_ip 5.120.137.83 153770 port 557 153770 unique_id port 153770 remote_ip 10.8.0.166 153780 username barzegar 153780 mac 153780 bytes_out 0 153780 bytes_in 0 153780 station_ip 5.119.217.235 153780 port 598 153780 unique_id port 153780 remote_ip 10.8.0.234 153784 username ayobi 153784 mac 153784 bytes_out 18400 153784 bytes_in 20547 153784 station_ip 37.27.4.94 153784 port 557 153784 unique_id port 153784 remote_ip 10.8.0.246 153787 username aminvpn 153787 mac 153787 bytes_out 0 153787 bytes_in 0 153787 station_ip 83.122.1.183 153787 port 603 153787 unique_id port 153787 remote_ip 10.8.0.14 153793 username morteza 153793 mac 153793 bytes_out 0 153793 bytes_in 0 153793 station_ip 83.122.247.169 153725 mac 153725 bytes_out 0 153725 bytes_in 0 153725 station_ip 83.122.247.169 153725 port 603 153725 unique_id port 153725 remote_ip 10.8.0.46 153729 username morteza 153729 mac 153729 bytes_out 0 153729 bytes_in 0 153729 station_ip 83.122.247.169 153729 port 598 153729 unique_id port 153729 remote_ip 10.8.0.46 153731 username tahmasebi 153731 mac 153731 bytes_out 0 153731 bytes_in 0 153731 station_ip 5.120.130.84 153731 port 606 153731 unique_id port 153731 remote_ip 10.8.0.42 153733 username alipour 153733 kill_reason Another user logged on this global unique id 153733 mac 153733 bytes_out 0 153733 bytes_in 0 153733 station_ip 37.129.93.37 153733 port 301 153733 unique_id port 153733 remote_ip 10.8.1.50 153734 username aminvpn 153734 mac 153734 bytes_out 34020 153734 bytes_in 62854 153734 station_ip 83.122.1.183 153734 port 603 153734 unique_id port 153734 remote_ip 10.8.0.14 153738 username pourshad 153738 kill_reason Another user logged on this global unique id 153738 mac 153738 bytes_out 0 153738 bytes_in 0 153738 station_ip 5.119.198.25 153738 port 299 153738 unique_id port 153739 username morteza 153739 mac 153739 bytes_out 0 153739 bytes_in 0 153739 station_ip 83.122.247.169 153739 port 298 153739 unique_id port 153739 remote_ip 10.8.1.62 153745 username hashtadani4 153745 mac 153745 bytes_out 0 153745 bytes_in 0 153745 station_ip 83.122.140.91 153745 port 603 153745 unique_id port 153745 remote_ip 10.8.0.182 153746 username hashtadani4 153746 mac 153746 bytes_out 0 153746 bytes_in 0 153746 station_ip 83.122.140.91 153746 port 303 153746 unique_id port 153746 remote_ip 10.8.1.142 153750 username godarzi 153750 mac 153750 bytes_out 0 153750 bytes_in 0 153750 station_ip 5.202.24.27 153750 port 557 153750 unique_id port 153751 username aminvpn 153751 mac 153751 bytes_out 170682 153751 bytes_in 430423 153751 station_ip 83.122.1.183 153751 port 615 153751 unique_id port 153751 remote_ip 10.8.0.14 153753 username hashtadani4 153753 mac 153753 bytes_out 0 153753 bytes_in 0 153753 station_ip 83.122.140.91 153753 port 603 153753 unique_id port 153753 remote_ip 10.8.0.182 153755 username hashtadani4 153755 mac 153755 bytes_out 0 153755 bytes_in 0 153755 station_ip 83.122.140.91 153755 port 606 153755 unique_id port 153755 remote_ip 10.8.0.182 153757 username pourshad 153757 kill_reason Another user logged on this global unique id 153757 mac 153757 bytes_out 0 153757 bytes_in 0 153757 station_ip 5.119.198.25 153757 port 299 153757 unique_id port 153759 username hashtadani4 153759 mac 153759 bytes_out 0 153759 bytes_in 0 153759 station_ip 83.122.140.91 153759 port 305 153759 unique_id port 153759 remote_ip 10.8.1.142 153762 username morteza 153762 kill_reason Maximum check online fails reached 153762 mac 153762 bytes_out 0 153762 bytes_in 0 153762 station_ip 83.122.247.169 153762 port 304 153762 unique_id port 153763 username barzegar 153763 mac 153763 bytes_out 0 153763 bytes_in 0 153763 station_ip 5.119.217.235 153763 port 305 153763 unique_id port 153763 remote_ip 10.8.1.174 153765 username tahmasebi 153765 mac 153765 bytes_out 0 153765 bytes_in 0 153765 station_ip 5.120.130.84 153765 port 598 153765 unique_id port 153765 remote_ip 10.8.0.42 153767 username morteza 153767 mac 153767 bytes_out 0 153767 bytes_in 0 153767 station_ip 83.122.247.169 153767 port 606 153767 unique_id port 153767 remote_ip 10.8.0.46 153771 username aminvpn 153771 mac 153760 port 606 153760 unique_id port 153760 remote_ip 10.8.0.182 153761 username barzegar 153761 mac 153761 bytes_out 0 153761 bytes_in 0 153761 station_ip 5.119.217.235 153761 port 305 153761 unique_id port 153761 remote_ip 10.8.1.174 153764 username godarzi 153764 mac 153764 bytes_out 0 153764 bytes_in 0 153764 station_ip 5.202.24.27 153764 port 606 153764 unique_id port 153764 remote_ip 10.8.0.174 153766 username farhad2 153766 mac 153766 bytes_out 0 153766 bytes_in 0 153766 station_ip 5.120.149.114 153766 port 609 153766 unique_id port 153766 remote_ip 10.8.0.190 153769 username hashtadani4 153769 mac 153769 bytes_out 0 153769 bytes_in 0 153769 station_ip 83.122.140.91 153769 port 606 153769 unique_id port 153769 remote_ip 10.8.0.182 153774 username barzegar 153774 mac 153774 bytes_out 0 153774 bytes_in 0 153774 station_ip 5.119.217.235 153774 port 557 153774 unique_id port 153774 remote_ip 10.8.0.234 153775 username morteza 153775 mac 153775 bytes_out 142405 153775 bytes_in 2216595 153775 station_ip 83.122.247.169 153775 port 306 153775 unique_id port 153775 remote_ip 10.8.1.62 153777 username hamidsalari 153777 kill_reason Another user logged on this global unique id 153777 mac 153777 bytes_out 0 153777 bytes_in 0 153777 station_ip 5.120.29.182 153777 port 595 153777 unique_id port 153778 username nilufarrajaei 153778 kill_reason Another user logged on this global unique id 153778 mac 153778 bytes_out 0 153778 bytes_in 0 153778 station_ip 37.129.211.205 153778 port 614 153778 unique_id port 153778 remote_ip 10.8.0.206 153781 username alipour 153781 kill_reason Another user logged on this global unique id 153781 mac 153781 bytes_out 0 153781 bytes_in 0 153781 station_ip 37.129.93.37 153781 port 301 153781 unique_id port 153782 username hashtadani4 153782 mac 153782 bytes_out 0 153782 bytes_in 0 153782 station_ip 83.122.140.91 153782 port 598 153782 unique_id port 153782 remote_ip 10.8.0.182 153785 username tahmasebi 153785 mac 153785 bytes_out 0 153785 bytes_in 0 153785 station_ip 5.120.130.84 153785 port 598 153785 unique_id port 153785 remote_ip 10.8.0.42 153790 username tahmasebi 153790 mac 153790 bytes_out 0 153790 bytes_in 0 153790 station_ip 5.120.130.84 153790 port 611 153790 unique_id port 153790 remote_ip 10.8.0.42 153791 username tahmasebi 153791 mac 153791 bytes_out 0 153791 bytes_in 0 153791 station_ip 5.120.130.84 153791 port 611 153791 unique_id port 153791 remote_ip 10.8.0.42 153798 username tahmasebi 153798 mac 153798 bytes_out 2821318 153798 bytes_in 927569 153798 station_ip 5.120.130.84 153798 port 598 153798 unique_id port 153798 remote_ip 10.8.0.42 153800 username barzegar 153800 mac 153800 bytes_out 0 153800 bytes_in 0 153800 station_ip 5.119.217.235 153800 port 611 153800 unique_id port 153800 remote_ip 10.8.0.234 153805 username vanila 153805 mac 153805 bytes_out 0 153805 bytes_in 0 153805 station_ip 83.122.43.39 153805 port 609 153805 unique_id port 153805 remote_ip 10.8.0.178 153808 username farhad2 153808 mac 153808 bytes_out 2027773 153808 bytes_in 21577130 153808 station_ip 5.120.149.114 153808 port 305 153808 unique_id port 153808 remote_ip 10.8.1.222 153810 username morteza 153810 mac 153810 bytes_out 0 153810 bytes_in 0 153810 station_ip 83.122.247.169 153810 port 305 153810 unique_id port 153810 remote_ip 10.8.1.62 153812 username mosi 153812 kill_reason Another user logged on this global unique id 153812 mac 153812 bytes_out 0 153771 bytes_out 0 153771 bytes_in 0 153771 station_ip 83.122.1.183 153771 port 603 153771 unique_id port 153771 remote_ip 10.8.0.14 153772 username pourshad 153772 kill_reason Another user logged on this global unique id 153772 mac 153772 bytes_out 0 153772 bytes_in 0 153772 station_ip 5.119.198.25 153772 port 299 153772 unique_id port 153773 username aminvpn 153773 mac 153773 bytes_out 0 153773 bytes_in 0 153773 station_ip 5.120.35.70 153773 port 557 153773 unique_id port 153773 remote_ip 10.8.0.14 153776 username forozandeh1 153776 mac 153776 bytes_out 0 153776 bytes_in 0 153776 station_ip 83.123.18.118 153776 port 598 153776 unique_id port 153776 remote_ip 10.8.0.130 153779 username morteza 153779 mac 153779 bytes_out 0 153779 bytes_in 0 153779 station_ip 83.122.247.169 153779 port 598 153779 unique_id port 153779 remote_ip 10.8.0.46 153783 username morteza 153783 mac 153783 bytes_out 0 153783 bytes_in 0 153783 station_ip 83.122.247.169 153783 port 306 153783 unique_id port 153783 remote_ip 10.8.1.62 153786 username farhad2 153786 mac 153786 bytes_out 0 153786 bytes_in 0 153786 station_ip 5.120.149.114 153786 port 305 153786 unique_id port 153786 remote_ip 10.8.1.222 153788 username aminvpn 153788 mac 153788 bytes_out 0 153788 bytes_in 0 153788 station_ip 5.120.35.70 153788 port 598 153788 unique_id port 153788 remote_ip 10.8.0.14 153789 username morteza 153789 mac 153789 bytes_out 0 153789 bytes_in 0 153789 station_ip 83.122.247.169 153789 port 598 153789 unique_id port 153789 remote_ip 10.8.0.46 153792 username hashtadani4 153792 mac 153792 bytes_out 0 153792 bytes_in 0 153792 station_ip 83.122.140.91 153792 port 598 153792 unique_id port 153792 remote_ip 10.8.0.182 153796 username mosi 153796 kill_reason Another user logged on this global unique id 153796 mac 153796 bytes_out 0 153796 bytes_in 0 153796 station_ip 151.235.95.177 153796 port 606 153796 unique_id port 153796 remote_ip 10.8.0.138 153801 username mosi 153801 kill_reason Another user logged on this global unique id 153801 mac 153801 bytes_out 0 153801 bytes_in 0 153801 station_ip 151.235.95.177 153801 port 606 153801 unique_id port 153804 username zahra1101 153804 mac 153804 bytes_out 0 153804 bytes_in 0 153804 station_ip 5.120.96.45 153804 port 597 153804 unique_id port 153804 remote_ip 10.8.0.162 153806 username mehdizare 153806 mac 153806 bytes_out 0 153806 bytes_in 0 153806 station_ip 5.120.191.154 153806 port 598 153806 unique_id port 153806 remote_ip 10.8.0.90 153811 username aminvpn 153811 mac 153811 bytes_out 0 153811 bytes_in 0 153811 station_ip 5.120.35.70 153811 port 607 153811 unique_id port 153811 remote_ip 10.8.0.14 153813 username fezealinaghi 153813 kill_reason Another user logged on this global unique id 153813 mac 153813 bytes_out 0 153813 bytes_in 0 153813 station_ip 83.123.53.165 153813 port 612 153813 unique_id port 153815 username hashtadani4 153815 mac 153815 bytes_out 0 153815 bytes_in 0 153815 station_ip 83.122.140.91 153815 port 613 153815 unique_id port 153815 remote_ip 10.8.0.182 153828 username alihosseini1 153828 mac 153828 bytes_out 0 153828 bytes_in 0 153828 station_ip 5.119.211.11 153828 port 598 153828 unique_id port 153828 remote_ip 10.8.0.166 153829 username morteza 153829 mac 153829 bytes_out 0 153829 bytes_in 0 153829 station_ip 83.122.247.169 153829 port 305 153829 unique_id port 153829 remote_ip 10.8.1.62 153833 username barzegar 153833 mac 153793 port 306 153793 unique_id port 153793 remote_ip 10.8.1.62 153794 username aminvpn 153794 mac 153794 bytes_out 0 153794 bytes_in 0 153794 station_ip 83.122.1.183 153794 port 603 153794 unique_id port 153794 remote_ip 10.8.0.14 153795 username aminvpn 153795 mac 153795 bytes_out 0 153795 bytes_in 0 153795 station_ip 5.120.35.70 153795 port 613 153795 unique_id port 153795 remote_ip 10.8.0.14 153797 username morteza 153797 mac 153797 bytes_out 0 153797 bytes_in 0 153797 station_ip 83.122.247.169 153797 port 615 153797 unique_id port 153797 remote_ip 10.8.0.46 153799 username mehdizare 153799 mac 153799 bytes_out 0 153799 bytes_in 0 153799 station_ip 5.120.191.154 153799 port 597 153799 unique_id port 153799 remote_ip 10.8.0.90 153802 username morteza 153802 mac 153802 bytes_out 0 153802 bytes_in 0 153802 station_ip 83.122.247.169 153802 port 306 153802 unique_id port 153802 remote_ip 10.8.1.62 153803 username zahra1101 153803 mac 153803 bytes_out 0 153803 bytes_in 0 153803 station_ip 5.120.96.45 153803 port 607 153803 unique_id port 153803 remote_ip 10.8.0.162 153807 username mosi 153807 kill_reason Another user logged on this global unique id 153807 mac 153807 bytes_out 0 153807 bytes_in 0 153807 station_ip 151.235.95.177 153807 port 606 153807 unique_id port 153809 username aminvpn 153809 mac 153809 bytes_out 0 153809 bytes_in 0 153809 station_ip 83.122.1.183 153809 port 603 153809 unique_id port 153809 remote_ip 10.8.0.14 153814 username barzegar 153814 mac 153814 bytes_out 0 153814 bytes_in 0 153814 station_ip 5.119.217.235 153814 port 607 153814 unique_id port 153814 remote_ip 10.8.0.234 153818 username arash 153818 mac 153818 bytes_out 49677 153818 bytes_in 90699 153818 station_ip 37.156.156.37 153818 port 306 153818 unique_id port 153818 remote_ip 10.8.1.102 153822 username arash 153822 mac 153822 bytes_out 0 153822 bytes_in 0 153822 station_ip 37.156.156.37 153822 port 613 153822 unique_id port 153822 remote_ip 10.8.0.114 153825 username hassan 153825 mac 153825 bytes_out 0 153825 bytes_in 0 153825 station_ip 5.120.159.111 153825 port 590 153825 unique_id port 153837 username farhad2 153837 kill_reason Another user logged on this global unique id 153837 mac 153837 bytes_out 0 153837 bytes_in 0 153837 station_ip 5.120.149.114 153837 port 609 153837 unique_id port 153837 remote_ip 10.8.0.190 153842 username mosi 153842 kill_reason Another user logged on this global unique id 153842 mac 153842 bytes_out 0 153842 bytes_in 0 153842 station_ip 151.235.95.177 153842 port 606 153842 unique_id port 153843 username moradi 153843 mac 153843 bytes_out 0 153843 bytes_in 0 153843 station_ip 37.129.126.2 153843 port 298 153843 unique_id port 153845 username fezealinaghi 153838 port 607 153845 kill_reason Another user logged on this global unique id 153845 mac 153845 bytes_out 0 153845 bytes_in 0 153845 station_ip 83.123.53.165 153845 port 612 153845 unique_id port 153850 username hashtadani4 153850 mac 153850 bytes_out 0 153850 bytes_in 0 153850 station_ip 83.122.140.91 153850 port 590 153850 unique_id port 153850 remote_ip 10.8.0.182 153853 username morteza 153853 mac 153853 bytes_out 0 153853 bytes_in 0 153853 station_ip 83.122.247.169 153853 port 607 153853 unique_id port 153853 remote_ip 10.8.0.46 153854 username morteza 153854 mac 153854 bytes_out 0 153854 bytes_in 0 153854 station_ip 83.122.247.169 153854 port 607 153854 unique_id port 153854 remote_ip 10.8.0.46 153812 bytes_in 0 153812 station_ip 151.235.95.177 153812 port 606 153812 unique_id port 153816 username hashtadani4 153816 mac 153816 bytes_out 0 153816 bytes_in 0 153816 station_ip 83.122.140.91 153816 port 607 153816 unique_id port 153816 remote_ip 10.8.0.182 153817 username mosi 153817 kill_reason Another user logged on this global unique id 153817 mac 153817 bytes_out 0 153817 bytes_in 0 153817 station_ip 151.235.95.177 153817 port 606 153817 unique_id port 153819 username fariba 153819 kill_reason Relative expiration date has reached 153819 mac 153819 bytes_out 0 153819 bytes_in 0 153819 station_ip 5.119.53.108 153819 port 607 153819 unique_id port 153820 username hashtadani4 153820 mac 153820 bytes_out 0 153820 bytes_in 0 153820 station_ip 83.122.140.91 153820 port 607 153820 unique_id port 153820 remote_ip 10.8.0.182 153821 username mehdizare 153821 mac 153821 bytes_out 0 153821 bytes_in 0 153821 station_ip 5.120.191.154 153821 port 603 153821 unique_id port 153821 remote_ip 10.8.0.90 153823 username aminvpn 153823 mac 153823 bytes_out 0 153823 bytes_in 0 153823 station_ip 83.122.1.183 153823 port 611 153823 unique_id port 153823 remote_ip 10.8.0.14 153824 username aminvpn 153824 mac 153824 bytes_out 0 153824 bytes_in 0 153824 station_ip 5.120.35.70 153824 port 613 153824 unique_id port 153824 remote_ip 10.8.0.14 153826 username fezealinaghi 153826 kill_reason Another user logged on this global unique id 153826 mac 153826 bytes_out 0 153826 bytes_in 0 153826 station_ip 83.123.53.165 153826 port 612 153826 unique_id port 153827 username morteza 153827 mac 153827 bytes_out 0 153827 bytes_in 0 153827 station_ip 83.122.247.169 153827 port 590 153827 unique_id port 153827 remote_ip 10.8.0.46 153830 username nilufarrajaei 153830 kill_reason Another user logged on this global unique id 153830 mac 153830 bytes_out 0 153830 bytes_in 0 153830 station_ip 37.129.211.205 153830 port 614 153830 unique_id port 153831 username arash 153831 mac 153831 bytes_out 0 153831 bytes_in 0 153831 station_ip 37.156.156.37 153831 port 603 153831 unique_id port 153831 remote_ip 10.8.0.114 153832 username arash 153832 mac 153832 bytes_out 0 153832 bytes_in 0 153832 station_ip 37.156.156.37 153832 port 603 153832 unique_id port 153832 remote_ip 10.8.0.114 153834 username hashtadani4 153834 mac 153834 bytes_out 0 153834 bytes_in 0 153834 station_ip 83.122.140.91 153834 port 590 153834 unique_id port 153834 remote_ip 10.8.0.182 153835 username fezealinaghi 153835 kill_reason Another user logged on this global unique id 153835 mac 153835 bytes_out 0 153835 bytes_in 0 153835 station_ip 83.123.53.165 153835 port 612 153835 unique_id port 153838 username mehdizare 153838 mac 153838 bytes_out 0 153838 bytes_in 0 153838 station_ip 5.120.191.154 153838 unique_id port 153838 remote_ip 10.8.0.90 153839 username aminvpn 153839 mac 153839 bytes_out 0 153839 bytes_in 0 153839 station_ip 83.122.1.183 153839 port 611 153839 unique_id port 153839 remote_ip 10.8.0.14 153840 username ayobi 153840 kill_reason Another user logged on this global unique id 153840 mac 153840 bytes_out 0 153840 bytes_in 0 153840 station_ip 37.27.4.94 153840 port 557 153840 unique_id port 153840 remote_ip 10.8.0.246 153841 username aminvpn 153841 mac 153841 bytes_out 0 153841 bytes_in 0 153841 station_ip 5.120.35.70 153841 port 607 153841 unique_id port 153841 remote_ip 10.8.0.14 153844 username mehdizare 153844 mac 153844 bytes_out 0 153833 bytes_out 0 153833 bytes_in 0 153833 station_ip 5.119.217.235 153833 port 598 153833 unique_id port 153833 remote_ip 10.8.0.234 153836 username alipour 153836 kill_reason Another user logged on this global unique id 153836 mac 153836 bytes_out 0 153836 bytes_in 0 153836 station_ip 37.129.93.37 153836 port 301 153836 unique_id port 153847 username aminvpn 153847 mac 153847 bytes_out 0 153847 bytes_in 0 153847 station_ip 83.122.1.183 153847 port 611 153847 unique_id port 153847 remote_ip 10.8.0.14 153851 username hashtadani4 153851 mac 153851 bytes_out 0 153851 bytes_in 0 153851 station_ip 83.122.140.91 153851 port 298 153851 unique_id port 153851 remote_ip 10.8.1.142 153852 username hashtadani4 153852 mac 153852 bytes_out 0 153852 bytes_in 0 153852 station_ip 83.122.140.91 153852 port 607 153852 unique_id port 153852 remote_ip 10.8.0.182 153855 username fezealinaghi 153855 kill_reason Another user logged on this global unique id 153855 mac 153855 bytes_out 0 153855 bytes_in 0 153855 station_ip 83.123.53.165 153855 port 612 153855 unique_id port 153856 username farhad2 153856 kill_reason Another user logged on this global unique id 153856 mac 153856 bytes_out 0 153856 bytes_in 0 153856 station_ip 5.120.149.114 153856 port 609 153856 unique_id port 153857 username aminvpn 153857 mac 153857 bytes_out 0 153857 bytes_in 0 153857 station_ip 5.120.35.70 153857 port 603 153857 unique_id port 153857 remote_ip 10.8.0.14 153858 username aminvpn 153858 mac 153858 bytes_out 0 153858 bytes_in 0 153858 station_ip 83.122.161.97 153858 port 611 153858 unique_id port 153858 remote_ip 10.8.0.14 153859 username hashtadani4 153859 mac 153859 bytes_out 0 153859 bytes_in 0 153859 station_ip 83.122.140.91 153859 port 611 153859 unique_id port 153859 remote_ip 10.8.0.182 153862 username morteza 153862 mac 153862 bytes_out 0 153862 bytes_in 0 153862 station_ip 83.122.247.169 153862 port 603 153862 unique_id port 153862 remote_ip 10.8.0.46 153864 username farhad2 153864 mac 153864 bytes_out 0 153864 bytes_in 0 153864 station_ip 5.120.149.114 153864 port 603 153864 unique_id port 153864 remote_ip 10.8.0.190 153866 username aminvpn 153866 mac 153866 bytes_out 0 153866 bytes_in 0 153866 station_ip 5.120.35.70 153866 port 603 153866 unique_id port 153866 remote_ip 10.8.0.14 153867 username barzegar 153867 mac 153867 bytes_out 0 153867 bytes_in 0 153867 station_ip 5.119.217.235 153867 port 603 153867 unique_id port 153867 remote_ip 10.8.0.234 153875 username arash 153875 mac 153875 bytes_out 109975 153875 bytes_in 209229 153875 station_ip 37.156.156.37 153875 port 598 153875 unique_id port 153875 remote_ip 10.8.0.114 153876 username hosseine 153876 mac 153876 bytes_out 1387475 153876 bytes_in 9269997 153876 station_ip 37.129.7.130 153876 port 610 153876 unique_id port 153876 remote_ip 10.8.0.238 153877 username hashtadani4 153877 mac 153877 bytes_out 0 153877 bytes_in 0 153877 station_ip 83.122.140.91 153877 port 610 153877 unique_id port 153877 remote_ip 10.8.0.182 153880 username aminvpn 153880 mac 153880 bytes_out 0 153880 bytes_in 0 153880 station_ip 83.122.161.97 153880 port 607 153880 unique_id port 153880 remote_ip 10.8.0.14 153882 username mehdizare 153882 mac 153882 bytes_out 0 153882 bytes_in 0 153882 station_ip 5.120.191.154 153882 port 590 153882 unique_id port 153882 remote_ip 10.8.0.90 153886 username morteza 153886 mac 153886 bytes_out 0 153844 bytes_in 0 153844 station_ip 5.120.191.154 153844 port 603 153844 unique_id port 153844 remote_ip 10.8.0.90 153846 username morteza 153846 mac 153846 bytes_out 0 153846 bytes_in 0 153846 station_ip 83.122.247.169 153846 port 298 153846 unique_id port 153846 remote_ip 10.8.1.62 153848 username barzegar 153848 mac 153848 bytes_out 0 153848 bytes_in 0 153848 station_ip 5.119.217.235 153848 port 603 153848 unique_id port 153848 remote_ip 10.8.0.234 153849 username mehdizare 153849 mac 153849 bytes_out 0 153849 bytes_in 0 153849 station_ip 5.120.191.154 153849 port 607 153849 unique_id port 153849 remote_ip 10.8.0.90 153863 username ahmadi1 153863 mac 153863 bytes_out 0 153863 bytes_in 0 153863 station_ip 83.122.87.24 153863 port 607 153863 unique_id port 153863 remote_ip 10.8.0.250 153865 username aminvpn 153865 mac 153865 bytes_out 0 153865 bytes_in 0 153865 station_ip 83.122.161.97 153865 port 611 153865 unique_id port 153865 remote_ip 10.8.0.14 153869 username hassan 153869 mac 153869 bytes_out 18954696 153869 bytes_in 13345317 153869 station_ip 37.27.28.81 153869 port 613 153869 unique_id port 153869 remote_ip 10.8.0.122 153870 username hashtadani4 153870 mac 153870 bytes_out 0 153870 bytes_in 0 153870 station_ip 83.122.140.91 153870 port 609 153870 unique_id port 153870 remote_ip 10.8.0.182 153873 username rezaei 153873 mac 153873 bytes_out 698466 153873 bytes_in 8578405 153873 station_ip 5.120.96.217 153873 port 298 153873 unique_id port 153873 remote_ip 10.8.1.58 153879 username morteza 153879 mac 153879 bytes_out 0 153879 bytes_in 0 153879 station_ip 83.122.247.169 153879 port 298 153879 unique_id port 153879 remote_ip 10.8.1.62 153881 username aminvpn 153881 mac 153881 bytes_out 0 153881 bytes_in 0 153881 station_ip 5.120.35.70 153881 port 613 153881 unique_id port 153881 remote_ip 10.8.0.14 153883 username arash 153883 mac 153883 bytes_out 40541 153883 bytes_in 94570 153883 station_ip 37.156.156.37 153883 port 598 153883 unique_id port 153883 remote_ip 10.8.0.114 153884 username kordestani 153884 mac 153884 bytes_out 1323165 153884 bytes_in 17632224 153884 station_ip 37.129.8.218 153884 port 292 153884 unique_id port 153884 remote_ip 10.8.1.98 153887 username vanila 153887 mac 153887 bytes_out 0 153887 bytes_in 0 153887 station_ip 83.122.101.75 153887 port 590 153887 unique_id port 153887 remote_ip 10.8.0.178 153890 username vanila 153890 mac 153890 bytes_out 33040 153890 bytes_in 66481 153890 station_ip 83.122.101.75 153890 port 598 153890 unique_id port 153890 remote_ip 10.8.0.178 153897 username morteza 153897 mac 153897 bytes_out 0 153897 bytes_in 0 153897 station_ip 83.122.247.169 153897 port 305 153897 unique_id port 153897 remote_ip 10.8.1.62 153899 username moradi 153899 kill_reason Another user logged on this global unique id 153899 mac 153899 bytes_out 0 153899 bytes_in 0 153899 station_ip 37.129.108.126 153899 port 298 153899 unique_id port 153899 remote_ip 10.8.1.202 153902 username fezealinaghi 153902 kill_reason Another user logged on this global unique id 153902 mac 153902 bytes_out 0 153902 bytes_in 0 153902 station_ip 83.123.53.165 153902 port 612 153902 unique_id port 153914 username morteza 153914 mac 153914 bytes_out 0 153914 bytes_in 0 153914 station_ip 83.122.247.169 153914 port 307 153914 unique_id port 153914 remote_ip 10.8.1.62 153921 username nilufarrajaei 153921 mac 153921 bytes_out 0 153921 bytes_in 0 153860 username aminvpn 153860 mac 153860 bytes_out 0 153860 bytes_in 0 153860 station_ip 5.120.35.70 153860 port 603 153860 unique_id port 153860 remote_ip 10.8.0.14 153861 username farhad2 153861 mac 153861 bytes_out 0 153861 bytes_in 0 153861 station_ip 5.120.149.114 153861 port 609 153861 unique_id port 153868 username hashtadani4 153868 mac 153868 bytes_out 0 153868 bytes_in 0 153868 station_ip 83.122.140.91 153868 port 603 153868 unique_id port 153868 remote_ip 10.8.0.182 153871 username morteza 153871 mac 153871 bytes_out 0 153871 bytes_in 0 153871 station_ip 83.122.247.169 153871 port 305 153871 unique_id port 153871 remote_ip 10.8.1.62 153872 username fezealinaghi 153872 kill_reason Another user logged on this global unique id 153872 mac 153872 bytes_out 0 153872 bytes_in 0 153872 station_ip 83.123.53.165 153872 port 612 153872 unique_id port 153874 username hashtadani4 153874 mac 153874 bytes_out 0 153874 bytes_in 0 153874 station_ip 83.122.140.91 153874 port 611 153874 unique_id port 153874 remote_ip 10.8.0.182 153878 username barzegar 153878 mac 153878 bytes_out 0 153878 bytes_in 0 153878 station_ip 5.119.217.235 153878 port 610 153878 unique_id port 153878 remote_ip 10.8.0.234 153885 username hashtadani4 153885 mac 153885 bytes_out 0 153885 bytes_in 0 153885 station_ip 83.122.140.91 153885 port 590 153885 unique_id port 153885 remote_ip 10.8.0.182 153888 username fezealinaghi 153888 kill_reason Another user logged on this global unique id 153888 mac 153888 bytes_out 0 153888 bytes_in 0 153888 station_ip 83.123.53.165 153888 port 612 153888 unique_id port 153892 username barzegar 153892 mac 153892 bytes_out 0 153892 bytes_in 0 153892 station_ip 5.119.217.235 153892 port 611 153892 unique_id port 153892 remote_ip 10.8.0.234 153895 username aminvpn 153895 mac 153895 bytes_out 0 153895 bytes_in 0 153895 station_ip 83.122.161.97 153895 port 607 153895 unique_id port 153895 remote_ip 10.8.0.14 153896 username aminvpn 153896 mac 153896 bytes_out 0 153896 bytes_in 0 153896 station_ip 5.120.35.70 153896 port 590 153896 unique_id port 153896 remote_ip 10.8.0.14 153898 username hassan 153898 mac 153898 bytes_out 1502830 153898 bytes_in 26321666 153898 station_ip 5.120.159.111 153898 port 603 153898 unique_id port 153898 remote_ip 10.8.0.122 153901 username hashtadani4 153901 mac 153901 bytes_out 0 153901 bytes_in 0 153901 station_ip 83.122.140.91 153901 port 598 153901 unique_id port 153901 remote_ip 10.8.0.182 153904 username hashtadani4 153904 mac 153904 bytes_out 0 153904 bytes_in 0 153904 station_ip 83.122.140.91 153904 port 603 153904 unique_id port 153904 remote_ip 10.8.0.182 153906 username morteza 153906 mac 153906 bytes_out 0 153906 bytes_in 0 153906 station_ip 83.122.247.169 153906 port 598 153906 unique_id port 153906 remote_ip 10.8.0.46 153908 username farhad2 153908 mac 153908 bytes_out 0 153908 bytes_in 0 153908 station_ip 5.120.149.114 153908 port 598 153908 unique_id port 153908 remote_ip 10.8.0.190 153911 username hashtadani4 153911 mac 153911 bytes_out 0 153911 bytes_in 0 153911 station_ip 83.122.140.91 153911 port 598 153911 unique_id port 153911 remote_ip 10.8.0.182 153912 username hashtadani4 153912 mac 153912 bytes_out 0 153912 bytes_in 0 153912 station_ip 83.122.140.91 153912 port 598 153912 unique_id port 153912 remote_ip 10.8.0.182 153913 username hadibarzegar 153913 kill_reason Another user logged on this global unique id 153886 bytes_in 0 153886 station_ip 83.122.247.169 153886 port 298 153886 unique_id port 153886 remote_ip 10.8.1.62 153889 username sabaghnezhad 153889 mac 153889 bytes_out 0 153889 bytes_in 0 153889 station_ip 37.129.221.245 153889 port 609 153889 unique_id port 153889 remote_ip 10.8.0.186 153891 username nilufarrajaei 153891 kill_reason Another user logged on this global unique id 153891 mac 153891 bytes_out 0 153891 bytes_in 0 153891 station_ip 37.129.211.205 153891 port 614 153891 unique_id port 153893 username tahmasebi 153893 mac 153893 bytes_out 2689376 153893 bytes_in 35831955 153893 station_ip 5.120.130.84 153893 port 610 153893 unique_id port 153893 remote_ip 10.8.0.42 153894 username hashtadani4 153894 mac 153894 bytes_out 0 153894 bytes_in 0 153894 station_ip 83.122.140.91 153894 port 590 153894 unique_id port 153894 remote_ip 10.8.0.182 153900 username aminvpn 153900 mac 153900 bytes_out 0 153900 bytes_in 0 153900 station_ip 83.122.161.97 153900 port 598 153900 unique_id port 153900 remote_ip 10.8.0.14 153903 username hashtadani4 153903 mac 153903 bytes_out 0 153903 bytes_in 0 153903 station_ip 83.122.140.91 153903 port 598 153903 unique_id port 153903 remote_ip 10.8.0.182 153905 username morteza 153905 mac 153905 bytes_out 0 153905 bytes_in 0 153905 station_ip 83.122.247.169 153905 port 598 153905 unique_id port 153905 remote_ip 10.8.0.46 153907 username barzegar 153907 mac 153907 bytes_out 0 153907 bytes_in 0 153907 station_ip 5.119.217.235 153907 port 607 153907 unique_id port 153907 remote_ip 10.8.0.234 153909 username farhad2 153909 mac 153909 bytes_out 0 153909 bytes_in 0 153909 station_ip 5.120.149.114 153909 port 598 153909 unique_id port 153909 remote_ip 10.8.0.190 153910 username farhad2 153910 mac 153910 bytes_out 0 153910 bytes_in 0 153910 station_ip 5.120.149.114 153910 port 598 153910 unique_id port 153910 remote_ip 10.8.0.190 153920 username farhad2 153920 mac 153920 bytes_out 714276 153920 bytes_in 2437711 153920 station_ip 5.120.149.114 153920 port 306 153920 unique_id port 153920 remote_ip 10.8.1.222 153923 username barzegar 153923 mac 153923 bytes_out 0 153923 bytes_in 0 153923 station_ip 5.119.217.235 153923 port 603 153923 unique_id port 153923 remote_ip 10.8.0.234 153924 username aminvpn 153924 mac 153924 bytes_out 0 153924 bytes_in 0 153924 station_ip 83.122.161.97 153924 port 598 153924 unique_id port 153924 remote_ip 10.8.0.14 153925 username aminvpn 153925 mac 153925 bytes_out 0 153925 bytes_in 0 153925 station_ip 5.120.35.70 153925 port 603 153925 unique_id port 153925 remote_ip 10.8.0.14 153928 username moradi 153928 kill_reason Another user logged on this global unique id 153928 mac 153928 bytes_out 0 153928 bytes_in 0 153928 station_ip 37.129.108.126 153928 port 298 153928 unique_id port 153929 username hashtadani4 153929 mac 153929 bytes_out 0 153929 bytes_in 0 153929 station_ip 83.122.140.91 153929 port 603 153929 unique_id port 153929 remote_ip 10.8.0.182 153930 username morteza 153930 mac 153930 bytes_out 0 153930 bytes_in 0 153930 station_ip 83.122.247.169 153930 port 603 153930 unique_id port 153930 remote_ip 10.8.0.46 153932 username zahra1101 153932 kill_reason Another user logged on this global unique id 153932 mac 153932 bytes_out 0 153932 bytes_in 0 153932 station_ip 5.120.96.45 153932 port 597 153932 unique_id port 153932 remote_ip 10.8.0.162 153941 username kordestani 153941 mac 153941 bytes_out 103982 153913 mac 153913 bytes_out 3137328 153913 bytes_in 46886542 153913 station_ip 37.129.47.26 153913 port 590 153913 unique_id port 153913 remote_ip 10.8.0.154 153915 username farhad2 153915 mac 153915 bytes_out 193640 153915 bytes_in 2121387 153915 station_ip 5.120.149.114 153915 port 306 153915 unique_id port 153915 remote_ip 10.8.1.222 153916 username kordestani 153916 mac 153916 bytes_out 0 153916 bytes_in 0 153916 station_ip 151.235.127.109 153916 port 292 153916 unique_id port 153916 remote_ip 10.8.1.98 153917 username aminvpn 153917 mac 153917 bytes_out 0 153917 bytes_in 0 153917 station_ip 5.120.35.70 153917 port 603 153917 unique_id port 153917 remote_ip 10.8.0.14 153918 username hashtadani4 153918 mac 153918 bytes_out 0 153918 bytes_in 0 153918 station_ip 83.122.140.91 153918 port 603 153918 unique_id port 153918 remote_ip 10.8.0.182 153919 username morteza 153919 mac 153919 bytes_out 0 153919 bytes_in 0 153919 station_ip 83.122.247.169 153919 port 603 153919 unique_id port 153919 remote_ip 10.8.0.46 153922 username pourshad 153922 mac 153922 bytes_out 0 153922 bytes_in 0 153922 station_ip 5.119.198.25 153922 port 299 153922 unique_id port 153926 username morteza 153926 mac 153926 bytes_out 0 153926 bytes_in 0 153926 station_ip 83.122.247.169 153926 port 603 153926 unique_id port 153926 remote_ip 10.8.0.46 153933 username hashtadani4 153933 mac 153933 bytes_out 0 153933 bytes_in 0 153933 station_ip 83.122.140.91 153933 port 603 153933 unique_id port 153933 remote_ip 10.8.0.182 153934 username morteza 153934 mac 153934 bytes_out 0 153934 bytes_in 0 153934 station_ip 83.122.247.169 153934 port 299 153934 unique_id port 153934 remote_ip 10.8.1.62 153935 username hadibarzegar 153935 kill_reason Another user logged on this global unique id 153935 mac 153935 bytes_out 0 153935 bytes_in 0 153935 station_ip 37.129.47.26 153935 port 590 153935 unique_id port 153936 username aminvpn 153936 mac 153936 bytes_out 6748043 153936 bytes_in 24671924 153936 station_ip 83.122.161.97 153936 port 598 153936 unique_id port 153936 remote_ip 10.8.0.14 153939 username hashtadani4 153939 mac 153939 bytes_out 0 153939 bytes_in 0 153939 station_ip 83.122.140.91 153939 port 603 153939 unique_id port 153939 remote_ip 10.8.0.182 153943 username hadibarzegar 153943 kill_reason Another user logged on this global unique id 153943 mac 153943 bytes_out 0 153943 bytes_in 0 153943 station_ip 37.129.47.26 153943 port 590 153943 unique_id port 153945 username hashtadani4 153945 mac 153945 bytes_out 0 153945 bytes_in 0 153945 station_ip 83.122.140.91 153945 port 607 153945 unique_id port 153945 remote_ip 10.8.0.182 153946 username aminvpn 153946 mac 153946 bytes_out 0 153946 bytes_in 0 153946 station_ip 83.122.161.97 153946 port 598 153946 unique_id port 153946 remote_ip 10.8.0.14 153948 username moradi 153948 kill_reason Another user logged on this global unique id 153948 mac 153948 bytes_out 0 153948 bytes_in 0 153948 station_ip 37.129.108.126 153948 port 298 153948 unique_id port 153948 remote_ip 10.8.1.202 153950 username aminvpn 153950 mac 153950 bytes_out 0 153950 bytes_in 0 153950 station_ip 5.120.35.70 153950 port 607 153950 unique_id port 153950 remote_ip 10.8.0.14 153954 username fezealinaghi 153954 kill_reason Another user logged on this global unique id 153954 mac 153954 bytes_out 0 153954 bytes_in 0 153954 station_ip 83.123.53.165 153954 port 612 153954 unique_id port 153955 username mosi 153921 station_ip 37.129.211.205 153921 port 614 153921 unique_id port 153927 username hadibarzegar 153927 kill_reason Another user logged on this global unique id 153927 mac 153927 bytes_out 0 153927 bytes_in 0 153927 station_ip 37.129.47.26 153927 port 590 153927 unique_id port 153931 username moradi 153931 mac 153931 bytes_out 0 153931 bytes_in 0 153931 station_ip 37.129.108.126 153931 port 298 153931 unique_id port 153937 username barzegar 153937 mac 153937 bytes_out 0 153937 bytes_in 0 153937 station_ip 5.119.217.235 153937 port 598 153937 unique_id port 153937 remote_ip 10.8.0.234 153938 username aminvpn 153938 mac 153938 bytes_out 0 153938 bytes_in 0 153938 station_ip 5.120.35.70 153938 port 603 153938 unique_id port 153938 remote_ip 10.8.0.14 153940 username hamidsalari 153940 kill_reason Another user logged on this global unique id 153940 mac 153940 bytes_out 0 153940 bytes_in 0 153940 station_ip 5.120.29.182 153940 port 595 153940 unique_id port 153942 username morteza 153942 mac 153942 bytes_out 0 153942 bytes_in 0 153942 station_ip 83.122.247.169 153942 port 299 153942 unique_id port 153942 remote_ip 10.8.1.62 153944 username hamidsalari 153944 kill_reason Another user logged on this global unique id 153944 mac 153944 bytes_out 0 153944 bytes_in 0 153944 station_ip 5.120.29.182 153944 port 595 153944 unique_id port 153947 username morteza 153947 mac 153947 bytes_out 0 153947 bytes_in 0 153947 station_ip 83.122.247.169 153947 port 292 153947 unique_id port 153947 remote_ip 10.8.1.62 153959 username ayobi 153959 mac 153959 bytes_out 0 153959 bytes_in 0 153959 station_ip 37.27.4.94 153959 port 557 153959 unique_id port 153962 username aminvpn 153962 mac 153962 bytes_out 0 153962 bytes_in 0 153962 station_ip 5.120.35.70 153962 port 557 153962 unique_id port 153962 remote_ip 10.8.0.14 153969 username hashtadani4 153969 mac 153969 bytes_out 0 153969 bytes_in 0 153969 station_ip 83.122.140.91 153969 port 595 153969 unique_id port 153969 remote_ip 10.8.0.182 153978 username barzegar 153978 mac 153978 bytes_out 0 153978 bytes_in 0 153978 station_ip 5.119.217.235 153978 port 598 153978 unique_id port 153978 remote_ip 10.8.0.234 153982 username hadibarzegar 153982 kill_reason Another user logged on this global unique id 153982 mac 153982 bytes_out 0 153982 bytes_in 0 153982 station_ip 37.129.47.26 153982 port 590 153982 unique_id port 153987 username hashtadani4 153987 mac 153987 bytes_out 0 153987 bytes_in 0 153987 station_ip 83.122.140.91 153987 port 598 153987 unique_id port 153987 remote_ip 10.8.0.182 153989 username arash 153989 mac 153989 bytes_out 0 153989 bytes_in 0 153989 station_ip 89.47.68.112 153989 port 595 153989 unique_id port 153989 remote_ip 10.8.0.114 153996 username mosi 153996 kill_reason Another user logged on this global unique id 153996 mac 153996 bytes_out 0 153996 bytes_in 0 153996 station_ip 151.235.95.177 153996 port 606 153996 unique_id port 153997 username morteza 153997 mac 153997 bytes_out 0 153997 bytes_in 0 153997 station_ip 83.122.247.169 153997 port 299 153997 unique_id port 153997 remote_ip 10.8.1.62 153999 username farhad2 153999 kill_reason Another user logged on this global unique id 153999 mac 153999 bytes_out 0 153999 bytes_in 0 153999 station_ip 5.120.149.114 153999 port 603 153999 unique_id port 154001 username morteza 154001 mac 154001 bytes_out 0 154001 bytes_in 0 154001 station_ip 83.122.247.169 154001 port 590 154001 unique_id port 153941 bytes_in 86944 153941 station_ip 151.235.111.153 153941 port 292 153941 unique_id port 153941 remote_ip 10.8.1.98 153949 username hamidsalari 153949 mac 153949 bytes_out 0 153949 bytes_in 0 153949 station_ip 5.120.29.182 153949 port 595 153949 unique_id port 153951 username mirzaei 153951 kill_reason Another user logged on this global unique id 153951 mac 153951 bytes_out 0 153951 bytes_in 0 153951 station_ip 5.119.91.25 153951 port 287 153951 unique_id port 153952 username hadibarzegar 153952 kill_reason Another user logged on this global unique id 153952 mac 153952 bytes_out 0 153952 bytes_in 0 153952 station_ip 37.129.47.26 153952 port 590 153952 unique_id port 153953 username barzegar 153953 mac 153953 bytes_out 0 153953 bytes_in 0 153953 station_ip 5.119.217.235 153953 port 598 153953 unique_id port 153953 remote_ip 10.8.0.234 153958 username hosseine 153958 mac 153958 bytes_out 0 153958 bytes_in 0 153958 station_ip 37.129.7.130 153958 port 305 153958 unique_id port 153958 remote_ip 10.8.1.190 153961 username aminvpn 153961 mac 153961 bytes_out 502736 153961 bytes_in 3186373 153961 station_ip 83.122.161.97 153961 port 595 153961 unique_id port 153961 remote_ip 10.8.0.14 153964 username vanila 153964 mac 153964 bytes_out 671202 153964 bytes_in 11555254 153964 station_ip 83.122.101.75 153964 port 598 153964 unique_id port 153964 remote_ip 10.8.0.178 153966 username aminvpn 153966 mac 153966 bytes_out 7201097 153966 bytes_in 8684354 153966 station_ip 83.122.161.97 153966 port 607 153966 unique_id port 153966 remote_ip 10.8.0.14 153968 username barzegar 153968 mac 153968 bytes_out 0 153968 bytes_in 0 153968 station_ip 5.119.217.235 153968 port 595 153968 unique_id port 153968 remote_ip 10.8.0.234 153970 username morteza 153970 mac 153970 bytes_out 0 153970 bytes_in 0 153970 station_ip 83.122.247.169 153970 port 595 153970 unique_id port 153970 remote_ip 10.8.0.46 153971 username vanila 153971 mac 153971 bytes_out 0 153971 bytes_in 0 153971 station_ip 83.122.101.75 153971 port 557 153971 unique_id port 153971 remote_ip 10.8.0.178 153974 username farhad2 153974 kill_reason Another user logged on this global unique id 153974 mac 153974 bytes_out 0 153974 bytes_in 0 153974 station_ip 5.120.149.114 153974 port 603 153974 unique_id port 153974 remote_ip 10.8.0.190 153976 username hadibarzegar 153976 kill_reason Another user logged on this global unique id 153976 mac 153976 bytes_out 0 153976 bytes_in 0 153976 station_ip 37.129.47.26 153976 port 590 153976 unique_id port 153977 username morteza 153977 mac 153977 bytes_out 0 153977 bytes_in 0 153977 station_ip 83.122.247.169 153977 port 299 153977 unique_id port 153977 remote_ip 10.8.1.62 153979 username moradi 153979 mac 153979 bytes_out 0 153979 bytes_in 0 153979 station_ip 37.129.108.126 153979 port 298 153979 unique_id port 153981 username morteza 153981 mac 153981 bytes_out 0 153981 bytes_in 0 153981 station_ip 83.122.247.169 153981 port 298 153981 unique_id port 153981 remote_ip 10.8.1.62 153983 username alipour 153983 mac 153983 bytes_out 0 153983 bytes_in 0 153983 station_ip 37.129.93.37 153983 port 301 153983 unique_id port 153990 username hadibarzegar 153990 kill_reason Another user logged on this global unique id 153990 mac 153990 bytes_out 0 153990 bytes_in 0 153990 station_ip 37.129.47.26 153990 port 590 153990 unique_id port 153991 username barzegar 153991 mac 153991 bytes_out 0 153991 bytes_in 0 153991 station_ip 5.119.217.235 153955 kill_reason Another user logged on this global unique id 153955 mac 153955 bytes_out 0 153955 bytes_in 0 153955 station_ip 151.235.95.177 153955 port 606 153955 unique_id port 153956 username hashtadani4 153956 mac 153956 bytes_out 0 153956 bytes_in 0 153956 station_ip 83.122.140.91 153956 port 598 153956 unique_id port 153956 remote_ip 10.8.0.182 153957 username morteza 153957 mac 153957 bytes_out 0 153957 bytes_in 0 153957 station_ip 83.122.247.169 153957 port 598 153957 unique_id port 153957 remote_ip 10.8.0.46 153960 username hadibarzegar 153960 kill_reason Another user logged on this global unique id 153960 mac 153960 bytes_out 0 153960 bytes_in 0 153960 station_ip 37.129.47.26 153960 port 590 153960 unique_id port 153963 username hashtadani4 153963 mac 153963 bytes_out 0 153963 bytes_in 0 153963 station_ip 83.122.140.91 153963 port 595 153963 unique_id port 153963 remote_ip 10.8.0.182 153965 username morteza 153965 mac 153965 bytes_out 0 153965 bytes_in 0 153965 station_ip 83.122.247.169 153965 port 557 153965 unique_id port 153965 remote_ip 10.8.0.46 153967 username hadibarzegar 153967 kill_reason Another user logged on this global unique id 153967 mac 153967 bytes_out 0 153967 bytes_in 0 153967 station_ip 37.129.47.26 153967 port 590 153967 unique_id port 153972 username fezealinaghi 153972 kill_reason Another user logged on this global unique id 153972 mac 153972 bytes_out 0 153972 bytes_in 0 153972 station_ip 83.123.53.165 153972 port 612 153972 unique_id port 153973 username mosi 153973 kill_reason Another user logged on this global unique id 153973 mac 153973 bytes_out 0 153973 bytes_in 0 153973 station_ip 151.235.95.177 153973 port 606 153973 unique_id port 153975 username hashtadani4 153975 mac 153975 bytes_out 0 153975 bytes_in 0 153975 station_ip 83.122.140.91 153975 port 598 153975 unique_id port 153975 remote_ip 10.8.0.182 153980 username hashtadani4 153980 mac 153980 bytes_out 0 153980 bytes_in 0 153980 station_ip 83.122.140.91 153980 port 598 153980 unique_id port 153980 remote_ip 10.8.0.182 153984 username fezealinaghi 153984 kill_reason Another user logged on this global unique id 153984 mac 153984 bytes_out 0 153984 bytes_in 0 153984 station_ip 83.123.53.165 153984 port 612 153984 unique_id port 153985 username mosi 153985 kill_reason Another user logged on this global unique id 153985 mac 153985 bytes_out 0 153985 bytes_in 0 153985 station_ip 151.235.95.177 153985 port 606 153985 unique_id port 153986 username hashtadani4 153986 mac 153986 bytes_out 0 153986 bytes_in 0 153986 station_ip 83.122.140.91 153986 port 598 153986 unique_id port 153986 remote_ip 10.8.0.182 153988 username morteza 153988 mac 153988 bytes_out 0 153988 bytes_in 0 153988 station_ip 83.122.247.169 153988 port 598 153988 unique_id port 153988 remote_ip 10.8.0.46 153993 username hashtadani4 153993 mac 153993 bytes_out 0 153993 bytes_in 0 153993 station_ip 83.122.140.91 153993 port 607 153993 unique_id port 153993 remote_ip 10.8.0.182 154000 username hadibarzegar 154000 mac 154000 bytes_out 0 154000 bytes_in 0 154000 station_ip 37.129.47.26 154000 port 590 154000 unique_id port 154002 username barzegar 154002 mac 154002 bytes_out 0 154002 bytes_in 0 154002 station_ip 5.119.217.235 154002 port 607 154002 unique_id port 154002 remote_ip 10.8.0.234 154003 username hashtadani4 154003 mac 154003 bytes_out 0 154003 bytes_in 0 154003 station_ip 83.122.140.91 154003 port 607 154003 unique_id port 154003 remote_ip 10.8.0.182 153991 port 607 153991 unique_id port 153991 remote_ip 10.8.0.234 153992 username morteza 153992 mac 153992 bytes_out 0 153992 bytes_in 0 153992 station_ip 83.122.247.169 153992 port 299 153992 unique_id port 153992 remote_ip 10.8.1.62 153994 username morteza 153994 mac 153994 bytes_out 0 153994 bytes_in 0 153994 station_ip 83.122.247.169 153994 port 607 153994 unique_id port 153994 remote_ip 10.8.0.46 153995 username fezealinaghi 153995 kill_reason Another user logged on this global unique id 153995 mac 153995 bytes_out 0 153995 bytes_in 0 153995 station_ip 83.123.53.165 153995 port 612 153995 unique_id port 153998 username hashtadani4 153998 mac 153998 bytes_out 0 153998 bytes_in 0 153998 station_ip 83.122.140.91 153998 port 607 153998 unique_id port 153998 remote_ip 10.8.0.182 154004 username morteza 154004 kill_reason Maximum check online fails reached 154004 mac 154004 bytes_out 0 154004 bytes_in 0 154004 station_ip 83.122.247.169 154004 port 590 154004 unique_id port 154005 username morteza 154005 mac 154005 bytes_out 0 154005 bytes_in 0 154005 station_ip 83.122.247.169 154005 port 607 154005 unique_id port 154005 remote_ip 10.8.0.46 154006 username morteza 154006 mac 154006 bytes_out 0 154006 bytes_in 0 154006 station_ip 83.122.247.169 154006 port 607 154006 unique_id port 154006 remote_ip 10.8.0.46 154010 username mosi 154010 kill_reason Another user logged on this global unique id 154010 mac 154010 bytes_out 0 154010 bytes_in 0 154010 station_ip 151.235.95.177 154010 port 606 154010 unique_id port 154011 username farhad2 154011 mac 154011 bytes_out 127245 154011 bytes_in 439271 154011 station_ip 5.120.149.114 154011 port 299 154011 unique_id port 154011 remote_ip 10.8.1.222 154012 username morteza 154012 mac 154012 bytes_out 0 154012 bytes_in 0 154012 station_ip 83.122.247.169 154012 port 299 154012 unique_id port 154012 remote_ip 10.8.1.62 154015 username fezealinaghi 154015 kill_reason Another user logged on this global unique id 154015 mac 154015 bytes_out 0 154015 bytes_in 0 154015 station_ip 83.123.53.165 154015 port 612 154015 unique_id port 154016 username barzegar 154016 mac 154016 bytes_out 0 154016 bytes_in 0 154016 station_ip 5.119.217.235 154016 port 598 154016 unique_id port 154016 remote_ip 10.8.0.234 154022 username mosi 154022 kill_reason Another user logged on this global unique id 154022 mac 154022 bytes_out 0 154022 bytes_in 0 154022 station_ip 151.235.95.177 154022 port 606 154022 unique_id port 154023 username hashtadani4 154023 mac 154023 bytes_out 2005 154023 bytes_in 4653 154023 station_ip 83.122.140.91 154023 port 598 154023 unique_id port 154023 remote_ip 10.8.0.182 154024 username morteza 154024 mac 154024 bytes_out 0 154024 bytes_in 0 154024 station_ip 83.122.247.169 154024 port 598 154024 unique_id port 154024 remote_ip 10.8.0.46 154028 username farhad2 154028 mac 154028 bytes_out 0 154028 bytes_in 0 154028 station_ip 5.120.149.114 154028 port 299 154028 unique_id port 154028 remote_ip 10.8.1.222 154030 username farhad2 154030 mac 154030 bytes_out 0 154030 bytes_in 0 154030 station_ip 5.120.149.114 154030 port 299 154030 unique_id port 154030 remote_ip 10.8.1.222 154032 username hadibarzegar 154032 kill_reason Another user logged on this global unique id 154032 mac 154032 bytes_out 0 154032 bytes_in 0 154032 station_ip 37.129.48.98 154032 port 301 154032 unique_id port 154032 remote_ip 10.8.1.150 154035 username mosi 154035 kill_reason Another user logged on this global unique id 154001 remote_ip 10.8.0.46 154007 username fezealinaghi 154007 kill_reason Another user logged on this global unique id 154007 mac 154007 bytes_out 0 154007 bytes_in 0 154007 station_ip 83.123.53.165 154007 port 612 154007 unique_id port 154013 username mansour 154013 mac 154013 bytes_out 0 154013 bytes_in 0 154013 station_ip 5.202.98.165 154013 port 603 154013 unique_id port 154013 remote_ip 10.8.0.30 154017 username hashtadani4 154017 mac 154017 bytes_out 0 154017 bytes_in 0 154017 station_ip 83.122.140.91 154017 port 603 154017 unique_id port 154017 remote_ip 10.8.0.182 154018 username hashtadani4 154018 mac 154018 bytes_out 0 154018 bytes_in 0 154018 station_ip 83.122.140.91 154018 port 598 154018 unique_id port 154018 remote_ip 10.8.0.182 154021 username morteza 154021 mac 154021 bytes_out 0 154021 bytes_in 0 154021 station_ip 83.122.247.169 154021 port 598 154021 unique_id port 154021 remote_ip 10.8.0.46 154027 username zahra1101 154027 kill_reason Another user logged on this global unique id 154027 mac 154027 bytes_out 0 154027 bytes_in 0 154027 station_ip 5.120.96.45 154027 port 597 154027 unique_id port 154031 username morteza 154031 mac 154031 bytes_out 0 154031 bytes_in 0 154031 station_ip 83.122.247.169 154031 port 598 154031 unique_id port 154031 remote_ip 10.8.0.46 154033 username hashtadani4 154033 mac 154033 bytes_out 0 154033 bytes_in 0 154033 station_ip 83.122.140.91 154033 port 598 154033 unique_id port 154033 remote_ip 10.8.0.182 154044 username barzegar 154044 mac 154044 bytes_out 0 154044 bytes_in 0 154044 station_ip 5.119.217.235 154044 port 598 154044 unique_id port 154044 remote_ip 10.8.0.234 154046 username hashtadani4 154046 mac 154046 bytes_out 0 154046 bytes_in 0 154046 station_ip 83.122.140.91 154046 port 598 154046 unique_id port 154046 remote_ip 10.8.0.182 154049 username barzegar 154049 mac 154049 bytes_out 0 154049 bytes_in 0 154049 station_ip 5.119.217.235 154049 port 598 154049 unique_id port 154049 remote_ip 10.8.0.234 154051 username hashtadani4 154051 mac 154051 bytes_out 0 154051 bytes_in 0 154051 station_ip 83.122.140.91 154051 port 301 154051 unique_id port 154051 remote_ip 10.8.1.142 154054 username hashtadani4 154054 mac 154054 bytes_out 0 154054 bytes_in 0 154054 station_ip 83.122.140.91 154054 port 598 154054 unique_id port 154054 remote_ip 10.8.0.182 154060 username barzegar 154060 mac 154060 bytes_out 0 154060 bytes_in 0 154060 station_ip 5.119.217.235 154060 port 598 154060 unique_id port 154060 remote_ip 10.8.0.234 154064 username barzegar 154064 mac 154064 bytes_out 0 154064 bytes_in 0 154064 station_ip 5.119.217.235 154064 port 553 154064 unique_id port 154064 remote_ip 10.8.0.234 154066 username hashtadani4 154066 mac 154066 bytes_out 0 154066 bytes_in 0 154066 station_ip 83.122.140.91 154066 port 553 154066 unique_id port 154066 remote_ip 10.8.0.182 154075 username morteza 154075 mac 154075 bytes_out 0 154075 bytes_in 0 154075 station_ip 83.122.247.169 154075 port 299 154075 unique_id port 154075 remote_ip 10.8.1.62 154076 username alipour 154076 mac 154076 bytes_out 14340 154076 bytes_in 16748 154076 station_ip 37.129.93.37 154076 port 292 154076 unique_id port 154076 remote_ip 10.8.1.50 154078 username barzegar 154078 mac 154078 bytes_out 0 154078 bytes_in 0 154078 station_ip 5.119.217.235 154078 port 553 154078 unique_id port 154078 remote_ip 10.8.0.234 154008 username farhad2 154008 mac 154008 bytes_out 0 154008 bytes_in 0 154008 station_ip 5.120.149.114 154008 port 603 154008 unique_id port 154009 username hashtadani4 154009 mac 154009 bytes_out 0 154009 bytes_in 0 154009 station_ip 83.122.140.91 154009 port 607 154009 unique_id port 154009 remote_ip 10.8.0.182 154014 username arash 154014 mac 154014 bytes_out 0 154014 bytes_in 0 154014 station_ip 89.47.68.112 154014 port 598 154014 unique_id port 154014 remote_ip 10.8.0.114 154019 username morteza 154019 mac 154019 bytes_out 0 154019 bytes_in 0 154019 station_ip 83.122.247.169 154019 port 598 154019 unique_id port 154019 remote_ip 10.8.0.46 154020 username farhad2 154020 mac 154020 bytes_out 0 154020 bytes_in 0 154020 station_ip 5.120.149.114 154020 port 299 154020 unique_id port 154020 remote_ip 10.8.1.222 154025 username morteza 154025 mac 154025 bytes_out 0 154025 bytes_in 0 154025 station_ip 83.122.247.169 154025 port 305 154025 unique_id port 154025 remote_ip 10.8.1.62 154026 username hashtadani4 154026 mac 154026 bytes_out 0 154026 bytes_in 0 154026 station_ip 83.122.140.91 154026 port 598 154026 unique_id port 154026 remote_ip 10.8.0.182 154029 username barzegar 154029 mac 154029 bytes_out 0 154029 bytes_in 0 154029 station_ip 5.119.217.235 154029 port 598 154029 unique_id port 154029 remote_ip 10.8.0.234 154034 username morteza 154034 mac 154034 bytes_out 0 154034 bytes_in 0 154034 station_ip 83.122.247.169 154034 port 598 154034 unique_id port 154034 remote_ip 10.8.0.46 154036 username fezealinaghi 154036 kill_reason Another user logged on this global unique id 154036 mac 154036 bytes_out 0 154036 bytes_in 0 154036 station_ip 83.123.53.165 154036 port 612 154036 unique_id port 154039 username fezealinaghi 154039 mac 154039 bytes_out 0 154039 bytes_in 0 154039 station_ip 83.123.53.165 154039 port 612 154039 unique_id port 154040 username hadibarzegar 154040 mac 154040 bytes_out 0 154040 bytes_in 0 154040 station_ip 37.129.48.98 154040 port 301 154040 unique_id port 154045 username alipour 154045 mac 154045 bytes_out 79466 154045 bytes_in 107291 154045 station_ip 37.129.93.37 154045 port 298 154045 unique_id port 154045 remote_ip 10.8.1.50 154056 username farhad2 154056 kill_reason Another user logged on this global unique id 154056 mac 154056 bytes_out 0 154056 bytes_in 0 154056 station_ip 5.120.149.114 154056 port 299 154056 unique_id port 154056 remote_ip 10.8.1.222 154057 username morteza 154057 mac 154057 bytes_out 0 154057 bytes_in 0 154057 station_ip 83.122.247.169 154057 port 598 154057 unique_id port 154057 remote_ip 10.8.0.46 154058 username farhad2 154058 mac 154058 bytes_out 0 154058 bytes_in 0 154058 station_ip 5.120.149.114 154058 port 299 154058 unique_id port 154059 username hashtadani4 154059 mac 154059 bytes_out 0 154059 bytes_in 0 154059 station_ip 83.122.140.91 154059 port 598 154059 unique_id port 154059 remote_ip 10.8.0.182 154062 username hashtadani4 154062 mac 154062 bytes_out 0 154062 bytes_in 0 154062 station_ip 83.122.140.91 154062 port 598 154062 unique_id port 154062 remote_ip 10.8.0.182 154065 username morteza 154065 mac 154065 bytes_out 0 154065 bytes_in 0 154065 station_ip 83.122.247.169 154065 port 299 154065 unique_id port 154065 remote_ip 10.8.1.62 154069 username hashtadani4 154069 mac 154069 bytes_out 0 154069 bytes_in 0 154069 station_ip 83.122.140.91 154035 mac 154035 bytes_out 0 154035 bytes_in 0 154035 station_ip 151.235.95.177 154035 port 606 154035 unique_id port 154037 username hashtadani4 154037 mac 154037 bytes_out 0 154037 bytes_in 0 154037 station_ip 83.122.140.91 154037 port 598 154037 unique_id port 154037 remote_ip 10.8.0.182 154038 username barzegar 154038 mac 154038 bytes_out 0 154038 bytes_in 0 154038 station_ip 5.119.217.235 154038 port 598 154038 unique_id port 154038 remote_ip 10.8.0.234 154041 username hashtadani4 154041 mac 154041 bytes_out 0 154041 bytes_in 0 154041 station_ip 83.122.140.91 154041 port 598 154041 unique_id port 154041 remote_ip 10.8.0.182 154042 username morteza 154042 mac 154042 bytes_out 0 154042 bytes_in 0 154042 station_ip 83.122.247.169 154042 port 598 154042 unique_id port 154042 remote_ip 10.8.0.46 154043 username morteza 154043 mac 154043 bytes_out 0 154043 bytes_in 0 154043 station_ip 83.122.247.169 154043 port 598 154043 unique_id port 154043 remote_ip 10.8.0.46 154047 username alipour 154047 mac 154047 bytes_out 23315 154047 bytes_in 46662 154047 station_ip 37.129.93.37 154047 port 298 154047 unique_id port 154047 remote_ip 10.8.1.50 154048 username morteza 154048 mac 154048 bytes_out 0 154048 bytes_in 0 154048 station_ip 83.122.247.169 154048 port 298 154048 unique_id port 154048 remote_ip 10.8.1.62 154050 username morteza 154050 mac 154050 bytes_out 0 154050 bytes_in 0 154050 station_ip 83.122.247.169 154050 port 598 154050 unique_id port 154050 remote_ip 10.8.0.46 154052 username hosseine 154052 mac 154052 bytes_out 2213350 154052 bytes_in 7436510 154052 station_ip 37.129.7.130 154052 port 292 154052 unique_id port 154052 remote_ip 10.8.1.190 154053 username hashtadani4 154053 mac 154053 bytes_out 0 154053 bytes_in 0 154053 station_ip 83.122.140.91 154053 port 598 154053 unique_id port 154053 remote_ip 10.8.0.182 154055 username alipour 154055 mac 154055 bytes_out 0 154055 bytes_in 0 154055 station_ip 37.129.93.37 154055 port 298 154055 unique_id port 154055 remote_ip 10.8.1.50 154061 username hashtadani4 154061 mac 154061 bytes_out 0 154061 bytes_in 0 154061 station_ip 83.122.140.91 154061 port 598 154061 unique_id port 154061 remote_ip 10.8.0.182 154063 username khademi 154063 mac 154063 bytes_out 0 154063 bytes_in 0 154063 station_ip 37.129.135.128 154063 port 553 154063 unique_id port 154067 username morteza 154067 mac 154067 bytes_out 0 154067 bytes_in 0 154067 station_ip 83.122.247.169 154067 port 553 154067 unique_id port 154067 remote_ip 10.8.0.46 154068 username alipour 154068 mac 154068 bytes_out 27503 154068 bytes_in 36831 154068 station_ip 37.129.93.37 154068 port 292 154068 unique_id port 154068 remote_ip 10.8.1.50 154071 username morteza 154071 mac 154071 bytes_out 0 154071 bytes_in 0 154071 station_ip 83.122.247.169 154071 port 299 154071 unique_id port 154071 remote_ip 10.8.1.62 154072 username afarin1 154072 mac 154072 bytes_out 123557 154072 bytes_in 503411 154072 station_ip 31.56.152.181 154072 port 553 154072 unique_id port 154072 remote_ip 10.8.0.38 154073 username hashtadani4 154073 mac 154073 bytes_out 0 154073 bytes_in 0 154073 station_ip 83.122.140.91 154073 port 553 154073 unique_id port 154073 remote_ip 10.8.0.182 154079 username morteza 154079 mac 154079 bytes_out 0 154079 bytes_in 0 154079 station_ip 83.122.247.169 154079 port 299 154069 port 598 154069 unique_id port 154069 remote_ip 10.8.0.182 154070 username barzegar 154070 mac 154070 bytes_out 0 154070 bytes_in 0 154070 station_ip 5.119.217.235 154070 port 598 154070 unique_id port 154070 remote_ip 10.8.0.234 154074 username alipour 154074 mac 154074 bytes_out 0 154074 bytes_in 0 154074 station_ip 37.129.93.37 154074 port 292 154074 unique_id port 154074 remote_ip 10.8.1.50 154077 username hashtadani4 154077 mac 154077 bytes_out 0 154077 bytes_in 0 154077 station_ip 83.122.140.91 154077 port 553 154077 unique_id port 154077 remote_ip 10.8.0.182 154080 username hashtadani4 154080 mac 154080 bytes_out 0 154080 bytes_in 0 154080 station_ip 83.122.140.91 154080 port 553 154080 unique_id port 154080 remote_ip 10.8.0.182 154083 username morteza 154083 mac 154083 bytes_out 0 154083 bytes_in 0 154083 station_ip 83.122.247.169 154083 port 553 154083 unique_id port 154083 remote_ip 10.8.0.46 154087 username barzegar 154087 mac 154087 bytes_out 0 154087 bytes_in 0 154087 station_ip 5.119.217.235 154087 port 553 154087 unique_id port 154087 remote_ip 10.8.0.234 154092 username barzegar 154092 mac 154092 bytes_out 0 154092 bytes_in 0 154092 station_ip 5.119.217.235 154092 port 553 154092 unique_id port 154092 remote_ip 10.8.0.234 154095 username hashtadani4 154095 mac 154095 bytes_out 0 154095 bytes_in 0 154095 station_ip 83.122.140.91 154095 port 553 154095 unique_id port 154095 remote_ip 10.8.0.182 154096 username morteza 154096 mac 154096 bytes_out 0 154096 bytes_in 0 154096 station_ip 83.122.247.169 154096 port 299 154096 unique_id port 154096 remote_ip 10.8.1.62 154097 username hashtadani4 154097 mac 154097 bytes_out 0 154097 bytes_in 0 154097 station_ip 83.122.140.91 154097 port 553 154097 unique_id port 154097 remote_ip 10.8.0.182 154099 username hashtadani4 154099 mac 154099 bytes_out 0 154099 bytes_in 0 154099 station_ip 83.122.140.91 154099 port 553 154099 unique_id port 154099 remote_ip 10.8.0.182 154100 username barzegar 154100 mac 154100 bytes_out 0 154100 bytes_in 0 154100 station_ip 5.119.217.235 154100 port 553 154100 unique_id port 154100 remote_ip 10.8.0.234 154102 username hashtadani4 154102 mac 154102 bytes_out 0 154102 bytes_in 0 154102 station_ip 83.122.140.91 154102 port 553 154102 unique_id port 154102 remote_ip 10.8.0.182 154106 username hashtadani4 154106 mac 154106 bytes_out 0 154106 bytes_in 0 154106 station_ip 83.122.140.91 154106 port 598 154106 unique_id port 154106 remote_ip 10.8.0.182 154109 username morteza 154109 kill_reason Maximum check online fails reached 154109 mac 154109 bytes_out 0 154109 bytes_in 0 154109 station_ip 83.122.247.169 154109 port 299 154109 unique_id port 154113 username morteza 154113 mac 154113 bytes_out 0 154113 bytes_in 0 154113 station_ip 83.122.247.169 154113 port 553 154113 unique_id port 154113 remote_ip 10.8.0.46 154114 username barzegar 154114 mac 154114 bytes_out 0 154114 bytes_in 0 154114 station_ip 5.119.217.235 154114 port 553 154114 unique_id port 154114 remote_ip 10.8.0.234 154116 username alipour 154116 mac 154116 bytes_out 0 154116 bytes_in 0 154116 station_ip 37.129.93.37 154116 port 292 154116 unique_id port 154116 remote_ip 10.8.1.50 154120 username hashtadani4 154120 mac 154120 bytes_out 0 154120 bytes_in 0 154120 station_ip 83.122.140.91 154120 port 598 154120 unique_id port 154120 remote_ip 10.8.0.182 154079 unique_id port 154079 remote_ip 10.8.1.62 154085 username alipour 154085 mac 154085 bytes_out 0 154085 bytes_in 0 154085 station_ip 37.129.93.37 154085 port 292 154085 unique_id port 154085 remote_ip 10.8.1.50 154088 username hashtadani4 154088 mac 154088 bytes_out 0 154088 bytes_in 0 154088 station_ip 83.122.140.91 154088 port 553 154088 unique_id port 154088 remote_ip 10.8.0.182 154089 username morteza 154089 mac 154089 bytes_out 0 154089 bytes_in 0 154089 station_ip 83.122.247.169 154089 port 553 154089 unique_id port 154089 remote_ip 10.8.0.46 154093 username morteza 154093 mac 154093 bytes_out 0 154093 bytes_in 0 154093 station_ip 83.122.247.169 154093 port 598 154093 unique_id port 154093 remote_ip 10.8.0.46 154094 username morteza 154094 mac 154094 bytes_out 0 154094 bytes_in 0 154094 station_ip 83.122.247.169 154094 port 553 154094 unique_id port 154094 remote_ip 10.8.0.46 154103 username hashtadani4 154103 mac 154103 bytes_out 0 154103 bytes_in 0 154103 station_ip 83.122.140.91 154103 port 553 154103 unique_id port 154103 remote_ip 10.8.0.182 154121 username barzegar 154121 mac 154121 bytes_out 0 154121 bytes_in 0 154121 station_ip 5.119.217.235 154121 port 553 154121 unique_id port 154121 remote_ip 10.8.0.234 154122 station_ip 83.122.247.169 154122 port 553 154122 unique_id port 154122 remote_ip 10.8.0.46 154123 username alipour 154123 mac 154123 bytes_out 0 154123 bytes_in 0 154123 station_ip 37.129.93.37 154123 port 292 154123 unique_id port 154123 remote_ip 10.8.1.50 154124 username hashtadani4 154124 mac 154124 bytes_out 1644 154124 bytes_in 4596 154124 station_ip 83.122.140.91 154124 port 553 154124 unique_id port 154124 remote_ip 10.8.0.182 154125 username morteza 154125 mac 154125 bytes_out 0 154125 bytes_in 0 154125 station_ip 83.122.247.169 154125 port 553 154125 unique_id port 154125 remote_ip 10.8.0.46 154126 username mehdizare 154126 mac 154126 bytes_out 1776552 154126 bytes_in 9530967 154126 station_ip 5.120.191.154 154126 port 613 154126 unique_id port 154126 remote_ip 10.8.0.90 154127 username hashtadani4 154127 mac 154127 bytes_out 0 154127 bytes_in 0 154127 station_ip 83.122.140.91 154127 port 598 154127 unique_id port 154127 remote_ip 10.8.0.182 154128 username barzegar 154128 mac 154128 bytes_out 0 154128 bytes_in 0 154128 station_ip 5.119.217.235 154128 port 598 154128 unique_id port 154128 remote_ip 10.8.0.234 154129 username hashtadani4 154129 kill_reason Maximum check online fails reached 154129 mac 154129 bytes_out 0 154129 bytes_in 0 154129 station_ip 83.122.140.91 154129 port 301 154129 unique_id port 154130 username alipour 154130 mac 154130 bytes_out 0 154130 bytes_in 0 154130 station_ip 37.129.93.37 154130 port 292 154130 unique_id port 154130 remote_ip 10.8.1.50 154131 username aminvpn 154131 mac 154131 bytes_out 391854 154131 bytes_in 1356672 154131 station_ip 5.120.35.70 154131 port 557 154131 unique_id port 154131 remote_ip 10.8.0.14 154132 username hashtadani4 154132 mac 154132 bytes_out 0 154132 bytes_in 0 154132 station_ip 83.122.140.91 154132 port 557 154132 unique_id port 154132 remote_ip 10.8.0.182 154133 username mehdizare 154133 mac 154133 bytes_out 13377 154133 bytes_in 17062 154133 station_ip 5.120.191.154 154133 port 553 154133 unique_id port 154133 remote_ip 10.8.0.90 154134 username hashtadani4 154134 mac 154134 bytes_out 0 154134 bytes_in 0 154081 username morteza 154081 mac 154081 bytes_out 0 154081 bytes_in 0 154081 station_ip 83.122.247.169 154081 port 553 154081 unique_id port 154081 remote_ip 10.8.0.46 154082 username alipour 154082 mac 154082 bytes_out 0 154082 bytes_in 0 154082 station_ip 37.129.93.37 154082 port 292 154082 unique_id port 154082 remote_ip 10.8.1.50 154084 username hashtadani4 154084 mac 154084 bytes_out 0 154084 bytes_in 0 154084 station_ip 83.122.140.91 154084 port 553 154084 unique_id port 154084 remote_ip 10.8.0.182 154086 username morteza 154086 mac 154086 bytes_out 0 154086 bytes_in 0 154086 station_ip 83.122.247.169 154086 port 598 154086 unique_id port 154086 remote_ip 10.8.0.46 154090 username hashtadani4 154090 mac 154090 bytes_out 0 154090 bytes_in 0 154090 station_ip 83.122.140.91 154090 port 553 154090 unique_id port 154090 remote_ip 10.8.0.182 154091 username morteza 154091 mac 154091 bytes_out 0 154091 bytes_in 0 154091 station_ip 83.122.247.169 154091 port 299 154091 unique_id port 154091 remote_ip 10.8.1.62 154098 username morteza 154098 mac 154098 bytes_out 0 154098 bytes_in 0 154098 station_ip 83.122.247.169 154098 port 299 154098 unique_id port 154098 remote_ip 10.8.1.62 154101 username morteza 154101 mac 154101 bytes_out 0 154101 bytes_in 0 154101 station_ip 83.122.247.169 154101 port 553 154101 unique_id port 154101 remote_ip 10.8.0.46 154104 username alipour 154104 mac 154104 bytes_out 0 154104 bytes_in 0 154104 station_ip 37.129.93.37 154104 port 292 154104 unique_id port 154104 remote_ip 10.8.1.50 154105 username morteza 154105 mac 154105 bytes_out 0 154105 bytes_in 0 154105 station_ip 83.122.247.169 154105 port 598 154105 unique_id port 154105 remote_ip 10.8.0.46 154107 username barzegar 154107 mac 154107 bytes_out 0 154107 bytes_in 0 154107 station_ip 5.119.217.235 154107 port 598 154107 unique_id port 154107 remote_ip 10.8.0.234 154108 username hashtadani4 154108 mac 154108 bytes_out 0 154108 bytes_in 0 154108 station_ip 83.122.140.91 154108 port 598 154108 unique_id port 154108 remote_ip 10.8.0.182 154110 username sabaghnezhad 154110 mac 154110 bytes_out 419780 154110 bytes_in 1822188 154110 station_ip 113.203.101.192 154110 port 553 154110 unique_id port 154110 remote_ip 10.8.0.186 154111 username morteza 154111 mac 154111 bytes_out 0 154111 bytes_in 0 154111 station_ip 83.122.247.169 154111 port 553 154111 unique_id port 154111 remote_ip 10.8.0.46 154112 username hashtadani4 154112 mac 154112 bytes_out 0 154112 bytes_in 0 154112 station_ip 83.122.140.91 154112 port 553 154112 unique_id port 154112 remote_ip 10.8.0.182 154115 username hashtadani4 154115 mac 154115 bytes_out 0 154115 bytes_in 0 154115 station_ip 83.122.140.91 154115 port 553 154115 unique_id port 154115 remote_ip 10.8.0.182 154117 username morteza 154117 mac 154117 bytes_out 0 154117 bytes_in 0 154117 station_ip 83.122.247.169 154117 port 301 154117 unique_id port 154117 remote_ip 10.8.1.62 154118 username hashtadani4 154118 mac 154118 bytes_out 0 154118 bytes_in 0 154118 station_ip 83.122.140.91 154118 port 553 154118 unique_id port 154118 remote_ip 10.8.0.182 154119 username alipour 154119 mac 154119 bytes_out 0 154119 bytes_in 0 154119 station_ip 37.129.93.37 154119 port 292 154119 unique_id port 154119 remote_ip 10.8.1.50 154122 username morteza 154122 mac 154122 bytes_out 0 154122 bytes_in 0 154134 station_ip 83.122.140.91 154134 port 557 154134 unique_id port 154134 remote_ip 10.8.0.182 154136 username khalili 154136 mac 154136 bytes_out 0 154136 bytes_in 0 154136 station_ip 5.119.205.43 154136 port 596 154136 unique_id port 154137 username alipour 154137 mac 154137 bytes_out 0 154137 bytes_in 0 154137 station_ip 37.129.93.37 154137 port 292 154137 unique_id port 154137 remote_ip 10.8.1.50 154139 username aminvpn 154139 kill_reason Another user logged on this global unique id 154139 mac 154139 bytes_out 0 154139 bytes_in 0 154139 station_ip 5.120.35.70 154139 port 557 154139 unique_id port 154139 remote_ip 10.8.0.14 154141 username aminvpn 154141 kill_reason Another user logged on this global unique id 154141 mac 154141 bytes_out 0 154141 bytes_in 0 154141 station_ip 5.120.35.70 154141 port 557 154141 unique_id port 154143 username hashtadani4 154143 mac 154143 bytes_out 0 154143 bytes_in 0 154143 station_ip 83.122.140.91 154143 port 553 154143 unique_id port 154143 remote_ip 10.8.0.182 154149 username hashtadani4 154149 mac 154149 bytes_out 0 154149 bytes_in 0 154149 station_ip 83.122.140.91 154149 port 305 154149 unique_id port 154149 remote_ip 10.8.1.142 154151 username hashtadani4 154151 mac 154151 bytes_out 0 154151 bytes_in 0 154151 station_ip 83.122.140.91 154151 port 553 154151 unique_id port 154151 remote_ip 10.8.0.182 154152 username hashtadani4 154152 mac 154152 bytes_out 0 154152 bytes_in 0 154152 station_ip 83.122.140.91 154152 port 553 154152 unique_id port 154152 remote_ip 10.8.0.182 154160 username barzegar 154160 mac 154160 bytes_out 0 154160 bytes_in 0 154160 station_ip 5.119.217.235 154160 port 553 154160 unique_id port 154160 remote_ip 10.8.0.234 154161 username hashtadani4 154161 mac 154161 bytes_out 0 154161 bytes_in 0 154161 station_ip 83.122.140.91 154161 port 557 154161 unique_id port 154167 username hashtadani4 154167 mac 154167 bytes_out 0 154167 bytes_in 0 154167 station_ip 83.122.140.91 154167 port 553 154167 unique_id port 154167 remote_ip 10.8.0.182 154168 username sedighe 154168 mac 154168 bytes_out 0 154168 bytes_in 0 154168 station_ip 37.129.79.66 154168 port 557 154168 unique_id port 154168 remote_ip 10.8.0.146 154170 username barzegar 154170 mac 154170 bytes_out 0 154170 bytes_in 0 154170 station_ip 5.119.217.235 154170 port 557 154170 unique_id port 154170 remote_ip 10.8.0.234 154171 username sedighe 154171 mac 154171 bytes_out 0 154171 bytes_in 0 154171 station_ip 37.129.116.72 154171 port 553 154171 unique_id port 154171 remote_ip 10.8.0.146 154175 username hashtadani4 154175 mac 154175 bytes_out 0 154175 bytes_in 0 154175 station_ip 83.122.140.91 154175 port 598 154175 unique_id port 154175 remote_ip 10.8.0.182 154185 username barzegar 154185 mac 154185 bytes_out 0 154185 bytes_in 0 154185 station_ip 5.119.217.235 154185 port 598 154185 unique_id port 154185 remote_ip 10.8.0.234 154188 username hashtadani4 154188 mac 154188 bytes_out 0 154188 bytes_in 0 154188 station_ip 83.122.140.91 154188 port 598 154188 unique_id port 154188 remote_ip 10.8.0.182 154195 username hashtadani4 154195 mac 154195 bytes_out 0 154195 bytes_in 0 154195 station_ip 83.122.140.91 154195 port 603 154195 unique_id port 154195 remote_ip 10.8.0.182 154198 username hashtadani4 154198 mac 154198 bytes_out 0 154198 bytes_in 0 154198 station_ip 83.122.140.91 154198 port 598 154198 unique_id port 154135 username barzegar 154135 mac 154135 bytes_out 0 154135 bytes_in 0 154135 station_ip 5.119.217.235 154135 port 598 154135 unique_id port 154135 remote_ip 10.8.0.234 154146 username barzegar 154146 mac 154146 bytes_out 0 154146 bytes_in 0 154146 station_ip 5.119.217.235 154146 port 557 154146 unique_id port 154146 remote_ip 10.8.0.234 154147 username hashtadani4 154147 mac 154147 bytes_out 0 154147 bytes_in 0 154147 station_ip 83.122.140.91 154147 port 553 154147 unique_id port 154147 remote_ip 10.8.0.182 154148 username hashtadani4 154148 mac 154148 bytes_out 0 154148 bytes_in 0 154148 station_ip 83.122.140.91 154148 port 305 154148 unique_id port 154148 remote_ip 10.8.1.142 154153 username barzegar 154153 mac 154153 bytes_out 0 154153 bytes_in 0 154153 station_ip 5.119.217.235 154153 port 553 154153 unique_id port 154153 remote_ip 10.8.0.234 154154 username hashtadani4 154154 mac 154154 bytes_out 0 154154 bytes_in 0 154154 station_ip 83.122.140.91 154154 port 557 154154 unique_id port 154154 remote_ip 10.8.0.182 154157 username hashtadani4 154157 kill_reason Another user logged on this global unique id 154157 mac 154157 bytes_out 0 154157 bytes_in 0 154157 station_ip 83.122.140.91 154157 port 557 154157 unique_id port 154157 remote_ip 10.8.0.182 154158 username barzegar 154158 mac 154158 bytes_out 0 154158 bytes_in 0 154158 station_ip 5.119.217.235 154158 port 598 154158 unique_id port 154158 remote_ip 10.8.0.234 154159 username sedighe 154159 mac 154159 bytes_out 0 154159 bytes_in 0 154159 station_ip 37.129.79.66 154159 port 553 154159 unique_id port 154159 remote_ip 10.8.0.146 154162 username sedighe 154162 mac 154162 bytes_out 0 154162 bytes_in 0 154162 station_ip 37.129.79.66 154162 port 598 154162 unique_id port 154162 remote_ip 10.8.0.146 154164 username sedighe 154164 mac 154164 bytes_out 0 154164 bytes_in 0 154164 station_ip 37.129.79.66 154164 port 557 154164 unique_id port 154164 remote_ip 10.8.0.146 154165 username sedighe 154165 mac 154165 bytes_out 2062 154165 bytes_in 4269 154165 station_ip 37.129.79.66 154165 port 598 154165 unique_id port 154165 remote_ip 10.8.0.146 154166 username hashtadani4 154166 mac 154166 bytes_out 0 154166 bytes_in 0 154166 station_ip 83.122.140.91 154166 port 553 154166 unique_id port 154166 remote_ip 10.8.0.182 154173 username hashtadani4 154173 mac 154173 bytes_out 0 154173 bytes_in 0 154173 station_ip 83.122.140.91 154173 port 553 154173 unique_id port 154173 remote_ip 10.8.0.182 154177 username hashtadani4 154177 mac 154177 bytes_out 0 154177 bytes_in 0 154177 station_ip 83.122.140.91 154177 port 598 154177 unique_id port 154177 remote_ip 10.8.0.182 154180 username hashtadani4 154180 mac 154180 bytes_out 0 154180 bytes_in 0 154180 station_ip 83.122.140.91 154180 port 557 154180 unique_id port 154180 remote_ip 10.8.0.182 154182 username hashtadani4 154182 mac 154182 bytes_out 0 154182 bytes_in 0 154182 station_ip 83.122.140.91 154182 port 607 154182 unique_id port 154182 remote_ip 10.8.0.182 154187 username hashtadani4 154187 mac 154187 bytes_out 0 154187 bytes_in 0 154187 station_ip 83.122.140.91 154187 port 598 154187 unique_id port 154187 remote_ip 10.8.0.182 154191 username mosi 154191 mac 154191 bytes_out 0 154191 bytes_in 0 154191 station_ip 151.235.95.177 154191 port 606 154191 unique_id port 154192 username hashtadani4 154192 mac 154138 username hashtadani4 154138 mac 154138 bytes_out 0 154138 bytes_in 0 154138 station_ip 83.122.140.91 154138 port 596 154138 unique_id port 154138 remote_ip 10.8.0.182 154140 username hashtadani4 154140 mac 154140 bytes_out 0 154140 bytes_in 0 154140 station_ip 83.122.140.91 154140 port 596 154140 unique_id port 154140 remote_ip 10.8.0.182 154142 username mehdizare 154142 mac 154142 bytes_out 0 154142 bytes_in 0 154142 station_ip 5.120.191.154 154142 port 553 154142 unique_id port 154142 remote_ip 10.8.0.90 154144 username aminvpn 154144 mac 154144 bytes_out 0 154144 bytes_in 0 154144 station_ip 5.120.35.70 154144 port 557 154144 unique_id port 154145 username aminvpn 154145 mac 154145 bytes_out 0 154145 bytes_in 0 154145 station_ip 5.120.35.70 154145 port 553 154145 unique_id port 154145 remote_ip 10.8.0.14 154150 username hashtadani4 154150 mac 154150 bytes_out 0 154150 bytes_in 0 154150 station_ip 83.122.140.91 154150 port 553 154150 unique_id port 154150 remote_ip 10.8.0.182 154155 username hashtadani4 154155 mac 154155 bytes_out 0 154155 bytes_in 0 154155 station_ip 83.122.140.91 154155 port 553 154155 unique_id port 154155 remote_ip 10.8.0.182 154156 username hashtadani4 154156 mac 154156 bytes_out 0 154156 bytes_in 0 154156 station_ip 83.122.140.91 154156 port 557 154156 unique_id port 154156 remote_ip 10.8.0.182 154163 username barzegar 154163 mac 154163 bytes_out 0 154163 bytes_in 0 154163 station_ip 5.119.217.235 154163 port 598 154163 unique_id port 154163 remote_ip 10.8.0.234 154169 username hashtadani4 154169 mac 154169 bytes_out 0 154169 bytes_in 0 154169 station_ip 83.122.140.91 154169 port 557 154169 unique_id port 154169 remote_ip 10.8.0.182 154172 username hashtadani4 154172 mac 154172 bytes_out 0 154172 bytes_in 0 154172 station_ip 83.122.140.91 154172 port 553 154172 unique_id port 154172 remote_ip 10.8.0.182 154174 username barzegar 154174 mac 154174 bytes_out 0 154174 bytes_in 0 154174 station_ip 5.119.217.235 154174 port 553 154174 unique_id port 154174 remote_ip 10.8.0.234 154176 username hashtadani4 154176 mac 154176 bytes_out 0 154176 bytes_in 0 154176 station_ip 83.122.140.91 154176 port 305 154176 unique_id port 154176 remote_ip 10.8.1.142 154178 username barzegar 154178 mac 154178 bytes_out 0 154178 bytes_in 0 154178 station_ip 5.119.217.235 154178 port 598 154178 unique_id port 154178 remote_ip 10.8.0.234 154179 username sedighe 154179 mac 154179 bytes_out 0 154179 bytes_in 0 154179 station_ip 37.129.116.72 154179 port 557 154179 unique_id port 154179 remote_ip 10.8.0.146 154181 username sedighe 154181 mac 154181 bytes_out 0 154181 bytes_in 0 154181 station_ip 37.129.116.72 154181 port 598 154181 unique_id port 154181 remote_ip 10.8.0.146 154183 username nilufarrajaei 154183 mac 154183 bytes_out 754421 154183 bytes_in 3445930 154183 station_ip 37.129.152.53 154183 port 598 154183 unique_id port 154183 remote_ip 10.8.0.206 154184 username sedighe 154184 mac 154184 bytes_out 21366 154184 bytes_in 17926 154184 station_ip 37.129.116.72 154184 port 557 154184 unique_id port 154184 remote_ip 10.8.0.146 154186 username hashtadani4 154186 mac 154186 bytes_out 0 154186 bytes_in 0 154186 station_ip 83.122.140.91 154186 port 598 154186 unique_id port 154186 remote_ip 10.8.0.182 154189 username sedighe 154189 mac 154189 bytes_out 0 154189 bytes_in 0 154189 station_ip 113.203.6.118 154189 port 557 154189 unique_id port 154189 remote_ip 10.8.0.146 154190 username barzegar 154190 mac 154190 bytes_out 0 154190 bytes_in 0 154190 station_ip 5.119.217.235 154190 port 557 154190 unique_id port 154190 remote_ip 10.8.0.234 154197 username sedighe 154197 mac 154197 bytes_out 0 154197 bytes_in 0 154197 station_ip 113.203.6.118 154197 port 598 154197 unique_id port 154197 remote_ip 10.8.0.146 154199 username hashtadani4 154199 mac 154199 bytes_out 0 154199 bytes_in 0 154199 station_ip 83.122.140.91 154199 port 598 154199 unique_id port 154199 remote_ip 10.8.0.182 154206 username hashtadani4 154206 mac 154206 bytes_out 0 154206 bytes_in 0 154206 station_ip 83.122.140.91 154206 port 603 154206 unique_id port 154206 remote_ip 10.8.0.182 154218 username hassan 154218 kill_reason Another user logged on this global unique id 154218 mac 154218 bytes_out 0 154218 bytes_in 0 154218 station_ip 5.120.159.111 154218 port 557 154218 unique_id port 154219 username hashtadani4 154219 mac 154219 bytes_out 0 154219 bytes_in 0 154219 station_ip 83.122.140.91 154219 port 603 154219 unique_id port 154219 remote_ip 10.8.0.182 154220 username mehdizare 154220 mac 154220 bytes_out 451612 154220 bytes_in 567393 154220 station_ip 5.120.191.154 154220 port 596 154220 unique_id port 154220 remote_ip 10.8.0.90 154225 username alipour 154225 mac 154225 bytes_out 0 154225 bytes_in 0 154225 station_ip 37.129.93.37 154225 port 292 154225 unique_id port 154225 remote_ip 10.8.1.50 154228 username kalantary 154228 mac 154228 bytes_out 0 154228 bytes_in 0 154228 station_ip 83.122.69.135 154228 port 606 154228 unique_id port 154230 username sedighe 154230 mac 154230 bytes_out 0 154230 bytes_in 0 154230 station_ip 37.129.35.128 154230 port 609 154230 unique_id port 154230 remote_ip 10.8.0.146 154234 username milan 154234 kill_reason Another user logged on this global unique id 154234 mac 154234 bytes_out 0 154234 bytes_in 0 154234 station_ip 5.120.37.194 154234 port 598 154234 unique_id port 154234 remote_ip 10.8.0.218 154235 username hassan 154235 mac 154235 bytes_out 0 154235 bytes_in 0 154235 station_ip 5.120.159.111 154235 port 557 154235 unique_id port 154240 username barzegar 154240 mac 154240 bytes_out 0 154240 bytes_in 0 154240 station_ip 5.119.217.235 154240 port 305 154240 unique_id port 154240 remote_ip 10.8.1.174 154251 username barzegar 154251 mac 154251 bytes_out 0 154251 bytes_in 0 154251 station_ip 5.119.217.235 154251 port 306 154251 unique_id port 154251 remote_ip 10.8.1.174 154252 username barzegar 154252 mac 154252 bytes_out 0 154252 bytes_in 0 154252 station_ip 5.119.217.235 154252 port 306 154252 unique_id port 154252 remote_ip 10.8.1.174 154257 username barzegar 154257 mac 154257 bytes_out 0 154257 bytes_in 0 154257 station_ip 5.119.217.235 154257 port 553 154257 unique_id port 154257 remote_ip 10.8.0.234 154259 username sedighe 154259 mac 154259 bytes_out 0 154259 bytes_in 0 154259 station_ip 37.129.172.33 154259 port 306 154259 unique_id port 154259 remote_ip 10.8.1.78 154260 username alipour 154260 mac 154260 bytes_out 49799 154260 bytes_in 93836 154260 station_ip 37.129.93.37 154260 port 292 154260 unique_id port 154260 remote_ip 10.8.1.50 154261 username alipour 154261 mac 154261 bytes_out 0 154261 bytes_in 0 154261 station_ip 37.129.93.37 154261 port 292 154261 unique_id port 154192 bytes_out 0 154192 bytes_in 0 154192 station_ip 83.122.140.91 154192 port 557 154192 unique_id port 154192 remote_ip 10.8.0.182 154193 username hassan 154193 mac 154193 bytes_out 5435514 154193 bytes_in 8108488 154193 station_ip 37.27.28.81 154193 port 603 154193 unique_id port 154193 remote_ip 10.8.0.122 154194 username hashtadani4 154194 mac 154194 bytes_out 0 154194 bytes_in 0 154194 station_ip 83.122.140.91 154194 port 603 154194 unique_id port 154194 remote_ip 10.8.0.182 154196 username barzegar 154196 mac 154196 bytes_out 0 154196 bytes_in 0 154196 station_ip 5.119.217.235 154196 port 603 154196 unique_id port 154196 remote_ip 10.8.0.234 154200 username hassan 154200 kill_reason Another user logged on this global unique id 154200 mac 154200 bytes_out 0 154200 bytes_in 0 154200 station_ip 5.120.159.111 154200 port 557 154200 unique_id port 154200 remote_ip 10.8.0.122 154201 username barzegar 154201 mac 154201 bytes_out 0 154201 bytes_in 0 154201 station_ip 5.119.217.235 154201 port 598 154201 unique_id port 154201 remote_ip 10.8.0.234 154203 username hashtadani4 154203 mac 154203 bytes_out 0 154203 bytes_in 0 154203 station_ip 83.122.140.91 154203 port 598 154203 unique_id port 154203 remote_ip 10.8.0.182 154205 username hassan 154205 kill_reason Another user logged on this global unique id 154205 mac 154205 bytes_out 0 154205 bytes_in 0 154205 station_ip 5.120.159.111 154205 port 557 154205 unique_id port 154207 username hassan 154207 kill_reason Another user logged on this global unique id 154207 mac 154207 bytes_out 0 154207 bytes_in 0 154207 station_ip 5.120.159.111 154207 port 557 154207 unique_id port 154208 username sedighe 154208 mac 154208 bytes_out 97765 154208 bytes_in 91592 154208 station_ip 37.129.107.77 154208 port 598 154208 unique_id port 154208 remote_ip 10.8.0.146 154210 username hashtadani4 154210 mac 154210 bytes_out 0 154210 bytes_in 0 154210 station_ip 83.122.140.91 154210 port 603 154210 unique_id port 154210 remote_ip 10.8.0.182 154212 username barzegar 154212 mac 154212 bytes_out 0 154212 bytes_in 0 154212 station_ip 5.119.217.235 154212 port 598 154212 unique_id port 154212 remote_ip 10.8.0.234 154213 username hassan 154213 kill_reason Another user logged on this global unique id 154213 mac 154213 bytes_out 0 154213 bytes_in 0 154213 station_ip 5.120.159.111 154213 port 557 154213 unique_id port 154215 username hassan 154215 kill_reason Another user logged on this global unique id 154215 mac 154215 bytes_out 0 154215 bytes_in 0 154215 station_ip 5.120.159.111 154215 port 557 154215 unique_id port 154217 username sedighe 154217 mac 154217 bytes_out 0 154217 bytes_in 0 154217 station_ip 37.129.183.63 154217 port 603 154217 unique_id port 154217 remote_ip 10.8.0.146 154224 username mehdizare 154224 mac 154224 bytes_out 0 154224 bytes_in 0 154224 station_ip 5.120.191.154 154224 port 306 154224 unique_id port 154224 remote_ip 10.8.1.42 154229 username mehdizare 154229 mac 154229 bytes_out 0 154229 bytes_in 0 154229 station_ip 5.120.191.154 154229 port 596 154229 unique_id port 154229 remote_ip 10.8.0.90 154233 username barzegar 154233 mac 154233 bytes_out 0 154233 bytes_in 0 154233 station_ip 5.119.217.235 154233 port 305 154233 unique_id port 154233 remote_ip 10.8.1.174 154239 username alipour 154239 mac 154239 bytes_out 21520 154239 bytes_in 23708 154239 station_ip 37.129.93.37 154239 port 292 154239 unique_id port 154239 remote_ip 10.8.1.50 154198 remote_ip 10.8.0.182 154202 username barzegar 154202 mac 154202 bytes_out 0 154202 bytes_in 0 154202 station_ip 5.119.217.235 154202 port 598 154202 unique_id port 154202 remote_ip 10.8.0.234 154204 username sedighe 154204 mac 154204 bytes_out 0 154204 bytes_in 0 154204 station_ip 37.129.107.77 154204 port 603 154204 unique_id port 154204 remote_ip 10.8.0.146 154209 username barzegar 154209 mac 154209 bytes_out 0 154209 bytes_in 0 154209 station_ip 5.119.217.235 154209 port 603 154209 unique_id port 154209 remote_ip 10.8.0.234 154211 username sedighe 154211 mac 154211 bytes_out 0 154211 bytes_in 0 154211 station_ip 37.129.107.77 154211 port 598 154211 unique_id port 154211 remote_ip 10.8.0.146 154214 username barzegar 154214 mac 154214 bytes_out 0 154214 bytes_in 0 154214 station_ip 5.119.217.235 154214 port 598 154214 unique_id port 154214 remote_ip 10.8.0.234 154216 username kalantary 154216 kill_reason Another user logged on this global unique id 154216 mac 154216 bytes_out 0 154216 bytes_in 0 154216 station_ip 83.122.69.135 154216 port 606 154216 unique_id port 154216 remote_ip 10.8.0.98 154221 username barzegar 154221 mac 154221 bytes_out 8376 154221 bytes_in 38840 154221 station_ip 5.119.217.235 154221 port 607 154221 unique_id port 154221 remote_ip 10.8.0.234 154222 username mehdizare 154222 kill_reason Maximum check online fails reached 154222 mac 154222 bytes_out 0 154222 bytes_in 0 154222 station_ip 5.120.191.154 154222 port 603 154222 unique_id port 154223 username barzegar 154223 mac 154223 bytes_out 0 154223 bytes_in 0 154223 station_ip 5.119.217.235 154223 port 307 154223 unique_id port 154223 remote_ip 10.8.1.174 154226 username rezaei 154226 mac 154226 bytes_out 1732904 154226 bytes_in 27488575 154226 station_ip 5.120.96.217 154226 port 305 154226 unique_id port 154226 remote_ip 10.8.1.58 154227 username hashtadani4 154227 mac 154227 bytes_out 0 154227 bytes_in 0 154227 station_ip 83.122.140.91 154227 port 607 154227 unique_id port 154227 remote_ip 10.8.0.182 154231 username hassan 154231 kill_reason Another user logged on this global unique id 154231 mac 154231 bytes_out 0 154231 bytes_in 0 154231 station_ip 5.120.159.111 154231 port 557 154231 unique_id port 154232 username zahra1101 154232 mac 154232 bytes_out 0 154232 bytes_in 0 154232 station_ip 5.120.96.45 154232 port 597 154232 unique_id port 154236 username mehdizare 154236 mac 154236 bytes_out 11374 154236 bytes_in 16259 154236 station_ip 5.120.191.154 154236 port 596 154236 unique_id port 154236 remote_ip 10.8.0.90 154237 username hashtadani4 154237 mac 154237 bytes_out 0 154237 bytes_in 0 154237 station_ip 83.122.140.91 154237 port 596 154237 unique_id port 154237 remote_ip 10.8.0.182 154238 username mohammadjavad 154238 mac 154238 bytes_out 0 154238 bytes_in 0 154238 station_ip 83.122.114.229 154238 port 553 154238 unique_id port 154238 remote_ip 10.8.0.142 154241 username mehdizare 154241 mac 154241 bytes_out 737966 154241 bytes_in 15499650 154241 station_ip 5.120.191.154 154241 port 557 154241 unique_id port 154241 remote_ip 10.8.0.90 154242 username hashtadani4 154242 mac 154242 bytes_out 0 154242 bytes_in 0 154242 station_ip 83.122.140.91 154242 port 553 154242 unique_id port 154242 remote_ip 10.8.0.182 154243 username barzegar 154243 mac 154243 bytes_out 0 154243 bytes_in 0 154243 station_ip 5.119.217.235 154243 port 307 154243 unique_id port 154243 remote_ip 10.8.1.174 154244 username alipour 154244 mac 154244 bytes_out 0 154244 bytes_in 0 154244 station_ip 37.129.93.37 154244 port 292 154244 unique_id port 154244 remote_ip 10.8.1.50 154245 username sedighe 154245 mac 154245 bytes_out 0 154245 bytes_in 0 154245 station_ip 83.122.237.3 154245 port 306 154245 unique_id port 154245 remote_ip 10.8.1.78 154248 username barzegar 154248 mac 154248 bytes_out 0 154248 bytes_in 0 154248 station_ip 5.119.217.235 154248 port 306 154248 unique_id port 154248 remote_ip 10.8.1.174 154249 username hashtadani4 154249 mac 154249 bytes_out 0 154249 bytes_in 0 154249 station_ip 83.122.140.91 154249 port 557 154249 unique_id port 154249 remote_ip 10.8.0.182 154256 username hashtadani4 154256 mac 154256 bytes_out 0 154256 bytes_in 0 154256 station_ip 83.122.140.91 154256 port 596 154256 unique_id port 154256 remote_ip 10.8.0.182 154258 username sedighe 154258 mac 154258 bytes_out 0 154258 bytes_in 0 154258 station_ip 37.129.172.33 154258 port 307 154258 unique_id port 154258 remote_ip 10.8.1.78 154262 username barzegar 154262 mac 154262 bytes_out 0 154262 bytes_in 0 154262 station_ip 5.119.217.235 154262 port 553 154262 unique_id port 154262 remote_ip 10.8.0.234 154268 username forozandeh1 154268 mac 154268 bytes_out 134943 154268 bytes_in 355034 154268 station_ip 37.129.158.95 154268 port 553 154268 unique_id port 154268 remote_ip 10.8.0.130 154272 username hassan 154272 mac 154272 bytes_out 0 154272 bytes_in 0 154272 station_ip 37.27.28.81 154272 port 597 154272 unique_id port 154272 remote_ip 10.8.0.122 154276 username hashtadani4 154276 mac 154276 bytes_out 0 154276 bytes_in 0 154276 station_ip 83.122.140.91 154276 port 596 154276 unique_id port 154276 remote_ip 10.8.0.182 154277 username aminvpn 154277 kill_reason Another user logged on this global unique id 154277 mac 154277 bytes_out 0 154277 bytes_in 0 154277 station_ip 5.120.35.70 154277 port 306 154277 unique_id port 154277 remote_ip 10.8.1.6 154280 username barzegar 154280 mac 154280 bytes_out 0 154280 bytes_in 0 154280 station_ip 5.114.208.103 154280 port 553 154280 unique_id port 154280 remote_ip 10.8.0.234 154285 username hassan 154285 mac 154285 bytes_out 0 154285 bytes_in 0 154285 station_ip 5.120.159.111 154285 port 597 154285 unique_id port 154285 remote_ip 10.8.0.122 154287 username sekonji3 154287 mac 154287 bytes_out 0 154287 bytes_in 0 154287 station_ip 37.129.205.112 154287 port 597 154287 unique_id port 154287 remote_ip 10.8.0.6 154288 username sekonji3 154288 mac 154288 bytes_out 0 154288 bytes_in 0 154288 station_ip 37.129.205.112 154288 port 553 154288 unique_id port 154288 remote_ip 10.8.0.6 154289 username hashtadani4 154289 mac 154289 bytes_out 0 154289 bytes_in 0 154289 station_ip 83.122.140.91 154289 port 597 154289 unique_id port 154289 remote_ip 10.8.0.182 154294 username barzegar 154294 mac 154294 bytes_out 0 154294 bytes_in 0 154294 station_ip 5.120.147.159 154294 port 307 154294 unique_id port 154294 remote_ip 10.8.1.174 154296 username sekonji3 154296 mac 154296 bytes_out 0 154296 bytes_in 0 154296 station_ip 37.129.205.112 154296 port 553 154296 unique_id port 154296 remote_ip 10.8.0.6 154297 username aminvpn 154297 mac 154297 bytes_out 0 154297 bytes_in 0 154297 station_ip 83.122.61.141 154297 port 553 154297 unique_id port 154297 remote_ip 10.8.0.14 154299 username forozandeh1 154299 mac 154246 username hashtadani4 154246 mac 154246 bytes_out 0 154246 bytes_in 0 154246 station_ip 83.122.140.91 154246 port 553 154246 unique_id port 154246 remote_ip 10.8.0.182 154247 username barzegar 154247 mac 154247 bytes_out 0 154247 bytes_in 0 154247 station_ip 5.119.217.235 154247 port 553 154247 unique_id port 154247 remote_ip 10.8.0.234 154250 username hashtadani4 154250 mac 154250 bytes_out 0 154250 bytes_in 0 154250 station_ip 83.122.140.91 154250 port 557 154250 unique_id port 154250 remote_ip 10.8.0.182 154253 username barzegar 154253 mac 154253 bytes_out 0 154253 bytes_in 0 154253 station_ip 5.119.217.235 154253 port 306 154253 unique_id port 154253 remote_ip 10.8.1.174 154254 username hashtadani4 154254 mac 154254 bytes_out 0 154254 bytes_in 0 154254 station_ip 83.122.140.91 154254 port 596 154254 unique_id port 154254 remote_ip 10.8.0.182 154255 username hatami 154255 mac 154255 bytes_out 0 154255 bytes_in 0 154255 station_ip 151.235.97.134 154255 port 553 154255 unique_id port 154255 remote_ip 10.8.0.106 154265 username hashtadani4 154265 mac 154265 bytes_out 0 154265 bytes_in 0 154265 station_ip 83.122.140.91 154265 port 553 154265 unique_id port 154265 remote_ip 10.8.0.182 154274 username alipour 154274 mac 154274 bytes_out 51159 154274 bytes_in 202401 154274 station_ip 37.129.93.37 154274 port 292 154274 unique_id port 154274 remote_ip 10.8.1.50 154275 username khademi 154275 kill_reason Another user logged on this global unique id 154275 mac 154275 bytes_out 0 154275 bytes_in 0 154275 station_ip 37.129.135.128 154275 port 298 154275 unique_id port 154283 username hashtadani4 154283 mac 154283 bytes_out 0 154283 bytes_in 0 154283 station_ip 83.122.140.91 154283 port 597 154283 unique_id port 154283 remote_ip 10.8.0.182 154286 username sekonji3 154286 mac 154286 bytes_out 0 154286 bytes_in 0 154286 station_ip 37.129.205.112 154286 port 553 154286 unique_id port 154286 remote_ip 10.8.0.6 154290 username jafari 154290 kill_reason Another user logged on this global unique id 154290 mac 154290 bytes_out 0 154290 bytes_in 0 154290 station_ip 93.114.27.254 154290 port 596 154290 unique_id port 154290 remote_ip 10.8.0.242 154291 username sekonji3 154291 mac 154291 bytes_out 0 154291 bytes_in 0 154291 station_ip 37.129.205.112 154291 port 553 154291 unique_id port 154291 remote_ip 10.8.0.6 154295 username hashtadani4 154295 mac 154295 bytes_out 0 154295 bytes_in 0 154295 station_ip 83.122.140.91 154295 port 606 154295 unique_id port 154295 remote_ip 10.8.0.182 154302 username hashtadani4 154302 mac 154302 bytes_out 0 154302 bytes_in 0 154302 station_ip 83.122.140.91 154302 port 553 154302 unique_id port 154302 remote_ip 10.8.0.182 154304 username hashtadani4 154304 mac 154304 bytes_out 0 154304 bytes_in 0 154304 station_ip 83.122.140.91 154304 port 553 154304 unique_id port 154304 remote_ip 10.8.0.182 154306 username hashtadani4 154306 mac 154306 bytes_out 0 154306 bytes_in 0 154306 station_ip 83.122.140.91 154306 port 553 154306 unique_id port 154306 remote_ip 10.8.0.182 154307 username barzegar 154307 mac 154307 bytes_out 0 154307 bytes_in 0 154307 station_ip 5.120.147.159 154307 port 553 154307 unique_id port 154307 remote_ip 10.8.0.234 154315 username nilufarrajaei 154315 mac 154315 bytes_out 222688 154315 bytes_in 4095144 154315 station_ip 37.129.145.185 154315 port 597 154315 unique_id port 154315 remote_ip 10.8.0.206 154261 remote_ip 10.8.1.50 154263 username hashtadani4 154263 mac 154263 bytes_out 0 154263 bytes_in 0 154263 station_ip 83.122.140.91 154263 port 553 154263 unique_id port 154263 remote_ip 10.8.0.182 154264 username alipour 154264 mac 154264 bytes_out 0 154264 bytes_in 0 154264 station_ip 37.129.93.37 154264 port 292 154264 unique_id port 154264 remote_ip 10.8.1.50 154266 username sedighe 154266 mac 154266 bytes_out 0 154266 bytes_in 0 154266 station_ip 83.122.66.61 154266 port 307 154266 unique_id port 154266 remote_ip 10.8.1.78 154267 username barzegar 154267 mac 154267 bytes_out 0 154267 bytes_in 0 154267 station_ip 5.119.217.235 154267 port 306 154267 unique_id port 154267 remote_ip 10.8.1.174 154269 username khademi 154269 kill_reason Another user logged on this global unique id 154269 mac 154269 bytes_out 0 154269 bytes_in 0 154269 station_ip 37.129.135.128 154269 port 298 154269 unique_id port 154269 remote_ip 10.8.1.242 154270 username nilufarrajaei 154270 kill_reason Another user logged on this global unique id 154270 mac 154270 bytes_out 0 154270 bytes_in 0 154270 station_ip 37.129.145.185 154270 port 557 154270 unique_id port 154270 remote_ip 10.8.0.206 154271 username hashtadani4 154271 mac 154271 bytes_out 0 154271 bytes_in 0 154271 station_ip 83.122.140.91 154271 port 553 154271 unique_id port 154271 remote_ip 10.8.0.182 154273 username hashtadani4 154273 mac 154273 bytes_out 0 154273 bytes_in 0 154273 station_ip 83.122.140.91 154273 port 553 154273 unique_id port 154273 remote_ip 10.8.0.182 154278 username hashtadani4 154278 mac 154278 bytes_out 0 154278 bytes_in 0 154278 station_ip 83.122.140.91 154278 port 597 154278 unique_id port 154278 remote_ip 10.8.0.182 154279 username sekonji3 154279 mac 154279 bytes_out 798912 154279 bytes_in 15838065 154279 station_ip 37.129.205.112 154279 port 553 154279 unique_id port 154279 remote_ip 10.8.0.6 154281 username sekonji3 154281 mac 154281 bytes_out 2712 154281 bytes_in 4762 154281 station_ip 37.129.205.112 154281 port 597 154281 unique_id port 154281 remote_ip 10.8.0.6 154282 username sekonji3 154282 mac 154282 bytes_out 0 154282 bytes_in 0 154282 station_ip 37.129.205.112 154282 port 553 154282 unique_id port 154282 remote_ip 10.8.0.6 154284 username nilufarrajaei 154284 kill_reason Another user logged on this global unique id 154284 mac 154284 bytes_out 0 154284 bytes_in 0 154284 station_ip 37.129.145.185 154284 port 557 154284 unique_id port 154292 username alipour 154292 mac 154292 bytes_out 1118296 154292 bytes_in 12990281 154292 station_ip 37.129.93.37 154292 port 292 154292 unique_id port 154292 remote_ip 10.8.1.50 154293 username sekonji3 154293 mac 154293 bytes_out 0 154293 bytes_in 0 154293 station_ip 37.129.205.112 154293 port 553 154293 unique_id port 154293 remote_ip 10.8.0.6 154298 username jafari 154298 kill_reason Another user logged on this global unique id 154298 mac 154298 bytes_out 0 154298 bytes_in 0 154298 station_ip 93.114.27.254 154298 port 596 154298 unique_id port 154300 username nilufarrajaei 154300 kill_reason Another user logged on this global unique id 154300 mac 154300 bytes_out 0 154300 bytes_in 0 154300 station_ip 37.129.145.185 154300 port 557 154300 unique_id port 154303 username khademi 154303 kill_reason Another user logged on this global unique id 154303 mac 154303 bytes_out 0 154303 bytes_in 0 154303 station_ip 37.129.135.128 154303 port 298 154303 unique_id port 154309 username jafari 154309 kill_reason Another user logged on this global unique id 154309 mac 154299 bytes_out 1033564 154299 bytes_in 13651239 154299 station_ip 83.122.128.47 154299 port 597 154299 unique_id port 154299 remote_ip 10.8.0.130 154301 username hashtadani4 154301 mac 154301 bytes_out 0 154301 bytes_in 0 154301 station_ip 83.122.140.91 154301 port 553 154301 unique_id port 154301 remote_ip 10.8.0.182 154305 username hashtadani4 154305 mac 154305 bytes_out 0 154305 bytes_in 0 154305 station_ip 83.122.140.91 154305 port 307 154305 unique_id port 154305 remote_ip 10.8.1.142 154308 username hashtadani4 154308 mac 154308 bytes_out 0 154308 bytes_in 0 154308 station_ip 83.122.140.91 154308 port 597 154308 unique_id port 154308 remote_ip 10.8.0.182 154310 username alipour 154310 mac 154310 bytes_out 0 154310 bytes_in 0 154310 station_ip 37.129.93.37 154310 port 292 154310 unique_id port 154310 remote_ip 10.8.1.50 154317 username hashtadani4 154317 mac 154317 bytes_out 0 154317 bytes_in 0 154317 station_ip 83.122.140.91 154317 port 597 154317 unique_id port 154317 remote_ip 10.8.0.182 154326 username godarzi 154326 mac 154326 bytes_out 0 154326 bytes_in 0 154326 station_ip 5.202.24.27 154326 port 557 154326 unique_id port 154326 remote_ip 10.8.0.174 154330 username hashtadani4 154330 mac 154330 bytes_out 0 154330 bytes_in 0 154330 station_ip 83.122.140.91 154330 port 557 154330 unique_id port 154330 remote_ip 10.8.0.182 154335 username hashtadani4 154335 mac 154335 bytes_out 0 154335 bytes_in 0 154335 station_ip 83.122.140.91 154335 port 606 154335 unique_id port 154335 remote_ip 10.8.0.182 154339 username hashtadani4 154339 mac 154339 bytes_out 0 154339 bytes_in 0 154339 station_ip 83.122.140.91 154339 port 606 154339 unique_id port 154339 remote_ip 10.8.0.182 154343 username hashtadani4 154343 mac 154343 bytes_out 0 154343 bytes_in 0 154343 station_ip 83.122.140.91 154343 port 606 154343 unique_id port 154343 remote_ip 10.8.0.182 154350 username hashtadani4 154350 mac 154350 bytes_out 0 154350 bytes_in 0 154350 station_ip 83.122.140.91 154350 port 606 154350 unique_id port 154350 remote_ip 10.8.0.182 154352 username hashtadani4 154352 mac 154352 bytes_out 0 154352 bytes_in 0 154352 station_ip 83.122.140.91 154352 port 606 154352 unique_id port 154352 remote_ip 10.8.0.182 154355 username rahim 154355 kill_reason Another user logged on this global unique id 154355 mac 154355 bytes_out 0 154355 bytes_in 0 154355 station_ip 37.129.33.182 154355 port 553 154355 unique_id port 154362 username hashtadani4 154362 mac 154362 bytes_out 0 154362 bytes_in 0 154362 station_ip 83.122.140.91 154362 port 597 154362 unique_id port 154362 remote_ip 10.8.0.182 154366 username hashtadani4 154366 mac 154366 bytes_out 0 154366 bytes_in 0 154366 station_ip 83.122.140.91 154366 port 597 154366 unique_id port 154366 remote_ip 10.8.0.182 154370 username hashtadani4 154370 mac 154370 bytes_out 0 154370 bytes_in 0 154370 station_ip 83.122.140.91 154370 port 292 154370 unique_id port 154370 remote_ip 10.8.1.142 154375 username hashtadani4 154375 mac 154375 bytes_out 0 154375 bytes_in 0 154375 station_ip 83.122.140.91 154375 port 557 154375 unique_id port 154375 remote_ip 10.8.0.182 154379 username hashtadani4 154379 mac 154379 bytes_out 0 154379 bytes_in 0 154379 station_ip 83.122.140.91 154379 port 557 154379 unique_id port 154379 remote_ip 10.8.0.182 154382 username hashtadani4 154382 mac 154382 bytes_out 0 154309 bytes_out 0 154309 bytes_in 0 154309 station_ip 93.114.27.254 154309 port 596 154309 unique_id port 154311 username hashtadani4 154311 mac 154311 bytes_out 0 154311 bytes_in 0 154311 station_ip 83.122.140.91 154311 port 597 154311 unique_id port 154311 remote_ip 10.8.0.182 154312 username hashtadani4 154312 mac 154312 bytes_out 0 154312 bytes_in 0 154312 station_ip 83.122.140.91 154312 port 597 154312 unique_id port 154312 remote_ip 10.8.0.182 154313 username alipour 154313 mac 154313 bytes_out 0 154313 bytes_in 0 154313 station_ip 37.129.93.37 154313 port 292 154313 unique_id port 154313 remote_ip 10.8.1.50 154314 username nilufarrajaei 154314 mac 154314 bytes_out 0 154314 bytes_in 0 154314 station_ip 37.129.145.185 154314 port 557 154314 unique_id port 154319 username godarzi 154319 mac 154319 bytes_out 1261108 154319 bytes_in 14679308 154319 station_ip 5.202.24.27 154319 port 557 154319 unique_id port 154319 remote_ip 10.8.0.174 154325 username mohammadjavad 154325 mac 154325 bytes_out 0 154325 bytes_in 0 154325 station_ip 83.122.179.255 154325 port 597 154325 unique_id port 154325 remote_ip 10.8.0.142 154327 username rahim 154327 kill_reason Another user logged on this global unique id 154327 mac 154327 bytes_out 0 154327 bytes_in 0 154327 station_ip 37.129.33.182 154327 port 553 154327 unique_id port 154327 remote_ip 10.8.0.50 154328 username hashtadani4 154328 mac 154328 bytes_out 50022 154328 bytes_in 1327616 154328 station_ip 83.122.140.91 154328 port 606 154328 unique_id port 154328 remote_ip 10.8.0.182 154332 username hashtadani4 154332 mac 154332 bytes_out 0 154332 bytes_in 0 154332 station_ip 83.122.140.91 154332 port 557 154332 unique_id port 154332 remote_ip 10.8.0.182 154333 username hashtadani4 154333 mac 154333 bytes_out 0 154333 bytes_in 0 154333 station_ip 83.122.140.91 154333 port 292 154333 unique_id port 154333 remote_ip 10.8.1.142 154334 username hashtadani4 154334 mac 154334 bytes_out 0 154334 bytes_in 0 154334 station_ip 83.122.140.91 154334 port 606 154334 unique_id port 154334 remote_ip 10.8.0.182 154337 username hashtadani4 154337 mac 154337 bytes_out 0 154337 bytes_in 0 154337 station_ip 83.122.140.91 154337 port 606 154337 unique_id port 154337 remote_ip 10.8.0.182 154338 username hashtadani4 154338 mac 154338 bytes_out 0 154338 bytes_in 0 154338 station_ip 83.122.140.91 154338 port 606 154338 unique_id port 154338 remote_ip 10.8.0.182 154341 username godarzi 154341 kill_reason Another user logged on this global unique id 154341 mac 154341 bytes_out 0 154341 bytes_in 0 154341 station_ip 5.202.24.27 154341 port 597 154341 unique_id port 154341 remote_ip 10.8.0.174 154342 username hashtadani4 154342 mac 154342 bytes_out 0 154342 bytes_in 0 154342 station_ip 83.122.140.91 154342 port 292 154342 unique_id port 154342 remote_ip 10.8.1.142 154345 username hashtadani4 154345 mac 154345 bytes_out 0 154345 bytes_in 0 154345 station_ip 83.122.140.91 154345 port 292 154345 unique_id port 154345 remote_ip 10.8.1.142 154346 username hashtadani4 154346 mac 154346 bytes_out 0 154346 bytes_in 0 154346 station_ip 83.122.140.91 154346 port 606 154346 unique_id port 154346 remote_ip 10.8.0.182 154349 username hashtadani4 154349 mac 154349 bytes_out 0 154349 bytes_in 0 154349 station_ip 83.122.140.91 154349 port 606 154349 unique_id port 154349 remote_ip 10.8.0.182 154351 username hashtadani4 154351 mac 154351 bytes_out 0 154316 username hashtadani4 154316 mac 154316 bytes_out 0 154316 bytes_in 0 154316 station_ip 83.122.140.91 154316 port 597 154316 unique_id port 154316 remote_ip 10.8.0.182 154318 username hashtadani4 154318 mac 154318 bytes_out 0 154318 bytes_in 0 154318 station_ip 83.122.140.91 154318 port 597 154318 unique_id port 154318 remote_ip 10.8.0.182 154320 username jafari 154320 kill_reason Another user logged on this global unique id 154320 mac 154320 bytes_out 0 154320 bytes_in 0 154320 station_ip 93.114.27.254 154320 port 596 154320 unique_id port 154321 username hashtadani4 154321 mac 154321 bytes_out 0 154321 bytes_in 0 154321 station_ip 83.122.140.91 154321 port 557 154321 unique_id port 154321 remote_ip 10.8.0.182 154322 username khademi 154322 kill_reason Another user logged on this global unique id 154322 mac 154322 bytes_out 0 154322 bytes_in 0 154322 station_ip 37.129.135.128 154322 port 298 154322 unique_id port 154323 username jafari 154323 kill_reason Another user logged on this global unique id 154323 mac 154323 bytes_out 0 154323 bytes_in 0 154323 station_ip 93.114.27.254 154323 port 596 154323 unique_id port 154324 username alipour 154324 mac 154324 bytes_out 94981 154324 bytes_in 226760 154324 station_ip 37.129.93.37 154324 port 292 154324 unique_id port 154324 remote_ip 10.8.1.50 154329 username hashtadani4 154329 mac 154329 bytes_out 0 154329 bytes_in 0 154329 station_ip 83.122.140.91 154329 port 292 154329 unique_id port 154329 remote_ip 10.8.1.142 154331 username hashtadani4 154331 mac 154331 bytes_out 0 154331 bytes_in 0 154331 station_ip 83.122.140.91 154331 port 557 154331 unique_id port 154331 remote_ip 10.8.0.182 154336 username hashtadani4 154336 mac 154336 bytes_out 0 154336 bytes_in 0 154336 station_ip 83.122.140.91 154336 port 292 154336 unique_id port 154336 remote_ip 10.8.1.142 154340 username hashtadani4 154340 mac 154340 bytes_out 0 154340 bytes_in 0 154340 station_ip 83.122.140.91 154340 port 606 154340 unique_id port 154340 remote_ip 10.8.0.182 154344 username hashtadani4 154344 mac 154344 bytes_out 0 154344 bytes_in 0 154344 station_ip 83.122.140.91 154344 port 606 154344 unique_id port 154344 remote_ip 10.8.0.182 154347 username khademi 154347 kill_reason Another user logged on this global unique id 154347 mac 154347 bytes_out 0 154347 bytes_in 0 154347 station_ip 37.129.135.128 154347 port 298 154347 unique_id port 154348 username hashtadani4 154348 mac 154348 bytes_out 0 154348 bytes_in 0 154348 station_ip 83.122.140.91 154348 port 292 154348 unique_id port 154348 remote_ip 10.8.1.142 154353 username hashtadani4 154353 mac 154353 bytes_out 0 154353 bytes_in 0 154353 station_ip 83.122.140.91 154353 port 606 154353 unique_id port 154353 remote_ip 10.8.0.182 154354 username godarzi 154354 mac 154354 bytes_out 0 154354 bytes_in 0 154354 station_ip 5.202.24.27 154354 port 597 154354 unique_id port 154356 username aminvpn 154356 kill_reason Another user logged on this global unique id 154356 mac 154356 bytes_out 0 154356 bytes_in 0 154356 station_ip 5.120.35.70 154356 port 306 154356 unique_id port 154359 username hashtadani4 154359 mac 154359 bytes_out 0 154359 bytes_in 0 154359 station_ip 83.122.140.91 154359 port 606 154359 unique_id port 154359 remote_ip 10.8.0.182 154363 username hashtadani4 154363 mac 154363 bytes_out 0 154363 bytes_in 0 154363 station_ip 83.122.140.91 154363 port 292 154363 unique_id port 154363 remote_ip 10.8.1.142 154351 bytes_in 0 154351 station_ip 83.122.140.91 154351 port 292 154351 unique_id port 154351 remote_ip 10.8.1.142 154357 username jafari 154357 kill_reason Another user logged on this global unique id 154357 mac 154357 bytes_out 0 154357 bytes_in 0 154357 station_ip 93.114.27.254 154357 port 596 154357 unique_id port 154358 username forozandeh1 154358 mac 154358 bytes_out 820015 154358 bytes_in 9308919 154358 station_ip 37.129.189.39 154358 port 607 154358 unique_id port 154358 remote_ip 10.8.0.130 154360 username hashtadani4 154360 mac 154360 bytes_out 0 154360 bytes_in 0 154360 station_ip 83.122.140.91 154360 port 292 154360 unique_id port 154360 remote_ip 10.8.1.142 154361 username hashtadani4 154361 mac 154361 bytes_out 0 154361 bytes_in 0 154361 station_ip 83.122.140.91 154361 port 597 154361 unique_id port 154361 remote_ip 10.8.0.182 154364 username hashtadani4 154364 mac 154364 bytes_out 0 154364 bytes_in 0 154364 station_ip 83.122.140.91 154364 port 597 154364 unique_id port 154364 remote_ip 10.8.0.182 154365 username hashtadani4 154365 mac 154365 bytes_out 0 154365 bytes_in 0 154365 station_ip 83.122.140.91 154365 port 292 154365 unique_id port 154365 remote_ip 10.8.1.142 154368 username hashtadani4 154368 mac 154368 bytes_out 0 154368 bytes_in 0 154368 station_ip 83.122.140.91 154368 port 597 154368 unique_id port 154368 remote_ip 10.8.0.182 154369 username hashtadani4 154369 mac 154369 bytes_out 0 154369 bytes_in 0 154369 station_ip 83.122.140.91 154369 port 597 154369 unique_id port 154369 remote_ip 10.8.0.182 154372 username hashtadani4 154372 mac 154372 bytes_out 0 154372 bytes_in 0 154372 station_ip 83.122.140.91 154372 port 597 154372 unique_id port 154372 remote_ip 10.8.0.182 154374 username hashtadani4 154374 mac 154374 bytes_out 0 154374 bytes_in 0 154374 station_ip 83.122.140.91 154374 port 308 154374 unique_id port 154374 remote_ip 10.8.1.142 154378 username hashtadani4 154378 mac 154378 bytes_out 0 154378 bytes_in 0 154378 station_ip 83.122.140.91 154378 port 557 154378 unique_id port 154378 remote_ip 10.8.0.182 154380 username hashtadani4 154380 kill_reason Maximum check online fails reached 154380 mac 154380 bytes_out 0 154380 bytes_in 0 154380 station_ip 83.122.140.91 154380 port 292 154380 unique_id port 154381 username hashtadani4 154381 mac 154381 bytes_out 0 154381 bytes_in 0 154381 station_ip 83.122.140.91 154381 port 308 154381 unique_id port 154381 remote_ip 10.8.1.142 154383 username jafari 154383 kill_reason Another user logged on this global unique id 154383 mac 154383 bytes_out 0 154383 bytes_in 0 154383 station_ip 93.114.27.254 154383 port 596 154383 unique_id port 154386 username hashtadani4 154386 mac 154386 bytes_out 0 154386 bytes_in 0 154386 station_ip 83.122.140.91 154386 port 308 154386 unique_id port 154386 remote_ip 10.8.1.142 154390 username hashtadani4 154390 mac 154390 bytes_out 0 154390 bytes_in 0 154390 station_ip 83.122.140.91 154390 port 610 154390 unique_id port 154390 remote_ip 10.8.0.182 154393 username hashtadani4 154393 mac 154393 bytes_out 0 154393 bytes_in 0 154393 station_ip 83.122.140.91 154393 port 610 154393 unique_id port 154393 remote_ip 10.8.0.182 154394 username hashtadani4 154394 mac 154394 bytes_out 0 154394 bytes_in 0 154394 station_ip 83.122.140.91 154394 port 308 154394 unique_id port 154394 remote_ip 10.8.1.142 154397 username hashtadani4 154397 mac 154397 bytes_out 0 154367 username hashtadani4 154367 mac 154367 bytes_out 0 154367 bytes_in 0 154367 station_ip 83.122.140.91 154367 port 597 154367 unique_id port 154367 remote_ip 10.8.0.182 154371 username hashtadani4 154371 mac 154371 bytes_out 0 154371 bytes_in 0 154371 station_ip 83.122.140.91 154371 port 597 154371 unique_id port 154371 remote_ip 10.8.0.182 154373 username kalantary 154373 mac 154373 bytes_out 0 154373 bytes_in 0 154373 station_ip 83.122.127.159 154373 port 557 154373 unique_id port 154373 remote_ip 10.8.0.98 154376 username hashtadani4 154376 mac 154376 bytes_out 0 154376 bytes_in 0 154376 station_ip 83.122.140.91 154376 port 308 154376 unique_id port 154376 remote_ip 10.8.1.142 154377 username hashtadani4 154377 mac 154377 bytes_out 0 154377 bytes_in 0 154377 station_ip 83.122.140.91 154377 port 557 154377 unique_id port 154377 remote_ip 10.8.0.182 154385 username hashtadani4 154385 mac 154385 bytes_out 0 154385 bytes_in 0 154385 station_ip 83.122.140.91 154385 port 557 154385 unique_id port 154385 remote_ip 10.8.0.182 154387 username jafari 154387 kill_reason Another user logged on this global unique id 154387 mac 154387 bytes_out 0 154387 bytes_in 0 154387 station_ip 93.114.27.254 154387 port 596 154387 unique_id port 154392 username hashtadani4 154392 mac 154392 bytes_out 0 154392 bytes_in 0 154392 station_ip 83.122.140.91 154392 port 610 154392 unique_id port 154392 remote_ip 10.8.0.182 154396 username nilufarrajaei 154396 mac 154396 bytes_out 0 154396 bytes_in 0 154396 station_ip 37.129.145.185 154396 port 307 154396 unique_id port 154396 remote_ip 10.8.1.166 154405 username hashtadani4 154405 mac 154405 bytes_out 0 154405 bytes_in 0 154405 station_ip 83.122.140.91 154405 port 610 154405 unique_id port 154405 remote_ip 10.8.0.182 154407 username hashtadani4 154407 mac 154407 bytes_out 0 154407 bytes_in 0 154407 station_ip 83.122.140.91 154407 port 309 154407 unique_id port 154407 remote_ip 10.8.1.142 154408 username sedighe 154408 mac 154408 bytes_out 124228 154408 bytes_in 204563 154408 station_ip 37.129.62.233 154408 port 557 154408 unique_id port 154408 remote_ip 10.8.0.146 154410 username rahim 154410 kill_reason Another user logged on this global unique id 154410 mac 154410 bytes_out 0 154410 bytes_in 0 154410 station_ip 37.129.33.182 154410 port 553 154410 unique_id port 154411 username rahim 154411 kill_reason Another user logged on this global unique id 154411 mac 154411 bytes_out 0 154411 bytes_in 0 154411 station_ip 37.129.33.182 154411 port 553 154411 unique_id port 154413 username forozandeh1 154413 mac 154413 bytes_out 0 154413 bytes_in 0 154413 station_ip 113.203.31.131 154413 port 596 154413 unique_id port 154413 remote_ip 10.8.0.130 154417 username rahim 154417 mac 154417 bytes_out 0 154417 bytes_in 0 154417 station_ip 37.129.33.182 154417 port 553 154417 unique_id port 154421 username hashtadani4 154421 mac 154421 bytes_out 0 154421 bytes_in 0 154421 station_ip 83.122.140.91 154421 port 553 154421 unique_id port 154421 remote_ip 10.8.0.182 154424 username hashtadani4 154424 mac 154424 bytes_out 0 154424 bytes_in 0 154424 station_ip 83.122.140.91 154424 port 553 154424 unique_id port 154424 remote_ip 10.8.0.182 154427 username nilufarrajaei 154427 kill_reason Another user logged on this global unique id 154427 mac 154427 bytes_out 0 154427 bytes_in 0 154427 station_ip 37.129.145.185 154427 port 307 154427 unique_id port 154427 remote_ip 10.8.1.166 154382 bytes_in 0 154382 station_ip 83.122.140.91 154382 port 557 154382 unique_id port 154382 remote_ip 10.8.0.182 154384 username khademi 154384 kill_reason Another user logged on this global unique id 154384 mac 154384 bytes_out 0 154384 bytes_in 0 154384 station_ip 37.129.135.128 154384 port 298 154384 unique_id port 154388 username rahim 154388 kill_reason Another user logged on this global unique id 154388 mac 154388 bytes_out 0 154388 bytes_in 0 154388 station_ip 37.129.33.182 154388 port 553 154388 unique_id port 154389 username hashtadani4 154389 mac 154389 bytes_out 0 154389 bytes_in 0 154389 station_ip 83.122.140.91 154389 port 308 154389 unique_id port 154389 remote_ip 10.8.1.142 154391 username hashtadani4 154391 mac 154391 bytes_out 0 154391 bytes_in 0 154391 station_ip 83.122.140.91 154391 port 308 154391 unique_id port 154391 remote_ip 10.8.1.142 154395 username hashtadani4 154395 mac 154395 bytes_out 0 154395 bytes_in 0 154395 station_ip 83.122.140.91 154395 port 610 154395 unique_id port 154395 remote_ip 10.8.0.182 154400 username jafari 154400 mac 154400 bytes_out 0 154400 bytes_in 0 154400 station_ip 93.114.27.254 154400 port 596 154400 unique_id port 154401 username hashtadani4 154401 mac 154401 bytes_out 0 154401 bytes_in 0 154401 station_ip 83.122.140.91 154401 port 610 154401 unique_id port 154401 remote_ip 10.8.0.182 154403 username hashtadani4 154403 kill_reason Maximum check online fails reached 154403 mac 154403 bytes_out 0 154403 bytes_in 0 154403 station_ip 83.122.140.91 154403 port 308 154403 unique_id port 154404 username hashtadani4 154404 mac 154404 bytes_out 0 154404 bytes_in 0 154404 station_ip 83.122.140.91 154404 port 309 154404 unique_id port 154404 remote_ip 10.8.1.142 154416 username hashtadani4 154416 mac 154416 bytes_out 0 154416 bytes_in 0 154416 station_ip 83.122.140.91 154416 port 597 154416 unique_id port 154416 remote_ip 10.8.0.182 154420 username hashtadani4 154420 mac 154420 bytes_out 0 154420 bytes_in 0 154420 station_ip 83.122.140.91 154420 port 553 154420 unique_id port 154420 remote_ip 10.8.0.182 154422 username aminvpn 154422 mac 154422 bytes_out 0 154422 bytes_in 0 154422 station_ip 83.123.24.11 154422 port 607 154422 unique_id port 154422 remote_ip 10.8.0.14 154423 username hashtadani4 154423 mac 154423 bytes_out 0 154423 bytes_in 0 154423 station_ip 83.122.140.91 154423 port 553 154423 unique_id port 154423 remote_ip 10.8.0.182 154426 username sedighe 154426 mac 154426 bytes_out 22647 154426 bytes_in 26200 154426 station_ip 37.129.62.233 154426 port 611 154426 unique_id port 154426 remote_ip 10.8.0.146 154429 username khademi 154429 mac 154429 bytes_out 0 154429 bytes_in 0 154429 station_ip 37.129.135.128 154429 port 298 154429 unique_id port 154430 username hashtadani4 154430 mac 154430 bytes_out 0 154430 bytes_in 0 154430 station_ip 83.122.140.91 154430 port 607 154430 unique_id port 154430 remote_ip 10.8.0.182 154435 username hashtadani4 154435 mac 154435 bytes_out 0 154435 bytes_in 0 154435 station_ip 83.122.140.91 154435 port 557 154435 unique_id port 154435 remote_ip 10.8.0.182 154438 username hashtadani4 154438 mac 154438 bytes_out 0 154438 bytes_in 0 154438 station_ip 83.122.140.91 154438 port 557 154438 unique_id port 154438 remote_ip 10.8.0.182 154440 username hashtadani4 154440 mac 154440 bytes_out 0 154440 bytes_in 0 154440 station_ip 83.122.140.91 154440 port 610 154397 bytes_in 0 154397 station_ip 83.122.140.91 154397 port 610 154397 unique_id port 154397 remote_ip 10.8.0.182 154398 username hashtadani4 154398 mac 154398 bytes_out 0 154398 bytes_in 0 154398 station_ip 83.122.140.91 154398 port 610 154398 unique_id port 154398 remote_ip 10.8.0.182 154399 username hashtadani4 154399 mac 154399 bytes_out 0 154399 bytes_in 0 154399 station_ip 83.122.140.91 154399 port 307 154399 unique_id port 154399 remote_ip 10.8.1.142 154402 username aminvpn 154402 kill_reason Another user logged on this global unique id 154402 mac 154402 bytes_out 0 154402 bytes_in 0 154402 station_ip 5.120.35.70 154402 port 306 154402 unique_id port 154406 username hashtadani4 154406 mac 154406 bytes_out 0 154406 bytes_in 0 154406 station_ip 83.122.140.91 154406 port 610 154406 unique_id port 154406 remote_ip 10.8.0.182 154409 username hashtadani4 154409 mac 154409 bytes_out 0 154409 bytes_in 0 154409 station_ip 83.122.140.91 154409 port 610 154409 unique_id port 154409 remote_ip 10.8.0.182 154412 username aminvpn 154412 mac 154412 bytes_out 0 154412 bytes_in 0 154412 station_ip 5.120.35.70 154412 port 306 154412 unique_id port 154414 username alipour 154414 mac 154414 bytes_out 0 154414 bytes_in 0 154414 station_ip 83.123.131.173 154414 port 597 154414 unique_id port 154414 remote_ip 10.8.0.102 154415 username hashtadani4 154415 mac 154415 bytes_out 1850145 154415 bytes_in 28762914 154415 station_ip 83.122.140.91 154415 port 557 154415 unique_id port 154415 remote_ip 10.8.0.182 154418 username kalantary 154418 mac 154418 bytes_out 0 154418 bytes_in 0 154418 station_ip 83.122.118.139 154418 port 610 154418 unique_id port 154418 remote_ip 10.8.0.98 154419 username hashtadani4 154419 mac 154419 bytes_out 0 154419 bytes_in 0 154419 station_ip 83.122.140.91 154419 port 553 154419 unique_id port 154419 remote_ip 10.8.0.182 154425 username hashtadani4 154425 mac 154425 bytes_out 0 154425 bytes_in 0 154425 station_ip 83.122.140.91 154425 port 553 154425 unique_id port 154425 remote_ip 10.8.0.182 154431 username hashtadani4 154431 mac 154431 bytes_out 0 154431 bytes_in 0 154431 station_ip 83.122.140.91 154431 port 607 154431 unique_id port 154431 remote_ip 10.8.0.182 154433 username hashtadani4 154433 mac 154433 bytes_out 0 154433 bytes_in 0 154433 station_ip 83.122.140.91 154433 port 607 154433 unique_id port 154433 remote_ip 10.8.0.182 154436 username khademi 154436 mac 154436 bytes_out 0 154436 bytes_in 0 154436 station_ip 37.129.135.128 154436 port 298 154436 unique_id port 154436 remote_ip 10.8.1.242 154437 username hashtadani4 154437 mac 154437 bytes_out 0 154437 bytes_in 0 154437 station_ip 83.122.140.91 154437 port 298 154437 unique_id port 154437 remote_ip 10.8.1.142 154439 username hashtadani4 154439 mac 154439 bytes_out 0 154439 bytes_in 0 154439 station_ip 83.122.140.91 154439 port 610 154439 unique_id port 154439 remote_ip 10.8.0.182 154442 username hashtadani4 154442 mac 154442 bytes_out 0 154442 bytes_in 0 154442 station_ip 83.122.140.91 154442 port 610 154442 unique_id port 154442 remote_ip 10.8.0.182 154443 username khademi 154443 mac 154443 bytes_out 4124 154443 bytes_in 6619 154443 station_ip 37.129.135.128 154443 port 557 154443 unique_id port 154443 remote_ip 10.8.0.10 154451 username hashtadani4 154451 mac 154451 bytes_out 0 154451 bytes_in 0 154451 station_ip 83.122.140.91 154428 username hashtadani4 154428 mac 154428 bytes_out 0 154428 bytes_in 0 154428 station_ip 83.122.140.91 154428 port 607 154428 unique_id port 154428 remote_ip 10.8.0.182 154432 username hashtadani4 154432 mac 154432 bytes_out 0 154432 bytes_in 0 154432 station_ip 83.122.140.91 154432 port 610 154432 unique_id port 154432 remote_ip 10.8.0.182 154434 username farhad2 154434 mac 154434 bytes_out 400989 154434 bytes_in 1513555 154434 station_ip 5.119.253.81 154434 port 557 154434 unique_id port 154434 remote_ip 10.8.0.190 154441 username hashtadani4 154441 mac 154441 bytes_out 0 154441 bytes_in 0 154441 station_ip 83.122.140.91 154441 port 610 154441 unique_id port 154441 remote_ip 10.8.0.182 154444 username hashtadani4 154444 mac 154444 bytes_out 0 154444 bytes_in 0 154444 station_ip 83.122.140.91 154444 port 610 154444 unique_id port 154444 remote_ip 10.8.0.182 154445 username hashtadani4 154445 mac 154445 bytes_out 0 154445 bytes_in 0 154445 station_ip 83.122.140.91 154445 port 557 154445 unique_id port 154445 remote_ip 10.8.0.182 154446 username sedighe 154446 mac 154446 bytes_out 7087 154446 bytes_in 8728 154446 station_ip 83.123.200.234 154446 port 553 154446 unique_id port 154446 remote_ip 10.8.0.146 154448 username hashtadani4 154448 mac 154448 bytes_out 0 154448 bytes_in 0 154448 station_ip 83.122.140.91 154448 port 557 154448 unique_id port 154448 remote_ip 10.8.0.182 154450 username hashtadani4 154450 mac 154450 bytes_out 0 154450 bytes_in 0 154450 station_ip 83.122.140.91 154450 port 557 154450 unique_id port 154450 remote_ip 10.8.0.182 154454 username alipour 154454 mac 154454 bytes_out 0 154454 bytes_in 0 154454 station_ip 83.123.131.173 154454 port 596 154454 unique_id port 154454 remote_ip 10.8.0.102 154458 username hashtadani4 154458 mac 154458 bytes_out 67307 154458 bytes_in 83789 154458 station_ip 83.122.140.91 154458 port 306 154458 unique_id port 154458 remote_ip 10.8.1.142 154461 username hashtadani4 154461 mac 154461 bytes_out 0 154461 bytes_in 0 154461 station_ip 83.122.140.91 154461 port 597 154461 unique_id port 154461 remote_ip 10.8.0.182 154463 username hashtadani4 154463 mac 154463 bytes_out 0 154463 bytes_in 0 154463 station_ip 83.122.140.91 154463 port 597 154463 unique_id port 154463 remote_ip 10.8.0.182 154464 username hashtadani4 154464 mac 154464 bytes_out 0 154464 bytes_in 0 154464 station_ip 83.122.140.91 154464 port 597 154464 unique_id port 154464 remote_ip 10.8.0.182 154468 username hashtadani4 154468 mac 154468 bytes_out 0 154468 bytes_in 0 154468 station_ip 83.122.140.91 154468 port 597 154468 unique_id port 154468 remote_ip 10.8.0.182 154471 username mehdizare 154471 mac 154471 bytes_out 0 154471 bytes_in 0 154471 station_ip 5.120.191.154 154471 port 305 154471 unique_id port 154471 remote_ip 10.8.1.42 154475 username hashtadani4 154475 mac 154475 bytes_out 0 154475 bytes_in 0 154475 station_ip 83.122.140.91 154475 port 597 154475 unique_id port 154475 remote_ip 10.8.0.182 154477 username aminvpn 154477 mac 154477 bytes_out 0 154477 bytes_in 0 154477 station_ip 5.120.35.70 154477 port 309 154477 unique_id port 154477 remote_ip 10.8.1.6 154479 username aminvpn 154479 mac 154479 bytes_out 0 154479 bytes_in 0 154479 station_ip 83.122.123.152 154479 port 305 154479 unique_id port 154479 remote_ip 10.8.1.6 154480 username hashtadani4 154480 mac 154440 unique_id port 154440 remote_ip 10.8.0.182 154447 username hashtadani4 154447 mac 154447 bytes_out 0 154447 bytes_in 0 154447 station_ip 83.122.140.91 154447 port 557 154447 unique_id port 154447 remote_ip 10.8.0.182 154449 username mohammadmahdi 154449 mac 154449 bytes_out 3592309 154449 bytes_in 49312739 154449 station_ip 5.120.27.157 154449 port 597 154449 unique_id port 154449 remote_ip 10.8.0.54 154452 username sedighe 154452 mac 154452 bytes_out 3566 154452 bytes_in 5627 154452 station_ip 83.123.200.234 154452 port 610 154452 unique_id port 154452 remote_ip 10.8.0.146 154453 username hashtadani4 154453 mac 154453 bytes_out 0 154453 bytes_in 0 154453 station_ip 83.122.140.91 154453 port 597 154453 unique_id port 154453 remote_ip 10.8.0.182 154459 username hashtadani4 154459 mac 154459 bytes_out 0 154459 bytes_in 0 154459 station_ip 83.122.140.91 154459 port 298 154459 unique_id port 154459 remote_ip 10.8.1.142 154460 username hashtadani4 154460 mac 154460 bytes_out 0 154460 bytes_in 0 154460 station_ip 83.122.140.91 154460 port 597 154460 unique_id port 154460 remote_ip 10.8.0.182 154462 username meysam 154462 mac 154462 bytes_out 0 154462 bytes_in 0 154462 station_ip 188.158.48.163 154462 port 607 154462 unique_id port 154466 username hashtadani4 154466 mac 154466 bytes_out 0 154466 bytes_in 0 154466 station_ip 83.122.140.91 154466 port 597 154466 unique_id port 154466 remote_ip 10.8.0.182 154470 username alipour 154470 mac 154470 bytes_out 44505 154470 bytes_in 49079 154470 station_ip 83.123.131.173 154470 port 610 154470 unique_id port 154470 remote_ip 10.8.0.102 154476 username hashtadani4 154476 mac 154476 bytes_out 0 154476 bytes_in 0 154476 station_ip 83.122.140.91 154476 port 557 154476 unique_id port 154476 remote_ip 10.8.0.182 154478 username sabaghnezhad 154478 mac 154478 bytes_out 0 154478 bytes_in 0 154478 station_ip 37.129.25.55 154478 port 306 154478 unique_id port 154478 remote_ip 10.8.1.130 154481 username hashtadani4 154481 mac 154481 bytes_out 0 154481 bytes_in 0 154481 station_ip 83.122.140.91 154481 port 597 154481 unique_id port 154481 remote_ip 10.8.0.182 154482 username aminvpn 154482 mac 154482 bytes_out 0 154482 bytes_in 0 154482 station_ip 5.120.35.70 154482 port 306 154482 unique_id port 154482 remote_ip 10.8.1.6 154483 username aminvpn 154483 mac 154483 bytes_out 0 154483 bytes_in 0 154483 station_ip 83.122.123.152 154483 port 309 154483 unique_id port 154483 remote_ip 10.8.1.6 154486 username alipour 154486 mac 154486 bytes_out 0 154486 bytes_in 0 154486 station_ip 83.123.131.173 154486 port 596 154486 unique_id port 154486 remote_ip 10.8.0.102 154493 username aminvpn 154493 mac 154493 bytes_out 0 154493 bytes_in 0 154493 station_ip 83.122.123.152 154493 port 596 154493 unique_id port 154493 remote_ip 10.8.0.14 154494 username sedighe 154494 mac 154494 bytes_out 7695 154494 bytes_in 13698 154494 station_ip 83.123.200.234 154494 port 607 154494 unique_id port 154494 remote_ip 10.8.0.146 154499 username sekonji3 154499 mac 154499 bytes_out 0 154499 bytes_in 0 154499 station_ip 37.129.166.244 154499 port 607 154499 unique_id port 154499 remote_ip 10.8.0.6 154502 username rajaei 154502 kill_reason Another user logged on this global unique id 154502 mac 154502 bytes_out 0 154502 bytes_in 0 154502 station_ip 5.134.155.83 154502 port 596 154502 unique_id port 154502 remote_ip 10.8.0.34 154451 port 557 154451 unique_id port 154451 remote_ip 10.8.0.182 154455 username meysam 154455 kill_reason Another user logged on this global unique id 154455 mac 154455 bytes_out 0 154455 bytes_in 0 154455 station_ip 188.158.48.163 154455 port 607 154455 unique_id port 154455 remote_ip 10.8.0.110 154456 username sedighe 154456 mac 154456 bytes_out 2605 154456 bytes_in 4908 154456 station_ip 83.123.200.234 154456 port 557 154456 unique_id port 154456 remote_ip 10.8.0.146 154457 username aminvpn 154457 mac 154457 bytes_out 0 154457 bytes_in 0 154457 station_ip 5.211.138.214 154457 port 298 154457 unique_id port 154457 remote_ip 10.8.1.6 154465 username hashtadani4 154465 mac 154465 bytes_out 0 154465 bytes_in 0 154465 station_ip 83.122.140.91 154465 port 597 154465 unique_id port 154465 remote_ip 10.8.0.182 154467 username farhad2 154467 mac 154467 bytes_out 947697 154467 bytes_in 4707826 154467 station_ip 5.119.253.81 154467 port 553 154467 unique_id port 154467 remote_ip 10.8.0.190 154469 username sedighe 154469 mac 154469 bytes_out 5588 154469 bytes_in 6976 154469 station_ip 83.123.200.234 154469 port 596 154469 unique_id port 154469 remote_ip 10.8.0.146 154472 username aminvpn 154472 mac 154472 bytes_out 21078 154472 bytes_in 24091 154472 station_ip 83.122.123.152 154472 port 557 154472 unique_id port 154472 remote_ip 10.8.0.14 154473 username aminvpn 154473 mac 154473 bytes_out 415217 154473 bytes_in 6456636 154473 station_ip 5.120.35.70 154473 port 298 154473 unique_id port 154473 remote_ip 10.8.1.6 154474 username aminvpn 154474 mac 154474 bytes_out 0 154474 bytes_in 0 154474 station_ip 83.122.123.152 154474 port 305 154474 unique_id port 154474 remote_ip 10.8.1.6 154484 username aminvpn 154484 mac 154484 bytes_out 0 154484 bytes_in 0 154484 station_ip 5.120.35.70 154484 port 306 154484 unique_id port 154484 remote_ip 10.8.1.6 154485 username aminvpn 154485 mac 154485 bytes_out 0 154485 bytes_in 0 154485 station_ip 83.122.123.152 154485 port 309 154485 unique_id port 154485 remote_ip 10.8.1.6 154488 username aminvpn 154488 mac 154488 bytes_out 0 154488 bytes_in 0 154488 station_ip 83.122.123.152 154488 port 309 154488 unique_id port 154488 remote_ip 10.8.1.6 154490 username mehdizare 154490 mac 154490 bytes_out 0 154490 bytes_in 0 154490 station_ip 5.120.191.154 154490 port 298 154490 unique_id port 154490 remote_ip 10.8.1.42 154491 username sedighe 154491 mac 154491 bytes_out 0 154491 bytes_in 0 154491 station_ip 83.123.200.234 154491 port 553 154491 unique_id port 154491 remote_ip 10.8.0.146 154497 username alipour 154497 mac 154497 bytes_out 0 154497 bytes_in 0 154497 station_ip 83.123.131.173 154497 port 596 154497 unique_id port 154497 remote_ip 10.8.0.102 154498 username aminvpn 154498 kill_reason Another user logged on this global unique id 154498 mac 154498 bytes_out 0 154498 bytes_in 0 154498 station_ip 5.120.35.70 154498 port 306 154498 unique_id port 154498 remote_ip 10.8.1.6 154504 username farhad2 154504 mac 154504 bytes_out 3373495 154504 bytes_in 20687240 154504 station_ip 5.119.253.81 154504 port 553 154504 unique_id port 154504 remote_ip 10.8.0.190 154505 username farhad2 154505 mac 154505 bytes_out 0 154505 bytes_in 0 154505 station_ip 5.119.253.81 154505 port 306 154505 unique_id port 154505 remote_ip 10.8.1.222 154506 username rajaei 154506 kill_reason Another user logged on this global unique id 154506 mac 154506 bytes_out 0 154480 bytes_out 0 154480 bytes_in 0 154480 station_ip 83.122.140.91 154480 port 557 154480 unique_id port 154480 remote_ip 10.8.0.182 154487 username aminvpn 154487 mac 154487 bytes_out 0 154487 bytes_in 0 154487 station_ip 5.120.35.70 154487 port 306 154487 unique_id port 154487 remote_ip 10.8.1.6 154489 username alihosseini1 154489 mac 154489 bytes_out 462484 154489 bytes_in 5459175 154489 station_ip 5.120.152.175 154489 port 607 154489 unique_id port 154489 remote_ip 10.8.0.166 154492 username meysam 154492 mac 154492 bytes_out 1609201 154492 bytes_in 25237252 154492 station_ip 188.158.51.194 154492 port 597 154492 unique_id port 154492 remote_ip 10.8.0.110 154495 username kalantary 154495 mac 154495 bytes_out 0 154495 bytes_in 0 154495 station_ip 83.122.108.3 154495 port 557 154495 unique_id port 154495 remote_ip 10.8.0.98 154496 username alipour 154496 mac 154496 bytes_out 0 154496 bytes_in 0 154496 station_ip 83.123.131.173 154496 port 610 154496 unique_id port 154496 remote_ip 10.8.0.102 154500 username alipour 154500 mac 154500 bytes_out 46068 154500 bytes_in 55427 154500 station_ip 83.123.131.173 154500 port 298 154500 unique_id port 154500 remote_ip 10.8.1.50 154501 username aminvpn 154501 mac 154501 bytes_out 0 154501 bytes_in 0 154501 station_ip 5.120.35.70 154501 port 306 154501 unique_id port 154507 username sedighe 154507 mac 154507 bytes_out 0 154507 bytes_in 0 154507 station_ip 83.123.200.234 154507 port 557 154507 unique_id port 154507 remote_ip 10.8.0.146 154510 username mehdizare 154510 mac 154510 bytes_out 202116 154510 bytes_in 530307 154510 station_ip 5.120.191.154 154510 port 597 154510 unique_id port 154510 remote_ip 10.8.0.90 154511 username farhad2 154511 mac 154511 bytes_out 729257 154511 bytes_in 6263910 154511 station_ip 5.119.253.81 154511 port 306 154511 unique_id port 154511 remote_ip 10.8.1.222 154517 username kalantary 154517 mac 154517 bytes_out 0 154517 bytes_in 0 154517 station_ip 83.122.99.223 154517 port 553 154517 unique_id port 154517 remote_ip 10.8.0.98 154518 username farhad2 154518 mac 154518 bytes_out 1772422 154518 bytes_in 17644306 154518 station_ip 5.119.253.81 154518 port 306 154518 unique_id port 154518 remote_ip 10.8.1.222 154521 username farhad2 154521 mac 154521 bytes_out 0 154521 bytes_in 0 154521 station_ip 5.119.253.81 154521 port 306 154521 unique_id port 154521 remote_ip 10.8.1.222 154526 username rajaei 154526 mac 154526 bytes_out 1043666 154526 bytes_in 13332164 154526 station_ip 5.134.155.83 154526 port 607 154526 unique_id port 154526 remote_ip 10.8.0.34 154528 username farhad2 154528 mac 154528 bytes_out 0 154528 bytes_in 0 154528 station_ip 5.119.253.81 154528 port 306 154528 unique_id port 154528 remote_ip 10.8.1.222 154533 username hashtadani4 154533 mac 154533 bytes_out 0 154533 bytes_in 0 154533 station_ip 83.122.140.91 154533 port 553 154533 unique_id port 154533 remote_ip 10.8.0.182 154536 username tahmasebi 154536 mac 154536 bytes_out 0 154536 bytes_in 0 154536 station_ip 5.120.130.84 154536 port 596 154536 unique_id port 154538 username alipour 154538 mac 154538 bytes_out 807088 154538 bytes_in 6416635 154538 station_ip 83.123.131.173 154538 port 597 154538 unique_id port 154538 remote_ip 10.8.0.102 154539 username hashtadani4 154539 mac 154539 bytes_out 0 154539 bytes_in 0 154539 station_ip 83.122.140.91 154539 port 306 154503 username hashtadani4 154503 mac 154503 bytes_out 0 154503 bytes_in 0 154503 station_ip 83.122.140.91 154503 port 305 154503 unique_id port 154503 remote_ip 10.8.1.142 154508 username kalantary 154508 mac 154508 bytes_out 0 154508 bytes_in 0 154508 station_ip 83.122.99.223 154508 port 553 154508 unique_id port 154508 remote_ip 10.8.0.98 154509 username vanila 154509 mac 154509 bytes_out 408136 154509 bytes_in 3482593 154509 station_ip 83.122.3.235 154509 port 607 154509 unique_id port 154509 remote_ip 10.8.0.178 154513 username rajaei 154513 kill_reason Another user logged on this global unique id 154513 mac 154513 bytes_out 0 154513 bytes_in 0 154513 station_ip 5.134.155.83 154513 port 596 154513 unique_id port 154515 username mehdizare 154515 mac 154515 bytes_out 0 154515 bytes_in 0 154515 station_ip 5.120.191.154 154515 port 310 154515 unique_id port 154515 remote_ip 10.8.1.42 154519 username hashtadani4 154519 kill_reason Another user logged on this global unique id 154519 mac 154519 bytes_out 0 154519 bytes_in 0 154519 station_ip 83.122.140.91 154519 port 305 154519 unique_id port 154519 remote_ip 10.8.1.142 154522 username tahmasebi 154522 mac 154522 bytes_out 0 154522 bytes_in 0 154522 station_ip 5.120.130.84 154522 port 607 154522 unique_id port 154522 remote_ip 10.8.0.42 154524 username sedighe 154524 mac 154524 bytes_out 0 154524 bytes_in 0 154524 station_ip 83.123.200.234 154524 port 610 154524 unique_id port 154524 remote_ip 10.8.0.146 154525 username mehdizare 154525 mac 154525 bytes_out 0 154525 bytes_in 0 154525 station_ip 5.120.191.154 154525 port 298 154525 unique_id port 154525 remote_ip 10.8.1.42 154530 username hashtadani4 154530 mac 154530 bytes_out 0 154530 bytes_in 0 154530 station_ip 83.122.140.91 154530 port 305 154530 unique_id port 154530 remote_ip 10.8.1.142 154535 username hashtadani4 154535 mac 154535 bytes_out 0 154535 bytes_in 0 154535 station_ip 83.122.140.91 154535 port 305 154535 unique_id port 154535 remote_ip 10.8.1.142 154541 username hashtadani4 154541 mac 154541 bytes_out 0 154541 bytes_in 0 154541 station_ip 83.122.140.91 154541 port 306 154541 unique_id port 154541 remote_ip 10.8.1.142 154542 username hashtadani4 154542 mac 154542 bytes_out 0 154542 bytes_in 0 154542 station_ip 83.122.140.91 154542 port 306 154542 unique_id port 154542 remote_ip 10.8.1.142 154546 username hashtadani4 154546 mac 154546 bytes_out 0 154546 bytes_in 0 154546 station_ip 83.122.140.91 154546 port 553 154546 unique_id port 154546 remote_ip 10.8.0.182 154550 username hashtadani4 154550 mac 154550 bytes_out 0 154550 bytes_in 0 154550 station_ip 83.122.140.91 154550 port 306 154550 unique_id port 154550 remote_ip 10.8.1.142 154553 username hashtadani4 154553 mac 154553 bytes_out 0 154553 bytes_in 0 154553 station_ip 83.122.140.91 154553 port 553 154553 unique_id port 154553 remote_ip 10.8.0.182 154555 username hashtadani4 154555 mac 154555 bytes_out 0 154555 bytes_in 0 154555 station_ip 83.122.140.91 154555 port 310 154555 unique_id port 154555 remote_ip 10.8.1.142 154558 username hashtadani4 154558 mac 154558 bytes_out 0 154558 bytes_in 0 154558 station_ip 83.122.140.91 154558 port 607 154558 unique_id port 154558 remote_ip 10.8.0.182 154563 username kordestani 154563 mac 154563 bytes_out 442722 154563 bytes_in 4292248 154563 station_ip 151.235.115.185 154563 port 306 154563 unique_id port 154563 remote_ip 10.8.1.98 154506 bytes_in 0 154506 station_ip 5.134.155.83 154506 port 596 154506 unique_id port 154512 username mirzaei 154512 kill_reason Another user logged on this global unique id 154512 mac 154512 bytes_out 0 154512 bytes_in 0 154512 station_ip 5.119.91.25 154512 port 287 154512 unique_id port 154514 username alipour 154514 mac 154514 bytes_out 0 154514 bytes_in 0 154514 station_ip 83.123.131.173 154514 port 298 154514 unique_id port 154514 remote_ip 10.8.1.50 154516 username godarzi 154516 kill_reason Another user logged on this global unique id 154516 mac 154516 bytes_out 0 154516 bytes_in 0 154516 station_ip 5.202.24.27 154516 port 606 154516 unique_id port 154516 remote_ip 10.8.0.174 154520 username rajaei 154520 kill_reason Another user logged on this global unique id 154520 mac 154520 bytes_out 0 154520 bytes_in 0 154520 station_ip 5.134.155.83 154520 port 596 154520 unique_id port 154523 username rajaei 154523 mac 154523 bytes_out 0 154523 bytes_in 0 154523 station_ip 5.134.155.83 154523 port 596 154523 unique_id port 154527 username meysam 154527 mac 154527 bytes_out 0 154527 bytes_in 0 154527 station_ip 188.158.48.96 154527 port 553 154527 unique_id port 154527 remote_ip 10.8.0.110 154529 username hashtadani4 154529 mac 154529 bytes_out 0 154529 bytes_in 0 154529 station_ip 83.122.140.91 154529 port 305 154529 unique_id port 154531 username tahmasebi 154531 kill_reason Another user logged on this global unique id 154531 mac 154531 bytes_out 0 154531 bytes_in 0 154531 station_ip 5.120.130.84 154531 port 596 154531 unique_id port 154531 remote_ip 10.8.0.42 154532 username hashtadani4 154532 mac 154532 bytes_out 0 154532 bytes_in 0 154532 station_ip 83.122.140.91 154532 port 553 154532 unique_id port 154532 remote_ip 10.8.0.182 154534 username hashtadani4 154534 mac 154534 bytes_out 0 154534 bytes_in 0 154534 station_ip 83.122.140.91 154534 port 553 154534 unique_id port 154534 remote_ip 10.8.0.182 154537 username hashtadani4 154537 mac 154537 bytes_out 0 154537 bytes_in 0 154537 station_ip 83.122.140.91 154537 port 553 154537 unique_id port 154537 remote_ip 10.8.0.182 154540 username hashtadani4 154540 mac 154540 bytes_out 0 154540 bytes_in 0 154540 station_ip 83.122.140.91 154540 port 553 154540 unique_id port 154540 remote_ip 10.8.0.182 154544 username hashtadani4 154544 mac 154544 bytes_out 0 154544 bytes_in 0 154544 station_ip 83.122.140.91 154544 port 553 154544 unique_id port 154544 remote_ip 10.8.0.182 154545 username hashtadani4 154545 mac 154545 bytes_out 0 154545 bytes_in 0 154545 station_ip 83.122.140.91 154545 port 306 154545 unique_id port 154545 remote_ip 10.8.1.142 154549 username hashtadani4 154549 mac 154549 bytes_out 0 154549 bytes_in 0 154549 station_ip 83.122.140.91 154549 port 553 154549 unique_id port 154549 remote_ip 10.8.0.182 154551 username hashtadani4 154551 mac 154551 bytes_out 0 154551 bytes_in 0 154551 station_ip 83.122.140.91 154551 port 553 154551 unique_id port 154551 remote_ip 10.8.0.182 154552 username mehdizare 154552 mac 154552 bytes_out 0 154552 bytes_in 0 154552 station_ip 5.120.191.154 154552 port 298 154552 unique_id port 154552 remote_ip 10.8.1.42 154557 username farhad2 154557 mac 154557 bytes_out 0 154557 bytes_in 0 154557 station_ip 5.119.253.81 154557 port 305 154557 unique_id port 154557 remote_ip 10.8.1.222 154560 username kalantary 154560 mac 154560 bytes_out 308448 154560 bytes_in 2751113 154539 unique_id port 154539 remote_ip 10.8.1.142 154543 username hashtadani4 154543 mac 154543 bytes_out 0 154543 bytes_in 0 154543 station_ip 83.122.140.91 154543 port 553 154543 unique_id port 154543 remote_ip 10.8.0.182 154547 username hashtadani4 154547 mac 154547 bytes_out 0 154547 bytes_in 0 154547 station_ip 83.122.140.91 154547 port 553 154547 unique_id port 154547 remote_ip 10.8.0.182 154548 username hashtadani4 154548 mac 154548 bytes_out 0 154548 bytes_in 0 154548 station_ip 83.122.140.91 154548 port 553 154548 unique_id port 154548 remote_ip 10.8.0.182 154554 username hashtadani4 154554 mac 154554 bytes_out 0 154554 bytes_in 0 154554 station_ip 83.122.140.91 154554 port 310 154554 unique_id port 154554 remote_ip 10.8.1.142 154556 username hashtadani4 154556 mac 154556 bytes_out 0 154556 bytes_in 0 154556 station_ip 83.122.140.91 154556 port 607 154556 unique_id port 154556 remote_ip 10.8.0.182 154559 username hashtadani4 154559 mac 154559 bytes_out 0 154559 bytes_in 0 154559 station_ip 83.122.140.91 154559 port 607 154559 unique_id port 154559 remote_ip 10.8.0.182 154561 username hashtadani4 154561 mac 154561 bytes_out 0 154561 bytes_in 0 154561 station_ip 83.122.140.91 154561 port 607 154561 unique_id port 154561 remote_ip 10.8.0.182 154564 username meysam 154564 mac 154564 bytes_out 0 154564 bytes_in 0 154564 station_ip 188.158.48.96 154564 port 553 154564 unique_id port 154564 remote_ip 10.8.0.110 154565 username farhad2 154565 mac 154565 bytes_out 242919 154565 bytes_in 509310 154565 station_ip 5.119.253.81 154565 port 305 154565 unique_id port 154565 remote_ip 10.8.1.222 154568 username hashtadani4 154568 mac 154568 bytes_out 0 154568 bytes_in 0 154568 station_ip 83.122.140.91 154568 port 553 154568 unique_id port 154568 remote_ip 10.8.0.182 154572 username hashtadani4 154572 mac 154572 bytes_out 0 154572 bytes_in 0 154572 station_ip 83.122.140.91 154572 port 305 154572 unique_id port 154572 remote_ip 10.8.1.142 154574 username hashtadani4 154574 mac 154574 bytes_out 0 154574 bytes_in 0 154574 station_ip 83.122.140.91 154574 port 607 154574 unique_id port 154574 remote_ip 10.8.0.182 154579 username hashtadani4 154579 mac 154579 bytes_out 0 154579 bytes_in 0 154579 station_ip 83.122.140.91 154579 port 306 154579 unique_id port 154579 remote_ip 10.8.1.142 154581 username hashtadani4 154581 mac 154581 bytes_out 0 154581 bytes_in 0 154581 station_ip 83.122.140.91 154581 port 553 154581 unique_id port 154581 remote_ip 10.8.0.182 154582 username hashtadani4 154582 mac 154582 bytes_out 0 154582 bytes_in 0 154582 station_ip 83.122.140.91 154582 port 306 154582 unique_id port 154582 remote_ip 10.8.1.142 154585 username rajaei 154585 kill_reason Another user logged on this global unique id 154585 mac 154585 bytes_out 0 154585 bytes_in 0 154585 station_ip 5.134.155.83 154585 port 597 154585 unique_id port 154585 remote_ip 10.8.0.34 154590 username hashtadani4 154590 mac 154590 bytes_out 0 154590 bytes_in 0 154590 station_ip 83.122.140.91 154590 port 553 154590 unique_id port 154590 remote_ip 10.8.0.182 154594 username hashtadani4 154594 mac 154594 bytes_out 0 154594 bytes_in 0 154594 station_ip 83.122.140.91 154594 port 553 154594 unique_id port 154594 remote_ip 10.8.0.182 154598 username mehdizare 154598 mac 154598 bytes_out 40781 154598 bytes_in 50648 154598 station_ip 5.120.191.154 154598 port 298 154560 station_ip 83.122.27.135 154560 port 596 154560 unique_id port 154560 remote_ip 10.8.0.98 154562 username hashtadani4 154562 mac 154562 bytes_out 0 154562 bytes_in 0 154562 station_ip 83.122.140.91 154562 port 596 154562 unique_id port 154562 remote_ip 10.8.0.182 154566 username hashtadani4 154566 mac 154566 bytes_out 0 154566 bytes_in 0 154566 station_ip 83.122.140.91 154566 port 607 154566 unique_id port 154566 remote_ip 10.8.0.182 154570 username hashtadani4 154570 mac 154570 bytes_out 0 154570 bytes_in 0 154570 station_ip 83.122.140.91 154570 port 553 154570 unique_id port 154570 remote_ip 10.8.0.182 154573 username hashtadani4 154573 mac 154573 bytes_out 0 154573 bytes_in 0 154573 station_ip 83.122.140.91 154573 port 553 154573 unique_id port 154573 remote_ip 10.8.0.182 154575 username hashtadani4 154575 mac 154575 bytes_out 0 154575 bytes_in 0 154575 station_ip 83.122.140.91 154575 port 607 154575 unique_id port 154575 remote_ip 10.8.0.182 154583 username hashtadani4 154583 mac 154583 bytes_out 0 154583 bytes_in 0 154583 station_ip 83.122.140.91 154583 port 306 154583 unique_id port 154583 remote_ip 10.8.1.142 154586 username farhad2 154586 kill_reason Another user logged on this global unique id 154586 mac 154586 bytes_out 0 154586 bytes_in 0 154586 station_ip 5.119.221.23 154586 port 610 154586 unique_id port 154586 remote_ip 10.8.0.190 154587 username hashtadani4 154587 mac 154587 bytes_out 0 154587 bytes_in 0 154587 station_ip 83.122.140.91 154587 port 553 154587 unique_id port 154587 remote_ip 10.8.0.182 154591 username hashtadani4 154591 mac 154591 bytes_out 0 154591 bytes_in 0 154591 station_ip 83.122.140.91 154591 port 553 154591 unique_id port 154591 remote_ip 10.8.0.182 154595 username hashtadani4 154595 mac 154595 bytes_out 0 154595 bytes_in 0 154595 station_ip 83.122.140.91 154595 port 306 154595 unique_id port 154595 remote_ip 10.8.1.142 154597 username mohammadjavad 154597 mac 154597 bytes_out 1379914 154597 bytes_in 17395728 154597 station_ip 37.129.92.245 154597 port 596 154597 unique_id port 154597 remote_ip 10.8.0.142 154600 username farhad2 154600 mac 154600 bytes_out 0 154600 bytes_in 0 154600 station_ip 5.119.221.23 154600 port 610 154600 unique_id port 154603 username hashtadani4 154603 mac 154603 bytes_out 0 154603 bytes_in 0 154603 station_ip 83.122.140.91 154603 port 553 154603 unique_id port 154603 remote_ip 10.8.0.182 154604 username hashtadani4 154604 mac 154604 bytes_out 0 154604 bytes_in 0 154604 station_ip 83.122.140.91 154604 port 553 154604 unique_id port 154604 remote_ip 10.8.0.182 154607 username kamali2 154607 mac 154607 bytes_out 0 154607 bytes_in 0 154607 station_ip 5.120.109.80 154607 port 607 154607 unique_id port 154607 remote_ip 10.8.0.214 154614 username hashtadani4 154614 mac 154614 bytes_out 0 154614 bytes_in 0 154614 station_ip 83.122.140.91 154614 port 596 154614 unique_id port 154614 remote_ip 10.8.0.182 154621 username hashtadani4 154621 mac 154621 bytes_out 0 154621 bytes_in 0 154621 station_ip 83.122.140.91 154621 port 597 154621 unique_id port 154621 remote_ip 10.8.0.182 154626 username hashtadani4 154626 mac 154626 bytes_out 0 154626 bytes_in 0 154626 station_ip 83.122.140.91 154626 port 607 154626 unique_id port 154626 remote_ip 10.8.0.182 154627 username hashtadani4 154627 mac 154627 bytes_out 0 154627 bytes_in 0 154627 station_ip 83.122.140.91 154567 username hashtadani4 154567 mac 154567 bytes_out 0 154567 bytes_in 0 154567 station_ip 83.122.140.91 154567 port 305 154567 unique_id port 154567 remote_ip 10.8.1.142 154569 username farhad2 154569 mac 154569 bytes_out 115090 154569 bytes_in 549603 154569 station_ip 5.119.221.23 154569 port 306 154569 unique_id port 154569 remote_ip 10.8.1.222 154571 username farhad2 154571 mac 154571 bytes_out 0 154571 bytes_in 0 154571 station_ip 5.119.221.23 154571 port 553 154571 unique_id port 154571 remote_ip 10.8.0.190 154576 username hashtadani4 154576 mac 154576 bytes_out 0 154576 bytes_in 0 154576 station_ip 83.122.140.91 154576 port 607 154576 unique_id port 154576 remote_ip 10.8.0.182 154577 username kamali2 154577 mac 154577 bytes_out 332497 154577 bytes_in 1391576 154577 station_ip 5.120.109.80 154577 port 557 154577 unique_id port 154577 remote_ip 10.8.0.214 154578 username hashtadani4 154578 mac 154578 bytes_out 0 154578 bytes_in 0 154578 station_ip 83.122.140.91 154578 port 557 154578 unique_id port 154578 remote_ip 10.8.0.182 154580 username rahim 154580 mac 154580 bytes_out 83048 154580 bytes_in 76480 154580 station_ip 5.120.153.199 154580 port 553 154580 unique_id port 154580 remote_ip 10.8.0.50 154584 username hashtadani4 154584 kill_reason Maximum check online fails reached 154584 mac 154584 bytes_out 0 154584 bytes_in 0 154584 station_ip 83.122.140.91 154584 port 305 154584 unique_id port 154588 username hashtadani4 154588 mac 154588 bytes_out 0 154588 bytes_in 0 154588 station_ip 83.122.140.91 154588 port 553 154588 unique_id port 154588 remote_ip 10.8.0.182 154589 username hashtadani4 154589 mac 154589 bytes_out 0 154589 bytes_in 0 154589 station_ip 83.122.140.91 154589 port 306 154589 unique_id port 154589 remote_ip 10.8.1.142 154592 username hashtadani4 154592 mac 154592 bytes_out 0 154592 bytes_in 0 154592 station_ip 83.122.140.91 154592 port 306 154592 unique_id port 154592 remote_ip 10.8.1.142 154593 username hashtadani4 154593 mac 154593 bytes_out 0 154593 bytes_in 0 154593 station_ip 83.122.140.91 154593 port 553 154593 unique_id port 154593 remote_ip 10.8.0.182 154596 username hashtadani4 154596 mac 154596 bytes_out 0 154596 bytes_in 0 154596 station_ip 83.122.140.91 154596 port 553 154596 unique_id port 154596 remote_ip 10.8.0.182 154599 username kalantary 154599 mac 154599 bytes_out 193275 154599 bytes_in 476065 154599 station_ip 83.122.116.215 154599 port 553 154599 unique_id port 154599 remote_ip 10.8.0.98 154601 username hashtadani4 154601 mac 154601 bytes_out 142480 154601 bytes_in 874534 154601 station_ip 83.122.140.91 154601 port 557 154601 unique_id port 154601 remote_ip 10.8.0.182 154605 username hashtadani4 154605 mac 154605 bytes_out 0 154605 bytes_in 0 154605 station_ip 83.122.140.91 154605 port 553 154605 unique_id port 154605 remote_ip 10.8.0.182 154606 username hashtadani4 154606 mac 154606 bytes_out 0 154606 bytes_in 0 154606 station_ip 83.122.140.91 154606 port 557 154606 unique_id port 154606 remote_ip 10.8.0.182 154610 username hashtadani4 154610 mac 154610 bytes_out 19236 154610 bytes_in 20020 154610 station_ip 83.122.140.91 154610 port 306 154610 unique_id port 154610 remote_ip 10.8.1.142 154612 username hashtadani4 154612 mac 154612 bytes_out 0 154612 bytes_in 0 154612 station_ip 83.122.140.91 154612 port 596 154612 unique_id port 154612 remote_ip 10.8.0.182 154615 username hashtadani4 154598 unique_id port 154598 remote_ip 10.8.1.42 154602 username hashtadani4 154602 mac 154602 bytes_out 0 154602 bytes_in 0 154602 station_ip 83.122.140.91 154602 port 306 154602 unique_id port 154602 remote_ip 10.8.1.142 154608 username meysam 154608 mac 154608 bytes_out 241759 154608 bytes_in 3862872 154608 station_ip 188.158.48.96 154608 port 553 154608 unique_id port 154608 remote_ip 10.8.0.110 154609 username rajaei 154609 mac 154609 bytes_out 0 154609 bytes_in 0 154609 station_ip 5.134.155.83 154609 port 597 154609 unique_id port 154611 username hashtadani4 154611 mac 154611 bytes_out 0 154611 bytes_in 0 154611 station_ip 83.122.140.91 154611 port 596 154611 unique_id port 154611 remote_ip 10.8.0.182 154613 username hashtadani4 154613 mac 154613 bytes_out 0 154613 bytes_in 0 154613 station_ip 83.122.140.91 154613 port 596 154613 unique_id port 154613 remote_ip 10.8.0.182 154616 username hashtadani4 154616 mac 154616 bytes_out 0 154616 bytes_in 0 154616 station_ip 83.122.140.91 154616 port 596 154616 unique_id port 154616 remote_ip 10.8.0.182 154619 username hashtadani4 154619 mac 154619 bytes_out 0 154619 bytes_in 0 154619 station_ip 83.122.140.91 154619 port 597 154619 unique_id port 154619 remote_ip 10.8.0.182 154620 username hashtadani4 154620 mac 154620 bytes_out 0 154620 bytes_in 0 154620 station_ip 83.122.140.91 154620 port 597 154620 unique_id port 154620 remote_ip 10.8.0.182 154622 username hashtadani4 154622 kill_reason Maximum check online fails reached 154622 mac 154622 bytes_out 0 154622 bytes_in 0 154622 station_ip 83.122.140.91 154622 port 306 154622 unique_id port 154625 username hashtadani4 154625 mac 154625 bytes_out 0 154625 bytes_in 0 154625 station_ip 83.122.140.91 154625 port 311 154625 unique_id port 154625 remote_ip 10.8.1.142 154629 username hashtadani4 154629 mac 154629 bytes_out 0 154629 bytes_in 0 154629 station_ip 83.122.140.91 154629 port 607 154629 unique_id port 154629 remote_ip 10.8.0.182 154633 username hashtadani4 154633 mac 154633 bytes_out 0 154633 bytes_in 0 154633 station_ip 83.122.140.91 154633 port 607 154633 unique_id port 154633 remote_ip 10.8.0.182 154636 username hashtadani4 154636 mac 154636 bytes_out 0 154636 bytes_in 0 154636 station_ip 83.122.140.91 154636 port 610 154636 unique_id port 154636 remote_ip 10.8.0.182 154640 username hashtadani4 154640 mac 154640 bytes_out 0 154640 bytes_in 0 154640 station_ip 83.122.140.91 154640 port 610 154640 unique_id port 154640 remote_ip 10.8.0.182 154646 username hashtadani4 154646 mac 154646 bytes_out 0 154646 bytes_in 0 154646 station_ip 83.122.140.91 154646 port 596 154646 unique_id port 154646 remote_ip 10.8.0.182 154647 username hashtadani4 154647 mac 154647 bytes_out 0 154647 bytes_in 0 154647 station_ip 83.122.140.91 154647 port 610 154647 unique_id port 154647 remote_ip 10.8.0.182 154648 username nilufarrajaei 154648 kill_reason Another user logged on this global unique id 154648 mac 154648 bytes_out 0 154648 bytes_in 0 154648 station_ip 37.129.145.185 154648 port 307 154648 unique_id port 154650 username farhad2 154650 mac 154650 bytes_out 0 154650 bytes_in 0 154650 station_ip 5.119.221.23 154650 port 596 154650 unique_id port 154650 remote_ip 10.8.0.190 154652 username tahmasebi 154652 mac 154652 bytes_out 0 154652 bytes_in 0 154652 station_ip 5.120.130.84 154652 port 611 154652 unique_id port 154652 remote_ip 10.8.0.42 154615 mac 154615 bytes_out 0 154615 bytes_in 0 154615 station_ip 83.122.140.91 154615 port 596 154615 unique_id port 154615 remote_ip 10.8.0.182 154617 username hashtadani4 154617 mac 154617 bytes_out 0 154617 bytes_in 0 154617 station_ip 83.122.140.91 154617 port 596 154617 unique_id port 154617 remote_ip 10.8.0.182 154618 username hashtadani4 154618 mac 154618 bytes_out 0 154618 bytes_in 0 154618 station_ip 83.122.140.91 154618 port 310 154618 unique_id port 154618 remote_ip 10.8.1.142 154623 username hashtadani4 154623 mac 154623 bytes_out 0 154623 bytes_in 0 154623 station_ip 83.122.140.91 154623 port 607 154623 unique_id port 154623 remote_ip 10.8.0.182 154624 username hashtadani4 154624 mac 154624 bytes_out 0 154624 bytes_in 0 154624 station_ip 83.122.140.91 154624 port 607 154624 unique_id port 154624 remote_ip 10.8.0.182 154628 username nilufarrajaei 154628 kill_reason Another user logged on this global unique id 154628 mac 154628 bytes_out 0 154628 bytes_in 0 154628 station_ip 37.129.145.185 154628 port 307 154628 unique_id port 154632 username hashtadani4 154632 mac 154632 bytes_out 0 154632 bytes_in 0 154632 station_ip 83.122.140.91 154632 port 311 154632 unique_id port 154632 remote_ip 10.8.1.142 154635 username hashtadani4 154635 mac 154635 bytes_out 0 154635 bytes_in 0 154635 station_ip 83.122.140.91 154635 port 311 154635 unique_id port 154635 remote_ip 10.8.1.142 154638 username fezealinaghi 154638 kill_reason Another user logged on this global unique id 154638 mac 154638 bytes_out 0 154638 bytes_in 0 154638 station_ip 83.123.127.37 154638 port 597 154638 unique_id port 154638 remote_ip 10.8.0.78 154639 username hashtadani4 154639 mac 154639 bytes_out 0 154639 bytes_in 0 154639 station_ip 83.122.140.91 154639 port 311 154639 unique_id port 154639 remote_ip 10.8.1.142 154642 username hashtadani4 154642 mac 154642 bytes_out 0 154642 bytes_in 0 154642 station_ip 83.122.140.91 154642 port 610 154642 unique_id port 154642 remote_ip 10.8.0.182 154643 username hashtadani4 154643 mac 154643 bytes_out 0 154643 bytes_in 0 154643 station_ip 83.122.140.91 154643 port 610 154643 unique_id port 154643 remote_ip 10.8.0.182 154645 username hashtadani4 154645 mac 154645 bytes_out 0 154645 bytes_in 0 154645 station_ip 83.122.140.91 154645 port 311 154645 unique_id port 154645 remote_ip 10.8.1.142 154656 username fezealinaghi 154656 mac 154656 bytes_out 0 154656 bytes_in 0 154656 station_ip 83.123.127.37 154656 port 597 154656 unique_id port 154664 username hamidsalari 154664 mac 154664 bytes_out 4431496 154664 bytes_in 42117998 154664 station_ip 5.120.31.162 154664 port 595 154664 unique_id port 154664 remote_ip 10.8.0.222 154666 username mehdizare 154666 mac 154666 bytes_out 5056 154666 bytes_in 12286 154666 station_ip 5.120.191.154 154666 port 298 154666 unique_id port 154666 remote_ip 10.8.1.42 154667 username hamidsalari 154667 mac 154667 bytes_out 6139 154667 bytes_in 10877 154667 station_ip 5.120.20.116 154667 port 553 154667 unique_id port 154667 remote_ip 10.8.0.222 154671 username malekpoir 154671 kill_reason Maximum check online fails reached 154671 mac 154671 bytes_out 0 154671 bytes_in 0 154671 station_ip 5.112.92.12 154671 port 596 154671 unique_id port 154675 username vanila 154675 mac 154675 bytes_out 491803 154675 bytes_in 850624 154675 station_ip 83.122.26.143 154675 port 607 154675 unique_id port 154675 remote_ip 10.8.0.178 154676 username zotaher 154627 port 607 154627 unique_id port 154627 remote_ip 10.8.0.182 154630 username hashtadani4 154630 kill_reason Maximum check online fails reached 154630 mac 154630 bytes_out 0 154630 bytes_in 0 154630 station_ip 83.122.140.91 154630 port 310 154630 unique_id port 154631 username hashtadani4 154631 mac 154631 bytes_out 0 154631 bytes_in 0 154631 station_ip 83.122.140.91 154631 port 607 154631 unique_id port 154631 remote_ip 10.8.0.182 154634 username hashtadani4 154634 mac 154634 bytes_out 0 154634 bytes_in 0 154634 station_ip 83.122.140.91 154634 port 610 154634 unique_id port 154634 remote_ip 10.8.0.182 154637 username hashtadani4 154637 mac 154637 bytes_out 0 154637 bytes_in 0 154637 station_ip 83.122.140.91 154637 port 610 154637 unique_id port 154637 remote_ip 10.8.0.182 154641 username hashtadani4 154641 mac 154641 bytes_out 0 154641 bytes_in 0 154641 station_ip 83.122.140.91 154641 port 610 154641 unique_id port 154641 remote_ip 10.8.0.182 154644 username farhad2 154644 mac 154644 bytes_out 2979224 154644 bytes_in 35053260 154644 station_ip 5.119.221.23 154644 port 596 154644 unique_id port 154644 remote_ip 10.8.0.190 154649 username hashtadani4 154649 mac 154649 bytes_out 0 154649 bytes_in 0 154649 station_ip 83.122.140.91 154649 port 311 154649 unique_id port 154649 remote_ip 10.8.1.142 154651 username farhad2 154651 mac 154651 bytes_out 1808 154651 bytes_in 5154 154651 station_ip 5.119.221.23 154651 port 596 154651 unique_id port 154651 remote_ip 10.8.0.190 154653 username fezealinaghi 154653 kill_reason Another user logged on this global unique id 154653 mac 154653 bytes_out 0 154653 bytes_in 0 154653 station_ip 83.123.127.37 154653 port 597 154653 unique_id port 154658 username meysam 154658 mac 154658 bytes_out 0 154658 bytes_in 0 154658 station_ip 188.158.48.96 154658 port 553 154658 unique_id port 154658 remote_ip 10.8.0.110 154659 username farhad2 154659 kill_reason Another user logged on this global unique id 154659 mac 154659 bytes_out 0 154659 bytes_in 0 154659 station_ip 5.119.221.23 154659 port 610 154659 unique_id port 154659 remote_ip 10.8.0.190 154660 username mohammadmahdi 154660 kill_reason Another user logged on this global unique id 154660 mac 154660 bytes_out 0 154660 bytes_in 0 154660 station_ip 5.120.27.157 154660 port 607 154660 unique_id port 154661 username kalantary 154661 mac 154661 bytes_out 793885 154661 bytes_in 12696670 154661 station_ip 83.122.127.135 154661 port 596 154661 unique_id port 154661 remote_ip 10.8.0.98 154662 username mohammadmahdi 154662 mac 154662 bytes_out 0 154662 bytes_in 0 154662 station_ip 5.120.27.157 154662 port 607 154662 unique_id port 154665 username mehdizare 154665 mac 154665 bytes_out 72416 154665 bytes_in 114277 154665 station_ip 5.120.191.154 154665 port 298 154665 unique_id port 154665 remote_ip 10.8.1.42 154668 username farhad2 154668 mac 154668 bytes_out 0 154668 bytes_in 0 154668 station_ip 5.119.221.23 154668 port 610 154668 unique_id port 154670 username fezealinaghi 154670 kill_reason Another user logged on this global unique id 154670 mac 154670 bytes_out 0 154670 bytes_in 0 154670 station_ip 83.123.127.37 154670 port 597 154670 unique_id port 154672 username farhad2 154672 mac 154672 bytes_out 0 154672 bytes_in 0 154672 station_ip 5.120.92.89 154672 port 553 154672 unique_id port 154672 remote_ip 10.8.0.190 154673 username nilufarrajaei 154673 mac 154673 bytes_out 0 154673 bytes_in 0 154673 station_ip 37.129.145.185 154654 username mohammadmahdi 154654 kill_reason Another user logged on this global unique id 154654 mac 154654 bytes_out 0 154654 bytes_in 0 154654 station_ip 5.120.27.157 154654 port 607 154654 unique_id port 154654 remote_ip 10.8.0.54 154655 username mehdizare 154655 mac 154655 bytes_out 0 154655 bytes_in 0 154655 station_ip 5.120.191.154 154655 port 298 154655 unique_id port 154655 remote_ip 10.8.1.42 154657 username vanila 154657 mac 154657 bytes_out 366156 154657 bytes_in 2283229 154657 station_ip 83.122.26.143 154657 port 596 154657 unique_id port 154657 remote_ip 10.8.0.178 154663 username fezealinaghi 154663 kill_reason Another user logged on this global unique id 154663 mac 154663 bytes_out 0 154663 bytes_in 0 154663 station_ip 83.123.127.37 154663 port 597 154663 unique_id port 154663 remote_ip 10.8.0.78 154669 username khalili 154669 kill_reason Another user logged on this global unique id 154669 mac 154669 bytes_out 0 154669 bytes_in 0 154669 station_ip 5.119.196.181 154669 port 609 154669 unique_id port 154669 remote_ip 10.8.0.86 154677 username mehdizare 154677 mac 154677 bytes_out 28956 154677 bytes_in 39880 154677 station_ip 5.120.191.154 154677 port 298 154677 unique_id port 154677 remote_ip 10.8.1.42 154678 username fezealinaghi 154678 kill_reason Another user logged on this global unique id 154678 mac 154678 bytes_out 0 154678 bytes_in 0 154678 station_ip 83.123.127.37 154678 port 597 154678 unique_id port 154683 username rajaei 154683 mac 154683 bytes_out 1466722 154683 bytes_in 20375558 154683 station_ip 89.32.101.35 154683 port 613 154683 unique_id port 154683 remote_ip 10.8.0.34 154685 username mehdizare 154685 mac 154685 bytes_out 171262 154685 bytes_in 421765 154685 station_ip 5.120.191.154 154685 port 298 154685 unique_id port 154685 remote_ip 10.8.1.42 154689 username vanila 154689 mac 154689 bytes_out 56898 154689 bytes_in 59387 154689 station_ip 83.122.26.143 154689 port 607 154689 unique_id port 154689 remote_ip 10.8.0.178 154692 username fezealinaghi 154692 kill_reason Another user logged on this global unique id 154692 mac 154692 bytes_out 0 154692 bytes_in 0 154692 station_ip 83.123.127.37 154692 port 597 154692 unique_id port 154695 username farhad2 154695 mac 154695 bytes_out 0 154695 bytes_in 0 154695 station_ip 5.120.92.89 154695 port 311 154695 unique_id port 154695 remote_ip 10.8.1.222 154696 username vanila 154696 mac 154696 bytes_out 120308 154696 bytes_in 247914 154696 station_ip 83.122.26.143 154696 port 612 154696 unique_id port 154696 remote_ip 10.8.0.178 154697 username sedighe 154697 mac 154697 bytes_out 130751 154697 bytes_in 300835 154697 station_ip 83.123.205.239 154697 port 553 154697 unique_id port 154697 remote_ip 10.8.0.146 154704 username khalili 154704 mac 154704 bytes_out 0 154704 bytes_in 0 154704 station_ip 5.119.196.181 154704 port 609 154704 unique_id port 154705 username tahmasebi 154705 mac 154705 bytes_out 70991 154705 bytes_in 536799 154705 station_ip 5.120.130.84 154705 port 613 154705 unique_id port 154705 remote_ip 10.8.0.42 154706 username forozandeh1 154706 mac 154706 bytes_out 0 154706 bytes_in 0 154706 station_ip 83.122.85.142 154706 port 610 154706 unique_id port 154706 remote_ip 10.8.0.130 154707 username alikomsari 154707 mac 154707 bytes_out 298948 154707 bytes_in 1540722 154707 station_ip 5.120.101.137 154707 port 609 154707 unique_id port 154707 remote_ip 10.8.0.26 154709 username fezealinaghi 154709 kill_reason Another user logged on this global unique id 154709 mac 154709 bytes_out 0 154673 port 307 154673 unique_id port 154674 username rezaei 154674 mac 154674 bytes_out 1537673 154674 bytes_in 15051828 154674 station_ip 5.120.7.208 154674 port 311 154674 unique_id port 154674 remote_ip 10.8.1.58 154679 username tahmasebi 154679 mac 154679 bytes_out 0 154679 bytes_in 0 154679 station_ip 5.120.130.84 154679 port 614 154679 unique_id port 154679 remote_ip 10.8.0.42 154682 username sedighe 154682 mac 154682 bytes_out 200943 154682 bytes_in 2022470 154682 station_ip 83.123.205.239 154682 port 611 154682 unique_id port 154682 remote_ip 10.8.0.146 154687 username fezealinaghi 154687 kill_reason Another user logged on this global unique id 154687 mac 154687 bytes_out 0 154687 bytes_in 0 154687 station_ip 83.123.127.37 154687 port 597 154687 unique_id port 154688 username farhad2 154688 mac 154688 bytes_out 0 154688 bytes_in 0 154688 station_ip 5.120.92.89 154688 port 612 154688 unique_id port 154688 remote_ip 10.8.0.190 154690 username fezealinaghi 154690 kill_reason Another user logged on this global unique id 154690 mac 154690 bytes_out 0 154690 bytes_in 0 154690 station_ip 83.123.127.37 154690 port 597 154690 unique_id port 154691 username meysam 154691 mac 154691 bytes_out 0 154691 bytes_in 0 154691 station_ip 188.158.48.96 154691 port 611 154691 unique_id port 154691 remote_ip 10.8.0.110 154698 username fezealinaghi 154698 kill_reason Another user logged on this global unique id 154698 mac 154698 bytes_out 0 154698 bytes_in 0 154698 station_ip 83.123.127.37 154698 port 597 154698 unique_id port 154699 username mohammadmahdi 154699 mac 154699 bytes_out 986435 154699 bytes_in 7797845 154699 station_ip 5.120.27.157 154699 port 610 154699 unique_id port 154699 remote_ip 10.8.0.54 154702 username meysam 154702 kill_reason Another user logged on this global unique id 154702 mac 154702 bytes_out 0 154702 bytes_in 0 154702 station_ip 188.158.48.96 154702 port 553 154702 unique_id port 154702 remote_ip 10.8.0.110 154703 username rezaei 154703 mac 154703 bytes_out 0 154703 bytes_in 0 154703 station_ip 5.120.7.208 154703 port 312 154703 unique_id port 154703 remote_ip 10.8.1.58 154708 username meysam 154708 mac 154708 bytes_out 0 154708 bytes_in 0 154708 station_ip 188.158.48.96 154708 port 553 154708 unique_id port 154711 username meysam 154711 mac 154711 bytes_out 644581 154711 bytes_in 12368121 154711 station_ip 188.159.252.52 154711 port 553 154711 unique_id port 154711 remote_ip 10.8.0.110 154713 username aminvpn 154713 mac 154713 bytes_out 0 154713 bytes_in 0 154713 station_ip 5.119.10.18 154713 port 312 154713 unique_id port 154713 remote_ip 10.8.1.6 154715 username mehdizare 154715 mac 154715 bytes_out 0 154715 bytes_in 0 154715 station_ip 5.120.191.154 154715 port 298 154715 unique_id port 154715 remote_ip 10.8.1.42 154721 username sedighe 154721 mac 154721 bytes_out 17184 154721 bytes_in 25914 154721 station_ip 83.122.108.56 154721 port 557 154721 unique_id port 154721 remote_ip 10.8.0.146 154723 username farhad2 154723 mac 154723 bytes_out 4478139 154723 bytes_in 45945255 154723 station_ip 5.119.205.255 154723 port 553 154723 unique_id port 154723 remote_ip 10.8.0.190 154724 username farhad2 154724 mac 154724 bytes_out 0 154724 bytes_in 0 154724 station_ip 5.119.205.255 154724 port 553 154724 unique_id port 154724 remote_ip 10.8.0.190 154727 username kalantary 154727 mac 154727 bytes_out 854635 154727 bytes_in 7867142 154727 station_ip 83.122.69.107 154727 port 607 154676 kill_reason Another user logged on this global unique id 154676 mac 154676 bytes_out 0 154676 bytes_in 0 154676 station_ip 113.203.10.125 154676 port 553 154676 unique_id port 154676 remote_ip 10.8.0.194 154680 username vanila 154680 kill_reason Another user logged on this global unique id 154680 mac 154680 bytes_out 0 154680 bytes_in 0 154680 station_ip 83.122.26.143 154680 port 610 154680 unique_id port 154680 remote_ip 10.8.0.178 154681 username zotaher 154681 mac 154681 bytes_out 0 154681 bytes_in 0 154681 station_ip 113.203.10.125 154681 port 553 154681 unique_id port 154684 username mohammadmahdi 154684 mac 154684 bytes_out 1762513 154684 bytes_in 21331232 154684 station_ip 5.120.27.157 154684 port 607 154684 unique_id port 154684 remote_ip 10.8.0.54 154686 username vanila 154686 mac 154686 bytes_out 0 154686 bytes_in 0 154686 station_ip 83.122.26.143 154686 port 610 154686 unique_id port 154693 username farhad2 154693 mac 154693 bytes_out 1140311 154693 bytes_in 7794680 154693 station_ip 5.120.92.89 154693 port 607 154693 unique_id port 154693 remote_ip 10.8.0.190 154694 username farhad2 154694 mac 154694 bytes_out 0 154694 bytes_in 0 154694 station_ip 5.120.92.89 154694 port 311 154694 unique_id port 154694 remote_ip 10.8.1.222 154700 username godarzi 154700 kill_reason Another user logged on this global unique id 154700 mac 154700 bytes_out 0 154700 bytes_in 0 154700 station_ip 5.202.24.27 154700 port 606 154700 unique_id port 154701 username kalantary 154701 mac 154701 bytes_out 248518 154701 bytes_in 768976 154701 station_ip 83.122.27.135 154701 port 612 154701 unique_id port 154701 remote_ip 10.8.0.98 154710 username sedighe 154710 mac 154710 bytes_out 615744 154710 bytes_in 7087529 154710 station_ip 83.123.205.239 154710 port 607 154710 unique_id port 154710 remote_ip 10.8.0.146 154716 username sedighe 154716 mac 154716 bytes_out 118268 154716 bytes_in 111370 154716 station_ip 83.122.108.56 154716 port 609 154716 unique_id port 154716 remote_ip 10.8.0.146 154718 username kamali2 154718 mac 154718 bytes_out 0 154718 bytes_in 0 154718 station_ip 5.120.46.60 154718 port 612 154718 unique_id port 154718 remote_ip 10.8.0.214 154719 username mehdizare 154719 mac 154719 bytes_out 0 154719 bytes_in 0 154719 station_ip 5.120.191.154 154719 port 298 154719 unique_id port 154719 remote_ip 10.8.1.42 154720 username forozandeh1 154720 mac 154720 bytes_out 821314 154720 bytes_in 10765746 154720 station_ip 83.122.224.0 154720 port 610 154720 unique_id port 154720 remote_ip 10.8.0.130 154722 username mohammadjavad 154722 mac 154722 bytes_out 0 154722 bytes_in 0 154722 station_ip 83.122.130.38 154722 port 609 154722 unique_id port 154722 remote_ip 10.8.0.142 154725 username farhad2 154725 mac 154725 bytes_out 0 154725 bytes_in 0 154725 station_ip 5.119.205.255 154725 port 553 154725 unique_id port 154725 remote_ip 10.8.0.190 154728 username mehdizare 154728 mac 154728 bytes_out 0 154728 bytes_in 0 154728 station_ip 5.120.191.154 154728 port 298 154728 unique_id port 154728 remote_ip 10.8.1.42 154729 username tahmasebi 154729 mac 154729 bytes_out 3085725 154729 bytes_in 32635424 154729 station_ip 5.120.130.84 154729 port 557 154729 unique_id port 154729 remote_ip 10.8.0.42 154730 username kalantary 154730 mac 154730 bytes_out 188769 154730 bytes_in 621513 154730 station_ip 83.122.75.223 154730 port 607 154730 unique_id port 154730 remote_ip 10.8.0.98 154733 username sedighe 154709 bytes_in 0 154709 station_ip 83.123.127.37 154709 port 597 154709 unique_id port 154712 username farhad2 154712 mac 154712 bytes_out 0 154712 bytes_in 0 154712 station_ip 5.119.205.255 154712 port 612 154712 unique_id port 154712 remote_ip 10.8.0.190 154714 username kamali2 154714 mac 154714 bytes_out 0 154714 bytes_in 0 154714 station_ip 5.120.109.80 154714 port 557 154714 unique_id port 154714 remote_ip 10.8.0.214 154717 username kamali2 154717 mac 154717 bytes_out 85719 154717 bytes_in 139804 154717 station_ip 5.120.109.80 154717 port 607 154717 unique_id port 154717 remote_ip 10.8.0.214 154726 username fezealinaghi 154726 mac 154726 bytes_out 0 154726 bytes_in 0 154726 station_ip 83.123.127.37 154726 port 597 154726 unique_id port 154738 username farhad2 154738 mac 154738 bytes_out 0 154738 bytes_in 0 154738 station_ip 5.119.205.255 154738 port 313 154738 unique_id port 154738 remote_ip 10.8.1.222 154739 username farhad2 154739 mac 154739 bytes_out 14585 154739 bytes_in 12915 154739 station_ip 5.119.205.255 154739 port 557 154739 unique_id port 154739 remote_ip 10.8.0.190 154744 username sedighe 154744 mac 154744 bytes_out 0 154744 bytes_in 0 154744 station_ip 83.122.108.56 154744 port 312 154744 unique_id port 154744 remote_ip 10.8.1.78 154757 username godarzi 154757 kill_reason Another user logged on this global unique id 154757 mac 154757 bytes_out 0 154757 bytes_in 0 154757 station_ip 5.202.24.27 154757 port 606 154757 unique_id port 154758 username mirzaei 154758 mac 154758 bytes_out 0 154758 bytes_in 0 154758 station_ip 5.114.152.144 154758 port 597 154758 unique_id port 154758 remote_ip 10.8.0.66 154759 username aminvpn 154759 mac 154759 bytes_out 1813884 154759 bytes_in 25097445 154759 station_ip 83.122.34.149 154759 port 611 154759 unique_id port 154759 remote_ip 10.8.0.14 154765 username aminvpn 154765 mac 154765 bytes_out 0 154765 bytes_in 0 154765 station_ip 83.122.34.149 154765 port 611 154765 unique_id port 154765 remote_ip 10.8.0.14 154767 username mehdizare 154767 mac 154767 bytes_out 0 154767 bytes_in 0 154767 station_ip 5.120.191.154 154767 port 610 154767 unique_id port 154767 remote_ip 10.8.0.90 154769 username fezealinaghi 154769 kill_reason Another user logged on this global unique id 154769 mac 154769 bytes_out 0 154769 bytes_in 0 154769 station_ip 83.123.127.37 154769 port 553 154769 unique_id port 154775 username mehdizare 154775 mac 154775 bytes_out 0 154775 bytes_in 0 154775 station_ip 5.120.191.154 154775 port 607 154775 unique_id port 154775 remote_ip 10.8.0.90 154780 username rahim 154780 kill_reason Another user logged on this global unique id 154780 mac 154780 bytes_out 0 154780 bytes_in 0 154780 station_ip 5.120.153.199 154780 port 557 154780 unique_id port 154783 username hasanahmadi 154783 mac 154783 bytes_out 0 154783 bytes_in 0 154783 station_ip 37.129.220.212 154783 port 609 154783 unique_id port 154783 remote_ip 10.8.0.126 154792 username hasanahmadi 154792 mac 154792 bytes_out 0 154792 bytes_in 0 154792 station_ip 37.129.220.212 154792 port 606 154792 unique_id port 154792 remote_ip 10.8.0.126 154794 username alihosseini1 154794 kill_reason Another user logged on this global unique id 154794 mac 154794 bytes_out 0 154794 bytes_in 0 154794 station_ip 5.120.64.62 154794 port 609 154794 unique_id port 154794 remote_ip 10.8.0.166 154797 username mohammadmahdi 154797 kill_reason Another user logged on this global unique id 154797 mac 154727 unique_id port 154727 remote_ip 10.8.0.98 154731 username mehdizare 154731 mac 154731 bytes_out 0 154731 bytes_in 0 154731 station_ip 5.120.191.154 154731 port 298 154731 unique_id port 154731 remote_ip 10.8.1.42 154732 username mohammadjavad 154732 mac 154732 bytes_out 84277 154732 bytes_in 263863 154732 station_ip 83.122.25.159 154732 port 557 154732 unique_id port 154732 remote_ip 10.8.0.142 154735 username sabaghnezhad 154735 mac 154735 bytes_out 95093 154735 bytes_in 671720 154735 station_ip 113.203.35.33 154735 port 557 154735 unique_id port 154735 remote_ip 10.8.0.186 154736 username rajaei 154736 mac 154736 bytes_out 2887234 154736 bytes_in 43555355 154736 station_ip 5.62.222.128 154736 port 597 154736 unique_id port 154736 remote_ip 10.8.0.34 154740 username sabaghnezhad 154740 mac 154740 bytes_out 363083 154740 bytes_in 2254438 154740 station_ip 113.203.35.33 154740 port 314 154740 unique_id port 154740 remote_ip 10.8.1.130 154741 username sedighe 154741 mac 154741 bytes_out 0 154741 bytes_in 0 154741 station_ip 83.122.108.56 154741 port 312 154741 unique_id port 154741 remote_ip 10.8.1.78 154742 username mehdizare 154742 mac 154742 bytes_out 0 154742 bytes_in 0 154742 station_ip 5.120.191.154 154742 port 298 154742 unique_id port 154742 remote_ip 10.8.1.42 154743 username sedighe 154743 mac 154743 bytes_out 0 154743 bytes_in 0 154743 station_ip 83.122.108.56 154743 port 287 154743 unique_id port 154743 remote_ip 10.8.1.78 154746 username forozandeh1 154746 mac 154746 bytes_out 0 154746 bytes_in 0 154746 station_ip 37.129.58.52 154746 port 597 154746 unique_id port 154746 remote_ip 10.8.0.130 154747 username mehdizare 154747 mac 154747 bytes_out 12672 154747 bytes_in 17044 154747 station_ip 5.120.191.154 154747 port 298 154747 unique_id port 154747 remote_ip 10.8.1.42 154751 username mirzaei 154751 mac 154751 bytes_out 34814 154751 bytes_in 64768 154751 station_ip 5.114.210.32 154751 port 607 154751 unique_id port 154751 remote_ip 10.8.0.66 154752 username mirzaei 154752 mac 154752 bytes_out 8808 154752 bytes_in 10206 154752 station_ip 5.113.108.162 154752 port 287 154752 unique_id port 154752 remote_ip 10.8.1.30 154753 username mehdizare 154753 mac 154753 bytes_out 0 154753 bytes_in 0 154753 station_ip 5.120.191.154 154753 port 597 154753 unique_id port 154753 remote_ip 10.8.0.90 154754 username mirzaei 154754 mac 154754 bytes_out 64234 154754 bytes_in 56868 154754 station_ip 5.113.89.9 154754 port 298 154754 unique_id port 154754 remote_ip 10.8.1.30 154761 username aminvpn 154761 mac 154761 bytes_out 0 154761 bytes_in 0 154761 station_ip 83.122.34.149 154761 port 613 154761 unique_id port 154761 remote_ip 10.8.0.14 154763 username godarzi 154763 mac 154763 bytes_out 0 154763 bytes_in 0 154763 station_ip 5.202.24.27 154763 port 606 154763 unique_id port 154766 username nilufarrajaei 154766 kill_reason Another user logged on this global unique id 154766 mac 154766 bytes_out 0 154766 bytes_in 0 154766 station_ip 37.129.145.185 154766 port 307 154766 unique_id port 154766 remote_ip 10.8.1.166 154770 username rahim 154770 kill_reason Another user logged on this global unique id 154770 mac 154770 bytes_out 0 154770 bytes_in 0 154770 station_ip 5.120.153.199 154770 port 557 154770 unique_id port 154770 remote_ip 10.8.0.50 154773 username alihosseini1 154773 mac 154773 bytes_out 0 154773 bytes_in 0 154773 station_ip 5.119.151.194 154773 port 609 154733 mac 154733 bytes_out 1152672 154733 bytes_in 18490684 154733 station_ip 83.122.108.56 154733 port 312 154733 unique_id port 154733 remote_ip 10.8.1.78 154734 username fezealinaghi 154734 kill_reason Maximum check online fails reached 154734 mac 154734 bytes_out 123961 154734 bytes_in 191302 154734 station_ip 83.123.127.37 154734 port 553 154734 unique_id port 154734 remote_ip 10.8.0.78 154737 username mirzaei 154737 mac 154737 bytes_out 0 154737 bytes_in 0 154737 station_ip 5.119.91.25 154737 port 287 154737 unique_id port 154745 username hosseine 154745 mac 154745 bytes_out 0 154745 bytes_in 0 154745 station_ip 37.129.88.178 154745 port 311 154745 unique_id port 154745 remote_ip 10.8.1.190 154748 username farhad2 154748 kill_reason Another user logged on this global unique id 154748 mac 154748 bytes_out 0 154748 bytes_in 0 154748 station_ip 5.120.35.149 154748 port 557 154748 unique_id port 154748 remote_ip 10.8.0.190 154749 username mehdizare 154749 mac 154749 bytes_out 9224 154749 bytes_in 12427 154749 station_ip 5.120.191.154 154749 port 597 154749 unique_id port 154749 remote_ip 10.8.0.90 154750 username kalantary 154750 mac 154750 bytes_out 618832 154750 bytes_in 6342360 154750 station_ip 83.122.69.135 154750 port 609 154750 unique_id port 154750 remote_ip 10.8.0.98 154755 username farhad2 154755 mac 154755 bytes_out 0 154755 bytes_in 0 154755 station_ip 5.120.35.149 154755 port 557 154755 unique_id port 154756 username kalantary 154756 mac 154756 bytes_out 0 154756 bytes_in 0 154756 station_ip 83.122.24.143 154756 port 597 154756 unique_id port 154756 remote_ip 10.8.0.98 154760 username fezealinaghi 154760 kill_reason Another user logged on this global unique id 154760 mac 154760 bytes_out 0 154760 bytes_in 0 154760 station_ip 83.123.127.37 154760 port 553 154760 unique_id port 154762 username farhad2 154762 mac 154762 bytes_out 0 154762 bytes_in 0 154762 station_ip 5.120.35.149 154762 port 612 154762 unique_id port 154762 remote_ip 10.8.0.190 154764 username khalili 154764 kill_reason Another user logged on this global unique id 154764 mac 154764 bytes_out 0 154764 bytes_in 0 154764 station_ip 5.119.196.181 154764 port 287 154764 unique_id port 154764 remote_ip 10.8.1.18 154768 username mohammadjavad 154768 mac 154768 bytes_out 0 154768 bytes_in 0 154768 station_ip 37.129.79.68 154768 port 607 154768 unique_id port 154768 remote_ip 10.8.0.142 154771 username farhad2 154771 mac 154771 bytes_out 0 154771 bytes_in 0 154771 station_ip 5.119.186.209 154771 port 610 154771 unique_id port 154771 remote_ip 10.8.0.190 154772 username aminvpn 154772 mac 154772 bytes_out 62432 154772 bytes_in 95939 154772 station_ip 83.122.34.149 154772 port 606 154772 unique_id port 154772 remote_ip 10.8.0.14 154776 username mirzaei 154776 mac 154776 bytes_out 0 154776 bytes_in 0 154776 station_ip 5.112.190.248 154776 port 597 154776 unique_id port 154776 remote_ip 10.8.0.66 154778 username rahim 154778 kill_reason Another user logged on this global unique id 154778 mac 154778 bytes_out 0 154778 bytes_in 0 154778 station_ip 5.120.153.199 154778 port 557 154778 unique_id port 154779 username mirzaei 154779 mac 154779 bytes_out 0 154779 bytes_in 0 154779 station_ip 5.119.96.112 154779 port 610 154779 unique_id port 154779 remote_ip 10.8.0.66 154781 username khalili 154781 kill_reason Another user logged on this global unique id 154781 mac 154781 bytes_out 0 154781 bytes_in 0 154781 station_ip 5.119.196.181 154781 port 287 154773 unique_id port 154773 remote_ip 10.8.0.166 154774 username rahim 154774 kill_reason Another user logged on this global unique id 154774 mac 154774 bytes_out 0 154774 bytes_in 0 154774 station_ip 5.120.153.199 154774 port 557 154774 unique_id port 154777 username farhad2 154777 mac 154777 bytes_out 0 154777 bytes_in 0 154777 station_ip 5.119.186.209 154777 port 610 154777 unique_id port 154777 remote_ip 10.8.0.190 154782 username sabaghnezhad 154782 mac 154782 bytes_out 0 154782 bytes_in 0 154782 station_ip 37.129.96.189 154782 port 606 154782 unique_id port 154782 remote_ip 10.8.0.186 154784 username hassan 154784 mac 154784 bytes_out 0 154784 bytes_in 0 154784 station_ip 37.27.11.147 154784 port 610 154784 unique_id port 154784 remote_ip 10.8.0.122 154786 username sabaghnezhad 154786 mac 154786 bytes_out 0 154786 bytes_in 0 154786 station_ip 37.129.96.189 154786 port 613 154786 unique_id port 154786 remote_ip 10.8.0.186 154790 username rahim 154790 kill_reason Another user logged on this global unique id 154790 mac 154790 bytes_out 0 154790 bytes_in 0 154790 station_ip 5.120.153.199 154790 port 557 154790 unique_id port 154795 username hassan 154795 kill_reason Another user logged on this global unique id 154795 mac 154795 bytes_out 0 154795 bytes_in 0 154795 station_ip 5.119.30.77 154795 port 610 154795 unique_id port 154795 remote_ip 10.8.0.122 154796 username rahim 154796 kill_reason Another user logged on this global unique id 154796 mac 154796 bytes_out 0 154796 bytes_in 0 154796 station_ip 5.120.153.199 154796 port 557 154796 unique_id port 154799 username fezealinaghi 154799 kill_reason Another user logged on this global unique id 154799 mac 154799 bytes_out 0 154799 bytes_in 0 154799 station_ip 37.129.128.158 154799 port 311 154799 unique_id port 154799 remote_ip 10.8.1.162 154807 username alihosseini1 154807 mac 154807 bytes_out 0 154807 bytes_in 0 154807 station_ip 5.120.64.62 154807 port 609 154807 unique_id port 154814 username khalili 154814 kill_reason Another user logged on this global unique id 154814 mac 154814 bytes_out 0 154814 bytes_in 0 154814 station_ip 5.119.196.181 154814 port 287 154814 unique_id port 154815 username mirzaei 154815 mac 154815 bytes_out 407749 154815 bytes_in 1724902 154815 station_ip 5.120.7.32 154815 port 312 154815 unique_id port 154815 remote_ip 10.8.1.30 154816 username rezaei 154816 mac 154816 bytes_out 2852023 154816 bytes_in 33564445 154816 station_ip 5.120.7.208 154816 port 298 154816 unique_id port 154816 remote_ip 10.8.1.58 154819 username khademi 154819 kill_reason Another user logged on this global unique id 154819 mac 154819 bytes_out 0 154819 bytes_in 0 154819 station_ip 37.129.135.128 154819 port 309 154819 unique_id port 154819 remote_ip 10.8.1.242 154820 username sekonji3 154820 mac 154820 bytes_out 0 154820 bytes_in 0 154820 station_ip 83.123.212.68 154820 port 606 154820 unique_id port 154820 remote_ip 10.8.0.6 154822 username kalantary 154822 mac 154822 bytes_out 259037 154822 bytes_in 609143 154822 station_ip 83.122.103.143 154822 port 606 154822 unique_id port 154822 remote_ip 10.8.0.98 154824 username morteza 154824 mac 154824 bytes_out 0 154824 bytes_in 0 154824 station_ip 37.129.75.198 154824 port 606 154824 unique_id port 154824 remote_ip 10.8.0.46 154825 username mirzaei 154825 mac 154825 bytes_out 0 154825 bytes_in 0 154825 station_ip 5.119.233.107 154825 port 597 154825 unique_id port 154825 remote_ip 10.8.0.66 154835 username morteza 154835 mac 154781 unique_id port 154785 username hassan 154785 mac 154785 bytes_out 0 154785 bytes_in 0 154785 station_ip 37.27.11.147 154785 port 606 154785 unique_id port 154785 remote_ip 10.8.0.122 154787 username sabaghnezhad 154787 mac 154787 bytes_out 0 154787 bytes_in 0 154787 station_ip 37.129.96.189 154787 port 311 154787 unique_id port 154787 remote_ip 10.8.1.130 154788 username fezealinaghi 154788 mac 154788 bytes_out 0 154788 bytes_in 0 154788 station_ip 83.123.127.37 154788 port 553 154788 unique_id port 154789 username zotaher 154789 mac 154789 bytes_out 0 154789 bytes_in 0 154789 station_ip 83.123.72.246 154789 port 613 154789 unique_id port 154789 remote_ip 10.8.0.194 154791 username aminvpn 154791 mac 154791 bytes_out 1592407 154791 bytes_in 22422395 154791 station_ip 5.120.35.70 154791 port 298 154791 unique_id port 154791 remote_ip 10.8.1.6 154793 username vanila 154793 mac 154793 bytes_out 0 154793 bytes_in 0 154793 station_ip 83.122.75.95 154793 port 553 154793 unique_id port 154793 remote_ip 10.8.0.178 154798 username rahim 154798 kill_reason Another user logged on this global unique id 154798 mac 154798 bytes_out 0 154798 bytes_in 0 154798 station_ip 5.120.153.199 154798 port 557 154798 unique_id port 154802 username hassan 154802 kill_reason Another user logged on this global unique id 154802 mac 154802 bytes_out 0 154802 bytes_in 0 154802 station_ip 5.119.30.77 154802 port 610 154802 unique_id port 154805 username ayobi 154805 kill_reason Another user logged on this global unique id 154805 mac 154805 bytes_out 0 154805 bytes_in 0 154805 station_ip 37.27.4.94 154805 port 597 154805 unique_id port 154805 remote_ip 10.8.0.246 154808 username rahim 154808 mac 154808 bytes_out 0 154808 bytes_in 0 154808 station_ip 5.120.153.199 154808 port 557 154808 unique_id port 154817 username mirzaei 154817 mac 154817 bytes_out 22208 154817 bytes_in 44559 154817 station_ip 5.112.27.158 154817 port 557 154817 unique_id port 154817 remote_ip 10.8.0.66 154818 username mehdizare 154818 mac 154818 bytes_out 0 154818 bytes_in 0 154818 station_ip 5.120.191.154 154818 port 607 154818 unique_id port 154818 remote_ip 10.8.0.90 154829 username morteza 154829 mac 154829 bytes_out 0 154829 bytes_in 0 154829 station_ip 37.129.75.198 154829 port 606 154829 unique_id port 154829 remote_ip 10.8.0.46 154830 username morteza 154830 mac 154830 bytes_out 0 154830 bytes_in 0 154830 station_ip 37.129.75.198 154830 port 606 154830 unique_id port 154830 remote_ip 10.8.0.46 154834 username mahdiyehalizadeh 154834 mac 154834 bytes_out 0 154834 bytes_in 0 154834 station_ip 5.120.108.140 154834 port 553 154834 unique_id port 154836 username alihajmalek 154836 kill_reason Another user logged on this global unique id 154836 mac 154836 bytes_out 0 154836 bytes_in 0 154836 station_ip 5.202.3.239 154836 port 597 154836 unique_id port 154839 username khademi 154839 kill_reason Another user logged on this global unique id 154839 mac 154839 bytes_out 0 154839 bytes_in 0 154839 station_ip 37.129.135.128 154839 port 309 154839 unique_id port 154844 username jafari 154844 mac 154844 bytes_out 0 154844 bytes_in 0 154844 station_ip 93.114.27.126 154844 port 553 154844 unique_id port 154844 remote_ip 10.8.0.242 154855 username vanila 154855 mac 154855 bytes_out 0 154855 bytes_in 0 154855 station_ip 83.122.76.251 154855 port 553 154855 unique_id port 154855 remote_ip 10.8.0.178 154858 username godarzi 154858 mac 154797 bytes_out 0 154797 bytes_in 0 154797 station_ip 5.120.27.157 154797 port 611 154797 unique_id port 154797 remote_ip 10.8.0.54 154800 username alihosseini1 154800 kill_reason Another user logged on this global unique id 154800 mac 154800 bytes_out 0 154800 bytes_in 0 154800 station_ip 5.120.64.62 154800 port 609 154800 unique_id port 154801 username rahim 154801 kill_reason Another user logged on this global unique id 154801 mac 154801 bytes_out 0 154801 bytes_in 0 154801 station_ip 5.120.153.199 154801 port 557 154801 unique_id port 154803 username nilufarrajaei 154803 kill_reason Another user logged on this global unique id 154803 mac 154803 bytes_out 0 154803 bytes_in 0 154803 station_ip 37.129.145.185 154803 port 307 154803 unique_id port 154804 username mirzaei 154804 mac 154804 bytes_out 0 154804 bytes_in 0 154804 station_ip 5.119.96.112 154804 port 612 154804 unique_id port 154804 remote_ip 10.8.0.66 154806 username khalili 154806 kill_reason Another user logged on this global unique id 154806 mac 154806 bytes_out 0 154806 bytes_in 0 154806 station_ip 5.119.196.181 154806 port 287 154806 unique_id port 154809 username fezealinaghi 154809 kill_reason Another user logged on this global unique id 154809 mac 154809 bytes_out 0 154809 bytes_in 0 154809 station_ip 37.129.128.158 154809 port 311 154809 unique_id port 154810 username mirzaei 154810 mac 154810 bytes_out 0 154810 bytes_in 0 154810 station_ip 5.119.96.112 154810 port 606 154810 unique_id port 154810 remote_ip 10.8.0.66 154811 username mirzaei 154811 mac 154811 bytes_out 0 154811 bytes_in 0 154811 station_ip 5.119.96.112 154811 port 557 154811 unique_id port 154811 remote_ip 10.8.0.66 154812 username ayobi 154812 mac 154812 bytes_out 0 154812 bytes_in 0 154812 station_ip 37.27.4.94 154812 port 597 154812 unique_id port 154813 username mohammadmahdi 154813 kill_reason Another user logged on this global unique id 154813 mac 154813 bytes_out 0 154813 bytes_in 0 154813 station_ip 5.120.27.157 154813 port 611 154813 unique_id port 154821 username mosi 154821 mac 154821 bytes_out 0 154821 bytes_in 0 154821 station_ip 151.234.20.163 154821 port 606 154821 unique_id port 154821 remote_ip 10.8.0.138 154823 username mohammadmahdi 154823 kill_reason Another user logged on this global unique id 154823 mac 154823 bytes_out 0 154823 bytes_in 0 154823 station_ip 5.120.27.157 154823 port 611 154823 unique_id port 154826 username mahdiyehalizadeh 154826 kill_reason Another user logged on this global unique id 154826 mac 154826 bytes_out 0 154826 bytes_in 0 154826 station_ip 5.120.108.140 154826 port 553 154826 unique_id port 154826 remote_ip 10.8.0.82 154827 username mohammadmahdi 154827 mac 154827 bytes_out 0 154827 bytes_in 0 154827 station_ip 5.120.27.157 154827 port 611 154827 unique_id port 154828 username mirzaei 154828 mac 154828 bytes_out 0 154828 bytes_in 0 154828 station_ip 5.119.233.107 154828 port 607 154828 unique_id port 154828 remote_ip 10.8.0.66 154831 username morteza 154831 mac 154831 bytes_out 0 154831 bytes_in 0 154831 station_ip 37.129.75.198 154831 port 606 154831 unique_id port 154831 remote_ip 10.8.0.46 154832 username morteza 154832 mac 154832 bytes_out 0 154832 bytes_in 0 154832 station_ip 37.129.75.198 154832 port 606 154832 unique_id port 154832 remote_ip 10.8.0.46 154833 username alihajmalek 154833 kill_reason Another user logged on this global unique id 154833 mac 154833 bytes_out 0 154833 bytes_in 0 154833 station_ip 5.202.3.239 154833 port 597 154833 unique_id port 154833 remote_ip 10.8.0.202 154835 bytes_out 0 154835 bytes_in 0 154835 station_ip 37.129.75.198 154835 port 553 154835 unique_id port 154835 remote_ip 10.8.0.46 154837 username kalantary 154837 mac 154837 bytes_out 0 154837 bytes_in 0 154837 station_ip 83.122.108.147 154837 port 553 154837 unique_id port 154837 remote_ip 10.8.0.98 154838 username morteza 154838 mac 154838 bytes_out 0 154838 bytes_in 0 154838 station_ip 37.129.75.198 154838 port 553 154838 unique_id port 154838 remote_ip 10.8.0.46 154842 username alihajmalek 154842 kill_reason Another user logged on this global unique id 154842 mac 154842 bytes_out 0 154842 bytes_in 0 154842 station_ip 5.202.3.239 154842 port 597 154842 unique_id port 154843 username hatami 154843 mac 154843 bytes_out 0 154843 bytes_in 0 154843 station_ip 151.235.102.189 154843 port 606 154843 unique_id port 154843 remote_ip 10.8.0.106 154847 username jafari 154847 mac 154847 bytes_out 0 154847 bytes_in 0 154847 station_ip 94.24.99.194 154847 port 606 154847 unique_id port 154847 remote_ip 10.8.0.242 154848 username mohammadjavad 154848 mac 154848 bytes_out 0 154848 bytes_in 0 154848 station_ip 113.203.105.255 154848 port 607 154848 unique_id port 154848 remote_ip 10.8.0.142 154849 username aminvpn 154849 mac 154849 bytes_out 0 154849 bytes_in 0 154849 station_ip 5.119.10.18 154849 port 298 154849 unique_id port 154851 username jafari 154851 mac 154851 bytes_out 0 154851 bytes_in 0 154851 station_ip 5.134.159.210 154851 port 553 154851 unique_id port 154857 username vanila 154857 mac 154857 bytes_out 0 154857 bytes_in 0 154857 station_ip 83.122.76.251 154857 port 612 154857 unique_id port 154857 remote_ip 10.8.0.178 154862 username godarzi 154862 mac 154862 bytes_out 1114876 154862 bytes_in 7381137 154862 station_ip 5.202.24.27 154862 port 606 154862 unique_id port 154862 remote_ip 10.8.0.174 154865 username alihosseini1 154865 mac 154865 bytes_out 0 154865 bytes_in 0 154865 station_ip 5.120.18.235 154865 port 606 154865 unique_id port 154865 remote_ip 10.8.0.166 154868 username morteza 154868 mac 154868 bytes_out 315138 154868 bytes_in 6513361 154868 station_ip 37.129.32.158 154868 port 312 154868 unique_id port 154868 remote_ip 10.8.1.62 154869 username aminvpn 154869 mac 154869 bytes_out 0 154869 bytes_in 0 154869 station_ip 83.122.34.149 154869 port 553 154869 unique_id port 154869 remote_ip 10.8.0.14 154874 username alihosseini1 154874 mac 154874 bytes_out 0 154874 bytes_in 0 154874 station_ip 5.120.18.235 154874 port 553 154874 unique_id port 154874 remote_ip 10.8.0.166 154875 username mehdizare 154875 mac 154875 bytes_out 0 154875 bytes_in 0 154875 station_ip 5.120.191.154 154875 port 557 154875 unique_id port 154875 remote_ip 10.8.0.90 154876 username tahmasebi 154876 mac 154876 bytes_out 0 154876 bytes_in 0 154876 station_ip 5.119.184.77 154876 port 607 154876 unique_id port 154876 remote_ip 10.8.0.42 154877 username forozandeh1 154877 mac 154877 bytes_out 0 154877 bytes_in 0 154877 station_ip 37.129.25.80 154877 port 557 154877 unique_id port 154877 remote_ip 10.8.0.130 154879 username alihosseini1 154879 mac 154879 bytes_out 0 154879 bytes_in 0 154879 station_ip 5.120.18.235 154879 port 612 154879 unique_id port 154879 remote_ip 10.8.0.166 154881 username fezealinaghi 154881 mac 154881 bytes_out 27934 154881 bytes_in 36370 154881 station_ip 37.129.128.158 154881 port 298 154881 unique_id port 154840 username hoorieh 154840 mac 154840 bytes_out 0 154840 bytes_in 0 154840 station_ip 5.120.69.199 154840 port 606 154840 unique_id port 154840 remote_ip 10.8.0.158 154841 username mohammadmahdi 154841 kill_reason Another user logged on this global unique id 154841 mac 154841 bytes_out 0 154841 bytes_in 0 154841 station_ip 5.120.27.157 154841 port 609 154841 unique_id port 154841 remote_ip 10.8.0.54 154845 username khalili 154845 kill_reason Another user logged on this global unique id 154845 mac 154845 bytes_out 0 154845 bytes_in 0 154845 station_ip 5.119.196.181 154845 port 287 154845 unique_id port 154846 username aminvpn 154846 kill_reason Another user logged on this global unique id 154846 mac 154846 bytes_out 0 154846 bytes_in 0 154846 station_ip 5.119.10.18 154846 port 298 154846 unique_id port 154846 remote_ip 10.8.1.6 154850 username jafari 154850 kill_reason Another user logged on this global unique id 154850 mac 154850 bytes_out 0 154850 bytes_in 0 154850 station_ip 5.134.159.210 154850 port 553 154850 unique_id port 154850 remote_ip 10.8.0.242 154852 username aminvpn 154852 mac 154852 bytes_out 507328 154852 bytes_in 4724671 154852 station_ip 5.119.10.18 154852 port 298 154852 unique_id port 154852 remote_ip 10.8.1.6 154853 username mohammadmahdi 154853 kill_reason Another user logged on this global unique id 154853 mac 154853 bytes_out 0 154853 bytes_in 0 154853 station_ip 5.120.27.157 154853 port 609 154853 unique_id port 154854 username godarzi 154854 kill_reason Another user logged on this global unique id 154854 mac 154854 bytes_out 0 154854 bytes_in 0 154854 station_ip 5.202.24.27 154854 port 606 154854 unique_id port 154854 remote_ip 10.8.0.174 154856 username aminvpn 154856 mac 154856 bytes_out 298585 154856 bytes_in 2253021 154856 station_ip 5.119.10.18 154856 port 298 154856 unique_id port 154856 remote_ip 10.8.1.6 154863 username forozandeh1 154863 mac 154863 bytes_out 0 154863 bytes_in 0 154863 station_ip 37.129.16.158 154863 port 553 154863 unique_id port 154863 remote_ip 10.8.0.130 154864 username mohammadjavad 154864 mac 154864 bytes_out 0 154864 bytes_in 0 154864 station_ip 37.129.76.78 154864 port 606 154864 unique_id port 154864 remote_ip 10.8.0.142 154866 username alihosseini1 154866 mac 154866 bytes_out 0 154866 bytes_in 0 154866 station_ip 5.120.18.235 154866 port 606 154866 unique_id port 154866 remote_ip 10.8.0.166 154871 username aminvpn 154871 mac 154871 bytes_out 2897839 154871 bytes_in 39773480 154871 station_ip 5.119.10.18 154871 port 298 154871 unique_id port 154871 remote_ip 10.8.1.6 154873 username khademi 154873 kill_reason Another user logged on this global unique id 154873 mac 154873 bytes_out 0 154873 bytes_in 0 154873 station_ip 37.129.135.128 154873 port 309 154873 unique_id port 154880 username kalantary 154880 mac 154880 bytes_out 0 154880 bytes_in 0 154880 station_ip 83.122.94.231 154880 port 607 154880 unique_id port 154880 remote_ip 10.8.0.98 154882 username hamidsalari 154882 mac 154882 bytes_out 0 154882 bytes_in 0 154882 station_ip 5.119.246.106 154882 port 595 154882 unique_id port 154882 remote_ip 10.8.0.222 154883 username godarzi 154883 mac 154883 bytes_out 0 154883 bytes_in 0 154883 station_ip 5.202.24.27 154883 port 609 154883 unique_id port 154883 remote_ip 10.8.0.174 154885 username mehdizare 154885 mac 154885 bytes_out 0 154885 bytes_in 0 154885 station_ip 5.120.191.154 154885 port 553 154885 unique_id port 154885 remote_ip 10.8.0.90 154888 username nilufarrajaei 154858 bytes_out 0 154858 bytes_in 0 154858 station_ip 5.202.24.27 154858 port 606 154858 unique_id port 154859 username forozandeh1 154859 mac 154859 bytes_out 0 154859 bytes_in 0 154859 station_ip 83.122.47.126 154859 port 607 154859 unique_id port 154859 remote_ip 10.8.0.130 154860 username kalantary 154860 mac 154860 bytes_out 0 154860 bytes_in 0 154860 station_ip 83.122.118.159 154860 port 553 154860 unique_id port 154860 remote_ip 10.8.0.98 154861 username mohammadmahdi 154861 mac 154861 bytes_out 0 154861 bytes_in 0 154861 station_ip 5.120.27.157 154861 port 609 154861 unique_id port 154867 username kalantary 154867 mac 154867 bytes_out 0 154867 bytes_in 0 154867 station_ip 83.122.99.203 154867 port 607 154867 unique_id port 154867 remote_ip 10.8.0.98 154870 username tahmasebi 154870 mac 154870 bytes_out 0 154870 bytes_in 0 154870 station_ip 5.119.184.77 154870 port 606 154870 unique_id port 154870 remote_ip 10.8.0.42 154872 username nilufarrajaei 154872 kill_reason Another user logged on this global unique id 154872 mac 154872 bytes_out 0 154872 bytes_in 0 154872 station_ip 37.129.145.185 154872 port 307 154872 unique_id port 154878 username fezealinaghi 154878 mac 154878 bytes_out 0 154878 bytes_in 0 154878 station_ip 37.129.128.158 154878 port 311 154878 unique_id port 154884 username fezealinaghi 154884 mac 154884 bytes_out 0 154884 bytes_in 0 154884 station_ip 37.129.128.158 154884 port 298 154884 unique_id port 154884 remote_ip 10.8.1.162 154890 username mehdizare 154890 mac 154890 bytes_out 0 154890 bytes_in 0 154890 station_ip 5.120.191.154 154890 port 595 154890 unique_id port 154890 remote_ip 10.8.0.90 154892 username forozandeh1 154892 mac 154892 bytes_out 0 154892 bytes_in 0 154892 station_ip 113.203.43.207 154892 port 607 154892 unique_id port 154892 remote_ip 10.8.0.130 154895 username morteza 154895 kill_reason Another user logged on this global unique id 154895 mac 154895 bytes_out 0 154895 bytes_in 0 154895 station_ip 37.129.32.158 154895 port 312 154895 unique_id port 154896 username sedighe 154896 mac 154896 bytes_out 0 154896 bytes_in 0 154896 station_ip 83.123.88.211 154896 port 609 154896 unique_id port 154896 remote_ip 10.8.0.146 154899 username morteza 154899 kill_reason Another user logged on this global unique id 154899 mac 154899 bytes_out 0 154899 bytes_in 0 154899 station_ip 37.129.32.158 154899 port 312 154899 unique_id port 154902 username alihosseini1 154902 mac 154902 bytes_out 0 154902 bytes_in 0 154902 station_ip 5.120.18.235 154902 port 613 154902 unique_id port 154902 remote_ip 10.8.0.166 154905 username kalantary 154905 mac 154905 bytes_out 0 154905 bytes_in 0 154905 station_ip 83.122.16.119 154905 port 617 154905 unique_id port 154905 remote_ip 10.8.0.98 154906 username fezealinaghi 154906 mac 154906 bytes_out 0 154906 bytes_in 0 154906 station_ip 37.129.128.158 154906 port 607 154906 unique_id port 154906 remote_ip 10.8.0.78 154908 username vanila 154908 mac 154908 bytes_out 0 154908 bytes_in 0 154908 station_ip 83.122.76.251 154908 port 614 154908 unique_id port 154908 remote_ip 10.8.0.178 154910 username alihosseini1 154910 kill_reason Maximum check online fails reached 154910 mac 154910 bytes_out 0 154910 bytes_in 0 154910 station_ip 5.120.18.235 154910 port 607 154910 unique_id port 154912 username sabaghnezhad 154912 mac 154912 bytes_out 0 154912 bytes_in 0 154912 station_ip 37.129.86.230 154912 port 614 154881 remote_ip 10.8.1.162 154886 username morteza 154886 kill_reason Another user logged on this global unique id 154886 mac 154886 bytes_out 0 154886 bytes_in 0 154886 station_ip 37.129.32.158 154886 port 312 154886 unique_id port 154886 remote_ip 10.8.1.62 154887 username alihosseini1 154887 mac 154887 bytes_out 0 154887 bytes_in 0 154887 station_ip 5.120.18.235 154887 port 609 154887 unique_id port 154887 remote_ip 10.8.0.166 154897 username milan 154897 kill_reason Another user logged on this global unique id 154897 mac 154897 bytes_out 0 154897 bytes_in 0 154897 station_ip 5.120.37.194 154897 port 598 154897 unique_id port 154903 username tahmasebi 154903 mac 154903 bytes_out 0 154903 bytes_in 0 154903 station_ip 5.119.184.77 154903 port 612 154903 unique_id port 154903 remote_ip 10.8.0.42 154907 username naeimeh 154907 kill_reason Another user logged on this global unique id 154907 mac 154907 bytes_out 0 154907 bytes_in 0 154907 station_ip 83.123.34.245 154907 port 615 154907 unique_id port 154907 remote_ip 10.8.0.118 154909 username morteza 154909 kill_reason Another user logged on this global unique id 154909 mac 154909 bytes_out 0 154909 bytes_in 0 154909 station_ip 37.129.32.158 154909 port 312 154909 unique_id port 154916 username alihosseini1 154916 mac 154916 bytes_out 0 154916 bytes_in 0 154916 station_ip 5.120.18.235 154916 port 313 154916 unique_id port 154916 remote_ip 10.8.1.106 154919 username fezealinaghi 154919 mac 154919 bytes_out 0 154919 bytes_in 0 154919 station_ip 37.129.128.158 154919 port 613 154919 unique_id port 154919 remote_ip 10.8.0.78 154922 username mehdizare 154922 kill_reason Another user logged on this global unique id 154922 mac 154922 bytes_out 0 154922 bytes_in 0 154922 station_ip 5.120.191.154 154922 port 595 154922 unique_id port 154924 username sedighe 154924 mac 154924 bytes_out 0 154924 bytes_in 0 154924 station_ip 83.123.3.56 154924 port 617 154924 unique_id port 154924 remote_ip 10.8.0.146 154927 username fezealinaghi 154927 mac 154927 bytes_out 36680 154927 bytes_in 68082 154927 station_ip 113.203.86.161 154927 port 298 154927 unique_id port 154927 remote_ip 10.8.1.162 154931 username alihosseini1 154931 kill_reason Maximum check online fails reached 154931 mac 154931 bytes_out 0 154931 bytes_in 0 154931 station_ip 5.120.18.235 154931 port 617 154931 unique_id port 154933 username mohammadjavad 154933 mac 154933 bytes_out 281157 154933 bytes_in 4032191 154933 station_ip 83.122.121.195 154933 port 597 154933 unique_id port 154933 remote_ip 10.8.0.142 154938 username naeimeh 154938 kill_reason Another user logged on this global unique id 154938 mac 154938 bytes_out 0 154938 bytes_in 0 154938 station_ip 83.123.34.245 154938 port 615 154938 unique_id port 154939 username meysam 154939 mac 154939 bytes_out 0 154939 bytes_in 0 154939 station_ip 5.119.29.201 154939 port 598 154939 unique_id port 154939 remote_ip 10.8.0.110 154941 username sedighe 154941 mac 154941 bytes_out 0 154941 bytes_in 0 154941 station_ip 83.123.186.204 154941 port 553 154941 unique_id port 154941 remote_ip 10.8.0.146 154943 username hamidsalari1 154943 mac 154943 bytes_out 0 154943 bytes_in 0 154943 station_ip 37.129.181.45 154943 port 598 154943 unique_id port 154943 remote_ip 10.8.0.94 154948 username farhad2 154948 mac 154948 bytes_out 0 154948 bytes_in 0 154948 station_ip 5.119.31.230 154948 port 598 154948 unique_id port 154948 remote_ip 10.8.0.190 154949 username mehdizare 154949 mac 154949 bytes_out 0 154888 kill_reason Another user logged on this global unique id 154888 mac 154888 bytes_out 0 154888 bytes_in 0 154888 station_ip 37.129.145.185 154888 port 307 154888 unique_id port 154889 username sedighe 154889 mac 154889 bytes_out 0 154889 bytes_in 0 154889 station_ip 83.123.88.211 154889 port 606 154889 unique_id port 154889 remote_ip 10.8.0.146 154891 username fezealinaghi 154891 mac 154891 bytes_out 0 154891 bytes_in 0 154891 station_ip 37.129.128.158 154891 port 553 154891 unique_id port 154891 remote_ip 10.8.0.78 154893 username alihajmalek 154893 mac 154893 bytes_out 0 154893 bytes_in 0 154893 station_ip 5.202.3.239 154893 port 597 154893 unique_id port 154894 username alihosseini1 154894 mac 154894 bytes_out 0 154894 bytes_in 0 154894 station_ip 5.120.18.235 154894 port 597 154894 unique_id port 154894 remote_ip 10.8.0.166 154898 username mohammadjavad 154898 mac 154898 bytes_out 0 154898 bytes_in 0 154898 station_ip 83.122.203.12 154898 port 609 154898 unique_id port 154898 remote_ip 10.8.0.142 154900 username mehdizare 154900 kill_reason Another user logged on this global unique id 154900 mac 154900 bytes_out 0 154900 bytes_in 0 154900 station_ip 5.120.191.154 154900 port 595 154900 unique_id port 154900 remote_ip 10.8.0.90 154901 username sedighe 154901 mac 154901 bytes_out 0 154901 bytes_in 0 154901 station_ip 83.123.88.211 154901 port 597 154901 unique_id port 154901 remote_ip 10.8.0.146 154904 username tahmasebi 154904 mac 154904 bytes_out 0 154904 bytes_in 0 154904 station_ip 5.119.184.77 154904 port 613 154904 unique_id port 154904 remote_ip 10.8.0.42 154911 username sedighe 154911 mac 154911 bytes_out 0 154911 bytes_in 0 154911 station_ip 83.123.88.211 154911 port 597 154911 unique_id port 154911 remote_ip 10.8.0.146 154914 username tahmasebi 154914 kill_reason Another user logged on this global unique id 154914 mac 154914 bytes_out 0 154914 bytes_in 0 154914 station_ip 5.119.184.77 154914 port 298 154914 unique_id port 154914 remote_ip 10.8.1.90 154917 username mosi 154917 kill_reason Another user logged on this global unique id 154917 mac 154917 bytes_out 0 154917 bytes_in 0 154917 station_ip 151.235.95.177 154917 port 616 154917 unique_id port 154917 remote_ip 10.8.0.138 154921 username alihosseini1 154921 mac 154921 bytes_out 0 154921 bytes_in 0 154921 station_ip 5.120.18.235 154921 port 597 154921 unique_id port 154921 remote_ip 10.8.0.166 154928 username naeimeh 154928 kill_reason Another user logged on this global unique id 154928 mac 154928 bytes_out 0 154928 bytes_in 0 154928 station_ip 83.123.34.245 154928 port 615 154928 unique_id port 154930 username farhad2 154930 mac 154930 bytes_out 0 154930 bytes_in 0 154930 station_ip 5.119.31.230 154930 port 613 154930 unique_id port 154930 remote_ip 10.8.0.190 154935 username milan 154935 mac 154935 bytes_out 0 154935 bytes_in 0 154935 station_ip 5.120.37.194 154935 port 598 154935 unique_id port 154942 username barzegar 154942 mac 154942 bytes_out 0 154942 bytes_in 0 154942 station_ip 5.120.107.152 154942 port 298 154942 unique_id port 154942 remote_ip 10.8.1.174 154944 username barzegar 154944 mac 154944 bytes_out 0 154944 bytes_in 0 154944 station_ip 5.120.107.152 154944 port 298 154944 unique_id port 154944 remote_ip 10.8.1.174 154945 username mehdizare 154945 kill_reason Another user logged on this global unique id 154945 mac 154945 bytes_out 0 154945 bytes_in 0 154945 station_ip 5.120.191.154 154945 port 595 154945 unique_id port 154912 unique_id port 154912 remote_ip 10.8.0.186 154913 username jafari 154913 kill_reason Another user logged on this global unique id 154913 mac 154913 bytes_out 0 154913 bytes_in 0 154913 station_ip 92.114.78.67 154913 port 609 154913 unique_id port 154913 remote_ip 10.8.0.242 154915 username aminvpn 154915 mac 154915 bytes_out 2266165 154915 bytes_in 24768625 154915 station_ip 5.119.10.18 154915 port 553 154915 unique_id port 154915 remote_ip 10.8.0.14 154918 username alihosseini1 154918 mac 154918 bytes_out 0 154918 bytes_in 0 154918 station_ip 5.120.18.235 154918 port 553 154918 unique_id port 154918 remote_ip 10.8.0.166 154920 username tahmasebi 154920 mac 154920 bytes_out 0 154920 bytes_in 0 154920 station_ip 5.119.184.77 154920 port 298 154920 unique_id port 154923 username farhad2 154923 mac 154923 bytes_out 0 154923 bytes_in 0 154923 station_ip 5.120.81.46 154923 port 553 154923 unique_id port 154923 remote_ip 10.8.0.190 154925 username mosi 154925 kill_reason Another user logged on this global unique id 154925 mac 154925 bytes_out 0 154925 bytes_in 0 154925 station_ip 151.235.95.177 154925 port 616 154925 unique_id port 154926 username morteza 154926 mac 154926 bytes_out 0 154926 bytes_in 0 154926 station_ip 37.129.32.158 154926 port 312 154926 unique_id port 154929 username alihosseini1 154929 mac 154929 bytes_out 0 154929 bytes_in 0 154929 station_ip 5.120.18.235 154929 port 618 154929 unique_id port 154929 remote_ip 10.8.0.166 154932 username mirzaei 154932 kill_reason Another user logged on this global unique id 154932 mac 154932 bytes_out 0 154932 bytes_in 0 154932 station_ip 5.119.233.107 154932 port 611 154932 unique_id port 154932 remote_ip 10.8.0.66 154934 username sabaghnezhad 154934 mac 154934 bytes_out 0 154934 bytes_in 0 154934 station_ip 37.129.86.230 154934 port 614 154934 unique_id port 154934 remote_ip 10.8.0.186 154936 username mehdizare 154936 mac 154936 bytes_out 0 154936 bytes_in 0 154936 station_ip 5.120.191.154 154936 port 595 154936 unique_id port 154937 username alihosseini1 154937 mac 154937 bytes_out 0 154937 bytes_in 0 154937 station_ip 5.120.18.235 154937 port 614 154937 unique_id port 154937 remote_ip 10.8.0.166 154940 username mosi 154940 kill_reason Another user logged on this global unique id 154940 mac 154940 bytes_out 0 154940 bytes_in 0 154940 station_ip 151.235.95.177 154940 port 616 154940 unique_id port 154946 username alihosseini1 154946 mac 154946 bytes_out 0 154946 bytes_in 0 154946 station_ip 5.120.18.235 154946 port 298 154946 unique_id port 154946 remote_ip 10.8.1.106 154951 username alihosseini1 154951 mac 154951 bytes_out 0 154951 bytes_in 0 154951 station_ip 5.120.18.235 154951 port 298 154951 unique_id port 154951 remote_ip 10.8.1.106 154955 username sabaghnezhad 154955 mac 154955 bytes_out 94620 154955 bytes_in 265228 154955 station_ip 37.129.86.230 154955 port 597 154955 unique_id port 154955 remote_ip 10.8.0.186 154960 username jafari 154960 kill_reason Another user logged on this global unique id 154960 mac 154960 bytes_out 0 154960 bytes_in 0 154960 station_ip 92.114.78.67 154960 port 609 154960 unique_id port 154962 username fezealinaghi 154962 mac 154962 bytes_out 0 154962 bytes_in 0 154962 station_ip 113.203.33.217 154962 port 553 154962 unique_id port 154962 remote_ip 10.8.0.78 154963 username aminvpn 154963 mac 154963 bytes_out 0 154963 bytes_in 0 154963 station_ip 37.129.10.99 154963 port 613 154963 unique_id port 154945 remote_ip 10.8.0.90 154947 username alihosseini1 154947 mac 154947 bytes_out 0 154947 bytes_in 0 154947 station_ip 5.120.18.235 154947 port 614 154947 unique_id port 154947 remote_ip 10.8.0.166 154950 username aminvpn 154950 mac 154950 bytes_out 0 154950 bytes_in 0 154950 station_ip 37.129.10.99 154950 port 613 154950 unique_id port 154950 remote_ip 10.8.0.14 154952 username aminvpn 154952 mac 154952 bytes_out 0 154952 bytes_in 0 154952 station_ip 5.119.10.18 154952 port 598 154952 unique_id port 154952 remote_ip 10.8.0.14 154953 username aminvpn 154953 mac 154953 bytes_out 0 154953 bytes_in 0 154953 station_ip 37.129.10.99 154953 port 613 154953 unique_id port 154953 remote_ip 10.8.0.14 154957 username alihosseini1 154957 mac 154957 bytes_out 0 154957 bytes_in 0 154957 station_ip 5.120.18.235 154957 port 597 154957 unique_id port 154957 remote_ip 10.8.0.166 154959 username zotaher 154959 mac 154959 bytes_out 0 154959 bytes_in 0 154959 station_ip 83.123.118.206 154959 port 598 154959 unique_id port 154959 remote_ip 10.8.0.194 154961 username sedighe 154961 mac 154961 bytes_out 0 154961 bytes_in 0 154961 station_ip 83.123.186.204 154961 port 597 154961 unique_id port 154961 remote_ip 10.8.0.146 154967 username khalili 154967 mac 154967 bytes_out 0 154967 bytes_in 0 154967 station_ip 5.119.196.181 154967 port 287 154967 unique_id port 154970 username barzegar 154970 mac 154970 bytes_out 0 154970 bytes_in 0 154970 station_ip 5.119.151.160 154970 port 619 154970 unique_id port 154970 remote_ip 10.8.0.234 154971 username alihosseini1 154971 mac 154971 bytes_out 0 154971 bytes_in 0 154971 station_ip 5.120.18.235 154971 port 619 154971 unique_id port 154971 remote_ip 10.8.0.166 154973 username morteza 154973 mac 154973 bytes_out 0 154973 bytes_in 0 154973 station_ip 37.129.7.194 154973 port 298 154973 unique_id port 154973 remote_ip 10.8.1.62 154977 username morteza 154977 mac 154977 bytes_out 0 154977 bytes_in 0 154977 station_ip 37.129.7.194 154977 port 287 154977 unique_id port 154977 remote_ip 10.8.1.62 154980 username sedighe 154980 mac 154980 bytes_out 37819 154980 bytes_in 57583 154980 station_ip 83.123.186.204 154980 port 597 154980 unique_id port 154980 remote_ip 10.8.0.146 154982 username mohammadmahdi 154982 kill_reason Another user logged on this global unique id 154982 mac 154982 bytes_out 0 154982 bytes_in 0 154982 station_ip 5.120.27.157 154982 port 614 154982 unique_id port 154986 username sedighe 154986 mac 154986 bytes_out 0 154986 bytes_in 0 154986 station_ip 83.123.186.204 154986 port 598 154986 unique_id port 154986 remote_ip 10.8.0.146 154988 username mosi 154988 kill_reason Another user logged on this global unique id 154988 mac 154988 bytes_out 0 154988 bytes_in 0 154988 station_ip 151.235.95.177 154988 port 616 154988 unique_id port 154990 username alihosseini1 154990 mac 154990 bytes_out 0 154990 bytes_in 0 154990 station_ip 5.120.18.235 154990 port 598 154990 unique_id port 154990 remote_ip 10.8.0.166 154995 username barzegar 154995 mac 154995 bytes_out 0 154995 bytes_in 0 154995 station_ip 5.119.151.160 154995 port 619 154995 unique_id port 154995 remote_ip 10.8.0.234 154997 username mohammadjavad 154997 kill_reason Another user logged on this global unique id 154997 mac 154997 bytes_out 0 154997 bytes_in 0 154997 station_ip 83.123.131.51 154997 port 615 154997 unique_id port 154997 remote_ip 10.8.0.142 154949 bytes_in 0 154949 station_ip 5.120.191.154 154949 port 595 154949 unique_id port 154954 username aminvpn 154954 mac 154954 bytes_out 0 154954 bytes_in 0 154954 station_ip 5.119.10.18 154954 port 598 154954 unique_id port 154954 remote_ip 10.8.0.14 154956 username naeimeh 154956 kill_reason Another user logged on this global unique id 154956 mac 154956 bytes_out 0 154956 bytes_in 0 154956 station_ip 83.123.34.245 154956 port 615 154956 unique_id port 154958 username sedighe 154958 mac 154958 bytes_out 0 154958 bytes_in 0 154958 station_ip 83.123.186.204 154958 port 553 154958 unique_id port 154958 remote_ip 10.8.0.146 154964 username fezealinaghi 154964 mac 154964 bytes_out 0 154964 bytes_in 0 154964 station_ip 83.123.161.246 154964 port 598 154964 unique_id port 154964 remote_ip 10.8.0.78 154966 username mehdizare 154966 mac 154966 bytes_out 0 154966 bytes_in 0 154966 station_ip 5.120.191.154 154966 port 595 154966 unique_id port 154966 remote_ip 10.8.0.90 154969 username mohammadmahdi 154969 kill_reason Another user logged on this global unique id 154969 mac 154969 bytes_out 0 154969 bytes_in 0 154969 station_ip 5.120.27.157 154969 port 614 154969 unique_id port 154969 remote_ip 10.8.0.54 154972 username mehdizare 154972 mac 154972 bytes_out 0 154972 bytes_in 0 154972 station_ip 5.120.191.154 154972 port 598 154972 unique_id port 154972 remote_ip 10.8.0.90 154975 username mosi 154975 kill_reason Another user logged on this global unique id 154975 mac 154975 bytes_out 0 154975 bytes_in 0 154975 station_ip 151.235.95.177 154975 port 616 154975 unique_id port 154978 username mehdizare 154978 mac 154978 bytes_out 0 154978 bytes_in 0 154978 station_ip 5.120.191.154 154978 port 619 154978 unique_id port 154978 remote_ip 10.8.0.90 154981 username alihosseini1 154981 mac 154981 bytes_out 0 154981 bytes_in 0 154981 station_ip 5.120.18.235 154981 port 287 154981 unique_id port 154981 remote_ip 10.8.1.106 154983 username farhad2 154983 mac 154983 bytes_out 0 154983 bytes_in 0 154983 station_ip 5.119.31.230 154983 port 620 154983 unique_id port 154983 remote_ip 10.8.0.190 154985 username rezaei 154985 mac 154985 bytes_out 0 154985 bytes_in 0 154985 station_ip 5.120.7.208 154985 port 311 154985 unique_id port 154985 remote_ip 10.8.1.58 154987 username barzegar 154987 mac 154987 bytes_out 0 154987 bytes_in 0 154987 station_ip 5.119.151.160 154987 port 620 154987 unique_id port 154987 remote_ip 10.8.0.234 154989 username mohammadmahdi 154989 mac 154989 bytes_out 0 154989 bytes_in 0 154989 station_ip 5.120.27.157 154989 port 614 154989 unique_id port 154992 username zotaher 154992 kill_reason Another user logged on this global unique id 154992 mac 154992 bytes_out 0 154992 bytes_in 0 154992 station_ip 37.129.142.40 154992 port 618 154992 unique_id port 154992 remote_ip 10.8.0.194 154993 username hassan 154993 mac 154993 bytes_out 0 154993 bytes_in 0 154993 station_ip 5.119.30.77 154993 port 610 154993 unique_id port 154994 username sedighe 154994 mac 154994 bytes_out 0 154994 bytes_in 0 154994 station_ip 83.122.55.177 154994 port 621 154994 unique_id port 154994 remote_ip 10.8.0.146 154996 username ahmadi1 154996 mac 154996 bytes_out 0 154996 bytes_in 0 154996 station_ip 113.203.35.106 154996 port 598 154996 unique_id port 154996 remote_ip 10.8.0.250 154999 username ahmadi1 154999 mac 154999 bytes_out 0 154999 bytes_in 0 154999 station_ip 113.203.35.106 154963 remote_ip 10.8.0.14 154965 username naeimeh 154965 mac 154965 bytes_out 0 154965 bytes_in 0 154965 station_ip 83.123.34.245 154965 port 615 154965 unique_id port 154968 username zotaher 154968 mac 154968 bytes_out 773916 154968 bytes_in 5816450 154968 station_ip 37.129.142.40 154968 port 618 154968 unique_id port 154968 remote_ip 10.8.0.194 154974 username barzegar 154974 mac 154974 bytes_out 0 154974 bytes_in 0 154974 station_ip 5.119.151.160 154974 port 598 154974 unique_id port 154974 remote_ip 10.8.0.234 154976 username godarzi 154976 kill_reason Another user logged on this global unique id 154976 mac 154976 bytes_out 0 154976 bytes_in 0 154976 station_ip 5.202.24.27 154976 port 612 154976 unique_id port 154976 remote_ip 10.8.0.174 154979 username farhad2 154979 mac 154979 bytes_out 2329921 154979 bytes_in 27031644 154979 station_ip 5.119.31.230 154979 port 613 154979 unique_id port 154979 remote_ip 10.8.0.190 154984 username godarzi 154984 kill_reason Another user logged on this global unique id 154984 mac 154984 bytes_out 0 154984 bytes_in 0 154984 station_ip 5.202.24.27 154984 port 612 154984 unique_id port 154991 username vanila 154991 mac 154991 bytes_out 308744 154991 bytes_in 691888 154991 station_ip 83.122.76.251 154991 port 619 154991 unique_id port 154991 remote_ip 10.8.0.178 155007 username ahmadi1 155007 mac 155007 bytes_out 0 155007 bytes_in 0 155007 station_ip 113.203.35.106 155007 port 610 155007 unique_id port 155007 remote_ip 10.8.0.250 155014 username alihosseini1 155014 mac 155014 bytes_out 0 155014 bytes_in 0 155014 station_ip 5.120.18.235 155014 port 621 155014 unique_id port 155014 remote_ip 10.8.0.166 155016 username ahmadi1 155016 mac 155016 bytes_out 0 155016 bytes_in 0 155016 station_ip 113.203.35.106 155016 port 615 155016 unique_id port 155016 remote_ip 10.8.0.250 155017 username sedighe 155017 mac 155017 bytes_out 0 155017 bytes_in 0 155017 station_ip 83.122.55.177 155017 port 618 155017 unique_id port 155017 remote_ip 10.8.0.146 155022 username barzegar 155022 mac 155022 bytes_out 9988 155022 bytes_in 17761 155022 station_ip 5.119.151.160 155022 port 618 155022 unique_id port 155022 remote_ip 10.8.0.234 155024 username ahmadi1 155024 mac 155024 bytes_out 0 155024 bytes_in 0 155024 station_ip 113.203.35.106 155024 port 610 155024 unique_id port 155024 remote_ip 10.8.0.250 155025 username ahmadi1 155025 mac 155025 bytes_out 0 155025 bytes_in 0 155025 station_ip 113.203.35.106 155025 port 311 155025 unique_id port 155025 remote_ip 10.8.1.10 155032 username ayobi 155032 kill_reason Another user logged on this global unique id 155032 mac 155032 bytes_out 0 155032 bytes_in 0 155032 station_ip 37.27.4.94 155032 port 598 155032 unique_id port 155032 remote_ip 10.8.0.246 155033 username kamali2 155033 mac 155033 bytes_out 0 155033 bytes_in 0 155033 station_ip 5.120.46.60 155033 port 613 155033 unique_id port 155033 remote_ip 10.8.0.214 155034 username ahmadi1 155034 mac 155034 bytes_out 0 155034 bytes_in 0 155034 station_ip 113.203.35.106 155034 port 613 155034 unique_id port 155034 remote_ip 10.8.0.250 155035 username alihosseini1 155035 mac 155035 bytes_out 0 155035 bytes_in 0 155035 station_ip 5.120.18.235 155035 port 311 155035 unique_id port 155035 remote_ip 10.8.1.106 155038 username meysam 155038 kill_reason Another user logged on this global unique id 155038 mac 155038 bytes_out 0 155038 bytes_in 0 155038 station_ip 5.119.171.125 154998 username alihosseini1 154998 mac 154998 bytes_out 0 154998 bytes_in 0 154998 station_ip 5.120.18.235 154998 port 311 154998 unique_id port 154998 remote_ip 10.8.1.106 155000 username alihajmalek 155000 kill_reason Another user logged on this global unique id 155000 mac 155000 bytes_out 0 155000 bytes_in 0 155000 station_ip 5.202.3.239 155000 port 606 155000 unique_id port 155000 remote_ip 10.8.0.202 155004 username alihosseini1 155004 mac 155004 bytes_out 0 155004 bytes_in 0 155004 station_ip 5.120.18.235 155004 port 621 155004 unique_id port 155004 remote_ip 10.8.0.166 155009 username godarzi 155009 kill_reason Another user logged on this global unique id 155009 mac 155009 bytes_out 0 155009 bytes_in 0 155009 station_ip 5.202.24.27 155009 port 612 155009 unique_id port 155010 username zotaher 155010 mac 155010 bytes_out 0 155010 bytes_in 0 155010 station_ip 37.129.142.40 155010 port 618 155010 unique_id port 155013 username vanila 155013 mac 155013 bytes_out 0 155013 bytes_in 0 155013 station_ip 83.122.76.251 155013 port 614 155013 unique_id port 155013 remote_ip 10.8.0.178 155018 username farhad2 155018 kill_reason Another user logged on this global unique id 155018 mac 155018 bytes_out 0 155018 bytes_in 0 155018 station_ip 5.119.31.230 155018 port 619 155018 unique_id port 155020 username khademi 155020 kill_reason Another user logged on this global unique id 155020 mac 155020 bytes_out 0 155020 bytes_in 0 155020 station_ip 37.129.135.128 155020 port 309 155020 unique_id port 155026 username jafari 155026 kill_reason Another user logged on this global unique id 155026 mac 155026 bytes_out 0 155026 bytes_in 0 155026 station_ip 92.114.78.67 155026 port 609 155026 unique_id port 155028 username rezaei 155028 mac 155028 bytes_out 80650 155028 bytes_in 155692 155028 station_ip 5.120.7.208 155028 port 287 155028 unique_id port 155028 remote_ip 10.8.1.58 155029 username mosi 155029 kill_reason Another user logged on this global unique id 155029 mac 155029 bytes_out 0 155029 bytes_in 0 155029 station_ip 151.235.95.177 155029 port 616 155029 unique_id port 155031 username alihosseini1 155031 mac 155031 bytes_out 0 155031 bytes_in 0 155031 station_ip 5.120.18.235 155031 port 557 155031 unique_id port 155031 remote_ip 10.8.0.166 155039 username alihosseini1 155039 mac 155039 bytes_out 0 155039 bytes_in 0 155039 station_ip 5.120.18.235 155039 port 287 155039 unique_id port 155039 remote_ip 10.8.1.106 155042 username alihosseini1 155042 mac 155042 bytes_out 0 155042 bytes_in 0 155042 station_ip 5.120.18.235 155042 port 618 155042 unique_id port 155042 remote_ip 10.8.0.166 155043 username barzegar 155043 mac 155043 bytes_out 2747 155043 bytes_in 5195 155043 station_ip 5.119.151.160 155043 port 287 155043 unique_id port 155043 remote_ip 10.8.1.174 155045 username alihosseini1 155045 mac 155045 bytes_out 0 155045 bytes_in 0 155045 station_ip 5.120.18.235 155045 port 620 155045 unique_id port 155045 remote_ip 10.8.0.166 155051 username alihosseini1 155051 mac 155051 bytes_out 0 155051 bytes_in 0 155051 station_ip 5.120.18.235 155051 port 311 155051 unique_id port 155051 remote_ip 10.8.1.106 155057 username ahmadi1 155057 mac 155057 bytes_out 0 155057 bytes_in 0 155057 station_ip 113.203.35.106 155057 port 613 155057 unique_id port 155057 remote_ip 10.8.0.250 155061 username barzegar 155061 mac 155061 bytes_out 22698 155061 bytes_in 58493 155061 station_ip 5.119.151.160 155061 port 287 155061 unique_id port 154999 port 619 154999 unique_id port 154999 remote_ip 10.8.0.250 155001 username mosi 155001 kill_reason Another user logged on this global unique id 155001 mac 155001 bytes_out 0 155001 bytes_in 0 155001 station_ip 151.235.95.177 155001 port 616 155001 unique_id port 155002 username mehdizare 155002 kill_reason Another user logged on this global unique id 155002 mac 155002 bytes_out 0 155002 bytes_in 0 155002 station_ip 5.120.191.154 155002 port 597 155002 unique_id port 155002 remote_ip 10.8.0.90 155003 username fezealinaghi 155003 mac 155003 bytes_out 0 155003 bytes_in 0 155003 station_ip 37.129.83.90 155003 port 610 155003 unique_id port 155003 remote_ip 10.8.0.78 155005 username jafari 155005 kill_reason Another user logged on this global unique id 155005 mac 155005 bytes_out 0 155005 bytes_in 0 155005 station_ip 92.114.78.67 155005 port 609 155005 unique_id port 155006 username alihosseini1 155006 mac 155006 bytes_out 0 155006 bytes_in 0 155006 station_ip 5.120.18.235 155006 port 311 155006 unique_id port 155006 remote_ip 10.8.1.106 155008 username farhad2 155008 kill_reason Another user logged on this global unique id 155008 mac 155008 bytes_out 0 155008 bytes_in 0 155008 station_ip 5.119.31.230 155008 port 619 155008 unique_id port 155008 remote_ip 10.8.0.190 155011 username barzegar 155011 mac 155011 bytes_out 0 155011 bytes_in 0 155011 station_ip 5.119.151.160 155011 port 610 155011 unique_id port 155011 remote_ip 10.8.0.234 155012 username sedighe 155012 mac 155012 bytes_out 0 155012 bytes_in 0 155012 station_ip 83.122.55.177 155012 port 620 155012 unique_id port 155012 remote_ip 10.8.0.146 155015 username mohammadjavad 155015 mac 155015 bytes_out 0 155015 bytes_in 0 155015 station_ip 83.123.131.51 155015 port 615 155015 unique_id port 155019 username zotaher 155019 mac 155019 bytes_out 0 155019 bytes_in 0 155019 station_ip 37.129.142.40 155019 port 620 155019 unique_id port 155019 remote_ip 10.8.0.194 155021 username alihosseini1 155021 mac 155021 bytes_out 0 155021 bytes_in 0 155021 station_ip 5.120.18.235 155021 port 615 155021 unique_id port 155021 remote_ip 10.8.0.166 155023 username forozandeh1 155023 mac 155023 bytes_out 0 155023 bytes_in 0 155023 station_ip 83.122.169.207 155023 port 610 155023 unique_id port 155023 remote_ip 10.8.0.130 155027 username alihosseini1 155027 mac 155027 bytes_out 0 155027 bytes_in 0 155027 station_ip 5.120.18.235 155027 port 610 155027 unique_id port 155027 remote_ip 10.8.0.166 155030 username hosseine 155030 mac 155030 bytes_out 0 155030 bytes_in 0 155030 station_ip 37.129.49.150 155030 port 557 155030 unique_id port 155030 remote_ip 10.8.0.238 155036 username barzegar 155036 mac 155036 bytes_out 16400 155036 bytes_in 34696 155036 station_ip 5.119.151.160 155036 port 287 155036 unique_id port 155036 remote_ip 10.8.1.174 155037 username ahmadi1 155037 mac 155037 bytes_out 0 155037 bytes_in 0 155037 station_ip 113.203.35.106 155037 port 613 155037 unique_id port 155037 remote_ip 10.8.0.250 155040 username farhad2 155040 kill_reason Another user logged on this global unique id 155040 mac 155040 bytes_out 0 155040 bytes_in 0 155040 station_ip 5.119.31.230 155040 port 619 155040 unique_id port 155044 username mosi 155044 mac 155044 bytes_out 0 155044 bytes_in 0 155044 station_ip 151.235.95.177 155044 port 616 155044 unique_id port 155046 username ahmadi1 155046 mac 155046 bytes_out 0 155046 bytes_in 0 155046 station_ip 113.203.35.106 155038 port 557 155038 unique_id port 155038 remote_ip 10.8.0.110 155041 username jafari 155041 kill_reason Another user logged on this global unique id 155041 mac 155041 bytes_out 0 155041 bytes_in 0 155041 station_ip 92.114.78.67 155041 port 609 155041 unique_id port 155047 username ahmadi1 155047 mac 155047 bytes_out 0 155047 bytes_in 0 155047 station_ip 113.203.35.106 155047 port 616 155047 unique_id port 155047 remote_ip 10.8.0.250 155049 username vanila 155049 mac 155049 bytes_out 0 155049 bytes_in 0 155049 station_ip 83.122.76.251 155049 port 615 155049 unique_id port 155049 remote_ip 10.8.0.178 155050 username khademi 155050 kill_reason Another user logged on this global unique id 155050 mac 155050 bytes_out 0 155050 bytes_in 0 155050 station_ip 37.129.135.128 155050 port 309 155050 unique_id port 155052 username mohammadjavad 155052 mac 155052 bytes_out 0 155052 bytes_in 0 155052 station_ip 83.123.67.106 155052 port 613 155052 unique_id port 155052 remote_ip 10.8.0.142 155059 username alihosseini1 155059 mac 155059 bytes_out 0 155059 bytes_in 0 155059 station_ip 5.120.18.235 155059 port 311 155059 unique_id port 155059 remote_ip 10.8.1.106 155060 username alihosseini1 155060 mac 155060 bytes_out 0 155060 bytes_in 0 155060 station_ip 5.120.18.235 155060 port 311 155060 unique_id port 155060 remote_ip 10.8.1.106 155074 username farhad2 155074 mac 155074 bytes_out 0 155074 bytes_in 0 155074 station_ip 5.119.31.230 155074 port 619 155074 unique_id port 155076 username ayobi 155076 kill_reason Another user logged on this global unique id 155076 mac 155076 bytes_out 0 155076 bytes_in 0 155076 station_ip 37.27.4.94 155076 port 598 155076 unique_id port 155077 username jafari 155077 mac 155077 bytes_out 0 155077 bytes_in 0 155077 station_ip 92.114.78.67 155077 port 609 155077 unique_id port 155082 username aminvpn 155082 mac 155082 bytes_out 0 155082 bytes_in 0 155082 station_ip 5.120.35.70 155082 port 610 155082 unique_id port 155082 remote_ip 10.8.0.14 155083 username alihosseini1 155083 mac 155083 bytes_out 0 155083 bytes_in 0 155083 station_ip 5.120.18.235 155083 port 609 155083 unique_id port 155083 remote_ip 10.8.0.166 155085 username aminvpn 155085 mac 155085 bytes_out 0 155085 bytes_in 0 155085 station_ip 5.120.35.70 155085 port 609 155085 unique_id port 155085 remote_ip 10.8.0.14 155087 username aminvpn 155087 mac 155087 bytes_out 0 155087 bytes_in 0 155087 station_ip 83.122.34.149 155087 port 557 155087 unique_id port 155087 remote_ip 10.8.0.14 155092 username tahmasebi 155092 mac 155092 bytes_out 30911 155092 bytes_in 62365 155092 station_ip 5.119.214.117 155092 port 287 155092 unique_id port 155092 remote_ip 10.8.1.90 155095 username aminvpn 155095 mac 155095 bytes_out 0 155095 bytes_in 0 155095 station_ip 5.120.35.70 155095 port 613 155095 unique_id port 155095 remote_ip 10.8.0.14 155096 username aminvpn 155096 mac 155096 bytes_out 0 155096 bytes_in 0 155096 station_ip 83.122.34.149 155096 port 557 155096 unique_id port 155096 remote_ip 10.8.0.14 155097 username aminvpn 155097 mac 155097 bytes_out 0 155097 bytes_in 0 155097 station_ip 5.120.35.70 155097 port 614 155097 unique_id port 155097 remote_ip 10.8.0.14 155103 username ayobi 155103 kill_reason Another user logged on this global unique id 155103 mac 155103 bytes_out 0 155103 bytes_in 0 155103 station_ip 37.27.4.94 155103 port 598 155103 unique_id port 155106 username khademi 155046 port 311 155046 unique_id port 155046 remote_ip 10.8.1.10 155048 username meysam 155048 kill_reason Another user logged on this global unique id 155048 mac 155048 bytes_out 0 155048 bytes_in 0 155048 station_ip 5.119.171.125 155048 port 557 155048 unique_id port 155053 username meysam 155053 mac 155053 bytes_out 0 155053 bytes_in 0 155053 station_ip 5.119.171.125 155053 port 557 155053 unique_id port 155054 username farhad2 155054 kill_reason Another user logged on this global unique id 155054 mac 155054 bytes_out 0 155054 bytes_in 0 155054 station_ip 5.119.31.230 155054 port 619 155054 unique_id port 155055 username jafari 155055 kill_reason Another user logged on this global unique id 155055 mac 155055 bytes_out 0 155055 bytes_in 0 155055 station_ip 92.114.78.67 155055 port 609 155055 unique_id port 155056 username kalantary 155056 mac 155056 bytes_out 651624 155056 bytes_in 5708033 155056 station_ip 83.122.33.203 155056 port 557 155056 unique_id port 155056 remote_ip 10.8.0.98 155058 username ahmadi1 155058 mac 155058 bytes_out 0 155058 bytes_in 0 155058 station_ip 113.203.35.106 155058 port 557 155058 unique_id port 155058 remote_ip 10.8.0.250 155062 username mehdizare 155062 mac 155062 bytes_out 0 155062 bytes_in 0 155062 station_ip 5.120.191.154 155062 port 597 155062 unique_id port 155063 username aminvpn 155063 mac 155063 bytes_out 1990464 155063 bytes_in 21202762 155063 station_ip 37.129.10.99 155063 port 553 155063 unique_id port 155063 remote_ip 10.8.0.14 155064 username barzegar 155064 mac 155064 bytes_out 0 155064 bytes_in 0 155064 station_ip 5.119.151.160 155064 port 553 155064 unique_id port 155064 remote_ip 10.8.0.234 155066 username aminvpn 155066 mac 155066 bytes_out 0 155066 bytes_in 0 155066 station_ip 83.122.34.149 155066 port 597 155066 unique_id port 155066 remote_ip 10.8.0.14 155067 username aminvpn 155067 mac 155067 bytes_out 0 155067 bytes_in 0 155067 station_ip 37.129.10.99 155067 port 553 155067 unique_id port 155067 remote_ip 10.8.0.14 155069 username aminvpn 155069 mac 155069 bytes_out 0 155069 bytes_in 0 155069 station_ip 83.122.34.149 155069 port 557 155069 unique_id port 155069 remote_ip 10.8.0.14 155071 username jafari 155071 kill_reason Another user logged on this global unique id 155071 mac 155071 bytes_out 0 155071 bytes_in 0 155071 station_ip 92.114.78.67 155071 port 609 155071 unique_id port 155072 username khademi 155072 kill_reason Another user logged on this global unique id 155072 mac 155072 bytes_out 0 155072 bytes_in 0 155072 station_ip 37.129.135.128 155072 port 309 155072 unique_id port 155073 username kamali2 155073 mac 155073 bytes_out 0 155073 bytes_in 0 155073 station_ip 5.120.46.60 155073 port 610 155073 unique_id port 155073 remote_ip 10.8.0.214 155080 username hassan 155080 mac 155080 bytes_out 1339975 155080 bytes_in 3546183 155080 station_ip 5.119.30.77 155080 port 298 155080 unique_id port 155080 remote_ip 10.8.1.138 155081 username aminvpn 155081 mac 155081 bytes_out 0 155081 bytes_in 0 155081 station_ip 83.122.34.149 155081 port 557 155081 unique_id port 155081 remote_ip 10.8.0.14 155086 username farhad2 155086 mac 155086 bytes_out 792725 155086 bytes_in 7067797 155086 station_ip 5.119.162.43 155086 port 311 155086 unique_id port 155086 remote_ip 10.8.1.222 155088 username khademi 155088 kill_reason Another user logged on this global unique id 155088 mac 155088 bytes_out 0 155088 bytes_in 0 155088 station_ip 37.129.135.128 155088 port 309 155061 remote_ip 10.8.1.174 155065 username alihosseini1 155065 mac 155065 bytes_out 0 155065 bytes_in 0 155065 station_ip 5.120.18.235 155065 port 557 155065 unique_id port 155065 remote_ip 10.8.0.166 155068 username ahmadi1 155068 mac 155068 bytes_out 0 155068 bytes_in 0 155068 station_ip 113.203.35.106 155068 port 311 155068 unique_id port 155068 remote_ip 10.8.1.10 155070 username aminvpn 155070 mac 155070 bytes_out 0 155070 bytes_in 0 155070 station_ip 37.129.10.99 155070 port 553 155070 unique_id port 155070 remote_ip 10.8.0.14 155075 username alihosseini1 155075 mac 155075 bytes_out 0 155075 bytes_in 0 155075 station_ip 5.120.18.235 155075 port 287 155075 unique_id port 155075 remote_ip 10.8.1.106 155078 username barzegar 155078 mac 155078 bytes_out 0 155078 bytes_in 0 155078 station_ip 5.119.151.160 155078 port 610 155078 unique_id port 155078 remote_ip 10.8.0.234 155079 username barzegar 155079 mac 155079 bytes_out 0 155079 bytes_in 0 155079 station_ip 5.119.151.160 155079 port 287 155079 unique_id port 155079 remote_ip 10.8.1.174 155084 username aminvpn 155084 mac 155084 bytes_out 0 155084 bytes_in 0 155084 station_ip 83.122.34.149 155084 port 557 155084 unique_id port 155084 remote_ip 10.8.0.14 155089 username aminvpn 155089 mac 155089 bytes_out 0 155089 bytes_in 0 155089 station_ip 5.120.35.70 155089 port 609 155089 unique_id port 155089 remote_ip 10.8.0.14 155090 username fezealinaghi 155090 mac 155090 bytes_out 0 155090 bytes_in 0 155090 station_ip 83.123.185.14 155090 port 614 155090 unique_id port 155090 remote_ip 10.8.0.78 155098 username tahmasebi 155098 mac 155098 bytes_out 6853 155098 bytes_in 12734 155098 station_ip 5.119.214.117 155098 port 298 155098 unique_id port 155098 remote_ip 10.8.1.90 155099 username aminvpn 155099 mac 155099 bytes_out 0 155099 bytes_in 0 155099 station_ip 83.122.34.149 155099 port 557 155099 unique_id port 155099 remote_ip 10.8.0.14 155101 username godarzi 155101 mac 155101 bytes_out 0 155101 bytes_in 0 155101 station_ip 5.202.24.27 155101 port 612 155101 unique_id port 155104 username farhad2 155104 mac 155104 bytes_out 0 155104 bytes_in 0 155104 station_ip 5.119.162.43 155104 port 612 155104 unique_id port 155104 remote_ip 10.8.0.190 155105 username aminvpn 155105 mac 155105 bytes_out 99177 155105 bytes_in 444755 155105 station_ip 83.122.34.149 155105 port 557 155105 unique_id port 155105 remote_ip 10.8.0.14 155109 username aminvpn 155109 mac 155109 bytes_out 0 155109 bytes_in 0 155109 station_ip 5.120.35.70 155109 port 616 155109 unique_id port 155109 remote_ip 10.8.0.14 155111 username aminvpn 155111 mac 155111 bytes_out 0 155111 bytes_in 0 155111 station_ip 5.120.35.70 155111 port 614 155111 unique_id port 155111 remote_ip 10.8.0.14 155120 username vanila 155120 mac 155120 bytes_out 302114 155120 bytes_in 310064 155120 station_ip 83.123.172.131 155120 port 614 155120 unique_id port 155120 remote_ip 10.8.0.178 155121 username aminvpn 155121 mac 155121 bytes_out 0 155121 bytes_in 0 155121 station_ip 5.120.35.70 155121 port 610 155121 unique_id port 155121 remote_ip 10.8.0.14 155122 username aminvpn 155122 mac 155122 bytes_out 0 155122 bytes_in 0 155122 station_ip 83.122.34.149 155122 port 614 155122 unique_id port 155122 remote_ip 10.8.0.14 155123 username aminvpn 155123 mac 155123 bytes_out 0 155123 bytes_in 0 155088 unique_id port 155091 username aminvpn 155091 mac 155091 bytes_out 0 155091 bytes_in 0 155091 station_ip 83.122.34.149 155091 port 557 155091 unique_id port 155091 remote_ip 10.8.0.14 155093 username aminvpn 155093 mac 155093 bytes_out 0 155093 bytes_in 0 155093 station_ip 5.120.35.70 155093 port 613 155093 unique_id port 155093 remote_ip 10.8.0.14 155094 username aminvpn 155094 mac 155094 bytes_out 0 155094 bytes_in 0 155094 station_ip 83.122.34.149 155094 port 557 155094 unique_id port 155094 remote_ip 10.8.0.14 155100 username aminvpn 155100 mac 155100 bytes_out 0 155100 bytes_in 0 155100 station_ip 5.120.35.70 155100 port 615 155100 unique_id port 155100 remote_ip 10.8.0.14 155102 username alihosseini1 155102 mac 155102 bytes_out 6204 155102 bytes_in 10019 155102 station_ip 5.120.18.235 155102 port 311 155102 unique_id port 155102 remote_ip 10.8.1.106 155107 username tahmasebi 155107 mac 155107 bytes_out 0 155107 bytes_in 0 155107 station_ip 5.119.214.117 155107 port 298 155107 unique_id port 155107 remote_ip 10.8.1.90 155110 username aminvpn 155110 mac 155110 bytes_out 0 155110 bytes_in 0 155110 station_ip 83.122.34.149 155110 port 557 155110 unique_id port 155110 remote_ip 10.8.0.14 155114 username aminvpn 155114 mac 155114 bytes_out 0 155114 bytes_in 0 155114 station_ip 5.120.35.70 155114 port 610 155114 unique_id port 155114 remote_ip 10.8.0.14 155115 username aminvpn 155115 mac 155115 bytes_out 0 155115 bytes_in 0 155115 station_ip 83.122.34.149 155115 port 619 155115 unique_id port 155115 remote_ip 10.8.0.14 155118 username aminvpn 155118 mac 155118 bytes_out 0 155118 bytes_in 0 155118 station_ip 5.120.35.70 155118 port 610 155118 unique_id port 155118 remote_ip 10.8.0.14 155124 username aminvpn 155124 mac 155124 bytes_out 0 155124 bytes_in 0 155124 station_ip 83.122.34.149 155124 port 614 155124 unique_id port 155124 remote_ip 10.8.0.14 155125 username aminvpn 155125 mac 155125 bytes_out 0 155125 bytes_in 0 155125 station_ip 5.120.35.70 155125 port 610 155125 unique_id port 155125 remote_ip 10.8.0.14 155127 username kamali2 155127 mac 155127 bytes_out 161332 155127 bytes_in 389659 155127 station_ip 5.120.46.60 155127 port 553 155127 unique_id port 155127 remote_ip 10.8.0.214 155131 username aminvpn 155131 mac 155131 bytes_out 0 155131 bytes_in 0 155131 station_ip 83.122.34.149 155131 port 553 155131 unique_id port 155131 remote_ip 10.8.0.14 155135 username aminvpn 155135 mac 155135 bytes_out 0 155135 bytes_in 0 155135 station_ip 83.122.34.149 155135 port 613 155135 unique_id port 155135 remote_ip 10.8.0.14 155138 username farhad2 155138 mac 155138 bytes_out 0 155138 bytes_in 0 155138 station_ip 5.119.162.43 155138 port 612 155138 unique_id port 155138 remote_ip 10.8.0.190 155140 username aminvpn 155140 mac 155140 bytes_out 0 155140 bytes_in 0 155140 station_ip 83.122.34.149 155140 port 612 155140 unique_id port 155140 remote_ip 10.8.0.14 155144 username aminvpn 155144 mac 155144 bytes_out 0 155144 bytes_in 0 155144 station_ip 5.120.35.70 155144 port 612 155144 unique_id port 155144 remote_ip 10.8.0.14 155149 username aminvpn 155149 mac 155149 bytes_out 0 155149 bytes_in 0 155149 station_ip 83.122.34.149 155149 port 619 155149 unique_id port 155149 remote_ip 10.8.0.14 155151 username rahim 155151 mac 155151 bytes_out 0 155151 bytes_in 0 155106 kill_reason Another user logged on this global unique id 155106 mac 155106 bytes_out 0 155106 bytes_in 0 155106 station_ip 37.129.135.128 155106 port 309 155106 unique_id port 155108 username forozandeh1 155108 mac 155108 bytes_out 432963 155108 bytes_in 1651713 155108 station_ip 113.203.51.170 155108 port 614 155108 unique_id port 155108 remote_ip 10.8.0.130 155112 username fezealinaghi 155112 mac 155112 bytes_out 0 155112 bytes_in 0 155112 station_ip 83.123.185.14 155112 port 610 155112 unique_id port 155112 remote_ip 10.8.0.78 155113 username aminvpn 155113 mac 155113 bytes_out 0 155113 bytes_in 0 155113 station_ip 83.122.34.149 155113 port 616 155113 unique_id port 155113 remote_ip 10.8.0.14 155116 username aminvpn 155116 mac 155116 bytes_out 0 155116 bytes_in 0 155116 station_ip 5.120.35.70 155116 port 610 155116 unique_id port 155116 remote_ip 10.8.0.14 155117 username aminvpn 155117 mac 155117 bytes_out 0 155117 bytes_in 0 155117 station_ip 83.122.34.149 155117 port 619 155117 unique_id port 155117 remote_ip 10.8.0.14 155119 username aminvpn 155119 mac 155119 bytes_out 0 155119 bytes_in 0 155119 station_ip 83.122.34.149 155119 port 619 155119 unique_id port 155119 remote_ip 10.8.0.14 155126 username aminvpn 155126 mac 155126 bytes_out 0 155126 bytes_in 0 155126 station_ip 83.122.34.149 155126 port 614 155126 unique_id port 155126 remote_ip 10.8.0.14 155130 username alihosseini1 155130 mac 155130 bytes_out 28878 155130 bytes_in 66997 155130 station_ip 5.120.18.235 155130 port 298 155130 unique_id port 155130 remote_ip 10.8.1.106 155132 username sedighe 155132 mac 155132 bytes_out 0 155132 bytes_in 0 155132 station_ip 83.122.114.169 155132 port 613 155132 unique_id port 155132 remote_ip 10.8.0.146 155134 username jafari 155134 kill_reason Another user logged on this global unique id 155134 mac 155134 bytes_out 0 155134 bytes_in 0 155134 station_ip 92.114.78.67 155134 port 557 155134 unique_id port 155134 remote_ip 10.8.0.242 155136 username aminvpn 155136 mac 155136 bytes_out 0 155136 bytes_in 0 155136 station_ip 5.120.35.70 155136 port 619 155136 unique_id port 155136 remote_ip 10.8.0.14 155137 username aminvpn 155137 mac 155137 bytes_out 0 155137 bytes_in 0 155137 station_ip 83.122.34.149 155137 port 613 155137 unique_id port 155137 remote_ip 10.8.0.14 155139 username aminvpn 155139 mac 155139 bytes_out 0 155139 bytes_in 0 155139 station_ip 5.120.35.70 155139 port 619 155139 unique_id port 155139 remote_ip 10.8.0.14 155142 username aminvpn 155142 mac 155142 bytes_out 0 155142 bytes_in 0 155142 station_ip 5.120.35.70 155142 port 619 155142 unique_id port 155142 remote_ip 10.8.0.14 155143 username aminvpn 155143 mac 155143 bytes_out 0 155143 bytes_in 0 155143 station_ip 83.122.34.149 155143 port 597 155143 unique_id port 155143 remote_ip 10.8.0.14 155145 username alihajmalek 155145 mac 155145 bytes_out 0 155145 bytes_in 0 155145 station_ip 5.202.3.239 155145 port 606 155145 unique_id port 155148 username mehdizare 155148 mac 155148 bytes_out 9679 155148 bytes_in 17304 155148 station_ip 5.120.191.154 155148 port 298 155148 unique_id port 155148 remote_ip 10.8.1.42 155152 username aminvpn 155152 mac 155152 bytes_out 0 155152 bytes_in 0 155152 station_ip 5.120.35.70 155152 port 606 155152 unique_id port 155152 remote_ip 10.8.0.14 155156 username rahim 155156 mac 155156 bytes_out 0 155156 bytes_in 0 155123 station_ip 5.120.35.70 155123 port 610 155123 unique_id port 155123 remote_ip 10.8.0.14 155128 username mirzaei 155128 kill_reason Another user logged on this global unique id 155128 mac 155128 bytes_out 0 155128 bytes_in 0 155128 station_ip 5.119.233.107 155128 port 611 155128 unique_id port 155129 username aminvpn 155129 mac 155129 bytes_out 0 155129 bytes_in 0 155129 station_ip 5.120.35.70 155129 port 610 155129 unique_id port 155129 remote_ip 10.8.0.14 155133 username aminvpn 155133 mac 155133 bytes_out 0 155133 bytes_in 0 155133 station_ip 5.120.35.70 155133 port 619 155133 unique_id port 155133 remote_ip 10.8.0.14 155141 username mehdizare 155141 mac 155141 bytes_out 0 155141 bytes_in 0 155141 station_ip 5.120.191.154 155141 port 597 155141 unique_id port 155141 remote_ip 10.8.0.90 155146 username aminvpn 155146 mac 155146 bytes_out 0 155146 bytes_in 0 155146 station_ip 83.122.34.149 155146 port 619 155146 unique_id port 155146 remote_ip 10.8.0.14 155147 username aminvpn 155147 mac 155147 bytes_out 0 155147 bytes_in 0 155147 station_ip 5.120.35.70 155147 port 606 155147 unique_id port 155147 remote_ip 10.8.0.14 155150 username rahim 155150 mac 155150 bytes_out 4023605 155150 bytes_in 27559070 155150 station_ip 5.120.153.199 155150 port 616 155150 unique_id port 155150 remote_ip 10.8.0.50 155154 username rahim 155154 mac 155154 bytes_out 0 155154 bytes_in 0 155154 station_ip 5.120.153.199 155154 port 606 155154 unique_id port 155154 remote_ip 10.8.0.50 155155 username aminvpn 155155 mac 155155 bytes_out 0 155155 bytes_in 0 155155 station_ip 5.120.35.70 155155 port 619 155155 unique_id port 155155 remote_ip 10.8.0.14 155157 username aminvpn 155157 mac 155157 bytes_out 0 155157 bytes_in 0 155157 station_ip 83.122.34.149 155157 port 616 155157 unique_id port 155157 remote_ip 10.8.0.14 155160 username rahim 155160 mac 155160 bytes_out 0 155160 bytes_in 0 155160 station_ip 5.120.153.199 155160 port 619 155160 unique_id port 155160 remote_ip 10.8.0.50 155161 username aminvpn 155161 mac 155161 bytes_out 0 155161 bytes_in 0 155161 station_ip 83.122.34.149 155161 port 620 155161 unique_id port 155161 remote_ip 10.8.0.14 155164 username aminvpn 155164 mac 155164 bytes_out 0 155164 bytes_in 0 155164 station_ip 5.120.35.70 155164 port 619 155164 unique_id port 155164 remote_ip 10.8.0.14 155169 username aminvpn 155169 mac 155169 bytes_out 0 155169 bytes_in 0 155169 station_ip 5.120.35.70 155169 port 553 155169 unique_id port 155169 remote_ip 10.8.0.14 155171 username kamali2 155171 mac 155171 bytes_out 0 155171 bytes_in 0 155171 station_ip 5.120.46.60 155171 port 614 155171 unique_id port 155171 remote_ip 10.8.0.214 155172 username aminvpn 155172 mac 155172 bytes_out 0 155172 bytes_in 0 155172 station_ip 83.122.34.149 155172 port 597 155172 unique_id port 155172 remote_ip 10.8.0.14 155173 username rahim 155173 kill_reason Maximum number of concurrent logins reached 155173 mac 155173 bytes_out 0 155173 bytes_in 0 155173 station_ip 5.120.153.199 155173 port 313 155173 unique_id port 155175 username rahim 155175 mac 155175 bytes_out 0 155175 bytes_in 0 155175 station_ip 5.120.153.199 155175 port 610 155175 unique_id port 155175 remote_ip 10.8.0.50 155178 username aminvpn 155178 mac 155178 bytes_out 0 155178 bytes_in 0 155178 station_ip 83.122.34.149 155178 port 597 155178 unique_id port 155178 remote_ip 10.8.0.14 155151 station_ip 5.120.153.199 155151 port 616 155151 unique_id port 155151 remote_ip 10.8.0.50 155153 username aminvpn 155153 mac 155153 bytes_out 0 155153 bytes_in 0 155153 station_ip 83.122.34.149 155153 port 616 155153 unique_id port 155153 remote_ip 10.8.0.14 155158 username sedighe 155158 mac 155158 bytes_out 0 155158 bytes_in 0 155158 station_ip 83.123.209.125 155158 port 553 155158 unique_id port 155158 remote_ip 10.8.0.146 155159 username aminvpn 155159 mac 155159 bytes_out 0 155159 bytes_in 0 155159 station_ip 5.120.35.70 155159 port 619 155159 unique_id port 155159 remote_ip 10.8.0.14 155163 username kalantary 155163 mac 155163 bytes_out 0 155163 bytes_in 0 155163 station_ip 83.122.16.135 155163 port 597 155163 unique_id port 155163 remote_ip 10.8.0.98 155166 username rahim 155166 mac 155166 bytes_out 0 155166 bytes_in 0 155166 station_ip 5.120.153.199 155166 port 597 155166 unique_id port 155166 remote_ip 10.8.0.50 155168 username rahim 155168 kill_reason Maximum check online fails reached 155168 mac 155168 bytes_out 0 155168 bytes_in 0 155168 station_ip 5.120.153.199 155168 port 312 155168 unique_id port 155174 username aminvpn 155174 mac 155174 bytes_out 0 155174 bytes_in 0 155174 station_ip 5.120.35.70 155174 port 614 155174 unique_id port 155174 remote_ip 10.8.0.14 155177 username jafari 155177 mac 155177 bytes_out 0 155177 bytes_in 0 155177 station_ip 92.114.78.67 155177 port 557 155177 unique_id port 155185 username farhad2 155185 kill_reason Another user logged on this global unique id 155185 mac 155185 bytes_out 0 155185 bytes_in 0 155185 station_ip 5.119.162.43 155185 port 613 155185 unique_id port 155185 remote_ip 10.8.0.190 155186 username aminvpn 155186 mac 155186 bytes_out 0 155186 bytes_in 0 155186 station_ip 83.122.34.149 155186 port 597 155186 unique_id port 155186 remote_ip 10.8.0.14 155191 username sedighe 155191 mac 155191 bytes_out 0 155191 bytes_in 0 155191 station_ip 83.123.209.125 155191 port 616 155191 unique_id port 155191 remote_ip 10.8.0.146 155192 username fezealinaghi 155192 mac 155192 bytes_out 0 155192 bytes_in 0 155192 station_ip 83.122.98.253 155192 port 606 155192 unique_id port 155192 remote_ip 10.8.0.78 155198 username rahim 155198 mac 155198 bytes_out 0 155198 bytes_in 0 155198 station_ip 5.120.153.199 155198 port 606 155198 unique_id port 155198 remote_ip 10.8.0.50 155202 username rahim 155202 mac 155202 bytes_out 0 155202 bytes_in 0 155202 station_ip 5.120.153.199 155202 port 606 155202 unique_id port 155202 remote_ip 10.8.0.50 155204 username sedighe 155204 mac 155204 bytes_out 0 155204 bytes_in 0 155204 station_ip 83.123.209.125 155204 port 609 155204 unique_id port 155204 remote_ip 10.8.0.146 155205 username barzegar 155205 mac 155205 bytes_out 2265 155205 bytes_in 4654 155205 station_ip 5.119.151.160 155205 port 311 155205 unique_id port 155205 remote_ip 10.8.1.174 155206 username aminvpn 155206 mac 155206 bytes_out 0 155206 bytes_in 0 155206 station_ip 5.120.35.70 155206 port 606 155206 unique_id port 155206 remote_ip 10.8.0.14 155208 username aminvpn 155208 mac 155208 bytes_out 0 155208 bytes_in 0 155208 station_ip 83.122.34.149 155208 port 614 155208 unique_id port 155208 remote_ip 10.8.0.14 155210 username aminvpn 155210 mac 155210 bytes_out 0 155210 bytes_in 0 155210 station_ip 5.120.35.70 155210 port 606 155210 unique_id port 155156 station_ip 5.120.153.199 155156 port 312 155156 unique_id port 155156 remote_ip 10.8.1.126 155162 username alihosseini1 155162 mac 155162 bytes_out 0 155162 bytes_in 0 155162 station_ip 5.120.18.235 155162 port 610 155162 unique_id port 155162 remote_ip 10.8.0.166 155165 username hoorieh 155165 mac 155165 bytes_out 0 155165 bytes_in 0 155165 station_ip 5.119.179.71 155165 port 553 155165 unique_id port 155165 remote_ip 10.8.0.158 155167 username aminvpn 155167 mac 155167 bytes_out 0 155167 bytes_in 0 155167 station_ip 83.122.34.149 155167 port 610 155167 unique_id port 155167 remote_ip 10.8.0.14 155170 username rahim 155170 mac 155170 bytes_out 0 155170 bytes_in 0 155170 station_ip 5.120.153.199 155170 port 313 155170 unique_id port 155170 remote_ip 10.8.1.126 155176 username rahim 155176 kill_reason Maximum check online fails reached 155176 mac 155176 bytes_out 0 155176 bytes_in 0 155176 station_ip 5.120.153.199 155176 port 553 155176 unique_id port 155181 username sabaghnezhad 155181 mac 155181 bytes_out 0 155181 bytes_in 0 155181 station_ip 83.122.7.104 155181 port 609 155181 unique_id port 155181 remote_ip 10.8.0.186 155183 username aminvpn 155183 mac 155183 bytes_out 0 155183 bytes_in 0 155183 station_ip 83.122.34.149 155183 port 597 155183 unique_id port 155183 remote_ip 10.8.0.14 155184 username aminvpn 155184 mac 155184 bytes_out 0 155184 bytes_in 0 155184 station_ip 5.120.35.70 155184 port 609 155184 unique_id port 155184 remote_ip 10.8.0.14 155187 username mohammadjavad 155187 mac 155187 bytes_out 734359 155187 bytes_in 9310245 155187 station_ip 83.122.210.188 155187 port 606 155187 unique_id port 155187 remote_ip 10.8.0.142 155189 username aminvpn 155189 mac 155189 bytes_out 0 155189 bytes_in 0 155189 station_ip 83.122.34.149 155189 port 597 155189 unique_id port 155189 remote_ip 10.8.0.14 155193 username barzegar 155193 mac 155193 bytes_out 1208677 155193 bytes_in 18475790 155193 station_ip 5.119.151.160 155193 port 287 155193 unique_id port 155193 remote_ip 10.8.1.174 155195 username rahim 155195 mac 155195 bytes_out 0 155195 bytes_in 0 155195 station_ip 5.120.153.199 155195 port 557 155195 unique_id port 155195 remote_ip 10.8.0.50 155196 username rezaei 155196 mac 155196 bytes_out 0 155196 bytes_in 0 155196 station_ip 5.120.7.208 155196 port 311 155196 unique_id port 155196 remote_ip 10.8.1.58 155199 username aminvpn 155199 mac 155199 bytes_out 0 155199 bytes_in 0 155199 station_ip 83.122.34.149 155199 port 597 155199 unique_id port 155199 remote_ip 10.8.0.14 155203 username aminvpn 155203 mac 155203 bytes_out 0 155203 bytes_in 0 155203 station_ip 83.122.34.149 155203 port 597 155203 unique_id port 155203 remote_ip 10.8.0.14 155209 username mohammadmahdi 155209 kill_reason Another user logged on this global unique id 155209 mac 155209 bytes_out 0 155209 bytes_in 0 155209 station_ip 5.120.27.157 155209 port 621 155209 unique_id port 155209 remote_ip 10.8.0.54 155212 username aminvpn 155212 mac 155212 bytes_out 0 155212 bytes_in 0 155212 station_ip 83.122.34.149 155212 port 614 155212 unique_id port 155212 remote_ip 10.8.0.14 155213 username aminvpn 155213 mac 155213 bytes_out 0 155213 bytes_in 0 155213 station_ip 5.120.35.70 155213 port 606 155213 unique_id port 155213 remote_ip 10.8.0.14 155217 username barzegar 155217 mac 155217 bytes_out 2785 155217 bytes_in 5166 155217 station_ip 5.119.151.160 155179 username aminvpn 155179 mac 155179 bytes_out 0 155179 bytes_in 0 155179 station_ip 5.120.35.70 155179 port 557 155179 unique_id port 155179 remote_ip 10.8.0.14 155180 username aminvpn 155180 mac 155180 bytes_out 0 155180 bytes_in 0 155180 station_ip 83.122.34.149 155180 port 597 155180 unique_id port 155180 remote_ip 10.8.0.14 155182 username aminvpn 155182 mac 155182 bytes_out 0 155182 bytes_in 0 155182 station_ip 5.120.35.70 155182 port 557 155182 unique_id port 155182 remote_ip 10.8.0.14 155188 username aminvpn 155188 mac 155188 bytes_out 0 155188 bytes_in 0 155188 station_ip 5.120.35.70 155188 port 609 155188 unique_id port 155188 remote_ip 10.8.0.14 155190 username aminvpn 155190 mac 155190 bytes_out 0 155190 bytes_in 0 155190 station_ip 5.120.35.70 155190 port 606 155190 unique_id port 155190 remote_ip 10.8.0.14 155194 username aminvpn 155194 mac 155194 bytes_out 80860 155194 bytes_in 90770 155194 station_ip 83.122.34.149 155194 port 597 155194 unique_id port 155194 remote_ip 10.8.0.14 155197 username aminvpn 155197 mac 155197 bytes_out 0 155197 bytes_in 0 155197 station_ip 5.120.35.70 155197 port 606 155197 unique_id port 155197 remote_ip 10.8.0.14 155200 username rahim 155200 mac 155200 bytes_out 0 155200 bytes_in 0 155200 station_ip 5.120.153.199 155200 port 597 155200 unique_id port 155200 remote_ip 10.8.0.50 155201 username aminvpn 155201 mac 155201 bytes_out 0 155201 bytes_in 0 155201 station_ip 5.120.35.70 155201 port 606 155201 unique_id port 155201 remote_ip 10.8.0.14 155207 username rahim 155207 mac 155207 bytes_out 0 155207 bytes_in 0 155207 station_ip 5.120.153.199 155207 port 609 155207 unique_id port 155207 remote_ip 10.8.0.50 155211 username rahim 155211 mac 155211 bytes_out 0 155211 bytes_in 0 155211 station_ip 5.120.153.199 155211 port 609 155211 unique_id port 155211 remote_ip 10.8.0.50 155216 username aminvpn 155216 mac 155216 bytes_out 0 155216 bytes_in 0 155216 station_ip 83.122.34.149 155216 port 614 155216 unique_id port 155216 remote_ip 10.8.0.14 155218 username rahim 155218 mac 155218 bytes_out 0 155218 bytes_in 0 155218 station_ip 5.120.153.199 155218 port 614 155218 unique_id port 155218 remote_ip 10.8.0.50 155220 username aminvpn 155220 mac 155220 bytes_out 0 155220 bytes_in 0 155220 station_ip 83.122.34.149 155220 port 614 155220 unique_id port 155220 remote_ip 10.8.0.14 155223 username sabaghnezhad 155223 mac 155223 bytes_out 0 155223 bytes_in 0 155223 station_ip 83.122.7.104 155223 port 313 155223 unique_id port 155223 remote_ip 10.8.1.130 155229 username rahim 155229 kill_reason Another user logged on this global unique id 155229 mac 155229 bytes_out 0 155229 bytes_in 0 155229 station_ip 5.120.153.199 155229 port 616 155229 unique_id port 155231 username rahim 155231 kill_reason Another user logged on this global unique id 155231 mac 155231 bytes_out 0 155231 bytes_in 0 155231 station_ip 5.120.153.199 155231 port 616 155231 unique_id port 155234 username fezealinaghi 155234 mac 155234 bytes_out 60246 155234 bytes_in 284455 155234 station_ip 83.122.98.253 155234 port 610 155234 unique_id port 155234 remote_ip 10.8.0.78 155236 username aminvpn 155236 mac 155236 bytes_out 0 155236 bytes_in 0 155236 station_ip 5.120.35.70 155236 port 610 155236 unique_id port 155236 remote_ip 10.8.0.14 155238 username aminvpn 155238 mac 155238 bytes_out 0 155238 bytes_in 0 155210 remote_ip 10.8.0.14 155214 username rahim 155214 mac 155214 bytes_out 0 155214 bytes_in 0 155214 station_ip 5.120.153.199 155214 port 609 155214 unique_id port 155214 remote_ip 10.8.0.50 155215 username rahim 155215 mac 155215 bytes_out 0 155215 bytes_in 0 155215 station_ip 5.120.153.199 155215 port 609 155215 unique_id port 155215 remote_ip 10.8.0.50 155219 username aminvpn 155219 mac 155219 bytes_out 0 155219 bytes_in 0 155219 station_ip 5.120.35.70 155219 port 609 155219 unique_id port 155219 remote_ip 10.8.0.14 155221 username aminvpn 155221 mac 155221 bytes_out 0 155221 bytes_in 0 155221 station_ip 5.120.35.70 155221 port 609 155221 unique_id port 155221 remote_ip 10.8.0.14 155222 username nilufarrajaei 155222 mac 155222 bytes_out 0 155222 bytes_in 0 155222 station_ip 37.129.145.185 155222 port 307 155222 unique_id port 155226 username rahim 155226 mac 155226 bytes_out 0 155226 bytes_in 0 155226 station_ip 5.120.153.199 155226 port 307 155226 unique_id port 155226 remote_ip 10.8.1.126 155227 username aminvpn 155227 mac 155227 bytes_out 0 155227 bytes_in 0 155227 station_ip 5.120.35.70 155227 port 609 155227 unique_id port 155227 remote_ip 10.8.0.14 155230 username mohammadmahdi 155230 mac 155230 bytes_out 0 155230 bytes_in 0 155230 station_ip 5.120.27.157 155230 port 621 155230 unique_id port 155232 username aminvpn 155232 mac 155232 bytes_out 0 155232 bytes_in 0 155232 station_ip 83.122.34.149 155232 port 614 155232 unique_id port 155232 remote_ip 10.8.0.14 155233 username aminvpn 155233 mac 155233 bytes_out 0 155233 bytes_in 0 155233 station_ip 5.120.35.70 155233 port 616 155233 unique_id port 155233 remote_ip 10.8.0.14 155235 username aminvpn 155235 mac 155235 bytes_out 0 155235 bytes_in 0 155235 station_ip 83.122.34.149 155235 port 614 155235 unique_id port 155235 remote_ip 10.8.0.14 155239 username aminvpn 155239 mac 155239 bytes_out 0 155239 bytes_in 0 155239 station_ip 83.122.34.149 155239 port 609 155239 unique_id port 155239 remote_ip 10.8.0.14 155241 username aminvpn 155241 mac 155241 bytes_out 0 155241 bytes_in 0 155241 station_ip 5.120.50.58 155241 port 614 155241 unique_id port 155241 remote_ip 10.8.0.14 155248 username aminvpn 155248 mac 155248 bytes_out 0 155248 bytes_in 0 155248 station_ip 5.120.50.58 155248 port 597 155248 unique_id port 155248 remote_ip 10.8.0.14 155249 username aminvpn 155249 mac 155249 bytes_out 0 155249 bytes_in 0 155249 station_ip 83.122.34.149 155249 port 610 155249 unique_id port 155249 remote_ip 10.8.0.14 155250 username aminvpn 155250 mac 155250 bytes_out 0 155250 bytes_in 0 155250 station_ip 5.120.35.70 155250 port 597 155250 unique_id port 155250 remote_ip 10.8.0.14 155252 username aminvpn 155252 mac 155252 bytes_out 0 155252 bytes_in 0 155252 station_ip 83.122.34.149 155252 port 610 155252 unique_id port 155252 remote_ip 10.8.0.14 155259 username aminvpn 155259 mac 155259 bytes_out 0 155259 bytes_in 0 155259 station_ip 5.120.35.70 155259 port 597 155259 unique_id port 155259 remote_ip 10.8.0.14 155262 username sabaghnezhad 155262 mac 155262 bytes_out 0 155262 bytes_in 0 155262 station_ip 37.129.89.39 155262 port 606 155262 unique_id port 155262 remote_ip 10.8.0.186 155263 username aminvpn 155263 mac 155263 bytes_out 0 155263 bytes_in 0 155263 station_ip 5.120.35.70 155263 port 612 155217 port 311 155217 unique_id port 155217 remote_ip 10.8.1.174 155224 username rahim 155224 mac 155224 bytes_out 289756 155224 bytes_in 2867338 155224 station_ip 5.120.153.199 155224 port 311 155224 unique_id port 155224 remote_ip 10.8.1.126 155225 username aminvpn 155225 mac 155225 bytes_out 0 155225 bytes_in 0 155225 station_ip 83.122.34.149 155225 port 614 155225 unique_id port 155225 remote_ip 10.8.0.14 155228 username tahmasebi 155228 mac 155228 bytes_out 0 155228 bytes_in 0 155228 station_ip 5.119.214.117 155228 port 287 155228 unique_id port 155228 remote_ip 10.8.1.90 155237 username alihosseini1 155237 mac 155237 bytes_out 0 155237 bytes_in 0 155237 station_ip 5.120.52.237 155237 port 609 155237 unique_id port 155237 remote_ip 10.8.0.166 155242 username aminvpn 155242 mac 155242 bytes_out 0 155242 bytes_in 0 155242 station_ip 83.122.34.149 155242 port 610 155242 unique_id port 155242 remote_ip 10.8.0.14 155244 username aminvpn 155244 mac 155244 bytes_out 0 155244 bytes_in 0 155244 station_ip 5.120.50.58 155244 port 610 155244 unique_id port 155244 remote_ip 10.8.0.14 155246 username vanila 155246 mac 155246 bytes_out 0 155246 bytes_in 0 155246 station_ip 83.123.172.131 155246 port 597 155246 unique_id port 155246 remote_ip 10.8.0.178 155255 username jafari 155255 kill_reason Another user logged on this global unique id 155255 mac 155255 bytes_out 0 155255 bytes_in 0 155255 station_ip 92.114.78.67 155255 port 557 155255 unique_id port 155255 remote_ip 10.8.0.242 155260 username alihajmalek 155260 mac 155260 bytes_out 0 155260 bytes_in 0 155260 station_ip 5.202.3.239 155260 port 612 155260 unique_id port 155260 remote_ip 10.8.0.202 155261 username aminvpn 155261 mac 155261 bytes_out 0 155261 bytes_in 0 155261 station_ip 83.122.34.149 155261 port 609 155261 unique_id port 155261 remote_ip 10.8.0.14 155265 username aminvpn 155265 mac 155265 bytes_out 0 155265 bytes_in 0 155265 station_ip 83.122.34.149 155265 port 609 155265 unique_id port 155265 remote_ip 10.8.0.14 155266 username aminvpn 155266 mac 155266 bytes_out 0 155266 bytes_in 0 155266 station_ip 5.120.35.70 155266 port 612 155266 unique_id port 155266 remote_ip 10.8.0.14 155267 username aminvpn 155267 mac 155267 bytes_out 0 155267 bytes_in 0 155267 station_ip 83.122.34.149 155267 port 614 155267 unique_id port 155267 remote_ip 10.8.0.14 155277 username aminvpn 155277 mac 155277 bytes_out 0 155277 bytes_in 0 155277 station_ip 83.122.34.149 155277 port 609 155277 unique_id port 155277 remote_ip 10.8.0.14 155279 username sedighe 155279 mac 155279 bytes_out 0 155279 bytes_in 0 155279 station_ip 83.123.209.125 155279 port 610 155279 unique_id port 155279 remote_ip 10.8.0.146 155280 username aminvpn 155280 mac 155280 bytes_out 0 155280 bytes_in 0 155280 station_ip 5.120.35.70 155280 port 597 155280 unique_id port 155280 remote_ip 10.8.0.14 155282 username aminvpn 155282 mac 155282 bytes_out 0 155282 bytes_in 0 155282 station_ip 5.120.35.70 155282 port 597 155282 unique_id port 155282 remote_ip 10.8.0.14 155284 username aminvpn 155284 mac 155284 bytes_out 0 155284 bytes_in 0 155284 station_ip 83.122.34.149 155284 port 606 155284 unique_id port 155284 remote_ip 10.8.0.14 155287 username aminvpn 155287 mac 155287 bytes_out 0 155287 bytes_in 0 155287 station_ip 83.122.34.149 155287 port 606 155287 unique_id port 155287 remote_ip 10.8.0.14 155238 station_ip 5.120.50.58 155238 port 614 155238 unique_id port 155238 remote_ip 10.8.0.14 155240 username aminvpn 155240 mac 155240 bytes_out 0 155240 bytes_in 0 155240 station_ip 5.120.35.70 155240 port 610 155240 unique_id port 155240 remote_ip 10.8.0.14 155243 username aminvpn 155243 mac 155243 bytes_out 0 155243 bytes_in 0 155243 station_ip 5.120.35.70 155243 port 614 155243 unique_id port 155243 remote_ip 10.8.0.14 155245 username aminvpn 155245 mac 155245 bytes_out 0 155245 bytes_in 0 155245 station_ip 83.122.34.149 155245 port 614 155245 unique_id port 155245 remote_ip 10.8.0.14 155247 username aminvpn 155247 mac 155247 bytes_out 0 155247 bytes_in 0 155247 station_ip 5.120.35.70 155247 port 610 155247 unique_id port 155247 remote_ip 10.8.0.14 155251 username godarzi 155251 mac 155251 bytes_out 0 155251 bytes_in 0 155251 station_ip 5.119.242.251 155251 port 609 155251 unique_id port 155251 remote_ip 10.8.0.174 155253 username sedighe 155253 mac 155253 bytes_out 0 155253 bytes_in 0 155253 station_ip 83.123.209.125 155253 port 606 155253 unique_id port 155253 remote_ip 10.8.0.146 155254 username aminvpn 155254 mac 155254 bytes_out 0 155254 bytes_in 0 155254 station_ip 5.120.35.70 155254 port 597 155254 unique_id port 155254 remote_ip 10.8.0.14 155256 username khademi 155256 kill_reason Another user logged on this global unique id 155256 mac 155256 bytes_out 0 155256 bytes_in 0 155256 station_ip 37.129.135.128 155256 port 309 155256 unique_id port 155257 username aminvpn 155257 mac 155257 bytes_out 0 155257 bytes_in 0 155257 station_ip 83.122.34.149 155257 port 610 155257 unique_id port 155257 remote_ip 10.8.0.14 155258 username sedighe 155258 mac 155258 bytes_out 0 155258 bytes_in 0 155258 station_ip 83.123.209.125 155258 port 609 155258 unique_id port 155258 remote_ip 10.8.0.146 155264 username farhad2 155264 kill_reason Another user logged on this global unique id 155264 mac 155264 bytes_out 0 155264 bytes_in 0 155264 station_ip 5.119.162.43 155264 port 613 155264 unique_id port 155268 username aminvpn 155268 mac 155268 bytes_out 0 155268 bytes_in 0 155268 station_ip 5.120.35.70 155268 port 612 155268 unique_id port 155268 remote_ip 10.8.0.14 155269 username kalantary 155269 mac 155269 bytes_out 152845 155269 bytes_in 535635 155269 station_ip 83.122.80.11 155269 port 597 155269 unique_id port 155269 remote_ip 10.8.0.98 155272 username nilufarrajaei 155272 kill_reason Another user logged on this global unique id 155272 mac 155272 bytes_out 0 155272 bytes_in 0 155272 station_ip 83.123.177.124 155272 port 287 155272 unique_id port 155272 remote_ip 10.8.1.166 155274 username farhad2 155274 mac 155274 bytes_out 0 155274 bytes_in 0 155274 station_ip 5.119.162.43 155274 port 613 155274 unique_id port 155278 username fezealinaghi 155278 mac 155278 bytes_out 0 155278 bytes_in 0 155278 station_ip 83.122.225.100 155278 port 606 155278 unique_id port 155278 remote_ip 10.8.0.78 155281 username aminvpn 155281 mac 155281 bytes_out 0 155281 bytes_in 0 155281 station_ip 83.122.34.149 155281 port 606 155281 unique_id port 155281 remote_ip 10.8.0.14 155285 username jafari 155285 mac 155285 bytes_out 0 155285 bytes_in 0 155285 station_ip 92.114.78.67 155285 port 557 155285 unique_id port 155286 username aminvpn 155286 mac 155286 bytes_out 0 155286 bytes_in 0 155286 station_ip 5.120.35.70 155286 port 597 155286 unique_id port 155263 unique_id port 155263 remote_ip 10.8.0.14 155270 username aminvpn 155270 mac 155270 bytes_out 0 155270 bytes_in 0 155270 station_ip 83.122.34.149 155270 port 614 155270 unique_id port 155270 remote_ip 10.8.0.14 155271 username aminvpn 155271 mac 155271 bytes_out 0 155271 bytes_in 0 155271 station_ip 5.120.35.70 155271 port 597 155271 unique_id port 155271 remote_ip 10.8.0.14 155273 username godarzi 155273 mac 155273 bytes_out 155414 155273 bytes_in 1195539 155273 station_ip 5.119.242.251 155273 port 609 155273 unique_id port 155273 remote_ip 10.8.0.174 155275 username aminvpn 155275 mac 155275 bytes_out 0 155275 bytes_in 0 155275 station_ip 83.122.34.149 155275 port 612 155275 unique_id port 155275 remote_ip 10.8.0.14 155276 username aminvpn 155276 mac 155276 bytes_out 0 155276 bytes_in 0 155276 station_ip 5.120.35.70 155276 port 597 155276 unique_id port 155276 remote_ip 10.8.0.14 155283 username mehdizare 155283 mac 155283 bytes_out 356581 155283 bytes_in 4590844 155283 station_ip 5.120.191.154 155283 port 298 155283 unique_id port 155283 remote_ip 10.8.1.42 155290 username hamidsalari 155290 kill_reason Another user logged on this global unique id 155290 mac 155290 bytes_out 0 155290 bytes_in 0 155290 station_ip 5.119.96.102 155290 port 615 155290 unique_id port 155290 remote_ip 10.8.0.222 155296 username ayobi 155296 kill_reason Another user logged on this global unique id 155296 mac 155296 bytes_out 0 155296 bytes_in 0 155296 station_ip 37.27.4.94 155296 port 598 155296 unique_id port 155298 username farhad2 155298 mac 155298 bytes_out 0 155298 bytes_in 0 155298 station_ip 5.120.75.41 155298 port 612 155298 unique_id port 155298 remote_ip 10.8.0.190 155299 username barzegar 155299 mac 155299 bytes_out 64329 155299 bytes_in 301755 155299 station_ip 5.119.151.160 155299 port 613 155299 unique_id port 155299 remote_ip 10.8.0.234 155303 username vanila 155303 mac 155303 bytes_out 0 155303 bytes_in 0 155303 station_ip 83.123.172.131 155303 port 597 155303 unique_id port 155308 username mansur 155308 kill_reason Another user logged on this global unique id 155308 mac 155308 bytes_out 0 155308 bytes_in 0 155308 station_ip 5.120.37.101 155308 port 597 155308 unique_id port 155308 remote_ip 10.8.0.22 155312 username godarzi 155312 mac 155312 bytes_out 0 155312 bytes_in 0 155312 station_ip 5.119.242.251 155312 port 615 155312 unique_id port 155312 remote_ip 10.8.0.174 155314 username nilufarrajaei 155314 kill_reason Another user logged on this global unique id 155314 mac 155314 bytes_out 0 155314 bytes_in 0 155314 station_ip 83.123.177.124 155314 port 287 155314 unique_id port 155316 username vanila 155316 mac 155316 bytes_out 0 155316 bytes_in 0 155316 station_ip 83.123.172.131 155316 port 606 155316 unique_id port 155316 remote_ip 10.8.0.178 155319 username sabaghnezhad 155319 mac 155319 bytes_out 0 155319 bytes_in 0 155319 station_ip 37.129.89.39 155319 port 612 155319 unique_id port 155319 remote_ip 10.8.0.186 155320 username sekonji3 155320 mac 155320 bytes_out 0 155320 bytes_in 0 155320 station_ip 83.122.31.63 155320 port 606 155320 unique_id port 155320 remote_ip 10.8.0.6 155322 username mansur 155322 kill_reason Another user logged on this global unique id 155322 mac 155322 bytes_out 0 155322 bytes_in 0 155322 station_ip 5.120.37.101 155322 port 597 155322 unique_id port 155326 username alihajmalek 155326 mac 155326 bytes_out 0 155326 bytes_in 0 155326 station_ip 5.202.3.239 155286 remote_ip 10.8.0.14 155288 username aminvpn 155288 mac 155288 bytes_out 0 155288 bytes_in 0 155288 station_ip 5.120.35.70 155288 port 609 155288 unique_id port 155288 remote_ip 10.8.0.14 155291 username vanila 155291 kill_reason Another user logged on this global unique id 155291 mac 155291 bytes_out 0 155291 bytes_in 0 155291 station_ip 83.123.172.131 155291 port 597 155291 unique_id port 155291 remote_ip 10.8.0.178 155292 username godarzi 155292 mac 155292 bytes_out 388661 155292 bytes_in 991917 155292 station_ip 5.119.242.251 155292 port 610 155292 unique_id port 155292 remote_ip 10.8.0.174 155293 username aminvpn 155293 mac 155293 bytes_out 88118 155293 bytes_in 111630 155293 station_ip 83.122.34.149 155293 port 606 155293 unique_id port 155293 remote_ip 10.8.0.14 155295 username barzegar 155295 mac 155295 bytes_out 157494 155295 bytes_in 902341 155295 station_ip 5.119.151.160 155295 port 298 155295 unique_id port 155295 remote_ip 10.8.1.174 155297 username nilufarrajaei 155297 kill_reason Another user logged on this global unique id 155297 mac 155297 bytes_out 0 155297 bytes_in 0 155297 station_ip 83.123.177.124 155297 port 287 155297 unique_id port 155300 username ayobi 155300 kill_reason Another user logged on this global unique id 155300 mac 155300 bytes_out 0 155300 bytes_in 0 155300 station_ip 37.27.4.94 155300 port 598 155300 unique_id port 155302 username ayobi 155302 kill_reason Another user logged on this global unique id 155302 mac 155302 bytes_out 0 155302 bytes_in 0 155302 station_ip 37.27.4.94 155302 port 598 155302 unique_id port 155304 username milan 155304 mac 155304 bytes_out 0 155304 bytes_in 0 155304 station_ip 5.119.176.40 155304 port 606 155304 unique_id port 155305 username farhad2 155305 mac 155305 bytes_out 381983 155305 bytes_in 1174043 155305 station_ip 5.120.75.41 155305 port 613 155305 unique_id port 155305 remote_ip 10.8.0.190 155306 username hamidsalari 155306 mac 155306 bytes_out 0 155306 bytes_in 0 155306 station_ip 5.119.96.102 155306 port 615 155306 unique_id port 155321 username kalantary 155321 mac 155321 bytes_out 969226 155321 bytes_in 12061780 155321 station_ip 83.122.22.207 155321 port 619 155321 unique_id port 155321 remote_ip 10.8.0.98 155323 username kordestani 155323 mac 155323 bytes_out 0 155323 bytes_in 0 155323 station_ip 151.235.97.212 155323 port 311 155323 unique_id port 155323 remote_ip 10.8.1.98 155328 username sekonji3 155328 mac 155328 bytes_out 0 155328 bytes_in 0 155328 station_ip 83.122.31.63 155328 port 606 155328 unique_id port 155328 remote_ip 10.8.0.6 155330 username jafari 155330 mac 155330 bytes_out 0 155330 bytes_in 0 155330 station_ip 92.114.78.67 155330 port 610 155330 unique_id port 155333 username sekonji3 155333 mac 155333 bytes_out 0 155333 bytes_in 0 155333 station_ip 83.122.31.63 155333 port 606 155333 unique_id port 155333 remote_ip 10.8.0.6 155335 username sekonji3 155335 mac 155335 bytes_out 0 155335 bytes_in 0 155335 station_ip 83.122.31.63 155335 port 609 155335 unique_id port 155335 remote_ip 10.8.0.6 155336 username sekonji3 155336 mac 155336 bytes_out 0 155336 bytes_in 0 155336 station_ip 83.122.31.63 155336 port 609 155336 unique_id port 155336 remote_ip 10.8.0.6 155337 username hamidsalari 155337 mac 155337 bytes_out 304157 155337 bytes_in 1139846 155337 station_ip 5.119.226.117 155337 port 613 155337 unique_id port 155337 remote_ip 10.8.0.222 155341 username kordestani 155341 mac 155289 username barzegar 155289 mac 155289 bytes_out 516758 155289 bytes_in 615998 155289 station_ip 5.119.151.160 155289 port 314 155289 unique_id port 155289 remote_ip 10.8.1.174 155294 username fezealinaghi 155294 mac 155294 bytes_out 0 155294 bytes_in 0 155294 station_ip 83.122.225.100 155294 port 613 155294 unique_id port 155294 remote_ip 10.8.0.78 155301 username milan 155301 kill_reason Another user logged on this global unique id 155301 mac 155301 bytes_out 0 155301 bytes_in 0 155301 station_ip 5.119.176.40 155301 port 606 155301 unique_id port 155301 remote_ip 10.8.0.218 155307 username ayobi 155307 kill_reason Another user logged on this global unique id 155307 mac 155307 bytes_out 0 155307 bytes_in 0 155307 station_ip 37.27.4.94 155307 port 598 155307 unique_id port 155309 username sekonji3 155309 mac 155309 bytes_out 605398 155309 bytes_in 8120579 155309 station_ip 83.122.31.63 155309 port 612 155309 unique_id port 155309 remote_ip 10.8.0.6 155310 username sekonji3 155310 mac 155310 bytes_out 0 155310 bytes_in 0 155310 station_ip 83.122.31.63 155310 port 612 155310 unique_id port 155310 remote_ip 10.8.0.6 155311 username sekonji3 155311 mac 155311 bytes_out 0 155311 bytes_in 0 155311 station_ip 83.122.31.63 155311 port 612 155311 unique_id port 155311 remote_ip 10.8.0.6 155313 username sabaghnezhad 155313 mac 155313 bytes_out 0 155313 bytes_in 0 155313 station_ip 37.129.89.39 155313 port 609 155313 unique_id port 155313 remote_ip 10.8.0.186 155315 username fezealinaghi 155315 mac 155315 bytes_out 480246 155315 bytes_in 5868943 155315 station_ip 83.122.225.100 155315 port 614 155315 unique_id port 155315 remote_ip 10.8.0.78 155317 username jafari 155317 kill_reason Another user logged on this global unique id 155317 mac 155317 bytes_out 0 155317 bytes_in 0 155317 station_ip 92.114.78.67 155317 port 610 155317 unique_id port 155317 remote_ip 10.8.0.242 155318 username sekonji3 155318 mac 155318 bytes_out 0 155318 bytes_in 0 155318 station_ip 83.122.31.63 155318 port 606 155318 unique_id port 155318 remote_ip 10.8.0.6 155324 username barzegar 155324 kill_reason Another user logged on this global unique id 155324 mac 155324 bytes_out 0 155324 bytes_in 0 155324 station_ip 5.119.151.160 155324 port 298 155324 unique_id port 155324 remote_ip 10.8.1.174 155325 username fezealinaghi 155325 mac 155325 bytes_out 13329 155325 bytes_in 18371 155325 station_ip 83.122.225.100 155325 port 311 155325 unique_id port 155325 remote_ip 10.8.1.162 155327 username sedighe 155327 mac 155327 bytes_out 96985 155327 bytes_in 117746 155327 station_ip 83.123.216.189 155327 port 616 155327 unique_id port 155327 remote_ip 10.8.0.146 155331 username mansur 155331 kill_reason Another user logged on this global unique id 155331 mac 155331 bytes_out 0 155331 bytes_in 0 155331 station_ip 5.120.37.101 155331 port 597 155331 unique_id port 155332 username vanila 155332 mac 155332 bytes_out 86288 155332 bytes_in 321326 155332 station_ip 83.123.172.131 155332 port 606 155332 unique_id port 155332 remote_ip 10.8.0.178 155338 username kordestani 155338 mac 155338 bytes_out 0 155338 bytes_in 0 155338 station_ip 151.235.88.82 155338 port 313 155338 unique_id port 155338 remote_ip 10.8.1.98 155339 username barzegar 155339 mac 155339 bytes_out 0 155339 bytes_in 0 155339 station_ip 5.119.151.160 155339 port 298 155339 unique_id port 155343 username mansur 155343 mac 155343 bytes_out 0 155343 bytes_in 0 155343 station_ip 5.120.37.101 155343 port 597 155326 port 557 155326 unique_id port 155326 remote_ip 10.8.0.202 155329 username mansur 155329 kill_reason Another user logged on this global unique id 155329 mac 155329 bytes_out 0 155329 bytes_in 0 155329 station_ip 5.120.37.101 155329 port 597 155329 unique_id port 155334 username rezaei 155334 mac 155334 bytes_out 2676390 155334 bytes_in 27733827 155334 station_ip 5.120.7.208 155334 port 307 155334 unique_id port 155334 remote_ip 10.8.1.58 155340 username sekonji3 155340 mac 155340 bytes_out 0 155340 bytes_in 0 155340 station_ip 83.122.31.63 155340 port 610 155340 unique_id port 155340 remote_ip 10.8.0.6 155344 username mansur 155344 mac 155344 bytes_out 0 155344 bytes_in 0 155344 station_ip 5.120.37.101 155344 port 298 155344 unique_id port 155344 remote_ip 10.8.1.194 155350 username barzegar 155350 mac 155350 bytes_out 1947423 155350 bytes_in 44622901 155350 station_ip 5.120.180.37 155350 port 307 155350 unique_id port 155350 remote_ip 10.8.1.174 155352 username hashtadani4 155352 mac 155352 bytes_out 0 155352 bytes_in 0 155352 station_ip 37.129.71.25 155352 port 614 155352 unique_id port 155352 remote_ip 10.8.0.182 155356 username hashtadani4 155356 mac 155356 bytes_out 0 155356 bytes_in 0 155356 station_ip 37.129.71.25 155356 port 307 155356 unique_id port 155356 remote_ip 10.8.1.142 155357 username sekonji3 155357 mac 155357 bytes_out 0 155357 bytes_in 0 155357 station_ip 83.122.31.63 155357 port 606 155357 unique_id port 155357 remote_ip 10.8.0.6 155359 username vanila 155359 mac 155359 bytes_out 0 155359 bytes_in 0 155359 station_ip 83.123.172.131 155359 port 610 155359 unique_id port 155359 remote_ip 10.8.0.178 155361 username kalantary 155361 mac 155361 bytes_out 346680 155361 bytes_in 875003 155361 station_ip 83.122.39.223 155361 port 597 155361 unique_id port 155361 remote_ip 10.8.0.98 155363 username khademi 155363 kill_reason Another user logged on this global unique id 155363 mac 155363 bytes_out 0 155363 bytes_in 0 155363 station_ip 37.129.135.128 155363 port 309 155363 unique_id port 155365 username barzegar 155365 mac 155365 bytes_out 0 155365 bytes_in 0 155365 station_ip 5.120.180.37 155365 port 298 155365 unique_id port 155365 remote_ip 10.8.1.174 155370 username hashtadani4 155370 mac 155370 bytes_out 0 155370 bytes_in 0 155370 station_ip 37.129.71.25 155370 port 597 155370 unique_id port 155370 remote_ip 10.8.0.182 155377 username fezealinaghi 155377 mac 155377 bytes_out 0 155377 bytes_in 0 155377 station_ip 37.129.173.91 155377 port 606 155377 unique_id port 155377 remote_ip 10.8.0.78 155379 username sekonji3 155379 mac 155379 bytes_out 0 155379 bytes_in 0 155379 station_ip 83.122.31.63 155379 port 606 155379 unique_id port 155379 remote_ip 10.8.0.6 155381 username fezealinaghi 155381 mac 155381 bytes_out 0 155381 bytes_in 0 155381 station_ip 37.129.173.91 155381 port 287 155381 unique_id port 155381 remote_ip 10.8.1.162 155384 username mansur 155384 mac 155384 bytes_out 0 155384 bytes_in 0 155384 station_ip 5.119.212.131 155384 port 613 155384 unique_id port 155386 username hashtadani4 155386 mac 155386 bytes_out 0 155386 bytes_in 0 155386 station_ip 37.129.71.25 155386 port 287 155386 unique_id port 155386 remote_ip 10.8.1.142 155387 username hashtadani4 155387 mac 155387 bytes_out 0 155387 bytes_in 0 155387 station_ip 37.129.71.25 155387 port 613 155387 unique_id port 155387 remote_ip 10.8.0.182 155341 bytes_out 231770 155341 bytes_in 4471391 155341 station_ip 151.235.114.62 155341 port 298 155341 unique_id port 155341 remote_ip 10.8.1.98 155342 username jafari 155342 kill_reason Another user logged on this global unique id 155342 mac 155342 bytes_out 0 155342 bytes_in 0 155342 station_ip 92.114.78.67 155342 port 606 155342 unique_id port 155342 remote_ip 10.8.0.242 155345 username sekonji3 155345 mac 155345 bytes_out 0 155345 bytes_in 0 155345 station_ip 83.122.31.63 155345 port 597 155345 unique_id port 155345 remote_ip 10.8.0.6 155346 username sekonji3 155346 mac 155346 bytes_out 0 155346 bytes_in 0 155346 station_ip 83.122.31.63 155346 port 597 155346 unique_id port 155346 remote_ip 10.8.0.6 155347 username mansur 155347 mac 155347 bytes_out 0 155347 bytes_in 0 155347 station_ip 5.120.37.101 155347 port 614 155347 unique_id port 155347 remote_ip 10.8.0.22 155351 username mohammadjavad 155351 mac 155351 bytes_out 483349 155351 bytes_in 4688099 155351 station_ip 83.122.113.168 155351 port 613 155351 unique_id port 155351 remote_ip 10.8.0.142 155354 username jafari 155354 mac 155354 bytes_out 0 155354 bytes_in 0 155354 station_ip 92.114.78.67 155354 port 606 155354 unique_id port 155362 username barzegar 155362 mac 155362 bytes_out 24327 155362 bytes_in 76105 155362 station_ip 5.120.180.37 155362 port 298 155362 unique_id port 155362 remote_ip 10.8.1.174 155366 username sedighe 155366 mac 155366 bytes_out 801567 155366 bytes_in 9311340 155366 station_ip 83.123.216.189 155366 port 557 155366 unique_id port 155366 remote_ip 10.8.0.146 155368 username hashtadani4 155368 mac 155368 bytes_out 125228 155368 bytes_in 1071636 155368 station_ip 37.129.71.25 155368 port 287 155368 unique_id port 155368 remote_ip 10.8.1.142 155369 username hashtadani4 155369 mac 155369 bytes_out 0 155369 bytes_in 0 155369 station_ip 37.129.71.25 155369 port 287 155369 unique_id port 155369 remote_ip 10.8.1.142 155373 username alikomsari 155373 kill_reason Maximum number of concurrent logins reached 155373 mac 155373 bytes_out 0 155373 bytes_in 0 155373 station_ip 5.120.127.35 155373 port 287 155373 unique_id port 155376 username sekonji3 155376 mac 155376 bytes_out 0 155376 bytes_in 0 155376 station_ip 83.122.31.63 155376 port 610 155376 unique_id port 155376 remote_ip 10.8.0.6 155378 username mansur 155378 kill_reason Another user logged on this global unique id 155378 mac 155378 bytes_out 0 155378 bytes_in 0 155378 station_ip 5.119.212.131 155378 port 613 155378 unique_id port 155380 username vanila 155380 mac 155380 bytes_out 1560012 155380 bytes_in 8190031 155380 station_ip 83.123.172.131 155380 port 614 155380 unique_id port 155380 remote_ip 10.8.0.178 155383 username hashtadani4 155383 mac 155383 bytes_out 0 155383 bytes_in 0 155383 station_ip 37.129.71.25 155383 port 597 155383 unique_id port 155383 remote_ip 10.8.0.182 155385 username hashtadani4 155385 mac 155385 bytes_out 0 155385 bytes_in 0 155385 station_ip 37.129.71.25 155385 port 606 155385 unique_id port 155385 remote_ip 10.8.0.182 155388 username sekonji3 155388 mac 155388 bytes_out 0 155388 bytes_in 0 155388 station_ip 83.122.31.63 155388 port 610 155388 unique_id port 155388 remote_ip 10.8.0.6 155394 username hashtadani4 155394 mac 155394 bytes_out 2323 155394 bytes_in 4600 155394 station_ip 37.129.71.25 155394 port 614 155394 unique_id port 155394 remote_ip 10.8.0.182 155396 username jafari 155396 mac 155396 bytes_out 0 155343 unique_id port 155348 username sekonji3 155348 mac 155348 bytes_out 0 155348 bytes_in 0 155348 station_ip 83.122.31.63 155348 port 597 155348 unique_id port 155348 remote_ip 10.8.0.6 155349 username hashtadani4 155349 mac 155349 bytes_out 0 155349 bytes_in 0 155349 station_ip 37.129.71.25 155349 port 615 155349 unique_id port 155349 remote_ip 10.8.0.182 155353 username nilufarrajaei 155353 kill_reason Another user logged on this global unique id 155353 mac 155353 bytes_out 0 155353 bytes_in 0 155353 station_ip 83.123.177.124 155353 port 287 155353 unique_id port 155355 username sekonji3 155355 mac 155355 bytes_out 0 155355 bytes_in 0 155355 station_ip 83.122.31.63 155355 port 298 155355 unique_id port 155355 remote_ip 10.8.1.238 155358 username forozandeh1 155358 mac 155358 bytes_out 0 155358 bytes_in 0 155358 station_ip 37.129.93.69 155358 port 613 155358 unique_id port 155358 remote_ip 10.8.0.130 155360 username nilufarrajaei 155360 mac 155360 bytes_out 0 155360 bytes_in 0 155360 station_ip 83.123.177.124 155360 port 287 155360 unique_id port 155364 username sekonji3 155364 mac 155364 bytes_out 0 155364 bytes_in 0 155364 station_ip 83.122.31.63 155364 port 606 155364 unique_id port 155364 remote_ip 10.8.0.6 155367 username godarzi 155367 mac 155367 bytes_out 1411611 155367 bytes_in 13058979 155367 station_ip 5.119.242.251 155367 port 597 155367 unique_id port 155367 remote_ip 10.8.0.174 155371 username barzegar 155371 mac 155371 bytes_out 4441 155371 bytes_in 7228 155371 station_ip 5.120.180.37 155371 port 298 155371 unique_id port 155371 remote_ip 10.8.1.174 155372 username hashtadani4 155372 mac 155372 bytes_out 0 155372 bytes_in 0 155372 station_ip 37.129.71.25 155372 port 597 155372 unique_id port 155372 remote_ip 10.8.0.182 155374 username mansur 155374 kill_reason Another user logged on this global unique id 155374 mac 155374 bytes_out 0 155374 bytes_in 0 155374 station_ip 5.119.212.131 155374 port 613 155374 unique_id port 155374 remote_ip 10.8.0.22 155375 username alikomsari 155375 mac 155375 bytes_out 1092170 155375 bytes_in 8692078 155375 station_ip 5.120.127.35 155375 port 557 155375 unique_id port 155375 remote_ip 10.8.0.26 155382 username khalili 155382 kill_reason Another user logged on this global unique id 155382 mac 155382 bytes_out 0 155382 bytes_in 0 155382 station_ip 5.119.196.181 155382 port 595 155382 unique_id port 155382 remote_ip 10.8.0.86 155389 username hashtadani4 155389 mac 155389 bytes_out 0 155389 bytes_in 0 155389 station_ip 37.129.71.25 155389 port 613 155389 unique_id port 155389 remote_ip 10.8.0.182 155390 username hashtadani4 155390 mac 155390 bytes_out 0 155390 bytes_in 0 155390 station_ip 37.129.71.25 155390 port 613 155390 unique_id port 155390 remote_ip 10.8.0.182 155392 username farhad2 155392 mac 155392 bytes_out 0 155392 bytes_in 0 155392 station_ip 5.119.69.63 155392 port 610 155392 unique_id port 155392 remote_ip 10.8.0.190 155393 username farhad2 155393 mac 155393 bytes_out 43035 155393 bytes_in 204506 155393 station_ip 5.119.69.63 155393 port 610 155393 unique_id port 155393 remote_ip 10.8.0.190 155401 username farhad2 155401 mac 155401 bytes_out 0 155401 bytes_in 0 155401 station_ip 5.120.26.60 155401 port 619 155401 unique_id port 155401 remote_ip 10.8.0.190 155402 username hashtadani4 155402 mac 155402 bytes_out 0 155402 bytes_in 0 155402 station_ip 37.129.71.25 155402 port 298 155402 unique_id port 155391 username jafari 155391 kill_reason Another user logged on this global unique id 155391 mac 155391 bytes_out 0 155391 bytes_in 0 155391 station_ip 92.114.78.67 155391 port 557 155391 unique_id port 155391 remote_ip 10.8.0.242 155395 username hashtadani4 155395 mac 155395 bytes_out 0 155395 bytes_in 0 155395 station_ip 37.129.71.25 155395 port 610 155395 unique_id port 155395 remote_ip 10.8.0.182 155397 username hashtadani4 155397 mac 155397 bytes_out 0 155397 bytes_in 0 155397 station_ip 37.129.71.25 155397 port 614 155397 unique_id port 155397 remote_ip 10.8.0.182 155398 username forozandeh1 155398 mac 155398 bytes_out 144711 155398 bytes_in 871036 155398 station_ip 83.122.142.156 155398 port 615 155398 unique_id port 155398 remote_ip 10.8.0.130 155399 username hashtadani4 155399 mac 155399 bytes_out 0 155399 bytes_in 0 155399 station_ip 37.129.71.25 155399 port 615 155399 unique_id port 155399 remote_ip 10.8.0.182 155408 username kalantary 155408 mac 155408 bytes_out 0 155408 bytes_in 0 155408 station_ip 83.122.107.215 155408 port 609 155408 unique_id port 155408 remote_ip 10.8.0.98 155413 username hashtadani4 155413 mac 155413 bytes_out 0 155413 bytes_in 0 155413 station_ip 37.129.71.25 155413 port 609 155413 unique_id port 155413 remote_ip 10.8.0.182 155415 username aminvpn 155415 mac 155415 bytes_out 1309844 155415 bytes_in 5704942 155415 station_ip 5.120.50.58 155415 port 614 155415 unique_id port 155415 remote_ip 10.8.0.14 155416 username aminvpn 155416 mac 155416 bytes_out 0 155416 bytes_in 0 155416 station_ip 83.123.216.205 155416 port 609 155416 unique_id port 155416 remote_ip 10.8.0.14 155417 username sekonji3 155417 mac 155417 bytes_out 1488437 155417 bytes_in 18328939 155417 station_ip 83.122.31.63 155417 port 613 155417 unique_id port 155417 remote_ip 10.8.0.6 155419 username aminvpn 155419 mac 155419 bytes_out 0 155419 bytes_in 0 155419 station_ip 5.120.50.58 155419 port 614 155419 unique_id port 155419 remote_ip 10.8.0.14 155424 username jafari 155424 kill_reason Another user logged on this global unique id 155424 mac 155424 bytes_out 0 155424 bytes_in 0 155424 station_ip 92.114.78.67 155424 port 616 155424 unique_id port 155427 username farhad2 155427 kill_reason Another user logged on this global unique id 155427 mac 155427 bytes_out 0 155427 bytes_in 0 155427 station_ip 5.120.26.60 155427 port 557 155427 unique_id port 155427 remote_ip 10.8.0.190 155433 username farhad2 155433 mac 155433 bytes_out 128954 155433 bytes_in 1380170 155433 station_ip 5.120.26.60 155433 port 557 155433 unique_id port 155433 remote_ip 10.8.0.190 155435 username jafari 155435 kill_reason Another user logged on this global unique id 155435 mac 155435 bytes_out 0 155435 bytes_in 0 155435 station_ip 92.114.78.67 155435 port 616 155435 unique_id port 155439 username vanila 155439 mac 155439 bytes_out 507220 155439 bytes_in 5307019 155439 station_ip 83.123.172.131 155439 port 614 155439 unique_id port 155439 remote_ip 10.8.0.178 155442 username barzegar 155442 mac 155442 bytes_out 0 155442 bytes_in 0 155442 station_ip 5.120.180.37 155442 port 606 155442 unique_id port 155442 remote_ip 10.8.0.234 155445 username rezaei 155445 kill_reason Another user logged on this global unique id 155445 mac 155445 bytes_out 0 155445 bytes_in 0 155445 station_ip 5.120.7.208 155445 port 287 155445 unique_id port 155445 remote_ip 10.8.1.58 155448 username jafari 155448 kill_reason Another user logged on this global unique id 155448 mac 155448 bytes_out 0 155396 bytes_in 0 155396 station_ip 92.114.78.67 155396 port 557 155396 unique_id port 155400 username mohammadjavad 155400 mac 155400 bytes_out 91788 155400 bytes_in 600257 155400 station_ip 37.129.230.192 155400 port 610 155400 unique_id port 155400 remote_ip 10.8.0.142 155406 username hashtadani4 155406 mac 155406 bytes_out 0 155406 bytes_in 0 155406 station_ip 37.129.71.25 155406 port 610 155406 unique_id port 155406 remote_ip 10.8.0.182 155407 username jafari 155407 kill_reason Another user logged on this global unique id 155407 mac 155407 bytes_out 0 155407 bytes_in 0 155407 station_ip 92.114.78.67 155407 port 616 155407 unique_id port 155407 remote_ip 10.8.0.242 155409 username vanila 155409 mac 155409 bytes_out 1263370 155409 bytes_in 10528373 155409 station_ip 83.123.172.131 155409 port 557 155409 unique_id port 155409 remote_ip 10.8.0.178 155412 username hashtadani4 155412 mac 155412 bytes_out 0 155412 bytes_in 0 155412 station_ip 37.129.71.25 155412 port 609 155412 unique_id port 155412 remote_ip 10.8.0.182 155414 username alikomsari 155414 kill_reason Maximum number of concurrent logins reached 155414 mac 155414 bytes_out 0 155414 bytes_in 0 155414 station_ip 5.120.127.35 155414 port 298 155414 unique_id port 155418 username alikomsari 155418 mac 155418 bytes_out 2319157 155418 bytes_in 16834175 155418 station_ip 5.120.127.35 155418 port 606 155418 unique_id port 155418 remote_ip 10.8.0.26 155420 username rahim 155420 mac 155420 bytes_out 3162738 155420 bytes_in 41945431 155420 station_ip 5.120.153.199 155420 port 615 155420 unique_id port 155420 remote_ip 10.8.0.50 155421 username aminvpn 155421 mac 155421 bytes_out 0 155421 bytes_in 0 155421 station_ip 83.123.216.205 155421 port 606 155421 unique_id port 155421 remote_ip 10.8.0.14 155422 username sekonji3 155422 mac 155422 bytes_out 0 155422 bytes_in 0 155422 station_ip 83.122.31.63 155422 port 606 155422 unique_id port 155422 remote_ip 10.8.0.6 155423 username sekonji3 155423 mac 155423 bytes_out 0 155423 bytes_in 0 155423 station_ip 83.122.31.63 155423 port 606 155423 unique_id port 155423 remote_ip 10.8.0.6 155425 username hashtadani4 155425 mac 155425 bytes_out 0 155425 bytes_in 0 155425 station_ip 37.129.71.25 155425 port 613 155425 unique_id port 155425 remote_ip 10.8.0.182 155426 username khademi 155426 kill_reason Another user logged on this global unique id 155426 mac 155426 bytes_out 0 155426 bytes_in 0 155426 station_ip 37.129.135.128 155426 port 309 155426 unique_id port 155429 username farhad2 155429 mac 155429 bytes_out 0 155429 bytes_in 0 155429 station_ip 5.120.26.60 155429 port 557 155429 unique_id port 155431 username kalantary 155431 mac 155431 bytes_out 1704368 155431 bytes_in 16440208 155431 station_ip 83.122.107.215 155431 port 610 155431 unique_id port 155431 remote_ip 10.8.0.98 155437 username nilufarrajaei 155437 kill_reason Another user logged on this global unique id 155437 mac 155437 bytes_out 0 155437 bytes_in 0 155437 station_ip 83.123.177.124 155437 port 307 155437 unique_id port 155437 remote_ip 10.8.1.166 155452 username farhad2 155452 mac 155452 bytes_out 0 155452 bytes_in 0 155452 station_ip 5.120.26.60 155452 port 313 155452 unique_id port 155452 remote_ip 10.8.1.222 155453 username hashtadani4 155453 mac 155453 bytes_out 0 155453 bytes_in 0 155453 station_ip 37.129.71.25 155453 port 606 155453 unique_id port 155453 remote_ip 10.8.0.182 155457 username hassan 155457 kill_reason Another user logged on this global unique id 155402 remote_ip 10.8.1.142 155403 username hashtadani4 155403 mac 155403 bytes_out 0 155403 bytes_in 0 155403 station_ip 37.129.71.25 155403 port 615 155403 unique_id port 155403 remote_ip 10.8.0.182 155404 username alihajmalek 155404 mac 155404 bytes_out 113540 155404 bytes_in 122660 155404 station_ip 5.202.3.239 155404 port 609 155404 unique_id port 155404 remote_ip 10.8.0.202 155405 username farhad2 155405 mac 155405 bytes_out 0 155405 bytes_in 0 155405 station_ip 5.120.26.60 155405 port 610 155405 unique_id port 155405 remote_ip 10.8.0.190 155410 username farhad2 155410 mac 155410 bytes_out 0 155410 bytes_in 0 155410 station_ip 5.120.26.60 155410 port 609 155410 unique_id port 155410 remote_ip 10.8.0.190 155411 username ahmadi1 155411 mac 155411 bytes_out 172220 155411 bytes_in 1152294 155411 station_ip 113.203.72.86 155411 port 610 155411 unique_id port 155411 remote_ip 10.8.0.250 155428 username sekonji3 155428 mac 155428 bytes_out 169448 155428 bytes_in 2962833 155428 station_ip 83.122.31.63 155428 port 606 155428 unique_id port 155428 remote_ip 10.8.0.6 155430 username barzegar 155430 mac 155430 bytes_out 0 155430 bytes_in 0 155430 station_ip 5.120.180.37 155430 port 606 155430 unique_id port 155430 remote_ip 10.8.0.234 155432 username hashtadani4 155432 mac 155432 bytes_out 0 155432 bytes_in 0 155432 station_ip 37.129.71.25 155432 port 606 155432 unique_id port 155432 remote_ip 10.8.0.182 155434 username aminvpn 155434 mac 155434 bytes_out 1640585 155434 bytes_in 5066105 155434 station_ip 5.120.50.58 155434 port 609 155434 unique_id port 155434 remote_ip 10.8.0.14 155436 username farhad2 155436 mac 155436 bytes_out 1320594 155436 bytes_in 22246408 155436 station_ip 5.120.26.60 155436 port 557 155436 unique_id port 155436 remote_ip 10.8.0.190 155438 username kalantary 155438 mac 155438 bytes_out 90189 155438 bytes_in 165807 155438 station_ip 83.122.107.215 155438 port 606 155438 unique_id port 155438 remote_ip 10.8.0.98 155440 username hashtadani4 155440 mac 155440 bytes_out 0 155440 bytes_in 0 155440 station_ip 37.129.71.25 155440 port 557 155440 unique_id port 155440 remote_ip 10.8.0.182 155441 username farhad2 155441 mac 155441 bytes_out 0 155441 bytes_in 0 155441 station_ip 5.120.26.60 155441 port 313 155441 unique_id port 155441 remote_ip 10.8.1.222 155443 username hashtadani4 155443 mac 155443 bytes_out 0 155443 bytes_in 0 155443 station_ip 37.129.71.25 155443 port 610 155443 unique_id port 155443 remote_ip 10.8.0.182 155444 username barzegar 155444 mac 155444 bytes_out 2215 155444 bytes_in 4768 155444 station_ip 5.120.180.37 155444 port 606 155444 unique_id port 155444 remote_ip 10.8.0.234 155446 username fezealinaghi 155446 mac 155446 bytes_out 142631 155446 bytes_in 737350 155446 station_ip 37.129.220.67 155446 port 311 155446 unique_id port 155446 remote_ip 10.8.1.162 155447 username vanila 155447 mac 155447 bytes_out 106021 155447 bytes_in 175819 155447 station_ip 83.123.172.131 155447 port 609 155447 unique_id port 155447 remote_ip 10.8.0.178 155449 username alikomsari 155449 kill_reason Another user logged on this global unique id 155449 mac 155449 bytes_out 0 155449 bytes_in 0 155449 station_ip 5.120.127.35 155449 port 613 155449 unique_id port 155449 remote_ip 10.8.0.26 155450 username hashtadani4 155450 mac 155450 bytes_out 934358 155450 bytes_in 12208227 155450 station_ip 37.129.71.25 155450 port 606 155450 unique_id port 155448 bytes_in 0 155448 station_ip 92.114.78.67 155448 port 616 155448 unique_id port 155455 username alihajmalek 155455 mac 155455 bytes_out 2849972 155455 bytes_in 36598976 155455 station_ip 5.202.3.239 155455 port 619 155455 unique_id port 155455 remote_ip 10.8.0.202 155456 username tahmasebi 155456 mac 155456 bytes_out 0 155456 bytes_in 0 155456 station_ip 5.119.196.197 155456 port 311 155456 unique_id port 155456 remote_ip 10.8.1.90 155458 username mosi 155458 mac 155458 bytes_out 807036 155458 bytes_in 3164438 155458 station_ip 151.235.95.177 155458 port 597 155458 unique_id port 155458 remote_ip 10.8.0.138 155460 username farhad2 155460 mac 155460 bytes_out 446832 155460 bytes_in 1797739 155460 station_ip 5.120.26.60 155460 port 314 155460 unique_id port 155460 remote_ip 10.8.1.222 155461 username rezaei 155461 mac 155461 bytes_out 0 155461 bytes_in 0 155461 station_ip 5.120.7.208 155461 port 287 155461 unique_id port 155463 username fezealinaghi 155463 mac 155463 bytes_out 0 155463 bytes_in 0 155463 station_ip 37.129.220.67 155463 port 287 155463 unique_id port 155463 remote_ip 10.8.1.162 155465 username jafari 155465 kill_reason Another user logged on this global unique id 155465 mac 155465 bytes_out 0 155465 bytes_in 0 155465 station_ip 92.114.78.67 155465 port 616 155465 unique_id port 155467 username hashtadani4 155467 mac 155467 bytes_out 735627 155467 bytes_in 6246075 155467 station_ip 37.129.71.25 155467 port 606 155467 unique_id port 155467 remote_ip 10.8.0.182 155471 username hashtadani4 155471 mac 155471 bytes_out 0 155471 bytes_in 0 155471 station_ip 37.129.71.25 155471 port 287 155471 unique_id port 155471 remote_ip 10.8.1.142 155472 username hashtadani4 155472 mac 155472 bytes_out 0 155472 bytes_in 0 155472 station_ip 37.129.71.25 155472 port 287 155472 unique_id port 155472 remote_ip 10.8.1.142 155475 username vanila 155475 mac 155475 bytes_out 568135 155475 bytes_in 333811 155475 station_ip 83.123.172.131 155475 port 609 155475 unique_id port 155475 remote_ip 10.8.0.178 155478 username fezealinaghi 155478 mac 155478 bytes_out 72085 155478 bytes_in 74575 155478 station_ip 37.129.220.67 155478 port 606 155478 unique_id port 155478 remote_ip 10.8.0.78 155488 username khalili 155488 mac 155488 bytes_out 0 155488 bytes_in 0 155488 station_ip 5.119.196.181 155488 port 595 155488 unique_id port 155489 username hassan 155489 kill_reason Another user logged on this global unique id 155489 mac 155489 bytes_out 0 155489 bytes_in 0 155489 station_ip 5.119.230.25 155489 port 557 155489 unique_id port 155490 username hashtadani4 155490 mac 155490 bytes_out 0 155490 bytes_in 0 155490 station_ip 37.129.71.25 155490 port 595 155490 unique_id port 155490 remote_ip 10.8.0.182 155493 username farhad2 155493 kill_reason Another user logged on this global unique id 155493 mac 155493 bytes_out 0 155493 bytes_in 0 155493 station_ip 5.120.18.222 155493 port 597 155493 unique_id port 155494 username hassan 155494 kill_reason Another user logged on this global unique id 155494 mac 155494 bytes_out 0 155494 bytes_in 0 155494 station_ip 5.119.230.25 155494 port 557 155494 unique_id port 155496 username houshang 155496 mac 155496 bytes_out 57068 155496 bytes_in 148936 155496 station_ip 5.120.144.105 155496 port 614 155496 unique_id port 155496 remote_ip 10.8.0.134 155500 username hassan 155500 kill_reason Another user logged on this global unique id 155500 mac 155500 bytes_out 0 155500 bytes_in 0 155450 remote_ip 10.8.0.182 155451 username hashtadani4 155451 mac 155451 bytes_out 0 155451 bytes_in 0 155451 station_ip 37.129.71.25 155451 port 606 155451 unique_id port 155451 remote_ip 10.8.0.182 155454 username barzegar 155454 mac 155454 bytes_out 0 155454 bytes_in 0 155454 station_ip 5.120.180.37 155454 port 313 155454 unique_id port 155454 remote_ip 10.8.1.174 155462 username fezealinaghi 155462 mac 155462 bytes_out 85117 155462 bytes_in 108041 155462 station_ip 37.129.220.67 155462 port 610 155462 unique_id port 155462 remote_ip 10.8.0.78 155466 username barzegar 155466 mac 155466 bytes_out 0 155466 bytes_in 0 155466 station_ip 5.120.180.37 155466 port 311 155466 unique_id port 155466 remote_ip 10.8.1.174 155470 username barzegar 155470 mac 155470 bytes_out 0 155470 bytes_in 0 155470 station_ip 5.120.180.37 155470 port 311 155470 unique_id port 155470 remote_ip 10.8.1.174 155473 username hashtadani4 155473 mac 155473 bytes_out 0 155473 bytes_in 0 155473 station_ip 37.129.71.25 155473 port 287 155473 unique_id port 155473 remote_ip 10.8.1.142 155476 username hashtadani4 155476 kill_reason Maximum check online fails reached 155476 mac 155476 bytes_out 0 155476 bytes_in 0 155476 station_ip 37.129.71.25 155476 port 287 155476 unique_id port 155477 username kordestani 155477 mac 155477 bytes_out 0 155477 bytes_in 0 155477 station_ip 151.235.81.37 155477 port 298 155477 unique_id port 155477 remote_ip 10.8.1.98 155480 username hashtadani4 155480 mac 155480 bytes_out 0 155480 bytes_in 0 155480 station_ip 37.129.71.25 155480 port 298 155480 unique_id port 155480 remote_ip 10.8.1.142 155482 username naeimeh 155482 mac 155482 bytes_out 840292 155482 bytes_in 7868454 155482 station_ip 83.123.1.154 155482 port 610 155482 unique_id port 155482 remote_ip 10.8.0.118 155484 username hassan 155484 kill_reason Another user logged on this global unique id 155484 mac 155484 bytes_out 0 155484 bytes_in 0 155484 station_ip 5.119.230.25 155484 port 557 155484 unique_id port 155486 username farhad2 155486 kill_reason Another user logged on this global unique id 155486 mac 155486 bytes_out 0 155486 bytes_in 0 155486 station_ip 5.120.18.222 155486 port 597 155486 unique_id port 155486 remote_ip 10.8.0.190 155487 username hassan 155487 kill_reason Another user logged on this global unique id 155487 mac 155487 bytes_out 0 155487 bytes_in 0 155487 station_ip 5.119.230.25 155487 port 557 155487 unique_id port 155491 username jafari 155491 mac 155491 bytes_out 0 155491 bytes_in 0 155491 station_ip 92.114.78.67 155491 port 616 155491 unique_id port 155495 username barzegar 155495 mac 155495 bytes_out 0 155495 bytes_in 0 155495 station_ip 5.120.180.37 155495 port 615 155495 unique_id port 155495 remote_ip 10.8.0.234 155497 username hashtadani4 155497 mac 155497 bytes_out 0 155497 bytes_in 0 155497 station_ip 37.129.71.25 155497 port 614 155497 unique_id port 155497 remote_ip 10.8.0.182 155498 username farhad2 155498 mac 155498 bytes_out 0 155498 bytes_in 0 155498 station_ip 5.120.18.222 155498 port 597 155498 unique_id port 155504 username mohammadjavad 155504 mac 155504 bytes_out 268462 155504 bytes_in 3078094 155504 station_ip 37.129.26.245 155504 port 597 155504 unique_id port 155504 remote_ip 10.8.0.142 155505 username malekpoir 155505 mac 155505 bytes_out 3175777 155505 bytes_in 48219385 155505 station_ip 5.120.134.188 155505 port 595 155505 unique_id port 155505 remote_ip 10.8.0.58 155508 username godarzi 155457 mac 155457 bytes_out 0 155457 bytes_in 0 155457 station_ip 5.119.230.25 155457 port 557 155457 unique_id port 155457 remote_ip 10.8.0.122 155459 username hashtadani4 155459 kill_reason Maximum check online fails reached 155459 mac 155459 bytes_out 0 155459 bytes_in 0 155459 station_ip 37.129.71.25 155459 port 313 155459 unique_id port 155464 username ayobi 155464 kill_reason Another user logged on this global unique id 155464 mac 155464 bytes_out 0 155464 bytes_in 0 155464 station_ip 37.27.4.94 155464 port 598 155464 unique_id port 155468 username farhad2 155468 mac 155468 bytes_out 0 155468 bytes_in 0 155468 station_ip 5.120.26.60 155468 port 597 155468 unique_id port 155468 remote_ip 10.8.0.190 155469 username fezealinaghi 155469 mac 155469 bytes_out 0 155469 bytes_in 0 155469 station_ip 37.129.220.67 155469 port 287 155469 unique_id port 155469 remote_ip 10.8.1.162 155474 username hassan 155474 kill_reason Another user logged on this global unique id 155474 mac 155474 bytes_out 0 155474 bytes_in 0 155474 station_ip 5.119.230.25 155474 port 557 155474 unique_id port 155479 username barzegar 155479 mac 155479 bytes_out 0 155479 bytes_in 0 155479 station_ip 5.120.180.37 155479 port 606 155479 unique_id port 155479 remote_ip 10.8.0.234 155481 username hashtadani4 155481 mac 155481 bytes_out 0 155481 bytes_in 0 155481 station_ip 37.129.71.25 155481 port 606 155481 unique_id port 155481 remote_ip 10.8.0.182 155483 username hashtadani4 155483 mac 155483 bytes_out 0 155483 bytes_in 0 155483 station_ip 37.129.71.25 155483 port 606 155483 unique_id port 155483 remote_ip 10.8.0.182 155485 username vanila 155485 mac 155485 bytes_out 585525 155485 bytes_in 991697 155485 station_ip 83.123.172.131 155485 port 614 155485 unique_id port 155485 remote_ip 10.8.0.178 155492 username houshang 155492 mac 155492 bytes_out 0 155492 bytes_in 0 155492 station_ip 5.119.153.198 155492 port 595 155492 unique_id port 155492 remote_ip 10.8.0.134 155499 username vanila 155499 mac 155499 bytes_out 1877783 155499 bytes_in 10096431 155499 station_ip 83.123.172.131 155499 port 606 155499 unique_id port 155499 remote_ip 10.8.0.178 155501 username hashtadani4 155501 mac 155501 bytes_out 0 155501 bytes_in 0 155501 station_ip 37.129.71.25 155501 port 606 155501 unique_id port 155501 remote_ip 10.8.0.182 155502 username alikomsari 155502 kill_reason Another user logged on this global unique id 155502 mac 155502 bytes_out 0 155502 bytes_in 0 155502 station_ip 5.120.127.35 155502 port 613 155502 unique_id port 155503 username rezaei 155503 mac 155503 bytes_out 462832 155503 bytes_in 5660825 155503 station_ip 5.120.7.208 155503 port 298 155503 unique_id port 155503 remote_ip 10.8.1.58 155509 username barzegar 155509 mac 155509 bytes_out 0 155509 bytes_in 0 155509 station_ip 5.120.180.37 155509 port 595 155509 unique_id port 155509 remote_ip 10.8.0.234 155513 username fezealinaghi 155513 mac 155513 bytes_out 508528 155513 bytes_in 4992167 155513 station_ip 37.129.220.67 155513 port 609 155513 unique_id port 155513 remote_ip 10.8.0.78 155514 username hashtadani4 155514 mac 155514 bytes_out 0 155514 bytes_in 0 155514 station_ip 37.129.71.25 155514 port 595 155514 unique_id port 155514 remote_ip 10.8.0.182 155517 username hashtadani4 155517 mac 155517 bytes_out 0 155517 bytes_in 0 155517 station_ip 37.129.71.25 155517 port 595 155517 unique_id port 155517 remote_ip 10.8.0.182 155520 username barzegar 155520 mac 155500 station_ip 5.119.230.25 155500 port 557 155500 unique_id port 155506 username hashtadani4 155506 mac 155506 bytes_out 0 155506 bytes_in 0 155506 station_ip 37.129.71.25 155506 port 606 155506 unique_id port 155506 remote_ip 10.8.0.182 155507 username hassan 155507 kill_reason Another user logged on this global unique id 155507 mac 155507 bytes_out 0 155507 bytes_in 0 155507 station_ip 5.119.230.25 155507 port 557 155507 unique_id port 155510 username farhad2 155510 kill_reason Another user logged on this global unique id 155510 mac 155510 bytes_out 0 155510 bytes_in 0 155510 station_ip 5.120.18.222 155510 port 614 155510 unique_id port 155510 remote_ip 10.8.0.190 155516 username barzegar 155516 mac 155516 bytes_out 0 155516 bytes_in 0 155516 station_ip 5.120.180.37 155516 port 595 155516 unique_id port 155516 remote_ip 10.8.0.234 155519 username sabaghnezhad 155519 mac 155519 bytes_out 1442142 155519 bytes_in 2188982 155519 station_ip 37.129.151.165 155519 port 612 155519 unique_id port 155519 remote_ip 10.8.0.186 155521 username hashtadani4 155521 mac 155521 bytes_out 0 155521 bytes_in 0 155521 station_ip 37.129.71.25 155521 port 606 155521 unique_id port 155521 remote_ip 10.8.0.182 155522 username mohammadmahdi 155522 mac 155522 bytes_out 0 155522 bytes_in 0 155522 station_ip 5.120.27.157 155522 port 597 155522 unique_id port 155522 remote_ip 10.8.0.54 155524 username hashtadani4 155524 mac 155524 bytes_out 0 155524 bytes_in 0 155524 station_ip 37.129.71.25 155524 port 606 155524 unique_id port 155524 remote_ip 10.8.0.182 155533 username hashtadani4 155533 mac 155533 bytes_out 0 155533 bytes_in 0 155533 station_ip 37.129.71.25 155533 port 609 155533 unique_id port 155533 remote_ip 10.8.0.182 155541 username barzegar 155541 mac 155541 bytes_out 0 155541 bytes_in 0 155541 station_ip 5.120.180.37 155541 port 597 155541 unique_id port 155541 remote_ip 10.8.0.234 155542 username alihajmalek 155542 kill_reason Another user logged on this global unique id 155542 mac 155542 bytes_out 0 155542 bytes_in 0 155542 station_ip 83.122.221.54 155542 port 614 155542 unique_id port 155542 remote_ip 10.8.0.202 155543 username kordestani 155543 mac 155543 bytes_out 958563 155543 bytes_in 12774534 155543 station_ip 151.235.105.37 155543 port 314 155543 unique_id port 155543 remote_ip 10.8.1.98 155544 username hashtadani4 155544 mac 155544 bytes_out 0 155544 bytes_in 0 155544 station_ip 37.129.71.25 155544 port 595 155544 unique_id port 155544 remote_ip 10.8.0.182 155547 username alihajmalek 155547 kill_reason Another user logged on this global unique id 155547 mac 155547 bytes_out 0 155547 bytes_in 0 155547 station_ip 83.122.221.54 155547 port 614 155547 unique_id port 155549 username tahmasebi 155549 mac 155549 bytes_out 15555 155549 bytes_in 34977 155549 station_ip 77.42.112.59 155549 port 298 155549 unique_id port 155549 remote_ip 10.8.1.90 155551 username hashtadani4 155551 mac 155551 bytes_out 0 155551 bytes_in 0 155551 station_ip 37.129.71.25 155551 port 595 155551 unique_id port 155551 remote_ip 10.8.0.182 155555 username alikomsari 155555 kill_reason Another user logged on this global unique id 155555 mac 155555 bytes_out 0 155555 bytes_in 0 155555 station_ip 5.120.127.35 155555 port 613 155555 unique_id port 155560 username fezealinaghi 155560 kill_reason Another user logged on this global unique id 155560 mac 155560 bytes_out 0 155560 bytes_in 0 155560 station_ip 37.129.220.67 155560 port 612 155560 unique_id port 155560 remote_ip 10.8.0.78 155508 mac 155508 bytes_out 299371 155508 bytes_in 3445040 155508 station_ip 5.202.24.27 155508 port 595 155508 unique_id port 155508 remote_ip 10.8.0.174 155511 username hashtadani4 155511 mac 155511 bytes_out 0 155511 bytes_in 0 155511 station_ip 37.129.71.25 155511 port 595 155511 unique_id port 155511 remote_ip 10.8.0.182 155512 username hassan 155512 kill_reason Another user logged on this global unique id 155512 mac 155512 bytes_out 0 155512 bytes_in 0 155512 station_ip 5.119.230.25 155512 port 557 155512 unique_id port 155515 username hassan 155515 kill_reason Another user logged on this global unique id 155515 mac 155515 bytes_out 0 155515 bytes_in 0 155515 station_ip 5.119.230.25 155515 port 557 155515 unique_id port 155518 username hassan 155518 kill_reason Another user logged on this global unique id 155518 mac 155518 bytes_out 0 155518 bytes_in 0 155518 station_ip 5.119.230.25 155518 port 557 155518 unique_id port 155527 username barzegar 155527 mac 155527 bytes_out 0 155527 bytes_in 0 155527 station_ip 5.120.180.37 155527 port 609 155527 unique_id port 155527 remote_ip 10.8.0.234 155529 username hashtadani4 155529 mac 155529 bytes_out 0 155529 bytes_in 0 155529 station_ip 37.129.71.25 155529 port 298 155529 unique_id port 155529 remote_ip 10.8.1.142 155530 username hashtadani4 155530 mac 155530 bytes_out 0 155530 bytes_in 0 155530 station_ip 37.129.71.25 155530 port 609 155530 unique_id port 155530 remote_ip 10.8.0.182 155536 username vanila 155536 mac 155536 bytes_out 0 155536 bytes_in 0 155536 station_ip 83.123.172.131 155536 port 609 155536 unique_id port 155536 remote_ip 10.8.0.178 155538 username hashtadani4 155538 mac 155538 bytes_out 0 155538 bytes_in 0 155538 station_ip 37.129.71.25 155538 port 597 155538 unique_id port 155538 remote_ip 10.8.0.182 155540 username hashtadani4 155540 mac 155540 bytes_out 0 155540 bytes_in 0 155540 station_ip 37.129.71.25 155540 port 595 155540 unique_id port 155540 remote_ip 10.8.0.182 155545 username barzegar 155545 mac 155545 bytes_out 0 155545 bytes_in 0 155545 station_ip 5.120.180.37 155545 port 595 155545 unique_id port 155545 remote_ip 10.8.0.234 155554 username hashtadani4 155554 mac 155554 bytes_out 0 155554 bytes_in 0 155554 station_ip 37.129.71.25 155554 port 595 155554 unique_id port 155554 remote_ip 10.8.0.182 155556 username hashtadani4 155556 mac 155556 bytes_out 0 155556 bytes_in 0 155556 station_ip 37.129.71.25 155556 port 612 155556 unique_id port 155556 remote_ip 10.8.0.182 155558 username alihajmalek 155558 kill_reason Another user logged on this global unique id 155558 mac 155558 bytes_out 0 155558 bytes_in 0 155558 station_ip 83.122.221.54 155558 port 614 155558 unique_id port 155559 username hashtadani4 155559 mac 155559 bytes_out 0 155559 bytes_in 0 155559 station_ip 37.129.71.25 155559 port 615 155559 unique_id port 155559 remote_ip 10.8.0.182 155566 username farhad2 155566 mac 155566 bytes_out 0 155566 bytes_in 0 155566 station_ip 5.119.245.100 155566 port 595 155566 unique_id port 155566 remote_ip 10.8.0.190 155567 username hashtadani4 155567 mac 155567 bytes_out 0 155567 bytes_in 0 155567 station_ip 37.129.71.25 155567 port 597 155567 unique_id port 155567 remote_ip 10.8.0.182 155569 username tahmasebi 155569 mac 155569 bytes_out 0 155569 bytes_in 0 155569 station_ip 77.42.112.59 155569 port 298 155569 unique_id port 155569 remote_ip 10.8.1.90 155570 username farhad2 155573 port 597 155520 bytes_out 0 155520 bytes_in 0 155520 station_ip 5.120.180.37 155520 port 606 155520 unique_id port 155520 remote_ip 10.8.0.234 155523 username farhad2 155523 mac 155523 bytes_out 0 155523 bytes_in 0 155523 station_ip 5.120.18.222 155523 port 614 155523 unique_id port 155525 username farhad2 155525 mac 155525 bytes_out 135261 155525 bytes_in 548004 155525 station_ip 5.120.18.222 155525 port 298 155525 unique_id port 155525 remote_ip 10.8.1.222 155526 username farhad2 155526 mac 155526 bytes_out 101012 155526 bytes_in 548270 155526 station_ip 5.120.18.222 155526 port 298 155526 unique_id port 155526 remote_ip 10.8.1.222 155528 username hashtadani4 155528 mac 155528 bytes_out 0 155528 bytes_in 0 155528 station_ip 37.129.71.25 155528 port 298 155528 unique_id port 155528 remote_ip 10.8.1.142 155531 username alihajmalek 155531 mac 155531 bytes_out 0 155531 bytes_in 0 155531 station_ip 83.122.221.54 155531 port 614 155531 unique_id port 155531 remote_ip 10.8.0.202 155532 username fezealinaghi 155532 mac 155532 bytes_out 0 155532 bytes_in 0 155532 station_ip 37.129.220.67 155532 port 609 155532 unique_id port 155532 remote_ip 10.8.0.78 155534 username vanila 155534 mac 155534 bytes_out 0 155534 bytes_in 0 155534 station_ip 83.123.172.131 155534 port 595 155534 unique_id port 155534 remote_ip 10.8.0.178 155535 username tahmasebi 155535 mac 155535 bytes_out 2746504 155535 bytes_in 26790594 155535 station_ip 77.42.112.59 155535 port 311 155535 unique_id port 155535 remote_ip 10.8.1.90 155537 username malekpoir 155537 mac 155537 bytes_out 0 155537 bytes_in 0 155537 station_ip 5.120.134.188 155537 port 597 155537 unique_id port 155537 remote_ip 10.8.0.58 155539 username fezealinaghi 155539 mac 155539 bytes_out 0 155539 bytes_in 0 155539 station_ip 37.129.220.67 155539 port 595 155539 unique_id port 155539 remote_ip 10.8.0.78 155546 username farhad2 155546 mac 155546 bytes_out 2520062 155546 bytes_in 21839106 155546 station_ip 5.120.18.222 155546 port 298 155546 unique_id port 155546 remote_ip 10.8.1.222 155548 username hashtadani4 155548 mac 155548 bytes_out 0 155548 bytes_in 0 155548 station_ip 37.129.71.25 155548 port 595 155548 unique_id port 155548 remote_ip 10.8.0.182 155550 username mahdiyehalizadeh 155550 mac 155550 bytes_out 1475475 155550 bytes_in 18929481 155550 station_ip 5.119.171.15 155550 port 612 155550 unique_id port 155550 remote_ip 10.8.0.82 155552 username alihajmalek 155552 kill_reason Another user logged on this global unique id 155552 mac 155552 bytes_out 0 155552 bytes_in 0 155552 station_ip 83.122.221.54 155552 port 614 155552 unique_id port 155553 username barzegar 155553 mac 155553 bytes_out 0 155553 bytes_in 0 155553 station_ip 5.120.180.37 155553 port 595 155553 unique_id port 155553 remote_ip 10.8.0.234 155557 username barzegar 155557 mac 155557 bytes_out 0 155557 bytes_in 0 155557 station_ip 5.120.180.37 155557 port 615 155557 unique_id port 155557 remote_ip 10.8.0.234 155561 username mahdiyehalizadeh 155561 mac 155561 bytes_out 0 155561 bytes_in 0 155561 station_ip 5.119.171.15 155561 port 597 155561 unique_id port 155561 remote_ip 10.8.0.82 155563 username hashtadani4 155563 mac 155563 bytes_out 0 155563 bytes_in 0 155563 station_ip 37.129.71.25 155563 port 615 155563 unique_id port 155563 remote_ip 10.8.0.182 155573 username barzegar 155573 mac 155573 bytes_out 0 155573 bytes_in 0 155573 station_ip 5.120.180.37 155562 username alihajmalek 155562 kill_reason Another user logged on this global unique id 155562 mac 155562 bytes_out 0 155562 bytes_in 0 155562 station_ip 83.122.221.54 155562 port 614 155562 unique_id port 155564 username nilufarrajaei 155564 mac 155564 bytes_out 0 155564 bytes_in 0 155564 station_ip 83.123.177.124 155564 port 307 155564 unique_id port 155565 username barzegar 155565 mac 155565 bytes_out 0 155565 bytes_in 0 155565 station_ip 5.120.180.37 155565 port 597 155565 unique_id port 155565 remote_ip 10.8.0.234 155568 username alihajmalek 155568 kill_reason Another user logged on this global unique id 155568 mac 155568 bytes_out 0 155568 bytes_in 0 155568 station_ip 83.122.221.54 155568 port 614 155568 unique_id port 155575 username hassan 155575 mac 155575 bytes_out 0 155575 bytes_in 0 155575 station_ip 5.119.230.25 155575 port 557 155575 unique_id port 155576 username hashtadani4 155576 mac 155576 bytes_out 0 155576 bytes_in 0 155576 station_ip 37.129.71.25 155576 port 557 155576 unique_id port 155576 remote_ip 10.8.0.182 155584 username mansour 155584 mac 155584 bytes_out 355033 155584 bytes_in 2936767 155584 station_ip 5.202.98.165 155584 port 557 155584 unique_id port 155584 remote_ip 10.8.0.30 155590 username hashtadani4 155590 mac 155590 bytes_out 0 155590 bytes_in 0 155590 station_ip 37.129.71.25 155590 port 606 155590 unique_id port 155590 remote_ip 10.8.0.182 155591 username farhad2 155591 mac 155591 bytes_out 1476423 155591 bytes_in 4222533 155591 station_ip 5.119.245.100 155591 port 557 155591 unique_id port 155591 remote_ip 10.8.0.190 155593 username hashtadani4 155593 mac 155593 bytes_out 0 155593 bytes_in 0 155593 station_ip 37.129.71.25 155593 port 557 155593 unique_id port 155593 remote_ip 10.8.0.182 155594 username barzegar 155594 mac 155594 bytes_out 0 155594 bytes_in 0 155594 station_ip 5.120.180.37 155594 port 557 155594 unique_id port 155594 remote_ip 10.8.0.234 155596 username farhad2 155596 mac 155596 bytes_out 451227 155596 bytes_in 2491339 155596 station_ip 5.119.245.100 155596 port 307 155596 unique_id port 155596 remote_ip 10.8.1.222 155597 username farhad2 155597 mac 155597 bytes_out 0 155597 bytes_in 0 155597 station_ip 5.119.245.100 155597 port 307 155597 unique_id port 155597 remote_ip 10.8.1.222 155602 username hashtadani4 155602 mac 155602 bytes_out 0 155602 bytes_in 0 155602 station_ip 37.129.71.25 155602 port 609 155602 unique_id port 155602 remote_ip 10.8.0.182 155603 username farhad2 155603 mac 155603 bytes_out 2552991 155603 bytes_in 23625520 155603 station_ip 5.119.245.100 155603 port 557 155603 unique_id port 155603 remote_ip 10.8.0.190 155604 username sabaghnezhad 155604 mac 155604 bytes_out 77096 155604 bytes_in 82898 155604 station_ip 37.129.53.242 155604 port 606 155604 unique_id port 155604 remote_ip 10.8.0.186 155605 username hashtadani4 155605 mac 155605 bytes_out 0 155605 bytes_in 0 155605 station_ip 37.129.71.25 155605 port 609 155605 unique_id port 155605 remote_ip 10.8.0.182 155607 username sabaghnezhad 155607 mac 155607 bytes_out 17401 155607 bytes_in 27595 155607 station_ip 37.129.53.242 155607 port 606 155607 unique_id port 155607 remote_ip 10.8.0.186 155608 username barzegar 155608 mac 155608 bytes_out 0 155608 bytes_in 0 155608 station_ip 5.120.180.37 155608 port 606 155608 unique_id port 155608 remote_ip 10.8.0.234 155613 username farhad2 155613 mac 155613 bytes_out 0 155570 kill_reason Another user logged on this global unique id 155570 mac 155570 bytes_out 0 155570 bytes_in 0 155570 station_ip 5.119.245.100 155570 port 595 155570 unique_id port 155570 remote_ip 10.8.0.190 155571 username alihajmalek 155571 kill_reason Another user logged on this global unique id 155571 mac 155571 bytes_out 0 155571 bytes_in 0 155571 station_ip 83.122.221.54 155571 port 614 155571 unique_id port 155572 username hashtadani4 155572 mac 155572 bytes_out 0 155572 bytes_in 0 155572 station_ip 37.129.71.25 155572 port 597 155572 unique_id port 155572 remote_ip 10.8.0.182 155574 username alihajmalek 155574 kill_reason Another user logged on this global unique id 155574 mac 155574 bytes_out 0 155574 bytes_in 0 155574 station_ip 83.122.221.54 155574 port 614 155574 unique_id port 155580 username kordestani 155580 mac 155580 bytes_out 0 155580 bytes_in 0 155580 station_ip 151.235.86.227 155580 port 311 155580 unique_id port 155580 remote_ip 10.8.1.98 155583 username farhad2 155583 mac 155583 bytes_out 0 155583 bytes_in 0 155583 station_ip 5.119.245.100 155583 port 595 155583 unique_id port 155586 username tahmasebi 155586 kill_reason Maximum check online fails reached 155586 mac 155586 bytes_out 0 155586 bytes_in 0 155586 station_ip 77.42.112.59 155586 port 597 155586 unique_id port 155587 username zotaher 155587 mac 155587 bytes_out 0 155587 bytes_in 0 155587 station_ip 83.123.131.158 155587 port 606 155587 unique_id port 155587 remote_ip 10.8.0.194 155595 username sabaghnezhad 155595 mac 155595 bytes_out 0 155595 bytes_in 0 155595 station_ip 37.129.53.242 155595 port 609 155595 unique_id port 155595 remote_ip 10.8.0.186 155600 username barzegar 155600 mac 155600 bytes_out 0 155600 bytes_in 0 155600 station_ip 5.120.180.37 155600 port 609 155600 unique_id port 155600 remote_ip 10.8.0.234 155601 username hashtadani4 155601 mac 155601 bytes_out 0 155601 bytes_in 0 155601 station_ip 37.129.71.25 155601 port 609 155601 unique_id port 155601 remote_ip 10.8.0.182 155606 username farhad2 155606 mac 155606 bytes_out 122587 155606 bytes_in 278306 155606 station_ip 5.119.14.17 155606 port 557 155606 unique_id port 155606 remote_ip 10.8.0.190 155610 username sabaghnezhad 155610 mac 155610 bytes_out 0 155610 bytes_in 0 155610 station_ip 37.129.53.242 155610 port 609 155610 unique_id port 155610 remote_ip 10.8.0.186 155611 username farhad2 155611 mac 155611 bytes_out 1725085 155611 bytes_in 20137463 155611 station_ip 5.119.14.17 155611 port 557 155611 unique_id port 155611 remote_ip 10.8.0.190 155612 username hashtadani4 155612 mac 155612 bytes_out 0 155612 bytes_in 0 155612 station_ip 37.129.71.25 155612 port 557 155612 unique_id port 155612 remote_ip 10.8.0.182 155615 username barzegar 155615 mac 155615 bytes_out 0 155615 bytes_in 0 155615 station_ip 5.120.180.37 155615 port 614 155615 unique_id port 155615 remote_ip 10.8.0.234 155622 username hashtadani4 155622 mac 155622 bytes_out 0 155622 bytes_in 0 155622 station_ip 37.129.71.25 155622 port 606 155622 unique_id port 155622 remote_ip 10.8.0.182 155627 username hashtadani4 155627 mac 155627 bytes_out 0 155627 bytes_in 0 155627 station_ip 37.129.71.25 155627 port 606 155627 unique_id port 155627 remote_ip 10.8.0.182 155630 username hashtadani4 155630 mac 155630 bytes_out 0 155630 bytes_in 0 155630 station_ip 37.129.71.25 155630 port 609 155630 unique_id port 155630 remote_ip 10.8.0.182 155633 username barzegar 155573 unique_id port 155573 remote_ip 10.8.0.234 155577 username alihajmalek 155577 kill_reason Another user logged on this global unique id 155577 mac 155577 bytes_out 0 155577 bytes_in 0 155577 station_ip 83.122.221.54 155577 port 614 155577 unique_id port 155578 username alihajmalek 155578 mac 155578 bytes_out 0 155578 bytes_in 0 155578 station_ip 83.122.221.54 155578 port 614 155578 unique_id port 155579 username hashtadani4 155579 mac 155579 bytes_out 0 155579 bytes_in 0 155579 station_ip 37.129.71.25 155579 port 557 155579 unique_id port 155579 remote_ip 10.8.0.182 155581 username barzegar 155581 mac 155581 bytes_out 0 155581 bytes_in 0 155581 station_ip 5.120.180.37 155581 port 557 155581 unique_id port 155581 remote_ip 10.8.0.234 155582 username hashtadani4 155582 mac 155582 bytes_out 0 155582 bytes_in 0 155582 station_ip 37.129.71.25 155582 port 557 155582 unique_id port 155582 remote_ip 10.8.0.182 155585 username hashtadani4 155585 mac 155585 bytes_out 0 155585 bytes_in 0 155585 station_ip 37.129.71.25 155585 port 557 155585 unique_id port 155585 remote_ip 10.8.0.182 155588 username zotaher 155588 mac 155588 bytes_out 0 155588 bytes_in 0 155588 station_ip 83.123.131.158 155588 port 595 155588 unique_id port 155588 remote_ip 10.8.0.194 155589 username barzegar 155589 mac 155589 bytes_out 0 155589 bytes_in 0 155589 station_ip 5.120.180.37 155589 port 595 155589 unique_id port 155589 remote_ip 10.8.0.234 155592 username farhad2 155592 mac 155592 bytes_out 0 155592 bytes_in 0 155592 station_ip 5.119.245.100 155592 port 557 155592 unique_id port 155592 remote_ip 10.8.0.190 155598 username hashtadani4 155598 mac 155598 bytes_out 0 155598 bytes_in 0 155598 station_ip 37.129.71.25 155598 port 557 155598 unique_id port 155598 remote_ip 10.8.0.182 155599 username hashtadani4 155599 mac 155599 bytes_out 0 155599 bytes_in 0 155599 station_ip 37.129.71.25 155599 port 606 155599 unique_id port 155599 remote_ip 10.8.0.182 155609 username hashtadani4 155609 mac 155609 bytes_out 0 155609 bytes_in 0 155609 station_ip 37.129.71.25 155609 port 606 155609 unique_id port 155609 remote_ip 10.8.0.182 155617 username mahdiyehalizadeh 155617 mac 155617 bytes_out 0 155617 bytes_in 0 155617 station_ip 5.119.171.15 155617 port 609 155617 unique_id port 155617 remote_ip 10.8.0.82 155618 username hashtadani4 155618 mac 155618 bytes_out 0 155618 bytes_in 0 155618 station_ip 37.129.71.25 155618 port 606 155618 unique_id port 155618 remote_ip 10.8.0.182 155619 username hashtadani4 155619 mac 155619 bytes_out 0 155619 bytes_in 0 155619 station_ip 37.129.71.25 155619 port 606 155619 unique_id port 155619 remote_ip 10.8.0.182 155621 username barzegar 155621 mac 155621 bytes_out 0 155621 bytes_in 0 155621 station_ip 5.120.180.37 155621 port 307 155621 unique_id port 155621 remote_ip 10.8.1.174 155629 username hashtadani4 155629 mac 155629 bytes_out 0 155629 bytes_in 0 155629 station_ip 37.129.71.25 155629 port 609 155629 unique_id port 155629 remote_ip 10.8.0.182 155632 username tahmasebi 155632 kill_reason Maximum check online fails reached 155632 mac 155632 bytes_out 0 155632 bytes_in 0 155632 station_ip 77.42.112.59 155632 port 606 155632 unique_id port 155634 username tahmasebi 155634 mac 155634 bytes_out 12581 155634 bytes_in 16803 155634 station_ip 77.42.112.59 155634 port 307 155634 unique_id port 155634 remote_ip 10.8.1.90 155635 username farhad2 155613 bytes_in 0 155613 station_ip 5.119.14.17 155613 port 307 155613 unique_id port 155613 remote_ip 10.8.1.222 155614 username hashtadani4 155614 mac 155614 bytes_out 0 155614 bytes_in 0 155614 station_ip 37.129.71.25 155614 port 615 155614 unique_id port 155614 remote_ip 10.8.0.182 155616 username kalantary 155616 mac 155616 bytes_out 0 155616 bytes_in 0 155616 station_ip 83.122.101.223 155616 port 606 155616 unique_id port 155616 remote_ip 10.8.0.98 155620 username hashtadani4 155620 mac 155620 bytes_out 0 155620 bytes_in 0 155620 station_ip 37.129.71.25 155620 port 606 155620 unique_id port 155620 remote_ip 10.8.0.182 155623 username pourshad 155623 kill_reason Another user logged on this global unique id 155623 mac 155623 bytes_out 0 155623 bytes_in 0 155623 station_ip 83.122.97.143 155623 port 557 155623 unique_id port 155623 remote_ip 10.8.0.18 155624 username fezealinaghi 155624 mac 155624 bytes_out 0 155624 bytes_in 0 155624 station_ip 37.129.220.67 155624 port 612 155624 unique_id port 155625 username hashtadani4 155625 mac 155625 bytes_out 0 155625 bytes_in 0 155625 station_ip 37.129.71.25 155625 port 606 155625 unique_id port 155625 remote_ip 10.8.0.182 155626 username barzegar 155626 mac 155626 bytes_out 0 155626 bytes_in 0 155626 station_ip 5.120.180.37 155626 port 307 155626 unique_id port 155626 remote_ip 10.8.1.174 155628 username khalili 155628 mac 155628 bytes_out 381043 155628 bytes_in 580393 155628 station_ip 5.119.196.181 155628 port 610 155628 unique_id port 155628 remote_ip 10.8.0.86 155631 username tahmasebi 155631 mac 155631 bytes_out 5159169 155631 bytes_in 1021360 155631 station_ip 77.42.112.59 155631 port 595 155631 unique_id port 155631 remote_ip 10.8.0.42 155637 username hashtadani4 155637 mac 155637 bytes_out 0 155637 bytes_in 0 155637 station_ip 37.129.71.25 155637 port 610 155637 unique_id port 155637 remote_ip 10.8.0.182 155643 username tahmasebi 155643 mac 155643 bytes_out 0 155643 bytes_in 0 155643 station_ip 77.42.112.59 155643 port 609 155643 unique_id port 155643 remote_ip 10.8.0.42 155645 username hashtadani4 155645 mac 155645 bytes_out 0 155645 bytes_in 0 155645 station_ip 37.129.71.25 155645 port 609 155645 unique_id port 155645 remote_ip 10.8.0.182 155653 username hashtadani4 155653 mac 155653 bytes_out 0 155653 bytes_in 0 155653 station_ip 37.129.71.25 155653 port 595 155653 unique_id port 155653 remote_ip 10.8.0.182 155655 username hashtadani4 155655 mac 155655 bytes_out 0 155655 bytes_in 0 155655 station_ip 37.129.71.25 155655 port 609 155655 unique_id port 155655 remote_ip 10.8.0.182 155666 username barzegar 155666 mac 155666 bytes_out 0 155666 bytes_in 0 155666 station_ip 5.120.180.37 155666 port 609 155666 unique_id port 155666 remote_ip 10.8.0.234 155668 username hashtadani4 155668 mac 155668 bytes_out 0 155668 bytes_in 0 155668 station_ip 37.129.71.25 155668 port 609 155668 unique_id port 155668 remote_ip 10.8.0.182 155670 username kordestani 155670 mac 155670 bytes_out 164848 155670 bytes_in 157274 155670 station_ip 151.235.78.216 155670 port 298 155670 unique_id port 155670 remote_ip 10.8.1.98 155674 username aminvpn 155674 kill_reason Another user logged on this global unique id 155674 mac 155674 bytes_out 0 155674 bytes_in 0 155674 station_ip 5.119.123.155 155674 port 609 155674 unique_id port 155674 remote_ip 10.8.0.14 155675 username hashtadani4 155675 mac 155675 bytes_out 0 155675 bytes_in 0 155633 mac 155633 bytes_out 0 155633 bytes_in 0 155633 station_ip 5.120.180.37 155633 port 595 155633 unique_id port 155633 remote_ip 10.8.0.234 155641 username farhad2 155641 mac 155641 bytes_out 93424 155641 bytes_in 373532 155641 station_ip 5.120.79.19 155641 port 609 155641 unique_id port 155641 remote_ip 10.8.0.190 155642 username barzegar 155642 mac 155642 bytes_out 0 155642 bytes_in 0 155642 station_ip 5.120.180.37 155642 port 609 155642 unique_id port 155642 remote_ip 10.8.0.234 155644 username hashtadani4 155644 mac 155644 bytes_out 0 155644 bytes_in 0 155644 station_ip 37.129.71.25 155644 port 609 155644 unique_id port 155644 remote_ip 10.8.0.182 155647 username farhad2 155647 mac 155647 bytes_out 1804812 155647 bytes_in 17653594 155647 station_ip 5.120.79.19 155647 port 595 155647 unique_id port 155647 remote_ip 10.8.0.190 155648 username farhad2 155648 mac 155648 bytes_out 67984 155648 bytes_in 160035 155648 station_ip 5.120.79.19 155648 port 595 155648 unique_id port 155648 remote_ip 10.8.0.190 155654 username barzegar 155654 mac 155654 bytes_out 0 155654 bytes_in 0 155654 station_ip 5.120.180.37 155654 port 595 155654 unique_id port 155654 remote_ip 10.8.0.234 155656 username tahmasebi 155656 kill_reason Maximum check online fails reached 155656 mac 155656 bytes_out 0 155656 bytes_in 0 155656 station_ip 77.42.112.59 155656 port 595 155656 unique_id port 155660 username hashtadani4 155660 mac 155660 bytes_out 0 155660 bytes_in 0 155660 station_ip 37.129.71.25 155660 port 609 155660 unique_id port 155660 remote_ip 10.8.0.182 155661 username hashtadani4 155661 mac 155661 bytes_out 0 155661 bytes_in 0 155661 station_ip 37.129.71.25 155661 port 612 155661 unique_id port 155661 remote_ip 10.8.0.182 155667 username hashtadani4 155667 mac 155667 bytes_out 0 155667 bytes_in 0 155667 station_ip 37.129.71.25 155667 port 609 155667 unique_id port 155667 remote_ip 10.8.0.182 155669 username barzegar 155669 mac 155669 bytes_out 0 155669 bytes_in 0 155669 station_ip 5.120.180.37 155669 port 610 155669 unique_id port 155669 remote_ip 10.8.0.234 155671 username hashtadani4 155671 mac 155671 bytes_out 0 155671 bytes_in 0 155671 station_ip 37.129.71.25 155671 port 610 155671 unique_id port 155671 remote_ip 10.8.0.182 155675 station_ip 37.129.71.25 155675 port 610 155675 unique_id port 155675 remote_ip 10.8.0.182 155676 station_ip 37.129.71.25 155676 port 612 155676 unique_id port 155676 remote_ip 10.8.0.182 155677 username tahmasebi 155677 mac 155677 bytes_out 0 155677 bytes_in 0 155677 station_ip 77.42.112.59 155677 port 612 155677 unique_id port 155677 remote_ip 10.8.0.42 155678 username barzegar 155678 mac 155678 bytes_out 0 155678 bytes_in 0 155678 station_ip 5.120.180.37 155678 port 612 155678 unique_id port 155678 remote_ip 10.8.0.234 155679 username hashtadani4 155679 mac 155679 bytes_out 0 155679 bytes_in 0 155679 station_ip 37.129.71.25 155679 port 612 155679 unique_id port 155679 remote_ip 10.8.0.182 155680 username afarin1 155680 kill_reason Another user logged on this global unique id 155680 mac 155680 bytes_out 0 155680 bytes_in 0 155680 station_ip 113.203.23.39 155680 port 610 155680 unique_id port 155680 remote_ip 10.8.0.38 155681 username hashtadani4 155681 mac 155681 bytes_out 2429 155681 bytes_in 4706 155681 station_ip 37.129.71.25 155681 port 614 155681 unique_id port 155681 remote_ip 10.8.0.182 155682 username kordestani 155682 mac 155635 mac 155635 bytes_out 13990 155635 bytes_in 22616 155635 station_ip 5.120.79.19 155635 port 609 155635 unique_id port 155635 remote_ip 10.8.0.190 155636 username kordestani 155636 mac 155636 bytes_out 0 155636 bytes_in 0 155636 station_ip 151.235.74.11 155636 port 298 155636 unique_id port 155636 remote_ip 10.8.1.98 155638 username farhad2 155638 mac 155638 bytes_out 0 155638 bytes_in 0 155638 station_ip 5.120.79.19 155638 port 609 155638 unique_id port 155638 remote_ip 10.8.0.190 155639 username kalantary 155639 mac 155639 bytes_out 477662 155639 bytes_in 2337572 155639 station_ip 83.122.44.139 155639 port 595 155639 unique_id port 155639 remote_ip 10.8.0.98 155640 username hashtadani4 155640 mac 155640 bytes_out 0 155640 bytes_in 0 155640 station_ip 37.129.71.25 155640 port 595 155640 unique_id port 155640 remote_ip 10.8.0.182 155646 username hashtadani4 155646 mac 155646 bytes_out 0 155646 bytes_in 0 155646 station_ip 37.129.71.25 155646 port 609 155646 unique_id port 155646 remote_ip 10.8.0.182 155649 username barzegar 155649 mac 155649 bytes_out 0 155649 bytes_in 0 155649 station_ip 5.120.180.37 155649 port 609 155649 unique_id port 155649 remote_ip 10.8.0.234 155650 username tahmasebi 155650 mac 155650 bytes_out 0 155650 bytes_in 0 155650 station_ip 77.42.112.59 155650 port 595 155650 unique_id port 155650 remote_ip 10.8.0.42 155651 username hashtadani4 155651 mac 155651 bytes_out 2005 155651 bytes_in 4547 155651 station_ip 37.129.71.25 155651 port 595 155651 unique_id port 155651 remote_ip 10.8.0.182 155652 username hashtadani4 155652 mac 155652 bytes_out 0 155652 bytes_in 0 155652 station_ip 37.129.71.25 155652 port 595 155652 unique_id port 155652 remote_ip 10.8.0.182 155657 username tahmasebi 155657 mac 155657 bytes_out 0 155657 bytes_in 0 155657 station_ip 77.42.112.59 155657 port 307 155657 unique_id port 155657 remote_ip 10.8.1.90 155658 username barzegar 155658 mac 155658 bytes_out 0 155658 bytes_in 0 155658 station_ip 5.120.180.37 155658 port 609 155658 unique_id port 155658 remote_ip 10.8.0.234 155659 username hashtadani4 155659 mac 155659 bytes_out 0 155659 bytes_in 0 155659 station_ip 37.129.71.25 155659 port 609 155659 unique_id port 155659 remote_ip 10.8.0.182 155662 username barzegar 155662 mac 155662 bytes_out 0 155662 bytes_in 0 155662 station_ip 5.120.180.37 155662 port 609 155662 unique_id port 155662 remote_ip 10.8.0.234 155663 username kalantary 155663 mac 155663 bytes_out 0 155663 bytes_in 0 155663 station_ip 83.122.1.115 155663 port 610 155663 unique_id port 155663 remote_ip 10.8.0.98 155664 username hashtadani4 155664 mac 155664 bytes_out 0 155664 bytes_in 0 155664 station_ip 37.129.71.25 155664 port 609 155664 unique_id port 155664 remote_ip 10.8.0.182 155665 username pourshad 155665 kill_reason Another user logged on this global unique id 155665 mac 155665 bytes_out 0 155665 bytes_in 0 155665 station_ip 83.122.97.143 155665 port 557 155665 unique_id port 155672 username barzegar 155672 mac 155672 bytes_out 0 155672 bytes_in 0 155672 station_ip 5.120.180.37 155672 port 610 155672 unique_id port 155672 remote_ip 10.8.0.234 155673 username barzegar 155673 mac 155673 bytes_out 0 155673 bytes_in 0 155673 station_ip 5.120.180.37 155673 port 610 155673 unique_id port 155673 remote_ip 10.8.0.234 155676 username hashtadani4 155676 mac 155676 bytes_out 0 155676 bytes_in 0 155682 bytes_out 0 155682 bytes_in 0 155682 station_ip 151.235.78.107 155682 port 298 155682 unique_id port 155682 remote_ip 10.8.1.98 155685 username hashtadani4 155685 mac 155685 bytes_out 0 155685 bytes_in 0 155685 station_ip 37.129.71.25 155685 port 614 155685 unique_id port 155685 remote_ip 10.8.0.182 155686 username hashtadani4 155686 mac 155686 bytes_out 0 155686 bytes_in 0 155686 station_ip 37.129.71.25 155686 port 614 155686 unique_id port 155686 remote_ip 10.8.0.182 155687 username mehdizare 155687 mac 155687 bytes_out 0 155687 bytes_in 0 155687 station_ip 5.120.191.154 155687 port 612 155687 unique_id port 155687 remote_ip 10.8.0.90 155689 username hashtadani4 155689 mac 155689 bytes_out 0 155689 bytes_in 0 155689 station_ip 37.129.71.25 155689 port 612 155689 unique_id port 155689 remote_ip 10.8.0.182 155690 username tahmasebi 155690 mac 155690 bytes_out 0 155690 bytes_in 0 155690 station_ip 77.42.112.59 155690 port 612 155690 unique_id port 155690 remote_ip 10.8.0.42 155693 username ayobi 155693 kill_reason Another user logged on this global unique id 155693 mac 155693 bytes_out 0 155693 bytes_in 0 155693 station_ip 37.27.4.94 155693 port 598 155693 unique_id port 155696 username aminvpn 155696 kill_reason Another user logged on this global unique id 155696 mac 155696 bytes_out 0 155696 bytes_in 0 155696 station_ip 5.119.123.155 155696 port 609 155696 unique_id port 155700 username barzegar 155700 mac 155700 bytes_out 0 155700 bytes_in 0 155700 station_ip 5.120.180.37 155700 port 615 155700 unique_id port 155700 remote_ip 10.8.0.234 155705 username aminvpn 155705 mac 155705 bytes_out 0 155705 bytes_in 0 155705 station_ip 5.119.123.155 155705 port 609 155705 unique_id port 155708 username kordestani 155708 mac 155708 bytes_out 0 155708 bytes_in 0 155708 station_ip 151.235.93.66 155708 port 298 155708 unique_id port 155708 remote_ip 10.8.1.98 155710 username barzegar 155710 mac 155710 bytes_out 0 155710 bytes_in 0 155710 station_ip 5.120.180.37 155710 port 612 155710 unique_id port 155710 remote_ip 10.8.0.234 155712 username tahmasebi 155712 mac 155712 bytes_out 0 155712 bytes_in 0 155712 station_ip 77.42.112.59 155712 port 609 155712 unique_id port 155712 remote_ip 10.8.0.42 155714 username mohammadjavad 155714 mac 155714 bytes_out 241726 155714 bytes_in 1058319 155714 station_ip 83.122.187.244 155714 port 612 155714 unique_id port 155714 remote_ip 10.8.0.142 155716 username mohammadjavad 155716 mac 155716 bytes_out 39714 155716 bytes_in 55517 155716 station_ip 83.122.187.244 155716 port 615 155716 unique_id port 155716 remote_ip 10.8.0.142 155719 username aminvpn 155719 mac 155719 bytes_out 0 155719 bytes_in 0 155719 station_ip 5.120.50.58 155719 port 612 155719 unique_id port 155719 remote_ip 10.8.0.14 155722 username sabaghnezhad 155722 mac 155722 bytes_out 0 155722 bytes_in 0 155722 station_ip 83.122.171.132 155722 port 612 155722 unique_id port 155722 remote_ip 10.8.0.186 155723 username sedighe 155723 mac 155723 bytes_out 0 155723 bytes_in 0 155723 station_ip 83.123.234.175 155723 port 615 155723 unique_id port 155723 remote_ip 10.8.0.146 155724 username hassan 155724 mac 155724 bytes_out 0 155724 bytes_in 0 155724 station_ip 5.120.9.199 155724 port 609 155724 unique_id port 155727 username tahmasebi 155727 mac 155727 bytes_out 0 155727 bytes_in 0 155727 station_ip 77.42.112.59 155727 port 307 155727 unique_id port 155683 username aminvpn 155683 kill_reason Another user logged on this global unique id 155683 mac 155683 bytes_out 0 155683 bytes_in 0 155683 station_ip 5.119.123.155 155683 port 609 155683 unique_id port 155684 username barzegar 155684 mac 155684 bytes_out 0 155684 bytes_in 0 155684 station_ip 5.120.180.37 155684 port 615 155684 unique_id port 155684 remote_ip 10.8.0.234 155691 username tahmasebi 155691 mac 155691 bytes_out 0 155691 bytes_in 0 155691 station_ip 77.42.112.59 155691 port 612 155691 unique_id port 155691 remote_ip 10.8.0.42 155698 username tahmasebi 155698 mac 155698 bytes_out 0 155698 bytes_in 0 155698 station_ip 77.42.112.59 155698 port 615 155698 unique_id port 155698 remote_ip 10.8.0.42 155699 username hashtadani4 155699 kill_reason Another user logged on this global unique id 155699 mac 155699 bytes_out 0 155699 bytes_in 0 155699 station_ip 37.129.71.25 155699 port 612 155699 unique_id port 155699 remote_ip 10.8.0.182 155701 username hashtadani4 155701 kill_reason Another user logged on this global unique id 155701 mac 155701 bytes_out 0 155701 bytes_in 0 155701 station_ip 37.129.71.25 155701 port 612 155701 unique_id port 155702 username tahmasebi 155702 mac 155702 bytes_out 0 155702 bytes_in 0 155702 station_ip 77.42.112.59 155702 port 615 155702 unique_id port 155702 remote_ip 10.8.0.42 155704 username hashtadani4 155704 mac 155704 bytes_out 0 155704 bytes_in 0 155704 station_ip 37.129.71.25 155704 port 612 155704 unique_id port 155709 username tahmasebi 155709 mac 155709 bytes_out 0 155709 bytes_in 0 155709 station_ip 77.42.112.59 155709 port 612 155709 unique_id port 155709 remote_ip 10.8.0.42 155721 username hassan 155721 kill_reason Another user logged on this global unique id 155721 mac 155721 bytes_out 0 155721 bytes_in 0 155721 station_ip 5.120.9.199 155721 port 609 155721 unique_id port 155730 username barzegar 155730 mac 155730 bytes_out 0 155730 bytes_in 0 155730 station_ip 5.120.180.37 155730 port 615 155730 unique_id port 155730 remote_ip 10.8.0.234 155738 username barzegar 155738 mac 155738 bytes_out 0 155738 bytes_in 0 155738 station_ip 5.120.180.37 155738 port 616 155738 unique_id port 155738 remote_ip 10.8.0.234 155739 username mirzaei 155739 kill_reason Another user logged on this global unique id 155739 mac 155739 bytes_out 0 155739 bytes_in 0 155739 station_ip 5.119.233.107 155739 port 611 155739 unique_id port 155740 username tahmasebi 155740 kill_reason Maximum check online fails reached 155740 mac 155740 bytes_out 0 155740 bytes_in 0 155740 station_ip 77.42.112.59 155740 port 616 155740 unique_id port 155741 username nilufarrajaei 155741 kill_reason Another user logged on this global unique id 155741 mac 155741 bytes_out 0 155741 bytes_in 0 155741 station_ip 83.123.177.124 155741 port 298 155741 unique_id port 155741 remote_ip 10.8.1.166 155744 username mohammadjavad 155744 mac 155744 bytes_out 712505 155744 bytes_in 12699832 155744 station_ip 37.129.129.211 155744 port 613 155744 unique_id port 155744 remote_ip 10.8.0.142 155746 username malekpoir 155746 mac 155746 bytes_out 803213 155746 bytes_in 8599180 155746 station_ip 5.120.134.188 155746 port 619 155746 unique_id port 155746 remote_ip 10.8.0.58 155748 username tahmasebi 155748 mac 155748 bytes_out 0 155748 bytes_in 0 155748 station_ip 77.42.112.59 155748 port 619 155748 unique_id port 155748 remote_ip 10.8.0.42 155751 username barzegar 155751 mac 155751 bytes_out 0 155751 bytes_in 0 155751 station_ip 5.120.180.37 155751 port 309 155688 username hashtadani4 155688 mac 155688 bytes_out 3185 155688 bytes_in 5614 155688 station_ip 37.129.71.25 155688 port 298 155688 unique_id port 155688 remote_ip 10.8.1.142 155692 username tahmasebi 155692 mac 155692 bytes_out 0 155692 bytes_in 0 155692 station_ip 77.42.112.59 155692 port 612 155692 unique_id port 155692 remote_ip 10.8.0.42 155694 username hashtadani4 155694 mac 155694 bytes_out 0 155694 bytes_in 0 155694 station_ip 37.129.71.25 155694 port 615 155694 unique_id port 155694 remote_ip 10.8.0.182 155695 username barzegar 155695 mac 155695 bytes_out 0 155695 bytes_in 0 155695 station_ip 5.120.180.37 155695 port 615 155695 unique_id port 155695 remote_ip 10.8.0.234 155697 username mehdizare 155697 kill_reason Another user logged on this global unique id 155697 mac 155697 bytes_out 0 155697 bytes_in 0 155697 station_ip 113.203.108.92 155697 port 614 155697 unique_id port 155697 remote_ip 10.8.0.90 155703 username tahmasebi 155703 mac 155703 bytes_out 0 155703 bytes_in 0 155703 station_ip 77.42.112.59 155703 port 615 155703 unique_id port 155703 remote_ip 10.8.0.42 155706 username barzegar 155706 mac 155706 bytes_out 0 155706 bytes_in 0 155706 station_ip 5.120.180.37 155706 port 609 155706 unique_id port 155706 remote_ip 10.8.0.234 155707 username tahmasebi 155707 mac 155707 bytes_out 0 155707 bytes_in 0 155707 station_ip 77.42.112.59 155707 port 307 155707 unique_id port 155707 remote_ip 10.8.1.90 155711 username kalantary 155711 mac 155711 bytes_out 539355 155711 bytes_in 2397403 155711 station_ip 83.122.44.115 155711 port 609 155711 unique_id port 155711 remote_ip 10.8.0.98 155713 username barzegar 155713 mac 155713 bytes_out 0 155713 bytes_in 0 155713 station_ip 5.120.180.37 155713 port 612 155713 unique_id port 155713 remote_ip 10.8.0.234 155715 username hassan 155715 kill_reason Another user logged on this global unique id 155715 mac 155715 bytes_out 0 155715 bytes_in 0 155715 station_ip 5.120.9.199 155715 port 609 155715 unique_id port 155715 remote_ip 10.8.0.122 155717 username barzegar 155717 mac 155717 bytes_out 0 155717 bytes_in 0 155717 station_ip 5.120.180.37 155717 port 612 155717 unique_id port 155717 remote_ip 10.8.0.234 155718 username hassan 155718 kill_reason Another user logged on this global unique id 155718 mac 155718 bytes_out 0 155718 bytes_in 0 155718 station_ip 5.120.9.199 155718 port 609 155718 unique_id port 155720 username barzegar 155720 mac 155720 bytes_out 0 155720 bytes_in 0 155720 station_ip 5.120.180.37 155720 port 612 155720 unique_id port 155720 remote_ip 10.8.0.234 155725 username sedighe 155725 mac 155725 bytes_out 25487 155725 bytes_in 53025 155725 station_ip 83.123.234.175 155725 port 609 155725 unique_id port 155725 remote_ip 10.8.0.146 155726 username barzegar 155726 mac 155726 bytes_out 0 155726 bytes_in 0 155726 station_ip 5.120.180.37 155726 port 609 155726 unique_id port 155726 remote_ip 10.8.0.234 155729 username alikomsari 155729 kill_reason Another user logged on this global unique id 155729 mac 155729 bytes_out 0 155729 bytes_in 0 155729 station_ip 5.120.127.35 155729 port 613 155729 unique_id port 155731 username milan 155731 kill_reason Another user logged on this global unique id 155731 mac 155731 bytes_out 0 155731 bytes_in 0 155731 station_ip 5.119.176.40 155731 port 609 155731 unique_id port 155731 remote_ip 10.8.0.218 155737 username alikomsari 155737 mac 155737 bytes_out 0 155737 bytes_in 0 155737 station_ip 5.120.127.35 155727 remote_ip 10.8.1.90 155728 username barzegar 155728 mac 155728 bytes_out 0 155728 bytes_in 0 155728 station_ip 5.120.180.37 155728 port 609 155728 unique_id port 155728 remote_ip 10.8.0.234 155732 username mohammadjavad 155732 mac 155732 bytes_out 0 155732 bytes_in 0 155732 station_ip 37.129.180.223 155732 port 307 155732 unique_id port 155732 remote_ip 10.8.1.146 155733 username barzegar 155733 mac 155733 bytes_out 0 155733 bytes_in 0 155733 station_ip 5.120.180.37 155733 port 616 155733 unique_id port 155733 remote_ip 10.8.0.234 155734 username aminvpn 155734 mac 155734 bytes_out 323616 155734 bytes_in 3366072 155734 station_ip 5.120.35.70 155734 port 615 155734 unique_id port 155734 remote_ip 10.8.0.14 155735 username milan 155735 kill_reason Another user logged on this global unique id 155735 mac 155735 bytes_out 0 155735 bytes_in 0 155735 station_ip 5.119.176.40 155735 port 609 155735 unique_id port 155736 username alikomsari 155736 kill_reason Maximum number of concurrent logins reached 155736 mac 155736 bytes_out 0 155736 bytes_in 0 155736 station_ip 5.120.127.35 155736 port 615 155736 unique_id port 155743 username khademi 155743 mac 155743 bytes_out 0 155743 bytes_in 0 155743 station_ip 37.129.135.128 155743 port 309 155743 unique_id port 155745 username barzegar 155745 mac 155745 bytes_out 13637 155745 bytes_in 25072 155745 station_ip 5.120.180.37 155745 port 620 155745 unique_id port 155745 remote_ip 10.8.0.234 155747 username mosi 155747 mac 155747 bytes_out 358225 155747 bytes_in 3990253 155747 station_ip 151.235.89.191 155747 port 612 155747 unique_id port 155747 remote_ip 10.8.0.138 155749 username barzegar 155749 mac 155749 bytes_out 19656 155749 bytes_in 216370 155749 station_ip 5.120.180.37 155749 port 613 155749 unique_id port 155749 remote_ip 10.8.0.234 155753 username barzegar 155753 mac 155753 bytes_out 0 155753 bytes_in 0 155753 station_ip 5.120.180.37 155753 port 309 155753 unique_id port 155753 remote_ip 10.8.1.174 155754 username forozandeh1 155754 mac 155754 bytes_out 748165 155754 bytes_in 6517527 155754 station_ip 83.122.197.248 155754 port 613 155754 unique_id port 155754 remote_ip 10.8.0.130 155756 username tahmasebi 155756 mac 155756 bytes_out 0 155756 bytes_in 0 155756 station_ip 77.42.112.59 155756 port 309 155756 unique_id port 155756 remote_ip 10.8.1.90 155759 username barzegar 155759 mac 155759 bytes_out 0 155759 bytes_in 0 155759 station_ip 5.120.180.37 155759 port 620 155759 unique_id port 155759 remote_ip 10.8.0.234 155760 username barzegar 155760 mac 155760 bytes_out 0 155760 bytes_in 0 155760 station_ip 5.120.180.37 155760 port 620 155760 unique_id port 155760 remote_ip 10.8.0.234 155763 username sekonji3 155763 mac 155763 bytes_out 3944 155763 bytes_in 11106 155763 station_ip 37.129.231.72 155763 port 309 155763 unique_id port 155763 remote_ip 10.8.1.238 155765 username barzegar 155765 mac 155765 bytes_out 0 155765 bytes_in 0 155765 station_ip 5.120.180.37 155765 port 309 155765 unique_id port 155765 remote_ip 10.8.1.174 155766 username sekonji3 155766 mac 155766 bytes_out 0 155766 bytes_in 0 155766 station_ip 37.129.231.72 155766 port 621 155766 unique_id port 155766 remote_ip 10.8.0.6 155769 username mohammadjavad 155769 mac 155769 bytes_out 0 155769 bytes_in 0 155769 station_ip 37.129.193.27 155769 port 619 155769 unique_id port 155769 remote_ip 10.8.0.142 155770 username sekonji3 155770 mac 155737 port 613 155737 unique_id port 155742 username tahmasebi 155742 kill_reason Maximum check online fails reached 155742 mac 155742 bytes_out 0 155742 bytes_in 0 155742 station_ip 77.42.112.59 155742 port 307 155742 unique_id port 155750 username mohammadjavad 155750 mac 155750 bytes_out 100825 155750 bytes_in 2867534 155750 station_ip 83.122.87.116 155750 port 613 155750 unique_id port 155750 remote_ip 10.8.0.142 155761 username tahmasebi 155761 kill_reason Maximum check online fails reached 155761 mac 155761 bytes_out 0 155761 bytes_in 0 155761 station_ip 77.42.112.59 155761 port 612 155761 unique_id port 155771 username jafari 155771 kill_reason Another user logged on this global unique id 155771 mac 155771 bytes_out 0 155771 bytes_in 0 155771 station_ip 92.114.78.67 155771 port 620 155771 unique_id port 155771 remote_ip 10.8.0.242 155772 username forozandeh1 155772 mac 155772 bytes_out 0 155772 bytes_in 0 155772 station_ip 37.129.5.50 155772 port 613 155772 unique_id port 155772 remote_ip 10.8.0.130 155774 username vanila 155774 mac 155774 bytes_out 0 155774 bytes_in 0 155774 station_ip 83.123.150.203 155774 port 621 155774 unique_id port 155774 remote_ip 10.8.0.178 155775 username vanila 155775 mac 155775 bytes_out 0 155775 bytes_in 0 155775 station_ip 83.123.150.203 155775 port 613 155775 unique_id port 155775 remote_ip 10.8.0.178 155776 username sekonji3 155776 mac 155776 bytes_out 0 155776 bytes_in 0 155776 station_ip 37.129.231.72 155776 port 613 155776 unique_id port 155776 remote_ip 10.8.0.6 155777 username jafari 155777 kill_reason Another user logged on this global unique id 155777 mac 155777 bytes_out 0 155777 bytes_in 0 155777 station_ip 92.114.78.67 155777 port 620 155777 unique_id port 155796 username sekonji3 155796 mac 155796 bytes_out 0 155796 bytes_in 0 155796 station_ip 37.129.231.72 155796 port 615 155796 unique_id port 155796 remote_ip 10.8.0.6 155798 username tahmasebi 155798 mac 155798 bytes_out 0 155798 bytes_in 0 155798 station_ip 77.42.112.59 155798 port 309 155798 unique_id port 155798 remote_ip 10.8.1.90 155803 username hosseine 155803 kill_reason Another user logged on this global unique id 155803 mac 155803 bytes_out 0 155803 bytes_in 0 155803 station_ip 37.129.123.202 155803 port 618 155803 unique_id port 155807 username mohammadjavad 155807 mac 155807 bytes_out 0 155807 bytes_in 0 155807 station_ip 83.122.40.144 155807 port 619 155807 unique_id port 155807 remote_ip 10.8.0.142 155811 username pourshad 155811 kill_reason Another user logged on this global unique id 155811 mac 155811 bytes_out 0 155811 bytes_in 0 155811 station_ip 83.122.97.143 155811 port 557 155811 unique_id port 155818 username barzegar 155818 mac 155818 bytes_out 0 155818 bytes_in 0 155818 station_ip 5.120.180.37 155818 port 613 155818 unique_id port 155818 remote_ip 10.8.0.234 155819 username sedighe 155819 mac 155819 bytes_out 0 155819 bytes_in 0 155819 station_ip 37.129.91.210 155819 port 621 155819 unique_id port 155819 remote_ip 10.8.0.146 155824 username aminvpn 155824 mac 155824 bytes_out 0 155824 bytes_in 0 155824 station_ip 5.120.35.70 155824 port 615 155824 unique_id port 155824 remote_ip 10.8.0.14 155825 username tahmasebi 155825 mac 155825 bytes_out 0 155825 bytes_in 0 155825 station_ip 77.42.112.59 155825 port 614 155825 unique_id port 155825 remote_ip 10.8.0.42 155826 username sekonji3 155826 mac 155826 bytes_out 0 155826 bytes_in 0 155826 station_ip 37.129.231.72 155751 unique_id port 155751 remote_ip 10.8.1.174 155752 username tahmasebi 155752 mac 155752 bytes_out 0 155752 bytes_in 0 155752 station_ip 77.42.112.59 155752 port 613 155752 unique_id port 155752 remote_ip 10.8.0.42 155755 username rezaei 155755 mac 155755 bytes_out 0 155755 bytes_in 0 155755 station_ip 5.120.7.208 155755 port 311 155755 unique_id port 155755 remote_ip 10.8.1.58 155757 username sedighe 155757 mac 155757 bytes_out 3104343 155757 bytes_in 44646107 155757 station_ip 83.122.132.13 155757 port 612 155757 unique_id port 155757 remote_ip 10.8.0.146 155758 username forozandeh1 155758 mac 155758 bytes_out 133306 155758 bytes_in 450157 155758 station_ip 83.123.40.161 155758 port 621 155758 unique_id port 155758 remote_ip 10.8.0.130 155762 username barzegar 155762 mac 155762 bytes_out 0 155762 bytes_in 0 155762 station_ip 5.120.180.37 155762 port 620 155762 unique_id port 155762 remote_ip 10.8.0.234 155764 username godarzi 155764 mac 155764 bytes_out 0 155764 bytes_in 0 155764 station_ip 5.202.24.27 155764 port 619 155764 unique_id port 155764 remote_ip 10.8.0.174 155767 username vanila 155767 mac 155767 bytes_out 0 155767 bytes_in 0 155767 station_ip 83.123.150.203 155767 port 613 155767 unique_id port 155767 remote_ip 10.8.0.178 155768 username forozandeh1 155768 mac 155768 bytes_out 0 155768 bytes_in 0 155768 station_ip 83.122.104.10 155768 port 622 155768 unique_id port 155768 remote_ip 10.8.0.130 155773 username forozandeh1 155773 mac 155773 bytes_out 0 155773 bytes_in 0 155773 station_ip 37.129.103.179 155773 port 613 155773 unique_id port 155773 remote_ip 10.8.0.130 155780 username jafari 155780 mac 155780 bytes_out 0 155780 bytes_in 0 155780 station_ip 92.114.78.67 155780 port 620 155780 unique_id port 155781 username sekonji3 155781 mac 155781 bytes_out 0 155781 bytes_in 0 155781 station_ip 37.129.231.72 155781 port 619 155781 unique_id port 155781 remote_ip 10.8.0.6 155782 username sekonji3 155782 mac 155782 bytes_out 0 155782 bytes_in 0 155782 station_ip 37.129.231.72 155782 port 619 155782 unique_id port 155782 remote_ip 10.8.0.6 155787 username sekonji3 155787 mac 155787 bytes_out 0 155787 bytes_in 0 155787 station_ip 37.129.231.72 155787 port 613 155787 unique_id port 155787 remote_ip 10.8.0.6 155789 username barzegar 155789 mac 155789 bytes_out 199499 155789 bytes_in 1540456 155789 station_ip 5.120.180.37 155789 port 309 155789 unique_id port 155789 remote_ip 10.8.1.174 155790 username barzegar 155790 mac 155790 bytes_out 0 155790 bytes_in 0 155790 station_ip 5.120.180.37 155790 port 309 155790 unique_id port 155790 remote_ip 10.8.1.174 155791 username sekonji3 155791 mac 155791 bytes_out 0 155791 bytes_in 0 155791 station_ip 37.129.231.72 155791 port 613 155791 unique_id port 155791 remote_ip 10.8.0.6 155792 username barzegar 155792 mac 155792 bytes_out 0 155792 bytes_in 0 155792 station_ip 5.120.180.37 155792 port 613 155792 unique_id port 155792 remote_ip 10.8.0.234 155794 username aminvpn 155794 mac 155794 bytes_out 0 155794 bytes_in 0 155794 station_ip 5.120.35.70 155794 port 615 155794 unique_id port 155794 remote_ip 10.8.0.14 155797 username sekonji3 155797 mac 155797 bytes_out 0 155797 bytes_in 0 155797 station_ip 37.129.231.72 155797 port 615 155797 unique_id port 155797 remote_ip 10.8.0.6 155800 username aminvpn 155800 mac 155800 bytes_out 0 155770 bytes_out 0 155770 bytes_in 0 155770 station_ip 37.129.231.72 155770 port 619 155770 unique_id port 155770 remote_ip 10.8.0.6 155778 username sekonji3 155778 mac 155778 bytes_out 0 155778 bytes_in 0 155778 station_ip 37.129.231.72 155778 port 619 155778 unique_id port 155778 remote_ip 10.8.0.6 155779 username barzegar 155779 mac 155779 bytes_out 324247 155779 bytes_in 2704907 155779 station_ip 5.120.180.37 155779 port 309 155779 unique_id port 155779 remote_ip 10.8.1.174 155783 username godarzi 155783 mac 155783 bytes_out 0 155783 bytes_in 0 155783 station_ip 5.119.242.251 155783 port 613 155783 unique_id port 155783 remote_ip 10.8.0.174 155784 username hosseine 155784 kill_reason Another user logged on this global unique id 155784 mac 155784 bytes_out 0 155784 bytes_in 0 155784 station_ip 37.129.123.202 155784 port 618 155784 unique_id port 155784 remote_ip 10.8.0.238 155785 username sekonji3 155785 mac 155785 bytes_out 0 155785 bytes_in 0 155785 station_ip 37.129.231.72 155785 port 613 155785 unique_id port 155785 remote_ip 10.8.0.6 155786 username sekonji3 155786 mac 155786 bytes_out 0 155786 bytes_in 0 155786 station_ip 37.129.231.72 155786 port 613 155786 unique_id port 155786 remote_ip 10.8.0.6 155788 username sekonji3 155788 mac 155788 bytes_out 0 155788 bytes_in 0 155788 station_ip 37.129.231.72 155788 port 613 155788 unique_id port 155788 remote_ip 10.8.0.6 155793 username barzegar 155793 mac 155793 bytes_out 0 155793 bytes_in 0 155793 station_ip 5.120.180.37 155793 port 613 155793 unique_id port 155793 remote_ip 10.8.0.234 155795 username barzegar 155795 mac 155795 bytes_out 0 155795 bytes_in 0 155795 station_ip 5.120.180.37 155795 port 619 155795 unique_id port 155795 remote_ip 10.8.0.234 155799 username aminvpn 155799 mac 155799 bytes_out 0 155799 bytes_in 0 155799 station_ip 5.120.50.58 155799 port 613 155799 unique_id port 155799 remote_ip 10.8.0.14 155802 username aminvpn 155802 mac 155802 bytes_out 223981 155802 bytes_in 1413971 155802 station_ip 5.120.50.58 155802 port 620 155802 unique_id port 155802 remote_ip 10.8.0.14 155804 username barzegar 155804 mac 155804 bytes_out 0 155804 bytes_in 0 155804 station_ip 5.120.180.37 155804 port 309 155804 unique_id port 155804 remote_ip 10.8.1.174 155806 username sedighe 155806 mac 155806 bytes_out 0 155806 bytes_in 0 155806 station_ip 37.129.91.210 155806 port 613 155806 unique_id port 155806 remote_ip 10.8.0.146 155809 username pourshad 155809 kill_reason Another user logged on this global unique id 155809 mac 155809 bytes_out 0 155809 bytes_in 0 155809 station_ip 83.122.97.143 155809 port 557 155809 unique_id port 155810 username sekonji3 155810 mac 155810 bytes_out 0 155810 bytes_in 0 155810 station_ip 37.129.231.72 155810 port 622 155810 unique_id port 155810 remote_ip 10.8.0.6 155812 username tahmasebi 155812 mac 155812 bytes_out 26237 155812 bytes_in 67716 155812 station_ip 77.42.112.59 155812 port 613 155812 unique_id port 155812 remote_ip 10.8.0.42 155814 username barzegar 155814 mac 155814 bytes_out 3243 155814 bytes_in 5513 155814 station_ip 5.120.180.37 155814 port 619 155814 unique_id port 155814 remote_ip 10.8.0.234 155816 username vanila 155816 kill_reason Another user logged on this global unique id 155816 mac 155816 bytes_out 0 155816 bytes_in 0 155816 station_ip 83.123.197.131 155816 port 620 155816 unique_id port 155816 remote_ip 10.8.0.178 155817 username mehdizare 155800 bytes_in 0 155800 station_ip 5.120.35.70 155800 port 615 155800 unique_id port 155800 remote_ip 10.8.0.14 155801 username tahmasebi 155801 mac 155801 bytes_out 0 155801 bytes_in 0 155801 station_ip 77.42.112.59 155801 port 615 155801 unique_id port 155801 remote_ip 10.8.0.42 155805 username sekonji3 155805 mac 155805 bytes_out 0 155805 bytes_in 0 155805 station_ip 37.129.231.72 155805 port 620 155805 unique_id port 155805 remote_ip 10.8.0.6 155808 username pourshad 155808 kill_reason Another user logged on this global unique id 155808 mac 155808 bytes_out 0 155808 bytes_in 0 155808 station_ip 83.122.97.143 155808 port 557 155808 unique_id port 155813 username tahmasebi 155813 mac 155813 bytes_out 0 155813 bytes_in 0 155813 station_ip 77.42.112.59 155813 port 613 155813 unique_id port 155813 remote_ip 10.8.0.42 155815 username pourshad 155815 kill_reason Another user logged on this global unique id 155815 mac 155815 bytes_out 0 155815 bytes_in 0 155815 station_ip 83.122.97.143 155815 port 557 155815 unique_id port 155820 username sekonji3 155820 mac 155820 bytes_out 0 155820 bytes_in 0 155820 station_ip 37.129.231.72 155820 port 613 155820 unique_id port 155820 remote_ip 10.8.0.6 155827 username vanila 155827 mac 155827 bytes_out 0 155827 bytes_in 0 155827 station_ip 83.123.197.131 155827 port 620 155827 unique_id port 155830 username sekonji3 155830 mac 155830 bytes_out 4890 155830 bytes_in 12447 155830 station_ip 37.129.231.72 155830 port 614 155830 unique_id port 155830 remote_ip 10.8.0.6 155837 username barzegar 155837 mac 155837 bytes_out 0 155837 bytes_in 0 155837 station_ip 5.120.180.37 155837 port 614 155837 unique_id port 155837 remote_ip 10.8.0.234 155844 username sekonji3 155844 mac 155844 bytes_out 0 155844 bytes_in 0 155844 station_ip 37.129.231.72 155844 port 614 155844 unique_id port 155844 remote_ip 10.8.0.6 155847 username godarzi 155847 mac 155847 bytes_out 0 155847 bytes_in 0 155847 station_ip 5.119.242.251 155847 port 309 155847 unique_id port 155847 remote_ip 10.8.1.230 155848 username mirzaei 155848 mac 155848 bytes_out 66683 155848 bytes_in 215836 155848 station_ip 5.119.233.107 155848 port 611 155848 unique_id port 155848 remote_ip 10.8.0.66 155851 username sekonji3 155851 mac 155851 bytes_out 0 155851 bytes_in 0 155851 station_ip 37.129.231.72 155851 port 611 155851 unique_id port 155851 remote_ip 10.8.0.6 155855 username aminvpn 155855 mac 155855 bytes_out 0 155855 bytes_in 0 155855 station_ip 5.120.50.58 155855 port 615 155855 unique_id port 155855 remote_ip 10.8.0.14 155856 username godarzi 155856 mac 155856 bytes_out 74574 155856 bytes_in 279115 155856 station_ip 5.119.242.251 155856 port 309 155856 unique_id port 155856 remote_ip 10.8.1.230 155857 username sabaghnezhad 155857 mac 155857 bytes_out 0 155857 bytes_in 0 155857 station_ip 37.129.243.42 155857 port 309 155857 unique_id port 155857 remote_ip 10.8.1.130 155862 username sekonji3 155862 mac 155862 bytes_out 2347 155862 bytes_in 4595 155862 station_ip 37.129.182.236 155862 port 309 155862 unique_id port 155862 remote_ip 10.8.1.238 155865 username sekonji3 155865 mac 155865 bytes_out 0 155865 bytes_in 0 155865 station_ip 37.129.182.236 155865 port 309 155865 unique_id port 155865 remote_ip 10.8.1.238 155867 username sekonji3 155867 mac 155867 bytes_out 0 155867 bytes_in 0 155867 station_ip 37.129.182.236 155867 port 309 155817 mac 155817 bytes_out 0 155817 bytes_in 0 155817 station_ip 113.203.108.92 155817 port 614 155817 unique_id port 155821 username mehdizare 155821 mac 155821 bytes_out 0 155821 bytes_in 0 155821 station_ip 113.203.108.92 155821 port 619 155821 unique_id port 155821 remote_ip 10.8.0.90 155822 username tahmasebi 155822 mac 155822 bytes_out 0 155822 bytes_in 0 155822 station_ip 77.42.112.59 155822 port 309 155822 unique_id port 155822 remote_ip 10.8.1.90 155823 username meysam 155823 mac 155823 bytes_out 0 155823 bytes_in 0 155823 station_ip 188.159.252.69 155823 port 613 155823 unique_id port 155823 remote_ip 10.8.0.110 155832 username barzegar 155832 mac 155832 bytes_out 2536 155832 bytes_in 4869 155832 station_ip 5.120.180.37 155832 port 614 155832 unique_id port 155832 remote_ip 10.8.0.234 155833 username kalantary 155833 mac 155833 bytes_out 790327 155833 bytes_in 6413074 155833 station_ip 83.122.29.31 155833 port 619 155833 unique_id port 155833 remote_ip 10.8.0.98 155835 username sekonji3 155835 mac 155835 bytes_out 0 155835 bytes_in 0 155835 station_ip 37.129.231.72 155835 port 620 155835 unique_id port 155835 remote_ip 10.8.0.6 155838 username aminvpn 155838 mac 155838 bytes_out 200248 155838 bytes_in 458925 155838 station_ip 5.120.50.58 155838 port 620 155838 unique_id port 155838 remote_ip 10.8.0.14 155839 username barzegar 155839 mac 155839 bytes_out 0 155839 bytes_in 0 155839 station_ip 5.120.180.37 155839 port 614 155839 unique_id port 155839 remote_ip 10.8.0.234 155841 username meysam 155841 kill_reason Another user logged on this global unique id 155841 mac 155841 bytes_out 0 155841 bytes_in 0 155841 station_ip 188.159.252.69 155841 port 619 155841 unique_id port 155841 remote_ip 10.8.0.110 155842 username godarzi 155842 mac 155842 bytes_out 95213 155842 bytes_in 256548 155842 station_ip 5.119.242.251 155842 port 615 155842 unique_id port 155842 remote_ip 10.8.0.174 155843 username sekonji3 155843 mac 155843 bytes_out 0 155843 bytes_in 0 155843 station_ip 37.129.231.72 155843 port 614 155843 unique_id port 155843 remote_ip 10.8.0.6 155845 username mirzaei 155845 mac 155845 bytes_out 0 155845 bytes_in 0 155845 station_ip 5.119.233.107 155845 port 611 155845 unique_id port 155850 username barzegar 155850 mac 155850 bytes_out 0 155850 bytes_in 0 155850 station_ip 5.120.180.37 155850 port 314 155850 unique_id port 155850 remote_ip 10.8.1.174 155852 username sekonji3 155852 mac 155852 bytes_out 0 155852 bytes_in 0 155852 station_ip 37.129.231.72 155852 port 314 155852 unique_id port 155852 remote_ip 10.8.1.238 155853 username sekonji3 155853 mac 155853 bytes_out 0 155853 bytes_in 0 155853 station_ip 37.129.231.72 155853 port 314 155853 unique_id port 155853 remote_ip 10.8.1.238 155858 username nilufarrajaei 155858 kill_reason Another user logged on this global unique id 155858 mac 155858 bytes_out 0 155858 bytes_in 0 155858 station_ip 83.123.177.124 155858 port 298 155858 unique_id port 155869 username sekonji3 155869 mac 155869 bytes_out 0 155869 bytes_in 0 155869 station_ip 37.129.182.236 155869 port 309 155869 unique_id port 155869 remote_ip 10.8.1.238 155873 username kalantary 155873 mac 155873 bytes_out 0 155873 bytes_in 0 155873 station_ip 83.122.40.223 155873 port 614 155873 unique_id port 155873 remote_ip 10.8.0.98 155879 username sekonji3 155879 mac 155879 bytes_out 0 155879 bytes_in 0 155826 port 614 155826 unique_id port 155826 remote_ip 10.8.0.6 155828 username barzegar 155828 mac 155828 bytes_out 0 155828 bytes_in 0 155828 station_ip 5.120.180.37 155828 port 615 155828 unique_id port 155828 remote_ip 10.8.0.234 155829 username barzegar 155829 mac 155829 bytes_out 0 155829 bytes_in 0 155829 station_ip 5.120.180.37 155829 port 615 155829 unique_id port 155829 remote_ip 10.8.0.234 155831 username sekonji3 155831 mac 155831 bytes_out 0 155831 bytes_in 0 155831 station_ip 37.129.231.72 155831 port 614 155831 unique_id port 155831 remote_ip 10.8.0.6 155834 username tahmasebi 155834 mac 155834 bytes_out 0 155834 bytes_in 0 155834 station_ip 77.42.112.59 155834 port 620 155834 unique_id port 155834 remote_ip 10.8.0.42 155836 username barzegar 155836 mac 155836 bytes_out 764120 155836 bytes_in 139649 155836 station_ip 5.120.180.37 155836 port 614 155836 unique_id port 155836 remote_ip 10.8.0.234 155840 username nilufarrajaei 155840 kill_reason Another user logged on this global unique id 155840 mac 155840 bytes_out 0 155840 bytes_in 0 155840 station_ip 83.123.177.124 155840 port 298 155840 unique_id port 155846 username barzegar 155846 mac 155846 bytes_out 0 155846 bytes_in 0 155846 station_ip 5.120.180.37 155846 port 311 155846 unique_id port 155846 remote_ip 10.8.1.174 155849 username vanila 155849 mac 155849 bytes_out 0 155849 bytes_in 0 155849 station_ip 83.123.165.247 155849 port 614 155849 unique_id port 155849 remote_ip 10.8.0.178 155854 username meysam 155854 kill_reason Another user logged on this global unique id 155854 mac 155854 bytes_out 0 155854 bytes_in 0 155854 station_ip 188.159.252.69 155854 port 619 155854 unique_id port 155859 username sabaghnezhad 155859 mac 155859 bytes_out 0 155859 bytes_in 0 155859 station_ip 37.129.243.42 155859 port 309 155859 unique_id port 155859 remote_ip 10.8.1.130 155860 username tahmasebi 155860 mac 155860 bytes_out 0 155860 bytes_in 0 155860 station_ip 77.42.112.59 155860 port 314 155860 unique_id port 155860 remote_ip 10.8.1.90 155861 username barzegar 155861 mac 155861 bytes_out 0 155861 bytes_in 0 155861 station_ip 5.120.180.37 155861 port 615 155861 unique_id port 155861 remote_ip 10.8.0.234 155863 username meysam 155863 kill_reason Another user logged on this global unique id 155863 mac 155863 bytes_out 0 155863 bytes_in 0 155863 station_ip 188.159.252.69 155863 port 619 155863 unique_id port 155864 username hosseine 155864 mac 155864 bytes_out 0 155864 bytes_in 0 155864 station_ip 37.129.123.202 155864 port 618 155864 unique_id port 155866 username sekonji3 155866 mac 155866 bytes_out 0 155866 bytes_in 0 155866 station_ip 37.129.182.236 155866 port 309 155866 unique_id port 155866 remote_ip 10.8.1.238 155868 username nilufarrajaei 155868 kill_reason Another user logged on this global unique id 155868 mac 155868 bytes_out 0 155868 bytes_in 0 155868 station_ip 83.123.177.124 155868 port 298 155868 unique_id port 155870 username barzegar 155870 mac 155870 bytes_out 0 155870 bytes_in 0 155870 station_ip 5.120.180.37 155870 port 309 155870 unique_id port 155870 remote_ip 10.8.1.174 155872 username meysam 155872 mac 155872 bytes_out 0 155872 bytes_in 0 155872 station_ip 188.159.252.69 155872 port 619 155872 unique_id port 155874 username pourshad 155874 kill_reason Another user logged on this global unique id 155874 mac 155874 bytes_out 0 155874 bytes_in 0 155874 station_ip 83.122.97.143 155874 port 557 155874 unique_id port 155867 unique_id port 155867 remote_ip 10.8.1.238 155871 username aminvpn 155871 mac 155871 bytes_out 0 155871 bytes_in 0 155871 station_ip 5.120.35.70 155871 port 311 155871 unique_id port 155871 remote_ip 10.8.1.6 155875 username sekonji3 155875 mac 155875 bytes_out 0 155875 bytes_in 0 155875 station_ip 37.129.182.236 155875 port 309 155875 unique_id port 155875 remote_ip 10.8.1.238 155877 username ayobi 155877 mac 155877 bytes_out 0 155877 bytes_in 0 155877 station_ip 37.27.4.94 155877 port 598 155877 unique_id port 155878 username barzegar 155878 mac 155878 bytes_out 0 155878 bytes_in 0 155878 station_ip 5.120.180.37 155878 port 309 155878 unique_id port 155878 remote_ip 10.8.1.174 155880 username tahmasebi 155880 mac 155880 bytes_out 0 155880 bytes_in 0 155880 station_ip 77.42.112.59 155880 port 598 155880 unique_id port 155880 remote_ip 10.8.0.42 155884 username ahmadi1 155884 mac 155884 bytes_out 33124 155884 bytes_in 132789 155884 station_ip 113.203.56.219 155884 port 598 155884 unique_id port 155884 remote_ip 10.8.0.250 155885 username sekonji3 155885 mac 155885 bytes_out 0 155885 bytes_in 0 155885 station_ip 37.129.182.236 155885 port 598 155885 unique_id port 155885 remote_ip 10.8.0.6 155889 username meysam 155889 mac 155889 bytes_out 1221843 155889 bytes_in 19242837 155889 station_ip 188.159.252.69 155889 port 598 155889 unique_id port 155889 remote_ip 10.8.0.110 155891 username sekonji3 155891 mac 155891 bytes_out 2400 155891 bytes_in 4548 155891 station_ip 37.129.182.236 155891 port 614 155891 unique_id port 155891 remote_ip 10.8.0.6 155893 username sekonji3 155893 mac 155893 bytes_out 0 155893 bytes_in 0 155893 station_ip 37.129.182.236 155893 port 598 155893 unique_id port 155893 remote_ip 10.8.0.6 155899 username mehdizare 155899 mac 155899 bytes_out 0 155899 bytes_in 0 155899 station_ip 113.203.108.92 155899 port 614 155899 unique_id port 155899 remote_ip 10.8.0.90 155900 username godarzi 155900 mac 155900 bytes_out 252805 155900 bytes_in 1443631 155900 station_ip 5.120.169.75 155900 port 613 155900 unique_id port 155900 remote_ip 10.8.0.174 155902 username mehdizare 155902 mac 155902 bytes_out 9935 155902 bytes_in 13334 155902 station_ip 113.203.108.92 155902 port 309 155902 unique_id port 155902 remote_ip 10.8.1.42 155903 username barzegar 155903 mac 155903 bytes_out 0 155903 bytes_in 0 155903 station_ip 5.120.180.37 155903 port 598 155903 unique_id port 155903 remote_ip 10.8.0.234 155904 username mehdizare 155904 mac 155904 bytes_out 0 155904 bytes_in 0 155904 station_ip 113.203.108.92 155904 port 309 155904 unique_id port 155904 remote_ip 10.8.1.42 155917 username aminvpn 155917 mac 155917 bytes_out 0 155917 bytes_in 0 155917 station_ip 5.120.50.58 155917 port 611 155917 unique_id port 155917 remote_ip 10.8.0.14 155924 username barzegar 155924 mac 155924 bytes_out 3012 155924 bytes_in 4946 155924 station_ip 5.120.180.37 155924 port 614 155924 unique_id port 155924 remote_ip 10.8.0.234 155926 username pourshad 155926 mac 155926 bytes_out 0 155926 bytes_in 0 155926 station_ip 83.122.97.143 155926 port 557 155926 unique_id port 155927 username aminvpn 155927 mac 155927 bytes_out 0 155927 bytes_in 0 155927 station_ip 5.120.50.58 155927 port 614 155927 unique_id port 155927 remote_ip 10.8.0.14 155929 username aminvpn 155929 mac 155929 bytes_out 0 155929 bytes_in 0 155876 username vanila 155876 mac 155876 bytes_out 79892 155876 bytes_in 214070 155876 station_ip 83.123.178.143 155876 port 614 155876 unique_id port 155876 remote_ip 10.8.0.178 155881 username yaghobi 155881 mac 155881 bytes_out 0 155881 bytes_in 0 155881 station_ip 83.123.217.114 155881 port 615 155881 unique_id port 155881 remote_ip 10.8.0.198 155883 username nilufarrajaei 155883 kill_reason Another user logged on this global unique id 155883 mac 155883 bytes_out 0 155883 bytes_in 0 155883 station_ip 83.123.177.124 155883 port 298 155883 unique_id port 155886 username godarzi 155886 mac 155886 bytes_out 0 155886 bytes_in 0 155886 station_ip 5.119.186.26 155886 port 309 155886 unique_id port 155886 remote_ip 10.8.1.230 155892 username sekonji3 155892 mac 155892 bytes_out 0 155892 bytes_in 0 155892 station_ip 37.129.182.236 155892 port 598 155892 unique_id port 155892 remote_ip 10.8.0.6 155894 username aminvpn 155894 mac 155894 bytes_out 221844 155894 bytes_in 470689 155894 station_ip 5.120.50.58 155894 port 611 155894 unique_id port 155894 remote_ip 10.8.0.14 155901 username tahmasebi 155901 mac 155901 bytes_out 0 155901 bytes_in 0 155901 station_ip 77.42.112.59 155901 port 314 155901 unique_id port 155901 remote_ip 10.8.1.90 155905 username godarzi 155905 mac 155905 bytes_out 144133 155905 bytes_in 409238 155905 station_ip 5.120.169.75 155905 port 311 155905 unique_id port 155905 remote_ip 10.8.1.230 155906 username aminvpn 155906 mac 155906 bytes_out 42421 155906 bytes_in 49048 155906 station_ip 5.120.50.58 155906 port 611 155906 unique_id port 155906 remote_ip 10.8.0.14 155909 username aminvpn 155909 mac 155909 bytes_out 0 155909 bytes_in 0 155909 station_ip 37.129.211.108 155909 port 598 155909 unique_id port 155909 remote_ip 10.8.0.14 155912 username nilufarrajaei 155912 mac 155912 bytes_out 0 155912 bytes_in 0 155912 station_ip 83.123.177.124 155912 port 298 155912 unique_id port 155913 username aminvpn 155913 mac 155913 bytes_out 0 155913 bytes_in 0 155913 station_ip 5.120.50.58 155913 port 611 155913 unique_id port 155913 remote_ip 10.8.0.14 155914 username aminvpn 155914 mac 155914 bytes_out 0 155914 bytes_in 0 155914 station_ip 37.129.211.108 155914 port 613 155914 unique_id port 155914 remote_ip 10.8.0.14 155919 username aminvpn 155919 mac 155919 bytes_out 0 155919 bytes_in 0 155919 station_ip 5.120.50.58 155919 port 614 155919 unique_id port 155919 remote_ip 10.8.0.14 155922 username aminvpn 155922 mac 155922 bytes_out 0 155922 bytes_in 0 155922 station_ip 37.129.211.108 155922 port 613 155922 unique_id port 155922 remote_ip 10.8.0.14 155925 username aminvpn 155925 mac 155925 bytes_out 0 155925 bytes_in 0 155925 station_ip 37.129.211.108 155925 port 613 155925 unique_id port 155925 remote_ip 10.8.0.14 155928 username aminvpn 155928 mac 155928 bytes_out 0 155928 bytes_in 0 155928 station_ip 37.129.211.108 155928 port 557 155928 unique_id port 155928 remote_ip 10.8.0.14 155932 username meysam 155932 mac 155932 bytes_out 0 155932 bytes_in 0 155932 station_ip 188.159.252.69 155932 port 611 155932 unique_id port 155932 remote_ip 10.8.0.110 155933 username aminvpn 155933 mac 155933 bytes_out 0 155933 bytes_in 0 155933 station_ip 37.129.211.108 155933 port 615 155933 unique_id port 155933 remote_ip 10.8.0.14 155934 username aminvpn 155934 mac 155934 bytes_out 0 155934 bytes_in 0 155879 station_ip 37.129.182.236 155879 port 311 155879 unique_id port 155879 remote_ip 10.8.1.238 155882 username barzegar 155882 mac 155882 bytes_out 0 155882 bytes_in 0 155882 station_ip 5.120.180.37 155882 port 309 155882 unique_id port 155882 remote_ip 10.8.1.174 155887 username barzegar 155887 mac 155887 bytes_out 0 155887 bytes_in 0 155887 station_ip 5.120.180.37 155887 port 614 155887 unique_id port 155887 remote_ip 10.8.0.234 155888 username sekonji3 155888 mac 155888 bytes_out 0 155888 bytes_in 0 155888 station_ip 37.129.182.236 155888 port 614 155888 unique_id port 155888 remote_ip 10.8.0.6 155890 username godarzi 155890 mac 155890 bytes_out 0 155890 bytes_in 0 155890 station_ip 5.120.145.13 155890 port 309 155890 unique_id port 155890 remote_ip 10.8.1.230 155895 username pourshad 155895 kill_reason Another user logged on this global unique id 155895 mac 155895 bytes_out 0 155895 bytes_in 0 155895 station_ip 83.122.97.143 155895 port 557 155895 unique_id port 155896 username nilufarrajaei 155896 kill_reason Another user logged on this global unique id 155896 mac 155896 bytes_out 0 155896 bytes_in 0 155896 station_ip 83.123.177.124 155896 port 298 155896 unique_id port 155897 username mehdizare 155897 mac 155897 bytes_out 0 155897 bytes_in 0 155897 station_ip 113.203.108.92 155897 port 613 155897 unique_id port 155897 remote_ip 10.8.0.90 155898 username sekonji3 155898 mac 155898 bytes_out 0 155898 bytes_in 0 155898 station_ip 37.129.182.236 155898 port 598 155898 unique_id port 155898 remote_ip 10.8.0.6 155907 username aminvpn 155907 mac 155907 bytes_out 0 155907 bytes_in 0 155907 station_ip 37.129.211.108 155907 port 598 155907 unique_id port 155907 remote_ip 10.8.0.14 155908 username aminvpn 155908 mac 155908 bytes_out 0 155908 bytes_in 0 155908 station_ip 5.120.50.58 155908 port 611 155908 unique_id port 155908 remote_ip 10.8.0.14 155910 username aminvpn 155910 mac 155910 bytes_out 0 155910 bytes_in 0 155910 station_ip 5.120.50.58 155910 port 611 155910 unique_id port 155910 remote_ip 10.8.0.14 155911 username aminvpn 155911 mac 155911 bytes_out 0 155911 bytes_in 0 155911 station_ip 37.129.211.108 155911 port 598 155911 unique_id port 155911 remote_ip 10.8.0.14 155915 username aminvpn 155915 mac 155915 bytes_out 0 155915 bytes_in 0 155915 station_ip 5.120.50.58 155915 port 611 155915 unique_id port 155915 remote_ip 10.8.0.14 155916 username aminvpn 155916 mac 155916 bytes_out 0 155916 bytes_in 0 155916 station_ip 37.129.211.108 155916 port 613 155916 unique_id port 155916 remote_ip 10.8.0.14 155918 username aminvpn 155918 mac 155918 bytes_out 0 155918 bytes_in 0 155918 station_ip 37.129.211.108 155918 port 613 155918 unique_id port 155918 remote_ip 10.8.0.14 155920 username aminvpn 155920 mac 155920 bytes_out 0 155920 bytes_in 0 155920 station_ip 37.129.211.108 155920 port 613 155920 unique_id port 155920 remote_ip 10.8.0.14 155921 username aminvpn 155921 mac 155921 bytes_out 4425 155921 bytes_in 12041 155921 station_ip 5.120.50.58 155921 port 614 155921 unique_id port 155921 remote_ip 10.8.0.14 155923 username aminvpn 155923 mac 155923 bytes_out 0 155923 bytes_in 0 155923 station_ip 5.120.50.58 155923 port 615 155923 unique_id port 155923 remote_ip 10.8.0.14 155931 username aminvpn 155931 mac 155931 bytes_out 0 155931 bytes_in 0 155931 station_ip 5.120.50.58 155931 port 614 155931 unique_id port 155929 station_ip 5.120.50.58 155929 port 613 155929 unique_id port 155929 remote_ip 10.8.0.14 155930 username aminvpn 155930 mac 155930 bytes_out 0 155930 bytes_in 0 155930 station_ip 37.129.211.108 155930 port 557 155930 unique_id port 155930 remote_ip 10.8.0.14 155936 username aminvpn 155936 mac 155936 bytes_out 0 155936 bytes_in 0 155936 station_ip 5.120.50.58 155936 port 614 155936 unique_id port 155936 remote_ip 10.8.0.14 155938 username barzegar 155938 mac 155938 bytes_out 0 155938 bytes_in 0 155938 station_ip 5.120.180.37 155938 port 614 155938 unique_id port 155938 remote_ip 10.8.0.234 155939 username aminvpn 155939 mac 155939 bytes_out 0 155939 bytes_in 0 155939 station_ip 37.129.211.108 155939 port 619 155939 unique_id port 155939 remote_ip 10.8.0.14 155941 username barzegar 155941 mac 155941 bytes_out 0 155941 bytes_in 0 155941 station_ip 5.120.180.37 155941 port 615 155941 unique_id port 155941 remote_ip 10.8.0.234 155947 username hashtadani4 155947 mac 155947 bytes_out 0 155947 bytes_in 0 155947 station_ip 113.203.2.204 155947 port 298 155947 unique_id port 155947 remote_ip 10.8.1.142 155958 username aminvpn 155958 mac 155958 bytes_out 38492 155958 bytes_in 36003 155958 station_ip 5.120.50.58 155958 port 619 155958 unique_id port 155958 remote_ip 10.8.0.14 155959 username aminvpn 155959 mac 155959 bytes_out 0 155959 bytes_in 0 155959 station_ip 37.129.211.108 155959 port 620 155959 unique_id port 155959 remote_ip 10.8.0.14 155963 username hashtadani4 155963 kill_reason Maximum check online fails reached 155963 mac 155963 bytes_out 0 155963 bytes_in 0 155963 station_ip 113.203.2.204 155963 port 619 155963 unique_id port 155964 username barzegar 155964 mac 155964 bytes_out 0 155964 bytes_in 0 155964 station_ip 5.120.180.37 155964 port 622 155964 unique_id port 155964 remote_ip 10.8.0.234 155972 username hashtadani4 155972 mac 155972 bytes_out 0 155972 bytes_in 0 155972 station_ip 113.203.2.204 155972 port 625 155972 unique_id port 155972 remote_ip 10.8.0.182 155974 username hashtadani4 155974 kill_reason Maximum check online fails reached 155974 mac 155974 bytes_out 0 155974 bytes_in 0 155974 station_ip 113.203.2.204 155974 port 621 155974 unique_id port 155979 username tahmasebi 155979 mac 155979 bytes_out 0 155979 bytes_in 0 155979 station_ip 77.42.112.59 155979 port 309 155979 unique_id port 155979 remote_ip 10.8.1.90 155980 username meysam 155980 mac 155980 bytes_out 0 155980 bytes_in 0 155980 station_ip 188.159.252.69 155980 port 620 155980 unique_id port 155983 username hashtadani4 155983 mac 155983 bytes_out 0 155983 bytes_in 0 155983 station_ip 113.203.2.204 155983 port 620 155983 unique_id port 155983 remote_ip 10.8.0.182 155986 username aminvpn 155986 mac 155986 bytes_out 61345 155986 bytes_in 52305 155986 station_ip 5.120.50.58 155986 port 623 155986 unique_id port 155986 remote_ip 10.8.0.14 155988 username kalantary 155988 mac 155988 bytes_out 330486 155988 bytes_in 2122260 155988 station_ip 83.122.122.99 155988 port 623 155988 unique_id port 155988 remote_ip 10.8.0.98 155989 username mehdizare 155989 mac 155989 bytes_out 0 155989 bytes_in 0 155989 station_ip 113.203.108.92 155989 port 298 155989 unique_id port 155989 remote_ip 10.8.1.42 155992 username sekonji3 155992 mac 155992 bytes_out 0 155992 bytes_in 0 155992 station_ip 37.129.182.236 155992 port 298 155992 unique_id port 155992 remote_ip 10.8.1.238 155931 remote_ip 10.8.0.14 155935 username aminvpn 155935 mac 155935 bytes_out 0 155935 bytes_in 0 155935 station_ip 37.129.211.108 155935 port 615 155935 unique_id port 155935 remote_ip 10.8.0.14 155937 username tahmasebi 155937 mac 155937 bytes_out 0 155937 bytes_in 0 155937 station_ip 77.42.112.59 155937 port 615 155937 unique_id port 155937 remote_ip 10.8.0.42 155942 username hashtadani4 155942 mac 155942 bytes_out 290215 155942 bytes_in 3170719 155942 station_ip 113.203.2.204 155942 port 618 155942 unique_id port 155942 remote_ip 10.8.0.182 155943 username aminvpn 155943 mac 155943 bytes_out 3844 155943 bytes_in 8459 155943 station_ip 5.120.50.58 155943 port 614 155943 unique_id port 155943 remote_ip 10.8.0.14 155944 username kalantary 155944 mac 155944 bytes_out 440023 155944 bytes_in 3232593 155944 station_ip 83.122.107.215 155944 port 611 155944 unique_id port 155944 remote_ip 10.8.0.98 155946 username aminvpn 155946 mac 155946 bytes_out 0 155946 bytes_in 0 155946 station_ip 37.129.211.108 155946 port 618 155946 unique_id port 155946 remote_ip 10.8.0.14 155948 username aminvpn 155948 mac 155948 bytes_out 0 155948 bytes_in 0 155948 station_ip 5.120.50.58 155948 port 611 155948 unique_id port 155948 remote_ip 10.8.0.14 155950 username hashtadani4 155950 mac 155950 bytes_out 0 155950 bytes_in 0 155950 station_ip 113.203.2.204 155950 port 298 155950 unique_id port 155950 remote_ip 10.8.1.142 155951 username aminvpn 155951 mac 155951 bytes_out 0 155951 bytes_in 0 155951 station_ip 37.129.211.108 155951 port 614 155951 unique_id port 155951 remote_ip 10.8.0.14 155955 username aminvpn 155955 mac 155955 bytes_out 0 155955 bytes_in 0 155955 station_ip 37.129.211.108 155955 port 614 155955 unique_id port 155955 remote_ip 10.8.0.14 155960 username aminvpn 155960 mac 155960 bytes_out 66590 155960 bytes_in 52907 155960 station_ip 5.120.50.58 155960 port 619 155960 unique_id port 155960 remote_ip 10.8.0.14 155961 username mehdizare 155961 mac 155961 bytes_out 0 155961 bytes_in 0 155961 station_ip 113.203.108.92 155961 port 309 155961 unique_id port 155961 remote_ip 10.8.1.42 155966 username aminvpn 155966 mac 155966 bytes_out 31079 155966 bytes_in 28439 155966 station_ip 5.120.50.58 155966 port 621 155966 unique_id port 155966 remote_ip 10.8.0.14 155967 username aminvpn 155967 mac 155967 bytes_out 0 155967 bytes_in 0 155967 station_ip 37.129.211.108 155967 port 622 155967 unique_id port 155967 remote_ip 10.8.0.14 155968 username aminvpn 155968 mac 155968 bytes_out 0 155968 bytes_in 0 155968 station_ip 5.120.50.58 155968 port 623 155968 unique_id port 155968 remote_ip 10.8.0.14 155970 username hashtadani4 155970 mac 155970 bytes_out 0 155970 bytes_in 0 155970 station_ip 113.203.2.204 155970 port 309 155970 unique_id port 155970 remote_ip 10.8.1.142 155976 username meysam 155976 kill_reason Another user logged on this global unique id 155976 mac 155976 bytes_out 0 155976 bytes_in 0 155976 station_ip 188.159.252.69 155976 port 620 155976 unique_id port 155976 remote_ip 10.8.0.110 155977 username hashtadani4 155977 mac 155977 bytes_out 0 155977 bytes_in 0 155977 station_ip 113.203.2.204 155977 port 625 155977 unique_id port 155977 remote_ip 10.8.0.182 155981 username barzegar 155981 mac 155981 bytes_out 0 155981 bytes_in 0 155981 station_ip 5.120.180.37 155981 port 625 155981 unique_id port 155981 remote_ip 10.8.0.234 155934 station_ip 5.120.50.58 155934 port 614 155934 unique_id port 155934 remote_ip 10.8.0.14 155940 username tahmasebi 155940 mac 155940 bytes_out 0 155940 bytes_in 0 155940 station_ip 77.42.112.59 155940 port 615 155940 unique_id port 155940 remote_ip 10.8.0.42 155945 username hashtadani4 155945 mac 155945 bytes_out 0 155945 bytes_in 0 155945 station_ip 113.203.2.204 155945 port 298 155945 unique_id port 155945 remote_ip 10.8.1.142 155949 username hashtadani4 155949 mac 155949 bytes_out 0 155949 bytes_in 0 155949 station_ip 113.203.2.204 155949 port 298 155949 unique_id port 155949 remote_ip 10.8.1.142 155952 username hashtadani4 155952 kill_reason Maximum check online fails reached 155952 mac 155952 bytes_out 0 155952 bytes_in 0 155952 station_ip 113.203.2.204 155952 port 615 155952 unique_id port 155953 username aminvpn 155953 mac 155953 bytes_out 0 155953 bytes_in 0 155953 station_ip 5.120.50.58 155953 port 618 155953 unique_id port 155953 remote_ip 10.8.0.14 155954 username tahmasebi 155954 mac 155954 bytes_out 0 155954 bytes_in 0 155954 station_ip 77.42.112.59 155954 port 619 155954 unique_id port 155954 remote_ip 10.8.0.42 155956 username hashtadani4 155956 kill_reason Maximum check online fails reached 155956 mac 155956 bytes_out 0 155956 bytes_in 0 155956 station_ip 113.203.2.204 155956 port 611 155956 unique_id port 155957 username hashtadani4 155957 kill_reason Maximum check online fails reached 155957 mac 155957 bytes_out 0 155957 bytes_in 0 155957 station_ip 113.203.2.204 155957 port 618 155957 unique_id port 155962 username aminvpn 155962 mac 155962 bytes_out 0 155962 bytes_in 0 155962 station_ip 37.129.211.108 155962 port 620 155962 unique_id port 155962 remote_ip 10.8.0.14 155965 username tahmasebi 155965 mac 155965 bytes_out 7431 155965 bytes_in 10256 155965 station_ip 77.42.112.59 155965 port 623 155965 unique_id port 155965 remote_ip 10.8.0.42 155969 username aminvpn 155969 mac 155969 bytes_out 0 155969 bytes_in 0 155969 station_ip 37.129.211.108 155969 port 622 155969 unique_id port 155969 remote_ip 10.8.0.14 155971 username tahmasebi 155971 mac 155971 bytes_out 0 155971 bytes_in 0 155971 station_ip 77.42.112.59 155971 port 621 155971 unique_id port 155971 remote_ip 10.8.0.42 155973 username tahmasebi 155973 mac 155973 bytes_out 0 155973 bytes_in 0 155973 station_ip 77.42.112.59 155973 port 625 155973 unique_id port 155973 remote_ip 10.8.0.42 155975 username hashtadani4 155975 mac 155975 bytes_out 2111 155975 bytes_in 4388 155975 station_ip 113.203.2.204 155975 port 625 155975 unique_id port 155975 remote_ip 10.8.0.182 155978 username hashtadani4 155978 mac 155978 bytes_out 0 155978 bytes_in 0 155978 station_ip 113.203.2.204 155978 port 625 155978 unique_id port 155978 remote_ip 10.8.0.182 155984 username sedighe 155984 mac 155984 bytes_out 241976 155984 bytes_in 867211 155984 station_ip 113.203.84.198 155984 port 624 155984 unique_id port 155984 remote_ip 10.8.0.146 155987 username hashtadani4 155987 mac 155987 bytes_out 0 155987 bytes_in 0 155987 station_ip 113.203.2.204 155987 port 624 155987 unique_id port 155987 remote_ip 10.8.0.182 155999 username sedighe 155999 mac 155999 bytes_out 0 155999 bytes_in 0 155999 station_ip 83.122.220.108 155999 port 311 155999 unique_id port 155999 remote_ip 10.8.1.78 156003 username barzegar 156003 mac 156003 bytes_out 0 156003 bytes_in 0 156003 station_ip 5.120.180.37 156003 port 628 155982 username hashtadani4 155982 mac 155982 bytes_out 0 155982 bytes_in 0 155982 station_ip 113.203.2.204 155982 port 620 155982 unique_id port 155982 remote_ip 10.8.0.182 155985 username mehdizare 155985 mac 155985 bytes_out 0 155985 bytes_in 0 155985 station_ip 113.203.108.92 155985 port 298 155985 unique_id port 155985 remote_ip 10.8.1.42 155990 username sekonji3 155990 mac 155990 bytes_out 19496 155990 bytes_in 25529 155990 station_ip 37.129.182.236 155990 port 624 155990 unique_id port 155990 remote_ip 10.8.0.6 155991 username barzegar 155991 mac 155991 bytes_out 2677 155991 bytes_in 5482 155991 station_ip 5.120.180.37 155991 port 624 155991 unique_id port 155991 remote_ip 10.8.0.234 155993 username pourshad 155993 mac 155993 bytes_out 1162719 155993 bytes_in 11532107 155993 station_ip 83.122.97.143 155993 port 613 155993 unique_id port 155993 remote_ip 10.8.0.18 155994 username mehdizare 155994 mac 155994 bytes_out 0 155994 bytes_in 0 155994 station_ip 113.203.108.92 155994 port 309 155994 unique_id port 155994 remote_ip 10.8.1.42 155995 username barzegar 155995 mac 155995 bytes_out 0 155995 bytes_in 0 155995 station_ip 5.120.180.37 155995 port 309 155995 unique_id port 155995 remote_ip 10.8.1.174 155997 username moradi 155997 mac 155997 bytes_out 0 155997 bytes_in 0 155997 station_ip 46.225.212.116 155997 port 613 155997 unique_id port 155997 remote_ip 10.8.0.226 155998 username mehdizare 155998 mac 155998 bytes_out 9358 155998 bytes_in 12348 155998 station_ip 113.203.108.92 155998 port 624 155998 unique_id port 155998 remote_ip 10.8.0.90 156000 username nilufarrajaei 156000 mac 156000 bytes_out 1763435 156000 bytes_in 19126521 156000 station_ip 83.123.177.124 156000 port 598 156000 unique_id port 156000 remote_ip 10.8.0.206 156002 username hashtadani4 156002 mac 156002 bytes_out 0 156002 bytes_in 0 156002 station_ip 113.203.2.204 156002 port 623 156002 unique_id port 156002 remote_ip 10.8.0.182 156004 username meysam 156004 mac 156004 bytes_out 0 156004 bytes_in 0 156004 station_ip 188.159.252.69 156004 port 625 156004 unique_id port 156006 username kalantary 156006 mac 156006 bytes_out 0 156006 bytes_in 0 156006 station_ip 83.122.78.155 156006 port 626 156006 unique_id port 156006 remote_ip 10.8.0.98 156010 username shadkam 156010 mac 156010 bytes_out 0 156010 bytes_in 0 156010 station_ip 113.203.60.39 156010 port 613 156010 unique_id port 156010 remote_ip 10.8.0.62 156014 username hashtadani4 156014 mac 156014 bytes_out 0 156014 bytes_in 0 156014 station_ip 113.203.2.204 156014 port 628 156014 unique_id port 156014 remote_ip 10.8.0.182 156016 username hashtadani4 156016 mac 156016 bytes_out 0 156016 bytes_in 0 156016 station_ip 113.203.2.204 156016 port 315 156016 unique_id port 156016 remote_ip 10.8.1.142 156017 username hashtadani4 156017 mac 156017 bytes_out 0 156017 bytes_in 0 156017 station_ip 113.203.2.204 156017 port 623 156017 unique_id port 156017 remote_ip 10.8.0.182 156021 username shadkam 156021 mac 156021 bytes_out 0 156021 bytes_in 0 156021 station_ip 113.203.60.39 156021 port 315 156021 unique_id port 156021 remote_ip 10.8.1.218 156022 username rezaei 156022 mac 156022 bytes_out 0 156022 bytes_in 0 156022 station_ip 5.120.7.208 156022 port 625 156022 unique_id port 156022 remote_ip 10.8.0.230 156024 username shadkam 156024 kill_reason Maximum check online fails reached 156024 mac 155996 username mehdizare 155996 mac 155996 bytes_out 0 155996 bytes_in 0 155996 station_ip 113.203.108.92 155996 port 311 155996 unique_id port 155996 remote_ip 10.8.1.42 156001 username meysam 156001 kill_reason Another user logged on this global unique id 156001 mac 156001 bytes_out 0 156001 bytes_in 0 156001 station_ip 188.159.252.69 156001 port 625 156001 unique_id port 156001 remote_ip 10.8.0.110 156005 username hashtadani4 156005 mac 156005 bytes_out 0 156005 bytes_in 0 156005 station_ip 113.203.2.204 156005 port 311 156005 unique_id port 156005 remote_ip 10.8.1.142 156008 username shadkam 156008 mac 156008 bytes_out 0 156008 bytes_in 0 156008 station_ip 113.203.60.39 156008 port 314 156008 unique_id port 156008 remote_ip 10.8.1.218 156012 username shadkam 156012 mac 156012 bytes_out 0 156012 bytes_in 0 156012 station_ip 113.203.60.39 156012 port 314 156012 unique_id port 156012 remote_ip 10.8.1.218 156018 username hashtadani4 156018 mac 156018 bytes_out 0 156018 bytes_in 0 156018 station_ip 113.203.2.204 156018 port 623 156018 unique_id port 156018 remote_ip 10.8.0.182 156019 username hashtadani4 156019 mac 156019 bytes_out 0 156019 bytes_in 0 156019 station_ip 113.203.2.204 156019 port 623 156019 unique_id port 156019 remote_ip 10.8.0.182 156023 username shadkam 156023 mac 156023 bytes_out 0 156023 bytes_in 0 156023 station_ip 113.203.60.39 156023 port 315 156023 unique_id port 156023 remote_ip 10.8.1.218 156025 username hoorieh 156025 kill_reason Another user logged on this global unique id 156025 mac 156025 bytes_out 0 156025 bytes_in 0 156025 station_ip 5.119.55.20 156025 port 598 156025 unique_id port 156025 remote_ip 10.8.0.158 156027 username alipour 156027 mac 156027 bytes_out 2705413 156027 bytes_in 28116303 156027 station_ip 83.123.16.90 156027 port 614 156027 unique_id port 156027 remote_ip 10.8.0.102 156028 username hashtadani4 156028 mac 156028 bytes_out 0 156028 bytes_in 0 156028 station_ip 113.203.2.204 156028 port 625 156028 unique_id port 156028 remote_ip 10.8.0.182 156029 username hashtadani4 156029 mac 156029 bytes_out 0 156029 bytes_in 0 156029 station_ip 113.203.2.204 156029 port 625 156029 unique_id port 156029 remote_ip 10.8.0.182 156031 username barzegar 156031 mac 156031 bytes_out 0 156031 bytes_in 0 156031 station_ip 5.120.180.37 156031 port 626 156031 unique_id port 156031 remote_ip 10.8.0.234 156039 username hoorieh 156039 kill_reason Another user logged on this global unique id 156039 mac 156039 bytes_out 0 156039 bytes_in 0 156039 station_ip 5.119.55.20 156039 port 598 156039 unique_id port 156040 username godarzi 156040 mac 156040 bytes_out 0 156040 bytes_in 0 156040 station_ip 5.120.129.235 156040 port 626 156040 unique_id port 156040 remote_ip 10.8.0.174 156045 username hashtadani4 156045 mac 156045 bytes_out 0 156045 bytes_in 0 156045 station_ip 113.203.2.204 156045 port 626 156045 unique_id port 156045 remote_ip 10.8.0.182 156047 username nilufarrajaei 156047 mac 156047 bytes_out 0 156047 bytes_in 0 156047 station_ip 83.123.177.124 156047 port 613 156047 unique_id port 156047 remote_ip 10.8.0.206 156049 username pourshad 156049 kill_reason Another user logged on this global unique id 156049 mac 156049 bytes_out 0 156049 bytes_in 0 156049 station_ip 83.122.97.143 156049 port 309 156049 unique_id port 156049 remote_ip 10.8.1.154 156051 username aminvpn 156051 mac 156051 bytes_out 0 156051 bytes_in 0 156051 station_ip 5.120.50.58 156003 unique_id port 156003 remote_ip 10.8.0.234 156007 username shadkam 156007 mac 156007 bytes_out 0 156007 bytes_in 0 156007 station_ip 113.203.60.39 156007 port 623 156007 unique_id port 156007 remote_ip 10.8.0.62 156009 username mehdizare 156009 mac 156009 bytes_out 0 156009 bytes_in 0 156009 station_ip 113.203.108.92 156009 port 613 156009 unique_id port 156009 remote_ip 10.8.0.90 156011 username hashtadani4 156011 kill_reason Maximum check online fails reached 156011 mac 156011 bytes_out 0 156011 bytes_in 0 156011 station_ip 113.203.2.204 156011 port 311 156011 unique_id port 156013 username nilufarrajaei 156013 mac 156013 bytes_out 0 156013 bytes_in 0 156013 station_ip 83.123.177.124 156013 port 627 156013 unique_id port 156013 remote_ip 10.8.0.206 156015 username mehdizare 156015 mac 156015 bytes_out 0 156015 bytes_in 0 156015 station_ip 113.203.108.92 156015 port 623 156015 unique_id port 156015 remote_ip 10.8.0.90 156020 username mehdizare 156020 mac 156020 bytes_out 0 156020 bytes_in 0 156020 station_ip 113.203.108.92 156020 port 626 156020 unique_id port 156020 remote_ip 10.8.0.90 156033 username alipour 156033 mac 156033 bytes_out 34626 156033 bytes_in 46376 156033 station_ip 83.123.16.90 156033 port 315 156033 unique_id port 156033 remote_ip 10.8.1.50 156034 username mehdizare 156034 mac 156034 bytes_out 0 156034 bytes_in 0 156034 station_ip 113.203.108.92 156034 port 614 156034 unique_id port 156034 remote_ip 10.8.0.90 156038 username hashtadani4 156038 mac 156038 bytes_out 0 156038 bytes_in 0 156038 station_ip 113.203.2.204 156038 port 628 156038 unique_id port 156038 remote_ip 10.8.0.182 156042 username meysam 156042 mac 156042 bytes_out 0 156042 bytes_in 0 156042 station_ip 188.159.252.69 156042 port 614 156042 unique_id port 156042 remote_ip 10.8.0.110 156043 username alipour 156043 mac 156043 bytes_out 0 156043 bytes_in 0 156043 station_ip 83.123.16.90 156043 port 315 156043 unique_id port 156043 remote_ip 10.8.1.50 156044 username kalantary 156044 mac 156044 bytes_out 0 156044 bytes_in 0 156044 station_ip 83.122.40.3 156044 port 623 156044 unique_id port 156044 remote_ip 10.8.0.98 156046 username barzegar 156046 mac 156046 bytes_out 0 156046 bytes_in 0 156046 station_ip 5.120.180.37 156046 port 614 156046 unique_id port 156046 remote_ip 10.8.0.234 156050 username sedighe 156050 mac 156050 bytes_out 144871 156050 bytes_in 213178 156050 station_ip 83.122.134.194 156050 port 627 156050 unique_id port 156050 remote_ip 10.8.0.146 156054 username godarzi 156054 mac 156054 bytes_out 0 156054 bytes_in 0 156054 station_ip 5.120.129.235 156054 port 629 156054 unique_id port 156054 remote_ip 10.8.0.174 156063 username pourshad 156063 mac 156063 bytes_out 0 156063 bytes_in 0 156063 station_ip 83.122.97.143 156063 port 309 156063 unique_id port 156069 username kalantary 156069 mac 156069 bytes_out 0 156069 bytes_in 0 156069 station_ip 83.122.40.3 156069 port 614 156069 unique_id port 156069 remote_ip 10.8.0.98 156071 username hashtadani4 156071 mac 156071 bytes_out 0 156071 bytes_in 0 156071 station_ip 5.202.27.246 156071 port 624 156071 unique_id port 156071 remote_ip 10.8.0.182 156073 username kordestani 156073 mac 156073 bytes_out 0 156073 bytes_in 0 156073 station_ip 151.235.113.140 156073 port 557 156073 unique_id port 156073 remote_ip 10.8.0.74 156075 username hashtadani4 156075 mac 156024 bytes_out 0 156024 bytes_in 0 156024 station_ip 113.203.60.39 156024 port 314 156024 unique_id port 156026 username mehdizare 156026 mac 156026 bytes_out 0 156026 bytes_in 0 156026 station_ip 113.203.108.92 156026 port 623 156026 unique_id port 156026 remote_ip 10.8.0.90 156030 username shadkam 156030 mac 156030 bytes_out 0 156030 bytes_in 0 156030 station_ip 113.203.60.39 156030 port 623 156030 unique_id port 156030 remote_ip 10.8.0.62 156032 username barzegar 156032 mac 156032 bytes_out 0 156032 bytes_in 0 156032 station_ip 5.120.180.37 156032 port 315 156032 unique_id port 156032 remote_ip 10.8.1.174 156035 username hashtadani4 156035 mac 156035 bytes_out 0 156035 bytes_in 0 156035 station_ip 113.203.2.204 156035 port 614 156035 unique_id port 156035 remote_ip 10.8.0.182 156036 username barzegar 156036 mac 156036 bytes_out 0 156036 bytes_in 0 156036 station_ip 5.120.180.37 156036 port 614 156036 unique_id port 156036 remote_ip 10.8.0.234 156037 username hashtadani4 156037 mac 156037 bytes_out 0 156037 bytes_in 0 156037 station_ip 113.203.2.204 156037 port 614 156037 unique_id port 156037 remote_ip 10.8.0.182 156041 username barzegar 156041 mac 156041 bytes_out 0 156041 bytes_in 0 156041 station_ip 5.120.180.37 156041 port 628 156041 unique_id port 156041 remote_ip 10.8.0.234 156048 username barzegar 156048 mac 156048 bytes_out 0 156048 bytes_in 0 156048 station_ip 5.120.180.37 156048 port 614 156048 unique_id port 156048 remote_ip 10.8.0.234 156056 username hassan 156056 mac 156056 bytes_out 0 156056 bytes_in 0 156056 station_ip 37.27.16.57 156056 port 622 156056 unique_id port 156056 remote_ip 10.8.0.122 156058 username shadkam 156058 mac 156058 bytes_out 0 156058 bytes_in 0 156058 station_ip 37.129.110.96 156058 port 620 156058 unique_id port 156058 remote_ip 10.8.0.62 156062 username sedighe 156062 mac 156062 bytes_out 0 156062 bytes_in 0 156062 station_ip 83.122.134.194 156062 port 627 156062 unique_id port 156062 remote_ip 10.8.0.146 156064 username mehdizare 156064 kill_reason Another user logged on this global unique id 156064 mac 156064 bytes_out 0 156064 bytes_in 0 156064 station_ip 113.203.108.92 156064 port 625 156064 unique_id port 156064 remote_ip 10.8.0.90 156065 username shadkam 156065 mac 156065 bytes_out 0 156065 bytes_in 0 156065 station_ip 83.122.142.254 156065 port 623 156065 unique_id port 156065 remote_ip 10.8.0.62 156067 username hoorieh 156067 mac 156067 bytes_out 0 156067 bytes_in 0 156067 station_ip 5.119.55.20 156067 port 598 156067 unique_id port 156072 username barzegar 156072 mac 156072 bytes_out 2831905 156072 bytes_in 2152207 156072 station_ip 5.120.180.37 156072 port 317 156072 unique_id port 156072 remote_ip 10.8.1.174 156077 username tahmasebi 156077 mac 156077 bytes_out 368367 156077 bytes_in 3268729 156077 station_ip 5.120.182.112 156077 port 309 156077 unique_id port 156077 remote_ip 10.8.1.90 156081 username kordestani 156081 mac 156081 bytes_out 0 156081 bytes_in 0 156081 station_ip 151.235.113.140 156081 port 624 156081 unique_id port 156081 remote_ip 10.8.0.74 156087 username sedighe 156087 mac 156087 bytes_out 0 156087 bytes_in 0 156087 station_ip 83.123.124.9 156087 port 557 156087 unique_id port 156087 remote_ip 10.8.0.146 156092 username hashtadani4 156092 kill_reason Maximum check online fails reached 156092 mac 156092 bytes_out 0 156092 bytes_in 0 156051 port 620 156051 unique_id port 156051 remote_ip 10.8.0.14 156052 username barzegar 156052 mac 156052 bytes_out 0 156052 bytes_in 0 156052 station_ip 5.120.180.37 156052 port 613 156052 unique_id port 156052 remote_ip 10.8.0.234 156053 username hashtadani4 156053 mac 156053 bytes_out 5168 156053 bytes_in 21217 156053 station_ip 113.203.2.204 156053 port 613 156053 unique_id port 156053 remote_ip 10.8.0.182 156055 username hashtadani4 156055 mac 156055 bytes_out 0 156055 bytes_in 0 156055 station_ip 5.202.27.246 156055 port 623 156055 unique_id port 156055 remote_ip 10.8.0.182 156057 username godarzi 156057 mac 156057 bytes_out 0 156057 bytes_in 0 156057 station_ip 5.120.129.235 156057 port 613 156057 unique_id port 156057 remote_ip 10.8.0.174 156059 username moradi 156059 mac 156059 bytes_out 0 156059 bytes_in 0 156059 station_ip 83.123.1.156 156059 port 624 156059 unique_id port 156059 remote_ip 10.8.0.226 156060 username hashtadani4 156060 mac 156060 bytes_out 0 156060 bytes_in 0 156060 station_ip 5.202.27.246 156060 port 620 156060 unique_id port 156060 remote_ip 10.8.0.182 156061 username nilufarrajaei 156061 mac 156061 bytes_out 202758 156061 bytes_in 350746 156061 station_ip 83.123.177.124 156061 port 316 156061 unique_id port 156061 remote_ip 10.8.1.166 156066 username mehdizare 156066 mac 156066 bytes_out 0 156066 bytes_in 0 156066 station_ip 113.203.108.92 156066 port 625 156066 unique_id port 156068 username pourshad 156068 mac 156068 bytes_out 0 156068 bytes_in 0 156068 station_ip 5.119.102.244 156068 port 309 156068 unique_id port 156068 remote_ip 10.8.1.154 156070 username sedighe 156070 mac 156070 bytes_out 0 156070 bytes_in 0 156070 station_ip 83.122.134.194 156070 port 627 156070 unique_id port 156070 remote_ip 10.8.0.146 156074 username pourshad 156074 mac 156074 bytes_out 71260 156074 bytes_in 73620 156074 station_ip 37.129.71.7 156074 port 318 156074 unique_id port 156074 remote_ip 10.8.1.154 156076 username hassan 156076 mac 156076 bytes_out 0 156076 bytes_in 0 156076 station_ip 188.245.89.34 156076 port 622 156076 unique_id port 156076 remote_ip 10.8.0.122 156083 username nilufarrajaei 156083 mac 156083 bytes_out 22328 156083 bytes_in 53626 156083 station_ip 83.123.177.124 156083 port 316 156083 unique_id port 156083 remote_ip 10.8.1.166 156086 username shadkam 156086 mac 156086 bytes_out 0 156086 bytes_in 0 156086 station_ip 83.122.212.132 156086 port 624 156086 unique_id port 156086 remote_ip 10.8.0.62 156089 username sedighe 156089 kill_reason Maximum check online fails reached 156089 mac 156089 bytes_out 0 156089 bytes_in 0 156089 station_ip 83.123.124.9 156089 port 624 156089 unique_id port 156091 username mehdizare 156091 mac 156091 bytes_out 112118 156091 bytes_in 155761 156091 station_ip 113.203.108.92 156091 port 623 156091 unique_id port 156091 remote_ip 10.8.0.90 156093 username meysam 156093 mac 156093 bytes_out 0 156093 bytes_in 0 156093 station_ip 188.159.252.69 156093 port 622 156093 unique_id port 156093 remote_ip 10.8.0.110 156095 username kalantary 156095 mac 156095 bytes_out 0 156095 bytes_in 0 156095 station_ip 83.122.99.151 156095 port 625 156095 unique_id port 156095 remote_ip 10.8.0.98 156096 username barzegar 156096 mac 156096 bytes_out 0 156096 bytes_in 0 156096 station_ip 5.120.180.37 156096 port 614 156096 unique_id port 156104 username kalantary 156104 mac 156075 bytes_out 0 156075 bytes_in 0 156075 station_ip 5.202.27.246 156075 port 557 156075 unique_id port 156075 remote_ip 10.8.0.182 156078 username sedighe 156078 mac 156078 bytes_out 0 156078 bytes_in 0 156078 station_ip 83.122.134.194 156078 port 598 156078 unique_id port 156078 remote_ip 10.8.0.146 156079 username barzegar 156079 kill_reason Another user logged on this global unique id 156079 mac 156079 bytes_out 0 156079 bytes_in 0 156079 station_ip 5.120.180.37 156079 port 614 156079 unique_id port 156079 remote_ip 10.8.0.234 156080 username sedighe 156080 mac 156080 bytes_out 0 156080 bytes_in 0 156080 station_ip 83.123.124.9 156080 port 557 156080 unique_id port 156080 remote_ip 10.8.0.146 156082 username hashtadani4 156082 mac 156082 bytes_out 0 156082 bytes_in 0 156082 station_ip 5.202.27.246 156082 port 557 156082 unique_id port 156082 remote_ip 10.8.0.182 156084 username sedighe 156084 mac 156084 bytes_out 0 156084 bytes_in 0 156084 station_ip 83.123.124.9 156084 port 598 156084 unique_id port 156084 remote_ip 10.8.0.146 156085 username forozandeh1 156085 mac 156085 bytes_out 503083 156085 bytes_in 1011656 156085 station_ip 37.129.60.221 156085 port 622 156085 unique_id port 156085 remote_ip 10.8.0.130 156088 username hashtadani4 156088 mac 156088 bytes_out 0 156088 bytes_in 0 156088 station_ip 5.202.27.246 156088 port 557 156088 unique_id port 156088 remote_ip 10.8.0.182 156090 username barzegar 156090 kill_reason Another user logged on this global unique id 156090 mac 156090 bytes_out 0 156090 bytes_in 0 156090 station_ip 5.120.180.37 156090 port 614 156090 unique_id port 156097 username nilufarrajaei 156097 kill_reason Another user logged on this global unique id 156097 mac 156097 bytes_out 0 156097 bytes_in 0 156097 station_ip 83.122.67.50 156097 port 598 156097 unique_id port 156097 remote_ip 10.8.0.206 156098 username mehdizare 156098 mac 156098 bytes_out 95342 156098 bytes_in 243993 156098 station_ip 113.203.108.92 156098 port 309 156098 unique_id port 156098 remote_ip 10.8.1.42 156100 username barzegar 156100 kill_reason Another user logged on this global unique id 156100 mac 156100 bytes_out 0 156100 bytes_in 0 156100 station_ip 5.120.171.149 156100 port 614 156100 unique_id port 156100 remote_ip 10.8.0.234 156102 username mehdizare 156102 mac 156102 bytes_out 93609 156102 bytes_in 123984 156102 station_ip 113.203.108.92 156102 port 317 156102 unique_id port 156102 remote_ip 10.8.1.42 156107 username hashtadani4 156107 mac 156107 bytes_out 51757 156107 bytes_in 50684 156107 station_ip 5.202.27.246 156107 port 316 156107 unique_id port 156107 remote_ip 10.8.1.142 156112 username barzegar 156112 mac 156112 bytes_out 0 156112 bytes_in 0 156112 station_ip 5.120.171.149 156112 port 614 156112 unique_id port 156114 username sabaghnezhad 156114 mac 156114 bytes_out 0 156114 bytes_in 0 156114 station_ip 113.203.103.208 156114 port 614 156114 unique_id port 156114 remote_ip 10.8.0.186 156118 username meysam 156118 mac 156118 bytes_out 0 156118 bytes_in 0 156118 station_ip 188.159.252.69 156118 port 627 156118 unique_id port 156118 remote_ip 10.8.0.110 156123 username mehdizare 156123 kill_reason Another user logged on this global unique id 156123 mac 156123 bytes_out 0 156123 bytes_in 0 156123 station_ip 113.203.108.92 156123 port 625 156123 unique_id port 156123 remote_ip 10.8.0.90 156124 username hashtadani4 156124 mac 156124 bytes_out 0 156124 bytes_in 0 156124 station_ip 5.202.27.246 156124 port 317 156092 station_ip 5.202.27.246 156092 port 557 156092 unique_id port 156094 username alipour 156094 kill_reason Another user logged on this global unique id 156094 mac 156094 bytes_out 0 156094 bytes_in 0 156094 station_ip 83.123.16.90 156094 port 315 156094 unique_id port 156094 remote_ip 10.8.1.50 156099 username sedighe 156099 mac 156099 bytes_out 0 156099 bytes_in 0 156099 station_ip 37.129.59.119 156099 port 622 156099 unique_id port 156099 remote_ip 10.8.0.146 156101 username alipour 156101 kill_reason Another user logged on this global unique id 156101 mac 156101 bytes_out 0 156101 bytes_in 0 156101 station_ip 83.123.16.90 156101 port 315 156101 unique_id port 156103 username barzegar 156103 kill_reason Another user logged on this global unique id 156103 mac 156103 bytes_out 0 156103 bytes_in 0 156103 station_ip 5.120.171.149 156103 port 614 156103 unique_id port 156105 username mehdizare 156105 mac 156105 bytes_out 3199 156105 bytes_in 13399 156105 station_ip 113.203.108.92 156105 port 317 156105 unique_id port 156105 remote_ip 10.8.1.42 156106 username mohammadjavad 156106 mac 156106 bytes_out 0 156106 bytes_in 0 156106 station_ip 83.123.173.12 156106 port 622 156106 unique_id port 156106 remote_ip 10.8.0.142 156109 username hashtadani4 156109 mac 156109 bytes_out 8523 156109 bytes_in 13976 156109 station_ip 5.202.27.246 156109 port 316 156109 unique_id port 156109 remote_ip 10.8.1.142 156111 username sabaghnezhad 156111 mac 156111 bytes_out 127018 156111 bytes_in 103914 156111 station_ip 113.203.103.208 156111 port 318 156111 unique_id port 156111 remote_ip 10.8.1.130 156113 username mehdizare 156113 mac 156113 bytes_out 0 156113 bytes_in 0 156113 station_ip 113.203.108.92 156113 port 620 156113 unique_id port 156113 remote_ip 10.8.0.90 156116 username hashtadani4 156116 mac 156116 bytes_out 0 156116 bytes_in 0 156116 station_ip 5.202.27.246 156116 port 614 156116 unique_id port 156116 remote_ip 10.8.0.182 156119 username godarzi 156119 mac 156119 bytes_out 427804 156119 bytes_in 3450947 156119 station_ip 5.120.129.235 156119 port 622 156119 unique_id port 156119 remote_ip 10.8.0.174 156121 username hoorieh 156121 kill_reason Another user logged on this global unique id 156121 mac 156121 bytes_out 0 156121 bytes_in 0 156121 station_ip 5.119.55.20 156121 port 620 156121 unique_id port 156121 remote_ip 10.8.0.158 156125 username hashtadani4 156125 mac 156125 bytes_out 0 156125 bytes_in 0 156125 station_ip 5.202.27.246 156125 port 317 156125 unique_id port 156125 remote_ip 10.8.1.142 156130 username khalili 156130 mac 156130 bytes_out 0 156130 bytes_in 0 156130 station_ip 5.120.90.11 156130 port 622 156130 unique_id port 156130 remote_ip 10.8.0.86 156134 username hassan 156134 mac 156134 bytes_out 0 156134 bytes_in 0 156134 station_ip 37.27.7.37 156134 port 309 156134 unique_id port 156134 remote_ip 10.8.1.138 156139 username barzegar 156139 mac 156139 bytes_out 5013 156139 bytes_in 11349 156139 station_ip 5.120.171.149 156139 port 309 156139 unique_id port 156139 remote_ip 10.8.1.174 156140 username rajaei 156140 mac 156140 bytes_out 0 156140 bytes_in 0 156140 station_ip 94.24.83.142 156140 port 620 156140 unique_id port 156141 username hashtadani4 156141 mac 156141 bytes_out 0 156141 bytes_in 0 156141 station_ip 5.202.27.246 156141 port 622 156141 unique_id port 156141 remote_ip 10.8.0.182 156143 username mehdizare 156143 mac 156143 bytes_out 0 156143 bytes_in 0 156104 bytes_out 654154 156104 bytes_in 7142522 156104 station_ip 83.122.99.151 156104 port 625 156104 unique_id port 156104 remote_ip 10.8.0.98 156108 username godarzi 156108 mac 156108 bytes_out 0 156108 bytes_in 0 156108 station_ip 5.120.129.235 156108 port 620 156108 unique_id port 156108 remote_ip 10.8.0.174 156110 username mehdizare 156110 mac 156110 bytes_out 8848 156110 bytes_in 12969 156110 station_ip 113.203.108.92 156110 port 317 156110 unique_id port 156110 remote_ip 10.8.1.42 156115 username barzegar 156115 mac 156115 bytes_out 0 156115 bytes_in 0 156115 station_ip 5.120.171.149 156115 port 625 156115 unique_id port 156115 remote_ip 10.8.0.234 156117 username barzegar 156117 mac 156117 bytes_out 0 156117 bytes_in 0 156117 station_ip 5.120.171.149 156117 port 620 156117 unique_id port 156117 remote_ip 10.8.0.234 156120 username nilufarrajaei 156120 mac 156120 bytes_out 0 156120 bytes_in 0 156120 station_ip 83.122.67.50 156120 port 598 156120 unique_id port 156122 username hoorieh 156122 mac 156122 bytes_out 0 156122 bytes_in 0 156122 station_ip 5.119.55.20 156122 port 620 156122 unique_id port 156136 username hashtadani4 156136 mac 156136 bytes_out 0 156136 bytes_in 0 156136 station_ip 5.202.27.246 156136 port 613 156136 unique_id port 156136 remote_ip 10.8.0.182 156137 username hashtadani4 156137 mac 156137 bytes_out 0 156137 bytes_in 0 156137 station_ip 5.202.27.246 156137 port 629 156137 unique_id port 156137 remote_ip 10.8.0.182 156138 username mehdizare 156138 mac 156138 bytes_out 0 156138 bytes_in 0 156138 station_ip 113.203.108.92 156138 port 622 156138 unique_id port 156138 remote_ip 10.8.0.90 156146 username moradi 156146 mac 156146 bytes_out 0 156146 bytes_in 0 156146 station_ip 83.123.114.28 156146 port 628 156146 unique_id port 156146 remote_ip 10.8.0.226 156148 username mohammadmahdi 156148 mac 156148 bytes_out 0 156148 bytes_in 0 156148 station_ip 5.120.153.133 156148 port 613 156148 unique_id port 156148 remote_ip 10.8.0.54 156149 username meysam 156149 mac 156149 bytes_out 0 156149 bytes_in 0 156149 station_ip 188.159.252.69 156149 port 625 156149 unique_id port 156153 username barzegar 156153 mac 156153 bytes_out 0 156153 bytes_in 0 156153 station_ip 5.120.171.149 156153 port 309 156153 unique_id port 156153 remote_ip 10.8.1.174 156158 username mohammadjavad 156158 mac 156158 bytes_out 0 156158 bytes_in 0 156158 station_ip 83.122.131.28 156158 port 622 156158 unique_id port 156158 remote_ip 10.8.0.142 156160 username yaghobi 156160 mac 156160 bytes_out 1034545 156160 bytes_in 15624056 156160 station_ip 83.123.118.33 156160 port 625 156160 unique_id port 156160 remote_ip 10.8.0.198 156163 username yaghobi 156163 mac 156163 bytes_out 3121 156163 bytes_in 9394 156163 station_ip 37.129.205.160 156163 port 628 156163 unique_id port 156163 remote_ip 10.8.0.198 156165 username hashtadani4 156165 kill_reason Another user logged on this global unique id 156165 mac 156165 bytes_out 0 156165 bytes_in 0 156165 station_ip 5.202.27.246 156165 port 620 156165 unique_id port 156165 remote_ip 10.8.0.182 156168 username sekonji3 156168 mac 156168 bytes_out 0 156168 bytes_in 0 156168 station_ip 37.129.182.236 156168 port 627 156168 unique_id port 156168 remote_ip 10.8.0.6 156170 username hashtadani4 156170 kill_reason Another user logged on this global unique id 156170 mac 156170 bytes_out 0 156170 bytes_in 0 156124 unique_id port 156124 remote_ip 10.8.1.142 156126 username mohammadjavad 156126 mac 156126 bytes_out 0 156126 bytes_in 0 156126 station_ip 37.129.166.126 156126 port 598 156126 unique_id port 156126 remote_ip 10.8.0.142 156127 username hashtadani4 156127 mac 156127 bytes_out 0 156127 bytes_in 0 156127 station_ip 5.202.27.246 156127 port 598 156127 unique_id port 156127 remote_ip 10.8.0.182 156128 username nilufarrajaei 156128 mac 156128 bytes_out 0 156128 bytes_in 0 156128 station_ip 83.122.67.50 156128 port 628 156128 unique_id port 156128 remote_ip 10.8.0.206 156129 username barzegar 156129 mac 156129 bytes_out 372549 156129 bytes_in 3892627 156129 station_ip 5.120.171.149 156129 port 316 156129 unique_id port 156129 remote_ip 10.8.1.174 156131 username nilufarrajaei 156131 mac 156131 bytes_out 0 156131 bytes_in 0 156131 station_ip 83.122.187.106 156131 port 598 156131 unique_id port 156131 remote_ip 10.8.0.206 156132 username mehdizare 156132 mac 156132 bytes_out 0 156132 bytes_in 0 156132 station_ip 113.203.108.92 156132 port 625 156132 unique_id port 156133 username rajaei 156133 kill_reason Another user logged on this global unique id 156133 mac 156133 bytes_out 0 156133 bytes_in 0 156133 station_ip 94.24.83.142 156133 port 620 156133 unique_id port 156133 remote_ip 10.8.0.34 156135 username moradi 156135 mac 156135 bytes_out 2305621 156135 bytes_in 9366986 156135 station_ip 46.225.212.116 156135 port 613 156135 unique_id port 156135 remote_ip 10.8.0.226 156142 username hashtadani4 156142 mac 156142 bytes_out 0 156142 bytes_in 0 156142 station_ip 5.202.27.246 156142 port 620 156142 unique_id port 156142 remote_ip 10.8.0.182 156144 username hashtadani4 156144 mac 156144 bytes_out 7532 156144 bytes_in 9083 156144 station_ip 5.202.27.246 156144 port 620 156144 unique_id port 156144 remote_ip 10.8.0.182 156145 username hashtadani4 156145 mac 156145 bytes_out 0 156145 bytes_in 0 156145 station_ip 5.202.27.246 156145 port 620 156145 unique_id port 156145 remote_ip 10.8.0.182 156154 username godarzi 156154 mac 156154 bytes_out 0 156154 bytes_in 0 156154 station_ip 5.120.129.235 156154 port 627 156154 unique_id port 156154 remote_ip 10.8.0.174 156159 username barzegar 156159 mac 156159 bytes_out 0 156159 bytes_in 0 156159 station_ip 5.120.171.149 156159 port 309 156159 unique_id port 156159 remote_ip 10.8.1.174 156164 username barzegar 156164 mac 156164 bytes_out 5673 156164 bytes_in 9196 156164 station_ip 5.120.171.149 156164 port 309 156164 unique_id port 156164 remote_ip 10.8.1.174 156167 username hosseine 156167 kill_reason Another user logged on this global unique id 156167 mac 156167 bytes_out 0 156167 bytes_in 0 156167 station_ip 37.129.32.230 156167 port 626 156167 unique_id port 156176 username hosseine 156176 kill_reason Another user logged on this global unique id 156176 mac 156176 bytes_out 0 156176 bytes_in 0 156176 station_ip 37.129.32.230 156176 port 626 156176 unique_id port 156177 username barzegar 156177 mac 156177 bytes_out 1240853 156177 bytes_in 9606088 156177 station_ip 5.120.171.149 156177 port 628 156177 unique_id port 156177 remote_ip 10.8.0.234 156183 username kalantary 156183 mac 156183 bytes_out 0 156183 bytes_in 0 156183 station_ip 83.122.114.11 156183 port 627 156183 unique_id port 156184 username barzegar 156184 mac 156184 bytes_out 2477 156184 bytes_in 4898 156184 station_ip 5.120.171.149 156184 port 316 156184 unique_id port 156143 station_ip 113.203.108.92 156143 port 629 156143 unique_id port 156143 remote_ip 10.8.0.90 156147 username meysam 156147 kill_reason Another user logged on this global unique id 156147 mac 156147 bytes_out 0 156147 bytes_in 0 156147 station_ip 188.159.252.69 156147 port 625 156147 unique_id port 156147 remote_ip 10.8.0.110 156150 username aminvpn 156150 mac 156150 bytes_out 0 156150 bytes_in 0 156150 station_ip 37.129.211.108 156150 port 614 156150 unique_id port 156150 remote_ip 10.8.0.14 156151 username moradi 156151 mac 156151 bytes_out 0 156151 bytes_in 0 156151 station_ip 83.123.180.33 156151 port 629 156151 unique_id port 156151 remote_ip 10.8.0.226 156152 username alipour 156152 kill_reason Another user logged on this global unique id 156152 mac 156152 bytes_out 0 156152 bytes_in 0 156152 station_ip 83.123.16.90 156152 port 315 156152 unique_id port 156155 username hashtadani4 156155 mac 156155 bytes_out 0 156155 bytes_in 0 156155 station_ip 5.202.27.246 156155 port 620 156155 unique_id port 156155 remote_ip 10.8.0.182 156156 username kalantary 156156 mac 156156 bytes_out 0 156156 bytes_in 0 156156 station_ip 83.122.116.215 156156 port 622 156156 unique_id port 156156 remote_ip 10.8.0.98 156157 username barzegar 156157 mac 156157 bytes_out 0 156157 bytes_in 0 156157 station_ip 5.120.171.149 156157 port 309 156157 unique_id port 156157 remote_ip 10.8.1.174 156161 username hosseine 156161 kill_reason Another user logged on this global unique id 156161 mac 156161 bytes_out 0 156161 bytes_in 0 156161 station_ip 37.129.32.230 156161 port 626 156161 unique_id port 156161 remote_ip 10.8.0.238 156162 username moradi 156162 mac 156162 bytes_out 0 156162 bytes_in 0 156162 station_ip 83.123.114.28 156162 port 613 156162 unique_id port 156162 remote_ip 10.8.0.226 156166 username mehdizare 156166 mac 156166 bytes_out 0 156166 bytes_in 0 156166 station_ip 113.203.108.92 156166 port 630 156166 unique_id port 156166 remote_ip 10.8.0.90 156169 username nilufarrajaei 156169 kill_reason Another user logged on this global unique id 156169 mac 156169 bytes_out 0 156169 bytes_in 0 156169 station_ip 83.122.187.106 156169 port 598 156169 unique_id port 156169 remote_ip 10.8.0.206 156171 username aminvpn 156171 mac 156171 bytes_out 0 156171 bytes_in 0 156171 station_ip 83.122.10.207 156171 port 614 156171 unique_id port 156171 remote_ip 10.8.0.14 156174 username hashtadani4 156174 mac 156174 bytes_out 0 156174 bytes_in 0 156174 station_ip 83.123.22.24 156174 port 614 156174 unique_id port 156174 remote_ip 10.8.0.182 156175 username hashtadani4 156175 mac 156175 bytes_out 0 156175 bytes_in 0 156175 station_ip 5.202.99.105 156175 port 614 156175 unique_id port 156175 remote_ip 10.8.0.182 156179 username barzegar 156179 mac 156179 bytes_out 0 156179 bytes_in 0 156179 station_ip 5.120.171.149 156179 port 316 156179 unique_id port 156179 remote_ip 10.8.1.174 156181 username kalantary 156181 kill_reason Another user logged on this global unique id 156181 mac 156181 bytes_out 0 156181 bytes_in 0 156181 station_ip 83.122.114.11 156181 port 627 156181 unique_id port 156181 remote_ip 10.8.0.98 156182 username hashtadani4 156182 mac 156182 bytes_out 20273 156182 bytes_in 22448 156182 station_ip 5.202.99.105 156182 port 309 156182 unique_id port 156182 remote_ip 10.8.1.142 156185 username hashtadani4 156185 mac 156185 bytes_out 12115 156185 bytes_in 13744 156185 station_ip 5.202.99.105 156185 port 309 156185 unique_id port 156170 station_ip 5.202.27.246 156170 port 620 156170 unique_id port 156172 username pourshad 156172 kill_reason Another user logged on this global unique id 156172 mac 156172 bytes_out 0 156172 bytes_in 0 156172 station_ip 37.129.71.7 156172 port 622 156172 unique_id port 156172 remote_ip 10.8.0.18 156173 username hashtadani4 156173 mac 156173 bytes_out 0 156173 bytes_in 0 156173 station_ip 5.202.27.246 156173 port 620 156173 unique_id port 156178 username nilufarrajaei 156178 mac 156178 bytes_out 0 156178 bytes_in 0 156178 station_ip 83.122.187.106 156178 port 598 156178 unique_id port 156180 username hosseine 156180 mac 156180 bytes_out 0 156180 bytes_in 0 156180 station_ip 37.129.32.230 156180 port 626 156180 unique_id port 156186 username rezaei 156186 mac 156186 bytes_out 0 156186 bytes_in 0 156186 station_ip 5.120.7.208 156186 port 620 156186 unique_id port 156186 remote_ip 10.8.0.230 156187 username hashtadani4 156187 kill_reason Maximum check online fails reached 156187 mac 156187 bytes_out 0 156187 bytes_in 0 156187 station_ip 5.202.99.105 156187 port 309 156187 unique_id port 156189 username hashtadani4 156189 mac 156189 bytes_out 1688 156189 bytes_in 5198 156189 station_ip 5.202.99.105 156189 port 628 156189 unique_id port 156189 remote_ip 10.8.0.182 156191 username godarzi 156191 mac 156191 bytes_out 0 156191 bytes_in 0 156191 station_ip 5.120.129.235 156191 port 614 156191 unique_id port 156191 remote_ip 10.8.0.174 156192 username afarin1 156192 mac 156192 bytes_out 0 156192 bytes_in 0 156192 station_ip 113.203.23.39 156192 port 610 156192 unique_id port 156196 username hashtadani4 156196 mac 156196 bytes_out 0 156196 bytes_in 0 156196 station_ip 37.129.103.68 156196 port 626 156196 unique_id port 156196 remote_ip 10.8.0.182 156197 username hamidsalari 156197 mac 156197 bytes_out 0 156197 bytes_in 0 156197 station_ip 5.119.42.64 156197 port 623 156197 unique_id port 156197 remote_ip 10.8.0.222 156204 username moradi 156204 mac 156204 bytes_out 640964 156204 bytes_in 342015 156204 station_ip 83.123.114.28 156204 port 613 156204 unique_id port 156204 remote_ip 10.8.0.226 156206 username hashtadani4 156206 mac 156206 bytes_out 0 156206 bytes_in 0 156206 station_ip 37.129.103.68 156206 port 317 156206 unique_id port 156206 remote_ip 10.8.1.142 156208 username hashtadani4 156208 mac 156208 bytes_out 2164 156208 bytes_in 4494 156208 station_ip 37.129.103.68 156208 port 620 156208 unique_id port 156208 remote_ip 10.8.0.182 156213 username hashtadani4 156213 mac 156213 bytes_out 0 156213 bytes_in 0 156213 station_ip 37.129.103.68 156213 port 317 156213 unique_id port 156213 remote_ip 10.8.1.142 156214 username hashtadani4 156214 mac 156214 bytes_out 0 156214 bytes_in 0 156214 station_ip 37.129.103.68 156214 port 317 156214 unique_id port 156214 remote_ip 10.8.1.142 156225 username malekpoir 156225 kill_reason Another user logged on this global unique id 156225 mac 156225 bytes_out 0 156225 bytes_in 0 156225 station_ip 5.120.176.225 156225 port 625 156225 unique_id port 156225 remote_ip 10.8.0.58 156226 username barzegar 156226 mac 156226 bytes_out 0 156226 bytes_in 0 156226 station_ip 5.120.171.149 156226 port 317 156226 unique_id port 156226 remote_ip 10.8.1.174 156227 username hashtadani4 156227 mac 156227 bytes_out 0 156227 bytes_in 0 156227 station_ip 37.129.103.68 156227 port 620 156227 unique_id port 156227 remote_ip 10.8.0.182 156184 remote_ip 10.8.1.174 156188 username barzegar 156188 mac 156188 bytes_out 12118 156188 bytes_in 24029 156188 station_ip 5.120.171.149 156188 port 620 156188 unique_id port 156188 remote_ip 10.8.0.234 156190 username kalantary 156190 mac 156190 bytes_out 1021126 156190 bytes_in 4564975 156190 station_ip 83.122.114.11 156190 port 626 156190 unique_id port 156190 remote_ip 10.8.0.98 156195 username kalantary 156195 mac 156195 bytes_out 0 156195 bytes_in 0 156195 station_ip 83.122.114.11 156195 port 610 156195 unique_id port 156195 remote_ip 10.8.0.98 156199 username hashtadani4 156199 mac 156199 bytes_out 0 156199 bytes_in 0 156199 station_ip 37.129.103.68 156199 port 623 156199 unique_id port 156199 remote_ip 10.8.0.182 156203 username barzegar 156203 mac 156203 bytes_out 0 156203 bytes_in 0 156203 station_ip 5.120.171.149 156203 port 316 156203 unique_id port 156203 remote_ip 10.8.1.174 156209 username barzegar 156209 mac 156209 bytes_out 0 156209 bytes_in 0 156209 station_ip 5.120.171.149 156209 port 317 156209 unique_id port 156209 remote_ip 10.8.1.174 156215 username hashtadani4 156215 mac 156215 bytes_out 0 156215 bytes_in 0 156215 station_ip 37.129.103.68 156215 port 613 156215 unique_id port 156215 remote_ip 10.8.0.182 156217 username hashtadani4 156217 mac 156217 bytes_out 0 156217 bytes_in 0 156217 station_ip 37.129.103.68 156217 port 613 156217 unique_id port 156217 remote_ip 10.8.0.182 156219 username barzegar 156219 mac 156219 bytes_out 0 156219 bytes_in 0 156219 station_ip 5.120.171.149 156219 port 317 156219 unique_id port 156219 remote_ip 10.8.1.174 156220 username hashtadani4 156220 mac 156220 bytes_out 0 156220 bytes_in 0 156220 station_ip 37.129.103.68 156220 port 623 156220 unique_id port 156220 remote_ip 10.8.0.182 156221 username kalantary 156221 mac 156221 bytes_out 432729 156221 bytes_in 1377796 156221 station_ip 83.122.122.123 156221 port 613 156221 unique_id port 156221 remote_ip 10.8.0.98 156228 username hashtadani4 156228 mac 156228 bytes_out 0 156228 bytes_in 0 156228 station_ip 37.129.103.68 156228 port 620 156228 unique_id port 156228 remote_ip 10.8.0.182 156229 username barzegar 156229 mac 156229 bytes_out 0 156229 bytes_in 0 156229 station_ip 5.120.171.149 156229 port 317 156229 unique_id port 156229 remote_ip 10.8.1.174 156230 username barzegar 156230 mac 156230 bytes_out 0 156230 bytes_in 0 156230 station_ip 5.120.171.149 156230 port 317 156230 unique_id port 156230 remote_ip 10.8.1.174 156232 username barzegar 156232 mac 156232 bytes_out 0 156232 bytes_in 0 156232 station_ip 5.120.171.149 156232 port 317 156232 unique_id port 156232 remote_ip 10.8.1.174 156235 username hashtadani4 156235 mac 156235 bytes_out 1235499 156235 bytes_in 19779189 156235 station_ip 37.129.103.68 156235 port 620 156235 unique_id port 156235 remote_ip 10.8.0.182 156236 username ayobi 156236 mac 156236 bytes_out 0 156236 bytes_in 0 156236 station_ip 37.27.4.94 156236 port 626 156236 unique_id port 156236 remote_ip 10.8.0.246 156239 username hashtadani4 156239 mac 156239 bytes_out 0 156239 bytes_in 0 156239 station_ip 37.129.103.68 156239 port 626 156239 unique_id port 156239 remote_ip 10.8.0.182 156242 username mohammadjavad 156242 mac 156242 bytes_out 123625 156242 bytes_in 302908 156242 station_ip 83.123.115.125 156242 port 623 156242 unique_id port 156242 remote_ip 10.8.0.142 156185 remote_ip 10.8.1.142 156193 username nilufarrajaei 156193 mac 156193 bytes_out 0 156193 bytes_in 0 156193 station_ip 83.122.161.62 156193 port 627 156193 unique_id port 156193 remote_ip 10.8.0.206 156194 username hashtadani4 156194 mac 156194 bytes_out 0 156194 bytes_in 0 156194 station_ip 37.129.103.68 156194 port 626 156194 unique_id port 156194 remote_ip 10.8.0.182 156198 username nilufarrajaei 156198 mac 156198 bytes_out 14459 156198 bytes_in 23645 156198 station_ip 83.122.161.62 156198 port 610 156198 unique_id port 156198 remote_ip 10.8.0.206 156200 username godarzi 156200 mac 156200 bytes_out 0 156200 bytes_in 0 156200 station_ip 5.202.24.27 156200 port 620 156200 unique_id port 156200 remote_ip 10.8.0.174 156201 username hashtadani4 156201 mac 156201 bytes_out 0 156201 bytes_in 0 156201 station_ip 37.129.103.68 156201 port 316 156201 unique_id port 156201 remote_ip 10.8.1.142 156202 username hashtadani4 156202 mac 156202 bytes_out 0 156202 bytes_in 0 156202 station_ip 37.129.103.68 156202 port 620 156202 unique_id port 156202 remote_ip 10.8.0.182 156205 username hashtadani4 156205 mac 156205 bytes_out 0 156205 bytes_in 0 156205 station_ip 37.129.103.68 156205 port 620 156205 unique_id port 156205 remote_ip 10.8.0.182 156207 username hashtadani4 156207 mac 156207 bytes_out 0 156207 bytes_in 0 156207 station_ip 37.129.103.68 156207 port 613 156207 unique_id port 156207 remote_ip 10.8.0.182 156210 username nilufarrajaei 156210 kill_reason Another user logged on this global unique id 156210 mac 156210 bytes_out 0 156210 bytes_in 0 156210 station_ip 83.122.161.62 156210 port 610 156210 unique_id port 156210 remote_ip 10.8.0.206 156211 username godarzi 156211 mac 156211 bytes_out 0 156211 bytes_in 0 156211 station_ip 5.202.24.27 156211 port 613 156211 unique_id port 156211 remote_ip 10.8.0.174 156212 username hashtadani4 156212 mac 156212 bytes_out 0 156212 bytes_in 0 156212 station_ip 37.129.103.68 156212 port 317 156212 unique_id port 156212 remote_ip 10.8.1.142 156216 username hashtadani4 156216 mac 156216 bytes_out 0 156216 bytes_in 0 156216 station_ip 37.129.103.68 156216 port 613 156216 unique_id port 156216 remote_ip 10.8.0.182 156218 username hashtadani4 156218 mac 156218 bytes_out 0 156218 bytes_in 0 156218 station_ip 37.129.103.68 156218 port 613 156218 unique_id port 156218 remote_ip 10.8.0.182 156222 username mehdizare 156222 mac 156222 bytes_out 0 156222 bytes_in 0 156222 station_ip 113.203.108.92 156222 port 629 156222 unique_id port 156222 remote_ip 10.8.0.90 156223 username hashtadani4 156223 mac 156223 bytes_out 0 156223 bytes_in 0 156223 station_ip 37.129.103.68 156223 port 623 156223 unique_id port 156223 remote_ip 10.8.0.182 156224 username godarzi 156224 mac 156224 bytes_out 124159 156224 bytes_in 493353 156224 station_ip 5.202.24.27 156224 port 620 156224 unique_id port 156224 remote_ip 10.8.0.174 156233 username barzegar 156233 mac 156233 bytes_out 0 156233 bytes_in 0 156233 station_ip 5.120.171.149 156233 port 317 156233 unique_id port 156233 remote_ip 10.8.1.174 156237 username barzegar 156237 mac 156237 bytes_out 0 156237 bytes_in 0 156237 station_ip 5.120.171.149 156237 port 317 156237 unique_id port 156237 remote_ip 10.8.1.174 156240 username khademi 156240 kill_reason Another user logged on this global unique id 156240 mac 156240 bytes_out 0 156240 bytes_in 0 156240 station_ip 113.203.78.111 156231 username khademi 156231 kill_reason Another user logged on this global unique id 156231 mac 156231 bytes_out 0 156231 bytes_in 0 156231 station_ip 113.203.78.111 156231 port 298 156231 unique_id port 156231 remote_ip 10.8.1.242 156234 username khalili 156234 mac 156234 bytes_out 3488457 156234 bytes_in 31746593 156234 station_ip 5.120.90.11 156234 port 598 156234 unique_id port 156234 remote_ip 10.8.0.86 156238 username hashtadani4 156238 mac 156238 bytes_out 0 156238 bytes_in 0 156238 station_ip 37.129.103.68 156238 port 626 156238 unique_id port 156238 remote_ip 10.8.0.182 156247 username hashtadani4 156247 mac 156247 bytes_out 0 156247 bytes_in 0 156247 station_ip 37.129.103.68 156247 port 598 156247 unique_id port 156247 remote_ip 10.8.0.182 156248 username barzegar 156248 mac 156248 bytes_out 0 156248 bytes_in 0 156248 station_ip 5.120.171.149 156248 port 317 156248 unique_id port 156248 remote_ip 10.8.1.174 156250 username moradi 156250 mac 156250 bytes_out 0 156250 bytes_in 0 156250 station_ip 83.123.114.28 156250 port 316 156250 unique_id port 156250 remote_ip 10.8.1.202 156253 username hashtadani4 156253 mac 156253 bytes_out 0 156253 bytes_in 0 156253 station_ip 37.129.103.68 156253 port 598 156253 unique_id port 156253 remote_ip 10.8.0.182 156255 username khademi 156255 kill_reason Another user logged on this global unique id 156255 mac 156255 bytes_out 0 156255 bytes_in 0 156255 station_ip 113.203.78.111 156255 port 298 156255 unique_id port 156258 username barzegar 156258 mac 156258 bytes_out 13738 156258 bytes_in 24990 156258 station_ip 5.120.171.149 156258 port 317 156258 unique_id port 156258 remote_ip 10.8.1.174 156265 username hashtadani4 156265 mac 156265 bytes_out 1658252 156265 bytes_in 21204855 156265 station_ip 37.129.103.68 156265 port 614 156265 unique_id port 156265 remote_ip 10.8.0.182 156271 username hasanahmadi 156271 mac 156271 bytes_out 46888 156271 bytes_in 155546 156271 station_ip 37.129.241.176 156271 port 623 156271 unique_id port 156271 remote_ip 10.8.0.126 156275 username jafari 156275 kill_reason Another user logged on this global unique id 156275 mac 156275 bytes_out 0 156275 bytes_in 0 156275 station_ip 37.137.28.160 156275 port 317 156275 unique_id port 156275 remote_ip 10.8.1.198 156276 username barzegar 156276 mac 156276 bytes_out 0 156276 bytes_in 0 156276 station_ip 5.120.171.149 156276 port 614 156276 unique_id port 156276 remote_ip 10.8.0.234 156278 username shadkam 156278 mac 156278 bytes_out 75642 156278 bytes_in 64332 156278 station_ip 37.129.121.9 156278 port 628 156278 unique_id port 156278 remote_ip 10.8.0.62 156282 username mohammadjavad 156282 mac 156282 bytes_out 403631 156282 bytes_in 3082529 156282 station_ip 83.123.105.201 156282 port 623 156282 unique_id port 156282 remote_ip 10.8.0.142 156284 username khademi 156284 mac 156284 bytes_out 0 156284 bytes_in 0 156284 station_ip 113.203.78.111 156284 port 298 156284 unique_id port 156285 username afarin1 156285 mac 156285 bytes_out 110616 156285 bytes_in 187267 156285 station_ip 113.203.23.39 156285 port 598 156285 unique_id port 156285 remote_ip 10.8.0.38 156291 username jafari 156291 kill_reason Another user logged on this global unique id 156291 mac 156291 bytes_out 0 156291 bytes_in 0 156291 station_ip 37.137.28.160 156291 port 317 156291 unique_id port 156295 username moradi 156295 kill_reason Wrong password 156295 mac 156295 bytes_out 0 156295 bytes_in 0 156295 station_ip 94.24.86.209 156240 port 298 156240 unique_id port 156241 username sabaghnezhad 156241 mac 156241 bytes_out 0 156241 bytes_in 0 156241 station_ip 83.122.6.198 156241 port 598 156241 unique_id port 156241 remote_ip 10.8.0.186 156243 username barzegar 156243 mac 156243 bytes_out 0 156243 bytes_in 0 156243 station_ip 5.120.171.149 156243 port 317 156243 unique_id port 156243 remote_ip 10.8.1.174 156245 username kalantary 156245 mac 156245 bytes_out 412060 156245 bytes_in 3800931 156245 station_ip 83.122.37.255 156245 port 598 156245 unique_id port 156245 remote_ip 10.8.0.98 156252 username vanila 156252 mac 156252 bytes_out 81477 156252 bytes_in 129548 156252 station_ip 37.129.198.163 156252 port 598 156252 unique_id port 156252 remote_ip 10.8.0.178 156256 username shadkam 156256 mac 156256 bytes_out 727038 156256 bytes_in 6870303 156256 station_ip 37.129.43.156 156256 port 623 156256 unique_id port 156256 remote_ip 10.8.0.62 156261 username alipour 156261 mac 156261 bytes_out 0 156261 bytes_in 0 156261 station_ip 83.123.16.90 156261 port 315 156261 unique_id port 156263 username godarzi 156263 mac 156263 bytes_out 137323 156263 bytes_in 874186 156263 station_ip 5.202.24.27 156263 port 627 156263 unique_id port 156263 remote_ip 10.8.0.174 156266 username shadkam 156266 mac 156266 bytes_out 0 156266 bytes_in 0 156266 station_ip 37.129.166.182 156266 port 614 156266 unique_id port 156266 remote_ip 10.8.0.62 156267 username barzegar 156267 mac 156267 bytes_out 2430 156267 bytes_in 4816 156267 station_ip 5.120.171.149 156267 port 623 156267 unique_id port 156267 remote_ip 10.8.0.234 156269 username moradi 156269 mac 156269 bytes_out 0 156269 bytes_in 0 156269 station_ip 83.123.114.28 156269 port 316 156269 unique_id port 156269 remote_ip 10.8.1.202 156280 username barzegar 156280 kill_reason Maximum check online fails reached 156280 mac 156280 bytes_out 0 156280 bytes_in 0 156280 station_ip 5.120.171.149 156280 port 629 156280 unique_id port 156281 username kalantary 156281 mac 156281 bytes_out 0 156281 bytes_in 0 156281 station_ip 83.122.63.147 156281 port 627 156281 unique_id port 156281 remote_ip 10.8.0.98 156283 username barzegar 156283 mac 156283 bytes_out 0 156283 bytes_in 0 156283 station_ip 5.120.171.149 156283 port 318 156283 unique_id port 156283 remote_ip 10.8.1.174 156293 username barzegar 156293 kill_reason Wrong password 156293 mac 156293 bytes_out 0 156293 bytes_in 0 156293 station_ip 94.24.86.209 156293 port 598 156293 unique_id port 156296 username hashtadani4 156296 mac 156296 bytes_out 0 156296 bytes_in 0 156296 station_ip 37.129.103.68 156296 port 598 156296 unique_id port 156296 remote_ip 10.8.0.182 156298 username hashtadani4 156298 mac 156298 bytes_out 0 156298 bytes_in 0 156298 station_ip 37.129.103.68 156298 port 598 156298 unique_id port 156298 remote_ip 10.8.0.182 156299 username hashtadani4 156299 mac 156299 bytes_out 0 156299 bytes_in 0 156299 station_ip 37.129.103.68 156299 port 623 156299 unique_id port 156299 remote_ip 10.8.0.182 156309 username hashtadani4 156309 mac 156309 bytes_out 0 156309 bytes_in 0 156309 station_ip 37.129.103.68 156309 port 610 156309 unique_id port 156309 remote_ip 10.8.0.182 156311 username ehsun 156311 mac 156311 bytes_out 0 156311 bytes_in 0 156311 station_ip 94.24.86.209 156311 port 598 156311 unique_id port 156314 username alipour 156339 username khademi 156244 username barzegar 156244 mac 156244 bytes_out 0 156244 bytes_in 0 156244 station_ip 5.120.171.149 156244 port 317 156244 unique_id port 156244 remote_ip 10.8.1.174 156246 username hashtadani4 156246 mac 156246 bytes_out 1622552 156246 bytes_in 25482966 156246 station_ip 37.129.103.68 156246 port 626 156246 unique_id port 156246 remote_ip 10.8.0.182 156249 username hashtadani4 156249 mac 156249 bytes_out 0 156249 bytes_in 0 156249 station_ip 37.129.103.68 156249 port 626 156249 unique_id port 156249 remote_ip 10.8.0.182 156251 username afarin1 156251 mac 156251 bytes_out 0 156251 bytes_in 0 156251 station_ip 113.203.23.39 156251 port 614 156251 unique_id port 156251 remote_ip 10.8.0.38 156254 username ayobi 156254 mac 156254 bytes_out 0 156254 bytes_in 0 156254 station_ip 37.27.29.160 156254 port 627 156254 unique_id port 156254 remote_ip 10.8.0.246 156257 username arash 156257 mac 156257 bytes_out 37861 156257 bytes_in 414763 156257 station_ip 37.27.5.144 156257 port 623 156257 unique_id port 156257 remote_ip 10.8.0.114 156259 username shadkam 156259 mac 156259 bytes_out 26443 156259 bytes_in 70915 156259 station_ip 83.122.217.116 156259 port 626 156259 unique_id port 156259 remote_ip 10.8.0.62 156260 username shadkam 156260 mac 156260 bytes_out 0 156260 bytes_in 0 156260 station_ip 37.129.104.55 156260 port 627 156260 unique_id port 156260 remote_ip 10.8.0.62 156262 username shadkam 156262 mac 156262 bytes_out 117925 156262 bytes_in 1593610 156262 station_ip 37.129.36.81 156262 port 626 156262 unique_id port 156262 remote_ip 10.8.0.62 156264 username arash 156264 mac 156264 bytes_out 241690 156264 bytes_in 1990491 156264 station_ip 37.27.5.144 156264 port 623 156264 unique_id port 156264 remote_ip 10.8.0.114 156268 username shadkam 156268 mac 156268 bytes_out 7044 156268 bytes_in 13893 156268 station_ip 37.129.166.182 156268 port 627 156268 unique_id port 156268 remote_ip 10.8.0.62 156270 username hasanahmadi 156270 mac 156270 bytes_out 0 156270 bytes_in 0 156270 station_ip 37.129.241.176 156270 port 623 156270 unique_id port 156270 remote_ip 10.8.0.126 156272 username hasanahmadi 156272 mac 156272 bytes_out 0 156272 bytes_in 0 156272 station_ip 37.129.241.176 156272 port 623 156272 unique_id port 156272 remote_ip 10.8.0.126 156273 username sabaghnezhad 156273 mac 156273 bytes_out 44130 156273 bytes_in 44188 156273 station_ip 37.129.223.213 156273 port 614 156273 unique_id port 156273 remote_ip 10.8.0.186 156274 username khademi 156274 kill_reason Another user logged on this global unique id 156274 mac 156274 bytes_out 0 156274 bytes_in 0 156274 station_ip 113.203.78.111 156274 port 298 156274 unique_id port 156277 username hasanahmadi 156277 mac 156277 bytes_out 131743 156277 bytes_in 1544852 156277 station_ip 37.129.241.176 156277 port 614 156277 unique_id port 156277 remote_ip 10.8.0.126 156279 username hashtadani4 156279 kill_reason Another user logged on this global unique id 156279 mac 156279 bytes_out 0 156279 bytes_in 0 156279 station_ip 37.129.103.68 156279 port 626 156279 unique_id port 156279 remote_ip 10.8.0.182 156286 username aminvpn 156286 mac 156286 bytes_out 0 156286 bytes_in 0 156286 station_ip 5.120.35.70 156286 port 316 156286 unique_id port 156286 remote_ip 10.8.1.6 156287 username alipour 156287 kill_reason Another user logged on this global unique id 156287 mac 156287 bytes_out 0 156287 bytes_in 0 156287 station_ip 83.123.16.90 156287 port 315 156287 unique_id port 156287 remote_ip 10.8.1.50 156288 username afarin1 156288 mac 156288 bytes_out 0 156288 bytes_in 0 156288 station_ip 113.203.23.39 156288 port 623 156288 unique_id port 156288 remote_ip 10.8.0.38 156289 username hashtadani4 156289 mac 156289 bytes_out 0 156289 bytes_in 0 156289 station_ip 37.129.103.68 156289 port 626 156289 unique_id port 156290 username barzegar 156290 kill_reason Wrong password 156290 mac 156290 bytes_out 0 156290 bytes_in 0 156290 station_ip 94.24.86.209 156290 port 598 156290 unique_id port 156292 username farhad2 156292 mac 156292 bytes_out 0 156292 bytes_in 0 156292 station_ip 5.119.79.40 156292 port 319 156292 unique_id port 156292 remote_ip 10.8.1.222 156294 username jafari 156294 mac 156294 bytes_out 0 156294 bytes_in 0 156294 station_ip 37.137.28.160 156294 port 317 156294 unique_id port 156301 username barzegar 156301 mac 156301 bytes_out 0 156301 bytes_in 0 156301 station_ip 5.120.171.149 156301 port 316 156301 unique_id port 156301 remote_ip 10.8.1.174 156303 username mehdizare 156303 mac 156303 bytes_out 0 156303 bytes_in 0 156303 station_ip 113.203.108.92 156303 port 613 156303 unique_id port 156303 remote_ip 10.8.0.90 156307 username hashtadani4 156307 mac 156307 bytes_out 0 156307 bytes_in 0 156307 station_ip 37.129.103.68 156307 port 613 156307 unique_id port 156307 remote_ip 10.8.0.182 156308 username ehsun 156308 kill_reason Another user logged on this global unique id 156308 mac 156308 bytes_out 0 156308 bytes_in 0 156308 station_ip 94.24.86.209 156308 port 598 156308 unique_id port 156308 remote_ip 10.8.0.150 156312 username ehsun 156312 mac 156312 bytes_out 0 156312 bytes_in 0 156312 station_ip 94.24.86.209 156312 port 610 156312 unique_id port 156312 remote_ip 10.8.0.150 156316 username hashtadani4 156316 mac 156316 bytes_out 108883 156316 bytes_in 1033664 156316 station_ip 37.129.103.68 156316 port 610 156316 unique_id port 156316 remote_ip 10.8.0.182 156317 username mehdizare 156317 mac 156317 bytes_out 33495 156317 bytes_in 36185 156317 station_ip 113.203.108.92 156317 port 623 156317 unique_id port 156317 remote_ip 10.8.0.90 156319 username barzegar 156319 mac 156319 bytes_out 0 156319 bytes_in 0 156319 station_ip 5.120.171.149 156319 port 623 156319 unique_id port 156319 remote_ip 10.8.0.234 156320 username pourshad 156320 kill_reason Another user logged on this global unique id 156320 mac 156320 bytes_out 0 156320 bytes_in 0 156320 station_ip 37.129.71.7 156320 port 622 156320 unique_id port 156325 username mehdizare 156325 mac 156325 bytes_out 17532 156325 bytes_in 23112 156325 station_ip 113.203.108.92 156325 port 598 156325 unique_id port 156325 remote_ip 10.8.0.90 156327 username barzegar 156327 mac 156327 bytes_out 0 156327 bytes_in 0 156327 station_ip 5.120.171.149 156327 port 317 156327 unique_id port 156327 remote_ip 10.8.1.174 156332 username pourshad 156332 mac 156332 bytes_out 0 156332 bytes_in 0 156332 station_ip 37.129.71.7 156332 port 622 156332 unique_id port 156337 username hashtadani4 156337 kill_reason Another user logged on this global unique id 156337 mac 156337 bytes_out 0 156337 bytes_in 0 156337 station_ip 37.129.103.68 156337 port 628 156337 unique_id port 156337 remote_ip 10.8.0.182 156338 username barzegar 156338 mac 156338 bytes_out 0 156338 bytes_in 0 156338 station_ip 5.120.171.149 156338 port 613 156338 unique_id port 156338 remote_ip 10.8.0.234 156295 port 623 156295 unique_id port 156297 username barzegar 156297 kill_reason Wrong password 156297 mac 156297 bytes_out 0 156297 bytes_in 0 156297 station_ip 94.24.86.209 156297 port 623 156297 unique_id port 156300 username hashtadani4 156300 mac 156300 bytes_out 0 156300 bytes_in 0 156300 station_ip 37.129.103.68 156300 port 623 156300 unique_id port 156300 remote_ip 10.8.0.182 156302 username farhad2 156302 mac 156302 bytes_out 0 156302 bytes_in 0 156302 station_ip 5.119.79.40 156302 port 298 156302 unique_id port 156302 remote_ip 10.8.1.222 156304 username hashtadani4 156304 mac 156304 bytes_out 0 156304 bytes_in 0 156304 station_ip 37.129.103.68 156304 port 613 156304 unique_id port 156304 remote_ip 10.8.0.182 156305 username hashtadani4 156305 mac 156305 bytes_out 0 156305 bytes_in 0 156305 station_ip 37.129.103.68 156305 port 613 156305 unique_id port 156305 remote_ip 10.8.0.182 156306 username nilufarrajaei 156306 mac 156306 bytes_out 0 156306 bytes_in 0 156306 station_ip 83.122.161.62 156306 port 610 156306 unique_id port 156310 username shadkam 156310 mac 156310 bytes_out 0 156310 bytes_in 0 156310 station_ip 113.203.75.197 156310 port 626 156310 unique_id port 156310 remote_ip 10.8.0.62 156313 username barzegar 156313 mac 156313 bytes_out 0 156313 bytes_in 0 156313 station_ip 5.120.171.149 156313 port 317 156313 unique_id port 156313 remote_ip 10.8.1.174 156322 username nilufarrajaei 156322 kill_reason Another user logged on this global unique id 156322 mac 156322 bytes_out 0 156322 bytes_in 0 156322 station_ip 83.122.195.240 156322 port 627 156322 unique_id port 156322 remote_ip 10.8.0.206 156323 username milan 156323 kill_reason Another user logged on this global unique id 156323 mac 156323 bytes_out 0 156323 bytes_in 0 156323 station_ip 5.119.176.40 156323 port 609 156323 unique_id port 156324 username farhad2 156324 mac 156324 bytes_out 0 156324 bytes_in 0 156324 station_ip 5.119.79.40 156324 port 298 156324 unique_id port 156324 remote_ip 10.8.1.222 156326 username barzegar 156326 mac 156326 bytes_out 0 156326 bytes_in 0 156326 station_ip 5.120.171.149 156326 port 317 156326 unique_id port 156326 remote_ip 10.8.1.174 156333 username barzegar 156333 mac 156333 bytes_out 0 156333 bytes_in 0 156333 station_ip 5.120.171.149 156333 port 315 156333 unique_id port 156333 remote_ip 10.8.1.174 156349 username pourshad 156349 kill_reason Another user logged on this global unique id 156349 mac 156349 bytes_out 0 156349 bytes_in 0 156349 station_ip 5.119.181.219 156349 port 610 156349 unique_id port 156349 remote_ip 10.8.0.18 156351 username hashtadani4 156351 mac 156351 bytes_out 0 156351 bytes_in 0 156351 station_ip 37.129.103.68 156351 port 628 156351 unique_id port 156352 username barzegar 156352 mac 156352 bytes_out 0 156352 bytes_in 0 156352 station_ip 5.120.171.149 156352 port 623 156352 unique_id port 156352 remote_ip 10.8.0.234 156354 username shadkam 156354 kill_reason Another user logged on this global unique id 156354 mac 156354 bytes_out 0 156354 bytes_in 0 156354 station_ip 113.203.75.197 156354 port 316 156354 unique_id port 156355 username barzegar 156355 mac 156355 bytes_out 0 156355 bytes_in 0 156355 station_ip 5.120.171.149 156355 port 623 156355 unique_id port 156355 remote_ip 10.8.0.234 156356 username sabaghnezhad 156356 mac 156356 bytes_out 90243 156356 bytes_in 133531 156356 station_ip 37.129.151.42 156356 port 613 156314 kill_reason Another user logged on this global unique id 156314 mac 156314 bytes_out 0 156314 bytes_in 0 156314 station_ip 83.123.16.90 156314 port 315 156314 unique_id port 156315 username kalantary 156315 mac 156315 bytes_out 0 156315 bytes_in 0 156315 station_ip 83.122.83.143 156315 port 598 156315 unique_id port 156315 remote_ip 10.8.0.98 156318 username barzegar 156318 mac 156318 bytes_out 0 156318 bytes_in 0 156318 station_ip 5.120.171.149 156318 port 610 156318 unique_id port 156318 remote_ip 10.8.0.234 156321 username barzegar 156321 mac 156321 bytes_out 2944 156321 bytes_in 5186 156321 station_ip 5.120.171.149 156321 port 623 156321 unique_id port 156321 remote_ip 10.8.0.234 156328 username hashtadani4 156328 mac 156328 bytes_out 0 156328 bytes_in 0 156328 station_ip 37.129.103.68 156328 port 610 156328 unique_id port 156328 remote_ip 10.8.0.182 156329 username aminvpn 156329 mac 156329 bytes_out 1191499 156329 bytes_in 5227500 156329 station_ip 37.129.211.108 156329 port 613 156329 unique_id port 156329 remote_ip 10.8.0.14 156330 username alipour 156330 mac 156330 bytes_out 0 156330 bytes_in 0 156330 station_ip 83.123.16.90 156330 port 315 156330 unique_id port 156331 username mohammadmahdi 156331 kill_reason Another user logged on this global unique id 156331 mac 156331 bytes_out 0 156331 bytes_in 0 156331 station_ip 5.120.153.133 156331 port 623 156331 unique_id port 156331 remote_ip 10.8.0.54 156334 username farhad2 156334 mac 156334 bytes_out 0 156334 bytes_in 0 156334 station_ip 5.119.79.40 156334 port 298 156334 unique_id port 156334 remote_ip 10.8.1.222 156335 username mohammadjavad 156335 mac 156335 bytes_out 0 156335 bytes_in 0 156335 station_ip 83.123.75.138 156335 port 626 156335 unique_id port 156335 remote_ip 10.8.0.142 156336 username mohammadmahdi 156336 mac 156336 bytes_out 0 156336 bytes_in 0 156336 station_ip 5.120.153.133 156336 port 623 156336 unique_id port 156340 username kalantary 156340 mac 156340 bytes_out 0 156340 bytes_in 0 156340 station_ip 83.122.94.231 156340 port 622 156340 unique_id port 156340 remote_ip 10.8.0.98 156341 username shadkam 156341 kill_reason Another user logged on this global unique id 156341 mac 156341 bytes_out 0 156341 bytes_in 0 156341 station_ip 113.203.75.197 156341 port 316 156341 unique_id port 156341 remote_ip 10.8.1.218 156342 username mehdizare 156342 mac 156342 bytes_out 21937 156342 bytes_in 25863 156342 station_ip 113.203.108.92 156342 port 598 156342 unique_id port 156342 remote_ip 10.8.0.90 156343 username hashtadani4 156343 kill_reason Another user logged on this global unique id 156343 mac 156343 bytes_out 0 156343 bytes_in 0 156343 station_ip 37.129.103.68 156343 port 628 156343 unique_id port 156346 username tahmasebi 156346 mac 156346 bytes_out 1036164 156346 bytes_in 11035322 156346 station_ip 5.119.182.91 156346 port 315 156346 unique_id port 156346 remote_ip 10.8.1.90 156347 username tahmasebi 156347 mac 156347 bytes_out 0 156347 bytes_in 0 156347 station_ip 5.119.182.91 156347 port 622 156347 unique_id port 156347 remote_ip 10.8.0.42 156348 username tahmasebi 156348 mac 156348 bytes_out 0 156348 bytes_in 0 156348 station_ip 5.119.182.91 156348 port 622 156348 unique_id port 156348 remote_ip 10.8.0.42 156350 username barzegar 156350 mac 156350 bytes_out 41142 156350 bytes_in 89466 156350 station_ip 5.120.171.149 156350 port 613 156350 unique_id port 156350 remote_ip 10.8.0.234 156357 username hashtadani4 156339 kill_reason Another user logged on this global unique id 156339 mac 156339 bytes_out 0 156339 bytes_in 0 156339 station_ip 113.203.78.111 156339 port 614 156339 unique_id port 156339 remote_ip 10.8.0.10 156344 username mehdizare 156344 mac 156344 bytes_out 8917 156344 bytes_in 12460 156344 station_ip 113.203.108.92 156344 port 317 156344 unique_id port 156344 remote_ip 10.8.1.42 156345 username alipour 156345 mac 156345 bytes_out 0 156345 bytes_in 0 156345 station_ip 83.123.16.90 156345 port 298 156345 unique_id port 156345 remote_ip 10.8.1.50 156353 username hashtadani4 156353 mac 156353 bytes_out 2217 156353 bytes_in 4494 156353 station_ip 37.129.103.68 156353 port 623 156353 unique_id port 156353 remote_ip 10.8.0.182 156359 username barzegar 156359 mac 156359 bytes_out 0 156359 bytes_in 0 156359 station_ip 5.120.171.149 156359 port 626 156359 unique_id port 156359 remote_ip 10.8.0.234 156362 username hashtadani4 156362 mac 156362 bytes_out 0 156362 bytes_in 0 156362 station_ip 37.129.103.68 156362 port 628 156362 unique_id port 156362 remote_ip 10.8.0.182 156363 username shadkam 156363 mac 156363 bytes_out 0 156363 bytes_in 0 156363 station_ip 113.203.75.197 156363 port 316 156363 unique_id port 156364 username tahmasebi 156364 mac 156364 bytes_out 2835690 156364 bytes_in 27187459 156364 station_ip 5.119.182.91 156364 port 622 156364 unique_id port 156364 remote_ip 10.8.0.42 156370 username hashtadani4 156370 mac 156370 bytes_out 0 156370 bytes_in 0 156370 station_ip 37.129.103.68 156370 port 626 156370 unique_id port 156370 remote_ip 10.8.0.182 156373 username barzegar 156373 mac 156373 bytes_out 0 156373 bytes_in 0 156373 station_ip 5.120.171.149 156373 port 626 156373 unique_id port 156373 remote_ip 10.8.0.234 156375 username tahmasebi 156375 mac 156375 bytes_out 0 156375 bytes_in 0 156375 station_ip 5.119.182.91 156375 port 623 156375 unique_id port 156375 remote_ip 10.8.0.42 156381 username nilufarrajaei 156381 mac 156381 bytes_out 0 156381 bytes_in 0 156381 station_ip 83.122.195.240 156381 port 627 156381 unique_id port 156388 username kalantary 156388 mac 156388 bytes_out 0 156388 bytes_in 0 156388 station_ip 83.122.90.223 156388 port 626 156388 unique_id port 156388 remote_ip 10.8.0.98 156391 username khademi 156391 kill_reason Another user logged on this global unique id 156391 mac 156391 bytes_out 0 156391 bytes_in 0 156391 station_ip 113.203.78.111 156391 port 614 156391 unique_id port 156393 username barzegar 156393 mac 156393 bytes_out 0 156393 bytes_in 0 156393 station_ip 5.120.171.149 156393 port 316 156393 unique_id port 156393 remote_ip 10.8.1.174 156395 username pourshad 156395 kill_reason Another user logged on this global unique id 156395 mac 156395 bytes_out 0 156395 bytes_in 0 156395 station_ip 5.119.181.219 156395 port 610 156395 unique_id port 156399 username alipour 156399 kill_reason Another user logged on this global unique id 156399 mac 156399 bytes_out 0 156399 bytes_in 0 156399 station_ip 83.123.16.90 156399 port 598 156399 unique_id port 156399 remote_ip 10.8.0.102 156402 username hashtadani4 156402 mac 156402 bytes_out 0 156402 bytes_in 0 156402 station_ip 37.129.103.68 156402 port 622 156402 unique_id port 156402 remote_ip 10.8.0.182 156413 username khademi 156413 kill_reason Another user logged on this global unique id 156413 mac 156413 bytes_out 0 156413 bytes_in 0 156413 station_ip 113.203.78.111 156413 port 614 156413 unique_id port 156356 unique_id port 156356 remote_ip 10.8.0.186 156358 username hashtadani4 156358 mac 156358 bytes_out 0 156358 bytes_in 0 156358 station_ip 37.129.103.68 156358 port 613 156358 unique_id port 156358 remote_ip 10.8.0.182 156367 username barzegar 156367 mac 156367 bytes_out 0 156367 bytes_in 0 156367 station_ip 5.120.171.149 156367 port 628 156367 unique_id port 156367 remote_ip 10.8.0.234 156369 username hashtadani4 156369 kill_reason Maximum check online fails reached 156369 mac 156369 bytes_out 0 156369 bytes_in 0 156369 station_ip 37.129.103.68 156369 port 298 156369 unique_id port 156376 username hashtadani4 156376 mac 156376 bytes_out 0 156376 bytes_in 0 156376 station_ip 37.129.103.68 156376 port 626 156376 unique_id port 156376 remote_ip 10.8.0.182 156377 username kalantary 156377 mac 156377 bytes_out 80344 156377 bytes_in 108258 156377 station_ip 83.122.90.223 156377 port 622 156377 unique_id port 156377 remote_ip 10.8.0.98 156386 username nilufarrajaei 156386 mac 156386 bytes_out 35772 156386 bytes_in 74889 156386 station_ip 83.122.195.240 156386 port 627 156386 unique_id port 156386 remote_ip 10.8.0.206 156387 username tahmasebi 156387 mac 156387 bytes_out 0 156387 bytes_in 0 156387 station_ip 5.119.59.198 156387 port 628 156387 unique_id port 156387 remote_ip 10.8.0.42 156390 username pourshad 156390 kill_reason Another user logged on this global unique id 156390 mac 156390 bytes_out 0 156390 bytes_in 0 156390 station_ip 5.119.181.219 156390 port 610 156390 unique_id port 156396 username godarzi 156396 mac 156396 bytes_out 0 156396 bytes_in 0 156396 station_ip 5.120.117.45 156396 port 628 156396 unique_id port 156396 remote_ip 10.8.0.174 156398 username mahdiyehalizadeh 156398 mac 156398 bytes_out 0 156398 bytes_in 0 156398 station_ip 5.119.237.35 156398 port 623 156398 unique_id port 156398 remote_ip 10.8.0.82 156401 username hashtadani4 156401 mac 156401 bytes_out 0 156401 bytes_in 0 156401 station_ip 37.129.103.68 156401 port 316 156401 unique_id port 156401 remote_ip 10.8.1.142 156405 username hashtadani4 156405 mac 156405 bytes_out 0 156405 bytes_in 0 156405 station_ip 37.129.103.68 156405 port 316 156405 unique_id port 156405 remote_ip 10.8.1.142 156406 username hashtadani4 156406 mac 156406 bytes_out 0 156406 bytes_in 0 156406 station_ip 37.129.103.68 156406 port 622 156406 unique_id port 156406 remote_ip 10.8.0.182 156408 username hashtadani4 156408 mac 156408 bytes_out 329565 156408 bytes_in 7213575 156408 station_ip 5.202.5.68 156408 port 316 156408 unique_id port 156408 remote_ip 10.8.1.142 156410 username mohammadmahdi 156410 kill_reason Another user logged on this global unique id 156410 mac 156410 bytes_out 0 156410 bytes_in 0 156410 station_ip 5.120.153.133 156410 port 613 156410 unique_id port 156411 username mehdizare 156411 mac 156411 bytes_out 36294 156411 bytes_in 68108 156411 station_ip 113.203.108.92 156411 port 315 156411 unique_id port 156411 remote_ip 10.8.1.42 156414 username shadkam 156414 mac 156414 bytes_out 0 156414 bytes_in 0 156414 station_ip 83.123.82.97 156414 port 622 156414 unique_id port 156414 remote_ip 10.8.0.62 156417 username mehdizare 156417 mac 156417 bytes_out 45011 156417 bytes_in 79242 156417 station_ip 113.203.108.92 156417 port 315 156417 unique_id port 156417 remote_ip 10.8.1.42 156420 username tahmasebi 156420 mac 156420 bytes_out 0 156420 bytes_in 0 156420 station_ip 77.42.112.59 156420 port 627 156357 mac 156357 bytes_out 0 156357 bytes_in 0 156357 station_ip 37.129.103.68 156357 port 623 156357 unique_id port 156357 remote_ip 10.8.0.182 156360 username meysam 156360 mac 156360 bytes_out 347549 156360 bytes_in 5016706 156360 station_ip 5.119.65.46 156360 port 613 156360 unique_id port 156360 remote_ip 10.8.0.110 156361 username hamidsalari 156361 kill_reason Maximum check online fails reached 156361 mac 156361 bytes_out 3451619 156361 bytes_in 45808484 156361 station_ip 5.119.30.45 156361 port 620 156361 unique_id port 156361 remote_ip 10.8.0.222 156365 username hashtadani4 156365 mac 156365 bytes_out 0 156365 bytes_in 0 156365 station_ip 37.129.103.68 156365 port 298 156365 unique_id port 156365 remote_ip 10.8.1.142 156366 username hashtadani4 156366 mac 156366 bytes_out 0 156366 bytes_in 0 156366 station_ip 37.129.103.68 156366 port 626 156366 unique_id port 156366 remote_ip 10.8.0.182 156368 username tahmasebi 156368 mac 156368 bytes_out 0 156368 bytes_in 0 156368 station_ip 5.119.182.91 156368 port 622 156368 unique_id port 156368 remote_ip 10.8.0.42 156371 username kalantary 156371 mac 156371 bytes_out 0 156371 bytes_in 0 156371 station_ip 83.122.90.223 156371 port 623 156371 unique_id port 156371 remote_ip 10.8.0.98 156372 username hashtadani4 156372 mac 156372 bytes_out 0 156372 bytes_in 0 156372 station_ip 37.129.103.68 156372 port 623 156372 unique_id port 156372 remote_ip 10.8.0.182 156374 username hashtadani4 156374 mac 156374 bytes_out 0 156374 bytes_in 0 156374 station_ip 37.129.103.68 156374 port 623 156374 unique_id port 156374 remote_ip 10.8.0.182 156378 username hashtadani4 156378 mac 156378 bytes_out 0 156378 bytes_in 0 156378 station_ip 37.129.103.68 156378 port 623 156378 unique_id port 156378 remote_ip 10.8.0.182 156379 username barzegar 156379 mac 156379 bytes_out 0 156379 bytes_in 0 156379 station_ip 5.120.171.149 156379 port 623 156379 unique_id port 156379 remote_ip 10.8.0.234 156380 username barzegar 156380 mac 156380 bytes_out 0 156380 bytes_in 0 156380 station_ip 5.120.171.149 156380 port 623 156380 unique_id port 156380 remote_ip 10.8.0.234 156382 username pourshad 156382 kill_reason Another user logged on this global unique id 156382 mac 156382 bytes_out 0 156382 bytes_in 0 156382 station_ip 5.119.181.219 156382 port 610 156382 unique_id port 156383 username mohammadmahdi 156383 kill_reason Another user logged on this global unique id 156383 mac 156383 bytes_out 0 156383 bytes_in 0 156383 station_ip 5.120.153.133 156383 port 613 156383 unique_id port 156383 remote_ip 10.8.0.54 156384 username mehdizare 156384 mac 156384 bytes_out 0 156384 bytes_in 0 156384 station_ip 113.203.108.92 156384 port 317 156384 unique_id port 156384 remote_ip 10.8.1.42 156385 username barzegar 156385 mac 156385 bytes_out 0 156385 bytes_in 0 156385 station_ip 5.120.171.149 156385 port 628 156385 unique_id port 156385 remote_ip 10.8.0.234 156389 username naeimeh 156389 mac 156389 bytes_out 0 156389 bytes_in 0 156389 station_ip 83.122.222.25 156389 port 630 156389 unique_id port 156389 remote_ip 10.8.0.118 156392 username mohammadmahdi 156392 kill_reason Another user logged on this global unique id 156392 mac 156392 bytes_out 0 156392 bytes_in 0 156392 station_ip 5.120.153.133 156392 port 613 156392 unique_id port 156394 username kalantary 156394 mac 156394 bytes_out 0 156394 bytes_in 0 156394 station_ip 83.122.90.223 156394 port 626 156394 unique_id port 156394 remote_ip 10.8.0.98 156397 username hashtadani4 156397 mac 156397 bytes_out 0 156397 bytes_in 0 156397 station_ip 37.129.103.68 156397 port 622 156397 unique_id port 156397 remote_ip 10.8.0.182 156400 username khademi 156400 kill_reason Another user logged on this global unique id 156400 mac 156400 bytes_out 0 156400 bytes_in 0 156400 station_ip 113.203.78.111 156400 port 614 156400 unique_id port 156403 username hashtadani4 156403 mac 156403 bytes_out 0 156403 bytes_in 0 156403 station_ip 37.129.103.68 156403 port 316 156403 unique_id port 156403 remote_ip 10.8.1.142 156404 username hashtadani4 156404 mac 156404 bytes_out 0 156404 bytes_in 0 156404 station_ip 37.129.103.68 156404 port 623 156404 unique_id port 156404 remote_ip 10.8.0.182 156407 username nilufarrajaei 156407 mac 156407 bytes_out 0 156407 bytes_in 0 156407 station_ip 83.122.195.240 156407 port 627 156407 unique_id port 156407 remote_ip 10.8.0.206 156409 username ahmadi1 156409 mac 156409 bytes_out 0 156409 bytes_in 0 156409 station_ip 37.129.174.164 156409 port 622 156409 unique_id port 156409 remote_ip 10.8.0.250 156412 username hashtadani4 156412 mac 156412 bytes_out 31123 156412 bytes_in 49409 156412 station_ip 5.202.58.22 156412 port 318 156412 unique_id port 156412 remote_ip 10.8.1.142 156422 username mohammadmahdi 156422 mac 156422 bytes_out 0 156422 bytes_in 0 156422 station_ip 5.120.153.133 156422 port 613 156422 unique_id port 156424 username milan 156424 mac 156424 bytes_out 0 156424 bytes_in 0 156424 station_ip 5.119.176.40 156424 port 609 156424 unique_id port 156429 username hashtadani4 156429 mac 156429 bytes_out 0 156429 bytes_in 0 156429 station_ip 5.202.58.22 156429 port 623 156429 unique_id port 156429 remote_ip 10.8.0.182 156431 username alipour 156431 kill_reason Another user logged on this global unique id 156431 mac 156431 bytes_out 0 156431 bytes_in 0 156431 station_ip 83.123.16.90 156431 port 598 156431 unique_id port 156434 username hashtadani4 156434 mac 156434 bytes_out 0 156434 bytes_in 0 156434 station_ip 5.202.58.22 156434 port 622 156434 unique_id port 156434 remote_ip 10.8.0.182 156435 username hashtadani4 156435 mac 156435 bytes_out 0 156435 bytes_in 0 156435 station_ip 5.202.58.22 156435 port 622 156435 unique_id port 156435 remote_ip 10.8.0.182 156440 username farhad2 156440 mac 156440 bytes_out 12194 156440 bytes_in 17586 156440 station_ip 5.119.13.148 156440 port 319 156440 unique_id port 156440 remote_ip 10.8.1.222 156445 username hashtadani4 156445 mac 156445 bytes_out 0 156445 bytes_in 0 156445 station_ip 5.202.58.22 156445 port 609 156445 unique_id port 156445 remote_ip 10.8.0.182 156450 username yaghobi 156450 mac 156450 bytes_out 0 156450 bytes_in 0 156450 station_ip 37.129.174.27 156450 port 609 156450 unique_id port 156450 remote_ip 10.8.0.198 156456 username hashtadani4 156456 mac 156456 bytes_out 0 156456 bytes_in 0 156456 station_ip 5.202.58.22 156456 port 628 156456 unique_id port 156456 remote_ip 10.8.0.182 156457 username alipour 156457 kill_reason Another user logged on this global unique id 156457 mac 156457 bytes_out 0 156457 bytes_in 0 156457 station_ip 83.123.16.90 156457 port 598 156457 unique_id port 156467 username hashtadani4 156467 mac 156467 bytes_out 0 156467 bytes_in 0 156467 station_ip 5.202.58.22 156467 port 627 156467 unique_id port 156467 remote_ip 10.8.0.182 156472 username yaghobi 156472 mac 156415 username nilufarrajaei 156415 mac 156415 bytes_out 0 156415 bytes_in 0 156415 station_ip 83.122.195.240 156415 port 623 156415 unique_id port 156415 remote_ip 10.8.0.206 156416 username hashtadani4 156416 mac 156416 bytes_out 0 156416 bytes_in 0 156416 station_ip 5.202.58.22 156416 port 316 156416 unique_id port 156416 remote_ip 10.8.1.142 156418 username hashtadani4 156418 mac 156418 bytes_out 0 156418 bytes_in 0 156418 station_ip 5.202.58.22 156418 port 315 156418 unique_id port 156418 remote_ip 10.8.1.142 156419 username hashtadani4 156419 mac 156419 bytes_out 0 156419 bytes_in 0 156419 station_ip 5.202.58.22 156419 port 316 156419 unique_id port 156419 remote_ip 10.8.1.142 156423 username mehdizare 156423 mac 156423 bytes_out 0 156423 bytes_in 0 156423 station_ip 113.203.108.92 156423 port 315 156423 unique_id port 156423 remote_ip 10.8.1.42 156425 username nilufarrajaei 156425 mac 156425 bytes_out 0 156425 bytes_in 0 156425 station_ip 83.122.195.240 156425 port 622 156425 unique_id port 156425 remote_ip 10.8.0.206 156427 username barzegar 156427 mac 156427 bytes_out 24968 156427 bytes_in 47779 156427 station_ip 5.120.171.149 156427 port 317 156427 unique_id port 156427 remote_ip 10.8.1.174 156428 username rezaei 156428 mac 156428 bytes_out 0 156428 bytes_in 0 156428 station_ip 5.120.7.208 156428 port 623 156428 unique_id port 156428 remote_ip 10.8.0.230 156430 username khademi 156430 kill_reason Another user logged on this global unique id 156430 mac 156430 bytes_out 0 156430 bytes_in 0 156430 station_ip 113.203.78.111 156430 port 614 156430 unique_id port 156433 username vanila 156433 mac 156433 bytes_out 0 156433 bytes_in 0 156433 station_ip 37.129.170.247 156433 port 609 156433 unique_id port 156433 remote_ip 10.8.0.178 156437 username yaghobi 156437 mac 156437 bytes_out 0 156437 bytes_in 0 156437 station_ip 37.129.174.27 156437 port 609 156437 unique_id port 156437 remote_ip 10.8.0.198 156438 username farhad2 156438 mac 156438 bytes_out 0 156438 bytes_in 0 156438 station_ip 5.120.13.219 156438 port 316 156438 unique_id port 156438 remote_ip 10.8.1.222 156439 username hashtadani4 156439 mac 156439 bytes_out 0 156439 bytes_in 0 156439 station_ip 5.202.58.22 156439 port 609 156439 unique_id port 156439 remote_ip 10.8.0.182 156441 username kalantary 156441 mac 156441 bytes_out 0 156441 bytes_in 0 156441 station_ip 113.203.8.161 156441 port 623 156441 unique_id port 156441 remote_ip 10.8.0.98 156442 username vanila 156442 mac 156442 bytes_out 0 156442 bytes_in 0 156442 station_ip 37.129.170.247 156442 port 609 156442 unique_id port 156442 remote_ip 10.8.0.178 156446 username khademi 156446 kill_reason Another user logged on this global unique id 156446 mac 156446 bytes_out 0 156446 bytes_in 0 156446 station_ip 113.203.78.111 156446 port 614 156446 unique_id port 156447 username barzegar 156447 mac 156447 bytes_out 43040 156447 bytes_in 113963 156447 station_ip 5.120.171.149 156447 port 317 156447 unique_id port 156447 remote_ip 10.8.1.174 156451 username barzegar 156451 mac 156451 bytes_out 0 156451 bytes_in 0 156451 station_ip 5.120.171.149 156451 port 627 156451 unique_id port 156451 remote_ip 10.8.0.234 156452 username hashtadani4 156452 mac 156452 bytes_out 0 156452 bytes_in 0 156452 station_ip 5.202.58.22 156452 port 609 156452 unique_id port 156452 remote_ip 10.8.0.182 156460 username barzegar 156460 mac 156420 unique_id port 156420 remote_ip 10.8.0.42 156421 username mehdizare 156421 mac 156421 bytes_out 0 156421 bytes_in 0 156421 station_ip 113.203.108.92 156421 port 315 156421 unique_id port 156421 remote_ip 10.8.1.42 156426 username hashtadani4 156426 mac 156426 bytes_out 4737 156426 bytes_in 11289 156426 station_ip 5.202.58.22 156426 port 318 156426 unique_id port 156426 remote_ip 10.8.1.142 156432 username rezaei 156432 mac 156432 bytes_out 0 156432 bytes_in 0 156432 station_ip 5.120.7.208 156432 port 622 156432 unique_id port 156432 remote_ip 10.8.0.230 156436 username hashtadani4 156436 mac 156436 bytes_out 0 156436 bytes_in 0 156436 station_ip 5.202.58.22 156436 port 622 156436 unique_id port 156436 remote_ip 10.8.0.182 156443 username tahmasebi 156443 mac 156443 bytes_out 156072 156443 bytes_in 56737 156443 station_ip 77.42.112.59 156443 port 318 156443 unique_id port 156443 remote_ip 10.8.1.90 156444 username shadkam 156444 mac 156444 bytes_out 0 156444 bytes_in 0 156444 station_ip 37.129.208.190 156444 port 622 156444 unique_id port 156444 remote_ip 10.8.0.62 156448 username tahmasebi 156448 mac 156448 bytes_out 0 156448 bytes_in 0 156448 station_ip 77.42.112.59 156448 port 628 156448 unique_id port 156448 remote_ip 10.8.0.42 156449 username hashtadani4 156449 mac 156449 bytes_out 0 156449 bytes_in 0 156449 station_ip 5.202.58.22 156449 port 628 156449 unique_id port 156449 remote_ip 10.8.0.182 156453 username tahmasebi 156453 mac 156453 bytes_out 36176 156453 bytes_in 15297 156453 station_ip 77.42.112.59 156453 port 316 156453 unique_id port 156453 remote_ip 10.8.1.90 156454 username hashtadani4 156454 mac 156454 bytes_out 0 156454 bytes_in 0 156454 station_ip 5.202.58.22 156454 port 609 156454 unique_id port 156454 remote_ip 10.8.0.182 156455 username nilufarrajaei 156455 kill_reason Another user logged on this global unique id 156455 mac 156455 bytes_out 0 156455 bytes_in 0 156455 station_ip 83.122.195.240 156455 port 613 156455 unique_id port 156455 remote_ip 10.8.0.206 156458 username khademi 156458 kill_reason Another user logged on this global unique id 156458 mac 156458 bytes_out 0 156458 bytes_in 0 156458 station_ip 113.203.78.111 156458 port 614 156458 unique_id port 156459 username rezaei 156459 kill_reason Another user logged on this global unique id 156459 mac 156459 bytes_out 0 156459 bytes_in 0 156459 station_ip 5.120.7.208 156459 port 623 156459 unique_id port 156459 remote_ip 10.8.0.230 156461 username mehdizare 156461 mac 156461 bytes_out 29872 156461 bytes_in 37176 156461 station_ip 113.203.108.92 156461 port 315 156461 unique_id port 156461 remote_ip 10.8.1.42 156462 username hashtadani4 156462 mac 156462 bytes_out 0 156462 bytes_in 0 156462 station_ip 5.202.58.22 156462 port 627 156462 unique_id port 156462 remote_ip 10.8.0.182 156463 username hashtadani4 156463 mac 156463 bytes_out 9037 156463 bytes_in 15749 156463 station_ip 5.202.58.22 156463 port 627 156463 unique_id port 156463 remote_ip 10.8.0.182 156466 username kalantary 156466 kill_reason Another user logged on this global unique id 156466 mac 156466 bytes_out 0 156466 bytes_in 0 156466 station_ip 113.203.8.161 156466 port 622 156466 unique_id port 156466 remote_ip 10.8.0.98 156469 username hashtadani4 156469 mac 156469 bytes_out 0 156469 bytes_in 0 156469 station_ip 5.202.58.22 156469 port 627 156469 unique_id port 156469 remote_ip 10.8.0.182 156471 username aminvpn 156471 mac 156471 bytes_out 0 156460 bytes_out 65788 156460 bytes_in 137045 156460 station_ip 5.120.171.149 156460 port 627 156460 unique_id port 156460 remote_ip 10.8.0.234 156464 username hashtadani4 156464 mac 156464 bytes_out 0 156464 bytes_in 0 156464 station_ip 5.202.58.22 156464 port 627 156464 unique_id port 156464 remote_ip 10.8.0.182 156465 username aminvpn 156465 mac 156465 bytes_out 28634 156465 bytes_in 62525 156465 station_ip 5.119.67.29 156465 port 317 156465 unique_id port 156465 remote_ip 10.8.1.6 156468 username kalantary 156468 mac 156468 bytes_out 0 156468 bytes_in 0 156468 station_ip 113.203.8.161 156468 port 622 156468 unique_id port 156470 username tahmasebi 156470 mac 156470 bytes_out 1717965 156470 bytes_in 2842716 156470 station_ip 77.42.112.59 156470 port 316 156470 unique_id port 156470 remote_ip 10.8.1.90 156476 username mohammadjavad 156476 mac 156476 bytes_out 0 156476 bytes_in 0 156476 station_ip 113.203.14.161 156476 port 609 156476 unique_id port 156476 remote_ip 10.8.0.142 156477 username rezaei 156477 kill_reason Another user logged on this global unique id 156477 mac 156477 bytes_out 0 156477 bytes_in 0 156477 station_ip 5.120.7.208 156477 port 623 156477 unique_id port 156479 username hashtadani4 156479 mac 156479 bytes_out 0 156479 bytes_in 0 156479 station_ip 5.202.58.22 156479 port 609 156479 unique_id port 156479 remote_ip 10.8.0.182 156482 username barzegar 156482 mac 156482 bytes_out 0 156482 bytes_in 0 156482 station_ip 5.120.171.149 156482 port 627 156482 unique_id port 156482 remote_ip 10.8.0.234 156484 username hashtadani4 156484 kill_reason Another user logged on this global unique id 156484 mac 156484 bytes_out 0 156484 bytes_in 0 156484 station_ip 83.122.205.124 156484 port 622 156484 unique_id port 156484 remote_ip 10.8.0.182 156488 username hashtadani4 156488 mac 156488 bytes_out 0 156488 bytes_in 0 156488 station_ip 83.122.205.124 156488 port 622 156488 unique_id port 156488 remote_ip 10.8.0.182 156489 username barzegar 156489 mac 156489 bytes_out 0 156489 bytes_in 0 156489 station_ip 5.120.171.149 156489 port 315 156489 unique_id port 156489 remote_ip 10.8.1.174 156491 username nilufarrajaei 156491 mac 156491 bytes_out 57068 156491 bytes_in 393275 156491 station_ip 83.122.195.240 156491 port 613 156491 unique_id port 156491 remote_ip 10.8.0.206 156492 username hashtadani4 156492 mac 156492 bytes_out 823962 156492 bytes_in 10442617 156492 station_ip 83.122.205.124 156492 port 622 156492 unique_id port 156492 remote_ip 10.8.0.182 156494 username rezaei 156494 kill_reason Another user logged on this global unique id 156494 mac 156494 bytes_out 0 156494 bytes_in 0 156494 station_ip 5.120.7.208 156494 port 623 156494 unique_id port 156495 username mohammadjavad 156495 mac 156495 bytes_out 84623 156495 bytes_in 1286804 156495 station_ip 37.129.213.25 156495 port 627 156495 unique_id port 156495 remote_ip 10.8.0.142 156496 username kalantary 156496 mac 156496 bytes_out 0 156496 bytes_in 0 156496 station_ip 113.203.26.157 156496 port 630 156496 unique_id port 156496 remote_ip 10.8.0.98 156499 username hashtadani4 156499 mac 156499 bytes_out 0 156499 bytes_in 0 156499 station_ip 83.122.205.124 156499 port 622 156499 unique_id port 156499 remote_ip 10.8.0.182 156503 username hashtadani4 156503 kill_reason Maximum check online fails reached 156503 mac 156503 bytes_out 0 156503 bytes_in 0 156503 station_ip 83.122.205.124 156503 port 622 156503 unique_id port 156507 username farhad2 156471 bytes_in 0 156471 station_ip 5.120.118.217 156471 port 630 156471 unique_id port 156471 remote_ip 10.8.0.14 156475 username nilufarrajaei 156475 kill_reason Another user logged on this global unique id 156475 mac 156475 bytes_out 0 156475 bytes_in 0 156475 station_ip 83.122.195.240 156475 port 613 156475 unique_id port 156478 username hashtadani4 156478 mac 156478 bytes_out 0 156478 bytes_in 0 156478 station_ip 5.202.58.22 156478 port 315 156478 unique_id port 156478 remote_ip 10.8.1.142 156480 username hashtadani4 156480 mac 156480 bytes_out 0 156480 bytes_in 0 156480 station_ip 83.122.205.124 156480 port 622 156480 unique_id port 156480 remote_ip 10.8.0.182 156481 username barzegar 156481 mac 156481 bytes_out 3191 156481 bytes_in 5185 156481 station_ip 5.120.171.149 156481 port 609 156481 unique_id port 156481 remote_ip 10.8.0.234 156483 username kalantary 156483 mac 156483 bytes_out 120428 156483 bytes_in 645058 156483 station_ip 113.203.97.169 156483 port 609 156483 unique_id port 156483 remote_ip 10.8.0.98 156486 username nilufarrajaei 156486 mac 156486 bytes_out 0 156486 bytes_in 0 156486 station_ip 83.122.195.240 156486 port 613 156486 unique_id port 156487 username hashtadani4 156487 mac 156487 bytes_out 0 156487 bytes_in 0 156487 station_ip 83.122.205.124 156487 port 622 156487 unique_id port 156497 username shadkam 156497 mac 156497 bytes_out 443589 156497 bytes_in 990343 156497 station_ip 37.129.229.172 156497 port 622 156497 unique_id port 156497 remote_ip 10.8.0.62 156498 username farhad2 156498 mac 156498 bytes_out 782257 156498 bytes_in 5101791 156498 station_ip 5.119.138.3 156498 port 315 156498 unique_id port 156498 remote_ip 10.8.1.222 156500 username barzegar 156500 mac 156500 bytes_out 0 156500 bytes_in 0 156500 station_ip 5.120.171.149 156500 port 627 156500 unique_id port 156500 remote_ip 10.8.0.234 156505 username hashtadani4 156505 kill_reason Maximum check online fails reached 156505 mac 156505 bytes_out 0 156505 bytes_in 0 156505 station_ip 83.122.205.124 156505 port 627 156505 unique_id port 156509 username milan 156509 kill_reason Another user logged on this global unique id 156509 mac 156509 bytes_out 0 156509 bytes_in 0 156509 station_ip 5.119.176.40 156509 port 609 156509 unique_id port 156509 remote_ip 10.8.0.218 156511 username malekpoir 156511 mac 156511 bytes_out 6903 156511 bytes_in 13038 156511 station_ip 5.119.64.70 156511 port 631 156511 unique_id port 156511 remote_ip 10.8.0.58 156514 username farhad2 156514 mac 156514 bytes_out 0 156514 bytes_in 0 156514 station_ip 5.119.138.3 156514 port 316 156514 unique_id port 156514 remote_ip 10.8.1.222 156516 username nilufarrajaei 156516 mac 156516 bytes_out 89876 156516 bytes_in 212340 156516 station_ip 83.123.203.9 156516 port 613 156516 unique_id port 156516 remote_ip 10.8.0.206 156517 username barzegar 156517 mac 156517 bytes_out 0 156517 bytes_in 0 156517 station_ip 5.120.171.149 156517 port 613 156517 unique_id port 156517 remote_ip 10.8.0.234 156521 username nilufarrajaei 156521 mac 156521 bytes_out 0 156521 bytes_in 0 156521 station_ip 83.123.203.9 156521 port 316 156521 unique_id port 156521 remote_ip 10.8.1.166 156526 username farhad2 156526 mac 156526 bytes_out 1203619 156526 bytes_in 12169358 156526 station_ip 5.119.138.3 156526 port 625 156526 unique_id port 156526 remote_ip 10.8.0.190 156529 username mahdiyehalizadeh 156529 mac 156529 bytes_out 0 156529 bytes_in 0 156472 bytes_out 0 156472 bytes_in 0 156472 station_ip 113.203.34.138 156472 port 628 156472 unique_id port 156472 remote_ip 10.8.0.198 156473 username pourshad 156473 mac 156473 bytes_out 0 156473 bytes_in 0 156473 station_ip 5.119.181.219 156473 port 610 156473 unique_id port 156474 username barzegar 156474 mac 156474 bytes_out 0 156474 bytes_in 0 156474 station_ip 5.120.171.149 156474 port 610 156474 unique_id port 156474 remote_ip 10.8.0.234 156485 username rezaei 156485 kill_reason Another user logged on this global unique id 156485 mac 156485 bytes_out 0 156485 bytes_in 0 156485 station_ip 5.120.7.208 156485 port 623 156485 unique_id port 156490 username barzegar 156490 mac 156490 bytes_out 0 156490 bytes_in 0 156490 station_ip 5.120.171.149 156490 port 627 156490 unique_id port 156490 remote_ip 10.8.0.234 156493 username hashtadani4 156493 mac 156493 bytes_out 0 156493 bytes_in 0 156493 station_ip 83.122.205.124 156493 port 622 156493 unique_id port 156493 remote_ip 10.8.0.182 156501 username hashtadani4 156501 mac 156501 bytes_out 0 156501 bytes_in 0 156501 station_ip 83.122.205.124 156501 port 622 156501 unique_id port 156501 remote_ip 10.8.0.182 156502 username hashtadani4 156502 mac 156502 bytes_out 0 156502 bytes_in 0 156502 station_ip 83.122.205.124 156502 port 627 156502 unique_id port 156502 remote_ip 10.8.0.182 156504 username malekpoir 156504 mac 156504 bytes_out 0 156504 bytes_in 0 156504 station_ip 5.120.176.225 156504 port 625 156504 unique_id port 156506 username shadkam 156506 mac 156506 bytes_out 2310 156506 bytes_in 4786 156506 station_ip 83.122.3.43 156506 port 630 156506 unique_id port 156506 remote_ip 10.8.0.62 156508 username hashtadani4 156508 mac 156508 bytes_out 0 156508 bytes_in 0 156508 station_ip 83.122.205.124 156508 port 625 156508 unique_id port 156508 remote_ip 10.8.0.182 156512 username farhad2 156512 mac 156512 bytes_out 0 156512 bytes_in 0 156512 station_ip 5.119.138.3 156512 port 315 156512 unique_id port 156512 remote_ip 10.8.1.222 156518 username malekpoir 156518 mac 156518 bytes_out 7123 156518 bytes_in 9156 156518 station_ip 5.119.64.70 156518 port 625 156518 unique_id port 156518 remote_ip 10.8.0.58 156519 username hashtadani4 156519 mac 156519 bytes_out 0 156519 bytes_in 0 156519 station_ip 83.122.205.124 156519 port 631 156519 unique_id port 156519 remote_ip 10.8.0.182 156522 username hashtadani4 156522 mac 156522 bytes_out 0 156522 bytes_in 0 156522 station_ip 83.122.205.124 156522 port 625 156522 unique_id port 156522 remote_ip 10.8.0.182 156523 username barzegar 156523 mac 156523 bytes_out 0 156523 bytes_in 0 156523 station_ip 5.120.171.149 156523 port 631 156523 unique_id port 156523 remote_ip 10.8.0.234 156525 username alipour 156525 kill_reason Another user logged on this global unique id 156525 mac 156525 bytes_out 0 156525 bytes_in 0 156525 station_ip 83.123.16.90 156525 port 598 156525 unique_id port 156527 username hashtadani4 156527 mac 156527 bytes_out 21938 156527 bytes_in 97587 156527 station_ip 83.122.205.124 156527 port 631 156527 unique_id port 156527 remote_ip 10.8.0.182 156530 username mahdiyehalizadeh 156530 mac 156530 bytes_out 0 156530 bytes_in 0 156530 station_ip 5.119.192.166 156530 port 631 156530 unique_id port 156530 remote_ip 10.8.0.82 156537 username tahmasebi 156537 mac 156537 bytes_out 0 156537 bytes_in 0 156537 station_ip 77.42.112.59 156537 port 610 156507 mac 156507 bytes_out 0 156507 bytes_in 0 156507 station_ip 5.119.138.3 156507 port 315 156507 unique_id port 156507 remote_ip 10.8.1.222 156510 username barzegar 156510 mac 156510 bytes_out 0 156510 bytes_in 0 156510 station_ip 5.120.171.149 156510 port 625 156510 unique_id port 156510 remote_ip 10.8.0.234 156513 username hashtadani4 156513 mac 156513 bytes_out 0 156513 bytes_in 0 156513 station_ip 83.122.205.124 156513 port 631 156513 unique_id port 156513 remote_ip 10.8.0.182 156515 username farhad2 156515 kill_reason Maximum check online fails reached 156515 mac 156515 bytes_out 0 156515 bytes_in 0 156515 station_ip 5.119.138.3 156515 port 315 156515 unique_id port 156520 username hashtadani4 156520 mac 156520 bytes_out 0 156520 bytes_in 0 156520 station_ip 83.122.205.124 156520 port 625 156520 unique_id port 156520 remote_ip 10.8.0.182 156524 username rezaei 156524 mac 156524 bytes_out 0 156524 bytes_in 0 156524 station_ip 5.120.7.208 156524 port 623 156524 unique_id port 156528 username jafari 156528 kill_reason Another user logged on this global unique id 156528 mac 156528 bytes_out 0 156528 bytes_in 0 156528 station_ip 37.137.28.160 156528 port 628 156528 unique_id port 156528 remote_ip 10.8.0.242 156531 username milan 156531 kill_reason Another user logged on this global unique id 156531 mac 156531 bytes_out 0 156531 bytes_in 0 156531 station_ip 5.119.176.40 156531 port 609 156531 unique_id port 156533 username tahmasebi 156533 mac 156533 bytes_out 0 156533 bytes_in 0 156533 station_ip 77.42.112.59 156533 port 610 156533 unique_id port 156533 remote_ip 10.8.0.42 156535 username godarzi 156535 kill_reason Another user logged on this global unique id 156535 mac 156535 bytes_out 0 156535 bytes_in 0 156535 station_ip 5.120.117.45 156535 port 626 156535 unique_id port 156535 remote_ip 10.8.0.174 156536 username tahmasebi 156536 mac 156536 bytes_out 0 156536 bytes_in 0 156536 station_ip 77.42.112.59 156536 port 317 156536 unique_id port 156536 remote_ip 10.8.1.90 156538 username farhad2 156538 mac 156538 bytes_out 0 156538 bytes_in 0 156538 station_ip 5.119.138.3 156538 port 625 156538 unique_id port 156539 username hashtadani4 156539 mac 156539 bytes_out 0 156539 bytes_in 0 156539 station_ip 83.122.245.120 156539 port 318 156539 unique_id port 156539 remote_ip 10.8.1.142 156542 username rezaei 156542 kill_reason Another user logged on this global unique id 156542 mac 156542 bytes_out 0 156542 bytes_in 0 156542 station_ip 5.120.7.208 156542 port 623 156542 unique_id port 156542 remote_ip 10.8.0.230 156543 username alihajmalek 156543 mac 156543 bytes_out 0 156543 bytes_in 0 156543 station_ip 5.202.62.170 156543 port 633 156543 unique_id port 156543 remote_ip 10.8.0.202 156546 username mohammadjavad 156546 mac 156546 bytes_out 0 156546 bytes_in 0 156546 station_ip 83.122.249.35 156546 port 631 156546 unique_id port 156546 remote_ip 10.8.0.142 156551 username hashtadani4 156551 mac 156551 bytes_out 0 156551 bytes_in 0 156551 station_ip 83.122.245.120 156551 port 625 156551 unique_id port 156551 remote_ip 10.8.0.182 156557 username jafari 156557 kill_reason Another user logged on this global unique id 156557 mac 156557 bytes_out 0 156557 bytes_in 0 156557 station_ip 37.137.28.160 156557 port 628 156557 unique_id port 156558 username morteza 156558 mac 156558 bytes_out 0 156558 bytes_in 0 156558 station_ip 113.203.44.162 156558 port 610 156558 unique_id port 156558 remote_ip 10.8.0.46 156529 station_ip 5.119.237.35 156529 port 613 156529 unique_id port 156529 remote_ip 10.8.0.82 156532 username barzegar 156532 mac 156532 bytes_out 0 156532 bytes_in 0 156532 station_ip 5.120.171.149 156532 port 631 156532 unique_id port 156532 remote_ip 10.8.0.234 156534 username farhad2 156534 kill_reason Another user logged on this global unique id 156534 mac 156534 bytes_out 0 156534 bytes_in 0 156534 station_ip 5.119.138.3 156534 port 625 156534 unique_id port 156534 remote_ip 10.8.0.190 156540 username shadkam 156540 mac 156540 bytes_out 0 156540 bytes_in 0 156540 station_ip 83.123.106.5 156540 port 610 156540 unique_id port 156540 remote_ip 10.8.0.62 156544 username barzegar 156544 mac 156544 bytes_out 0 156544 bytes_in 0 156544 station_ip 5.120.171.149 156544 port 625 156544 unique_id port 156544 remote_ip 10.8.0.234 156545 username hashtadani4 156545 mac 156545 bytes_out 0 156545 bytes_in 0 156545 station_ip 83.122.245.120 156545 port 625 156545 unique_id port 156545 remote_ip 10.8.0.182 156547 username shadkam 156547 mac 156547 bytes_out 0 156547 bytes_in 0 156547 station_ip 83.122.251.216 156547 port 625 156547 unique_id port 156547 remote_ip 10.8.0.62 156549 username godarzi 156549 mac 156549 bytes_out 0 156549 bytes_in 0 156549 station_ip 5.120.117.45 156549 port 626 156549 unique_id port 156553 username hashtadani4 156553 mac 156553 bytes_out 0 156553 bytes_in 0 156553 station_ip 83.122.245.120 156553 port 625 156553 unique_id port 156553 remote_ip 10.8.0.182 156554 username barzegar 156554 mac 156554 bytes_out 0 156554 bytes_in 0 156554 station_ip 5.120.171.149 156554 port 625 156554 unique_id port 156554 remote_ip 10.8.0.234 156555 username farhad2 156555 kill_reason Another user logged on this global unique id 156555 mac 156555 bytes_out 0 156555 bytes_in 0 156555 station_ip 5.119.138.3 156555 port 631 156555 unique_id port 156555 remote_ip 10.8.0.190 156564 username aminvpn 156564 mac 156564 bytes_out 5962769 156564 bytes_in 58268672 156564 station_ip 5.120.35.70 156564 port 632 156564 unique_id port 156564 remote_ip 10.8.0.14 156567 username aminvpn 156567 mac 156567 bytes_out 0 156567 bytes_in 0 156567 station_ip 5.120.118.217 156567 port 626 156567 unique_id port 156567 remote_ip 10.8.0.14 156568 username aminvpn 156568 mac 156568 bytes_out 0 156568 bytes_in 0 156568 station_ip 5.120.35.70 156568 port 610 156568 unique_id port 156568 remote_ip 10.8.0.14 156569 username aminvpn 156569 mac 156569 bytes_out 0 156569 bytes_in 0 156569 station_ip 5.120.118.217 156569 port 626 156569 unique_id port 156569 remote_ip 10.8.0.14 156573 username morteza 156573 mac 156573 bytes_out 0 156573 bytes_in 0 156573 station_ip 113.203.44.162 156573 port 610 156573 unique_id port 156573 remote_ip 10.8.0.46 156578 username nilufarrajaei 156578 mac 156578 bytes_out 77403 156578 bytes_in 168517 156578 station_ip 83.123.203.9 156578 port 316 156578 unique_id port 156578 remote_ip 10.8.1.166 156579 username meysam 156579 mac 156579 bytes_out 1453074 156579 bytes_in 29915049 156579 station_ip 188.159.252.69 156579 port 318 156579 unique_id port 156579 remote_ip 10.8.1.34 156581 username morteza 156581 mac 156581 bytes_out 0 156581 bytes_in 0 156581 station_ip 113.203.44.162 156581 port 610 156581 unique_id port 156581 remote_ip 10.8.0.46 156583 username aminvpn 156583 mac 156583 bytes_out 0 156583 bytes_in 0 156583 station_ip 5.120.118.217 156537 unique_id port 156537 remote_ip 10.8.0.42 156541 username hashtadani4 156541 mac 156541 bytes_out 0 156541 bytes_in 0 156541 station_ip 83.122.245.120 156541 port 610 156541 unique_id port 156541 remote_ip 10.8.0.182 156548 username hashtadani4 156548 mac 156548 bytes_out 0 156548 bytes_in 0 156548 station_ip 83.122.245.120 156548 port 625 156548 unique_id port 156548 remote_ip 10.8.0.182 156550 username milan 156550 kill_reason Another user logged on this global unique id 156550 mac 156550 bytes_out 0 156550 bytes_in 0 156550 station_ip 5.119.176.40 156550 port 609 156550 unique_id port 156552 username nilufarrajaei 156552 mac 156552 bytes_out 232549 156552 bytes_in 169274 156552 station_ip 83.123.203.9 156552 port 316 156552 unique_id port 156552 remote_ip 10.8.1.166 156556 username sabaghnezhad 156556 mac 156556 bytes_out 0 156556 bytes_in 0 156556 station_ip 83.123.36.6 156556 port 613 156556 unique_id port 156556 remote_ip 10.8.0.186 156561 username kalantary 156561 mac 156561 bytes_out 0 156561 bytes_in 0 156561 station_ip 113.203.15.161 156561 port 613 156561 unique_id port 156561 remote_ip 10.8.0.98 156562 username morteza 156562 mac 156562 bytes_out 0 156562 bytes_in 0 156562 station_ip 113.203.44.162 156562 port 610 156562 unique_id port 156562 remote_ip 10.8.0.46 156563 username farhad2 156563 mac 156563 bytes_out 0 156563 bytes_in 0 156563 station_ip 5.119.138.3 156563 port 631 156563 unique_id port 156565 username barzegar 156565 mac 156565 bytes_out 0 156565 bytes_in 0 156565 station_ip 5.120.171.149 156565 port 610 156565 unique_id port 156565 remote_ip 10.8.0.234 156570 username tahmasebi 156570 mac 156570 bytes_out 0 156570 bytes_in 0 156570 station_ip 77.42.112.59 156570 port 320 156570 unique_id port 156570 remote_ip 10.8.1.90 156576 username morteza 156576 mac 156576 bytes_out 0 156576 bytes_in 0 156576 station_ip 113.203.44.162 156576 port 626 156576 unique_id port 156576 remote_ip 10.8.0.46 156577 username aminvpn 156577 mac 156577 bytes_out 0 156577 bytes_in 0 156577 station_ip 5.120.118.217 156577 port 610 156577 unique_id port 156577 remote_ip 10.8.0.14 156582 username jafari 156582 kill_reason Another user logged on this global unique id 156582 mac 156582 bytes_out 0 156582 bytes_in 0 156582 station_ip 37.137.28.160 156582 port 628 156582 unique_id port 156584 username nilufarrajaei 156584 mac 156584 bytes_out 9211 156584 bytes_in 20550 156584 station_ip 83.123.203.9 156584 port 316 156584 unique_id port 156584 remote_ip 10.8.1.166 156585 username aminvpn 156585 mac 156585 bytes_out 0 156585 bytes_in 0 156585 station_ip 5.120.35.70 156585 port 610 156585 unique_id port 156585 remote_ip 10.8.0.14 156589 username mohammadjavad 156589 mac 156589 bytes_out 65301 156589 bytes_in 158884 156589 station_ip 83.122.249.35 156589 port 319 156589 unique_id port 156589 remote_ip 10.8.1.146 156591 username aminvpn 156591 mac 156591 bytes_out 0 156591 bytes_in 0 156591 station_ip 5.120.35.70 156591 port 631 156591 unique_id port 156591 remote_ip 10.8.0.14 156596 username morteza 156596 mac 156596 bytes_out 0 156596 bytes_in 0 156596 station_ip 113.203.44.162 156596 port 610 156596 unique_id port 156596 remote_ip 10.8.0.46 156597 username aminvpn 156597 mac 156597 bytes_out 0 156597 bytes_in 0 156597 station_ip 5.120.35.70 156597 port 631 156597 unique_id port 156597 remote_ip 10.8.0.14 156599 username barzegar 156559 username morteza 156559 mac 156559 bytes_out 0 156559 bytes_in 0 156559 station_ip 113.203.44.162 156559 port 610 156559 unique_id port 156559 remote_ip 10.8.0.46 156560 username morteza 156560 mac 156560 bytes_out 0 156560 bytes_in 0 156560 station_ip 113.203.44.162 156560 port 610 156560 unique_id port 156560 remote_ip 10.8.0.46 156566 username morteza 156566 mac 156566 bytes_out 0 156566 bytes_in 0 156566 station_ip 113.203.44.162 156566 port 613 156566 unique_id port 156566 remote_ip 10.8.0.46 156571 username aminvpn 156571 mac 156571 bytes_out 0 156571 bytes_in 0 156571 station_ip 5.120.35.70 156571 port 610 156571 unique_id port 156571 remote_ip 10.8.0.14 156572 username aminvpn 156572 mac 156572 bytes_out 0 156572 bytes_in 0 156572 station_ip 5.120.118.217 156572 port 626 156572 unique_id port 156572 remote_ip 10.8.0.14 156574 username morteza 156574 mac 156574 bytes_out 0 156574 bytes_in 0 156574 station_ip 113.203.44.162 156574 port 610 156574 unique_id port 156574 remote_ip 10.8.0.46 156575 username aminvpn 156575 mac 156575 bytes_out 0 156575 bytes_in 0 156575 station_ip 5.120.35.70 156575 port 631 156575 unique_id port 156575 remote_ip 10.8.0.14 156580 username aminvpn 156580 mac 156580 bytes_out 0 156580 bytes_in 0 156580 station_ip 5.120.35.70 156580 port 631 156580 unique_id port 156580 remote_ip 10.8.0.14 156586 username aminvpn 156586 mac 156586 bytes_out 0 156586 bytes_in 0 156586 station_ip 5.120.118.217 156586 port 631 156586 unique_id port 156586 remote_ip 10.8.0.14 156588 username aminvpn 156588 mac 156588 bytes_out 0 156588 bytes_in 0 156588 station_ip 5.120.35.70 156588 port 632 156588 unique_id port 156588 remote_ip 10.8.0.14 156592 username milan 156592 kill_reason Another user logged on this global unique id 156592 mac 156592 bytes_out 0 156592 bytes_in 0 156592 station_ip 5.119.176.40 156592 port 609 156592 unique_id port 156593 username aminvpn 156593 mac 156593 bytes_out 0 156593 bytes_in 0 156593 station_ip 5.120.118.217 156593 port 632 156593 unique_id port 156593 remote_ip 10.8.0.14 156602 username aminvpn 156602 mac 156602 bytes_out 0 156602 bytes_in 0 156602 station_ip 5.120.35.70 156602 port 631 156602 unique_id port 156602 remote_ip 10.8.0.14 156603 username morteza 156603 mac 156603 bytes_out 0 156603 bytes_in 0 156603 station_ip 113.203.44.162 156603 port 631 156603 unique_id port 156603 remote_ip 10.8.0.46 156606 username jafari 156606 kill_reason Another user logged on this global unique id 156606 mac 156606 bytes_out 0 156606 bytes_in 0 156606 station_ip 37.137.28.160 156606 port 628 156606 unique_id port 156607 username hamidsalari 156607 kill_reason Another user logged on this global unique id 156607 mac 156607 bytes_out 0 156607 bytes_in 0 156607 station_ip 5.119.30.45 156607 port 620 156607 unique_id port 156608 username farhad2 156608 kill_reason Another user logged on this global unique id 156608 mac 156608 bytes_out 0 156608 bytes_in 0 156608 station_ip 5.119.138.3 156608 port 613 156608 unique_id port 156608 remote_ip 10.8.0.190 156609 username morteza 156609 mac 156609 bytes_out 0 156609 bytes_in 0 156609 station_ip 113.203.44.162 156609 port 633 156609 unique_id port 156609 remote_ip 10.8.0.46 156612 username farhad2 156612 mac 156612 bytes_out 0 156612 bytes_in 0 156612 station_ip 5.119.138.3 156612 port 613 156612 unique_id port 156618 username hashtadani4 156618 mac 156583 port 632 156583 unique_id port 156583 remote_ip 10.8.0.14 156587 username farhad2 156587 mac 156587 bytes_out 0 156587 bytes_in 0 156587 station_ip 5.119.138.3 156587 port 613 156587 unique_id port 156587 remote_ip 10.8.0.190 156590 username aminvpn 156590 mac 156590 bytes_out 0 156590 bytes_in 0 156590 station_ip 5.120.118.217 156590 port 613 156590 unique_id port 156590 remote_ip 10.8.0.14 156594 username morteza 156594 mac 156594 bytes_out 0 156594 bytes_in 0 156594 station_ip 113.203.44.162 156594 port 610 156594 unique_id port 156594 remote_ip 10.8.0.46 156595 username hosseine 156595 mac 156595 bytes_out 0 156595 bytes_in 0 156595 station_ip 83.123.120.39 156595 port 630 156595 unique_id port 156595 remote_ip 10.8.0.238 156598 username aminvpn 156598 mac 156598 bytes_out 0 156598 bytes_in 0 156598 station_ip 5.120.118.217 156598 port 630 156598 unique_id port 156598 remote_ip 10.8.0.14 156600 username aminvpn 156600 mac 156600 bytes_out 0 156600 bytes_in 0 156600 station_ip 5.120.35.70 156600 port 631 156600 unique_id port 156600 remote_ip 10.8.0.14 156601 username aminvpn 156601 mac 156601 bytes_out 0 156601 bytes_in 0 156601 station_ip 5.120.118.217 156601 port 630 156601 unique_id port 156601 remote_ip 10.8.0.14 156604 username tahmasebi 156604 mac 156604 bytes_out 0 156604 bytes_in 0 156604 station_ip 77.42.112.59 156604 port 318 156604 unique_id port 156604 remote_ip 10.8.1.90 156610 username milan 156610 kill_reason Another user logged on this global unique id 156610 mac 156610 bytes_out 0 156610 bytes_in 0 156610 station_ip 5.119.176.40 156610 port 609 156610 unique_id port 156613 username morteza 156613 mac 156613 bytes_out 0 156613 bytes_in 0 156613 station_ip 113.203.44.162 156613 port 633 156613 unique_id port 156613 remote_ip 10.8.0.46 156615 username godarzi 156615 mac 156615 bytes_out 0 156615 bytes_in 0 156615 station_ip 5.120.117.45 156615 port 625 156615 unique_id port 156615 remote_ip 10.8.0.174 156617 username hamidsalari 156617 kill_reason Another user logged on this global unique id 156617 mac 156617 bytes_out 0 156617 bytes_in 0 156617 station_ip 5.119.30.45 156617 port 620 156617 unique_id port 156622 username barzegar 156622 mac 156622 bytes_out 0 156622 bytes_in 0 156622 station_ip 5.120.171.149 156622 port 316 156622 unique_id port 156622 remote_ip 10.8.1.174 156628 username morteza 156628 mac 156628 bytes_out 0 156628 bytes_in 0 156628 station_ip 113.203.44.162 156628 port 625 156628 unique_id port 156628 remote_ip 10.8.0.46 156631 username rezaei 156631 mac 156631 bytes_out 5601 156631 bytes_in 11713 156631 station_ip 5.120.7.208 156631 port 628 156631 unique_id port 156631 remote_ip 10.8.0.230 156638 username nilufarrajaei 156638 mac 156638 bytes_out 43053 156638 bytes_in 74650 156638 station_ip 83.123.203.9 156638 port 318 156638 unique_id port 156638 remote_ip 10.8.1.166 156639 username aminvpn 156639 mac 156639 bytes_out 0 156639 bytes_in 0 156639 station_ip 5.120.35.70 156639 port 625 156639 unique_id port 156639 remote_ip 10.8.0.14 156643 username aminvpn 156643 mac 156643 bytes_out 0 156643 bytes_in 0 156643 station_ip 5.120.35.70 156643 port 628 156643 unique_id port 156643 remote_ip 10.8.0.14 156645 username yarmohamadi 156645 mac 156645 bytes_out 0 156645 bytes_in 0 156645 station_ip 5.120.77.195 156645 port 632 156645 unique_id port 156645 remote_ip 10.8.0.210 156599 mac 156599 bytes_out 0 156599 bytes_in 0 156599 station_ip 5.120.171.149 156599 port 318 156599 unique_id port 156599 remote_ip 10.8.1.174 156605 username nilufarrajaei 156605 mac 156605 bytes_out 28803 156605 bytes_in 47865 156605 station_ip 83.123.203.9 156605 port 316 156605 unique_id port 156605 remote_ip 10.8.1.166 156611 username hashtadani4 156611 mac 156611 bytes_out 0 156611 bytes_in 0 156611 station_ip 83.122.245.120 156611 port 625 156611 unique_id port 156611 remote_ip 10.8.0.182 156614 username tahmasebi 156614 mac 156614 bytes_out 0 156614 bytes_in 0 156614 station_ip 77.42.112.59 156614 port 634 156614 unique_id port 156614 remote_ip 10.8.0.42 156616 username barzegar 156616 mac 156616 bytes_out 0 156616 bytes_in 0 156616 station_ip 5.120.171.149 156616 port 316 156616 unique_id port 156616 remote_ip 10.8.1.174 156620 username morteza 156620 mac 156620 bytes_out 0 156620 bytes_in 0 156620 station_ip 113.203.44.162 156620 port 319 156620 unique_id port 156620 remote_ip 10.8.1.62 156623 username morteza 156623 mac 156623 bytes_out 0 156623 bytes_in 0 156623 station_ip 113.203.44.162 156623 port 316 156623 unique_id port 156623 remote_ip 10.8.1.62 156626 username rezaei 156626 mac 156626 bytes_out 0 156626 bytes_in 0 156626 station_ip 5.120.7.208 156626 port 623 156626 unique_id port 156627 username aminvpn 156627 mac 156627 bytes_out 0 156627 bytes_in 0 156627 station_ip 5.120.35.70 156627 port 625 156627 unique_id port 156627 remote_ip 10.8.0.14 156629 username farhad2 156629 kill_reason Another user logged on this global unique id 156629 mac 156629 bytes_out 0 156629 bytes_in 0 156629 station_ip 5.119.138.3 156629 port 613 156629 unique_id port 156629 remote_ip 10.8.0.190 156632 username hashtadani4 156632 mac 156632 bytes_out 0 156632 bytes_in 0 156632 station_ip 83.122.245.120 156632 port 625 156632 unique_id port 156632 remote_ip 10.8.0.182 156633 username hashtadani4 156633 mac 156633 bytes_out 0 156633 bytes_in 0 156633 station_ip 83.122.245.120 156633 port 623 156633 unique_id port 156633 remote_ip 10.8.0.182 156635 username aminvpn 156635 mac 156635 bytes_out 0 156635 bytes_in 0 156635 station_ip 5.120.35.70 156635 port 630 156635 unique_id port 156635 remote_ip 10.8.0.14 156637 username aminvpn 156637 mac 156637 bytes_out 0 156637 bytes_in 0 156637 station_ip 5.120.118.217 156637 port 623 156637 unique_id port 156637 remote_ip 10.8.0.14 156640 username aminvpn 156640 mac 156640 bytes_out 0 156640 bytes_in 0 156640 station_ip 5.120.118.217 156640 port 623 156640 unique_id port 156640 remote_ip 10.8.0.14 156642 username pourshad 156642 mac 156642 bytes_out 0 156642 bytes_in 0 156642 station_ip 5.119.181.219 156642 port 626 156642 unique_id port 156642 remote_ip 10.8.0.18 156644 username morteza 156644 mac 156644 bytes_out 0 156644 bytes_in 0 156644 station_ip 113.203.44.162 156644 port 318 156644 unique_id port 156644 remote_ip 10.8.1.62 156652 username hashtadani4 156652 mac 156652 bytes_out 0 156652 bytes_in 0 156652 station_ip 83.122.245.120 156652 port 626 156652 unique_id port 156652 remote_ip 10.8.0.182 156654 username aminvpn 156654 mac 156654 bytes_out 0 156654 bytes_in 0 156654 station_ip 5.120.35.70 156654 port 625 156654 unique_id port 156654 remote_ip 10.8.0.14 156656 username barzegar 156656 mac 156656 bytes_out 0 156656 bytes_in 0 156618 bytes_out 0 156618 bytes_in 0 156618 station_ip 83.122.245.120 156618 port 625 156618 unique_id port 156618 remote_ip 10.8.0.182 156619 username morteza 156619 mac 156619 bytes_out 0 156619 bytes_in 0 156619 station_ip 113.203.44.162 156619 port 625 156619 unique_id port 156619 remote_ip 10.8.0.46 156621 username jafari 156621 mac 156621 bytes_out 0 156621 bytes_in 0 156621 station_ip 37.137.28.160 156621 port 628 156621 unique_id port 156624 username milan 156624 kill_reason Another user logged on this global unique id 156624 mac 156624 bytes_out 0 156624 bytes_in 0 156624 station_ip 5.119.176.40 156624 port 609 156624 unique_id port 156625 username aminvpn 156625 mac 156625 bytes_out 92649 156625 bytes_in 278139 156625 station_ip 5.120.118.217 156625 port 630 156625 unique_id port 156625 remote_ip 10.8.0.14 156630 username aminvpn 156630 mac 156630 bytes_out 0 156630 bytes_in 0 156630 station_ip 5.120.118.217 156630 port 623 156630 unique_id port 156630 remote_ip 10.8.0.14 156634 username morteza 156634 mac 156634 bytes_out 0 156634 bytes_in 0 156634 station_ip 113.203.44.162 156634 port 625 156634 unique_id port 156634 remote_ip 10.8.0.46 156636 username barzegar 156636 mac 156636 bytes_out 0 156636 bytes_in 0 156636 station_ip 5.120.171.149 156636 port 316 156636 unique_id port 156636 remote_ip 10.8.1.174 156641 username hashtadani4 156641 mac 156641 bytes_out 0 156641 bytes_in 0 156641 station_ip 83.122.245.120 156641 port 625 156641 unique_id port 156641 remote_ip 10.8.0.182 156646 username aminvpn 156646 mac 156646 bytes_out 0 156646 bytes_in 0 156646 station_ip 5.120.118.217 156646 port 623 156646 unique_id port 156646 remote_ip 10.8.0.14 156653 username hashtadani4 156653 mac 156653 bytes_out 0 156653 bytes_in 0 156653 station_ip 83.122.245.120 156653 port 626 156653 unique_id port 156653 remote_ip 10.8.0.182 156660 username hashtadani4 156660 mac 156660 bytes_out 0 156660 bytes_in 0 156660 station_ip 83.122.245.120 156660 port 625 156660 unique_id port 156660 remote_ip 10.8.0.182 156665 username aminvpn 156665 mac 156665 bytes_out 0 156665 bytes_in 0 156665 station_ip 5.120.35.70 156665 port 609 156665 unique_id port 156665 remote_ip 10.8.0.14 156667 username hashtadani4 156667 mac 156667 bytes_out 0 156667 bytes_in 0 156667 station_ip 83.122.245.120 156667 port 318 156667 unique_id port 156667 remote_ip 10.8.1.142 156674 username aminvpn 156674 mac 156674 bytes_out 0 156674 bytes_in 0 156674 station_ip 5.120.35.70 156674 port 609 156674 unique_id port 156674 remote_ip 10.8.0.14 156675 username aminvpn 156675 mac 156675 bytes_out 0 156675 bytes_in 0 156675 station_ip 5.120.118.217 156675 port 613 156675 unique_id port 156675 remote_ip 10.8.0.14 156677 username aminvpn 156677 mac 156677 bytes_out 0 156677 bytes_in 0 156677 station_ip 5.120.35.70 156677 port 609 156677 unique_id port 156677 remote_ip 10.8.0.14 156679 username aminvpn 156679 mac 156679 bytes_out 0 156679 bytes_in 0 156679 station_ip 5.120.35.70 156679 port 609 156679 unique_id port 156679 remote_ip 10.8.0.14 156690 username aminvpn 156690 mac 156690 bytes_out 0 156690 bytes_in 0 156690 station_ip 5.120.35.70 156690 port 630 156690 unique_id port 156690 remote_ip 10.8.0.14 156693 username nilufarrajaei 156693 mac 156693 bytes_out 0 156693 bytes_in 0 156693 station_ip 83.123.203.9 156693 port 316 156693 unique_id port 156647 username farhad2 156647 mac 156647 bytes_out 0 156647 bytes_in 0 156647 station_ip 5.119.138.3 156647 port 613 156647 unique_id port 156648 username tahmasebi 156648 mac 156648 bytes_out 0 156648 bytes_in 0 156648 station_ip 77.42.112.59 156648 port 613 156648 unique_id port 156648 remote_ip 10.8.0.42 156649 username aminvpn 156649 mac 156649 bytes_out 0 156649 bytes_in 0 156649 station_ip 5.120.35.70 156649 port 625 156649 unique_id port 156649 remote_ip 10.8.0.14 156650 username aminvpn 156650 mac 156650 bytes_out 0 156650 bytes_in 0 156650 station_ip 5.120.118.217 156650 port 613 156650 unique_id port 156650 remote_ip 10.8.0.14 156651 username morteza 156651 mac 156651 bytes_out 2013 156651 bytes_in 4833 156651 station_ip 113.203.44.162 156651 port 318 156651 unique_id port 156651 remote_ip 10.8.1.62 156655 username milan 156655 mac 156655 bytes_out 0 156655 bytes_in 0 156655 station_ip 5.119.176.40 156655 port 609 156655 unique_id port 156657 username aminvpn 156657 mac 156657 bytes_out 0 156657 bytes_in 0 156657 station_ip 5.120.118.217 156657 port 626 156657 unique_id port 156657 remote_ip 10.8.0.14 156659 username aminvpn 156659 mac 156659 bytes_out 0 156659 bytes_in 0 156659 station_ip 5.120.118.217 156659 port 626 156659 unique_id port 156659 remote_ip 10.8.0.14 156663 username aminvpn 156663 mac 156663 bytes_out 0 156663 bytes_in 0 156663 station_ip 5.120.35.70 156663 port 609 156663 unique_id port 156663 remote_ip 10.8.0.14 156664 username aminvpn 156664 mac 156664 bytes_out 0 156664 bytes_in 0 156664 station_ip 5.120.118.217 156664 port 625 156664 unique_id port 156664 remote_ip 10.8.0.14 156668 username farhad2 156668 mac 156668 bytes_out 0 156668 bytes_in 0 156668 station_ip 5.119.138.3 156668 port 613 156668 unique_id port 156668 remote_ip 10.8.0.190 156670 username aminvpn 156670 mac 156670 bytes_out 0 156670 bytes_in 0 156670 station_ip 5.120.35.70 156670 port 609 156670 unique_id port 156670 remote_ip 10.8.0.14 156672 username aminvpn 156672 mac 156672 bytes_out 0 156672 bytes_in 0 156672 station_ip 5.120.118.217 156672 port 613 156672 unique_id port 156672 remote_ip 10.8.0.14 156673 username tahmasebi 156673 mac 156673 bytes_out 0 156673 bytes_in 0 156673 station_ip 77.42.112.59 156673 port 318 156673 unique_id port 156673 remote_ip 10.8.1.90 156676 username nilufarrajaei 156676 mac 156676 bytes_out 77200 156676 bytes_in 494146 156676 station_ip 83.123.203.9 156676 port 316 156676 unique_id port 156676 remote_ip 10.8.1.166 156678 username aminvpn 156678 mac 156678 bytes_out 0 156678 bytes_in 0 156678 station_ip 5.120.118.217 156678 port 613 156678 unique_id port 156678 remote_ip 10.8.0.14 156680 username aminvpn 156680 mac 156680 bytes_out 0 156680 bytes_in 0 156680 station_ip 5.120.118.217 156680 port 613 156680 unique_id port 156680 remote_ip 10.8.0.14 156684 username aminvpn 156684 mac 156684 bytes_out 0 156684 bytes_in 0 156684 station_ip 5.120.118.217 156684 port 626 156684 unique_id port 156684 remote_ip 10.8.0.14 156688 username aminvpn 156688 mac 156688 bytes_out 0 156688 bytes_in 0 156688 station_ip 5.120.118.217 156688 port 631 156688 unique_id port 156688 remote_ip 10.8.0.14 156689 username moradi 156689 mac 156689 bytes_out 0 156689 bytes_in 0 156689 station_ip 46.225.211.177 156689 port 626 156689 unique_id port 156656 station_ip 5.120.171.149 156656 port 318 156656 unique_id port 156656 remote_ip 10.8.1.174 156658 username aminvpn 156658 mac 156658 bytes_out 0 156658 bytes_in 0 156658 station_ip 5.120.35.70 156658 port 609 156658 unique_id port 156658 remote_ip 10.8.0.14 156661 username aminvpn 156661 mac 156661 bytes_out 0 156661 bytes_in 0 156661 station_ip 5.120.35.70 156661 port 609 156661 unique_id port 156661 remote_ip 10.8.0.14 156662 username aminvpn 156662 mac 156662 bytes_out 0 156662 bytes_in 0 156662 station_ip 5.120.118.217 156662 port 625 156662 unique_id port 156662 remote_ip 10.8.0.14 156666 username aminvpn 156666 mac 156666 bytes_out 0 156666 bytes_in 0 156666 station_ip 5.120.118.217 156666 port 625 156666 unique_id port 156666 remote_ip 10.8.0.14 156669 username hashtadani4 156669 mac 156669 bytes_out 0 156669 bytes_in 0 156669 station_ip 83.122.245.120 156669 port 319 156669 unique_id port 156669 remote_ip 10.8.1.142 156671 username barzegar 156671 mac 156671 bytes_out 0 156671 bytes_in 0 156671 station_ip 5.120.171.149 156671 port 318 156671 unique_id port 156671 remote_ip 10.8.1.174 156681 username tahmasebi 156681 mac 156681 bytes_out 0 156681 bytes_in 0 156681 station_ip 77.42.112.59 156681 port 318 156681 unique_id port 156681 remote_ip 10.8.1.90 156682 username aminvpn 156682 mac 156682 bytes_out 0 156682 bytes_in 0 156682 station_ip 5.120.35.70 156682 port 609 156682 unique_id port 156682 remote_ip 10.8.0.14 156683 username hashtadani4 156683 mac 156683 bytes_out 0 156683 bytes_in 0 156683 station_ip 83.122.245.120 156683 port 613 156683 unique_id port 156683 remote_ip 10.8.0.182 156685 username khademi 156685 kill_reason Another user logged on this global unique id 156685 mac 156685 bytes_out 0 156685 bytes_in 0 156685 station_ip 113.203.78.111 156685 port 614 156685 unique_id port 156686 username moradi 156686 mac 156686 bytes_out 0 156686 bytes_in 0 156686 station_ip 46.225.211.177 156686 port 631 156686 unique_id port 156686 remote_ip 10.8.0.226 156687 username aminvpn 156687 mac 156687 bytes_out 0 156687 bytes_in 0 156687 station_ip 5.120.35.70 156687 port 630 156687 unique_id port 156687 remote_ip 10.8.0.14 156691 username aminvpn 156691 mac 156691 bytes_out 0 156691 bytes_in 0 156691 station_ip 5.120.118.217 156691 port 626 156691 unique_id port 156691 remote_ip 10.8.0.14 156692 username hashtadani4 156692 mac 156692 bytes_out 0 156692 bytes_in 0 156692 station_ip 83.122.245.120 156692 port 626 156692 unique_id port 156692 remote_ip 10.8.0.182 156694 username aminvpn 156694 mac 156694 bytes_out 0 156694 bytes_in 0 156694 station_ip 5.120.35.70 156694 port 630 156694 unique_id port 156694 remote_ip 10.8.0.14 156701 username rezaei 156701 mac 156701 bytes_out 0 156701 bytes_in 0 156701 station_ip 5.120.7.208 156701 port 628 156701 unique_id port 156701 remote_ip 10.8.0.230 156704 username farhad2 156704 mac 156704 bytes_out 0 156704 bytes_in 0 156704 station_ip 5.119.138.3 156704 port 630 156704 unique_id port 156704 remote_ip 10.8.0.190 156707 username aminvpn 156707 mac 156707 bytes_out 0 156707 bytes_in 0 156707 station_ip 5.120.118.217 156707 port 613 156707 unique_id port 156707 remote_ip 10.8.0.14 156711 username aminvpn 156711 mac 156711 bytes_out 0 156711 bytes_in 0 156711 station_ip 37.129.255.192 156711 port 613 156711 unique_id port 156711 remote_ip 10.8.0.14 156689 remote_ip 10.8.0.226 156696 username aminvpn 156696 mac 156696 bytes_out 0 156696 bytes_in 0 156696 station_ip 5.120.118.217 156696 port 626 156696 unique_id port 156696 remote_ip 10.8.0.14 156697 username aminvpn 156697 mac 156697 bytes_out 0 156697 bytes_in 0 156697 station_ip 5.120.35.70 156697 port 632 156697 unique_id port 156697 remote_ip 10.8.0.14 156700 username godarzi 156700 mac 156700 bytes_out 0 156700 bytes_in 0 156700 station_ip 5.120.117.45 156700 port 613 156700 unique_id port 156700 remote_ip 10.8.0.174 156702 username aminvpn 156702 mac 156702 bytes_out 0 156702 bytes_in 0 156702 station_ip 5.120.35.70 156702 port 633 156702 unique_id port 156702 remote_ip 10.8.0.14 156703 username aminvpn 156703 mac 156703 bytes_out 0 156703 bytes_in 0 156703 station_ip 5.120.118.217 156703 port 613 156703 unique_id port 156703 remote_ip 10.8.0.14 156708 username aminvpn 156708 mac 156708 bytes_out 0 156708 bytes_in 0 156708 station_ip 37.129.255.192 156708 port 626 156708 unique_id port 156708 remote_ip 10.8.0.14 156709 username aminvpn 156709 mac 156709 bytes_out 0 156709 bytes_in 0 156709 station_ip 5.120.35.70 156709 port 613 156709 unique_id port 156709 remote_ip 10.8.0.14 156712 username aminvpn 156712 mac 156712 bytes_out 0 156712 bytes_in 0 156712 station_ip 5.120.35.70 156712 port 626 156712 unique_id port 156712 remote_ip 10.8.0.14 156715 username aminvpn 156715 mac 156715 bytes_out 0 156715 bytes_in 0 156715 station_ip 5.120.35.70 156715 port 613 156715 unique_id port 156715 remote_ip 10.8.0.14 156716 username aminvpn 156716 mac 156716 bytes_out 0 156716 bytes_in 0 156716 station_ip 5.120.118.217 156716 port 628 156716 unique_id port 156716 remote_ip 10.8.0.14 156717 username aminvpn 156717 mac 156717 bytes_out 0 156717 bytes_in 0 156717 station_ip 37.129.255.192 156717 port 613 156717 unique_id port 156717 remote_ip 10.8.0.14 156719 username aminvpn 156719 mac 156719 bytes_out 0 156719 bytes_in 0 156719 station_ip 5.120.118.217 156719 port 613 156719 unique_id port 156719 remote_ip 10.8.0.14 156722 username aminvpn 156722 mac 156722 bytes_out 0 156722 bytes_in 0 156722 station_ip 5.120.118.217 156722 port 630 156722 unique_id port 156722 remote_ip 10.8.0.14 156725 username aminvpn 156725 mac 156725 bytes_out 0 156725 bytes_in 0 156725 station_ip 5.120.35.70 156725 port 609 156725 unique_id port 156725 remote_ip 10.8.0.14 156728 username aminvpn 156728 mac 156728 bytes_out 0 156728 bytes_in 0 156728 station_ip 37.129.255.192 156728 port 609 156728 unique_id port 156728 remote_ip 10.8.0.14 156732 username aminvpn 156732 mac 156732 bytes_out 0 156732 bytes_in 0 156732 station_ip 37.129.255.192 156732 port 609 156732 unique_id port 156732 remote_ip 10.8.0.14 156733 username aminvpn 156733 mac 156733 bytes_out 0 156733 bytes_in 0 156733 station_ip 5.120.35.70 156733 port 630 156733 unique_id port 156733 remote_ip 10.8.0.14 156737 username hashtadani4 156737 mac 156737 bytes_out 0 156737 bytes_in 0 156737 station_ip 83.122.245.120 156737 port 630 156737 unique_id port 156737 remote_ip 10.8.0.182 156743 username barzegar 156743 mac 156743 bytes_out 0 156743 bytes_in 0 156743 station_ip 5.120.171.149 156743 port 318 156743 unique_id port 156743 remote_ip 10.8.1.174 156746 username aminvpn 156746 mac 156746 bytes_out 0 156746 bytes_in 0 156693 remote_ip 10.8.1.166 156695 username farhad2 156695 mac 156695 bytes_out 0 156695 bytes_in 0 156695 station_ip 5.119.138.3 156695 port 609 156695 unique_id port 156695 remote_ip 10.8.0.190 156698 username nilufarrajaei 156698 mac 156698 bytes_out 0 156698 bytes_in 0 156698 station_ip 83.123.203.9 156698 port 316 156698 unique_id port 156698 remote_ip 10.8.1.166 156699 username aminvpn 156699 mac 156699 bytes_out 0 156699 bytes_in 0 156699 station_ip 5.120.118.217 156699 port 626 156699 unique_id port 156699 remote_ip 10.8.0.14 156705 username barzegar 156705 mac 156705 bytes_out 0 156705 bytes_in 0 156705 station_ip 5.120.171.149 156705 port 318 156705 unique_id port 156705 remote_ip 10.8.1.174 156706 username aminvpn 156706 mac 156706 bytes_out 0 156706 bytes_in 0 156706 station_ip 5.120.35.70 156706 port 626 156706 unique_id port 156706 remote_ip 10.8.0.14 156710 username aminvpn 156710 mac 156710 bytes_out 0 156710 bytes_in 0 156710 station_ip 5.120.118.217 156710 port 626 156710 unique_id port 156710 remote_ip 10.8.0.14 156713 username aminvpn 156713 mac 156713 bytes_out 0 156713 bytes_in 0 156713 station_ip 5.120.118.217 156713 port 613 156713 unique_id port 156713 remote_ip 10.8.0.14 156718 username aminvpn 156718 mac 156718 bytes_out 0 156718 bytes_in 0 156718 station_ip 5.120.35.70 156718 port 630 156718 unique_id port 156718 remote_ip 10.8.0.14 156720 username aminvpn 156720 mac 156720 bytes_out 0 156720 bytes_in 0 156720 station_ip 37.129.255.192 156720 port 630 156720 unique_id port 156720 remote_ip 10.8.0.14 156723 username hashtadani4 156723 mac 156723 bytes_out 1455636 156723 bytes_in 23037656 156723 station_ip 83.122.245.120 156723 port 609 156723 unique_id port 156723 remote_ip 10.8.0.182 156726 username aminvpn 156726 mac 156726 bytes_out 0 156726 bytes_in 0 156726 station_ip 5.120.118.217 156726 port 613 156726 unique_id port 156726 remote_ip 10.8.0.14 156730 username hashtadani4 156730 mac 156730 bytes_out 0 156730 bytes_in 0 156730 station_ip 83.122.245.120 156730 port 609 156730 unique_id port 156730 remote_ip 10.8.0.182 156734 username morteza 156734 mac 156734 bytes_out 0 156734 bytes_in 0 156734 station_ip 113.203.14.58 156734 port 613 156734 unique_id port 156734 remote_ip 10.8.0.46 156738 username aminvpn 156738 mac 156738 bytes_out 0 156738 bytes_in 0 156738 station_ip 5.120.35.70 156738 port 633 156738 unique_id port 156738 remote_ip 10.8.0.14 156740 username hashtadani4 156740 mac 156740 bytes_out 0 156740 bytes_in 0 156740 station_ip 83.122.245.120 156740 port 613 156740 unique_id port 156740 remote_ip 10.8.0.182 156742 username aminvpn 156742 mac 156742 bytes_out 0 156742 bytes_in 0 156742 station_ip 37.129.255.192 156742 port 613 156742 unique_id port 156742 remote_ip 10.8.0.14 156744 username tahmasebi 156744 mac 156744 bytes_out 0 156744 bytes_in 0 156744 station_ip 77.42.112.59 156744 port 625 156744 unique_id port 156744 remote_ip 10.8.0.42 156747 username aminvpn 156747 mac 156747 bytes_out 0 156747 bytes_in 0 156747 station_ip 5.120.118.217 156747 port 630 156747 unique_id port 156747 remote_ip 10.8.0.14 156748 username aminvpn 156748 mac 156748 bytes_out 0 156748 bytes_in 0 156748 station_ip 5.120.35.70 156748 port 625 156748 unique_id port 156748 remote_ip 10.8.0.14 156752 username khademi 156752 kill_reason Another user logged on this global unique id 156714 username aminvpn 156714 mac 156714 bytes_out 0 156714 bytes_in 0 156714 station_ip 37.129.255.192 156714 port 628 156714 unique_id port 156714 remote_ip 10.8.0.14 156721 username aminvpn 156721 mac 156721 bytes_out 0 156721 bytes_in 0 156721 station_ip 5.120.35.70 156721 port 613 156721 unique_id port 156721 remote_ip 10.8.0.14 156724 username aminvpn 156724 mac 156724 bytes_out 0 156724 bytes_in 0 156724 station_ip 37.129.255.192 156724 port 613 156724 unique_id port 156724 remote_ip 10.8.0.14 156727 username morteza 156727 mac 156727 bytes_out 251727 156727 bytes_in 4646602 156727 station_ip 113.203.14.58 156727 port 316 156727 unique_id port 156727 remote_ip 10.8.1.62 156729 username aminvpn 156729 mac 156729 bytes_out 0 156729 bytes_in 0 156729 station_ip 5.120.35.70 156729 port 613 156729 unique_id port 156729 remote_ip 10.8.0.14 156731 username aminvpn 156731 mac 156731 bytes_out 0 156731 bytes_in 0 156731 station_ip 5.120.118.217 156731 port 630 156731 unique_id port 156731 remote_ip 10.8.0.14 156735 username aminvpn 156735 mac 156735 bytes_out 0 156735 bytes_in 0 156735 station_ip 5.120.118.217 156735 port 633 156735 unique_id port 156735 remote_ip 10.8.0.14 156736 username aminvpn 156736 mac 156736 bytes_out 0 156736 bytes_in 0 156736 station_ip 37.129.255.192 156736 port 613 156736 unique_id port 156736 remote_ip 10.8.0.14 156739 username shadkam 156739 mac 156739 bytes_out 251381 156739 bytes_in 2117898 156739 station_ip 83.122.248.78 156739 port 316 156739 unique_id port 156739 remote_ip 10.8.1.218 156741 username aminvpn 156741 mac 156741 bytes_out 0 156741 bytes_in 0 156741 station_ip 5.120.118.217 156741 port 630 156741 unique_id port 156741 remote_ip 10.8.0.14 156745 username hashtadani4 156745 mac 156745 bytes_out 0 156745 bytes_in 0 156745 station_ip 83.122.245.120 156745 port 613 156745 unique_id port 156745 remote_ip 10.8.0.182 156750 username aminvpn 156750 mac 156750 bytes_out 0 156750 bytes_in 0 156750 station_ip 5.120.118.217 156750 port 630 156750 unique_id port 156750 remote_ip 10.8.0.14 156751 username aminvpn 156751 mac 156751 bytes_out 0 156751 bytes_in 0 156751 station_ip 5.120.35.70 156751 port 625 156751 unique_id port 156751 remote_ip 10.8.0.14 156753 username aminvpn 156753 mac 156753 bytes_out 0 156753 bytes_in 0 156753 station_ip 5.120.118.217 156753 port 633 156753 unique_id port 156753 remote_ip 10.8.0.14 156755 username aminvpn 156755 mac 156755 bytes_out 0 156755 bytes_in 0 156755 station_ip 5.120.35.70 156755 port 625 156755 unique_id port 156755 remote_ip 10.8.0.14 156756 username aminvpn 156756 mac 156756 bytes_out 0 156756 bytes_in 0 156756 station_ip 5.120.118.217 156756 port 623 156756 unique_id port 156756 remote_ip 10.8.0.14 156757 username aminvpn 156757 mac 156757 bytes_out 0 156757 bytes_in 0 156757 station_ip 5.120.35.70 156757 port 625 156757 unique_id port 156757 remote_ip 10.8.0.14 156761 username aminvpn 156761 mac 156761 bytes_out 0 156761 bytes_in 0 156761 station_ip 5.120.35.70 156761 port 317 156761 unique_id port 156761 remote_ip 10.8.1.6 156763 username morteza 156763 mac 156763 bytes_out 368149 156763 bytes_in 5600380 156763 station_ip 113.203.14.58 156763 port 316 156763 unique_id port 156763 remote_ip 10.8.1.62 156767 username barzegar 156767 mac 156767 bytes_out 0 156767 bytes_in 0 156746 station_ip 5.120.35.70 156746 port 625 156746 unique_id port 156746 remote_ip 10.8.0.14 156749 username godarzi 156749 mac 156749 bytes_out 0 156749 bytes_in 0 156749 station_ip 5.120.117.45 156749 port 609 156749 unique_id port 156749 remote_ip 10.8.0.174 156760 username rezaei 156760 mac 156760 bytes_out 0 156760 bytes_in 0 156760 station_ip 5.120.7.208 156760 port 630 156760 unique_id port 156760 remote_ip 10.8.0.230 156762 username aminvpn 156762 mac 156762 bytes_out 0 156762 bytes_in 0 156762 station_ip 5.120.35.70 156762 port 625 156762 unique_id port 156762 remote_ip 10.8.0.14 156765 username aminvpn 156765 mac 156765 bytes_out 0 156765 bytes_in 0 156765 station_ip 5.120.118.217 156765 port 630 156765 unique_id port 156765 remote_ip 10.8.0.14 156766 username vanila 156766 mac 156766 bytes_out 0 156766 bytes_in 0 156766 station_ip 113.203.126.81 156766 port 609 156766 unique_id port 156766 remote_ip 10.8.0.178 156775 username morteza 156775 mac 156775 bytes_out 2379 156775 bytes_in 4748 156775 station_ip 113.203.14.58 156775 port 316 156775 unique_id port 156775 remote_ip 10.8.1.62 156777 username morteza 156777 mac 156777 bytes_out 0 156777 bytes_in 0 156777 station_ip 113.203.14.58 156777 port 316 156777 unique_id port 156777 remote_ip 10.8.1.62 156779 username farhad2 156779 mac 156779 bytes_out 0 156779 bytes_in 0 156779 station_ip 5.119.138.3 156779 port 626 156779 unique_id port 156779 remote_ip 10.8.0.190 156786 username farhad2 156786 mac 156786 bytes_out 0 156786 bytes_in 0 156786 station_ip 5.119.138.3 156786 port 626 156786 unique_id port 156786 remote_ip 10.8.0.190 156787 username morteza 156787 mac 156787 bytes_out 0 156787 bytes_in 0 156787 station_ip 113.203.14.58 156787 port 609 156787 unique_id port 156787 remote_ip 10.8.0.46 156788 username aminvpn 156788 mac 156788 bytes_out 0 156788 bytes_in 0 156788 station_ip 5.120.35.70 156788 port 630 156788 unique_id port 156788 remote_ip 10.8.0.14 156793 username aminvpn 156793 mac 156793 bytes_out 0 156793 bytes_in 0 156793 station_ip 5.120.118.217 156793 port 609 156793 unique_id port 156793 remote_ip 10.8.0.14 156794 username aminvpn 156794 mac 156794 bytes_out 0 156794 bytes_in 0 156794 station_ip 5.120.35.70 156794 port 626 156794 unique_id port 156794 remote_ip 10.8.0.14 156795 username aminvpn 156795 mac 156795 bytes_out 0 156795 bytes_in 0 156795 station_ip 5.120.118.217 156795 port 609 156795 unique_id port 156795 remote_ip 10.8.0.14 156798 username arash 156798 mac 156798 bytes_out 367243 156798 bytes_in 2892789 156798 station_ip 37.27.5.144 156798 port 623 156798 unique_id port 156798 remote_ip 10.8.0.114 156800 username farhad2 156800 kill_reason Another user logged on this global unique id 156800 mac 156800 bytes_out 0 156800 bytes_in 0 156800 station_ip 5.119.138.3 156800 port 625 156800 unique_id port 156800 remote_ip 10.8.0.190 156801 username morteza 156801 mac 156801 bytes_out 0 156801 bytes_in 0 156801 station_ip 113.203.14.58 156801 port 609 156801 unique_id port 156801 remote_ip 10.8.0.46 156805 username morteza 156805 mac 156805 bytes_out 0 156805 bytes_in 0 156805 station_ip 113.203.14.58 156805 port 317 156805 unique_id port 156805 remote_ip 10.8.1.62 156806 username morteza 156806 mac 156806 bytes_out 0 156806 bytes_in 0 156806 station_ip 113.203.14.58 156806 port 609 156806 unique_id port 156752 mac 156752 bytes_out 0 156752 bytes_in 0 156752 station_ip 113.203.78.111 156752 port 614 156752 unique_id port 156754 username pourshad 156754 mac 156754 bytes_out 872500 156754 bytes_in 4239074 156754 station_ip 5.119.181.219 156754 port 623 156754 unique_id port 156754 remote_ip 10.8.0.18 156758 username kalantary 156758 mac 156758 bytes_out 636302 156758 bytes_in 5054046 156758 station_ip 113.203.81.145 156758 port 609 156758 unique_id port 156758 remote_ip 10.8.0.98 156759 username aminvpn 156759 mac 156759 bytes_out 0 156759 bytes_in 0 156759 station_ip 5.120.118.217 156759 port 623 156759 unique_id port 156759 remote_ip 10.8.0.14 156764 username tahmasebi 156764 mac 156764 bytes_out 0 156764 bytes_in 0 156764 station_ip 77.42.112.59 156764 port 623 156764 unique_id port 156764 remote_ip 10.8.0.42 156768 username morteza 156768 mac 156768 bytes_out 0 156768 bytes_in 0 156768 station_ip 113.203.14.58 156768 port 316 156768 unique_id port 156768 remote_ip 10.8.1.62 156771 username aminvpn 156771 mac 156771 bytes_out 0 156771 bytes_in 0 156771 station_ip 5.120.118.217 156771 port 609 156771 unique_id port 156771 remote_ip 10.8.0.14 156772 username aminvpn 156772 mac 156772 bytes_out 0 156772 bytes_in 0 156772 station_ip 5.120.35.70 156772 port 623 156772 unique_id port 156772 remote_ip 10.8.0.14 156774 username aminvpn 156774 mac 156774 bytes_out 0 156774 bytes_in 0 156774 station_ip 5.120.118.217 156774 port 625 156774 unique_id port 156774 remote_ip 10.8.0.14 156776 username tahmasebi 156776 mac 156776 bytes_out 1636 156776 bytes_in 5789 156776 station_ip 77.42.112.59 156776 port 609 156776 unique_id port 156776 remote_ip 10.8.0.42 156778 username aminvpn 156778 mac 156778 bytes_out 0 156778 bytes_in 0 156778 station_ip 5.120.35.70 156778 port 630 156778 unique_id port 156778 remote_ip 10.8.0.14 156780 username aminvpn 156780 mac 156780 bytes_out 0 156780 bytes_in 0 156780 station_ip 5.120.118.217 156780 port 609 156780 unique_id port 156780 remote_ip 10.8.0.14 156782 username shadkam 156782 mac 156782 bytes_out 0 156782 bytes_in 0 156782 station_ip 83.122.14.242 156782 port 317 156782 unique_id port 156782 remote_ip 10.8.1.218 156785 username morteza 156785 mac 156785 bytes_out 0 156785 bytes_in 0 156785 station_ip 113.203.14.58 156785 port 625 156785 unique_id port 156785 remote_ip 10.8.0.46 156789 username morteza 156789 mac 156789 bytes_out 0 156789 bytes_in 0 156789 station_ip 113.203.14.58 156789 port 626 156789 unique_id port 156789 remote_ip 10.8.0.46 156791 username aminvpn 156791 mac 156791 bytes_out 0 156791 bytes_in 0 156791 station_ip 5.120.35.70 156791 port 626 156791 unique_id port 156791 remote_ip 10.8.0.14 156799 username aminvpn 156799 mac 156799 bytes_out 0 156799 bytes_in 0 156799 station_ip 5.120.118.217 156799 port 609 156799 unique_id port 156799 remote_ip 10.8.0.14 156802 username aminvpn 156802 mac 156802 bytes_out 0 156802 bytes_in 0 156802 station_ip 5.120.35.70 156802 port 623 156802 unique_id port 156802 remote_ip 10.8.0.14 156803 username morteza 156803 mac 156803 bytes_out 0 156803 bytes_in 0 156803 station_ip 113.203.14.58 156803 port 623 156803 unique_id port 156803 remote_ip 10.8.0.46 156804 username aminvpn 156804 mac 156804 bytes_out 0 156804 bytes_in 0 156804 station_ip 5.120.118.217 156804 port 609 156767 station_ip 5.120.171.149 156767 port 318 156767 unique_id port 156767 remote_ip 10.8.1.174 156769 username aminvpn 156769 mac 156769 bytes_out 0 156769 bytes_in 0 156769 station_ip 5.120.35.70 156769 port 623 156769 unique_id port 156769 remote_ip 10.8.0.14 156770 username barzegar 156770 mac 156770 bytes_out 0 156770 bytes_in 0 156770 station_ip 5.120.171.149 156770 port 318 156770 unique_id port 156770 remote_ip 10.8.1.174 156773 username arash 156773 mac 156773 bytes_out 0 156773 bytes_in 0 156773 station_ip 37.27.5.144 156773 port 318 156773 unique_id port 156773 remote_ip 10.8.1.102 156781 username aminvpn 156781 mac 156781 bytes_out 0 156781 bytes_in 0 156781 station_ip 5.120.35.70 156781 port 630 156781 unique_id port 156781 remote_ip 10.8.0.14 156783 username morteza 156783 mac 156783 bytes_out 5071 156783 bytes_in 14887 156783 station_ip 113.203.14.58 156783 port 625 156783 unique_id port 156783 remote_ip 10.8.0.46 156784 username aminvpn 156784 mac 156784 bytes_out 0 156784 bytes_in 0 156784 station_ip 5.120.118.217 156784 port 609 156784 unique_id port 156784 remote_ip 10.8.0.14 156790 username aminvpn 156790 mac 156790 bytes_out 0 156790 bytes_in 0 156790 station_ip 5.120.118.217 156790 port 609 156790 unique_id port 156790 remote_ip 10.8.0.14 156792 username nilufarrajaei 156792 mac 156792 bytes_out 0 156792 bytes_in 0 156792 station_ip 83.123.203.9 156792 port 632 156792 unique_id port 156792 remote_ip 10.8.0.206 156796 username hashtadani4 156796 kill_reason Another user logged on this global unique id 156796 mac 156796 bytes_out 0 156796 bytes_in 0 156796 station_ip 83.122.245.120 156796 port 613 156796 unique_id port 156796 remote_ip 10.8.0.182 156797 username aminvpn 156797 mac 156797 bytes_out 0 156797 bytes_in 0 156797 station_ip 5.120.35.70 156797 port 626 156797 unique_id port 156797 remote_ip 10.8.0.14 156807 username aminvpn 156807 mac 156807 bytes_out 0 156807 bytes_in 0 156807 station_ip 5.120.35.70 156807 port 623 156807 unique_id port 156807 remote_ip 10.8.0.14 156810 username aminvpn 156810 mac 156810 bytes_out 0 156810 bytes_in 0 156810 station_ip 5.120.118.217 156810 port 609 156810 unique_id port 156810 remote_ip 10.8.0.14 156811 username aminvpn 156811 mac 156811 bytes_out 0 156811 bytes_in 0 156811 station_ip 5.120.35.70 156811 port 626 156811 unique_id port 156811 remote_ip 10.8.0.14 156813 username aminvpn 156813 mac 156813 bytes_out 0 156813 bytes_in 0 156813 station_ip 5.120.118.217 156813 port 609 156813 unique_id port 156813 remote_ip 10.8.0.14 156818 username aminvpn 156818 mac 156818 bytes_out 0 156818 bytes_in 0 156818 station_ip 5.120.35.70 156818 port 626 156818 unique_id port 156818 remote_ip 10.8.0.14 156821 username tahmasebi 156821 mac 156821 bytes_out 0 156821 bytes_in 0 156821 station_ip 77.42.112.59 156821 port 626 156821 unique_id port 156821 remote_ip 10.8.0.42 156822 username aminvpn 156822 mac 156822 bytes_out 0 156822 bytes_in 0 156822 station_ip 5.120.35.70 156822 port 628 156822 unique_id port 156822 remote_ip 10.8.0.14 156830 username aminvpn 156830 mac 156830 bytes_out 0 156830 bytes_in 0 156830 station_ip 5.120.118.217 156830 port 628 156830 unique_id port 156830 remote_ip 10.8.0.14 156832 username hashtadani4 156832 mac 156832 bytes_out 0 156832 bytes_in 0 156832 station_ip 83.122.245.120 156832 port 623 156832 unique_id port 156804 unique_id port 156804 remote_ip 10.8.0.14 156808 username moradi 156808 mac 156808 bytes_out 1908161 156808 bytes_in 32925968 156808 station_ip 46.225.211.177 156808 port 631 156808 unique_id port 156808 remote_ip 10.8.0.226 156812 username farhad2 156812 mac 156812 bytes_out 0 156812 bytes_in 0 156812 station_ip 5.119.138.3 156812 port 625 156812 unique_id port 156815 username aminvpn 156815 mac 156815 bytes_out 0 156815 bytes_in 0 156815 station_ip 5.120.35.70 156815 port 625 156815 unique_id port 156815 remote_ip 10.8.0.14 156817 username tahmasebi 156817 mac 156817 bytes_out 0 156817 bytes_in 0 156817 station_ip 77.42.112.59 156817 port 623 156817 unique_id port 156817 remote_ip 10.8.0.42 156823 username hashtadani4 156823 mac 156823 bytes_out 0 156823 bytes_in 0 156823 station_ip 83.122.245.120 156823 port 613 156823 unique_id port 156825 username aminvpn 156825 mac 156825 bytes_out 0 156825 bytes_in 0 156825 station_ip 5.120.118.217 156825 port 626 156825 unique_id port 156825 remote_ip 10.8.0.14 156826 username aminvpn 156826 mac 156826 bytes_out 0 156826 bytes_in 0 156826 station_ip 5.120.35.70 156826 port 623 156826 unique_id port 156826 remote_ip 10.8.0.14 156828 username arash 156828 mac 156828 bytes_out 40593 156828 bytes_in 185938 156828 station_ip 37.27.5.144 156828 port 625 156828 unique_id port 156828 remote_ip 10.8.0.114 156829 username hashtadani4 156829 mac 156829 bytes_out 0 156829 bytes_in 0 156829 station_ip 83.122.245.120 156829 port 609 156829 unique_id port 156829 remote_ip 10.8.0.182 156831 username barzegar 156831 mac 156831 bytes_out 0 156831 bytes_in 0 156831 station_ip 5.120.171.149 156831 port 623 156831 unique_id port 156831 remote_ip 10.8.0.234 156834 username morteza 156834 kill_reason Maximum check online fails reached 156834 mac 156834 bytes_out 0 156834 bytes_in 0 156834 station_ip 113.203.14.58 156834 port 626 156834 unique_id port 156838 username moradi 156838 mac 156838 bytes_out 0 156838 bytes_in 0 156838 station_ip 46.225.211.177 156838 port 318 156838 unique_id port 156838 remote_ip 10.8.1.202 156839 username hashtadani4 156839 mac 156839 bytes_out 0 156839 bytes_in 0 156839 station_ip 83.122.245.120 156839 port 623 156839 unique_id port 156839 remote_ip 10.8.0.182 156840 username aminvpn 156840 mac 156840 bytes_out 0 156840 bytes_in 0 156840 station_ip 5.120.35.70 156840 port 609 156840 unique_id port 156840 remote_ip 10.8.0.14 156841 username aminvpn 156841 mac 156841 bytes_out 0 156841 bytes_in 0 156841 station_ip 5.120.118.217 156841 port 625 156841 unique_id port 156841 remote_ip 10.8.0.14 156844 username morteza 156844 mac 156844 bytes_out 0 156844 bytes_in 0 156844 station_ip 113.203.14.58 156844 port 318 156844 unique_id port 156844 remote_ip 10.8.1.62 156845 username hashtadani4 156845 kill_reason Maximum check online fails reached 156845 mac 156845 bytes_out 0 156845 bytes_in 0 156845 station_ip 83.122.245.120 156845 port 623 156845 unique_id port 156851 username morteza 156851 mac 156851 bytes_out 0 156851 bytes_in 0 156851 station_ip 113.203.14.58 156851 port 628 156851 unique_id port 156851 remote_ip 10.8.0.46 156855 username aminvpn 156855 mac 156855 bytes_out 0 156855 bytes_in 0 156855 station_ip 5.120.118.217 156855 port 630 156855 unique_id port 156855 remote_ip 10.8.0.14 156857 username aminvpn 156857 mac 156857 bytes_out 0 156806 remote_ip 10.8.0.46 156809 username barzegar 156809 mac 156809 bytes_out 0 156809 bytes_in 0 156809 station_ip 5.120.171.149 156809 port 317 156809 unique_id port 156809 remote_ip 10.8.1.174 156814 username mosi 156814 mac 156814 bytes_out 1786614 156814 bytes_in 17247678 156814 station_ip 151.235.89.191 156814 port 628 156814 unique_id port 156814 remote_ip 10.8.0.138 156816 username aminvpn 156816 mac 156816 bytes_out 0 156816 bytes_in 0 156816 station_ip 5.120.118.217 156816 port 609 156816 unique_id port 156816 remote_ip 10.8.0.14 156819 username godarzi 156819 mac 156819 bytes_out 902903 156819 bytes_in 8240341 156819 station_ip 5.120.117.45 156819 port 633 156819 unique_id port 156819 remote_ip 10.8.0.174 156820 username aminvpn 156820 mac 156820 bytes_out 0 156820 bytes_in 0 156820 station_ip 5.120.118.217 156820 port 623 156820 unique_id port 156820 remote_ip 10.8.0.14 156824 username morteza 156824 mac 156824 bytes_out 0 156824 bytes_in 0 156824 station_ip 113.203.14.58 156824 port 623 156824 unique_id port 156824 remote_ip 10.8.0.46 156827 username shadkam 156827 mac 156827 bytes_out 0 156827 bytes_in 0 156827 station_ip 83.123.98.210 156827 port 609 156827 unique_id port 156827 remote_ip 10.8.0.62 156835 username moradi 156835 mac 156835 bytes_out 1032343 156835 bytes_in 5692427 156835 station_ip 46.225.211.177 156835 port 317 156835 unique_id port 156835 remote_ip 10.8.1.202 156837 username morteza 156837 mac 156837 bytes_out 0 156837 bytes_in 0 156837 station_ip 113.203.14.58 156837 port 623 156837 unique_id port 156837 remote_ip 10.8.0.46 156842 username hashtadani4 156842 mac 156842 bytes_out 0 156842 bytes_in 0 156842 station_ip 83.122.245.120 156842 port 609 156842 unique_id port 156842 remote_ip 10.8.0.182 156847 username aminvpn 156847 mac 156847 bytes_out 0 156847 bytes_in 0 156847 station_ip 5.120.35.70 156847 port 625 156847 unique_id port 156847 remote_ip 10.8.0.14 156848 username aminvpn 156848 mac 156848 bytes_out 0 156848 bytes_in 0 156848 station_ip 5.120.118.217 156848 port 609 156848 unique_id port 156848 remote_ip 10.8.0.14 156849 username aminvpn 156849 mac 156849 bytes_out 0 156849 bytes_in 0 156849 station_ip 5.120.35.70 156849 port 625 156849 unique_id port 156849 remote_ip 10.8.0.14 156850 username aminvpn 156850 mac 156850 bytes_out 0 156850 bytes_in 0 156850 station_ip 5.120.118.217 156850 port 628 156850 unique_id port 156850 remote_ip 10.8.0.14 156853 username hashtadani4 156853 mac 156853 bytes_out 0 156853 bytes_in 0 156853 station_ip 83.122.245.120 156853 port 625 156853 unique_id port 156853 remote_ip 10.8.0.182 156854 username morteza 156854 mac 156854 bytes_out 0 156854 bytes_in 0 156854 station_ip 113.203.14.58 156854 port 625 156854 unique_id port 156854 remote_ip 10.8.0.46 156856 username barzegar 156856 mac 156856 bytes_out 0 156856 bytes_in 0 156856 station_ip 5.120.171.149 156856 port 320 156856 unique_id port 156856 remote_ip 10.8.1.174 156860 username aminvpn 156860 mac 156860 bytes_out 0 156860 bytes_in 0 156860 station_ip 5.120.118.217 156860 port 630 156860 unique_id port 156860 remote_ip 10.8.0.14 156862 username aminvpn 156862 mac 156862 bytes_out 0 156862 bytes_in 0 156862 station_ip 5.120.35.70 156862 port 631 156862 unique_id port 156862 remote_ip 10.8.0.14 156864 username hashtadani4 156864 mac 156832 remote_ip 10.8.0.182 156833 username aminvpn 156833 mac 156833 bytes_out 0 156833 bytes_in 0 156833 station_ip 5.120.35.70 156833 port 609 156833 unique_id port 156833 remote_ip 10.8.0.14 156836 username aminvpn 156836 mac 156836 bytes_out 0 156836 bytes_in 0 156836 station_ip 5.120.118.217 156836 port 623 156836 unique_id port 156836 remote_ip 10.8.0.14 156843 username aminvpn 156843 mac 156843 bytes_out 0 156843 bytes_in 0 156843 station_ip 5.120.35.70 156843 port 628 156843 unique_id port 156843 remote_ip 10.8.0.14 156846 username aminvpn 156846 mac 156846 bytes_out 0 156846 bytes_in 0 156846 station_ip 5.120.118.217 156846 port 609 156846 unique_id port 156846 remote_ip 10.8.0.14 156852 username aminvpn 156852 mac 156852 bytes_out 0 156852 bytes_in 0 156852 station_ip 5.120.35.70 156852 port 625 156852 unique_id port 156852 remote_ip 10.8.0.14 156858 username aminvpn 156858 mac 156858 bytes_out 0 156858 bytes_in 0 156858 station_ip 5.120.35.70 156858 port 625 156858 unique_id port 156858 remote_ip 10.8.0.14 156861 username moradi 156861 kill_reason Another user logged on this global unique id 156861 mac 156861 bytes_out 0 156861 bytes_in 0 156861 station_ip 83.122.2.95 156861 port 319 156861 unique_id port 156861 remote_ip 10.8.1.202 156866 username morteza 156866 kill_reason Maximum check online fails reached 156866 mac 156866 bytes_out 0 156866 bytes_in 0 156866 station_ip 113.203.14.58 156866 port 625 156866 unique_id port 156871 username aminvpn 156871 mac 156871 bytes_out 0 156871 bytes_in 0 156871 station_ip 5.120.35.70 156871 port 628 156871 unique_id port 156871 remote_ip 10.8.0.14 156874 username tahmasebi 156874 mac 156874 bytes_out 0 156874 bytes_in 0 156874 station_ip 77.42.112.59 156874 port 318 156874 unique_id port 156874 remote_ip 10.8.1.90 156875 username hashtadani4 156875 mac 156875 bytes_out 0 156875 bytes_in 0 156875 station_ip 83.122.245.120 156875 port 609 156875 unique_id port 156875 remote_ip 10.8.0.182 156877 username morteza 156877 mac 156877 bytes_out 0 156877 bytes_in 0 156877 station_ip 113.203.14.58 156877 port 630 156877 unique_id port 156877 remote_ip 10.8.0.46 156879 username aminvpn 156879 mac 156879 bytes_out 0 156879 bytes_in 0 156879 station_ip 5.120.35.70 156879 port 609 156879 unique_id port 156879 remote_ip 10.8.0.14 156881 username morteza 156881 mac 156881 bytes_out 0 156881 bytes_in 0 156881 station_ip 113.203.14.58 156881 port 630 156881 unique_id port 156881 remote_ip 10.8.0.46 156886 username aminvpn 156886 mac 156886 bytes_out 0 156886 bytes_in 0 156886 station_ip 5.120.118.217 156886 port 630 156886 unique_id port 156886 remote_ip 10.8.0.14 156888 username morteza 156888 mac 156888 bytes_out 0 156888 bytes_in 0 156888 station_ip 113.203.14.58 156888 port 630 156888 unique_id port 156888 remote_ip 10.8.0.46 156889 username aminvpn 156889 mac 156889 bytes_out 0 156889 bytes_in 0 156889 station_ip 5.120.35.70 156889 port 631 156889 unique_id port 156889 remote_ip 10.8.0.14 156892 username morteza 156892 mac 156892 bytes_out 0 156892 bytes_in 0 156892 station_ip 113.203.14.58 156892 port 631 156892 unique_id port 156892 remote_ip 10.8.0.46 156897 username morteza 156897 mac 156897 bytes_out 0 156897 bytes_in 0 156897 station_ip 113.203.14.58 156897 port 320 156897 unique_id port 156897 remote_ip 10.8.1.62 156899 username moradi 156857 bytes_in 0 156857 station_ip 5.120.35.70 156857 port 317 156857 unique_id port 156857 remote_ip 10.8.1.6 156859 username rajaei 156859 mac 156859 bytes_out 265109 156859 bytes_in 658952 156859 station_ip 5.134.132.180 156859 port 628 156859 unique_id port 156859 remote_ip 10.8.0.34 156863 username shadkam 156863 mac 156863 bytes_out 50224 156863 bytes_in 116124 156863 station_ip 83.123.114.5 156863 port 628 156863 unique_id port 156863 remote_ip 10.8.0.62 156868 username aminvpn 156868 mac 156868 bytes_out 0 156868 bytes_in 0 156868 station_ip 5.120.35.70 156868 port 628 156868 unique_id port 156868 remote_ip 10.8.0.14 156869 username aminvpn 156869 mac 156869 bytes_out 0 156869 bytes_in 0 156869 station_ip 5.120.118.217 156869 port 630 156869 unique_id port 156869 remote_ip 10.8.0.14 156872 username morteza 156872 mac 156872 bytes_out 0 156872 bytes_in 0 156872 station_ip 113.203.14.58 156872 port 317 156872 unique_id port 156872 remote_ip 10.8.1.62 156878 username hashtadani4 156878 mac 156878 bytes_out 0 156878 bytes_in 0 156878 station_ip 83.122.245.120 156878 port 317 156878 unique_id port 156878 remote_ip 10.8.1.142 156880 username aminvpn 156880 mac 156880 bytes_out 0 156880 bytes_in 0 156880 station_ip 5.120.118.217 156880 port 630 156880 unique_id port 156880 remote_ip 10.8.0.14 156884 username aminvpn 156884 mac 156884 bytes_out 0 156884 bytes_in 0 156884 station_ip 5.120.35.70 156884 port 631 156884 unique_id port 156884 remote_ip 10.8.0.14 156890 username aminvpn 156890 mac 156890 bytes_out 0 156890 bytes_in 0 156890 station_ip 5.120.118.217 156890 port 609 156890 unique_id port 156890 remote_ip 10.8.0.14 156891 username aminvpn 156891 mac 156891 bytes_out 0 156891 bytes_in 0 156891 station_ip 5.120.35.70 156891 port 631 156891 unique_id port 156891 remote_ip 10.8.0.14 156894 username morteza 156894 kill_reason Maximum check online fails reached 156894 mac 156894 bytes_out 0 156894 bytes_in 0 156894 station_ip 113.203.14.58 156894 port 318 156894 unique_id port 156895 username aminvpn 156895 mac 156895 bytes_out 0 156895 bytes_in 0 156895 station_ip 5.120.35.70 156895 port 631 156895 unique_id port 156895 remote_ip 10.8.0.14 156901 username aminvpn 156901 mac 156901 bytes_out 0 156901 bytes_in 0 156901 station_ip 5.120.35.70 156901 port 609 156901 unique_id port 156901 remote_ip 10.8.0.14 156902 username nilufarrajaei 156902 mac 156902 bytes_out 320361 156902 bytes_in 1340855 156902 station_ip 83.123.203.9 156902 port 316 156902 unique_id port 156902 remote_ip 10.8.1.166 156909 username morteza 156909 mac 156909 bytes_out 0 156909 bytes_in 0 156909 station_ip 113.203.14.58 156909 port 630 156909 unique_id port 156909 remote_ip 10.8.0.46 156911 username tahmasebi 156911 mac 156911 bytes_out 0 156911 bytes_in 0 156911 station_ip 77.42.112.59 156911 port 317 156911 unique_id port 156911 remote_ip 10.8.1.90 156917 username aminvpn 156917 mac 156917 bytes_out 0 156917 bytes_in 0 156917 station_ip 5.120.118.217 156917 port 631 156917 unique_id port 156917 remote_ip 10.8.0.14 156919 username nilufarrajaei 156919 mac 156919 bytes_out 11013 156919 bytes_in 32858 156919 station_ip 83.123.203.9 156919 port 316 156919 unique_id port 156919 remote_ip 10.8.1.166 156920 username aminvpn 156920 mac 156920 bytes_out 0 156920 bytes_in 0 156920 station_ip 5.120.35.70 156920 port 609 156920 unique_id port 156864 bytes_out 0 156864 bytes_in 0 156864 station_ip 83.122.245.120 156864 port 631 156864 unique_id port 156864 remote_ip 10.8.0.182 156865 username aminvpn 156865 mac 156865 bytes_out 0 156865 bytes_in 0 156865 station_ip 5.120.118.217 156865 port 630 156865 unique_id port 156865 remote_ip 10.8.0.14 156867 username morteza 156867 mac 156867 bytes_out 0 156867 bytes_in 0 156867 station_ip 113.203.14.58 156867 port 630 156867 unique_id port 156867 remote_ip 10.8.0.46 156870 username kalantary 156870 mac 156870 bytes_out 705649 156870 bytes_in 8230764 156870 station_ip 113.203.91.9 156870 port 609 156870 unique_id port 156870 remote_ip 10.8.0.98 156873 username hashtadani4 156873 mac 156873 bytes_out 0 156873 bytes_in 0 156873 station_ip 83.122.245.120 156873 port 630 156873 unique_id port 156873 remote_ip 10.8.0.182 156876 username aminvpn 156876 mac 156876 bytes_out 0 156876 bytes_in 0 156876 station_ip 5.120.118.217 156876 port 631 156876 unique_id port 156876 remote_ip 10.8.0.14 156882 username morteza 156882 mac 156882 bytes_out 0 156882 bytes_in 0 156882 station_ip 113.203.14.58 156882 port 630 156882 unique_id port 156882 remote_ip 10.8.0.46 156883 username hashtadani4 156883 kill_reason Maximum check online fails reached 156883 mac 156883 bytes_out 0 156883 bytes_in 0 156883 station_ip 83.122.245.120 156883 port 628 156883 unique_id port 156885 username hashtadani4 156885 mac 156885 bytes_out 2170 156885 bytes_in 4569 156885 station_ip 83.122.245.120 156885 port 609 156885 unique_id port 156885 remote_ip 10.8.0.182 156887 username hashtadani4 156887 mac 156887 bytes_out 0 156887 bytes_in 0 156887 station_ip 83.122.245.120 156887 port 609 156887 unique_id port 156887 remote_ip 10.8.0.182 156893 username aminvpn 156893 mac 156893 bytes_out 0 156893 bytes_in 0 156893 station_ip 5.120.118.217 156893 port 609 156893 unique_id port 156893 remote_ip 10.8.0.14 156896 username morteza 156896 mac 156896 bytes_out 0 156896 bytes_in 0 156896 station_ip 113.203.14.58 156896 port 609 156896 unique_id port 156896 remote_ip 10.8.0.46 156898 username aminvpn 156898 mac 156898 bytes_out 0 156898 bytes_in 0 156898 station_ip 5.120.118.217 156898 port 632 156898 unique_id port 156898 remote_ip 10.8.0.14 156900 username barzegar 156900 mac 156900 bytes_out 0 156900 bytes_in 0 156900 station_ip 5.120.171.149 156900 port 321 156900 unique_id port 156900 remote_ip 10.8.1.174 156905 username aminvpn 156905 mac 156905 bytes_out 0 156905 bytes_in 0 156905 station_ip 5.120.35.70 156905 port 609 156905 unique_id port 156905 remote_ip 10.8.0.14 156906 username barzegar 156906 mac 156906 bytes_out 0 156906 bytes_in 0 156906 station_ip 5.120.171.149 156906 port 316 156906 unique_id port 156906 remote_ip 10.8.1.174 156908 username hashtadani4 156908 mac 156908 bytes_out 0 156908 bytes_in 0 156908 station_ip 83.122.245.120 156908 port 609 156908 unique_id port 156908 remote_ip 10.8.0.182 156912 username aminvpn 156912 mac 156912 bytes_out 0 156912 bytes_in 0 156912 station_ip 5.120.35.70 156912 port 630 156912 unique_id port 156912 remote_ip 10.8.0.14 156914 username nilufarrajaei 156914 mac 156914 bytes_out 0 156914 bytes_in 0 156914 station_ip 83.123.203.9 156914 port 609 156914 unique_id port 156914 remote_ip 10.8.0.206 156915 username aminvpn 156915 mac 156915 bytes_out 0 156915 bytes_in 0 156915 station_ip 5.120.118.217 156899 kill_reason Another user logged on this global unique id 156899 mac 156899 bytes_out 0 156899 bytes_in 0 156899 station_ip 83.122.2.95 156899 port 319 156899 unique_id port 156903 username aminvpn 156903 mac 156903 bytes_out 0 156903 bytes_in 0 156903 station_ip 5.120.118.217 156903 port 631 156903 unique_id port 156903 remote_ip 10.8.0.14 156904 username hashtadani4 156904 mac 156904 bytes_out 0 156904 bytes_in 0 156904 station_ip 83.122.245.120 156904 port 631 156904 unique_id port 156904 remote_ip 10.8.0.182 156907 username shadkam 156907 mac 156907 bytes_out 0 156907 bytes_in 0 156907 station_ip 83.123.164.248 156907 port 630 156907 unique_id port 156907 remote_ip 10.8.0.62 156910 username aminvpn 156910 mac 156910 bytes_out 0 156910 bytes_in 0 156910 station_ip 5.120.118.217 156910 port 631 156910 unique_id port 156910 remote_ip 10.8.0.14 156913 username tahmasebi 156913 mac 156913 bytes_out 0 156913 bytes_in 0 156913 station_ip 77.42.112.59 156913 port 316 156913 unique_id port 156913 remote_ip 10.8.1.90 156918 username morteza 156918 kill_reason Maximum check online fails reached 156918 mac 156918 bytes_out 0 156918 bytes_in 0 156918 station_ip 113.203.14.58 156918 port 630 156918 unique_id port 156921 username aminvpn 156921 mac 156921 bytes_out 0 156921 bytes_in 0 156921 station_ip 5.120.118.217 156921 port 631 156921 unique_id port 156921 remote_ip 10.8.0.14 156925 username aminvpn 156925 mac 156925 bytes_out 0 156925 bytes_in 0 156925 station_ip 5.120.118.217 156925 port 631 156925 unique_id port 156925 remote_ip 10.8.0.14 156927 username hashtadani4 156927 mac 156927 bytes_out 0 156927 bytes_in 0 156927 station_ip 83.122.245.120 156927 port 631 156927 unique_id port 156927 remote_ip 10.8.0.182 156928 username aminvpn 156928 mac 156928 bytes_out 0 156928 bytes_in 0 156928 station_ip 5.120.35.70 156928 port 632 156928 unique_id port 156928 remote_ip 10.8.0.14 156930 username hashtadani4 156930 mac 156930 bytes_out 0 156930 bytes_in 0 156930 station_ip 83.122.245.120 156930 port 631 156930 unique_id port 156930 remote_ip 10.8.0.182 156931 username moradi 156931 kill_reason Another user logged on this global unique id 156931 mac 156931 bytes_out 0 156931 bytes_in 0 156931 station_ip 83.122.2.95 156931 port 319 156931 unique_id port 156932 username aminvpn 156932 mac 156932 bytes_out 0 156932 bytes_in 0 156932 station_ip 5.120.118.217 156932 port 609 156932 unique_id port 156932 remote_ip 10.8.0.14 156937 username hashtadani4 156937 mac 156937 bytes_out 0 156937 bytes_in 0 156937 station_ip 83.122.245.120 156937 port 609 156937 unique_id port 156937 remote_ip 10.8.0.182 156938 username aminvpn 156938 mac 156938 bytes_out 0 156938 bytes_in 0 156938 station_ip 5.120.35.70 156938 port 633 156938 unique_id port 156938 remote_ip 10.8.0.14 156940 username aminvpn 156940 mac 156940 bytes_out 0 156940 bytes_in 0 156940 station_ip 5.120.118.217 156940 port 609 156940 unique_id port 156940 remote_ip 10.8.0.14 156943 username morteza 156943 mac 156943 bytes_out 0 156943 bytes_in 0 156943 station_ip 113.203.14.58 156943 port 631 156943 unique_id port 156943 remote_ip 10.8.0.46 156944 username morteza 156944 kill_reason Maximum check online fails reached 156944 mac 156944 bytes_out 0 156944 bytes_in 0 156944 station_ip 113.203.14.58 156944 port 319 156944 unique_id port 156946 username moradi 156946 kill_reason Another user logged on this global unique id 156915 port 631 156915 unique_id port 156915 remote_ip 10.8.0.14 156916 username aminvpn 156916 mac 156916 bytes_out 0 156916 bytes_in 0 156916 station_ip 5.120.35.70 156916 port 609 156916 unique_id port 156916 remote_ip 10.8.0.14 156926 username vanila 156926 mac 156926 bytes_out 88381 156926 bytes_in 474128 156926 station_ip 113.203.76.250 156926 port 609 156926 unique_id port 156926 remote_ip 10.8.0.178 156934 username aminvpn 156934 mac 156934 bytes_out 0 156934 bytes_in 0 156934 station_ip 5.120.35.70 156934 port 632 156934 unique_id port 156934 remote_ip 10.8.0.14 156942 username aminvpn 156942 mac 156942 bytes_out 0 156942 bytes_in 0 156942 station_ip 5.120.35.70 156942 port 631 156942 unique_id port 156942 remote_ip 10.8.0.14 156945 username godarzi 156945 mac 156945 bytes_out 0 156945 bytes_in 0 156945 station_ip 5.120.117.45 156945 port 613 156945 unique_id port 156945 remote_ip 10.8.0.174 156947 username hashtadani4 156947 mac 156947 bytes_out 0 156947 bytes_in 0 156947 station_ip 83.122.245.120 156947 port 613 156947 unique_id port 156947 remote_ip 10.8.0.182 156951 username nilufarrajaei 156951 mac 156951 bytes_out 0 156951 bytes_in 0 156951 station_ip 83.123.203.9 156951 port 316 156951 unique_id port 156951 remote_ip 10.8.1.166 156955 username morteza 156955 mac 156955 bytes_out 0 156955 bytes_in 0 156955 station_ip 113.203.14.58 156955 port 316 156955 unique_id port 156955 remote_ip 10.8.1.62 156957 username morteza 156957 mac 156957 bytes_out 0 156957 bytes_in 0 156957 station_ip 113.203.14.58 156957 port 635 156957 unique_id port 156957 remote_ip 10.8.0.46 156961 username morteza 156961 kill_reason Maximum check online fails reached 156961 mac 156961 bytes_out 0 156961 bytes_in 0 156961 station_ip 113.203.14.58 156961 port 634 156961 unique_id port 156963 username morteza 156963 mac 156963 bytes_out 0 156963 bytes_in 0 156963 station_ip 113.203.14.58 156963 port 637 156963 unique_id port 156963 remote_ip 10.8.0.46 156968 username hashtadani4 156968 mac 156968 bytes_out 0 156968 bytes_in 0 156968 station_ip 83.122.245.120 156968 port 637 156968 unique_id port 156968 remote_ip 10.8.0.182 156969 username hashtadani4 156969 mac 156969 bytes_out 0 156969 bytes_in 0 156969 station_ip 83.122.245.120 156969 port 637 156969 unique_id port 156969 remote_ip 10.8.0.182 156975 username hashtadani4 156975 kill_reason Maximum number of concurrent logins reached 156975 mac 156975 bytes_out 0 156975 bytes_in 0 156975 station_ip 83.122.245.120 156975 port 640 156975 unique_id port 156977 username morteza 156977 mac 156977 bytes_out 0 156977 bytes_in 0 156977 station_ip 113.203.14.58 156977 port 639 156977 unique_id port 156977 remote_ip 10.8.0.46 156979 username hashtadani4 156979 kill_reason Maximum check online fails reached 156979 mac 156979 bytes_out 0 156979 bytes_in 0 156979 station_ip 83.122.245.120 156979 port 637 156979 unique_id port 156982 username sabaghnezhad 156982 mac 156982 bytes_out 85195 156982 bytes_in 86242 156982 station_ip 83.123.236.24 156982 port 633 156982 unique_id port 156982 remote_ip 10.8.0.186 156984 username shadkam 156984 mac 156984 bytes_out 0 156984 bytes_in 0 156984 station_ip 83.123.136.252 156984 port 633 156984 unique_id port 156984 remote_ip 10.8.0.62 156987 username tahmasebi 156987 mac 156987 bytes_out 0 156987 bytes_in 0 156987 station_ip 77.42.112.59 156987 port 323 156987 unique_id port 156920 remote_ip 10.8.0.14 156922 username hamidsalari 156922 kill_reason Another user logged on this global unique id 156922 mac 156922 bytes_out 0 156922 bytes_in 0 156922 station_ip 5.119.30.45 156922 port 620 156922 unique_id port 156923 username aminvpn 156923 mac 156923 bytes_out 0 156923 bytes_in 0 156923 station_ip 5.120.35.70 156923 port 632 156923 unique_id port 156923 remote_ip 10.8.0.14 156924 username hashtadani4 156924 mac 156924 bytes_out 0 156924 bytes_in 0 156924 station_ip 83.122.245.120 156924 port 632 156924 unique_id port 156924 remote_ip 10.8.0.182 156929 username barzegar 156929 mac 156929 bytes_out 0 156929 bytes_in 0 156929 station_ip 5.120.171.149 156929 port 317 156929 unique_id port 156929 remote_ip 10.8.1.174 156933 username moradi 156933 kill_reason Another user logged on this global unique id 156933 mac 156933 bytes_out 0 156933 bytes_in 0 156933 station_ip 5.120.180.244 156933 port 631 156933 unique_id port 156933 remote_ip 10.8.0.226 156935 username moradi 156935 mac 156935 bytes_out 0 156935 bytes_in 0 156935 station_ip 83.122.2.95 156935 port 319 156935 unique_id port 156936 username aminvpn 156936 mac 156936 bytes_out 0 156936 bytes_in 0 156936 station_ip 5.120.118.217 156936 port 609 156936 unique_id port 156936 remote_ip 10.8.0.14 156939 username moradi 156939 mac 156939 bytes_out 0 156939 bytes_in 0 156939 station_ip 5.120.180.244 156939 port 631 156939 unique_id port 156941 username shadkam 156941 mac 156941 bytes_out 0 156941 bytes_in 0 156941 station_ip 113.203.73.173 156941 port 632 156941 unique_id port 156941 remote_ip 10.8.0.62 156949 username sabaghnezhad 156949 mac 156949 bytes_out 0 156949 bytes_in 0 156949 station_ip 83.123.236.24 156949 port 322 156949 unique_id port 156949 remote_ip 10.8.1.130 156950 username morteza 156950 mac 156950 bytes_out 0 156950 bytes_in 0 156950 station_ip 113.203.14.58 156950 port 322 156950 unique_id port 156950 remote_ip 10.8.1.62 156953 username morteza 156953 mac 156953 bytes_out 0 156953 bytes_in 0 156953 station_ip 113.203.14.58 156953 port 633 156953 unique_id port 156953 remote_ip 10.8.0.46 156959 username hashtadani4 156959 mac 156959 bytes_out 0 156959 bytes_in 0 156959 station_ip 83.122.245.120 156959 port 635 156959 unique_id port 156959 remote_ip 10.8.0.182 156967 username hashtadani4 156967 mac 156967 bytes_out 0 156967 bytes_in 0 156967 station_ip 83.122.245.120 156967 port 637 156967 unique_id port 156967 remote_ip 10.8.0.182 156971 username hashtadani4 156971 mac 156971 bytes_out 0 156971 bytes_in 0 156971 station_ip 83.122.245.120 156971 port 323 156971 unique_id port 156971 remote_ip 10.8.1.142 156972 username morteza 156972 kill_reason Maximum check online fails reached 156972 mac 156972 bytes_out 0 156972 bytes_in 0 156972 station_ip 113.203.14.58 156972 port 322 156972 unique_id port 156973 username hashtadani4 156973 kill_reason Maximum number of concurrent logins reached 156973 mac 156973 bytes_out 0 156973 bytes_in 0 156973 station_ip 83.122.245.120 156973 port 639 156973 unique_id port 156976 username hashtadani4 156976 kill_reason Maximum number of concurrent logins reached 156976 mac 156976 bytes_out 0 156976 bytes_in 0 156976 station_ip 83.122.245.120 156976 port 640 156976 unique_id port 156978 username hashtadani4 156978 kill_reason Maximum number of concurrent logins reached 156978 mac 156978 bytes_out 0 156978 bytes_in 0 156978 station_ip 83.122.245.120 156978 port 639 156978 unique_id port 156946 mac 156946 bytes_out 0 156946 bytes_in 0 156946 station_ip 83.122.2.95 156946 port 317 156946 unique_id port 156946 remote_ip 10.8.1.202 156948 username barzegar 156948 mac 156948 bytes_out 0 156948 bytes_in 0 156948 station_ip 5.120.171.149 156948 port 321 156948 unique_id port 156948 remote_ip 10.8.1.174 156952 username tahmasebi 156952 kill_reason Maximum check online fails reached 156952 mac 156952 bytes_out 0 156952 bytes_in 0 156952 station_ip 77.42.112.59 156952 port 321 156952 unique_id port 156954 username morteza 156954 mac 156954 bytes_out 0 156954 bytes_in 0 156954 station_ip 113.203.14.58 156954 port 316 156954 unique_id port 156954 remote_ip 10.8.1.62 156956 username hashtadani4 156956 mac 156956 bytes_out 0 156956 bytes_in 0 156956 station_ip 83.122.245.120 156956 port 634 156956 unique_id port 156956 remote_ip 10.8.0.182 156958 username tahmasebi 156958 kill_reason Maximum check online fails reached 156958 mac 156958 bytes_out 0 156958 bytes_in 0 156958 station_ip 77.42.112.59 156958 port 316 156958 unique_id port 156960 username morteza 156960 mac 156960 bytes_out 0 156960 bytes_in 0 156960 station_ip 113.203.14.58 156960 port 635 156960 unique_id port 156960 remote_ip 10.8.0.46 156962 username barzegar 156962 mac 156962 bytes_out 0 156962 bytes_in 0 156962 station_ip 5.120.171.149 156962 port 636 156962 unique_id port 156962 remote_ip 10.8.0.234 156964 username milan 156964 kill_reason Another user logged on this global unique id 156964 mac 156964 bytes_out 0 156964 bytes_in 0 156964 station_ip 5.119.238.71 156964 port 632 156964 unique_id port 156964 remote_ip 10.8.0.218 156965 username hashtadani4 156965 mac 156965 bytes_out 0 156965 bytes_in 0 156965 station_ip 83.122.245.120 156965 port 636 156965 unique_id port 156965 remote_ip 10.8.0.182 156966 username mohammadjavad 156966 mac 156966 bytes_out 0 156966 bytes_in 0 156966 station_ip 83.123.206.140 156966 port 322 156966 unique_id port 156966 remote_ip 10.8.1.146 156970 username kalantary 156970 mac 156970 bytes_out 0 156970 bytes_in 0 156970 station_ip 113.203.125.25 156970 port 635 156970 unique_id port 156970 remote_ip 10.8.0.98 156974 username tahmasebi 156974 mac 156974 bytes_out 0 156974 bytes_in 0 156974 station_ip 77.42.112.59 156974 port 323 156974 unique_id port 156974 remote_ip 10.8.1.90 156981 username barzegar 156981 mac 156981 bytes_out 0 156981 bytes_in 0 156981 station_ip 5.120.171.149 156981 port 640 156981 unique_id port 156981 remote_ip 10.8.0.234 156986 username forozandeh1 156986 mac 156986 bytes_out 51625 156986 bytes_in 145721 156986 station_ip 83.122.64.141 156986 port 639 156986 unique_id port 156986 remote_ip 10.8.0.130 156988 username aminvpn 156988 mac 156988 bytes_out 0 156988 bytes_in 0 156988 station_ip 5.120.118.217 156988 port 609 156988 unique_id port 156988 remote_ip 10.8.0.14 156989 username khademi 156989 kill_reason Another user logged on this global unique id 156989 mac 156989 bytes_out 0 156989 bytes_in 0 156989 station_ip 113.203.78.111 156989 port 614 156989 unique_id port 156990 username godarzi 156990 kill_reason Another user logged on this global unique id 156990 mac 156990 bytes_out 0 156990 bytes_in 0 156990 station_ip 5.202.24.27 156990 port 631 156990 unique_id port 156990 remote_ip 10.8.0.174 156996 username milan 156996 kill_reason Another user logged on this global unique id 156996 mac 156996 bytes_out 0 156996 bytes_in 0 156996 station_ip 5.119.238.71 156996 port 632 156980 username hashtadani4 156980 kill_reason Maximum check online fails reached 156980 mac 156980 bytes_out 0 156980 bytes_in 0 156980 station_ip 83.122.245.120 156980 port 635 156980 unique_id port 156983 username morteza 156983 mac 156983 bytes_out 291573 156983 bytes_in 3186115 156983 station_ip 113.203.14.58 156983 port 639 156983 unique_id port 156983 remote_ip 10.8.0.46 156985 username milan 156985 kill_reason Another user logged on this global unique id 156985 mac 156985 bytes_out 0 156985 bytes_in 0 156985 station_ip 5.119.238.71 156985 port 632 156985 unique_id port 156994 username moradi 156994 mac 156994 bytes_out 0 156994 bytes_in 0 156994 station_ip 83.122.2.95 156994 port 317 156994 unique_id port 157001 username alipour 157001 kill_reason Another user logged on this global unique id 157001 mac 157001 bytes_out 0 157001 bytes_in 0 157001 station_ip 83.123.16.90 157001 port 598 157001 unique_id port 157008 username mohammadjavad 157008 mac 157008 bytes_out 0 157008 bytes_in 0 157008 station_ip 83.122.205.2 157008 port 323 157008 unique_id port 157008 remote_ip 10.8.1.146 157011 username morteza 157011 mac 157011 bytes_out 0 157011 bytes_in 0 157011 station_ip 83.123.217.209 157011 port 323 157011 unique_id port 157011 remote_ip 10.8.1.62 157012 username tahmasebi 157012 mac 157012 bytes_out 0 157012 bytes_in 0 157012 station_ip 77.42.112.59 157012 port 317 157012 unique_id port 157012 remote_ip 10.8.1.90 157017 username aminvpn 157017 mac 157017 bytes_out 0 157017 bytes_in 0 157017 station_ip 5.120.35.70 157017 port 323 157017 unique_id port 157017 remote_ip 10.8.1.6 157020 username aminvpn 157020 mac 157020 bytes_out 0 157020 bytes_in 0 157020 station_ip 5.120.35.70 157020 port 323 157020 unique_id port 157020 remote_ip 10.8.1.6 157024 username aminvpn 157024 mac 157024 bytes_out 0 157024 bytes_in 0 157024 station_ip 5.120.35.70 157024 port 320 157024 unique_id port 157024 remote_ip 10.8.1.6 157026 username aminvpn 157026 mac 157026 bytes_out 0 157026 bytes_in 0 157026 station_ip 5.120.35.70 157026 port 323 157026 unique_id port 157026 remote_ip 10.8.1.6 157030 username aminvpn 157030 mac 157030 bytes_out 0 157030 bytes_in 0 157030 station_ip 5.120.35.70 157030 port 323 157030 unique_id port 157030 remote_ip 10.8.1.6 157033 username aminvpn 157033 mac 157033 bytes_out 0 157033 bytes_in 0 157033 station_ip 5.120.35.70 157033 port 320 157033 unique_id port 157033 remote_ip 10.8.1.6 157034 username moradi 157034 mac 157034 bytes_out 0 157034 bytes_in 0 157034 station_ip 83.122.173.56 157034 port 317 157034 unique_id port 157034 remote_ip 10.8.1.202 157037 username aminvpn 157037 mac 157037 bytes_out 0 157037 bytes_in 0 157037 station_ip 5.120.35.70 157037 port 323 157037 unique_id port 157037 remote_ip 10.8.1.6 157040 username aminvpn 157040 mac 157040 bytes_out 0 157040 bytes_in 0 157040 station_ip 5.120.35.70 157040 port 317 157040 unique_id port 157040 remote_ip 10.8.1.6 157042 username aminvpn 157042 mac 157042 bytes_out 0 157042 bytes_in 0 157042 station_ip 5.120.35.70 157042 port 317 157042 unique_id port 157042 remote_ip 10.8.1.6 157043 username aminvpn 157043 mac 157043 bytes_out 0 157043 bytes_in 0 157043 station_ip 5.120.35.70 157043 port 324 157043 unique_id port 157043 remote_ip 10.8.1.6 157045 username tahmasebi 157045 mac 157045 bytes_out 0 157045 bytes_in 0 156987 remote_ip 10.8.1.90 156991 username tahmasebi 156991 mac 156991 bytes_out 0 156991 bytes_in 0 156991 station_ip 77.42.112.59 156991 port 324 156991 unique_id port 156991 remote_ip 10.8.1.90 156992 username barzegar 156992 mac 156992 bytes_out 0 156992 bytes_in 0 156992 station_ip 5.120.171.149 156992 port 639 156992 unique_id port 156992 remote_ip 10.8.0.234 156993 username aminvpn 156993 kill_reason Another user logged on this global unique id 156993 mac 156993 bytes_out 0 156993 bytes_in 0 156993 station_ip 5.120.35.70 156993 port 320 156993 unique_id port 156993 remote_ip 10.8.1.6 156995 username tahmasebi 156995 mac 156995 bytes_out 3229 156995 bytes_in 8831 156995 station_ip 77.42.112.59 156995 port 639 156995 unique_id port 156995 remote_ip 10.8.0.42 157002 username barzegar 157002 mac 157002 bytes_out 0 157002 bytes_in 0 157002 station_ip 5.120.171.149 157002 port 609 157002 unique_id port 157002 remote_ip 10.8.0.234 157003 username barzegar 157003 mac 157003 bytes_out 0 157003 bytes_in 0 157003 station_ip 5.120.171.149 157003 port 640 157003 unique_id port 157003 remote_ip 10.8.0.234 157006 username aminvpn 157006 kill_reason Another user logged on this global unique id 157006 mac 157006 bytes_out 0 157006 bytes_in 0 157006 station_ip 5.120.35.70 157006 port 320 157006 unique_id port 157007 username mansour 157007 mac 157007 bytes_out 4283812 157007 bytes_in 67093219 157007 station_ip 5.119.134.101 157007 port 638 157007 unique_id port 157007 remote_ip 10.8.0.30 157009 username sabaghnezhad 157009 mac 157009 bytes_out 57232 157009 bytes_in 87199 157009 station_ip 37.129.156.83 157009 port 609 157009 unique_id port 157009 remote_ip 10.8.0.186 157015 username barzegar 157015 mac 157015 bytes_out 5971 157015 bytes_in 8094 157015 station_ip 5.120.171.149 157015 port 613 157015 unique_id port 157015 remote_ip 10.8.0.234 157016 username aminvpn 157016 mac 157016 bytes_out 0 157016 bytes_in 0 157016 station_ip 5.120.35.70 157016 port 320 157016 unique_id port 157018 username khademi 157018 kill_reason Another user logged on this global unique id 157018 mac 157018 bytes_out 0 157018 bytes_in 0 157018 station_ip 113.203.78.111 157018 port 614 157018 unique_id port 157019 username aminvpn 157019 mac 157019 bytes_out 0 157019 bytes_in 0 157019 station_ip 5.120.35.70 157019 port 320 157019 unique_id port 157019 remote_ip 10.8.1.6 157023 username aminvpn 157023 mac 157023 bytes_out 0 157023 bytes_in 0 157023 station_ip 5.120.35.70 157023 port 323 157023 unique_id port 157023 remote_ip 10.8.1.6 157025 username vanila 157025 mac 157025 bytes_out 1594993 157025 bytes_in 13643379 157025 station_ip 113.203.76.250 157025 port 639 157025 unique_id port 157025 remote_ip 10.8.0.178 157028 username aminvpn 157028 mac 157028 bytes_out 0 157028 bytes_in 0 157028 station_ip 5.120.35.70 157028 port 323 157028 unique_id port 157028 remote_ip 10.8.1.6 157029 username aminvpn 157029 mac 157029 bytes_out 0 157029 bytes_in 0 157029 station_ip 5.120.35.70 157029 port 320 157029 unique_id port 157029 remote_ip 10.8.1.6 157032 username aminvpn 157032 mac 157032 bytes_out 0 157032 bytes_in 0 157032 station_ip 5.120.35.70 157032 port 323 157032 unique_id port 157032 remote_ip 10.8.1.6 157036 username aminvpn 157036 mac 157036 bytes_out 0 157036 bytes_in 0 157036 station_ip 5.120.35.70 157036 port 317 157036 unique_id port 157036 remote_ip 10.8.1.6 156996 unique_id port 156997 username ayobi 156997 mac 156997 bytes_out 0 156997 bytes_in 0 156997 station_ip 37.27.29.160 156997 port 633 156997 unique_id port 156997 remote_ip 10.8.0.246 156998 username aminvpn 156998 kill_reason Another user logged on this global unique id 156998 mac 156998 bytes_out 0 156998 bytes_in 0 156998 station_ip 5.120.35.70 156998 port 320 156998 unique_id port 156999 username tahmasebi 156999 mac 156999 bytes_out 338202 156999 bytes_in 997589 156999 station_ip 77.42.112.59 156999 port 317 156999 unique_id port 156999 remote_ip 10.8.1.90 157000 username kalantary 157000 mac 157000 bytes_out 0 157000 bytes_in 0 157000 station_ip 113.203.91.105 157000 port 609 157000 unique_id port 157000 remote_ip 10.8.0.98 157004 username mahdiyehalizadeh 157004 mac 157004 bytes_out 2936152 157004 bytes_in 38016195 157004 station_ip 5.119.192.166 157004 port 636 157004 unique_id port 157004 remote_ip 10.8.0.82 157005 username nilufarrajaei 157005 mac 157005 bytes_out 8381425 157005 bytes_in 42209867 157005 station_ip 83.123.203.9 157005 port 613 157005 unique_id port 157005 remote_ip 10.8.0.206 157010 username barzegar 157010 mac 157010 bytes_out 5263 157010 bytes_in 7137 157010 station_ip 5.120.171.149 157010 port 636 157010 unique_id port 157010 remote_ip 10.8.0.234 157013 username aminvpn 157013 kill_reason Another user logged on this global unique id 157013 mac 157013 bytes_out 0 157013 bytes_in 0 157013 station_ip 5.120.35.70 157013 port 320 157013 unique_id port 157014 username barzegar 157014 mac 157014 bytes_out 2855 157014 bytes_in 5072 157014 station_ip 5.120.171.149 157014 port 613 157014 unique_id port 157014 remote_ip 10.8.0.234 157021 username aminvpn 157021 mac 157021 bytes_out 0 157021 bytes_in 0 157021 station_ip 5.120.35.70 157021 port 320 157021 unique_id port 157021 remote_ip 10.8.1.6 157022 username tahmasebi 157022 mac 157022 bytes_out 0 157022 bytes_in 0 157022 station_ip 77.42.112.59 157022 port 320 157022 unique_id port 157022 remote_ip 10.8.1.90 157027 username aminvpn 157027 mac 157027 bytes_out 0 157027 bytes_in 0 157027 station_ip 5.120.35.70 157027 port 320 157027 unique_id port 157027 remote_ip 10.8.1.6 157031 username aminvpn 157031 mac 157031 bytes_out 0 157031 bytes_in 0 157031 station_ip 5.120.35.70 157031 port 320 157031 unique_id port 157031 remote_ip 10.8.1.6 157035 username aminvpn 157035 mac 157035 bytes_out 0 157035 bytes_in 0 157035 station_ip 5.120.35.70 157035 port 323 157035 unique_id port 157035 remote_ip 10.8.1.6 157038 username aminvpn 157038 mac 157038 bytes_out 0 157038 bytes_in 0 157038 station_ip 5.120.35.70 157038 port 317 157038 unique_id port 157038 remote_ip 10.8.1.6 157041 username aminvpn 157041 mac 157041 bytes_out 0 157041 bytes_in 0 157041 station_ip 5.120.35.70 157041 port 323 157041 unique_id port 157041 remote_ip 10.8.1.6 157044 username aminvpn 157044 mac 157044 bytes_out 0 157044 bytes_in 0 157044 station_ip 5.120.35.70 157044 port 317 157044 unique_id port 157044 remote_ip 10.8.1.6 157046 username godarzi 157046 kill_reason Another user logged on this global unique id 157046 mac 157046 bytes_out 0 157046 bytes_in 0 157046 station_ip 5.202.24.27 157046 port 631 157046 unique_id port 157047 username aminvpn 157047 mac 157047 bytes_out 0 157047 bytes_in 0 157047 station_ip 5.120.35.70 157047 port 324 157047 unique_id port 157047 remote_ip 10.8.1.6 157048 username aminvpn 157039 username aminvpn 157039 mac 157039 bytes_out 0 157039 bytes_in 0 157039 station_ip 5.120.35.70 157039 port 323 157039 unique_id port 157039 remote_ip 10.8.1.6 157051 username tahmasebi 157051 mac 157051 bytes_out 0 157051 bytes_in 0 157051 station_ip 77.42.112.59 157051 port 613 157051 unique_id port 157051 remote_ip 10.8.0.42 157054 username aminvpn 157054 mac 157054 bytes_out 0 157054 bytes_in 0 157054 station_ip 5.120.35.70 157054 port 324 157054 unique_id port 157054 remote_ip 10.8.1.6 157058 username hamidsalari 157058 mac 157058 bytes_out 0 157058 bytes_in 0 157058 station_ip 5.119.30.45 157058 port 620 157058 unique_id port 157059 username aminvpn 157059 mac 157059 bytes_out 0 157059 bytes_in 0 157059 station_ip 5.120.35.70 157059 port 317 157059 unique_id port 157059 remote_ip 10.8.1.6 157065 username jafari 157065 kill_reason Another user logged on this global unique id 157065 mac 157065 bytes_out 0 157065 bytes_in 0 157065 station_ip 37.156.155.122 157065 port 639 157065 unique_id port 157065 remote_ip 10.8.0.242 157068 username godarzi 157068 kill_reason Another user logged on this global unique id 157068 mac 157068 bytes_out 0 157068 bytes_in 0 157068 station_ip 5.202.24.27 157068 port 631 157068 unique_id port 157069 username kalantary 157069 mac 157069 bytes_out 201562 157069 bytes_in 1047483 157069 station_ip 113.203.59.157 157069 port 640 157069 unique_id port 157069 remote_ip 10.8.0.98 157071 username aminvpn 157071 mac 157071 bytes_out 0 157071 bytes_in 0 157071 station_ip 5.120.35.70 157071 port 323 157071 unique_id port 157071 remote_ip 10.8.1.6 157074 username aminvpn 157074 mac 157074 bytes_out 0 157074 bytes_in 0 157074 station_ip 5.120.35.70 157074 port 317 157074 unique_id port 157074 remote_ip 10.8.1.6 157075 username tahmasebi 157075 kill_reason Maximum check online fails reached 157075 mac 157075 bytes_out 0 157075 bytes_in 0 157075 station_ip 77.42.112.59 157075 port 320 157075 unique_id port 157078 username aminvpn 157078 mac 157078 bytes_out 0 157078 bytes_in 0 157078 station_ip 5.120.35.70 157078 port 323 157078 unique_id port 157078 remote_ip 10.8.1.6 157080 username sedighe 157080 mac 157080 bytes_out 0 157080 bytes_in 0 157080 station_ip 113.203.8.34 157080 port 620 157080 unique_id port 157080 remote_ip 10.8.0.146 157083 username godarzi 157083 kill_reason Another user logged on this global unique id 157083 mac 157083 bytes_out 0 157083 bytes_in 0 157083 station_ip 5.202.24.27 157083 port 631 157083 unique_id port 157084 username aminvpn 157084 mac 157084 bytes_out 0 157084 bytes_in 0 157084 station_ip 5.120.35.70 157084 port 323 157084 unique_id port 157084 remote_ip 10.8.1.6 157085 username aminvpn 157085 mac 157085 bytes_out 0 157085 bytes_in 0 157085 station_ip 5.120.35.70 157085 port 317 157085 unique_id port 157085 remote_ip 10.8.1.6 157087 username tahmasebi 157087 mac 157087 bytes_out 0 157087 bytes_in 0 157087 station_ip 77.42.112.59 157087 port 323 157087 unique_id port 157087 remote_ip 10.8.1.90 157089 username nilufarrajaei 157089 kill_reason Another user logged on this global unique id 157089 mac 157089 bytes_out 0 157089 bytes_in 0 157089 station_ip 83.123.203.9 157089 port 609 157089 unique_id port 157089 remote_ip 10.8.0.206 157090 username aminvpn 157090 mac 157090 bytes_out 0 157090 bytes_in 0 157090 station_ip 5.120.35.70 157090 port 317 157090 unique_id port 157090 remote_ip 10.8.1.6 157091 username aminvpn 157045 station_ip 77.42.112.59 157045 port 613 157045 unique_id port 157045 remote_ip 10.8.0.42 157049 username tahmasebi 157049 mac 157049 bytes_out 0 157049 bytes_in 0 157049 station_ip 77.42.112.59 157049 port 613 157049 unique_id port 157049 remote_ip 10.8.0.42 157056 username tahmasebi 157056 mac 157056 bytes_out 0 157056 bytes_in 0 157056 station_ip 77.42.112.59 157056 port 613 157056 unique_id port 157056 remote_ip 10.8.0.42 157061 username moradi 157061 mac 157061 bytes_out 0 157061 bytes_in 0 157061 station_ip 83.122.173.56 157061 port 320 157061 unique_id port 157061 remote_ip 10.8.1.202 157063 username barzegar 157063 mac 157063 bytes_out 3625 157063 bytes_in 5735 157063 station_ip 5.120.171.149 157063 port 620 157063 unique_id port 157063 remote_ip 10.8.0.234 157066 username aminvpn 157066 kill_reason Another user logged on this global unique id 157066 mac 157066 bytes_out 0 157066 bytes_in 0 157066 station_ip 5.120.35.70 157066 port 317 157066 unique_id port 157066 remote_ip 10.8.1.6 157072 username aminvpn 157072 mac 157072 bytes_out 0 157072 bytes_in 0 157072 station_ip 5.120.35.70 157072 port 317 157072 unique_id port 157072 remote_ip 10.8.1.6 157076 username aminvpn 157076 mac 157076 bytes_out 0 157076 bytes_in 0 157076 station_ip 5.120.35.70 157076 port 323 157076 unique_id port 157076 remote_ip 10.8.1.6 157079 username aminvpn 157079 mac 157079 bytes_out 0 157079 bytes_in 0 157079 station_ip 5.120.35.70 157079 port 317 157079 unique_id port 157079 remote_ip 10.8.1.6 157081 username aminvpn 157081 mac 157081 bytes_out 0 157081 bytes_in 0 157081 station_ip 5.120.35.70 157081 port 323 157081 unique_id port 157081 remote_ip 10.8.1.6 157082 username aminvpn 157082 mac 157082 bytes_out 0 157082 bytes_in 0 157082 station_ip 5.120.35.70 157082 port 317 157082 unique_id port 157082 remote_ip 10.8.1.6 157088 username aminvpn 157088 mac 157088 bytes_out 0 157088 bytes_in 0 157088 station_ip 5.120.35.70 157088 port 325 157088 unique_id port 157088 remote_ip 10.8.1.6 157092 username aminvpn 157092 mac 157092 bytes_out 0 157092 bytes_in 0 157092 station_ip 5.120.35.70 157092 port 317 157092 unique_id port 157092 remote_ip 10.8.1.6 157105 username shadkam 157105 mac 157105 bytes_out 0 157105 bytes_in 0 157105 station_ip 37.129.68.132 157105 port 609 157105 unique_id port 157105 remote_ip 10.8.0.62 157108 username shadkam 157108 mac 157108 bytes_out 0 157108 bytes_in 0 157108 station_ip 37.129.68.132 157108 port 620 157108 unique_id port 157108 remote_ip 10.8.0.62 157110 username tahmasebi 157110 mac 157110 bytes_out 0 157110 bytes_in 0 157110 station_ip 77.42.112.59 157110 port 641 157110 unique_id port 157110 remote_ip 10.8.0.42 157116 username nilufarrajaei 157116 mac 157116 bytes_out 6144 157116 bytes_in 11866 157116 station_ip 83.123.203.9 157116 port 640 157116 unique_id port 157116 remote_ip 10.8.0.206 157124 username sekonji3 157124 mac 157124 bytes_out 0 157124 bytes_in 0 157124 station_ip 37.129.46.108 157124 port 317 157124 unique_id port 157124 remote_ip 10.8.1.238 157129 username sekonji3 157129 mac 157129 bytes_out 0 157129 bytes_in 0 157129 station_ip 37.129.46.108 157129 port 317 157129 unique_id port 157129 remote_ip 10.8.1.238 157134 username sekonji3 157134 mac 157134 bytes_out 0 157134 bytes_in 0 157134 station_ip 37.129.46.108 157134 port 317 157134 unique_id port 157048 mac 157048 bytes_out 0 157048 bytes_in 0 157048 station_ip 5.120.35.70 157048 port 317 157048 unique_id port 157048 remote_ip 10.8.1.6 157050 username aminvpn 157050 mac 157050 bytes_out 0 157050 bytes_in 0 157050 station_ip 5.120.35.70 157050 port 324 157050 unique_id port 157050 remote_ip 10.8.1.6 157052 username milan 157052 kill_reason Another user logged on this global unique id 157052 mac 157052 bytes_out 0 157052 bytes_in 0 157052 station_ip 5.119.238.71 157052 port 632 157052 unique_id port 157053 username aminvpn 157053 mac 157053 bytes_out 0 157053 bytes_in 0 157053 station_ip 5.120.35.70 157053 port 317 157053 unique_id port 157053 remote_ip 10.8.1.6 157055 username aminvpn 157055 mac 157055 bytes_out 0 157055 bytes_in 0 157055 station_ip 5.120.35.70 157055 port 317 157055 unique_id port 157055 remote_ip 10.8.1.6 157057 username aminvpn 157057 mac 157057 bytes_out 0 157057 bytes_in 0 157057 station_ip 5.120.35.70 157057 port 324 157057 unique_id port 157057 remote_ip 10.8.1.6 157060 username aminvpn 157060 mac 157060 bytes_out 0 157060 bytes_in 0 157060 station_ip 5.120.35.70 157060 port 325 157060 unique_id port 157060 remote_ip 10.8.1.6 157062 username tahmasebi 157062 mac 157062 bytes_out 0 157062 bytes_in 0 157062 station_ip 77.42.112.59 157062 port 320 157062 unique_id port 157062 remote_ip 10.8.1.90 157064 username morteza 157064 kill_reason Another user logged on this global unique id 157064 mac 157064 bytes_out 0 157064 bytes_in 0 157064 station_ip 83.123.217.209 157064 port 636 157064 unique_id port 157064 remote_ip 10.8.0.46 157067 username sedighe 157067 mac 157067 bytes_out 528559 157067 bytes_in 3699667 157067 station_ip 113.203.8.34 157067 port 323 157067 unique_id port 157067 remote_ip 10.8.1.78 157070 username aminvpn 157070 mac 157070 bytes_out 0 157070 bytes_in 0 157070 station_ip 5.120.35.70 157070 port 317 157070 unique_id port 157073 username aminvpn 157073 mac 157073 bytes_out 0 157073 bytes_in 0 157073 station_ip 5.120.35.70 157073 port 323 157073 unique_id port 157073 remote_ip 10.8.1.6 157077 username aminvpn 157077 mac 157077 bytes_out 0 157077 bytes_in 0 157077 station_ip 5.120.35.70 157077 port 317 157077 unique_id port 157077 remote_ip 10.8.1.6 157086 username barzegar 157086 mac 157086 bytes_out 5848 157086 bytes_in 16404 157086 station_ip 5.120.171.149 157086 port 640 157086 unique_id port 157086 remote_ip 10.8.0.234 157093 username aminvpn 157093 mac 157093 bytes_out 0 157093 bytes_in 0 157093 station_ip 5.120.35.70 157093 port 323 157093 unique_id port 157093 remote_ip 10.8.1.6 157094 username aminvpn 157094 mac 157094 bytes_out 0 157094 bytes_in 0 157094 station_ip 5.120.35.70 157094 port 317 157094 unique_id port 157094 remote_ip 10.8.1.6 157096 username ahmadi1 157096 mac 157096 bytes_out 75007 157096 bytes_in 206611 157096 station_ip 83.123.147.49 157096 port 620 157096 unique_id port 157096 remote_ip 10.8.0.250 157098 username farhad2 157098 mac 157098 bytes_out 412675 157098 bytes_in 2575891 157098 station_ip 5.119.111.2 157098 port 642 157098 unique_id port 157098 remote_ip 10.8.0.190 157099 username shadkam 157099 mac 157099 bytes_out 2013 157099 bytes_in 4376 157099 station_ip 83.122.240.233 157099 port 620 157099 unique_id port 157099 remote_ip 10.8.0.62 157101 username kalantary 157101 mac 157101 bytes_out 428953 157101 bytes_in 2739347 157091 mac 157091 bytes_out 0 157091 bytes_in 0 157091 station_ip 5.120.35.70 157091 port 323 157091 unique_id port 157091 remote_ip 10.8.1.6 157095 username aminvpn 157095 mac 157095 bytes_out 0 157095 bytes_in 0 157095 station_ip 5.120.35.70 157095 port 323 157095 unique_id port 157095 remote_ip 10.8.1.6 157097 username milan 157097 kill_reason Another user logged on this global unique id 157097 mac 157097 bytes_out 0 157097 bytes_in 0 157097 station_ip 5.119.238.71 157097 port 632 157097 unique_id port 157100 username barzegar 157100 mac 157100 bytes_out 0 157100 bytes_in 0 157100 station_ip 5.120.171.149 157100 port 323 157100 unique_id port 157100 remote_ip 10.8.1.174 157102 username nilufarrajaei 157102 mac 157102 bytes_out 0 157102 bytes_in 0 157102 station_ip 83.123.203.9 157102 port 609 157102 unique_id port 157106 username nilufarrajaei 157106 mac 157106 bytes_out 0 157106 bytes_in 0 157106 station_ip 83.123.203.9 157106 port 641 157106 unique_id port 157106 remote_ip 10.8.0.206 157107 username tahmasebi 157107 mac 157107 bytes_out 14484 157107 bytes_in 18228 157107 station_ip 77.42.112.59 157107 port 325 157107 unique_id port 157107 remote_ip 10.8.1.90 157109 username milan 157109 kill_reason Another user logged on this global unique id 157109 mac 157109 bytes_out 0 157109 bytes_in 0 157109 station_ip 5.119.238.71 157109 port 632 157109 unique_id port 157111 username aminvpn 157111 mac 157111 bytes_out 0 157111 bytes_in 0 157111 station_ip 5.120.35.70 157111 port 317 157111 unique_id port 157113 username nilufarrajaei 157113 mac 157113 bytes_out 0 157113 bytes_in 0 157113 station_ip 83.123.203.9 157113 port 609 157113 unique_id port 157113 remote_ip 10.8.0.206 157115 username morteza 157115 kill_reason Another user logged on this global unique id 157115 mac 157115 bytes_out 0 157115 bytes_in 0 157115 station_ip 83.123.217.209 157115 port 636 157115 unique_id port 157117 username mohammadmahdi 157117 kill_reason Another user logged on this global unique id 157117 mac 157117 bytes_out 0 157117 bytes_in 0 157117 station_ip 5.120.153.133 157117 port 642 157117 unique_id port 157117 remote_ip 10.8.0.54 157119 username sekonji3 157119 mac 157119 bytes_out 0 157119 bytes_in 0 157119 station_ip 37.129.46.108 157119 port 645 157119 unique_id port 157119 remote_ip 10.8.0.6 157121 username sekonji3 157121 mac 157121 bytes_out 0 157121 bytes_in 0 157121 station_ip 37.129.46.108 157121 port 317 157121 unique_id port 157121 remote_ip 10.8.1.238 157126 username kalantary 157126 mac 157126 bytes_out 477948 157126 bytes_in 5839466 157126 station_ip 113.203.38.181 157126 port 644 157126 unique_id port 157126 remote_ip 10.8.0.98 157127 username farhad2 157127 mac 157127 bytes_out 143684 157127 bytes_in 576495 157127 station_ip 5.119.111.2 157127 port 641 157127 unique_id port 157127 remote_ip 10.8.0.190 157131 username vanila 157131 mac 157131 bytes_out 0 157131 bytes_in 0 157131 station_ip 113.203.76.250 157131 port 638 157131 unique_id port 157131 remote_ip 10.8.0.178 157132 username farhad2 157132 mac 157132 bytes_out 0 157132 bytes_in 0 157132 station_ip 5.119.111.2 157132 port 638 157132 unique_id port 157132 remote_ip 10.8.0.190 157135 username shadkam 157135 mac 157135 bytes_out 59694 157135 bytes_in 484006 157135 station_ip 37.129.68.132 157135 port 620 157135 unique_id port 157135 remote_ip 10.8.0.62 157137 username shadkam 157137 mac 157137 bytes_out 0 157101 station_ip 113.203.59.157 157101 port 641 157101 unique_id port 157101 remote_ip 10.8.0.98 157103 username aminvpn 157103 kill_reason Another user logged on this global unique id 157103 mac 157103 bytes_out 0 157103 bytes_in 0 157103 station_ip 5.120.35.70 157103 port 317 157103 unique_id port 157103 remote_ip 10.8.1.6 157104 username shadkam 157104 mac 157104 bytes_out 524159 157104 bytes_in 4954898 157104 station_ip 37.129.68.132 157104 port 620 157104 unique_id port 157104 remote_ip 10.8.0.62 157112 username sekonji3 157112 mac 157112 bytes_out 677719 157112 bytes_in 7303081 157112 station_ip 37.129.46.108 157112 port 640 157112 unique_id port 157112 remote_ip 10.8.0.6 157114 username jafari 157114 kill_reason Another user logged on this global unique id 157114 mac 157114 bytes_out 0 157114 bytes_in 0 157114 station_ip 37.156.155.122 157114 port 639 157114 unique_id port 157118 username tahmasebi 157118 mac 157118 bytes_out 0 157118 bytes_in 0 157118 station_ip 77.42.112.59 157118 port 640 157118 unique_id port 157118 remote_ip 10.8.0.42 157120 username hamidsalari 157120 kill_reason Another user logged on this global unique id 157120 mac 157120 bytes_out 0 157120 bytes_in 0 157120 station_ip 5.119.79.108 157120 port 613 157120 unique_id port 157120 remote_ip 10.8.0.222 157122 username barzegar 157122 mac 157122 bytes_out 0 157122 bytes_in 0 157122 station_ip 5.120.171.149 157122 port 323 157122 unique_id port 157122 remote_ip 10.8.1.174 157123 username nilufarrajaei 157123 mac 157123 bytes_out 0 157123 bytes_in 0 157123 station_ip 83.123.203.9 157123 port 641 157123 unique_id port 157123 remote_ip 10.8.0.206 157125 username barzegar 157125 mac 157125 bytes_out 2671 157125 bytes_in 5527 157125 station_ip 5.120.171.149 157125 port 317 157125 unique_id port 157125 remote_ip 10.8.1.174 157128 username farhad2 157128 mac 157128 bytes_out 0 157128 bytes_in 0 157128 station_ip 5.119.111.2 157128 port 641 157128 unique_id port 157128 remote_ip 10.8.0.190 157130 username farhad2 157130 mac 157130 bytes_out 0 157130 bytes_in 0 157130 station_ip 5.119.111.2 157130 port 641 157130 unique_id port 157130 remote_ip 10.8.0.190 157133 username jafari 157133 kill_reason Another user logged on this global unique id 157133 mac 157133 bytes_out 0 157133 bytes_in 0 157133 station_ip 37.156.155.122 157133 port 639 157133 unique_id port 157136 username shadkam 157136 mac 157136 bytes_out 0 157136 bytes_in 0 157136 station_ip 37.129.68.132 157136 port 620 157136 unique_id port 157136 remote_ip 10.8.0.62 157138 username shadkam 157138 mac 157138 bytes_out 0 157138 bytes_in 0 157138 station_ip 37.129.68.132 157138 port 323 157138 unique_id port 157138 remote_ip 10.8.1.218 157142 username naeimeh 157142 mac 157142 bytes_out 1471609 157142 bytes_in 14934953 157142 station_ip 83.122.187.136 157142 port 644 157142 unique_id port 157142 remote_ip 10.8.0.118 157145 username jafari 157145 kill_reason Another user logged on this global unique id 157145 mac 157145 bytes_out 0 157145 bytes_in 0 157145 station_ip 37.156.155.122 157145 port 639 157145 unique_id port 157148 username zotaher 157148 mac 157148 bytes_out 1314686 157148 bytes_in 5584695 157148 station_ip 37.129.62.50 157148 port 640 157148 unique_id port 157148 remote_ip 10.8.0.194 157149 username tahmasebi 157149 mac 157149 bytes_out 0 157149 bytes_in 0 157149 station_ip 77.42.112.59 157149 port 620 157149 unique_id port 157149 remote_ip 10.8.0.42 157150 username tahmasebi 157134 remote_ip 10.8.1.238 157139 username mohammadmahdi 157139 kill_reason Another user logged on this global unique id 157139 mac 157139 bytes_out 0 157139 bytes_in 0 157139 station_ip 5.120.153.133 157139 port 642 157139 unique_id port 157140 username milan 157140 kill_reason Another user logged on this global unique id 157140 mac 157140 bytes_out 0 157140 bytes_in 0 157140 station_ip 5.119.238.71 157140 port 632 157140 unique_id port 157143 username morteza 157143 mac 157143 bytes_out 0 157143 bytes_in 0 157143 station_ip 83.123.217.209 157143 port 636 157143 unique_id port 157151 username shadkam 157151 mac 157151 bytes_out 0 157151 bytes_in 0 157151 station_ip 83.122.106.95 157151 port 326 157151 unique_id port 157151 remote_ip 10.8.1.218 157153 username kalantary 157153 mac 157153 bytes_out 1338661 157153 bytes_in 13211477 157153 station_ip 113.203.38.181 157153 port 646 157153 unique_id port 157153 remote_ip 10.8.0.98 157154 username nilufarrajaei 157154 mac 157154 bytes_out 4355753 157154 bytes_in 17328406 157154 station_ip 83.123.203.9 157154 port 645 157154 unique_id port 157154 remote_ip 10.8.0.206 157157 username morteza 157157 kill_reason Another user logged on this global unique id 157157 mac 157157 bytes_out 0 157157 bytes_in 0 157157 station_ip 83.123.217.209 157157 port 323 157157 unique_id port 157157 remote_ip 10.8.1.62 157158 username tahmasebi 157158 kill_reason Maximum check online fails reached 157158 mac 157158 bytes_out 0 157158 bytes_in 0 157158 station_ip 77.42.112.59 157158 port 636 157158 unique_id port 157159 username godarzi 157159 kill_reason Another user logged on this global unique id 157159 mac 157159 bytes_out 0 157159 bytes_in 0 157159 station_ip 5.202.24.27 157159 port 631 157159 unique_id port 157160 username tahmasebi 157160 mac 157160 bytes_out 0 157160 bytes_in 0 157160 station_ip 77.42.112.59 157160 port 326 157160 unique_id port 157160 remote_ip 10.8.1.90 157162 username barzegar 157162 mac 157162 bytes_out 0 157162 bytes_in 0 157162 station_ip 5.120.171.149 157162 port 326 157162 unique_id port 157162 remote_ip 10.8.1.174 157164 username farhad2 157164 mac 157164 bytes_out 0 157164 bytes_in 0 157164 station_ip 5.119.111.2 157164 port 317 157164 unique_id port 157164 remote_ip 10.8.1.222 157166 username moradi 157166 mac 157166 bytes_out 0 157166 bytes_in 0 157166 station_ip 37.153.178.192 157166 port 640 157166 unique_id port 157166 remote_ip 10.8.0.226 157167 username godarzi 157167 mac 157167 bytes_out 0 157167 bytes_in 0 157167 station_ip 5.202.24.27 157167 port 631 157167 unique_id port 157169 username mohammadmahdi 157169 kill_reason Another user logged on this global unique id 157169 mac 157169 bytes_out 0 157169 bytes_in 0 157169 station_ip 5.120.153.133 157169 port 642 157169 unique_id port 157171 username tahmasebi 157171 mac 157171 bytes_out 0 157171 bytes_in 0 157171 station_ip 77.42.112.59 157171 port 323 157171 unique_id port 157171 remote_ip 10.8.1.90 157173 username hamidsalari 157173 kill_reason Another user logged on this global unique id 157173 mac 157173 bytes_out 0 157173 bytes_in 0 157173 station_ip 5.119.79.108 157173 port 613 157173 unique_id port 157176 username khademi 157176 kill_reason Another user logged on this global unique id 157176 mac 157176 bytes_out 0 157176 bytes_in 0 157176 station_ip 113.203.78.111 157176 port 614 157176 unique_id port 157180 username barzegar 157180 mac 157180 bytes_out 0 157180 bytes_in 0 157180 station_ip 5.120.171.149 157180 port 323 157137 bytes_in 0 157137 station_ip 37.129.68.132 157137 port 620 157137 unique_id port 157137 remote_ip 10.8.0.62 157141 username tahmasebi 157141 mac 157141 bytes_out 0 157141 bytes_in 0 157141 station_ip 77.42.112.59 157141 port 620 157141 unique_id port 157141 remote_ip 10.8.0.42 157144 username morteza 157144 mac 157144 bytes_out 0 157144 bytes_in 0 157144 station_ip 83.123.217.209 157144 port 620 157144 unique_id port 157144 remote_ip 10.8.0.46 157146 username barzegar 157146 mac 157146 bytes_out 0 157146 bytes_in 0 157146 station_ip 5.120.171.149 157146 port 326 157146 unique_id port 157146 remote_ip 10.8.1.174 157147 username tahmasebi 157147 mac 157147 bytes_out 0 157147 bytes_in 0 157147 station_ip 77.42.112.59 157147 port 620 157147 unique_id port 157147 remote_ip 10.8.0.42 157152 username vanila 157152 mac 157152 bytes_out 0 157152 bytes_in 0 157152 station_ip 113.203.76.250 157152 port 641 157152 unique_id port 157152 remote_ip 10.8.0.178 157155 username farhad2 157155 mac 157155 bytes_out 1678887 157155 bytes_in 13092437 157155 station_ip 5.119.111.2 157155 port 317 157155 unique_id port 157155 remote_ip 10.8.1.222 157156 username jafari 157156 kill_reason Another user logged on this global unique id 157156 mac 157156 bytes_out 0 157156 bytes_in 0 157156 station_ip 37.156.155.122 157156 port 639 157156 unique_id port 157163 username khademi 157163 kill_reason Another user logged on this global unique id 157163 mac 157163 bytes_out 0 157163 bytes_in 0 157163 station_ip 113.203.78.111 157163 port 614 157163 unique_id port 157165 username jafari 157165 kill_reason Another user logged on this global unique id 157165 mac 157165 bytes_out 0 157165 bytes_in 0 157165 station_ip 37.156.155.122 157165 port 639 157165 unique_id port 157168 username farhad2 157168 mac 157168 bytes_out 24993 157168 bytes_in 36569 157168 station_ip 5.119.111.2 157168 port 640 157168 unique_id port 157168 remote_ip 10.8.0.190 157170 username shadkam 157170 mac 157170 bytes_out 0 157170 bytes_in 0 157170 station_ip 83.122.101.106 157170 port 317 157170 unique_id port 157170 remote_ip 10.8.1.218 157177 username tahmasebi 157177 mac 157177 bytes_out 0 157177 bytes_in 0 157177 station_ip 77.42.112.59 157177 port 640 157177 unique_id port 157177 remote_ip 10.8.0.42 157181 username arash 157181 mac 157181 bytes_out 0 157181 bytes_in 0 157181 station_ip 37.27.5.144 157181 port 640 157181 unique_id port 157181 remote_ip 10.8.0.114 157183 username tahmasebi 157183 mac 157183 bytes_out 0 157183 bytes_in 0 157183 station_ip 77.42.112.59 157183 port 638 157183 unique_id port 157183 remote_ip 10.8.0.42 157188 username farhad2 157188 mac 157188 bytes_out 952848 157188 bytes_in 4760319 157188 station_ip 5.119.111.2 157188 port 631 157188 unique_id port 157188 remote_ip 10.8.0.190 157190 username arash 157190 mac 157190 bytes_out 17857 157190 bytes_in 32545 157190 station_ip 37.27.5.144 157190 port 641 157190 unique_id port 157190 remote_ip 10.8.0.114 157198 username aminvpn 157198 kill_reason Another user logged on this global unique id 157198 mac 157198 bytes_out 0 157198 bytes_in 0 157198 station_ip 5.120.171.75 157198 port 317 157198 unique_id port 157198 remote_ip 10.8.1.6 157201 username khademi 157201 kill_reason Another user logged on this global unique id 157201 mac 157201 bytes_out 0 157201 bytes_in 0 157201 station_ip 113.203.78.111 157201 port 614 157201 unique_id port 157203 username jafari 157222 mac 157150 mac 157150 bytes_out 0 157150 bytes_in 0 157150 station_ip 77.42.112.59 157150 port 620 157150 unique_id port 157150 remote_ip 10.8.0.42 157161 username morteza 157161 mac 157161 bytes_out 0 157161 bytes_in 0 157161 station_ip 83.123.217.209 157161 port 323 157161 unique_id port 157172 username barzegar 157172 mac 157172 bytes_out 0 157172 bytes_in 0 157172 station_ip 5.120.171.149 157172 port 323 157172 unique_id port 157172 remote_ip 10.8.1.174 157174 username jafari 157174 kill_reason Another user logged on this global unique id 157174 mac 157174 bytes_out 0 157174 bytes_in 0 157174 station_ip 37.156.155.122 157174 port 639 157174 unique_id port 157175 username mahdiyehalizadeh 157175 mac 157175 bytes_out 224932 157175 bytes_in 2465544 157175 station_ip 5.119.192.166 157175 port 640 157175 unique_id port 157175 remote_ip 10.8.0.82 157178 username hatami 157178 mac 157178 bytes_out 1280753 157178 bytes_in 13280102 157178 station_ip 151.235.84.25 157178 port 638 157178 unique_id port 157178 remote_ip 10.8.0.106 157179 username milan 157179 kill_reason Another user logged on this global unique id 157179 mac 157179 bytes_out 0 157179 bytes_in 0 157179 station_ip 5.119.238.71 157179 port 632 157179 unique_id port 157184 username khademi 157184 kill_reason Another user logged on this global unique id 157184 mac 157184 bytes_out 0 157184 bytes_in 0 157184 station_ip 113.203.78.111 157184 port 614 157184 unique_id port 157185 username mohammadmahdi 157185 kill_reason Another user logged on this global unique id 157185 mac 157185 bytes_out 0 157185 bytes_in 0 157185 station_ip 5.120.153.133 157185 port 642 157185 unique_id port 157186 username tahmasebi 157186 mac 157186 bytes_out 0 157186 bytes_in 0 157186 station_ip 77.42.112.59 157186 port 638 157186 unique_id port 157186 remote_ip 10.8.0.42 157195 username farhad2 157195 mac 157195 bytes_out 290514 157195 bytes_in 1812699 157195 station_ip 5.119.111.2 157195 port 631 157195 unique_id port 157195 remote_ip 10.8.0.190 157206 username pourshad 157206 mac 157206 bytes_out 4236149 157206 bytes_in 50055734 157206 station_ip 5.120.128.181 157206 port 643 157206 unique_id port 157206 remote_ip 10.8.0.18 157208 username jafari 157208 kill_reason Another user logged on this global unique id 157208 mac 157208 bytes_out 0 157208 bytes_in 0 157208 station_ip 37.156.155.122 157208 port 639 157208 unique_id port 157209 username morteza 157209 kill_reason Another user logged on this global unique id 157209 mac 157209 bytes_out 0 157209 bytes_in 0 157209 station_ip 83.123.183.221 157209 port 327 157209 unique_id port 157209 remote_ip 10.8.1.62 157210 username jafari 157210 mac 157210 bytes_out 0 157210 bytes_in 0 157210 station_ip 37.156.155.122 157210 port 639 157210 unique_id port 157212 username nilufarrajaei 157212 kill_reason Another user logged on this global unique id 157212 mac 157212 bytes_out 0 157212 bytes_in 0 157212 station_ip 83.123.203.9 157212 port 620 157212 unique_id port 157212 remote_ip 10.8.0.206 157217 username fezealinaghi 157217 mac 157217 bytes_out 1033948 157217 bytes_in 10403303 157217 station_ip 37.129.37.114 157217 port 609 157217 unique_id port 157217 remote_ip 10.8.0.78 157218 username jafari 157218 mac 157218 bytes_out 0 157218 bytes_in 0 157218 station_ip 37.156.155.122 157218 port 640 157218 unique_id port 157220 username nilufarrajaei 157220 mac 157220 bytes_out 0 157220 bytes_in 0 157220 station_ip 83.123.203.9 157220 port 620 157220 unique_id port 157222 username ayobi 157180 unique_id port 157180 remote_ip 10.8.1.174 157182 username jafari 157182 kill_reason Another user logged on this global unique id 157182 mac 157182 bytes_out 0 157182 bytes_in 0 157182 station_ip 37.156.155.122 157182 port 639 157182 unique_id port 157187 username tahmasebi 157187 mac 157187 bytes_out 0 157187 bytes_in 0 157187 station_ip 77.42.112.59 157187 port 638 157187 unique_id port 157187 remote_ip 10.8.0.42 157189 username tahmasebi 157189 mac 157189 bytes_out 0 157189 bytes_in 0 157189 station_ip 77.42.112.59 157189 port 323 157189 unique_id port 157189 remote_ip 10.8.1.90 157191 username farhad2 157191 mac 157191 bytes_out 48128 157191 bytes_in 169812 157191 station_ip 5.119.111.2 157191 port 631 157191 unique_id port 157191 remote_ip 10.8.0.190 157192 username barzegar 157192 mac 157192 bytes_out 0 157192 bytes_in 0 157192 station_ip 5.120.171.149 157192 port 323 157192 unique_id port 157192 remote_ip 10.8.1.174 157193 username vanila 157193 mac 157193 bytes_out 414586 157193 bytes_in 3177306 157193 station_ip 113.203.76.250 157193 port 640 157193 unique_id port 157193 remote_ip 10.8.0.178 157194 username tahmasebi 157194 mac 157194 bytes_out 0 157194 bytes_in 0 157194 station_ip 77.42.112.59 157194 port 640 157194 unique_id port 157194 remote_ip 10.8.0.42 157196 username jafari 157196 kill_reason Another user logged on this global unique id 157196 mac 157196 bytes_out 0 157196 bytes_in 0 157196 station_ip 37.156.155.122 157196 port 639 157196 unique_id port 157197 username vanila 157197 mac 157197 bytes_out 0 157197 bytes_in 0 157197 station_ip 113.203.76.250 157197 port 638 157197 unique_id port 157197 remote_ip 10.8.0.178 157199 username mohammadmahdi 157199 kill_reason Another user logged on this global unique id 157199 mac 157199 bytes_out 0 157199 bytes_in 0 157199 station_ip 5.120.153.133 157199 port 642 157199 unique_id port 157200 username farhad2 157200 mac 157200 bytes_out 0 157200 bytes_in 0 157200 station_ip 5.119.111.2 157200 port 631 157200 unique_id port 157200 remote_ip 10.8.0.190 157202 username farhad2 157202 mac 157202 bytes_out 0 157202 bytes_in 0 157202 station_ip 5.119.111.2 157202 port 631 157202 unique_id port 157202 remote_ip 10.8.0.190 157204 username milan 157204 kill_reason Another user logged on this global unique id 157204 mac 157204 bytes_out 0 157204 bytes_in 0 157204 station_ip 5.119.238.71 157204 port 632 157204 unique_id port 157207 username sekonji3 157207 mac 157207 bytes_out 2134466 157207 bytes_in 38071543 157207 station_ip 37.129.46.108 157207 port 325 157207 unique_id port 157207 remote_ip 10.8.1.238 157214 username mohammadmahdi 157214 mac 157214 bytes_out 0 157214 bytes_in 0 157214 station_ip 5.120.153.133 157214 port 642 157214 unique_id port 157216 username jafari 157216 kill_reason Another user logged on this global unique id 157216 mac 157216 bytes_out 0 157216 bytes_in 0 157216 station_ip 37.156.155.122 157216 port 640 157216 unique_id port 157216 remote_ip 10.8.0.242 157219 username morteza 157219 mac 157219 bytes_out 0 157219 bytes_in 0 157219 station_ip 83.123.183.221 157219 port 327 157219 unique_id port 157225 username farhad2 157225 mac 157225 bytes_out 0 157225 bytes_in 0 157225 station_ip 5.119.111.2 157225 port 317 157225 unique_id port 157225 remote_ip 10.8.1.222 157226 username nilufarrajaei 157226 mac 157226 bytes_out 0 157226 bytes_in 0 157226 station_ip 83.123.203.9 157226 port 609 157226 unique_id port 157203 kill_reason Another user logged on this global unique id 157203 mac 157203 bytes_out 0 157203 bytes_in 0 157203 station_ip 37.156.155.122 157203 port 639 157203 unique_id port 157205 username barzegar 157205 mac 157205 bytes_out 0 157205 bytes_in 0 157205 station_ip 5.120.171.149 157205 port 328 157205 unique_id port 157205 remote_ip 10.8.1.174 157211 username farhad2 157211 mac 157211 bytes_out 0 157211 bytes_in 0 157211 station_ip 5.119.111.2 157211 port 326 157211 unique_id port 157211 remote_ip 10.8.1.222 157213 username aminvpn 157213 mac 157213 bytes_out 0 157213 bytes_in 0 157213 station_ip 5.120.171.75 157213 port 317 157213 unique_id port 157215 username barzegar 157215 mac 157215 bytes_out 0 157215 bytes_in 0 157215 station_ip 5.120.171.149 157215 port 326 157215 unique_id port 157215 remote_ip 10.8.1.174 157221 username shadkam 157221 mac 157221 bytes_out 0 157221 bytes_in 0 157221 station_ip 83.122.184.42 157221 port 326 157221 unique_id port 157221 remote_ip 10.8.1.218 157223 username barzegar 157223 mac 157223 bytes_out 0 157223 bytes_in 0 157223 station_ip 5.120.171.149 157223 port 326 157223 unique_id port 157223 remote_ip 10.8.1.174 157230 username aminvpn 157230 mac 157230 bytes_out 0 157230 bytes_in 0 157230 station_ip 5.120.171.75 157230 port 325 157230 unique_id port 157230 remote_ip 10.8.1.6 157232 username barzegar 157232 mac 157232 bytes_out 0 157232 bytes_in 0 157232 station_ip 5.120.171.149 157232 port 325 157232 unique_id port 157232 remote_ip 10.8.1.174 157234 username moradi 157234 kill_reason Another user logged on this global unique id 157234 mac 157234 bytes_out 0 157234 bytes_in 0 157234 station_ip 83.122.206.176 157234 port 323 157234 unique_id port 157234 remote_ip 10.8.1.202 157235 username sekonji3 157235 mac 157235 bytes_out 1243429 157235 bytes_in 21481108 157235 station_ip 83.122.125.61 157235 port 641 157235 unique_id port 157235 remote_ip 10.8.0.6 157237 username nilufarrajaei 157237 kill_reason Another user logged on this global unique id 157237 mac 157237 bytes_out 0 157237 bytes_in 0 157237 station_ip 113.203.30.154 157237 port 633 157237 unique_id port 157237 remote_ip 10.8.0.206 157238 username mansour 157238 mac 157238 bytes_out 0 157238 bytes_in 0 157238 station_ip 5.119.134.101 157238 port 620 157238 unique_id port 157238 remote_ip 10.8.0.30 157241 username barzegar 157241 mac 157241 bytes_out 0 157241 bytes_in 0 157241 station_ip 5.120.171.149 157241 port 325 157241 unique_id port 157241 remote_ip 10.8.1.174 157243 username nilufarrajaei 157243 mac 157243 bytes_out 0 157243 bytes_in 0 157243 station_ip 113.203.30.154 157243 port 633 157243 unique_id port 157245 username pourshad 157245 mac 157245 bytes_out 211518 157245 bytes_in 1548801 157245 station_ip 5.120.128.181 157245 port 631 157245 unique_id port 157245 remote_ip 10.8.0.18 157246 username moradi 157246 mac 157246 bytes_out 0 157246 bytes_in 0 157246 station_ip 83.122.206.176 157246 port 323 157246 unique_id port 157249 username nilufarrajaei 157249 mac 157249 bytes_out 31068 157249 bytes_in 68722 157249 station_ip 83.123.8.42 157249 port 639 157249 unique_id port 157249 remote_ip 10.8.0.206 157251 username nilufarrajaei 157251 mac 157251 bytes_out 0 157251 bytes_in 0 157251 station_ip 83.123.8.42 157251 port 631 157251 unique_id port 157251 remote_ip 10.8.0.206 157254 username moradi 157254 mac 157254 bytes_out 0 157222 bytes_out 1375946 157222 bytes_in 8108210 157222 station_ip 37.27.29.160 157222 port 633 157222 unique_id port 157222 remote_ip 10.8.0.246 157224 username mohammadmahdi 157224 kill_reason Another user logged on this global unique id 157224 mac 157224 bytes_out 0 157224 bytes_in 0 157224 station_ip 5.120.153.133 157224 port 639 157224 unique_id port 157224 remote_ip 10.8.0.54 157227 username hamidsalari 157227 mac 157227 bytes_out 0 157227 bytes_in 0 157227 station_ip 5.119.79.108 157227 port 613 157227 unique_id port 157228 username mohammadmahdi 157228 mac 157228 bytes_out 0 157228 bytes_in 0 157228 station_ip 5.120.153.133 157228 port 639 157228 unique_id port 157233 username rezaei 157233 mac 157233 bytes_out 1260508 157233 bytes_in 21069617 157233 station_ip 5.119.53.117 157233 port 639 157233 unique_id port 157233 remote_ip 10.8.0.230 157236 username farhad2 157236 mac 157236 bytes_out 0 157236 bytes_in 0 157236 station_ip 5.119.111.2 157236 port 317 157236 unique_id port 157236 remote_ip 10.8.1.222 157239 username farhad2 157239 mac 157239 bytes_out 0 157239 bytes_in 0 157239 station_ip 5.119.111.2 157239 port 317 157239 unique_id port 157239 remote_ip 10.8.1.222 157244 username moradi 157244 kill_reason Another user logged on this global unique id 157244 mac 157244 bytes_out 0 157244 bytes_in 0 157244 station_ip 83.122.206.176 157244 port 323 157244 unique_id port 157248 username irannezhad 157248 kill_reason Relative expiration date has reached 157248 mac 157248 bytes_out 0 157248 bytes_in 0 157248 station_ip 37.129.89.143 157248 port 631 157248 unique_id port 157250 username hamidsalari 157250 kill_reason Another user logged on this global unique id 157250 mac 157250 bytes_out 0 157250 bytes_in 0 157250 station_ip 5.119.57.112 157250 port 609 157250 unique_id port 157250 remote_ip 10.8.0.222 157252 username tahmasebi 157252 mac 157252 bytes_out 901710 157252 bytes_in 233565 157252 station_ip 77.42.112.59 157252 port 638 157252 unique_id port 157252 remote_ip 10.8.0.42 157253 username barzegar 157253 mac 157253 bytes_out 0 157253 bytes_in 0 157253 station_ip 5.120.171.149 157253 port 325 157253 unique_id port 157253 remote_ip 10.8.1.174 157256 username hamidsalari 157256 kill_reason Another user logged on this global unique id 157256 mac 157256 bytes_out 0 157256 bytes_in 0 157256 station_ip 5.119.57.112 157256 port 609 157256 unique_id port 157257 username fezealinaghi 157257 mac 157257 bytes_out 0 157257 bytes_in 0 157257 station_ip 37.129.37.114 157257 port 613 157257 unique_id port 157258 username naeimeh 157258 mac 157258 bytes_out 0 157258 bytes_in 0 157258 station_ip 113.203.118.139 157258 port 638 157258 unique_id port 157258 remote_ip 10.8.0.118 157263 username jamali 157263 kill_reason Another user logged on this global unique id 157263 mac 157263 bytes_out 0 157263 bytes_in 0 157263 station_ip 5.119.88.219 157263 port 638 157263 unique_id port 157263 remote_ip 10.8.0.70 157267 username hashtadani4 157267 mac 157267 bytes_out 0 157267 bytes_in 0 157267 station_ip 83.122.245.120 157267 port 639 157267 unique_id port 157267 remote_ip 10.8.0.182 157272 username hashtadani4 157272 mac 157272 bytes_out 0 157272 bytes_in 0 157272 station_ip 83.122.245.120 157272 port 639 157272 unique_id port 157272 remote_ip 10.8.0.182 157275 username naeimeh 157275 mac 157275 bytes_out 522579 157275 bytes_in 3831344 157275 station_ip 113.203.121.117 157275 port 641 157275 unique_id port 157275 remote_ip 10.8.0.118 157226 remote_ip 10.8.0.206 157229 username farhad2 157229 mac 157229 bytes_out 510278 157229 bytes_in 3276492 157229 station_ip 5.119.111.2 157229 port 317 157229 unique_id port 157229 remote_ip 10.8.1.222 157231 username mansour 157231 mac 157231 bytes_out 2301726 157231 bytes_in 30776448 157231 station_ip 5.119.134.101 157231 port 620 157231 unique_id port 157231 remote_ip 10.8.0.30 157240 username fezealinaghi 157240 kill_reason Another user logged on this global unique id 157240 mac 157240 bytes_out 0 157240 bytes_in 0 157240 station_ip 37.129.37.114 157240 port 613 157240 unique_id port 157240 remote_ip 10.8.0.78 157242 username tahmasebi 157242 mac 157242 bytes_out 0 157242 bytes_in 0 157242 station_ip 77.42.112.59 157242 port 638 157242 unique_id port 157242 remote_ip 10.8.0.42 157247 username irannezhad 157247 kill_reason Relative expiration date has reached 157247 mac 157247 bytes_out 0 157247 bytes_in 0 157247 station_ip 37.129.89.143 157247 port 631 157247 unique_id port 157255 username nilufarrajaei 157255 mac 157255 bytes_out 50310 157255 bytes_in 49215 157255 station_ip 83.122.205.45 157255 port 639 157255 unique_id port 157255 remote_ip 10.8.0.206 157259 username barzegar 157259 mac 157259 bytes_out 0 157259 bytes_in 0 157259 station_ip 5.120.171.149 157259 port 323 157259 unique_id port 157259 remote_ip 10.8.1.174 157260 username naeimeh 157260 mac 157260 bytes_out 0 157260 bytes_in 0 157260 station_ip 83.123.102.111 157260 port 613 157260 unique_id port 157260 remote_ip 10.8.0.118 157262 username naeimeh 157262 mac 157262 bytes_out 0 157262 bytes_in 0 157262 station_ip 113.203.121.117 157262 port 641 157262 unique_id port 157262 remote_ip 10.8.0.118 157265 username hashtadani4 157265 mac 157265 bytes_out 0 157265 bytes_in 0 157265 station_ip 83.122.245.120 157265 port 639 157265 unique_id port 157265 remote_ip 10.8.0.182 157269 username barzegar 157269 mac 157269 bytes_out 0 157269 bytes_in 0 157269 station_ip 5.120.171.149 157269 port 323 157269 unique_id port 157269 remote_ip 10.8.1.174 157270 username zotaher 157270 mac 157270 bytes_out 0 157270 bytes_in 0 157270 station_ip 37.129.11.242 157270 port 640 157270 unique_id port 157270 remote_ip 10.8.0.194 157273 username farhad2 157273 mac 157273 bytes_out 0 157273 bytes_in 0 157273 station_ip 5.119.111.2 157273 port 317 157273 unique_id port 157276 username hashtadani4 157276 mac 157276 bytes_out 0 157276 bytes_in 0 157276 station_ip 83.122.245.120 157276 port 639 157276 unique_id port 157276 remote_ip 10.8.0.182 157278 username tahmasebi 157278 mac 157278 bytes_out 3105628 157278 bytes_in 533813 157278 station_ip 77.42.112.59 157278 port 631 157278 unique_id port 157278 remote_ip 10.8.0.42 157282 username barzegar 157282 mac 157282 bytes_out 0 157282 bytes_in 0 157282 station_ip 5.120.171.149 157282 port 613 157282 unique_id port 157282 remote_ip 10.8.0.234 157284 username jamali 157284 kill_reason Another user logged on this global unique id 157284 mac 157284 bytes_out 0 157284 bytes_in 0 157284 station_ip 5.119.88.219 157284 port 638 157284 unique_id port 157285 username moradi 157285 mac 157285 bytes_out 367746 157285 bytes_in 5481771 157285 station_ip 89.32.100.193 157285 port 639 157285 unique_id port 157285 remote_ip 10.8.0.226 157288 username hadibarzegar 157288 kill_reason Another user logged on this global unique id 157288 mac 157288 bytes_out 0 157288 bytes_in 0 157288 station_ip 37.129.158.148 157288 port 640 157254 bytes_in 0 157254 station_ip 83.122.206.176 157254 port 323 157254 unique_id port 157254 remote_ip 10.8.1.202 157261 username sabaghnezhad 157261 mac 157261 bytes_out 1677492 157261 bytes_in 12474932 157261 station_ip 83.123.35.208 157261 port 324 157261 unique_id port 157261 remote_ip 10.8.1.130 157264 username hashtadani4 157264 mac 157264 bytes_out 0 157264 bytes_in 0 157264 station_ip 83.122.245.120 157264 port 639 157264 unique_id port 157264 remote_ip 10.8.0.182 157266 username naeimeh 157266 mac 157266 bytes_out 102295 157266 bytes_in 1355107 157266 station_ip 113.203.121.117 157266 port 613 157266 unique_id port 157266 remote_ip 10.8.0.118 157268 username farhad2 157268 kill_reason Another user logged on this global unique id 157268 mac 157268 bytes_out 0 157268 bytes_in 0 157268 station_ip 5.119.111.2 157268 port 317 157268 unique_id port 157268 remote_ip 10.8.1.222 157271 username jamali 157271 kill_reason Another user logged on this global unique id 157271 mac 157271 bytes_out 0 157271 bytes_in 0 157271 station_ip 5.119.88.219 157271 port 638 157271 unique_id port 157274 username mosi 157274 kill_reason Another user logged on this global unique id 157274 mac 157274 bytes_out 0 157274 bytes_in 0 157274 station_ip 151.235.89.191 157274 port 633 157274 unique_id port 157274 remote_ip 10.8.0.138 157277 username rezaei 157277 kill_reason Another user logged on this global unique id 157277 mac 157277 bytes_out 0 157277 bytes_in 0 157277 station_ip 5.119.53.117 157277 port 620 157277 unique_id port 157277 remote_ip 10.8.0.230 157279 username mahdiyehalizadeh 157279 mac 157279 bytes_out 327921 157279 bytes_in 3098744 157279 station_ip 5.119.192.166 157279 port 613 157279 unique_id port 157279 remote_ip 10.8.0.82 157280 username tahmasebi 157280 mac 157280 bytes_out 0 157280 bytes_in 0 157280 station_ip 77.42.112.59 157280 port 613 157280 unique_id port 157280 remote_ip 10.8.0.42 157281 username fezealinaghi 157281 mac 157281 bytes_out 102187 157281 bytes_in 657142 157281 station_ip 37.129.37.114 157281 port 639 157281 unique_id port 157281 remote_ip 10.8.0.78 157283 username hashtadani4 157283 mac 157283 bytes_out 0 157283 bytes_in 0 157283 station_ip 83.122.245.120 157283 port 631 157283 unique_id port 157283 remote_ip 10.8.0.182 157286 username rezaei 157286 kill_reason Another user logged on this global unique id 157286 mac 157286 bytes_out 0 157286 bytes_in 0 157286 station_ip 5.119.53.117 157286 port 620 157286 unique_id port 157290 username barzegar 157290 mac 157290 bytes_out 0 157290 bytes_in 0 157290 station_ip 5.120.171.149 157290 port 639 157290 unique_id port 157290 remote_ip 10.8.0.234 157292 username rezaei 157292 kill_reason Another user logged on this global unique id 157292 mac 157292 bytes_out 0 157292 bytes_in 0 157292 station_ip 5.119.53.117 157292 port 620 157292 unique_id port 157295 username kordestani 157295 kill_reason Another user logged on this global unique id 157295 mac 157295 bytes_out 0 157295 bytes_in 0 157295 station_ip 151.235.79.169 157295 port 631 157295 unique_id port 157295 remote_ip 10.8.0.74 157300 username moradi 157300 kill_reason Another user logged on this global unique id 157300 mac 157300 bytes_out 0 157300 bytes_in 0 157300 station_ip 83.122.224.220 157300 port 317 157300 unique_id port 157300 remote_ip 10.8.1.202 157303 username hoorieh 157303 mac 157303 bytes_out 0 157303 bytes_in 0 157303 station_ip 5.120.82.203 157303 port 613 157303 unique_id port 157306 username pourshad 157306 kill_reason Another user logged on this global unique id 157306 mac 157287 username hashtadani4 157287 mac 157287 bytes_out 0 157287 bytes_in 0 157287 station_ip 83.122.245.120 157287 port 639 157287 unique_id port 157287 remote_ip 10.8.0.182 157296 username hashtadani4 157296 mac 157296 bytes_out 0 157296 bytes_in 0 157296 station_ip 83.122.245.120 157296 port 641 157296 unique_id port 157296 remote_ip 10.8.0.182 157299 username hoorieh 157299 kill_reason Another user logged on this global unique id 157299 mac 157299 bytes_out 0 157299 bytes_in 0 157299 station_ip 5.120.82.203 157299 port 613 157299 unique_id port 157299 remote_ip 10.8.0.158 157301 username rezaei 157301 kill_reason Another user logged on this global unique id 157301 mac 157301 bytes_out 0 157301 bytes_in 0 157301 station_ip 5.119.53.117 157301 port 620 157301 unique_id port 157304 username barzegar 157304 mac 157304 bytes_out 0 157304 bytes_in 0 157304 station_ip 5.120.171.149 157304 port 633 157304 unique_id port 157304 remote_ip 10.8.0.234 157305 username jamali 157305 kill_reason Another user logged on this global unique id 157305 mac 157305 bytes_out 0 157305 bytes_in 0 157305 station_ip 5.119.88.219 157305 port 638 157305 unique_id port 157307 username hashtadani4 157307 mac 157307 bytes_out 0 157307 bytes_in 0 157307 station_ip 83.122.245.120 157307 port 613 157307 unique_id port 157307 remote_ip 10.8.0.182 157315 username hashtadani4 157315 mac 157315 bytes_out 0 157315 bytes_in 0 157315 station_ip 83.122.245.120 157315 port 620 157315 unique_id port 157315 remote_ip 10.8.0.182 157323 username hashtadani4 157323 mac 157323 bytes_out 1644 157323 bytes_in 4054 157323 station_ip 83.122.245.120 157323 port 633 157323 unique_id port 157323 remote_ip 10.8.0.182 157324 username barzegar 157324 mac 157324 bytes_out 0 157324 bytes_in 0 157324 station_ip 5.120.171.149 157324 port 317 157324 unique_id port 157324 remote_ip 10.8.1.174 157326 username hadibarzegar 157326 kill_reason Another user logged on this global unique id 157326 mac 157326 bytes_out 0 157326 bytes_in 0 157326 station_ip 37.129.158.148 157326 port 640 157326 unique_id port 157328 username hashtadani4 157328 mac 157328 bytes_out 0 157328 bytes_in 0 157328 station_ip 83.122.245.120 157328 port 317 157328 unique_id port 157328 remote_ip 10.8.1.142 157330 username hadibarzegar 157330 kill_reason Another user logged on this global unique id 157330 mac 157330 bytes_out 0 157330 bytes_in 0 157330 station_ip 37.129.158.148 157330 port 640 157330 unique_id port 157331 username hashtadani4 157331 mac 157331 bytes_out 0 157331 bytes_in 0 157331 station_ip 83.122.245.120 157331 port 609 157331 unique_id port 157331 remote_ip 10.8.0.182 157333 username hadibarzegar 157333 kill_reason Another user logged on this global unique id 157333 mac 157333 bytes_out 0 157333 bytes_in 0 157333 station_ip 37.129.158.148 157333 port 640 157333 unique_id port 157334 username hashtadani4 157334 mac 157334 bytes_out 0 157334 bytes_in 0 157334 station_ip 83.122.245.120 157334 port 609 157334 unique_id port 157334 remote_ip 10.8.0.182 157340 username hashtadani4 157340 mac 157340 bytes_out 0 157340 bytes_in 0 157340 station_ip 83.122.245.120 157340 port 633 157340 unique_id port 157340 remote_ip 10.8.0.182 157343 username hashtadani4 157343 mac 157343 bytes_out 0 157343 bytes_in 0 157343 station_ip 83.122.245.120 157343 port 633 157343 unique_id port 157343 remote_ip 10.8.0.182 157348 username hashtadani4 157348 mac 157348 bytes_out 0 157348 bytes_in 0 157348 station_ip 83.122.245.120 157288 unique_id port 157288 remote_ip 10.8.0.154 157289 username farhad2 157289 mac 157289 bytes_out 0 157289 bytes_in 0 157289 station_ip 5.119.111.2 157289 port 613 157289 unique_id port 157289 remote_ip 10.8.0.190 157291 username tahmasebi 157291 mac 157291 bytes_out 0 157291 bytes_in 0 157291 station_ip 77.42.112.59 157291 port 324 157291 unique_id port 157291 remote_ip 10.8.1.90 157293 username hashtadani4 157293 mac 157293 bytes_out 2005 157293 bytes_in 4441 157293 station_ip 83.122.245.120 157293 port 613 157293 unique_id port 157293 remote_ip 10.8.0.182 157294 username jamali 157294 kill_reason Another user logged on this global unique id 157294 mac 157294 bytes_out 0 157294 bytes_in 0 157294 station_ip 5.119.88.219 157294 port 638 157294 unique_id port 157297 username mosi 157297 mac 157297 bytes_out 0 157297 bytes_in 0 157297 station_ip 151.235.89.191 157297 port 633 157297 unique_id port 157298 username hadibarzegar 157298 kill_reason Another user logged on this global unique id 157298 mac 157298 bytes_out 0 157298 bytes_in 0 157298 station_ip 37.129.158.148 157298 port 640 157298 unique_id port 157302 username hashtadani4 157302 mac 157302 bytes_out 0 157302 bytes_in 0 157302 station_ip 83.122.245.120 157302 port 641 157302 unique_id port 157302 remote_ip 10.8.0.182 157308 username farhad2 157308 mac 157308 bytes_out 0 157308 bytes_in 0 157308 station_ip 5.119.111.2 157308 port 325 157308 unique_id port 157308 remote_ip 10.8.1.222 157311 username fezealinaghi 157311 mac 157311 bytes_out 0 157311 bytes_in 0 157311 station_ip 37.129.37.114 157311 port 324 157311 unique_id port 157311 remote_ip 10.8.1.162 157312 username hadibarzegar 157312 kill_reason Another user logged on this global unique id 157312 mac 157312 bytes_out 0 157312 bytes_in 0 157312 station_ip 37.129.158.148 157312 port 640 157312 unique_id port 157313 username rezaei 157313 mac 157313 bytes_out 0 157313 bytes_in 0 157313 station_ip 5.119.53.117 157313 port 620 157313 unique_id port 157314 username jamali 157314 mac 157314 bytes_out 0 157314 bytes_in 0 157314 station_ip 5.119.88.219 157314 port 638 157314 unique_id port 157316 username barzegar 157316 mac 157316 bytes_out 0 157316 bytes_in 0 157316 station_ip 5.120.171.149 157316 port 326 157316 unique_id port 157316 remote_ip 10.8.1.174 157319 username hadibarzegar 157319 kill_reason Another user logged on this global unique id 157319 mac 157319 bytes_out 0 157319 bytes_in 0 157319 station_ip 37.129.158.148 157319 port 640 157319 unique_id port 157320 username hashtadani4 157320 mac 157320 bytes_out 0 157320 bytes_in 0 157320 station_ip 83.122.245.120 157320 port 620 157320 unique_id port 157320 remote_ip 10.8.0.182 157322 username tahmasebi 157322 kill_reason Maximum check online fails reached 157322 mac 157322 bytes_out 0 157322 bytes_in 0 157322 station_ip 77.42.112.59 157322 port 620 157322 unique_id port 157325 username hamidsalari 157325 mac 157325 bytes_out 0 157325 bytes_in 0 157325 station_ip 5.119.57.112 157325 port 609 157325 unique_id port 157327 username tahmasebi 157327 mac 157327 bytes_out 0 157327 bytes_in 0 157327 station_ip 77.42.112.59 157327 port 326 157327 unique_id port 157327 remote_ip 10.8.1.90 157336 username hashtadani4 157336 mac 157336 bytes_out 0 157336 bytes_in 0 157336 station_ip 83.122.245.120 157336 port 631 157336 unique_id port 157336 remote_ip 10.8.0.182 157338 username farhad2 157338 kill_reason Another user logged on this global unique id 157306 bytes_out 0 157306 bytes_in 0 157306 station_ip 5.120.128.181 157306 port 639 157306 unique_id port 157306 remote_ip 10.8.0.18 157309 username pourshad 157309 kill_reason Another user logged on this global unique id 157309 mac 157309 bytes_out 0 157309 bytes_in 0 157309 station_ip 5.120.128.181 157309 port 639 157309 unique_id port 157310 username milan 157310 kill_reason Another user logged on this global unique id 157310 mac 157310 bytes_out 0 157310 bytes_in 0 157310 station_ip 5.119.238.71 157310 port 632 157310 unique_id port 157317 username pourshad 157317 kill_reason Another user logged on this global unique id 157317 mac 157317 bytes_out 0 157317 bytes_in 0 157317 station_ip 5.120.128.181 157317 port 639 157317 unique_id port 157318 username hashtadani4 157318 mac 157318 bytes_out 0 157318 bytes_in 0 157318 station_ip 83.122.245.120 157318 port 620 157318 unique_id port 157318 remote_ip 10.8.0.182 157321 username moradi 157321 mac 157321 bytes_out 0 157321 bytes_in 0 157321 station_ip 83.122.224.220 157321 port 317 157321 unique_id port 157329 username hashtadani4 157329 mac 157329 bytes_out 0 157329 bytes_in 0 157329 station_ip 83.122.245.120 157329 port 609 157329 unique_id port 157329 remote_ip 10.8.0.182 157332 username barzegar 157332 mac 157332 bytes_out 0 157332 bytes_in 0 157332 station_ip 5.120.171.149 157332 port 317 157332 unique_id port 157332 remote_ip 10.8.1.174 157335 username kordestani 157335 mac 157335 bytes_out 0 157335 bytes_in 0 157335 station_ip 151.235.79.169 157335 port 631 157335 unique_id port 157337 username barzegar 157337 mac 157337 bytes_out 0 157337 bytes_in 0 157337 station_ip 5.120.171.149 157337 port 317 157337 unique_id port 157337 remote_ip 10.8.1.174 157341 username hamidsalari 157341 mac 157341 bytes_out 0 157341 bytes_in 0 157341 station_ip 5.120.188.160 157341 port 631 157341 unique_id port 157341 remote_ip 10.8.0.222 157342 username barzegar 157342 mac 157342 bytes_out 0 157342 bytes_in 0 157342 station_ip 5.120.171.149 157342 port 317 157342 unique_id port 157342 remote_ip 10.8.1.174 157344 username hadibarzegar 157344 kill_reason Another user logged on this global unique id 157344 mac 157344 bytes_out 0 157344 bytes_in 0 157344 station_ip 37.129.158.148 157344 port 640 157344 unique_id port 157346 username hashtadani4 157346 mac 157346 bytes_out 0 157346 bytes_in 0 157346 station_ip 83.122.245.120 157346 port 633 157346 unique_id port 157346 remote_ip 10.8.0.182 157347 username barzegar 157347 mac 157347 bytes_out 0 157347 bytes_in 0 157347 station_ip 5.120.171.149 157347 port 317 157347 unique_id port 157347 remote_ip 10.8.1.174 157352 username hadibarzegar 157352 kill_reason Another user logged on this global unique id 157352 mac 157352 bytes_out 0 157352 bytes_in 0 157352 station_ip 37.129.158.148 157352 port 640 157352 unique_id port 157353 username hashtadani4 157353 mac 157353 bytes_out 0 157353 bytes_in 0 157353 station_ip 83.122.245.120 157353 port 633 157353 unique_id port 157353 remote_ip 10.8.0.182 157357 username hadibarzegar 157357 kill_reason Another user logged on this global unique id 157357 mac 157357 bytes_out 0 157357 bytes_in 0 157357 station_ip 37.129.158.148 157357 port 640 157357 unique_id port 157358 username hashtadani4 157358 mac 157358 bytes_out 0 157358 bytes_in 0 157358 station_ip 83.122.245.120 157358 port 633 157358 unique_id port 157358 remote_ip 10.8.0.182 157359 username barzegar 157359 mac 157359 bytes_out 0 157338 mac 157338 bytes_out 0 157338 bytes_in 0 157338 station_ip 5.119.111.2 157338 port 325 157338 unique_id port 157338 remote_ip 10.8.1.222 157339 username hadibarzegar 157339 kill_reason Another user logged on this global unique id 157339 mac 157339 bytes_out 0 157339 bytes_in 0 157339 station_ip 37.129.158.148 157339 port 640 157339 unique_id port 157345 username farhad2 157345 mac 157345 bytes_out 0 157345 bytes_in 0 157345 station_ip 5.119.111.2 157345 port 325 157345 unique_id port 157349 username hadibarzegar 157349 kill_reason Another user logged on this global unique id 157349 mac 157349 bytes_out 0 157349 bytes_in 0 157349 station_ip 37.129.158.148 157349 port 640 157349 unique_id port 157356 username hashtadani4 157356 mac 157356 bytes_out 0 157356 bytes_in 0 157356 station_ip 83.122.245.120 157356 port 633 157356 unique_id port 157356 remote_ip 10.8.0.182 157361 username hashtadani4 157361 mac 157361 bytes_out 0 157361 bytes_in 0 157361 station_ip 83.122.245.120 157361 port 609 157361 unique_id port 157361 remote_ip 10.8.0.182 157370 username farhad2 157370 mac 157370 bytes_out 0 157370 bytes_in 0 157370 station_ip 5.119.111.2 157370 port 609 157370 unique_id port 157370 remote_ip 10.8.0.190 157371 username hashtadani4 157371 mac 157371 bytes_out 0 157371 bytes_in 0 157371 station_ip 83.122.245.120 157371 port 633 157371 unique_id port 157371 remote_ip 10.8.0.182 157372 username barzegar 157372 mac 157372 bytes_out 0 157372 bytes_in 0 157372 station_ip 5.120.171.149 157372 port 633 157372 unique_id port 157372 remote_ip 10.8.0.234 157374 username hashtadani4 157374 mac 157374 bytes_out 0 157374 bytes_in 0 157374 station_ip 83.122.245.120 157374 port 633 157374 unique_id port 157374 remote_ip 10.8.0.182 157377 username barzegar 157377 mac 157377 bytes_out 0 157377 bytes_in 0 157377 station_ip 5.120.171.149 157377 port 633 157377 unique_id port 157377 remote_ip 10.8.0.234 157378 username hashtadani4 157378 mac 157378 bytes_out 0 157378 bytes_in 0 157378 station_ip 83.122.245.120 157378 port 633 157378 unique_id port 157378 remote_ip 10.8.0.182 157380 username farhad2 157380 mac 157380 bytes_out 543430 157380 bytes_in 1632021 157380 station_ip 5.119.111.2 157380 port 324 157380 unique_id port 157380 remote_ip 10.8.1.222 157384 username hashtadani4 157384 mac 157384 bytes_out 0 157384 bytes_in 0 157384 station_ip 83.122.245.120 157384 port 325 157384 unique_id port 157384 remote_ip 10.8.1.142 157387 username hashtadani4 157387 mac 157387 bytes_out 0 157387 bytes_in 0 157387 station_ip 83.122.245.120 157387 port 633 157387 unique_id port 157387 remote_ip 10.8.0.182 157388 username sabaghnezhad 157388 mac 157388 bytes_out 948239 157388 bytes_in 3071009 157388 station_ip 83.123.192.211 157388 port 631 157388 unique_id port 157388 remote_ip 10.8.0.186 157389 username farhad2 157389 mac 157389 bytes_out 0 157389 bytes_in 0 157389 station_ip 5.119.111.2 157389 port 324 157389 unique_id port 157389 remote_ip 10.8.1.222 157396 username barzegar 157396 mac 157396 bytes_out 0 157396 bytes_in 0 157396 station_ip 5.120.171.149 157396 port 631 157396 unique_id port 157396 remote_ip 10.8.0.234 157397 username milan 157397 mac 157397 bytes_out 0 157397 bytes_in 0 157397 station_ip 5.119.238.71 157397 port 632 157397 unique_id port 157399 username hashtadani4 157399 mac 157399 bytes_out 0 157399 bytes_in 0 157348 port 633 157348 unique_id port 157348 remote_ip 10.8.0.182 157350 username fezealinaghi 157350 mac 157350 bytes_out 379320 157350 bytes_in 3290146 157350 station_ip 37.129.37.114 157350 port 324 157350 unique_id port 157350 remote_ip 10.8.1.162 157351 username hashtadani4 157351 mac 157351 bytes_out 0 157351 bytes_in 0 157351 station_ip 83.122.245.120 157351 port 633 157351 unique_id port 157351 remote_ip 10.8.0.182 157354 username barzegar 157354 mac 157354 bytes_out 0 157354 bytes_in 0 157354 station_ip 5.120.171.149 157354 port 324 157354 unique_id port 157354 remote_ip 10.8.1.174 157355 username hadibarzegar 157355 kill_reason Another user logged on this global unique id 157355 mac 157355 bytes_out 0 157355 bytes_in 0 157355 station_ip 37.129.158.148 157355 port 640 157355 unique_id port 157360 username mosi 157360 mac 157360 bytes_out 1468828 157360 bytes_in 3730788 157360 station_ip 151.235.89.191 157360 port 609 157360 unique_id port 157360 remote_ip 10.8.0.138 157363 username hadibarzegar 157363 mac 157363 bytes_out 0 157363 bytes_in 0 157363 station_ip 37.129.158.148 157363 port 640 157363 unique_id port 157364 username barzegar 157364 mac 157364 bytes_out 0 157364 bytes_in 0 157364 station_ip 5.120.171.149 157364 port 324 157364 unique_id port 157364 remote_ip 10.8.1.174 157365 username hashtadani4 157365 mac 157365 bytes_out 0 157365 bytes_in 0 157365 station_ip 83.122.245.120 157365 port 324 157365 unique_id port 157365 remote_ip 10.8.1.142 157366 username hashtadani4 157366 mac 157366 bytes_out 0 157366 bytes_in 0 157366 station_ip 83.122.245.120 157366 port 633 157366 unique_id port 157366 remote_ip 10.8.0.182 157368 username barzegar 157368 mac 157368 bytes_out 0 157368 bytes_in 0 157368 station_ip 5.120.171.149 157368 port 633 157368 unique_id port 157368 remote_ip 10.8.0.234 157375 username hashtadani4 157375 mac 157375 bytes_out 0 157375 bytes_in 0 157375 station_ip 83.122.245.120 157375 port 633 157375 unique_id port 157375 remote_ip 10.8.0.182 157379 username hashtadani4 157379 mac 157379 bytes_out 0 157379 bytes_in 0 157379 station_ip 83.122.245.120 157379 port 633 157379 unique_id port 157379 remote_ip 10.8.0.182 157381 username barzegar 157381 mac 157381 bytes_out 0 157381 bytes_in 0 157381 station_ip 5.120.171.149 157381 port 633 157381 unique_id port 157381 remote_ip 10.8.0.234 157382 username hashtadani4 157382 mac 157382 bytes_out 0 157382 bytes_in 0 157382 station_ip 83.122.245.120 157382 port 633 157382 unique_id port 157382 remote_ip 10.8.0.182 157385 username hashtadani4 157385 mac 157385 bytes_out 0 157385 bytes_in 0 157385 station_ip 83.122.245.120 157385 port 633 157385 unique_id port 157385 remote_ip 10.8.0.182 157390 username hashtadani4 157390 mac 157390 bytes_out 0 157390 bytes_in 0 157390 station_ip 83.122.245.120 157390 port 631 157390 unique_id port 157390 remote_ip 10.8.0.182 157391 username hashtadani4 157391 mac 157391 bytes_out 0 157391 bytes_in 0 157391 station_ip 83.122.245.120 157391 port 324 157391 unique_id port 157391 remote_ip 10.8.1.142 157395 username hashtadani4 157395 mac 157395 bytes_out 0 157395 bytes_in 0 157395 station_ip 83.122.245.120 157395 port 631 157395 unique_id port 157395 remote_ip 10.8.0.182 157400 username hashtadani4 157400 mac 157400 bytes_out 0 157400 bytes_in 0 157400 station_ip 83.122.245.120 157400 port 631 157400 unique_id port 157359 bytes_in 0 157359 station_ip 5.120.171.149 157359 port 324 157359 unique_id port 157359 remote_ip 10.8.1.174 157362 username hadibarzegar 157362 kill_reason Another user logged on this global unique id 157362 mac 157362 bytes_out 0 157362 bytes_in 0 157362 station_ip 37.129.158.148 157362 port 640 157362 unique_id port 157367 username hashtadani4 157367 mac 157367 bytes_out 0 157367 bytes_in 0 157367 station_ip 83.122.245.120 157367 port 633 157367 unique_id port 157367 remote_ip 10.8.0.182 157369 username hashtadani4 157369 mac 157369 bytes_out 0 157369 bytes_in 0 157369 station_ip 83.122.245.120 157369 port 633 157369 unique_id port 157369 remote_ip 10.8.0.182 157373 username hashtadani4 157373 mac 157373 bytes_out 0 157373 bytes_in 0 157373 station_ip 83.122.245.120 157373 port 633 157373 unique_id port 157373 remote_ip 10.8.0.182 157376 username farhad2 157376 mac 157376 bytes_out 2871631 157376 bytes_in 19817113 157376 station_ip 5.119.111.2 157376 port 324 157376 unique_id port 157376 remote_ip 10.8.1.222 157383 username hashtadani4 157383 mac 157383 bytes_out 0 157383 bytes_in 0 157383 station_ip 83.122.245.120 157383 port 633 157383 unique_id port 157383 remote_ip 10.8.0.182 157386 username barzegar 157386 mac 157386 bytes_out 0 157386 bytes_in 0 157386 station_ip 5.120.171.149 157386 port 633 157386 unique_id port 157386 remote_ip 10.8.0.234 157392 username hashtadani4 157392 mac 157392 bytes_out 0 157392 bytes_in 0 157392 station_ip 83.122.245.120 157392 port 631 157392 unique_id port 157392 remote_ip 10.8.0.182 157393 username hashtadani4 157393 mac 157393 bytes_out 0 157393 bytes_in 0 157393 station_ip 83.122.245.120 157393 port 631 157393 unique_id port 157393 remote_ip 10.8.0.182 157394 username barzegar 157394 mac 157394 bytes_out 0 157394 bytes_in 0 157394 station_ip 5.120.171.149 157394 port 631 157394 unique_id port 157394 remote_ip 10.8.0.234 157398 username zotaher 157398 mac 157398 bytes_out 862805 157398 bytes_in 3064178 157398 station_ip 37.129.9.198 157398 port 631 157398 unique_id port 157398 remote_ip 10.8.0.194 157401 username barzegar 157401 mac 157401 bytes_out 0 157401 bytes_in 0 157401 station_ip 5.120.171.149 157401 port 631 157401 unique_id port 157401 remote_ip 10.8.0.234 157404 username hashtadani4 157404 mac 157404 bytes_out 0 157404 bytes_in 0 157404 station_ip 83.122.245.120 157404 port 631 157404 unique_id port 157404 remote_ip 10.8.0.182 157410 username hosseine 157410 kill_reason Maximum check online fails reached 157410 mac 157410 bytes_out 0 157410 bytes_in 0 157410 station_ip 83.123.120.39 157410 port 610 157410 unique_id port 157410 remote_ip 10.8.0.238 157411 username hashtadani4 157411 mac 157411 bytes_out 0 157411 bytes_in 0 157411 station_ip 83.122.245.120 157411 port 631 157411 unique_id port 157411 remote_ip 10.8.0.182 157412 username barzegar 157412 mac 157412 bytes_out 0 157412 bytes_in 0 157412 station_ip 5.120.171.149 157412 port 631 157412 unique_id port 157412 remote_ip 10.8.0.234 157419 username hashtadani4 157419 mac 157419 bytes_out 0 157419 bytes_in 0 157419 station_ip 83.122.245.120 157419 port 324 157419 unique_id port 157419 remote_ip 10.8.1.142 157421 username hashtadani4 157421 mac 157421 bytes_out 0 157421 bytes_in 0 157421 station_ip 83.122.245.120 157421 port 324 157421 unique_id port 157421 remote_ip 10.8.1.142 157423 username hashtadani4 157423 mac 157399 station_ip 83.122.245.120 157399 port 631 157399 unique_id port 157399 remote_ip 10.8.0.182 157402 username barzegar 157402 mac 157402 bytes_out 0 157402 bytes_in 0 157402 station_ip 5.120.171.149 157402 port 631 157402 unique_id port 157402 remote_ip 10.8.0.234 157405 username hashtadani4 157405 mac 157405 bytes_out 0 157405 bytes_in 0 157405 station_ip 83.122.245.120 157405 port 632 157405 unique_id port 157405 remote_ip 10.8.0.182 157408 username hashtadani4 157408 mac 157408 bytes_out 0 157408 bytes_in 0 157408 station_ip 83.122.245.120 157408 port 631 157408 unique_id port 157408 remote_ip 10.8.0.182 157409 username barzegar 157409 mac 157409 bytes_out 0 157409 bytes_in 0 157409 station_ip 5.120.171.149 157409 port 631 157409 unique_id port 157409 remote_ip 10.8.0.234 157413 username hashtadani4 157413 mac 157413 bytes_out 0 157413 bytes_in 0 157413 station_ip 83.122.245.120 157413 port 631 157413 unique_id port 157413 remote_ip 10.8.0.182 157414 username barzegar 157414 mac 157414 bytes_out 0 157414 bytes_in 0 157414 station_ip 5.120.171.149 157414 port 631 157414 unique_id port 157414 remote_ip 10.8.0.234 157423 bytes_out 0 157423 bytes_in 0 157423 station_ip 83.122.245.120 157423 port 631 157423 unique_id port 157423 remote_ip 10.8.0.182 157424 username hashtadani4 157424 mac 157424 bytes_out 0 157424 bytes_in 0 157424 station_ip 83.122.245.120 157424 port 324 157424 unique_id port 157424 remote_ip 10.8.1.142 157426 username barzegar 157426 mac 157426 bytes_out 0 157426 bytes_in 0 157426 station_ip 5.120.171.149 157426 port 631 157426 unique_id port 157426 remote_ip 10.8.0.234 157427 username hashtadani4 157427 mac 157427 bytes_out 115395 157427 bytes_in 783073 157427 station_ip 83.122.245.120 157427 port 324 157427 unique_id port 157427 remote_ip 10.8.1.142 157428 username hashtadani4 157428 mac 157428 bytes_out 0 157428 bytes_in 0 157428 station_ip 83.122.245.120 157428 port 631 157428 unique_id port 157428 remote_ip 10.8.0.182 157429 username hashtadani4 157429 mac 157429 bytes_out 0 157429 bytes_in 0 157429 station_ip 83.122.245.120 157429 port 631 157429 unique_id port 157429 remote_ip 10.8.0.182 157430 username barzegar 157430 mac 157430 bytes_out 0 157430 bytes_in 0 157430 station_ip 5.120.171.149 157430 port 632 157430 unique_id port 157430 remote_ip 10.8.0.234 157431 username hashtadani4 157431 kill_reason Another user logged on this global unique id 157431 mac 157431 bytes_out 0 157431 bytes_in 0 157431 station_ip 83.122.245.120 157431 port 631 157431 unique_id port 157431 remote_ip 10.8.0.182 157433 username hashtadani4 157433 mac 157433 bytes_out 0 157433 bytes_in 0 157433 station_ip 83.122.245.120 157433 port 631 157433 unique_id port 157433 remote_ip 10.8.0.182 157434 username hashtadani4 157434 mac 157434 bytes_out 0 157434 bytes_in 0 157434 station_ip 83.122.245.120 157434 port 631 157434 unique_id port 157434 remote_ip 10.8.0.182 157435 username barzegar 157435 mac 157435 bytes_out 0 157435 bytes_in 0 157435 station_ip 5.120.171.149 157435 port 324 157435 unique_id port 157435 remote_ip 10.8.1.174 157436 username aminvpn 157436 mac 157436 bytes_out 0 157436 bytes_in 0 157436 station_ip 5.120.171.75 157436 port 323 157436 unique_id port 157436 remote_ip 10.8.1.6 157438 username hashtadani4 157438 mac 157438 bytes_out 0 157438 bytes_in 0 157438 station_ip 83.122.245.120 157438 port 631 157400 remote_ip 10.8.0.182 157403 username hashtadani4 157403 mac 157403 bytes_out 0 157403 bytes_in 0 157403 station_ip 83.122.245.120 157403 port 631 157403 unique_id port 157403 remote_ip 10.8.0.182 157406 username barzegar 157406 mac 157406 bytes_out 0 157406 bytes_in 0 157406 station_ip 5.120.171.149 157406 port 631 157406 unique_id port 157406 remote_ip 10.8.0.234 157407 username hashtadani4 157407 mac 157407 bytes_out 0 157407 bytes_in 0 157407 station_ip 83.122.245.120 157407 port 631 157407 unique_id port 157407 remote_ip 10.8.0.182 157415 username hashtadani4 157415 mac 157415 bytes_out 0 157415 bytes_in 0 157415 station_ip 83.122.245.120 157415 port 631 157415 unique_id port 157415 remote_ip 10.8.0.182 157416 username hashtadani4 157416 mac 157416 bytes_out 0 157416 bytes_in 0 157416 station_ip 83.122.245.120 157416 port 631 157416 unique_id port 157416 remote_ip 10.8.0.182 157417 username barzegar 157417 mac 157417 bytes_out 0 157417 bytes_in 0 157417 station_ip 5.120.171.149 157417 port 631 157417 unique_id port 157417 remote_ip 10.8.0.234 157418 username hashtadani4 157418 mac 157418 bytes_out 0 157418 bytes_in 0 157418 station_ip 83.122.245.120 157418 port 324 157418 unique_id port 157418 remote_ip 10.8.1.142 157420 username hashtadani4 157420 mac 157420 bytes_out 0 157420 bytes_in 0 157420 station_ip 83.122.245.120 157420 port 631 157420 unique_id port 157420 remote_ip 10.8.0.182 157422 username hashtadani4 157422 mac 157422 bytes_out 0 157422 bytes_in 0 157422 station_ip 83.122.245.120 157422 port 631 157422 unique_id port 157422 remote_ip 10.8.0.182 157425 username hashtadani4 157425 mac 157425 bytes_out 0 157425 bytes_in 0 157425 station_ip 83.122.245.120 157425 port 324 157425 unique_id port 157425 remote_ip 10.8.1.142 157432 username hashtadani4 157432 mac 157432 bytes_out 0 157432 bytes_in 0 157432 station_ip 83.122.245.120 157432 port 631 157432 unique_id port 157437 username hashtadani4 157437 mac 157437 bytes_out 0 157437 bytes_in 0 157437 station_ip 83.122.245.120 157437 port 631 157437 unique_id port 157437 remote_ip 10.8.0.182 157438 unique_id port 157438 remote_ip 10.8.0.182 157439 username barzegar 157439 mac 157439 bytes_out 0 157439 bytes_in 0 157439 station_ip 5.120.171.149 157439 port 324 157439 unique_id port 157439 remote_ip 10.8.1.174 157440 username hashtadani4 157440 mac 157440 bytes_out 0 157440 bytes_in 0 157440 station_ip 83.122.245.120 157440 port 631 157440 unique_id port 157440 remote_ip 10.8.0.182 157441 username hashtadani4 157441 mac 157441 bytes_out 0 157441 bytes_in 0 157441 station_ip 83.122.245.120 157441 port 632 157441 unique_id port 157441 remote_ip 10.8.0.182 157442 username barzegar 157442 mac 157442 bytes_out 0 157442 bytes_in 0 157442 station_ip 5.120.171.149 157442 port 324 157442 unique_id port 157442 remote_ip 10.8.1.174 157443 username hashtadani4 157443 mac 157443 bytes_out 0 157443 bytes_in 0 157443 station_ip 83.122.245.120 157443 port 632 157443 unique_id port 157443 remote_ip 10.8.0.182 157444 username kalantary 157444 mac 157444 bytes_out 0 157444 bytes_in 0 157444 station_ip 113.203.46.29 157444 port 631 157444 unique_id port 157444 remote_ip 10.8.0.98 157445 username barzegar 157445 mac 157445 bytes_out 0 157445 bytes_in 0 157445 station_ip 5.120.171.149 157445 port 324 157445 unique_id port 157445 remote_ip 10.8.1.174 157446 username hashtadani4 157446 mac 157446 bytes_out 0 157446 bytes_in 0 157446 station_ip 83.122.245.120 157446 port 631 157446 unique_id port 157446 remote_ip 10.8.0.182 157453 username barzegar 157453 mac 157453 bytes_out 0 157453 bytes_in 0 157453 station_ip 5.120.171.149 157453 port 324 157453 unique_id port 157453 remote_ip 10.8.1.174 157456 username pourshad 157456 mac 157456 bytes_out 0 157456 bytes_in 0 157456 station_ip 5.120.128.181 157456 port 639 157456 unique_id port 157463 username aminvpn 157463 mac 157463 bytes_out 2699969 157463 bytes_in 34141706 157463 station_ip 5.119.64.113 157463 port 631 157463 unique_id port 157463 remote_ip 10.8.0.14 157464 username pourshad 157464 mac 157464 bytes_out 0 157464 bytes_in 0 157464 station_ip 5.120.128.181 157464 port 325 157464 unique_id port 157464 remote_ip 10.8.1.154 157466 username hashtadani4 157466 mac 157466 bytes_out 0 157466 bytes_in 0 157466 station_ip 83.122.245.120 157466 port 631 157466 unique_id port 157466 remote_ip 10.8.0.182 157467 username hamidsalari 157467 mac 157467 bytes_out 32854 157467 bytes_in 94754 157467 station_ip 5.120.188.160 157467 port 631 157467 unique_id port 157467 remote_ip 10.8.0.222 157469 username barzegar 157469 mac 157469 bytes_out 0 157469 bytes_in 0 157469 station_ip 5.120.171.149 157469 port 631 157469 unique_id port 157469 remote_ip 10.8.0.234 157470 username hashtadani4 157470 mac 157470 bytes_out 0 157470 bytes_in 0 157470 station_ip 83.122.245.120 157470 port 631 157470 unique_id port 157470 remote_ip 10.8.0.182 157474 username hashtadani4 157474 mac 157474 bytes_out 0 157474 bytes_in 0 157474 station_ip 83.122.245.120 157474 port 631 157474 unique_id port 157474 remote_ip 10.8.0.182 157478 username barzegar 157478 mac 157478 bytes_out 0 157478 bytes_in 0 157478 station_ip 5.120.171.149 157478 port 632 157478 unique_id port 157478 remote_ip 10.8.0.234 157482 username hashtadani4 157482 mac 157482 bytes_out 0 157482 bytes_in 0 157482 station_ip 83.122.245.120 157482 port 638 157482 unique_id port 157482 remote_ip 10.8.0.182 157488 username barzegar 157488 mac 157488 bytes_out 0 157488 bytes_in 0 157488 station_ip 5.120.171.149 157488 port 632 157488 unique_id port 157488 remote_ip 10.8.0.234 157489 username sekonji3 157489 mac 157489 bytes_out 0 157489 bytes_in 0 157489 station_ip 83.122.127.213 157489 port 632 157489 unique_id port 157489 remote_ip 10.8.0.6 157492 username hashtadani4 157492 mac 157492 bytes_out 0 157492 bytes_in 0 157492 station_ip 83.122.245.120 157492 port 632 157492 unique_id port 157492 remote_ip 10.8.0.182 157498 username barzegar 157498 mac 157498 bytes_out 0 157498 bytes_in 0 157498 station_ip 5.120.171.149 157498 port 324 157498 unique_id port 157498 remote_ip 10.8.1.174 157500 username barzegar 157500 mac 157500 bytes_out 0 157500 bytes_in 0 157500 station_ip 5.120.171.149 157500 port 324 157500 unique_id port 157500 remote_ip 10.8.1.174 157504 username sekonji3 157504 mac 157504 bytes_out 0 157504 bytes_in 0 157504 station_ip 83.122.127.213 157504 port 632 157504 unique_id port 157504 remote_ip 10.8.0.6 157505 username sekonji3 157505 mac 157505 bytes_out 0 157505 bytes_in 0 157505 station_ip 83.122.127.213 157505 port 632 157505 unique_id port 157505 remote_ip 10.8.0.6 157507 username sekonji3 157507 mac 157507 bytes_out 0 157507 bytes_in 0 157447 username hashtadani4 157447 mac 157447 bytes_out 0 157447 bytes_in 0 157447 station_ip 83.122.245.120 157447 port 631 157447 unique_id port 157447 remote_ip 10.8.0.182 157449 username barzegar 157449 mac 157449 bytes_out 0 157449 bytes_in 0 157449 station_ip 5.120.171.149 157449 port 324 157449 unique_id port 157449 remote_ip 10.8.1.174 157450 username hashtadani4 157450 mac 157450 bytes_out 0 157450 bytes_in 0 157450 station_ip 83.122.245.120 157450 port 631 157450 unique_id port 157450 remote_ip 10.8.0.182 157452 username hashtadani4 157452 mac 157452 bytes_out 0 157452 bytes_in 0 157452 station_ip 83.122.245.120 157452 port 631 157452 unique_id port 157452 remote_ip 10.8.0.182 157454 username hashtadani4 157454 mac 157454 bytes_out 0 157454 bytes_in 0 157454 station_ip 83.122.245.120 157454 port 632 157454 unique_id port 157454 remote_ip 10.8.0.182 157458 username mosi 157458 kill_reason Another user logged on this global unique id 157458 mac 157458 bytes_out 0 157458 bytes_in 0 157458 station_ip 151.235.89.191 157458 port 609 157458 unique_id port 157458 remote_ip 10.8.0.138 157459 username pourshad 157459 mac 157459 bytes_out 52264 157459 bytes_in 94303 157459 station_ip 5.120.128.181 157459 port 632 157459 unique_id port 157459 remote_ip 10.8.0.18 157460 username hashtadani4 157460 mac 157460 bytes_out 0 157460 bytes_in 0 157460 station_ip 83.122.245.120 157460 port 632 157460 unique_id port 157460 remote_ip 10.8.0.182 157462 username barzegar 157462 mac 157462 bytes_out 0 157462 bytes_in 0 157462 station_ip 5.120.171.149 157462 port 324 157462 unique_id port 157462 remote_ip 10.8.1.174 157465 username hashtadani4 157465 mac 157465 bytes_out 0 157465 bytes_in 0 157465 station_ip 83.122.245.120 157465 port 631 157465 unique_id port 157465 remote_ip 10.8.0.182 157468 username hashtadani4 157468 mac 157468 bytes_out 0 157468 bytes_in 0 157468 station_ip 83.122.245.120 157468 port 631 157468 unique_id port 157468 remote_ip 10.8.0.182 157472 username aminvpn 157472 kill_reason Maximum check online fails reached 157472 mac 157472 bytes_out 0 157472 bytes_in 0 157472 station_ip 5.120.171.75 157472 port 323 157472 unique_id port 157472 remote_ip 10.8.1.6 157473 username barzegar 157473 mac 157473 bytes_out 0 157473 bytes_in 0 157473 station_ip 5.120.171.149 157473 port 631 157473 unique_id port 157473 remote_ip 10.8.0.234 157475 username barzegar 157475 mac 157475 bytes_out 0 157475 bytes_in 0 157475 station_ip 5.120.171.149 157475 port 631 157475 unique_id port 157475 remote_ip 10.8.0.234 157479 username hashtadani4 157479 mac 157479 bytes_out 0 157479 bytes_in 0 157479 station_ip 83.122.245.120 157479 port 632 157479 unique_id port 157479 remote_ip 10.8.0.182 157481 username pourshad 157481 mac 157481 bytes_out 3153 157481 bytes_in 7510 157481 station_ip 5.120.128.181 157481 port 324 157481 unique_id port 157481 remote_ip 10.8.1.154 157484 username barzegar 157484 mac 157484 bytes_out 0 157484 bytes_in 0 157484 station_ip 5.120.171.149 157484 port 632 157484 unique_id port 157484 remote_ip 10.8.0.234 157486 username hashtadani4 157486 mac 157486 bytes_out 0 157486 bytes_in 0 157486 station_ip 83.122.245.120 157486 port 632 157486 unique_id port 157486 remote_ip 10.8.0.182 157487 username kalantary 157487 mac 157487 bytes_out 951151 157487 bytes_in 4119087 157487 station_ip 113.203.31.17 157487 port 631 157487 unique_id port 157448 username hashtadani4 157448 mac 157448 bytes_out 0 157448 bytes_in 0 157448 station_ip 83.122.245.120 157448 port 631 157448 unique_id port 157448 remote_ip 10.8.0.182 157451 username hashtadani4 157451 mac 157451 bytes_out 0 157451 bytes_in 0 157451 station_ip 83.122.245.120 157451 port 324 157451 unique_id port 157451 remote_ip 10.8.1.142 157455 username hashtadani4 157455 mac 157455 bytes_out 0 157455 bytes_in 0 157455 station_ip 83.122.245.120 157455 port 632 157455 unique_id port 157455 remote_ip 10.8.0.182 157457 username pourshad 157457 mac 157457 bytes_out 11891 157457 bytes_in 22208 157457 station_ip 5.120.128.181 157457 port 632 157457 unique_id port 157457 remote_ip 10.8.0.18 157461 username pourshad 157461 mac 157461 bytes_out 29824 157461 bytes_in 52176 157461 station_ip 5.120.128.181 157461 port 633 157461 unique_id port 157461 remote_ip 10.8.0.18 157471 username hashtadani4 157471 mac 157471 bytes_out 0 157471 bytes_in 0 157471 station_ip 83.122.245.120 157471 port 631 157471 unique_id port 157471 remote_ip 10.8.0.182 157476 username meysam 157476 mac 157476 bytes_out 0 157476 bytes_in 0 157476 station_ip 5.119.173.80 157476 port 325 157476 unique_id port 157476 remote_ip 10.8.1.34 157477 username hashtadani4 157477 mac 157477 bytes_out 0 157477 bytes_in 0 157477 station_ip 83.122.245.120 157477 port 632 157477 unique_id port 157477 remote_ip 10.8.0.182 157480 username pourshad 157480 mac 157480 bytes_out 0 157480 bytes_in 0 157480 station_ip 5.120.128.181 157480 port 324 157480 unique_id port 157480 remote_ip 10.8.1.154 157483 username sekonji3 157483 mac 157483 bytes_out 379424 157483 bytes_in 7603684 157483 station_ip 83.122.127.213 157483 port 632 157483 unique_id port 157483 remote_ip 10.8.0.6 157485 username sekonji3 157485 mac 157485 bytes_out 0 157485 bytes_in 0 157485 station_ip 83.122.127.213 157485 port 632 157485 unique_id port 157485 remote_ip 10.8.0.6 157490 username hashtadani4 157490 mac 157490 bytes_out 0 157490 bytes_in 0 157490 station_ip 83.122.245.120 157490 port 632 157490 unique_id port 157490 remote_ip 10.8.0.182 157491 username sekonji3 157491 mac 157491 bytes_out 0 157491 bytes_in 0 157491 station_ip 83.122.127.213 157491 port 632 157491 unique_id port 157491 remote_ip 10.8.0.6 157494 username mosi 157494 mac 157494 bytes_out 0 157494 bytes_in 0 157494 station_ip 151.235.89.191 157494 port 609 157494 unique_id port 157495 username sekonji3 157495 mac 157495 bytes_out 0 157495 bytes_in 0 157495 station_ip 83.122.127.213 157495 port 609 157495 unique_id port 157495 remote_ip 10.8.0.6 157496 username hashtadani4 157496 mac 157496 bytes_out 0 157496 bytes_in 0 157496 station_ip 83.122.245.120 157496 port 631 157496 unique_id port 157496 remote_ip 10.8.0.182 157501 username sekonji3 157501 mac 157501 bytes_out 0 157501 bytes_in 0 157501 station_ip 83.122.127.213 157501 port 639 157501 unique_id port 157501 remote_ip 10.8.0.6 157502 username hashtadani4 157502 mac 157502 bytes_out 0 157502 bytes_in 0 157502 station_ip 83.122.245.120 157502 port 632 157502 unique_id port 157502 remote_ip 10.8.0.182 157506 username barzegar 157506 kill_reason Another user logged on this global unique id 157506 mac 157506 bytes_out 0 157506 bytes_in 0 157506 station_ip 5.120.171.149 157506 port 639 157506 unique_id port 157506 remote_ip 10.8.0.234 157509 username mosi 157509 mac 157487 remote_ip 10.8.0.98 157493 username kalantary 157493 mac 157493 bytes_out 0 157493 bytes_in 0 157493 station_ip 113.203.31.17 157493 port 631 157493 unique_id port 157493 remote_ip 10.8.0.98 157497 username sekonji3 157497 mac 157497 bytes_out 0 157497 bytes_in 0 157497 station_ip 83.122.127.213 157497 port 609 157497 unique_id port 157497 remote_ip 10.8.0.6 157499 username sekonji3 157499 mac 157499 bytes_out 0 157499 bytes_in 0 157499 station_ip 83.122.127.213 157499 port 632 157499 unique_id port 157499 remote_ip 10.8.0.6 157503 username sekonji3 157503 mac 157503 bytes_out 0 157503 bytes_in 0 157503 station_ip 83.122.127.213 157503 port 640 157503 unique_id port 157503 remote_ip 10.8.0.6 157508 username kalantary 157508 mac 157508 bytes_out 1218488 157508 bytes_in 9005546 157508 station_ip 113.203.31.17 157508 port 609 157508 unique_id port 157508 remote_ip 10.8.0.98 157512 username tahmasebi 157512 mac 157512 bytes_out 0 157512 bytes_in 0 157512 station_ip 77.42.112.59 157512 port 324 157512 unique_id port 157512 remote_ip 10.8.1.90 157516 username barzegar 157516 kill_reason Another user logged on this global unique id 157516 mac 157516 bytes_out 0 157516 bytes_in 0 157516 station_ip 5.120.171.149 157516 port 639 157516 unique_id port 157523 username barzegar 157523 mac 157523 bytes_out 0 157523 bytes_in 0 157523 station_ip 5.120.171.149 157523 port 639 157523 unique_id port 157526 username hashtadani4 157526 mac 157526 bytes_out 0 157526 bytes_in 0 157526 station_ip 83.122.245.120 157526 port 631 157526 unique_id port 157526 remote_ip 10.8.0.182 157528 username hashtadani4 157528 mac 157528 bytes_out 0 157528 bytes_in 0 157528 station_ip 83.122.245.120 157528 port 632 157528 unique_id port 157528 remote_ip 10.8.0.182 157533 username hashtadani4 157533 mac 157533 bytes_out 0 157533 bytes_in 0 157533 station_ip 83.122.245.120 157533 port 631 157533 unique_id port 157533 remote_ip 10.8.0.182 157535 username sekonji3 157535 mac 157535 bytes_out 0 157535 bytes_in 0 157535 station_ip 83.122.127.213 157535 port 638 157535 unique_id port 157535 remote_ip 10.8.0.6 157536 username hashtadani4 157536 mac 157536 bytes_out 0 157536 bytes_in 0 157536 station_ip 83.122.245.120 157536 port 638 157536 unique_id port 157536 remote_ip 10.8.0.182 157539 username kalantary 157539 mac 157539 bytes_out 568549 157539 bytes_in 5978348 157539 station_ip 113.203.31.17 157539 port 632 157539 unique_id port 157539 remote_ip 10.8.0.98 157545 username hashtadani4 157545 mac 157545 bytes_out 0 157545 bytes_in 0 157545 station_ip 83.122.245.120 157545 port 609 157545 unique_id port 157545 remote_ip 10.8.0.182 157547 username hashtadani4 157547 mac 157547 bytes_out 0 157547 bytes_in 0 157547 station_ip 83.122.245.120 157547 port 632 157547 unique_id port 157547 remote_ip 10.8.0.182 157549 username sekonji3 157549 mac 157549 bytes_out 0 157549 bytes_in 0 157549 station_ip 83.122.127.213 157549 port 609 157549 unique_id port 157549 remote_ip 10.8.0.6 157558 username alipour 157558 mac 157558 bytes_out 0 157558 bytes_in 0 157558 station_ip 83.123.16.90 157558 port 598 157558 unique_id port 157562 username hashtadani4 157562 mac 157562 bytes_out 0 157562 bytes_in 0 157562 station_ip 83.122.245.120 157562 port 632 157562 unique_id port 157562 remote_ip 10.8.0.182 157565 username sekonji3 157565 mac 157565 bytes_out 0 157565 bytes_in 0 157507 station_ip 83.122.127.213 157507 port 632 157507 unique_id port 157507 remote_ip 10.8.0.6 157510 username hashtadani4 157510 mac 157510 bytes_out 0 157510 bytes_in 0 157510 station_ip 83.122.245.120 157510 port 609 157510 unique_id port 157510 remote_ip 10.8.0.182 157519 username sekonji3 157519 mac 157519 bytes_out 0 157519 bytes_in 0 157519 station_ip 83.122.127.213 157519 port 631 157519 unique_id port 157519 remote_ip 10.8.0.6 157520 username hashtadani4 157520 mac 157520 bytes_out 0 157520 bytes_in 0 157520 station_ip 83.122.245.120 157520 port 631 157520 unique_id port 157520 remote_ip 10.8.0.182 157524 username sekonji3 157524 mac 157524 bytes_out 0 157524 bytes_in 0 157524 station_ip 83.122.127.213 157524 port 631 157524 unique_id port 157524 remote_ip 10.8.0.6 157525 username hashtadani4 157525 mac 157525 bytes_out 0 157525 bytes_in 0 157525 station_ip 83.122.245.120 157525 port 631 157525 unique_id port 157525 remote_ip 10.8.0.182 157529 username mohammadjavad 157529 mac 157529 bytes_out 0 157529 bytes_in 0 157529 station_ip 37.129.3.194 157529 port 633 157529 unique_id port 157534 username barzegar 157534 mac 157534 bytes_out 5906 157534 bytes_in 8369 157534 station_ip 5.120.171.149 157534 port 324 157534 unique_id port 157534 remote_ip 10.8.1.174 157538 username forozandeh1 157538 mac 157538 bytes_out 1597532 157538 bytes_in 19045249 157538 station_ip 83.123.171.26 157538 port 609 157538 unique_id port 157538 remote_ip 10.8.0.130 157541 username hashtadani4 157541 mac 157541 bytes_out 0 157541 bytes_in 0 157541 station_ip 83.122.245.120 157541 port 609 157541 unique_id port 157541 remote_ip 10.8.0.182 157543 username hashtadani4 157543 mac 157543 bytes_out 0 157543 bytes_in 0 157543 station_ip 83.122.245.120 157543 port 609 157543 unique_id port 157543 remote_ip 10.8.0.182 157546 username moradi 157546 kill_reason Another user logged on this global unique id 157546 mac 157546 bytes_out 0 157546 bytes_in 0 157546 station_ip 83.122.188.32 157546 port 323 157546 unique_id port 157548 username barzegar 157548 mac 157548 bytes_out 0 157548 bytes_in 0 157548 station_ip 5.120.171.149 157548 port 609 157548 unique_id port 157548 remote_ip 10.8.0.234 157551 username hashtadani4 157551 mac 157551 bytes_out 0 157551 bytes_in 0 157551 station_ip 83.122.245.120 157551 port 324 157551 unique_id port 157551 remote_ip 10.8.1.142 157552 username hashtadani4 157552 mac 157552 bytes_out 0 157552 bytes_in 0 157552 station_ip 83.122.245.120 157552 port 609 157552 unique_id port 157552 remote_ip 10.8.0.182 157553 username jafari 157553 kill_reason Another user logged on this global unique id 157553 mac 157553 bytes_out 0 157553 bytes_in 0 157553 station_ip 37.156.155.122 157553 port 631 157553 unique_id port 157554 username pourshad 157554 mac 157554 bytes_out 68018 157554 bytes_in 779703 157554 station_ip 5.120.128.181 157554 port 633 157554 unique_id port 157554 remote_ip 10.8.0.18 157556 username tahmasebi 157556 mac 157556 bytes_out 1636 157556 bytes_in 4511 157556 station_ip 77.42.112.59 157556 port 632 157556 unique_id port 157556 remote_ip 10.8.0.42 157563 username hamidsalari 157563 kill_reason Another user logged on this global unique id 157563 mac 157563 bytes_out 0 157563 bytes_in 0 157563 station_ip 5.120.188.160 157563 port 609 157563 unique_id port 157563 remote_ip 10.8.0.222 157564 username hashtadani4 157564 mac 157564 bytes_out 0 157564 bytes_in 0 157509 bytes_out 9440 157509 bytes_in 9719 157509 station_ip 5.200.98.239 157509 port 631 157509 unique_id port 157509 remote_ip 10.8.0.138 157511 username sekonji3 157511 mac 157511 bytes_out 0 157511 bytes_in 0 157511 station_ip 83.122.127.213 157511 port 609 157511 unique_id port 157511 remote_ip 10.8.0.6 157513 username barzegar 157513 kill_reason Another user logged on this global unique id 157513 mac 157513 bytes_out 0 157513 bytes_in 0 157513 station_ip 5.120.171.149 157513 port 639 157513 unique_id port 157514 username sekonji3 157514 mac 157514 bytes_out 0 157514 bytes_in 0 157514 station_ip 83.122.127.213 157514 port 609 157514 unique_id port 157514 remote_ip 10.8.0.6 157515 username hashtadani4 157515 mac 157515 bytes_out 0 157515 bytes_in 0 157515 station_ip 83.122.245.120 157515 port 609 157515 unique_id port 157515 remote_ip 10.8.0.182 157517 username mohammadjavad 157517 kill_reason Another user logged on this global unique id 157517 mac 157517 bytes_out 0 157517 bytes_in 0 157517 station_ip 37.129.3.194 157517 port 633 157517 unique_id port 157517 remote_ip 10.8.0.142 157518 username tahmasebi 157518 mac 157518 bytes_out 0 157518 bytes_in 0 157518 station_ip 77.42.112.59 157518 port 631 157518 unique_id port 157518 remote_ip 10.8.0.42 157521 username moradi 157521 kill_reason Another user logged on this global unique id 157521 mac 157521 bytes_out 0 157521 bytes_in 0 157521 station_ip 83.122.188.32 157521 port 323 157521 unique_id port 157521 remote_ip 10.8.1.202 157522 username barzegar 157522 kill_reason Another user logged on this global unique id 157522 mac 157522 bytes_out 0 157522 bytes_in 0 157522 station_ip 5.120.171.149 157522 port 639 157522 unique_id port 157527 username kalantary 157527 mac 157527 bytes_out 1251905 157527 bytes_in 7468554 157527 station_ip 113.203.31.17 157527 port 609 157527 unique_id port 157527 remote_ip 10.8.0.98 157530 username barzegar 157530 mac 157530 bytes_out 3349 157530 bytes_in 4791 157530 station_ip 5.120.171.149 157530 port 631 157530 unique_id port 157530 remote_ip 10.8.0.234 157531 username hashtadani4 157531 mac 157531 bytes_out 0 157531 bytes_in 0 157531 station_ip 83.122.245.120 157531 port 631 157531 unique_id port 157531 remote_ip 10.8.0.182 157532 username pourshad 157532 mac 157532 bytes_out 638319 157532 bytes_in 4589688 157532 station_ip 5.120.128.181 157532 port 638 157532 unique_id port 157532 remote_ip 10.8.0.18 157537 username hashtadani4 157537 mac 157537 bytes_out 0 157537 bytes_in 0 157537 station_ip 83.122.245.120 157537 port 638 157537 unique_id port 157537 remote_ip 10.8.0.182 157540 username jafari 157540 kill_reason Another user logged on this global unique id 157540 mac 157540 bytes_out 0 157540 bytes_in 0 157540 station_ip 37.156.155.122 157540 port 631 157540 unique_id port 157540 remote_ip 10.8.0.242 157542 username sekonji3 157542 mac 157542 bytes_out 0 157542 bytes_in 0 157542 station_ip 83.122.127.213 157542 port 632 157542 unique_id port 157542 remote_ip 10.8.0.6 157544 username sekonji3 157544 mac 157544 bytes_out 0 157544 bytes_in 0 157544 station_ip 83.122.127.213 157544 port 632 157544 unique_id port 157544 remote_ip 10.8.0.6 157550 username hashtadani4 157550 mac 157550 bytes_out 0 157550 bytes_in 0 157550 station_ip 83.122.245.120 157550 port 324 157550 unique_id port 157550 remote_ip 10.8.1.142 157555 username sekonji3 157555 mac 157555 bytes_out 0 157555 bytes_in 0 157555 station_ip 83.122.127.213 157555 port 633 157555 unique_id port 157555 remote_ip 10.8.0.6 157557 username hashtadani4 157557 mac 157557 bytes_out 0 157557 bytes_in 0 157557 station_ip 83.122.245.120 157557 port 633 157557 unique_id port 157557 remote_ip 10.8.0.182 157559 username barzegar 157559 mac 157559 bytes_out 0 157559 bytes_in 0 157559 station_ip 5.120.171.149 157559 port 598 157559 unique_id port 157559 remote_ip 10.8.0.234 157560 username moradi 157560 kill_reason Another user logged on this global unique id 157560 mac 157560 bytes_out 0 157560 bytes_in 0 157560 station_ip 83.122.188.32 157560 port 323 157560 unique_id port 157561 username sekonji3 157561 mac 157561 bytes_out 0 157561 bytes_in 0 157561 station_ip 83.122.127.213 157561 port 598 157561 unique_id port 157561 remote_ip 10.8.0.6 157566 username hashtadani4 157566 mac 157566 bytes_out 0 157566 bytes_in 0 157566 station_ip 83.122.245.120 157566 port 598 157566 unique_id port 157566 remote_ip 10.8.0.182 157567 username moradi 157567 mac 157567 bytes_out 0 157567 bytes_in 0 157567 station_ip 83.122.188.32 157567 port 323 157567 unique_id port 157578 username sekonji3 157578 mac 157578 bytes_out 0 157578 bytes_in 0 157578 station_ip 83.122.127.213 157578 port 632 157578 unique_id port 157578 remote_ip 10.8.0.6 157580 username hashtadani4 157580 mac 157580 bytes_out 0 157580 bytes_in 0 157580 station_ip 83.122.245.120 157580 port 639 157580 unique_id port 157580 remote_ip 10.8.0.182 157585 username rahim 157585 mac 157585 bytes_out 13197015 157585 bytes_in 5180017 157585 station_ip 5.120.18.59 157585 port 598 157585 unique_id port 157585 remote_ip 10.8.0.50 157587 username pourshad 157587 mac 157587 bytes_out 0 157587 bytes_in 0 157587 station_ip 5.120.128.181 157587 port 323 157587 unique_id port 157587 remote_ip 10.8.1.154 157591 username barzegar 157591 mac 157591 bytes_out 0 157591 bytes_in 0 157591 station_ip 5.120.171.149 157591 port 324 157591 unique_id port 157591 remote_ip 10.8.1.174 157594 username hashtadani4 157594 mac 157594 bytes_out 0 157594 bytes_in 0 157594 station_ip 83.122.245.120 157594 port 598 157594 unique_id port 157594 remote_ip 10.8.0.182 157597 username pourshad 157597 mac 157597 bytes_out 0 157597 bytes_in 0 157597 station_ip 5.120.128.181 157597 port 323 157597 unique_id port 157597 remote_ip 10.8.1.154 157599 username hashtadani4 157599 mac 157599 bytes_out 0 157599 bytes_in 0 157599 station_ip 83.122.245.120 157599 port 633 157599 unique_id port 157599 remote_ip 10.8.0.182 157602 username hashtadani4 157602 mac 157602 bytes_out 2106 157602 bytes_in 4423 157602 station_ip 83.122.245.120 157602 port 598 157602 unique_id port 157602 remote_ip 10.8.0.182 157605 username kalantary 157605 mac 157605 bytes_out 827164 157605 bytes_in 8651422 157605 station_ip 113.203.88.129 157605 port 633 157605 unique_id port 157605 remote_ip 10.8.0.98 157606 username hashtadani4 157606 mac 157606 bytes_out 0 157606 bytes_in 0 157606 station_ip 83.122.245.120 157606 port 598 157606 unique_id port 157606 remote_ip 10.8.0.182 157608 username barzegar 157608 mac 157608 bytes_out 0 157608 bytes_in 0 157608 station_ip 5.120.171.149 157608 port 598 157608 unique_id port 157608 remote_ip 10.8.0.234 157609 username hashtadani4 157609 mac 157609 bytes_out 0 157609 bytes_in 0 157609 station_ip 83.122.245.120 157609 port 598 157609 unique_id port 157609 remote_ip 10.8.0.182 157610 username hashtadani4 157564 station_ip 83.122.245.120 157564 port 598 157564 unique_id port 157564 remote_ip 10.8.0.182 157568 username hashtadani4 157568 mac 157568 bytes_out 1644 157568 bytes_in 5129 157568 station_ip 83.122.245.120 157568 port 633 157568 unique_id port 157568 remote_ip 10.8.0.182 157569 username barzegar 157569 mac 157569 bytes_out 0 157569 bytes_in 0 157569 station_ip 5.120.171.149 157569 port 323 157569 unique_id port 157569 remote_ip 10.8.1.174 157571 username sekonji3 157571 mac 157571 bytes_out 0 157571 bytes_in 0 157571 station_ip 83.122.127.213 157571 port 638 157571 unique_id port 157571 remote_ip 10.8.0.6 157574 username tahmasebi 157574 mac 157574 bytes_out 0 157574 bytes_in 0 157574 station_ip 77.42.112.59 157574 port 323 157574 unique_id port 157574 remote_ip 10.8.1.90 157575 username sekonji3 157575 mac 157575 bytes_out 0 157575 bytes_in 0 157575 station_ip 83.122.127.213 157575 port 638 157575 unique_id port 157575 remote_ip 10.8.0.6 157577 username kalantary 157577 mac 157577 bytes_out 1413910 157577 bytes_in 16857550 157577 station_ip 113.203.38.173 157577 port 632 157577 unique_id port 157577 remote_ip 10.8.0.98 157581 username pourshad 157581 mac 157581 bytes_out 676720 157581 bytes_in 25521832 157581 station_ip 5.120.128.181 157581 port 633 157581 unique_id port 157581 remote_ip 10.8.0.18 157583 username barzegar 157583 mac 157583 bytes_out 0 157583 bytes_in 0 157583 station_ip 5.120.171.149 157583 port 324 157583 unique_id port 157583 remote_ip 10.8.1.174 157590 username forozandeh1 157590 mac 157590 bytes_out 488795 157590 bytes_in 3516205 157590 station_ip 113.203.37.0 157590 port 639 157590 unique_id port 157590 remote_ip 10.8.0.130 157592 username hashtadani4 157592 mac 157592 bytes_out 0 157592 bytes_in 0 157592 station_ip 83.122.245.120 157592 port 598 157592 unique_id port 157592 remote_ip 10.8.0.182 157593 username barzegar 157593 mac 157593 bytes_out 0 157593 bytes_in 0 157593 station_ip 5.120.171.149 157593 port 324 157593 unique_id port 157593 remote_ip 10.8.1.174 157596 username hashtadani4 157596 mac 157596 bytes_out 0 157596 bytes_in 0 157596 station_ip 83.122.245.120 157596 port 598 157596 unique_id port 157596 remote_ip 10.8.0.182 157598 username hashtadani4 157598 mac 157598 bytes_out 0 157598 bytes_in 0 157598 station_ip 83.122.245.120 157598 port 598 157598 unique_id port 157598 remote_ip 10.8.0.182 157603 username nilufarrajaei 157603 mac 157603 bytes_out 1356561 157603 bytes_in 16945702 157603 station_ip 83.123.242.117 157603 port 632 157603 unique_id port 157603 remote_ip 10.8.0.206 157607 username hashtadani4 157607 mac 157607 bytes_out 0 157607 bytes_in 0 157607 station_ip 83.122.245.120 157607 port 598 157607 unique_id port 157607 remote_ip 10.8.0.182 157617 username hashtadani4 157617 mac 157617 bytes_out 0 157617 bytes_in 0 157617 station_ip 83.122.245.120 157617 port 598 157617 unique_id port 157617 remote_ip 10.8.0.182 157618 username hashtadani4 157618 mac 157618 bytes_out 0 157618 bytes_in 0 157618 station_ip 83.122.245.120 157618 port 598 157618 unique_id port 157618 remote_ip 10.8.0.182 157619 username hashtadani4 157619 mac 157619 bytes_out 0 157619 bytes_in 0 157619 station_ip 83.122.245.120 157619 port 598 157619 unique_id port 157619 remote_ip 10.8.0.182 157622 username barzegar 157622 mac 157622 bytes_out 0 157622 bytes_in 0 157622 station_ip 5.120.171.149 157565 station_ip 83.122.127.213 157565 port 598 157565 unique_id port 157565 remote_ip 10.8.0.6 157570 username hashtadani4 157570 mac 157570 bytes_out 0 157570 bytes_in 0 157570 station_ip 83.122.245.120 157570 port 633 157570 unique_id port 157570 remote_ip 10.8.0.182 157572 username jafari 157572 kill_reason Another user logged on this global unique id 157572 mac 157572 bytes_out 0 157572 bytes_in 0 157572 station_ip 37.156.155.122 157572 port 631 157572 unique_id port 157573 username pourshad 157573 mac 157573 bytes_out 0 157573 bytes_in 0 157573 station_ip 5.120.128.181 157573 port 324 157573 unique_id port 157573 remote_ip 10.8.1.154 157576 username hashtadani4 157576 mac 157576 bytes_out 2111 157576 bytes_in 4441 157576 station_ip 83.122.245.120 157576 port 639 157576 unique_id port 157576 remote_ip 10.8.0.182 157579 username barzegar 157579 mac 157579 bytes_out 0 157579 bytes_in 0 157579 station_ip 5.120.171.149 157579 port 323 157579 unique_id port 157579 remote_ip 10.8.1.174 157582 username pourshad 157582 mac 157582 bytes_out 9650 157582 bytes_in 16894 157582 station_ip 5.120.128.181 157582 port 632 157582 unique_id port 157582 remote_ip 10.8.0.18 157584 username sekonji3 157584 mac 157584 bytes_out 61114 157584 bytes_in 875944 157584 station_ip 83.122.127.213 157584 port 633 157584 unique_id port 157584 remote_ip 10.8.0.6 157586 username hashtadani4 157586 mac 157586 bytes_out 0 157586 bytes_in 0 157586 station_ip 83.122.245.120 157586 port 633 157586 unique_id port 157586 remote_ip 10.8.0.182 157588 username hashtadani4 157588 mac 157588 bytes_out 0 157588 bytes_in 0 157588 station_ip 83.122.245.120 157588 port 598 157588 unique_id port 157588 remote_ip 10.8.0.182 157589 username jafari 157589 mac 157589 bytes_out 0 157589 bytes_in 0 157589 station_ip 37.156.155.122 157589 port 631 157589 unique_id port 157595 username mohammadjavad 157595 mac 157595 bytes_out 1294972 157595 bytes_in 23930197 157595 station_ip 83.122.127.189 157595 port 638 157595 unique_id port 157595 remote_ip 10.8.0.142 157600 username forozandeh1 157600 mac 157600 bytes_out 274485 157600 bytes_in 826259 157600 station_ip 37.129.233.211 157600 port 598 157600 unique_id port 157600 remote_ip 10.8.0.130 157601 username barzegar 157601 mac 157601 bytes_out 0 157601 bytes_in 0 157601 station_ip 5.120.171.149 157601 port 323 157601 unique_id port 157601 remote_ip 10.8.1.174 157604 username hashtadani4 157604 mac 157604 bytes_out 58846 157604 bytes_in 57107 157604 station_ip 83.122.245.120 157604 port 598 157604 unique_id port 157604 remote_ip 10.8.0.182 157611 username hashtadani4 157611 mac 157611 bytes_out 0 157611 bytes_in 0 157611 station_ip 83.122.245.120 157611 port 633 157611 unique_id port 157611 remote_ip 10.8.0.182 157616 username tahmasebi 157616 mac 157616 bytes_out 0 157616 bytes_in 0 157616 station_ip 77.42.112.59 157616 port 632 157616 unique_id port 157616 remote_ip 10.8.0.42 157621 username hashtadani4 157621 mac 157621 bytes_out 0 157621 bytes_in 0 157621 station_ip 83.122.245.120 157621 port 598 157621 unique_id port 157621 remote_ip 10.8.0.182 157626 username hashtadani4 157626 mac 157626 bytes_out 0 157626 bytes_in 0 157626 station_ip 83.122.245.120 157626 port 632 157626 unique_id port 157626 remote_ip 10.8.0.182 157627 username hashtadani4 157627 mac 157627 bytes_out 0 157627 bytes_in 0 157627 station_ip 83.122.245.120 157627 port 598 157610 mac 157610 bytes_out 0 157610 bytes_in 0 157610 station_ip 83.122.245.120 157610 port 598 157610 unique_id port 157610 remote_ip 10.8.0.182 157612 username kalantary 157612 mac 157612 bytes_out 0 157612 bytes_in 0 157612 station_ip 113.203.60.137 157612 port 632 157612 unique_id port 157612 remote_ip 10.8.0.98 157613 username hashtadani4 157613 mac 157613 bytes_out 0 157613 bytes_in 0 157613 station_ip 83.122.245.120 157613 port 632 157613 unique_id port 157613 remote_ip 10.8.0.182 157614 username barzegar 157614 mac 157614 bytes_out 0 157614 bytes_in 0 157614 station_ip 5.120.171.149 157614 port 598 157614 unique_id port 157614 remote_ip 10.8.0.234 157615 username hashtadani4 157615 mac 157615 bytes_out 0 157615 bytes_in 0 157615 station_ip 83.122.245.120 157615 port 598 157615 unique_id port 157615 remote_ip 10.8.0.182 157620 username hashtadani4 157620 mac 157620 bytes_out 0 157620 bytes_in 0 157620 station_ip 83.122.245.120 157620 port 598 157620 unique_id port 157620 remote_ip 10.8.0.182 157623 username hashtadani4 157623 mac 157623 bytes_out 0 157623 bytes_in 0 157623 station_ip 83.122.245.120 157623 port 598 157623 unique_id port 157623 remote_ip 10.8.0.182 157624 username hashtadani4 157624 mac 157624 bytes_out 0 157624 bytes_in 0 157624 station_ip 83.122.245.120 157624 port 598 157624 unique_id port 157624 remote_ip 10.8.0.182 157625 username hashtadani4 157625 mac 157625 bytes_out 0 157625 bytes_in 0 157625 station_ip 83.122.245.120 157625 port 598 157625 unique_id port 157625 remote_ip 10.8.0.182 157632 username forozandeh1 157632 mac 157632 bytes_out 0 157632 bytes_in 0 157632 station_ip 83.122.199.36 157632 port 632 157632 unique_id port 157632 remote_ip 10.8.0.130 157635 username morteza 157635 mac 157635 bytes_out 0 157635 bytes_in 0 157635 station_ip 83.123.194.241 157635 port 323 157635 unique_id port 157635 remote_ip 10.8.1.62 157638 username hashtadani4 157638 mac 157638 bytes_out 0 157638 bytes_in 0 157638 station_ip 83.122.245.120 157638 port 633 157638 unique_id port 157638 remote_ip 10.8.0.182 157639 username hashtadani4 157639 mac 157639 bytes_out 0 157639 bytes_in 0 157639 station_ip 83.122.245.120 157639 port 633 157639 unique_id port 157639 remote_ip 10.8.0.182 157640 username hashtadani4 157640 mac 157640 bytes_out 0 157640 bytes_in 0 157640 station_ip 83.122.245.120 157640 port 633 157640 unique_id port 157640 remote_ip 10.8.0.182 157644 username sedighe 157644 mac 157644 bytes_out 0 157644 bytes_in 0 157644 station_ip 37.129.30.173 157644 port 638 157644 unique_id port 157644 remote_ip 10.8.0.146 157645 username morteza 157645 mac 157645 bytes_out 0 157645 bytes_in 0 157645 station_ip 83.123.194.241 157645 port 632 157645 unique_id port 157645 remote_ip 10.8.0.46 157655 username hashtadani4 157655 mac 157655 bytes_out 0 157655 bytes_in 0 157655 station_ip 83.122.245.120 157655 port 633 157655 unique_id port 157655 remote_ip 10.8.0.182 157658 username mohammadjavad 157658 mac 157658 bytes_out 0 157658 bytes_in 0 157658 station_ip 83.122.59.140 157658 port 632 157658 unique_id port 157658 remote_ip 10.8.0.142 157662 username hashtadani4 157662 kill_reason Maximum check online fails reached 157662 mac 157662 bytes_out 0 157662 bytes_in 0 157662 station_ip 83.122.245.120 157662 port 633 157662 unique_id port 157666 username hashtadani4 157666 mac 157666 bytes_out 0 157622 port 632 157622 unique_id port 157622 remote_ip 10.8.0.234 157630 username kalantary 157630 mac 157630 bytes_out 0 157630 bytes_in 0 157630 station_ip 113.203.23.177 157630 port 598 157630 unique_id port 157630 remote_ip 10.8.0.98 157631 username hashtadani4 157631 mac 157631 bytes_out 0 157631 bytes_in 0 157631 station_ip 83.122.245.120 157631 port 598 157631 unique_id port 157631 remote_ip 10.8.0.182 157634 username hashtadani4 157634 mac 157634 bytes_out 0 157634 bytes_in 0 157634 station_ip 83.122.245.120 157634 port 632 157634 unique_id port 157634 remote_ip 10.8.0.182 157636 username morteza 157636 mac 157636 bytes_out 0 157636 bytes_in 0 157636 station_ip 83.123.194.241 157636 port 632 157636 unique_id port 157636 remote_ip 10.8.0.46 157642 username jafari 157642 kill_reason Another user logged on this global unique id 157642 mac 157642 bytes_out 0 157642 bytes_in 0 157642 station_ip 37.156.155.122 157642 port 324 157642 unique_id port 157642 remote_ip 10.8.1.198 157646 username morteza 157646 mac 157646 bytes_out 0 157646 bytes_in 0 157646 station_ip 83.123.194.241 157646 port 632 157646 unique_id port 157646 remote_ip 10.8.0.46 157649 username morteza 157649 mac 157649 bytes_out 886007 157649 bytes_in 135966 157649 station_ip 83.123.194.241 157649 port 326 157649 unique_id port 157649 remote_ip 10.8.1.62 157652 username morteza 157652 mac 157652 bytes_out 0 157652 bytes_in 0 157652 station_ip 83.123.194.241 157652 port 326 157652 unique_id port 157652 remote_ip 10.8.1.62 157653 username hashtadani4 157653 mac 157653 bytes_out 0 157653 bytes_in 0 157653 station_ip 83.122.245.120 157653 port 633 157653 unique_id port 157653 remote_ip 10.8.0.182 157660 username barzegar 157660 mac 157660 bytes_out 0 157660 bytes_in 0 157660 station_ip 5.120.171.149 157660 port 598 157660 unique_id port 157660 remote_ip 10.8.0.234 157663 username hashtadani4 157663 mac 157663 bytes_out 0 157663 bytes_in 0 157663 station_ip 83.122.245.120 157663 port 327 157663 unique_id port 157663 remote_ip 10.8.1.142 157665 username morteza 157665 mac 157665 bytes_out 1418747 157665 bytes_in 411132 157665 station_ip 83.123.194.241 157665 port 326 157665 unique_id port 157665 remote_ip 10.8.1.62 157674 username morteza 157674 mac 157674 bytes_out 0 157674 bytes_in 0 157674 station_ip 83.123.194.241 157674 port 598 157674 unique_id port 157674 remote_ip 10.8.0.46 157677 username morteza 157677 mac 157677 bytes_out 0 157677 bytes_in 0 157677 station_ip 83.123.194.241 157677 port 598 157677 unique_id port 157677 remote_ip 10.8.0.46 157679 username tahmasebi 157679 mac 157679 bytes_out 70405 157679 bytes_in 343436 157679 station_ip 77.42.112.59 157679 port 326 157679 unique_id port 157679 remote_ip 10.8.1.90 157686 username morteza 157686 mac 157686 bytes_out 0 157686 bytes_in 0 157686 station_ip 83.123.194.241 157686 port 642 157686 unique_id port 157686 remote_ip 10.8.0.46 157689 username hashtadani4 157689 mac 157689 bytes_out 0 157689 bytes_in 0 157689 station_ip 83.122.245.120 157689 port 640 157689 unique_id port 157689 remote_ip 10.8.0.182 157690 username morteza 157690 kill_reason Maximum check online fails reached 157690 mac 157690 bytes_out 0 157690 bytes_in 0 157690 station_ip 83.123.194.241 157690 port 642 157690 unique_id port 157692 username hashtadani4 157692 mac 157692 bytes_out 0 157692 bytes_in 0 157692 station_ip 83.122.245.120 157692 port 326 157627 unique_id port 157627 remote_ip 10.8.0.182 157628 username hashtadani4 157628 mac 157628 bytes_out 0 157628 bytes_in 0 157628 station_ip 83.122.245.120 157628 port 633 157628 unique_id port 157628 remote_ip 10.8.0.182 157629 username barzegar 157629 mac 157629 bytes_out 0 157629 bytes_in 0 157629 station_ip 5.120.171.149 157629 port 633 157629 unique_id port 157629 remote_ip 10.8.0.234 157633 username hashtadani4 157633 mac 157633 bytes_out 0 157633 bytes_in 0 157633 station_ip 83.122.245.120 157633 port 598 157633 unique_id port 157633 remote_ip 10.8.0.182 157637 username godarzi 157637 mac 157637 bytes_out 0 157637 bytes_in 0 157637 station_ip 5.120.112.175 157637 port 598 157637 unique_id port 157637 remote_ip 10.8.0.174 157641 username tahmasebi 157641 kill_reason Maximum check online fails reached 157641 mac 157641 bytes_out 0 157641 bytes_in 0 157641 station_ip 77.42.112.59 157641 port 323 157641 unique_id port 157643 username hashtadani4 157643 mac 157643 bytes_out 0 157643 bytes_in 0 157643 station_ip 83.122.245.120 157643 port 639 157643 unique_id port 157643 remote_ip 10.8.0.182 157647 username godarzi 157647 mac 157647 bytes_out 0 157647 bytes_in 0 157647 station_ip 5.120.112.175 157647 port 633 157647 unique_id port 157647 remote_ip 10.8.0.174 157648 username hashtadani4 157648 mac 157648 bytes_out 0 157648 bytes_in 0 157648 station_ip 83.122.245.120 157648 port 632 157648 unique_id port 157648 remote_ip 10.8.0.182 157650 username morteza 157650 mac 157650 bytes_out 0 157650 bytes_in 0 157650 station_ip 83.123.194.241 157650 port 326 157650 unique_id port 157650 remote_ip 10.8.1.62 157651 username hashtadani4 157651 mac 157651 bytes_out 0 157651 bytes_in 0 157651 station_ip 83.122.245.120 157651 port 633 157651 unique_id port 157651 remote_ip 10.8.0.182 157654 username jafari 157654 kill_reason Another user logged on this global unique id 157654 mac 157654 bytes_out 0 157654 bytes_in 0 157654 station_ip 37.156.155.122 157654 port 324 157654 unique_id port 157656 username morteza 157656 mac 157656 bytes_out 203355 157656 bytes_in 1621316 157656 station_ip 83.123.194.241 157656 port 326 157656 unique_id port 157656 remote_ip 10.8.1.62 157657 username hashtadani4 157657 mac 157657 bytes_out 0 157657 bytes_in 0 157657 station_ip 83.122.245.120 157657 port 633 157657 unique_id port 157657 remote_ip 10.8.0.182 157659 username tahmasebi 157659 mac 157659 bytes_out 0 157659 bytes_in 0 157659 station_ip 77.42.112.59 157659 port 638 157659 unique_id port 157659 remote_ip 10.8.0.42 157661 username hashtadani4 157661 mac 157661 bytes_out 0 157661 bytes_in 0 157661 station_ip 83.122.245.120 157661 port 327 157661 unique_id port 157661 remote_ip 10.8.1.142 157664 username hashtadani4 157664 mac 157664 bytes_out 0 157664 bytes_in 0 157664 station_ip 83.122.245.120 157664 port 598 157664 unique_id port 157664 remote_ip 10.8.0.182 157667 username hashtadani4 157667 mac 157667 bytes_out 0 157667 bytes_in 0 157667 station_ip 83.122.245.120 157667 port 598 157667 unique_id port 157667 remote_ip 10.8.0.182 157670 username hashtadani4 157670 mac 157670 bytes_out 0 157670 bytes_in 0 157670 station_ip 83.122.245.120 157670 port 638 157670 unique_id port 157670 remote_ip 10.8.0.182 157671 username hashtadani4 157671 mac 157671 bytes_out 0 157671 bytes_in 0 157671 station_ip 83.122.245.120 157671 port 598 157671 unique_id port 157666 bytes_in 0 157666 station_ip 83.122.245.120 157666 port 598 157666 unique_id port 157666 remote_ip 10.8.0.182 157668 username morteza 157668 mac 157668 bytes_out 0 157668 bytes_in 0 157668 station_ip 83.123.194.241 157668 port 326 157668 unique_id port 157668 remote_ip 10.8.1.62 157669 username barzegar 157669 mac 157669 bytes_out 0 157669 bytes_in 0 157669 station_ip 5.120.171.149 157669 port 598 157669 unique_id port 157669 remote_ip 10.8.0.234 157673 username morteza 157673 mac 157673 bytes_out 0 157673 bytes_in 0 157673 station_ip 83.123.194.241 157673 port 598 157673 unique_id port 157673 remote_ip 10.8.0.46 157675 username morteza 157675 mac 157675 bytes_out 0 157675 bytes_in 0 157675 station_ip 83.123.194.241 157675 port 327 157675 unique_id port 157675 remote_ip 10.8.1.62 157676 username morteza 157676 mac 157676 bytes_out 0 157676 bytes_in 0 157676 station_ip 83.123.194.241 157676 port 327 157676 unique_id port 157676 remote_ip 10.8.1.62 157681 username morteza 157681 mac 157681 bytes_out 0 157681 bytes_in 0 157681 station_ip 83.123.194.241 157681 port 326 157681 unique_id port 157681 remote_ip 10.8.1.62 157682 username morteza 157682 mac 157682 bytes_out 0 157682 bytes_in 0 157682 station_ip 83.123.194.241 157682 port 326 157682 unique_id port 157682 remote_ip 10.8.1.62 157683 username jafari 157683 mac 157683 bytes_out 0 157683 bytes_in 0 157683 station_ip 37.156.155.122 157683 port 324 157683 unique_id port 157691 username morteza 157691 kill_reason Maximum check online fails reached 157691 mac 157691 bytes_out 0 157691 bytes_in 0 157691 station_ip 83.123.194.241 157691 port 324 157691 unique_id port 157693 username barzegar 157693 mac 157693 bytes_out 0 157693 bytes_in 0 157693 station_ip 5.120.171.149 157693 port 640 157693 unique_id port 157693 remote_ip 10.8.0.234 157696 username morteza 157696 mac 157696 bytes_out 0 157696 bytes_in 0 157696 station_ip 83.123.194.241 157696 port 639 157696 unique_id port 157696 remote_ip 10.8.0.46 157697 username morteza 157697 mac 157697 bytes_out 0 157697 bytes_in 0 157697 station_ip 83.123.194.241 157697 port 326 157697 unique_id port 157697 remote_ip 10.8.1.62 157698 username kalantary 157698 mac 157698 bytes_out 0 157698 bytes_in 0 157698 station_ip 113.203.27.161 157698 port 643 157698 unique_id port 157698 remote_ip 10.8.0.98 157701 username morteza 157701 kill_reason Maximum check online fails reached 157701 mac 157701 bytes_out 0 157701 bytes_in 0 157701 station_ip 83.123.194.241 157701 port 639 157701 unique_id port 157704 username morteza 157704 mac 157704 bytes_out 0 157704 bytes_in 0 157704 station_ip 83.123.194.241 157704 port 640 157704 unique_id port 157704 remote_ip 10.8.0.46 157708 username morteza 157708 mac 157708 bytes_out 0 157708 bytes_in 0 157708 station_ip 83.123.194.241 157708 port 644 157708 unique_id port 157708 remote_ip 10.8.0.46 157710 username sekonji3 157710 mac 157710 bytes_out 0 157710 bytes_in 0 157710 station_ip 83.122.31.198 157710 port 645 157710 unique_id port 157710 remote_ip 10.8.0.6 157714 username morteza 157714 mac 157714 bytes_out 0 157714 bytes_in 0 157714 station_ip 83.123.194.241 157714 port 643 157714 unique_id port 157714 remote_ip 10.8.0.46 157715 username tahmasebi 157715 mac 157715 bytes_out 0 157715 bytes_in 0 157715 station_ip 77.42.112.59 157715 port 632 157715 unique_id port 157671 remote_ip 10.8.0.182 157672 username morteza 157672 mac 157672 bytes_out 0 157672 bytes_in 0 157672 station_ip 83.123.194.241 157672 port 327 157672 unique_id port 157672 remote_ip 10.8.1.62 157678 username morteza 157678 mac 157678 bytes_out 0 157678 bytes_in 0 157678 station_ip 83.123.194.241 157678 port 327 157678 unique_id port 157678 remote_ip 10.8.1.62 157680 username jafari 157680 kill_reason Another user logged on this global unique id 157680 mac 157680 bytes_out 0 157680 bytes_in 0 157680 station_ip 37.156.155.122 157680 port 324 157680 unique_id port 157684 username morteza 157684 mac 157684 bytes_out 0 157684 bytes_in 0 157684 station_ip 83.123.194.241 157684 port 640 157684 unique_id port 157684 remote_ip 10.8.0.46 157685 username morteza 157685 kill_reason Maximum check online fails reached 157685 mac 157685 bytes_out 0 157685 bytes_in 0 157685 station_ip 83.123.194.241 157685 port 598 157685 unique_id port 157687 username barzegar 157687 mac 157687 bytes_out 0 157687 bytes_in 0 157687 station_ip 5.120.171.149 157687 port 643 157687 unique_id port 157687 remote_ip 10.8.0.234 157688 username morteza 157688 kill_reason Maximum number of concurrent logins reached 157688 mac 157688 bytes_out 0 157688 bytes_in 0 157688 station_ip 83.123.194.241 157688 port 326 157688 unique_id port 157695 username tahmasebi 157695 mac 157695 bytes_out 0 157695 bytes_in 0 157695 station_ip 77.42.112.59 157695 port 639 157695 unique_id port 157695 remote_ip 10.8.0.42 157700 username morteza 157700 kill_reason Maximum number of concurrent logins reached 157700 mac 157700 bytes_out 0 157700 bytes_in 0 157700 station_ip 83.123.194.241 157700 port 643 157700 unique_id port 157702 username morteza 157702 mac 157702 bytes_out 1680 157702 bytes_in 4177 157702 station_ip 83.123.194.241 157702 port 640 157702 unique_id port 157702 remote_ip 10.8.0.46 157707 username hashtadani4 157707 mac 157707 bytes_out 0 157707 bytes_in 0 157707 station_ip 83.122.245.120 157707 port 326 157707 unique_id port 157707 remote_ip 10.8.1.142 157712 username morteza 157712 kill_reason Maximum check online fails reached 157712 mac 157712 bytes_out 0 157712 bytes_in 0 157712 station_ip 83.123.194.241 157712 port 644 157712 unique_id port 157716 username morteza 157716 mac 157716 bytes_out 0 157716 bytes_in 0 157716 station_ip 83.123.194.241 157716 port 326 157716 unique_id port 157716 remote_ip 10.8.1.62 157719 username barzegar 157719 mac 157719 bytes_out 0 157719 bytes_in 0 157719 station_ip 5.120.171.149 157719 port 641 157719 unique_id port 157719 remote_ip 10.8.0.234 157720 username morteza 157720 mac 157720 bytes_out 0 157720 bytes_in 0 157720 station_ip 83.123.194.241 157720 port 327 157720 unique_id port 157720 remote_ip 10.8.1.62 157727 username tahmasebi 157727 kill_reason Maximum check online fails reached 157727 mac 157727 bytes_out 0 157727 bytes_in 0 157727 station_ip 77.42.112.59 157727 port 326 157727 unique_id port 157729 username tahmasebi 157729 mac 157729 bytes_out 0 157729 bytes_in 0 157729 station_ip 77.42.112.59 157729 port 328 157729 unique_id port 157729 remote_ip 10.8.1.90 157736 username tahmasebi 157736 mac 157736 bytes_out 0 157736 bytes_in 0 157736 station_ip 77.42.112.59 157736 port 641 157736 unique_id port 157736 remote_ip 10.8.0.42 157737 username morteza 157737 mac 157737 bytes_out 0 157737 bytes_in 0 157737 station_ip 83.123.194.241 157737 port 641 157737 unique_id port 157737 remote_ip 10.8.0.46 157692 unique_id port 157692 remote_ip 10.8.1.142 157694 username hashtadani4 157694 mac 157694 bytes_out 0 157694 bytes_in 0 157694 station_ip 83.122.245.120 157694 port 640 157694 unique_id port 157694 remote_ip 10.8.0.182 157699 username hashtadani4 157699 mac 157699 bytes_out 0 157699 bytes_in 0 157699 station_ip 83.122.245.120 157699 port 643 157699 unique_id port 157699 remote_ip 10.8.0.182 157703 username tahmasebi 157703 mac 157703 bytes_out 11008 157703 bytes_in 13546 157703 station_ip 77.42.112.59 157703 port 326 157703 unique_id port 157703 remote_ip 10.8.1.90 157705 username morteza 157705 mac 157705 bytes_out 0 157705 bytes_in 0 157705 station_ip 83.123.194.241 157705 port 640 157705 unique_id port 157705 remote_ip 10.8.0.46 157706 username morteza 157706 mac 157706 bytes_out 0 157706 bytes_in 0 157706 station_ip 83.123.194.241 157706 port 640 157706 unique_id port 157706 remote_ip 10.8.0.46 157709 username rezaei 157709 mac 157709 bytes_out 0 157709 bytes_in 0 157709 station_ip 5.119.53.117 157709 port 632 157709 unique_id port 157709 remote_ip 10.8.0.230 157711 username barzegar 157711 mac 157711 bytes_out 0 157711 bytes_in 0 157711 station_ip 5.120.171.149 157711 port 643 157711 unique_id port 157711 remote_ip 10.8.0.234 157713 username morteza 157713 mac 157713 bytes_out 0 157713 bytes_in 0 157713 station_ip 83.123.194.241 157713 port 643 157713 unique_id port 157713 remote_ip 10.8.0.46 157717 username vanila 157717 mac 157717 bytes_out 778875 157717 bytes_in 11235172 157717 station_ip 113.203.61.238 157717 port 641 157717 unique_id port 157717 remote_ip 10.8.0.178 157722 username sekonji3 157722 mac 157722 bytes_out 0 157722 bytes_in 0 157722 station_ip 83.122.31.198 157722 port 632 157722 unique_id port 157722 remote_ip 10.8.0.6 157726 username hashtadani4 157726 kill_reason Another user logged on this global unique id 157726 mac 157726 bytes_out 0 157726 bytes_in 0 157726 station_ip 83.122.245.120 157726 port 640 157726 unique_id port 157726 remote_ip 10.8.0.182 157728 username jamali 157728 mac 157728 bytes_out 4575006 157728 bytes_in 35801396 157728 station_ip 5.119.88.219 157728 port 613 157728 unique_id port 157728 remote_ip 10.8.0.70 157734 username morteza 157734 mac 157734 bytes_out 0 157734 bytes_in 0 157734 station_ip 83.123.194.241 157734 port 645 157734 unique_id port 157734 remote_ip 10.8.0.46 157744 username morteza 157744 mac 157744 bytes_out 0 157744 bytes_in 0 157744 station_ip 83.123.194.241 157744 port 641 157744 unique_id port 157744 remote_ip 10.8.0.46 157745 username morteza 157745 mac 157745 bytes_out 0 157745 bytes_in 0 157745 station_ip 83.123.194.241 157745 port 641 157745 unique_id port 157745 remote_ip 10.8.0.46 157746 username morteza 157746 mac 157746 bytes_out 0 157746 bytes_in 0 157746 station_ip 83.123.194.241 157746 port 641 157746 unique_id port 157746 remote_ip 10.8.0.46 157748 username jamali 157748 mac 157748 bytes_out 0 157748 bytes_in 0 157748 station_ip 5.119.88.219 157748 port 632 157748 unique_id port 157748 remote_ip 10.8.0.70 157750 username morteza 157750 mac 157750 bytes_out 0 157750 bytes_in 0 157750 station_ip 83.123.194.241 157750 port 641 157750 unique_id port 157750 remote_ip 10.8.0.46 157752 username tahmasebi 157752 mac 157752 bytes_out 16574 157752 bytes_in 19075 157752 station_ip 77.42.112.59 157752 port 643 157752 unique_id port 157752 remote_ip 10.8.0.42 157715 remote_ip 10.8.0.42 157718 username morteza 157718 mac 157718 bytes_out 0 157718 bytes_in 0 157718 station_ip 83.123.194.241 157718 port 641 157718 unique_id port 157718 remote_ip 10.8.0.46 157721 username forozandeh1 157721 mac 157721 bytes_out 0 157721 bytes_in 0 157721 station_ip 83.122.86.99 157721 port 638 157721 unique_id port 157721 remote_ip 10.8.0.130 157723 username morteza 157723 mac 157723 bytes_out 0 157723 bytes_in 0 157723 station_ip 83.123.194.241 157723 port 327 157723 unique_id port 157723 remote_ip 10.8.1.62 157724 username morteza 157724 kill_reason Maximum check online fails reached 157724 mac 157724 bytes_out 0 157724 bytes_in 0 157724 station_ip 83.123.194.241 157724 port 638 157724 unique_id port 157725 username shadkam 157725 mac 157725 bytes_out 31131 157725 bytes_in 74870 157725 station_ip 37.129.5.1 157725 port 326 157725 unique_id port 157725 remote_ip 10.8.1.218 157730 username morteza 157730 mac 157730 bytes_out 0 157730 bytes_in 0 157730 station_ip 83.123.194.241 157730 port 329 157730 unique_id port 157730 remote_ip 10.8.1.62 157731 username morteza 157731 mac 157731 bytes_out 0 157731 bytes_in 0 157731 station_ip 83.123.194.241 157731 port 641 157731 unique_id port 157731 remote_ip 10.8.0.46 157732 username morteza 157732 mac 157732 bytes_out 0 157732 bytes_in 0 157732 station_ip 83.123.194.241 157732 port 641 157732 unique_id port 157732 remote_ip 10.8.0.46 157733 username tahmasebi 157733 mac 157733 bytes_out 0 157733 bytes_in 0 157733 station_ip 77.42.112.59 157733 port 641 157733 unique_id port 157733 remote_ip 10.8.0.42 157735 username jamali 157735 mac 157735 bytes_out 474783 157735 bytes_in 3579037 157735 station_ip 5.119.88.219 157735 port 632 157735 unique_id port 157735 remote_ip 10.8.0.70 157738 username morteza 157738 mac 157738 bytes_out 0 157738 bytes_in 0 157738 station_ip 83.123.194.241 157738 port 641 157738 unique_id port 157738 remote_ip 10.8.0.46 157742 username morteza 157742 mac 157742 bytes_out 0 157742 bytes_in 0 157742 station_ip 83.123.194.241 157742 port 329 157742 unique_id port 157742 remote_ip 10.8.1.62 157743 username jamali 157743 mac 157743 bytes_out 37524 157743 bytes_in 58268 157743 station_ip 5.119.88.219 157743 port 632 157743 unique_id port 157743 remote_ip 10.8.0.70 157753 username shadkam 157753 mac 157753 bytes_out 0 157753 bytes_in 0 157753 station_ip 37.129.112.144 157753 port 328 157753 unique_id port 157753 remote_ip 10.8.1.218 157758 username morteza 157758 mac 157758 bytes_out 0 157758 bytes_in 0 157758 station_ip 83.123.194.241 157758 port 613 157758 unique_id port 157758 remote_ip 10.8.0.46 157767 username barzegar 157767 kill_reason Maximum check online fails reached 157767 mac 157767 bytes_out 0 157767 bytes_in 0 157767 station_ip 5.120.171.149 157767 port 327 157767 unique_id port 157770 username barzegar 157770 mac 157770 bytes_out 0 157770 bytes_in 0 157770 station_ip 5.120.171.149 157770 port 643 157770 unique_id port 157770 remote_ip 10.8.0.234 157772 username hashtadani4 157772 kill_reason Another user logged on this global unique id 157772 mac 157772 bytes_out 0 157772 bytes_in 0 157772 station_ip 83.122.245.120 157772 port 640 157772 unique_id port 157774 username rezaei 157774 mac 157774 bytes_out 520008 157774 bytes_in 3753652 157774 station_ip 5.119.53.117 157774 port 631 157774 unique_id port 157774 remote_ip 10.8.0.230 157776 username moradi 157739 username kalantary 157739 mac 157739 bytes_out 563435 157739 bytes_in 5632377 157739 station_ip 113.203.4.101 157739 port 643 157739 unique_id port 157739 remote_ip 10.8.0.98 157740 username shadkam 157740 mac 157740 bytes_out 0 157740 bytes_in 0 157740 station_ip 83.123.31.180 157740 port 328 157740 unique_id port 157740 remote_ip 10.8.1.218 157741 username morteza 157741 mac 157741 bytes_out 0 157741 bytes_in 0 157741 station_ip 83.123.194.241 157741 port 329 157741 unique_id port 157741 remote_ip 10.8.1.62 157747 username morteza 157747 mac 157747 bytes_out 0 157747 bytes_in 0 157747 station_ip 83.123.194.241 157747 port 641 157747 unique_id port 157747 remote_ip 10.8.0.46 157749 username barzegar 157749 mac 157749 bytes_out 0 157749 bytes_in 0 157749 station_ip 5.120.171.149 157749 port 327 157749 unique_id port 157749 remote_ip 10.8.1.174 157751 username morteza 157751 mac 157751 bytes_out 0 157751 bytes_in 0 157751 station_ip 83.123.194.241 157751 port 641 157751 unique_id port 157751 remote_ip 10.8.0.46 157754 username kalantary 157754 mac 157754 bytes_out 228759 157754 bytes_in 1790182 157754 station_ip 113.203.4.101 157754 port 641 157754 unique_id port 157754 remote_ip 10.8.0.98 157755 username godarzi 157755 mac 157755 bytes_out 0 157755 bytes_in 0 157755 station_ip 5.120.112.175 157755 port 613 157755 unique_id port 157755 remote_ip 10.8.0.174 157762 username barzegar 157762 mac 157762 bytes_out 5842 157762 bytes_in 8446 157762 station_ip 5.120.171.149 157762 port 613 157762 unique_id port 157762 remote_ip 10.8.0.234 157763 username mosi 157763 mac 157763 bytes_out 0 157763 bytes_in 0 157763 station_ip 151.235.89.191 157763 port 641 157763 unique_id port 157763 remote_ip 10.8.0.138 157766 username jamali 157766 mac 157766 bytes_out 30572 157766 bytes_in 49868 157766 station_ip 5.119.88.219 157766 port 632 157766 unique_id port 157766 remote_ip 10.8.0.70 157768 username pourshad 157768 mac 157768 bytes_out 0 157768 bytes_in 0 157768 station_ip 5.120.128.181 157768 port 631 157768 unique_id port 157768 remote_ip 10.8.0.18 157769 username barzegar 157769 mac 157769 bytes_out 0 157769 bytes_in 0 157769 station_ip 5.120.171.149 157769 port 641 157769 unique_id port 157769 remote_ip 10.8.0.234 157771 username pourshad 157771 mac 157771 bytes_out 0 157771 bytes_in 0 157771 station_ip 5.120.128.181 157771 port 328 157771 unique_id port 157771 remote_ip 10.8.1.154 157773 username pourshad 157773 mac 157773 bytes_out 8396 157773 bytes_in 12818 157773 station_ip 5.120.128.181 157773 port 330 157773 unique_id port 157773 remote_ip 10.8.1.154 157775 username pourshad 157775 mac 157775 bytes_out 0 157775 bytes_in 0 157775 station_ip 5.120.128.181 157775 port 643 157775 unique_id port 157775 remote_ip 10.8.0.18 157778 username shadkam 157778 mac 157778 bytes_out 0 157778 bytes_in 0 157778 station_ip 37.129.121.33 157778 port 329 157778 unique_id port 157778 remote_ip 10.8.1.218 157785 username nilufarrajaei 157785 mac 157785 bytes_out 0 157785 bytes_in 0 157785 station_ip 83.122.195.28 157785 port 643 157785 unique_id port 157785 remote_ip 10.8.0.206 157786 username shadkam 157786 mac 157786 bytes_out 290025 157786 bytes_in 1507101 157786 station_ip 37.129.91.34 157786 port 329 157786 unique_id port 157786 remote_ip 10.8.1.218 157790 username jamali 157790 mac 157790 bytes_out 39251 157756 username tahmasebi 157756 mac 157756 bytes_out 0 157756 bytes_in 0 157756 station_ip 77.42.112.59 157756 port 643 157756 unique_id port 157756 remote_ip 10.8.0.42 157757 username mosi 157757 mac 157757 bytes_out 0 157757 bytes_in 0 157757 station_ip 151.235.89.191 157757 port 641 157757 unique_id port 157757 remote_ip 10.8.0.138 157759 username mosi 157759 mac 157759 bytes_out 1630 157759 bytes_in 4163 157759 station_ip 151.235.89.191 157759 port 643 157759 unique_id port 157759 remote_ip 10.8.0.138 157760 username morteza 157760 mac 157760 bytes_out 0 157760 bytes_in 0 157760 station_ip 83.123.194.241 157760 port 641 157760 unique_id port 157760 remote_ip 10.8.0.46 157761 username rezaei 157761 mac 157761 bytes_out 271044 157761 bytes_in 826445 157761 station_ip 5.119.53.117 157761 port 645 157761 unique_id port 157761 remote_ip 10.8.0.230 157764 username morteza 157764 mac 157764 bytes_out 0 157764 bytes_in 0 157764 station_ip 83.123.194.241 157764 port 613 157764 unique_id port 157764 remote_ip 10.8.0.46 157765 username morteza 157765 mac 157765 bytes_out 0 157765 bytes_in 0 157765 station_ip 83.123.194.241 157765 port 327 157765 unique_id port 157765 remote_ip 10.8.1.62 157777 username jamali 157777 mac 157777 bytes_out 43009 157777 bytes_in 69812 157777 station_ip 5.119.88.219 157777 port 613 157777 unique_id port 157777 remote_ip 10.8.0.70 157780 username shadkam 157780 mac 157780 bytes_out 467882 157780 bytes_in 5130883 157780 station_ip 37.129.152.238 157780 port 329 157780 unique_id port 157780 remote_ip 10.8.1.218 157784 username barzegar 157784 mac 157784 bytes_out 0 157784 bytes_in 0 157784 station_ip 5.120.171.149 157784 port 331 157784 unique_id port 157784 remote_ip 10.8.1.174 157787 username hashtadani4 157787 kill_reason Another user logged on this global unique id 157787 mac 157787 bytes_out 0 157787 bytes_in 0 157787 station_ip 83.122.245.120 157787 port 640 157787 unique_id port 157788 username rahim 157788 mac 157788 bytes_out 0 157788 bytes_in 0 157788 station_ip 5.120.18.59 157788 port 632 157788 unique_id port 157788 remote_ip 10.8.0.50 157793 username tahmasebi 157793 mac 157793 bytes_out 0 157793 bytes_in 0 157793 station_ip 5.120.40.192 157793 port 331 157793 unique_id port 157793 remote_ip 10.8.1.90 157795 username fezealinaghi 157795 mac 157795 bytes_out 0 157795 bytes_in 0 157795 station_ip 37.129.37.114 157795 port 317 157795 unique_id port 157795 remote_ip 10.8.1.162 157797 username shadkam 157797 mac 157797 bytes_out 1587022 157797 bytes_in 16130747 157797 station_ip 83.122.102.190 157797 port 329 157797 unique_id port 157797 remote_ip 10.8.1.218 157798 username hashtadani4 157798 kill_reason Another user logged on this global unique id 157798 mac 157798 bytes_out 0 157798 bytes_in 0 157798 station_ip 83.122.245.120 157798 port 640 157798 unique_id port 157803 username hashtadani4 157803 mac 157803 bytes_out 0 157803 bytes_in 0 157803 station_ip 83.122.245.120 157803 port 640 157803 unique_id port 157805 username hashtadani4 157805 mac 157805 bytes_out 0 157805 bytes_in 0 157805 station_ip 83.122.245.120 157805 port 613 157805 unique_id port 157805 remote_ip 10.8.0.182 157807 username tahmasebi 157807 mac 157807 bytes_out 0 157807 bytes_in 0 157807 station_ip 5.120.40.192 157807 port 317 157807 unique_id port 157807 remote_ip 10.8.1.90 157809 username barzegar 157809 mac 157809 bytes_out 0 157776 mac 157776 bytes_out 0 157776 bytes_in 0 157776 station_ip 89.47.76.13 157776 port 632 157776 unique_id port 157776 remote_ip 10.8.0.226 157779 username pourshad 157779 mac 157779 bytes_out 54951 157779 bytes_in 126565 157779 station_ip 5.120.128.181 157779 port 613 157779 unique_id port 157779 remote_ip 10.8.0.18 157781 username barzegar 157781 mac 157781 bytes_out 25037 157781 bytes_in 43212 157781 station_ip 5.120.171.149 157781 port 641 157781 unique_id port 157781 remote_ip 10.8.0.234 157782 username forozandeh1 157782 mac 157782 bytes_out 2086653 157782 bytes_in 23162976 157782 station_ip 83.122.31.104 157782 port 632 157782 unique_id port 157782 remote_ip 10.8.0.130 157783 username tahmasebi 157783 mac 157783 bytes_out 0 157783 bytes_in 0 157783 station_ip 5.120.40.192 157783 port 632 157783 unique_id port 157783 remote_ip 10.8.0.42 157789 username godarzi 157789 mac 157789 bytes_out 3493194 157789 bytes_in 46230801 157789 station_ip 5.202.15.123 157789 port 645 157789 unique_id port 157789 remote_ip 10.8.0.174 157791 username tahmasebi 157791 mac 157791 bytes_out 3046 157791 bytes_in 5230 157791 station_ip 5.120.40.192 157791 port 645 157791 unique_id port 157791 remote_ip 10.8.0.42 157796 username sedighe 157796 mac 157796 bytes_out 187132 157796 bytes_in 1035378 157796 station_ip 37.129.63.198 157796 port 647 157796 unique_id port 157796 remote_ip 10.8.0.146 157799 username sabaghnezhad 157799 mac 157799 bytes_out 0 157799 bytes_in 0 157799 station_ip 83.122.201.133 157799 port 613 157799 unique_id port 157799 remote_ip 10.8.0.186 157801 username rezaei 157801 mac 157801 bytes_out 0 157801 bytes_in 0 157801 station_ip 5.119.53.117 157801 port 330 157801 unique_id port 157801 remote_ip 10.8.1.58 157806 username vanila 157806 mac 157806 bytes_out 65152 157806 bytes_in 182177 157806 station_ip 113.203.85.134 157806 port 613 157806 unique_id port 157806 remote_ip 10.8.0.178 157810 username mohammadmahdi 157810 mac 157810 bytes_out 2062829 157810 bytes_in 24650350 157810 station_ip 5.120.190.90 157810 port 631 157810 unique_id port 157810 remote_ip 10.8.0.54 157812 username tahmasebi 157812 mac 157812 bytes_out 0 157812 bytes_in 0 157812 station_ip 5.120.73.109 157812 port 631 157812 unique_id port 157812 remote_ip 10.8.0.42 157815 username nilufarrajaei 157815 mac 157815 bytes_out 9781506 157815 bytes_in 18605129 157815 station_ip 83.122.195.28 157815 port 646 157815 unique_id port 157815 remote_ip 10.8.0.206 157816 username jamali 157816 kill_reason Another user logged on this global unique id 157816 mac 157816 bytes_out 0 157816 bytes_in 0 157816 station_ip 5.119.88.219 157816 port 643 157816 unique_id port 157816 remote_ip 10.8.0.70 157821 username jamali 157821 mac 157821 bytes_out 0 157821 bytes_in 0 157821 station_ip 5.119.88.219 157821 port 643 157821 unique_id port 157822 username hashtadani4 157822 kill_reason Another user logged on this global unique id 157822 mac 157822 bytes_out 0 157822 bytes_in 0 157822 station_ip 83.122.245.120 157822 port 632 157822 unique_id port 157822 remote_ip 10.8.0.182 157826 username hamidsalari 157826 mac 157826 bytes_out 0 157826 bytes_in 0 157826 station_ip 5.120.188.160 157826 port 609 157826 unique_id port 157830 username tahmasebi 157830 mac 157830 bytes_out 0 157830 bytes_in 0 157830 station_ip 5.113.243.155 157830 port 632 157830 unique_id port 157830 remote_ip 10.8.0.42 157833 username shadkam 157833 mac 157790 bytes_in 47033 157790 station_ip 5.119.88.219 157790 port 631 157790 unique_id port 157790 remote_ip 10.8.0.70 157792 username barzegar 157792 mac 157792 bytes_out 0 157792 bytes_in 0 157792 station_ip 5.120.171.149 157792 port 331 157792 unique_id port 157792 remote_ip 10.8.1.174 157794 username jafari 157794 mac 157794 bytes_out 1855362 157794 bytes_in 16577136 157794 station_ip 37.156.155.122 157794 port 632 157794 unique_id port 157794 remote_ip 10.8.0.242 157800 username tahmasebi 157800 mac 157800 bytes_out 0 157800 bytes_in 0 157800 station_ip 5.120.40.192 157800 port 317 157800 unique_id port 157800 remote_ip 10.8.1.90 157802 username sekonji3 157802 mac 157802 bytes_out 0 157802 bytes_in 0 157802 station_ip 83.122.31.198 157802 port 632 157802 unique_id port 157802 remote_ip 10.8.0.6 157804 username tahmasebi 157804 mac 157804 bytes_out 0 157804 bytes_in 0 157804 station_ip 5.120.40.192 157804 port 317 157804 unique_id port 157804 remote_ip 10.8.1.90 157808 username barzegar 157808 mac 157808 bytes_out 0 157808 bytes_in 0 157808 station_ip 5.119.149.244 157808 port 647 157808 unique_id port 157808 remote_ip 10.8.0.234 157811 username forozandeh1 157811 mac 157811 bytes_out 0 157811 bytes_in 0 157811 station_ip 113.203.54.179 157811 port 640 157811 unique_id port 157811 remote_ip 10.8.0.130 157818 username kordestani 157818 mac 157818 bytes_out 1861041 157818 bytes_in 20372418 157818 station_ip 151.235.82.194 157818 port 645 157818 unique_id port 157818 remote_ip 10.8.0.74 157820 username kordestani 157820 mac 157820 bytes_out 2504 157820 bytes_in 4658 157820 station_ip 151.235.108.81 157820 port 645 157820 unique_id port 157820 remote_ip 10.8.0.74 157825 username tahmasebi 157825 kill_reason Maximum check online fails reached 157825 mac 157825 bytes_out 0 157825 bytes_in 0 157825 station_ip 5.114.43.239 157825 port 329 157825 unique_id port 157829 username forozandeh1 157829 mac 157829 bytes_out 172503 157829 bytes_in 418456 157829 station_ip 37.129.241.254 157829 port 632 157829 unique_id port 157829 remote_ip 10.8.0.130 157831 username rahim 157831 mac 157831 bytes_out 0 157831 bytes_in 0 157831 station_ip 86.57.34.134 157831 port 645 157831 unique_id port 157831 remote_ip 10.8.0.50 157832 username rahim 157832 mac 157832 bytes_out 0 157832 bytes_in 0 157832 station_ip 86.57.34.134 157832 port 632 157832 unique_id port 157832 remote_ip 10.8.0.50 157834 username sabaghnezhad 157834 mac 157834 bytes_out 0 157834 bytes_in 0 157834 station_ip 83.122.201.133 157834 port 613 157834 unique_id port 157834 remote_ip 10.8.0.186 157839 username hashtadani4 157839 mac 157839 bytes_out 0 157839 bytes_in 0 157839 station_ip 83.122.245.120 157839 port 613 157839 unique_id port 157839 remote_ip 10.8.0.182 157842 username rahim 157842 mac 157842 bytes_out 13614 157842 bytes_in 13100 157842 station_ip 86.57.34.134 157842 port 609 157842 unique_id port 157842 remote_ip 10.8.0.50 157844 username shadkam 157844 kill_reason Another user logged on this global unique id 157844 mac 157844 bytes_out 0 157844 bytes_in 0 157844 station_ip 83.123.32.198 157844 port 613 157844 unique_id port 157844 remote_ip 10.8.0.62 157847 username mosi 157847 mac 157847 bytes_out 0 157847 bytes_in 0 157847 station_ip 151.235.89.191 157847 port 632 157847 unique_id port 157847 remote_ip 10.8.0.138 157852 username nilufarrajaei 157852 mac 157852 bytes_out 0 157852 bytes_in 0 157809 bytes_in 0 157809 station_ip 5.119.149.244 157809 port 647 157809 unique_id port 157809 remote_ip 10.8.0.234 157813 username fezealinaghi 157813 mac 157813 bytes_out 43813 157813 bytes_in 54417 157813 station_ip 37.129.37.114 157813 port 317 157813 unique_id port 157813 remote_ip 10.8.1.162 157814 username hosseine 157814 mac 157814 bytes_out 0 157814 bytes_in 0 157814 station_ip 83.123.120.39 157814 port 610 157814 unique_id port 157817 username tahmasebi 157817 mac 157817 bytes_out 0 157817 bytes_in 0 157817 station_ip 5.120.73.109 157817 port 640 157817 unique_id port 157817 remote_ip 10.8.0.42 157819 username tahmasebi 157819 mac 157819 bytes_out 0 157819 bytes_in 0 157819 station_ip 5.120.73.109 157819 port 640 157819 unique_id port 157819 remote_ip 10.8.0.42 157823 username vanila 157823 mac 157823 bytes_out 127071 157823 bytes_in 1018997 157823 station_ip 113.203.85.134 157823 port 640 157823 unique_id port 157823 remote_ip 10.8.0.178 157824 username shadkam 157824 mac 157824 bytes_out 317212 157824 bytes_in 3373226 157824 station_ip 83.122.224.142 157824 port 631 157824 unique_id port 157824 remote_ip 10.8.0.62 157827 username hashtadani4 157827 mac 157827 bytes_out 0 157827 bytes_in 0 157827 station_ip 83.122.245.120 157827 port 632 157827 unique_id port 157828 username rahim 157828 mac 157828 bytes_out 882105 157828 bytes_in 14338801 157828 station_ip 86.57.34.134 157828 port 645 157828 unique_id port 157828 remote_ip 10.8.0.50 157835 username hashtadani4 157835 mac 157835 bytes_out 0 157835 bytes_in 0 157835 station_ip 83.122.245.120 157835 port 330 157835 unique_id port 157835 remote_ip 10.8.1.142 157836 username rahim 157836 mac 157836 bytes_out 0 157836 bytes_in 0 157836 station_ip 86.57.34.134 157836 port 613 157836 unique_id port 157836 remote_ip 10.8.0.50 157838 username hashtadani4 157838 mac 157838 bytes_out 0 157838 bytes_in 0 157838 station_ip 83.122.245.120 157838 port 330 157838 unique_id port 157838 remote_ip 10.8.1.142 157841 username ayobi 157841 kill_reason Another user logged on this global unique id 157841 mac 157841 bytes_out 0 157841 bytes_in 0 157841 station_ip 37.27.29.160 157841 port 645 157841 unique_id port 157841 remote_ip 10.8.0.246 157843 username barzegar 157843 mac 157843 bytes_out 0 157843 bytes_in 0 157843 station_ip 5.119.251.3 157843 port 330 157843 unique_id port 157843 remote_ip 10.8.1.174 157846 username ayobi 157846 kill_reason Another user logged on this global unique id 157846 mac 157846 bytes_out 0 157846 bytes_in 0 157846 station_ip 37.27.29.160 157846 port 645 157846 unique_id port 157849 username shadkam 157849 mac 157849 bytes_out 0 157849 bytes_in 0 157849 station_ip 83.123.32.198 157849 port 613 157849 unique_id port 157851 username tahmasebi 157851 kill_reason Maximum check online fails reached 157851 mac 157851 bytes_out 0 157851 bytes_in 0 157851 station_ip 5.113.74.137 157851 port 640 157851 unique_id port 157856 username shadkam 157856 mac 157856 bytes_out 9269 157856 bytes_in 24887 157856 station_ip 37.129.41.45 157856 port 647 157856 unique_id port 157856 remote_ip 10.8.0.62 157857 username hashtadani4 157857 mac 157857 bytes_out 0 157857 bytes_in 0 157857 station_ip 83.122.245.120 157857 port 331 157857 unique_id port 157857 remote_ip 10.8.1.142 157860 username hashtadani4 157860 mac 157860 bytes_out 0 157860 bytes_in 0 157860 station_ip 83.122.245.120 157860 port 646 157833 bytes_out 0 157833 bytes_in 0 157833 station_ip 37.129.107.229 157833 port 647 157833 unique_id port 157833 remote_ip 10.8.0.62 157837 username mohammadjavad 157837 mac 157837 bytes_out 585422 157837 bytes_in 7381582 157837 station_ip 113.203.20.104 157837 port 609 157837 unique_id port 157837 remote_ip 10.8.0.142 157840 username vanila 157840 mac 157840 bytes_out 0 157840 bytes_in 0 157840 station_ip 113.203.85.134 157840 port 640 157840 unique_id port 157840 remote_ip 10.8.0.178 157845 username nilufarrajaei 157845 kill_reason Another user logged on this global unique id 157845 mac 157845 bytes_out 0 157845 bytes_in 0 157845 station_ip 83.122.195.28 157845 port 646 157845 unique_id port 157845 remote_ip 10.8.0.206 157848 username tahmasebi 157848 kill_reason Maximum check online fails reached 157848 mac 157848 bytes_out 0 157848 bytes_in 0 157848 station_ip 5.120.107.244 157848 port 330 157848 unique_id port 157850 username hashtadani4 157850 mac 157850 bytes_out 0 157850 bytes_in 0 157850 station_ip 83.122.245.120 157850 port 331 157850 unique_id port 157850 remote_ip 10.8.1.142 157853 username hashtadani4 157853 mac 157853 bytes_out 0 157853 bytes_in 0 157853 station_ip 83.122.245.120 157853 port 609 157853 unique_id port 157853 remote_ip 10.8.0.182 157855 username barzegar 157855 mac 157855 bytes_out 0 157855 bytes_in 0 157855 station_ip 5.119.251.3 157855 port 331 157855 unique_id port 157855 remote_ip 10.8.1.174 157859 username khademi 157859 kill_reason Another user logged on this global unique id 157859 mac 157859 bytes_out 0 157859 bytes_in 0 157859 station_ip 113.203.78.111 157859 port 614 157859 unique_id port 157861 username sedighe 157861 mac 157861 bytes_out 234609 157861 bytes_in 1736742 157861 station_ip 113.203.10.48 157861 port 632 157861 unique_id port 157861 remote_ip 10.8.0.146 157865 username rahim 157865 mac 157865 bytes_out 0 157865 bytes_in 0 157865 station_ip 86.57.34.134 157865 port 648 157865 unique_id port 157866 username hashtadani4 157866 mac 157866 bytes_out 0 157866 bytes_in 0 157866 station_ip 83.122.245.120 157866 port 641 157866 unique_id port 157866 remote_ip 10.8.0.182 157867 username barzegar 157867 mac 157867 bytes_out 0 157867 bytes_in 0 157867 station_ip 5.119.251.3 157867 port 331 157867 unique_id port 157867 remote_ip 10.8.1.174 157868 username tahmasebi 157868 mac 157868 bytes_out 3901 157868 bytes_in 6130 157868 station_ip 5.119.252.141 157868 port 641 157868 unique_id port 157868 remote_ip 10.8.0.42 157870 username hashtadani4 157870 mac 157870 bytes_out 0 157870 bytes_in 0 157870 station_ip 83.122.245.120 157870 port 331 157870 unique_id port 157870 remote_ip 10.8.1.142 157872 username kalantary 157872 mac 157872 bytes_out 0 157872 bytes_in 0 157872 station_ip 113.203.81.133 157872 port 632 157872 unique_id port 157872 remote_ip 10.8.0.98 157873 username hashtadani4 157873 mac 157873 bytes_out 0 157873 bytes_in 0 157873 station_ip 83.122.245.120 157873 port 632 157873 unique_id port 157873 remote_ip 10.8.0.182 157875 username ayobi 157875 kill_reason Another user logged on this global unique id 157875 mac 157875 bytes_out 0 157875 bytes_in 0 157875 station_ip 37.27.29.160 157875 port 645 157875 unique_id port 157876 username hashtadani4 157876 mac 157876 bytes_out 0 157876 bytes_in 0 157876 station_ip 83.122.245.120 157876 port 331 157876 unique_id port 157876 remote_ip 10.8.1.142 157878 username vanila 157878 mac 157852 station_ip 83.122.195.28 157852 port 646 157852 unique_id port 157854 username hashtadani4 157854 mac 157854 bytes_out 0 157854 bytes_in 0 157854 station_ip 83.122.245.120 157854 port 646 157854 unique_id port 157854 remote_ip 10.8.0.182 157858 username hashtadani4 157858 mac 157858 bytes_out 0 157858 bytes_in 0 157858 station_ip 83.122.245.120 157858 port 646 157858 unique_id port 157858 remote_ip 10.8.0.182 157864 username ayobi 157864 kill_reason Another user logged on this global unique id 157864 mac 157864 bytes_out 0 157864 bytes_in 0 157864 station_ip 37.27.29.160 157864 port 645 157864 unique_id port 157883 username alipour 157883 kill_reason Another user logged on this global unique id 157883 mac 157883 bytes_out 0 157883 bytes_in 0 157883 station_ip 83.123.16.90 157883 port 325 157883 unique_id port 157883 remote_ip 10.8.1.50 157886 username ayobi 157886 kill_reason Another user logged on this global unique id 157886 mac 157886 bytes_out 0 157886 bytes_in 0 157886 station_ip 37.27.29.160 157886 port 645 157886 unique_id port 157888 username barzegar 157888 mac 157888 bytes_out 0 157888 bytes_in 0 157888 station_ip 5.119.251.3 157888 port 331 157888 unique_id port 157888 remote_ip 10.8.1.174 157889 username hosseine 157889 mac 157889 bytes_out 2340476 157889 bytes_in 27243855 157889 station_ip 83.123.120.39 157889 port 610 157889 unique_id port 157889 remote_ip 10.8.0.238 157894 username jafari 157894 kill_reason Another user logged on this global unique id 157894 mac 157894 bytes_out 0 157894 bytes_in 0 157894 station_ip 37.156.155.122 157894 port 332 157894 unique_id port 157894 remote_ip 10.8.1.198 157895 username hashtadani4 157895 mac 157895 bytes_out 0 157895 bytes_in 0 157895 station_ip 83.122.245.120 157895 port 610 157895 unique_id port 157895 remote_ip 10.8.0.182 157898 username barzegar 157898 mac 157898 bytes_out 0 157898 bytes_in 0 157898 station_ip 5.119.251.3 157898 port 333 157898 unique_id port 157898 remote_ip 10.8.1.174 157899 username farhad2 157899 mac 157899 bytes_out 250359 157899 bytes_in 520855 157899 station_ip 5.120.185.51 157899 port 331 157899 unique_id port 157899 remote_ip 10.8.1.222 157902 username ayobi 157902 kill_reason Another user logged on this global unique id 157902 mac 157902 bytes_out 0 157902 bytes_in 0 157902 station_ip 37.27.29.160 157902 port 645 157902 unique_id port 157903 username hashtadani4 157903 mac 157903 bytes_out 0 157903 bytes_in 0 157903 station_ip 83.122.245.120 157903 port 613 157903 unique_id port 157903 remote_ip 10.8.0.182 157904 username hashtadani4 157904 mac 157904 bytes_out 0 157904 bytes_in 0 157904 station_ip 83.122.245.120 157904 port 331 157904 unique_id port 157904 remote_ip 10.8.1.142 157908 username hashtadani4 157908 mac 157908 bytes_out 0 157908 bytes_in 0 157908 station_ip 83.122.245.120 157908 port 641 157908 unique_id port 157908 remote_ip 10.8.0.182 157912 username khademi 157912 kill_reason Another user logged on this global unique id 157912 mac 157912 bytes_out 0 157912 bytes_in 0 157912 station_ip 113.203.78.111 157912 port 614 157912 unique_id port 157913 username barzegar 157913 mac 157913 bytes_out 0 157913 bytes_in 0 157913 station_ip 5.119.251.3 157913 port 331 157913 unique_id port 157913 remote_ip 10.8.1.174 157915 username khalili 157915 kill_reason Another user logged on this global unique id 157915 mac 157915 bytes_out 0 157915 bytes_in 0 157915 station_ip 5.120.90.11 157915 port 632 157915 unique_id port 157915 remote_ip 10.8.0.86 157860 unique_id port 157860 remote_ip 10.8.0.182 157862 username rahim 157862 kill_reason Another user logged on this global unique id 157862 mac 157862 bytes_out 0 157862 bytes_in 0 157862 station_ip 86.57.34.134 157862 port 648 157862 unique_id port 157862 remote_ip 10.8.0.50 157863 username kalantary 157863 mac 157863 bytes_out 1767552 157863 bytes_in 16929075 157863 station_ip 113.203.81.133 157863 port 641 157863 unique_id port 157863 remote_ip 10.8.0.98 157869 username khademi 157869 kill_reason Another user logged on this global unique id 157869 mac 157869 bytes_out 0 157869 bytes_in 0 157869 station_ip 113.203.78.111 157869 port 614 157869 unique_id port 157871 username hashtadani4 157871 mac 157871 bytes_out 0 157871 bytes_in 0 157871 station_ip 83.122.245.120 157871 port 331 157871 unique_id port 157871 remote_ip 10.8.1.142 157874 username barzegar 157874 mac 157874 bytes_out 0 157874 bytes_in 0 157874 station_ip 5.119.251.3 157874 port 331 157874 unique_id port 157874 remote_ip 10.8.1.174 157877 username hashtadani4 157877 mac 157877 bytes_out 0 157877 bytes_in 0 157877 station_ip 83.122.245.120 157877 port 646 157877 unique_id port 157877 remote_ip 10.8.0.182 157879 username hashtadani4 157879 mac 157879 bytes_out 0 157879 bytes_in 0 157879 station_ip 83.122.245.120 157879 port 647 157879 unique_id port 157879 remote_ip 10.8.0.182 157881 username tahmasebi 157881 mac 157881 bytes_out 0 157881 bytes_in 0 157881 station_ip 5.119.252.141 157881 port 632 157881 unique_id port 157881 remote_ip 10.8.0.42 157890 username farhad2 157890 mac 157890 bytes_out 636459 157890 bytes_in 3384038 157890 station_ip 5.120.185.51 157890 port 613 157890 unique_id port 157890 remote_ip 10.8.0.190 157891 username farhad2 157891 mac 157891 bytes_out 0 157891 bytes_in 0 157891 station_ip 5.120.185.51 157891 port 610 157891 unique_id port 157891 remote_ip 10.8.0.190 157896 username hashtadani4 157896 mac 157896 bytes_out 0 157896 bytes_in 0 157896 station_ip 83.122.245.120 157896 port 610 157896 unique_id port 157896 remote_ip 10.8.0.182 157900 username godarzi 157900 mac 157900 bytes_out 0 157900 bytes_in 0 157900 station_ip 5.202.12.121 157900 port 317 157900 unique_id port 157900 remote_ip 10.8.1.230 157901 username hashtadani4 157901 mac 157901 bytes_out 0 157901 bytes_in 0 157901 station_ip 83.122.245.120 157901 port 613 157901 unique_id port 157901 remote_ip 10.8.0.182 157907 username hashtadani4 157907 mac 157907 bytes_out 0 157907 bytes_in 0 157907 station_ip 83.122.245.120 157907 port 613 157907 unique_id port 157907 remote_ip 10.8.0.182 157911 username ayobi 157911 kill_reason Another user logged on this global unique id 157911 mac 157911 bytes_out 0 157911 bytes_in 0 157911 station_ip 37.27.29.160 157911 port 645 157911 unique_id port 157914 username vanila 157914 mac 157914 bytes_out 1543387 157914 bytes_in 18299383 157914 station_ip 113.203.106.214 157914 port 610 157914 unique_id port 157914 remote_ip 10.8.0.178 157919 username jamali 157919 kill_reason Another user logged on this global unique id 157919 mac 157919 bytes_out 0 157919 bytes_in 0 157919 station_ip 5.119.88.219 157919 port 643 157919 unique_id port 157919 remote_ip 10.8.0.70 157921 username pourshad 157921 kill_reason Another user logged on this global unique id 157921 mac 157921 bytes_out 0 157921 bytes_in 0 157921 station_ip 5.120.128.181 157921 port 328 157921 unique_id port 157921 remote_ip 10.8.1.154 157922 username barzegar 157922 mac 157878 bytes_out 10872573 157878 bytes_in 15771335 157878 station_ip 113.203.85.134 157878 port 613 157878 unique_id port 157878 remote_ip 10.8.0.178 157880 username hashtadani4 157880 mac 157880 bytes_out 0 157880 bytes_in 0 157880 station_ip 83.122.245.120 157880 port 647 157880 unique_id port 157880 remote_ip 10.8.0.182 157882 username hashtadani4 157882 mac 157882 bytes_out 0 157882 bytes_in 0 157882 station_ip 83.122.245.120 157882 port 648 157882 unique_id port 157882 remote_ip 10.8.0.182 157884 username kalantary 157884 mac 157884 bytes_out 40193 157884 bytes_in 50457 157884 station_ip 113.203.81.133 157884 port 646 157884 unique_id port 157884 remote_ip 10.8.0.98 157885 username mohammadjavad 157885 mac 157885 bytes_out 867627 157885 bytes_in 9519935 157885 station_ip 83.123.240.16 157885 port 641 157885 unique_id port 157885 remote_ip 10.8.0.142 157887 username hashtadani4 157887 mac 157887 bytes_out 46702 157887 bytes_in 32307 157887 station_ip 83.122.245.120 157887 port 646 157887 unique_id port 157887 remote_ip 10.8.0.182 157892 username hashtadani4 157892 mac 157892 bytes_out 2376 157892 bytes_in 4653 157892 station_ip 83.122.245.120 157892 port 641 157892 unique_id port 157892 remote_ip 10.8.0.182 157893 username alipour 157893 kill_reason Another user logged on this global unique id 157893 mac 157893 bytes_out 0 157893 bytes_in 0 157893 station_ip 83.123.16.90 157893 port 325 157893 unique_id port 157897 username tahmasebi 157897 mac 157897 bytes_out 0 157897 bytes_in 0 157897 station_ip 5.119.36.250 157897 port 632 157897 unique_id port 157897 remote_ip 10.8.0.42 157905 username hashtadani4 157905 mac 157905 bytes_out 0 157905 bytes_in 0 157905 station_ip 83.122.245.120 157905 port 331 157905 unique_id port 157905 remote_ip 10.8.1.142 157906 username hashtadani4 157906 mac 157906 bytes_out 0 157906 bytes_in 0 157906 station_ip 83.122.245.120 157906 port 331 157906 unique_id port 157906 remote_ip 10.8.1.142 157909 username mohammadjavad 157909 mac 157909 bytes_out 0 157909 bytes_in 0 157909 station_ip 37.129.231.31 157909 port 648 157909 unique_id port 157909 remote_ip 10.8.0.142 157910 username hashtadani4 157910 mac 157910 bytes_out 0 157910 bytes_in 0 157910 station_ip 83.122.245.120 157910 port 641 157910 unique_id port 157910 remote_ip 10.8.0.182 157916 username hashtadani4 157916 mac 157916 bytes_out 0 157916 bytes_in 0 157916 station_ip 83.122.245.120 157916 port 646 157916 unique_id port 157916 remote_ip 10.8.0.182 157918 username kalantary 157918 mac 157918 bytes_out 262809 157918 bytes_in 802945 157918 station_ip 113.203.116.1 157918 port 613 157918 unique_id port 157918 remote_ip 10.8.0.98 157920 username vanila 157920 mac 157920 bytes_out 0 157920 bytes_in 0 157920 station_ip 113.203.106.214 157920 port 610 157920 unique_id port 157920 remote_ip 10.8.0.178 157923 username rezaei 157923 mac 157923 bytes_out 2039893 157923 bytes_in 26192677 157923 station_ip 5.119.53.117 157923 port 641 157923 unique_id port 157923 remote_ip 10.8.0.230 157928 username hashtadani4 157928 mac 157928 bytes_out 5860 157928 bytes_in 5759 157928 station_ip 83.122.245.120 157928 port 641 157928 unique_id port 157928 remote_ip 10.8.0.182 157930 username hashtadani4 157930 mac 157930 bytes_out 0 157930 bytes_in 0 157930 station_ip 83.122.245.120 157930 port 613 157930 unique_id port 157930 remote_ip 10.8.0.182 157932 username barzegar 157932 mac 157917 username farhad2 157917 mac 157917 bytes_out 0 157917 bytes_in 0 157917 station_ip 5.120.185.51 157917 port 317 157917 unique_id port 157917 remote_ip 10.8.1.222 157925 username khademi 157925 kill_reason Another user logged on this global unique id 157925 mac 157925 bytes_out 0 157925 bytes_in 0 157925 station_ip 113.203.78.111 157925 port 614 157925 unique_id port 157934 username jamali 157934 kill_reason Another user logged on this global unique id 157934 mac 157934 bytes_out 0 157934 bytes_in 0 157934 station_ip 5.119.88.219 157934 port 643 157934 unique_id port 157935 username khalili 157935 kill_reason Another user logged on this global unique id 157935 mac 157935 bytes_out 0 157935 bytes_in 0 157935 station_ip 5.120.90.11 157935 port 632 157935 unique_id port 157937 username farhad2 157937 mac 157937 bytes_out 0 157937 bytes_in 0 157937 station_ip 5.120.185.51 157937 port 317 157937 unique_id port 157937 remote_ip 10.8.1.222 157941 username barzegar 157941 mac 157941 bytes_out 0 157941 bytes_in 0 157941 station_ip 5.119.251.3 157941 port 334 157941 unique_id port 157941 remote_ip 10.8.1.174 157943 username hashtadani4 157943 mac 157943 bytes_out 0 157943 bytes_in 0 157943 station_ip 83.122.245.120 157943 port 610 157943 unique_id port 157943 remote_ip 10.8.0.182 157945 username jafari 157945 kill_reason Another user logged on this global unique id 157945 mac 157945 bytes_out 0 157945 bytes_in 0 157945 station_ip 37.156.155.122 157945 port 332 157945 unique_id port 157946 username hashtadani4 157946 mac 157946 bytes_out 0 157946 bytes_in 0 157946 station_ip 83.122.245.120 157946 port 610 157946 unique_id port 157946 remote_ip 10.8.0.182 157948 username mahdiyehalizadeh 157948 mac 157948 bytes_out 243132 157948 bytes_in 3519692 157948 station_ip 5.119.81.146 157948 port 641 157948 unique_id port 157948 remote_ip 10.8.0.82 157956 username shadkam 157956 mac 157956 bytes_out 0 157956 bytes_in 0 157956 station_ip 83.123.73.136 157956 port 336 157956 unique_id port 157956 remote_ip 10.8.1.218 157958 username jafari 157958 kill_reason Another user logged on this global unique id 157958 mac 157958 bytes_out 0 157958 bytes_in 0 157958 station_ip 37.156.155.122 157958 port 332 157958 unique_id port 157959 username tahmasebi 157959 mac 157959 bytes_out 0 157959 bytes_in 0 157959 station_ip 5.120.89.216 157959 port 333 157959 unique_id port 157959 remote_ip 10.8.1.90 157962 username hashtadani4 157962 mac 157962 bytes_out 0 157962 bytes_in 0 157962 station_ip 83.122.245.120 157962 port 613 157962 unique_id port 157962 remote_ip 10.8.0.182 157963 username tahmasebi 157963 mac 157963 bytes_out 0 157963 bytes_in 0 157963 station_ip 5.120.89.216 157963 port 333 157963 unique_id port 157963 remote_ip 10.8.1.90 157980 username hashtadani4 157980 mac 157980 bytes_out 0 157980 bytes_in 0 157980 station_ip 83.122.245.120 157980 port 632 157980 unique_id port 157980 remote_ip 10.8.0.182 157983 username hashtadani4 157983 mac 157983 bytes_out 0 157983 bytes_in 0 157983 station_ip 83.122.245.120 157983 port 613 157983 unique_id port 157983 remote_ip 10.8.0.182 157984 username hamidsalari 157984 mac 157984 bytes_out 1541895 157984 bytes_in 5379075 157984 station_ip 5.119.178.105 157984 port 631 157984 unique_id port 157984 remote_ip 10.8.0.222 157986 username mosi 157986 mac 157986 bytes_out 0 157986 bytes_in 0 157986 station_ip 151.235.89.191 157986 port 646 157986 unique_id port 157987 username pourshad 157922 bytes_out 0 157922 bytes_in 0 157922 station_ip 5.119.251.3 157922 port 333 157922 unique_id port 157922 remote_ip 10.8.1.174 157924 username tahmasebi 157924 mac 157924 bytes_out 2156 157924 bytes_in 4804 157924 station_ip 5.120.89.216 157924 port 613 157924 unique_id port 157924 remote_ip 10.8.0.42 157926 username shadkam 157926 mac 157926 bytes_out 0 157926 bytes_in 0 157926 station_ip 83.122.48.70 157926 port 646 157926 unique_id port 157926 remote_ip 10.8.0.62 157927 username tahmasebi 157927 mac 157927 bytes_out 53601 157927 bytes_in 148409 157927 station_ip 5.120.89.216 157927 port 613 157927 unique_id port 157927 remote_ip 10.8.0.42 157929 username shadkam 157929 mac 157929 bytes_out 90932 157929 bytes_in 371926 157929 station_ip 37.129.66.57 157929 port 646 157929 unique_id port 157929 remote_ip 10.8.0.62 157931 username mosi 157931 mac 157931 bytes_out 2911 157931 bytes_in 6300 157931 station_ip 89.32.111.164 157931 port 641 157931 unique_id port 157931 remote_ip 10.8.0.138 157938 username hashtadani4 157938 mac 157938 bytes_out 0 157938 bytes_in 0 157938 station_ip 83.122.245.120 157938 port 641 157938 unique_id port 157938 remote_ip 10.8.0.182 157942 username vanila 157942 mac 157942 bytes_out 105686 157942 bytes_in 358399 157942 station_ip 113.203.106.214 157942 port 610 157942 unique_id port 157942 remote_ip 10.8.0.178 157947 username jamali 157947 mac 157947 bytes_out 0 157947 bytes_in 0 157947 station_ip 5.119.88.219 157947 port 643 157947 unique_id port 157950 username hashtadani4 157950 mac 157950 bytes_out 0 157950 bytes_in 0 157950 station_ip 83.122.245.120 157950 port 336 157950 unique_id port 157950 remote_ip 10.8.1.142 157951 username hashtadani4 157951 mac 157951 bytes_out 0 157951 bytes_in 0 157951 station_ip 83.122.245.120 157951 port 641 157951 unique_id port 157951 remote_ip 10.8.0.182 157955 username alipour 157955 mac 157955 bytes_out 0 157955 bytes_in 0 157955 station_ip 83.123.16.90 157955 port 325 157955 unique_id port 157957 username khalili 157957 kill_reason Another user logged on this global unique id 157957 mac 157957 bytes_out 0 157957 bytes_in 0 157957 station_ip 5.120.90.11 157957 port 632 157957 unique_id port 157961 username hashtadani4 157961 mac 157961 bytes_out 0 157961 bytes_in 0 157961 station_ip 83.122.245.120 157961 port 333 157961 unique_id port 157961 remote_ip 10.8.1.142 157964 username hashtadani4 157964 mac 157964 bytes_out 0 157964 bytes_in 0 157964 station_ip 83.122.245.120 157964 port 336 157964 unique_id port 157964 remote_ip 10.8.1.142 157966 username barzegar 157966 kill_reason Another user logged on this global unique id 157966 mac 157966 bytes_out 0 157966 bytes_in 0 157966 station_ip 5.119.251.3 157966 port 334 157966 unique_id port 157966 remote_ip 10.8.1.174 157967 username hashtadani4 157967 mac 157967 bytes_out 0 157967 bytes_in 0 157967 station_ip 83.122.245.120 157967 port 641 157967 unique_id port 157967 remote_ip 10.8.0.182 157968 username khalili 157968 kill_reason Another user logged on this global unique id 157968 mac 157968 bytes_out 0 157968 bytes_in 0 157968 station_ip 5.120.90.11 157968 port 632 157968 unique_id port 157969 username mosi 157969 kill_reason Another user logged on this global unique id 157969 mac 157969 bytes_out 0 157969 bytes_in 0 157969 station_ip 151.235.89.191 157969 port 646 157969 unique_id port 157969 remote_ip 10.8.0.138 157970 username hashtadani4 157970 mac 157932 bytes_out 0 157932 bytes_in 0 157932 station_ip 5.119.251.3 157932 port 333 157932 unique_id port 157932 remote_ip 10.8.1.174 157933 username pourshad 157933 kill_reason Another user logged on this global unique id 157933 mac 157933 bytes_out 0 157933 bytes_in 0 157933 station_ip 5.120.128.181 157933 port 328 157933 unique_id port 157936 username tahmasebi 157936 mac 157936 bytes_out 11083 157936 bytes_in 26866 157936 station_ip 5.120.89.216 157936 port 646 157936 unique_id port 157936 remote_ip 10.8.0.42 157939 username hatami 157939 mac 157939 bytes_out 1505684 157939 bytes_in 20201040 157939 station_ip 151.235.97.58 157939 port 610 157939 unique_id port 157939 remote_ip 10.8.0.106 157940 username barzegar 157940 mac 157940 bytes_out 0 157940 bytes_in 0 157940 station_ip 5.119.251.3 157940 port 333 157940 unique_id port 157940 remote_ip 10.8.1.174 157944 username ehsun 157944 mac 157944 bytes_out 0 157944 bytes_in 0 157944 station_ip 46.225.213.253 157944 port 610 157944 unique_id port 157944 remote_ip 10.8.0.150 157949 username kalantary 157949 mac 157949 bytes_out 614211 157949 bytes_in 5373054 157949 station_ip 113.203.116.1 157949 port 613 157949 unique_id port 157949 remote_ip 10.8.0.98 157952 username rajaei 157952 mac 157952 bytes_out 441687 157952 bytes_in 6892418 157952 station_ip 37.44.57.180 157952 port 613 157952 unique_id port 157952 remote_ip 10.8.0.34 157953 username hashtadani4 157953 mac 157953 bytes_out 0 157953 bytes_in 0 157953 station_ip 83.122.245.120 157953 port 613 157953 unique_id port 157953 remote_ip 10.8.0.182 157954 username hashtadani4 157954 mac 157954 bytes_out 0 157954 bytes_in 0 157954 station_ip 83.122.245.120 157954 port 613 157954 unique_id port 157954 remote_ip 10.8.0.182 157960 username hashtadani4 157960 mac 157960 bytes_out 0 157960 bytes_in 0 157960 station_ip 83.122.245.120 157960 port 336 157960 unique_id port 157960 remote_ip 10.8.1.142 157965 username jamali 157965 mac 157965 bytes_out 0 157965 bytes_in 0 157965 station_ip 5.119.88.219 157965 port 335 157965 unique_id port 157965 remote_ip 10.8.1.82 157973 username khalili 157973 kill_reason Another user logged on this global unique id 157973 mac 157973 bytes_out 0 157973 bytes_in 0 157973 station_ip 5.120.90.11 157973 port 632 157973 unique_id port 157974 username jafari 157974 mac 157974 bytes_out 0 157974 bytes_in 0 157974 station_ip 37.156.155.122 157974 port 332 157974 unique_id port 157976 username sekonji3 157976 mac 157976 bytes_out 10345 157976 bytes_in 11549 157976 station_ip 83.122.31.198 157976 port 643 157976 unique_id port 157976 remote_ip 10.8.0.6 157978 username hashtadani4 157978 mac 157978 bytes_out 0 157978 bytes_in 0 157978 station_ip 83.122.245.120 157978 port 632 157978 unique_id port 157978 remote_ip 10.8.0.182 157979 username mohammadjavad 157979 mac 157979 bytes_out 0 157979 bytes_in 0 157979 station_ip 37.129.88.67 157979 port 613 157979 unique_id port 157979 remote_ip 10.8.0.142 157985 username khademi 157985 kill_reason Another user logged on this global unique id 157985 mac 157985 bytes_out 0 157985 bytes_in 0 157985 station_ip 113.203.78.111 157985 port 614 157985 unique_id port 157990 username barzegar 157990 mac 157990 bytes_out 0 157990 bytes_in 0 157990 station_ip 5.119.251.3 157990 port 332 157990 unique_id port 157990 remote_ip 10.8.1.174 157991 username tahmasebi 157991 mac 157991 bytes_out 0 157991 bytes_in 0 157970 bytes_out 0 157970 bytes_in 0 157970 station_ip 83.122.245.120 157970 port 641 157970 unique_id port 157970 remote_ip 10.8.0.182 157971 username hashtadani4 157971 mac 157971 bytes_out 0 157971 bytes_in 0 157971 station_ip 83.122.245.120 157971 port 643 157971 unique_id port 157971 remote_ip 10.8.0.182 157972 username hashtadani4 157972 mac 157972 bytes_out 0 157972 bytes_in 0 157972 station_ip 83.122.245.120 157972 port 643 157972 unique_id port 157972 remote_ip 10.8.0.182 157975 username khalili 157975 mac 157975 bytes_out 0 157975 bytes_in 0 157975 station_ip 5.120.90.11 157975 port 632 157975 unique_id port 157977 username farhad2 157977 mac 157977 bytes_out 0 157977 bytes_in 0 157977 station_ip 5.120.185.51 157977 port 317 157977 unique_id port 157977 remote_ip 10.8.1.222 157981 username barzegar 157981 kill_reason Another user logged on this global unique id 157981 mac 157981 bytes_out 0 157981 bytes_in 0 157981 station_ip 5.119.251.3 157981 port 334 157981 unique_id port 157982 username hashtadani4 157982 mac 157982 bytes_out 0 157982 bytes_in 0 157982 station_ip 83.122.245.120 157982 port 613 157982 unique_id port 157982 remote_ip 10.8.0.182 157988 username tahmasebi 157988 kill_reason Another user logged on this global unique id 157988 mac 157988 bytes_out 0 157988 bytes_in 0 157988 station_ip 5.120.89.216 157988 port 641 157988 unique_id port 157988 remote_ip 10.8.0.42 157993 username barzegar 157993 mac 157993 bytes_out 0 157993 bytes_in 0 157993 station_ip 5.119.251.3 157993 port 641 157993 unique_id port 157993 remote_ip 10.8.0.234 157994 username rahim 157994 mac 157994 bytes_out 0 157994 bytes_in 0 157994 station_ip 5.120.18.59 157994 port 317 157994 unique_id port 157994 remote_ip 10.8.1.126 157996 username tahmasebi 157996 mac 157996 bytes_out 0 157996 bytes_in 0 157996 station_ip 5.120.89.216 157996 port 317 157996 unique_id port 157996 remote_ip 10.8.1.90 158007 username hashtadani4 158007 mac 158007 bytes_out 0 158007 bytes_in 0 158007 station_ip 83.122.245.120 158007 port 646 158007 unique_id port 158007 remote_ip 10.8.0.182 158010 username hashtadani4 158010 mac 158010 bytes_out 0 158010 bytes_in 0 158010 station_ip 83.122.245.120 158010 port 646 158010 unique_id port 158010 remote_ip 10.8.0.182 158012 username tahmasebi 158012 mac 158012 bytes_out 52561 158012 bytes_in 71961 158012 station_ip 5.120.89.216 158012 port 632 158012 unique_id port 158012 remote_ip 10.8.0.42 158013 username hashtadani4 158013 mac 158013 bytes_out 0 158013 bytes_in 0 158013 station_ip 83.122.245.120 158013 port 632 158013 unique_id port 158013 remote_ip 10.8.0.182 158016 username tahmasebi 158016 mac 158016 bytes_out 0 158016 bytes_in 0 158016 station_ip 5.120.89.216 158016 port 646 158016 unique_id port 158016 remote_ip 10.8.0.42 158019 username hashtadani4 158019 kill_reason Maximum check online fails reached 158019 mac 158019 bytes_out 0 158019 bytes_in 0 158019 station_ip 83.122.245.120 158019 port 332 158019 unique_id port 158025 username rahim 158025 mac 158025 bytes_out 0 158025 bytes_in 0 158025 station_ip 5.120.18.59 158025 port 646 158025 unique_id port 158025 remote_ip 10.8.0.50 158026 username tahmasebi 158026 mac 158026 bytes_out 0 158026 bytes_in 0 158026 station_ip 5.120.89.216 158026 port 646 158026 unique_id port 158026 remote_ip 10.8.0.42 158028 username barzegar 158028 mac 158028 bytes_out 110693 158028 bytes_in 836595 157987 kill_reason Another user logged on this global unique id 157987 mac 157987 bytes_out 0 157987 bytes_in 0 157987 station_ip 5.120.128.181 157987 port 328 157987 unique_id port 157989 username barzegar 157989 mac 157989 bytes_out 0 157989 bytes_in 0 157989 station_ip 5.119.251.3 157989 port 334 157989 unique_id port 157999 username hashtadani4 157999 mac 157999 bytes_out 0 157999 bytes_in 0 157999 station_ip 83.122.245.120 157999 port 632 157999 unique_id port 157999 remote_ip 10.8.0.182 158000 username hashtadani4 158000 mac 158000 bytes_out 0 158000 bytes_in 0 158000 station_ip 83.122.245.120 158000 port 632 158000 unique_id port 158000 remote_ip 10.8.0.182 158002 username hashtadani4 158002 mac 158002 bytes_out 0 158002 bytes_in 0 158002 station_ip 83.122.245.120 158002 port 317 158002 unique_id port 158002 remote_ip 10.8.1.142 158004 username hashtadani4 158004 mac 158004 bytes_out 0 158004 bytes_in 0 158004 station_ip 83.122.245.120 158004 port 646 158004 unique_id port 158004 remote_ip 10.8.0.182 158005 username hashtadani4 158005 mac 158005 bytes_out 0 158005 bytes_in 0 158005 station_ip 83.122.245.120 158005 port 632 158005 unique_id port 158005 remote_ip 10.8.0.182 158006 username hashtadani4 158006 mac 158006 bytes_out 0 158006 bytes_in 0 158006 station_ip 83.122.245.120 158006 port 317 158006 unique_id port 158006 remote_ip 10.8.1.142 158008 username hashtadani4 158008 mac 158008 bytes_out 0 158008 bytes_in 0 158008 station_ip 83.122.245.120 158008 port 646 158008 unique_id port 158008 remote_ip 10.8.0.182 158009 username hashtadani4 158009 mac 158009 bytes_out 0 158009 bytes_in 0 158009 station_ip 83.122.245.120 158009 port 646 158009 unique_id port 158009 remote_ip 10.8.0.182 158011 username barzegar 158011 kill_reason Maximum check online fails reached 158011 mac 158011 bytes_out 0 158011 bytes_in 0 158011 station_ip 5.119.251.3 158011 port 317 158011 unique_id port 158017 username hashtadani4 158017 mac 158017 bytes_out 0 158017 bytes_in 0 158017 station_ip 83.122.245.120 158017 port 646 158017 unique_id port 158017 remote_ip 10.8.0.182 158020 username hashtadani4 158020 mac 158020 bytes_out 0 158020 bytes_in 0 158020 station_ip 83.122.245.120 158020 port 651 158020 unique_id port 158020 remote_ip 10.8.0.182 158021 username yaghobi 158021 mac 158021 bytes_out 0 158021 bytes_in 0 158021 station_ip 37.129.101.35 158021 port 643 158021 unique_id port 158021 remote_ip 10.8.0.198 158022 username tahmasebi 158022 mac 158022 bytes_out 40830 158022 bytes_in 71396 158022 station_ip 5.120.89.216 158022 port 646 158022 unique_id port 158022 remote_ip 10.8.0.42 158024 username rahim 158024 mac 158024 bytes_out 9861786 158024 bytes_in 22742164 158024 station_ip 5.120.18.59 158024 port 649 158024 unique_id port 158024 remote_ip 10.8.0.50 158029 username shadkam 158029 mac 158029 bytes_out 1385791 158029 bytes_in 225626 158029 station_ip 37.129.22.32 158029 port 652 158029 unique_id port 158029 remote_ip 10.8.0.62 158033 username mehdizare 158033 kill_reason Another user logged on this global unique id 158033 mac 158033 bytes_out 0 158033 bytes_in 0 158033 station_ip 83.122.87.157 158033 port 651 158033 unique_id port 158033 remote_ip 10.8.0.90 158039 username hashtadani4 158039 mac 158039 bytes_out 0 158039 bytes_in 0 158039 station_ip 83.122.245.120 158039 port 641 158039 unique_id port 158039 remote_ip 10.8.0.182 158041 username hashtadani4 158041 mac 157991 station_ip 5.120.89.216 157991 port 641 157991 unique_id port 157992 username barzegar 157992 mac 157992 bytes_out 0 157992 bytes_in 0 157992 station_ip 5.119.251.3 157992 port 332 157992 unique_id port 157992 remote_ip 10.8.1.174 157995 username hashtadani4 157995 mac 157995 bytes_out 98153 157995 bytes_in 737962 157995 station_ip 83.122.245.120 157995 port 632 157995 unique_id port 157995 remote_ip 10.8.0.182 157997 username tahmasebi 157997 mac 157997 bytes_out 0 157997 bytes_in 0 157997 station_ip 5.120.89.216 157997 port 317 157997 unique_id port 157997 remote_ip 10.8.1.90 157998 username hashtadani4 157998 mac 157998 bytes_out 0 157998 bytes_in 0 157998 station_ip 83.122.245.120 157998 port 632 157998 unique_id port 157998 remote_ip 10.8.0.182 158001 username hashtadani4 158001 mac 158001 bytes_out 0 158001 bytes_in 0 158001 station_ip 83.122.245.120 158001 port 632 158001 unique_id port 158001 remote_ip 10.8.0.182 158003 username hashtadani4 158003 mac 158003 bytes_out 0 158003 bytes_in 0 158003 station_ip 83.122.245.120 158003 port 632 158003 unique_id port 158003 remote_ip 10.8.0.182 158014 username tahmasebi 158014 mac 158014 bytes_out 0 158014 bytes_in 0 158014 station_ip 5.120.89.216 158014 port 646 158014 unique_id port 158014 remote_ip 10.8.0.42 158015 username tahmasebi 158015 mac 158015 bytes_out 650275 158015 bytes_in 6266649 158015 station_ip 5.120.89.216 158015 port 646 158015 unique_id port 158015 remote_ip 10.8.0.42 158018 username hashtadani4 158018 mac 158018 bytes_out 0 158018 bytes_in 0 158018 station_ip 83.122.245.120 158018 port 646 158018 unique_id port 158018 remote_ip 10.8.0.182 158023 username tahmasebi 158023 mac 158023 bytes_out 0 158023 bytes_in 0 158023 station_ip 5.120.89.216 158023 port 646 158023 unique_id port 158023 remote_ip 10.8.0.42 158027 username hashtadani4 158027 mac 158027 bytes_out 0 158027 bytes_in 0 158027 station_ip 83.122.245.120 158027 port 649 158027 unique_id port 158027 remote_ip 10.8.0.182 158036 username hashtadani4 158036 mac 158036 bytes_out 0 158036 bytes_in 0 158036 station_ip 83.122.245.120 158036 port 649 158036 unique_id port 158036 remote_ip 10.8.0.182 158049 username mehdizare 158049 kill_reason Another user logged on this global unique id 158049 mac 158049 bytes_out 0 158049 bytes_in 0 158049 station_ip 83.122.87.157 158049 port 651 158049 unique_id port 158050 username moradi 158050 mac 158050 bytes_out 2246116 158050 bytes_in 6870353 158050 station_ip 37.44.58.89 158050 port 643 158050 unique_id port 158050 remote_ip 10.8.0.226 158054 username moradi 158054 mac 158054 bytes_out 561426 158054 bytes_in 3021317 158054 station_ip 37.44.58.89 158054 port 641 158054 unique_id port 158054 remote_ip 10.8.0.226 158064 username rezaei 158064 mac 158064 bytes_out 3620560 158064 bytes_in 45569873 158064 station_ip 5.119.53.117 158064 port 650 158064 unique_id port 158064 remote_ip 10.8.0.230 158069 username farhad2 158069 mac 158069 bytes_out 0 158069 bytes_in 0 158069 station_ip 5.119.198.191 158069 port 641 158069 unique_id port 158069 remote_ip 10.8.0.190 158070 username mehdizare 158070 mac 158070 bytes_out 0 158070 bytes_in 0 158070 station_ip 83.122.87.157 158070 port 651 158070 unique_id port 158072 username farhad2 158072 mac 158072 bytes_out 0 158072 bytes_in 0 158072 station_ip 5.119.198.191 158072 port 641 158072 unique_id port 158072 remote_ip 10.8.0.190 158028 station_ip 5.119.251.3 158028 port 648 158028 unique_id port 158028 remote_ip 10.8.0.234 158030 username hatami 158030 mac 158030 bytes_out 1125818 158030 bytes_in 15659790 158030 station_ip 151.235.97.58 158030 port 643 158030 unique_id port 158030 remote_ip 10.8.0.106 158031 username hashtadani4 158031 mac 158031 bytes_out 0 158031 bytes_in 0 158031 station_ip 83.122.245.120 158031 port 643 158031 unique_id port 158031 remote_ip 10.8.0.182 158032 username barzegar 158032 mac 158032 bytes_out 2705 158032 bytes_in 4838 158032 station_ip 5.119.251.3 158032 port 649 158032 unique_id port 158032 remote_ip 10.8.0.234 158034 username hashtadani4 158034 mac 158034 bytes_out 0 158034 bytes_in 0 158034 station_ip 83.122.245.120 158034 port 649 158034 unique_id port 158034 remote_ip 10.8.0.182 158035 username kalantary 158035 mac 158035 bytes_out 0 158035 bytes_in 0 158035 station_ip 113.203.96.141 158035 port 641 158035 unique_id port 158035 remote_ip 10.8.0.98 158037 username hashtadani4 158037 mac 158037 bytes_out 0 158037 bytes_in 0 158037 station_ip 83.122.245.120 158037 port 641 158037 unique_id port 158037 remote_ip 10.8.0.182 158038 username hashtadani4 158038 mac 158038 bytes_out 0 158038 bytes_in 0 158038 station_ip 83.122.245.120 158038 port 641 158038 unique_id port 158038 remote_ip 10.8.0.182 158040 username hashtadani4 158040 mac 158040 bytes_out 0 158040 bytes_in 0 158040 station_ip 83.122.245.120 158040 port 334 158040 unique_id port 158040 remote_ip 10.8.1.142 158044 username tahmasebi 158044 mac 158044 bytes_out 15820217 158044 bytes_in 20936998 158044 station_ip 5.120.89.216 158044 port 646 158044 unique_id port 158044 remote_ip 10.8.0.42 158045 username hashtadani4 158045 mac 158045 bytes_out 0 158045 bytes_in 0 158045 station_ip 83.122.245.120 158045 port 641 158045 unique_id port 158045 remote_ip 10.8.0.182 158046 username hashtadani4 158046 mac 158046 bytes_out 0 158046 bytes_in 0 158046 station_ip 83.122.245.120 158046 port 641 158046 unique_id port 158046 remote_ip 10.8.0.182 158047 username hashtadani4 158047 mac 158047 bytes_out 0 158047 bytes_in 0 158047 station_ip 83.122.245.120 158047 port 646 158047 unique_id port 158047 remote_ip 10.8.0.182 158048 username barzegar 158048 mac 158048 bytes_out 3376 158048 bytes_in 5786 158048 station_ip 5.119.251.3 158048 port 641 158048 unique_id port 158048 remote_ip 10.8.0.234 158052 username moradi 158052 mac 158052 bytes_out 41295 158052 bytes_in 95033 158052 station_ip 37.44.58.89 158052 port 641 158052 unique_id port 158052 remote_ip 10.8.0.226 158056 username hashtadani4 158056 mac 158056 bytes_out 0 158056 bytes_in 0 158056 station_ip 83.122.245.120 158056 port 641 158056 unique_id port 158056 remote_ip 10.8.0.182 158060 username farhad2 158060 mac 158060 bytes_out 0 158060 bytes_in 0 158060 station_ip 5.119.198.191 158060 port 335 158060 unique_id port 158060 remote_ip 10.8.1.222 158061 username nilufarrajaei 158061 kill_reason Another user logged on this global unique id 158061 mac 158061 bytes_out 0 158061 bytes_in 0 158061 station_ip 83.122.195.28 158061 port 609 158061 unique_id port 158061 remote_ip 10.8.0.206 158065 username jamali 158065 mac 158065 bytes_out 0 158065 bytes_in 0 158065 station_ip 5.119.88.219 158065 port 333 158065 unique_id port 158065 remote_ip 10.8.1.82 158067 username hashtadani4 158067 mac 158067 bytes_out 0 158067 bytes_in 0 158041 bytes_out 0 158041 bytes_in 0 158041 station_ip 83.122.245.120 158041 port 641 158041 unique_id port 158041 remote_ip 10.8.0.182 158042 username hashtadani4 158042 mac 158042 bytes_out 0 158042 bytes_in 0 158042 station_ip 83.122.245.120 158042 port 641 158042 unique_id port 158042 remote_ip 10.8.0.182 158043 username hashtadani4 158043 mac 158043 bytes_out 0 158043 bytes_in 0 158043 station_ip 83.122.245.120 158043 port 641 158043 unique_id port 158043 remote_ip 10.8.0.182 158051 username hashtadani4 158051 mac 158051 bytes_out 0 158051 bytes_in 0 158051 station_ip 83.122.245.120 158051 port 649 158051 unique_id port 158051 remote_ip 10.8.0.182 158053 username shadkam 158053 kill_reason Another user logged on this global unique id 158053 mac 158053 bytes_out 0 158053 bytes_in 0 158053 station_ip 37.129.13.77 158053 port 648 158053 unique_id port 158053 remote_ip 10.8.0.62 158055 username vanila 158055 mac 158055 bytes_out 235773 158055 bytes_in 968485 158055 station_ip 113.203.115.30 158055 port 643 158055 unique_id port 158055 remote_ip 10.8.0.178 158057 username barzegar 158057 mac 158057 bytes_out 0 158057 bytes_in 0 158057 station_ip 5.119.251.3 158057 port 641 158057 unique_id port 158057 remote_ip 10.8.0.234 158058 username hashtadani4 158058 mac 158058 bytes_out 0 158058 bytes_in 0 158058 station_ip 83.122.245.120 158058 port 641 158058 unique_id port 158058 remote_ip 10.8.0.182 158059 username hashtadani4 158059 mac 158059 bytes_out 0 158059 bytes_in 0 158059 station_ip 83.122.245.120 158059 port 641 158059 unique_id port 158059 remote_ip 10.8.0.182 158062 username zotaher 158062 mac 158062 bytes_out 274156 158062 bytes_in 947028 158062 station_ip 37.129.52.218 158062 port 646 158062 unique_id port 158062 remote_ip 10.8.0.194 158063 username farhad2 158063 mac 158063 bytes_out 0 158063 bytes_in 0 158063 station_ip 5.119.198.191 158063 port 335 158063 unique_id port 158063 remote_ip 10.8.1.222 158066 username barzegar 158066 mac 158066 bytes_out 16893 158066 bytes_in 15621 158066 station_ip 5.119.251.3 158066 port 641 158066 unique_id port 158066 remote_ip 10.8.0.234 158068 username farhad2 158068 mac 158068 bytes_out 0 158068 bytes_in 0 158068 station_ip 5.119.198.191 158068 port 333 158068 unique_id port 158068 remote_ip 10.8.1.222 158073 username jafari 158073 kill_reason Another user logged on this global unique id 158073 mac 158073 bytes_out 0 158073 bytes_in 0 158073 station_ip 37.156.155.122 158073 port 334 158073 unique_id port 158073 remote_ip 10.8.1.198 158075 username mehdizare 158075 mac 158075 bytes_out 437926 158075 bytes_in 332827 158075 station_ip 83.122.87.157 158075 port 646 158075 unique_id port 158075 remote_ip 10.8.0.90 158076 username rezaei 158076 mac 158076 bytes_out 290464 158076 bytes_in 1745398 158076 station_ip 5.119.53.117 158076 port 643 158076 unique_id port 158076 remote_ip 10.8.0.230 158079 username rezaei 158079 mac 158079 bytes_out 8820 158079 bytes_in 17533 158079 station_ip 5.119.53.117 158079 port 651 158079 unique_id port 158079 remote_ip 10.8.0.230 158080 username barzegar 158080 mac 158080 bytes_out 0 158080 bytes_in 0 158080 station_ip 5.119.251.3 158080 port 643 158080 unique_id port 158080 remote_ip 10.8.0.234 158082 username rajaei 158082 mac 158082 bytes_out 353458 158082 bytes_in 923704 158082 station_ip 94.24.82.79 158082 port 643 158082 unique_id port 158082 remote_ip 10.8.0.34 158067 station_ip 83.122.245.120 158067 port 641 158067 unique_id port 158067 remote_ip 10.8.0.182 158071 username farhad2 158071 mac 158071 bytes_out 0 158071 bytes_in 0 158071 station_ip 5.119.198.191 158071 port 641 158071 unique_id port 158071 remote_ip 10.8.0.190 158077 username jafari 158077 mac 158077 bytes_out 0 158077 bytes_in 0 158077 station_ip 37.156.155.122 158077 port 334 158077 unique_id port 158081 username hashtadani4 158081 kill_reason Another user logged on this global unique id 158081 mac 158081 bytes_out 0 158081 bytes_in 0 158081 station_ip 83.122.245.120 158081 port 649 158081 unique_id port 158081 remote_ip 10.8.0.182 158083 username mohsenaskari 158083 mac 158083 bytes_out 119525 158083 bytes_in 1110475 158083 station_ip 46.225.215.44 158083 port 650 158083 unique_id port 158083 remote_ip 10.8.0.170 158087 username mohsenaskari 158087 mac 158087 bytes_out 35582 158087 bytes_in 60414 158087 station_ip 46.225.215.44 158087 port 643 158087 unique_id port 158087 remote_ip 10.8.0.170 158088 username ayobi 158088 mac 158088 bytes_out 0 158088 bytes_in 0 158088 station_ip 37.27.29.160 158088 port 645 158088 unique_id port 158092 username tahmasebi 158092 mac 158092 bytes_out 0 158092 bytes_in 0 158092 station_ip 5.120.89.216 158092 port 645 158092 unique_id port 158092 remote_ip 10.8.0.42 158098 username shadkam 158098 mac 158098 bytes_out 2098 158098 bytes_in 4574 158098 station_ip 37.129.87.37 158098 port 645 158098 unique_id port 158098 remote_ip 10.8.0.62 158099 username tahmasebi 158099 mac 158099 bytes_out 0 158099 bytes_in 0 158099 station_ip 5.120.89.216 158099 port 336 158099 unique_id port 158099 remote_ip 10.8.1.90 158101 username barzegar 158101 mac 158101 bytes_out 0 158101 bytes_in 0 158101 station_ip 5.119.251.3 158101 port 334 158101 unique_id port 158101 remote_ip 10.8.1.174 158115 username barzegar 158115 mac 158115 bytes_out 0 158115 bytes_in 0 158115 station_ip 5.119.251.3 158115 port 609 158115 unique_id port 158115 remote_ip 10.8.0.234 158117 username aminvpn 158117 mac 158117 bytes_out 0 158117 bytes_in 0 158117 station_ip 113.203.53.225 158117 port 631 158117 unique_id port 158117 remote_ip 10.8.0.14 158121 username pourshad 158121 mac 158121 bytes_out 0 158121 bytes_in 0 158121 station_ip 5.120.128.181 158121 port 328 158121 unique_id port 158121 remote_ip 10.8.1.154 158124 username milan 158124 kill_reason Another user logged on this global unique id 158124 mac 158124 bytes_out 0 158124 bytes_in 0 158124 station_ip 5.120.56.28 158124 port 647 158124 unique_id port 158124 remote_ip 10.8.0.218 158125 username aminvpn 158125 mac 158125 bytes_out 0 158125 bytes_in 0 158125 station_ip 5.120.132.101 158125 port 646 158125 unique_id port 158125 remote_ip 10.8.0.14 158128 username pourshad 158128 mac 158128 bytes_out 0 158128 bytes_in 0 158128 station_ip 5.120.128.181 158128 port 335 158128 unique_id port 158128 remote_ip 10.8.1.154 158130 username aminvpn 158130 mac 158130 bytes_out 0 158130 bytes_in 0 158130 station_ip 5.120.171.75 158130 port 336 158130 unique_id port 158130 remote_ip 10.8.1.6 158131 username rezaei 158131 mac 158131 bytes_out 1526898 158131 bytes_in 12294363 158131 station_ip 5.119.53.117 158131 port 643 158131 unique_id port 158131 remote_ip 10.8.0.230 158137 username aminvpn 158137 mac 158137 bytes_out 0 158137 bytes_in 0 158137 station_ip 5.120.132.101 158137 port 650 158074 username nilufarrajaei 158074 kill_reason Another user logged on this global unique id 158074 mac 158074 bytes_out 0 158074 bytes_in 0 158074 station_ip 83.122.195.28 158074 port 609 158074 unique_id port 158078 username kalantary 158078 mac 158078 bytes_out 636700 158078 bytes_in 9034357 158078 station_ip 113.203.116.29 158078 port 650 158078 unique_id port 158078 remote_ip 10.8.0.98 158085 username jamali 158085 mac 158085 bytes_out 0 158085 bytes_in 0 158085 station_ip 5.119.88.219 158085 port 335 158085 unique_id port 158085 remote_ip 10.8.1.82 158086 username barzegar 158086 mac 158086 bytes_out 0 158086 bytes_in 0 158086 station_ip 5.119.251.3 158086 port 335 158086 unique_id port 158086 remote_ip 10.8.1.174 158090 username mirzaei 158090 mac 158090 bytes_out 3044309 158090 bytes_in 27962873 158090 station_ip 5.119.222.91 158090 port 647 158090 unique_id port 158090 remote_ip 10.8.0.66 158094 username moradi 158094 kill_reason Another user logged on this global unique id 158094 mac 158094 bytes_out 0 158094 bytes_in 0 158094 station_ip 37.44.58.89 158094 port 646 158094 unique_id port 158094 remote_ip 10.8.0.226 158095 username pourshad 158095 kill_reason Another user logged on this global unique id 158095 mac 158095 bytes_out 0 158095 bytes_in 0 158095 station_ip 5.120.128.181 158095 port 328 158095 unique_id port 158097 username khademi 158097 kill_reason Another user logged on this global unique id 158097 mac 158097 bytes_out 0 158097 bytes_in 0 158097 station_ip 113.203.78.111 158097 port 614 158097 unique_id port 158102 username forozandeh1 158102 mac 158102 bytes_out 2081090 158102 bytes_in 27925401 158102 station_ip 83.122.28.151 158102 port 609 158102 unique_id port 158102 remote_ip 10.8.0.130 158108 username barzegar 158108 mac 158108 bytes_out 0 158108 bytes_in 0 158108 station_ip 5.119.251.3 158108 port 334 158108 unique_id port 158108 remote_ip 10.8.1.174 158109 username aminvpn 158109 mac 158109 bytes_out 0 158109 bytes_in 0 158109 station_ip 113.203.53.225 158109 port 648 158109 unique_id port 158109 remote_ip 10.8.0.14 158110 username moradi 158110 kill_reason Another user logged on this global unique id 158110 mac 158110 bytes_out 0 158110 bytes_in 0 158110 station_ip 37.44.58.89 158110 port 646 158110 unique_id port 158116 username sabaghnezhad 158116 mac 158116 bytes_out 0 158116 bytes_in 0 158116 station_ip 37.129.87.131 158116 port 334 158116 unique_id port 158116 remote_ip 10.8.1.130 158119 username jamali 158119 mac 158119 bytes_out 0 158119 bytes_in 0 158119 station_ip 5.119.88.219 158119 port 335 158119 unique_id port 158119 remote_ip 10.8.1.82 158122 username aminvpn 158122 mac 158122 bytes_out 6270 158122 bytes_in 14365 158122 station_ip 5.120.132.101 158122 port 609 158122 unique_id port 158122 remote_ip 10.8.0.14 158123 username aminvpn 158123 mac 158123 bytes_out 0 158123 bytes_in 0 158123 station_ip 113.203.53.225 158123 port 645 158123 unique_id port 158123 remote_ip 10.8.0.14 158126 username aminvpn 158126 mac 158126 bytes_out 0 158126 bytes_in 0 158126 station_ip 113.203.53.225 158126 port 645 158126 unique_id port 158126 remote_ip 10.8.0.14 158127 username khademi 158127 kill_reason Another user logged on this global unique id 158127 mac 158127 bytes_out 0 158127 bytes_in 0 158127 station_ip 113.203.78.111 158127 port 614 158127 unique_id port 158129 username rajaei 158129 kill_reason Another user logged on this global unique id 158129 mac 158129 bytes_out 0 158129 bytes_in 0 158084 username nilufarrajaei 158084 mac 158084 bytes_out 0 158084 bytes_in 0 158084 station_ip 83.122.195.28 158084 port 609 158084 unique_id port 158089 username tahmasebi 158089 mac 158089 bytes_out 7390 158089 bytes_in 8776 158089 station_ip 5.120.89.216 158089 port 650 158089 unique_id port 158089 remote_ip 10.8.0.42 158091 username shadkam 158091 mac 158091 bytes_out 0 158091 bytes_in 0 158091 station_ip 37.129.13.77 158091 port 648 158091 unique_id port 158093 username jamali 158093 mac 158093 bytes_out 0 158093 bytes_in 0 158093 station_ip 5.119.88.219 158093 port 334 158093 unique_id port 158093 remote_ip 10.8.1.82 158096 username kalantary 158096 mac 158096 bytes_out 525572 158096 bytes_in 4114631 158096 station_ip 113.203.97.209 158096 port 643 158096 unique_id port 158096 remote_ip 10.8.0.98 158100 username jamali 158100 mac 158100 bytes_out 0 158100 bytes_in 0 158100 station_ip 5.119.88.219 158100 port 335 158100 unique_id port 158100 remote_ip 10.8.1.82 158103 username aminvpn 158103 mac 158103 bytes_out 1264881 158103 bytes_in 14593060 158103 station_ip 113.203.53.225 158103 port 632 158103 unique_id port 158103 remote_ip 10.8.0.14 158104 username hashtadani4 158104 kill_reason Another user logged on this global unique id 158104 mac 158104 bytes_out 0 158104 bytes_in 0 158104 station_ip 83.122.245.120 158104 port 649 158104 unique_id port 158105 username aminvpn 158105 mac 158105 bytes_out 0 158105 bytes_in 0 158105 station_ip 5.120.132.101 158105 port 645 158105 unique_id port 158105 remote_ip 10.8.0.14 158106 username aminvpn 158106 mac 158106 bytes_out 0 158106 bytes_in 0 158106 station_ip 113.203.53.225 158106 port 648 158106 unique_id port 158106 remote_ip 10.8.0.14 158107 username aminvpn 158107 mac 158107 bytes_out 0 158107 bytes_in 0 158107 station_ip 5.120.132.101 158107 port 645 158107 unique_id port 158107 remote_ip 10.8.0.14 158111 username shadkam 158111 mac 158111 bytes_out 167369 158111 bytes_in 779462 158111 station_ip 83.122.232.89 158111 port 609 158111 unique_id port 158111 remote_ip 10.8.0.62 158112 username pourshad 158112 mac 158112 bytes_out 0 158112 bytes_in 0 158112 station_ip 5.120.128.181 158112 port 328 158112 unique_id port 158113 username sabaghnezhad 158113 mac 158113 bytes_out 517686 158113 bytes_in 942189 158113 station_ip 37.129.87.131 158113 port 631 158113 unique_id port 158113 remote_ip 10.8.0.186 158114 username aminvpn 158114 mac 158114 bytes_out 85503 158114 bytes_in 106337 158114 station_ip 5.120.132.101 158114 port 650 158114 unique_id port 158114 remote_ip 10.8.0.14 158118 username moradi 158118 mac 158118 bytes_out 0 158118 bytes_in 0 158118 station_ip 37.44.58.89 158118 port 646 158118 unique_id port 158120 username vanila 158120 mac 158120 bytes_out 587956 158120 bytes_in 2176224 158120 station_ip 113.203.45.34 158120 port 645 158120 unique_id port 158120 remote_ip 10.8.0.178 158133 username aminvpn 158133 mac 158133 bytes_out 0 158133 bytes_in 0 158133 station_ip 5.120.132.101 158133 port 646 158133 unique_id port 158133 remote_ip 10.8.0.14 158134 username rezaei 158134 mac 158134 bytes_out 0 158134 bytes_in 0 158134 station_ip 5.119.53.117 158134 port 645 158134 unique_id port 158134 remote_ip 10.8.0.230 158135 username aminvpn 158135 mac 158135 bytes_out 0 158135 bytes_in 0 158135 station_ip 113.203.53.225 158135 port 643 158135 unique_id port 158129 station_ip 37.153.188.2 158129 port 632 158129 unique_id port 158129 remote_ip 10.8.0.34 158132 username jamali 158132 mac 158132 bytes_out 0 158132 bytes_in 0 158132 station_ip 5.119.88.219 158132 port 328 158132 unique_id port 158132 remote_ip 10.8.1.82 158146 username mohammadjavad 158146 mac 158146 bytes_out 883994 158146 bytes_in 14089894 158146 station_ip 37.129.125.124 158146 port 609 158146 unique_id port 158146 remote_ip 10.8.0.142 158147 username jamali 158147 mac 158147 bytes_out 14256 158147 bytes_in 13444 158147 station_ip 5.119.88.219 158147 port 650 158147 unique_id port 158147 remote_ip 10.8.0.70 158155 username aminvpn 158155 mac 158155 bytes_out 0 158155 bytes_in 0 158155 station_ip 5.120.132.101 158155 port 632 158155 unique_id port 158155 remote_ip 10.8.0.14 158159 username aminvpn 158159 mac 158159 bytes_out 0 158159 bytes_in 0 158159 station_ip 5.120.132.101 158159 port 645 158159 unique_id port 158159 remote_ip 10.8.0.14 158164 username aminvpn 158164 mac 158164 bytes_out 0 158164 bytes_in 0 158164 station_ip 5.120.132.101 158164 port 645 158164 unique_id port 158164 remote_ip 10.8.0.14 158174 username aminvpn 158174 mac 158174 bytes_out 22277 158174 bytes_in 20144 158174 station_ip 113.203.53.225 158174 port 610 158174 unique_id port 158174 remote_ip 10.8.0.14 158175 username aminvpn 158175 mac 158175 bytes_out 2281 158175 bytes_in 4646 158175 station_ip 5.120.132.101 158175 port 650 158175 unique_id port 158175 remote_ip 10.8.0.14 158178 username rajaei 158178 kill_reason Another user logged on this global unique id 158178 mac 158178 bytes_out 0 158178 bytes_in 0 158178 station_ip 37.153.188.2 158178 port 609 158178 unique_id port 158180 username farhad2 158180 mac 158180 bytes_out 415834 158180 bytes_in 1672915 158180 station_ip 5.119.198.191 158180 port 641 158180 unique_id port 158180 remote_ip 10.8.0.190 158183 username jafari 158183 kill_reason Another user logged on this global unique id 158183 mac 158183 bytes_out 0 158183 bytes_in 0 158183 station_ip 37.156.155.122 158183 port 646 158183 unique_id port 158187 username farhad2 158187 mac 158187 bytes_out 158806 158187 bytes_in 475160 158187 station_ip 5.119.198.191 158187 port 610 158187 unique_id port 158187 remote_ip 10.8.0.190 158196 username milan 158196 kill_reason Another user logged on this global unique id 158196 mac 158196 bytes_out 0 158196 bytes_in 0 158196 station_ip 5.120.56.28 158196 port 647 158196 unique_id port 158202 username farhad2 158202 mac 158202 bytes_out 1326522 158202 bytes_in 7111685 158202 station_ip 5.120.156.33 158202 port 641 158202 unique_id port 158202 remote_ip 10.8.0.190 158208 username aminvpn 158208 mac 158208 bytes_out 0 158208 bytes_in 0 158208 station_ip 5.120.132.101 158208 port 337 158208 unique_id port 158208 remote_ip 10.8.1.6 158209 username aminvpn 158209 mac 158209 bytes_out 0 158209 bytes_in 0 158209 station_ip 5.120.171.75 158209 port 336 158209 unique_id port 158209 remote_ip 10.8.1.6 158212 username forozandeh1 158212 mac 158212 bytes_out 1601953 158212 bytes_in 15285421 158212 station_ip 37.129.114.220 158212 port 645 158212 unique_id port 158212 remote_ip 10.8.0.130 158216 username shadkam 158216 mac 158216 bytes_out 0 158216 bytes_in 0 158216 station_ip 37.129.93.199 158216 port 335 158216 unique_id port 158216 remote_ip 10.8.1.218 158219 username aminvpn 158219 mac 158219 bytes_out 0 158219 bytes_in 0 158135 remote_ip 10.8.0.14 158136 username jamali 158136 mac 158136 bytes_out 0 158136 bytes_in 0 158136 station_ip 5.119.88.219 158136 port 328 158136 unique_id port 158136 remote_ip 10.8.1.82 158139 username shadkam 158139 mac 158139 bytes_out 0 158139 bytes_in 0 158139 station_ip 37.129.183.83 158139 port 643 158139 unique_id port 158139 remote_ip 10.8.0.62 158141 username farhad2 158141 kill_reason Another user logged on this global unique id 158141 mac 158141 bytes_out 0 158141 bytes_in 0 158141 station_ip 5.119.198.191 158141 port 641 158141 unique_id port 158141 remote_ip 10.8.0.190 158142 username aminvpn 158142 mac 158142 bytes_out 0 158142 bytes_in 0 158142 station_ip 113.203.53.225 158142 port 651 158142 unique_id port 158142 remote_ip 10.8.0.14 158145 username aminvpn 158145 mac 158145 bytes_out 0 158145 bytes_in 0 158145 station_ip 113.203.53.225 158145 port 645 158145 unique_id port 158145 remote_ip 10.8.0.14 158148 username rajaei 158148 mac 158148 bytes_out 0 158148 bytes_in 0 158148 station_ip 37.153.188.2 158148 port 632 158148 unique_id port 158151 username mahdiyehalizadeh 158151 mac 158151 bytes_out 620963 158151 bytes_in 4736277 158151 station_ip 5.119.81.146 158151 port 610 158151 unique_id port 158151 remote_ip 10.8.0.82 158154 username jafari 158154 kill_reason Another user logged on this global unique id 158154 mac 158154 bytes_out 0 158154 bytes_in 0 158154 station_ip 37.156.155.122 158154 port 646 158154 unique_id port 158154 remote_ip 10.8.0.242 158156 username aminvpn 158156 mac 158156 bytes_out 0 158156 bytes_in 0 158156 station_ip 113.203.53.225 158156 port 610 158156 unique_id port 158156 remote_ip 10.8.0.14 158157 username aminvpn 158157 mac 158157 bytes_out 0 158157 bytes_in 0 158157 station_ip 5.120.132.101 158157 port 632 158157 unique_id port 158157 remote_ip 10.8.0.14 158158 username aminvpn 158158 mac 158158 bytes_out 0 158158 bytes_in 0 158158 station_ip 113.203.53.225 158158 port 610 158158 unique_id port 158158 remote_ip 10.8.0.14 158161 username aminvpn 158161 mac 158161 bytes_out 0 158161 bytes_in 0 158161 station_ip 113.203.53.225 158161 port 610 158161 unique_id port 158161 remote_ip 10.8.0.14 158167 username rezaei 158167 mac 158167 bytes_out 0 158167 bytes_in 0 158167 station_ip 5.119.53.117 158167 port 328 158167 unique_id port 158167 remote_ip 10.8.1.58 158170 username rajaei 158170 kill_reason Another user logged on this global unique id 158170 mac 158170 bytes_out 0 158170 bytes_in 0 158170 station_ip 37.153.188.2 158170 port 609 158170 unique_id port 158170 remote_ip 10.8.0.34 158172 username jafari 158172 kill_reason Another user logged on this global unique id 158172 mac 158172 bytes_out 0 158172 bytes_in 0 158172 station_ip 37.156.155.122 158172 port 646 158172 unique_id port 158176 username barzegar 158176 mac 158176 bytes_out 24727 158176 bytes_in 49100 158176 station_ip 5.119.251.3 158176 port 631 158176 unique_id port 158176 remote_ip 10.8.0.234 158179 username aminvpn 158179 mac 158179 bytes_out 7173 158179 bytes_in 10546 158179 station_ip 113.203.53.225 158179 port 610 158179 unique_id port 158179 remote_ip 10.8.0.14 158181 username milan 158181 kill_reason Another user logged on this global unique id 158181 mac 158181 bytes_out 0 158181 bytes_in 0 158181 station_ip 5.120.56.28 158181 port 647 158181 unique_id port 158182 username aminvpn 158182 mac 158182 bytes_out 29047 158182 bytes_in 44277 158182 station_ip 5.120.132.101 158182 port 645 158137 unique_id port 158137 remote_ip 10.8.0.14 158138 username pourshad 158138 mac 158138 bytes_out 0 158138 bytes_in 0 158138 station_ip 5.120.128.181 158138 port 335 158138 unique_id port 158138 remote_ip 10.8.1.154 158140 username barzegar 158140 mac 158140 bytes_out 19621 158140 bytes_in 43865 158140 station_ip 5.119.251.3 158140 port 631 158140 unique_id port 158140 remote_ip 10.8.0.234 158143 username kalantary 158143 mac 158143 bytes_out 117277 158143 bytes_in 523084 158143 station_ip 113.203.91.113 158143 port 645 158143 unique_id port 158143 remote_ip 10.8.0.98 158144 username aminvpn 158144 mac 158144 bytes_out 0 158144 bytes_in 0 158144 station_ip 5.120.132.101 158144 port 631 158144 unique_id port 158144 remote_ip 10.8.0.14 158149 username aminvpn 158149 mac 158149 bytes_out 0 158149 bytes_in 0 158149 station_ip 5.120.132.101 158149 port 652 158149 unique_id port 158149 remote_ip 10.8.0.14 158150 username aminvpn 158150 mac 158150 bytes_out 0 158150 bytes_in 0 158150 station_ip 113.203.53.225 158150 port 632 158150 unique_id port 158150 remote_ip 10.8.0.14 158152 username aminvpn 158152 mac 158152 bytes_out 0 158152 bytes_in 0 158152 station_ip 5.120.132.101 158152 port 645 158152 unique_id port 158152 remote_ip 10.8.0.14 158153 username aminvpn 158153 mac 158153 bytes_out 0 158153 bytes_in 0 158153 station_ip 113.203.53.225 158153 port 610 158153 unique_id port 158153 remote_ip 10.8.0.14 158160 username hashtadani4 158160 kill_reason Another user logged on this global unique id 158160 mac 158160 bytes_out 0 158160 bytes_in 0 158160 station_ip 83.122.245.120 158160 port 649 158160 unique_id port 158162 username aminvpn 158162 mac 158162 bytes_out 0 158162 bytes_in 0 158162 station_ip 5.120.132.101 158162 port 645 158162 unique_id port 158162 remote_ip 10.8.0.14 158163 username aminvpn 158163 mac 158163 bytes_out 0 158163 bytes_in 0 158163 station_ip 113.203.53.225 158163 port 610 158163 unique_id port 158163 remote_ip 10.8.0.14 158165 username rezaei 158165 mac 158165 bytes_out 0 158165 bytes_in 0 158165 station_ip 5.119.53.117 158165 port 328 158165 unique_id port 158165 remote_ip 10.8.1.58 158166 username farhad2 158166 mac 158166 bytes_out 0 158166 bytes_in 0 158166 station_ip 5.119.198.191 158166 port 641 158166 unique_id port 158168 username hashtadani4 158168 kill_reason Another user logged on this global unique id 158168 mac 158168 bytes_out 0 158168 bytes_in 0 158168 station_ip 83.122.245.120 158168 port 649 158168 unique_id port 158169 username aminvpn 158169 mac 158169 bytes_out 5914 158169 bytes_in 7797 158169 station_ip 113.203.53.225 158169 port 610 158169 unique_id port 158169 remote_ip 10.8.0.14 158171 username aminvpn 158171 mac 158171 bytes_out 0 158171 bytes_in 0 158171 station_ip 5.120.132.101 158171 port 641 158171 unique_id port 158171 remote_ip 10.8.0.14 158173 username shadkam 158173 mac 158173 bytes_out 1201421 158173 bytes_in 7086941 158173 station_ip 37.129.183.83 158173 port 651 158173 unique_id port 158173 remote_ip 10.8.0.62 158177 username shadkam 158177 mac 158177 bytes_out 142251 158177 bytes_in 16501 158177 station_ip 83.123.105.70 158177 port 645 158177 unique_id port 158177 remote_ip 10.8.0.62 158190 username aminvpn 158190 mac 158190 bytes_out 0 158190 bytes_in 0 158190 station_ip 5.120.132.101 158190 port 645 158190 unique_id port 158190 remote_ip 10.8.0.14 158192 username aminvpn 158182 unique_id port 158182 remote_ip 10.8.0.14 158184 username aminvpn 158184 mac 158184 bytes_out 3995 158184 bytes_in 6024 158184 station_ip 113.203.53.225 158184 port 641 158184 unique_id port 158184 remote_ip 10.8.0.14 158185 username aminvpn 158185 mac 158185 bytes_out 5616 158185 bytes_in 10298 158185 station_ip 5.120.132.101 158185 port 650 158185 unique_id port 158185 remote_ip 10.8.0.14 158186 username shadkam 158186 mac 158186 bytes_out 351683 158186 bytes_in 1720451 158186 station_ip 83.123.69.42 158186 port 645 158186 unique_id port 158186 remote_ip 10.8.0.62 158188 username aminvpn 158188 mac 158188 bytes_out 1245919 158188 bytes_in 3922906 158188 station_ip 113.203.53.225 158188 port 641 158188 unique_id port 158188 remote_ip 10.8.0.14 158189 username shadkam 158189 kill_reason Maximum check online fails reached 158189 mac 158189 bytes_out 0 158189 bytes_in 0 158189 station_ip 83.123.108.223 158189 port 610 158189 unique_id port 158191 username aminvpn 158191 mac 158191 bytes_out 0 158191 bytes_in 0 158191 station_ip 113.203.53.225 158191 port 650 158191 unique_id port 158191 remote_ip 10.8.0.14 158194 username rajaei 158194 kill_reason Another user logged on this global unique id 158194 mac 158194 bytes_out 0 158194 bytes_in 0 158194 station_ip 37.153.188.2 158194 port 609 158194 unique_id port 158195 username aminvpn 158195 mac 158195 bytes_out 0 158195 bytes_in 0 158195 station_ip 113.203.53.225 158195 port 650 158195 unique_id port 158195 remote_ip 10.8.0.14 158198 username khademi 158198 kill_reason Another user logged on this global unique id 158198 mac 158198 bytes_out 0 158198 bytes_in 0 158198 station_ip 113.203.78.111 158198 port 614 158198 unique_id port 158200 username aminvpn 158200 mac 158200 bytes_out 10184 158200 bytes_in 14092 158200 station_ip 113.203.53.225 158200 port 650 158200 unique_id port 158200 remote_ip 10.8.0.14 158204 username rajaei 158204 mac 158204 bytes_out 0 158204 bytes_in 0 158204 station_ip 37.153.188.2 158204 port 609 158204 unique_id port 158210 username aminvpn 158210 mac 158210 bytes_out 0 158210 bytes_in 0 158210 station_ip 5.120.132.101 158210 port 337 158210 unique_id port 158210 remote_ip 10.8.1.6 158211 username aminvpn 158211 mac 158211 bytes_out 0 158211 bytes_in 0 158211 station_ip 5.120.171.75 158211 port 336 158211 unique_id port 158211 remote_ip 10.8.1.6 158213 username aminvpn 158213 mac 158213 bytes_out 0 158213 bytes_in 0 158213 station_ip 5.120.132.101 158213 port 337 158213 unique_id port 158213 remote_ip 10.8.1.6 158217 username jamali 158217 mac 158217 bytes_out 40387 158217 bytes_in 80553 158217 station_ip 5.119.88.219 158217 port 651 158217 unique_id port 158217 remote_ip 10.8.0.70 158223 username khademi 158229 station_ip 5.119.186.133 158223 kill_reason Another user logged on this global unique id 158223 mac 158223 bytes_out 0 158223 bytes_in 0 158223 station_ip 113.203.78.111 158223 port 614 158223 unique_id port 158224 username aminvpn 158224 mac 158224 bytes_out 0 158224 bytes_in 0 158224 station_ip 5.120.171.75 158224 port 336 158224 unique_id port 158224 remote_ip 10.8.1.6 158226 username farhad2 158226 mac 158226 bytes_out 1254815 158226 bytes_in 12592676 158226 station_ip 5.119.50.65 158226 port 609 158226 unique_id port 158226 remote_ip 10.8.0.190 158227 username aminvpn 158227 mac 158227 bytes_out 0 158227 bytes_in 0 158227 station_ip 5.120.171.75 158227 port 650 158227 unique_id port 158227 remote_ip 10.8.0.14 158192 mac 158192 bytes_out 0 158192 bytes_in 0 158192 station_ip 5.120.132.101 158192 port 651 158192 unique_id port 158192 remote_ip 10.8.0.14 158193 username pourshad 158193 mac 158193 bytes_out 210519 158193 bytes_in 1169068 158193 station_ip 5.120.128.181 158193 port 643 158193 unique_id port 158193 remote_ip 10.8.0.18 158197 username aminvpn 158197 mac 158197 bytes_out 0 158197 bytes_in 0 158197 station_ip 5.120.132.101 158197 port 643 158197 unique_id port 158197 remote_ip 10.8.0.14 158199 username jamali 158199 mac 158199 bytes_out 86669 158199 bytes_in 123550 158199 station_ip 5.119.88.219 158199 port 632 158199 unique_id port 158199 remote_ip 10.8.0.70 158201 username aminvpn 158201 mac 158201 bytes_out 0 158201 bytes_in 0 158201 station_ip 5.120.132.101 158201 port 652 158201 unique_id port 158201 remote_ip 10.8.0.14 158203 username pourshad 158203 mac 158203 bytes_out 13856 158203 bytes_in 33499 158203 station_ip 5.120.128.181 158203 port 632 158203 unique_id port 158203 remote_ip 10.8.0.18 158205 username aminvpn 158205 mac 158205 bytes_out 7166 158205 bytes_in 8244 158205 station_ip 113.203.53.225 158205 port 650 158205 unique_id port 158205 remote_ip 10.8.0.14 158206 username aminvpn 158206 mac 158206 bytes_out 0 158206 bytes_in 0 158206 station_ip 5.120.132.101 158206 port 609 158206 unique_id port 158206 remote_ip 10.8.0.14 158207 username aminvpn 158207 mac 158207 bytes_out 0 158207 bytes_in 0 158207 station_ip 5.120.171.75 158207 port 336 158207 unique_id port 158207 remote_ip 10.8.1.6 158214 username farhad2 158214 mac 158214 bytes_out 405854 158214 bytes_in 2785772 158214 station_ip 5.119.50.65 158214 port 632 158214 unique_id port 158214 remote_ip 10.8.0.190 158215 username pourshad 158215 mac 158215 bytes_out 0 158215 bytes_in 0 158215 station_ip 5.120.128.181 158215 port 335 158215 unique_id port 158215 remote_ip 10.8.1.154 158218 username aminvpn 158218 mac 158218 bytes_out 0 158218 bytes_in 0 158218 station_ip 5.120.171.75 158218 port 336 158218 unique_id port 158218 remote_ip 10.8.1.6 158220 username barzegar 158220 mac 158220 bytes_out 61559 158220 bytes_in 139540 158220 station_ip 5.119.251.3 158220 port 631 158220 unique_id port 158220 remote_ip 10.8.0.234 158222 username mohammadjavad 158222 mac 158222 bytes_out 368867 158222 bytes_in 3934386 158222 station_ip 83.123.165.137 158222 port 632 158222 unique_id port 158222 remote_ip 10.8.0.142 158225 username aminvpn 158225 mac 158225 bytes_out 82145 158225 bytes_in 1194770 158225 station_ip 113.203.53.225 158225 port 641 158225 unique_id port 158225 remote_ip 10.8.0.14 158229 username Mahin 158229 mac 158229 bytes_out 1559453 158229 bytes_in 13309094 158229 port 643 158229 unique_id port 158229 remote_ip 10.8.0.162 158231 username pourshad 158231 mac 158231 bytes_out 41356 158231 bytes_in 138985 158231 station_ip 5.120.128.181 158231 port 632 158231 unique_id port 158231 remote_ip 10.8.0.18 158232 username aminvpn 158232 mac 158232 bytes_out 0 158232 bytes_in 0 158232 station_ip 5.120.171.75 158232 port 336 158232 unique_id port 158232 remote_ip 10.8.1.6 158233 username hamidsalari 158233 mac 158233 bytes_out 3475903 158233 bytes_in 33410777 158233 station_ip 5.120.169.8 158233 port 613 158233 unique_id port 158233 remote_ip 10.8.0.222 158235 username shadkam 158235 mac 158235 bytes_out 0 158219 station_ip 5.120.132.101 158219 port 335 158219 unique_id port 158219 remote_ip 10.8.1.6 158221 username mehdizare 158221 mac 158221 bytes_out 0 158221 bytes_in 0 158221 station_ip 83.122.87.157 158221 port 333 158221 unique_id port 158221 remote_ip 10.8.1.42 158228 username jamali 158228 mac 158228 bytes_out 21911 158228 bytes_in 27828 158228 station_ip 5.119.88.219 158228 port 631 158228 unique_id port 158228 remote_ip 10.8.0.70 158234 username aminvpn 158234 mac 158234 bytes_out 0 158234 bytes_in 0 158234 station_ip 5.120.132.101 158234 port 337 158234 unique_id port 158234 remote_ip 10.8.1.6 158238 username shadkam 158238 mac 158238 bytes_out 2308 158238 bytes_in 5045 158238 station_ip 37.129.52.124 158238 port 613 158238 unique_id port 158238 remote_ip 10.8.0.62 158239 username aminvpn 158239 mac 158239 bytes_out 0 158239 bytes_in 0 158239 station_ip 5.120.171.75 158239 port 338 158239 unique_id port 158239 remote_ip 10.8.1.6 158242 username tahmasebi 158242 kill_reason Maximum check online fails reached 158242 mac 158242 bytes_out 0 158242 bytes_in 0 158242 station_ip 5.120.113.22 158242 port 337 158242 unique_id port 158253 username aminvpn 158253 mac 158253 bytes_out 0 158253 bytes_in 0 158253 station_ip 113.203.53.225 158253 port 631 158253 unique_id port 158253 remote_ip 10.8.0.14 158257 username khademi 158257 kill_reason Another user logged on this global unique id 158257 mac 158257 bytes_out 0 158257 bytes_in 0 158257 station_ip 113.203.78.111 158257 port 614 158257 unique_id port 158261 username asma2026 158261 mac 158261 bytes_out 0 158261 bytes_in 0 158261 station_ip 37.129.139.56 158261 port 632 158261 unique_id port 158266 username aminvpn 158266 mac 158266 bytes_out 0 158266 bytes_in 0 158266 station_ip 113.203.53.225 158266 port 631 158266 unique_id port 158266 remote_ip 10.8.0.14 158268 username aminvpn 158268 mac 158268 bytes_out 0 158268 bytes_in 0 158268 station_ip 5.120.171.75 158268 port 632 158268 unique_id port 158268 remote_ip 10.8.0.14 158270 username pourshad 158270 mac 158270 bytes_out 0 158270 bytes_in 0 158270 station_ip 5.120.128.181 158270 port 335 158270 unique_id port 158270 remote_ip 10.8.1.154 158273 username aminvpn 158273 mac 158273 bytes_out 0 158273 bytes_in 0 158273 station_ip 5.120.171.75 158273 port 641 158273 unique_id port 158273 remote_ip 10.8.0.14 158274 username pourshad 158274 mac 158274 bytes_out 0 158274 bytes_in 0 158274 station_ip 5.120.128.181 158274 port 334 158274 unique_id port 158274 remote_ip 10.8.1.154 158276 username barzegar 158276 mac 158276 bytes_out 0 158276 bytes_in 0 158276 station_ip 5.119.251.3 158276 port 335 158276 unique_id port 158276 remote_ip 10.8.1.174 158278 username asma2026 158278 mac 158278 bytes_out 0 158278 bytes_in 0 158278 station_ip 37.129.139.56 158278 port 632 158278 unique_id port 158278 remote_ip 10.8.0.94 158279 username aminvpn 158279 mac 158279 bytes_out 51372 158279 bytes_in 342752 158279 station_ip 113.203.53.225 158279 port 631 158279 unique_id port 158279 remote_ip 10.8.0.14 158281 username jamali 158281 mac 158281 bytes_out 70726 158281 bytes_in 100558 158281 station_ip 5.119.88.219 158281 port 613 158281 unique_id port 158281 remote_ip 10.8.0.70 158284 username mirzaei 158284 mac 158284 bytes_out 307121 158284 bytes_in 820385 158284 station_ip 5.119.222.91 158284 port 645 158284 unique_id port 158284 remote_ip 10.8.0.66 158230 username aminvpn 158230 mac 158230 bytes_out 0 158230 bytes_in 0 158230 station_ip 5.120.132.101 158230 port 335 158230 unique_id port 158230 remote_ip 10.8.1.6 158237 username jamali 158237 mac 158237 bytes_out 20235 158237 bytes_in 38115 158237 station_ip 5.119.88.219 158237 port 650 158237 unique_id port 158237 remote_ip 10.8.0.70 158241 username sabaghnezhad 158241 mac 158241 bytes_out 0 158241 bytes_in 0 158241 station_ip 37.129.87.131 158241 port 334 158241 unique_id port 158241 remote_ip 10.8.1.130 158243 username mehdizare 158243 mac 158243 bytes_out 0 158243 bytes_in 0 158243 station_ip 83.122.87.157 158243 port 333 158243 unique_id port 158243 remote_ip 10.8.1.42 158247 username aminvpn 158247 mac 158247 bytes_out 5136 158247 bytes_in 13186 158247 station_ip 113.203.53.225 158247 port 631 158247 unique_id port 158247 remote_ip 10.8.0.14 158248 username aminvpn 158248 mac 158248 bytes_out 61972 158248 bytes_in 396892 158248 station_ip 5.120.171.75 158248 port 650 158248 unique_id port 158248 remote_ip 10.8.0.14 158250 username mehdizare 158250 mac 158250 bytes_out 0 158250 bytes_in 0 158250 station_ip 83.122.87.157 158250 port 333 158250 unique_id port 158250 remote_ip 10.8.1.42 158252 username aminvpn 158252 mac 158252 bytes_out 0 158252 bytes_in 0 158252 station_ip 5.120.171.75 158252 port 648 158252 unique_id port 158252 remote_ip 10.8.0.14 158255 username aminvpn 158255 mac 158255 bytes_out 0 158255 bytes_in 0 158255 station_ip 5.120.171.75 158255 port 648 158255 unique_id port 158255 remote_ip 10.8.0.14 158256 username aminvpn 158256 mac 158256 bytes_out 0 158256 bytes_in 0 158256 station_ip 113.203.53.225 158256 port 650 158256 unique_id port 158256 remote_ip 10.8.0.14 158258 username mosi 158258 mac 158258 bytes_out 2026 158258 bytes_in 4241 158258 station_ip 151.235.89.191 158258 port 631 158258 unique_id port 158258 remote_ip 10.8.0.138 158259 username aminvpn 158259 mac 158259 bytes_out 0 158259 bytes_in 0 158259 station_ip 5.120.171.75 158259 port 648 158259 unique_id port 158259 remote_ip 10.8.0.14 158260 username asma2026 158260 mac 158260 bytes_out 0 158260 bytes_in 0 158260 station_ip 37.129.139.56 158260 port 334 158260 unique_id port 158260 remote_ip 10.8.1.122 158262 username aminvpn 158262 mac 158262 bytes_out 8274 158262 bytes_in 10878 158262 station_ip 113.203.53.225 158262 port 631 158262 unique_id port 158262 remote_ip 10.8.0.14 158265 username kordestani 158265 mac 158265 bytes_out 3971555 158265 bytes_in 52874559 158265 station_ip 151.235.79.223 158265 port 645 158265 unique_id port 158265 remote_ip 10.8.0.74 158269 username hashtadani4 158269 kill_reason Another user logged on this global unique id 158269 mac 158269 bytes_out 0 158269 bytes_in 0 158269 station_ip 83.122.245.120 158269 port 649 158269 unique_id port 158282 username aminvpn 158282 mac 158282 bytes_out 0 158282 bytes_in 0 158282 station_ip 5.120.171.75 158282 port 632 158282 unique_id port 158282 remote_ip 10.8.0.14 158283 username asma2026 158283 mac 158283 bytes_out 0 158283 bytes_in 0 158283 station_ip 37.129.139.56 158283 port 631 158283 unique_id port 158283 remote_ip 10.8.0.94 158290 username farhad2 158290 kill_reason Another user logged on this global unique id 158290 mac 158290 bytes_out 0 158290 bytes_in 0 158290 station_ip 5.119.50.65 158290 port 609 158290 unique_id port 158291 username aminvpn 158291 mac 158235 bytes_in 0 158235 station_ip 37.129.52.124 158235 port 336 158235 unique_id port 158235 remote_ip 10.8.1.218 158236 username tahmasebi 158236 mac 158236 bytes_out 8603 158236 bytes_in 14226 158236 station_ip 5.119.240.221 158236 port 631 158236 unique_id port 158236 remote_ip 10.8.0.42 158240 username hashtadani4 158240 kill_reason Another user logged on this global unique id 158240 mac 158240 bytes_out 0 158240 bytes_in 0 158240 station_ip 83.122.245.120 158240 port 649 158240 unique_id port 158244 username khademi 158244 kill_reason Another user logged on this global unique id 158244 mac 158244 bytes_out 0 158244 bytes_in 0 158244 station_ip 113.203.78.111 158244 port 614 158244 unique_id port 158245 username aminvpn 158245 mac 158245 bytes_out 12225 158245 bytes_in 15324 158245 station_ip 113.203.53.225 158245 port 641 158245 unique_id port 158245 remote_ip 10.8.0.14 158246 username aminvpn 158246 mac 158246 bytes_out 29527 158246 bytes_in 42733 158246 station_ip 5.120.171.75 158246 port 613 158246 unique_id port 158246 remote_ip 10.8.0.14 158249 username mosi 158249 mac 158249 bytes_out 2490768 158249 bytes_in 30679539 158249 station_ip 151.235.89.191 158249 port 648 158249 unique_id port 158249 remote_ip 10.8.0.138 158251 username aminvpn 158251 mac 158251 bytes_out 0 158251 bytes_in 0 158251 station_ip 113.203.53.225 158251 port 631 158251 unique_id port 158251 remote_ip 10.8.0.14 158254 username asma2026 158254 kill_reason Another user logged on this global unique id 158254 mac 158254 bytes_out 0 158254 bytes_in 0 158254 station_ip 37.129.139.56 158254 port 632 158254 unique_id port 158254 remote_ip 10.8.0.94 158263 username asma2026 158263 mac 158263 bytes_out 0 158263 bytes_in 0 158263 station_ip 37.129.139.56 158263 port 631 158263 unique_id port 158263 remote_ip 10.8.0.94 158264 username aminvpn 158264 mac 158264 bytes_out 0 158264 bytes_in 0 158264 station_ip 5.120.171.75 158264 port 632 158264 unique_id port 158264 remote_ip 10.8.0.14 158267 username barzegar 158267 mac 158267 bytes_out 94636 158267 bytes_in 128363 158267 station_ip 5.119.251.3 158267 port 641 158267 unique_id port 158267 remote_ip 10.8.0.234 158271 username asma2026 158271 mac 158271 bytes_out 0 158271 bytes_in 0 158271 station_ip 37.129.139.56 158271 port 641 158271 unique_id port 158271 remote_ip 10.8.0.94 158272 username aminvpn 158272 mac 158272 bytes_out 44764 158272 bytes_in 56678 158272 station_ip 113.203.53.225 158272 port 631 158272 unique_id port 158272 remote_ip 10.8.0.14 158275 username farhad2 158275 kill_reason Another user logged on this global unique id 158275 mac 158275 bytes_out 0 158275 bytes_in 0 158275 station_ip 5.119.50.65 158275 port 609 158275 unique_id port 158275 remote_ip 10.8.0.190 158277 username mohammadjavad 158277 mac 158277 bytes_out 435455 158277 bytes_in 5182135 158277 station_ip 83.122.59.64 158277 port 632 158277 unique_id port 158277 remote_ip 10.8.0.142 158280 username mehdizare 158280 kill_reason Another user logged on this global unique id 158280 mac 158280 bytes_out 0 158280 bytes_in 0 158280 station_ip 83.122.87.157 158280 port 333 158280 unique_id port 158280 remote_ip 10.8.1.42 158285 username godarzi 158285 kill_reason Another user logged on this global unique id 158285 mac 158285 bytes_out 0 158285 bytes_in 0 158285 station_ip 5.202.12.121 158285 port 331 158285 unique_id port 158285 remote_ip 10.8.1.230 158293 username barzegar 158293 mac 158293 bytes_out 2869 158293 bytes_in 5252 158293 station_ip 5.119.251.3 158286 username hassan 158286 mac 158286 bytes_out 565816 158286 bytes_in 13299279 158286 station_ip 5.119.66.193 158286 port 641 158286 unique_id port 158286 remote_ip 10.8.0.122 158287 username mohammadjavad 158287 mac 158287 bytes_out 230922 158287 bytes_in 2358736 158287 station_ip 83.123.92.231 158287 port 648 158287 unique_id port 158287 remote_ip 10.8.0.142 158288 username asma2026 158288 mac 158288 bytes_out 0 158288 bytes_in 0 158288 station_ip 37.129.139.56 158288 port 632 158288 unique_id port 158288 remote_ip 10.8.0.94 158289 username sabaghnezhad 158289 mac 158289 bytes_out 0 158289 bytes_in 0 158289 station_ip 83.122.89.11 158289 port 338 158289 unique_id port 158289 remote_ip 10.8.1.130 158292 username asma2026 158292 kill_reason Another user logged on this global unique id 158292 mac 158292 bytes_out 0 158292 bytes_in 0 158292 station_ip 37.129.139.56 158292 port 632 158292 unique_id port 158292 remote_ip 10.8.0.94 158296 username alipour 158296 mac 158296 bytes_out 0 158296 bytes_in 0 158296 station_ip 83.123.16.90 158296 port 325 158296 unique_id port 158296 remote_ip 10.8.1.50 158297 username aminvpn 158297 mac 158297 bytes_out 0 158297 bytes_in 0 158297 station_ip 113.203.53.225 158297 port 613 158297 unique_id port 158297 remote_ip 10.8.0.14 158301 username aminvpn 158301 mac 158301 bytes_out 0 158301 bytes_in 0 158301 station_ip 113.203.53.225 158301 port 641 158301 unique_id port 158301 remote_ip 10.8.0.14 158303 username aminvpn 158303 mac 158303 bytes_out 0 158303 bytes_in 0 158303 station_ip 5.120.171.75 158303 port 650 158303 unique_id port 158303 remote_ip 10.8.0.14 158305 username shadkam 158305 mac 158305 bytes_out 734398 158305 bytes_in 5379093 158305 station_ip 113.203.100.170 158305 port 645 158305 unique_id port 158305 remote_ip 10.8.0.62 158308 username yaghobi 158308 mac 158308 bytes_out 0 158308 bytes_in 0 158308 station_ip 113.203.61.130 158308 port 645 158308 unique_id port 158308 remote_ip 10.8.0.198 158314 username aminvpn 158314 mac 158314 bytes_out 0 158314 bytes_in 0 158314 station_ip 113.203.53.225 158314 port 632 158314 unique_id port 158314 remote_ip 10.8.0.14 158319 username forozandeh1 158319 mac 158319 bytes_out 498220 158319 bytes_in 4151340 158319 station_ip 83.122.133.211 158319 port 641 158319 unique_id port 158319 remote_ip 10.8.0.130 158322 username farhad2 158322 mac 158322 bytes_out 0 158322 bytes_in 0 158322 station_ip 5.119.50.65 158322 port 609 158322 unique_id port 158324 username sabaghnezhad 158324 mac 158324 bytes_out 253868 158324 bytes_in 168588 158324 station_ip 83.122.89.11 158324 port 648 158324 unique_id port 158324 remote_ip 10.8.0.186 158326 username sabaghnezhad 158326 mac 158326 bytes_out 0 158326 bytes_in 0 158326 station_ip 83.122.89.11 158326 port 641 158326 unique_id port 158326 remote_ip 10.8.0.186 158327 username aminvpn 158327 mac 158327 bytes_out 0 158327 bytes_in 0 158327 station_ip 5.120.171.75 158327 port 645 158327 unique_id port 158327 remote_ip 10.8.0.14 158328 username aminvpn 158328 mac 158328 bytes_out 0 158328 bytes_in 0 158328 station_ip 5.120.132.101 158328 port 336 158328 unique_id port 158328 remote_ip 10.8.1.6 158330 username hashtadani4 158330 mac 158330 bytes_out 3726 158330 bytes_in 4865 158330 station_ip 83.122.245.120 158330 port 645 158330 unique_id port 158330 remote_ip 10.8.0.182 158334 username hashtadani4 158334 mac 158291 bytes_out 14317 158291 bytes_in 25919 158291 station_ip 113.203.53.225 158291 port 613 158291 unique_id port 158291 remote_ip 10.8.0.14 158294 username godarzi 158294 kill_reason Another user logged on this global unique id 158294 mac 158294 bytes_out 0 158294 bytes_in 0 158294 station_ip 5.202.12.121 158294 port 331 158294 unique_id port 158295 username aminvpn 158295 mac 158295 bytes_out 238322 158295 bytes_in 1421097 158295 station_ip 5.120.171.75 158295 port 651 158295 unique_id port 158295 remote_ip 10.8.0.14 158298 username kalantary 158298 mac 158298 bytes_out 458094 158298 bytes_in 4097639 158298 station_ip 113.203.125.125 158298 port 641 158298 unique_id port 158298 remote_ip 10.8.0.98 158300 username hashtadani4 158300 kill_reason Another user logged on this global unique id 158300 mac 158300 bytes_out 0 158300 bytes_in 0 158300 station_ip 83.122.245.120 158300 port 649 158300 unique_id port 158304 username aminvpn 158304 mac 158304 bytes_out 0 158304 bytes_in 0 158304 station_ip 113.203.53.225 158304 port 651 158304 unique_id port 158304 remote_ip 10.8.0.14 158306 username asma2026 158306 mac 158306 bytes_out 0 158306 bytes_in 0 158306 station_ip 37.129.139.56 158306 port 632 158306 unique_id port 158309 username aminvpn 158309 mac 158309 bytes_out 0 158309 bytes_in 0 158309 station_ip 5.120.171.75 158309 port 650 158309 unique_id port 158309 remote_ip 10.8.0.14 158311 username aminvpn 158311 mac 158311 bytes_out 0 158311 bytes_in 0 158311 station_ip 5.120.171.75 158311 port 645 158311 unique_id port 158311 remote_ip 10.8.0.14 158315 username farhad2 158315 kill_reason Another user logged on this global unique id 158315 mac 158315 bytes_out 0 158315 bytes_in 0 158315 station_ip 5.119.50.65 158315 port 609 158315 unique_id port 158316 username aminvpn 158316 mac 158316 bytes_out 0 158316 bytes_in 0 158316 station_ip 5.120.171.75 158316 port 645 158316 unique_id port 158316 remote_ip 10.8.0.14 158320 username aminvpn 158320 mac 158320 bytes_out 0 158320 bytes_in 0 158320 station_ip 113.203.53.225 158320 port 632 158320 unique_id port 158320 remote_ip 10.8.0.14 158323 username aminvpn 158323 mac 158323 bytes_out 0 158323 bytes_in 0 158323 station_ip 5.120.171.75 158323 port 641 158323 unique_id port 158323 remote_ip 10.8.0.14 158325 username aminvpn 158325 mac 158325 bytes_out 0 158325 bytes_in 0 158325 station_ip 113.203.53.225 158325 port 609 158325 unique_id port 158325 remote_ip 10.8.0.14 158329 username hashtadani4 158329 mac 158329 bytes_out 0 158329 bytes_in 0 158329 station_ip 83.122.245.120 158329 port 649 158329 unique_id port 158331 username hashtadani4 158331 mac 158331 bytes_out 0 158331 bytes_in 0 158331 station_ip 83.122.245.120 158331 port 645 158331 unique_id port 158331 remote_ip 10.8.0.182 158333 username hashtadani4 158333 mac 158333 bytes_out 0 158333 bytes_in 0 158333 station_ip 83.122.245.120 158333 port 645 158333 unique_id port 158333 remote_ip 10.8.0.182 158336 username sabaghnezhad 158336 mac 158336 bytes_out 47086 158336 bytes_in 45819 158336 station_ip 83.122.89.11 158336 port 609 158336 unique_id port 158336 remote_ip 10.8.0.186 158338 username hashtadani4 158338 mac 158338 bytes_out 0 158338 bytes_in 0 158338 station_ip 83.122.245.120 158338 port 645 158338 unique_id port 158338 remote_ip 10.8.0.182 158342 username hashtadani4 158342 mac 158342 bytes_out 0 158342 bytes_in 0 158342 station_ip 83.122.245.120 158293 port 650 158293 unique_id port 158293 remote_ip 10.8.0.234 158299 username aminvpn 158299 mac 158299 bytes_out 0 158299 bytes_in 0 158299 station_ip 5.120.171.75 158299 port 650 158299 unique_id port 158299 remote_ip 10.8.0.14 158302 username farhad2 158302 kill_reason Another user logged on this global unique id 158302 mac 158302 bytes_out 0 158302 bytes_in 0 158302 station_ip 5.119.50.65 158302 port 609 158302 unique_id port 158307 username mehdizare 158307 kill_reason Another user logged on this global unique id 158307 mac 158307 bytes_out 0 158307 bytes_in 0 158307 station_ip 83.122.87.157 158307 port 333 158307 unique_id port 158310 username aminvpn 158310 mac 158310 bytes_out 0 158310 bytes_in 0 158310 station_ip 113.203.53.225 158310 port 632 158310 unique_id port 158310 remote_ip 10.8.0.14 158312 username aminvpn 158312 mac 158312 bytes_out 0 158312 bytes_in 0 158312 station_ip 113.203.53.225 158312 port 632 158312 unique_id port 158312 remote_ip 10.8.0.14 158313 username aminvpn 158313 mac 158313 bytes_out 0 158313 bytes_in 0 158313 station_ip 5.120.171.75 158313 port 645 158313 unique_id port 158313 remote_ip 10.8.0.14 158317 username aminvpn 158317 mac 158317 bytes_out 0 158317 bytes_in 0 158317 station_ip 113.203.53.225 158317 port 632 158317 unique_id port 158317 remote_ip 10.8.0.14 158318 username aminvpn 158318 mac 158318 bytes_out 0 158318 bytes_in 0 158318 station_ip 5.120.171.75 158318 port 645 158318 unique_id port 158318 remote_ip 10.8.0.14 158321 username barzegar 158321 mac 158321 bytes_out 0 158321 bytes_in 0 158321 station_ip 5.119.251.3 158321 port 645 158321 unique_id port 158321 remote_ip 10.8.0.234 158332 username godarzi 158332 mac 158332 bytes_out 0 158332 bytes_in 0 158332 station_ip 5.202.12.121 158332 port 331 158332 unique_id port 158335 username aminvpn 158335 mac 158335 bytes_out 0 158335 bytes_in 0 158335 station_ip 5.120.171.75 158335 port 325 158335 unique_id port 158335 remote_ip 10.8.1.6 158337 username aminvpn 158337 mac 158337 bytes_out 0 158337 bytes_in 0 158337 station_ip 5.120.132.101 158337 port 331 158337 unique_id port 158337 remote_ip 10.8.1.6 158340 username milan 158340 kill_reason Another user logged on this global unique id 158340 mac 158340 bytes_out 0 158340 bytes_in 0 158340 station_ip 5.120.56.28 158340 port 647 158340 unique_id port 158344 username hashtadani4 158344 mac 158344 bytes_out 0 158344 bytes_in 0 158344 station_ip 83.122.245.120 158344 port 609 158344 unique_id port 158344 remote_ip 10.8.0.182 158348 username hashtadani4 158348 mac 158348 bytes_out 0 158348 bytes_in 0 158348 station_ip 83.122.245.120 158348 port 609 158348 unique_id port 158348 remote_ip 10.8.0.182 158350 username hashtadani4 158350 mac 158350 bytes_out 0 158350 bytes_in 0 158350 station_ip 83.122.245.120 158350 port 609 158350 unique_id port 158350 remote_ip 10.8.0.182 158353 username shadkam 158353 mac 158353 bytes_out 182697 158353 bytes_in 478328 158353 station_ip 37.129.158.102 158353 port 648 158353 unique_id port 158353 remote_ip 10.8.0.62 158355 username barzegar 158355 mac 158355 bytes_out 0 158355 bytes_in 0 158355 station_ip 5.119.251.3 158355 port 645 158355 unique_id port 158355 remote_ip 10.8.0.234 158357 username aminvpn 158357 mac 158357 bytes_out 0 158357 bytes_in 0 158357 station_ip 5.120.171.75 158357 port 325 158357 unique_id port 158357 remote_ip 10.8.1.6 158334 bytes_out 0 158334 bytes_in 0 158334 station_ip 83.122.245.120 158334 port 645 158334 unique_id port 158334 remote_ip 10.8.0.182 158339 username hassan 158339 mac 158339 bytes_out 0 158339 bytes_in 0 158339 station_ip 5.119.66.193 158339 port 335 158339 unique_id port 158339 remote_ip 10.8.1.138 158341 username hashtadani4 158341 mac 158341 bytes_out 0 158341 bytes_in 0 158341 station_ip 83.122.245.120 158341 port 609 158341 unique_id port 158341 remote_ip 10.8.0.182 158343 username shadkam 158343 mac 158343 bytes_out 402551 158343 bytes_in 2734283 158343 station_ip 83.123.19.25 158343 port 648 158343 unique_id port 158343 remote_ip 10.8.0.62 158345 username hashtadani4 158345 mac 158345 bytes_out 0 158345 bytes_in 0 158345 station_ip 83.122.245.120 158345 port 609 158345 unique_id port 158345 remote_ip 10.8.0.182 158346 username hashtadani4 158346 mac 158346 bytes_out 0 158346 bytes_in 0 158346 station_ip 83.122.245.120 158346 port 609 158346 unique_id port 158346 remote_ip 10.8.0.182 158347 username shadkam 158347 mac 158347 bytes_out 48913 158347 bytes_in 1200636 158347 station_ip 37.129.158.102 158347 port 645 158347 unique_id port 158347 remote_ip 10.8.0.62 158349 username hashtadani4 158349 mac 158349 bytes_out 0 158349 bytes_in 0 158349 station_ip 83.122.245.120 158349 port 609 158349 unique_id port 158349 remote_ip 10.8.0.182 158351 username hashtadani4 158351 mac 158351 bytes_out 0 158351 bytes_in 0 158351 station_ip 83.122.245.120 158351 port 609 158351 unique_id port 158351 remote_ip 10.8.0.182 158352 username aminvpn 158352 mac 158352 bytes_out 0 158352 bytes_in 0 158352 station_ip 5.120.171.75 158352 port 325 158352 unique_id port 158352 remote_ip 10.8.1.6 158354 username aminvpn 158354 mac 158354 bytes_out 0 158354 bytes_in 0 158354 station_ip 5.120.132.101 158354 port 335 158354 unique_id port 158354 remote_ip 10.8.1.6 158360 username hashtadani4 158360 mac 158360 bytes_out 0 158360 bytes_in 0 158360 station_ip 83.122.245.120 158360 port 609 158360 unique_id port 158360 remote_ip 10.8.0.182 158361 username hashtadani4 158361 mac 158361 bytes_out 2164 158361 bytes_in 4441 158361 station_ip 83.122.245.120 158361 port 609 158361 unique_id port 158361 remote_ip 10.8.0.182 158362 username hashtadani4 158362 mac 158362 bytes_out 0 158362 bytes_in 0 158362 station_ip 83.122.245.120 158362 port 609 158362 unique_id port 158362 remote_ip 10.8.0.182 158363 username hashtadani4 158363 mac 158363 bytes_out 0 158363 bytes_in 0 158363 station_ip 83.122.245.120 158363 port 609 158363 unique_id port 158363 remote_ip 10.8.0.182 158367 username aminvpn 158367 mac 158367 bytes_out 0 158367 bytes_in 0 158367 station_ip 5.120.132.101 158367 port 335 158367 unique_id port 158367 remote_ip 10.8.1.6 158370 username aminvpn 158370 mac 158370 bytes_out 0 158370 bytes_in 0 158370 station_ip 5.120.171.75 158370 port 325 158370 unique_id port 158370 remote_ip 10.8.1.6 158374 username farhad2 158374 mac 158374 bytes_out 1566847 158374 bytes_in 14548925 158374 station_ip 5.119.50.65 158374 port 632 158374 unique_id port 158374 remote_ip 10.8.0.190 158375 username hashtadani4 158375 mac 158375 bytes_out 0 158375 bytes_in 0 158375 station_ip 83.122.245.120 158375 port 609 158375 unique_id port 158375 remote_ip 10.8.0.182 158376 username hashtadani4 158376 mac 158376 bytes_out 0 158376 bytes_in 0 158342 port 609 158342 unique_id port 158342 remote_ip 10.8.0.182 158356 username hashtadani4 158356 mac 158356 bytes_out 0 158356 bytes_in 0 158356 station_ip 83.122.245.120 158356 port 609 158356 unique_id port 158356 remote_ip 10.8.0.182 158358 username hashtadani4 158358 mac 158358 bytes_out 0 158358 bytes_in 0 158358 station_ip 83.122.245.120 158358 port 609 158358 unique_id port 158358 remote_ip 10.8.0.182 158364 username hashtadani4 158364 mac 158364 bytes_out 0 158364 bytes_in 0 158364 station_ip 83.122.245.120 158364 port 609 158364 unique_id port 158364 remote_ip 10.8.0.182 158365 username hashtadani4 158365 mac 158365 bytes_out 0 158365 bytes_in 0 158365 station_ip 83.122.245.120 158365 port 609 158365 unique_id port 158365 remote_ip 10.8.0.182 158368 username shadkam 158368 mac 158368 bytes_out 1702 158368 bytes_in 5040 158368 station_ip 83.122.171.151 158368 port 645 158368 unique_id port 158368 remote_ip 10.8.0.62 158371 username aminvpn 158371 mac 158371 bytes_out 333771 158371 bytes_in 5619259 158371 station_ip 113.203.53.225 158371 port 641 158371 unique_id port 158371 remote_ip 10.8.0.14 158377 username hashtadani4 158377 mac 158377 bytes_out 0 158377 bytes_in 0 158377 station_ip 83.122.245.120 158377 port 609 158377 unique_id port 158377 remote_ip 10.8.0.182 158378 username hashtadani4 158378 mac 158378 bytes_out 0 158378 bytes_in 0 158378 station_ip 83.122.245.120 158378 port 641 158378 unique_id port 158378 remote_ip 10.8.0.182 158379 username hashtadani4 158379 mac 158379 bytes_out 0 158379 bytes_in 0 158379 station_ip 83.122.245.120 158379 port 645 158379 unique_id port 158379 remote_ip 10.8.0.182 158381 username aminvpn 158381 mac 158381 bytes_out 0 158381 bytes_in 0 158381 station_ip 5.120.171.75 158381 port 336 158381 unique_id port 158381 remote_ip 10.8.1.6 158387 username hashtadani4 158387 mac 158387 bytes_out 0 158387 bytes_in 0 158387 station_ip 83.122.245.120 158387 port 336 158387 unique_id port 158387 remote_ip 10.8.1.142 158388 username hassan 158388 mac 158388 bytes_out 0 158388 bytes_in 0 158388 station_ip 5.120.46.241 158388 port 331 158388 unique_id port 158388 remote_ip 10.8.1.138 158392 username hashtadani4 158392 mac 158392 bytes_out 0 158392 bytes_in 0 158392 station_ip 83.122.245.120 158392 port 631 158392 unique_id port 158392 remote_ip 10.8.0.182 158394 username hashtadani4 158394 mac 158394 bytes_out 0 158394 bytes_in 0 158394 station_ip 83.122.245.120 158394 port 631 158394 unique_id port 158394 remote_ip 10.8.0.182 158397 username hashtadani4 158397 mac 158397 bytes_out 0 158397 bytes_in 0 158397 station_ip 83.122.245.120 158397 port 631 158397 unique_id port 158397 remote_ip 10.8.0.182 158401 username hassan 158401 mac 158401 bytes_out 0 158401 bytes_in 0 158401 station_ip 5.120.46.241 158401 port 331 158401 unique_id port 158401 remote_ip 10.8.1.138 158405 username hashtadani4 158405 mac 158405 bytes_out 0 158405 bytes_in 0 158405 station_ip 83.122.245.120 158405 port 631 158405 unique_id port 158405 remote_ip 10.8.0.182 158406 username asma2026 158406 mac 158406 bytes_out 0 158406 bytes_in 0 158406 station_ip 37.129.139.56 158406 port 335 158406 unique_id port 158406 remote_ip 10.8.1.122 158408 username aminvpn 158408 mac 158408 bytes_out 68211 158408 bytes_in 167051 158408 station_ip 113.203.53.225 158408 port 609 158408 unique_id port 158359 username hashtadani4 158359 mac 158359 bytes_out 0 158359 bytes_in 0 158359 station_ip 83.122.245.120 158359 port 609 158359 unique_id port 158359 remote_ip 10.8.0.182 158366 username hashtadani4 158366 mac 158366 bytes_out 0 158366 bytes_in 0 158366 station_ip 83.122.245.120 158366 port 609 158366 unique_id port 158366 remote_ip 10.8.0.182 158369 username hashtadani4 158369 mac 158369 bytes_out 0 158369 bytes_in 0 158369 station_ip 83.122.245.120 158369 port 609 158369 unique_id port 158369 remote_ip 10.8.0.182 158372 username hashtadani4 158372 mac 158372 bytes_out 0 158372 bytes_in 0 158372 station_ip 83.122.245.120 158372 port 609 158372 unique_id port 158372 remote_ip 10.8.0.182 158373 username aminvpn 158373 mac 158373 bytes_out 0 158373 bytes_in 0 158373 station_ip 5.120.132.101 158373 port 335 158373 unique_id port 158373 remote_ip 10.8.1.6 158380 username hashtadani4 158380 mac 158380 bytes_out 0 158380 bytes_in 0 158380 station_ip 83.122.245.120 158380 port 645 158380 unique_id port 158380 remote_ip 10.8.0.182 158382 username jamali 158382 mac 158382 bytes_out 3364599 158382 bytes_in 41860884 158382 station_ip 5.119.88.219 158382 port 631 158382 unique_id port 158382 remote_ip 10.8.0.70 158384 username hashtadani4 158384 mac 158384 bytes_out 82176 158384 bytes_in 1618593 158384 station_ip 83.122.245.120 158384 port 645 158384 unique_id port 158384 remote_ip 10.8.0.182 158385 username hashtadani4 158385 mac 158385 bytes_out 0 158385 bytes_in 0 158385 station_ip 83.122.245.120 158385 port 631 158385 unique_id port 158385 remote_ip 10.8.0.182 158390 username hashtadani4 158390 mac 158390 bytes_out 0 158390 bytes_in 0 158390 station_ip 83.122.245.120 158390 port 631 158390 unique_id port 158390 remote_ip 10.8.0.182 158393 username hashtadani4 158393 mac 158393 bytes_out 0 158393 bytes_in 0 158393 station_ip 83.122.245.120 158393 port 631 158393 unique_id port 158393 remote_ip 10.8.0.182 158395 username hashtadani4 158395 mac 158395 bytes_out 0 158395 bytes_in 0 158395 station_ip 83.122.245.120 158395 port 631 158395 unique_id port 158395 remote_ip 10.8.0.182 158396 username aminvpn 158396 mac 158396 bytes_out 0 158396 bytes_in 0 158396 station_ip 5.120.132.101 158396 port 338 158396 unique_id port 158396 remote_ip 10.8.1.6 158398 username hashtadani4 158398 mac 158398 bytes_out 0 158398 bytes_in 0 158398 station_ip 83.122.245.120 158398 port 631 158398 unique_id port 158398 remote_ip 10.8.0.182 158400 username hashtadani4 158400 mac 158400 bytes_out 0 158400 bytes_in 0 158400 station_ip 83.122.245.120 158400 port 631 158400 unique_id port 158400 remote_ip 10.8.0.182 158402 username hashtadani4 158402 mac 158402 bytes_out 0 158402 bytes_in 0 158402 station_ip 83.122.245.120 158402 port 631 158402 unique_id port 158402 remote_ip 10.8.0.182 158403 username aminvpn 158403 mac 158403 bytes_out 0 158403 bytes_in 0 158403 station_ip 5.120.132.101 158403 port 338 158403 unique_id port 158403 remote_ip 10.8.1.6 158409 username hashtadani4 158409 mac 158409 bytes_out 0 158409 bytes_in 0 158409 station_ip 83.122.245.120 158409 port 631 158409 unique_id port 158409 remote_ip 10.8.0.182 158410 username hashtadani4 158410 mac 158410 bytes_out 0 158410 bytes_in 0 158410 station_ip 83.122.245.120 158410 port 609 158410 unique_id port 158410 remote_ip 10.8.0.182 158414 username hashtadani4 158414 mac 158376 station_ip 83.122.245.120 158376 port 609 158376 unique_id port 158376 remote_ip 10.8.0.182 158383 username jamali 158383 mac 158383 bytes_out 7427 158383 bytes_in 10479 158383 station_ip 5.119.88.219 158383 port 648 158383 unique_id port 158383 remote_ip 10.8.0.70 158386 username hashtadani4 158386 mac 158386 bytes_out 0 158386 bytes_in 0 158386 station_ip 83.122.245.120 158386 port 631 158386 unique_id port 158386 remote_ip 10.8.0.182 158389 username asma2026 158389 mac 158389 bytes_out 0 158389 bytes_in 0 158389 station_ip 37.129.139.56 158389 port 335 158389 unique_id port 158389 remote_ip 10.8.1.122 158391 username barzegar 158391 mac 158391 bytes_out 0 158391 bytes_in 0 158391 station_ip 5.119.251.3 158391 port 645 158391 unique_id port 158391 remote_ip 10.8.0.234 158399 username aminvpn 158399 mac 158399 bytes_out 0 158399 bytes_in 0 158399 station_ip 5.120.171.75 158399 port 336 158399 unique_id port 158399 remote_ip 10.8.1.6 158404 username hashtadani4 158404 mac 158404 bytes_out 0 158404 bytes_in 0 158404 station_ip 83.122.245.120 158404 port 631 158404 unique_id port 158404 remote_ip 10.8.0.182 158407 username hashtadani4 158407 mac 158407 bytes_out 0 158407 bytes_in 0 158407 station_ip 83.122.245.120 158407 port 631 158407 unique_id port 158407 remote_ip 10.8.0.182 158411 username farhad2 158411 mac 158411 bytes_out 454661 158411 bytes_in 1977972 158411 station_ip 5.119.50.65 158411 port 632 158411 unique_id port 158411 remote_ip 10.8.0.190 158412 username farhad2 158412 mac 158412 bytes_out 0 158412 bytes_in 0 158412 station_ip 5.119.50.65 158412 port 631 158412 unique_id port 158412 remote_ip 10.8.0.190 158413 username hashtadani4 158413 mac 158413 bytes_out 0 158413 bytes_in 0 158413 station_ip 83.122.245.120 158413 port 336 158413 unique_id port 158413 remote_ip 10.8.1.142 158424 username hassan 158424 mac 158424 bytes_out 1000216 158424 bytes_in 9608870 158424 station_ip 5.120.46.241 158424 port 649 158424 unique_id port 158424 remote_ip 10.8.0.122 158426 username hashtadani4 158426 mac 158426 bytes_out 2111 158426 bytes_in 4388 158426 station_ip 83.122.245.120 158426 port 632 158426 unique_id port 158426 remote_ip 10.8.0.182 158427 username hashtadani4 158427 mac 158427 bytes_out 0 158427 bytes_in 0 158427 station_ip 83.122.245.120 158427 port 632 158427 unique_id port 158427 remote_ip 10.8.0.182 158435 username rezaei 158435 mac 158435 bytes_out 0 158435 bytes_in 0 158435 station_ip 5.119.53.117 158435 port 328 158435 unique_id port 158435 remote_ip 10.8.1.58 158438 username hashtadani4 158438 mac 158438 bytes_out 0 158438 bytes_in 0 158438 station_ip 83.122.245.120 158438 port 649 158438 unique_id port 158438 remote_ip 10.8.0.182 158440 username barzegar 158440 mac 158440 bytes_out 0 158440 bytes_in 0 158440 station_ip 5.119.251.3 158440 port 328 158440 unique_id port 158440 remote_ip 10.8.1.174 158446 username godarzi 158446 mac 158446 bytes_out 0 158446 bytes_in 0 158446 station_ip 5.202.12.121 158446 port 325 158446 unique_id port 158446 remote_ip 10.8.1.230 158448 username hashtadani4 158448 mac 158448 bytes_out 0 158448 bytes_in 0 158448 station_ip 83.122.245.120 158448 port 632 158448 unique_id port 158448 remote_ip 10.8.0.182 158450 username nilufarrajaei 158450 kill_reason Another user logged on this global unique id 158450 mac 158450 bytes_out 0 158450 bytes_in 0 158450 station_ip 83.122.210.108 158408 remote_ip 10.8.0.14 158416 username farhad2 158416 mac 158416 bytes_out 0 158416 bytes_in 0 158416 station_ip 5.119.50.65 158416 port 609 158416 unique_id port 158416 remote_ip 10.8.0.190 158418 username hashtadani4 158418 mac 158418 bytes_out 0 158418 bytes_in 0 158418 station_ip 83.122.245.120 158418 port 609 158418 unique_id port 158418 remote_ip 10.8.0.182 158419 username asma2026 158419 mac 158419 bytes_out 0 158419 bytes_in 0 158419 station_ip 37.129.139.56 158419 port 335 158419 unique_id port 158419 remote_ip 10.8.1.122 158421 username hashtadani4 158421 mac 158421 bytes_out 0 158421 bytes_in 0 158421 station_ip 83.122.245.120 158421 port 632 158421 unique_id port 158421 remote_ip 10.8.0.182 158422 username farhad2 158422 mac 158422 bytes_out 0 158422 bytes_in 0 158422 station_ip 5.119.50.65 158422 port 609 158422 unique_id port 158422 remote_ip 10.8.0.190 158425 username farhad2 158425 mac 158425 bytes_out 132456 158425 bytes_in 475934 158425 station_ip 5.119.50.65 158425 port 609 158425 unique_id port 158425 remote_ip 10.8.0.190 158428 username hashtadani4 158428 mac 158428 bytes_out 0 158428 bytes_in 0 158428 station_ip 83.122.245.120 158428 port 632 158428 unique_id port 158428 remote_ip 10.8.0.182 158429 username hashtadani4 158429 mac 158429 bytes_out 0 158429 bytes_in 0 158429 station_ip 83.122.245.120 158429 port 649 158429 unique_id port 158429 remote_ip 10.8.0.182 158430 username hashtadani4 158430 mac 158430 bytes_out 0 158430 bytes_in 0 158430 station_ip 83.122.245.120 158430 port 649 158430 unique_id port 158430 remote_ip 10.8.0.182 158432 username aminvpn 158432 mac 158432 bytes_out 0 158432 bytes_in 0 158432 station_ip 5.120.132.101 158432 port 335 158432 unique_id port 158432 remote_ip 10.8.1.6 158434 username hashtadani4 158434 mac 158434 bytes_out 0 158434 bytes_in 0 158434 station_ip 83.122.245.120 158434 port 649 158434 unique_id port 158434 remote_ip 10.8.0.182 158436 username hashtadani4 158436 mac 158436 bytes_out 0 158436 bytes_in 0 158436 station_ip 83.122.245.120 158436 port 649 158436 unique_id port 158436 remote_ip 10.8.0.182 158443 username aminvpn 158443 mac 158443 bytes_out 0 158443 bytes_in 0 158443 station_ip 5.120.132.101 158443 port 335 158443 unique_id port 158443 remote_ip 10.8.1.6 158451 username hashtadani4 158451 mac 158451 bytes_out 0 158451 bytes_in 0 158451 station_ip 83.122.245.120 158451 port 632 158451 unique_id port 158451 remote_ip 10.8.0.182 158456 username farhad2 158456 mac 158456 bytes_out 419555 158456 bytes_in 1010267 158456 station_ip 5.119.50.65 158456 port 609 158456 unique_id port 158456 remote_ip 10.8.0.190 158457 username hashtadani4 158457 mac 158457 bytes_out 0 158457 bytes_in 0 158457 station_ip 83.122.245.120 158457 port 328 158457 unique_id port 158457 remote_ip 10.8.1.142 158459 username hamid 158459 kill_reason Another user logged on this global unique id 158459 mac 158459 bytes_out 0 158459 bytes_in 0 158459 station_ip 83.122.15.69 158459 port 641 158459 unique_id port 158459 remote_ip 10.8.0.214 158461 username hashtadani4 158461 mac 158461 bytes_out 0 158461 bytes_in 0 158461 station_ip 83.122.245.120 158461 port 632 158461 unique_id port 158461 remote_ip 10.8.0.182 158462 username hashtadani4 158462 mac 158462 bytes_out 0 158462 bytes_in 0 158462 station_ip 83.122.245.120 158462 port 650 158462 unique_id port 158414 bytes_out 1644 158414 bytes_in 3948 158414 station_ip 83.122.245.120 158414 port 609 158414 unique_id port 158414 remote_ip 10.8.0.182 158415 username hashtadani4 158415 mac 158415 bytes_out 0 158415 bytes_in 0 158415 station_ip 83.122.245.120 158415 port 632 158415 unique_id port 158415 remote_ip 10.8.0.182 158417 username hashtadani4 158417 mac 158417 bytes_out 0 158417 bytes_in 0 158417 station_ip 83.122.245.120 158417 port 609 158417 unique_id port 158417 remote_ip 10.8.0.182 158420 username aminvpn 158420 mac 158420 bytes_out 0 158420 bytes_in 0 158420 station_ip 5.120.171.75 158420 port 331 158420 unique_id port 158420 remote_ip 10.8.1.6 158423 username houshang 158423 mac 158423 bytes_out 471922 158423 bytes_in 4040719 158423 station_ip 5.119.116.241 158423 port 645 158423 unique_id port 158423 remote_ip 10.8.0.134 158431 username hashtadani4 158431 mac 158431 bytes_out 0 158431 bytes_in 0 158431 station_ip 83.122.245.120 158431 port 649 158431 unique_id port 158431 remote_ip 10.8.0.182 158433 username aminvpn 158433 mac 158433 bytes_out 0 158433 bytes_in 0 158433 station_ip 5.120.171.75 158433 port 331 158433 unique_id port 158433 remote_ip 10.8.1.6 158437 username hashtadani4 158437 mac 158437 bytes_out 0 158437 bytes_in 0 158437 station_ip 83.122.245.120 158437 port 649 158437 unique_id port 158437 remote_ip 10.8.0.182 158439 username kalantary 158439 mac 158439 bytes_out 349413 158439 bytes_in 2285729 158439 station_ip 113.203.82.17 158439 port 632 158439 unique_id port 158439 remote_ip 10.8.0.98 158441 username hashtadani4 158441 mac 158441 bytes_out 0 158441 bytes_in 0 158441 station_ip 83.122.245.120 158441 port 632 158441 unique_id port 158441 remote_ip 10.8.0.182 158442 username hashtadani4 158442 mac 158442 bytes_out 0 158442 bytes_in 0 158442 station_ip 83.122.245.120 158442 port 632 158442 unique_id port 158442 remote_ip 10.8.0.182 158444 username hashtadani4 158444 mac 158444 bytes_out 0 158444 bytes_in 0 158444 station_ip 83.122.245.120 158444 port 632 158444 unique_id port 158444 remote_ip 10.8.0.182 158445 username hashtadani4 158445 mac 158445 bytes_out 0 158445 bytes_in 0 158445 station_ip 83.122.245.120 158445 port 632 158445 unique_id port 158445 remote_ip 10.8.0.182 158447 username pourshad 158447 kill_reason Another user logged on this global unique id 158447 mac 158447 bytes_out 0 158447 bytes_in 0 158447 station_ip 5.120.128.181 158447 port 334 158447 unique_id port 158447 remote_ip 10.8.1.154 158449 username hashtadani4 158449 mac 158449 bytes_out 0 158449 bytes_in 0 158449 station_ip 83.122.245.120 158449 port 632 158449 unique_id port 158449 remote_ip 10.8.0.182 158452 username hashtadani4 158452 mac 158452 bytes_out 0 158452 bytes_in 0 158452 station_ip 83.122.245.120 158452 port 632 158452 unique_id port 158452 remote_ip 10.8.0.182 158454 username hashtadani4 158454 mac 158454 bytes_out 0 158454 bytes_in 0 158454 station_ip 83.122.245.120 158454 port 632 158454 unique_id port 158454 remote_ip 10.8.0.182 158458 username barzegar 158458 mac 158458 bytes_out 0 158458 bytes_in 0 158458 station_ip 5.119.251.3 158458 port 325 158458 unique_id port 158458 remote_ip 10.8.1.174 158460 username hashtadani4 158460 mac 158460 bytes_out 0 158460 bytes_in 0 158460 station_ip 83.122.245.120 158460 port 632 158460 unique_id port 158460 remote_ip 10.8.0.182 158463 username hashtadani4 158463 mac 158450 port 631 158450 unique_id port 158450 remote_ip 10.8.0.206 158453 username hashtadani4 158453 mac 158453 bytes_out 0 158453 bytes_in 0 158453 station_ip 83.122.245.120 158453 port 632 158453 unique_id port 158453 remote_ip 10.8.0.182 158455 username aminvpn 158455 mac 158455 bytes_out 0 158455 bytes_in 0 158455 station_ip 5.120.171.75 158455 port 328 158455 unique_id port 158455 remote_ip 10.8.1.6 158468 username hashtadani4 158468 mac 158468 bytes_out 0 158468 bytes_in 0 158468 station_ip 83.122.245.120 158468 port 650 158468 unique_id port 158468 remote_ip 10.8.0.182 158471 username hashtadani4 158471 mac 158471 bytes_out 0 158471 bytes_in 0 158471 station_ip 83.122.245.120 158471 port 650 158471 unique_id port 158471 remote_ip 10.8.0.182 158472 username hashtadani4 158472 mac 158472 bytes_out 0 158472 bytes_in 0 158472 station_ip 83.122.245.120 158472 port 645 158472 unique_id port 158472 remote_ip 10.8.0.182 158475 username hashtadani4 158475 mac 158475 bytes_out 0 158475 bytes_in 0 158475 station_ip 83.122.245.120 158475 port 645 158475 unique_id port 158475 remote_ip 10.8.0.182 158476 username hashtadani4 158476 mac 158476 bytes_out 0 158476 bytes_in 0 158476 station_ip 83.122.245.120 158476 port 645 158476 unique_id port 158476 remote_ip 10.8.0.182 158479 username milan 158479 kill_reason Another user logged on this global unique id 158479 mac 158479 bytes_out 0 158479 bytes_in 0 158479 station_ip 5.120.56.28 158479 port 647 158479 unique_id port 158483 username hashtadani4 158483 mac 158483 bytes_out 0 158483 bytes_in 0 158483 station_ip 83.122.245.120 158483 port 645 158483 unique_id port 158483 remote_ip 10.8.0.182 158485 username hashtadani4 158485 mac 158485 bytes_out 0 158485 bytes_in 0 158485 station_ip 83.122.245.120 158485 port 645 158485 unique_id port 158485 remote_ip 10.8.0.182 158488 username hashtadani4 158488 mac 158488 bytes_out 0 158488 bytes_in 0 158488 station_ip 83.122.245.120 158488 port 645 158488 unique_id port 158488 remote_ip 10.8.0.182 158492 username hashtadani4 158492 mac 158492 bytes_out 0 158492 bytes_in 0 158492 station_ip 83.122.245.120 158492 port 650 158492 unique_id port 158492 remote_ip 10.8.0.182 158495 username hashtadani4 158495 mac 158495 bytes_out 0 158495 bytes_in 0 158495 station_ip 83.122.245.120 158495 port 645 158495 unique_id port 158495 remote_ip 10.8.0.182 158496 username hashtadani4 158496 mac 158496 bytes_out 0 158496 bytes_in 0 158496 station_ip 83.122.245.120 158496 port 645 158496 unique_id port 158496 remote_ip 10.8.0.182 158499 username hashtadani4 158499 mac 158499 bytes_out 0 158499 bytes_in 0 158499 station_ip 83.122.245.120 158499 port 645 158499 unique_id port 158499 remote_ip 10.8.0.182 158504 username pourshad 158504 kill_reason Another user logged on this global unique id 158504 mac 158504 bytes_out 0 158504 bytes_in 0 158504 station_ip 5.120.128.181 158504 port 334 158504 unique_id port 158510 username hashtadani4 158510 mac 158510 bytes_out 0 158510 bytes_in 0 158510 station_ip 83.122.245.120 158510 port 645 158510 unique_id port 158510 remote_ip 10.8.0.182 158516 username hassan 158516 mac 158516 bytes_out 0 158516 bytes_in 0 158516 station_ip 5.120.46.241 158516 port 328 158516 unique_id port 158516 remote_ip 10.8.1.138 158518 username hashtadani4 158518 mac 158518 bytes_out 0 158518 bytes_in 0 158518 station_ip 83.122.245.120 158518 port 645 158462 remote_ip 10.8.0.182 158465 username hashtadani4 158465 mac 158465 bytes_out 0 158465 bytes_in 0 158465 station_ip 83.122.245.120 158465 port 650 158465 unique_id port 158465 remote_ip 10.8.0.182 158466 username hashtadani4 158466 mac 158466 bytes_out 0 158466 bytes_in 0 158466 station_ip 83.122.245.120 158466 port 650 158466 unique_id port 158466 remote_ip 10.8.0.182 158469 username hashtadani4 158469 mac 158469 bytes_out 0 158469 bytes_in 0 158469 station_ip 83.122.245.120 158469 port 650 158469 unique_id port 158469 remote_ip 10.8.0.182 158477 username hashtadani4 158477 mac 158477 bytes_out 0 158477 bytes_in 0 158477 station_ip 83.122.245.120 158477 port 645 158477 unique_id port 158477 remote_ip 10.8.0.182 158480 username hashtadani4 158480 mac 158480 bytes_out 0 158480 bytes_in 0 158480 station_ip 83.122.245.120 158480 port 645 158480 unique_id port 158480 remote_ip 10.8.0.182 158481 username hashtadani4 158481 mac 158481 bytes_out 0 158481 bytes_in 0 158481 station_ip 83.122.245.120 158481 port 645 158481 unique_id port 158481 remote_ip 10.8.0.182 158484 username hashtadani4 158484 mac 158484 bytes_out 0 158484 bytes_in 0 158484 station_ip 83.122.245.120 158484 port 645 158484 unique_id port 158484 remote_ip 10.8.0.182 158486 username hashtadani4 158486 mac 158486 bytes_out 0 158486 bytes_in 0 158486 station_ip 83.122.245.120 158486 port 645 158486 unique_id port 158486 remote_ip 10.8.0.182 158489 username hashtadani4 158489 mac 158489 bytes_out 0 158489 bytes_in 0 158489 station_ip 83.122.245.120 158489 port 645 158489 unique_id port 158489 remote_ip 10.8.0.182 158490 username hashtadani4 158490 mac 158490 bytes_out 0 158490 bytes_in 0 158490 station_ip 83.122.245.120 158490 port 645 158490 unique_id port 158490 remote_ip 10.8.0.182 158491 username barzegar 158491 mac 158491 bytes_out 0 158491 bytes_in 0 158491 station_ip 5.119.251.3 158491 port 645 158491 unique_id port 158491 remote_ip 10.8.0.234 158493 username hashtadani4 158493 mac 158493 bytes_out 0 158493 bytes_in 0 158493 station_ip 83.122.245.120 158493 port 645 158493 unique_id port 158493 remote_ip 10.8.0.182 158497 username hashtadani4 158497 mac 158497 bytes_out 0 158497 bytes_in 0 158497 station_ip 83.122.245.120 158497 port 645 158497 unique_id port 158497 remote_ip 10.8.0.182 158501 username hashtadani4 158501 mac 158501 bytes_out 0 158501 bytes_in 0 158501 station_ip 83.122.245.120 158501 port 645 158501 unique_id port 158501 remote_ip 10.8.0.182 158505 username hashtadani4 158505 mac 158505 bytes_out 0 158505 bytes_in 0 158505 station_ip 83.122.245.120 158505 port 645 158505 unique_id port 158505 remote_ip 10.8.0.182 158506 username hashtadani4 158506 mac 158506 bytes_out 0 158506 bytes_in 0 158506 station_ip 83.122.245.120 158506 port 645 158506 unique_id port 158506 remote_ip 10.8.0.182 158508 username hashtadani4 158508 mac 158508 bytes_out 0 158508 bytes_in 0 158508 station_ip 83.122.245.120 158508 port 645 158508 unique_id port 158508 remote_ip 10.8.0.182 158511 username aminvpn 158511 mac 158511 bytes_out 0 158511 bytes_in 0 158511 station_ip 5.120.171.75 158511 port 335 158511 unique_id port 158511 remote_ip 10.8.1.6 158514 username hashtadani4 158514 mac 158514 bytes_out 0 158514 bytes_in 0 158514 station_ip 83.122.245.120 158514 port 645 158514 unique_id port 158514 remote_ip 10.8.0.182 158519 username hashtadani4 158463 bytes_out 0 158463 bytes_in 0 158463 station_ip 83.122.245.120 158463 port 650 158463 unique_id port 158463 remote_ip 10.8.0.182 158464 username aminvpn 158464 mac 158464 bytes_out 0 158464 bytes_in 0 158464 station_ip 5.120.132.101 158464 port 331 158464 unique_id port 158464 remote_ip 10.8.1.6 158467 username hashtadani4 158467 mac 158467 bytes_out 0 158467 bytes_in 0 158467 station_ip 83.122.245.120 158467 port 650 158467 unique_id port 158467 remote_ip 10.8.0.182 158470 username hassan 158470 mac 158470 bytes_out 333791 158470 bytes_in 936959 158470 station_ip 5.120.46.241 158470 port 645 158470 unique_id port 158470 remote_ip 10.8.0.122 158473 username nilufarrajaei 158473 kill_reason Another user logged on this global unique id 158473 mac 158473 bytes_out 0 158473 bytes_in 0 158473 station_ip 83.122.210.108 158473 port 631 158473 unique_id port 158474 username hashtadani4 158474 mac 158474 bytes_out 0 158474 bytes_in 0 158474 station_ip 83.122.245.120 158474 port 331 158474 unique_id port 158474 remote_ip 10.8.1.142 158478 username hashtadani4 158478 mac 158478 bytes_out 0 158478 bytes_in 0 158478 station_ip 83.122.245.120 158478 port 645 158478 unique_id port 158478 remote_ip 10.8.0.182 158482 username hashtadani4 158482 mac 158482 bytes_out 0 158482 bytes_in 0 158482 station_ip 83.122.245.120 158482 port 645 158482 unique_id port 158482 remote_ip 10.8.0.182 158487 username hashtadani4 158487 mac 158487 bytes_out 0 158487 bytes_in 0 158487 station_ip 83.122.245.120 158487 port 645 158487 unique_id port 158487 remote_ip 10.8.0.182 158494 username hashtadani4 158494 mac 158494 bytes_out 0 158494 bytes_in 0 158494 station_ip 83.122.245.120 158494 port 645 158494 unique_id port 158494 remote_ip 10.8.0.182 158498 username hashtadani4 158498 mac 158498 bytes_out 0 158498 bytes_in 0 158498 station_ip 83.122.245.120 158498 port 645 158498 unique_id port 158498 remote_ip 10.8.0.182 158500 username aminvpn 158500 mac 158500 bytes_out 0 158500 bytes_in 0 158500 station_ip 5.120.171.75 158500 port 325 158500 unique_id port 158500 remote_ip 10.8.1.6 158502 username hashtadani4 158502 mac 158502 bytes_out 0 158502 bytes_in 0 158502 station_ip 83.122.245.120 158502 port 645 158502 unique_id port 158502 remote_ip 10.8.0.182 158503 username hashtadani4 158503 mac 158503 bytes_out 0 158503 bytes_in 0 158503 station_ip 83.122.245.120 158503 port 645 158503 unique_id port 158503 remote_ip 10.8.0.182 158507 username hashtadani4 158507 mac 158507 bytes_out 0 158507 bytes_in 0 158507 station_ip 83.122.245.120 158507 port 645 158507 unique_id port 158507 remote_ip 10.8.0.182 158509 username aminvpn 158509 mac 158509 bytes_out 0 158509 bytes_in 0 158509 station_ip 5.120.132.101 158509 port 331 158509 unique_id port 158509 remote_ip 10.8.1.6 158512 username shadkam 158512 mac 158512 bytes_out 0 158512 bytes_in 0 158512 station_ip 37.129.169.141 158512 port 325 158512 unique_id port 158512 remote_ip 10.8.1.218 158513 username aminvpn 158513 mac 158513 bytes_out 0 158513 bytes_in 0 158513 station_ip 5.120.132.101 158513 port 331 158513 unique_id port 158513 remote_ip 10.8.1.6 158515 username aminvpn 158515 mac 158515 bytes_out 0 158515 bytes_in 0 158515 station_ip 5.120.171.75 158515 port 325 158515 unique_id port 158515 remote_ip 10.8.1.6 158517 username hashtadani4 158517 mac 158517 bytes_out 0 158517 bytes_in 0 158517 station_ip 83.122.245.120 158517 port 645 158517 unique_id port 158517 remote_ip 10.8.0.182 158524 username hashtadani4 158524 mac 158524 bytes_out 0 158524 bytes_in 0 158524 station_ip 83.122.245.120 158524 port 645 158524 unique_id port 158524 remote_ip 10.8.0.182 158527 username mohammadmahdi 158527 kill_reason Another user logged on this global unique id 158527 mac 158527 bytes_out 0 158527 bytes_in 0 158527 station_ip 5.120.190.90 158527 port 632 158527 unique_id port 158527 remote_ip 10.8.0.54 158532 username hashtadani4 158532 mac 158532 bytes_out 0 158532 bytes_in 0 158532 station_ip 83.122.245.120 158532 port 650 158532 unique_id port 158532 remote_ip 10.8.0.182 158533 username barzegar 158533 mac 158533 bytes_out 0 158533 bytes_in 0 158533 station_ip 5.119.251.3 158533 port 645 158533 unique_id port 158533 remote_ip 10.8.0.234 158538 username hashtadani4 158538 mac 158538 bytes_out 0 158538 bytes_in 0 158538 station_ip 83.122.245.120 158538 port 650 158538 unique_id port 158538 remote_ip 10.8.0.182 158542 username nilufarrajaei 158542 kill_reason Another user logged on this global unique id 158542 mac 158542 bytes_out 0 158542 bytes_in 0 158542 station_ip 83.122.210.108 158542 port 631 158542 unique_id port 158543 username tahmasebi 158543 mac 158543 bytes_out 1187606 158543 bytes_in 13411450 158543 station_ip 5.119.74.98 158543 port 645 158543 unique_id port 158543 remote_ip 10.8.0.42 158545 username barzegar 158545 mac 158545 bytes_out 8993 158545 bytes_in 18674 158545 station_ip 5.119.251.3 158545 port 651 158545 unique_id port 158545 remote_ip 10.8.0.234 158549 username mohammadmahdi 158549 mac 158549 bytes_out 0 158549 bytes_in 0 158549 station_ip 5.120.190.90 158549 port 632 158549 unique_id port 158553 username mohammadjavad 158553 mac 158553 bytes_out 606889 158553 bytes_in 2078972 158553 station_ip 83.122.214.143 158553 port 645 158553 unique_id port 158553 remote_ip 10.8.0.142 158554 username godarzi 158554 kill_reason Another user logged on this global unique id 158554 mac 158554 bytes_out 0 158554 bytes_in 0 158554 station_ip 5.202.12.121 158554 port 325 158554 unique_id port 158554 remote_ip 10.8.1.230 158556 username hashtadani4 158556 mac 158556 bytes_out 0 158556 bytes_in 0 158556 station_ip 83.122.245.120 158556 port 609 158556 unique_id port 158556 remote_ip 10.8.0.182 158559 username hashtadani4 158559 kill_reason Maximum check online fails reached 158559 mac 158559 bytes_out 0 158559 bytes_in 0 158559 station_ip 83.122.245.120 158559 port 331 158559 unique_id port 158563 username hashtadani4 158563 mac 158563 bytes_out 0 158563 bytes_in 0 158563 station_ip 83.122.245.120 158563 port 609 158563 unique_id port 158563 remote_ip 10.8.0.182 158566 username hashtadani4 158566 mac 158566 bytes_out 0 158566 bytes_in 0 158566 station_ip 83.122.245.120 158566 port 609 158566 unique_id port 158566 remote_ip 10.8.0.182 158571 username hashtadani4 158571 mac 158571 bytes_out 0 158571 bytes_in 0 158571 station_ip 83.122.245.120 158571 port 609 158571 unique_id port 158571 remote_ip 10.8.0.182 158580 username hashtadani4 158580 mac 158580 bytes_out 0 158580 bytes_in 0 158580 station_ip 83.122.245.120 158580 port 631 158580 unique_id port 158580 remote_ip 10.8.0.182 158581 username hashtadani4 158581 mac 158581 bytes_out 7010 158581 bytes_in 35957 158581 station_ip 83.122.245.120 158581 port 613 158581 unique_id port 158581 remote_ip 10.8.0.182 158583 username hashtadani4 158583 mac 158518 unique_id port 158518 remote_ip 10.8.0.182 158521 username hashtadani4 158521 mac 158521 bytes_out 0 158521 bytes_in 0 158521 station_ip 83.122.245.120 158521 port 645 158521 unique_id port 158521 remote_ip 10.8.0.182 158523 username milan 158523 kill_reason Another user logged on this global unique id 158523 mac 158523 bytes_out 0 158523 bytes_in 0 158523 station_ip 5.120.56.28 158523 port 647 158523 unique_id port 158525 username hashtadani4 158525 mac 158525 bytes_out 0 158525 bytes_in 0 158525 station_ip 83.122.245.120 158525 port 645 158525 unique_id port 158525 remote_ip 10.8.0.182 158528 username hashtadani4 158528 mac 158528 bytes_out 0 158528 bytes_in 0 158528 station_ip 83.122.245.120 158528 port 645 158528 unique_id port 158528 remote_ip 10.8.0.182 158529 username hashtadani4 158529 mac 158529 bytes_out 0 158529 bytes_in 0 158529 station_ip 83.122.245.120 158529 port 645 158529 unique_id port 158529 remote_ip 10.8.0.182 158534 username hashtadani4 158534 mac 158534 bytes_out 0 158534 bytes_in 0 158534 station_ip 83.122.245.120 158534 port 650 158534 unique_id port 158534 remote_ip 10.8.0.182 158535 username hashtadani4 158535 mac 158535 bytes_out 0 158535 bytes_in 0 158535 station_ip 83.122.245.120 158535 port 650 158535 unique_id port 158535 remote_ip 10.8.0.182 158539 username hashtadani4 158539 mac 158539 bytes_out 0 158539 bytes_in 0 158539 station_ip 83.122.245.120 158539 port 650 158539 unique_id port 158539 remote_ip 10.8.0.182 158544 username pourshad 158544 kill_reason Another user logged on this global unique id 158544 mac 158544 bytes_out 0 158544 bytes_in 0 158544 station_ip 5.120.128.181 158544 port 334 158544 unique_id port 158546 username milan 158546 kill_reason Another user logged on this global unique id 158546 mac 158546 bytes_out 0 158546 bytes_in 0 158546 station_ip 5.120.56.28 158546 port 647 158546 unique_id port 158547 username jamali 158547 mac 158547 bytes_out 71941 158547 bytes_in 110870 158547 station_ip 5.119.88.219 158547 port 648 158547 unique_id port 158547 remote_ip 10.8.0.70 158550 username barzegar 158550 mac 158550 bytes_out 0 158550 bytes_in 0 158550 station_ip 5.119.251.3 158550 port 609 158550 unique_id port 158550 remote_ip 10.8.0.234 158551 username farhad2 158551 mac 158551 bytes_out 242495 158551 bytes_in 2586196 158551 station_ip 5.120.1.126 158551 port 648 158551 unique_id port 158551 remote_ip 10.8.0.190 158552 username barzegar 158552 mac 158552 bytes_out 0 158552 bytes_in 0 158552 station_ip 5.119.251.3 158552 port 609 158552 unique_id port 158552 remote_ip 10.8.0.234 158555 username hashtadani4 158555 mac 158555 bytes_out 1112444 158555 bytes_in 15739421 158555 station_ip 83.122.245.120 158555 port 650 158555 unique_id port 158555 remote_ip 10.8.0.182 158557 username hashtadani4 158557 mac 158557 bytes_out 0 158557 bytes_in 0 158557 station_ip 83.122.245.120 158557 port 609 158557 unique_id port 158557 remote_ip 10.8.0.182 158560 username hashtadani4 158560 mac 158560 bytes_out 0 158560 bytes_in 0 158560 station_ip 83.122.245.120 158560 port 335 158560 unique_id port 158560 remote_ip 10.8.1.142 158561 username hashtadani4 158561 mac 158561 bytes_out 0 158561 bytes_in 0 158561 station_ip 83.122.245.120 158561 port 609 158561 unique_id port 158561 remote_ip 10.8.0.182 158564 username hashtadani4 158564 mac 158564 bytes_out 0 158564 bytes_in 0 158564 station_ip 83.122.245.120 158564 port 335 158519 mac 158519 bytes_out 0 158519 bytes_in 0 158519 station_ip 83.122.245.120 158519 port 645 158519 unique_id port 158519 remote_ip 10.8.0.182 158520 username aminvpn 158520 mac 158520 bytes_out 0 158520 bytes_in 0 158520 station_ip 5.120.132.101 158520 port 331 158520 unique_id port 158520 remote_ip 10.8.1.6 158522 username hashtadani4 158522 mac 158522 bytes_out 0 158522 bytes_in 0 158522 station_ip 83.122.245.120 158522 port 645 158522 unique_id port 158522 remote_ip 10.8.0.182 158526 username hashtadani4 158526 mac 158526 bytes_out 0 158526 bytes_in 0 158526 station_ip 83.122.245.120 158526 port 645 158526 unique_id port 158526 remote_ip 10.8.0.182 158530 username hashtadani4 158530 mac 158530 bytes_out 0 158530 bytes_in 0 158530 station_ip 83.122.245.120 158530 port 645 158530 unique_id port 158530 remote_ip 10.8.0.182 158531 username hashtadani4 158531 mac 158531 bytes_out 0 158531 bytes_in 0 158531 station_ip 83.122.245.120 158531 port 650 158531 unique_id port 158531 remote_ip 10.8.0.182 158536 username hashtadani4 158536 mac 158536 bytes_out 0 158536 bytes_in 0 158536 station_ip 83.122.245.120 158536 port 650 158536 unique_id port 158536 remote_ip 10.8.0.182 158537 username hashtadani4 158537 mac 158537 bytes_out 0 158537 bytes_in 0 158537 station_ip 83.122.245.120 158537 port 650 158537 unique_id port 158537 remote_ip 10.8.0.182 158540 username hashtadani4 158540 mac 158540 bytes_out 0 158540 bytes_in 0 158540 station_ip 83.122.245.120 158540 port 650 158540 unique_id port 158540 remote_ip 10.8.0.182 158541 username farhad2 158541 kill_reason Another user logged on this global unique id 158541 mac 158541 bytes_out 0 158541 bytes_in 0 158541 station_ip 5.119.50.65 158541 port 609 158541 unique_id port 158541 remote_ip 10.8.0.190 158548 username farhad2 158548 mac 158548 bytes_out 0 158548 bytes_in 0 158548 station_ip 5.119.50.65 158548 port 609 158548 unique_id port 158558 username hashtadani4 158558 mac 158558 bytes_out 0 158558 bytes_in 0 158558 station_ip 83.122.245.120 158558 port 609 158558 unique_id port 158558 remote_ip 10.8.0.182 158562 username hashtadani4 158562 mac 158562 bytes_out 0 158562 bytes_in 0 158562 station_ip 83.122.245.120 158562 port 335 158562 unique_id port 158562 remote_ip 10.8.1.142 158567 username nilufarrajaei 158567 kill_reason Another user logged on this global unique id 158567 mac 158567 bytes_out 0 158567 bytes_in 0 158567 station_ip 83.122.210.108 158567 port 631 158567 unique_id port 158568 username hashtadani4 158568 mac 158568 bytes_out 0 158568 bytes_in 0 158568 station_ip 83.122.245.120 158568 port 609 158568 unique_id port 158568 remote_ip 10.8.0.182 158570 username hashtadani4 158570 mac 158570 bytes_out 0 158570 bytes_in 0 158570 station_ip 83.122.245.120 158570 port 609 158570 unique_id port 158570 remote_ip 10.8.0.182 158573 username barzegar 158573 mac 158573 bytes_out 0 158573 bytes_in 0 158573 station_ip 5.119.251.3 158573 port 335 158573 unique_id port 158573 remote_ip 10.8.1.174 158575 username nilufarrajaei 158575 mac 158575 bytes_out 0 158575 bytes_in 0 158575 station_ip 83.122.210.108 158575 port 631 158575 unique_id port 158582 username hamid 158582 kill_reason Another user logged on this global unique id 158582 mac 158582 bytes_out 0 158582 bytes_in 0 158582 station_ip 83.122.15.69 158582 port 641 158582 unique_id port 158585 username hashtadani4 158585 kill_reason Another user logged on this global unique id 158564 unique_id port 158564 remote_ip 10.8.1.142 158565 username aminvpn 158565 mac 158565 bytes_out 0 158565 bytes_in 0 158565 station_ip 5.120.171.75 158565 port 328 158565 unique_id port 158565 remote_ip 10.8.1.6 158569 username alipour 158569 mac 158569 bytes_out 1513568 158569 bytes_in 17585158 158569 station_ip 83.123.16.90 158569 port 613 158569 unique_id port 158569 remote_ip 10.8.0.102 158572 username hashtadani4 158572 mac 158572 bytes_out 0 158572 bytes_in 0 158572 station_ip 83.122.245.120 158572 port 609 158572 unique_id port 158572 remote_ip 10.8.0.182 158574 username hashtadani4 158574 mac 158574 bytes_out 0 158574 bytes_in 0 158574 station_ip 83.122.245.120 158574 port 609 158574 unique_id port 158574 remote_ip 10.8.0.182 158576 username hashtadani4 158576 mac 158576 bytes_out 0 158576 bytes_in 0 158576 station_ip 83.122.245.120 158576 port 335 158576 unique_id port 158576 remote_ip 10.8.1.142 158577 username khademi 158577 kill_reason Another user logged on this global unique id 158577 mac 158577 bytes_out 0 158577 bytes_in 0 158577 station_ip 113.203.78.111 158577 port 614 158577 unique_id port 158578 username hashtadani4 158578 mac 158578 bytes_out 0 158578 bytes_in 0 158578 station_ip 83.122.245.120 158578 port 609 158578 unique_id port 158578 remote_ip 10.8.0.182 158579 username hashtadani4 158579 mac 158579 bytes_out 0 158579 bytes_in 0 158579 station_ip 83.122.245.120 158579 port 613 158579 unique_id port 158579 remote_ip 10.8.0.182 158584 username hashtadani4 158584 kill_reason Another user logged on this global unique id 158584 mac 158584 bytes_out 0 158584 bytes_in 0 158584 station_ip 83.122.245.120 158584 port 613 158584 unique_id port 158588 username hashtadani4 158588 mac 158588 bytes_out 0 158588 bytes_in 0 158588 station_ip 83.122.245.120 158588 port 613 158588 unique_id port 158588 remote_ip 10.8.0.182 158592 username hashtadani4 158592 mac 158592 bytes_out 0 158592 bytes_in 0 158592 station_ip 83.122.245.120 158592 port 631 158592 unique_id port 158592 remote_ip 10.8.0.182 158594 username hashtadani4 158594 mac 158594 bytes_out 0 158594 bytes_in 0 158594 station_ip 83.122.245.120 158594 port 609 158594 unique_id port 158594 remote_ip 10.8.0.182 158596 username hashtadani4 158596 mac 158596 bytes_out 0 158596 bytes_in 0 158596 station_ip 83.122.245.120 158596 port 609 158596 unique_id port 158596 remote_ip 10.8.0.182 158601 username barzegar 158601 mac 158601 bytes_out 0 158601 bytes_in 0 158601 station_ip 5.119.251.3 158601 port 336 158601 unique_id port 158601 remote_ip 10.8.1.174 158602 username aminvpn 158602 mac 158602 bytes_out 83868 158602 bytes_in 293621 158602 station_ip 5.120.171.75 158602 port 328 158602 unique_id port 158602 remote_ip 10.8.1.6 158610 username hashtadani4 158610 mac 158610 bytes_out 0 158610 bytes_in 0 158610 station_ip 83.122.245.120 158610 port 336 158610 unique_id port 158610 remote_ip 10.8.1.142 158623 username hashtadani4 158623 mac 158623 bytes_out 0 158623 bytes_in 0 158623 station_ip 83.122.245.120 158623 port 609 158623 unique_id port 158623 remote_ip 10.8.0.182 158624 username hashtadani4 158624 mac 158624 bytes_out 0 158624 bytes_in 0 158624 station_ip 83.122.245.120 158624 port 609 158624 unique_id port 158624 remote_ip 10.8.0.182 158631 username barzegar 158631 mac 158631 bytes_out 0 158631 bytes_in 0 158631 station_ip 5.119.251.3 158631 port 339 158631 unique_id port 158583 bytes_out 0 158583 bytes_in 0 158583 station_ip 83.122.245.120 158583 port 335 158583 unique_id port 158583 remote_ip 10.8.1.142 158586 username hashtadani4 158586 mac 158586 bytes_out 0 158586 bytes_in 0 158586 station_ip 83.122.245.120 158586 port 613 158586 unique_id port 158586 remote_ip 10.8.0.182 158587 username hashtadani4 158587 mac 158587 bytes_out 0 158587 bytes_in 0 158587 station_ip 83.122.245.120 158587 port 613 158587 unique_id port 158587 remote_ip 10.8.0.182 158590 username hashtadani4 158590 mac 158590 bytes_out 0 158590 bytes_in 0 158590 station_ip 83.122.245.120 158590 port 631 158590 unique_id port 158590 remote_ip 10.8.0.182 158591 username hashtadani4 158591 mac 158591 bytes_out 0 158591 bytes_in 0 158591 station_ip 83.122.245.120 158591 port 631 158591 unique_id port 158591 remote_ip 10.8.0.182 158593 username ahmadi1 158593 mac 158593 bytes_out 150543 158593 bytes_in 1379457 158593 station_ip 37.129.166.200 158593 port 609 158593 unique_id port 158593 remote_ip 10.8.0.250 158595 username hashtadani4 158595 mac 158595 bytes_out 0 158595 bytes_in 0 158595 station_ip 83.122.245.120 158595 port 609 158595 unique_id port 158595 remote_ip 10.8.0.182 158598 username hashtadani4 158598 kill_reason Maximum check online fails reached 158598 mac 158598 bytes_out 0 158598 bytes_in 0 158598 station_ip 83.122.245.120 158598 port 335 158598 unique_id port 158599 username aminvpn 158599 mac 158599 bytes_out 837183 158599 bytes_in 4202911 158599 station_ip 113.203.21.245 158599 port 649 158599 unique_id port 158599 remote_ip 10.8.0.14 158604 username hashtadani4 158604 mac 158604 bytes_out 0 158604 bytes_in 0 158604 station_ip 83.122.245.120 158604 port 609 158604 unique_id port 158604 remote_ip 10.8.0.182 158605 username tahmasebi 158605 mac 158605 bytes_out 0 158605 bytes_in 0 158605 station_ip 5.119.74.98 158605 port 631 158605 unique_id port 158605 remote_ip 10.8.0.42 158609 username hashtadani4 158609 mac 158609 bytes_out 0 158609 bytes_in 0 158609 station_ip 83.122.245.120 158609 port 631 158609 unique_id port 158609 remote_ip 10.8.0.182 158613 username hashtadani4 158613 mac 158613 bytes_out 0 158613 bytes_in 0 158613 station_ip 83.122.245.120 158613 port 336 158613 unique_id port 158613 remote_ip 10.8.1.142 158614 username hashtadani4 158614 mac 158614 bytes_out 0 158614 bytes_in 0 158614 station_ip 83.122.245.120 158614 port 631 158614 unique_id port 158614 remote_ip 10.8.0.182 158616 username hashtadani4 158616 mac 158616 bytes_out 0 158616 bytes_in 0 158616 station_ip 83.122.245.120 158616 port 631 158616 unique_id port 158616 remote_ip 10.8.0.182 158617 username hashtadani4 158617 mac 158617 bytes_out 0 158617 bytes_in 0 158617 station_ip 83.122.245.120 158617 port 631 158617 unique_id port 158617 remote_ip 10.8.0.182 158619 username hashtadani4 158619 mac 158619 bytes_out 0 158619 bytes_in 0 158619 station_ip 83.122.245.120 158619 port 338 158619 unique_id port 158619 remote_ip 10.8.1.142 158620 username hashtadani4 158620 mac 158620 bytes_out 0 158620 bytes_in 0 158620 station_ip 83.122.245.120 158620 port 641 158620 unique_id port 158620 remote_ip 10.8.0.182 158622 username hashtadani4 158622 mac 158622 bytes_out 0 158622 bytes_in 0 158622 station_ip 83.122.245.120 158622 port 609 158622 unique_id port 158622 remote_ip 10.8.0.182 158625 username hamid 158625 mac 158625 bytes_out 2825966 158585 mac 158585 bytes_out 0 158585 bytes_in 0 158585 station_ip 83.122.245.120 158585 port 613 158585 unique_id port 158589 username jafari 158589 mac 158589 bytes_out 0 158589 bytes_in 0 158589 station_ip 37.156.155.122 158589 port 646 158589 unique_id port 158597 username jafari 158597 mac 158597 bytes_out 118128 158597 bytes_in 369091 158597 station_ip 37.156.155.122 158597 port 613 158597 unique_id port 158597 remote_ip 10.8.0.242 158600 username hamid 158600 mac 158600 bytes_out 0 158600 bytes_in 0 158600 station_ip 83.122.15.69 158600 port 641 158600 unique_id port 158603 username hashtadani4 158603 mac 158603 bytes_out 0 158603 bytes_in 0 158603 station_ip 83.122.245.120 158603 port 609 158603 unique_id port 158603 remote_ip 10.8.0.182 158606 username hashtadani4 158606 mac 158606 bytes_out 0 158606 bytes_in 0 158606 station_ip 83.122.245.120 158606 port 609 158606 unique_id port 158606 remote_ip 10.8.0.182 158607 username hashtadani4 158607 mac 158607 bytes_out 0 158607 bytes_in 0 158607 station_ip 83.122.245.120 158607 port 336 158607 unique_id port 158607 remote_ip 10.8.1.142 158608 username hashtadani4 158608 mac 158608 bytes_out 0 158608 bytes_in 0 158608 station_ip 83.122.245.120 158608 port 631 158608 unique_id port 158608 remote_ip 10.8.0.182 158611 username hashtadani4 158611 mac 158611 bytes_out 0 158611 bytes_in 0 158611 station_ip 83.122.245.120 158611 port 631 158611 unique_id port 158611 remote_ip 10.8.0.182 158612 username hashtadani4 158612 mac 158612 bytes_out 0 158612 bytes_in 0 158612 station_ip 83.122.245.120 158612 port 631 158612 unique_id port 158612 remote_ip 10.8.0.182 158615 username hashtadani4 158615 mac 158615 bytes_out 0 158615 bytes_in 0 158615 station_ip 83.122.245.120 158615 port 631 158615 unique_id port 158615 remote_ip 10.8.0.182 158618 username tahmasebi 158618 mac 158618 bytes_out 0 158618 bytes_in 0 158618 station_ip 5.119.74.98 158618 port 609 158618 unique_id port 158618 remote_ip 10.8.0.42 158621 username hashtadani4 158621 mac 158621 bytes_out 0 158621 bytes_in 0 158621 station_ip 83.122.245.120 158621 port 609 158621 unique_id port 158621 remote_ip 10.8.0.182 158627 username hashtadani4 158627 kill_reason Maximum number of concurrent logins reached 158627 mac 158627 bytes_out 0 158627 bytes_in 0 158627 station_ip 83.122.245.120 158627 port 339 158627 unique_id port 158629 username hashtadani4 158629 mac 158629 bytes_out 1644 158629 bytes_in 3524 158629 station_ip 83.122.245.120 158629 port 632 158629 unique_id port 158629 remote_ip 10.8.0.182 158630 username hashtadani4 158630 kill_reason Maximum check online fails reached 158630 mac 158630 bytes_out 0 158630 bytes_in 0 158630 station_ip 83.122.245.120 158630 port 338 158630 unique_id port 158632 username jamali 158632 mac 158632 bytes_out 0 158632 bytes_in 0 158632 station_ip 5.119.88.219 158632 port 609 158632 unique_id port 158632 remote_ip 10.8.0.70 158639 username sabaghnezhad 158639 mac 158639 bytes_out 67989 158639 bytes_in 61726 158639 station_ip 83.122.14.9 158639 port 632 158639 unique_id port 158639 remote_ip 10.8.0.186 158641 username mehdizare 158641 mac 158641 bytes_out 0 158641 bytes_in 0 158641 station_ip 83.122.87.157 158641 port 333 158641 unique_id port 158644 username aminvpn 158644 mac 158644 bytes_out 199550 158644 bytes_in 555744 158644 station_ip 5.120.171.75 158644 port 328 158644 unique_id port 158625 bytes_in 24488859 158625 station_ip 83.122.15.69 158625 port 632 158625 unique_id port 158625 remote_ip 10.8.0.214 158626 username jamali 158626 mac 158626 bytes_out 1311274 158626 bytes_in 17150441 158626 station_ip 5.119.88.219 158626 port 651 158626 unique_id port 158626 remote_ip 10.8.0.70 158628 username hashtadani4 158628 kill_reason Maximum number of concurrent logins reached 158628 mac 158628 bytes_out 0 158628 bytes_in 0 158628 station_ip 83.122.245.120 158628 port 641 158628 unique_id port 158633 username asma2026 158633 kill_reason Another user logged on this global unique id 158633 mac 158633 bytes_out 0 158633 bytes_in 0 158633 station_ip 164.138.174.66 158633 port 336 158633 unique_id port 158633 remote_ip 10.8.1.122 158634 username milan 158634 kill_reason Another user logged on this global unique id 158634 mac 158634 bytes_out 0 158634 bytes_in 0 158634 station_ip 5.120.56.28 158634 port 647 158634 unique_id port 158635 username jamali 158635 mac 158635 bytes_out 0 158635 bytes_in 0 158635 station_ip 5.119.88.219 158635 port 632 158635 unique_id port 158635 remote_ip 10.8.0.70 158636 username hamid 158636 mac 158636 bytes_out 4220066 158636 bytes_in 40531341 158636 station_ip 83.122.15.69 158636 port 631 158636 unique_id port 158636 remote_ip 10.8.0.214 158637 username barzegar 158637 mac 158637 bytes_out 0 158637 bytes_in 0 158637 station_ip 5.119.251.3 158637 port 339 158637 unique_id port 158637 remote_ip 10.8.1.174 158642 username milan 158642 kill_reason Another user logged on this global unique id 158642 mac 158642 bytes_out 0 158642 bytes_in 0 158642 station_ip 5.120.56.28 158642 port 647 158642 unique_id port 158643 username barzegar 158643 mac 158643 bytes_out 0 158643 bytes_in 0 158643 station_ip 5.119.251.3 158643 port 336 158643 unique_id port 158643 remote_ip 10.8.1.174 158650 username aminvpn 158650 mac 158650 bytes_out 102437 158650 bytes_in 467873 158650 station_ip 5.120.171.75 158650 port 336 158650 unique_id port 158650 remote_ip 10.8.1.6 158651 username asma2026 158651 mac 158651 bytes_out 0 158651 bytes_in 0 158651 station_ip 164.138.174.66 158651 port 649 158651 unique_id port 158651 remote_ip 10.8.0.94 158652 username mohammadjavad 158652 mac 158652 bytes_out 0 158652 bytes_in 0 158652 station_ip 37.129.73.243 158652 port 631 158652 unique_id port 158652 remote_ip 10.8.0.142 158654 username barzegar 158654 mac 158654 bytes_out 0 158654 bytes_in 0 158654 station_ip 5.119.251.3 158654 port 334 158654 unique_id port 158654 remote_ip 10.8.1.174 158656 username forozandeh1 158656 mac 158656 bytes_out 0 158656 bytes_in 0 158656 station_ip 83.123.214.243 158656 port 646 158656 unique_id port 158656 remote_ip 10.8.0.130 158658 username kalantary 158658 mac 158658 bytes_out 0 158658 bytes_in 0 158658 station_ip 113.203.61.169 158658 port 648 158658 unique_id port 158658 remote_ip 10.8.0.98 158661 username farhad2 158661 mac 158661 bytes_out 0 158661 bytes_in 0 158661 station_ip 5.119.213.159 158661 port 650 158661 unique_id port 158665 username kalantary 158665 mac 158665 bytes_out 244708 158665 bytes_in 2891693 158665 station_ip 113.203.61.169 158665 port 652 158665 unique_id port 158665 remote_ip 10.8.0.98 158667 username asma2026 158667 mac 158667 bytes_out 0 158667 bytes_in 0 158667 station_ip 164.138.174.66 158667 port 646 158667 unique_id port 158667 remote_ip 10.8.0.94 158668 username milan 158668 kill_reason Another user logged on this global unique id 158668 mac 158631 remote_ip 10.8.1.174 158638 username asma2026 158638 kill_reason Another user logged on this global unique id 158638 mac 158638 bytes_out 0 158638 bytes_in 0 158638 station_ip 164.138.174.66 158638 port 336 158638 unique_id port 158640 username asma2026 158640 mac 158640 bytes_out 0 158640 bytes_in 0 158640 station_ip 164.138.174.66 158640 port 336 158640 unique_id port 158645 username jamali 158645 mac 158645 bytes_out 0 158645 bytes_in 0 158645 station_ip 5.119.88.219 158645 port 641 158645 unique_id port 158645 remote_ip 10.8.0.70 158647 username godarzi 158647 kill_reason Another user logged on this global unique id 158647 mac 158647 bytes_out 0 158647 bytes_in 0 158647 station_ip 5.202.12.121 158647 port 325 158647 unique_id port 158648 username asma2026 158648 mac 158648 bytes_out 0 158648 bytes_in 0 158648 station_ip 164.138.174.66 158648 port 641 158648 unique_id port 158648 remote_ip 10.8.0.94 158649 username asma2026 158649 mac 158649 bytes_out 0 158649 bytes_in 0 158649 station_ip 164.138.174.66 158649 port 641 158649 unique_id port 158649 remote_ip 10.8.0.94 158655 username asma2026 158655 mac 158655 bytes_out 0 158655 bytes_in 0 158655 station_ip 164.138.174.66 158655 port 334 158655 unique_id port 158655 remote_ip 10.8.1.122 158659 username farhad2 158659 kill_reason Another user logged on this global unique id 158659 mac 158659 bytes_out 0 158659 bytes_in 0 158659 station_ip 5.119.213.159 158659 port 650 158659 unique_id port 158659 remote_ip 10.8.0.190 158660 username Mahin 158660 kill_reason Another user logged on this global unique id 158660 mac 158660 bytes_out 0 158660 bytes_in 0 158660 station_ip 5.119.186.133 158660 port 643 158660 unique_id port 158660 remote_ip 10.8.0.162 158662 username barzegar 158662 mac 158662 bytes_out 0 158662 bytes_in 0 158662 station_ip 5.119.251.3 158662 port 650 158662 unique_id port 158662 remote_ip 10.8.0.234 158664 username asma2026 158664 mac 158664 bytes_out 2667656 158664 bytes_in 42419867 158664 station_ip 164.138.174.66 158664 port 651 158664 unique_id port 158664 remote_ip 10.8.0.94 158666 username jamali 158666 mac 158666 bytes_out 79280 158666 bytes_in 552756 158666 station_ip 5.119.88.219 158666 port 646 158666 unique_id port 158666 remote_ip 10.8.0.70 158670 username asma2026 158670 mac 158670 bytes_out 0 158670 bytes_in 0 158670 station_ip 164.138.174.66 158670 port 645 158670 unique_id port 158670 remote_ip 10.8.0.94 158671 username farhad2 158671 kill_reason Another user logged on this global unique id 158671 mac 158671 bytes_out 0 158671 bytes_in 0 158671 station_ip 5.119.213.159 158671 port 653 158671 unique_id port 158671 remote_ip 10.8.0.190 158672 username jamali 158672 mac 158672 bytes_out 0 158672 bytes_in 0 158672 station_ip 5.119.88.219 158672 port 646 158672 unique_id port 158672 remote_ip 10.8.0.70 158675 username khademi 158675 kill_reason Another user logged on this global unique id 158675 mac 158675 bytes_out 0 158675 bytes_in 0 158675 station_ip 113.203.78.111 158675 port 614 158675 unique_id port 158678 username rezaei 158678 kill_reason Another user logged on this global unique id 158678 mac 158678 bytes_out 0 158678 bytes_in 0 158678 station_ip 5.119.53.117 158678 port 336 158678 unique_id port 158678 remote_ip 10.8.1.58 158680 username barzegar 158680 mac 158680 bytes_out 0 158680 bytes_in 0 158680 station_ip 5.119.251.3 158680 port 650 158680 unique_id port 158680 remote_ip 10.8.0.234 158681 username farhad2 158681 mac 158681 bytes_out 0 158644 remote_ip 10.8.1.6 158646 username pourshad 158646 mac 158646 bytes_out 0 158646 bytes_in 0 158646 station_ip 5.120.128.181 158646 port 334 158646 unique_id port 158653 username houshang 158653 mac 158653 bytes_out 0 158653 bytes_in 0 158653 station_ip 5.119.76.46 158653 port 649 158653 unique_id port 158653 remote_ip 10.8.0.134 158657 username jamali 158657 mac 158657 bytes_out 0 158657 bytes_in 0 158657 station_ip 5.119.88.219 158657 port 648 158657 unique_id port 158657 remote_ip 10.8.0.70 158663 username hamid 158663 kill_reason Another user logged on this global unique id 158663 mac 158663 bytes_out 0 158663 bytes_in 0 158663 station_ip 83.122.15.69 158663 port 645 158663 unique_id port 158663 remote_ip 10.8.0.214 158669 username hamid 158669 mac 158669 bytes_out 0 158669 bytes_in 0 158669 station_ip 83.122.15.69 158669 port 645 158669 unique_id port 158673 username asma2026 158673 mac 158673 bytes_out 0 158673 bytes_in 0 158673 station_ip 164.138.174.66 158673 port 645 158673 unique_id port 158673 remote_ip 10.8.0.94 158674 username farhad2 158674 mac 158674 bytes_out 0 158674 bytes_in 0 158674 station_ip 5.119.213.159 158674 port 653 158674 unique_id port 158677 username tahmasebi 158677 kill_reason Another user logged on this global unique id 158677 mac 158677 bytes_out 0 158677 bytes_in 0 158677 station_ip 5.119.74.98 158677 port 648 158677 unique_id port 158677 remote_ip 10.8.0.42 158679 username kordestani 158679 kill_reason Another user logged on this global unique id 158679 mac 158679 bytes_out 0 158679 bytes_in 0 158679 station_ip 151.235.74.99 158679 port 649 158679 unique_id port 158679 remote_ip 10.8.0.74 158684 username godarzi 158684 mac 158684 bytes_out 0 158684 bytes_in 0 158684 station_ip 5.202.12.121 158684 port 325 158684 unique_id port 158685 username kordestani 158685 mac 158685 bytes_out 0 158685 bytes_in 0 158685 station_ip 151.235.74.99 158685 port 649 158685 unique_id port 158689 username aminvpn 158689 mac 158689 bytes_out 0 158689 bytes_in 0 158689 station_ip 113.203.21.245 158689 port 631 158689 unique_id port 158689 remote_ip 10.8.0.14 158692 username milan 158692 kill_reason Another user logged on this global unique id 158692 mac 158692 bytes_out 0 158692 bytes_in 0 158692 station_ip 5.120.56.28 158692 port 647 158692 unique_id port 158694 username houshang 158694 mac 158694 bytes_out 50393 158694 bytes_in 338587 158694 station_ip 5.119.76.46 158694 port 648 158694 unique_id port 158694 remote_ip 10.8.0.134 158696 username aminvpn 158696 mac 158696 bytes_out 0 158696 bytes_in 0 158696 station_ip 113.203.21.245 158696 port 649 158696 unique_id port 158696 remote_ip 10.8.0.14 158698 username rezaei 158698 kill_reason Another user logged on this global unique id 158698 mac 158698 bytes_out 0 158698 bytes_in 0 158698 station_ip 5.119.53.117 158698 port 336 158698 unique_id port 158699 username aminvpn 158699 mac 158699 bytes_out 0 158699 bytes_in 0 158699 station_ip 113.203.21.245 158699 port 648 158699 unique_id port 158699 remote_ip 10.8.0.14 158701 username aminvpn 158701 mac 158701 bytes_out 0 158701 bytes_in 0 158701 station_ip 113.203.21.245 158701 port 648 158701 unique_id port 158701 remote_ip 10.8.0.14 158703 username aminvpn 158703 mac 158703 bytes_out 0 158703 bytes_in 0 158703 station_ip 113.203.21.245 158703 port 649 158703 unique_id port 158703 remote_ip 10.8.0.14 158704 username barzegar 158704 mac 158704 bytes_out 0 158668 bytes_out 0 158668 bytes_in 0 158668 station_ip 5.120.56.28 158668 port 647 158668 unique_id port 158676 username barzegar 158676 mac 158676 bytes_out 0 158676 bytes_in 0 158676 station_ip 5.119.251.3 158676 port 645 158676 unique_id port 158676 remote_ip 10.8.0.234 158683 username tahmasebi 158683 mac 158683 bytes_out 0 158683 bytes_in 0 158683 station_ip 5.119.74.98 158683 port 648 158683 unique_id port 158686 username godarzi 158686 mac 158686 bytes_out 120264 158686 bytes_in 1208655 158686 station_ip 5.202.12.121 158686 port 334 158686 unique_id port 158686 remote_ip 10.8.1.230 158695 username shadkam 158695 mac 158695 bytes_out 0 158695 bytes_in 0 158695 station_ip 83.122.114.174 158695 port 328 158695 unique_id port 158695 remote_ip 10.8.1.218 158697 username aminvpn 158697 mac 158697 bytes_out 0 158697 bytes_in 0 158697 station_ip 113.203.21.245 158697 port 631 158697 unique_id port 158697 remote_ip 10.8.0.14 158702 username barzegar 158702 mac 158702 bytes_out 0 158702 bytes_in 0 158702 station_ip 5.119.251.3 158702 port 613 158702 unique_id port 158702 remote_ip 10.8.0.234 158705 username barzegar 158705 mac 158705 bytes_out 0 158705 bytes_in 0 158705 station_ip 5.119.251.3 158705 port 328 158705 unique_id port 158705 remote_ip 10.8.1.174 158713 username barzegar 158713 mac 158713 bytes_out 2530 158713 bytes_in 4953 158713 station_ip 5.119.251.3 158713 port 328 158713 unique_id port 158713 remote_ip 10.8.1.174 158716 username barzegar 158716 mac 158716 bytes_out 0 158716 bytes_in 0 158716 station_ip 5.119.251.3 158716 port 613 158716 unique_id port 158716 remote_ip 10.8.0.234 158718 username arash 158718 mac 158718 bytes_out 0 158718 bytes_in 0 158718 station_ip 5.134.167.157 158718 port 631 158718 unique_id port 158718 remote_ip 10.8.0.114 158719 username farhad2 158719 kill_reason Another user logged on this global unique id 158719 mac 158719 bytes_out 0 158719 bytes_in 0 158719 station_ip 5.119.213.159 158719 port 645 158719 unique_id port 158719 remote_ip 10.8.0.190 158721 username mohammadjavad 158721 mac 158721 bytes_out 0 158721 bytes_in 0 158721 station_ip 83.123.64.236 158721 port 650 158721 unique_id port 158721 remote_ip 10.8.0.142 158726 username barzegar 158726 mac 158726 bytes_out 0 158726 bytes_in 0 158726 station_ip 5.119.251.3 158726 port 650 158726 unique_id port 158726 remote_ip 10.8.0.234 158727 username aminvpn 158727 mac 158727 bytes_out 0 158727 bytes_in 0 158727 station_ip 113.203.21.245 158727 port 631 158727 unique_id port 158727 remote_ip 10.8.0.14 158729 username aminvpn 158729 mac 158729 bytes_out 0 158729 bytes_in 0 158729 station_ip 113.203.21.245 158729 port 650 158729 unique_id port 158729 remote_ip 10.8.0.14 158735 username forozandeh1 158735 mac 158735 bytes_out 0 158735 bytes_in 0 158735 station_ip 83.122.9.104 158735 port 631 158735 unique_id port 158735 remote_ip 10.8.0.130 158738 username aminvpn 158738 mac 158738 bytes_out 0 158738 bytes_in 0 158738 station_ip 113.203.21.245 158738 port 646 158738 unique_id port 158738 remote_ip 10.8.0.14 158740 username aminvpn 158740 mac 158740 bytes_out 0 158740 bytes_in 0 158740 station_ip 5.120.171.75 158740 port 646 158740 unique_id port 158740 remote_ip 10.8.0.14 158747 username kordestani 158747 mac 158747 bytes_out 2307772 158747 bytes_in 37462904 158747 station_ip 151.235.87.86 158747 port 325 158681 bytes_in 0 158681 station_ip 5.119.213.159 158681 port 645 158681 unique_id port 158681 remote_ip 10.8.0.190 158682 username jamali 158682 mac 158682 bytes_out 19197 158682 bytes_in 38275 158682 station_ip 5.119.88.219 158682 port 646 158682 unique_id port 158682 remote_ip 10.8.0.70 158687 username houshang 158687 mac 158687 bytes_out 0 158687 bytes_in 0 158687 station_ip 5.119.76.46 158687 port 631 158687 unique_id port 158687 remote_ip 10.8.0.134 158688 username aminvpn 158688 mac 158688 bytes_out 1574219 158688 bytes_in 20907642 158688 station_ip 113.203.21.245 158688 port 613 158688 unique_id port 158688 remote_ip 10.8.0.14 158690 username khademi 158690 kill_reason Another user logged on this global unique id 158690 mac 158690 bytes_out 0 158690 bytes_in 0 158690 station_ip 113.203.78.111 158690 port 614 158690 unique_id port 158691 username aminvpn 158691 mac 158691 bytes_out 0 158691 bytes_in 0 158691 station_ip 113.203.21.245 158691 port 649 158691 unique_id port 158691 remote_ip 10.8.0.14 158693 username aminvpn 158693 mac 158693 bytes_out 0 158693 bytes_in 0 158693 station_ip 113.203.21.245 158693 port 631 158693 unique_id port 158693 remote_ip 10.8.0.14 158700 username aminvpn 158700 mac 158700 bytes_out 0 158700 bytes_in 0 158700 station_ip 113.203.21.245 158700 port 631 158700 unique_id port 158700 remote_ip 10.8.0.14 158708 username aminvpn 158708 mac 158708 bytes_out 0 158708 bytes_in 0 158708 station_ip 113.203.21.245 158708 port 648 158708 unique_id port 158708 remote_ip 10.8.0.14 158709 username shadkam 158709 mac 158709 bytes_out 0 158709 bytes_in 0 158709 station_ip 83.122.134.189 158709 port 334 158709 unique_id port 158709 remote_ip 10.8.1.218 158711 username shadkam 158711 mac 158711 bytes_out 0 158711 bytes_in 0 158711 station_ip 83.122.134.189 158711 port 334 158711 unique_id port 158711 remote_ip 10.8.1.218 158717 username jafari 158717 kill_reason Another user logged on this global unique id 158717 mac 158717 bytes_out 0 158717 bytes_in 0 158717 station_ip 37.156.155.122 158717 port 649 158717 unique_id port 158717 remote_ip 10.8.0.242 158720 username barzegar 158720 mac 158720 bytes_out 0 158720 bytes_in 0 158720 station_ip 5.119.251.3 158720 port 613 158720 unique_id port 158720 remote_ip 10.8.0.234 158722 username aminvpn 158722 mac 158722 bytes_out 0 158722 bytes_in 0 158722 station_ip 113.203.21.245 158722 port 653 158722 unique_id port 158722 remote_ip 10.8.0.14 158728 username shadkam 158728 mac 158728 bytes_out 824507 158728 bytes_in 9648148 158728 station_ip 83.123.59.103 158728 port 334 158728 unique_id port 158728 remote_ip 10.8.1.218 158733 username aminvpn 158733 mac 158733 bytes_out 0 158733 bytes_in 0 158733 station_ip 113.203.21.245 158733 port 646 158733 unique_id port 158733 remote_ip 10.8.0.14 158742 username jamali 158742 mac 158742 bytes_out 29820 158742 bytes_in 71884 158742 station_ip 5.119.88.219 158742 port 651 158742 unique_id port 158742 remote_ip 10.8.0.70 158744 username aminvpn 158744 mac 158744 bytes_out 0 158744 bytes_in 0 158744 station_ip 5.120.171.75 158744 port 651 158744 unique_id port 158744 remote_ip 10.8.0.14 158749 username asma2026 158749 mac 158749 bytes_out 0 158749 bytes_in 0 158749 station_ip 5.250.109.245 158749 port 655 158749 unique_id port 158749 remote_ip 10.8.0.94 158752 username milan 158752 kill_reason Another user logged on this global unique id 158752 mac 158704 bytes_in 0 158704 station_ip 5.119.251.3 158704 port 648 158704 unique_id port 158704 remote_ip 10.8.0.234 158706 username aminvpn 158706 mac 158706 bytes_out 0 158706 bytes_in 0 158706 station_ip 113.203.21.245 158706 port 613 158706 unique_id port 158706 remote_ip 10.8.0.14 158707 username houshang 158707 mac 158707 bytes_out 1316226 158707 bytes_in 4599134 158707 station_ip 5.119.76.46 158707 port 651 158707 unique_id port 158707 remote_ip 10.8.0.134 158710 username khademi 158710 kill_reason Another user logged on this global unique id 158710 mac 158710 bytes_out 0 158710 bytes_in 0 158710 station_ip 113.203.78.111 158710 port 614 158710 unique_id port 158712 username rezaei 158712 mac 158712 bytes_out 0 158712 bytes_in 0 158712 station_ip 5.119.53.117 158712 port 336 158712 unique_id port 158714 username aminvpn 158714 mac 158714 bytes_out 5998 158714 bytes_in 11913 158714 station_ip 113.203.21.245 158714 port 613 158714 unique_id port 158714 remote_ip 10.8.0.14 158715 username aminvpn 158715 mac 158715 bytes_out 0 158715 bytes_in 0 158715 station_ip 113.203.21.245 158715 port 651 158715 unique_id port 158715 remote_ip 10.8.0.14 158723 username aminvpn 158723 mac 158723 bytes_out 0 158723 bytes_in 0 158723 station_ip 113.203.21.245 158723 port 631 158723 unique_id port 158723 remote_ip 10.8.0.14 158724 username khademi 158724 kill_reason Another user logged on this global unique id 158724 mac 158724 bytes_out 0 158724 bytes_in 0 158724 station_ip 113.203.78.111 158724 port 614 158724 unique_id port 158725 username aminvpn 158725 mac 158725 bytes_out 0 158725 bytes_in 0 158725 station_ip 113.203.21.245 158725 port 651 158725 unique_id port 158725 remote_ip 10.8.0.14 158730 username aminvpn 158730 mac 158730 bytes_out 0 158730 bytes_in 0 158730 station_ip 5.120.171.75 158730 port 651 158730 unique_id port 158730 remote_ip 10.8.0.14 158731 username jamali 158731 mac 158731 bytes_out 0 158731 bytes_in 0 158731 station_ip 5.119.88.219 158731 port 646 158731 unique_id port 158731 remote_ip 10.8.0.70 158732 username aminvpn 158732 mac 158732 bytes_out 0 158732 bytes_in 0 158732 station_ip 113.203.21.245 158732 port 650 158732 unique_id port 158732 remote_ip 10.8.0.14 158734 username farhad2 158734 mac 158734 bytes_out 0 158734 bytes_in 0 158734 station_ip 5.119.213.159 158734 port 645 158734 unique_id port 158736 username aminvpn 158736 mac 158736 bytes_out 0 158736 bytes_in 0 158736 station_ip 5.120.171.75 158736 port 650 158736 unique_id port 158736 remote_ip 10.8.0.14 158737 username aminvpn 158737 mac 158737 bytes_out 0 158737 bytes_in 0 158737 station_ip 113.203.21.245 158737 port 631 158737 unique_id port 158737 remote_ip 10.8.0.14 158739 username aminvpn 158739 mac 158739 bytes_out 0 158739 bytes_in 0 158739 station_ip 113.203.21.245 158739 port 631 158739 unique_id port 158739 remote_ip 10.8.0.14 158741 username aminvpn 158741 mac 158741 bytes_out 0 158741 bytes_in 0 158741 station_ip 113.203.21.245 158741 port 653 158741 unique_id port 158741 remote_ip 10.8.0.14 158743 username aminvpn 158743 mac 158743 bytes_out 0 158743 bytes_in 0 158743 station_ip 113.203.21.245 158743 port 646 158743 unique_id port 158743 remote_ip 10.8.0.14 158745 username vanila 158745 mac 158745 bytes_out 0 158745 bytes_in 0 158745 station_ip 113.203.72.206 158745 port 650 158745 unique_id port 158745 remote_ip 10.8.0.178 158746 username aminvpn 158746 kill_reason Maximum check online fails reached 158746 mac 158746 bytes_out 0 158746 bytes_in 0 158746 station_ip 113.203.21.245 158746 port 654 158746 unique_id port 158751 username jafari 158751 kill_reason Another user logged on this global unique id 158751 mac 158751 bytes_out 0 158751 bytes_in 0 158751 station_ip 37.156.155.122 158751 port 649 158751 unique_id port 158756 username forozandeh1 158756 mac 158756 bytes_out 0 158756 bytes_in 0 158756 station_ip 37.129.200.45 158756 port 631 158756 unique_id port 158756 remote_ip 10.8.0.130 158758 username farhad2 158758 mac 158758 bytes_out 0 158758 bytes_in 0 158758 station_ip 5.119.213.159 158758 port 645 158758 unique_id port 158758 remote_ip 10.8.0.190 158763 username asma2026 158763 mac 158763 bytes_out 0 158763 bytes_in 0 158763 station_ip 5.250.109.245 158763 port 645 158763 unique_id port 158763 remote_ip 10.8.0.94 158765 username kordestani 158765 mac 158765 bytes_out 0 158765 bytes_in 0 158765 station_ip 37.129.167.99 158765 port 650 158765 unique_id port 158765 remote_ip 10.8.0.74 158766 username barzegar 158766 mac 158766 bytes_out 0 158766 bytes_in 0 158766 station_ip 5.119.251.3 158766 port 655 158766 unique_id port 158766 remote_ip 10.8.0.234 158770 username jafari 158770 kill_reason Another user logged on this global unique id 158770 mac 158770 bytes_out 0 158770 bytes_in 0 158770 station_ip 37.156.155.122 158770 port 649 158770 unique_id port 158776 username barzegar 158776 mac 158776 bytes_out 0 158776 bytes_in 0 158776 station_ip 5.119.251.3 158776 port 631 158776 unique_id port 158776 remote_ip 10.8.0.234 158779 username shadkam 158779 mac 158779 bytes_out 169140 158779 bytes_in 2033132 158779 station_ip 37.129.10.192 158779 port 325 158779 unique_id port 158779 remote_ip 10.8.1.218 158784 username mohammadjavad 158784 mac 158784 bytes_out 0 158784 bytes_in 0 158784 station_ip 37.129.35.50 158784 port 613 158784 unique_id port 158785 username jafari 158785 kill_reason Another user logged on this global unique id 158785 mac 158785 bytes_out 0 158785 bytes_in 0 158785 station_ip 37.156.155.122 158785 port 649 158785 unique_id port 158790 username godarzi 158790 mac 158790 bytes_out 2400048 158790 bytes_in 31053869 158790 station_ip 5.202.12.121 158790 port 325 158790 unique_id port 158790 remote_ip 10.8.1.230 158796 username barzegar 158796 mac 158796 bytes_out 0 158796 bytes_in 0 158796 station_ip 5.119.251.3 158796 port 650 158796 unique_id port 158796 remote_ip 10.8.0.234 158800 username farhad2 158800 mac 158800 bytes_out 211411 158800 bytes_in 918941 158800 station_ip 5.119.213.159 158800 port 325 158800 unique_id port 158800 remote_ip 10.8.1.222 158802 username sabaghnezhad 158802 mac 158802 bytes_out 0 158802 bytes_in 0 158802 station_ip 37.129.149.188 158802 port 650 158802 unique_id port 158802 remote_ip 10.8.0.186 158803 username shadkam 158803 mac 158803 bytes_out 2300 158803 bytes_in 4656 158803 station_ip 83.122.77.220 158803 port 334 158803 unique_id port 158803 remote_ip 10.8.1.218 158810 username barzegar 158810 mac 158810 bytes_out 1645013 158810 bytes_in 1754526 158810 station_ip 5.119.251.3 158810 port 328 158810 unique_id port 158810 remote_ip 10.8.1.174 158811 username asma2026 158811 mac 158811 bytes_out 0 158811 bytes_in 0 158811 station_ip 5.250.54.225 158811 port 652 158811 unique_id port 158811 remote_ip 10.8.0.94 158813 username farhad2 158747 unique_id port 158747 remote_ip 10.8.1.98 158748 username mohammadjavad 158748 mac 158748 bytes_out 0 158748 bytes_in 0 158748 station_ip 37.129.192.102 158748 port 613 158748 unique_id port 158748 remote_ip 10.8.0.142 158750 username barzegar 158750 mac 158750 bytes_out 0 158750 bytes_in 0 158750 station_ip 5.119.251.3 158750 port 655 158750 unique_id port 158750 remote_ip 10.8.0.234 158753 username shadkam 158753 mac 158753 bytes_out 0 158753 bytes_in 0 158753 station_ip 83.122.129.34 158753 port 325 158753 unique_id port 158753 remote_ip 10.8.1.218 158754 username barzegar 158754 mac 158754 bytes_out 0 158754 bytes_in 0 158754 station_ip 5.119.251.3 158754 port 655 158754 unique_id port 158754 remote_ip 10.8.0.234 158760 username farhad2 158760 mac 158760 bytes_out 0 158760 bytes_in 0 158760 station_ip 5.119.213.159 158760 port 631 158760 unique_id port 158760 remote_ip 10.8.0.190 158762 username jafari 158762 kill_reason Another user logged on this global unique id 158762 mac 158762 bytes_out 0 158762 bytes_in 0 158762 station_ip 37.156.155.122 158762 port 649 158762 unique_id port 158767 username fezealinaghi 158767 mac 158767 bytes_out 0 158767 bytes_in 0 158767 station_ip 83.122.133.255 158767 port 613 158767 unique_id port 158767 remote_ip 10.8.0.78 158768 username asma2026 158768 mac 158768 bytes_out 0 158768 bytes_in 0 158768 station_ip 5.250.109.245 158768 port 325 158768 unique_id port 158768 remote_ip 10.8.1.122 158772 username barzegar 158772 mac 158772 bytes_out 0 158772 bytes_in 0 158772 station_ip 5.119.251.3 158772 port 650 158772 unique_id port 158772 remote_ip 10.8.0.234 158773 username barzegar 158773 mac 158773 bytes_out 0 158773 bytes_in 0 158773 station_ip 5.119.251.3 158773 port 650 158773 unique_id port 158773 remote_ip 10.8.0.234 158777 username forozandeh1 158777 kill_reason Another user logged on this global unique id 158777 mac 158777 bytes_out 0 158777 bytes_in 0 158777 station_ip 83.123.61.177 158777 port 645 158777 unique_id port 158777 remote_ip 10.8.0.130 158782 username forozandeh1 158782 kill_reason Another user logged on this global unique id 158782 mac 158782 bytes_out 0 158782 bytes_in 0 158782 station_ip 83.123.61.177 158782 port 645 158782 unique_id port 158792 username forozandeh1 158792 mac 158792 bytes_out 0 158792 bytes_in 0 158792 station_ip 37.129.118.220 158792 port 645 158792 unique_id port 158792 remote_ip 10.8.0.130 158795 username alipour 158795 kill_reason Another user logged on this global unique id 158795 mac 158795 bytes_out 0 158795 bytes_in 0 158795 station_ip 83.122.235.114 158795 port 632 158795 unique_id port 158795 remote_ip 10.8.0.102 158799 username farhad2 158799 mac 158799 bytes_out 0 158799 bytes_in 0 158799 station_ip 5.119.213.159 158799 port 325 158799 unique_id port 158799 remote_ip 10.8.1.222 158801 username kalantary 158801 mac 158801 bytes_out 0 158801 bytes_in 0 158801 station_ip 113.203.109.177 158801 port 643 158801 unique_id port 158801 remote_ip 10.8.0.98 158805 username godarzi 158805 mac 158805 bytes_out 481359 158805 bytes_in 5224387 158805 station_ip 5.202.12.121 158805 port 334 158805 unique_id port 158805 remote_ip 10.8.1.230 158806 username asma2026 158806 mac 158806 bytes_out 0 158806 bytes_in 0 158806 station_ip 5.250.54.225 158806 port 334 158806 unique_id port 158806 remote_ip 10.8.1.122 158807 username rezaei 158807 mac 158807 bytes_out 777013 158807 bytes_in 4983287 158752 bytes_out 0 158752 bytes_in 0 158752 station_ip 5.120.56.28 158752 port 647 158752 unique_id port 158755 username houshang 158755 mac 158755 bytes_out 0 158755 bytes_in 0 158755 station_ip 5.119.76.46 158755 port 650 158755 unique_id port 158755 remote_ip 10.8.0.134 158757 username godarzi 158757 mac 158757 bytes_out 2882517 158757 bytes_in 44969551 158757 station_ip 5.202.12.121 158757 port 328 158757 unique_id port 158757 remote_ip 10.8.1.230 158759 username fezealinaghi 158759 mac 158759 bytes_out 0 158759 bytes_in 0 158759 station_ip 83.122.133.255 158759 port 651 158759 unique_id port 158759 remote_ip 10.8.0.78 158761 username mohammadjavad 158761 mac 158761 bytes_out 0 158761 bytes_in 0 158761 station_ip 113.203.17.202 158761 port 613 158761 unique_id port 158761 remote_ip 10.8.0.142 158764 username shadkam 158764 mac 158764 bytes_out 0 158764 bytes_in 0 158764 station_ip 83.123.94.3 158764 port 325 158764 unique_id port 158764 remote_ip 10.8.1.218 158769 username barzegar 158769 mac 158769 bytes_out 0 158769 bytes_in 0 158769 station_ip 5.119.251.3 158769 port 650 158769 unique_id port 158769 remote_ip 10.8.0.234 158771 username mosi 158771 mac 158771 bytes_out 0 158771 bytes_in 0 158771 station_ip 151.235.89.191 158771 port 656 158771 unique_id port 158771 remote_ip 10.8.0.138 158774 username farhad2 158774 mac 158774 bytes_out 0 158774 bytes_in 0 158774 station_ip 5.119.213.159 158774 port 631 158774 unique_id port 158774 remote_ip 10.8.0.190 158775 username barzegar 158775 mac 158775 bytes_out 0 158775 bytes_in 0 158775 station_ip 5.119.251.3 158775 port 631 158775 unique_id port 158775 remote_ip 10.8.0.234 158778 username Mahin 158778 mac 158778 bytes_out 0 158778 bytes_in 0 158778 station_ip 5.119.186.133 158778 port 643 158778 unique_id port 158780 username farhad2 158780 kill_reason Maximum check online fails reached 158780 mac 158780 bytes_out 0 158780 bytes_in 0 158780 station_ip 5.119.213.159 158780 port 631 158780 unique_id port 158781 username mohammadjavad 158781 kill_reason Another user logged on this global unique id 158781 mac 158781 bytes_out 0 158781 bytes_in 0 158781 station_ip 37.129.35.50 158781 port 613 158781 unique_id port 158781 remote_ip 10.8.0.142 158783 username forozandeh1 158783 mac 158783 bytes_out 0 158783 bytes_in 0 158783 station_ip 83.123.61.177 158783 port 645 158783 unique_id port 158786 username malekpoir 158786 mac 158786 bytes_out 0 158786 bytes_in 0 158786 station_ip 5.119.13.215 158786 port 609 158786 unique_id port 158786 remote_ip 10.8.0.58 158787 username pourshad 158787 kill_reason Another user logged on this global unique id 158787 mac 158787 bytes_out 0 158787 bytes_in 0 158787 station_ip 5.120.128.181 158787 port 641 158787 unique_id port 158787 remote_ip 10.8.0.18 158788 username farhad2 158788 kill_reason Maximum check online fails reached 158788 mac 158788 bytes_out 0 158788 bytes_in 0 158788 station_ip 5.119.213.159 158788 port 613 158788 unique_id port 158789 username moradi 158789 mac 158789 bytes_out 973598 158789 bytes_in 6969820 158789 station_ip 37.129.202.141 158789 port 334 158789 unique_id port 158789 remote_ip 10.8.1.202 158791 username farhad2 158791 mac 158791 bytes_out 0 158791 bytes_in 0 158791 station_ip 5.119.213.159 158791 port 655 158791 unique_id port 158791 remote_ip 10.8.0.190 158793 username sabaghnezhad 158793 mac 158793 bytes_out 0 158793 bytes_in 0 158793 station_ip 83.122.14.9 158793 port 652 158793 unique_id port 158793 remote_ip 10.8.0.186 158794 username jafari 158794 kill_reason Another user logged on this global unique id 158794 mac 158794 bytes_out 0 158794 bytes_in 0 158794 station_ip 37.156.155.122 158794 port 649 158794 unique_id port 158797 username farhad2 158797 mac 158797 bytes_out 0 158797 bytes_in 0 158797 station_ip 5.119.213.159 158797 port 655 158797 unique_id port 158797 remote_ip 10.8.0.190 158798 username aminvpn 158798 kill_reason Another user logged on this global unique id 158798 mac 158798 bytes_out 0 158798 bytes_in 0 158798 station_ip 113.203.21.245 158798 port 646 158798 unique_id port 158798 remote_ip 10.8.0.14 158804 username jafari 158804 kill_reason Another user logged on this global unique id 158804 mac 158804 bytes_out 0 158804 bytes_in 0 158804 station_ip 37.156.155.122 158804 port 649 158804 unique_id port 158808 username mohammadjavad 158808 mac 158808 bytes_out 0 158808 bytes_in 0 158808 station_ip 37.129.253.205 158808 port 645 158808 unique_id port 158808 remote_ip 10.8.0.142 158816 username jafari 158816 kill_reason Another user logged on this global unique id 158816 mac 158816 bytes_out 0 158816 bytes_in 0 158816 station_ip 37.156.155.122 158816 port 649 158816 unique_id port 158820 username jamali 158820 kill_reason Another user logged on this global unique id 158820 mac 158820 bytes_out 0 158820 bytes_in 0 158820 station_ip 5.119.88.219 158820 port 653 158820 unique_id port 158821 username asma2026 158821 mac 158821 bytes_out 0 158821 bytes_in 0 158821 station_ip 5.250.54.225 158821 port 325 158821 unique_id port 158821 remote_ip 10.8.1.122 158823 username asma2026 158823 mac 158823 bytes_out 0 158823 bytes_in 0 158823 station_ip 5.250.54.225 158823 port 656 158823 unique_id port 158823 remote_ip 10.8.0.94 158825 username jafari 158825 kill_reason Another user logged on this global unique id 158825 mac 158825 bytes_out 0 158825 bytes_in 0 158825 station_ip 37.156.155.122 158825 port 649 158825 unique_id port 158827 username barzegar 158827 mac 158827 bytes_out 0 158827 bytes_in 0 158827 station_ip 5.119.251.3 158827 port 651 158827 unique_id port 158827 remote_ip 10.8.0.234 158828 username barzegar 158828 mac 158828 bytes_out 0 158828 bytes_in 0 158828 station_ip 5.119.251.3 158828 port 656 158828 unique_id port 158828 remote_ip 10.8.0.234 158829 username khalili 158829 kill_reason Another user logged on this global unique id 158829 mac 158829 bytes_out 0 158829 bytes_in 0 158829 station_ip 5.120.90.11 158829 port 652 158829 unique_id port 158832 username milan 158832 kill_reason Another user logged on this global unique id 158832 mac 158832 bytes_out 0 158832 bytes_in 0 158832 station_ip 5.120.56.28 158832 port 647 158832 unique_id port 158833 username khalili 158833 mac 158833 bytes_out 0 158833 bytes_in 0 158833 station_ip 5.120.90.11 158833 port 652 158833 unique_id port 158838 username fezealinaghi 158838 mac 158838 bytes_out 12954 158838 bytes_in 18142 158838 station_ip 83.122.133.255 158838 port 325 158838 unique_id port 158838 remote_ip 10.8.1.162 158844 username asma2026 158844 mac 158844 bytes_out 0 158844 bytes_in 0 158844 station_ip 5.250.54.225 158844 port 651 158844 unique_id port 158844 remote_ip 10.8.0.94 158847 username ayobi 158847 kill_reason Another user logged on this global unique id 158847 mac 158847 bytes_out 0 158847 bytes_in 0 158847 station_ip 37.27.29.160 158847 port 652 158847 unique_id port 158847 remote_ip 10.8.0.246 158849 username asma2026 158807 station_ip 5.119.53.117 158807 port 339 158807 unique_id port 158807 remote_ip 10.8.1.58 158809 username Mahin 158809 mac 158809 bytes_out 0 158809 bytes_in 0 158809 station_ip 5.119.186.133 158809 port 651 158809 unique_id port 158809 remote_ip 10.8.0.162 158812 username jamali 158812 kill_reason Another user logged on this global unique id 158812 mac 158812 bytes_out 0 158812 bytes_in 0 158812 station_ip 5.119.88.219 158812 port 653 158812 unique_id port 158812 remote_ip 10.8.0.70 158815 username farhad2 158815 mac 158815 bytes_out 93020 158815 bytes_in 305439 158815 station_ip 5.119.213.159 158815 port 325 158815 unique_id port 158815 remote_ip 10.8.1.222 158817 username aminvpn 158817 mac 158817 bytes_out 0 158817 bytes_in 0 158817 station_ip 113.203.21.245 158817 port 646 158817 unique_id port 158818 username asma2026 158818 mac 158818 bytes_out 0 158818 bytes_in 0 158818 station_ip 5.250.54.225 158818 port 325 158818 unique_id port 158818 remote_ip 10.8.1.122 158822 username jamali 158822 kill_reason Another user logged on this global unique id 158822 mac 158822 bytes_out 0 158822 bytes_in 0 158822 station_ip 5.119.88.219 158822 port 653 158822 unique_id port 158824 username farhad2 158824 mac 158824 bytes_out 0 158824 bytes_in 0 158824 station_ip 5.119.213.159 158824 port 643 158824 unique_id port 158824 remote_ip 10.8.0.190 158826 username farhad2 158826 mac 158826 bytes_out 0 158826 bytes_in 0 158826 station_ip 5.119.213.159 158826 port 656 158826 unique_id port 158826 remote_ip 10.8.0.190 158831 username sekonji3 158831 mac 158831 bytes_out 0 158831 bytes_in 0 158831 station_ip 83.122.229.81 158831 port 658 158831 unique_id port 158831 remote_ip 10.8.0.6 158835 username fezealinaghi 158835 mac 158835 bytes_out 44529 158835 bytes_in 34103 158835 station_ip 83.122.133.255 158835 port 659 158835 unique_id port 158835 remote_ip 10.8.0.78 158836 username pourshad 158836 kill_reason Another user logged on this global unique id 158836 mac 158836 bytes_out 0 158836 bytes_in 0 158836 station_ip 5.120.128.181 158836 port 641 158836 unique_id port 158837 username aminvpn 158837 mac 158837 bytes_out 0 158837 bytes_in 0 158837 station_ip 113.203.21.245 158837 port 655 158837 unique_id port 158837 remote_ip 10.8.0.14 158839 username kalantary 158839 mac 158839 bytes_out 0 158839 bytes_in 0 158839 station_ip 113.203.23.97 158839 port 646 158839 unique_id port 158839 remote_ip 10.8.0.98 158840 username jafari 158840 kill_reason Another user logged on this global unique id 158840 mac 158840 bytes_out 0 158840 bytes_in 0 158840 station_ip 37.156.155.122 158840 port 649 158840 unique_id port 158845 username sekonji3 158845 mac 158845 bytes_out 0 158845 bytes_in 0 158845 station_ip 83.122.229.81 158845 port 651 158845 unique_id port 158845 remote_ip 10.8.0.6 158846 username sekonji3 158846 mac 158846 bytes_out 0 158846 bytes_in 0 158846 station_ip 83.122.229.81 158846 port 657 158846 unique_id port 158846 remote_ip 10.8.0.6 158859 username sekonji3 158859 mac 158859 bytes_out 0 158859 bytes_in 0 158859 station_ip 83.122.229.81 158859 port 656 158859 unique_id port 158859 remote_ip 10.8.0.6 158862 username tahmasebi 158862 mac 158862 bytes_out 0 158862 bytes_in 0 158862 station_ip 5.119.74.98 158862 port 643 158862 unique_id port 158862 remote_ip 10.8.0.42 158866 username tahmasebi 158866 mac 158866 bytes_out 0 158866 bytes_in 0 158866 station_ip 5.119.74.98 158813 mac 158813 bytes_out 2369035 158813 bytes_in 22608902 158813 station_ip 5.119.213.159 158813 port 325 158813 unique_id port 158813 remote_ip 10.8.1.222 158814 username sabaghnezhad 158814 mac 158814 bytes_out 0 158814 bytes_in 0 158814 station_ip 37.129.149.188 158814 port 643 158814 unique_id port 158814 remote_ip 10.8.0.186 158819 username khalili 158819 kill_reason Another user logged on this global unique id 158819 mac 158819 bytes_out 0 158819 bytes_in 0 158819 station_ip 5.120.90.11 158819 port 652 158819 unique_id port 158819 remote_ip 10.8.0.86 158830 username fezealinaghi 158830 mac 158830 bytes_out 0 158830 bytes_in 0 158830 station_ip 83.122.133.255 158830 port 650 158830 unique_id port 158830 remote_ip 10.8.0.78 158834 username shadkam 158834 mac 158834 bytes_out 0 158834 bytes_in 0 158834 station_ip 113.203.23.132 158834 port 325 158834 unique_id port 158834 remote_ip 10.8.1.218 158841 username sekonji3 158841 mac 158841 bytes_out 0 158841 bytes_in 0 158841 station_ip 83.122.229.81 158841 port 652 158841 unique_id port 158841 remote_ip 10.8.0.6 158842 username farhad2 158842 mac 158842 bytes_out 1387102 158842 bytes_in 10771459 158842 station_ip 5.119.213.159 158842 port 657 158842 unique_id port 158842 remote_ip 10.8.0.190 158843 username houshang 158843 mac 158843 bytes_out 0 158843 bytes_in 0 158843 station_ip 5.119.76.46 158843 port 643 158843 unique_id port 158843 remote_ip 10.8.0.134 158848 username mohammadjavad 158848 kill_reason Another user logged on this global unique id 158848 mac 158848 bytes_out 0 158848 bytes_in 0 158848 station_ip 37.129.18.157 158848 port 643 158848 unique_id port 158848 remote_ip 10.8.0.142 158850 username jafari 158850 kill_reason Another user logged on this global unique id 158850 mac 158850 bytes_out 0 158850 bytes_in 0 158850 station_ip 37.156.155.122 158850 port 649 158850 unique_id port 158853 username sekonji3 158853 mac 158853 bytes_out 0 158853 bytes_in 0 158853 station_ip 83.122.229.81 158853 port 653 158853 unique_id port 158853 remote_ip 10.8.0.6 158855 username barzegar 158855 mac 158855 bytes_out 0 158855 bytes_in 0 158855 station_ip 5.119.251.3 158855 port 656 158855 unique_id port 158855 remote_ip 10.8.0.234 158858 username barzegar 158858 mac 158858 bytes_out 0 158858 bytes_in 0 158858 station_ip 5.119.251.3 158858 port 641 158858 unique_id port 158858 remote_ip 10.8.0.234 158863 username sekonji3 158863 mac 158863 bytes_out 0 158863 bytes_in 0 158863 station_ip 83.122.229.81 158863 port 641 158863 unique_id port 158863 remote_ip 10.8.0.6 158864 username khalili 158864 mac 158864 bytes_out 0 158864 bytes_in 0 158864 station_ip 5.120.90.11 158864 port 328 158864 unique_id port 158865 username asma2026 158865 mac 158865 bytes_out 0 158865 bytes_in 0 158865 station_ip 5.250.54.225 158865 port 643 158865 unique_id port 158865 remote_ip 10.8.0.94 158868 username tahmasebi 158868 mac 158868 bytes_out 0 158868 bytes_in 0 158868 station_ip 5.119.74.98 158868 port 328 158868 unique_id port 158868 remote_ip 10.8.1.90 158871 username arash 158871 mac 158871 bytes_out 0 158871 bytes_in 0 158871 station_ip 5.134.167.157 158871 port 650 158871 unique_id port 158871 remote_ip 10.8.0.114 158873 username forozandeh1 158873 kill_reason Another user logged on this global unique id 158873 mac 158873 bytes_out 0 158873 bytes_in 0 158873 station_ip 83.122.91.26 158873 port 651 158873 unique_id port 158877 username asma2026 158849 mac 158849 bytes_out 0 158849 bytes_in 0 158849 station_ip 5.250.54.225 158849 port 340 158849 unique_id port 158849 remote_ip 10.8.1.122 158851 username jamali 158851 mac 158851 bytes_out 0 158851 bytes_in 0 158851 station_ip 5.119.88.219 158851 port 653 158851 unique_id port 158852 username sekonji3 158852 mac 158852 bytes_out 0 158852 bytes_in 0 158852 station_ip 83.122.229.81 158852 port 653 158852 unique_id port 158852 remote_ip 10.8.0.6 158854 username mohammadjavad 158854 mac 158854 bytes_out 0 158854 bytes_in 0 158854 station_ip 37.129.18.157 158854 port 643 158854 unique_id port 158856 username khalili 158856 kill_reason Another user logged on this global unique id 158856 mac 158856 bytes_out 0 158856 bytes_in 0 158856 station_ip 5.120.90.11 158856 port 328 158856 unique_id port 158856 remote_ip 10.8.1.18 158857 username pourshad 158857 mac 158857 bytes_out 0 158857 bytes_in 0 158857 station_ip 5.120.128.181 158857 port 641 158857 unique_id port 158860 username forozandeh1 158860 kill_reason Another user logged on this global unique id 158860 mac 158860 bytes_out 0 158860 bytes_in 0 158860 station_ip 83.122.91.26 158860 port 651 158860 unique_id port 158860 remote_ip 10.8.0.130 158861 username sekonji3 158861 mac 158861 bytes_out 0 158861 bytes_in 0 158861 station_ip 83.122.229.81 158861 port 641 158861 unique_id port 158861 remote_ip 10.8.0.6 158869 username rezaei 158869 mac 158869 bytes_out 0 158869 bytes_in 0 158869 station_ip 5.119.53.117 158869 port 339 158869 unique_id port 158869 remote_ip 10.8.1.58 158872 username tahmasebi 158872 mac 158872 bytes_out 2628 158872 bytes_in 5526 158872 station_ip 5.119.74.98 158872 port 660 158872 unique_id port 158872 remote_ip 10.8.0.42 158875 username farhad2 158875 kill_reason Another user logged on this global unique id 158875 mac 158875 bytes_out 0 158875 bytes_in 0 158875 station_ip 5.120.101.47 158875 port 334 158875 unique_id port 158875 remote_ip 10.8.1.222 158878 username aminvpn 158878 mac 158878 bytes_out 0 158878 bytes_in 0 158878 station_ip 5.120.30.23 158878 port 658 158878 unique_id port 158878 remote_ip 10.8.0.14 158883 username tahmasebi 158883 mac 158883 bytes_out 0 158883 bytes_in 0 158883 station_ip 5.119.74.98 158883 port 328 158883 unique_id port 158883 remote_ip 10.8.1.90 158887 username asma2026 158887 mac 158887 bytes_out 0 158887 bytes_in 0 158887 station_ip 5.250.54.225 158887 port 655 158887 unique_id port 158887 remote_ip 10.8.0.94 158891 username barzegar 158891 mac 158891 bytes_out 0 158891 bytes_in 0 158891 station_ip 5.119.251.3 158891 port 650 158891 unique_id port 158891 remote_ip 10.8.0.234 158893 username barzegar 158893 mac 158893 bytes_out 0 158893 bytes_in 0 158893 station_ip 5.119.251.3 158893 port 648 158893 unique_id port 158893 remote_ip 10.8.0.234 158898 username mosi 158898 mac 158898 bytes_out 0 158898 bytes_in 0 158898 station_ip 151.235.89.191 158898 port 641 158898 unique_id port 158898 remote_ip 10.8.0.138 158899 username sekonji3 158899 mac 158899 bytes_out 0 158899 bytes_in 0 158899 station_ip 83.122.229.81 158899 port 655 158899 unique_id port 158899 remote_ip 10.8.0.6 158905 username sekonji3 158905 mac 158905 bytes_out 0 158905 bytes_in 0 158905 station_ip 83.122.229.81 158905 port 657 158905 unique_id port 158905 remote_ip 10.8.0.6 158911 username arash 158911 kill_reason Another user logged on this global unique id 158911 mac 158866 port 340 158866 unique_id port 158866 remote_ip 10.8.1.90 158867 username houshang 158867 kill_reason Another user logged on this global unique id 158867 mac 158867 bytes_out 0 158867 bytes_in 0 158867 station_ip 5.119.76.46 158867 port 659 158867 unique_id port 158867 remote_ip 10.8.0.134 158870 username houshang 158870 mac 158870 bytes_out 0 158870 bytes_in 0 158870 station_ip 5.119.76.46 158870 port 659 158870 unique_id port 158874 username tahmasebi 158874 mac 158874 bytes_out 0 158874 bytes_in 0 158874 station_ip 5.119.74.98 158874 port 659 158874 unique_id port 158874 remote_ip 10.8.0.42 158876 username forozandeh1 158876 mac 158876 bytes_out 0 158876 bytes_in 0 158876 station_ip 83.122.91.26 158876 port 651 158876 unique_id port 158881 username jafari 158881 mac 158881 bytes_out 0 158881 bytes_in 0 158881 station_ip 37.156.155.122 158881 port 649 158881 unique_id port 158882 username farhad2 158882 mac 158882 bytes_out 0 158882 bytes_in 0 158882 station_ip 5.120.101.47 158882 port 334 158882 unique_id port 158884 username arash 158884 mac 158884 bytes_out 0 158884 bytes_in 0 158884 station_ip 5.134.167.157 158884 port 650 158884 unique_id port 158884 remote_ip 10.8.0.114 158886 username tahmasebi 158886 mac 158886 bytes_out 0 158886 bytes_in 0 158886 station_ip 5.119.74.98 158886 port 655 158886 unique_id port 158886 remote_ip 10.8.0.42 158889 username kalantary 158889 mac 158889 bytes_out 0 158889 bytes_in 0 158889 station_ip 113.203.42.213 158889 port 657 158889 unique_id port 158889 remote_ip 10.8.0.98 158890 username hassan 158890 mac 158890 bytes_out 0 158890 bytes_in 0 158890 station_ip 5.120.164.70 158890 port 648 158890 unique_id port 158890 remote_ip 10.8.0.122 158892 username tahmasebi 158892 mac 158892 bytes_out 0 158892 bytes_in 0 158892 station_ip 5.119.74.98 158892 port 328 158892 unique_id port 158892 remote_ip 10.8.1.90 158894 username arash 158894 kill_reason Another user logged on this global unique id 158894 mac 158894 bytes_out 0 158894 bytes_in 0 158894 station_ip 37.27.8.161 158894 port 651 158894 unique_id port 158894 remote_ip 10.8.0.114 158902 username vanila 158902 mac 158902 bytes_out 191928 158902 bytes_in 564840 158902 station_ip 113.203.16.118 158902 port 655 158902 unique_id port 158902 remote_ip 10.8.0.178 158903 username hamid 158903 kill_reason Another user logged on this global unique id 158903 mac 158903 bytes_out 0 158903 bytes_in 0 158903 station_ip 83.122.15.69 158903 port 658 158903 unique_id port 158903 remote_ip 10.8.0.214 158907 username jamali 158907 kill_reason Another user logged on this global unique id 158907 mac 158907 bytes_out 0 158907 bytes_in 0 158907 station_ip 5.119.88.219 158907 port 653 158907 unique_id port 158907 remote_ip 10.8.0.70 158908 username malekpoir 158908 mac 158908 bytes_out 0 158908 bytes_in 0 158908 station_ip 5.119.13.215 158908 port 609 158908 unique_id port 158908 remote_ip 10.8.0.58 158909 username nilufarrajaei 158909 kill_reason Another user logged on this global unique id 158909 mac 158909 bytes_out 0 158909 bytes_in 0 158909 station_ip 83.122.194.34 158909 port 649 158909 unique_id port 158910 username yaghobi 158910 mac 158910 bytes_out 0 158910 bytes_in 0 158910 station_ip 37.129.74.34 158910 port 641 158910 unique_id port 158910 remote_ip 10.8.0.198 158912 username sekonji3 158912 mac 158912 bytes_out 0 158912 bytes_in 0 158912 station_ip 83.122.229.81 158912 port 641 158877 mac 158877 bytes_out 0 158877 bytes_in 0 158877 station_ip 5.250.54.225 158877 port 328 158877 unique_id port 158877 remote_ip 10.8.1.122 158879 username mohammadmahdi 158879 mac 158879 bytes_out 0 158879 bytes_in 0 158879 station_ip 5.120.190.90 158879 port 655 158879 unique_id port 158879 remote_ip 10.8.0.54 158880 username tahmasebi 158880 mac 158880 bytes_out 0 158880 bytes_in 0 158880 station_ip 5.119.74.98 158880 port 651 158880 unique_id port 158880 remote_ip 10.8.0.42 158885 username hamid 158885 mac 158885 bytes_out 0 158885 bytes_in 0 158885 station_ip 83.122.15.69 158885 port 650 158885 unique_id port 158885 remote_ip 10.8.0.214 158888 username barzegar 158888 mac 158888 bytes_out 0 158888 bytes_in 0 158888 station_ip 5.119.251.3 158888 port 650 158888 unique_id port 158888 remote_ip 10.8.0.234 158895 username sekonji3 158895 mac 158895 bytes_out 0 158895 bytes_in 0 158895 station_ip 83.122.229.81 158895 port 641 158895 unique_id port 158895 remote_ip 10.8.0.6 158896 username nilufarrajaei 158896 kill_reason Another user logged on this global unique id 158896 mac 158896 bytes_out 0 158896 bytes_in 0 158896 station_ip 83.122.194.34 158896 port 649 158896 unique_id port 158896 remote_ip 10.8.0.206 158897 username asma2026 158897 mac 158897 bytes_out 0 158897 bytes_in 0 158897 station_ip 5.250.54.225 158897 port 328 158897 unique_id port 158897 remote_ip 10.8.1.122 158900 username barzegar 158900 mac 158900 bytes_out 0 158900 bytes_in 0 158900 station_ip 5.119.251.3 158900 port 657 158900 unique_id port 158900 remote_ip 10.8.0.234 158901 username asma2026 158901 mac 158901 bytes_out 0 158901 bytes_in 0 158901 station_ip 5.250.54.225 158901 port 328 158901 unique_id port 158901 remote_ip 10.8.1.122 158904 username arash 158904 kill_reason Another user logged on this global unique id 158904 mac 158904 bytes_out 0 158904 bytes_in 0 158904 station_ip 37.27.8.161 158904 port 651 158904 unique_id port 158906 username tahmasebi 158906 mac 158906 bytes_out 0 158906 bytes_in 0 158906 station_ip 5.119.74.98 158906 port 648 158906 unique_id port 158906 remote_ip 10.8.0.42 158916 username ayobi 158916 kill_reason Another user logged on this global unique id 158916 mac 158916 bytes_out 0 158916 bytes_in 0 158916 station_ip 37.27.29.160 158916 port 652 158916 unique_id port 158919 username yaghobi 158919 mac 158919 bytes_out 0 158919 bytes_in 0 158919 station_ip 37.129.74.34 158919 port 641 158919 unique_id port 158919 remote_ip 10.8.0.198 158920 username arash 158920 kill_reason Another user logged on this global unique id 158920 mac 158920 bytes_out 0 158920 bytes_in 0 158920 station_ip 37.27.8.161 158920 port 651 158920 unique_id port 158925 username sekonji3 158925 mac 158925 bytes_out 0 158925 bytes_in 0 158925 station_ip 83.122.229.81 158925 port 641 158925 unique_id port 158925 remote_ip 10.8.0.6 158927 username vanila 158927 mac 158927 bytes_out 0 158927 bytes_in 0 158927 station_ip 113.203.16.118 158927 port 641 158927 unique_id port 158927 remote_ip 10.8.0.178 158930 username mehdizare 158930 mac 158930 bytes_out 499519 158930 bytes_in 1750734 158930 station_ip 83.122.87.157 158930 port 333 158930 unique_id port 158930 remote_ip 10.8.1.42 158932 username mirzaei 158932 kill_reason Another user logged on this global unique id 158932 mac 158932 bytes_out 0 158932 bytes_in 0 158932 station_ip 5.119.43.60 158932 port 643 158932 unique_id port 158932 remote_ip 10.8.0.66 158911 bytes_out 0 158911 bytes_in 0 158911 station_ip 37.27.8.161 158911 port 651 158911 unique_id port 158914 username fezealinaghi 158914 mac 158914 bytes_out 0 158914 bytes_in 0 158914 station_ip 83.122.133.255 158914 port 656 158914 unique_id port 158914 remote_ip 10.8.0.78 158918 username vanila 158918 mac 158918 bytes_out 0 158918 bytes_in 0 158918 station_ip 113.203.16.118 158918 port 655 158918 unique_id port 158921 username kordestani 158921 kill_reason Another user logged on this global unique id 158921 mac 158921 bytes_out 0 158921 bytes_in 0 158921 station_ip 151.235.124.161 158921 port 609 158921 unique_id port 158921 remote_ip 10.8.0.74 158924 username arash 158924 kill_reason Another user logged on this global unique id 158924 mac 158924 bytes_out 0 158924 bytes_in 0 158924 station_ip 37.27.8.161 158924 port 651 158924 unique_id port 158928 username arash 158928 kill_reason Another user logged on this global unique id 158928 mac 158928 bytes_out 0 158928 bytes_in 0 158928 station_ip 37.27.8.161 158928 port 651 158928 unique_id port 158929 username barzegar 158929 mac 158929 bytes_out 0 158929 bytes_in 0 158929 station_ip 5.119.251.3 158929 port 655 158929 unique_id port 158929 remote_ip 10.8.0.234 158938 username asma2026 158938 mac 158938 bytes_out 3469020 158938 bytes_in 44877750 158938 station_ip 5.22.97.57 158938 port 648 158938 unique_id port 158938 remote_ip 10.8.0.94 158943 username tahmasebi 158943 mac 158943 bytes_out 0 158943 bytes_in 0 158943 station_ip 5.119.74.98 158943 port 655 158943 unique_id port 158943 remote_ip 10.8.0.42 158946 username hashtadani4 158946 mac 158946 bytes_out 0 158946 bytes_in 0 158946 station_ip 83.122.133.159 158946 port 648 158946 unique_id port 158946 remote_ip 10.8.0.182 158947 username hashtadani4 158947 mac 158947 bytes_out 0 158947 bytes_in 0 158947 station_ip 83.122.133.159 158947 port 339 158947 unique_id port 158947 remote_ip 10.8.1.142 158950 username kalantary 158950 mac 158950 bytes_out 0 158950 bytes_in 0 158950 station_ip 113.203.106.185 158950 port 641 158950 unique_id port 158950 remote_ip 10.8.0.98 158955 username arash 158955 mac 158955 bytes_out 0 158955 bytes_in 0 158955 station_ip 37.27.8.161 158955 port 648 158955 unique_id port 158955 remote_ip 10.8.0.114 158962 username saeed9658 158962 mac 158962 bytes_out 0 158962 bytes_in 0 158962 station_ip 5.120.106.205 158962 port 656 158962 unique_id port 158962 remote_ip 10.8.0.166 158965 username mosi 158965 mac 158965 bytes_out 0 158965 bytes_in 0 158965 station_ip 151.235.89.191 158965 port 656 158965 unique_id port 158965 remote_ip 10.8.0.138 158969 username hashtadani4 158969 kill_reason Another user logged on this global unique id 158969 mac 158969 bytes_out 0 158969 bytes_in 0 158969 station_ip 83.122.133.159 158969 port 641 158969 unique_id port 158973 username khademi 158973 kill_reason Another user logged on this global unique id 158973 mac 158973 bytes_out 0 158973 bytes_in 0 158973 station_ip 113.203.78.111 158973 port 614 158973 unique_id port 158975 username hashtadani4 158975 mac 158975 bytes_out 0 158975 bytes_in 0 158975 station_ip 83.122.133.159 158975 port 649 158975 unique_id port 158975 remote_ip 10.8.0.182 158977 username hashtadani4 158977 mac 158977 bytes_out 0 158977 bytes_in 0 158977 station_ip 83.122.133.159 158977 port 649 158977 unique_id port 158977 remote_ip 10.8.0.182 158978 username mosi 158978 mac 158978 bytes_out 1630 158912 unique_id port 158912 remote_ip 10.8.0.6 158913 username tahmasebi 158913 mac 158913 bytes_out 0 158913 bytes_in 0 158913 station_ip 5.119.74.98 158913 port 657 158913 unique_id port 158913 remote_ip 10.8.0.42 158915 username vanila 158915 kill_reason Another user logged on this global unique id 158915 mac 158915 bytes_out 0 158915 bytes_in 0 158915 station_ip 113.203.16.118 158915 port 655 158915 unique_id port 158915 remote_ip 10.8.0.178 158917 username barzegar 158917 mac 158917 bytes_out 0 158917 bytes_in 0 158917 station_ip 5.119.251.3 158917 port 656 158917 unique_id port 158917 remote_ip 10.8.0.234 158922 username sekonji3 158922 mac 158922 bytes_out 0 158922 bytes_in 0 158922 station_ip 83.122.229.81 158922 port 655 158922 unique_id port 158922 remote_ip 10.8.0.6 158923 username vanila 158923 mac 158923 bytes_out 181921 158923 bytes_in 529438 158923 station_ip 113.203.16.118 158923 port 641 158923 unique_id port 158923 remote_ip 10.8.0.178 158926 username arash 158926 kill_reason Another user logged on this global unique id 158926 mac 158926 bytes_out 0 158926 bytes_in 0 158926 station_ip 37.27.8.161 158926 port 651 158926 unique_id port 158931 username hassan 158931 mac 158931 bytes_out 50676 158931 bytes_in 414170 158931 station_ip 5.120.164.70 158931 port 328 158931 unique_id port 158931 remote_ip 10.8.1.138 158935 username nilufarrajaei 158935 mac 158935 bytes_out 0 158935 bytes_in 0 158935 station_ip 83.122.194.34 158935 port 649 158935 unique_id port 158936 username sekonji3 158936 mac 158936 bytes_out 0 158936 bytes_in 0 158936 station_ip 83.122.229.81 158936 port 649 158936 unique_id port 158936 remote_ip 10.8.0.6 158940 username mahdiyehalizadeh 158940 mac 158940 bytes_out 0 158940 bytes_in 0 158940 station_ip 5.120.43.32 158940 port 334 158940 unique_id port 158940 remote_ip 10.8.1.110 158941 username jamali 158941 kill_reason Another user logged on this global unique id 158941 mac 158941 bytes_out 0 158941 bytes_in 0 158941 station_ip 5.119.88.219 158941 port 653 158941 unique_id port 158942 username sekonji3 158942 mac 158942 bytes_out 0 158942 bytes_in 0 158942 station_ip 83.122.229.81 158942 port 648 158942 unique_id port 158942 remote_ip 10.8.0.6 158945 username tahmasebi 158945 mac 158945 bytes_out 0 158945 bytes_in 0 158945 station_ip 5.119.74.98 158945 port 648 158945 unique_id port 158945 remote_ip 10.8.0.42 158952 username milan 158952 kill_reason Another user logged on this global unique id 158952 mac 158952 bytes_out 0 158952 bytes_in 0 158952 station_ip 5.120.56.28 158952 port 647 158952 unique_id port 158953 username mahdiyehalizadeh 158953 mac 158953 bytes_out 0 158953 bytes_in 0 158953 station_ip 5.120.43.32 158953 port 649 158953 unique_id port 158953 remote_ip 10.8.0.82 158956 username khademi 158956 kill_reason Another user logged on this global unique id 158956 mac 158956 bytes_out 0 158956 bytes_in 0 158956 station_ip 113.203.78.111 158956 port 614 158956 unique_id port 158957 username godarzi 158957 kill_reason Another user logged on this global unique id 158957 mac 158957 bytes_out 0 158957 bytes_in 0 158957 station_ip 5.202.12.121 158957 port 334 158957 unique_id port 158957 remote_ip 10.8.1.230 158960 username shadkam 158960 kill_reason Another user logged on this global unique id 158960 mac 158960 bytes_out 0 158960 bytes_in 0 158960 station_ip 113.203.63.252 158960 port 325 158960 unique_id port 158960 remote_ip 10.8.1.218 158961 username barzegar 158961 mac 158961 bytes_out 0 158933 username sekonji3 158933 mac 158933 bytes_out 0 158933 bytes_in 0 158933 station_ip 83.122.229.81 158933 port 655 158933 unique_id port 158933 remote_ip 10.8.0.6 158934 username sekonji3 158934 mac 158934 bytes_out 0 158934 bytes_in 0 158934 station_ip 83.122.229.81 158934 port 655 158934 unique_id port 158934 remote_ip 10.8.0.6 158937 username arash 158937 kill_reason Another user logged on this global unique id 158937 mac 158937 bytes_out 0 158937 bytes_in 0 158937 station_ip 37.27.8.161 158937 port 651 158937 unique_id port 158939 username kordestani 158939 mac 158939 bytes_out 0 158939 bytes_in 0 158939 station_ip 151.235.124.161 158939 port 609 158939 unique_id port 158944 username arash 158944 kill_reason Another user logged on this global unique id 158944 mac 158944 bytes_out 0 158944 bytes_in 0 158944 station_ip 37.27.8.161 158944 port 651 158944 unique_id port 158948 username barzegar 158948 mac 158948 bytes_out 0 158948 bytes_in 0 158948 station_ip 5.119.251.3 158948 port 656 158948 unique_id port 158948 remote_ip 10.8.0.234 158949 username arash 158949 mac 158949 bytes_out 0 158949 bytes_in 0 158949 station_ip 37.27.8.161 158949 port 651 158949 unique_id port 158951 username hashtadani4 158951 mac 158951 bytes_out 0 158951 bytes_in 0 158951 station_ip 83.122.133.159 158951 port 648 158951 unique_id port 158951 remote_ip 10.8.0.182 158954 username hashtadani4 158954 mac 158954 bytes_out 0 158954 bytes_in 0 158954 station_ip 83.122.133.159 158954 port 641 158954 unique_id port 158954 remote_ip 10.8.0.182 158958 username rezaei 158958 kill_reason Another user logged on this global unique id 158958 mac 158958 bytes_out 0 158958 bytes_in 0 158958 station_ip 5.119.53.117 158958 port 609 158958 unique_id port 158958 remote_ip 10.8.0.230 158959 username saeed9658 158959 mac 158959 bytes_out 104624 158959 bytes_in 431752 158959 station_ip 5.120.106.205 158959 port 339 158959 unique_id port 158959 remote_ip 10.8.1.210 158963 username hashtadani4 158963 kill_reason Another user logged on this global unique id 158963 mac 158963 bytes_out 0 158963 bytes_in 0 158963 station_ip 83.122.133.159 158963 port 641 158963 unique_id port 158963 remote_ip 10.8.0.182 158966 username shadkam 158966 mac 158966 bytes_out 0 158966 bytes_in 0 158966 station_ip 113.203.63.252 158966 port 325 158966 unique_id port 158970 username tahmasebi 158970 mac 158970 bytes_out 0 158970 bytes_in 0 158970 station_ip 5.119.74.98 158970 port 655 158970 unique_id port 158970 remote_ip 10.8.0.42 158971 username hashtadani4 158971 mac 158971 bytes_out 0 158971 bytes_in 0 158971 station_ip 83.122.133.159 158971 port 641 158971 unique_id port 158974 username rezaei 158974 kill_reason Another user logged on this global unique id 158974 mac 158974 bytes_out 0 158974 bytes_in 0 158974 station_ip 5.119.53.117 158974 port 609 158974 unique_id port 158976 username tahmasebi 158976 mac 158976 bytes_out 0 158976 bytes_in 0 158976 station_ip 5.119.74.98 158976 port 655 158976 unique_id port 158976 remote_ip 10.8.0.42 158983 username hatami 158983 mac 158983 bytes_out 0 158983 bytes_in 0 158983 station_ip 151.235.97.58 158983 port 651 158983 unique_id port 158983 remote_ip 10.8.0.106 158987 username hashtadani4 158987 mac 158987 bytes_out 167198 158987 bytes_in 1964334 158987 station_ip 83.122.133.159 158987 port 651 158987 unique_id port 158987 remote_ip 10.8.0.182 158988 username shadkam 158988 mac 158988 bytes_out 0 158961 bytes_in 0 158961 station_ip 5.119.251.3 158961 port 651 158961 unique_id port 158961 remote_ip 10.8.0.234 158964 username saeed9658 158964 mac 158964 bytes_out 0 158964 bytes_in 0 158964 station_ip 5.120.106.205 158964 port 339 158964 unique_id port 158964 remote_ip 10.8.1.210 158967 username saeed9658 158967 mac 158967 bytes_out 46255 158967 bytes_in 45352 158967 station_ip 5.120.106.205 158967 port 656 158967 unique_id port 158967 remote_ip 10.8.0.166 158968 username kalantary 158968 mac 158968 bytes_out 0 158968 bytes_in 0 158968 station_ip 113.203.106.185 158968 port 649 158968 unique_id port 158968 remote_ip 10.8.0.98 158972 username tahmasebi 158972 mac 158972 bytes_out 0 158972 bytes_in 0 158972 station_ip 5.119.74.98 158972 port 649 158972 unique_id port 158972 remote_ip 10.8.0.42 158979 username barzegar 158979 mac 158979 bytes_out 0 158979 bytes_in 0 158979 station_ip 5.119.251.3 158979 port 649 158979 unique_id port 158979 remote_ip 10.8.0.234 158981 username ayobi 158981 mac 158981 bytes_out 0 158981 bytes_in 0 158981 station_ip 37.27.29.160 158981 port 652 158981 unique_id port 158984 username tahmasebi 158984 mac 158984 bytes_out 17238 158984 bytes_in 29417 158984 station_ip 5.119.74.98 158984 port 649 158984 unique_id port 158984 remote_ip 10.8.0.42 158985 username arash 158985 mac 158985 bytes_out 0 158985 bytes_in 0 158985 station_ip 37.27.27.10 158985 port 648 158985 unique_id port 158985 remote_ip 10.8.0.114 158989 username hashtadani4 158989 mac 158989 bytes_out 0 158989 bytes_in 0 158989 station_ip 83.122.133.159 158989 port 649 158989 unique_id port 158989 remote_ip 10.8.0.182 158990 username tahmasebi 158990 mac 158990 bytes_out 0 158990 bytes_in 0 158990 station_ip 5.119.74.98 158990 port 648 158990 unique_id port 158990 remote_ip 10.8.0.42 158991 username rajaei 158991 kill_reason Another user logged on this global unique id 158991 mac 158991 bytes_out 0 158991 bytes_in 0 158991 station_ip 94.24.81.70 158991 port 641 158991 unique_id port 158991 remote_ip 10.8.0.34 158997 username saeed9658 158997 mac 158997 bytes_out 1260345 158997 bytes_in 12179303 158997 station_ip 5.120.106.205 158997 port 339 158997 unique_id port 158997 remote_ip 10.8.1.210 159000 username vanila 159000 mac 159000 bytes_out 0 159000 bytes_in 0 159000 station_ip 113.203.16.118 159000 port 652 159000 unique_id port 159000 remote_ip 10.8.0.178 159004 username rajaei 159004 mac 159004 bytes_out 0 159004 bytes_in 0 159004 station_ip 94.24.81.70 159004 port 641 159004 unique_id port 159005 username hashtadani4 159005 mac 159005 bytes_out 0 159005 bytes_in 0 159005 station_ip 83.122.133.159 159005 port 641 159005 unique_id port 159005 remote_ip 10.8.0.182 159007 username sabaghnezhad 159007 kill_reason Another user logged on this global unique id 159007 mac 159007 bytes_out 0 159007 bytes_in 0 159007 station_ip 113.203.5.210 159007 port 650 159007 unique_id port 159007 remote_ip 10.8.0.186 159008 username shadkam 159008 mac 159008 bytes_out 2553767 159008 bytes_in 38415975 159008 station_ip 83.123.229.143 159008 port 325 159008 unique_id port 159008 remote_ip 10.8.1.218 159013 username mohammadmahdi 159013 mac 159013 bytes_out 0 159013 bytes_in 0 159013 station_ip 5.120.190.90 159013 port 649 159013 unique_id port 159016 username aminvpn 159016 mac 159016 bytes_out 0 159016 bytes_in 0 159016 station_ip 113.203.21.245 159016 port 336 158978 bytes_in 4163 158978 station_ip 151.235.89.191 158978 port 641 158978 unique_id port 158978 remote_ip 10.8.0.138 158980 username hashtadani4 158980 mac 158980 bytes_out 0 158980 bytes_in 0 158980 station_ip 83.122.133.159 158980 port 641 158980 unique_id port 158980 remote_ip 10.8.0.182 158982 username farhad2 158982 mac 158982 bytes_out 916660 158982 bytes_in 4287318 158982 station_ip 5.119.10.137 158982 port 325 158982 unique_id port 158982 remote_ip 10.8.1.222 158986 username farhad2 158986 mac 158986 bytes_out 0 158986 bytes_in 0 158986 station_ip 5.119.10.137 158986 port 325 158986 unique_id port 158986 remote_ip 10.8.1.222 158995 username mirzaei 158995 kill_reason Another user logged on this global unique id 158995 mac 158995 bytes_out 0 158995 bytes_in 0 158995 station_ip 5.119.43.60 158995 port 643 158995 unique_id port 158998 username hamid 158998 mac 158998 bytes_out 0 158998 bytes_in 0 158998 station_ip 83.122.15.69 158998 port 658 158998 unique_id port 159001 username rezaei 159001 mac 159001 bytes_out 0 159001 bytes_in 0 159001 station_ip 5.119.53.117 159001 port 609 159001 unique_id port 159003 username tahmasebi 159003 mac 159003 bytes_out 0 159003 bytes_in 0 159003 station_ip 5.119.74.98 159003 port 648 159003 unique_id port 159003 remote_ip 10.8.0.42 159009 username tahmasebi 159009 mac 159009 bytes_out 0 159009 bytes_in 0 159009 station_ip 5.119.74.98 159009 port 641 159009 unique_id port 159009 remote_ip 10.8.0.42 159012 username aminvpn 159012 mac 159012 bytes_out 0 159012 bytes_in 0 159012 station_ip 113.203.21.245 159012 port 336 159012 unique_id port 159012 remote_ip 10.8.1.6 159015 username aminvpn 159015 mac 159015 bytes_out 0 159015 bytes_in 0 159015 station_ip 5.120.171.75 159015 port 325 159015 unique_id port 159015 remote_ip 10.8.1.6 159024 username Mahin 159024 mac 159024 bytes_out 0 159024 bytes_in 0 159024 station_ip 5.119.186.133 159024 port 645 159024 unique_id port 159024 remote_ip 10.8.0.162 159030 username aminvpn 159030 mac 159030 bytes_out 0 159030 bytes_in 0 159030 station_ip 113.203.67.189 159030 port 336 159030 unique_id port 159030 remote_ip 10.8.1.6 159032 username kalantary 159032 mac 159032 bytes_out 0 159032 bytes_in 0 159032 station_ip 113.203.31.9 159032 port 641 159032 unique_id port 159032 remote_ip 10.8.0.98 159034 username mansour 159034 mac 159034 bytes_out 0 159034 bytes_in 0 159034 station_ip 5.202.60.173 159034 port 651 159034 unique_id port 159034 remote_ip 10.8.0.30 159035 username hashtadani4 159035 mac 159035 bytes_out 0 159035 bytes_in 0 159035 station_ip 83.122.133.159 159035 port 645 159035 unique_id port 159035 remote_ip 10.8.0.182 159037 username hashtadani4 159037 mac 159037 bytes_out 0 159037 bytes_in 0 159037 station_ip 83.122.133.159 159037 port 648 159037 unique_id port 159037 remote_ip 10.8.0.182 159039 username aminvpn 159039 mac 159039 bytes_out 773829 159039 bytes_in 8891595 159039 station_ip 5.120.171.75 159039 port 325 159039 unique_id port 159039 remote_ip 10.8.1.6 159045 username aminvpn 159045 mac 159045 bytes_out 0 159045 bytes_in 0 159045 station_ip 5.120.171.75 159045 port 339 159045 unique_id port 159045 remote_ip 10.8.1.6 159050 username hashtadani4 159050 mac 159050 bytes_out 0 159050 bytes_in 0 159050 station_ip 83.122.133.159 159050 port 648 159050 unique_id port 159050 remote_ip 10.8.0.182 158988 bytes_in 0 158988 station_ip 37.129.60.2 158988 port 325 158988 unique_id port 158988 remote_ip 10.8.1.218 158992 username rezaei 158992 kill_reason Another user logged on this global unique id 158992 mac 158992 bytes_out 0 158992 bytes_in 0 158992 station_ip 5.119.53.117 158992 port 609 158992 unique_id port 158993 username hashtadani4 158993 mac 158993 bytes_out 0 158993 bytes_in 0 158993 station_ip 83.122.133.159 158993 port 648 158993 unique_id port 158993 remote_ip 10.8.0.182 158994 username tahmasebi 158994 mac 158994 bytes_out 0 158994 bytes_in 0 158994 station_ip 5.119.74.98 158994 port 648 158994 unique_id port 158994 remote_ip 10.8.0.42 158996 username barzegar 158996 mac 158996 bytes_out 0 158996 bytes_in 0 158996 station_ip 5.119.251.3 158996 port 648 158996 unique_id port 158996 remote_ip 10.8.0.234 158999 username hashtadani4 158999 mac 158999 bytes_out 0 158999 bytes_in 0 158999 station_ip 83.122.133.159 158999 port 648 158999 unique_id port 158999 remote_ip 10.8.0.182 159002 username mohammadmahdi 159002 kill_reason Another user logged on this global unique id 159002 mac 159002 bytes_out 0 159002 bytes_in 0 159002 station_ip 5.120.190.90 159002 port 649 159002 unique_id port 159002 remote_ip 10.8.0.54 159006 username tahmasebi 159006 mac 159006 bytes_out 0 159006 bytes_in 0 159006 station_ip 5.119.74.98 159006 port 641 159006 unique_id port 159006 remote_ip 10.8.0.42 159010 username barzegar 159010 mac 159010 bytes_out 0 159010 bytes_in 0 159010 station_ip 5.119.251.3 159010 port 648 159010 unique_id port 159010 remote_ip 10.8.0.234 159011 username hashtadani4 159011 mac 159011 bytes_out 0 159011 bytes_in 0 159011 station_ip 83.122.133.159 159011 port 641 159011 unique_id port 159011 remote_ip 10.8.0.182 159014 username farhad2 159014 mac 159014 bytes_out 1491198 159014 bytes_in 23102202 159014 station_ip 5.119.10.137 159014 port 339 159014 unique_id port 159014 remote_ip 10.8.1.222 159020 username farhad2 159020 mac 159020 bytes_out 0 159020 bytes_in 0 159020 station_ip 5.119.10.137 159020 port 336 159020 unique_id port 159020 remote_ip 10.8.1.222 159022 username tahmasebi 159022 mac 159022 bytes_out 0 159022 bytes_in 0 159022 station_ip 5.119.74.98 159022 port 336 159022 unique_id port 159022 remote_ip 10.8.1.90 159023 username barzegar 159023 mac 159023 bytes_out 0 159023 bytes_in 0 159023 station_ip 5.119.251.3 159023 port 649 159023 unique_id port 159023 remote_ip 10.8.0.234 159028 username aminvpn 159028 mac 159028 bytes_out 0 159028 bytes_in 0 159028 station_ip 113.203.67.189 159028 port 336 159028 unique_id port 159028 remote_ip 10.8.1.6 159029 username aminvpn 159029 mac 159029 bytes_out 0 159029 bytes_in 0 159029 station_ip 5.120.171.75 159029 port 325 159029 unique_id port 159029 remote_ip 10.8.1.6 159031 username hashtadani4 159031 mac 159031 bytes_out 0 159031 bytes_in 0 159031 station_ip 83.122.133.159 159031 port 648 159031 unique_id port 159031 remote_ip 10.8.0.182 159033 username tahmasebi 159033 mac 159033 bytes_out 0 159033 bytes_in 0 159033 station_ip 5.119.74.98 159033 port 645 159033 unique_id port 159033 remote_ip 10.8.0.42 159036 username barzegar 159036 mac 159036 bytes_out 0 159036 bytes_in 0 159036 station_ip 5.119.251.3 159036 port 645 159036 unique_id port 159036 remote_ip 10.8.0.234 159043 username aminvpn 159043 mac 159043 bytes_out 0 159043 bytes_in 0 159043 station_ip 5.120.171.75 159016 unique_id port 159016 remote_ip 10.8.1.6 159017 username arash 159017 mac 159017 bytes_out 109986 159017 bytes_in 193649 159017 station_ip 37.27.27.10 159017 port 609 159017 unique_id port 159017 remote_ip 10.8.0.114 159018 username hashtadani4 159018 mac 159018 bytes_out 0 159018 bytes_in 0 159018 station_ip 83.122.133.159 159018 port 609 159018 unique_id port 159018 remote_ip 10.8.0.182 159019 username farhad2 159019 mac 159019 bytes_out 357566 159019 bytes_in 4390938 159019 station_ip 5.119.10.137 159019 port 336 159019 unique_id port 159019 remote_ip 10.8.1.222 159021 username milan 159021 kill_reason Another user logged on this global unique id 159021 mac 159021 bytes_out 0 159021 bytes_in 0 159021 station_ip 5.120.56.28 159021 port 647 159021 unique_id port 159025 username hashtadani4 159025 mac 159025 bytes_out 0 159025 bytes_in 0 159025 station_ip 83.122.133.159 159025 port 649 159025 unique_id port 159025 remote_ip 10.8.0.182 159026 username hatami 159026 mac 159026 bytes_out 0 159026 bytes_in 0 159026 station_ip 151.235.97.58 159026 port 648 159026 unique_id port 159026 remote_ip 10.8.0.106 159027 username aminvpn 159027 mac 159027 bytes_out 1686973 159027 bytes_in 24764403 159027 station_ip 5.120.171.75 159027 port 325 159027 unique_id port 159027 remote_ip 10.8.1.6 159038 username hashtadani4 159038 mac 159038 bytes_out 0 159038 bytes_in 0 159038 station_ip 83.122.133.159 159038 port 648 159038 unique_id port 159038 remote_ip 10.8.0.182 159040 username aminvpn 159040 mac 159040 bytes_out 0 159040 bytes_in 0 159040 station_ip 113.203.117.141 159040 port 336 159040 unique_id port 159040 remote_ip 10.8.1.6 159041 username aminvpn 159041 mac 159041 bytes_out 53903 159041 bytes_in 627737 159041 station_ip 5.120.171.75 159041 port 325 159041 unique_id port 159041 remote_ip 10.8.1.6 159042 username aminvpn 159042 mac 159042 bytes_out 0 159042 bytes_in 0 159042 station_ip 113.203.117.141 159042 port 336 159042 unique_id port 159042 remote_ip 10.8.1.6 159046 username aminvpn 159046 mac 159046 bytes_out 0 159046 bytes_in 0 159046 station_ip 113.203.117.141 159046 port 336 159046 unique_id port 159046 remote_ip 10.8.1.6 159047 username aminvpn 159047 mac 159047 bytes_out 0 159047 bytes_in 0 159047 station_ip 5.120.171.75 159047 port 339 159047 unique_id port 159047 remote_ip 10.8.1.6 159058 username hashtadani4 159058 mac 159058 bytes_out 0 159058 bytes_in 0 159058 station_ip 83.122.133.159 159058 port 648 159058 unique_id port 159058 remote_ip 10.8.0.182 159060 username aminvpn 159060 mac 159060 bytes_out 0 159060 bytes_in 0 159060 station_ip 5.120.171.75 159060 port 339 159060 unique_id port 159060 remote_ip 10.8.1.6 159064 username mehdizare 159064 mac 159064 bytes_out 161119 159064 bytes_in 262363 159064 station_ip 83.122.87.157 159064 port 328 159064 unique_id port 159064 remote_ip 10.8.1.42 159066 username tahmasebi 159066 mac 159066 bytes_out 0 159066 bytes_in 0 159066 station_ip 5.119.74.98 159066 port 328 159066 unique_id port 159066 remote_ip 10.8.1.90 159072 username hashtadani4 159072 mac 159072 bytes_out 0 159072 bytes_in 0 159072 station_ip 83.122.133.159 159072 port 609 159072 unique_id port 159072 remote_ip 10.8.0.182 159075 username hashtadani4 159075 mac 159075 bytes_out 0 159075 bytes_in 0 159075 station_ip 83.122.133.159 159075 port 648 159075 unique_id port 159075 remote_ip 10.8.0.182 159043 port 325 159043 unique_id port 159043 remote_ip 10.8.1.6 159044 username aminvpn 159044 mac 159044 bytes_out 0 159044 bytes_in 0 159044 station_ip 113.203.117.141 159044 port 336 159044 unique_id port 159044 remote_ip 10.8.1.6 159048 username aminvpn 159048 mac 159048 bytes_out 0 159048 bytes_in 0 159048 station_ip 113.203.117.141 159048 port 336 159048 unique_id port 159048 remote_ip 10.8.1.6 159049 username farhad2 159049 kill_reason Another user logged on this global unique id 159049 mac 159049 bytes_out 0 159049 bytes_in 0 159049 station_ip 5.119.10.137 159049 port 609 159049 unique_id port 159049 remote_ip 10.8.0.190 159051 username pourshad 159051 kill_reason Another user logged on this global unique id 159051 mac 159051 bytes_out 0 159051 bytes_in 0 159051 station_ip 5.120.128.181 159051 port 641 159051 unique_id port 159051 remote_ip 10.8.0.18 159053 username tahmasebi 159053 mac 159053 bytes_out 0 159053 bytes_in 0 159053 station_ip 5.119.74.98 159053 port 325 159053 unique_id port 159053 remote_ip 10.8.1.90 159054 username tahmasebi 159054 mac 159054 bytes_out 0 159054 bytes_in 0 159054 station_ip 5.119.74.98 159054 port 651 159054 unique_id port 159054 remote_ip 10.8.0.42 159059 username hashtadani4 159059 mac 159059 bytes_out 0 159059 bytes_in 0 159059 station_ip 83.122.133.159 159059 port 648 159059 unique_id port 159059 remote_ip 10.8.0.182 159065 username hashtadani4 159065 mac 159065 bytes_out 0 159065 bytes_in 0 159065 station_ip 83.122.133.159 159065 port 648 159065 unique_id port 159065 remote_ip 10.8.0.182 159067 username yaghobi 159067 mac 159067 bytes_out 314960 159067 bytes_in 963359 159067 station_ip 83.123.94.65 159067 port 651 159067 unique_id port 159067 remote_ip 10.8.0.198 159069 username godarzi 159069 mac 159069 bytes_out 0 159069 bytes_in 0 159069 station_ip 5.202.12.121 159069 port 334 159069 unique_id port 159070 username tahmasebi 159070 mac 159070 bytes_out 0 159070 bytes_in 0 159070 station_ip 5.119.74.98 159070 port 328 159070 unique_id port 159070 remote_ip 10.8.1.90 159071 username farhad2 159071 mac 159071 bytes_out 0 159071 bytes_in 0 159071 station_ip 5.119.10.137 159071 port 609 159071 unique_id port 159073 username fezealinaghi 159073 mac 159073 bytes_out 1029988 159073 bytes_in 2002931 159073 station_ip 37.129.65.229 159073 port 649 159073 unique_id port 159073 remote_ip 10.8.0.78 159074 username yaghobi 159074 mac 159074 bytes_out 239957 159074 bytes_in 393693 159074 station_ip 113.203.16.70 159074 port 648 159074 unique_id port 159074 remote_ip 10.8.0.198 159080 username mosi 159080 mac 159080 bytes_out 0 159080 bytes_in 0 159080 station_ip 151.235.89.191 159080 port 655 159080 unique_id port 159080 remote_ip 10.8.0.138 159081 username farhad2 159081 mac 159081 bytes_out 0 159081 bytes_in 0 159081 station_ip 5.119.10.137 159081 port 652 159081 unique_id port 159081 remote_ip 10.8.0.190 159084 username milan 159084 kill_reason Another user logged on this global unique id 159084 mac 159084 bytes_out 0 159084 bytes_in 0 159084 station_ip 5.120.56.28 159084 port 647 159084 unique_id port 159085 username yaghobi 159085 mac 159085 bytes_out 0 159085 bytes_in 0 159085 station_ip 113.203.16.70 159085 port 649 159085 unique_id port 159085 remote_ip 10.8.0.198 159089 username mirzaei 159089 kill_reason Another user logged on this global unique id 159089 mac 159089 bytes_out 0 159089 bytes_in 0 159089 station_ip 5.119.43.60 159052 username tahmasebi 159052 mac 159052 bytes_out 129847 159052 bytes_in 1463236 159052 station_ip 5.119.74.98 159052 port 325 159052 unique_id port 159052 remote_ip 10.8.1.90 159055 username tahmasebi 159055 mac 159055 bytes_out 0 159055 bytes_in 0 159055 station_ip 5.119.74.98 159055 port 651 159055 unique_id port 159055 remote_ip 10.8.0.42 159056 username yaghobi 159056 mac 159056 bytes_out 0 159056 bytes_in 0 159056 station_ip 113.203.82.156 159056 port 645 159056 unique_id port 159056 remote_ip 10.8.0.198 159057 username rahim 159057 mac 159057 bytes_out 0 159057 bytes_in 0 159057 station_ip 5.120.45.248 159057 port 648 159057 unique_id port 159057 remote_ip 10.8.0.50 159061 username barzegar 159061 mac 159061 bytes_out 0 159061 bytes_in 0 159061 station_ip 5.119.251.3 159061 port 325 159061 unique_id port 159061 remote_ip 10.8.1.174 159062 username barzegar 159062 mac 159062 bytes_out 0 159062 bytes_in 0 159062 station_ip 5.119.251.3 159062 port 325 159062 unique_id port 159062 remote_ip 10.8.1.174 159063 username hashtadani4 159063 mac 159063 bytes_out 0 159063 bytes_in 0 159063 station_ip 83.122.133.159 159063 port 648 159063 unique_id port 159063 remote_ip 10.8.0.182 159068 username barzegar 159068 mac 159068 bytes_out 2477 159068 bytes_in 4898 159068 station_ip 5.119.251.3 159068 port 328 159068 unique_id port 159068 remote_ip 10.8.1.174 159077 username pourshad 159077 kill_reason Another user logged on this global unique id 159077 mac 159077 bytes_out 0 159077 bytes_in 0 159077 station_ip 5.120.128.181 159077 port 641 159077 unique_id port 159082 username mosi 159082 mac 159082 bytes_out 0 159082 bytes_in 0 159082 station_ip 151.235.89.191 159082 port 648 159082 unique_id port 159082 remote_ip 10.8.0.138 159088 username mohammadmahdi 159088 mac 159088 bytes_out 0 159088 bytes_in 0 159088 station_ip 5.120.190.90 159088 port 645 159088 unique_id port 159090 username farhad2 159090 mac 159090 bytes_out 0 159090 bytes_in 0 159090 station_ip 5.119.10.137 159090 port 649 159090 unique_id port 159090 remote_ip 10.8.0.190 159092 username tahmasebi 159092 kill_reason Maximum number of concurrent logins reached 159092 mac 159092 bytes_out 0 159092 bytes_in 0 159092 station_ip 5.119.74.98 159092 port 652 159092 unique_id port 159095 username tahmasebi 159095 kill_reason Maximum number of concurrent logins reached 159095 mac 159095 bytes_out 0 159095 bytes_in 0 159095 station_ip 5.119.74.98 159095 port 652 159095 unique_id port 159100 username yaghobi 159100 mac 159100 bytes_out 1193482 159100 bytes_in 18272386 159100 station_ip 37.129.57.11 159100 port 648 159100 unique_id port 159100 remote_ip 10.8.0.198 159103 username farhad2 159103 mac 159103 bytes_out 0 159103 bytes_in 0 159103 station_ip 5.119.10.137 159103 port 645 159103 unique_id port 159103 remote_ip 10.8.0.190 159109 username farhad2 159109 mac 159109 bytes_out 0 159109 bytes_in 0 159109 station_ip 5.119.10.137 159109 port 328 159109 unique_id port 159109 remote_ip 10.8.1.222 159110 username mosi 159110 mac 159110 bytes_out 1683 159110 bytes_in 4216 159110 station_ip 151.235.89.191 159110 port 645 159110 unique_id port 159110 remote_ip 10.8.0.138 159112 username hashtadani4 159112 mac 159112 bytes_out 0 159112 bytes_in 0 159112 station_ip 83.122.133.159 159112 port 645 159112 unique_id port 159112 remote_ip 10.8.0.182 159119 username alihajmalek 159119 kill_reason Another user logged on this global unique id 159076 username barzegar 159076 mac 159076 bytes_out 0 159076 bytes_in 0 159076 station_ip 5.119.251.3 159076 port 328 159076 unique_id port 159076 remote_ip 10.8.1.174 159078 username mosi 159078 mac 159078 bytes_out 0 159078 bytes_in 0 159078 station_ip 151.235.89.191 159078 port 648 159078 unique_id port 159078 remote_ip 10.8.0.138 159079 username hashtadani4 159079 mac 159079 bytes_out 0 159079 bytes_in 0 159079 station_ip 83.122.133.159 159079 port 648 159079 unique_id port 159079 remote_ip 10.8.0.182 159083 username mohammadmahdi 159083 kill_reason Another user logged on this global unique id 159083 mac 159083 bytes_out 0 159083 bytes_in 0 159083 station_ip 5.120.190.90 159083 port 645 159083 unique_id port 159083 remote_ip 10.8.0.54 159086 username mosi 159086 mac 159086 bytes_out 0 159086 bytes_in 0 159086 station_ip 151.235.89.191 159086 port 652 159086 unique_id port 159086 remote_ip 10.8.0.138 159087 username fezealinaghi 159087 mac 159087 bytes_out 0 159087 bytes_in 0 159087 station_ip 37.129.65.229 159087 port 609 159087 unique_id port 159087 remote_ip 10.8.0.78 159093 username tahmasebi 159093 kill_reason Maximum number of concurrent logins reached 159093 mac 159093 bytes_out 0 159093 bytes_in 0 159093 station_ip 5.119.74.98 159093 port 652 159093 unique_id port 159097 username tahmasebi 159097 kill_reason Maximum check online fails reached 159097 mac 159097 bytes_out 0 159097 bytes_in 0 159097 station_ip 5.119.74.98 159097 port 649 159097 unique_id port 159099 username milan 159099 kill_reason Another user logged on this global unique id 159099 mac 159099 bytes_out 0 159099 bytes_in 0 159099 station_ip 5.120.56.28 159099 port 647 159099 unique_id port 159102 username barzegar 159102 mac 159102 bytes_out 0 159102 bytes_in 0 159102 station_ip 5.119.251.3 159102 port 328 159102 unique_id port 159102 remote_ip 10.8.1.174 159104 username mirzaei 159104 mac 159104 bytes_out 0 159104 bytes_in 0 159104 station_ip 5.119.43.60 159104 port 643 159104 unique_id port 159105 username yaghobi 159105 mac 159105 bytes_out 0 159105 bytes_in 0 159105 station_ip 83.122.79.210 159105 port 656 159105 unique_id port 159105 remote_ip 10.8.0.198 159108 username alihajmalek 159108 kill_reason Another user logged on this global unique id 159108 mac 159108 bytes_out 0 159108 bytes_in 0 159108 station_ip 83.123.224.243 159108 port 609 159108 unique_id port 159108 remote_ip 10.8.0.202 159114 username alihajmalek 159114 kill_reason Another user logged on this global unique id 159114 mac 159114 bytes_out 0 159114 bytes_in 0 159114 station_ip 83.123.224.243 159114 port 609 159114 unique_id port 159116 username hashtadani4 159116 mac 159116 bytes_out 0 159116 bytes_in 0 159116 station_ip 83.122.133.159 159116 port 645 159116 unique_id port 159116 remote_ip 10.8.0.182 159117 username alihajmalek 159117 kill_reason Another user logged on this global unique id 159117 mac 159117 bytes_out 0 159117 bytes_in 0 159117 station_ip 83.123.224.243 159117 port 609 159117 unique_id port 159118 username pourshad 159118 kill_reason Another user logged on this global unique id 159118 mac 159118 bytes_out 0 159118 bytes_in 0 159118 station_ip 5.120.128.181 159118 port 641 159118 unique_id port 159125 username hashtadani4 159125 mac 159125 bytes_out 0 159125 bytes_in 0 159125 station_ip 83.122.133.159 159125 port 641 159125 unique_id port 159125 remote_ip 10.8.0.182 159127 username alikomsari 159127 kill_reason Another user logged on this global unique id 159127 mac 159127 bytes_out 0 159127 bytes_in 0 159089 port 643 159089 unique_id port 159091 username tahmasebi 159091 mac 159091 bytes_out 0 159091 bytes_in 0 159091 station_ip 5.119.74.98 159091 port 651 159091 unique_id port 159091 remote_ip 10.8.0.42 159094 username hashtadani4 159094 mac 159094 bytes_out 0 159094 bytes_in 0 159094 station_ip 83.122.133.159 159094 port 652 159094 unique_id port 159094 remote_ip 10.8.0.182 159096 username tahmasebi 159096 kill_reason Maximum number of concurrent logins reached 159096 mac 159096 bytes_out 0 159096 bytes_in 0 159096 station_ip 5.119.74.98 159096 port 652 159096 unique_id port 159098 username tahmasebi 159098 kill_reason Maximum check online fails reached 159098 mac 159098 bytes_out 0 159098 bytes_in 0 159098 station_ip 5.119.74.98 159098 port 651 159098 unique_id port 159101 username mosi 159101 mac 159101 bytes_out 0 159101 bytes_in 0 159101 station_ip 151.235.89.191 159101 port 655 159101 unique_id port 159101 remote_ip 10.8.0.138 159106 username hashtadani4 159106 mac 159106 bytes_out 0 159106 bytes_in 0 159106 station_ip 83.122.133.159 159106 port 645 159106 unique_id port 159106 remote_ip 10.8.0.182 159107 username farhad2 159107 mac 159107 bytes_out 0 159107 bytes_in 0 159107 station_ip 5.119.10.137 159107 port 643 159107 unique_id port 159107 remote_ip 10.8.0.190 159111 username milan 159111 mac 159111 bytes_out 0 159111 bytes_in 0 159111 station_ip 5.120.56.28 159111 port 647 159111 unique_id port 159113 username barzegar 159113 mac 159113 bytes_out 0 159113 bytes_in 0 159113 station_ip 5.119.251.3 159113 port 328 159113 unique_id port 159113 remote_ip 10.8.1.174 159115 username hosseine 159115 kill_reason Another user logged on this global unique id 159115 mac 159115 bytes_out 0 159115 bytes_in 0 159115 station_ip 83.123.120.39 159115 port 646 159115 unique_id port 159115 remote_ip 10.8.0.238 159120 username hashtadani4 159120 mac 159120 bytes_out 0 159120 bytes_in 0 159120 station_ip 83.122.133.159 159120 port 645 159120 unique_id port 159120 remote_ip 10.8.0.182 159121 username barzegar 159121 mac 159121 bytes_out 0 159121 bytes_in 0 159121 station_ip 5.119.251.3 159121 port 328 159121 unique_id port 159121 remote_ip 10.8.1.174 159131 username alihajmalek 159131 kill_reason Another user logged on this global unique id 159131 mac 159131 bytes_out 0 159131 bytes_in 0 159131 station_ip 83.123.224.243 159131 port 609 159131 unique_id port 159132 username sabaghnezhad 159132 mac 159132 bytes_out 0 159132 bytes_in 0 159132 station_ip 113.203.5.210 159132 port 650 159132 unique_id port 159138 username naeimeh 159138 mac 159138 bytes_out 3024768 159138 bytes_in 46814001 159138 station_ip 83.122.86.233 159138 port 647 159138 unique_id port 159138 remote_ip 10.8.0.118 159140 username hashtadani4 159140 mac 159140 bytes_out 0 159140 bytes_in 0 159140 station_ip 83.122.133.159 159140 port 648 159140 unique_id port 159140 remote_ip 10.8.0.182 159142 username alihajmalek 159142 kill_reason Another user logged on this global unique id 159142 mac 159142 bytes_out 0 159142 bytes_in 0 159142 station_ip 83.123.224.243 159142 port 609 159142 unique_id port 159147 username tahmasebi 159147 mac 159147 bytes_out 0 159147 bytes_in 0 159147 station_ip 5.119.74.98 159147 port 643 159147 unique_id port 159147 remote_ip 10.8.0.42 159151 username hashtadani4 159151 mac 159151 bytes_out 0 159151 bytes_in 0 159151 station_ip 83.122.133.159 159151 port 609 159151 unique_id port 159119 mac 159119 bytes_out 0 159119 bytes_in 0 159119 station_ip 83.123.224.243 159119 port 609 159119 unique_id port 159122 username hashtadani4 159122 mac 159122 bytes_out 0 159122 bytes_in 0 159122 station_ip 83.122.133.159 159122 port 647 159122 unique_id port 159122 remote_ip 10.8.0.182 159123 username pourshad 159123 mac 159123 bytes_out 0 159123 bytes_in 0 159123 station_ip 5.120.128.181 159123 port 641 159123 unique_id port 159124 username hashtadani4 159124 mac 159124 bytes_out 0 159124 bytes_in 0 159124 station_ip 83.122.133.159 159124 port 648 159124 unique_id port 159124 remote_ip 10.8.0.182 159126 username farhad2 159126 mac 159126 bytes_out 0 159126 bytes_in 0 159126 station_ip 5.119.10.137 159126 port 643 159126 unique_id port 159126 remote_ip 10.8.0.190 159128 username farhad2 159128 mac 159128 bytes_out 0 159128 bytes_in 0 159128 station_ip 5.119.10.137 159128 port 641 159128 unique_id port 159128 remote_ip 10.8.0.190 159129 username hassan 159129 kill_reason Another user logged on this global unique id 159129 mac 159129 bytes_out 0 159129 bytes_in 0 159129 station_ip 5.120.164.70 159129 port 333 159129 unique_id port 159129 remote_ip 10.8.1.138 159133 username hashtadani4 159133 mac 159133 bytes_out 0 159133 bytes_in 0 159133 station_ip 83.122.133.159 159133 port 648 159133 unique_id port 159133 remote_ip 10.8.0.182 159134 username barzegar 159134 mac 159134 bytes_out 0 159134 bytes_in 0 159134 station_ip 5.119.251.3 159134 port 328 159134 unique_id port 159134 remote_ip 10.8.1.174 159135 username alihajmalek 159135 kill_reason Another user logged on this global unique id 159135 mac 159135 bytes_out 0 159135 bytes_in 0 159135 station_ip 83.123.224.243 159135 port 609 159135 unique_id port 159136 username farhad2 159136 mac 159136 bytes_out 527536 159136 bytes_in 4043206 159136 station_ip 5.119.10.137 159136 port 641 159136 unique_id port 159136 remote_ip 10.8.0.190 159139 username farhad2 159139 mac 159139 bytes_out 0 159139 bytes_in 0 159139 station_ip 5.119.10.137 159139 port 641 159139 unique_id port 159139 remote_ip 10.8.0.190 159144 username kalantary 159144 mac 159144 bytes_out 0 159144 bytes_in 0 159144 station_ip 113.203.94.149 159144 port 643 159144 unique_id port 159144 remote_ip 10.8.0.98 159145 username hashtadani4 159145 mac 159145 bytes_out 0 159145 bytes_in 0 159145 station_ip 83.122.133.159 159145 port 643 159145 unique_id port 159145 remote_ip 10.8.0.182 159146 username tahmasebi 159146 mac 159146 bytes_out 0 159146 bytes_in 0 159146 station_ip 5.119.74.98 159146 port 643 159146 unique_id port 159146 remote_ip 10.8.0.42 159148 username barzegar 159148 mac 159148 bytes_out 0 159148 bytes_in 0 159148 station_ip 5.119.251.3 159148 port 334 159148 unique_id port 159148 remote_ip 10.8.1.174 159154 username naeimeh 159154 mac 159154 bytes_out 1313324 159154 bytes_in 15077318 159154 station_ip 83.122.86.233 159154 port 650 159154 unique_id port 159154 remote_ip 10.8.0.118 159156 username moradi 159156 kill_reason Another user logged on this global unique id 159156 mac 159156 bytes_out 0 159156 bytes_in 0 159156 station_ip 89.34.41.149 159156 port 647 159156 unique_id port 159156 remote_ip 10.8.0.226 159157 username hashtadani4 159157 mac 159157 bytes_out 0 159157 bytes_in 0 159157 station_ip 83.122.133.159 159157 port 648 159157 unique_id port 159157 remote_ip 10.8.0.182 159158 username tahmasebi 159158 mac 159127 station_ip 5.120.129.81 159127 port 652 159127 unique_id port 159127 remote_ip 10.8.0.26 159130 username alikomsari 159130 kill_reason Another user logged on this global unique id 159130 mac 159130 bytes_out 0 159130 bytes_in 0 159130 station_ip 5.120.129.81 159130 port 652 159130 unique_id port 159137 username hashtadani4 159137 mac 159137 bytes_out 0 159137 bytes_in 0 159137 station_ip 83.122.133.159 159137 port 648 159137 unique_id port 159137 remote_ip 10.8.0.182 159141 username hassan 159141 kill_reason Another user logged on this global unique id 159141 mac 159141 bytes_out 0 159141 bytes_in 0 159141 station_ip 5.120.164.70 159141 port 333 159141 unique_id port 159143 username tahmasebi 159143 mac 159143 bytes_out 0 159143 bytes_in 0 159143 station_ip 5.119.74.98 159143 port 641 159143 unique_id port 159143 remote_ip 10.8.0.42 159149 username farhad2 159149 mac 159149 bytes_out 370927 159149 bytes_in 5083384 159149 station_ip 5.119.10.137 159149 port 328 159149 unique_id port 159149 remote_ip 10.8.1.222 159150 username alihajmalek 159150 mac 159150 bytes_out 0 159150 bytes_in 0 159150 station_ip 83.123.224.243 159150 port 609 159150 unique_id port 159152 username alikomsari 159152 kill_reason Another user logged on this global unique id 159152 mac 159152 bytes_out 0 159152 bytes_in 0 159152 station_ip 5.120.129.81 159152 port 652 159152 unique_id port 159153 username hosseine 159153 mac 159153 bytes_out 0 159153 bytes_in 0 159153 station_ip 83.123.120.39 159153 port 646 159153 unique_id port 159155 username farhad2 159155 mac 159155 bytes_out 645138 159155 bytes_in 2158136 159155 station_ip 5.119.10.137 159155 port 648 159155 unique_id port 159155 remote_ip 10.8.0.190 159161 username hashtadani4 159161 mac 159161 bytes_out 0 159161 bytes_in 0 159161 station_ip 83.122.133.159 159161 port 650 159161 unique_id port 159161 remote_ip 10.8.0.182 159164 username farhad2 159164 mac 159164 bytes_out 1262813 159164 bytes_in 18044934 159164 station_ip 5.119.10.137 159164 port 646 159164 unique_id port 159164 remote_ip 10.8.0.190 159169 username farhad2 159169 mac 159169 bytes_out 0 159169 bytes_in 0 159169 station_ip 5.119.10.137 159169 port 646 159169 unique_id port 159169 remote_ip 10.8.0.190 159171 username barzegar 159171 mac 159171 bytes_out 0 159171 bytes_in 0 159171 station_ip 5.119.251.3 159171 port 333 159171 unique_id port 159171 remote_ip 10.8.1.174 159177 username barzegar 159177 mac 159177 bytes_out 0 159177 bytes_in 0 159177 station_ip 5.119.251.3 159177 port 646 159177 unique_id port 159177 remote_ip 10.8.0.234 159179 username farhad2 159179 mac 159179 bytes_out 63790 159179 bytes_in 351316 159179 station_ip 5.119.10.137 159179 port 645 159179 unique_id port 159179 remote_ip 10.8.0.190 159180 username hashtadani4 159180 mac 159180 bytes_out 0 159180 bytes_in 0 159180 station_ip 83.122.133.159 159180 port 645 159180 unique_id port 159180 remote_ip 10.8.0.182 159182 username hashtadani4 159182 mac 159182 bytes_out 0 159182 bytes_in 0 159182 station_ip 83.122.133.159 159182 port 646 159182 unique_id port 159182 remote_ip 10.8.0.182 159184 username fezealinaghi 159184 mac 159184 bytes_out 0 159184 bytes_in 0 159184 station_ip 37.129.54.245 159184 port 609 159184 unique_id port 159184 remote_ip 10.8.0.78 159189 username hashtadani4 159189 mac 159189 bytes_out 0 159189 bytes_in 0 159189 station_ip 83.122.133.159 159189 port 645 159189 unique_id port 159151 remote_ip 10.8.0.182 159160 username hassan 159160 mac 159160 bytes_out 0 159160 bytes_in 0 159160 station_ip 5.120.164.70 159160 port 333 159160 unique_id port 159165 username tahmasebi 159165 mac 159165 bytes_out 0 159165 bytes_in 0 159165 station_ip 5.119.74.98 159165 port 643 159165 unique_id port 159165 remote_ip 10.8.0.42 159168 username hashtadani4 159168 mac 159168 bytes_out 0 159168 bytes_in 0 159168 station_ip 83.122.133.159 159168 port 609 159168 unique_id port 159168 remote_ip 10.8.0.182 159170 username fezealinaghi 159170 mac 159170 bytes_out 2079926 159170 bytes_in 18490263 159170 station_ip 37.129.54.245 159170 port 645 159170 unique_id port 159170 remote_ip 10.8.0.78 159172 username hashtadani4 159172 mac 159172 bytes_out 0 159172 bytes_in 0 159172 station_ip 83.122.133.159 159172 port 645 159172 unique_id port 159172 remote_ip 10.8.0.182 159173 username mohammadjavad 159173 mac 159173 bytes_out 2660394 159173 bytes_in 49442391 159173 station_ip 113.203.25.48 159173 port 648 159173 unique_id port 159173 remote_ip 10.8.0.142 159174 username zotaher 159174 mac 159174 bytes_out 761608 159174 bytes_in 4316772 159174 station_ip 83.123.49.142 159174 port 645 159174 unique_id port 159174 remote_ip 10.8.0.194 159175 username hashtadani4 159175 mac 159175 bytes_out 0 159175 bytes_in 0 159175 station_ip 83.122.133.159 159175 port 645 159175 unique_id port 159175 remote_ip 10.8.0.182 159176 username farhad2 159176 mac 159176 bytes_out 642305 159176 bytes_in 3930369 159176 station_ip 5.119.10.137 159176 port 328 159176 unique_id port 159176 remote_ip 10.8.1.222 159181 username tahmasebi 159181 kill_reason Another user logged on this global unique id 159181 mac 159181 bytes_out 0 159181 bytes_in 0 159181 station_ip 5.119.74.98 159181 port 643 159181 unique_id port 159181 remote_ip 10.8.0.42 159185 username barzegar 159185 mac 159185 bytes_out 0 159185 bytes_in 0 159185 station_ip 5.119.251.3 159185 port 333 159185 unique_id port 159185 remote_ip 10.8.1.174 159188 username tahmasebi 159188 kill_reason Another user logged on this global unique id 159188 mac 159188 bytes_out 0 159188 bytes_in 0 159188 station_ip 5.119.74.98 159188 port 643 159188 unique_id port 159190 username barzegar 159190 mac 159190 bytes_out 0 159190 bytes_in 0 159190 station_ip 5.119.251.3 159190 port 333 159190 unique_id port 159190 remote_ip 10.8.1.174 159192 username tahmasebi 159192 mac 159192 bytes_out 0 159192 bytes_in 0 159192 station_ip 5.119.74.98 159192 port 643 159192 unique_id port 159193 username hashtadani4 159193 mac 159193 bytes_out 0 159193 bytes_in 0 159193 station_ip 83.122.133.159 159193 port 643 159193 unique_id port 159193 remote_ip 10.8.0.182 159195 username tahmasebi 159195 mac 159195 bytes_out 0 159195 bytes_in 0 159195 station_ip 5.119.74.98 159195 port 643 159195 unique_id port 159195 remote_ip 10.8.0.42 159201 username hashtadani4 159201 kill_reason Another user logged on this global unique id 159201 mac 159201 bytes_out 0 159201 bytes_in 0 159201 station_ip 83.122.133.159 159201 port 643 159201 unique_id port 159202 username farhad2 159202 mac 159202 bytes_out 0 159202 bytes_in 0 159202 station_ip 5.119.84.40 159202 port 328 159202 unique_id port 159206 username barzegar 159206 mac 159206 bytes_out 0 159206 bytes_in 0 159206 station_ip 5.119.251.3 159206 port 328 159206 unique_id port 159206 remote_ip 10.8.1.174 159207 username barzegar 159207 mac 159158 bytes_out 0 159158 bytes_in 0 159158 station_ip 5.119.74.98 159158 port 643 159158 unique_id port 159158 remote_ip 10.8.0.42 159159 username barzegar 159159 mac 159159 bytes_out 0 159159 bytes_in 0 159159 station_ip 5.119.251.3 159159 port 328 159159 unique_id port 159159 remote_ip 10.8.1.174 159162 username moradi 159162 kill_reason Another user logged on this global unique id 159162 mac 159162 bytes_out 0 159162 bytes_in 0 159162 station_ip 89.34.41.149 159162 port 647 159162 unique_id port 159163 username tahmasebi 159163 mac 159163 bytes_out 0 159163 bytes_in 0 159163 station_ip 5.119.74.98 159163 port 643 159163 unique_id port 159163 remote_ip 10.8.0.42 159166 username sabaghnezhad 159166 mac 159166 bytes_out 90754 159166 bytes_in 190092 159166 station_ip 83.122.1.30 159166 port 609 159166 unique_id port 159166 remote_ip 10.8.0.186 159167 username moradi 159167 mac 159167 bytes_out 0 159167 bytes_in 0 159167 station_ip 89.34.41.149 159167 port 647 159167 unique_id port 159178 username hashtadani4 159178 mac 159178 bytes_out 0 159178 bytes_in 0 159178 station_ip 83.122.133.159 159178 port 646 159178 unique_id port 159178 remote_ip 10.8.0.182 159183 username farhad2 159183 mac 159183 bytes_out 0 159183 bytes_in 0 159183 station_ip 5.119.84.40 159183 port 645 159183 unique_id port 159183 remote_ip 10.8.0.190 159186 username hashtadani4 159186 mac 159186 bytes_out 0 159186 bytes_in 0 159186 station_ip 83.122.133.159 159186 port 609 159186 unique_id port 159186 remote_ip 10.8.0.182 159187 username hashtadani4 159187 mac 159187 bytes_out 0 159187 bytes_in 0 159187 station_ip 83.122.133.159 159187 port 609 159187 unique_id port 159187 remote_ip 10.8.0.182 159198 username hashtadani4 159198 mac 159198 bytes_out 0 159198 bytes_in 0 159198 station_ip 83.122.133.159 159198 port 336 159198 unique_id port 159198 remote_ip 10.8.1.142 159200 username hashtadani4 159200 mac 159200 bytes_out 0 159200 bytes_in 0 159200 station_ip 83.122.133.159 159200 port 643 159200 unique_id port 159200 remote_ip 10.8.0.182 159203 username hashtadani4 159203 kill_reason Maximum check online fails reached 159203 mac 159203 bytes_out 0 159203 bytes_in 0 159203 station_ip 83.122.133.159 159203 port 643 159203 unique_id port 159209 username barzegar 159209 mac 159209 bytes_out 0 159209 bytes_in 0 159209 station_ip 5.119.251.3 159209 port 334 159209 unique_id port 159209 remote_ip 10.8.1.174 159210 username farhad2 159210 mac 159210 bytes_out 0 159210 bytes_in 0 159210 station_ip 5.119.84.40 159210 port 328 159210 unique_id port 159210 remote_ip 10.8.1.222 159214 username jamali 159214 mac 159214 bytes_out 0 159214 bytes_in 0 159214 station_ip 5.119.88.219 159214 port 653 159214 unique_id port 159217 username farhad2 159217 mac 159217 bytes_out 279121 159217 bytes_in 649060 159217 station_ip 5.119.84.40 159217 port 609 159217 unique_id port 159217 remote_ip 10.8.0.190 159221 username barzegar 159221 mac 159221 bytes_out 0 159221 bytes_in 0 159221 station_ip 5.119.251.3 159221 port 643 159221 unique_id port 159221 remote_ip 10.8.0.234 159222 username hashtadani4 159222 mac 159222 bytes_out 226521 159222 bytes_in 2338421 159222 station_ip 83.122.133.159 159222 port 643 159222 unique_id port 159222 remote_ip 10.8.0.182 159225 username hashtadani4 159225 mac 159225 bytes_out 0 159225 bytes_in 0 159225 station_ip 83.122.133.159 159225 port 643 159189 remote_ip 10.8.0.182 159191 username farhad2 159191 kill_reason Another user logged on this global unique id 159191 mac 159191 bytes_out 0 159191 bytes_in 0 159191 station_ip 5.119.84.40 159191 port 328 159191 unique_id port 159191 remote_ip 10.8.1.222 159194 username mohammadjavad 159194 mac 159194 bytes_out 0 159194 bytes_in 0 159194 station_ip 37.129.159.30 159194 port 609 159194 unique_id port 159194 remote_ip 10.8.0.142 159196 username hashtadani4 159196 kill_reason Maximum check online fails reached 159196 mac 159196 bytes_out 0 159196 bytes_in 0 159196 station_ip 83.122.133.159 159196 port 333 159196 unique_id port 159197 username hashtadani4 159197 mac 159197 bytes_out 0 159197 bytes_in 0 159197 station_ip 83.122.133.159 159197 port 643 159197 unique_id port 159197 remote_ip 10.8.0.182 159199 username barzegar 159199 mac 159199 bytes_out 0 159199 bytes_in 0 159199 station_ip 5.119.251.3 159199 port 334 159199 unique_id port 159199 remote_ip 10.8.1.174 159204 username alikomsari 159204 mac 159204 bytes_out 0 159204 bytes_in 0 159204 station_ip 5.120.129.81 159204 port 652 159204 unique_id port 159205 username fezealinaghi 159205 mac 159205 bytes_out 0 159205 bytes_in 0 159205 station_ip 37.129.89.233 159205 port 609 159205 unique_id port 159205 remote_ip 10.8.0.78 159208 username farhad2 159208 mac 159208 bytes_out 0 159208 bytes_in 0 159208 station_ip 5.119.84.40 159208 port 328 159208 unique_id port 159208 remote_ip 10.8.1.222 159211 username farhad2 159211 mac 159211 bytes_out 275189 159211 bytes_in 449661 159211 station_ip 5.119.84.40 159211 port 328 159211 unique_id port 159211 remote_ip 10.8.1.222 159216 username farhad2 159216 mac 159216 bytes_out 3480405 159216 bytes_in 24009161 159216 station_ip 5.119.84.40 159216 port 609 159216 unique_id port 159216 remote_ip 10.8.0.190 159219 username barzegar 159219 mac 159219 bytes_out 0 159219 bytes_in 0 159219 station_ip 5.119.251.3 159219 port 328 159219 unique_id port 159219 remote_ip 10.8.1.174 159220 username barzegar 159220 mac 159220 bytes_out 0 159220 bytes_in 0 159220 station_ip 5.119.251.3 159220 port 609 159220 unique_id port 159220 remote_ip 10.8.0.234 159223 username hashtadani4 159223 mac 159223 bytes_out 0 159223 bytes_in 0 159223 station_ip 83.122.133.159 159223 port 328 159223 unique_id port 159223 remote_ip 10.8.1.142 159225 unique_id port 159225 remote_ip 10.8.0.182 159228 username hashtadani4 159228 mac 159228 bytes_out 0 159228 bytes_in 0 159228 station_ip 83.122.133.159 159228 port 643 159228 unique_id port 159228 remote_ip 10.8.0.182 159229 username farhad2 159229 kill_reason Another user logged on this global unique id 159229 mac 159229 bytes_out 0 159229 bytes_in 0 159229 station_ip 5.119.84.40 159229 port 609 159229 unique_id port 159229 remote_ip 10.8.0.190 159230 username hashtadani4 159230 mac 159230 bytes_out 0 159230 bytes_in 0 159230 station_ip 83.122.133.159 159230 port 643 159230 unique_id port 159230 remote_ip 10.8.0.182 159235 username mehdizare 159235 mac 159235 bytes_out 0 159235 bytes_in 0 159235 station_ip 83.122.87.157 159235 port 325 159235 unique_id port 159235 remote_ip 10.8.1.42 159237 username barzegar 159237 mac 159237 bytes_out 0 159237 bytes_in 0 159237 station_ip 5.119.251.3 159237 port 643 159237 unique_id port 159237 remote_ip 10.8.0.234 159241 username barzegar 159241 mac 159241 bytes_out 0 159241 bytes_in 0 159241 station_ip 5.119.251.3 159207 bytes_out 0 159207 bytes_in 0 159207 station_ip 5.119.251.3 159207 port 334 159207 unique_id port 159207 remote_ip 10.8.1.174 159212 username barzegar 159212 mac 159212 bytes_out 0 159212 bytes_in 0 159212 station_ip 5.119.251.3 159212 port 328 159212 unique_id port 159212 remote_ip 10.8.1.174 159213 username barzegar 159213 mac 159213 bytes_out 0 159213 bytes_in 0 159213 station_ip 5.119.251.3 159213 port 328 159213 unique_id port 159213 remote_ip 10.8.1.174 159215 username barzegar 159215 mac 159215 bytes_out 0 159215 bytes_in 0 159215 station_ip 5.119.251.3 159215 port 643 159215 unique_id port 159215 remote_ip 10.8.0.234 159218 username barzegar 159218 mac 159218 bytes_out 0 159218 bytes_in 0 159218 station_ip 5.119.251.3 159218 port 328 159218 unique_id port 159218 remote_ip 10.8.1.174 159224 username hashtadani4 159224 mac 159224 bytes_out 0 159224 bytes_in 0 159224 station_ip 83.122.133.159 159224 port 643 159224 unique_id port 159224 remote_ip 10.8.0.182 159226 username hashtadani4 159226 mac 159226 bytes_out 0 159226 bytes_in 0 159226 station_ip 83.122.133.159 159226 port 643 159226 unique_id port 159226 remote_ip 10.8.0.182 159227 username barzegar 159227 mac 159227 bytes_out 0 159227 bytes_in 0 159227 station_ip 5.119.251.3 159227 port 643 159227 unique_id port 159227 remote_ip 10.8.0.234 159231 username barzegar 159231 mac 159231 bytes_out 0 159231 bytes_in 0 159231 station_ip 5.119.251.3 159231 port 643 159231 unique_id port 159231 remote_ip 10.8.0.234 159232 username mehdizare 159232 mac 159232 bytes_out 0 159232 bytes_in 0 159232 station_ip 83.122.87.157 159232 port 325 159232 unique_id port 159232 remote_ip 10.8.1.42 159233 username hashtadani4 159233 mac 159233 bytes_out 1644 159233 bytes_in 3789 159233 station_ip 83.122.133.159 159233 port 643 159233 unique_id port 159233 remote_ip 10.8.0.182 159234 username barzegar 159234 mac 159234 bytes_out 0 159234 bytes_in 0 159234 station_ip 5.119.251.3 159234 port 643 159234 unique_id port 159234 remote_ip 10.8.0.234 159236 username hashtadani4 159236 mac 159236 bytes_out 119923 159236 bytes_in 1564021 159236 station_ip 83.122.133.159 159236 port 328 159236 unique_id port 159236 remote_ip 10.8.1.142 159238 username hashtadani4 159238 mac 159238 bytes_out 0 159238 bytes_in 0 159238 station_ip 83.122.133.159 159238 port 643 159238 unique_id port 159238 remote_ip 10.8.0.182 159239 username hashtadani4 159239 mac 159239 bytes_out 0 159239 bytes_in 0 159239 station_ip 83.122.133.159 159239 port 643 159239 unique_id port 159239 remote_ip 10.8.0.182 159240 username hashtadani4 159240 mac 159240 bytes_out 0 159240 bytes_in 0 159240 station_ip 83.122.133.159 159240 port 643 159240 unique_id port 159240 remote_ip 10.8.0.182 159241 port 645 159241 unique_id port 159241 remote_ip 10.8.0.234 159242 username farhad2 159242 mac 159242 bytes_out 0 159242 bytes_in 0 159242 station_ip 5.119.84.40 159242 port 609 159242 unique_id port 159243 username hashtadani4 159243 mac 159243 bytes_out 0 159243 bytes_in 0 159243 station_ip 83.122.133.159 159243 port 643 159243 unique_id port 159243 remote_ip 10.8.0.182 159244 username hashtadani4 159244 mac 159244 bytes_out 0 159244 bytes_in 0 159244 station_ip 83.122.133.159 159244 port 643 159244 unique_id port 159244 remote_ip 10.8.0.182 159245 username hashtadani4 159245 mac 159245 bytes_out 0 159245 bytes_in 0 159245 station_ip 83.122.133.159 159245 port 643 159245 unique_id port 159245 remote_ip 10.8.0.182 159246 username barzegar 159246 mac 159246 bytes_out 0 159246 bytes_in 0 159246 station_ip 5.119.251.3 159246 port 643 159246 unique_id port 159246 remote_ip 10.8.0.234 159249 username hashtadani4 159249 mac 159249 bytes_out 0 159249 bytes_in 0 159249 station_ip 83.122.133.159 159249 port 643 159249 unique_id port 159249 remote_ip 10.8.0.182 159254 username hashtadani4 159254 mac 159254 bytes_out 0 159254 bytes_in 0 159254 station_ip 83.122.133.159 159254 port 643 159254 unique_id port 159254 remote_ip 10.8.0.182 159255 username barzegar 159255 mac 159255 bytes_out 0 159255 bytes_in 0 159255 station_ip 5.119.251.3 159255 port 643 159255 unique_id port 159255 remote_ip 10.8.0.234 159256 username hashtadani4 159256 mac 159256 bytes_out 0 159256 bytes_in 0 159256 station_ip 83.122.133.159 159256 port 643 159256 unique_id port 159256 remote_ip 10.8.0.182 159257 username hashtadani4 159257 mac 159257 bytes_out 0 159257 bytes_in 0 159257 station_ip 83.122.133.159 159257 port 643 159257 unique_id port 159257 remote_ip 10.8.0.182 159260 username barzegar 159260 mac 159260 bytes_out 0 159260 bytes_in 0 159260 station_ip 5.119.251.3 159260 port 328 159260 unique_id port 159260 remote_ip 10.8.1.174 159261 username hashtadani4 159261 mac 159261 bytes_out 0 159261 bytes_in 0 159261 station_ip 83.122.133.159 159261 port 643 159261 unique_id port 159261 remote_ip 10.8.0.182 159262 username barzegar 159262 mac 159262 bytes_out 0 159262 bytes_in 0 159262 station_ip 5.119.251.3 159262 port 328 159262 unique_id port 159262 remote_ip 10.8.1.174 159264 username hashtadani4 159264 mac 159264 bytes_out 0 159264 bytes_in 0 159264 station_ip 83.122.133.159 159264 port 643 159264 unique_id port 159264 remote_ip 10.8.0.182 159269 username mehdizare 159269 kill_reason Another user logged on this global unique id 159269 mac 159269 bytes_out 0 159269 bytes_in 0 159269 station_ip 83.122.87.157 159269 port 325 159269 unique_id port 159273 username hashtadani4 159273 mac 159273 bytes_out 0 159273 bytes_in 0 159273 station_ip 83.122.133.159 159273 port 643 159273 unique_id port 159273 remote_ip 10.8.0.182 159279 username hashtadani4 159279 mac 159279 bytes_out 0 159279 bytes_in 0 159279 station_ip 83.122.133.159 159279 port 609 159279 unique_id port 159279 remote_ip 10.8.0.182 159280 username farhad2 159280 mac 159280 bytes_out 769139 159280 bytes_in 2672891 159280 station_ip 5.120.87.83 159280 port 328 159280 unique_id port 159280 remote_ip 10.8.1.222 159283 username hashtadani4 159283 mac 159283 bytes_out 0 159283 bytes_in 0 159283 station_ip 83.122.133.159 159283 port 609 159283 unique_id port 159283 remote_ip 10.8.0.182 159285 username barzegar 159285 mac 159285 bytes_out 0 159285 bytes_in 0 159285 station_ip 5.119.251.3 159285 port 336 159285 unique_id port 159285 remote_ip 10.8.1.174 159286 username hashtadani4 159286 mac 159286 bytes_out 0 159286 bytes_in 0 159286 station_ip 83.122.133.159 159286 port 609 159286 unique_id port 159286 remote_ip 10.8.0.182 159292 username barzegar 159292 mac 159292 bytes_out 0 159292 bytes_in 0 159292 station_ip 5.119.251.3 159292 port 325 159292 unique_id port 159292 remote_ip 10.8.1.174 159294 username sedighe 159294 mac 159294 bytes_out 0 159294 bytes_in 0 159294 station_ip 37.129.3.198 159247 username hashtadani4 159247 mac 159247 bytes_out 0 159247 bytes_in 0 159247 station_ip 83.122.133.159 159247 port 643 159247 unique_id port 159247 remote_ip 10.8.0.182 159250 username hashtadani4 159250 mac 159250 bytes_out 0 159250 bytes_in 0 159250 station_ip 83.122.133.159 159250 port 328 159250 unique_id port 159250 remote_ip 10.8.1.142 159251 username hashtadani4 159251 mac 159251 bytes_out 0 159251 bytes_in 0 159251 station_ip 83.122.133.159 159251 port 328 159251 unique_id port 159251 remote_ip 10.8.1.142 159252 username hashtadani4 159252 mac 159252 bytes_out 0 159252 bytes_in 0 159252 station_ip 83.122.133.159 159252 port 643 159252 unique_id port 159252 remote_ip 10.8.0.182 159259 username hashtadani4 159259 mac 159259 bytes_out 0 159259 bytes_in 0 159259 station_ip 83.122.133.159 159259 port 643 159259 unique_id port 159259 remote_ip 10.8.0.182 159265 username farhad2 159265 mac 159265 bytes_out 0 159265 bytes_in 0 159265 station_ip 5.120.87.83 159265 port 609 159265 unique_id port 159267 username hashtadani4 159267 mac 159267 bytes_out 0 159267 bytes_in 0 159267 station_ip 83.122.133.159 159267 port 643 159267 unique_id port 159267 remote_ip 10.8.0.182 159268 username barzegar 159268 mac 159268 bytes_out 0 159268 bytes_in 0 159268 station_ip 5.119.251.3 159268 port 328 159268 unique_id port 159268 remote_ip 10.8.1.174 159270 username hashtadani4 159270 mac 159270 bytes_out 0 159270 bytes_in 0 159270 station_ip 83.122.133.159 159270 port 328 159270 unique_id port 159270 remote_ip 10.8.1.142 159271 username hashtadani4 159271 mac 159271 bytes_out 0 159271 bytes_in 0 159271 station_ip 83.122.133.159 159271 port 643 159271 unique_id port 159271 remote_ip 10.8.0.182 159272 username hashtadani4 159272 mac 159272 bytes_out 0 159272 bytes_in 0 159272 station_ip 83.122.133.159 159272 port 643 159272 unique_id port 159272 remote_ip 10.8.0.182 159274 username barzegar 159274 mac 159274 bytes_out 0 159274 bytes_in 0 159274 station_ip 5.119.251.3 159274 port 328 159274 unique_id port 159274 remote_ip 10.8.1.174 159276 username farhad2 159276 mac 159276 bytes_out 0 159276 bytes_in 0 159276 station_ip 5.120.87.83 159276 port 609 159276 unique_id port 159276 remote_ip 10.8.0.190 159277 username hashtadani4 159277 mac 159277 bytes_out 0 159277 bytes_in 0 159277 station_ip 83.122.133.159 159277 port 609 159277 unique_id port 159277 remote_ip 10.8.0.182 159278 username barzegar 159278 mac 159278 bytes_out 0 159278 bytes_in 0 159278 station_ip 5.119.251.3 159278 port 334 159278 unique_id port 159278 remote_ip 10.8.1.174 159288 username kalantary 159288 mac 159288 bytes_out 266527 159288 bytes_in 1392635 159288 station_ip 113.203.54.153 159288 port 609 159288 unique_id port 159288 remote_ip 10.8.0.98 159289 username hashtadani4 159289 mac 159289 bytes_out 0 159289 bytes_in 0 159289 station_ip 83.122.133.159 159289 port 609 159289 unique_id port 159289 remote_ip 10.8.0.182 159290 username hashtadani4 159290 mac 159290 bytes_out 0 159290 bytes_in 0 159290 station_ip 83.122.133.159 159290 port 609 159290 unique_id port 159290 remote_ip 10.8.0.182 159291 username mehdizare 159291 mac 159291 bytes_out 0 159291 bytes_in 0 159291 station_ip 83.122.87.157 159291 port 325 159291 unique_id port 159293 username hashtadani4 159293 mac 159293 bytes_out 0 159293 bytes_in 0 159293 station_ip 83.122.133.159 159248 username hashtadani4 159248 mac 159248 bytes_out 0 159248 bytes_in 0 159248 station_ip 83.122.133.159 159248 port 328 159248 unique_id port 159248 remote_ip 10.8.1.142 159253 username hashtadani4 159253 mac 159253 bytes_out 0 159253 bytes_in 0 159253 station_ip 83.122.133.159 159253 port 643 159253 unique_id port 159253 remote_ip 10.8.0.182 159258 username mehdizare 159258 kill_reason Another user logged on this global unique id 159258 mac 159258 bytes_out 0 159258 bytes_in 0 159258 station_ip 83.122.87.157 159258 port 325 159258 unique_id port 159258 remote_ip 10.8.1.42 159263 username farhad2 159263 kill_reason Another user logged on this global unique id 159263 mac 159263 bytes_out 0 159263 bytes_in 0 159263 station_ip 5.120.87.83 159263 port 609 159263 unique_id port 159263 remote_ip 10.8.0.190 159266 username hashtadani4 159266 mac 159266 bytes_out 0 159266 bytes_in 0 159266 station_ip 83.122.133.159 159266 port 643 159266 unique_id port 159266 remote_ip 10.8.0.182 159275 username hashtadani4 159275 mac 159275 bytes_out 0 159275 bytes_in 0 159275 station_ip 83.122.133.159 159275 port 643 159275 unique_id port 159275 remote_ip 10.8.0.182 159281 username hashtadani4 159281 mac 159281 bytes_out 0 159281 bytes_in 0 159281 station_ip 83.122.133.159 159281 port 334 159281 unique_id port 159281 remote_ip 10.8.1.142 159282 username hashtadani4 159282 mac 159282 bytes_out 0 159282 bytes_in 0 159282 station_ip 83.122.133.159 159282 port 334 159282 unique_id port 159282 remote_ip 10.8.1.142 159284 username hashtadani4 159284 mac 159284 bytes_out 0 159284 bytes_in 0 159284 station_ip 83.122.133.159 159284 port 609 159284 unique_id port 159284 remote_ip 10.8.0.182 159287 username shadkam 159287 mac 159287 bytes_out 410246 159287 bytes_in 3780468 159287 station_ip 37.129.213.93 159287 port 334 159287 unique_id port 159287 remote_ip 10.8.1.218 159295 username shadkam 159295 mac 159295 bytes_out 0 159295 bytes_in 0 159295 station_ip 37.129.215.150 159295 port 325 159295 unique_id port 159295 remote_ip 10.8.1.218 159297 username shadkam 159297 mac 159297 bytes_out 0 159297 bytes_in 0 159297 station_ip 37.129.215.150 159297 port 645 159297 unique_id port 159297 remote_ip 10.8.0.62 159300 username hashtadani4 159300 mac 159300 bytes_out 0 159300 bytes_in 0 159300 station_ip 83.122.133.159 159300 port 336 159300 unique_id port 159300 remote_ip 10.8.1.142 159302 username hashtadani4 159302 mac 159302 bytes_out 0 159302 bytes_in 0 159302 station_ip 83.122.133.159 159302 port 609 159302 unique_id port 159302 remote_ip 10.8.0.182 159306 username mohammadjavad 159306 mac 159306 bytes_out 0 159306 bytes_in 0 159306 station_ip 83.122.173.68 159306 port 643 159306 unique_id port 159306 remote_ip 10.8.0.142 159312 username barzegar 159312 mac 159312 bytes_out 0 159312 bytes_in 0 159312 station_ip 5.119.251.3 159312 port 643 159312 unique_id port 159312 remote_ip 10.8.0.234 159314 username hashtadani4 159314 mac 159314 bytes_out 0 159314 bytes_in 0 159314 station_ip 83.122.133.159 159314 port 643 159314 unique_id port 159314 remote_ip 10.8.0.182 159318 username milan 159318 kill_reason Another user logged on this global unique id 159318 mac 159318 bytes_out 0 159318 bytes_in 0 159318 station_ip 5.120.56.28 159318 port 647 159318 unique_id port 159319 username hashtadani4 159319 mac 159319 bytes_out 0 159319 bytes_in 0 159319 station_ip 83.122.133.159 159319 port 650 159293 port 609 159293 unique_id port 159293 remote_ip 10.8.0.182 159298 username sedighe 159298 mac 159298 bytes_out 0 159298 bytes_in 0 159298 station_ip 83.122.125.81 159298 port 609 159298 unique_id port 159298 remote_ip 10.8.0.146 159301 username barzegar 159301 mac 159301 bytes_out 0 159301 bytes_in 0 159301 station_ip 5.119.251.3 159301 port 325 159301 unique_id port 159301 remote_ip 10.8.1.174 159303 username farhad2 159303 mac 159303 bytes_out 3289374 159303 bytes_in 49266475 159303 station_ip 5.120.81.92 159303 port 328 159303 unique_id port 159303 remote_ip 10.8.1.222 159304 username shadkam 159304 mac 159304 bytes_out 0 159304 bytes_in 0 159304 station_ip 37.129.215.150 159304 port 325 159304 unique_id port 159304 remote_ip 10.8.1.218 159308 username hashtadani4 159308 mac 159308 bytes_out 0 159308 bytes_in 0 159308 station_ip 83.122.133.159 159308 port 643 159308 unique_id port 159308 remote_ip 10.8.0.182 159311 username milan 159311 kill_reason Another user logged on this global unique id 159311 mac 159311 bytes_out 0 159311 bytes_in 0 159311 station_ip 5.120.56.28 159311 port 647 159311 unique_id port 159311 remote_ip 10.8.0.218 159313 username hashtadani4 159313 mac 159313 bytes_out 2599 159313 bytes_in 5135 159313 station_ip 83.122.133.159 159313 port 325 159313 unique_id port 159313 remote_ip 10.8.1.142 159315 username hashtadani4 159315 mac 159315 bytes_out 0 159315 bytes_in 0 159315 station_ip 83.122.133.159 159315 port 643 159315 unique_id port 159315 remote_ip 10.8.0.182 159321 username mehdizare 159321 mac 159321 bytes_out 193498 159321 bytes_in 250853 159321 station_ip 83.122.87.157 159321 port 334 159321 unique_id port 159321 remote_ip 10.8.1.42 159323 username hashtadani4 159323 mac 159323 bytes_out 0 159323 bytes_in 0 159323 station_ip 83.122.133.159 159323 port 650 159323 unique_id port 159323 remote_ip 10.8.0.182 159326 username mohammadjavad 159326 mac 159326 bytes_out 0 159326 bytes_in 0 159326 station_ip 83.122.173.68 159326 port 648 159326 unique_id port 159326 remote_ip 10.8.0.142 159328 username hashtadani4 159328 mac 159328 bytes_out 0 159328 bytes_in 0 159328 station_ip 83.122.133.159 159328 port 336 159328 unique_id port 159328 remote_ip 10.8.1.142 159333 username farhad2 159333 kill_reason Another user logged on this global unique id 159333 mac 159333 bytes_out 0 159333 bytes_in 0 159333 station_ip 5.120.81.92 159333 port 646 159333 unique_id port 159333 remote_ip 10.8.0.190 159341 username pourshad 159341 mac 159341 bytes_out 0 159341 bytes_in 0 159341 station_ip 5.120.128.181 159341 port 652 159341 unique_id port 159341 remote_ip 10.8.0.18 159342 username barzegar 159342 kill_reason Another user logged on this global unique id 159342 mac 159342 bytes_out 0 159342 bytes_in 0 159342 station_ip 5.119.251.3 159342 port 648 159342 unique_id port 159345 username mirzaei 159345 kill_reason Another user logged on this global unique id 159345 mac 159345 bytes_out 0 159345 bytes_in 0 159345 station_ip 5.120.84.212 159345 port 641 159345 unique_id port 159345 remote_ip 10.8.0.66 159348 username hassan 159348 kill_reason Another user logged on this global unique id 159348 mac 159348 bytes_out 0 159348 bytes_in 0 159348 station_ip 5.120.164.70 159348 port 325 159348 unique_id port 159349 username hashtadani4 159349 mac 159349 bytes_out 0 159349 bytes_in 0 159349 station_ip 83.122.133.159 159349 port 653 159349 unique_id port 159349 remote_ip 10.8.0.182 159352 username pourshad 159294 port 643 159294 unique_id port 159294 remote_ip 10.8.0.146 159296 username hashtadani4 159296 mac 159296 bytes_out 0 159296 bytes_in 0 159296 station_ip 83.122.133.159 159296 port 645 159296 unique_id port 159296 remote_ip 10.8.0.182 159299 username hashtadani4 159299 mac 159299 bytes_out 0 159299 bytes_in 0 159299 station_ip 83.122.133.159 159299 port 336 159299 unique_id port 159299 remote_ip 10.8.1.142 159305 username hashtadani4 159305 mac 159305 bytes_out 0 159305 bytes_in 0 159305 station_ip 83.122.133.159 159305 port 609 159305 unique_id port 159305 remote_ip 10.8.0.182 159307 username hashtadani4 159307 mac 159307 bytes_out 0 159307 bytes_in 0 159307 station_ip 83.122.133.159 159307 port 643 159307 unique_id port 159307 remote_ip 10.8.0.182 159309 username barzegar 159309 mac 159309 bytes_out 0 159309 bytes_in 0 159309 station_ip 5.119.251.3 159309 port 325 159309 unique_id port 159309 remote_ip 10.8.1.174 159310 username jafari 159310 kill_reason Another user logged on this global unique id 159310 mac 159310 bytes_out 0 159310 bytes_in 0 159310 station_ip 37.156.155.122 159310 port 645 159310 unique_id port 159310 remote_ip 10.8.0.242 159316 username hashtadani4 159316 mac 159316 bytes_out 0 159316 bytes_in 0 159316 station_ip 83.122.133.159 159316 port 643 159316 unique_id port 159316 remote_ip 10.8.0.182 159317 username barzegar 159317 mac 159317 bytes_out 0 159317 bytes_in 0 159317 station_ip 5.119.251.3 159317 port 643 159317 unique_id port 159317 remote_ip 10.8.0.234 159320 username barzegar 159320 mac 159320 bytes_out 0 159320 bytes_in 0 159320 station_ip 5.119.251.3 159320 port 643 159320 unique_id port 159320 remote_ip 10.8.0.234 159322 username shadkam 159322 mac 159322 bytes_out 0 159322 bytes_in 0 159322 station_ip 83.122.186.199 159322 port 328 159322 unique_id port 159322 remote_ip 10.8.1.218 159324 username barzegar 159324 mac 159324 bytes_out 0 159324 bytes_in 0 159324 station_ip 5.119.251.3 159324 port 650 159324 unique_id port 159324 remote_ip 10.8.0.234 159331 username hashtadani4 159331 mac 159331 bytes_out 0 159331 bytes_in 0 159331 station_ip 83.122.133.159 159331 port 650 159331 unique_id port 159331 remote_ip 10.8.0.182 159332 username moradi 159332 mac 159332 bytes_out 0 159332 bytes_in 0 159332 station_ip 37.129.157.5 159332 port 328 159332 unique_id port 159335 username hashtadani4 159335 mac 159335 bytes_out 0 159335 bytes_in 0 159335 station_ip 83.122.133.159 159335 port 650 159335 unique_id port 159335 remote_ip 10.8.0.182 159336 username pourshad 159336 mac 159336 bytes_out 9266349 159336 bytes_in 51095934 159336 station_ip 5.120.128.181 159336 port 609 159336 unique_id port 159336 remote_ip 10.8.0.18 159337 username barzegar 159337 kill_reason Another user logged on this global unique id 159337 mac 159337 bytes_out 0 159337 bytes_in 0 159337 station_ip 5.119.251.3 159337 port 648 159337 unique_id port 159337 remote_ip 10.8.0.234 159340 username hashtadani4 159340 mac 159340 bytes_out 0 159340 bytes_in 0 159340 station_ip 83.122.133.159 159340 port 650 159340 unique_id port 159340 remote_ip 10.8.0.182 159351 username barzegar 159351 kill_reason Another user logged on this global unique id 159351 mac 159351 bytes_out 0 159351 bytes_in 0 159351 station_ip 5.119.251.3 159351 port 652 159351 unique_id port 159351 remote_ip 10.8.0.234 159359 username barzegar 159359 mac 159359 bytes_out 0 159359 bytes_in 0 159319 unique_id port 159319 remote_ip 10.8.0.182 159325 username hashtadani4 159325 mac 159325 bytes_out 0 159325 bytes_in 0 159325 station_ip 83.122.133.159 159325 port 650 159325 unique_id port 159325 remote_ip 10.8.0.182 159327 username hashtadani4 159327 mac 159327 bytes_out 0 159327 bytes_in 0 159327 station_ip 83.122.133.159 159327 port 648 159327 unique_id port 159327 remote_ip 10.8.0.182 159329 username moradi 159329 kill_reason Another user logged on this global unique id 159329 mac 159329 bytes_out 0 159329 bytes_in 0 159329 station_ip 37.129.157.5 159329 port 328 159329 unique_id port 159329 remote_ip 10.8.1.202 159330 username hashtadani4 159330 mac 159330 bytes_out 0 159330 bytes_in 0 159330 station_ip 83.122.133.159 159330 port 336 159330 unique_id port 159330 remote_ip 10.8.1.142 159334 username hassan 159334 kill_reason Another user logged on this global unique id 159334 mac 159334 bytes_out 0 159334 bytes_in 0 159334 station_ip 5.120.164.70 159334 port 325 159334 unique_id port 159334 remote_ip 10.8.1.138 159338 username pourshad 159338 mac 159338 bytes_out 37986 159338 bytes_in 64075 159338 station_ip 5.120.128.181 159338 port 650 159338 unique_id port 159338 remote_ip 10.8.0.18 159339 username hashtadani4 159339 mac 159339 bytes_out 0 159339 bytes_in 0 159339 station_ip 83.122.133.159 159339 port 328 159339 unique_id port 159339 remote_ip 10.8.1.142 159343 username farhad2 159343 mac 159343 bytes_out 0 159343 bytes_in 0 159343 station_ip 5.120.81.92 159343 port 646 159343 unique_id port 159344 username hashtadani4 159344 mac 159344 bytes_out 0 159344 bytes_in 0 159344 station_ip 83.122.133.159 159344 port 646 159344 unique_id port 159344 remote_ip 10.8.0.182 159346 username forozandeh1 159346 mac 159346 bytes_out 0 159346 bytes_in 0 159346 station_ip 83.123.30.99 159346 port 609 159346 unique_id port 159346 remote_ip 10.8.0.130 159347 username barzegar 159347 mac 159347 bytes_out 0 159347 bytes_in 0 159347 station_ip 5.119.251.3 159347 port 648 159347 unique_id port 159350 username shadkam 159350 mac 159350 bytes_out 1259790 159350 bytes_in 14231820 159350 station_ip 83.122.227.17 159350 port 328 159350 unique_id port 159350 remote_ip 10.8.1.218 159356 username hashtadani4 159356 mac 159356 bytes_out 0 159356 bytes_in 0 159356 station_ip 83.122.133.159 159356 port 650 159356 unique_id port 159356 remote_ip 10.8.0.182 159357 username sabaghnezhad 159357 mac 159357 bytes_out 345037 159357 bytes_in 418971 159357 station_ip 83.123.82.223 159357 port 609 159357 unique_id port 159357 remote_ip 10.8.0.186 159361 username hashtadani4 159361 mac 159361 bytes_out 0 159361 bytes_in 0 159361 station_ip 83.122.133.159 159361 port 609 159361 unique_id port 159361 remote_ip 10.8.0.182 159364 username milan 159364 mac 159364 bytes_out 0 159364 bytes_in 0 159364 station_ip 5.120.56.28 159364 port 647 159364 unique_id port 159366 username godarzi 159366 kill_reason Another user logged on this global unique id 159366 mac 159366 bytes_out 0 159366 bytes_in 0 159366 station_ip 5.202.13.180 159366 port 328 159366 unique_id port 159366 remote_ip 10.8.1.230 159367 username sekonji3 159367 mac 159367 bytes_out 0 159367 bytes_in 0 159367 station_ip 83.123.90.31 159367 port 647 159367 unique_id port 159367 remote_ip 10.8.0.6 159369 username mahdiyehalizadeh 159369 mac 159369 bytes_out 0 159369 bytes_in 0 159369 station_ip 5.120.190.217 159369 port 609 159369 unique_id port 159352 mac 159352 bytes_out 0 159352 bytes_in 0 159352 station_ip 5.120.128.181 159352 port 650 159352 unique_id port 159352 remote_ip 10.8.0.18 159353 username barzegar 159353 kill_reason Another user logged on this global unique id 159353 mac 159353 bytes_out 0 159353 bytes_in 0 159353 station_ip 5.119.251.3 159353 port 652 159353 unique_id port 159354 username barzegar 159354 mac 159354 bytes_out 0 159354 bytes_in 0 159354 station_ip 5.119.251.3 159354 port 652 159354 unique_id port 159355 username hashtadani4 159355 mac 159355 bytes_out 0 159355 bytes_in 0 159355 station_ip 83.122.133.159 159355 port 336 159355 unique_id port 159355 remote_ip 10.8.1.142 159358 username barzegar 159358 mac 159358 bytes_out 0 159358 bytes_in 0 159358 station_ip 5.119.251.3 159358 port 609 159358 unique_id port 159358 remote_ip 10.8.0.234 159360 username barzegar 159360 mac 159360 bytes_out 0 159360 bytes_in 0 159360 station_ip 5.119.251.3 159360 port 609 159360 unique_id port 159360 remote_ip 10.8.0.234 159363 username barzegar 159363 mac 159363 bytes_out 0 159363 bytes_in 0 159363 station_ip 5.119.251.3 159363 port 336 159363 unique_id port 159363 remote_ip 10.8.1.174 159365 username malekpoir 159365 kill_reason Another user logged on this global unique id 159365 mac 159365 bytes_out 0 159365 bytes_in 0 159365 station_ip 5.120.124.135 159365 port 650 159365 unique_id port 159365 remote_ip 10.8.0.58 159370 username mirzaei 159370 kill_reason Another user logged on this global unique id 159370 mac 159370 bytes_out 0 159370 bytes_in 0 159370 station_ip 5.120.84.212 159370 port 641 159370 unique_id port 159373 username mohammadjavad 159373 mac 159373 bytes_out 583564 159373 bytes_in 8417470 159373 station_ip 37.129.132.138 159373 port 647 159373 unique_id port 159373 remote_ip 10.8.0.142 159380 username mohsenaskari 159380 mac 159380 bytes_out 0 159380 bytes_in 0 159380 station_ip 46.225.212.232 159380 port 652 159380 unique_id port 159380 remote_ip 10.8.0.170 159386 username jafari 159386 mac 159386 bytes_out 0 159386 bytes_in 0 159386 station_ip 37.156.155.122 159386 port 645 159386 unique_id port 159388 username forozandeh1 159388 mac 159388 bytes_out 644043 159388 bytes_in 4042240 159388 station_ip 83.123.6.231 159388 port 648 159388 unique_id port 159388 remote_ip 10.8.0.130 159390 username godarzi 159390 mac 159390 bytes_out 0 159390 bytes_in 0 159390 station_ip 5.202.13.180 159390 port 340 159390 unique_id port 159390 remote_ip 10.8.1.230 159392 username hassan 159392 mac 159392 bytes_out 0 159392 bytes_in 0 159392 station_ip 5.120.164.70 159392 port 325 159392 unique_id port 159395 username barzegar 159395 mac 159395 bytes_out 0 159395 bytes_in 0 159395 station_ip 5.119.251.3 159395 port 325 159395 unique_id port 159395 remote_ip 10.8.1.174 159400 username hashtadani4 159400 mac 159400 bytes_out 0 159400 bytes_in 0 159400 station_ip 83.122.133.159 159400 port 325 159400 unique_id port 159400 remote_ip 10.8.1.142 159402 username hashtadani4 159402 mac 159402 bytes_out 0 159402 bytes_in 0 159402 station_ip 83.122.133.159 159402 port 645 159402 unique_id port 159402 remote_ip 10.8.0.182 159407 username forozandeh1 159407 mac 159407 bytes_out 0 159407 bytes_in 0 159407 station_ip 83.122.125.82 159407 port 645 159407 unique_id port 159407 remote_ip 10.8.0.130 159408 username barzegar 159408 mac 159408 bytes_out 47004 159408 bytes_in 369625 159359 station_ip 5.119.251.3 159359 port 609 159359 unique_id port 159359 remote_ip 10.8.0.234 159362 username milan 159362 kill_reason Another user logged on this global unique id 159362 mac 159362 bytes_out 0 159362 bytes_in 0 159362 station_ip 5.120.56.28 159362 port 647 159362 unique_id port 159368 username hashtadani4 159368 mac 159368 bytes_out 0 159368 bytes_in 0 159368 station_ip 83.122.133.159 159368 port 655 159368 unique_id port 159368 remote_ip 10.8.0.182 159372 username vanila 159372 mac 159372 bytes_out 126294 159372 bytes_in 197192 159372 station_ip 113.203.45.10 159372 port 652 159372 unique_id port 159372 remote_ip 10.8.0.178 159374 username sabaghnezhad 159374 mac 159374 bytes_out 0 159374 bytes_in 0 159374 station_ip 83.122.251.178 159374 port 609 159374 unique_id port 159374 remote_ip 10.8.0.186 159376 username hashtadani4 159376 mac 159376 bytes_out 0 159376 bytes_in 0 159376 station_ip 83.122.133.159 159376 port 647 159376 unique_id port 159376 remote_ip 10.8.0.182 159378 username pourshad 159378 mac 159378 bytes_out 110370 159378 bytes_in 143632 159378 station_ip 5.120.128.181 159378 port 653 159378 unique_id port 159378 remote_ip 10.8.0.18 159379 username malekpoir 159379 mac 159379 bytes_out 0 159379 bytes_in 0 159379 station_ip 5.120.124.135 159379 port 650 159379 unique_id port 159383 username godarzi 159383 mac 159383 bytes_out 0 159383 bytes_in 0 159383 station_ip 5.202.13.180 159383 port 328 159383 unique_id port 159385 username sabaghnezhad 159385 mac 159385 bytes_out 0 159385 bytes_in 0 159385 station_ip 83.122.251.178 159385 port 609 159385 unique_id port 159385 remote_ip 10.8.0.186 159389 username hashtadani4 159389 kill_reason Another user logged on this global unique id 159389 mac 159389 bytes_out 0 159389 bytes_in 0 159389 station_ip 83.122.133.159 159389 port 647 159389 unique_id port 159389 remote_ip 10.8.0.182 159391 username pourshad 159391 mac 159391 bytes_out 0 159391 bytes_in 0 159391 station_ip 5.120.128.181 159391 port 339 159391 unique_id port 159391 remote_ip 10.8.1.154 159397 username hashtadani4 159397 mac 159397 bytes_out 0 159397 bytes_in 0 159397 station_ip 83.122.133.159 159397 port 609 159397 unique_id port 159397 remote_ip 10.8.0.182 159399 username hashtadani4 159399 mac 159399 bytes_out 0 159399 bytes_in 0 159399 station_ip 83.122.133.159 159399 port 645 159399 unique_id port 159399 remote_ip 10.8.0.182 159406 username meysam 159406 kill_reason Another user logged on this global unique id 159406 mac 159406 bytes_out 0 159406 bytes_in 0 159406 station_ip 188.159.251.22 159406 port 609 159406 unique_id port 159406 remote_ip 10.8.0.110 159409 username kalantary 159409 mac 159409 bytes_out 0 159409 bytes_in 0 159409 station_ip 83.122.88.14 159409 port 645 159409 unique_id port 159409 remote_ip 10.8.0.98 159413 username hashtadani4 159413 mac 159413 bytes_out 0 159413 bytes_in 0 159413 station_ip 83.122.133.159 159413 port 336 159413 unique_id port 159413 remote_ip 10.8.1.142 159417 username hashtadani4 159417 mac 159417 bytes_out 0 159417 bytes_in 0 159417 station_ip 83.122.133.159 159417 port 336 159417 unique_id port 159417 remote_ip 10.8.1.142 159421 username hashtadani4 159421 mac 159421 bytes_out 0 159421 bytes_in 0 159421 station_ip 83.122.133.159 159421 port 648 159421 unique_id port 159421 remote_ip 10.8.0.182 159423 username hashtadani4 159423 mac 159423 bytes_out 0 159423 bytes_in 0 159369 remote_ip 10.8.0.82 159371 username farhad2 159371 kill_reason Another user logged on this global unique id 159371 mac 159371 bytes_out 0 159371 bytes_in 0 159371 station_ip 5.120.81.92 159371 port 646 159371 unique_id port 159371 remote_ip 10.8.0.190 159375 username hashtadani4 159375 mac 159375 bytes_out 2376 159375 bytes_in 4653 159375 station_ip 83.122.133.159 159375 port 656 159375 unique_id port 159375 remote_ip 10.8.0.182 159377 username barzegar 159377 mac 159377 bytes_out 0 159377 bytes_in 0 159377 station_ip 5.119.251.3 159377 port 336 159377 unique_id port 159377 remote_ip 10.8.1.174 159381 username pourshad 159381 mac 159381 bytes_out 34126 159381 bytes_in 53062 159381 station_ip 5.120.128.181 159381 port 339 159381 unique_id port 159381 remote_ip 10.8.1.154 159382 username barzegar 159382 mac 159382 bytes_out 3286 159382 bytes_in 6061 159382 station_ip 5.119.251.3 159382 port 336 159382 unique_id port 159382 remote_ip 10.8.1.174 159384 username barzegar 159384 mac 159384 bytes_out 0 159384 bytes_in 0 159384 station_ip 5.119.251.3 159384 port 336 159384 unique_id port 159384 remote_ip 10.8.1.174 159387 username shadkam 159387 mac 159387 bytes_out 0 159387 bytes_in 0 159387 station_ip 83.122.195.212 159387 port 650 159387 unique_id port 159387 remote_ip 10.8.0.62 159393 username barzegar 159393 mac 159393 bytes_out 0 159393 bytes_in 0 159393 station_ip 5.119.251.3 159393 port 325 159393 unique_id port 159393 remote_ip 10.8.1.174 159394 username hashtadani4 159394 mac 159394 bytes_out 0 159394 bytes_in 0 159394 station_ip 83.122.133.159 159394 port 647 159394 unique_id port 159396 username hashtadani4 159396 mac 159396 bytes_out 0 159396 bytes_in 0 159396 station_ip 83.122.133.159 159396 port 325 159396 unique_id port 159396 remote_ip 10.8.1.142 159398 username hashtadani4 159398 mac 159398 bytes_out 0 159398 bytes_in 0 159398 station_ip 83.122.133.159 159398 port 325 159398 unique_id port 159398 remote_ip 10.8.1.142 159401 username hashtadani4 159401 mac 159401 bytes_out 0 159401 bytes_in 0 159401 station_ip 83.122.133.159 159401 port 645 159401 unique_id port 159401 remote_ip 10.8.0.182 159403 username hashtadani4 159403 mac 159403 bytes_out 0 159403 bytes_in 0 159403 station_ip 83.122.133.159 159403 port 647 159403 unique_id port 159403 remote_ip 10.8.0.182 159404 username hashtadani4 159404 mac 159404 bytes_out 0 159404 bytes_in 0 159404 station_ip 83.122.133.159 159404 port 336 159404 unique_id port 159404 remote_ip 10.8.1.142 159405 username malekpoir 159405 mac 159405 bytes_out 226897 159405 bytes_in 1406508 159405 station_ip 5.120.124.135 159405 port 653 159405 unique_id port 159405 remote_ip 10.8.0.58 159412 username hashtadani4 159412 mac 159412 bytes_out 1697307 159412 bytes_in 24699504 159412 station_ip 83.122.133.159 159412 port 647 159412 unique_id port 159412 remote_ip 10.8.0.182 159415 username hashtadani4 159415 mac 159415 bytes_out 0 159415 bytes_in 0 159415 station_ip 83.122.133.159 159415 port 647 159415 unique_id port 159415 remote_ip 10.8.0.182 159416 username hashtadani4 159416 mac 159416 bytes_out 0 159416 bytes_in 0 159416 station_ip 83.122.133.159 159416 port 647 159416 unique_id port 159416 remote_ip 10.8.0.182 159420 username hashtadani4 159420 mac 159420 bytes_out 0 159420 bytes_in 0 159420 station_ip 83.122.133.159 159420 port 648 159420 unique_id port 159420 remote_ip 10.8.0.182 159408 station_ip 5.119.251.3 159408 port 336 159408 unique_id port 159408 remote_ip 10.8.1.174 159410 username meysam 159410 kill_reason Another user logged on this global unique id 159410 mac 159410 bytes_out 0 159410 bytes_in 0 159410 station_ip 188.159.251.22 159410 port 609 159410 unique_id port 159411 username forozandeh1 159411 mac 159411 bytes_out 0 159411 bytes_in 0 159411 station_ip 37.129.10.146 159411 port 650 159411 unique_id port 159411 remote_ip 10.8.0.130 159414 username hashtadani4 159414 mac 159414 bytes_out 0 159414 bytes_in 0 159414 station_ip 83.122.133.159 159414 port 336 159414 unique_id port 159414 remote_ip 10.8.1.142 159418 username malekpoir 159418 mac 159418 bytes_out 20800 159418 bytes_in 30977 159418 station_ip 5.120.124.135 159418 port 648 159418 unique_id port 159418 remote_ip 10.8.0.58 159419 username hashtadani4 159419 mac 159419 bytes_out 0 159419 bytes_in 0 159419 station_ip 83.122.133.159 159419 port 336 159419 unique_id port 159419 remote_ip 10.8.1.142 159424 username hashtadani4 159424 mac 159424 bytes_out 0 159424 bytes_in 0 159424 station_ip 83.122.133.159 159424 port 648 159424 unique_id port 159424 remote_ip 10.8.0.182 159430 username hashtadani4 159430 mac 159430 bytes_out 0 159430 bytes_in 0 159430 station_ip 83.122.133.159 159430 port 645 159430 unique_id port 159430 remote_ip 10.8.0.182 159433 username hashtadani4 159433 mac 159433 bytes_out 0 159433 bytes_in 0 159433 station_ip 83.122.133.159 159433 port 645 159433 unique_id port 159433 remote_ip 10.8.0.182 159443 username hashtadani4 159443 mac 159443 bytes_out 0 159443 bytes_in 0 159443 station_ip 83.122.133.159 159443 port 648 159443 unique_id port 159443 remote_ip 10.8.0.182 159447 username hashtadani4 159447 mac 159447 bytes_out 0 159447 bytes_in 0 159447 station_ip 83.122.133.159 159447 port 648 159447 unique_id port 159447 remote_ip 10.8.0.182 159448 username hashtadani4 159448 mac 159448 bytes_out 0 159448 bytes_in 0 159448 station_ip 83.122.133.159 159448 port 336 159448 unique_id port 159448 remote_ip 10.8.1.142 159455 username hashtadani4 159455 mac 159455 bytes_out 0 159455 bytes_in 0 159455 station_ip 83.122.133.159 159455 port 648 159455 unique_id port 159455 remote_ip 10.8.0.182 159461 username hashtadani4 159461 mac 159461 bytes_out 0 159461 bytes_in 0 159461 station_ip 83.122.133.159 159461 port 650 159461 unique_id port 159461 remote_ip 10.8.0.182 159462 username hashtadani4 159462 mac 159462 bytes_out 0 159462 bytes_in 0 159462 station_ip 83.122.133.159 159462 port 336 159462 unique_id port 159462 remote_ip 10.8.1.142 159465 username hashtadani4 159465 mac 159465 bytes_out 0 159465 bytes_in 0 159465 station_ip 83.122.133.159 159465 port 650 159465 unique_id port 159465 remote_ip 10.8.0.182 159469 username mahdiyehalizadeh 159469 mac 159469 bytes_out 0 159469 bytes_in 0 159469 station_ip 5.119.5.70 159469 port 655 159469 unique_id port 159469 remote_ip 10.8.0.82 159471 username barzegar 159471 mac 159471 bytes_out 0 159471 bytes_in 0 159471 station_ip 5.119.251.3 159471 port 652 159471 unique_id port 159471 remote_ip 10.8.0.234 159481 username meysam 159481 mac 159481 bytes_out 0 159481 bytes_in 0 159481 station_ip 188.159.251.22 159481 port 609 159481 unique_id port 159483 username hashtadani4 159483 mac 159483 bytes_out 0 159483 bytes_in 0 159483 station_ip 83.122.133.159 159483 port 650 159483 unique_id port 159422 username hashtadani4 159422 mac 159422 bytes_out 0 159422 bytes_in 0 159422 station_ip 83.122.133.159 159422 port 648 159422 unique_id port 159422 remote_ip 10.8.0.182 159425 username hashtadani4 159425 mac 159425 bytes_out 0 159425 bytes_in 0 159425 station_ip 83.122.133.159 159425 port 648 159425 unique_id port 159425 remote_ip 10.8.0.182 159426 username barzegar 159426 mac 159426 bytes_out 4383 159426 bytes_in 6793 159426 station_ip 5.119.251.3 159426 port 645 159426 unique_id port 159426 remote_ip 10.8.0.234 159428 username hashtadani4 159428 mac 159428 bytes_out 0 159428 bytes_in 0 159428 station_ip 83.122.133.159 159428 port 645 159428 unique_id port 159428 remote_ip 10.8.0.182 159437 username hashtadani4 159437 mac 159437 bytes_out 0 159437 bytes_in 0 159437 station_ip 83.122.133.159 159437 port 648 159437 unique_id port 159437 remote_ip 10.8.0.182 159439 username godarzi 159439 kill_reason Another user logged on this global unique id 159439 mac 159439 bytes_out 0 159439 bytes_in 0 159439 station_ip 5.202.13.180 159439 port 325 159439 unique_id port 159439 remote_ip 10.8.1.230 159440 username hashtadani4 159440 mac 159440 bytes_out 0 159440 bytes_in 0 159440 station_ip 83.122.133.159 159440 port 336 159440 unique_id port 159440 remote_ip 10.8.1.142 159444 username hashtadani4 159444 mac 159444 bytes_out 0 159444 bytes_in 0 159444 station_ip 83.122.133.159 159444 port 648 159444 unique_id port 159444 remote_ip 10.8.0.182 159449 username hashtadani4 159449 mac 159449 bytes_out 0 159449 bytes_in 0 159449 station_ip 83.122.133.159 159449 port 648 159449 unique_id port 159449 remote_ip 10.8.0.182 159451 username hashtadani4 159451 mac 159451 bytes_out 0 159451 bytes_in 0 159451 station_ip 83.122.133.159 159451 port 336 159451 unique_id port 159451 remote_ip 10.8.1.142 159453 username hashtadani4 159453 mac 159453 bytes_out 0 159453 bytes_in 0 159453 station_ip 83.122.133.159 159453 port 650 159453 unique_id port 159453 remote_ip 10.8.0.182 159456 username malekpoir 159456 mac 159456 bytes_out 17914 159456 bytes_in 17552 159456 station_ip 5.120.124.135 159456 port 647 159456 unique_id port 159456 remote_ip 10.8.0.58 159458 username hashtadani4 159458 mac 159458 bytes_out 0 159458 bytes_in 0 159458 station_ip 83.122.133.159 159458 port 650 159458 unique_id port 159458 remote_ip 10.8.0.182 159459 username hashtadani4 159459 mac 159459 bytes_out 0 159459 bytes_in 0 159459 station_ip 83.122.133.159 159459 port 650 159459 unique_id port 159459 remote_ip 10.8.0.182 159463 username hashtadani4 159463 mac 159463 bytes_out 0 159463 bytes_in 0 159463 station_ip 83.122.133.159 159463 port 650 159463 unique_id port 159463 remote_ip 10.8.0.182 159464 username hashtadani4 159464 mac 159464 bytes_out 0 159464 bytes_in 0 159464 station_ip 83.122.133.159 159464 port 650 159464 unique_id port 159464 remote_ip 10.8.0.182 159466 username godarzi 159466 kill_reason Another user logged on this global unique id 159466 mac 159466 bytes_out 0 159466 bytes_in 0 159466 station_ip 5.202.13.180 159466 port 325 159466 unique_id port 159472 username hashtadani4 159472 mac 159472 bytes_out 0 159472 bytes_in 0 159472 station_ip 83.122.133.159 159472 port 650 159472 unique_id port 159472 remote_ip 10.8.0.182 159477 username aminvpn 159477 mac 159477 bytes_out 0 159477 bytes_in 0 159477 station_ip 31.59.44.44 159477 port 339 159477 unique_id port 159477 remote_ip 10.8.1.6 159423 station_ip 83.122.133.159 159423 port 336 159423 unique_id port 159423 remote_ip 10.8.1.142 159427 username hashtadani4 159427 mac 159427 bytes_out 0 159427 bytes_in 0 159427 station_ip 83.122.133.159 159427 port 648 159427 unique_id port 159427 remote_ip 10.8.0.182 159429 username hashtadani4 159429 mac 159429 bytes_out 0 159429 bytes_in 0 159429 station_ip 83.122.133.159 159429 port 336 159429 unique_id port 159429 remote_ip 10.8.1.142 159431 username hashtadani4 159431 mac 159431 bytes_out 0 159431 bytes_in 0 159431 station_ip 83.122.133.159 159431 port 645 159431 unique_id port 159431 remote_ip 10.8.0.182 159432 username hashtadani4 159432 mac 159432 bytes_out 0 159432 bytes_in 0 159432 station_ip 83.122.133.159 159432 port 336 159432 unique_id port 159432 remote_ip 10.8.1.142 159434 username hashtadani4 159434 mac 159434 bytes_out 0 159434 bytes_in 0 159434 station_ip 83.122.133.159 159434 port 648 159434 unique_id port 159434 remote_ip 10.8.0.182 159435 username hashtadani4 159435 mac 159435 bytes_out 0 159435 bytes_in 0 159435 station_ip 83.122.133.159 159435 port 336 159435 unique_id port 159435 remote_ip 10.8.1.142 159436 username hashtadani4 159436 mac 159436 bytes_out 0 159436 bytes_in 0 159436 station_ip 83.122.133.159 159436 port 648 159436 unique_id port 159436 remote_ip 10.8.0.182 159438 username hashtadani4 159438 mac 159438 bytes_out 0 159438 bytes_in 0 159438 station_ip 83.122.133.159 159438 port 648 159438 unique_id port 159438 remote_ip 10.8.0.182 159441 username farhad2 159441 kill_reason Another user logged on this global unique id 159441 mac 159441 bytes_out 0 159441 bytes_in 0 159441 station_ip 5.120.81.92 159441 port 646 159441 unique_id port 159442 username hashtadani4 159442 mac 159442 bytes_out 0 159442 bytes_in 0 159442 station_ip 83.122.133.159 159442 port 648 159442 unique_id port 159442 remote_ip 10.8.0.182 159445 username meysam 159445 kill_reason Another user logged on this global unique id 159445 mac 159445 bytes_out 0 159445 bytes_in 0 159445 station_ip 188.159.251.22 159445 port 609 159445 unique_id port 159446 username hashtadani4 159446 mac 159446 bytes_out 0 159446 bytes_in 0 159446 station_ip 83.122.133.159 159446 port 648 159446 unique_id port 159446 remote_ip 10.8.0.182 159450 username hashtadani4 159450 mac 159450 bytes_out 0 159450 bytes_in 0 159450 station_ip 83.122.133.159 159450 port 648 159450 unique_id port 159450 remote_ip 10.8.0.182 159452 username barzegar 159452 mac 159452 bytes_out 0 159452 bytes_in 0 159452 station_ip 5.119.251.3 159452 port 648 159452 unique_id port 159452 remote_ip 10.8.0.234 159454 username hashtadani4 159454 mac 159454 bytes_out 0 159454 bytes_in 0 159454 station_ip 83.122.133.159 159454 port 336 159454 unique_id port 159454 remote_ip 10.8.1.142 159457 username hashtadani4 159457 mac 159457 bytes_out 0 159457 bytes_in 0 159457 station_ip 83.122.133.159 159457 port 647 159457 unique_id port 159457 remote_ip 10.8.0.182 159460 username hashtadani4 159460 mac 159460 bytes_out 0 159460 bytes_in 0 159460 station_ip 83.122.133.159 159460 port 336 159460 unique_id port 159460 remote_ip 10.8.1.142 159467 username sabaghnezhad 159467 mac 159467 bytes_out 76537 159467 bytes_in 189407 159467 station_ip 83.122.214.143 159467 port 645 159467 unique_id port 159467 remote_ip 10.8.0.186 159468 username hashtadani4 159468 kill_reason Maximum check online fails reached 159468 mac 159468 bytes_out 0 159468 bytes_in 0 159468 station_ip 83.122.133.159 159468 port 336 159468 unique_id port 159470 username farhad2 159470 mac 159470 bytes_out 0 159470 bytes_in 0 159470 station_ip 5.120.81.92 159470 port 646 159470 unique_id port 159473 username hashtadani4 159473 mac 159473 bytes_out 0 159473 bytes_in 0 159473 station_ip 83.122.133.159 159473 port 650 159473 unique_id port 159473 remote_ip 10.8.0.182 159474 username godarzi 159474 mac 159474 bytes_out 0 159474 bytes_in 0 159474 station_ip 5.202.13.180 159474 port 325 159474 unique_id port 159475 username hashtadani4 159475 mac 159475 bytes_out 8488 159475 bytes_in 16274 159475 station_ip 83.122.133.159 159475 port 325 159475 unique_id port 159475 remote_ip 10.8.1.142 159476 username aminvpn 159476 mac 159476 bytes_out 4124069 159476 bytes_in 17061262 159476 station_ip 83.122.88.128 159476 port 334 159476 unique_id port 159476 remote_ip 10.8.1.6 159479 username hashtadani4 159479 mac 159479 bytes_out 0 159479 bytes_in 0 159479 station_ip 83.122.133.159 159479 port 325 159479 unique_id port 159479 remote_ip 10.8.1.142 159486 username barzegar 159486 mac 159486 bytes_out 0 159486 bytes_in 0 159486 station_ip 5.119.251.3 159486 port 652 159486 unique_id port 159486 remote_ip 10.8.0.234 159488 username farhad2 159488 mac 159488 bytes_out 177138 159488 bytes_in 703787 159488 station_ip 5.120.81.92 159488 port 646 159488 unique_id port 159488 remote_ip 10.8.0.190 159494 username hashtadani4 159494 mac 159494 bytes_out 0 159494 bytes_in 0 159494 station_ip 83.122.133.159 159494 port 609 159494 unique_id port 159494 remote_ip 10.8.0.182 159498 username hashtadani4 159498 mac 159498 bytes_out 0 159498 bytes_in 0 159498 station_ip 83.122.133.159 159498 port 609 159498 unique_id port 159498 remote_ip 10.8.0.182 159500 username alikomsari 159500 kill_reason Maximum number of concurrent logins reached 159500 mac 159500 bytes_out 0 159500 bytes_in 0 159500 station_ip 5.120.69.200 159500 port 646 159500 unique_id port 159502 username alikomsari 159502 mac 159502 bytes_out 908397 159502 bytes_in 4674649 159502 station_ip 5.120.69.200 159502 port 647 159502 unique_id port 159502 remote_ip 10.8.0.26 159504 username hashtadani4 159504 mac 159504 bytes_out 0 159504 bytes_in 0 159504 station_ip 83.122.133.159 159504 port 609 159504 unique_id port 159504 remote_ip 10.8.0.182 159510 username hashtadani4 159510 mac 159510 bytes_out 0 159510 bytes_in 0 159510 station_ip 83.122.133.159 159510 port 609 159510 unique_id port 159510 remote_ip 10.8.0.182 159513 username hashtadani4 159513 mac 159513 bytes_out 0 159513 bytes_in 0 159513 station_ip 83.122.133.159 159513 port 609 159513 unique_id port 159513 remote_ip 10.8.0.182 159514 username hashtadani4 159514 mac 159514 bytes_out 0 159514 bytes_in 0 159514 station_ip 83.122.133.159 159514 port 334 159514 unique_id port 159514 remote_ip 10.8.1.142 159518 username barzegar 159518 mac 159518 bytes_out 0 159518 bytes_in 0 159518 station_ip 5.119.251.3 159518 port 646 159518 unique_id port 159518 remote_ip 10.8.0.234 159521 username hashtadani4 159521 mac 159521 bytes_out 0 159521 bytes_in 0 159521 station_ip 83.122.133.159 159521 port 609 159521 unique_id port 159521 remote_ip 10.8.0.182 159524 username hashtadani4 159524 mac 159524 bytes_out 0 159524 bytes_in 0 159524 station_ip 83.122.133.159 159524 port 334 159524 unique_id port 159524 remote_ip 10.8.1.142 159478 username farhad2 159478 mac 159478 bytes_out 505155 159478 bytes_in 5534816 159478 station_ip 5.120.81.92 159478 port 646 159478 unique_id port 159478 remote_ip 10.8.0.190 159480 username forozandeh1 159480 mac 159480 bytes_out 835572 159480 bytes_in 11555640 159480 station_ip 83.123.209.222 159480 port 650 159480 unique_id port 159480 remote_ip 10.8.0.130 159482 username hashtadani4 159482 mac 159482 bytes_out 0 159482 bytes_in 0 159482 station_ip 83.122.133.159 159482 port 609 159482 unique_id port 159482 remote_ip 10.8.0.182 159484 username sabaghnezhad 159484 mac 159484 bytes_out 52297 159484 bytes_in 53245 159484 station_ip 83.122.214.143 159484 port 645 159484 unique_id port 159484 remote_ip 10.8.0.186 159490 username hashtadani4 159490 mac 159490 bytes_out 0 159490 bytes_in 0 159490 station_ip 83.122.133.159 159490 port 646 159490 unique_id port 159490 remote_ip 10.8.0.182 159493 username hashtadani4 159493 mac 159493 bytes_out 0 159493 bytes_in 0 159493 station_ip 83.122.133.159 159493 port 334 159493 unique_id port 159493 remote_ip 10.8.1.142 159496 username hashtadani4 159496 mac 159496 bytes_out 0 159496 bytes_in 0 159496 station_ip 83.122.133.159 159496 port 334 159496 unique_id port 159496 remote_ip 10.8.1.142 159497 username hashtadani4 159497 mac 159497 bytes_out 0 159497 bytes_in 0 159497 station_ip 83.122.133.159 159497 port 609 159497 unique_id port 159497 remote_ip 10.8.0.182 159501 username hashtadani4 159501 mac 159501 bytes_out 0 159501 bytes_in 0 159501 station_ip 83.122.133.159 159501 port 609 159501 unique_id port 159501 remote_ip 10.8.0.182 159503 username hashtadani4 159503 mac 159503 bytes_out 0 159503 bytes_in 0 159503 station_ip 83.122.133.159 159503 port 609 159503 unique_id port 159503 remote_ip 10.8.0.182 159505 username barzegar 159505 mac 159505 bytes_out 0 159505 bytes_in 0 159505 station_ip 5.119.251.3 159505 port 609 159505 unique_id port 159505 remote_ip 10.8.0.234 159507 username hashtadani4 159507 mac 159507 bytes_out 0 159507 bytes_in 0 159507 station_ip 83.122.133.159 159507 port 609 159507 unique_id port 159507 remote_ip 10.8.0.182 159509 username hashtadani4 159509 mac 159509 bytes_out 0 159509 bytes_in 0 159509 station_ip 83.122.133.159 159509 port 609 159509 unique_id port 159509 remote_ip 10.8.0.182 159512 username farhad2 159512 kill_reason Another user logged on this global unique id 159512 mac 159512 bytes_out 0 159512 bytes_in 0 159512 station_ip 5.120.81.92 159512 port 632 159512 unique_id port 159512 remote_ip 10.8.0.190 159516 username hashtadani4 159516 mac 159516 bytes_out 0 159516 bytes_in 0 159516 station_ip 83.122.133.159 159516 port 609 159516 unique_id port 159516 remote_ip 10.8.0.182 159519 username khademi 159519 kill_reason Another user logged on this global unique id 159519 mac 159519 bytes_out 0 159519 bytes_in 0 159519 station_ip 113.203.78.111 159519 port 614 159519 unique_id port 159520 username hashtadani4 159520 mac 159520 bytes_out 0 159520 bytes_in 0 159520 station_ip 83.122.133.159 159520 port 609 159520 unique_id port 159520 remote_ip 10.8.0.182 159530 username hashtadani4 159530 mac 159530 bytes_out 0 159530 bytes_in 0 159530 station_ip 83.122.133.159 159530 port 325 159530 unique_id port 159530 remote_ip 10.8.1.142 159541 username godarzi 159541 mac 159541 bytes_out 0 159541 bytes_in 0 159541 station_ip 5.202.13.180 159541 port 334 159541 unique_id port 159483 remote_ip 10.8.0.182 159485 username mosi 159485 mac 159485 bytes_out 1832 159485 bytes_in 4453 159485 station_ip 151.235.89.191 159485 port 655 159485 unique_id port 159485 remote_ip 10.8.0.138 159487 username alipour 159487 mac 159487 bytes_out 0 159487 bytes_in 0 159487 station_ip 83.122.235.114 159487 port 632 159487 unique_id port 159489 username hashtadani4 159489 mac 159489 bytes_out 0 159489 bytes_in 0 159489 station_ip 83.122.133.159 159489 port 650 159489 unique_id port 159489 remote_ip 10.8.0.182 159491 username vanila 159491 mac 159491 bytes_out 0 159491 bytes_in 0 159491 station_ip 113.203.16.122 159491 port 609 159491 unique_id port 159491 remote_ip 10.8.0.178 159492 username hashtadani4 159492 mac 159492 bytes_out 0 159492 bytes_in 0 159492 station_ip 83.122.133.159 159492 port 609 159492 unique_id port 159492 remote_ip 10.8.0.182 159495 username hashtadani4 159495 mac 159495 bytes_out 0 159495 bytes_in 0 159495 station_ip 83.122.133.159 159495 port 609 159495 unique_id port 159495 remote_ip 10.8.0.182 159499 username hashtadani4 159499 mac 159499 bytes_out 0 159499 bytes_in 0 159499 station_ip 83.122.133.159 159499 port 609 159499 unique_id port 159499 remote_ip 10.8.0.182 159506 username hashtadani4 159506 mac 159506 bytes_out 0 159506 bytes_in 0 159506 station_ip 83.122.133.159 159506 port 646 159506 unique_id port 159506 remote_ip 10.8.0.182 159508 username hashtadani4 159508 mac 159508 bytes_out 0 159508 bytes_in 0 159508 station_ip 83.122.133.159 159508 port 609 159508 unique_id port 159508 remote_ip 10.8.0.182 159511 username hashtadani4 159511 mac 159511 bytes_out 0 159511 bytes_in 0 159511 station_ip 83.122.133.159 159511 port 609 159511 unique_id port 159511 remote_ip 10.8.0.182 159515 username hashtadani4 159515 mac 159515 bytes_out 0 159515 bytes_in 0 159515 station_ip 83.122.133.159 159515 port 609 159515 unique_id port 159515 remote_ip 10.8.0.182 159517 username hashtadani4 159517 mac 159517 bytes_out 0 159517 bytes_in 0 159517 station_ip 83.122.133.159 159517 port 609 159517 unique_id port 159517 remote_ip 10.8.0.182 159522 username hashtadani4 159522 mac 159522 bytes_out 0 159522 bytes_in 0 159522 station_ip 83.122.133.159 159522 port 609 159522 unique_id port 159522 remote_ip 10.8.0.182 159523 username hatami 159523 mac 159523 bytes_out 0 159523 bytes_in 0 159523 station_ip 94.241.175.204 159523 port 653 159523 unique_id port 159523 remote_ip 10.8.0.106 159525 username hashtadani4 159525 mac 159525 bytes_out 0 159525 bytes_in 0 159525 station_ip 83.122.133.159 159525 port 609 159525 unique_id port 159525 remote_ip 10.8.0.182 159526 username hashtadani4 159526 mac 159526 bytes_out 0 159526 bytes_in 0 159526 station_ip 83.122.133.159 159526 port 609 159526 unique_id port 159526 remote_ip 10.8.0.182 159528 username hashtadani4 159528 mac 159528 bytes_out 0 159528 bytes_in 0 159528 station_ip 83.122.133.159 159528 port 609 159528 unique_id port 159528 remote_ip 10.8.0.182 159531 username hashtadani4 159531 mac 159531 bytes_out 0 159531 bytes_in 0 159531 station_ip 83.122.133.159 159531 port 632 159531 unique_id port 159531 remote_ip 10.8.0.182 159532 username hashtadani4 159532 kill_reason Maximum number of concurrent logins reached 159532 mac 159532 bytes_out 0 159532 bytes_in 0 159532 station_ip 83.122.133.159 159532 port 334 159532 unique_id port 159533 username hashtadani4 159527 username godarzi 159527 mac 159527 bytes_out 0 159527 bytes_in 0 159527 station_ip 5.202.13.180 159527 port 325 159527 unique_id port 159527 remote_ip 10.8.1.230 159529 username farhad2 159529 mac 159529 bytes_out 0 159529 bytes_in 0 159529 station_ip 5.120.81.92 159529 port 632 159529 unique_id port 159534 username hashtadani4 159534 mac 159534 bytes_out 0 159534 bytes_in 0 159534 station_ip 83.122.133.159 159534 port 632 159534 unique_id port 159534 remote_ip 10.8.0.182 159536 username hashtadani4 159536 kill_reason Maximum check online fails reached 159536 mac 159536 bytes_out 0 159536 bytes_in 0 159536 station_ip 83.122.133.159 159536 port 325 159536 unique_id port 159537 username barzegar 159537 mac 159537 bytes_out 0 159537 bytes_in 0 159537 station_ip 5.119.251.3 159537 port 632 159537 unique_id port 159537 remote_ip 10.8.0.234 159538 username shadkam 159538 mac 159538 bytes_out 0 159538 bytes_in 0 159538 station_ip 83.122.105.246 159538 port 334 159538 unique_id port 159538 remote_ip 10.8.1.218 159539 username barzegar 159539 mac 159539 bytes_out 0 159539 bytes_in 0 159539 station_ip 5.119.251.3 159539 port 646 159539 unique_id port 159539 remote_ip 10.8.0.234 159540 username mohammadjavad 159540 mac 159540 bytes_out 123813 159540 bytes_in 897392 159540 station_ip 83.122.3.218 159540 port 632 159540 unique_id port 159540 remote_ip 10.8.0.142 159545 username barzegar 159545 mac 159545 bytes_out 0 159545 bytes_in 0 159545 station_ip 5.119.251.3 159545 port 339 159545 unique_id port 159545 remote_ip 10.8.1.174 159547 username mohammadjavad 159547 mac 159547 bytes_out 0 159547 bytes_in 0 159547 station_ip 83.122.77.93 159547 port 632 159547 unique_id port 159547 remote_ip 10.8.0.142 159549 username barzegar 159549 mac 159549 bytes_out 0 159549 bytes_in 0 159549 station_ip 5.119.251.3 159549 port 334 159549 unique_id port 159549 remote_ip 10.8.1.174 159552 username saeed9658 159552 mac 159552 bytes_out 0 159552 bytes_in 0 159552 station_ip 5.120.106.205 159552 port 339 159552 unique_id port 159552 remote_ip 10.8.1.210 159554 username barzegar 159554 mac 159554 bytes_out 0 159554 bytes_in 0 159554 station_ip 5.119.251.3 159554 port 646 159554 unique_id port 159554 remote_ip 10.8.0.234 159557 username shadkam 159557 mac 159557 bytes_out 0 159557 bytes_in 0 159557 station_ip 113.203.27.37 159557 port 339 159557 unique_id port 159557 remote_ip 10.8.1.218 159559 username farhad2 159559 mac 159559 bytes_out 2115297 159559 bytes_in 26088935 159559 station_ip 5.120.81.92 159559 port 609 159559 unique_id port 159559 remote_ip 10.8.0.190 159563 username sabaghnezhad 159563 mac 159563 bytes_out 0 159563 bytes_in 0 159563 station_ip 83.122.214.143 159563 port 652 159563 unique_id port 159563 remote_ip 10.8.0.186 159565 username mosi 159565 mac 159565 bytes_out 1840 159565 bytes_in 4658 159565 station_ip 5.200.114.107 159565 port 652 159565 unique_id port 159565 remote_ip 10.8.0.138 159566 username barzegar 159566 mac 159566 bytes_out 0 159566 bytes_in 0 159566 station_ip 5.119.251.3 159566 port 339 159566 unique_id port 159566 remote_ip 10.8.1.174 159570 username hatami 159570 mac 159570 bytes_out 99182 159570 bytes_in 355300 159570 station_ip 94.241.175.204 159570 port 646 159570 unique_id port 159570 remote_ip 10.8.0.106 159575 username barzegar 159575 mac 159575 bytes_out 25757 159575 bytes_in 47558 159533 kill_reason Maximum number of concurrent logins reached 159533 mac 159533 bytes_out 0 159533 bytes_in 0 159533 station_ip 83.122.133.159 159533 port 646 159533 unique_id port 159535 username khademi 159535 kill_reason Maximum check online fails reached 159535 mac 159535 bytes_out 0 159535 bytes_in 0 159535 station_ip 113.203.78.111 159535 port 614 159535 unique_id port 159542 username forozandeh1 159542 mac 159542 bytes_out 407980 159542 bytes_in 4502378 159542 station_ip 113.203.17.151 159542 port 646 159542 unique_id port 159542 remote_ip 10.8.0.130 159544 username farhad2 159544 mac 159544 bytes_out 0 159544 bytes_in 0 159544 station_ip 5.120.81.92 159544 port 609 159544 unique_id port 159544 remote_ip 10.8.0.190 159546 username shadkam 159546 mac 159546 bytes_out 342205 159546 bytes_in 334994 159546 station_ip 83.123.2.16 159546 port 334 159546 unique_id port 159546 remote_ip 10.8.1.218 159553 username farhad2 159553 mac 159553 bytes_out 765899 159553 bytes_in 5018269 159553 station_ip 5.120.81.92 159553 port 609 159553 unique_id port 159553 remote_ip 10.8.0.190 159556 username shadkam 159556 mac 159556 bytes_out 26229 159556 bytes_in 44749 159556 station_ip 113.203.27.37 159556 port 339 159556 unique_id port 159556 remote_ip 10.8.1.218 159558 username barzegar 159558 mac 159558 bytes_out 0 159558 bytes_in 0 159558 station_ip 5.119.251.3 159558 port 341 159558 unique_id port 159558 remote_ip 10.8.1.174 159564 username shadkam 159564 mac 159564 bytes_out 0 159564 bytes_in 0 159564 station_ip 113.203.27.37 159564 port 632 159564 unique_id port 159564 remote_ip 10.8.0.62 159567 username farhad2 159567 mac 159567 bytes_out 1860994 159567 bytes_in 23966407 159567 station_ip 5.120.81.92 159567 port 609 159567 unique_id port 159567 remote_ip 10.8.0.190 159572 username godarzi 159572 kill_reason Another user logged on this global unique id 159572 mac 159572 bytes_out 0 159572 bytes_in 0 159572 station_ip 5.202.13.180 159572 port 334 159572 unique_id port 159576 username barzegar 159576 mac 159576 bytes_out 0 159576 bytes_in 0 159576 station_ip 5.119.251.3 159576 port 341 159576 unique_id port 159576 remote_ip 10.8.1.174 159580 username hashtadani4 159580 mac 159580 bytes_out 0 159580 bytes_in 0 159580 station_ip 83.123.27.254 159580 port 342 159580 unique_id port 159580 remote_ip 10.8.1.142 159583 username hashtadani4 159583 kill_reason Maximum number of concurrent logins reached 159583 mac 159583 bytes_out 0 159583 bytes_in 0 159583 station_ip 83.123.27.254 159583 port 652 159583 unique_id port 159587 username farhad2 159587 mac 159587 bytes_out 0 159587 bytes_in 0 159587 station_ip 5.120.81.92 159587 port 609 159587 unique_id port 159587 remote_ip 10.8.0.190 159588 username saeed9658 159588 mac 159588 bytes_out 1868518 159588 bytes_in 21894867 159588 station_ip 5.119.105.59 159588 port 614 159588 unique_id port 159588 remote_ip 10.8.0.166 159592 username sedighe 159592 mac 159592 bytes_out 0 159592 bytes_in 0 159592 station_ip 83.122.117.15 159592 port 652 159592 unique_id port 159592 remote_ip 10.8.0.146 159594 username tahmasebi 159594 mac 159594 bytes_out 0 159594 bytes_in 0 159594 station_ip 5.119.74.98 159594 port 614 159594 unique_id port 159594 remote_ip 10.8.0.42 159596 username nilufarrajaei 159596 mac 159596 bytes_out 1052604 159596 bytes_in 8878271 159596 station_ip 83.123.125.10 159596 port 650 159596 unique_id port 159596 remote_ip 10.8.0.206 159541 remote_ip 10.8.1.230 159543 username barzegar 159543 mac 159543 bytes_out 0 159543 bytes_in 0 159543 station_ip 5.119.251.3 159543 port 632 159543 unique_id port 159543 remote_ip 10.8.0.234 159548 username meysam 159548 mac 159548 bytes_out 662910 159548 bytes_in 9481123 159548 station_ip 188.159.251.22 159548 port 632 159548 unique_id port 159548 remote_ip 10.8.0.110 159550 username saeed9658 159550 mac 159550 bytes_out 0 159550 bytes_in 0 159550 station_ip 5.120.106.205 159550 port 339 159550 unique_id port 159550 remote_ip 10.8.1.210 159551 username forozandeh1 159551 mac 159551 bytes_out 181671 159551 bytes_in 296522 159551 station_ip 83.122.114.37 159551 port 646 159551 unique_id port 159551 remote_ip 10.8.0.130 159555 username barzegar 159555 mac 159555 bytes_out 0 159555 bytes_in 0 159555 station_ip 5.119.251.3 159555 port 341 159555 unique_id port 159555 remote_ip 10.8.1.174 159560 username shadkam 159560 mac 159560 bytes_out 0 159560 bytes_in 0 159560 station_ip 113.203.27.37 159560 port 339 159560 unique_id port 159560 remote_ip 10.8.1.218 159561 username sabaghnezhad 159561 mac 159561 bytes_out 98461 159561 bytes_in 95319 159561 station_ip 83.122.214.143 159561 port 632 159561 unique_id port 159561 remote_ip 10.8.0.186 159562 username godarzi 159562 kill_reason Another user logged on this global unique id 159562 mac 159562 bytes_out 0 159562 bytes_in 0 159562 station_ip 5.202.13.180 159562 port 334 159562 unique_id port 159562 remote_ip 10.8.1.230 159568 username mohammadjavad 159568 mac 159568 bytes_out 130020 159568 bytes_in 563911 159568 station_ip 37.129.19.74 159568 port 653 159568 unique_id port 159568 remote_ip 10.8.0.142 159569 username farhad2 159569 mac 159569 bytes_out 0 159569 bytes_in 0 159569 station_ip 5.120.81.92 159569 port 609 159569 unique_id port 159569 remote_ip 10.8.0.190 159571 username shadkam 159571 mac 159571 bytes_out 0 159571 bytes_in 0 159571 station_ip 83.122.223.124 159571 port 609 159571 unique_id port 159571 remote_ip 10.8.0.62 159573 username saeed9658 159573 mac 159573 bytes_out 0 159573 bytes_in 0 159573 station_ip 5.119.105.59 159573 port 632 159573 unique_id port 159573 remote_ip 10.8.0.166 159574 username farhad2 159574 mac 159574 bytes_out 0 159574 bytes_in 0 159574 station_ip 5.120.81.92 159574 port 614 159574 unique_id port 159574 remote_ip 10.8.0.190 159577 username pourshad 159577 kill_reason Another user logged on this global unique id 159577 mac 159577 bytes_out 0 159577 bytes_in 0 159577 station_ip 5.120.128.181 159577 port 328 159577 unique_id port 159577 remote_ip 10.8.1.154 159585 username hashtadani4 159585 mac 159585 bytes_out 364897 159585 bytes_in 1384965 159585 station_ip 83.123.27.254 159585 port 646 159585 unique_id port 159585 remote_ip 10.8.0.182 159586 username hashtadani4 159586 kill_reason Maximum check online fails reached 159586 mac 159586 bytes_out 0 159586 bytes_in 0 159586 station_ip 83.123.27.254 159586 port 632 159586 unique_id port 159589 username farhad2 159589 mac 159589 bytes_out 375415 159589 bytes_in 2829071 159589 station_ip 5.120.81.92 159589 port 609 159589 unique_id port 159589 remote_ip 10.8.0.190 159591 username farhad2 159591 mac 159591 bytes_out 0 159591 bytes_in 0 159591 station_ip 5.120.81.92 159591 port 609 159591 unique_id port 159591 remote_ip 10.8.0.190 159598 username pourshad 159598 mac 159598 bytes_out 0 159598 bytes_in 0 159598 station_ip 5.120.128.181 159575 station_ip 5.119.251.3 159575 port 341 159575 unique_id port 159575 remote_ip 10.8.1.174 159578 username farhad2 159578 mac 159578 bytes_out 0 159578 bytes_in 0 159578 station_ip 5.120.81.92 159578 port 609 159578 unique_id port 159578 remote_ip 10.8.0.190 159579 username mohammadjavad 159579 mac 159579 bytes_out 527256 159579 bytes_in 11724199 159579 station_ip 113.203.104.245 159579 port 632 159579 unique_id port 159579 remote_ip 10.8.0.142 159581 username barzegar 159581 mac 159581 bytes_out 0 159581 bytes_in 0 159581 station_ip 5.119.251.3 159581 port 341 159581 unique_id port 159581 remote_ip 10.8.1.174 159582 username hashtadani4 159582 kill_reason Maximum number of concurrent logins reached 159582 mac 159582 bytes_out 0 159582 bytes_in 0 159582 station_ip 83.123.27.254 159582 port 652 159582 unique_id port 159584 username hashtadani4 159584 kill_reason Maximum number of concurrent logins reached 159584 mac 159584 bytes_out 0 159584 bytes_in 0 159584 station_ip 83.123.27.254 159584 port 341 159584 unique_id port 159590 username shadkam 159590 mac 159590 bytes_out 3591 159590 bytes_in 11283 159590 station_ip 83.122.228.90 159590 port 614 159590 unique_id port 159590 remote_ip 10.8.0.62 159593 username barzegar 159593 mac 159593 bytes_out 0 159593 bytes_in 0 159593 station_ip 5.119.251.3 159593 port 341 159593 unique_id port 159593 remote_ip 10.8.1.174 159595 username tahmasebi 159595 mac 159595 bytes_out 0 159595 bytes_in 0 159595 station_ip 5.119.74.98 159595 port 341 159595 unique_id port 159595 remote_ip 10.8.1.90 159597 username mohammadjavad 159597 mac 159597 bytes_out 1492946 159597 bytes_in 33650307 159597 station_ip 113.203.76.18 159597 port 646 159597 unique_id port 159597 remote_ip 10.8.0.142 159600 username alipour 159600 mac 159600 bytes_out 291699 159600 bytes_in 1787642 159600 station_ip 83.122.235.114 159600 port 645 159600 unique_id port 159600 remote_ip 10.8.0.102 159603 username barzegar 159603 mac 159603 bytes_out 10102 159603 bytes_in 24183 159603 station_ip 5.119.251.3 159603 port 646 159603 unique_id port 159603 remote_ip 10.8.0.234 159605 username Mahin 159605 mac 159605 bytes_out 0 159605 bytes_in 0 159605 station_ip 5.119.34.171 159605 port 650 159605 unique_id port 159605 remote_ip 10.8.0.162 159609 username Mahin 159609 mac 159609 bytes_out 0 159609 bytes_in 0 159609 station_ip 5.119.34.171 159609 port 645 159609 unique_id port 159609 remote_ip 10.8.0.162 159617 username barzegar 159617 mac 159617 bytes_out 501054 159617 bytes_in 3421143 159617 station_ip 5.119.251.3 159617 port 650 159617 unique_id port 159617 remote_ip 10.8.0.234 159623 username khademi 159623 mac 159623 bytes_out 214707 159623 bytes_in 848442 159623 station_ip 113.203.78.111 159623 port 339 159623 unique_id port 159623 remote_ip 10.8.1.242 159631 username hashtadani4 159631 mac 159631 bytes_out 517733 159631 bytes_in 5515861 159631 station_ip 83.123.27.254 159631 port 645 159631 unique_id port 159631 remote_ip 10.8.0.182 159634 username vanila 159634 mac 159634 bytes_out 266420 159634 bytes_in 817143 159634 station_ip 83.123.123.235 159634 port 646 159634 unique_id port 159634 remote_ip 10.8.0.178 159637 username tahmasebi 159637 mac 159637 bytes_out 722767 159637 bytes_in 8962128 159637 station_ip 5.119.74.98 159637 port 328 159637 unique_id port 159637 remote_ip 10.8.1.90 159638 username meysam 159638 kill_reason Another user logged on this global unique id 159638 mac 159598 port 328 159598 unique_id port 159604 username Mahin 159604 mac 159604 bytes_out 24610 159604 bytes_in 66268 159604 station_ip 5.119.34.171 159604 port 645 159604 unique_id port 159604 remote_ip 10.8.0.162 159606 username alikomsari 159606 kill_reason Another user logged on this global unique id 159606 mac 159606 bytes_out 0 159606 bytes_in 0 159606 station_ip 5.120.69.200 159606 port 647 159606 unique_id port 159608 username tahmasebi 159608 mac 159608 bytes_out 503250 159608 bytes_in 3469413 159608 station_ip 5.119.74.98 159608 port 342 159608 unique_id port 159608 remote_ip 10.8.1.90 159613 username moradi 159613 mac 159613 bytes_out 0 159613 bytes_in 0 159613 station_ip 46.225.213.252 159613 port 609 159613 unique_id port 159613 remote_ip 10.8.0.226 159615 username shadkam 159615 mac 159615 bytes_out 0 159615 bytes_in 0 159615 station_ip 37.129.62.132 159615 port 653 159615 unique_id port 159615 remote_ip 10.8.0.62 159618 username nilufarrajaei 159618 mac 159618 bytes_out 0 159618 bytes_in 0 159618 station_ip 83.123.125.10 159618 port 609 159618 unique_id port 159618 remote_ip 10.8.0.206 159620 username kalantary 159620 mac 159620 bytes_out 0 159620 bytes_in 0 159620 station_ip 83.123.200.78 159620 port 614 159620 unique_id port 159620 remote_ip 10.8.0.98 159621 username alikomsari 159621 kill_reason Another user logged on this global unique id 159621 mac 159621 bytes_out 0 159621 bytes_in 0 159621 station_ip 5.120.69.200 159621 port 647 159621 unique_id port 159622 username meysam 159622 mac 159622 bytes_out 2858245 159622 bytes_in 44532619 159622 station_ip 188.159.252.191 159622 port 646 159622 unique_id port 159622 remote_ip 10.8.0.110 159624 username hosseine 159624 mac 159624 bytes_out 0 159624 bytes_in 0 159624 station_ip 83.123.105.75 159624 port 653 159624 unique_id port 159624 remote_ip 10.8.0.238 159626 username tahmasebi 159626 mac 159626 bytes_out 0 159626 bytes_in 0 159626 station_ip 5.119.74.98 159626 port 328 159626 unique_id port 159626 remote_ip 10.8.1.90 159627 username godarzi 159627 mac 159627 bytes_out 0 159627 bytes_in 0 159627 station_ip 5.202.13.180 159627 port 334 159627 unique_id port 159627 remote_ip 10.8.1.230 159640 username vanila 159640 mac 159640 bytes_out 0 159640 bytes_in 0 159640 station_ip 83.123.123.235 159640 port 645 159640 unique_id port 159640 remote_ip 10.8.0.178 159641 username tahmasebi 159641 mac 159641 bytes_out 0 159641 bytes_in 0 159641 station_ip 5.119.74.98 159641 port 328 159641 unique_id port 159641 remote_ip 10.8.1.90 159642 username nilufarrajaei 159642 mac 159642 bytes_out 108749 159642 bytes_in 115661 159642 station_ip 83.123.125.10 159642 port 646 159642 unique_id port 159642 remote_ip 10.8.0.206 159646 username nilufarrajaei 159646 mac 159646 bytes_out 15931 159646 bytes_in 20471 159646 station_ip 83.123.125.10 159646 port 656 159646 unique_id port 159646 remote_ip 10.8.0.206 159648 username meysam 159648 kill_reason Another user logged on this global unique id 159648 mac 159648 bytes_out 0 159648 bytes_in 0 159648 station_ip 188.159.252.191 159648 port 653 159648 unique_id port 159650 username mehdizare 159650 mac 159650 bytes_out 0 159650 bytes_in 0 159650 station_ip 83.122.87.157 159650 port 646 159650 unique_id port 159650 remote_ip 10.8.0.90 159651 username hashtadani4 159651 mac 159651 bytes_out 0 159651 bytes_in 0 159651 station_ip 83.122.147.98 159651 port 646 159651 unique_id port 159599 username barzegar 159599 mac 159599 bytes_out 0 159599 bytes_in 0 159599 station_ip 5.119.251.3 159599 port 646 159599 unique_id port 159599 remote_ip 10.8.0.234 159601 username alikomsari 159601 kill_reason Another user logged on this global unique id 159601 mac 159601 bytes_out 0 159601 bytes_in 0 159601 station_ip 5.120.69.200 159601 port 647 159601 unique_id port 159601 remote_ip 10.8.0.26 159602 username alipour 159602 mac 159602 bytes_out 0 159602 bytes_in 0 159602 station_ip 83.122.235.114 159602 port 328 159602 unique_id port 159602 remote_ip 10.8.1.50 159607 username godarzi 159607 kill_reason Another user logged on this global unique id 159607 mac 159607 bytes_out 0 159607 bytes_in 0 159607 station_ip 5.202.13.180 159607 port 334 159607 unique_id port 159610 username tahmasebi 159610 mac 159610 bytes_out 0 159610 bytes_in 0 159610 station_ip 5.119.74.98 159610 port 342 159610 unique_id port 159610 remote_ip 10.8.1.90 159611 username alipour 159611 mac 159611 bytes_out 64497 159611 bytes_in 198935 159611 station_ip 83.122.235.114 159611 port 328 159611 unique_id port 159611 remote_ip 10.8.1.50 159612 username tahmasebi 159612 mac 159612 bytes_out 0 159612 bytes_in 0 159612 station_ip 5.119.74.98 159612 port 342 159612 unique_id port 159612 remote_ip 10.8.1.90 159614 username godarzi 159614 mac 159614 bytes_out 0 159614 bytes_in 0 159614 station_ip 5.202.13.180 159614 port 334 159614 unique_id port 159616 username nilufarrajaei 159616 mac 159616 bytes_out 861786 159616 bytes_in 4491090 159616 station_ip 83.123.125.10 159616 port 614 159616 unique_id port 159616 remote_ip 10.8.0.206 159619 username alipour 159619 mac 159619 bytes_out 169893 159619 bytes_in 111937 159619 station_ip 83.122.235.114 159619 port 645 159619 unique_id port 159619 remote_ip 10.8.0.102 159625 username mohammadjavad 159625 mac 159625 bytes_out 1158865 159625 bytes_in 23460816 159625 station_ip 37.129.39.111 159625 port 645 159625 unique_id port 159625 remote_ip 10.8.0.142 159628 username mehdizare 159628 mac 159628 bytes_out 0 159628 bytes_in 0 159628 station_ip 83.122.87.157 159628 port 643 159628 unique_id port 159628 remote_ip 10.8.0.90 159629 username barzegar 159629 mac 159629 bytes_out 356517 159629 bytes_in 2140490 159629 station_ip 5.119.251.3 159629 port 614 159629 unique_id port 159629 remote_ip 10.8.0.234 159630 username nilufarrajaei 159630 mac 159630 bytes_out 254308 159630 bytes_in 823970 159630 station_ip 83.123.125.10 159630 port 609 159630 unique_id port 159630 remote_ip 10.8.0.206 159632 username pourshad 159632 mac 159632 bytes_out 0 159632 bytes_in 0 159632 station_ip 5.120.128.181 159632 port 341 159632 unique_id port 159632 remote_ip 10.8.1.154 159633 username nilufarrajaei 159633 mac 159633 bytes_out 0 159633 bytes_in 0 159633 station_ip 83.123.125.10 159633 port 656 159633 unique_id port 159633 remote_ip 10.8.0.206 159635 username mohsenaskari 159635 mac 159635 bytes_out 41647 159635 bytes_in 116488 159635 station_ip 46.225.212.232 159635 port 614 159635 unique_id port 159635 remote_ip 10.8.0.170 159636 username nilufarrajaei 159636 mac 159636 bytes_out 0 159636 bytes_in 0 159636 station_ip 83.123.125.10 159636 port 645 159636 unique_id port 159636 remote_ip 10.8.0.206 159639 username barzegar 159639 mac 159639 bytes_out 2643 159639 bytes_in 4463 159639 station_ip 5.119.251.3 159639 port 614 159639 unique_id port 159639 remote_ip 10.8.0.234 159638 bytes_out 0 159638 bytes_in 0 159638 station_ip 188.159.252.191 159638 port 653 159638 unique_id port 159638 remote_ip 10.8.0.110 159643 username tahmasebi 159643 mac 159643 bytes_out 0 159643 bytes_in 0 159643 station_ip 5.119.74.98 159643 port 328 159643 unique_id port 159643 remote_ip 10.8.1.90 159644 username hashtadani4 159644 mac 159644 bytes_out 13418 159644 bytes_in 33373 159644 station_ip 83.122.147.98 159644 port 645 159644 unique_id port 159644 remote_ip 10.8.0.182 159649 username mehdizare 159649 mac 159649 bytes_out 14210 159649 bytes_in 18246 159649 station_ip 83.122.87.157 159649 port 643 159649 unique_id port 159649 remote_ip 10.8.0.90 159652 username godarzi 159652 mac 159652 bytes_out 0 159652 bytes_in 0 159652 station_ip 5.202.13.180 159652 port 334 159652 unique_id port 159652 remote_ip 10.8.1.230 159655 username tahmasebi 159655 mac 159655 bytes_out 0 159655 bytes_in 0 159655 station_ip 5.119.74.98 159655 port 328 159655 unique_id port 159655 remote_ip 10.8.1.90 159657 username tahmasebi 159657 mac 159657 bytes_out 0 159657 bytes_in 0 159657 station_ip 5.119.74.98 159657 port 328 159657 unique_id port 159657 remote_ip 10.8.1.90 159658 username tahmasebi 159658 mac 159658 bytes_out 0 159658 bytes_in 0 159658 station_ip 5.119.74.98 159658 port 328 159658 unique_id port 159658 remote_ip 10.8.1.90 159659 username khalili 159659 kill_reason Another user logged on this global unique id 159659 mac 159659 bytes_out 0 159659 bytes_in 0 159659 station_ip 5.119.240.171 159659 port 340 159659 unique_id port 159659 remote_ip 10.8.1.18 159664 username hashtadani4 159664 mac 159664 bytes_out 0 159664 bytes_in 0 159664 station_ip 83.122.147.98 159664 port 643 159664 unique_id port 159664 remote_ip 10.8.0.182 159668 username hashtadani4 159668 mac 159668 bytes_out 0 159668 bytes_in 0 159668 station_ip 83.122.147.98 159668 port 614 159668 unique_id port 159668 remote_ip 10.8.0.182 159669 username nilufarrajaei 159669 mac 159669 bytes_out 9430 159669 bytes_in 13412 159669 station_ip 83.123.125.10 159669 port 645 159669 unique_id port 159669 remote_ip 10.8.0.206 159671 username barzegar 159671 mac 159671 bytes_out 9961 159671 bytes_in 9948 159671 station_ip 5.119.251.3 159671 port 643 159671 unique_id port 159671 remote_ip 10.8.0.234 159675 username nilufarrajaei 159675 kill_reason Maximum number of concurrent logins reached 159675 mac 159675 bytes_out 0 159675 bytes_in 0 159675 station_ip 83.123.125.10 159675 port 645 159675 unique_id port 159676 username hashtadani4 159676 mac 159676 bytes_out 0 159676 bytes_in 0 159676 station_ip 83.122.147.98 159676 port 645 159676 unique_id port 159676 remote_ip 10.8.0.182 159680 username alipour 159680 mac 159680 bytes_out 38650 159680 bytes_in 42275 159680 station_ip 83.122.235.114 159680 port 650 159680 unique_id port 159680 remote_ip 10.8.0.102 159683 username tahmasebi 159683 mac 159683 bytes_out 0 159683 bytes_in 0 159683 station_ip 5.119.74.98 159683 port 614 159683 unique_id port 159683 remote_ip 10.8.0.42 159688 username sedighe 159688 mac 159688 bytes_out 56041 159688 bytes_in 67191 159688 station_ip 37.129.82.210 159688 port 653 159688 unique_id port 159688 remote_ip 10.8.0.146 159689 username sabaghnezhad 159689 mac 159689 bytes_out 34924 159689 bytes_in 35936 159689 station_ip 37.129.115.153 159689 port 657 159689 unique_id port 159689 remote_ip 10.8.0.186 159692 username barzegar 159692 mac 159645 username barzegar 159645 mac 159645 bytes_out 0 159645 bytes_in 0 159645 station_ip 5.119.251.3 159645 port 614 159645 unique_id port 159645 remote_ip 10.8.0.234 159647 username hashtadani4 159647 mac 159647 bytes_out 0 159647 bytes_in 0 159647 station_ip 83.122.147.98 159647 port 646 159647 unique_id port 159647 remote_ip 10.8.0.182 159654 username tahmasebi 159654 mac 159654 bytes_out 0 159654 bytes_in 0 159654 station_ip 5.119.74.98 159654 port 328 159654 unique_id port 159654 remote_ip 10.8.1.90 159660 username hashtadani4 159660 mac 159660 bytes_out 0 159660 bytes_in 0 159660 station_ip 83.122.147.98 159660 port 646 159660 unique_id port 159660 remote_ip 10.8.0.182 159661 username hashtadani4 159661 mac 159661 bytes_out 0 159661 bytes_in 0 159661 station_ip 83.122.147.98 159661 port 653 159661 unique_id port 159661 remote_ip 10.8.0.182 159663 username tahmasebi 159663 mac 159663 bytes_out 225684 159663 bytes_in 2888173 159663 station_ip 5.119.74.98 159663 port 328 159663 unique_id port 159663 remote_ip 10.8.1.90 159670 username nilufarrajaei 159670 mac 159670 bytes_out 0 159670 bytes_in 0 159670 station_ip 83.123.125.10 159670 port 614 159670 unique_id port 159670 remote_ip 10.8.0.206 159672 username nilufarrajaei 159672 mac 159672 bytes_out 0 159672 bytes_in 0 159672 station_ip 83.123.125.10 159672 port 645 159672 unique_id port 159672 remote_ip 10.8.0.206 159673 username nilufarrajaei 159673 kill_reason Maximum number of concurrent logins reached 159673 mac 159673 bytes_out 0 159673 bytes_in 0 159673 station_ip 83.123.125.10 159673 port 645 159673 unique_id port 159682 username tahmasebi 159682 mac 159682 bytes_out 58115 159682 bytes_in 596670 159682 station_ip 5.119.74.98 159682 port 614 159682 unique_id port 159682 remote_ip 10.8.0.42 159685 username hashtadani4 159685 mac 159685 bytes_out 0 159685 bytes_in 0 159685 station_ip 83.122.147.98 159685 port 652 159685 unique_id port 159685 remote_ip 10.8.0.182 159687 username hashtadani4 159687 mac 159687 bytes_out 0 159687 bytes_in 0 159687 station_ip 83.122.147.98 159687 port 658 159687 unique_id port 159687 remote_ip 10.8.0.182 159690 username tahmasebi 159690 mac 159690 bytes_out 1088615 159690 bytes_in 11926544 159690 station_ip 5.119.74.98 159690 port 652 159690 unique_id port 159690 remote_ip 10.8.0.42 159693 username Mahin 159693 mac 159693 bytes_out 512446 159693 bytes_in 3571199 159693 station_ip 5.119.34.171 159693 port 614 159693 unique_id port 159693 remote_ip 10.8.0.162 159699 username Mahin 159699 mac 159699 bytes_out 98195 159699 bytes_in 441903 159699 station_ip 5.119.34.171 159699 port 656 159699 unique_id port 159699 remote_ip 10.8.0.162 159703 username sedighe 159703 mac 159703 bytes_out 52573 159703 bytes_in 63325 159703 station_ip 83.123.213.241 159703 port 652 159703 unique_id port 159703 remote_ip 10.8.0.146 159707 username mohammadjavad 159707 mac 159707 bytes_out 35767 159707 bytes_in 64126 159707 station_ip 83.123.238.84 159707 port 658 159707 unique_id port 159707 remote_ip 10.8.0.142 159709 username hashtadani4 159709 mac 159709 bytes_out 0 159709 bytes_in 0 159709 station_ip 83.122.147.98 159709 port 658 159709 unique_id port 159709 remote_ip 10.8.0.182 159711 username barzegar 159711 mac 159711 bytes_out 58915 159711 bytes_in 120821 159711 station_ip 5.119.251.3 159711 port 614 159711 unique_id port 159711 remote_ip 10.8.0.234 159716 username hashtadani4 159651 remote_ip 10.8.0.182 159653 username barzegar 159653 mac 159653 bytes_out 4087 159653 bytes_in 5435 159653 station_ip 5.119.251.3 159653 port 643 159653 unique_id port 159653 remote_ip 10.8.0.234 159656 username meysam 159656 mac 159656 bytes_out 0 159656 bytes_in 0 159656 station_ip 188.159.252.191 159656 port 653 159656 unique_id port 159662 username barzegar 159662 mac 159662 bytes_out 0 159662 bytes_in 0 159662 station_ip 5.119.251.3 159662 port 643 159662 unique_id port 159662 remote_ip 10.8.0.234 159665 username Mahin 159665 kill_reason Another user logged on this global unique id 159665 mac 159665 bytes_out 0 159665 bytes_in 0 159665 station_ip 5.119.34.171 159665 port 652 159665 unique_id port 159665 remote_ip 10.8.0.162 159666 username mohammadjavad 159666 mac 159666 bytes_out 0 159666 bytes_in 0 159666 station_ip 37.129.106.4 159666 port 645 159666 unique_id port 159666 remote_ip 10.8.0.142 159667 username nilufarrajaei 159667 mac 159667 bytes_out 966083 159667 bytes_in 9662295 159667 station_ip 83.123.125.10 159667 port 614 159667 unique_id port 159667 remote_ip 10.8.0.206 159674 username tahmasebi 159674 mac 159674 bytes_out 0 159674 bytes_in 0 159674 station_ip 5.119.74.98 159674 port 328 159674 unique_id port 159674 remote_ip 10.8.1.90 159677 username nilufarrajaei 159677 mac 159677 bytes_out 0 159677 bytes_in 0 159677 station_ip 83.123.125.10 159677 port 614 159677 unique_id port 159677 remote_ip 10.8.0.206 159678 username hashtadani4 159678 mac 159678 bytes_out 0 159678 bytes_in 0 159678 station_ip 83.122.147.98 159678 port 645 159678 unique_id port 159678 remote_ip 10.8.0.182 159679 username nilufarrajaei 159679 kill_reason Maximum check online fails reached 159679 mac 159679 bytes_out 0 159679 bytes_in 0 159679 station_ip 83.123.125.10 159679 port 643 159679 unique_id port 159681 username tahmasebi 159681 mac 159681 bytes_out 15738 159681 bytes_in 49475 159681 station_ip 5.119.74.98 159681 port 614 159681 unique_id port 159681 remote_ip 10.8.0.42 159684 username Mahin 159684 mac 159684 bytes_out 0 159684 bytes_in 0 159684 station_ip 5.119.34.171 159684 port 652 159684 unique_id port 159686 username pourshad 159686 kill_reason Another user logged on this global unique id 159686 mac 159686 bytes_out 0 159686 bytes_in 0 159686 station_ip 5.120.128.181 159686 port 609 159686 unique_id port 159686 remote_ip 10.8.0.18 159691 username hashtadani4 159691 mac 159691 bytes_out 0 159691 bytes_in 0 159691 station_ip 83.122.147.98 159691 port 657 159691 unique_id port 159691 remote_ip 10.8.0.182 159696 username godarzi 159696 mac 159696 bytes_out 0 159696 bytes_in 0 159696 station_ip 5.202.13.180 159696 port 328 159696 unique_id port 159696 remote_ip 10.8.1.230 159700 username hashtadani4 159700 mac 159700 bytes_out 0 159700 bytes_in 0 159700 station_ip 83.122.147.98 159700 port 656 159700 unique_id port 159700 remote_ip 10.8.0.182 159702 username malekpoir 159702 mac 159702 bytes_out 247041 159702 bytes_in 271351 159702 station_ip 5.120.124.135 159702 port 648 159702 unique_id port 159702 remote_ip 10.8.0.58 159705 username tahmasebi 159705 mac 159705 bytes_out 4931 159705 bytes_in 12420 159705 station_ip 5.119.74.98 159705 port 652 159705 unique_id port 159705 remote_ip 10.8.0.42 159710 username hashtadani4 159710 mac 159710 bytes_out 0 159710 bytes_in 0 159710 station_ip 83.122.147.98 159710 port 658 159710 unique_id port 159710 remote_ip 10.8.0.182 159692 bytes_out 19243 159692 bytes_in 27329 159692 station_ip 5.119.251.3 159692 port 656 159692 unique_id port 159692 remote_ip 10.8.0.234 159694 username hashtadani4 159694 mac 159694 bytes_out 16356 159694 bytes_in 208702 159694 station_ip 83.122.147.98 159694 port 652 159694 unique_id port 159694 remote_ip 10.8.0.182 159695 username sedighe 159695 mac 159695 bytes_out 26494 159695 bytes_in 24064 159695 station_ip 37.129.82.210 159695 port 653 159695 unique_id port 159695 remote_ip 10.8.0.146 159697 username hashtadani4 159697 mac 159697 bytes_out 0 159697 bytes_in 0 159697 station_ip 83.122.147.98 159697 port 653 159697 unique_id port 159697 remote_ip 10.8.0.182 159698 username alipour 159698 mac 159698 bytes_out 80326 159698 bytes_in 243088 159698 station_ip 83.122.235.114 159698 port 650 159698 unique_id port 159698 remote_ip 10.8.0.102 159701 username mehdizare 159701 mac 159701 bytes_out 28243 159701 bytes_in 30906 159701 station_ip 83.122.87.157 159701 port 646 159701 unique_id port 159701 remote_ip 10.8.0.90 159704 username tahmasebi 159704 mac 159704 bytes_out 1123949 159704 bytes_in 13936610 159704 station_ip 5.119.74.98 159704 port 653 159704 unique_id port 159704 remote_ip 10.8.0.42 159706 username fezealinaghi 159706 kill_reason Another user logged on this global unique id 159706 mac 159706 bytes_out 0 159706 bytes_in 0 159706 station_ip 37.129.51.13 159706 port 645 159706 unique_id port 159706 remote_ip 10.8.0.78 159708 username tahmasebi 159708 mac 159708 bytes_out 0 159708 bytes_in 0 159708 station_ip 5.119.74.98 159708 port 658 159708 unique_id port 159708 remote_ip 10.8.0.42 159713 username pourshad 159713 kill_reason Another user logged on this global unique id 159713 mac 159713 bytes_out 0 159713 bytes_in 0 159713 station_ip 5.120.128.181 159713 port 609 159713 unique_id port 159715 username barzegar 159715 mac 159715 bytes_out 0 159715 bytes_in 0 159715 station_ip 5.119.251.3 159715 port 614 159715 unique_id port 159715 remote_ip 10.8.0.234 159718 username tahmasebi 159718 mac 159718 bytes_out 0 159718 bytes_in 0 159718 station_ip 5.119.74.98 159718 port 614 159718 unique_id port 159718 remote_ip 10.8.0.42 159721 username tahmasebi 159721 mac 159721 bytes_out 0 159721 bytes_in 0 159721 station_ip 5.119.74.98 159721 port 645 159721 unique_id port 159721 remote_ip 10.8.0.42 159734 username shadkam 159734 mac 159734 bytes_out 68615 159734 bytes_in 350516 159734 station_ip 83.122.235.163 159734 port 328 159734 unique_id port 159734 remote_ip 10.8.1.218 159740 username hashtadani4 159740 mac 159740 bytes_out 0 159740 bytes_in 0 159740 station_ip 83.122.147.98 159740 port 656 159740 unique_id port 159740 remote_ip 10.8.0.182 159744 username mehdizare 159744 mac 159744 bytes_out 0 159744 bytes_in 0 159744 station_ip 83.122.87.157 159744 port 653 159744 unique_id port 159744 remote_ip 10.8.0.90 159746 username alihosseini1 159746 mac 159746 bytes_out 0 159746 bytes_in 0 159746 station_ip 5.120.173.237 159746 port 656 159746 unique_id port 159746 remote_ip 10.8.0.22 159748 username tahmasebi 159748 mac 159748 bytes_out 0 159748 bytes_in 0 159748 station_ip 5.119.74.98 159748 port 614 159748 unique_id port 159748 remote_ip 10.8.0.42 159751 username barzegar 159751 mac 159751 bytes_out 0 159751 bytes_in 0 159751 station_ip 5.119.251.3 159751 port 652 159751 unique_id port 159751 remote_ip 10.8.0.234 159757 username hashtadani4 159757 mac 159712 username kalantary 159712 mac 159712 bytes_out 0 159712 bytes_in 0 159712 station_ip 83.123.160.134 159712 port 659 159712 unique_id port 159712 remote_ip 10.8.0.98 159714 username zotaher 159714 mac 159714 bytes_out 0 159714 bytes_in 0 159714 station_ip 113.203.123.37 159714 port 652 159714 unique_id port 159714 remote_ip 10.8.0.194 159717 username tahmasebi 159717 mac 159717 bytes_out 0 159717 bytes_in 0 159717 station_ip 5.119.74.98 159717 port 614 159717 unique_id port 159717 remote_ip 10.8.0.42 159719 username fezealinaghi 159719 mac 159719 bytes_out 0 159719 bytes_in 0 159719 station_ip 37.129.51.13 159719 port 645 159719 unique_id port 159722 username barzegar 159722 mac 159722 bytes_out 0 159722 bytes_in 0 159722 station_ip 5.119.251.3 159722 port 614 159722 unique_id port 159722 remote_ip 10.8.0.234 159723 username hashtadani4 159723 mac 159723 bytes_out 0 159723 bytes_in 0 159723 station_ip 83.122.147.98 159723 port 645 159723 unique_id port 159723 remote_ip 10.8.0.182 159726 username alipour 159726 kill_reason Maximum check online fails reached 159726 mac 159726 bytes_out 0 159726 bytes_in 0 159726 station_ip 83.122.235.114 159726 port 646 159726 unique_id port 159728 username saeed9658 159728 mac 159728 bytes_out 1594320 159728 bytes_in 14870613 159728 station_ip 5.119.105.59 159728 port 656 159728 unique_id port 159728 remote_ip 10.8.0.166 159733 username alihosseini1 159733 kill_reason Another user logged on this global unique id 159733 mac 159733 bytes_out 0 159733 bytes_in 0 159733 station_ip 5.120.173.237 159733 port 645 159733 unique_id port 159733 remote_ip 10.8.0.22 159735 username tahmasebi 159735 mac 159735 bytes_out 0 159735 bytes_in 0 159735 station_ip 5.119.74.98 159735 port 614 159735 unique_id port 159735 remote_ip 10.8.0.42 159737 username tahmasebi 159737 mac 159737 bytes_out 0 159737 bytes_in 0 159737 station_ip 5.119.74.98 159737 port 614 159737 unique_id port 159737 remote_ip 10.8.0.42 159739 username mehdizare 159739 mac 159739 bytes_out 0 159739 bytes_in 0 159739 station_ip 83.122.87.157 159739 port 653 159739 unique_id port 159739 remote_ip 10.8.0.90 159741 username alihosseini1 159741 mac 159741 bytes_out 0 159741 bytes_in 0 159741 station_ip 5.120.173.237 159741 port 645 159741 unique_id port 159742 username aminvpn 159742 mac 159742 bytes_out 0 159742 bytes_in 0 159742 station_ip 31.56.221.43 159742 port 645 159742 unique_id port 159742 remote_ip 10.8.0.14 159743 username shadkam 159743 mac 159743 bytes_out 0 159743 bytes_in 0 159743 station_ip 37.129.97.164 159743 port 328 159743 unique_id port 159743 remote_ip 10.8.1.218 159747 username tahmasebi 159747 mac 159747 bytes_out 0 159747 bytes_in 0 159747 station_ip 5.119.74.98 159747 port 614 159747 unique_id port 159747 remote_ip 10.8.0.42 159752 username saeed9658 159752 mac 159752 bytes_out 0 159752 bytes_in 0 159752 station_ip 5.119.105.59 159752 port 656 159752 unique_id port 159752 remote_ip 10.8.0.166 159755 username tahmasebi 159755 mac 159755 bytes_out 0 159755 bytes_in 0 159755 station_ip 5.119.74.98 159755 port 614 159755 unique_id port 159755 remote_ip 10.8.0.42 159756 username barzegar 159756 mac 159756 bytes_out 0 159756 bytes_in 0 159756 station_ip 5.119.251.3 159756 port 328 159756 unique_id port 159756 remote_ip 10.8.1.174 159760 username sedighe 159760 mac 159760 bytes_out 0 159760 bytes_in 0 159716 mac 159716 bytes_out 0 159716 bytes_in 0 159716 station_ip 83.122.147.98 159716 port 652 159716 unique_id port 159716 remote_ip 10.8.0.182 159720 username alikomsari 159720 kill_reason Another user logged on this global unique id 159720 mac 159720 bytes_out 0 159720 bytes_in 0 159720 station_ip 5.120.69.200 159720 port 647 159720 unique_id port 159724 username alipour 159724 mac 159724 bytes_out 0 159724 bytes_in 0 159724 station_ip 83.122.235.114 159724 port 646 159724 unique_id port 159724 remote_ip 10.8.0.102 159725 username barzegar 159725 mac 159725 bytes_out 0 159725 bytes_in 0 159725 station_ip 5.119.251.3 159725 port 614 159725 unique_id port 159725 remote_ip 10.8.0.234 159727 username mehdizare 159727 kill_reason Another user logged on this global unique id 159727 mac 159727 bytes_out 0 159727 bytes_in 0 159727 station_ip 83.122.87.157 159727 port 653 159727 unique_id port 159727 remote_ip 10.8.0.90 159729 username alipour 159729 mac 159729 bytes_out 12944 159729 bytes_in 15307 159729 station_ip 83.122.235.114 159729 port 328 159729 unique_id port 159729 remote_ip 10.8.1.50 159730 username mehdizare 159730 mac 159730 bytes_out 0 159730 bytes_in 0 159730 station_ip 83.122.87.157 159730 port 653 159730 unique_id port 159731 username hashtadani4 159731 mac 159731 bytes_out 0 159731 bytes_in 0 159731 station_ip 83.122.147.98 159731 port 658 159731 unique_id port 159731 remote_ip 10.8.0.182 159732 username vanila 159732 mac 159732 bytes_out 0 159732 bytes_in 0 159732 station_ip 83.123.11.195 159732 port 656 159732 unique_id port 159732 remote_ip 10.8.0.178 159736 username barzegar 159736 mac 159736 bytes_out 0 159736 bytes_in 0 159736 station_ip 5.119.251.3 159736 port 656 159736 unique_id port 159736 remote_ip 10.8.0.234 159738 username pourshad 159738 kill_reason Another user logged on this global unique id 159738 mac 159738 bytes_out 0 159738 bytes_in 0 159738 station_ip 5.120.128.181 159738 port 609 159738 unique_id port 159745 username sedighe 159745 mac 159745 bytes_out 0 159745 bytes_in 0 159745 station_ip 83.123.213.241 159745 port 652 159745 unique_id port 159745 remote_ip 10.8.0.146 159749 username hashtadani4 159749 mac 159749 bytes_out 0 159749 bytes_in 0 159749 station_ip 83.122.147.98 159749 port 614 159749 unique_id port 159749 remote_ip 10.8.0.182 159750 username tahmasebi 159750 mac 159750 bytes_out 0 159750 bytes_in 0 159750 station_ip 5.119.74.98 159750 port 614 159750 unique_id port 159750 remote_ip 10.8.0.42 159753 username hashtadani4 159753 mac 159753 bytes_out 0 159753 bytes_in 0 159753 station_ip 83.122.147.98 159753 port 652 159753 unique_id port 159753 remote_ip 10.8.0.182 159754 username sedighe 159754 mac 159754 bytes_out 0 159754 bytes_in 0 159754 station_ip 83.123.213.241 159754 port 645 159754 unique_id port 159754 remote_ip 10.8.0.146 159758 username tahmasebi 159758 mac 159758 bytes_out 0 159758 bytes_in 0 159758 station_ip 5.119.74.98 159758 port 656 159758 unique_id port 159758 remote_ip 10.8.0.42 159762 username Mahin 159762 mac 159762 bytes_out 0 159762 bytes_in 0 159762 station_ip 5.119.34.171 159762 port 650 159762 unique_id port 159762 remote_ip 10.8.0.162 159764 username saeed9658 159764 kill_reason Another user logged on this global unique id 159764 mac 159764 bytes_out 0 159764 bytes_in 0 159764 station_ip 5.119.105.59 159764 port 652 159764 unique_id port 159764 remote_ip 10.8.0.166 159765 username tahmasebi 159757 bytes_out 0 159757 bytes_in 0 159757 station_ip 83.122.147.98 159757 port 659 159757 unique_id port 159757 remote_ip 10.8.0.182 159759 username alipour 159759 mac 159759 bytes_out 136874 159759 bytes_in 311590 159759 station_ip 83.122.235.114 159759 port 339 159759 unique_id port 159759 remote_ip 10.8.1.50 159769 username barzegar 159769 mac 159769 bytes_out 0 159769 bytes_in 0 159769 station_ip 5.119.251.3 159769 port 650 159769 unique_id port 159769 remote_ip 10.8.0.234 159770 username tahmasebi 159770 mac 159770 bytes_out 0 159770 bytes_in 0 159770 station_ip 5.119.74.98 159770 port 645 159770 unique_id port 159770 remote_ip 10.8.0.42 159771 username hashtadani4 159771 mac 159771 bytes_out 0 159771 bytes_in 0 159771 station_ip 83.122.147.98 159771 port 645 159771 unique_id port 159771 remote_ip 10.8.0.182 159780 username farhad2 159780 mac 159780 bytes_out 0 159780 bytes_in 0 159780 station_ip 5.120.106.185 159780 port 645 159780 unique_id port 159780 remote_ip 10.8.0.190 159782 username barzegar 159782 mac 159782 bytes_out 0 159782 bytes_in 0 159782 station_ip 5.119.251.3 159782 port 650 159782 unique_id port 159782 remote_ip 10.8.0.234 159784 username moradi 159784 mac 159784 bytes_out 144744 159784 bytes_in 443939 159784 station_ip 5.202.14.145 159784 port 328 159784 unique_id port 159784 remote_ip 10.8.1.202 159787 username hashtadani4 159787 mac 159787 bytes_out 0 159787 bytes_in 0 159787 station_ip 83.122.147.98 159787 port 645 159787 unique_id port 159787 remote_ip 10.8.0.182 159789 username shadkam 159789 mac 159789 bytes_out 506749 159789 bytes_in 4750673 159789 station_ip 113.203.126.213 159789 port 328 159789 unique_id port 159789 remote_ip 10.8.1.218 159790 username hashtadani4 159790 kill_reason Maximum check online fails reached 159790 mac 159790 bytes_out 0 159790 bytes_in 0 159790 station_ip 83.122.147.98 159790 port 645 159790 unique_id port 159793 username tahmasebi 159793 mac 159793 bytes_out 0 159793 bytes_in 0 159793 station_ip 5.119.74.98 159793 port 341 159793 unique_id port 159793 remote_ip 10.8.1.90 159794 username barzegar 159794 mac 159794 bytes_out 0 159794 bytes_in 0 159794 station_ip 5.119.251.3 159794 port 652 159794 unique_id port 159794 remote_ip 10.8.0.234 159798 username farhad2 159798 kill_reason Another user logged on this global unique id 159798 mac 159798 bytes_out 0 159798 bytes_in 0 159798 station_ip 5.120.106.185 159798 port 342 159798 unique_id port 159798 remote_ip 10.8.1.222 159800 username hashtadani4 159800 mac 159800 bytes_out 0 159800 bytes_in 0 159800 station_ip 83.122.147.98 159800 port 328 159800 unique_id port 159800 remote_ip 10.8.1.142 159802 username hashtadani4 159802 mac 159802 bytes_out 0 159802 bytes_in 0 159802 station_ip 83.122.147.98 159802 port 659 159802 unique_id port 159802 remote_ip 10.8.0.182 159804 username kalantary 159804 mac 159804 bytes_out 0 159804 bytes_in 0 159804 station_ip 83.122.165.133 159804 port 657 159804 unique_id port 159804 remote_ip 10.8.0.98 159806 username tahmasebi 159806 mac 159806 bytes_out 194463 159806 bytes_in 1007220 159806 station_ip 5.119.74.98 159806 port 334 159806 unique_id port 159806 remote_ip 10.8.1.90 159807 username hashtadani4 159807 kill_reason Maximum check online fails reached 159807 mac 159807 bytes_out 0 159807 bytes_in 0 159807 station_ip 83.122.147.98 159807 port 657 159807 unique_id port 159808 username alipour 159760 station_ip 37.129.3.183 159760 port 645 159760 unique_id port 159760 remote_ip 10.8.0.146 159761 username rezaei 159761 mac 159761 bytes_out 0 159761 bytes_in 0 159761 station_ip 5.119.53.117 159761 port 614 159761 unique_id port 159761 remote_ip 10.8.0.230 159763 username vanila 159763 mac 159763 bytes_out 0 159763 bytes_in 0 159763 station_ip 83.123.11.195 159763 port 645 159763 unique_id port 159763 remote_ip 10.8.0.178 159766 username hashtadani4 159766 mac 159766 bytes_out 0 159766 bytes_in 0 159766 station_ip 83.122.147.98 159766 port 645 159766 unique_id port 159766 remote_ip 10.8.0.182 159767 username tahmasebi 159767 mac 159767 bytes_out 0 159767 bytes_in 0 159767 station_ip 5.119.74.98 159767 port 645 159767 unique_id port 159767 remote_ip 10.8.0.42 159768 username mehdizare 159768 mac 159768 bytes_out 0 159768 bytes_in 0 159768 station_ip 83.122.87.157 159768 port 653 159768 unique_id port 159768 remote_ip 10.8.0.90 159773 username saeed9658 159773 mac 159773 bytes_out 0 159773 bytes_in 0 159773 station_ip 5.119.105.59 159773 port 652 159773 unique_id port 159774 username hashtadani4 159774 mac 159774 bytes_out 0 159774 bytes_in 0 159774 station_ip 83.122.147.98 159774 port 342 159774 unique_id port 159774 remote_ip 10.8.1.142 159775 username hashtadani4 159775 mac 159775 bytes_out 0 159775 bytes_in 0 159775 station_ip 83.122.147.98 159775 port 650 159775 unique_id port 159775 remote_ip 10.8.0.182 159776 username godarzi 159776 mac 159776 bytes_out 4627946 159776 bytes_in 4359555 159776 station_ip 5.119.60.91 159776 port 341 159776 unique_id port 159776 remote_ip 10.8.1.230 159777 username tahmasebi 159777 mac 159777 bytes_out 0 159777 bytes_in 0 159777 station_ip 5.119.74.98 159777 port 650 159777 unique_id port 159777 remote_ip 10.8.0.42 159778 username hashtadani4 159778 mac 159778 bytes_out 27631 159778 bytes_in 299136 159778 station_ip 83.122.147.98 159778 port 342 159778 unique_id port 159778 remote_ip 10.8.1.142 159781 username tahmasebi 159781 mac 159781 bytes_out 24545 159781 bytes_in 41883 159781 station_ip 5.119.74.98 159781 port 341 159781 unique_id port 159781 remote_ip 10.8.1.90 159783 username mosi 159783 mac 159783 bytes_out 0 159783 bytes_in 0 159783 station_ip 37.156.157.244 159783 port 645 159783 unique_id port 159783 remote_ip 10.8.0.138 159785 username fezealinaghi 159785 mac 159785 bytes_out 1041297 159785 bytes_in 8381328 159785 station_ip 37.129.51.13 159785 port 334 159785 unique_id port 159785 remote_ip 10.8.1.162 159786 username tahmasebi 159786 mac 159786 bytes_out 0 159786 bytes_in 0 159786 station_ip 5.119.74.98 159786 port 328 159786 unique_id port 159786 remote_ip 10.8.1.90 159795 username hashtadani4 159795 mac 159795 bytes_out 2861 159795 bytes_in 5195 159795 station_ip 83.122.147.98 159795 port 328 159795 unique_id port 159795 remote_ip 10.8.1.142 159796 username moradi 159796 mac 159796 bytes_out 0 159796 bytes_in 0 159796 station_ip 37.129.239.149 159796 port 334 159796 unique_id port 159796 remote_ip 10.8.1.202 159801 username sabaghnezhad 159801 mac 159801 bytes_out 0 159801 bytes_in 0 159801 station_ip 37.129.115.153 159801 port 657 159801 unique_id port 159801 remote_ip 10.8.0.186 159811 username tahmasebi 159811 mac 159811 bytes_out 0 159811 bytes_in 0 159811 station_ip 5.119.74.98 159811 port 659 159811 unique_id port 159811 remote_ip 10.8.0.42 159765 mac 159765 bytes_out 0 159765 bytes_in 0 159765 station_ip 5.119.74.98 159765 port 645 159765 unique_id port 159765 remote_ip 10.8.0.42 159772 username tahmasebi 159772 mac 159772 bytes_out 0 159772 bytes_in 0 159772 station_ip 5.119.74.98 159772 port 645 159772 unique_id port 159772 remote_ip 10.8.0.42 159779 username farhad2 159779 mac 159779 bytes_out 0 159779 bytes_in 0 159779 station_ip 5.119.70.2 159779 port 645 159779 unique_id port 159779 remote_ip 10.8.0.190 159788 username hashtadani4 159788 mac 159788 bytes_out 0 159788 bytes_in 0 159788 station_ip 83.122.147.98 159788 port 645 159788 unique_id port 159788 remote_ip 10.8.0.182 159791 username hashtadani4 159791 mac 159791 bytes_out 0 159791 bytes_in 0 159791 station_ip 83.122.147.98 159791 port 328 159791 unique_id port 159791 remote_ip 10.8.1.142 159792 username hashtadani4 159792 kill_reason Maximum check online fails reached 159792 mac 159792 bytes_out 0 159792 bytes_in 0 159792 station_ip 83.122.147.98 159792 port 650 159792 unique_id port 159797 username hashtadani4 159797 kill_reason Maximum check online fails reached 159797 mac 159797 bytes_out 0 159797 bytes_in 0 159797 station_ip 83.122.147.98 159797 port 652 159797 unique_id port 159799 username tahmasebi 159799 mac 159799 bytes_out 0 159799 bytes_in 0 159799 station_ip 5.119.74.98 159799 port 328 159799 unique_id port 159799 remote_ip 10.8.1.90 159803 username hashtadani4 159803 mac 159803 bytes_out 0 159803 bytes_in 0 159803 station_ip 83.122.147.98 159803 port 659 159803 unique_id port 159803 remote_ip 10.8.0.182 159805 username mehdizare 159805 mac 159805 bytes_out 0 159805 bytes_in 0 159805 station_ip 83.122.87.157 159805 port 339 159805 unique_id port 159805 remote_ip 10.8.1.42 159809 username tahmasebi 159809 mac 159809 bytes_out 0 159809 bytes_in 0 159809 station_ip 5.119.74.98 159809 port 659 159809 unique_id port 159809 remote_ip 10.8.0.42 159814 username hashtadani4 159814 mac 159814 bytes_out 0 159814 bytes_in 0 159814 station_ip 83.122.147.98 159814 port 659 159814 unique_id port 159814 remote_ip 10.8.0.182 159816 username hashtadani4 159816 mac 159816 bytes_out 0 159816 bytes_in 0 159816 station_ip 83.122.147.98 159816 port 659 159816 unique_id port 159816 remote_ip 10.8.0.182 159817 username alipour 159817 mac 159817 bytes_out 0 159817 bytes_in 0 159817 station_ip 83.122.235.114 159817 port 614 159817 unique_id port 159820 username tahmasebi 159820 mac 159820 bytes_out 0 159820 bytes_in 0 159820 station_ip 5.119.74.98 159820 port 661 159820 unique_id port 159820 remote_ip 10.8.0.42 159822 username tahmasebi 159822 mac 159822 bytes_out 0 159822 bytes_in 0 159822 station_ip 5.119.74.98 159822 port 661 159822 unique_id port 159822 remote_ip 10.8.0.42 159825 username aminvpn 159825 mac 159825 bytes_out 0 159825 bytes_in 0 159825 station_ip 83.122.119.84 159825 port 658 159825 unique_id port 159825 remote_ip 10.8.0.14 159830 username shadkam 159830 mac 159830 bytes_out 0 159830 bytes_in 0 159830 station_ip 83.123.132.184 159830 port 339 159830 unique_id port 159830 remote_ip 10.8.1.218 159833 username alipour 159833 mac 159833 bytes_out 68331 159833 bytes_in 108916 159833 station_ip 83.122.235.114 159833 port 341 159833 unique_id port 159833 remote_ip 10.8.1.50 159834 username hashtadani4 159834 mac 159834 bytes_out 0 159834 bytes_in 0 159834 station_ip 83.122.147.98 159808 kill_reason Another user logged on this global unique id 159808 mac 159808 bytes_out 0 159808 bytes_in 0 159808 station_ip 83.122.235.114 159808 port 614 159808 unique_id port 159808 remote_ip 10.8.0.102 159810 username hashtadani4 159810 mac 159810 bytes_out 0 159810 bytes_in 0 159810 station_ip 83.122.147.98 159810 port 339 159810 unique_id port 159810 remote_ip 10.8.1.142 159813 username hashtadani4 159813 kill_reason Maximum check online fails reached 159813 mac 159813 bytes_out 0 159813 bytes_in 0 159813 station_ip 83.122.147.98 159813 port 660 159813 unique_id port 159815 username hashtadani4 159815 mac 159815 bytes_out 0 159815 bytes_in 0 159815 station_ip 83.122.147.98 159815 port 659 159815 unique_id port 159815 remote_ip 10.8.0.182 159819 username tahmasebi 159819 mac 159819 bytes_out 0 159819 bytes_in 0 159819 station_ip 5.119.74.98 159819 port 661 159819 unique_id port 159819 remote_ip 10.8.0.42 159823 username alipour 159823 mac 159823 bytes_out 0 159823 bytes_in 0 159823 station_ip 83.122.235.114 159823 port 659 159823 unique_id port 159823 remote_ip 10.8.0.102 159826 username godarzi 159826 mac 159826 bytes_out 389013 159826 bytes_in 3132335 159826 station_ip 5.119.60.91 159826 port 328 159826 unique_id port 159826 remote_ip 10.8.1.230 159828 username hashtadani4 159828 mac 159828 bytes_out 0 159828 bytes_in 0 159828 station_ip 83.122.147.98 159828 port 658 159828 unique_id port 159828 remote_ip 10.8.0.182 159831 username mohammadjavad 159831 mac 159831 bytes_out 0 159831 bytes_in 0 159831 station_ip 37.129.222.220 159831 port 662 159831 unique_id port 159831 remote_ip 10.8.0.142 159832 username tahmasebi 159832 mac 159832 bytes_out 0 159832 bytes_in 0 159832 station_ip 5.119.74.98 159832 port 659 159832 unique_id port 159832 remote_ip 10.8.0.42 159835 username barzegar 159835 mac 159835 bytes_out 0 159835 bytes_in 0 159835 station_ip 5.119.251.3 159835 port 659 159835 unique_id port 159835 remote_ip 10.8.0.234 159837 username zotaher 159837 mac 159837 bytes_out 0 159837 bytes_in 0 159837 station_ip 83.123.67.172 159837 port 614 159837 unique_id port 159837 remote_ip 10.8.0.194 159839 username mehdizare 159839 mac 159839 bytes_out 45013 159839 bytes_in 154575 159839 station_ip 83.122.87.157 159839 port 334 159839 unique_id port 159839 remote_ip 10.8.1.42 159840 username zotaher 159840 mac 159840 bytes_out 0 159840 bytes_in 0 159840 station_ip 83.123.67.172 159840 port 659 159840 unique_id port 159840 remote_ip 10.8.0.194 159847 username farhad2 159847 mac 159847 bytes_out 0 159847 bytes_in 0 159847 station_ip 5.120.106.185 159847 port 342 159847 unique_id port 159849 username barzegar 159849 mac 159849 bytes_out 0 159849 bytes_in 0 159849 station_ip 5.119.251.3 159849 port 663 159849 unique_id port 159849 remote_ip 10.8.0.234 159850 username Mahin 159850 mac 159850 bytes_out 0 159850 bytes_in 0 159850 station_ip 5.119.34.171 159850 port 656 159850 unique_id port 159850 remote_ip 10.8.0.162 159852 username alipour 159852 mac 159852 bytes_out 0 159852 bytes_in 0 159852 station_ip 83.122.235.114 159852 port 664 159852 unique_id port 159852 remote_ip 10.8.0.102 159854 username hashtadani4 159854 mac 159854 bytes_out 0 159854 bytes_in 0 159854 station_ip 83.122.147.98 159854 port 339 159854 unique_id port 159854 remote_ip 10.8.1.142 159856 username hashtadani4 159856 mac 159856 bytes_out 0 159812 username barzegar 159812 mac 159812 bytes_out 0 159812 bytes_in 0 159812 station_ip 5.119.251.3 159812 port 659 159812 unique_id port 159812 remote_ip 10.8.0.234 159818 username farhad2 159818 kill_reason Another user logged on this global unique id 159818 mac 159818 bytes_out 0 159818 bytes_in 0 159818 station_ip 5.120.106.185 159818 port 342 159818 unique_id port 159821 username hashtadani4 159821 mac 159821 bytes_out 1513425 159821 bytes_in 22849951 159821 station_ip 83.122.147.98 159821 port 614 159821 unique_id port 159821 remote_ip 10.8.0.182 159824 username hashtadani4 159824 mac 159824 bytes_out 0 159824 bytes_in 0 159824 station_ip 83.122.147.98 159824 port 659 159824 unique_id port 159824 remote_ip 10.8.0.182 159827 username hosseine 159827 kill_reason Another user logged on this global unique id 159827 mac 159827 bytes_out 0 159827 bytes_in 0 159827 station_ip 83.123.105.75 159827 port 655 159827 unique_id port 159827 remote_ip 10.8.0.238 159829 username meysam 159829 mac 159829 bytes_out 51015 159829 bytes_in 604545 159829 station_ip 5.120.44.160 159829 port 343 159829 unique_id port 159829 remote_ip 10.8.1.34 159836 username hashtadani4 159836 mac 159836 bytes_out 0 159836 bytes_in 0 159836 station_ip 83.122.147.98 159836 port 658 159836 unique_id port 159836 remote_ip 10.8.0.182 159842 username barzegar 159842 mac 159842 bytes_out 0 159842 bytes_in 0 159842 station_ip 5.119.251.3 159842 port 661 159842 unique_id port 159842 remote_ip 10.8.0.234 159853 username barzegar 159853 mac 159853 bytes_out 0 159853 bytes_in 0 159853 station_ip 5.119.251.3 159853 port 663 159853 unique_id port 159853 remote_ip 10.8.0.234 159855 username kordestani 159855 mac 159855 bytes_out 0 159855 bytes_in 0 159855 station_ip 151.235.113.207 159855 port 653 159855 unique_id port 159855 remote_ip 10.8.0.74 159857 username ahmadi1 159857 mac 159857 bytes_out 0 159857 bytes_in 0 159857 station_ip 37.129.130.26 159857 port 662 159857 unique_id port 159857 remote_ip 10.8.0.250 159858 username hashtadani4 159858 mac 159858 bytes_out 0 159858 bytes_in 0 159858 station_ip 83.122.147.98 159858 port 653 159858 unique_id port 159858 remote_ip 10.8.0.182 159859 username Mahin 159859 mac 159859 bytes_out 0 159859 bytes_in 0 159859 station_ip 5.119.34.171 159859 port 663 159859 unique_id port 159859 remote_ip 10.8.0.162 159866 username hashtadani4 159866 kill_reason Maximum check online fails reached 159866 mac 159866 bytes_out 0 159866 bytes_in 0 159866 station_ip 83.122.147.98 159866 port 663 159866 unique_id port 159871 username barzegar 159871 mac 159871 bytes_out 0 159871 bytes_in 0 159871 station_ip 5.119.251.3 159871 port 609 159871 unique_id port 159871 remote_ip 10.8.0.234 159874 username barzegar 159874 mac 159874 bytes_out 0 159874 bytes_in 0 159874 station_ip 5.119.251.3 159874 port 609 159874 unique_id port 159874 remote_ip 10.8.0.234 159876 username tahmasebi 159876 mac 159876 bytes_out 0 159876 bytes_in 0 159876 station_ip 5.119.74.98 159876 port 659 159876 unique_id port 159879 username pourshad 159879 mac 159879 bytes_out 48573 159879 bytes_in 83845 159879 station_ip 5.119.162.49 159879 port 344 159879 unique_id port 159879 remote_ip 10.8.1.154 159881 username moradi 159881 mac 159881 bytes_out 59299 159881 bytes_in 91179 159881 station_ip 83.123.47.152 159881 port 341 159881 unique_id port 159881 remote_ip 10.8.1.202 159883 username hashtadani4 159834 port 658 159834 unique_id port 159834 remote_ip 10.8.0.182 159838 username hashtadani4 159838 kill_reason Maximum check online fails reached 159838 mac 159838 bytes_out 0 159838 bytes_in 0 159838 station_ip 83.122.147.98 159838 port 658 159838 unique_id port 159841 username alipour 159841 mac 159841 bytes_out 30620 159841 bytes_in 39079 159841 station_ip 83.122.235.114 159841 port 661 159841 unique_id port 159841 remote_ip 10.8.0.102 159843 username hashtadani4 159843 mac 159843 bytes_out 0 159843 bytes_in 0 159843 station_ip 83.122.147.98 159843 port 339 159843 unique_id port 159843 remote_ip 10.8.1.142 159844 username hashtadani4 159844 mac 159844 bytes_out 2172 159844 bytes_in 4535 159844 station_ip 83.122.147.98 159844 port 339 159844 unique_id port 159844 remote_ip 10.8.1.142 159845 username alipour 159845 mac 159845 bytes_out 24909 159845 bytes_in 32042 159845 station_ip 83.122.235.114 159845 port 334 159845 unique_id port 159845 remote_ip 10.8.1.50 159846 username hashtadani4 159846 mac 159846 bytes_out 208926 159846 bytes_in 2382515 159846 station_ip 83.122.147.98 159846 port 339 159846 unique_id port 159846 remote_ip 10.8.1.142 159848 username alipour 159848 mac 159848 bytes_out 0 159848 bytes_in 0 159848 station_ip 83.122.235.114 159848 port 662 159848 unique_id port 159848 remote_ip 10.8.0.102 159851 username hashtadani4 159851 kill_reason Maximum check online fails reached 159851 mac 159851 bytes_out 0 159851 bytes_in 0 159851 station_ip 83.122.147.98 159851 port 656 159851 unique_id port 159860 username alipour 159860 mac 159860 bytes_out 0 159860 bytes_in 0 159860 station_ip 83.122.235.114 159860 port 666 159860 unique_id port 159860 remote_ip 10.8.0.102 159861 username kordestani 159861 mac 159861 bytes_out 0 159861 bytes_in 0 159861 station_ip 151.235.113.207 159861 port 663 159861 unique_id port 159861 remote_ip 10.8.0.74 159863 username mirzaei 159863 kill_reason Another user logged on this global unique id 159863 mac 159863 bytes_out 0 159863 bytes_in 0 159863 station_ip 5.120.84.212 159863 port 641 159863 unique_id port 159864 username tahmasebi 159864 kill_reason Another user logged on this global unique id 159864 mac 159864 bytes_out 0 159864 bytes_in 0 159864 station_ip 5.119.74.98 159864 port 659 159864 unique_id port 159864 remote_ip 10.8.0.42 159865 username hashtadani4 159865 mac 159865 bytes_out 0 159865 bytes_in 0 159865 station_ip 83.122.147.98 159865 port 344 159865 unique_id port 159865 remote_ip 10.8.1.142 159868 username hashtadani4 159868 mac 159868 bytes_out 0 159868 bytes_in 0 159868 station_ip 83.122.147.98 159868 port 344 159868 unique_id port 159868 remote_ip 10.8.1.142 159870 username moradi 159870 mac 159870 bytes_out 1657958 159870 bytes_in 23242379 159870 station_ip 83.123.47.152 159870 port 341 159870 unique_id port 159870 remote_ip 10.8.1.202 159877 username fezealinaghi 159877 kill_reason Another user logged on this global unique id 159877 mac 159877 bytes_out 0 159877 bytes_in 0 159877 station_ip 37.129.31.102 159877 port 343 159877 unique_id port 159877 remote_ip 10.8.1.162 159882 username zotaher 159882 mac 159882 bytes_out 0 159882 bytes_in 0 159882 station_ip 83.123.67.172 159882 port 614 159882 unique_id port 159882 remote_ip 10.8.0.194 159887 username hashtadani4 159887 mac 159887 bytes_out 0 159887 bytes_in 0 159887 station_ip 83.122.147.98 159887 port 614 159887 unique_id port 159887 remote_ip 10.8.0.182 159888 username pourshad 159888 mac 159856 bytes_in 0 159856 station_ip 83.122.147.98 159856 port 664 159856 unique_id port 159856 remote_ip 10.8.0.182 159862 username hashtadani4 159862 mac 159862 bytes_out 0 159862 bytes_in 0 159862 station_ip 83.122.147.98 159862 port 664 159862 unique_id port 159862 remote_ip 10.8.0.182 159867 username pourshad 159867 mac 159867 bytes_out 0 159867 bytes_in 0 159867 station_ip 5.120.128.181 159867 port 609 159867 unique_id port 159869 username barzegar 159869 mac 159869 bytes_out 0 159869 bytes_in 0 159869 station_ip 5.119.251.3 159869 port 662 159869 unique_id port 159869 remote_ip 10.8.0.234 159872 username hashtadani4 159872 kill_reason Maximum check online fails reached 159872 mac 159872 bytes_out 0 159872 bytes_in 0 159872 station_ip 83.122.147.98 159872 port 664 159872 unique_id port 159873 username hashtadani4 159873 mac 159873 bytes_out 3002 159873 bytes_in 5179 159873 station_ip 83.122.147.98 159873 port 662 159873 unique_id port 159873 remote_ip 10.8.0.182 159875 username hashtadani4 159875 mac 159875 bytes_out 0 159875 bytes_in 0 159875 station_ip 83.122.147.98 159875 port 662 159875 unique_id port 159875 remote_ip 10.8.0.182 159878 username alipour 159878 mac 159878 bytes_out 42592 159878 bytes_in 52710 159878 station_ip 83.122.235.114 159878 port 342 159878 unique_id port 159878 remote_ip 10.8.1.50 159880 username barzegar 159880 mac 159880 bytes_out 0 159880 bytes_in 0 159880 station_ip 5.119.251.3 159880 port 609 159880 unique_id port 159880 remote_ip 10.8.0.234 159885 username sabaghnezhad 159885 mac 159885 bytes_out 0 159885 bytes_in 0 159885 station_ip 37.129.115.153 159885 port 666 159885 unique_id port 159885 remote_ip 10.8.0.186 159886 username tahmasebi 159886 mac 159886 bytes_out 0 159886 bytes_in 0 159886 station_ip 5.119.74.98 159886 port 345 159886 unique_id port 159886 remote_ip 10.8.1.90 159895 username pourshad 159895 mac 159895 bytes_out 0 159895 bytes_in 0 159895 station_ip 5.119.162.49 159895 port 614 159895 unique_id port 159895 remote_ip 10.8.0.18 159898 username moradi 159898 mac 159898 bytes_out 14694 159898 bytes_in 22122 159898 station_ip 83.123.47.152 159898 port 344 159898 unique_id port 159898 remote_ip 10.8.1.202 159901 username hashtadani4 159901 mac 159901 bytes_out 0 159901 bytes_in 0 159901 station_ip 83.122.147.98 159901 port 609 159901 unique_id port 159901 remote_ip 10.8.0.182 159903 username mohammadjavad 159903 mac 159903 bytes_out 0 159903 bytes_in 0 159903 station_ip 83.122.235.173 159903 port 661 159903 unique_id port 159903 remote_ip 10.8.0.142 159905 username tahmasebi 159905 mac 159905 bytes_out 0 159905 bytes_in 0 159905 station_ip 5.119.74.98 159905 port 344 159905 unique_id port 159905 remote_ip 10.8.1.90 159907 username meysam 159907 kill_reason Another user logged on this global unique id 159907 mac 159907 bytes_out 0 159907 bytes_in 0 159907 station_ip 188.159.251.72 159907 port 341 159907 unique_id port 159907 remote_ip 10.8.1.34 159908 username hashtadani4 159908 mac 159908 bytes_out 0 159908 bytes_in 0 159908 station_ip 83.122.147.98 159908 port 609 159908 unique_id port 159908 remote_ip 10.8.0.182 159910 username alipour 159910 mac 159910 bytes_out 23835 159910 bytes_in 35788 159910 station_ip 83.122.235.114 159910 port 342 159910 unique_id port 159910 remote_ip 10.8.1.50 159911 username meysam 159911 mac 159911 bytes_out 0 159911 bytes_in 0 159911 station_ip 188.159.251.72 159883 mac 159883 bytes_out 0 159883 bytes_in 0 159883 station_ip 83.122.147.98 159883 port 341 159883 unique_id port 159883 remote_ip 10.8.1.142 159884 username hashtadani4 159884 mac 159884 bytes_out 0 159884 bytes_in 0 159884 station_ip 83.122.147.98 159884 port 609 159884 unique_id port 159884 remote_ip 10.8.0.182 159889 username sabaghnezhad 159889 mac 159889 bytes_out 0 159889 bytes_in 0 159889 station_ip 37.129.115.153 159889 port 609 159889 unique_id port 159889 remote_ip 10.8.0.186 159890 username tahmasebi 159890 mac 159890 bytes_out 0 159890 bytes_in 0 159890 station_ip 5.119.74.98 159890 port 659 159890 unique_id port 159890 remote_ip 10.8.0.42 159894 username jafari 159894 kill_reason Another user logged on this global unique id 159894 mac 159894 bytes_out 0 159894 bytes_in 0 159894 station_ip 5.134.143.111 159894 port 665 159894 unique_id port 159894 remote_ip 10.8.0.242 159897 username kalantary 159897 mac 159897 bytes_out 0 159897 bytes_in 0 159897 station_ip 83.122.205.13 159897 port 609 159897 unique_id port 159897 remote_ip 10.8.0.98 159899 username rezaei 159899 mac 159899 bytes_out 0 159899 bytes_in 0 159899 station_ip 5.119.53.117 159899 port 659 159899 unique_id port 159899 remote_ip 10.8.0.230 159902 username sedighe 159902 mac 159902 bytes_out 0 159902 bytes_in 0 159902 station_ip 37.129.3.183 159902 port 667 159902 unique_id port 159902 remote_ip 10.8.0.146 159904 username farhad2 159904 mac 159904 bytes_out 59259 159904 bytes_in 302135 159904 station_ip 5.120.106.185 159904 port 344 159904 unique_id port 159904 remote_ip 10.8.1.222 159906 username alipour 159906 mac 159906 bytes_out 35167 159906 bytes_in 64868 159906 station_ip 83.122.235.114 159906 port 342 159906 unique_id port 159906 remote_ip 10.8.1.50 159909 username jafari 159909 kill_reason Another user logged on this global unique id 159909 mac 159909 bytes_out 0 159909 bytes_in 0 159909 station_ip 5.134.143.111 159909 port 665 159909 unique_id port 159926 username Mahin 159926 mac 159926 bytes_out 0 159926 bytes_in 0 159926 station_ip 5.119.34.171 159926 port 653 159926 unique_id port 159926 remote_ip 10.8.0.162 159929 username mirzaei 159929 kill_reason Another user logged on this global unique id 159929 mac 159929 bytes_out 0 159929 bytes_in 0 159929 station_ip 5.120.84.212 159929 port 641 159929 unique_id port 159931 username hashtadani4 159931 mac 159931 bytes_out 0 159931 bytes_in 0 159931 station_ip 83.122.147.98 159931 port 667 159931 unique_id port 159931 remote_ip 10.8.0.182 159933 username hashtadani4 159933 mac 159933 bytes_out 0 159933 bytes_in 0 159933 station_ip 83.122.147.98 159933 port 667 159933 unique_id port 159933 remote_ip 10.8.0.182 159938 username godarzi 159938 kill_reason Another user logged on this global unique id 159938 mac 159938 bytes_out 0 159938 bytes_in 0 159938 station_ip 5.202.13.180 159938 port 339 159938 unique_id port 159938 remote_ip 10.8.1.230 159939 username hashtadani4 159939 mac 159939 bytes_out 0 159939 bytes_in 0 159939 station_ip 83.122.147.98 159939 port 609 159939 unique_id port 159939 remote_ip 10.8.0.182 159940 username malekpoir 159940 mac 159940 bytes_out 0 159940 bytes_in 0 159940 station_ip 5.120.124.135 159940 port 648 159940 unique_id port 159940 remote_ip 10.8.0.58 159942 username jafari 159942 mac 159942 bytes_out 0 159942 bytes_in 0 159942 station_ip 5.134.143.111 159942 port 665 159942 unique_id port 159943 username ahmadi1 159888 bytes_out 0 159888 bytes_in 0 159888 station_ip 5.119.162.49 159888 port 659 159888 unique_id port 159888 remote_ip 10.8.0.18 159891 username pourshad 159891 mac 159891 bytes_out 32613 159891 bytes_in 59011 159891 station_ip 5.119.162.49 159891 port 345 159891 unique_id port 159891 remote_ip 10.8.1.154 159892 username barzegar 159892 mac 159892 bytes_out 0 159892 bytes_in 0 159892 station_ip 5.119.251.3 159892 port 346 159892 unique_id port 159892 remote_ip 10.8.1.174 159893 username hashtadani4 159893 mac 159893 bytes_out 0 159893 bytes_in 0 159893 station_ip 83.122.147.98 159893 port 662 159893 unique_id port 159893 remote_ip 10.8.0.182 159896 username farhad2 159896 mac 159896 bytes_out 0 159896 bytes_in 0 159896 station_ip 5.120.106.185 159896 port 334 159896 unique_id port 159896 remote_ip 10.8.1.222 159900 username alipour 159900 mac 159900 bytes_out 71044 159900 bytes_in 295424 159900 station_ip 83.122.235.114 159900 port 342 159900 unique_id port 159900 remote_ip 10.8.1.50 159912 username barzegar 159912 mac 159912 bytes_out 3992 159912 bytes_in 6435 159912 station_ip 5.119.251.3 159912 port 345 159912 unique_id port 159912 remote_ip 10.8.1.174 159913 username pourshad 159913 mac 159913 bytes_out 52937 159913 bytes_in 123972 159913 station_ip 5.119.162.49 159913 port 334 159913 unique_id port 159913 remote_ip 10.8.1.154 159915 username mahdiyehalizadeh 159915 kill_reason Wrong password 159915 mac 159915 bytes_out 0 159915 bytes_in 0 159915 station_ip 5.120.117.161 159915 port 659 159915 unique_id port 159918 username pourshad 159918 mac 159918 bytes_out 30170 159918 bytes_in 53093 159918 station_ip 5.119.162.49 159918 port 614 159918 unique_id port 159918 remote_ip 10.8.0.18 159920 username hashtadani4 159920 mac 159920 bytes_out 0 159920 bytes_in 0 159920 station_ip 83.122.147.98 159920 port 661 159920 unique_id port 159920 remote_ip 10.8.0.182 159921 username pourshad 159921 mac 159921 bytes_out 0 159921 bytes_in 0 159921 station_ip 5.119.162.49 159921 port 614 159921 unique_id port 159921 remote_ip 10.8.0.18 159923 username meysam 159923 mac 159923 bytes_out 0 159923 bytes_in 0 159923 station_ip 188.159.251.72 159923 port 614 159923 unique_id port 159923 remote_ip 10.8.0.110 159925 username hashtadani4 159925 mac 159925 bytes_out 0 159925 bytes_in 0 159925 station_ip 83.122.147.98 159925 port 661 159925 unique_id port 159925 remote_ip 10.8.0.182 159927 username hashtadani4 159927 mac 159927 bytes_out 0 159927 bytes_in 0 159927 station_ip 83.122.147.98 159927 port 662 159927 unique_id port 159927 remote_ip 10.8.0.182 159928 username hashtadani4 159928 mac 159928 bytes_out 0 159928 bytes_in 0 159928 station_ip 83.122.147.98 159928 port 653 159928 unique_id port 159928 remote_ip 10.8.0.182 159935 username alipour 159935 mac 159935 bytes_out 0 159935 bytes_in 0 159935 station_ip 83.122.235.114 159935 port 609 159935 unique_id port 159935 remote_ip 10.8.0.102 159937 username mehdizare 159937 mac 159937 bytes_out 0 159937 bytes_in 0 159937 station_ip 83.122.87.157 159937 port 662 159937 unique_id port 159937 remote_ip 10.8.0.90 159941 username hashtadani4 159941 mac 159941 bytes_out 0 159941 bytes_in 0 159941 station_ip 83.122.147.98 159941 port 667 159941 unique_id port 159941 remote_ip 10.8.0.182 159947 username pourshad 159947 mac 159947 bytes_out 0 159947 bytes_in 0 159947 station_ip 5.119.162.49 159911 port 341 159911 unique_id port 159914 username mosi 159914 mac 159914 bytes_out 0 159914 bytes_in 0 159914 station_ip 151.235.89.191 159914 port 614 159914 unique_id port 159914 remote_ip 10.8.0.138 159916 username barzegar 159916 mac 159916 bytes_out 2111 159916 bytes_in 4700 159916 station_ip 5.119.251.3 159916 port 341 159916 unique_id port 159916 remote_ip 10.8.1.174 159917 username hashtadani4 159917 mac 159917 bytes_out 0 159917 bytes_in 0 159917 station_ip 83.122.147.98 159917 port 334 159917 unique_id port 159917 remote_ip 10.8.1.142 159919 username shadkam 159919 mac 159919 bytes_out 0 159919 bytes_in 0 159919 station_ip 83.122.35.253 159919 port 341 159919 unique_id port 159919 remote_ip 10.8.1.218 159922 username meysam 159922 mac 159922 bytes_out 1068491 159922 bytes_in 14036811 159922 station_ip 188.159.251.72 159922 port 342 159922 unique_id port 159922 remote_ip 10.8.1.34 159924 username jafari 159924 kill_reason Another user logged on this global unique id 159924 mac 159924 bytes_out 0 159924 bytes_in 0 159924 station_ip 5.134.143.111 159924 port 665 159924 unique_id port 159930 username mehdizare 159930 mac 159930 bytes_out 1297073 159930 bytes_in 20596929 159930 station_ip 83.122.87.157 159930 port 328 159930 unique_id port 159930 remote_ip 10.8.1.42 159932 username hashtadani4 159932 mac 159932 bytes_out 0 159932 bytes_in 0 159932 station_ip 83.122.147.98 159932 port 667 159932 unique_id port 159932 remote_ip 10.8.0.182 159934 username jafari 159934 kill_reason Another user logged on this global unique id 159934 mac 159934 bytes_out 0 159934 bytes_in 0 159934 station_ip 5.134.143.111 159934 port 665 159934 unique_id port 159936 username khalili 159936 kill_reason Another user logged on this global unique id 159936 mac 159936 bytes_out 0 159936 bytes_in 0 159936 station_ip 5.119.240.171 159936 port 340 159936 unique_id port 159944 username jafari 159944 mac 159944 bytes_out 0 159944 bytes_in 0 159944 station_ip 5.134.143.111 159944 port 669 159944 unique_id port 159944 remote_ip 10.8.0.242 159946 username fezealinaghi 159946 mac 159946 bytes_out 0 159946 bytes_in 0 159946 station_ip 37.129.31.102 159946 port 343 159946 unique_id port 159949 username sabaghnezhad 159949 mac 159949 bytes_out 0 159949 bytes_in 0 159949 station_ip 83.122.52.131 159949 port 661 159949 unique_id port 159949 remote_ip 10.8.0.186 159950 username Mahin 159950 mac 159950 bytes_out 0 159950 bytes_in 0 159950 station_ip 5.119.34.171 159950 port 666 159950 unique_id port 159950 remote_ip 10.8.0.162 159952 username mehdizare 159952 mac 159952 bytes_out 0 159952 bytes_in 0 159952 station_ip 83.122.87.157 159952 port 662 159952 unique_id port 159952 remote_ip 10.8.0.90 159958 username alikomsari 159958 mac 159958 bytes_out 0 159958 bytes_in 0 159958 station_ip 5.120.69.200 159958 port 647 159958 unique_id port 159963 username sabaghnezhad 159963 mac 159963 bytes_out 0 159963 bytes_in 0 159963 station_ip 83.122.52.131 159963 port 614 159963 unique_id port 159963 remote_ip 10.8.0.186 159966 username zotaher 159966 mac 159966 bytes_out 0 159966 bytes_in 0 159966 station_ip 83.123.105.184 159966 port 653 159966 unique_id port 159966 remote_ip 10.8.0.194 159969 username tahmasebi 159969 kill_reason Another user logged on this global unique id 159969 mac 159969 bytes_out 0 159969 bytes_in 0 159969 station_ip 5.119.74.98 159969 port 328 159969 unique_id port 159969 remote_ip 10.8.1.90 159943 mac 159943 bytes_out 0 159943 bytes_in 0 159943 station_ip 37.129.130.26 159943 port 665 159943 unique_id port 159943 remote_ip 10.8.0.250 159945 username hashtadani4 159945 mac 159945 bytes_out 0 159945 bytes_in 0 159945 station_ip 83.122.147.98 159945 port 667 159945 unique_id port 159945 remote_ip 10.8.0.182 159951 username tahmasebi 159951 mac 159951 bytes_out 0 159951 bytes_in 0 159951 station_ip 5.119.74.98 159951 port 328 159951 unique_id port 159951 remote_ip 10.8.1.90 159956 username mohammadmahdi 159956 kill_reason Another user logged on this global unique id 159956 mac 159956 bytes_out 0 159956 bytes_in 0 159956 station_ip 5.120.147.94 159956 port 670 159956 unique_id port 159956 remote_ip 10.8.0.54 159957 username meysam 159957 mac 159957 bytes_out 0 159957 bytes_in 0 159957 station_ip 188.159.251.72 159957 port 614 159957 unique_id port 159957 remote_ip 10.8.0.110 159960 username hosseine 159960 mac 159960 bytes_out 0 159960 bytes_in 0 159960 station_ip 83.123.105.75 159960 port 655 159960 unique_id port 159965 username hashtadani4 159965 mac 159965 bytes_out 9367 159965 bytes_in 15673 159965 station_ip 83.122.147.98 159965 port 614 159965 unique_id port 159965 remote_ip 10.8.0.182 159967 username mirzaei 159967 mac 159967 bytes_out 0 159967 bytes_in 0 159967 station_ip 5.120.84.212 159967 port 641 159967 unique_id port 159968 username shadkam 159968 mac 159968 bytes_out 0 159968 bytes_in 0 159968 station_ip 83.122.98.87 159968 port 334 159968 unique_id port 159968 remote_ip 10.8.1.218 159974 username hashtadani4 159974 mac 159974 bytes_out 0 159974 bytes_in 0 159974 station_ip 83.122.147.98 159974 port 614 159974 unique_id port 159974 remote_ip 10.8.0.182 159976 username shadkam 159976 mac 159976 bytes_out 0 159976 bytes_in 0 159976 station_ip 113.203.66.149 159976 port 334 159976 unique_id port 159976 remote_ip 10.8.1.218 159979 username shadkam 159979 mac 159979 bytes_out 0 159979 bytes_in 0 159979 station_ip 113.203.66.149 159979 port 328 159979 unique_id port 159979 remote_ip 10.8.1.218 159984 username ahmadi1 159984 mac 159984 bytes_out 0 159984 bytes_in 0 159984 station_ip 37.129.130.26 159984 port 653 159984 unique_id port 159984 remote_ip 10.8.0.250 159985 username pourshad 159985 mac 159985 bytes_out 0 159985 bytes_in 0 159985 station_ip 5.119.162.49 159985 port 655 159985 unique_id port 159985 remote_ip 10.8.0.18 159986 username tahmasebi 159986 mac 159986 bytes_out 10379 159986 bytes_in 19360 159986 station_ip 5.119.74.98 159986 port 328 159986 unique_id port 159986 remote_ip 10.8.1.90 159988 username shadkam 159988 mac 159988 bytes_out 0 159988 bytes_in 0 159988 station_ip 83.123.75.240 159988 port 342 159988 unique_id port 159988 remote_ip 10.8.1.218 159989 username hashtadani4 159989 mac 159989 bytes_out 0 159989 bytes_in 0 159989 station_ip 83.122.147.98 159989 port 343 159989 unique_id port 159989 remote_ip 10.8.1.142 159991 username hashtadani4 159991 mac 159991 bytes_out 0 159991 bytes_in 0 159991 station_ip 83.122.147.98 159991 port 342 159991 unique_id port 159991 remote_ip 10.8.1.142 159995 username mohammadmahdi 159995 kill_reason Another user logged on this global unique id 159995 mac 159995 bytes_out 0 159995 bytes_in 0 159995 station_ip 5.120.147.94 159995 port 641 159995 unique_id port 159995 remote_ip 10.8.0.54 159997 username yaghobi 159997 mac 159997 bytes_out 0 159947 port 661 159947 unique_id port 159947 remote_ip 10.8.0.18 159948 username hashtadani4 159948 mac 159948 bytes_out 0 159948 bytes_in 0 159948 station_ip 83.122.147.98 159948 port 665 159948 unique_id port 159948 remote_ip 10.8.0.182 159953 username alikomsari 159953 kill_reason Another user logged on this global unique id 159953 mac 159953 bytes_out 0 159953 bytes_in 0 159953 station_ip 5.120.69.200 159953 port 647 159953 unique_id port 159954 username meysam 159954 mac 159954 bytes_out 0 159954 bytes_in 0 159954 station_ip 188.159.251.72 159954 port 614 159954 unique_id port 159954 remote_ip 10.8.0.110 159955 username godarzi 159955 kill_reason Another user logged on this global unique id 159955 mac 159955 bytes_out 0 159955 bytes_in 0 159955 station_ip 5.202.13.180 159955 port 339 159955 unique_id port 159959 username arash 159959 mac 159959 bytes_out 0 159959 bytes_in 0 159959 station_ip 37.27.27.10 159959 port 668 159959 unique_id port 159959 remote_ip 10.8.0.114 159961 username hashtadani4 159961 mac 159961 bytes_out 0 159961 bytes_in 0 159961 station_ip 83.122.147.98 159961 port 665 159961 unique_id port 159961 remote_ip 10.8.0.182 159962 username godarzi 159962 kill_reason Another user logged on this global unique id 159962 mac 159962 bytes_out 0 159962 bytes_in 0 159962 station_ip 5.202.13.180 159962 port 339 159962 unique_id port 159964 username hashtadani4 159964 mac 159964 bytes_out 0 159964 bytes_in 0 159964 station_ip 83.122.147.98 159964 port 614 159964 unique_id port 159964 remote_ip 10.8.0.182 159970 username mohammadmahdi 159970 kill_reason Another user logged on this global unique id 159970 mac 159970 bytes_out 0 159970 bytes_in 0 159970 station_ip 5.120.147.94 159970 port 670 159970 unique_id port 159971 username hashtadani4 159971 mac 159971 bytes_out 0 159971 bytes_in 0 159971 station_ip 83.122.147.98 159971 port 614 159971 unique_id port 159971 remote_ip 10.8.0.182 159972 username fezealinaghi 159972 mac 159972 bytes_out 422594 159972 bytes_in 9529850 159972 station_ip 37.129.198.221 159972 port 655 159972 unique_id port 159972 remote_ip 10.8.0.78 159973 username rahim 159973 mac 159973 bytes_out 0 159973 bytes_in 0 159973 station_ip 5.120.45.248 159973 port 614 159973 unique_id port 159973 remote_ip 10.8.0.50 159975 username mohammadmahdi 159975 mac 159975 bytes_out 0 159975 bytes_in 0 159975 station_ip 5.120.147.94 159975 port 670 159975 unique_id port 159982 username hashtadani4 159982 mac 159982 bytes_out 0 159982 bytes_in 0 159982 station_ip 83.122.147.98 159982 port 614 159982 unique_id port 159982 remote_ip 10.8.0.182 159993 username hashtadani4 159993 mac 159993 bytes_out 0 159993 bytes_in 0 159993 station_ip 83.122.147.98 159993 port 342 159993 unique_id port 159993 remote_ip 10.8.1.142 159994 username yaghobi 159994 kill_reason Another user logged on this global unique id 159994 mac 159994 bytes_out 0 159994 bytes_in 0 159994 station_ip 37.129.193.101 159994 port 614 159994 unique_id port 159994 remote_ip 10.8.0.198 159996 username tahmasebi 159996 mac 159996 bytes_out 0 159996 bytes_in 0 159996 station_ip 5.119.74.98 159996 port 342 159996 unique_id port 159996 remote_ip 10.8.1.90 159998 username pourshad 159998 mac 159998 bytes_out 159027 159998 bytes_in 90115 159998 station_ip 5.119.162.49 159998 port 341 159998 unique_id port 159998 remote_ip 10.8.1.154 159999 username forozandeh1 159999 mac 159999 bytes_out 0 159999 bytes_in 0 159999 station_ip 83.123.106.41 159977 username tahmasebi 159977 mac 159977 bytes_out 0 159977 bytes_in 0 159977 station_ip 5.119.74.98 159977 port 328 159977 unique_id port 159978 username aminvpn 159978 mac 159978 bytes_out 0 159978 bytes_in 0 159978 station_ip 5.120.171.75 159978 port 341 159978 unique_id port 159978 remote_ip 10.8.1.6 159980 username pourshad 159980 mac 159980 bytes_out 0 159980 bytes_in 0 159980 station_ip 5.119.162.49 159980 port 667 159980 unique_id port 159980 remote_ip 10.8.0.18 159981 username kalantary 159981 mac 159981 bytes_out 82421 159981 bytes_in 117296 159981 station_ip 83.122.225.245 159981 port 653 159981 unique_id port 159981 remote_ip 10.8.0.98 159983 username hashtadani4 159983 mac 159983 bytes_out 0 159983 bytes_in 0 159983 station_ip 83.122.147.98 159983 port 614 159983 unique_id port 159983 remote_ip 10.8.0.182 159987 username mahdiyehalizadeh 159987 mac 159987 bytes_out 0 159987 bytes_in 0 159987 station_ip 5.120.117.161 159987 port 659 159987 unique_id port 159987 remote_ip 10.8.0.82 159990 username arash 159990 mac 159990 bytes_out 0 159990 bytes_in 0 159990 station_ip 37.27.27.10 159990 port 666 159990 unique_id port 159990 remote_ip 10.8.0.114 159992 username tahmasebi 159992 mac 159992 bytes_out 3360 159992 bytes_in 6243 159992 station_ip 5.119.74.98 159992 port 328 159992 unique_id port 159992 remote_ip 10.8.1.90 160003 username pourshad 160003 mac 160003 bytes_out 11423 160003 bytes_in 19696 160003 station_ip 5.119.162.49 160003 port 655 160003 unique_id port 160003 remote_ip 10.8.0.18 160006 username godarzi 160006 mac 160006 bytes_out 0 160006 bytes_in 0 160006 station_ip 5.202.13.180 160006 port 339 160006 unique_id port 160009 username alipour 160009 mac 160009 bytes_out 0 160009 bytes_in 0 160009 station_ip 83.122.235.114 160009 port 342 160009 unique_id port 160009 remote_ip 10.8.1.50 160010 username sabaghnezhad 160010 mac 160010 bytes_out 0 160010 bytes_in 0 160010 station_ip 83.122.149.182 160010 port 614 160010 unique_id port 160010 remote_ip 10.8.0.186 160014 username tahmasebi 160014 kill_reason Another user logged on this global unique id 160014 mac 160014 bytes_out 0 160014 bytes_in 0 160014 station_ip 5.119.74.98 160014 port 341 160014 unique_id port 160014 remote_ip 10.8.1.90 160025 username forozandeh1 160025 mac 160025 bytes_out 0 160025 bytes_in 0 160025 station_ip 37.129.37.92 160025 port 659 160025 unique_id port 160025 remote_ip 10.8.0.130 160031 username mohammadmahdi 160031 kill_reason Another user logged on this global unique id 160031 mac 160031 bytes_out 0 160031 bytes_in 0 160031 station_ip 5.120.147.94 160031 port 666 160031 unique_id port 160031 remote_ip 10.8.0.54 160033 username pourshad 160033 mac 160033 bytes_out 0 160033 bytes_in 0 160033 station_ip 5.119.162.49 160033 port 655 160033 unique_id port 160033 remote_ip 10.8.0.18 160034 username hashtadani4 160034 mac 160034 bytes_out 0 160034 bytes_in 0 160034 station_ip 83.122.147.98 160034 port 609 160034 unique_id port 160034 remote_ip 10.8.0.182 160036 username hadibarzegar 160036 mac 160036 bytes_out 0 160036 bytes_in 0 160036 station_ip 37.129.61.187 160036 port 648 160036 unique_id port 160036 remote_ip 10.8.0.154 160037 username sabaghnezhad 160037 mac 160037 bytes_out 0 160037 bytes_in 0 160037 station_ip 83.122.149.182 160037 port 665 160037 unique_id port 160037 remote_ip 10.8.0.186 160039 username hatami 160039 mac 160039 bytes_out 0 159997 bytes_in 0 159997 station_ip 37.129.193.101 159997 port 614 159997 unique_id port 160000 username pourshad 160000 mac 160000 bytes_out 0 160000 bytes_in 0 160000 station_ip 5.119.162.49 160000 port 614 160000 unique_id port 160000 remote_ip 10.8.0.18 160002 username ahmadi1 160002 mac 160002 bytes_out 0 160002 bytes_in 0 160002 station_ip 37.129.130.26 160002 port 648 160002 unique_id port 160002 remote_ip 10.8.0.250 160004 username hashtadani4 160004 mac 160004 bytes_out 0 160004 bytes_in 0 160004 station_ip 83.122.147.98 160004 port 328 160004 unique_id port 160004 remote_ip 10.8.1.142 160007 username aminvpn 160007 mac 160007 bytes_out 0 160007 bytes_in 0 160007 station_ip 5.120.171.75 160007 port 334 160007 unique_id port 160007 remote_ip 10.8.1.6 160012 username alipour 160012 mac 160012 bytes_out 20701 160012 bytes_in 22863 160012 station_ip 83.122.235.114 160012 port 334 160012 unique_id port 160012 remote_ip 10.8.1.50 160013 username hashtadani4 160013 mac 160013 bytes_out 9498 160013 bytes_in 12557 160013 station_ip 83.122.147.98 160013 port 328 160013 unique_id port 160013 remote_ip 10.8.1.142 160018 username vanila 160018 mac 160018 bytes_out 0 160018 bytes_in 0 160018 station_ip 113.203.48.218 160018 port 648 160018 unique_id port 160018 remote_ip 10.8.0.178 160020 username hashtadani4 160020 mac 160020 bytes_out 0 160020 bytes_in 0 160020 station_ip 83.122.147.98 160020 port 648 160020 unique_id port 160020 remote_ip 10.8.0.182 160024 username hashtadani4 160024 mac 160024 bytes_out 0 160024 bytes_in 0 160024 station_ip 83.122.147.98 160024 port 641 160024 unique_id port 160024 remote_ip 10.8.0.182 160026 username alipour 160026 mac 160026 bytes_out 0 160026 bytes_in 0 160026 station_ip 83.122.235.114 160026 port 614 160026 unique_id port 160026 remote_ip 10.8.0.102 160027 username hashtadani4 160027 mac 160027 bytes_out 0 160027 bytes_in 0 160027 station_ip 83.122.147.98 160027 port 614 160027 unique_id port 160027 remote_ip 10.8.0.182 160028 username malekpoir 160028 mac 160028 bytes_out 0 160028 bytes_in 0 160028 station_ip 5.120.124.135 160028 port 609 160028 unique_id port 160028 remote_ip 10.8.0.58 160030 username hashtadani4 160030 mac 160030 bytes_out 0 160030 bytes_in 0 160030 station_ip 83.122.147.98 160030 port 648 160030 unique_id port 160030 remote_ip 10.8.0.182 160038 username hashtadani4 160038 mac 160038 bytes_out 0 160038 bytes_in 0 160038 station_ip 83.122.147.98 160038 port 614 160038 unique_id port 160038 remote_ip 10.8.0.182 160042 username hashtadani4 160042 mac 160042 bytes_out 0 160042 bytes_in 0 160042 station_ip 83.122.147.98 160042 port 653 160042 unique_id port 160042 remote_ip 10.8.0.182 160044 username mohammadjavad 160044 mac 160044 bytes_out 192705 160044 bytes_in 1191020 160044 station_ip 113.203.101.192 160044 port 648 160044 unique_id port 160044 remote_ip 10.8.0.142 160045 username hatami 160045 mac 160045 bytes_out 415670 160045 bytes_in 7339660 160045 station_ip 151.235.73.10 160045 port 339 160045 unique_id port 160045 remote_ip 10.8.1.134 160049 username nilufarrajaei 160049 mac 160049 bytes_out 0 160049 bytes_in 0 160049 station_ip 37.129.210.27 160049 port 648 160049 unique_id port 160049 remote_ip 10.8.0.206 160050 username shadkam 160050 mac 160050 bytes_out 495063 160050 bytes_in 4422178 160050 station_ip 113.203.23.220 160050 port 339 159999 port 653 159999 unique_id port 159999 remote_ip 10.8.0.130 160001 username alipour 160001 mac 160001 bytes_out 0 160001 bytes_in 0 160001 station_ip 83.122.235.114 160001 port 648 160001 unique_id port 160001 remote_ip 10.8.0.102 160005 username mohammadmahdi 160005 kill_reason Another user logged on this global unique id 160005 mac 160005 bytes_out 0 160005 bytes_in 0 160005 station_ip 5.120.147.94 160005 port 641 160005 unique_id port 160008 username mohammadjavad 160008 mac 160008 bytes_out 0 160008 bytes_in 0 160008 station_ip 37.129.211.172 160008 port 648 160008 unique_id port 160008 remote_ip 10.8.0.142 160011 username zotaher 160011 mac 160011 bytes_out 1577031 160011 bytes_in 7094205 160011 station_ip 83.123.11.124 160011 port 653 160011 unique_id port 160011 remote_ip 10.8.0.194 160015 username hashtadani4 160015 mac 160015 bytes_out 324288 160015 bytes_in 2525225 160015 station_ip 83.122.147.98 160015 port 328 160015 unique_id port 160015 remote_ip 10.8.1.142 160016 username mohammadmahdi 160016 kill_reason Another user logged on this global unique id 160016 mac 160016 bytes_out 0 160016 bytes_in 0 160016 station_ip 5.120.147.94 160016 port 641 160016 unique_id port 160017 username hashtadani4 160017 mac 160017 bytes_out 0 160017 bytes_in 0 160017 station_ip 83.122.147.98 160017 port 653 160017 unique_id port 160017 remote_ip 10.8.0.182 160019 username tahmasebi 160019 kill_reason Another user logged on this global unique id 160019 mac 160019 bytes_out 0 160019 bytes_in 0 160019 station_ip 5.119.74.98 160019 port 341 160019 unique_id port 160021 username yaghobi 160021 mac 160021 bytes_out 0 160021 bytes_in 0 160021 station_ip 37.129.40.67 160021 port 653 160021 unique_id port 160021 remote_ip 10.8.0.198 160022 username mohammadmahdi 160022 mac 160022 bytes_out 0 160022 bytes_in 0 160022 station_ip 5.120.147.94 160022 port 641 160022 unique_id port 160023 username vanila 160023 mac 160023 bytes_out 0 160023 bytes_in 0 160023 station_ip 113.203.48.218 160023 port 648 160023 unique_id port 160023 remote_ip 10.8.0.178 160029 username shadkam 160029 mac 160029 bytes_out 0 160029 bytes_in 0 160029 station_ip 83.123.254.78 160029 port 334 160029 unique_id port 160029 remote_ip 10.8.1.218 160032 username mahdiyehalizadeh 160032 mac 160032 bytes_out 0 160032 bytes_in 0 160032 station_ip 5.120.117.161 160032 port 609 160032 unique_id port 160032 remote_ip 10.8.0.82 160035 username forozandeh1 160035 mac 160035 bytes_out 0 160035 bytes_in 0 160035 station_ip 83.122.203.227 160035 port 614 160035 unique_id port 160035 remote_ip 10.8.0.130 160043 username yaghobi 160043 mac 160043 bytes_out 0 160043 bytes_in 0 160043 station_ip 83.123.200.92 160043 port 659 160043 unique_id port 160043 remote_ip 10.8.0.198 160047 username hashtadani4 160047 mac 160047 bytes_out 0 160047 bytes_in 0 160047 station_ip 83.122.147.98 160047 port 609 160047 unique_id port 160047 remote_ip 10.8.0.182 160053 username forozandeh1 160053 mac 160053 bytes_out 0 160053 bytes_in 0 160053 station_ip 83.123.132.95 160053 port 648 160053 unique_id port 160053 remote_ip 10.8.0.130 160057 username vanila 160057 mac 160057 bytes_out 162113 160057 bytes_in 270627 160057 station_ip 113.203.31.210 160057 port 653 160057 unique_id port 160057 remote_ip 10.8.0.178 160059 username khademi 160059 kill_reason Another user logged on this global unique id 160059 mac 160059 bytes_out 0 160059 bytes_in 0 160039 bytes_in 0 160039 station_ip 151.235.73.10 160039 port 648 160039 unique_id port 160039 remote_ip 10.8.0.106 160040 username yaghobi 160040 mac 160040 bytes_out 0 160040 bytes_in 0 160040 station_ip 37.129.40.67 160040 port 653 160040 unique_id port 160040 remote_ip 10.8.0.198 160041 username houshang 160041 mac 160041 bytes_out 0 160041 bytes_in 0 160041 station_ip 5.120.88.237 160041 port 609 160041 unique_id port 160041 remote_ip 10.8.0.134 160046 username pourshad 160046 kill_reason Another user logged on this global unique id 160046 mac 160046 bytes_out 0 160046 bytes_in 0 160046 station_ip 5.119.162.49 160046 port 334 160046 unique_id port 160046 remote_ip 10.8.1.154 160048 username mohammadmahdi 160048 kill_reason Another user logged on this global unique id 160048 mac 160048 bytes_out 0 160048 bytes_in 0 160048 station_ip 5.120.147.94 160048 port 666 160048 unique_id port 160051 username tahmasebi 160051 kill_reason Another user logged on this global unique id 160051 mac 160051 bytes_out 0 160051 bytes_in 0 160051 station_ip 5.119.74.98 160051 port 341 160051 unique_id port 160052 username mohammadmahdi 160052 mac 160052 bytes_out 0 160052 bytes_in 0 160052 station_ip 5.120.147.94 160052 port 666 160052 unique_id port 160054 username pourshad 160054 kill_reason Another user logged on this global unique id 160054 mac 160054 bytes_out 0 160054 bytes_in 0 160054 station_ip 5.119.162.49 160054 port 334 160054 unique_id port 160055 username tahmasebi 160055 kill_reason Another user logged on this global unique id 160055 mac 160055 bytes_out 0 160055 bytes_in 0 160055 station_ip 5.119.74.98 160055 port 341 160055 unique_id port 160065 username khalili 160065 kill_reason Another user logged on this global unique id 160065 mac 160065 bytes_out 0 160065 bytes_in 0 160065 station_ip 5.119.240.171 160065 port 340 160065 unique_id port 160073 username hashtadani4 160073 kill_reason Another user logged on this global unique id 160073 mac 160073 bytes_out 0 160073 bytes_in 0 160073 station_ip 83.122.147.98 160073 port 665 160073 unique_id port 160073 remote_ip 10.8.0.182 160078 username shadkam 160078 mac 160078 bytes_out 0 160078 bytes_in 0 160078 station_ip 37.129.113.214 160078 port 609 160078 unique_id port 160078 remote_ip 10.8.0.62 160079 username pourshad 160079 kill_reason Another user logged on this global unique id 160079 mac 160079 bytes_out 0 160079 bytes_in 0 160079 station_ip 5.119.162.49 160079 port 334 160079 unique_id port 160081 username tahmasebi 160081 mac 160081 bytes_out 72459 160081 bytes_in 477362 160081 station_ip 5.119.10.118 160081 port 342 160081 unique_id port 160081 remote_ip 10.8.1.90 160083 username mohammadjavad 160083 mac 160083 bytes_out 0 160083 bytes_in 0 160083 station_ip 83.122.67.125 160083 port 614 160083 unique_id port 160083 remote_ip 10.8.0.142 160086 username Mahin 160102 port 334 160086 kill_reason Another user logged on this global unique id 160086 mac 160086 bytes_out 0 160086 bytes_in 0 160086 station_ip 5.119.34.171 160086 port 662 160086 unique_id port 160086 remote_ip 10.8.0.162 160092 username houshang 160092 mac 160092 bytes_out 595545 160092 bytes_in 2372642 160092 station_ip 5.120.104.74 160092 port 614 160092 unique_id port 160092 remote_ip 10.8.0.134 160093 username hashtadani4 160093 mac 160093 bytes_out 760866 160093 bytes_in 9045355 160093 station_ip 83.122.147.98 160093 port 665 160093 unique_id port 160093 remote_ip 10.8.0.182 160094 username forozandeh1 160094 mac 160094 bytes_out 408095 160094 bytes_in 3679289 160094 station_ip 83.123.46.204 160050 unique_id port 160050 remote_ip 10.8.1.218 160056 username mohsenaskari 160056 mac 160056 bytes_out 0 160056 bytes_in 0 160056 station_ip 46.225.212.232 160056 port 653 160056 unique_id port 160056 remote_ip 10.8.0.170 160058 username kordestani 160058 mac 160058 bytes_out 0 160058 bytes_in 0 160058 station_ip 151.235.113.207 160058 port 648 160058 unique_id port 160058 remote_ip 10.8.0.74 160060 username godarzi 160060 mac 160060 bytes_out 0 160060 bytes_in 0 160060 station_ip 5.120.9.53 160060 port 339 160060 unique_id port 160060 remote_ip 10.8.1.230 160064 username hashtadani4 160064 mac 160064 bytes_out 260175 160064 bytes_in 1470409 160064 station_ip 83.122.147.98 160064 port 609 160064 unique_id port 160064 remote_ip 10.8.0.182 160070 username khademi 160070 kill_reason Another user logged on this global unique id 160070 mac 160070 bytes_out 0 160070 bytes_in 0 160070 station_ip 113.203.78.111 160070 port 614 160070 unique_id port 160072 username aminvpn 160072 mac 160072 bytes_out 0 160072 bytes_in 0 160072 station_ip 5.120.92.83 160072 port 609 160072 unique_id port 160072 remote_ip 10.8.0.14 160076 username forozandeh1 160076 mac 160076 bytes_out 0 160076 bytes_in 0 160076 station_ip 37.129.241.207 160076 port 659 160076 unique_id port 160076 remote_ip 10.8.0.130 160080 username khademi 160080 mac 160080 bytes_out 0 160080 bytes_in 0 160080 station_ip 113.203.78.111 160080 port 614 160080 unique_id port 160084 username tahmasebi 160084 mac 160084 bytes_out 0 160084 bytes_in 0 160084 station_ip 5.119.10.118 160084 port 334 160084 unique_id port 160084 remote_ip 10.8.1.90 160085 username malekpoir 160085 mac 160085 bytes_out 0 160085 bytes_in 0 160085 station_ip 5.120.124.135 160085 port 641 160085 unique_id port 160085 remote_ip 10.8.0.58 160088 username hashtadani4 160088 mac 160088 bytes_out 0 160088 bytes_in 0 160088 station_ip 83.122.147.98 160088 port 665 160088 unique_id port 160089 username hashtadani4 160089 mac 160089 bytes_out 0 160089 bytes_in 0 160089 station_ip 83.122.147.98 160089 port 665 160089 unique_id port 160089 remote_ip 10.8.0.182 160090 username malekpoir 160090 mac 160090 bytes_out 0 160090 bytes_in 0 160090 station_ip 5.120.124.135 160090 port 667 160090 unique_id port 160090 remote_ip 10.8.0.58 160095 username godarzi 160095 mac 160095 bytes_out 0 160095 bytes_in 0 160095 station_ip 5.120.9.53 160095 port 339 160095 unique_id port 160095 remote_ip 10.8.1.230 160097 username Mahin 160097 mac 160097 bytes_out 0 160097 bytes_in 0 160097 station_ip 5.119.34.171 160097 port 662 160097 unique_id port 160102 username tahmasebi 160102 mac 160102 bytes_out 868222 160102 bytes_in 9021568 160102 station_ip 5.119.10.118 160102 unique_id port 160102 remote_ip 10.8.1.90 160103 username tahmasebi 160103 mac 160103 bytes_out 0 160103 bytes_in 0 160103 station_ip 5.119.10.118 160103 port 334 160103 unique_id port 160103 remote_ip 10.8.1.90 160107 username ahmadi1 160107 mac 160107 bytes_out 0 160107 bytes_in 0 160107 station_ip 83.123.8.82 160107 port 670 160107 unique_id port 160107 remote_ip 10.8.0.250 160108 username tahmasebi 160108 mac 160108 bytes_out 0 160108 bytes_in 0 160108 station_ip 5.119.10.118 160108 port 334 160108 unique_id port 160108 remote_ip 10.8.1.90 160110 username aminvpn 160110 mac 160110 bytes_out 0 160110 bytes_in 0 160059 station_ip 113.203.78.111 160059 port 614 160059 unique_id port 160059 remote_ip 10.8.0.10 160061 username tahmasebi 160061 mac 160061 bytes_out 0 160061 bytes_in 0 160061 station_ip 5.119.74.98 160061 port 341 160061 unique_id port 160062 username pourshad 160062 kill_reason Another user logged on this global unique id 160062 mac 160062 bytes_out 0 160062 bytes_in 0 160062 station_ip 5.119.162.49 160062 port 334 160062 unique_id port 160063 username vanila 160063 mac 160063 bytes_out 0 160063 bytes_in 0 160063 station_ip 113.203.31.210 160063 port 653 160063 unique_id port 160063 remote_ip 10.8.0.178 160066 username godarzi 160066 mac 160066 bytes_out 0 160066 bytes_in 0 160066 station_ip 5.120.9.53 160066 port 339 160066 unique_id port 160066 remote_ip 10.8.1.230 160067 username sabaghnezhad 160067 mac 160067 bytes_out 0 160067 bytes_in 0 160067 station_ip 83.122.137.55 160067 port 648 160067 unique_id port 160067 remote_ip 10.8.0.186 160068 username godarzi 160068 mac 160068 bytes_out 0 160068 bytes_in 0 160068 station_ip 5.120.9.53 160068 port 339 160068 unique_id port 160068 remote_ip 10.8.1.230 160069 username alihosseini1 160069 mac 160069 bytes_out 0 160069 bytes_in 0 160069 station_ip 5.120.191.71 160069 port 653 160069 unique_id port 160069 remote_ip 10.8.0.22 160071 username pourshad 160071 kill_reason Another user logged on this global unique id 160071 mac 160071 bytes_out 0 160071 bytes_in 0 160071 station_ip 5.119.162.49 160071 port 334 160071 unique_id port 160074 username ahmadi1 160074 mac 160074 bytes_out 0 160074 bytes_in 0 160074 station_ip 37.129.144.46 160074 port 648 160074 unique_id port 160074 remote_ip 10.8.0.250 160075 username godarzi 160075 mac 160075 bytes_out 290660 160075 bytes_in 2460061 160075 station_ip 5.120.9.53 160075 port 339 160075 unique_id port 160075 remote_ip 10.8.1.230 160077 username aminvpn 160077 kill_reason Another user logged on this global unique id 160077 mac 160077 bytes_out 0 160077 bytes_in 0 160077 station_ip 5.120.92.83 160077 port 653 160077 unique_id port 160077 remote_ip 10.8.0.14 160082 username pourshad 160082 mac 160082 bytes_out 0 160082 bytes_in 0 160082 station_ip 5.119.162.49 160082 port 334 160082 unique_id port 160087 username pourshad 160087 kill_reason Another user logged on this global unique id 160087 mac 160087 bytes_out 0 160087 bytes_in 0 160087 station_ip 5.119.162.49 160087 port 666 160087 unique_id port 160087 remote_ip 10.8.0.18 160091 username tahmasebi 160091 mac 160091 bytes_out 0 160091 bytes_in 0 160091 station_ip 5.119.10.118 160091 port 668 160091 unique_id port 160091 remote_ip 10.8.0.42 160096 username tahmasebi 160096 mac 160096 bytes_out 2440 160096 bytes_in 4899 160096 station_ip 5.119.10.118 160096 port 334 160096 unique_id port 160096 remote_ip 10.8.1.90 160100 username malekpoir 160100 mac 160100 bytes_out 0 160100 bytes_in 0 160100 station_ip 5.120.113.196 160100 port 667 160100 unique_id port 160100 remote_ip 10.8.0.58 160101 username fezealinaghi 160101 kill_reason Another user logged on this global unique id 160101 mac 160101 bytes_out 0 160101 bytes_in 0 160101 station_ip 37.129.172.209 160101 port 662 160101 unique_id port 160101 remote_ip 10.8.0.78 160105 username hashtadani4 160105 mac 160105 bytes_out 0 160105 bytes_in 0 160105 station_ip 83.122.214.2 160105 port 339 160105 unique_id port 160105 remote_ip 10.8.1.142 160116 username shadkam 160116 mac 160116 bytes_out 1414023 160094 port 669 160094 unique_id port 160094 remote_ip 10.8.0.130 160098 username forozandeh1 160098 mac 160098 bytes_out 0 160098 bytes_in 0 160098 station_ip 113.203.51.180 160098 port 668 160098 unique_id port 160098 remote_ip 10.8.0.130 160099 username mohammadmahdi 160099 kill_reason Another user logged on this global unique id 160099 mac 160099 bytes_out 0 160099 bytes_in 0 160099 station_ip 5.120.147.94 160099 port 614 160099 unique_id port 160099 remote_ip 10.8.0.54 160104 username jamali 160104 mac 160104 bytes_out 2861294 160104 bytes_in 34028479 160104 station_ip 5.119.62.17 160104 port 641 160104 unique_id port 160104 remote_ip 10.8.0.70 160106 username tahmasebi 160106 mac 160106 bytes_out 142287 160106 bytes_in 715675 160106 station_ip 5.119.10.118 160106 port 334 160106 unique_id port 160106 remote_ip 10.8.1.90 160109 username aminvpn 160109 mac 160109 bytes_out 0 160109 bytes_in 0 160109 station_ip 5.120.92.83 160109 port 653 160109 unique_id port 160111 username aminvpn 160111 mac 160111 bytes_out 0 160111 bytes_in 0 160111 station_ip 5.120.92.83 160111 port 653 160111 unique_id port 160111 remote_ip 10.8.0.14 160114 username houshang 160114 mac 160114 bytes_out 50107 160114 bytes_in 75985 160114 station_ip 5.120.104.74 160114 port 670 160114 unique_id port 160114 remote_ip 10.8.0.134 160115 username aminvpn 160115 mac 160115 bytes_out 0 160115 bytes_in 0 160115 station_ip 5.120.92.83 160115 port 653 160115 unique_id port 160115 remote_ip 10.8.0.14 160126 username vanila 160126 mac 160126 bytes_out 294854 160126 bytes_in 1593428 160126 station_ip 37.129.9.115 160126 port 671 160126 unique_id port 160126 remote_ip 10.8.0.178 160127 username aminvpn 160127 mac 160127 bytes_out 0 160127 bytes_in 0 160127 station_ip 83.122.119.84 160127 port 670 160127 unique_id port 160127 remote_ip 10.8.0.14 160128 username aminvpn 160128 mac 160128 bytes_out 0 160128 bytes_in 0 160128 station_ip 5.120.92.83 160128 port 669 160128 unique_id port 160128 remote_ip 10.8.0.14 160131 username mohammadmahdi 160131 kill_reason Another user logged on this global unique id 160131 mac 160131 bytes_out 0 160131 bytes_in 0 160131 station_ip 5.120.147.94 160131 port 614 160131 unique_id port 160132 username aminvpn 160132 mac 160132 bytes_out 0 160132 bytes_in 0 160132 station_ip 5.120.92.83 160132 port 641 160132 unique_id port 160132 remote_ip 10.8.0.14 160134 username aminvpn 160134 mac 160134 bytes_out 0 160134 bytes_in 0 160134 station_ip 5.120.92.83 160134 port 641 160134 unique_id port 160134 remote_ip 10.8.0.14 160135 username tahmasebi 160135 mac 160135 bytes_out 0 160135 bytes_in 0 160135 station_ip 5.119.10.118 160135 port 334 160135 unique_id port 160135 remote_ip 10.8.1.90 160139 username jamali 160139 mac 160139 bytes_out 0 160139 bytes_in 0 160139 station_ip 5.119.62.17 160139 port 641 160139 unique_id port 160139 remote_ip 10.8.0.70 160141 username aminvpn 160141 mac 160141 bytes_out 0 160141 bytes_in 0 160141 station_ip 5.120.92.83 160141 port 641 160141 unique_id port 160141 remote_ip 10.8.0.14 160144 username tahmasebi 160144 mac 160144 bytes_out 2071 160144 bytes_in 5524 160144 station_ip 5.119.10.118 160144 port 334 160144 unique_id port 160144 remote_ip 10.8.1.90 160146 username godarzi 160146 mac 160146 bytes_out 906062 160146 bytes_in 10154869 160146 station_ip 5.120.9.53 160146 port 339 160146 unique_id port 160146 remote_ip 10.8.1.230 160110 station_ip 83.122.119.84 160110 port 671 160110 unique_id port 160110 remote_ip 10.8.0.14 160112 username tahmasebi 160112 mac 160112 bytes_out 0 160112 bytes_in 0 160112 station_ip 5.119.10.118 160112 port 334 160112 unique_id port 160112 remote_ip 10.8.1.90 160113 username aminvpn 160113 mac 160113 bytes_out 0 160113 bytes_in 0 160113 station_ip 83.122.119.84 160113 port 671 160113 unique_id port 160113 remote_ip 10.8.0.14 160118 username aminvpn 160118 mac 160118 bytes_out 0 160118 bytes_in 0 160118 station_ip 83.122.119.84 160118 port 670 160118 unique_id port 160118 remote_ip 10.8.0.14 160120 username hashtadani4 160120 mac 160120 bytes_out 0 160120 bytes_in 0 160120 station_ip 5.202.62.103 160120 port 653 160120 unique_id port 160120 remote_ip 10.8.0.182 160123 username mosi 160123 kill_reason Another user logged on this global unique id 160123 mac 160123 bytes_out 0 160123 bytes_in 0 160123 station_ip 151.235.89.191 160123 port 667 160123 unique_id port 160123 remote_ip 10.8.0.138 160124 username aminvpn 160124 mac 160124 bytes_out 0 160124 bytes_in 0 160124 station_ip 5.120.92.83 160124 port 669 160124 unique_id port 160124 remote_ip 10.8.0.14 160129 username jamali 160129 mac 160129 bytes_out 0 160129 bytes_in 0 160129 station_ip 5.119.62.17 160129 port 641 160129 unique_id port 160129 remote_ip 10.8.0.70 160130 username aminvpn 160130 mac 160130 bytes_out 0 160130 bytes_in 0 160130 station_ip 83.122.119.84 160130 port 670 160130 unique_id port 160130 remote_ip 10.8.0.14 160133 username aminvpn 160133 mac 160133 bytes_out 0 160133 bytes_in 0 160133 station_ip 83.122.119.84 160133 port 670 160133 unique_id port 160133 remote_ip 10.8.0.14 160136 username meysam 160136 mac 160136 bytes_out 1494035 160136 bytes_in 22570961 160136 station_ip 188.158.48.58 160136 port 672 160136 unique_id port 160136 remote_ip 10.8.0.110 160137 username aminvpn 160137 mac 160137 bytes_out 0 160137 bytes_in 0 160137 station_ip 83.122.119.84 160137 port 670 160137 unique_id port 160137 remote_ip 10.8.0.14 160138 username aminvpn 160138 mac 160138 bytes_out 0 160138 bytes_in 0 160138 station_ip 5.120.92.83 160138 port 671 160138 unique_id port 160138 remote_ip 10.8.0.14 160143 username aminvpn 160143 mac 160143 bytes_out 0 160143 bytes_in 0 160143 station_ip 83.122.119.84 160143 port 670 160143 unique_id port 160143 remote_ip 10.8.0.14 160152 username hashtadani4 160152 mac 160152 bytes_out 27869 160152 bytes_in 366209 160152 station_ip 83.122.214.2 160152 port 641 160152 unique_id port 160152 remote_ip 10.8.0.182 160154 username hashtadani4 160154 mac 160154 bytes_out 0 160154 bytes_in 0 160154 station_ip 83.122.214.2 160154 port 641 160154 unique_id port 160154 remote_ip 10.8.0.182 160156 username hashtadani4 160156 mac 160156 bytes_out 0 160156 bytes_in 0 160156 station_ip 83.122.214.2 160156 port 672 160156 unique_id port 160156 remote_ip 10.8.0.182 160160 username jafari 160160 kill_reason Another user logged on this global unique id 160160 mac 160160 bytes_out 0 160160 bytes_in 0 160160 station_ip 5.134.143.111 160160 port 668 160160 unique_id port 160160 remote_ip 10.8.0.242 160162 username hashtadani4 160162 kill_reason Maximum check online fails reached 160162 mac 160162 bytes_out 0 160162 bytes_in 0 160162 station_ip 83.122.214.2 160162 port 670 160162 unique_id port 160164 username aminvpn 160164 mac 160164 bytes_out 0 160164 bytes_in 0 160116 bytes_in 16730928 160116 station_ip 37.129.176.226 160116 port 339 160116 unique_id port 160116 remote_ip 10.8.1.218 160117 username Mahin 160117 mac 160117 bytes_out 0 160117 bytes_in 0 160117 station_ip 5.119.34.171 160117 port 669 160117 unique_id port 160117 remote_ip 10.8.0.162 160119 username aminvpn 160119 mac 160119 bytes_out 0 160119 bytes_in 0 160119 station_ip 5.120.92.83 160119 port 669 160119 unique_id port 160119 remote_ip 10.8.0.14 160121 username tahmasebi 160121 mac 160121 bytes_out 0 160121 bytes_in 0 160121 station_ip 5.119.10.118 160121 port 334 160121 unique_id port 160121 remote_ip 10.8.1.90 160122 username aminvpn 160122 mac 160122 bytes_out 0 160122 bytes_in 0 160122 station_ip 83.122.119.84 160122 port 670 160122 unique_id port 160122 remote_ip 10.8.0.14 160125 username aminvpn 160125 mac 160125 bytes_out 807314 160125 bytes_in 6632493 160125 station_ip 5.120.92.83 160125 port 341 160125 unique_id port 160125 remote_ip 10.8.1.6 160140 username aminvpn 160140 mac 160140 bytes_out 0 160140 bytes_in 0 160140 station_ip 83.122.119.84 160140 port 670 160140 unique_id port 160140 remote_ip 10.8.0.14 160142 username hashtadani4 160142 mac 160142 bytes_out 488356 160142 bytes_in 8103381 160142 station_ip 5.202.62.103 160142 port 653 160142 unique_id port 160142 remote_ip 10.8.0.182 160145 username aminvpn 160145 mac 160145 bytes_out 0 160145 bytes_in 0 160145 station_ip 5.120.92.83 160145 port 653 160145 unique_id port 160145 remote_ip 10.8.0.14 160148 username aminvpn 160148 mac 160148 bytes_out 0 160148 bytes_in 0 160148 station_ip 5.120.92.83 160148 port 653 160148 unique_id port 160148 remote_ip 10.8.0.14 160151 username aminvpn 160151 mac 160151 bytes_out 0 160151 bytes_in 0 160151 station_ip 83.122.119.84 160151 port 670 160151 unique_id port 160151 remote_ip 10.8.0.14 160153 username aminvpn 160153 mac 160153 bytes_out 0 160153 bytes_in 0 160153 station_ip 5.120.92.83 160153 port 672 160153 unique_id port 160153 remote_ip 10.8.0.14 160158 username aminvpn 160158 mac 160158 bytes_out 0 160158 bytes_in 0 160158 station_ip 5.120.92.83 160158 port 674 160158 unique_id port 160158 remote_ip 10.8.0.14 160159 username hashtadani4 160159 kill_reason Maximum number of concurrent logins reached 160159 mac 160159 bytes_out 0 160159 bytes_in 0 160159 station_ip 83.122.214.2 160159 port 672 160159 unique_id port 160161 username aminvpn 160161 mac 160161 bytes_out 0 160161 bytes_in 0 160161 station_ip 83.122.119.84 160161 port 669 160161 unique_id port 160161 remote_ip 10.8.0.14 160163 username hashtadani4 160163 kill_reason Maximum check online fails reached 160163 mac 160163 bytes_out 0 160163 bytes_in 0 160163 station_ip 83.122.214.2 160163 port 641 160163 unique_id port 160167 username aminvpn 160167 mac 160167 bytes_out 0 160167 bytes_in 0 160167 station_ip 83.122.119.84 160167 port 669 160167 unique_id port 160167 remote_ip 10.8.0.14 160169 username farhad2 160169 mac 160169 bytes_out 481808 160169 bytes_in 1469309 160169 station_ip 5.119.18.135 160169 port 334 160169 unique_id port 160169 remote_ip 10.8.1.222 160173 username pourshad 160173 mac 160173 bytes_out 0 160173 bytes_in 0 160173 station_ip 5.119.162.49 160173 port 666 160173 unique_id port 160174 username aminvpn 160174 mac 160174 bytes_out 0 160174 bytes_in 0 160174 station_ip 83.122.119.84 160174 port 669 160174 unique_id port 160147 username aminvpn 160147 mac 160147 bytes_out 0 160147 bytes_in 0 160147 station_ip 83.122.119.84 160147 port 670 160147 unique_id port 160147 remote_ip 10.8.0.14 160149 username mehdizare 160149 mac 160149 bytes_out 1688403 160149 bytes_in 16857755 160149 station_ip 83.122.87.157 160149 port 661 160149 unique_id port 160149 remote_ip 10.8.0.90 160150 username shadkam 160150 mac 160150 bytes_out 0 160150 bytes_in 0 160150 station_ip 83.123.75.160 160150 port 334 160150 unique_id port 160150 remote_ip 10.8.1.218 160155 username aminvpn 160155 mac 160155 bytes_out 0 160155 bytes_in 0 160155 station_ip 83.122.119.84 160155 port 670 160155 unique_id port 160155 remote_ip 10.8.0.14 160157 username kalantary 160157 mac 160157 bytes_out 0 160157 bytes_in 0 160157 station_ip 83.122.9.8 160157 port 669 160157 unique_id port 160157 remote_ip 10.8.0.98 160170 username alipour 160170 mac 160170 bytes_out 3327460 160170 bytes_in 37853750 160170 station_ip 83.122.235.114 160170 port 328 160170 unique_id port 160170 remote_ip 10.8.1.50 160171 username aminvpn 160171 mac 160171 bytes_out 0 160171 bytes_in 0 160171 station_ip 83.122.119.84 160171 port 669 160171 unique_id port 160171 remote_ip 10.8.0.14 160172 username aminvpn 160172 mac 160172 bytes_out 0 160172 bytes_in 0 160172 station_ip 5.120.92.83 160172 port 675 160172 unique_id port 160172 remote_ip 10.8.0.14 160175 username vanila 160175 mac 160175 bytes_out 0 160175 bytes_in 0 160175 station_ip 37.129.9.115 160175 port 672 160175 unique_id port 160175 remote_ip 10.8.0.178 160177 username aminvpn 160177 mac 160177 bytes_out 0 160177 bytes_in 0 160177 station_ip 5.120.92.83 160177 port 666 160177 unique_id port 160177 remote_ip 10.8.0.14 160178 username aminvpn 160178 mac 160178 bytes_out 0 160178 bytes_in 0 160178 station_ip 83.122.119.84 160178 port 669 160178 unique_id port 160178 remote_ip 10.8.0.14 160181 username aminvpn 160181 mac 160181 bytes_out 0 160181 bytes_in 0 160181 station_ip 5.120.92.83 160181 port 666 160181 unique_id port 160181 remote_ip 10.8.0.14 160188 username hashtadani4 160188 mac 160188 bytes_out 465906 160188 bytes_in 5832718 160188 station_ip 83.122.214.2 160188 port 669 160188 unique_id port 160188 remote_ip 10.8.0.182 160191 username aminvpn 160191 mac 160191 bytes_out 0 160191 bytes_in 0 160191 station_ip 5.120.92.83 160191 port 666 160191 unique_id port 160191 remote_ip 10.8.0.14 160194 username aminvpn 160194 mac 160194 bytes_out 0 160194 bytes_in 0 160194 station_ip 5.120.92.83 160194 port 614 160194 unique_id port 160194 remote_ip 10.8.0.14 160197 username saeed9658 160197 mac 160197 bytes_out 2199 160197 bytes_in 5143 160197 station_ip 5.120.178.66 160197 port 666 160197 unique_id port 160197 remote_ip 10.8.0.166 160199 username aminvpn 160199 mac 160199 bytes_out 0 160199 bytes_in 0 160199 station_ip 5.120.92.83 160199 port 666 160199 unique_id port 160199 remote_ip 10.8.0.14 160203 username hashtadani4 160203 kill_reason Maximum check online fails reached 160203 mac 160203 bytes_out 0 160203 bytes_in 0 160203 station_ip 83.122.214.2 160203 port 614 160203 unique_id port 160208 username fezealinaghi 160208 kill_reason Another user logged on this global unique id 160208 mac 160208 bytes_out 0 160208 bytes_in 0 160208 station_ip 37.129.172.209 160208 port 662 160208 unique_id port 160212 username aminvpn 160212 mac 160212 bytes_out 0 160164 station_ip 5.120.92.83 160164 port 674 160164 unique_id port 160164 remote_ip 10.8.0.14 160165 username aminvpn 160165 mac 160165 bytes_out 0 160165 bytes_in 0 160165 station_ip 83.122.119.84 160165 port 669 160165 unique_id port 160165 remote_ip 10.8.0.14 160166 username aminvpn 160166 mac 160166 bytes_out 0 160166 bytes_in 0 160166 station_ip 5.120.92.83 160166 port 675 160166 unique_id port 160166 remote_ip 10.8.0.14 160168 username aminvpn 160168 mac 160168 bytes_out 0 160168 bytes_in 0 160168 station_ip 5.120.92.83 160168 port 675 160168 unique_id port 160168 remote_ip 10.8.0.14 160176 username kalantary 160176 mac 160176 bytes_out 555391 160176 bytes_in 4521602 160176 station_ip 83.122.9.8 160176 port 674 160176 unique_id port 160176 remote_ip 10.8.0.98 160180 username jafari 160180 kill_reason Another user logged on this global unique id 160180 mac 160180 bytes_out 0 160180 bytes_in 0 160180 station_ip 5.134.143.111 160180 port 668 160180 unique_id port 160182 username saeed9658 160182 mac 160182 bytes_out 0 160182 bytes_in 0 160182 station_ip 5.120.178.66 160182 port 661 160182 unique_id port 160182 remote_ip 10.8.0.166 160183 username aminvpn 160183 mac 160183 bytes_out 0 160183 bytes_in 0 160183 station_ip 83.122.119.84 160183 port 674 160183 unique_id port 160183 remote_ip 10.8.0.14 160185 username aminvpn 160185 mac 160185 bytes_out 0 160185 bytes_in 0 160185 station_ip 5.120.92.83 160185 port 666 160185 unique_id port 160185 remote_ip 10.8.0.14 160186 username aminvpn 160186 mac 160186 bytes_out 0 160186 bytes_in 0 160186 station_ip 83.122.119.84 160186 port 674 160186 unique_id port 160186 remote_ip 10.8.0.14 160192 username saeed9658 160192 mac 160192 bytes_out 0 160192 bytes_in 0 160192 station_ip 5.120.178.66 160192 port 614 160192 unique_id port 160192 remote_ip 10.8.0.166 160193 username aminvpn 160193 mac 160193 bytes_out 0 160193 bytes_in 0 160193 station_ip 83.122.119.84 160193 port 669 160193 unique_id port 160193 remote_ip 10.8.0.14 160195 username fezealinaghi 160195 kill_reason Another user logged on this global unique id 160195 mac 160195 bytes_out 0 160195 bytes_in 0 160195 station_ip 37.129.172.209 160195 port 662 160195 unique_id port 160196 username hashtadani4 160196 mac 160196 bytes_out 0 160196 bytes_in 0 160196 station_ip 83.122.214.2 160196 port 614 160196 unique_id port 160196 remote_ip 10.8.0.182 160200 username aminvpn 160200 mac 160200 bytes_out 0 160200 bytes_in 0 160200 station_ip 83.122.119.84 160200 port 674 160200 unique_id port 160200 remote_ip 10.8.0.14 160201 username aminvpn 160201 mac 160201 bytes_out 0 160201 bytes_in 0 160201 station_ip 5.120.92.83 160201 port 675 160201 unique_id port 160201 remote_ip 10.8.0.14 160206 username aminvpn 160206 mac 160206 bytes_out 0 160206 bytes_in 0 160206 station_ip 83.122.119.84 160206 port 678 160206 unique_id port 160206 remote_ip 10.8.0.14 160210 username aminvpn 160210 mac 160210 bytes_out 0 160210 bytes_in 0 160210 station_ip 5.120.92.83 160210 port 679 160210 unique_id port 160210 remote_ip 10.8.0.14 160213 username hashtadani4 160213 mac 160213 bytes_out 88351 160213 bytes_in 844086 160213 station_ip 83.122.214.2 160213 port 341 160213 unique_id port 160213 remote_ip 10.8.1.142 160219 username forozandeh1 160219 mac 160219 bytes_out 0 160219 bytes_in 0 160219 station_ip 83.122.16.93 160219 port 341 160219 unique_id port 160174 remote_ip 10.8.0.14 160179 username saeed9658 160179 mac 160179 bytes_out 0 160179 bytes_in 0 160179 station_ip 5.120.178.66 160179 port 661 160179 unique_id port 160179 remote_ip 10.8.0.166 160184 username saeed9658 160184 mac 160184 bytes_out 0 160184 bytes_in 0 160184 station_ip 5.120.178.66 160184 port 661 160184 unique_id port 160184 remote_ip 10.8.0.166 160187 username mohammadmahdi 160187 mac 160187 bytes_out 0 160187 bytes_in 0 160187 station_ip 5.120.147.94 160187 port 614 160187 unique_id port 160189 username aminvpn 160189 mac 160189 bytes_out 0 160189 bytes_in 0 160189 station_ip 5.120.92.83 160189 port 666 160189 unique_id port 160189 remote_ip 10.8.0.14 160190 username aminvpn 160190 mac 160190 bytes_out 0 160190 bytes_in 0 160190 station_ip 83.122.119.84 160190 port 614 160190 unique_id port 160190 remote_ip 10.8.0.14 160198 username aminvpn 160198 mac 160198 bytes_out 0 160198 bytes_in 0 160198 station_ip 83.122.119.84 160198 port 674 160198 unique_id port 160198 remote_ip 10.8.0.14 160202 username khademi 160202 mac 160202 bytes_out 0 160202 bytes_in 0 160202 station_ip 113.203.78.111 160202 port 659 160202 unique_id port 160202 remote_ip 10.8.0.10 160204 username aminvpn 160204 mac 160204 bytes_out 0 160204 bytes_in 0 160204 station_ip 83.122.119.84 160204 port 676 160204 unique_id port 160204 remote_ip 10.8.0.14 160205 username aminvpn 160205 mac 160205 bytes_out 0 160205 bytes_in 0 160205 station_ip 5.120.92.83 160205 port 677 160205 unique_id port 160205 remote_ip 10.8.0.14 160207 username sabaghnezhad 160207 mac 160207 bytes_out 0 160207 bytes_in 0 160207 station_ip 83.123.107.115 160207 port 669 160207 unique_id port 160207 remote_ip 10.8.0.186 160209 username kordestani 160209 mac 160209 bytes_out 0 160209 bytes_in 0 160209 station_ip 151.235.91.218 160209 port 672 160209 unique_id port 160209 remote_ip 10.8.0.74 160211 username aminvpn 160211 mac 160211 bytes_out 0 160211 bytes_in 0 160211 station_ip 83.122.119.84 160211 port 669 160211 unique_id port 160211 remote_ip 10.8.0.14 160217 username aminvpn 160217 mac 160217 bytes_out 0 160217 bytes_in 0 160217 station_ip 5.120.92.83 160217 port 678 160217 unique_id port 160217 remote_ip 10.8.0.14 160221 username ahmadi1 160221 mac 160221 bytes_out 0 160221 bytes_in 0 160221 station_ip 83.123.8.82 160221 port 669 160221 unique_id port 160221 remote_ip 10.8.0.250 160223 username aminvpn 160223 mac 160223 bytes_out 0 160223 bytes_in 0 160223 station_ip 83.122.119.84 160223 port 679 160223 unique_id port 160223 remote_ip 10.8.0.14 160226 username pourshad 160226 mac 160226 bytes_out 0 160226 bytes_in 0 160226 station_ip 5.119.162.49 160226 port 341 160226 unique_id port 160226 remote_ip 10.8.1.154 160235 username aminvpn 160235 mac 160235 bytes_out 0 160235 bytes_in 0 160235 station_ip 83.122.119.84 160235 port 671 160235 unique_id port 160235 remote_ip 10.8.0.14 160239 username mehdizare 160239 mac 160239 bytes_out 1674693 160239 bytes_in 34362106 160239 station_ip 83.122.87.157 160239 port 653 160239 unique_id port 160239 remote_ip 10.8.0.90 160243 username aminvpn 160243 mac 160243 bytes_out 0 160243 bytes_in 0 160243 station_ip 5.120.92.83 160243 port 653 160243 unique_id port 160243 remote_ip 10.8.0.14 160244 username aminvpn 160244 mac 160244 bytes_out 0 160244 bytes_in 0 160212 bytes_in 0 160212 station_ip 5.120.92.83 160212 port 678 160212 unique_id port 160212 remote_ip 10.8.0.14 160214 username aminvpn 160214 mac 160214 bytes_out 0 160214 bytes_in 0 160214 station_ip 83.122.119.84 160214 port 669 160214 unique_id port 160214 remote_ip 10.8.0.14 160215 username aminvpn 160215 mac 160215 bytes_out 0 160215 bytes_in 0 160215 station_ip 5.120.92.83 160215 port 678 160215 unique_id port 160215 remote_ip 10.8.0.14 160216 username aminvpn 160216 mac 160216 bytes_out 0 160216 bytes_in 0 160216 station_ip 83.122.119.84 160216 port 669 160216 unique_id port 160216 remote_ip 10.8.0.14 160218 username hashtadani4 160218 mac 160218 bytes_out 0 160218 bytes_in 0 160218 station_ip 83.122.214.2 160218 port 342 160218 unique_id port 160218 remote_ip 10.8.1.142 160222 username houshang 160222 mac 160222 bytes_out 0 160222 bytes_in 0 160222 station_ip 5.120.104.74 160222 port 661 160222 unique_id port 160222 remote_ip 10.8.0.134 160224 username jamali 160224 mac 160224 bytes_out 0 160224 bytes_in 0 160224 station_ip 5.119.62.17 160224 port 671 160224 unique_id port 160224 remote_ip 10.8.0.70 160227 username aminvpn 160227 mac 160227 bytes_out 0 160227 bytes_in 0 160227 station_ip 5.120.92.83 160227 port 661 160227 unique_id port 160227 remote_ip 10.8.0.14 160228 username aminvpn 160228 mac 160228 bytes_out 0 160228 bytes_in 0 160228 station_ip 83.122.119.84 160228 port 669 160228 unique_id port 160228 remote_ip 10.8.0.14 160230 username kalantary 160230 mac 160230 bytes_out 635319 160230 bytes_in 7966463 160230 station_ip 83.122.107.140 160230 port 659 160230 unique_id port 160230 remote_ip 10.8.0.98 160231 username sabaghnezhad 160231 mac 160231 bytes_out 0 160231 bytes_in 0 160231 station_ip 113.203.69.22 160231 port 669 160231 unique_id port 160231 remote_ip 10.8.0.186 160232 username aminvpn 160232 mac 160232 bytes_out 0 160232 bytes_in 0 160232 station_ip 5.120.92.83 160232 port 661 160232 unique_id port 160232 remote_ip 10.8.0.14 160236 username hashtadani4 160236 mac 160236 bytes_out 0 160236 bytes_in 0 160236 station_ip 83.122.214.2 160236 port 341 160236 unique_id port 160236 remote_ip 10.8.1.142 160238 username aminvpn 160238 mac 160238 bytes_out 0 160238 bytes_in 0 160238 station_ip 5.120.92.83 160238 port 674 160238 unique_id port 160238 remote_ip 10.8.0.14 160241 username aminvpn 160241 mac 160241 bytes_out 0 160241 bytes_in 0 160241 station_ip 83.122.119.84 160241 port 661 160241 unique_id port 160241 remote_ip 10.8.0.14 160245 username jafari 160245 kill_reason Another user logged on this global unique id 160245 mac 160245 bytes_out 0 160245 bytes_in 0 160245 station_ip 5.134.143.111 160245 port 668 160245 unique_id port 160246 username kordestani 160246 mac 160246 bytes_out 0 160246 bytes_in 0 160246 station_ip 151.235.114.68 160246 port 672 160246 unique_id port 160246 remote_ip 10.8.0.74 160248 username ahmadi1 160248 mac 160248 bytes_out 0 160248 bytes_in 0 160248 station_ip 83.123.8.82 160248 port 661 160248 unique_id port 160248 remote_ip 10.8.0.250 160250 username hashtadani4 160250 mac 160250 bytes_out 0 160250 bytes_in 0 160250 station_ip 83.122.214.2 160250 port 666 160250 unique_id port 160250 remote_ip 10.8.0.182 160252 username aminvpn 160252 mac 160252 bytes_out 26936 160252 bytes_in 78337 160252 station_ip 5.120.92.83 160252 port 653 160252 unique_id port 160219 remote_ip 10.8.1.250 160220 username pourshad 160220 mac 160220 bytes_out 61746 160220 bytes_in 194049 160220 station_ip 5.119.162.49 160220 port 334 160220 unique_id port 160220 remote_ip 10.8.1.154 160225 username alihosseini1 160225 mac 160225 bytes_out 22110 160225 bytes_in 38269 160225 station_ip 5.120.114.117 160225 port 674 160225 unique_id port 160225 remote_ip 10.8.0.22 160229 username hashtadani4 160229 mac 160229 bytes_out 0 160229 bytes_in 0 160229 station_ip 83.122.214.2 160229 port 341 160229 unique_id port 160229 remote_ip 10.8.1.142 160233 username aminvpn 160233 mac 160233 bytes_out 0 160233 bytes_in 0 160233 station_ip 83.122.119.84 160233 port 669 160233 unique_id port 160233 remote_ip 10.8.0.14 160234 username aminvpn 160234 mac 160234 bytes_out 0 160234 bytes_in 0 160234 station_ip 5.120.92.83 160234 port 661 160234 unique_id port 160234 remote_ip 10.8.0.14 160237 username ahmadi1 160237 mac 160237 bytes_out 0 160237 bytes_in 0 160237 station_ip 83.123.8.82 160237 port 661 160237 unique_id port 160237 remote_ip 10.8.0.250 160240 username mohammadjavad 160240 mac 160240 bytes_out 0 160240 bytes_in 0 160240 station_ip 83.122.114.188 160240 port 677 160240 unique_id port 160240 remote_ip 10.8.0.142 160242 username fezealinaghi 160242 kill_reason Another user logged on this global unique id 160242 mac 160242 bytes_out 0 160242 bytes_in 0 160242 station_ip 37.129.172.209 160242 port 662 160242 unique_id port 160249 username forozandeh1 160249 mac 160249 bytes_out 0 160249 bytes_in 0 160249 station_ip 83.123.4.55 160249 port 341 160249 unique_id port 160249 remote_ip 10.8.1.250 160251 username moradi 160251 mac 160251 bytes_out 0 160251 bytes_in 0 160251 station_ip 46.225.209.18 160251 port 609 160251 unique_id port 160251 remote_ip 10.8.0.226 160253 username mahdiyehalizadeh 160253 mac 160253 bytes_out 973929 160253 bytes_in 10653879 160253 station_ip 5.119.159.130 160253 port 665 160253 unique_id port 160253 remote_ip 10.8.0.82 160254 username aminvpn 160254 mac 160254 bytes_out 0 160254 bytes_in 0 160254 station_ip 83.122.119.84 160254 port 609 160254 unique_id port 160254 remote_ip 10.8.0.14 160255 username aminvpn 160255 mac 160255 bytes_out 0 160255 bytes_in 0 160255 station_ip 5.120.92.83 160255 port 653 160255 unique_id port 160255 remote_ip 10.8.0.14 160258 username sabaghnezhad 160258 mac 160258 bytes_out 0 160258 bytes_in 0 160258 station_ip 113.203.69.22 160258 port 659 160258 unique_id port 160258 remote_ip 10.8.0.186 160261 username aminvpn 160261 mac 160261 bytes_out 0 160261 bytes_in 0 160261 station_ip 5.120.92.83 160261 port 665 160261 unique_id port 160261 remote_ip 10.8.0.14 160262 username aminvpn 160262 mac 160262 bytes_out 0 160262 bytes_in 0 160262 station_ip 83.122.119.84 160262 port 666 160262 unique_id port 160262 remote_ip 10.8.0.14 160263 username aminvpn 160263 mac 160263 bytes_out 0 160263 bytes_in 0 160263 station_ip 5.120.92.83 160263 port 672 160263 unique_id port 160263 remote_ip 10.8.0.14 160267 username aminvpn 160267 mac 160267 bytes_out 0 160267 bytes_in 0 160267 station_ip 83.122.119.84 160267 port 666 160267 unique_id port 160267 remote_ip 10.8.0.14 160269 username farhad2 160269 mac 160269 bytes_out 470479 160269 bytes_in 7255953 160269 station_ip 5.119.18.135 160269 port 341 160269 unique_id port 160269 remote_ip 10.8.1.222 160278 username ahmadi1 160244 station_ip 83.122.119.84 160244 port 661 160244 unique_id port 160244 remote_ip 10.8.0.14 160247 username farhad2 160247 mac 160247 bytes_out 0 160247 bytes_in 0 160247 station_ip 5.119.18.135 160247 port 666 160247 unique_id port 160247 remote_ip 10.8.0.190 160256 username pourshad 160256 kill_reason Another user logged on this global unique id 160256 mac 160256 bytes_out 0 160256 bytes_in 0 160256 station_ip 5.119.162.49 160256 port 334 160256 unique_id port 160256 remote_ip 10.8.1.154 160257 username tahmasebi 160257 kill_reason Another user logged on this global unique id 160257 mac 160257 bytes_out 0 160257 bytes_in 0 160257 station_ip 5.119.190.34 160257 port 339 160257 unique_id port 160257 remote_ip 10.8.1.90 160260 username aminvpn 160260 mac 160260 bytes_out 0 160260 bytes_in 0 160260 station_ip 83.122.119.84 160260 port 609 160260 unique_id port 160260 remote_ip 10.8.0.14 160265 username hashtadani4 160265 mac 160265 bytes_out 0 160265 bytes_in 0 160265 station_ip 83.122.214.2 160265 port 609 160265 unique_id port 160265 remote_ip 10.8.0.182 160268 username jafari 160268 kill_reason Another user logged on this global unique id 160268 mac 160268 bytes_out 0 160268 bytes_in 0 160268 station_ip 5.134.143.111 160268 port 668 160268 unique_id port 160270 username alikomsari 160270 kill_reason Maximum number of concurrent logins reached 160270 mac 160270 bytes_out 0 160270 bytes_in 0 160270 station_ip 5.120.69.200 160270 port 342 160270 unique_id port 160272 username aminvpn 160272 mac 160272 bytes_out 0 160272 bytes_in 0 160272 station_ip 5.120.92.83 160272 port 609 160272 unique_id port 160272 remote_ip 10.8.0.14 160273 username jafari 160273 mac 160273 bytes_out 0 160273 bytes_in 0 160273 station_ip 5.134.143.111 160273 port 668 160273 unique_id port 160275 username aminvpn 160275 mac 160275 bytes_out 0 160275 bytes_in 0 160275 station_ip 83.122.119.84 160275 port 647 160275 unique_id port 160275 remote_ip 10.8.0.14 160276 username aminvpn 160276 mac 160276 bytes_out 0 160276 bytes_in 0 160276 station_ip 5.120.92.83 160276 port 659 160276 unique_id port 160276 remote_ip 10.8.0.14 160280 username tahmasebi 160280 mac 160280 bytes_out 0 160280 bytes_in 0 160280 station_ip 5.119.190.34 160280 port 339 160280 unique_id port 160281 username rezaei 160281 mac 160281 bytes_out 624781 160281 bytes_in 5305566 160281 station_ip 5.119.53.117 160281 port 609 160281 unique_id port 160281 remote_ip 10.8.0.230 160282 username tahmasebi 160282 mac 160282 bytes_out 0 160282 bytes_in 0 160282 station_ip 5.119.190.34 160282 port 339 160282 unique_id port 160282 remote_ip 10.8.1.90 160286 username naeimeh 160286 mac 160286 bytes_out 0 160286 bytes_in 0 160286 station_ip 37.129.58.42 160286 port 672 160286 unique_id port 160291 username aminvpn 160291 mac 160291 bytes_out 0 160291 bytes_in 0 160291 station_ip 83.122.119.84 160291 port 672 160291 unique_id port 160291 remote_ip 10.8.0.14 160293 username tahmasebi 160293 mac 160293 bytes_out 13183 160293 bytes_in 25220 160293 station_ip 5.119.190.34 160293 port 647 160293 unique_id port 160293 remote_ip 10.8.0.42 160297 username aminvpn 160297 mac 160297 bytes_out 0 160297 bytes_in 0 160297 station_ip 83.122.119.84 160297 port 677 160297 unique_id port 160297 remote_ip 10.8.0.14 160301 username naeimeh 160301 mac 160301 bytes_out 79425 160301 bytes_in 63254 160301 station_ip 37.129.21.27 160301 port 674 160301 unique_id port 160252 remote_ip 10.8.0.14 160259 username farhad2 160259 mac 160259 bytes_out 0 160259 bytes_in 0 160259 station_ip 5.119.18.135 160259 port 672 160259 unique_id port 160259 remote_ip 10.8.0.190 160264 username hashtadani4 160264 mac 160264 bytes_out 0 160264 bytes_in 0 160264 station_ip 83.122.214.2 160264 port 342 160264 unique_id port 160264 remote_ip 10.8.1.142 160266 username hashtadani4 160266 mac 160266 bytes_out 0 160266 bytes_in 0 160266 station_ip 83.122.214.2 160266 port 672 160266 unique_id port 160266 remote_ip 10.8.0.182 160271 username alikomsari 160271 mac 160271 bytes_out 0 160271 bytes_in 0 160271 station_ip 5.120.69.200 160271 port 647 160271 unique_id port 160271 remote_ip 10.8.0.26 160274 username shadkam 160274 mac 160274 bytes_out 474049 160274 bytes_in 8290922 160274 station_ip 83.122.188.234 160274 port 659 160274 unique_id port 160274 remote_ip 10.8.0.62 160277 username aminvpn 160277 mac 160277 bytes_out 0 160277 bytes_in 0 160277 station_ip 83.122.119.84 160277 port 674 160277 unique_id port 160277 remote_ip 10.8.0.14 160279 username khademi 160279 kill_reason Another user logged on this global unique id 160279 mac 160279 bytes_out 0 160279 bytes_in 0 160279 station_ip 113.203.78.111 160279 port 675 160279 unique_id port 160279 remote_ip 10.8.0.10 160284 username naeimeh 160284 kill_reason Another user logged on this global unique id 160284 mac 160284 bytes_out 0 160284 bytes_in 0 160284 station_ip 37.129.58.42 160284 port 672 160284 unique_id port 160284 remote_ip 10.8.0.118 160285 username aminvpn 160285 mac 160285 bytes_out 0 160285 bytes_in 0 160285 station_ip 83.122.119.84 160285 port 609 160285 unique_id port 160285 remote_ip 10.8.0.14 160288 username farhad2 160288 mac 160288 bytes_out 0 160288 bytes_in 0 160288 station_ip 5.120.117.53 160288 port 672 160288 unique_id port 160288 remote_ip 10.8.0.190 160289 username aminvpn 160289 mac 160289 bytes_out 0 160289 bytes_in 0 160289 station_ip 5.120.92.83 160289 port 668 160289 unique_id port 160289 remote_ip 10.8.0.14 160292 username aminvpn 160292 mac 160292 bytes_out 0 160292 bytes_in 0 160292 station_ip 5.120.92.83 160292 port 674 160292 unique_id port 160292 remote_ip 10.8.0.14 160295 username naeimeh 160295 mac 160295 bytes_out 681113 160295 bytes_in 11240614 160295 station_ip 83.122.124.1 160295 port 609 160295 unique_id port 160295 remote_ip 10.8.0.118 160296 username ahmadi1 160296 mac 160296 bytes_out 0 160296 bytes_in 0 160296 station_ip 83.123.8.82 160296 port 672 160296 unique_id port 160296 remote_ip 10.8.0.250 160298 username jamali 160298 mac 160298 bytes_out 0 160298 bytes_in 0 160298 station_ip 5.119.62.17 160298 port 669 160298 unique_id port 160298 remote_ip 10.8.0.70 160299 username mohammadmahdi 160299 mac 160299 bytes_out 0 160299 bytes_in 0 160299 station_ip 5.120.147.94 160299 port 665 160299 unique_id port 160299 remote_ip 10.8.0.54 160303 username hashtadani4 160303 mac 160303 bytes_out 1826635 160303 bytes_in 26783386 160303 station_ip 83.122.214.2 160303 port 666 160303 unique_id port 160303 remote_ip 10.8.0.182 160311 username hashtadani4 160311 kill_reason Maximum check online fails reached 160311 mac 160311 bytes_out 0 160311 bytes_in 0 160311 station_ip 83.122.214.2 160311 port 609 160311 unique_id port 160316 username hashtadani4 160316 kill_reason Maximum check online fails reached 160316 mac 160316 bytes_out 0 160316 bytes_in 0 160316 station_ip 83.122.214.2 160278 mac 160278 bytes_out 48715 160278 bytes_in 159961 160278 station_ip 83.123.8.82 160278 port 668 160278 unique_id port 160278 remote_ip 10.8.0.250 160283 username aminvpn 160283 mac 160283 bytes_out 0 160283 bytes_in 0 160283 station_ip 5.120.92.83 160283 port 677 160283 unique_id port 160283 remote_ip 10.8.0.14 160287 username farhad2 160287 mac 160287 bytes_out 0 160287 bytes_in 0 160287 station_ip 5.120.117.53 160287 port 647 160287 unique_id port 160287 remote_ip 10.8.0.190 160290 username alipour 160290 mac 160290 bytes_out 0 160290 bytes_in 0 160290 station_ip 83.122.235.114 160290 port 328 160290 unique_id port 160290 remote_ip 10.8.1.50 160294 username moradi 160294 mac 160294 bytes_out 0 160294 bytes_in 0 160294 station_ip 46.225.209.18 160294 port 341 160294 unique_id port 160294 remote_ip 10.8.1.202 160300 username godarzi 160300 mac 160300 bytes_out 0 160300 bytes_in 0 160300 station_ip 5.120.9.53 160300 port 339 160300 unique_id port 160300 remote_ip 10.8.1.230 160305 username pourshad 160305 mac 160305 bytes_out 0 160305 bytes_in 0 160305 station_ip 5.119.162.49 160305 port 334 160305 unique_id port 160306 username aminvpn 160306 mac 160306 bytes_out 0 160306 bytes_in 0 160306 station_ip 83.122.119.84 160306 port 666 160306 unique_id port 160306 remote_ip 10.8.0.14 160308 username houshang 160308 mac 160308 bytes_out 97568 160308 bytes_in 288865 160308 station_ip 5.120.104.74 160308 port 665 160308 unique_id port 160308 remote_ip 10.8.0.134 160310 username vanila 160310 mac 160310 bytes_out 0 160310 bytes_in 0 160310 station_ip 37.129.0.151 160310 port 672 160310 unique_id port 160310 remote_ip 10.8.0.178 160312 username jamali 160312 mac 160312 bytes_out 0 160312 bytes_in 0 160312 station_ip 5.119.62.17 160312 port 669 160312 unique_id port 160312 remote_ip 10.8.0.70 160314 username farhad2 160314 mac 160314 bytes_out 0 160314 bytes_in 0 160314 station_ip 5.120.117.53 160314 port 666 160314 unique_id port 160314 remote_ip 10.8.0.190 160321 username tahmasebi 160321 mac 160321 bytes_out 438259 160321 bytes_in 3352344 160321 station_ip 5.119.190.34 160321 port 647 160321 unique_id port 160321 remote_ip 10.8.0.42 160323 username hashtadani4 160323 kill_reason Maximum check online fails reached 160323 mac 160323 bytes_out 0 160323 bytes_in 0 160323 station_ip 83.122.214.2 160323 port 647 160323 unique_id port 160329 username mehdizare 160329 mac 160329 bytes_out 0 160329 bytes_in 0 160329 station_ip 83.122.87.157 160329 port 671 160329 unique_id port 160329 remote_ip 10.8.0.90 160330 username khademi 160330 kill_reason Another user logged on this global unique id 160330 mac 160330 bytes_out 0 160330 bytes_in 0 160330 station_ip 113.203.78.111 160330 port 675 160330 unique_id port 160332 username mehdizare 160332 mac 160332 bytes_out 0 160332 bytes_in 0 160332 station_ip 83.122.87.157 160332 port 679 160332 unique_id port 160332 remote_ip 10.8.0.90 160335 username mehdizare 160335 mac 160335 bytes_out 6698 160335 bytes_in 10217 160335 station_ip 83.122.87.157 160335 port 671 160335 unique_id port 160335 remote_ip 10.8.0.90 160340 username alipour 160340 mac 160340 bytes_out 6071 160340 bytes_in 10816 160340 station_ip 83.122.235.114 160340 port 328 160340 unique_id port 160340 remote_ip 10.8.1.50 160343 username morteza 160343 kill_reason Another user logged on this global unique id 160343 mac 160343 bytes_out 0 160301 remote_ip 10.8.0.118 160302 username alikomsari 160302 kill_reason Maximum check online fails reached 160302 mac 160302 bytes_out 0 160302 bytes_in 0 160302 station_ip 5.120.69.200 160302 port 659 160302 unique_id port 160302 remote_ip 10.8.0.26 160304 username aminvpn 160304 mac 160304 bytes_out 0 160304 bytes_in 0 160304 station_ip 5.120.92.83 160304 port 609 160304 unique_id port 160304 remote_ip 10.8.0.14 160307 username khademi 160307 kill_reason Another user logged on this global unique id 160307 mac 160307 bytes_out 0 160307 bytes_in 0 160307 station_ip 113.203.78.111 160307 port 675 160307 unique_id port 160309 username meysam 160309 kill_reason Another user logged on this global unique id 160309 mac 160309 bytes_out 0 160309 bytes_in 0 160309 station_ip 188.158.48.58 160309 port 653 160309 unique_id port 160309 remote_ip 10.8.0.110 160313 username farhad2 160313 mac 160313 bytes_out 0 160313 bytes_in 0 160313 station_ip 5.120.117.53 160313 port 668 160313 unique_id port 160313 remote_ip 10.8.0.190 160315 username Mahin 160315 mac 160315 bytes_out 4560811 160315 bytes_in 42499643 160315 station_ip 5.119.34.171 160315 port 673 160315 unique_id port 160315 remote_ip 10.8.0.162 160317 username aminvpn 160317 mac 160317 bytes_out 0 160317 bytes_in 0 160317 station_ip 5.120.92.83 160317 port 674 160317 unique_id port 160317 remote_ip 10.8.0.14 160318 username aminvpn 160318 mac 160318 bytes_out 0 160318 bytes_in 0 160318 station_ip 83.122.119.84 160318 port 669 160318 unique_id port 160318 remote_ip 10.8.0.14 160322 username hashtadani4 160322 kill_reason Maximum number of concurrent logins reached 160322 mac 160322 bytes_out 0 160322 bytes_in 0 160322 station_ip 83.122.214.2 160322 port 341 160322 unique_id port 160324 username meysam 160324 mac 160324 bytes_out 0 160324 bytes_in 0 160324 station_ip 188.158.48.58 160324 port 653 160324 unique_id port 160326 username hashtadani4 160326 kill_reason Maximum check online fails reached 160326 mac 160326 bytes_out 0 160326 bytes_in 0 160326 station_ip 83.122.214.2 160326 port 674 160326 unique_id port 160327 username tahmasebi 160327 mac 160327 bytes_out 0 160327 bytes_in 0 160327 station_ip 5.119.190.34 160327 port 668 160327 unique_id port 160327 remote_ip 10.8.0.42 160328 username alipour 160328 mac 160328 bytes_out 24681 160328 bytes_in 43948 160328 station_ip 83.122.235.114 160328 port 328 160328 unique_id port 160328 remote_ip 10.8.1.50 160334 username shadkam 160334 mac 160334 bytes_out 539725 160334 bytes_in 6933888 160334 station_ip 37.129.237.220 160334 port 678 160334 unique_id port 160334 remote_ip 10.8.0.62 160336 username aminvpn 160336 kill_reason Another user logged on this global unique id 160336 mac 160336 bytes_out 0 160336 bytes_in 0 160336 station_ip 5.120.92.83 160336 port 672 160336 unique_id port 160336 remote_ip 10.8.0.14 160337 username mohammadjavad 160337 mac 160337 bytes_out 0 160337 bytes_in 0 160337 station_ip 83.123.96.117 160337 port 669 160337 unique_id port 160337 remote_ip 10.8.0.142 160339 username farhad2 160339 mac 160339 bytes_out 0 160339 bytes_in 0 160339 station_ip 5.120.117.53 160339 port 653 160339 unique_id port 160339 remote_ip 10.8.0.190 160344 username vanila 160344 mac 160344 bytes_out 0 160344 bytes_in 0 160344 station_ip 37.129.26.119 160344 port 653 160344 unique_id port 160344 remote_ip 10.8.0.178 160346 username aminvpn 160346 kill_reason Another user logged on this global unique id 160346 mac 160346 bytes_out 0 160316 port 665 160316 unique_id port 160319 username naeimeh 160319 mac 160319 bytes_out 0 160319 bytes_in 0 160319 station_ip 83.122.77.160 160319 port 341 160319 unique_id port 160319 remote_ip 10.8.1.206 160320 username hashtadani4 160320 mac 160320 bytes_out 0 160320 bytes_in 0 160320 station_ip 83.122.214.2 160320 port 341 160320 unique_id port 160320 remote_ip 10.8.1.142 160325 username farhad2 160325 mac 160325 bytes_out 0 160325 bytes_in 0 160325 station_ip 5.120.117.53 160325 port 668 160325 unique_id port 160325 remote_ip 10.8.0.190 160331 username Mahin 160331 mac 160331 bytes_out 0 160331 bytes_in 0 160331 station_ip 5.119.34.171 160331 port 673 160331 unique_id port 160331 remote_ip 10.8.0.162 160333 username tahmasebi 160333 mac 160333 bytes_out 0 160333 bytes_in 0 160333 station_ip 5.119.190.34 160333 port 677 160333 unique_id port 160333 remote_ip 10.8.0.42 160338 username aminvpn 160338 kill_reason Another user logged on this global unique id 160338 mac 160338 bytes_out 0 160338 bytes_in 0 160338 station_ip 5.120.92.83 160338 port 672 160338 unique_id port 160341 username jamali 160341 mac 160341 bytes_out 0 160341 bytes_in 0 160341 station_ip 5.119.62.17 160341 port 666 160341 unique_id port 160341 remote_ip 10.8.0.70 160342 username farhad2 160342 mac 160342 bytes_out 0 160342 bytes_in 0 160342 station_ip 5.120.117.53 160342 port 671 160342 unique_id port 160342 remote_ip 10.8.0.190 160350 username jamali 160350 mac 160350 bytes_out 779124 160350 bytes_in 10805789 160350 station_ip 5.119.62.17 160350 port 653 160350 unique_id port 160350 remote_ip 10.8.0.70 160355 username khademi 160355 mac 160355 bytes_out 0 160355 bytes_in 0 160355 station_ip 113.203.78.111 160355 port 675 160355 unique_id port 160357 username alipour 160357 mac 160357 bytes_out 0 160357 bytes_in 0 160357 station_ip 83.122.235.114 160357 port 328 160357 unique_id port 160357 remote_ip 10.8.1.50 160359 username godarzi 160359 mac 160359 bytes_out 0 160359 bytes_in 0 160359 station_ip 5.120.9.53 160359 port 342 160359 unique_id port 160359 remote_ip 10.8.1.230 160363 username farhad2 160363 mac 160363 bytes_out 804625 160363 bytes_in 3815825 160363 station_ip 5.120.117.53 160363 port 669 160363 unique_id port 160363 remote_ip 10.8.0.190 160366 username morteza 160366 mac 160366 bytes_out 0 160366 bytes_in 0 160366 station_ip 83.122.192.89 160366 port 668 160366 unique_id port 160372 username ahmadi1 160372 mac 160372 bytes_out 0 160372 bytes_in 0 160372 station_ip 83.123.8.82 160372 port 668 160372 unique_id port 160372 remote_ip 10.8.0.250 160378 username houshang 160378 mac 160378 bytes_out 0 160378 bytes_in 0 160378 station_ip 5.120.104.74 160378 port 661 160378 unique_id port 160382 username houshang 160382 mac 160382 bytes_out 0 160382 bytes_in 0 160382 station_ip 5.120.104.74 160382 port 673 160382 unique_id port 160382 remote_ip 10.8.0.134 160386 username mosi 160386 mac 160386 bytes_out 0 160386 bytes_in 0 160386 station_ip 151.235.89.191 160386 port 667 160386 unique_id port 160388 username fezealinaghi 160388 kill_reason Another user logged on this global unique id 160388 mac 160388 bytes_out 0 160388 bytes_in 0 160388 station_ip 37.129.172.209 160388 port 662 160388 unique_id port 160391 username morteza 160391 mac 160391 bytes_out 0 160391 bytes_in 0 160391 station_ip 83.122.192.89 160343 bytes_in 0 160343 station_ip 83.122.192.89 160343 port 668 160343 unique_id port 160343 remote_ip 10.8.0.46 160345 username jamali 160345 mac 160345 bytes_out 931193 160345 bytes_in 14497229 160345 station_ip 5.119.62.17 160345 port 678 160345 unique_id port 160345 remote_ip 10.8.0.70 160347 username mohammadjavad 160347 mac 160347 bytes_out 91951 160347 bytes_in 199997 160347 station_ip 37.129.191.110 160347 port 669 160347 unique_id port 160347 remote_ip 10.8.0.142 160348 username farhad2 160348 mac 160348 bytes_out 181793 160348 bytes_in 1416108 160348 station_ip 5.120.117.53 160348 port 666 160348 unique_id port 160348 remote_ip 10.8.0.190 160349 username tahmasebi 160349 kill_reason Another user logged on this global unique id 160349 mac 160349 bytes_out 0 160349 bytes_in 0 160349 station_ip 5.119.190.34 160349 port 673 160349 unique_id port 160349 remote_ip 10.8.0.42 160351 username kordestani 160351 mac 160351 bytes_out 0 160351 bytes_in 0 160351 station_ip 151.235.97.78 160351 port 661 160351 unique_id port 160351 remote_ip 10.8.0.74 160354 username meysam 160354 mac 160354 bytes_out 0 160354 bytes_in 0 160354 station_ip 188.158.48.58 160354 port 666 160354 unique_id port 160354 remote_ip 10.8.0.110 160356 username aminvpn 160356 kill_reason Another user logged on this global unique id 160356 mac 160356 bytes_out 0 160356 bytes_in 0 160356 station_ip 5.120.92.83 160356 port 672 160356 unique_id port 160358 username forozandeh1 160358 mac 160358 bytes_out 337674 160358 bytes_in 8413444 160358 station_ip 113.203.53.26 160358 port 342 160358 unique_id port 160358 remote_ip 10.8.1.250 160360 username aminvpn 160360 kill_reason Another user logged on this global unique id 160360 mac 160360 bytes_out 0 160360 bytes_in 0 160360 station_ip 5.120.92.83 160360 port 672 160360 unique_id port 160361 username jamali 160361 mac 160361 bytes_out 38361 160361 bytes_in 95872 160361 station_ip 5.119.62.17 160361 port 653 160361 unique_id port 160361 remote_ip 10.8.0.70 160364 username tahmasebi 160364 mac 160364 bytes_out 0 160364 bytes_in 0 160364 station_ip 5.119.190.34 160364 port 673 160364 unique_id port 160370 username morteza 160370 mac 160370 bytes_out 0 160370 bytes_in 0 160370 station_ip 83.122.192.89 160370 port 668 160370 unique_id port 160370 remote_ip 10.8.0.46 160371 username godarzi 160371 mac 160371 bytes_out 0 160371 bytes_in 0 160371 station_ip 5.120.9.53 160371 port 342 160371 unique_id port 160371 remote_ip 10.8.1.230 160376 username morteza 160376 mac 160376 bytes_out 0 160376 bytes_in 0 160376 station_ip 83.122.192.89 160376 port 653 160376 unique_id port 160376 remote_ip 10.8.0.46 160379 username morteza 160379 mac 160379 bytes_out 0 160379 bytes_in 0 160379 station_ip 83.122.192.89 160379 port 342 160379 unique_id port 160379 remote_ip 10.8.1.62 160380 username jamali 160380 mac 160380 bytes_out 11810 160380 bytes_in 13797 160380 station_ip 5.119.62.17 160380 port 653 160380 unique_id port 160380 remote_ip 10.8.0.70 160384 username morteza 160384 mac 160384 bytes_out 0 160384 bytes_in 0 160384 station_ip 83.122.192.89 160384 port 342 160384 unique_id port 160384 remote_ip 10.8.1.62 160385 username morteza 160385 mac 160385 bytes_out 0 160385 bytes_in 0 160385 station_ip 83.122.192.89 160385 port 342 160385 unique_id port 160385 remote_ip 10.8.1.62 160390 username nilufarrajaei 160390 kill_reason Another user logged on this global unique id 160390 mac 160346 bytes_in 0 160346 station_ip 5.120.92.83 160346 port 672 160346 unique_id port 160352 username aminvpn 160352 kill_reason Another user logged on this global unique id 160352 mac 160352 bytes_out 0 160352 bytes_in 0 160352 station_ip 5.120.92.83 160352 port 672 160352 unique_id port 160353 username jamali 160353 mac 160353 bytes_out 0 160353 bytes_in 0 160353 station_ip 5.119.62.17 160353 port 671 160353 unique_id port 160353 remote_ip 10.8.0.70 160362 username morteza 160362 kill_reason Another user logged on this global unique id 160362 mac 160362 bytes_out 0 160362 bytes_in 0 160362 station_ip 83.122.192.89 160362 port 668 160362 unique_id port 160365 username houshang 160365 kill_reason Another user logged on this global unique id 160365 mac 160365 bytes_out 0 160365 bytes_in 0 160365 station_ip 5.120.104.74 160365 port 661 160365 unique_id port 160365 remote_ip 10.8.0.134 160367 username morteza 160367 mac 160367 bytes_out 0 160367 bytes_in 0 160367 station_ip 83.122.192.89 160367 port 668 160367 unique_id port 160367 remote_ip 10.8.0.46 160368 username morteza 160368 mac 160368 bytes_out 0 160368 bytes_in 0 160368 station_ip 83.122.192.89 160368 port 668 160368 unique_id port 160368 remote_ip 10.8.0.46 160369 username morteza 160369 mac 160369 bytes_out 0 160369 bytes_in 0 160369 station_ip 83.122.192.89 160369 port 668 160369 unique_id port 160369 remote_ip 10.8.0.46 160373 username morteza 160373 mac 160373 bytes_out 0 160373 bytes_in 0 160373 station_ip 83.122.192.89 160373 port 668 160373 unique_id port 160373 remote_ip 10.8.0.46 160374 username morteza 160374 mac 160374 bytes_out 0 160374 bytes_in 0 160374 station_ip 83.122.192.89 160374 port 668 160374 unique_id port 160374 remote_ip 10.8.0.46 160375 username jamali 160375 mac 160375 bytes_out 48962 160375 bytes_in 145598 160375 station_ip 5.119.62.17 160375 port 653 160375 unique_id port 160375 remote_ip 10.8.0.70 160377 username houshang 160377 kill_reason Another user logged on this global unique id 160377 mac 160377 bytes_out 0 160377 bytes_in 0 160377 station_ip 5.120.104.74 160377 port 661 160377 unique_id port 160381 username meysam 160381 mac 160381 bytes_out 567492 160381 bytes_in 8617499 160381 station_ip 188.158.48.58 160381 port 668 160381 unique_id port 160381 remote_ip 10.8.0.110 160383 username farhad2 160383 kill_reason Another user logged on this global unique id 160383 mac 160383 bytes_out 0 160383 bytes_in 0 160383 station_ip 5.120.117.53 160383 port 669 160383 unique_id port 160383 remote_ip 10.8.0.190 160387 username nilufarrajaei 160387 mac 160387 bytes_out 0 160387 bytes_in 0 160387 station_ip 5.202.132.189 160387 port 661 160387 unique_id port 160387 remote_ip 10.8.0.206 160389 username morteza 160389 mac 160389 bytes_out 0 160389 bytes_in 0 160389 station_ip 83.122.192.89 160389 port 661 160389 unique_id port 160389 remote_ip 10.8.0.46 160392 username morteza 160392 mac 160392 bytes_out 0 160392 bytes_in 0 160392 station_ip 83.122.192.89 160392 port 661 160392 unique_id port 160392 remote_ip 10.8.0.46 160399 username jamali 160399 mac 160399 bytes_out 19905 160399 bytes_in 25746 160399 station_ip 5.119.62.17 160399 port 653 160399 unique_id port 160399 remote_ip 10.8.0.70 160402 username morteza 160402 mac 160402 bytes_out 0 160402 bytes_in 0 160402 station_ip 83.122.192.89 160402 port 661 160402 unique_id port 160402 remote_ip 10.8.0.46 160405 username morteza 160405 mac 160405 bytes_out 0 160390 bytes_out 0 160390 bytes_in 0 160390 station_ip 5.202.27.135 160390 port 667 160390 unique_id port 160390 remote_ip 10.8.0.206 160393 username shadkam 160393 mac 160393 bytes_out 0 160393 bytes_in 0 160393 station_ip 83.122.69.38 160393 port 668 160393 unique_id port 160393 remote_ip 10.8.0.62 160394 username morteza 160394 mac 160394 bytes_out 0 160394 bytes_in 0 160394 station_ip 83.122.192.89 160394 port 661 160394 unique_id port 160394 remote_ip 10.8.0.46 160396 username morteza 160396 mac 160396 bytes_out 0 160396 bytes_in 0 160396 station_ip 83.122.192.89 160396 port 661 160396 unique_id port 160396 remote_ip 10.8.0.46 160398 username fezealinaghi 160398 kill_reason Another user logged on this global unique id 160398 mac 160398 bytes_out 0 160398 bytes_in 0 160398 station_ip 37.129.172.209 160398 port 662 160398 unique_id port 160407 username meysam 160407 mac 160407 bytes_out 0 160407 bytes_in 0 160407 station_ip 188.158.48.58 160407 port 653 160407 unique_id port 160407 remote_ip 10.8.0.110 160410 username godarzi 160410 mac 160410 bytes_out 0 160410 bytes_in 0 160410 station_ip 5.120.9.53 160410 port 343 160410 unique_id port 160410 remote_ip 10.8.1.230 160415 username hadibarzegar 160415 mac 160415 bytes_out 0 160415 bytes_in 0 160415 station_ip 37.129.61.187 160415 port 655 160415 unique_id port 160415 remote_ip 10.8.0.154 160416 username pourshad 160416 mac 160416 bytes_out 0 160416 bytes_in 0 160416 station_ip 5.119.162.49 160416 port 334 160416 unique_id port 160416 remote_ip 10.8.1.154 160420 username sedighe 160420 mac 160420 bytes_out 169040 160420 bytes_in 738054 160420 station_ip 83.122.114.29 160420 port 662 160420 unique_id port 160420 remote_ip 10.8.0.146 160422 username moradi 160422 mac 160422 bytes_out 24928 160422 bytes_in 107531 160422 station_ip 46.225.209.18 160422 port 653 160422 unique_id port 160422 remote_ip 10.8.0.226 160424 username ahmadi1 160424 mac 160424 bytes_out 0 160424 bytes_in 0 160424 station_ip 83.123.8.82 160424 port 653 160424 unique_id port 160424 remote_ip 10.8.0.250 160430 username vanila 160430 mac 160430 bytes_out 0 160430 bytes_in 0 160430 station_ip 37.129.26.119 160430 port 659 160430 unique_id port 160430 remote_ip 10.8.0.178 160433 username mehdizare 160433 kill_reason Another user logged on this global unique id 160433 mac 160433 bytes_out 0 160433 bytes_in 0 160433 station_ip 83.122.87.157 160433 port 677 160433 unique_id port 160433 remote_ip 10.8.0.90 160436 username sedighe 160436 mac 160436 bytes_out 106473 160436 bytes_in 860264 160436 station_ip 37.129.91.10 160436 port 673 160436 unique_id port 160436 remote_ip 10.8.0.146 160440 username shadkam 160440 mac 160440 bytes_out 0 160440 bytes_in 0 160440 station_ip 37.129.52.141 160440 port 659 160440 unique_id port 160440 remote_ip 10.8.0.62 160442 username nilufarrajaei 160442 mac 160442 bytes_out 0 160442 bytes_in 0 160442 station_ip 37.129.165.211 160442 port 673 160442 unique_id port 160442 remote_ip 10.8.0.206 160452 username milan 160452 kill_reason Another user logged on this global unique id 160452 mac 160452 bytes_out 0 160452 bytes_in 0 160452 station_ip 5.119.161.192 160452 port 675 160452 unique_id port 160452 remote_ip 10.8.0.218 160458 username jamali 160458 mac 160458 bytes_out 106066 160458 bytes_in 290724 160458 station_ip 5.119.62.17 160458 port 669 160458 unique_id port 160458 remote_ip 10.8.0.70 160463 username moradi 160391 port 661 160391 unique_id port 160391 remote_ip 10.8.0.46 160395 username farhad2 160395 mac 160395 bytes_out 0 160395 bytes_in 0 160395 station_ip 5.120.117.53 160395 port 669 160395 unique_id port 160397 username morteza 160397 mac 160397 bytes_out 0 160397 bytes_in 0 160397 station_ip 83.122.192.89 160397 port 661 160397 unique_id port 160397 remote_ip 10.8.0.46 160400 username jafari 160400 kill_reason Another user logged on this global unique id 160400 mac 160400 bytes_out 0 160400 bytes_in 0 160400 station_ip 5.134.143.111 160400 port 671 160400 unique_id port 160400 remote_ip 10.8.0.242 160401 username morteza 160401 mac 160401 bytes_out 0 160401 bytes_in 0 160401 station_ip 83.122.192.89 160401 port 661 160401 unique_id port 160401 remote_ip 10.8.0.46 160403 username farhad2 160403 mac 160403 bytes_out 0 160403 bytes_in 0 160403 station_ip 5.120.117.53 160403 port 668 160403 unique_id port 160403 remote_ip 10.8.0.190 160404 username morteza 160404 mac 160404 bytes_out 0 160404 bytes_in 0 160404 station_ip 83.122.192.89 160404 port 344 160404 unique_id port 160404 remote_ip 10.8.1.62 160406 username morteza 160406 mac 160406 bytes_out 0 160406 bytes_in 0 160406 station_ip 83.122.192.89 160406 port 344 160406 unique_id port 160406 remote_ip 10.8.1.62 160409 username moradi 160409 mac 160409 bytes_out 408377 160409 bytes_in 1638114 160409 station_ip 46.225.209.18 160409 port 341 160409 unique_id port 160409 remote_ip 10.8.1.202 160412 username fezealinaghi 160412 mac 160412 bytes_out 0 160412 bytes_in 0 160412 station_ip 37.129.172.209 160412 port 662 160412 unique_id port 160413 username jafari 160413 kill_reason Another user logged on this global unique id 160413 mac 160413 bytes_out 0 160413 bytes_in 0 160413 station_ip 5.134.143.111 160413 port 671 160413 unique_id port 160414 username morteza 160414 mac 160414 bytes_out 26071 160414 bytes_in 11327 160414 station_ip 83.122.192.89 160414 port 661 160414 unique_id port 160414 remote_ip 10.8.0.46 160418 username jafari 160418 kill_reason Another user logged on this global unique id 160418 mac 160418 bytes_out 0 160418 bytes_in 0 160418 station_ip 5.134.143.111 160418 port 671 160418 unique_id port 160421 username ahmadi1 160421 mac 160421 bytes_out 0 160421 bytes_in 0 160421 station_ip 83.123.8.82 160421 port 673 160421 unique_id port 160421 remote_ip 10.8.0.250 160429 username meysam 160429 mac 160429 bytes_out 545674 160429 bytes_in 7333894 160429 station_ip 5.120.79.150 160429 port 653 160429 unique_id port 160429 remote_ip 10.8.0.110 160431 username aminvpn 160431 kill_reason Maximum check online fails reached 160431 mac 160431 bytes_out 0 160431 bytes_in 0 160431 station_ip 5.120.92.83 160431 port 672 160431 unique_id port 160432 username sedighe 160432 mac 160432 bytes_out 314581 160432 bytes_in 1525517 160432 station_ip 83.122.114.29 160432 port 655 160432 unique_id port 160432 remote_ip 10.8.0.146 160435 username mahdiyehalizadeh 160435 mac 160435 bytes_out 66228 160435 bytes_in 153011 160435 station_ip 5.119.159.130 160435 port 659 160435 unique_id port 160435 remote_ip 10.8.0.82 160437 username houshang 160437 kill_reason Another user logged on this global unique id 160437 mac 160437 bytes_out 0 160437 bytes_in 0 160437 station_ip 5.120.104.74 160437 port 653 160437 unique_id port 160437 remote_ip 10.8.0.134 160438 username jafari 160438 kill_reason Another user logged on this global unique id 160438 mac 160438 bytes_out 0 160405 bytes_in 0 160405 station_ip 83.122.192.89 160405 port 344 160405 unique_id port 160405 remote_ip 10.8.1.62 160408 username morteza 160408 mac 160408 bytes_out 0 160408 bytes_in 0 160408 station_ip 83.122.192.89 160408 port 653 160408 unique_id port 160408 remote_ip 10.8.0.46 160411 username nilufarrajaei 160411 kill_reason Another user logged on this global unique id 160411 mac 160411 bytes_out 0 160411 bytes_in 0 160411 station_ip 5.202.27.135 160411 port 667 160411 unique_id port 160417 username jamali 160417 mac 160417 bytes_out 0 160417 bytes_in 0 160417 station_ip 5.119.62.17 160417 port 669 160417 unique_id port 160417 remote_ip 10.8.0.70 160419 username hadibarzegar 160419 mac 160419 bytes_out 0 160419 bytes_in 0 160419 station_ip 37.129.61.187 160419 port 655 160419 unique_id port 160419 remote_ip 10.8.0.154 160423 username farhad2 160423 kill_reason Another user logged on this global unique id 160423 mac 160423 bytes_out 0 160423 bytes_in 0 160423 station_ip 5.120.117.53 160423 port 342 160423 unique_id port 160423 remote_ip 10.8.1.222 160425 username nilufarrajaei 160425 kill_reason Another user logged on this global unique id 160425 mac 160425 bytes_out 0 160425 bytes_in 0 160425 station_ip 5.202.27.135 160425 port 667 160425 unique_id port 160426 username meysam 160426 mac 160426 bytes_out 738949 160426 bytes_in 10262004 160426 station_ip 5.120.79.150 160426 port 673 160426 unique_id port 160426 remote_ip 10.8.0.110 160427 username jafari 160427 kill_reason Another user logged on this global unique id 160427 mac 160427 bytes_out 0 160427 bytes_in 0 160427 station_ip 5.134.143.111 160427 port 671 160427 unique_id port 160428 username godarzi 160428 mac 160428 bytes_out 624180 160428 bytes_in 6676040 160428 station_ip 5.120.9.53 160428 port 341 160428 unique_id port 160428 remote_ip 10.8.1.230 160434 username nilufarrajaei 160434 mac 160434 bytes_out 0 160434 bytes_in 0 160434 station_ip 5.202.27.135 160434 port 667 160434 unique_id port 160439 username mehdizare 160439 mac 160439 bytes_out 0 160439 bytes_in 0 160439 station_ip 83.122.87.157 160439 port 677 160439 unique_id port 160443 username farhad2 160443 kill_reason Another user logged on this global unique id 160443 mac 160443 bytes_out 0 160443 bytes_in 0 160443 station_ip 5.120.117.53 160443 port 342 160443 unique_id port 160444 username khademi 160444 mac 160444 bytes_out 304495 160444 bytes_in 511949 160444 station_ip 113.203.78.111 160444 port 666 160444 unique_id port 160444 remote_ip 10.8.0.10 160445 username houshang 160445 kill_reason Another user logged on this global unique id 160445 mac 160445 bytes_out 0 160445 bytes_in 0 160445 station_ip 5.120.104.74 160445 port 653 160445 unique_id port 160446 username nilufarrajaei 160446 mac 160446 bytes_out 0 160446 bytes_in 0 160446 station_ip 37.129.165.211 160446 port 680 160446 unique_id port 160446 remote_ip 10.8.0.206 160448 username Mahin 160448 mac 160448 bytes_out 0 160448 bytes_in 0 160448 station_ip 5.119.27.203 160448 port 679 160448 unique_id port 160448 remote_ip 10.8.0.162 160454 username fezealinaghi 160454 kill_reason Another user logged on this global unique id 160454 mac 160454 bytes_out 0 160454 bytes_in 0 160454 station_ip 37.129.172.209 160454 port 662 160454 unique_id port 160454 remote_ip 10.8.0.78 160455 username houshang 160455 kill_reason Another user logged on this global unique id 160455 mac 160455 bytes_out 0 160455 bytes_in 0 160455 station_ip 5.120.104.74 160455 port 653 160455 unique_id port 160456 username farhad2 160438 bytes_in 0 160438 station_ip 5.134.143.111 160438 port 671 160438 unique_id port 160441 username moradi 160441 mac 160441 bytes_out 24952 160441 bytes_in 48137 160441 station_ip 46.225.209.18 160441 port 675 160441 unique_id port 160441 remote_ip 10.8.0.226 160447 username moradi 160447 mac 160447 bytes_out 0 160447 bytes_in 0 160447 station_ip 46.225.209.18 160447 port 677 160447 unique_id port 160447 remote_ip 10.8.0.226 160449 username kordestani 160449 mac 160449 bytes_out 9975252 160449 bytes_in 18019549 160449 station_ip 151.235.112.51 160449 port 661 160449 unique_id port 160449 remote_ip 10.8.0.74 160450 username hadibarzegar 160450 kill_reason Another user logged on this global unique id 160450 mac 160450 bytes_out 0 160450 bytes_in 0 160450 station_ip 37.129.61.187 160450 port 677 160450 unique_id port 160450 remote_ip 10.8.0.154 160451 username forozandeh1 160451 mac 160451 bytes_out 251068 160451 bytes_in 1583285 160451 station_ip 37.129.117.2 160451 port 334 160451 unique_id port 160451 remote_ip 10.8.1.250 160453 username mahdiyehalizadeh 160453 mac 160453 bytes_out 134239 160453 bytes_in 799475 160453 station_ip 5.119.159.130 160453 port 667 160453 unique_id port 160453 remote_ip 10.8.0.82 160459 username sabaghnezhad 160459 mac 160459 bytes_out 84934 160459 bytes_in 102876 160459 station_ip 37.129.24.0 160459 port 659 160459 unique_id port 160459 remote_ip 10.8.0.186 160460 username fezealinaghi 160460 mac 160460 bytes_out 0 160460 bytes_in 0 160460 station_ip 37.129.172.209 160460 port 662 160460 unique_id port 160464 username milan 160464 kill_reason Another user logged on this global unique id 160464 mac 160464 bytes_out 0 160464 bytes_in 0 160464 station_ip 5.119.161.192 160464 port 675 160464 unique_id port 160466 username hadibarzegar 160466 kill_reason Another user logged on this global unique id 160466 mac 160466 bytes_out 0 160466 bytes_in 0 160466 station_ip 37.129.61.187 160466 port 677 160466 unique_id port 160467 username moradi 160467 mac 160467 bytes_out 6397 160467 bytes_in 14209 160467 station_ip 46.225.209.18 160467 port 666 160467 unique_id port 160467 remote_ip 10.8.0.226 160470 username shadkam 160470 mac 160470 bytes_out 12326 160470 bytes_in 17601 160470 station_ip 83.122.221.139 160470 port 653 160470 unique_id port 160470 remote_ip 10.8.0.62 160472 username nilufarrajaei 160472 mac 160472 bytes_out 125026 160472 bytes_in 858763 160472 station_ip 37.129.165.211 160472 port 662 160472 unique_id port 160472 remote_ip 10.8.0.206 160474 username nilufarrajaei 160474 mac 160474 bytes_out 183649 160474 bytes_in 2206886 160474 station_ip 86.57.52.89 160474 port 653 160474 unique_id port 160474 remote_ip 10.8.0.206 160476 username pourshad 160476 mac 160476 bytes_out 132295 160476 bytes_in 250689 160476 station_ip 5.119.162.49 160476 port 668 160476 unique_id port 160476 remote_ip 10.8.0.18 160479 username aminvpn 160479 mac 160479 bytes_out 0 160479 bytes_in 0 160479 station_ip 5.120.92.83 160479 port 334 160479 unique_id port 160479 remote_ip 10.8.1.6 160480 username aminvpn 160480 mac 160480 bytes_out 0 160480 bytes_in 0 160480 station_ip 83.122.119.84 160480 port 339 160480 unique_id port 160480 remote_ip 10.8.1.6 160489 username hadibarzegar 160489 mac 160489 bytes_out 0 160489 bytes_in 0 160489 station_ip 37.129.61.187 160489 port 677 160489 unique_id port 160492 username aminvpn 160492 mac 160492 bytes_out 0 160492 bytes_in 0 160456 mac 160456 bytes_out 0 160456 bytes_in 0 160456 station_ip 5.120.117.53 160456 port 342 160456 unique_id port 160457 username mirzaei 160457 mac 160457 bytes_out 0 160457 bytes_in 0 160457 station_ip 5.120.60.230 160457 port 648 160457 unique_id port 160457 remote_ip 10.8.0.66 160461 username nilufarrajaei 160461 mac 160461 bytes_out 2106744 160461 bytes_in 38124055 160461 station_ip 37.129.165.211 160461 port 666 160461 unique_id port 160461 remote_ip 10.8.0.206 160462 username mehdizare 160462 mac 160462 bytes_out 408664 160462 bytes_in 26376467 160462 station_ip 83.122.87.157 160462 port 678 160462 unique_id port 160462 remote_ip 10.8.0.90 160465 username houshang 160465 mac 160465 bytes_out 0 160465 bytes_in 0 160465 station_ip 5.120.104.74 160465 port 653 160465 unique_id port 160468 username mehdizare 160468 mac 160468 bytes_out 11838 160468 bytes_in 13115 160468 station_ip 83.122.87.157 160468 port 662 160468 unique_id port 160468 remote_ip 10.8.0.90 160471 username milan 160471 kill_reason Another user logged on this global unique id 160471 mac 160471 bytes_out 0 160471 bytes_in 0 160471 station_ip 5.119.161.192 160471 port 675 160471 unique_id port 160473 username aminvpn 160473 mac 160473 bytes_out 0 160473 bytes_in 0 160473 station_ip 83.122.119.84 160473 port 339 160473 unique_id port 160473 remote_ip 10.8.1.6 160475 username forozandeh1 160475 mac 160475 bytes_out 0 160475 bytes_in 0 160475 station_ip 83.122.30.211 160475 port 334 160475 unique_id port 160475 remote_ip 10.8.1.250 160481 username aminvpn 160481 mac 160481 bytes_out 0 160481 bytes_in 0 160481 station_ip 5.120.92.83 160481 port 341 160481 unique_id port 160481 remote_ip 10.8.1.6 160482 username aminvpn 160482 mac 160482 bytes_out 0 160482 bytes_in 0 160482 station_ip 83.122.119.84 160482 port 339 160482 unique_id port 160482 remote_ip 10.8.1.6 160483 username aminvpn 160483 mac 160483 bytes_out 0 160483 bytes_in 0 160483 station_ip 5.120.92.83 160483 port 341 160483 unique_id port 160483 remote_ip 10.8.1.6 160487 username mohammadjavad 160487 mac 160487 bytes_out 1275838 160487 bytes_in 22779455 160487 station_ip 83.122.150.10 160487 port 666 160487 unique_id port 160487 remote_ip 10.8.0.142 160488 username aminvpn 160488 mac 160488 bytes_out 0 160488 bytes_in 0 160488 station_ip 83.122.119.84 160488 port 339 160488 unique_id port 160488 remote_ip 10.8.1.6 160490 username aminvpn 160490 mac 160490 bytes_out 0 160490 bytes_in 0 160490 station_ip 5.120.92.83 160490 port 341 160490 unique_id port 160490 remote_ip 10.8.1.6 160491 username aminvpn 160491 mac 160491 bytes_out 0 160491 bytes_in 0 160491 station_ip 83.122.119.84 160491 port 339 160491 unique_id port 160491 remote_ip 10.8.1.6 160497 username aminvpn 160497 mac 160497 bytes_out 0 160497 bytes_in 0 160497 station_ip 83.122.119.84 160497 port 339 160497 unique_id port 160497 remote_ip 10.8.1.6 160500 username aminvpn 160500 mac 160500 bytes_out 0 160500 bytes_in 0 160500 station_ip 5.120.92.83 160500 port 341 160500 unique_id port 160500 remote_ip 10.8.1.6 160505 username mohammadjavad 160505 mac 160505 bytes_out 0 160505 bytes_in 0 160505 station_ip 83.123.174.30 160505 port 666 160505 unique_id port 160505 remote_ip 10.8.0.142 160508 username malekpoir 160508 mac 160508 bytes_out 0 160508 bytes_in 0 160508 station_ip 5.120.106.99 160508 port 653 160463 mac 160463 bytes_out 371892 160463 bytes_in 7167818 160463 station_ip 46.225.209.18 160463 port 679 160463 unique_id port 160463 remote_ip 10.8.0.226 160469 username nilufarrajaei 160469 mac 160469 bytes_out 542598 160469 bytes_in 7358922 160469 station_ip 37.129.165.211 160469 port 661 160469 unique_id port 160469 remote_ip 10.8.0.206 160477 username milan 160477 kill_reason Another user logged on this global unique id 160477 mac 160477 bytes_out 0 160477 bytes_in 0 160477 station_ip 5.119.161.192 160477 port 675 160477 unique_id port 160478 username aminvpn 160478 mac 160478 bytes_out 0 160478 bytes_in 0 160478 station_ip 83.122.119.84 160478 port 339 160478 unique_id port 160478 remote_ip 10.8.1.6 160484 username jamali 160484 mac 160484 bytes_out 169844 160484 bytes_in 769914 160484 station_ip 5.119.62.17 160484 port 648 160484 unique_id port 160484 remote_ip 10.8.0.70 160485 username aminvpn 160485 mac 160485 bytes_out 0 160485 bytes_in 0 160485 station_ip 83.122.119.84 160485 port 339 160485 unique_id port 160485 remote_ip 10.8.1.6 160486 username aminvpn 160486 mac 160486 bytes_out 0 160486 bytes_in 0 160486 station_ip 5.120.92.83 160486 port 341 160486 unique_id port 160486 remote_ip 10.8.1.6 160493 username meysam 160493 mac 160493 bytes_out 0 160493 bytes_in 0 160493 station_ip 5.120.154.231 160493 port 668 160493 unique_id port 160493 remote_ip 10.8.0.110 160495 username ahmadi1 160495 mac 160495 bytes_out 31905 160495 bytes_in 179395 160495 station_ip 83.123.8.82 160495 port 666 160495 unique_id port 160495 remote_ip 10.8.0.250 160498 username aminvpn 160498 mac 160498 bytes_out 0 160498 bytes_in 0 160498 station_ip 5.120.92.83 160498 port 341 160498 unique_id port 160498 remote_ip 10.8.1.6 160503 username khademi 160503 mac 160503 bytes_out 179411 160503 bytes_in 283636 160503 station_ip 113.203.78.111 160503 port 673 160503 unique_id port 160503 remote_ip 10.8.0.10 160506 username fezealinaghi 160506 kill_reason Another user logged on this global unique id 160506 mac 160506 bytes_out 0 160506 bytes_in 0 160506 station_ip 37.129.172.209 160506 port 659 160506 unique_id port 160506 remote_ip 10.8.0.78 160509 username tahmasebi 160509 mac 160509 bytes_out 881180 160509 bytes_in 16564840 160509 station_ip 5.119.190.34 160509 port 666 160509 unique_id port 160509 remote_ip 10.8.0.42 160510 username vanila 160510 mac 160510 bytes_out 334517 160510 bytes_in 1404580 160510 station_ip 37.129.26.119 160510 port 669 160510 unique_id port 160510 remote_ip 10.8.0.178 160511 username jafari 160511 kill_reason Another user logged on this global unique id 160511 mac 160511 bytes_out 0 160511 bytes_in 0 160511 station_ip 5.134.143.111 160511 port 671 160511 unique_id port 160516 username nilufarrajaei 160516 mac 160516 bytes_out 305317 160516 bytes_in 2273341 160516 station_ip 37.129.165.211 160516 port 661 160516 unique_id port 160516 remote_ip 10.8.0.206 160520 username aminvpn 160520 mac 160520 bytes_out 0 160520 bytes_in 0 160520 station_ip 5.120.92.83 160520 port 672 160520 unique_id port 160520 remote_ip 10.8.0.14 160522 username aminvpn 160522 mac 160522 bytes_out 0 160522 bytes_in 0 160522 station_ip 31.56.153.162 160522 port 677 160522 unique_id port 160522 remote_ip 10.8.0.14 160523 username aminvpn 160523 mac 160523 bytes_out 0 160523 bytes_in 0 160523 station_ip 5.120.92.83 160523 port 659 160523 unique_id port 160523 remote_ip 10.8.0.14 160492 station_ip 5.120.92.83 160492 port 341 160492 unique_id port 160492 remote_ip 10.8.1.6 160494 username aminvpn 160494 mac 160494 bytes_out 0 160494 bytes_in 0 160494 station_ip 83.122.119.84 160494 port 339 160494 unique_id port 160494 remote_ip 10.8.1.6 160496 username aminvpn 160496 mac 160496 bytes_out 0 160496 bytes_in 0 160496 station_ip 5.120.92.83 160496 port 341 160496 unique_id port 160496 remote_ip 10.8.1.6 160499 username aminvpn 160499 mac 160499 bytes_out 0 160499 bytes_in 0 160499 station_ip 83.122.119.84 160499 port 342 160499 unique_id port 160499 remote_ip 10.8.1.6 160501 username forozandeh1 160501 mac 160501 bytes_out 0 160501 bytes_in 0 160501 station_ip 37.129.136.192 160501 port 339 160501 unique_id port 160501 remote_ip 10.8.1.250 160502 username mohammadjavad 160502 mac 160502 bytes_out 0 160502 bytes_in 0 160502 station_ip 83.123.29.201 160502 port 677 160502 unique_id port 160502 remote_ip 10.8.0.142 160504 username yaghobi 160504 mac 160504 bytes_out 0 160504 bytes_in 0 160504 station_ip 83.122.25.54 160504 port 669 160504 unique_id port 160504 remote_ip 10.8.0.198 160507 username mehdizare 160507 mac 160507 bytes_out 0 160507 bytes_in 0 160507 station_ip 83.122.87.157 160507 port 667 160507 unique_id port 160507 remote_ip 10.8.0.90 160512 username mohammadmahdi 160512 kill_reason Another user logged on this global unique id 160512 mac 160512 bytes_out 0 160512 bytes_in 0 160512 station_ip 5.120.147.94 160512 port 662 160512 unique_id port 160512 remote_ip 10.8.0.54 160515 username jamali 160515 mac 160515 bytes_out 1381557 160515 bytes_in 16743423 160515 station_ip 5.119.62.17 160515 port 648 160515 unique_id port 160515 remote_ip 10.8.0.70 160525 username aminvpn 160525 mac 160525 bytes_out 0 160525 bytes_in 0 160525 station_ip 5.120.92.83 160525 port 659 160525 unique_id port 160525 remote_ip 10.8.0.14 160527 username aminvpn 160527 mac 160527 bytes_out 0 160527 bytes_in 0 160527 station_ip 31.56.153.162 160527 port 672 160527 unique_id port 160527 remote_ip 10.8.0.14 160529 username aminvpn 160529 mac 160529 bytes_out 0 160529 bytes_in 0 160529 station_ip 31.56.153.162 160529 port 677 160529 unique_id port 160529 remote_ip 10.8.0.14 160532 username mohammadmahdi 160532 mac 160532 bytes_out 0 160532 bytes_in 0 160532 station_ip 5.120.147.94 160532 port 662 160532 unique_id port 160533 username aminvpn 160533 mac 160533 bytes_out 0 160533 bytes_in 0 160533 station_ip 31.56.153.162 160533 port 677 160533 unique_id port 160533 remote_ip 10.8.0.14 160535 username arash 160535 mac 160535 bytes_out 12310 160535 bytes_in 36620 160535 station_ip 5.134.167.157 160535 port 659 160535 unique_id port 160535 remote_ip 10.8.0.114 160537 username aminvpn 160537 mac 160537 bytes_out 0 160537 bytes_in 0 160537 station_ip 5.120.92.83 160537 port 662 160537 unique_id port 160537 remote_ip 10.8.0.14 160539 username tahmasebi 160539 mac 160539 bytes_out 0 160539 bytes_in 0 160539 station_ip 5.119.190.34 160539 port 673 160539 unique_id port 160539 remote_ip 10.8.0.42 160540 username aminvpn 160540 mac 160540 bytes_out 0 160540 bytes_in 0 160540 station_ip 5.120.92.83 160540 port 662 160540 unique_id port 160540 remote_ip 10.8.0.14 160543 username tahmasebi 160543 mac 160543 bytes_out 0 160543 bytes_in 0 160543 station_ip 5.119.190.34 160543 port 673 160543 unique_id port 160543 remote_ip 10.8.0.42 160508 unique_id port 160508 remote_ip 10.8.0.58 160513 username fezealinaghi 160513 mac 160513 bytes_out 0 160513 bytes_in 0 160513 station_ip 37.129.172.209 160513 port 659 160513 unique_id port 160514 username tahmasebi 160514 mac 160514 bytes_out 0 160514 bytes_in 0 160514 station_ip 5.119.190.34 160514 port 659 160514 unique_id port 160514 remote_ip 10.8.0.42 160517 username khademi 160517 mac 160517 bytes_out 0 160517 bytes_in 0 160517 station_ip 113.203.78.111 160517 port 673 160517 unique_id port 160517 remote_ip 10.8.0.10 160518 username moradi 160518 mac 160518 bytes_out 1727715 160518 bytes_in 20187106 160518 station_ip 83.123.163.185 160518 port 659 160518 unique_id port 160518 remote_ip 10.8.0.226 160519 username aminvpn 160519 mac 160519 bytes_out 0 160519 bytes_in 0 160519 station_ip 31.56.153.162 160519 port 659 160519 unique_id port 160519 remote_ip 10.8.0.14 160521 username tahmasebi 160521 mac 160521 bytes_out 0 160521 bytes_in 0 160521 station_ip 5.119.190.34 160521 port 659 160521 unique_id port 160521 remote_ip 10.8.0.42 160531 username aminvpn 160531 mac 160531 bytes_out 0 160531 bytes_in 0 160531 station_ip 5.120.92.83 160531 port 673 160531 unique_id port 160531 remote_ip 10.8.0.14 160534 username aminvpn 160534 mac 160534 bytes_out 0 160534 bytes_in 0 160534 station_ip 5.120.92.83 160534 port 662 160534 unique_id port 160534 remote_ip 10.8.0.14 160538 username aminvpn 160538 mac 160538 bytes_out 0 160538 bytes_in 0 160538 station_ip 31.56.153.162 160538 port 677 160538 unique_id port 160538 remote_ip 10.8.0.14 160541 username aminvpn 160541 mac 160541 bytes_out 0 160541 bytes_in 0 160541 station_ip 31.56.153.162 160541 port 673 160541 unique_id port 160541 remote_ip 10.8.0.14 160542 username tahmasebi 160542 mac 160542 bytes_out 0 160542 bytes_in 0 160542 station_ip 5.119.190.34 160542 port 673 160542 unique_id port 160542 remote_ip 10.8.0.42 160544 username aminvpn 160544 mac 160544 bytes_out 26644 160544 bytes_in 66647 160544 station_ip 5.120.92.83 160544 port 662 160544 unique_id port 160544 remote_ip 10.8.0.14 160545 username aminvpn 160545 mac 160545 bytes_out 0 160545 bytes_in 0 160545 station_ip 31.56.153.162 160545 port 673 160545 unique_id port 160545 remote_ip 10.8.0.14 160547 username aminvpn 160547 mac 160547 bytes_out 0 160547 bytes_in 0 160547 station_ip 31.56.153.162 160547 port 673 160547 unique_id port 160547 remote_ip 10.8.0.14 160551 username aminvpn 160551 mac 160551 bytes_out 0 160551 bytes_in 0 160551 station_ip 83.122.119.84 160551 port 662 160551 unique_id port 160551 remote_ip 10.8.0.14 160554 username rahim 160554 mac 160554 bytes_out 86668 160554 bytes_in 83698 160554 station_ip 5.120.45.248 160554 port 673 160554 unique_id port 160554 remote_ip 10.8.0.50 160557 username aminvpn 160557 mac 160557 bytes_out 0 160557 bytes_in 0 160557 station_ip 5.120.92.83 160557 port 678 160557 unique_id port 160557 remote_ip 10.8.0.14 160559 username aminvpn 160559 mac 160559 bytes_out 0 160559 bytes_in 0 160559 station_ip 83.122.119.84 160559 port 679 160559 unique_id port 160559 remote_ip 10.8.0.14 160561 username aminvpn 160561 mac 160561 bytes_out 0 160561 bytes_in 0 160561 station_ip 5.120.92.83 160561 port 678 160561 unique_id port 160561 remote_ip 10.8.0.14 160563 username aminvpn 160563 mac 160563 bytes_out 0 160563 bytes_in 0 160524 username aminvpn 160524 mac 160524 bytes_out 0 160524 bytes_in 0 160524 station_ip 31.56.153.162 160524 port 672 160524 unique_id port 160524 remote_ip 10.8.0.14 160526 username jamali 160526 mac 160526 bytes_out 0 160526 bytes_in 0 160526 station_ip 5.119.62.17 160526 port 673 160526 unique_id port 160526 remote_ip 10.8.0.70 160528 username aminvpn 160528 mac 160528 bytes_out 0 160528 bytes_in 0 160528 station_ip 5.120.92.83 160528 port 673 160528 unique_id port 160528 remote_ip 10.8.0.14 160530 username jafari 160530 kill_reason Another user logged on this global unique id 160530 mac 160530 bytes_out 0 160530 bytes_in 0 160530 station_ip 5.134.143.111 160530 port 671 160530 unique_id port 160536 username aminvpn 160536 mac 160536 bytes_out 0 160536 bytes_in 0 160536 station_ip 31.56.153.162 160536 port 673 160536 unique_id port 160536 remote_ip 10.8.0.14 160546 username aminvpn 160546 mac 160546 bytes_out 0 160546 bytes_in 0 160546 station_ip 5.120.92.83 160546 port 662 160546 unique_id port 160546 remote_ip 10.8.0.14 160548 username aminvpn 160548 mac 160548 bytes_out 0 160548 bytes_in 0 160548 station_ip 83.122.119.84 160548 port 342 160548 unique_id port 160548 remote_ip 10.8.1.6 160549 username aminvpn 160549 mac 160549 bytes_out 0 160549 bytes_in 0 160549 station_ip 5.120.92.83 160549 port 662 160549 unique_id port 160549 remote_ip 10.8.0.14 160555 username aminvpn 160555 mac 160555 bytes_out 0 160555 bytes_in 0 160555 station_ip 31.56.153.162 160555 port 662 160555 unique_id port 160555 remote_ip 10.8.0.14 160556 username aminvpn 160556 mac 160556 bytes_out 0 160556 bytes_in 0 160556 station_ip 83.122.119.84 160556 port 673 160556 unique_id port 160556 remote_ip 10.8.0.14 160560 username aminvpn 160560 mac 160560 bytes_out 0 160560 bytes_in 0 160560 station_ip 31.56.153.162 160560 port 662 160560 unique_id port 160560 remote_ip 10.8.0.14 160564 username aminvpn 160564 mac 160564 bytes_out 0 160564 bytes_in 0 160564 station_ip 31.56.153.162 160564 port 678 160564 unique_id port 160564 remote_ip 10.8.0.14 160565 username shadkam 160565 mac 160565 bytes_out 102076 160565 bytes_in 1481042 160565 station_ip 113.203.47.163 160565 port 662 160565 unique_id port 160565 remote_ip 10.8.0.62 160572 username vanila 160572 mac 160572 bytes_out 0 160572 bytes_in 0 160572 station_ip 37.129.26.119 160572 port 667 160572 unique_id port 160572 remote_ip 10.8.0.178 160575 username tahmasebi 160575 kill_reason Another user logged on this global unique id 160575 mac 160575 bytes_out 0 160575 bytes_in 0 160575 station_ip 5.119.190.34 160575 port 677 160575 unique_id port 160575 remote_ip 10.8.0.42 160576 username moradi 160576 mac 160576 bytes_out 1015659 160576 bytes_in 16470276 160576 station_ip 46.225.209.18 160576 port 673 160576 unique_id port 160576 remote_ip 10.8.0.226 160579 username aminvpn 160579 mac 160579 bytes_out 0 160579 bytes_in 0 160579 station_ip 31.56.153.162 160579 port 673 160579 unique_id port 160579 remote_ip 10.8.0.14 160582 username jafari 160582 kill_reason Another user logged on this global unique id 160582 mac 160582 bytes_out 0 160582 bytes_in 0 160582 station_ip 5.134.143.111 160582 port 671 160582 unique_id port 160584 username aminvpn 160584 mac 160584 bytes_out 0 160584 bytes_in 0 160584 station_ip 83.122.119.84 160584 port 334 160584 unique_id port 160584 remote_ip 10.8.1.6 160587 username nilufarrajaei 160550 username aminvpn 160550 mac 160550 bytes_out 0 160550 bytes_in 0 160550 station_ip 31.56.153.162 160550 port 678 160550 unique_id port 160550 remote_ip 10.8.0.14 160552 username jafari 160552 kill_reason Another user logged on this global unique id 160552 mac 160552 bytes_out 0 160552 bytes_in 0 160552 station_ip 5.134.143.111 160552 port 671 160552 unique_id port 160553 username aminvpn 160553 mac 160553 bytes_out 0 160553 bytes_in 0 160553 station_ip 5.120.92.83 160553 port 678 160553 unique_id port 160553 remote_ip 10.8.0.14 160558 username shadkam 160558 mac 160558 bytes_out 2476 160558 bytes_in 8011 160558 station_ip 37.129.184.14 160558 port 662 160558 unique_id port 160558 remote_ip 10.8.0.62 160562 username pourshad 160562 mac 160562 bytes_out 0 160562 bytes_in 0 160562 station_ip 5.119.162.49 160562 port 334 160562 unique_id port 160562 remote_ip 10.8.1.154 160566 username aminvpn 160566 mac 160566 bytes_out 0 160566 bytes_in 0 160566 station_ip 5.120.92.83 160566 port 679 160566 unique_id port 160566 remote_ip 10.8.0.14 160567 username aminvpn 160567 mac 160567 bytes_out 0 160567 bytes_in 0 160567 station_ip 31.56.153.162 160567 port 662 160567 unique_id port 160567 remote_ip 10.8.0.14 160568 username aminvpn 160568 mac 160568 bytes_out 0 160568 bytes_in 0 160568 station_ip 5.120.92.83 160568 port 679 160568 unique_id port 160568 remote_ip 10.8.0.14 160570 username shadkam 160570 mac 160570 bytes_out 477550 160570 bytes_in 5832794 160570 station_ip 113.203.47.163 160570 port 680 160570 unique_id port 160570 remote_ip 10.8.0.62 160571 username hadibarzegar 160571 mac 160571 bytes_out 0 160571 bytes_in 0 160571 station_ip 37.129.61.187 160571 port 668 160571 unique_id port 160571 remote_ip 10.8.0.154 160573 username aminvpn 160573 mac 160573 bytes_out 0 160573 bytes_in 0 160573 station_ip 5.120.92.83 160573 port 679 160573 unique_id port 160573 remote_ip 10.8.0.14 160574 username aminvpn 160574 mac 160574 bytes_out 0 160574 bytes_in 0 160574 station_ip 31.56.153.162 160574 port 667 160574 unique_id port 160574 remote_ip 10.8.0.14 160577 username aminvpn 160577 mac 160577 bytes_out 0 160577 bytes_in 0 160577 station_ip 5.120.92.83 160577 port 668 160577 unique_id port 160577 remote_ip 10.8.0.14 160581 username moradi 160581 mac 160581 bytes_out 8524 160581 bytes_in 16183 160581 station_ip 46.225.209.18 160581 port 668 160581 unique_id port 160581 remote_ip 10.8.0.226 160583 username pourshad 160583 mac 160583 bytes_out 18491 160583 bytes_in 29870 160583 station_ip 5.119.162.49 160583 port 662 160583 unique_id port 160583 remote_ip 10.8.0.18 160586 username aminvpn 160586 mac 160586 bytes_out 0 160586 bytes_in 0 160586 station_ip 83.122.119.84 160586 port 334 160586 unique_id port 160586 remote_ip 10.8.1.6 160588 username jamali 160588 mac 160588 bytes_out 0 160588 bytes_in 0 160588 station_ip 5.119.62.17 160588 port 672 160588 unique_id port 160588 remote_ip 10.8.0.70 160589 username vanila 160589 mac 160589 bytes_out 0 160589 bytes_in 0 160589 station_ip 37.129.26.119 160589 port 680 160589 unique_id port 160589 remote_ip 10.8.0.178 160594 username tahmasebi 160594 mac 160594 bytes_out 0 160594 bytes_in 0 160594 station_ip 5.119.190.34 160594 port 341 160594 unique_id port 160594 remote_ip 10.8.1.90 160598 username moradi 160598 mac 160598 bytes_out 0 160598 bytes_in 0 160563 station_ip 83.122.119.84 160563 port 679 160563 unique_id port 160563 remote_ip 10.8.0.14 160569 username aminvpn 160569 mac 160569 bytes_out 0 160569 bytes_in 0 160569 station_ip 31.56.153.162 160569 port 662 160569 unique_id port 160569 remote_ip 10.8.0.14 160578 username moradi 160578 mac 160578 bytes_out 0 160578 bytes_in 0 160578 station_ip 46.225.209.18 160578 port 667 160578 unique_id port 160578 remote_ip 10.8.0.226 160580 username rahim 160580 mac 160580 bytes_out 0 160580 bytes_in 0 160580 station_ip 5.120.45.248 160580 port 341 160580 unique_id port 160580 remote_ip 10.8.1.126 160585 username rahim 160585 mac 160585 bytes_out 0 160585 bytes_in 0 160585 station_ip 5.120.45.248 160585 port 341 160585 unique_id port 160585 remote_ip 10.8.1.126 160591 username moradi 160591 mac 160591 bytes_out 0 160591 bytes_in 0 160591 station_ip 46.225.209.18 160591 port 673 160591 unique_id port 160591 remote_ip 10.8.0.226 160603 username aminvpn 160603 mac 160603 bytes_out 32625 160603 bytes_in 91969 160603 station_ip 5.120.92.83 160603 port 680 160603 unique_id port 160603 remote_ip 10.8.0.14 160606 username aminvpn 160606 mac 160606 bytes_out 0 160606 bytes_in 0 160606 station_ip 31.56.153.162 160606 port 667 160606 unique_id port 160606 remote_ip 10.8.0.14 160616 username mohammadmahdi 160616 mac 160616 bytes_out 2527939 160616 bytes_in 37848799 160616 station_ip 5.120.147.94 160616 port 679 160616 unique_id port 160616 remote_ip 10.8.0.54 160620 username aminvpn 160620 mac 160620 bytes_out 0 160620 bytes_in 0 160620 station_ip 31.56.153.162 160620 port 666 160620 unique_id port 160620 remote_ip 10.8.0.14 160622 username kalantary 160622 mac 160622 bytes_out 0 160622 bytes_in 0 160622 station_ip 83.122.73.136 160622 port 684 160622 unique_id port 160622 remote_ip 10.8.0.98 160625 username aminvpn 160625 mac 160625 bytes_out 0 160625 bytes_in 0 160625 station_ip 31.56.153.162 160625 port 659 160625 unique_id port 160625 remote_ip 10.8.0.14 160627 username aminvpn 160627 mac 160627 bytes_out 296998 160627 bytes_in 4450915 160627 station_ip 83.122.119.84 160627 port 334 160627 unique_id port 160627 remote_ip 10.8.1.6 160628 username sabaghnezhad 160628 mac 160628 bytes_out 241557 160628 bytes_in 481165 160628 station_ip 83.123.251.232 160628 port 678 160628 unique_id port 160628 remote_ip 10.8.0.186 160630 username aminvpn 160630 mac 160630 bytes_out 19239 160630 bytes_in 45977 160630 station_ip 5.120.92.83 160630 port 666 160630 unique_id port 160630 remote_ip 10.8.0.14 160636 username vanila 160636 mac 160636 bytes_out 2041072 160636 bytes_in 29096884 160636 station_ip 37.129.26.119 160636 port 681 160636 unique_id port 160636 remote_ip 10.8.0.178 160649 username rahim 160649 mac 160649 bytes_out 1813747 160649 bytes_in 23317479 160649 station_ip 5.120.45.248 160649 port 678 160649 unique_id port 160649 remote_ip 10.8.0.50 160651 username jamali 160651 mac 160651 bytes_out 780065 160651 bytes_in 9000640 160651 station_ip 5.119.62.17 160651 port 672 160651 unique_id port 160651 remote_ip 10.8.0.70 160656 username rahim 160656 mac 160656 bytes_out 0 160656 bytes_in 0 160656 station_ip 5.120.45.248 160656 port 679 160656 unique_id port 160656 remote_ip 10.8.0.50 160659 username aminvpn 160659 mac 160659 bytes_out 27426 160659 bytes_in 30635 160659 station_ip 31.56.153.162 160659 port 648 160659 unique_id port 160587 kill_reason Another user logged on this global unique id 160587 mac 160587 bytes_out 0 160587 bytes_in 0 160587 station_ip 37.129.246.108 160587 port 669 160587 unique_id port 160587 remote_ip 10.8.0.206 160590 username tahmasebi 160590 mac 160590 bytes_out 0 160590 bytes_in 0 160590 station_ip 5.119.190.34 160590 port 677 160590 unique_id port 160592 username aminvpn 160592 mac 160592 bytes_out 0 160592 bytes_in 0 160592 station_ip 5.120.92.83 160592 port 667 160592 unique_id port 160592 remote_ip 10.8.0.14 160593 username aminvpn 160593 mac 160593 bytes_out 0 160593 bytes_in 0 160593 station_ip 31.56.153.162 160593 port 673 160593 unique_id port 160593 remote_ip 10.8.0.14 160595 username moradi 160595 kill_reason Another user logged on this global unique id 160595 mac 160595 bytes_out 0 160595 bytes_in 0 160595 station_ip 46.225.209.18 160595 port 677 160595 unique_id port 160595 remote_ip 10.8.0.126 160596 username godarzi 160596 kill_reason Another user logged on this global unique id 160596 mac 160596 bytes_out 0 160596 bytes_in 0 160596 station_ip 5.202.6.91 160596 port 339 160596 unique_id port 160596 remote_ip 10.8.1.230 160597 username aminvpn 160597 mac 160597 bytes_out 0 160597 bytes_in 0 160597 station_ip 5.120.92.83 160597 port 667 160597 unique_id port 160597 remote_ip 10.8.0.14 160599 username aminvpn 160599 mac 160599 bytes_out 0 160599 bytes_in 0 160599 station_ip 31.56.153.162 160599 port 673 160599 unique_id port 160599 remote_ip 10.8.0.14 160600 username tahmasebi 160600 mac 160600 bytes_out 0 160600 bytes_in 0 160600 station_ip 5.119.190.34 160600 port 342 160600 unique_id port 160600 remote_ip 10.8.1.90 160608 username moradi 160608 mac 160608 bytes_out 0 160608 bytes_in 0 160608 station_ip 46.225.209.18 160608 port 667 160608 unique_id port 160608 remote_ip 10.8.0.126 160612 username malekpoir 160612 mac 160612 bytes_out 0 160612 bytes_in 0 160612 station_ip 5.120.106.99 160612 port 653 160612 unique_id port 160612 remote_ip 10.8.0.58 160613 username aminvpn 160613 mac 160613 bytes_out 0 160613 bytes_in 0 160613 station_ip 5.120.92.83 160613 port 683 160613 unique_id port 160613 remote_ip 10.8.0.14 160615 username aminvpn 160615 mac 160615 bytes_out 0 160615 bytes_in 0 160615 station_ip 31.56.153.162 160615 port 653 160615 unique_id port 160615 remote_ip 10.8.0.14 160617 username mehdizare 160617 mac 160617 bytes_out 0 160617 bytes_in 0 160617 station_ip 83.122.87.157 160617 port 666 160617 unique_id port 160617 remote_ip 10.8.0.90 160623 username aminvpn 160623 mac 160623 bytes_out 0 160623 bytes_in 0 160623 station_ip 5.120.92.83 160623 port 679 160623 unique_id port 160623 remote_ip 10.8.0.14 160632 username malekpoir 160632 mac 160632 bytes_out 779934 160632 bytes_in 21370781 160632 station_ip 5.120.106.99 160632 port 667 160632 unique_id port 160632 remote_ip 10.8.0.58 160633 username aminvpn 160633 mac 160633 bytes_out 0 160633 bytes_in 0 160633 station_ip 5.120.92.83 160633 port 673 160633 unique_id port 160633 remote_ip 10.8.0.14 160635 username jafari 160635 kill_reason Another user logged on this global unique id 160635 mac 160635 bytes_out 0 160635 bytes_in 0 160635 station_ip 5.134.143.111 160635 port 671 160635 unique_id port 160637 username aminvpn 160637 mac 160637 bytes_out 0 160637 bytes_in 0 160637 station_ip 31.56.153.162 160637 port 659 160637 unique_id port 160637 remote_ip 10.8.0.14 160638 username aminvpn 160598 station_ip 46.225.209.18 160598 port 677 160598 unique_id port 160601 username forozandeh1 160601 mac 160601 bytes_out 0 160601 bytes_in 0 160601 station_ip 83.122.104.45 160601 port 341 160601 unique_id port 160601 remote_ip 10.8.1.250 160602 username moradi 160602 mac 160602 bytes_out 60300 160602 bytes_in 90183 160602 station_ip 46.225.209.18 160602 port 667 160602 unique_id port 160602 remote_ip 10.8.0.126 160604 username tahmasebi 160604 mac 160604 bytes_out 0 160604 bytes_in 0 160604 station_ip 5.119.190.34 160604 port 342 160604 unique_id port 160604 remote_ip 10.8.1.90 160605 username moradi 160605 mac 160605 bytes_out 0 160605 bytes_in 0 160605 station_ip 46.225.209.18 160605 port 673 160605 unique_id port 160605 remote_ip 10.8.0.126 160607 username moradi 160607 mac 160607 bytes_out 0 160607 bytes_in 0 160607 station_ip 46.225.209.18 160607 port 682 160607 unique_id port 160607 remote_ip 10.8.0.126 160609 username aminvpn 160609 mac 160609 bytes_out 31052 160609 bytes_in 70352 160609 station_ip 5.120.92.83 160609 port 673 160609 unique_id port 160609 remote_ip 10.8.0.14 160610 username moradi 160610 mac 160610 bytes_out 0 160610 bytes_in 0 160610 station_ip 46.225.209.18 160610 port 683 160610 unique_id port 160610 remote_ip 10.8.0.126 160611 username aminvpn 160611 mac 160611 bytes_out 0 160611 bytes_in 0 160611 station_ip 31.56.153.162 160611 port 667 160611 unique_id port 160611 remote_ip 10.8.0.14 160614 username jafari 160614 kill_reason Another user logged on this global unique id 160614 mac 160614 bytes_out 0 160614 bytes_in 0 160614 station_ip 5.134.143.111 160614 port 671 160614 unique_id port 160618 username aminvpn 160618 mac 160618 bytes_out 0 160618 bytes_in 0 160618 station_ip 5.120.92.83 160618 port 683 160618 unique_id port 160618 remote_ip 10.8.0.14 160619 username rahim 160619 mac 160619 bytes_out 2704817 160619 bytes_in 10074365 160619 station_ip 5.120.45.248 160619 port 680 160619 unique_id port 160619 remote_ip 10.8.0.50 160621 username arash 160621 mac 160621 bytes_out 130290 160621 bytes_in 297835 160621 station_ip 5.134.167.157 160621 port 659 160621 unique_id port 160621 remote_ip 10.8.0.114 160624 username rahim 160624 mac 160624 bytes_out 0 160624 bytes_in 0 160624 station_ip 5.120.45.248 160624 port 341 160624 unique_id port 160624 remote_ip 10.8.1.126 160626 username moradi 160626 mac 160626 bytes_out 0 160626 bytes_in 0 160626 station_ip 46.225.209.18 160626 port 673 160626 unique_id port 160626 remote_ip 10.8.0.126 160629 username rahim 160629 mac 160629 bytes_out 0 160629 bytes_in 0 160629 station_ip 5.120.45.248 160629 port 659 160629 unique_id port 160629 remote_ip 10.8.0.50 160631 username aminvpn 160631 mac 160631 bytes_out 0 160631 bytes_in 0 160631 station_ip 31.56.153.162 160631 port 659 160631 unique_id port 160631 remote_ip 10.8.0.14 160634 username fezealinaghi 160634 mac 160634 bytes_out 894729 160634 bytes_in 15244841 160634 station_ip 37.129.172.209 160634 port 648 160634 unique_id port 160634 remote_ip 10.8.0.78 160639 username aminvpn 160639 mac 160639 bytes_out 0 160639 bytes_in 0 160639 station_ip 31.56.153.162 160639 port 659 160639 unique_id port 160639 remote_ip 10.8.0.14 160640 username kordestani 160640 mac 160640 bytes_out 2470894 160640 bytes_in 34324601 160640 station_ip 151.235.90.81 160640 port 662 160640 unique_id port 160640 remote_ip 10.8.0.74 160638 mac 160638 bytes_out 0 160638 bytes_in 0 160638 station_ip 5.120.92.83 160638 port 648 160638 unique_id port 160638 remote_ip 10.8.0.14 160643 username nilufarrajaei 160643 kill_reason Another user logged on this global unique id 160643 mac 160643 bytes_out 0 160643 bytes_in 0 160643 station_ip 37.129.246.108 160643 port 669 160643 unique_id port 160644 username rahim 160644 mac 160644 bytes_out 0 160644 bytes_in 0 160644 station_ip 5.120.45.248 160644 port 341 160644 unique_id port 160644 remote_ip 10.8.1.126 160646 username jamali 160646 mac 160646 bytes_out 151131 160646 bytes_in 249292 160646 station_ip 5.119.62.17 160646 port 672 160646 unique_id port 160646 remote_ip 10.8.0.70 160647 username tahmasebi 160647 mac 160647 bytes_out 33956391 160647 bytes_in 3972511 160647 station_ip 5.119.190.34 160647 port 682 160647 unique_id port 160647 remote_ip 10.8.0.42 160650 username aminvpn 160650 mac 160650 bytes_out 0 160650 bytes_in 0 160650 station_ip 31.56.153.162 160650 port 648 160650 unique_id port 160650 remote_ip 10.8.0.14 160654 username shadkam 160654 mac 160654 bytes_out 0 160654 bytes_in 0 160654 station_ip 37.129.175.17 160654 port 680 160654 unique_id port 160654 remote_ip 10.8.0.62 160655 username aminvpn 160655 mac 160655 bytes_out 25041 160655 bytes_in 31131 160655 station_ip 31.56.153.162 160655 port 648 160655 unique_id port 160655 remote_ip 10.8.0.14 160660 username moradi 160660 mac 160660 bytes_out 0 160660 bytes_in 0 160660 station_ip 83.123.192.181 160660 port 680 160660 unique_id port 160660 remote_ip 10.8.0.126 160663 username jafari 160663 kill_reason Another user logged on this global unique id 160663 mac 160663 bytes_out 0 160663 bytes_in 0 160663 station_ip 5.134.143.111 160663 port 671 160663 unique_id port 160665 username alikomsari 160665 mac 160665 bytes_out 5527707 160665 bytes_in 28021082 160665 station_ip 5.120.28.62 160665 port 655 160665 unique_id port 160665 remote_ip 10.8.0.26 160669 username moradi 160669 mac 160669 bytes_out 26338 160669 bytes_in 34410 160669 station_ip 83.123.192.181 160669 port 655 160669 unique_id port 160669 remote_ip 10.8.0.126 160670 username nilufarrajaei 160670 kill_reason Another user logged on this global unique id 160670 mac 160670 bytes_out 0 160670 bytes_in 0 160670 station_ip 37.129.246.108 160670 port 669 160670 unique_id port 160674 username shadkam 160674 mac 160674 bytes_out 2825056 160674 bytes_in 33015090 160674 station_ip 37.129.175.17 160674 port 678 160674 unique_id port 160674 remote_ip 10.8.0.62 160675 username alihosseini1 160675 mac 160675 bytes_out 58875 160675 bytes_in 59664 160675 station_ip 5.120.130.222 160675 port 655 160675 unique_id port 160675 remote_ip 10.8.0.22 160678 username forozandeh1 160678 mac 160678 bytes_out 0 160678 bytes_in 0 160678 station_ip 113.203.81.225 160678 port 339 160678 unique_id port 160678 remote_ip 10.8.1.250 160680 username vanila 160680 mac 160680 bytes_out 0 160680 bytes_in 0 160680 station_ip 37.129.26.119 160680 port 659 160680 unique_id port 160680 remote_ip 10.8.0.178 160682 username tahmasebi 160682 mac 160682 bytes_out 0 160682 bytes_in 0 160682 station_ip 5.119.190.34 160682 port 339 160682 unique_id port 160682 remote_ip 10.8.1.90 160683 username arash 160683 mac 160683 bytes_out 12434 160683 bytes_in 35332 160683 station_ip 37.137.40.140 160683 port 648 160683 unique_id port 160683 remote_ip 10.8.0.114 160688 username pourshad 160688 mac 160641 username arash 160641 mac 160641 bytes_out 0 160641 bytes_in 0 160641 station_ip 37.137.40.140 160641 port 659 160641 unique_id port 160641 remote_ip 10.8.0.114 160642 username aminvpn 160642 mac 160642 bytes_out 69106 160642 bytes_in 232231 160642 station_ip 5.120.92.83 160642 port 648 160642 unique_id port 160642 remote_ip 10.8.0.14 160645 username shadkam 160645 mac 160645 bytes_out 0 160645 bytes_in 0 160645 station_ip 83.123.177.174 160645 port 673 160645 unique_id port 160645 remote_ip 10.8.0.62 160648 username shadkam 160648 mac 160648 bytes_out 0 160648 bytes_in 0 160648 station_ip 37.129.175.17 160648 port 679 160648 unique_id port 160648 remote_ip 10.8.0.62 160652 username shadkam 160652 mac 160652 bytes_out 0 160652 bytes_in 0 160652 station_ip 37.129.175.17 160652 port 341 160652 unique_id port 160652 remote_ip 10.8.1.218 160653 username tahmasebi 160653 mac 160653 bytes_out 0 160653 bytes_in 0 160653 station_ip 5.119.190.34 160653 port 678 160653 unique_id port 160653 remote_ip 10.8.0.42 160657 username godarzi 160657 mac 160657 bytes_out 0 160657 bytes_in 0 160657 station_ip 5.202.6.91 160657 port 339 160657 unique_id port 160658 username vanila 160658 mac 160658 bytes_out 1061206 160658 bytes_in 1346944 160658 station_ip 37.129.26.119 160658 port 673 160658 unique_id port 160658 remote_ip 10.8.0.178 160664 username nilufarrajaei 160664 kill_reason Another user logged on this global unique id 160664 mac 160664 bytes_out 0 160664 bytes_in 0 160664 station_ip 37.129.246.108 160664 port 669 160664 unique_id port 160667 username aminvpn 160667 mac 160667 bytes_out 0 160667 bytes_in 0 160667 station_ip 5.120.92.83 160667 port 339 160667 unique_id port 160667 remote_ip 10.8.1.6 160668 username tahmasebi 160668 mac 160668 bytes_out 0 160668 bytes_in 0 160668 station_ip 5.119.190.34 160668 port 339 160668 unique_id port 160668 remote_ip 10.8.1.90 160671 username morteza 160671 mac 160671 bytes_out 0 160671 bytes_in 0 160671 station_ip 83.123.37.83 160671 port 648 160671 unique_id port 160671 remote_ip 10.8.0.46 160673 username arash 160673 mac 160673 bytes_out 96040 160673 bytes_in 349857 160673 station_ip 37.137.40.140 160673 port 662 160673 unique_id port 160673 remote_ip 10.8.0.114 160677 username alihosseini1 160677 mac 160677 bytes_out 0 160677 bytes_in 0 160677 station_ip 5.120.130.222 160677 port 655 160677 unique_id port 160677 remote_ip 10.8.0.22 160681 username jamali 160681 mac 160681 bytes_out 0 160681 bytes_in 0 160681 station_ip 5.119.62.17 160681 port 342 160681 unique_id port 160681 remote_ip 10.8.1.82 160686 username hashtadani4 160686 mac 160686 bytes_out 85719 160686 bytes_in 109265 160686 station_ip 83.122.149.210 160686 port 662 160686 unique_id port 160686 remote_ip 10.8.0.182 160690 username hashtadani4 160690 mac 160690 bytes_out 0 160690 bytes_in 0 160690 station_ip 83.122.149.210 160690 port 678 160690 unique_id port 160690 remote_ip 10.8.0.182 160694 username jamali 160694 mac 160694 bytes_out 24322 160694 bytes_in 32899 160694 station_ip 5.119.62.17 160694 port 339 160694 unique_id port 160694 remote_ip 10.8.1.82 160698 username hashtadani4 160698 mac 160698 bytes_out 0 160698 bytes_in 0 160698 station_ip 83.122.149.210 160698 port 668 160698 unique_id port 160698 remote_ip 10.8.0.182 160699 username hashtadani4 160699 mac 160699 bytes_out 0 160699 bytes_in 0 160659 remote_ip 10.8.0.14 160661 username morteza 160661 mac 160661 bytes_out 651242 160661 bytes_in 12643737 160661 station_ip 83.123.37.83 160661 port 659 160661 unique_id port 160661 remote_ip 10.8.0.46 160662 username ayobi 160662 kill_reason Another user logged on this global unique id 160662 mac 160662 bytes_out 0 160662 bytes_in 0 160662 station_ip 188.245.89.250 160662 port 677 160662 unique_id port 160662 remote_ip 10.8.0.246 160666 username morteza 160666 mac 160666 bytes_out 9612 160666 bytes_in 25896 160666 station_ip 83.123.37.83 160666 port 648 160666 unique_id port 160666 remote_ip 10.8.0.46 160672 username jamali 160672 mac 160672 bytes_out 40505 160672 bytes_in 100358 160672 station_ip 5.119.62.17 160672 port 672 160672 unique_id port 160672 remote_ip 10.8.0.70 160676 username fezealinaghi 160676 kill_reason Another user logged on this global unique id 160676 mac 160676 bytes_out 0 160676 bytes_in 0 160676 station_ip 37.129.172.209 160676 port 667 160676 unique_id port 160676 remote_ip 10.8.0.78 160679 username jafari 160679 kill_reason Another user logged on this global unique id 160679 mac 160679 bytes_out 0 160679 bytes_in 0 160679 station_ip 5.134.143.111 160679 port 671 160679 unique_id port 160684 username alihosseini1 160684 mac 160684 bytes_out 0 160684 bytes_in 0 160684 station_ip 5.120.130.222 160684 port 648 160684 unique_id port 160684 remote_ip 10.8.0.22 160685 username morteza 160685 mac 160685 bytes_out 0 160685 bytes_in 0 160685 station_ip 83.123.37.83 160685 port 341 160685 unique_id port 160685 remote_ip 10.8.1.62 160687 username jafari 160687 kill_reason Another user logged on this global unique id 160687 mac 160687 bytes_out 0 160687 bytes_in 0 160687 station_ip 5.134.143.111 160687 port 671 160687 unique_id port 160689 username morteza 160689 mac 160689 bytes_out 0 160689 bytes_in 0 160689 station_ip 83.123.37.83 160689 port 672 160689 unique_id port 160689 remote_ip 10.8.0.46 160692 username hashtadani4 160692 mac 160692 bytes_out 0 160692 bytes_in 0 160692 station_ip 83.122.149.210 160692 port 668 160692 unique_id port 160692 remote_ip 10.8.0.182 160693 username nilufarrajaei 160693 kill_reason Another user logged on this global unique id 160693 mac 160693 bytes_out 0 160693 bytes_in 0 160693 station_ip 37.129.246.108 160693 port 669 160693 unique_id port 160695 username hashtadani4 160695 mac 160695 bytes_out 0 160695 bytes_in 0 160695 station_ip 83.122.149.210 160695 port 668 160695 unique_id port 160695 remote_ip 10.8.0.182 160696 username sedighe 160696 mac 160696 bytes_out 414630 160696 bytes_in 695269 160696 station_ip 83.123.152.185 160696 port 679 160696 unique_id port 160696 remote_ip 10.8.0.146 160697 username tahmasebi 160697 mac 160697 bytes_out 2722921 160697 bytes_in 38575465 160697 station_ip 5.119.190.34 160697 port 659 160697 unique_id port 160697 remote_ip 10.8.0.42 160706 username mehdizare 160706 mac 160706 bytes_out 83498 160706 bytes_in 104637 160706 station_ip 83.122.87.157 160706 port 653 160706 unique_id port 160706 remote_ip 10.8.0.90 160710 username sedighe 160710 mac 160710 bytes_out 183349 160710 bytes_in 750004 160710 station_ip 83.123.152.185 160710 port 339 160710 unique_id port 160710 remote_ip 10.8.1.78 160711 username jafari 160711 kill_reason Another user logged on this global unique id 160711 mac 160711 bytes_out 0 160711 bytes_in 0 160711 station_ip 5.134.143.111 160711 port 671 160711 unique_id port 160712 username alihosseini1 160712 mac 160712 bytes_out 0 160712 bytes_in 0 160688 bytes_out 1188715 160688 bytes_in 15857173 160688 station_ip 5.119.162.49 160688 port 668 160688 unique_id port 160688 remote_ip 10.8.0.18 160691 username hashtadani4 160691 kill_reason Maximum check online fails reached 160691 mac 160691 bytes_out 0 160691 bytes_in 0 160691 station_ip 83.122.149.210 160691 port 662 160691 unique_id port 160700 username hashtadani4 160700 mac 160700 bytes_out 0 160700 bytes_in 0 160700 station_ip 83.122.149.210 160700 port 659 160700 unique_id port 160700 remote_ip 10.8.0.182 160703 username alihosseini1 160703 mac 160703 bytes_out 353985 160703 bytes_in 1700632 160703 station_ip 5.120.130.222 160703 port 672 160703 unique_id port 160703 remote_ip 10.8.0.22 160704 username jamali 160704 mac 160704 bytes_out 0 160704 bytes_in 0 160704 station_ip 5.119.62.17 160704 port 668 160704 unique_id port 160704 remote_ip 10.8.0.70 160707 username fezealinaghi 160707 kill_reason Another user logged on this global unique id 160707 mac 160707 bytes_out 0 160707 bytes_in 0 160707 station_ip 37.129.172.209 160707 port 667 160707 unique_id port 160709 username ayobi 160709 kill_reason Another user logged on this global unique id 160709 mac 160709 bytes_out 0 160709 bytes_in 0 160709 station_ip 188.245.89.250 160709 port 677 160709 unique_id port 160718 username sedighe 160718 mac 160718 bytes_out 0 160718 bytes_in 0 160718 station_ip 83.123.152.185 160718 port 339 160718 unique_id port 160718 remote_ip 10.8.1.78 160720 username godarzi 160720 kill_reason Another user logged on this global unique id 160720 mac 160720 bytes_out 0 160720 bytes_in 0 160720 station_ip 5.202.6.91 160720 port 681 160720 unique_id port 160720 remote_ip 10.8.0.174 160721 username hashtadani4 160721 mac 160721 bytes_out 0 160721 bytes_in 0 160721 station_ip 83.122.149.210 160721 port 678 160721 unique_id port 160721 remote_ip 10.8.0.182 160722 username alihosseini1 160722 mac 160722 bytes_out 11392 160722 bytes_in 22667 160722 station_ip 5.120.130.222 160722 port 343 160722 unique_id port 160722 remote_ip 10.8.1.106 160724 username jafari 160724 mac 160724 bytes_out 0 160724 bytes_in 0 160724 station_ip 5.134.143.111 160724 port 671 160724 unique_id port 160725 username fezealinaghi 160725 kill_reason Another user logged on this global unique id 160725 mac 160725 bytes_out 0 160725 bytes_in 0 160725 station_ip 37.129.172.209 160725 port 667 160725 unique_id port 160727 username vanila 160727 mac 160727 bytes_out 0 160727 bytes_in 0 160727 station_ip 37.129.38.231 160727 port 671 160727 unique_id port 160727 remote_ip 10.8.0.178 160729 username hashtadani4 160729 mac 160729 bytes_out 0 160729 bytes_in 0 160729 station_ip 83.122.149.210 160729 port 679 160729 unique_id port 160729 remote_ip 10.8.0.182 160730 username jamali 160730 mac 160730 bytes_out 0 160730 bytes_in 0 160730 station_ip 5.119.62.17 160730 port 671 160730 unique_id port 160730 remote_ip 10.8.0.70 160732 username farhad2 160732 mac 160732 bytes_out 660953 160732 bytes_in 3015889 160732 station_ip 5.120.18.134 160732 port 648 160732 unique_id port 160732 remote_ip 10.8.0.190 160741 username malekpoir 160741 kill_reason Maximum check online fails reached 160741 mac 160741 bytes_out 0 160741 bytes_in 0 160741 station_ip 5.120.106.99 160741 port 679 160741 unique_id port 160742 username aminvpn 160742 mac 160742 bytes_out 0 160742 bytes_in 0 160742 station_ip 5.120.23.20 160742 port 334 160742 unique_id port 160742 remote_ip 10.8.1.6 160749 username hashtadani4 160699 station_ip 83.122.149.210 160699 port 659 160699 unique_id port 160699 remote_ip 10.8.0.182 160701 username tahmasebi 160701 kill_reason Maximum check online fails reached 160701 mac 160701 bytes_out 0 160701 bytes_in 0 160701 station_ip 5.119.190.34 160701 port 342 160701 unique_id port 160702 username hashtadani4 160702 mac 160702 bytes_out 0 160702 bytes_in 0 160702 station_ip 83.122.149.210 160702 port 659 160702 unique_id port 160702 remote_ip 10.8.0.182 160705 username arash 160705 mac 160705 bytes_out 0 160705 bytes_in 0 160705 station_ip 37.137.40.140 160705 port 668 160705 unique_id port 160705 remote_ip 10.8.0.114 160708 username hashtadani4 160708 mac 160708 bytes_out 0 160708 bytes_in 0 160708 station_ip 83.122.149.210 160708 port 668 160708 unique_id port 160708 remote_ip 10.8.0.182 160713 username moradi 160713 mac 160713 bytes_out 361213 160713 bytes_in 1425966 160713 station_ip 83.123.160.161 160713 port 648 160713 unique_id port 160713 remote_ip 10.8.0.126 160714 username hashtadani4 160714 mac 160714 bytes_out 0 160714 bytes_in 0 160714 station_ip 83.122.149.210 160714 port 648 160714 unique_id port 160714 remote_ip 10.8.0.182 160717 username hashtadani4 160717 mac 160717 bytes_out 0 160717 bytes_in 0 160717 station_ip 83.122.149.210 160717 port 678 160717 unique_id port 160717 remote_ip 10.8.0.182 160723 username jamali 160723 mac 160723 bytes_out 1616017 160723 bytes_in 24542935 160723 station_ip 5.119.62.17 160723 port 648 160723 unique_id port 160723 remote_ip 10.8.0.70 160726 username pourshad 160726 mac 160726 bytes_out 0 160726 bytes_in 0 160726 station_ip 5.119.162.49 160726 port 341 160726 unique_id port 160726 remote_ip 10.8.1.154 160733 username jamali 160733 mac 160733 bytes_out 0 160733 bytes_in 0 160733 station_ip 5.119.62.17 160733 port 679 160733 unique_id port 160733 remote_ip 10.8.0.70 160737 username sedighe 160737 mac 160737 bytes_out 0 160737 bytes_in 0 160737 station_ip 83.123.152.185 160737 port 339 160737 unique_id port 160737 remote_ip 10.8.1.78 160738 username alikomsari 160738 kill_reason Another user logged on this global unique id 160738 mac 160738 bytes_out 0 160738 bytes_in 0 160738 station_ip 5.120.28.62 160738 port 678 160738 unique_id port 160738 remote_ip 10.8.0.26 160743 username hashtadani4 160743 mac 160743 bytes_out 0 160743 bytes_in 0 160743 station_ip 83.122.149.210 160743 port 334 160743 unique_id port 160743 remote_ip 10.8.1.142 160744 username hashtadani4 160744 mac 160744 bytes_out 0 160744 bytes_in 0 160744 station_ip 83.122.149.210 160744 port 334 160744 unique_id port 160744 remote_ip 10.8.1.142 160745 username hashtadani4 160745 kill_reason Maximum check online fails reached 160745 mac 160745 bytes_out 0 160745 bytes_in 0 160745 station_ip 83.122.149.210 160745 port 686 160745 unique_id port 160747 username sedighe 160747 mac 160747 bytes_out 0 160747 bytes_in 0 160747 station_ip 83.123.152.185 160747 port 339 160747 unique_id port 160747 remote_ip 10.8.1.78 160758 username naeimeh 160758 mac 160758 bytes_out 0 160758 bytes_in 0 160758 station_ip 37.129.157.157 160758 port 339 160758 unique_id port 160758 remote_ip 10.8.1.206 160761 username hashtadani4 160761 mac 160761 bytes_out 0 160761 bytes_in 0 160761 station_ip 83.122.149.210 160761 port 684 160761 unique_id port 160761 remote_ip 10.8.0.182 160763 username hashtadani4 160763 mac 160763 bytes_out 0 160763 bytes_in 0 160712 station_ip 5.120.130.222 160712 port 343 160712 unique_id port 160712 remote_ip 10.8.1.106 160715 username jamali 160715 mac 160715 bytes_out 37204 160715 bytes_in 45324 160715 station_ip 5.119.62.17 160715 port 678 160715 unique_id port 160715 remote_ip 10.8.0.70 160716 username sedighe 160716 mac 160716 bytes_out 0 160716 bytes_in 0 160716 station_ip 83.123.152.185 160716 port 339 160716 unique_id port 160716 remote_ip 10.8.1.78 160719 username alihosseini1 160719 mac 160719 bytes_out 0 160719 bytes_in 0 160719 station_ip 5.120.130.222 160719 port 343 160719 unique_id port 160719 remote_ip 10.8.1.106 160728 username jamali 160728 mac 160728 bytes_out 27103 160728 bytes_in 20593 160728 station_ip 5.119.62.17 160728 port 679 160728 unique_id port 160728 remote_ip 10.8.0.70 160731 username hosseine 160731 kill_reason Another user logged on this global unique id 160731 mac 160731 bytes_out 0 160731 bytes_in 0 160731 station_ip 83.123.105.75 160731 port 676 160731 unique_id port 160731 remote_ip 10.8.0.238 160734 username malekpoir 160734 mac 160734 bytes_out 0 160734 bytes_in 0 160734 station_ip 5.120.106.99 160734 port 334 160734 unique_id port 160734 remote_ip 10.8.1.54 160735 username alihosseini1 160735 mac 160735 bytes_out 0 160735 bytes_in 0 160735 station_ip 5.120.130.222 160735 port 343 160735 unique_id port 160735 remote_ip 10.8.1.106 160736 username jamali 160736 mac 160736 bytes_out 142027 160736 bytes_in 290328 160736 station_ip 5.119.62.17 160736 port 648 160736 unique_id port 160736 remote_ip 10.8.0.70 160739 username fezealinaghi 160739 kill_reason Another user logged on this global unique id 160739 mac 160739 bytes_out 0 160739 bytes_in 0 160739 station_ip 37.129.172.209 160739 port 667 160739 unique_id port 160740 username hashtadani4 160740 mac 160740 bytes_out 0 160740 bytes_in 0 160740 station_ip 83.122.149.210 160740 port 685 160740 unique_id port 160740 remote_ip 10.8.0.182 160746 username hashtadani4 160746 mac 160746 bytes_out 0 160746 bytes_in 0 160746 station_ip 83.122.149.210 160746 port 687 160746 unique_id port 160746 remote_ip 10.8.0.182 160748 username shadkam 160748 mac 160748 bytes_out 0 160748 bytes_in 0 160748 station_ip 83.123.134.61 160748 port 685 160748 unique_id port 160748 remote_ip 10.8.0.62 160751 username rahim 160751 kill_reason Another user logged on this global unique id 160751 mac 160751 bytes_out 0 160751 bytes_in 0 160751 station_ip 5.120.45.248 160751 port 668 160751 unique_id port 160751 remote_ip 10.8.0.50 160753 username hashtadani4 160753 mac 160753 bytes_out 0 160753 bytes_in 0 160753 station_ip 83.122.149.210 160753 port 684 160753 unique_id port 160753 remote_ip 10.8.0.182 160756 username houshang 160756 kill_reason Another user logged on this global unique id 160756 mac 160756 bytes_out 0 160756 bytes_in 0 160756 station_ip 5.119.249.82 160756 port 680 160756 unique_id port 160756 remote_ip 10.8.0.134 160767 username fezealinaghi 160767 kill_reason Another user logged on this global unique id 160767 mac 160767 bytes_out 0 160767 bytes_in 0 160767 station_ip 37.129.172.209 160767 port 667 160767 unique_id port 160770 username houshang 160770 mac 160770 bytes_out 0 160770 bytes_in 0 160770 station_ip 5.119.249.82 160770 port 680 160770 unique_id port 160774 username rahim 160774 mac 160774 bytes_out 0 160774 bytes_in 0 160774 station_ip 5.120.45.248 160774 port 668 160774 unique_id port 160778 username fezealinaghi 160778 kill_reason Another user logged on this global unique id 160749 mac 160749 bytes_out 0 160749 bytes_in 0 160749 station_ip 83.122.149.210 160749 port 685 160749 unique_id port 160749 remote_ip 10.8.0.182 160750 username farhad2 160750 mac 160750 bytes_out 812178 160750 bytes_in 9950945 160750 station_ip 5.119.214.91 160750 port 684 160750 unique_id port 160750 remote_ip 10.8.0.190 160752 username fezealinaghi 160752 kill_reason Another user logged on this global unique id 160752 mac 160752 bytes_out 0 160752 bytes_in 0 160752 station_ip 37.129.172.209 160752 port 667 160752 unique_id port 160754 username aminvpn 160754 mac 160754 bytes_out 0 160754 bytes_in 0 160754 station_ip 5.120.23.20 160754 port 334 160754 unique_id port 160754 remote_ip 10.8.1.6 160755 username hashtadani4 160755 mac 160755 bytes_out 0 160755 bytes_in 0 160755 station_ip 83.122.149.210 160755 port 684 160755 unique_id port 160755 remote_ip 10.8.0.182 160757 username fezealinaghi 160757 kill_reason Another user logged on this global unique id 160757 mac 160757 bytes_out 0 160757 bytes_in 0 160757 station_ip 37.129.172.209 160757 port 667 160757 unique_id port 160759 username mosi 160759 kill_reason Another user logged on this global unique id 160759 mac 160759 bytes_out 0 160759 bytes_in 0 160759 station_ip 151.235.118.222 160759 port 673 160759 unique_id port 160759 remote_ip 10.8.0.138 160760 username hashtadani4 160760 mac 160760 bytes_out 0 160760 bytes_in 0 160760 station_ip 83.122.149.210 160760 port 684 160760 unique_id port 160760 remote_ip 10.8.0.182 160762 username mehdizare 160762 mac 160762 bytes_out 0 160762 bytes_in 0 160762 station_ip 83.122.87.157 160762 port 653 160762 unique_id port 160762 remote_ip 10.8.0.90 160764 username kordestani 160764 mac 160764 bytes_out 0 160764 bytes_in 0 160764 station_ip 83.122.66.53 160764 port 672 160764 unique_id port 160764 remote_ip 10.8.0.74 160766 username hashtadani4 160766 mac 160766 bytes_out 0 160766 bytes_in 0 160766 station_ip 83.122.149.210 160766 port 672 160766 unique_id port 160766 remote_ip 10.8.0.182 160768 username hashtadani4 160768 mac 160768 bytes_out 0 160768 bytes_in 0 160768 station_ip 83.122.149.210 160768 port 684 160768 unique_id port 160768 remote_ip 10.8.0.182 160771 username mosi 160771 kill_reason Another user logged on this global unique id 160771 mac 160771 bytes_out 0 160771 bytes_in 0 160771 station_ip 151.235.118.222 160771 port 673 160771 unique_id port 160773 username hashtadani4 160773 mac 160773 bytes_out 0 160773 bytes_in 0 160773 station_ip 83.122.149.210 160773 port 685 160773 unique_id port 160773 remote_ip 10.8.0.182 160775 username rezaei 160775 kill_reason Another user logged on this global unique id 160775 mac 160775 bytes_out 0 160775 bytes_in 0 160775 station_ip 5.119.53.117 160775 port 655 160775 unique_id port 160775 remote_ip 10.8.0.230 160777 username alihosseini1 160777 mac 160777 bytes_out 0 160777 bytes_in 0 160777 station_ip 5.119.134.122 160777 port 339 160777 unique_id port 160777 remote_ip 10.8.1.106 160781 username hashtadani4 160781 mac 160781 bytes_out 0 160781 bytes_in 0 160781 station_ip 83.122.149.210 160781 port 680 160781 unique_id port 160781 remote_ip 10.8.0.182 160785 username mosi 160785 kill_reason Another user logged on this global unique id 160785 mac 160785 bytes_out 0 160785 bytes_in 0 160785 station_ip 151.235.118.222 160785 port 673 160785 unique_id port 160789 username hashtadani4 160789 mac 160789 bytes_out 0 160789 bytes_in 0 160789 station_ip 83.122.149.210 160789 port 339 160763 station_ip 83.122.149.210 160763 port 684 160763 unique_id port 160763 remote_ip 10.8.0.182 160765 username hashtadani4 160765 mac 160765 bytes_out 0 160765 bytes_in 0 160765 station_ip 83.122.149.210 160765 port 672 160765 unique_id port 160765 remote_ip 10.8.0.182 160769 username zare 160769 kill_reason Relative expiration date has reached 160769 mac 160769 bytes_out 0 160769 bytes_in 0 160769 station_ip 37.27.5.216 160769 port 684 160769 unique_id port 160772 username sedighe 160772 mac 160772 bytes_out 141459 160772 bytes_in 201039 160772 station_ip 83.123.152.185 160772 port 685 160772 unique_id port 160772 remote_ip 10.8.0.146 160776 username hashtadani4 160776 mac 160776 bytes_out 0 160776 bytes_in 0 160776 station_ip 83.122.149.210 160776 port 685 160776 unique_id port 160776 remote_ip 10.8.0.182 160779 username houshang 160779 mac 160779 bytes_out 1250689 160779 bytes_in 21556843 160779 station_ip 5.119.249.82 160779 port 680 160779 unique_id port 160779 remote_ip 10.8.0.134 160780 username nilufarrajaei 160780 mac 160780 bytes_out 0 160780 bytes_in 0 160780 station_ip 37.129.246.108 160780 port 669 160780 unique_id port 160782 username shadkam 160782 kill_reason Another user logged on this global unique id 160782 mac 160782 bytes_out 0 160782 bytes_in 0 160782 station_ip 37.129.54.205 160782 port 672 160782 unique_id port 160782 remote_ip 10.8.0.62 160783 username houshang 160783 mac 160783 bytes_out 60184 160783 bytes_in 102248 160783 station_ip 5.119.249.82 160783 port 685 160783 unique_id port 160783 remote_ip 10.8.0.134 160791 username hashtadani4 160791 mac 160791 bytes_out 0 160791 bytes_in 0 160791 station_ip 83.122.149.210 160791 port 669 160791 unique_id port 160791 remote_ip 10.8.0.182 160796 username hashtadani4 160796 mac 160796 bytes_out 0 160796 bytes_in 0 160796 station_ip 83.122.149.210 160796 port 659 160796 unique_id port 160796 remote_ip 10.8.0.182 160798 username godarzi 160798 mac 160798 bytes_out 0 160798 bytes_in 0 160798 station_ip 5.202.6.91 160798 port 681 160798 unique_id port 160802 username tahmasebi 160802 mac 160802 bytes_out 0 160802 bytes_in 0 160802 station_ip 5.119.190.34 160802 port 655 160802 unique_id port 160802 remote_ip 10.8.0.42 160805 username aminvpn 160805 kill_reason Another user logged on this global unique id 160805 mac 160805 bytes_out 0 160805 bytes_in 0 160805 station_ip 5.120.23.20 160805 port 334 160805 unique_id port 160805 remote_ip 10.8.1.6 160807 username tahmasebi 160807 mac 160807 bytes_out 5082 160807 bytes_in 12835 160807 station_ip 5.119.190.34 160807 port 339 160807 unique_id port 160807 remote_ip 10.8.1.90 160809 username farhad2 160809 mac 160809 bytes_out 0 160809 bytes_in 0 160809 station_ip 5.119.214.91 160809 port 668 160809 unique_id port 160811 username hashtadani4 160811 mac 160811 bytes_out 0 160811 bytes_in 0 160811 station_ip 83.122.149.210 160811 port 668 160811 unique_id port 160811 remote_ip 10.8.0.182 160813 username farhad2 160813 mac 160813 bytes_out 0 160813 bytes_in 0 160813 station_ip 5.119.214.91 160813 port 659 160813 unique_id port 160813 remote_ip 10.8.0.190 160814 username tahmasebi 160814 mac 160814 bytes_out 0 160814 bytes_in 0 160814 station_ip 5.119.190.34 160814 port 339 160814 unique_id port 160814 remote_ip 10.8.1.90 160815 username houshang 160815 mac 160815 bytes_out 0 160815 bytes_in 0 160815 station_ip 5.119.249.82 160815 port 680 160778 mac 160778 bytes_out 0 160778 bytes_in 0 160778 station_ip 37.129.172.209 160778 port 667 160778 unique_id port 160784 username nilufarrajaei 160784 mac 160784 bytes_out 5222 160784 bytes_in 8696 160784 station_ip 37.129.246.108 160784 port 688 160784 unique_id port 160784 remote_ip 10.8.0.206 160786 username shadkam 160786 mac 160786 bytes_out 0 160786 bytes_in 0 160786 station_ip 37.129.54.205 160786 port 672 160786 unique_id port 160787 username sedighe 160787 mac 160787 bytes_out 10127 160787 bytes_in 10718 160787 station_ip 83.123.152.185 160787 port 684 160787 unique_id port 160787 remote_ip 10.8.0.146 160788 username nilufarrajaei 160788 mac 160788 bytes_out 123083 160788 bytes_in 796984 160788 station_ip 37.129.246.108 160788 port 669 160788 unique_id port 160788 remote_ip 10.8.0.206 160793 username milan 160793 kill_reason Another user logged on this global unique id 160793 mac 160793 bytes_out 0 160793 bytes_in 0 160793 station_ip 5.119.161.192 160793 port 675 160793 unique_id port 160795 username fezealinaghi 160795 kill_reason Another user logged on this global unique id 160795 mac 160795 bytes_out 0 160795 bytes_in 0 160795 station_ip 37.129.172.209 160795 port 667 160795 unique_id port 160799 username rezaei 160799 mac 160799 bytes_out 0 160799 bytes_in 0 160799 station_ip 5.119.53.117 160799 port 655 160799 unique_id port 160800 username houshang 160800 kill_reason Another user logged on this global unique id 160800 mac 160800 bytes_out 0 160800 bytes_in 0 160800 station_ip 5.119.249.82 160800 port 680 160800 unique_id port 160800 remote_ip 10.8.0.134 160816 username hashtadani4 160816 mac 160816 bytes_out 0 160816 bytes_in 0 160816 station_ip 83.122.149.210 160816 port 339 160816 unique_id port 160816 remote_ip 10.8.1.142 160820 username morteza 160820 mac 160820 bytes_out 493813 160820 bytes_in 6626321 160820 station_ip 83.123.69.71 160820 port 669 160820 unique_id port 160820 remote_ip 10.8.0.46 160823 username fezealinaghi 160823 kill_reason Another user logged on this global unique id 160823 mac 160823 bytes_out 0 160823 bytes_in 0 160823 station_ip 37.129.172.209 160823 port 667 160823 unique_id port 160834 username fezealinaghi 160834 kill_reason Another user logged on this global unique id 160834 mac 160834 bytes_out 0 160834 bytes_in 0 160834 station_ip 37.129.172.209 160834 port 667 160834 unique_id port 160836 username nilufarrajaei 160836 kill_reason Another user logged on this global unique id 160836 mac 160836 bytes_out 0 160836 bytes_in 0 160836 station_ip 37.129.246.108 160836 port 684 160836 unique_id port 160836 remote_ip 10.8.0.206 160837 username hashtadani4 160837 mac 160837 bytes_out 0 160837 bytes_in 0 160837 station_ip 83.122.149.210 160837 port 341 160837 unique_id port 160837 remote_ip 10.8.1.142 160840 username moradi 160840 mac 160840 bytes_out 1752085 160840 bytes_in 27177196 160840 station_ip 83.123.241.237 160840 port 648 160840 unique_id port 160840 remote_ip 10.8.0.126 160843 username houshang 160843 mac 160843 bytes_out 2441674 160843 bytes_in 37194924 160843 station_ip 5.119.249.82 160843 port 653 160843 unique_id port 160843 remote_ip 10.8.0.134 160848 username sabaghnezhad 160848 mac 160848 bytes_out 10540 160848 bytes_in 14056 160848 station_ip 83.123.251.232 160848 port 668 160848 unique_id port 160848 remote_ip 10.8.0.186 160851 username mehdizare 160851 mac 160851 bytes_out 228485 160851 bytes_in 116290 160851 station_ip 83.122.87.157 160851 port 671 160851 unique_id port 160789 unique_id port 160789 remote_ip 10.8.1.142 160790 username hashtadani4 160790 mac 160790 bytes_out 0 160790 bytes_in 0 160790 station_ip 83.122.149.210 160790 port 339 160790 unique_id port 160790 remote_ip 10.8.1.142 160792 username tahmasebi 160792 mac 160792 bytes_out 5385006 160792 bytes_in 3945043 160792 station_ip 5.119.190.34 160792 port 659 160792 unique_id port 160792 remote_ip 10.8.0.42 160794 username hatami 160794 mac 160794 bytes_out 3675622 160794 bytes_in 43824012 160794 station_ip 151.235.88.13 160794 port 671 160794 unique_id port 160794 remote_ip 10.8.0.106 160797 username hashtadani4 160797 mac 160797 bytes_out 0 160797 bytes_in 0 160797 station_ip 83.122.149.210 160797 port 669 160797 unique_id port 160797 remote_ip 10.8.0.182 160801 username tahmasebi 160801 mac 160801 bytes_out 0 160801 bytes_in 0 160801 station_ip 5.119.190.34 160801 port 655 160801 unique_id port 160801 remote_ip 10.8.0.42 160803 username farhad2 160803 kill_reason Another user logged on this global unique id 160803 mac 160803 bytes_out 0 160803 bytes_in 0 160803 station_ip 5.119.214.91 160803 port 668 160803 unique_id port 160803 remote_ip 10.8.0.190 160804 username hashtadani4 160804 mac 160804 bytes_out 0 160804 bytes_in 0 160804 station_ip 83.122.149.210 160804 port 339 160804 unique_id port 160804 remote_ip 10.8.1.142 160806 username hashtadani4 160806 mac 160806 bytes_out 0 160806 bytes_in 0 160806 station_ip 83.122.149.210 160806 port 655 160806 unique_id port 160806 remote_ip 10.8.0.182 160808 username mosi 160808 kill_reason Another user logged on this global unique id 160808 mac 160808 bytes_out 0 160808 bytes_in 0 160808 station_ip 151.235.118.222 160808 port 673 160808 unique_id port 160810 username fezealinaghi 160810 kill_reason Another user logged on this global unique id 160810 mac 160810 bytes_out 0 160810 bytes_in 0 160810 station_ip 37.129.172.209 160810 port 667 160810 unique_id port 160812 username sedighe 160812 mac 160812 bytes_out 0 160812 bytes_in 0 160812 station_ip 83.123.152.185 160812 port 672 160812 unique_id port 160812 remote_ip 10.8.0.146 160818 username mehdizare 160818 mac 160818 bytes_out 0 160818 bytes_in 0 160818 station_ip 83.122.87.157 160818 port 653 160818 unique_id port 160818 remote_ip 10.8.0.90 160822 username houshang 160822 mac 160822 bytes_out 1856442 160822 bytes_in 32033699 160822 station_ip 5.119.249.82 160822 port 668 160822 unique_id port 160822 remote_ip 10.8.0.134 160825 username godarzi 160825 mac 160825 bytes_out 1033523 160825 bytes_in 4143202 160825 station_ip 5.202.6.91 160825 port 655 160825 unique_id port 160825 remote_ip 10.8.0.174 160827 username hashtadani4 160827 mac 160827 bytes_out 0 160827 bytes_in 0 160827 station_ip 83.122.149.210 160827 port 648 160827 unique_id port 160827 remote_ip 10.8.0.182 160829 username tahmasebi 160829 mac 160829 bytes_out 0 160829 bytes_in 0 160829 station_ip 5.119.190.34 160829 port 653 160829 unique_id port 160829 remote_ip 10.8.0.42 160830 username fezealinaghi 160830 kill_reason Another user logged on this global unique id 160830 mac 160830 bytes_out 0 160830 bytes_in 0 160830 station_ip 37.129.172.209 160830 port 667 160830 unique_id port 160832 username tahmasebi 160832 mac 160832 bytes_out 0 160832 bytes_in 0 160832 station_ip 5.119.190.34 160832 port 655 160832 unique_id port 160832 remote_ip 10.8.0.42 160835 username pourshad 160835 mac 160835 bytes_out 0 160835 bytes_in 0 160835 station_ip 5.119.162.49 160815 unique_id port 160817 username farhad2 160817 mac 160817 bytes_out 142016 160817 bytes_in 1001112 160817 station_ip 5.119.214.91 160817 port 659 160817 unique_id port 160817 remote_ip 10.8.0.190 160819 username malekpoir 160819 mac 160819 bytes_out 4470360 160819 bytes_in 42400380 160819 station_ip 5.120.106.99 160819 port 648 160819 unique_id port 160819 remote_ip 10.8.0.58 160821 username tahmasebi 160821 mac 160821 bytes_out 0 160821 bytes_in 0 160821 station_ip 5.119.190.34 160821 port 339 160821 unique_id port 160821 remote_ip 10.8.1.90 160824 username tahmasebi 160824 mac 160824 bytes_out 0 160824 bytes_in 0 160824 station_ip 5.119.190.34 160824 port 339 160824 unique_id port 160824 remote_ip 10.8.1.90 160826 username aminvpn 160826 mac 160826 bytes_out 1994053 160826 bytes_in 14272161 160826 station_ip 83.122.119.84 160826 port 682 160826 unique_id port 160826 remote_ip 10.8.0.14 160828 username tahmasebi 160828 mac 160828 bytes_out 0 160828 bytes_in 0 160828 station_ip 5.119.190.34 160828 port 339 160828 unique_id port 160828 remote_ip 10.8.1.90 160831 username farhad2 160831 kill_reason Another user logged on this global unique id 160831 mac 160831 bytes_out 0 160831 bytes_in 0 160831 station_ip 5.119.214.91 160831 port 659 160831 unique_id port 160831 remote_ip 10.8.0.190 160833 username hashtadani4 160833 mac 160833 bytes_out 0 160833 bytes_in 0 160833 station_ip 83.122.149.210 160833 port 339 160833 unique_id port 160833 remote_ip 10.8.1.142 160838 username farhad2 160838 mac 160838 bytes_out 0 160838 bytes_in 0 160838 station_ip 5.119.214.91 160838 port 659 160838 unique_id port 160839 username hashtadani4 160839 mac 160839 bytes_out 0 160839 bytes_in 0 160839 station_ip 83.122.149.210 160839 port 655 160839 unique_id port 160839 remote_ip 10.8.0.182 160842 username farhad2 160842 kill_reason Another user logged on this global unique id 160842 mac 160842 bytes_out 0 160842 bytes_in 0 160842 station_ip 5.119.214.91 160842 port 659 160842 unique_id port 160842 remote_ip 10.8.0.190 160844 username kalantary 160844 mac 160844 bytes_out 3207207 160844 bytes_in 14697535 160844 station_ip 83.122.31.232 160844 port 687 160844 unique_id port 160844 remote_ip 10.8.0.98 160845 username farhad2 160845 mac 160845 bytes_out 0 160845 bytes_in 0 160845 station_ip 5.119.214.91 160845 port 659 160845 unique_id port 160846 username farhad2 160846 mac 160846 bytes_out 0 160846 bytes_in 0 160846 station_ip 5.119.214.91 160846 port 653 160846 unique_id port 160846 remote_ip 10.8.0.190 160847 username sabaghnezhad 160847 mac 160847 bytes_out 2423656 160847 bytes_in 2525129 160847 station_ip 83.123.251.232 160847 port 666 160847 unique_id port 160847 remote_ip 10.8.0.186 160853 username mehdizare 160853 mac 160853 bytes_out 0 160853 bytes_in 0 160853 station_ip 83.122.87.157 160853 port 648 160853 unique_id port 160853 remote_ip 10.8.0.90 160855 username hashtadani4 160855 mac 160855 bytes_out 0 160855 bytes_in 0 160855 station_ip 83.122.149.210 160855 port 648 160855 unique_id port 160855 remote_ip 10.8.0.182 160856 username hashtadani4 160856 mac 160856 bytes_out 0 160856 bytes_in 0 160856 station_ip 83.122.149.210 160856 port 671 160856 unique_id port 160856 remote_ip 10.8.0.182 160858 username mehdizare 160858 mac 160858 bytes_out 0 160858 bytes_in 0 160858 station_ip 83.122.87.157 160858 port 669 160858 unique_id port 160858 remote_ip 10.8.0.90 160835 port 341 160835 unique_id port 160835 remote_ip 10.8.1.154 160841 username hashtadani4 160841 mac 160841 bytes_out 0 160841 bytes_in 0 160841 station_ip 83.122.149.210 160841 port 655 160841 unique_id port 160841 remote_ip 10.8.0.182 160849 username ayobi 160849 kill_reason Another user logged on this global unique id 160849 mac 160849 bytes_out 0 160849 bytes_in 0 160849 station_ip 188.245.89.250 160849 port 677 160849 unique_id port 160850 username morteza 160850 mac 160850 bytes_out 7159197 160850 bytes_in 27512913 160850 station_ip 83.123.67.173 160850 port 648 160850 unique_id port 160850 remote_ip 10.8.0.46 160852 username morteza 160852 mac 160852 bytes_out 0 160852 bytes_in 0 160852 station_ip 83.123.67.173 160852 port 669 160852 unique_id port 160852 remote_ip 10.8.0.46 160854 username morteza 160854 mac 160854 bytes_out 0 160854 bytes_in 0 160854 station_ip 83.123.67.173 160854 port 648 160854 unique_id port 160854 remote_ip 10.8.0.46 160857 username kalantary 160857 mac 160857 bytes_out 592640 160857 bytes_in 3825161 160857 station_ip 83.122.31.232 160857 port 655 160857 unique_id port 160857 remote_ip 10.8.0.98 160859 username morteza 160859 mac 160859 bytes_out 0 160859 bytes_in 0 160859 station_ip 83.123.67.173 160859 port 648 160859 unique_id port 160859 remote_ip 10.8.0.46 160861 username farhad2 160861 kill_reason Another user logged on this global unique id 160861 mac 160861 bytes_out 0 160861 bytes_in 0 160861 station_ip 5.119.214.91 160861 port 653 160861 unique_id port 160861 remote_ip 10.8.0.190 160862 username fezealinaghi 160862 kill_reason Another user logged on this global unique id 160862 mac 160862 bytes_out 0 160862 bytes_in 0 160862 station_ip 37.129.172.209 160862 port 667 160862 unique_id port 160866 username hashtadani4 160866 mac 160866 bytes_out 0 160866 bytes_in 0 160866 station_ip 83.122.149.210 160866 port 668 160866 unique_id port 160866 remote_ip 10.8.0.182 160872 username farhad2 160872 mac 160872 bytes_out 299641 160872 bytes_in 4567969 160872 station_ip 5.119.214.91 160872 port 668 160872 unique_id port 160872 remote_ip 10.8.0.190 160874 username morteza 160874 mac 160874 bytes_out 0 160874 bytes_in 0 160874 station_ip 83.123.67.173 160874 port 344 160874 unique_id port 160874 remote_ip 10.8.1.62 160882 username morteza 160882 mac 160882 bytes_out 0 160882 bytes_in 0 160882 station_ip 83.123.67.173 160882 port 341 160882 unique_id port 160882 remote_ip 10.8.1.62 160883 username nilufarrajaei 160883 mac 160883 bytes_out 0 160883 bytes_in 0 160883 station_ip 37.129.246.108 160883 port 684 160883 unique_id port 160892 username kalantary 160892 mac 160892 bytes_out 592408 160892 bytes_in 2982303 160892 station_ip 83.122.31.232 160892 port 668 160892 unique_id port 160892 remote_ip 10.8.0.98 160898 username morteza 160898 mac 160898 bytes_out 0 160898 bytes_in 0 160898 station_ip 83.123.67.173 160898 port 666 160898 unique_id port 160898 remote_ip 10.8.0.46 160903 username morteza 160903 mac 160903 bytes_out 0 160903 bytes_in 0 160903 station_ip 83.123.67.173 160903 port 666 160903 unique_id port 160903 remote_ip 10.8.0.46 160905 username hashtadani4 160905 mac 160905 bytes_out 0 160905 bytes_in 0 160905 station_ip 83.122.149.210 160905 port 672 160905 unique_id port 160905 remote_ip 10.8.0.182 160907 username morteza 160907 mac 160907 bytes_out 0 160907 bytes_in 0 160907 station_ip 83.123.67.173 160907 port 672 160851 remote_ip 10.8.0.90 160863 username morteza 160863 mac 160863 bytes_out 0 160863 bytes_in 0 160863 station_ip 83.123.67.173 160863 port 669 160863 unique_id port 160863 remote_ip 10.8.0.46 160865 username moradi 160865 mac 160865 bytes_out 2242318 160865 bytes_in 39659768 160865 station_ip 83.123.195.133 160865 port 668 160865 unique_id port 160865 remote_ip 10.8.0.126 160867 username farhad2 160867 mac 160867 bytes_out 0 160867 bytes_in 0 160867 station_ip 5.119.214.91 160867 port 653 160867 unique_id port 160867 remote_ip 10.8.0.190 160868 username farhad2 160868 mac 160868 bytes_out 0 160868 bytes_in 0 160868 station_ip 5.119.214.91 160868 port 653 160868 unique_id port 160868 remote_ip 10.8.0.190 160869 username mosi 160869 kill_reason Another user logged on this global unique id 160869 mac 160869 bytes_out 0 160869 bytes_in 0 160869 station_ip 151.235.118.222 160869 port 673 160869 unique_id port 160873 username morteza 160873 mac 160873 bytes_out 0 160873 bytes_in 0 160873 station_ip 83.123.67.173 160873 port 668 160873 unique_id port 160873 remote_ip 10.8.0.46 160878 username jamali 160878 mac 160878 bytes_out 1432018 160878 bytes_in 19131685 160878 station_ip 5.119.62.17 160878 port 683 160878 unique_id port 160878 remote_ip 10.8.0.70 160881 username sabaghnezhad 160881 mac 160881 bytes_out 0 160881 bytes_in 0 160881 station_ip 83.123.251.232 160881 port 341 160881 unique_id port 160881 remote_ip 10.8.1.130 160887 username hashtadani4 160887 mac 160887 bytes_out 0 160887 bytes_in 0 160887 station_ip 83.122.149.210 160887 port 680 160887 unique_id port 160887 remote_ip 10.8.0.182 160888 username morteza 160888 mac 160888 bytes_out 0 160888 bytes_in 0 160888 station_ip 83.123.67.173 160888 port 341 160888 unique_id port 160888 remote_ip 10.8.1.62 160891 username hashtadani4 160891 mac 160891 bytes_out 0 160891 bytes_in 0 160891 station_ip 83.122.149.210 160891 port 672 160891 unique_id port 160891 remote_ip 10.8.0.182 160895 username hashtadani4 160895 mac 160895 bytes_out 0 160895 bytes_in 0 160895 station_ip 83.122.149.210 160895 port 666 160895 unique_id port 160895 remote_ip 10.8.0.182 160896 username morteza 160896 mac 160896 bytes_out 0 160896 bytes_in 0 160896 station_ip 83.123.67.173 160896 port 666 160896 unique_id port 160896 remote_ip 10.8.0.46 160899 username milan 160899 kill_reason Another user logged on this global unique id 160899 mac 160899 bytes_out 0 160899 bytes_in 0 160899 station_ip 5.119.161.192 160899 port 675 160899 unique_id port 160900 username morteza 160900 mac 160900 bytes_out 0 160900 bytes_in 0 160900 station_ip 83.123.67.173 160900 port 341 160900 unique_id port 160900 remote_ip 10.8.1.62 160901 username hashtadani4 160901 mac 160901 bytes_out 0 160901 bytes_in 0 160901 station_ip 83.122.149.210 160901 port 666 160901 unique_id port 160901 remote_ip 10.8.0.182 160904 username aminvpn 160904 mac 160904 bytes_out 0 160904 bytes_in 0 160904 station_ip 5.120.23.20 160904 port 334 160904 unique_id port 160906 username jafari 160906 kill_reason Another user logged on this global unique id 160906 mac 160906 bytes_out 0 160906 bytes_in 0 160906 station_ip 5.134.143.111 160906 port 659 160906 unique_id port 160910 username kalantary 160910 mac 160910 bytes_out 0 160910 bytes_in 0 160910 station_ip 83.122.31.232 160910 port 666 160910 unique_id port 160910 remote_ip 10.8.0.98 160912 username moradi 160860 username hashtadani4 160860 kill_reason Maximum check online fails reached 160860 mac 160860 bytes_out 0 160860 bytes_in 0 160860 station_ip 83.122.149.210 160860 port 343 160860 unique_id port 160864 username farhad2 160864 mac 160864 bytes_out 0 160864 bytes_in 0 160864 station_ip 5.119.214.91 160864 port 653 160864 unique_id port 160870 username morteza 160870 mac 160870 bytes_out 0 160870 bytes_in 0 160870 station_ip 83.123.67.173 160870 port 653 160870 unique_id port 160870 remote_ip 10.8.0.46 160871 username mehdizare 160871 mac 160871 bytes_out 14335 160871 bytes_in 23362 160871 station_ip 83.122.87.157 160871 port 655 160871 unique_id port 160871 remote_ip 10.8.0.90 160875 username jafari 160875 kill_reason Another user logged on this global unique id 160875 mac 160875 bytes_out 0 160875 bytes_in 0 160875 station_ip 5.134.143.111 160875 port 659 160875 unique_id port 160875 remote_ip 10.8.0.242 160876 username morteza 160876 mac 160876 bytes_out 0 160876 bytes_in 0 160876 station_ip 83.123.67.173 160876 port 344 160876 unique_id port 160876 remote_ip 10.8.1.62 160877 username kalantary 160877 mac 160877 bytes_out 313701 160877 bytes_in 437881 160877 station_ip 83.122.31.232 160877 port 648 160877 unique_id port 160877 remote_ip 10.8.0.98 160879 username farhad2 160879 kill_reason Another user logged on this global unique id 160879 mac 160879 bytes_out 0 160879 bytes_in 0 160879 station_ip 5.119.214.91 160879 port 655 160879 unique_id port 160879 remote_ip 10.8.0.190 160880 username hashtadani4 160880 mac 160880 bytes_out 0 160880 bytes_in 0 160880 station_ip 83.122.149.210 160880 port 668 160880 unique_id port 160880 remote_ip 10.8.0.182 160884 username milan 160884 kill_reason Another user logged on this global unique id 160884 mac 160884 bytes_out 0 160884 bytes_in 0 160884 station_ip 5.119.161.192 160884 port 675 160884 unique_id port 160885 username farhad2 160885 kill_reason Another user logged on this global unique id 160885 mac 160885 bytes_out 0 160885 bytes_in 0 160885 station_ip 5.119.214.91 160885 port 655 160885 unique_id port 160886 username morteza 160886 mac 160886 bytes_out 0 160886 bytes_in 0 160886 station_ip 83.123.67.173 160886 port 341 160886 unique_id port 160886 remote_ip 10.8.1.62 160889 username moradi 160889 kill_reason Another user logged on this global unique id 160889 mac 160889 bytes_out 0 160889 bytes_in 0 160889 station_ip 37.156.156.106 160889 port 671 160889 unique_id port 160889 remote_ip 10.8.0.126 160890 username barzegar 160890 mac 160890 bytes_out 101386 160890 bytes_in 818869 160890 station_ip 5.120.188.127 160890 port 672 160890 unique_id port 160890 remote_ip 10.8.0.234 160893 username kordestani 160893 mac 160893 bytes_out 3622830 160893 bytes_in 47754408 160893 station_ip 151.235.74.1 160893 port 666 160893 unique_id port 160893 remote_ip 10.8.0.74 160894 username hashtadani4 160894 mac 160894 bytes_out 0 160894 bytes_in 0 160894 station_ip 83.122.149.210 160894 port 666 160894 unique_id port 160894 remote_ip 10.8.0.182 160897 username jamali 160897 kill_reason Another user logged on this global unique id 160897 mac 160897 bytes_out 0 160897 bytes_in 0 160897 station_ip 5.119.62.17 160897 port 648 160897 unique_id port 160897 remote_ip 10.8.0.70 160902 username kalantary 160902 mac 160902 bytes_out 0 160902 bytes_in 0 160902 station_ip 83.122.31.232 160902 port 668 160902 unique_id port 160902 remote_ip 10.8.0.98 160911 username mahdiyehalizadeh 160911 mac 160911 bytes_out 0 160907 unique_id port 160907 remote_ip 10.8.0.46 160908 username hashtadani4 160908 mac 160908 bytes_out 0 160908 bytes_in 0 160908 station_ip 83.122.149.210 160908 port 672 160908 unique_id port 160908 remote_ip 10.8.0.182 160909 username morteza 160909 mac 160909 bytes_out 0 160909 bytes_in 0 160909 station_ip 83.123.67.173 160909 port 334 160909 unique_id port 160909 remote_ip 10.8.1.62 160914 username morteza 160914 mac 160914 bytes_out 0 160914 bytes_in 0 160914 station_ip 83.123.67.173 160914 port 666 160914 unique_id port 160914 remote_ip 10.8.0.46 160916 username morteza 160916 mac 160916 bytes_out 0 160916 bytes_in 0 160916 station_ip 83.123.67.173 160916 port 666 160916 unique_id port 160916 remote_ip 10.8.0.46 160917 username aminvpn 160917 mac 160917 bytes_out 0 160917 bytes_in 0 160917 station_ip 83.122.119.84 160917 port 668 160917 unique_id port 160917 remote_ip 10.8.0.14 160919 username morteza 160919 mac 160919 bytes_out 0 160919 bytes_in 0 160919 station_ip 83.123.67.173 160919 port 666 160919 unique_id port 160919 remote_ip 10.8.0.46 160920 username morteza 160920 mac 160920 bytes_out 0 160920 bytes_in 0 160920 station_ip 83.123.67.173 160920 port 666 160920 unique_id port 160920 remote_ip 10.8.0.46 160921 username morteza 160921 mac 160921 bytes_out 0 160921 bytes_in 0 160921 station_ip 83.123.67.173 160921 port 666 160921 unique_id port 160921 remote_ip 10.8.0.46 160926 username morteza 160926 mac 160926 bytes_out 0 160926 bytes_in 0 160926 station_ip 83.123.67.173 160926 port 672 160926 unique_id port 160926 remote_ip 10.8.0.46 160928 username hashtadani4 160928 mac 160928 bytes_out 0 160928 bytes_in 0 160928 station_ip 83.122.149.210 160928 port 672 160928 unique_id port 160928 remote_ip 10.8.0.182 160939 username hashtadani4 160939 mac 160939 bytes_out 0 160939 bytes_in 0 160939 station_ip 83.122.149.210 160939 port 671 160939 unique_id port 160939 remote_ip 10.8.0.182 160940 username morteza 160940 mac 160940 bytes_out 0 160940 bytes_in 0 160940 station_ip 83.123.67.173 160940 port 671 160940 unique_id port 160940 remote_ip 10.8.0.46 160941 username rezaei 160941 mac 160941 bytes_out 0 160941 bytes_in 0 160941 station_ip 5.119.53.117 160941 port 667 160941 unique_id port 160941 remote_ip 10.8.0.230 160943 username morteza 160943 mac 160943 bytes_out 0 160943 bytes_in 0 160943 station_ip 83.123.67.173 160943 port 334 160943 unique_id port 160943 remote_ip 10.8.1.62 160948 username morteza 160948 mac 160948 bytes_out 0 160948 bytes_in 0 160948 station_ip 83.123.67.173 160948 port 668 160948 unique_id port 160948 remote_ip 10.8.0.46 160950 username morteza 160950 kill_reason Maximum check online fails reached 160950 mac 160950 bytes_out 0 160950 bytes_in 0 160950 station_ip 83.123.67.173 160950 port 667 160950 unique_id port 160956 username morteza 160956 mac 160956 bytes_out 0 160956 bytes_in 0 160956 station_ip 83.123.67.173 160956 port 655 160956 unique_id port 160956 remote_ip 10.8.0.46 160957 username morteza 160957 mac 160957 bytes_out 0 160957 bytes_in 0 160957 station_ip 83.123.67.173 160957 port 677 160957 unique_id port 160957 remote_ip 10.8.0.46 160958 username hashtadani4 160958 mac 160958 bytes_out 0 160958 bytes_in 0 160958 station_ip 83.122.149.210 160958 port 677 160958 unique_id port 160958 remote_ip 10.8.0.182 160965 username jamali 160911 bytes_in 0 160911 station_ip 5.119.29.182 160911 port 669 160911 unique_id port 160911 remote_ip 10.8.0.82 160918 username hashtadani4 160918 mac 160918 bytes_out 0 160918 bytes_in 0 160918 station_ip 83.122.149.210 160918 port 668 160918 unique_id port 160918 remote_ip 10.8.0.182 160922 username morteza 160922 mac 160922 bytes_out 0 160922 bytes_in 0 160922 station_ip 83.123.67.173 160922 port 334 160922 unique_id port 160922 remote_ip 10.8.1.62 160925 username milan 160925 kill_reason Another user logged on this global unique id 160925 mac 160925 bytes_out 0 160925 bytes_in 0 160925 station_ip 5.119.161.192 160925 port 675 160925 unique_id port 160931 username fezealinaghi 160931 kill_reason Another user logged on this global unique id 160931 mac 160931 bytes_out 0 160931 bytes_in 0 160931 station_ip 37.129.172.209 160931 port 667 160931 unique_id port 160932 username moradi 160932 mac 160932 bytes_out 0 160932 bytes_in 0 160932 station_ip 37.156.156.106 160932 port 671 160932 unique_id port 160933 username fezealinaghi 160933 mac 160933 bytes_out 0 160933 bytes_in 0 160933 station_ip 37.129.172.209 160933 port 667 160933 unique_id port 160934 username morteza 160934 mac 160934 bytes_out 0 160934 bytes_in 0 160934 station_ip 83.123.67.173 160934 port 671 160934 unique_id port 160934 remote_ip 10.8.0.46 160936 username morteza 160936 mac 160936 bytes_out 0 160936 bytes_in 0 160936 station_ip 83.123.67.173 160936 port 671 160936 unique_id port 160936 remote_ip 10.8.0.46 160942 username morteza 160942 kill_reason Maximum check online fails reached 160942 mac 160942 bytes_out 0 160942 bytes_in 0 160942 station_ip 83.123.67.173 160942 port 671 160942 unique_id port 160944 username hashtadani4 160944 kill_reason Maximum check online fails reached 160944 mac 160944 bytes_out 0 160944 bytes_in 0 160944 station_ip 83.122.149.210 160944 port 341 160944 unique_id port 160949 username morteza 160949 mac 160949 bytes_out 0 160949 bytes_in 0 160949 station_ip 83.123.67.173 160949 port 668 160949 unique_id port 160949 remote_ip 10.8.0.46 160952 username moradi 160952 kill_reason Another user logged on this global unique id 160952 mac 160952 bytes_out 0 160952 bytes_in 0 160952 station_ip 37.156.156.106 160952 port 672 160952 unique_id port 160952 remote_ip 10.8.0.126 160953 username hashtadani4 160953 kill_reason Maximum check online fails reached 160953 mac 160953 bytes_out 0 160953 bytes_in 0 160953 station_ip 83.122.149.210 160953 port 334 160953 unique_id port 160955 username farhad2 160955 mac 160955 bytes_out 0 160955 bytes_in 0 160955 station_ip 5.119.214.91 160955 port 655 160955 unique_id port 160960 username tahmasebi 160960 mac 160960 bytes_out 0 160960 bytes_in 0 160960 station_ip 5.119.190.34 160960 port 677 160960 unique_id port 160960 remote_ip 10.8.0.42 160962 username morteza 160962 mac 160962 bytes_out 0 160962 bytes_in 0 160962 station_ip 83.123.67.173 160962 port 677 160962 unique_id port 160962 remote_ip 10.8.0.46 160964 username hashtadani4 160964 mac 160964 bytes_out 0 160964 bytes_in 0 160964 station_ip 83.122.149.210 160964 port 344 160964 unique_id port 160964 remote_ip 10.8.1.142 160967 username mohammadmahdi 160967 mac 160967 bytes_out 0 160967 bytes_in 0 160967 station_ip 5.119.39.17 160967 port 669 160967 unique_id port 160967 remote_ip 10.8.0.54 160969 username tahmasebi 160969 mac 160969 bytes_out 0 160969 bytes_in 0 160969 station_ip 5.119.190.34 160969 port 668 160912 kill_reason Another user logged on this global unique id 160912 mac 160912 bytes_out 0 160912 bytes_in 0 160912 station_ip 37.156.156.106 160912 port 671 160912 unique_id port 160913 username fezealinaghi 160913 kill_reason Another user logged on this global unique id 160913 mac 160913 bytes_out 0 160913 bytes_in 0 160913 station_ip 37.129.172.209 160913 port 667 160913 unique_id port 160915 username ayobi 160915 mac 160915 bytes_out 0 160915 bytes_in 0 160915 station_ip 188.245.89.250 160915 port 677 160915 unique_id port 160923 username morteza 160923 mac 160923 bytes_out 0 160923 bytes_in 0 160923 station_ip 83.123.67.173 160923 port 334 160923 unique_id port 160923 remote_ip 10.8.1.62 160924 username morteza 160924 kill_reason Maximum check online fails reached 160924 mac 160924 bytes_out 0 160924 bytes_in 0 160924 station_ip 83.123.67.173 160924 port 666 160924 unique_id port 160927 username moradi 160927 kill_reason Another user logged on this global unique id 160927 mac 160927 bytes_out 0 160927 bytes_in 0 160927 station_ip 37.156.156.106 160927 port 671 160927 unique_id port 160929 username morteza 160929 mac 160929 bytes_out 0 160929 bytes_in 0 160929 station_ip 83.123.67.173 160929 port 677 160929 unique_id port 160929 remote_ip 10.8.0.46 160930 username morteza 160930 mac 160930 bytes_out 0 160930 bytes_in 0 160930 station_ip 83.123.67.173 160930 port 672 160930 unique_id port 160930 remote_ip 10.8.0.46 160935 username morteza 160935 mac 160935 bytes_out 0 160935 bytes_in 0 160935 station_ip 83.123.67.173 160935 port 334 160935 unique_id port 160935 remote_ip 10.8.1.62 160937 username hashtadani4 160937 mac 160937 bytes_out 0 160937 bytes_in 0 160937 station_ip 83.122.149.210 160937 port 671 160937 unique_id port 160937 remote_ip 10.8.0.182 160938 username morteza 160938 mac 160938 bytes_out 0 160938 bytes_in 0 160938 station_ip 83.123.67.173 160938 port 671 160938 unique_id port 160938 remote_ip 10.8.0.46 160945 username kalantary 160945 mac 160945 bytes_out 0 160945 bytes_in 0 160945 station_ip 83.122.31.232 160945 port 668 160945 unique_id port 160945 remote_ip 10.8.0.98 160946 username hashtadani4 160946 mac 160946 bytes_out 0 160946 bytes_in 0 160946 station_ip 83.122.149.210 160946 port 334 160946 unique_id port 160946 remote_ip 10.8.1.142 160947 username hashtadani4 160947 mac 160947 bytes_out 0 160947 bytes_in 0 160947 station_ip 83.122.149.210 160947 port 668 160947 unique_id port 160947 remote_ip 10.8.0.182 160951 username morteza 160951 mac 160951 bytes_out 0 160951 bytes_in 0 160951 station_ip 83.123.67.173 160951 port 344 160951 unique_id port 160951 remote_ip 10.8.1.62 160954 username morteza 160954 mac 160954 bytes_out 0 160954 bytes_in 0 160954 station_ip 83.123.67.173 160954 port 677 160954 unique_id port 160954 remote_ip 10.8.0.46 160959 username morteza 160959 mac 160959 bytes_out 0 160959 bytes_in 0 160959 station_ip 83.123.67.173 160959 port 680 160959 unique_id port 160959 remote_ip 10.8.0.46 160961 username milan 160961 kill_reason Another user logged on this global unique id 160961 mac 160961 bytes_out 0 160961 bytes_in 0 160961 station_ip 5.119.161.192 160961 port 675 160961 unique_id port 160963 username kalantary 160963 mac 160963 bytes_out 0 160963 bytes_in 0 160963 station_ip 83.122.31.232 160963 port 668 160963 unique_id port 160963 remote_ip 10.8.0.98 160968 username morteza 160968 mac 160968 bytes_out 0 160965 kill_reason Another user logged on this global unique id 160965 mac 160965 bytes_out 0 160965 bytes_in 0 160965 station_ip 5.119.62.17 160965 port 648 160965 unique_id port 160966 username hashtadani4 160966 mac 160966 bytes_out 0 160966 bytes_in 0 160966 station_ip 83.122.149.210 160966 port 668 160966 unique_id port 160966 remote_ip 10.8.0.182 160973 username morteza 160973 mac 160973 bytes_out 0 160973 bytes_in 0 160973 station_ip 83.123.67.173 160973 port 344 160973 unique_id port 160973 remote_ip 10.8.1.62 160981 username kalantary 160981 mac 160981 bytes_out 0 160981 bytes_in 0 160981 station_ip 83.122.31.232 160981 port 669 160981 unique_id port 160981 remote_ip 10.8.0.98 160989 username rajaei 160989 kill_reason Another user logged on this global unique id 160989 mac 160989 bytes_out 0 160989 bytes_in 0 160989 station_ip 5.134.185.90 160989 port 677 160989 unique_id port 160989 remote_ip 10.8.0.34 160991 username morteza 160991 mac 160991 bytes_out 0 160991 bytes_in 0 160991 station_ip 83.123.67.173 160991 port 669 160991 unique_id port 160991 remote_ip 10.8.0.46 160993 username morteza 160993 mac 160993 bytes_out 1636 160993 bytes_in 5142 160993 station_ip 83.123.67.173 160993 port 681 160993 unique_id port 160993 remote_ip 10.8.0.46 160994 username hashtadani4 160994 mac 160994 bytes_out 0 160994 bytes_in 0 160994 station_ip 83.122.149.210 160994 port 681 160994 unique_id port 160994 remote_ip 10.8.0.182 160995 username morteza 160995 mac 160995 bytes_out 0 160995 bytes_in 0 160995 station_ip 83.123.67.173 160995 port 344 160995 unique_id port 160995 remote_ip 10.8.1.62 160998 username moradi 160998 mac 160998 bytes_out 0 160998 bytes_in 0 160998 station_ip 37.156.156.106 160998 port 672 160998 unique_id port 161000 username rajaei 161000 kill_reason Another user logged on this global unique id 161000 mac 161000 bytes_out 0 161000 bytes_in 0 161000 station_ip 5.134.185.90 161000 port 677 161000 unique_id port 161001 username morteza 161001 mac 161001 bytes_out 0 161001 bytes_in 0 161001 station_ip 83.123.67.173 161001 port 672 161001 unique_id port 161001 remote_ip 10.8.0.46 161005 username mosi 161005 kill_reason Another user logged on this global unique id 161005 mac 161005 bytes_out 0 161005 bytes_in 0 161005 station_ip 151.235.118.222 161005 port 673 161005 unique_id port 161006 username morteza 161006 mac 161006 bytes_out 0 161006 bytes_in 0 161006 station_ip 83.123.67.173 161006 port 344 161006 unique_id port 161006 remote_ip 10.8.1.62 161009 username jamali 161009 kill_reason Another user logged on this global unique id 161009 mac 161009 bytes_out 0 161009 bytes_in 0 161009 station_ip 5.119.62.17 161009 port 648 161009 unique_id port 161010 username morteza 161010 mac 161010 bytes_out 0 161010 bytes_in 0 161010 station_ip 83.123.67.173 161010 port 672 161010 unique_id port 161010 remote_ip 10.8.0.46 161013 username farhad2 161013 mac 161013 bytes_out 0 161013 bytes_in 0 161013 station_ip 5.119.214.91 161013 port 668 161013 unique_id port 161013 remote_ip 10.8.0.190 161015 username morteza 161015 mac 161015 bytes_out 0 161015 bytes_in 0 161015 station_ip 83.123.67.173 161015 port 668 161015 unique_id port 161015 remote_ip 10.8.0.46 161019 username morteza 161019 mac 161019 bytes_out 0 161019 bytes_in 0 161019 station_ip 83.123.67.173 161019 port 682 161019 unique_id port 161019 remote_ip 10.8.0.46 161022 username rajaei 161030 station_ip 5.134.143.111 160968 bytes_in 0 160968 station_ip 83.123.67.173 160968 port 668 160968 unique_id port 160968 remote_ip 10.8.0.46 160970 username tahmasebi 160970 mac 160970 bytes_out 0 160970 bytes_in 0 160970 station_ip 5.119.190.34 160970 port 668 160970 unique_id port 160970 remote_ip 10.8.0.42 160972 username jafari 160972 kill_reason Another user logged on this global unique id 160972 mac 160972 bytes_out 0 160972 bytes_in 0 160972 station_ip 5.134.143.111 160972 port 659 160972 unique_id port 160978 username tahmasebi 160978 mac 160978 bytes_out 0 160978 bytes_in 0 160978 station_ip 5.119.190.34 160978 port 680 160978 unique_id port 160978 remote_ip 10.8.0.42 160980 username jamali 160980 kill_reason Another user logged on this global unique id 160980 mac 160980 bytes_out 0 160980 bytes_in 0 160980 station_ip 5.119.62.17 160980 port 648 160980 unique_id port 160982 username tahmasebi 160982 mac 160982 bytes_out 0 160982 bytes_in 0 160982 station_ip 5.119.190.34 160982 port 344 160982 unique_id port 160982 remote_ip 10.8.1.90 160983 username tahmasebi 160983 mac 160983 bytes_out 0 160983 bytes_in 0 160983 station_ip 5.119.190.34 160983 port 669 160983 unique_id port 160983 remote_ip 10.8.0.42 160984 username morteza 160984 mac 160984 bytes_out 0 160984 bytes_in 0 160984 station_ip 83.123.67.173 160984 port 680 160984 unique_id port 160984 remote_ip 10.8.0.46 160985 username tahmasebi 160985 mac 160985 bytes_out 0 160985 bytes_in 0 160985 station_ip 5.119.190.34 160985 port 669 160985 unique_id port 160985 remote_ip 10.8.0.42 160988 username morteza 160988 mac 160988 bytes_out 0 160988 bytes_in 0 160988 station_ip 83.123.67.173 160988 port 669 160988 unique_id port 160988 remote_ip 10.8.0.46 160997 username hashtadani4 160997 mac 160997 bytes_out 0 160997 bytes_in 0 160997 station_ip 83.122.149.210 160997 port 659 160997 unique_id port 160997 remote_ip 10.8.0.182 161004 username morteza 161004 mac 161004 bytes_out 0 161004 bytes_in 0 161004 station_ip 83.123.67.173 161004 port 672 161004 unique_id port 161004 remote_ip 10.8.0.46 161008 username morteza 161008 mac 161008 bytes_out 0 161008 bytes_in 0 161008 station_ip 83.123.67.173 161008 port 672 161008 unique_id port 161008 remote_ip 10.8.0.46 161011 username morteza 161011 mac 161011 bytes_out 0 161011 bytes_in 0 161011 station_ip 83.123.67.173 161011 port 672 161011 unique_id port 161011 remote_ip 10.8.0.46 161014 username jafari 161014 kill_reason Another user logged on this global unique id 161014 mac 161014 bytes_out 0 161014 bytes_in 0 161014 station_ip 5.134.143.111 161014 port 681 161014 unique_id port 161017 username morteza 161017 mac 161017 bytes_out 0 161017 bytes_in 0 161017 station_ip 83.123.67.173 161017 port 668 161017 unique_id port 161017 remote_ip 10.8.0.46 161020 username farhad2 161020 mac 161020 bytes_out 0 161020 bytes_in 0 161020 station_ip 5.119.5.221 161020 port 680 161020 unique_id port 161020 remote_ip 10.8.0.190 161025 username morteza 161025 mac 161025 bytes_out 0 161025 bytes_in 0 161025 station_ip 83.123.67.173 161025 port 680 161025 unique_id port 161025 remote_ip 10.8.0.46 161026 username hashtadani4 161026 mac 161026 bytes_out 0 161026 bytes_in 0 161026 station_ip 83.122.149.210 161026 port 344 161026 unique_id port 161026 remote_ip 10.8.1.142 161030 username jafari 161030 kill_reason Another user logged on this global unique id 161030 mac 161030 bytes_out 0 161030 bytes_in 0 160969 unique_id port 160969 remote_ip 10.8.0.42 160971 username morteza 160971 mac 160971 bytes_out 0 160971 bytes_in 0 160971 station_ip 83.123.67.173 160971 port 669 160971 unique_id port 160971 remote_ip 10.8.0.46 160974 username hashtadani4 160974 mac 160974 bytes_out 0 160974 bytes_in 0 160974 station_ip 83.122.149.210 160974 port 680 160974 unique_id port 160974 remote_ip 10.8.0.182 160975 username morteza 160975 mac 160975 bytes_out 0 160975 bytes_in 0 160975 station_ip 83.123.67.173 160975 port 680 160975 unique_id port 160975 remote_ip 10.8.0.46 160976 username tahmasebi 160976 mac 160976 bytes_out 0 160976 bytes_in 0 160976 station_ip 5.119.190.34 160976 port 668 160976 unique_id port 160976 remote_ip 10.8.0.42 160977 username morteza 160977 mac 160977 bytes_out 0 160977 bytes_in 0 160977 station_ip 83.123.67.173 160977 port 680 160977 unique_id port 160977 remote_ip 10.8.0.46 160979 username morteza 160979 mac 160979 bytes_out 0 160979 bytes_in 0 160979 station_ip 83.123.67.173 160979 port 680 160979 unique_id port 160979 remote_ip 10.8.0.46 160986 username hashtadani4 160986 mac 160986 bytes_out 0 160986 bytes_in 0 160986 station_ip 83.122.149.210 160986 port 681 160986 unique_id port 160986 remote_ip 10.8.0.182 160987 username morteza 160987 mac 160987 bytes_out 0 160987 bytes_in 0 160987 station_ip 83.123.67.173 160987 port 344 160987 unique_id port 160987 remote_ip 10.8.1.62 160990 username tahmasebi 160990 mac 160990 bytes_out 0 160990 bytes_in 0 160990 station_ip 5.119.190.34 160990 port 344 160990 unique_id port 160990 remote_ip 10.8.1.90 160992 username morteza 160992 mac 160992 bytes_out 0 160992 bytes_in 0 160992 station_ip 83.123.67.173 160992 port 669 160992 unique_id port 160992 remote_ip 10.8.0.46 160996 username jafari 160996 mac 160996 bytes_out 0 160996 bytes_in 0 160996 station_ip 5.134.143.111 160996 port 659 160996 unique_id port 160999 username morteza 160999 mac 160999 bytes_out 0 160999 bytes_in 0 160999 station_ip 83.123.67.173 160999 port 659 160999 unique_id port 160999 remote_ip 10.8.0.46 161002 username jafari 161002 kill_reason Another user logged on this global unique id 161002 mac 161002 bytes_out 0 161002 bytes_in 0 161002 station_ip 5.134.143.111 161002 port 681 161002 unique_id port 161002 remote_ip 10.8.0.242 161003 username sabaghnezhad 161003 mac 161003 bytes_out 258293 161003 bytes_in 370606 161003 station_ip 113.203.123.16 161003 port 680 161003 unique_id port 161003 remote_ip 10.8.0.186 161007 username morteza 161007 mac 161007 bytes_out 0 161007 bytes_in 0 161007 station_ip 83.123.67.173 161007 port 672 161007 unique_id port 161007 remote_ip 10.8.0.46 161012 username alirezazadeh 161012 unique_id port 161012 terminate_cause Lost-Carrier 161012 bytes_out 11238141 161012 bytes_in 442809353 161012 station_ip 5.119.235.188 161012 port 15728640 161012 nas_port_type Virtual 161012 remote_ip 5.5.5.254 161016 username morteza 161016 mac 161016 bytes_out 0 161016 bytes_in 0 161016 station_ip 83.123.67.173 161016 port 668 161016 unique_id port 161016 remote_ip 10.8.0.46 161018 username morteza 161018 mac 161018 bytes_out 0 161018 bytes_in 0 161018 station_ip 83.123.67.173 161018 port 668 161018 unique_id port 161018 remote_ip 10.8.0.46 161021 username hashtadani4 161021 mac 161021 bytes_out 0 161021 bytes_in 0 161021 station_ip 83.122.149.210 161021 port 668 161021 unique_id port 161021 remote_ip 10.8.0.182 161023 username morteza 161023 mac 161023 bytes_out 0 161023 bytes_in 0 161023 station_ip 83.123.67.173 161023 port 680 161023 unique_id port 161023 remote_ip 10.8.0.46 161024 username morteza 161024 mac 161024 bytes_out 0 161024 bytes_in 0 161024 station_ip 83.123.67.173 161024 port 680 161024 unique_id port 161024 remote_ip 10.8.0.46 161028 username morteza 161028 mac 161028 bytes_out 0 161028 bytes_in 0 161028 station_ip 83.123.67.173 161028 port 680 161028 unique_id port 161028 remote_ip 10.8.0.46 161032 username morteza 161032 mac 161032 bytes_out 0 161032 bytes_in 0 161032 station_ip 83.123.67.173 161032 port 680 161032 unique_id port 161032 remote_ip 10.8.0.46 161037 username jafari 161037 kill_reason Another user logged on this global unique id 161037 mac 161037 bytes_out 0 161037 bytes_in 0 161037 station_ip 5.134.143.111 161037 port 681 161037 unique_id port 161041 username morteza 161041 mac 161041 bytes_out 0 161041 bytes_in 0 161041 station_ip 83.123.67.173 161041 port 672 161041 unique_id port 161041 remote_ip 10.8.0.46 161042 username jamali 161042 kill_reason Another user logged on this global unique id 161042 mac 161042 bytes_out 0 161042 bytes_in 0 161042 station_ip 5.119.62.17 161042 port 648 161042 unique_id port 161044 username rajaei 161044 mac 161044 bytes_out 0 161044 bytes_in 0 161044 station_ip 5.134.185.90 161044 port 677 161044 unique_id port 161048 username morteza 161048 mac 161048 bytes_out 0 161048 bytes_in 0 161048 station_ip 83.123.67.173 161048 port 672 161048 unique_id port 161048 remote_ip 10.8.0.46 161052 username kalantary 161052 mac 161052 bytes_out 297551 161052 bytes_in 1952351 161052 station_ip 83.122.8.244 161052 port 672 161052 unique_id port 161052 remote_ip 10.8.0.98 161053 username morteza 161053 mac 161053 bytes_out 0 161053 bytes_in 0 161053 station_ip 83.123.67.173 161053 port 672 161053 unique_id port 161053 remote_ip 10.8.0.46 161057 username morteza 161057 mac 161057 bytes_out 0 161057 bytes_in 0 161057 station_ip 83.123.67.173 161057 port 677 161057 unique_id port 161057 remote_ip 10.8.0.46 161064 username morteza 161064 mac 161064 bytes_out 0 161064 bytes_in 0 161064 station_ip 83.123.67.173 161064 port 668 161064 unique_id port 161064 remote_ip 10.8.0.46 161065 username morteza 161065 mac 161065 bytes_out 0 161065 bytes_in 0 161065 station_ip 83.123.67.173 161065 port 668 161065 unique_id port 161065 remote_ip 10.8.0.46 161068 username farhad2 161068 mac 161068 bytes_out 1317344 161068 bytes_in 13377119 161068 station_ip 5.119.5.221 161068 port 344 161068 unique_id port 161068 remote_ip 10.8.1.222 161072 username morteza 161072 mac 161072 bytes_out 0 161072 bytes_in 0 161072 station_ip 83.123.67.173 161072 port 668 161072 unique_id port 161072 remote_ip 10.8.0.46 161074 username hashtadani4 161074 mac 161074 bytes_out 0 161074 bytes_in 0 161074 station_ip 83.122.149.210 161074 port 344 161074 unique_id port 161074 remote_ip 10.8.1.142 161077 username hashtadani4 161077 mac 161077 bytes_out 0 161077 bytes_in 0 161077 station_ip 83.122.149.210 161077 port 672 161077 unique_id port 161077 remote_ip 10.8.0.182 161080 username morteza 161080 mac 161080 bytes_out 0 161080 bytes_in 0 161080 station_ip 83.123.67.173 161080 port 672 161080 unique_id port 161080 remote_ip 10.8.0.46 161081 username hashtadani4 161081 mac 161081 bytes_out 0 161022 kill_reason Another user logged on this global unique id 161022 mac 161022 bytes_out 0 161022 bytes_in 0 161022 station_ip 5.134.185.90 161022 port 677 161022 unique_id port 161027 username hashtadani4 161027 mac 161027 bytes_out 0 161027 bytes_in 0 161027 station_ip 83.122.149.210 161027 port 344 161027 unique_id port 161027 remote_ip 10.8.1.142 161029 username jamali 161029 kill_reason Another user logged on this global unique id 161029 mac 161029 bytes_out 0 161029 bytes_in 0 161029 station_ip 5.119.62.17 161029 port 648 161029 unique_id port 161031 username hashtadani4 161031 mac 161031 bytes_out 0 161031 bytes_in 0 161031 station_ip 83.122.149.210 161031 port 680 161031 unique_id port 161031 remote_ip 10.8.0.182 161034 username morteza 161034 mac 161034 bytes_out 0 161034 bytes_in 0 161034 station_ip 83.123.67.173 161034 port 680 161034 unique_id port 161034 remote_ip 10.8.0.46 161036 username morteza 161036 mac 161036 bytes_out 0 161036 bytes_in 0 161036 station_ip 83.123.67.173 161036 port 680 161036 unique_id port 161036 remote_ip 10.8.0.46 161038 username kalantary 161038 mac 161038 bytes_out 0 161038 bytes_in 0 161038 station_ip 83.122.8.244 161038 port 672 161038 unique_id port 161038 remote_ip 10.8.0.98 161040 username morteza 161040 mac 161040 bytes_out 0 161040 bytes_in 0 161040 station_ip 83.123.67.173 161040 port 672 161040 unique_id port 161040 remote_ip 10.8.0.46 161047 username morteza 161047 mac 161047 bytes_out 0 161047 bytes_in 0 161047 station_ip 83.123.67.173 161047 port 672 161047 unique_id port 161047 remote_ip 10.8.0.46 161051 username morteza 161051 mac 161051 bytes_out 0 161051 bytes_in 0 161051 station_ip 83.123.67.173 161051 port 677 161051 unique_id port 161051 remote_ip 10.8.0.46 161055 username morteza 161055 mac 161055 bytes_out 0 161055 bytes_in 0 161055 station_ip 83.123.67.173 161055 port 344 161055 unique_id port 161055 remote_ip 10.8.1.62 161056 username morteza 161056 mac 161056 bytes_out 0 161056 bytes_in 0 161056 station_ip 83.123.67.173 161056 port 677 161056 unique_id port 161056 remote_ip 10.8.0.46 161058 username tahmasebi 161058 kill_reason Another user logged on this global unique id 161058 mac 161058 bytes_out 0 161058 bytes_in 0 161058 station_ip 5.119.190.34 161058 port 669 161058 unique_id port 161058 remote_ip 10.8.0.42 161059 username farhad2 161059 mac 161059 bytes_out 0 161059 bytes_in 0 161059 station_ip 5.119.5.221 161059 port 672 161059 unique_id port 161059 remote_ip 10.8.0.190 161061 username morteza 161061 mac 161061 bytes_out 0 161061 bytes_in 0 161061 station_ip 83.123.67.173 161061 port 668 161061 unique_id port 161061 remote_ip 10.8.0.46 161062 username alikomsari 161062 mac 161062 bytes_out 0 161062 bytes_in 0 161062 station_ip 5.120.28.62 161062 port 678 161062 unique_id port 161066 username morteza 161066 mac 161066 bytes_out 0 161066 bytes_in 0 161066 station_ip 83.123.67.173 161066 port 668 161066 unique_id port 161066 remote_ip 10.8.0.46 161067 username morteza 161067 mac 161067 bytes_out 0 161067 bytes_in 0 161067 station_ip 83.123.67.173 161067 port 345 161067 unique_id port 161067 remote_ip 10.8.1.62 161071 username farhad2 161071 mac 161071 bytes_out 44185 161071 bytes_in 418865 161071 station_ip 5.119.5.221 161071 port 344 161071 unique_id port 161071 remote_ip 10.8.1.222 161073 username morteza 161073 mac 161073 bytes_out 0 161073 bytes_in 0 161030 port 681 161030 unique_id port 161033 username morteza 161033 mac 161033 bytes_out 0 161033 bytes_in 0 161033 station_ip 83.123.67.173 161033 port 680 161033 unique_id port 161033 remote_ip 10.8.0.46 161035 username alikomsari 161035 kill_reason Another user logged on this global unique id 161035 mac 161035 bytes_out 0 161035 bytes_in 0 161035 station_ip 5.120.28.62 161035 port 678 161035 unique_id port 161039 username morteza 161039 mac 161039 bytes_out 0 161039 bytes_in 0 161039 station_ip 83.123.67.173 161039 port 680 161039 unique_id port 161039 remote_ip 10.8.0.46 161043 username hashtadani4 161043 mac 161043 bytes_out 0 161043 bytes_in 0 161043 station_ip 83.122.149.210 161043 port 682 161043 unique_id port 161043 remote_ip 10.8.0.182 161045 username morteza 161045 mac 161045 bytes_out 9601 161045 bytes_in 17556 161045 station_ip 83.123.67.173 161045 port 672 161045 unique_id port 161045 remote_ip 10.8.0.46 161046 username jafari 161046 kill_reason Another user logged on this global unique id 161046 mac 161046 bytes_out 0 161046 bytes_in 0 161046 station_ip 5.134.143.111 161046 port 681 161046 unique_id port 161049 username farhad2 161049 kill_reason Another user logged on this global unique id 161049 mac 161049 bytes_out 0 161049 bytes_in 0 161049 station_ip 5.119.5.221 161049 port 668 161049 unique_id port 161049 remote_ip 10.8.0.190 161050 username morteza 161050 mac 161050 bytes_out 0 161050 bytes_in 0 161050 station_ip 83.123.67.173 161050 port 677 161050 unique_id port 161050 remote_ip 10.8.0.46 161054 username farhad2 161054 mac 161054 bytes_out 0 161054 bytes_in 0 161054 station_ip 5.119.5.221 161054 port 668 161054 unique_id port 161060 username kalantary 161060 mac 161060 bytes_out 56992 161060 bytes_in 110571 161060 station_ip 83.122.8.244 161060 port 668 161060 unique_id port 161060 remote_ip 10.8.0.98 161063 username jafari 161063 kill_reason Another user logged on this global unique id 161063 mac 161063 bytes_out 0 161063 bytes_in 0 161063 station_ip 5.134.143.111 161063 port 681 161063 unique_id port 161069 username morteza 161069 mac 161069 bytes_out 0 161069 bytes_in 0 161069 station_ip 83.123.67.173 161069 port 344 161069 unique_id port 161069 remote_ip 10.8.1.62 161070 username morteza 161070 mac 161070 bytes_out 1636 161070 bytes_in 5089 161070 station_ip 83.123.67.173 161070 port 668 161070 unique_id port 161070 remote_ip 10.8.0.46 161075 username morteza 161075 mac 161075 bytes_out 0 161075 bytes_in 0 161075 station_ip 83.123.67.173 161075 port 344 161075 unique_id port 161075 remote_ip 10.8.1.62 161078 username tahmasebi 161078 mac 161078 bytes_out 0 161078 bytes_in 0 161078 station_ip 5.119.190.34 161078 port 669 161078 unique_id port 161079 username morteza 161079 mac 161079 bytes_out 0 161079 bytes_in 0 161079 station_ip 83.123.67.173 161079 port 672 161079 unique_id port 161079 remote_ip 10.8.0.46 161083 username morteza 161083 kill_reason Maximum check online fails reached 161083 mac 161083 bytes_out 0 161083 bytes_in 0 161083 station_ip 83.123.67.173 161083 port 344 161083 unique_id port 161085 username morteza 161085 mac 161085 bytes_out 0 161085 bytes_in 0 161085 station_ip 83.123.67.173 161085 port 677 161085 unique_id port 161085 remote_ip 10.8.0.46 161087 username farhad2 161087 mac 161087 bytes_out 0 161087 bytes_in 0 161087 station_ip 5.119.5.221 161087 port 668 161087 unique_id port 161087 remote_ip 10.8.0.190 161073 station_ip 83.123.67.173 161073 port 672 161073 unique_id port 161073 remote_ip 10.8.0.46 161076 username hashtadani4 161076 mac 161076 bytes_out 0 161076 bytes_in 0 161076 station_ip 83.122.149.210 161076 port 672 161076 unique_id port 161076 remote_ip 10.8.0.182 161084 username morteza 161084 mac 161084 bytes_out 0 161084 bytes_in 0 161084 station_ip 83.123.67.173 161084 port 672 161084 unique_id port 161084 remote_ip 10.8.0.46 161086 username morteza 161086 mac 161086 bytes_out 0 161086 bytes_in 0 161086 station_ip 83.123.67.173 161086 port 672 161086 unique_id port 161086 remote_ip 10.8.0.46 161089 username morteza 161089 mac 161089 bytes_out 0 161089 bytes_in 0 161089 station_ip 83.123.67.173 161089 port 655 161089 unique_id port 161089 remote_ip 10.8.0.46 161092 username morteza 161092 mac 161092 bytes_out 0 161092 bytes_in 0 161092 station_ip 83.123.67.173 161092 port 655 161092 unique_id port 161092 remote_ip 10.8.0.46 161094 username morteza 161094 mac 161094 bytes_out 0 161094 bytes_in 0 161094 station_ip 83.123.67.173 161094 port 668 161094 unique_id port 161094 remote_ip 10.8.0.46 161095 username morteza 161095 mac 161095 bytes_out 0 161095 bytes_in 0 161095 station_ip 83.123.67.173 161095 port 668 161095 unique_id port 161095 remote_ip 10.8.0.46 161097 username jafari 161097 kill_reason Another user logged on this global unique id 161097 mac 161097 bytes_out 0 161097 bytes_in 0 161097 station_ip 5.134.143.111 161097 port 681 161097 unique_id port 161099 username morteza 161099 mac 161099 bytes_out 0 161099 bytes_in 0 161099 station_ip 83.123.67.173 161099 port 668 161099 unique_id port 161099 remote_ip 10.8.0.46 161104 username morteza 161104 mac 161104 bytes_out 0 161104 bytes_in 0 161104 station_ip 83.123.67.173 161104 port 345 161104 unique_id port 161104 remote_ip 10.8.1.62 161106 username farhad2 161106 mac 161106 bytes_out 2003429 161106 bytes_in 9673690 161106 station_ip 5.119.5.221 161106 port 655 161106 unique_id port 161106 remote_ip 10.8.0.190 161112 username hashtadani4 161112 mac 161112 bytes_out 0 161112 bytes_in 0 161112 station_ip 83.122.149.210 161112 port 346 161112 unique_id port 161112 remote_ip 10.8.1.142 161114 username hashtadani4 161114 mac 161114 bytes_out 0 161114 bytes_in 0 161114 station_ip 83.122.149.210 161114 port 655 161114 unique_id port 161114 remote_ip 10.8.0.182 161115 username morteza 161115 mac 161115 bytes_out 0 161115 bytes_in 0 161115 station_ip 83.123.67.173 161115 port 668 161115 unique_id port 161115 remote_ip 10.8.0.46 161125 username morteza 161125 mac 161125 bytes_out 0 161125 bytes_in 0 161125 station_ip 83.123.67.173 161125 port 655 161125 unique_id port 161125 remote_ip 10.8.0.46 161126 username morteza 161126 mac 161126 bytes_out 0 161126 bytes_in 0 161126 station_ip 83.123.67.173 161126 port 668 161126 unique_id port 161126 remote_ip 10.8.0.46 161129 username hashtadani4 161129 mac 161129 bytes_out 0 161129 bytes_in 0 161129 station_ip 83.122.149.210 161129 port 668 161129 unique_id port 161129 remote_ip 10.8.0.182 161133 username morteza 161133 mac 161133 bytes_out 0 161133 bytes_in 0 161133 station_ip 83.123.67.173 161133 port 668 161133 unique_id port 161133 remote_ip 10.8.0.46 161135 username morteza 161135 mac 161135 bytes_out 0 161135 bytes_in 0 161135 station_ip 83.123.67.173 161135 port 668 161135 unique_id port 161081 bytes_in 0 161081 station_ip 83.122.149.210 161081 port 672 161081 unique_id port 161081 remote_ip 10.8.0.182 161082 username jafari 161082 kill_reason Another user logged on this global unique id 161082 mac 161082 bytes_out 0 161082 bytes_in 0 161082 station_ip 5.134.143.111 161082 port 681 161082 unique_id port 161090 username hashtadani4 161090 mac 161090 bytes_out 0 161090 bytes_in 0 161090 station_ip 83.122.149.210 161090 port 655 161090 unique_id port 161090 remote_ip 10.8.0.182 161093 username morteza 161093 mac 161093 bytes_out 0 161093 bytes_in 0 161093 station_ip 83.123.67.173 161093 port 668 161093 unique_id port 161093 remote_ip 10.8.0.46 161096 username hashtadani4 161096 mac 161096 bytes_out 0 161096 bytes_in 0 161096 station_ip 83.122.149.210 161096 port 345 161096 unique_id port 161096 remote_ip 10.8.1.142 161102 username jafari 161102 mac 161102 bytes_out 0 161102 bytes_in 0 161102 station_ip 5.134.143.111 161102 port 681 161102 unique_id port 161107 username morteza 161107 mac 161107 bytes_out 0 161107 bytes_in 0 161107 station_ip 83.123.67.173 161107 port 672 161107 unique_id port 161107 remote_ip 10.8.0.46 161108 username farhad2 161108 mac 161108 bytes_out 61902 161108 bytes_in 164927 161108 station_ip 5.119.5.221 161108 port 655 161108 unique_id port 161108 remote_ip 10.8.0.190 161110 username morteza 161110 mac 161110 bytes_out 0 161110 bytes_in 0 161110 station_ip 83.123.67.173 161110 port 655 161110 unique_id port 161110 remote_ip 10.8.0.46 161111 username kalantary 161111 mac 161111 bytes_out 0 161111 bytes_in 0 161111 station_ip 83.122.25.76 161111 port 668 161111 unique_id port 161111 remote_ip 10.8.0.98 161117 username farhad2 161117 mac 161117 bytes_out 0 161117 bytes_in 0 161117 station_ip 5.119.5.221 161117 port 655 161117 unique_id port 161117 remote_ip 10.8.0.190 161121 username morteza 161121 mac 161121 bytes_out 0 161121 bytes_in 0 161121 station_ip 83.123.67.173 161121 port 655 161121 unique_id port 161121 remote_ip 10.8.0.46 161123 username morteza 161123 mac 161123 bytes_out 0 161123 bytes_in 0 161123 station_ip 83.123.67.173 161123 port 655 161123 unique_id port 161123 remote_ip 10.8.0.46 161124 username hashtadani4 161124 mac 161124 bytes_out 0 161124 bytes_in 0 161124 station_ip 83.122.149.210 161124 port 655 161124 unique_id port 161124 remote_ip 10.8.0.182 161127 username morteza 161127 mac 161127 bytes_out 0 161127 bytes_in 0 161127 station_ip 83.123.67.173 161127 port 668 161127 unique_id port 161127 remote_ip 10.8.0.46 161128 username morteza 161128 mac 161128 bytes_out 0 161128 bytes_in 0 161128 station_ip 83.123.67.173 161128 port 346 161128 unique_id port 161128 remote_ip 10.8.1.62 161131 username morteza 161131 mac 161131 bytes_out 0 161131 bytes_in 0 161131 station_ip 83.123.67.173 161131 port 668 161131 unique_id port 161131 remote_ip 10.8.0.46 161134 username morteza 161134 mac 161134 bytes_out 0 161134 bytes_in 0 161134 station_ip 83.123.67.173 161134 port 668 161134 unique_id port 161134 remote_ip 10.8.0.46 161136 username hashtadani4 161136 mac 161136 bytes_out 0 161136 bytes_in 0 161136 station_ip 83.122.149.210 161136 port 668 161136 unique_id port 161136 remote_ip 10.8.0.182 161137 username morteza 161137 mac 161137 bytes_out 0 161137 bytes_in 0 161137 station_ip 83.123.67.173 161137 port 668 161137 unique_id port 161088 username mansour 161088 mac 161088 bytes_out 0 161088 bytes_in 0 161088 station_ip 5.202.22.154 161088 port 655 161088 unique_id port 161088 remote_ip 10.8.0.30 161091 username farhad2 161091 mac 161091 bytes_out 0 161091 bytes_in 0 161091 station_ip 5.119.5.221 161091 port 668 161091 unique_id port 161091 remote_ip 10.8.0.190 161098 username morteza 161098 mac 161098 bytes_out 0 161098 bytes_in 0 161098 station_ip 83.123.67.173 161098 port 668 161098 unique_id port 161098 remote_ip 10.8.0.46 161100 username hashtadani4 161100 mac 161100 bytes_out 0 161100 bytes_in 0 161100 station_ip 83.122.149.210 161100 port 345 161100 unique_id port 161100 remote_ip 10.8.1.142 161101 username morteza 161101 mac 161101 bytes_out 0 161101 bytes_in 0 161101 station_ip 83.123.67.173 161101 port 668 161101 unique_id port 161101 remote_ip 10.8.0.46 161103 username morteza 161103 mac 161103 bytes_out 0 161103 bytes_in 0 161103 station_ip 83.123.67.173 161103 port 668 161103 unique_id port 161103 remote_ip 10.8.0.46 161105 username morteza 161105 mac 161105 bytes_out 0 161105 bytes_in 0 161105 station_ip 83.123.67.173 161105 port 668 161105 unique_id port 161105 remote_ip 10.8.0.46 161109 username fezealinaghi 161109 mac 161109 bytes_out 923218 161109 bytes_in 2531329 161109 station_ip 37.129.155.173 161109 port 669 161109 unique_id port 161109 remote_ip 10.8.0.78 161113 username hashtadani4 161113 kill_reason Maximum check online fails reached 161113 mac 161113 bytes_out 0 161113 bytes_in 0 161113 station_ip 83.122.149.210 161113 port 345 161113 unique_id port 161116 username morteza 161116 mac 161116 bytes_out 0 161116 bytes_in 0 161116 station_ip 83.123.67.173 161116 port 668 161116 unique_id port 161116 remote_ip 10.8.0.46 161118 username hashtadani4 161118 mac 161118 bytes_out 0 161118 bytes_in 0 161118 station_ip 83.122.149.210 161118 port 655 161118 unique_id port 161118 remote_ip 10.8.0.182 161119 username morteza 161119 mac 161119 bytes_out 0 161119 bytes_in 0 161119 station_ip 83.123.67.173 161119 port 655 161119 unique_id port 161119 remote_ip 10.8.0.46 161120 username morteza 161120 mac 161120 bytes_out 0 161120 bytes_in 0 161120 station_ip 83.123.67.173 161120 port 655 161120 unique_id port 161120 remote_ip 10.8.0.46 161122 username morteza 161122 mac 161122 bytes_out 0 161122 bytes_in 0 161122 station_ip 83.123.67.173 161122 port 655 161122 unique_id port 161122 remote_ip 10.8.0.46 161130 username moradi 161130 mac 161130 bytes_out 0 161130 bytes_in 0 161130 station_ip 37.156.156.106 161130 port 659 161130 unique_id port 161130 remote_ip 10.8.0.126 161132 username morteza 161132 mac 161132 bytes_out 0 161132 bytes_in 0 161132 station_ip 83.123.67.173 161132 port 668 161132 unique_id port 161132 remote_ip 10.8.0.46 161144 username moradi 161144 kill_reason Another user logged on this global unique id 161144 mac 161144 bytes_out 0 161144 bytes_in 0 161144 station_ip 37.156.156.106 161144 port 659 161144 unique_id port 161144 remote_ip 10.8.0.126 161147 username hashtadani4 161147 mac 161147 bytes_out 0 161147 bytes_in 0 161147 station_ip 83.122.149.210 161147 port 346 161147 unique_id port 161147 remote_ip 10.8.1.142 161153 username hashtadani4 161153 mac 161153 bytes_out 0 161153 bytes_in 0 161153 station_ip 83.122.149.210 161153 port 669 161153 unique_id port 161153 remote_ip 10.8.0.182 161157 username morteza 161135 remote_ip 10.8.0.46 161139 username hashtadani4 161139 mac 161139 bytes_out 0 161139 bytes_in 0 161139 station_ip 83.122.149.210 161139 port 669 161139 unique_id port 161139 remote_ip 10.8.0.182 161140 username hashtadani4 161140 mac 161140 bytes_out 0 161140 bytes_in 0 161140 station_ip 83.122.149.210 161140 port 669 161140 unique_id port 161140 remote_ip 10.8.0.182 161141 username morteza 161141 mac 161141 bytes_out 2482 161141 bytes_in 4727 161141 station_ip 83.123.67.173 161141 port 668 161141 unique_id port 161141 remote_ip 10.8.0.46 161143 username morteza 161143 mac 161143 bytes_out 0 161143 bytes_in 0 161143 station_ip 83.123.67.173 161143 port 668 161143 unique_id port 161143 remote_ip 10.8.0.46 161146 username morteza 161146 mac 161146 bytes_out 0 161146 bytes_in 0 161146 station_ip 83.123.67.173 161146 port 347 161146 unique_id port 161146 remote_ip 10.8.1.62 161150 username hashtadani4 161150 mac 161150 bytes_out 0 161150 bytes_in 0 161150 station_ip 83.122.149.210 161150 port 669 161150 unique_id port 161150 remote_ip 10.8.0.182 161154 username hashtadani4 161154 mac 161154 bytes_out 0 161154 bytes_in 0 161154 station_ip 83.122.149.210 161154 port 669 161154 unique_id port 161154 remote_ip 10.8.0.182 161155 username hashtadani4 161155 mac 161155 bytes_out 0 161155 bytes_in 0 161155 station_ip 83.122.149.210 161155 port 669 161155 unique_id port 161155 remote_ip 10.8.0.182 161161 username moradi 161161 mac 161161 bytes_out 0 161161 bytes_in 0 161161 station_ip 37.156.156.106 161161 port 659 161161 unique_id port 161165 username hashtadani4 161165 kill_reason Maximum check online fails reached 161165 mac 161165 bytes_out 0 161165 bytes_in 0 161165 station_ip 83.122.149.210 161165 port 346 161165 unique_id port 161166 username morteza 161166 mac 161166 bytes_out 0 161166 bytes_in 0 161166 station_ip 83.123.67.173 161166 port 669 161166 unique_id port 161166 remote_ip 10.8.0.46 161169 username morteza 161169 mac 161169 bytes_out 0 161169 bytes_in 0 161169 station_ip 83.123.67.173 161169 port 659 161169 unique_id port 161169 remote_ip 10.8.0.46 161171 username hashtadani4 161171 mac 161171 bytes_out 0 161171 bytes_in 0 161171 station_ip 83.122.149.210 161171 port 669 161171 unique_id port 161171 remote_ip 10.8.0.182 161175 username pourshad 161175 mac 161175 bytes_out 33844492 161175 bytes_in 20469500 161175 station_ip 5.119.162.49 161175 port 339 161175 unique_id port 161175 remote_ip 10.8.1.154 161177 username hashtadani4 161177 mac 161177 bytes_out 0 161177 bytes_in 0 161177 station_ip 83.122.149.210 161177 port 659 161177 unique_id port 161177 remote_ip 10.8.0.182 161178 username morteza 161178 mac 161178 bytes_out 0 161178 bytes_in 0 161178 station_ip 83.123.67.173 161178 port 669 161178 unique_id port 161178 remote_ip 10.8.0.46 161186 username hashtadani4 161186 mac 161186 bytes_out 0 161186 bytes_in 0 161186 station_ip 83.122.149.210 161186 port 659 161186 unique_id port 161186 remote_ip 10.8.0.182 161187 username morteza 161187 mac 161187 bytes_out 0 161187 bytes_in 0 161187 station_ip 83.123.67.173 161187 port 659 161187 unique_id port 161187 remote_ip 10.8.0.46 161190 username morteza 161190 kill_reason Maximum check online fails reached 161190 mac 161190 bytes_out 0 161190 bytes_in 0 161190 station_ip 83.123.67.173 161190 port 347 161190 unique_id port 161192 username hashtadani4 161192 mac 161137 remote_ip 10.8.0.46 161138 username morteza 161138 mac 161138 bytes_out 0 161138 bytes_in 0 161138 station_ip 83.123.67.173 161138 port 668 161138 unique_id port 161138 remote_ip 10.8.0.46 161142 username hashtadani4 161142 mac 161142 bytes_out 0 161142 bytes_in 0 161142 station_ip 83.122.149.210 161142 port 668 161142 unique_id port 161142 remote_ip 10.8.0.182 161145 username morteza 161145 mac 161145 bytes_out 0 161145 bytes_in 0 161145 station_ip 83.123.67.173 161145 port 668 161145 unique_id port 161145 remote_ip 10.8.0.46 161148 username hashtadani4 161148 mac 161148 bytes_out 0 161148 bytes_in 0 161148 station_ip 83.122.149.210 161148 port 668 161148 unique_id port 161148 remote_ip 10.8.0.182 161149 username morteza 161149 mac 161149 bytes_out 0 161149 bytes_in 0 161149 station_ip 83.123.67.173 161149 port 672 161149 unique_id port 161149 remote_ip 10.8.0.46 161151 username hashtadani4 161151 mac 161151 bytes_out 0 161151 bytes_in 0 161151 station_ip 83.122.149.210 161151 port 669 161151 unique_id port 161151 remote_ip 10.8.0.182 161152 username hashtadani4 161152 mac 161152 bytes_out 0 161152 bytes_in 0 161152 station_ip 83.122.149.210 161152 port 669 161152 unique_id port 161152 remote_ip 10.8.0.182 161156 username hashtadani4 161156 mac 161156 bytes_out 0 161156 bytes_in 0 161156 station_ip 83.122.149.210 161156 port 669 161156 unique_id port 161156 remote_ip 10.8.0.182 161163 username hashtadani4 161163 mac 161163 bytes_out 0 161163 bytes_in 0 161163 station_ip 83.122.149.210 161163 port 659 161163 unique_id port 161163 remote_ip 10.8.0.182 161168 username kalantary 161168 mac 161168 bytes_out 0 161168 bytes_in 0 161168 station_ip 83.122.96.80 161168 port 668 161168 unique_id port 161168 remote_ip 10.8.0.98 161170 username morteza 161170 mac 161170 bytes_out 0 161170 bytes_in 0 161170 station_ip 83.123.67.173 161170 port 659 161170 unique_id port 161170 remote_ip 10.8.0.46 161172 username hashtadani4 161172 mac 161172 bytes_out 0 161172 bytes_in 0 161172 station_ip 83.122.149.210 161172 port 659 161172 unique_id port 161172 remote_ip 10.8.0.182 161176 username hashtadani4 161176 mac 161176 bytes_out 0 161176 bytes_in 0 161176 station_ip 83.122.149.210 161176 port 659 161176 unique_id port 161176 remote_ip 10.8.0.182 161179 username hashtadani4 161179 mac 161179 bytes_out 0 161179 bytes_in 0 161179 station_ip 83.122.149.210 161179 port 659 161179 unique_id port 161179 remote_ip 10.8.0.182 161182 username morteza 161182 kill_reason Maximum check online fails reached 161182 mac 161182 bytes_out 0 161182 bytes_in 0 161182 station_ip 83.123.67.173 161182 port 668 161182 unique_id port 161183 username hashtadani4 161183 mac 161183 bytes_out 0 161183 bytes_in 0 161183 station_ip 83.122.149.210 161183 port 659 161183 unique_id port 161183 remote_ip 10.8.0.182 161184 username hashtadani4 161184 mac 161184 bytes_out 0 161184 bytes_in 0 161184 station_ip 83.122.149.210 161184 port 669 161184 unique_id port 161184 remote_ip 10.8.0.182 161188 username morteza 161188 mac 161188 bytes_out 0 161188 bytes_in 0 161188 station_ip 83.123.67.173 161188 port 659 161188 unique_id port 161188 remote_ip 10.8.0.46 161193 username morteza 161193 mac 161193 bytes_out 0 161193 bytes_in 0 161193 station_ip 83.123.67.173 161193 port 659 161193 unique_id port 161193 remote_ip 10.8.0.46 161194 username hashtadani4 161157 mac 161157 bytes_out 0 161157 bytes_in 0 161157 station_ip 83.123.67.173 161157 port 669 161157 unique_id port 161157 remote_ip 10.8.0.46 161158 username morteza 161158 mac 161158 bytes_out 0 161158 bytes_in 0 161158 station_ip 83.123.67.173 161158 port 672 161158 unique_id port 161158 remote_ip 10.8.0.46 161159 username hashtadani4 161159 mac 161159 bytes_out 0 161159 bytes_in 0 161159 station_ip 83.122.149.210 161159 port 669 161159 unique_id port 161159 remote_ip 10.8.0.182 161160 username hashtadani4 161160 mac 161160 bytes_out 0 161160 bytes_in 0 161160 station_ip 83.122.149.210 161160 port 672 161160 unique_id port 161160 remote_ip 10.8.0.182 161162 username morteza 161162 mac 161162 bytes_out 0 161162 bytes_in 0 161162 station_ip 83.123.67.173 161162 port 669 161162 unique_id port 161162 remote_ip 10.8.0.46 161164 username hashtadani4 161164 mac 161164 bytes_out 0 161164 bytes_in 0 161164 station_ip 83.122.149.210 161164 port 659 161164 unique_id port 161164 remote_ip 10.8.0.182 161167 username hashtadani4 161167 mac 161167 bytes_out 0 161167 bytes_in 0 161167 station_ip 83.122.149.210 161167 port 659 161167 unique_id port 161167 remote_ip 10.8.0.182 161173 username hashtadani4 161173 mac 161173 bytes_out 0 161173 bytes_in 0 161173 station_ip 83.122.149.210 161173 port 659 161173 unique_id port 161173 remote_ip 10.8.0.182 161174 username morteza 161174 mac 161174 bytes_out 0 161174 bytes_in 0 161174 station_ip 83.123.67.173 161174 port 347 161174 unique_id port 161174 remote_ip 10.8.1.62 161180 username hashtadani4 161180 mac 161180 bytes_out 0 161180 bytes_in 0 161180 station_ip 83.122.149.210 161180 port 659 161180 unique_id port 161180 remote_ip 10.8.0.182 161181 username hashtadani4 161181 mac 161181 bytes_out 0 161181 bytes_in 0 161181 station_ip 83.122.149.210 161181 port 659 161181 unique_id port 161181 remote_ip 10.8.0.182 161185 username hashtadani4 161185 mac 161185 bytes_out 0 161185 bytes_in 0 161185 station_ip 83.122.149.210 161185 port 659 161185 unique_id port 161185 remote_ip 10.8.0.182 161189 username hashtadani4 161189 mac 161189 bytes_out 0 161189 bytes_in 0 161189 station_ip 83.122.149.210 161189 port 669 161189 unique_id port 161189 remote_ip 10.8.0.182 161191 username hashtadani4 161191 mac 161191 bytes_out 0 161191 bytes_in 0 161191 station_ip 83.122.149.210 161191 port 659 161191 unique_id port 161191 remote_ip 10.8.0.182 161195 username hashtadani4 161195 mac 161195 bytes_out 0 161195 bytes_in 0 161195 station_ip 83.122.149.210 161195 port 659 161195 unique_id port 161195 remote_ip 10.8.0.182 161197 username hashtadani4 161197 mac 161197 bytes_out 0 161197 bytes_in 0 161197 station_ip 83.122.149.210 161197 port 659 161197 unique_id port 161197 remote_ip 10.8.0.182 161198 username hashtadani4 161198 mac 161198 bytes_out 0 161198 bytes_in 0 161198 station_ip 83.122.149.210 161198 port 669 161198 unique_id port 161198 remote_ip 10.8.0.182 161204 username morteza 161204 mac 161204 bytes_out 0 161204 bytes_in 0 161204 station_ip 83.123.67.173 161204 port 677 161204 unique_id port 161204 remote_ip 10.8.0.46 161206 username morteza 161206 kill_reason Maximum check online fails reached 161206 mac 161206 bytes_out 0 161206 bytes_in 0 161206 station_ip 83.123.67.173 161206 port 659 161206 unique_id port 161208 username hashtadani4 161208 mac 161208 bytes_out 0 161192 bytes_out 0 161192 bytes_in 0 161192 station_ip 83.122.149.210 161192 port 659 161192 unique_id port 161192 remote_ip 10.8.0.182 161199 username farhad2 161199 kill_reason Another user logged on this global unique id 161199 mac 161199 bytes_out 0 161199 bytes_in 0 161199 station_ip 5.119.5.221 161199 port 655 161199 unique_id port 161199 remote_ip 10.8.0.190 161200 username hashtadani4 161200 mac 161200 bytes_out 0 161200 bytes_in 0 161200 station_ip 83.122.149.210 161200 port 669 161200 unique_id port 161200 remote_ip 10.8.0.182 161209 username hashtadani4 161209 mac 161209 bytes_out 0 161209 bytes_in 0 161209 station_ip 83.122.149.210 161209 port 655 161209 unique_id port 161209 remote_ip 10.8.0.182 161210 username morteza 161210 mac 161210 bytes_out 0 161210 bytes_in 0 161210 station_ip 83.123.67.173 161210 port 677 161210 unique_id port 161210 remote_ip 10.8.0.46 161211 username morteza 161211 mac 161211 bytes_out 0 161211 bytes_in 0 161211 station_ip 83.123.67.173 161211 port 678 161211 unique_id port 161211 remote_ip 10.8.0.46 161213 username hashtadani4 161213 mac 161213 bytes_out 0 161213 bytes_in 0 161213 station_ip 83.122.149.210 161213 port 655 161213 unique_id port 161213 remote_ip 10.8.0.182 161214 username hashtadani4 161214 mac 161214 bytes_out 0 161214 bytes_in 0 161214 station_ip 83.122.149.210 161214 port 655 161214 unique_id port 161214 remote_ip 10.8.0.182 161216 username morteza 161216 mac 161216 bytes_out 0 161216 bytes_in 0 161216 station_ip 83.123.67.173 161216 port 348 161216 unique_id port 161216 remote_ip 10.8.1.62 161218 username morteza 161218 mac 161218 bytes_out 0 161218 bytes_in 0 161218 station_ip 83.123.67.173 161218 port 677 161218 unique_id port 161218 remote_ip 10.8.0.46 161220 username morteza 161220 mac 161220 bytes_out 0 161220 bytes_in 0 161220 station_ip 83.123.67.173 161220 port 677 161220 unique_id port 161220 remote_ip 10.8.0.46 161225 username hashtadani4 161225 mac 161225 bytes_out 0 161225 bytes_in 0 161225 station_ip 83.122.149.210 161225 port 348 161225 unique_id port 161225 remote_ip 10.8.1.142 161227 username hashtadani4 161227 mac 161227 bytes_out 0 161227 bytes_in 0 161227 station_ip 83.122.149.210 161227 port 677 161227 unique_id port 161227 remote_ip 10.8.0.182 161229 username hashtadani4 161229 mac 161229 bytes_out 0 161229 bytes_in 0 161229 station_ip 83.122.149.210 161229 port 655 161229 unique_id port 161229 remote_ip 10.8.0.182 161235 username hashtadani4 161235 mac 161235 bytes_out 0 161235 bytes_in 0 161235 station_ip 83.122.149.210 161235 port 655 161235 unique_id port 161235 remote_ip 10.8.0.182 161240 username morteza 161240 mac 161240 bytes_out 0 161240 bytes_in 0 161240 station_ip 83.123.67.173 161240 port 350 161240 unique_id port 161240 remote_ip 10.8.1.62 161244 username morteza 161244 mac 161244 bytes_out 0 161244 bytes_in 0 161244 station_ip 83.123.67.173 161244 port 677 161244 unique_id port 161244 remote_ip 10.8.0.46 161247 username morteza 161247 mac 161247 bytes_out 0 161247 bytes_in 0 161247 station_ip 83.123.67.173 161247 port 677 161247 unique_id port 161247 remote_ip 10.8.0.46 161254 username morteza 161254 mac 161254 bytes_out 0 161254 bytes_in 0 161254 station_ip 83.123.67.173 161254 port 678 161254 unique_id port 161254 remote_ip 10.8.0.46 161257 username morteza 161257 mac 161257 bytes_out 0 161257 bytes_in 0 161194 mac 161194 bytes_out 0 161194 bytes_in 0 161194 station_ip 83.122.149.210 161194 port 659 161194 unique_id port 161194 remote_ip 10.8.0.182 161196 username morteza 161196 mac 161196 bytes_out 0 161196 bytes_in 0 161196 station_ip 83.123.67.173 161196 port 659 161196 unique_id port 161196 remote_ip 10.8.0.46 161201 username hashtadani4 161201 mac 161201 bytes_out 0 161201 bytes_in 0 161201 station_ip 83.122.149.210 161201 port 669 161201 unique_id port 161201 remote_ip 10.8.0.182 161202 username hashtadani4 161202 mac 161202 bytes_out 0 161202 bytes_in 0 161202 station_ip 83.122.149.210 161202 port 669 161202 unique_id port 161202 remote_ip 10.8.0.182 161203 username farhad2 161203 mac 161203 bytes_out 0 161203 bytes_in 0 161203 station_ip 5.119.5.221 161203 port 655 161203 unique_id port 161205 username hashtadani4 161205 mac 161205 bytes_out 0 161205 bytes_in 0 161205 station_ip 83.122.149.210 161205 port 669 161205 unique_id port 161205 remote_ip 10.8.0.182 161207 username hashtadani4 161207 mac 161207 bytes_out 0 161207 bytes_in 0 161207 station_ip 83.122.149.210 161207 port 655 161207 unique_id port 161207 remote_ip 10.8.0.182 161212 username morteza 161212 mac 161212 bytes_out 0 161212 bytes_in 0 161212 station_ip 83.123.67.173 161212 port 677 161212 unique_id port 161212 remote_ip 10.8.0.46 161215 username hashtadani4 161215 mac 161215 bytes_out 0 161215 bytes_in 0 161215 station_ip 83.122.149.210 161215 port 655 161215 unique_id port 161215 remote_ip 10.8.0.182 161217 username hashtadani4 161217 mac 161217 bytes_out 0 161217 bytes_in 0 161217 station_ip 83.122.149.210 161217 port 655 161217 unique_id port 161217 remote_ip 10.8.0.182 161219 username morteza 161219 mac 161219 bytes_out 0 161219 bytes_in 0 161219 station_ip 83.123.67.173 161219 port 677 161219 unique_id port 161219 remote_ip 10.8.0.46 161224 username hashtadani4 161224 mac 161224 bytes_out 0 161224 bytes_in 0 161224 station_ip 83.122.149.210 161224 port 677 161224 unique_id port 161224 remote_ip 10.8.0.182 161232 username hashtadani4 161232 mac 161232 bytes_out 0 161232 bytes_in 0 161232 station_ip 83.122.149.210 161232 port 677 161232 unique_id port 161232 remote_ip 10.8.0.182 161233 username hashtadani4 161233 mac 161233 bytes_out 0 161233 bytes_in 0 161233 station_ip 83.122.149.210 161233 port 655 161233 unique_id port 161233 remote_ip 10.8.0.182 161237 username hashtadani4 161237 kill_reason Maximum check online fails reached 161237 mac 161237 bytes_out 0 161237 bytes_in 0 161237 station_ip 83.122.149.210 161237 port 348 161237 unique_id port 161241 username morteza 161241 kill_reason Maximum check online fails reached 161241 mac 161241 bytes_out 0 161241 bytes_in 0 161241 station_ip 83.123.67.173 161241 port 655 161241 unique_id port 161250 username morteza 161250 mac 161250 bytes_out 0 161250 bytes_in 0 161250 station_ip 83.123.67.173 161250 port 678 161250 unique_id port 161250 remote_ip 10.8.0.46 161251 username morteza 161251 mac 161251 bytes_out 0 161251 bytes_in 0 161251 station_ip 83.123.67.173 161251 port 678 161251 unique_id port 161251 remote_ip 10.8.0.46 161252 username morteza 161252 mac 161252 bytes_out 0 161252 bytes_in 0 161252 station_ip 83.123.67.173 161252 port 678 161252 unique_id port 161252 remote_ip 10.8.0.46 161263 username farhad2 161263 mac 161263 bytes_out 620865 161263 bytes_in 1377932 161208 bytes_in 0 161208 station_ip 83.122.149.210 161208 port 655 161208 unique_id port 161208 remote_ip 10.8.0.182 161221 username hashtadani4 161221 mac 161221 bytes_out 529910 161221 bytes_in 4885194 161221 station_ip 83.122.149.210 161221 port 655 161221 unique_id port 161221 remote_ip 10.8.0.182 161222 username hashtadani4 161222 mac 161222 bytes_out 0 161222 bytes_in 0 161222 station_ip 83.122.149.210 161222 port 655 161222 unique_id port 161222 remote_ip 10.8.0.182 161223 username morteza 161223 mac 161223 bytes_out 0 161223 bytes_in 0 161223 station_ip 83.123.67.173 161223 port 655 161223 unique_id port 161223 remote_ip 10.8.0.46 161226 username hashtadani4 161226 mac 161226 bytes_out 0 161226 bytes_in 0 161226 station_ip 83.122.149.210 161226 port 348 161226 unique_id port 161226 remote_ip 10.8.1.142 161228 username morteza 161228 mac 161228 bytes_out 1636 161228 bytes_in 5142 161228 station_ip 83.123.67.173 161228 port 655 161228 unique_id port 161228 remote_ip 10.8.0.46 161230 username hashtadani4 161230 mac 161230 bytes_out 0 161230 bytes_in 0 161230 station_ip 83.122.149.210 161230 port 655 161230 unique_id port 161230 remote_ip 10.8.0.182 161231 username morteza 161231 mac 161231 bytes_out 0 161231 bytes_in 0 161231 station_ip 83.123.67.173 161231 port 655 161231 unique_id port 161231 remote_ip 10.8.0.46 161234 username hashtadani4 161234 mac 161234 bytes_out 0 161234 bytes_in 0 161234 station_ip 83.122.149.210 161234 port 655 161234 unique_id port 161234 remote_ip 10.8.0.182 161236 username hashtadani4 161236 kill_reason Maximum number of concurrent logins reached 161236 mac 161236 bytes_out 0 161236 bytes_in 0 161236 station_ip 83.122.149.210 161236 port 655 161236 unique_id port 161238 username morteza 161238 mac 161238 bytes_out 0 161238 bytes_in 0 161238 station_ip 83.123.67.173 161238 port 655 161238 unique_id port 161238 remote_ip 10.8.0.46 161239 username hashtadani4 161239 kill_reason Maximum check online fails reached 161239 mac 161239 bytes_out 0 161239 bytes_in 0 161239 station_ip 83.122.149.210 161239 port 349 161239 unique_id port 161242 username morteza 161242 mac 161242 bytes_out 0 161242 bytes_in 0 161242 station_ip 83.123.67.173 161242 port 677 161242 unique_id port 161242 remote_ip 10.8.0.46 161243 username morteza 161243 mac 161243 bytes_out 0 161243 bytes_in 0 161243 station_ip 83.123.67.173 161243 port 677 161243 unique_id port 161243 remote_ip 10.8.0.46 161245 username morteza 161245 mac 161245 bytes_out 0 161245 bytes_in 0 161245 station_ip 83.123.67.173 161245 port 677 161245 unique_id port 161245 remote_ip 10.8.0.46 161246 username morteza 161246 mac 161246 bytes_out 0 161246 bytes_in 0 161246 station_ip 83.123.67.173 161246 port 677 161246 unique_id port 161246 remote_ip 10.8.0.46 161248 username morteza 161248 mac 161248 bytes_out 0 161248 bytes_in 0 161248 station_ip 83.123.67.173 161248 port 677 161248 unique_id port 161248 remote_ip 10.8.0.46 161249 username morteza 161249 mac 161249 bytes_out 0 161249 bytes_in 0 161249 station_ip 83.123.67.173 161249 port 677 161249 unique_id port 161249 remote_ip 10.8.0.46 161253 username morteza 161253 mac 161253 bytes_out 0 161253 bytes_in 0 161253 station_ip 83.123.67.173 161253 port 678 161253 unique_id port 161253 remote_ip 10.8.0.46 161255 username morteza 161255 mac 161255 bytes_out 0 161255 bytes_in 0 161255 station_ip 83.123.67.173 161255 port 678 161255 unique_id port 161255 remote_ip 10.8.0.46 161256 username morteza 161256 mac 161256 bytes_out 0 161256 bytes_in 0 161256 station_ip 83.123.67.173 161256 port 678 161256 unique_id port 161256 remote_ip 10.8.0.46 161258 username morteza 161258 mac 161258 bytes_out 0 161258 bytes_in 0 161258 station_ip 83.123.67.173 161258 port 678 161258 unique_id port 161258 remote_ip 10.8.0.46 161262 username morteza 161262 kill_reason Maximum check online fails reached 161262 mac 161262 bytes_out 0 161262 bytes_in 0 161262 station_ip 83.123.67.173 161262 port 678 161262 unique_id port 161264 username moradi 161264 kill_reason Another user logged on this global unique id 161264 mac 161264 bytes_out 0 161264 bytes_in 0 161264 station_ip 37.156.156.106 161264 port 672 161264 unique_id port 161264 remote_ip 10.8.0.126 161267 username morteza 161267 mac 161267 bytes_out 0 161267 bytes_in 0 161267 station_ip 83.123.67.173 161267 port 680 161267 unique_id port 161267 remote_ip 10.8.0.46 161270 username morteza 161270 mac 161270 bytes_out 1636 161270 bytes_in 4670 161270 station_ip 83.123.67.173 161270 port 680 161270 unique_id port 161270 remote_ip 10.8.0.46 161271 username morteza 161271 mac 161271 bytes_out 0 161271 bytes_in 0 161271 station_ip 83.123.67.173 161271 port 350 161271 unique_id port 161271 remote_ip 10.8.1.62 161273 username morteza 161273 mac 161273 bytes_out 0 161273 bytes_in 0 161273 station_ip 83.123.67.173 161273 port 350 161273 unique_id port 161273 remote_ip 10.8.1.62 161275 username morteza 161275 mac 161275 bytes_out 0 161275 bytes_in 0 161275 station_ip 83.123.67.173 161275 port 680 161275 unique_id port 161275 remote_ip 10.8.0.46 161276 username morteza 161276 mac 161276 bytes_out 0 161276 bytes_in 0 161276 station_ip 83.123.67.173 161276 port 680 161276 unique_id port 161276 remote_ip 10.8.0.46 161278 username morteza 161278 mac 161278 bytes_out 0 161278 bytes_in 0 161278 station_ip 83.123.67.173 161278 port 669 161278 unique_id port 161278 remote_ip 10.8.0.46 161279 username morteza 161279 mac 161279 bytes_out 0 161279 bytes_in 0 161279 station_ip 83.123.67.173 161279 port 669 161279 unique_id port 161279 remote_ip 10.8.0.46 161284 username morteza 161284 mac 161284 bytes_out 0 161284 bytes_in 0 161284 station_ip 83.123.67.173 161284 port 669 161284 unique_id port 161284 remote_ip 10.8.0.46 161295 username morteza 161295 mac 161295 bytes_out 0 161295 bytes_in 0 161295 station_ip 83.123.67.173 161295 port 669 161295 unique_id port 161295 remote_ip 10.8.0.46 161296 username morteza 161296 mac 161296 bytes_out 0 161296 bytes_in 0 161296 station_ip 83.123.67.173 161296 port 669 161296 unique_id port 161296 remote_ip 10.8.0.46 161297 username morteza 161297 mac 161297 bytes_out 0 161297 bytes_in 0 161297 station_ip 83.123.67.173 161297 port 351 161297 unique_id port 161297 remote_ip 10.8.1.62 161306 username morteza 161306 mac 161306 bytes_out 0 161306 bytes_in 0 161306 station_ip 83.123.67.173 161306 port 681 161306 unique_id port 161306 remote_ip 10.8.0.46 161311 username morteza 161311 mac 161311 bytes_out 0 161311 bytes_in 0 161311 station_ip 83.123.67.173 161311 port 681 161311 unique_id port 161311 remote_ip 10.8.0.46 161313 username morteza 161313 mac 161313 bytes_out 0 161313 bytes_in 0 161313 station_ip 83.123.67.173 161313 port 681 161313 unique_id port 161257 station_ip 83.123.67.173 161257 port 678 161257 unique_id port 161257 remote_ip 10.8.0.46 161259 username farhad2 161259 mac 161259 bytes_out 19340832 161259 bytes_in 33556552 161259 station_ip 5.119.5.221 161259 port 669 161259 unique_id port 161259 remote_ip 10.8.0.190 161260 username morteza 161260 mac 161260 bytes_out 0 161260 bytes_in 0 161260 station_ip 83.123.67.173 161260 port 678 161260 unique_id port 161260 remote_ip 10.8.0.46 161261 username morteza 161261 mac 161261 bytes_out 0 161261 bytes_in 0 161261 station_ip 83.123.67.173 161261 port 678 161261 unique_id port 161261 remote_ip 10.8.0.46 161265 username morteza 161265 mac 161265 bytes_out 0 161265 bytes_in 0 161265 station_ip 83.123.67.173 161265 port 669 161265 unique_id port 161265 remote_ip 10.8.0.46 161286 username farhad2 161286 mac 161286 bytes_out 8156320 161286 bytes_in 862351 161286 station_ip 5.119.5.221 161286 port 669 161286 unique_id port 161286 remote_ip 10.8.0.190 161292 username morteza 161292 mac 161292 bytes_out 0 161292 bytes_in 0 161292 station_ip 83.123.67.173 161292 port 669 161292 unique_id port 161292 remote_ip 10.8.0.46 161298 username morteza 161298 mac 161298 bytes_out 0 161298 bytes_in 0 161298 station_ip 83.123.67.173 161298 port 351 161298 unique_id port 161298 remote_ip 10.8.1.62 161299 username morteza 161299 mac 161299 bytes_out 0 161299 bytes_in 0 161299 station_ip 83.123.67.173 161299 port 351 161299 unique_id port 161299 remote_ip 10.8.1.62 161301 username morteza 161301 kill_reason Maximum check online fails reached 161301 mac 161301 bytes_out 0 161301 bytes_in 0 161301 station_ip 83.123.67.173 161301 port 680 161301 unique_id port 161303 username morteza 161303 mac 161303 bytes_out 0 161303 bytes_in 0 161303 station_ip 83.123.67.173 161303 port 681 161303 unique_id port 161303 remote_ip 10.8.0.46 161307 username morteza 161307 mac 161307 bytes_out 0 161307 bytes_in 0 161307 station_ip 83.123.67.173 161307 port 681 161307 unique_id port 161307 remote_ip 10.8.0.46 161308 username morteza 161308 mac 161308 bytes_out 0 161308 bytes_in 0 161308 station_ip 83.123.67.173 161308 port 681 161308 unique_id port 161308 remote_ip 10.8.0.46 161309 username morteza 161309 mac 161309 bytes_out 0 161309 bytes_in 0 161309 station_ip 83.123.67.173 161309 port 681 161309 unique_id port 161309 remote_ip 10.8.0.46 161312 username morteza 161312 mac 161312 bytes_out 0 161312 bytes_in 0 161312 station_ip 83.123.67.173 161312 port 681 161312 unique_id port 161312 remote_ip 10.8.0.46 161320 username morteza 161320 mac 161320 bytes_out 0 161320 bytes_in 0 161320 station_ip 83.123.67.173 161320 port 681 161320 unique_id port 161320 remote_ip 10.8.0.46 161321 username morteza 161321 mac 161321 bytes_out 0 161321 bytes_in 0 161321 station_ip 83.123.67.173 161321 port 339 161321 unique_id port 161321 remote_ip 10.8.1.62 161324 username morteza 161324 mac 161324 bytes_out 0 161324 bytes_in 0 161324 station_ip 83.123.67.173 161324 port 681 161324 unique_id port 161324 remote_ip 10.8.0.46 161325 username morteza 161325 mac 161325 bytes_out 0 161325 bytes_in 0 161325 station_ip 83.123.67.173 161325 port 681 161325 unique_id port 161325 remote_ip 10.8.0.46 161330 username morteza 161330 mac 161330 bytes_out 6640 161330 bytes_in 11809 161330 station_ip 83.123.67.173 161330 port 672 161330 unique_id port 161263 station_ip 5.119.5.221 161263 port 669 161263 unique_id port 161263 remote_ip 10.8.0.190 161266 username farhad2 161266 mac 161266 bytes_out 0 161266 bytes_in 0 161266 station_ip 5.119.5.221 161266 port 680 161266 unique_id port 161266 remote_ip 10.8.0.190 161268 username morteza 161268 mac 161268 bytes_out 0 161268 bytes_in 0 161268 station_ip 83.123.67.173 161268 port 681 161268 unique_id port 161268 remote_ip 10.8.0.46 161269 username farhad2 161269 mac 161269 bytes_out 0 161269 bytes_in 0 161269 station_ip 5.119.5.221 161269 port 669 161269 unique_id port 161269 remote_ip 10.8.0.190 161272 username farhad2 161272 mac 161272 bytes_out 0 161272 bytes_in 0 161272 station_ip 5.119.5.221 161272 port 669 161272 unique_id port 161272 remote_ip 10.8.0.190 161274 username morteza 161274 mac 161274 bytes_out 0 161274 bytes_in 0 161274 station_ip 83.123.67.173 161274 port 680 161274 unique_id port 161274 remote_ip 10.8.0.46 161277 username farhad2 161277 mac 161277 bytes_out 1132804 161277 bytes_in 17544787 161277 station_ip 5.119.5.221 161277 port 669 161277 unique_id port 161277 remote_ip 10.8.0.190 161280 username morteza 161280 mac 161280 bytes_out 0 161280 bytes_in 0 161280 station_ip 83.123.67.173 161280 port 350 161280 unique_id port 161280 remote_ip 10.8.1.62 161281 username morteza 161281 mac 161281 bytes_out 0 161281 bytes_in 0 161281 station_ip 83.123.67.173 161281 port 669 161281 unique_id port 161281 remote_ip 10.8.0.46 161282 username morteza 161282 mac 161282 bytes_out 0 161282 bytes_in 0 161282 station_ip 83.123.67.173 161282 port 350 161282 unique_id port 161282 remote_ip 10.8.1.62 161283 username farhad2 161283 mac 161283 bytes_out 0 161283 bytes_in 0 161283 station_ip 5.119.5.221 161283 port 669 161283 unique_id port 161283 remote_ip 10.8.0.190 161285 username morteza 161285 mac 161285 bytes_out 0 161285 bytes_in 0 161285 station_ip 83.123.67.173 161285 port 680 161285 unique_id port 161285 remote_ip 10.8.0.46 161287 username morteza 161287 mac 161287 bytes_out 0 161287 bytes_in 0 161287 station_ip 83.123.67.173 161287 port 669 161287 unique_id port 161287 remote_ip 10.8.0.46 161288 username farhad2 161288 mac 161288 bytes_out 0 161288 bytes_in 0 161288 station_ip 5.119.5.221 161288 port 350 161288 unique_id port 161288 remote_ip 10.8.1.222 161289 username morteza 161289 mac 161289 bytes_out 0 161289 bytes_in 0 161289 station_ip 83.123.67.173 161289 port 669 161289 unique_id port 161289 remote_ip 10.8.0.46 161290 username morteza 161290 mac 161290 bytes_out 0 161290 bytes_in 0 161290 station_ip 83.123.67.173 161290 port 669 161290 unique_id port 161290 remote_ip 10.8.0.46 161291 username morteza 161291 mac 161291 bytes_out 0 161291 bytes_in 0 161291 station_ip 83.123.67.173 161291 port 669 161291 unique_id port 161291 remote_ip 10.8.0.46 161293 username morteza 161293 kill_reason Maximum check online fails reached 161293 mac 161293 bytes_out 0 161293 bytes_in 0 161293 station_ip 83.123.67.173 161293 port 350 161293 unique_id port 161294 username morteza 161294 mac 161294 bytes_out 0 161294 bytes_in 0 161294 station_ip 83.123.67.173 161294 port 669 161294 unique_id port 161294 remote_ip 10.8.0.46 161300 username morteza 161300 kill_reason Maximum check online fails reached 161300 mac 161300 bytes_out 0 161300 bytes_in 0 161300 station_ip 83.123.67.173 161300 port 669 161300 unique_id port 161302 username morteza 161302 mac 161302 bytes_out 0 161302 bytes_in 0 161302 station_ip 83.123.67.173 161302 port 351 161302 unique_id port 161302 remote_ip 10.8.1.62 161304 username morteza 161304 mac 161304 bytes_out 0 161304 bytes_in 0 161304 station_ip 83.123.67.173 161304 port 681 161304 unique_id port 161304 remote_ip 10.8.0.46 161305 username morteza 161305 mac 161305 bytes_out 0 161305 bytes_in 0 161305 station_ip 83.123.67.173 161305 port 681 161305 unique_id port 161305 remote_ip 10.8.0.46 161310 username pourshad 161310 mac 161310 bytes_out 0 161310 bytes_in 0 161310 station_ip 5.119.162.49 161310 port 339 161310 unique_id port 161310 remote_ip 10.8.1.154 161314 username morteza 161314 mac 161314 bytes_out 0 161314 bytes_in 0 161314 station_ip 83.123.67.173 161314 port 681 161314 unique_id port 161314 remote_ip 10.8.0.46 161315 username morteza 161315 mac 161315 bytes_out 0 161315 bytes_in 0 161315 station_ip 83.123.67.173 161315 port 681 161315 unique_id port 161315 remote_ip 10.8.0.46 161316 username morteza 161316 mac 161316 bytes_out 0 161316 bytes_in 0 161316 station_ip 83.123.67.173 161316 port 681 161316 unique_id port 161316 remote_ip 10.8.0.46 161318 username morteza 161318 mac 161318 bytes_out 0 161318 bytes_in 0 161318 station_ip 83.123.67.173 161318 port 339 161318 unique_id port 161318 remote_ip 10.8.1.62 161319 username morteza 161319 mac 161319 bytes_out 0 161319 bytes_in 0 161319 station_ip 83.123.67.173 161319 port 681 161319 unique_id port 161319 remote_ip 10.8.0.46 161322 username morteza 161322 mac 161322 bytes_out 0 161322 bytes_in 0 161322 station_ip 83.123.67.173 161322 port 681 161322 unique_id port 161322 remote_ip 10.8.0.46 161326 username morteza 161326 mac 161326 bytes_out 0 161326 bytes_in 0 161326 station_ip 83.123.67.173 161326 port 681 161326 unique_id port 161326 remote_ip 10.8.0.46 161329 username moradi 161329 mac 161329 bytes_out 0 161329 bytes_in 0 161329 station_ip 37.156.156.106 161329 port 672 161329 unique_id port 161330 remote_ip 10.8.0.46 161332 username morteza 161332 mac 161332 bytes_out 0 161332 bytes_in 0 161332 station_ip 83.123.67.173 161332 port 672 161332 unique_id port 161332 remote_ip 10.8.0.46 161334 username morteza 161334 mac 161334 bytes_out 0 161334 bytes_in 0 161334 station_ip 83.123.67.173 161334 port 339 161334 unique_id port 161334 remote_ip 10.8.1.62 161336 username morteza 161336 mac 161336 bytes_out 0 161336 bytes_in 0 161336 station_ip 83.123.67.173 161336 port 339 161336 unique_id port 161336 remote_ip 10.8.1.62 161337 username morteza 161337 mac 161337 bytes_out 0 161337 bytes_in 0 161337 station_ip 83.123.67.173 161337 port 682 161337 unique_id port 161337 remote_ip 10.8.0.46 161338 username morteza 161338 mac 161338 bytes_out 0 161338 bytes_in 0 161338 station_ip 83.123.67.173 161338 port 682 161338 unique_id port 161338 remote_ip 10.8.0.46 161339 username morteza 161339 mac 161339 bytes_out 0 161339 bytes_in 0 161339 station_ip 83.123.67.173 161339 port 682 161339 unique_id port 161339 remote_ip 10.8.0.46 161340 username morteza 161340 mac 161340 bytes_out 0 161340 bytes_in 0 161340 station_ip 83.123.67.173 161340 port 682 161340 unique_id port 161340 remote_ip 10.8.0.46 161343 username morteza 161343 mac 161343 bytes_out 0 161343 bytes_in 0 161313 remote_ip 10.8.0.46 161317 username morteza 161317 mac 161317 bytes_out 0 161317 bytes_in 0 161317 station_ip 83.123.67.173 161317 port 681 161317 unique_id port 161317 remote_ip 10.8.0.46 161323 username morteza 161323 mac 161323 bytes_out 0 161323 bytes_in 0 161323 station_ip 83.123.67.173 161323 port 681 161323 unique_id port 161323 remote_ip 10.8.0.46 161327 username morteza 161327 mac 161327 bytes_out 0 161327 bytes_in 0 161327 station_ip 83.123.67.173 161327 port 681 161327 unique_id port 161327 remote_ip 10.8.0.46 161328 username morteza 161328 mac 161328 bytes_out 0 161328 bytes_in 0 161328 station_ip 83.123.67.173 161328 port 681 161328 unique_id port 161328 remote_ip 10.8.0.46 161331 username morteza 161331 mac 161331 bytes_out 0 161331 bytes_in 0 161331 station_ip 83.123.67.173 161331 port 672 161331 unique_id port 161331 remote_ip 10.8.0.46 161333 username morteza 161333 kill_reason Maximum check online fails reached 161333 mac 161333 bytes_out 0 161333 bytes_in 0 161333 station_ip 83.123.67.173 161333 port 672 161333 unique_id port 161335 username morteza 161335 kill_reason Maximum check online fails reached 161335 mac 161335 bytes_out 0 161335 bytes_in 0 161335 station_ip 83.123.67.173 161335 port 681 161335 unique_id port 161341 username morteza 161341 mac 161341 bytes_out 0 161341 bytes_in 0 161341 station_ip 83.123.67.173 161341 port 682 161341 unique_id port 161341 remote_ip 10.8.0.46 161342 username morteza 161342 mac 161342 bytes_out 0 161342 bytes_in 0 161342 station_ip 83.123.67.173 161342 port 682 161342 unique_id port 161342 remote_ip 10.8.0.46 161343 station_ip 83.123.67.173 161343 port 683 161343 unique_id port 161343 remote_ip 10.8.0.46 161344 username morteza 161344 kill_reason Maximum check online fails reached 161344 mac 161344 bytes_out 0 161344 bytes_in 0 161344 station_ip 83.123.67.173 161344 port 682 161344 unique_id port 161345 username morteza 161345 mac 161345 bytes_out 0 161345 bytes_in 0 161345 station_ip 83.123.67.173 161345 port 683 161345 unique_id port 161345 remote_ip 10.8.0.46 161346 username morteza 161346 mac 161346 bytes_out 0 161346 bytes_in 0 161346 station_ip 83.123.67.173 161346 port 683 161346 unique_id port 161346 remote_ip 10.8.0.46 161347 username morteza 161347 mac 161347 bytes_out 0 161347 bytes_in 0 161347 station_ip 83.123.67.173 161347 port 683 161347 unique_id port 161347 remote_ip 10.8.0.46 161348 username morteza 161348 mac 161348 bytes_out 0 161348 bytes_in 0 161348 station_ip 83.123.67.173 161348 port 683 161348 unique_id port 161348 remote_ip 10.8.0.46 161349 username morteza 161349 mac 161349 bytes_out 0 161349 bytes_in 0 161349 station_ip 83.123.67.173 161349 port 683 161349 unique_id port 161349 remote_ip 10.8.0.46 161350 username morteza 161350 mac 161350 bytes_out 0 161350 bytes_in 0 161350 station_ip 83.123.67.173 161350 port 683 161350 unique_id port 161350 remote_ip 10.8.0.46 161351 username morteza 161351 kill_reason Maximum check online fails reached 161351 mac 161351 bytes_out 0 161351 bytes_in 0 161351 station_ip 83.123.67.173 161351 port 683 161351 unique_id port 161352 username morteza 161352 mac 161352 bytes_out 0 161352 bytes_in 0 161352 station_ip 83.123.67.173 161352 port 339 161352 unique_id port 161352 remote_ip 10.8.1.62 161353 username morteza 161353 mac 161353 bytes_out 14418 161353 bytes_in 22544 161353 station_ip 83.123.67.173 161353 port 339 161353 unique_id port 161353 remote_ip 10.8.1.62 161354 username mosi 161354 mac 161354 bytes_out 0 161354 bytes_in 0 161354 station_ip 151.235.118.222 161354 port 673 161354 unique_id port 161359 username hashtadani4 161359 mac 161359 bytes_out 2239 161359 bytes_in 4887 161359 station_ip 83.122.149.210 161359 port 673 161359 unique_id port 161359 remote_ip 10.8.0.182 161361 username hashtadani4 161361 mac 161361 bytes_out 0 161361 bytes_in 0 161361 station_ip 83.122.149.210 161361 port 673 161361 unique_id port 161361 remote_ip 10.8.0.182 161362 username hashtadani4 161362 mac 161362 bytes_out 0 161362 bytes_in 0 161362 station_ip 83.122.149.210 161362 port 673 161362 unique_id port 161362 remote_ip 10.8.0.182 161363 username hashtadani4 161363 mac 161363 bytes_out 0 161363 bytes_in 0 161363 station_ip 83.122.149.210 161363 port 684 161363 unique_id port 161363 remote_ip 10.8.0.182 161364 username mehdizare 161364 mac 161364 bytes_out 0 161364 bytes_in 0 161364 station_ip 83.122.87.157 161364 port 653 161364 unique_id port 161364 remote_ip 10.8.0.90 161366 username hashtadani4 161366 mac 161366 bytes_out 0 161366 bytes_in 0 161366 station_ip 83.122.149.210 161366 port 653 161366 unique_id port 161366 remote_ip 10.8.0.182 161369 username sedighe 161369 mac 161369 bytes_out 50709 161369 bytes_in 143795 161369 station_ip 83.122.62.205 161369 port 653 161369 unique_id port 161369 remote_ip 10.8.0.146 161370 username hashtadani4 161370 mac 161370 bytes_out 0 161370 bytes_in 0 161370 station_ip 83.122.149.210 161370 port 653 161370 unique_id port 161370 remote_ip 10.8.0.182 161376 username shadkam 161376 mac 161376 bytes_out 313830 161376 bytes_in 3459781 161376 station_ip 37.129.235.21 161376 port 684 161376 unique_id port 161376 remote_ip 10.8.0.62 161378 username hashtadani4 161378 mac 161378 bytes_out 0 161378 bytes_in 0 161378 station_ip 83.122.149.210 161378 port 676 161378 unique_id port 161378 remote_ip 10.8.0.182 161379 username hashtadani4 161379 mac 161379 bytes_out 0 161379 bytes_in 0 161379 station_ip 83.122.149.210 161379 port 684 161379 unique_id port 161379 remote_ip 10.8.0.182 161380 username hashtadani4 161380 mac 161380 bytes_out 0 161380 bytes_in 0 161380 station_ip 83.122.149.210 161380 port 684 161380 unique_id port 161380 remote_ip 10.8.0.182 161383 username sedighe 161383 mac 161383 bytes_out 258279 161383 bytes_in 588885 161383 station_ip 37.129.178.119 161383 port 653 161383 unique_id port 161383 remote_ip 10.8.0.146 161388 username jafari 161388 kill_reason Another user logged on this global unique id 161388 mac 161388 bytes_out 0 161388 bytes_in 0 161388 station_ip 5.134.143.111 161388 port 339 161388 unique_id port 161388 remote_ip 10.8.1.198 161390 username hashtadani4 161390 mac 161390 bytes_out 0 161390 bytes_in 0 161390 station_ip 83.122.149.210 161390 port 653 161390 unique_id port 161390 remote_ip 10.8.0.182 161391 username hashtadani4 161391 mac 161391 bytes_out 0 161391 bytes_in 0 161391 station_ip 83.122.149.210 161391 port 351 161391 unique_id port 161391 remote_ip 10.8.1.142 161394 username nilufarrajaei 161394 mac 161394 bytes_out 0 161394 bytes_in 0 161394 station_ip 37.129.137.44 161394 port 684 161394 unique_id port 161394 remote_ip 10.8.0.206 161397 username jafari 161397 kill_reason Another user logged on this global unique id 161397 mac 161397 bytes_out 0 161397 bytes_in 0 161355 username hashtadani4 161355 mac 161355 bytes_out 0 161355 bytes_in 0 161355 station_ip 83.122.149.210 161355 port 673 161355 unique_id port 161355 remote_ip 10.8.0.182 161358 username hashtadani4 161358 mac 161358 bytes_out 2111 161358 bytes_in 4706 161358 station_ip 83.122.149.210 161358 port 673 161358 unique_id port 161358 remote_ip 10.8.0.182 161367 username hashtadani4 161367 mac 161367 bytes_out 0 161367 bytes_in 0 161367 station_ip 83.122.149.210 161367 port 653 161367 unique_id port 161367 remote_ip 10.8.0.182 161368 username hashtadani4 161368 mac 161368 bytes_out 0 161368 bytes_in 0 161368 station_ip 83.122.149.210 161368 port 684 161368 unique_id port 161368 remote_ip 10.8.0.182 161371 username hashtadani4 161371 mac 161371 bytes_out 0 161371 bytes_in 0 161371 station_ip 83.122.149.210 161371 port 339 161371 unique_id port 161371 remote_ip 10.8.1.142 161373 username sedighe 161373 mac 161373 bytes_out 112852 161373 bytes_in 506018 161373 station_ip 37.129.178.119 161373 port 684 161373 unique_id port 161373 remote_ip 10.8.0.146 161374 username hashtadani4 161374 mac 161374 bytes_out 0 161374 bytes_in 0 161374 station_ip 83.122.149.210 161374 port 684 161374 unique_id port 161374 remote_ip 10.8.0.182 161375 username hashtadani4 161375 mac 161375 bytes_out 0 161375 bytes_in 0 161375 station_ip 83.122.149.210 161375 port 685 161375 unique_id port 161375 remote_ip 10.8.0.182 161377 username hosseine 161377 mac 161377 bytes_out 0 161377 bytes_in 0 161377 station_ip 83.123.105.75 161377 port 676 161377 unique_id port 161382 username hashtadani4 161382 mac 161382 bytes_out 0 161382 bytes_in 0 161382 station_ip 83.122.149.210 161382 port 684 161382 unique_id port 161382 remote_ip 10.8.0.182 161389 username kalantary 161389 mac 161389 bytes_out 837704 161389 bytes_in 3995044 161389 station_ip 83.122.112.232 161389 port 653 161389 unique_id port 161389 remote_ip 10.8.0.98 161392 username hashtadani4 161392 mac 161392 bytes_out 0 161392 bytes_in 0 161392 station_ip 83.122.149.210 161392 port 673 161392 unique_id port 161392 remote_ip 10.8.0.182 161393 username forozandeh1 161393 mac 161393 bytes_out 0 161393 bytes_in 0 161393 station_ip 83.122.7.0 161393 port 351 161393 unique_id port 161393 remote_ip 10.8.1.250 161396 username milan 161396 kill_reason Another user logged on this global unique id 161396 mac 161396 bytes_out 0 161396 bytes_in 0 161396 station_ip 5.119.161.192 161396 port 675 161396 unique_id port 161404 username hashtadani4 161404 mac 161404 bytes_out 0 161404 bytes_in 0 161404 station_ip 83.122.149.210 161404 port 676 161404 unique_id port 161404 remote_ip 10.8.0.182 161407 username hashtadani4 161407 mac 161407 bytes_out 0 161407 bytes_in 0 161407 station_ip 83.122.149.210 161407 port 676 161407 unique_id port 161407 remote_ip 10.8.0.182 161410 username hashtadani4 161410 mac 161410 bytes_out 0 161410 bytes_in 0 161410 station_ip 83.122.149.210 161410 port 684 161410 unique_id port 161410 remote_ip 10.8.0.182 161414 username hashtadani4 161414 mac 161414 bytes_out 0 161414 bytes_in 0 161414 station_ip 83.122.149.210 161414 port 684 161414 unique_id port 161414 remote_ip 10.8.0.182 161420 username hashtadani4 161420 mac 161420 bytes_out 0 161420 bytes_in 0 161420 station_ip 83.122.149.210 161420 port 339 161420 unique_id port 161420 remote_ip 10.8.1.142 161422 username shadkam 161422 mac 161356 username hashtadani4 161356 mac 161356 bytes_out 0 161356 bytes_in 0 161356 station_ip 83.122.149.210 161356 port 673 161356 unique_id port 161356 remote_ip 10.8.0.182 161357 username hashtadani4 161357 mac 161357 bytes_out 0 161357 bytes_in 0 161357 station_ip 83.122.149.210 161357 port 673 161357 unique_id port 161357 remote_ip 10.8.0.182 161360 username hashtadani4 161360 mac 161360 bytes_out 0 161360 bytes_in 0 161360 station_ip 83.122.149.210 161360 port 673 161360 unique_id port 161360 remote_ip 10.8.0.182 161365 username hashtadani4 161365 mac 161365 bytes_out 0 161365 bytes_in 0 161365 station_ip 83.122.149.210 161365 port 653 161365 unique_id port 161365 remote_ip 10.8.0.182 161372 username hashtadani4 161372 mac 161372 bytes_out 0 161372 bytes_in 0 161372 station_ip 83.122.149.210 161372 port 653 161372 unique_id port 161372 remote_ip 10.8.0.182 161381 username mohammadjavad 161381 mac 161381 bytes_out 381787 161381 bytes_in 3570088 161381 station_ip 83.122.205.173 161381 port 676 161381 unique_id port 161381 remote_ip 10.8.0.142 161384 username aminvpn 161384 mac 161384 bytes_out 269197 161384 bytes_in 445807 161384 station_ip 5.120.23.20 161384 port 351 161384 unique_id port 161384 remote_ip 10.8.1.6 161385 username hashtadani4 161385 mac 161385 bytes_out 0 161385 bytes_in 0 161385 station_ip 83.122.149.210 161385 port 653 161385 unique_id port 161385 remote_ip 10.8.0.182 161386 username nilufarrajaei 161386 mac 161386 bytes_out 1880162 161386 bytes_in 17294405 161386 station_ip 37.129.137.44 161386 port 673 161386 unique_id port 161386 remote_ip 10.8.0.206 161387 username fezealinaghi 161387 mac 161387 bytes_out 0 161387 bytes_in 0 161387 station_ip 37.129.130.221 161387 port 676 161387 unique_id port 161387 remote_ip 10.8.0.78 161395 username hashtadani4 161395 mac 161395 bytes_out 0 161395 bytes_in 0 161395 station_ip 83.122.149.210 161395 port 673 161395 unique_id port 161395 remote_ip 10.8.0.182 161398 username jafari 161398 mac 161398 bytes_out 0 161398 bytes_in 0 161398 station_ip 5.134.143.111 161398 port 339 161398 unique_id port 161400 username hashtadani4 161400 mac 161400 bytes_out 0 161400 bytes_in 0 161400 station_ip 83.122.149.210 161400 port 676 161400 unique_id port 161400 remote_ip 10.8.0.182 161401 username saeed9658 161401 kill_reason Another user logged on this global unique id 161401 mac 161401 bytes_out 0 161401 bytes_in 0 161401 station_ip 5.119.37.90 161401 port 653 161401 unique_id port 161401 remote_ip 10.8.0.166 161402 username hashtadani4 161402 mac 161402 bytes_out 0 161402 bytes_in 0 161402 station_ip 83.122.149.210 161402 port 676 161402 unique_id port 161402 remote_ip 10.8.0.182 161406 username hashtadani4 161406 mac 161406 bytes_out 0 161406 bytes_in 0 161406 station_ip 83.122.149.210 161406 port 676 161406 unique_id port 161406 remote_ip 10.8.0.182 161408 username hashtadani4 161408 mac 161408 bytes_out 0 161408 bytes_in 0 161408 station_ip 83.122.149.210 161408 port 684 161408 unique_id port 161408 remote_ip 10.8.0.182 161409 username hashtadani4 161409 mac 161409 bytes_out 0 161409 bytes_in 0 161409 station_ip 83.122.149.210 161409 port 684 161409 unique_id port 161409 remote_ip 10.8.0.182 161413 username hashtadani4 161413 mac 161413 bytes_out 0 161413 bytes_in 0 161413 station_ip 83.122.149.210 161413 port 339 161413 unique_id port 161413 remote_ip 10.8.1.142 161416 username hashtadani4 161397 station_ip 5.134.143.111 161397 port 339 161397 unique_id port 161399 username hashtadani4 161399 mac 161399 bytes_out 0 161399 bytes_in 0 161399 station_ip 83.122.149.210 161399 port 676 161399 unique_id port 161399 remote_ip 10.8.0.182 161403 username forozandeh1 161403 mac 161403 bytes_out 0 161403 bytes_in 0 161403 station_ip 37.129.241.237 161403 port 339 161403 unique_id port 161403 remote_ip 10.8.1.250 161405 username hashtadani4 161405 mac 161405 bytes_out 0 161405 bytes_in 0 161405 station_ip 83.122.149.210 161405 port 676 161405 unique_id port 161405 remote_ip 10.8.0.182 161411 username mahdiyehalizadeh 161411 mac 161411 bytes_out 0 161411 bytes_in 0 161411 station_ip 5.119.218.8 161411 port 676 161411 unique_id port 161411 remote_ip 10.8.0.82 161412 username alipour 161412 mac 161412 bytes_out 2536018 161412 bytes_in 16029629 161412 station_ip 83.122.235.114 161412 port 328 161412 unique_id port 161412 remote_ip 10.8.1.50 161415 username mahdiyehalizadeh 161415 mac 161415 bytes_out 1803 161415 bytes_in 4314 161415 station_ip 5.119.218.8 161415 port 676 161415 unique_id port 161415 remote_ip 10.8.0.82 161418 username hashtadani4 161418 mac 161418 bytes_out 0 161418 bytes_in 0 161418 station_ip 83.122.149.210 161418 port 684 161418 unique_id port 161418 remote_ip 10.8.0.182 161419 username shadkam 161419 mac 161419 bytes_out 193216 161419 bytes_in 2681735 161419 station_ip 37.129.8.56 161419 port 676 161419 unique_id port 161419 remote_ip 10.8.0.62 161425 username hashtadani4 161425 mac 161425 bytes_out 0 161425 bytes_in 0 161425 station_ip 83.122.149.210 161425 port 685 161425 unique_id port 161425 remote_ip 10.8.0.182 161431 username saeed9658 161431 mac 161431 bytes_out 0 161431 bytes_in 0 161431 station_ip 5.119.37.90 161431 port 653 161431 unique_id port 161434 username hashtadani4 161434 mac 161434 bytes_out 0 161434 bytes_in 0 161434 station_ip 83.122.149.210 161434 port 653 161434 unique_id port 161434 remote_ip 10.8.0.182 161436 username rezaei 161436 mac 161436 bytes_out 2029318 161436 bytes_in 21804482 161436 station_ip 5.119.53.117 161436 port 676 161436 unique_id port 161436 remote_ip 10.8.0.230 161437 username hashtadani4 161437 mac 161437 bytes_out 0 161437 bytes_in 0 161437 station_ip 83.122.149.210 161437 port 653 161437 unique_id port 161437 remote_ip 10.8.0.182 161438 username hashtadani4 161438 mac 161438 bytes_out 0 161438 bytes_in 0 161438 station_ip 83.122.149.210 161438 port 653 161438 unique_id port 161438 remote_ip 10.8.0.182 161440 username hashtadani4 161440 mac 161440 bytes_out 0 161440 bytes_in 0 161440 station_ip 83.122.149.210 161440 port 673 161440 unique_id port 161440 remote_ip 10.8.0.182 161446 username hashtadani4 161446 mac 161446 bytes_out 0 161446 bytes_in 0 161446 station_ip 83.122.149.210 161446 port 675 161446 unique_id port 161446 remote_ip 10.8.0.182 161449 username alipour 161449 mac 161449 bytes_out 0 161449 bytes_in 0 161449 station_ip 83.122.235.114 161449 port 328 161449 unique_id port 161449 remote_ip 10.8.1.50 161450 username hashtadani4 161450 mac 161450 bytes_out 0 161450 bytes_in 0 161450 station_ip 83.122.149.210 161450 port 675 161450 unique_id port 161450 remote_ip 10.8.0.182 161452 username hashtadani4 161452 mac 161452 bytes_out 0 161452 bytes_in 0 161452 station_ip 83.122.149.210 161452 port 339 161452 unique_id port 161452 remote_ip 10.8.1.142 161416 mac 161416 bytes_out 0 161416 bytes_in 0 161416 station_ip 83.122.149.210 161416 port 684 161416 unique_id port 161416 remote_ip 10.8.0.182 161417 username hashtadani4 161417 mac 161417 bytes_out 0 161417 bytes_in 0 161417 station_ip 83.122.149.210 161417 port 339 161417 unique_id port 161417 remote_ip 10.8.1.142 161421 username hashtadani4 161421 mac 161421 bytes_out 0 161421 bytes_in 0 161421 station_ip 83.122.149.210 161421 port 685 161421 unique_id port 161421 remote_ip 10.8.0.182 161423 username hashtadani4 161423 mac 161423 bytes_out 0 161423 bytes_in 0 161423 station_ip 83.122.149.210 161423 port 676 161423 unique_id port 161423 remote_ip 10.8.0.182 161424 username hashtadani4 161424 mac 161424 bytes_out 0 161424 bytes_in 0 161424 station_ip 83.122.149.210 161424 port 676 161424 unique_id port 161424 remote_ip 10.8.0.182 161427 username milan 161427 mac 161427 bytes_out 0 161427 bytes_in 0 161427 station_ip 5.119.161.192 161427 port 675 161427 unique_id port 161429 username alikomsari 161429 mac 161429 bytes_out 2582851 161429 bytes_in 15105592 161429 station_ip 5.119.51.107 161429 port 673 161429 unique_id port 161429 remote_ip 10.8.0.26 161433 username hashtadani4 161433 mac 161433 bytes_out 0 161433 bytes_in 0 161433 station_ip 83.122.149.210 161433 port 653 161433 unique_id port 161433 remote_ip 10.8.0.182 161435 username kalantary 161435 mac 161435 bytes_out 914779 161435 bytes_in 5276717 161435 station_ip 83.122.77.8 161435 port 684 161435 unique_id port 161435 remote_ip 10.8.0.98 161439 username shadkam 161439 kill_reason Another user logged on this global unique id 161439 mac 161439 bytes_out 0 161439 bytes_in 0 161439 station_ip 83.122.12.101 161439 port 675 161439 unique_id port 161443 username shadkam 161443 kill_reason Maximum check online fails reached 161443 mac 161443 bytes_out 0 161443 bytes_in 0 161443 station_ip 83.122.12.101 161443 port 675 161443 unique_id port 161445 username hashtadani4 161445 mac 161445 bytes_out 0 161445 bytes_in 0 161445 station_ip 83.122.149.210 161445 port 675 161445 unique_id port 161445 remote_ip 10.8.0.182 161455 username malekpoir 161455 kill_reason Another user logged on this global unique id 161455 mac 161455 bytes_out 0 161455 bytes_in 0 161455 station_ip 5.120.106.99 161455 port 673 161455 unique_id port 161455 remote_ip 10.8.0.58 161457 username hashtadani4 161457 mac 161457 bytes_out 0 161457 bytes_in 0 161457 station_ip 83.122.149.210 161457 port 675 161457 unique_id port 161457 remote_ip 10.8.0.182 161459 username hashtadani4 161459 mac 161459 bytes_out 0 161459 bytes_in 0 161459 station_ip 83.122.149.210 161459 port 653 161459 unique_id port 161459 remote_ip 10.8.0.182 161461 username alipour 161461 mac 161461 bytes_out 870843 161461 bytes_in 9545362 161461 station_ip 83.122.235.114 161461 port 328 161461 unique_id port 161461 remote_ip 10.8.1.50 161464 username hashtadani4 161464 mac 161464 bytes_out 0 161464 bytes_in 0 161464 station_ip 83.122.149.210 161464 port 676 161464 unique_id port 161464 remote_ip 10.8.0.182 161472 username hashtadani4 161472 mac 161472 bytes_out 0 161472 bytes_in 0 161472 station_ip 83.122.149.210 161472 port 675 161472 unique_id port 161472 remote_ip 10.8.0.182 161476 username hashtadani4 161476 mac 161476 bytes_out 0 161476 bytes_in 0 161476 station_ip 83.122.149.210 161476 port 684 161476 unique_id port 161476 remote_ip 10.8.0.182 161480 username hashtadani4 161422 bytes_out 36679 161422 bytes_in 75510 161422 station_ip 83.122.68.152 161422 port 676 161422 unique_id port 161422 remote_ip 10.8.0.62 161426 username hashtadani4 161426 mac 161426 bytes_out 0 161426 bytes_in 0 161426 station_ip 83.122.149.210 161426 port 685 161426 unique_id port 161426 remote_ip 10.8.0.182 161428 username hashtadani4 161428 mac 161428 bytes_out 0 161428 bytes_in 0 161428 station_ip 83.122.149.210 161428 port 675 161428 unique_id port 161428 remote_ip 10.8.0.182 161430 username hashtadani4 161430 mac 161430 bytes_out 0 161430 bytes_in 0 161430 station_ip 83.122.149.210 161430 port 673 161430 unique_id port 161430 remote_ip 10.8.0.182 161432 username alipour 161432 mac 161432 bytes_out 0 161432 bytes_in 0 161432 station_ip 83.122.235.114 161432 port 328 161432 unique_id port 161432 remote_ip 10.8.1.50 161441 username hashtadani4 161441 mac 161441 bytes_out 0 161441 bytes_in 0 161441 station_ip 83.122.149.210 161441 port 673 161441 unique_id port 161441 remote_ip 10.8.0.182 161442 username hashtadani4 161442 mac 161442 bytes_out 0 161442 bytes_in 0 161442 station_ip 83.122.149.210 161442 port 673 161442 unique_id port 161442 remote_ip 10.8.0.182 161444 username alipour 161444 mac 161444 bytes_out 0 161444 bytes_in 0 161444 station_ip 83.122.235.114 161444 port 328 161444 unique_id port 161444 remote_ip 10.8.1.50 161447 username hashtadani4 161447 mac 161447 bytes_out 0 161447 bytes_in 0 161447 station_ip 83.122.149.210 161447 port 675 161447 unique_id port 161447 remote_ip 10.8.0.182 161448 username hashtadani4 161448 mac 161448 bytes_out 0 161448 bytes_in 0 161448 station_ip 83.122.149.210 161448 port 675 161448 unique_id port 161448 remote_ip 10.8.0.182 161451 username hashtadani4 161451 mac 161451 bytes_out 0 161451 bytes_in 0 161451 station_ip 83.122.149.210 161451 port 675 161451 unique_id port 161451 remote_ip 10.8.0.182 161458 username kalantary 161458 mac 161458 bytes_out 0 161458 bytes_in 0 161458 station_ip 83.122.77.8 161458 port 653 161458 unique_id port 161458 remote_ip 10.8.0.98 161460 username hashtadani4 161460 mac 161460 bytes_out 0 161460 bytes_in 0 161460 station_ip 83.122.149.210 161460 port 653 161460 unique_id port 161460 remote_ip 10.8.0.182 161463 username hashtadani4 161463 mac 161463 bytes_out 0 161463 bytes_in 0 161463 station_ip 83.122.149.210 161463 port 675 161463 unique_id port 161463 remote_ip 10.8.0.182 161465 username hashtadani4 161465 mac 161465 bytes_out 0 161465 bytes_in 0 161465 station_ip 83.122.149.210 161465 port 684 161465 unique_id port 161465 remote_ip 10.8.0.182 161467 username hashtadani4 161467 mac 161467 bytes_out 0 161467 bytes_in 0 161467 station_ip 83.122.149.210 161467 port 684 161467 unique_id port 161467 remote_ip 10.8.0.182 161468 username hashtadani4 161468 mac 161468 bytes_out 0 161468 bytes_in 0 161468 station_ip 83.122.149.210 161468 port 339 161468 unique_id port 161468 remote_ip 10.8.1.142 161470 username hashtadani4 161470 mac 161470 bytes_out 0 161470 bytes_in 0 161470 station_ip 83.122.149.210 161470 port 675 161470 unique_id port 161470 remote_ip 10.8.0.182 161471 username jafari 161471 mac 161471 bytes_out 433199 161471 bytes_in 4129857 161471 station_ip 5.134.143.111 161471 port 328 161471 unique_id port 161471 remote_ip 10.8.1.198 161479 username hashtadani4 161479 mac 161479 bytes_out 0 161479 bytes_in 0 161453 username hashtadani4 161453 mac 161453 bytes_out 0 161453 bytes_in 0 161453 station_ip 83.122.149.210 161453 port 675 161453 unique_id port 161453 remote_ip 10.8.0.182 161454 username hashtadani4 161454 mac 161454 bytes_out 0 161454 bytes_in 0 161454 station_ip 83.122.149.210 161454 port 675 161454 unique_id port 161454 remote_ip 10.8.0.182 161456 username hashtadani4 161456 mac 161456 bytes_out 0 161456 bytes_in 0 161456 station_ip 83.122.149.210 161456 port 675 161456 unique_id port 161456 remote_ip 10.8.0.182 161462 username hashtadani4 161462 mac 161462 bytes_out 0 161462 bytes_in 0 161462 station_ip 83.122.149.210 161462 port 675 161462 unique_id port 161462 remote_ip 10.8.0.182 161466 username hashtadani4 161466 mac 161466 bytes_out 0 161466 bytes_in 0 161466 station_ip 83.122.149.210 161466 port 684 161466 unique_id port 161466 remote_ip 10.8.0.182 161469 username vanila 161469 mac 161469 bytes_out 0 161469 bytes_in 0 161469 station_ip 37.129.51.103 161469 port 675 161469 unique_id port 161469 remote_ip 10.8.0.178 161473 username hashtadani4 161473 mac 161473 bytes_out 0 161473 bytes_in 0 161473 station_ip 83.122.149.210 161473 port 675 161473 unique_id port 161473 remote_ip 10.8.0.182 161474 username hashtadani4 161474 mac 161474 bytes_out 0 161474 bytes_in 0 161474 station_ip 83.122.149.210 161474 port 684 161474 unique_id port 161474 remote_ip 10.8.0.182 161475 username hashtadani4 161475 mac 161475 bytes_out 0 161475 bytes_in 0 161475 station_ip 83.122.149.210 161475 port 684 161475 unique_id port 161475 remote_ip 10.8.0.182 161477 username khalili 161477 kill_reason Another user logged on this global unique id 161477 mac 161477 bytes_out 0 161477 bytes_in 0 161477 station_ip 5.119.240.171 161477 port 340 161477 unique_id port 161478 username hashtadani4 161478 mac 161478 bytes_out 0 161478 bytes_in 0 161478 station_ip 83.122.149.210 161478 port 685 161478 unique_id port 161478 remote_ip 10.8.0.182 161481 username mahdiyehalizadeh 161481 mac 161481 bytes_out 0 161481 bytes_in 0 161481 station_ip 5.120.36.192 161481 port 676 161481 unique_id port 161481 remote_ip 10.8.0.82 161484 username hashtadani4 161484 mac 161484 bytes_out 0 161484 bytes_in 0 161484 station_ip 83.122.149.210 161484 port 676 161484 unique_id port 161484 remote_ip 10.8.0.182 161486 username hashtadani4 161486 mac 161486 bytes_out 0 161486 bytes_in 0 161486 station_ip 83.122.149.210 161486 port 676 161486 unique_id port 161486 remote_ip 10.8.0.182 161487 username zotaher 161487 kill_reason Another user logged on this global unique id 161487 mac 161487 bytes_out 0 161487 bytes_in 0 161487 station_ip 83.122.99.195 161487 port 684 161487 unique_id port 161487 remote_ip 10.8.0.194 161488 username alipour 161488 mac 161488 bytes_out 0 161488 bytes_in 0 161488 station_ip 83.122.235.114 161488 port 653 161488 unique_id port 161488 remote_ip 10.8.0.102 161497 username hashtadani4 161497 mac 161497 bytes_out 0 161497 bytes_in 0 161497 station_ip 83.122.149.210 161497 port 687 161497 unique_id port 161497 remote_ip 10.8.0.182 161498 username hashtadani4 161498 mac 161498 bytes_out 0 161498 bytes_in 0 161498 station_ip 83.122.149.210 161498 port 687 161498 unique_id port 161498 remote_ip 10.8.0.182 161500 username hashtadani4 161500 mac 161500 bytes_out 0 161500 bytes_in 0 161500 station_ip 83.122.149.210 161500 port 676 161500 unique_id port 161500 remote_ip 10.8.0.182 161479 station_ip 83.122.149.210 161479 port 685 161479 unique_id port 161479 remote_ip 10.8.0.182 161482 username hashtadani4 161482 mac 161482 bytes_out 0 161482 bytes_in 0 161482 station_ip 83.122.149.210 161482 port 328 161482 unique_id port 161482 remote_ip 10.8.1.142 161492 username hashtadani4 161492 mac 161492 bytes_out 0 161492 bytes_in 0 161492 station_ip 83.122.149.210 161492 port 328 161492 unique_id port 161492 remote_ip 10.8.1.142 161494 username hashtadani4 161494 mac 161494 bytes_out 0 161494 bytes_in 0 161494 station_ip 83.122.149.210 161494 port 676 161494 unique_id port 161494 remote_ip 10.8.0.182 161506 username zotaher 161506 kill_reason Another user logged on this global unique id 161506 mac 161506 bytes_out 0 161506 bytes_in 0 161506 station_ip 83.122.99.195 161506 port 684 161506 unique_id port 161512 username reza2742 161512 kill_reason Relative expiration date has reached 161512 unique_id port 161512 bytes_out 0 161512 bytes_in 0 161512 station_ip 151.235.78.222 161512 port 15728641 161512 nas_port_type Virtual 161513 username reza2742 161513 kill_reason Relative expiration date has reached 161513 unique_id port 161513 bytes_out 0 161513 bytes_in 0 161513 station_ip 151.235.78.222 161513 port 15728642 161513 nas_port_type Virtual 161514 username zotaher 161514 kill_reason Another user logged on this global unique id 161514 mac 161514 bytes_out 0 161514 bytes_in 0 161514 station_ip 83.122.99.195 161514 port 684 161514 unique_id port 161515 username vanila 161515 mac 161515 bytes_out 1405142 161515 bytes_in 17250315 161515 station_ip 37.129.51.103 161515 port 687 161515 unique_id port 161515 remote_ip 10.8.0.178 161517 username nilufarrajaei 161517 kill_reason Another user logged on this global unique id 161517 mac 161517 bytes_out 0 161517 bytes_in 0 161517 station_ip 37.129.137.44 161517 port 675 161517 unique_id port 161517 remote_ip 10.8.0.206 161519 username ahmadi1 161519 mac 161519 bytes_out 0 161519 bytes_in 0 161519 station_ip 83.122.242.149 161519 port 676 161519 unique_id port 161519 remote_ip 10.8.0.250 161522 username jamali 161522 mac 161522 bytes_out 0 161522 bytes_in 0 161522 station_ip 5.119.62.17 161522 port 691 161522 unique_id port 161522 remote_ip 10.8.0.70 161524 username mohsenaskari 161524 mac 161524 bytes_out 0 161524 bytes_in 0 161524 station_ip 46.225.212.232 161524 port 648 161524 unique_id port 161524 remote_ip 10.8.0.170 161528 username sabaghnezhad 161528 mac 161528 bytes_out 91444 161528 bytes_in 75439 161528 station_ip 83.123.104.217 161528 port 339 161528 unique_id port 161528 remote_ip 10.8.1.130 161533 username zotaher 161533 mac 161533 bytes_out 0 161533 bytes_in 0 161533 station_ip 83.122.99.195 161533 port 684 161533 unique_id port 161534 username jamali 161534 mac 161534 bytes_out 0 161534 bytes_in 0 161534 station_ip 5.119.62.17 161534 port 692 161534 unique_id port 161534 remote_ip 10.8.0.70 161537 username sedighe 161537 mac 161537 bytes_out 126621 161537 bytes_in 269868 161537 station_ip 83.122.158.90 161537 port 676 161537 unique_id port 161537 remote_ip 10.8.0.146 161545 username hashtadani4 161545 mac 161545 bytes_out 0 161545 bytes_in 0 161545 station_ip 5.202.7.248 161545 port 351 161545 unique_id port 161545 remote_ip 10.8.1.142 161546 username hashtadani4 161546 mac 161546 bytes_out 0 161546 bytes_in 0 161546 station_ip 5.202.7.248 161546 port 351 161546 unique_id port 161546 remote_ip 10.8.1.142 161548 username sabaghnezhad 161548 mac 161480 mac 161480 bytes_out 0 161480 bytes_in 0 161480 station_ip 83.122.149.210 161480 port 687 161480 unique_id port 161480 remote_ip 10.8.0.182 161483 username hashtadani4 161483 mac 161483 bytes_out 0 161483 bytes_in 0 161483 station_ip 83.122.149.210 161483 port 328 161483 unique_id port 161483 remote_ip 10.8.1.142 161485 username mirzaei 161485 kill_reason Another user logged on this global unique id 161485 mac 161485 bytes_out 0 161485 bytes_in 0 161485 station_ip 5.119.180.17 161485 port 677 161485 unique_id port 161485 remote_ip 10.8.0.66 161489 username zotaher 161489 kill_reason Another user logged on this global unique id 161489 mac 161489 bytes_out 0 161489 bytes_in 0 161489 station_ip 83.122.99.195 161489 port 684 161489 unique_id port 161490 username kalantary 161490 mac 161490 bytes_out 1081113 161490 bytes_in 10022509 161490 station_ip 83.122.119.248 161490 port 685 161490 unique_id port 161490 remote_ip 10.8.0.98 161491 username alipour 161491 mac 161491 bytes_out 0 161491 bytes_in 0 161491 station_ip 83.122.235.114 161491 port 676 161491 unique_id port 161491 remote_ip 10.8.0.102 161493 username hashtadani4 161493 mac 161493 bytes_out 0 161493 bytes_in 0 161493 station_ip 83.122.149.210 161493 port 676 161493 unique_id port 161493 remote_ip 10.8.0.182 161495 username meysam 161495 kill_reason Another user logged on this global unique id 161495 mac 161495 bytes_out 0 161495 bytes_in 0 161495 station_ip 188.159.252.1 161495 port 653 161495 unique_id port 161495 remote_ip 10.8.0.110 161496 username hashtadani4 161496 mac 161496 bytes_out 0 161496 bytes_in 0 161496 station_ip 83.122.149.210 161496 port 687 161496 unique_id port 161496 remote_ip 10.8.0.182 161499 username sedighe 161499 mac 161499 bytes_out 0 161499 bytes_in 0 161499 station_ip 113.203.121.112 161499 port 676 161499 unique_id port 161499 remote_ip 10.8.0.146 161502 username hashtadani4 161502 mac 161502 bytes_out 0 161502 bytes_in 0 161502 station_ip 83.122.149.210 161502 port 676 161502 unique_id port 161502 remote_ip 10.8.0.182 161504 username sedighe 161504 mac 161504 bytes_out 101333 161504 bytes_in 253183 161504 station_ip 113.203.121.112 161504 port 687 161504 unique_id port 161504 remote_ip 10.8.0.146 161505 username hashtadani4 161505 mac 161505 bytes_out 0 161505 bytes_in 0 161505 station_ip 83.122.149.210 161505 port 687 161505 unique_id port 161505 remote_ip 10.8.0.182 161507 username alipour 161507 mac 161507 bytes_out 20484 161507 bytes_in 29941 161507 station_ip 83.122.236.18 161507 port 687 161507 unique_id port 161507 remote_ip 10.8.0.102 161510 username kordestani 161510 mac 161510 bytes_out 1639795 161510 bytes_in 26047939 161510 station_ip 151.235.101.201 161510 port 689 161510 unique_id port 161510 remote_ip 10.8.0.74 161511 username malekpoir 161511 kill_reason Another user logged on this global unique id 161511 mac 161511 bytes_out 0 161511 bytes_in 0 161511 station_ip 5.120.106.99 161511 port 673 161511 unique_id port 161520 username ahmadi1 161520 mac 161520 bytes_out 0 161520 bytes_in 0 161520 station_ip 83.122.242.149 161520 port 691 161520 unique_id port 161520 remote_ip 10.8.0.250 161525 username forozandeh1 161525 mac 161525 bytes_out 0 161525 bytes_in 0 161525 station_ip 83.122.77.43 161525 port 690 161525 unique_id port 161527 username yaghobi 161527 mac 161527 bytes_out 444324 161527 bytes_in 3763164 161527 station_ip 83.122.113.15 161527 port 687 161527 unique_id port 161501 username hashtadani4 161501 mac 161501 bytes_out 0 161501 bytes_in 0 161501 station_ip 83.122.149.210 161501 port 676 161501 unique_id port 161501 remote_ip 10.8.0.182 161503 username hashtadani4 161503 mac 161503 bytes_out 0 161503 bytes_in 0 161503 station_ip 83.122.149.210 161503 port 688 161503 unique_id port 161503 remote_ip 10.8.0.182 161508 username meysam 161508 mac 161508 bytes_out 0 161508 bytes_in 0 161508 station_ip 188.159.252.1 161508 port 653 161508 unique_id port 161509 username forozandeh1 161509 mac 161509 bytes_out 0 161509 bytes_in 0 161509 station_ip 83.122.159.155 161509 port 689 161509 unique_id port 161509 remote_ip 10.8.0.130 161516 username yaghobi 161516 mac 161516 bytes_out 0 161516 bytes_in 0 161516 station_ip 37.129.141.111 161516 port 676 161516 unique_id port 161516 remote_ip 10.8.0.198 161518 username forozandeh1 161518 kill_reason Another user logged on this global unique id 161518 mac 161518 bytes_out 0 161518 bytes_in 0 161518 station_ip 83.122.77.43 161518 port 690 161518 unique_id port 161518 remote_ip 10.8.0.130 161521 username jamali 161521 mac 161521 bytes_out 0 161521 bytes_in 0 161521 station_ip 5.119.62.17 161521 port 648 161521 unique_id port 161523 username zotaher 161523 kill_reason Another user logged on this global unique id 161523 mac 161523 bytes_out 0 161523 bytes_in 0 161523 station_ip 83.122.99.195 161523 port 684 161523 unique_id port 161526 username sabaghnezhad 161526 mac 161526 bytes_out 232918 161526 bytes_in 306314 161526 station_ip 83.123.104.217 161526 port 688 161526 unique_id port 161526 remote_ip 10.8.0.186 161529 username ahmadi1 161529 mac 161529 bytes_out 0 161529 bytes_in 0 161529 station_ip 83.122.242.149 161529 port 688 161529 unique_id port 161529 remote_ip 10.8.0.250 161536 username sabaghnezhad 161536 mac 161536 bytes_out 35847 161536 bytes_in 50639 161536 station_ip 83.123.104.217 161536 port 648 161536 unique_id port 161536 remote_ip 10.8.0.186 161540 username hashtadani4 161540 mac 161540 bytes_out 0 161540 bytes_in 0 161540 station_ip 83.122.149.210 161540 port 648 161540 unique_id port 161540 remote_ip 10.8.0.182 161542 username hashtadani4 161542 mac 161542 bytes_out 17403 161542 bytes_in 92363 161542 station_ip 5.202.7.248 161542 port 653 161542 unique_id port 161542 remote_ip 10.8.0.182 161543 username kordestani 161543 mac 161543 bytes_out 2614427 161543 bytes_in 44668493 161543 station_ip 151.235.101.201 161543 port 689 161543 unique_id port 161543 remote_ip 10.8.0.74 161547 username godarzi 161547 mac 161547 bytes_out 6009429 161547 bytes_in 34631738 161547 station_ip 5.202.6.91 161547 port 685 161547 unique_id port 161547 remote_ip 10.8.0.174 161551 username hatami 161551 mac 161551 bytes_out 1030522 161551 bytes_in 17056819 161551 station_ip 94.241.179.77 161551 port 648 161551 unique_id port 161551 remote_ip 10.8.0.106 161554 username sabaghnezhad 161554 mac 161554 bytes_out 7256 161554 bytes_in 10973 161554 station_ip 83.123.104.217 161554 port 653 161554 unique_id port 161554 remote_ip 10.8.0.186 161564 username sabaghnezhad 161564 mac 161564 bytes_out 16283 161564 bytes_in 18008 161564 station_ip 83.123.104.217 161564 port 653 161564 unique_id port 161564 remote_ip 10.8.0.186 161565 username jamali 161565 mac 161565 bytes_out 27652 161565 bytes_in 46071 161565 station_ip 5.119.62.17 161565 port 684 161565 unique_id port 161565 remote_ip 10.8.0.70 161566 username vanila 161527 remote_ip 10.8.0.198 161530 username zotaher 161530 kill_reason Another user logged on this global unique id 161530 mac 161530 bytes_out 0 161530 bytes_in 0 161530 station_ip 83.122.99.195 161530 port 684 161530 unique_id port 161531 username hashtadani4 161531 mac 161531 bytes_out 0 161531 bytes_in 0 161531 station_ip 83.122.149.210 161531 port 328 161531 unique_id port 161531 remote_ip 10.8.1.142 161532 username forozandeh1 161532 mac 161532 bytes_out 1009041 161532 bytes_in 8547115 161532 station_ip 83.123.162.27 161532 port 687 161532 unique_id port 161532 remote_ip 10.8.0.130 161535 username alipour 161535 mac 161535 bytes_out 88284 161535 bytes_in 734951 161535 station_ip 83.122.236.18 161535 port 653 161535 unique_id port 161535 remote_ip 10.8.0.102 161538 username nilufarrajaei 161538 kill_reason Another user logged on this global unique id 161538 mac 161538 bytes_out 0 161538 bytes_in 0 161538 station_ip 37.129.137.44 161538 port 675 161538 unique_id port 161539 username hashtadani4 161539 mac 161539 bytes_out 0 161539 bytes_in 0 161539 station_ip 83.122.149.210 161539 port 351 161539 unique_id port 161539 remote_ip 10.8.1.142 161541 username hashtadani4 161541 mac 161541 bytes_out 0 161541 bytes_in 0 161541 station_ip 83.122.149.210 161541 port 648 161541 unique_id port 161541 remote_ip 10.8.0.182 161544 username hashtadani4 161544 mac 161544 bytes_out 0 161544 bytes_in 0 161544 station_ip 5.202.7.248 161544 port 351 161544 unique_id port 161544 remote_ip 10.8.1.142 161550 username nilufarrajaei 161550 kill_reason Another user logged on this global unique id 161550 mac 161550 bytes_out 0 161550 bytes_in 0 161550 station_ip 37.129.137.44 161550 port 675 161550 unique_id port 161552 username hashtadani4 161552 mac 161552 bytes_out 0 161552 bytes_in 0 161552 station_ip 5.202.7.248 161552 port 351 161552 unique_id port 161552 remote_ip 10.8.1.142 161557 username alipour 161557 mac 161557 bytes_out 0 161557 bytes_in 0 161557 station_ip 83.122.236.18 161557 port 328 161557 unique_id port 161557 remote_ip 10.8.1.50 161560 username hashtadani4 161560 mac 161560 bytes_out 0 161560 bytes_in 0 161560 station_ip 83.122.79.98 161560 port 328 161560 unique_id port 161560 remote_ip 10.8.1.142 161561 username hashtadani4 161561 mac 161561 bytes_out 0 161561 bytes_in 0 161561 station_ip 5.202.7.248 161561 port 328 161561 unique_id port 161561 remote_ip 10.8.1.142 161568 username jamali 161568 mac 161568 bytes_out 8111 161568 bytes_in 14889 161568 station_ip 5.119.62.17 161568 port 653 161568 unique_id port 161568 remote_ip 10.8.0.70 161577 username hashtadani4 161577 mac 161577 bytes_out 0 161577 bytes_in 0 161577 station_ip 5.202.7.248 161577 port 328 161577 unique_id port 161577 remote_ip 10.8.1.142 161578 username hashtadani4 161578 mac 161578 bytes_out 0 161578 bytes_in 0 161578 station_ip 5.202.7.248 161578 port 328 161578 unique_id port 161578 remote_ip 10.8.1.142 161580 username ahmadi1 161580 mac 161580 bytes_out 0 161580 bytes_in 0 161580 station_ip 83.122.242.149 161580 port 684 161580 unique_id port 161580 remote_ip 10.8.0.250 161583 username khalili 161583 kill_reason Another user logged on this global unique id 161583 mac 161583 bytes_out 0 161583 bytes_in 0 161583 station_ip 5.119.240.171 161583 port 340 161583 unique_id port 161584 username rezaei 161584 mac 161584 bytes_out 668550 161584 bytes_in 6223169 161584 station_ip 5.119.53.117 161584 port 653 161548 bytes_out 0 161548 bytes_in 0 161548 station_ip 83.123.104.217 161548 port 339 161548 unique_id port 161548 remote_ip 10.8.1.130 161549 username forozandeh1 161549 mac 161549 bytes_out 700456 161549 bytes_in 5858284 161549 station_ip 37.129.3.40 161549 port 653 161549 unique_id port 161549 remote_ip 10.8.0.130 161553 username kordestani 161553 mac 161553 bytes_out 0 161553 bytes_in 0 161553 station_ip 151.235.101.201 161553 port 339 161553 unique_id port 161553 remote_ip 10.8.1.98 161555 username hashtadani4 161555 mac 161555 bytes_out 0 161555 bytes_in 0 161555 station_ip 83.122.79.98 161555 port 339 161555 unique_id port 161555 remote_ip 10.8.1.142 161556 username kalantary 161556 mac 161556 bytes_out 95458 161556 bytes_in 241951 161556 station_ip 83.122.144.99 161556 port 685 161556 unique_id port 161556 remote_ip 10.8.0.98 161558 username meysam 161558 mac 161558 bytes_out 663319 161558 bytes_in 10027493 161558 station_ip 188.159.252.1 161558 port 676 161558 unique_id port 161558 remote_ip 10.8.0.110 161559 username sabaghnezhad 161559 mac 161559 bytes_out 0 161559 bytes_in 0 161559 station_ip 83.123.104.217 161559 port 339 161559 unique_id port 161559 remote_ip 10.8.1.130 161562 username sedighe 161562 mac 161562 bytes_out 7936 161562 bytes_in 15616 161562 station_ip 37.129.113.174 161562 port 653 161562 unique_id port 161562 remote_ip 10.8.0.146 161563 username hashtadani4 161563 mac 161563 bytes_out 0 161563 bytes_in 0 161563 station_ip 5.202.7.248 161563 port 690 161563 unique_id port 161563 remote_ip 10.8.0.182 161567 username yaghobi 161567 mac 161567 bytes_out 1277955 161567 bytes_in 13272569 161567 station_ip 83.122.159.158 161567 port 676 161567 unique_id port 161567 remote_ip 10.8.0.198 161570 username hashtadani4 161570 mac 161570 bytes_out 8170 161570 bytes_in 9458 161570 station_ip 5.202.7.248 161570 port 653 161570 unique_id port 161570 remote_ip 10.8.0.182 161571 username hashtadani4 161571 mac 161571 bytes_out 0 161571 bytes_in 0 161571 station_ip 5.202.7.248 161571 port 653 161571 unique_id port 161571 remote_ip 10.8.0.182 161574 username hashtadani4 161574 mac 161574 bytes_out 0 161574 bytes_in 0 161574 station_ip 5.202.7.248 161574 port 653 161574 unique_id port 161574 remote_ip 10.8.0.182 161581 username jamali 161581 mac 161581 bytes_out 0 161581 bytes_in 0 161581 station_ip 5.119.62.17 161581 port 676 161581 unique_id port 161581 remote_ip 10.8.0.70 161586 username hashtadani4 161586 mac 161586 bytes_out 0 161586 bytes_in 0 161586 station_ip 5.202.7.248 161586 port 328 161586 unique_id port 161586 remote_ip 10.8.1.142 161588 username hashtadani4 161588 kill_reason Maximum check online fails reached 161588 mac 161588 bytes_out 0 161588 bytes_in 0 161588 station_ip 5.202.7.248 161588 port 684 161588 unique_id port 161594 username jamali 161594 mac 161594 bytes_out 0 161594 bytes_in 0 161594 station_ip 5.119.62.17 161594 port 685 161594 unique_id port 161594 remote_ip 10.8.0.70 161597 username hashtadani4 161597 kill_reason Another user logged on this global unique id 161597 mac 161597 bytes_out 0 161597 bytes_in 0 161597 station_ip 5.202.7.248 161597 port 328 161597 unique_id port 161597 remote_ip 10.8.1.142 161602 username hashtadani4 161602 mac 161602 bytes_out 0 161602 bytes_in 0 161602 station_ip 5.202.7.248 161602 port 328 161602 unique_id port 161606 username hashtadani4 161606 kill_reason Maximum check online fails reached 161606 mac 161566 mac 161566 bytes_out 0 161566 bytes_in 0 161566 station_ip 37.129.56.99 161566 port 689 161566 unique_id port 161566 remote_ip 10.8.0.178 161569 username hashtadani4 161569 mac 161569 bytes_out 0 161569 bytes_in 0 161569 station_ip 5.202.7.248 161569 port 653 161569 unique_id port 161569 remote_ip 10.8.0.182 161572 username alipour 161572 mac 161572 bytes_out 0 161572 bytes_in 0 161572 station_ip 83.122.236.18 161572 port 685 161572 unique_id port 161572 remote_ip 10.8.0.102 161573 username hashtadani4 161573 mac 161573 bytes_out 0 161573 bytes_in 0 161573 station_ip 5.202.7.248 161573 port 653 161573 unique_id port 161573 remote_ip 10.8.0.182 161575 username vanila 161575 mac 161575 bytes_out 523529 161575 bytes_in 2479081 161575 station_ip 37.129.56.99 161575 port 684 161575 unique_id port 161575 remote_ip 10.8.0.178 161576 username hashtadani4 161576 mac 161576 bytes_out 0 161576 bytes_in 0 161576 station_ip 5.202.7.248 161576 port 653 161576 unique_id port 161576 remote_ip 10.8.0.182 161579 username hashtadani4 161579 mac 161579 bytes_out 0 161579 bytes_in 0 161579 station_ip 5.202.7.248 161579 port 328 161579 unique_id port 161579 remote_ip 10.8.1.142 161582 username hashtadani4 161582 mac 161582 bytes_out 0 161582 bytes_in 0 161582 station_ip 5.202.7.248 161582 port 684 161582 unique_id port 161582 remote_ip 10.8.0.182 161585 username hashtadani4 161585 mac 161585 bytes_out 0 161585 bytes_in 0 161585 station_ip 5.202.7.248 161585 port 653 161585 unique_id port 161585 remote_ip 10.8.0.182 161589 username mohammadjavad 161589 mac 161589 bytes_out 0 161589 bytes_in 0 161589 station_ip 113.203.92.1 161589 port 653 161589 unique_id port 161589 remote_ip 10.8.0.142 161592 username mamal 161592 kill_reason Relative expiration date has reached 161592 unique_id port 161592 bytes_out 0 161592 bytes_in 0 161592 station_ip 83.122.99.43 161592 port 15728645 161592 nas_port_type Virtual 161595 username khalili 161595 kill_reason Another user logged on this global unique id 161595 mac 161595 bytes_out 0 161595 bytes_in 0 161595 station_ip 5.119.240.171 161595 port 340 161595 unique_id port 161596 username jamali 161596 mac 161596 bytes_out 0 161596 bytes_in 0 161596 station_ip 5.119.62.17 161596 port 648 161596 unique_id port 161596 remote_ip 10.8.0.70 161599 username ahmadi1 161599 mac 161599 bytes_out 0 161599 bytes_in 0 161599 station_ip 83.122.242.149 161599 port 653 161599 unique_id port 161599 remote_ip 10.8.0.250 161610 username nilufarrajaei 161610 mac 161610 bytes_out 0 161610 bytes_in 0 161610 station_ip 37.129.137.44 161610 port 675 161610 unique_id port 161611 username hashtadani4 161611 mac 161611 bytes_out 0 161611 bytes_in 0 161611 station_ip 5.202.7.248 161611 port 676 161611 unique_id port 161611 remote_ip 10.8.0.182 161612 username godarzi 161612 mac 161612 bytes_out 632168 161612 bytes_in 6157972 161612 station_ip 5.202.6.91 161612 port 648 161612 unique_id port 161612 remote_ip 10.8.0.174 161616 username hashtadani4 161616 mac 161616 bytes_out 0 161616 bytes_in 0 161616 station_ip 5.202.7.248 161616 port 688 161616 unique_id port 161616 remote_ip 10.8.0.182 161623 username hashtadani4 161623 mac 161623 bytes_out 0 161623 bytes_in 0 161623 station_ip 5.202.7.248 161623 port 689 161623 unique_id port 161623 remote_ip 10.8.0.182 161626 username khalili 161626 mac 161626 bytes_out 1407916 161626 bytes_in 19961857 161584 unique_id port 161584 remote_ip 10.8.0.230 161587 username hashtadani4 161587 mac 161587 bytes_out 0 161587 bytes_in 0 161587 station_ip 5.202.7.248 161587 port 328 161587 unique_id port 161587 remote_ip 10.8.1.142 161590 username ahmadi1 161590 mac 161590 bytes_out 0 161590 bytes_in 0 161590 station_ip 83.122.242.149 161590 port 676 161590 unique_id port 161590 remote_ip 10.8.0.250 161591 username mamal 161591 kill_reason Relative expiration date has reached 161591 unique_id port 161591 bytes_out 0 161591 bytes_in 0 161591 station_ip 83.122.99.43 161591 port 15728644 161591 nas_port_type Virtual 161593 username godarzi 161593 mac 161593 bytes_out 0 161593 bytes_in 0 161593 station_ip 5.202.6.91 161593 port 648 161593 unique_id port 161593 remote_ip 10.8.0.174 161598 username aminvpn 161598 unique_id port 161598 terminate_cause User-Request 161598 bytes_out 11348627 161598 bytes_in 355845825 161598 station_ip 31.57.128.87 161598 port 15728643 161598 nas_port_type Virtual 161598 remote_ip 5.5.5.252 161600 username khalili 161600 mac 161600 bytes_out 0 161600 bytes_in 0 161600 station_ip 5.119.240.171 161600 port 340 161600 unique_id port 161601 username aminvpn 161601 mac 161601 bytes_out 2127452 161601 bytes_in 7273200 161601 station_ip 83.122.120.158 161601 port 687 161601 unique_id port 161601 remote_ip 10.8.0.14 161603 username hashtadani4 161603 mac 161603 bytes_out 0 161603 bytes_in 0 161603 station_ip 5.202.7.248 161603 port 328 161603 unique_id port 161603 remote_ip 10.8.1.142 161604 username jamali 161604 mac 161604 bytes_out 0 161604 bytes_in 0 161604 station_ip 5.119.62.17 161604 port 648 161604 unique_id port 161604 remote_ip 10.8.0.70 161605 username hashtadani4 161605 mac 161605 bytes_out 0 161605 bytes_in 0 161605 station_ip 5.202.7.248 161605 port 328 161605 unique_id port 161605 remote_ip 10.8.1.142 161607 username hashtadani4 161607 mac 161607 bytes_out 0 161607 bytes_in 0 161607 station_ip 5.202.7.248 161607 port 648 161607 unique_id port 161607 remote_ip 10.8.0.182 161609 username hashtadani4 161609 mac 161609 bytes_out 0 161609 bytes_in 0 161609 station_ip 5.202.7.248 161609 port 676 161609 unique_id port 161609 remote_ip 10.8.0.182 161615 username Mahin 161615 mac 161615 bytes_out 0 161615 bytes_in 0 161615 station_ip 5.120.153.117 161615 port 688 161615 unique_id port 161615 remote_ip 10.8.0.162 161617 username alirezazadeh 161617 unique_id port 161617 terminate_cause User-Request 161617 bytes_out 987842 161617 bytes_in 5095272 161617 station_ip 31.56.223.188 161617 port 15728646 161617 nas_port_type Virtual 161617 remote_ip 5.5.5.250 161620 username hashtadani4 161620 mac 161620 bytes_out 0 161620 bytes_in 0 161620 station_ip 5.202.7.248 161620 port 688 161620 unique_id port 161620 remote_ip 10.8.0.182 161621 username hashtadani4 161621 mac 161621 bytes_out 0 161621 bytes_in 0 161621 station_ip 5.202.7.248 161621 port 688 161621 unique_id port 161621 remote_ip 10.8.0.182 161622 username jamali 161622 mac 161622 bytes_out 50583 161622 bytes_in 99516 161622 station_ip 5.119.86.183 161622 port 328 161622 unique_id port 161622 remote_ip 10.8.1.82 161627 username tahmasebi 161627 mac 161627 bytes_out 0 161627 bytes_in 0 161627 station_ip 5.119.190.34 161627 port 648 161627 unique_id port 161627 remote_ip 10.8.0.42 161628 username godarzi 161628 mac 161628 bytes_out 0 161628 bytes_in 0 161628 station_ip 5.202.6.91 161628 port 685 161606 bytes_out 0 161606 bytes_in 0 161606 station_ip 5.202.7.248 161606 port 653 161606 unique_id port 161608 username hashtadani4 161608 mac 161608 bytes_out 0 161608 bytes_in 0 161608 station_ip 5.202.7.248 161608 port 676 161608 unique_id port 161608 remote_ip 10.8.0.182 161613 username hashtadani4 161613 mac 161613 bytes_out 0 161613 bytes_in 0 161613 station_ip 5.202.7.248 161613 port 351 161613 unique_id port 161613 remote_ip 10.8.1.142 161614 username hashtadani4 161614 kill_reason Maximum check online fails reached 161614 mac 161614 bytes_out 0 161614 bytes_in 0 161614 station_ip 5.202.7.248 161614 port 676 161614 unique_id port 161618 username hashtadani4 161618 mac 161618 bytes_out 0 161618 bytes_in 0 161618 station_ip 5.202.7.248 161618 port 688 161618 unique_id port 161618 remote_ip 10.8.0.182 161619 username hashtadani4 161619 mac 161619 bytes_out 0 161619 bytes_in 0 161619 station_ip 5.202.7.248 161619 port 688 161619 unique_id port 161619 remote_ip 10.8.0.182 161624 username hashtadani4 161624 mac 161624 bytes_out 0 161624 bytes_in 0 161624 station_ip 5.202.7.248 161624 port 689 161624 unique_id port 161624 remote_ip 10.8.0.182 161625 username hashtadani4 161625 mac 161625 bytes_out 0 161625 bytes_in 0 161625 station_ip 5.202.7.248 161625 port 689 161625 unique_id port 161625 remote_ip 10.8.0.182 161629 username hashtadani4 161629 kill_reason Maximum check online fails reached 161629 mac 161629 bytes_out 0 161629 bytes_in 0 161629 station_ip 5.202.7.248 161629 port 690 161629 unique_id port 161631 username Mahin 161631 mac 161631 bytes_out 0 161631 bytes_in 0 161631 station_ip 5.120.153.117 161631 port 687 161631 unique_id port 161631 remote_ip 10.8.0.162 161637 username hashtadani4 161637 mac 161637 bytes_out 0 161637 bytes_in 0 161637 station_ip 113.203.51.172 161637 port 687 161637 unique_id port 161637 remote_ip 10.8.0.182 161638 username hashtadani4 161638 kill_reason Maximum check online fails reached 161638 mac 161638 bytes_out 0 161638 bytes_in 0 161638 station_ip 113.203.51.172 161638 port 687 161638 unique_id port 161639 username hashtadani4 161639 kill_reason Maximum check online fails reached 161639 mac 161639 bytes_out 0 161639 bytes_in 0 161639 station_ip 113.203.51.172 161639 port 691 161639 unique_id port 161641 username hashtadani4 161641 kill_reason Maximum check online fails reached 161641 mac 161641 bytes_out 0 161641 bytes_in 0 161641 station_ip 113.203.51.172 161641 port 692 161641 unique_id port 161643 username hashtadani4 161643 kill_reason Maximum check online fails reached 161643 mac 161643 bytes_out 0 161643 bytes_in 0 161643 station_ip 113.203.51.172 161643 port 694 161643 unique_id port 161645 username Mahin 161645 mac 161645 bytes_out 554662 161645 bytes_in 7942078 161645 station_ip 5.120.153.117 161645 port 352 161645 unique_id port 161645 remote_ip 10.8.1.186 161646 username kordestani 161646 mac 161646 bytes_out 0 161646 bytes_in 0 161646 station_ip 151.235.101.201 161646 port 685 161646 unique_id port 161646 remote_ip 10.8.0.74 161647 username tahmasebi 161647 mac 161647 bytes_out 403492 161647 bytes_in 144155 161647 station_ip 5.119.68.191 161647 port 340 161647 unique_id port 161647 remote_ip 10.8.1.90 161649 username tahmasebi 161649 mac 161649 bytes_out 3172 161649 bytes_in 5696 161649 station_ip 5.119.68.191 161649 port 340 161649 unique_id port 161649 remote_ip 10.8.1.90 161651 username meysam 161651 mac 161651 bytes_out 1402887 161626 station_ip 5.119.240.171 161626 port 340 161626 unique_id port 161626 remote_ip 10.8.1.18 161632 username hashtadani4 161632 mac 161632 bytes_out 11379 161632 bytes_in 19058 161632 station_ip 5.202.7.248 161632 port 352 161632 unique_id port 161632 remote_ip 10.8.1.142 161636 username fezealinaghi 161636 kill_reason Another user logged on this global unique id 161636 mac 161636 bytes_out 0 161636 bytes_in 0 161636 station_ip 37.129.227.245 161636 port 688 161636 unique_id port 161636 remote_ip 10.8.0.78 161642 username godarzi 161642 mac 161642 bytes_out 0 161642 bytes_in 0 161642 station_ip 5.202.6.91 161642 port 648 161642 unique_id port 161642 remote_ip 10.8.0.174 161650 username mohammadjavad 161650 mac 161650 bytes_out 0 161650 bytes_in 0 161650 station_ip 83.122.162.139 161650 port 648 161650 unique_id port 161650 remote_ip 10.8.0.142 161652 username meysam 161652 mac 161652 bytes_out 0 161652 bytes_in 0 161652 station_ip 188.158.50.135 161652 port 648 161652 unique_id port 161652 remote_ip 10.8.0.110 161654 username Mahin 161654 mac 161654 bytes_out 0 161654 bytes_in 0 161654 station_ip 5.119.223.183 161654 port 685 161654 unique_id port 161654 remote_ip 10.8.0.162 161655 username tahmasebi 161655 mac 161655 bytes_out 190953 161655 bytes_in 1802806 161655 station_ip 5.119.68.191 161655 port 340 161655 unique_id port 161655 remote_ip 10.8.1.90 161657 username meysam 161657 mac 161657 bytes_out 598525 161657 bytes_in 8633386 161657 station_ip 188.158.50.135 161657 port 648 161657 unique_id port 161657 remote_ip 10.8.0.110 161661 username mirzaei 161661 kill_reason Another user logged on this global unique id 161661 mac 161661 bytes_out 0 161661 bytes_in 0 161661 station_ip 5.119.180.17 161661 port 677 161661 unique_id port 161663 username malekpoir 161663 kill_reason Maximum check online fails reached 161663 mac 161663 bytes_out 0 161663 bytes_in 0 161663 station_ip 5.120.106.99 161663 port 695 161663 unique_id port 161669 username mohammadmahdi 161669 mac 161669 bytes_out 0 161669 bytes_in 0 161669 station_ip 5.119.185.146 161669 port 693 161669 unique_id port 161669 remote_ip 10.8.0.54 161672 username Mahin 161672 mac 161672 bytes_out 0 161672 bytes_in 0 161672 station_ip 5.119.223.183 161672 port 689 161672 unique_id port 161672 remote_ip 10.8.0.162 161673 username jamali 161673 mac 161673 bytes_out 30689 161673 bytes_in 55289 161673 station_ip 5.119.86.183 161673 port 328 161673 unique_id port 161673 remote_ip 10.8.1.82 161674 username aminvpn 161674 unique_id port 161674 terminate_cause User-Request 161674 bytes_out 11635576 161674 bytes_in 276853079 161674 station_ip 109.125.128.116 161674 port 15728648 161674 nas_port_type Virtual 161674 remote_ip 5.5.5.246 161676 username jamali 161676 mac 161676 bytes_out 0 161676 bytes_in 0 161676 station_ip 5.119.86.183 161676 port 328 161676 unique_id port 161676 remote_ip 10.8.1.82 161678 username mirzaei 161678 kill_reason Another user logged on this global unique id 161678 mac 161678 bytes_out 0 161678 bytes_in 0 161678 station_ip 5.119.180.17 161678 port 677 161678 unique_id port 161679 username malekpoir 161679 mac 161679 bytes_out 0 161679 bytes_in 0 161679 station_ip 5.120.29.72 161679 port 673 161679 unique_id port 161679 remote_ip 10.8.0.58 161681 username kordestani 161681 mac 161681 bytes_out 0 161681 bytes_in 0 161681 station_ip 151.235.101.201 161681 port 693 161681 unique_id port 161681 remote_ip 10.8.0.74 161683 username meysam 161683 mac 161628 unique_id port 161628 remote_ip 10.8.0.174 161630 username mohammadjavad 161630 mac 161630 bytes_out 0 161630 bytes_in 0 161630 station_ip 113.203.15.195 161630 port 689 161630 unique_id port 161630 remote_ip 10.8.0.142 161633 username Mahin 161633 mac 161633 bytes_out 1775 161633 bytes_in 3916 161633 station_ip 5.120.153.117 161633 port 353 161633 unique_id port 161633 remote_ip 10.8.1.186 161634 username hashtadani4 161634 mac 161634 bytes_out 0 161634 bytes_in 0 161634 station_ip 5.202.7.248 161634 port 685 161634 unique_id port 161634 remote_ip 10.8.0.182 161635 username kordestani 161635 mac 161635 bytes_out 0 161635 bytes_in 0 161635 station_ip 151.235.101.201 161635 port 648 161635 unique_id port 161635 remote_ip 10.8.0.74 161640 username hashtadani4 161640 kill_reason Maximum number of concurrent logins reached 161640 mac 161640 bytes_out 0 161640 bytes_in 0 161640 station_ip 113.203.51.172 161640 port 353 161640 unique_id port 161644 username fezealinaghi 161644 kill_reason Another user logged on this global unique id 161644 mac 161644 bytes_out 0 161644 bytes_in 0 161644 station_ip 37.129.227.245 161644 port 688 161644 unique_id port 161648 username Mahin 161648 mac 161648 bytes_out 51079 161648 bytes_in 236261 161648 station_ip 5.119.223.183 161648 port 352 161648 unique_id port 161648 remote_ip 10.8.1.186 161659 username aminvpn 161659 unique_id port 161659 terminate_cause User-Request 161659 bytes_out 3283458 161659 bytes_in 18545390 161659 station_ip 5.119.119.247 161659 port 15728647 161659 nas_port_type Virtual 161659 remote_ip 5.5.5.248 161662 username malekpoir 161662 mac 161662 bytes_out 0 161662 bytes_in 0 161662 station_ip 5.120.106.99 161662 port 673 161662 unique_id port 161666 username Mahin 161666 mac 161666 bytes_out 0 161666 bytes_in 0 161666 station_ip 5.119.223.183 161666 port 685 161666 unique_id port 161666 remote_ip 10.8.0.162 161667 username kalantary 161667 mac 161667 bytes_out 0 161667 bytes_in 0 161667 station_ip 83.122.58.45 161667 port 685 161667 unique_id port 161667 remote_ip 10.8.0.98 161680 username vanila 161680 mac 161680 bytes_out 167648 161680 bytes_in 229547 161680 station_ip 37.129.63.55 161680 port 689 161680 unique_id port 161680 remote_ip 10.8.0.178 161684 username aminvpn 161684 mac 161684 bytes_out 2080501 161684 bytes_in 29322960 161684 station_ip 83.122.120.158 161684 port 339 161684 unique_id port 161684 remote_ip 10.8.1.6 161685 username tahmasebi 161685 mac 161685 bytes_out 0 161685 bytes_in 0 161685 station_ip 5.119.68.191 161685 port 699 161685 unique_id port 161685 remote_ip 10.8.0.42 161689 username meysam 161689 mac 161689 bytes_out 813814 161689 bytes_in 13836791 161689 station_ip 188.158.50.135 161689 port 340 161689 unique_id port 161689 remote_ip 10.8.1.34 161691 username hashtadani4 161691 mac 161691 bytes_out 0 161691 bytes_in 0 161691 station_ip 113.203.51.172 161691 port 689 161691 unique_id port 161691 remote_ip 10.8.0.182 161696 username kalantary 161696 mac 161696 bytes_out 0 161696 bytes_in 0 161696 station_ip 83.122.58.45 161696 port 648 161696 unique_id port 161696 remote_ip 10.8.0.98 161699 username malekpoir 161699 mac 161699 bytes_out 0 161699 bytes_in 0 161699 station_ip 5.120.29.72 161699 port 698 161699 unique_id port 161699 remote_ip 10.8.0.58 161701 username tahmasebi 161701 mac 161701 bytes_out 0 161701 bytes_in 0 161701 station_ip 5.119.68.191 161701 port 701 161701 unique_id port 161651 bytes_in 20995191 161651 station_ip 188.158.50.135 161651 port 689 161651 unique_id port 161651 remote_ip 10.8.0.110 161653 username tahmasebi 161653 mac 161653 bytes_out 13275 161653 bytes_in 26543 161653 station_ip 5.119.68.191 161653 port 340 161653 unique_id port 161653 remote_ip 10.8.1.90 161656 username godarzi 161656 mac 161656 bytes_out 0 161656 bytes_in 0 161656 station_ip 5.202.6.91 161656 port 695 161656 unique_id port 161656 remote_ip 10.8.0.174 161658 username khademi 161658 kill_reason Another user logged on this global unique id 161658 mac 161658 bytes_out 0 161658 bytes_in 0 161658 station_ip 113.203.78.111 161658 port 661 161658 unique_id port 161658 remote_ip 10.8.0.10 161660 username godarzi 161660 mac 161660 bytes_out 0 161660 bytes_in 0 161660 station_ip 5.202.6.91 161660 port 695 161660 unique_id port 161660 remote_ip 10.8.0.174 161664 username jamali 161664 mac 161664 bytes_out 0 161664 bytes_in 0 161664 station_ip 5.119.86.183 161664 port 328 161664 unique_id port 161664 remote_ip 10.8.1.82 161665 username mehdizare 161665 mac 161665 bytes_out 0 161665 bytes_in 0 161665 station_ip 83.122.5.111 161665 port 689 161665 unique_id port 161665 remote_ip 10.8.0.90 161668 username tahmasebi 161668 mac 161668 bytes_out 645542 161668 bytes_in 5549476 161668 station_ip 5.119.68.191 161668 port 340 161668 unique_id port 161668 remote_ip 10.8.1.90 161670 username tahmasebi 161670 mac 161670 bytes_out 0 161670 bytes_in 0 161670 station_ip 5.119.68.191 161670 port 340 161670 unique_id port 161670 remote_ip 10.8.1.90 161671 username tahmasebi 161671 mac 161671 bytes_out 0 161671 bytes_in 0 161671 station_ip 5.119.68.191 161671 port 340 161671 unique_id port 161671 remote_ip 10.8.1.90 161675 username meysam 161675 kill_reason Another user logged on this global unique id 161675 mac 161675 bytes_out 0 161675 bytes_in 0 161675 station_ip 188.158.50.135 161675 port 648 161675 unique_id port 161675 remote_ip 10.8.0.110 161677 username tahmasebi 161677 mac 161677 bytes_out 0 161677 bytes_in 0 161677 station_ip 5.119.68.191 161677 port 328 161677 unique_id port 161677 remote_ip 10.8.1.90 161682 username jamali 161682 mac 161682 bytes_out 19552 161682 bytes_in 25092 161682 station_ip 5.119.86.183 161682 port 340 161682 unique_id port 161682 remote_ip 10.8.1.82 161687 username tahmasebi 161687 mac 161687 bytes_out 0 161687 bytes_in 0 161687 station_ip 5.119.68.191 161687 port 699 161687 unique_id port 161687 remote_ip 10.8.0.42 161688 username houshang 161688 kill_reason Another user logged on this global unique id 161688 mac 161688 bytes_out 0 161688 bytes_in 0 161688 station_ip 5.119.148.112 161688 port 693 161688 unique_id port 161688 remote_ip 10.8.0.134 161692 username ghiyasi 161692 mac 161692 bytes_out 43371 161692 bytes_in 9616 161692 station_ip 5.120.186.242 161692 port 699 161692 unique_id port 161692 remote_ip 10.8.0.38 161693 username hashtadani4 161693 mac 161693 bytes_out 0 161693 bytes_in 0 161693 station_ip 113.203.51.172 161693 port 700 161693 unique_id port 161693 remote_ip 10.8.0.182 161694 username ghiyasi 161694 mac 161694 bytes_out 186312 161694 bytes_in 20586 161694 station_ip 5.120.186.242 161694 port 701 161694 unique_id port 161694 remote_ip 10.8.0.38 161697 username houshang 161697 kill_reason Another user logged on this global unique id 161697 mac 161697 bytes_out 0 161697 bytes_in 0 161697 station_ip 5.119.148.112 161697 port 693 161697 unique_id port 161683 bytes_out 0 161683 bytes_in 0 161683 station_ip 188.158.50.135 161683 port 648 161683 unique_id port 161686 username tahmasebi 161686 mac 161686 bytes_out 0 161686 bytes_in 0 161686 station_ip 5.119.68.191 161686 port 699 161686 unique_id port 161686 remote_ip 10.8.0.42 161690 username kalantary 161690 mac 161690 bytes_out 0 161690 bytes_in 0 161690 station_ip 83.122.58.45 161690 port 648 161690 unique_id port 161690 remote_ip 10.8.0.98 161695 username hashtadani4 161695 kill_reason Maximum check online fails reached 161695 mac 161695 bytes_out 0 161695 bytes_in 0 161695 station_ip 113.203.51.172 161695 port 689 161695 unique_id port 161703 username hashtadani4 161703 mac 161703 bytes_out 0 161703 bytes_in 0 161703 station_ip 113.203.51.172 161703 port 339 161703 unique_id port 161703 remote_ip 10.8.1.142 161706 username houshang 161706 mac 161706 bytes_out 0 161706 bytes_in 0 161706 station_ip 5.119.148.112 161706 port 693 161706 unique_id port 161713 username hashtadani4 161713 mac 161713 bytes_out 0 161713 bytes_in 0 161713 station_ip 113.203.51.172 161713 port 685 161713 unique_id port 161713 remote_ip 10.8.0.182 161718 username hashtadani4 161718 mac 161718 bytes_out 0 161718 bytes_in 0 161718 station_ip 113.203.51.172 161718 port 703 161718 unique_id port 161718 remote_ip 10.8.0.182 161725 username hashtadani4 161725 kill_reason Maximum check online fails reached 161725 mac 161725 bytes_out 0 161725 bytes_in 0 161725 station_ip 113.203.51.172 161725 port 704 161725 unique_id port 161726 username ahmadi1 161726 mac 161726 bytes_out 0 161726 bytes_in 0 161726 station_ip 83.122.212.121 161726 port 705 161726 unique_id port 161726 remote_ip 10.8.0.250 161727 username barzegar 161727 kill_reason Another user logged on this global unique id 161727 mac 161727 bytes_out 0 161727 bytes_in 0 161727 station_ip 5.120.86.144 161727 port 339 161727 unique_id port 161727 remote_ip 10.8.1.174 161728 username Mahin 161728 mac 161728 bytes_out 0 161728 bytes_in 0 161728 station_ip 5.119.223.183 161728 port 675 161728 unique_id port 161728 remote_ip 10.8.0.162 161730 username rezaei 161730 mac 161730 bytes_out 902697 161730 bytes_in 8176978 161730 station_ip 5.119.53.117 161730 port 693 161730 unique_id port 161730 remote_ip 10.8.0.230 161733 username barzegar 161733 mac 161733 bytes_out 0 161733 bytes_in 0 161733 station_ip 5.120.86.144 161733 port 339 161733 unique_id port 161735 username tahmasebi 161735 kill_reason Another user logged on this global unique id 161735 mac 161735 bytes_out 0 161735 bytes_in 0 161735 station_ip 5.119.68.191 161735 port 698 161735 unique_id port 161739 username barzegar 161739 mac 161739 bytes_out 254128 161739 bytes_in 4542696 161739 station_ip 5.120.86.144 161739 port 339 161739 unique_id port 161739 remote_ip 10.8.1.174 161742 username hashtadani4 161742 kill_reason Maximum check online fails reached 161742 mac 161742 bytes_out 0 161742 bytes_in 0 161742 station_ip 113.203.51.172 161742 port 675 161742 unique_id port 161745 username mirzaei 161745 kill_reason Another user logged on this global unique id 161745 mac 161745 bytes_out 0 161745 bytes_in 0 161745 station_ip 5.119.180.17 161745 port 677 161745 unique_id port 161746 username mohammadjavad 161746 mac 161746 bytes_out 0 161746 bytes_in 0 161746 station_ip 83.123.10.159 161746 port 703 161746 unique_id port 161746 remote_ip 10.8.0.142 161747 username jamali 161747 mac 161747 bytes_out 11130 161747 bytes_in 14250 161698 username hashtadani4 161698 kill_reason Maximum check online fails reached 161698 mac 161698 bytes_out 0 161698 bytes_in 0 161698 station_ip 113.203.51.172 161698 port 699 161698 unique_id port 161700 username jamali 161700 mac 161700 bytes_out 20518 161700 bytes_in 24290 161700 station_ip 5.119.86.183 161700 port 328 161700 unique_id port 161700 remote_ip 10.8.1.82 161702 username barzegar 161702 mac 161702 bytes_out 0 161702 bytes_in 0 161702 station_ip 5.120.86.144 161702 port 700 161702 unique_id port 161702 remote_ip 10.8.0.234 161705 username hashtadani4 161705 kill_reason Maximum check online fails reached 161705 mac 161705 bytes_out 0 161705 bytes_in 0 161705 station_ip 113.203.51.172 161705 port 700 161705 unique_id port 161708 username Mahin 161708 mac 161708 bytes_out 1005878 161708 bytes_in 11668057 161708 station_ip 5.119.223.183 161708 port 685 161708 unique_id port 161708 remote_ip 10.8.0.162 161709 username nilufarrajaei 161709 mac 161709 bytes_out 0 161709 bytes_in 0 161709 station_ip 37.129.137.44 161709 port 675 161709 unique_id port 161709 remote_ip 10.8.0.206 161711 username hashtadani4 161711 kill_reason Maximum check online fails reached 161711 mac 161711 bytes_out 0 161711 bytes_in 0 161711 station_ip 113.203.51.172 161711 port 701 161711 unique_id port 161712 username jamali 161712 mac 161712 bytes_out 15853 161712 bytes_in 16941 161712 station_ip 5.119.86.183 161712 port 328 161712 unique_id port 161712 remote_ip 10.8.1.82 161714 username hashtadani4 161714 mac 161714 bytes_out 0 161714 bytes_in 0 161714 station_ip 113.203.51.172 161714 port 340 161714 unique_id port 161714 remote_ip 10.8.1.142 161715 username tahmasebi 161715 kill_reason Another user logged on this global unique id 161715 mac 161715 bytes_out 0 161715 bytes_in 0 161715 station_ip 5.119.68.191 161715 port 698 161715 unique_id port 161715 remote_ip 10.8.0.42 161717 username hashtadani4 161717 mac 161717 bytes_out 0 161717 bytes_in 0 161717 station_ip 113.203.51.172 161717 port 340 161717 unique_id port 161717 remote_ip 10.8.1.142 161720 username hashtadani4 161720 mac 161720 bytes_out 0 161720 bytes_in 0 161720 station_ip 113.203.51.172 161720 port 693 161720 unique_id port 161720 remote_ip 10.8.0.182 161722 username ghiyasi 161722 mac 161722 bytes_out 0 161722 bytes_in 0 161722 station_ip 5.119.235.214 161722 port 648 161722 unique_id port 161722 remote_ip 10.8.0.38 161724 username hashtadani4 161724 kill_reason Maximum number of concurrent logins reached 161724 mac 161724 bytes_out 0 161724 bytes_in 0 161724 station_ip 113.203.51.172 161724 port 705 161724 unique_id port 161731 username jamali 161731 mac 161731 bytes_out 0 161731 bytes_in 0 161731 station_ip 5.119.86.183 161731 port 328 161731 unique_id port 161731 remote_ip 10.8.1.82 161734 username jamali 161734 mac 161734 bytes_out 10515 161734 bytes_in 11295 161734 station_ip 5.119.86.183 161734 port 328 161734 unique_id port 161734 remote_ip 10.8.1.82 161737 username hashtadani4 161737 mac 161737 bytes_out 0 161737 bytes_in 0 161737 station_ip 113.203.51.172 161737 port 340 161737 unique_id port 161737 remote_ip 10.8.1.142 161740 username hashtadani4 161740 kill_reason Maximum number of concurrent logins reached 161740 mac 161740 bytes_out 0 161740 bytes_in 0 161740 station_ip 113.203.51.172 161740 port 703 161740 unique_id port 161749 username meysam 161749 mac 161749 bytes_out 1155082 161749 bytes_in 21944042 161749 station_ip 188.158.50.135 161749 port 339 161701 remote_ip 10.8.0.42 161704 username hashtadani4 161704 mac 161704 bytes_out 0 161704 bytes_in 0 161704 station_ip 113.203.51.172 161704 port 340 161704 unique_id port 161704 remote_ip 10.8.1.142 161707 username hashtadani4 161707 mac 161707 bytes_out 0 161707 bytes_in 0 161707 station_ip 113.203.51.172 161707 port 703 161707 unique_id port 161707 remote_ip 10.8.0.182 161710 username ghiyasi 161710 mac 161710 bytes_out 0 161710 bytes_in 0 161710 station_ip 5.119.235.214 161710 port 648 161710 unique_id port 161710 remote_ip 10.8.0.38 161716 username hashtadani4 161716 kill_reason Maximum check online fails reached 161716 mac 161716 bytes_out 0 161716 bytes_in 0 161716 station_ip 113.203.51.172 161716 port 685 161716 unique_id port 161719 username nilufarrajaei 161719 mac 161719 bytes_out 333677 161719 bytes_in 4721368 161719 station_ip 37.129.137.44 161719 port 693 161719 unique_id port 161719 remote_ip 10.8.0.206 161721 username hashtadani4 161721 mac 161721 bytes_out 0 161721 bytes_in 0 161721 station_ip 113.203.51.172 161721 port 340 161721 unique_id port 161721 remote_ip 10.8.1.142 161723 username hashtadani4 161723 mac 161723 bytes_out 0 161723 bytes_in 0 161723 station_ip 113.203.51.172 161723 port 648 161723 unique_id port 161723 remote_ip 10.8.0.182 161729 username hashtadani4 161729 kill_reason Maximum check online fails reached 161729 mac 161729 bytes_out 0 161729 bytes_in 0 161729 station_ip 113.203.51.172 161729 port 648 161729 unique_id port 161732 username houshang 161732 mac 161732 bytes_out 2224209 161732 bytes_in 30963814 161732 station_ip 5.119.148.112 161732 port 703 161732 unique_id port 161732 remote_ip 10.8.0.134 161736 username hashtadani4 161736 mac 161736 bytes_out 0 161736 bytes_in 0 161736 station_ip 113.203.51.172 161736 port 675 161736 unique_id port 161736 remote_ip 10.8.0.182 161738 username hashtadani4 161738 mac 161738 bytes_out 0 161738 bytes_in 0 161738 station_ip 113.203.51.172 161738 port 352 161738 unique_id port 161738 remote_ip 10.8.1.142 161741 username meysam 161741 mac 161741 bytes_out 163736 161741 bytes_in 1813073 161741 station_ip 188.158.50.135 161741 port 340 161741 unique_id port 161741 remote_ip 10.8.1.34 161743 username hashtadani4 161743 kill_reason Maximum check online fails reached 161743 mac 161743 bytes_out 0 161743 bytes_in 0 161743 station_ip 113.203.51.172 161743 port 693 161743 unique_id port 161744 username jamali 161744 mac 161744 bytes_out 12305 161744 bytes_in 19211 161744 station_ip 5.119.86.183 161744 port 328 161744 unique_id port 161744 remote_ip 10.8.1.82 161748 username Mahin 161748 mac 161748 bytes_out 0 161748 bytes_in 0 161748 station_ip 5.119.223.183 161748 port 705 161748 unique_id port 161748 remote_ip 10.8.0.162 161752 username jamali 161752 mac 161752 bytes_out 0 161752 bytes_in 0 161752 station_ip 5.119.86.183 161752 port 328 161752 unique_id port 161752 remote_ip 10.8.1.82 161753 username jamali 161753 mac 161753 bytes_out 0 161753 bytes_in 0 161753 station_ip 5.119.86.183 161753 port 328 161753 unique_id port 161753 remote_ip 10.8.1.82 161756 username barzegar 161756 kill_reason Another user logged on this global unique id 161756 mac 161756 bytes_out 0 161756 bytes_in 0 161756 station_ip 5.120.86.144 161756 port 707 161756 unique_id port 161762 username barzegar 161762 kill_reason Another user logged on this global unique id 161762 mac 161762 bytes_out 0 161762 bytes_in 0 161762 station_ip 5.120.86.144 161762 port 707 161747 station_ip 5.119.86.183 161747 port 340 161747 unique_id port 161747 remote_ip 10.8.1.82 161750 username sabaghnezhad 161750 mac 161750 bytes_out 0 161750 bytes_in 0 161750 station_ip 83.123.175.79 161750 port 708 161750 unique_id port 161750 remote_ip 10.8.0.186 161754 username ghiyasi 161754 mac 161754 bytes_out 10149 161754 bytes_in 14844 161754 station_ip 5.119.35.72 161754 port 705 161754 unique_id port 161754 remote_ip 10.8.0.38 161755 username ahmadi1 161755 mac 161755 bytes_out 0 161755 bytes_in 0 161755 station_ip 83.122.212.121 161755 port 708 161755 unique_id port 161755 remote_ip 10.8.0.250 161763 username jamali 161763 mac 161763 bytes_out 25606 161763 bytes_in 55654 161763 station_ip 5.119.86.183 161763 port 705 161763 unique_id port 161763 remote_ip 10.8.0.70 161765 username barzegar 161765 kill_reason Another user logged on this global unique id 161765 mac 161765 bytes_out 0 161765 bytes_in 0 161765 station_ip 5.120.86.144 161765 port 707 161765 unique_id port 161766 username jamali 161766 mac 161766 bytes_out 0 161766 bytes_in 0 161766 station_ip 5.119.86.183 161766 port 705 161766 unique_id port 161766 remote_ip 10.8.0.70 161768 username moradi 161768 mac 161768 bytes_out 0 161768 bytes_in 0 161768 station_ip 94.24.93.54 161768 port 705 161768 unique_id port 161768 remote_ip 10.8.0.126 161769 username meysam 161769 mac 161769 bytes_out 2199699 161769 bytes_in 34322793 161769 station_ip 188.158.50.135 161769 port 339 161769 unique_id port 161769 remote_ip 10.8.1.34 161772 username jamali 161772 mac 161772 bytes_out 32562 161772 bytes_in 84503 161772 station_ip 5.119.86.183 161772 port 709 161772 unique_id port 161772 remote_ip 10.8.0.70 161778 username mohammadmahdi 161778 mac 161778 bytes_out 0 161778 bytes_in 0 161778 station_ip 5.119.185.146 161778 port 673 161778 unique_id port 161778 remote_ip 10.8.0.54 161779 username moradi 161779 kill_reason Another user logged on this global unique id 161779 mac 161779 bytes_out 0 161779 bytes_in 0 161779 station_ip 83.123.160.185 161779 port 709 161779 unique_id port 161779 remote_ip 10.8.0.126 161782 username barzegar 161782 mac 161782 bytes_out 0 161782 bytes_in 0 161782 station_ip 5.120.86.144 161782 port 707 161782 unique_id port 161785 username kalantary 161785 mac 161785 bytes_out 0 161785 bytes_in 0 161785 station_ip 83.122.10.249 161785 port 705 161785 unique_id port 161785 remote_ip 10.8.0.98 161787 username ghiyasi 161787 mac 161787 bytes_out 0 161787 bytes_in 0 161787 station_ip 5.119.35.72 161787 port 708 161787 unique_id port 161787 remote_ip 10.8.0.38 161788 username tahmasebi 161788 mac 161788 bytes_out 0 161788 bytes_in 0 161788 station_ip 5.119.68.191 161788 port 339 161788 unique_id port 161788 remote_ip 10.8.1.90 161797 username nilufarrajaei 161797 kill_reason Another user logged on this global unique id 161797 mac 161797 bytes_out 0 161797 bytes_in 0 161797 station_ip 83.123.37.100 161797 port 328 161797 unique_id port 161800 username ahmadi1 161800 mac 161800 bytes_out 54175 161800 bytes_in 351438 161800 station_ip 83.122.212.121 161800 port 697 161800 unique_id port 161800 remote_ip 10.8.0.250 161802 username barzegar 161802 mac 161802 bytes_out 0 161802 bytes_in 0 161802 station_ip 5.120.86.144 161802 port 340 161802 unique_id port 161802 remote_ip 10.8.1.174 161810 username nilufarrajaei 161810 kill_reason Another user logged on this global unique id 161810 mac 161810 bytes_out 0 161810 bytes_in 0 161749 unique_id port 161749 remote_ip 10.8.1.34 161751 username barzegar 161751 kill_reason Another user logged on this global unique id 161751 mac 161751 bytes_out 0 161751 bytes_in 0 161751 station_ip 5.120.86.144 161751 port 707 161751 unique_id port 161751 remote_ip 10.8.0.234 161757 username godarzi 161757 kill_reason Another user logged on this global unique id 161757 mac 161757 bytes_out 0 161757 bytes_in 0 161757 station_ip 5.202.6.91 161757 port 696 161757 unique_id port 161757 remote_ip 10.8.0.174 161758 username jamali 161758 mac 161758 bytes_out 0 161758 bytes_in 0 161758 station_ip 5.119.86.183 161758 port 705 161758 unique_id port 161758 remote_ip 10.8.0.70 161759 username kalantary 161759 mac 161759 bytes_out 0 161759 bytes_in 0 161759 station_ip 83.122.59.253 161759 port 706 161759 unique_id port 161759 remote_ip 10.8.0.98 161760 username kordestani 161760 mac 161760 bytes_out 0 161760 bytes_in 0 161760 station_ip 151.235.101.201 161760 port 706 161760 unique_id port 161760 remote_ip 10.8.0.74 161761 username nilufarrajaei 161761 mac 161761 bytes_out 1637574 161761 bytes_in 5126296 161761 station_ip 83.123.37.100 161761 port 340 161761 unique_id port 161761 remote_ip 10.8.1.166 161764 username ghiyasi 161764 mac 161764 bytes_out 0 161764 bytes_in 0 161764 station_ip 5.119.35.72 161764 port 708 161764 unique_id port 161764 remote_ip 10.8.0.38 161767 username jamali 161767 mac 161767 bytes_out 0 161767 bytes_in 0 161767 station_ip 5.119.86.183 161767 port 708 161767 unique_id port 161767 remote_ip 10.8.0.70 161770 username barzegar 161770 kill_reason Another user logged on this global unique id 161770 mac 161770 bytes_out 0 161770 bytes_in 0 161770 station_ip 5.120.86.144 161770 port 707 161770 unique_id port 161771 username ghiyasi 161771 mac 161771 bytes_out 8201 161771 bytes_in 9913 161771 station_ip 5.119.35.72 161771 port 706 161771 unique_id port 161771 remote_ip 10.8.0.38 161773 username moradi 161773 mac 161773 bytes_out 0 161773 bytes_in 0 161773 station_ip 83.123.160.185 161773 port 705 161773 unique_id port 161773 remote_ip 10.8.0.126 161774 username moradi 161774 mac 161774 bytes_out 0 161774 bytes_in 0 161774 station_ip 94.24.93.54 161774 port 708 161774 unique_id port 161774 remote_ip 10.8.0.126 161775 username godarzi 161775 mac 161775 bytes_out 0 161775 bytes_in 0 161775 station_ip 5.202.6.91 161775 port 696 161775 unique_id port 161776 username jamali 161776 mac 161776 bytes_out 0 161776 bytes_in 0 161776 station_ip 5.119.86.183 161776 port 706 161776 unique_id port 161776 remote_ip 10.8.0.70 161777 username jamali 161777 mac 161777 bytes_out 0 161777 bytes_in 0 161777 station_ip 5.119.86.183 161777 port 696 161777 unique_id port 161777 remote_ip 10.8.0.70 161780 username barzegar 161780 kill_reason Another user logged on this global unique id 161780 mac 161780 bytes_out 0 161780 bytes_in 0 161780 station_ip 5.120.86.144 161780 port 707 161780 unique_id port 161781 username tahmasebi 161781 mac 161781 bytes_out 0 161781 bytes_in 0 161781 station_ip 5.119.68.191 161781 port 698 161781 unique_id port 161783 username mehdizare 161783 mac 161783 bytes_out 272168 161783 bytes_in 261668 161783 station_ip 83.122.5.111 161783 port 697 161783 unique_id port 161783 remote_ip 10.8.0.90 161784 username tahmasebi 161784 mac 161784 bytes_out 0 161784 bytes_in 0 161784 station_ip 5.119.68.191 161784 port 696 161784 unique_id port 161784 remote_ip 10.8.0.42 161762 unique_id port 161790 username tahmasebi 161790 mac 161790 bytes_out 0 161790 bytes_in 0 161790 station_ip 5.119.68.191 161790 port 339 161790 unique_id port 161790 remote_ip 10.8.1.90 161791 username tahmasebi 161791 mac 161791 bytes_out 0 161791 bytes_in 0 161791 station_ip 5.119.68.191 161791 port 705 161791 unique_id port 161791 remote_ip 10.8.0.42 161795 username ghiyasi 161795 mac 161795 bytes_out 0 161795 bytes_in 0 161795 station_ip 5.120.89.94 161795 port 697 161795 unique_id port 161795 remote_ip 10.8.0.38 161799 username ghiyasi 161799 mac 161799 bytes_out 55631 161799 bytes_in 107624 161799 station_ip 5.119.225.248 161799 port 705 161799 unique_id port 161799 remote_ip 10.8.0.38 161805 username tahmasebi 161805 mac 161805 bytes_out 0 161805 bytes_in 0 161805 station_ip 5.119.68.191 161805 port 705 161805 unique_id port 161805 remote_ip 10.8.0.42 161806 username tahmasebi 161806 mac 161806 bytes_out 0 161806 bytes_in 0 161806 station_ip 5.119.68.191 161806 port 705 161806 unique_id port 161806 remote_ip 10.8.0.42 161807 username tahmasebi 161807 mac 161807 bytes_out 0 161807 bytes_in 0 161807 station_ip 5.119.68.191 161807 port 705 161807 unique_id port 161807 remote_ip 10.8.0.42 161808 username kalantary 161808 mac 161808 bytes_out 0 161808 bytes_in 0 161808 station_ip 83.122.25.233 161808 port 708 161808 unique_id port 161808 remote_ip 10.8.0.98 161809 username tahmasebi 161809 mac 161809 bytes_out 0 161809 bytes_in 0 161809 station_ip 5.119.68.191 161809 port 340 161809 unique_id port 161809 remote_ip 10.8.1.90 161812 username mohammadmahdi 161812 mac 161812 bytes_out 0 161812 bytes_in 0 161812 station_ip 5.119.185.146 161812 port 698 161812 unique_id port 161812 remote_ip 10.8.0.54 161816 username fezealinaghi 161816 kill_reason Another user logged on this global unique id 161816 mac 161816 bytes_out 0 161816 bytes_in 0 161816 station_ip 37.129.227.245 161816 port 688 161816 unique_id port 161819 username barzegar 161819 mac 161819 bytes_out 0 161819 bytes_in 0 161819 station_ip 5.120.86.144 161819 port 697 161819 unique_id port 161819 remote_ip 10.8.0.234 161822 username jamali 161822 mac 161822 bytes_out 135299 161822 bytes_in 156629 161822 station_ip 5.119.86.183 161822 port 696 161822 unique_id port 161822 remote_ip 10.8.0.70 161823 username ghiyasi 161823 mac 161823 bytes_out 0 161823 bytes_in 0 161823 station_ip 5.120.179.2 161823 port 706 161823 unique_id port 161823 remote_ip 10.8.0.38 161824 username kalantary 161824 mac 161824 bytes_out 176778 161824 bytes_in 511709 161824 station_ip 83.122.126.45 161824 port 698 161824 unique_id port 161824 remote_ip 10.8.0.98 161829 username forozandeh1 161829 mac 161829 bytes_out 0 161829 bytes_in 0 161829 station_ip 37.129.177.139 161829 port 697 161829 unique_id port 161829 remote_ip 10.8.0.130 161830 username ghiyasi 161830 mac 161830 bytes_out 36839 161830 bytes_in 50987 161830 station_ip 5.119.201.30 161830 port 710 161830 unique_id port 161830 remote_ip 10.8.0.38 161833 username ghiyasi 161833 mac 161833 bytes_out 0 161833 bytes_in 0 161833 station_ip 5.119.17.188 161833 port 697 161833 unique_id port 161833 remote_ip 10.8.0.38 161835 username khalili 161835 kill_reason Another user logged on this global unique id 161835 mac 161835 bytes_out 0 161835 bytes_in 0 161835 station_ip 5.119.240.171 161835 port 351 161835 unique_id port 161835 remote_ip 10.8.1.18 161837 username ghiyasi 161786 username jamali 161786 mac 161786 bytes_out 0 161786 bytes_in 0 161786 station_ip 5.119.86.183 161786 port 706 161786 unique_id port 161786 remote_ip 10.8.0.70 161789 username nilufarrajaei 161789 kill_reason Another user logged on this global unique id 161789 mac 161789 bytes_out 0 161789 bytes_in 0 161789 station_ip 83.123.37.100 161789 port 328 161789 unique_id port 161789 remote_ip 10.8.1.166 161792 username rezaei 161792 mac 161792 bytes_out 0 161792 bytes_in 0 161792 station_ip 5.119.53.117 161792 port 697 161792 unique_id port 161792 remote_ip 10.8.0.230 161793 username fezealinaghi 161793 kill_reason Another user logged on this global unique id 161793 mac 161793 bytes_out 0 161793 bytes_in 0 161793 station_ip 37.129.227.245 161793 port 688 161793 unique_id port 161794 username tahmasebi 161794 mac 161794 bytes_out 0 161794 bytes_in 0 161794 station_ip 5.119.68.191 161794 port 697 161794 unique_id port 161794 remote_ip 10.8.0.42 161796 username jamali 161796 mac 161796 bytes_out 18844 161796 bytes_in 24696 161796 station_ip 5.119.86.183 161796 port 696 161796 unique_id port 161796 remote_ip 10.8.0.70 161798 username barzegar 161798 mac 161798 bytes_out 0 161798 bytes_in 0 161798 station_ip 5.120.86.144 161798 port 698 161798 unique_id port 161798 remote_ip 10.8.0.234 161801 username tahmasebi 161801 mac 161801 bytes_out 285062 161801 bytes_in 2308394 161801 station_ip 5.119.68.191 161801 port 339 161801 unique_id port 161801 remote_ip 10.8.1.90 161803 username tahmasebi 161803 mac 161803 bytes_out 0 161803 bytes_in 0 161803 station_ip 5.119.68.191 161803 port 697 161803 unique_id port 161803 remote_ip 10.8.0.42 161804 username barzegar 161804 mac 161804 bytes_out 0 161804 bytes_in 0 161804 station_ip 5.120.86.144 161804 port 697 161804 unique_id port 161804 remote_ip 10.8.0.234 161817 username ghiyasi 161817 mac 161817 bytes_out 614171 161817 bytes_in 7779899 161817 station_ip 5.119.96.48 161817 port 706 161817 unique_id port 161817 remote_ip 10.8.0.38 161820 username aminvpn 161820 kill_reason Another user logged on this global unique id 161820 mac 161820 bytes_out 0 161820 bytes_in 0 161820 station_ip 5.119.135.130 161820 port 339 161820 unique_id port 161820 remote_ip 10.8.1.6 161821 username tahmasebi 161821 mac 161821 bytes_out 14234 161821 bytes_in 22987 161821 station_ip 5.119.68.191 161821 port 697 161821 unique_id port 161821 remote_ip 10.8.0.42 161825 username aminvpn 161825 mac 161825 bytes_out 0 161825 bytes_in 0 161825 station_ip 5.119.135.130 161825 port 339 161825 unique_id port 161826 username moradi 161826 mac 161826 bytes_out 0 161826 bytes_in 0 161826 station_ip 83.123.160.185 161826 port 709 161826 unique_id port 161831 username fezealinaghi 161831 kill_reason Another user logged on this global unique id 161831 mac 161831 bytes_out 0 161831 bytes_in 0 161831 station_ip 37.129.227.245 161831 port 688 161831 unique_id port 161832 username vanila 161832 mac 161832 bytes_out 70919 161832 bytes_in 135529 161832 station_ip 37.129.55.59 161832 port 708 161832 unique_id port 161832 remote_ip 10.8.0.178 161834 username farhad2 161834 mac 161834 bytes_out 0 161834 bytes_in 0 161834 station_ip 5.119.28.103 161834 port 706 161834 unique_id port 161834 remote_ip 10.8.0.190 161838 username tahmasebi 161838 mac 161838 bytes_out 0 161838 bytes_in 0 161838 station_ip 5.119.68.191 161838 port 339 161838 unique_id port 161838 remote_ip 10.8.1.90 161841 username farhad2 161810 station_ip 83.123.37.100 161810 port 328 161810 unique_id port 161811 username ghiyasi 161811 mac 161811 bytes_out 0 161811 bytes_in 0 161811 station_ip 5.119.182.196 161811 port 706 161811 unique_id port 161811 remote_ip 10.8.0.38 161813 username fezealinaghi 161813 kill_reason Another user logged on this global unique id 161813 mac 161813 bytes_out 0 161813 bytes_in 0 161813 station_ip 37.129.227.245 161813 port 688 161813 unique_id port 161814 username ghiyasi 161814 mac 161814 bytes_out 165654 161814 bytes_in 1692003 161814 station_ip 5.119.135.111 161814 port 708 161814 unique_id port 161814 remote_ip 10.8.0.38 161815 username ghiyasi 161815 mac 161815 bytes_out 312957 161815 bytes_in 2765753 161815 station_ip 5.119.16.87 161815 port 698 161815 unique_id port 161815 remote_ip 10.8.0.38 161818 username ghiyasi 161818 mac 161818 bytes_out 0 161818 bytes_in 0 161818 station_ip 5.120.63.47 161818 port 698 161818 unique_id port 161818 remote_ip 10.8.0.38 161827 username ghiyasi 161827 mac 161827 bytes_out 12808 161827 bytes_in 26843 161827 station_ip 5.119.220.21 161827 port 708 161827 unique_id port 161827 remote_ip 10.8.0.38 161828 username tahmasebi 161828 mac 161828 bytes_out 3007 161828 bytes_in 5495 161828 station_ip 5.119.68.191 161828 port 352 161828 unique_id port 161828 remote_ip 10.8.1.90 161836 username barzegar 161836 mac 161836 bytes_out 0 161836 bytes_in 0 161836 station_ip 5.120.86.144 161836 port 340 161836 unique_id port 161836 remote_ip 10.8.1.174 161839 username ghiyasi 161839 mac 161839 bytes_out 73657 161839 bytes_in 766333 161839 station_ip 5.119.178.227 161839 port 710 161839 unique_id port 161839 remote_ip 10.8.0.38 161844 username farhad2 161844 mac 161844 bytes_out 252676 161844 bytes_in 920954 161844 station_ip 5.119.28.103 161844 port 697 161844 unique_id port 161844 remote_ip 10.8.0.190 161846 username jafari 161846 kill_reason Another user logged on this global unique id 161846 mac 161846 bytes_out 0 161846 bytes_in 0 161846 station_ip 5.134.143.111 161846 port 705 161846 unique_id port 161846 remote_ip 10.8.0.242 161859 username saeed9658 161859 mac 161859 bytes_out 0 161859 bytes_in 0 161859 station_ip 5.119.221.5 161859 port 698 161859 unique_id port 161859 remote_ip 10.8.0.166 161863 username mohammadmahdi 161863 kill_reason Another user logged on this global unique id 161863 mac 161863 bytes_out 0 161863 bytes_in 0 161863 station_ip 5.119.11.76 161863 port 709 161863 unique_id port 161863 remote_ip 10.8.0.54 161866 username saeed9658 161866 mac 161866 bytes_out 0 161866 bytes_in 0 161866 station_ip 5.119.221.5 161866 port 339 161866 unique_id port 161866 remote_ip 10.8.1.210 161872 username arash 161872 mac 161872 bytes_out 0 161872 bytes_in 0 161872 station_ip 37.27.27.10 161872 port 711 161872 unique_id port 161872 remote_ip 10.8.0.114 161874 username ghiyasi 161874 mac 161874 bytes_out 0 161874 bytes_in 0 161874 station_ip 5.120.86.202 161874 port 698 161874 unique_id port 161874 remote_ip 10.8.0.38 161878 username ghiyasi 161878 mac 161878 bytes_out 16315 161878 bytes_in 33242 161878 station_ip 5.119.158.23 161878 port 712 161878 unique_id port 161878 remote_ip 10.8.0.38 161880 username mehdizare 161880 mac 161880 bytes_out 0 161880 bytes_in 0 161880 station_ip 83.122.5.111 161880 port 673 161880 unique_id port 161880 remote_ip 10.8.0.90 161883 username ghiyasi 161883 mac 161883 bytes_out 29505 161883 bytes_in 32997 161837 mac 161837 bytes_out 183945 161837 bytes_in 962319 161837 station_ip 5.119.95.203 161837 port 708 161837 unique_id port 161837 remote_ip 10.8.0.38 161840 username barzegar 161840 mac 161840 bytes_out 0 161840 bytes_in 0 161840 station_ip 5.120.86.144 161840 port 339 161840 unique_id port 161840 remote_ip 10.8.1.174 161842 username tahmorsi 161842 mac 161842 bytes_out 70412 161842 bytes_in 66411 161842 station_ip 5.200.112.59 161842 port 706 161842 unique_id port 161842 remote_ip 10.8.0.210 161843 username Mahin 161843 mac 161843 bytes_out 317855 161843 bytes_in 412998 161843 station_ip 5.119.223.183 161843 port 703 161843 unique_id port 161843 remote_ip 10.8.0.162 161845 username tahmasebi 161845 mac 161845 bytes_out 0 161845 bytes_in 0 161845 station_ip 5.119.68.191 161845 port 339 161845 unique_id port 161845 remote_ip 10.8.1.90 161848 username farhad2 161848 mac 161848 bytes_out 84833 161848 bytes_in 301619 161848 station_ip 5.119.28.103 161848 port 697 161848 unique_id port 161848 remote_ip 10.8.0.190 161849 username saeed9658 161849 mac 161849 bytes_out 0 161849 bytes_in 0 161849 station_ip 5.119.221.5 161849 port 340 161849 unique_id port 161849 remote_ip 10.8.1.210 161850 username tahmasebi 161850 mac 161850 bytes_out 0 161850 bytes_in 0 161850 station_ip 5.119.68.191 161850 port 339 161850 unique_id port 161850 remote_ip 10.8.1.90 161852 username tahmasebi 161852 mac 161852 bytes_out 0 161852 bytes_in 0 161852 station_ip 5.119.68.191 161852 port 339 161852 unique_id port 161852 remote_ip 10.8.1.90 161854 username fezealinaghi 161854 kill_reason Another user logged on this global unique id 161854 mac 161854 bytes_out 0 161854 bytes_in 0 161854 station_ip 37.129.227.245 161854 port 688 161854 unique_id port 161856 username ghiyasi 161856 mac 161856 bytes_out 0 161856 bytes_in 0 161856 station_ip 5.119.152.132 161856 port 708 161856 unique_id port 161856 remote_ip 10.8.0.38 161861 username ghiyasi 161861 mac 161861 bytes_out 0 161861 bytes_in 0 161861 station_ip 5.120.165.44 161861 port 710 161861 unique_id port 161861 remote_ip 10.8.0.38 161864 username shadkam 161864 mac 161864 bytes_out 0 161864 bytes_in 0 161864 station_ip 83.122.79.253 161864 port 708 161864 unique_id port 161864 remote_ip 10.8.0.62 161867 username tahmasebi 161867 mac 161867 bytes_out 11623 161867 bytes_in 21105 161867 station_ip 5.119.68.191 161867 port 711 161867 unique_id port 161867 remote_ip 10.8.0.42 161869 username fezealinaghi 161869 kill_reason Another user logged on this global unique id 161869 mac 161869 bytes_out 0 161869 bytes_in 0 161869 station_ip 37.129.227.245 161869 port 688 161869 unique_id port 161870 username barzegar 161870 mac 161870 bytes_out 0 161870 bytes_in 0 161870 station_ip 5.120.86.144 161870 port 339 161870 unique_id port 161870 remote_ip 10.8.1.174 161875 username godarzi 161875 mac 161875 bytes_out 0 161875 bytes_in 0 161875 station_ip 5.202.6.91 161875 port 707 161875 unique_id port 161875 remote_ip 10.8.0.174 161876 username tahmasebi 161876 mac 161876 bytes_out 0 161876 bytes_in 0 161876 station_ip 5.119.68.191 161876 port 711 161876 unique_id port 161876 remote_ip 10.8.0.42 161881 username mohammadjavad 161881 mac 161881 bytes_out 373920 161881 bytes_in 2702583 161881 station_ip 83.123.0.126 161881 port 703 161881 unique_id port 161881 remote_ip 10.8.0.142 161889 username hashtadani4 161889 kill_reason Another user logged on this global unique id 161841 mac 161841 bytes_out 0 161841 bytes_in 0 161841 station_ip 5.119.28.103 161841 port 697 161841 unique_id port 161841 remote_ip 10.8.0.190 161847 username saeed9658 161847 mac 161847 bytes_out 211270 161847 bytes_in 913599 161847 station_ip 5.119.221.5 161847 port 703 161847 unique_id port 161847 remote_ip 10.8.0.166 161851 username barzegar 161851 mac 161851 bytes_out 3052 161851 bytes_in 5430 161851 station_ip 5.120.86.144 161851 port 710 161851 unique_id port 161851 remote_ip 10.8.0.234 161853 username farhad2 161853 mac 161853 bytes_out 0 161853 bytes_in 0 161853 station_ip 5.119.28.103 161853 port 697 161853 unique_id port 161853 remote_ip 10.8.0.190 161855 username saeed9658 161855 mac 161855 bytes_out 0 161855 bytes_in 0 161855 station_ip 5.119.221.5 161855 port 339 161855 unique_id port 161855 remote_ip 10.8.1.210 161857 username moradi 161857 mac 161857 bytes_out 66746 161857 bytes_in 142017 161857 station_ip 83.123.160.185 161857 port 698 161857 unique_id port 161857 remote_ip 10.8.0.126 161858 username ghiyasi 161858 mac 161858 bytes_out 0 161858 bytes_in 0 161858 station_ip 5.119.4.12 161858 port 703 161858 unique_id port 161858 remote_ip 10.8.0.38 161860 username tahmorsi 161860 mac 161860 bytes_out 228180 161860 bytes_in 445376 161860 station_ip 5.200.112.59 161860 port 711 161860 unique_id port 161860 remote_ip 10.8.0.210 161862 username tahmasebi 161862 mac 161862 bytes_out 0 161862 bytes_in 0 161862 station_ip 5.119.68.191 161862 port 340 161862 unique_id port 161862 remote_ip 10.8.1.90 161865 username barzegar 161865 mac 161865 bytes_out 0 161865 bytes_in 0 161865 station_ip 5.120.86.144 161865 port 703 161865 unique_id port 161865 remote_ip 10.8.0.234 161868 username arash 161868 mac 161868 bytes_out 0 161868 bytes_in 0 161868 station_ip 37.27.27.10 161868 port 708 161868 unique_id port 161868 remote_ip 10.8.0.114 161871 username tahmasebi 161871 mac 161871 bytes_out 7901 161871 bytes_in 12569 161871 station_ip 5.119.68.191 161871 port 712 161871 unique_id port 161871 remote_ip 10.8.0.42 161873 username farhad2 161873 mac 161873 bytes_out 2381196 161873 bytes_in 28313537 161873 station_ip 5.119.28.103 161873 port 697 161873 unique_id port 161873 remote_ip 10.8.0.190 161877 username mohammadmahdi 161877 kill_reason Another user logged on this global unique id 161877 mac 161877 bytes_out 0 161877 bytes_in 0 161877 station_ip 5.119.11.76 161877 port 709 161877 unique_id port 161879 username tahmasebi 161879 mac 161879 bytes_out 0 161879 bytes_in 0 161879 station_ip 5.119.68.191 161879 port 339 161879 unique_id port 161879 remote_ip 10.8.1.90 161882 username barzegar 161882 mac 161882 bytes_out 0 161882 bytes_in 0 161882 station_ip 5.120.86.144 161882 port 339 161882 unique_id port 161882 remote_ip 10.8.1.174 161884 username forozandeh1 161884 mac 161884 bytes_out 0 161884 bytes_in 0 161884 station_ip 83.122.55.176 161884 port 710 161884 unique_id port 161884 remote_ip 10.8.0.130 161885 username kalantary 161885 mac 161885 bytes_out 0 161885 bytes_in 0 161885 station_ip 83.122.10.249 161885 port 708 161885 unique_id port 161885 remote_ip 10.8.0.98 161892 username tahmasebi 161892 mac 161892 bytes_out 0 161892 bytes_in 0 161892 station_ip 5.119.68.191 161892 port 339 161892 unique_id port 161892 remote_ip 10.8.1.90 161894 username fezealinaghi 161894 kill_reason Another user logged on this global unique id 161894 mac 161883 station_ip 5.120.120.122 161883 port 698 161883 unique_id port 161883 remote_ip 10.8.0.38 161886 username mehdizare 161886 mac 161886 bytes_out 0 161886 bytes_in 0 161886 station_ip 83.122.5.111 161886 port 707 161886 unique_id port 161886 remote_ip 10.8.0.90 161887 username tahmasebi 161887 mac 161887 bytes_out 0 161887 bytes_in 0 161887 station_ip 5.119.68.191 161887 port 339 161887 unique_id port 161887 remote_ip 10.8.1.90 161888 username barzegar 161888 mac 161888 bytes_out 0 161888 bytes_in 0 161888 station_ip 5.120.86.144 161888 port 339 161888 unique_id port 161888 remote_ip 10.8.1.174 161890 username mohammadmahdi 161890 mac 161890 bytes_out 0 161890 bytes_in 0 161890 station_ip 5.119.11.76 161890 port 709 161890 unique_id port 161891 username jamali 161891 mac 161891 bytes_out 2925773 161891 bytes_in 33394683 161891 station_ip 5.119.86.183 161891 port 696 161891 unique_id port 161891 remote_ip 10.8.0.70 161895 username hashtadani4 161895 mac 161895 bytes_out 0 161895 bytes_in 0 161895 station_ip 113.203.93.226 161895 port 673 161895 unique_id port 161897 username khalili 161897 kill_reason Another user logged on this global unique id 161897 mac 161897 bytes_out 0 161897 bytes_in 0 161897 station_ip 5.119.240.171 161897 port 351 161897 unique_id port 161901 username fezealinaghi 161901 kill_reason Another user logged on this global unique id 161901 mac 161901 bytes_out 0 161901 bytes_in 0 161901 station_ip 37.129.227.245 161901 port 688 161901 unique_id port 161902 username farhad2 161902 mac 161902 bytes_out 3322164 161902 bytes_in 27602243 161902 station_ip 5.119.28.103 161902 port 697 161902 unique_id port 161902 remote_ip 10.8.0.190 161904 username khademi 161904 kill_reason Another user logged on this global unique id 161904 mac 161904 bytes_out 0 161904 bytes_in 0 161904 station_ip 113.203.78.111 161904 port 661 161904 unique_id port 161909 username barzegar 161909 mac 161909 bytes_out 6230 161909 bytes_in 8966 161909 station_ip 5.120.86.144 161909 port 339 161909 unique_id port 161909 remote_ip 10.8.1.174 161917 username fezealinaghi 161917 kill_reason Another user logged on this global unique id 161917 mac 161917 bytes_out 0 161917 bytes_in 0 161917 station_ip 37.129.227.245 161917 port 688 161917 unique_id port 161919 username mehdizare 161919 mac 161919 bytes_out 27644 161919 bytes_in 282994 161919 station_ip 83.122.5.111 161919 port 705 161919 unique_id port 161919 remote_ip 10.8.0.90 161921 username aminvpn 161921 mac 161921 bytes_out 475958 161921 bytes_in 2501076 161921 station_ip 5.120.117.183 161921 port 702 161921 unique_id port 161921 remote_ip 10.8.0.14 161923 username farhad2 161923 mac 161923 bytes_out 0 161923 bytes_in 0 161923 station_ip 5.119.28.103 161923 port 697 161923 unique_id port 161924 username tahmasebi 161924 mac 161924 bytes_out 0 161924 bytes_in 0 161924 station_ip 5.119.68.191 161924 port 339 161924 unique_id port 161924 remote_ip 10.8.1.90 161926 username vanila 161926 mac 161926 bytes_out 0 161926 bytes_in 0 161926 station_ip 37.129.55.59 161926 port 705 161926 unique_id port 161926 remote_ip 10.8.0.178 161928 username tahmasebi 161928 mac 161928 bytes_out 0 161928 bytes_in 0 161928 station_ip 5.119.68.191 161928 port 702 161928 unique_id port 161928 remote_ip 10.8.0.42 161929 username fezealinaghi 161929 kill_reason Another user logged on this global unique id 161929 mac 161929 bytes_out 0 161929 bytes_in 0 161929 station_ip 37.129.227.245 161929 port 688 161889 mac 161889 bytes_out 0 161889 bytes_in 0 161889 station_ip 113.203.93.226 161889 port 673 161889 unique_id port 161889 remote_ip 10.8.0.182 161893 username saeed9658 161893 mac 161893 bytes_out 804444 161893 bytes_in 10145159 161893 station_ip 5.119.221.5 161893 port 703 161893 unique_id port 161893 remote_ip 10.8.0.166 161898 username hashtadani4 161898 mac 161898 bytes_out 0 161898 bytes_in 0 161898 station_ip 113.203.93.226 161898 port 673 161898 unique_id port 161898 remote_ip 10.8.0.182 161900 username mohammadjavad 161900 mac 161900 bytes_out 899377 161900 bytes_in 17128549 161900 station_ip 113.203.121.89 161900 port 698 161900 unique_id port 161900 remote_ip 10.8.0.142 161903 username malekpoir 161903 mac 161903 bytes_out 0 161903 bytes_in 0 161903 station_ip 5.120.29.72 161903 port 702 161903 unique_id port 161903 remote_ip 10.8.0.58 161908 username kalantary 161908 mac 161908 bytes_out 1140790 161908 bytes_in 22307217 161908 station_ip 83.122.112.225 161908 port 709 161908 unique_id port 161908 remote_ip 10.8.0.98 161910 username fezealinaghi 161910 kill_reason Another user logged on this global unique id 161910 mac 161910 bytes_out 0 161910 bytes_in 0 161910 station_ip 37.129.227.245 161910 port 688 161910 unique_id port 161911 username tahmasebi 161911 mac 161911 bytes_out 0 161911 bytes_in 0 161911 station_ip 5.119.68.191 161911 port 703 161911 unique_id port 161911 remote_ip 10.8.0.42 161912 username barzegar 161912 mac 161912 bytes_out 0 161912 bytes_in 0 161912 station_ip 5.120.86.144 161912 port 339 161912 unique_id port 161912 remote_ip 10.8.1.174 161913 username fezealinaghi 161913 kill_reason Another user logged on this global unique id 161913 mac 161913 bytes_out 0 161913 bytes_in 0 161913 station_ip 37.129.227.245 161913 port 688 161913 unique_id port 161915 username aminvpn 161915 mac 161915 bytes_out 0 161915 bytes_in 0 161915 station_ip 5.120.23.20 161915 port 339 161915 unique_id port 161915 remote_ip 10.8.1.6 161918 username hashtadani4 161918 mac 161918 bytes_out 9605 161918 bytes_in 17015 161918 station_ip 113.203.93.226 161918 port 673 161918 unique_id port 161918 remote_ip 10.8.0.182 161922 username barzegar 161922 mac 161922 bytes_out 0 161922 bytes_in 0 161922 station_ip 5.120.86.144 161922 port 703 161922 unique_id port 161922 remote_ip 10.8.0.234 161925 username jamali 161925 kill_reason Another user logged on this global unique id 161925 mac 161925 bytes_out 0 161925 bytes_in 0 161925 station_ip 5.119.86.183 161925 port 696 161925 unique_id port 161925 remote_ip 10.8.0.70 161927 username kalantary 161927 mac 161927 bytes_out 1156618 161927 bytes_in 14734578 161927 station_ip 83.122.94.157 161927 port 702 161927 unique_id port 161927 remote_ip 10.8.0.98 161931 username barzegar 161931 mac 161931 bytes_out 0 161931 bytes_in 0 161931 station_ip 5.120.86.144 161931 port 702 161931 unique_id port 161931 remote_ip 10.8.0.234 161932 username pourshad 161932 kill_reason Another user logged on this global unique id 161932 mac 161932 bytes_out 0 161932 bytes_in 0 161932 station_ip 5.119.252.61 161932 port 703 161932 unique_id port 161932 remote_ip 10.8.0.18 161933 username fezealinaghi 161933 kill_reason Another user logged on this global unique id 161933 mac 161933 bytes_out 0 161933 bytes_in 0 161933 station_ip 37.129.227.245 161933 port 688 161933 unique_id port 161939 username pourshad 161939 mac 161939 bytes_out 0 161939 bytes_in 0 161939 station_ip 5.119.252.61 161939 port 703 161894 bytes_out 0 161894 bytes_in 0 161894 station_ip 37.129.227.245 161894 port 688 161894 unique_id port 161896 username hashtadani4 161896 mac 161896 bytes_out 0 161896 bytes_in 0 161896 station_ip 113.203.93.226 161896 port 673 161896 unique_id port 161896 remote_ip 10.8.0.182 161899 username jafari 161899 kill_reason Another user logged on this global unique id 161899 mac 161899 bytes_out 0 161899 bytes_in 0 161899 station_ip 5.134.143.111 161899 port 705 161899 unique_id port 161905 username hashtadani4 161905 mac 161905 bytes_out 2270 161905 bytes_in 4600 161905 station_ip 113.203.93.226 161905 port 673 161905 unique_id port 161905 remote_ip 10.8.0.182 161906 username jafari 161906 mac 161906 bytes_out 0 161906 bytes_in 0 161906 station_ip 5.134.143.111 161906 port 705 161906 unique_id port 161907 username forozandeh1 161907 mac 161907 bytes_out 1306767 161907 bytes_in 19226801 161907 station_ip 83.123.166.161 161907 port 703 161907 unique_id port 161907 remote_ip 10.8.0.130 161914 username farhad2 161914 kill_reason Another user logged on this global unique id 161914 mac 161914 bytes_out 0 161914 bytes_in 0 161914 station_ip 5.119.28.103 161914 port 697 161914 unique_id port 161914 remote_ip 10.8.0.190 161916 username mehdizare 161916 mac 161916 bytes_out 0 161916 bytes_in 0 161916 station_ip 83.122.5.111 161916 port 707 161916 unique_id port 161916 remote_ip 10.8.0.90 161920 username godarzi 161920 mac 161920 bytes_out 677500 161920 bytes_in 6403248 161920 station_ip 5.120.83.48 161920 port 707 161920 unique_id port 161920 remote_ip 10.8.0.174 161936 username tahmasebi 161936 mac 161936 bytes_out 0 161936 bytes_in 0 161936 station_ip 5.119.68.191 161936 port 705 161936 unique_id port 161936 remote_ip 10.8.0.42 161937 username tahmasebi 161937 mac 161937 bytes_out 0 161937 bytes_in 0 161937 station_ip 5.119.68.191 161937 port 705 161937 unique_id port 161937 remote_ip 10.8.0.42 161940 username farhad2 161940 kill_reason Another user logged on this global unique id 161940 mac 161940 bytes_out 0 161940 bytes_in 0 161940 station_ip 5.120.28.122 161940 port 697 161940 unique_id port 161940 remote_ip 10.8.0.190 161942 username hashtadani4 161942 mac 161942 bytes_out 0 161942 bytes_in 0 161942 station_ip 113.203.119.86 161942 port 703 161942 unique_id port 161942 remote_ip 10.8.0.182 161945 username jafari 161945 kill_reason Another user logged on this global unique id 161945 mac 161945 bytes_out 0 161945 bytes_in 0 161945 station_ip 5.134.143.111 161945 port 702 161945 unique_id port 161945 remote_ip 10.8.0.242 161946 username barzegar 161946 mac 161946 bytes_out 0 161946 bytes_in 0 161946 station_ip 5.120.86.144 161946 port 706 161946 unique_id port 161946 remote_ip 10.8.0.234 161950 username fezealinaghi 161950 mac 161950 bytes_out 0 161950 bytes_in 0 161950 station_ip 37.129.227.245 161950 port 688 161950 unique_id port 161954 username hashtadani4 161954 mac 161954 bytes_out 0 161954 bytes_in 0 161954 station_ip 113.203.119.86 161954 port 340 161954 unique_id port 161954 remote_ip 10.8.1.142 161956 username hashtadani4 161956 mac 161956 bytes_out 11660 161956 bytes_in 24591 161956 station_ip 113.203.119.86 161956 port 688 161956 unique_id port 161956 remote_ip 10.8.0.182 161961 username shadkam 161961 mac 161961 bytes_out 1803 161961 bytes_in 4511 161961 station_ip 37.129.37.218 161961 port 707 161961 unique_id port 161961 remote_ip 10.8.0.62 161965 username morteza 161965 mac 161929 unique_id port 161930 username tahmasebi 161930 mac 161930 bytes_out 0 161930 bytes_in 0 161930 station_ip 5.119.68.191 161930 port 705 161930 unique_id port 161930 remote_ip 10.8.0.42 161934 username tahmasebi 161934 mac 161934 bytes_out 0 161934 bytes_in 0 161934 station_ip 5.119.68.191 161934 port 340 161934 unique_id port 161934 remote_ip 10.8.1.90 161935 username barzegar 161935 kill_reason Maximum check online fails reached 161935 mac 161935 bytes_out 0 161935 bytes_in 0 161935 station_ip 5.120.86.144 161935 port 339 161935 unique_id port 161938 username tahmasebi 161938 mac 161938 bytes_out 0 161938 bytes_in 0 161938 station_ip 5.119.68.191 161938 port 705 161938 unique_id port 161938 remote_ip 10.8.0.42 161944 username Mahin 161944 mac 161944 bytes_out 1418403 161944 bytes_in 12095786 161944 station_ip 5.119.223.183 161944 port 706 161944 unique_id port 161944 remote_ip 10.8.0.162 161947 username hashtadani4 161947 mac 161947 bytes_out 0 161947 bytes_in 0 161947 station_ip 113.203.119.86 161947 port 340 161947 unique_id port 161947 remote_ip 10.8.1.142 161951 username hashtadani4 161951 mac 161951 bytes_out 0 161951 bytes_in 0 161951 station_ip 113.203.119.86 161951 port 340 161951 unique_id port 161951 remote_ip 10.8.1.142 161953 username hashtadani4 161953 mac 161953 bytes_out 0 161953 bytes_in 0 161953 station_ip 113.203.119.86 161953 port 340 161953 unique_id port 161953 remote_ip 10.8.1.142 161955 username hosseine 161955 mac 161955 bytes_out 0 161955 bytes_in 0 161955 station_ip 83.123.49.234 161955 port 703 161955 unique_id port 161955 remote_ip 10.8.0.238 161959 username jafari 161959 kill_reason Another user logged on this global unique id 161959 mac 161959 bytes_out 0 161959 bytes_in 0 161959 station_ip 5.134.143.111 161959 port 702 161959 unique_id port 161960 username hashtadani4 161960 mac 161960 bytes_out 2506 161960 bytes_in 4927 161960 station_ip 113.203.119.86 161960 port 688 161960 unique_id port 161960 remote_ip 10.8.0.182 161962 username hashtadani4 161962 mac 161962 bytes_out 0 161962 bytes_in 0 161962 station_ip 113.203.119.86 161962 port 703 161962 unique_id port 161962 remote_ip 10.8.0.182 161966 username tahmasebi 161966 mac 161966 bytes_out 616497 161966 bytes_in 1182928 161966 station_ip 5.119.68.191 161966 port 688 161966 unique_id port 161966 remote_ip 10.8.0.42 161968 username fezealinaghi 161968 mac 161968 bytes_out 20218 161968 bytes_in 25949 161968 station_ip 37.129.227.245 161968 port 706 161968 unique_id port 161968 remote_ip 10.8.0.78 161972 username tahmasebi 161972 mac 161972 bytes_out 0 161972 bytes_in 0 161972 station_ip 5.119.68.191 161972 port 353 161972 unique_id port 161972 remote_ip 10.8.1.90 161979 username hashtadani4 161979 kill_reason Another user logged on this global unique id 161979 mac 161979 bytes_out 0 161979 bytes_in 0 161979 station_ip 113.203.119.86 161979 port 710 161979 unique_id port 161979 remote_ip 10.8.0.182 161981 username morteza 161981 mac 161981 bytes_out 0 161981 bytes_in 0 161981 station_ip 37.129.38.105 161981 port 353 161981 unique_id port 161981 remote_ip 10.8.1.62 161984 username hashtadani4 161984 mac 161984 bytes_out 0 161984 bytes_in 0 161984 station_ip 113.203.119.86 161984 port 697 161984 unique_id port 161984 remote_ip 10.8.0.182 161987 username hashtadani4 161987 mac 161987 bytes_out 0 161987 bytes_in 0 161987 station_ip 113.203.119.86 161987 port 697 161987 unique_id port 161939 unique_id port 161941 username hashtadani4 161941 mac 161941 bytes_out 0 161941 bytes_in 0 161941 station_ip 113.203.119.86 161941 port 710 161941 unique_id port 161941 remote_ip 10.8.0.182 161943 username hosseine 161943 mac 161943 bytes_out 323750 161943 bytes_in 547642 161943 station_ip 83.123.49.234 161943 port 707 161943 unique_id port 161943 remote_ip 10.8.0.238 161948 username tahmasebi 161948 mac 161948 bytes_out 0 161948 bytes_in 0 161948 station_ip 5.119.68.191 161948 port 707 161948 unique_id port 161948 remote_ip 10.8.0.42 161949 username hashtadani4 161949 mac 161949 bytes_out 0 161949 bytes_in 0 161949 station_ip 113.203.119.86 161949 port 340 161949 unique_id port 161949 remote_ip 10.8.1.142 161952 username jamali 161952 kill_reason Another user logged on this global unique id 161952 mac 161952 bytes_out 0 161952 bytes_in 0 161952 station_ip 5.119.86.183 161952 port 696 161952 unique_id port 161957 username hashtadani4 161957 mac 161957 bytes_out 0 161957 bytes_in 0 161957 station_ip 113.203.119.86 161957 port 688 161957 unique_id port 161957 remote_ip 10.8.0.182 161958 username farhad2 161958 kill_reason Another user logged on this global unique id 161958 mac 161958 bytes_out 0 161958 bytes_in 0 161958 station_ip 5.120.28.122 161958 port 697 161958 unique_id port 161963 username hashtadani4 161963 mac 161963 bytes_out 14693 161963 bytes_in 44083 161963 station_ip 113.203.119.86 161963 port 703 161963 unique_id port 161963 remote_ip 10.8.0.182 161964 username fezealinaghi 161964 mac 161964 bytes_out 0 161964 bytes_in 0 161964 station_ip 37.129.227.245 161964 port 340 161964 unique_id port 161964 remote_ip 10.8.1.162 161969 username barzegar 161969 mac 161969 bytes_out 0 161969 bytes_in 0 161969 station_ip 5.120.86.144 161969 port 698 161969 unique_id port 161969 remote_ip 10.8.0.234 161970 username morteza 161970 mac 161970 bytes_out 105259 161970 bytes_in 810874 161970 station_ip 37.129.38.105 161970 port 688 161970 unique_id port 161970 remote_ip 10.8.0.46 161975 username mehdizare 161975 mac 161975 bytes_out 2571943 161975 bytes_in 48986874 161975 station_ip 83.122.5.111 161975 port 673 161975 unique_id port 161975 remote_ip 10.8.0.90 161976 username tahmasebi 161976 mac 161976 bytes_out 0 161976 bytes_in 0 161976 station_ip 5.119.68.191 161976 port 353 161976 unique_id port 161976 remote_ip 10.8.1.90 161982 username hashtadani4 161982 mac 161982 bytes_out 0 161982 bytes_in 0 161982 station_ip 113.203.119.86 161982 port 710 161982 unique_id port 161983 username morteza 161983 mac 161983 bytes_out 0 161983 bytes_in 0 161983 station_ip 37.129.38.105 161983 port 697 161983 unique_id port 161983 remote_ip 10.8.0.46 161985 username hashtadani4 161985 mac 161985 bytes_out 0 161985 bytes_in 0 161985 station_ip 113.203.119.86 161985 port 706 161985 unique_id port 161985 remote_ip 10.8.0.182 161986 username morteza 161986 mac 161986 bytes_out 0 161986 bytes_in 0 161986 station_ip 37.129.38.105 161986 port 697 161986 unique_id port 161986 remote_ip 10.8.0.46 161991 username morteza 161991 mac 161991 bytes_out 0 161991 bytes_in 0 161991 station_ip 37.129.38.105 161991 port 709 161991 unique_id port 161991 remote_ip 10.8.0.46 161994 username tahmasebi 161994 mac 161994 bytes_out 8993 161994 bytes_in 13775 161994 station_ip 5.119.68.191 161994 port 673 161994 unique_id port 161994 remote_ip 10.8.0.42 162010 username hashtadani4 162010 mac 161965 bytes_out 0 161965 bytes_in 0 161965 station_ip 37.129.38.105 161965 port 709 161965 unique_id port 161965 remote_ip 10.8.0.46 161967 username malekpoir 161967 mac 161967 bytes_out 3807771 161967 bytes_in 45008662 161967 station_ip 5.120.29.72 161967 port 698 161967 unique_id port 161967 remote_ip 10.8.0.58 161971 username jafari 161971 mac 161971 bytes_out 0 161971 bytes_in 0 161971 station_ip 5.134.143.111 161971 port 702 161971 unique_id port 161973 username farhad2 161973 mac 161973 bytes_out 0 161973 bytes_in 0 161973 station_ip 5.120.28.122 161973 port 697 161973 unique_id port 161974 username rahim 161974 mac 161974 bytes_out 1944786 161974 bytes_in 31047059 161974 station_ip 5.120.45.248 161974 port 707 161974 unique_id port 161974 remote_ip 10.8.0.50 161977 username tahmasebi 161977 mac 161977 bytes_out 0 161977 bytes_in 0 161977 station_ip 5.119.68.191 161977 port 703 161977 unique_id port 161977 remote_ip 10.8.0.42 161978 username mehdizare 161978 mac 161978 bytes_out 11191 161978 bytes_in 14071 161978 station_ip 83.122.5.111 161978 port 697 161978 unique_id port 161978 remote_ip 10.8.0.90 161980 username morteza 161980 mac 161980 bytes_out 0 161980 bytes_in 0 161980 station_ip 37.129.38.105 161980 port 673 161980 unique_id port 161980 remote_ip 10.8.0.46 161988 username nilufarrajaei 161988 kill_reason Another user logged on this global unique id 161988 mac 161988 bytes_out 0 161988 bytes_in 0 161988 station_ip 83.123.37.100 161988 port 328 161988 unique_id port 161989 username tahmasebi 161989 mac 161989 bytes_out 0 161989 bytes_in 0 161989 station_ip 5.119.68.191 161989 port 673 161989 unique_id port 161989 remote_ip 10.8.0.42 161995 username farhad2 161995 mac 161995 bytes_out 4192847 161995 bytes_in 43903988 161995 station_ip 5.120.28.122 161995 port 688 161995 unique_id port 161995 remote_ip 10.8.0.190 161998 username morteza 161998 mac 161998 bytes_out 0 161998 bytes_in 0 161998 station_ip 37.129.38.105 161998 port 697 161998 unique_id port 161998 remote_ip 10.8.0.46 162001 username hashtadani4 162001 mac 162001 bytes_out 0 162001 bytes_in 0 162001 station_ip 113.203.119.86 162001 port 697 162001 unique_id port 162001 remote_ip 10.8.0.182 162003 username morteza 162003 mac 162003 bytes_out 0 162003 bytes_in 0 162003 station_ip 37.129.38.105 162003 port 353 162003 unique_id port 162003 remote_ip 10.8.1.62 162005 username barzegar 162005 mac 162005 bytes_out 7172 162005 bytes_in 12074 162005 station_ip 5.120.86.144 162005 port 688 162005 unique_id port 162005 remote_ip 10.8.0.234 162009 username hashtadani4 162009 mac 162009 bytes_out 2164 162009 bytes_in 4812 162009 station_ip 113.203.119.86 162009 port 698 162009 unique_id port 162009 remote_ip 10.8.0.182 162011 username morteza 162011 kill_reason Maximum check online fails reached 162011 mac 162011 bytes_out 0 162011 bytes_in 0 162011 station_ip 37.129.38.105 162011 port 697 162011 unique_id port 162015 username vanila 162015 mac 162015 bytes_out 103329 162015 bytes_in 581898 162015 station_ip 37.129.30.123 162015 port 702 162015 unique_id port 162015 remote_ip 10.8.0.178 162018 username hashtadani4 162018 mac 162018 bytes_out 4669 162018 bytes_in 8868 162018 station_ip 113.203.119.86 162018 port 707 162018 unique_id port 162018 remote_ip 10.8.0.182 162020 username nilufarrajaei 162020 mac 162020 bytes_out 0 162020 bytes_in 0 162020 station_ip 83.123.37.100 162020 port 328 161987 remote_ip 10.8.0.182 161990 username mahdiyehalizadeh 161990 mac 161990 bytes_out 524388 161990 bytes_in 6236761 161990 station_ip 5.120.186.242 161990 port 702 161990 unique_id port 161990 remote_ip 10.8.0.82 161992 username morteza 161992 mac 161992 bytes_out 0 161992 bytes_in 0 161992 station_ip 37.129.38.105 161992 port 353 161992 unique_id port 161992 remote_ip 10.8.1.62 161993 username hashtadani4 161993 mac 161993 bytes_out 2668128 161993 bytes_in 41968122 161993 station_ip 113.203.119.86 161993 port 697 161993 unique_id port 161993 remote_ip 10.8.0.182 161996 username hashtadani4 161996 mac 161996 bytes_out 0 161996 bytes_in 0 161996 station_ip 113.203.119.86 161996 port 688 161996 unique_id port 161996 remote_ip 10.8.0.182 161997 username hashtadani4 161997 mac 161997 bytes_out 0 161997 bytes_in 0 161997 station_ip 113.203.119.86 161997 port 697 161997 unique_id port 161997 remote_ip 10.8.0.182 161999 username saeed9658 161999 mac 161999 bytes_out 0 161999 bytes_in 0 161999 station_ip 5.119.221.5 161999 port 698 161999 unique_id port 161999 remote_ip 10.8.0.166 162000 username moradi 162000 mac 162000 bytes_out 2419546 162000 bytes_in 47243391 162000 station_ip 83.122.30.125 162000 port 707 162000 unique_id port 162000 remote_ip 10.8.0.126 162002 username morteza 162002 mac 162002 bytes_out 0 162002 bytes_in 0 162002 station_ip 37.129.38.105 162002 port 698 162002 unique_id port 162002 remote_ip 10.8.0.46 162004 username farhad2 162004 mac 162004 bytes_out 0 162004 bytes_in 0 162004 station_ip 5.120.28.122 162004 port 673 162004 unique_id port 162004 remote_ip 10.8.0.190 162006 username hashtadani4 162006 mac 162006 bytes_out 0 162006 bytes_in 0 162006 station_ip 113.203.119.86 162006 port 697 162006 unique_id port 162006 remote_ip 10.8.0.182 162007 username hashtadani4 162007 mac 162007 bytes_out 0 162007 bytes_in 0 162007 station_ip 113.203.119.86 162007 port 688 162007 unique_id port 162007 remote_ip 10.8.0.182 162008 username morteza 162008 mac 162008 bytes_out 0 162008 bytes_in 0 162008 station_ip 37.129.38.105 162008 port 702 162008 unique_id port 162008 remote_ip 10.8.0.46 162016 username morteza 162016 mac 162016 bytes_out 0 162016 bytes_in 0 162016 station_ip 37.129.38.105 162016 port 709 162016 unique_id port 162016 remote_ip 10.8.0.46 162017 username alihosseini1 162017 mac 162017 bytes_out 0 162017 bytes_in 0 162017 station_ip 5.120.165.244 162017 port 352 162017 unique_id port 162017 remote_ip 10.8.1.106 162021 username morteza 162021 mac 162021 bytes_out 0 162021 bytes_in 0 162021 station_ip 37.129.38.105 162021 port 698 162021 unique_id port 162021 remote_ip 10.8.0.46 162022 username hashtadani4 162022 mac 162022 bytes_out 0 162022 bytes_in 0 162022 station_ip 113.203.119.86 162022 port 352 162022 unique_id port 162022 remote_ip 10.8.1.142 162023 username hashtadani4 162023 mac 162023 bytes_out 0 162023 bytes_in 0 162023 station_ip 113.203.119.86 162023 port 698 162023 unique_id port 162023 remote_ip 10.8.0.182 162025 username hashtadani4 162025 mac 162025 bytes_out 0 162025 bytes_in 0 162025 station_ip 113.203.119.86 162025 port 698 162025 unique_id port 162025 remote_ip 10.8.0.182 162027 username morteza 162027 mac 162027 bytes_out 0 162027 bytes_in 0 162027 station_ip 37.129.38.105 162027 port 352 162027 unique_id port 162027 remote_ip 10.8.1.62 162030 username farhad2 162010 bytes_out 0 162010 bytes_in 0 162010 station_ip 113.203.119.86 162010 port 698 162010 unique_id port 162010 remote_ip 10.8.0.182 162012 username morteza 162012 mac 162012 bytes_out 0 162012 bytes_in 0 162012 station_ip 37.129.38.105 162012 port 707 162012 unique_id port 162012 remote_ip 10.8.0.46 162013 username tahmasebi 162013 mac 162013 bytes_out 0 162013 bytes_in 0 162013 station_ip 5.119.68.191 162013 port 698 162013 unique_id port 162013 remote_ip 10.8.0.42 162014 username barzegar 162014 mac 162014 bytes_out 0 162014 bytes_in 0 162014 station_ip 5.120.86.144 162014 port 698 162014 unique_id port 162014 remote_ip 10.8.0.234 162019 username hashtadani4 162019 mac 162019 bytes_out 0 162019 bytes_in 0 162019 station_ip 113.203.119.86 162019 port 698 162019 unique_id port 162019 remote_ip 10.8.0.182 162024 username barzegar 162024 mac 162024 bytes_out 0 162024 bytes_in 0 162024 station_ip 5.120.86.144 162024 port 707 162024 unique_id port 162024 remote_ip 10.8.0.234 162026 username alihosseini1 162026 mac 162026 bytes_out 0 162026 bytes_in 0 162026 station_ip 5.120.165.244 162026 port 707 162026 unique_id port 162026 remote_ip 10.8.0.22 162028 username hashtadani4 162028 mac 162028 bytes_out 0 162028 bytes_in 0 162028 station_ip 113.203.119.86 162028 port 354 162028 unique_id port 162028 remote_ip 10.8.1.142 162032 username morteza 162032 mac 162032 bytes_out 0 162032 bytes_in 0 162032 station_ip 37.129.38.105 162032 port 698 162032 unique_id port 162032 remote_ip 10.8.0.46 162036 username hashtadani4 162036 mac 162036 bytes_out 0 162036 bytes_in 0 162036 station_ip 113.203.119.86 162036 port 707 162036 unique_id port 162036 remote_ip 10.8.0.182 162038 username pourshad 162038 mac 162038 bytes_out 208936 162038 bytes_in 1133286 162038 station_ip 5.119.252.61 162038 port 706 162038 unique_id port 162038 remote_ip 10.8.0.18 162040 username godarzi 162040 mac 162040 bytes_out 400808 162040 bytes_in 4592184 162040 station_ip 5.120.83.48 162040 port 673 162040 unique_id port 162040 remote_ip 10.8.0.174 162042 username hashtadani4 162042 mac 162042 bytes_out 2326 162042 bytes_in 4707 162042 station_ip 113.203.119.86 162042 port 709 162042 unique_id port 162042 remote_ip 10.8.0.182 162045 username pourshad 162045 mac 162045 bytes_out 0 162045 bytes_in 0 162045 station_ip 5.119.252.61 162045 port 352 162045 unique_id port 162045 remote_ip 10.8.1.154 162047 username tahmasebi 162047 mac 162047 bytes_out 527063 162047 bytes_in 6671307 162047 station_ip 5.119.68.191 162047 port 688 162047 unique_id port 162047 remote_ip 10.8.0.42 162049 username rezaei 162049 mac 162049 bytes_out 1476090 162049 bytes_in 17872535 162049 station_ip 5.119.53.117 162049 port 707 162049 unique_id port 162049 remote_ip 10.8.0.230 162051 username barzegar 162051 mac 162051 bytes_out 0 162051 bytes_in 0 162051 station_ip 5.119.87.5 162051 port 707 162051 unique_id port 162051 remote_ip 10.8.0.234 162052 username milan 162052 kill_reason Another user logged on this global unique id 162052 mac 162052 bytes_out 0 162052 bytes_in 0 162052 station_ip 5.119.161.192 162052 port 710 162052 unique_id port 162052 remote_ip 10.8.0.218 162054 username mohammadmahdi 162054 kill_reason Another user logged on this global unique id 162054 mac 162054 bytes_out 0 162054 bytes_in 0 162054 station_ip 5.119.11.76 162054 port 702 162054 unique_id port 162054 remote_ip 10.8.0.54 162056 username godarzi 162020 unique_id port 162029 username barzegar 162029 mac 162029 bytes_out 0 162029 bytes_in 0 162029 station_ip 5.120.86.144 162029 port 352 162029 unique_id port 162029 remote_ip 10.8.1.174 162031 username hashtadani4 162031 mac 162031 bytes_out 0 162031 bytes_in 0 162031 station_ip 113.203.119.86 162031 port 673 162031 unique_id port 162031 remote_ip 10.8.0.182 162034 username morteza 162034 mac 162034 bytes_out 0 162034 bytes_in 0 162034 station_ip 37.129.38.105 162034 port 707 162034 unique_id port 162034 remote_ip 10.8.0.46 162035 username morteza 162035 mac 162035 bytes_out 0 162035 bytes_in 0 162035 station_ip 37.129.38.105 162035 port 352 162035 unique_id port 162035 remote_ip 10.8.1.62 162044 username hashtadani4 162044 mac 162044 bytes_out 0 162044 bytes_in 0 162044 station_ip 113.203.119.86 162044 port 354 162044 unique_id port 162044 remote_ip 10.8.1.142 162046 username morteza 162046 mac 162046 bytes_out 0 162046 bytes_in 0 162046 station_ip 37.129.38.105 162046 port 706 162046 unique_id port 162046 remote_ip 10.8.0.46 162057 username morteza 162057 kill_reason Maximum check online fails reached 162057 mac 162057 bytes_out 0 162057 bytes_in 0 162057 station_ip 37.129.38.105 162057 port 355 162057 unique_id port 162062 username Mahin 162062 mac 162062 bytes_out 1929024 162062 bytes_in 16387843 162062 station_ip 5.119.223.183 162062 port 705 162062 unique_id port 162062 remote_ip 10.8.0.162 162073 username Mahin 162073 mac 162073 bytes_out 7423 162073 bytes_in 8419 162073 station_ip 5.120.174.205 162073 port 707 162073 unique_id port 162073 remote_ip 10.8.0.162 162078 username farhad2 162078 mac 162078 bytes_out 3002 162078 bytes_in 9010 162078 station_ip 5.120.28.122 162078 port 707 162078 unique_id port 162078 remote_ip 10.8.0.190 162080 username morteza 162080 mac 162080 bytes_out 0 162080 bytes_in 0 162080 station_ip 37.129.38.105 162080 port 698 162080 unique_id port 162080 remote_ip 10.8.0.46 162082 username tahmasebi 162082 mac 162082 bytes_out 3108997 162082 bytes_in 25321829 162082 station_ip 5.119.68.191 162082 port 688 162082 unique_id port 162082 remote_ip 10.8.0.42 162083 username Mahin 162083 mac 162083 bytes_out 0 162083 bytes_in 0 162083 station_ip 5.120.174.205 162083 port 356 162083 unique_id port 162083 remote_ip 10.8.1.186 162085 username barzegar 162085 mac 162085 bytes_out 0 162085 bytes_in 0 162085 station_ip 5.119.87.5 162085 port 358 162085 unique_id port 162085 remote_ip 10.8.1.174 162087 username mosi 162087 mac 162087 bytes_out 3304 162087 bytes_in 3898 162087 station_ip 151.235.118.222 162087 port 688 162087 unique_id port 162087 remote_ip 10.8.0.138 162088 username mohammadmahdi 162088 mac 162088 bytes_out 0 162088 bytes_in 0 162088 station_ip 5.119.11.76 162088 port 702 162088 unique_id port 162090 username morteza 162090 kill_reason Maximum check online fails reached 162090 mac 162090 bytes_out 0 162090 bytes_in 0 162090 station_ip 37.129.38.105 162090 port 356 162090 unique_id port 162095 username morteza 162095 kill_reason Maximum check online fails reached 162095 mac 162095 bytes_out 0 162095 bytes_in 0 162095 station_ip 37.129.38.105 162095 port 360 162095 unique_id port 162098 username morteza 162098 mac 162098 bytes_out 0 162098 bytes_in 0 162098 station_ip 37.129.38.105 162098 port 362 162098 unique_id port 162098 remote_ip 10.8.1.62 162109 username tahmasebi 162109 mac 162030 mac 162030 bytes_out 2306621 162030 bytes_in 23750550 162030 station_ip 5.120.28.122 162030 port 673 162030 unique_id port 162030 remote_ip 10.8.0.190 162033 username morteza 162033 mac 162033 bytes_out 0 162033 bytes_in 0 162033 station_ip 37.129.38.105 162033 port 707 162033 unique_id port 162033 remote_ip 10.8.0.46 162037 username morteza 162037 mac 162037 bytes_out 0 162037 bytes_in 0 162037 station_ip 37.129.38.105 162037 port 710 162037 unique_id port 162037 remote_ip 10.8.0.46 162039 username saeed9658 162039 mac 162039 bytes_out 330996 162039 bytes_in 1631106 162039 station_ip 5.119.221.5 162039 port 688 162039 unique_id port 162039 remote_ip 10.8.0.166 162041 username morteza 162041 mac 162041 bytes_out 0 162041 bytes_in 0 162041 station_ip 37.129.38.105 162041 port 354 162041 unique_id port 162041 remote_ip 10.8.1.62 162043 username morteza 162043 mac 162043 bytes_out 0 162043 bytes_in 0 162043 station_ip 37.129.38.105 162043 port 354 162043 unique_id port 162043 remote_ip 10.8.1.62 162048 username alihosseini1 162048 mac 162048 bytes_out 8478 162048 bytes_in 10653 162048 station_ip 5.120.165.244 162048 port 709 162048 unique_id port 162048 remote_ip 10.8.0.22 162050 username barzegar 162050 mac 162050 bytes_out 0 162050 bytes_in 0 162050 station_ip 5.119.87.5 162050 port 688 162050 unique_id port 162050 remote_ip 10.8.0.234 162053 username morteza 162053 kill_reason Maximum check online fails reached 162053 mac 162053 bytes_out 0 162053 bytes_in 0 162053 station_ip 37.129.38.105 162053 port 352 162053 unique_id port 162055 username farhad2 162055 mac 162055 bytes_out 2549202 162055 bytes_in 21493802 162055 station_ip 5.120.28.122 162055 port 698 162055 unique_id port 162055 remote_ip 10.8.0.190 162059 username milan 162059 kill_reason Another user logged on this global unique id 162059 mac 162059 bytes_out 0 162059 bytes_in 0 162059 station_ip 5.119.161.192 162059 port 710 162059 unique_id port 162063 username hashtadani4 162063 mac 162063 bytes_out 2339303 162063 bytes_in 38101291 162063 station_ip 113.203.119.86 162063 port 711 162063 unique_id port 162063 remote_ip 10.8.0.182 162066 username forozandeh1 162066 mac 162066 bytes_out 717767 162066 bytes_in 2172696 162066 station_ip 83.122.218.85 162066 port 706 162066 unique_id port 162066 remote_ip 10.8.0.130 162070 username farhad2 162070 mac 162070 bytes_out 0 162070 bytes_in 0 162070 station_ip 5.120.28.122 162070 port 698 162070 unique_id port 162070 remote_ip 10.8.0.190 162072 username moradi 162072 mac 162072 bytes_out 2241810 162072 bytes_in 44163741 162072 station_ip 83.122.72.77 162072 port 709 162072 unique_id port 162072 remote_ip 10.8.0.126 162076 username ghiyasi 162076 mac 162076 bytes_out 2263 162076 bytes_in 4285 162076 station_ip 5.120.74.239 162076 port 706 162076 unique_id port 162076 remote_ip 10.8.0.38 162079 username mohammadmahdi 162079 kill_reason Another user logged on this global unique id 162079 mac 162079 bytes_out 0 162079 bytes_in 0 162079 station_ip 5.119.11.76 162079 port 702 162079 unique_id port 162081 username barzegar 162081 mac 162081 bytes_out 0 162081 bytes_in 0 162081 station_ip 5.119.87.5 162081 port 358 162081 unique_id port 162081 remote_ip 10.8.1.174 162084 username sabaghnezhad 162084 mac 162084 bytes_out 1087951 162084 bytes_in 11659719 162084 station_ip 83.123.98.173 162084 port 708 162084 unique_id port 162084 remote_ip 10.8.0.186 162086 username milan 162056 mac 162056 bytes_out 245324 162056 bytes_in 2543154 162056 station_ip 5.120.83.48 162056 port 698 162056 unique_id port 162056 remote_ip 10.8.0.174 162058 username farhad2 162058 mac 162058 bytes_out 1646098 162058 bytes_in 21717811 162058 station_ip 5.120.28.122 162058 port 707 162058 unique_id port 162058 remote_ip 10.8.0.190 162060 username morteza 162060 mac 162060 bytes_out 0 162060 bytes_in 0 162060 station_ip 37.129.38.105 162060 port 707 162060 unique_id port 162060 remote_ip 10.8.0.46 162061 username barzegar 162061 mac 162061 bytes_out 0 162061 bytes_in 0 162061 station_ip 5.119.87.5 162061 port 707 162061 unique_id port 162061 remote_ip 10.8.0.234 162064 username hashtadani4 162064 mac 162064 bytes_out 0 162064 bytes_in 0 162064 station_ip 113.203.119.86 162064 port 705 162064 unique_id port 162064 remote_ip 10.8.0.182 162065 username barzegar 162065 mac 162065 bytes_out 0 162065 bytes_in 0 162065 station_ip 5.119.87.5 162065 port 705 162065 unique_id port 162065 remote_ip 10.8.0.234 162067 username morteza 162067 mac 162067 bytes_out 2445 162067 bytes_in 4791 162067 station_ip 37.129.38.105 162067 port 711 162067 unique_id port 162067 remote_ip 10.8.0.46 162068 username milan 162068 kill_reason Another user logged on this global unique id 162068 mac 162068 bytes_out 0 162068 bytes_in 0 162068 station_ip 5.119.161.192 162068 port 710 162068 unique_id port 162069 username farhad2 162069 mac 162069 bytes_out 3393082 162069 bytes_in 39650798 162069 station_ip 5.120.28.122 162069 port 698 162069 unique_id port 162069 remote_ip 10.8.0.190 162071 username morteza 162071 mac 162071 bytes_out 0 162071 bytes_in 0 162071 station_ip 37.129.38.105 162071 port 706 162071 unique_id port 162071 remote_ip 10.8.0.46 162074 username morteza 162074 mac 162074 bytes_out 2072 162074 bytes_in 4590 162074 station_ip 37.129.38.105 162074 port 698 162074 unique_id port 162074 remote_ip 10.8.0.46 162075 username morteza 162075 mac 162075 bytes_out 0 162075 bytes_in 0 162075 station_ip 37.129.38.105 162075 port 698 162075 unique_id port 162075 remote_ip 10.8.0.46 162077 username morteza 162077 mac 162077 bytes_out 0 162077 bytes_in 0 162077 station_ip 37.129.38.105 162077 port 698 162077 unique_id port 162077 remote_ip 10.8.0.46 162093 username mohammadjavad 162093 mac 162093 bytes_out 19793 162093 bytes_in 163773 162093 station_ip 113.203.10.130 162093 port 688 162093 unique_id port 162093 remote_ip 10.8.0.142 162094 username morteza 162094 mac 162094 bytes_out 0 162094 bytes_in 0 162094 station_ip 37.129.38.105 162094 port 688 162094 unique_id port 162094 remote_ip 10.8.0.46 162096 username morteza 162096 mac 162096 bytes_out 0 162096 bytes_in 0 162096 station_ip 37.129.38.105 162096 port 361 162096 unique_id port 162096 remote_ip 10.8.1.62 162097 username morteza 162097 mac 162097 bytes_out 0 162097 bytes_in 0 162097 station_ip 37.129.38.105 162097 port 362 162097 unique_id port 162097 remote_ip 10.8.1.62 162100 username morteza 162100 mac 162100 bytes_out 2145 162100 bytes_in 3981 162100 station_ip 37.129.38.105 162100 port 702 162100 unique_id port 162100 remote_ip 10.8.0.46 162101 username milan 162101 kill_reason Another user logged on this global unique id 162101 mac 162101 bytes_out 0 162101 bytes_in 0 162101 station_ip 5.119.161.192 162101 port 710 162101 unique_id port 162106 username ahmadi1 162106 mac 162106 bytes_out 0 162086 kill_reason Another user logged on this global unique id 162086 mac 162086 bytes_out 0 162086 bytes_in 0 162086 station_ip 5.119.161.192 162086 port 710 162086 unique_id port 162089 username morteza 162089 kill_reason Maximum number of concurrent logins reached 162089 mac 162089 bytes_out 0 162089 bytes_in 0 162089 station_ip 37.129.38.105 162089 port 361 162089 unique_id port 162091 username barzegar 162091 mac 162091 bytes_out 0 162091 bytes_in 0 162091 station_ip 5.119.87.5 162091 port 360 162091 unique_id port 162091 remote_ip 10.8.1.174 162092 username morteza 162092 kill_reason Maximum check online fails reached 162092 mac 162092 bytes_out 0 162092 bytes_in 0 162092 station_ip 37.129.38.105 162092 port 698 162092 unique_id port 162099 username tahmasebi 162099 mac 162099 bytes_out 7135 162099 bytes_in 9619 162099 station_ip 5.119.68.191 162099 port 688 162099 unique_id port 162099 remote_ip 10.8.0.42 162102 username godarzi 162102 mac 162102 bytes_out 517335 162102 bytes_in 3956976 162102 station_ip 5.120.83.48 162102 port 705 162102 unique_id port 162102 remote_ip 10.8.0.174 162103 username morteza 162103 mac 162103 bytes_out 0 162103 bytes_in 0 162103 station_ip 37.129.38.105 162103 port 688 162103 unique_id port 162103 remote_ip 10.8.0.46 162104 username Mahin 162104 mac 162104 bytes_out 0 162104 bytes_in 0 162104 station_ip 5.120.174.205 162104 port 359 162104 unique_id port 162104 remote_ip 10.8.1.186 162105 username jamali 162105 mac 162105 bytes_out 0 162105 bytes_in 0 162105 station_ip 5.119.86.183 162105 port 696 162105 unique_id port 162107 username Mahin 162107 mac 162107 bytes_out 0 162107 bytes_in 0 162107 station_ip 5.120.174.205 162107 port 359 162107 unique_id port 162107 remote_ip 10.8.1.186 162110 username morteza 162110 mac 162110 bytes_out 0 162110 bytes_in 0 162110 station_ip 37.129.38.105 162110 port 705 162110 unique_id port 162110 remote_ip 10.8.0.46 162112 username hashtadani4 162112 kill_reason Another user logged on this global unique id 162112 mac 162112 bytes_out 0 162112 bytes_in 0 162112 station_ip 113.203.119.86 162112 port 712 162112 unique_id port 162112 remote_ip 10.8.0.182 162113 username sabaghnezhad 162113 mac 162113 bytes_out 0 162113 bytes_in 0 162113 station_ip 83.123.98.173 162113 port 358 162113 unique_id port 162113 remote_ip 10.8.1.130 162114 username morteza 162114 mac 162114 bytes_out 0 162114 bytes_in 0 162114 station_ip 37.129.38.105 162114 port 708 162114 unique_id port 162114 remote_ip 10.8.0.46 162116 username morteza 162116 kill_reason Maximum check online fails reached 162116 mac 162116 bytes_out 0 162116 bytes_in 0 162116 station_ip 37.129.38.105 162116 port 705 162116 unique_id port 162122 username tahmasebi 162122 mac 162122 bytes_out 131943 162122 bytes_in 1039966 162122 station_ip 5.119.68.191 162122 port 702 162122 unique_id port 162122 remote_ip 10.8.0.42 162125 username meysam 162125 kill_reason Another user logged on this global unique id 162125 mac 162125 bytes_out 0 162125 bytes_in 0 162125 station_ip 188.158.50.135 162125 port 354 162125 unique_id port 162125 remote_ip 10.8.1.34 162126 username morteza 162126 mac 162126 bytes_out 0 162126 bytes_in 0 162126 station_ip 37.129.38.105 162126 port 702 162126 unique_id port 162126 remote_ip 10.8.0.46 162129 username houshang 162129 kill_reason Another user logged on this global unique id 162129 mac 162129 bytes_out 0 162129 bytes_in 0 162129 station_ip 5.119.84.57 162129 port 696 162106 bytes_in 0 162106 station_ip 83.122.191.129 162106 port 688 162106 unique_id port 162106 remote_ip 10.8.0.250 162108 username morteza 162108 mac 162108 bytes_out 0 162108 bytes_in 0 162108 station_ip 37.129.38.105 162108 port 688 162108 unique_id port 162108 remote_ip 10.8.0.46 162111 username Mahin 162111 mac 162111 bytes_out 2538 162111 bytes_in 4698 162111 station_ip 5.120.174.205 162111 port 688 162111 unique_id port 162111 remote_ip 10.8.0.162 162120 username morteza 162120 mac 162120 bytes_out 0 162120 bytes_in 0 162120 station_ip 37.129.38.105 162120 port 708 162120 unique_id port 162120 remote_ip 10.8.0.46 162123 username hashtadani4 162123 mac 162123 bytes_out 0 162123 bytes_in 0 162123 station_ip 113.203.119.86 162123 port 712 162123 unique_id port 162128 username tahmasebi 162128 mac 162128 bytes_out 27579 162128 bytes_in 121525 162128 station_ip 5.119.68.191 162128 port 708 162128 unique_id port 162128 remote_ip 10.8.0.42 162131 username farhad2 162131 kill_reason Another user logged on this global unique id 162131 mac 162131 bytes_out 0 162131 bytes_in 0 162131 station_ip 5.120.28.122 162131 port 357 162131 unique_id port 162131 remote_ip 10.8.1.222 162134 username hashtadani4 162134 mac 162134 bytes_out 0 162134 bytes_in 0 162134 station_ip 113.203.119.86 162134 port 712 162134 unique_id port 162134 remote_ip 10.8.0.182 162139 username morteza 162139 mac 162139 bytes_out 2019 162139 bytes_in 4272 162139 station_ip 37.129.38.105 162139 port 711 162139 unique_id port 162139 remote_ip 10.8.0.46 162140 username houshang 162140 mac 162140 bytes_out 0 162140 bytes_in 0 162140 station_ip 5.119.84.57 162140 port 696 162140 unique_id port 162141 username morteza 162141 kill_reason Maximum check online fails reached 162141 mac 162141 bytes_out 0 162141 bytes_in 0 162141 station_ip 37.129.38.105 162141 port 711 162141 unique_id port 162143 username tahmasebi 162143 mac 162143 bytes_out 15874 162143 bytes_in 17732 162143 station_ip 5.119.68.191 162143 port 708 162143 unique_id port 162143 remote_ip 10.8.0.42 162146 username tahmasebi 162146 mac 162146 bytes_out 0 162146 bytes_in 0 162146 station_ip 5.119.68.191 162146 port 708 162146 unique_id port 162146 remote_ip 10.8.0.42 162148 username barzegar 162148 mac 162148 bytes_out 0 162148 bytes_in 0 162148 station_ip 5.119.87.5 162148 port 359 162148 unique_id port 162148 remote_ip 10.8.1.174 162150 username meysam 162150 mac 162150 bytes_out 0 162150 bytes_in 0 162150 station_ip 188.158.50.135 162150 port 354 162150 unique_id port 162154 username kalantary 162154 mac 162154 bytes_out 311957 162154 bytes_in 1436570 162154 station_ip 83.122.48.77 162154 port 358 162154 unique_id port 162154 remote_ip 10.8.1.26 162158 username farhad2 162158 kill_reason Another user logged on this global unique id 162158 mac 162158 bytes_out 0 162158 bytes_in 0 162158 station_ip 5.120.28.122 162158 port 357 162158 unique_id port 162161 username aminvpn 162161 mac 162161 bytes_out 424179 162161 bytes_in 8783632 162161 station_ip 5.119.190.67 162161 port 696 162161 unique_id port 162161 remote_ip 10.8.0.14 162163 username hashtadani4 162163 mac 162163 bytes_out 314250 162163 bytes_in 4413136 162163 station_ip 113.203.119.86 162163 port 706 162163 unique_id port 162163 remote_ip 10.8.0.182 162165 username milan 162165 kill_reason Another user logged on this global unique id 162165 mac 162165 bytes_out 0 162165 bytes_in 0 162109 bytes_out 117249 162109 bytes_in 1140366 162109 station_ip 5.119.68.191 162109 port 702 162109 unique_id port 162109 remote_ip 10.8.0.42 162115 username tahmasebi 162115 mac 162115 bytes_out 405033 162115 bytes_in 4475925 162115 station_ip 5.119.68.191 162115 port 702 162115 unique_id port 162115 remote_ip 10.8.0.42 162117 username morteza 162117 mac 162117 bytes_out 0 162117 bytes_in 0 162117 station_ip 37.129.38.105 162117 port 702 162117 unique_id port 162117 remote_ip 10.8.0.46 162118 username vanila 162118 mac 162118 bytes_out 280712 162118 bytes_in 2107417 162118 station_ip 37.129.25.123 162118 port 707 162118 unique_id port 162118 remote_ip 10.8.0.178 162119 username milan 162119 kill_reason Another user logged on this global unique id 162119 mac 162119 bytes_out 0 162119 bytes_in 0 162119 station_ip 5.119.161.192 162119 port 710 162119 unique_id port 162121 username godarzi 162121 mac 162121 bytes_out 63012 162121 bytes_in 96249 162121 station_ip 5.120.83.48 162121 port 688 162121 unique_id port 162121 remote_ip 10.8.0.174 162124 username hashtadani4 162124 mac 162124 bytes_out 0 162124 bytes_in 0 162124 station_ip 113.203.119.86 162124 port 702 162124 unique_id port 162124 remote_ip 10.8.0.182 162127 username hashtadani4 162127 mac 162127 bytes_out 0 162127 bytes_in 0 162127 station_ip 113.203.119.86 162127 port 709 162127 unique_id port 162127 remote_ip 10.8.0.182 162132 username morteza 162132 mac 162132 bytes_out 0 162132 bytes_in 0 162132 station_ip 37.129.38.105 162132 port 711 162132 unique_id port 162132 remote_ip 10.8.0.46 162136 username barzegar 162136 mac 162136 bytes_out 0 162136 bytes_in 0 162136 station_ip 5.119.87.5 162136 port 361 162136 unique_id port 162136 remote_ip 10.8.1.174 162142 username morteza 162142 mac 162142 bytes_out 0 162142 bytes_in 0 162142 station_ip 37.129.38.105 162142 port 713 162142 unique_id port 162142 remote_ip 10.8.0.46 162144 username milan 162144 kill_reason Another user logged on this global unique id 162144 mac 162144 bytes_out 0 162144 bytes_in 0 162144 station_ip 5.119.161.192 162144 port 710 162144 unique_id port 162147 username morteza 162147 mac 162147 bytes_out 0 162147 bytes_in 0 162147 station_ip 37.129.38.105 162147 port 358 162147 unique_id port 162147 remote_ip 10.8.1.62 162149 username hashtadani4 162149 mac 162149 bytes_out 352425 162149 bytes_in 3409218 162149 station_ip 113.203.119.86 162149 port 712 162149 unique_id port 162149 remote_ip 10.8.0.182 162152 username hashtadani4 162152 mac 162152 bytes_out 0 162152 bytes_in 0 162152 station_ip 113.203.119.86 162152 port 712 162152 unique_id port 162152 remote_ip 10.8.0.182 162157 username aminvpn 162157 mac 162157 bytes_out 1418458 162157 bytes_in 39722072 162157 station_ip 83.122.120.158 162157 port 673 162157 unique_id port 162157 remote_ip 10.8.0.14 162159 username morteza 162159 kill_reason Maximum check online fails reached 162159 mac 162159 bytes_out 0 162159 bytes_in 0 162159 station_ip 37.129.38.105 162159 port 712 162159 unique_id port 162167 username morteza 162167 mac 162167 bytes_out 0 162167 bytes_in 0 162167 station_ip 37.129.38.105 162167 port 706 162167 unique_id port 162167 remote_ip 10.8.0.46 162168 username hashtadani4 162168 mac 162168 bytes_out 0 162168 bytes_in 0 162168 station_ip 83.122.134.146 162168 port 673 162168 unique_id port 162168 remote_ip 10.8.0.182 162170 username morteza 162170 mac 162129 unique_id port 162129 remote_ip 10.8.0.134 162130 username hashtadani4 162130 mac 162130 bytes_out 0 162130 bytes_in 0 162130 station_ip 113.203.119.86 162130 port 708 162130 unique_id port 162130 remote_ip 10.8.0.182 162133 username hashtadani4 162133 kill_reason Maximum check online fails reached 162133 mac 162133 bytes_out 0 162133 bytes_in 0 162133 station_ip 113.203.119.86 162133 port 702 162133 unique_id port 162135 username tahmasebi 162135 mac 162135 bytes_out 19559 162135 bytes_in 84202 162135 station_ip 5.119.68.191 162135 port 708 162135 unique_id port 162135 remote_ip 10.8.0.42 162137 username hashtadani4 162137 mac 162137 bytes_out 0 162137 bytes_in 0 162137 station_ip 113.203.119.86 162137 port 708 162137 unique_id port 162137 remote_ip 10.8.0.182 162138 username hashtadani4 162138 mac 162138 bytes_out 0 162138 bytes_in 0 162138 station_ip 113.203.119.86 162138 port 712 162138 unique_id port 162138 remote_ip 10.8.0.182 162145 username godarzi 162145 mac 162145 bytes_out 828664 162145 bytes_in 851872 162145 station_ip 5.120.83.48 162145 port 709 162145 unique_id port 162145 remote_ip 10.8.0.174 162151 username hashtadani4 162151 mac 162151 bytes_out 0 162151 bytes_in 0 162151 station_ip 113.203.119.86 162151 port 712 162151 unique_id port 162151 remote_ip 10.8.0.182 162153 username jamali 162153 mac 162153 bytes_out 37549 162153 bytes_in 46633 162153 station_ip 5.119.86.183 162153 port 706 162153 unique_id port 162153 remote_ip 10.8.0.70 162155 username morteza 162155 mac 162155 bytes_out 0 162155 bytes_in 0 162155 station_ip 37.129.38.105 162155 port 712 162155 unique_id port 162155 remote_ip 10.8.0.46 162156 username jafari 162156 mac 162156 bytes_out 2770773 162156 bytes_in 37127387 162156 station_ip 5.134.143.111 162156 port 696 162156 unique_id port 162156 remote_ip 10.8.0.242 162160 username tahmasebi 162160 mac 162160 bytes_out 97619 162160 bytes_in 88196 162160 station_ip 5.119.68.191 162160 port 708 162160 unique_id port 162160 remote_ip 10.8.0.42 162162 username morteza 162162 mac 162162 bytes_out 0 162162 bytes_in 0 162162 station_ip 37.129.38.105 162162 port 358 162162 unique_id port 162162 remote_ip 10.8.1.62 162164 username aminvpn 162164 mac 162164 bytes_out 0 162164 bytes_in 0 162164 station_ip 83.122.120.158 162164 port 673 162164 unique_id port 162164 remote_ip 10.8.0.14 162169 username morteza 162169 mac 162169 bytes_out 0 162169 bytes_in 0 162169 station_ip 37.129.38.105 162169 port 706 162169 unique_id port 162169 remote_ip 10.8.0.46 162176 username barzegar 162176 mac 162176 bytes_out 0 162176 bytes_in 0 162176 station_ip 5.119.87.5 162176 port 673 162176 unique_id port 162176 remote_ip 10.8.0.234 162183 username tahmasebi 162183 mac 162183 bytes_out 50634 162183 bytes_in 415547 162183 station_ip 5.119.68.191 162183 port 673 162183 unique_id port 162183 remote_ip 10.8.0.42 162185 username mohammadjavad 162185 mac 162185 bytes_out 400860 162185 bytes_in 4890110 162185 station_ip 83.123.176.125 162185 port 707 162185 unique_id port 162185 remote_ip 10.8.0.142 162191 username morteza 162191 kill_reason Maximum check online fails reached 162191 mac 162191 bytes_out 0 162191 bytes_in 0 162191 station_ip 37.129.38.105 162191 port 688 162191 unique_id port 162193 username aminvpn 162193 mac 162193 bytes_out 50091 162193 bytes_in 107672 162193 station_ip 5.119.190.67 162193 port 696 162193 unique_id port 162165 station_ip 5.119.161.192 162165 port 710 162165 unique_id port 162166 username barzegar 162166 mac 162166 bytes_out 0 162166 bytes_in 0 162166 station_ip 5.119.87.5 162166 port 673 162166 unique_id port 162166 remote_ip 10.8.0.234 162171 username morteza 162171 mac 162171 bytes_out 0 162171 bytes_in 0 162171 station_ip 37.129.38.105 162171 port 673 162171 unique_id port 162171 remote_ip 10.8.0.46 162173 username morteza 162173 mac 162173 bytes_out 0 162173 bytes_in 0 162173 station_ip 37.129.38.105 162173 port 713 162173 unique_id port 162173 remote_ip 10.8.0.46 162175 username hashtadani4 162175 mac 162175 bytes_out 0 162175 bytes_in 0 162175 station_ip 83.122.134.146 162175 port 358 162175 unique_id port 162175 remote_ip 10.8.1.142 162178 username aminvpn 162178 mac 162178 bytes_out 92672 162178 bytes_in 152555 162178 station_ip 5.119.190.67 162178 port 696 162178 unique_id port 162178 remote_ip 10.8.0.14 162180 username mehdizare 162180 mac 162180 bytes_out 556654 162180 bytes_in 436184 162180 station_ip 83.122.5.111 162180 port 703 162180 unique_id port 162180 remote_ip 10.8.0.90 162182 username aminvpn 162182 mac 162182 bytes_out 0 162182 bytes_in 0 162182 station_ip 83.122.120.158 162182 port 714 162182 unique_id port 162182 remote_ip 10.8.0.14 162184 username hashtadani4 162184 kill_reason Maximum check online fails reached 162184 mac 162184 bytes_out 0 162184 bytes_in 0 162184 station_ip 83.122.134.146 162184 port 713 162184 unique_id port 162188 username aminvpn 162188 unique_id port 162188 terminate_cause Lost-Carrier 162188 bytes_out 12533113 162188 bytes_in 536420061 162188 station_ip 31.57.128.87 162188 port 15728649 162188 nas_port_type Virtual 162188 remote_ip 5.5.5.245 162190 username sabaghnezhad 162190 mac 162190 bytes_out 0 162190 bytes_in 0 162190 station_ip 83.123.17.127 162190 port 361 162190 unique_id port 162190 remote_ip 10.8.1.130 162192 username hashtadani4 162192 mac 162192 bytes_out 0 162192 bytes_in 0 162192 station_ip 83.122.134.146 162192 port 707 162192 unique_id port 162192 remote_ip 10.8.0.182 162196 username aminvpn 162196 mac 162196 bytes_out 0 162196 bytes_in 0 162196 station_ip 5.119.190.67 162196 port 709 162196 unique_id port 162196 remote_ip 10.8.0.14 162200 username morteza 162200 mac 162200 bytes_out 0 162200 bytes_in 0 162200 station_ip 37.129.38.105 162200 port 709 162200 unique_id port 162200 remote_ip 10.8.0.46 162202 username morteza 162202 mac 162202 bytes_out 0 162202 bytes_in 0 162202 station_ip 37.129.38.105 162202 port 362 162202 unique_id port 162202 remote_ip 10.8.1.62 162207 username hashtadani4 162207 mac 162207 bytes_out 0 162207 bytes_in 0 162207 station_ip 83.122.134.146 162207 port 361 162207 unique_id port 162207 remote_ip 10.8.1.142 162208 username tahmasebi 162208 mac 162208 bytes_out 20906 162208 bytes_in 52481 162208 station_ip 5.119.68.191 162208 port 714 162208 unique_id port 162208 remote_ip 10.8.0.42 162215 username hamid 162215 kill_reason Another user logged on this global unique id 162215 mac 162215 bytes_out 0 162215 bytes_in 0 162215 station_ip 37.129.182.151 162215 port 715 162215 unique_id port 162215 remote_ip 10.8.0.214 162217 username morteza 162217 mac 162217 bytes_out 0 162217 bytes_in 0 162217 station_ip 37.129.38.105 162217 port 359 162217 unique_id port 162217 remote_ip 10.8.1.62 162221 username tahmasebi 162221 mac 162221 bytes_out 147092 162221 bytes_in 139391 162170 bytes_out 0 162170 bytes_in 0 162170 station_ip 37.129.38.105 162170 port 673 162170 unique_id port 162170 remote_ip 10.8.0.46 162172 username tahmasebi 162172 mac 162172 bytes_out 0 162172 bytes_in 0 162172 station_ip 5.119.68.191 162172 port 673 162172 unique_id port 162172 remote_ip 10.8.0.42 162174 username hashtadani4 162174 kill_reason Maximum check online fails reached 162174 mac 162174 bytes_out 0 162174 bytes_in 0 162174 station_ip 83.122.134.146 162174 port 708 162174 unique_id port 162177 username pourshad 162177 mac 162177 bytes_out 0 162177 bytes_in 0 162177 station_ip 5.119.59.217 162177 port 359 162177 unique_id port 162177 remote_ip 10.8.1.154 162179 username forozandeh1 162179 kill_reason Another user logged on this global unique id 162179 mac 162179 bytes_out 0 162179 bytes_in 0 162179 station_ip 113.203.21.41 162179 port 688 162179 unique_id port 162179 remote_ip 10.8.0.130 162181 username godarzi 162181 mac 162181 bytes_out 2849342 162181 bytes_in 10724532 162181 station_ip 5.120.83.48 162181 port 709 162181 unique_id port 162181 remote_ip 10.8.0.174 162186 username forozandeh1 162186 mac 162186 bytes_out 0 162186 bytes_in 0 162186 station_ip 113.203.21.41 162186 port 688 162186 unique_id port 162187 username milan 162187 kill_reason Another user logged on this global unique id 162187 mac 162187 bytes_out 0 162187 bytes_in 0 162187 station_ip 5.119.161.192 162187 port 710 162187 unique_id port 162189 username hashtadani4 162189 mac 162189 bytes_out 2538 162189 bytes_in 4847 162189 station_ip 83.122.134.146 162189 port 703 162189 unique_id port 162189 remote_ip 10.8.0.182 162197 username aminvpn 162197 mac 162197 bytes_out 0 162197 bytes_in 0 162197 station_ip 83.122.120.158 162197 port 707 162197 unique_id port 162197 remote_ip 10.8.0.14 162199 username aminvpn 162199 mac 162199 bytes_out 0 162199 bytes_in 0 162199 station_ip 5.119.190.67 162199 port 709 162199 unique_id port 162199 remote_ip 10.8.0.14 162204 username morteza 162204 mac 162204 bytes_out 0 162204 bytes_in 0 162204 station_ip 37.129.38.105 162204 port 714 162204 unique_id port 162204 remote_ip 10.8.0.46 162209 username morteza 162209 mac 162209 bytes_out 0 162209 bytes_in 0 162209 station_ip 37.129.38.105 162209 port 716 162209 unique_id port 162209 remote_ip 10.8.0.46 162211 username tahmasebi 162211 mac 162211 bytes_out 15330 162211 bytes_in 19007 162211 station_ip 5.119.68.191 162211 port 718 162211 unique_id port 162211 remote_ip 10.8.0.42 162212 username godarzi 162212 mac 162212 bytes_out 741643 162212 bytes_in 8711693 162212 station_ip 5.120.83.48 162212 port 709 162212 unique_id port 162212 remote_ip 10.8.0.174 162213 username morteza 162213 mac 162213 bytes_out 0 162213 bytes_in 0 162213 station_ip 37.129.38.105 162213 port 363 162213 unique_id port 162213 remote_ip 10.8.1.62 162219 username sabaghnezhad 162219 mac 162219 bytes_out 51756 162219 bytes_in 62096 162219 station_ip 83.123.17.127 162219 port 703 162219 unique_id port 162219 remote_ip 10.8.0.186 162227 username kalantary 162227 mac 162227 bytes_out 0 162227 bytes_in 0 162227 station_ip 83.122.20.149 162227 port 357 162227 unique_id port 162227 remote_ip 10.8.1.26 162233 username hashtadani4 162233 mac 162233 bytes_out 0 162233 bytes_in 0 162233 station_ip 83.122.233.79 162233 port 359 162233 unique_id port 162233 remote_ip 10.8.1.142 162235 username hashtadani4 162235 mac 162235 bytes_out 0 162193 remote_ip 10.8.0.14 162194 username hashtadani4 162194 mac 162194 bytes_out 0 162194 bytes_in 0 162194 station_ip 83.122.134.146 162194 port 709 162194 unique_id port 162194 remote_ip 10.8.0.182 162195 username aminvpn 162195 mac 162195 bytes_out 0 162195 bytes_in 0 162195 station_ip 83.122.120.158 162195 port 707 162195 unique_id port 162195 remote_ip 10.8.0.14 162198 username tahmasebi 162198 mac 162198 bytes_out 0 162198 bytes_in 0 162198 station_ip 5.119.68.191 162198 port 707 162198 unique_id port 162198 remote_ip 10.8.0.42 162201 username kalantary 162201 mac 162201 bytes_out 0 162201 bytes_in 0 162201 station_ip 83.122.20.149 162201 port 362 162201 unique_id port 162201 remote_ip 10.8.1.26 162203 username morteza 162203 mac 162203 bytes_out 0 162203 bytes_in 0 162203 station_ip 37.129.38.105 162203 port 714 162203 unique_id port 162203 remote_ip 10.8.0.46 162205 username barzegar 162205 mac 162205 bytes_out 0 162205 bytes_in 0 162205 station_ip 5.119.87.5 162205 port 359 162205 unique_id port 162205 remote_ip 10.8.1.174 162206 username morteza 162206 mac 162206 bytes_out 0 162206 bytes_in 0 162206 station_ip 37.129.38.105 162206 port 716 162206 unique_id port 162206 remote_ip 10.8.0.46 162210 username morteza 162210 mac 162210 bytes_out 0 162210 bytes_in 0 162210 station_ip 37.129.38.105 162210 port 717 162210 unique_id port 162210 remote_ip 10.8.0.46 162214 username barzegar 162214 mac 162214 bytes_out 0 162214 bytes_in 0 162214 station_ip 5.119.87.5 162214 port 359 162214 unique_id port 162214 remote_ip 10.8.1.174 162216 username kalantary 162216 mac 162216 bytes_out 0 162216 bytes_in 0 162216 station_ip 83.122.20.149 162216 port 361 162216 unique_id port 162216 remote_ip 10.8.1.26 162218 username amin.saeedi 162218 unique_id port 162218 terminate_cause User-Request 162218 bytes_out 7178398 162218 bytes_in 179744613 162218 station_ip 151.238.232.238 162218 port 15728650 162218 nas_port_type Virtual 162218 remote_ip 5.5.5.243 162220 username farhad2 162220 mac 162220 bytes_out 0 162220 bytes_in 0 162220 station_ip 5.120.28.122 162220 port 357 162220 unique_id port 162222 username mehdizare 162222 mac 162222 bytes_out 0 162222 bytes_in 0 162222 station_ip 83.122.5.111 162222 port 358 162222 unique_id port 162222 remote_ip 10.8.1.42 162223 username khademi 162223 mac 162223 bytes_out 0 162223 bytes_in 0 162223 station_ip 113.203.78.111 162223 port 661 162223 unique_id port 162226 username mehdizare 162226 mac 162226 bytes_out 7419 162226 bytes_in 11234 162226 station_ip 83.122.5.111 162226 port 717 162226 unique_id port 162226 remote_ip 10.8.0.90 162228 username hamid 162228 mac 162228 bytes_out 0 162228 bytes_in 0 162228 station_ip 37.129.182.151 162228 port 715 162228 unique_id port 162231 username hashtadani4 162231 mac 162231 bytes_out 18521524 162231 bytes_in 15066835 162231 station_ip 83.122.233.79 162231 port 716 162231 unique_id port 162231 remote_ip 10.8.0.182 162232 username hashtadani4 162232 mac 162232 bytes_out 0 162232 bytes_in 0 162232 station_ip 83.122.233.79 162232 port 703 162232 unique_id port 162232 remote_ip 10.8.0.182 162234 username mohammadjavad 162234 mac 162234 bytes_out 1744592 162234 bytes_in 31869618 162234 station_ip 83.123.176.125 162234 port 696 162234 unique_id port 162234 remote_ip 10.8.0.142 162243 username barzegar 162243 mac 162243 bytes_out 5993304 162243 bytes_in 2361489 162221 station_ip 5.119.68.191 162221 port 717 162221 unique_id port 162221 remote_ip 10.8.0.42 162224 username sabaghnezhad 162224 mac 162224 bytes_out 6461 162224 bytes_in 15754 162224 station_ip 83.123.17.127 162224 port 703 162224 unique_id port 162224 remote_ip 10.8.0.186 162225 username mosi 162225 mac 162225 bytes_out 1630 162225 bytes_in 4004 162225 station_ip 151.235.118.222 162225 port 703 162225 unique_id port 162225 remote_ip 10.8.0.138 162229 username morteza 162229 mac 162229 bytes_out 0 162229 bytes_in 0 162229 station_ip 37.129.38.105 162229 port 358 162229 unique_id port 162229 remote_ip 10.8.1.62 162230 username mosi 162230 mac 162230 bytes_out 1630 162230 bytes_in 3792 162230 station_ip 151.235.118.222 162230 port 703 162230 unique_id port 162230 remote_ip 10.8.0.138 162237 username hashtadani4 162237 mac 162237 bytes_out 0 162237 bytes_in 0 162237 station_ip 83.122.233.79 162237 port 696 162237 unique_id port 162237 remote_ip 10.8.0.182 162238 username hashtadani4 162238 mac 162238 bytes_out 0 162238 bytes_in 0 162238 station_ip 83.122.233.79 162238 port 359 162238 unique_id port 162238 remote_ip 10.8.1.142 162239 username saeed9658 162239 mac 162239 bytes_out 348735 162239 bytes_in 1494821 162239 station_ip 5.119.111.142 162239 port 673 162239 unique_id port 162239 remote_ip 10.8.0.166 162241 username hashtadani4 162241 mac 162241 bytes_out 0 162241 bytes_in 0 162241 station_ip 5.202.97.30 162241 port 359 162241 unique_id port 162241 remote_ip 10.8.1.142 162242 username rajaei 162242 mac 162242 bytes_out 2752068 162242 bytes_in 44277493 162242 station_ip 89.47.64.19 162242 port 714 162242 unique_id port 162242 remote_ip 10.8.0.34 162245 username saeed9658 162245 mac 162245 bytes_out 0 162245 bytes_in 0 162245 station_ip 5.119.111.142 162245 port 673 162245 unique_id port 162245 remote_ip 10.8.0.166 162248 username mehdizare 162248 mac 162248 bytes_out 0 162248 bytes_in 0 162248 station_ip 83.122.5.111 162248 port 357 162248 unique_id port 162248 remote_ip 10.8.1.42 162250 username hashtadani4 162250 mac 162250 bytes_out 0 162250 bytes_in 0 162250 station_ip 5.202.97.30 162250 port 357 162250 unique_id port 162250 remote_ip 10.8.1.142 162252 username morteza 162252 mac 162252 bytes_out 0 162252 bytes_in 0 162252 station_ip 37.129.38.105 162252 port 357 162252 unique_id port 162252 remote_ip 10.8.1.62 162255 username godarzi 162255 mac 162255 bytes_out 0 162255 bytes_in 0 162255 station_ip 5.120.83.48 162255 port 361 162255 unique_id port 162255 remote_ip 10.8.1.230 162264 username barzegar 162264 mac 162264 bytes_out 184602 162264 bytes_in 352553 162264 station_ip 5.119.87.5 162264 port 706 162264 unique_id port 162264 remote_ip 10.8.0.234 162265 username morteza 162265 kill_reason Maximum check online fails reached 162265 mac 162265 bytes_out 0 162265 bytes_in 0 162265 station_ip 37.129.38.105 162265 port 357 162265 unique_id port 162267 username barzegar 162267 mac 162267 bytes_out 0 162267 bytes_in 0 162267 station_ip 5.119.87.5 162267 port 359 162267 unique_id port 162267 remote_ip 10.8.1.174 162277 username godarzi 162277 mac 162277 bytes_out 197376 162277 bytes_in 1153740 162277 station_ip 5.120.83.48 162277 port 358 162277 unique_id port 162277 remote_ip 10.8.1.230 162282 username meysam 162282 mac 162282 bytes_out 170645 162282 bytes_in 2056066 162282 station_ip 188.159.254.111 162282 port 661 162235 bytes_in 0 162235 station_ip 83.122.233.79 162235 port 696 162235 unique_id port 162235 remote_ip 10.8.0.182 162236 username nilufarrajaei 162236 mac 162236 bytes_out 0 162236 bytes_in 0 162236 station_ip 83.123.37.100 162236 port 328 162236 unique_id port 162236 remote_ip 10.8.1.166 162240 username hashtadani4 162240 mac 162240 bytes_out 0 162240 bytes_in 0 162240 station_ip 83.122.233.79 162240 port 359 162240 unique_id port 162240 remote_ip 10.8.1.142 162244 username hashtadani4 162244 mac 162244 bytes_out 1666 162244 bytes_in 4161 162244 station_ip 83.122.233.79 162244 port 696 162244 unique_id port 162244 remote_ip 10.8.0.182 162246 username morteza 162246 mac 162246 bytes_out 0 162246 bytes_in 0 162246 station_ip 37.129.38.105 162246 port 661 162246 unique_id port 162246 remote_ip 10.8.0.46 162249 username tahmasebi 162249 mac 162249 bytes_out 0 162249 bytes_in 0 162249 station_ip 5.119.68.191 162249 port 661 162249 unique_id port 162249 remote_ip 10.8.0.42 162251 username godarzi 162251 mac 162251 bytes_out 0 162251 bytes_in 0 162251 station_ip 5.120.83.48 162251 port 362 162251 unique_id port 162251 remote_ip 10.8.1.230 162256 username Mahin 162256 mac 162256 bytes_out 154548 162256 bytes_in 254323 162256 station_ip 5.120.174.205 162256 port 706 162256 unique_id port 162256 remote_ip 10.8.0.162 162257 username sabaghnezhad 162257 mac 162257 bytes_out 0 162257 bytes_in 0 162257 station_ip 83.123.17.127 162257 port 358 162257 unique_id port 162257 remote_ip 10.8.1.130 162259 username farhad2 162259 mac 162259 bytes_out 26451448 162259 bytes_in 12140359 162259 station_ip 5.120.28.122 162259 port 718 162259 unique_id port 162259 remote_ip 10.8.0.190 162260 username meysam 162260 mac 162260 bytes_out 0 162260 bytes_in 0 162260 station_ip 188.159.254.111 162260 port 357 162260 unique_id port 162260 remote_ip 10.8.1.34 162263 username morteza 162263 mac 162263 bytes_out 0 162263 bytes_in 0 162263 station_ip 37.129.38.105 162263 port 714 162263 unique_id port 162263 remote_ip 10.8.0.46 162266 username barzegar 162266 mac 162266 bytes_out 0 162266 bytes_in 0 162266 station_ip 5.119.87.5 162266 port 714 162266 unique_id port 162266 remote_ip 10.8.0.234 162268 username morteza 162268 mac 162268 bytes_out 0 162268 bytes_in 0 162268 station_ip 37.129.38.105 162268 port 716 162268 unique_id port 162268 remote_ip 10.8.0.46 162269 username morteza 162269 mac 162269 bytes_out 0 162269 bytes_in 0 162269 station_ip 37.129.38.105 162269 port 716 162269 unique_id port 162269 remote_ip 10.8.0.46 162271 username tahmasebi 162271 mac 162271 bytes_out 29064301 162271 bytes_in 8284419 162271 station_ip 5.119.68.191 162271 port 661 162271 unique_id port 162271 remote_ip 10.8.0.42 162275 username ghiyasi 162275 mac 162275 bytes_out 0 162275 bytes_in 0 162275 station_ip 5.119.184.26 162275 port 718 162275 unique_id port 162275 remote_ip 10.8.0.38 162278 username nilufarrajaei 162278 mac 162278 bytes_out 0 162278 bytes_in 0 162278 station_ip 83.123.37.100 162278 port 328 162278 unique_id port 162278 remote_ip 10.8.1.166 162281 username farhad2 162281 kill_reason Another user logged on this global unique id 162281 mac 162281 bytes_out 0 162281 bytes_in 0 162281 station_ip 5.120.28.122 162281 port 703 162281 unique_id port 162281 remote_ip 10.8.0.190 162288 username barzegar 162288 mac 162288 bytes_out 0 162288 bytes_in 0 162243 station_ip 5.119.87.5 162243 port 661 162243 unique_id port 162243 remote_ip 10.8.0.234 162247 username hashtadani4 162247 mac 162247 bytes_out 0 162247 bytes_in 0 162247 station_ip 5.202.97.30 162247 port 361 162247 unique_id port 162247 remote_ip 10.8.1.142 162253 username tahmasebi 162253 mac 162253 bytes_out 0 162253 bytes_in 0 162253 station_ip 5.119.68.191 162253 port 661 162253 unique_id port 162253 remote_ip 10.8.0.42 162254 username morteza 162254 mac 162254 bytes_out 0 162254 bytes_in 0 162254 station_ip 37.129.38.105 162254 port 661 162254 unique_id port 162254 remote_ip 10.8.0.46 162258 username barzegar 162258 mac 162258 bytes_out 0 162258 bytes_in 0 162258 station_ip 5.119.87.5 162258 port 359 162258 unique_id port 162258 remote_ip 10.8.1.174 162261 username morteza 162261 mac 162261 bytes_out 0 162261 bytes_in 0 162261 station_ip 37.129.38.105 162261 port 714 162261 unique_id port 162261 remote_ip 10.8.0.46 162262 username morteza 162262 mac 162262 bytes_out 0 162262 bytes_in 0 162262 station_ip 37.129.38.105 162262 port 357 162262 unique_id port 162262 remote_ip 10.8.1.62 162270 username barzegar 162270 kill_reason Maximum check online fails reached 162270 mac 162270 bytes_out 0 162270 bytes_in 0 162270 station_ip 5.119.87.5 162270 port 714 162270 unique_id port 162272 username tahmasebi 162272 mac 162272 bytes_out 0 162272 bytes_in 0 162272 station_ip 5.119.68.191 162272 port 661 162272 unique_id port 162272 remote_ip 10.8.0.42 162273 username morteza 162273 mac 162273 bytes_out 0 162273 bytes_in 0 162273 station_ip 37.129.38.105 162273 port 359 162273 unique_id port 162273 remote_ip 10.8.1.62 162274 username morteza 162274 kill_reason Maximum check online fails reached 162274 mac 162274 bytes_out 0 162274 bytes_in 0 162274 station_ip 37.129.38.105 162274 port 716 162274 unique_id port 162276 username barzegar 162276 mac 162276 bytes_out 17927 162276 bytes_in 26050 162276 station_ip 5.119.87.5 162276 port 717 162276 unique_id port 162276 remote_ip 10.8.0.234 162279 username morteza 162279 mac 162279 bytes_out 0 162279 bytes_in 0 162279 station_ip 37.129.38.105 162279 port 717 162279 unique_id port 162279 remote_ip 10.8.0.46 162280 username jamali 162280 mac 162280 bytes_out 0 162280 bytes_in 0 162280 station_ip 5.119.86.183 162280 port 354 162280 unique_id port 162280 remote_ip 10.8.1.82 162283 username jamali 162283 mac 162283 bytes_out 0 162283 bytes_in 0 162283 station_ip 5.119.86.183 162283 port 354 162283 unique_id port 162283 remote_ip 10.8.1.82 162284 username morteza 162284 mac 162284 bytes_out 0 162284 bytes_in 0 162284 station_ip 37.129.38.105 162284 port 354 162284 unique_id port 162284 remote_ip 10.8.1.62 162287 username morteza 162287 mac 162287 bytes_out 0 162287 bytes_in 0 162287 station_ip 37.129.38.105 162287 port 328 162287 unique_id port 162287 remote_ip 10.8.1.62 162292 username godarzi 162292 mac 162292 bytes_out 0 162292 bytes_in 0 162292 station_ip 5.120.83.48 162292 port 328 162292 unique_id port 162292 remote_ip 10.8.1.230 162293 username farhad2 162293 mac 162293 bytes_out 0 162293 bytes_in 0 162293 station_ip 5.120.28.122 162293 port 703 162293 unique_id port 162294 username morteza 162294 mac 162294 bytes_out 0 162294 bytes_in 0 162294 station_ip 37.129.38.105 162294 port 703 162294 unique_id port 162294 remote_ip 10.8.0.46 162299 username morteza 162282 unique_id port 162282 remote_ip 10.8.0.110 162285 username barzegar 162285 mac 162285 bytes_out 0 162285 bytes_in 0 162285 station_ip 5.119.87.5 162285 port 328 162285 unique_id port 162285 remote_ip 10.8.1.174 162286 username Mahin 162286 mac 162286 bytes_out 0 162286 bytes_in 0 162286 station_ip 5.120.174.205 162286 port 362 162286 unique_id port 162286 remote_ip 10.8.1.186 162289 username godarzi 162289 mac 162289 bytes_out 0 162289 bytes_in 0 162289 station_ip 5.120.83.48 162289 port 354 162289 unique_id port 162289 remote_ip 10.8.1.230 162290 username ghiyasi 162290 mac 162290 bytes_out 476482 162290 bytes_in 2288375 162290 station_ip 5.119.184.26 162290 port 719 162290 unique_id port 162290 remote_ip 10.8.0.38 162291 username ghiyasi 162291 mac 162291 bytes_out 40509 162291 bytes_in 72839 162291 station_ip 5.119.247.236 162291 port 717 162291 unique_id port 162291 remote_ip 10.8.0.38 162295 username saeed9658 162295 mac 162295 bytes_out 301789 162295 bytes_in 1700997 162295 station_ip 5.119.111.142 162295 port 673 162295 unique_id port 162295 remote_ip 10.8.0.166 162298 username nilufarrajaei 162298 mac 162298 bytes_out 0 162298 bytes_in 0 162298 station_ip 83.123.37.100 162298 port 359 162298 unique_id port 162298 remote_ip 10.8.1.166 162301 username morteza 162301 mac 162301 bytes_out 0 162301 bytes_in 0 162301 station_ip 37.129.38.105 162301 port 719 162301 unique_id port 162301 remote_ip 10.8.0.46 162302 username morteza 162302 mac 162302 bytes_out 0 162302 bytes_in 0 162302 station_ip 37.129.38.105 162302 port 363 162302 unique_id port 162302 remote_ip 10.8.1.62 162307 username saeed9658 162307 mac 162307 bytes_out 0 162307 bytes_in 0 162307 station_ip 5.119.111.142 162307 port 706 162307 unique_id port 162307 remote_ip 10.8.0.166 162309 username barzegar 162309 mac 162309 bytes_out 635084 162309 bytes_in 7330579 162309 station_ip 5.119.87.5 162309 port 717 162309 unique_id port 162309 remote_ip 10.8.0.234 162310 username morteza 162310 mac 162310 bytes_out 0 162310 bytes_in 0 162310 station_ip 37.129.38.105 162310 port 364 162310 unique_id port 162310 remote_ip 10.8.1.62 162311 username godarzi 162311 mac 162311 bytes_out 0 162311 bytes_in 0 162311 station_ip 5.119.62.37 162311 port 359 162311 unique_id port 162311 remote_ip 10.8.1.230 162314 username morteza 162314 mac 162314 bytes_out 0 162314 bytes_in 0 162314 station_ip 37.129.38.105 162314 port 361 162314 unique_id port 162314 remote_ip 10.8.1.62 162315 username rezaei 162315 kill_reason Another user logged on this global unique id 162315 mac 162315 bytes_out 0 162315 bytes_in 0 162315 station_ip 5.119.53.117 162315 port 661 162315 unique_id port 162315 remote_ip 10.8.0.230 162320 username morteza 162320 mac 162320 bytes_out 0 162320 bytes_in 0 162320 station_ip 37.129.38.105 162320 port 359 162320 unique_id port 162320 remote_ip 10.8.1.62 162322 username barzegar 162322 mac 162322 bytes_out 0 162322 bytes_in 0 162322 station_ip 5.119.87.5 162322 port 722 162322 unique_id port 162322 remote_ip 10.8.0.234 162324 username vanila 162324 mac 162324 bytes_out 67580 162324 bytes_in 194463 162324 station_ip 37.129.80.127 162324 port 723 162324 unique_id port 162324 remote_ip 10.8.0.178 162325 username aminvpn 162325 mac 162325 bytes_out 0 162325 bytes_in 0 162325 station_ip 5.119.190.67 162325 port 724 162325 unique_id port 162288 station_ip 5.119.87.5 162288 port 328 162288 unique_id port 162288 remote_ip 10.8.1.174 162296 username morteza 162296 kill_reason Maximum check online fails reached 162296 mac 162296 bytes_out 0 162296 bytes_in 0 162296 station_ip 37.129.38.105 162296 port 354 162296 unique_id port 162297 username saeed9658 162297 mac 162297 bytes_out 0 162297 bytes_in 0 162297 station_ip 5.119.111.142 162297 port 362 162297 unique_id port 162297 remote_ip 10.8.1.210 162300 username sabaghnezhad 162300 mac 162300 bytes_out 166506 162300 bytes_in 367447 162300 station_ip 83.123.17.127 162300 port 706 162300 unique_id port 162300 remote_ip 10.8.0.186 162304 username saeed9658 162304 mac 162304 bytes_out 0 162304 bytes_in 0 162304 station_ip 5.119.111.142 162304 port 361 162304 unique_id port 162304 remote_ip 10.8.1.210 162312 username hashtadani4 162312 kill_reason Maximum check online fails reached 162312 mac 162312 bytes_out 0 162312 bytes_in 0 162312 station_ip 113.203.13.40 162312 port 719 162312 unique_id port 162329 username barzegar 162329 mac 162329 bytes_out 2575 162329 bytes_in 4900 162329 station_ip 5.119.87.5 162329 port 723 162329 unique_id port 162329 remote_ip 10.8.0.234 162330 username aminvpn 162330 mac 162330 bytes_out 0 162330 bytes_in 0 162330 station_ip 5.119.190.67 162330 port 724 162330 unique_id port 162330 remote_ip 10.8.0.14 162331 username aminvpn 162331 mac 162331 bytes_out 0 162331 bytes_in 0 162331 station_ip 83.122.120.158 162331 port 725 162331 unique_id port 162331 remote_ip 10.8.0.14 162332 username barzegar 162332 mac 162332 bytes_out 0 162332 bytes_in 0 162332 station_ip 5.119.87.5 162332 port 723 162332 unique_id port 162332 remote_ip 10.8.0.234 162338 username aminvpn 162338 mac 162338 bytes_out 0 162338 bytes_in 0 162338 station_ip 83.122.120.158 162338 port 726 162338 unique_id port 162338 remote_ip 10.8.0.14 162340 username saeed9658 162340 mac 162340 bytes_out 1260907 162340 bytes_in 16297184 162340 station_ip 5.119.111.142 162340 port 717 162340 unique_id port 162340 remote_ip 10.8.0.166 162342 username morteza 162342 mac 162342 bytes_out 2344 162342 bytes_in 4607 162342 station_ip 37.129.38.105 162342 port 723 162342 unique_id port 162342 remote_ip 10.8.0.46 162345 username jamali 162345 mac 162345 bytes_out 0 162345 bytes_in 0 162345 station_ip 5.119.86.183 162345 port 328 162345 unique_id port 162345 remote_ip 10.8.1.82 162348 username houshang 162348 mac 162348 bytes_out 51714 162348 bytes_in 122353 162348 station_ip 5.119.195.28 162348 port 717 162348 unique_id port 162348 remote_ip 10.8.0.134 162352 username aminvpn 162352 mac 162352 bytes_out 0 162352 bytes_in 0 162352 station_ip 5.119.190.67 162352 port 721 162352 unique_id port 162352 remote_ip 10.8.0.14 162353 username aminvpn 162353 mac 162353 bytes_out 0 162353 bytes_in 0 162353 station_ip 83.122.120.158 162353 port 722 162353 unique_id port 162353 remote_ip 10.8.0.14 162354 username aminvpn 162354 mac 162354 bytes_out 0 162354 bytes_in 0 162354 station_ip 5.119.190.67 162354 port 721 162354 unique_id port 162354 remote_ip 10.8.0.14 162356 username aminvpn 162356 mac 162356 bytes_out 0 162356 bytes_in 0 162356 station_ip 83.122.120.158 162356 port 722 162356 unique_id port 162356 remote_ip 10.8.0.14 162363 username barzegar 162363 mac 162363 bytes_out 0 162363 bytes_in 0 162363 station_ip 5.119.87.5 162363 port 721 162299 mac 162299 bytes_out 0 162299 bytes_in 0 162299 station_ip 37.129.38.105 162299 port 673 162299 unique_id port 162299 remote_ip 10.8.0.46 162303 username hashtadani4 162303 mac 162303 bytes_out 0 162303 bytes_in 0 162303 station_ip 5.202.97.30 162303 port 361 162303 unique_id port 162303 remote_ip 10.8.1.142 162305 username saeed9658 162305 mac 162305 bytes_out 1636 162305 bytes_in 4174 162305 station_ip 5.119.111.142 162305 port 706 162305 unique_id port 162305 remote_ip 10.8.0.166 162306 username hashtadani4 162306 mac 162306 bytes_out 0 162306 bytes_in 0 162306 station_ip 113.203.13.40 162306 port 363 162306 unique_id port 162306 remote_ip 10.8.1.142 162308 username hashtadani4 162308 kill_reason Maximum number of concurrent logins reached 162308 mac 162308 bytes_out 0 162308 bytes_in 0 162308 station_ip 113.203.13.40 162308 port 361 162308 unique_id port 162313 username hashtadani4 162313 kill_reason Maximum check online fails reached 162313 mac 162313 bytes_out 0 162313 bytes_in 0 162313 station_ip 113.203.13.40 162313 port 706 162313 unique_id port 162316 username khalili 162316 mac 162316 bytes_out 0 162316 bytes_in 0 162316 station_ip 5.119.240.171 162316 port 351 162316 unique_id port 162317 username godarzi 162317 mac 162317 bytes_out 0 162317 bytes_in 0 162317 station_ip 5.119.62.37 162317 port 363 162317 unique_id port 162317 remote_ip 10.8.1.230 162318 username aminvpn 162318 mac 162318 bytes_out 2269789 162318 bytes_in 7995825 162318 station_ip 83.122.120.158 162318 port 707 162318 unique_id port 162318 remote_ip 10.8.0.14 162319 username sekonji3 162319 mac 162319 bytes_out 50850 162319 bytes_in 527383 162319 station_ip 83.123.191.215 162319 port 720 162319 unique_id port 162319 remote_ip 10.8.0.6 162321 username morteza 162321 mac 162321 bytes_out 0 162321 bytes_in 0 162321 station_ip 37.129.38.105 162321 port 351 162321 unique_id port 162321 remote_ip 10.8.1.62 162323 username aminvpn 162323 mac 162323 bytes_out 75247 162323 bytes_in 139465 162323 station_ip 83.122.120.158 162323 port 721 162323 unique_id port 162323 remote_ip 10.8.0.14 162326 username aminvpn 162326 mac 162326 bytes_out 0 162326 bytes_in 0 162326 station_ip 83.122.120.158 162326 port 725 162326 unique_id port 162326 remote_ip 10.8.0.14 162328 username morteza 162328 mac 162328 bytes_out 0 162328 bytes_in 0 162328 station_ip 37.129.38.105 162328 port 351 162328 unique_id port 162328 remote_ip 10.8.1.62 162335 username morteza 162335 mac 162335 bytes_out 0 162335 bytes_in 0 162335 station_ip 37.129.38.105 162335 port 723 162335 unique_id port 162335 remote_ip 10.8.0.46 162336 username aminvpn 162336 mac 162336 bytes_out 0 162336 bytes_in 0 162336 station_ip 5.119.190.67 162336 port 725 162336 unique_id port 162336 remote_ip 10.8.0.14 162339 username farhad2 162339 kill_reason Another user logged on this global unique id 162339 mac 162339 bytes_out 0 162339 bytes_in 0 162339 station_ip 5.120.28.122 162339 port 673 162339 unique_id port 162339 remote_ip 10.8.0.190 162343 username vanila 162343 mac 162343 bytes_out 865485 162343 bytes_in 1741979 162343 station_ip 37.129.80.127 162343 port 721 162343 unique_id port 162343 remote_ip 10.8.0.178 162349 username jafari 162349 mac 162349 bytes_out 3010988 162349 bytes_in 41340402 162349 station_ip 5.134.143.111 162349 port 722 162349 unique_id port 162349 remote_ip 10.8.0.242 162350 username aminvpn 162350 mac 162325 remote_ip 10.8.0.14 162327 username morteza 162327 mac 162327 bytes_out 0 162327 bytes_in 0 162327 station_ip 37.129.38.105 162327 port 351 162327 unique_id port 162327 remote_ip 10.8.1.62 162333 username aminvpn 162333 mac 162333 bytes_out 0 162333 bytes_in 0 162333 station_ip 5.119.190.67 162333 port 726 162333 unique_id port 162333 remote_ip 10.8.0.14 162334 username aminvpn 162334 mac 162334 bytes_out 0 162334 bytes_in 0 162334 station_ip 83.122.120.158 162334 port 723 162334 unique_id port 162334 remote_ip 10.8.0.14 162337 username morteza 162337 mac 162337 bytes_out 0 162337 bytes_in 0 162337 station_ip 37.129.38.105 162337 port 723 162337 unique_id port 162337 remote_ip 10.8.0.46 162341 username aminvpn 162341 mac 162341 bytes_out 0 162341 bytes_in 0 162341 station_ip 5.119.190.67 162341 port 725 162341 unique_id port 162341 remote_ip 10.8.0.14 162344 username barzegar 162344 mac 162344 bytes_out 0 162344 bytes_in 0 162344 station_ip 5.119.87.5 162344 port 726 162344 unique_id port 162344 remote_ip 10.8.0.234 162346 username aminvpn 162346 mac 162346 bytes_out 0 162346 bytes_in 0 162346 station_ip 83.122.120.158 162346 port 727 162346 unique_id port 162346 remote_ip 10.8.0.14 162347 username aminvpn 162347 mac 162347 bytes_out 0 162347 bytes_in 0 162347 station_ip 5.119.190.67 162347 port 721 162347 unique_id port 162347 remote_ip 10.8.0.14 162355 username yaghobi 162355 mac 162355 bytes_out 825949 162355 bytes_in 14932000 162355 station_ip 83.123.75.100 162355 port 717 162355 unique_id port 162355 remote_ip 10.8.0.198 162357 username aminvpn 162357 mac 162357 bytes_out 0 162357 bytes_in 0 162357 station_ip 5.119.190.67 162357 port 717 162357 unique_id port 162357 remote_ip 10.8.0.14 162358 username barzegar 162358 mac 162358 bytes_out 2469 162358 bytes_in 4794 162358 station_ip 5.119.87.5 162358 port 721 162358 unique_id port 162358 remote_ip 10.8.0.234 162361 username jamali 162361 mac 162361 bytes_out 0 162361 bytes_in 0 162361 station_ip 5.119.86.183 162361 port 351 162361 unique_id port 162361 remote_ip 10.8.1.82 162362 username aminvpn 162362 mac 162362 bytes_out 0 162362 bytes_in 0 162362 station_ip 83.122.120.158 162362 port 722 162362 unique_id port 162362 remote_ip 10.8.0.14 162369 username asma2026 162369 kill_reason Another user logged on this global unique id 162369 mac 162369 bytes_out 0 162369 bytes_in 0 162369 station_ip 5.210.18.213 162369 port 707 162369 unique_id port 162369 remote_ip 10.8.0.94 162370 username aminvpn 162370 mac 162370 bytes_out 0 162370 bytes_in 0 162370 station_ip 5.119.190.67 162370 port 722 162370 unique_id port 162370 remote_ip 10.8.0.14 162371 username aminvpn 162371 mac 162371 bytes_out 0 162371 bytes_in 0 162371 station_ip 83.122.120.158 162371 port 723 162371 unique_id port 162371 remote_ip 10.8.0.14 162373 username aminvpn 162373 mac 162373 bytes_out 0 162373 bytes_in 0 162373 station_ip 5.119.190.67 162373 port 722 162373 unique_id port 162373 remote_ip 10.8.0.14 162374 username kamali2 162374 mac 162374 bytes_out 706647 162374 bytes_in 912753 162374 station_ip 5.120.187.35 162374 port 703 162374 unique_id port 162374 remote_ip 10.8.0.158 162375 username aminvpn 162375 mac 162375 bytes_out 0 162375 bytes_in 0 162375 station_ip 83.122.120.158 162375 port 721 162375 unique_id port 162375 remote_ip 10.8.0.14 162376 username aminvpn 162376 mac 162350 bytes_out 0 162350 bytes_in 0 162350 station_ip 83.122.120.158 162350 port 723 162350 unique_id port 162350 remote_ip 10.8.0.14 162351 username khalili 162351 mac 162351 bytes_out 0 162351 bytes_in 0 162351 station_ip 5.119.240.171 162351 port 359 162351 unique_id port 162351 remote_ip 10.8.1.18 162359 username aminvpn 162359 mac 162359 bytes_out 0 162359 bytes_in 0 162359 station_ip 83.122.120.158 162359 port 722 162359 unique_id port 162359 remote_ip 10.8.0.14 162360 username aminvpn 162360 mac 162360 bytes_out 0 162360 bytes_in 0 162360 station_ip 5.119.190.67 162360 port 721 162360 unique_id port 162360 remote_ip 10.8.0.14 162364 username aminvpn 162364 mac 162364 bytes_out 0 162364 bytes_in 0 162364 station_ip 5.119.190.67 162364 port 723 162364 unique_id port 162364 remote_ip 10.8.0.14 162366 username meysam 162366 kill_reason Another user logged on this global unique id 162366 mac 162366 bytes_out 0 162366 bytes_in 0 162366 station_ip 188.159.254.111 162366 port 717 162366 unique_id port 162366 remote_ip 10.8.0.110 162367 username aminvpn 162367 mac 162367 bytes_out 0 162367 bytes_in 0 162367 station_ip 5.119.190.67 162367 port 722 162367 unique_id port 162367 remote_ip 10.8.0.14 162368 username aminvpn 162368 mac 162368 bytes_out 0 162368 bytes_in 0 162368 station_ip 83.122.120.158 162368 port 723 162368 unique_id port 162368 remote_ip 10.8.0.14 162377 username aminvpn 162377 mac 162377 bytes_out 0 162377 bytes_in 0 162377 station_ip 83.122.120.158 162377 port 723 162377 unique_id port 162377 remote_ip 10.8.0.14 162378 username aminvpn 162378 mac 162378 bytes_out 0 162378 bytes_in 0 162378 station_ip 5.119.190.67 162378 port 703 162378 unique_id port 162378 remote_ip 10.8.0.14 162384 username farhad2 162384 kill_reason Another user logged on this global unique id 162384 mac 162384 bytes_out 0 162384 bytes_in 0 162384 station_ip 5.120.28.122 162384 port 673 162384 unique_id port 162392 username meysam 162392 mac 162392 bytes_out 922235 162392 bytes_in 12047570 162392 station_ip 188.159.254.111 162392 port 703 162392 unique_id port 162392 remote_ip 10.8.0.110 162394 username vanila 162394 mac 162394 bytes_out 338406 162394 bytes_in 788814 162394 station_ip 37.129.80.127 162394 port 721 162394 unique_id port 162394 remote_ip 10.8.0.178 162395 username barzegar 162395 mac 162395 bytes_out 0 162395 bytes_in 0 162395 station_ip 5.119.87.5 162395 port 717 162395 unique_id port 162395 remote_ip 10.8.0.234 162399 username mirzaei 162399 mac 162399 bytes_out 0 162399 bytes_in 0 162399 station_ip 5.119.180.17 162399 port 677 162399 unique_id port 162407 username forozandeh1 162407 mac 162407 bytes_out 963004 162407 bytes_in 8788966 162407 station_ip 83.122.113.183 162407 port 720 162407 unique_id port 162407 remote_ip 10.8.0.130 162408 username kamali2 162408 mac 162408 bytes_out 38899 162408 bytes_in 69920 162408 station_ip 5.120.187.35 162408 port 703 162408 unique_id port 162408 remote_ip 10.8.0.158 162409 username barzegar 162409 mac 162409 bytes_out 0 162409 bytes_in 0 162409 station_ip 5.119.87.5 162409 port 722 162409 unique_id port 162409 remote_ip 10.8.0.234 162410 username barzegar 162410 mac 162410 bytes_out 0 162410 bytes_in 0 162410 station_ip 5.119.87.5 162410 port 722 162410 unique_id port 162410 remote_ip 10.8.0.234 162412 username aminvpn 162412 mac 162412 bytes_out 0 162412 bytes_in 0 162363 unique_id port 162363 remote_ip 10.8.0.234 162365 username aminvpn 162365 mac 162365 bytes_out 0 162365 bytes_in 0 162365 station_ip 83.122.120.158 162365 port 721 162365 unique_id port 162365 remote_ip 10.8.0.14 162372 username barzegar 162372 mac 162372 bytes_out 8092 162372 bytes_in 10140 162372 station_ip 5.119.87.5 162372 port 721 162372 unique_id port 162372 remote_ip 10.8.0.234 162382 username aminvpn 162382 mac 162382 bytes_out 0 162382 bytes_in 0 162382 station_ip 5.119.190.67 162382 port 353 162382 unique_id port 162382 remote_ip 10.8.1.6 162383 username houshang 162383 mac 162383 bytes_out 18311 162383 bytes_in 42560 162383 station_ip 5.119.195.28 162383 port 703 162383 unique_id port 162383 remote_ip 10.8.0.134 162385 username jamali 162385 mac 162385 bytes_out 0 162385 bytes_in 0 162385 station_ip 5.119.86.183 162385 port 351 162385 unique_id port 162385 remote_ip 10.8.1.82 162388 username khalili 162388 mac 162388 bytes_out 0 162388 bytes_in 0 162388 station_ip 5.119.240.171 162388 port 328 162388 unique_id port 162388 remote_ip 10.8.1.18 162389 username aminvpn 162389 mac 162389 bytes_out 27889 162389 bytes_in 40391 162389 station_ip 83.122.120.158 162389 port 723 162389 unique_id port 162389 remote_ip 10.8.0.14 162393 username aminvpn 162393 mac 162393 bytes_out 0 162393 bytes_in 0 162393 station_ip 83.122.120.158 162393 port 717 162393 unique_id port 162393 remote_ip 10.8.0.14 162397 username aminvpn 162397 mac 162397 bytes_out 42006 162397 bytes_in 130740 162397 station_ip 5.120.62.245 162397 port 703 162397 unique_id port 162397 remote_ip 10.8.0.14 162398 username aminvpn 162398 mac 162398 bytes_out 0 162398 bytes_in 0 162398 station_ip 83.122.120.158 162398 port 721 162398 unique_id port 162398 remote_ip 10.8.0.14 162401 username asma2026 162401 kill_reason Another user logged on this global unique id 162401 mac 162401 bytes_out 0 162401 bytes_in 0 162401 station_ip 5.210.18.213 162401 port 707 162401 unique_id port 162403 username shadkam 162403 mac 162403 bytes_out 0 162403 bytes_in 0 162403 station_ip 113.203.54.74 162403 port 703 162403 unique_id port 162403 remote_ip 10.8.0.62 162406 username barzegar 162406 mac 162406 bytes_out 0 162406 bytes_in 0 162406 station_ip 5.119.87.5 162406 port 353 162406 unique_id port 162406 remote_ip 10.8.1.174 162414 username aminvpn 162414 mac 162414 bytes_out 0 162414 bytes_in 0 162414 station_ip 5.120.62.245 162414 port 717 162414 unique_id port 162414 remote_ip 10.8.0.14 162415 username farhad2 162415 kill_reason Another user logged on this global unique id 162415 mac 162415 bytes_out 0 162415 bytes_in 0 162415 station_ip 5.120.28.122 162415 port 673 162415 unique_id port 162418 username khalili 162418 mac 162418 bytes_out 11928 162418 bytes_in 16027 162418 station_ip 5.119.240.171 162418 port 726 162418 unique_id port 162418 remote_ip 10.8.0.86 162425 username barzegar 162425 mac 162425 bytes_out 0 162425 bytes_in 0 162425 station_ip 5.119.87.5 162425 port 359 162425 unique_id port 162425 remote_ip 10.8.1.174 162427 username aminvpn 162427 mac 162427 bytes_out 0 162427 bytes_in 0 162427 station_ip 83.122.120.158 162427 port 720 162427 unique_id port 162427 remote_ip 10.8.0.14 162430 username rezaei 162430 kill_reason Another user logged on this global unique id 162430 mac 162430 bytes_out 0 162430 bytes_in 0 162430 station_ip 5.119.53.117 162430 port 661 162430 unique_id port 162376 bytes_out 0 162376 bytes_in 0 162376 station_ip 5.119.190.67 162376 port 703 162376 unique_id port 162376 remote_ip 10.8.0.14 162379 username kalantary 162379 mac 162379 bytes_out 0 162379 bytes_in 0 162379 station_ip 83.122.85.77 162379 port 361 162379 unique_id port 162379 remote_ip 10.8.1.26 162380 username aminvpn 162380 mac 162380 bytes_out 0 162380 bytes_in 0 162380 station_ip 83.122.120.158 162380 port 723 162380 unique_id port 162380 remote_ip 10.8.0.14 162381 username aminvpn 162381 mac 162381 bytes_out 0 162381 bytes_in 0 162381 station_ip 5.119.190.67 162381 port 725 162381 unique_id port 162381 remote_ip 10.8.0.14 162386 username meysam 162386 mac 162386 bytes_out 0 162386 bytes_in 0 162386 station_ip 188.159.254.111 162386 port 717 162386 unique_id port 162387 username barzegar 162387 mac 162387 bytes_out 0 162387 bytes_in 0 162387 station_ip 5.119.87.5 162387 port 359 162387 unique_id port 162387 remote_ip 10.8.1.174 162390 username barzegar 162390 mac 162390 bytes_out 0 162390 bytes_in 0 162390 station_ip 5.119.87.5 162390 port 717 162390 unique_id port 162390 remote_ip 10.8.0.234 162391 username aminvpn 162391 mac 162391 bytes_out 44753 162391 bytes_in 205405 162391 station_ip 5.120.62.245 162391 port 727 162391 unique_id port 162391 remote_ip 10.8.0.14 162396 username houshang 162396 mac 162396 bytes_out 78782 162396 bytes_in 58446 162396 station_ip 5.119.195.28 162396 port 725 162396 unique_id port 162396 remote_ip 10.8.0.134 162400 username kamali2 162400 mac 162400 bytes_out 116084 162400 bytes_in 102060 162400 station_ip 5.120.187.35 162400 port 722 162400 unique_id port 162400 remote_ip 10.8.0.158 162402 username vanila 162402 mac 162402 bytes_out 49460 162402 bytes_in 76263 162402 station_ip 37.129.80.127 162402 port 717 162402 unique_id port 162402 remote_ip 10.8.0.178 162404 username aminvpn 162404 mac 162404 bytes_out 26949 162404 bytes_in 125166 162404 station_ip 5.120.62.245 162404 port 725 162404 unique_id port 162404 remote_ip 10.8.0.14 162405 username aminvpn 162405 mac 162405 bytes_out 0 162405 bytes_in 0 162405 station_ip 83.122.120.158 162405 port 677 162405 unique_id port 162405 remote_ip 10.8.0.14 162411 username aminvpn 162411 mac 162411 bytes_out 120044 162411 bytes_in 156716 162411 station_ip 5.120.62.245 162411 port 717 162411 unique_id port 162411 remote_ip 10.8.0.14 162416 username aminvpn 162416 mac 162416 bytes_out 0 162416 bytes_in 0 162416 station_ip 83.122.120.158 162416 port 722 162416 unique_id port 162416 remote_ip 10.8.0.14 162419 username barzegar 162419 mac 162419 bytes_out 0 162419 bytes_in 0 162419 station_ip 5.119.87.5 162419 port 359 162419 unique_id port 162419 remote_ip 10.8.1.174 162422 username alikomsari 162422 mac 162422 bytes_out 497763 162422 bytes_in 1296112 162422 station_ip 5.119.180.144 162422 port 723 162422 unique_id port 162422 remote_ip 10.8.0.26 162424 username forozandeh1 162424 mac 162424 bytes_out 456087 162424 bytes_in 5652662 162424 station_ip 83.122.113.183 162424 port 720 162424 unique_id port 162424 remote_ip 10.8.0.130 162426 username aminvpn 162426 mac 162426 bytes_out 0 162426 bytes_in 0 162426 station_ip 5.120.62.245 162426 port 717 162426 unique_id port 162426 remote_ip 10.8.0.14 162429 username kalantary 162429 mac 162429 bytes_out 0 162429 bytes_in 0 162429 station_ip 83.122.45.249 162429 port 361 162412 station_ip 83.122.120.158 162412 port 722 162412 unique_id port 162412 remote_ip 10.8.0.14 162413 username barzegar 162413 mac 162413 bytes_out 0 162413 bytes_in 0 162413 station_ip 5.119.87.5 162413 port 359 162413 unique_id port 162413 remote_ip 10.8.1.174 162417 username aminvpn 162417 mac 162417 bytes_out 0 162417 bytes_in 0 162417 station_ip 5.120.62.245 162417 port 717 162417 unique_id port 162417 remote_ip 10.8.0.14 162420 username aminvpn 162420 mac 162420 bytes_out 0 162420 bytes_in 0 162420 station_ip 83.122.120.158 162420 port 722 162420 unique_id port 162420 remote_ip 10.8.0.14 162421 username alikomsari 162421 kill_reason Maximum number of concurrent logins reached 162421 mac 162421 bytes_out 0 162421 bytes_in 0 162421 station_ip 5.119.180.144 162421 port 722 162421 unique_id port 162423 username kalantary 162423 mac 162423 bytes_out 0 162423 bytes_in 0 162423 station_ip 83.122.45.249 162423 port 353 162423 unique_id port 162423 remote_ip 10.8.1.26 162428 username aminvpn 162428 mac 162428 bytes_out 0 162428 bytes_in 0 162428 station_ip 5.120.62.245 162428 port 722 162428 unique_id port 162428 remote_ip 10.8.0.14 162438 username godarzi 162438 mac 162438 bytes_out 0 162438 bytes_in 0 162438 station_ip 5.120.159.38 162438 port 359 162438 unique_id port 162438 remote_ip 10.8.1.230 162441 username asma2026 162441 mac 162441 bytes_out 0 162441 bytes_in 0 162441 station_ip 5.210.18.213 162441 port 677 162441 unique_id port 162441 remote_ip 10.8.0.94 162443 username farhad2 162443 mac 162443 bytes_out 0 162443 bytes_in 0 162443 station_ip 5.120.28.122 162443 port 673 162443 unique_id port 162445 username asma2026 162445 mac 162445 bytes_out 0 162445 bytes_in 0 162445 station_ip 5.210.18.213 162445 port 677 162445 unique_id port 162445 remote_ip 10.8.0.94 162448 username kamali2 162448 mac 162448 bytes_out 2646362 162448 bytes_in 15138992 162448 station_ip 5.120.187.35 162448 port 703 162448 unique_id port 162448 remote_ip 10.8.0.158 162452 username farhad2 162452 mac 162452 bytes_out 150860 162452 bytes_in 512040 162452 station_ip 5.120.26.189 162452 port 677 162452 unique_id port 162452 remote_ip 10.8.0.190 162456 username nilufarrajaei 162456 mac 162456 bytes_out 0 162456 bytes_in 0 162456 station_ip 83.123.37.100 162456 port 362 162456 unique_id port 162457 username mosi 162457 mac 162457 bytes_out 538253 162457 bytes_in 4902314 162457 station_ip 5.200.124.241 162457 port 661 162457 unique_id port 162457 remote_ip 10.8.0.138 162459 username asma2026 162459 mac 162459 bytes_out 0 162459 bytes_in 0 162459 station_ip 5.210.18.213 162459 port 362 162459 unique_id port 162459 remote_ip 10.8.1.122 162462 username asma2026 162462 mac 162462 bytes_out 0 162462 bytes_in 0 162462 station_ip 5.210.18.213 162462 port 707 162462 unique_id port 162462 remote_ip 10.8.0.94 162467 username barzegar 162467 mac 162467 bytes_out 23627 162467 bytes_in 25011 162467 station_ip 5.119.87.5 162467 port 696 162467 unique_id port 162467 remote_ip 10.8.0.234 162469 username yarmohamadi 162469 kill_reason Another user logged on this global unique id 162469 mac 162469 bytes_out 0 162469 bytes_in 0 162469 station_ip 5.120.3.119 162469 port 673 162469 unique_id port 162472 username mosi 162472 kill_reason Another user logged on this global unique id 162472 mac 162472 bytes_out 0 162472 bytes_in 0 162472 station_ip 151.235.120.66 162472 port 703 162472 unique_id port 162429 unique_id port 162429 remote_ip 10.8.1.26 162431 username barzegar 162431 mac 162431 bytes_out 0 162431 bytes_in 0 162431 station_ip 5.119.87.5 162431 port 353 162431 unique_id port 162431 remote_ip 10.8.1.174 162432 username jamali 162432 mac 162432 bytes_out 0 162432 bytes_in 0 162432 station_ip 5.119.86.183 162432 port 351 162432 unique_id port 162432 remote_ip 10.8.1.82 162433 username kalantary 162433 mac 162433 bytes_out 0 162433 bytes_in 0 162433 station_ip 83.122.45.249 162433 port 353 162433 unique_id port 162433 remote_ip 10.8.1.26 162434 username rezaei 162434 mac 162434 bytes_out 0 162434 bytes_in 0 162434 station_ip 5.119.53.117 162434 port 661 162434 unique_id port 162436 username mohammadjavad 162436 mac 162436 bytes_out 1059974 162436 bytes_in 14371695 162436 station_ip 83.123.237.176 162436 port 677 162436 unique_id port 162436 remote_ip 10.8.0.142 162439 username nilufarrajaei 162439 kill_reason Another user logged on this global unique id 162439 mac 162439 bytes_out 0 162439 bytes_in 0 162439 station_ip 83.123.37.100 162439 port 362 162439 unique_id port 162439 remote_ip 10.8.1.166 162440 username kalantary 162440 mac 162440 bytes_out 0 162440 bytes_in 0 162440 station_ip 83.122.45.249 162440 port 361 162440 unique_id port 162440 remote_ip 10.8.1.26 162442 username jamali 162442 mac 162442 bytes_out 0 162442 bytes_in 0 162442 station_ip 5.119.86.183 162442 port 351 162442 unique_id port 162442 remote_ip 10.8.1.82 162444 username vanila 162444 mac 162444 bytes_out 269025 162444 bytes_in 462486 162444 station_ip 37.129.4.243 162444 port 661 162444 unique_id port 162444 remote_ip 10.8.0.178 162446 username barzegar 162446 mac 162446 bytes_out 0 162446 bytes_in 0 162446 station_ip 5.119.87.5 162446 port 661 162446 unique_id port 162446 remote_ip 10.8.0.234 162453 username kamali2 162453 mac 162453 bytes_out 0 162453 bytes_in 0 162453 station_ip 5.120.187.35 162453 port 361 162453 unique_id port 162453 remote_ip 10.8.1.66 162458 username asma2026 162458 mac 162458 bytes_out 0 162458 bytes_in 0 162458 station_ip 5.210.18.213 162458 port 362 162458 unique_id port 162458 remote_ip 10.8.1.122 162461 username vanila 162461 mac 162461 bytes_out 119151 162461 bytes_in 598168 162461 station_ip 37.129.4.243 162461 port 677 162461 unique_id port 162461 remote_ip 10.8.0.178 162463 username yarmohamadi 162463 kill_reason Another user logged on this global unique id 162463 mac 162463 bytes_out 0 162463 bytes_in 0 162463 station_ip 5.120.3.119 162463 port 673 162463 unique_id port 162468 username asma2026 162468 mac 162468 bytes_out 0 162468 bytes_in 0 162468 station_ip 5.210.18.213 162468 port 661 162468 unique_id port 162468 remote_ip 10.8.0.94 162471 username barzegar 162471 mac 162471 bytes_out 0 162471 bytes_in 0 162471 station_ip 5.119.87.5 162471 port 661 162471 unique_id port 162471 remote_ip 10.8.0.234 162474 username kamali2 162474 mac 162474 bytes_out 0 162474 bytes_in 0 162474 station_ip 5.120.187.35 162474 port 361 162474 unique_id port 162474 remote_ip 10.8.1.66 162477 username yarmohamadi 162477 mac 162477 bytes_out 0 162477 bytes_in 0 162477 station_ip 5.120.3.119 162477 port 673 162477 unique_id port 162482 username mehdizare 162482 mac 162482 bytes_out 0 162482 bytes_in 0 162482 station_ip 83.122.5.111 162482 port 353 162482 unique_id port 162482 remote_ip 10.8.1.42 162484 username kamali2 162484 mac 162435 username mehdizare 162435 mac 162435 bytes_out 1431034 162435 bytes_in 29557687 162435 station_ip 83.122.5.111 162435 port 696 162435 unique_id port 162435 remote_ip 10.8.0.90 162437 username asma2026 162437 mac 162437 bytes_out 0 162437 bytes_in 0 162437 station_ip 5.210.18.213 162437 port 707 162437 unique_id port 162447 username asma2026 162447 mac 162447 bytes_out 0 162447 bytes_in 0 162447 station_ip 5.210.18.213 162447 port 677 162447 unique_id port 162447 remote_ip 10.8.0.94 162449 username asma2026 162449 mac 162449 bytes_out 0 162449 bytes_in 0 162449 station_ip 5.210.18.213 162449 port 677 162449 unique_id port 162449 remote_ip 10.8.0.94 162450 username yarmohamadi 162450 kill_reason Another user logged on this global unique id 162450 mac 162450 bytes_out 0 162450 bytes_in 0 162450 station_ip 5.120.3.119 162450 port 673 162450 unique_id port 162450 remote_ip 10.8.0.150 162451 username asma2026 162451 mac 162451 bytes_out 0 162451 bytes_in 0 162451 station_ip 5.210.18.213 162451 port 363 162451 unique_id port 162451 remote_ip 10.8.1.122 162454 username asma2026 162454 mac 162454 bytes_out 0 162454 bytes_in 0 162454 station_ip 5.210.18.213 162454 port 703 162454 unique_id port 162454 remote_ip 10.8.0.94 162455 username farhad2 162455 mac 162455 bytes_out 33809 162455 bytes_in 43924 162455 station_ip 5.120.26.189 162455 port 677 162455 unique_id port 162455 remote_ip 10.8.0.190 162460 username aminvpn 162460 mac 162460 bytes_out 0 162460 bytes_in 0 162460 station_ip 5.120.62.245 162460 port 328 162460 unique_id port 162460 remote_ip 10.8.1.6 162464 username fezealinaghi 162464 mac 162464 bytes_out 0 162464 bytes_in 0 162464 station_ip 37.129.227.245 162464 port 340 162464 unique_id port 162464 remote_ip 10.8.1.162 162465 username asma2026 162465 mac 162465 bytes_out 0 162465 bytes_in 0 162465 station_ip 5.210.18.213 162465 port 340 162465 unique_id port 162465 remote_ip 10.8.1.122 162466 username meysam 162466 mac 162466 bytes_out 1176035 162466 bytes_in 18205633 162466 station_ip 188.159.254.111 162466 port 661 162466 unique_id port 162466 remote_ip 10.8.0.110 162470 username moradi 162470 kill_reason Another user logged on this global unique id 162470 mac 162470 bytes_out 0 162470 bytes_in 0 162470 station_ip 46.225.214.33 162470 port 715 162470 unique_id port 162470 remote_ip 10.8.0.126 162473 username asma2026 162473 mac 162473 bytes_out 0 162473 bytes_in 0 162473 station_ip 5.210.18.213 162473 port 340 162473 unique_id port 162473 remote_ip 10.8.1.122 162476 username asma2026 162476 mac 162476 bytes_out 0 162476 bytes_in 0 162476 station_ip 5.210.18.213 162476 port 707 162476 unique_id port 162476 remote_ip 10.8.0.94 162478 username barzegar 162478 mac 162478 bytes_out 0 162478 bytes_in 0 162478 station_ip 5.119.87.5 162478 port 340 162478 unique_id port 162478 remote_ip 10.8.1.174 162479 username jafari 162479 kill_reason Another user logged on this global unique id 162479 mac 162479 bytes_out 0 162479 bytes_in 0 162479 station_ip 5.134.143.111 162479 port 677 162479 unique_id port 162479 remote_ip 10.8.0.242 162480 username asma2026 162480 mac 162480 bytes_out 110085 162480 bytes_in 1354989 162480 station_ip 5.210.18.213 162480 port 707 162480 unique_id port 162480 remote_ip 10.8.0.94 162481 username tahmasebi 162481 kill_reason Another user logged on this global unique id 162481 mac 162481 bytes_out 0 162481 bytes_in 0 162481 station_ip 5.119.68.191 162481 port 358 162472 remote_ip 10.8.0.138 162475 username alikomsari 162475 mac 162475 bytes_out 2682223 162475 bytes_in 25503908 162475 station_ip 5.119.180.144 162475 port 717 162475 unique_id port 162475 remote_ip 10.8.0.26 162489 username asma2026 162489 mac 162489 bytes_out 679675 162489 bytes_in 6949251 162489 station_ip 5.210.18.213 162489 port 722 162489 unique_id port 162489 remote_ip 10.8.0.94 162493 username barzegar 162493 mac 162493 bytes_out 0 162493 bytes_in 0 162493 station_ip 5.119.87.5 162493 port 353 162493 unique_id port 162493 remote_ip 10.8.1.174 162494 username khademi 162494 kill_reason Another user logged on this global unique id 162494 mac 162494 bytes_out 0 162494 bytes_in 0 162494 station_ip 113.203.78.111 162494 port 709 162494 unique_id port 162494 remote_ip 10.8.0.10 162496 username kalantary 162496 kill_reason Another user logged on this global unique id 162496 mac 162496 bytes_out 0 162496 bytes_in 0 162496 station_ip 83.122.45.249 162496 port 359 162496 unique_id port 162496 remote_ip 10.8.1.26 162497 username barzegar 162497 mac 162497 bytes_out 0 162497 bytes_in 0 162497 station_ip 5.119.87.5 162497 port 661 162497 unique_id port 162497 remote_ip 10.8.0.234 162504 username ghiyasi 162504 mac 162504 bytes_out 16320 162504 bytes_in 34408 162504 station_ip 5.119.43.75 162504 port 703 162504 unique_id port 162504 remote_ip 10.8.0.38 162506 username barzegar 162506 mac 162506 bytes_out 0 162506 bytes_in 0 162506 station_ip 5.119.87.5 162506 port 353 162506 unique_id port 162506 remote_ip 10.8.1.174 162507 username hatami 162507 mac 162507 bytes_out 292123 162507 bytes_in 3080211 162507 station_ip 151.235.122.210 162507 port 722 162507 unique_id port 162507 remote_ip 10.8.0.106 162509 username fezealinaghi 162509 kill_reason Another user logged on this global unique id 162509 mac 162509 bytes_out 0 162509 bytes_in 0 162509 station_ip 83.122.54.70 162509 port 328 162509 unique_id port 162514 username tahmasebi 162514 mac 162514 bytes_out 0 162514 bytes_in 0 162514 station_ip 5.119.68.191 162514 port 353 162514 unique_id port 162514 remote_ip 10.8.1.90 162516 username arash 162516 mac 162516 bytes_out 48882 162516 bytes_in 118554 162516 station_ip 37.27.27.10 162516 port 718 162516 unique_id port 162516 remote_ip 10.8.0.114 162517 username jafari 162517 kill_reason Another user logged on this global unique id 162517 mac 162517 bytes_out 0 162517 bytes_in 0 162517 station_ip 5.134.143.111 162517 port 677 162517 unique_id port 162520 username ghiyasi 162520 mac 162520 bytes_out 165537 162520 bytes_in 612882 162520 station_ip 5.120.32.69 162520 port 723 162520 unique_id port 162520 remote_ip 10.8.0.38 162522 username meysam 162522 mac 162522 bytes_out 130011 162522 bytes_in 1865076 162522 station_ip 5.120.37.138 162522 port 696 162522 unique_id port 162522 remote_ip 10.8.0.110 162529 username barzegar 162529 mac 162529 bytes_out 0 162529 bytes_in 0 162529 station_ip 5.119.87.5 162529 port 677 162529 unique_id port 162529 remote_ip 10.8.0.234 162531 username kalantary 162531 mac 162531 bytes_out 0 162531 bytes_in 0 162531 station_ip 83.122.45.249 162531 port 353 162531 unique_id port 162531 remote_ip 10.8.1.26 162533 username barzegar 162533 mac 162533 bytes_out 0 162533 bytes_in 0 162533 station_ip 5.119.87.5 162533 port 677 162533 unique_id port 162533 remote_ip 10.8.0.234 162534 username ghiyasi 162534 mac 162534 bytes_out 517373 162534 bytes_in 5316073 162534 station_ip 5.120.179.142 162481 unique_id port 162481 remote_ip 10.8.1.90 162483 username mohammadjavad 162483 mac 162483 bytes_out 2383291 162483 bytes_in 48813013 162483 station_ip 37.129.89.176 162483 port 661 162483 unique_id port 162483 remote_ip 10.8.0.142 162486 username mosi 162486 kill_reason Another user logged on this global unique id 162486 mac 162486 bytes_out 0 162486 bytes_in 0 162486 station_ip 151.235.120.66 162486 port 703 162486 unique_id port 162495 username tahmasebi 162495 mac 162495 bytes_out 0 162495 bytes_in 0 162495 station_ip 5.119.68.191 162495 port 358 162495 unique_id port 162498 username tahmasebi 162498 mac 162498 bytes_out 0 162498 bytes_in 0 162498 station_ip 5.119.68.191 162498 port 353 162498 unique_id port 162498 remote_ip 10.8.1.90 162500 username jafari 162500 kill_reason Another user logged on this global unique id 162500 mac 162500 bytes_out 0 162500 bytes_in 0 162500 station_ip 5.134.143.111 162500 port 677 162500 unique_id port 162502 username barzegar 162502 mac 162502 bytes_out 0 162502 bytes_in 0 162502 station_ip 5.119.87.5 162502 port 353 162502 unique_id port 162502 remote_ip 10.8.1.174 162503 username ghiyasi 162503 mac 162503 bytes_out 374738 162503 bytes_in 905488 162503 station_ip 5.119.233.161 162503 port 718 162503 unique_id port 162503 remote_ip 10.8.0.38 162505 username saeed9658 162505 mac 162505 bytes_out 2050284 162505 bytes_in 19436013 162505 station_ip 5.119.111.142 162505 port 696 162505 unique_id port 162505 remote_ip 10.8.0.166 162510 username yarmohamadi 162510 kill_reason Another user logged on this global unique id 162510 mac 162510 bytes_out 0 162510 bytes_in 0 162510 station_ip 5.119.180.198 162510 port 717 162510 unique_id port 162511 username jafari 162511 kill_reason Another user logged on this global unique id 162511 mac 162511 bytes_out 0 162511 bytes_in 0 162511 station_ip 5.134.143.111 162511 port 677 162511 unique_id port 162518 username barzegar 162518 mac 162518 bytes_out 0 162518 bytes_in 0 162518 station_ip 5.119.87.5 162518 port 696 162518 unique_id port 162518 remote_ip 10.8.0.234 162521 username ghiyasi 162521 mac 162521 bytes_out 20376 162521 bytes_in 23673 162521 station_ip 5.119.42.160 162521 port 677 162521 unique_id port 162521 remote_ip 10.8.0.38 162524 username khademi 162524 kill_reason Another user logged on this global unique id 162524 mac 162524 bytes_out 0 162524 bytes_in 0 162524 station_ip 113.203.78.111 162524 port 709 162524 unique_id port 162525 username milan 162525 kill_reason Another user logged on this global unique id 162525 mac 162525 bytes_out 0 162525 bytes_in 0 162525 station_ip 5.119.161.192 162525 port 710 162525 unique_id port 162528 username asma2026 162528 mac 162528 bytes_out 2411948 162528 bytes_in 29541541 162528 station_ip 93.110.114.234 162528 port 707 162528 unique_id port 162528 remote_ip 10.8.0.94 162542 username aminvpn 162542 kill_reason Another user logged on this global unique id 162542 mac 162542 bytes_out 0 162542 bytes_in 0 162542 station_ip 109.125.165.240 162542 port 340 162542 unique_id port 162542 remote_ip 10.8.1.6 162544 username barzegar 162544 mac 162544 bytes_out 0 162544 bytes_in 0 162544 station_ip 5.119.87.5 162544 port 696 162544 unique_id port 162544 remote_ip 10.8.0.234 162547 username ghiyasi 162547 mac 162547 bytes_out 0 162547 bytes_in 0 162547 station_ip 5.119.53.250 162547 port 718 162547 unique_id port 162547 remote_ip 10.8.0.38 162550 username tahmasebi 162550 mac 162550 bytes_out 0 162550 bytes_in 0 162484 bytes_out 0 162484 bytes_in 0 162484 station_ip 5.120.187.35 162484 port 340 162484 unique_id port 162484 remote_ip 10.8.1.66 162485 username barzegar 162485 mac 162485 bytes_out 0 162485 bytes_in 0 162485 station_ip 5.119.87.5 162485 port 723 162485 unique_id port 162485 remote_ip 10.8.0.234 162487 username mehdizare 162487 mac 162487 bytes_out 0 162487 bytes_in 0 162487 station_ip 83.122.5.111 162487 port 353 162487 unique_id port 162487 remote_ip 10.8.1.42 162488 username forozandeh1 162488 mac 162488 bytes_out 245352 162488 bytes_in 1950138 162488 station_ip 113.203.38.131 162488 port 707 162488 unique_id port 162488 remote_ip 10.8.0.130 162490 username houshang 162490 mac 162490 bytes_out 65705 162490 bytes_in 307241 162490 station_ip 5.119.249.45 162490 port 661 162490 unique_id port 162490 remote_ip 10.8.0.134 162491 username barzegar 162491 mac 162491 bytes_out 0 162491 bytes_in 0 162491 station_ip 5.119.87.5 162491 port 661 162491 unique_id port 162491 remote_ip 10.8.0.234 162492 username fezealinaghi 162492 kill_reason Another user logged on this global unique id 162492 mac 162492 bytes_out 0 162492 bytes_in 0 162492 station_ip 83.122.54.70 162492 port 328 162492 unique_id port 162492 remote_ip 10.8.1.162 162499 username yarmohamadi 162499 kill_reason Another user logged on this global unique id 162499 mac 162499 bytes_out 0 162499 bytes_in 0 162499 station_ip 5.119.180.198 162499 port 717 162499 unique_id port 162499 remote_ip 10.8.0.150 162501 username mosi 162501 mac 162501 bytes_out 0 162501 bytes_in 0 162501 station_ip 151.235.120.66 162501 port 703 162501 unique_id port 162508 username barzegar 162508 mac 162508 bytes_out 1636 162508 bytes_in 4702 162508 station_ip 5.119.87.5 162508 port 718 162508 unique_id port 162508 remote_ip 10.8.0.234 162512 username kamali2 162512 mac 162512 bytes_out 0 162512 bytes_in 0 162512 station_ip 5.120.187.35 162512 port 361 162512 unique_id port 162512 remote_ip 10.8.1.66 162513 username mehdizare 162513 mac 162513 bytes_out 0 162513 bytes_in 0 162513 station_ip 83.122.5.111 162513 port 661 162513 unique_id port 162513 remote_ip 10.8.0.90 162515 username forozandeh1 162515 mac 162515 bytes_out 1191391 162515 bytes_in 17251789 162515 station_ip 37.129.254.108 162515 port 696 162515 unique_id port 162515 remote_ip 10.8.0.130 162519 username jafari 162519 mac 162519 bytes_out 0 162519 bytes_in 0 162519 station_ip 5.134.143.111 162519 port 677 162519 unique_id port 162523 username tahmasebi 162523 mac 162523 bytes_out 0 162523 bytes_in 0 162523 station_ip 5.119.68.191 162523 port 353 162523 unique_id port 162523 remote_ip 10.8.1.90 162526 username fezealinaghi 162526 kill_reason Another user logged on this global unique id 162526 mac 162526 bytes_out 0 162526 bytes_in 0 162526 station_ip 83.122.54.70 162526 port 328 162526 unique_id port 162527 username kalantary 162527 mac 162527 bytes_out 0 162527 bytes_in 0 162527 station_ip 83.122.45.249 162527 port 359 162527 unique_id port 162530 username jamali 162530 mac 162530 bytes_out 0 162530 bytes_in 0 162530 station_ip 5.119.86.183 162530 port 351 162530 unique_id port 162530 remote_ip 10.8.1.82 162532 username forozandeh1 162532 mac 162532 bytes_out 501622 162532 bytes_in 4315727 162532 station_ip 83.123.109.32 162532 port 718 162532 unique_id port 162532 remote_ip 10.8.0.130 162537 username barzegar 162537 mac 162537 bytes_out 0 162537 bytes_in 0 162534 port 722 162534 unique_id port 162534 remote_ip 10.8.0.38 162535 username tahmasebi 162535 mac 162535 bytes_out 0 162535 bytes_in 0 162535 station_ip 5.119.68.191 162535 port 677 162535 unique_id port 162535 remote_ip 10.8.0.42 162536 username tahmasebi 162536 mac 162536 bytes_out 0 162536 bytes_in 0 162536 station_ip 5.119.68.191 162536 port 677 162536 unique_id port 162536 remote_ip 10.8.0.42 162539 username barzegar 162539 mac 162539 bytes_out 0 162539 bytes_in 0 162539 station_ip 5.119.87.5 162539 port 673 162539 unique_id port 162539 remote_ip 10.8.0.234 162540 username jamali 162540 mac 162540 bytes_out 0 162540 bytes_in 0 162540 station_ip 5.119.86.183 162540 port 353 162540 unique_id port 162540 remote_ip 10.8.1.82 162541 username ghiyasi 162541 mac 162541 bytes_out 55699 162541 bytes_in 79531 162541 station_ip 5.120.23.14 162541 port 696 162541 unique_id port 162541 remote_ip 10.8.0.38 162545 username mehdizare 162545 mac 162545 bytes_out 2057489 162545 bytes_in 17008262 162545 station_ip 83.122.5.111 162545 port 703 162545 unique_id port 162545 remote_ip 10.8.0.90 162548 username yaghobi 162548 kill_reason Another user logged on this global unique id 162548 mac 162548 bytes_out 0 162548 bytes_in 0 162548 station_ip 37.129.103.134 162548 port 673 162548 unique_id port 162548 remote_ip 10.8.0.198 162551 username barzegar 162551 mac 162551 bytes_out 0 162551 bytes_in 0 162551 station_ip 5.119.87.5 162551 port 359 162551 unique_id port 162551 remote_ip 10.8.1.174 162552 username tahmasebi 162552 mac 162552 bytes_out 0 162552 bytes_in 0 162552 station_ip 5.119.68.191 162552 port 723 162552 unique_id port 162552 remote_ip 10.8.0.42 162554 username barzegar 162554 mac 162554 bytes_out 0 162554 bytes_in 0 162554 station_ip 5.119.87.5 162554 port 359 162554 unique_id port 162554 remote_ip 10.8.1.174 162555 username forozandeh1 162555 mac 162555 bytes_out 398765 162555 bytes_in 3068160 162555 station_ip 83.122.155.27 162555 port 718 162555 unique_id port 162555 remote_ip 10.8.0.130 162557 username yaghobi 162557 mac 162557 bytes_out 0 162557 bytes_in 0 162557 station_ip 37.129.103.134 162557 port 673 162557 unique_id port 162560 username hassan 162560 mac 162560 bytes_out 4489496 162560 bytes_in 19575285 162560 station_ip 5.120.59.255 162560 port 724 162560 unique_id port 162560 remote_ip 10.8.0.122 162562 username jamali 162562 mac 162562 bytes_out 0 162562 bytes_in 0 162562 station_ip 5.119.86.183 162562 port 351 162562 unique_id port 162562 remote_ip 10.8.1.82 162568 username kalantary 162568 mac 162568 bytes_out 0 162568 bytes_in 0 162568 station_ip 83.122.39.153 162568 port 359 162568 unique_id port 162568 remote_ip 10.8.1.26 162575 username barzegar 162575 mac 162575 bytes_out 0 162575 bytes_in 0 162575 station_ip 5.119.87.5 162575 port 351 162575 unique_id port 162575 remote_ip 10.8.1.174 162577 username godarzi 162577 mac 162577 bytes_out 0 162577 bytes_in 0 162577 station_ip 5.119.33.227 162577 port 358 162577 unique_id port 162577 remote_ip 10.8.1.230 162579 username hosseine 162579 kill_reason Another user logged on this global unique id 162579 mac 162579 bytes_out 0 162579 bytes_in 0 162579 station_ip 83.122.75.134 162579 port 723 162579 unique_id port 162583 username godarzi 162583 mac 162583 bytes_out 0 162583 bytes_in 0 162583 station_ip 5.119.33.227 162583 port 351 162583 unique_id port 162583 remote_ip 10.8.1.230 162537 station_ip 5.119.87.5 162537 port 351 162537 unique_id port 162537 remote_ip 10.8.1.174 162538 username alihosseini1 162538 mac 162538 bytes_out 1452880 162538 bytes_in 25748025 162538 station_ip 5.120.84.195 162538 port 673 162538 unique_id port 162538 remote_ip 10.8.0.22 162543 username ghiyasi 162543 mac 162543 bytes_out 22361 162543 bytes_in 29457 162543 station_ip 5.120.173.178 162543 port 707 162543 unique_id port 162543 remote_ip 10.8.0.38 162546 username barzegar 162546 mac 162546 bytes_out 0 162546 bytes_in 0 162546 station_ip 5.119.87.5 162546 port 696 162546 unique_id port 162546 remote_ip 10.8.0.234 162549 username shokokian 162549 kill_reason Relative expiration date has reached 162549 unique_id port 162549 bytes_out 0 162549 bytes_in 0 162549 station_ip 89.34.47.211 162549 port 15728653 162549 nas_port_type Virtual 162553 username barzegar 162553 mac 162553 bytes_out 0 162553 bytes_in 0 162553 station_ip 5.119.87.5 162553 port 722 162553 unique_id port 162553 remote_ip 10.8.0.234 162556 username jafari 162556 kill_reason Another user logged on this global unique id 162556 mac 162556 bytes_out 0 162556 bytes_in 0 162556 station_ip 5.134.143.111 162556 port 696 162556 unique_id port 162556 remote_ip 10.8.0.242 162563 username ghiyasi 162563 mac 162563 bytes_out 14449 162563 bytes_in 23877 162563 station_ip 5.119.39.187 162563 port 703 162563 unique_id port 162563 remote_ip 10.8.0.38 162564 username mehdizare 162564 mac 162564 bytes_out 0 162564 bytes_in 0 162564 station_ip 83.122.5.111 162564 port 353 162564 unique_id port 162564 remote_ip 10.8.1.42 162565 username hosseine 162565 kill_reason Another user logged on this global unique id 162565 mac 162565 bytes_out 0 162565 bytes_in 0 162565 station_ip 83.122.75.134 162565 port 723 162565 unique_id port 162565 remote_ip 10.8.0.238 162567 username jafari 162567 kill_reason Another user logged on this global unique id 162567 mac 162567 bytes_out 0 162567 bytes_in 0 162567 station_ip 5.134.143.111 162567 port 696 162567 unique_id port 162569 username vanila 162569 mac 162569 bytes_out 151841 162569 bytes_in 212747 162569 station_ip 37.129.70.35 162569 port 724 162569 unique_id port 162569 remote_ip 10.8.0.178 162572 username jamali 162572 mac 162572 bytes_out 0 162572 bytes_in 0 162572 station_ip 5.119.86.183 162572 port 361 162572 unique_id port 162572 remote_ip 10.8.1.82 162580 username khademi 162580 mac 162580 bytes_out 0 162580 bytes_in 0 162580 station_ip 113.203.78.111 162580 port 709 162580 unique_id port 162582 username malekpoir 162582 kill_reason Another user logged on this global unique id 162582 mac 162582 bytes_out 0 162582 bytes_in 0 162582 station_ip 5.120.21.149 162582 port 661 162582 unique_id port 162582 remote_ip 10.8.0.58 162586 username kalantary 162586 mac 162586 bytes_out 0 162586 bytes_in 0 162586 station_ip 83.122.39.153 162586 port 359 162586 unique_id port 162586 remote_ip 10.8.1.26 162593 username alihosseini1 162593 mac 162593 bytes_out 58505 162593 bytes_in 110445 162593 station_ip 5.120.84.195 162593 port 673 162593 unique_id port 162593 remote_ip 10.8.0.22 162595 username shadkam 162595 mac 162595 bytes_out 391735 162595 bytes_in 6447466 162595 station_ip 113.203.40.221 162595 port 677 162595 unique_id port 162595 remote_ip 10.8.0.62 162596 username ghiyasi 162596 mac 162596 bytes_out 81778 162596 bytes_in 321187 162596 station_ip 5.119.39.187 162596 port 715 162596 unique_id port 162596 remote_ip 10.8.0.38 162602 username yarmohamadi 162550 station_ip 5.119.68.191 162550 port 718 162550 unique_id port 162550 remote_ip 10.8.0.42 162558 username mehdizare 162558 mac 162558 bytes_out 0 162558 bytes_in 0 162558 station_ip 83.122.5.111 162558 port 353 162558 unique_id port 162558 remote_ip 10.8.1.42 162559 username jamali 162559 mac 162559 bytes_out 0 162559 bytes_in 0 162559 station_ip 5.119.86.183 162559 port 351 162559 unique_id port 162559 remote_ip 10.8.1.82 162561 username moradi 162561 mac 162561 bytes_out 0 162561 bytes_in 0 162561 station_ip 46.225.214.33 162561 port 715 162561 unique_id port 162566 username barzegar 162566 mac 162566 bytes_out 0 162566 bytes_in 0 162566 station_ip 5.119.87.5 162566 port 351 162566 unique_id port 162566 remote_ip 10.8.1.174 162570 username barzegar 162570 mac 162570 bytes_out 0 162570 bytes_in 0 162570 station_ip 5.119.87.5 162570 port 351 162570 unique_id port 162570 remote_ip 10.8.1.174 162571 username hosseine 162571 kill_reason Another user logged on this global unique id 162571 mac 162571 bytes_out 0 162571 bytes_in 0 162571 station_ip 83.122.75.134 162571 port 723 162571 unique_id port 162573 username jafari 162573 kill_reason Another user logged on this global unique id 162573 mac 162573 bytes_out 0 162573 bytes_in 0 162573 station_ip 5.134.143.111 162573 port 696 162573 unique_id port 162574 username hatami 162574 mac 162574 bytes_out 930318 162574 bytes_in 10816167 162574 station_ip 151.235.124.113 162574 port 722 162574 unique_id port 162574 remote_ip 10.8.0.106 162576 username tahmasebi 162576 mac 162576 bytes_out 1419268 162576 bytes_in 12210043 162576 station_ip 5.119.68.191 162576 port 673 162576 unique_id port 162576 remote_ip 10.8.0.42 162578 username alihosseini1 162578 mac 162578 bytes_out 134734 162578 bytes_in 259604 162578 station_ip 5.120.84.195 162578 port 677 162578 unique_id port 162578 remote_ip 10.8.0.22 162581 username tahmasebi 162581 mac 162581 bytes_out 0 162581 bytes_in 0 162581 station_ip 5.119.68.191 162581 port 677 162581 unique_id port 162581 remote_ip 10.8.0.42 162584 username houshang 162584 mac 162584 bytes_out 54084 162584 bytes_in 124408 162584 station_ip 5.119.249.45 162584 port 709 162584 unique_id port 162584 remote_ip 10.8.0.134 162587 username pourshad 162587 mac 162587 bytes_out 0 162587 bytes_in 0 162587 station_ip 5.119.76.144 162587 port 351 162587 unique_id port 162587 remote_ip 10.8.1.154 162589 username khademi 162589 mac 162589 bytes_out 20569 162589 bytes_in 43863 162589 station_ip 113.203.78.111 162589 port 677 162589 unique_id port 162589 remote_ip 10.8.0.10 162591 username jamali 162591 kill_reason Another user logged on this global unique id 162591 mac 162591 bytes_out 0 162591 bytes_in 0 162591 station_ip 5.119.86.183 162591 port 353 162591 unique_id port 162591 remote_ip 10.8.1.82 162594 username alihosseini1 162594 mac 162594 bytes_out 0 162594 bytes_in 0 162594 station_ip 5.120.84.195 162594 port 722 162594 unique_id port 162594 remote_ip 10.8.0.22 162597 username ghiyasi 162597 mac 162597 bytes_out 1765 162597 bytes_in 3546 162597 station_ip 5.120.41.81 162597 port 677 162597 unique_id port 162597 remote_ip 10.8.0.38 162598 username tahmasebi 162598 mac 162598 bytes_out 0 162598 bytes_in 0 162598 station_ip 5.119.68.191 162598 port 715 162598 unique_id port 162598 remote_ip 10.8.0.42 162601 username jafari 162601 kill_reason Another user logged on this global unique id 162601 mac 162601 bytes_out 0 162601 bytes_in 0 162585 username barzegar 162585 mac 162585 bytes_out 0 162585 bytes_in 0 162585 station_ip 5.119.87.5 162585 port 722 162585 unique_id port 162585 remote_ip 10.8.0.234 162588 username vanila 162588 mac 162588 bytes_out 2018933 162588 bytes_in 9623686 162588 station_ip 37.129.70.35 162588 port 724 162588 unique_id port 162588 remote_ip 10.8.0.178 162590 username jafari 162590 kill_reason Another user logged on this global unique id 162590 mac 162590 bytes_out 0 162590 bytes_in 0 162590 station_ip 5.134.143.111 162590 port 696 162590 unique_id port 162592 username barzegar 162592 mac 162592 bytes_out 0 162592 bytes_in 0 162592 station_ip 5.119.87.5 162592 port 358 162592 unique_id port 162592 remote_ip 10.8.1.174 162599 username barzegar 162599 mac 162599 bytes_out 0 162599 bytes_in 0 162599 station_ip 5.119.87.5 162599 port 359 162599 unique_id port 162599 remote_ip 10.8.1.174 162600 username mohammadmahdi 162600 kill_reason Another user logged on this global unique id 162600 mac 162600 bytes_out 0 162600 bytes_in 0 162600 station_ip 5.119.11.76 162600 port 677 162600 unique_id port 162600 remote_ip 10.8.0.54 162603 username fezealinaghi 162603 kill_reason Another user logged on this global unique id 162603 mac 162603 bytes_out 0 162603 bytes_in 0 162603 station_ip 83.122.54.70 162603 port 328 162603 unique_id port 162605 username fezealinaghi 162605 mac 162605 bytes_out 0 162605 bytes_in 0 162605 station_ip 83.122.54.70 162605 port 328 162605 unique_id port 162607 username tahmasebi 162607 mac 162607 bytes_out 200732 162607 bytes_in 1394204 162607 station_ip 5.119.68.191 162607 port 715 162607 unique_id port 162607 remote_ip 10.8.0.42 162610 username jafari 162610 kill_reason Another user logged on this global unique id 162610 mac 162610 bytes_out 0 162610 bytes_in 0 162610 station_ip 5.134.143.111 162610 port 696 162610 unique_id port 162613 username alihosseini1 162613 mac 162613 bytes_out 0 162613 bytes_in 0 162613 station_ip 5.120.84.195 162613 port 359 162613 unique_id port 162613 remote_ip 10.8.1.106 162614 username tahmasebi 162614 mac 162614 bytes_out 0 162614 bytes_in 0 162614 station_ip 5.119.68.191 162614 port 359 162614 unique_id port 162614 remote_ip 10.8.1.90 162617 username alihosseini1 162617 mac 162617 bytes_out 1990 162617 bytes_in 4003 162617 station_ip 5.120.84.195 162617 port 703 162617 unique_id port 162617 remote_ip 10.8.0.22 162620 username mohammadmahdi 162620 kill_reason Another user logged on this global unique id 162620 mac 162620 bytes_out 0 162620 bytes_in 0 162620 station_ip 5.119.11.76 162620 port 677 162620 unique_id port 162626 username jafari 162626 kill_reason Another user logged on this global unique id 162626 mac 162626 bytes_out 0 162626 bytes_in 0 162626 station_ip 5.134.143.111 162626 port 696 162626 unique_id port 162631 username ghiyasi 162631 mac 162631 bytes_out 10055 162631 bytes_in 19546 162631 station_ip 5.119.79.169 162631 port 703 162631 unique_id port 162631 remote_ip 10.8.0.38 162634 username alihosseini1 162634 mac 162634 bytes_out 0 162634 bytes_in 0 162634 station_ip 5.120.84.195 162634 port 703 162634 unique_id port 162634 remote_ip 10.8.0.22 162641 username barzegar 162641 mac 162641 bytes_out 0 162641 bytes_in 0 162641 station_ip 5.119.87.5 162641 port 677 162641 unique_id port 162641 remote_ip 10.8.0.234 162647 username shadkam 162647 mac 162647 bytes_out 286275 162647 bytes_in 2113724 162647 station_ip 37.129.66.19 162647 port 715 162647 unique_id port 162601 station_ip 5.134.143.111 162601 port 696 162601 unique_id port 162609 username barzegar 162609 mac 162609 bytes_out 0 162609 bytes_in 0 162609 station_ip 5.119.87.5 162609 port 362 162609 unique_id port 162609 remote_ip 10.8.1.174 162615 username ghiyasi 162615 mac 162615 bytes_out 34570 162615 bytes_in 61394 162615 station_ip 5.119.79.169 162615 port 722 162615 unique_id port 162615 remote_ip 10.8.0.38 162616 username barzegar 162616 mac 162616 bytes_out 0 162616 bytes_in 0 162616 station_ip 5.119.87.5 162616 port 359 162616 unique_id port 162616 remote_ip 10.8.1.174 162618 username barzegar 162618 mac 162618 bytes_out 0 162618 bytes_in 0 162618 station_ip 5.119.87.5 162618 port 359 162618 unique_id port 162618 remote_ip 10.8.1.174 162619 username alihosseini1 162619 mac 162619 bytes_out 0 162619 bytes_in 0 162619 station_ip 5.120.84.195 162619 port 703 162619 unique_id port 162619 remote_ip 10.8.0.22 162622 username shadkam 162622 mac 162622 bytes_out 361345 162622 bytes_in 162458 162622 station_ip 83.122.186.170 162622 port 715 162622 unique_id port 162622 remote_ip 10.8.0.62 162623 username alihosseini1 162623 mac 162623 bytes_out 0 162623 bytes_in 0 162623 station_ip 5.120.84.195 162623 port 703 162623 unique_id port 162623 remote_ip 10.8.0.22 162624 username yarmohamadi 162624 kill_reason Another user logged on this global unique id 162624 mac 162624 bytes_out 0 162624 bytes_in 0 162624 station_ip 5.119.180.198 162624 port 717 162624 unique_id port 162625 username barzegar 162625 mac 162625 bytes_out 0 162625 bytes_in 0 162625 station_ip 5.119.87.5 162625 port 359 162625 unique_id port 162625 remote_ip 10.8.1.174 162629 username malekpoir 162629 kill_reason Another user logged on this global unique id 162629 mac 162629 bytes_out 0 162629 bytes_in 0 162629 station_ip 5.120.21.149 162629 port 661 162629 unique_id port 162633 username yarmohamadi 162633 mac 162633 bytes_out 0 162633 bytes_in 0 162633 station_ip 5.119.180.198 162633 port 717 162633 unique_id port 162636 username mohammadmahdi 162636 mac 162636 bytes_out 0 162636 bytes_in 0 162636 station_ip 5.119.11.76 162636 port 677 162636 unique_id port 162638 username tahmasebi 162638 mac 162638 bytes_out 0 162638 bytes_in 0 162638 station_ip 5.119.68.191 162638 port 359 162638 unique_id port 162638 remote_ip 10.8.1.90 162642 username sabaghnezhad 162642 mac 162642 bytes_out 310075 162642 bytes_in 433573 162642 station_ip 83.123.213.60 162642 port 673 162642 unique_id port 162642 remote_ip 10.8.0.186 162645 username mohammadjavad 162645 mac 162645 bytes_out 616416 162645 bytes_in 5837742 162645 station_ip 37.129.182.62 162645 port 725 162645 unique_id port 162645 remote_ip 10.8.0.142 162646 username tahmasebi 162646 mac 162646 bytes_out 0 162646 bytes_in 0 162646 station_ip 5.119.68.191 162646 port 351 162646 unique_id port 162646 remote_ip 10.8.1.90 162657 username tahmasebi 162657 mac 162657 bytes_out 0 162657 bytes_in 0 162657 station_ip 5.119.68.191 162657 port 358 162657 unique_id port 162657 remote_ip 10.8.1.90 162658 username tahmasebi 162658 mac 162658 bytes_out 0 162658 bytes_in 0 162658 station_ip 5.119.68.191 162658 port 715 162658 unique_id port 162658 remote_ip 10.8.0.42 162668 username asma2026 162668 mac 162668 bytes_out 0 162668 bytes_in 0 162668 station_ip 130.255.197.210 162668 port 707 162668 unique_id port 162668 remote_ip 10.8.0.94 162670 username asma2026 162602 kill_reason Another user logged on this global unique id 162602 mac 162602 bytes_out 0 162602 bytes_in 0 162602 station_ip 5.119.180.198 162602 port 717 162602 unique_id port 162604 username kordestani 162604 mac 162604 bytes_out 1755774 162604 bytes_in 24546047 162604 station_ip 37.129.28.149 162604 port 703 162604 unique_id port 162604 remote_ip 10.8.0.74 162606 username barzegar 162606 mac 162606 bytes_out 0 162606 bytes_in 0 162606 station_ip 5.119.87.5 162606 port 724 162606 unique_id port 162606 remote_ip 10.8.0.234 162608 username tahmasebi 162608 mac 162608 bytes_out 0 162608 bytes_in 0 162608 station_ip 5.119.68.191 162608 port 363 162608 unique_id port 162608 remote_ip 10.8.1.90 162611 username barzegar 162611 mac 162611 bytes_out 0 162611 bytes_in 0 162611 station_ip 5.119.87.5 162611 port 362 162611 unique_id port 162611 remote_ip 10.8.1.174 162612 username asma2026 162612 kill_reason Another user logged on this global unique id 162612 mac 162612 bytes_out 0 162612 bytes_in 0 162612 station_ip 130.255.197.210 162612 port 707 162612 unique_id port 162612 remote_ip 10.8.0.94 162621 username kalantary 162621 mac 162621 bytes_out 0 162621 bytes_in 0 162621 station_ip 83.122.60.89 162621 port 361 162621 unique_id port 162621 remote_ip 10.8.1.26 162627 username tahmorsi 162627 kill_reason Another user logged on this global unique id 162627 mac 162627 bytes_out 0 162627 bytes_in 0 162627 station_ip 86.57.113.32 162627 port 724 162627 unique_id port 162627 remote_ip 10.8.0.210 162628 username alihosseini1 162628 mac 162628 bytes_out 0 162628 bytes_in 0 162628 station_ip 5.120.84.195 162628 port 359 162628 unique_id port 162628 remote_ip 10.8.1.106 162630 username milan 162630 kill_reason Another user logged on this global unique id 162630 mac 162630 bytes_out 0 162630 bytes_in 0 162630 station_ip 5.119.161.192 162630 port 710 162630 unique_id port 162632 username kalantary 162632 mac 162632 bytes_out 106674 162632 bytes_in 254029 162632 station_ip 83.122.60.89 162632 port 722 162632 unique_id port 162632 remote_ip 10.8.0.98 162635 username aminvpn 162635 mac 162635 bytes_out 8004343 162635 bytes_in 34708326 162635 station_ip 83.122.120.158 162635 port 720 162635 unique_id port 162635 remote_ip 10.8.0.14 162637 username alihosseini1 162637 mac 162637 bytes_out 4445 162637 bytes_in 5446 162637 station_ip 5.120.84.195 162637 port 703 162637 unique_id port 162637 remote_ip 10.8.0.22 162639 username milan 162639 kill_reason Another user logged on this global unique id 162639 mac 162639 bytes_out 0 162639 bytes_in 0 162639 station_ip 5.119.161.192 162639 port 710 162639 unique_id port 162640 username pourshad 162640 mac 162640 bytes_out 0 162640 bytes_in 0 162640 station_ip 5.119.76.144 162640 port 351 162640 unique_id port 162640 remote_ip 10.8.1.154 162643 username pourshad 162643 mac 162643 bytes_out 0 162643 bytes_in 0 162643 station_ip 5.119.76.144 162643 port 351 162643 unique_id port 162643 remote_ip 10.8.1.154 162644 username tahmasebi 162644 mac 162644 bytes_out 0 162644 bytes_in 0 162644 station_ip 5.119.68.191 162644 port 359 162644 unique_id port 162644 remote_ip 10.8.1.90 162649 username asma2026 162649 mac 162649 bytes_out 0 162649 bytes_in 0 162649 station_ip 130.255.197.210 162649 port 707 162649 unique_id port 162650 username jamali 162650 mac 162650 bytes_out 0 162650 bytes_in 0 162650 station_ip 5.119.86.183 162650 port 353 162650 unique_id port 162653 username tahmasebi 162647 remote_ip 10.8.0.62 162648 username tahmasebi 162648 mac 162648 bytes_out 0 162648 bytes_in 0 162648 station_ip 5.119.68.191 162648 port 351 162648 unique_id port 162648 remote_ip 10.8.1.90 162651 username godarzi 162651 mac 162651 bytes_out 0 162651 bytes_in 0 162651 station_ip 5.119.33.227 162651 port 358 162651 unique_id port 162651 remote_ip 10.8.1.230 162652 username jafari 162652 kill_reason Another user logged on this global unique id 162652 mac 162652 bytes_out 0 162652 bytes_in 0 162652 station_ip 5.134.143.111 162652 port 696 162652 unique_id port 162654 username barzegar 162654 mac 162654 bytes_out 0 162654 bytes_in 0 162654 station_ip 5.119.87.5 162654 port 351 162654 unique_id port 162654 remote_ip 10.8.1.174 162656 username barzegar 162656 mac 162656 bytes_out 0 162656 bytes_in 0 162656 station_ip 5.119.87.5 162656 port 351 162656 unique_id port 162656 remote_ip 10.8.1.174 162659 username jafari 162659 kill_reason Another user logged on this global unique id 162659 mac 162659 bytes_out 0 162659 bytes_in 0 162659 station_ip 5.134.143.111 162659 port 696 162659 unique_id port 162660 username tahmasebi 162660 mac 162660 bytes_out 0 162660 bytes_in 0 162660 station_ip 5.119.68.191 162660 port 715 162660 unique_id port 162660 remote_ip 10.8.0.42 162662 username tahmasebi 162662 mac 162662 bytes_out 0 162662 bytes_in 0 162662 station_ip 5.119.68.191 162662 port 715 162662 unique_id port 162662 remote_ip 10.8.0.42 162663 username barzegar 162663 kill_reason Maximum check online fails reached 162663 mac 162663 bytes_out 0 162663 bytes_in 0 162663 station_ip 5.119.87.5 162663 port 351 162663 unique_id port 162664 username shadkam 162664 mac 162664 bytes_out 0 162664 bytes_in 0 162664 station_ip 83.122.44.180 162664 port 707 162664 unique_id port 162664 remote_ip 10.8.0.62 162665 username asma2026 162665 mac 162665 bytes_out 0 162665 bytes_in 0 162665 station_ip 130.255.197.210 162665 port 707 162665 unique_id port 162665 remote_ip 10.8.0.94 162667 username tahmasebi 162667 mac 162667 bytes_out 0 162667 bytes_in 0 162667 station_ip 5.119.68.191 162667 port 715 162667 unique_id port 162667 remote_ip 10.8.0.42 162671 username barzegar 162671 mac 162671 bytes_out 0 162671 bytes_in 0 162671 station_ip 5.119.87.5 162671 port 359 162671 unique_id port 162671 remote_ip 10.8.1.174 162673 username pourshad 162673 mac 162673 bytes_out 0 162673 bytes_in 0 162673 station_ip 5.119.76.144 162673 port 717 162673 unique_id port 162673 remote_ip 10.8.0.18 162680 username jamali 162680 mac 162680 bytes_out 52491 162680 bytes_in 65701 162680 station_ip 5.119.86.183 162680 port 353 162680 unique_id port 162680 remote_ip 10.8.1.82 162681 username ghiyasi 162681 mac 162681 bytes_out 0 162681 bytes_in 0 162681 station_ip 5.120.127.28 162681 port 717 162681 unique_id port 162681 remote_ip 10.8.0.38 162685 username tahmasebi 162685 mac 162685 bytes_out 0 162685 bytes_in 0 162685 station_ip 5.119.68.191 162685 port 717 162685 unique_id port 162685 remote_ip 10.8.0.42 162693 username sabaghnezhad 162693 mac 162693 bytes_out 0 162693 bytes_in 0 162693 station_ip 83.123.213.60 162693 port 677 162693 unique_id port 162693 remote_ip 10.8.0.186 162695 username godarzi 162695 mac 162695 bytes_out 779910 162695 bytes_in 4414124 162695 station_ip 5.119.33.227 162695 port 353 162695 unique_id port 162695 remote_ip 10.8.1.230 162698 username ghiyasi 162698 mac 162653 mac 162653 bytes_out 0 162653 bytes_in 0 162653 station_ip 5.119.68.191 162653 port 351 162653 unique_id port 162653 remote_ip 10.8.1.90 162655 username ghiyasi 162655 mac 162655 bytes_out 2810 162655 bytes_in 4320 162655 station_ip 5.119.112.165 162655 port 715 162655 unique_id port 162655 remote_ip 10.8.0.38 162661 username tahmasebi 162661 mac 162661 bytes_out 0 162661 bytes_in 0 162661 station_ip 5.119.68.191 162661 port 715 162661 unique_id port 162661 remote_ip 10.8.0.42 162666 username tahmorsi 162666 mac 162666 bytes_out 0 162666 bytes_in 0 162666 station_ip 86.57.113.32 162666 port 724 162666 unique_id port 162669 username barzegar 162669 mac 162669 bytes_out 0 162669 bytes_in 0 162669 station_ip 5.119.87.5 162669 port 359 162669 unique_id port 162669 remote_ip 10.8.1.174 162672 username vanila 162672 mac 162672 bytes_out 855065 162672 bytes_in 1394684 162672 station_ip 37.129.70.35 162672 port 673 162672 unique_id port 162672 remote_ip 10.8.0.178 162676 username asma2026 162676 mac 162676 bytes_out 0 162676 bytes_in 0 162676 station_ip 130.255.197.210 162676 port 717 162676 unique_id port 162676 remote_ip 10.8.0.94 162679 username ghiyasi 162679 mac 162679 bytes_out 0 162679 bytes_in 0 162679 station_ip 5.119.25.169 162679 port 722 162679 unique_id port 162679 remote_ip 10.8.0.38 162682 username forozandeh1 162682 mac 162682 bytes_out 0 162682 bytes_in 0 162682 station_ip 83.123.253.34 162682 port 715 162682 unique_id port 162682 remote_ip 10.8.0.130 162683 username barzegar 162683 mac 162683 bytes_out 0 162683 bytes_in 0 162683 station_ip 5.119.87.5 162683 port 715 162683 unique_id port 162683 remote_ip 10.8.0.234 162687 username ghiyasi 162687 mac 162687 bytes_out 20359 162687 bytes_in 34833 162687 station_ip 5.119.174.109 162687 port 722 162687 unique_id port 162687 remote_ip 10.8.0.38 162688 username barzegar 162688 mac 162688 bytes_out 0 162688 bytes_in 0 162688 station_ip 5.119.87.5 162688 port 358 162688 unique_id port 162688 remote_ip 10.8.1.174 162690 username barzegar 162690 mac 162690 bytes_out 0 162690 bytes_in 0 162690 station_ip 5.119.87.5 162690 port 707 162690 unique_id port 162690 remote_ip 10.8.0.234 162691 username jafari 162691 kill_reason Another user logged on this global unique id 162691 mac 162691 bytes_out 0 162691 bytes_in 0 162691 station_ip 5.134.143.111 162691 port 696 162691 unique_id port 162692 username ghiyasi 162692 mac 162692 bytes_out 0 162692 bytes_in 0 162692 station_ip 5.120.114.43 162692 port 715 162692 unique_id port 162692 remote_ip 10.8.0.38 162696 username asma2026 162696 mac 162696 bytes_out 0 162696 bytes_in 0 162696 station_ip 130.255.197.210 162696 port 358 162696 unique_id port 162696 remote_ip 10.8.1.122 162699 username asma2026 162699 mac 162699 bytes_out 0 162699 bytes_in 0 162699 station_ip 130.255.197.210 162699 port 353 162699 unique_id port 162699 remote_ip 10.8.1.122 162701 username asma2026 162701 mac 162701 bytes_out 0 162701 bytes_in 0 162701 station_ip 130.255.197.210 162701 port 353 162701 unique_id port 162701 remote_ip 10.8.1.122 162703 username asma2026 162703 mac 162703 bytes_out 0 162703 bytes_in 0 162703 station_ip 130.255.197.210 162703 port 677 162703 unique_id port 162703 remote_ip 10.8.0.94 162704 username pourshad 162704 mac 162704 bytes_out 0 162704 bytes_in 0 162704 station_ip 5.112.162.248 162704 port 717 162670 mac 162670 bytes_out 0 162670 bytes_in 0 162670 station_ip 130.255.197.210 162670 port 707 162670 unique_id port 162670 remote_ip 10.8.0.94 162674 username jafari 162674 kill_reason Another user logged on this global unique id 162674 mac 162674 bytes_out 0 162674 bytes_in 0 162674 station_ip 5.134.143.111 162674 port 696 162674 unique_id port 162675 username godarzi 162675 mac 162675 bytes_out 0 162675 bytes_in 0 162675 station_ip 5.119.33.227 162675 port 358 162675 unique_id port 162675 remote_ip 10.8.1.230 162677 username pourshad 162677 mac 162677 bytes_out 0 162677 bytes_in 0 162677 station_ip 5.120.142.15 162677 port 673 162677 unique_id port 162677 remote_ip 10.8.0.18 162678 username barzegar 162678 mac 162678 bytes_out 0 162678 bytes_in 0 162678 station_ip 5.119.87.5 162678 port 358 162678 unique_id port 162678 remote_ip 10.8.1.174 162684 username asma2026 162684 mac 162684 bytes_out 0 162684 bytes_in 0 162684 station_ip 130.255.197.210 162684 port 715 162684 unique_id port 162684 remote_ip 10.8.0.94 162686 username barzegar 162686 mac 162686 bytes_out 0 162686 bytes_in 0 162686 station_ip 5.119.87.5 162686 port 715 162686 unique_id port 162686 remote_ip 10.8.0.234 162689 username kalantary 162689 mac 162689 bytes_out 0 162689 bytes_in 0 162689 station_ip 83.122.126.9 162689 port 707 162689 unique_id port 162689 remote_ip 10.8.0.98 162694 username asma2026 162694 mac 162694 bytes_out 0 162694 bytes_in 0 162694 station_ip 130.255.197.210 162694 port 677 162694 unique_id port 162694 remote_ip 10.8.0.94 162697 username mohammadjavad 162697 mac 162697 bytes_out 0 162697 bytes_in 0 162697 station_ip 37.129.30.128 162697 port 720 162697 unique_id port 162697 remote_ip 10.8.0.142 162700 username ghiyasi 162700 mac 162700 bytes_out 0 162700 bytes_in 0 162700 station_ip 5.119.120.166 162700 port 677 162700 unique_id port 162700 remote_ip 10.8.0.38 162702 username tahmasebi 162702 mac 162702 bytes_out 0 162702 bytes_in 0 162702 station_ip 5.119.68.191 162702 port 715 162702 unique_id port 162702 remote_ip 10.8.0.42 162705 username asma2026 162705 kill_reason Maximum check online fails reached 162705 mac 162705 bytes_out 0 162705 bytes_in 0 162705 station_ip 130.255.197.210 162705 port 353 162705 unique_id port 162708 username asma2026 162708 mac 162708 bytes_out 0 162708 bytes_in 0 162708 station_ip 130.255.197.210 162708 port 715 162708 unique_id port 162708 remote_ip 10.8.0.94 162710 username asma2026 162710 mac 162710 bytes_out 0 162710 bytes_in 0 162710 station_ip 130.255.197.210 162710 port 720 162710 unique_id port 162710 remote_ip 10.8.0.94 162711 username pourshad 162711 mac 162711 bytes_out 0 162711 bytes_in 0 162711 station_ip 5.112.162.248 162711 port 677 162711 unique_id port 162711 remote_ip 10.8.0.18 162712 username barzegar 162712 mac 162712 bytes_out 0 162712 bytes_in 0 162712 station_ip 5.119.87.5 162712 port 720 162712 unique_id port 162712 remote_ip 10.8.0.234 162714 username mehdizare 162714 mac 162714 bytes_out 0 162714 bytes_in 0 162714 station_ip 83.122.5.111 162714 port 718 162714 unique_id port 162714 remote_ip 10.8.0.90 162716 username aminvpn 162716 unique_id port 162716 terminate_cause Lost-Carrier 162716 bytes_out 27665210 162716 bytes_in 1097989042 162716 station_ip 31.57.128.87 162716 port 15728651 162716 nas_port_type Virtual 162716 remote_ip 5.5.5.242 162717 username pourshad 162717 mac 162717 bytes_out 0 162698 bytes_out 0 162698 bytes_in 0 162698 station_ip 5.120.85.240 162698 port 707 162698 unique_id port 162698 remote_ip 10.8.0.38 162706 username ghiyasi 162706 mac 162706 bytes_out 0 162706 bytes_in 0 162706 station_ip 5.119.151.21 162706 port 720 162706 unique_id port 162706 remote_ip 10.8.0.38 162709 username barzegar 162709 mac 162709 bytes_out 0 162709 bytes_in 0 162709 station_ip 5.119.87.5 162709 port 715 162709 unique_id port 162709 remote_ip 10.8.0.234 162713 username asma2026 162713 mac 162713 bytes_out 0 162713 bytes_in 0 162713 station_ip 130.255.197.210 162713 port 677 162713 unique_id port 162713 remote_ip 10.8.0.94 162718 username tahmasebi 162718 mac 162718 bytes_out 0 162718 bytes_in 0 162718 station_ip 5.119.68.191 162718 port 362 162718 unique_id port 162718 remote_ip 10.8.1.90 162722 username jamali 162722 mac 162722 bytes_out 12779 162722 bytes_in 16234 162722 station_ip 5.119.86.183 162722 port 358 162722 unique_id port 162722 remote_ip 10.8.1.82 162724 username tahmasebi 162724 mac 162724 bytes_out 0 162724 bytes_in 0 162724 station_ip 5.119.68.191 162724 port 722 162724 unique_id port 162724 remote_ip 10.8.0.42 162727 username pourshad 162727 mac 162727 bytes_out 1811 162727 bytes_in 3685 162727 station_ip 5.112.162.248 162727 port 361 162727 unique_id port 162727 remote_ip 10.8.1.154 162729 username shadkam 162729 mac 162729 bytes_out 26259 162729 bytes_in 153000 162729 station_ip 37.129.212.178 162729 port 703 162729 unique_id port 162729 remote_ip 10.8.0.62 162732 username barzegar 162732 mac 162732 bytes_out 5035 162732 bytes_in 7605 162732 station_ip 5.119.87.5 162732 port 720 162732 unique_id port 162732 remote_ip 10.8.0.234 162734 username tahmasebi 162734 mac 162734 bytes_out 0 162734 bytes_in 0 162734 station_ip 5.119.68.191 162734 port 709 162734 unique_id port 162734 remote_ip 10.8.0.42 162740 username rezaei 162740 mac 162740 bytes_out 0 162740 bytes_in 0 162740 station_ip 5.119.53.117 162740 port 709 162740 unique_id port 162740 remote_ip 10.8.0.230 162742 username barzegar 162742 mac 162742 bytes_out 0 162742 bytes_in 0 162742 station_ip 5.119.87.5 162742 port 709 162742 unique_id port 162742 remote_ip 10.8.0.234 162744 username barzegar 162744 mac 162744 bytes_out 0 162744 bytes_in 0 162744 station_ip 5.119.87.5 162744 port 709 162744 unique_id port 162744 remote_ip 10.8.0.234 162755 username barzegar 162755 mac 162755 bytes_out 0 162755 bytes_in 0 162755 station_ip 5.119.87.5 162755 port 720 162755 unique_id port 162755 remote_ip 10.8.0.234 162757 username ghiyasi 162757 mac 162757 bytes_out 0 162757 bytes_in 0 162757 station_ip 5.120.135.6 162757 port 715 162757 unique_id port 162757 remote_ip 10.8.0.38 162762 username jafari 162762 kill_reason Another user logged on this global unique id 162762 mac 162762 bytes_out 0 162762 bytes_in 0 162762 station_ip 5.134.143.111 162762 port 696 162762 unique_id port 162771 username asma2026 162771 mac 162771 bytes_out 0 162771 bytes_in 0 162771 station_ip 130.255.197.210 162771 port 364 162771 unique_id port 162771 remote_ip 10.8.1.122 162773 username sekonji3 162773 mac 162773 bytes_out 0 162773 bytes_in 0 162773 station_ip 83.123.191.215 162773 port 709 162773 unique_id port 162773 remote_ip 10.8.0.6 162774 username vanila 162774 mac 162774 bytes_out 0 162774 bytes_in 0 162774 station_ip 37.129.70.35 162774 port 715 162704 unique_id port 162704 remote_ip 10.8.0.18 162707 username jafari 162707 kill_reason Another user logged on this global unique id 162707 mac 162707 bytes_out 0 162707 bytes_in 0 162707 station_ip 5.134.143.111 162707 port 696 162707 unique_id port 162715 username forozandeh1 162715 mac 162715 bytes_out 0 162715 bytes_in 0 162715 station_ip 83.122.129.155 162715 port 715 162715 unique_id port 162715 remote_ip 10.8.0.130 162723 username vanila 162723 mac 162723 bytes_out 207109 162723 bytes_in 659096 162723 station_ip 37.129.70.35 162723 port 718 162723 unique_id port 162723 remote_ip 10.8.0.178 162725 username jamali 162725 mac 162725 bytes_out 4452 162725 bytes_in 14582 162725 station_ip 5.119.86.183 162725 port 358 162725 unique_id port 162725 remote_ip 10.8.1.82 162728 username khademi 162728 mac 162728 bytes_out 0 162728 bytes_in 0 162728 station_ip 113.203.78.111 162728 port 709 162728 unique_id port 162728 remote_ip 10.8.0.10 162731 username jafari 162731 kill_reason Another user logged on this global unique id 162731 mac 162731 bytes_out 0 162731 bytes_in 0 162731 station_ip 5.134.143.111 162731 port 696 162731 unique_id port 162736 username barzegar 162736 mac 162736 bytes_out 0 162736 bytes_in 0 162736 station_ip 5.119.87.5 162736 port 717 162736 unique_id port 162736 remote_ip 10.8.0.234 162738 username tahmasebi 162738 mac 162738 bytes_out 0 162738 bytes_in 0 162738 station_ip 5.119.68.191 162738 port 361 162738 unique_id port 162738 remote_ip 10.8.1.90 162739 username ahmadi1 162739 mac 162739 bytes_out 0 162739 bytes_in 0 162739 station_ip 113.203.110.133 162739 port 717 162739 unique_id port 162739 remote_ip 10.8.0.250 162745 username jamali 162745 mac 162745 bytes_out 0 162745 bytes_in 0 162745 station_ip 5.119.86.183 162745 port 358 162745 unique_id port 162745 remote_ip 10.8.1.82 162746 username asma2026 162746 mac 162746 bytes_out 0 162746 bytes_in 0 162746 station_ip 130.255.197.210 162746 port 715 162746 unique_id port 162746 remote_ip 10.8.0.94 162748 username aminvpn 162748 mac 162748 bytes_out 0 162748 bytes_in 0 162748 station_ip 5.119.94.12 162748 port 707 162748 unique_id port 162748 remote_ip 10.8.0.14 162749 username barzegar 162749 mac 162749 bytes_out 0 162749 bytes_in 0 162749 station_ip 5.119.87.5 162749 port 707 162749 unique_id port 162749 remote_ip 10.8.0.234 162750 username milan 162750 kill_reason Another user logged on this global unique id 162750 mac 162750 bytes_out 0 162750 bytes_in 0 162750 station_ip 5.119.161.192 162750 port 710 162750 unique_id port 162753 username tahmasebi 162753 mac 162753 bytes_out 0 162753 bytes_in 0 162753 station_ip 5.119.68.191 162753 port 361 162753 unique_id port 162753 remote_ip 10.8.1.90 162754 username barzegar 162754 mac 162754 bytes_out 0 162754 bytes_in 0 162754 station_ip 5.119.87.5 162754 port 717 162754 unique_id port 162754 remote_ip 10.8.0.234 162758 username pourshad 162758 mac 162758 bytes_out 0 162758 bytes_in 0 162758 station_ip 5.119.144.100 162758 port 709 162758 unique_id port 162758 remote_ip 10.8.0.18 162760 username asma2026 162760 mac 162760 bytes_out 0 162760 bytes_in 0 162760 station_ip 130.255.197.210 162760 port 362 162760 unique_id port 162760 remote_ip 10.8.1.122 162761 username asma2026 162761 mac 162761 bytes_out 0 162761 bytes_in 0 162761 station_ip 130.255.197.210 162761 port 673 162761 unique_id port 162761 remote_ip 10.8.0.94 162717 bytes_in 0 162717 station_ip 5.112.162.248 162717 port 361 162717 unique_id port 162717 remote_ip 10.8.1.154 162719 username jafari 162719 kill_reason Another user logged on this global unique id 162719 mac 162719 bytes_out 0 162719 bytes_in 0 162719 station_ip 5.134.143.111 162719 port 696 162719 unique_id port 162720 username barzegar 162720 mac 162720 bytes_out 0 162720 bytes_in 0 162720 station_ip 5.119.87.5 162720 port 718 162720 unique_id port 162720 remote_ip 10.8.0.234 162721 username jamali 162721 mac 162721 bytes_out 1253487 162721 bytes_in 11864976 162721 station_ip 5.119.86.183 162721 port 358 162721 unique_id port 162721 remote_ip 10.8.1.82 162726 username mohammadmahdi 162726 mac 162726 bytes_out 0 162726 bytes_in 0 162726 station_ip 5.119.11.76 162726 port 703 162726 unique_id port 162726 remote_ip 10.8.0.54 162730 username barzegar 162730 mac 162730 bytes_out 0 162730 bytes_in 0 162730 station_ip 5.119.87.5 162730 port 358 162730 unique_id port 162730 remote_ip 10.8.1.174 162733 username ghiyasi 162733 mac 162733 bytes_out 0 162733 bytes_in 0 162733 station_ip 5.120.78.213 162733 port 717 162733 unique_id port 162733 remote_ip 10.8.0.38 162735 username mirzaei 162735 kill_reason Another user logged on this global unique id 162735 mac 162735 bytes_out 0 162735 bytes_in 0 162735 station_ip 5.119.180.17 162735 port 721 162735 unique_id port 162735 remote_ip 10.8.0.66 162737 username pourshad 162737 mac 162737 bytes_out 0 162737 bytes_in 0 162737 station_ip 5.119.144.100 162737 port 720 162737 unique_id port 162737 remote_ip 10.8.0.18 162741 username mehdizare 162741 mac 162741 bytes_out 0 162741 bytes_in 0 162741 station_ip 83.122.5.111 162741 port 715 162741 unique_id port 162741 remote_ip 10.8.0.90 162743 username jafari 162743 kill_reason Another user logged on this global unique id 162743 mac 162743 bytes_out 0 162743 bytes_in 0 162743 station_ip 5.134.143.111 162743 port 696 162743 unique_id port 162747 username ghiyasi 162747 mac 162747 bytes_out 0 162747 bytes_in 0 162747 station_ip 5.120.135.6 162747 port 722 162747 unique_id port 162747 remote_ip 10.8.0.38 162751 username asma2026 162751 mac 162751 bytes_out 0 162751 bytes_in 0 162751 station_ip 130.255.197.210 162751 port 361 162751 unique_id port 162751 remote_ip 10.8.1.122 162752 username alihosseini1 162752 kill_reason Another user logged on this global unique id 162752 mac 162752 bytes_out 0 162752 bytes_in 0 162752 station_ip 5.120.113.93 162752 port 673 162752 unique_id port 162752 remote_ip 10.8.0.22 162756 username alihosseini1 162756 mac 162756 bytes_out 0 162756 bytes_in 0 162756 station_ip 5.120.113.93 162756 port 673 162756 unique_id port 162759 username barzegar 162759 mac 162759 bytes_out 0 162759 bytes_in 0 162759 station_ip 5.119.87.5 162759 port 673 162759 unique_id port 162759 remote_ip 10.8.0.234 162765 username mahdiyehalizadeh 162765 mac 162765 bytes_out 0 162765 bytes_in 0 162765 station_ip 5.119.170.16 162765 port 707 162765 unique_id port 162765 remote_ip 10.8.0.82 162767 username asma2026 162767 mac 162767 bytes_out 0 162767 bytes_in 0 162767 station_ip 130.255.197.210 162767 port 707 162767 unique_id port 162767 remote_ip 10.8.0.94 162769 username milan 162769 kill_reason Another user logged on this global unique id 162769 mac 162769 bytes_out 0 162769 bytes_in 0 162769 station_ip 5.119.161.192 162769 port 710 162769 unique_id port 162777 username pourshad 162777 mac 162777 bytes_out 53271 162763 username barzegar 162763 mac 162763 bytes_out 0 162763 bytes_in 0 162763 station_ip 5.119.87.5 162763 port 363 162763 unique_id port 162763 remote_ip 10.8.1.174 162764 username ghiyasi 162764 mac 162764 bytes_out 0 162764 bytes_in 0 162764 station_ip 5.120.135.6 162764 port 709 162764 unique_id port 162764 remote_ip 10.8.0.38 162766 username sekonji3 162766 mac 162766 bytes_out 0 162766 bytes_in 0 162766 station_ip 83.123.191.215 162766 port 718 162766 unique_id port 162766 remote_ip 10.8.0.6 162768 username barzegar 162768 kill_reason Maximum check online fails reached 162768 mac 162768 bytes_out 0 162768 bytes_in 0 162768 station_ip 5.119.87.5 162768 port 363 162768 unique_id port 162770 username barzegar 162770 mac 162770 bytes_out 0 162770 bytes_in 0 162770 station_ip 5.119.87.5 162770 port 709 162770 unique_id port 162770 remote_ip 10.8.0.234 162772 username sekonji3 162772 mac 162772 bytes_out 0 162772 bytes_in 0 162772 station_ip 83.123.191.215 162772 port 709 162772 unique_id port 162772 remote_ip 10.8.0.6 162775 username sekonji3 162775 mac 162775 bytes_out 0 162775 bytes_in 0 162775 station_ip 83.123.191.215 162775 port 709 162775 unique_id port 162775 remote_ip 10.8.0.6 162779 username asma2026 162779 mac 162779 bytes_out 0 162779 bytes_in 0 162779 station_ip 130.255.197.210 162779 port 715 162779 unique_id port 162779 remote_ip 10.8.0.94 162781 username jafari 162781 kill_reason Another user logged on this global unique id 162781 mac 162781 bytes_out 0 162781 bytes_in 0 162781 station_ip 5.134.143.111 162781 port 696 162781 unique_id port 162783 username sekonji3 162783 mac 162783 bytes_out 3714 162783 bytes_in 5764 162783 station_ip 83.123.191.215 162783 port 709 162783 unique_id port 162783 remote_ip 10.8.0.6 162798 username alihosseini1 162798 kill_reason Maximum check online fails reached 162798 mac 162798 bytes_out 0 162798 bytes_in 0 162798 station_ip 5.120.113.93 162798 port 724 162798 unique_id port 162801 username alihosseini1 162801 mac 162801 bytes_out 0 162801 bytes_in 0 162801 station_ip 5.120.113.93 162801 port 709 162801 unique_id port 162801 remote_ip 10.8.0.22 162805 username tahmasebi 162805 mac 162805 bytes_out 0 162805 bytes_in 0 162805 station_ip 5.119.68.191 162805 port 361 162805 unique_id port 162807 username tahmasebi 162807 mac 162807 bytes_out 0 162807 bytes_in 0 162807 station_ip 5.119.68.191 162807 port 361 162807 unique_id port 162807 remote_ip 10.8.1.90 162810 username ghiyasi 162810 mac 162810 bytes_out 0 162810 bytes_in 0 162810 station_ip 5.120.112.98 162810 port 673 162810 unique_id port 162810 remote_ip 10.8.0.38 162813 username aminvpn 162813 mac 162813 bytes_out 602780 162813 bytes_in 6756279 162813 station_ip 109.125.165.240 162813 port 362 162813 unique_id port 162813 remote_ip 10.8.1.6 162816 username pourshad 162816 mac 162816 bytes_out 0 162816 bytes_in 0 162816 station_ip 5.119.47.78 162816 port 365 162816 unique_id port 162816 remote_ip 10.8.1.154 162819 username saeed9658 162819 mac 162819 bytes_out 280927 162819 bytes_in 1977521 162819 station_ip 5.119.111.142 162819 port 361 162819 unique_id port 162819 remote_ip 10.8.1.210 162824 username milan 162824 kill_reason Another user logged on this global unique id 162824 mac 162824 bytes_out 0 162824 bytes_in 0 162824 station_ip 5.119.161.192 162824 port 710 162824 unique_id port 162826 username asma2026 162826 mac 162826 bytes_out 0 162774 unique_id port 162774 remote_ip 10.8.0.178 162776 username sekonji3 162776 mac 162776 bytes_out 0 162776 bytes_in 0 162776 station_ip 83.123.191.215 162776 port 709 162776 unique_id port 162776 remote_ip 10.8.0.6 162778 username alihosseini1 162778 mac 162778 bytes_out 32263 162778 bytes_in 83154 162778 station_ip 5.120.113.93 162778 port 673 162778 unique_id port 162778 remote_ip 10.8.0.22 162785 username sekonji3 162785 mac 162785 bytes_out 0 162785 bytes_in 0 162785 station_ip 83.123.191.215 162785 port 709 162785 unique_id port 162785 remote_ip 10.8.0.6 162788 username asma2026 162788 mac 162788 bytes_out 0 162788 bytes_in 0 162788 station_ip 130.255.197.210 162788 port 724 162788 unique_id port 162788 remote_ip 10.8.0.94 162789 username sekonji3 162789 mac 162789 bytes_out 0 162789 bytes_in 0 162789 station_ip 83.123.191.215 162789 port 709 162789 unique_id port 162789 remote_ip 10.8.0.6 162792 username tahmasebi 162792 kill_reason Another user logged on this global unique id 162792 mac 162792 bytes_out 0 162792 bytes_in 0 162792 station_ip 5.119.68.191 162792 port 361 162792 unique_id port 162792 remote_ip 10.8.1.90 162793 username sabaghnezhad 162793 mac 162793 bytes_out 0 162793 bytes_in 0 162793 station_ip 83.123.213.60 162793 port 677 162793 unique_id port 162793 remote_ip 10.8.0.186 162794 username vanila 162794 mac 162794 bytes_out 0 162794 bytes_in 0 162794 station_ip 37.129.70.35 162794 port 715 162794 unique_id port 162794 remote_ip 10.8.0.178 162797 username saeed9658 162797 mac 162797 bytes_out 0 162797 bytes_in 0 162797 station_ip 5.119.111.142 162797 port 673 162797 unique_id port 162797 remote_ip 10.8.0.166 162799 username asma2026 162799 mac 162799 bytes_out 0 162799 bytes_in 0 162799 station_ip 130.255.197.210 162799 port 673 162799 unique_id port 162799 remote_ip 10.8.0.94 162800 username aminvpn 162800 mac 162800 bytes_out 0 162800 bytes_in 0 162800 station_ip 109.125.165.240 162800 port 340 162800 unique_id port 162802 username ghiyasi 162802 mac 162802 bytes_out 0 162802 bytes_in 0 162802 station_ip 5.120.112.98 162802 port 715 162802 unique_id port 162802 remote_ip 10.8.0.38 162803 username farhad2 162803 kill_reason Another user logged on this global unique id 162803 mac 162803 bytes_out 0 162803 bytes_in 0 162803 station_ip 5.119.209.62 162803 port 722 162803 unique_id port 162803 remote_ip 10.8.0.190 162806 username aminvpn 162806 mac 162806 bytes_out 0 162806 bytes_in 0 162806 station_ip 83.122.120.158 162806 port 720 162806 unique_id port 162806 remote_ip 10.8.0.14 162809 username pourshad 162809 mac 162809 bytes_out 134716 162809 bytes_in 192446 162809 station_ip 5.119.47.78 162809 port 364 162809 unique_id port 162809 remote_ip 10.8.1.154 162812 username barzegar 162812 mac 162812 bytes_out 0 162812 bytes_in 0 162812 station_ip 5.119.87.5 162812 port 718 162812 unique_id port 162812 remote_ip 10.8.0.234 162815 username alihosseini1 162815 mac 162815 bytes_out 22184 162815 bytes_in 69942 162815 station_ip 5.120.113.93 162815 port 364 162815 unique_id port 162815 remote_ip 10.8.1.106 162818 username alihosseini1 162818 mac 162818 bytes_out 3829 162818 bytes_in 9085 162818 station_ip 5.120.113.93 162818 port 364 162818 unique_id port 162818 remote_ip 10.8.1.106 162820 username shadkam 162820 mac 162820 bytes_out 1597368 162820 bytes_in 18444527 162820 station_ip 83.122.104.234 162820 port 340 162820 unique_id port 162777 bytes_in 405853 162777 station_ip 5.114.70.225 162777 port 362 162777 unique_id port 162777 remote_ip 10.8.1.154 162780 username tahmasebi 162780 mac 162780 bytes_out 2177555 162780 bytes_in 29083109 162780 station_ip 5.119.68.191 162780 port 361 162780 unique_id port 162780 remote_ip 10.8.1.90 162782 username asma2026 162782 mac 162782 bytes_out 0 162782 bytes_in 0 162782 station_ip 130.255.197.210 162782 port 673 162782 unique_id port 162782 remote_ip 10.8.0.94 162784 username asma2026 162784 mac 162784 bytes_out 0 162784 bytes_in 0 162784 station_ip 130.255.197.210 162784 port 715 162784 unique_id port 162784 remote_ip 10.8.0.94 162786 username ghiyasi 162786 mac 162786 bytes_out 0 162786 bytes_in 0 162786 station_ip 5.120.112.98 162786 port 717 162786 unique_id port 162786 remote_ip 10.8.0.38 162787 username alihosseini1 162787 mac 162787 bytes_out 0 162787 bytes_in 0 162787 station_ip 5.120.113.93 162787 port 362 162787 unique_id port 162787 remote_ip 10.8.1.106 162790 username ghiyasi 162790 mac 162790 bytes_out 0 162790 bytes_in 0 162790 station_ip 5.120.112.98 162790 port 715 162790 unique_id port 162790 remote_ip 10.8.0.38 162791 username vanila 162791 mac 162791 bytes_out 0 162791 bytes_in 0 162791 station_ip 37.129.70.35 162791 port 724 162791 unique_id port 162791 remote_ip 10.8.0.178 162795 username ghiyasi 162795 mac 162795 bytes_out 0 162795 bytes_in 0 162795 station_ip 5.120.112.98 162795 port 709 162795 unique_id port 162795 remote_ip 10.8.0.38 162796 username jafari 162796 kill_reason Another user logged on this global unique id 162796 mac 162796 bytes_out 0 162796 bytes_in 0 162796 station_ip 5.134.143.111 162796 port 696 162796 unique_id port 162804 username asma2026 162804 mac 162804 bytes_out 0 162804 bytes_in 0 162804 station_ip 130.255.197.210 162804 port 709 162804 unique_id port 162804 remote_ip 10.8.0.94 162808 username saeed9658 162808 mac 162808 bytes_out 53525 162808 bytes_in 130727 162808 station_ip 5.119.111.142 162808 port 365 162808 unique_id port 162808 remote_ip 10.8.1.210 162811 username asma2026 162811 mac 162811 bytes_out 0 162811 bytes_in 0 162811 station_ip 130.255.197.210 162811 port 673 162811 unique_id port 162811 remote_ip 10.8.0.94 162814 username jafari 162814 kill_reason Another user logged on this global unique id 162814 mac 162814 bytes_out 0 162814 bytes_in 0 162814 station_ip 5.134.143.111 162814 port 696 162814 unique_id port 162817 username farhad2 162817 mac 162817 bytes_out 0 162817 bytes_in 0 162817 station_ip 5.119.209.62 162817 port 722 162817 unique_id port 162821 username asma2026 162821 mac 162821 bytes_out 0 162821 bytes_in 0 162821 station_ip 130.255.197.210 162821 port 720 162821 unique_id port 162821 remote_ip 10.8.0.94 162825 username jafari 162825 kill_reason Another user logged on this global unique id 162825 mac 162825 bytes_out 0 162825 bytes_in 0 162825 station_ip 5.134.143.111 162825 port 696 162825 unique_id port 162827 username hatami 162827 mac 162827 bytes_out 0 162827 bytes_in 0 162827 station_ip 151.235.103.196 162827 port 717 162827 unique_id port 162827 remote_ip 10.8.0.106 162830 username asma2026 162830 mac 162830 bytes_out 0 162830 bytes_in 0 162830 station_ip 130.255.197.210 162830 port 661 162830 unique_id port 162830 remote_ip 10.8.0.94 162831 username asma2026 162831 mac 162831 bytes_out 0 162831 bytes_in 0 162831 station_ip 130.255.197.210 162831 port 365 162820 remote_ip 10.8.1.218 162822 username malekpoir 162822 mac 162822 bytes_out 0 162822 bytes_in 0 162822 station_ip 5.120.21.149 162822 port 661 162822 unique_id port 162823 username aminvpn 162823 mac 162823 bytes_out 0 162823 bytes_in 0 162823 station_ip 83.122.120.158 162823 port 709 162823 unique_id port 162823 remote_ip 10.8.0.14 162828 username naeimeh 162828 kill_reason Another user logged on this global unique id 162828 mac 162828 bytes_out 0 162828 bytes_in 0 162828 station_ip 37.129.158.94 162828 port 340 162828 unique_id port 162828 remote_ip 10.8.1.206 162829 username asma2026 162829 mac 162829 bytes_out 0 162829 bytes_in 0 162829 station_ip 130.255.197.210 162829 port 365 162829 unique_id port 162829 remote_ip 10.8.1.122 162832 username jafari 162832 kill_reason Another user logged on this global unique id 162832 mac 162832 bytes_out 0 162832 bytes_in 0 162832 station_ip 5.134.143.111 162832 port 696 162832 unique_id port 162835 username asma2026 162835 mac 162835 bytes_out 0 162835 bytes_in 0 162835 station_ip 130.255.197.210 162835 port 361 162835 unique_id port 162835 remote_ip 10.8.1.122 162836 username asma2026 162836 mac 162836 bytes_out 0 162836 bytes_in 0 162836 station_ip 130.255.197.210 162836 port 709 162836 unique_id port 162836 remote_ip 10.8.0.94 162840 username barzegar 162840 mac 162840 bytes_out 0 162840 bytes_in 0 162840 station_ip 5.119.87.5 162840 port 673 162840 unique_id port 162840 remote_ip 10.8.0.234 162847 username godarzi 162847 mac 162847 bytes_out 2542780 162847 bytes_in 23799414 162847 station_ip 5.119.33.227 162847 port 359 162847 unique_id port 162847 remote_ip 10.8.1.230 162848 username tahmasebi 162848 mac 162848 bytes_out 6380 162848 bytes_in 8874 162848 station_ip 5.119.68.191 162848 port 366 162848 unique_id port 162848 remote_ip 10.8.1.90 162849 username aminvpn 162849 kill_reason Another user logged on this global unique id 162849 mac 162849 bytes_out 0 162849 bytes_in 0 162849 station_ip 5.119.210.94 162849 port 709 162849 unique_id port 162849 remote_ip 10.8.0.14 162852 username arash 162852 mac 162852 bytes_out 0 162852 bytes_in 0 162852 station_ip 37.27.27.10 162852 port 707 162852 unique_id port 162853 username pourshad 162853 mac 162853 bytes_out 40096 162853 bytes_in 40578 162853 station_ip 5.119.47.78 162853 port 364 162853 unique_id port 162853 remote_ip 10.8.1.154 162856 username naeimeh 162856 mac 162856 bytes_out 0 162856 bytes_in 0 162856 station_ip 37.129.158.94 162856 port 340 162856 unique_id port 162859 username jafari 162859 mac 162859 bytes_out 0 162859 bytes_in 0 162859 station_ip 5.134.143.111 162859 port 696 162859 unique_id port 162861 username asma2026 162861 mac 162861 bytes_out 0 162861 bytes_in 0 162861 station_ip 130.255.197.210 162861 port 673 162861 unique_id port 162861 remote_ip 10.8.0.94 162863 username yaghobi 162863 mac 162863 bytes_out 3327012 162863 bytes_in 41096966 162863 station_ip 113.203.110.146 162863 port 361 162863 unique_id port 162863 remote_ip 10.8.1.118 162870 username tahmasebi 162870 mac 162870 bytes_out 973869 162870 bytes_in 7980362 162870 station_ip 5.119.68.191 162870 port 364 162870 unique_id port 162870 remote_ip 10.8.1.90 162873 username aminvpn 162873 mac 162873 bytes_out 0 162873 bytes_in 0 162873 station_ip 5.119.210.94 162873 port 709 162873 unique_id port 162876 username ghiyasi 162876 mac 162876 bytes_out 1080339 162826 bytes_in 0 162826 station_ip 130.255.197.210 162826 port 365 162826 unique_id port 162826 remote_ip 10.8.1.122 162837 username yaghobi 162837 kill_reason Maximum check online fails reached 162837 mac 162837 bytes_out 0 162837 bytes_in 0 162837 station_ip 113.203.110.146 162837 port 661 162837 unique_id port 162838 username barzegar 162838 mac 162838 bytes_out 0 162838 bytes_in 0 162838 station_ip 5.119.87.5 162838 port 673 162838 unique_id port 162838 remote_ip 10.8.0.234 162841 username hosseine 162841 mac 162841 bytes_out 0 162841 bytes_in 0 162841 station_ip 83.122.75.134 162841 port 723 162841 unique_id port 162842 username barzegar 162842 mac 162842 bytes_out 0 162842 bytes_in 0 162842 station_ip 5.119.87.5 162842 port 673 162842 unique_id port 162842 remote_ip 10.8.0.234 162844 username tahmasebi 162844 mac 162844 bytes_out 0 162844 bytes_in 0 162844 station_ip 5.119.68.191 162844 port 365 162844 unique_id port 162844 remote_ip 10.8.1.90 162845 username farhad2 162845 kill_reason Another user logged on this global unique id 162845 mac 162845 bytes_out 0 162845 bytes_in 0 162845 station_ip 5.119.209.62 162845 port 718 162845 unique_id port 162845 remote_ip 10.8.0.190 162850 username tahmasebi 162850 mac 162850 bytes_out 0 162850 bytes_in 0 162850 station_ip 5.119.68.191 162850 port 359 162850 unique_id port 162850 remote_ip 10.8.1.90 162854 username tahmasebi 162854 mac 162854 bytes_out 0 162854 bytes_in 0 162854 station_ip 5.119.68.191 162854 port 673 162854 unique_id port 162854 remote_ip 10.8.0.42 162857 username alirezazadeh 162857 unique_id port 162857 terminate_cause Lost-Carrier 162857 bytes_out 1596531 162857 bytes_in 20980479 162857 station_ip 5.120.82.182 162857 port 15728654 162857 nas_port_type Virtual 162857 remote_ip 5.5.5.238 162860 username asma2026 162860 mac 162860 bytes_out 0 162860 bytes_in 0 162860 station_ip 130.255.197.210 162860 port 364 162860 unique_id port 162860 remote_ip 10.8.1.122 162862 username naeimeh 162862 mac 162862 bytes_out 0 162862 bytes_in 0 162862 station_ip 37.129.158.94 162862 port 340 162862 unique_id port 162862 remote_ip 10.8.1.206 162867 username asma2026 162867 mac 162867 bytes_out 0 162867 bytes_in 0 162867 station_ip 130.255.197.210 162867 port 707 162867 unique_id port 162867 remote_ip 10.8.0.94 162872 username pourshad 162872 mac 162872 bytes_out 378298 162872 bytes_in 3273931 162872 station_ip 5.119.47.78 162872 port 359 162872 unique_id port 162872 remote_ip 10.8.1.154 162881 username asma2026 162881 mac 162881 bytes_out 0 162881 bytes_in 0 162881 station_ip 130.255.197.210 162881 port 707 162881 unique_id port 162881 remote_ip 10.8.0.94 162891 username hashtadani4 162891 mac 162891 bytes_out 0 162891 bytes_in 0 162891 station_ip 83.123.49.52 162891 port 673 162891 unique_id port 162891 remote_ip 10.8.0.182 162892 username hashtadani4 162892 mac 162892 bytes_out 0 162892 bytes_in 0 162892 station_ip 83.123.49.52 162892 port 673 162892 unique_id port 162892 remote_ip 10.8.0.182 162894 username hashtadani4 162894 mac 162894 bytes_out 0 162894 bytes_in 0 162894 station_ip 83.123.49.52 162894 port 673 162894 unique_id port 162894 remote_ip 10.8.0.182 162895 username hashtadani4 162895 mac 162895 bytes_out 0 162895 bytes_in 0 162895 station_ip 83.123.49.52 162895 port 361 162895 unique_id port 162895 remote_ip 10.8.1.142 162900 username barzegar 162900 mac 162900 bytes_out 0 162900 bytes_in 0 162831 unique_id port 162831 remote_ip 10.8.1.122 162833 username arash 162833 kill_reason Another user logged on this global unique id 162833 mac 162833 bytes_out 0 162833 bytes_in 0 162833 station_ip 37.27.27.10 162833 port 707 162833 unique_id port 162833 remote_ip 10.8.0.114 162834 username tahmasebi 162834 mac 162834 bytes_out 0 162834 bytes_in 0 162834 station_ip 5.119.68.191 162834 port 361 162834 unique_id port 162834 remote_ip 10.8.1.90 162839 username mosi 162839 kill_reason Another user logged on this global unique id 162839 mac 162839 bytes_out 0 162839 bytes_in 0 162839 station_ip 151.235.120.66 162839 port 715 162839 unique_id port 162839 remote_ip 10.8.0.138 162843 username jafari 162843 kill_reason Another user logged on this global unique id 162843 mac 162843 bytes_out 0 162843 bytes_in 0 162843 station_ip 5.134.143.111 162843 port 696 162843 unique_id port 162846 username asma2026 162846 mac 162846 bytes_out 0 162846 bytes_in 0 162846 station_ip 130.255.197.210 162846 port 673 162846 unique_id port 162846 remote_ip 10.8.0.94 162851 username forozandeh1 162851 mac 162851 bytes_out 549639 162851 bytes_in 5995728 162851 station_ip 37.129.78.101 162851 port 673 162851 unique_id port 162851 remote_ip 10.8.0.130 162855 username barzegar 162855 mac 162855 bytes_out 0 162855 bytes_in 0 162855 station_ip 5.119.87.5 162855 port 673 162855 unique_id port 162855 remote_ip 10.8.0.234 162858 username tahmasebi 162858 mac 162858 bytes_out 0 162858 bytes_in 0 162858 station_ip 5.119.68.191 162858 port 364 162858 unique_id port 162858 remote_ip 10.8.1.90 162864 username naeimeh 162864 mac 162864 bytes_out 0 162864 bytes_in 0 162864 station_ip 37.129.158.94 162864 port 340 162864 unique_id port 162864 remote_ip 10.8.1.206 162865 username asma2026 162865 mac 162865 bytes_out 0 162865 bytes_in 0 162865 station_ip 130.255.197.210 162865 port 340 162865 unique_id port 162865 remote_ip 10.8.1.122 162866 username farhad2 162866 kill_reason Another user logged on this global unique id 162866 mac 162866 bytes_out 0 162866 bytes_in 0 162866 station_ip 5.119.209.62 162866 port 718 162866 unique_id port 162868 username milan 162868 kill_reason Another user logged on this global unique id 162868 mac 162868 bytes_out 0 162868 bytes_in 0 162868 station_ip 5.119.161.192 162868 port 710 162868 unique_id port 162869 username barzegar 162869 mac 162869 bytes_out 0 162869 bytes_in 0 162869 station_ip 5.119.87.5 162869 port 340 162869 unique_id port 162869 remote_ip 10.8.1.174 162871 username aminvpn 162871 unique_id port 162871 terminate_cause Lost-Carrier 162871 bytes_out 2067844 162871 bytes_in 6620245 162871 station_ip 5.119.64.177 162871 port 15728655 162871 nas_port_type Virtual 162871 remote_ip 5.5.5.236 162874 username asma2026 162874 mac 162874 bytes_out 0 162874 bytes_in 0 162874 station_ip 130.255.197.210 162874 port 359 162874 unique_id port 162874 remote_ip 10.8.1.122 162875 username hassan 162875 kill_reason Another user logged on this global unique id 162875 mac 162875 bytes_out 0 162875 bytes_in 0 162875 station_ip 5.202.2.159 162875 port 673 162875 unique_id port 162875 remote_ip 10.8.0.122 162877 username kamali2 162877 kill_reason Another user logged on this global unique id 162877 mac 162877 bytes_out 0 162877 bytes_in 0 162877 station_ip 5.120.187.35 162877 port 340 162877 unique_id port 162877 remote_ip 10.8.1.66 162879 username asma2026 162879 mac 162879 bytes_out 0 162879 bytes_in 0 162879 station_ip 130.255.197.210 162879 port 362 162879 unique_id port 162876 bytes_in 6665594 162876 station_ip 5.120.112.98 162876 port 362 162876 unique_id port 162876 remote_ip 10.8.1.38 162878 username asma2026 162878 mac 162878 bytes_out 0 162878 bytes_in 0 162878 station_ip 130.255.197.210 162878 port 707 162878 unique_id port 162878 remote_ip 10.8.0.94 162880 username kamali2 162880 mac 162880 bytes_out 0 162880 bytes_in 0 162880 station_ip 5.120.187.35 162880 port 340 162880 unique_id port 162883 username khademi 162883 kill_reason Another user logged on this global unique id 162883 mac 162883 bytes_out 0 162883 bytes_in 0 162883 station_ip 113.203.78.111 162883 port 703 162883 unique_id port 162883 remote_ip 10.8.0.10 162884 username asma2026 162884 mac 162884 bytes_out 0 162884 bytes_in 0 162884 station_ip 130.255.197.210 162884 port 709 162884 unique_id port 162884 remote_ip 10.8.0.94 162885 username mosi 162885 kill_reason Another user logged on this global unique id 162885 mac 162885 bytes_out 0 162885 bytes_in 0 162885 station_ip 151.235.120.66 162885 port 715 162885 unique_id port 162886 username hassan 162886 mac 162886 bytes_out 0 162886 bytes_in 0 162886 station_ip 5.202.2.159 162886 port 673 162886 unique_id port 162890 username houshang 162890 mac 162890 bytes_out 0 162890 bytes_in 0 162890 station_ip 5.119.36.146 162890 port 707 162890 unique_id port 162890 remote_ip 10.8.0.134 162896 username hashtadani4 162896 mac 162896 bytes_out 0 162896 bytes_in 0 162896 station_ip 83.123.49.52 162896 port 673 162896 unique_id port 162896 remote_ip 10.8.0.182 162898 username hashtadani4 162898 kill_reason Maximum check online fails reached 162898 mac 162898 bytes_out 0 162898 bytes_in 0 162898 station_ip 83.123.49.52 162898 port 340 162898 unique_id port 162906 username hashtadani4 162906 mac 162906 bytes_out 0 162906 bytes_in 0 162906 station_ip 83.123.49.52 162906 port 673 162906 unique_id port 162906 remote_ip 10.8.0.182 162912 username hashtadani4 162912 mac 162912 bytes_out 0 162912 bytes_in 0 162912 station_ip 83.123.49.52 162912 port 707 162912 unique_id port 162912 remote_ip 10.8.0.182 162918 username asma2026 162918 mac 162918 bytes_out 0 162918 bytes_in 0 162918 station_ip 164.138.155.14 162918 port 707 162918 unique_id port 162918 remote_ip 10.8.0.94 162919 username hashtadani4 162919 mac 162919 bytes_out 0 162919 bytes_in 0 162919 station_ip 83.123.49.52 162919 port 368 162919 unique_id port 162919 remote_ip 10.8.1.142 162920 username hashtadani4 162920 mac 162920 bytes_out 0 162920 bytes_in 0 162920 station_ip 83.123.49.52 162920 port 673 162920 unique_id port 162920 remote_ip 10.8.0.182 162922 username hashtadani4 162922 mac 162922 bytes_out 0 162922 bytes_in 0 162922 station_ip 83.123.49.52 162922 port 673 162922 unique_id port 162922 remote_ip 10.8.0.182 162924 username hashtadani4 162924 mac 162924 bytes_out 0 162924 bytes_in 0 162924 station_ip 83.123.49.52 162924 port 673 162924 unique_id port 162924 remote_ip 10.8.0.182 162928 username hashtadani4 162928 mac 162928 bytes_out 0 162928 bytes_in 0 162928 station_ip 83.123.49.52 162928 port 364 162928 unique_id port 162928 remote_ip 10.8.1.142 162932 username hashtadani4 162932 mac 162932 bytes_out 0 162932 bytes_in 0 162932 station_ip 83.123.49.52 162932 port 673 162932 unique_id port 162932 remote_ip 10.8.0.182 162935 username hashtadani4 162935 mac 162935 bytes_out 0 162935 bytes_in 0 162935 station_ip 83.123.49.52 162935 port 673 162879 remote_ip 10.8.1.122 162882 username barzegar 162882 mac 162882 bytes_out 0 162882 bytes_in 0 162882 station_ip 5.119.87.5 162882 port 362 162882 unique_id port 162882 remote_ip 10.8.1.174 162887 username asma2026 162887 mac 162887 bytes_out 0 162887 bytes_in 0 162887 station_ip 130.255.197.210 162887 port 673 162887 unique_id port 162887 remote_ip 10.8.0.94 162888 username tahmasebi 162888 mac 162888 bytes_out 50065 162888 bytes_in 104493 162888 station_ip 5.119.68.191 162888 port 361 162888 unique_id port 162888 remote_ip 10.8.1.90 162889 username tahmasebi 162889 mac 162889 bytes_out 0 162889 bytes_in 0 162889 station_ip 5.119.68.191 162889 port 340 162889 unique_id port 162889 remote_ip 10.8.1.90 162893 username farhad2 162893 kill_reason Another user logged on this global unique id 162893 mac 162893 bytes_out 0 162893 bytes_in 0 162893 station_ip 5.119.209.62 162893 port 718 162893 unique_id port 162897 username asma2026 162897 mac 162897 bytes_out 0 162897 bytes_in 0 162897 station_ip 164.138.155.14 162897 port 362 162897 unique_id port 162897 remote_ip 10.8.1.122 162899 username tahmasebi 162899 mac 162899 bytes_out 0 162899 bytes_in 0 162899 station_ip 5.119.68.191 162899 port 361 162899 unique_id port 162899 remote_ip 10.8.1.90 162901 username mohammadmahdi 162901 kill_reason Another user logged on this global unique id 162901 mac 162901 bytes_out 0 162901 bytes_in 0 162901 station_ip 5.119.11.76 162901 port 709 162901 unique_id port 162901 remote_ip 10.8.0.54 162902 username milan 162902 kill_reason Another user logged on this global unique id 162902 mac 162902 bytes_out 0 162902 bytes_in 0 162902 station_ip 5.119.161.192 162902 port 710 162902 unique_id port 162904 username hashtadani4 162904 mac 162904 bytes_out 1314747 162904 bytes_in 10308095 162904 station_ip 83.123.49.52 162904 port 361 162904 unique_id port 162904 remote_ip 10.8.1.142 162909 username hashtadani4 162909 mac 162909 bytes_out 0 162909 bytes_in 0 162909 station_ip 83.123.49.52 162909 port 707 162909 unique_id port 162909 remote_ip 10.8.0.182 162910 username tahmasebi 162910 mac 162910 bytes_out 0 162910 bytes_in 0 162910 station_ip 5.119.68.191 162910 port 361 162910 unique_id port 162910 remote_ip 10.8.1.90 162913 username farhad2 162913 mac 162913 bytes_out 0 162913 bytes_in 0 162913 station_ip 5.119.209.62 162913 port 673 162913 unique_id port 162913 remote_ip 10.8.0.190 162914 username hashtadani4 162914 mac 162914 bytes_out 0 162914 bytes_in 0 162914 station_ip 83.123.49.52 162914 port 673 162914 unique_id port 162914 remote_ip 10.8.0.182 162916 username hashtadani4 162916 kill_reason Maximum check online fails reached 162916 mac 162916 bytes_out 0 162916 bytes_in 0 162916 station_ip 83.123.49.52 162916 port 361 162916 unique_id port 162921 username tahmasebi 162921 mac 162921 bytes_out 13121 162921 bytes_in 24124 162921 station_ip 5.119.68.191 162921 port 364 162921 unique_id port 162921 remote_ip 10.8.1.90 162925 username milan 162925 kill_reason Another user logged on this global unique id 162925 mac 162925 bytes_out 0 162925 bytes_in 0 162925 station_ip 5.119.161.192 162925 port 710 162925 unique_id port 162926 username hashtadani4 162926 mac 162926 bytes_out 0 162926 bytes_in 0 162926 station_ip 83.123.49.52 162926 port 673 162926 unique_id port 162926 remote_ip 10.8.0.182 162929 username hashtadani4 162929 mac 162929 bytes_out 0 162929 bytes_in 0 162929 station_ip 83.123.49.52 162929 port 364 162900 station_ip 5.119.87.5 162900 port 673 162900 unique_id port 162900 remote_ip 10.8.0.234 162903 username nilufarrajaei 162903 kill_reason Another user logged on this global unique id 162903 mac 162903 bytes_out 0 162903 bytes_in 0 162903 station_ip 83.123.151.0 162903 port 696 162903 unique_id port 162903 remote_ip 10.8.0.206 162905 username hashtadani4 162905 mac 162905 bytes_out 0 162905 bytes_in 0 162905 station_ip 83.123.49.52 162905 port 361 162905 unique_id port 162905 remote_ip 10.8.1.142 162907 username farhad2 162907 mac 162907 bytes_out 0 162907 bytes_in 0 162907 station_ip 5.119.209.62 162907 port 718 162907 unique_id port 162908 username farhad2 162908 mac 162908 bytes_out 0 162908 bytes_in 0 162908 station_ip 5.119.209.62 162908 port 673 162908 unique_id port 162908 remote_ip 10.8.0.190 162911 username hashtadani4 162911 mac 162911 bytes_out 0 162911 bytes_in 0 162911 station_ip 83.123.49.52 162911 port 707 162911 unique_id port 162911 remote_ip 10.8.0.182 162915 username barzegar 162915 mac 162915 bytes_out 0 162915 bytes_in 0 162915 station_ip 5.119.87.5 162915 port 673 162915 unique_id port 162915 remote_ip 10.8.0.234 162917 username mohammadmahdi 162917 kill_reason Another user logged on this global unique id 162917 mac 162917 bytes_out 0 162917 bytes_in 0 162917 station_ip 5.119.11.76 162917 port 709 162917 unique_id port 162923 username hashtadani4 162923 kill_reason Maximum check online fails reached 162923 mac 162923 bytes_out 0 162923 bytes_in 0 162923 station_ip 83.123.49.52 162923 port 366 162923 unique_id port 162927 username hashtadani4 162927 mac 162927 bytes_out 0 162927 bytes_in 0 162927 station_ip 83.123.49.52 162927 port 364 162927 unique_id port 162927 remote_ip 10.8.1.142 162931 username asma2026 162931 mac 162931 bytes_out 0 162931 bytes_in 0 162931 station_ip 164.138.155.14 162931 port 673 162931 unique_id port 162931 remote_ip 10.8.0.94 162933 username farhad2 162933 mac 162933 bytes_out 1639038 162933 bytes_in 17322422 162933 station_ip 5.119.209.62 162933 port 362 162933 unique_id port 162933 remote_ip 10.8.1.222 162934 username hashtadani4 162934 mac 162934 bytes_out 0 162934 bytes_in 0 162934 station_ip 83.123.49.52 162934 port 362 162934 unique_id port 162934 remote_ip 10.8.1.142 162937 username hashtadani4 162937 mac 162937 bytes_out 0 162937 bytes_in 0 162937 station_ip 83.123.49.52 162937 port 673 162937 unique_id port 162937 remote_ip 10.8.0.182 162940 username barzegar 162940 mac 162940 bytes_out 0 162940 bytes_in 0 162940 station_ip 5.119.87.5 162940 port 673 162940 unique_id port 162940 remote_ip 10.8.0.234 162944 username hashtadani4 162944 mac 162944 bytes_out 0 162944 bytes_in 0 162944 station_ip 83.123.49.52 162944 port 364 162944 unique_id port 162944 remote_ip 10.8.1.142 162945 username hashtadani4 162945 mac 162945 bytes_out 0 162945 bytes_in 0 162945 station_ip 83.123.49.52 162945 port 673 162945 unique_id port 162945 remote_ip 10.8.0.182 162947 username hashtadani4 162947 mac 162947 bytes_out 0 162947 bytes_in 0 162947 station_ip 83.123.49.52 162947 port 715 162947 unique_id port 162947 remote_ip 10.8.0.182 162948 username hashtadani4 162948 mac 162948 bytes_out 0 162948 bytes_in 0 162948 station_ip 83.123.49.52 162948 port 715 162948 unique_id port 162948 remote_ip 10.8.0.182 162954 username tahmasebi 162954 mac 162954 bytes_out 0 162954 bytes_in 0 162954 station_ip 5.119.68.191 162929 unique_id port 162929 remote_ip 10.8.1.142 162930 username hashtadani4 162930 mac 162930 bytes_out 0 162930 bytes_in 0 162930 station_ip 83.123.49.52 162930 port 707 162930 unique_id port 162930 remote_ip 10.8.0.182 162936 username mohammadmahdi 162936 kill_reason Another user logged on this global unique id 162936 mac 162936 bytes_out 0 162936 bytes_in 0 162936 station_ip 5.119.11.76 162936 port 709 162936 unique_id port 162941 username rezaei 162941 kill_reason Another user logged on this global unique id 162941 mac 162941 bytes_out 0 162941 bytes_in 0 162941 station_ip 5.119.53.117 162941 port 359 162941 unique_id port 162941 remote_ip 10.8.1.58 162946 username hashtadani4 162946 kill_reason Maximum check online fails reached 162946 mac 162946 bytes_out 0 162946 bytes_in 0 162946 station_ip 83.123.49.52 162946 port 362 162946 unique_id port 162949 username hashtadani4 162949 kill_reason Maximum check online fails reached 162949 mac 162949 bytes_out 0 162949 bytes_in 0 162949 station_ip 83.123.49.52 162949 port 364 162949 unique_id port 162951 username hashtadani4 162951 mac 162951 bytes_out 0 162951 bytes_in 0 162951 station_ip 83.123.49.52 162951 port 715 162951 unique_id port 162951 remote_ip 10.8.0.182 162955 username mohammadmahdi 162955 mac 162955 bytes_out 0 162955 bytes_in 0 162955 station_ip 5.119.11.76 162955 port 709 162955 unique_id port 162957 username rezaei 162957 mac 162957 bytes_out 0 162957 bytes_in 0 162957 station_ip 5.119.53.117 162957 port 359 162957 unique_id port 162958 username hashtadani4 162958 mac 162958 bytes_out 0 162958 bytes_in 0 162958 station_ip 83.123.49.52 162958 port 709 162958 unique_id port 162958 remote_ip 10.8.0.182 162964 username hashtadani4 162964 kill_reason Maximum check online fails reached 162964 mac 162964 bytes_out 0 162964 bytes_in 0 162964 station_ip 83.123.49.52 162964 port 359 162964 unique_id port 162974 username hashtadani4 162974 mac 162974 bytes_out 0 162974 bytes_in 0 162974 station_ip 83.123.49.52 162974 port 709 162974 unique_id port 162974 remote_ip 10.8.0.182 162977 username asma2026 162977 mac 162977 bytes_out 0 162977 bytes_in 0 162977 station_ip 83.122.211.117 162977 port 715 162977 unique_id port 162977 remote_ip 10.8.0.94 162978 username hashtadani4 162978 mac 162978 bytes_out 0 162978 bytes_in 0 162978 station_ip 83.123.49.52 162978 port 715 162978 unique_id port 162978 remote_ip 10.8.0.182 162980 username hashtadani4 162980 mac 162980 bytes_out 0 162980 bytes_in 0 162980 station_ip 83.123.49.52 162980 port 715 162980 unique_id port 162980 remote_ip 10.8.0.182 162983 username hashtadani4 162983 mac 162983 bytes_out 0 162983 bytes_in 0 162983 station_ip 83.123.49.52 162983 port 715 162983 unique_id port 162983 remote_ip 10.8.0.182 162985 username hashtadani4 162985 mac 162985 bytes_out 0 162985 bytes_in 0 162985 station_ip 83.123.49.52 162985 port 707 162985 unique_id port 162985 remote_ip 10.8.0.182 162989 username barzegar 162989 mac 162989 bytes_out 0 162989 bytes_in 0 162989 station_ip 5.119.87.5 162989 port 368 162989 unique_id port 162989 remote_ip 10.8.1.174 162991 username hashtadani4 162991 mac 162991 bytes_out 0 162991 bytes_in 0 162991 station_ip 83.123.49.52 162991 port 368 162991 unique_id port 162991 remote_ip 10.8.1.142 162993 username sabaghnezhad 162993 mac 162993 bytes_out 0 162993 bytes_in 0 162993 station_ip 83.123.213.60 162993 port 677 162993 unique_id port 162993 remote_ip 10.8.0.186 162935 unique_id port 162935 remote_ip 10.8.0.182 162938 username hashtadani4 162938 mac 162938 bytes_out 0 162938 bytes_in 0 162938 station_ip 83.123.49.52 162938 port 673 162938 unique_id port 162938 remote_ip 10.8.0.182 162939 username mosi 162939 mac 162939 bytes_out 0 162939 bytes_in 0 162939 station_ip 151.235.120.66 162939 port 715 162939 unique_id port 162942 username asma2026 162942 mac 162942 bytes_out 0 162942 bytes_in 0 162942 station_ip 164.138.155.14 162942 port 362 162942 unique_id port 162942 remote_ip 10.8.1.122 162943 username tahmasebi 162943 mac 162943 bytes_out 0 162943 bytes_in 0 162943 station_ip 5.119.68.191 162943 port 362 162943 unique_id port 162943 remote_ip 10.8.1.90 162950 username hashtadani4 162950 mac 162950 bytes_out 0 162950 bytes_in 0 162950 station_ip 83.123.49.52 162950 port 368 162950 unique_id port 162950 remote_ip 10.8.1.142 162952 username hashtadani4 162952 mac 162952 bytes_out 0 162952 bytes_in 0 162952 station_ip 83.123.49.52 162952 port 717 162952 unique_id port 162952 remote_ip 10.8.0.182 162953 username hashtadani4 162953 mac 162953 bytes_out 0 162953 bytes_in 0 162953 station_ip 83.123.49.52 162953 port 717 162953 unique_id port 162953 remote_ip 10.8.0.182 162961 username hashtadani4 162961 mac 162961 bytes_out 0 162961 bytes_in 0 162961 station_ip 83.123.49.52 162961 port 359 162961 unique_id port 162961 remote_ip 10.8.1.142 162963 username kordestani 162963 kill_reason Another user logged on this global unique id 162963 mac 162963 bytes_out 0 162963 bytes_in 0 162963 station_ip 151.235.112.98 162963 port 707 162963 unique_id port 162963 remote_ip 10.8.0.74 162965 username hashtadani4 162965 mac 162965 bytes_out 0 162965 bytes_in 0 162965 station_ip 83.123.49.52 162965 port 709 162965 unique_id port 162965 remote_ip 10.8.0.182 162966 username hashtadani4 162966 mac 162966 bytes_out 0 162966 bytes_in 0 162966 station_ip 83.123.49.52 162966 port 709 162966 unique_id port 162966 remote_ip 10.8.0.182 162967 username hashtadani4 162967 mac 162967 bytes_out 0 162967 bytes_in 0 162967 station_ip 83.123.49.52 162967 port 709 162967 unique_id port 162967 remote_ip 10.8.0.182 162968 username hashtadani4 162968 mac 162968 bytes_out 0 162968 bytes_in 0 162968 station_ip 83.123.49.52 162968 port 709 162968 unique_id port 162968 remote_ip 10.8.0.182 162969 username asma2026 162969 mac 162969 bytes_out 0 162969 bytes_in 0 162969 station_ip 83.122.211.117 162969 port 709 162969 unique_id port 162969 remote_ip 10.8.0.94 162971 username hashtadani4 162971 mac 162971 bytes_out 0 162971 bytes_in 0 162971 station_ip 83.123.49.52 162971 port 717 162971 unique_id port 162971 remote_ip 10.8.0.182 162973 username godarzi 162973 mac 162973 bytes_out 5853976 162973 bytes_in 47672634 162973 station_ip 5.202.6.91 162973 port 367 162973 unique_id port 162973 remote_ip 10.8.1.230 162976 username farhad2 162976 mac 162976 bytes_out 0 162976 bytes_in 0 162976 station_ip 5.119.209.62 162976 port 715 162976 unique_id port 162976 remote_ip 10.8.0.190 162979 username asma2026 162979 kill_reason Maximum check online fails reached 162979 mac 162979 bytes_out 0 162979 bytes_in 0 162979 station_ip 83.122.211.117 162979 port 367 162979 unique_id port 162981 username hashtadani4 162981 mac 162981 bytes_out 0 162981 bytes_in 0 162981 station_ip 83.123.49.52 162981 port 715 162981 unique_id port 162981 remote_ip 10.8.0.182 162954 port 368 162954 unique_id port 162954 remote_ip 10.8.1.90 162956 username hashtadani4 162956 mac 162956 bytes_out 0 162956 bytes_in 0 162956 station_ip 83.123.49.52 162956 port 368 162956 unique_id port 162956 remote_ip 10.8.1.142 162959 username barzegar 162959 mac 162959 bytes_out 0 162959 bytes_in 0 162959 station_ip 5.119.87.5 162959 port 359 162959 unique_id port 162959 remote_ip 10.8.1.174 162960 username tahmasebi 162960 mac 162960 bytes_out 0 162960 bytes_in 0 162960 station_ip 5.119.68.191 162960 port 359 162960 unique_id port 162960 remote_ip 10.8.1.90 162962 username hashtadani4 162962 mac 162962 bytes_out 0 162962 bytes_in 0 162962 station_ip 83.123.49.52 162962 port 709 162962 unique_id port 162962 remote_ip 10.8.0.182 162970 username hashtadani4 162970 mac 162970 bytes_out 0 162970 bytes_in 0 162970 station_ip 83.123.49.52 162970 port 717 162970 unique_id port 162970 remote_ip 10.8.0.182 162972 username barzegar 162972 mac 162972 bytes_out 0 162972 bytes_in 0 162972 station_ip 5.119.87.5 162972 port 709 162972 unique_id port 162972 remote_ip 10.8.0.234 162975 username tahmasebi 162975 mac 162975 bytes_out 0 162975 bytes_in 0 162975 station_ip 5.119.68.191 162975 port 368 162975 unique_id port 162975 remote_ip 10.8.1.90 162984 username kordestani 162984 mac 162984 bytes_out 0 162984 bytes_in 0 162984 station_ip 151.235.112.98 162984 port 707 162984 unique_id port 162988 username hashtadani4 162988 mac 162988 bytes_out 0 162988 bytes_in 0 162988 station_ip 83.123.49.52 162988 port 707 162988 unique_id port 162988 remote_ip 10.8.0.182 162992 username hashtadani4 162992 mac 162992 bytes_out 0 162992 bytes_in 0 162992 station_ip 83.123.49.52 162992 port 717 162992 unique_id port 162992 remote_ip 10.8.0.182 162994 username hashtadani4 162994 mac 162994 bytes_out 0 162994 bytes_in 0 162994 station_ip 83.123.49.52 162994 port 717 162994 unique_id port 162994 remote_ip 10.8.0.182 162997 username asma2026 162997 mac 162997 bytes_out 0 162997 bytes_in 0 162997 station_ip 83.122.211.117 162997 port 368 162997 unique_id port 162997 remote_ip 10.8.1.122 163000 username shadkam 163000 mac 163000 bytes_out 0 163000 bytes_in 0 163000 station_ip 83.122.89.137 163000 port 368 163000 unique_id port 163000 remote_ip 10.8.1.218 163008 username asma2026 163008 kill_reason Maximum check online fails reached 163008 mac 163008 bytes_out 0 163008 bytes_in 0 163008 station_ip 83.122.211.117 163008 port 369 163008 unique_id port 163014 username asma2026 163014 mac 163014 bytes_out 0 163014 bytes_in 0 163014 station_ip 83.122.211.117 163014 port 703 163014 unique_id port 163014 remote_ip 10.8.0.94 163018 username asma2026 163018 mac 163018 bytes_out 0 163018 bytes_in 0 163018 station_ip 83.122.211.117 163018 port 370 163018 unique_id port 163018 remote_ip 10.8.1.122 163020 username asma2026 163020 mac 163020 bytes_out 0 163020 bytes_in 0 163020 station_ip 83.122.211.117 163020 port 703 163020 unique_id port 163020 remote_ip 10.8.0.94 163023 username asma2026 163023 mac 163023 bytes_out 0 163023 bytes_in 0 163023 station_ip 83.122.211.117 163023 port 703 163023 unique_id port 163023 remote_ip 10.8.0.94 163027 username hashtadani4 163027 kill_reason Maximum check online fails reached 163027 mac 163027 bytes_out 0 163027 bytes_in 0 163027 station_ip 83.123.49.52 163027 port 370 163027 unique_id port 163028 username hashtadani4 162982 username hashtadani4 162982 mac 162982 bytes_out 0 162982 bytes_in 0 162982 station_ip 83.123.49.52 162982 port 715 162982 unique_id port 162982 remote_ip 10.8.0.182 162986 username tahmasebi 162986 mac 162986 bytes_out 0 162986 bytes_in 0 162986 station_ip 5.119.68.191 162986 port 368 162986 unique_id port 162986 remote_ip 10.8.1.90 162987 username hashtadani4 162987 mac 162987 bytes_out 0 162987 bytes_in 0 162987 station_ip 83.123.49.52 162987 port 707 162987 unique_id port 162987 remote_ip 10.8.0.182 162990 username hashtadani4 162990 mac 162990 bytes_out 0 162990 bytes_in 0 162990 station_ip 83.123.49.52 162990 port 717 162990 unique_id port 162990 remote_ip 10.8.0.182 162996 username hashtadani4 162996 mac 162996 bytes_out 0 162996 bytes_in 0 162996 station_ip 83.123.49.52 162996 port 717 162996 unique_id port 162996 remote_ip 10.8.0.182 163003 username khademi 163003 mac 163003 bytes_out 0 163003 bytes_in 0 163003 station_ip 113.203.78.111 163003 port 703 163003 unique_id port 163006 username asma2026 163006 mac 163006 bytes_out 0 163006 bytes_in 0 163006 station_ip 83.122.211.117 163006 port 370 163006 unique_id port 163006 remote_ip 10.8.1.122 163009 username hashtadani4 163009 kill_reason Maximum check online fails reached 163009 mac 163009 bytes_out 0 163009 bytes_in 0 163009 station_ip 83.123.49.52 163009 port 371 163009 unique_id port 163012 username hashtadani4 163012 mac 163012 bytes_out 0 163012 bytes_in 0 163012 station_ip 83.123.49.52 163012 port 370 163012 unique_id port 163012 remote_ip 10.8.1.142 163015 username milan 163015 kill_reason Another user logged on this global unique id 163015 mac 163015 bytes_out 0 163015 bytes_in 0 163015 station_ip 5.119.161.192 163015 port 710 163015 unique_id port 163016 username hashtadani4 163016 mac 163016 bytes_out 0 163016 bytes_in 0 163016 station_ip 83.123.49.52 163016 port 703 163016 unique_id port 163016 remote_ip 10.8.0.182 163017 username kordestani 163017 mac 163017 bytes_out 0 163017 bytes_in 0 163017 station_ip 151.235.94.135 163017 port 715 163017 unique_id port 163019 username hashtadani4 163019 mac 163019 bytes_out 0 163019 bytes_in 0 163019 station_ip 83.123.49.52 163019 port 715 163019 unique_id port 163019 remote_ip 10.8.0.182 163024 username hashtadani4 163024 mac 163024 bytes_out 0 163024 bytes_in 0 163024 station_ip 83.123.49.52 163024 port 703 163024 unique_id port 163024 remote_ip 10.8.0.182 163032 username farhad2 163032 kill_reason Another user logged on this global unique id 163032 mac 163032 bytes_out 0 163032 bytes_in 0 163032 station_ip 5.119.209.62 163032 port 709 163032 unique_id port 163032 remote_ip 10.8.0.190 163033 username hashtadani4 163033 mac 163033 bytes_out 0 163033 bytes_in 0 163033 station_ip 83.123.49.52 163033 port 703 163033 unique_id port 163033 remote_ip 10.8.0.182 163035 username tahmasebi 163035 mac 163035 bytes_out 0 163035 bytes_in 0 163035 station_ip 5.119.68.191 163035 port 707 163035 unique_id port 163035 remote_ip 10.8.0.42 163039 username asma2026 163039 mac 163039 bytes_out 0 163039 bytes_in 0 163039 station_ip 83.122.211.117 163039 port 368 163039 unique_id port 163039 remote_ip 10.8.1.122 163040 username asma2026 163040 mac 163040 bytes_out 0 163040 bytes_in 0 163040 station_ip 83.122.211.117 163040 port 703 163040 unique_id port 163040 remote_ip 10.8.0.94 163041 username hashtadani4 163041 mac 163041 bytes_out 0 162995 username tahmasebi 162995 mac 162995 bytes_out 0 162995 bytes_in 0 162995 station_ip 5.119.68.191 162995 port 368 162995 unique_id port 162995 remote_ip 10.8.1.90 162998 username hashtadani4 162998 mac 162998 bytes_out 0 162998 bytes_in 0 162998 station_ip 83.123.49.52 162998 port 717 162998 unique_id port 162998 remote_ip 10.8.0.182 162999 username asma2026 162999 mac 162999 bytes_out 0 162999 bytes_in 0 162999 station_ip 83.122.211.117 162999 port 717 162999 unique_id port 162999 remote_ip 10.8.0.94 163001 username hashtadani4 163001 mac 163001 bytes_out 0 163001 bytes_in 0 163001 station_ip 83.123.49.52 163001 port 717 163001 unique_id port 163001 remote_ip 10.8.0.182 163002 username barzegar 163002 mac 163002 bytes_out 0 163002 bytes_in 0 163002 station_ip 5.119.87.5 163002 port 369 163002 unique_id port 163002 remote_ip 10.8.1.174 163004 username hashtadani4 163004 mac 163004 bytes_out 0 163004 bytes_in 0 163004 station_ip 83.123.49.52 163004 port 703 163004 unique_id port 163004 remote_ip 10.8.0.182 163005 username hashtadani4 163005 mac 163005 bytes_out 0 163005 bytes_in 0 163005 station_ip 83.123.49.52 163005 port 703 163005 unique_id port 163005 remote_ip 10.8.0.182 163007 username kordestani 163007 kill_reason Another user logged on this global unique id 163007 mac 163007 bytes_out 0 163007 bytes_in 0 163007 station_ip 151.235.94.135 163007 port 715 163007 unique_id port 163007 remote_ip 10.8.0.74 163010 username hashtadani4 163010 mac 163010 bytes_out 0 163010 bytes_in 0 163010 station_ip 83.123.49.52 163010 port 703 163010 unique_id port 163010 remote_ip 10.8.0.182 163011 username hashtadani4 163011 mac 163011 bytes_out 0 163011 bytes_in 0 163011 station_ip 83.123.49.52 163011 port 703 163011 unique_id port 163011 remote_ip 10.8.0.182 163013 username hashtadani4 163013 mac 163013 bytes_out 0 163013 bytes_in 0 163013 station_ip 83.123.49.52 163013 port 703 163013 unique_id port 163013 remote_ip 10.8.0.182 163021 username barzegar 163021 mac 163021 bytes_out 0 163021 bytes_in 0 163021 station_ip 5.119.87.5 163021 port 370 163021 unique_id port 163021 remote_ip 10.8.1.174 163022 username hashtadani4 163022 mac 163022 bytes_out 0 163022 bytes_in 0 163022 station_ip 83.123.49.52 163022 port 703 163022 unique_id port 163022 remote_ip 10.8.0.182 163025 username asma2026 163025 mac 163025 bytes_out 0 163025 bytes_in 0 163025 station_ip 83.122.211.117 163025 port 703 163025 unique_id port 163025 remote_ip 10.8.0.94 163026 username hashtadani4 163026 mac 163026 bytes_out 0 163026 bytes_in 0 163026 station_ip 83.123.49.52 163026 port 703 163026 unique_id port 163026 remote_ip 10.8.0.182 163030 username hashtadani4 163030 mac 163030 bytes_out 0 163030 bytes_in 0 163030 station_ip 83.123.49.52 163030 port 703 163030 unique_id port 163030 remote_ip 10.8.0.182 163034 username mansour 163034 mac 163034 bytes_out 3426957 163034 bytes_in 45767052 163034 station_ip 5.202.22.154 163034 port 707 163034 unique_id port 163034 remote_ip 10.8.0.30 163036 username hashtadani4 163036 mac 163036 bytes_out 0 163036 bytes_in 0 163036 station_ip 83.123.49.52 163036 port 703 163036 unique_id port 163036 remote_ip 10.8.0.182 163037 username barzegar 163037 mac 163037 bytes_out 0 163037 bytes_in 0 163037 station_ip 5.119.87.5 163037 port 707 163037 unique_id port 163037 remote_ip 10.8.0.234 163038 username hashtadani4 163038 mac 163028 mac 163028 bytes_out 0 163028 bytes_in 0 163028 station_ip 83.123.49.52 163028 port 703 163028 unique_id port 163028 remote_ip 10.8.0.182 163029 username hashtadani4 163029 mac 163029 bytes_out 0 163029 bytes_in 0 163029 station_ip 83.123.49.52 163029 port 703 163029 unique_id port 163029 remote_ip 10.8.0.182 163031 username tahmasebi 163031 mac 163031 bytes_out 0 163031 bytes_in 0 163031 station_ip 5.119.68.191 163031 port 368 163031 unique_id port 163031 remote_ip 10.8.1.90 163044 username hashtadani4 163044 mac 163044 bytes_out 0 163044 bytes_in 0 163044 station_ip 83.123.49.52 163044 port 358 163044 unique_id port 163044 remote_ip 10.8.1.142 163048 username hashtadani4 163048 mac 163048 bytes_out 0 163048 bytes_in 0 163048 station_ip 83.123.49.52 163048 port 707 163048 unique_id port 163048 remote_ip 10.8.0.182 163050 username hashtadani4 163050 mac 163050 bytes_out 0 163050 bytes_in 0 163050 station_ip 83.123.49.52 163050 port 707 163050 unique_id port 163050 remote_ip 10.8.0.182 163054 username asma2026 163054 mac 163054 bytes_out 0 163054 bytes_in 0 163054 station_ip 83.122.211.117 163054 port 368 163054 unique_id port 163054 remote_ip 10.8.1.122 163055 username hashtadani4 163055 mac 163055 bytes_out 0 163055 bytes_in 0 163055 station_ip 83.123.49.52 163055 port 707 163055 unique_id port 163055 remote_ip 10.8.0.182 163057 username hashtadani4 163057 kill_reason Maximum check online fails reached 163057 mac 163057 bytes_out 0 163057 bytes_in 0 163057 station_ip 83.123.49.52 163057 port 358 163057 unique_id port 163058 username hashtadani4 163058 mac 163058 bytes_out 0 163058 bytes_in 0 163058 station_ip 83.123.49.52 163058 port 707 163058 unique_id port 163058 remote_ip 10.8.0.182 163060 username asma2026 163060 mac 163060 bytes_out 0 163060 bytes_in 0 163060 station_ip 83.122.211.117 163060 port 707 163060 unique_id port 163060 remote_ip 10.8.0.94 163063 username tahmasebi 163063 kill_reason Another user logged on this global unique id 163063 mac 163063 bytes_out 0 163063 bytes_in 0 163063 station_ip 5.119.68.191 163063 port 703 163063 unique_id port 163063 remote_ip 10.8.0.42 163069 username barzegar 163069 mac 163069 bytes_out 0 163069 bytes_in 0 163069 station_ip 5.119.87.5 163069 port 703 163069 unique_id port 163069 remote_ip 10.8.0.234 163074 username tahmasebi 163074 mac 163074 bytes_out 0 163074 bytes_in 0 163074 station_ip 5.119.68.191 163074 port 703 163074 unique_id port 163074 remote_ip 10.8.0.42 163075 username hashtadani4 163075 mac 163075 bytes_out 0 163075 bytes_in 0 163075 station_ip 83.123.49.52 163075 port 703 163075 unique_id port 163075 remote_ip 10.8.0.182 163080 username asma2026 163080 mac 163080 bytes_out 0 163080 bytes_in 0 163080 station_ip 83.122.211.117 163080 port 703 163080 unique_id port 163080 remote_ip 10.8.0.94 163083 username barzegar 163083 mac 163083 bytes_out 0 163083 bytes_in 0 163083 station_ip 5.119.87.5 163083 port 703 163083 unique_id port 163083 remote_ip 10.8.0.234 163085 username asma2026 163085 mac 163085 bytes_out 0 163085 bytes_in 0 163085 station_ip 83.122.211.117 163085 port 703 163085 unique_id port 163085 remote_ip 10.8.0.94 163086 username farhad2 163086 mac 163086 bytes_out 0 163086 bytes_in 0 163086 station_ip 5.119.209.62 163086 port 703 163086 unique_id port 163086 remote_ip 10.8.0.190 163092 username hashtadani4 163092 mac 163092 bytes_out 0 163038 bytes_out 0 163038 bytes_in 0 163038 station_ip 83.123.49.52 163038 port 703 163038 unique_id port 163038 remote_ip 10.8.0.182 163043 username jamali 163043 mac 163043 bytes_out 0 163043 bytes_in 0 163043 station_ip 5.119.86.183 163043 port 358 163043 unique_id port 163043 remote_ip 10.8.1.82 163045 username hashtadani4 163045 mac 163045 bytes_out 0 163045 bytes_in 0 163045 station_ip 83.123.49.52 163045 port 707 163045 unique_id port 163045 remote_ip 10.8.0.182 163047 username asma2026 163047 mac 163047 bytes_out 0 163047 bytes_in 0 163047 station_ip 83.122.211.117 163047 port 358 163047 unique_id port 163047 remote_ip 10.8.1.122 163049 username barzegar 163049 mac 163049 bytes_out 0 163049 bytes_in 0 163049 station_ip 5.119.87.5 163049 port 358 163049 unique_id port 163049 remote_ip 10.8.1.174 163052 username hashtadani4 163052 mac 163052 bytes_out 0 163052 bytes_in 0 163052 station_ip 83.123.49.52 163052 port 703 163052 unique_id port 163052 remote_ip 10.8.0.182 163056 username farhad2 163056 kill_reason Another user logged on this global unique id 163056 mac 163056 bytes_out 0 163056 bytes_in 0 163056 station_ip 5.119.209.62 163056 port 709 163056 unique_id port 163064 username tahmasebi 163064 mac 163064 bytes_out 0 163064 bytes_in 0 163064 station_ip 5.119.68.191 163064 port 703 163064 unique_id port 163065 username hashtadani4 163065 mac 163065 bytes_out 0 163065 bytes_in 0 163065 station_ip 83.123.49.52 163065 port 703 163065 unique_id port 163065 remote_ip 10.8.0.182 163066 username hashtadani4 163066 mac 163066 bytes_out 1644 163066 bytes_in 5076 163066 station_ip 83.123.49.52 163066 port 703 163066 unique_id port 163066 remote_ip 10.8.0.182 163067 username hashtadani4 163067 mac 163067 bytes_out 0 163067 bytes_in 0 163067 station_ip 83.123.49.52 163067 port 703 163067 unique_id port 163067 remote_ip 10.8.0.182 163070 username hashtadani4 163070 mac 163070 bytes_out 0 163070 bytes_in 0 163070 station_ip 83.123.49.52 163070 port 703 163070 unique_id port 163070 remote_ip 10.8.0.182 163072 username tahmasebi 163072 mac 163072 bytes_out 0 163072 bytes_in 0 163072 station_ip 5.119.68.191 163072 port 703 163072 unique_id port 163072 remote_ip 10.8.0.42 163073 username asma2026 163073 mac 163073 bytes_out 0 163073 bytes_in 0 163073 station_ip 83.122.211.117 163073 port 703 163073 unique_id port 163073 remote_ip 10.8.0.94 163078 username hashtadani4 163078 mac 163078 bytes_out 0 163078 bytes_in 0 163078 station_ip 83.123.49.52 163078 port 703 163078 unique_id port 163078 remote_ip 10.8.0.182 163088 username hashtadani4 163088 mac 163088 bytes_out 0 163088 bytes_in 0 163088 station_ip 83.123.49.52 163088 port 703 163088 unique_id port 163088 remote_ip 10.8.0.182 163091 username hashtadani4 163091 mac 163091 bytes_out 1644 163091 bytes_in 4930 163091 station_ip 83.123.49.52 163091 port 703 163091 unique_id port 163091 remote_ip 10.8.0.182 163093 username hashtadani4 163093 mac 163093 bytes_out 0 163093 bytes_in 0 163093 station_ip 83.123.49.52 163093 port 707 163093 unique_id port 163093 remote_ip 10.8.0.182 163097 username moradi 163097 kill_reason Another user logged on this global unique id 163097 mac 163097 bytes_out 0 163097 bytes_in 0 163097 station_ip 5.134.143.104 163097 port 709 163097 unique_id port 163097 remote_ip 10.8.0.126 163098 username tahmasebi 163098 mac 163098 bytes_out 2432 163098 bytes_in 4789 163041 bytes_in 0 163041 station_ip 83.123.49.52 163041 port 707 163041 unique_id port 163041 remote_ip 10.8.0.182 163042 username hashtadani4 163042 mac 163042 bytes_out 0 163042 bytes_in 0 163042 station_ip 83.123.49.52 163042 port 707 163042 unique_id port 163042 remote_ip 10.8.0.182 163046 username hashtadani4 163046 mac 163046 bytes_out 0 163046 bytes_in 0 163046 station_ip 83.123.49.52 163046 port 715 163046 unique_id port 163046 remote_ip 10.8.0.182 163051 username tahmasebi 163051 mac 163051 bytes_out 0 163051 bytes_in 0 163051 station_ip 5.119.68.191 163051 port 703 163051 unique_id port 163051 remote_ip 10.8.0.42 163053 username hashtadani4 163053 mac 163053 bytes_out 0 163053 bytes_in 0 163053 station_ip 83.123.49.52 163053 port 372 163053 unique_id port 163053 remote_ip 10.8.1.142 163059 username hashtadani4 163059 mac 163059 bytes_out 0 163059 bytes_in 0 163059 station_ip 83.123.49.52 163059 port 707 163059 unique_id port 163059 remote_ip 10.8.0.182 163061 username hashtadani4 163061 mac 163061 bytes_out 0 163061 bytes_in 0 163061 station_ip 83.123.49.52 163061 port 707 163061 unique_id port 163061 remote_ip 10.8.0.182 163062 username asma2026 163062 mac 163062 bytes_out 0 163062 bytes_in 0 163062 station_ip 83.122.211.117 163062 port 715 163062 unique_id port 163062 remote_ip 10.8.0.94 163068 username hashtadani4 163068 mac 163068 bytes_out 0 163068 bytes_in 0 163068 station_ip 83.123.49.52 163068 port 715 163068 unique_id port 163068 remote_ip 10.8.0.182 163071 username hashtadani4 163071 mac 163071 bytes_out 0 163071 bytes_in 0 163071 station_ip 83.123.49.52 163071 port 703 163071 unique_id port 163071 remote_ip 10.8.0.182 163076 username asma2026 163076 mac 163076 bytes_out 0 163076 bytes_in 0 163076 station_ip 83.122.211.117 163076 port 703 163076 unique_id port 163076 remote_ip 10.8.0.94 163077 username farhad2 163077 mac 163077 bytes_out 0 163077 bytes_in 0 163077 station_ip 5.119.209.62 163077 port 709 163077 unique_id port 163079 username hashtadani4 163079 mac 163079 bytes_out 0 163079 bytes_in 0 163079 station_ip 83.123.49.52 163079 port 368 163079 unique_id port 163079 remote_ip 10.8.1.142 163081 username hashtadani4 163081 mac 163081 bytes_out 0 163081 bytes_in 0 163081 station_ip 83.123.49.52 163081 port 703 163081 unique_id port 163081 remote_ip 10.8.0.182 163082 username moradi 163082 mac 163082 bytes_out 3322195 163082 bytes_in 46129927 163082 station_ip 5.134.143.104 163082 port 707 163082 unique_id port 163082 remote_ip 10.8.0.126 163084 username hashtadani4 163084 mac 163084 bytes_out 0 163084 bytes_in 0 163084 station_ip 83.123.49.52 163084 port 707 163084 unique_id port 163084 remote_ip 10.8.0.182 163087 username hashtadani4 163087 mac 163087 bytes_out 0 163087 bytes_in 0 163087 station_ip 83.123.49.52 163087 port 372 163087 unique_id port 163087 remote_ip 10.8.1.142 163089 username hashtadani4 163089 mac 163089 bytes_out 0 163089 bytes_in 0 163089 station_ip 83.123.49.52 163089 port 703 163089 unique_id port 163089 remote_ip 10.8.0.182 163090 username tahmasebi 163090 mac 163090 bytes_out 0 163090 bytes_in 0 163090 station_ip 5.119.68.191 163090 port 372 163090 unique_id port 163090 remote_ip 10.8.1.90 163095 username hashtadani4 163095 mac 163095 bytes_out 0 163095 bytes_in 0 163095 station_ip 83.123.49.52 163095 port 707 163095 unique_id port 163092 bytes_in 0 163092 station_ip 83.123.49.52 163092 port 703 163092 unique_id port 163092 remote_ip 10.8.0.182 163094 username farhad2 163094 mac 163094 bytes_out 0 163094 bytes_in 0 163094 station_ip 5.119.209.62 163094 port 368 163094 unique_id port 163094 remote_ip 10.8.1.222 163096 username asma2026 163096 mac 163096 bytes_out 0 163096 bytes_in 0 163096 station_ip 83.122.211.117 163096 port 368 163096 unique_id port 163096 remote_ip 10.8.1.122 163101 username hashtadani4 163101 mac 163101 bytes_out 0 163101 bytes_in 0 163101 station_ip 83.123.49.52 163101 port 715 163101 unique_id port 163101 remote_ip 10.8.0.182 163104 username tahmasebi 163104 mac 163104 bytes_out 0 163104 bytes_in 0 163104 station_ip 5.119.68.191 163104 port 703 163104 unique_id port 163104 remote_ip 10.8.0.42 163105 username hashtadani4 163105 mac 163105 bytes_out 0 163105 bytes_in 0 163105 station_ip 83.123.49.52 163105 port 703 163105 unique_id port 163105 remote_ip 10.8.0.182 163107 username hashtadani4 163107 mac 163107 bytes_out 0 163107 bytes_in 0 163107 station_ip 83.123.49.52 163107 port 703 163107 unique_id port 163107 remote_ip 10.8.0.182 163108 username hashtadani4 163108 mac 163108 bytes_out 0 163108 bytes_in 0 163108 station_ip 83.123.49.52 163108 port 703 163108 unique_id port 163108 remote_ip 10.8.0.182 163109 username hashtadani4 163109 mac 163109 bytes_out 0 163109 bytes_in 0 163109 station_ip 83.123.49.52 163109 port 703 163109 unique_id port 163109 remote_ip 10.8.0.182 163111 username hashtadani4 163111 mac 163111 bytes_out 0 163111 bytes_in 0 163111 station_ip 83.123.49.52 163111 port 703 163111 unique_id port 163111 remote_ip 10.8.0.182 163116 username hashtadani4 163116 mac 163116 bytes_out 0 163116 bytes_in 0 163116 station_ip 83.123.49.52 163116 port 703 163116 unique_id port 163116 remote_ip 10.8.0.182 163120 username moradi 163120 kill_reason Another user logged on this global unique id 163120 mac 163120 bytes_out 0 163120 bytes_in 0 163120 station_ip 5.134.143.104 163120 port 709 163120 unique_id port 163122 username tahmasebi 163122 mac 163122 bytes_out 0 163122 bytes_in 0 163122 station_ip 5.119.68.191 163122 port 374 163122 unique_id port 163122 remote_ip 10.8.1.90 163123 username hashtadani4 163123 mac 163123 bytes_out 0 163123 bytes_in 0 163123 station_ip 83.123.49.52 163123 port 677 163123 unique_id port 163123 remote_ip 10.8.0.182 163124 username moradi 163124 mac 163124 bytes_out 0 163124 bytes_in 0 163124 station_ip 5.134.143.104 163124 port 709 163124 unique_id port 163132 username hashtadani4 163132 mac 163132 bytes_out 0 163132 bytes_in 0 163132 station_ip 83.123.49.52 163132 port 677 163132 unique_id port 163132 remote_ip 10.8.0.182 163134 username tahmasebi 163134 mac 163134 bytes_out 0 163134 bytes_in 0 163134 station_ip 5.119.68.191 163134 port 368 163134 unique_id port 163134 remote_ip 10.8.1.90 163135 username hashtadani4 163135 kill_reason Maximum check online fails reached 163135 mac 163135 bytes_out 0 163135 bytes_in 0 163135 station_ip 83.123.49.52 163135 port 374 163135 unique_id port 163138 username asma2026 163138 mac 163138 bytes_out 0 163138 bytes_in 0 163138 station_ip 83.122.211.117 163138 port 368 163138 unique_id port 163138 remote_ip 10.8.1.122 163142 username hashtadani4 163142 mac 163142 bytes_out 0 163142 bytes_in 0 163142 station_ip 83.123.49.52 163142 port 677 163142 unique_id port 163095 remote_ip 10.8.0.182 163100 username barzegar 163100 mac 163100 bytes_out 0 163100 bytes_in 0 163100 station_ip 5.119.87.5 163100 port 707 163100 unique_id port 163100 remote_ip 10.8.0.234 163103 username tahmasebi 163103 mac 163103 bytes_out 2315 163103 bytes_in 4645 163103 station_ip 5.119.68.191 163103 port 703 163103 unique_id port 163103 remote_ip 10.8.0.42 163106 username asma2026 163106 mac 163106 bytes_out 0 163106 bytes_in 0 163106 station_ip 83.122.211.117 163106 port 703 163106 unique_id port 163106 remote_ip 10.8.0.94 163110 username moradi 163110 kill_reason Another user logged on this global unique id 163110 mac 163110 bytes_out 0 163110 bytes_in 0 163110 station_ip 5.134.143.104 163110 port 709 163110 unique_id port 163117 username tahmasebi 163117 mac 163117 bytes_out 0 163117 bytes_in 0 163117 station_ip 5.119.68.191 163117 port 677 163117 unique_id port 163117 remote_ip 10.8.0.42 163119 username hashtadani4 163119 mac 163119 bytes_out 0 163119 bytes_in 0 163119 station_ip 83.123.49.52 163119 port 707 163119 unique_id port 163119 remote_ip 10.8.0.182 163121 username barzegar 163121 mac 163121 bytes_out 0 163121 bytes_in 0 163121 station_ip 5.119.87.5 163121 port 677 163121 unique_id port 163121 remote_ip 10.8.0.234 163125 username hashtadani4 163125 mac 163125 bytes_out 0 163125 bytes_in 0 163125 station_ip 83.123.49.52 163125 port 677 163125 unique_id port 163125 remote_ip 10.8.0.182 163127 username asma2026 163127 mac 163127 bytes_out 0 163127 bytes_in 0 163127 station_ip 83.122.211.117 163127 port 677 163127 unique_id port 163127 remote_ip 10.8.0.94 163128 username hashtadani4 163128 mac 163128 bytes_out 0 163128 bytes_in 0 163128 station_ip 83.123.49.52 163128 port 677 163128 unique_id port 163128 remote_ip 10.8.0.182 163130 username hashtadani4 163130 mac 163130 bytes_out 0 163130 bytes_in 0 163130 station_ip 83.123.49.52 163130 port 677 163130 unique_id port 163130 remote_ip 10.8.0.182 163136 username hashtadani4 163136 mac 163136 bytes_out 0 163136 bytes_in 0 163136 station_ip 83.123.49.52 163136 port 376 163136 unique_id port 163136 remote_ip 10.8.1.142 163141 username asma2026 163141 mac 163141 bytes_out 0 163141 bytes_in 0 163141 station_ip 83.122.211.117 163141 port 677 163141 unique_id port 163141 remote_ip 10.8.0.94 163143 username barzegar 163143 mac 163143 bytes_out 0 163143 bytes_in 0 163143 station_ip 5.119.87.5 163143 port 368 163143 unique_id port 163143 remote_ip 10.8.1.174 163148 username asma2026 163148 mac 163148 bytes_out 0 163148 bytes_in 0 163148 station_ip 83.122.211.117 163148 port 707 163148 unique_id port 163148 remote_ip 10.8.0.94 163160 username asma2026 163160 mac 163160 bytes_out 0 163160 bytes_in 0 163160 station_ip 83.122.73.242 163160 port 709 163160 unique_id port 163160 remote_ip 10.8.0.94 163163 username asma2026 163163 kill_reason Maximum check online fails reached 163163 mac 163163 bytes_out 0 163163 bytes_in 0 163163 station_ip 83.122.73.242 163163 port 707 163163 unique_id port 163164 username asma2026 163164 mac 163164 bytes_out 0 163164 bytes_in 0 163164 station_ip 83.122.73.242 163164 port 709 163164 unique_id port 163164 remote_ip 10.8.0.94 163168 username hashtadani4 163168 mac 163168 bytes_out 0 163168 bytes_in 0 163168 station_ip 83.123.49.52 163168 port 368 163168 unique_id port 163168 remote_ip 10.8.1.142 163172 username mosi 163098 station_ip 5.119.68.191 163098 port 703 163098 unique_id port 163098 remote_ip 10.8.0.42 163099 username asma2026 163099 kill_reason Maximum check online fails reached 163099 mac 163099 bytes_out 0 163099 bytes_in 0 163099 station_ip 83.122.211.117 163099 port 372 163099 unique_id port 163102 username farhad2 163102 mac 163102 bytes_out 83897 163102 bytes_in 173214 163102 station_ip 5.119.209.62 163102 port 368 163102 unique_id port 163102 remote_ip 10.8.1.222 163112 username sabaghnezhad 163112 mac 163112 bytes_out 0 163112 bytes_in 0 163112 station_ip 83.123.213.60 163112 port 677 163112 unique_id port 163112 remote_ip 10.8.0.186 163113 username asma2026 163113 mac 163113 bytes_out 0 163113 bytes_in 0 163113 station_ip 83.122.211.117 163113 port 374 163113 unique_id port 163113 remote_ip 10.8.1.122 163114 username hashtadani4 163114 kill_reason Maximum check online fails reached 163114 mac 163114 bytes_out 0 163114 bytes_in 0 163114 station_ip 83.123.49.52 163114 port 373 163114 unique_id port 163115 username hashtadani4 163115 mac 163115 bytes_out 0 163115 bytes_in 0 163115 station_ip 83.123.49.52 163115 port 374 163115 unique_id port 163115 remote_ip 10.8.1.142 163118 username asma2026 163118 mac 163118 bytes_out 0 163118 bytes_in 0 163118 station_ip 83.122.211.117 163118 port 677 163118 unique_id port 163118 remote_ip 10.8.0.94 163126 username farhad2 163126 kill_reason Another user logged on this global unique id 163126 mac 163126 bytes_out 0 163126 bytes_in 0 163126 station_ip 5.119.209.62 163126 port 368 163126 unique_id port 163126 remote_ip 10.8.1.222 163129 username farhad2 163129 mac 163129 bytes_out 0 163129 bytes_in 0 163129 station_ip 5.119.209.62 163129 port 368 163129 unique_id port 163131 username asma2026 163131 mac 163131 bytes_out 0 163131 bytes_in 0 163131 station_ip 83.122.211.117 163131 port 375 163131 unique_id port 163131 remote_ip 10.8.1.122 163133 username asma2026 163133 mac 163133 bytes_out 0 163133 bytes_in 0 163133 station_ip 83.122.211.117 163133 port 375 163133 unique_id port 163133 remote_ip 10.8.1.122 163137 username hashtadani4 163137 mac 163137 bytes_out 0 163137 bytes_in 0 163137 station_ip 83.123.49.52 163137 port 677 163137 unique_id port 163137 remote_ip 10.8.0.182 163139 username tahmasebi 163139 mac 163139 bytes_out 0 163139 bytes_in 0 163139 station_ip 5.119.68.191 163139 port 375 163139 unique_id port 163139 remote_ip 10.8.1.90 163140 username tahmasebi 163140 mac 163140 bytes_out 0 163140 bytes_in 0 163140 station_ip 5.119.68.191 163140 port 368 163140 unique_id port 163140 remote_ip 10.8.1.90 163144 username asma2026 163144 mac 163144 bytes_out 0 163144 bytes_in 0 163144 station_ip 83.122.211.117 163144 port 677 163144 unique_id port 163144 remote_ip 10.8.0.94 163146 username asma2026 163146 mac 163146 bytes_out 0 163146 bytes_in 0 163146 station_ip 83.122.211.117 163146 port 677 163146 unique_id port 163146 remote_ip 10.8.0.94 163147 username asma2026 163147 mac 163147 bytes_out 0 163147 bytes_in 0 163147 station_ip 83.122.211.117 163147 port 677 163147 unique_id port 163147 remote_ip 10.8.0.94 163155 username asma2026 163155 mac 163155 bytes_out 0 163155 bytes_in 0 163155 station_ip 83.122.73.242 163155 port 707 163155 unique_id port 163155 remote_ip 10.8.0.94 163157 username mosi 163157 kill_reason Another user logged on this global unique id 163157 mac 163157 bytes_out 0 163157 bytes_in 0 163142 remote_ip 10.8.0.182 163145 username tahmasebi 163145 mac 163145 bytes_out 0 163145 bytes_in 0 163145 station_ip 5.119.68.191 163145 port 677 163145 unique_id port 163145 remote_ip 10.8.0.42 163149 username hashtadani4 163149 mac 163149 bytes_out 0 163149 bytes_in 0 163149 station_ip 83.123.49.52 163149 port 677 163149 unique_id port 163149 remote_ip 10.8.0.182 163150 username asma2026 163150 mac 163150 bytes_out 0 163150 bytes_in 0 163150 station_ip 83.122.73.242 163150 port 707 163150 unique_id port 163150 remote_ip 10.8.0.94 163151 username asma2026 163151 mac 163151 bytes_out 2421 163151 bytes_in 4698 163151 station_ip 83.122.73.242 163151 port 707 163151 unique_id port 163151 remote_ip 10.8.0.94 163152 username tahmasebi 163152 mac 163152 bytes_out 0 163152 bytes_in 0 163152 station_ip 5.119.68.191 163152 port 709 163152 unique_id port 163152 remote_ip 10.8.0.42 163153 username asma2026 163153 mac 163153 bytes_out 0 163153 bytes_in 0 163153 station_ip 83.122.73.242 163153 port 707 163153 unique_id port 163153 remote_ip 10.8.0.94 163154 username hashtadani4 163154 mac 163154 bytes_out 0 163154 bytes_in 0 163154 station_ip 83.123.49.52 163154 port 368 163154 unique_id port 163154 remote_ip 10.8.1.142 163156 username hashtadani4 163156 mac 163156 bytes_out 0 163156 bytes_in 0 163156 station_ip 83.123.49.52 163156 port 368 163156 unique_id port 163156 remote_ip 10.8.1.142 163158 username asma2026 163158 mac 163158 bytes_out 0 163158 bytes_in 0 163158 station_ip 83.122.73.242 163158 port 707 163158 unique_id port 163158 remote_ip 10.8.0.94 163166 username asma2026 163166 mac 163166 bytes_out 0 163166 bytes_in 0 163166 station_ip 83.122.73.242 163166 port 709 163166 unique_id port 163166 remote_ip 10.8.0.94 163167 username asma2026 163167 mac 163167 bytes_out 0 163167 bytes_in 0 163167 station_ip 83.122.73.242 163167 port 709 163167 unique_id port 163167 remote_ip 10.8.0.94 163170 username hashtadani4 163170 mac 163170 bytes_out 0 163170 bytes_in 0 163170 station_ip 83.123.49.52 163170 port 715 163170 unique_id port 163170 remote_ip 10.8.0.182 163177 username hashtadani4 163177 mac 163177 bytes_out 0 163177 bytes_in 0 163177 station_ip 83.123.49.52 163177 port 717 163177 unique_id port 163177 remote_ip 10.8.0.182 163180 username hashtadani4 163180 mac 163180 bytes_out 0 163180 bytes_in 0 163180 station_ip 83.123.49.52 163180 port 715 163180 unique_id port 163180 remote_ip 10.8.0.182 163181 username hashtadani4 163181 mac 163181 bytes_out 0 163181 bytes_in 0 163181 station_ip 83.123.49.52 163181 port 715 163181 unique_id port 163181 remote_ip 10.8.0.182 163186 username hashtadani4 163186 mac 163186 bytes_out 0 163186 bytes_in 0 163186 station_ip 83.123.49.52 163186 port 715 163186 unique_id port 163186 remote_ip 10.8.0.182 163188 username hashtadani4 163188 mac 163188 bytes_out 0 163188 bytes_in 0 163188 station_ip 83.123.49.52 163188 port 715 163188 unique_id port 163188 remote_ip 10.8.0.182 163195 username hashtadani4 163195 mac 163195 bytes_out 0 163195 bytes_in 0 163195 station_ip 83.123.49.52 163195 port 715 163195 unique_id port 163195 remote_ip 10.8.0.182 163196 username barzegar 163196 mac 163196 bytes_out 0 163196 bytes_in 0 163196 station_ip 5.119.87.5 163196 port 376 163196 unique_id port 163196 remote_ip 10.8.1.174 163198 username hashtadani4 163198 mac 163198 bytes_out 0 163157 station_ip 151.235.120.66 163157 port 703 163157 unique_id port 163157 remote_ip 10.8.0.138 163159 username tahmasebi 163159 mac 163159 bytes_out 0 163159 bytes_in 0 163159 station_ip 5.119.68.191 163159 port 707 163159 unique_id port 163159 remote_ip 10.8.0.42 163161 username barzegar 163161 mac 163161 bytes_out 0 163161 bytes_in 0 163161 station_ip 5.119.87.5 163161 port 707 163161 unique_id port 163161 remote_ip 10.8.0.234 163162 username asma2026 163162 mac 163162 bytes_out 2315 163162 bytes_in 4592 163162 station_ip 83.122.73.242 163162 port 709 163162 unique_id port 163162 remote_ip 10.8.0.94 163165 username asma2026 163165 mac 163165 bytes_out 0 163165 bytes_in 0 163165 station_ip 83.122.73.242 163165 port 709 163165 unique_id port 163165 remote_ip 10.8.0.94 163169 username hashtadani4 163169 mac 163169 bytes_out 0 163169 bytes_in 0 163169 station_ip 83.123.49.52 163169 port 368 163169 unique_id port 163169 remote_ip 10.8.1.142 163171 username asma2026 163171 kill_reason Maximum number of concurrent logins reached 163171 mac 163171 bytes_out 0 163171 bytes_in 0 163171 station_ip 83.122.73.242 163171 port 715 163171 unique_id port 163174 username hashtadani4 163174 mac 163174 bytes_out 0 163174 bytes_in 0 163174 station_ip 83.123.49.52 163174 port 715 163174 unique_id port 163174 remote_ip 10.8.0.182 163175 username asma2026 163175 kill_reason Maximum check online fails reached 163175 mac 163175 bytes_out 0 163175 bytes_in 0 163175 station_ip 83.122.73.242 163175 port 709 163175 unique_id port 163176 username hashtadani4 163176 mac 163176 bytes_out 0 163176 bytes_in 0 163176 station_ip 83.123.49.52 163176 port 375 163176 unique_id port 163176 remote_ip 10.8.1.142 163179 username tahmasebi 163179 mac 163179 bytes_out 3180 163179 bytes_in 10324 163179 station_ip 5.119.68.191 163179 port 715 163179 unique_id port 163179 remote_ip 10.8.0.42 163183 username hashtadani4 163183 mac 163183 bytes_out 0 163183 bytes_in 0 163183 station_ip 83.123.49.52 163183 port 715 163183 unique_id port 163183 remote_ip 10.8.0.182 163184 username hashtadani4 163184 mac 163184 bytes_out 0 163184 bytes_in 0 163184 station_ip 83.123.49.52 163184 port 715 163184 unique_id port 163184 remote_ip 10.8.0.182 163189 username hashtadani4 163189 kill_reason Maximum check online fails reached 163189 mac 163189 bytes_out 0 163189 bytes_in 0 163189 station_ip 83.123.49.52 163189 port 375 163189 unique_id port 163191 username hashtadani4 163191 mac 163191 bytes_out 0 163191 bytes_in 0 163191 station_ip 83.123.49.52 163191 port 715 163191 unique_id port 163191 remote_ip 10.8.0.182 163193 username hashtadani4 163193 mac 163193 bytes_out 0 163193 bytes_in 0 163193 station_ip 83.123.49.52 163193 port 715 163193 unique_id port 163193 remote_ip 10.8.0.182 163200 username hashtadani4 163200 mac 163200 bytes_out 0 163200 bytes_in 0 163200 station_ip 83.123.49.52 163200 port 376 163200 unique_id port 163200 remote_ip 10.8.1.142 163202 username tahmasebi 163202 mac 163202 bytes_out 0 163202 bytes_in 0 163202 station_ip 5.119.68.191 163202 port 376 163202 unique_id port 163202 remote_ip 10.8.1.90 163206 username hashtadani4 163206 mac 163206 bytes_out 0 163206 bytes_in 0 163206 station_ip 83.123.49.52 163206 port 715 163206 unique_id port 163206 remote_ip 10.8.0.182 163208 username barzegar 163208 mac 163208 bytes_out 0 163208 bytes_in 0 163208 station_ip 5.119.87.5 163208 port 715 163172 kill_reason Another user logged on this global unique id 163172 mac 163172 bytes_out 0 163172 bytes_in 0 163172 station_ip 151.235.120.66 163172 port 703 163172 unique_id port 163173 username asma2026 163173 kill_reason Maximum number of concurrent logins reached 163173 mac 163173 bytes_out 0 163173 bytes_in 0 163173 station_ip 83.122.73.242 163173 port 715 163173 unique_id port 163178 username asma2026 163178 kill_reason Maximum check online fails reached 163178 mac 163178 bytes_out 0 163178 bytes_in 0 163178 station_ip 83.122.73.242 163178 port 368 163178 unique_id port 163182 username barzegar 163182 mac 163182 bytes_out 0 163182 bytes_in 0 163182 station_ip 5.119.87.5 163182 port 715 163182 unique_id port 163182 remote_ip 10.8.0.234 163185 username hashtadani4 163185 mac 163185 bytes_out 0 163185 bytes_in 0 163185 station_ip 83.123.49.52 163185 port 375 163185 unique_id port 163185 remote_ip 10.8.1.142 163187 username hashtadani4 163187 mac 163187 bytes_out 0 163187 bytes_in 0 163187 station_ip 83.123.49.52 163187 port 376 163187 unique_id port 163187 remote_ip 10.8.1.142 163190 username tahmasebi 163190 mac 163190 bytes_out 0 163190 bytes_in 0 163190 station_ip 5.119.68.191 163190 port 715 163190 unique_id port 163190 remote_ip 10.8.0.42 163192 username mosi 163192 kill_reason Another user logged on this global unique id 163192 mac 163192 bytes_out 0 163192 bytes_in 0 163192 station_ip 151.235.120.66 163192 port 703 163192 unique_id port 163194 username hashtadani4 163194 mac 163194 bytes_out 0 163194 bytes_in 0 163194 station_ip 83.123.49.52 163194 port 715 163194 unique_id port 163194 remote_ip 10.8.0.182 163197 username hashtadani4 163197 mac 163197 bytes_out 0 163197 bytes_in 0 163197 station_ip 83.123.49.52 163197 port 715 163197 unique_id port 163197 remote_ip 10.8.0.182 163203 username hashtadani4 163203 mac 163203 bytes_out 0 163203 bytes_in 0 163203 station_ip 83.123.49.52 163203 port 715 163203 unique_id port 163203 remote_ip 10.8.0.182 163205 username hashtadani4 163205 mac 163205 bytes_out 0 163205 bytes_in 0 163205 station_ip 83.123.49.52 163205 port 715 163205 unique_id port 163205 remote_ip 10.8.0.182 163215 username hashtadani4 163215 mac 163215 bytes_out 0 163215 bytes_in 0 163215 station_ip 83.123.49.52 163215 port 715 163215 unique_id port 163215 remote_ip 10.8.0.182 163217 username hashtadani4 163217 mac 163217 bytes_out 0 163217 bytes_in 0 163217 station_ip 83.123.49.52 163217 port 715 163217 unique_id port 163217 remote_ip 10.8.0.182 163219 username barzegar 163219 mac 163219 bytes_out 0 163219 bytes_in 0 163219 station_ip 5.119.87.5 163219 port 715 163219 unique_id port 163219 remote_ip 10.8.0.234 163221 username hashtadani4 163221 mac 163221 bytes_out 0 163221 bytes_in 0 163221 station_ip 83.123.49.52 163221 port 715 163221 unique_id port 163221 remote_ip 10.8.0.182 163226 username hashtadani4 163226 mac 163226 bytes_out 0 163226 bytes_in 0 163226 station_ip 83.123.49.52 163226 port 376 163226 unique_id port 163226 remote_ip 10.8.1.142 163231 username hashtadani4 163231 mac 163231 bytes_out 0 163231 bytes_in 0 163231 station_ip 83.123.49.52 163231 port 715 163231 unique_id port 163231 remote_ip 10.8.0.182 163233 username hashtadani4 163233 mac 163233 bytes_out 0 163233 bytes_in 0 163233 station_ip 83.123.49.52 163233 port 715 163233 unique_id port 163233 remote_ip 10.8.0.182 163234 username hashtadani4 163234 mac 163198 bytes_in 0 163198 station_ip 83.123.49.52 163198 port 715 163198 unique_id port 163198 remote_ip 10.8.0.182 163199 username hashtadani4 163199 mac 163199 bytes_out 0 163199 bytes_in 0 163199 station_ip 83.123.49.52 163199 port 715 163199 unique_id port 163199 remote_ip 10.8.0.182 163201 username hashtadani4 163201 mac 163201 bytes_out 0 163201 bytes_in 0 163201 station_ip 83.123.49.52 163201 port 715 163201 unique_id port 163201 remote_ip 10.8.0.182 163204 username hashtadani4 163204 mac 163204 bytes_out 0 163204 bytes_in 0 163204 station_ip 83.123.49.52 163204 port 715 163204 unique_id port 163204 remote_ip 10.8.0.182 163207 username hashtadani4 163207 mac 163207 bytes_out 0 163207 bytes_in 0 163207 station_ip 83.123.49.52 163207 port 715 163207 unique_id port 163207 remote_ip 10.8.0.182 163209 username hashtadani4 163209 mac 163209 bytes_out 0 163209 bytes_in 0 163209 station_ip 83.123.49.52 163209 port 715 163209 unique_id port 163209 remote_ip 10.8.0.182 163210 username hashtadani4 163210 mac 163210 bytes_out 0 163210 bytes_in 0 163210 station_ip 83.123.49.52 163210 port 715 163210 unique_id port 163210 remote_ip 10.8.0.182 163212 username tahmasebi 163212 mac 163212 bytes_out 0 163212 bytes_in 0 163212 station_ip 5.119.68.191 163212 port 376 163212 unique_id port 163212 remote_ip 10.8.1.90 163213 username hashtadani4 163213 mac 163213 bytes_out 0 163213 bytes_in 0 163213 station_ip 83.123.49.52 163213 port 715 163213 unique_id port 163213 remote_ip 10.8.0.182 163214 username hashtadani4 163214 mac 163214 bytes_out 0 163214 bytes_in 0 163214 station_ip 83.123.49.52 163214 port 715 163214 unique_id port 163214 remote_ip 10.8.0.182 163216 username hashtadani4 163216 mac 163216 bytes_out 0 163216 bytes_in 0 163216 station_ip 83.123.49.52 163216 port 715 163216 unique_id port 163216 remote_ip 10.8.0.182 163218 username hashtadani4 163218 mac 163218 bytes_out 0 163218 bytes_in 0 163218 station_ip 83.123.49.52 163218 port 715 163218 unique_id port 163218 remote_ip 10.8.0.182 163220 username hashtadani4 163220 mac 163220 bytes_out 0 163220 bytes_in 0 163220 station_ip 83.123.49.52 163220 port 715 163220 unique_id port 163220 remote_ip 10.8.0.182 163222 username hashtadani4 163222 mac 163222 bytes_out 0 163222 bytes_in 0 163222 station_ip 83.123.49.52 163222 port 715 163222 unique_id port 163222 remote_ip 10.8.0.182 163223 username hashtadani4 163223 mac 163223 bytes_out 0 163223 bytes_in 0 163223 station_ip 83.123.49.52 163223 port 715 163223 unique_id port 163223 remote_ip 10.8.0.182 163224 username hashtadani4 163224 mac 163224 bytes_out 0 163224 bytes_in 0 163224 station_ip 83.123.49.52 163224 port 715 163224 unique_id port 163224 remote_ip 10.8.0.182 163225 username tahmasebi 163225 mac 163225 bytes_out 0 163225 bytes_in 0 163225 station_ip 5.119.68.191 163225 port 715 163225 unique_id port 163225 remote_ip 10.8.0.42 163228 username hashtadani4 163228 mac 163228 bytes_out 0 163228 bytes_in 0 163228 station_ip 83.123.49.52 163228 port 715 163228 unique_id port 163228 remote_ip 10.8.0.182 163229 username hashtadani4 163229 mac 163229 bytes_out 0 163229 bytes_in 0 163229 station_ip 83.123.49.52 163229 port 376 163229 unique_id port 163229 remote_ip 10.8.1.142 163230 username hashtadani4 163230 mac 163230 bytes_out 0 163230 bytes_in 0 163230 station_ip 83.123.49.52 163230 port 376 163208 unique_id port 163208 remote_ip 10.8.0.234 163211 username hashtadani4 163211 mac 163211 bytes_out 0 163211 bytes_in 0 163211 station_ip 83.123.49.52 163211 port 715 163211 unique_id port 163211 remote_ip 10.8.0.182 163227 username hashtadani4 163227 mac 163227 bytes_out 0 163227 bytes_in 0 163227 station_ip 83.123.49.52 163227 port 715 163227 unique_id port 163227 remote_ip 10.8.0.182 163238 username hashtadani4 163238 mac 163238 bytes_out 0 163238 bytes_in 0 163238 station_ip 83.123.49.52 163238 port 715 163238 unique_id port 163238 remote_ip 10.8.0.182 163240 username hashtadani4 163240 mac 163240 bytes_out 0 163240 bytes_in 0 163240 station_ip 83.123.49.52 163240 port 717 163240 unique_id port 163240 remote_ip 10.8.0.182 163242 username hashtadani4 163242 mac 163242 bytes_out 0 163242 bytes_in 0 163242 station_ip 83.123.49.52 163242 port 715 163242 unique_id port 163242 remote_ip 10.8.0.182 163243 username hashtadani4 163243 mac 163243 bytes_out 0 163243 bytes_in 0 163243 station_ip 83.123.49.52 163243 port 715 163243 unique_id port 163243 remote_ip 10.8.0.182 163244 username hashtadani4 163244 mac 163244 bytes_out 0 163244 bytes_in 0 163244 station_ip 83.123.49.52 163244 port 715 163244 unique_id port 163244 remote_ip 10.8.0.182 163245 username hashtadani4 163245 mac 163245 bytes_out 0 163245 bytes_in 0 163245 station_ip 83.123.49.52 163245 port 715 163245 unique_id port 163245 remote_ip 10.8.0.182 163246 username barzegar 163246 mac 163246 bytes_out 0 163246 bytes_in 0 163246 station_ip 5.119.87.5 163246 port 715 163246 unique_id port 163246 remote_ip 10.8.0.234 163250 username hashtadani4 163250 mac 163250 bytes_out 0 163250 bytes_in 0 163250 station_ip 83.123.49.52 163250 port 376 163250 unique_id port 163250 remote_ip 10.8.1.142 163252 username tahmasebi 163252 mac 163252 bytes_out 0 163252 bytes_in 0 163252 station_ip 5.119.68.191 163252 port 376 163252 unique_id port 163252 remote_ip 10.8.1.90 163256 username tahmasebi 163256 kill_reason Maximum number of concurrent logins reached 163256 mac 163256 bytes_out 0 163256 bytes_in 0 163256 station_ip 5.119.68.191 163256 port 718 163256 unique_id port 163259 username tahmasebi 163259 kill_reason Maximum check online fails reached 163259 mac 163259 bytes_out 0 163259 bytes_in 0 163259 station_ip 5.119.68.191 163259 port 717 163259 unique_id port 163260 username tahmasebi 163260 kill_reason Maximum number of concurrent logins reached 163260 mac 163260 bytes_out 0 163260 bytes_in 0 163260 station_ip 5.119.68.191 163260 port 720 163260 unique_id port 163261 username tahmasebi 163261 kill_reason Maximum number of concurrent logins reached 163261 mac 163261 bytes_out 0 163261 bytes_in 0 163261 station_ip 5.119.68.191 163261 port 720 163261 unique_id port 163264 username hashtadani4 163264 mac 163264 bytes_out 0 163264 bytes_in 0 163264 station_ip 83.123.49.52 163264 port 720 163264 unique_id port 163264 remote_ip 10.8.0.182 163267 username tahmasebi 163267 kill_reason Maximum check online fails reached 163267 mac 163267 bytes_out 0 163267 bytes_in 0 163267 station_ip 5.119.68.191 163267 port 718 163267 unique_id port 163268 username tahmasebi 163268 kill_reason Maximum number of concurrent logins reached 163268 mac 163268 bytes_out 0 163268 bytes_in 0 163268 station_ip 5.119.68.191 163268 port 723 163268 unique_id port 163273 username tahmasebi 163273 kill_reason Maximum number of concurrent logins reached 163273 mac 163273 bytes_out 0 163273 bytes_in 0 163273 station_ip 5.119.68.191 163230 unique_id port 163230 remote_ip 10.8.1.142 163232 username barzegar 163232 mac 163232 bytes_out 0 163232 bytes_in 0 163232 station_ip 5.119.87.5 163232 port 376 163232 unique_id port 163232 remote_ip 10.8.1.174 163239 username hashtadani4 163239 mac 163239 bytes_out 0 163239 bytes_in 0 163239 station_ip 83.123.49.52 163239 port 715 163239 unique_id port 163239 remote_ip 10.8.0.182 163247 username hashtadani4 163247 mac 163247 bytes_out 0 163247 bytes_in 0 163247 station_ip 83.123.49.52 163247 port 715 163247 unique_id port 163247 remote_ip 10.8.0.182 163251 username hashtadani4 163251 mac 163251 bytes_out 0 163251 bytes_in 0 163251 station_ip 83.123.49.52 163251 port 715 163251 unique_id port 163251 remote_ip 10.8.0.182 163253 username hashtadani4 163253 mac 163253 bytes_out 0 163253 bytes_in 0 163253 station_ip 83.123.49.52 163253 port 715 163253 unique_id port 163253 remote_ip 10.8.0.182 163254 username tahmasebi 163254 kill_reason Maximum number of concurrent logins reached 163254 mac 163254 bytes_out 0 163254 bytes_in 0 163254 station_ip 5.119.68.191 163254 port 718 163254 unique_id port 163257 username tahmasebi 163257 kill_reason Maximum number of concurrent logins reached 163257 mac 163257 bytes_out 0 163257 bytes_in 0 163257 station_ip 5.119.68.191 163257 port 718 163257 unique_id port 163258 username tahmasebi 163258 kill_reason Maximum number of concurrent logins reached 163258 mac 163258 bytes_out 0 163258 bytes_in 0 163258 station_ip 5.119.68.191 163258 port 718 163258 unique_id port 163262 username tahmasebi 163262 kill_reason Maximum number of concurrent logins reached 163262 mac 163262 bytes_out 0 163262 bytes_in 0 163262 station_ip 5.119.68.191 163262 port 720 163262 unique_id port 163265 username tahmasebi 163265 kill_reason Maximum number of concurrent logins reached 163265 mac 163265 bytes_out 0 163265 bytes_in 0 163265 station_ip 5.119.68.191 163265 port 720 163265 unique_id port 163266 username tahmasebi 163266 kill_reason Maximum number of concurrent logins reached 163266 mac 163266 bytes_out 0 163266 bytes_in 0 163266 station_ip 5.119.68.191 163266 port 720 163266 unique_id port 163269 username hashtadani4 163269 mac 163269 bytes_out 0 163269 bytes_in 0 163269 station_ip 83.123.49.52 163269 port 723 163269 unique_id port 163269 remote_ip 10.8.0.182 163272 username tahmasebi 163272 kill_reason Maximum check online fails reached 163272 mac 163272 bytes_out 0 163272 bytes_in 0 163272 station_ip 5.119.68.191 163272 port 722 163272 unique_id port 163275 username barzegar 163275 mac 163275 bytes_out 0 163275 bytes_in 0 163275 station_ip 5.119.87.5 163275 port 725 163275 unique_id port 163275 remote_ip 10.8.0.234 163277 username tahmasebi 163277 kill_reason Maximum check online fails reached 163277 mac 163277 bytes_out 0 163277 bytes_in 0 163277 station_ip 5.119.68.191 163277 port 720 163277 unique_id port 163279 username tahmasebi 163279 kill_reason Maximum number of concurrent logins reached 163279 mac 163279 bytes_out 0 163279 bytes_in 0 163279 station_ip 5.119.68.191 163279 port 726 163279 unique_id port 163280 username tahmasebi 163280 kill_reason Maximum number of concurrent logins reached 163280 mac 163280 bytes_out 0 163280 bytes_in 0 163280 station_ip 5.119.68.191 163280 port 726 163280 unique_id port 163283 username tahmasebi 163283 kill_reason Maximum number of concurrent logins reached 163283 mac 163283 bytes_out 0 163283 bytes_in 0 163283 station_ip 5.119.68.191 163283 port 727 163283 unique_id port 163284 username tahmasebi 163284 kill_reason Maximum number of concurrent logins reached 163284 mac 163234 bytes_out 0 163234 bytes_in 0 163234 station_ip 83.123.49.52 163234 port 715 163234 unique_id port 163234 remote_ip 10.8.0.182 163235 username hashtadani4 163235 kill_reason Maximum check online fails reached 163235 mac 163235 bytes_out 0 163235 bytes_in 0 163235 station_ip 83.123.49.52 163235 port 377 163235 unique_id port 163236 username hashtadani4 163236 mac 163236 bytes_out 0 163236 bytes_in 0 163236 station_ip 83.123.49.52 163236 port 715 163236 unique_id port 163236 remote_ip 10.8.0.182 163237 username hashtadani4 163237 mac 163237 bytes_out 0 163237 bytes_in 0 163237 station_ip 83.123.49.52 163237 port 715 163237 unique_id port 163237 remote_ip 10.8.0.182 163241 username tahmasebi 163241 mac 163241 bytes_out 0 163241 bytes_in 0 163241 station_ip 5.119.68.191 163241 port 715 163241 unique_id port 163241 remote_ip 10.8.0.42 163248 username hashtadani4 163248 mac 163248 bytes_out 0 163248 bytes_in 0 163248 station_ip 83.123.49.52 163248 port 715 163248 unique_id port 163248 remote_ip 10.8.0.182 163249 username hashtadani4 163249 mac 163249 bytes_out 0 163249 bytes_in 0 163249 station_ip 83.123.49.52 163249 port 715 163249 unique_id port 163249 remote_ip 10.8.0.182 163255 username hashtadani4 163255 mac 163255 bytes_out 0 163255 bytes_in 0 163255 station_ip 83.123.49.52 163255 port 718 163255 unique_id port 163255 remote_ip 10.8.0.182 163263 username tahmasebi 163263 kill_reason Maximum check online fails reached 163263 mac 163263 bytes_out 0 163263 bytes_in 0 163263 station_ip 5.119.68.191 163263 port 715 163263 unique_id port 163270 username tahmasebi 163270 kill_reason Maximum number of concurrent logins reached 163270 mac 163270 bytes_out 0 163270 bytes_in 0 163270 station_ip 5.119.68.191 163270 port 723 163270 unique_id port 163271 username tahmasebi 163271 kill_reason Maximum number of concurrent logins reached 163271 mac 163271 bytes_out 0 163271 bytes_in 0 163271 station_ip 5.119.68.191 163271 port 723 163271 unique_id port 163274 username tahmasebi 163274 kill_reason Maximum number of concurrent logins reached 163274 mac 163274 bytes_out 0 163274 bytes_in 0 163274 station_ip 5.119.68.191 163274 port 726 163274 unique_id port 163276 username tahmasebi 163276 kill_reason Maximum number of concurrent logins reached 163276 mac 163276 bytes_out 0 163276 bytes_in 0 163276 station_ip 5.119.68.191 163276 port 725 163276 unique_id port 163285 username hashtadani4 163285 mac 163285 bytes_out 0 163285 bytes_in 0 163285 station_ip 83.123.49.52 163285 port 727 163285 unique_id port 163285 remote_ip 10.8.0.182 163287 username tahmasebi 163287 kill_reason Maximum check online fails reached 163287 mac 163287 bytes_out 0 163287 bytes_in 0 163287 station_ip 5.119.68.191 163287 port 725 163287 unique_id port 163290 username tahmasebi 163290 kill_reason Maximum number of concurrent logins reached 163290 mac 163290 bytes_out 0 163290 bytes_in 0 163290 station_ip 5.119.68.191 163290 port 728 163290 unique_id port 163291 username hashtadani4 163291 mac 163291 bytes_out 0 163291 bytes_in 0 163291 station_ip 83.123.49.52 163291 port 728 163291 unique_id port 163291 remote_ip 10.8.0.182 163293 username tahmasebi 163293 kill_reason Maximum check online fails reached 163293 mac 163293 bytes_out 0 163293 bytes_in 0 163293 station_ip 5.119.68.191 163293 port 726 163293 unique_id port 163294 username tahmasebi 163294 kill_reason Maximum check online fails reached 163294 mac 163294 bytes_out 0 163294 bytes_in 0 163294 station_ip 5.119.68.191 163294 port 727 163294 unique_id port 163273 port 726 163273 unique_id port 163278 username hashtadani4 163278 mac 163278 bytes_out 0 163278 bytes_in 0 163278 station_ip 83.123.49.52 163278 port 726 163278 unique_id port 163278 remote_ip 10.8.0.182 163281 username tahmasebi 163281 kill_reason Maximum check online fails reached 163281 mac 163281 bytes_out 0 163281 bytes_in 0 163281 station_ip 5.119.68.191 163281 port 723 163281 unique_id port 163282 username hashtadani4 163282 mac 163282 bytes_out 0 163282 bytes_in 0 163282 station_ip 83.123.49.52 163282 port 727 163282 unique_id port 163282 remote_ip 10.8.0.182 163286 username tahmasebi 163286 kill_reason Maximum number of concurrent logins reached 163286 mac 163286 bytes_out 0 163286 bytes_in 0 163286 station_ip 5.119.68.191 163286 port 727 163286 unique_id port 163292 username tahmasebi 163292 kill_reason Maximum number of concurrent logins reached 163292 mac 163292 bytes_out 0 163292 bytes_in 0 163292 station_ip 5.119.68.191 163292 port 728 163292 unique_id port 163299 username milan 163299 mac 163299 bytes_out 0 163299 bytes_in 0 163299 station_ip 5.119.161.192 163299 port 710 163299 unique_id port 163300 username hashtadani4 163300 mac 163300 bytes_out 0 163300 bytes_in 0 163300 station_ip 83.123.49.52 163300 port 710 163300 unique_id port 163300 remote_ip 10.8.0.182 163303 username hashtadani4 163303 mac 163303 bytes_out 0 163303 bytes_in 0 163303 station_ip 83.123.49.52 163303 port 710 163303 unique_id port 163303 remote_ip 10.8.0.182 163307 username hashtadani4 163307 mac 163307 bytes_out 0 163307 bytes_in 0 163307 station_ip 83.123.49.52 163307 port 710 163307 unique_id port 163307 remote_ip 10.8.0.182 163310 username hashtadani4 163310 mac 163310 bytes_out 0 163310 bytes_in 0 163310 station_ip 83.123.49.52 163310 port 710 163310 unique_id port 163310 remote_ip 10.8.0.182 163312 username hashtadani4 163312 mac 163312 bytes_out 0 163312 bytes_in 0 163312 station_ip 83.123.49.52 163312 port 710 163312 unique_id port 163312 remote_ip 10.8.0.182 163313 username hashtadani4 163313 mac 163313 bytes_out 0 163313 bytes_in 0 163313 station_ip 83.123.49.52 163313 port 710 163313 unique_id port 163313 remote_ip 10.8.0.182 163316 username hashtadani4 163316 mac 163316 bytes_out 0 163316 bytes_in 0 163316 station_ip 83.123.49.52 163316 port 729 163316 unique_id port 163316 remote_ip 10.8.0.182 163319 username hashtadani4 163319 mac 163319 bytes_out 0 163319 bytes_in 0 163319 station_ip 83.123.49.52 163319 port 710 163319 unique_id port 163319 remote_ip 10.8.0.182 163320 username barzegar 163320 mac 163320 bytes_out 0 163320 bytes_in 0 163320 station_ip 5.119.87.5 163320 port 710 163320 unique_id port 163320 remote_ip 10.8.0.234 163321 username hashtadani4 163321 mac 163321 bytes_out 0 163321 bytes_in 0 163321 station_ip 83.123.49.52 163321 port 710 163321 unique_id port 163321 remote_ip 10.8.0.182 163323 username hashtadani4 163323 mac 163323 bytes_out 0 163323 bytes_in 0 163323 station_ip 83.123.49.52 163323 port 710 163323 unique_id port 163323 remote_ip 10.8.0.182 163324 username hashtadani4 163324 mac 163324 bytes_out 0 163324 bytes_in 0 163324 station_ip 83.123.49.52 163324 port 710 163324 unique_id port 163324 remote_ip 10.8.0.182 163326 username barzegar 163326 mac 163326 bytes_out 0 163326 bytes_in 0 163326 station_ip 5.119.87.5 163326 port 379 163326 unique_id port 163326 remote_ip 10.8.1.174 163328 username hashtadani4 163284 bytes_out 0 163284 bytes_in 0 163284 station_ip 5.119.68.191 163284 port 727 163284 unique_id port 163288 username hashtadani4 163288 kill_reason Maximum check online fails reached 163288 mac 163288 bytes_out 0 163288 bytes_in 0 163288 station_ip 83.123.49.52 163288 port 376 163288 unique_id port 163289 username hashtadani4 163289 mac 163289 bytes_out 0 163289 bytes_in 0 163289 station_ip 83.123.49.52 163289 port 728 163289 unique_id port 163289 remote_ip 10.8.0.182 163297 username tahmasebi 163297 kill_reason Maximum check online fails reached 163297 mac 163297 bytes_out 0 163297 bytes_in 0 163297 station_ip 5.119.68.191 163297 port 728 163297 unique_id port 163301 username hashtadani4 163301 mac 163301 bytes_out 0 163301 bytes_in 0 163301 station_ip 83.123.49.52 163301 port 710 163301 unique_id port 163301 remote_ip 10.8.0.182 163302 username hashtadani4 163302 mac 163302 bytes_out 0 163302 bytes_in 0 163302 station_ip 83.123.49.52 163302 port 710 163302 unique_id port 163302 remote_ip 10.8.0.182 163305 username hashtadani4 163305 mac 163305 bytes_out 0 163305 bytes_in 0 163305 station_ip 83.123.49.52 163305 port 710 163305 unique_id port 163305 remote_ip 10.8.0.182 163309 username hashtadani4 163309 mac 163309 bytes_out 0 163309 bytes_in 0 163309 station_ip 83.123.49.52 163309 port 710 163309 unique_id port 163309 remote_ip 10.8.0.182 163311 username hashtadani4 163311 mac 163311 bytes_out 0 163311 bytes_in 0 163311 station_ip 83.123.49.52 163311 port 710 163311 unique_id port 163311 remote_ip 10.8.0.182 163322 username hashtadani4 163322 mac 163322 bytes_out 0 163322 bytes_in 0 163322 station_ip 83.123.49.52 163322 port 710 163322 unique_id port 163322 remote_ip 10.8.0.182 163331 username hashtadani4 163331 mac 163331 bytes_out 0 163331 bytes_in 0 163331 station_ip 83.123.49.52 163331 port 729 163331 unique_id port 163331 remote_ip 10.8.0.182 163333 username hashtadani4 163333 mac 163333 bytes_out 0 163333 bytes_in 0 163333 station_ip 83.123.49.52 163333 port 379 163333 unique_id port 163333 remote_ip 10.8.1.142 163336 username hashtadani4 163336 mac 163336 bytes_out 0 163336 bytes_in 0 163336 station_ip 83.123.49.52 163336 port 710 163336 unique_id port 163336 remote_ip 10.8.0.182 163337 username hashtadani4 163337 mac 163337 bytes_out 0 163337 bytes_in 0 163337 station_ip 83.123.49.52 163337 port 710 163337 unique_id port 163337 remote_ip 10.8.0.182 163338 username hashtadani4 163338 mac 163338 bytes_out 0 163338 bytes_in 0 163338 station_ip 83.123.49.52 163338 port 379 163338 unique_id port 163338 remote_ip 10.8.1.142 163339 username hashtadani4 163339 mac 163339 bytes_out 0 163339 bytes_in 0 163339 station_ip 83.123.49.52 163339 port 729 163339 unique_id port 163339 remote_ip 10.8.0.182 163340 username barzegar 163340 mac 163340 bytes_out 0 163340 bytes_in 0 163340 station_ip 5.119.87.5 163340 port 710 163340 unique_id port 163340 remote_ip 10.8.0.234 163342 username hashtadani4 163342 mac 163342 bytes_out 0 163342 bytes_in 0 163342 station_ip 83.123.49.52 163342 port 710 163342 unique_id port 163342 remote_ip 10.8.0.182 163346 station_ip 83.123.49.52 163346 port 729 163346 unique_id port 163346 remote_ip 10.8.0.182 163348 username hashtadani4 163348 mac 163348 bytes_out 0 163348 bytes_in 0 163348 station_ip 83.123.49.52 163348 port 730 163348 unique_id port 163348 remote_ip 10.8.0.182 163349 username hashtadani4 163295 username hashtadani4 163295 mac 163295 bytes_out 0 163295 bytes_in 0 163295 station_ip 83.123.49.52 163295 port 729 163295 unique_id port 163295 remote_ip 10.8.0.182 163296 username tahmasebi 163296 mac 163296 bytes_out 0 163296 bytes_in 0 163296 station_ip 5.119.68.191 163296 port 378 163296 unique_id port 163296 remote_ip 10.8.1.90 163298 username hashtadani4 163298 mac 163298 bytes_out 0 163298 bytes_in 0 163298 station_ip 83.123.49.52 163298 port 729 163298 unique_id port 163298 remote_ip 10.8.0.182 163304 username barzegar 163304 mac 163304 bytes_out 0 163304 bytes_in 0 163304 station_ip 5.119.87.5 163304 port 379 163304 unique_id port 163304 remote_ip 10.8.1.174 163306 username hashtadani4 163306 mac 163306 bytes_out 0 163306 bytes_in 0 163306 station_ip 83.123.49.52 163306 port 710 163306 unique_id port 163306 remote_ip 10.8.0.182 163308 username hashtadani4 163308 mac 163308 bytes_out 0 163308 bytes_in 0 163308 station_ip 83.123.49.52 163308 port 710 163308 unique_id port 163308 remote_ip 10.8.0.182 163314 username hashtadani4 163314 mac 163314 bytes_out 0 163314 bytes_in 0 163314 station_ip 83.123.49.52 163314 port 379 163314 unique_id port 163314 remote_ip 10.8.1.142 163315 username hashtadani4 163315 mac 163315 bytes_out 0 163315 bytes_in 0 163315 station_ip 83.123.49.52 163315 port 729 163315 unique_id port 163315 remote_ip 10.8.0.182 163317 username barzegar 163317 mac 163317 bytes_out 0 163317 bytes_in 0 163317 station_ip 5.119.87.5 163317 port 710 163317 unique_id port 163317 remote_ip 10.8.0.234 163318 username hashtadani4 163318 mac 163318 bytes_out 0 163318 bytes_in 0 163318 station_ip 83.123.49.52 163318 port 710 163318 unique_id port 163318 remote_ip 10.8.0.182 163325 username hashtadani4 163325 mac 163325 bytes_out 0 163325 bytes_in 0 163325 station_ip 83.123.49.52 163325 port 710 163325 unique_id port 163325 remote_ip 10.8.0.182 163327 username hashtadani4 163327 mac 163327 bytes_out 0 163327 bytes_in 0 163327 station_ip 83.123.49.52 163327 port 710 163327 unique_id port 163327 remote_ip 10.8.0.182 163329 username hashtadani4 163329 mac 163329 bytes_out 0 163329 bytes_in 0 163329 station_ip 83.123.49.52 163329 port 710 163329 unique_id port 163329 remote_ip 10.8.0.182 163332 username hashtadani4 163332 mac 163332 bytes_out 0 163332 bytes_in 0 163332 station_ip 83.123.49.52 163332 port 710 163332 unique_id port 163332 remote_ip 10.8.0.182 163334 username hashtadani4 163334 mac 163334 bytes_out 0 163334 bytes_in 0 163334 station_ip 83.123.49.52 163334 port 710 163334 unique_id port 163334 remote_ip 10.8.0.182 163335 username hashtadani4 163335 mac 163335 bytes_out 0 163335 bytes_in 0 163335 station_ip 83.123.49.52 163335 port 710 163335 unique_id port 163335 remote_ip 10.8.0.182 163341 username hashtadani4 163341 mac 163341 bytes_out 0 163341 bytes_in 0 163341 station_ip 83.123.49.52 163341 port 729 163341 unique_id port 163341 remote_ip 10.8.0.182 163343 username hashtadani4 163343 mac 163343 bytes_out 0 163343 bytes_in 0 163343 station_ip 83.123.49.52 163343 port 710 163343 unique_id port 163343 remote_ip 10.8.0.182 163344 username hashtadani4 163344 mac 163344 bytes_out 0 163344 bytes_in 0 163344 station_ip 83.123.49.52 163344 port 710 163344 unique_id port 163344 remote_ip 10.8.0.182 163346 username hashtadani4 163346 mac 163346 bytes_out 0 163346 bytes_in 0 163328 mac 163328 bytes_out 0 163328 bytes_in 0 163328 station_ip 83.123.49.52 163328 port 710 163328 unique_id port 163328 remote_ip 10.8.0.182 163330 username hashtadani4 163330 mac 163330 bytes_out 0 163330 bytes_in 0 163330 station_ip 83.123.49.52 163330 port 710 163330 unique_id port 163330 remote_ip 10.8.0.182 163345 username hashtadani4 163345 mac 163345 bytes_out 0 163345 bytes_in 0 163345 station_ip 83.123.49.52 163345 port 729 163345 unique_id port 163345 remote_ip 10.8.0.182 163347 username rezaei 163347 mac 163347 bytes_out 320510 163347 bytes_in 2201518 163347 station_ip 5.119.53.117 163347 port 710 163347 unique_id port 163347 remote_ip 10.8.0.230 163349 mac 163349 bytes_out 0 163349 bytes_in 0 163349 station_ip 83.123.49.52 163349 port 710 163349 unique_id port 163349 remote_ip 10.8.0.182 163350 username hashtadani4 163350 mac 163350 bytes_out 0 163350 bytes_in 0 163350 station_ip 83.123.49.52 163350 port 710 163350 unique_id port 163350 remote_ip 10.8.0.182 163351 username barzegar 163351 mac 163351 bytes_out 0 163351 bytes_in 0 163351 station_ip 5.119.87.5 163351 port 710 163351 unique_id port 163351 remote_ip 10.8.0.234 163352 username hashtadani4 163352 mac 163352 bytes_out 0 163352 bytes_in 0 163352 station_ip 83.123.49.52 163352 port 710 163352 unique_id port 163352 remote_ip 10.8.0.182 163353 username hashtadani4 163353 mac 163353 bytes_out 0 163353 bytes_in 0 163353 station_ip 83.123.49.52 163353 port 710 163353 unique_id port 163353 remote_ip 10.8.0.182 163354 username hashtadani4 163354 mac 163354 bytes_out 0 163354 bytes_in 0 163354 station_ip 83.123.49.52 163354 port 710 163354 unique_id port 163354 remote_ip 10.8.0.182 163355 username hashtadani4 163355 mac 163355 bytes_out 0 163355 bytes_in 0 163355 station_ip 83.123.49.52 163355 port 710 163355 unique_id port 163355 remote_ip 10.8.0.182 163356 username hashtadani4 163356 mac 163356 bytes_out 0 163356 bytes_in 0 163356 station_ip 83.123.49.52 163356 port 710 163356 unique_id port 163356 remote_ip 10.8.0.182 163357 username hashtadani4 163357 mac 163357 bytes_out 0 163357 bytes_in 0 163357 station_ip 83.123.49.52 163357 port 710 163357 unique_id port 163357 remote_ip 10.8.0.182 163358 username hashtadani4 163358 mac 163358 bytes_out 0 163358 bytes_in 0 163358 station_ip 83.123.49.52 163358 port 710 163358 unique_id port 163358 remote_ip 10.8.0.182 163359 username hashtadani4 163359 mac 163359 bytes_out 0 163359 bytes_in 0 163359 station_ip 83.123.49.52 163359 port 710 163359 unique_id port 163359 remote_ip 10.8.0.182 163360 username hashtadani4 163360 mac 163360 bytes_out 0 163360 bytes_in 0 163360 station_ip 83.123.49.52 163360 port 710 163360 unique_id port 163360 remote_ip 10.8.0.182 163361 username barzegar 163361 mac 163361 bytes_out 0 163361 bytes_in 0 163361 station_ip 5.119.87.5 163361 port 710 163361 unique_id port 163361 remote_ip 10.8.0.234 163362 username hashtadani4 163362 mac 163362 bytes_out 0 163362 bytes_in 0 163362 station_ip 83.123.49.52 163362 port 710 163362 unique_id port 163362 remote_ip 10.8.0.182 163363 username hashtadani4 163363 mac 163363 bytes_out 0 163363 bytes_in 0 163363 station_ip 83.123.49.52 163363 port 710 163363 unique_id port 163363 remote_ip 10.8.0.182 163364 username hashtadani4 163364 mac 163364 bytes_out 0 163364 bytes_in 0 163364 station_ip 83.123.49.52 163364 port 729 163364 unique_id port 163364 remote_ip 10.8.0.182 163367 username hashtadani4 163367 mac 163367 bytes_out 0 163367 bytes_in 0 163367 station_ip 83.123.49.52 163367 port 710 163367 unique_id port 163367 remote_ip 10.8.0.182 163372 username hashtadani4 163372 mac 163372 bytes_out 0 163372 bytes_in 0 163372 station_ip 83.123.49.52 163372 port 380 163372 unique_id port 163372 remote_ip 10.8.1.142 163376 username hashtadani4 163376 mac 163376 bytes_out 0 163376 bytes_in 0 163376 station_ip 83.123.49.52 163376 port 710 163376 unique_id port 163376 remote_ip 10.8.0.182 163379 username hashtadani4 163379 mac 163379 bytes_out 0 163379 bytes_in 0 163379 station_ip 83.123.49.52 163379 port 710 163379 unique_id port 163379 remote_ip 10.8.0.182 163380 username hashtadani4 163380 mac 163380 bytes_out 0 163380 bytes_in 0 163380 station_ip 83.123.49.52 163380 port 380 163380 unique_id port 163380 remote_ip 10.8.1.142 163382 username hashtadani4 163382 mac 163382 bytes_out 0 163382 bytes_in 0 163382 station_ip 83.123.49.52 163382 port 710 163382 unique_id port 163382 remote_ip 10.8.0.182 163397 username hashtadani4 163397 mac 163397 bytes_out 0 163397 bytes_in 0 163397 station_ip 83.123.49.52 163397 port 378 163397 unique_id port 163397 remote_ip 10.8.1.142 163401 username hashtadani4 163401 mac 163401 bytes_out 0 163401 bytes_in 0 163401 station_ip 83.123.49.52 163401 port 710 163401 unique_id port 163401 remote_ip 10.8.0.182 163404 username barzegar 163404 mac 163404 bytes_out 0 163404 bytes_in 0 163404 station_ip 5.119.87.5 163404 port 380 163404 unique_id port 163404 remote_ip 10.8.1.174 163406 username hashtadani4 163406 kill_reason Maximum check online fails reached 163406 mac 163406 bytes_out 0 163406 bytes_in 0 163406 station_ip 83.123.49.52 163406 port 378 163406 unique_id port 163407 username hashtadani4 163407 mac 163407 bytes_out 0 163407 bytes_in 0 163407 station_ip 83.123.49.52 163407 port 703 163407 unique_id port 163407 remote_ip 10.8.0.182 163410 username hashtadani4 163410 mac 163410 bytes_out 0 163410 bytes_in 0 163410 station_ip 83.123.49.52 163410 port 703 163410 unique_id port 163410 remote_ip 10.8.0.182 163418 username hashtadani4 163418 mac 163418 bytes_out 0 163418 bytes_in 0 163418 station_ip 83.123.49.52 163418 port 380 163418 unique_id port 163418 remote_ip 10.8.1.142 163419 username hashtadani4 163419 mac 163419 bytes_out 0 163419 bytes_in 0 163419 station_ip 83.123.49.52 163419 port 703 163419 unique_id port 163419 remote_ip 10.8.0.182 163425 username mohammadjavad 163425 mac 163425 bytes_out 0 163425 bytes_in 0 163425 station_ip 83.122.135.0 163425 port 710 163425 unique_id port 163425 remote_ip 10.8.0.142 163426 username hashtadani4 163426 mac 163426 bytes_out 0 163426 bytes_in 0 163426 station_ip 83.123.49.52 163426 port 703 163426 unique_id port 163426 remote_ip 10.8.0.182 163431 username hashtadani4 163431 mac 163431 bytes_out 0 163431 bytes_in 0 163431 station_ip 83.123.49.52 163431 port 703 163431 unique_id port 163431 remote_ip 10.8.0.182 163432 username hashtadani4 163432 mac 163432 bytes_out 0 163432 bytes_in 0 163432 station_ip 83.123.49.52 163432 port 703 163432 unique_id port 163432 remote_ip 10.8.0.182 163433 username barzegar 163433 mac 163433 bytes_out 0 163433 bytes_in 0 163433 station_ip 5.119.87.5 163433 port 703 163433 unique_id port 163433 remote_ip 10.8.0.234 163437 username hashtadani4 163365 username hashtadani4 163365 mac 163365 bytes_out 0 163365 bytes_in 0 163365 station_ip 83.123.49.52 163365 port 710 163365 unique_id port 163365 remote_ip 10.8.0.182 163368 username hashtadani4 163368 mac 163368 bytes_out 0 163368 bytes_in 0 163368 station_ip 83.123.49.52 163368 port 380 163368 unique_id port 163368 remote_ip 10.8.1.142 163374 username hashtadani4 163374 mac 163374 bytes_out 0 163374 bytes_in 0 163374 station_ip 83.123.49.52 163374 port 710 163374 unique_id port 163374 remote_ip 10.8.0.182 163375 username hashtadani4 163375 mac 163375 bytes_out 0 163375 bytes_in 0 163375 station_ip 83.123.49.52 163375 port 710 163375 unique_id port 163375 remote_ip 10.8.0.182 163377 username hashtadani4 163377 mac 163377 bytes_out 0 163377 bytes_in 0 163377 station_ip 83.123.49.52 163377 port 710 163377 unique_id port 163377 remote_ip 10.8.0.182 163384 username hashtadani4 163384 mac 163384 bytes_out 0 163384 bytes_in 0 163384 station_ip 83.123.49.52 163384 port 710 163384 unique_id port 163384 remote_ip 10.8.0.182 163385 username hashtadani4 163385 mac 163385 bytes_out 0 163385 bytes_in 0 163385 station_ip 83.123.49.52 163385 port 710 163385 unique_id port 163385 remote_ip 10.8.0.182 163388 username shahrooz 163388 kill_reason Relative expiration date has reached 163388 unique_id port 163388 bytes_out 0 163388 bytes_in 0 163388 station_ip 83.122.69.3 163388 port 15728659 163388 nas_port_type Virtual 163389 username tahmasebi 163389 mac 163389 bytes_out 0 163389 bytes_in 0 163389 station_ip 5.119.68.191 163389 port 710 163389 unique_id port 163389 remote_ip 10.8.0.42 163392 username hashtadani4 163392 mac 163392 bytes_out 0 163392 bytes_in 0 163392 station_ip 83.123.49.52 163392 port 710 163392 unique_id port 163392 remote_ip 10.8.0.182 163395 username hashtadani4 163395 mac 163395 bytes_out 0 163395 bytes_in 0 163395 station_ip 83.123.49.52 163395 port 710 163395 unique_id port 163395 remote_ip 10.8.0.182 163396 username hashtadani4 163396 mac 163396 bytes_out 0 163396 bytes_in 0 163396 station_ip 83.123.49.52 163396 port 378 163396 unique_id port 163396 remote_ip 10.8.1.142 163398 username tahmasebi 163398 mac 163398 bytes_out 0 163398 bytes_in 0 163398 station_ip 5.119.68.191 163398 port 378 163398 unique_id port 163398 remote_ip 10.8.1.90 163399 username hashtadani4 163399 mac 163399 bytes_out 0 163399 bytes_in 0 163399 station_ip 83.123.49.52 163399 port 710 163399 unique_id port 163399 remote_ip 10.8.0.182 163402 username hashtadani4 163402 mac 163402 bytes_out 0 163402 bytes_in 0 163402 station_ip 83.123.49.52 163402 port 703 163402 unique_id port 163402 remote_ip 10.8.0.182 163403 username hashtadani4 163403 mac 163403 bytes_out 0 163403 bytes_in 0 163403 station_ip 83.123.49.52 163403 port 703 163403 unique_id port 163403 remote_ip 10.8.0.182 163411 username hashtadani4 163411 mac 163411 bytes_out 0 163411 bytes_in 0 163411 station_ip 83.123.49.52 163411 port 703 163411 unique_id port 163411 remote_ip 10.8.0.182 163412 username tahmasebi 163412 mac 163412 bytes_out 0 163412 bytes_in 0 163412 station_ip 5.119.68.191 163412 port 380 163412 unique_id port 163412 remote_ip 10.8.1.90 163413 username hashtadani4 163413 mac 163413 bytes_out 0 163413 bytes_in 0 163413 station_ip 83.123.49.52 163413 port 703 163413 unique_id port 163413 remote_ip 10.8.0.182 163414 username hashtadani4 163414 mac 163414 bytes_out 0 163366 username hashtadani4 163366 kill_reason Maximum check online fails reached 163366 mac 163366 bytes_out 0 163366 bytes_in 0 163366 station_ip 83.123.49.52 163366 port 379 163366 unique_id port 163369 username hashtadani4 163369 mac 163369 bytes_out 0 163369 bytes_in 0 163369 station_ip 83.123.49.52 163369 port 380 163369 unique_id port 163369 remote_ip 10.8.1.142 163370 username hashtadani4 163370 mac 163370 bytes_out 0 163370 bytes_in 0 163370 station_ip 83.123.49.52 163370 port 710 163370 unique_id port 163370 remote_ip 10.8.0.182 163371 username hashtadani4 163371 mac 163371 bytes_out 0 163371 bytes_in 0 163371 station_ip 83.123.49.52 163371 port 380 163371 unique_id port 163371 remote_ip 10.8.1.142 163373 username barzegar 163373 mac 163373 bytes_out 0 163373 bytes_in 0 163373 station_ip 5.119.87.5 163373 port 380 163373 unique_id port 163373 remote_ip 10.8.1.174 163378 username hashtadani4 163378 mac 163378 bytes_out 0 163378 bytes_in 0 163378 station_ip 83.123.49.52 163378 port 380 163378 unique_id port 163378 remote_ip 10.8.1.142 163381 username tahmasebi 163381 mac 163381 bytes_out 84468 163381 bytes_in 144999 163381 station_ip 5.119.68.191 163381 port 378 163381 unique_id port 163381 remote_ip 10.8.1.90 163383 username hashtadani4 163383 mac 163383 bytes_out 0 163383 bytes_in 0 163383 station_ip 83.123.49.52 163383 port 710 163383 unique_id port 163383 remote_ip 10.8.0.182 163386 username barzegar 163386 mac 163386 bytes_out 0 163386 bytes_in 0 163386 station_ip 5.119.87.5 163386 port 378 163386 unique_id port 163386 remote_ip 10.8.1.174 163387 username hashtadani4 163387 mac 163387 bytes_out 0 163387 bytes_in 0 163387 station_ip 83.123.49.52 163387 port 710 163387 unique_id port 163387 remote_ip 10.8.0.182 163390 username hashtadani4 163390 mac 163390 bytes_out 0 163390 bytes_in 0 163390 station_ip 83.123.49.52 163390 port 378 163390 unique_id port 163390 remote_ip 10.8.1.142 163391 username hashtadani4 163391 mac 163391 bytes_out 0 163391 bytes_in 0 163391 station_ip 83.123.49.52 163391 port 710 163391 unique_id port 163391 remote_ip 10.8.0.182 163393 username barzegar 163393 mac 163393 bytes_out 0 163393 bytes_in 0 163393 station_ip 5.119.87.5 163393 port 378 163393 unique_id port 163393 remote_ip 10.8.1.174 163394 username hashtadani4 163394 mac 163394 bytes_out 548690 163394 bytes_in 3658897 163394 station_ip 83.123.49.52 163394 port 710 163394 unique_id port 163394 remote_ip 10.8.0.182 163400 username mosi 163400 mac 163400 bytes_out 0 163400 bytes_in 0 163400 station_ip 151.235.120.66 163400 port 703 163400 unique_id port 163405 username hashtadani4 163405 mac 163405 bytes_out 0 163405 bytes_in 0 163405 station_ip 83.123.49.52 163405 port 703 163405 unique_id port 163405 remote_ip 10.8.0.182 163408 username mohammadjavad 163408 kill_reason Maximum check online fails reached 163408 mac 163408 bytes_out 876948 163408 bytes_in 19165875 163408 station_ip 113.203.109.254 163408 port 729 163408 unique_id port 163408 remote_ip 10.8.0.142 163409 username hashtadani4 163409 mac 163409 bytes_out 0 163409 bytes_in 0 163409 station_ip 83.123.49.52 163409 port 703 163409 unique_id port 163409 remote_ip 10.8.0.182 163415 username barzegar 163415 mac 163415 bytes_out 0 163415 bytes_in 0 163415 station_ip 5.119.87.5 163415 port 380 163415 unique_id port 163415 remote_ip 10.8.1.174 163416 username hashtadani4 163416 mac 163414 bytes_in 0 163414 station_ip 83.123.49.52 163414 port 703 163414 unique_id port 163414 remote_ip 10.8.0.182 163421 username hashtadani4 163421 mac 163421 bytes_out 0 163421 bytes_in 0 163421 station_ip 83.123.49.52 163421 port 703 163421 unique_id port 163421 remote_ip 10.8.0.182 163422 username tahmasebi 163422 mac 163422 bytes_out 0 163422 bytes_in 0 163422 station_ip 5.119.68.191 163422 port 380 163422 unique_id port 163422 remote_ip 10.8.1.90 163423 username hashtadani4 163423 mac 163423 bytes_out 0 163423 bytes_in 0 163423 station_ip 83.123.49.52 163423 port 703 163423 unique_id port 163423 remote_ip 10.8.0.182 163424 username hashtadani4 163424 mac 163424 bytes_out 0 163424 bytes_in 0 163424 station_ip 83.123.49.52 163424 port 380 163424 unique_id port 163424 remote_ip 10.8.1.142 163427 username barzegar 163427 mac 163427 bytes_out 0 163427 bytes_in 0 163427 station_ip 5.119.87.5 163427 port 380 163427 unique_id port 163427 remote_ip 10.8.1.174 163429 username hashtadani4 163429 mac 163429 bytes_out 0 163429 bytes_in 0 163429 station_ip 83.123.49.52 163429 port 703 163429 unique_id port 163429 remote_ip 10.8.0.182 163430 username hashtadani4 163430 mac 163430 bytes_out 0 163430 bytes_in 0 163430 station_ip 83.123.49.52 163430 port 703 163430 unique_id port 163430 remote_ip 10.8.0.182 163434 username tahmasebi 163434 mac 163434 bytes_out 0 163434 bytes_in 0 163434 station_ip 5.119.68.191 163434 port 703 163434 unique_id port 163434 remote_ip 10.8.0.42 163435 username hashtadani4 163435 mac 163435 bytes_out 0 163435 bytes_in 0 163435 station_ip 83.123.49.52 163435 port 380 163435 unique_id port 163435 remote_ip 10.8.1.142 163436 username hashtadani4 163436 mac 163436 bytes_out 0 163436 bytes_in 0 163436 station_ip 83.123.49.52 163436 port 380 163436 unique_id port 163436 remote_ip 10.8.1.142 163446 username barzegar 163446 mac 163446 bytes_out 0 163446 bytes_in 0 163446 station_ip 5.119.87.5 163446 port 729 163446 unique_id port 163446 remote_ip 10.8.0.234 163447 username hashtadani4 163447 mac 163447 bytes_out 0 163447 bytes_in 0 163447 station_ip 83.123.49.52 163447 port 729 163447 unique_id port 163447 remote_ip 10.8.0.182 163449 username sabaghnezhad 163449 mac 163449 bytes_out 0 163449 bytes_in 0 163449 station_ip 83.122.70.242 163449 port 729 163449 unique_id port 163449 remote_ip 10.8.0.186 163454 username nilufarrajaei 163454 kill_reason Another user logged on this global unique id 163454 mac 163454 bytes_out 0 163454 bytes_in 0 163454 station_ip 83.123.151.0 163454 port 696 163454 unique_id port 163456 username hashtadani4 163456 mac 163456 bytes_out 0 163456 bytes_in 0 163456 station_ip 83.123.49.52 163456 port 729 163456 unique_id port 163456 remote_ip 10.8.0.182 163459 username hashtadani4 163459 mac 163459 bytes_out 0 163459 bytes_in 0 163459 station_ip 83.123.49.52 163459 port 729 163459 unique_id port 163459 remote_ip 10.8.0.182 163462 username hashtadani4 163462 mac 163462 bytes_out 0 163462 bytes_in 0 163462 station_ip 83.123.49.52 163462 port 677 163462 unique_id port 163462 remote_ip 10.8.0.182 163464 username jafari 163464 kill_reason Another user logged on this global unique id 163464 mac 163464 bytes_out 0 163464 bytes_in 0 163464 station_ip 5.134.143.111 163464 port 730 163464 unique_id port 163464 remote_ip 10.8.0.242 163465 username hashtadani4 163465 mac 163465 bytes_out 0 163465 bytes_in 0 163416 bytes_out 0 163416 bytes_in 0 163416 station_ip 83.123.49.52 163416 port 380 163416 unique_id port 163416 remote_ip 10.8.1.142 163417 username hashtadani4 163417 mac 163417 bytes_out 0 163417 bytes_in 0 163417 station_ip 83.123.49.52 163417 port 703 163417 unique_id port 163417 remote_ip 10.8.0.182 163420 username hashtadani4 163420 mac 163420 bytes_out 0 163420 bytes_in 0 163420 station_ip 83.123.49.52 163420 port 703 163420 unique_id port 163420 remote_ip 10.8.0.182 163428 username hashtadani4 163428 mac 163428 bytes_out 0 163428 bytes_in 0 163428 station_ip 83.123.49.52 163428 port 703 163428 unique_id port 163428 remote_ip 10.8.0.182 163441 username hashtadani4 163441 mac 163441 bytes_out 0 163441 bytes_in 0 163441 station_ip 83.123.49.52 163441 port 729 163441 unique_id port 163441 remote_ip 10.8.0.182 163442 username hashtadani4 163442 mac 163442 bytes_out 0 163442 bytes_in 0 163442 station_ip 83.123.49.52 163442 port 729 163442 unique_id port 163442 remote_ip 10.8.0.182 163443 username hashtadani4 163443 mac 163443 bytes_out 0 163443 bytes_in 0 163443 station_ip 83.123.49.52 163443 port 730 163443 unique_id port 163443 remote_ip 10.8.0.182 163444 username houshang 163444 mac 163444 bytes_out 0 163444 bytes_in 0 163444 station_ip 5.120.125.144 163444 port 729 163444 unique_id port 163444 remote_ip 10.8.0.134 163445 username hashtadani4 163445 mac 163445 bytes_out 0 163445 bytes_in 0 163445 station_ip 83.123.49.52 163445 port 729 163445 unique_id port 163445 remote_ip 10.8.0.182 163450 username hashtadani4 163450 mac 163450 bytes_out 0 163450 bytes_in 0 163450 station_ip 83.123.49.52 163450 port 380 163450 unique_id port 163450 remote_ip 10.8.1.142 163451 username barzegar 163451 mac 163451 bytes_out 0 163451 bytes_in 0 163451 station_ip 5.119.87.5 163451 port 677 163451 unique_id port 163451 remote_ip 10.8.0.234 163452 username hashtadani4 163452 mac 163452 bytes_out 0 163452 bytes_in 0 163452 station_ip 83.123.49.52 163452 port 381 163452 unique_id port 163452 remote_ip 10.8.1.142 163457 username hashtadani4 163457 mac 163457 bytes_out 0 163457 bytes_in 0 163457 station_ip 83.123.49.52 163457 port 729 163457 unique_id port 163457 remote_ip 10.8.0.182 163460 username sedighe 163460 mac 163460 bytes_out 480230 163460 bytes_in 3515219 163460 station_ip 83.122.116.155 163460 port 677 163460 unique_id port 163460 remote_ip 10.8.0.146 163461 username barzegar 163461 mac 163461 bytes_out 0 163461 bytes_in 0 163461 station_ip 5.119.87.5 163461 port 677 163461 unique_id port 163461 remote_ip 10.8.0.234 163463 username aminvpn 163463 mac 163463 bytes_out 1198713 163463 bytes_in 7564675 163463 station_ip 5.119.210.94 163463 port 365 163463 unique_id port 163463 remote_ip 10.8.1.6 163467 username hashtadani4 163467 mac 163467 bytes_out 0 163467 bytes_in 0 163467 station_ip 83.123.49.52 163467 port 677 163467 unique_id port 163467 remote_ip 10.8.0.182 163469 username sabaghnezhad 163469 mac 163469 bytes_out 36889 163469 bytes_in 55588 163469 station_ip 83.122.70.242 163469 port 380 163469 unique_id port 163469 remote_ip 10.8.1.130 163471 username sabaghnezhad 163471 kill_reason Another user logged on this global unique id 163471 mac 163471 bytes_out 0 163471 bytes_in 0 163471 station_ip 83.122.19.152 163471 port 365 163471 unique_id port 163472 username hashtadani4 163472 kill_reason Another user logged on this global unique id 163472 mac 163437 mac 163437 bytes_out 0 163437 bytes_in 0 163437 station_ip 83.123.49.52 163437 port 703 163437 unique_id port 163437 remote_ip 10.8.0.182 163438 username hashtadani4 163438 mac 163438 bytes_out 0 163438 bytes_in 0 163438 station_ip 83.123.49.52 163438 port 710 163438 unique_id port 163438 remote_ip 10.8.0.182 163439 username hashtadani4 163439 mac 163439 bytes_out 0 163439 bytes_in 0 163439 station_ip 83.123.49.52 163439 port 710 163439 unique_id port 163439 remote_ip 10.8.0.182 163440 username barzegar 163440 mac 163440 bytes_out 0 163440 bytes_in 0 163440 station_ip 5.119.87.5 163440 port 380 163440 unique_id port 163440 remote_ip 10.8.1.174 163448 username sabaghnezhad 163448 mac 163448 bytes_out 0 163448 bytes_in 0 163448 station_ip 83.122.70.242 163448 port 677 163448 unique_id port 163448 remote_ip 10.8.0.186 163453 username hashtadani4 163453 mac 163453 bytes_out 0 163453 bytes_in 0 163453 station_ip 83.123.49.52 163453 port 729 163453 unique_id port 163453 remote_ip 10.8.0.182 163455 username hashtadani4 163455 mac 163455 bytes_out 0 163455 bytes_in 0 163455 station_ip 83.123.49.52 163455 port 729 163455 unique_id port 163455 remote_ip 10.8.0.182 163458 username hashtadani4 163458 mac 163458 bytes_out 0 163458 bytes_in 0 163458 station_ip 83.123.49.52 163458 port 729 163458 unique_id port 163458 remote_ip 10.8.0.182 163473 username sabaghnezhad 163473 kill_reason Maximum check online fails reached 163473 mac 163473 bytes_out 0 163473 bytes_in 0 163473 station_ip 83.122.19.152 163473 port 365 163473 unique_id port 163476 username tahmasebi 163476 mac 163476 bytes_out 63896 163476 bytes_in 173425 163476 station_ip 5.119.68.191 163476 port 703 163476 unique_id port 163476 remote_ip 10.8.0.42 163477 username barzegar 163477 mac 163477 bytes_out 0 163477 bytes_in 0 163477 station_ip 5.119.87.5 163477 port 703 163477 unique_id port 163477 remote_ip 10.8.0.234 163479 username mohammadjavad 163479 mac 163479 bytes_out 0 163479 bytes_in 0 163479 station_ip 83.122.14.73 163479 port 710 163479 unique_id port 163479 remote_ip 10.8.0.142 163482 username pourshad 163482 mac 163482 bytes_out 588725 163482 bytes_in 4497832 163482 station_ip 5.119.118.121 163482 port 381 163482 unique_id port 163482 remote_ip 10.8.1.154 163485 username jafari 163485 kill_reason Another user logged on this global unique id 163485 mac 163485 bytes_out 0 163485 bytes_in 0 163485 station_ip 5.134.143.111 163485 port 730 163485 unique_id port 163486 username hashtadani4 163486 mac 163486 bytes_out 0 163486 bytes_in 0 163486 station_ip 83.123.49.52 163486 port 710 163486 unique_id port 163486 remote_ip 10.8.0.182 163488 username barzegar 163488 mac 163488 bytes_out 0 163488 bytes_in 0 163488 station_ip 5.119.87.5 163488 port 710 163488 unique_id port 163488 remote_ip 10.8.0.234 163489 username jafari 163489 mac 163489 bytes_out 0 163489 bytes_in 0 163489 station_ip 5.134.143.111 163489 port 730 163489 unique_id port 163491 username hashtadani4 163491 mac 163491 bytes_out 0 163491 bytes_in 0 163491 station_ip 83.123.49.52 163491 port 710 163491 unique_id port 163491 remote_ip 10.8.0.182 163492 username hashtadani4 163492 mac 163492 bytes_out 0 163492 bytes_in 0 163492 station_ip 83.123.49.52 163492 port 710 163492 unique_id port 163492 remote_ip 10.8.0.182 163494 username hashtadani4 163494 mac 163494 bytes_out 0 163494 bytes_in 0 163465 station_ip 83.123.49.52 163465 port 677 163465 unique_id port 163465 remote_ip 10.8.0.182 163466 username shadkam 163466 mac 163466 bytes_out 787836 163466 bytes_in 6682574 163466 station_ip 83.123.85.32 163466 port 365 163466 unique_id port 163466 remote_ip 10.8.1.218 163468 username barzegar 163468 mac 163468 bytes_out 0 163468 bytes_in 0 163468 station_ip 5.119.87.5 163468 port 365 163468 unique_id port 163468 remote_ip 10.8.1.174 163470 username hashtadani4 163470 kill_reason Another user logged on this global unique id 163470 mac 163470 bytes_out 0 163470 bytes_in 0 163470 station_ip 83.123.49.52 163470 port 731 163470 unique_id port 163475 username hashtadani4 163475 mac 163475 bytes_out 0 163475 bytes_in 0 163475 station_ip 83.123.49.52 163475 port 729 163475 unique_id port 163475 remote_ip 10.8.0.182 163478 username hashtadani4 163478 mac 163478 bytes_out 1644 163478 bytes_in 5023 163478 station_ip 83.123.49.52 163478 port 703 163478 unique_id port 163478 remote_ip 10.8.0.182 163481 username hashtadani4 163481 mac 163481 bytes_out 0 163481 bytes_in 0 163481 station_ip 83.123.49.52 163481 port 710 163481 unique_id port 163481 remote_ip 10.8.0.182 163483 username hashtadani4 163483 kill_reason Maximum check online fails reached 163483 mac 163483 bytes_out 0 163483 bytes_in 0 163483 station_ip 83.123.49.52 163483 port 703 163483 unique_id port 163487 username hashtadani4 163487 mac 163487 bytes_out 0 163487 bytes_in 0 163487 station_ip 83.123.49.52 163487 port 710 163487 unique_id port 163487 remote_ip 10.8.0.182 163495 username barzegar 163495 mac 163495 bytes_out 0 163495 bytes_in 0 163495 station_ip 5.119.87.5 163495 port 365 163495 unique_id port 163495 remote_ip 10.8.1.174 163496 username hashtadani4 163496 mac 163496 bytes_out 0 163496 bytes_in 0 163496 station_ip 83.123.49.52 163496 port 729 163496 unique_id port 163496 remote_ip 10.8.0.182 163502 username barzegar 163502 mac 163502 bytes_out 193110 163502 bytes_in 1171151 163502 station_ip 5.119.87.5 163502 port 365 163502 unique_id port 163502 remote_ip 10.8.1.174 163506 username barzegar 163506 mac 163506 bytes_out 0 163506 bytes_in 0 163506 station_ip 5.119.87.5 163506 port 365 163506 unique_id port 163506 remote_ip 10.8.1.174 163511 username zotaher 163511 mac 163511 bytes_out 110151 163511 bytes_in 952128 163511 station_ip 83.122.118.229 163511 port 677 163511 unique_id port 163511 remote_ip 10.8.0.194 163515 username pourshad 163515 mac 163515 bytes_out 0 163515 bytes_in 0 163515 station_ip 5.119.173.238 163515 port 380 163515 unique_id port 163515 remote_ip 10.8.1.154 163519 username hashtadani4 163519 mac 163519 bytes_out 0 163519 bytes_in 0 163519 station_ip 83.123.49.52 163519 port 710 163519 unique_id port 163519 remote_ip 10.8.0.182 163525 username barzegar 163525 kill_reason Another user logged on this global unique id 163525 mac 163525 bytes_out 0 163525 bytes_in 0 163525 station_ip 5.119.87.5 163525 port 710 163525 unique_id port 163525 remote_ip 10.8.0.234 163527 username forozandeh1 163527 mac 163527 bytes_out 298765 163527 bytes_in 2038701 163527 station_ip 83.123.251.34 163527 port 730 163527 unique_id port 163527 remote_ip 10.8.0.130 163528 username hashtadani4 163528 mac 163528 bytes_out 0 163528 bytes_in 0 163528 station_ip 83.123.49.52 163528 port 730 163528 unique_id port 163528 remote_ip 10.8.0.182 163533 username hashtadani4 163533 mac 163533 bytes_out 0 163472 bytes_out 0 163472 bytes_in 0 163472 station_ip 83.123.49.52 163472 port 731 163472 unique_id port 163474 username yaghobi 163474 mac 163474 bytes_out 0 163474 bytes_in 0 163474 station_ip 83.122.30.187 163474 port 729 163474 unique_id port 163474 remote_ip 10.8.0.198 163480 username hashtadani4 163480 mac 163480 bytes_out 0 163480 bytes_in 0 163480 station_ip 83.123.49.52 163480 port 703 163480 unique_id port 163480 remote_ip 10.8.0.182 163484 username nilufarrajaei 163484 kill_reason Another user logged on this global unique id 163484 mac 163484 bytes_out 0 163484 bytes_in 0 163484 station_ip 83.123.151.0 163484 port 696 163484 unique_id port 163490 username nilufarrajaei 163490 kill_reason Another user logged on this global unique id 163490 mac 163490 bytes_out 0 163490 bytes_in 0 163490 station_ip 83.123.151.0 163490 port 696 163490 unique_id port 163493 username nilufarrajaei 163493 kill_reason Another user logged on this global unique id 163493 mac 163493 bytes_out 0 163493 bytes_in 0 163493 station_ip 83.123.151.0 163493 port 696 163493 unique_id port 163498 username kalantary 163498 mac 163498 bytes_out 0 163498 bytes_in 0 163498 station_ip 83.122.48.125 163498 port 677 163498 unique_id port 163498 remote_ip 10.8.0.98 163500 username hashtadani4 163500 mac 163500 bytes_out 0 163500 bytes_in 0 163500 station_ip 83.123.49.52 163500 port 710 163500 unique_id port 163500 remote_ip 10.8.0.182 163505 username rezaei 163505 mac 163505 bytes_out 1408954 163505 bytes_in 15570609 163505 station_ip 5.119.53.117 163505 port 710 163505 unique_id port 163505 remote_ip 10.8.0.230 163507 username hashtadani4 163507 mac 163507 bytes_out 0 163507 bytes_in 0 163507 station_ip 83.123.49.52 163507 port 677 163507 unique_id port 163507 remote_ip 10.8.0.182 163508 username hashtadani4 163508 mac 163508 bytes_out 0 163508 bytes_in 0 163508 station_ip 83.123.49.52 163508 port 710 163508 unique_id port 163508 remote_ip 10.8.0.182 163509 username sekonji3 163509 mac 163509 bytes_out 0 163509 bytes_in 0 163509 station_ip 83.122.57.113 163509 port 710 163509 unique_id port 163509 remote_ip 10.8.0.6 163510 username barzegar 163510 mac 163510 bytes_out 0 163510 bytes_in 0 163510 station_ip 5.119.87.5 163510 port 710 163510 unique_id port 163510 remote_ip 10.8.0.234 163512 username hashtadani4 163512 mac 163512 bytes_out 0 163512 bytes_in 0 163512 station_ip 83.123.49.52 163512 port 677 163512 unique_id port 163512 remote_ip 10.8.0.182 163513 username yaghobi 163513 mac 163513 bytes_out 0 163513 bytes_in 0 163513 station_ip 83.123.77.20 163513 port 365 163513 unique_id port 163513 remote_ip 10.8.1.118 163516 username hashtadani4 163516 mac 163516 bytes_out 0 163516 bytes_in 0 163516 station_ip 83.123.49.52 163516 port 677 163516 unique_id port 163516 remote_ip 10.8.0.182 163517 username sabaghnezhad 163517 mac 163517 bytes_out 0 163517 bytes_in 0 163517 station_ip 83.122.19.152 163517 port 731 163517 unique_id port 163517 remote_ip 10.8.0.186 163522 username hashtadani4 163522 mac 163522 bytes_out 0 163522 bytes_in 0 163522 station_ip 83.123.49.52 163522 port 730 163522 unique_id port 163522 remote_ip 10.8.0.182 163523 username hashtadani4 163523 mac 163523 bytes_out 0 163523 bytes_in 0 163523 station_ip 83.123.49.52 163523 port 731 163523 unique_id port 163523 remote_ip 10.8.0.182 163526 username nilufarrajaei 163526 kill_reason Another user logged on this global unique id 163526 mac 163526 bytes_out 0 163494 station_ip 83.123.49.52 163494 port 710 163494 unique_id port 163494 remote_ip 10.8.0.182 163497 username forozandeh1 163497 mac 163497 bytes_out 0 163497 bytes_in 0 163497 station_ip 83.123.221.28 163497 port 710 163497 unique_id port 163497 remote_ip 10.8.0.130 163499 username hashtadani4 163499 mac 163499 bytes_out 0 163499 bytes_in 0 163499 station_ip 83.123.49.52 163499 port 677 163499 unique_id port 163499 remote_ip 10.8.0.182 163501 username yaghobi 163501 mac 163501 bytes_out 0 163501 bytes_in 0 163501 station_ip 37.129.75.183 163501 port 677 163501 unique_id port 163501 remote_ip 10.8.0.198 163503 username yaghobi 163503 mac 163503 bytes_out 193993 163503 bytes_in 1784693 163503 station_ip 37.129.75.183 163503 port 677 163503 unique_id port 163503 remote_ip 10.8.0.198 163504 username hashtadani4 163504 mac 163504 bytes_out 0 163504 bytes_in 0 163504 station_ip 83.123.49.52 163504 port 677 163504 unique_id port 163504 remote_ip 10.8.0.182 163514 username fezealinaghi 163514 mac 163514 bytes_out 3213659 163514 bytes_in 15764526 163514 station_ip 83.122.54.70 163514 port 328 163514 unique_id port 163514 remote_ip 10.8.1.162 163518 username barzegar 163518 mac 163518 bytes_out 0 163518 bytes_in 0 163518 station_ip 5.119.87.5 163518 port 710 163518 unique_id port 163518 remote_ip 10.8.0.234 163520 username hashtadani4 163520 mac 163520 bytes_out 0 163520 bytes_in 0 163520 station_ip 83.123.49.52 163520 port 380 163520 unique_id port 163520 remote_ip 10.8.1.142 163521 username hashtadani4 163521 mac 163521 bytes_out 0 163521 bytes_in 0 163521 station_ip 83.123.49.52 163521 port 730 163521 unique_id port 163521 remote_ip 10.8.0.182 163524 username jafari 163524 kill_reason Another user logged on this global unique id 163524 mac 163524 bytes_out 0 163524 bytes_in 0 163524 station_ip 5.134.143.111 163524 port 729 163524 unique_id port 163524 remote_ip 10.8.0.242 163529 username barzegar 163529 kill_reason Another user logged on this global unique id 163529 mac 163529 bytes_out 0 163529 bytes_in 0 163529 station_ip 5.119.87.5 163529 port 710 163529 unique_id port 163530 username barzegar 163530 mac 163530 bytes_out 0 163530 bytes_in 0 163530 station_ip 5.119.87.5 163530 port 710 163530 unique_id port 163532 username hashtadani4 163532 mac 163532 bytes_out 0 163532 bytes_in 0 163532 station_ip 83.123.49.52 163532 port 381 163532 unique_id port 163532 remote_ip 10.8.1.142 163535 username barzegar 163535 mac 163535 bytes_out 0 163535 bytes_in 0 163535 station_ip 5.119.87.5 163535 port 730 163535 unique_id port 163535 remote_ip 10.8.0.234 163539 username jafari 163539 kill_reason Another user logged on this global unique id 163539 mac 163539 bytes_out 0 163539 bytes_in 0 163539 station_ip 5.134.143.111 163539 port 729 163539 unique_id port 163543 username hashtadani4 163543 mac 163543 bytes_out 0 163543 bytes_in 0 163543 station_ip 83.123.49.52 163543 port 729 163543 unique_id port 163543 remote_ip 10.8.0.182 163548 username khalili 163548 mac 163548 bytes_out 0 163548 bytes_in 0 163548 station_ip 5.119.240.171 163548 port 730 163548 unique_id port 163548 remote_ip 10.8.0.86 163550 username godarzi 163550 kill_reason Another user logged on this global unique id 163550 mac 163550 bytes_out 0 163550 bytes_in 0 163550 station_ip 5.202.6.91 163550 port 380 163550 unique_id port 163550 remote_ip 10.8.1.230 163552 username pourshad 163552 mac 163552 bytes_out 458166 163526 bytes_in 0 163526 station_ip 83.123.151.0 163526 port 696 163526 unique_id port 163531 username jafari 163531 kill_reason Another user logged on this global unique id 163531 mac 163531 bytes_out 0 163531 bytes_in 0 163531 station_ip 5.134.143.111 163531 port 729 163531 unique_id port 163536 username hashtadani4 163536 mac 163536 bytes_out 0 163536 bytes_in 0 163536 station_ip 83.123.49.52 163536 port 731 163536 unique_id port 163536 remote_ip 10.8.0.182 163544 username barzegar 163544 mac 163544 bytes_out 0 163544 bytes_in 0 163544 station_ip 5.119.87.5 163544 port 729 163544 unique_id port 163544 remote_ip 10.8.0.234 163545 username hashtadani4 163545 mac 163545 bytes_out 0 163545 bytes_in 0 163545 station_ip 83.123.49.52 163545 port 729 163545 unique_id port 163545 remote_ip 10.8.0.182 163549 username pourshad 163549 mac 163549 bytes_out 13647123 163549 bytes_in 39128172 163549 station_ip 5.119.173.238 163549 port 710 163549 unique_id port 163549 remote_ip 10.8.0.18 163558 username pourshad 163558 mac 163558 bytes_out 29035 163558 bytes_in 106034 163558 station_ip 5.119.173.238 163558 port 381 163558 unique_id port 163558 remote_ip 10.8.1.154 163560 username meysam 163560 kill_reason Another user logged on this global unique id 163560 mac 163560 bytes_out 0 163560 bytes_in 0 163560 station_ip 188.159.251.60 163560 port 729 163560 unique_id port 163560 remote_ip 10.8.0.110 163561 username pourshad 163561 mac 163561 bytes_out 0 163561 bytes_in 0 163561 station_ip 5.119.173.238 163561 port 365 163561 unique_id port 163561 remote_ip 10.8.1.154 163564 username pourshad 163564 mac 163564 bytes_out 0 163564 bytes_in 0 163564 station_ip 5.119.173.238 163564 port 365 163564 unique_id port 163564 remote_ip 10.8.1.154 163565 username aminvpn 163565 mac 163565 bytes_out 0 163565 bytes_in 0 163565 station_ip 83.122.237.47 163565 port 732 163565 unique_id port 163565 remote_ip 10.8.0.14 163567 username hashtadani4 163567 mac 163567 bytes_out 0 163567 bytes_in 0 163567 station_ip 83.123.49.52 163567 port 730 163567 unique_id port 163567 remote_ip 10.8.0.182 163573 username hashtadani4 163573 mac 163573 bytes_out 0 163573 bytes_in 0 163573 station_ip 83.123.49.52 163573 port 380 163573 unique_id port 163573 remote_ip 10.8.1.142 163574 username hashtadani4 163574 mac 163574 bytes_out 0 163574 bytes_in 0 163574 station_ip 83.123.49.52 163574 port 729 163574 unique_id port 163574 remote_ip 10.8.0.182 163579 username hashtadani4 163579 mac 163579 bytes_out 0 163579 bytes_in 0 163579 station_ip 83.123.49.52 163579 port 729 163579 unique_id port 163579 remote_ip 10.8.0.182 163582 username hashtadani4 163582 mac 163582 bytes_out 0 163582 bytes_in 0 163582 station_ip 83.123.49.52 163582 port 731 163582 unique_id port 163582 remote_ip 10.8.0.182 163585 username barzegar 163585 mac 163585 bytes_out 4664 163585 bytes_in 7316 163585 station_ip 5.119.87.5 163585 port 380 163585 unique_id port 163585 remote_ip 10.8.1.174 163590 username barzegar 163590 mac 163590 bytes_out 0 163590 bytes_in 0 163590 station_ip 5.119.87.5 163590 port 733 163590 unique_id port 163590 remote_ip 10.8.0.234 163604 username barzegar 163604 mac 163604 bytes_out 4836 163604 bytes_in 8162 163604 station_ip 5.120.52.42 163604 port 328 163604 unique_id port 163604 remote_ip 10.8.1.174 163605 username barzegar 163605 mac 163605 bytes_out 0 163605 bytes_in 0 163605 station_ip 5.120.52.42 163533 bytes_in 0 163533 station_ip 83.123.49.52 163533 port 710 163533 unique_id port 163533 remote_ip 10.8.0.182 163534 username hashtadani4 163534 mac 163534 bytes_out 0 163534 bytes_in 0 163534 station_ip 83.123.49.52 163534 port 710 163534 unique_id port 163534 remote_ip 10.8.0.182 163537 username hashtadani4 163537 mac 163537 bytes_out 0 163537 bytes_in 0 163537 station_ip 83.123.49.52 163537 port 730 163537 unique_id port 163537 remote_ip 10.8.0.182 163538 username barzegar 163538 mac 163538 bytes_out 0 163538 bytes_in 0 163538 station_ip 5.119.87.5 163538 port 730 163538 unique_id port 163538 remote_ip 10.8.0.234 163540 username jafari 163540 mac 163540 bytes_out 0 163540 bytes_in 0 163540 station_ip 5.134.143.111 163540 port 729 163540 unique_id port 163541 username hashtadani4 163541 mac 163541 bytes_out 0 163541 bytes_in 0 163541 station_ip 83.123.49.52 163541 port 729 163541 unique_id port 163541 remote_ip 10.8.0.182 163542 username barzegar 163542 mac 163542 bytes_out 0 163542 bytes_in 0 163542 station_ip 5.119.87.5 163542 port 381 163542 unique_id port 163542 remote_ip 10.8.1.174 163546 username barzegar 163546 mac 163546 bytes_out 0 163546 bytes_in 0 163546 station_ip 5.119.87.5 163546 port 381 163546 unique_id port 163546 remote_ip 10.8.1.174 163547 username sabaghnezhad 163547 mac 163547 bytes_out 86263 163547 bytes_in 124412 163547 station_ip 83.122.19.152 163547 port 365 163547 unique_id port 163547 remote_ip 10.8.1.130 163551 username forozandeh1 163551 mac 163551 bytes_out 344912 163551 bytes_in 443564 163551 station_ip 37.129.76.60 163551 port 729 163551 unique_id port 163551 remote_ip 10.8.0.130 163553 username barzegar 163553 mac 163553 bytes_out 0 163553 bytes_in 0 163553 station_ip 5.119.87.5 163553 port 365 163553 unique_id port 163553 remote_ip 10.8.1.174 163555 username hashtadani4 163555 mac 163555 bytes_out 0 163555 bytes_in 0 163555 station_ip 83.123.49.52 163555 port 730 163555 unique_id port 163555 remote_ip 10.8.0.182 163557 username hashtadani4 163557 mac 163557 bytes_out 0 163557 bytes_in 0 163557 station_ip 83.123.49.52 163557 port 730 163557 unique_id port 163557 remote_ip 10.8.0.182 163559 username barzegar 163559 mac 163559 bytes_out 0 163559 bytes_in 0 163559 station_ip 5.119.87.5 163559 port 365 163559 unique_id port 163559 remote_ip 10.8.1.174 163568 username meysam 163568 mac 163568 bytes_out 0 163568 bytes_in 0 163568 station_ip 188.159.251.60 163568 port 729 163568 unique_id port 163571 username godarzi 163571 mac 163571 bytes_out 0 163571 bytes_in 0 163571 station_ip 5.202.6.91 163571 port 380 163571 unique_id port 163572 username hashtadani4 163572 mac 163572 bytes_out 0 163572 bytes_in 0 163572 station_ip 83.123.49.52 163572 port 729 163572 unique_id port 163572 remote_ip 10.8.0.182 163575 username barzegar 163575 mac 163575 bytes_out 0 163575 bytes_in 0 163575 station_ip 5.119.87.5 163575 port 380 163575 unique_id port 163575 remote_ip 10.8.1.174 163578 username mohammadjavad 163578 mac 163578 bytes_out 0 163578 bytes_in 0 163578 station_ip 37.27.6.172 163578 port 731 163578 unique_id port 163578 remote_ip 10.8.0.142 163581 username hashtadani4 163581 mac 163581 bytes_out 0 163581 bytes_in 0 163581 station_ip 83.123.49.52 163581 port 731 163581 unique_id port 163581 remote_ip 10.8.0.182 163584 username godarzi 163584 mac 163552 bytes_in 9982534 163552 station_ip 5.119.173.238 163552 port 730 163552 unique_id port 163552 remote_ip 10.8.0.18 163554 username hashtadani4 163554 mac 163554 bytes_out 1211983 163554 bytes_in 18675566 163554 station_ip 83.123.49.52 163554 port 731 163554 unique_id port 163554 remote_ip 10.8.0.182 163556 username hashtadani4 163556 mac 163556 bytes_out 0 163556 bytes_in 0 163556 station_ip 83.123.49.52 163556 port 382 163556 unique_id port 163556 remote_ip 10.8.1.142 163562 username shadkam 163562 mac 163562 bytes_out 0 163562 bytes_in 0 163562 station_ip 83.122.207.22 163562 port 382 163562 unique_id port 163562 remote_ip 10.8.1.218 163563 username hashtadani4 163563 mac 163563 bytes_out 0 163563 bytes_in 0 163563 station_ip 83.123.49.52 163563 port 730 163563 unique_id port 163563 remote_ip 10.8.0.182 163566 username barzegar 163566 mac 163566 bytes_out 0 163566 bytes_in 0 163566 station_ip 5.119.87.5 163566 port 381 163566 unique_id port 163566 remote_ip 10.8.1.174 163569 username hashtadani4 163569 mac 163569 bytes_out 0 163569 bytes_in 0 163569 station_ip 83.123.49.52 163569 port 730 163569 unique_id port 163569 remote_ip 10.8.0.182 163570 username hashtadani4 163570 mac 163570 bytes_out 0 163570 bytes_in 0 163570 station_ip 83.123.49.52 163570 port 729 163570 unique_id port 163570 remote_ip 10.8.0.182 163576 username hashtadani4 163576 mac 163576 bytes_out 2005 163576 bytes_in 4547 163576 station_ip 83.123.49.52 163576 port 729 163576 unique_id port 163576 remote_ip 10.8.0.182 163577 username hashtadani4 163577 mac 163577 bytes_out 0 163577 bytes_in 0 163577 station_ip 83.123.49.52 163577 port 729 163577 unique_id port 163577 remote_ip 10.8.0.182 163580 username barzegar 163580 mac 163580 bytes_out 270769 163580 bytes_in 232956 163580 station_ip 5.119.87.5 163580 port 380 163580 unique_id port 163580 remote_ip 10.8.1.174 163583 username hashtadani4 163583 mac 163583 bytes_out 0 163583 bytes_in 0 163583 station_ip 83.123.49.52 163583 port 731 163583 unique_id port 163583 remote_ip 10.8.0.182 163589 username forozandeh1 163589 kill_reason Another user logged on this global unique id 163589 mac 163589 bytes_out 0 163589 bytes_in 0 163589 station_ip 83.122.20.7 163589 port 729 163589 unique_id port 163589 remote_ip 10.8.0.130 163592 username hashtadani4 163592 mac 163592 bytes_out 0 163592 bytes_in 0 163592 station_ip 83.123.49.52 163592 port 731 163592 unique_id port 163592 remote_ip 10.8.0.182 163595 username hashtadani4 163595 mac 163595 bytes_out 0 163595 bytes_in 0 163595 station_ip 83.123.49.52 163595 port 731 163595 unique_id port 163595 remote_ip 10.8.0.182 163599 username godarzi 163599 mac 163599 bytes_out 0 163599 bytes_in 0 163599 station_ip 5.202.6.91 163599 port 380 163599 unique_id port 163599 remote_ip 10.8.1.230 163600 username jamali 163600 mac 163600 bytes_out 0 163600 bytes_in 0 163600 station_ip 5.120.144.130 163600 port 729 163600 unique_id port 163600 remote_ip 10.8.0.70 163602 username fezealinaghi 163602 mac 163602 bytes_out 0 163602 bytes_in 0 163602 station_ip 83.122.54.70 163602 port 328 163602 unique_id port 163602 remote_ip 10.8.1.162 163606 username hashtadani4 163606 mac 163606 bytes_out 0 163606 bytes_in 0 163606 station_ip 83.123.49.52 163606 port 731 163606 unique_id port 163606 remote_ip 10.8.0.182 163608 username afarin1 163608 mac 163608 bytes_out 3776764 163608 bytes_in 1328033 163584 bytes_out 0 163584 bytes_in 0 163584 station_ip 5.202.6.91 163584 port 381 163584 unique_id port 163584 remote_ip 10.8.1.230 163586 username mohsenaskari 163586 mac 163586 bytes_out 0 163586 bytes_in 0 163586 station_ip 46.225.210.67 163586 port 732 163586 unique_id port 163586 remote_ip 10.8.0.170 163587 username pourshad 163587 mac 163587 bytes_out 1578243 163587 bytes_in 37240477 163587 station_ip 5.119.173.238 163587 port 365 163587 unique_id port 163587 remote_ip 10.8.1.154 163588 username barzegar 163588 mac 163588 bytes_out 0 163588 bytes_in 0 163588 station_ip 5.119.87.5 163588 port 380 163588 unique_id port 163588 remote_ip 10.8.1.174 163591 username hashtadani4 163591 mac 163591 bytes_out 10730 163591 bytes_in 24282 163591 station_ip 83.123.49.52 163591 port 731 163591 unique_id port 163591 remote_ip 10.8.0.182 163593 username nilufarrajaei 163593 kill_reason Another user logged on this global unique id 163593 mac 163593 bytes_out 0 163593 bytes_in 0 163593 station_ip 83.123.151.0 163593 port 696 163593 unique_id port 163594 username forozandeh1 163594 mac 163594 bytes_out 0 163594 bytes_in 0 163594 station_ip 83.122.20.7 163594 port 729 163594 unique_id port 163596 username barzegar 163596 mac 163596 bytes_out 0 163596 bytes_in 0 163596 station_ip 5.119.87.5 163596 port 381 163596 unique_id port 163596 remote_ip 10.8.1.174 163597 username mohammadjavad 163597 mac 163597 bytes_out 0 163597 bytes_in 0 163597 station_ip 37.27.6.172 163597 port 730 163597 unique_id port 163597 remote_ip 10.8.0.142 163598 username shadkam 163598 mac 163598 bytes_out 0 163598 bytes_in 0 163598 station_ip 83.123.73.198 163598 port 381 163598 unique_id port 163598 remote_ip 10.8.1.218 163601 username barzegar 163601 mac 163601 bytes_out 14111 163601 bytes_in 68196 163601 station_ip 5.119.87.5 163601 port 730 163601 unique_id port 163601 remote_ip 10.8.0.234 163603 username barzegar 163603 mac 163603 bytes_out 0 163603 bytes_in 0 163603 station_ip 5.119.87.5 163603 port 730 163603 unique_id port 163603 remote_ip 10.8.0.234 163610 username saeed9658 163610 mac 163610 bytes_out 0 163610 bytes_in 0 163610 station_ip 5.119.111.142 163610 port 380 163610 unique_id port 163610 remote_ip 10.8.1.210 163611 username sabaghnezhad 163611 mac 163611 bytes_out 167168 163611 bytes_in 373077 163611 station_ip 37.129.33.217 163611 port 732 163611 unique_id port 163611 remote_ip 10.8.0.186 163613 username hashtadani4 163613 mac 163613 bytes_out 0 163613 bytes_in 0 163613 station_ip 83.123.49.52 163613 port 730 163613 unique_id port 163613 remote_ip 10.8.0.182 163614 username meysam 163614 kill_reason Another user logged on this global unique id 163614 mac 163614 bytes_out 0 163614 bytes_in 0 163614 station_ip 188.159.251.60 163614 port 733 163614 unique_id port 163614 remote_ip 10.8.0.110 163616 username jamali 163616 mac 163616 bytes_out 84116 163616 bytes_in 486786 163616 station_ip 5.120.144.130 163616 port 734 163616 unique_id port 163616 remote_ip 10.8.0.70 163619 username meysam 163619 mac 163619 bytes_out 0 163619 bytes_in 0 163619 station_ip 188.159.251.60 163619 port 733 163619 unique_id port 163620 username hashtadani4 163620 kill_reason Maximum check online fails reached 163620 mac 163620 bytes_out 0 163620 bytes_in 0 163620 station_ip 83.123.49.52 163620 port 730 163620 unique_id port 163623 username hashtadani4 163623 mac 163623 bytes_out 0 163623 bytes_in 0 163605 port 328 163605 unique_id port 163605 remote_ip 10.8.1.174 163607 username forozandeh1 163607 mac 163607 bytes_out 400781 163607 bytes_in 888375 163607 station_ip 83.122.128.225 163607 port 729 163607 unique_id port 163607 remote_ip 10.8.0.130 163609 username nilufarrajaei 163609 mac 163609 bytes_out 0 163609 bytes_in 0 163609 station_ip 83.123.151.0 163609 port 696 163609 unique_id port 163615 username sabaghnezhad 163615 mac 163615 bytes_out 11974 163615 bytes_in 15511 163615 station_ip 83.123.171.25 163615 port 729 163615 unique_id port 163615 remote_ip 10.8.0.186 163618 username shadkam 163618 mac 163618 bytes_out 4695 163618 bytes_in 15494 163618 station_ip 83.122.82.88 163618 port 381 163618 unique_id port 163618 remote_ip 10.8.1.218 163621 username hashtadani4 163621 mac 163621 bytes_out 0 163621 bytes_in 0 163621 station_ip 83.123.49.52 163621 port 734 163621 unique_id port 163621 remote_ip 10.8.0.182 163624 username hamidsalari 163624 mac 163624 bytes_out 0 163624 bytes_in 0 163624 station_ip 5.120.109.101 163624 port 673 163624 unique_id port 163624 remote_ip 10.8.0.222 163625 username jamali 163625 mac 163625 bytes_out 0 163625 bytes_in 0 163625 station_ip 5.120.144.130 163625 port 736 163625 unique_id port 163625 remote_ip 10.8.0.70 163629 username fezealinaghi 163629 mac 163629 bytes_out 0 163629 bytes_in 0 163629 station_ip 83.122.45.42 163629 port 381 163629 unique_id port 163629 remote_ip 10.8.1.162 163631 username hashtadani4 163631 mac 163631 bytes_out 0 163631 bytes_in 0 163631 station_ip 83.123.49.52 163631 port 736 163631 unique_id port 163631 remote_ip 10.8.0.182 163632 username meysam 163632 mac 163632 bytes_out 2148881 163632 bytes_in 35370832 163632 station_ip 188.159.251.60 163632 port 734 163632 unique_id port 163632 remote_ip 10.8.0.110 163634 username hashtadani4 163634 mac 163634 bytes_out 14523133 163634 bytes_in 13311841 163634 station_ip 83.123.49.52 163634 port 736 163634 unique_id port 163634 remote_ip 10.8.0.182 163635 username fezealinaghi 163635 kill_reason Another user logged on this global unique id 163635 mac 163635 bytes_out 0 163635 bytes_in 0 163635 station_ip 83.122.45.42 163635 port 381 163635 unique_id port 163635 remote_ip 10.8.1.162 163637 username barzegar 163637 mac 163637 bytes_out 0 163637 bytes_in 0 163637 station_ip 5.120.52.42 163637 port 328 163637 unique_id port 163637 remote_ip 10.8.1.174 163641 username hashtadani4 163641 mac 163641 bytes_out 0 163641 bytes_in 0 163641 station_ip 83.123.49.52 163641 port 733 163641 unique_id port 163641 remote_ip 10.8.0.182 163642 username mohammadjavad 163642 mac 163642 bytes_out 0 163642 bytes_in 0 163642 station_ip 37.129.98.144 163642 port 732 163642 unique_id port 163642 remote_ip 10.8.0.142 163646 username hashtadani4 163646 mac 163646 bytes_out 372641 163646 bytes_in 6250909 163646 station_ip 83.123.49.52 163646 port 732 163646 unique_id port 163646 remote_ip 10.8.0.182 163651 username hashtadani4 163651 mac 163651 bytes_out 0 163651 bytes_in 0 163651 station_ip 5.202.16.2 163651 port 733 163651 unique_id port 163651 remote_ip 10.8.0.182 163658 username barzegar 163658 mac 163658 bytes_out 52651 163658 bytes_in 111466 163658 station_ip 5.120.52.42 163658 port 328 163658 unique_id port 163658 remote_ip 10.8.1.174 163659 username hosseine 163659 mac 163659 bytes_out 2659593 163659 bytes_in 22031995 163659 station_ip 83.122.185.5 163659 port 710 163608 station_ip 113.203.95.74 163608 port 730 163608 unique_id port 163608 remote_ip 10.8.0.202 163612 username nilufarrajaei 163612 mac 163612 bytes_out 11486 163612 bytes_in 18270 163612 station_ip 83.123.151.0 163612 port 380 163612 unique_id port 163612 remote_ip 10.8.1.166 163617 username hashtadani4 163617 mac 163617 bytes_out 0 163617 bytes_in 0 163617 station_ip 83.123.49.52 163617 port 730 163617 unique_id port 163617 remote_ip 10.8.0.182 163622 username jamali 163622 mac 163622 bytes_out 0 163622 bytes_in 0 163622 station_ip 5.120.144.130 163622 port 729 163622 unique_id port 163622 remote_ip 10.8.0.70 163626 username hashtadani4 163626 mac 163626 bytes_out 0 163626 bytes_in 0 163626 station_ip 83.123.49.52 163626 port 736 163626 unique_id port 163626 remote_ip 10.8.0.182 163627 username forozandeh1 163627 mac 163627 bytes_out 252784 163627 bytes_in 610598 163627 station_ip 37.129.187.124 163627 port 735 163627 unique_id port 163627 remote_ip 10.8.0.130 163628 username jamali 163628 mac 163628 bytes_out 36023 163628 bytes_in 86386 163628 station_ip 5.120.144.130 163628 port 673 163628 unique_id port 163628 remote_ip 10.8.0.70 163633 username forozandeh1 163633 mac 163633 bytes_out 955999 163633 bytes_in 11821848 163633 station_ip 83.123.77.74 163633 port 735 163633 unique_id port 163633 remote_ip 10.8.0.130 163636 username saeed9658 163636 mac 163636 bytes_out 1718122 163636 bytes_in 19701370 163636 station_ip 5.119.111.142 163636 port 696 163636 unique_id port 163636 remote_ip 10.8.0.166 163639 username aminvpn 163639 unique_id port 163639 terminate_cause Lost-Carrier 163639 bytes_out 577757 163639 bytes_in 5485011 163639 station_ip 5.119.119.43 163639 port 15728660 163639 nas_port_type Virtual 163639 remote_ip 5.5.5.234 163643 username hashtadani4 163643 mac 163643 bytes_out 0 163643 bytes_in 0 163643 station_ip 83.123.49.52 163643 port 734 163643 unique_id port 163643 remote_ip 10.8.0.182 163645 username jamali 163645 mac 163645 bytes_out 93384 163645 bytes_in 150379 163645 station_ip 5.120.144.130 163645 port 673 163645 unique_id port 163645 remote_ip 10.8.0.70 163648 username hashtadani4 163648 mac 163648 bytes_out 0 163648 bytes_in 0 163648 station_ip 5.202.16.2 163648 port 673 163648 unique_id port 163648 remote_ip 10.8.0.182 163650 username forozandeh1 163650 mac 163650 bytes_out 0 163650 bytes_in 0 163650 station_ip 83.123.161.7 163650 port 673 163650 unique_id port 163650 remote_ip 10.8.0.130 163652 username hashtadani4 163652 mac 163652 bytes_out 265991 163652 bytes_in 4353293 163652 station_ip 83.123.49.52 163652 port 735 163652 unique_id port 163652 remote_ip 10.8.0.182 163655 username hashtadani4 163655 kill_reason Maximum number of concurrent logins reached 163655 mac 163655 bytes_out 0 163655 bytes_in 0 163655 station_ip 83.123.49.52 163655 port 736 163655 unique_id port 163657 username alipour 163657 mac 163657 bytes_out 0 163657 bytes_in 0 163657 station_ip 83.122.236.18 163657 port 673 163657 unique_id port 163657 remote_ip 10.8.0.102 163660 username hashtadani4 163660 kill_reason Maximum check online fails reached 163660 mac 163660 bytes_out 0 163660 bytes_in 0 163660 station_ip 83.123.49.52 163660 port 735 163660 unique_id port 163662 username pourshad 163662 mac 163662 bytes_out 0 163662 bytes_in 0 163662 station_ip 5.119.173.238 163662 port 365 163662 unique_id port 163662 remote_ip 10.8.1.154 163666 username alipour 163666 mac 163666 bytes_out 0 163623 station_ip 83.123.49.52 163623 port 729 163623 unique_id port 163623 remote_ip 10.8.0.182 163630 username hashtadani4 163630 mac 163630 bytes_out 0 163630 bytes_in 0 163630 station_ip 83.123.49.52 163630 port 382 163630 unique_id port 163630 remote_ip 10.8.1.142 163638 username kalantary 163638 mac 163638 bytes_out 3575447 163638 bytes_in 49114184 163638 station_ip 83.122.54.145 163638 port 733 163638 unique_id port 163638 remote_ip 10.8.0.98 163640 username fezealinaghi 163640 mac 163640 bytes_out 0 163640 bytes_in 0 163640 station_ip 83.122.45.42 163640 port 381 163640 unique_id port 163644 username hashtadani4 163644 mac 163644 bytes_out 0 163644 bytes_in 0 163644 station_ip 83.123.49.52 163644 port 732 163644 unique_id port 163644 remote_ip 10.8.0.182 163647 username vanila 163647 mac 163647 bytes_out 816686 163647 bytes_in 2395322 163647 station_ip 37.129.37.107 163647 port 733 163647 unique_id port 163647 remote_ip 10.8.0.178 163649 username hashtadani4 163649 mac 163649 bytes_out 0 163649 bytes_in 0 163649 station_ip 5.202.16.2 163649 port 673 163649 unique_id port 163649 remote_ip 10.8.0.182 163653 username godarzi 163653 mac 163653 bytes_out 0 163653 bytes_in 0 163653 station_ip 5.202.6.91 163653 port 380 163653 unique_id port 163653 remote_ip 10.8.1.230 163654 username hashtadani4 163654 mac 163654 bytes_out 0 163654 bytes_in 0 163654 station_ip 83.123.49.52 163654 port 735 163654 unique_id port 163654 remote_ip 10.8.0.182 163656 username hashtadani4 163656 kill_reason Maximum check online fails reached 163656 mac 163656 bytes_out 0 163656 bytes_in 0 163656 station_ip 83.123.49.52 163656 port 733 163656 unique_id port 163663 username alipour 163663 mac 163663 bytes_out 0 163663 bytes_in 0 163663 station_ip 83.122.236.18 163663 port 380 163663 unique_id port 163663 remote_ip 10.8.1.50 163665 username kordestani 163665 mac 163665 bytes_out 606666 163665 bytes_in 11045377 163665 station_ip 83.122.9.64 163665 port 710 163665 unique_id port 163665 remote_ip 10.8.0.74 163669 username shadkam 163669 mac 163669 bytes_out 0 163669 bytes_in 0 163669 station_ip 83.123.64.84 163669 port 381 163669 unique_id port 163669 remote_ip 10.8.1.218 163671 username jamali 163671 mac 163671 bytes_out 56521 163671 bytes_in 65274 163671 station_ip 5.120.144.130 163671 port 734 163671 unique_id port 163671 remote_ip 10.8.0.70 163675 username mohammadjavad 163675 mac 163675 bytes_out 41976 163675 bytes_in 293166 163675 station_ip 83.122.58.233 163675 port 710 163675 unique_id port 163675 remote_ip 10.8.0.142 163680 username nilufarrajaei 163680 mac 163680 bytes_out 0 163680 bytes_in 0 163680 station_ip 83.123.151.0 163680 port 737 163680 unique_id port 163680 remote_ip 10.8.0.206 163684 username forozandeh1 163684 mac 163684 bytes_out 450179 163684 bytes_in 3308506 163684 station_ip 83.122.143.38 163684 port 739 163684 unique_id port 163684 remote_ip 10.8.0.130 163687 username sekonji3 163687 mac 163687 bytes_out 0 163687 bytes_in 0 163687 station_ip 83.122.45.5 163687 port 740 163687 unique_id port 163687 remote_ip 10.8.0.6 163691 username tahmorsi 163691 mac 163691 bytes_out 139813 163691 bytes_in 697950 163691 station_ip 89.47.66.88 163691 port 737 163691 unique_id port 163691 remote_ip 10.8.0.210 163692 username tahmasebi 163692 mac 163692 bytes_out 3152501 163692 bytes_in 39154869 163692 station_ip 5.119.68.191 163692 port 738 163692 unique_id port 163659 unique_id port 163659 remote_ip 10.8.0.238 163661 username malekpoir 163661 kill_reason Another user logged on this global unique id 163661 mac 163661 bytes_out 0 163661 bytes_in 0 163661 station_ip 5.120.40.46 163661 port 677 163661 unique_id port 163661 remote_ip 10.8.0.58 163664 username kalantary 163664 mac 163664 bytes_out 0 163664 bytes_in 0 163664 station_ip 83.122.73.129 163664 port 732 163664 unique_id port 163664 remote_ip 10.8.0.98 163668 username barzegar 163668 mac 163668 bytes_out 0 163668 bytes_in 0 163668 station_ip 5.120.52.42 163668 port 382 163668 unique_id port 163668 remote_ip 10.8.1.174 163670 username sabaghnezhad 163670 mac 163670 bytes_out 27427 163670 bytes_in 25543 163670 station_ip 83.123.171.25 163670 port 737 163670 unique_id port 163670 remote_ip 10.8.0.186 163673 username barzegar 163673 mac 163673 bytes_out 0 163673 bytes_in 0 163673 station_ip 5.120.52.42 163673 port 381 163673 unique_id port 163673 remote_ip 10.8.1.174 163676 username nilufarrajaei 163676 mac 163676 bytes_out 0 163676 bytes_in 0 163676 station_ip 83.123.151.0 163676 port 696 163676 unique_id port 163681 username meysam 163681 kill_reason Another user logged on this global unique id 163681 mac 163681 bytes_out 0 163681 bytes_in 0 163681 station_ip 188.159.251.60 163681 port 696 163681 unique_id port 163681 remote_ip 10.8.0.110 163683 username nilufarrajaei 163683 mac 163683 bytes_out 16700 163683 bytes_in 20675 163683 station_ip 83.123.151.0 163683 port 742 163683 unique_id port 163683 remote_ip 10.8.0.206 163686 username aminvpn 163686 kill_reason Another user logged on this global unique id 163686 mac 163686 bytes_out 0 163686 bytes_in 0 163686 station_ip 5.119.70.233 163686 port 732 163686 unique_id port 163686 remote_ip 10.8.0.14 163689 username aminvpn 163689 kill_reason Another user logged on this global unique id 163689 mac 163689 bytes_out 0 163689 bytes_in 0 163689 station_ip 5.119.70.233 163689 port 732 163689 unique_id port 163695 username tahmasebi 163695 mac 163695 bytes_out 0 163695 bytes_in 0 163695 station_ip 5.119.68.191 163695 port 737 163695 unique_id port 163695 remote_ip 10.8.0.42 163698 username meysam 163698 kill_reason Another user logged on this global unique id 163698 mac 163698 bytes_out 0 163698 bytes_in 0 163698 station_ip 188.159.251.60 163698 port 696 163698 unique_id port 163700 username aminvpn 163700 kill_reason Another user logged on this global unique id 163700 mac 163700 bytes_out 0 163700 bytes_in 0 163700 station_ip 5.119.70.233 163700 port 732 163700 unique_id port 163703 username tahmorsi 163703 mac 163703 bytes_out 0 163703 bytes_in 0 163703 station_ip 89.47.66.88 163703 port 736 163703 unique_id port 163703 remote_ip 10.8.0.210 163704 username aminvpn 163704 mac 163704 bytes_out 0 163704 bytes_in 0 163704 station_ip 5.120.115.68 163704 port 380 163704 unique_id port 163706 username barzegar 163706 mac 163706 bytes_out 2240 163706 bytes_in 4555 163706 station_ip 5.120.52.42 163706 port 736 163706 unique_id port 163706 remote_ip 10.8.0.234 163708 username aminvpn 163708 kill_reason Another user logged on this global unique id 163708 mac 163708 bytes_out 0 163708 bytes_in 0 163708 station_ip 5.119.70.233 163708 port 732 163708 unique_id port 163713 username jamali 163713 mac 163713 bytes_out 11019 163713 bytes_in 14188 163713 station_ip 5.120.144.130 163713 port 739 163713 unique_id port 163713 remote_ip 10.8.0.70 163716 username meysam 163716 mac 163716 bytes_out 0 163716 bytes_in 0 163666 bytes_in 0 163666 station_ip 83.122.236.18 163666 port 328 163666 unique_id port 163666 remote_ip 10.8.1.50 163667 username nilufarrajaei 163667 kill_reason Another user logged on this global unique id 163667 mac 163667 bytes_out 0 163667 bytes_in 0 163667 station_ip 83.123.151.0 163667 port 696 163667 unique_id port 163667 remote_ip 10.8.0.206 163672 username forozandeh1 163672 mac 163672 bytes_out 0 163672 bytes_in 0 163672 station_ip 83.122.96.90 163672 port 738 163672 unique_id port 163672 remote_ip 10.8.0.130 163674 username kalantary 163674 mac 163674 bytes_out 0 163674 bytes_in 0 163674 station_ip 83.122.73.129 163674 port 710 163674 unique_id port 163674 remote_ip 10.8.0.98 163677 username barzegar 163677 kill_reason Maximum check online fails reached 163677 mac 163677 bytes_out 0 163677 bytes_in 0 163677 station_ip 5.120.52.42 163677 port 710 163677 unique_id port 163678 username godarzi 163678 kill_reason Another user logged on this global unique id 163678 mac 163678 bytes_out 0 163678 bytes_in 0 163678 station_ip 5.202.6.91 163678 port 365 163678 unique_id port 163678 remote_ip 10.8.1.230 163679 username barzegar 163679 mac 163679 bytes_out 0 163679 bytes_in 0 163679 station_ip 5.120.52.42 163679 port 381 163679 unique_id port 163679 remote_ip 10.8.1.174 163682 username pourshad 163682 mac 163682 bytes_out 86570 163682 bytes_in 343450 163682 station_ip 5.119.173.238 163682 port 736 163682 unique_id port 163682 remote_ip 10.8.0.18 163685 username pourshad 163685 mac 163685 bytes_out 0 163685 bytes_in 0 163685 station_ip 5.119.173.238 163685 port 381 163685 unique_id port 163685 remote_ip 10.8.1.154 163688 username aminvpn 163688 kill_reason Another user logged on this global unique id 163688 mac 163688 bytes_out 0 163688 bytes_in 0 163688 station_ip 5.120.115.68 163688 port 380 163688 unique_id port 163688 remote_ip 10.8.1.6 163690 username mohammadjavad 163690 mac 163690 bytes_out 387712 163690 bytes_in 4500462 163690 station_ip 83.123.4.99 163690 port 736 163690 unique_id port 163690 remote_ip 10.8.0.142 163693 username kalantary 163693 mac 163693 bytes_out 974947 163693 bytes_in 5811538 163693 station_ip 83.122.2.253 163693 port 741 163693 unique_id port 163693 remote_ip 10.8.0.98 163699 username tahmasebi 163699 mac 163699 bytes_out 0 163699 bytes_in 0 163699 station_ip 5.119.68.191 163699 port 737 163699 unique_id port 163699 remote_ip 10.8.0.42 163701 username barzegar 163701 mac 163701 bytes_out 0 163701 bytes_in 0 163701 station_ip 5.120.52.42 163701 port 739 163701 unique_id port 163701 remote_ip 10.8.0.234 163707 username tahmorsi 163707 mac 163707 bytes_out 0 163707 bytes_in 0 163707 station_ip 89.47.66.88 163707 port 382 163707 unique_id port 163707 remote_ip 10.8.1.22 163709 username jamali 163709 mac 163709 bytes_out 0 163709 bytes_in 0 163709 station_ip 5.120.144.130 163709 port 734 163709 unique_id port 163709 remote_ip 10.8.0.70 163712 username forozandeh1 163712 mac 163712 bytes_out 0 163712 bytes_in 0 163712 station_ip 37.129.169.46 163712 port 736 163712 unique_id port 163712 remote_ip 10.8.0.130 163715 username aminvpn 163715 mac 163715 bytes_out 0 163715 bytes_in 0 163715 station_ip 5.120.115.68 163715 port 382 163715 unique_id port 163715 remote_ip 10.8.1.6 163717 username pourshad 163717 mac 163717 bytes_out 168671 163717 bytes_in 904443 163717 station_ip 5.119.173.238 163717 port 737 163717 unique_id port 163717 remote_ip 10.8.0.18 163692 remote_ip 10.8.0.42 163694 username khalili 163694 mac 163694 bytes_out 2244867 163694 bytes_in 39733017 163694 station_ip 5.119.240.171 163694 port 382 163694 unique_id port 163694 remote_ip 10.8.1.18 163696 username pourshad 163696 mac 163696 bytes_out 0 163696 bytes_in 0 163696 station_ip 5.119.173.238 163696 port 383 163696 unique_id port 163696 remote_ip 10.8.1.154 163697 username godarzi 163697 kill_reason Another user logged on this global unique id 163697 mac 163697 bytes_out 0 163697 bytes_in 0 163697 station_ip 5.202.6.91 163697 port 365 163697 unique_id port 163702 username barzegar 163702 mac 163702 bytes_out 0 163702 bytes_in 0 163702 station_ip 5.120.52.42 163702 port 738 163702 unique_id port 163702 remote_ip 10.8.0.234 163705 username malekpoir 163705 kill_reason Another user logged on this global unique id 163705 mac 163705 bytes_out 0 163705 bytes_in 0 163705 station_ip 5.120.40.46 163705 port 677 163705 unique_id port 163710 username godarzi 163710 kill_reason Another user logged on this global unique id 163710 mac 163710 bytes_out 0 163710 bytes_in 0 163710 station_ip 5.202.6.91 163710 port 365 163710 unique_id port 163711 username tahmasebi 163711 kill_reason Another user logged on this global unique id 163711 mac 163711 bytes_out 0 163711 bytes_in 0 163711 station_ip 5.119.68.191 163711 port 738 163711 unique_id port 163711 remote_ip 10.8.0.42 163714 username ghiyasi 163714 mac 163714 bytes_out 0 163714 bytes_in 0 163714 station_ip 5.120.10.21 163714 port 328 163714 unique_id port 163714 remote_ip 10.8.1.38 163718 username vanila 163718 mac 163718 bytes_out 80588 163718 bytes_in 231072 163718 station_ip 37.129.25.111 163718 port 739 163718 unique_id port 163718 remote_ip 10.8.0.178 163721 username kalantary 163721 mac 163721 bytes_out 336128 163721 bytes_in 3929930 163721 station_ip 83.122.110.253 163721 port 696 163721 unique_id port 163721 remote_ip 10.8.0.98 163725 username aminvpn 163725 mac 163725 bytes_out 0 163725 bytes_in 0 163725 station_ip 5.119.70.233 163725 port 732 163725 unique_id port 163727 username mosi 163727 kill_reason Another user logged on this global unique id 163727 mac 163727 bytes_out 0 163727 bytes_in 0 163727 station_ip 151.235.96.72 163727 port 328 163727 unique_id port 163727 remote_ip 10.8.1.86 163728 username godarzi 163728 kill_reason Another user logged on this global unique id 163728 mac 163728 bytes_out 0 163728 bytes_in 0 163728 station_ip 5.202.6.91 163728 port 365 163728 unique_id port 163729 username tahmasebi 163729 kill_reason Another user logged on this global unique id 163729 mac 163729 bytes_out 0 163729 bytes_in 0 163729 station_ip 5.119.68.191 163729 port 738 163729 unique_id port 163731 username jamali 163731 mac 163731 bytes_out 0 163731 bytes_in 0 163731 station_ip 5.120.144.130 163731 port 696 163731 unique_id port 163731 remote_ip 10.8.0.70 163732 username barzegar 163732 mac 163732 bytes_out 0 163732 bytes_in 0 163732 station_ip 5.120.52.42 163732 port 736 163732 unique_id port 163732 remote_ip 10.8.0.234 163736 username mosi 163736 kill_reason Another user logged on this global unique id 163736 mac 163736 bytes_out 0 163736 bytes_in 0 163736 station_ip 151.235.96.72 163736 port 328 163736 unique_id port 163740 username sabaghnezhad 163740 mac 163740 bytes_out 47781 163740 bytes_in 42850 163740 station_ip 83.123.171.25 163740 port 737 163740 unique_id port 163740 remote_ip 10.8.0.186 163742 username godarzi 163742 kill_reason Another user logged on this global unique id 163742 mac 163716 station_ip 188.159.251.60 163716 port 696 163716 unique_id port 163719 username jamali 163719 mac 163719 bytes_out 13175 163719 bytes_in 19040 163719 station_ip 5.120.144.130 163719 port 736 163719 unique_id port 163719 remote_ip 10.8.0.70 163722 username barzegar 163722 mac 163722 bytes_out 5097 163722 bytes_in 11984 163722 station_ip 5.120.52.42 163722 port 737 163722 unique_id port 163722 remote_ip 10.8.0.234 163724 username barzegar 163724 mac 163724 bytes_out 0 163724 bytes_in 0 163724 station_ip 5.120.52.42 163724 port 380 163724 unique_id port 163724 remote_ip 10.8.1.174 163726 username barzegar 163726 mac 163726 bytes_out 0 163726 bytes_in 0 163726 station_ip 5.120.52.42 163726 port 380 163726 unique_id port 163726 remote_ip 10.8.1.174 163730 username aminvpn 163730 mac 163730 bytes_out 91695 163730 bytes_in 141811 163730 station_ip 5.119.70.233 163730 port 732 163730 unique_id port 163730 remote_ip 10.8.0.14 163734 username tahmasebi 163734 mac 163734 bytes_out 0 163734 bytes_in 0 163734 station_ip 5.119.68.191 163734 port 738 163734 unique_id port 163735 username godarzi 163735 kill_reason Another user logged on this global unique id 163735 mac 163735 bytes_out 0 163735 bytes_in 0 163735 station_ip 5.202.6.91 163735 port 365 163735 unique_id port 163738 username barzegar 163738 mac 163738 bytes_out 0 163738 bytes_in 0 163738 station_ip 5.120.52.42 163738 port 696 163738 unique_id port 163738 remote_ip 10.8.0.234 163739 username tahmasebi 163739 mac 163739 bytes_out 505373 163739 bytes_in 4618940 163739 station_ip 5.119.68.191 163739 port 738 163739 unique_id port 163739 remote_ip 10.8.0.42 163741 username saeed9658 163741 mac 163741 bytes_out 346402 163741 bytes_in 3549306 163741 station_ip 5.119.111.142 163741 port 739 163741 unique_id port 163741 remote_ip 10.8.0.166 163744 username jamali 163744 mac 163744 bytes_out 10387 163744 bytes_in 12882 163744 station_ip 5.120.144.130 163744 port 696 163744 unique_id port 163744 remote_ip 10.8.0.70 163748 username ghiyasi 163748 mac 163748 bytes_out 85038 163748 bytes_in 309798 163748 station_ip 5.120.10.21 163748 port 383 163748 unique_id port 163748 remote_ip 10.8.1.38 163749 username tahmasebi 163749 mac 163749 bytes_out 0 163749 bytes_in 0 163749 station_ip 5.119.68.191 163749 port 737 163749 unique_id port 163749 remote_ip 10.8.0.42 163752 username yaghobi 163752 kill_reason Another user logged on this global unique id 163752 mac 163752 bytes_out 0 163752 bytes_in 0 163752 station_ip 37.129.226.169 163752 port 736 163752 unique_id port 163752 remote_ip 10.8.0.198 163754 username tahmasebi 163754 mac 163754 bytes_out 2257 163754 bytes_in 4574 163754 station_ip 5.119.68.191 163754 port 734 163754 unique_id port 163754 remote_ip 10.8.0.42 163756 username godarzi 163756 kill_reason Another user logged on this global unique id 163756 mac 163756 bytes_out 0 163756 bytes_in 0 163756 station_ip 5.202.6.91 163756 port 365 163756 unique_id port 163768 username ghiyasi 163768 mac 163768 bytes_out 0 163768 bytes_in 0 163768 station_ip 5.120.10.21 163768 port 380 163768 unique_id port 163768 remote_ip 10.8.1.38 163770 username tahmasebi 163770 mac 163770 bytes_out 0 163770 bytes_in 0 163770 station_ip 5.119.68.191 163770 port 729 163770 unique_id port 163770 remote_ip 10.8.0.42 163775 username tahmasebi 163775 mac 163775 bytes_out 3011 163775 bytes_in 5680 163775 station_ip 5.119.68.191 163775 port 736 163720 username kordestani 163720 mac 163720 bytes_out 584621 163720 bytes_in 8845121 163720 station_ip 37.129.178.177 163720 port 734 163720 unique_id port 163720 remote_ip 10.8.0.74 163723 username tahmorsi 163723 mac 163723 bytes_out 154483 163723 bytes_in 311667 163723 station_ip 86.57.68.254 163723 port 380 163723 unique_id port 163723 remote_ip 10.8.1.22 163733 username shadkam 163733 mac 163733 bytes_out 0 163733 bytes_in 0 163733 station_ip 37.129.241.37 163733 port 380 163733 unique_id port 163733 remote_ip 10.8.1.218 163737 username jamali 163737 mac 163737 bytes_out 0 163737 bytes_in 0 163737 station_ip 5.120.144.130 163737 port 696 163737 unique_id port 163737 remote_ip 10.8.0.70 163743 username barzegar 163743 mac 163743 bytes_out 0 163743 bytes_in 0 163743 station_ip 5.120.52.42 163743 port 738 163743 unique_id port 163743 remote_ip 10.8.0.234 163746 username tahmasebi 163746 mac 163746 bytes_out 910434 163746 bytes_in 3049900 163746 station_ip 5.119.68.191 163746 port 737 163746 unique_id port 163746 remote_ip 10.8.0.42 163751 username kordestani 163751 mac 163751 bytes_out 3290530 163751 bytes_in 52056750 163751 station_ip 151.235.86.208 163751 port 734 163751 unique_id port 163751 remote_ip 10.8.0.74 163753 username tahmasebi 163753 mac 163753 bytes_out 0 163753 bytes_in 0 163753 station_ip 5.119.68.191 163753 port 734 163753 unique_id port 163753 remote_ip 10.8.0.42 163755 username aminvpn 163755 mac 163755 bytes_out 147544 163755 bytes_in 386576 163755 station_ip 5.119.70.233 163755 port 732 163755 unique_id port 163755 remote_ip 10.8.0.14 163757 username tahmasebi 163757 mac 163757 bytes_out 0 163757 bytes_in 0 163757 station_ip 5.119.68.191 163757 port 734 163757 unique_id port 163757 remote_ip 10.8.0.42 163758 username jamali 163758 mac 163758 bytes_out 0 163758 bytes_in 0 163758 station_ip 5.120.144.130 163758 port 696 163758 unique_id port 163758 remote_ip 10.8.0.70 163762 username mosi 163762 kill_reason Another user logged on this global unique id 163762 mac 163762 bytes_out 0 163762 bytes_in 0 163762 station_ip 151.235.96.72 163762 port 328 163762 unique_id port 163763 username hamidsalari 163763 mac 163763 bytes_out 0 163763 bytes_in 0 163763 station_ip 5.120.109.101 163763 port 729 163763 unique_id port 163763 remote_ip 10.8.0.222 163766 username hashtadani4 163766 mac 163766 bytes_out 145242 163766 bytes_in 1325862 163766 station_ip 83.123.49.52 163766 port 696 163766 unique_id port 163766 remote_ip 10.8.0.182 163767 username tahmasebi 163767 mac 163767 bytes_out 318119 163767 bytes_in 3636185 163767 station_ip 5.119.68.191 163767 port 729 163767 unique_id port 163767 remote_ip 10.8.0.42 163772 username pourshad 163772 mac 163772 bytes_out 0 163772 bytes_in 0 163772 station_ip 5.119.173.238 163772 port 382 163772 unique_id port 163772 remote_ip 10.8.1.154 163773 username hashtadani4 163773 mac 163773 bytes_out 5939 163773 bytes_in 10111 163773 station_ip 83.123.49.52 163773 port 696 163773 unique_id port 163773 remote_ip 10.8.0.182 163777 username tahmasebi 163777 mac 163777 bytes_out 0 163777 bytes_in 0 163777 station_ip 5.119.68.191 163777 port 736 163777 unique_id port 163777 remote_ip 10.8.0.42 163779 username hashtadani4 163779 mac 163779 bytes_out 0 163779 bytes_in 0 163779 station_ip 83.123.49.52 163779 port 736 163779 unique_id port 163779 remote_ip 10.8.0.182 163781 username jamali 163781 mac 163742 bytes_out 0 163742 bytes_in 0 163742 station_ip 5.202.6.91 163742 port 365 163742 unique_id port 163745 username sedighe 163745 mac 163745 bytes_out 0 163745 bytes_in 0 163745 station_ip 113.203.44.72 163745 port 381 163745 unique_id port 163745 remote_ip 10.8.1.78 163747 username jamali 163747 mac 163747 bytes_out 0 163747 bytes_in 0 163747 station_ip 5.120.144.130 163747 port 696 163747 unique_id port 163747 remote_ip 10.8.0.70 163750 username jamali 163750 mac 163750 bytes_out 11530 163750 bytes_in 14438 163750 station_ip 5.120.144.130 163750 port 738 163750 unique_id port 163750 remote_ip 10.8.0.70 163759 username kalantary 163759 mac 163759 bytes_out 1604352 163759 bytes_in 21225081 163759 station_ip 83.122.96.69 163759 port 739 163759 unique_id port 163759 remote_ip 10.8.0.98 163760 username barzegar 163760 mac 163760 bytes_out 0 163760 bytes_in 0 163760 station_ip 5.120.52.42 163760 port 381 163760 unique_id port 163760 remote_ip 10.8.1.174 163761 username tahmasebi 163761 mac 163761 bytes_out 0 163761 bytes_in 0 163761 station_ip 5.119.68.191 163761 port 696 163761 unique_id port 163761 remote_ip 10.8.0.42 163764 username jamali 163764 mac 163764 bytes_out 13311 163764 bytes_in 16415 163764 station_ip 5.120.144.130 163764 port 732 163764 unique_id port 163764 remote_ip 10.8.0.70 163765 username yaghobi 163765 mac 163765 bytes_out 0 163765 bytes_in 0 163765 station_ip 37.129.226.169 163765 port 736 163765 unique_id port 163769 username tahmasebi 163769 mac 163769 bytes_out 0 163769 bytes_in 0 163769 station_ip 5.119.68.191 163769 port 729 163769 unique_id port 163769 remote_ip 10.8.0.42 163771 username mosi 163771 mac 163771 bytes_out 0 163771 bytes_in 0 163771 station_ip 151.235.96.72 163771 port 328 163771 unique_id port 163774 username hashtadani4 163774 mac 163774 bytes_out 0 163774 bytes_in 0 163774 station_ip 83.123.49.52 163774 port 737 163774 unique_id port 163774 remote_ip 10.8.0.182 163778 username hashtadani4 163778 mac 163778 bytes_out 21634 163778 bytes_in 134153 163778 station_ip 83.123.49.52 163778 port 737 163778 unique_id port 163778 remote_ip 10.8.0.182 163783 username tahmasebi 163783 mac 163783 bytes_out 0 163783 bytes_in 0 163783 station_ip 5.119.68.191 163783 port 732 163783 unique_id port 163783 remote_ip 10.8.0.42 163787 username hashtadani4 163787 kill_reason Maximum check online fails reached 163787 mac 163787 bytes_out 0 163787 bytes_in 0 163787 station_ip 83.123.49.52 163787 port 732 163787 unique_id port 163789 username meysam 163789 mac 163789 bytes_out 5678 163789 bytes_in 5457 163789 station_ip 188.159.251.60 163789 port 736 163789 unique_id port 163789 remote_ip 10.8.0.110 163793 username barzegar 163793 kill_reason Another user logged on this global unique id 163793 mac 163793 bytes_out 0 163793 bytes_in 0 163793 station_ip 5.120.52.42 163793 port 328 163793 unique_id port 163793 remote_ip 10.8.1.174 163794 username jamali 163794 mac 163794 bytes_out 11585 163794 bytes_in 14453 163794 station_ip 5.120.144.130 163794 port 737 163794 unique_id port 163794 remote_ip 10.8.0.70 163795 username tahmasebi 163795 mac 163795 bytes_out 0 163795 bytes_in 0 163795 station_ip 5.119.68.191 163795 port 729 163795 unique_id port 163795 remote_ip 10.8.0.42 163800 username vanila 163800 mac 163800 bytes_out 154091 163800 bytes_in 256238 163800 station_ip 37.129.25.111 163800 port 737 163800 unique_id port 163775 unique_id port 163775 remote_ip 10.8.0.42 163776 username jamali 163776 mac 163776 bytes_out 0 163776 bytes_in 0 163776 station_ip 5.120.144.130 163776 port 732 163776 unique_id port 163776 remote_ip 10.8.0.70 163780 username pourshad 163780 mac 163780 bytes_out 0 163780 bytes_in 0 163780 station_ip 5.119.173.238 163780 port 381 163780 unique_id port 163780 remote_ip 10.8.1.154 163782 username tahmasebi 163782 mac 163782 bytes_out 0 163782 bytes_in 0 163782 station_ip 5.119.68.191 163782 port 736 163782 unique_id port 163782 remote_ip 10.8.0.42 163786 username jamali 163786 mac 163786 bytes_out 10559 163786 bytes_in 13708 163786 station_ip 5.120.144.130 163786 port 737 163786 unique_id port 163786 remote_ip 10.8.0.70 163788 username hosseine 163788 mac 163788 bytes_out 1676934 163788 bytes_in 10665124 163788 station_ip 83.122.185.5 163788 port 673 163788 unique_id port 163788 remote_ip 10.8.0.238 163791 username mosi 163791 mac 163791 bytes_out 321265 163791 bytes_in 1391052 163791 station_ip 151.235.96.72 163791 port 729 163791 unique_id port 163791 remote_ip 10.8.0.138 163799 username jamali 163799 mac 163799 bytes_out 0 163799 bytes_in 0 163799 station_ip 5.120.144.130 163799 port 673 163799 unique_id port 163799 remote_ip 10.8.0.70 163808 username barzegar 163808 mac 163808 bytes_out 51142 163808 bytes_in 325541 163808 station_ip 5.120.52.42 163808 port 383 163808 unique_id port 163808 remote_ip 10.8.1.174 163811 username ghiyasi 163811 mac 163811 bytes_out 57528 163811 bytes_in 140857 163811 station_ip 5.120.10.21 163811 port 380 163811 unique_id port 163811 remote_ip 10.8.1.38 163814 username vanila 163814 mac 163814 bytes_out 0 163814 bytes_in 0 163814 station_ip 37.129.25.111 163814 port 729 163814 unique_id port 163814 remote_ip 10.8.0.178 163815 username tahmasebi 163815 mac 163815 bytes_out 0 163815 bytes_in 0 163815 station_ip 5.119.68.191 163815 port 737 163815 unique_id port 163815 remote_ip 10.8.0.42 163817 username hashtadani4 163817 kill_reason Maximum check online fails reached 163817 mac 163817 bytes_out 0 163817 bytes_in 0 163817 station_ip 83.123.49.52 163817 port 729 163817 unique_id port 163819 username hamidsalari 163819 mac 163819 bytes_out 156198 163819 bytes_in 229007 163819 station_ip 5.120.109.101 163819 port 734 163819 unique_id port 163819 remote_ip 10.8.0.222 163822 username godarzi 163822 mac 163822 bytes_out 0 163822 bytes_in 0 163822 station_ip 5.202.6.91 163822 port 365 163822 unique_id port 163825 username barzegar 163825 mac 163825 bytes_out 0 163825 bytes_in 0 163825 station_ip 5.120.52.42 163825 port 736 163825 unique_id port 163825 remote_ip 10.8.0.234 163827 username tahmasebi 163827 mac 163827 bytes_out 0 163827 bytes_in 0 163827 station_ip 5.119.68.191 163827 port 737 163827 unique_id port 163827 remote_ip 10.8.0.42 163829 username hashtadani4 163829 kill_reason Maximum check online fails reached 163829 mac 163829 bytes_out 0 163829 bytes_in 0 163829 station_ip 83.123.49.52 163829 port 736 163829 unique_id port 163831 username hosseine 163831 mac 163831 bytes_out 188331 163831 bytes_in 677034 163831 station_ip 83.122.185.5 163831 port 738 163831 unique_id port 163831 remote_ip 10.8.0.238 163833 username hashtadani4 163833 mac 163833 bytes_out 0 163833 bytes_in 0 163833 station_ip 83.123.49.52 163833 port 741 163833 unique_id port 163833 remote_ip 10.8.0.182 163843 username ghiyasi 163781 bytes_out 15380 163781 bytes_in 28577 163781 station_ip 5.120.144.130 163781 port 732 163781 unique_id port 163781 remote_ip 10.8.0.70 163784 username hashtadani4 163784 mac 163784 bytes_out 0 163784 bytes_in 0 163784 station_ip 83.123.49.52 163784 port 736 163784 unique_id port 163784 remote_ip 10.8.0.182 163785 username hashtadani4 163785 mac 163785 bytes_out 0 163785 bytes_in 0 163785 station_ip 83.123.49.52 163785 port 382 163785 unique_id port 163785 remote_ip 10.8.1.142 163790 username jamali 163790 mac 163790 bytes_out 14029 163790 bytes_in 18431 163790 station_ip 5.120.144.130 163790 port 737 163790 unique_id port 163790 remote_ip 10.8.0.70 163792 username tahmasebi 163792 mac 163792 bytes_out 5389 163792 bytes_in 5823 163792 station_ip 5.119.68.191 163792 port 673 163792 unique_id port 163792 remote_ip 10.8.0.42 163796 username hashtadani4 163796 mac 163796 bytes_out 1277260 163796 bytes_in 18880883 163796 station_ip 83.123.49.52 163796 port 736 163796 unique_id port 163796 remote_ip 10.8.0.182 163797 username mohammadjavad 163797 mac 163797 bytes_out 82167 163797 bytes_in 719107 163797 station_ip 37.129.119.194 163797 port 739 163797 unique_id port 163797 remote_ip 10.8.0.142 163798 username barzegar 163798 mac 163798 bytes_out 0 163798 bytes_in 0 163798 station_ip 5.120.52.42 163798 port 328 163798 unique_id port 163801 username hashtadani4 163801 mac 163801 bytes_out 0 163801 bytes_in 0 163801 station_ip 83.123.49.52 163801 port 736 163801 unique_id port 163801 remote_ip 10.8.0.182 163804 username malekpoir 163804 kill_reason Another user logged on this global unique id 163804 mac 163804 bytes_out 0 163804 bytes_in 0 163804 station_ip 5.120.40.46 163804 port 677 163804 unique_id port 163806 username pourshad 163806 mac 163806 bytes_out 0 163806 bytes_in 0 163806 station_ip 5.119.173.238 163806 port 381 163806 unique_id port 163806 remote_ip 10.8.1.154 163807 username hashtadani4 163807 kill_reason Maximum check online fails reached 163807 mac 163807 bytes_out 0 163807 bytes_in 0 163807 station_ip 83.123.49.52 163807 port 673 163807 unique_id port 163812 username nilufarrajaei 163812 mac 163812 bytes_out 2127552 163812 bytes_in 2357600 163812 station_ip 83.123.151.0 163812 port 696 163812 unique_id port 163812 remote_ip 10.8.0.206 163816 username vanila 163816 mac 163816 bytes_out 69737 163816 bytes_in 65917 163816 station_ip 37.129.25.111 163816 port 696 163816 unique_id port 163816 remote_ip 10.8.0.178 163820 username jamali 163820 mac 163820 bytes_out 19732 163820 bytes_in 28507 163820 station_ip 5.120.144.130 163820 port 736 163820 unique_id port 163820 remote_ip 10.8.0.70 163826 username hashtadani4 163826 kill_reason Maximum check online fails reached 163826 mac 163826 bytes_out 0 163826 bytes_in 0 163826 station_ip 83.123.49.52 163826 port 740 163826 unique_id port 163834 username barzegar 163834 kill_reason Maximum check online fails reached 163834 mac 163834 bytes_out 0 163834 bytes_in 0 163834 station_ip 5.120.52.42 163834 port 737 163834 unique_id port 163835 username ghiyasi 163835 mac 163835 bytes_out 0 163835 bytes_in 0 163835 station_ip 5.120.10.21 163835 port 380 163835 unique_id port 163835 remote_ip 10.8.1.38 163837 username tahmasebi 163837 mac 163837 bytes_out 104763 163837 bytes_in 1421652 163837 station_ip 5.119.68.191 163837 port 382 163837 unique_id port 163837 remote_ip 10.8.1.90 163838 username tahmasebi 163838 mac 163838 bytes_out 0 163838 bytes_in 0 163800 remote_ip 10.8.0.178 163802 username jamali 163802 mac 163802 bytes_out 0 163802 bytes_in 0 163802 station_ip 5.120.144.130 163802 port 673 163802 unique_id port 163802 remote_ip 10.8.0.70 163803 username kalantary 163803 mac 163803 bytes_out 741827 163803 bytes_in 8619949 163803 station_ip 83.122.126.29 163803 port 729 163803 unique_id port 163803 remote_ip 10.8.0.98 163805 username kordestani 163805 mac 163805 bytes_out 0 163805 bytes_in 0 163805 station_ip 151.235.86.208 163805 port 328 163805 unique_id port 163805 remote_ip 10.8.1.98 163809 username tahmasebi 163809 mac 163809 bytes_out 0 163809 bytes_in 0 163809 station_ip 5.119.68.191 163809 port 737 163809 unique_id port 163809 remote_ip 10.8.0.42 163810 username hashtadani4 163810 mac 163810 bytes_out 2649 163810 bytes_in 5525 163810 station_ip 83.123.49.52 163810 port 382 163810 unique_id port 163810 remote_ip 10.8.1.142 163813 username hashtadani4 163813 mac 163813 bytes_out 0 163813 bytes_in 0 163813 station_ip 83.123.49.52 163813 port 740 163813 unique_id port 163813 remote_ip 10.8.0.182 163818 username ghiyasi 163818 mac 163818 bytes_out 2573 163818 bytes_in 4760 163818 station_ip 5.120.10.21 163818 port 380 163818 unique_id port 163818 remote_ip 10.8.1.38 163821 username barzegar 163821 mac 163821 bytes_out 5456 163821 bytes_in 11912 163821 station_ip 5.120.52.42 163821 port 737 163821 unique_id port 163821 remote_ip 10.8.0.234 163823 username tahmasebi 163823 mac 163823 bytes_out 2551 163823 bytes_in 4916 163823 station_ip 5.119.68.191 163823 port 737 163823 unique_id port 163823 remote_ip 10.8.0.42 163824 username hashtadani4 163824 mac 163824 bytes_out 0 163824 bytes_in 0 163824 station_ip 83.123.49.52 163824 port 382 163824 unique_id port 163824 remote_ip 10.8.1.142 163828 username khalili 163828 mac 163828 bytes_out 0 163828 bytes_in 0 163828 station_ip 5.119.240.171 163828 port 328 163828 unique_id port 163828 remote_ip 10.8.1.18 163830 username tahmasebi 163830 mac 163830 bytes_out 0 163830 bytes_in 0 163830 station_ip 5.119.68.191 163830 port 328 163830 unique_id port 163830 remote_ip 10.8.1.90 163832 username tahmasebi 163832 mac 163832 bytes_out 0 163832 bytes_in 0 163832 station_ip 5.119.68.191 163832 port 328 163832 unique_id port 163832 remote_ip 10.8.1.90 163836 username barzegar 163836 mac 163836 bytes_out 0 163836 bytes_in 0 163836 station_ip 5.120.52.42 163836 port 738 163836 unique_id port 163836 remote_ip 10.8.0.234 163839 username morteza 163839 mac 163839 bytes_out 152048 163839 bytes_in 452334 163839 station_ip 83.123.98.93 163839 port 741 163839 unique_id port 163839 remote_ip 10.8.0.46 163842 username hashtadani4 163842 mac 163842 bytes_out 0 163842 bytes_in 0 163842 station_ip 83.123.49.52 163842 port 738 163842 unique_id port 163842 remote_ip 10.8.0.182 163847 username jamali 163847 mac 163847 bytes_out 44067 163847 bytes_in 68641 163847 station_ip 5.120.144.130 163847 port 696 163847 unique_id port 163847 remote_ip 10.8.0.70 163850 username forozandeh1 163850 mac 163850 bytes_out 189925 163850 bytes_in 973363 163850 station_ip 83.123.104.19 163850 port 744 163850 unique_id port 163850 remote_ip 10.8.0.130 163852 username jamali 163852 mac 163852 bytes_out 28122 163852 bytes_in 39499 163852 station_ip 5.120.144.130 163852 port 738 163852 unique_id port 163852 remote_ip 10.8.0.70 163856 username hashtadani4 163856 mac 163838 station_ip 5.119.68.191 163838 port 380 163838 unique_id port 163838 remote_ip 10.8.1.90 163840 username nilufarrajaei 163840 mac 163840 bytes_out 0 163840 bytes_in 0 163840 station_ip 83.123.151.0 163840 port 381 163840 unique_id port 163840 remote_ip 10.8.1.166 163841 username tahmasebi 163841 mac 163841 bytes_out 0 163841 bytes_in 0 163841 station_ip 5.119.68.191 163841 port 380 163841 unique_id port 163841 remote_ip 10.8.1.90 163845 username vanila 163845 mac 163845 bytes_out 0 163845 bytes_in 0 163845 station_ip 37.129.25.111 163845 port 745 163845 unique_id port 163845 remote_ip 10.8.0.178 163846 username hashtadani4 163846 mac 163846 bytes_out 2058 163846 bytes_in 4388 163846 station_ip 83.123.49.52 163846 port 738 163846 unique_id port 163846 remote_ip 10.8.0.182 163848 username hashtadani4 163848 mac 163848 bytes_out 0 163848 bytes_in 0 163848 station_ip 83.123.49.52 163848 port 745 163848 unique_id port 163848 remote_ip 10.8.0.182 163851 username mohammadjavad 163851 mac 163851 bytes_out 33749 163851 bytes_in 135949 163851 station_ip 83.123.216.41 163851 port 741 163851 unique_id port 163851 remote_ip 10.8.0.142 163854 username hashtadani4 163854 mac 163854 bytes_out 43985 163854 bytes_in 32028 163854 station_ip 83.123.49.52 163854 port 741 163854 unique_id port 163854 remote_ip 10.8.0.182 163857 username ghiyasi 163857 mac 163857 bytes_out 0 163857 bytes_in 0 163857 station_ip 5.120.10.21 163857 port 365 163857 unique_id port 163857 remote_ip 10.8.1.38 163861 username sabaghnezhad 163861 mac 163861 bytes_out 0 163861 bytes_in 0 163861 station_ip 83.123.171.25 163861 port 745 163861 unique_id port 163861 remote_ip 10.8.0.186 163868 username hashtadani4 163868 kill_reason Maximum check online fails reached 163868 mac 163868 bytes_out 0 163868 bytes_in 0 163868 station_ip 83.123.49.52 163868 port 739 163868 unique_id port 163870 username barzegar 163870 mac 163870 bytes_out 15234 163870 bytes_in 83592 163870 station_ip 5.120.52.42 163870 port 696 163870 unique_id port 163870 remote_ip 10.8.0.234 163873 username hashtadani4 163873 mac 163873 bytes_out 2005 163873 bytes_in 4600 163873 station_ip 83.123.49.52 163873 port 696 163873 unique_id port 163873 remote_ip 10.8.0.182 163882 username barzegar 163882 mac 163882 bytes_out 5173614 163882 bytes_in 1005579 163882 station_ip 5.120.52.42 163882 port 750 163882 unique_id port 163882 remote_ip 10.8.0.234 163885 username sabaghnezhad 163885 mac 163885 bytes_out 0 163885 bytes_in 0 163885 station_ip 83.123.171.25 163885 port 381 163885 unique_id port 163885 remote_ip 10.8.1.130 163892 username aminvpn 163892 mac 163892 bytes_out 744805 163892 bytes_in 2000166 163892 station_ip 5.119.70.233 163892 port 738 163892 unique_id port 163892 remote_ip 10.8.0.14 163893 username morteza 163893 mac 163893 bytes_out 194364 163893 bytes_in 2359272 163893 station_ip 37.129.30.49 163893 port 750 163893 unique_id port 163893 remote_ip 10.8.0.46 163898 username mansour 163898 mac 163898 bytes_out 677933 163898 bytes_in 10009356 163898 station_ip 5.202.5.132 163898 port 744 163898 unique_id port 163898 remote_ip 10.8.0.30 163899 username hashtadani4 163899 mac 163899 bytes_out 0 163899 bytes_in 0 163899 station_ip 83.123.49.52 163899 port 744 163899 unique_id port 163899 remote_ip 10.8.0.182 163902 username aminvpn 163902 mac 163902 bytes_out 0 163902 bytes_in 0 163902 station_ip 5.119.210.108 163843 mac 163843 bytes_out 9542 163843 bytes_in 24093 163843 station_ip 5.120.10.21 163843 port 382 163843 unique_id port 163843 remote_ip 10.8.1.38 163844 username tahmorsi 163844 mac 163844 bytes_out 0 163844 bytes_in 0 163844 station_ip 86.57.117.9 163844 port 365 163844 unique_id port 163844 remote_ip 10.8.1.22 163849 username hashtadani4 163849 mac 163849 bytes_out 0 163849 bytes_in 0 163849 station_ip 83.123.49.52 163849 port 696 163849 unique_id port 163849 remote_ip 10.8.0.182 163853 username mohammadjavad 163853 mac 163853 bytes_out 97827 163853 bytes_in 111670 163853 station_ip 83.123.216.41 163853 port 696 163853 unique_id port 163853 remote_ip 10.8.0.142 163855 username shadkam 163855 mac 163855 bytes_out 0 163855 bytes_in 0 163855 station_ip 37.129.246.133 163855 port 380 163855 unique_id port 163855 remote_ip 10.8.1.218 163859 username tahmasebi 163859 mac 163859 bytes_out 0 163859 bytes_in 0 163859 station_ip 5.119.109.36 163859 port 746 163859 unique_id port 163859 remote_ip 10.8.0.42 163862 username mohammadjavad 163862 mac 163862 bytes_out 71984 163862 bytes_in 147061 163862 station_ip 37.129.131.88 163862 port 696 163862 unique_id port 163862 remote_ip 10.8.0.142 163863 username vanila 163863 mac 163863 bytes_out 296290 163863 bytes_in 1494908 163863 station_ip 37.129.25.111 163863 port 738 163863 unique_id port 163863 remote_ip 10.8.0.178 163864 username pourshad 163864 mac 163864 bytes_out 187518 163864 bytes_in 1967983 163864 station_ip 5.119.173.238 163864 port 739 163864 unique_id port 163864 remote_ip 10.8.0.18 163866 username hashtadani4 163866 mac 163866 bytes_out 0 163866 bytes_in 0 163866 station_ip 83.123.49.52 163866 port 739 163866 unique_id port 163866 remote_ip 10.8.0.182 163871 username hashtadani4 163871 mac 163871 bytes_out 0 163871 bytes_in 0 163871 station_ip 83.123.49.52 163871 port 696 163871 unique_id port 163871 remote_ip 10.8.0.182 163876 username tahmasebi 163876 mac 163876 bytes_out 0 163876 bytes_in 0 163876 station_ip 5.119.109.36 163876 port 696 163876 unique_id port 163876 remote_ip 10.8.0.42 163877 username kalantary 163877 kill_reason Another user logged on this global unique id 163877 mac 163877 bytes_out 0 163877 bytes_in 0 163877 station_ip 83.122.90.89 163877 port 743 163877 unique_id port 163877 remote_ip 10.8.0.98 163878 username jamali 163878 mac 163878 bytes_out 10521 163878 bytes_in 13063 163878 station_ip 5.120.144.130 163878 port 751 163878 unique_id port 163878 remote_ip 10.8.0.70 163880 username yaghobi 163880 mac 163880 bytes_out 800825 163880 bytes_in 4886632 163880 station_ip 83.123.238.155 163880 port 741 163880 unique_id port 163880 remote_ip 10.8.0.198 163881 username aminvpn 163881 unique_id port 163881 terminate_cause User-Request 163881 bytes_out 3280073 163881 bytes_in 160765522 163881 station_ip 31.57.128.179 163881 port 15728662 163881 nas_port_type Virtual 163881 remote_ip 5.5.5.232 163883 username kalantary 163883 mac 163883 bytes_out 0 163883 bytes_in 0 163883 station_ip 83.122.90.89 163883 port 743 163883 unique_id port 163887 username fezealinaghi 163887 kill_reason Another user logged on this global unique id 163887 mac 163887 bytes_out 0 163887 bytes_in 0 163887 station_ip 83.122.70.54 163887 port 380 163887 unique_id port 163887 remote_ip 10.8.1.162 163888 username tahmasebi 163888 mac 163888 bytes_out 0 163888 bytes_in 0 163888 station_ip 5.119.109.36 163888 port 743 163888 unique_id port 163856 bytes_out 0 163856 bytes_in 0 163856 station_ip 83.123.49.52 163856 port 741 163856 unique_id port 163856 remote_ip 10.8.0.182 163858 username shadkam 163858 mac 163858 bytes_out 0 163858 bytes_in 0 163858 station_ip 37.129.246.133 163858 port 380 163858 unique_id port 163858 remote_ip 10.8.1.218 163860 username barzegar 163860 mac 163860 bytes_out 500361 163860 bytes_in 1652519 163860 station_ip 5.120.52.42 163860 port 743 163860 unique_id port 163860 remote_ip 10.8.0.234 163865 username tahmasebi 163865 mac 163865 bytes_out 0 163865 bytes_in 0 163865 station_ip 5.119.109.36 163865 port 746 163865 unique_id port 163865 remote_ip 10.8.0.42 163867 username jamali 163867 mac 163867 bytes_out 54852 163867 bytes_in 67485 163867 station_ip 5.120.144.130 163867 port 744 163867 unique_id port 163867 remote_ip 10.8.0.70 163869 username hashtadani4 163869 mac 163869 bytes_out 0 163869 bytes_in 0 163869 station_ip 83.123.49.52 163869 port 750 163869 unique_id port 163869 remote_ip 10.8.0.182 163872 username jamali 163872 mac 163872 bytes_out 0 163872 bytes_in 0 163872 station_ip 5.120.144.130 163872 port 744 163872 unique_id port 163872 remote_ip 10.8.0.70 163874 username aminvpn 163874 mac 163874 bytes_out 212898 163874 bytes_in 688762 163874 station_ip 5.119.70.233 163874 port 749 163874 unique_id port 163874 remote_ip 10.8.0.14 163875 username hashtadani4 163875 mac 163875 bytes_out 0 163875 bytes_in 0 163875 station_ip 83.123.49.52 163875 port 365 163875 unique_id port 163875 remote_ip 10.8.1.142 163879 username mohammadjavad 163879 mac 163879 bytes_out 287604 163879 bytes_in 1297434 163879 station_ip 37.129.123.101 163879 port 738 163879 unique_id port 163879 remote_ip 10.8.0.142 163884 username vanila 163884 mac 163884 bytes_out 690358 163884 bytes_in 1780952 163884 station_ip 37.129.25.111 163884 port 744 163884 unique_id port 163884 remote_ip 10.8.0.178 163886 username morteza 163886 mac 163886 bytes_out 127260 163886 bytes_in 138488 163886 station_ip 37.129.30.49 163886 port 743 163886 unique_id port 163886 remote_ip 10.8.0.46 163895 username hashtadani4 163895 mac 163895 bytes_out 0 163895 bytes_in 0 163895 station_ip 83.123.49.52 163895 port 365 163895 unique_id port 163895 remote_ip 10.8.1.142 163896 username hashtadani4 163896 mac 163896 bytes_out 0 163896 bytes_in 0 163896 station_ip 83.123.49.52 163896 port 365 163896 unique_id port 163896 remote_ip 10.8.1.142 163897 username hashtadani4 163897 mac 163897 bytes_out 0 163897 bytes_in 0 163897 station_ip 83.123.49.52 163897 port 738 163897 unique_id port 163897 remote_ip 10.8.0.182 163900 username barzegar 163900 mac 163900 bytes_out 0 163900 bytes_in 0 163900 station_ip 5.120.52.42 163900 port 381 163900 unique_id port 163900 remote_ip 10.8.1.174 163906 username yaghobi 163906 kill_reason Another user logged on this global unique id 163906 mac 163906 bytes_out 0 163906 bytes_in 0 163906 station_ip 83.123.151.73 163906 port 749 163906 unique_id port 163906 remote_ip 10.8.0.198 163911 username jamali 163911 mac 163911 bytes_out 761555 163911 bytes_in 3991969 163911 station_ip 5.120.144.130 163911 port 751 163911 unique_id port 163911 remote_ip 10.8.0.70 163912 username aminvpn 163912 mac 163912 bytes_out 0 163912 bytes_in 0 163912 station_ip 5.119.210.108 163912 port 365 163912 unique_id port 163912 remote_ip 10.8.1.6 163913 username yaghobi 163913 mac 163913 bytes_out 0 163888 remote_ip 10.8.0.42 163889 username tahmasebi 163889 mac 163889 bytes_out 0 163889 bytes_in 0 163889 station_ip 5.119.109.36 163889 port 743 163889 unique_id port 163889 remote_ip 10.8.0.42 163890 username jamali 163890 mac 163890 bytes_out 50203 163890 bytes_in 116231 163890 station_ip 5.120.144.130 163890 port 696 163890 unique_id port 163890 remote_ip 10.8.0.70 163891 username tahmasebi 163891 mac 163891 bytes_out 0 163891 bytes_in 0 163891 station_ip 5.119.109.36 163891 port 696 163891 unique_id port 163891 remote_ip 10.8.0.42 163894 username aminvpn 163894 mac 163894 bytes_out 0 163894 bytes_in 0 163894 station_ip 5.119.210.108 163894 port 696 163894 unique_id port 163894 remote_ip 10.8.0.14 163901 username ahmadi1 163901 mac 163901 bytes_out 12049 163901 bytes_in 20409 163901 station_ip 83.123.101.55 163901 port 738 163901 unique_id port 163901 remote_ip 10.8.0.250 163903 username godarzi 163903 mac 163903 bytes_out 0 163903 bytes_in 0 163903 station_ip 5.202.6.91 163903 port 328 163903 unique_id port 163903 remote_ip 10.8.1.230 163905 username aminvpn 163905 mac 163905 bytes_out 0 163905 bytes_in 0 163905 station_ip 5.119.210.108 163905 port 328 163905 unique_id port 163905 remote_ip 10.8.1.6 163907 username rezaei 163907 mac 163907 bytes_out 3117518 163907 bytes_in 40109433 163907 station_ip 5.119.53.117 163907 port 747 163907 unique_id port 163907 remote_ip 10.8.0.230 163908 username aminvpn 163908 mac 163908 bytes_out 632455 163908 bytes_in 6782440 163908 station_ip 5.119.210.108 163908 port 365 163908 unique_id port 163908 remote_ip 10.8.1.6 163914 username aminvpn 163914 mac 163914 bytes_out 0 163914 bytes_in 0 163914 station_ip 5.119.210.108 163914 port 381 163914 unique_id port 163914 remote_ip 10.8.1.6 163915 username aminvpn 163915 mac 163915 bytes_out 0 163915 bytes_in 0 163915 station_ip 5.119.210.108 163915 port 365 163915 unique_id port 163915 remote_ip 10.8.1.6 163920 username khademi 163920 kill_reason Another user logged on this global unique id 163920 mac 163920 bytes_out 0 163920 bytes_in 0 163920 station_ip 113.203.78.119 163920 port 731 163920 unique_id port 163920 remote_ip 10.8.0.10 163925 username hashtadani4 163925 mac 163925 bytes_out 0 163925 bytes_in 0 163925 station_ip 83.123.49.52 163925 port 747 163925 unique_id port 163925 remote_ip 10.8.0.182 163926 username tahmasebi 163926 mac 163926 bytes_out 0 163926 bytes_in 0 163926 station_ip 5.119.109.36 163926 port 328 163926 unique_id port 163926 remote_ip 10.8.1.90 163929 username hashtadani4 163929 kill_reason Maximum check online fails reached 163929 mac 163929 bytes_out 0 163929 bytes_in 0 163929 station_ip 83.123.49.52 163929 port 747 163929 unique_id port 163931 username barzegar 163931 mac 163931 bytes_out 0 163931 bytes_in 0 163931 station_ip 5.120.52.42 163931 port 328 163931 unique_id port 163931 remote_ip 10.8.1.174 163934 username ghiyasi 163934 mac 163934 bytes_out 82946 163934 bytes_in 157959 163934 station_ip 5.120.10.21 163934 port 745 163934 unique_id port 163934 remote_ip 10.8.0.38 163936 username hashtadani4 163936 mac 163936 bytes_out 0 163936 bytes_in 0 163936 station_ip 83.123.49.52 163936 port 745 163936 unique_id port 163936 remote_ip 10.8.0.182 163941 username kalantary 163941 mac 163941 bytes_out 874333 163941 bytes_in 8612515 163941 station_ip 83.122.20.153 163941 port 738 163941 unique_id port 163941 remote_ip 10.8.0.98 163902 port 365 163902 unique_id port 163902 remote_ip 10.8.1.6 163904 username aminvpn 163904 mac 163904 bytes_out 0 163904 bytes_in 0 163904 station_ip 5.119.210.108 163904 port 381 163904 unique_id port 163904 remote_ip 10.8.1.6 163909 username aminvpn 163909 mac 163909 bytes_out 0 163909 bytes_in 0 163909 station_ip 5.119.210.108 163909 port 328 163909 unique_id port 163909 remote_ip 10.8.1.6 163910 username tahmasebi 163910 mac 163910 bytes_out 0 163910 bytes_in 0 163910 station_ip 5.119.109.36 163910 port 328 163910 unique_id port 163910 remote_ip 10.8.1.90 163916 username aminvpn 163916 mac 163916 bytes_out 0 163916 bytes_in 0 163916 station_ip 5.119.210.108 163916 port 381 163916 unique_id port 163916 remote_ip 10.8.1.6 163918 username barzegar 163918 mac 163918 bytes_out 0 163918 bytes_in 0 163918 station_ip 5.120.52.42 163918 port 747 163918 unique_id port 163918 remote_ip 10.8.0.234 163921 username hashtadani4 163921 mac 163921 bytes_out 0 163921 bytes_in 0 163921 station_ip 83.123.49.52 163921 port 738 163921 unique_id port 163921 remote_ip 10.8.0.182 163923 username hashtadani4 163923 mac 163923 bytes_out 0 163923 bytes_in 0 163923 station_ip 83.123.49.52 163923 port 747 163923 unique_id port 163923 remote_ip 10.8.0.182 163924 username aminvpn 163924 mac 163924 bytes_out 0 163924 bytes_in 0 163924 station_ip 5.119.210.108 163924 port 365 163924 unique_id port 163924 remote_ip 10.8.1.6 163927 username kordestani 163927 mac 163927 bytes_out 2093896 163927 bytes_in 19730173 163927 station_ip 151.235.86.208 163927 port 741 163927 unique_id port 163927 remote_ip 10.8.0.74 163930 username hosseine 163930 mac 163930 bytes_out 2839978 163930 bytes_in 29543631 163930 station_ip 83.122.185.5 163930 port 742 163930 unique_id port 163930 remote_ip 10.8.0.238 163933 username jamali 163933 mac 163933 bytes_out 16889 163933 bytes_in 21807 163933 station_ip 5.120.144.130 163933 port 743 163933 unique_id port 163933 remote_ip 10.8.0.70 163937 username aminvpn 163937 mac 163937 bytes_out 0 163937 bytes_in 0 163937 station_ip 5.119.210.108 163937 port 365 163937 unique_id port 163937 remote_ip 10.8.1.6 163939 username aminvpn 163939 mac 163939 bytes_out 0 163939 bytes_in 0 163939 station_ip 5.119.210.108 163939 port 328 163939 unique_id port 163939 remote_ip 10.8.1.6 163940 username jamali 163940 mac 163940 bytes_out 273370 163940 bytes_in 2763254 163940 station_ip 5.120.144.130 163940 port 745 163940 unique_id port 163940 remote_ip 10.8.0.70 163943 username aminvpn 163943 mac 163943 bytes_out 0 163943 bytes_in 0 163943 station_ip 5.119.210.108 163943 port 328 163943 unique_id port 163943 remote_ip 10.8.1.6 163947 username godarzi 163947 mac 163947 bytes_out 0 163947 bytes_in 0 163947 station_ip 5.202.6.91 163947 port 381 163947 unique_id port 163947 remote_ip 10.8.1.230 163950 username hashtadani4 163950 mac 163950 bytes_out 0 163950 bytes_in 0 163950 station_ip 83.123.49.52 163950 port 381 163950 unique_id port 163950 remote_ip 10.8.1.142 163951 username hashtadani4 163951 mac 163951 bytes_out 0 163951 bytes_in 0 163951 station_ip 83.123.49.52 163951 port 381 163951 unique_id port 163951 remote_ip 10.8.1.142 163952 username barzegar 163952 mac 163952 bytes_out 0 163952 bytes_in 0 163952 station_ip 5.120.52.42 163952 port 381 163952 unique_id port 163952 remote_ip 10.8.1.174 163913 bytes_in 0 163913 station_ip 83.123.151.73 163913 port 749 163913 unique_id port 163917 username vanila 163917 mac 163917 bytes_out 1507556 163917 bytes_in 9388517 163917 station_ip 37.129.25.111 163917 port 743 163917 unique_id port 163917 remote_ip 10.8.0.178 163919 username jamali 163919 mac 163919 bytes_out 70054 163919 bytes_in 144020 163919 station_ip 5.120.144.130 163919 port 744 163919 unique_id port 163919 remote_ip 10.8.0.70 163922 username hashtadani4 163922 mac 163922 bytes_out 0 163922 bytes_in 0 163922 station_ip 83.123.49.52 163922 port 738 163922 unique_id port 163922 remote_ip 10.8.0.182 163928 username kalantary 163928 mac 163928 bytes_out 644520 163928 bytes_in 7896736 163928 station_ip 83.122.20.153 163928 port 738 163928 unique_id port 163928 remote_ip 10.8.0.98 163932 username tahmasebi 163932 mac 163932 bytes_out 0 163932 bytes_in 0 163932 station_ip 5.119.109.36 163932 port 749 163932 unique_id port 163932 remote_ip 10.8.0.42 163935 username hashtadani4 163935 mac 163935 bytes_out 0 163935 bytes_in 0 163935 station_ip 83.123.49.52 163935 port 328 163935 unique_id port 163935 remote_ip 10.8.1.142 163938 username ghiyasi 163938 mac 163938 bytes_out 0 163938 bytes_in 0 163938 station_ip 5.119.91.248 163938 port 743 163938 unique_id port 163938 remote_ip 10.8.0.38 163942 username yaghobi 163942 mac 163942 bytes_out 2433886 163942 bytes_in 21663486 163942 station_ip 83.123.100.56 163942 port 744 163942 unique_id port 163942 remote_ip 10.8.0.198 163945 username hashtadani4 163945 mac 163945 bytes_out 0 163945 bytes_in 0 163945 station_ip 83.123.49.52 163945 port 744 163945 unique_id port 163945 remote_ip 10.8.0.182 163957 username tahmasebi 163957 mac 163957 bytes_out 0 163957 bytes_in 0 163957 station_ip 5.119.109.36 163957 port 744 163957 unique_id port 163957 remote_ip 10.8.0.42 163958 username aminvpn 163958 mac 163958 bytes_out 0 163958 bytes_in 0 163958 station_ip 5.119.210.108 163958 port 381 163958 unique_id port 163958 remote_ip 10.8.1.6 163961 username aminvpn 163961 mac 163961 bytes_out 413282 163961 bytes_in 487062 163961 station_ip 5.119.70.233 163961 port 696 163961 unique_id port 163961 remote_ip 10.8.0.14 163965 username khalili 163965 mac 163965 bytes_out 2248793 163965 bytes_in 36574754 163965 station_ip 5.119.216.227 163965 port 744 163965 unique_id port 163965 remote_ip 10.8.0.86 163969 username aminvpn 163969 mac 163969 bytes_out 0 163969 bytes_in 0 163969 station_ip 5.119.70.233 163969 port 696 163969 unique_id port 163969 remote_ip 10.8.0.14 163972 username hashtadani4 163972 kill_reason Another user logged on this global unique id 163972 mac 163972 bytes_out 0 163972 bytes_in 0 163972 station_ip 83.123.49.52 163972 port 751 163972 unique_id port 163972 remote_ip 10.8.0.182 163973 username aminvpn 163973 mac 163973 bytes_out 0 163973 bytes_in 0 163973 station_ip 5.119.70.233 163973 port 696 163973 unique_id port 163973 remote_ip 10.8.0.14 163975 username aminvpn 163975 mac 163975 bytes_out 0 163975 bytes_in 0 163975 station_ip 5.119.210.108 163975 port 745 163975 unique_id port 163975 remote_ip 10.8.0.14 163976 username aminvpn 163976 mac 163976 bytes_out 0 163976 bytes_in 0 163976 station_ip 5.119.70.233 163976 port 696 163976 unique_id port 163976 remote_ip 10.8.0.14 163978 username hosseine 163978 mac 163978 bytes_out 0 163978 bytes_in 0 163978 station_ip 83.122.185.5 163944 username aminvpn 163944 mac 163944 bytes_out 0 163944 bytes_in 0 163944 station_ip 5.119.210.108 163944 port 365 163944 unique_id port 163944 remote_ip 10.8.1.6 163946 username forozandeh1 163946 mac 163946 bytes_out 502911 163946 bytes_in 5329198 163946 station_ip 37.129.140.99 163946 port 738 163946 unique_id port 163946 remote_ip 10.8.0.130 163948 username hashtadani4 163948 mac 163948 bytes_out 419406 163948 bytes_in 6385221 163948 station_ip 83.123.49.52 163948 port 744 163948 unique_id port 163948 remote_ip 10.8.0.182 163949 username ghiyasi 163949 mac 163949 bytes_out 37951 163949 bytes_in 208173 163949 station_ip 5.119.61.255 163949 port 743 163949 unique_id port 163949 remote_ip 10.8.0.38 163953 username hashtadani4 163953 mac 163953 bytes_out 0 163953 bytes_in 0 163953 station_ip 83.123.49.52 163953 port 744 163953 unique_id port 163953 remote_ip 10.8.0.182 163954 username mohammadmahdi 163954 kill_reason Another user logged on this global unique id 163954 mac 163954 bytes_out 0 163954 bytes_in 0 163954 station_ip 5.120.48.178 163954 port 749 163954 unique_id port 163954 remote_ip 10.8.0.54 163955 username hashtadani4 163955 kill_reason Maximum check online fails reached 163955 mac 163955 bytes_out 0 163955 bytes_in 0 163955 station_ip 83.123.49.52 163955 port 738 163955 unique_id port 163956 username aminvpn 163956 mac 163956 bytes_out 0 163956 bytes_in 0 163956 station_ip 5.119.210.108 163956 port 328 163956 unique_id port 163956 remote_ip 10.8.1.6 163959 username tahmasebi 163959 mac 163959 bytes_out 0 163959 bytes_in 0 163959 station_ip 5.119.109.36 163959 port 381 163959 unique_id port 163959 remote_ip 10.8.1.90 163963 username aminvpn 163963 mac 163963 bytes_out 71265 163963 bytes_in 185170 163963 station_ip 5.119.70.233 163963 port 752 163963 unique_id port 163963 remote_ip 10.8.0.14 163968 username ghiyasi 163968 mac 163968 bytes_out 41667 163968 bytes_in 292108 163968 station_ip 5.119.61.255 163968 port 743 163968 unique_id port 163968 remote_ip 10.8.0.38 163970 username aminvpn 163970 mac 163970 bytes_out 0 163970 bytes_in 0 163970 station_ip 5.119.210.108 163970 port 743 163970 unique_id port 163970 remote_ip 10.8.0.14 163984 username rezaei 163984 mac 163984 bytes_out 1336502 163984 bytes_in 15587435 163984 station_ip 5.119.53.117 163984 port 744 163984 unique_id port 163984 remote_ip 10.8.0.230 163985 username hashtadani4 163985 mac 163985 bytes_out 0 163985 bytes_in 0 163985 station_ip 83.123.49.52 163985 port 751 163985 unique_id port 163991 username aminvpn 163991 mac 163991 bytes_out 0 163991 bytes_in 0 163991 station_ip 5.119.210.108 163991 port 365 163991 unique_id port 163991 remote_ip 10.8.1.6 163996 username hashtadani4 163996 mac 163996 bytes_out 0 163996 bytes_in 0 163996 station_ip 83.123.49.52 163996 port 751 163996 unique_id port 163996 remote_ip 10.8.0.182 163999 username aminvpn 163999 mac 163999 bytes_out 0 163999 bytes_in 0 163999 station_ip 5.119.70.233 163999 port 381 163999 unique_id port 163999 remote_ip 10.8.1.6 164002 username aminvpn 164002 mac 164002 bytes_out 0 164002 bytes_in 0 164002 station_ip 5.119.210.108 164002 port 365 164002 unique_id port 164002 remote_ip 10.8.1.6 164004 username aminvpn 164004 mac 164004 bytes_out 0 164004 bytes_in 0 164004 station_ip 5.119.70.233 164004 port 381 164004 unique_id port 164004 remote_ip 10.8.1.6 164007 username aminvpn 164007 mac 163960 username mohammadjavad 163960 mac 163960 bytes_out 0 163960 bytes_in 0 163960 station_ip 83.123.149.104 163960 port 365 163960 unique_id port 163960 remote_ip 10.8.1.146 163962 username aminvpn 163962 mac 163962 bytes_out 0 163962 bytes_in 0 163962 station_ip 5.119.210.108 163962 port 328 163962 unique_id port 163962 remote_ip 10.8.1.6 163964 username kalantary 163964 kill_reason Another user logged on this global unique id 163964 mac 163964 bytes_out 0 163964 bytes_in 0 163964 station_ip 83.122.20.153 163964 port 745 163964 unique_id port 163964 remote_ip 10.8.0.98 163966 username barzegar 163966 mac 163966 bytes_out 0 163966 bytes_in 0 163966 station_ip 5.120.52.42 163966 port 328 163966 unique_id port 163966 remote_ip 10.8.1.174 163967 username aminvpn 163967 mac 163967 bytes_out 25520 163967 bytes_in 33035 163967 station_ip 5.119.210.108 163967 port 696 163967 unique_id port 163967 remote_ip 10.8.0.14 163971 username kalantary 163971 mac 163971 bytes_out 0 163971 bytes_in 0 163971 station_ip 83.122.20.153 163971 port 745 163971 unique_id port 163974 username aminvpn 163974 unique_id port 163974 terminate_cause Lost-Carrier 163974 bytes_out 2710507 163974 bytes_in 10398007 163974 station_ip 5.120.43.143 163974 port 15728663 163974 nas_port_type Virtual 163974 remote_ip 5.5.5.230 163977 username jamali 163977 mac 163977 bytes_out 3453405 163977 bytes_in 41586825 163977 station_ip 5.120.144.130 163977 port 750 163977 unique_id port 163977 remote_ip 10.8.0.70 163979 username aminvpn 163979 mac 163979 bytes_out 0 163979 bytes_in 0 163979 station_ip 5.119.210.108 163979 port 745 163979 unique_id port 163979 remote_ip 10.8.0.14 163980 username hatami 163980 mac 163980 bytes_out 200579 163980 bytes_in 1110693 163980 station_ip 94.241.179.77 163980 port 741 163980 unique_id port 163980 remote_ip 10.8.0.106 163981 username barzegar 163981 mac 163981 bytes_out 0 163981 bytes_in 0 163981 station_ip 5.120.52.42 163981 port 750 163981 unique_id port 163981 remote_ip 10.8.0.234 163982 username tahmasebi 163982 mac 163982 bytes_out 0 163982 bytes_in 0 163982 station_ip 5.119.109.36 163982 port 750 163982 unique_id port 163982 remote_ip 10.8.0.42 163987 username mosi 163987 kill_reason Another user logged on this global unique id 163987 mac 163987 bytes_out 0 163987 bytes_in 0 163987 station_ip 151.235.96.72 163987 port 746 163987 unique_id port 163987 remote_ip 10.8.0.138 163988 username aminvpn 163988 mac 163988 bytes_out 44645 163988 bytes_in 64054 163988 station_ip 5.119.70.233 163988 port 745 163988 unique_id port 163988 remote_ip 10.8.0.14 163989 username mohammadmahdi 163989 kill_reason Another user logged on this global unique id 163989 mac 163989 bytes_out 0 163989 bytes_in 0 163989 station_ip 5.120.48.178 163989 port 749 163989 unique_id port 163994 username jafari 163994 kill_reason Another user logged on this global unique id 163994 mac 163994 bytes_out 0 163994 bytes_in 0 163994 station_ip 37.156.59.132 163994 port 743 163994 unique_id port 163994 remote_ip 10.8.0.242 163995 username aminvpn 163995 mac 163995 bytes_out 0 163995 bytes_in 0 163995 station_ip 5.119.210.108 163995 port 365 163995 unique_id port 163995 remote_ip 10.8.1.6 163998 username mosi 163998 mac 163998 bytes_out 0 163998 bytes_in 0 163998 station_ip 151.235.96.72 163998 port 746 163998 unique_id port 164000 username shadkam 164000 mac 164000 bytes_out 0 164000 bytes_in 0 164000 station_ip 83.122.224.251 164000 port 381 163978 port 742 163978 unique_id port 163978 remote_ip 10.8.0.238 163983 username ghiyasi 163983 mac 163983 bytes_out 8808 163983 bytes_in 10689 163983 station_ip 5.119.61.255 163983 port 742 163983 unique_id port 163983 remote_ip 10.8.0.38 163986 username tahmasebi 163986 mac 163986 bytes_out 0 163986 bytes_in 0 163986 station_ip 5.119.109.36 163986 port 742 163986 unique_id port 163986 remote_ip 10.8.0.42 163990 username hashtadani4 163990 mac 163990 bytes_out 0 163990 bytes_in 0 163990 station_ip 83.123.49.52 163990 port 751 163990 unique_id port 163990 remote_ip 10.8.0.182 163992 username jamali 163992 mac 163992 bytes_out 182959 163992 bytes_in 777109 163992 station_ip 5.120.144.130 163992 port 741 163992 unique_id port 163992 remote_ip 10.8.0.70 163993 username aminvpn 163993 mac 163993 bytes_out 0 163993 bytes_in 0 163993 station_ip 5.119.70.233 163993 port 381 163993 unique_id port 163993 remote_ip 10.8.1.6 163997 username barzegar 163997 mac 163997 bytes_out 0 163997 bytes_in 0 163997 station_ip 5.120.52.42 163997 port 741 163997 unique_id port 163997 remote_ip 10.8.0.234 164001 username hashtadani4 164001 mac 164001 bytes_out 0 164001 bytes_in 0 164001 station_ip 83.123.49.52 164001 port 741 164001 unique_id port 164001 remote_ip 10.8.0.182 164005 username aminvpn 164005 mac 164005 bytes_out 0 164005 bytes_in 0 164005 station_ip 5.119.70.233 164005 port 365 164005 unique_id port 164005 remote_ip 10.8.1.6 164006 username hashtadani4 164006 mac 164006 bytes_out 0 164006 bytes_in 0 164006 station_ip 83.123.49.52 164006 port 750 164006 unique_id port 164006 remote_ip 10.8.0.182 164011 username forozandeh1 164011 mac 164011 bytes_out 1230299 164011 bytes_in 16169084 164011 station_ip 83.122.228.49 164011 port 745 164011 unique_id port 164011 remote_ip 10.8.0.130 164013 username aminvpn 164013 mac 164013 bytes_out 0 164013 bytes_in 0 164013 station_ip 5.119.70.233 164013 port 365 164013 unique_id port 164013 remote_ip 10.8.1.6 164014 username pourshad 164014 mac 164014 bytes_out 378726 164014 bytes_in 2946772 164014 station_ip 5.119.173.238 164014 port 748 164014 unique_id port 164014 remote_ip 10.8.0.18 164017 username godarzi 164017 mac 164017 bytes_out 285230 164017 bytes_in 1369676 164017 station_ip 5.202.6.91 164017 port 752 164017 unique_id port 164017 remote_ip 10.8.0.174 164022 username barzegar 164022 mac 164022 bytes_out 0 164022 bytes_in 0 164022 station_ip 5.120.52.42 164022 port 381 164022 unique_id port 164022 remote_ip 10.8.1.174 164026 username yaghobi 164026 mac 164026 bytes_out 0 164026 bytes_in 0 164026 station_ip 83.122.100.65 164026 port 328 164026 unique_id port 164026 remote_ip 10.8.1.118 164029 username mohammadjavad 164029 mac 164029 bytes_out 0 164029 bytes_in 0 164029 station_ip 83.123.243.10 164029 port 382 164029 unique_id port 164029 remote_ip 10.8.1.146 164037 username hashtadani4 164037 mac 164037 bytes_out 2100 164037 bytes_in 4401 164037 station_ip 83.123.49.52 164037 port 741 164037 unique_id port 164037 remote_ip 10.8.0.182 164038 username mohammadmahdi 164038 mac 164038 bytes_out 0 164038 bytes_in 0 164038 station_ip 5.120.48.178 164038 port 749 164038 unique_id port 164040 username ghiyasi 164040 mac 164040 bytes_out 26621 164040 bytes_in 35741 164040 station_ip 5.120.131.127 164040 port 742 164040 unique_id port 164040 remote_ip 10.8.0.38 164041 username morteza 164000 unique_id port 164000 remote_ip 10.8.1.218 164003 username ghiyasi 164003 mac 164003 bytes_out 385580 164003 bytes_in 3912838 164003 station_ip 5.119.61.255 164003 port 750 164003 unique_id port 164003 remote_ip 10.8.0.38 164008 username barzegar 164008 mac 164008 bytes_out 0 164008 bytes_in 0 164008 station_ip 5.120.52.42 164008 port 746 164008 unique_id port 164008 remote_ip 10.8.0.234 164012 username ghiyasi 164012 mac 164012 bytes_out 9460 164012 bytes_in 10628 164012 station_ip 5.119.61.255 164012 port 741 164012 unique_id port 164012 remote_ip 10.8.0.38 164015 username hashtadani4 164015 kill_reason Maximum check online fails reached 164015 mac 164015 bytes_out 0 164015 bytes_in 0 164015 station_ip 83.123.49.52 164015 port 746 164015 unique_id port 164021 username mohammadmahdi 164021 kill_reason Another user logged on this global unique id 164021 mac 164021 bytes_out 0 164021 bytes_in 0 164021 station_ip 5.120.48.178 164021 port 749 164021 unique_id port 164023 username hashtadani4 164023 mac 164023 bytes_out 0 164023 bytes_in 0 164023 station_ip 83.123.49.52 164023 port 384 164023 unique_id port 164023 remote_ip 10.8.1.142 164024 username hashtadani4 164024 mac 164024 bytes_out 0 164024 bytes_in 0 164024 station_ip 83.123.49.52 164024 port 381 164024 unique_id port 164024 remote_ip 10.8.1.142 164027 username jamali 164027 mac 164027 bytes_out 113943 164027 bytes_in 366550 164027 station_ip 5.120.144.130 164027 port 753 164027 unique_id port 164027 remote_ip 10.8.0.70 164030 username aminvpn 164030 mac 164030 bytes_out 2143411 164030 bytes_in 23119635 164030 station_ip 5.119.210.108 164030 port 742 164030 unique_id port 164030 remote_ip 10.8.0.14 164032 username forozandeh1 164032 mac 164032 bytes_out 775149 164032 bytes_in 10646788 164032 station_ip 37.129.13.43 164032 port 748 164032 unique_id port 164032 remote_ip 10.8.0.130 164035 username hashtadani4 164035 mac 164035 bytes_out 31664 164035 bytes_in 68776 164035 station_ip 83.123.49.52 164035 port 744 164035 unique_id port 164035 remote_ip 10.8.0.182 164036 username tahmasebi 164036 mac 164036 bytes_out 0 164036 bytes_in 0 164036 station_ip 5.119.109.36 164036 port 382 164036 unique_id port 164036 remote_ip 10.8.1.90 164039 username barzegar 164039 mac 164039 bytes_out 0 164039 bytes_in 0 164039 station_ip 5.120.52.42 164039 port 744 164039 unique_id port 164039 remote_ip 10.8.0.234 164046 username godarzi 164046 mac 164046 bytes_out 461901 164046 bytes_in 5983302 164046 station_ip 5.202.6.91 164046 port 742 164046 unique_id port 164046 remote_ip 10.8.0.174 164054 username aminvpn 164054 mac 164054 bytes_out 0 164054 bytes_in 0 164054 station_ip 5.119.70.233 164054 port 380 164054 unique_id port 164054 remote_ip 10.8.1.6 164056 username aminvpn 164056 mac 164056 bytes_out 0 164056 bytes_in 0 164056 station_ip 5.119.210.108 164056 port 382 164056 unique_id port 164056 remote_ip 10.8.1.6 164065 username milan 164065 kill_reason Another user logged on this global unique id 164065 mac 164065 bytes_out 0 164065 bytes_in 0 164065 station_ip 5.120.91.29 164065 port 745 164065 unique_id port 164068 username hashtadani4 164068 kill_reason Maximum check online fails reached 164068 mac 164068 bytes_out 0 164068 bytes_in 0 164068 station_ip 83.123.49.52 164068 port 742 164068 unique_id port 164069 username godarzi 164069 mac 164069 bytes_out 115593 164069 bytes_in 677012 164069 station_ip 5.202.6.91 164069 port 744 164007 bytes_out 0 164007 bytes_in 0 164007 station_ip 5.119.210.108 164007 port 381 164007 unique_id port 164007 remote_ip 10.8.1.6 164009 username hosseine 164009 mac 164009 bytes_out 788821 164009 bytes_in 4965265 164009 station_ip 83.122.185.5 164009 port 696 164009 unique_id port 164009 remote_ip 10.8.0.238 164010 username saeed9658 164010 mac 164010 bytes_out 960824 164010 bytes_in 10867446 164010 station_ip 5.119.111.142 164010 port 744 164010 unique_id port 164010 remote_ip 10.8.0.166 164016 username hashtadani4 164016 kill_reason Maximum check online fails reached 164016 mac 164016 bytes_out 0 164016 bytes_in 0 164016 station_ip 83.123.49.52 164016 port 750 164016 unique_id port 164018 username malekpoir 164018 mac 164018 bytes_out 0 164018 bytes_in 0 164018 station_ip 5.120.40.46 164018 port 677 164018 unique_id port 164019 username jafari 164019 kill_reason Another user logged on this global unique id 164019 mac 164019 bytes_out 0 164019 bytes_in 0 164019 station_ip 37.156.59.132 164019 port 743 164019 unique_id port 164020 username tahmasebi 164020 mac 164020 bytes_out 0 164020 bytes_in 0 164020 station_ip 5.119.109.36 164020 port 381 164020 unique_id port 164020 remote_ip 10.8.1.90 164025 username fezealinaghi 164025 mac 164025 bytes_out 0 164025 bytes_in 0 164025 station_ip 83.122.70.54 164025 port 380 164025 unique_id port 164028 username malekpoir 164028 mac 164028 bytes_out 0 164028 bytes_in 0 164028 station_ip 5.120.40.46 164028 port 677 164028 unique_id port 164028 remote_ip 10.8.0.58 164031 username hosseine 164031 mac 164031 bytes_out 28867 164031 bytes_in 47845 164031 station_ip 83.122.185.5 164031 port 696 164031 unique_id port 164031 remote_ip 10.8.0.238 164033 username jafari 164033 kill_reason Another user logged on this global unique id 164033 mac 164033 bytes_out 0 164033 bytes_in 0 164033 station_ip 37.156.59.132 164033 port 743 164033 unique_id port 164034 username ghiyasi 164034 mac 164034 bytes_out 231427 164034 bytes_in 2238201 164034 station_ip 5.120.155.145 164034 port 741 164034 unique_id port 164034 remote_ip 10.8.0.38 164044 username milan 164044 kill_reason Another user logged on this global unique id 164044 mac 164044 bytes_out 0 164044 bytes_in 0 164044 station_ip 5.120.91.29 164044 port 745 164044 unique_id port 164044 remote_ip 10.8.0.218 164048 username morteza 164048 kill_reason Another user logged on this global unique id 164048 mac 164048 bytes_out 0 164048 bytes_in 0 164048 station_ip 37.129.95.151 164048 port 328 164048 unique_id port 164049 username tahmasebi 164049 mac 164049 bytes_out 16774 164049 bytes_in 56722 164049 station_ip 5.119.109.36 164049 port 742 164049 unique_id port 164049 remote_ip 10.8.0.42 164051 username aminvpn 164051 mac 164051 bytes_out 0 164051 bytes_in 0 164051 station_ip 5.119.210.108 164051 port 742 164051 unique_id port 164051 remote_ip 10.8.0.14 164055 username barzegar 164055 mac 164055 bytes_out 0 164055 bytes_in 0 164055 station_ip 5.120.52.42 164055 port 742 164055 unique_id port 164055 remote_ip 10.8.0.234 164057 username milan 164057 kill_reason Another user logged on this global unique id 164057 mac 164057 bytes_out 0 164057 bytes_in 0 164057 station_ip 5.120.91.29 164057 port 745 164057 unique_id port 164058 username hashtadani4 164058 mac 164058 bytes_out 48425 164058 bytes_in 155217 164058 station_ip 83.123.49.52 164058 port 744 164058 unique_id port 164058 remote_ip 10.8.0.182 164062 username aminvpn 164062 unique_id port 164041 kill_reason Another user logged on this global unique id 164041 mac 164041 bytes_out 0 164041 bytes_in 0 164041 station_ip 37.129.95.151 164041 port 328 164041 unique_id port 164041 remote_ip 10.8.1.62 164042 username shadkam 164042 mac 164042 bytes_out 0 164042 bytes_in 0 164042 station_ip 83.123.145.230 164042 port 380 164042 unique_id port 164042 remote_ip 10.8.1.218 164043 username tahmasebi 164043 mac 164043 bytes_out 0 164043 bytes_in 0 164043 station_ip 5.119.109.36 164043 port 748 164043 unique_id port 164043 remote_ip 10.8.0.42 164045 username tahmasebi 164045 mac 164045 bytes_out 0 164045 bytes_in 0 164045 station_ip 5.119.109.36 164045 port 748 164045 unique_id port 164045 remote_ip 10.8.0.42 164047 username shadkam 164047 mac 164047 bytes_out 0 164047 bytes_in 0 164047 station_ip 37.129.51.35 164047 port 380 164047 unique_id port 164047 remote_ip 10.8.1.218 164050 username jamali 164050 mac 164050 bytes_out 54372 164050 bytes_in 48926 164050 station_ip 5.120.144.130 164050 port 751 164050 unique_id port 164050 remote_ip 10.8.0.70 164052 username ghiyasi 164052 mac 164052 bytes_out 36036 164052 bytes_in 47948 164052 station_ip 5.120.103.189 164052 port 741 164052 unique_id port 164052 remote_ip 10.8.0.38 164053 username aminvpn 164053 mac 164053 bytes_out 0 164053 bytes_in 0 164053 station_ip 5.119.210.108 164053 port 383 164053 unique_id port 164053 remote_ip 10.8.1.6 164059 username hashtadani4 164059 mac 164059 bytes_out 0 164059 bytes_in 0 164059 station_ip 83.123.49.52 164059 port 742 164059 unique_id port 164059 remote_ip 10.8.0.182 164060 username morteza 164060 kill_reason Another user logged on this global unique id 164060 mac 164060 bytes_out 0 164060 bytes_in 0 164060 station_ip 37.129.95.151 164060 port 328 164060 unique_id port 164061 username jafari 164061 kill_reason Another user logged on this global unique id 164061 mac 164061 bytes_out 0 164061 bytes_in 0 164061 station_ip 37.156.59.132 164061 port 743 164061 unique_id port 164064 username hashtadani4 164064 kill_reason Maximum number of concurrent logins reached 164064 mac 164064 bytes_out 0 164064 bytes_in 0 164064 station_ip 83.123.49.52 164064 port 749 164064 unique_id port 164067 username hashtadani4 164067 kill_reason Maximum check online fails reached 164067 mac 164067 bytes_out 0 164067 bytes_in 0 164067 station_ip 83.123.49.52 164067 port 382 164067 unique_id port 164071 username milan 164071 kill_reason Another user logged on this global unique id 164071 mac 164071 bytes_out 0 164071 bytes_in 0 164071 station_ip 5.120.91.29 164071 port 745 164071 unique_id port 164072 username barzegar 164072 mac 164072 bytes_out 0 164072 bytes_in 0 164072 station_ip 5.120.52.42 164072 port 748 164072 unique_id port 164072 remote_ip 10.8.0.234 164081 username aminvpn 164081 unique_id port 164081 terminate_cause User-Request 164081 bytes_out 168800 164081 bytes_in 845841 164081 station_ip 31.57.128.179 164081 port 15728666 164081 nas_port_type Virtual 164081 remote_ip 5.5.5.227 164082 username tahmasebi 164082 mac 164082 bytes_out 0 164082 bytes_in 0 164082 station_ip 5.119.109.36 164082 port 744 164082 unique_id port 164082 remote_ip 10.8.0.42 164083 username milan 164083 kill_reason Another user logged on this global unique id 164083 mac 164083 bytes_out 0 164083 bytes_in 0 164083 station_ip 5.120.91.29 164083 port 745 164083 unique_id port 164085 username amin.saeedi 164085 unique_id port 164085 terminate_cause Lost-Carrier 164085 bytes_out 3029130 164085 bytes_in 85512478 164062 terminate_cause User-Request 164062 bytes_out 87570 164062 bytes_in 396839 164062 station_ip 31.57.128.179 164062 port 15728665 164062 nas_port_type Virtual 164062 remote_ip 5.5.5.228 164063 username hashtadani4 164063 kill_reason Maximum number of concurrent logins reached 164063 mac 164063 bytes_out 0 164063 bytes_in 0 164063 station_ip 83.123.49.52 164063 port 744 164063 unique_id port 164066 username tahmasebi 164066 mac 164066 bytes_out 0 164066 bytes_in 0 164066 station_ip 5.119.109.36 164066 port 383 164066 unique_id port 164066 remote_ip 10.8.1.90 164070 username jamali 164070 mac 164070 bytes_out 18432 164070 bytes_in 24133 164070 station_ip 5.120.144.130 164070 port 748 164070 unique_id port 164070 remote_ip 10.8.0.70 164075 username jamali 164075 mac 164075 bytes_out 10843 164075 bytes_in 13601 164075 station_ip 5.120.144.130 164075 port 744 164075 unique_id port 164075 remote_ip 10.8.0.70 164076 username aminvpn 164076 mac 164076 bytes_out 0 164076 bytes_in 0 164076 station_ip 5.119.210.108 164076 port 744 164076 unique_id port 164076 remote_ip 10.8.0.14 164078 username morteza 164078 kill_reason Another user logged on this global unique id 164078 mac 164078 bytes_out 0 164078 bytes_in 0 164078 station_ip 37.129.95.151 164078 port 328 164078 unique_id port 164086 username jafari 164086 kill_reason Another user logged on this global unique id 164086 mac 164086 bytes_out 0 164086 bytes_in 0 164086 station_ip 37.156.59.132 164086 port 743 164086 unique_id port 164090 username mohammadjavad 164090 mac 164090 bytes_out 0 164090 bytes_in 0 164090 station_ip 83.123.209.165 164090 port 383 164090 unique_id port 164090 remote_ip 10.8.1.146 164091 username aminvpn 164091 mac 164091 bytes_out 0 164091 bytes_in 0 164091 station_ip 83.122.209.202 164091 port 748 164091 unique_id port 164091 remote_ip 10.8.0.14 164093 username fezealinaghi 164093 kill_reason Another user logged on this global unique id 164093 mac 164093 bytes_out 0 164093 bytes_in 0 164093 station_ip 83.122.70.54 164093 port 381 164093 unique_id port 164093 remote_ip 10.8.1.162 164094 username malekpoir 164094 mac 164094 bytes_out 150927 164094 bytes_in 220457 164094 station_ip 5.120.40.46 164094 port 677 164094 unique_id port 164094 remote_ip 10.8.0.58 164097 username aminvpn 164097 unique_id port 164097 terminate_cause Lost-Carrier 164097 bytes_out 998855 164097 bytes_in 20127726 164097 station_ip 31.57.128.179 164097 port 15728667 164097 nas_port_type Virtual 164097 remote_ip 5.5.5.226 164099 username aminvpn 164099 mac 164099 bytes_out 42191 164099 bytes_in 77993 164099 station_ip 83.122.209.202 164099 port 696 164099 unique_id port 164099 remote_ip 10.8.0.14 164101 username aminvpn 164101 mac 164101 bytes_out 0 164101 bytes_in 0 164101 station_ip 5.119.70.233 164101 port 677 164101 unique_id port 164101 remote_ip 10.8.0.14 164105 username morteza 164105 kill_reason Another user logged on this global unique id 164105 mac 164105 bytes_out 0 164105 bytes_in 0 164105 station_ip 37.129.95.151 164105 port 328 164105 unique_id port 164110 username forozandeh1 164110 mac 164110 bytes_out 303735 164110 bytes_in 2331006 164110 station_ip 37.129.89.35 164110 port 696 164110 unique_id port 164110 remote_ip 10.8.0.130 164115 username aminvpn 164115 mac 164115 bytes_out 0 164115 bytes_in 0 164115 station_ip 5.119.210.108 164115 port 751 164115 unique_id port 164115 remote_ip 10.8.0.14 164116 username aminvpn 164116 mac 164116 bytes_out 0 164116 bytes_in 0 164116 station_ip 5.119.210.108 164069 unique_id port 164069 remote_ip 10.8.0.174 164073 username ghiyasi 164073 mac 164073 bytes_out 12094 164073 bytes_in 14126 164073 station_ip 5.120.103.189 164073 port 741 164073 unique_id port 164073 remote_ip 10.8.0.38 164074 username jafari 164074 kill_reason Another user logged on this global unique id 164074 mac 164074 bytes_out 0 164074 bytes_in 0 164074 station_ip 37.156.59.132 164074 port 743 164074 unique_id port 164077 username barzegar 164077 mac 164077 bytes_out 0 164077 bytes_in 0 164077 station_ip 5.120.52.42 164077 port 741 164077 unique_id port 164077 remote_ip 10.8.0.234 164079 username barzegar 164079 mac 164079 bytes_out 0 164079 bytes_in 0 164079 station_ip 5.120.52.42 164079 port 383 164079 unique_id port 164079 remote_ip 10.8.1.174 164080 username tahmasebi 164080 mac 164080 bytes_out 12645 164080 bytes_in 32040 164080 station_ip 5.119.109.36 164080 port 744 164080 unique_id port 164080 remote_ip 10.8.0.42 164084 username morteza 164084 kill_reason Another user logged on this global unique id 164084 mac 164084 bytes_out 0 164084 bytes_in 0 164084 station_ip 37.129.95.151 164084 port 328 164084 unique_id port 164087 username ghiyasi 164087 mac 164087 bytes_out 16769 164087 bytes_in 23471 164087 station_ip 5.120.103.189 164087 port 749 164087 unique_id port 164087 remote_ip 10.8.0.38 164089 username hosseine 164089 mac 164089 bytes_out 284713 164089 bytes_in 754364 164089 station_ip 83.122.185.5 164089 port 696 164089 unique_id port 164089 remote_ip 10.8.0.238 164095 username milan 164095 kill_reason Another user logged on this global unique id 164095 mac 164095 bytes_out 0 164095 bytes_in 0 164095 station_ip 5.120.91.29 164095 port 745 164095 unique_id port 164096 username barzegar 164096 mac 164096 bytes_out 0 164096 bytes_in 0 164096 station_ip 5.120.52.42 164096 port 677 164096 unique_id port 164096 remote_ip 10.8.0.234 164098 username fezealinaghi 164098 mac 164098 bytes_out 0 164098 bytes_in 0 164098 station_ip 83.122.70.54 164098 port 381 164098 unique_id port 164103 username tahmasebi 164103 mac 164103 bytes_out 0 164103 bytes_in 0 164103 station_ip 5.119.109.36 164103 port 381 164103 unique_id port 164103 remote_ip 10.8.1.90 164106 username jafari 164106 kill_reason Another user logged on this global unique id 164106 mac 164106 bytes_out 0 164106 bytes_in 0 164106 station_ip 37.156.59.132 164106 port 743 164106 unique_id port 164107 username milan 164107 kill_reason Another user logged on this global unique id 164107 mac 164107 bytes_out 0 164107 bytes_in 0 164107 station_ip 5.120.91.29 164107 port 745 164107 unique_id port 164108 username jamali 164108 mac 164108 bytes_out 132506 164108 bytes_in 139864 164108 station_ip 5.120.144.130 164108 port 751 164108 unique_id port 164108 remote_ip 10.8.0.70 164109 username aminvpn 164109 mac 164109 bytes_out 253291 164109 bytes_in 1073804 164109 station_ip 5.119.70.233 164109 port 677 164109 unique_id port 164109 remote_ip 10.8.0.14 164114 username morteza 164114 mac 164114 bytes_out 0 164114 bytes_in 0 164114 station_ip 37.129.95.151 164114 port 328 164114 unique_id port 164114 remote_ip 10.8.1.62 164118 username morteza 164118 mac 164118 bytes_out 0 164118 bytes_in 0 164118 station_ip 83.122.216.165 164118 port 677 164118 unique_id port 164118 remote_ip 10.8.0.46 164130 username tahmasebi 164130 mac 164130 bytes_out 0 164130 bytes_in 0 164130 station_ip 5.119.109.36 164130 port 328 164130 unique_id port 164085 station_ip 151.238.232.238 164085 port 15728664 164085 nas_port_type Virtual 164085 remote_ip 5.5.5.229 164088 username saeed9658 164088 mac 164088 bytes_out 892543 164088 bytes_in 8494764 164088 station_ip 5.119.111.142 164088 port 748 164088 unique_id port 164088 remote_ip 10.8.0.166 164092 username aminvpn 164092 mac 164092 bytes_out 0 164092 bytes_in 0 164092 station_ip 5.119.210.108 164092 port 696 164092 unique_id port 164092 remote_ip 10.8.0.14 164100 username aminvpn 164100 mac 164100 bytes_out 0 164100 bytes_in 0 164100 station_ip 5.119.70.233 164100 port 380 164100 unique_id port 164100 remote_ip 10.8.1.6 164102 username vanila 164102 mac 164102 bytes_out 339470 164102 bytes_in 400150 164102 station_ip 37.129.57.7 164102 port 744 164102 unique_id port 164102 remote_ip 10.8.0.178 164104 username ghiyasi 164104 mac 164104 bytes_out 0 164104 bytes_in 0 164104 station_ip 5.120.103.189 164104 port 384 164104 unique_id port 164104 remote_ip 10.8.1.38 164111 username aminvpn 164111 mac 164111 bytes_out 0 164111 bytes_in 0 164111 station_ip 5.119.210.108 164111 port 751 164111 unique_id port 164111 remote_ip 10.8.0.14 164112 username morteza 164112 mac 164112 bytes_out 0 164112 bytes_in 0 164112 station_ip 37.129.95.151 164112 port 328 164112 unique_id port 164113 username aminvpn 164113 mac 164113 bytes_out 4917 164113 bytes_in 8424 164113 station_ip 5.119.70.233 164113 port 677 164113 unique_id port 164113 remote_ip 10.8.0.14 164120 username tahmasebi 164120 mac 164120 bytes_out 21544 164120 bytes_in 37942 164120 station_ip 5.119.109.36 164120 port 383 164120 unique_id port 164120 remote_ip 10.8.1.90 164123 username milan 164123 kill_reason Another user logged on this global unique id 164123 mac 164123 bytes_out 0 164123 bytes_in 0 164123 station_ip 5.120.91.29 164123 port 745 164123 unique_id port 164124 username morteza 164124 mac 164124 bytes_out 9915 164124 bytes_in 50398 164124 station_ip 83.122.216.165 164124 port 753 164124 unique_id port 164124 remote_ip 10.8.0.46 164128 username jafari 164128 kill_reason Another user logged on this global unique id 164128 mac 164128 bytes_out 0 164128 bytes_in 0 164128 station_ip 37.156.59.132 164128 port 743 164128 unique_id port 164132 username godarzi 164132 mac 164132 bytes_out 1096595 164132 bytes_in 11801456 164132 station_ip 5.202.6.91 164132 port 752 164132 unique_id port 164132 remote_ip 10.8.0.174 164133 username malekpoir 164133 mac 164133 bytes_out 106345 164133 bytes_in 159540 164133 station_ip 5.120.40.46 164133 port 748 164133 unique_id port 164133 remote_ip 10.8.0.58 164135 username milan 164135 kill_reason Another user logged on this global unique id 164135 mac 164135 bytes_out 0 164135 bytes_in 0 164135 station_ip 5.120.91.29 164135 port 745 164135 unique_id port 164136 username aminvpn 164136 mac 164136 bytes_out 692230 164136 bytes_in 4586534 164136 station_ip 5.119.70.233 164136 port 751 164136 unique_id port 164136 remote_ip 10.8.0.14 164137 username aminvpn 164137 mac 164137 bytes_out 0 164137 bytes_in 0 164137 station_ip 5.119.210.108 164137 port 748 164137 unique_id port 164137 remote_ip 10.8.0.14 164141 username tahmasebi 164141 mac 164141 bytes_out 0 164141 bytes_in 0 164141 station_ip 5.119.109.36 164141 port 753 164141 unique_id port 164141 remote_ip 10.8.0.42 164149 username barzegar 164149 mac 164149 bytes_out 2844 164149 bytes_in 4975 164149 station_ip 5.120.52.42 164149 port 748 164116 port 677 164116 unique_id port 164116 remote_ip 10.8.0.14 164117 username aminvpn 164117 mac 164117 bytes_out 0 164117 bytes_in 0 164117 station_ip 5.119.210.108 164117 port 677 164117 unique_id port 164117 remote_ip 10.8.0.14 164119 username barzegar 164119 mac 164119 bytes_out 0 164119 bytes_in 0 164119 station_ip 5.120.52.42 164119 port 677 164119 unique_id port 164119 remote_ip 10.8.0.234 164121 username khalili 164121 kill_reason Another user logged on this global unique id 164121 mac 164121 bytes_out 0 164121 bytes_in 0 164121 station_ip 5.119.216.227 164121 port 696 164121 unique_id port 164121 remote_ip 10.8.0.86 164122 username tahmasebi 164122 mac 164122 bytes_out 0 164122 bytes_in 0 164122 station_ip 5.119.109.36 164122 port 328 164122 unique_id port 164122 remote_ip 10.8.1.90 164125 username kordestani 164125 mac 164125 bytes_out 592728 164125 bytes_in 8213140 164125 station_ip 151.235.98.58 164125 port 741 164125 unique_id port 164125 remote_ip 10.8.0.74 164126 username ghiyasi 164126 mac 164126 bytes_out 0 164126 bytes_in 0 164126 station_ip 5.120.103.189 164126 port 381 164126 unique_id port 164126 remote_ip 10.8.1.38 164127 username khalili 164127 mac 164127 bytes_out 0 164127 bytes_in 0 164127 station_ip 5.119.216.227 164127 port 696 164127 unique_id port 164129 username kordestani 164129 mac 164129 bytes_out 1747 164129 bytes_in 3784 164129 station_ip 151.235.78.211 164129 port 677 164129 unique_id port 164129 remote_ip 10.8.0.74 164134 username tahmasebi 164134 mac 164134 bytes_out 0 164134 bytes_in 0 164134 station_ip 5.119.109.36 164134 port 328 164134 unique_id port 164134 remote_ip 10.8.1.90 164138 username barzegar 164138 mac 164138 bytes_out 0 164138 bytes_in 0 164138 station_ip 5.120.52.42 164138 port 748 164138 unique_id port 164138 remote_ip 10.8.0.234 164140 username shadkam 164140 mac 164140 bytes_out 0 164140 bytes_in 0 164140 station_ip 83.122.12.45 164140 port 328 164140 unique_id port 164140 remote_ip 10.8.1.218 164143 username jafari 164143 kill_reason Another user logged on this global unique id 164143 mac 164143 bytes_out 0 164143 bytes_in 0 164143 station_ip 37.156.59.132 164143 port 743 164143 unique_id port 164145 username jamali 164145 mac 164145 bytes_out 45114 164145 bytes_in 96458 164145 station_ip 5.120.144.130 164145 port 744 164145 unique_id port 164145 remote_ip 10.8.0.70 164146 username forozandeh1 164146 mac 164146 bytes_out 0 164146 bytes_in 0 164146 station_ip 83.122.67.31 164146 port 751 164146 unique_id port 164146 remote_ip 10.8.0.130 164147 username aminvpn 164147 mac 164147 bytes_out 123563 164147 bytes_in 724357 164147 station_ip 5.119.210.108 164147 port 752 164147 unique_id port 164147 remote_ip 10.8.0.14 164148 username aminvpn 164148 mac 164148 bytes_out 0 164148 bytes_in 0 164148 station_ip 5.119.70.233 164148 port 751 164148 unique_id port 164148 remote_ip 10.8.0.14 164151 username ghiyasi 164151 mac 164151 bytes_out 0 164151 bytes_in 0 164151 station_ip 5.120.103.189 164151 port 381 164151 unique_id port 164151 remote_ip 10.8.1.38 164154 username aminvpn 164154 mac 164154 bytes_out 0 164154 bytes_in 0 164154 station_ip 5.119.70.233 164154 port 748 164154 unique_id port 164154 remote_ip 10.8.0.14 164159 username aminvpn 164159 mac 164159 bytes_out 243249 164159 bytes_in 3905578 164159 station_ip 5.119.210.108 164159 port 751 164159 unique_id port 164130 remote_ip 10.8.1.90 164131 username barzegar 164131 mac 164131 bytes_out 0 164131 bytes_in 0 164131 station_ip 5.120.52.42 164131 port 383 164131 unique_id port 164131 remote_ip 10.8.1.174 164139 username tahmasebi 164139 mac 164139 bytes_out 0 164139 bytes_in 0 164139 station_ip 5.119.109.36 164139 port 383 164139 unique_id port 164139 remote_ip 10.8.1.90 164142 username ahmadi1 164142 mac 164142 bytes_out 53521 164142 bytes_in 253317 164142 station_ip 83.123.101.55 164142 port 752 164142 unique_id port 164142 remote_ip 10.8.0.250 164144 username aminvpn 164144 mac 164144 bytes_out 34711 164144 bytes_in 33722 164144 station_ip 5.119.70.233 164144 port 748 164144 unique_id port 164144 remote_ip 10.8.0.14 164152 username rajaei 164152 mac 164152 bytes_out 0 164152 bytes_in 0 164152 station_ip 94.24.91.43 164152 port 748 164152 unique_id port 164152 remote_ip 10.8.0.34 164155 username tahmasebi 164155 mac 164155 bytes_out 0 164155 bytes_in 0 164155 station_ip 5.119.109.36 164155 port 381 164155 unique_id port 164155 remote_ip 10.8.1.90 164157 username hashtadani4 164157 mac 164157 bytes_out 129763 164157 bytes_in 1163482 164157 station_ip 83.123.49.52 164157 port 752 164157 unique_id port 164157 remote_ip 10.8.0.182 164158 username godarzi 164158 mac 164158 bytes_out 1627646 164158 bytes_in 10900834 164158 station_ip 5.202.6.91 164158 port 677 164158 unique_id port 164158 remote_ip 10.8.0.174 164163 username jafari 164163 kill_reason Another user logged on this global unique id 164163 mac 164163 bytes_out 0 164163 bytes_in 0 164163 station_ip 37.156.59.132 164163 port 743 164163 unique_id port 164168 username hashtadani4 164168 mac 164168 bytes_out 0 164168 bytes_in 0 164168 station_ip 83.123.49.52 164168 port 752 164168 unique_id port 164168 remote_ip 10.8.0.182 164171 username fezealinaghi 164171 mac 164171 bytes_out 574783 164171 bytes_in 2126381 164171 station_ip 83.122.248.207 164171 port 749 164171 unique_id port 164171 remote_ip 10.8.0.78 164175 username jafari 164175 mac 164175 bytes_out 0 164175 bytes_in 0 164175 station_ip 37.156.59.132 164175 port 743 164175 unique_id port 164180 username barzegar 164180 mac 164180 bytes_out 0 164180 bytes_in 0 164180 station_ip 5.120.52.42 164180 port 696 164180 unique_id port 164180 remote_ip 10.8.0.234 164181 username mohammadjavad 164181 mac 164181 bytes_out 0 164181 bytes_in 0 164181 station_ip 83.122.45.120 164181 port 328 164181 unique_id port 164181 remote_ip 10.8.1.146 164185 username alihosseini1 164185 mac 164185 bytes_out 0 164185 bytes_in 0 164185 station_ip 5.119.214.204 164185 port 380 164185 unique_id port 164185 remote_ip 10.8.1.106 164186 username pourshad 164186 mac 164186 bytes_out 0 164186 bytes_in 0 164186 station_ip 5.119.173.238 164186 port 381 164186 unique_id port 164186 remote_ip 10.8.1.154 164189 username kalantary 164189 mac 164189 bytes_out 2342925 164189 bytes_in 24236638 164189 station_ip 83.122.18.241 164189 port 751 164189 unique_id port 164189 remote_ip 10.8.0.98 164190 username hashtadani4 164190 mac 164190 bytes_out 0 164190 bytes_in 0 164190 station_ip 83.123.49.52 164190 port 677 164190 unique_id port 164190 remote_ip 10.8.0.182 164193 username tahmasebi 164193 mac 164193 bytes_out 0 164193 bytes_in 0 164193 station_ip 5.119.109.36 164193 port 380 164193 unique_id port 164193 remote_ip 10.8.1.90 164194 username aminvpn 164194 mac 164149 unique_id port 164149 remote_ip 10.8.0.234 164150 username tahmasebi 164150 mac 164150 bytes_out 0 164150 bytes_in 0 164150 station_ip 5.119.109.36 164150 port 328 164150 unique_id port 164150 remote_ip 10.8.1.90 164153 username aminvpn 164153 mac 164153 bytes_out 0 164153 bytes_in 0 164153 station_ip 5.119.210.108 164153 port 752 164153 unique_id port 164153 remote_ip 10.8.0.14 164156 username tahmasebi 164156 mac 164156 bytes_out 0 164156 bytes_in 0 164156 station_ip 5.119.109.36 164156 port 381 164156 unique_id port 164156 remote_ip 10.8.1.90 164162 username hosseine 164162 mac 164162 bytes_out 555272 164162 bytes_in 2474822 164162 station_ip 83.122.185.5 164162 port 749 164162 unique_id port 164162 remote_ip 10.8.0.238 164165 username hashtadani4 164165 mac 164165 bytes_out 4419 164165 bytes_in 6885 164165 station_ip 83.123.49.52 164165 port 748 164165 unique_id port 164165 remote_ip 10.8.0.182 164166 username hashtadani4 164166 mac 164166 bytes_out 0 164166 bytes_in 0 164166 station_ip 83.123.49.52 164166 port 751 164166 unique_id port 164166 remote_ip 10.8.0.182 164167 username vanila 164167 mac 164167 bytes_out 3047175 164167 bytes_in 36506909 164167 station_ip 37.129.57.7 164167 port 741 164167 unique_id port 164167 remote_ip 10.8.0.178 164170 username malekpoir 164170 mac 164170 bytes_out 51187 164170 bytes_in 63093 164170 station_ip 5.120.40.46 164170 port 696 164170 unique_id port 164170 remote_ip 10.8.0.58 164172 username barzegar 164172 mac 164172 bytes_out 176615 164172 bytes_in 711902 164172 station_ip 5.120.52.42 164172 port 748 164172 unique_id port 164172 remote_ip 10.8.0.234 164174 username godarzi 164174 mac 164174 bytes_out 0 164174 bytes_in 0 164174 station_ip 5.202.6.91 164174 port 696 164174 unique_id port 164174 remote_ip 10.8.0.174 164178 username aminvpn 164178 mac 164178 bytes_out 0 164178 bytes_in 0 164178 station_ip 83.122.209.202 164178 port 380 164178 unique_id port 164178 remote_ip 10.8.1.6 164182 username hashtadani4 164182 mac 164182 bytes_out 0 164182 bytes_in 0 164182 station_ip 83.123.49.52 164182 port 696 164182 unique_id port 164182 remote_ip 10.8.0.182 164184 username barzegar 164184 mac 164184 bytes_out 0 164184 bytes_in 0 164184 station_ip 5.120.52.42 164184 port 696 164184 unique_id port 164184 remote_ip 10.8.0.234 164187 username aminvpn 164187 mac 164187 bytes_out 72094 164187 bytes_in 90979 164187 station_ip 5.119.70.233 164187 port 677 164187 unique_id port 164187 remote_ip 10.8.0.14 164191 username barzegar 164191 mac 164191 bytes_out 0 164191 bytes_in 0 164191 station_ip 5.120.52.42 164191 port 743 164191 unique_id port 164191 remote_ip 10.8.0.234 164195 username tahmasebi 164195 kill_reason Maximum check online fails reached 164195 mac 164195 bytes_out 0 164195 bytes_in 0 164195 station_ip 5.119.109.36 164195 port 380 164195 unique_id port 164197 username aminvpn 164197 mac 164197 bytes_out 927209 164197 bytes_in 11761993 164197 station_ip 5.120.115.68 164197 port 741 164197 unique_id port 164197 remote_ip 10.8.0.14 164198 username aminvpn 164198 mac 164198 bytes_out 0 164198 bytes_in 0 164198 station_ip 5.119.70.233 164198 port 743 164198 unique_id port 164198 remote_ip 10.8.0.14 164200 username aminvpn 164200 mac 164200 bytes_out 0 164200 bytes_in 0 164200 station_ip 5.119.70.233 164200 port 743 164200 unique_id port 164200 remote_ip 10.8.0.14 164208 username aminvpn 164159 remote_ip 10.8.0.14 164160 username tahmasebi 164160 mac 164160 bytes_out 0 164160 bytes_in 0 164160 station_ip 5.119.109.36 164160 port 381 164160 unique_id port 164160 remote_ip 10.8.1.90 164161 username hashtadani4 164161 mac 164161 bytes_out 0 164161 bytes_in 0 164161 station_ip 83.123.49.52 164161 port 748 164161 unique_id port 164161 remote_ip 10.8.0.182 164164 username barzegar 164164 mac 164164 bytes_out 0 164164 bytes_in 0 164164 station_ip 5.120.52.42 164164 port 328 164164 unique_id port 164164 remote_ip 10.8.1.174 164169 username pourshad 164169 mac 164169 bytes_out 0 164169 bytes_in 0 164169 station_ip 5.119.173.238 164169 port 365 164169 unique_id port 164169 remote_ip 10.8.1.154 164173 username tahmasebi 164173 mac 164173 bytes_out 0 164173 bytes_in 0 164173 station_ip 5.119.109.36 164173 port 381 164173 unique_id port 164173 remote_ip 10.8.1.90 164176 username hashtadani4 164176 mac 164176 bytes_out 326499 164176 bytes_in 3129500 164176 station_ip 83.123.49.52 164176 port 741 164176 unique_id port 164176 remote_ip 10.8.0.182 164177 username pourshad 164177 mac 164177 bytes_out 0 164177 bytes_in 0 164177 station_ip 5.119.173.238 164177 port 365 164177 unique_id port 164177 remote_ip 10.8.1.154 164179 username forozandeh1 164179 mac 164179 bytes_out 227841 164179 bytes_in 1427940 164179 station_ip 83.122.21.54 164179 port 696 164179 unique_id port 164179 remote_ip 10.8.0.130 164183 username barzegar 164183 mac 164183 bytes_out 0 164183 bytes_in 0 164183 station_ip 5.120.52.42 164183 port 696 164183 unique_id port 164183 remote_ip 10.8.0.234 164188 username tahmasebi 164188 mac 164188 bytes_out 0 164188 bytes_in 0 164188 station_ip 5.119.109.36 164188 port 380 164188 unique_id port 164188 remote_ip 10.8.1.90 164192 username aminvpn 164192 mac 164192 bytes_out 892088 164192 bytes_in 11837051 164192 station_ip 5.120.115.68 164192 port 741 164192 unique_id port 164192 remote_ip 10.8.0.14 164199 username aminvpn 164199 mac 164199 bytes_out 0 164199 bytes_in 0 164199 station_ip 5.120.115.68 164199 port 741 164199 unique_id port 164199 remote_ip 10.8.0.14 164202 username hashtadani4 164202 mac 164202 bytes_out 0 164202 bytes_in 0 164202 station_ip 83.123.49.52 164202 port 743 164202 unique_id port 164202 remote_ip 10.8.0.182 164205 username khademi 164205 mac 164205 bytes_out 0 164205 bytes_in 0 164205 station_ip 113.203.78.119 164205 port 731 164205 unique_id port 164207 username aminvpn 164207 mac 164207 bytes_out 0 164207 bytes_in 0 164207 station_ip 5.120.115.68 164207 port 731 164207 unique_id port 164207 remote_ip 10.8.0.14 164210 username moradi 164210 mac 164210 bytes_out 0 164210 bytes_in 0 164210 station_ip 83.122.85.59 164210 port 748 164210 unique_id port 164210 remote_ip 10.8.0.126 164211 username moradi 164211 mac 164211 bytes_out 0 164211 bytes_in 0 164211 station_ip 5.134.187.248 164211 port 749 164211 unique_id port 164211 remote_ip 10.8.0.126 164213 username moradi 164213 mac 164213 bytes_out 0 164213 bytes_in 0 164213 station_ip 83.122.85.59 164213 port 751 164213 unique_id port 164213 remote_ip 10.8.0.126 164215 username moradi 164215 mac 164215 bytes_out 0 164215 bytes_in 0 164215 station_ip 5.134.187.248 164215 port 749 164215 unique_id port 164215 remote_ip 10.8.0.126 164216 username moradi 164216 mac 164216 bytes_out 0 164216 bytes_in 0 164194 bytes_out 0 164194 bytes_in 0 164194 station_ip 5.119.70.233 164194 port 743 164194 unique_id port 164194 remote_ip 10.8.0.14 164196 username hashtadani4 164196 mac 164196 bytes_out 0 164196 bytes_in 0 164196 station_ip 83.123.49.52 164196 port 743 164196 unique_id port 164196 remote_ip 10.8.0.182 164201 username aminvpn 164201 mac 164201 bytes_out 0 164201 bytes_in 0 164201 station_ip 5.120.115.68 164201 port 748 164201 unique_id port 164201 remote_ip 10.8.0.14 164203 username aminvpn 164203 mac 164203 bytes_out 0 164203 bytes_in 0 164203 station_ip 5.119.70.233 164203 port 749 164203 unique_id port 164203 remote_ip 10.8.0.14 164204 username aminvpn 164204 mac 164204 bytes_out 0 164204 bytes_in 0 164204 station_ip 5.120.115.68 164204 port 743 164204 unique_id port 164204 remote_ip 10.8.0.14 164206 username aminvpn 164206 mac 164206 bytes_out 0 164206 bytes_in 0 164206 station_ip 5.119.70.233 164206 port 748 164206 unique_id port 164206 remote_ip 10.8.0.14 164209 username malekpoir 164209 mac 164209 bytes_out 2119174 164209 bytes_in 25900805 164209 station_ip 5.120.40.46 164209 port 752 164209 unique_id port 164209 remote_ip 10.8.0.58 164220 username hashtadani4 164220 mac 164220 bytes_out 0 164220 bytes_in 0 164220 station_ip 83.123.49.52 164220 port 751 164220 unique_id port 164220 remote_ip 10.8.0.182 164222 username moradi 164222 mac 164222 bytes_out 0 164222 bytes_in 0 164222 station_ip 5.134.187.248 164222 port 751 164222 unique_id port 164222 remote_ip 10.8.0.126 164223 username ghiyasi 164223 mac 164223 bytes_out 0 164223 bytes_in 0 164223 station_ip 5.119.19.199 164223 port 381 164223 unique_id port 164223 remote_ip 10.8.1.38 164227 username moradi 164227 kill_reason Another user logged on this global unique id 164227 mac 164227 bytes_out 0 164227 bytes_in 0 164227 station_ip 5.134.187.248 164227 port 743 164227 unique_id port 164227 remote_ip 10.8.0.126 164228 username alihosseini1 164228 mac 164228 bytes_out 2162205 164228 bytes_in 18901358 164228 station_ip 5.119.214.204 164228 port 677 164228 unique_id port 164228 remote_ip 10.8.0.22 164236 username vanila 164236 mac 164236 bytes_out 67133 164236 bytes_in 102422 164236 station_ip 37.129.57.7 164236 port 751 164236 unique_id port 164236 remote_ip 10.8.0.178 164242 username moradi 164242 mac 164242 bytes_out 0 164242 bytes_in 0 164242 station_ip 5.134.187.248 164242 port 743 164242 unique_id port 164246 username hashtadani4 164246 mac 164246 bytes_out 0 164246 bytes_in 0 164246 station_ip 83.123.49.52 164246 port 743 164246 unique_id port 164246 remote_ip 10.8.0.182 164252 username moradi 164252 mac 164252 bytes_out 650419 164252 bytes_in 6912243 164252 station_ip 83.122.53.115 164252 port 384 164252 unique_id port 164252 remote_ip 10.8.1.202 164254 username tahmasebi 164254 kill_reason Another user logged on this global unique id 164254 mac 164254 bytes_out 0 164254 bytes_in 0 164254 station_ip 5.119.109.36 164254 port 743 164254 unique_id port 164254 remote_ip 10.8.0.42 164259 username hashtadani4 164259 kill_reason Another user logged on this global unique id 164259 mac 164259 bytes_out 0 164259 bytes_in 0 164259 station_ip 83.123.49.52 164259 port 696 164259 unique_id port 164259 remote_ip 10.8.0.182 164262 username mohammadjavad 164262 mac 164262 bytes_out 0 164262 bytes_in 0 164262 station_ip 83.123.227.37 164262 port 383 164262 unique_id port 164268 username milan 164268 kill_reason Another user logged on this global unique id 164208 mac 164208 bytes_out 26724 164208 bytes_in 49468 164208 station_ip 5.119.70.233 164208 port 743 164208 unique_id port 164208 remote_ip 10.8.0.14 164212 username hashtadani4 164212 mac 164212 bytes_out 0 164212 bytes_in 0 164212 station_ip 83.123.49.52 164212 port 749 164212 unique_id port 164212 remote_ip 10.8.0.182 164214 username barzegar 164214 mac 164214 bytes_out 0 164214 bytes_in 0 164214 station_ip 5.120.52.42 164214 port 381 164214 unique_id port 164214 remote_ip 10.8.1.174 164218 username hashtadani4 164218 mac 164218 bytes_out 0 164218 bytes_in 0 164218 station_ip 83.123.49.52 164218 port 751 164218 unique_id port 164218 remote_ip 10.8.0.182 164221 username moradi 164221 mac 164221 bytes_out 0 164221 bytes_in 0 164221 station_ip 83.122.85.59 164221 port 743 164221 unique_id port 164221 remote_ip 10.8.0.126 164224 username aminvpn 164224 unique_id port 164224 terminate_cause Lost-Carrier 164224 bytes_out 1766341 164224 bytes_in 5370036 164224 station_ip 5.120.43.143 164224 port 15728668 164224 nas_port_type Virtual 164224 remote_ip 5.5.5.225 164226 username moradi 164226 mac 164226 bytes_out 0 164226 bytes_in 0 164226 station_ip 83.122.85.59 164226 port 381 164226 unique_id port 164226 remote_ip 10.8.1.202 164229 username hashtadani4 164229 mac 164229 bytes_out 0 164229 bytes_in 0 164229 station_ip 83.123.49.52 164229 port 751 164229 unique_id port 164229 remote_ip 10.8.0.182 164230 username kordestani 164230 mac 164230 bytes_out 64309 164230 bytes_in 73878 164230 station_ip 151.235.101.63 164230 port 696 164230 unique_id port 164230 remote_ip 10.8.0.74 164231 username fezealinaghi 164231 mac 164231 bytes_out 291459 164231 bytes_in 1245080 164231 station_ip 83.122.188.159 164231 port 677 164231 unique_id port 164231 remote_ip 10.8.0.78 164233 username forozandeh1 164233 mac 164233 bytes_out 927029 164233 bytes_in 11023319 164233 station_ip 37.129.69.130 164233 port 749 164233 unique_id port 164233 remote_ip 10.8.0.130 164238 username pourshad 164238 kill_reason Another user logged on this global unique id 164238 mac 164238 bytes_out 0 164238 bytes_in 0 164238 station_ip 5.119.173.238 164238 port 328 164238 unique_id port 164238 remote_ip 10.8.1.154 164243 username vanila 164243 mac 164243 bytes_out 269299 164243 bytes_in 3646053 164243 station_ip 37.129.57.7 164243 port 677 164243 unique_id port 164243 remote_ip 10.8.0.178 164245 username vanila 164245 mac 164245 bytes_out 26007 164245 bytes_in 45621 164245 station_ip 37.129.57.7 164245 port 696 164245 unique_id port 164245 remote_ip 10.8.0.178 164248 username kordestani 164248 mac 164248 bytes_out 0 164248 bytes_in 0 164248 station_ip 151.235.84.211 164248 port 381 164248 unique_id port 164248 remote_ip 10.8.1.98 164249 username vanila 164249 kill_reason Another user logged on this global unique id 164249 mac 164249 bytes_out 0 164249 bytes_in 0 164249 station_ip 37.129.57.7 164249 port 749 164249 unique_id port 164249 remote_ip 10.8.0.178 164250 username vanila 164250 kill_reason Another user logged on this global unique id 164250 mac 164250 bytes_out 0 164250 bytes_in 0 164250 station_ip 37.129.57.7 164250 port 749 164250 unique_id port 164253 username milan 164253 kill_reason Another user logged on this global unique id 164253 mac 164253 bytes_out 0 164253 bytes_in 0 164253 station_ip 5.120.91.29 164253 port 745 164253 unique_id port 164258 username barzegar 164258 mac 164258 bytes_out 0 164258 bytes_in 0 164258 station_ip 5.120.52.42 164258 port 748 164216 station_ip 83.122.85.59 164216 port 751 164216 unique_id port 164216 remote_ip 10.8.0.126 164217 username aminvpn 164217 mac 164217 bytes_out 516310 164217 bytes_in 6225032 164217 station_ip 5.119.70.233 164217 port 743 164217 unique_id port 164217 remote_ip 10.8.0.14 164219 username moradi 164219 mac 164219 bytes_out 0 164219 bytes_in 0 164219 station_ip 5.134.187.248 164219 port 749 164219 unique_id port 164219 remote_ip 10.8.0.126 164225 username hashtadani4 164225 mac 164225 bytes_out 0 164225 bytes_in 0 164225 station_ip 83.123.49.52 164225 port 751 164225 unique_id port 164225 remote_ip 10.8.0.182 164232 username tahmasebi 164232 mac 164232 bytes_out 96468 164232 bytes_in 180864 164232 station_ip 5.119.109.36 164232 port 741 164232 unique_id port 164232 remote_ip 10.8.0.42 164234 username tahmasebi 164234 mac 164234 bytes_out 0 164234 bytes_in 0 164234 station_ip 5.119.109.36 164234 port 677 164234 unique_id port 164234 remote_ip 10.8.0.42 164235 username hashtadani4 164235 mac 164235 bytes_out 0 164235 bytes_in 0 164235 station_ip 83.123.49.52 164235 port 677 164235 unique_id port 164235 remote_ip 10.8.0.182 164237 username tahmasebi 164237 mac 164237 bytes_out 4012 164237 bytes_in 10585 164237 station_ip 5.119.109.36 164237 port 696 164237 unique_id port 164237 remote_ip 10.8.0.42 164239 username tahmasebi 164239 mac 164239 bytes_out 0 164239 bytes_in 0 164239 station_ip 5.119.109.36 164239 port 677 164239 unique_id port 164239 remote_ip 10.8.0.42 164240 username tahmasebi 164240 mac 164240 bytes_out 0 164240 bytes_in 0 164240 station_ip 5.119.109.36 164240 port 696 164240 unique_id port 164240 remote_ip 10.8.0.42 164241 username tahmasebi 164241 mac 164241 bytes_out 0 164241 bytes_in 0 164241 station_ip 5.119.109.36 164241 port 696 164241 unique_id port 164241 remote_ip 10.8.0.42 164244 username sabaghnezhad 164244 mac 164244 bytes_out 456642 164244 bytes_in 4064813 164244 station_ip 113.203.50.129 164244 port 748 164244 unique_id port 164244 remote_ip 10.8.0.186 164247 username alihosseini1 164247 mac 164247 bytes_out 272331 164247 bytes_in 424967 164247 station_ip 5.120.169.216 164247 port 748 164247 unique_id port 164247 remote_ip 10.8.0.22 164251 username barzegar 164251 mac 164251 bytes_out 0 164251 bytes_in 0 164251 station_ip 5.120.52.42 164251 port 748 164251 unique_id port 164251 remote_ip 10.8.0.234 164255 username mohammadjavad 164255 kill_reason Another user logged on this global unique id 164255 mac 164255 bytes_out 0 164255 bytes_in 0 164255 station_ip 83.123.227.37 164255 port 383 164255 unique_id port 164255 remote_ip 10.8.1.146 164256 username moradi 164256 mac 164256 bytes_out 55016 164256 bytes_in 79893 164256 station_ip 83.122.53.115 164256 port 381 164256 unique_id port 164256 remote_ip 10.8.1.202 164257 username moradi 164257 mac 164257 bytes_out 3213 164257 bytes_in 8331 164257 station_ip 83.122.53.115 164257 port 381 164257 unique_id port 164257 remote_ip 10.8.1.202 164261 username vanila 164261 kill_reason Another user logged on this global unique id 164261 mac 164261 bytes_out 0 164261 bytes_in 0 164261 station_ip 37.129.57.7 164261 port 749 164261 unique_id port 164264 username pourshad 164264 mac 164264 bytes_out 0 164264 bytes_in 0 164264 station_ip 5.119.173.238 164264 port 328 164264 unique_id port 164269 username vanila 164269 mac 164269 bytes_out 0 164269 bytes_in 0 164269 station_ip 37.129.57.7 164269 port 749 164258 unique_id port 164258 remote_ip 10.8.0.234 164260 username milan 164260 kill_reason Another user logged on this global unique id 164260 mac 164260 bytes_out 0 164260 bytes_in 0 164260 station_ip 5.120.91.29 164260 port 745 164260 unique_id port 164263 username barzegar 164263 mac 164263 bytes_out 0 164263 bytes_in 0 164263 station_ip 5.120.50.228 164263 port 748 164263 unique_id port 164263 remote_ip 10.8.0.234 164265 username milan 164265 kill_reason Another user logged on this global unique id 164265 mac 164265 bytes_out 0 164265 bytes_in 0 164265 station_ip 5.120.91.29 164265 port 745 164265 unique_id port 164266 username vanila 164266 kill_reason Another user logged on this global unique id 164266 mac 164266 bytes_out 0 164266 bytes_in 0 164266 station_ip 37.129.57.7 164266 port 749 164266 unique_id port 164267 username jamali 164267 mac 164267 bytes_out 0 164267 bytes_in 0 164267 station_ip 5.120.144.130 164267 port 744 164267 unique_id port 164267 remote_ip 10.8.0.70 164270 username vanila 164270 mac 164270 bytes_out 0 164270 bytes_in 0 164270 station_ip 37.129.57.7 164270 port 751 164270 unique_id port 164270 remote_ip 10.8.0.178 164274 username jamali 164274 mac 164274 bytes_out 0 164274 bytes_in 0 164274 station_ip 5.120.144.130 164274 port 751 164274 unique_id port 164274 remote_ip 10.8.0.70 164280 username barzegar 164280 mac 164280 bytes_out 0 164280 bytes_in 0 164280 station_ip 5.120.50.228 164280 port 383 164280 unique_id port 164280 remote_ip 10.8.1.174 164283 username milan 164283 kill_reason Another user logged on this global unique id 164283 mac 164283 bytes_out 0 164283 bytes_in 0 164283 station_ip 5.120.91.29 164283 port 745 164283 unique_id port 164285 username tahmasebi 164285 mac 164285 bytes_out 0 164285 bytes_in 0 164285 station_ip 5.119.109.36 164285 port 744 164285 unique_id port 164285 remote_ip 10.8.0.42 164288 username jamali 164288 mac 164288 bytes_out 488218 164288 bytes_in 5513559 164288 station_ip 5.120.144.130 164288 port 743 164288 unique_id port 164288 remote_ip 10.8.0.70 164291 username milan 164291 kill_reason Another user logged on this global unique id 164291 mac 164291 bytes_out 0 164291 bytes_in 0 164291 station_ip 5.120.91.29 164291 port 745 164291 unique_id port 164293 username morteza 164293 mac 164293 bytes_out 291768 164293 bytes_in 3409707 164293 station_ip 37.129.24.44 164293 port 753 164293 unique_id port 164293 remote_ip 10.8.0.46 164302 username tahmasebi 164302 mac 164302 bytes_out 0 164302 bytes_in 0 164302 station_ip 5.119.109.36 164302 port 749 164302 unique_id port 164302 remote_ip 10.8.0.42 164309 username hamidsalari 164309 mac 164309 bytes_out 0 164309 bytes_in 0 164309 station_ip 5.120.109.101 164309 port 734 164309 unique_id port 164309 remote_ip 10.8.0.222 164313 username mahdiyehalizadeh 164313 mac 164313 bytes_out 0 164313 bytes_in 0 164313 station_ip 5.119.3.2 164313 port 743 164313 unique_id port 164313 remote_ip 10.8.0.82 164314 username jamali 164314 mac 164314 bytes_out 0 164314 bytes_in 0 164314 station_ip 5.120.144.130 164314 port 696 164314 unique_id port 164314 remote_ip 10.8.0.70 164315 username kalantary 164315 mac 164315 bytes_out 0 164315 bytes_in 0 164315 station_ip 83.122.75.125 164315 port 753 164315 unique_id port 164315 remote_ip 10.8.0.98 164316 username meysam 164316 mac 164316 bytes_out 0 164316 bytes_in 0 164316 station_ip 188.159.251.60 164316 port 754 164316 unique_id port 164268 mac 164268 bytes_out 0 164268 bytes_in 0 164268 station_ip 5.120.91.29 164268 port 745 164268 unique_id port 164271 username jamali 164271 mac 164271 bytes_out 0 164271 bytes_in 0 164271 station_ip 5.120.144.130 164271 port 744 164271 unique_id port 164271 remote_ip 10.8.0.70 164273 username milan 164273 kill_reason Another user logged on this global unique id 164273 mac 164273 bytes_out 0 164273 bytes_in 0 164273 station_ip 5.120.91.29 164273 port 745 164273 unique_id port 164275 username tahmasebi 164275 mac 164275 bytes_out 0 164275 bytes_in 0 164275 station_ip 5.119.109.36 164275 port 743 164275 unique_id port 164276 username naeimeh 164276 mac 164276 bytes_out 818157 164276 bytes_in 7479921 164276 station_ip 37.129.97.141 164276 port 381 164276 unique_id port 164276 remote_ip 10.8.1.206 164277 username hashtadani4 164277 kill_reason Another user logged on this global unique id 164277 mac 164277 bytes_out 0 164277 bytes_in 0 164277 station_ip 83.123.49.52 164277 port 696 164277 unique_id port 164278 username naeimeh 164278 mac 164278 bytes_out 286856 164278 bytes_in 3387698 164278 station_ip 37.129.97.141 164278 port 381 164278 unique_id port 164278 remote_ip 10.8.1.206 164279 username khalili 164279 mac 164279 bytes_out 0 164279 bytes_in 0 164279 station_ip 5.119.216.227 164279 port 744 164279 unique_id port 164279 remote_ip 10.8.0.86 164281 username barzegar 164281 mac 164281 bytes_out 0 164281 bytes_in 0 164281 station_ip 5.120.50.228 164281 port 383 164281 unique_id port 164281 remote_ip 10.8.1.174 164286 username tahmasebi 164286 mac 164286 bytes_out 0 164286 bytes_in 0 164286 station_ip 5.119.109.36 164286 port 744 164286 unique_id port 164286 remote_ip 10.8.0.42 164294 username pourshad 164294 mac 164294 bytes_out 0 164294 bytes_in 0 164294 station_ip 5.119.173.238 164294 port 328 164294 unique_id port 164294 remote_ip 10.8.1.154 164296 username milan 164296 kill_reason Another user logged on this global unique id 164296 mac 164296 bytes_out 0 164296 bytes_in 0 164296 station_ip 5.120.91.29 164296 port 745 164296 unique_id port 164297 username Mahin 164297 kill_reason Relative expiration date has reached 164297 mac 164297 bytes_out 0 164297 bytes_in 0 164297 station_ip 5.119.93.81 164297 port 383 164297 unique_id port 164300 username Mahin 164300 kill_reason Relative expiration date has reached 164300 mac 164300 bytes_out 0 164300 bytes_in 0 164300 station_ip 5.119.93.81 164300 port 383 164300 unique_id port 164305 username alihosseini1 164305 kill_reason Another user logged on this global unique id 164305 mac 164305 bytes_out 0 164305 bytes_in 0 164305 station_ip 5.119.223.240 164305 port 748 164305 unique_id port 164305 remote_ip 10.8.0.22 164306 username jamali 164306 mac 164306 bytes_out 0 164306 bytes_in 0 164306 station_ip 5.120.144.130 164306 port 754 164306 unique_id port 164306 remote_ip 10.8.0.70 164312 username naeimeh 164312 mac 164312 bytes_out 2821119 164312 bytes_in 32036469 164312 station_ip 37.129.97.141 164312 port 381 164312 unique_id port 164312 remote_ip 10.8.1.206 164319 username fezealinaghi 164319 mac 164319 bytes_out 0 164319 bytes_in 0 164319 station_ip 83.122.222.207 164319 port 741 164319 unique_id port 164319 remote_ip 10.8.0.78 164321 username jamali 164321 mac 164321 bytes_out 0 164321 bytes_in 0 164321 station_ip 5.120.144.130 164321 port 696 164321 unique_id port 164321 remote_ip 10.8.0.70 164322 username hamidsalari 164322 mac 164269 unique_id port 164272 username barzegar 164272 mac 164272 bytes_out 0 164272 bytes_in 0 164272 station_ip 5.120.50.228 164272 port 749 164272 unique_id port 164272 remote_ip 10.8.0.234 164282 username naeimeh 164282 mac 164282 bytes_out 490435 164282 bytes_in 6297951 164282 station_ip 37.129.97.141 164282 port 381 164282 unique_id port 164282 remote_ip 10.8.1.206 164284 username kalantary 164284 mac 164284 bytes_out 0 164284 bytes_in 0 164284 station_ip 83.122.83.57 164284 port 751 164284 unique_id port 164284 remote_ip 10.8.0.98 164287 username shadkam 164287 mac 164287 bytes_out 0 164287 bytes_in 0 164287 station_ip 37.129.221.73 164287 port 752 164287 unique_id port 164287 remote_ip 10.8.0.62 164289 username pourshad 164289 mac 164289 bytes_out 35073 164289 bytes_in 44091 164289 station_ip 5.119.173.238 164289 port 328 164289 unique_id port 164289 remote_ip 10.8.1.154 164290 username barzegar 164290 mac 164290 bytes_out 0 164290 bytes_in 0 164290 station_ip 5.120.50.228 164290 port 754 164290 unique_id port 164290 remote_ip 10.8.0.234 164292 username tahmasebi 164292 mac 164292 bytes_out 0 164292 bytes_in 0 164292 station_ip 5.119.109.36 164292 port 743 164292 unique_id port 164292 remote_ip 10.8.0.42 164295 username sedighe 164295 mac 164295 bytes_out 0 164295 bytes_in 0 164295 station_ip 83.123.243.134 164295 port 751 164295 unique_id port 164295 remote_ip 10.8.0.146 164298 username mosi 164298 mac 164298 bytes_out 0 164298 bytes_in 0 164298 station_ip 151.235.96.72 164298 port 749 164298 unique_id port 164298 remote_ip 10.8.0.138 164299 username tahmasebi 164299 mac 164299 bytes_out 0 164299 bytes_in 0 164299 station_ip 5.119.109.36 164299 port 749 164299 unique_id port 164299 remote_ip 10.8.0.42 164301 username aminvpn 164301 mac 164301 bytes_out 2430628 164301 bytes_in 7467564 164301 station_ip 83.122.209.202 164301 port 365 164301 unique_id port 164301 remote_ip 10.8.1.6 164303 username barzegar 164303 mac 164303 bytes_out 4335364 164303 bytes_in 4447680 164303 station_ip 5.120.50.228 164303 port 328 164303 unique_id port 164303 remote_ip 10.8.1.174 164304 username jamali 164304 mac 164304 bytes_out 25897 164304 bytes_in 30170 164304 station_ip 5.120.144.130 164304 port 752 164304 unique_id port 164304 remote_ip 10.8.0.70 164307 username mirzaei 164307 kill_reason Another user logged on this global unique id 164307 mac 164307 bytes_out 0 164307 bytes_in 0 164307 station_ip 5.119.180.17 164307 port 721 164307 unique_id port 164308 username barzegar 164308 mac 164308 bytes_out 0 164308 bytes_in 0 164308 station_ip 5.120.50.228 164308 port 365 164308 unique_id port 164308 remote_ip 10.8.1.174 164310 username hashtadani4 164310 mac 164310 bytes_out 0 164310 bytes_in 0 164310 station_ip 83.123.49.52 164310 port 696 164310 unique_id port 164311 username jamali 164311 mac 164311 bytes_out 0 164311 bytes_in 0 164311 station_ip 5.120.144.130 164311 port 752 164311 unique_id port 164311 remote_ip 10.8.0.70 164317 username tahmasebi 164317 mac 164317 bytes_out 0 164317 bytes_in 0 164317 station_ip 5.119.109.36 164317 port 381 164317 unique_id port 164317 remote_ip 10.8.1.90 164318 username khalili 164318 mac 164318 bytes_out 0 164318 bytes_in 0 164318 station_ip 5.119.216.227 164318 port 743 164318 unique_id port 164318 remote_ip 10.8.0.86 164320 username tahmasebi 164320 mac 164320 bytes_out 0 164316 remote_ip 10.8.0.110 164327 username barzegar 164327 mac 164327 bytes_out 0 164327 bytes_in 0 164327 station_ip 5.120.50.228 164327 port 383 164327 unique_id port 164327 remote_ip 10.8.1.174 164329 username jamali 164329 mac 164329 bytes_out 0 164329 bytes_in 0 164329 station_ip 5.120.144.130 164329 port 741 164329 unique_id port 164329 remote_ip 10.8.0.70 164331 username aminvpn 164331 mac 164331 bytes_out 0 164331 bytes_in 0 164331 station_ip 5.119.70.233 164331 port 743 164331 unique_id port 164331 remote_ip 10.8.0.14 164332 username farhad2 164332 mac 164332 bytes_out 0 164332 bytes_in 0 164332 station_ip 5.120.107.133 164332 port 381 164332 unique_id port 164332 remote_ip 10.8.1.222 164337 username hashtadani4 164337 mac 164337 bytes_out 0 164337 bytes_in 0 164337 station_ip 83.123.49.52 164337 port 734 164337 unique_id port 164337 remote_ip 10.8.0.182 164341 username nilufarrajaei 164341 mac 164341 bytes_out 0 164341 bytes_in 0 164341 station_ip 113.203.20.177 164341 port 731 164341 unique_id port 164351 username barzegar 164351 mac 164351 bytes_out 0 164351 bytes_in 0 164351 station_ip 5.120.50.228 164351 port 383 164351 unique_id port 164351 remote_ip 10.8.1.174 164359 username hoorieh 164359 mac 164359 bytes_out 0 164359 bytes_in 0 164359 station_ip 5.120.163.207 164359 port 731 164359 unique_id port 164359 remote_ip 10.8.0.118 164360 username alihosseini1 164360 mac 164360 bytes_out 0 164360 bytes_in 0 164360 station_ip 5.119.223.240 164360 port 748 164360 unique_id port 164365 username shadkam 164365 mac 164365 bytes_out 0 164365 bytes_in 0 164365 station_ip 83.123.191.107 164365 port 677 164365 unique_id port 164365 remote_ip 10.8.0.62 164368 username moradi 164368 mac 164368 bytes_out 1088842 164368 bytes_in 19018844 164368 station_ip 46.225.212.246 164368 port 365 164368 unique_id port 164368 remote_ip 10.8.1.202 164370 username morteza 164370 mac 164370 bytes_out 0 164370 bytes_in 0 164370 station_ip 37.129.105.52 164370 port 365 164370 unique_id port 164370 remote_ip 10.8.1.62 164371 username morteza 164371 mac 164371 bytes_out 0 164371 bytes_in 0 164371 station_ip 37.129.105.52 164371 port 365 164371 unique_id port 164371 remote_ip 10.8.1.62 164373 username hashtadani4 164373 kill_reason Another user logged on this global unique id 164373 mac 164373 bytes_out 0 164373 bytes_in 0 164373 station_ip 5.202.132.86 164373 port 749 164373 unique_id port 164377 username vanila 164377 mac 164377 bytes_out 0 164377 bytes_in 0 164377 station_ip 37.129.57.7 164377 port 751 164377 unique_id port 164380 username barzegar 164380 kill_reason Maximum check online fails reached 164380 mac 164380 bytes_out 0 164380 bytes_in 0 164380 station_ip 5.120.50.228 164380 port 384 164380 unique_id port 164384 username yaghobi 164384 mac 164384 bytes_out 0 164384 bytes_in 0 164384 station_ip 83.122.191.114 164384 port 748 164384 unique_id port 164384 remote_ip 10.8.0.198 164386 username morteza 164386 mac 164386 bytes_out 0 164386 bytes_in 0 164386 station_ip 37.129.105.52 164386 port 748 164386 unique_id port 164386 remote_ip 10.8.0.46 164389 username hashtadani4 164389 kill_reason Another user logged on this global unique id 164389 mac 164389 bytes_out 0 164389 bytes_in 0 164389 station_ip 5.202.132.86 164389 port 749 164389 unique_id port 164390 username yaghobi 164390 mac 164390 bytes_out 0 164390 bytes_in 0 164320 bytes_in 0 164320 station_ip 5.119.109.36 164320 port 741 164320 unique_id port 164320 remote_ip 10.8.0.42 164324 username farhad2 164324 mac 164324 bytes_out 216168 164324 bytes_in 412724 164324 station_ip 5.120.107.133 164324 port 381 164324 unique_id port 164324 remote_ip 10.8.1.222 164325 username meysam 164325 mac 164325 bytes_out 0 164325 bytes_in 0 164325 station_ip 188.159.251.60 164325 port 743 164325 unique_id port 164325 remote_ip 10.8.0.110 164328 username hashtadani4 164328 mac 164328 bytes_out 0 164328 bytes_in 0 164328 station_ip 83.123.49.52 164328 port 734 164328 unique_id port 164328 remote_ip 10.8.0.182 164334 username farhad2 164334 mac 164334 bytes_out 0 164334 bytes_in 0 164334 station_ip 5.120.107.133 164334 port 381 164334 unique_id port 164334 remote_ip 10.8.1.222 164336 username hashtadani4 164336 mac 164336 bytes_out 0 164336 bytes_in 0 164336 station_ip 83.123.49.52 164336 port 734 164336 unique_id port 164336 remote_ip 10.8.0.182 164338 username hashtadani4 164338 mac 164338 bytes_out 0 164338 bytes_in 0 164338 station_ip 83.123.49.52 164338 port 734 164338 unique_id port 164338 remote_ip 10.8.0.182 164340 username nilufarrajaei 164340 kill_reason Another user logged on this global unique id 164340 mac 164340 bytes_out 0 164340 bytes_in 0 164340 station_ip 113.203.20.177 164340 port 731 164340 unique_id port 164340 remote_ip 10.8.0.206 164343 username hashtadani4 164343 mac 164343 bytes_out 0 164343 bytes_in 0 164343 station_ip 5.202.132.86 164343 port 731 164343 unique_id port 164343 remote_ip 10.8.0.182 164346 username sabaghnezhad 164346 mac 164346 bytes_out 0 164346 bytes_in 0 164346 station_ip 113.203.50.129 164346 port 731 164346 unique_id port 164346 remote_ip 10.8.0.186 164347 username mohammadmahdi 164347 kill_reason Another user logged on this global unique id 164347 mac 164347 bytes_out 0 164347 bytes_in 0 164347 station_ip 5.120.48.178 164347 port 696 164347 unique_id port 164347 remote_ip 10.8.0.54 164349 username tahmasebi 164349 mac 164349 bytes_out 0 164349 bytes_in 0 164349 station_ip 5.119.109.36 164349 port 383 164349 unique_id port 164349 remote_ip 10.8.1.90 164353 username pourshad 164353 kill_reason Another user logged on this global unique id 164353 mac 164353 bytes_out 0 164353 bytes_in 0 164353 station_ip 5.119.173.238 164353 port 749 164353 unique_id port 164353 remote_ip 10.8.0.18 164356 username jamali 164356 mac 164356 bytes_out 0 164356 bytes_in 0 164356 station_ip 5.120.144.130 164356 port 741 164356 unique_id port 164356 remote_ip 10.8.0.70 164363 username saeed9658 164363 mac 164363 bytes_out 0 164363 bytes_in 0 164363 station_ip 5.119.111.142 164363 port 741 164363 unique_id port 164363 remote_ip 10.8.0.166 164364 username barzegar 164364 mac 164364 bytes_out 0 164364 bytes_in 0 164364 station_ip 5.120.50.228 164364 port 383 164364 unique_id port 164364 remote_ip 10.8.1.174 164367 username mohammadmahdi 164367 kill_reason Another user logged on this global unique id 164367 mac 164367 bytes_out 0 164367 bytes_in 0 164367 station_ip 5.120.48.178 164367 port 696 164367 unique_id port 164372 username morteza 164372 mac 164372 bytes_out 0 164372 bytes_in 0 164372 station_ip 37.129.105.52 164372 port 365 164372 unique_id port 164372 remote_ip 10.8.1.62 164374 username farhad2 164374 kill_reason Another user logged on this global unique id 164374 mac 164374 bytes_out 0 164374 bytes_in 0 164374 station_ip 5.120.107.133 164374 port 381 164374 unique_id port 164322 bytes_out 0 164322 bytes_in 0 164322 station_ip 5.120.109.101 164322 port 734 164322 unique_id port 164322 remote_ip 10.8.0.222 164323 username Mahin 164323 kill_reason Relative expiration date has reached 164323 mac 164323 bytes_out 0 164323 bytes_in 0 164323 station_ip 5.119.93.81 164323 port 696 164323 unique_id port 164326 username hashtadani4 164326 mac 164326 bytes_out 0 164326 bytes_in 0 164326 station_ip 83.123.49.52 164326 port 752 164326 unique_id port 164326 remote_ip 10.8.0.182 164330 username Mahin 164330 kill_reason Relative expiration date has reached 164330 mac 164330 bytes_out 0 164330 bytes_in 0 164330 station_ip 5.119.93.81 164330 port 741 164330 unique_id port 164333 username hashtadani4 164333 mac 164333 bytes_out 0 164333 bytes_in 0 164333 station_ip 83.123.49.52 164333 port 734 164333 unique_id port 164333 remote_ip 10.8.0.182 164335 username shadkam 164335 mac 164335 bytes_out 0 164335 bytes_in 0 164335 station_ip 37.129.113.8 164335 port 743 164335 unique_id port 164335 remote_ip 10.8.0.62 164339 username hashtadani4 164339 mac 164339 bytes_out 0 164339 bytes_in 0 164339 station_ip 5.202.132.86 164339 port 734 164339 unique_id port 164339 remote_ip 10.8.0.182 164342 username tahmasebi 164342 mac 164342 bytes_out 0 164342 bytes_in 0 164342 station_ip 5.119.109.36 164342 port 383 164342 unique_id port 164342 remote_ip 10.8.1.90 164344 username sabaghnezhad 164344 mac 164344 bytes_out 0 164344 bytes_in 0 164344 station_ip 113.203.50.129 164344 port 677 164344 unique_id port 164344 remote_ip 10.8.0.186 164345 username kalantary 164345 mac 164345 bytes_out 240668 164345 bytes_in 1252463 164345 station_ip 83.122.75.125 164345 port 383 164345 unique_id port 164345 remote_ip 10.8.1.26 164348 username hashtadani4 164348 mac 164348 bytes_out 0 164348 bytes_in 0 164348 station_ip 5.202.132.86 164348 port 677 164348 unique_id port 164348 remote_ip 10.8.0.182 164350 username farhad2 164350 mac 164350 bytes_out 0 164350 bytes_in 0 164350 station_ip 5.120.107.133 164350 port 381 164350 unique_id port 164350 remote_ip 10.8.1.222 164352 username vanila 164352 kill_reason Another user logged on this global unique id 164352 mac 164352 bytes_out 0 164352 bytes_in 0 164352 station_ip 37.129.57.7 164352 port 751 164352 unique_id port 164352 remote_ip 10.8.0.178 164354 username fezealinaghi 164354 mac 164354 bytes_out 0 164354 bytes_in 0 164354 station_ip 83.122.196.183 164354 port 677 164354 unique_id port 164354 remote_ip 10.8.0.78 164355 username pourshad 164355 mac 164355 bytes_out 0 164355 bytes_in 0 164355 station_ip 5.119.173.238 164355 port 749 164355 unique_id port 164357 username tahmasebi 164357 mac 164357 bytes_out 0 164357 bytes_in 0 164357 station_ip 5.119.109.36 164357 port 749 164357 unique_id port 164357 remote_ip 10.8.0.42 164358 username mohammadmahdi 164358 kill_reason Another user logged on this global unique id 164358 mac 164358 bytes_out 0 164358 bytes_in 0 164358 station_ip 5.120.48.178 164358 port 696 164358 unique_id port 164361 username hashtadani4 164361 kill_reason Another user logged on this global unique id 164361 mac 164361 bytes_out 0 164361 bytes_in 0 164361 station_ip 5.202.132.86 164361 port 749 164361 unique_id port 164361 remote_ip 10.8.0.182 164362 username barzegar 164362 mac 164362 bytes_out 6809 164362 bytes_in 8477 164362 station_ip 5.120.50.228 164362 port 383 164362 unique_id port 164362 remote_ip 10.8.1.174 164366 username morteza 164366 mac 164366 bytes_out 0 164366 bytes_in 0 164366 station_ip 37.129.105.52 164366 port 384 164366 unique_id port 164366 remote_ip 10.8.1.62 164369 username morteza 164369 mac 164369 bytes_out 0 164369 bytes_in 0 164369 station_ip 37.129.105.52 164369 port 384 164369 unique_id port 164369 remote_ip 10.8.1.62 164375 username tahmasebi 164375 mac 164375 bytes_out 0 164375 bytes_in 0 164375 station_ip 5.119.109.36 164375 port 365 164375 unique_id port 164375 remote_ip 10.8.1.90 164379 username barzegar 164379 mac 164379 bytes_out 0 164379 bytes_in 0 164379 station_ip 5.120.50.228 164379 port 741 164379 unique_id port 164379 remote_ip 10.8.0.234 164383 username tahmasebi 164383 mac 164383 bytes_out 0 164383 bytes_in 0 164383 station_ip 5.119.109.36 164383 port 677 164383 unique_id port 164383 remote_ip 10.8.0.42 164387 username yaghobi 164387 mac 164387 bytes_out 0 164387 bytes_in 0 164387 station_ip 83.122.191.114 164387 port 677 164387 unique_id port 164387 remote_ip 10.8.0.198 164388 username nilufarrajaei 164388 mac 164388 bytes_out 0 164388 bytes_in 0 164388 station_ip 113.203.20.177 164388 port 743 164388 unique_id port 164388 remote_ip 10.8.0.206 164392 username yaghobi 164392 mac 164392 bytes_out 0 164392 bytes_in 0 164392 station_ip 37.129.0.255 164392 port 385 164392 unique_id port 164392 remote_ip 10.8.1.118 164396 username jamali 164396 mac 164396 bytes_out 0 164396 bytes_in 0 164396 station_ip 5.120.144.130 164396 port 752 164396 unique_id port 164396 remote_ip 10.8.0.70 164398 username mohammadmahdi 164398 mac 164398 bytes_out 0 164398 bytes_in 0 164398 station_ip 5.120.48.178 164398 port 696 164398 unique_id port 164401 username tahmasebi 164401 mac 164401 bytes_out 0 164401 bytes_in 0 164401 station_ip 5.119.109.36 164401 port 365 164401 unique_id port 164401 remote_ip 10.8.1.90 164403 username morteza 164403 kill_reason Another user logged on this global unique id 164403 mac 164403 bytes_out 0 164403 bytes_in 0 164403 station_ip 37.129.105.52 164403 port 677 164403 unique_id port 164403 remote_ip 10.8.0.46 164404 username hashtadani4 164404 mac 164404 bytes_out 0 164404 bytes_in 0 164404 station_ip 5.202.132.86 164404 port 752 164404 unique_id port 164404 remote_ip 10.8.0.182 164408 username tahmasebi 164408 mac 164408 bytes_out 0 164408 bytes_in 0 164408 station_ip 5.119.109.36 164408 port 383 164408 unique_id port 164408 remote_ip 10.8.1.90 164410 username Mahin 164410 kill_reason Relative expiration date has reached 164410 mac 164410 bytes_out 0 164410 bytes_in 0 164410 station_ip 5.119.237.145 164410 port 751 164410 unique_id port 164412 username kordestani 164412 mac 164412 bytes_out 1120749 164412 bytes_in 23916331 164412 station_ip 151.235.80.55 164412 port 328 164412 unique_id port 164412 remote_ip 10.8.1.98 164414 username kordestani 164414 mac 164414 bytes_out 2276 164414 bytes_in 4685 164414 station_ip 151.235.73.21 164414 port 383 164414 unique_id port 164414 remote_ip 10.8.1.98 164417 username hashtadani4 164417 mac 164417 bytes_out 2770805 164417 bytes_in 27177226 164417 station_ip 83.123.1.72 164417 port 365 164417 unique_id port 164417 remote_ip 10.8.1.142 164421 username rezaei 164421 kill_reason Another user logged on this global unique id 164421 mac 164421 bytes_out 0 164421 bytes_in 0 164421 station_ip 5.119.53.117 164421 port 731 164421 unique_id port 164421 remote_ip 10.8.0.230 164424 username mohammadmahdi 164424 mac 164374 remote_ip 10.8.1.222 164376 username nilufarrajaei 164376 mac 164376 bytes_out 0 164376 bytes_in 0 164376 station_ip 113.203.20.177 164376 port 743 164376 unique_id port 164376 remote_ip 10.8.0.206 164378 username morteza 164378 mac 164378 bytes_out 0 164378 bytes_in 0 164378 station_ip 37.129.105.52 164378 port 365 164378 unique_id port 164378 remote_ip 10.8.1.62 164381 username barzegar 164381 mac 164381 bytes_out 0 164381 bytes_in 0 164381 station_ip 5.120.50.228 164381 port 748 164381 unique_id port 164381 remote_ip 10.8.0.234 164382 username yaghobi 164382 mac 164382 bytes_out 0 164382 bytes_in 0 164382 station_ip 83.122.2.238 164382 port 677 164382 unique_id port 164382 remote_ip 10.8.0.198 164385 username yaghobi 164385 mac 164385 bytes_out 0 164385 bytes_in 0 164385 station_ip 83.123.154.108 164385 port 385 164385 unique_id port 164385 remote_ip 10.8.1.118 164393 username pourshad 164393 mac 164393 bytes_out 0 164393 bytes_in 0 164393 station_ip 5.119.173.238 164393 port 753 164393 unique_id port 164393 remote_ip 10.8.0.18 164399 username meysam 164399 mac 164399 bytes_out 198512 164399 bytes_in 2486878 164399 station_ip 188.158.50.2 164399 port 748 164399 unique_id port 164399 remote_ip 10.8.0.110 164402 username farhad2 164402 kill_reason Another user logged on this global unique id 164402 mac 164402 bytes_out 0 164402 bytes_in 0 164402 station_ip 5.120.107.133 164402 port 381 164402 unique_id port 164405 username tahmasebi 164405 mac 164405 bytes_out 0 164405 bytes_in 0 164405 station_ip 5.119.109.36 164405 port 748 164405 unique_id port 164405 remote_ip 10.8.0.42 164406 username saeed9658 164406 mac 164406 bytes_out 3595860 164406 bytes_in 45640700 164406 station_ip 5.119.111.142 164406 port 383 164406 unique_id port 164406 remote_ip 10.8.1.210 164413 username jamali 164413 mac 164413 bytes_out 77790 164413 bytes_in 545546 164413 station_ip 5.120.144.130 164413 port 752 164413 unique_id port 164413 remote_ip 10.8.0.70 164416 username morteza 164416 kill_reason Another user logged on this global unique id 164416 mac 164416 bytes_out 0 164416 bytes_in 0 164416 station_ip 37.129.105.52 164416 port 677 164416 unique_id port 164419 username pourshad 164419 mac 164419 bytes_out 0 164419 bytes_in 0 164419 station_ip 5.119.173.238 164419 port 749 164419 unique_id port 164419 remote_ip 10.8.0.18 164422 username kordestani 164422 mac 164422 bytes_out 0 164422 bytes_in 0 164422 station_ip 151.235.110.46 164422 port 753 164422 unique_id port 164422 remote_ip 10.8.0.74 164429 username tahmasebi 164429 mac 164429 bytes_out 0 164429 bytes_in 0 164429 station_ip 5.119.109.36 164429 port 328 164429 unique_id port 164429 remote_ip 10.8.1.90 164433 username hashtadani4 164433 kill_reason Maximum check online fails reached 164433 mac 164433 bytes_out 0 164433 bytes_in 0 164433 station_ip 83.123.1.72 164433 port 696 164433 unique_id port 164436 username morteza 164436 kill_reason Another user logged on this global unique id 164436 mac 164436 bytes_out 0 164436 bytes_in 0 164436 station_ip 37.129.105.52 164436 port 677 164436 unique_id port 164438 username kamali2 164438 mac 164438 bytes_out 0 164438 bytes_in 0 164438 station_ip 5.119.55.206 164438 port 748 164438 unique_id port 164438 remote_ip 10.8.0.158 164440 username hashtadani4 164440 mac 164440 bytes_out 0 164440 bytes_in 0 164440 station_ip 83.123.1.72 164440 port 365 164440 unique_id port 164440 remote_ip 10.8.1.142 164390 station_ip 37.129.103.237 164390 port 385 164390 unique_id port 164390 remote_ip 10.8.1.118 164391 username farhad2 164391 kill_reason Another user logged on this global unique id 164391 mac 164391 bytes_out 0 164391 bytes_in 0 164391 station_ip 5.120.107.133 164391 port 381 164391 unique_id port 164394 username morteza 164394 mac 164394 bytes_out 0 164394 bytes_in 0 164394 station_ip 37.129.105.52 164394 port 677 164394 unique_id port 164394 remote_ip 10.8.0.46 164395 username hashtadani4 164395 mac 164395 bytes_out 0 164395 bytes_in 0 164395 station_ip 5.202.132.86 164395 port 749 164395 unique_id port 164397 username jafari 164397 kill_reason Another user logged on this global unique id 164397 mac 164397 bytes_out 0 164397 bytes_in 0 164397 station_ip 37.156.59.132 164397 port 741 164397 unique_id port 164397 remote_ip 10.8.0.242 164400 username tahmasebi 164400 mac 164400 bytes_out 381036 164400 bytes_in 2516487 164400 station_ip 5.119.109.36 164400 port 365 164400 unique_id port 164400 remote_ip 10.8.1.90 164407 username jamali 164407 mac 164407 bytes_out 652010 164407 bytes_in 8870820 164407 station_ip 5.120.144.130 164407 port 751 164407 unique_id port 164407 remote_ip 10.8.0.70 164409 username tahmasebi 164409 mac 164409 bytes_out 0 164409 bytes_in 0 164409 station_ip 5.119.109.36 164409 port 383 164409 unique_id port 164409 remote_ip 10.8.1.90 164411 username jafari 164411 kill_reason Another user logged on this global unique id 164411 mac 164411 bytes_out 0 164411 bytes_in 0 164411 station_ip 37.156.59.132 164411 port 741 164411 unique_id port 164415 username tahmasebi 164415 mac 164415 bytes_out 2458 164415 bytes_in 5460 164415 station_ip 5.119.109.36 164415 port 328 164415 unique_id port 164415 remote_ip 10.8.1.90 164418 username hashtadani4 164418 mac 164418 bytes_out 0 164418 bytes_in 0 164418 station_ip 83.123.1.72 164418 port 365 164418 unique_id port 164418 remote_ip 10.8.1.142 164420 username hashtadani4 164420 mac 164420 bytes_out 0 164420 bytes_in 0 164420 station_ip 83.123.1.72 164420 port 365 164420 unique_id port 164420 remote_ip 10.8.1.142 164423 username hashtadani4 164423 mac 164423 bytes_out 0 164423 bytes_in 0 164423 station_ip 83.123.1.72 164423 port 365 164423 unique_id port 164423 remote_ip 10.8.1.142 164425 username vanila 164425 mac 164425 bytes_out 778122 164425 bytes_in 19471146 164425 station_ip 37.129.57.7 164425 port 751 164425 unique_id port 164425 remote_ip 10.8.0.178 164428 username jafari 164428 kill_reason Another user logged on this global unique id 164428 mac 164428 bytes_out 0 164428 bytes_in 0 164428 station_ip 37.156.59.132 164428 port 741 164428 unique_id port 164430 username hashtadani4 164430 mac 164430 bytes_out 0 164430 bytes_in 0 164430 station_ip 83.123.1.72 164430 port 696 164430 unique_id port 164430 remote_ip 10.8.0.182 164431 username hashtadani4 164431 mac 164431 bytes_out 0 164431 bytes_in 0 164431 station_ip 83.123.1.72 164431 port 751 164431 unique_id port 164431 remote_ip 10.8.0.182 164432 username hashtadani4 164432 mac 164432 bytes_out 0 164432 bytes_in 0 164432 station_ip 83.123.1.72 164432 port 365 164432 unique_id port 164432 remote_ip 10.8.1.142 164434 username hashtadani4 164434 mac 164434 bytes_out 0 164434 bytes_in 0 164434 station_ip 83.123.1.72 164434 port 365 164434 unique_id port 164434 remote_ip 10.8.1.142 164437 username pourshad 164437 mac 164437 bytes_out 0 164437 bytes_in 0 164424 bytes_out 0 164424 bytes_in 0 164424 station_ip 5.120.48.178 164424 port 696 164424 unique_id port 164424 remote_ip 10.8.0.54 164426 username hashtadani4 164426 mac 164426 bytes_out 0 164426 bytes_in 0 164426 station_ip 83.123.1.72 164426 port 365 164426 unique_id port 164426 remote_ip 10.8.1.142 164427 username hashtadani4 164427 mac 164427 bytes_out 0 164427 bytes_in 0 164427 station_ip 83.123.1.72 164427 port 365 164427 unique_id port 164427 remote_ip 10.8.1.142 164435 username hosseine 164435 mac 164435 bytes_out 0 164435 bytes_in 0 164435 station_ip 83.122.210.45 164435 port 734 164435 unique_id port 164435 remote_ip 10.8.0.238 164441 username jamali 164441 mac 164441 bytes_out 0 164441 bytes_in 0 164441 station_ip 5.120.144.130 164441 port 752 164441 unique_id port 164441 remote_ip 10.8.0.70 164448 username morteza 164448 mac 164448 bytes_out 0 164448 bytes_in 0 164448 station_ip 37.129.105.52 164448 port 677 164448 unique_id port 164448 remote_ip 10.8.0.46 164452 username hashtadani4 164452 mac 164452 bytes_out 0 164452 bytes_in 0 164452 station_ip 83.123.1.72 164452 port 752 164452 unique_id port 164452 remote_ip 10.8.0.182 164454 username farhad2 164454 kill_reason Another user logged on this global unique id 164454 mac 164454 bytes_out 0 164454 bytes_in 0 164454 station_ip 5.120.107.133 164454 port 381 164454 unique_id port 164456 username morteza 164456 mac 164456 bytes_out 0 164456 bytes_in 0 164456 station_ip 37.129.105.52 164456 port 754 164456 unique_id port 164456 remote_ip 10.8.0.46 164462 username rezaei 164462 mac 164462 bytes_out 0 164462 bytes_in 0 164462 station_ip 5.119.53.117 164462 port 731 164462 unique_id port 164464 username hashtadani4 164464 mac 164464 bytes_out 0 164464 bytes_in 0 164464 station_ip 83.123.1.72 164464 port 365 164464 unique_id port 164464 remote_ip 10.8.1.142 164466 username vanila 164466 mac 164466 bytes_out 0 164466 bytes_in 0 164466 station_ip 37.129.57.7 164466 port 383 164466 unique_id port 164466 remote_ip 10.8.1.74 164470 username tahmasebi 164470 mac 164470 bytes_out 28100 164470 bytes_in 66921 164470 station_ip 5.119.109.36 164470 port 328 164470 unique_id port 164470 remote_ip 10.8.1.90 164472 username jamali 164472 mac 164472 bytes_out 84128 164472 bytes_in 61208 164472 station_ip 5.120.144.130 164472 port 677 164472 unique_id port 164472 remote_ip 10.8.0.70 164473 username hashtadani4 164473 kill_reason Maximum check online fails reached 164473 mac 164473 bytes_out 0 164473 bytes_in 0 164473 station_ip 83.123.1.72 164473 port 755 164473 unique_id port 164475 username tahmasebi 164475 mac 164475 bytes_out 0 164475 bytes_in 0 164475 station_ip 5.119.109.36 164475 port 365 164475 unique_id port 164475 remote_ip 10.8.1.90 164479 username hashtadani4 164479 mac 164479 bytes_out 0 164479 bytes_in 0 164479 station_ip 83.123.1.72 164479 port 328 164479 unique_id port 164479 remote_ip 10.8.1.142 164482 username vanila 164482 mac 164482 bytes_out 1560117 164482 bytes_in 24872527 164482 station_ip 37.129.57.7 164482 port 754 164482 unique_id port 164482 remote_ip 10.8.0.178 164488 username tahmasebi 164488 mac 164488 bytes_out 0 164488 bytes_in 0 164488 station_ip 5.119.109.36 164488 port 365 164488 unique_id port 164488 remote_ip 10.8.1.90 164489 username jafari 164489 kill_reason Another user logged on this global unique id 164489 mac 164489 bytes_out 0 164489 bytes_in 0 164437 station_ip 5.119.173.238 164437 port 749 164437 unique_id port 164437 remote_ip 10.8.0.18 164439 username hashtadani4 164439 mac 164439 bytes_out 0 164439 bytes_in 0 164439 station_ip 83.123.1.72 164439 port 734 164439 unique_id port 164439 remote_ip 10.8.0.182 164444 username morteza 164444 mac 164444 bytes_out 0 164444 bytes_in 0 164444 station_ip 37.129.105.52 164444 port 677 164444 unique_id port 164446 username barzegar 164446 mac 164446 bytes_out 5167623 164446 bytes_in 2271922 164446 station_ip 5.120.50.228 164446 port 386 164446 unique_id port 164446 remote_ip 10.8.1.174 164447 username hashtadani4 164447 mac 164447 bytes_out 0 164447 bytes_in 0 164447 station_ip 83.123.1.72 164447 port 748 164447 unique_id port 164447 remote_ip 10.8.0.182 164449 username alikomsari 164449 mac 164449 bytes_out 0 164449 bytes_in 0 164449 station_ip 5.119.165.56 164449 port 753 164449 unique_id port 164449 remote_ip 10.8.0.26 164453 username morteza 164453 mac 164453 bytes_out 0 164453 bytes_in 0 164453 station_ip 37.129.105.52 164453 port 753 164453 unique_id port 164453 remote_ip 10.8.0.46 164455 username hashtadani4 164455 mac 164455 bytes_out 0 164455 bytes_in 0 164455 station_ip 83.123.1.72 164455 port 754 164455 unique_id port 164455 remote_ip 10.8.0.182 164458 username morteza 164458 mac 164458 bytes_out 0 164458 bytes_in 0 164458 station_ip 37.129.105.52 164458 port 754 164458 unique_id port 164458 remote_ip 10.8.0.46 164460 username hashtadani4 164460 mac 164460 bytes_out 0 164460 bytes_in 0 164460 station_ip 83.123.1.72 164460 port 753 164460 unique_id port 164460 remote_ip 10.8.0.182 164463 username meysam 164463 kill_reason Another user logged on this global unique id 164463 mac 164463 bytes_out 0 164463 bytes_in 0 164463 station_ip 188.158.50.2 164463 port 731 164463 unique_id port 164469 username hashtadani4 164469 kill_reason Maximum check online fails reached 164469 mac 164469 bytes_out 0 164469 bytes_in 0 164469 station_ip 83.123.1.72 164469 port 753 164469 unique_id port 164471 username pourshad 164471 mac 164471 bytes_out 0 164471 bytes_in 0 164471 station_ip 5.119.173.238 164471 port 749 164471 unique_id port 164471 remote_ip 10.8.0.18 164476 username morteza 164476 mac 164476 bytes_out 0 164476 bytes_in 0 164476 station_ip 37.129.105.52 164476 port 749 164476 unique_id port 164476 remote_ip 10.8.0.46 164478 username hashtadani4 164478 mac 164478 bytes_out 0 164478 bytes_in 0 164478 station_ip 83.123.1.72 164478 port 365 164478 unique_id port 164478 remote_ip 10.8.1.142 164483 username meysam 164483 kill_reason Another user logged on this global unique id 164483 mac 164483 bytes_out 0 164483 bytes_in 0 164483 station_ip 188.158.50.2 164483 port 731 164483 unique_id port 164483 remote_ip 10.8.0.110 164485 username hashtadani4 164485 kill_reason Maximum number of concurrent logins reached 164485 mac 164485 bytes_out 0 164485 bytes_in 0 164485 station_ip 83.123.1.72 164485 port 759 164485 unique_id port 164487 username nilufarrajaei 164487 mac 164487 bytes_out 0 164487 bytes_in 0 164487 station_ip 113.203.20.177 164487 port 743 164487 unique_id port 164487 remote_ip 10.8.0.206 164492 username tahmasebi 164492 mac 164492 bytes_out 0 164492 bytes_in 0 164492 station_ip 5.119.109.36 164492 port 365 164492 unique_id port 164492 remote_ip 10.8.1.90 164498 username barzegar 164498 mac 164498 bytes_out 78083 164498 bytes_in 367844 164498 station_ip 5.120.50.228 164442 username jafari 164442 kill_reason Another user logged on this global unique id 164442 mac 164442 bytes_out 0 164442 bytes_in 0 164442 station_ip 37.156.59.132 164442 port 741 164442 unique_id port 164443 username aminvpn 164443 mac 164443 bytes_out 0 164443 bytes_in 0 164443 station_ip 5.119.70.233 164443 port 383 164443 unique_id port 164443 remote_ip 10.8.1.6 164445 username hashtadani4 164445 kill_reason Maximum check online fails reached 164445 mac 164445 bytes_out 0 164445 bytes_in 0 164445 station_ip 83.123.1.72 164445 port 734 164445 unique_id port 164450 username hashtadani4 164450 mac 164450 bytes_out 0 164450 bytes_in 0 164450 station_ip 83.123.1.72 164450 port 365 164450 unique_id port 164450 remote_ip 10.8.1.142 164451 username morteza 164451 mac 164451 bytes_out 0 164451 bytes_in 0 164451 station_ip 37.129.105.52 164451 port 677 164451 unique_id port 164451 remote_ip 10.8.0.46 164457 username hashtadani4 164457 mac 164457 bytes_out 0 164457 bytes_in 0 164457 station_ip 83.123.1.72 164457 port 753 164457 unique_id port 164457 remote_ip 10.8.0.182 164459 username morteza 164459 mac 164459 bytes_out 0 164459 bytes_in 0 164459 station_ip 37.129.105.52 164459 port 754 164459 unique_id port 164459 remote_ip 10.8.0.46 164461 username hashtadani4 164461 kill_reason Maximum check online fails reached 164461 mac 164461 bytes_out 0 164461 bytes_in 0 164461 station_ip 83.123.1.72 164461 port 752 164461 unique_id port 164465 username meysam 164465 kill_reason Another user logged on this global unique id 164465 mac 164465 bytes_out 0 164465 bytes_in 0 164465 station_ip 188.158.50.2 164465 port 731 164465 unique_id port 164467 username jafari 164467 kill_reason Another user logged on this global unique id 164467 mac 164467 bytes_out 0 164467 bytes_in 0 164467 station_ip 37.156.59.132 164467 port 741 164467 unique_id port 164468 username hashtadani4 164468 mac 164468 bytes_out 0 164468 bytes_in 0 164468 station_ip 83.123.1.72 164468 port 365 164468 unique_id port 164468 remote_ip 10.8.1.142 164474 username hashtadani4 164474 mac 164474 bytes_out 4833 164474 bytes_in 18942 164474 station_ip 83.123.1.72 164474 port 328 164474 unique_id port 164474 remote_ip 10.8.1.142 164477 username barzegar 164477 mac 164477 bytes_out 0 164477 bytes_in 0 164477 station_ip 5.120.50.228 164477 port 328 164477 unique_id port 164477 remote_ip 10.8.1.174 164480 username jamali 164480 mac 164480 bytes_out 0 164480 bytes_in 0 164480 station_ip 5.120.144.130 164480 port 677 164480 unique_id port 164480 remote_ip 10.8.0.70 164481 username hashtadani4 164481 mac 164481 bytes_out 0 164481 bytes_in 0 164481 station_ip 83.123.1.72 164481 port 677 164481 unique_id port 164481 remote_ip 10.8.0.182 164484 username hashtadani4 164484 mac 164484 bytes_out 0 164484 bytes_in 0 164484 station_ip 83.123.1.72 164484 port 754 164484 unique_id port 164484 remote_ip 10.8.0.182 164486 username morteza 164486 mac 164486 bytes_out 0 164486 bytes_in 0 164486 station_ip 37.129.105.52 164486 port 749 164486 unique_id port 164486 remote_ip 10.8.0.46 164491 username hashtadani4 164491 kill_reason Maximum check online fails reached 164491 mac 164491 bytes_out 0 164491 bytes_in 0 164491 station_ip 83.123.1.72 164491 port 677 164491 unique_id port 164494 username farhad2 164494 kill_reason Another user logged on this global unique id 164494 mac 164494 bytes_out 0 164494 bytes_in 0 164494 station_ip 5.120.107.133 164494 port 381 164494 unique_id port 164489 station_ip 37.156.59.132 164489 port 741 164489 unique_id port 164490 username morteza 164490 mac 164490 bytes_out 0 164490 bytes_in 0 164490 station_ip 37.129.105.52 164490 port 743 164490 unique_id port 164490 remote_ip 10.8.0.46 164493 username hashtadani4 164493 kill_reason Maximum check online fails reached 164493 mac 164493 bytes_out 0 164493 bytes_in 0 164493 station_ip 83.123.1.72 164493 port 754 164493 unique_id port 164497 username morteza 164497 mac 164497 bytes_out 0 164497 bytes_in 0 164497 station_ip 37.129.105.52 164497 port 749 164497 unique_id port 164497 remote_ip 10.8.0.46 164500 username nilufarrajaei 164500 mac 164500 bytes_out 0 164500 bytes_in 0 164500 station_ip 113.203.20.177 164500 port 743 164500 unique_id port 164500 remote_ip 10.8.0.206 164501 username morteza 164501 mac 164501 bytes_out 0 164501 bytes_in 0 164501 station_ip 37.129.105.52 164501 port 749 164501 unique_id port 164501 remote_ip 10.8.0.46 164507 username barzegar 164507 mac 164507 bytes_out 0 164507 bytes_in 0 164507 station_ip 5.120.50.228 164507 port 328 164507 unique_id port 164507 remote_ip 10.8.1.174 164508 username barzegar 164508 mac 164508 bytes_out 0 164508 bytes_in 0 164508 station_ip 5.120.50.228 164508 port 328 164508 unique_id port 164508 remote_ip 10.8.1.174 164512 username shadkam 164512 mac 164512 bytes_out 99552 164512 bytes_in 351088 164512 station_ip 37.129.249.198 164512 port 385 164512 unique_id port 164512 remote_ip 10.8.1.218 164513 username morteza 164513 mac 164513 bytes_out 12241 164513 bytes_in 53528 164513 station_ip 37.129.105.52 164513 port 328 164513 unique_id port 164513 remote_ip 10.8.1.62 164515 username jamali 164515 mac 164515 bytes_out 0 164515 bytes_in 0 164515 station_ip 5.120.144.130 164515 port 757 164515 unique_id port 164515 remote_ip 10.8.0.70 164517 username meysam 164517 mac 164517 bytes_out 0 164517 bytes_in 0 164517 station_ip 188.158.50.2 164517 port 731 164517 unique_id port 164518 username jafari 164518 kill_reason Another user logged on this global unique id 164518 mac 164518 bytes_out 0 164518 bytes_in 0 164518 station_ip 37.156.59.132 164518 port 741 164518 unique_id port 164520 username morteza 164520 mac 164520 bytes_out 0 164520 bytes_in 0 164520 station_ip 37.129.105.52 164520 port 328 164520 unique_id port 164520 remote_ip 10.8.1.62 164522 username jamali 164522 mac 164522 bytes_out 0 164522 bytes_in 0 164522 station_ip 5.120.144.130 164522 port 758 164522 unique_id port 164522 remote_ip 10.8.0.70 164524 username morteza 164524 mac 164524 bytes_out 0 164524 bytes_in 0 164524 station_ip 37.129.105.52 164524 port 758 164524 unique_id port 164524 remote_ip 10.8.0.46 164527 username tahmasebi 164527 mac 164527 bytes_out 0 164527 bytes_in 0 164527 station_ip 5.119.109.36 164527 port 328 164527 unique_id port 164527 remote_ip 10.8.1.90 164529 username morteza 164529 mac 164529 bytes_out 0 164529 bytes_in 0 164529 station_ip 37.129.105.52 164529 port 758 164529 unique_id port 164529 remote_ip 10.8.0.46 164536 username morteza 164536 mac 164536 bytes_out 0 164536 bytes_in 0 164536 station_ip 37.129.105.52 164536 port 758 164536 unique_id port 164536 remote_ip 10.8.0.46 164538 username aminvpn 164538 mac 164538 bytes_out 0 164538 bytes_in 0 164538 station_ip 5.119.70.233 164538 port 759 164538 unique_id port 164538 remote_ip 10.8.0.14 164539 username farhad2 164495 username morteza 164495 mac 164495 bytes_out 0 164495 bytes_in 0 164495 station_ip 37.129.105.52 164495 port 383 164495 unique_id port 164495 remote_ip 10.8.1.62 164496 username jamali 164496 mac 164496 bytes_out 0 164496 bytes_in 0 164496 station_ip 5.120.144.130 164496 port 758 164496 unique_id port 164496 remote_ip 10.8.0.70 164503 username morteza 164503 mac 164503 bytes_out 0 164503 bytes_in 0 164503 station_ip 37.129.105.52 164503 port 758 164503 unique_id port 164503 remote_ip 10.8.0.46 164504 username jamali 164504 mac 164504 bytes_out 0 164504 bytes_in 0 164504 station_ip 5.120.144.130 164504 port 743 164504 unique_id port 164504 remote_ip 10.8.0.70 164506 username malekpoir 164506 mac 164506 bytes_out 0 164506 bytes_in 0 164506 station_ip 5.119.7.89 164506 port 748 164506 unique_id port 164506 remote_ip 10.8.0.58 164509 username morteza 164509 mac 164509 bytes_out 20965 164509 bytes_in 296120 164509 station_ip 37.129.105.52 164509 port 365 164509 unique_id port 164509 remote_ip 10.8.1.62 164510 username morteza 164510 mac 164510 bytes_out 0 164510 bytes_in 0 164510 station_ip 37.129.105.52 164510 port 328 164510 unique_id port 164510 remote_ip 10.8.1.62 164514 username kalantary 164514 mac 164514 bytes_out 0 164514 bytes_in 0 164514 station_ip 83.122.79.133 164514 port 365 164514 unique_id port 164514 remote_ip 10.8.1.26 164523 username tahmasebi 164523 mac 164523 bytes_out 1847500 164523 bytes_in 17613018 164523 station_ip 5.119.109.36 164523 port 383 164523 unique_id port 164523 remote_ip 10.8.1.90 164528 username tahmasebi 164528 mac 164528 bytes_out 0 164528 bytes_in 0 164528 station_ip 5.119.109.36 164528 port 365 164528 unique_id port 164528 remote_ip 10.8.1.90 164530 username farhad2 164530 mac 164530 bytes_out 0 164530 bytes_in 0 164530 station_ip 5.120.107.133 164530 port 328 164530 unique_id port 164530 remote_ip 10.8.1.222 164531 username barzegar 164531 mac 164531 bytes_out 0 164531 bytes_in 0 164531 station_ip 5.120.50.228 164531 port 748 164531 unique_id port 164531 remote_ip 10.8.0.234 164534 username jafari 164534 kill_reason Another user logged on this global unique id 164534 mac 164534 bytes_out 0 164534 bytes_in 0 164534 station_ip 37.156.59.132 164534 port 741 164534 unique_id port 164543 username shadkam 164543 mac 164543 bytes_out 1120917 164543 bytes_in 11899609 164543 station_ip 83.123.222.6 164543 port 365 164543 unique_id port 164543 remote_ip 10.8.1.218 164545 username tahmasebi 164545 kill_reason Another user logged on this global unique id 164545 mac 164545 bytes_out 0 164545 bytes_in 0 164545 station_ip 5.119.109.36 164545 port 328 164545 unique_id port 164545 remote_ip 10.8.1.90 164546 username morteza 164546 mac 164546 bytes_out 0 164546 bytes_in 0 164546 station_ip 37.129.105.52 164546 port 365 164546 unique_id port 164546 remote_ip 10.8.1.62 164548 username farhad2 164548 kill_reason Maximum check online fails reached 164548 mac 164548 bytes_out 0 164548 bytes_in 0 164548 station_ip 5.120.107.133 164548 port 383 164548 unique_id port 164560 username morteza 164560 mac 164560 bytes_out 0 164560 bytes_in 0 164560 station_ip 37.129.105.52 164560 port 757 164560 unique_id port 164560 remote_ip 10.8.0.46 164563 username morteza 164563 mac 164563 bytes_out 0 164563 bytes_in 0 164563 station_ip 37.129.105.52 164563 port 748 164563 unique_id port 164563 remote_ip 10.8.0.46 164564 username morteza 164498 port 328 164498 unique_id port 164498 remote_ip 10.8.1.174 164499 username morteza 164499 mac 164499 bytes_out 0 164499 bytes_in 0 164499 station_ip 37.129.105.52 164499 port 328 164499 unique_id port 164499 remote_ip 10.8.1.62 164502 username tahmasebi 164502 mac 164502 bytes_out 16167 164502 bytes_in 28844 164502 station_ip 5.119.109.36 164502 port 365 164502 unique_id port 164502 remote_ip 10.8.1.90 164505 username aminvpn 164505 mac 164505 bytes_out 0 164505 bytes_in 0 164505 station_ip 5.119.70.233 164505 port 757 164505 unique_id port 164505 remote_ip 10.8.0.14 164511 username jamali 164511 mac 164511 bytes_out 0 164511 bytes_in 0 164511 station_ip 5.120.144.130 164511 port 758 164511 unique_id port 164511 remote_ip 10.8.0.70 164516 username farhad2 164516 mac 164516 bytes_out 0 164516 bytes_in 0 164516 station_ip 5.120.107.133 164516 port 381 164516 unique_id port 164519 username morteza 164519 mac 164519 bytes_out 12886 164519 bytes_in 46719 164519 station_ip 37.129.105.52 164519 port 328 164519 unique_id port 164519 remote_ip 10.8.1.62 164521 username morteza 164521 mac 164521 bytes_out 0 164521 bytes_in 0 164521 station_ip 37.129.105.52 164521 port 757 164521 unique_id port 164521 remote_ip 10.8.0.46 164525 username morteza 164525 mac 164525 bytes_out 0 164525 bytes_in 0 164525 station_ip 37.129.105.52 164525 port 758 164525 unique_id port 164525 remote_ip 10.8.0.46 164526 username farhad2 164526 mac 164526 bytes_out 970369 164526 bytes_in 16582861 164526 station_ip 5.120.107.133 164526 port 365 164526 unique_id port 164526 remote_ip 10.8.1.222 164532 username vanila 164532 mac 164532 bytes_out 0 164532 bytes_in 0 164532 station_ip 37.129.57.7 164532 port 731 164532 unique_id port 164532 remote_ip 10.8.0.178 164533 username godarzi 164533 kill_reason Another user logged on this global unique id 164533 mac 164533 bytes_out 0 164533 bytes_in 0 164533 station_ip 5.202.6.91 164533 port 744 164533 unique_id port 164533 remote_ip 10.8.0.174 164535 username morteza 164535 mac 164535 bytes_out 0 164535 bytes_in 0 164535 station_ip 37.129.105.52 164535 port 758 164535 unique_id port 164535 remote_ip 10.8.0.46 164537 username jamali 164537 mac 164537 bytes_out 0 164537 bytes_in 0 164537 station_ip 5.120.144.130 164537 port 757 164537 unique_id port 164537 remote_ip 10.8.0.70 164540 username aminvpn 164540 mac 164540 bytes_out 0 164540 bytes_in 0 164540 station_ip 5.120.115.68 164540 port 759 164540 unique_id port 164540 remote_ip 10.8.0.14 164544 username morteza 164544 mac 164544 bytes_out 120919 164544 bytes_in 1170175 164544 station_ip 37.129.105.52 164544 port 381 164544 unique_id port 164544 remote_ip 10.8.1.62 164549 username barzegar 164549 mac 164549 bytes_out 0 164549 bytes_in 0 164549 station_ip 5.120.50.228 164549 port 731 164549 unique_id port 164549 remote_ip 10.8.0.234 164550 username aminvpn 164550 mac 164550 bytes_out 0 164550 bytes_in 0 164550 station_ip 5.119.70.233 164550 port 761 164550 unique_id port 164550 remote_ip 10.8.0.14 164552 username morteza 164552 mac 164552 bytes_out 13600 164552 bytes_in 44569 164552 station_ip 37.129.105.52 164552 port 365 164552 unique_id port 164552 remote_ip 10.8.1.62 164554 username jamali 164554 mac 164554 bytes_out 0 164554 bytes_in 0 164554 station_ip 5.120.144.130 164554 port 757 164554 unique_id port 164554 remote_ip 10.8.0.70 164539 mac 164539 bytes_out 87372 164539 bytes_in 265534 164539 station_ip 5.120.107.133 164539 port 383 164539 unique_id port 164539 remote_ip 10.8.1.222 164541 username jamali 164541 mac 164541 bytes_out 0 164541 bytes_in 0 164541 station_ip 5.120.144.130 164541 port 757 164541 unique_id port 164541 remote_ip 10.8.0.70 164542 username aminvpn 164542 mac 164542 bytes_out 0 164542 bytes_in 0 164542 station_ip 5.119.70.233 164542 port 761 164542 unique_id port 164542 remote_ip 10.8.0.14 164547 username aminvpn 164547 mac 164547 bytes_out 0 164547 bytes_in 0 164547 station_ip 5.120.115.68 164547 port 759 164547 unique_id port 164547 remote_ip 10.8.0.14 164551 username vanila 164551 mac 164551 bytes_out 0 164551 bytes_in 0 164551 station_ip 37.129.57.7 164551 port 748 164551 unique_id port 164551 remote_ip 10.8.0.178 164553 username jafari 164553 kill_reason Another user logged on this global unique id 164553 mac 164553 bytes_out 0 164553 bytes_in 0 164553 station_ip 37.156.59.132 164553 port 741 164553 unique_id port 164555 username morteza 164555 mac 164555 bytes_out 0 164555 bytes_in 0 164555 station_ip 37.129.105.52 164555 port 759 164555 unique_id port 164555 remote_ip 10.8.0.46 164556 username aminvpn 164556 mac 164556 bytes_out 0 164556 bytes_in 0 164556 station_ip 5.119.70.233 164556 port 365 164556 unique_id port 164556 remote_ip 10.8.1.6 164558 username morteza 164558 mac 164558 bytes_out 0 164558 bytes_in 0 164558 station_ip 37.129.105.52 164558 port 757 164558 unique_id port 164558 remote_ip 10.8.0.46 164565 username aminvpn 164565 unique_id port 164565 terminate_cause User-Request 164565 bytes_out 2431169 164565 bytes_in 81341761 164565 station_ip 31.57.142.222 164565 port 15728669 164565 nas_port_type Virtual 164565 remote_ip 5.5.5.223 164568 username tahmasebi 164568 mac 164568 bytes_out 0 164568 bytes_in 0 164568 station_ip 5.119.109.36 164568 port 328 164568 unique_id port 164570 username jamali 164570 mac 164570 bytes_out 19606 164570 bytes_in 21694 164570 station_ip 5.120.144.130 164570 port 761 164570 unique_id port 164570 remote_ip 10.8.0.70 164572 username morteza 164572 mac 164572 bytes_out 0 164572 bytes_in 0 164572 station_ip 37.129.105.52 164572 port 328 164572 unique_id port 164572 remote_ip 10.8.1.62 164575 username tahmasebi 164575 mac 164575 bytes_out 0 164575 bytes_in 0 164575 station_ip 5.119.109.36 164575 port 757 164575 unique_id port 164575 remote_ip 10.8.0.42 164578 username morteza 164578 mac 164578 bytes_out 0 164578 bytes_in 0 164578 station_ip 37.129.105.52 164578 port 756 164578 unique_id port 164578 remote_ip 10.8.0.46 164580 username morteza 164580 mac 164580 bytes_out 0 164580 bytes_in 0 164580 station_ip 37.129.105.52 164580 port 756 164580 unique_id port 164580 remote_ip 10.8.0.46 164581 username shadkam 164581 mac 164581 bytes_out 57118 164581 bytes_in 603327 164581 station_ip 83.123.180.199 164581 port 365 164581 unique_id port 164581 remote_ip 10.8.1.218 164586 username barzegar 164586 mac 164586 bytes_out 23358 164586 bytes_in 72524 164586 station_ip 5.120.50.228 164586 port 749 164586 unique_id port 164586 remote_ip 10.8.0.234 164589 username morteza 164589 mac 164589 bytes_out 0 164589 bytes_in 0 164589 station_ip 37.129.105.52 164589 port 749 164589 unique_id port 164589 remote_ip 10.8.0.46 164592 username morteza 164592 mac 164592 bytes_out 0 164592 bytes_in 0 164557 username morteza 164557 mac 164557 bytes_out 0 164557 bytes_in 0 164557 station_ip 37.129.105.52 164557 port 757 164557 unique_id port 164557 remote_ip 10.8.0.46 164559 username barzegar 164559 mac 164559 bytes_out 0 164559 bytes_in 0 164559 station_ip 5.120.50.228 164559 port 748 164559 unique_id port 164559 remote_ip 10.8.0.234 164561 username nilufarrajaei 164561 mac 164561 bytes_out 0 164561 bytes_in 0 164561 station_ip 113.203.20.177 164561 port 749 164561 unique_id port 164561 remote_ip 10.8.0.206 164562 username morteza 164562 mac 164562 bytes_out 0 164562 bytes_in 0 164562 station_ip 37.129.105.52 164562 port 748 164562 unique_id port 164562 remote_ip 10.8.0.46 164567 username morteza 164567 mac 164567 bytes_out 1636 164567 bytes_in 5142 164567 station_ip 37.129.105.52 164567 port 748 164567 unique_id port 164567 remote_ip 10.8.0.46 164574 username morteza 164574 mac 164574 bytes_out 0 164574 bytes_in 0 164574 station_ip 37.129.105.52 164574 port 761 164574 unique_id port 164574 remote_ip 10.8.0.46 164576 username pourshad 164576 mac 164576 bytes_out 0 164576 bytes_in 0 164576 station_ip 5.119.173.238 164576 port 756 164576 unique_id port 164576 remote_ip 10.8.0.18 164577 username morteza 164577 mac 164577 bytes_out 0 164577 bytes_in 0 164577 station_ip 37.129.105.52 164577 port 756 164577 unique_id port 164577 remote_ip 10.8.0.46 164579 username sabaghnezhad 164579 mac 164579 bytes_out 105790 164579 bytes_in 176093 164579 station_ip 37.129.67.25 164579 port 328 164579 unique_id port 164579 remote_ip 10.8.1.130 164584 username morteza 164584 mac 164584 bytes_out 0 164584 bytes_in 0 164584 station_ip 37.129.105.52 164584 port 762 164584 unique_id port 164584 remote_ip 10.8.0.46 164594 username morteza 164594 mac 164594 bytes_out 0 164594 bytes_in 0 164594 station_ip 37.129.105.52 164594 port 365 164594 unique_id port 164594 remote_ip 10.8.1.62 164595 username morteza 164595 mac 164595 bytes_out 0 164595 bytes_in 0 164595 station_ip 37.129.105.52 164595 port 365 164595 unique_id port 164595 remote_ip 10.8.1.62 164599 username jafari 164599 kill_reason Another user logged on this global unique id 164599 mac 164599 bytes_out 0 164599 bytes_in 0 164599 station_ip 37.156.59.132 164599 port 741 164599 unique_id port 164602 username morteza 164602 kill_reason Maximum check online fails reached 164602 mac 164602 bytes_out 0 164602 bytes_in 0 164602 station_ip 37.129.105.52 164602 port 365 164602 unique_id port 164603 username tahmasebi 164603 mac 164603 bytes_out 0 164603 bytes_in 0 164603 station_ip 5.119.109.36 164603 port 761 164603 unique_id port 164603 remote_ip 10.8.0.42 164605 username barzegar 164605 mac 164605 bytes_out 0 164605 bytes_in 0 164605 station_ip 5.120.50.228 164605 port 381 164605 unique_id port 164605 remote_ip 10.8.1.174 164608 username jamali 164608 mac 164608 bytes_out 334911 164608 bytes_in 2913420 164608 station_ip 5.120.144.130 164608 port 749 164608 unique_id port 164608 remote_ip 10.8.0.70 164609 username pourshad 164609 mac 164609 bytes_out 0 164609 bytes_in 0 164609 station_ip 5.119.173.238 164609 port 757 164609 unique_id port 164609 remote_ip 10.8.0.18 164610 username pourshad 164610 mac 164610 bytes_out 11980 164610 bytes_in 26764 164610 station_ip 5.119.173.238 164610 port 749 164610 unique_id port 164610 remote_ip 10.8.0.18 164612 username barzegar 164612 mac 164612 bytes_out 0 164564 mac 164564 bytes_out 0 164564 bytes_in 0 164564 station_ip 37.129.105.52 164564 port 748 164564 unique_id port 164564 remote_ip 10.8.0.46 164566 username barzegar 164566 mac 164566 bytes_out 0 164566 bytes_in 0 164566 station_ip 5.120.50.228 164566 port 749 164566 unique_id port 164566 remote_ip 10.8.0.234 164569 username morteza 164569 mac 164569 bytes_out 0 164569 bytes_in 0 164569 station_ip 37.129.105.52 164569 port 365 164569 unique_id port 164569 remote_ip 10.8.1.62 164571 username morteza 164571 mac 164571 bytes_out 0 164571 bytes_in 0 164571 station_ip 37.129.105.52 164571 port 328 164571 unique_id port 164571 remote_ip 10.8.1.62 164573 username vanila 164573 mac 164573 bytes_out 0 164573 bytes_in 0 164573 station_ip 37.129.57.7 164573 port 762 164573 unique_id port 164573 remote_ip 10.8.0.178 164582 username nilufarrajaei 164582 mac 164582 bytes_out 0 164582 bytes_in 0 164582 station_ip 2.183.129.49 164582 port 757 164582 unique_id port 164582 remote_ip 10.8.0.206 164583 username tahmasebi 164583 mac 164583 bytes_out 0 164583 bytes_in 0 164583 station_ip 5.119.109.36 164583 port 757 164583 unique_id port 164583 remote_ip 10.8.0.42 164585 username morteza 164585 mac 164585 bytes_out 0 164585 bytes_in 0 164585 station_ip 37.129.105.52 164585 port 757 164585 unique_id port 164585 remote_ip 10.8.0.46 164587 username mosi 164587 kill_reason Another user logged on this global unique id 164587 mac 164587 bytes_out 0 164587 bytes_in 0 164587 station_ip 151.235.96.72 164587 port 759 164587 unique_id port 164587 remote_ip 10.8.0.138 164588 username jafari 164588 kill_reason Another user logged on this global unique id 164588 mac 164588 bytes_out 0 164588 bytes_in 0 164588 station_ip 37.156.59.132 164588 port 741 164588 unique_id port 164590 username sabaghnezhad 164590 kill_reason Maximum check online fails reached 164590 mac 164590 bytes_out 0 164590 bytes_in 0 164590 station_ip 83.123.87.142 164590 port 328 164590 unique_id port 164591 username morteza 164591 mac 164591 bytes_out 0 164591 bytes_in 0 164591 station_ip 37.129.105.52 164591 port 749 164591 unique_id port 164591 remote_ip 10.8.0.46 164596 username jamali 164596 mac 164596 bytes_out 14976 164596 bytes_in 15464 164596 station_ip 5.120.144.130 164596 port 748 164596 unique_id port 164596 remote_ip 10.8.0.70 164598 username morteza 164598 mac 164598 bytes_out 0 164598 bytes_in 0 164598 station_ip 37.129.105.52 164598 port 748 164598 unique_id port 164598 remote_ip 10.8.0.46 164600 username farhad2 164600 mac 164600 bytes_out 1961293 164600 bytes_in 10853017 164600 station_ip 5.120.107.133 164600 port 760 164600 unique_id port 164600 remote_ip 10.8.0.190 164604 username aminvpn 164604 unique_id port 164604 terminate_cause Lost-Carrier 164604 bytes_out 268298 164604 bytes_in 492605 164604 station_ip 5.120.43.143 164604 port 15728670 164604 nas_port_type Virtual 164604 remote_ip 5.5.5.222 164607 username jafari 164607 kill_reason Another user logged on this global unique id 164607 mac 164607 bytes_out 0 164607 bytes_in 0 164607 station_ip 37.156.59.132 164607 port 741 164607 unique_id port 164611 username tahmasebi 164611 mac 164611 bytes_out 0 164611 bytes_in 0 164611 station_ip 5.119.109.36 164611 port 749 164611 unique_id port 164611 remote_ip 10.8.0.42 164614 username mosi 164614 kill_reason Another user logged on this global unique id 164614 mac 164614 bytes_out 0 164614 bytes_in 0 164614 station_ip 151.235.96.72 164614 port 759 164592 station_ip 37.129.105.52 164592 port 365 164592 unique_id port 164592 remote_ip 10.8.1.62 164593 username jamali 164593 mac 164593 bytes_out 21638 164593 bytes_in 31878 164593 station_ip 5.120.144.130 164593 port 748 164593 unique_id port 164593 remote_ip 10.8.0.70 164597 username forozandeh1 164597 mac 164597 bytes_out 973562 164597 bytes_in 9047728 164597 station_ip 37.129.219.82 164597 port 761 164597 unique_id port 164597 remote_ip 10.8.0.130 164601 username nilufarrajaei 164601 mac 164601 bytes_out 3594560 164601 bytes_in 48751320 164601 station_ip 5.233.46.193 164601 port 756 164601 unique_id port 164601 remote_ip 10.8.0.206 164606 username farhad2 164606 mac 164606 bytes_out 319525 164606 bytes_in 2187189 164606 station_ip 5.120.107.133 164606 port 756 164606 unique_id port 164606 remote_ip 10.8.0.190 164615 username jafari 164615 kill_reason Another user logged on this global unique id 164615 mac 164615 bytes_out 0 164615 bytes_in 0 164615 station_ip 37.156.59.132 164615 port 741 164615 unique_id port 164616 username morteza 164616 mac 164616 bytes_out 0 164616 bytes_in 0 164616 station_ip 37.129.105.52 164616 port 762 164616 unique_id port 164616 remote_ip 10.8.0.46 164618 username nilufarrajaei 164618 mac 164618 bytes_out 1619167 164618 bytes_in 15171318 164618 station_ip 2.183.129.49 164618 port 760 164618 unique_id port 164618 remote_ip 10.8.0.206 164620 username morteza 164620 mac 164620 bytes_out 0 164620 bytes_in 0 164620 station_ip 37.129.105.52 164620 port 766 164620 unique_id port 164620 remote_ip 10.8.0.46 164622 username forozandeh1 164622 mac 164622 bytes_out 0 164622 bytes_in 0 164622 station_ip 83.123.108.83 164622 port 763 164622 unique_id port 164622 remote_ip 10.8.0.130 164624 username jafari 164624 mac 164624 bytes_out 0 164624 bytes_in 0 164624 station_ip 37.156.59.132 164624 port 741 164624 unique_id port 164637 username kordestani 164637 mac 164637 bytes_out 401421 164637 bytes_in 2716138 164637 station_ip 151.235.116.89 164637 port 764 164637 unique_id port 164637 remote_ip 10.8.0.74 164638 username farhad2 164638 mac 164638 bytes_out 0 164638 bytes_in 0 164638 station_ip 5.120.107.133 164638 port 749 164638 unique_id port 164638 remote_ip 10.8.0.190 164641 username kamali2 164641 mac 164641 bytes_out 0 164641 bytes_in 0 164641 station_ip 5.119.55.206 164641 port 758 164641 unique_id port 164643 username barzegar 164643 mac 164643 bytes_out 0 164643 bytes_in 0 164643 station_ip 5.120.50.228 164643 port 386 164643 unique_id port 164643 remote_ip 10.8.1.174 164644 username tahmasebi 164644 mac 164644 bytes_out 0 164644 bytes_in 0 164644 station_ip 5.119.109.36 164644 port 749 164644 unique_id port 164644 remote_ip 10.8.0.42 164646 username morteza 164646 mac 164646 bytes_out 2843 164646 bytes_in 5075 164646 station_ip 37.129.105.52 164646 port 756 164646 unique_id port 164646 remote_ip 10.8.0.46 164647 username pourshad 164647 kill_reason Another user logged on this global unique id 164647 mac 164647 bytes_out 0 164647 bytes_in 0 164647 station_ip 5.119.173.238 164647 port 761 164647 unique_id port 164647 remote_ip 10.8.0.18 164652 username mirzaei 164652 kill_reason Another user logged on this global unique id 164652 mac 164652 bytes_out 0 164652 bytes_in 0 164652 station_ip 5.119.180.17 164652 port 721 164652 unique_id port 164657 username barzegar 164657 mac 164657 bytes_out 0 164657 bytes_in 0 164657 station_ip 5.120.50.228 164612 bytes_in 0 164612 station_ip 5.120.50.228 164612 port 381 164612 unique_id port 164612 remote_ip 10.8.1.174 164613 username farhad2 164613 mac 164613 bytes_out 287070 164613 bytes_in 1929569 164613 station_ip 5.120.107.133 164613 port 757 164613 unique_id port 164613 remote_ip 10.8.0.190 164619 username morteza 164619 mac 164619 bytes_out 1636 164619 bytes_in 5089 164619 station_ip 37.129.105.52 164619 port 762 164619 unique_id port 164619 remote_ip 10.8.0.46 164621 username tahmasebi 164621 mac 164621 bytes_out 0 164621 bytes_in 0 164621 station_ip 5.119.109.36 164621 port 760 164621 unique_id port 164621 remote_ip 10.8.0.42 164625 username mosi 164625 kill_reason Another user logged on this global unique id 164625 mac 164625 bytes_out 0 164625 bytes_in 0 164625 station_ip 151.235.96.72 164625 port 759 164625 unique_id port 164628 username tahmasebi 164628 mac 164628 bytes_out 13145 164628 bytes_in 24249 164628 station_ip 5.119.109.36 164628 port 741 164628 unique_id port 164628 remote_ip 10.8.0.42 164630 username shadkam 164630 mac 164630 bytes_out 0 164630 bytes_in 0 164630 station_ip 37.129.191.195 164630 port 385 164630 unique_id port 164630 remote_ip 10.8.1.218 164632 username morteza 164632 mac 164632 bytes_out 0 164632 bytes_in 0 164632 station_ip 37.129.105.52 164632 port 741 164632 unique_id port 164632 remote_ip 10.8.0.46 164635 username aminvpn 164635 unique_id port 164635 terminate_cause Lost-Carrier 164635 bytes_out 3027 164635 bytes_in 2969 164635 station_ip 5.119.113.90 164635 port 15728671 164635 nas_port_type Virtual 164635 remote_ip 5.5.5.220 164636 username morteza 164636 mac 164636 bytes_out 0 164636 bytes_in 0 164636 station_ip 37.129.105.52 164636 port 386 164636 unique_id port 164636 remote_ip 10.8.1.62 164639 username kamali2 164639 kill_reason Another user logged on this global unique id 164639 mac 164639 bytes_out 0 164639 bytes_in 0 164639 station_ip 5.119.55.206 164639 port 758 164639 unique_id port 164639 remote_ip 10.8.0.158 164640 username forozandeh1 164640 mac 164640 bytes_out 0 164640 bytes_in 0 164640 station_ip 37.129.215.114 164640 port 731 164640 unique_id port 164640 remote_ip 10.8.0.130 164642 username farhad2 164642 mac 164642 bytes_out 0 164642 bytes_in 0 164642 station_ip 5.120.107.133 164642 port 749 164642 unique_id port 164642 remote_ip 10.8.0.190 164648 username mosi 164648 kill_reason Another user logged on this global unique id 164648 mac 164648 bytes_out 0 164648 bytes_in 0 164648 station_ip 151.235.96.72 164648 port 759 164648 unique_id port 164651 username tahmasebi 164651 mac 164651 bytes_out 0 164651 bytes_in 0 164651 station_ip 5.119.109.36 164651 port 386 164651 unique_id port 164651 remote_ip 10.8.1.90 164653 username farhad2 164653 mac 164653 bytes_out 1094107 164653 bytes_in 11465927 164653 station_ip 5.120.107.133 164653 port 731 164653 unique_id port 164653 remote_ip 10.8.0.190 164654 username morteza 164654 mac 164654 bytes_out 0 164654 bytes_in 0 164654 station_ip 37.129.105.52 164654 port 731 164654 unique_id port 164654 remote_ip 10.8.0.46 164655 username tahmasebi 164655 mac 164655 bytes_out 0 164655 bytes_in 0 164655 station_ip 5.119.109.36 164655 port 386 164655 unique_id port 164655 remote_ip 10.8.1.90 164658 username tahmasebi 164658 mac 164658 bytes_out 0 164658 bytes_in 0 164658 station_ip 5.119.109.36 164658 port 731 164658 unique_id port 164658 remote_ip 10.8.0.42 164661 username jamali 164661 mac 164614 unique_id port 164617 username morteza 164617 mac 164617 bytes_out 0 164617 bytes_in 0 164617 station_ip 37.129.105.52 164617 port 385 164617 unique_id port 164617 remote_ip 10.8.1.62 164623 username alihosseini1 164623 mac 164623 bytes_out 273659 164623 bytes_in 331698 164623 station_ip 5.119.7.18 164623 port 758 164623 unique_id port 164623 remote_ip 10.8.0.22 164626 username tahmasebi 164626 mac 164626 bytes_out 2103 164626 bytes_in 4380 164626 station_ip 5.119.109.36 164626 port 760 164626 unique_id port 164626 remote_ip 10.8.0.42 164627 username alihosseini1 164627 mac 164627 bytes_out 306364 164627 bytes_in 2272806 164627 station_ip 5.119.128.227 164627 port 762 164627 unique_id port 164627 remote_ip 10.8.0.22 164629 username barzegar 164629 mac 164629 bytes_out 261337 164629 bytes_in 1252528 164629 station_ip 5.120.50.228 164629 port 749 164629 unique_id port 164629 remote_ip 10.8.0.234 164631 username aminvpn 164631 mac 164631 bytes_out 4380077 164631 bytes_in 36930153 164631 station_ip 5.120.115.68 164631 port 731 164631 unique_id port 164631 remote_ip 10.8.0.14 164633 username jamali 164633 mac 164633 bytes_out 19332 164633 bytes_in 25249 164633 station_ip 5.120.144.130 164633 port 756 164633 unique_id port 164633 remote_ip 10.8.0.70 164634 username farhad2 164634 mac 164634 bytes_out 1199285 164634 bytes_in 8675195 164634 station_ip 5.120.107.133 164634 port 757 164634 unique_id port 164634 remote_ip 10.8.0.190 164645 username farhad2 164645 mac 164645 bytes_out 0 164645 bytes_in 0 164645 station_ip 5.120.107.133 164645 port 731 164645 unique_id port 164645 remote_ip 10.8.0.190 164649 username hosseine 164649 mac 164649 bytes_out 2396160 164649 bytes_in 14710849 164649 station_ip 83.122.210.45 164649 port 751 164649 unique_id port 164649 remote_ip 10.8.0.238 164650 username ahmadi1 164650 mac 164650 bytes_out 220936 164650 bytes_in 1058897 164650 station_ip 83.123.181.19 164650 port 757 164650 unique_id port 164650 remote_ip 10.8.0.250 164656 username morteza 164656 mac 164656 bytes_out 0 164656 bytes_in 0 164656 station_ip 37.129.105.52 164656 port 731 164656 unique_id port 164656 remote_ip 10.8.0.46 164660 username morteza 164660 mac 164660 bytes_out 0 164660 bytes_in 0 164660 station_ip 37.129.105.52 164660 port 748 164660 unique_id port 164660 remote_ip 10.8.0.46 164664 username morteza 164664 mac 164664 bytes_out 0 164664 bytes_in 0 164664 station_ip 37.129.105.52 164664 port 757 164664 unique_id port 164664 remote_ip 10.8.0.46 164669 username morteza 164669 mac 164669 bytes_out 0 164669 bytes_in 0 164669 station_ip 37.129.105.52 164669 port 386 164669 unique_id port 164669 remote_ip 10.8.1.62 164674 username tahmasebi 164674 mac 164674 bytes_out 2469 164674 bytes_in 4887 164674 station_ip 5.119.109.36 164674 port 751 164674 unique_id port 164674 remote_ip 10.8.0.42 164675 username kalantary 164675 mac 164675 bytes_out 0 164675 bytes_in 0 164675 station_ip 83.122.58.21 164675 port 381 164675 unique_id port 164675 remote_ip 10.8.1.26 164677 username milan 164677 kill_reason Another user logged on this global unique id 164677 mac 164677 bytes_out 0 164677 bytes_in 0 164677 station_ip 5.120.91.29 164677 port 745 164677 unique_id port 164678 username morteza 164678 mac 164678 bytes_out 0 164678 bytes_in 0 164678 station_ip 37.129.105.52 164678 port 751 164678 unique_id port 164678 remote_ip 10.8.0.46 164657 port 388 164657 unique_id port 164657 remote_ip 10.8.1.174 164659 username yarmohamadi 164659 mac 164659 bytes_out 6403584 164659 bytes_in 46449306 164659 station_ip 5.119.101.166 164659 port 748 164659 unique_id port 164659 remote_ip 10.8.0.150 164663 username morteza 164663 kill_reason Maximum check online fails reached 164663 mac 164663 bytes_out 0 164663 bytes_in 0 164663 station_ip 37.129.105.52 164663 port 748 164663 unique_id port 164666 username tahmasebi 164666 mac 164666 bytes_out 5845 164666 bytes_in 11118 164666 station_ip 5.119.109.36 164666 port 756 164666 unique_id port 164666 remote_ip 10.8.0.42 164667 username morteza 164667 mac 164667 bytes_out 0 164667 bytes_in 0 164667 station_ip 37.129.105.52 164667 port 756 164667 unique_id port 164667 remote_ip 10.8.0.46 164671 username shadkam 164671 mac 164671 bytes_out 108525 164671 bytes_in 1295755 164671 station_ip 83.123.70.7 164671 port 751 164671 unique_id port 164671 remote_ip 10.8.0.62 164672 username barzegar 164672 mac 164672 bytes_out 0 164672 bytes_in 0 164672 station_ip 5.120.50.228 164672 port 388 164672 unique_id port 164672 remote_ip 10.8.1.174 164673 username jamali 164673 mac 164673 bytes_out 818834 164673 bytes_in 8409002 164673 station_ip 5.120.144.130 164673 port 741 164673 unique_id port 164673 remote_ip 10.8.0.70 164680 username barzegar 164680 mac 164680 bytes_out 0 164680 bytes_in 0 164680 station_ip 5.120.50.228 164680 port 762 164680 unique_id port 164680 remote_ip 10.8.0.234 164683 username nilufarrajaei 164683 mac 164683 bytes_out 2921651 164683 bytes_in 34207664 164683 station_ip 2.183.129.49 164683 port 765 164683 unique_id port 164683 remote_ip 10.8.0.206 164686 username morteza 164686 mac 164686 bytes_out 0 164686 bytes_in 0 164686 station_ip 37.129.105.52 164686 port 758 164686 unique_id port 164686 remote_ip 10.8.0.46 164688 username pourshad 164688 kill_reason Another user logged on this global unique id 164688 mac 164688 bytes_out 0 164688 bytes_in 0 164688 station_ip 5.119.173.238 164688 port 761 164688 unique_id port 164691 username morteza 164691 mac 164691 bytes_out 0 164691 bytes_in 0 164691 station_ip 37.129.105.52 164691 port 762 164691 unique_id port 164691 remote_ip 10.8.0.46 164692 username morteza 164692 mac 164692 bytes_out 0 164692 bytes_in 0 164692 station_ip 37.129.105.52 164692 port 381 164692 unique_id port 164692 remote_ip 10.8.1.62 164695 username saeed9658 164695 mac 164695 bytes_out 0 164695 bytes_in 0 164695 station_ip 5.119.111.142 164695 port 385 164695 unique_id port 164695 remote_ip 10.8.1.210 164700 username nilufarrajaei 164700 mac 164700 bytes_out 93082 164700 bytes_in 173946 164700 station_ip 2.183.129.49 164700 port 758 164700 unique_id port 164700 remote_ip 10.8.0.206 164706 username morteza 164706 mac 164706 bytes_out 0 164706 bytes_in 0 164706 station_ip 37.129.105.52 164706 port 762 164706 unique_id port 164706 remote_ip 10.8.0.46 164708 username malekpoir 164708 mac 164708 bytes_out 139400 164708 bytes_in 138356 164708 station_ip 5.119.7.89 164708 port 743 164708 unique_id port 164708 remote_ip 10.8.0.58 164713 username hosseine 164713 mac 164713 bytes_out 1069521 164713 bytes_in 7690871 164713 station_ip 83.122.210.45 164713 port 749 164713 unique_id port 164713 remote_ip 10.8.0.238 164716 username morteza 164716 mac 164716 bytes_out 0 164716 bytes_in 0 164716 station_ip 37.129.105.52 164716 port 743 164661 bytes_out 24899 164661 bytes_in 29186 164661 station_ip 5.120.144.130 164661 port 741 164661 unique_id port 164661 remote_ip 10.8.0.70 164662 username morteza 164662 mac 164662 bytes_out 0 164662 bytes_in 0 164662 station_ip 37.129.105.52 164662 port 741 164662 unique_id port 164662 remote_ip 10.8.0.46 164665 username farhad2 164665 mac 164665 bytes_out 262767 164665 bytes_in 700262 164665 station_ip 5.120.107.133 164665 port 751 164665 unique_id port 164665 remote_ip 10.8.0.190 164668 username tahmasebi 164668 mac 164668 bytes_out 0 164668 bytes_in 0 164668 station_ip 5.119.109.36 164668 port 758 164668 unique_id port 164668 remote_ip 10.8.0.42 164670 username tahmasebi 164670 mac 164670 bytes_out 0 164670 bytes_in 0 164670 station_ip 5.119.109.36 164670 port 758 164670 unique_id port 164670 remote_ip 10.8.0.42 164676 username tahmasebi 164676 mac 164676 bytes_out 0 164676 bytes_in 0 164676 station_ip 5.119.109.36 164676 port 751 164676 unique_id port 164676 remote_ip 10.8.0.42 164682 username morteza 164682 mac 164682 bytes_out 0 164682 bytes_in 0 164682 station_ip 37.129.105.52 164682 port 758 164682 unique_id port 164682 remote_ip 10.8.0.46 164685 username morteza 164685 mac 164685 bytes_out 0 164685 bytes_in 0 164685 station_ip 37.129.105.52 164685 port 381 164685 unique_id port 164685 remote_ip 10.8.1.62 164687 username morteza 164687 mac 164687 bytes_out 0 164687 bytes_in 0 164687 station_ip 37.129.105.52 164687 port 758 164687 unique_id port 164687 remote_ip 10.8.0.46 164689 username morteza 164689 mac 164689 bytes_out 0 164689 bytes_in 0 164689 station_ip 37.129.105.52 164689 port 763 164689 unique_id port 164689 remote_ip 10.8.0.46 164701 username morteza 164701 mac 164701 bytes_out 0 164701 bytes_in 0 164701 station_ip 37.129.105.52 164701 port 385 164701 unique_id port 164701 remote_ip 10.8.1.62 164705 username barzegar 164705 mac 164705 bytes_out 0 164705 bytes_in 0 164705 station_ip 5.120.50.228 164705 port 761 164705 unique_id port 164705 remote_ip 10.8.0.234 164709 username tahmasebi 164709 mac 164709 bytes_out 0 164709 bytes_in 0 164709 station_ip 5.119.109.36 164709 port 743 164709 unique_id port 164709 remote_ip 10.8.0.42 164711 username hashtadani4 164711 mac 164711 bytes_out 0 164711 bytes_in 0 164711 station_ip 83.123.96.238 164711 port 743 164711 unique_id port 164711 remote_ip 10.8.0.182 164714 username morteza 164714 mac 164714 bytes_out 0 164714 bytes_in 0 164714 station_ip 37.129.105.52 164714 port 743 164714 unique_id port 164714 remote_ip 10.8.0.46 164717 username tahmasebi 164717 mac 164717 bytes_out 0 164717 bytes_in 0 164717 station_ip 5.119.109.36 164717 port 386 164717 unique_id port 164717 remote_ip 10.8.1.90 164722 username hashtadani4 164722 kill_reason Maximum check online fails reached 164722 mac 164722 bytes_out 0 164722 bytes_in 0 164722 station_ip 83.123.96.238 164722 port 749 164722 unique_id port 164723 username yaghobi 164723 mac 164723 bytes_out 5818 164723 bytes_in 11836 164723 station_ip 83.122.125.46 164723 port 762 164723 unique_id port 164723 remote_ip 10.8.0.198 164725 username morteza 164725 mac 164725 bytes_out 0 164725 bytes_in 0 164725 station_ip 37.129.105.52 164725 port 762 164725 unique_id port 164725 remote_ip 10.8.0.46 164726 username morteza 164726 mac 164726 bytes_out 0 164726 bytes_in 0 164726 station_ip 37.129.105.52 164726 port 763 164679 username morteza 164679 mac 164679 bytes_out 0 164679 bytes_in 0 164679 station_ip 37.129.105.52 164679 port 751 164679 unique_id port 164679 remote_ip 10.8.0.46 164681 username morteza 164681 mac 164681 bytes_out 0 164681 bytes_in 0 164681 station_ip 37.129.105.52 164681 port 758 164681 unique_id port 164681 remote_ip 10.8.0.46 164684 username mosi 164684 kill_reason Another user logged on this global unique id 164684 mac 164684 bytes_out 0 164684 bytes_in 0 164684 station_ip 151.235.96.72 164684 port 759 164684 unique_id port 164690 username yaghobi 164690 mac 164690 bytes_out 612695 164690 bytes_in 4053554 164690 station_ip 113.203.58.134 164690 port 762 164690 unique_id port 164690 remote_ip 10.8.0.198 164693 username tahmasebi 164693 mac 164693 bytes_out 4854 164693 bytes_in 7235 164693 station_ip 5.119.109.36 164693 port 760 164693 unique_id port 164693 remote_ip 10.8.0.42 164694 username jafari 164694 kill_reason Another user logged on this global unique id 164694 mac 164694 bytes_out 0 164694 bytes_in 0 164694 station_ip 37.156.59.132 164694 port 741 164694 unique_id port 164694 remote_ip 10.8.0.242 164696 username tahmasebi 164696 mac 164696 bytes_out 0 164696 bytes_in 0 164696 station_ip 5.119.109.36 164696 port 760 164696 unique_id port 164696 remote_ip 10.8.0.42 164697 username farhad2 164697 kill_reason Another user logged on this global unique id 164697 mac 164697 bytes_out 0 164697 bytes_in 0 164697 station_ip 5.120.107.133 164697 port 756 164697 unique_id port 164697 remote_ip 10.8.0.190 164698 username morteza 164698 mac 164698 bytes_out 0 164698 bytes_in 0 164698 station_ip 37.129.105.52 164698 port 760 164698 unique_id port 164698 remote_ip 10.8.0.46 164699 username pourshad 164699 mac 164699 bytes_out 0 164699 bytes_in 0 164699 station_ip 5.119.173.238 164699 port 761 164699 unique_id port 164702 username tahmasebi 164702 mac 164702 bytes_out 0 164702 bytes_in 0 164702 station_ip 5.119.109.36 164702 port 758 164702 unique_id port 164702 remote_ip 10.8.0.42 164703 username morteza 164703 mac 164703 bytes_out 0 164703 bytes_in 0 164703 station_ip 37.129.105.52 164703 port 758 164703 unique_id port 164703 remote_ip 10.8.0.46 164704 username godarzi 164704 mac 164704 bytes_out 0 164704 bytes_in 0 164704 station_ip 5.202.6.91 164704 port 744 164704 unique_id port 164707 username morteza 164707 mac 164707 bytes_out 0 164707 bytes_in 0 164707 station_ip 37.129.105.52 164707 port 764 164707 unique_id port 164707 remote_ip 10.8.0.46 164710 username hashtadani4 164710 mac 164710 bytes_out 0 164710 bytes_in 0 164710 station_ip 83.123.96.238 164710 port 744 164710 unique_id port 164710 remote_ip 10.8.0.182 164712 username tahmasebi 164712 mac 164712 bytes_out 0 164712 bytes_in 0 164712 station_ip 5.119.109.36 164712 port 744 164712 unique_id port 164712 remote_ip 10.8.0.42 164715 username barzegar 164715 mac 164715 bytes_out 0 164715 bytes_in 0 164715 station_ip 5.120.50.228 164715 port 762 164715 unique_id port 164715 remote_ip 10.8.0.234 164718 username kamali2 164718 mac 164718 bytes_out 0 164718 bytes_in 0 164718 station_ip 5.119.55.206 164718 port 387 164718 unique_id port 164718 remote_ip 10.8.1.66 164719 username yaghobi 164719 mac 164719 bytes_out 966566 164719 bytes_in 9416534 164719 station_ip 83.122.125.46 164719 port 763 164719 unique_id port 164719 remote_ip 10.8.0.198 164721 username jamali 164716 unique_id port 164716 remote_ip 10.8.0.46 164720 username jamali 164720 kill_reason Relative expiration date has reached 164720 mac 164720 bytes_out 0 164720 bytes_in 0 164720 station_ip 5.120.144.130 164720 port 763 164720 unique_id port 164728 username tahmasebi 164728 kill_reason Maximum check online fails reached 164728 mac 164728 bytes_out 0 164728 bytes_in 0 164728 station_ip 5.119.109.36 164728 port 751 164728 unique_id port 164735 username morteza 164735 mac 164735 bytes_out 0 164735 bytes_in 0 164735 station_ip 37.129.105.52 164735 port 385 164735 unique_id port 164735 remote_ip 10.8.1.62 164740 username hosseine 164740 mac 164740 bytes_out 2087587 164740 bytes_in 11598548 164740 station_ip 83.122.210.45 164740 port 744 164740 unique_id port 164740 remote_ip 10.8.0.238 164741 username morteza 164741 mac 164741 bytes_out 0 164741 bytes_in 0 164741 station_ip 37.129.105.52 164741 port 765 164741 unique_id port 164741 remote_ip 10.8.0.46 164742 username jafari 164742 kill_reason Another user logged on this global unique id 164742 mac 164742 bytes_out 0 164742 bytes_in 0 164742 station_ip 37.156.59.132 164742 port 741 164742 unique_id port 164744 username moradi 164744 mac 164744 bytes_out 0 164744 bytes_in 0 164744 station_ip 83.122.44.131 164744 port 385 164744 unique_id port 164744 remote_ip 10.8.1.202 164748 username moradi 164748 mac 164748 bytes_out 0 164748 bytes_in 0 164748 station_ip 5.202.24.12 164748 port 388 164748 unique_id port 164748 remote_ip 10.8.1.202 164752 username hashtadani4 164752 mac 164752 bytes_out 0 164752 bytes_in 0 164752 station_ip 83.123.96.238 164752 port 766 164752 unique_id port 164752 remote_ip 10.8.0.182 164754 username morteza 164754 mac 164754 bytes_out 0 164754 bytes_in 0 164754 station_ip 37.129.105.52 164754 port 387 164754 unique_id port 164754 remote_ip 10.8.1.62 164756 username hashtadani4 164756 kill_reason Maximum check online fails reached 164756 mac 164756 bytes_out 0 164756 bytes_in 0 164756 station_ip 83.123.96.238 164756 port 743 164756 unique_id port 164759 username morteza 164759 mac 164759 bytes_out 14367 164759 bytes_in 56594 164759 station_ip 37.129.105.52 164759 port 768 164759 unique_id port 164759 remote_ip 10.8.0.46 164766 username barzegar 164766 mac 164766 bytes_out 0 164766 bytes_in 0 164766 station_ip 5.120.50.228 164766 port 381 164766 unique_id port 164766 remote_ip 10.8.1.174 164768 username morteza 164768 mac 164768 bytes_out 0 164768 bytes_in 0 164768 station_ip 37.129.105.52 164768 port 765 164768 unique_id port 164768 remote_ip 10.8.0.46 164772 username jafari 164772 kill_reason Another user logged on this global unique id 164772 mac 164772 bytes_out 0 164772 bytes_in 0 164772 station_ip 37.156.59.132 164772 port 741 164772 unique_id port 164773 username pourshad 164773 mac 164773 bytes_out 2193662 164773 bytes_in 36581067 164773 station_ip 5.119.173.238 164773 port 769 164773 unique_id port 164773 remote_ip 10.8.0.18 164777 username barzegar 164777 kill_reason Maximum check online fails reached 164777 mac 164777 bytes_out 0 164777 bytes_in 0 164777 station_ip 5.120.50.228 164777 port 386 164777 unique_id port 164782 username mehdizare 164782 kill_reason Another user logged on this global unique id 164782 mac 164782 bytes_out 0 164782 bytes_in 0 164782 station_ip 83.122.22.203 164782 port 767 164782 unique_id port 164782 remote_ip 10.8.0.90 164783 username jafari 164783 kill_reason Another user logged on this global unique id 164783 mac 164783 bytes_out 0 164721 kill_reason Relative expiration date has reached, Relative expiration date has reached, Relative expiration date has reached, Relative expiration date has reached, Relative expiration date has reached, Relative expiration date has reached, Relative expiration date has reached, Relative expiration date has reached, Relative expiration date has reached, Relative expiration date has reached, Relative expiration date has reached, Relative expiration date has reached, Relative expiration date has reached, Relative expiration date has reached, Relative expiration date has reached, Relative expiration date has reached, Relative expiration date has reached, Relative expiration date has reached, Relative expiration date has reached, Relative expiration date has reached, Relative expiration date has reached, Relative expiration date has reached, Relative expiration date has reached, Relative expiration date has reached, Relative expiration date has reached, Relative expiration date has reached, Relative expiration date has reached, Relative expiration date has reached, Relative expiration date has reached, Relative expiration date has reached, Relative expiration date has reached, Relative expiration date has reached, Relative expiration date has reached, Relative expiration date has reached, Relative expiration date has reached 164721 mac 164721 bytes_out 250787 164721 bytes_in 2071346 164721 station_ip 5.120.144.130 164721 port 751 164721 unique_id port 164721 remote_ip 10.8.0.70 164724 username hashtadani4 164724 mac 164724 bytes_out 0 164724 bytes_in 0 164724 station_ip 83.123.96.238 164724 port 385 164724 unique_id port 164724 remote_ip 10.8.1.142 164729 username barzegar 164729 mac 164729 bytes_out 0 164729 bytes_in 0 164729 station_ip 5.120.50.228 164729 port 763 164729 unique_id port 164729 remote_ip 10.8.0.234 164731 username morteza 164731 mac 164731 bytes_out 0 164731 bytes_in 0 164731 station_ip 37.129.105.52 164731 port 763 164731 unique_id port 164731 remote_ip 10.8.0.46 164733 username morteza 164733 mac 164733 bytes_out 0 164733 bytes_in 0 164733 station_ip 37.129.105.52 164733 port 385 164733 unique_id port 164733 remote_ip 10.8.1.62 164734 username hashtadani4 164734 mac 164734 bytes_out 78975 164734 bytes_in 958351 164734 station_ip 83.123.96.238 164734 port 765 164734 unique_id port 164734 remote_ip 10.8.0.182 164736 username hashtadani4 164736 mac 164736 bytes_out 0 164736 bytes_in 0 164736 station_ip 83.123.96.238 164736 port 763 164736 unique_id port 164736 remote_ip 10.8.0.182 164738 username farhad2 164738 kill_reason Another user logged on this global unique id 164738 mac 164738 bytes_out 0 164738 bytes_in 0 164738 station_ip 5.120.107.133 164738 port 756 164738 unique_id port 164739 username morteza 164739 kill_reason Maximum check online fails reached 164739 mac 164739 bytes_out 0 164739 bytes_in 0 164739 station_ip 37.129.105.52 164739 port 763 164739 unique_id port 164746 username morteza 164746 mac 164746 bytes_out 0 164746 bytes_in 0 164746 station_ip 37.129.105.52 164746 port 766 164746 unique_id port 164746 remote_ip 10.8.0.46 164747 username moradi 164747 mac 164747 bytes_out 0 164747 bytes_in 0 164747 station_ip 83.122.44.131 164747 port 385 164747 unique_id port 164747 remote_ip 10.8.1.202 164749 username hashtadani4 164749 mac 164749 bytes_out 0 164749 bytes_in 0 164749 station_ip 83.123.96.238 164749 port 387 164749 unique_id port 164749 remote_ip 10.8.1.142 164753 username hashtadani4 164753 kill_reason Maximum number of concurrent logins reached 164753 mac 164753 bytes_out 0 164753 bytes_in 0 164753 station_ip 83.123.96.238 164753 port 767 164753 unique_id port 164757 username jafari 164757 kill_reason Another user logged on this global unique id 164757 mac 164757 bytes_out 0 164757 bytes_in 0 164757 station_ip 37.156.59.132 164757 port 741 164757 unique_id port 164761 username hosseine 164761 mac 164761 bytes_out 201247 164761 bytes_in 375173 164761 station_ip 83.122.210.45 164761 port 765 164761 unique_id port 164761 remote_ip 10.8.0.238 164763 username kamali2 164763 mac 164763 bytes_out 0 164763 bytes_in 0 164763 station_ip 5.119.119.230 164763 port 386 164763 unique_id port 164726 unique_id port 164726 remote_ip 10.8.0.46 164727 username hashtadani4 164727 mac 164727 bytes_out 0 164727 bytes_in 0 164727 station_ip 83.123.96.238 164727 port 385 164727 unique_id port 164727 remote_ip 10.8.1.142 164730 username morteza 164730 mac 164730 bytes_out 0 164730 bytes_in 0 164730 station_ip 37.129.105.52 164730 port 764 164730 unique_id port 164730 remote_ip 10.8.0.46 164732 username tahmasebi 164732 mac 164732 bytes_out 3642 164732 bytes_in 10991 164732 station_ip 5.119.109.36 164732 port 762 164732 unique_id port 164732 remote_ip 10.8.0.42 164737 username hashtadani4 164737 mac 164737 bytes_out 0 164737 bytes_in 0 164737 station_ip 83.123.96.238 164737 port 764 164737 unique_id port 164737 remote_ip 10.8.0.182 164743 username hashtadani4 164743 kill_reason Maximum check online fails reached 164743 mac 164743 bytes_out 0 164743 bytes_in 0 164743 station_ip 83.123.96.238 164743 port 744 164743 unique_id port 164745 username barzegar 164745 mac 164745 bytes_out 0 164745 bytes_in 0 164745 station_ip 5.120.50.228 164745 port 388 164745 unique_id port 164745 remote_ip 10.8.1.174 164750 username moradi 164750 mac 164750 bytes_out 0 164750 bytes_in 0 164750 station_ip 83.122.44.131 164750 port 385 164750 unique_id port 164750 remote_ip 10.8.1.202 164751 username mehdizare 164751 mac 164751 bytes_out 1708432 164751 bytes_in 32485895 164751 station_ip 83.122.22.203 164751 port 743 164751 unique_id port 164751 remote_ip 10.8.0.90 164755 username hashtadani4 164755 kill_reason Maximum check online fails reached 164755 mac 164755 bytes_out 0 164755 bytes_in 0 164755 station_ip 83.123.96.238 164755 port 766 164755 unique_id port 164758 username pourshad 164758 mac 164758 bytes_out 3943991 164758 bytes_in 61398633 164758 station_ip 5.119.173.238 164758 port 761 164758 unique_id port 164758 remote_ip 10.8.0.18 164760 username morteza 164760 mac 164760 bytes_out 0 164760 bytes_in 0 164760 station_ip 37.129.105.52 164760 port 761 164760 unique_id port 164760 remote_ip 10.8.0.46 164762 username yarmohamadi 164762 kill_reason Another user logged on this global unique id 164762 mac 164762 bytes_out 0 164762 bytes_in 0 164762 station_ip 5.119.101.166 164762 port 731 164762 unique_id port 164762 remote_ip 10.8.0.150 164764 username moradi 164764 mac 164764 bytes_out 0 164764 bytes_in 0 164764 station_ip 83.122.44.131 164764 port 385 164764 unique_id port 164764 remote_ip 10.8.1.202 164765 username kalantary 164765 mac 164765 bytes_out 0 164765 bytes_in 0 164765 station_ip 83.122.112.245 164765 port 381 164765 unique_id port 164765 remote_ip 10.8.1.26 164770 username farhad2 164770 kill_reason Another user logged on this global unique id 164770 mac 164770 bytes_out 0 164770 bytes_in 0 164770 station_ip 5.120.107.133 164770 port 756 164770 unique_id port 164771 username hosseine 164771 mac 164771 bytes_out 108352 164771 bytes_in 368274 164771 station_ip 83.122.210.45 164771 port 761 164771 unique_id port 164771 remote_ip 10.8.0.238 164780 username barzegar 164780 mac 164780 bytes_out 0 164780 bytes_in 0 164780 station_ip 5.120.50.228 164780 port 759 164780 unique_id port 164780 remote_ip 10.8.0.234 164785 username nilufarrajaei 164785 kill_reason Another user logged on this global unique id 164785 mac 164785 bytes_out 0 164785 bytes_in 0 164785 station_ip 2.183.129.49 164785 port 758 164785 unique_id port 164789 username farhad2 164789 mac 164789 bytes_out 0 164789 bytes_in 0 164763 remote_ip 10.8.1.66 164767 username morteza 164767 mac 164767 bytes_out 0 164767 bytes_in 0 164767 station_ip 37.129.105.52 164767 port 765 164767 unique_id port 164767 remote_ip 10.8.0.46 164769 username nilufarrajaei 164769 kill_reason Another user logged on this global unique id 164769 mac 164769 bytes_out 0 164769 bytes_in 0 164769 station_ip 2.183.129.49 164769 port 758 164769 unique_id port 164769 remote_ip 10.8.0.206 164774 username morteza 164774 kill_reason Maximum check online fails reached 164774 mac 164774 bytes_out 0 164774 bytes_in 0 164774 station_ip 37.129.105.52 164774 port 381 164774 unique_id port 164775 username morteza 164775 mac 164775 bytes_out 0 164775 bytes_in 0 164775 station_ip 37.129.105.52 164775 port 765 164775 unique_id port 164775 remote_ip 10.8.0.46 164776 username mosi 164776 mac 164776 bytes_out 0 164776 bytes_in 0 164776 station_ip 151.235.96.72 164776 port 759 164776 unique_id port 164778 username barzegar 164778 mac 164778 bytes_out 0 164778 bytes_in 0 164778 station_ip 5.120.50.228 164778 port 387 164778 unique_id port 164778 remote_ip 10.8.1.174 164779 username barzegar 164779 mac 164779 bytes_out 0 164779 bytes_in 0 164779 station_ip 5.120.50.228 164779 port 387 164779 unique_id port 164779 remote_ip 10.8.1.174 164781 username moradi 164781 mac 164781 bytes_out 84403 164781 bytes_in 97393 164781 station_ip 83.122.44.131 164781 port 385 164781 unique_id port 164781 remote_ip 10.8.1.202 164787 username mansur 164787 mac 164787 bytes_out 0 164787 bytes_in 0 164787 station_ip 5.119.246.77 164787 port 765 164787 unique_id port 164787 remote_ip 10.8.0.226 164801 username jafari 164801 kill_reason Another user logged on this global unique id 164801 mac 164801 bytes_out 0 164801 bytes_in 0 164801 station_ip 37.156.59.132 164801 port 741 164801 unique_id port 164805 username kalantary 164805 mac 164805 bytes_out 1288308 164805 bytes_in 12214961 164805 station_ip 83.122.101.81 164805 port 389 164805 unique_id port 164805 remote_ip 10.8.1.26 164812 username saeed9658 164812 mac 164812 bytes_out 0 164812 bytes_in 0 164812 station_ip 5.120.112.58 164812 port 388 164812 unique_id port 164812 remote_ip 10.8.1.210 164814 username tahmasebi 164814 mac 164814 bytes_out 0 164814 bytes_in 0 164814 station_ip 5.119.109.36 164814 port 764 164814 unique_id port 164814 remote_ip 10.8.0.42 164816 username barzegar 164816 mac 164816 bytes_out 0 164816 bytes_in 0 164816 station_ip 5.120.50.228 164816 port 388 164816 unique_id port 164816 remote_ip 10.8.1.174 164818 username farhad2 164818 kill_reason Another user logged on this global unique id 164818 mac 164818 bytes_out 0 164818 bytes_in 0 164818 station_ip 5.119.249.28 164818 port 756 164818 unique_id port 164818 remote_ip 10.8.0.190 164819 username jafari 164819 kill_reason Another user logged on this global unique id 164819 mac 164819 bytes_out 0 164819 bytes_in 0 164819 station_ip 37.156.59.132 164819 port 741 164819 unique_id port 164820 username farhad2 164820 kill_reason Another user logged on this global unique id 164820 mac 164820 bytes_out 0 164820 bytes_in 0 164820 station_ip 5.119.249.28 164820 port 756 164820 unique_id port 164827 username yaghobi 164827 mac 164827 bytes_out 3024327 164827 bytes_in 16143600 164827 station_ip 83.122.210.175 164827 port 767 164827 unique_id port 164827 remote_ip 10.8.0.198 164832 username kalantary 164832 mac 164832 bytes_out 0 164832 bytes_in 0 164832 station_ip 83.122.101.81 164832 port 387 164783 bytes_in 0 164783 station_ip 37.156.59.132 164783 port 741 164783 unique_id port 164784 username farhad2 164784 mac 164784 bytes_out 0 164784 bytes_in 0 164784 station_ip 5.120.107.133 164784 port 756 164784 unique_id port 164786 username mehdizare 164786 mac 164786 bytes_out 0 164786 bytes_in 0 164786 station_ip 83.122.22.203 164786 port 767 164786 unique_id port 164788 username mehdizare 164788 mac 164788 bytes_out 0 164788 bytes_in 0 164788 station_ip 83.122.22.203 164788 port 756 164788 unique_id port 164788 remote_ip 10.8.0.90 164790 username mansur 164790 mac 164790 bytes_out 0 164790 bytes_in 0 164790 station_ip 5.119.246.77 164790 port 385 164790 unique_id port 164790 remote_ip 10.8.1.194 164791 username jafari 164791 kill_reason Another user logged on this global unique id 164791 mac 164791 bytes_out 0 164791 bytes_in 0 164791 station_ip 37.156.59.132 164791 port 741 164791 unique_id port 164793 username hadibarzegar 164793 kill_reason Another user logged on this global unique id 164793 mac 164793 bytes_out 0 164793 bytes_in 0 164793 station_ip 37.129.183.217 164793 port 757 164793 unique_id port 164793 remote_ip 10.8.0.154 164794 username barzegar 164794 mac 164794 bytes_out 176509 164794 bytes_in 811726 164794 station_ip 5.120.50.228 164794 port 388 164794 unique_id port 164794 remote_ip 10.8.1.174 164796 username mansur 164796 mac 164796 bytes_out 0 164796 bytes_in 0 164796 station_ip 5.119.246.77 164796 port 765 164796 unique_id port 164796 remote_ip 10.8.0.226 164798 username hosseine 164798 mac 164798 bytes_out 0 164798 bytes_in 0 164798 station_ip 83.122.210.45 164798 port 767 164798 unique_id port 164798 remote_ip 10.8.0.238 164799 username rezaei 164799 kill_reason Another user logged on this global unique id 164799 mac 164799 bytes_out 0 164799 bytes_in 0 164799 station_ip 5.119.14.25 164799 port 760 164799 unique_id port 164799 remote_ip 10.8.0.230 164800 username hosseine 164800 mac 164800 bytes_out 112370 164800 bytes_in 174277 164800 station_ip 83.122.210.45 164800 port 765 164800 unique_id port 164800 remote_ip 10.8.0.238 164802 username nilufarrajaei 164802 kill_reason Another user logged on this global unique id 164802 mac 164802 bytes_out 0 164802 bytes_in 0 164802 station_ip 2.183.129.49 164802 port 758 164802 unique_id port 164803 username barzegar 164803 mac 164803 bytes_out 0 164803 bytes_in 0 164803 station_ip 5.120.50.228 164803 port 765 164803 unique_id port 164803 remote_ip 10.8.0.234 164804 username saeed9658 164804 mac 164804 bytes_out 34424 164804 bytes_in 163389 164804 station_ip 5.120.16.55 164804 port 388 164804 unique_id port 164804 remote_ip 10.8.1.210 164807 username mehdizare 164807 kill_reason Another user logged on this global unique id 164807 mac 164807 bytes_out 0 164807 bytes_in 0 164807 station_ip 83.122.22.203 164807 port 385 164807 unique_id port 164807 remote_ip 10.8.1.42 164809 username saeed9658 164809 mac 164809 bytes_out 74256 164809 bytes_in 249459 164809 station_ip 5.120.112.58 164809 port 390 164809 unique_id port 164809 remote_ip 10.8.1.210 164810 username aminvpn 164810 mac 164810 bytes_out 0 164810 bytes_in 0 164810 station_ip 5.119.210.108 164810 port 764 164810 unique_id port 164810 remote_ip 10.8.0.14 164811 username saeed9658 164811 mac 164811 bytes_out 88717 164811 bytes_in 887271 164811 station_ip 5.120.112.58 164811 port 388 164811 unique_id port 164811 remote_ip 10.8.1.210 164813 username barzegar 164813 mac 164813 bytes_out 2164 164789 station_ip 5.120.107.133 164789 port 768 164789 unique_id port 164789 remote_ip 10.8.0.190 164792 username farhad2 164792 mac 164792 bytes_out 0 164792 bytes_in 0 164792 station_ip 5.119.249.28 164792 port 756 164792 unique_id port 164792 remote_ip 10.8.0.190 164795 username hosseine 164795 mac 164795 bytes_out 0 164795 bytes_in 0 164795 station_ip 83.122.210.45 164795 port 761 164795 unique_id port 164795 remote_ip 10.8.0.238 164797 username tahmasebi 164797 mac 164797 bytes_out 0 164797 bytes_in 0 164797 station_ip 5.119.109.36 164797 port 765 164797 unique_id port 164797 remote_ip 10.8.0.42 164806 username aminvpn 164806 unique_id port 164806 terminate_cause Lost-Carrier 164806 bytes_out 2666712 164806 bytes_in 11264550 164806 station_ip 5.120.43.143 164806 port 15728685 164806 nas_port_type Virtual 164806 remote_ip 5.5.5.219 164808 username tahmasebi 164808 mac 164808 bytes_out 0 164808 bytes_in 0 164808 station_ip 5.119.109.36 164808 port 769 164808 unique_id port 164808 remote_ip 10.8.0.42 164815 username tahmasebi 164815 mac 164815 bytes_out 0 164815 bytes_in 0 164815 station_ip 5.119.109.36 164815 port 769 164815 unique_id port 164815 remote_ip 10.8.0.42 164817 username moradi 164817 mac 164817 bytes_out 264441 164817 bytes_in 1205820 164817 station_ip 46.225.212.246 164817 port 387 164817 unique_id port 164817 remote_ip 10.8.1.202 164821 username mosi 164821 kill_reason Another user logged on this global unique id 164821 mac 164821 bytes_out 0 164821 bytes_in 0 164821 station_ip 151.235.96.72 164821 port 761 164821 unique_id port 164821 remote_ip 10.8.0.138 164822 username jafari 164822 mac 164822 bytes_out 0 164822 bytes_in 0 164822 station_ip 37.156.59.132 164822 port 741 164822 unique_id port 164826 username tahmasebi 164826 mac 164826 bytes_out 0 164826 bytes_in 0 164826 station_ip 5.119.109.36 164826 port 772 164826 unique_id port 164826 remote_ip 10.8.0.42 164829 username yarmohamadi 164829 mac 164829 bytes_out 0 164829 bytes_in 0 164829 station_ip 5.119.101.166 164829 port 731 164829 unique_id port 164831 username mosi 164831 kill_reason Another user logged on this global unique id 164831 mac 164831 bytes_out 0 164831 bytes_in 0 164831 station_ip 151.235.96.72 164831 port 761 164831 unique_id port 164837 username kamali2 164837 mac 164837 bytes_out 1999590 164837 bytes_in 43856153 164837 station_ip 5.120.86.176 164837 port 731 164837 unique_id port 164837 remote_ip 10.8.0.158 164840 username tahmasebi 164840 mac 164840 bytes_out 0 164840 bytes_in 0 164840 station_ip 5.119.109.36 164840 port 741 164840 unique_id port 164840 remote_ip 10.8.0.42 164843 username mosi 164843 mac 164843 bytes_out 0 164843 bytes_in 0 164843 station_ip 151.235.96.72 164843 port 761 164843 unique_id port 164845 username tahmasebi 164845 mac 164845 bytes_out 0 164845 bytes_in 0 164845 station_ip 5.119.109.36 164845 port 741 164845 unique_id port 164845 remote_ip 10.8.0.42 164846 username vanila 164846 mac 164846 bytes_out 0 164846 bytes_in 0 164846 station_ip 37.129.57.7 164846 port 731 164846 unique_id port 164846 remote_ip 10.8.0.178 164849 username nilufarrajaei 164849 mac 164849 bytes_out 0 164849 bytes_in 0 164849 station_ip 2.183.129.49 164849 port 758 164849 unique_id port 164850 username tahmasebi 164850 mac 164850 bytes_out 0 164850 bytes_in 0 164850 station_ip 5.119.109.36 164850 port 758 164850 unique_id port 164850 remote_ip 10.8.0.42 164813 bytes_in 4535 164813 station_ip 5.120.50.228 164813 port 389 164813 unique_id port 164813 remote_ip 10.8.1.174 164823 username mehdizare 164823 kill_reason Another user logged on this global unique id 164823 mac 164823 bytes_out 0 164823 bytes_in 0 164823 station_ip 83.122.22.203 164823 port 385 164823 unique_id port 164824 username kamali2 164824 mac 164824 bytes_out 0 164824 bytes_in 0 164824 station_ip 5.120.149.102 164824 port 764 164824 unique_id port 164824 remote_ip 10.8.0.158 164825 username barzegar 164825 mac 164825 bytes_out 0 164825 bytes_in 0 164825 station_ip 5.120.50.228 164825 port 741 164825 unique_id port 164825 remote_ip 10.8.0.234 164828 username farhad2 164828 kill_reason Another user logged on this global unique id 164828 mac 164828 bytes_out 0 164828 bytes_in 0 164828 station_ip 5.119.249.28 164828 port 756 164828 unique_id port 164830 username tahmasebi 164830 mac 164830 bytes_out 0 164830 bytes_in 0 164830 station_ip 5.119.109.36 164830 port 741 164830 unique_id port 164830 remote_ip 10.8.0.42 164833 username jafari 164833 mac 164833 bytes_out 0 164833 bytes_in 0 164833 station_ip 37.156.59.132 164833 port 764 164833 unique_id port 164833 remote_ip 10.8.0.242 164834 username hadibarzegar 164834 kill_reason Another user logged on this global unique id 164834 mac 164834 bytes_out 0 164834 bytes_in 0 164834 station_ip 37.129.183.217 164834 port 757 164834 unique_id port 164836 username barzegar 164836 mac 164836 bytes_out 0 164836 bytes_in 0 164836 station_ip 5.120.50.228 164836 port 387 164836 unique_id port 164836 remote_ip 10.8.1.174 164838 username hadibarzegar 164838 kill_reason Another user logged on this global unique id 164838 mac 164838 bytes_out 0 164838 bytes_in 0 164838 station_ip 37.129.183.217 164838 port 757 164838 unique_id port 164839 username farhad2 164839 kill_reason Another user logged on this global unique id 164839 mac 164839 bytes_out 0 164839 bytes_in 0 164839 station_ip 5.119.249.28 164839 port 756 164839 unique_id port 164841 username mehdizare 164841 mac 164841 bytes_out 0 164841 bytes_in 0 164841 station_ip 83.122.22.203 164841 port 385 164841 unique_id port 164844 username nilufarrajaei 164844 kill_reason Another user logged on this global unique id 164844 mac 164844 bytes_out 0 164844 bytes_in 0 164844 station_ip 2.183.129.49 164844 port 758 164844 unique_id port 164848 username aminvpn 164848 mac 164848 bytes_out 0 164848 bytes_in 0 164848 station_ip 5.119.210.108 164848 port 741 164848 unique_id port 164848 remote_ip 10.8.0.14 164852 username tahmasebi 164852 mac 164852 bytes_out 0 164852 bytes_in 0 164852 station_ip 5.119.109.36 164852 port 761 164852 unique_id port 164852 remote_ip 10.8.0.42 164854 username moradi 164854 mac 164854 bytes_out 1082793 164854 bytes_in 18169139 164854 station_ip 83.122.33.215 164854 port 769 164854 unique_id port 164854 remote_ip 10.8.0.126 164855 username godarzi 164855 kill_reason Another user logged on this global unique id 164855 mac 164855 bytes_out 0 164855 bytes_in 0 164855 station_ip 5.202.6.91 164855 port 759 164855 unique_id port 164855 remote_ip 10.8.0.174 164857 username moradi 164857 mac 164857 bytes_out 0 164857 bytes_in 0 164857 station_ip 46.225.212.246 164857 port 764 164857 unique_id port 164857 remote_ip 10.8.0.126 164859 username shadkam 164859 mac 164859 bytes_out 0 164859 bytes_in 0 164859 station_ip 37.129.171.239 164859 port 761 164859 unique_id port 164859 remote_ip 10.8.0.62 164861 username moradi 164861 mac 164832 unique_id port 164832 remote_ip 10.8.1.26 164835 username tahmasebi 164835 mac 164835 bytes_out 0 164835 bytes_in 0 164835 station_ip 5.119.109.36 164835 port 741 164835 unique_id port 164835 remote_ip 10.8.0.42 164842 username aminvpn 164842 mac 164842 bytes_out 0 164842 bytes_in 0 164842 station_ip 5.119.210.108 164842 port 770 164842 unique_id port 164842 remote_ip 10.8.0.14 164847 username mohammadjavad 164847 mac 164847 bytes_out 0 164847 bytes_in 0 164847 station_ip 83.122.74.185 164847 port 764 164847 unique_id port 164847 remote_ip 10.8.0.142 164853 username tahmasebi 164853 mac 164853 bytes_out 0 164853 bytes_in 0 164853 station_ip 5.119.109.36 164853 port 764 164853 unique_id port 164853 remote_ip 10.8.0.42 164864 username mirzaei 164864 kill_reason Another user logged on this global unique id 164864 mac 164864 bytes_out 0 164864 bytes_in 0 164864 station_ip 5.119.180.17 164864 port 721 164864 unique_id port 164867 username tahmasebi 164867 mac 164867 bytes_out 0 164867 bytes_in 0 164867 station_ip 5.119.109.36 164867 port 761 164867 unique_id port 164867 remote_ip 10.8.0.42 164870 username barzegar 164870 mac 164870 bytes_out 0 164870 bytes_in 0 164870 station_ip 5.120.50.228 164870 port 774 164870 unique_id port 164870 remote_ip 10.8.0.234 164873 username mohammadjavad 164873 mac 164873 bytes_out 443184 164873 bytes_in 7743587 164873 station_ip 37.129.195.160 164873 port 764 164873 unique_id port 164873 remote_ip 10.8.0.142 164875 username tahmasebi 164875 mac 164875 bytes_out 0 164875 bytes_in 0 164875 station_ip 5.119.109.36 164875 port 388 164875 unique_id port 164875 remote_ip 10.8.1.90 164879 username farhad2 164879 mac 164879 bytes_out 0 164879 bytes_in 0 164879 station_ip 5.119.249.28 164879 port 756 164879 unique_id port 164880 username tahmasebi 164880 mac 164880 bytes_out 0 164880 bytes_in 0 164880 station_ip 5.119.109.36 164880 port 388 164880 unique_id port 164880 remote_ip 10.8.1.90 164882 username godarzi 164882 mac 164882 bytes_out 0 164882 bytes_in 0 164882 station_ip 5.202.6.91 164882 port 759 164882 unique_id port 164884 username alihosseini1 164884 mac 164884 bytes_out 2135934 164884 bytes_in 21412883 164884 station_ip 5.119.174.234 164884 port 772 164884 unique_id port 164884 remote_ip 10.8.0.22 164888 username sabaghnezhad 164888 mac 164888 bytes_out 0 164888 bytes_in 0 164888 station_ip 83.123.87.142 164888 port 758 164888 unique_id port 164888 remote_ip 10.8.0.186 164891 username jafari 164891 mac 164891 bytes_out 0 164891 bytes_in 0 164891 station_ip 37.156.59.132 164891 port 764 164891 unique_id port 164891 remote_ip 10.8.0.242 164894 username rahim 164894 mac 164894 bytes_out 53862 164894 bytes_in 21997 164894 station_ip 5.119.211.178 164894 port 756 164894 unique_id port 164894 remote_ip 10.8.0.50 164895 username vanila 164895 mac 164895 bytes_out 448853 164895 bytes_in 3561884 164895 station_ip 37.129.57.7 164895 port 761 164895 unique_id port 164895 remote_ip 10.8.0.178 164902 username shadkam 164902 mac 164902 bytes_out 102989 164902 bytes_in 606197 164902 station_ip 83.123.39.32 164902 port 769 164902 unique_id port 164902 remote_ip 10.8.0.62 164905 username mirzaei 164905 mac 164905 bytes_out 0 164905 bytes_in 0 164905 station_ip 5.119.180.17 164905 port 721 164905 unique_id port 164907 username tahmasebi 164907 mac 164907 bytes_out 0 164907 bytes_in 0 164851 username barzegar 164851 mac 164851 bytes_out 2318 164851 bytes_in 4733 164851 station_ip 5.120.50.228 164851 port 387 164851 unique_id port 164851 remote_ip 10.8.1.174 164856 username shadkam 164856 mac 164856 bytes_out 0 164856 bytes_in 0 164856 station_ip 37.129.203.249 164856 port 761 164856 unique_id port 164856 remote_ip 10.8.0.62 164858 username nilufarrajaei 164858 mac 164858 bytes_out 561748 164858 bytes_in 1133957 164858 station_ip 2.183.129.49 164858 port 741 164858 unique_id port 164858 remote_ip 10.8.0.206 164860 username moradi 164860 mac 164860 bytes_out 10335 164860 bytes_in 20746 164860 station_ip 37.129.195.161 164860 port 387 164860 unique_id port 164860 remote_ip 10.8.1.202 164862 username mohammadjavad 164862 mac 164862 bytes_out 0 164862 bytes_in 0 164862 station_ip 37.129.195.160 164862 port 769 164862 unique_id port 164862 remote_ip 10.8.0.142 164866 username barzegar 164866 mac 164866 bytes_out 0 164866 bytes_in 0 164866 station_ip 5.120.50.228 164866 port 761 164866 unique_id port 164866 remote_ip 10.8.0.234 164871 username tahmasebi 164871 mac 164871 bytes_out 0 164871 bytes_in 0 164871 station_ip 5.119.109.36 164871 port 775 164871 unique_id port 164871 remote_ip 10.8.0.42 164876 username tahmasebi 164876 mac 164876 bytes_out 0 164876 bytes_in 0 164876 station_ip 5.119.109.36 164876 port 388 164876 unique_id port 164876 remote_ip 10.8.1.90 164878 username godarzi 164878 kill_reason Another user logged on this global unique id 164878 mac 164878 bytes_out 0 164878 bytes_in 0 164878 station_ip 5.202.6.91 164878 port 759 164878 unique_id port 164883 username kordestani 164883 kill_reason Another user logged on this global unique id 164883 mac 164883 bytes_out 0 164883 bytes_in 0 164883 station_ip 151.235.114.197 164883 port 771 164883 unique_id port 164883 remote_ip 10.8.0.74 164885 username kordestani 164885 mac 164885 bytes_out 0 164885 bytes_in 0 164885 station_ip 151.235.114.197 164885 port 771 164885 unique_id port 164886 username hadibarzegar 164886 mac 164886 bytes_out 0 164886 bytes_in 0 164886 station_ip 37.129.183.217 164886 port 757 164886 unique_id port 164889 username barzegar 164889 mac 164889 bytes_out 0 164889 bytes_in 0 164889 station_ip 5.120.50.228 164889 port 756 164889 unique_id port 164889 remote_ip 10.8.0.234 164892 username rahim 164892 mac 164892 bytes_out 0 164892 bytes_in 0 164892 station_ip 37.129.152.93 164892 port 773 164892 unique_id port 164892 remote_ip 10.8.0.50 164893 username tahmasebi 164893 mac 164893 bytes_out 0 164893 bytes_in 0 164893 station_ip 5.119.109.36 164893 port 765 164893 unique_id port 164893 remote_ip 10.8.0.42 164896 username rahim 164896 mac 164896 bytes_out 0 164896 bytes_in 0 164896 station_ip 5.119.211.178 164896 port 391 164896 unique_id port 164896 remote_ip 10.8.1.126 164897 username barzegar 164897 mac 164897 bytes_out 0 164897 bytes_in 0 164897 station_ip 5.120.50.228 164897 port 388 164897 unique_id port 164897 remote_ip 10.8.1.174 164898 username alihosseini1 164898 mac 164898 bytes_out 0 164898 bytes_in 0 164898 station_ip 5.119.174.234 164898 port 759 164898 unique_id port 164898 remote_ip 10.8.0.22 164899 username tahmasebi 164899 mac 164899 bytes_out 0 164899 bytes_in 0 164899 station_ip 5.119.109.36 164899 port 759 164899 unique_id port 164899 remote_ip 10.8.0.42 164901 username tahmorsi 164901 mac 164901 bytes_out 0 164901 bytes_in 0 164861 bytes_out 11253 164861 bytes_in 16649 164861 station_ip 46.225.210.112 164861 port 388 164861 unique_id port 164861 remote_ip 10.8.1.202 164863 username shadkam 164863 mac 164863 bytes_out 0 164863 bytes_in 0 164863 station_ip 83.123.39.32 164863 port 388 164863 unique_id port 164863 remote_ip 10.8.1.218 164865 username farhad2 164865 kill_reason Another user logged on this global unique id 164865 mac 164865 bytes_out 0 164865 bytes_in 0 164865 station_ip 5.119.249.28 164865 port 756 164865 unique_id port 164868 username tahmasebi 164868 mac 164868 bytes_out 0 164868 bytes_in 0 164868 station_ip 5.119.109.36 164868 port 761 164868 unique_id port 164868 remote_ip 10.8.0.42 164869 username tahmasebi 164869 mac 164869 bytes_out 0 164869 bytes_in 0 164869 station_ip 5.119.109.36 164869 port 774 164869 unique_id port 164869 remote_ip 10.8.0.42 164872 username kamali2 164872 mac 164872 bytes_out 2031403 164872 bytes_in 16813401 164872 station_ip 5.120.86.176 164872 port 770 164872 unique_id port 164872 remote_ip 10.8.0.158 164874 username hamidehfatemi 164874 mac 164874 bytes_out 0 164874 bytes_in 0 164874 station_ip 83.123.104.52 164874 port 761 164874 unique_id port 164874 remote_ip 10.8.0.246 164877 username tahmasebi 164877 mac 164877 bytes_out 0 164877 bytes_in 0 164877 station_ip 5.119.109.36 164877 port 388 164877 unique_id port 164877 remote_ip 10.8.1.90 164881 username jafari 164881 mac 164881 bytes_out 1947736 164881 bytes_in 13595702 164881 station_ip 37.156.59.132 164881 port 767 164881 unique_id port 164881 remote_ip 10.8.0.242 164887 username hosseine 164887 mac 164887 bytes_out 0 164887 bytes_in 0 164887 station_ip 83.122.210.45 164887 port 768 164887 unique_id port 164887 remote_ip 10.8.0.238 164890 username khademi 164890 mac 164890 bytes_out 0 164890 bytes_in 0 164890 station_ip 37.129.42.119 164890 port 765 164890 unique_id port 164890 remote_ip 10.8.0.10 164900 username hatami 164900 mac 164900 bytes_out 0 164900 bytes_in 0 164900 station_ip 151.235.125.157 164900 port 770 164900 unique_id port 164900 remote_ip 10.8.0.106 164904 username tahmasebi 164904 mac 164904 bytes_out 0 164904 bytes_in 0 164904 station_ip 5.119.109.36 164904 port 759 164904 unique_id port 164904 remote_ip 10.8.0.42 164906 username mirzaei 164906 mac 164906 bytes_out 0 164906 bytes_in 0 164906 station_ip 5.119.180.17 164906 port 761 164906 unique_id port 164906 remote_ip 10.8.0.66 164909 username moradi 164909 mac 164909 bytes_out 0 164909 bytes_in 0 164909 station_ip 37.129.195.161 164909 port 387 164909 unique_id port 164909 remote_ip 10.8.1.202 164911 username tahmasebi 164911 mac 164911 bytes_out 2209 164911 bytes_in 4486 164911 station_ip 5.119.109.36 164911 port 761 164911 unique_id port 164911 remote_ip 10.8.0.42 164912 username rahim 164912 mac 164912 bytes_out 0 164912 bytes_in 0 164912 station_ip 5.119.211.178 164912 port 756 164912 unique_id port 164912 remote_ip 10.8.0.50 164915 username nilufarrajaei 164915 kill_reason Another user logged on this global unique id 164915 mac 164915 bytes_out 0 164915 bytes_in 0 164915 station_ip 2.183.129.49 164915 port 741 164915 unique_id port 164915 remote_ip 10.8.0.206 164916 username shadkam 164916 mac 164916 bytes_out 0 164916 bytes_in 0 164916 station_ip 113.203.41.141 164916 port 760 164916 unique_id port 164916 remote_ip 10.8.0.62 164917 username tahmasebi 164917 mac 164917 bytes_out 0 164901 station_ip 86.57.99.130 164901 port 767 164901 unique_id port 164901 remote_ip 10.8.0.210 164903 username rezaei 164903 mac 164903 bytes_out 0 164903 bytes_in 0 164903 station_ip 5.119.14.25 164903 port 760 164903 unique_id port 164908 username barzegar 164908 mac 164908 bytes_out 17891 164908 bytes_in 22619 164908 station_ip 5.120.50.228 164908 port 759 164908 unique_id port 164908 remote_ip 10.8.0.234 164910 username vanila 164910 mac 164910 bytes_out 185449 164910 bytes_in 749039 164910 station_ip 37.129.57.7 164910 port 760 164910 unique_id port 164910 remote_ip 10.8.0.178 164914 username tahmasebi 164914 mac 164914 bytes_out 0 164914 bytes_in 0 164914 station_ip 5.119.109.36 164914 port 387 164914 unique_id port 164914 remote_ip 10.8.1.90 164918 username barzegar 164918 mac 164918 bytes_out 0 164918 bytes_in 0 164918 station_ip 5.120.50.228 164918 port 761 164918 unique_id port 164918 remote_ip 10.8.0.234 164922 username shadkam 164922 mac 164922 bytes_out 1160049 164922 bytes_in 14409887 164922 station_ip 37.129.14.43 164922 port 760 164922 unique_id port 164922 remote_ip 10.8.0.62 164925 username tahmasebi 164925 mac 164925 bytes_out 0 164925 bytes_in 0 164925 station_ip 5.119.109.36 164925 port 765 164925 unique_id port 164925 remote_ip 10.8.0.42 164928 username tahmasebi 164928 mac 164928 bytes_out 0 164928 bytes_in 0 164928 station_ip 5.119.109.36 164928 port 731 164928 unique_id port 164928 remote_ip 10.8.0.42 164931 username farhad2 164931 kill_reason Another user logged on this global unique id 164931 mac 164931 bytes_out 0 164931 bytes_in 0 164931 station_ip 5.120.191.200 164931 port 756 164931 unique_id port 164931 remote_ip 10.8.0.190 164936 username tahmasebi 164936 mac 164936 bytes_out 0 164936 bytes_in 0 164936 station_ip 5.119.109.36 164936 port 388 164936 unique_id port 164936 remote_ip 10.8.1.90 164937 username mohammadjavad 164937 mac 164937 bytes_out 0 164937 bytes_in 0 164937 station_ip 83.123.115.74 164937 port 741 164937 unique_id port 164937 remote_ip 10.8.0.142 164939 username saeed9658 164939 mac 164939 bytes_out 0 164939 bytes_in 0 164939 station_ip 5.120.112.58 164939 port 761 164939 unique_id port 164939 remote_ip 10.8.0.166 164942 username aminvpn 164942 mac 164942 bytes_out 0 164942 bytes_in 0 164942 station_ip 5.119.86.31 164942 port 759 164942 unique_id port 164944 username kamali2 164944 mac 164944 bytes_out 36839118 164944 bytes_in 29003392 164944 station_ip 5.119.98.158 164944 port 721 164944 unique_id port 164944 remote_ip 10.8.0.158 164945 username barzegar 164945 mac 164945 bytes_out 0 164945 bytes_in 0 164945 station_ip 5.120.50.228 164945 port 741 164945 unique_id port 164945 remote_ip 10.8.0.234 164946 username vanila 164946 mac 164946 bytes_out 0 164946 bytes_in 0 164946 station_ip 37.129.57.7 164946 port 721 164946 unique_id port 164946 remote_ip 10.8.0.178 164947 username alihosseini1 164947 mac 164947 bytes_out 0 164947 bytes_in 0 164947 station_ip 5.120.185.16 164947 port 388 164947 unique_id port 164947 remote_ip 10.8.1.106 164949 username barzegar 164949 mac 164949 bytes_out 0 164949 bytes_in 0 164949 station_ip 5.120.50.228 164949 port 721 164949 unique_id port 164949 remote_ip 10.8.0.234 164950 username tahmasebi 164950 mac 164950 bytes_out 0 164950 bytes_in 0 164950 station_ip 5.119.109.36 164950 port 388 164950 unique_id port 164950 remote_ip 10.8.1.90 164907 station_ip 5.119.109.36 164907 port 765 164907 unique_id port 164907 remote_ip 10.8.0.42 164913 username barzegar 164913 mac 164913 bytes_out 0 164913 bytes_in 0 164913 station_ip 5.120.50.228 164913 port 387 164913 unique_id port 164913 remote_ip 10.8.1.174 164921 username nilufarrajaei 164921 mac 164921 bytes_out 0 164921 bytes_in 0 164921 station_ip 2.183.129.49 164921 port 741 164921 unique_id port 164924 username alihosseini1 164924 mac 164924 bytes_out 25341 164924 bytes_in 58358 164924 station_ip 5.119.179.70 164924 port 741 164924 unique_id port 164924 remote_ip 10.8.0.22 164926 username mosi 164926 mac 164926 bytes_out 0 164926 bytes_in 0 164926 station_ip 151.235.96.72 164926 port 731 164926 unique_id port 164926 remote_ip 10.8.0.138 164930 username aminvpn 164930 kill_reason Another user logged on this global unique id 164930 mac 164930 bytes_out 0 164930 bytes_in 0 164930 station_ip 5.119.86.31 164930 port 759 164930 unique_id port 164930 remote_ip 10.8.0.14 164933 username pourshad 164933 kill_reason Another user logged on this global unique id 164933 mac 164933 bytes_out 0 164933 bytes_in 0 164933 station_ip 5.120.82.40 164933 port 731 164933 unique_id port 164933 remote_ip 10.8.0.18 164935 username barzegar 164935 mac 164935 bytes_out 0 164935 bytes_in 0 164935 station_ip 5.120.50.228 164935 port 391 164935 unique_id port 164935 remote_ip 10.8.1.174 164940 username tahmasebi 164940 mac 164940 bytes_out 0 164940 bytes_in 0 164940 station_ip 5.119.109.36 164940 port 388 164940 unique_id port 164940 remote_ip 10.8.1.90 164943 username alihosseini1 164943 mac 164943 bytes_out 0 164943 bytes_in 0 164943 station_ip 5.119.179.70 164943 port 760 164943 unique_id port 164943 remote_ip 10.8.0.22 164948 username pourshad 164948 kill_reason Another user logged on this global unique id 164948 mac 164948 bytes_out 0 164948 bytes_in 0 164948 station_ip 5.120.82.40 164948 port 731 164948 unique_id port 164952 username farhad2 164952 kill_reason Another user logged on this global unique id 164952 mac 164952 bytes_out 0 164952 bytes_in 0 164952 station_ip 5.120.191.200 164952 port 756 164952 unique_id port 164953 username hosseine 164953 mac 164953 bytes_out 0 164953 bytes_in 0 164953 station_ip 83.122.210.45 164953 port 757 164953 unique_id port 164953 remote_ip 10.8.0.238 164954 username hashtadani4 164954 mac 164954 bytes_out 254232 164954 bytes_in 2654462 164954 station_ip 83.123.96.238 164954 port 721 164954 unique_id port 164954 remote_ip 10.8.0.182 164958 username hashtadani4 164958 mac 164958 bytes_out 0 164958 bytes_in 0 164958 station_ip 83.123.96.238 164958 port 741 164958 unique_id port 164958 remote_ip 10.8.0.182 164959 username mohammadjavad 164959 mac 164959 bytes_out 92637 164959 bytes_in 902706 164959 station_ip 83.122.142.136 164959 port 721 164959 unique_id port 164959 remote_ip 10.8.0.142 164962 username hashtadani4 164962 mac 164962 bytes_out 0 164962 bytes_in 0 164962 station_ip 83.123.96.238 164962 port 721 164962 unique_id port 164962 remote_ip 10.8.0.182 164968 username yaghobi 164968 kill_reason Maximum check online fails reached 164968 mac 164968 bytes_out 0 164968 bytes_in 0 164968 station_ip 83.123.108.191 164968 port 721 164968 unique_id port 164974 username hashtadani4 164974 mac 164974 bytes_out 0 164974 bytes_in 0 164974 station_ip 83.123.96.238 164974 port 390 164974 unique_id port 164974 remote_ip 10.8.1.142 164975 username sekonji3 164975 mac 164975 bytes_out 250449 164917 bytes_in 0 164917 station_ip 5.119.109.36 164917 port 387 164917 unique_id port 164917 remote_ip 10.8.1.90 164919 username farhad2 164919 mac 164919 bytes_out 0 164919 bytes_in 0 164919 station_ip 5.120.191.200 164919 port 756 164919 unique_id port 164919 remote_ip 10.8.0.190 164920 username tahmasebi 164920 mac 164920 bytes_out 0 164920 bytes_in 0 164920 station_ip 5.119.109.36 164920 port 387 164920 unique_id port 164920 remote_ip 10.8.1.90 164923 username barzegar 164923 mac 164923 bytes_out 0 164923 bytes_in 0 164923 station_ip 5.120.50.228 164923 port 767 164923 unique_id port 164923 remote_ip 10.8.0.234 164927 username tahmasebi 164927 mac 164927 bytes_out 0 164927 bytes_in 0 164927 station_ip 5.119.109.36 164927 port 731 164927 unique_id port 164927 remote_ip 10.8.0.42 164929 username sabaghnezhad 164929 mac 164929 bytes_out 369057 164929 bytes_in 775472 164929 station_ip 83.123.87.142 164929 port 721 164929 unique_id port 164929 remote_ip 10.8.0.186 164932 username alihosseini1 164932 mac 164932 bytes_out 0 164932 bytes_in 0 164932 station_ip 5.119.179.70 164932 port 741 164932 unique_id port 164932 remote_ip 10.8.0.22 164934 username barzegar 164934 mac 164934 bytes_out 5309 164934 bytes_in 8213 164934 station_ip 5.120.50.228 164934 port 388 164934 unique_id port 164934 remote_ip 10.8.1.174 164938 username tahmasebi 164938 mac 164938 bytes_out 0 164938 bytes_in 0 164938 station_ip 5.119.109.36 164938 port 388 164938 unique_id port 164938 remote_ip 10.8.1.90 164941 username farhad2 164941 kill_reason Another user logged on this global unique id 164941 mac 164941 bytes_out 0 164941 bytes_in 0 164941 station_ip 5.120.191.200 164941 port 756 164941 unique_id port 164951 username vanila 164951 mac 164951 bytes_out 738138 164951 bytes_in 8175197 164951 station_ip 37.129.57.7 164951 port 741 164951 unique_id port 164951 remote_ip 10.8.0.178 164956 username farhad2 164956 mac 164956 bytes_out 0 164956 bytes_in 0 164956 station_ip 5.120.191.200 164956 port 756 164956 unique_id port 164957 username pourshad 164957 kill_reason Another user logged on this global unique id 164957 mac 164957 bytes_out 0 164957 bytes_in 0 164957 station_ip 5.120.82.40 164957 port 731 164957 unique_id port 164964 username moradi 164964 mac 164964 bytes_out 0 164964 bytes_in 0 164964 station_ip 37.44.59.74 164964 port 759 164964 unique_id port 164964 remote_ip 10.8.0.126 164969 username malekpoir 164969 kill_reason Another user logged on this global unique id 164969 mac 164969 bytes_out 0 164969 bytes_in 0 164969 station_ip 5.120.132.126 164969 port 762 164969 unique_id port 164969 remote_ip 10.8.0.58 164971 username barzegar 164971 mac 164971 bytes_out 74326 164971 bytes_in 127042 164971 station_ip 5.120.50.228 164971 port 388 164971 unique_id port 164971 remote_ip 10.8.1.174 164972 username hashtadani4 164972 mac 164972 bytes_out 0 164972 bytes_in 0 164972 station_ip 83.123.96.238 164972 port 757 164972 unique_id port 164972 remote_ip 10.8.0.182 164978 username yaghobi 164978 mac 164978 bytes_out 1640473 164978 bytes_in 25058105 164978 station_ip 83.122.230.120 164978 port 756 164978 unique_id port 164978 remote_ip 10.8.0.198 164979 username moradi 164979 kill_reason Another user logged on this global unique id 164979 mac 164979 bytes_out 0 164979 bytes_in 0 164979 station_ip 83.122.14.155 164979 port 391 164979 unique_id port 164979 remote_ip 10.8.1.202 164980 username hashtadani4 164980 mac 164955 username hashtadani4 164955 mac 164955 bytes_out 0 164955 bytes_in 0 164955 station_ip 83.123.96.238 164955 port 392 164955 unique_id port 164955 remote_ip 10.8.1.142 164960 username hashtadani4 164960 mac 164960 bytes_out 0 164960 bytes_in 0 164960 station_ip 83.123.96.238 164960 port 393 164960 unique_id port 164960 remote_ip 10.8.1.142 164961 username hashtadani4 164961 mac 164961 bytes_out 0 164961 bytes_in 0 164961 station_ip 83.123.96.238 164961 port 394 164961 unique_id port 164961 remote_ip 10.8.1.142 164963 username tahmasebi 164963 mac 164963 bytes_out 0 164963 bytes_in 0 164963 station_ip 5.119.109.36 164963 port 393 164963 unique_id port 164963 remote_ip 10.8.1.90 164965 username pourshad 164965 mac 164965 bytes_out 0 164965 bytes_in 0 164965 station_ip 5.120.82.40 164965 port 731 164965 unique_id port 164966 username pourshad 164966 mac 164966 bytes_out 20829 164966 bytes_in 79629 164966 station_ip 5.120.82.40 164966 port 721 164966 unique_id port 164966 remote_ip 10.8.0.18 164967 username farhad2 164967 mac 164967 bytes_out 0 164967 bytes_in 0 164967 station_ip 5.120.191.200 164967 port 392 164967 unique_id port 164967 remote_ip 10.8.1.222 164970 username hashtadani4 164970 mac 164970 bytes_out 0 164970 bytes_in 0 164970 station_ip 83.123.96.238 164970 port 757 164970 unique_id port 164970 remote_ip 10.8.0.182 164973 username godarzi 164973 mac 164973 bytes_out 0 164973 bytes_in 0 164973 station_ip 5.202.6.91 164973 port 390 164973 unique_id port 164973 remote_ip 10.8.1.230 164976 username hashtadani4 164976 mac 164976 bytes_out 0 164976 bytes_in 0 164976 station_ip 83.123.96.238 164976 port 759 164976 unique_id port 164976 remote_ip 10.8.0.182 164983 username kordestani 164983 mac 164983 bytes_out 0 164983 bytes_in 0 164983 station_ip 151.235.112.95 164983 port 388 164983 unique_id port 164983 remote_ip 10.8.1.98 164985 username asadi 164985 kill_reason Relative expiration date has reached 164985 mac 164985 bytes_out 0 164985 bytes_in 0 164985 station_ip 83.122.9.162 164985 port 756 164985 unique_id port 164990 username tahmasebi 164990 mac 164990 bytes_out 0 164990 bytes_in 0 164990 station_ip 5.119.109.36 164990 port 731 164990 unique_id port 164990 remote_ip 10.8.0.42 164994 username sabaghnezhad 164994 mac 164994 bytes_out 0 164994 bytes_in 0 164994 station_ip 37.129.202.2 164994 port 388 164994 unique_id port 164994 remote_ip 10.8.1.130 164995 username vanila 164995 mac 164995 bytes_out 409276 164995 bytes_in 1607260 164995 station_ip 37.129.57.7 164995 port 759 164995 unique_id port 164995 remote_ip 10.8.0.178 165004 username barzegar 165004 mac 165004 bytes_out 0 165004 bytes_in 0 165004 station_ip 5.120.50.228 165004 port 388 165004 unique_id port 165004 remote_ip 10.8.1.174 165006 username farhad2 165006 mac 165006 bytes_out 3327338 165006 bytes_in 35701762 165006 station_ip 5.120.191.200 165006 port 756 165006 unique_id port 165006 remote_ip 10.8.0.190 165007 username farhad2 165007 mac 165007 bytes_out 0 165007 bytes_in 0 165007 station_ip 5.120.191.200 165007 port 756 165007 unique_id port 165007 remote_ip 10.8.0.190 165010 username aminvpn 165010 unique_id port 165010 terminate_cause Lost-Carrier 165010 bytes_out 1371765 165010 bytes_in 4268441 165010 station_ip 5.120.43.143 165010 port 15728687 165010 nas_port_type Virtual 165010 remote_ip 5.5.5.217 165012 username farhad2 165012 mac 164975 bytes_in 2048269 164975 station_ip 83.123.85.22 164975 port 731 164975 unique_id port 164975 remote_ip 10.8.0.6 164977 username barzegar 164977 mac 164977 bytes_out 0 164977 bytes_in 0 164977 station_ip 5.120.50.228 164977 port 388 164977 unique_id port 164977 remote_ip 10.8.1.174 164981 username aminvpn 164981 unique_id port 164981 terminate_cause User-Request 164981 bytes_out 1164998 164981 bytes_in 8844723 164981 station_ip 31.57.142.222 164981 port 15728686 164981 nas_port_type Virtual 164981 remote_ip 5.5.5.218 164982 username barzegar 164982 mac 164982 bytes_out 0 164982 bytes_in 0 164982 station_ip 5.120.50.228 164982 port 756 164982 unique_id port 164982 remote_ip 10.8.0.234 164988 username vanila 164988 mac 164988 bytes_out 255910 164988 bytes_in 706528 164988 station_ip 37.129.57.7 164988 port 731 164988 unique_id port 164988 remote_ip 10.8.0.178 164991 username hashtadani4 164991 mac 164991 bytes_out 0 164991 bytes_in 0 164991 station_ip 83.123.96.238 164991 port 731 164991 unique_id port 164991 remote_ip 10.8.0.182 164992 username khademi 164992 kill_reason Another user logged on this global unique id 164992 mac 164992 bytes_out 0 164992 bytes_in 0 164992 station_ip 37.129.42.119 164992 port 758 164992 unique_id port 164992 remote_ip 10.8.0.10 164993 username sekonji3 164993 mac 164993 bytes_out 0 164993 bytes_in 0 164993 station_ip 83.123.85.22 164993 port 731 164993 unique_id port 164993 remote_ip 10.8.0.6 164997 username aminvpn 164997 unique_id port 164997 terminate_cause User-Request 164997 bytes_out 606439 164997 bytes_in 12640089 164997 station_ip 5.120.127.129 164997 port 15728688 164997 nas_port_type Virtual 164997 remote_ip 5.5.5.215 164999 username aminvpn 164999 unique_id port 164999 terminate_cause User-Request 164999 bytes_out 146147 164999 bytes_in 2074290 164999 station_ip 5.120.127.129 164999 port 15728689 164999 nas_port_type Virtual 164999 remote_ip 5.5.5.214 165000 username hashtadani4 165000 mac 165000 bytes_out 0 165000 bytes_in 0 165000 station_ip 83.123.96.238 165000 port 759 165000 unique_id port 165000 remote_ip 10.8.0.182 165002 username pourshad 165002 kill_reason Another user logged on this global unique id 165002 mac 165002 bytes_out 0 165002 bytes_in 0 165002 station_ip 5.120.82.40 165002 port 741 165002 unique_id port 165002 remote_ip 10.8.0.18 165003 username tahmasebi 165003 mac 165003 bytes_out 0 165003 bytes_in 0 165003 station_ip 5.119.109.36 165003 port 759 165003 unique_id port 165003 remote_ip 10.8.0.42 165011 username farhad2 165011 mac 165011 bytes_out 243731 165011 bytes_in 2068176 165011 station_ip 5.120.191.200 165011 port 731 165011 unique_id port 165011 remote_ip 10.8.0.190 165014 username shadkam 165014 mac 165014 bytes_out 0 165014 bytes_in 0 165014 station_ip 83.123.237.98 165014 port 757 165014 unique_id port 165014 remote_ip 10.8.0.62 165022 username moradi 165022 mac 165022 bytes_out 0 165022 bytes_in 0 165022 station_ip 83.122.14.155 165022 port 391 165022 unique_id port 165023 username hashtadani4 165023 mac 165023 bytes_out 0 165023 bytes_in 0 165023 station_ip 83.123.96.238 165023 port 762 165023 unique_id port 165023 remote_ip 10.8.0.182 165026 username sekonji3 165026 mac 165026 bytes_out 19816 165026 bytes_in 26100 165026 station_ip 83.123.85.22 165026 port 761 165026 unique_id port 165026 remote_ip 10.8.0.6 165032 username hashtadani4 165032 mac 165032 bytes_out 1644 165032 bytes_in 3948 165032 station_ip 83.123.96.238 165032 port 759 164980 bytes_out 0 164980 bytes_in 0 164980 station_ip 83.123.96.238 164980 port 759 164980 unique_id port 164980 remote_ip 10.8.0.182 164984 username barzegar 164984 mac 164984 bytes_out 0 164984 bytes_in 0 164984 station_ip 5.120.50.228 164984 port 756 164984 unique_id port 164984 remote_ip 10.8.0.234 164986 username tahmasebi 164986 mac 164986 bytes_out 0 164986 bytes_in 0 164986 station_ip 5.119.109.36 164986 port 759 164986 unique_id port 164986 remote_ip 10.8.0.42 164987 username farhad2 164987 mac 164987 bytes_out 0 164987 bytes_in 0 164987 station_ip 5.120.191.200 164987 port 392 164987 unique_id port 164987 remote_ip 10.8.1.222 164989 username sekonji3 164989 mac 164989 bytes_out 0 164989 bytes_in 0 164989 station_ip 83.123.85.22 164989 port 731 164989 unique_id port 164989 remote_ip 10.8.0.6 164996 username hashtadani4 164996 mac 164996 bytes_out 0 164996 bytes_in 0 164996 station_ip 83.123.96.238 164996 port 731 164996 unique_id port 164996 remote_ip 10.8.0.182 164998 username malekpoir 164998 mac 164998 bytes_out 0 164998 bytes_in 0 164998 station_ip 5.120.132.126 164998 port 762 164998 unique_id port 165001 username aminvpn 165001 unique_id port 165001 terminate_cause User-Request 165001 bytes_out 26789 165001 bytes_in 46192 165001 station_ip 5.120.127.129 165001 port 15728690 165001 nas_port_type Virtual 165001 remote_ip 5.5.5.213 165005 username godarzi 165005 mac 165005 bytes_out 1489876 165005 bytes_in 9976002 165005 station_ip 5.202.6.91 165005 port 757 165005 unique_id port 165005 remote_ip 10.8.0.174 165008 username sekonji3 165008 mac 165008 bytes_out 113559 165008 bytes_in 1598709 165008 station_ip 83.123.85.22 165008 port 731 165008 unique_id port 165008 remote_ip 10.8.0.6 165009 username hashtadani4 165009 mac 165009 bytes_out 0 165009 bytes_in 0 165009 station_ip 83.123.96.238 165009 port 731 165009 unique_id port 165009 remote_ip 10.8.0.182 165016 username hashtadani4 165016 mac 165016 bytes_out 0 165016 bytes_in 0 165016 station_ip 83.123.96.238 165016 port 761 165016 unique_id port 165016 remote_ip 10.8.0.182 165018 username moradi 165018 kill_reason Another user logged on this global unique id 165018 mac 165018 bytes_out 0 165018 bytes_in 0 165018 station_ip 83.122.14.155 165018 port 391 165018 unique_id port 165021 username tahmasebi 165021 mac 165021 bytes_out 0 165021 bytes_in 0 165021 station_ip 5.119.109.36 165021 port 388 165021 unique_id port 165021 remote_ip 10.8.1.90 165025 username vanila 165025 mac 165025 bytes_out 98020 165025 bytes_in 230545 165025 station_ip 37.129.57.7 165025 port 762 165025 unique_id port 165025 remote_ip 10.8.0.178 165029 username tahmasebi 165029 kill_reason Maximum check online fails reached 165029 mac 165029 bytes_out 0 165029 bytes_in 0 165029 station_ip 5.119.109.36 165029 port 388 165029 unique_id port 165030 username sekonji3 165030 mac 165030 bytes_out 0 165030 bytes_in 0 165030 station_ip 83.123.85.22 165030 port 759 165030 unique_id port 165030 remote_ip 10.8.0.6 165031 username barzegar 165031 mac 165031 bytes_out 0 165031 bytes_in 0 165031 station_ip 5.120.50.228 165031 port 761 165031 unique_id port 165031 remote_ip 10.8.0.234 165033 username sekonji3 165033 mac 165033 bytes_out 0 165033 bytes_in 0 165033 station_ip 83.123.85.22 165033 port 759 165033 unique_id port 165033 remote_ip 10.8.0.6 165038 username farhad2 165038 mac 165038 bytes_out 2309020 165038 bytes_in 14778131 165012 bytes_out 0 165012 bytes_in 0 165012 station_ip 5.120.191.200 165012 port 731 165012 unique_id port 165012 remote_ip 10.8.0.190 165013 username pourshad 165013 kill_reason Another user logged on this global unique id 165013 mac 165013 bytes_out 0 165013 bytes_in 0 165013 station_ip 5.120.82.40 165013 port 741 165013 unique_id port 165015 username barzegar 165015 mac 165015 bytes_out 0 165015 bytes_in 0 165015 station_ip 5.120.50.228 165015 port 388 165015 unique_id port 165015 remote_ip 10.8.1.174 165017 username sekonji3 165017 mac 165017 bytes_out 5637 165017 bytes_in 6963 165017 station_ip 83.123.85.22 165017 port 731 165017 unique_id port 165017 remote_ip 10.8.0.6 165019 username hashtadani4 165019 kill_reason Maximum check online fails reached 165019 mac 165019 bytes_out 0 165019 bytes_in 0 165019 station_ip 83.123.96.238 165019 port 760 165019 unique_id port 165020 username shadkam 165020 mac 165020 bytes_out 0 165020 bytes_in 0 165020 station_ip 83.123.45.127 165020 port 757 165020 unique_id port 165020 remote_ip 10.8.0.62 165024 username pourshad 165024 kill_reason Another user logged on this global unique id 165024 mac 165024 bytes_out 0 165024 bytes_in 0 165024 station_ip 5.120.82.40 165024 port 741 165024 unique_id port 165027 username houshang 165027 mac 165027 bytes_out 0 165027 bytes_in 0 165027 station_ip 5.119.35.107 165027 port 759 165027 unique_id port 165027 remote_ip 10.8.0.134 165028 username tahmasebi 165028 mac 165028 bytes_out 0 165028 bytes_in 0 165028 station_ip 5.119.109.36 165028 port 759 165028 unique_id port 165028 remote_ip 10.8.0.42 165034 username pourshad 165034 kill_reason Another user logged on this global unique id 165034 mac 165034 bytes_out 0 165034 bytes_in 0 165034 station_ip 5.120.82.40 165034 port 741 165034 unique_id port 165035 username tahmasebi 165035 mac 165035 bytes_out 0 165035 bytes_in 0 165035 station_ip 5.119.109.36 165035 port 762 165035 unique_id port 165035 remote_ip 10.8.0.42 165037 username tahmasebi 165037 mac 165037 bytes_out 0 165037 bytes_in 0 165037 station_ip 5.119.109.36 165037 port 767 165037 unique_id port 165037 remote_ip 10.8.0.42 165040 username barzegar 165040 mac 165040 bytes_out 0 165040 bytes_in 0 165040 station_ip 5.120.50.228 165040 port 757 165040 unique_id port 165040 remote_ip 10.8.0.234 165043 username shadkam 165043 kill_reason Another user logged on this global unique id 165043 mac 165043 bytes_out 0 165043 bytes_in 0 165043 station_ip 37.129.26.52 165043 port 762 165043 unique_id port 165043 remote_ip 10.8.0.62 165045 username tahmasebi 165045 mac 165045 bytes_out 0 165045 bytes_in 0 165045 station_ip 5.119.109.36 165045 port 768 165045 unique_id port 165045 remote_ip 10.8.0.42 165047 username farhad2 165047 mac 165047 bytes_out 0 165047 bytes_in 0 165047 station_ip 5.120.191.200 165047 port 768 165047 unique_id port 165047 remote_ip 10.8.0.190 165049 username pourshad 165049 mac 165049 bytes_out 0 165049 bytes_in 0 165049 station_ip 5.120.82.40 165049 port 741 165049 unique_id port 165053 username hadibarzegar 165053 mac 165053 bytes_out 1130127 165053 bytes_in 11653933 165053 station_ip 37.129.183.217 165053 port 765 165053 unique_id port 165053 remote_ip 10.8.0.154 165054 username vanila 165054 mac 165054 bytes_out 1074682 165054 bytes_in 5782869 165054 station_ip 37.129.57.7 165054 port 759 165054 unique_id port 165054 remote_ip 10.8.0.178 165056 username tahmasebi 165056 mac 165056 bytes_out 0 165032 unique_id port 165032 remote_ip 10.8.0.182 165036 username hadibarzegar 165036 mac 165036 bytes_out 0 165036 bytes_in 0 165036 station_ip 37.129.183.217 165036 port 389 165036 unique_id port 165036 remote_ip 10.8.1.150 165044 username farhad2 165044 mac 165044 bytes_out 151797 165044 bytes_in 1014397 165044 station_ip 5.120.191.200 165044 port 389 165044 unique_id port 165044 remote_ip 10.8.1.222 165046 username pourshad 165046 kill_reason Another user logged on this global unique id 165046 mac 165046 bytes_out 0 165046 bytes_in 0 165046 station_ip 5.120.82.40 165046 port 741 165046 unique_id port 165048 username tahmasebi 165048 mac 165048 bytes_out 0 165048 bytes_in 0 165048 station_ip 5.119.109.36 165048 port 769 165048 unique_id port 165048 remote_ip 10.8.0.42 165051 username farhad2 165051 mac 165051 bytes_out 0 165051 bytes_in 0 165051 station_ip 5.120.191.200 165051 port 389 165051 unique_id port 165051 remote_ip 10.8.1.222 165052 username farhad2 165052 mac 165052 bytes_out 1572 165052 bytes_in 6287 165052 station_ip 5.120.191.200 165052 port 769 165052 unique_id port 165052 remote_ip 10.8.0.190 165055 username barzegar 165055 mac 165055 bytes_out 0 165055 bytes_in 0 165055 station_ip 5.120.50.228 165055 port 768 165055 unique_id port 165055 remote_ip 10.8.0.234 165059 username barzegar 165059 mac 165059 bytes_out 0 165059 bytes_in 0 165059 station_ip 5.120.50.228 165059 port 391 165059 unique_id port 165059 remote_ip 10.8.1.174 165063 username hashtadani4 165063 mac 165063 bytes_out 0 165063 bytes_in 0 165063 station_ip 83.123.96.238 165063 port 765 165063 unique_id port 165063 remote_ip 10.8.0.182 165067 username shadkam 165067 kill_reason Another user logged on this global unique id 165067 mac 165067 bytes_out 0 165067 bytes_in 0 165067 station_ip 37.129.26.52 165067 port 762 165067 unique_id port 165068 username hashtadani4 165068 mac 165068 bytes_out 0 165068 bytes_in 0 165068 station_ip 83.123.96.238 165068 port 765 165068 unique_id port 165068 remote_ip 10.8.0.182 165071 username tahmasebi 165071 mac 165071 bytes_out 2209 165071 bytes_in 4486 165071 station_ip 5.119.109.36 165071 port 765 165071 unique_id port 165071 remote_ip 10.8.0.42 165074 username moradi 165074 kill_reason Another user logged on this global unique id 165074 mac 165074 bytes_out 0 165074 bytes_in 0 165074 station_ip 37.44.59.74 165074 port 757 165074 unique_id port 165074 remote_ip 10.8.0.126 165077 username hashtadani4 165077 mac 165077 bytes_out 0 165077 bytes_in 0 165077 station_ip 83.123.96.238 165077 port 759 165077 unique_id port 165077 remote_ip 10.8.0.182 165078 username pourshad 165078 kill_reason Another user logged on this global unique id 165078 mac 165078 bytes_out 0 165078 bytes_in 0 165078 station_ip 5.120.82.40 165078 port 741 165078 unique_id port 165078 remote_ip 10.8.0.18 165079 username barzegar 165079 mac 165079 bytes_out 0 165079 bytes_in 0 165079 station_ip 5.120.50.228 165079 port 391 165079 unique_id port 165079 remote_ip 10.8.1.174 165080 username tahmasebi 165080 mac 165080 bytes_out 0 165080 bytes_in 0 165080 station_ip 5.119.109.36 165080 port 765 165080 unique_id port 165080 remote_ip 10.8.0.42 165083 username hashtadani4 165083 mac 165083 bytes_out 0 165083 bytes_in 0 165083 station_ip 83.123.96.238 165083 port 765 165083 unique_id port 165083 remote_ip 10.8.0.182 165084 username shadkam 165084 kill_reason Another user logged on this global unique id 165084 mac 165038 station_ip 5.120.191.200 165038 port 757 165038 unique_id port 165038 remote_ip 10.8.0.190 165039 username farhad2 165039 mac 165039 bytes_out 0 165039 bytes_in 0 165039 station_ip 5.120.191.200 165039 port 757 165039 unique_id port 165039 remote_ip 10.8.0.190 165041 username barzegar 165041 mac 165041 bytes_out 0 165041 bytes_in 0 165041 station_ip 5.120.50.228 165041 port 768 165041 unique_id port 165041 remote_ip 10.8.0.234 165042 username tahmasebi 165042 mac 165042 bytes_out 0 165042 bytes_in 0 165042 station_ip 5.119.109.36 165042 port 768 165042 unique_id port 165042 remote_ip 10.8.0.42 165050 username barzegar 165050 mac 165050 bytes_out 0 165050 bytes_in 0 165050 station_ip 5.120.50.228 165050 port 768 165050 unique_id port 165050 remote_ip 10.8.0.234 165057 username hashtadani4 165057 mac 165057 bytes_out 0 165057 bytes_in 0 165057 station_ip 83.123.96.238 165057 port 390 165057 unique_id port 165057 remote_ip 10.8.1.142 165058 username hashtadani4 165058 mac 165058 bytes_out 0 165058 bytes_in 0 165058 station_ip 83.123.96.238 165058 port 765 165058 unique_id port 165058 remote_ip 10.8.0.182 165060 username vanila 165060 mac 165060 bytes_out 0 165060 bytes_in 0 165060 station_ip 37.129.57.7 165060 port 769 165060 unique_id port 165060 remote_ip 10.8.0.178 165062 username tahmasebi 165062 mac 165062 bytes_out 0 165062 bytes_in 0 165062 station_ip 5.119.109.36 165062 port 765 165062 unique_id port 165062 remote_ip 10.8.0.42 165064 username hashtadani4 165064 mac 165064 bytes_out 0 165064 bytes_in 0 165064 station_ip 83.123.96.238 165064 port 765 165064 unique_id port 165064 remote_ip 10.8.0.182 165066 username mohammadmahdi 165066 kill_reason Another user logged on this global unique id 165066 mac 165066 bytes_out 0 165066 bytes_in 0 165066 station_ip 5.120.48.178 165066 port 767 165066 unique_id port 165066 remote_ip 10.8.0.54 165073 username farhad2 165073 mac 165073 bytes_out 116092 165073 bytes_in 1240832 165073 station_ip 5.120.191.200 165073 port 389 165073 unique_id port 165073 remote_ip 10.8.1.222 165075 username tahmasebi 165075 mac 165075 bytes_out 0 165075 bytes_in 0 165075 station_ip 5.119.109.36 165075 port 759 165075 unique_id port 165075 remote_ip 10.8.0.42 165085 username moradi 165085 mac 165085 bytes_out 0 165085 bytes_in 0 165085 station_ip 37.44.59.74 165085 port 757 165085 unique_id port 165090 username mohammadmahdi 165090 kill_reason Another user logged on this global unique id 165090 mac 165090 bytes_out 0 165090 bytes_in 0 165090 station_ip 5.120.48.178 165090 port 767 165090 unique_id port 165094 username tahmasebi 165094 mac 165094 bytes_out 0 165094 bytes_in 0 165094 station_ip 5.119.109.36 165094 port 391 165094 unique_id port 165094 remote_ip 10.8.1.90 165103 username kordestani 165103 mac 165103 bytes_out 4096216 165103 bytes_in 55177734 165103 station_ip 151.235.112.95 165103 port 756 165103 unique_id port 165103 remote_ip 10.8.0.74 165105 username mahdiyehalizadeh 165105 mac 165105 bytes_out 1654824 165105 bytes_in 20728649 165105 station_ip 5.120.120.59 165105 port 759 165105 unique_id port 165105 remote_ip 10.8.0.82 165111 username mohammadmahdi 165111 mac 165111 bytes_out 0 165111 bytes_in 0 165111 station_ip 5.120.48.178 165111 port 757 165111 unique_id port 165111 remote_ip 10.8.0.54 165112 username hashtadani4 165112 mac 165112 bytes_out 0 165112 bytes_in 0 165112 station_ip 83.123.96.238 165112 port 757 165056 bytes_in 0 165056 station_ip 5.119.109.36 165056 port 765 165056 unique_id port 165056 remote_ip 10.8.0.42 165061 username hashtadani4 165061 mac 165061 bytes_out 0 165061 bytes_in 0 165061 station_ip 83.123.96.238 165061 port 768 165061 unique_id port 165061 remote_ip 10.8.0.182 165065 username hashtadani4 165065 mac 165065 bytes_out 0 165065 bytes_in 0 165065 station_ip 83.123.96.238 165065 port 765 165065 unique_id port 165065 remote_ip 10.8.0.182 165069 username farhad2 165069 mac 165069 bytes_out 0 165069 bytes_in 0 165069 station_ip 5.120.191.200 165069 port 389 165069 unique_id port 165069 remote_ip 10.8.1.222 165070 username farhad2 165070 mac 165070 bytes_out 0 165070 bytes_in 0 165070 station_ip 5.120.191.200 165070 port 389 165070 unique_id port 165070 remote_ip 10.8.1.222 165072 username aminvpn 165072 mac 165072 bytes_out 0 165072 bytes_in 0 165072 station_ip 5.119.210.108 165072 port 759 165072 unique_id port 165072 remote_ip 10.8.0.14 165076 username farhad2 165076 mac 165076 bytes_out 0 165076 bytes_in 0 165076 station_ip 5.120.191.200 165076 port 389 165076 unique_id port 165076 remote_ip 10.8.1.222 165081 username hashtadani4 165081 mac 165081 bytes_out 0 165081 bytes_in 0 165081 station_ip 83.123.96.238 165081 port 765 165081 unique_id port 165081 remote_ip 10.8.0.182 165082 username hashtadani4 165082 mac 165082 bytes_out 0 165082 bytes_in 0 165082 station_ip 83.123.96.238 165082 port 391 165082 unique_id port 165082 remote_ip 10.8.1.142 165087 username naeimeh 165087 mac 165087 bytes_out 0 165087 bytes_in 0 165087 station_ip 83.123.56.213 165087 port 389 165087 unique_id port 165087 remote_ip 10.8.1.206 165088 username barzegar 165088 mac 165088 bytes_out 0 165088 bytes_in 0 165088 station_ip 5.120.50.228 165088 port 392 165088 unique_id port 165088 remote_ip 10.8.1.174 165089 username hashtadani4 165089 mac 165089 bytes_out 0 165089 bytes_in 0 165089 station_ip 83.123.96.238 165089 port 768 165089 unique_id port 165089 remote_ip 10.8.0.182 165093 username aminvpn 165093 kill_reason Another user logged on this global unique id 165093 mac 165093 bytes_out 0 165093 bytes_in 0 165093 station_ip 5.120.108.52 165093 port 765 165093 unique_id port 165093 remote_ip 10.8.0.14 165096 username shadkam 165096 mac 165096 bytes_out 0 165096 bytes_in 0 165096 station_ip 37.129.26.52 165096 port 762 165096 unique_id port 165097 username aminvpn 165097 kill_reason Another user logged on this global unique id 165097 mac 165097 bytes_out 0 165097 bytes_in 0 165097 station_ip 5.120.108.52 165097 port 765 165097 unique_id port 165099 username naeimeh 165099 mac 165099 bytes_out 0 165099 bytes_in 0 165099 station_ip 83.123.56.213 165099 port 389 165099 unique_id port 165099 remote_ip 10.8.1.206 165100 username barzegar 165100 mac 165100 bytes_out 0 165100 bytes_in 0 165100 station_ip 5.120.50.228 165100 port 757 165100 unique_id port 165100 remote_ip 10.8.0.234 165102 username pourshad 165102 kill_reason Another user logged on this global unique id 165102 mac 165102 bytes_out 0 165102 bytes_in 0 165102 station_ip 5.120.82.40 165102 port 741 165102 unique_id port 165104 username hashtadani4 165104 mac 165104 bytes_out 0 165104 bytes_in 0 165104 station_ip 83.123.96.238 165104 port 757 165104 unique_id port 165104 remote_ip 10.8.0.182 165107 username farhad2 165107 mac 165107 bytes_out 0 165107 bytes_in 0 165084 bytes_out 0 165084 bytes_in 0 165084 station_ip 37.129.26.52 165084 port 762 165084 unique_id port 165086 username tahmasebi 165086 mac 165086 bytes_out 0 165086 bytes_in 0 165086 station_ip 5.119.109.36 165086 port 768 165086 unique_id port 165086 remote_ip 10.8.0.42 165091 username barzegar 165091 mac 165091 bytes_out 0 165091 bytes_in 0 165091 station_ip 5.120.50.228 165091 port 392 165091 unique_id port 165091 remote_ip 10.8.1.174 165092 username tahmasebi 165092 mac 165092 bytes_out 0 165092 bytes_in 0 165092 station_ip 5.119.109.36 165092 port 391 165092 unique_id port 165092 remote_ip 10.8.1.90 165095 username hashtadani4 165095 mac 165095 bytes_out 0 165095 bytes_in 0 165095 station_ip 83.123.96.238 165095 port 768 165095 unique_id port 165095 remote_ip 10.8.0.182 165098 username rezaei 165098 mac 165098 bytes_out 0 165098 bytes_in 0 165098 station_ip 5.119.14.25 165098 port 757 165098 unique_id port 165098 remote_ip 10.8.0.230 165101 username hashtadani4 165101 mac 165101 bytes_out 0 165101 bytes_in 0 165101 station_ip 83.123.96.238 165101 port 757 165101 unique_id port 165101 remote_ip 10.8.0.182 165106 username mohammadmahdi 165106 kill_reason Another user logged on this global unique id 165106 mac 165106 bytes_out 0 165106 bytes_in 0 165106 station_ip 5.120.48.178 165106 port 767 165106 unique_id port 165108 username aminvpn 165108 kill_reason Another user logged on this global unique id 165108 mac 165108 bytes_out 0 165108 bytes_in 0 165108 station_ip 5.120.108.52 165108 port 765 165108 unique_id port 165109 username tahmasebi 165109 mac 165109 bytes_out 0 165109 bytes_in 0 165109 station_ip 5.119.109.36 165109 port 389 165109 unique_id port 165109 remote_ip 10.8.1.90 165114 username pourshad 165114 kill_reason Another user logged on this global unique id 165114 mac 165114 bytes_out 0 165114 bytes_in 0 165114 station_ip 5.120.82.40 165114 port 741 165114 unique_id port 165116 username tahmasebi 165116 mac 165116 bytes_out 0 165116 bytes_in 0 165116 station_ip 5.119.109.36 165116 port 390 165116 unique_id port 165116 remote_ip 10.8.1.90 165123 username hashtadani4 165123 mac 165123 bytes_out 0 165123 bytes_in 0 165123 station_ip 83.123.96.238 165123 port 757 165123 unique_id port 165123 remote_ip 10.8.0.182 165126 username tahmasebi 165126 mac 165126 bytes_out 0 165126 bytes_in 0 165126 station_ip 5.119.109.36 165126 port 389 165126 unique_id port 165126 remote_ip 10.8.1.90 165128 username mostafa_es78 165128 unique_id port 165128 terminate_cause User-Request 165128 bytes_out 243897 165128 bytes_in 2103909 165128 station_ip 83.122.19.86 165128 port 15728693 165128 nas_port_type Virtual 165128 remote_ip 5.5.5.211 165130 username mostafa_es78 165130 unique_id port 165130 terminate_cause User-Request 165130 bytes_out 241885 165130 bytes_in 2118416 165130 station_ip 83.122.19.86 165130 port 15728695 165130 nas_port_type Virtual 165130 remote_ip 5.5.5.208 165131 username sabaghnezhad 165131 mac 165131 bytes_out 29116 165131 bytes_in 28889 165131 station_ip 37.129.202.2 165131 port 757 165131 unique_id port 165131 remote_ip 10.8.0.186 165136 username tahmasebi 165136 mac 165136 bytes_out 0 165136 bytes_in 0 165136 station_ip 5.119.109.36 165136 port 389 165136 unique_id port 165136 remote_ip 10.8.1.90 165142 username mansur 165142 mac 165142 bytes_out 0 165142 bytes_in 0 165142 station_ip 5.119.117.158 165142 port 390 165142 unique_id port 165142 remote_ip 10.8.1.194 165146 username pourshad 165107 station_ip 5.120.191.200 165107 port 390 165107 unique_id port 165107 remote_ip 10.8.1.222 165110 username mohammadmahdi 165110 mac 165110 bytes_out 0 165110 bytes_in 0 165110 station_ip 5.120.48.178 165110 port 767 165110 unique_id port 165113 username tahmasebi 165113 mac 165113 bytes_out 0 165113 bytes_in 0 165113 station_ip 5.119.109.36 165113 port 389 165113 unique_id port 165113 remote_ip 10.8.1.90 165115 username farhad2 165115 mac 165115 bytes_out 333179 165115 bytes_in 848416 165115 station_ip 5.120.191.200 165115 port 389 165115 unique_id port 165115 remote_ip 10.8.1.222 165118 username hashtadani4 165118 mac 165118 bytes_out 0 165118 bytes_in 0 165118 station_ip 83.123.96.238 165118 port 757 165118 unique_id port 165118 remote_ip 10.8.0.182 165119 username hamidsalari 165119 kill_reason Relative expiration date has reached 165119 mac 165119 bytes_out 0 165119 bytes_in 0 165119 station_ip 5.120.31.64 165119 port 757 165119 unique_id port 165122 username tahmasebi 165122 mac 165122 bytes_out 0 165122 bytes_in 0 165122 station_ip 5.119.109.36 165122 port 390 165122 unique_id port 165122 remote_ip 10.8.1.90 165124 username aminvpn 165124 kill_reason Another user logged on this global unique id 165124 mac 165124 bytes_out 0 165124 bytes_in 0 165124 station_ip 5.120.108.52 165124 port 765 165124 unique_id port 165133 username kordestani 165133 mac 165133 bytes_out 0 165133 bytes_in 0 165133 station_ip 151.235.126.105 165133 port 756 165133 unique_id port 165133 remote_ip 10.8.0.74 165134 username barzegar 165134 mac 165134 bytes_out 0 165134 bytes_in 0 165134 station_ip 5.120.50.228 165134 port 390 165134 unique_id port 165134 remote_ip 10.8.1.174 165135 username pourshad 165135 kill_reason Another user logged on this global unique id 165135 mac 165135 bytes_out 0 165135 bytes_in 0 165135 station_ip 5.120.82.40 165135 port 741 165135 unique_id port 165137 username mostafa_es78 165137 unique_id port 165137 terminate_cause User-Request 165137 bytes_out 6647 165137 bytes_in 10410 165137 station_ip 37.129.21.142 165137 port 15728696 165137 nas_port_type Virtual 165137 remote_ip 5.5.5.207 165138 username tahmasebi 165138 mac 165138 bytes_out 0 165138 bytes_in 0 165138 station_ip 5.119.109.36 165138 port 389 165138 unique_id port 165138 remote_ip 10.8.1.90 165139 username aminvpn 165139 kill_reason Another user logged on this global unique id 165139 mac 165139 bytes_out 0 165139 bytes_in 0 165139 station_ip 5.120.108.52 165139 port 765 165139 unique_id port 165141 username pourshad 165141 kill_reason Another user logged on this global unique id 165141 mac 165141 bytes_out 0 165141 bytes_in 0 165141 station_ip 5.120.82.40 165141 port 741 165141 unique_id port 165144 username aminvpn 165144 mac 165144 bytes_out 0 165144 bytes_in 0 165144 station_ip 5.120.108.52 165144 port 765 165144 unique_id port 165147 username barzegar 165147 mac 165147 bytes_out 0 165147 bytes_in 0 165147 station_ip 5.120.50.228 165147 port 390 165147 unique_id port 165147 remote_ip 10.8.1.174 165155 username farhad2 165155 mac 165155 bytes_out 63759 165155 bytes_in 59855 165155 station_ip 5.120.191.200 165155 port 756 165155 unique_id port 165155 remote_ip 10.8.0.190 165156 username hashtadani4 165156 mac 165156 bytes_out 0 165156 bytes_in 0 165156 station_ip 83.123.96.238 165156 port 390 165156 unique_id port 165156 remote_ip 10.8.1.142 165160 username farhad2 165160 kill_reason Maximum check online fails reached 165160 mac 165160 bytes_out 0 165112 unique_id port 165112 remote_ip 10.8.0.182 165117 username barzegar 165117 mac 165117 bytes_out 0 165117 bytes_in 0 165117 station_ip 5.120.50.228 165117 port 389 165117 unique_id port 165117 remote_ip 10.8.1.174 165120 username hamidsalari 165120 kill_reason Relative expiration date has reached 165120 mac 165120 bytes_out 0 165120 bytes_in 0 165120 station_ip 5.120.31.64 165120 port 757 165120 unique_id port 165121 username hamidsalari 165121 kill_reason Relative expiration date has reached 165121 mac 165121 bytes_out 0 165121 bytes_in 0 165121 station_ip 5.120.31.64 165121 port 757 165121 unique_id port 165125 username pourshad 165125 kill_reason Another user logged on this global unique id 165125 mac 165125 bytes_out 0 165125 bytes_in 0 165125 station_ip 5.120.82.40 165125 port 741 165125 unique_id port 165127 username tahmasebi 165127 mac 165127 bytes_out 0 165127 bytes_in 0 165127 station_ip 5.119.109.36 165127 port 389 165127 unique_id port 165127 remote_ip 10.8.1.90 165129 username mostafa_es78 165129 unique_id port 165129 terminate_cause User-Request 165129 bytes_out 120 165129 bytes_in 132 165129 station_ip 37.129.21.142 165129 port 15728694 165129 nas_port_type Virtual 165129 remote_ip 5.5.5.209 165132 username hashtadani4 165132 mac 165132 bytes_out 0 165132 bytes_in 0 165132 station_ip 83.123.96.238 165132 port 757 165132 unique_id port 165132 remote_ip 10.8.0.182 165140 username mostafa_es78 165140 unique_id port 165140 terminate_cause User-Request 165140 bytes_out 29836 165140 bytes_in 53162 165140 station_ip 83.122.19.86 165140 port 15728697 165140 nas_port_type Virtual 165140 remote_ip 5.5.5.206 165143 username farhad2 165143 mac 165143 bytes_out 0 165143 bytes_in 0 165143 station_ip 5.120.191.200 165143 port 391 165143 unique_id port 165143 remote_ip 10.8.1.222 165145 username barzegar 165145 mac 165145 bytes_out 0 165145 bytes_in 0 165145 station_ip 5.120.50.228 165145 port 390 165145 unique_id port 165145 remote_ip 10.8.1.174 165149 username pourshad 165149 kill_reason Another user logged on this global unique id 165149 mac 165149 bytes_out 0 165149 bytes_in 0 165149 station_ip 5.120.82.40 165149 port 741 165149 unique_id port 165150 username farhad2 165150 mac 165150 bytes_out 2868167 165150 bytes_in 18989443 165150 station_ip 5.120.191.200 165150 port 756 165150 unique_id port 165150 remote_ip 10.8.0.190 165151 username hashtadani4 165151 mac 165151 bytes_out 0 165151 bytes_in 0 165151 station_ip 83.123.96.238 165151 port 390 165151 unique_id port 165151 remote_ip 10.8.1.142 165152 username farhad2 165152 mac 165152 bytes_out 44846 165152 bytes_in 64280 165152 station_ip 5.120.191.200 165152 port 756 165152 unique_id port 165152 remote_ip 10.8.0.190 165154 username barzegar 165154 mac 165154 bytes_out 0 165154 bytes_in 0 165154 station_ip 5.120.50.228 165154 port 390 165154 unique_id port 165154 remote_ip 10.8.1.174 165157 username hashtadani4 165157 mac 165157 bytes_out 0 165157 bytes_in 0 165157 station_ip 83.123.96.238 165157 port 390 165157 unique_id port 165157 remote_ip 10.8.1.142 165167 username hashtadani4 165167 mac 165167 bytes_out 0 165167 bytes_in 0 165167 station_ip 83.123.96.238 165167 port 757 165167 unique_id port 165167 remote_ip 10.8.0.182 165168 username hashtadani4 165168 mac 165168 bytes_out 0 165168 bytes_in 0 165168 station_ip 83.123.96.238 165168 port 757 165168 unique_id port 165168 remote_ip 10.8.0.182 165171 username barzegar 165171 mac 165171 bytes_out 0 165146 kill_reason Another user logged on this global unique id 165146 mac 165146 bytes_out 0 165146 bytes_in 0 165146 station_ip 5.120.82.40 165146 port 741 165146 unique_id port 165148 username godarzi 165148 mac 165148 bytes_out 2623272 165148 bytes_in 33603975 165148 station_ip 5.202.6.91 165148 port 761 165148 unique_id port 165148 remote_ip 10.8.0.174 165153 username farhad2 165153 mac 165153 bytes_out 112521 165153 bytes_in 215499 165153 station_ip 5.120.191.200 165153 port 756 165153 unique_id port 165153 remote_ip 10.8.0.190 165158 username hashtadani4 165158 mac 165158 bytes_out 0 165158 bytes_in 0 165158 station_ip 83.123.96.238 165158 port 757 165158 unique_id port 165158 remote_ip 10.8.0.182 165159 username farhad2 165159 mac 165159 bytes_out 191709 165159 bytes_in 372214 165159 station_ip 5.120.191.200 165159 port 391 165159 unique_id port 165159 remote_ip 10.8.1.222 165161 username farhad2 165161 mac 165161 bytes_out 0 165161 bytes_in 0 165161 station_ip 5.120.191.200 165161 port 390 165161 unique_id port 165161 remote_ip 10.8.1.222 165162 username pourshad 165162 kill_reason Another user logged on this global unique id 165162 mac 165162 bytes_out 0 165162 bytes_in 0 165162 station_ip 5.120.82.40 165162 port 741 165162 unique_id port 165169 username pourshad 165169 kill_reason Another user logged on this global unique id 165169 mac 165169 bytes_out 0 165169 bytes_in 0 165169 station_ip 5.120.82.40 165169 port 741 165169 unique_id port 165172 username hashtadani4 165172 mac 165172 bytes_out 0 165172 bytes_in 0 165172 station_ip 83.123.96.238 165172 port 757 165172 unique_id port 165172 remote_ip 10.8.0.182 165179 username farhad2 165179 mac 165179 bytes_out 116201 165179 bytes_in 661242 165179 station_ip 5.120.191.200 165179 port 757 165179 unique_id port 165179 remote_ip 10.8.0.190 165180 username farhad2 165180 mac 165180 bytes_out 0 165180 bytes_in 0 165180 station_ip 5.120.191.200 165180 port 389 165180 unique_id port 165180 remote_ip 10.8.1.222 165184 username barzegar 165184 mac 165184 bytes_out 0 165184 bytes_in 0 165184 station_ip 5.120.50.228 165184 port 757 165184 unique_id port 165184 remote_ip 10.8.0.234 165188 username tahmasebi 165188 mac 165188 bytes_out 14720 165188 bytes_in 60897 165188 station_ip 5.119.109.36 165188 port 759 165188 unique_id port 165188 remote_ip 10.8.0.42 165193 username hashtadani4 165193 mac 165193 bytes_out 0 165193 bytes_in 0 165193 station_ip 83.123.96.238 165193 port 757 165193 unique_id port 165193 remote_ip 10.8.0.182 165205 username hashtadani4 165205 kill_reason Maximum check online fails reached 165205 mac 165205 bytes_out 0 165205 bytes_in 0 165205 station_ip 83.123.96.238 165205 port 389 165205 unique_id port 165206 username barzegar 165206 mac 165206 bytes_out 0 165206 bytes_in 0 165206 station_ip 5.120.50.228 165206 port 390 165206 unique_id port 165206 remote_ip 10.8.1.174 165208 username pourshad 165208 kill_reason Another user logged on this global unique id 165208 mac 165208 bytes_out 0 165208 bytes_in 0 165208 station_ip 5.120.82.40 165208 port 741 165208 unique_id port 165210 username farhad2 165210 kill_reason Another user logged on this global unique id 165210 mac 165210 bytes_out 0 165210 bytes_in 0 165210 station_ip 5.120.147.85 165210 port 759 165210 unique_id port 165210 remote_ip 10.8.0.190 165211 username hashtadani4 165211 mac 165211 bytes_out 0 165211 bytes_in 0 165211 station_ip 83.123.96.238 165211 port 762 165211 unique_id port 165160 bytes_in 0 165160 station_ip 5.120.191.200 165160 port 756 165160 unique_id port 165163 username farhad2 165163 mac 165163 bytes_out 0 165163 bytes_in 0 165163 station_ip 5.120.191.200 165163 port 390 165163 unique_id port 165163 remote_ip 10.8.1.222 165164 username hashtadani4 165164 mac 165164 bytes_out 0 165164 bytes_in 0 165164 station_ip 83.123.96.238 165164 port 757 165164 unique_id port 165164 remote_ip 10.8.0.182 165165 username barzegar 165165 mac 165165 bytes_out 0 165165 bytes_in 0 165165 station_ip 5.120.50.228 165165 port 391 165165 unique_id port 165165 remote_ip 10.8.1.174 165166 username farhad2 165166 mac 165166 bytes_out 0 165166 bytes_in 0 165166 station_ip 5.120.191.200 165166 port 390 165166 unique_id port 165166 remote_ip 10.8.1.222 165170 username farhad2 165170 mac 165170 bytes_out 0 165170 bytes_in 0 165170 station_ip 5.120.191.200 165170 port 390 165170 unique_id port 165170 remote_ip 10.8.1.222 165175 username farhad2 165175 mac 165175 bytes_out 0 165175 bytes_in 0 165175 station_ip 5.120.191.200 165175 port 390 165175 unique_id port 165175 remote_ip 10.8.1.222 165176 username hashtadani4 165176 mac 165176 bytes_out 0 165176 bytes_in 0 165176 station_ip 83.123.96.238 165176 port 757 165176 unique_id port 165176 remote_ip 10.8.0.182 165178 username tahmasebi 165178 mac 165178 bytes_out 0 165178 bytes_in 0 165178 station_ip 5.119.109.36 165178 port 759 165178 unique_id port 165178 remote_ip 10.8.0.42 165185 username farhad2 165185 mac 165185 bytes_out 0 165185 bytes_in 0 165185 station_ip 5.120.191.200 165185 port 389 165185 unique_id port 165185 remote_ip 10.8.1.222 165186 username pourshad 165186 kill_reason Another user logged on this global unique id 165186 mac 165186 bytes_out 0 165186 bytes_in 0 165186 station_ip 5.120.82.40 165186 port 741 165186 unique_id port 165189 username mansour 165189 mac 165189 bytes_out 882702 165189 bytes_in 12293728 165189 station_ip 5.202.5.132 165189 port 757 165189 unique_id port 165189 remote_ip 10.8.0.30 165190 username tahmasebi 165190 mac 165190 bytes_out 0 165190 bytes_in 0 165190 station_ip 5.119.109.36 165190 port 757 165190 unique_id port 165190 remote_ip 10.8.0.42 165194 username pourshad 165194 kill_reason Another user logged on this global unique id 165194 mac 165194 bytes_out 0 165194 bytes_in 0 165194 station_ip 5.120.82.40 165194 port 741 165194 unique_id port 165196 username farhad2 165196 kill_reason Another user logged on this global unique id 165196 mac 165196 bytes_out 0 165196 bytes_in 0 165196 station_ip 5.120.147.85 165196 port 761 165196 unique_id port 165196 remote_ip 10.8.0.190 165198 username pourshad 165198 kill_reason Another user logged on this global unique id 165198 mac 165198 bytes_out 0 165198 bytes_in 0 165198 station_ip 5.120.82.40 165198 port 741 165198 unique_id port 165200 username farhad2 165200 mac 165200 bytes_out 0 165200 bytes_in 0 165200 station_ip 5.120.147.85 165200 port 761 165200 unique_id port 165207 username hashtadani4 165207 mac 165207 bytes_out 0 165207 bytes_in 0 165207 station_ip 83.123.96.238 165207 port 761 165207 unique_id port 165207 remote_ip 10.8.0.182 165222 username tahmasebi 165222 mac 165222 bytes_out 0 165222 bytes_in 0 165222 station_ip 5.119.109.36 165222 port 757 165222 unique_id port 165224 username farhad2 165224 kill_reason Another user logged on this global unique id 165224 mac 165224 bytes_out 0 165224 bytes_in 0 165171 bytes_in 0 165171 station_ip 5.120.50.228 165171 port 757 165171 unique_id port 165171 remote_ip 10.8.0.234 165173 username pourshad 165173 kill_reason Another user logged on this global unique id 165173 mac 165173 bytes_out 0 165173 bytes_in 0 165173 station_ip 5.120.82.40 165173 port 741 165173 unique_id port 165174 username farhad2 165174 mac 165174 bytes_out 0 165174 bytes_in 0 165174 station_ip 5.120.191.200 165174 port 390 165174 unique_id port 165174 remote_ip 10.8.1.222 165177 username tahmasebi 165177 mac 165177 bytes_out 0 165177 bytes_in 0 165177 station_ip 5.119.109.36 165177 port 389 165177 unique_id port 165177 remote_ip 10.8.1.90 165181 username farhad2 165181 mac 165181 bytes_out 0 165181 bytes_in 0 165181 station_ip 5.120.191.200 165181 port 389 165181 unique_id port 165181 remote_ip 10.8.1.222 165182 username hashtadani4 165182 mac 165182 bytes_out 0 165182 bytes_in 0 165182 station_ip 83.123.96.238 165182 port 757 165182 unique_id port 165182 remote_ip 10.8.0.182 165183 username farhad2 165183 mac 165183 bytes_out 0 165183 bytes_in 0 165183 station_ip 5.120.191.200 165183 port 389 165183 unique_id port 165183 remote_ip 10.8.1.222 165187 username hashtadani4 165187 mac 165187 bytes_out 0 165187 bytes_in 0 165187 station_ip 83.123.96.238 165187 port 762 165187 unique_id port 165187 remote_ip 10.8.0.182 165191 username barzegar 165191 mac 165191 bytes_out 0 165191 bytes_in 0 165191 station_ip 5.120.50.228 165191 port 757 165191 unique_id port 165191 remote_ip 10.8.0.234 165192 username hashtadani4 165192 mac 165192 bytes_out 0 165192 bytes_in 0 165192 station_ip 83.123.96.238 165192 port 389 165192 unique_id port 165192 remote_ip 10.8.1.142 165195 username hashtadani4 165195 mac 165195 bytes_out 0 165195 bytes_in 0 165195 station_ip 83.123.96.238 165195 port 757 165195 unique_id port 165195 remote_ip 10.8.0.182 165197 username hashtadani4 165197 mac 165197 bytes_out 0 165197 bytes_in 0 165197 station_ip 83.123.96.238 165197 port 759 165197 unique_id port 165197 remote_ip 10.8.0.182 165199 username barzegar 165199 mac 165199 bytes_out 0 165199 bytes_in 0 165199 station_ip 5.120.50.228 165199 port 389 165199 unique_id port 165199 remote_ip 10.8.1.174 165201 username farhad2 165201 mac 165201 bytes_out 0 165201 bytes_in 0 165201 station_ip 5.120.147.85 165201 port 759 165201 unique_id port 165201 remote_ip 10.8.0.190 165202 username hashtadani4 165202 mac 165202 bytes_out 0 165202 bytes_in 0 165202 station_ip 83.123.96.238 165202 port 389 165202 unique_id port 165202 remote_ip 10.8.1.142 165203 username hashtadani4 165203 mac 165203 bytes_out 0 165203 bytes_in 0 165203 station_ip 83.123.96.238 165203 port 761 165203 unique_id port 165203 remote_ip 10.8.0.182 165204 username pourshad 165204 kill_reason Another user logged on this global unique id 165204 mac 165204 bytes_out 0 165204 bytes_in 0 165204 station_ip 5.120.82.40 165204 port 741 165204 unique_id port 165209 username hashtadani4 165209 mac 165209 bytes_out 0 165209 bytes_in 0 165209 station_ip 83.123.96.238 165209 port 761 165209 unique_id port 165209 remote_ip 10.8.0.182 165213 username hashtadani4 165213 mac 165213 bytes_out 0 165213 bytes_in 0 165213 station_ip 83.123.96.238 165213 port 762 165213 unique_id port 165213 remote_ip 10.8.0.182 165214 username barzegar 165214 mac 165214 bytes_out 0 165214 bytes_in 0 165214 station_ip 5.120.50.228 165211 remote_ip 10.8.0.182 165212 username pourshad 165212 kill_reason Another user logged on this global unique id 165212 mac 165212 bytes_out 0 165212 bytes_in 0 165212 station_ip 5.120.82.40 165212 port 741 165212 unique_id port 165215 username hashtadani4 165215 mac 165215 bytes_out 0 165215 bytes_in 0 165215 station_ip 83.123.96.238 165215 port 761 165215 unique_id port 165215 remote_ip 10.8.0.182 165219 username tahmasebi 165219 kill_reason Another user logged on this global unique id 165219 mac 165219 bytes_out 0 165219 bytes_in 0 165219 station_ip 5.119.109.36 165219 port 757 165219 unique_id port 165219 remote_ip 10.8.0.42 165220 username barzegar 165220 mac 165220 bytes_out 8001 165220 bytes_in 10992 165220 station_ip 5.120.50.228 165220 port 390 165220 unique_id port 165220 remote_ip 10.8.1.174 165221 username hashtadani4 165221 mac 165221 bytes_out 0 165221 bytes_in 0 165221 station_ip 83.123.96.238 165221 port 761 165221 unique_id port 165221 remote_ip 10.8.0.182 165228 username farhad2 165228 kill_reason Another user logged on this global unique id 165228 mac 165228 bytes_out 0 165228 bytes_in 0 165228 station_ip 5.120.147.85 165228 port 759 165228 unique_id port 165229 username hashtadani4 165229 mac 165229 bytes_out 0 165229 bytes_in 0 165229 station_ip 83.123.96.238 165229 port 757 165229 unique_id port 165229 remote_ip 10.8.0.182 165234 username farhad2 165234 mac 165234 bytes_out 68297 165234 bytes_in 88353 165234 station_ip 5.120.147.85 165234 port 390 165234 unique_id port 165234 remote_ip 10.8.1.222 165237 username farhad2 165237 mac 165237 bytes_out 265352 165237 bytes_in 411104 165237 station_ip 5.120.147.85 165237 port 390 165237 unique_id port 165237 remote_ip 10.8.1.222 165238 username hashtadani4 165238 mac 165238 bytes_out 0 165238 bytes_in 0 165238 station_ip 83.123.96.238 165238 port 759 165238 unique_id port 165238 remote_ip 10.8.0.182 165240 username barzegar 165240 mac 165240 bytes_out 0 165240 bytes_in 0 165240 station_ip 5.120.50.228 165240 port 759 165240 unique_id port 165240 remote_ip 10.8.0.234 165241 username hashtadani4 165241 mac 165241 bytes_out 0 165241 bytes_in 0 165241 station_ip 83.123.96.238 165241 port 761 165241 unique_id port 165241 remote_ip 10.8.0.182 165243 username barzegar 165243 mac 165243 bytes_out 0 165243 bytes_in 0 165243 station_ip 5.120.50.228 165243 port 759 165243 unique_id port 165243 remote_ip 10.8.0.234 165249 username hashtadani4 165249 mac 165249 bytes_out 0 165249 bytes_in 0 165249 station_ip 83.123.96.238 165249 port 759 165249 unique_id port 165249 remote_ip 10.8.0.182 165252 username hashtadani4 165252 mac 165252 bytes_out 0 165252 bytes_in 0 165252 station_ip 83.123.96.238 165252 port 759 165252 unique_id port 165252 remote_ip 10.8.0.182 165253 username barzegar 165253 mac 165253 bytes_out 0 165253 bytes_in 0 165253 station_ip 5.120.50.228 165253 port 761 165253 unique_id port 165253 remote_ip 10.8.0.234 165257 username hashtadani4 165257 mac 165257 bytes_out 0 165257 bytes_in 0 165257 station_ip 83.123.96.238 165257 port 761 165257 unique_id port 165257 remote_ip 10.8.0.182 165259 username hashtadani4 165259 mac 165259 bytes_out 0 165259 bytes_in 0 165259 station_ip 83.123.96.238 165259 port 761 165259 unique_id port 165259 remote_ip 10.8.0.182 165261 username nilufarrajaei 165261 kill_reason Another user logged on this global unique id 165261 mac 165261 bytes_out 0 165261 bytes_in 0 165214 port 761 165214 unique_id port 165214 remote_ip 10.8.0.234 165216 username farhad2 165216 kill_reason Another user logged on this global unique id 165216 mac 165216 bytes_out 0 165216 bytes_in 0 165216 station_ip 5.120.147.85 165216 port 759 165216 unique_id port 165217 username pourshad 165217 kill_reason Another user logged on this global unique id 165217 mac 165217 bytes_out 0 165217 bytes_in 0 165217 station_ip 5.120.82.40 165217 port 741 165217 unique_id port 165218 username hashtadani4 165218 mac 165218 bytes_out 0 165218 bytes_in 0 165218 station_ip 83.123.96.238 165218 port 761 165218 unique_id port 165218 remote_ip 10.8.0.182 165223 username hashtadani4 165223 mac 165223 bytes_out 0 165223 bytes_in 0 165223 station_ip 83.123.96.238 165223 port 757 165223 unique_id port 165223 remote_ip 10.8.0.182 165225 username hashtadani4 165225 mac 165225 bytes_out 0 165225 bytes_in 0 165225 station_ip 83.123.96.238 165225 port 757 165225 unique_id port 165225 remote_ip 10.8.0.182 165226 username pourshad 165226 kill_reason Another user logged on this global unique id 165226 mac 165226 bytes_out 0 165226 bytes_in 0 165226 station_ip 5.120.82.40 165226 port 741 165226 unique_id port 165231 username farhad2 165231 mac 165231 bytes_out 0 165231 bytes_in 0 165231 station_ip 5.120.147.85 165231 port 759 165231 unique_id port 165232 username hashtadani4 165232 mac 165232 bytes_out 0 165232 bytes_in 0 165232 station_ip 83.123.96.238 165232 port 759 165232 unique_id port 165232 remote_ip 10.8.0.182 165235 username barzegar 165235 mac 165235 bytes_out 0 165235 bytes_in 0 165235 station_ip 5.120.50.228 165235 port 759 165235 unique_id port 165235 remote_ip 10.8.0.234 165242 username mohammadjavad 165242 mac 165242 bytes_out 0 165242 bytes_in 0 165242 station_ip 83.122.18.250 165242 port 759 165242 unique_id port 165242 remote_ip 10.8.0.142 165245 username hashtadani4 165245 mac 165245 bytes_out 0 165245 bytes_in 0 165245 station_ip 83.123.96.238 165245 port 759 165245 unique_id port 165245 remote_ip 10.8.0.182 165246 username hashtadani4 165246 mac 165246 bytes_out 0 165246 bytes_in 0 165246 station_ip 83.123.96.238 165246 port 761 165246 unique_id port 165246 remote_ip 10.8.0.182 165248 username hashtadani4 165248 mac 165248 bytes_out 0 165248 bytes_in 0 165248 station_ip 83.123.96.238 165248 port 759 165248 unique_id port 165248 remote_ip 10.8.0.182 165256 username barzegar 165256 mac 165256 bytes_out 0 165256 bytes_in 0 165256 station_ip 5.120.50.228 165256 port 761 165256 unique_id port 165256 remote_ip 10.8.0.234 165260 username barzegar 165260 mac 165260 bytes_out 0 165260 bytes_in 0 165260 station_ip 5.120.50.228 165260 port 390 165260 unique_id port 165260 remote_ip 10.8.1.174 165263 username hashtadani4 165263 mac 165263 bytes_out 0 165263 bytes_in 0 165263 station_ip 83.123.96.238 165263 port 761 165263 unique_id port 165263 remote_ip 10.8.0.182 165266 username barzegar 165266 mac 165266 bytes_out 0 165266 bytes_in 0 165266 station_ip 5.120.50.228 165266 port 761 165266 unique_id port 165266 remote_ip 10.8.0.234 165268 username hashtadani4 165268 mac 165268 bytes_out 0 165268 bytes_in 0 165268 station_ip 83.123.96.238 165268 port 761 165268 unique_id port 165268 remote_ip 10.8.0.182 165269 username barzegar 165269 mac 165269 bytes_out 0 165269 bytes_in 0 165269 station_ip 5.120.50.228 165269 port 390 165269 unique_id port 165224 station_ip 5.120.147.85 165224 port 759 165224 unique_id port 165227 username hashtadani4 165227 mac 165227 bytes_out 0 165227 bytes_in 0 165227 station_ip 83.123.96.238 165227 port 757 165227 unique_id port 165227 remote_ip 10.8.0.182 165230 username barzegar 165230 mac 165230 bytes_out 0 165230 bytes_in 0 165230 station_ip 5.120.50.228 165230 port 390 165230 unique_id port 165230 remote_ip 10.8.1.174 165233 username farhad2 165233 kill_reason Maximum check online fails reached 165233 mac 165233 bytes_out 0 165233 bytes_in 0 165233 station_ip 5.120.147.85 165233 port 757 165233 unique_id port 165236 username hashtadani4 165236 mac 165236 bytes_out 0 165236 bytes_in 0 165236 station_ip 83.123.96.238 165236 port 759 165236 unique_id port 165236 remote_ip 10.8.0.182 165239 username hashtadani4 165239 mac 165239 bytes_out 0 165239 bytes_in 0 165239 station_ip 83.123.96.238 165239 port 761 165239 unique_id port 165239 remote_ip 10.8.0.182 165244 username hashtadani4 165244 mac 165244 bytes_out 0 165244 bytes_in 0 165244 station_ip 83.123.96.238 165244 port 759 165244 unique_id port 165244 remote_ip 10.8.0.182 165247 username barzegar 165247 mac 165247 bytes_out 0 165247 bytes_in 0 165247 station_ip 5.120.50.228 165247 port 759 165247 unique_id port 165247 remote_ip 10.8.0.234 165250 username hashtadani4 165250 mac 165250 bytes_out 0 165250 bytes_in 0 165250 station_ip 83.123.96.238 165250 port 759 165250 unique_id port 165250 remote_ip 10.8.0.182 165251 username barzegar 165251 mac 165251 bytes_out 0 165251 bytes_in 0 165251 station_ip 5.120.50.228 165251 port 390 165251 unique_id port 165251 remote_ip 10.8.1.174 165254 username hashtadani4 165254 mac 165254 bytes_out 0 165254 bytes_in 0 165254 station_ip 83.123.96.238 165254 port 761 165254 unique_id port 165254 remote_ip 10.8.0.182 165255 username hashtadani4 165255 mac 165255 bytes_out 0 165255 bytes_in 0 165255 station_ip 83.123.96.238 165255 port 761 165255 unique_id port 165255 remote_ip 10.8.0.182 165258 username hashtadani4 165258 mac 165258 bytes_out 0 165258 bytes_in 0 165258 station_ip 83.123.96.238 165258 port 761 165258 unique_id port 165258 remote_ip 10.8.0.182 165261 station_ip 83.123.183.18 165261 port 731 165261 unique_id port 165261 remote_ip 10.8.0.206 165262 username hashtadani4 165262 mac 165262 bytes_out 0 165262 bytes_in 0 165262 station_ip 83.123.96.238 165262 port 761 165262 unique_id port 165262 remote_ip 10.8.0.182 165264 username barzegar 165264 mac 165264 bytes_out 0 165264 bytes_in 0 165264 station_ip 5.120.50.228 165264 port 761 165264 unique_id port 165264 remote_ip 10.8.0.234 165265 username hashtadani4 165265 mac 165265 bytes_out 0 165265 bytes_in 0 165265 station_ip 83.123.96.238 165265 port 761 165265 unique_id port 165265 remote_ip 10.8.0.182 165267 username hashtadani4 165267 mac 165267 bytes_out 0 165267 bytes_in 0 165267 station_ip 83.123.96.238 165267 port 761 165267 unique_id port 165267 remote_ip 10.8.0.182 165269 remote_ip 10.8.1.174 165270 username hashtadani4 165270 mac 165270 bytes_out 0 165270 bytes_in 0 165270 station_ip 83.123.96.238 165270 port 761 165270 unique_id port 165270 remote_ip 10.8.0.182 165271 username hashtadani4 165271 mac 165271 bytes_out 0 165271 bytes_in 0 165271 station_ip 83.123.96.238 165271 port 761 165271 unique_id port 165271 remote_ip 10.8.0.182 165272 username hashtadani4 165272 mac 165272 bytes_out 0 165272 bytes_in 0 165272 station_ip 83.123.96.238 165272 port 761 165272 unique_id port 165272 remote_ip 10.8.0.182 165275 username hashtadani4 165275 mac 165275 bytes_out 316369 165275 bytes_in 3066371 165275 station_ip 83.123.96.238 165275 port 761 165275 unique_id port 165275 remote_ip 10.8.0.182 165278 username hashtadani4 165278 mac 165278 bytes_out 0 165278 bytes_in 0 165278 station_ip 83.123.96.238 165278 port 765 165278 unique_id port 165278 remote_ip 10.8.0.182 165281 username saeed9658 165281 mac 165281 bytes_out 0 165281 bytes_in 0 165281 station_ip 5.119.177.229 165281 port 761 165281 unique_id port 165281 remote_ip 10.8.0.166 165282 username mehdizare 165282 mac 165282 bytes_out 1145745 165282 bytes_in 2422239 165282 station_ip 83.122.22.203 165282 port 385 165282 unique_id port 165282 remote_ip 10.8.1.42 165283 username barzegar 165283 mac 165283 bytes_out 0 165283 bytes_in 0 165283 station_ip 5.120.50.228 165283 port 385 165283 unique_id port 165283 remote_ip 10.8.1.174 165288 username sedighe 165288 mac 165288 bytes_out 165279 165288 bytes_in 1071288 165288 station_ip 37.129.186.121 165288 port 761 165288 unique_id port 165288 remote_ip 10.8.0.146 165290 username mohammadjavad 165290 mac 165290 bytes_out 0 165290 bytes_in 0 165290 station_ip 37.129.147.92 165290 port 761 165290 unique_id port 165290 remote_ip 10.8.0.142 165296 username nilufarrajaei 165296 mac 165296 bytes_out 0 165296 bytes_in 0 165296 station_ip 83.123.183.18 165296 port 731 165296 unique_id port 165300 username nilufarrajaei 165300 mac 165300 bytes_out 0 165300 bytes_in 0 165300 station_ip 83.123.183.18 165300 port 761 165300 unique_id port 165300 remote_ip 10.8.0.206 165301 username shadkam 165301 mac 165301 bytes_out 0 165301 bytes_in 0 165301 station_ip 37.129.1.130 165301 port 731 165301 unique_id port 165301 remote_ip 10.8.0.62 165307 username jafari 165307 kill_reason Another user logged on this global unique id 165307 mac 165307 bytes_out 0 165307 bytes_in 0 165307 station_ip 37.156.59.132 165307 port 764 165307 unique_id port 165307 remote_ip 10.8.0.242 165312 username ahmadi1 165312 mac 165312 bytes_out 27843 165312 bytes_in 122251 165312 station_ip 83.122.211.200 165312 port 764 165312 unique_id port 165312 remote_ip 10.8.0.250 165313 username mohammadjavad 165313 mac 165313 bytes_out 0 165313 bytes_in 0 165313 station_ip 83.122.207.73 165313 port 761 165313 unique_id port 165313 remote_ip 10.8.0.142 165317 username sekonji3 165317 mac 165317 bytes_out 0 165317 bytes_in 0 165317 station_ip 83.123.245.194 165317 port 764 165317 unique_id port 165317 remote_ip 10.8.0.6 165318 username mohammadjavad 165318 mac 165318 bytes_out 43536 165318 bytes_in 63565 165318 station_ip 37.129.4.41 165318 port 765 165318 unique_id port 165318 remote_ip 10.8.0.142 165322 username aminvpn 165322 mac 165322 bytes_out 468510 165322 bytes_in 653475 165322 station_ip 5.119.210.108 165322 port 762 165322 unique_id port 165322 remote_ip 10.8.0.14 165323 username aminvpn 165323 mac 165323 bytes_out 0 165323 bytes_in 0 165323 station_ip 83.122.188.126 165323 port 745 165323 unique_id port 165323 remote_ip 10.8.0.14 165324 username aminvpn 165324 mac 165324 bytes_out 0 165324 bytes_in 0 165324 station_ip 5.119.210.108 165324 port 762 165324 unique_id port 165324 remote_ip 10.8.0.14 165325 username aminvpn 165325 mac 165325 bytes_out 0 165273 username hashtadani4 165273 mac 165273 bytes_out 0 165273 bytes_in 0 165273 station_ip 83.123.96.238 165273 port 761 165273 unique_id port 165273 remote_ip 10.8.0.182 165277 username mirzaei 165277 mac 165277 bytes_out 3203921 165277 bytes_in 22418547 165277 station_ip 5.119.180.17 165277 port 387 165277 unique_id port 165277 remote_ip 10.8.1.30 165279 username barzegar 165279 mac 165279 bytes_out 0 165279 bytes_in 0 165279 station_ip 5.120.50.228 165279 port 387 165279 unique_id port 165279 remote_ip 10.8.1.174 165280 username barzegar 165280 mac 165280 bytes_out 0 165280 bytes_in 0 165280 station_ip 5.120.50.228 165280 port 765 165280 unique_id port 165280 remote_ip 10.8.0.234 165285 username barzegar 165285 mac 165285 bytes_out 0 165285 bytes_in 0 165285 station_ip 5.120.50.228 165285 port 761 165285 unique_id port 165285 remote_ip 10.8.0.234 165294 username barzegar 165294 mac 165294 bytes_out 0 165294 bytes_in 0 165294 station_ip 5.120.50.228 165294 port 385 165294 unique_id port 165294 remote_ip 10.8.1.174 165295 username sedighe 165295 mac 165295 bytes_out 0 165295 bytes_in 0 165295 station_ip 113.203.46.27 165295 port 761 165295 unique_id port 165295 remote_ip 10.8.0.146 165297 username sedighe 165297 mac 165297 bytes_out 0 165297 bytes_in 0 165297 station_ip 83.122.129.42 165297 port 765 165297 unique_id port 165297 remote_ip 10.8.0.146 165298 username barzegar 165298 mac 165298 bytes_out 0 165298 bytes_in 0 165298 station_ip 5.120.50.228 165298 port 765 165298 unique_id port 165298 remote_ip 10.8.0.234 165302 username sedighe 165302 mac 165302 bytes_out 0 165302 bytes_in 0 165302 station_ip 83.123.31.77 165302 port 765 165302 unique_id port 165302 remote_ip 10.8.0.146 165303 username sedighe 165303 mac 165303 bytes_out 0 165303 bytes_in 0 165303 station_ip 83.122.48.147 165303 port 731 165303 unique_id port 165303 remote_ip 10.8.0.146 165308 username barzegar 165308 mac 165308 bytes_out 0 165308 bytes_in 0 165308 station_ip 5.120.50.228 165308 port 387 165308 unique_id port 165308 remote_ip 10.8.1.174 165309 username jafari 165309 kill_reason Another user logged on this global unique id 165309 mac 165309 bytes_out 0 165309 bytes_in 0 165309 station_ip 37.156.59.132 165309 port 764 165309 unique_id port 165316 username mohammadjavad 165316 mac 165316 bytes_out 0 165316 bytes_in 0 165316 station_ip 37.129.4.41 165316 port 764 165316 unique_id port 165316 remote_ip 10.8.0.142 165319 username vanila 165319 mac 165319 bytes_out 0 165319 bytes_in 0 165319 station_ip 37.129.0.151 165319 port 761 165319 unique_id port 165319 remote_ip 10.8.0.178 165320 username milan 165320 mac 165320 bytes_out 0 165320 bytes_in 0 165320 station_ip 5.120.91.29 165320 port 745 165320 unique_id port 165321 username barzegar 165321 mac 165321 bytes_out 0 165321 bytes_in 0 165321 station_ip 5.120.50.228 165321 port 745 165321 unique_id port 165321 remote_ip 10.8.0.234 165330 username aminvpn 165330 mac 165330 bytes_out 0 165330 bytes_in 0 165330 station_ip 83.122.188.126 165330 port 768 165330 unique_id port 165330 remote_ip 10.8.0.14 165331 username aminvpn 165331 mac 165331 bytes_out 0 165331 bytes_in 0 165331 station_ip 5.119.210.108 165331 port 762 165331 unique_id port 165331 remote_ip 10.8.0.14 165335 username aminvpn 165335 mac 165335 bytes_out 0 165335 bytes_in 0 165335 station_ip 5.119.210.108 165274 username barzegar 165274 mac 165274 bytes_out 0 165274 bytes_in 0 165274 station_ip 5.120.50.228 165274 port 765 165274 unique_id port 165274 remote_ip 10.8.0.234 165276 username hashtadani4 165276 mac 165276 bytes_out 0 165276 bytes_in 0 165276 station_ip 83.123.96.238 165276 port 761 165276 unique_id port 165276 remote_ip 10.8.0.182 165284 username mehdizare 165284 mac 165284 bytes_out 24685 165284 bytes_in 38011 165284 station_ip 83.122.22.203 165284 port 761 165284 unique_id port 165284 remote_ip 10.8.0.90 165286 username barzegar 165286 mac 165286 bytes_out 0 165286 bytes_in 0 165286 station_ip 5.120.50.228 165286 port 385 165286 unique_id port 165286 remote_ip 10.8.1.174 165287 username barzegar 165287 mac 165287 bytes_out 0 165287 bytes_in 0 165287 station_ip 5.120.50.228 165287 port 385 165287 unique_id port 165287 remote_ip 10.8.1.174 165289 username sedighe 165289 mac 165289 bytes_out 0 165289 bytes_in 0 165289 station_ip 37.129.186.121 165289 port 765 165289 unique_id port 165289 remote_ip 10.8.0.146 165291 username sedighe 165291 mac 165291 bytes_out 10781 165291 bytes_in 9037 165291 station_ip 37.129.146.226 165291 port 767 165291 unique_id port 165291 remote_ip 10.8.0.146 165292 username barzegar 165292 mac 165292 bytes_out 0 165292 bytes_in 0 165292 station_ip 5.120.50.228 165292 port 761 165292 unique_id port 165292 remote_ip 10.8.0.234 165293 username sedighe 165293 mac 165293 bytes_out 12898 165293 bytes_in 42785 165293 station_ip 37.129.146.226 165293 port 765 165293 unique_id port 165293 remote_ip 10.8.0.146 165299 username sedighe 165299 mac 165299 bytes_out 0 165299 bytes_in 0 165299 station_ip 37.129.62.20 165299 port 731 165299 unique_id port 165299 remote_ip 10.8.0.146 165304 username barzegar 165304 mac 165304 bytes_out 0 165304 bytes_in 0 165304 station_ip 5.120.50.228 165304 port 731 165304 unique_id port 165304 remote_ip 10.8.0.234 165305 username barzegar 165305 mac 165305 bytes_out 0 165305 bytes_in 0 165305 station_ip 5.120.50.228 165305 port 387 165305 unique_id port 165305 remote_ip 10.8.1.174 165306 username sedighe 165306 mac 165306 bytes_out 501322 165306 bytes_in 6330239 165306 station_ip 83.123.80.82 165306 port 761 165306 unique_id port 165306 remote_ip 10.8.0.146 165310 username jafari 165310 mac 165310 bytes_out 0 165310 bytes_in 0 165310 station_ip 37.156.59.132 165310 port 764 165310 unique_id port 165311 username barzegar 165311 mac 165311 bytes_out 0 165311 bytes_in 0 165311 station_ip 5.120.50.228 165311 port 390 165311 unique_id port 165311 remote_ip 10.8.1.174 165314 username moradi 165314 mac 165314 bytes_out 1758113 165314 bytes_in 24067101 165314 station_ip 83.122.44.127 165314 port 387 165314 unique_id port 165314 remote_ip 10.8.1.202 165315 username barzegar 165315 mac 165315 bytes_out 0 165315 bytes_in 0 165315 station_ip 5.120.50.228 165315 port 765 165315 unique_id port 165315 remote_ip 10.8.0.234 165326 username aminvpn 165326 mac 165326 bytes_out 0 165326 bytes_in 0 165326 station_ip 5.119.210.108 165326 port 768 165326 unique_id port 165326 remote_ip 10.8.0.14 165328 username aminvpn 165328 mac 165328 bytes_out 0 165328 bytes_in 0 165328 station_ip 83.122.188.126 165328 port 769 165328 unique_id port 165328 remote_ip 10.8.0.14 165329 username aminvpn 165329 mac 165329 bytes_out 0 165329 bytes_in 0 165325 bytes_in 0 165325 station_ip 83.122.188.126 165325 port 745 165325 unique_id port 165325 remote_ip 10.8.0.14 165327 username barzegar 165327 mac 165327 bytes_out 0 165327 bytes_in 0 165327 station_ip 5.120.50.228 165327 port 762 165327 unique_id port 165327 remote_ip 10.8.0.234 165332 username mahdiyehalizadeh 165332 mac 165332 bytes_out 0 165332 bytes_in 0 165332 station_ip 5.120.62.249 165332 port 765 165332 unique_id port 165332 remote_ip 10.8.0.82 165333 username aminvpn 165333 mac 165333 bytes_out 0 165333 bytes_in 0 165333 station_ip 83.122.188.126 165333 port 768 165333 unique_id port 165333 remote_ip 10.8.0.14 165336 username mahdiyehalizadeh 165336 mac 165336 bytes_out 10279 165336 bytes_in 9942 165336 station_ip 5.120.62.249 165336 port 762 165336 unique_id port 165336 remote_ip 10.8.0.82 165338 username kamali2 165338 kill_reason Another user logged on this global unique id 165338 mac 165338 bytes_out 0 165338 bytes_in 0 165338 station_ip 5.120.42.113 165338 port 764 165338 unique_id port 165338 remote_ip 10.8.0.158 165339 username aminvpn 165339 mac 165339 bytes_out 0 165339 bytes_in 0 165339 station_ip 5.119.210.108 165339 port 762 165339 unique_id port 165339 remote_ip 10.8.0.14 165341 username aminvpn 165341 mac 165341 bytes_out 0 165341 bytes_in 0 165341 station_ip 83.122.188.126 165341 port 745 165341 unique_id port 165341 remote_ip 10.8.0.14 165347 username aminvpn 165347 mac 165347 bytes_out 0 165347 bytes_in 0 165347 station_ip 83.122.188.126 165347 port 745 165347 unique_id port 165347 remote_ip 10.8.0.14 165349 username vanila 165349 kill_reason Another user logged on this global unique id 165349 mac 165349 bytes_out 0 165349 bytes_in 0 165349 station_ip 37.129.0.151 165349 port 768 165349 unique_id port 165349 remote_ip 10.8.0.178 165350 username barzegar 165350 mac 165350 bytes_out 0 165350 bytes_in 0 165350 station_ip 5.120.50.228 165350 port 387 165350 unique_id port 165350 remote_ip 10.8.1.174 165351 username aminvpn 165351 mac 165351 bytes_out 6351 165351 bytes_in 12836 165351 station_ip 5.119.210.108 165351 port 762 165351 unique_id port 165351 remote_ip 10.8.0.14 165353 username barzegar 165353 mac 165353 bytes_out 0 165353 bytes_in 0 165353 station_ip 5.120.50.228 165353 port 765 165353 unique_id port 165353 remote_ip 10.8.0.234 165356 username jafari 165356 kill_reason Another user logged on this global unique id 165356 mac 165356 bytes_out 0 165356 bytes_in 0 165356 station_ip 37.156.59.132 165356 port 731 165356 unique_id port 165359 username shadkam 165359 mac 165359 bytes_out 0 165359 bytes_in 0 165359 station_ip 37.129.105.66 165359 port 745 165359 unique_id port 165359 remote_ip 10.8.0.62 165361 username aminvpn 165361 mac 165361 bytes_out 0 165361 bytes_in 0 165361 station_ip 5.119.210.108 165361 port 745 165361 unique_id port 165361 remote_ip 10.8.0.14 165363 username vanila 165363 mac 165363 bytes_out 0 165363 bytes_in 0 165363 station_ip 37.129.0.151 165363 port 768 165363 unique_id port 165372 username aminvpn 165372 mac 165372 bytes_out 0 165372 bytes_in 0 165372 station_ip 5.119.210.108 165372 port 745 165372 unique_id port 165372 remote_ip 10.8.0.14 165374 username barzegar 165374 mac 165374 bytes_out 0 165374 bytes_in 0 165374 station_ip 5.120.50.228 165374 port 762 165374 unique_id port 165374 remote_ip 10.8.0.234 165382 username aminvpn 165382 mac 165382 bytes_out 0 165382 bytes_in 0 165329 station_ip 5.119.210.108 165329 port 762 165329 unique_id port 165329 remote_ip 10.8.0.14 165334 username vanila 165334 mac 165334 bytes_out 503762 165334 bytes_in 2921703 165334 station_ip 37.129.0.151 165334 port 745 165334 unique_id port 165334 remote_ip 10.8.0.178 165337 username aminvpn 165337 mac 165337 bytes_out 0 165337 bytes_in 0 165337 station_ip 83.122.188.126 165337 port 745 165337 unique_id port 165337 remote_ip 10.8.0.14 165342 username jafari 165342 kill_reason Another user logged on this global unique id 165342 mac 165342 bytes_out 0 165342 bytes_in 0 165342 station_ip 37.156.59.132 165342 port 731 165342 unique_id port 165342 remote_ip 10.8.0.242 165343 username mohammadjavad 165343 mac 165343 bytes_out 0 165343 bytes_in 0 165343 station_ip 37.129.136.61 165343 port 767 165343 unique_id port 165343 remote_ip 10.8.0.142 165344 username aminvpn 165344 mac 165344 bytes_out 0 165344 bytes_in 0 165344 station_ip 5.119.210.108 165344 port 762 165344 unique_id port 165344 remote_ip 10.8.0.14 165345 username aminvpn 165345 mac 165345 bytes_out 0 165345 bytes_in 0 165345 station_ip 83.122.188.126 165345 port 745 165345 unique_id port 165345 remote_ip 10.8.0.14 165352 username aminvpn 165352 mac 165352 bytes_out 0 165352 bytes_in 0 165352 station_ip 83.122.188.126 165352 port 765 165352 unique_id port 165352 remote_ip 10.8.0.14 165354 username aminvpn 165354 mac 165354 bytes_out 0 165354 bytes_in 0 165354 station_ip 5.119.210.108 165354 port 762 165354 unique_id port 165354 remote_ip 10.8.0.14 165355 username aminvpn 165355 mac 165355 bytes_out 0 165355 bytes_in 0 165355 station_ip 83.122.188.126 165355 port 765 165355 unique_id port 165355 remote_ip 10.8.0.14 165358 username aminvpn 165358 mac 165358 bytes_out 0 165358 bytes_in 0 165358 station_ip 5.119.210.108 165358 port 762 165358 unique_id port 165358 remote_ip 10.8.0.14 165360 username aminvpn 165360 mac 165360 bytes_out 0 165360 bytes_in 0 165360 station_ip 83.122.188.126 165360 port 765 165360 unique_id port 165360 remote_ip 10.8.0.14 165362 username aminvpn 165362 mac 165362 bytes_out 0 165362 bytes_in 0 165362 station_ip 83.122.188.126 165362 port 762 165362 unique_id port 165362 remote_ip 10.8.0.14 165364 username jafari 165364 kill_reason Another user logged on this global unique id 165364 mac 165364 bytes_out 0 165364 bytes_in 0 165364 station_ip 37.156.59.132 165364 port 731 165364 unique_id port 165365 username aminvpn 165365 mac 165365 bytes_out 0 165365 bytes_in 0 165365 station_ip 5.119.210.108 165365 port 745 165365 unique_id port 165365 remote_ip 10.8.0.14 165367 username kamali2 165367 mac 165367 bytes_out 0 165367 bytes_in 0 165367 station_ip 5.120.42.113 165367 port 764 165367 unique_id port 165368 username aminvpn 165368 mac 165368 bytes_out 0 165368 bytes_in 0 165368 station_ip 5.119.210.108 165368 port 745 165368 unique_id port 165368 remote_ip 10.8.0.14 165369 username aminvpn 165369 mac 165369 bytes_out 0 165369 bytes_in 0 165369 station_ip 83.122.188.126 165369 port 762 165369 unique_id port 165369 remote_ip 10.8.0.14 165375 username aminvpn 165375 mac 165375 bytes_out 0 165375 bytes_in 0 165375 station_ip 5.119.210.108 165375 port 745 165375 unique_id port 165375 remote_ip 10.8.0.14 165376 username aminvpn 165376 mac 165376 bytes_out 0 165376 bytes_in 0 165376 station_ip 83.122.188.126 165376 port 762 165376 unique_id port 165335 port 765 165335 unique_id port 165335 remote_ip 10.8.0.14 165340 username nilufarrajaei 165340 mac 165340 bytes_out 2610490 165340 bytes_in 22797494 165340 station_ip 83.123.183.18 165340 port 385 165340 unique_id port 165340 remote_ip 10.8.1.166 165346 username aminvpn 165346 mac 165346 bytes_out 0 165346 bytes_in 0 165346 station_ip 5.119.210.108 165346 port 762 165346 unique_id port 165346 remote_ip 10.8.0.14 165348 username jafari 165348 kill_reason Another user logged on this global unique id 165348 mac 165348 bytes_out 0 165348 bytes_in 0 165348 station_ip 37.156.59.132 165348 port 731 165348 unique_id port 165357 username vanila 165357 kill_reason Another user logged on this global unique id 165357 mac 165357 bytes_out 0 165357 bytes_in 0 165357 station_ip 37.129.0.151 165357 port 768 165357 unique_id port 165366 username aminvpn 165366 mac 165366 bytes_out 0 165366 bytes_in 0 165366 station_ip 83.122.188.126 165366 port 762 165366 unique_id port 165366 remote_ip 10.8.0.14 165370 username aminvpn 165370 mac 165370 bytes_out 0 165370 bytes_in 0 165370 station_ip 5.119.210.108 165370 port 745 165370 unique_id port 165370 remote_ip 10.8.0.14 165371 username aminvpn 165371 mac 165371 bytes_out 0 165371 bytes_in 0 165371 station_ip 83.122.188.126 165371 port 762 165371 unique_id port 165371 remote_ip 10.8.0.14 165373 username aminvpn 165373 mac 165373 bytes_out 0 165373 bytes_in 0 165373 station_ip 83.122.188.126 165373 port 762 165373 unique_id port 165373 remote_ip 10.8.0.14 165377 username aminvpn 165377 mac 165377 bytes_out 0 165377 bytes_in 0 165377 station_ip 5.119.210.108 165377 port 745 165377 unique_id port 165377 remote_ip 10.8.0.14 165378 username aminvpn 165378 mac 165378 bytes_out 0 165378 bytes_in 0 165378 station_ip 83.122.188.126 165378 port 762 165378 unique_id port 165378 remote_ip 10.8.0.14 165380 username aminvpn 165380 mac 165380 bytes_out 0 165380 bytes_in 0 165380 station_ip 83.122.188.126 165380 port 764 165380 unique_id port 165380 remote_ip 10.8.0.14 165381 username aminvpn 165381 mac 165381 bytes_out 0 165381 bytes_in 0 165381 station_ip 5.119.210.108 165381 port 745 165381 unique_id port 165381 remote_ip 10.8.0.14 165385 username farhad2 165385 mac 165385 bytes_out 0 165385 bytes_in 0 165385 station_ip 5.120.147.85 165385 port 387 165385 unique_id port 165385 remote_ip 10.8.1.222 165386 username aminvpn 165386 mac 165386 bytes_out 0 165386 bytes_in 0 165386 station_ip 5.119.210.108 165386 port 765 165386 unique_id port 165386 remote_ip 10.8.0.14 165387 username aminvpn 165387 mac 165387 bytes_out 0 165387 bytes_in 0 165387 station_ip 83.122.188.126 165387 port 764 165387 unique_id port 165387 remote_ip 10.8.0.14 165391 username farhad2 165391 mac 165391 bytes_out 181055 165391 bytes_in 1073586 165391 station_ip 5.120.147.85 165391 port 387 165391 unique_id port 165391 remote_ip 10.8.1.222 165393 username aminvpn 165393 mac 165393 bytes_out 0 165393 bytes_in 0 165393 station_ip 5.119.210.108 165393 port 765 165393 unique_id port 165393 remote_ip 10.8.0.14 165395 username aminvpn 165395 mac 165395 bytes_out 0 165395 bytes_in 0 165395 station_ip 83.122.188.126 165395 port 764 165395 unique_id port 165395 remote_ip 10.8.0.14 165396 username aminvpn 165396 mac 165396 bytes_out 0 165396 bytes_in 0 165396 station_ip 5.119.210.108 165396 port 745 165396 unique_id port 165396 remote_ip 10.8.0.14 165376 remote_ip 10.8.0.14 165379 username aminvpn 165379 mac 165379 bytes_out 0 165379 bytes_in 0 165379 station_ip 5.119.210.108 165379 port 745 165379 unique_id port 165379 remote_ip 10.8.0.14 165390 username aminvpn 165390 mac 165390 bytes_out 0 165390 bytes_in 0 165390 station_ip 5.119.210.108 165390 port 765 165390 unique_id port 165390 remote_ip 10.8.0.14 165394 username sekonji3 165394 mac 165394 bytes_out 427859 165394 bytes_in 8339829 165394 station_ip 83.123.245.194 165394 port 745 165394 unique_id port 165394 remote_ip 10.8.0.6 165398 username aminvpn 165398 mac 165398 bytes_out 0 165398 bytes_in 0 165398 station_ip 83.122.188.126 165398 port 764 165398 unique_id port 165398 remote_ip 10.8.0.14 165399 username aminvpn 165399 mac 165399 bytes_out 0 165399 bytes_in 0 165399 station_ip 5.119.210.108 165399 port 745 165399 unique_id port 165399 remote_ip 10.8.0.14 165406 username aminvpn 165406 mac 165406 bytes_out 0 165406 bytes_in 0 165406 station_ip 5.119.210.108 165406 port 745 165406 unique_id port 165406 remote_ip 10.8.0.14 165407 username aminvpn 165407 mac 165407 bytes_out 0 165407 bytes_in 0 165407 station_ip 83.122.188.126 165407 port 764 165407 unique_id port 165407 remote_ip 10.8.0.14 165409 username aminvpn 165409 mac 165409 bytes_out 0 165409 bytes_in 0 165409 station_ip 5.119.210.108 165409 port 745 165409 unique_id port 165409 remote_ip 10.8.0.14 165414 username aminvpn 165414 mac 165414 bytes_out 0 165414 bytes_in 0 165414 station_ip 83.122.188.126 165414 port 765 165414 unique_id port 165414 remote_ip 10.8.0.14 165415 username jafari 165415 mac 165415 bytes_out 0 165415 bytes_in 0 165415 station_ip 37.156.59.132 165415 port 731 165415 unique_id port 165423 username aminvpn 165423 mac 165423 bytes_out 0 165423 bytes_in 0 165423 station_ip 5.119.210.108 165423 port 767 165423 unique_id port 165423 remote_ip 10.8.0.14 165424 username aminvpn 165424 mac 165424 bytes_out 0 165424 bytes_in 0 165424 station_ip 83.122.188.126 165424 port 731 165424 unique_id port 165424 remote_ip 10.8.0.14 165426 username aminvpn 165426 mac 165426 bytes_out 0 165426 bytes_in 0 165426 station_ip 5.119.210.108 165426 port 767 165426 unique_id port 165426 remote_ip 10.8.0.14 165429 username mohammadjavad 165429 mac 165429 bytes_out 0 165429 bytes_in 0 165429 station_ip 83.122.251.0 165429 port 765 165429 unique_id port 165429 remote_ip 10.8.0.142 165434 username aminvpn 165434 mac 165434 bytes_out 0 165434 bytes_in 0 165434 station_ip 83.122.188.126 165434 port 761 165434 unique_id port 165434 remote_ip 10.8.0.14 165440 username aminvpn 165440 mac 165440 bytes_out 0 165440 bytes_in 0 165440 station_ip 83.122.188.126 165440 port 731 165440 unique_id port 165440 remote_ip 10.8.0.14 165442 username aminvpn 165442 mac 165442 bytes_out 0 165442 bytes_in 0 165442 station_ip 5.119.210.108 165442 port 761 165442 unique_id port 165442 remote_ip 10.8.0.14 165443 username aminvpn 165443 mac 165443 bytes_out 0 165443 bytes_in 0 165443 station_ip 83.122.188.126 165443 port 731 165443 unique_id port 165443 remote_ip 10.8.0.14 165445 username aminvpn 165445 mac 165445 bytes_out 0 165445 bytes_in 0 165445 station_ip 83.122.188.126 165445 port 767 165445 unique_id port 165445 remote_ip 10.8.0.14 165451 username barzegar 165451 mac 165451 bytes_out 0 165451 bytes_in 0 165382 station_ip 83.122.188.126 165382 port 764 165382 unique_id port 165382 remote_ip 10.8.0.14 165383 username aminvpn 165383 mac 165383 bytes_out 0 165383 bytes_in 0 165383 station_ip 5.119.210.108 165383 port 765 165383 unique_id port 165383 remote_ip 10.8.0.14 165384 username aminvpn 165384 mac 165384 bytes_out 0 165384 bytes_in 0 165384 station_ip 83.122.188.126 165384 port 764 165384 unique_id port 165384 remote_ip 10.8.0.14 165388 username aminvpn 165388 mac 165388 bytes_out 0 165388 bytes_in 0 165388 station_ip 5.119.210.108 165388 port 765 165388 unique_id port 165388 remote_ip 10.8.0.14 165389 username aminvpn 165389 mac 165389 bytes_out 0 165389 bytes_in 0 165389 station_ip 83.122.188.126 165389 port 764 165389 unique_id port 165389 remote_ip 10.8.0.14 165392 username aminvpn 165392 mac 165392 bytes_out 0 165392 bytes_in 0 165392 station_ip 83.122.188.126 165392 port 764 165392 unique_id port 165392 remote_ip 10.8.0.14 165397 username barzegar 165397 mac 165397 bytes_out 0 165397 bytes_in 0 165397 station_ip 5.120.50.228 165397 port 387 165397 unique_id port 165397 remote_ip 10.8.1.174 165403 username aminvpn 165403 mac 165403 bytes_out 0 165403 bytes_in 0 165403 station_ip 5.119.210.108 165403 port 745 165403 unique_id port 165403 remote_ip 10.8.0.14 165405 username aminvpn 165405 mac 165405 bytes_out 0 165405 bytes_in 0 165405 station_ip 83.122.188.126 165405 port 764 165405 unique_id port 165405 remote_ip 10.8.0.14 165408 username nilufarrajaei 165408 mac 165408 bytes_out 0 165408 bytes_in 0 165408 station_ip 83.123.183.18 165408 port 385 165408 unique_id port 165408 remote_ip 10.8.1.166 165410 username aminvpn 165410 mac 165410 bytes_out 0 165410 bytes_in 0 165410 station_ip 83.122.188.126 165410 port 764 165410 unique_id port 165410 remote_ip 10.8.0.14 165412 username aminvpn 165412 mac 165412 bytes_out 0 165412 bytes_in 0 165412 station_ip 83.122.188.126 165412 port 765 165412 unique_id port 165412 remote_ip 10.8.0.14 165413 username aminvpn 165413 mac 165413 bytes_out 0 165413 bytes_in 0 165413 station_ip 5.119.210.108 165413 port 745 165413 unique_id port 165413 remote_ip 10.8.0.14 165417 username aminvpn 165417 mac 165417 bytes_out 0 165417 bytes_in 0 165417 station_ip 83.122.188.126 165417 port 731 165417 unique_id port 165417 remote_ip 10.8.0.14 165418 username aminvpn 165418 mac 165418 bytes_out 0 165418 bytes_in 0 165418 station_ip 5.119.210.108 165418 port 745 165418 unique_id port 165418 remote_ip 10.8.0.14 165421 username aminvpn 165421 mac 165421 bytes_out 0 165421 bytes_in 0 165421 station_ip 5.119.210.108 165421 port 767 165421 unique_id port 165421 remote_ip 10.8.0.14 165422 username aminvpn 165422 mac 165422 bytes_out 0 165422 bytes_in 0 165422 station_ip 83.122.188.126 165422 port 731 165422 unique_id port 165422 remote_ip 10.8.0.14 165425 username khalili 165425 mac 165425 bytes_out 0 165425 bytes_in 0 165425 station_ip 5.119.37.112 165425 port 761 165425 unique_id port 165425 remote_ip 10.8.0.86 165431 username aminvpn 165431 mac 165431 bytes_out 0 165431 bytes_in 0 165431 station_ip 83.122.188.126 165431 port 761 165431 unique_id port 165431 remote_ip 10.8.0.14 165432 username aminvpn 165432 mac 165432 bytes_out 0 165432 bytes_in 0 165432 station_ip 5.119.210.108 165432 port 731 165432 unique_id port 165432 remote_ip 10.8.0.14 165400 username aminvpn 165400 mac 165400 bytes_out 0 165400 bytes_in 0 165400 station_ip 83.122.188.126 165400 port 764 165400 unique_id port 165400 remote_ip 10.8.0.14 165401 username aminvpn 165401 mac 165401 bytes_out 0 165401 bytes_in 0 165401 station_ip 5.119.210.108 165401 port 745 165401 unique_id port 165401 remote_ip 10.8.0.14 165402 username aminvpn 165402 mac 165402 bytes_out 0 165402 bytes_in 0 165402 station_ip 83.122.188.126 165402 port 764 165402 unique_id port 165402 remote_ip 10.8.0.14 165404 username jafari 165404 kill_reason Another user logged on this global unique id 165404 mac 165404 bytes_out 0 165404 bytes_in 0 165404 station_ip 37.156.59.132 165404 port 731 165404 unique_id port 165411 username aminvpn 165411 mac 165411 bytes_out 0 165411 bytes_in 0 165411 station_ip 5.119.210.108 165411 port 745 165411 unique_id port 165411 remote_ip 10.8.0.14 165416 username aminvpn 165416 mac 165416 bytes_out 0 165416 bytes_in 0 165416 station_ip 5.119.210.108 165416 port 745 165416 unique_id port 165416 remote_ip 10.8.0.14 165419 username aminvpn 165419 mac 165419 bytes_out 0 165419 bytes_in 0 165419 station_ip 83.122.188.126 165419 port 731 165419 unique_id port 165419 remote_ip 10.8.0.14 165420 username barzegar 165420 mac 165420 bytes_out 0 165420 bytes_in 0 165420 station_ip 5.120.50.228 165420 port 387 165420 unique_id port 165420 remote_ip 10.8.1.174 165427 username aminvpn 165427 mac 165427 bytes_out 0 165427 bytes_in 0 165427 station_ip 83.122.188.126 165427 port 761 165427 unique_id port 165427 remote_ip 10.8.0.14 165428 username aminvpn 165428 mac 165428 bytes_out 0 165428 bytes_in 0 165428 station_ip 5.119.210.108 165428 port 767 165428 unique_id port 165428 remote_ip 10.8.0.14 165430 username khalili 165430 mac 165430 bytes_out 4835 165430 bytes_in 10238 165430 station_ip 5.119.37.112 165430 port 731 165430 unique_id port 165430 remote_ip 10.8.0.86 165433 username rezaei 165433 kill_reason Another user logged on this global unique id 165433 mac 165433 bytes_out 0 165433 bytes_in 0 165433 station_ip 5.119.14.25 165433 port 764 165433 unique_id port 165433 remote_ip 10.8.0.230 165435 username barzegar 165435 mac 165435 bytes_out 0 165435 bytes_in 0 165435 station_ip 5.120.50.228 165435 port 731 165435 unique_id port 165435 remote_ip 10.8.0.234 165439 username barzegar 165439 mac 165439 bytes_out 0 165439 bytes_in 0 165439 station_ip 5.120.50.228 165439 port 387 165439 unique_id port 165439 remote_ip 10.8.1.174 165441 username pourshad 165441 mac 165441 bytes_out 0 165441 bytes_in 0 165441 station_ip 5.120.82.40 165441 port 741 165441 unique_id port 165444 username aminvpn 165444 mac 165444 bytes_out 2238 165444 bytes_in 4411 165444 station_ip 5.119.210.108 165444 port 741 165444 unique_id port 165444 remote_ip 10.8.0.14 165447 username godarzi 165488 bytes_out 0 165447 kill_reason Another user logged on this global unique id 165447 mac 165447 bytes_out 0 165447 bytes_in 0 165447 station_ip 5.202.6.91 165447 port 745 165447 unique_id port 165447 remote_ip 10.8.0.174 165448 username sedighe 165448 mac 165448 bytes_out 501863 165448 bytes_in 5844558 165448 station_ip 37.129.49.69 165448 port 765 165448 unique_id port 165448 remote_ip 10.8.0.146 165450 username aminvpn 165450 mac 165450 bytes_out 0 165450 bytes_in 0 165450 station_ip 83.122.188.126 165450 port 765 165450 unique_id port 165450 remote_ip 10.8.0.14 165453 username aminvpn 165436 username aminvpn 165436 mac 165436 bytes_out 0 165436 bytes_in 0 165436 station_ip 5.119.210.108 165436 port 767 165436 unique_id port 165436 remote_ip 10.8.0.14 165437 username aminvpn 165437 mac 165437 bytes_out 0 165437 bytes_in 0 165437 station_ip 83.122.188.126 165437 port 731 165437 unique_id port 165437 remote_ip 10.8.0.14 165438 username aminvpn 165438 mac 165438 bytes_out 0 165438 bytes_in 0 165438 station_ip 5.119.210.108 165438 port 761 165438 unique_id port 165438 remote_ip 10.8.0.14 165446 username pourshad 165446 mac 165446 bytes_out 0 165446 bytes_in 0 165446 station_ip 5.120.82.40 165446 port 387 165446 unique_id port 165446 remote_ip 10.8.1.154 165449 username aminvpn 165449 mac 165449 bytes_out 1853 165449 bytes_in 3890 165449 station_ip 5.119.210.108 165449 port 741 165449 unique_id port 165449 remote_ip 10.8.0.14 165455 username aminvpn 165455 mac 165455 bytes_out 0 165455 bytes_in 0 165455 station_ip 83.122.188.126 165455 port 765 165455 unique_id port 165455 remote_ip 10.8.0.14 165456 username aminvpn 165456 mac 165456 bytes_out 0 165456 bytes_in 0 165456 station_ip 5.119.210.108 165456 port 768 165456 unique_id port 165456 remote_ip 10.8.0.14 165459 username aminvpn 165459 mac 165459 bytes_out 0 165459 bytes_in 0 165459 station_ip 5.119.210.108 165459 port 745 165459 unique_id port 165459 remote_ip 10.8.0.14 165464 username aminvpn 165464 mac 165464 bytes_out 0 165464 bytes_in 0 165464 station_ip 83.122.188.126 165464 port 731 165464 unique_id port 165464 remote_ip 10.8.0.14 165473 username nilufarrajaei 165473 mac 165473 bytes_out 2583447 165473 bytes_in 30622127 165473 station_ip 83.123.183.18 165473 port 385 165473 unique_id port 165473 remote_ip 10.8.1.166 165474 username aminvpn 165474 mac 165474 bytes_out 0 165474 bytes_in 0 165474 station_ip 83.122.188.126 165474 port 731 165474 unique_id port 165474 remote_ip 10.8.0.14 165475 username aminvpn 165475 mac 165475 bytes_out 0 165475 bytes_in 0 165475 station_ip 5.119.210.108 165475 port 765 165475 unique_id port 165475 remote_ip 10.8.0.14 165477 username malekpoir 165477 mac 165477 bytes_out 0 165477 bytes_in 0 165477 station_ip 5.120.22.52 165477 port 731 165477 unique_id port 165477 remote_ip 10.8.0.58 165480 username aminvpn 165480 mac 165480 bytes_out 0 165480 bytes_in 0 165480 station_ip 5.119.210.108 165480 port 769 165480 unique_id port 165480 remote_ip 10.8.0.14 165482 username aminvpn 165482 mac 165482 bytes_out 0 165482 bytes_in 0 165482 station_ip 83.122.188.126 165482 port 731 165482 unique_id port 165482 remote_ip 10.8.0.14 165486 username hashtadani4 165486 mac 165486 bytes_out 0 165486 bytes_in 0 165486 station_ip 83.123.116.78 165486 port 745 165486 unique_id port 165486 remote_ip 10.8.0.182 165488 username shadkam 165488 mac 165488 bytes_in 0 165488 station_ip 37.129.49.21 165488 port 765 165488 unique_id port 165488 remote_ip 10.8.0.62 165491 username mansur 165491 mac 165491 bytes_out 64497 165491 bytes_in 346760 165491 station_ip 5.120.112.83 165491 port 731 165491 unique_id port 165491 remote_ip 10.8.0.226 165497 username aminvpn 165497 mac 165497 bytes_out 0 165497 bytes_in 0 165497 station_ip 83.122.188.126 165497 port 745 165497 unique_id port 165497 remote_ip 10.8.0.14 165498 username aminvpn 165498 mac 165498 bytes_out 0 165498 bytes_in 0 165451 station_ip 5.120.50.228 165451 port 391 165451 unique_id port 165451 remote_ip 10.8.1.174 165452 username aminvpn 165452 mac 165452 bytes_out 0 165452 bytes_in 0 165452 station_ip 5.119.210.108 165452 port 741 165452 unique_id port 165452 remote_ip 10.8.0.14 165462 username mohammadjavad 165462 mac 165462 bytes_out 39427 165462 bytes_in 69274 165462 station_ip 83.123.247.89 165462 port 731 165462 unique_id port 165462 remote_ip 10.8.0.142 165465 username aminvpn 165465 mac 165465 bytes_out 0 165465 bytes_in 0 165465 station_ip 5.119.210.108 165465 port 765 165465 unique_id port 165465 remote_ip 10.8.0.14 165466 username aminvpn 165466 mac 165466 bytes_out 0 165466 bytes_in 0 165466 station_ip 83.122.188.126 165466 port 731 165466 unique_id port 165466 remote_ip 10.8.0.14 165468 username aminvpn 165468 mac 165468 bytes_out 0 165468 bytes_in 0 165468 station_ip 83.122.188.126 165468 port 731 165468 unique_id port 165468 remote_ip 10.8.0.14 165469 username aminvpn 165469 mac 165469 bytes_out 0 165469 bytes_in 0 165469 station_ip 5.119.210.108 165469 port 765 165469 unique_id port 165469 remote_ip 10.8.0.14 165471 username sedighe 165471 mac 165471 bytes_out 135439 165471 bytes_in 183990 165471 station_ip 37.129.49.69 165471 port 767 165471 unique_id port 165471 remote_ip 10.8.0.146 165472 username aminvpn 165472 mac 165472 bytes_out 0 165472 bytes_in 0 165472 station_ip 5.119.210.108 165472 port 765 165472 unique_id port 165472 remote_ip 10.8.0.14 165476 username aminvpn 165476 mac 165476 bytes_out 0 165476 bytes_in 0 165476 station_ip 83.122.188.126 165476 port 731 165476 unique_id port 165476 remote_ip 10.8.0.14 165478 username aminvpn 165478 mac 165478 bytes_out 0 165478 bytes_in 0 165478 station_ip 5.119.210.108 165478 port 765 165478 unique_id port 165478 remote_ip 10.8.0.14 165479 username aminvpn 165479 mac 165479 bytes_out 0 165479 bytes_in 0 165479 station_ip 83.122.188.126 165479 port 731 165479 unique_id port 165479 remote_ip 10.8.0.14 165483 username mansur 165483 mac 165483 bytes_out 0 165483 bytes_in 0 165483 station_ip 5.120.112.83 165483 port 387 165483 unique_id port 165483 remote_ip 10.8.1.194 165484 username hashtadani4 165484 mac 165484 bytes_out 0 165484 bytes_in 0 165484 station_ip 83.123.116.78 165484 port 390 165484 unique_id port 165484 remote_ip 10.8.1.142 165487 username aminvpn 165487 mac 165487 bytes_out 0 165487 bytes_in 0 165487 station_ip 83.122.188.126 165487 port 769 165487 unique_id port 165487 remote_ip 10.8.0.14 165490 username shadkam 165490 mac 165490 bytes_out 0 165490 bytes_in 0 165490 station_ip 37.129.49.21 165490 port 765 165490 unique_id port 165490 remote_ip 10.8.0.62 165492 username aminvpn 165492 mac 165492 bytes_out 0 165492 bytes_in 0 165492 station_ip 83.122.188.126 165492 port 769 165492 unique_id port 165492 remote_ip 10.8.0.14 165493 username aminvpn 165493 mac 165493 bytes_out 0 165493 bytes_in 0 165493 station_ip 5.119.210.108 165493 port 731 165493 unique_id port 165493 remote_ip 10.8.0.14 165495 username hashtadani4 165495 mac 165495 bytes_out 0 165495 bytes_in 0 165495 station_ip 83.123.116.78 165495 port 745 165495 unique_id port 165495 remote_ip 10.8.0.182 165503 username barzegar 165503 mac 165503 bytes_out 0 165503 bytes_in 0 165503 station_ip 5.120.50.228 165503 port 391 165503 unique_id port 165503 remote_ip 10.8.1.174 165453 mac 165453 bytes_out 0 165453 bytes_in 0 165453 station_ip 83.122.188.126 165453 port 765 165453 unique_id port 165453 remote_ip 10.8.0.14 165454 username aminvpn 165454 mac 165454 bytes_out 0 165454 bytes_in 0 165454 station_ip 5.119.210.108 165454 port 741 165454 unique_id port 165454 remote_ip 10.8.0.14 165457 username godarzi 165457 mac 165457 bytes_out 0 165457 bytes_in 0 165457 station_ip 5.202.6.91 165457 port 745 165457 unique_id port 165458 username aminvpn 165458 mac 165458 bytes_out 0 165458 bytes_in 0 165458 station_ip 83.122.188.126 165458 port 765 165458 unique_id port 165458 remote_ip 10.8.0.14 165460 username rezaei 165460 mac 165460 bytes_out 0 165460 bytes_in 0 165460 station_ip 5.119.14.25 165460 port 764 165460 unique_id port 165461 username aminvpn 165461 mac 165461 bytes_out 0 165461 bytes_in 0 165461 station_ip 83.122.188.126 165461 port 765 165461 unique_id port 165461 remote_ip 10.8.0.14 165463 username aminvpn 165463 mac 165463 bytes_out 0 165463 bytes_in 0 165463 station_ip 5.119.210.108 165463 port 745 165463 unique_id port 165463 remote_ip 10.8.0.14 165467 username aminvpn 165467 mac 165467 bytes_out 0 165467 bytes_in 0 165467 station_ip 5.119.210.108 165467 port 765 165467 unique_id port 165467 remote_ip 10.8.0.14 165470 username aminvpn 165470 mac 165470 bytes_out 0 165470 bytes_in 0 165470 station_ip 83.122.188.126 165470 port 731 165470 unique_id port 165470 remote_ip 10.8.0.14 165481 username mohammadjavad 165481 mac 165481 bytes_out 1051396 165481 bytes_in 16123400 165481 station_ip 37.27.6.172 165481 port 745 165481 unique_id port 165481 remote_ip 10.8.0.142 165485 username aminvpn 165485 mac 165485 bytes_out 4614 165485 bytes_in 6867 165485 station_ip 5.119.210.108 165485 port 745 165485 unique_id port 165485 remote_ip 10.8.0.14 165489 username aminvpn 165489 mac 165489 bytes_out 0 165489 bytes_in 0 165489 station_ip 5.119.210.108 165489 port 745 165489 unique_id port 165489 remote_ip 10.8.0.14 165494 username aminvpn 165494 mac 165494 bytes_out 0 165494 bytes_in 0 165494 station_ip 83.122.188.126 165494 port 745 165494 unique_id port 165494 remote_ip 10.8.0.14 165496 username aminvpn 165496 mac 165496 bytes_out 0 165496 bytes_in 0 165496 station_ip 5.119.210.108 165496 port 731 165496 unique_id port 165496 remote_ip 10.8.0.14 165501 username hashtadani4 165501 mac 165501 bytes_out 0 165501 bytes_in 0 165501 station_ip 83.123.116.78 165501 port 745 165501 unique_id port 165501 remote_ip 10.8.0.182 165502 username aminvpn 165502 mac 165502 bytes_out 0 165502 bytes_in 0 165502 station_ip 83.122.188.126 165502 port 765 165502 unique_id port 165502 remote_ip 10.8.0.14 165504 username aminvpn 165504 mac 165504 bytes_out 0 165504 bytes_in 0 165504 station_ip 5.119.210.108 165504 port 731 165504 unique_id port 165504 remote_ip 10.8.0.14 165505 username aminvpn 165505 mac 165505 bytes_out 0 165505 bytes_in 0 165505 station_ip 83.122.188.126 165505 port 745 165505 unique_id port 165505 remote_ip 10.8.0.14 165511 username aminvpn 165511 mac 165511 bytes_out 0 165511 bytes_in 0 165511 station_ip 5.119.210.108 165511 port 745 165511 unique_id port 165511 remote_ip 10.8.0.14 165512 username barzegar 165512 mac 165512 bytes_out 0 165512 bytes_in 0 165512 station_ip 5.120.50.228 165512 port 385 165512 unique_id port 165498 station_ip 5.119.210.108 165498 port 731 165498 unique_id port 165498 remote_ip 10.8.0.14 165499 username aminvpn 165499 mac 165499 bytes_out 0 165499 bytes_in 0 165499 station_ip 83.122.188.126 165499 port 745 165499 unique_id port 165499 remote_ip 10.8.0.14 165500 username aminvpn 165500 mac 165500 bytes_out 0 165500 bytes_in 0 165500 station_ip 5.119.210.108 165500 port 731 165500 unique_id port 165500 remote_ip 10.8.0.14 165506 username aminvpn 165506 mac 165506 bytes_out 0 165506 bytes_in 0 165506 station_ip 5.119.210.108 165506 port 731 165506 unique_id port 165506 remote_ip 10.8.0.14 165508 username pourshad 165508 mac 165508 bytes_out 0 165508 bytes_in 0 165508 station_ip 5.120.82.40 165508 port 741 165508 unique_id port 165508 remote_ip 10.8.0.18 165513 username hashtadani4 165513 mac 165513 bytes_out 0 165513 bytes_in 0 165513 station_ip 83.123.116.78 165513 port 385 165513 unique_id port 165513 remote_ip 10.8.1.142 165517 username aminvpn 165517 mac 165517 bytes_out 0 165517 bytes_in 0 165517 station_ip 83.122.188.126 165517 port 741 165517 unique_id port 165517 remote_ip 10.8.0.14 165518 username aminvpn 165518 mac 165518 bytes_out 0 165518 bytes_in 0 165518 station_ip 5.119.210.108 165518 port 745 165518 unique_id port 165518 remote_ip 10.8.0.14 165523 username malekpoir 165523 kill_reason Another user logged on this global unique id 165523 mac 165523 bytes_out 0 165523 bytes_in 0 165523 station_ip 5.120.22.52 165523 port 768 165523 unique_id port 165523 remote_ip 10.8.0.58 165528 username aminvpn 165528 mac 165528 bytes_out 0 165528 bytes_in 0 165528 station_ip 5.119.210.108 165528 port 745 165528 unique_id port 165528 remote_ip 10.8.0.14 165529 username aminvpn 165529 mac 165529 bytes_out 0 165529 bytes_in 0 165529 station_ip 83.122.188.126 165529 port 741 165529 unique_id port 165529 remote_ip 10.8.0.14 165533 username aminvpn 165533 mac 165533 bytes_out 0 165533 bytes_in 0 165533 station_ip 83.122.188.126 165533 port 741 165533 unique_id port 165533 remote_ip 10.8.0.14 165538 username hashtadani4 165538 mac 165538 bytes_out 0 165538 bytes_in 0 165538 station_ip 83.123.116.78 165538 port 741 165538 unique_id port 165538 remote_ip 10.8.0.182 165541 username hashtadani4 165541 mac 165541 bytes_out 0 165541 bytes_in 0 165541 station_ip 83.123.116.78 165541 port 761 165541 unique_id port 165541 remote_ip 10.8.0.182 165542 username sabaghnezhad 165542 mac 165542 bytes_out 24136 165542 bytes_in 33458 165542 station_ip 37.129.202.2 165542 port 741 165542 unique_id port 165542 remote_ip 10.8.0.186 165546 username hashtadani4 165546 mac 165546 bytes_out 0 165546 bytes_in 0 165546 station_ip 83.123.116.78 165546 port 765 165546 unique_id port 165546 remote_ip 10.8.0.182 165548 username pourshad 165548 mac 165548 bytes_out 1224246 165548 bytes_in 42270108 165548 station_ip 5.120.82.40 165548 port 385 165548 unique_id port 165548 remote_ip 10.8.1.154 165550 username hashtadani4 165550 mac 165550 bytes_out 0 165550 bytes_in 0 165550 station_ip 83.123.116.78 165550 port 741 165550 unique_id port 165550 remote_ip 10.8.0.182 165554 username mohammadjavad 165554 mac 165554 bytes_out 5863 165554 bytes_in 6545 165554 station_ip 113.203.51.211 165554 port 765 165554 unique_id port 165554 remote_ip 10.8.0.142 165555 username hashtadani4 165555 mac 165555 bytes_out 0 165555 bytes_in 0 165555 station_ip 83.123.116.78 165507 username aminvpn 165507 mac 165507 bytes_out 0 165507 bytes_in 0 165507 station_ip 83.122.188.126 165507 port 745 165507 unique_id port 165507 remote_ip 10.8.0.14 165509 username aminvpn 165509 mac 165509 bytes_out 0 165509 bytes_in 0 165509 station_ip 5.119.210.108 165509 port 765 165509 unique_id port 165509 remote_ip 10.8.0.14 165510 username aminvpn 165510 mac 165510 bytes_out 0 165510 bytes_in 0 165510 station_ip 83.122.188.126 165510 port 741 165510 unique_id port 165510 remote_ip 10.8.0.14 165514 username hashtadani4 165514 mac 165514 bytes_out 0 165514 bytes_in 0 165514 station_ip 83.123.116.78 165514 port 385 165514 unique_id port 165514 remote_ip 10.8.1.142 165520 username aminvpn 165520 mac 165520 bytes_out 0 165520 bytes_in 0 165520 station_ip 83.122.188.126 165520 port 741 165520 unique_id port 165520 remote_ip 10.8.0.14 165522 username aminvpn 165522 mac 165522 bytes_out 0 165522 bytes_in 0 165522 station_ip 83.122.188.126 165522 port 741 165522 unique_id port 165522 remote_ip 10.8.0.14 165525 username hashtadani4 165525 mac 165525 bytes_out 0 165525 bytes_in 0 165525 station_ip 83.123.116.78 165525 port 387 165525 unique_id port 165525 remote_ip 10.8.1.142 165526 username hashtadani4 165526 mac 165526 bytes_out 0 165526 bytes_in 0 165526 station_ip 83.123.116.78 165526 port 745 165526 unique_id port 165526 remote_ip 10.8.0.182 165530 username hashtadani4 165530 mac 165530 bytes_out 0 165530 bytes_in 0 165530 station_ip 83.123.116.78 165530 port 741 165530 unique_id port 165530 remote_ip 10.8.0.182 165534 username hashtadani4 165534 mac 165534 bytes_out 0 165534 bytes_in 0 165534 station_ip 83.123.116.78 165534 port 741 165534 unique_id port 165534 remote_ip 10.8.0.182 165535 username aminvpn 165535 mac 165535 bytes_out 0 165535 bytes_in 0 165535 station_ip 5.119.210.108 165535 port 745 165535 unique_id port 165535 remote_ip 10.8.0.14 165537 username barzegar 165537 mac 165537 bytes_out 0 165537 bytes_in 0 165537 station_ip 5.120.50.228 165537 port 765 165537 unique_id port 165537 remote_ip 10.8.0.234 165539 username godarzi 165539 mac 165539 bytes_out 0 165539 bytes_in 0 165539 station_ip 5.202.6.91 165539 port 764 165539 unique_id port 165539 remote_ip 10.8.0.174 165540 username sabaghnezhad 165540 mac 165540 bytes_out 0 165540 bytes_in 0 165540 station_ip 37.129.202.2 165540 port 761 165540 unique_id port 165540 remote_ip 10.8.0.186 165545 username barzegar 165545 mac 165545 bytes_out 0 165545 bytes_in 0 165545 station_ip 5.120.50.228 165545 port 387 165545 unique_id port 165545 remote_ip 10.8.1.174 165547 username godarzi 165547 mac 165547 bytes_out 294933 165547 bytes_in 434292 165547 station_ip 5.202.6.91 165547 port 741 165547 unique_id port 165547 remote_ip 10.8.0.174 165549 username mohammadjavad 165549 mac 165549 bytes_out 0 165549 bytes_in 0 165549 station_ip 113.203.51.211 165549 port 759 165549 unique_id port 165549 remote_ip 10.8.0.142 165553 username pourshad 165553 mac 165553 bytes_out 0 165553 bytes_in 0 165553 station_ip 5.120.82.40 165553 port 741 165553 unique_id port 165553 remote_ip 10.8.0.18 165557 username barzegar 165557 mac 165557 bytes_out 0 165557 bytes_in 0 165557 station_ip 5.120.50.228 165557 port 385 165557 unique_id port 165557 remote_ip 10.8.1.174 165558 username pourshad 165558 mac 165558 bytes_out 0 165558 bytes_in 0 165512 remote_ip 10.8.1.174 165515 username aminvpn 165515 mac 165515 bytes_out 0 165515 bytes_in 0 165515 station_ip 83.122.188.126 165515 port 741 165515 unique_id port 165515 remote_ip 10.8.0.14 165516 username aminvpn 165516 mac 165516 bytes_out 0 165516 bytes_in 0 165516 station_ip 5.119.210.108 165516 port 745 165516 unique_id port 165516 remote_ip 10.8.0.14 165519 username mosi 165519 mac 165519 bytes_out 0 165519 bytes_in 0 165519 station_ip 151.235.96.72 165519 port 759 165519 unique_id port 165519 remote_ip 10.8.0.138 165521 username aminvpn 165521 mac 165521 bytes_out 0 165521 bytes_in 0 165521 station_ip 5.119.210.108 165521 port 745 165521 unique_id port 165521 remote_ip 10.8.0.14 165524 username aminvpn 165524 mac 165524 bytes_out 0 165524 bytes_in 0 165524 station_ip 5.119.210.108 165524 port 745 165524 unique_id port 165524 remote_ip 10.8.0.14 165527 username aminvpn 165527 mac 165527 bytes_out 0 165527 bytes_in 0 165527 station_ip 83.122.188.126 165527 port 741 165527 unique_id port 165527 remote_ip 10.8.0.14 165531 username aminvpn 165531 mac 165531 bytes_out 0 165531 bytes_in 0 165531 station_ip 5.119.210.108 165531 port 745 165531 unique_id port 165531 remote_ip 10.8.0.14 165532 username hashtadani4 165532 mac 165532 bytes_out 0 165532 bytes_in 0 165532 station_ip 83.123.116.78 165532 port 745 165532 unique_id port 165532 remote_ip 10.8.0.182 165536 username hashtadani4 165536 mac 165536 bytes_out 0 165536 bytes_in 0 165536 station_ip 83.123.116.78 165536 port 741 165536 unique_id port 165536 remote_ip 10.8.0.182 165543 username hashtadani4 165543 mac 165543 bytes_out 0 165543 bytes_in 0 165543 station_ip 83.123.116.78 165543 port 764 165543 unique_id port 165543 remote_ip 10.8.0.182 165544 username aminvpn 165544 mac 165544 bytes_out 0 165544 bytes_in 0 165544 station_ip 83.122.188.126 165544 port 759 165544 unique_id port 165544 remote_ip 10.8.0.14 165551 username pourshad 165551 mac 165551 bytes_out 34100 165551 bytes_in 50589 165551 station_ip 5.120.82.40 165551 port 385 165551 unique_id port 165551 remote_ip 10.8.1.154 165552 username nilufarrajaei 165552 mac 165552 bytes_out 2016347 165552 bytes_in 20191032 165552 station_ip 83.123.183.18 165552 port 767 165552 unique_id port 165552 remote_ip 10.8.0.206 165567 username pourshad 165567 mac 165567 bytes_out 1661 165567 bytes_in 3725 165567 station_ip 5.120.82.40 165567 port 765 165567 unique_id port 165567 remote_ip 10.8.0.18 165570 username barzegar 165570 mac 165570 bytes_out 0 165570 bytes_in 0 165570 station_ip 5.120.50.228 165570 port 769 165570 unique_id port 165570 remote_ip 10.8.0.234 165574 username morteza 165574 mac 165574 bytes_out 0 165574 bytes_in 0 165574 station_ip 83.122.243.55 165574 port 770 165574 unique_id port 165574 remote_ip 10.8.0.46 165576 username morteza 165576 mac 165576 bytes_out 0 165576 bytes_in 0 165576 station_ip 83.122.243.55 165576 port 769 165576 unique_id port 165576 remote_ip 10.8.0.46 165582 username barzegar 165582 mac 165582 bytes_out 0 165582 bytes_in 0 165582 station_ip 5.120.50.228 165582 port 741 165582 unique_id port 165582 remote_ip 10.8.0.234 165584 username hashtadani4 165584 mac 165584 bytes_out 0 165584 bytes_in 0 165584 station_ip 83.123.116.78 165584 port 770 165584 unique_id port 165584 remote_ip 10.8.0.182 165587 username hashtadani4 165587 mac 165555 port 741 165555 unique_id port 165555 remote_ip 10.8.0.182 165556 username hashtadani4 165556 mac 165556 bytes_out 0 165556 bytes_in 0 165556 station_ip 83.123.116.78 165556 port 741 165556 unique_id port 165556 remote_ip 10.8.0.182 165559 username hashtadani4 165559 mac 165559 bytes_out 0 165559 bytes_in 0 165559 station_ip 83.123.116.78 165559 port 741 165559 unique_id port 165559 remote_ip 10.8.0.182 165561 username hashtadani4 165561 mac 165561 bytes_out 0 165561 bytes_in 0 165561 station_ip 83.123.116.78 165561 port 741 165561 unique_id port 165561 remote_ip 10.8.0.182 165565 username hashtadani4 165565 mac 165565 bytes_out 0 165565 bytes_in 0 165565 station_ip 83.123.116.78 165565 port 741 165565 unique_id port 165565 remote_ip 10.8.0.182 165566 username hashtadani4 165566 mac 165566 bytes_out 0 165566 bytes_in 0 165566 station_ip 83.123.116.78 165566 port 768 165566 unique_id port 165566 remote_ip 10.8.0.182 165569 username hashtadani4 165569 mac 165569 bytes_out 0 165569 bytes_in 0 165569 station_ip 83.123.116.78 165569 port 768 165569 unique_id port 165569 remote_ip 10.8.0.182 165572 username pourshad 165572 mac 165572 bytes_out 0 165572 bytes_in 0 165572 station_ip 5.120.82.40 165572 port 770 165572 unique_id port 165572 remote_ip 10.8.0.18 165575 username Mahin 165575 kill_reason Relative expiration date has reached 165575 mac 165575 bytes_out 0 165575 bytes_in 0 165575 station_ip 5.119.50.174 165575 port 771 165575 unique_id port 165577 username hashtadani4 165577 mac 165577 bytes_out 646510 165577 bytes_in 8488148 165577 station_ip 83.123.116.78 165577 port 768 165577 unique_id port 165577 remote_ip 10.8.0.182 165579 username godarzi 165579 mac 165579 bytes_out 572841 165579 bytes_in 2558823 165579 station_ip 5.202.6.91 165579 port 741 165579 unique_id port 165579 remote_ip 10.8.0.174 165581 username morteza 165581 mac 165581 bytes_out 15007 165581 bytes_in 28588 165581 station_ip 83.122.243.55 165581 port 769 165581 unique_id port 165581 remote_ip 10.8.0.46 165586 username hashtadani4 165586 mac 165586 bytes_out 0 165586 bytes_in 0 165586 station_ip 83.123.116.78 165586 port 770 165586 unique_id port 165586 remote_ip 10.8.0.182 165591 username hashtadani4 165591 mac 165591 bytes_out 0 165591 bytes_in 0 165591 station_ip 83.123.116.78 165591 port 764 165591 unique_id port 165591 remote_ip 10.8.0.182 165595 username pourshad 165595 mac 165595 bytes_out 3503 165595 bytes_in 6950 165595 station_ip 5.120.82.40 165595 port 387 165595 unique_id port 165595 remote_ip 10.8.1.154 165597 username hashtadani4 165597 kill_reason Maximum check online fails reached 165597 mac 165597 bytes_out 0 165597 bytes_in 0 165597 station_ip 83.123.116.78 165597 port 390 165597 unique_id port 165600 username pourshad 165600 mac 165600 bytes_out 2956 165600 bytes_in 12245 165600 station_ip 5.120.82.40 165600 port 769 165600 unique_id port 165600 remote_ip 10.8.0.18 165601 username moradi 165601 mac 165601 bytes_out 0 165601 bytes_in 0 165601 station_ip 46.225.210.112 165601 port 385 165601 unique_id port 165601 remote_ip 10.8.1.202 165604 username moradi 165604 mac 165604 bytes_out 10020 165604 bytes_in 16285 165604 station_ip 46.225.210.112 165604 port 764 165604 unique_id port 165604 remote_ip 10.8.0.126 165607 username hosseine 165607 mac 165607 bytes_out 0 165607 bytes_in 0 165607 station_ip 83.122.216.61 165607 port 731 165558 station_ip 5.120.82.40 165558 port 767 165558 unique_id port 165558 remote_ip 10.8.0.18 165560 username pourshad 165560 mac 165560 bytes_out 0 165560 bytes_in 0 165560 station_ip 5.120.82.40 165560 port 387 165560 unique_id port 165560 remote_ip 10.8.1.154 165562 username pourshad 165562 mac 165562 bytes_out 0 165562 bytes_in 0 165562 station_ip 5.120.82.40 165562 port 387 165562 unique_id port 165562 remote_ip 10.8.1.154 165563 username hashtadani4 165563 mac 165563 bytes_out 0 165563 bytes_in 0 165563 station_ip 83.123.116.78 165563 port 741 165563 unique_id port 165563 remote_ip 10.8.0.182 165564 username malekpoir 165564 mac 165564 bytes_out 0 165564 bytes_in 0 165564 station_ip 5.120.22.52 165564 port 768 165564 unique_id port 165568 username hashtadani4 165568 mac 165568 bytes_out 0 165568 bytes_in 0 165568 station_ip 83.123.116.78 165568 port 387 165568 unique_id port 165568 remote_ip 10.8.1.142 165571 username hashtadani4 165571 kill_reason Maximum check online fails reached 165571 mac 165571 bytes_out 0 165571 bytes_in 0 165571 station_ip 83.123.116.78 165571 port 765 165571 unique_id port 165573 username morteza 165573 mac 165573 bytes_out 0 165573 bytes_in 0 165573 station_ip 83.122.243.55 165573 port 769 165573 unique_id port 165573 remote_ip 10.8.0.46 165578 username shadkam 165578 mac 165578 bytes_out 0 165578 bytes_in 0 165578 station_ip 83.123.238.250 165578 port 387 165578 unique_id port 165578 remote_ip 10.8.1.218 165580 username vanila 165580 mac 165580 bytes_out 0 165580 bytes_in 0 165580 station_ip 37.129.107.51 165580 port 770 165580 unique_id port 165580 remote_ip 10.8.0.178 165583 username hashtadani4 165583 mac 165583 bytes_out 3610 165583 bytes_in 6257 165583 station_ip 83.123.116.78 165583 port 387 165583 unique_id port 165583 remote_ip 10.8.1.142 165585 username pourshad 165585 mac 165585 bytes_out 9522 165585 bytes_in 15444 165585 station_ip 5.120.82.40 165585 port 390 165585 unique_id port 165585 remote_ip 10.8.1.154 165590 username barzegar 165590 mac 165590 bytes_out 0 165590 bytes_in 0 165590 station_ip 5.120.50.228 165590 port 770 165590 unique_id port 165590 remote_ip 10.8.0.234 165594 username hashtadani4 165594 mac 165594 bytes_out 0 165594 bytes_in 0 165594 station_ip 83.123.116.78 165594 port 764 165594 unique_id port 165594 remote_ip 10.8.0.182 165599 username hashtadani4 165599 mac 165599 bytes_out 0 165599 bytes_in 0 165599 station_ip 83.123.116.78 165599 port 764 165599 unique_id port 165599 remote_ip 10.8.0.182 165606 username godarzi 165606 kill_reason Another user logged on this global unique id 165606 mac 165606 bytes_out 0 165606 bytes_in 0 165606 station_ip 5.202.6.91 165606 port 768 165606 unique_id port 165606 remote_ip 10.8.0.174 165611 username pourshad 165611 mac 165611 bytes_out 96411 165611 bytes_in 723435 165611 station_ip 5.120.82.40 165611 port 385 165611 unique_id port 165611 remote_ip 10.8.1.154 165612 username hashtadani4 165612 mac 165612 bytes_out 0 165612 bytes_in 0 165612 station_ip 83.123.116.78 165612 port 767 165612 unique_id port 165612 remote_ip 10.8.0.182 165614 username moradi 165614 mac 165614 bytes_out 14572 165614 bytes_in 22141 165614 station_ip 46.225.210.8 165614 port 731 165614 unique_id port 165614 remote_ip 10.8.0.126 165619 username barzegar 165619 mac 165619 bytes_out 0 165619 bytes_in 0 165619 station_ip 5.120.50.228 165619 port 731 165587 bytes_out 0 165587 bytes_in 0 165587 station_ip 83.123.116.78 165587 port 770 165587 unique_id port 165587 remote_ip 10.8.0.182 165588 username aminvpn 165588 mac 165588 bytes_out 1847372 165588 bytes_in 51474277 165588 station_ip 31.59.42.106 165588 port 764 165588 unique_id port 165588 remote_ip 10.8.0.14 165589 username aminvpn 165589 mac 165589 bytes_out 0 165589 bytes_in 0 165589 station_ip 83.122.219.122 165589 port 771 165589 unique_id port 165589 remote_ip 10.8.0.14 165592 username mohammadjavad 165592 mac 165592 bytes_out 0 165592 bytes_in 0 165592 station_ip 83.122.81.179 165592 port 769 165592 unique_id port 165592 remote_ip 10.8.0.142 165593 username hashtadani4 165593 mac 165593 bytes_out 0 165593 bytes_in 0 165593 station_ip 83.123.116.78 165593 port 764 165593 unique_id port 165593 remote_ip 10.8.0.182 165596 username moradi 165596 mac 165596 bytes_out 0 165596 bytes_in 0 165596 station_ip 46.225.210.8 165596 port 385 165596 unique_id port 165596 remote_ip 10.8.1.202 165598 username hashtadani4 165598 mac 165598 bytes_out 5219 165598 bytes_in 4770 165598 station_ip 83.123.116.78 165598 port 764 165598 unique_id port 165598 remote_ip 10.8.0.182 165602 username khademi 165602 kill_reason Another user logged on this global unique id 165602 mac 165602 bytes_out 0 165602 bytes_in 0 165602 station_ip 37.129.42.119 165602 port 758 165602 unique_id port 165603 username barzegar 165603 mac 165603 bytes_out 0 165603 bytes_in 0 165603 station_ip 5.120.50.228 165603 port 385 165603 unique_id port 165603 remote_ip 10.8.1.174 165605 username malekpoir 165605 mac 165605 bytes_out 611767 165605 bytes_in 5452116 165605 station_ip 5.120.22.52 165605 port 767 165605 unique_id port 165605 remote_ip 10.8.0.58 165608 username pourshad 165608 mac 165608 bytes_out 0 165608 bytes_in 0 165608 station_ip 5.120.82.40 165608 port 769 165608 unique_id port 165608 remote_ip 10.8.0.18 165609 username khalili 165609 kill_reason Another user logged on this global unique id 165609 mac 165609 bytes_out 0 165609 bytes_in 0 165609 station_ip 5.119.37.112 165609 port 745 165609 unique_id port 165609 remote_ip 10.8.0.86 165610 username hashtadani4 165610 mac 165610 bytes_out 0 165610 bytes_in 0 165610 station_ip 83.123.116.78 165610 port 770 165610 unique_id port 165610 remote_ip 10.8.0.182 165613 username pourshad 165613 mac 165613 bytes_out 1833 165613 bytes_in 4370 165613 station_ip 5.120.82.40 165613 port 385 165613 unique_id port 165613 remote_ip 10.8.1.154 165615 username hashtadani4 165615 mac 165615 bytes_out 0 165615 bytes_in 0 165615 station_ip 5.202.60.154 165615 port 767 165615 unique_id port 165615 remote_ip 10.8.0.182 165616 username hashtadani4 165616 mac 165616 bytes_out 0 165616 bytes_in 0 165616 station_ip 83.123.116.78 165616 port 731 165616 unique_id port 165616 remote_ip 10.8.0.182 165618 username barzegar 165618 mac 165618 bytes_out 0 165618 bytes_in 0 165618 station_ip 5.120.50.228 165618 port 731 165618 unique_id port 165618 remote_ip 10.8.0.234 165624 username hashtadani4 165624 mac 165624 bytes_out 232814 165624 bytes_in 2510922 165624 station_ip 5.202.28.134 165624 port 770 165624 unique_id port 165624 remote_ip 10.8.0.182 165627 username hashtadani4 165627 kill_reason Another user logged on this global unique id 165627 mac 165627 bytes_out 0 165627 bytes_in 0 165627 station_ip 5.202.28.134 165627 port 770 165627 unique_id port 165627 remote_ip 10.8.0.182 165607 unique_id port 165607 remote_ip 10.8.0.238 165617 username shahrooz 165617 kill_reason Relative expiration date has reached 165617 unique_id port 165617 bytes_out 0 165617 bytes_in 0 165617 station_ip 37.129.67.35 165617 port 15728701 165617 nas_port_type Virtual 165620 username hashtadani4 165620 mac 165620 bytes_out 0 165620 bytes_in 0 165620 station_ip 83.123.116.78 165620 port 387 165620 unique_id port 165620 remote_ip 10.8.1.142 165621 username pourshad 165621 mac 165621 bytes_out 386841 165621 bytes_in 4713595 165621 station_ip 5.120.82.40 165621 port 385 165621 unique_id port 165621 remote_ip 10.8.1.154 165629 username hashtadani4 165629 mac 165629 bytes_out 0 165629 bytes_in 0 165629 station_ip 5.202.28.134 165629 port 770 165629 unique_id port 165630 username tahmorsi 165630 mac 165630 bytes_out 0 165630 bytes_in 0 165630 station_ip 86.57.40.106 165630 port 771 165630 unique_id port 165630 remote_ip 10.8.0.210 165631 username alikomsari 165631 kill_reason Another user logged on this global unique id 165631 mac 165631 bytes_out 0 165631 bytes_in 0 165631 station_ip 5.120.69.85 165631 port 741 165631 unique_id port 165631 remote_ip 10.8.0.26 165640 username moradi 165640 mac 165640 bytes_out 0 165640 bytes_in 0 165640 station_ip 46.225.210.90 165640 port 770 165640 unique_id port 165640 remote_ip 10.8.0.126 165642 username pourshad 165642 kill_reason Another user logged on this global unique id 165642 mac 165642 bytes_out 0 165642 bytes_in 0 165642 station_ip 5.120.82.40 165642 port 731 165642 unique_id port 165642 remote_ip 10.8.0.18 165647 username hashtadani4 165647 mac 165647 bytes_out 0 165647 bytes_in 0 165647 station_ip 5.202.28.134 165647 port 387 165647 unique_id port 165647 remote_ip 10.8.1.142 165650 username hashtadani4 165650 mac 165650 bytes_out 0 165650 bytes_in 0 165650 station_ip 5.202.28.134 165650 port 767 165650 unique_id port 165650 remote_ip 10.8.0.182 165652 username moradi 165652 mac 165652 bytes_out 14367 165652 bytes_in 20510 165652 station_ip 46.225.210.90 165652 port 764 165652 unique_id port 165652 remote_ip 10.8.0.126 165653 username hashtadani4 165653 mac 165653 bytes_out 0 165653 bytes_in 0 165653 station_ip 5.202.28.134 165653 port 764 165653 unique_id port 165653 remote_ip 10.8.0.182 165655 username hashtadani4 165655 mac 165655 bytes_out 0 165655 bytes_in 0 165655 station_ip 5.202.28.134 165655 port 764 165655 unique_id port 165655 remote_ip 10.8.0.182 165657 username rezaei 165657 kill_reason Another user logged on this global unique id 165657 mac 165657 bytes_out 0 165657 bytes_in 0 165657 station_ip 5.119.14.25 165657 port 759 165657 unique_id port 165657 remote_ip 10.8.0.230 165659 username pourshad 165659 mac 165659 bytes_out 0 165659 bytes_in 0 165659 station_ip 5.120.82.40 165659 port 731 165659 unique_id port 165660 username saeed9658 165660 kill_reason Another user logged on this global unique id 165660 mac 165660 bytes_out 0 165660 bytes_in 0 165660 station_ip 5.120.164.144 165660 port 385 165660 unique_id port 165660 remote_ip 10.8.1.210 165663 username hosseine 165663 mac 165663 bytes_out 23375 165663 bytes_in 25294 165663 station_ip 83.122.216.61 165663 port 731 165663 unique_id port 165663 remote_ip 10.8.0.238 165665 username alikomsari 165665 kill_reason Another user logged on this global unique id 165665 mac 165665 bytes_out 0 165665 bytes_in 0 165665 station_ip 5.120.69.85 165665 port 741 165665 unique_id port 165666 username sabaghnezhad 165666 mac 165666 bytes_out 31413 165619 unique_id port 165619 remote_ip 10.8.0.234 165622 username hashtadani4 165622 mac 165622 bytes_out 2225 165622 bytes_in 4755 165622 station_ip 83.123.116.78 165622 port 387 165622 unique_id port 165622 remote_ip 10.8.1.142 165623 username hosseine 165623 mac 165623 bytes_out 0 165623 bytes_in 0 165623 station_ip 83.122.216.61 165623 port 764 165623 unique_id port 165623 remote_ip 10.8.0.238 165625 username hashtadani4 165625 mac 165625 bytes_out 0 165625 bytes_in 0 165625 station_ip 5.202.28.134 165625 port 770 165625 unique_id port 165625 remote_ip 10.8.0.182 165626 username mohammadjavad 165626 mac 165626 bytes_out 552994 165626 bytes_in 2414576 165626 station_ip 113.203.2.228 165626 port 767 165626 unique_id port 165626 remote_ip 10.8.0.142 165632 username nilufarrajaei 165632 mac 165632 bytes_out 0 165632 bytes_in 0 165632 station_ip 83.123.183.18 165632 port 759 165632 unique_id port 165632 remote_ip 10.8.0.206 165633 username hosseine 165633 mac 165633 bytes_out 0 165633 bytes_in 0 165633 station_ip 83.122.216.61 165633 port 764 165633 unique_id port 165633 remote_ip 10.8.0.238 165635 username hashtadani4 165635 kill_reason Another user logged on this global unique id 165635 mac 165635 bytes_out 0 165635 bytes_in 0 165635 station_ip 5.202.28.134 165635 port 767 165635 unique_id port 165635 remote_ip 10.8.0.182 165636 username nilufarrajaei 165636 mac 165636 bytes_out 29868 165636 bytes_in 55799 165636 station_ip 83.123.183.18 165636 port 771 165636 unique_id port 165636 remote_ip 10.8.0.206 165637 username barzegar 165637 mac 165637 bytes_out 0 165637 bytes_in 0 165637 station_ip 5.120.50.228 165637 port 771 165637 unique_id port 165637 remote_ip 10.8.0.234 165639 username saeed9658 165639 mac 165639 bytes_out 0 165639 bytes_in 0 165639 station_ip 5.120.164.144 165639 port 385 165639 unique_id port 165639 remote_ip 10.8.1.210 165646 username barzegar 165646 mac 165646 bytes_out 0 165646 bytes_in 0 165646 station_ip 5.120.50.228 165646 port 391 165646 unique_id port 165646 remote_ip 10.8.1.174 165649 username hashtadani4 165649 mac 165649 bytes_out 0 165649 bytes_in 0 165649 station_ip 5.202.28.134 165649 port 767 165649 unique_id port 165649 remote_ip 10.8.0.182 165651 username hashtadani4 165651 mac 165651 bytes_out 0 165651 bytes_in 0 165651 station_ip 5.202.28.134 165651 port 772 165651 unique_id port 165651 remote_ip 10.8.0.182 165656 username barzegar 165656 mac 165656 bytes_out 0 165656 bytes_in 0 165656 station_ip 5.120.50.228 165656 port 387 165656 unique_id port 165656 remote_ip 10.8.1.174 165658 username hashtadani4 165658 mac 165658 bytes_out 0 165658 bytes_in 0 165658 station_ip 5.202.28.134 165658 port 764 165658 unique_id port 165658 remote_ip 10.8.0.182 165661 username hashtadani4 165661 mac 165661 bytes_out 0 165661 bytes_in 0 165661 station_ip 5.202.28.134 165661 port 764 165661 unique_id port 165661 remote_ip 10.8.0.182 165670 username vanila 165670 mac 165670 bytes_out 42964 165670 bytes_in 35429 165670 station_ip 37.129.110.107 165670 port 764 165670 unique_id port 165670 remote_ip 10.8.0.178 165674 username barzegar 165674 mac 165674 bytes_out 0 165674 bytes_in 0 165674 station_ip 5.120.50.228 165674 port 387 165674 unique_id port 165675 username barzegar 165675 mac 165675 bytes_out 0 165675 bytes_in 0 165675 station_ip 37.129.102.37 165675 port 392 165675 unique_id port 165675 remote_ip 10.8.1.174 165628 username barzegar 165628 mac 165628 bytes_out 2654 165628 bytes_in 5221 165628 station_ip 5.120.50.228 165628 port 767 165628 unique_id port 165628 remote_ip 10.8.0.234 165634 username sabaghnezhad 165634 mac 165634 bytes_out 0 165634 bytes_in 0 165634 station_ip 37.129.202.2 165634 port 761 165634 unique_id port 165634 remote_ip 10.8.0.186 165638 username hosseine 165638 mac 165638 bytes_out 55689 165638 bytes_in 106818 165638 station_ip 83.122.216.61 165638 port 764 165638 unique_id port 165638 remote_ip 10.8.0.238 165641 username alirezazadeh 165641 unique_id port 165641 terminate_cause User-Request 165641 bytes_out 0 165641 bytes_in 0 165641 station_ip 5.119.95.139 165641 port 15728705 165641 nas_port_type Virtual 165641 remote_ip 5.5.5.204 165643 username hashtadani4 165643 mac 165643 bytes_out 0 165643 bytes_in 0 165643 station_ip 5.202.28.134 165643 port 767 165643 unique_id port 165644 username alirezazadeh 165644 unique_id port 165644 terminate_cause User-Request 165644 bytes_out 100 165644 bytes_in 136 165644 station_ip 5.119.95.139 165644 port 15728706 165644 nas_port_type Virtual 165644 remote_ip 5.5.5.203 165645 username barzegar 165645 mac 165645 bytes_out 0 165645 bytes_in 0 165645 station_ip 5.120.50.228 165645 port 764 165645 unique_id port 165645 remote_ip 10.8.0.234 165648 username hashtadani4 165648 mac 165648 bytes_out 0 165648 bytes_in 0 165648 station_ip 5.202.28.134 165648 port 391 165648 unique_id port 165648 remote_ip 10.8.1.142 165654 username hosseine 165654 mac 165654 bytes_out 0 165654 bytes_in 0 165654 station_ip 83.122.216.61 165654 port 771 165654 unique_id port 165654 remote_ip 10.8.0.238 165662 username saeed9658 165662 mac 165662 bytes_out 0 165662 bytes_in 0 165662 station_ip 5.120.164.144 165662 port 385 165662 unique_id port 165664 username hashtadani4 165664 mac 165664 bytes_out 0 165664 bytes_in 0 165664 station_ip 5.202.28.134 165664 port 764 165664 unique_id port 165664 remote_ip 10.8.0.182 165667 username hosseine 165667 mac 165667 bytes_out 20237 165667 bytes_in 17060 165667 station_ip 83.122.216.61 165667 port 731 165667 unique_id port 165667 remote_ip 10.8.0.238 165668 username hashtadani4 165668 mac 165668 bytes_out 752682 165668 bytes_in 10717375 165668 station_ip 5.202.28.134 165668 port 764 165668 unique_id port 165668 remote_ip 10.8.0.182 165669 username hashtadani4 165669 mac 165669 bytes_out 0 165669 bytes_in 0 165669 station_ip 5.202.28.134 165669 port 767 165669 unique_id port 165669 remote_ip 10.8.0.182 165671 username barzegar 165671 kill_reason Another user logged on this global unique id 165671 mac 165671 bytes_out 0 165671 bytes_in 0 165671 station_ip 5.120.50.228 165671 port 387 165671 unique_id port 165671 remote_ip 10.8.1.174 165672 username hashtadani4 165672 mac 165672 bytes_out 0 165672 bytes_in 0 165672 station_ip 5.202.28.134 165672 port 764 165672 unique_id port 165672 remote_ip 10.8.0.182 165676 username pourshad 165676 mac 165676 bytes_out 38816 165676 bytes_in 196026 165676 station_ip 5.120.82.40 165676 port 731 165676 unique_id port 165676 remote_ip 10.8.0.18 165677 username yaghobi 165677 mac 165677 bytes_out 0 165677 bytes_in 0 165677 station_ip 83.123.237.145 165677 port 387 165677 unique_id port 165677 remote_ip 10.8.1.118 165678 username alikomsari 165678 mac 165678 bytes_out 0 165678 bytes_in 0 165678 station_ip 5.120.69.85 165678 port 741 165678 unique_id port 165680 username yaghobi 165666 bytes_in 106403 165666 station_ip 37.129.202.2 165666 port 767 165666 unique_id port 165666 remote_ip 10.8.0.186 165673 username godarzi 165673 mac 165673 bytes_out 0 165673 bytes_in 0 165673 station_ip 5.202.6.91 165673 port 768 165673 unique_id port 165683 username yaghobi 165683 mac 165683 bytes_out 0 165683 bytes_in 0 165683 station_ip 83.123.75.55 165683 port 392 165683 unique_id port 165683 remote_ip 10.8.1.118 165684 username saeed9658 165684 mac 165684 bytes_out 0 165684 bytes_in 0 165684 station_ip 5.120.164.144 165684 port 394 165684 unique_id port 165684 remote_ip 10.8.1.210 165688 username farhad2 165688 mac 165688 bytes_out 0 165688 bytes_in 0 165688 station_ip 5.119.93.119 165688 port 767 165688 unique_id port 165688 remote_ip 10.8.0.190 165690 username shadkam 165690 mac 165690 bytes_out 0 165690 bytes_in 0 165690 station_ip 83.122.97.248 165690 port 393 165690 unique_id port 165690 remote_ip 10.8.1.218 165692 username shadkam 165692 mac 165692 bytes_out 0 165692 bytes_in 0 165692 station_ip 83.122.97.248 165692 port 393 165692 unique_id port 165692 remote_ip 10.8.1.218 165693 username farhad2 165693 mac 165693 bytes_out 0 165693 bytes_in 0 165693 station_ip 5.119.93.119 165693 port 768 165693 unique_id port 165693 remote_ip 10.8.0.190 165698 username barzegar 165698 mac 165698 bytes_out 0 165698 bytes_in 0 165698 station_ip 5.120.50.228 165698 port 764 165698 unique_id port 165698 remote_ip 10.8.0.234 165700 username shadkam 165700 mac 165700 bytes_out 0 165700 bytes_in 0 165700 station_ip 83.122.97.248 165700 port 393 165700 unique_id port 165700 remote_ip 10.8.1.218 165706 username nilufarrajaei 165706 mac 165706 bytes_out 63372 165706 bytes_in 101911 165706 station_ip 83.123.183.18 165706 port 385 165706 unique_id port 165706 remote_ip 10.8.1.166 165708 username shadkam 165708 mac 165708 bytes_out 0 165708 bytes_in 0 165708 station_ip 83.122.97.248 165708 port 385 165708 unique_id port 165708 remote_ip 10.8.1.218 165710 username hashtadani4 165710 kill_reason Maximum check online fails reached 165710 mac 165710 bytes_out 0 165710 bytes_in 0 165710 station_ip 5.202.28.134 165710 port 764 165710 unique_id port 165717 username meysam 165717 kill_reason Another user logged on this global unique id 165717 mac 165717 bytes_out 0 165717 bytes_in 0 165717 station_ip 188.158.51.36 165717 port 771 165717 unique_id port 165717 remote_ip 10.8.0.110 165719 username hosseine 165719 mac 165719 bytes_out 0 165719 bytes_in 0 165719 station_ip 83.122.216.61 165719 port 772 165719 unique_id port 165719 remote_ip 10.8.0.238 165720 username shadkam 165720 mac 165720 bytes_out 0 165720 bytes_in 0 165720 station_ip 83.122.97.248 165720 port 772 165720 unique_id port 165720 remote_ip 10.8.0.62 165722 username hashtadani4 165722 mac 165722 bytes_out 0 165722 bytes_in 0 165722 station_ip 37.129.15.205 165722 port 385 165722 unique_id port 165722 remote_ip 10.8.1.142 165726 username shadkam 165726 mac 165726 bytes_out 0 165726 bytes_in 0 165726 station_ip 83.122.97.248 165726 port 731 165726 unique_id port 165726 remote_ip 10.8.0.62 165727 username hashtadani4 165727 mac 165727 bytes_out 0 165727 bytes_in 0 165727 station_ip 5.202.28.134 165727 port 731 165727 unique_id port 165727 remote_ip 10.8.0.182 165728 username hashtadani4 165728 mac 165728 bytes_out 0 165728 bytes_in 0 165728 station_ip 5.202.28.134 165679 username barzegar 165679 mac 165679 bytes_out 0 165679 bytes_in 0 165679 station_ip 37.129.102.37 165679 port 392 165679 unique_id port 165679 remote_ip 10.8.1.174 165681 username barzegar 165681 mac 165681 bytes_out 0 165681 bytes_in 0 165681 station_ip 37.129.102.37 165681 port 393 165681 unique_id port 165681 remote_ip 10.8.1.174 165697 username nilufarrajaei 165697 mac 165697 bytes_out 718583 165697 bytes_in 3169903 165697 station_ip 83.123.183.18 165697 port 761 165697 unique_id port 165697 remote_ip 10.8.0.206 165699 username pourshad 165699 mac 165699 bytes_out 201820 165699 bytes_in 2721768 165699 station_ip 5.120.82.40 165699 port 741 165699 unique_id port 165699 remote_ip 10.8.0.18 165703 username barzegar 165703 mac 165703 bytes_out 0 165703 bytes_in 0 165703 station_ip 5.120.50.228 165703 port 741 165703 unique_id port 165703 remote_ip 10.8.0.234 165704 username shadkam 165704 mac 165704 bytes_out 0 165704 bytes_in 0 165704 station_ip 83.122.97.248 165704 port 741 165704 unique_id port 165704 remote_ip 10.8.0.62 165705 username farhad2 165705 mac 165705 bytes_out 0 165705 bytes_in 0 165705 station_ip 5.119.93.119 165705 port 761 165705 unique_id port 165705 remote_ip 10.8.0.190 165707 username rajaei 165707 kill_reason Another user logged on this global unique id 165707 mac 165707 bytes_out 0 165707 bytes_in 0 165707 station_ip 89.32.97.52 165707 port 767 165707 unique_id port 165707 remote_ip 10.8.0.34 165709 username pourshad 165709 mac 165709 bytes_out 0 165709 bytes_in 0 165709 station_ip 5.120.82.40 165709 port 741 165709 unique_id port 165709 remote_ip 10.8.0.18 165711 username rezaei 165711 kill_reason Another user logged on this global unique id 165711 mac 165711 bytes_out 0 165711 bytes_in 0 165711 station_ip 5.119.14.25 165711 port 759 165711 unique_id port 165713 username hosseine 165713 mac 165713 bytes_out 485374 165713 bytes_in 3741744 165713 station_ip 83.122.216.61 165713 port 391 165713 unique_id port 165713 remote_ip 10.8.1.190 165714 username hashtadani4 165714 mac 165714 bytes_out 0 165714 bytes_in 0 165714 station_ip 5.202.28.134 165714 port 731 165714 unique_id port 165714 remote_ip 10.8.0.182 165715 username shadkam 165715 mac 165715 bytes_out 0 165715 bytes_in 0 165715 station_ip 83.122.97.248 165715 port 731 165715 unique_id port 165715 remote_ip 10.8.0.62 165716 username hosseine 165716 mac 165716 bytes_out 0 165716 bytes_in 0 165716 station_ip 83.122.216.61 165716 port 741 165716 unique_id port 165716 remote_ip 10.8.0.238 165718 username barzegar 165718 mac 165718 bytes_out 0 165718 bytes_in 0 165718 station_ip 5.120.50.228 165718 port 731 165718 unique_id port 165718 remote_ip 10.8.0.234 165725 username khalili 165725 kill_reason Another user logged on this global unique id 165725 mac 165725 bytes_out 0 165725 bytes_in 0 165725 station_ip 5.119.37.112 165725 port 745 165725 unique_id port 165731 username rajaei 165731 mac 165731 bytes_out 0 165731 bytes_in 0 165731 station_ip 89.32.97.52 165731 port 767 165731 unique_id port 165737 username hashtadani4 165737 mac 165737 bytes_out 0 165737 bytes_in 0 165737 station_ip 5.202.28.134 165737 port 767 165737 unique_id port 165737 remote_ip 10.8.0.182 165739 username malekpoir 165739 mac 165739 bytes_out 0 165739 bytes_in 0 165739 station_ip 5.120.22.52 165739 port 769 165739 unique_id port 165739 remote_ip 10.8.0.58 165743 username malekpoir 165743 mac 165680 mac 165680 bytes_out 0 165680 bytes_in 0 165680 station_ip 83.123.237.145 165680 port 387 165680 unique_id port 165680 remote_ip 10.8.1.118 165682 username alikomsari 165682 kill_reason Maximum check online fails reached 165682 mac 165682 bytes_out 0 165682 bytes_in 0 165682 station_ip 5.120.69.85 165682 port 387 165682 unique_id port 165685 username barzegar 165685 mac 165685 bytes_out 0 165685 bytes_in 0 165685 station_ip 5.120.50.228 165685 port 393 165685 unique_id port 165685 remote_ip 10.8.1.174 165686 username pourshad 165686 mac 165686 bytes_out 26695 165686 bytes_in 90376 165686 station_ip 5.120.82.40 165686 port 764 165686 unique_id port 165686 remote_ip 10.8.0.18 165687 username farhad2 165687 mac 165687 bytes_out 0 165687 bytes_in 0 165687 station_ip 5.119.93.119 165687 port 393 165687 unique_id port 165687 remote_ip 10.8.1.222 165689 username hashtadani4 165689 mac 165689 bytes_out 10411 165689 bytes_in 12562 165689 station_ip 5.202.28.134 165689 port 731 165689 unique_id port 165689 remote_ip 10.8.0.182 165691 username farhad2 165691 mac 165691 bytes_out 0 165691 bytes_in 0 165691 station_ip 5.119.93.119 165691 port 768 165691 unique_id port 165691 remote_ip 10.8.0.190 165694 username sabaghnezhad 165694 mac 165694 bytes_out 0 165694 bytes_in 0 165694 station_ip 37.129.202.2 165694 port 385 165694 unique_id port 165694 remote_ip 10.8.1.130 165695 username barzegar 165695 mac 165695 bytes_out 812216 165695 bytes_in 500921 165695 station_ip 5.120.50.228 165695 port 764 165695 unique_id port 165695 remote_ip 10.8.0.234 165696 username yaghobi 165696 mac 165696 bytes_out 0 165696 bytes_in 0 165696 station_ip 83.123.75.55 165696 port 392 165696 unique_id port 165696 remote_ip 10.8.1.118 165701 username yaghobi 165701 mac 165701 bytes_out 9832 165701 bytes_in 6956 165701 station_ip 83.123.75.55 165701 port 761 165701 unique_id port 165701 remote_ip 10.8.0.198 165702 username farhad2 165702 mac 165702 bytes_out 229605 165702 bytes_in 875545 165702 station_ip 5.119.93.119 165702 port 768 165702 unique_id port 165702 remote_ip 10.8.0.190 165712 username godarzi 165712 mac 165712 bytes_out 0 165712 bytes_in 0 165712 station_ip 5.202.6.91 165712 port 731 165712 unique_id port 165712 remote_ip 10.8.0.174 165721 username rajaei 165721 kill_reason Another user logged on this global unique id 165721 mac 165721 bytes_out 0 165721 bytes_in 0 165721 station_ip 89.32.97.52 165721 port 767 165721 unique_id port 165723 username godarzi 165723 mac 165723 bytes_out 0 165723 bytes_in 0 165723 station_ip 5.202.6.91 165723 port 731 165723 unique_id port 165723 remote_ip 10.8.0.174 165724 username hashtadani4 165724 mac 165724 bytes_out 0 165724 bytes_in 0 165724 station_ip 5.202.28.134 165724 port 385 165724 unique_id port 165724 remote_ip 10.8.1.142 165729 username pourshad 165729 mac 165729 bytes_out 0 165729 bytes_in 0 165729 station_ip 5.120.82.40 165729 port 768 165729 unique_id port 165729 remote_ip 10.8.0.18 165732 username hashtadani4 165732 mac 165732 bytes_out 0 165732 bytes_in 0 165732 station_ip 5.202.28.134 165732 port 772 165732 unique_id port 165732 remote_ip 10.8.0.182 165734 username hashtadani4 165734 mac 165734 bytes_out 0 165734 bytes_in 0 165734 station_ip 5.202.28.134 165734 port 767 165734 unique_id port 165734 remote_ip 10.8.0.182 165735 username morteza 165735 mac 165735 bytes_out 0 165735 bytes_in 0 165728 port 731 165728 unique_id port 165728 remote_ip 10.8.0.182 165730 username hashtadani4 165730 mac 165730 bytes_out 0 165730 bytes_in 0 165730 station_ip 5.202.28.134 165730 port 731 165730 unique_id port 165730 remote_ip 10.8.0.182 165733 username pourshad 165733 mac 165733 bytes_out 0 165733 bytes_in 0 165733 station_ip 5.120.82.40 165733 port 731 165733 unique_id port 165733 remote_ip 10.8.0.18 165736 username rezaei 165736 kill_reason Another user logged on this global unique id 165736 mac 165736 bytes_out 0 165736 bytes_in 0 165736 station_ip 5.119.14.25 165736 port 759 165736 unique_id port 165738 username godarzi 165738 mac 165738 bytes_out 1130489 165738 bytes_in 19241662 165738 station_ip 5.202.6.91 165738 port 768 165738 unique_id port 165738 remote_ip 10.8.0.174 165740 username nilufarrajaei 165740 mac 165740 bytes_out 3130113 165740 bytes_in 35198475 165740 station_ip 83.123.183.18 165740 port 761 165740 unique_id port 165740 remote_ip 10.8.0.206 165742 username hashtadani4 165742 mac 165742 bytes_out 0 165742 bytes_in 0 165742 station_ip 5.202.28.134 165742 port 767 165742 unique_id port 165742 remote_ip 10.8.0.182 165751 username rezaei 165751 kill_reason Another user logged on this global unique id 165751 mac 165751 bytes_out 0 165751 bytes_in 0 165751 station_ip 5.119.14.25 165751 port 759 165751 unique_id port 165760 username barzegar 165760 mac 165760 bytes_out 0 165760 bytes_in 0 165760 station_ip 5.120.50.228 165760 port 385 165760 unique_id port 165760 remote_ip 10.8.1.174 165764 username mohammadjavad 165764 mac 165764 bytes_out 0 165764 bytes_in 0 165764 station_ip 37.129.9.255 165764 port 771 165764 unique_id port 165764 remote_ip 10.8.0.142 165767 username hashtadani4 165767 mac 165767 bytes_out 0 165767 bytes_in 0 165767 station_ip 5.202.28.134 165767 port 772 165767 unique_id port 165767 remote_ip 10.8.0.182 165772 username tahmasebi 165772 mac 165772 bytes_out 1117990 165772 bytes_in 12158375 165772 station_ip 5.119.109.36 165772 port 761 165772 unique_id port 165772 remote_ip 10.8.0.42 165773 username mosi 165773 mac 165773 bytes_out 1630 165773 bytes_in 3951 165773 station_ip 5.134.153.45 165773 port 772 165773 unique_id port 165773 remote_ip 10.8.0.138 165777 username tahmasebi 165777 mac 165777 bytes_out 0 165777 bytes_in 0 165777 station_ip 5.119.109.36 165777 port 773 165777 unique_id port 165777 remote_ip 10.8.0.42 165778 username barzegar 165778 mac 165778 bytes_out 0 165778 bytes_in 0 165778 station_ip 5.120.50.228 165778 port 385 165778 unique_id port 165778 remote_ip 10.8.1.174 165779 username hashtadani4 165779 mac 165779 bytes_out 0 165779 bytes_in 0 165779 station_ip 5.202.28.134 165779 port 761 165779 unique_id port 165779 remote_ip 10.8.0.182 165780 username laleh 165780 mac 165780 bytes_out 0 165780 bytes_in 0 165780 station_ip 46.225.210.90 165780 port 771 165780 unique_id port 165782 username meysam 165782 mac 165782 bytes_out 0 165782 bytes_in 0 165782 station_ip 188.158.51.36 165782 port 772 165782 unique_id port 165782 remote_ip 10.8.0.110 165783 username kordestani 165783 mac 165783 bytes_out 0 165783 bytes_in 0 165783 station_ip 151.235.87.93 165783 port 731 165783 unique_id port 165783 remote_ip 10.8.0.74 165784 username hashtadani4 165784 mac 165784 bytes_out 0 165784 bytes_in 0 165784 station_ip 5.202.28.134 165784 port 731 165784 unique_id port 165784 remote_ip 10.8.0.182 165735 station_ip 37.129.98.246 165735 port 731 165735 unique_id port 165735 remote_ip 10.8.0.46 165741 username tahmasebi 165741 mac 165741 bytes_out 685868 165741 bytes_in 9379686 165741 station_ip 5.119.109.36 165741 port 767 165741 unique_id port 165741 remote_ip 10.8.0.42 165744 username meysam 165744 kill_reason Another user logged on this global unique id 165744 mac 165744 bytes_out 0 165744 bytes_in 0 165744 station_ip 188.158.51.36 165744 port 771 165744 unique_id port 165747 username shadkam 165747 mac 165747 bytes_out 96431 165747 bytes_in 1067349 165747 station_ip 37.129.76.100 165747 port 385 165747 unique_id port 165747 remote_ip 10.8.1.218 165748 username alirezazadeh 165748 unique_id port 165748 terminate_cause Lost-Carrier 165748 bytes_out 22255046 165748 bytes_in 611854755 165748 station_ip 5.119.95.139 165748 port 15728707 165748 nas_port_type Virtual 165748 remote_ip 5.5.5.202 165753 username barzegar 165753 mac 165753 bytes_out 0 165753 bytes_in 0 165753 station_ip 5.120.50.228 165753 port 391 165753 unique_id port 165753 remote_ip 10.8.1.174 165755 username barzegar 165755 mac 165755 bytes_out 5630 165755 bytes_in 8099 165755 station_ip 5.120.50.228 165755 port 391 165755 unique_id port 165755 remote_ip 10.8.1.174 165757 username barzegar 165757 mac 165757 bytes_out 0 165757 bytes_in 0 165757 station_ip 5.120.50.228 165757 port 385 165757 unique_id port 165757 remote_ip 10.8.1.174 165758 username tahmasebi 165758 mac 165758 bytes_out 2547616 165758 bytes_in 32189608 165758 station_ip 5.119.109.36 165758 port 761 165758 unique_id port 165758 remote_ip 10.8.0.42 165761 username moradi 165761 mac 165761 bytes_out 0 165761 bytes_in 0 165761 station_ip 46.225.210.90 165761 port 772 165761 unique_id port 165761 remote_ip 10.8.0.126 165763 username godarzi 165763 mac 165763 bytes_out 270658 165763 bytes_in 1176259 165763 station_ip 5.119.252.80 165763 port 773 165763 unique_id port 165763 remote_ip 10.8.0.174 165765 username laleh 165765 mac 165765 bytes_out 0 165765 bytes_in 0 165765 station_ip 46.225.210.90 165765 port 773 165765 unique_id port 165765 remote_ip 10.8.0.214 165768 username laleh 165768 kill_reason Another user logged on this global unique id 165768 mac 165768 bytes_out 0 165768 bytes_in 0 165768 station_ip 46.225.210.90 165768 port 771 165768 unique_id port 165768 remote_ip 10.8.0.214 165771 username pourshad 165771 kill_reason Another user logged on this global unique id 165771 mac 165771 bytes_out 0 165771 bytes_in 0 165771 station_ip 5.120.82.40 165771 port 768 165771 unique_id port 165775 username yaghobi 165775 mac 165775 bytes_out 97282 165775 bytes_in 265933 165775 station_ip 83.122.55.185 165775 port 761 165775 unique_id port 165775 remote_ip 10.8.0.198 165785 username yarmohamadi 165785 mac 165785 bytes_out 0 165785 bytes_in 0 165785 station_ip 5.119.223.156 165785 port 770 165785 unique_id port 165786 username tahmasebi 165786 mac 165786 bytes_out 0 165786 bytes_in 0 165786 station_ip 5.119.109.36 165786 port 769 165786 unique_id port 165786 remote_ip 10.8.0.42 165788 username pourshad 165788 kill_reason Another user logged on this global unique id 165788 mac 165788 bytes_out 0 165788 bytes_in 0 165788 station_ip 5.120.82.40 165788 port 768 165788 unique_id port 165791 username barzegar 165791 mac 165791 bytes_out 0 165791 bytes_in 0 165791 station_ip 5.120.50.228 165791 port 772 165791 unique_id port 165791 remote_ip 10.8.0.234 165796 username tahmasebi 165796 mac 165743 bytes_out 0 165743 bytes_in 0 165743 station_ip 5.120.22.52 165743 port 768 165743 unique_id port 165743 remote_ip 10.8.0.58 165745 username meysam 165745 mac 165745 bytes_out 0 165745 bytes_in 0 165745 station_ip 188.158.51.36 165745 port 771 165745 unique_id port 165746 username barzegar 165746 mac 165746 bytes_out 2781637 165746 bytes_in 720562 165746 station_ip 5.120.50.228 165746 port 385 165746 unique_id port 165746 remote_ip 10.8.1.174 165749 username yarmohamadi 165749 kill_reason Another user logged on this global unique id 165749 mac 165749 bytes_out 0 165749 bytes_in 0 165749 station_ip 5.119.223.156 165749 port 770 165749 unique_id port 165749 remote_ip 10.8.0.150 165750 username barzegar 165750 mac 165750 bytes_out 0 165750 bytes_in 0 165750 station_ip 5.120.50.228 165750 port 385 165750 unique_id port 165750 remote_ip 10.8.1.174 165752 username pourshad 165752 kill_reason Another user logged on this global unique id 165752 mac 165752 bytes_out 0 165752 bytes_in 0 165752 station_ip 5.120.82.40 165752 port 768 165752 unique_id port 165752 remote_ip 10.8.0.18 165754 username shadkam 165754 mac 165754 bytes_out 670390 165754 bytes_in 8484404 165754 station_ip 83.123.58.98 165754 port 385 165754 unique_id port 165754 remote_ip 10.8.1.218 165756 username hashtadani4 165756 mac 165756 bytes_out 0 165756 bytes_in 0 165756 station_ip 5.202.28.134 165756 port 771 165756 unique_id port 165756 remote_ip 10.8.0.182 165759 username hashtadani4 165759 mac 165759 bytes_out 0 165759 bytes_in 0 165759 station_ip 5.202.28.134 165759 port 774 165759 unique_id port 165759 remote_ip 10.8.0.182 165762 username pourshad 165762 kill_reason Another user logged on this global unique id 165762 mac 165762 bytes_out 0 165762 bytes_in 0 165762 station_ip 5.120.82.40 165762 port 768 165762 unique_id port 165766 username hashtadani4 165766 mac 165766 bytes_out 0 165766 bytes_in 0 165766 station_ip 5.202.28.134 165766 port 772 165766 unique_id port 165766 remote_ip 10.8.0.182 165769 username barzegar 165769 mac 165769 bytes_out 0 165769 bytes_in 0 165769 station_ip 5.120.50.228 165769 port 385 165769 unique_id port 165769 remote_ip 10.8.1.174 165770 username shadkam 165770 mac 165770 bytes_out 0 165770 bytes_in 0 165770 station_ip 37.129.142.192 165770 port 385 165770 unique_id port 165770 remote_ip 10.8.1.218 165774 username barzegar 165774 mac 165774 bytes_out 2583 165774 bytes_in 5063 165774 station_ip 5.120.50.228 165774 port 385 165774 unique_id port 165774 remote_ip 10.8.1.174 165776 username alipour 165776 mac 165776 bytes_out 398898 165776 bytes_in 2007015 165776 station_ip 113.203.80.55 165776 port 769 165776 unique_id port 165776 remote_ip 10.8.0.102 165781 username yaghobi 165781 mac 165781 bytes_out 0 165781 bytes_in 0 165781 station_ip 83.123.9.196 165781 port 769 165781 unique_id port 165781 remote_ip 10.8.0.198 165792 username tahmasebi 165792 mac 165792 bytes_out 0 165792 bytes_in 0 165792 station_ip 5.119.109.36 165792 port 391 165792 unique_id port 165792 remote_ip 10.8.1.90 165794 username tahmasebi 165794 mac 165794 bytes_out 0 165794 bytes_in 0 165794 station_ip 5.119.109.36 165794 port 391 165794 unique_id port 165794 remote_ip 10.8.1.90 165799 username vanila 165799 mac 165799 bytes_out 0 165799 bytes_in 0 165799 station_ip 37.129.76.127 165799 port 731 165799 unique_id port 165799 remote_ip 10.8.0.178 165802 username tahmasebi 165802 mac 165787 username yaghobi 165787 mac 165787 bytes_out 0 165787 bytes_in 0 165787 station_ip 83.123.9.196 165787 port 771 165787 unique_id port 165787 remote_ip 10.8.0.198 165789 username yaghobi 165789 mac 165789 bytes_out 0 165789 bytes_in 0 165789 station_ip 83.122.16.63 165789 port 769 165789 unique_id port 165789 remote_ip 10.8.0.198 165790 username tahmasebi 165790 mac 165790 bytes_out 0 165790 bytes_in 0 165790 station_ip 5.119.109.36 165790 port 385 165790 unique_id port 165790 remote_ip 10.8.1.90 165793 username rezaei 165793 kill_reason Another user logged on this global unique id 165793 mac 165793 bytes_out 0 165793 bytes_in 0 165793 station_ip 5.119.14.25 165793 port 759 165793 unique_id port 165795 username barzegar 165795 mac 165795 bytes_out 0 165795 bytes_in 0 165795 station_ip 5.120.50.228 165795 port 385 165795 unique_id port 165795 remote_ip 10.8.1.174 165800 username hashtadani4 165800 mac 165800 bytes_out 0 165800 bytes_in 0 165800 station_ip 5.202.28.134 165800 port 769 165800 unique_id port 165800 remote_ip 10.8.0.182 165801 username alipour 165801 mac 165801 bytes_out 109902 165801 bytes_in 593080 165801 station_ip 113.203.80.55 165801 port 761 165801 unique_id port 165801 remote_ip 10.8.0.102 165812 username meysam 165812 kill_reason Another user logged on this global unique id 165812 mac 165812 bytes_out 0 165812 bytes_in 0 165812 station_ip 188.158.51.157 165812 port 731 165812 unique_id port 165812 remote_ip 10.8.0.110 165819 username tahmasebi 165819 mac 165819 bytes_out 0 165819 bytes_in 0 165819 station_ip 5.119.109.36 165819 port 731 165819 unique_id port 165819 remote_ip 10.8.0.42 165825 username tahmasebi 165825 mac 165825 bytes_out 0 165825 bytes_in 0 165825 station_ip 5.119.109.36 165825 port 731 165825 unique_id port 165825 remote_ip 10.8.0.42 165826 username hashtadani4 165826 kill_reason Another user logged on this global unique id 165826 mac 165826 bytes_out 0 165826 bytes_in 0 165826 station_ip 5.202.28.134 165826 port 769 165826 unique_id port 165826 remote_ip 10.8.0.182 165833 username alikomsari 165833 mac 165833 bytes_out 0 165833 bytes_in 0 165833 station_ip 5.120.69.85 165833 port 774 165833 unique_id port 165833 remote_ip 10.8.0.26 165836 username hashtadani4 165836 kill_reason Another user logged on this global unique id 165836 mac 165836 bytes_out 0 165836 bytes_in 0 165836 station_ip 5.202.28.134 165836 port 769 165836 unique_id port 165837 username khalili 165837 kill_reason Another user logged on this global unique id 165837 mac 165837 bytes_out 0 165837 bytes_in 0 165837 station_ip 5.119.37.112 165837 port 745 165837 unique_id port 165839 username tahmasebi 165839 mac 165839 bytes_out 0 165839 bytes_in 0 165839 station_ip 5.119.109.36 165839 port 770 165839 unique_id port 165839 remote_ip 10.8.0.42 165845 username jafari 165845 kill_reason Another user logged on this global unique id 165845 mac 165845 bytes_out 0 165845 bytes_in 0 165845 station_ip 37.137.18.243 165845 port 772 165845 unique_id port 165845 remote_ip 10.8.0.242 165849 username moradi 165849 mac 165849 bytes_out 7350 165849 bytes_in 16027 165849 station_ip 37.129.44.112 165849 port 773 165849 unique_id port 165849 remote_ip 10.8.0.126 165857 username alikomsari 165857 kill_reason Another user logged on this global unique id 165857 mac 165857 bytes_out 0 165857 bytes_in 0 165857 station_ip 5.120.69.85 165857 port 770 165857 unique_id port 165857 remote_ip 10.8.0.26 165858 username jafari 165858 kill_reason Another user logged on this global unique id 165796 bytes_out 0 165796 bytes_in 0 165796 station_ip 5.119.109.36 165796 port 385 165796 unique_id port 165796 remote_ip 10.8.1.90 165797 username hashtadani4 165797 mac 165797 bytes_out 0 165797 bytes_in 0 165797 station_ip 5.202.28.134 165797 port 772 165797 unique_id port 165797 remote_ip 10.8.0.182 165798 username meysam 165798 mac 165798 bytes_out 0 165798 bytes_in 0 165798 station_ip 188.158.51.157 165798 port 769 165798 unique_id port 165798 remote_ip 10.8.0.110 165804 username barzegar 165804 mac 165804 bytes_out 0 165804 bytes_in 0 165804 station_ip 5.120.50.228 165804 port 391 165804 unique_id port 165804 remote_ip 10.8.1.174 165807 username hashtadani4 165807 mac 165807 bytes_out 0 165807 bytes_in 0 165807 station_ip 5.202.28.134 165807 port 774 165807 unique_id port 165807 remote_ip 10.8.0.182 165808 username moradi 165808 mac 165808 bytes_out 13945 165808 bytes_in 20067 165808 station_ip 5.202.24.12 165808 port 773 165808 unique_id port 165808 remote_ip 10.8.0.126 165814 username hashtadani4 165814 mac 165814 bytes_out 0 165814 bytes_in 0 165814 station_ip 5.202.28.134 165814 port 761 165814 unique_id port 165814 remote_ip 10.8.0.182 165816 username pourshad 165816 mac 165816 bytes_out 0 165816 bytes_in 0 165816 station_ip 5.120.82.40 165816 port 768 165816 unique_id port 165820 username hashtadani4 165820 mac 165820 bytes_out 0 165820 bytes_in 0 165820 station_ip 5.202.28.134 165820 port 771 165820 unique_id port 165820 remote_ip 10.8.0.182 165822 username barzegar 165822 mac 165822 bytes_out 0 165822 bytes_in 0 165822 station_ip 5.120.50.228 165822 port 731 165822 unique_id port 165822 remote_ip 10.8.0.234 165823 username alipour 165823 mac 165823 bytes_out 0 165823 bytes_in 0 165823 station_ip 113.203.80.55 165823 port 385 165823 unique_id port 165823 remote_ip 10.8.1.50 165824 username tahmasebi 165824 mac 165824 bytes_out 0 165824 bytes_in 0 165824 station_ip 5.119.109.36 165824 port 731 165824 unique_id port 165824 remote_ip 10.8.0.42 165828 username mahdiyehalizadeh 165828 mac 165828 bytes_out 2395952 165828 bytes_in 30602343 165828 station_ip 5.119.202.136 165828 port 772 165828 unique_id port 165828 remote_ip 10.8.0.82 165830 username moradi 165830 mac 165830 bytes_out 457683 165830 bytes_in 5516197 165830 station_ip 37.129.44.112 165830 port 768 165830 unique_id port 165830 remote_ip 10.8.0.126 165834 username kordestani 165834 mac 165834 bytes_out 2703448 165834 bytes_in 33390681 165834 station_ip 151.235.87.93 165834 port 770 165834 unique_id port 165834 remote_ip 10.8.0.74 165840 username hashtadani4 165840 mac 165840 bytes_out 0 165840 bytes_in 0 165840 station_ip 5.202.60.154 165840 port 772 165840 unique_id port 165840 remote_ip 10.8.0.182 165841 username hamid 165841 kill_reason Another user logged on this global unique id 165841 mac 165841 bytes_out 0 165841 bytes_in 0 165841 station_ip 37.129.184.37 165841 port 771 165841 unique_id port 165841 remote_ip 10.8.0.162 165844 username barzegar 165844 mac 165844 bytes_out 0 165844 bytes_in 0 165844 station_ip 5.120.50.228 165844 port 385 165844 unique_id port 165844 remote_ip 10.8.1.174 165847 username hashtadani4 165847 mac 165847 bytes_out 67444 165847 bytes_in 190891 165847 station_ip 37.129.75.171 165847 port 770 165847 unique_id port 165847 remote_ip 10.8.0.182 165848 username nekheei 165848 mac 165848 bytes_out 0 165848 bytes_in 0 165802 bytes_out 3007 165802 bytes_in 5495 165802 station_ip 5.119.109.36 165802 port 385 165802 unique_id port 165802 remote_ip 10.8.1.90 165803 username tahmasebi 165803 mac 165803 bytes_out 0 165803 bytes_in 0 165803 station_ip 5.119.109.36 165803 port 385 165803 unique_id port 165803 remote_ip 10.8.1.90 165805 username hashtadani4 165805 mac 165805 bytes_out 8670 165805 bytes_in 9413 165805 station_ip 5.202.28.134 165805 port 769 165805 unique_id port 165805 remote_ip 10.8.0.182 165806 username tahmasebi 165806 mac 165806 bytes_out 5600 165806 bytes_in 7814 165806 station_ip 5.119.109.36 165806 port 391 165806 unique_id port 165806 remote_ip 10.8.1.90 165809 username godarzi 165809 mac 165809 bytes_out 251827 165809 bytes_in 2532081 165809 station_ip 5.119.252.80 165809 port 769 165809 unique_id port 165809 remote_ip 10.8.0.174 165810 username barzegar 165810 mac 165810 bytes_out 0 165810 bytes_in 0 165810 station_ip 5.120.50.228 165810 port 769 165810 unique_id port 165810 remote_ip 10.8.0.234 165811 username vanila 165811 mac 165811 bytes_out 1763334 165811 bytes_in 1113331 165811 station_ip 37.129.76.127 165811 port 761 165811 unique_id port 165811 remote_ip 10.8.0.178 165813 username yaghobi 165813 mac 165813 bytes_out 410940 165813 bytes_in 393494 165813 station_ip 37.129.25.93 165813 port 771 165813 unique_id port 165813 remote_ip 10.8.0.198 165815 username hashtadani4 165815 mac 165815 bytes_out 0 165815 bytes_in 0 165815 station_ip 5.202.28.134 165815 port 761 165815 unique_id port 165815 remote_ip 10.8.0.182 165817 username meysam 165817 mac 165817 bytes_out 0 165817 bytes_in 0 165817 station_ip 188.158.51.157 165817 port 731 165817 unique_id port 165818 username tahmasebi 165818 mac 165818 bytes_out 0 165818 bytes_in 0 165818 station_ip 5.119.109.36 165818 port 391 165818 unique_id port 165818 remote_ip 10.8.1.90 165821 username aminvpn 165821 mac 165821 bytes_out 0 165821 bytes_in 0 165821 station_ip 83.122.219.122 165821 port 769 165821 unique_id port 165821 remote_ip 10.8.0.14 165827 username yaghobi 165827 mac 165827 bytes_out 1471798 165827 bytes_in 13826114 165827 station_ip 37.129.25.93 165827 port 761 165827 unique_id port 165827 remote_ip 10.8.0.198 165829 username godarzi 165829 mac 165829 bytes_out 178869 165829 bytes_in 265873 165829 station_ip 5.119.252.80 165829 port 771 165829 unique_id port 165829 remote_ip 10.8.0.174 165831 username barzegar 165831 mac 165831 bytes_out 0 165831 bytes_in 0 165831 station_ip 5.120.50.228 165831 port 731 165831 unique_id port 165831 remote_ip 10.8.0.234 165832 username alipour 165832 mac 165832 bytes_out 0 165832 bytes_in 0 165832 station_ip 113.203.80.55 165832 port 385 165832 unique_id port 165832 remote_ip 10.8.1.50 165835 username tahmasebi 165835 mac 165835 bytes_out 0 165835 bytes_in 0 165835 station_ip 5.119.109.36 165835 port 771 165835 unique_id port 165835 remote_ip 10.8.0.42 165838 username hashtadani4 165838 mac 165838 bytes_out 0 165838 bytes_in 0 165838 station_ip 5.202.28.134 165838 port 769 165838 unique_id port 165842 username rezaei 165842 kill_reason Another user logged on this global unique id 165842 mac 165842 bytes_out 0 165842 bytes_in 0 165842 station_ip 5.119.14.25 165842 port 759 165842 unique_id port 165843 username moradi 165843 mac 165843 bytes_out 73466 165843 bytes_in 244411 165843 station_ip 92.119.68.32 165843 port 761 165843 unique_id port 165843 remote_ip 10.8.0.126 165846 username tahmasebi 165846 mac 165846 bytes_out 0 165846 bytes_in 0 165846 station_ip 5.119.109.36 165846 port 761 165846 unique_id port 165846 remote_ip 10.8.0.42 165852 username ahmadi1 165852 mac 165852 bytes_out 0 165852 bytes_in 0 165852 station_ip 83.123.97.144 165852 port 774 165852 unique_id port 165852 remote_ip 10.8.0.250 165854 username barzegar 165854 mac 165854 bytes_out 0 165854 bytes_in 0 165854 station_ip 5.120.50.228 165854 port 774 165854 unique_id port 165854 remote_ip 10.8.0.234 165855 username hashtadani4 165855 mac 165855 bytes_out 0 165855 bytes_in 0 165855 station_ip 37.129.75.171 165855 port 775 165855 unique_id port 165855 remote_ip 10.8.0.182 165856 username moradi 165856 mac 165856 bytes_out 0 165856 bytes_in 0 165856 station_ip 5.202.24.12 165856 port 761 165856 unique_id port 165856 remote_ip 10.8.0.126 165861 username alikomsari 165861 kill_reason Another user logged on this global unique id 165861 mac 165861 bytes_out 0 165861 bytes_in 0 165861 station_ip 5.120.69.85 165861 port 770 165861 unique_id port 165864 username hamid 165864 kill_reason Another user logged on this global unique id 165864 mac 165864 bytes_out 0 165864 bytes_in 0 165864 station_ip 37.129.184.37 165864 port 771 165864 unique_id port 165866 username rezaei 165866 mac 165866 bytes_out 0 165866 bytes_in 0 165866 station_ip 5.119.14.25 165866 port 759 165866 unique_id port 165867 username moradi 165867 mac 165867 bytes_out 0 165867 bytes_in 0 165867 station_ip 37.129.44.112 165867 port 774 165867 unique_id port 165867 remote_ip 10.8.0.126 165873 username hashtadani4 165873 mac 165873 bytes_out 0 165873 bytes_in 0 165873 station_ip 37.129.75.171 165873 port 761 165873 unique_id port 165875 username hashtadani4 165875 mac 165875 bytes_out 0 165875 bytes_in 0 165875 station_ip 37.129.75.171 165875 port 761 165875 unique_id port 165875 remote_ip 10.8.0.182 165878 username tahmasebi 165878 mac 165878 bytes_out 0 165878 bytes_in 0 165878 station_ip 5.119.109.36 165878 port 775 165878 unique_id port 165878 remote_ip 10.8.0.42 165882 username hamid 165882 mac 165882 bytes_out 0 165882 bytes_in 0 165882 station_ip 37.129.184.37 165882 port 771 165882 unique_id port 165884 username houshang 165884 mac 165884 bytes_out 471410 165884 bytes_in 1066354 165884 station_ip 5.119.185.49 165884 port 761 165884 unique_id port 165884 remote_ip 10.8.0.134 165885 username shadkam 165885 mac 165885 bytes_out 0 165885 bytes_in 0 165885 station_ip 83.123.45.167 165885 port 391 165885 unique_id port 165885 remote_ip 10.8.1.218 165887 username hashtadani4 165887 kill_reason Maximum check online fails reached 165887 mac 165887 bytes_out 0 165887 bytes_in 0 165887 station_ip 37.129.75.171 165887 port 761 165887 unique_id port 165891 username mohammadmahdi 165891 mac 165891 bytes_out 0 165891 bytes_in 0 165891 station_ip 5.119.213.138 165891 port 773 165891 unique_id port 165899 username farhad2 165899 mac 165899 bytes_out 890019 165899 bytes_in 4398526 165899 station_ip 5.119.93.119 165899 port 773 165899 unique_id port 165899 remote_ip 10.8.0.190 165903 username mohammadjavad 165903 mac 165903 bytes_out 80814 165903 bytes_in 235804 165903 station_ip 113.203.57.249 165903 port 775 165903 unique_id port 165903 remote_ip 10.8.0.142 165904 username farhad2 165904 mac 165904 bytes_out 0 165904 bytes_in 0 165904 station_ip 5.119.93.119 165848 station_ip 46.225.210.90 165848 port 761 165848 unique_id port 165848 remote_ip 10.8.0.114 165850 username hamid 165850 kill_reason Another user logged on this global unique id 165850 mac 165850 bytes_out 0 165850 bytes_in 0 165850 station_ip 37.129.184.37 165850 port 771 165850 unique_id port 165851 username hashtadani4 165851 mac 165851 bytes_out 0 165851 bytes_in 0 165851 station_ip 37.129.75.171 165851 port 775 165851 unique_id port 165851 remote_ip 10.8.0.182 165853 username hashtadani4 165853 mac 165853 bytes_out 0 165853 bytes_in 0 165853 station_ip 37.129.75.171 165853 port 773 165853 unique_id port 165853 remote_ip 10.8.0.182 165860 username hosseine 165860 kill_reason Another user logged on this global unique id 165860 mac 165860 bytes_out 0 165860 bytes_in 0 165860 station_ip 83.122.216.61 165860 port 741 165860 unique_id port 165860 remote_ip 10.8.0.238 165862 username barzegar 165862 mac 165862 bytes_out 0 165862 bytes_in 0 165862 station_ip 5.120.50.228 165862 port 777 165862 unique_id port 165862 remote_ip 10.8.0.234 165863 username tahmasebi 165863 mac 165863 bytes_out 0 165863 bytes_in 0 165863 station_ip 5.119.109.36 165863 port 777 165863 unique_id port 165863 remote_ip 10.8.0.42 165868 username mohammadjavad 165868 mac 165868 bytes_out 0 165868 bytes_in 0 165868 station_ip 37.129.189.32 165868 port 775 165868 unique_id port 165868 remote_ip 10.8.0.142 165870 username barzegar 165870 mac 165870 bytes_out 12591 165870 bytes_in 14065 165870 station_ip 5.120.50.228 165870 port 391 165870 unique_id port 165870 remote_ip 10.8.1.174 165871 username barzegar 165871 mac 165871 bytes_out 0 165871 bytes_in 0 165871 station_ip 5.120.50.228 165871 port 391 165871 unique_id port 165871 remote_ip 10.8.1.174 165876 username malekpoir 165876 kill_reason Another user logged on this global unique id 165876 mac 165876 bytes_out 0 165876 bytes_in 0 165876 station_ip 5.120.22.52 165876 port 767 165876 unique_id port 165876 remote_ip 10.8.0.58 165877 username mohammadmahdi 165877 kill_reason Another user logged on this global unique id 165877 mac 165877 bytes_out 0 165877 bytes_in 0 165877 station_ip 5.119.213.138 165877 port 773 165877 unique_id port 165877 remote_ip 10.8.0.54 165881 username hashtadani4 165881 mac 165881 bytes_out 0 165881 bytes_in 0 165881 station_ip 37.129.75.171 165881 port 774 165881 unique_id port 165881 remote_ip 10.8.0.182 165883 username hashtadani4 165883 mac 165883 bytes_out 0 165883 bytes_in 0 165883 station_ip 37.129.75.171 165883 port 771 165883 unique_id port 165883 remote_ip 10.8.0.182 165886 username moradi 165886 mac 165886 bytes_out 59147 165886 bytes_in 73428 165886 station_ip 37.129.44.112 165886 port 759 165886 unique_id port 165886 remote_ip 10.8.0.126 165890 username barzegar 165890 mac 165890 bytes_out 0 165890 bytes_in 0 165890 station_ip 5.120.50.228 165890 port 759 165890 unique_id port 165890 remote_ip 10.8.0.234 165894 username tahmasebi 165894 mac 165894 bytes_out 0 165894 bytes_in 0 165894 station_ip 5.119.109.36 165894 port 770 165894 unique_id port 165894 remote_ip 10.8.0.42 165897 username hashtadani4 165897 kill_reason Maximum check online fails reached 165897 mac 165897 bytes_out 0 165897 bytes_in 0 165897 station_ip 37.129.10.245 165897 port 759 165897 unique_id port 165907 username sekonji3 165907 mac 165907 bytes_out 142206 165907 bytes_in 472044 165907 station_ip 83.123.222.86 165907 port 778 165907 unique_id port 165907 remote_ip 10.8.0.6 165858 mac 165858 bytes_out 0 165858 bytes_in 0 165858 station_ip 37.137.18.243 165858 port 772 165858 unique_id port 165859 username hashtadani4 165859 mac 165859 bytes_out 0 165859 bytes_in 0 165859 station_ip 37.129.75.171 165859 port 761 165859 unique_id port 165859 remote_ip 10.8.0.182 165865 username hashtadani4 165865 kill_reason Another user logged on this global unique id 165865 mac 165865 bytes_out 0 165865 bytes_in 0 165865 station_ip 37.129.75.171 165865 port 761 165865 unique_id port 165865 remote_ip 10.8.0.182 165869 username alikomsari 165869 mac 165869 bytes_out 0 165869 bytes_in 0 165869 station_ip 5.120.69.85 165869 port 770 165869 unique_id port 165872 username jafari 165872 kill_reason Another user logged on this global unique id 165872 mac 165872 bytes_out 0 165872 bytes_in 0 165872 station_ip 37.137.18.243 165872 port 772 165872 unique_id port 165874 username houshang 165874 mac 165874 bytes_out 756415 165874 bytes_in 6669673 165874 station_ip 5.119.185.49 165874 port 385 165874 unique_id port 165874 remote_ip 10.8.1.70 165879 username hashtadani4 165879 mac 165879 bytes_out 0 165879 bytes_in 0 165879 station_ip 37.129.75.171 165879 port 774 165879 unique_id port 165879 remote_ip 10.8.0.182 165880 username jafari 165880 mac 165880 bytes_out 0 165880 bytes_in 0 165880 station_ip 37.137.18.243 165880 port 772 165880 unique_id port 165888 username barzegar 165888 mac 165888 bytes_out 487076 165888 bytes_in 142697 165888 station_ip 5.120.50.228 165888 port 770 165888 unique_id port 165888 remote_ip 10.8.0.234 165889 username hashtadani4 165889 mac 165889 bytes_out 0 165889 bytes_in 0 165889 station_ip 37.129.75.171 165889 port 391 165889 unique_id port 165889 remote_ip 10.8.1.142 165892 username hashtadani4 165892 mac 165892 bytes_out 0 165892 bytes_in 0 165892 station_ip 37.129.75.171 165892 port 770 165892 unique_id port 165892 remote_ip 10.8.0.182 165893 username barzegar 165893 mac 165893 bytes_out 0 165893 bytes_in 0 165893 station_ip 5.120.50.228 165893 port 759 165893 unique_id port 165893 remote_ip 10.8.0.234 165895 username hashtadani4 165895 mac 165895 bytes_out 0 165895 bytes_in 0 165895 station_ip 37.129.10.245 165895 port 391 165895 unique_id port 165895 remote_ip 10.8.1.142 165896 username hashtadani4 165896 kill_reason Maximum check online fails reached 165896 mac 165896 bytes_out 0 165896 bytes_in 0 165896 station_ip 37.129.10.245 165896 port 774 165896 unique_id port 165898 username barzegar 165898 mac 165898 bytes_out 0 165898 bytes_in 0 165898 station_ip 5.120.50.228 165898 port 775 165898 unique_id port 165898 remote_ip 10.8.0.234 165900 username saeed9658 165900 mac 165900 bytes_out 1806829 165900 bytes_in 16494931 165900 station_ip 5.119.244.100 165900 port 385 165900 unique_id port 165900 remote_ip 10.8.1.210 165901 username nekheei 165963 unique_id port 165901 kill_reason Another user logged on this global unique id 165901 mac 165901 bytes_out 0 165901 bytes_in 0 165901 station_ip 5.119.128.45 165901 port 772 165901 unique_id port 165901 remote_ip 10.8.0.114 165902 username nekheei 165902 mac 165902 bytes_out 0 165902 bytes_in 0 165902 station_ip 5.119.128.45 165902 port 772 165902 unique_id port 165906 username farhad2 165906 mac 165906 bytes_out 178671 165906 bytes_in 945471 165906 station_ip 5.119.93.119 165906 port 392 165906 unique_id port 165906 remote_ip 10.8.1.222 165908 username shadkam 165908 mac 165908 bytes_out 286876 165904 port 385 165904 unique_id port 165904 remote_ip 10.8.1.222 165905 username hosseine 165905 mac 165905 bytes_out 0 165905 bytes_in 0 165905 station_ip 83.122.216.61 165905 port 741 165905 unique_id port 165910 username hashtadani4 165910 mac 165910 bytes_out 0 165910 bytes_in 0 165910 station_ip 37.129.10.245 165910 port 391 165910 unique_id port 165910 remote_ip 10.8.1.142 165919 username mosi 165919 mac 165919 bytes_out 653846 165919 bytes_in 3109807 165919 station_ip 151.235.96.72 165919 port 772 165919 unique_id port 165919 remote_ip 10.8.0.138 165923 username sekonji3 165923 mac 165923 bytes_out 0 165923 bytes_in 0 165923 station_ip 83.123.222.86 165923 port 769 165923 unique_id port 165923 remote_ip 10.8.0.6 165929 username hashtadani4 165929 mac 165929 bytes_out 0 165929 bytes_in 0 165929 station_ip 37.129.10.245 165929 port 773 165929 unique_id port 165929 remote_ip 10.8.0.182 165934 username tahmasebi 165934 mac 165934 bytes_out 1907963 165934 bytes_in 16345958 165934 station_ip 5.119.109.36 165934 port 741 165934 unique_id port 165934 remote_ip 10.8.0.42 165940 username rahim 165940 kill_reason Another user logged on this global unique id 165940 mac 165940 bytes_out 0 165940 bytes_in 0 165940 station_ip 5.119.211.178 165940 port 770 165940 unique_id port 165943 username shadkam 165943 mac 165943 bytes_out 0 165943 bytes_in 0 165943 station_ip 83.122.253.248 165943 port 391 165943 unique_id port 165943 remote_ip 10.8.1.218 165946 username barzegar 165946 mac 165946 bytes_out 0 165946 bytes_in 0 165946 station_ip 5.120.50.228 165946 port 731 165946 unique_id port 165946 remote_ip 10.8.0.234 165948 username rahim 165948 mac 165948 bytes_out 0 165948 bytes_in 0 165948 station_ip 5.119.211.178 165948 port 385 165948 unique_id port 165948 remote_ip 10.8.1.126 165949 username barzegar 165949 mac 165949 bytes_out 0 165949 bytes_in 0 165949 station_ip 5.120.50.228 165949 port 731 165949 unique_id port 165949 remote_ip 10.8.0.234 165954 username jafari 165954 kill_reason Another user logged on this global unique id 165954 mac 165954 bytes_out 0 165954 bytes_in 0 165954 station_ip 37.137.18.243 165954 port 773 165954 unique_id port 165956 username barzegar 165956 mac 165956 bytes_out 0 165956 bytes_in 0 165956 station_ip 5.120.50.228 165956 port 768 165956 unique_id port 165956 remote_ip 10.8.0.234 165960 username arash 165960 mac 165960 bytes_out 0 165960 bytes_in 0 165960 station_ip 37.27.21.105 165960 port 768 165960 unique_id port 165960 remote_ip 10.8.0.122 165962 username tahmasebi 165962 mac 165962 bytes_out 6904 165962 bytes_in 12033 165962 station_ip 5.119.109.36 165962 port 393 165962 unique_id port 165962 remote_ip 10.8.1.90 165963 username shadkam 165963 mac 165963 bytes_out 0 165963 bytes_in 0 165963 station_ip 83.123.86.147 165963 port 393 165963 remote_ip 10.8.1.218 165968 username kordestani 165968 mac 165968 bytes_out 0 165968 bytes_in 0 165968 station_ip 151.235.101.139 165968 port 741 165968 unique_id port 165968 remote_ip 10.8.0.74 165970 username hashtadani4 165970 kill_reason Another user logged on this global unique id 165970 mac 165970 bytes_out 0 165970 bytes_in 0 165970 station_ip 37.129.10.245 165970 port 769 165970 unique_id port 165983 username tahmasebi 165983 mac 165983 bytes_out 0 165983 bytes_in 0 165983 station_ip 5.119.109.36 165983 port 741 165983 unique_id port 165908 bytes_in 549509 165908 station_ip 83.122.154.4 165908 port 385 165908 unique_id port 165908 remote_ip 10.8.1.218 165912 username hashtadani4 165912 mac 165912 bytes_out 0 165912 bytes_in 0 165912 station_ip 37.129.10.245 165912 port 385 165912 unique_id port 165912 remote_ip 10.8.1.142 165913 username hashtadani4 165913 mac 165913 bytes_out 0 165913 bytes_in 0 165913 station_ip 37.129.10.245 165913 port 773 165913 unique_id port 165913 remote_ip 10.8.0.182 165915 username sekonji3 165915 mac 165915 bytes_out 0 165915 bytes_in 0 165915 station_ip 83.123.222.86 165915 port 775 165915 unique_id port 165915 remote_ip 10.8.0.6 165917 username tahmasebi 165917 mac 165917 bytes_out 0 165917 bytes_in 0 165917 station_ip 5.119.109.36 165917 port 770 165917 unique_id port 165917 remote_ip 10.8.0.42 165918 username khalili 165918 kill_reason Another user logged on this global unique id 165918 mac 165918 bytes_out 0 165918 bytes_in 0 165918 station_ip 5.119.37.112 165918 port 745 165918 unique_id port 165920 username godarzi 165920 mac 165920 bytes_out 1643271 165920 bytes_in 14354466 165920 station_ip 5.119.252.80 165920 port 769 165920 unique_id port 165920 remote_ip 10.8.0.174 165925 username sekonji3 165925 mac 165925 bytes_out 0 165925 bytes_in 0 165925 station_ip 83.123.222.86 165925 port 769 165925 unique_id port 165925 remote_ip 10.8.0.6 165926 username tahmasebi 165926 mac 165926 bytes_out 0 165926 bytes_in 0 165926 station_ip 5.119.109.36 165926 port 741 165926 unique_id port 165926 remote_ip 10.8.0.42 165927 username barzegar 165927 mac 165927 bytes_out 0 165927 bytes_in 0 165927 station_ip 5.120.50.228 165927 port 741 165927 unique_id port 165927 remote_ip 10.8.0.234 165928 username hashtadani4 165928 mac 165928 bytes_out 6624 165928 bytes_in 12429 165928 station_ip 37.129.10.245 165928 port 770 165928 unique_id port 165928 remote_ip 10.8.0.182 165931 username houshang 165931 mac 165931 bytes_out 957656 165931 bytes_in 8728465 165931 station_ip 5.119.185.49 165931 port 769 165931 unique_id port 165931 remote_ip 10.8.0.134 165932 username rezaei 165932 mac 165932 bytes_out 0 165932 bytes_in 0 165932 station_ip 5.119.14.25 165932 port 777 165932 unique_id port 165935 username barzegar 165935 mac 165935 bytes_out 0 165935 bytes_in 0 165935 station_ip 5.120.50.228 165935 port 385 165935 unique_id port 165935 remote_ip 10.8.1.174 165939 username hashtadani4 165939 kill_reason Maximum check online fails reached 165939 mac 165939 bytes_out 2669367 165939 bytes_in 35848564 165939 station_ip 37.129.10.245 165939 port 769 165939 unique_id port 165939 remote_ip 10.8.0.182 165942 username alipour 165942 mac 165942 bytes_out 775963 165942 bytes_in 6754387 165942 station_ip 113.203.80.55 165942 port 768 165942 unique_id port 165942 remote_ip 10.8.0.102 165944 username barzegar 165944 mac 165944 bytes_out 0 165944 bytes_in 0 165944 station_ip 5.120.50.228 165944 port 385 165944 unique_id port 165944 remote_ip 10.8.1.174 165945 username rahim 165945 mac 165945 bytes_out 0 165945 bytes_in 0 165945 station_ip 5.119.211.178 165945 port 770 165945 unique_id port 165947 username malekpoir 165947 mac 165947 bytes_out 0 165947 bytes_in 0 165947 station_ip 5.120.22.52 165947 port 767 165947 unique_id port 165950 username laleh 165950 mac 165950 bytes_out 0 165950 bytes_in 0 165950 station_ip 5.119.150.60 165950 port 775 165950 unique_id port 165909 username rezaei 165909 kill_reason Another user logged on this global unique id 165909 mac 165909 bytes_out 0 165909 bytes_in 0 165909 station_ip 5.119.14.25 165909 port 777 165909 unique_id port 165909 remote_ip 10.8.0.230 165911 username mahdiyehalizadeh 165911 mac 165911 bytes_out 2886315 165911 bytes_in 41051373 165911 station_ip 5.119.202.136 165911 port 731 165911 unique_id port 165911 remote_ip 10.8.0.82 165914 username sekonji3 165914 mac 165914 bytes_out 0 165914 bytes_in 0 165914 station_ip 83.123.222.86 165914 port 775 165914 unique_id port 165914 remote_ip 10.8.0.6 165916 username sekonji3 165916 mac 165916 bytes_out 0 165916 bytes_in 0 165916 station_ip 83.123.222.86 165916 port 775 165916 unique_id port 165916 remote_ip 10.8.0.6 165921 username barzegar 165921 kill_reason Another user logged on this global unique id 165921 mac 165921 bytes_out 0 165921 bytes_in 0 165921 station_ip 5.120.50.228 165921 port 741 165921 unique_id port 165921 remote_ip 10.8.0.234 165922 username hashtadani4 165922 mac 165922 bytes_out 4987 165922 bytes_in 7219 165922 station_ip 37.129.10.245 165922 port 773 165922 unique_id port 165922 remote_ip 10.8.0.182 165924 username barzegar 165924 mac 165924 bytes_out 0 165924 bytes_in 0 165924 station_ip 5.120.50.228 165924 port 741 165924 unique_id port 165930 username rahim 165930 kill_reason Another user logged on this global unique id 165930 mac 165930 bytes_out 0 165930 bytes_in 0 165930 station_ip 5.119.211.178 165930 port 770 165930 unique_id port 165930 remote_ip 10.8.0.50 165933 username shadkam 165933 mac 165933 bytes_out 0 165933 bytes_in 0 165933 station_ip 37.129.118.149 165933 port 385 165933 unique_id port 165933 remote_ip 10.8.1.218 165936 username jafari 165936 kill_reason Another user logged on this global unique id 165936 mac 165936 bytes_out 0 165936 bytes_in 0 165936 station_ip 37.137.18.243 165936 port 773 165936 unique_id port 165936 remote_ip 10.8.0.242 165937 username farhad2 165937 kill_reason Another user logged on this global unique id 165937 mac 165937 bytes_out 0 165937 bytes_in 0 165937 station_ip 5.120.17.222 165937 port 778 165937 unique_id port 165937 remote_ip 10.8.0.190 165938 username milan 165938 kill_reason Another user logged on this global unique id 165938 mac 165938 bytes_out 0 165938 bytes_in 0 165938 station_ip 5.120.91.29 165938 port 776 165938 unique_id port 165938 remote_ip 10.8.0.218 165941 username mahdiyehalizadeh 165941 mac 165941 bytes_out 1598756 165941 bytes_in 24126895 165941 station_ip 5.119.202.136 165941 port 731 165941 unique_id port 165941 remote_ip 10.8.0.82 165951 username rahim 165951 mac 165951 bytes_out 0 165951 bytes_in 0 165951 station_ip 5.119.211.178 165951 port 731 165951 unique_id port 165951 remote_ip 10.8.0.50 165952 username tahmasebi 165952 kill_reason Maximum check online fails reached 165952 mac 165952 bytes_out 0 165952 bytes_in 0 165952 station_ip 5.119.109.36 165952 port 385 165952 unique_id port 165953 username rahim 165953 mac 165953 bytes_out 0 165953 bytes_in 0 165953 station_ip 5.119.211.178 165953 port 391 165953 unique_id port 165953 remote_ip 10.8.1.126 165955 username farhad2 165955 kill_reason Another user logged on this global unique id 165955 mac 165955 bytes_out 0 165955 bytes_in 0 165955 station_ip 5.120.17.222 165955 port 778 165955 unique_id port 165958 username hashtadani4 165958 kill_reason Another user logged on this global unique id 165958 mac 165958 bytes_out 0 165958 bytes_in 0 165958 station_ip 37.129.10.245 165958 port 769 165958 unique_id port 165950 remote_ip 10.8.0.214 165957 username tahmasebi 165957 mac 165957 bytes_out 339794 165957 bytes_in 2275461 165957 station_ip 5.119.109.36 165957 port 731 165957 unique_id port 165957 remote_ip 10.8.0.42 165959 username milan 165959 kill_reason Another user logged on this global unique id 165959 mac 165959 bytes_out 0 165959 bytes_in 0 165959 station_ip 5.120.91.29 165959 port 776 165959 unique_id port 165964 username jafari 165964 kill_reason Another user logged on this global unique id 165964 mac 165964 bytes_out 0 165964 bytes_in 0 165964 station_ip 37.137.18.243 165964 port 773 165964 unique_id port 165973 username farhad2 165973 kill_reason Another user logged on this global unique id 165973 mac 165973 bytes_out 0 165973 bytes_in 0 165973 station_ip 5.120.17.222 165973 port 778 165973 unique_id port 165975 username tahmasebi 165975 mac 165975 bytes_out 0 165975 bytes_in 0 165975 station_ip 5.119.109.36 165975 port 741 165975 unique_id port 165975 remote_ip 10.8.0.42 165976 username rahim 165976 mac 165976 bytes_out 3018765 165976 bytes_in 34113960 165976 station_ip 5.119.211.178 165976 port 391 165976 unique_id port 165976 remote_ip 10.8.1.126 165978 username tahmasebi 165978 mac 165978 bytes_out 0 165978 bytes_in 0 165978 station_ip 5.119.109.36 165978 port 741 165978 unique_id port 165978 remote_ip 10.8.0.42 165982 username milan 165982 kill_reason Another user logged on this global unique id 165982 mac 165982 bytes_out 0 165982 bytes_in 0 165982 station_ip 5.120.91.29 165982 port 776 165982 unique_id port 165986 username barzegar 165986 mac 165986 bytes_out 0 165986 bytes_in 0 165986 station_ip 5.120.50.228 165986 port 391 165986 unique_id port 165986 remote_ip 10.8.1.174 165988 username tahmasebi 165988 mac 165988 bytes_out 0 165988 bytes_in 0 165988 station_ip 5.119.109.36 165988 port 741 165988 unique_id port 165988 remote_ip 10.8.0.42 165992 username tahmasebi 165992 mac 165992 bytes_out 0 165992 bytes_in 0 165992 station_ip 5.119.109.36 165992 port 741 165992 unique_id port 165992 remote_ip 10.8.0.42 165997 username hashtadani4 165997 mac 165997 bytes_out 0 165997 bytes_in 0 165997 station_ip 37.129.10.245 165997 port 767 165997 unique_id port 165997 remote_ip 10.8.0.182 165999 username hashtadani4 165999 mac 165999 bytes_out 0 165999 bytes_in 0 165999 station_ip 37.129.10.245 165999 port 767 165999 unique_id port 165999 remote_ip 10.8.0.182 166002 username farhad2 166002 kill_reason Another user logged on this global unique id 166002 mac 166002 bytes_out 0 166002 bytes_in 0 166002 station_ip 5.120.17.222 166002 port 778 166002 unique_id port 166005 username shadkam 166005 mac 166005 bytes_out 182081 166005 bytes_in 1079355 166005 station_ip 83.123.75.18 166005 port 393 166005 unique_id port 166005 remote_ip 10.8.1.218 166007 username hashtadani4 166007 mac 166007 bytes_out 0 166007 bytes_in 0 166007 station_ip 37.129.10.245 166007 port 767 166007 unique_id port 166007 remote_ip 10.8.0.182 166011 username moradi 166011 kill_reason Another user logged on this global unique id 166011 mac 166011 bytes_out 0 166011 bytes_in 0 166011 station_ip 46.225.210.90 166011 port 771 166011 unique_id port 166013 username laleh 166013 mac 166013 bytes_out 0 166013 bytes_in 0 166013 station_ip 5.120.169.75 166013 port 741 166013 unique_id port 166013 remote_ip 10.8.0.214 166020 username pourshad 166020 mac 166020 bytes_out 8423 166020 bytes_in 10895 166020 station_ip 5.119.81.48 166020 port 767 166020 unique_id port 165961 username laleh 165961 mac 165961 bytes_out 0 165961 bytes_in 0 165961 station_ip 5.120.181.29 165961 port 770 165961 unique_id port 165961 remote_ip 10.8.0.214 165965 username godarzi 165965 mac 165965 bytes_out 2562153 165965 bytes_in 25503314 165965 station_ip 5.119.252.80 165965 port 772 165965 unique_id port 165965 remote_ip 10.8.0.174 165966 username malekpoir 165966 mac 165966 bytes_out 0 165966 bytes_in 0 165966 station_ip 5.120.22.52 165966 port 767 165966 unique_id port 165966 remote_ip 10.8.0.58 165967 username tahmasebi 165967 mac 165967 bytes_out 0 165967 bytes_in 0 165967 station_ip 5.119.109.36 165967 port 393 165967 unique_id port 165967 remote_ip 10.8.1.90 165969 username milan 165969 kill_reason Another user logged on this global unique id 165969 mac 165969 bytes_out 0 165969 bytes_in 0 165969 station_ip 5.120.91.29 165969 port 776 165969 unique_id port 165971 username tahmasebi 165971 mac 165971 bytes_out 0 165971 bytes_in 0 165971 station_ip 5.119.109.36 165971 port 393 165971 unique_id port 165971 remote_ip 10.8.1.90 165972 username barzegar 165972 mac 165972 bytes_out 0 165972 bytes_in 0 165972 station_ip 5.120.50.228 165972 port 393 165972 unique_id port 165972 remote_ip 10.8.1.174 165974 username shadkam 165974 mac 165974 bytes_out 412390 165974 bytes_in 4893007 165974 station_ip 113.203.73.140 165974 port 393 165974 unique_id port 165974 remote_ip 10.8.1.218 165977 username tahmasebi 165977 mac 165977 bytes_out 14887 165977 bytes_in 27237 165977 station_ip 5.119.109.36 165977 port 741 165977 unique_id port 165977 remote_ip 10.8.0.42 165979 username hashtadani4 165979 kill_reason Another user logged on this global unique id 165979 mac 165979 bytes_out 0 165979 bytes_in 0 165979 station_ip 37.129.10.245 165979 port 769 165979 unique_id port 165980 username godarzi 165980 mac 165980 bytes_out 0 165980 bytes_in 0 165980 station_ip 5.119.252.80 165980 port 731 165980 unique_id port 165980 remote_ip 10.8.0.174 165981 username malekpoir 165981 mac 165981 bytes_out 0 165981 bytes_in 0 165981 station_ip 5.119.233.95 165981 port 768 165981 unique_id port 165981 remote_ip 10.8.0.58 165985 username vanila 165985 mac 165985 bytes_out 0 165985 bytes_in 0 165985 station_ip 83.123.222.205 165985 port 770 165985 unique_id port 165985 remote_ip 10.8.0.178 165991 username milan 165991 kill_reason Another user logged on this global unique id 165991 mac 165991 bytes_out 0 165991 bytes_in 0 165991 station_ip 5.120.91.29 165991 port 776 165991 unique_id port 165995 username hashtadani4 165995 mac 165995 bytes_out 0 165995 bytes_in 0 165995 station_ip 37.129.10.245 165995 port 767 165995 unique_id port 165995 remote_ip 10.8.0.182 165996 username hamid 165996 mac 165996 bytes_out 0 165996 bytes_in 0 165996 station_ip 37.129.184.37 165996 port 767 165996 unique_id port 165996 remote_ip 10.8.0.162 166001 username aminvpn 166001 mac 166001 bytes_out 0 166001 bytes_in 0 166001 station_ip 5.119.210.108 166001 port 769 166001 unique_id port 166001 remote_ip 10.8.0.14 166003 username hashtadani4 166003 mac 166003 bytes_out 0 166003 bytes_in 0 166003 station_ip 37.129.10.245 166003 port 767 166003 unique_id port 166003 remote_ip 10.8.0.182 166006 username moradi 166006 kill_reason Another user logged on this global unique id 166006 mac 166006 bytes_out 0 166006 bytes_in 0 166006 station_ip 46.225.210.90 166006 port 771 166006 unique_id port 166006 remote_ip 10.8.0.126 165983 remote_ip 10.8.0.42 165984 username jafari 165984 kill_reason Another user logged on this global unique id 165984 mac 165984 bytes_out 0 165984 bytes_in 0 165984 station_ip 37.137.18.243 165984 port 773 165984 unique_id port 165987 username mohammadjavad 165987 mac 165987 bytes_out 0 165987 bytes_in 0 165987 station_ip 83.123.40.91 165987 port 767 165987 unique_id port 165987 remote_ip 10.8.0.142 165989 username hashtadani4 165989 mac 165989 bytes_out 0 165989 bytes_in 0 165989 station_ip 37.129.10.245 165989 port 769 165989 unique_id port 165990 username tahmasebi 165990 mac 165990 bytes_out 0 165990 bytes_in 0 165990 station_ip 5.119.109.36 165990 port 741 165990 unique_id port 165990 remote_ip 10.8.0.42 165993 username alipour 165993 mac 165993 bytes_out 0 165993 bytes_in 0 165993 station_ip 113.203.80.55 165993 port 392 165993 unique_id port 165993 remote_ip 10.8.1.50 165994 username jafari 165994 mac 165994 bytes_out 0 165994 bytes_in 0 165994 station_ip 37.137.18.243 165994 port 773 165994 unique_id port 165998 username tahmasebi 165998 mac 165998 bytes_out 0 165998 bytes_in 0 165998 station_ip 5.119.109.36 165998 port 767 165998 unique_id port 165998 remote_ip 10.8.0.42 166000 username hamid 166000 mac 166000 bytes_out 0 166000 bytes_in 0 166000 station_ip 37.129.184.37 166000 port 768 166000 unique_id port 166000 remote_ip 10.8.0.162 166004 username vanila 166004 mac 166004 bytes_out 0 166004 bytes_in 0 166004 station_ip 83.123.222.205 166004 port 741 166004 unique_id port 166004 remote_ip 10.8.0.178 166008 username pourshad 166008 mac 166008 bytes_out 0 166008 bytes_in 0 166008 station_ip 5.119.81.48 166008 port 768 166008 unique_id port 166008 remote_ip 10.8.0.18 166009 username tahmasebi 166009 mac 166009 bytes_out 0 166009 bytes_in 0 166009 station_ip 5.119.109.36 166009 port 767 166009 unique_id port 166009 remote_ip 10.8.0.42 166010 username tahmasebi 166010 mac 166010 bytes_out 0 166010 bytes_in 0 166010 station_ip 5.119.109.36 166010 port 768 166010 unique_id port 166010 remote_ip 10.8.0.42 166014 username hashtadani4 166014 mac 166014 bytes_out 0 166014 bytes_in 0 166014 station_ip 37.129.10.245 166014 port 741 166014 unique_id port 166014 remote_ip 10.8.0.182 166015 username pourshad 166015 mac 166015 bytes_out 17098 166015 bytes_in 22932 166015 station_ip 5.119.81.48 166015 port 393 166015 unique_id port 166015 remote_ip 10.8.1.154 166019 username barzegar 166019 mac 166019 bytes_out 2432034 166019 bytes_in 38979492 166019 station_ip 5.120.50.228 166019 port 391 166019 unique_id port 166019 remote_ip 10.8.1.174 166022 username hashtadani4 166022 mac 166022 bytes_out 0 166022 bytes_in 0 166022 station_ip 37.129.10.245 166022 port 770 166022 unique_id port 166022 remote_ip 10.8.0.182 166024 username farhad2 166024 kill_reason Another user logged on this global unique id 166024 mac 166024 bytes_out 0 166024 bytes_in 0 166024 station_ip 5.120.17.222 166024 port 778 166024 unique_id port 166026 username mosi 166026 kill_reason Another user logged on this global unique id 166026 mac 166026 bytes_out 0 166026 bytes_in 0 166026 station_ip 151.235.96.72 166026 port 768 166026 unique_id port 166026 remote_ip 10.8.0.138 166027 username godarzi 166027 mac 166027 bytes_out 0 166027 bytes_in 0 166027 station_ip 5.119.252.80 166027 port 767 166027 unique_id port 166027 remote_ip 10.8.0.174 166028 username pourshad 166028 mac 166012 username pourshad 166012 mac 166012 bytes_out 0 166012 bytes_in 0 166012 station_ip 5.119.81.48 166012 port 767 166012 unique_id port 166012 remote_ip 10.8.0.18 166016 username milan 166016 kill_reason Another user logged on this global unique id 166016 mac 166016 bytes_out 0 166016 bytes_in 0 166016 station_ip 5.120.91.29 166016 port 776 166016 unique_id port 166017 username pourshad 166017 mac 166017 bytes_out 0 166017 bytes_in 0 166017 station_ip 5.119.81.48 166017 port 393 166017 unique_id port 166017 remote_ip 10.8.1.154 166018 username moradi 166018 kill_reason Another user logged on this global unique id 166018 mac 166018 bytes_out 0 166018 bytes_in 0 166018 station_ip 46.225.210.90 166018 port 771 166018 unique_id port 166021 username khalili 166021 kill_reason Another user logged on this global unique id 166021 mac 166021 bytes_out 0 166021 bytes_in 0 166021 station_ip 5.119.37.112 166021 port 745 166021 unique_id port 166032 username hashtadani4 166032 mac 166032 bytes_out 0 166032 bytes_in 0 166032 station_ip 37.129.10.245 166032 port 767 166032 unique_id port 166032 remote_ip 10.8.0.182 166033 username hashtadani4 166033 mac 166033 bytes_out 0 166033 bytes_in 0 166033 station_ip 37.129.10.245 166033 port 769 166033 unique_id port 166033 remote_ip 10.8.0.182 166034 username tahmasebi 166034 kill_reason Another user logged on this global unique id 166034 mac 166034 bytes_out 0 166034 bytes_in 0 166034 station_ip 5.119.109.36 166034 port 741 166034 unique_id port 166034 remote_ip 10.8.0.42 166037 username moradi 166037 kill_reason Another user logged on this global unique id 166037 mac 166037 bytes_out 0 166037 bytes_in 0 166037 station_ip 46.225.210.90 166037 port 771 166037 unique_id port 166039 username hashtadani4 166039 mac 166039 bytes_out 0 166039 bytes_in 0 166039 station_ip 37.129.10.245 166039 port 767 166039 unique_id port 166039 remote_ip 10.8.0.182 166041 username tahmasebi 166041 kill_reason Another user logged on this global unique id 166041 mac 166041 bytes_out 0 166041 bytes_in 0 166041 station_ip 5.119.109.36 166041 port 741 166041 unique_id port 166042 username tahmasebi 166042 mac 166042 bytes_out 0 166042 bytes_in 0 166042 station_ip 5.119.109.36 166042 port 741 166042 unique_id port 166045 username tahmasebi 166045 mac 166045 bytes_out 0 166045 bytes_in 0 166045 station_ip 5.119.109.36 166045 port 391 166045 unique_id port 166045 remote_ip 10.8.1.90 166048 username farhad2 166048 kill_reason Another user logged on this global unique id 166048 mac 166048 bytes_out 0 166048 bytes_in 0 166048 station_ip 5.120.17.222 166048 port 778 166048 unique_id port 166050 username vanila 166050 mac 166050 bytes_out 0 166050 bytes_in 0 166050 station_ip 83.123.222.205 166050 port 767 166050 unique_id port 166050 remote_ip 10.8.0.178 166052 username hashtadani4 166052 mac 166052 bytes_out 327859 166052 bytes_in 2593332 166052 station_ip 37.129.10.245 166052 port 391 166052 unique_id port 166052 remote_ip 10.8.1.142 166054 username tahmasebi 166054 mac 166054 bytes_out 0 166054 bytes_in 0 166054 station_ip 5.119.109.36 166054 port 769 166054 unique_id port 166054 remote_ip 10.8.0.42 166055 username tahmasebi 166055 mac 166055 bytes_out 0 166055 bytes_in 0 166055 station_ip 5.119.109.36 166055 port 769 166055 unique_id port 166055 remote_ip 10.8.0.42 166060 username tahmasebi 166060 mac 166060 bytes_out 0 166060 bytes_in 0 166060 station_ip 5.119.109.36 166060 port 391 166060 unique_id port 166020 remote_ip 10.8.0.18 166023 username milan 166023 kill_reason Another user logged on this global unique id 166023 mac 166023 bytes_out 0 166023 bytes_in 0 166023 station_ip 5.120.91.29 166023 port 776 166023 unique_id port 166025 username moradi 166025 kill_reason Another user logged on this global unique id 166025 mac 166025 bytes_out 0 166025 bytes_in 0 166025 station_ip 46.225.210.90 166025 port 771 166025 unique_id port 166030 username barzegar 166030 mac 166030 bytes_out 0 166030 bytes_in 0 166030 station_ip 5.120.50.228 166030 port 769 166030 unique_id port 166030 remote_ip 10.8.0.234 166035 username mohammadjavad 166035 mac 166035 bytes_out 421814 166035 bytes_in 10032936 166035 station_ip 37.129.208.223 166035 port 391 166035 unique_id port 166035 remote_ip 10.8.1.146 166038 username barzegar 166038 mac 166038 bytes_out 0 166038 bytes_in 0 166038 station_ip 5.120.50.228 166038 port 767 166038 unique_id port 166038 remote_ip 10.8.0.234 166047 username barzegar 166047 mac 166047 bytes_out 0 166047 bytes_in 0 166047 station_ip 5.120.50.228 166047 port 394 166047 unique_id port 166047 remote_ip 10.8.1.174 166051 username moradi 166051 mac 166051 bytes_out 0 166051 bytes_in 0 166051 station_ip 46.225.210.90 166051 port 771 166051 unique_id port 166053 username hashtadani4 166053 mac 166053 bytes_out 0 166053 bytes_in 0 166053 station_ip 37.129.10.245 166053 port 771 166053 unique_id port 166053 remote_ip 10.8.0.182 166058 username tahmasebi 166058 mac 166058 bytes_out 0 166058 bytes_in 0 166058 station_ip 5.119.109.36 166058 port 391 166058 unique_id port 166058 remote_ip 10.8.1.90 166062 username milan 166062 kill_reason Another user logged on this global unique id 166062 mac 166062 bytes_out 0 166062 bytes_in 0 166062 station_ip 5.120.91.29 166062 port 776 166062 unique_id port 166064 username hamid 166064 mac 166064 bytes_out 0 166064 bytes_in 0 166064 station_ip 37.129.184.37 166064 port 770 166064 unique_id port 166064 remote_ip 10.8.0.162 166068 username tahmasebi 166068 mac 166068 bytes_out 0 166068 bytes_in 0 166068 station_ip 5.119.109.36 166068 port 770 166068 unique_id port 166068 remote_ip 10.8.0.42 166076 username barzegar 166076 mac 166076 bytes_out 0 166076 bytes_in 0 166076 station_ip 5.120.50.228 166076 port 393 166076 unique_id port 166076 remote_ip 10.8.1.174 166081 username pourshad 166081 mac 166081 bytes_out 26151 166081 bytes_in 45967 166081 station_ip 5.119.81.48 166081 port 391 166081 unique_id port 166081 remote_ip 10.8.1.154 166083 username hashtadani4 166083 mac 166083 bytes_out 1071691 166083 bytes_in 11604933 166083 station_ip 37.129.10.245 166083 port 771 166083 unique_id port 166083 remote_ip 10.8.0.182 166084 username hashtadani4 166084 mac 166084 bytes_out 0 166084 bytes_in 0 166084 station_ip 37.129.10.245 166084 port 767 166084 unique_id port 166084 remote_ip 10.8.0.182 166086 username hashtadani4 166086 mac 166086 bytes_out 0 166086 bytes_in 0 166086 station_ip 37.129.10.245 166086 port 767 166086 unique_id port 166086 remote_ip 10.8.0.182 166087 username moradi 166087 kill_reason Another user logged on this global unique id 166087 mac 166087 bytes_out 0 166087 bytes_in 0 166087 station_ip 113.203.99.206 166087 port 741 166087 unique_id port 166087 remote_ip 10.8.0.126 166091 username khademi 166091 kill_reason Another user logged on this global unique id 166091 mac 166091 bytes_out 0 166091 bytes_in 0 166091 station_ip 37.129.42.119 166091 port 758 166028 bytes_out 0 166028 bytes_in 0 166028 station_ip 5.119.81.48 166028 port 770 166028 unique_id port 166028 remote_ip 10.8.0.18 166029 username hashtadani4 166029 mac 166029 bytes_out 0 166029 bytes_in 0 166029 station_ip 37.129.10.245 166029 port 767 166029 unique_id port 166029 remote_ip 10.8.0.182 166031 username milan 166031 kill_reason Another user logged on this global unique id 166031 mac 166031 bytes_out 0 166031 bytes_in 0 166031 station_ip 5.120.91.29 166031 port 776 166031 unique_id port 166036 username barzegar 166036 mac 166036 bytes_out 1486387 166036 bytes_in 378361 166036 station_ip 5.120.50.228 166036 port 767 166036 unique_id port 166036 remote_ip 10.8.0.234 166040 username barzegar 166040 mac 166040 bytes_out 0 166040 bytes_in 0 166040 station_ip 5.120.50.228 166040 port 391 166040 unique_id port 166040 remote_ip 10.8.1.174 166043 username milan 166043 kill_reason Another user logged on this global unique id 166043 mac 166043 bytes_out 0 166043 bytes_in 0 166043 station_ip 5.120.91.29 166043 port 776 166043 unique_id port 166044 username malekpoir 166044 mac 166044 bytes_out 0 166044 bytes_in 0 166044 station_ip 5.119.233.95 166044 port 731 166044 unique_id port 166044 remote_ip 10.8.0.58 166046 username hashtadani4 166046 mac 166046 bytes_out 0 166046 bytes_in 0 166046 station_ip 37.129.10.245 166046 port 731 166046 unique_id port 166046 remote_ip 10.8.0.182 166049 username milan 166049 kill_reason Another user logged on this global unique id 166049 mac 166049 bytes_out 0 166049 bytes_in 0 166049 station_ip 5.120.91.29 166049 port 776 166049 unique_id port 166056 username barzegar 166056 mac 166056 bytes_out 0 166056 bytes_in 0 166056 station_ip 5.120.50.228 166056 port 731 166056 unique_id port 166056 remote_ip 10.8.0.234 166057 username pourshad 166057 mac 166057 bytes_out 0 166057 bytes_in 0 166057 station_ip 5.119.81.48 166057 port 393 166057 unique_id port 166057 remote_ip 10.8.1.154 166059 username hashtadani4 166059 mac 166059 bytes_out 0 166059 bytes_in 0 166059 station_ip 37.129.10.245 166059 port 731 166059 unique_id port 166059 remote_ip 10.8.0.182 166061 username hashtadani4 166061 mac 166061 bytes_out 0 166061 bytes_in 0 166061 station_ip 37.129.10.245 166061 port 731 166061 unique_id port 166061 remote_ip 10.8.0.182 166063 username tahmasebi 166063 mac 166063 bytes_out 0 166063 bytes_in 0 166063 station_ip 5.119.109.36 166063 port 769 166063 unique_id port 166063 remote_ip 10.8.0.42 166066 username barzegar 166066 mac 166066 bytes_out 0 166066 bytes_in 0 166066 station_ip 5.120.50.228 166066 port 769 166066 unique_id port 166066 remote_ip 10.8.0.234 166067 username zare 166067 kill_reason Relative expiration date has reached 166067 mac 166067 bytes_out 0 166067 bytes_in 0 166067 station_ip 94.183.214.14 166067 port 769 166067 unique_id port 166069 username milan 166069 kill_reason Another user logged on this global unique id 166069 mac 166069 bytes_out 0 166069 bytes_in 0 166069 station_ip 5.120.91.29 166069 port 776 166069 unique_id port 166071 username moradi 166071 kill_reason Another user logged on this global unique id 166071 mac 166071 bytes_out 0 166071 bytes_in 0 166071 station_ip 37.129.31.44 166071 port 767 166071 unique_id port 166071 remote_ip 10.8.0.126 166073 username khademi 166073 kill_reason Another user logged on this global unique id 166073 mac 166073 bytes_out 0 166073 bytes_in 0 166073 station_ip 37.129.42.119 166073 port 758 166073 unique_id port 166060 remote_ip 10.8.1.90 166065 username aminvpn 166065 unique_id port 166065 terminate_cause Lost-Carrier 166065 bytes_out 2755049 166065 bytes_in 11516764 166065 station_ip 5.119.225.50 166065 port 15728716 166065 nas_port_type Virtual 166065 remote_ip 5.5.5.200 166070 username barzegar 166070 mac 166070 bytes_out 0 166070 bytes_in 0 166070 station_ip 5.120.50.228 166070 port 770 166070 unique_id port 166070 remote_ip 10.8.0.234 166072 username farhad2 166072 mac 166072 bytes_out 0 166072 bytes_in 0 166072 station_ip 5.120.17.222 166072 port 778 166072 unique_id port 166074 username kordestani 166074 mac 166074 bytes_out 0 166074 bytes_in 0 166074 station_ip 151.235.100.185 166074 port 741 166074 unique_id port 166074 remote_ip 10.8.0.74 166077 username khademi 166077 kill_reason Another user logged on this global unique id 166077 mac 166077 bytes_out 0 166077 bytes_in 0 166077 station_ip 37.129.42.119 166077 port 758 166077 unique_id port 166078 username vanila 166078 mac 166078 bytes_out 0 166078 bytes_in 0 166078 station_ip 83.123.222.205 166078 port 731 166078 unique_id port 166078 remote_ip 10.8.0.178 166079 username aminvpn 166079 mac 166079 bytes_out 210755 166079 bytes_in 415102 166079 station_ip 83.122.219.122 166079 port 770 166079 unique_id port 166079 remote_ip 10.8.0.14 166080 username hoorieh 166080 mac 166080 bytes_out 0 166080 bytes_in 0 166080 station_ip 5.120.48.218 166080 port 772 166080 unique_id port 166080 remote_ip 10.8.0.118 166089 username hashtadani4 166089 mac 166089 bytes_out 5872 166089 bytes_in 11395 166089 station_ip 37.129.10.245 166089 port 767 166089 unique_id port 166089 remote_ip 10.8.0.182 166092 username vanila 166092 mac 166092 bytes_out 1220716 166092 bytes_in 9709144 166092 station_ip 83.123.222.205 166092 port 767 166092 unique_id port 166092 remote_ip 10.8.0.178 166094 username sekonji3 166094 mac 166094 bytes_out 2883 166094 bytes_in 4933 166094 station_ip 113.203.82.139 166094 port 741 166094 unique_id port 166094 remote_ip 10.8.0.6 166097 username barzegar 166097 mac 166097 bytes_out 0 166097 bytes_in 0 166097 station_ip 5.120.50.228 166097 port 741 166097 unique_id port 166097 remote_ip 10.8.0.234 166100 username meysam 166100 mac 166100 bytes_out 655791 166100 bytes_in 11314477 166100 station_ip 188.158.51.154 166100 port 393 166100 unique_id port 166100 remote_ip 10.8.1.34 166106 username barzegar 166106 mac 166106 bytes_out 0 166106 bytes_in 0 166106 station_ip 5.120.50.228 166106 port 394 166106 unique_id port 166106 remote_ip 10.8.1.174 166108 username sekonji3 166108 mac 166108 bytes_out 0 166108 bytes_in 0 166108 station_ip 113.203.82.139 166108 port 393 166108 unique_id port 166108 remote_ip 10.8.1.238 166110 username pourshad 166110 mac 166110 bytes_out 0 166110 bytes_in 0 166110 station_ip 5.119.81.48 166110 port 391 166110 unique_id port 166110 remote_ip 10.8.1.154 166114 username sekonji3 166114 mac 166114 bytes_out 0 166114 bytes_in 0 166114 station_ip 113.203.82.139 166114 port 391 166114 unique_id port 166114 remote_ip 10.8.1.238 166125 username sekonji3 166125 mac 166125 bytes_out 0 166125 bytes_in 0 166125 station_ip 113.203.82.139 166125 port 392 166125 unique_id port 166125 remote_ip 10.8.1.238 166127 username alipour 166127 mac 166127 bytes_out 0 166127 bytes_in 0 166127 station_ip 113.203.80.55 166127 port 771 166127 unique_id port 166127 remote_ip 10.8.0.102 166075 username moradi 166075 kill_reason Another user logged on this global unique id 166075 mac 166075 bytes_out 0 166075 bytes_in 0 166075 station_ip 37.129.31.44 166075 port 767 166075 unique_id port 166082 username moradi 166082 mac 166082 bytes_out 0 166082 bytes_in 0 166082 station_ip 37.129.31.44 166082 port 767 166082 unique_id port 166085 username khademi 166085 kill_reason Another user logged on this global unique id 166085 mac 166085 bytes_out 0 166085 bytes_in 0 166085 station_ip 37.129.42.119 166085 port 758 166085 unique_id port 166088 username barzegar 166088 mac 166088 bytes_out 0 166088 bytes_in 0 166088 station_ip 5.120.50.228 166088 port 770 166088 unique_id port 166088 remote_ip 10.8.0.234 166090 username moradi 166090 mac 166090 bytes_out 0 166090 bytes_in 0 166090 station_ip 113.203.99.206 166090 port 741 166090 unique_id port 166098 username sekonji3 166098 mac 166098 bytes_out 0 166098 bytes_in 0 166098 station_ip 113.203.82.139 166098 port 741 166098 unique_id port 166098 remote_ip 10.8.0.6 166099 username sekonji3 166099 mac 166099 bytes_out 0 166099 bytes_in 0 166099 station_ip 113.203.82.139 166099 port 741 166099 unique_id port 166099 remote_ip 10.8.0.6 166101 username sekonji3 166101 mac 166101 bytes_out 0 166101 bytes_in 0 166101 station_ip 113.203.82.139 166101 port 772 166101 unique_id port 166101 remote_ip 10.8.0.6 166102 username sekonji3 166102 mac 166102 bytes_out 0 166102 bytes_in 0 166102 station_ip 113.203.82.139 166102 port 772 166102 unique_id port 166102 remote_ip 10.8.0.6 166103 username vanila 166103 mac 166103 bytes_out 0 166103 bytes_in 0 166103 station_ip 83.123.224.181 166103 port 767 166103 unique_id port 166103 remote_ip 10.8.0.178 166107 username sabaghnezhad 166107 mac 166107 bytes_out 0 166107 bytes_in 0 166107 station_ip 37.129.109.171 166107 port 741 166107 unique_id port 166107 remote_ip 10.8.0.186 166112 username sekonji3 166112 mac 166112 bytes_out 0 166112 bytes_in 0 166112 station_ip 113.203.82.139 166112 port 391 166112 unique_id port 166112 remote_ip 10.8.1.238 166116 username sekonji3 166116 mac 166116 bytes_out 0 166116 bytes_in 0 166116 station_ip 113.203.82.139 166116 port 391 166116 unique_id port 166116 remote_ip 10.8.1.238 166117 username sekonji3 166117 mac 166117 bytes_out 0 166117 bytes_in 0 166117 station_ip 113.203.82.139 166117 port 391 166117 unique_id port 166117 remote_ip 10.8.1.238 166119 username barzegar 166119 mac 166119 bytes_out 0 166119 bytes_in 0 166119 station_ip 5.120.50.228 166119 port 391 166119 unique_id port 166119 remote_ip 10.8.1.174 166120 username moradi 166120 mac 166120 bytes_out 1234354 166120 bytes_in 23758266 166120 station_ip 46.225.210.90 166120 port 771 166120 unique_id port 166120 remote_ip 10.8.0.126 166122 username sekonji3 166122 mac 166122 bytes_out 0 166122 bytes_in 0 166122 station_ip 113.203.82.139 166122 port 391 166122 unique_id port 166122 remote_ip 10.8.1.238 166126 username mostafa_es78 166126 unique_id port 166126 terminate_cause User-Request 166126 bytes_out 86557 166126 bytes_in 662282 166126 station_ip 83.123.89.148 166126 port 15728718 166126 nas_port_type Virtual 166126 remote_ip 5.5.5.196 166128 username mohammadjavad 166128 mac 166128 bytes_out 0 166128 bytes_in 0 166128 station_ip 37.129.250.139 166128 port 391 166128 unique_id port 166128 remote_ip 10.8.1.146 166136 username aminvpn 166136 mac 166136 bytes_out 1265354 166091 unique_id port 166093 username barzegar 166093 mac 166093 bytes_out 0 166093 bytes_in 0 166093 station_ip 5.120.50.228 166093 port 767 166093 unique_id port 166093 remote_ip 10.8.0.234 166095 username meysam 166095 mac 166095 bytes_out 1276618 166095 bytes_in 20408136 166095 station_ip 188.158.51.157 166095 port 772 166095 unique_id port 166095 remote_ip 10.8.0.110 166096 username sekonji3 166096 mac 166096 bytes_out 0 166096 bytes_in 0 166096 station_ip 113.203.82.139 166096 port 741 166096 unique_id port 166096 remote_ip 10.8.0.6 166104 username sekonji3 166104 mac 166104 bytes_out 0 166104 bytes_in 0 166104 station_ip 113.203.82.139 166104 port 393 166104 unique_id port 166104 remote_ip 10.8.1.238 166105 username sekonji3 166105 mac 166105 bytes_out 0 166105 bytes_in 0 166105 station_ip 113.203.82.139 166105 port 393 166105 unique_id port 166105 remote_ip 10.8.1.238 166109 username sekonji3 166109 mac 166109 bytes_out 0 166109 bytes_in 0 166109 station_ip 113.203.82.139 166109 port 393 166109 unique_id port 166109 remote_ip 10.8.1.238 166111 username sekonji3 166111 mac 166111 bytes_out 0 166111 bytes_in 0 166111 station_ip 113.203.82.139 166111 port 391 166111 unique_id port 166111 remote_ip 10.8.1.238 166113 username rajaei 166113 kill_reason Another user logged on this global unique id 166113 mac 166113 bytes_out 0 166113 bytes_in 0 166113 station_ip 5.62.209.102 166113 port 741 166113 unique_id port 166113 remote_ip 10.8.0.34 166115 username alipour 166115 mac 166115 bytes_out 1197232 166115 bytes_in 8608942 166115 station_ip 113.203.80.55 166115 port 392 166115 unique_id port 166115 remote_ip 10.8.1.50 166118 username hashtadani4 166118 kill_reason Another user logged on this global unique id 166118 mac 166118 bytes_out 0 166118 bytes_in 0 166118 station_ip 37.129.10.245 166118 port 770 166118 unique_id port 166118 remote_ip 10.8.0.182 166121 username sekonji3 166121 mac 166121 bytes_out 0 166121 bytes_in 0 166121 station_ip 113.203.82.139 166121 port 391 166121 unique_id port 166121 remote_ip 10.8.1.238 166123 username mostafa_es78 166123 unique_id port 166123 terminate_cause User-Request 166123 bytes_out 137507 166123 bytes_in 2684010 166123 station_ip 83.122.77.186 166123 port 15728717 166123 nas_port_type Virtual 166123 remote_ip 5.5.5.198 166124 username alipour 166124 mac 166124 bytes_out 0 166124 bytes_in 0 166124 station_ip 113.203.80.55 166124 port 392 166124 unique_id port 166124 remote_ip 10.8.1.50 166129 username sekonji3 166129 mac 166129 bytes_out 0 166129 bytes_in 0 166129 station_ip 113.203.82.139 166129 port 392 166129 unique_id port 166129 remote_ip 10.8.1.238 166130 username barzegar 166130 mac 166130 bytes_out 4146246 166130 bytes_in 4007988 166130 station_ip 5.120.50.228 166130 port 393 166130 unique_id port 166130 remote_ip 10.8.1.174 166133 username sedighe 166133 mac 166133 bytes_out 60573 166133 bytes_in 79303 166133 station_ip 83.122.58.94 166133 port 771 166133 unique_id port 166133 remote_ip 10.8.0.146 166134 username sekonji3 166134 mac 166134 bytes_out 0 166134 bytes_in 0 166134 station_ip 113.203.82.139 166134 port 392 166134 unique_id port 166134 remote_ip 10.8.1.238 166137 username kordestani 166137 mac 166137 bytes_out 2391174 166137 bytes_in 20242171 166137 station_ip 151.235.73.79 166137 port 767 166137 unique_id port 166137 remote_ip 10.8.0.74 166138 username moradi 166138 mac 166138 bytes_out 73724 166138 bytes_in 119153 166131 username rajaei 166131 kill_reason Another user logged on this global unique id 166131 mac 166131 bytes_out 0 166131 bytes_in 0 166131 station_ip 5.62.209.102 166131 port 741 166131 unique_id port 166132 username hashtadani4 166132 kill_reason Another user logged on this global unique id 166132 mac 166132 bytes_out 0 166132 bytes_in 0 166132 station_ip 37.129.10.245 166132 port 770 166132 unique_id port 166135 username barzegar 166135 mac 166135 bytes_out 0 166135 bytes_in 0 166135 station_ip 5.120.50.228 166135 port 777 166135 unique_id port 166135 remote_ip 10.8.0.234 166139 username moradi 166139 mac 166139 bytes_out 0 166139 bytes_in 0 166139 station_ip 37.44.59.74 166139 port 731 166139 unique_id port 166139 remote_ip 10.8.0.126 166143 username moradi 166143 mac 166143 bytes_out 0 166143 bytes_in 0 166143 station_ip 37.44.59.74 166143 port 777 166143 unique_id port 166143 remote_ip 10.8.0.126 166151 username moradi 166151 mac 166151 bytes_out 0 166151 bytes_in 0 166151 station_ip 113.203.122.18 166151 port 773 166151 unique_id port 166151 remote_ip 10.8.0.126 166152 username moradi 166152 mac 166152 bytes_out 0 166152 bytes_in 0 166152 station_ip 37.44.59.74 166152 port 770 166152 unique_id port 166152 remote_ip 10.8.0.126 166153 username barzegar 166153 mac 166153 bytes_out 206947 166153 bytes_in 2031557 166153 station_ip 5.120.50.228 166153 port 767 166153 unique_id port 166153 remote_ip 10.8.0.234 166160 username hashtadani4 166160 mac 166160 bytes_out 0 166160 bytes_in 0 166160 station_ip 37.129.10.245 166160 port 772 166160 unique_id port 166160 remote_ip 10.8.0.182 166161 username hashtadani4 166161 mac 166161 bytes_out 0 166161 bytes_in 0 166161 station_ip 37.129.10.245 166161 port 392 166161 unique_id port 166161 remote_ip 10.8.1.142 166164 username hosseine 166164 mac 166164 bytes_out 0 166164 bytes_in 0 166164 station_ip 83.122.68.157 166164 port 731 166164 unique_id port 166164 remote_ip 10.8.0.238 166167 username tahmasebi 166167 mac 166167 bytes_out 7923231 166167 bytes_in 37744610 166167 station_ip 5.119.109.36 166167 port 769 166167 unique_id port 166167 remote_ip 10.8.0.42 166169 username pourshad 166169 mac 166169 bytes_out 179996 166169 bytes_in 1944203 166169 station_ip 5.119.81.48 166169 port 391 166169 unique_id port 166169 remote_ip 10.8.1.154 166172 username hashtadani4 166172 mac 166172 bytes_out 0 166172 bytes_in 0 166172 station_ip 5.202.19.53 166172 port 771 166172 unique_id port 166172 remote_ip 10.8.0.182 166174 username hashtadani4 166174 mac 166174 bytes_out 0 166174 bytes_in 0 166174 station_ip 5.202.19.53 166174 port 771 166174 unique_id port 166174 remote_ip 10.8.0.182 166176 username mosi 166176 kill_reason Another user logged on this global unique id 166176 mac 166176 bytes_out 0 166176 bytes_in 0 166176 station_ip 151.235.96.72 166176 port 768 166176 unique_id port 166177 username barzegar 166177 mac 166177 bytes_out 0 166177 bytes_in 0 166177 station_ip 5.119.142.232 166177 port 771 166177 unique_id port 166177 remote_ip 10.8.0.234 166183 username tahmasebi 166183 mac 166183 bytes_out 0 166183 bytes_in 0 166183 station_ip 5.119.109.36 166183 port 391 166183 unique_id port 166183 remote_ip 10.8.1.90 166188 username khalili 166188 kill_reason Relative expiration date has reached 166188 mac 166188 bytes_out 0 166188 bytes_in 0 166188 station_ip 5.119.238.124 166188 port 731 166188 unique_id port 166190 username khalili 166136 bytes_in 7733872 166136 station_ip 83.122.219.122 166136 port 731 166136 unique_id port 166136 remote_ip 10.8.0.14 166140 username rajaei 166140 kill_reason Another user logged on this global unique id 166140 mac 166140 bytes_out 0 166140 bytes_in 0 166140 station_ip 5.62.209.102 166140 port 741 166140 unique_id port 166142 username hashtadani4 166142 mac 166142 bytes_out 0 166142 bytes_in 0 166142 station_ip 37.129.10.245 166142 port 770 166142 unique_id port 166145 username hashtadani4 166145 mac 166145 bytes_out 0 166145 bytes_in 0 166145 station_ip 37.129.10.245 166145 port 772 166145 unique_id port 166145 remote_ip 10.8.0.182 166146 username moradi 166146 mac 166146 bytes_out 0 166146 bytes_in 0 166146 station_ip 113.203.122.18 166146 port 770 166146 unique_id port 166146 remote_ip 10.8.0.126 166150 username alipour 166150 mac 166150 bytes_out 0 166150 bytes_in 0 166150 station_ip 83.123.75.252 166150 port 770 166150 unique_id port 166150 remote_ip 10.8.0.102 166155 username sedighe 166155 mac 166155 bytes_out 404738 166155 bytes_in 4342315 166155 station_ip 83.123.237.236 166155 port 771 166155 unique_id port 166155 remote_ip 10.8.0.146 166156 username hashtadani4 166156 mac 166156 bytes_out 0 166156 bytes_in 0 166156 station_ip 37.129.10.245 166156 port 392 166156 unique_id port 166156 remote_ip 10.8.1.142 166158 username hashtadani4 166158 mac 166158 bytes_out 0 166158 bytes_in 0 166158 station_ip 37.129.10.245 166158 port 771 166158 unique_id port 166158 remote_ip 10.8.0.182 166165 username barzegar 166165 mac 166165 bytes_out 0 166165 bytes_in 0 166165 station_ip 5.119.142.232 166165 port 392 166165 unique_id port 166165 remote_ip 10.8.1.174 166166 username pourshad 166166 mac 166166 bytes_out 236865 166166 bytes_in 1657466 166166 station_ip 5.119.81.48 166166 port 391 166166 unique_id port 166166 remote_ip 10.8.1.154 166170 username farhad2 166170 mac 166170 bytes_out 942803 166170 bytes_in 2186607 166170 station_ip 5.120.170.4 166170 port 731 166170 unique_id port 166170 remote_ip 10.8.0.190 166171 username hashtadani4 166171 mac 166171 bytes_out 0 166171 bytes_in 0 166171 station_ip 37.129.10.245 166171 port 771 166171 unique_id port 166171 remote_ip 10.8.0.182 166173 username hashtadani4 166173 mac 166173 bytes_out 0 166173 bytes_in 0 166173 station_ip 5.202.19.53 166173 port 771 166173 unique_id port 166173 remote_ip 10.8.0.182 166175 username hashtadani4 166175 mac 166175 bytes_out 0 166175 bytes_in 0 166175 station_ip 5.202.19.53 166175 port 771 166175 unique_id port 166175 remote_ip 10.8.0.182 166178 username tahmasebi 166178 mac 166178 bytes_out 0 166178 bytes_in 0 166178 station_ip 5.119.109.36 166178 port 769 166178 unique_id port 166178 remote_ip 10.8.0.42 166180 username hashtadani4 166180 mac 166180 bytes_out 0 166180 bytes_in 0 166180 station_ip 5.202.19.53 166180 port 769 166180 unique_id port 166180 remote_ip 10.8.0.182 166181 username arash 166181 mac 166181 bytes_out 0 166181 bytes_in 0 166181 station_ip 37.27.21.105 166181 port 778 166181 unique_id port 166181 remote_ip 10.8.0.122 166185 username sedighe 166185 mac 166185 bytes_out 0 166185 bytes_in 0 166185 station_ip 83.123.237.236 166185 port 767 166185 unique_id port 166185 remote_ip 10.8.0.146 166186 username hashtadani4 166186 mac 166186 bytes_out 0 166186 bytes_in 0 166186 station_ip 5.202.19.53 166186 port 767 166138 station_ip 113.203.122.18 166138 port 772 166138 unique_id port 166138 remote_ip 10.8.0.126 166141 username moradi 166141 mac 166141 bytes_out 0 166141 bytes_in 0 166141 station_ip 113.203.122.18 166141 port 772 166141 unique_id port 166141 remote_ip 10.8.0.126 166144 username hashtadani4 166144 mac 166144 bytes_out 0 166144 bytes_in 0 166144 station_ip 37.129.10.245 166144 port 772 166144 unique_id port 166144 remote_ip 10.8.0.182 166147 username hashtadani4 166147 mac 166147 bytes_out 0 166147 bytes_in 0 166147 station_ip 37.129.10.245 166147 port 772 166147 unique_id port 166147 remote_ip 10.8.0.182 166148 username alipour 166148 mac 166148 bytes_out 98207 166148 bytes_in 566096 166148 station_ip 83.123.75.252 166148 port 773 166148 unique_id port 166148 remote_ip 10.8.0.102 166149 username moradi 166149 mac 166149 bytes_out 0 166149 bytes_in 0 166149 station_ip 37.44.59.74 166149 port 777 166149 unique_id port 166149 remote_ip 10.8.0.126 166154 username hashtadani4 166154 mac 166154 bytes_out 8142 166154 bytes_in 27858 166154 station_ip 37.129.10.245 166154 port 772 166154 unique_id port 166154 remote_ip 10.8.0.182 166157 username barzegar 166157 mac 166157 bytes_out 8731 166157 bytes_in 27347 166157 station_ip 5.119.142.232 166157 port 773 166157 unique_id port 166157 remote_ip 10.8.0.234 166159 username hashtadani4 166159 mac 166159 bytes_out 0 166159 bytes_in 0 166159 station_ip 37.129.10.245 166159 port 771 166159 unique_id port 166159 remote_ip 10.8.0.182 166162 username hashtadani4 166162 mac 166162 bytes_out 0 166162 bytes_in 0 166162 station_ip 37.129.10.245 166162 port 771 166162 unique_id port 166162 remote_ip 10.8.0.182 166163 username rajaei 166163 mac 166163 bytes_out 0 166163 bytes_in 0 166163 station_ip 5.62.209.102 166163 port 741 166163 unique_id port 166168 username tahmasebi 166168 mac 166168 bytes_out 0 166168 bytes_in 0 166168 station_ip 5.119.109.36 166168 port 769 166168 unique_id port 166168 remote_ip 10.8.0.42 166179 username hashtadani4 166179 mac 166179 bytes_out 0 166179 bytes_in 0 166179 station_ip 5.202.19.53 166179 port 769 166179 unique_id port 166179 remote_ip 10.8.0.182 166182 username tahmasebi 166182 mac 166182 bytes_out 0 166182 bytes_in 0 166182 station_ip 5.119.109.36 166182 port 391 166182 unique_id port 166182 remote_ip 10.8.1.90 166184 username hashtadani4 166184 mac 166184 bytes_out 0 166184 bytes_in 0 166184 station_ip 5.202.19.53 166184 port 769 166184 unique_id port 166184 remote_ip 10.8.0.182 166187 username farhad2 166187 mac 166187 bytes_out 0 166187 bytes_in 0 166187 station_ip 5.120.170.4 166187 port 731 166187 unique_id port 166187 remote_ip 10.8.0.190 166193 username farhad2 166193 mac 166193 bytes_out 0 166193 bytes_in 0 166193 station_ip 5.120.170.4 166193 port 731 166193 unique_id port 166193 remote_ip 10.8.0.190 166196 username aminvpn 166196 unique_id port 166196 terminate_cause Lost-Carrier 166196 bytes_out 446261 166196 bytes_in 1718484 166196 station_ip 5.120.54.164 166196 port 15728719 166196 nas_port_type Virtual 166196 remote_ip 5.5.5.194 166200 username moradi 166200 mac 166200 bytes_out 129012 166200 bytes_in 189868 166200 station_ip 113.203.122.18 166200 port 770 166200 unique_id port 166200 remote_ip 10.8.0.126 166203 username houshang 166203 mac 166203 bytes_out 0 166203 bytes_in 0 166203 station_ip 5.119.129.245 166203 port 731 166186 unique_id port 166186 remote_ip 10.8.0.182 166189 username mohammadmahdi 166189 kill_reason Another user logged on this global unique id 166189 mac 166189 bytes_out 0 166189 bytes_in 0 166189 station_ip 5.119.213.138 166189 port 773 166189 unique_id port 166189 remote_ip 10.8.0.54 166192 username hashtadani4 166192 mac 166192 bytes_out 0 166192 bytes_in 0 166192 station_ip 5.202.19.53 166192 port 745 166192 unique_id port 166192 remote_ip 10.8.0.182 166194 username sedighe 166194 mac 166194 bytes_out 24137 166194 bytes_in 33245 166194 station_ip 83.123.237.236 166194 port 769 166194 unique_id port 166194 remote_ip 10.8.0.146 166195 username hashtadani4 166195 mac 166195 bytes_out 0 166195 bytes_in 0 166195 station_ip 5.202.19.53 166195 port 769 166195 unique_id port 166195 remote_ip 10.8.0.182 166199 username hashtadani4 166199 mac 166199 bytes_out 0 166199 bytes_in 0 166199 station_ip 5.202.19.53 166199 port 745 166199 unique_id port 166199 remote_ip 10.8.0.182 166202 username rezaei 166202 mac 166202 bytes_out 0 166202 bytes_in 0 166202 station_ip 5.119.14.25 166202 port 772 166202 unique_id port 166202 remote_ip 10.8.0.230 166206 username laleh 166206 mac 166206 bytes_out 0 166206 bytes_in 0 166206 station_ip 5.119.152.55 166206 port 770 166206 unique_id port 166206 remote_ip 10.8.0.214 166207 username yaghobi 166207 mac 166207 bytes_out 83584 166207 bytes_in 111979 166207 station_ip 83.122.85.54 166207 port 392 166207 unique_id port 166207 remote_ip 10.8.1.118 166208 username laleh 166208 mac 166208 bytes_out 313037 166208 bytes_in 4032186 166208 station_ip 5.119.100.225 166208 port 769 166208 unique_id port 166208 remote_ip 10.8.0.214 166210 username hashtadani4 166210 mac 166210 bytes_out 0 166210 bytes_in 0 166210 station_ip 5.202.19.53 166210 port 767 166210 unique_id port 166210 remote_ip 10.8.0.182 166216 username hashtadani4 166216 mac 166216 bytes_out 0 166216 bytes_in 0 166216 station_ip 5.202.19.53 166216 port 731 166216 unique_id port 166216 remote_ip 10.8.0.182 166220 username yaghobi 166220 mac 166220 bytes_out 1229667 166220 bytes_in 12532249 166220 station_ip 37.129.180.65 166220 port 391 166220 unique_id port 166220 remote_ip 10.8.1.118 166223 username mosi 166223 mac 166223 bytes_out 0 166223 bytes_in 0 166223 station_ip 151.235.96.72 166223 port 768 166223 unique_id port 166225 username arash 166225 mac 166225 bytes_out 577367 166225 bytes_in 2352430 166225 station_ip 37.27.21.105 166225 port 779 166225 unique_id port 166225 remote_ip 10.8.0.122 166226 username sedighe 166226 mac 166226 bytes_out 44152 166226 bytes_in 71466 166226 station_ip 83.123.82.194 166226 port 770 166226 unique_id port 166226 remote_ip 10.8.0.146 166228 username farhad2 166228 mac 166228 bytes_out 0 166228 bytes_in 0 166228 station_ip 5.119.250.84 166228 port 391 166228 unique_id port 166228 remote_ip 10.8.1.222 166229 username sedighe 166229 mac 166229 bytes_out 0 166229 bytes_in 0 166229 station_ip 83.123.82.194 166229 port 768 166229 unique_id port 166229 remote_ip 10.8.0.146 166231 username sedighe 166231 mac 166231 bytes_out 0 166231 bytes_in 0 166231 station_ip 83.123.82.194 166231 port 767 166231 unique_id port 166231 remote_ip 10.8.0.146 166238 username alipour 166238 mac 166238 bytes_out 150386 166238 bytes_in 1643841 166238 station_ip 113.203.59.123 166238 port 777 166238 unique_id port 166190 mac 166190 bytes_out 0 166190 bytes_in 0 166190 station_ip 5.119.37.112 166190 port 745 166190 unique_id port 166191 username barzegar 166191 mac 166191 bytes_out 0 166191 bytes_in 0 166191 station_ip 5.119.142.232 166191 port 778 166191 unique_id port 166191 remote_ip 10.8.0.234 166197 username farhad2 166197 mac 166197 bytes_out 0 166197 bytes_in 0 166197 station_ip 5.120.170.4 166197 port 745 166197 unique_id port 166197 remote_ip 10.8.0.190 166198 username sedighe 166198 mac 166198 bytes_out 0 166198 bytes_in 0 166198 station_ip 83.123.237.236 166198 port 767 166198 unique_id port 166198 remote_ip 10.8.0.146 166201 username yaghobi 166201 mac 166201 bytes_out 1489001 166201 bytes_in 19591393 166201 station_ip 83.123.59.166 166201 port 771 166201 unique_id port 166201 remote_ip 10.8.0.198 166211 username houshang 166211 mac 166211 bytes_out 20800 166211 bytes_in 20405 166211 station_ip 5.119.129.245 166211 port 731 166211 unique_id port 166211 remote_ip 10.8.0.134 166212 username sedighe 166212 mac 166212 bytes_out 0 166212 bytes_in 0 166212 station_ip 83.123.204.216 166212 port 771 166212 unique_id port 166212 remote_ip 10.8.0.146 166213 username sedighe 166213 mac 166213 bytes_out 0 166213 bytes_in 0 166213 station_ip 83.123.204.216 166213 port 731 166213 unique_id port 166213 remote_ip 10.8.0.146 166217 username sedighe 166217 mac 166217 bytes_out 0 166217 bytes_in 0 166217 station_ip 37.129.41.46 166217 port 770 166217 unique_id port 166217 remote_ip 10.8.0.146 166219 username mohammadmahdi 166219 mac 166219 bytes_out 0 166219 bytes_in 0 166219 station_ip 5.119.213.138 166219 port 773 166219 unique_id port 166222 username sedighe 166222 mac 166222 bytes_out 0 166222 bytes_in 0 166222 station_ip 37.129.31.247 166222 port 731 166222 unique_id port 166222 remote_ip 10.8.0.146 166234 username hashtadani4 166234 mac 166234 bytes_out 879862 166234 bytes_in 7129969 166234 station_ip 5.202.19.53 166234 port 769 166234 unique_id port 166234 remote_ip 10.8.0.182 166235 username hashtadani4 166235 mac 166235 bytes_out 0 166235 bytes_in 0 166235 station_ip 5.202.19.53 166235 port 745 166235 unique_id port 166235 remote_ip 10.8.0.182 166237 username tahmasebi 166237 mac 166237 bytes_out 0 166237 bytes_in 0 166237 station_ip 5.119.109.36 166237 port 769 166237 unique_id port 166237 remote_ip 10.8.0.42 166239 username aminvpn 166239 kill_reason Another user logged on this global unique id 166239 mac 166239 bytes_out 0 166239 bytes_in 0 166239 station_ip 5.119.210.108 166239 port 731 166239 unique_id port 166239 remote_ip 10.8.0.14 166240 username vanila 166240 mac 166240 bytes_out 0 166240 bytes_in 0 166240 station_ip 83.123.241.25 166240 port 770 166240 unique_id port 166240 remote_ip 10.8.0.178 166243 username barzegar 166243 mac 166243 bytes_out 15907282 166243 bytes_in 12040763 166243 station_ip 5.119.221.234 166243 port 393 166243 unique_id port 166243 remote_ip 10.8.1.174 166248 username sedighe 166248 mac 166248 bytes_out 0 166248 bytes_in 0 166248 station_ip 83.122.140.246 166248 port 745 166248 unique_id port 166248 remote_ip 10.8.0.146 166256 username tahmasebi 166256 mac 166256 bytes_out 0 166256 bytes_in 0 166256 station_ip 5.119.109.36 166256 port 771 166256 unique_id port 166256 remote_ip 10.8.0.42 166257 username farhad2 166257 kill_reason Another user logged on this global unique id 166257 mac 166257 bytes_out 0 166203 unique_id port 166203 remote_ip 10.8.0.134 166204 username sedighe 166204 mac 166204 bytes_out 34511 166204 bytes_in 50117 166204 station_ip 83.123.204.216 166204 port 769 166204 unique_id port 166204 remote_ip 10.8.0.146 166205 username tahmasebi 166205 mac 166205 bytes_out 0 166205 bytes_in 0 166205 station_ip 5.119.109.36 166205 port 391 166205 unique_id port 166205 remote_ip 10.8.1.90 166209 username farhad2 166209 mac 166209 bytes_out 517662 166209 bytes_in 2240071 166209 station_ip 5.119.250.84 166209 port 767 166209 unique_id port 166209 remote_ip 10.8.0.190 166214 username barzegar 166214 mac 166214 bytes_out 590298 166214 bytes_in 515328 166214 station_ip 5.120.25.73 166214 port 769 166214 unique_id port 166214 remote_ip 10.8.0.234 166215 username hashtadani4 166215 mac 166215 bytes_out 0 166215 bytes_in 0 166215 station_ip 5.202.19.53 166215 port 731 166215 unique_id port 166215 remote_ip 10.8.0.182 166218 username hashtadani4 166218 mac 166218 bytes_out 0 166218 bytes_in 0 166218 station_ip 5.202.19.53 166218 port 769 166218 unique_id port 166218 remote_ip 10.8.0.182 166221 username tahmasebi 166221 mac 166221 bytes_out 0 166221 bytes_in 0 166221 station_ip 5.119.109.36 166221 port 769 166221 unique_id port 166221 remote_ip 10.8.0.42 166224 username tahmasebi 166224 mac 166224 bytes_out 0 166224 bytes_in 0 166224 station_ip 5.119.109.36 166224 port 771 166224 unique_id port 166224 remote_ip 10.8.0.42 166227 username farhad2 166227 mac 166227 bytes_out 0 166227 bytes_in 0 166227 station_ip 5.119.250.84 166227 port 767 166227 unique_id port 166227 remote_ip 10.8.0.190 166230 username farhad2 166230 mac 166230 bytes_out 349257 166230 bytes_in 5408905 166230 station_ip 5.119.250.84 166230 port 391 166230 unique_id port 166230 remote_ip 10.8.1.222 166232 username farhad2 166232 mac 166232 bytes_out 209062 166232 bytes_in 1407369 166232 station_ip 5.119.250.84 166232 port 391 166232 unique_id port 166232 remote_ip 10.8.1.222 166233 username moradi 166233 mac 166233 bytes_out 0 166233 bytes_in 0 166233 station_ip 113.203.122.18 166233 port 745 166233 unique_id port 166233 remote_ip 10.8.0.126 166236 username hashtadani4 166236 mac 166236 bytes_out 0 166236 bytes_in 0 166236 station_ip 5.202.19.53 166236 port 745 166236 unique_id port 166236 remote_ip 10.8.0.182 166245 username sedighe 166245 mac 166245 bytes_out 36186 166245 bytes_in 40890 166245 station_ip 113.203.98.23 166245 port 770 166245 unique_id port 166245 remote_ip 10.8.0.146 166246 username hashtadani4 166246 mac 166246 bytes_out 0 166246 bytes_in 0 166246 station_ip 5.202.19.53 166246 port 745 166246 unique_id port 166246 remote_ip 10.8.0.182 166247 username sedighe 166247 mac 166247 bytes_out 0 166247 bytes_in 0 166247 station_ip 83.122.29.45 166247 port 768 166247 unique_id port 166247 remote_ip 10.8.0.146 166249 username tahmasebi 166249 mac 166249 bytes_out 0 166249 bytes_in 0 166249 station_ip 5.119.109.36 166249 port 394 166249 unique_id port 166249 remote_ip 10.8.1.90 166251 username sedighe 166251 mac 166251 bytes_out 0 166251 bytes_in 0 166251 station_ip 83.122.165.226 166251 port 768 166251 unique_id port 166251 remote_ip 10.8.0.146 166252 username tahmasebi 166252 mac 166252 bytes_out 0 166252 bytes_in 0 166252 station_ip 5.119.109.36 166252 port 767 166252 unique_id port 166252 remote_ip 10.8.0.42 166254 username moradi 166238 remote_ip 10.8.0.102 166241 username sedighe 166241 mac 166241 bytes_out 40153 166241 bytes_in 58911 166241 station_ip 113.203.98.23 166241 port 768 166241 unique_id port 166241 remote_ip 10.8.0.146 166242 username vanila 166242 mac 166242 bytes_out 0 166242 bytes_in 0 166242 station_ip 83.123.241.25 166242 port 769 166242 unique_id port 166242 remote_ip 10.8.0.178 166244 username aminvpn 166244 unique_id port 166244 terminate_cause User-Request 166244 bytes_out 2219342 166244 bytes_in 43233238 166244 station_ip 5.119.210.108 166244 port 15728720 166244 nas_port_type Virtual 166244 remote_ip 5.5.5.192 166250 username moradi 166250 mac 166250 bytes_out 0 166250 bytes_in 0 166250 station_ip 46.225.210.90 166250 port 767 166250 unique_id port 166250 remote_ip 10.8.0.126 166253 username sedighe 166253 mac 166253 bytes_out 0 166253 bytes_in 0 166253 station_ip 83.122.165.226 166253 port 768 166253 unique_id port 166253 remote_ip 10.8.0.146 166259 username tahmasebi 166259 mac 166259 bytes_out 0 166259 bytes_in 0 166259 station_ip 5.119.109.36 166259 port 771 166259 unique_id port 166259 remote_ip 10.8.0.42 166261 username hadibarzegar 166261 mac 166261 bytes_out 1532253 166261 bytes_in 7138986 166261 station_ip 83.123.156.234 166261 port 767 166261 unique_id port 166261 remote_ip 10.8.0.154 166264 username mosi 166264 mac 166264 bytes_out 0 166264 bytes_in 0 166264 station_ip 151.235.73.177 166264 port 767 166264 unique_id port 166264 remote_ip 10.8.0.138 166266 username jafari 166266 mac 166266 bytes_out 0 166266 bytes_in 0 166266 station_ip 37.137.18.243 166266 port 772 166266 unique_id port 166266 remote_ip 10.8.0.242 166268 username farhad2 166268 kill_reason Another user logged on this global unique id 166268 mac 166268 bytes_out 0 166268 bytes_in 0 166268 station_ip 5.119.250.84 166268 port 391 166268 unique_id port 166269 username sedighe 166269 mac 166269 bytes_out 0 166269 bytes_in 0 166269 station_ip 83.123.53.157 166269 port 773 166269 unique_id port 166269 remote_ip 10.8.0.146 166271 username barzegar 166271 mac 166271 bytes_out 0 166271 bytes_in 0 166271 station_ip 5.119.221.234 166271 port 768 166271 unique_id port 166271 remote_ip 10.8.0.234 166274 username tahmasebi 166274 mac 166274 bytes_out 431552 166274 bytes_in 3270054 166274 station_ip 5.119.109.36 166274 port 768 166274 unique_id port 166274 remote_ip 10.8.0.42 166275 username barzegar 166275 mac 166275 bytes_out 0 166275 bytes_in 0 166275 station_ip 5.119.221.234 166275 port 768 166275 unique_id port 166275 remote_ip 10.8.0.234 166279 username farhad2 166279 kill_reason Another user logged on this global unique id 166279 mac 166279 bytes_out 0 166279 bytes_in 0 166279 station_ip 5.119.250.84 166279 port 391 166279 unique_id port 166284 username meysam 166284 mac 166284 bytes_out 0 166284 bytes_in 0 166284 station_ip 188.159.251.117 166284 port 768 166284 unique_id port 166284 remote_ip 10.8.0.110 166286 username shadkam 166286 mac 166286 bytes_out 0 166286 bytes_in 0 166286 station_ip 37.129.96.200 166286 port 393 166286 unique_id port 166286 remote_ip 10.8.1.218 166288 username tahmasebi 166288 mac 166288 bytes_out 0 166288 bytes_in 0 166288 station_ip 5.119.109.36 166288 port 741 166288 unique_id port 166288 remote_ip 10.8.0.42 166291 username pourshad 166291 mac 166291 bytes_out 0 166291 bytes_in 0 166291 station_ip 5.119.81.48 166291 port 768 166291 unique_id port 166254 mac 166254 bytes_out 0 166254 bytes_in 0 166254 station_ip 113.203.92.246 166254 port 745 166254 unique_id port 166254 remote_ip 10.8.0.126 166255 username sedighe 166255 mac 166255 bytes_out 0 166255 bytes_in 0 166255 station_ip 83.123.53.157 166255 port 769 166255 unique_id port 166255 remote_ip 10.8.0.146 166260 username mosi 166260 mac 166260 bytes_out 7065 166260 bytes_in 5965 166260 station_ip 151.235.73.177 166260 port 769 166260 unique_id port 166260 remote_ip 10.8.0.138 166262 username barzegar 166262 mac 166262 bytes_out 7418377 166262 bytes_in 7379308 166262 station_ip 5.119.221.234 166262 port 393 166262 unique_id port 166262 remote_ip 10.8.1.174 166263 username rezaei 166263 mac 166263 bytes_out 0 166263 bytes_in 0 166263 station_ip 5.119.14.25 166263 port 770 166263 unique_id port 166263 remote_ip 10.8.0.230 166267 username pourshad 166267 mac 166267 bytes_out 634056 166267 bytes_in 10384366 166267 station_ip 5.119.81.48 166267 port 392 166267 unique_id port 166267 remote_ip 10.8.1.154 166272 username tahmasebi 166272 mac 166272 bytes_out 0 166272 bytes_in 0 166272 station_ip 5.119.109.36 166272 port 392 166272 unique_id port 166272 remote_ip 10.8.1.90 166276 username barzegar 166276 kill_reason Maximum check online fails reached 166276 mac 166276 bytes_out 0 166276 bytes_in 0 166276 station_ip 5.119.221.234 166276 port 772 166276 unique_id port 166280 username barzegar 166280 mac 166280 bytes_out 0 166280 bytes_in 0 166280 station_ip 5.119.221.234 166280 port 393 166280 unique_id port 166280 remote_ip 10.8.1.174 166281 username hosseine 166281 mac 166281 bytes_out 19228 166281 bytes_in 17331 166281 station_ip 83.122.68.157 166281 port 392 166281 unique_id port 166281 remote_ip 10.8.1.190 166282 username hadibarzegar 166282 mac 166282 bytes_out 440023 166282 bytes_in 2968450 166282 station_ip 83.123.156.234 166282 port 741 166282 unique_id port 166282 remote_ip 10.8.0.154 166285 username barzegar 166285 mac 166285 bytes_out 0 166285 bytes_in 0 166285 station_ip 5.119.221.234 166285 port 394 166285 unique_id port 166285 remote_ip 10.8.1.174 166287 username pourshad 166287 mac 166287 bytes_out 0 166287 bytes_in 0 166287 station_ip 5.119.81.48 166287 port 771 166287 unique_id port 166287 remote_ip 10.8.0.18 166292 username milan 166292 mac 166292 bytes_out 0 166292 bytes_in 0 166292 station_ip 5.120.91.29 166292 port 776 166292 unique_id port 166295 username tahmasebi 166295 mac 166295 bytes_out 0 166295 bytes_in 0 166295 station_ip 5.119.109.36 166295 port 771 166295 unique_id port 166295 remote_ip 10.8.0.42 166296 username pourshad 166296 mac 166296 bytes_out 0 166296 bytes_in 0 166296 station_ip 5.119.81.48 166296 port 393 166296 unique_id port 166296 remote_ip 10.8.1.154 166299 username yaghobi 166299 mac 166299 bytes_out 0 166299 bytes_in 0 166299 station_ip 83.122.196.86 166299 port 769 166299 unique_id port 166299 remote_ip 10.8.0.198 166300 username hatami 166300 mac 166300 bytes_out 0 166300 bytes_in 0 166300 station_ip 151.235.100.187 166300 port 394 166300 unique_id port 166300 remote_ip 10.8.1.134 166301 username jafari 166301 kill_reason Another user logged on this global unique id 166301 mac 166301 bytes_out 0 166301 bytes_in 0 166301 station_ip 37.137.18.243 166301 port 769 166301 unique_id port 166301 remote_ip 10.8.0.242 166302 username barzegar 166302 mac 166302 bytes_out 0 166257 bytes_in 0 166257 station_ip 5.119.250.84 166257 port 391 166257 unique_id port 166257 remote_ip 10.8.1.222 166258 username moradi 166258 mac 166258 bytes_out 7049 166258 bytes_in 20299 166258 station_ip 46.225.210.112 166258 port 768 166258 unique_id port 166258 remote_ip 10.8.0.126 166265 username moradi 166265 mac 166265 bytes_out 0 166265 bytes_in 0 166265 station_ip 37.129.173.117 166265 port 777 166265 unique_id port 166265 remote_ip 10.8.0.126 166270 username tahmasebi 166270 mac 166270 bytes_out 0 166270 bytes_in 0 166270 station_ip 5.119.109.36 166270 port 392 166270 unique_id port 166270 remote_ip 10.8.1.90 166273 username vanila 166273 mac 166273 bytes_out 0 166273 bytes_in 0 166273 station_ip 83.123.241.25 166273 port 768 166273 unique_id port 166273 remote_ip 10.8.0.178 166277 username hadibarzegar 166277 mac 166277 bytes_out 32575 166277 bytes_in 53804 166277 station_ip 83.123.156.234 166277 port 773 166277 unique_id port 166277 remote_ip 10.8.0.154 166278 username hosseine 166278 mac 166278 bytes_out 0 166278 bytes_in 0 166278 station_ip 83.122.68.157 166278 port 741 166278 unique_id port 166278 remote_ip 10.8.0.238 166283 username vanila 166283 mac 166283 bytes_out 703746 166283 bytes_in 1645391 166283 station_ip 83.123.241.25 166283 port 769 166283 unique_id port 166283 remote_ip 10.8.0.178 166289 username farhad2 166289 mac 166289 bytes_out 0 166289 bytes_in 0 166289 station_ip 5.119.250.84 166289 port 391 166289 unique_id port 166290 username shadkam 166290 mac 166290 bytes_out 2462 166290 bytes_in 5339 166290 station_ip 37.129.96.200 166290 port 741 166290 unique_id port 166290 remote_ip 10.8.0.62 166293 username barzegar 166293 mac 166293 bytes_out 55858 166293 bytes_in 308890 166293 station_ip 5.119.221.234 166293 port 391 166293 unique_id port 166293 remote_ip 10.8.1.174 166298 username barzegar 166298 mac 166298 bytes_out 0 166298 bytes_in 0 166298 station_ip 5.119.221.234 166298 port 391 166298 unique_id port 166298 remote_ip 10.8.1.174 166303 username farhad2 166303 mac 166303 bytes_out 0 166303 bytes_in 0 166303 station_ip 5.119.171.202 166303 port 771 166303 unique_id port 166303 remote_ip 10.8.0.190 166307 username jafari 166307 kill_reason Another user logged on this global unique id 166307 mac 166307 bytes_out 0 166307 bytes_in 0 166307 station_ip 37.137.18.243 166307 port 769 166307 unique_id port 166309 username tahmasebi 166309 mac 166309 bytes_out 99262 166309 bytes_in 728091 166309 station_ip 5.119.109.36 166309 port 773 166309 unique_id port 166309 remote_ip 10.8.0.42 166312 username sabaghnezhad 166312 mac 166312 bytes_out 708683 166312 bytes_in 4886952 166312 station_ip 83.122.248.126 166312 port 745 166312 unique_id port 166312 remote_ip 10.8.0.186 166313 username barzegar 166313 mac 166313 bytes_out 0 166313 bytes_in 0 166313 station_ip 5.119.221.234 166313 port 773 166313 unique_id port 166313 remote_ip 10.8.0.234 166314 username alikomsari 166314 mac 166314 bytes_out 0 166314 bytes_in 0 166314 station_ip 5.120.69.85 166314 port 768 166314 unique_id port 166314 remote_ip 10.8.0.26 166316 username jafari 166316 kill_reason Another user logged on this global unique id 166316 mac 166316 bytes_out 0 166316 bytes_in 0 166316 station_ip 37.137.18.243 166316 port 769 166316 unique_id port 166317 username tahmasebi 166317 mac 166317 bytes_out 0 166317 bytes_in 0 166317 station_ip 5.119.109.36 166317 port 745 166291 remote_ip 10.8.0.18 166294 username barzegar 166294 mac 166294 bytes_out 0 166294 bytes_in 0 166294 station_ip 5.119.221.234 166294 port 391 166294 unique_id port 166294 remote_ip 10.8.1.174 166297 username farhad2 166297 mac 166297 bytes_out 1939700 166297 bytes_in 15929465 166297 station_ip 5.119.171.202 166297 port 741 166297 unique_id port 166297 remote_ip 10.8.0.190 166305 username barzegar 166305 mac 166305 bytes_out 3325 166305 bytes_in 5647 166305 station_ip 5.119.221.234 166305 port 776 166305 unique_id port 166305 remote_ip 10.8.0.234 166310 username mohammadjavad 166310 mac 166310 bytes_out 0 166310 bytes_in 0 166310 station_ip 83.123.180.186 166310 port 393 166310 unique_id port 166310 remote_ip 10.8.1.146 166318 username farhad2 166318 mac 166318 bytes_out 3086781 166318 bytes_in 26235839 166318 station_ip 5.119.171.202 166318 port 771 166318 unique_id port 166318 remote_ip 10.8.0.190 166319 username farhad2 166319 mac 166319 bytes_out 0 166319 bytes_in 0 166319 station_ip 5.119.171.202 166319 port 745 166319 unique_id port 166319 remote_ip 10.8.0.190 166320 username farhad2 166320 mac 166320 bytes_out 0 166320 bytes_in 0 166320 station_ip 5.119.171.202 166320 port 745 166320 unique_id port 166320 remote_ip 10.8.0.190 166322 username tahmasebi 166322 mac 166322 bytes_out 0 166322 bytes_in 0 166322 station_ip 5.119.109.36 166322 port 768 166322 unique_id port 166322 remote_ip 10.8.0.42 166325 username hosseine 166325 mac 166325 bytes_out 0 166325 bytes_in 0 166325 station_ip 83.122.68.157 166325 port 392 166325 unique_id port 166325 remote_ip 10.8.1.190 166328 username tahmasebi 166328 mac 166328 bytes_out 14341 166328 bytes_in 26142 166328 station_ip 5.119.109.36 166328 port 745 166328 unique_id port 166328 remote_ip 10.8.0.42 166330 username malekpoir 166330 mac 166330 bytes_out 1699091 166330 bytes_in 19424519 166330 station_ip 5.119.214.100 166330 port 393 166330 unique_id port 166330 remote_ip 10.8.1.54 166332 username tahmasebi 166332 mac 166332 bytes_out 0 166332 bytes_in 0 166332 station_ip 5.119.109.36 166332 port 771 166332 unique_id port 166332 remote_ip 10.8.0.42 166334 username farhad2 166334 mac 166334 bytes_out 86798 166334 bytes_in 1006029 166334 station_ip 5.120.49.19 166334 port 768 166334 unique_id port 166334 remote_ip 10.8.0.190 166335 username farhad2 166335 mac 166335 bytes_out 0 166335 bytes_in 0 166335 station_ip 5.120.49.19 166335 port 745 166335 unique_id port 166335 remote_ip 10.8.0.190 166338 username mohammadmahdi 166338 mac 166338 bytes_out 0 166338 bytes_in 0 166338 station_ip 5.119.213.138 166338 port 741 166338 unique_id port 166338 remote_ip 10.8.0.54 166343 username farhad2 166343 mac 166343 bytes_out 1550330 166343 bytes_in 21569761 166343 station_ip 5.120.49.19 166343 port 393 166343 unique_id port 166343 remote_ip 10.8.1.222 166344 username farhad2 166344 kill_reason Maximum check online fails reached 166344 mac 166344 bytes_out 0 166344 bytes_in 0 166344 station_ip 5.120.49.19 166344 port 393 166344 unique_id port 166353 username mohammadmahdi 166353 mac 166353 bytes_out 0 166353 bytes_in 0 166353 station_ip 5.119.213.138 166353 port 745 166353 unique_id port 166353 remote_ip 10.8.0.54 166360 username rezaei 166360 kill_reason Another user logged on this global unique id 166360 mac 166360 bytes_out 0 166360 bytes_in 0 166360 station_ip 5.119.14.25 166360 port 770 166360 unique_id port 166302 bytes_in 0 166302 station_ip 5.119.221.234 166302 port 391 166302 unique_id port 166302 remote_ip 10.8.1.174 166304 username pourshad 166304 mac 166304 bytes_out 0 166304 bytes_in 0 166304 station_ip 5.119.81.48 166304 port 741 166304 unique_id port 166304 remote_ip 10.8.0.18 166306 username barzegar 166306 mac 166306 bytes_out 0 166306 bytes_in 0 166306 station_ip 5.119.221.234 166306 port 776 166306 unique_id port 166306 remote_ip 10.8.0.234 166308 username khademi 166308 kill_reason Another user logged on this global unique id 166308 mac 166308 bytes_out 0 166308 bytes_in 0 166308 station_ip 37.129.42.119 166308 port 758 166308 unique_id port 166311 username tahmasebi 166311 mac 166311 bytes_out 0 166311 bytes_in 0 166311 station_ip 5.119.109.36 166311 port 773 166311 unique_id port 166311 remote_ip 10.8.0.42 166315 username tahmasebi 166315 mac 166315 bytes_out 0 166315 bytes_in 0 166315 station_ip 5.119.109.36 166315 port 745 166315 unique_id port 166315 remote_ip 10.8.0.42 166321 username farhad2 166321 mac 166321 bytes_out 156647 166321 bytes_in 1217691 166321 station_ip 5.119.171.202 166321 port 745 166321 unique_id port 166321 remote_ip 10.8.0.190 166323 username khademi 166323 kill_reason Another user logged on this global unique id 166323 mac 166323 bytes_out 0 166323 bytes_in 0 166323 station_ip 37.129.42.119 166323 port 758 166323 unique_id port 166327 username saeed9658 166327 mac 166327 bytes_out 0 166327 bytes_in 0 166327 station_ip 5.119.69.89 166327 port 391 166327 unique_id port 166327 remote_ip 10.8.1.210 166329 username alirezazadeh 166329 unique_id port 166329 terminate_cause Lost-Carrier 166329 bytes_out 3937611 166329 bytes_in 54942777 166329 station_ip 5.120.149.103 166329 port 15728721 166329 nas_port_type Virtual 166329 remote_ip 5.5.5.190 166331 username barzegar 166331 mac 166331 bytes_out 0 166331 bytes_in 0 166331 station_ip 5.119.221.234 166331 port 745 166331 unique_id port 166331 remote_ip 10.8.0.234 166333 username barzegar 166333 mac 166333 bytes_out 0 166333 bytes_in 0 166333 station_ip 5.119.221.234 166333 port 745 166333 unique_id port 166333 remote_ip 10.8.0.234 166336 username jafari 166336 kill_reason Another user logged on this global unique id 166336 mac 166336 bytes_out 0 166336 bytes_in 0 166336 station_ip 37.137.18.243 166336 port 769 166336 unique_id port 166339 username tahmasebi 166339 mac 166339 bytes_out 0 166339 bytes_in 0 166339 station_ip 5.119.109.36 166339 port 745 166339 unique_id port 166339 remote_ip 10.8.0.42 166342 username jafari 166342 kill_reason Another user logged on this global unique id 166342 mac 166342 bytes_out 0 166342 bytes_in 0 166342 station_ip 37.137.18.243 166342 port 769 166342 unique_id port 166345 username laleh 166345 mac 166345 bytes_out 1464791 166345 bytes_in 22582470 166345 station_ip 5.119.22.21 166345 port 745 166345 unique_id port 166345 remote_ip 10.8.0.214 166346 username mohammadmahdi 166346 mac 166346 bytes_out 0 166346 bytes_in 0 166346 station_ip 5.119.213.138 166346 port 771 166346 unique_id port 166346 remote_ip 10.8.0.54 166350 username tahmasebi 166350 mac 166350 bytes_out 0 166350 bytes_in 0 166350 station_ip 5.119.109.36 166350 port 771 166350 unique_id port 166350 remote_ip 10.8.0.42 166357 username mahdiyehalizadeh 166357 mac 166357 bytes_out 389781 166357 bytes_in 2868687 166357 station_ip 5.119.33.193 166357 port 741 166357 unique_id port 166357 remote_ip 10.8.0.82 166358 username barzegar 166358 mac 166317 unique_id port 166317 remote_ip 10.8.0.42 166324 username farhad2 166324 mac 166324 bytes_out 0 166324 bytes_in 0 166324 station_ip 5.119.171.202 166324 port 745 166324 unique_id port 166324 remote_ip 10.8.0.190 166326 username jafari 166326 kill_reason Another user logged on this global unique id 166326 mac 166326 bytes_out 0 166326 bytes_in 0 166326 station_ip 37.137.18.243 166326 port 769 166326 unique_id port 166337 username tahmasebi 166337 mac 166337 bytes_out 0 166337 bytes_in 0 166337 station_ip 5.119.109.36 166337 port 745 166337 unique_id port 166337 remote_ip 10.8.0.42 166340 username rahim 166340 mac 166340 bytes_out 0 166340 bytes_in 0 166340 station_ip 5.119.211.178 166340 port 768 166340 unique_id port 166340 remote_ip 10.8.0.50 166341 username barzegar 166341 mac 166341 bytes_out 2477 166341 bytes_in 4898 166341 station_ip 5.119.221.234 166341 port 394 166341 unique_id port 166341 remote_ip 10.8.1.174 166347 username barzegar 166347 mac 166347 bytes_out 5551 166347 bytes_in 8198 166347 station_ip 5.119.221.234 166347 port 394 166347 unique_id port 166347 remote_ip 10.8.1.174 166348 username jafari 166348 kill_reason Another user logged on this global unique id 166348 mac 166348 bytes_out 0 166348 bytes_in 0 166348 station_ip 37.137.18.243 166348 port 769 166348 unique_id port 166349 username vanila 166349 mac 166349 bytes_out 208949 166349 bytes_in 1205438 166349 station_ip 83.123.188.173 166349 port 776 166349 unique_id port 166349 remote_ip 10.8.0.178 166351 username barzegar 166351 kill_reason Maximum check online fails reached 166351 mac 166351 bytes_out 0 166351 bytes_in 0 166351 station_ip 5.119.221.234 166351 port 394 166351 unique_id port 166352 username jafari 166352 mac 166352 bytes_out 0 166352 bytes_in 0 166352 station_ip 37.137.18.243 166352 port 769 166352 unique_id port 166354 username tahmasebi 166354 mac 166354 bytes_out 3633 166354 bytes_in 5978 166354 station_ip 5.119.109.36 166354 port 771 166354 unique_id port 166354 remote_ip 10.8.0.42 166355 username godarzi 166355 kill_reason Another user logged on this global unique id 166355 mac 166355 bytes_out 0 166355 bytes_in 0 166355 station_ip 5.119.252.80 166355 port 775 166355 unique_id port 166355 remote_ip 10.8.0.174 166356 username tahmasebi 166356 mac 166356 bytes_out 0 166356 bytes_in 0 166356 station_ip 5.119.109.36 166356 port 745 166356 unique_id port 166356 remote_ip 10.8.0.42 166359 username mohammadjavad 166359 mac 166359 bytes_out 0 166359 bytes_in 0 166359 station_ip 37.129.84.140 166359 port 395 166359 unique_id port 166359 remote_ip 10.8.1.146 166361 username tahmasebi 166361 mac 166361 bytes_out 0 166361 bytes_in 0 166361 station_ip 5.119.109.36 166361 port 741 166361 unique_id port 166361 remote_ip 10.8.0.42 166362 username laleh 166362 mac 166362 bytes_out 1496703 166362 bytes_in 24375134 166362 station_ip 5.119.10.186 166362 port 769 166362 unique_id port 166362 remote_ip 10.8.0.214 166364 username farhad2 166364 kill_reason Another user logged on this global unique id 166364 mac 166364 bytes_out 0 166364 bytes_in 0 166364 station_ip 5.120.49.19 166364 port 768 166364 unique_id port 166364 remote_ip 10.8.0.190 166365 username sedighe 166365 mac 166365 bytes_out 145854 166365 bytes_in 910098 166365 station_ip 83.123.238.94 166365 port 777 166365 unique_id port 166365 remote_ip 10.8.0.146 166367 username pourshad 166367 mac 166367 bytes_out 126269 166367 bytes_in 843509 166367 station_ip 5.119.81.48 166358 bytes_out 0 166358 bytes_in 0 166358 station_ip 5.119.221.234 166358 port 741 166358 unique_id port 166358 remote_ip 10.8.0.234 166366 username hosseine 166366 mac 166366 bytes_out 0 166366 bytes_in 0 166366 station_ip 83.122.68.157 166366 port 391 166366 unique_id port 166366 remote_ip 10.8.1.190 166368 username kordestani 166368 mac 166368 bytes_out 905363 166368 bytes_in 8471032 166368 station_ip 151.235.84.5 166368 port 741 166368 unique_id port 166368 remote_ip 10.8.0.74 166372 username tahmasebi 166372 mac 166372 bytes_out 0 166372 bytes_in 0 166372 station_ip 5.119.109.36 166372 port 768 166372 unique_id port 166372 remote_ip 10.8.0.42 166374 username pourshad 166374 mac 166374 bytes_out 0 166374 bytes_in 0 166374 station_ip 5.119.81.48 166374 port 395 166374 unique_id port 166374 remote_ip 10.8.1.154 166377 username tahmasebi 166377 mac 166377 bytes_out 0 166377 bytes_in 0 166377 station_ip 5.119.109.36 166377 port 769 166377 unique_id port 166377 remote_ip 10.8.0.42 166380 username morteza 166380 kill_reason Another user logged on this global unique id 166380 mac 166380 bytes_out 0 166380 bytes_in 0 166380 station_ip 83.123.207.46 166380 port 768 166380 unique_id port 166380 remote_ip 10.8.0.46 166384 username sedighe 166384 mac 166384 bytes_out 110238 166384 bytes_in 153904 166384 station_ip 83.123.238.94 166384 port 745 166384 unique_id port 166384 remote_ip 10.8.0.146 166386 username morteza 166386 mac 166386 bytes_out 0 166386 bytes_in 0 166386 station_ip 83.123.207.46 166386 port 768 166386 unique_id port 166386 remote_ip 10.8.0.46 166388 username tahmasebi 166388 mac 166388 bytes_out 2883 166388 bytes_in 5301 166388 station_ip 5.119.109.36 166388 port 395 166388 unique_id port 166388 remote_ip 10.8.1.90 166389 username tahmasebi 166389 mac 166389 bytes_out 0 166389 bytes_in 0 166389 station_ip 5.119.109.36 166389 port 392 166389 unique_id port 166389 remote_ip 10.8.1.90 166391 username tahmasebi 166391 mac 166391 bytes_out 0 166391 bytes_in 0 166391 station_ip 5.119.109.36 166391 port 392 166391 unique_id port 166391 remote_ip 10.8.1.90 166392 username tahmasebi 166392 mac 166392 bytes_out 0 166392 bytes_in 0 166392 station_ip 5.119.109.36 166392 port 395 166392 unique_id port 166392 remote_ip 10.8.1.90 166395 username morteza 166395 mac 166395 bytes_out 0 166395 bytes_in 0 166395 station_ip 83.123.207.46 166395 port 773 166395 unique_id port 166395 remote_ip 10.8.0.46 166398 username morteza 166398 mac 166398 bytes_out 0 166398 bytes_in 0 166398 station_ip 83.123.207.46 166398 port 770 166398 unique_id port 166398 remote_ip 10.8.0.46 166400 username morteza 166400 mac 166400 bytes_out 0 166400 bytes_in 0 166400 station_ip 83.123.207.46 166400 port 773 166400 unique_id port 166400 remote_ip 10.8.0.46 166402 username barzegar 166402 mac 166402 bytes_out 0 166402 bytes_in 0 166402 station_ip 5.119.221.234 166402 port 395 166402 unique_id port 166402 remote_ip 10.8.1.174 166405 username sedighe 166405 mac 166405 bytes_out 107854 166405 bytes_in 152971 166405 station_ip 37.129.76.135 166405 port 745 166405 unique_id port 166405 remote_ip 10.8.0.146 166407 username tahmasebi 166407 mac 166407 bytes_out 0 166407 bytes_in 0 166407 station_ip 5.119.109.36 166407 port 773 166407 unique_id port 166407 remote_ip 10.8.0.42 166415 username morteza 166415 mac 166415 bytes_out 0 166415 bytes_in 0 166360 remote_ip 10.8.0.230 166363 username hosseine 166363 mac 166363 bytes_out 0 166363 bytes_in 0 166363 station_ip 83.122.68.157 166363 port 391 166363 unique_id port 166363 remote_ip 10.8.1.190 166369 username tahmasebi 166369 mac 166369 bytes_out 0 166369 bytes_in 0 166369 station_ip 5.119.109.36 166369 port 741 166369 unique_id port 166369 remote_ip 10.8.0.42 166371 username farhad2 166371 mac 166371 bytes_out 0 166371 bytes_in 0 166371 station_ip 5.120.49.19 166371 port 768 166371 unique_id port 166375 username barzegar 166375 mac 166375 bytes_out 0 166375 bytes_in 0 166375 station_ip 5.119.221.234 166375 port 396 166375 unique_id port 166375 remote_ip 10.8.1.174 166378 username jamali 166378 kill_reason Relative expiration date has reached 166378 mac 166378 bytes_out 0 166378 bytes_in 0 166378 station_ip 5.120.144.130 166378 port 769 166378 unique_id port 166379 username pourshad 166379 mac 166379 bytes_out 0 166379 bytes_in 0 166379 station_ip 5.119.81.48 166379 port 769 166379 unique_id port 166379 remote_ip 10.8.0.18 166381 username godarzi 166381 kill_reason Another user logged on this global unique id 166381 mac 166381 bytes_out 0 166381 bytes_in 0 166381 station_ip 5.119.252.80 166381 port 775 166381 unique_id port 166385 username tahmasebi 166385 mac 166385 bytes_out 0 166385 bytes_in 0 166385 station_ip 5.119.109.36 166385 port 395 166385 unique_id port 166385 remote_ip 10.8.1.90 166387 username malekpoir 166387 mac 166387 bytes_out 1506520 166387 bytes_in 17773085 166387 station_ip 5.119.214.100 166387 port 392 166387 unique_id port 166387 remote_ip 10.8.1.54 166394 username morteza 166394 mac 166394 bytes_out 0 166394 bytes_in 0 166394 station_ip 83.123.207.46 166394 port 770 166394 unique_id port 166394 remote_ip 10.8.0.46 166396 username morteza 166396 mac 166396 bytes_out 0 166396 bytes_in 0 166396 station_ip 83.123.207.46 166396 port 770 166396 unique_id port 166396 remote_ip 10.8.0.46 166397 username morteza 166397 mac 166397 bytes_out 0 166397 bytes_in 0 166397 station_ip 83.123.207.46 166397 port 770 166397 unique_id port 166397 remote_ip 10.8.0.46 166403 username morteza 166403 mac 166403 bytes_out 0 166403 bytes_in 0 166403 station_ip 83.123.207.46 166403 port 396 166403 unique_id port 166403 remote_ip 10.8.1.62 166404 username morteza 166404 mac 166404 bytes_out 0 166404 bytes_in 0 166404 station_ip 83.123.207.46 166404 port 773 166404 unique_id port 166404 remote_ip 10.8.0.46 166412 username aminvpn 166412 unique_id port 166412 terminate_cause Lost-Carrier 166412 bytes_out 798975 166412 bytes_in 11996161 166412 station_ip 5.120.54.164 166412 port 15728723 166412 nas_port_type Virtual 166412 remote_ip 5.5.5.187 166414 username farhad2 166414 mac 166414 bytes_out 0 166414 bytes_in 0 166414 station_ip 5.120.49.19 166414 port 741 166414 unique_id port 166414 remote_ip 10.8.0.190 166416 username morteza 166416 mac 166416 bytes_out 0 166416 bytes_in 0 166416 station_ip 83.123.207.46 166416 port 395 166416 unique_id port 166416 remote_ip 10.8.1.62 166419 username morteza 166419 mac 166419 bytes_out 0 166419 bytes_in 0 166419 station_ip 83.123.207.46 166419 port 773 166419 unique_id port 166419 remote_ip 10.8.0.46 166425 username tahmasebi 166425 mac 166425 bytes_out 0 166425 bytes_in 0 166425 station_ip 5.119.109.36 166425 port 771 166425 unique_id port 166425 remote_ip 10.8.0.42 166428 username barzegar 166367 port 773 166367 unique_id port 166367 remote_ip 10.8.0.18 166370 username meysam 166370 mac 166370 bytes_out 718747 166370 bytes_in 9891116 166370 station_ip 188.159.254.104 166370 port 769 166370 unique_id port 166370 remote_ip 10.8.0.110 166373 username moradi 166373 kill_reason Another user logged on this global unique id 166373 mac 166373 bytes_out 0 166373 bytes_in 0 166373 station_ip 46.225.210.90 166373 port 767 166373 unique_id port 166373 remote_ip 10.8.0.126 166376 username kalantary 166376 mac 166376 bytes_out 445787 166376 bytes_in 1487423 166376 station_ip 83.122.17.237 166376 port 768 166376 unique_id port 166376 remote_ip 10.8.0.98 166382 username tahmasebi 166382 mac 166382 bytes_out 0 166382 bytes_in 0 166382 station_ip 5.119.109.36 166382 port 395 166382 unique_id port 166382 remote_ip 10.8.1.90 166383 username morteza 166383 mac 166383 bytes_out 0 166383 bytes_in 0 166383 station_ip 83.123.207.46 166383 port 768 166383 unique_id port 166390 username rezaei 166390 mac 166390 bytes_out 0 166390 bytes_in 0 166390 station_ip 5.119.14.25 166390 port 770 166390 unique_id port 166393 username barzegar 166393 mac 166393 bytes_out 0 166393 bytes_in 0 166393 station_ip 5.119.221.234 166393 port 392 166393 unique_id port 166393 remote_ip 10.8.1.174 166399 username morteza 166399 mac 166399 bytes_out 0 166399 bytes_in 0 166399 station_ip 83.123.207.46 166399 port 395 166399 unique_id port 166399 remote_ip 10.8.1.62 166401 username barzegar 166401 mac 166401 bytes_out 0 166401 bytes_in 0 166401 station_ip 5.119.221.234 166401 port 395 166401 unique_id port 166401 remote_ip 10.8.1.174 166406 username barzegar 166406 mac 166406 bytes_out 0 166406 bytes_in 0 166406 station_ip 5.119.221.234 166406 port 395 166406 unique_id port 166406 remote_ip 10.8.1.174 166408 username mohammadjavad 166408 mac 166408 bytes_out 0 166408 bytes_in 0 166408 station_ip 37.129.152.186 166408 port 396 166408 unique_id port 166408 remote_ip 10.8.1.146 166409 username tahmasebi 166409 mac 166409 bytes_out 0 166409 bytes_in 0 166409 station_ip 5.119.109.36 166409 port 773 166409 unique_id port 166409 remote_ip 10.8.0.42 166410 username farhad2 166410 mac 166410 bytes_out 3701057 166410 bytes_in 28936822 166410 station_ip 5.120.49.19 166410 port 741 166410 unique_id port 166410 remote_ip 10.8.0.190 166411 username morteza 166411 mac 166411 bytes_out 0 166411 bytes_in 0 166411 station_ip 83.123.207.46 166411 port 741 166411 unique_id port 166411 remote_ip 10.8.0.46 166413 username alirezazadeh 166413 unique_id port 166413 terminate_cause Lost-Carrier 166413 bytes_out 1033683 166413 bytes_in 13887402 166413 station_ip 5.119.210.164 166413 port 15728722 166413 nas_port_type Virtual 166413 remote_ip 5.5.5.188 166417 username godarzi 166417 kill_reason Another user logged on this global unique id 166417 mac 166417 bytes_out 0 166417 bytes_in 0 166417 station_ip 5.119.252.80 166417 port 775 166417 unique_id port 166418 username barzegar 166418 mac 166418 bytes_out 2907 166418 bytes_in 5293 166418 station_ip 5.119.221.234 166418 port 773 166418 unique_id port 166418 remote_ip 10.8.0.234 166420 username morteza 166420 mac 166420 bytes_out 0 166420 bytes_in 0 166420 station_ip 83.123.207.46 166420 port 773 166420 unique_id port 166420 remote_ip 10.8.0.46 166422 username mohammadjavad 166422 mac 166422 bytes_out 0 166422 bytes_in 0 166422 station_ip 83.123.182.227 166422 port 396 166415 station_ip 83.123.207.46 166415 port 395 166415 unique_id port 166415 remote_ip 10.8.1.62 166421 username sabaghnezhad 166421 mac 166421 bytes_out 183103 166421 bytes_in 1464260 166421 station_ip 37.129.218.82 166421 port 771 166421 unique_id port 166421 remote_ip 10.8.0.186 166423 username shadkam 166423 mac 166423 bytes_out 336503 166423 bytes_in 2756566 166423 station_ip 83.122.131.159 166423 port 741 166423 unique_id port 166423 remote_ip 10.8.0.62 166426 username morteza 166426 mac 166426 bytes_out 0 166426 bytes_in 0 166426 station_ip 83.123.207.46 166426 port 741 166426 unique_id port 166426 remote_ip 10.8.0.46 166427 username pourshad 166427 mac 166427 bytes_out 191327 166427 bytes_in 2201964 166427 station_ip 5.119.81.48 166427 port 769 166427 unique_id port 166427 remote_ip 10.8.0.18 166429 username morteza 166429 mac 166429 bytes_out 0 166429 bytes_in 0 166429 station_ip 83.123.207.46 166429 port 773 166429 unique_id port 166429 remote_ip 10.8.0.46 166432 username morteza 166432 mac 166432 bytes_out 0 166432 bytes_in 0 166432 station_ip 83.123.207.46 166432 port 780 166432 unique_id port 166432 remote_ip 10.8.0.46 166433 username farhad2 166433 mac 166433 bytes_out 572694 166433 bytes_in 2683098 166433 station_ip 5.120.49.19 166433 port 395 166433 unique_id port 166433 remote_ip 10.8.1.222 166434 username morteza 166434 mac 166434 bytes_out 0 166434 bytes_in 0 166434 station_ip 83.123.207.46 166434 port 771 166434 unique_id port 166434 remote_ip 10.8.0.46 166439 username sedighe 166439 mac 166439 bytes_out 0 166439 bytes_in 0 166439 station_ip 83.122.222.199 166439 port 777 166439 unique_id port 166439 remote_ip 10.8.0.146 166442 username morteza 166442 mac 166442 bytes_out 0 166442 bytes_in 0 166442 station_ip 83.123.207.46 166442 port 777 166442 unique_id port 166442 remote_ip 10.8.0.46 166443 username laleh 166443 kill_reason Another user logged on this global unique id 166443 mac 166443 bytes_out 0 166443 bytes_in 0 166443 station_ip 5.119.23.107 166443 port 770 166443 unique_id port 166443 remote_ip 10.8.0.214 166446 username farhad2 166446 mac 166446 bytes_out 0 166446 bytes_in 0 166446 station_ip 5.120.49.19 166446 port 396 166446 unique_id port 166446 remote_ip 10.8.1.222 166448 username tahmasebi 166448 mac 166448 bytes_out 0 166448 bytes_in 0 166448 station_ip 5.119.109.36 166448 port 771 166448 unique_id port 166448 remote_ip 10.8.0.42 166449 username pourshad 166449 mac 166449 bytes_out 15505 166449 bytes_in 32345 166449 station_ip 5.119.81.48 166449 port 776 166449 unique_id port 166449 remote_ip 10.8.0.18 166452 username morteza 166452 kill_reason Maximum number of concurrent logins reached 166452 mac 166452 bytes_out 0 166452 bytes_in 0 166452 station_ip 83.123.207.46 166452 port 780 166452 unique_id port 166459 username yaghobi 166459 mac 166459 bytes_out 530473 166459 bytes_in 6730821 166459 station_ip 113.203.24.220 166459 port 778 166459 unique_id port 166459 remote_ip 10.8.0.198 166464 username barzegar 166464 mac 166464 bytes_out 0 166464 bytes_in 0 166464 station_ip 5.119.221.234 166464 port 776 166464 unique_id port 166464 remote_ip 10.8.0.234 166465 username malekpoir 166465 mac 166465 bytes_out 2430030 166465 bytes_in 17720436 166465 station_ip 5.119.214.100 166465 port 768 166465 unique_id port 166465 remote_ip 10.8.0.58 166471 username sedighe 166471 mac 166471 bytes_out 33394 166471 bytes_in 32007 166422 unique_id port 166422 remote_ip 10.8.1.146 166424 username morteza 166424 mac 166424 bytes_out 0 166424 bytes_in 0 166424 station_ip 83.123.207.46 166424 port 771 166424 unique_id port 166424 remote_ip 10.8.0.46 166435 username morteza 166435 mac 166435 bytes_out 0 166435 bytes_in 0 166435 station_ip 83.123.207.46 166435 port 780 166435 unique_id port 166435 remote_ip 10.8.0.46 166441 username morteza 166441 mac 166441 bytes_out 0 166441 bytes_in 0 166441 station_ip 83.123.207.46 166441 port 777 166441 unique_id port 166441 remote_ip 10.8.0.46 166447 username morteza 166447 mac 166447 bytes_out 0 166447 bytes_in 0 166447 station_ip 83.123.207.46 166447 port 779 166447 unique_id port 166447 remote_ip 10.8.0.46 166453 username morteza 166453 kill_reason Maximum check online fails reached 166453 mac 166453 bytes_out 0 166453 bytes_in 0 166453 station_ip 83.123.207.46 166453 port 777 166453 unique_id port 166456 username barzegar 166456 mac 166456 bytes_out 0 166456 bytes_in 0 166456 station_ip 5.119.221.234 166456 port 396 166456 unique_id port 166456 remote_ip 10.8.1.174 166457 username farhad2 166457 mac 166457 bytes_out 0 166457 bytes_in 0 166457 station_ip 5.119.117.237 166457 port 776 166457 unique_id port 166457 remote_ip 10.8.0.190 166462 username barzegar 166462 mac 166462 bytes_out 3088 166462 bytes_in 5403 166462 station_ip 5.119.221.234 166462 port 776 166462 unique_id port 166462 remote_ip 10.8.0.234 166463 username yarmohamadi 166463 kill_reason Another user logged on this global unique id 166463 mac 166463 bytes_out 0 166463 bytes_in 0 166463 station_ip 5.119.75.184 166463 port 392 166463 unique_id port 166467 username aminvpn 166467 mac 166467 bytes_out 0 166467 bytes_in 0 166467 station_ip 5.119.210.108 166467 port 731 166467 unique_id port 166468 username tahmasebi 166468 mac 166468 bytes_out 0 166468 bytes_in 0 166468 station_ip 5.119.109.36 166468 port 773 166468 unique_id port 166468 remote_ip 10.8.0.42 166470 username tahmasebi 166470 mac 166470 bytes_out 0 166470 bytes_in 0 166470 station_ip 5.119.109.36 166470 port 773 166470 unique_id port 166470 remote_ip 10.8.0.42 166474 username sedighe 166474 mac 166474 bytes_out 6533 166474 bytes_in 9352 166474 station_ip 83.123.189.250 166474 port 773 166474 unique_id port 166474 remote_ip 10.8.0.146 166478 username yarmohamadi 166478 kill_reason Another user logged on this global unique id 166478 mac 166478 bytes_out 0 166478 bytes_in 0 166478 station_ip 5.119.75.184 166478 port 392 166478 unique_id port 166479 username tahmasebi 166479 mac 166479 bytes_out 0 166479 bytes_in 0 166479 station_ip 5.119.109.36 166479 port 768 166479 unique_id port 166479 remote_ip 10.8.0.42 166481 username laleh 166481 mac 166481 bytes_out 0 166481 bytes_in 0 166481 station_ip 5.119.23.107 166481 port 770 166481 unique_id port 166483 username aminvpn 166483 mac 166483 bytes_out 45673 166483 bytes_in 203724 166483 station_ip 5.119.162.70 166483 port 768 166483 unique_id port 166483 remote_ip 10.8.0.14 166489 username pourshad 166489 mac 166489 bytes_out 0 166489 bytes_in 0 166489 station_ip 5.119.81.48 166489 port 771 166489 unique_id port 166489 remote_ip 10.8.0.18 166494 username tahmasebi 166494 mac 166494 bytes_out 3021831 166494 bytes_in 193649 166494 station_ip 5.119.109.36 166494 port 745 166494 unique_id port 166494 remote_ip 10.8.0.42 166495 username tahmasebi 166495 mac 166428 mac 166428 bytes_out 0 166428 bytes_in 0 166428 station_ip 5.119.221.234 166428 port 396 166428 unique_id port 166428 remote_ip 10.8.1.174 166430 username morteza 166430 kill_reason Maximum check online fails reached 166430 mac 166430 bytes_out 0 166430 bytes_in 0 166430 station_ip 83.123.207.46 166430 port 741 166430 unique_id port 166431 username shadkam 166431 mac 166431 bytes_out 2406 166431 bytes_in 6176 166431 station_ip 37.129.99.216 166431 port 771 166431 unique_id port 166431 remote_ip 10.8.0.62 166436 username tahmorsi 166436 mac 166436 bytes_out 2238587 166436 bytes_in 25269961 166436 station_ip 86.57.49.108 166436 port 776 166436 unique_id port 166436 remote_ip 10.8.0.210 166437 username tahmasebi 166437 mac 166437 bytes_out 12578 166437 bytes_in 22987 166437 station_ip 5.119.109.36 166437 port 779 166437 unique_id port 166437 remote_ip 10.8.0.42 166438 username barzegar 166438 mac 166438 bytes_out 3257 166438 bytes_in 5329 166438 station_ip 5.119.221.234 166438 port 778 166438 unique_id port 166438 remote_ip 10.8.0.234 166440 username morteza 166440 mac 166440 bytes_out 0 166440 bytes_in 0 166440 station_ip 83.123.207.46 166440 port 771 166440 unique_id port 166440 remote_ip 10.8.0.46 166444 username barzegar 166444 mac 166444 bytes_out 0 166444 bytes_in 0 166444 station_ip 5.119.221.234 166444 port 777 166444 unique_id port 166444 remote_ip 10.8.0.234 166445 username morteza 166445 mac 166445 bytes_out 0 166445 bytes_in 0 166445 station_ip 83.123.207.46 166445 port 777 166445 unique_id port 166445 remote_ip 10.8.0.46 166450 username barzegar 166450 mac 166450 bytes_out 4336 166450 bytes_in 11480 166450 station_ip 5.119.221.234 166450 port 779 166450 unique_id port 166450 remote_ip 10.8.0.234 166451 username morteza 166451 mac 166451 bytes_out 0 166451 bytes_in 0 166451 station_ip 83.123.207.46 166451 port 396 166451 unique_id port 166451 remote_ip 10.8.1.62 166454 username yarmohamadi 166454 kill_reason Another user logged on this global unique id 166454 mac 166454 bytes_out 0 166454 bytes_in 0 166454 station_ip 5.119.75.184 166454 port 392 166454 unique_id port 166454 remote_ip 10.8.1.234 166455 username farhad2 166455 mac 166455 bytes_out 64968 166455 bytes_in 401530 166455 station_ip 5.119.117.237 166455 port 776 166455 unique_id port 166455 remote_ip 10.8.0.190 166458 username morteza 166458 kill_reason Maximum check online fails reached 166458 mac 166458 bytes_out 0 166458 bytes_in 0 166458 station_ip 83.123.207.46 166458 port 779 166458 unique_id port 166460 username saeed9658 166460 mac 166460 bytes_out 0 166460 bytes_in 0 166460 station_ip 5.119.72.95 166460 port 773 166460 unique_id port 166460 remote_ip 10.8.0.166 166461 username farhad2 166461 mac 166461 bytes_out 82160 166461 bytes_in 423174 166461 station_ip 5.119.117.237 166461 port 396 166461 unique_id port 166461 remote_ip 10.8.1.222 166466 username barzegar 166466 mac 166466 bytes_out 2530 166466 bytes_in 5000 166466 station_ip 5.119.221.234 166466 port 396 166466 unique_id port 166466 remote_ip 10.8.1.174 166469 username yarmohamadi 166469 kill_reason Another user logged on this global unique id 166469 mac 166469 bytes_out 0 166469 bytes_in 0 166469 station_ip 5.119.75.184 166469 port 392 166469 unique_id port 166472 username kordestani 166472 mac 166472 bytes_out 0 166472 bytes_in 0 166472 station_ip 151.235.80.194 166472 port 731 166472 unique_id port 166472 remote_ip 10.8.0.74 166471 station_ip 83.122.222.199 166471 port 768 166471 unique_id port 166471 remote_ip 10.8.0.146 166475 username sedighe 166475 mac 166475 bytes_out 0 166475 bytes_in 0 166475 station_ip 37.129.147.120 166475 port 731 166475 unique_id port 166475 remote_ip 10.8.0.146 166477 username tahmasebi 166477 mac 166477 bytes_out 18659 166477 bytes_in 35000 166477 station_ip 5.119.109.36 166477 port 768 166477 unique_id port 166477 remote_ip 10.8.0.42 166480 username tahmasebi 166480 mac 166480 bytes_out 0 166480 bytes_in 0 166480 station_ip 5.119.109.36 166480 port 768 166480 unique_id port 166480 remote_ip 10.8.0.42 166487 username farhad2 166487 kill_reason Another user logged on this global unique id 166487 mac 166487 bytes_out 0 166487 bytes_in 0 166487 station_ip 5.119.19.132 166487 port 776 166487 unique_id port 166487 remote_ip 10.8.0.190 166490 username sedighe 166490 mac 166490 bytes_out 0 166490 bytes_in 0 166490 station_ip 37.129.147.120 166490 port 745 166490 unique_id port 166490 remote_ip 10.8.0.146 166492 username sedighe 166492 mac 166492 bytes_out 0 166492 bytes_in 0 166492 station_ip 37.129.147.120 166492 port 770 166492 unique_id port 166492 remote_ip 10.8.0.146 166496 username moradi 166496 kill_reason Another user logged on this global unique id 166496 mac 166496 bytes_out 0 166496 bytes_in 0 166496 station_ip 46.225.210.90 166496 port 767 166496 unique_id port 166498 username tahmasebi 166498 mac 166498 bytes_out 0 166498 bytes_in 0 166498 station_ip 5.119.109.36 166498 port 771 166498 unique_id port 166498 remote_ip 10.8.0.42 166500 username laleh 166500 mac 166500 bytes_out 1309087 166500 bytes_in 24519393 166500 station_ip 5.119.23.107 166500 port 775 166500 unique_id port 166500 remote_ip 10.8.0.214 166505 username sedighe 166505 mac 166505 bytes_out 0 166505 bytes_in 0 166505 station_ip 37.129.147.120 166505 port 396 166505 unique_id port 166505 remote_ip 10.8.1.78 166510 username tahmasebi 166510 mac 166510 bytes_out 0 166510 bytes_in 0 166510 station_ip 5.119.109.36 166510 port 769 166510 unique_id port 166510 remote_ip 10.8.0.42 166514 username yarmohamadi 166514 kill_reason Another user logged on this global unique id 166514 mac 166514 bytes_out 0 166514 bytes_in 0 166514 station_ip 5.119.75.184 166514 port 392 166514 unique_id port 166519 username tahmasebi 166519 mac 166519 bytes_out 0 166519 bytes_in 0 166519 station_ip 5.119.109.36 166519 port 745 166519 unique_id port 166519 remote_ip 10.8.0.42 166521 username yarmohamadi 166521 kill_reason Another user logged on this global unique id 166521 mac 166521 bytes_out 0 166521 bytes_in 0 166521 station_ip 5.119.75.184 166521 port 392 166521 unique_id port 166525 username rahim 166525 kill_reason Another user logged on this global unique id 166525 mac 166525 bytes_out 0 166525 bytes_in 0 166525 station_ip 5.119.211.178 166525 port 768 166525 unique_id port 166525 remote_ip 10.8.0.50 166526 username barzegar 166526 mac 166526 bytes_out 0 166526 bytes_in 0 166526 station_ip 5.119.221.234 166526 port 778 166526 unique_id port 166526 remote_ip 10.8.0.234 166531 username rahim 166531 mac 166531 bytes_out 0 166531 bytes_in 0 166531 station_ip 5.119.211.178 166531 port 768 166531 unique_id port 166531 remote_ip 10.8.0.50 166534 username yaghobi 166534 mac 166534 bytes_out 0 166534 bytes_in 0 166534 station_ip 83.123.65.152 166534 port 745 166534 unique_id port 166534 remote_ip 10.8.0.198 166536 username rahim 166536 mac 166473 username hatami 166473 mac 166473 bytes_out 503436 166473 bytes_in 3049481 166473 station_ip 151.235.124.203 166473 port 395 166473 unique_id port 166473 remote_ip 10.8.1.134 166476 username godarzi 166476 mac 166476 bytes_out 0 166476 bytes_in 0 166476 station_ip 5.119.252.80 166476 port 775 166476 unique_id port 166482 username alipour 166482 mac 166482 bytes_out 1970542 166482 bytes_in 23089136 166482 station_ip 37.129.1.81 166482 port 745 166482 unique_id port 166482 remote_ip 10.8.0.102 166484 username barzegar 166484 mac 166484 bytes_out 0 166484 bytes_in 0 166484 station_ip 5.119.221.234 166484 port 395 166484 unique_id port 166484 remote_ip 10.8.1.174 166485 username sedighe 166485 mac 166485 bytes_out 0 166485 bytes_in 0 166485 station_ip 37.129.147.120 166485 port 773 166485 unique_id port 166485 remote_ip 10.8.0.146 166486 username tahmasebi 166486 mac 166486 bytes_out 0 166486 bytes_in 0 166486 station_ip 5.119.109.36 166486 port 768 166486 unique_id port 166486 remote_ip 10.8.0.42 166488 username yarmohamadi 166488 kill_reason Another user logged on this global unique id 166488 mac 166488 bytes_out 0 166488 bytes_in 0 166488 station_ip 5.119.75.184 166488 port 392 166488 unique_id port 166491 username tahmasebi 166491 mac 166491 bytes_out 0 166491 bytes_in 0 166491 station_ip 5.119.109.36 166491 port 745 166491 unique_id port 166491 remote_ip 10.8.0.42 166493 username barzegar 166493 mac 166493 bytes_out 0 166493 bytes_in 0 166493 station_ip 5.119.221.234 166493 port 396 166493 unique_id port 166493 remote_ip 10.8.1.174 166499 username vanila 166499 mac 166499 bytes_out 169042 166499 bytes_in 251479 166499 station_ip 83.123.73.119 166499 port 770 166499 unique_id port 166499 remote_ip 10.8.0.178 166502 username mohammadjavad 166502 mac 166502 bytes_out 491175 166502 bytes_in 6339936 166502 station_ip 37.129.167.170 166502 port 769 166502 unique_id port 166502 remote_ip 10.8.0.142 166504 username sedighe 166504 mac 166504 bytes_out 0 166504 bytes_in 0 166504 station_ip 37.129.147.120 166504 port 771 166504 unique_id port 166504 remote_ip 10.8.0.146 166512 username yaghobi 166512 mac 166512 bytes_out 2322785 166512 bytes_in 26683607 166512 station_ip 83.122.121.97 166512 port 768 166512 unique_id port 166512 remote_ip 10.8.0.198 166516 username pourshad 166516 mac 166516 bytes_out 0 166516 bytes_in 0 166516 station_ip 5.119.81.48 166516 port 395 166516 unique_id port 166516 remote_ip 10.8.1.154 166518 username farhad2 166518 mac 166518 bytes_out 0 166518 bytes_in 0 166518 station_ip 5.119.19.132 166518 port 771 166518 unique_id port 166518 remote_ip 10.8.0.190 166522 username tahmasebi 166522 mac 166522 bytes_out 0 166522 bytes_in 0 166522 station_ip 5.119.109.36 166522 port 775 166522 unique_id port 166522 remote_ip 10.8.0.42 166523 username malekpoir 166523 mac 166523 bytes_out 60971 166523 bytes_in 72152 166523 station_ip 5.119.214.100 166523 port 731 166523 unique_id port 166523 remote_ip 10.8.0.58 166524 username barzegar 166524 mac 166524 bytes_out 0 166524 bytes_in 0 166524 station_ip 5.119.221.234 166524 port 395 166524 unique_id port 166524 remote_ip 10.8.1.174 166528 username jafari 166528 kill_reason Another user logged on this global unique id 166528 mac 166528 bytes_out 0 166528 bytes_in 0 166528 station_ip 37.137.18.243 166528 port 773 166528 unique_id port 166529 username rahim 166529 mac 166529 bytes_out 0 166495 bytes_out 0 166495 bytes_in 0 166495 station_ip 5.119.109.36 166495 port 771 166495 unique_id port 166495 remote_ip 10.8.0.42 166497 username barzegar 166497 mac 166497 bytes_out 0 166497 bytes_in 0 166497 station_ip 5.119.221.234 166497 port 396 166497 unique_id port 166497 remote_ip 10.8.1.174 166501 username vanila 166501 mac 166501 bytes_out 70222 166501 bytes_in 173537 166501 station_ip 83.123.73.119 166501 port 771 166501 unique_id port 166501 remote_ip 10.8.0.178 166503 username vanila 166503 mac 166503 bytes_out 0 166503 bytes_in 0 166503 station_ip 83.123.73.119 166503 port 770 166503 unique_id port 166503 remote_ip 10.8.0.178 166506 username farhad2 166506 kill_reason Another user logged on this global unique id 166506 mac 166506 bytes_out 0 166506 bytes_in 0 166506 station_ip 5.119.19.132 166506 port 776 166506 unique_id port 166507 username barzegar 166507 mac 166507 bytes_out 0 166507 bytes_in 0 166507 station_ip 5.119.221.234 166507 port 769 166507 unique_id port 166507 remote_ip 10.8.0.234 166508 username tahmasebi 166508 mac 166508 bytes_out 0 166508 bytes_in 0 166508 station_ip 5.119.109.36 166508 port 769 166508 unique_id port 166508 remote_ip 10.8.0.42 166509 username jafari 166509 kill_reason Another user logged on this global unique id 166509 mac 166509 bytes_out 0 166509 bytes_in 0 166509 station_ip 37.137.18.243 166509 port 773 166509 unique_id port 166509 remote_ip 10.8.0.242 166511 username tahmasebi 166511 mac 166511 bytes_out 0 166511 bytes_in 0 166511 station_ip 5.119.109.36 166511 port 769 166511 unique_id port 166511 remote_ip 10.8.0.42 166513 username barzegar 166513 mac 166513 bytes_out 0 166513 bytes_in 0 166513 station_ip 5.119.221.234 166513 port 396 166513 unique_id port 166513 remote_ip 10.8.1.174 166515 username farhad2 166515 mac 166515 bytes_out 0 166515 bytes_in 0 166515 station_ip 5.119.19.132 166515 port 776 166515 unique_id port 166517 username godarzi 166517 mac 166517 bytes_out 0 166517 bytes_in 0 166517 station_ip 5.119.88.130 166517 port 745 166517 unique_id port 166517 remote_ip 10.8.0.174 166520 username barzegar 166520 mac 166520 bytes_out 22660 166520 bytes_in 36791 166520 station_ip 5.119.221.234 166520 port 396 166520 unique_id port 166520 remote_ip 10.8.1.174 166527 username yarmohamadi 166527 mac 166527 bytes_out 0 166527 bytes_in 0 166527 station_ip 5.119.75.184 166527 port 392 166527 unique_id port 166532 username rahim 166532 mac 166532 bytes_out 0 166532 bytes_in 0 166532 station_ip 5.119.211.178 166532 port 745 166532 unique_id port 166532 remote_ip 10.8.0.50 166533 username rahim 166533 mac 166533 bytes_out 0 166533 bytes_in 0 166533 station_ip 5.119.211.178 166533 port 392 166533 unique_id port 166533 remote_ip 10.8.1.126 166535 username tahmasebi 166535 kill_reason Another user logged on this global unique id 166535 mac 166535 bytes_out 0 166535 bytes_in 0 166535 station_ip 5.119.109.36 166535 port 731 166535 unique_id port 166535 remote_ip 10.8.0.42 166537 username rahim 166537 mac 166537 bytes_out 0 166537 bytes_in 0 166537 station_ip 5.119.211.178 166537 port 392 166537 unique_id port 166537 remote_ip 10.8.1.126 166541 username malekpoir 166541 mac 166541 bytes_out 0 166541 bytes_in 0 166541 station_ip 5.119.214.100 166541 port 775 166541 unique_id port 166541 remote_ip 10.8.0.58 166545 username rahim 166545 mac 166545 bytes_out 0 166545 bytes_in 0 166529 bytes_in 0 166529 station_ip 5.119.211.178 166529 port 768 166529 unique_id port 166530 username farhad2 166530 mac 166530 bytes_out 1170258 166530 bytes_in 8459371 166530 station_ip 5.119.19.132 166530 port 745 166530 unique_id port 166530 remote_ip 10.8.0.190 166538 username rahim 166538 mac 166538 bytes_out 4668 166538 bytes_in 11185 166538 station_ip 5.119.211.178 166538 port 781 166538 unique_id port 166538 remote_ip 10.8.0.50 166539 username rahim 166539 mac 166539 bytes_out 0 166539 bytes_in 0 166539 station_ip 5.119.211.178 166539 port 392 166539 unique_id port 166539 remote_ip 10.8.1.126 166540 username barzegar 166540 mac 166540 bytes_out 440671 166540 bytes_in 441985 166540 station_ip 5.119.221.234 166540 port 778 166540 unique_id port 166540 remote_ip 10.8.0.234 166542 username rahim 166542 mac 166542 bytes_out 0 166542 bytes_in 0 166542 station_ip 5.119.211.178 166542 port 392 166542 unique_id port 166542 remote_ip 10.8.1.126 166548 username rahim 166548 mac 166548 bytes_out 0 166548 bytes_in 0 166548 station_ip 5.119.211.178 166548 port 780 166548 unique_id port 166548 remote_ip 10.8.0.50 166549 username rahim 166549 mac 166549 bytes_out 0 166549 bytes_in 0 166549 station_ip 5.119.211.178 166549 port 780 166549 unique_id port 166549 remote_ip 10.8.0.50 166553 username rahim 166553 mac 166553 bytes_out 0 166553 bytes_in 0 166553 station_ip 5.119.211.178 166553 port 396 166553 unique_id port 166553 remote_ip 10.8.1.126 166555 username farhad2 166555 mac 166555 bytes_out 0 166555 bytes_in 0 166555 station_ip 5.119.19.132 166555 port 392 166555 unique_id port 166555 remote_ip 10.8.1.222 166558 username farhad2 166558 mac 166558 bytes_out 0 166558 bytes_in 0 166558 station_ip 5.119.19.132 166558 port 395 166558 unique_id port 166558 remote_ip 10.8.1.222 166560 username farhad2 166560 mac 166560 bytes_out 0 166560 bytes_in 0 166560 station_ip 5.119.19.132 166560 port 395 166560 unique_id port 166560 remote_ip 10.8.1.222 166568 username houshang 166568 mac 166568 bytes_out 219898 166568 bytes_in 486801 166568 station_ip 5.119.129.245 166568 port 775 166568 unique_id port 166568 remote_ip 10.8.0.134 166570 username farhad2 166570 mac 166570 bytes_out 0 166570 bytes_in 0 166570 station_ip 5.119.19.132 166570 port 392 166570 unique_id port 166570 remote_ip 10.8.1.222 166572 username tahmasebi 166572 mac 166572 bytes_out 0 166572 bytes_in 0 166572 station_ip 5.119.109.36 166572 port 731 166572 unique_id port 166580 username sedighe 166580 mac 166580 bytes_out 148509 166580 bytes_in 724218 166580 station_ip 37.129.147.120 166580 port 782 166580 unique_id port 166580 remote_ip 10.8.0.146 166582 username moradi 166582 mac 166582 bytes_out 10532 166582 bytes_in 22446 166582 station_ip 37.129.158.49 166582 port 769 166582 unique_id port 166582 remote_ip 10.8.0.126 166583 username farhad2 166583 mac 166583 bytes_out 0 166583 bytes_in 0 166583 station_ip 5.119.19.132 166583 port 395 166583 unique_id port 166583 remote_ip 10.8.1.222 166585 username amin.saeedi 166585 unique_id port 166585 terminate_cause User-Request 166585 bytes_out 4930398 166585 bytes_in 198444354 166585 station_ip 31.59.34.125 166585 port 15728726 166585 nas_port_type Virtual 166585 remote_ip 5.5.5.185 166588 username tahmasebi 166588 mac 166588 bytes_out 0 166588 bytes_in 0 166588 station_ip 5.119.109.36 166588 port 392 166588 unique_id port 166536 bytes_out 0 166536 bytes_in 0 166536 station_ip 5.119.211.178 166536 port 392 166536 unique_id port 166536 remote_ip 10.8.1.126 166543 username yaghobi 166543 mac 166543 bytes_out 407728 166543 bytes_in 3513910 166543 station_ip 83.123.65.152 166543 port 780 166543 unique_id port 166543 remote_ip 10.8.0.198 166544 username tahmasebi 166544 kill_reason Another user logged on this global unique id 166544 mac 166544 bytes_out 0 166544 bytes_in 0 166544 station_ip 5.119.109.36 166544 port 731 166544 unique_id port 166551 username barzegar 166551 mac 166551 bytes_out 0 166551 bytes_in 0 166551 station_ip 5.119.221.234 166551 port 392 166551 unique_id port 166551 remote_ip 10.8.1.174 166554 username jafari 166554 kill_reason Another user logged on this global unique id 166554 mac 166554 bytes_out 0 166554 bytes_in 0 166554 station_ip 37.137.18.243 166554 port 773 166554 unique_id port 166557 username kalantary 166557 kill_reason Another user logged on this global unique id 166557 mac 166557 bytes_out 0 166557 bytes_in 0 166557 station_ip 83.122.116.121 166557 port 769 166557 unique_id port 166557 remote_ip 10.8.0.98 166562 username sedighe 166562 mac 166562 bytes_out 224691 166562 bytes_in 213593 166562 station_ip 37.129.147.120 166562 port 771 166562 unique_id port 166562 remote_ip 10.8.0.146 166563 username rahim 166563 mac 166563 bytes_out 0 166563 bytes_in 0 166563 station_ip 5.119.211.178 166563 port 781 166563 unique_id port 166563 remote_ip 10.8.0.50 166565 username rahim 166565 mac 166565 bytes_out 0 166565 bytes_in 0 166565 station_ip 5.119.211.178 166565 port 392 166565 unique_id port 166565 remote_ip 10.8.1.126 166566 username kalantary 166566 mac 166566 bytes_out 0 166566 bytes_in 0 166566 station_ip 83.122.116.121 166566 port 769 166566 unique_id port 166569 username rahim 166569 mac 166569 bytes_out 0 166569 bytes_in 0 166569 station_ip 5.119.211.178 166569 port 769 166569 unique_id port 166569 remote_ip 10.8.0.50 166573 username rahim 166573 mac 166573 bytes_out 0 166573 bytes_in 0 166573 station_ip 5.119.211.178 166573 port 392 166573 unique_id port 166573 remote_ip 10.8.1.126 166577 username rahim 166577 mac 166577 bytes_out 0 166577 bytes_in 0 166577 station_ip 5.119.211.178 166577 port 731 166577 unique_id port 166577 remote_ip 10.8.0.50 166581 username rahim 166581 mac 166581 bytes_out 0 166581 bytes_in 0 166581 station_ip 5.119.211.178 166581 port 731 166581 unique_id port 166581 remote_ip 10.8.0.50 166587 username rahim 166587 mac 166587 bytes_out 0 166587 bytes_in 0 166587 station_ip 5.119.211.178 166587 port 769 166587 unique_id port 166587 remote_ip 10.8.0.50 166589 username farhad2 166589 mac 166589 bytes_out 0 166589 bytes_in 0 166589 station_ip 5.119.19.132 166589 port 731 166589 unique_id port 166589 remote_ip 10.8.0.190 166590 username rahim 166590 mac 166590 bytes_out 0 166590 bytes_in 0 166590 station_ip 5.119.211.178 166590 port 392 166590 unique_id port 166590 remote_ip 10.8.1.126 166596 username rahim 166596 mac 166596 bytes_out 0 166596 bytes_in 0 166596 station_ip 5.119.211.178 166596 port 769 166596 unique_id port 166596 remote_ip 10.8.0.50 166600 username sabaghnezhad 166600 mac 166600 bytes_out 138265 166600 bytes_in 1183339 166600 station_ip 37.129.88.156 166600 port 731 166600 unique_id port 166600 remote_ip 10.8.0.186 166603 username rajaei 166603 kill_reason Another user logged on this global unique id 166603 mac 166545 station_ip 5.119.211.178 166545 port 395 166545 unique_id port 166545 remote_ip 10.8.1.126 166546 username rahim 166546 mac 166546 bytes_out 0 166546 bytes_in 0 166546 station_ip 5.119.211.178 166546 port 775 166546 unique_id port 166546 remote_ip 10.8.0.50 166547 username farhad2 166547 mac 166547 bytes_out 0 166547 bytes_in 0 166547 station_ip 5.119.19.132 166547 port 395 166547 unique_id port 166547 remote_ip 10.8.1.222 166550 username milan 166550 kill_reason Another user logged on this global unique id 166550 mac 166550 bytes_out 0 166550 bytes_in 0 166550 station_ip 5.120.91.29 166550 port 768 166550 unique_id port 166550 remote_ip 10.8.0.218 166552 username farhad2 166552 mac 166552 bytes_out 0 166552 bytes_in 0 166552 station_ip 5.119.19.132 166552 port 395 166552 unique_id port 166552 remote_ip 10.8.1.222 166556 username arash 166556 mac 166556 bytes_out 18224 166556 bytes_in 28506 166556 station_ip 37.27.21.105 166556 port 781 166556 unique_id port 166556 remote_ip 10.8.0.122 166559 username rahim 166559 mac 166559 bytes_out 0 166559 bytes_in 0 166559 station_ip 5.119.211.178 166559 port 392 166559 unique_id port 166559 remote_ip 10.8.1.126 166561 username kordestani 166561 mac 166561 bytes_out 1467701 166561 bytes_in 21224896 166561 station_ip 151.235.116.162 166561 port 780 166561 unique_id port 166561 remote_ip 10.8.0.74 166564 username farhad2 166564 mac 166564 bytes_out 0 166564 bytes_in 0 166564 station_ip 5.119.19.132 166564 port 392 166564 unique_id port 166564 remote_ip 10.8.1.222 166567 username farhad2 166567 mac 166567 bytes_out 0 166567 bytes_in 0 166567 station_ip 5.119.19.132 166567 port 392 166567 unique_id port 166567 remote_ip 10.8.1.222 166571 username moradi 166571 mac 166571 bytes_out 0 166571 bytes_in 0 166571 station_ip 46.225.210.90 166571 port 767 166571 unique_id port 166574 username rahim 166574 mac 166574 bytes_out 0 166574 bytes_in 0 166574 station_ip 5.119.211.178 166574 port 767 166574 unique_id port 166574 remote_ip 10.8.0.50 166575 username barzegar 166575 mac 166575 bytes_out 7418 166575 bytes_in 15742 166575 station_ip 5.119.221.234 166575 port 731 166575 unique_id port 166575 remote_ip 10.8.0.234 166576 username farhad2 166576 mac 166576 bytes_out 0 166576 bytes_in 0 166576 station_ip 5.119.19.132 166576 port 392 166576 unique_id port 166576 remote_ip 10.8.1.222 166578 username farhad2 166578 mac 166578 bytes_out 0 166578 bytes_in 0 166578 station_ip 5.119.19.132 166578 port 392 166578 unique_id port 166578 remote_ip 10.8.1.222 166579 username rahim 166579 mac 166579 bytes_out 0 166579 bytes_in 0 166579 station_ip 5.119.211.178 166579 port 731 166579 unique_id port 166579 remote_ip 10.8.0.50 166584 username rahim 166584 mac 166584 bytes_out 0 166584 bytes_in 0 166584 station_ip 5.119.211.178 166584 port 395 166584 unique_id port 166584 remote_ip 10.8.1.126 166586 username farhad2 166586 mac 166586 bytes_out 0 166586 bytes_in 0 166586 station_ip 5.119.19.132 166586 port 731 166586 unique_id port 166586 remote_ip 10.8.0.190 166591 username khademi 166591 kill_reason Another user logged on this global unique id 166591 mac 166591 bytes_out 0 166591 bytes_in 0 166591 station_ip 37.129.42.119 166591 port 758 166591 unique_id port 166593 username alikomsari 166593 mac 166593 bytes_out 2362967 166593 bytes_in 14688503 166593 station_ip 5.120.69.85 166593 port 770 166588 remote_ip 10.8.1.90 166592 username rahim 166592 mac 166592 bytes_out 0 166592 bytes_in 0 166592 station_ip 5.119.211.178 166592 port 769 166592 unique_id port 166592 remote_ip 10.8.0.50 166594 username farhad2 166594 mac 166594 bytes_out 0 166594 bytes_in 0 166594 station_ip 5.119.19.132 166594 port 781 166594 unique_id port 166594 remote_ip 10.8.0.190 166597 username vanila 166597 mac 166597 bytes_out 124834 166597 bytes_in 533357 166597 station_ip 83.123.166.195 166597 port 782 166597 unique_id port 166597 remote_ip 10.8.0.178 166598 username rahim 166598 mac 166598 bytes_out 0 166598 bytes_in 0 166598 station_ip 5.119.211.178 166598 port 769 166598 unique_id port 166598 remote_ip 10.8.0.50 166602 username jafari 166602 kill_reason Another user logged on this global unique id 166602 mac 166602 bytes_out 0 166602 bytes_in 0 166602 station_ip 37.137.18.243 166602 port 773 166602 unique_id port 166604 username rahim 166604 mac 166604 bytes_out 0 166604 bytes_in 0 166604 station_ip 5.119.211.178 166604 port 395 166604 unique_id port 166604 remote_ip 10.8.1.126 166606 username tahmasebi 166606 mac 166606 bytes_out 0 166606 bytes_in 0 166606 station_ip 5.119.109.36 166606 port 392 166606 unique_id port 166606 remote_ip 10.8.1.90 166607 username rahim 166607 mac 166607 bytes_out 0 166607 bytes_in 0 166607 station_ip 5.119.211.178 166607 port 392 166607 unique_id port 166607 remote_ip 10.8.1.126 166608 username rahim 166608 mac 166608 bytes_out 0 166608 bytes_in 0 166608 station_ip 5.119.211.178 166608 port 781 166608 unique_id port 166608 remote_ip 10.8.0.50 166610 username houshang 166610 mac 166610 bytes_out 180606 166610 bytes_in 1114345 166610 station_ip 5.119.129.245 166610 port 770 166610 unique_id port 166610 remote_ip 10.8.0.134 166614 username hosseine 166614 mac 166614 bytes_out 0 166614 bytes_in 0 166614 station_ip 83.122.68.157 166614 port 391 166614 unique_id port 166614 remote_ip 10.8.1.190 166616 username kalantary 166616 mac 166616 bytes_out 2782995 166616 bytes_in 20924523 166616 station_ip 83.122.116.121 166616 port 771 166616 unique_id port 166616 remote_ip 10.8.0.98 166618 username rahim 166618 mac 166618 bytes_out 0 166618 bytes_in 0 166618 station_ip 5.119.211.178 166618 port 771 166618 unique_id port 166618 remote_ip 10.8.0.50 166619 username jafari 166619 kill_reason Another user logged on this global unique id 166619 mac 166619 bytes_out 0 166619 bytes_in 0 166619 station_ip 37.137.18.243 166619 port 773 166619 unique_id port 166621 username barzegar 166621 mac 166621 bytes_out 25705 166621 bytes_in 34805 166621 station_ip 5.119.221.234 166621 port 767 166621 unique_id port 166621 remote_ip 10.8.0.234 166628 username tahmasebi 166628 mac 166628 bytes_out 0 166628 bytes_in 0 166628 station_ip 5.119.109.36 166628 port 781 166628 unique_id port 166628 remote_ip 10.8.0.42 166629 username rahim 166629 mac 166629 bytes_out 0 166629 bytes_in 0 166629 station_ip 5.119.211.178 166629 port 392 166629 unique_id port 166629 remote_ip 10.8.1.126 166630 username rahim 166630 mac 166630 bytes_out 0 166630 bytes_in 0 166630 station_ip 5.119.211.178 166630 port 392 166630 unique_id port 166630 remote_ip 10.8.1.126 166631 username rahim 166631 mac 166631 bytes_out 0 166631 bytes_in 0 166631 station_ip 5.119.211.178 166631 port 731 166631 unique_id port 166631 remote_ip 10.8.0.50 166632 username rahim 166632 mac 166593 unique_id port 166593 remote_ip 10.8.0.26 166595 username rahim 166595 mac 166595 bytes_out 0 166595 bytes_in 0 166595 station_ip 5.119.211.178 166595 port 392 166595 unique_id port 166595 remote_ip 10.8.1.126 166599 username tahmasebi 166599 mac 166599 bytes_out 0 166599 bytes_in 0 166599 station_ip 5.119.109.36 166599 port 392 166599 unique_id port 166599 remote_ip 10.8.1.90 166601 username rahim 166601 mac 166601 bytes_out 0 166601 bytes_in 0 166601 station_ip 5.119.211.178 166601 port 392 166601 unique_id port 166601 remote_ip 10.8.1.126 166605 username rahim 166605 mac 166605 bytes_out 0 166605 bytes_in 0 166605 station_ip 5.119.211.178 166605 port 781 166605 unique_id port 166605 remote_ip 10.8.0.50 166611 username rahim 166611 mac 166611 bytes_out 0 166611 bytes_in 0 166611 station_ip 5.119.211.178 166611 port 781 166611 unique_id port 166611 remote_ip 10.8.0.50 166613 username rahim 166613 mac 166613 bytes_out 0 166613 bytes_in 0 166613 station_ip 5.119.211.178 166613 port 392 166613 unique_id port 166613 remote_ip 10.8.1.126 166620 username rahim 166620 mac 166620 bytes_out 0 166620 bytes_in 0 166620 station_ip 5.119.211.178 166620 port 392 166620 unique_id port 166620 remote_ip 10.8.1.126 166622 username rajaei 166622 kill_reason Another user logged on this global unique id 166622 mac 166622 bytes_out 0 166622 bytes_in 0 166622 station_ip 37.156.156.60 166622 port 775 166622 unique_id port 166623 username rahim 166623 mac 166623 bytes_out 0 166623 bytes_in 0 166623 station_ip 5.119.211.178 166623 port 392 166623 unique_id port 166623 remote_ip 10.8.1.126 166626 username vanila 166626 mac 166626 bytes_out 0 166626 bytes_in 0 166626 station_ip 83.123.166.195 166626 port 731 166626 unique_id port 166626 remote_ip 10.8.0.178 166627 username rahim 166627 mac 166627 bytes_out 0 166627 bytes_in 0 166627 station_ip 5.119.211.178 166627 port 392 166627 unique_id port 166627 remote_ip 10.8.1.126 166635 username tahmasebi 166635 mac 166635 bytes_out 0 166635 bytes_in 0 166635 station_ip 5.119.109.36 166635 port 731 166635 unique_id port 166635 remote_ip 10.8.0.42 166637 username rajaei 166637 kill_reason Another user logged on this global unique id 166637 mac 166637 bytes_out 0 166637 bytes_in 0 166637 station_ip 37.156.156.60 166637 port 775 166637 unique_id port 166642 username forozandeh1 166642 mac 166642 bytes_out 74341 166642 bytes_in 62106 166642 station_ip 37.129.198.26 166642 port 783 166642 unique_id port 166642 remote_ip 10.8.0.130 166644 username barzegar 166644 mac 166644 bytes_out 0 166644 bytes_in 0 166644 station_ip 5.119.221.234 166644 port 767 166644 unique_id port 166644 remote_ip 10.8.0.234 166646 username vanila 166646 mac 166646 bytes_out 0 166646 bytes_in 0 166646 station_ip 83.123.166.195 166646 port 776 166646 unique_id port 166646 remote_ip 10.8.0.178 166648 username rajaei 166648 kill_reason Another user logged on this global unique id 166648 mac 166648 bytes_out 0 166648 bytes_in 0 166648 station_ip 37.156.156.60 166648 port 775 166648 unique_id port 166649 username houshang 166649 mac 166649 bytes_out 0 166649 bytes_in 0 166649 station_ip 5.119.129.245 166649 port 771 166649 unique_id port 166649 remote_ip 10.8.0.134 166651 username sekonji3 166651 mac 166651 bytes_out 307683 166651 bytes_in 5530858 166651 station_ip 113.203.84.5 166651 port 781 166651 unique_id port 166651 remote_ip 10.8.0.6 166603 bytes_out 0 166603 bytes_in 0 166603 station_ip 37.156.156.60 166603 port 775 166603 unique_id port 166603 remote_ip 10.8.0.34 166609 username hamid.e 166609 unique_id port 166609 terminate_cause User-Request 166609 bytes_out 4968318 166609 bytes_in 191381624 166609 station_ip 31.59.34.125 166609 port 15728727 166609 nas_port_type Virtual 166609 remote_ip 5.5.5.183 166612 username pourshad 166612 mac 166612 bytes_out 1016385 166612 bytes_in 15637057 166612 station_ip 5.119.81.48 166612 port 776 166612 unique_id port 166612 remote_ip 10.8.0.18 166615 username rahim 166615 mac 166615 bytes_out 0 166615 bytes_in 0 166615 station_ip 5.119.211.178 166615 port 776 166615 unique_id port 166615 remote_ip 10.8.0.50 166617 username hatami 166617 mac 166617 bytes_out 532209 166617 bytes_in 4089681 166617 station_ip 151.235.86.105 166617 port 731 166617 unique_id port 166617 remote_ip 10.8.0.106 166624 username rahim 166624 mac 166624 bytes_out 0 166624 bytes_in 0 166624 station_ip 5.119.211.178 166624 port 392 166624 unique_id port 166624 remote_ip 10.8.1.126 166625 username rahim 166625 mac 166625 bytes_out 0 166625 bytes_in 0 166625 station_ip 5.119.211.178 166625 port 392 166625 unique_id port 166625 remote_ip 10.8.1.126 166636 username tahmasebi 166636 mac 166636 bytes_out 0 166636 bytes_in 0 166636 station_ip 5.119.109.36 166636 port 776 166636 unique_id port 166636 remote_ip 10.8.0.42 166639 username kalantary 166639 mac 166639 bytes_out 0 166639 bytes_in 0 166639 station_ip 83.122.116.121 166639 port 731 166639 unique_id port 166639 remote_ip 10.8.0.98 166641 username forozandeh1 166641 mac 166641 bytes_out 798831 166641 bytes_in 7745619 166641 station_ip 83.123.234.27 166641 port 782 166641 unique_id port 166641 remote_ip 10.8.0.130 166647 username tahmasebi 166647 mac 166647 bytes_out 0 166647 bytes_in 0 166647 station_ip 5.119.109.36 166647 port 776 166647 unique_id port 166647 remote_ip 10.8.0.42 166654 username rahim 166654 mac 166654 bytes_out 0 166654 bytes_in 0 166654 station_ip 83.122.164.129 166654 port 784 166654 unique_id port 166654 remote_ip 10.8.0.50 166657 username farhad2 166657 mac 166657 bytes_out 0 166657 bytes_in 0 166657 station_ip 5.120.84.114 166657 port 771 166657 unique_id port 166657 remote_ip 10.8.0.190 166659 username rahim 166659 mac 166659 bytes_out 0 166659 bytes_in 0 166659 station_ip 83.122.164.129 166659 port 731 166659 unique_id port 166659 remote_ip 10.8.0.50 166661 username sekonji3 166661 mac 166661 bytes_out 0 166661 bytes_in 0 166661 station_ip 113.203.84.5 166661 port 771 166661 unique_id port 166661 remote_ip 10.8.0.6 166662 username rahim 166662 mac 166662 bytes_out 0 166662 bytes_in 0 166662 station_ip 83.122.164.129 166662 port 771 166662 unique_id port 166662 remote_ip 10.8.0.50 166669 username barzegar 166669 mac 166669 bytes_out 0 166669 bytes_in 0 166669 station_ip 5.119.221.234 166669 port 781 166669 unique_id port 166669 remote_ip 10.8.0.234 166671 username ayobi 166671 kill_reason Another user logged on this global unique id 166671 mac 166671 bytes_out 0 166671 bytes_in 0 166671 station_ip 37.27.14.215 166671 port 780 166671 unique_id port 166671 remote_ip 10.8.0.94 166672 username rahim 166672 mac 166672 bytes_out 0 166672 bytes_in 0 166672 station_ip 83.122.164.129 166672 port 781 166672 unique_id port 166672 remote_ip 10.8.0.50 166677 username rahim 166677 mac 166677 bytes_out 0 166632 bytes_out 0 166632 bytes_in 0 166632 station_ip 83.122.164.129 166632 port 731 166632 unique_id port 166632 remote_ip 10.8.0.50 166633 username jafari 166633 kill_reason Another user logged on this global unique id 166633 mac 166633 bytes_out 0 166633 bytes_in 0 166633 station_ip 37.137.18.243 166633 port 773 166633 unique_id port 166634 username kalantary 166634 mac 166634 bytes_out 0 166634 bytes_in 0 166634 station_ip 83.122.116.121 166634 port 776 166634 unique_id port 166634 remote_ip 10.8.0.98 166638 username rahim 166638 mac 166638 bytes_out 0 166638 bytes_in 0 166638 station_ip 83.122.164.129 166638 port 783 166638 unique_id port 166638 remote_ip 10.8.0.50 166640 username milan 166640 kill_reason Another user logged on this global unique id 166640 mac 166640 bytes_out 0 166640 bytes_in 0 166640 station_ip 5.120.91.29 166640 port 768 166640 unique_id port 166643 username sabaghnezhad 166643 mac 166643 bytes_out 0 166643 bytes_in 0 166643 station_ip 37.129.88.156 166643 port 769 166643 unique_id port 166643 remote_ip 10.8.0.186 166645 username tahmasebi 166645 mac 166645 bytes_out 0 166645 bytes_in 0 166645 station_ip 5.119.109.36 166645 port 782 166645 unique_id port 166645 remote_ip 10.8.0.42 166650 username godarzi 166650 kill_reason Another user logged on this global unique id 166650 mac 166650 bytes_out 0 166650 bytes_in 0 166650 station_ip 5.119.88.130 166650 port 745 166650 unique_id port 166650 remote_ip 10.8.0.174 166660 username sekonji3 166660 mac 166660 bytes_out 0 166660 bytes_in 0 166660 station_ip 113.203.84.5 166660 port 781 166660 unique_id port 166660 remote_ip 10.8.0.6 166665 username rahim 166665 kill_reason Maximum check online fails reached 166665 mac 166665 bytes_out 0 166665 bytes_in 0 166665 station_ip 83.122.164.129 166665 port 731 166665 unique_id port 166668 username tahmasebi 166668 mac 166668 bytes_out 0 166668 bytes_in 0 166668 station_ip 5.119.109.36 166668 port 785 166668 unique_id port 166668 remote_ip 10.8.0.42 166673 username rahim 166673 mac 166673 bytes_out 0 166673 bytes_in 0 166673 station_ip 83.122.164.129 166673 port 781 166673 unique_id port 166673 remote_ip 10.8.0.50 166674 username rahim 166674 mac 166674 bytes_out 0 166674 bytes_in 0 166674 station_ip 83.122.164.129 166674 port 782 166674 unique_id port 166674 remote_ip 10.8.0.50 166678 username sekonji3 166678 mac 166678 bytes_out 0 166678 bytes_in 0 166678 station_ip 113.203.84.5 166678 port 782 166678 unique_id port 166678 remote_ip 10.8.0.6 166679 username rahim 166679 mac 166679 bytes_out 0 166679 bytes_in 0 166679 station_ip 83.122.164.129 166679 port 782 166679 unique_id port 166679 remote_ip 10.8.0.50 166682 username barzegar 166682 mac 166682 bytes_out 0 166682 bytes_in 0 166682 station_ip 5.119.221.234 166682 port 395 166682 unique_id port 166682 remote_ip 10.8.1.174 166684 username forozandeh1 166684 mac 166684 bytes_out 0 166684 bytes_in 0 166684 station_ip 83.122.151.133 166684 port 781 166684 unique_id port 166684 remote_ip 10.8.0.130 166685 username rahim 166685 mac 166685 bytes_out 0 166685 bytes_in 0 166685 station_ip 83.122.164.129 166685 port 781 166685 unique_id port 166685 remote_ip 10.8.0.50 166690 username tahmorsi 166690 mac 166690 bytes_out 0 166690 bytes_in 0 166690 station_ip 37.137.31.67 166690 port 782 166690 unique_id port 166690 remote_ip 10.8.0.210 166696 username rahim 166696 mac 166696 bytes_out 0 166696 bytes_in 0 166652 username sekonji3 166652 mac 166652 bytes_out 0 166652 bytes_in 0 166652 station_ip 113.203.84.5 166652 port 781 166652 unique_id port 166652 remote_ip 10.8.0.6 166653 username shadkam 166653 mac 166653 bytes_out 0 166653 bytes_in 0 166653 station_ip 37.129.36.253 166653 port 731 166653 unique_id port 166653 remote_ip 10.8.0.62 166655 username barzegar 166655 mac 166655 bytes_out 0 166655 bytes_in 0 166655 station_ip 5.119.221.234 166655 port 782 166655 unique_id port 166655 remote_ip 10.8.0.234 166656 username godarzi 166656 mac 166656 bytes_out 0 166656 bytes_in 0 166656 station_ip 5.119.88.130 166656 port 745 166656 unique_id port 166658 username khademi 166658 kill_reason Another user logged on this global unique id 166658 mac 166658 bytes_out 0 166658 bytes_in 0 166658 station_ip 37.129.42.119 166658 port 758 166658 unique_id port 166663 username sekonji3 166663 mac 166663 bytes_out 0 166663 bytes_in 0 166663 station_ip 113.203.84.5 166663 port 782 166663 unique_id port 166663 remote_ip 10.8.0.6 166664 username rahim 166664 mac 166664 bytes_out 0 166664 bytes_in 0 166664 station_ip 83.122.164.129 166664 port 771 166664 unique_id port 166664 remote_ip 10.8.0.50 166666 username rahim 166666 mac 166666 bytes_out 0 166666 bytes_in 0 166666 station_ip 83.122.164.129 166666 port 771 166666 unique_id port 166666 remote_ip 10.8.0.50 166667 username rahim 166667 mac 166667 bytes_out 0 166667 bytes_in 0 166667 station_ip 83.122.164.129 166667 port 771 166667 unique_id port 166667 remote_ip 10.8.0.50 166670 username rajaei 166670 kill_reason Another user logged on this global unique id 166670 mac 166670 bytes_out 0 166670 bytes_in 0 166670 station_ip 37.156.156.60 166670 port 775 166670 unique_id port 166675 username malekpoir 166675 kill_reason Another user logged on this global unique id 166675 mac 166675 bytes_out 0 166675 bytes_in 0 166675 station_ip 5.119.214.100 166675 port 778 166675 unique_id port 166675 remote_ip 10.8.0.58 166676 username pourshad 166676 kill_reason Another user logged on this global unique id 166676 mac 166676 bytes_out 0 166676 bytes_in 0 166676 station_ip 5.119.81.48 166676 port 770 166676 unique_id port 166676 remote_ip 10.8.0.18 166680 username rahim 166680 mac 166680 bytes_out 0 166680 bytes_in 0 166680 station_ip 83.122.164.129 166680 port 782 166680 unique_id port 166680 remote_ip 10.8.0.50 166683 username rahim 166683 mac 166683 bytes_out 0 166683 bytes_in 0 166683 station_ip 83.122.164.129 166683 port 784 166683 unique_id port 166683 remote_ip 10.8.0.50 166687 username farhad2 166687 mac 166687 bytes_out 0 166687 bytes_in 0 166687 station_ip 5.120.84.114 166687 port 745 166687 unique_id port 166687 remote_ip 10.8.0.190 166693 username barzegar 166693 mac 166693 bytes_out 0 166693 bytes_in 0 166693 station_ip 5.119.221.234 166693 port 395 166693 unique_id port 166693 remote_ip 10.8.1.174 166694 username sekonji3 166694 mac 166694 bytes_out 0 166694 bytes_in 0 166694 station_ip 113.203.84.5 166694 port 782 166694 unique_id port 166694 remote_ip 10.8.0.6 166698 username rahim 166698 mac 166698 bytes_out 0 166698 bytes_in 0 166698 station_ip 83.122.164.129 166698 port 782 166698 unique_id port 166698 remote_ip 10.8.0.50 166705 username rahim 166705 mac 166705 bytes_out 0 166705 bytes_in 0 166705 station_ip 83.122.164.129 166705 port 782 166705 unique_id port 166705 remote_ip 10.8.0.50 166707 username rahim 166677 bytes_in 0 166677 station_ip 83.122.164.129 166677 port 782 166677 unique_id port 166677 remote_ip 10.8.0.50 166681 username rahim 166681 mac 166681 bytes_out 0 166681 bytes_in 0 166681 station_ip 83.122.164.129 166681 port 784 166681 unique_id port 166681 remote_ip 10.8.0.50 166686 username tahmasebi 166686 mac 166686 bytes_out 0 166686 bytes_in 0 166686 station_ip 5.119.109.36 166686 port 785 166686 unique_id port 166686 remote_ip 10.8.0.42 166688 username farhad2 166688 mac 166688 bytes_out 0 166688 bytes_in 0 166688 station_ip 5.120.84.114 166688 port 781 166688 unique_id port 166688 remote_ip 10.8.0.190 166689 username rahim 166689 mac 166689 bytes_out 0 166689 bytes_in 0 166689 station_ip 83.122.164.129 166689 port 784 166689 unique_id port 166689 remote_ip 10.8.0.50 166691 username houshang 166691 kill_reason Another user logged on this global unique id 166691 mac 166691 bytes_out 0 166691 bytes_in 0 166691 station_ip 5.119.129.245 166691 port 783 166691 unique_id port 166691 remote_ip 10.8.0.134 166692 username rahim 166692 mac 166692 bytes_out 0 166692 bytes_in 0 166692 station_ip 83.122.164.129 166692 port 782 166692 unique_id port 166692 remote_ip 10.8.0.50 166695 username rahim 166695 mac 166695 bytes_out 0 166695 bytes_in 0 166695 station_ip 83.122.164.129 166695 port 782 166695 unique_id port 166695 remote_ip 10.8.0.50 166699 username rahim 166699 mac 166699 bytes_out 0 166699 bytes_in 0 166699 station_ip 83.122.164.129 166699 port 782 166699 unique_id port 166699 remote_ip 10.8.0.50 166700 username rajaei 166700 mac 166700 bytes_out 0 166700 bytes_in 0 166700 station_ip 37.156.156.60 166700 port 775 166700 unique_id port 166704 username rahim 166704 mac 166704 bytes_out 0 166704 bytes_in 0 166704 station_ip 83.122.164.129 166704 port 783 166704 unique_id port 166704 remote_ip 10.8.0.50 166709 username sekonji3 166709 mac 166709 bytes_out 0 166709 bytes_in 0 166709 station_ip 113.203.84.5 166709 port 775 166709 unique_id port 166709 remote_ip 10.8.0.6 166711 username barzegar 166711 mac 166711 bytes_out 0 166711 bytes_in 0 166711 station_ip 5.119.221.234 166711 port 395 166711 unique_id port 166711 remote_ip 10.8.1.174 166713 username tahmorsi 166713 mac 166713 bytes_out 0 166713 bytes_in 0 166713 station_ip 86.57.29.116 166713 port 784 166713 unique_id port 166713 remote_ip 10.8.0.210 166715 username rahim 166715 mac 166715 bytes_out 0 166715 bytes_in 0 166715 station_ip 83.122.164.129 166715 port 778 166715 unique_id port 166715 remote_ip 10.8.0.50 166719 username tahmasebi 166719 mac 166719 bytes_out 0 166719 bytes_in 0 166719 station_ip 5.119.109.36 166719 port 769 166719 unique_id port 166719 remote_ip 10.8.0.42 166720 username tahmasebi 166720 mac 166720 bytes_out 0 166720 bytes_in 0 166720 station_ip 5.119.109.36 166720 port 778 166720 unique_id port 166720 remote_ip 10.8.0.42 166721 username sekonji3 166721 mac 166721 bytes_out 0 166721 bytes_in 0 166721 station_ip 113.203.84.5 166721 port 778 166721 unique_id port 166721 remote_ip 10.8.0.6 166722 username rahim 166722 mac 166722 bytes_out 0 166722 bytes_in 0 166722 station_ip 83.122.164.129 166722 port 769 166722 unique_id port 166722 remote_ip 10.8.0.50 166724 username sedighe 166724 mac 166724 bytes_out 0 166724 bytes_in 0 166724 station_ip 113.203.51.196 166724 port 771 166724 unique_id port 166724 remote_ip 10.8.0.146 166696 station_ip 83.122.164.129 166696 port 782 166696 unique_id port 166696 remote_ip 10.8.0.50 166697 username houshang 166697 mac 166697 bytes_out 0 166697 bytes_in 0 166697 station_ip 5.119.129.245 166697 port 783 166697 unique_id port 166701 username rahim 166701 mac 166701 bytes_out 0 166701 bytes_in 0 166701 station_ip 83.122.164.129 166701 port 775 166701 unique_id port 166701 remote_ip 10.8.0.50 166702 username barzegar 166702 mac 166702 bytes_out 87953 166702 bytes_in 1029525 166702 station_ip 5.119.221.234 166702 port 395 166702 unique_id port 166702 remote_ip 10.8.1.174 166703 username tahmasebi 166703 mac 166703 bytes_out 0 166703 bytes_in 0 166703 station_ip 5.119.109.36 166703 port 782 166703 unique_id port 166703 remote_ip 10.8.0.42 166706 username barzegar 166706 mac 166706 bytes_out 0 166706 bytes_in 0 166706 station_ip 5.119.221.234 166706 port 395 166706 unique_id port 166706 remote_ip 10.8.1.174 166708 username forozandeh1 166708 mac 166708 bytes_out 0 166708 bytes_in 0 166708 station_ip 37.129.238.114 166708 port 775 166708 unique_id port 166708 remote_ip 10.8.0.130 166710 username rahim 166710 mac 166710 bytes_out 0 166710 bytes_in 0 166710 station_ip 83.122.164.129 166710 port 775 166710 unique_id port 166710 remote_ip 10.8.0.50 166712 username malekpoir 166712 mac 166712 bytes_out 0 166712 bytes_in 0 166712 station_ip 5.119.214.100 166712 port 778 166712 unique_id port 166717 username vanila 166717 mac 166717 bytes_out 0 166717 bytes_in 0 166717 station_ip 83.123.166.195 166717 port 769 166717 unique_id port 166717 remote_ip 10.8.0.178 166718 username shadkam 166718 mac 166718 bytes_out 1408491 166718 bytes_in 19043812 166718 station_ip 37.129.36.253 166718 port 392 166718 unique_id port 166718 remote_ip 10.8.1.218 166725 username farhad2 166725 kill_reason Another user logged on this global unique id 166725 mac 166725 bytes_out 0 166725 bytes_in 0 166725 station_ip 5.120.84.114 166725 port 781 166725 unique_id port 166725 remote_ip 10.8.0.190 166727 username mostafa_es78 166727 kill_reason Another user logged on this global unique id 166727 mac 166727 bytes_out 0 166727 bytes_in 0 166727 station_ip 83.122.77.186 166727 port 775 166727 unique_id port 166727 remote_ip 10.8.0.194 166728 username pourshad 166728 kill_reason Another user logged on this global unique id 166728 mac 166728 bytes_out 0 166728 bytes_in 0 166728 station_ip 5.119.81.48 166728 port 770 166728 unique_id port 166730 username sekonji3 166730 mac 166730 bytes_out 0 166730 bytes_in 0 166730 station_ip 113.203.84.5 166730 port 769 166730 unique_id port 166730 remote_ip 10.8.0.6 166732 username mostafa_es78 166732 mac 166732 bytes_out 0 166732 bytes_in 0 166732 station_ip 83.122.77.186 166732 port 775 166732 unique_id port 166734 username barzegar 166734 mac 166734 bytes_out 0 166734 bytes_in 0 166734 station_ip 5.119.221.234 166734 port 392 166734 unique_id port 166734 remote_ip 10.8.1.174 166736 username hosseine 166736 mac 166736 bytes_out 3296550 166736 bytes_in 14079768 166736 station_ip 83.122.68.157 166736 port 391 166736 unique_id port 166736 remote_ip 10.8.1.190 166737 username mostafa_es78 166737 mac 166737 bytes_out 0 166737 bytes_in 0 166737 station_ip 83.122.234.224 166737 port 769 166737 unique_id port 166737 remote_ip 10.8.0.194 166739 username sekonji3 166739 mac 166739 bytes_out 0 166739 bytes_in 0 166739 station_ip 113.203.84.5 166739 port 775 166707 mac 166707 bytes_out 0 166707 bytes_in 0 166707 station_ip 83.122.164.129 166707 port 782 166707 unique_id port 166707 remote_ip 10.8.0.50 166714 username amin.saeedi 166714 unique_id port 166714 terminate_cause Lost-Carrier 166714 bytes_out 10258610 166714 bytes_in 319210495 166714 station_ip 31.59.34.125 166714 port 15728728 166714 nas_port_type Virtual 166714 remote_ip 5.5.5.182 166716 username barzegar 166716 mac 166716 bytes_out 2448 166716 bytes_in 4951 166716 station_ip 5.119.221.234 166716 port 395 166716 unique_id port 166716 remote_ip 10.8.1.174 166723 username sekonji3 166723 mac 166723 bytes_out 0 166723 bytes_in 0 166723 station_ip 113.203.84.5 166723 port 778 166723 unique_id port 166723 remote_ip 10.8.0.6 166726 username tahmasebi 166726 mac 166726 bytes_out 0 166726 bytes_in 0 166726 station_ip 5.119.109.36 166726 port 769 166726 unique_id port 166726 remote_ip 10.8.0.42 166733 username mostafa_es78 166733 mac 166733 bytes_out 0 166733 bytes_in 0 166733 station_ip 83.122.234.224 166733 port 769 166733 unique_id port 166733 remote_ip 10.8.0.194 166735 username mostafa_es78 166735 mac 166735 bytes_out 0 166735 bytes_in 0 166735 station_ip 83.122.77.186 166735 port 775 166735 unique_id port 166735 remote_ip 10.8.0.194 166738 username mostafa_es78 166738 mac 166738 bytes_out 0 166738 bytes_in 0 166738 station_ip 83.122.77.186 166738 port 775 166738 unique_id port 166738 remote_ip 10.8.0.194 166743 username sekonji3 166743 mac 166743 bytes_out 0 166743 bytes_in 0 166743 station_ip 113.203.84.5 166743 port 775 166743 unique_id port 166743 remote_ip 10.8.0.6 166745 username sekonji3 166745 mac 166745 bytes_out 0 166745 bytes_in 0 166745 station_ip 113.203.84.5 166745 port 775 166745 unique_id port 166745 remote_ip 10.8.0.6 166752 username barzegar 166752 mac 166752 bytes_out 270541 166752 bytes_in 2358807 166752 station_ip 5.119.221.234 166752 port 391 166752 unique_id port 166752 remote_ip 10.8.1.174 166754 username tahmasebi 166754 mac 166754 bytes_out 0 166754 bytes_in 0 166754 station_ip 5.119.109.36 166754 port 392 166754 unique_id port 166754 remote_ip 10.8.1.90 166758 username mostafa_es78 166758 mac 166758 bytes_out 0 166758 bytes_in 0 166758 station_ip 83.122.77.186 166758 port 775 166758 unique_id port 166758 remote_ip 10.8.0.194 166760 username mostafa_es78 166760 mac 166760 bytes_out 0 166760 bytes_in 0 166760 station_ip 83.122.77.186 166760 port 775 166760 unique_id port 166760 remote_ip 10.8.0.194 166764 username tahmasebi 166764 mac 166764 bytes_out 0 166764 bytes_in 0 166764 station_ip 5.119.109.36 166764 port 392 166764 unique_id port 166764 remote_ip 10.8.1.90 166767 username fezealinaghi 166767 mac 166767 bytes_out 0 166767 bytes_in 0 166767 station_ip 37.129.124.230 166767 port 771 166767 unique_id port 166767 remote_ip 10.8.0.78 166769 username mostafa_es78 166769 mac 166769 bytes_out 0 166769 bytes_in 0 166769 station_ip 83.122.234.224 166769 port 769 166769 unique_id port 166769 remote_ip 10.8.0.194 166772 username mostafa_es78 166772 mac 166772 bytes_out 0 166772 bytes_in 0 166772 station_ip 83.122.234.224 166772 port 769 166772 unique_id port 166772 remote_ip 10.8.0.194 166777 username barzegar 166777 mac 166777 bytes_out 0 166777 bytes_in 0 166777 station_ip 5.119.221.234 166777 port 391 166777 unique_id port 166777 remote_ip 10.8.1.174 166782 username tahmasebi 166782 mac 166729 username sekonji3 166729 mac 166729 bytes_out 0 166729 bytes_in 0 166729 station_ip 113.203.84.5 166729 port 769 166729 unique_id port 166729 remote_ip 10.8.0.6 166731 username tahmasebi 166731 mac 166731 bytes_out 0 166731 bytes_in 0 166731 station_ip 5.119.109.36 166731 port 769 166731 unique_id port 166731 remote_ip 10.8.0.42 166741 username farhad2 166741 kill_reason Another user logged on this global unique id 166741 mac 166741 bytes_out 0 166741 bytes_in 0 166741 station_ip 5.120.84.114 166741 port 781 166741 unique_id port 166742 username mostafa_es78 166742 mac 166742 bytes_out 0 166742 bytes_in 0 166742 station_ip 83.122.77.186 166742 port 775 166742 unique_id port 166742 remote_ip 10.8.0.194 166746 username vanila 166746 mac 166746 bytes_out 845201 166746 bytes_in 8322765 166746 station_ip 83.123.166.195 166746 port 771 166746 unique_id port 166746 remote_ip 10.8.0.178 166753 username mostafa_es78 166753 mac 166753 bytes_out 0 166753 bytes_in 0 166753 station_ip 83.122.77.186 166753 port 778 166753 unique_id port 166753 remote_ip 10.8.0.194 166756 username mostafa_es78 166756 mac 166756 bytes_out 0 166756 bytes_in 0 166756 station_ip 83.122.234.224 166756 port 769 166756 unique_id port 166756 remote_ip 10.8.0.194 166762 username sekonji3 166762 mac 166762 bytes_out 0 166762 bytes_in 0 166762 station_ip 113.203.84.5 166762 port 775 166762 unique_id port 166762 remote_ip 10.8.0.6 166771 username mostafa_es78 166771 mac 166771 bytes_out 0 166771 bytes_in 0 166771 station_ip 83.122.77.186 166771 port 771 166771 unique_id port 166771 remote_ip 10.8.0.194 166774 username mostafa_es78 166774 mac 166774 bytes_out 0 166774 bytes_in 0 166774 station_ip 83.122.77.186 166774 port 771 166774 unique_id port 166774 remote_ip 10.8.0.194 166775 username tahmasebi 166775 mac 166775 bytes_out 0 166775 bytes_in 0 166775 station_ip 5.119.109.36 166775 port 392 166775 unique_id port 166775 remote_ip 10.8.1.90 166776 username farhad2 166776 mac 166776 bytes_out 0 166776 bytes_in 0 166776 station_ip 5.120.84.114 166776 port 781 166776 unique_id port 166778 username mostafa_es78 166778 mac 166778 bytes_out 0 166778 bytes_in 0 166778 station_ip 83.122.234.224 166778 port 775 166778 unique_id port 166778 remote_ip 10.8.0.194 166779 username farhad2 166779 mac 166779 bytes_out 0 166779 bytes_in 0 166779 station_ip 5.120.84.114 166779 port 775 166779 unique_id port 166779 remote_ip 10.8.0.190 166780 username tahmasebi 166780 mac 166780 bytes_out 0 166780 bytes_in 0 166780 station_ip 5.119.109.36 166780 port 775 166780 unique_id port 166780 remote_ip 10.8.0.42 166783 username mostafa_es78 166783 mac 166783 bytes_out 23333 166783 bytes_in 46947 166783 station_ip 83.122.77.186 166783 port 776 166783 unique_id port 166783 remote_ip 10.8.0.194 166792 username mostafa_es78 166792 mac 166792 bytes_out 0 166792 bytes_in 0 166792 station_ip 83.122.77.186 166792 port 781 166792 unique_id port 166792 remote_ip 10.8.0.194 166794 username mostafa_es78 166794 mac 166794 bytes_out 0 166794 bytes_in 0 166794 station_ip 83.122.234.224 166794 port 770 166794 unique_id port 166794 remote_ip 10.8.0.194 166795 username mostafa_es78 166795 mac 166795 bytes_out 0 166795 bytes_in 0 166795 station_ip 83.122.77.186 166795 port 781 166795 unique_id port 166795 remote_ip 10.8.0.194 166797 username mostafa_es78 166797 mac 166797 bytes_out 0 166797 bytes_in 0 166739 unique_id port 166739 remote_ip 10.8.0.6 166740 username mostafa_es78 166740 mac 166740 bytes_out 0 166740 bytes_in 0 166740 station_ip 83.122.234.224 166740 port 769 166740 unique_id port 166740 remote_ip 10.8.0.194 166744 username tahmasebi 166744 mac 166744 bytes_out 0 166744 bytes_in 0 166744 station_ip 5.119.109.36 166744 port 392 166744 unique_id port 166744 remote_ip 10.8.1.90 166747 username mostafa_es78 166747 mac 166747 bytes_out 213324 166747 bytes_in 5414950 166747 station_ip 83.122.234.224 166747 port 769 166747 unique_id port 166747 remote_ip 10.8.0.194 166748 username mostafa_es78 166748 mac 166748 bytes_out 0 166748 bytes_in 0 166748 station_ip 83.122.77.186 166748 port 771 166748 unique_id port 166748 remote_ip 10.8.0.194 166749 username mostafa_es78 166749 mac 166749 bytes_out 0 166749 bytes_in 0 166749 station_ip 83.122.234.224 166749 port 769 166749 unique_id port 166749 remote_ip 10.8.0.194 166750 username mostafa_es78 166750 mac 166750 bytes_out 0 166750 bytes_in 0 166750 station_ip 83.122.77.186 166750 port 771 166750 unique_id port 166750 remote_ip 10.8.0.194 166751 username mostafa_es78 166751 mac 166751 bytes_out 0 166751 bytes_in 0 166751 station_ip 83.122.234.224 166751 port 769 166751 unique_id port 166751 remote_ip 10.8.0.194 166755 username sekonji3 166755 mac 166755 bytes_out 0 166755 bytes_in 0 166755 station_ip 113.203.84.5 166755 port 775 166755 unique_id port 166755 remote_ip 10.8.0.6 166757 username sekonji3 166757 mac 166757 bytes_out 0 166757 bytes_in 0 166757 station_ip 113.203.84.5 166757 port 769 166757 unique_id port 166757 remote_ip 10.8.0.6 166759 username mostafa_es78 166759 mac 166759 bytes_out 0 166759 bytes_in 0 166759 station_ip 83.122.234.224 166759 port 769 166759 unique_id port 166759 remote_ip 10.8.0.194 166761 username mostafa_es78 166761 mac 166761 bytes_out 0 166761 bytes_in 0 166761 station_ip 83.122.234.224 166761 port 769 166761 unique_id port 166761 remote_ip 10.8.0.194 166763 username farhad2 166763 kill_reason Another user logged on this global unique id 166763 mac 166763 bytes_out 0 166763 bytes_in 0 166763 station_ip 5.120.84.114 166763 port 781 166763 unique_id port 166765 username barzegar 166765 mac 166765 bytes_out 3110 166765 bytes_in 5319 166765 station_ip 5.119.221.234 166765 port 391 166765 unique_id port 166765 remote_ip 10.8.1.174 166766 username mostafa_es78 166766 mac 166766 bytes_out 0 166766 bytes_in 0 166766 station_ip 83.122.77.186 166766 port 778 166766 unique_id port 166766 remote_ip 10.8.0.194 166768 username tahmasebi 166768 mac 166768 bytes_out 0 166768 bytes_in 0 166768 station_ip 5.119.109.36 166768 port 391 166768 unique_id port 166768 remote_ip 10.8.1.90 166770 username arash 166770 mac 166770 bytes_out 0 166770 bytes_in 0 166770 station_ip 37.27.21.105 166770 port 776 166770 unique_id port 166770 remote_ip 10.8.0.122 166773 username nilufarrajaei 166773 kill_reason Another user logged on this global unique id 166773 mac 166773 bytes_out 0 166773 bytes_in 0 166773 station_ip 83.122.2.94 166773 port 767 166773 unique_id port 166773 remote_ip 10.8.0.206 166781 username arash 166781 kill_reason Maximum check online fails reached 166781 mac 166781 bytes_out 0 166781 bytes_in 0 166781 station_ip 37.27.21.105 166781 port 771 166781 unique_id port 166785 username aminvpn 166785 unique_id port 166785 terminate_cause Lost-Carrier 166785 bytes_out 168020 166785 bytes_in 1440171 166782 bytes_out 0 166782 bytes_in 0 166782 station_ip 5.119.109.36 166782 port 775 166782 unique_id port 166782 remote_ip 10.8.0.42 166784 username sekonji3 166784 mac 166784 bytes_out 0 166784 bytes_in 0 166784 station_ip 113.203.84.5 166784 port 776 166784 unique_id port 166784 remote_ip 10.8.0.6 166786 username mostafa_es78 166786 mac 166786 bytes_out 0 166786 bytes_in 0 166786 station_ip 83.122.234.224 166786 port 775 166786 unique_id port 166786 remote_ip 10.8.0.194 166789 username tahmasebi 166789 mac 166789 bytes_out 0 166789 bytes_in 0 166789 station_ip 5.119.109.36 166789 port 776 166789 unique_id port 166789 remote_ip 10.8.0.42 166790 username mostafa_es78 166790 mac 166790 bytes_out 0 166790 bytes_in 0 166790 station_ip 83.122.234.224 166790 port 775 166790 unique_id port 166790 remote_ip 10.8.0.194 166791 username pourshad 166791 mac 166791 bytes_out 0 166791 bytes_in 0 166791 station_ip 5.119.81.48 166791 port 770 166791 unique_id port 166799 username mostafa_es78 166799 mac 166799 bytes_out 0 166799 bytes_in 0 166799 station_ip 83.122.234.224 166799 port 783 166799 unique_id port 166799 remote_ip 10.8.0.194 166801 username mostafa_es78 166801 mac 166801 bytes_out 0 166801 bytes_in 0 166801 station_ip 83.122.77.186 166801 port 781 166801 unique_id port 166801 remote_ip 10.8.0.194 166803 username fezealinaghi 166803 kill_reason Another user logged on this global unique id 166803 mac 166803 bytes_out 0 166803 bytes_in 0 166803 station_ip 83.123.182.58 166803 port 769 166803 unique_id port 166803 remote_ip 10.8.0.78 166804 username sekonji3 166804 mac 166804 bytes_out 340196 166804 bytes_in 4787450 166804 station_ip 113.203.84.5 166804 port 770 166804 unique_id port 166804 remote_ip 10.8.0.6 166805 username mostafa_es78 166805 mac 166805 bytes_out 0 166805 bytes_in 0 166805 station_ip 83.122.234.224 166805 port 784 166805 unique_id port 166805 remote_ip 10.8.0.194 166806 username mostafa_es78 166806 mac 166806 bytes_out 0 166806 bytes_in 0 166806 station_ip 83.122.77.186 166806 port 781 166806 unique_id port 166806 remote_ip 10.8.0.194 166809 username barzegar 166809 mac 166809 bytes_out 0 166809 bytes_in 0 166809 station_ip 5.119.221.234 166809 port 745 166809 unique_id port 166809 remote_ip 10.8.0.234 166812 username fezealinaghi 166812 kill_reason Another user logged on this global unique id 166812 mac 166812 bytes_out 0 166812 bytes_in 0 166812 station_ip 83.123.182.58 166812 port 769 166812 unique_id port 166821 username fezealinaghi 166821 mac 166821 bytes_out 0 166821 bytes_in 0 166821 station_ip 83.123.182.58 166821 port 769 166821 unique_id port 166824 username sekonji3 166824 mac 166824 bytes_out 0 166824 bytes_in 0 166824 station_ip 113.203.84.5 166824 port 784 166824 unique_id port 166824 remote_ip 10.8.0.6 166825 username aminvpn 166825 unique_id port 166825 terminate_cause Lost-Carrier 166825 bytes_out 134794 166825 bytes_in 2000577 166825 station_ip 109.125.128.116 166825 port 15728730 166825 nas_port_type Virtual 166825 remote_ip 5.5.5.180 166827 username vanila 166827 mac 166827 bytes_out 638625 166827 bytes_in 6750656 166827 station_ip 83.123.166.195 166827 port 770 166827 unique_id port 166827 remote_ip 10.8.0.178 166829 username nilufarrajaei 166829 kill_reason Another user logged on this global unique id 166829 mac 166829 bytes_out 0 166829 bytes_in 0 166829 station_ip 83.122.2.94 166829 port 767 166829 unique_id port 166830 username arash 166830 mac 166785 station_ip 109.125.128.116 166785 port 15728729 166785 nas_port_type Virtual 166785 remote_ip 5.5.5.181 166787 username arash 166787 mac 166787 bytes_out 0 166787 bytes_in 0 166787 station_ip 37.27.21.105 166787 port 392 166787 unique_id port 166787 remote_ip 10.8.1.102 166788 username mostafa_es78 166788 mac 166788 bytes_out 0 166788 bytes_in 0 166788 station_ip 83.122.77.186 166788 port 776 166788 unique_id port 166788 remote_ip 10.8.0.194 166793 username mosi 166793 kill_reason Another user logged on this global unique id 166793 mac 166793 bytes_out 0 166793 bytes_in 0 166793 station_ip 151.235.73.177 166793 port 745 166793 unique_id port 166793 remote_ip 10.8.0.138 166796 username mostafa_es78 166796 mac 166796 bytes_out 0 166796 bytes_in 0 166796 station_ip 83.122.234.224 166796 port 770 166796 unique_id port 166796 remote_ip 10.8.0.194 166798 username godarzi 166798 mac 166798 bytes_out 0 166798 bytes_in 0 166798 station_ip 5.119.88.130 166798 port 785 166798 unique_id port 166798 remote_ip 10.8.0.174 166800 username barzegar 166800 mac 166800 bytes_out 0 166800 bytes_in 0 166800 station_ip 5.119.221.234 166800 port 391 166800 unique_id port 166800 remote_ip 10.8.1.174 166811 username shadkam 166811 kill_reason Another user logged on this global unique id 166811 mac 166811 bytes_out 0 166811 bytes_in 0 166811 station_ip 83.123.227.179 166811 port 776 166811 unique_id port 166811 remote_ip 10.8.0.62 166813 username godarzi 166813 mac 166813 bytes_out 27486 166813 bytes_in 48322 166813 station_ip 5.119.88.130 166813 port 784 166813 unique_id port 166813 remote_ip 10.8.0.174 166815 username sekonji3 166815 mac 166815 bytes_out 412262 166815 bytes_in 5528677 166815 station_ip 113.203.84.5 166815 port 781 166815 unique_id port 166815 remote_ip 10.8.0.6 166816 username sekonji3 166816 mac 166816 bytes_out 0 166816 bytes_in 0 166816 station_ip 113.203.84.5 166816 port 784 166816 unique_id port 166816 remote_ip 10.8.0.6 166819 username ayobi 166819 kill_reason Another user logged on this global unique id 166819 mac 166819 bytes_out 0 166819 bytes_in 0 166819 station_ip 37.27.14.215 166819 port 780 166819 unique_id port 166823 username farhad2 166823 mac 166823 bytes_out 0 166823 bytes_in 0 166823 station_ip 5.120.84.114 166823 port 769 166823 unique_id port 166823 remote_ip 10.8.0.190 166826 username farhad2 166826 mac 166826 bytes_out 202482 166826 bytes_in 839987 166826 station_ip 5.120.84.114 166826 port 778 166826 unique_id port 166826 remote_ip 10.8.0.190 166828 username kalantary 166828 mac 166828 bytes_out 2356350 166828 bytes_in 21924278 166828 station_ip 83.122.31.249 166828 port 783 166828 unique_id port 166828 remote_ip 10.8.0.98 166835 username moradi 166835 kill_reason Another user logged on this global unique id 166835 mac 166835 bytes_out 0 166835 bytes_in 0 166835 station_ip 37.129.172.237 166835 port 784 166835 unique_id port 166835 remote_ip 10.8.0.126 166836 username aminvpn 166836 mac 166836 bytes_out 0 166836 bytes_in 0 166836 station_ip 5.125.114.150 166836 port 785 166836 unique_id port 166836 remote_ip 10.8.0.14 166849 username mohammadmahdi 166849 kill_reason Another user logged on this global unique id 166849 mac 166849 bytes_out 0 166849 bytes_in 0 166849 station_ip 5.120.71.197 166849 port 785 166849 unique_id port 166849 remote_ip 10.8.0.54 166851 username mehdizare 166851 mac 166851 bytes_out 0 166851 bytes_in 0 166851 station_ip 83.122.93.213 166851 port 395 166851 unique_id port 166797 station_ip 83.122.77.186 166797 port 781 166797 unique_id port 166797 remote_ip 10.8.0.194 166802 username barzegar 166802 mac 166802 bytes_out 0 166802 bytes_in 0 166802 station_ip 5.119.221.234 166802 port 781 166802 unique_id port 166802 remote_ip 10.8.0.234 166807 username barzegar 166807 mac 166807 bytes_out 3887 166807 bytes_in 7835 166807 station_ip 5.119.221.234 166807 port 770 166807 unique_id port 166807 remote_ip 10.8.0.234 166808 username mosi 166808 mac 166808 bytes_out 0 166808 bytes_in 0 166808 station_ip 151.235.73.177 166808 port 745 166808 unique_id port 166810 username godarzi 166810 mac 166810 bytes_out 685080 166810 bytes_in 147419 166810 station_ip 5.119.88.130 166810 port 784 166810 unique_id port 166810 remote_ip 10.8.0.174 166814 username farhad2 166814 mac 166814 bytes_out 0 166814 bytes_in 0 166814 station_ip 5.120.84.114 166814 port 778 166814 unique_id port 166814 remote_ip 10.8.0.190 166817 username farhad2 166817 mac 166817 bytes_out 0 166817 bytes_in 0 166817 station_ip 5.120.84.114 166817 port 778 166817 unique_id port 166817 remote_ip 10.8.0.190 166818 username farhad2 166818 mac 166818 bytes_out 0 166818 bytes_in 0 166818 station_ip 5.120.84.114 166818 port 778 166818 unique_id port 166818 remote_ip 10.8.0.190 166820 username yaghobi 166820 mac 166820 bytes_out 2737065 166820 bytes_in 24416360 166820 station_ip 83.123.196.46 166820 port 770 166820 unique_id port 166820 remote_ip 10.8.0.198 166822 username farhad2 166822 mac 166822 bytes_out 160923 166822 bytes_in 913161 166822 station_ip 5.120.84.114 166822 port 778 166822 unique_id port 166822 remote_ip 10.8.0.190 166832 username arash 166832 mac 166832 bytes_out 0 166832 bytes_in 0 166832 station_ip 37.27.7.92 166832 port 783 166832 unique_id port 166832 remote_ip 10.8.0.122 166838 username fezealinaghi 166838 mac 166838 bytes_out 185511 166838 bytes_in 1488727 166838 station_ip 83.123.143.46 166838 port 787 166838 unique_id port 166838 remote_ip 10.8.0.78 166839 username aminvpn 166839 mac 166839 bytes_out 49961 166839 bytes_in 74796 166839 station_ip 37.129.89.193 166839 port 786 166839 unique_id port 166839 remote_ip 10.8.0.14 166840 username aminvpn 166840 mac 166840 bytes_out 0 166840 bytes_in 0 166840 station_ip 5.125.114.150 166840 port 789 166840 unique_id port 166840 remote_ip 10.8.0.14 166841 username sabaghnezhad 166841 kill_reason Maximum check online fails reached 166841 mac 166841 bytes_out 0 166841 bytes_in 0 166841 station_ip 83.122.242.218 166841 port 392 166841 unique_id port 166842 username houshang 166842 mac 166842 bytes_out 2260646 166842 bytes_in 44067176 166842 station_ip 5.119.129.245 166842 port 770 166842 unique_id port 166842 remote_ip 10.8.0.134 166844 username sekonji3 166844 mac 166844 bytes_out 0 166844 bytes_in 0 166844 station_ip 37.129.9.162 166844 port 789 166844 unique_id port 166844 remote_ip 10.8.0.6 166846 username aminvpn 166846 mac 166846 bytes_out 0 166846 bytes_in 0 166846 station_ip 37.129.89.193 166846 port 786 166846 unique_id port 166846 remote_ip 10.8.0.14 166852 username rahim 166852 kill_reason Another user logged on this global unique id 166852 mac 166852 bytes_out 0 166852 bytes_in 0 166852 station_ip 5.119.211.178 166852 port 782 166852 unique_id port 166852 remote_ip 10.8.0.50 166853 username nilufarrajaei 166853 mac 166853 bytes_out 0 166853 bytes_in 0 166853 station_ip 83.122.2.94 166830 bytes_out 0 166830 bytes_in 0 166830 station_ip 37.27.7.92 166830 port 783 166830 unique_id port 166830 remote_ip 10.8.0.122 166831 username mostafa_es78 166831 kill_reason Another user logged on this global unique id 166831 mac 166831 bytes_out 0 166831 bytes_in 0 166831 station_ip 83.122.77.186 166831 port 391 166831 unique_id port 166831 remote_ip 10.8.1.46 166833 username sekonji3 166833 mac 166833 bytes_out 0 166833 bytes_in 0 166833 station_ip 113.203.84.5 166833 port 785 166833 unique_id port 166833 remote_ip 10.8.0.6 166834 username aminvpn 166834 mac 166834 bytes_out 0 166834 bytes_in 0 166834 station_ip 37.129.89.193 166834 port 769 166834 unique_id port 166834 remote_ip 10.8.0.14 166837 username sekonji3 166837 mac 166837 bytes_out 0 166837 bytes_in 0 166837 station_ip 37.129.9.162 166837 port 788 166837 unique_id port 166837 remote_ip 10.8.0.6 166843 username mostafa_es78 166843 kill_reason Another user logged on this global unique id 166843 mac 166843 bytes_out 0 166843 bytes_in 0 166843 station_ip 83.122.77.186 166843 port 391 166843 unique_id port 166845 username barzegar 166845 mac 166845 bytes_out 0 166845 bytes_in 0 166845 station_ip 5.119.221.234 166845 port 745 166845 unique_id port 166845 remote_ip 10.8.0.234 166847 username mehdizare 166847 mac 166847 bytes_out 1293414 166847 bytes_in 19639841 166847 station_ip 83.122.93.213 166847 port 781 166847 unique_id port 166847 remote_ip 10.8.0.90 166848 username kalantary 166848 mac 166848 bytes_out 626233 166848 bytes_in 7932212 166848 station_ip 83.122.31.249 166848 port 787 166848 unique_id port 166848 remote_ip 10.8.0.98 166850 username shadkam 166850 mac 166850 bytes_out 0 166850 bytes_in 0 166850 station_ip 83.123.227.179 166850 port 776 166850 unique_id port 166855 username ayobi 166855 kill_reason Another user logged on this global unique id 166855 mac 166855 bytes_out 0 166855 bytes_in 0 166855 station_ip 37.27.14.215 166855 port 780 166855 unique_id port 166862 username mohammadmahdi 166862 kill_reason Another user logged on this global unique id 166862 mac 166862 bytes_out 0 166862 bytes_in 0 166862 station_ip 5.120.71.197 166862 port 785 166862 unique_id port 166864 username barzegar 166864 mac 166864 bytes_out 75714 166864 bytes_in 113825 166864 station_ip 5.119.221.234 166864 port 770 166864 unique_id port 166864 remote_ip 10.8.0.234 166867 username aminvpn 166867 mac 166867 bytes_out 109128 166867 bytes_in 255540 166867 station_ip 37.129.89.193 166867 port 745 166867 unique_id port 166867 remote_ip 10.8.0.14 166869 username vanila 166869 mac 166869 bytes_out 580668 166869 bytes_in 5977251 166869 station_ip 83.123.166.195 166869 port 781 166869 unique_id port 166869 remote_ip 10.8.0.178 166872 username vanila 166872 mac 166872 bytes_out 337209 166872 bytes_in 976211 166872 station_ip 83.123.166.195 166872 port 769 166872 unique_id port 166872 remote_ip 10.8.0.178 166874 username sekonji3 166874 mac 166874 bytes_out 126121 166874 bytes_in 950609 166874 station_ip 37.129.9.162 166874 port 767 166874 unique_id port 166874 remote_ip 10.8.0.6 166876 username vanila 166876 mac 166876 bytes_out 173348 166876 bytes_in 558955 166876 station_ip 83.123.166.195 166876 port 776 166876 unique_id port 166876 remote_ip 10.8.0.178 166878 username barzegar 166878 mac 166878 bytes_out 0 166878 bytes_in 0 166878 station_ip 5.119.221.234 166878 port 767 166878 unique_id port 166878 remote_ip 10.8.0.234 166879 username farhad2 166879 mac 166851 remote_ip 10.8.1.42 166854 username sekonji3 166854 mac 166854 bytes_out 0 166854 bytes_in 0 166854 station_ip 37.129.9.162 166854 port 767 166854 unique_id port 166854 remote_ip 10.8.0.6 166856 username vanila 166856 mac 166856 bytes_out 3158579 166856 bytes_in 33082793 166856 station_ip 83.123.166.195 166856 port 778 166856 unique_id port 166856 remote_ip 10.8.0.178 166857 username farhad2 166857 mac 166857 bytes_out 3497327 166857 bytes_in 27927027 166857 station_ip 5.120.84.114 166857 port 769 166857 unique_id port 166857 remote_ip 10.8.0.190 166858 username mostafa_es78 166858 mac 166858 bytes_out 0 166858 bytes_in 0 166858 station_ip 83.122.77.186 166858 port 391 166858 unique_id port 166859 username sekonji3 166859 mac 166859 bytes_out 0 166859 bytes_in 0 166859 station_ip 37.129.9.162 166859 port 781 166859 unique_id port 166859 remote_ip 10.8.0.6 166861 username rahim 166861 mac 166861 bytes_out 0 166861 bytes_in 0 166861 station_ip 5.119.211.178 166861 port 782 166861 unique_id port 166870 username mostafa_es78 166870 kill_reason Another user logged on this global unique id 166870 mac 166870 bytes_out 0 166870 bytes_in 0 166870 station_ip 83.122.77.186 166870 port 391 166870 unique_id port 166870 remote_ip 10.8.1.46 166871 username mohammadmahdi 166871 mac 166871 bytes_out 0 166871 bytes_in 0 166871 station_ip 5.120.71.197 166871 port 785 166871 unique_id port 166875 username mostafa_es78 166875 mac 166875 bytes_out 0 166875 bytes_in 0 166875 station_ip 83.122.77.186 166875 port 391 166875 unique_id port 166881 username mostafa_es78 166881 kill_reason Another user logged on this global unique id 166881 mac 166881 bytes_out 0 166881 bytes_in 0 166881 station_ip 83.122.234.224 166881 port 769 166881 unique_id port 166881 remote_ip 10.8.0.194 166887 username jafari 166887 kill_reason Maximum check online fails reached 166887 mac 166887 bytes_out 0 166887 bytes_in 0 166887 station_ip 37.137.18.243 166887 port 773 166887 unique_id port 166888 username aminvpn 166888 kill_reason Another user logged on this global unique id 166888 mac 166888 bytes_out 0 166888 bytes_in 0 166888 station_ip 5.119.47.121 166888 port 767 166888 unique_id port 166888 remote_ip 10.8.0.14 166891 username farhad2 166891 mac 166891 bytes_out 424253 166891 bytes_in 2262923 166891 station_ip 5.119.2.123 166891 port 770 166891 unique_id port 166891 remote_ip 10.8.0.190 166896 username mostafa_es78 166896 kill_reason Another user logged on this global unique id 166896 mac 166896 bytes_out 0 166896 bytes_in 0 166896 station_ip 83.122.234.224 166896 port 769 166896 unique_id port 166900 username hashtadani4 166900 mac 166900 bytes_out 0 166900 bytes_in 0 166900 station_ip 83.122.154.198 166900 port 398 166900 unique_id port 166900 remote_ip 10.8.1.142 166901 username hashtadani4 166901 mac 166901 bytes_out 0 166901 bytes_in 0 166901 station_ip 83.122.154.198 166901 port 775 166901 unique_id port 166901 remote_ip 10.8.0.182 166905 username farhad2 166905 mac 166905 bytes_out 0 166905 bytes_in 0 166905 station_ip 5.119.28.69 166905 port 770 166905 unique_id port 166905 remote_ip 10.8.0.190 166906 username fezealinaghi 166906 kill_reason Another user logged on this global unique id 166906 mac 166906 bytes_out 0 166906 bytes_in 0 166906 station_ip 83.123.210.54 166906 port 776 166906 unique_id port 166906 remote_ip 10.8.0.78 166909 username hashtadani4 166909 mac 166909 bytes_out 2005 166909 bytes_in 4441 166909 station_ip 83.122.154.198 166909 port 767 166853 port 767 166853 unique_id port 166860 username mosi 166860 mac 166860 bytes_out 0 166860 bytes_in 0 166860 station_ip 151.235.73.177 166860 port 767 166860 unique_id port 166860 remote_ip 10.8.0.138 166863 username sabaghnezhad 166863 mac 166863 bytes_out 386257 166863 bytes_in 2788513 166863 station_ip 83.122.242.218 166863 port 788 166863 unique_id port 166863 remote_ip 10.8.0.186 166865 username mostafa_es78 166865 mac 166865 bytes_out 0 166865 bytes_in 0 166865 station_ip 83.122.77.186 166865 port 781 166865 unique_id port 166865 remote_ip 10.8.0.194 166866 username vanila 166866 mac 166866 bytes_out 1458365 166866 bytes_in 12158709 166866 station_ip 83.123.166.195 166866 port 776 166866 unique_id port 166866 remote_ip 10.8.0.178 166868 username farhad2 166868 mac 166868 bytes_out 2658804 166868 bytes_in 20640367 166868 station_ip 5.120.84.114 166868 port 769 166868 unique_id port 166868 remote_ip 10.8.0.190 166873 username ayobi 166873 kill_reason Another user logged on this global unique id 166873 mac 166873 bytes_out 0 166873 bytes_in 0 166873 station_ip 37.27.14.215 166873 port 780 166873 unique_id port 166877 username barzegar 166877 mac 166877 bytes_out 0 166877 bytes_in 0 166877 station_ip 5.119.221.234 166877 port 770 166877 unique_id port 166877 remote_ip 10.8.0.234 166880 username mehdizare 166880 kill_reason Another user logged on this global unique id 166880 mac 166880 bytes_out 0 166880 bytes_in 0 166880 station_ip 83.122.93.213 166880 port 395 166880 unique_id port 166880 remote_ip 10.8.1.42 166883 username barzegar 166883 mac 166883 bytes_out 0 166883 bytes_in 0 166883 station_ip 5.119.221.234 166883 port 745 166883 unique_id port 166883 remote_ip 10.8.0.234 166884 username barzegar 166884 mac 166884 bytes_out 0 166884 bytes_in 0 166884 station_ip 5.119.221.234 166884 port 391 166884 unique_id port 166884 remote_ip 10.8.1.174 166889 username nilufarrajaei 166889 mac 166889 bytes_out 0 166889 bytes_in 0 166889 station_ip 83.122.2.94 166889 port 396 166889 unique_id port 166889 remote_ip 10.8.1.166 166892 username aminvpn 166892 mac 166892 bytes_out 0 166892 bytes_in 0 166892 station_ip 5.119.47.121 166892 port 767 166892 unique_id port 166895 username tahmasebi 166895 mac 166895 bytes_out 0 166895 bytes_in 0 166895 station_ip 5.119.109.36 166895 port 396 166895 unique_id port 166895 remote_ip 10.8.1.90 166899 username hashtadani4 166899 mac 166899 bytes_out 0 166899 bytes_in 0 166899 station_ip 83.122.154.198 166899 port 398 166899 unique_id port 166899 remote_ip 10.8.1.142 166902 username farhad2 166902 mac 166902 bytes_out 351499 166902 bytes_in 1944383 166902 station_ip 5.119.28.69 166902 port 770 166902 unique_id port 166902 remote_ip 10.8.0.190 166903 username hassan 166903 mac 166903 bytes_out 571906 166903 bytes_in 3126700 166903 station_ip 37.27.18.126 166903 port 767 166903 unique_id port 166903 remote_ip 10.8.0.170 166908 username mostafa_es78 166908 kill_reason Another user logged on this global unique id 166908 mac 166908 bytes_out 0 166908 bytes_in 0 166908 station_ip 83.122.234.224 166908 port 769 166908 unique_id port 166911 username fezealinaghi 166911 mac 166911 bytes_out 0 166911 bytes_in 0 166911 station_ip 83.123.210.54 166911 port 776 166911 unique_id port 166915 username hashtadani4 166915 mac 166915 bytes_out 0 166915 bytes_in 0 166915 station_ip 83.122.154.198 166915 port 770 166915 unique_id port 166879 bytes_out 3167864 166879 bytes_in 29726455 166879 station_ip 5.120.84.114 166879 port 745 166879 unique_id port 166879 remote_ip 10.8.0.190 166882 username mohammadmahdi 166882 mac 166882 bytes_out 1300042 166882 bytes_in 16936129 166882 station_ip 5.120.71.197 166882 port 770 166882 unique_id port 166882 remote_ip 10.8.0.54 166885 username mostafa_es78 166885 kill_reason Another user logged on this global unique id 166885 mac 166885 bytes_out 0 166885 bytes_in 0 166885 station_ip 83.122.234.224 166885 port 769 166885 unique_id port 166886 username tahmasebi 166886 mac 166886 bytes_out 20916892 166886 bytes_in 22053474 166886 station_ip 5.119.109.36 166886 port 775 166886 unique_id port 166886 remote_ip 10.8.0.42 166890 username arash 166890 mac 166890 bytes_out 920794 166890 bytes_in 7903607 166890 station_ip 37.27.7.92 166890 port 783 166890 unique_id port 166890 remote_ip 10.8.0.122 166893 username tahmasebi 166893 mac 166893 bytes_out 0 166893 bytes_in 0 166893 station_ip 5.119.109.36 166893 port 398 166893 unique_id port 166893 remote_ip 10.8.1.90 166894 username nilufarrajaei 166894 mac 166894 bytes_out 0 166894 bytes_in 0 166894 station_ip 83.122.2.94 166894 port 396 166894 unique_id port 166894 remote_ip 10.8.1.166 166897 username nilufarrajaei 166897 mac 166897 bytes_out 0 166897 bytes_in 0 166897 station_ip 83.122.70.42 166897 port 398 166897 unique_id port 166897 remote_ip 10.8.1.166 166898 username hashtadani4 166898 mac 166898 bytes_out 140038 166898 bytes_in 866241 166898 station_ip 83.122.154.198 166898 port 775 166898 unique_id port 166898 remote_ip 10.8.0.182 166904 username hashtadani4 166904 mac 166904 bytes_out 2111 166904 bytes_in 4388 166904 station_ip 83.122.154.198 166904 port 775 166904 unique_id port 166904 remote_ip 10.8.0.182 166907 username tahmasebi 166907 mac 166907 bytes_out 0 166907 bytes_in 0 166907 station_ip 5.119.109.36 166907 port 398 166907 unique_id port 166907 remote_ip 10.8.1.90 166910 username hashtadani4 166910 mac 166910 bytes_out 0 166910 bytes_in 0 166910 station_ip 83.122.154.198 166910 port 767 166910 unique_id port 166910 remote_ip 10.8.0.182 166912 username nilufarrajaei 166912 mac 166912 bytes_out 0 166912 bytes_in 0 166912 station_ip 113.203.93.231 166912 port 396 166912 unique_id port 166912 remote_ip 10.8.1.166 166913 username barzegar 166913 mac 166913 bytes_out 663507 166913 bytes_in 6385052 166913 station_ip 5.119.221.234 166913 port 391 166913 unique_id port 166913 remote_ip 10.8.1.174 166916 username kordestani 166916 mac 166916 bytes_out 841298 166916 bytes_in 6070626 166916 station_ip 151.235.111.108 166916 port 778 166916 unique_id port 166916 remote_ip 10.8.0.74 166920 username farhad2 166920 mac 166920 bytes_out 740549 166920 bytes_in 5149096 166920 station_ip 5.119.7.233 166920 port 767 166920 unique_id port 166920 remote_ip 10.8.0.190 166922 username hashtadani4 166922 mac 166922 bytes_out 0 166922 bytes_in 0 166922 station_ip 83.122.154.198 166922 port 776 166922 unique_id port 166922 remote_ip 10.8.0.182 166924 username tahmasebi 166924 mac 166924 bytes_out 0 166924 bytes_in 0 166924 station_ip 5.119.109.36 166924 port 398 166924 unique_id port 166924 remote_ip 10.8.1.90 166926 username aminvpn 166926 mac 166926 bytes_out 0 166926 bytes_in 0 166926 station_ip 37.129.89.193 166926 port 397 166926 unique_id port 166926 remote_ip 10.8.1.6 166928 username khademi 166928 mac 166928 bytes_out 0 166909 unique_id port 166909 remote_ip 10.8.0.182 166914 username hassan 166914 mac 166914 bytes_out 2780338 166914 bytes_in 34302085 166914 station_ip 5.119.167.37 166914 port 781 166914 unique_id port 166914 remote_ip 10.8.0.170 166918 username hashtadani4 166918 mac 166918 bytes_out 0 166918 bytes_in 0 166918 station_ip 83.122.154.198 166918 port 776 166918 unique_id port 166918 remote_ip 10.8.0.182 166921 username farhad2 166921 mac 166921 bytes_out 0 166921 bytes_in 0 166921 station_ip 5.119.7.233 166921 port 767 166921 unique_id port 166921 remote_ip 10.8.0.190 166923 username nilufarrajaei 166923 mac 166923 bytes_out 0 166923 bytes_in 0 166923 station_ip 113.203.93.231 166923 port 391 166923 unique_id port 166923 remote_ip 10.8.1.166 166925 username mehdizare 166925 mac 166925 bytes_out 0 166925 bytes_in 0 166925 station_ip 83.122.93.213 166925 port 395 166925 unique_id port 166932 username tahmasebi 166932 mac 166932 bytes_out 0 166932 bytes_in 0 166932 station_ip 5.119.109.36 166932 port 391 166932 unique_id port 166932 remote_ip 10.8.1.90 166935 username hassan 166935 kill_reason Another user logged on this global unique id 166935 mac 166935 bytes_out 0 166935 bytes_in 0 166935 station_ip 5.120.25.23 166935 port 775 166935 unique_id port 166935 remote_ip 10.8.0.170 166937 username fezealinaghi 166937 mac 166937 bytes_out 0 166937 bytes_in 0 166937 station_ip 83.123.26.74 166937 port 396 166937 unique_id port 166937 remote_ip 10.8.1.162 166938 username hashtadani4 166938 mac 166938 bytes_out 1057918 166938 bytes_in 11567968 166938 station_ip 83.122.154.198 166938 port 758 166938 unique_id port 166938 remote_ip 10.8.0.182 166941 username mostafa_es78 166941 kill_reason Another user logged on this global unique id 166941 mac 166941 bytes_out 0 166941 bytes_in 0 166941 station_ip 83.122.234.224 166941 port 769 166941 unique_id port 166945 username barzegar 166945 mac 166945 bytes_out 0 166945 bytes_in 0 166945 station_ip 5.119.221.234 166945 port 775 166945 unique_id port 166945 remote_ip 10.8.0.234 166949 username kordestani 166949 mac 166949 bytes_out 74535 166949 bytes_in 93955 166949 station_ip 151.235.76.174 166949 port 770 166949 unique_id port 166949 remote_ip 10.8.0.74 166952 username tahmasebi 166952 mac 166952 bytes_out 0 166952 bytes_in 0 166952 station_ip 5.119.109.36 166952 port 397 166952 unique_id port 166952 remote_ip 10.8.1.90 166955 username mosi 166955 mac 166955 bytes_out 1568160 166955 bytes_in 2940573 166955 station_ip 151.235.73.177 166955 port 745 166955 unique_id port 166955 remote_ip 10.8.0.138 166960 username mostafa_es78 166960 kill_reason Another user logged on this global unique id 166960 mac 166960 bytes_out 0 166960 bytes_in 0 166960 station_ip 83.122.234.224 166960 port 769 166960 unique_id port 166962 username hashtadani4 166962 kill_reason Another user logged on this global unique id 166962 mac 166962 bytes_out 0 166962 bytes_in 0 166962 station_ip 83.122.154.198 166962 port 758 166962 unique_id port 166963 username barzegar 166963 mac 166963 bytes_out 0 166963 bytes_in 0 166963 station_ip 5.119.221.234 166963 port 745 166963 unique_id port 166963 remote_ip 10.8.0.234 166969 username mostafa_es78 166969 kill_reason Another user logged on this global unique id 166969 mac 166969 bytes_out 0 166969 bytes_in 0 166969 station_ip 83.122.234.224 166969 port 769 166969 unique_id port 166973 username barzegar 166973 mac 166973 bytes_out 0 166973 bytes_in 0 166973 station_ip 5.119.221.234 166915 remote_ip 10.8.0.182 166917 username nilufarrajaei 166917 mac 166917 bytes_out 0 166917 bytes_in 0 166917 station_ip 113.203.93.231 166917 port 399 166917 unique_id port 166917 remote_ip 10.8.1.166 166919 username mostafa_es78 166919 kill_reason Another user logged on this global unique id 166919 mac 166919 bytes_out 0 166919 bytes_in 0 166919 station_ip 83.122.234.224 166919 port 769 166919 unique_id port 166927 username moradi 166927 mac 166927 bytes_out 0 166927 bytes_in 0 166927 station_ip 37.129.172.237 166927 port 784 166927 unique_id port 166929 username hashtadani4 166929 mac 166929 bytes_out 0 166929 bytes_in 0 166929 station_ip 83.122.154.198 166929 port 758 166929 unique_id port 166929 remote_ip 10.8.0.182 166930 username barzegar 166930 mac 166930 bytes_out 0 166930 bytes_in 0 166930 station_ip 5.119.221.234 166930 port 396 166930 unique_id port 166930 remote_ip 10.8.1.174 166933 username mostafa_es78 166933 kill_reason Another user logged on this global unique id 166933 mac 166933 bytes_out 0 166933 bytes_in 0 166933 station_ip 83.122.234.224 166933 port 769 166933 unique_id port 166934 username kordestani 166934 mac 166934 bytes_out 1223967 166934 bytes_in 15333628 166934 station_ip 151.235.88.197 166934 port 770 166934 unique_id port 166934 remote_ip 10.8.0.74 166940 username tahmasebi 166940 mac 166940 bytes_out 0 166940 bytes_in 0 166940 station_ip 5.119.109.36 166940 port 397 166940 unique_id port 166940 remote_ip 10.8.1.90 166943 username hassan 166943 mac 166943 bytes_out 0 166943 bytes_in 0 166943 station_ip 5.120.25.23 166943 port 775 166943 unique_id port 166947 username mostafa_es78 166947 kill_reason Another user logged on this global unique id 166947 mac 166947 bytes_out 0 166947 bytes_in 0 166947 station_ip 83.122.234.224 166947 port 769 166947 unique_id port 166950 username hashtadani4 166950 mac 166950 bytes_out 0 166950 bytes_in 0 166950 station_ip 83.122.154.198 166950 port 758 166950 unique_id port 166950 remote_ip 10.8.0.182 166951 username mostafa_es78 166951 kill_reason Another user logged on this global unique id 166951 mac 166951 bytes_out 0 166951 bytes_in 0 166951 station_ip 83.122.234.224 166951 port 769 166951 unique_id port 166954 username barzegar 166954 mac 166954 bytes_out 0 166954 bytes_in 0 166954 station_ip 5.119.221.234 166954 port 776 166954 unique_id port 166954 remote_ip 10.8.0.234 166959 username kordestani 166959 mac 166959 bytes_out 12412 166959 bytes_in 13627 166959 station_ip 151.235.95.23 166959 port 775 166959 unique_id port 166959 remote_ip 10.8.0.74 166961 username tahmasebi 166961 mac 166961 bytes_out 0 166961 bytes_in 0 166961 station_ip 5.119.109.36 166961 port 395 166961 unique_id port 166961 remote_ip 10.8.1.90 166965 username hashtadani4 166965 kill_reason Another user logged on this global unique id 166965 mac 166965 bytes_out 0 166965 bytes_in 0 166965 station_ip 83.122.154.198 166965 port 758 166965 unique_id port 166968 username hashtadani4 166968 mac 166968 bytes_out 0 166968 bytes_in 0 166968 station_ip 83.122.154.198 166968 port 745 166968 unique_id port 166968 remote_ip 10.8.0.182 166970 username tahmasebi 166970 mac 166970 bytes_out 0 166970 bytes_in 0 166970 station_ip 5.119.109.36 166970 port 395 166970 unique_id port 166970 remote_ip 10.8.1.90 166971 username hashtadani4 166971 mac 166971 bytes_out 0 166971 bytes_in 0 166971 station_ip 83.122.154.198 166971 port 745 166971 unique_id port 166971 remote_ip 10.8.0.182 166928 bytes_in 0 166928 station_ip 37.129.42.119 166928 port 758 166928 unique_id port 166931 username aminvpn 166931 mac 166931 bytes_out 0 166931 bytes_in 0 166931 station_ip 83.123.116.219 166931 port 391 166931 unique_id port 166931 remote_ip 10.8.1.6 166936 username ayobi 166936 mac 166936 bytes_out 0 166936 bytes_in 0 166936 station_ip 37.27.14.215 166936 port 780 166936 unique_id port 166939 username farhad2 166939 kill_reason Another user logged on this global unique id 166939 mac 166939 bytes_out 0 166939 bytes_in 0 166939 station_ip 5.119.7.233 166939 port 767 166939 unique_id port 166939 remote_ip 10.8.0.190 166942 username hashtadani4 166942 mac 166942 bytes_out 590399 166942 bytes_in 9810436 166942 station_ip 83.122.154.198 166942 port 758 166942 unique_id port 166942 remote_ip 10.8.0.182 166944 username hashtadani4 166944 mac 166944 bytes_out 0 166944 bytes_in 0 166944 station_ip 83.122.154.198 166944 port 758 166944 unique_id port 166944 remote_ip 10.8.0.182 166946 username farhad2 166946 mac 166946 bytes_out 0 166946 bytes_in 0 166946 station_ip 5.119.7.233 166946 port 767 166946 unique_id port 166948 username fezealinaghi 166948 kill_reason Another user logged on this global unique id 166948 mac 166948 bytes_out 0 166948 bytes_in 0 166948 station_ip 83.123.26.74 166948 port 396 166948 unique_id port 166948 remote_ip 10.8.1.162 166953 username khademi 166953 mac 166953 bytes_out 0 166953 bytes_in 0 166953 station_ip 83.123.11.31 166953 port 395 166953 unique_id port 166953 remote_ip 10.8.1.242 166956 username mostafa_es78 166956 kill_reason Another user logged on this global unique id 166956 mac 166956 bytes_out 0 166956 bytes_in 0 166956 station_ip 83.122.234.224 166956 port 769 166956 unique_id port 166957 username fezealinaghi 166957 kill_reason Another user logged on this global unique id 166957 mac 166957 bytes_out 0 166957 bytes_in 0 166957 station_ip 83.123.26.74 166957 port 396 166957 unique_id port 166958 username hashtadani4 166958 kill_reason Another user logged on this global unique id 166958 mac 166958 bytes_out 0 166958 bytes_in 0 166958 station_ip 83.122.154.198 166958 port 758 166958 unique_id port 166958 remote_ip 10.8.0.182 166964 username mostafa_es78 166964 kill_reason Another user logged on this global unique id 166964 mac 166964 bytes_out 0 166964 bytes_in 0 166964 station_ip 83.122.234.224 166964 port 769 166964 unique_id port 166966 username hashtadani4 166966 mac 166966 bytes_out 0 166966 bytes_in 0 166966 station_ip 83.122.154.198 166966 port 758 166966 unique_id port 166967 username hashtadani4 166967 mac 166967 bytes_out 0 166967 bytes_in 0 166967 station_ip 83.122.154.198 166967 port 745 166967 unique_id port 166967 remote_ip 10.8.0.182 166975 username farhad2 166975 mac 166975 bytes_out 4209536 166975 bytes_in 29623775 166975 station_ip 5.119.7.233 166975 port 767 166975 unique_id port 166975 remote_ip 10.8.0.190 166976 username hashtadani4 166976 mac 166976 bytes_out 0 166976 bytes_in 0 166976 station_ip 83.122.154.198 166976 port 758 166976 unique_id port 166976 remote_ip 10.8.0.182 166979 username mostafa_es78 166979 kill_reason Another user logged on this global unique id 166979 mac 166979 bytes_out 0 166979 bytes_in 0 166979 station_ip 83.122.234.224 166979 port 769 166979 unique_id port 166983 username tahmasebi 166983 mac 166983 bytes_out 0 166983 bytes_in 0 166983 station_ip 5.119.109.36 166983 port 745 166983 unique_id port 166983 remote_ip 10.8.0.42 166987 username hashtadani4 166987 mac 166972 username mostafa_es78 166972 kill_reason Another user logged on this global unique id 166972 mac 166972 bytes_out 0 166972 bytes_in 0 166972 station_ip 83.122.234.224 166972 port 769 166972 unique_id port 166974 username fezealinaghi 166974 kill_reason Another user logged on this global unique id 166974 mac 166974 bytes_out 0 166974 bytes_in 0 166974 station_ip 83.123.26.74 166974 port 396 166974 unique_id port 166981 username barzegar 166981 mac 166981 bytes_out 0 166981 bytes_in 0 166981 station_ip 5.119.221.234 166981 port 745 166981 unique_id port 166981 remote_ip 10.8.0.234 166984 username mostafa_es78 166984 kill_reason Another user logged on this global unique id 166984 mac 166984 bytes_out 0 166984 bytes_in 0 166984 station_ip 83.122.234.224 166984 port 769 166984 unique_id port 166985 username hashtadani4 166985 mac 166985 bytes_out 0 166985 bytes_in 0 166985 station_ip 83.122.154.198 166985 port 758 166985 unique_id port 166985 remote_ip 10.8.0.182 166986 username mostafa_es78 166986 kill_reason Another user logged on this global unique id 166986 mac 166986 bytes_out 0 166986 bytes_in 0 166986 station_ip 83.122.234.224 166986 port 769 166986 unique_id port 166989 username tahmasebi 166989 mac 166989 bytes_out 11717 166989 bytes_in 16633 166989 station_ip 5.119.109.36 166989 port 745 166989 unique_id port 166989 remote_ip 10.8.0.42 166991 username hashtadani4 166991 mac 166991 bytes_out 0 166991 bytes_in 0 166991 station_ip 83.122.154.198 166991 port 758 166991 unique_id port 166991 remote_ip 10.8.0.182 166996 username farhad2 166996 mac 166996 bytes_out 0 166996 bytes_in 0 166996 station_ip 5.120.85.242 166996 port 758 166996 unique_id port 166996 remote_ip 10.8.0.190 166999 username farhad2 166999 mac 166999 bytes_out 347661 166999 bytes_in 488572 166999 station_ip 5.120.85.242 166999 port 758 166999 unique_id port 166999 remote_ip 10.8.0.190 167001 username farhad2 167001 mac 167001 bytes_out 0 167001 bytes_in 0 167001 station_ip 5.120.85.242 167001 port 758 167001 unique_id port 167001 remote_ip 10.8.0.190 167007 username mostafa_es78 167007 kill_reason Another user logged on this global unique id 167007 mac 167007 bytes_out 0 167007 bytes_in 0 167007 station_ip 83.122.234.224 167007 port 769 167007 unique_id port 167010 username mostafa_es78 167010 kill_reason Another user logged on this global unique id 167010 mac 167010 bytes_out 0 167010 bytes_in 0 167010 station_ip 83.122.234.224 167010 port 769 167010 unique_id port 167011 username hashtadani4 167011 mac 167011 bytes_out 0 167011 bytes_in 0 167011 station_ip 83.122.154.198 167011 port 745 167011 unique_id port 167011 remote_ip 10.8.0.182 167015 username hashtadani4 167015 mac 167015 bytes_out 0 167015 bytes_in 0 167015 station_ip 83.122.154.198 167015 port 758 167015 unique_id port 167015 remote_ip 10.8.0.182 167019 username fezealinaghi 167019 kill_reason Another user logged on this global unique id 167019 mac 167019 bytes_out 0 167019 bytes_in 0 167019 station_ip 83.123.26.74 167019 port 396 167019 unique_id port 167023 username fezealinaghi 167023 kill_reason Another user logged on this global unique id 167023 mac 167023 bytes_out 0 167023 bytes_in 0 167023 station_ip 83.123.26.74 167023 port 396 167023 unique_id port 167026 username hashtadani4 167026 mac 167026 bytes_out 0 167026 bytes_in 0 167026 station_ip 83.122.154.198 167026 port 745 167026 unique_id port 167026 remote_ip 10.8.0.182 167029 username hashtadani4 167029 mac 167029 bytes_out 0 167029 bytes_in 0 167029 station_ip 83.122.154.198 166973 port 745 166973 unique_id port 166973 remote_ip 10.8.0.234 166977 username mostafa_es78 166977 kill_reason Another user logged on this global unique id 166977 mac 166977 bytes_out 0 166977 bytes_in 0 166977 station_ip 83.122.234.224 166977 port 769 166977 unique_id port 166978 username farhad2 166978 mac 166978 bytes_out 155356 166978 bytes_in 322677 166978 station_ip 5.119.7.233 166978 port 745 166978 unique_id port 166978 remote_ip 10.8.0.190 166980 username hashtadani4 166980 mac 166980 bytes_out 0 166980 bytes_in 0 166980 station_ip 83.122.154.198 166980 port 745 166980 unique_id port 166980 remote_ip 10.8.0.182 166982 username tahmasebi 166982 mac 166982 bytes_out 0 166982 bytes_in 0 166982 station_ip 5.119.109.36 166982 port 395 166982 unique_id port 166982 remote_ip 10.8.1.90 166988 username barzegar 166988 mac 166988 bytes_out 0 166988 bytes_in 0 166988 station_ip 5.119.221.234 166988 port 758 166988 unique_id port 166988 remote_ip 10.8.0.234 166995 username hashtadani4 166995 mac 166995 bytes_out 0 166995 bytes_in 0 166995 station_ip 83.122.154.198 166995 port 758 166995 unique_id port 166995 remote_ip 10.8.0.182 166998 username mostafa_es78 166998 kill_reason Another user logged on this global unique id 166998 mac 166998 bytes_out 0 166998 bytes_in 0 166998 station_ip 83.122.234.224 166998 port 769 166998 unique_id port 167000 username hashtadani4 167000 mac 167000 bytes_out 0 167000 bytes_in 0 167000 station_ip 83.122.154.198 167000 port 758 167000 unique_id port 167000 remote_ip 10.8.0.182 167003 username farhad2 167003 mac 167003 bytes_out 0 167003 bytes_in 0 167003 station_ip 5.120.85.242 167003 port 758 167003 unique_id port 167003 remote_ip 10.8.0.190 167005 username fezealinaghi 167005 kill_reason Another user logged on this global unique id 167005 mac 167005 bytes_out 0 167005 bytes_in 0 167005 station_ip 83.123.26.74 167005 port 396 167005 unique_id port 167008 username barzegar 167008 mac 167008 bytes_out 0 167008 bytes_in 0 167008 station_ip 5.119.221.234 167008 port 745 167008 unique_id port 167008 remote_ip 10.8.0.234 167009 username hashtadani4 167009 mac 167009 bytes_out 0 167009 bytes_in 0 167009 station_ip 83.122.154.198 167009 port 745 167009 unique_id port 167009 remote_ip 10.8.0.182 167012 username hashtadani4 167012 mac 167012 bytes_out 0 167012 bytes_in 0 167012 station_ip 83.122.154.198 167012 port 745 167012 unique_id port 167012 remote_ip 10.8.0.182 167014 username mostafa_es78 167014 kill_reason Another user logged on this global unique id 167014 mac 167014 bytes_out 0 167014 bytes_in 0 167014 station_ip 83.122.234.224 167014 port 769 167014 unique_id port 167017 username mostafa_es78 167017 kill_reason Another user logged on this global unique id 167017 mac 167017 bytes_out 0 167017 bytes_in 0 167017 station_ip 83.122.234.224 167017 port 769 167017 unique_id port 167018 username hashtadani4 167018 mac 167018 bytes_out 0 167018 bytes_in 0 167018 station_ip 83.122.154.198 167018 port 745 167018 unique_id port 167018 remote_ip 10.8.0.182 167021 username hashtadani4 167021 mac 167021 bytes_out 0 167021 bytes_in 0 167021 station_ip 83.122.154.198 167021 port 395 167021 unique_id port 167021 remote_ip 10.8.1.142 167024 username barzegar 167024 mac 167024 bytes_out 0 167024 bytes_in 0 167024 station_ip 5.119.221.234 167024 port 745 167024 unique_id port 167024 remote_ip 10.8.0.234 167025 username mostafa_es78 167025 kill_reason Another user logged on this global unique id 167025 mac 166987 bytes_out 0 166987 bytes_in 0 166987 station_ip 83.122.154.198 166987 port 758 166987 unique_id port 166987 remote_ip 10.8.0.182 166990 username mostafa_es78 166990 kill_reason Another user logged on this global unique id 166990 mac 166990 bytes_out 0 166990 bytes_in 0 166990 station_ip 83.122.234.224 166990 port 769 166990 unique_id port 166992 username tahmasebi 166992 mac 166992 bytes_out 2098 166992 bytes_in 4415 166992 station_ip 5.119.109.36 166992 port 745 166992 unique_id port 166992 remote_ip 10.8.0.42 166993 username fezealinaghi 166993 kill_reason Another user logged on this global unique id 166993 mac 166993 bytes_out 0 166993 bytes_in 0 166993 station_ip 83.123.26.74 166993 port 396 166993 unique_id port 166994 username mostafa_es78 166994 kill_reason Another user logged on this global unique id 166994 mac 166994 bytes_out 0 166994 bytes_in 0 166994 station_ip 83.122.234.224 166994 port 769 166994 unique_id port 166997 username barzegar 166997 mac 166997 bytes_out 0 166997 bytes_in 0 166997 station_ip 5.119.221.234 166997 port 395 166997 unique_id port 166997 remote_ip 10.8.1.174 167002 username mostafa_es78 167002 kill_reason Another user logged on this global unique id 167002 mac 167002 bytes_out 0 167002 bytes_in 0 167002 station_ip 83.122.234.224 167002 port 769 167002 unique_id port 167004 username hashtadani4 167004 mac 167004 bytes_out 0 167004 bytes_in 0 167004 station_ip 83.122.154.198 167004 port 758 167004 unique_id port 167004 remote_ip 10.8.0.182 167006 username tahmasebi 167006 mac 167006 bytes_out 38273 167006 bytes_in 51360 167006 station_ip 5.119.109.36 167006 port 745 167006 unique_id port 167006 remote_ip 10.8.0.42 167013 username fezealinaghi 167013 kill_reason Another user logged on this global unique id 167013 mac 167013 bytes_out 0 167013 bytes_in 0 167013 station_ip 83.123.26.74 167013 port 396 167013 unique_id port 167016 username barzegar 167016 mac 167016 bytes_out 0 167016 bytes_in 0 167016 station_ip 5.119.221.234 167016 port 745 167016 unique_id port 167016 remote_ip 10.8.0.234 167020 username mostafa_es78 167020 kill_reason Another user logged on this global unique id 167020 mac 167020 bytes_out 0 167020 bytes_in 0 167020 station_ip 83.122.234.224 167020 port 769 167020 unique_id port 167022 username hashtadani4 167022 mac 167022 bytes_out 0 167022 bytes_in 0 167022 station_ip 83.122.154.198 167022 port 745 167022 unique_id port 167022 remote_ip 10.8.0.182 167032 username barzegar 167032 mac 167032 bytes_out 0 167032 bytes_in 0 167032 station_ip 5.119.221.234 167032 port 745 167032 unique_id port 167032 remote_ip 10.8.0.234 167038 username mostafa_es78 167038 kill_reason Another user logged on this global unique id 167038 mac 167038 bytes_out 0 167038 bytes_in 0 167038 station_ip 83.122.234.224 167038 port 769 167038 unique_id port 167042 username hashtadani4 167042 mac 167042 bytes_out 0 167042 bytes_in 0 167042 station_ip 83.122.154.198 167042 port 745 167042 unique_id port 167042 remote_ip 10.8.0.182 167043 username mostafa_es78 167043 kill_reason Another user logged on this global unique id 167043 mac 167043 bytes_out 0 167043 bytes_in 0 167043 station_ip 83.122.234.224 167043 port 769 167043 unique_id port 167045 username hashtadani4 167045 mac 167045 bytes_out 0 167045 bytes_in 0 167045 station_ip 83.122.154.198 167045 port 745 167045 unique_id port 167045 remote_ip 10.8.0.182 167046 username mostafa_es78 167046 mac 167046 bytes_out 0 167046 bytes_in 0 167046 station_ip 83.122.234.224 167046 port 769 167046 unique_id port 167025 bytes_out 0 167025 bytes_in 0 167025 station_ip 83.122.234.224 167025 port 769 167025 unique_id port 167027 username mostafa_es78 167027 kill_reason Another user logged on this global unique id 167027 mac 167027 bytes_out 0 167027 bytes_in 0 167027 station_ip 83.122.234.224 167027 port 769 167027 unique_id port 167028 username fezealinaghi 167028 kill_reason Another user logged on this global unique id 167028 mac 167028 bytes_out 0 167028 bytes_in 0 167028 station_ip 83.123.26.74 167028 port 396 167028 unique_id port 167030 username hashtadani4 167030 mac 167030 bytes_out 0 167030 bytes_in 0 167030 station_ip 83.122.154.198 167030 port 745 167030 unique_id port 167030 remote_ip 10.8.0.182 167031 username mostafa_es78 167031 kill_reason Another user logged on this global unique id 167031 mac 167031 bytes_out 0 167031 bytes_in 0 167031 station_ip 83.122.234.224 167031 port 769 167031 unique_id port 167033 username hashtadani4 167033 mac 167033 bytes_out 0 167033 bytes_in 0 167033 station_ip 83.122.154.198 167033 port 745 167033 unique_id port 167033 remote_ip 10.8.0.182 167035 username fezealinaghi 167035 mac 167035 bytes_out 0 167035 bytes_in 0 167035 station_ip 83.123.26.74 167035 port 396 167035 unique_id port 167036 username hashtadani4 167036 mac 167036 bytes_out 0 167036 bytes_in 0 167036 station_ip 83.122.154.198 167036 port 745 167036 unique_id port 167036 remote_ip 10.8.0.182 167037 username fezealinaghi 167037 mac 167037 bytes_out 0 167037 bytes_in 0 167037 station_ip 83.123.26.74 167037 port 395 167037 unique_id port 167037 remote_ip 10.8.1.162 167044 username barzegar 167044 mac 167044 bytes_out 0 167044 bytes_in 0 167044 station_ip 5.119.221.234 167044 port 395 167044 unique_id port 167044 remote_ip 10.8.1.174 167049 username jafari 167049 mac 167049 bytes_out 0 167049 bytes_in 0 167049 station_ip 37.137.18.243 167049 port 770 167049 unique_id port 167049 remote_ip 10.8.0.242 167052 username hashtadani4 167052 mac 167052 bytes_out 0 167052 bytes_in 0 167052 station_ip 83.122.247.146 167052 port 769 167052 unique_id port 167052 remote_ip 10.8.0.182 167058 username barzegar 167058 mac 167058 bytes_out 0 167058 bytes_in 0 167058 station_ip 5.119.221.234 167058 port 391 167058 unique_id port 167058 remote_ip 10.8.1.174 167059 username hashtadani4 167059 mac 167059 bytes_out 0 167059 bytes_in 0 167059 station_ip 83.122.247.146 167059 port 769 167059 unique_id port 167059 remote_ip 10.8.0.182 167062 username hashtadani4 167062 mac 167062 bytes_out 0 167062 bytes_in 0 167062 station_ip 83.122.247.146 167062 port 769 167062 unique_id port 167062 remote_ip 10.8.0.182 167063 username hashtadani4 167063 mac 167063 bytes_out 0 167063 bytes_in 0 167063 station_ip 83.122.247.146 167063 port 769 167063 unique_id port 167063 remote_ip 10.8.0.182 167068 username moradi 167068 mac 167068 bytes_out 0 167068 bytes_in 0 167068 station_ip 37.129.172.237 167068 port 767 167068 unique_id port 167068 remote_ip 10.8.0.126 167069 username hashtadani4 167069 mac 167069 bytes_out 0 167069 bytes_in 0 167069 station_ip 83.122.247.146 167069 port 767 167069 unique_id port 167069 remote_ip 10.8.0.182 167077 username barzegar 167077 mac 167077 bytes_out 0 167077 bytes_in 0 167077 station_ip 5.119.221.234 167077 port 767 167077 unique_id port 167077 remote_ip 10.8.0.234 167079 username hashtadani4 167079 mac 167079 bytes_out 0 167079 bytes_in 0 167079 station_ip 83.122.247.146 167029 port 395 167029 unique_id port 167029 remote_ip 10.8.1.142 167034 username mostafa_es78 167034 kill_reason Another user logged on this global unique id 167034 mac 167034 bytes_out 0 167034 bytes_in 0 167034 station_ip 83.122.234.224 167034 port 769 167034 unique_id port 167039 username barzegar 167039 mac 167039 bytes_out 0 167039 bytes_in 0 167039 station_ip 5.119.221.234 167039 port 395 167039 unique_id port 167039 remote_ip 10.8.1.174 167040 username hashtadani4 167040 mac 167040 bytes_out 0 167040 bytes_in 0 167040 station_ip 83.122.154.198 167040 port 745 167040 unique_id port 167040 remote_ip 10.8.0.182 167041 username mostafa_es78 167041 kill_reason Another user logged on this global unique id 167041 mac 167041 bytes_out 0 167041 bytes_in 0 167041 station_ip 83.122.234.224 167041 port 769 167041 unique_id port 167047 username aminvpn 167047 unique_id port 167047 terminate_cause Lost-Carrier 167047 bytes_out 9422746 167047 bytes_in 28099759 167047 station_ip 5.120.162.192 167047 port 15728731 167047 nas_port_type Virtual 167047 remote_ip 5.5.5.178 167048 username mehdizare 167048 mac 167048 bytes_out 539626 167048 bytes_in 743996 167048 station_ip 83.122.93.213 167048 port 391 167048 unique_id port 167048 remote_ip 10.8.1.42 167050 username moradi 167050 mac 167050 bytes_out 0 167050 bytes_in 0 167050 station_ip 37.129.172.237 167050 port 773 167050 unique_id port 167050 remote_ip 10.8.0.126 167053 username milan 167053 kill_reason Another user logged on this global unique id 167053 mac 167053 bytes_out 0 167053 bytes_in 0 167053 station_ip 5.120.91.29 167053 port 768 167053 unique_id port 167054 username hashtadani4 167054 mac 167054 bytes_out 0 167054 bytes_in 0 167054 station_ip 83.122.247.146 167054 port 769 167054 unique_id port 167054 remote_ip 10.8.0.182 167061 username barzegar 167061 mac 167061 bytes_out 0 167061 bytes_in 0 167061 station_ip 5.119.221.234 167061 port 391 167061 unique_id port 167061 remote_ip 10.8.1.174 167064 username hashtadani4 167064 mac 167064 bytes_out 0 167064 bytes_in 0 167064 station_ip 83.122.247.146 167064 port 769 167064 unique_id port 167064 remote_ip 10.8.0.182 167067 username nilufarrajaei 167067 mac 167067 bytes_out 0 167067 bytes_in 0 167067 station_ip 83.123.20.113 167067 port 758 167067 unique_id port 167067 remote_ip 10.8.0.206 167071 username barzegar 167071 mac 167071 bytes_out 0 167071 bytes_in 0 167071 station_ip 5.119.221.234 167071 port 767 167071 unique_id port 167071 remote_ip 10.8.0.234 167074 username hashtadani4 167074 mac 167074 bytes_out 0 167074 bytes_in 0 167074 station_ip 83.122.247.146 167074 port 767 167074 unique_id port 167074 remote_ip 10.8.0.182 167078 username hashtadani4 167078 mac 167078 bytes_out 0 167078 bytes_in 0 167078 station_ip 83.122.247.146 167078 port 767 167078 unique_id port 167078 remote_ip 10.8.0.182 167080 username barzegar 167080 mac 167080 bytes_out 0 167080 bytes_in 0 167080 station_ip 5.119.221.234 167080 port 767 167080 unique_id port 167080 remote_ip 10.8.0.234 167081 username hashtadani4 167081 mac 167081 bytes_out 0 167081 bytes_in 0 167081 station_ip 83.122.247.146 167081 port 767 167081 unique_id port 167081 remote_ip 10.8.0.182 167082 username hashtadani4 167082 mac 167082 bytes_out 0 167082 bytes_in 0 167082 station_ip 83.122.247.146 167082 port 767 167082 unique_id port 167082 remote_ip 10.8.0.182 167083 username barzegar 167083 mac 167083 bytes_out 0 167083 bytes_in 0 167051 username barzegar 167051 mac 167051 bytes_out 0 167051 bytes_in 0 167051 station_ip 5.119.221.234 167051 port 391 167051 unique_id port 167051 remote_ip 10.8.1.174 167055 username barzegar 167055 mac 167055 bytes_out 0 167055 bytes_in 0 167055 station_ip 5.119.221.234 167055 port 391 167055 unique_id port 167055 remote_ip 10.8.1.174 167056 username hashtadani4 167056 mac 167056 bytes_out 0 167056 bytes_in 0 167056 station_ip 83.122.247.146 167056 port 769 167056 unique_id port 167056 remote_ip 10.8.0.182 167057 username hashtadani4 167057 mac 167057 bytes_out 0 167057 bytes_in 0 167057 station_ip 83.122.247.146 167057 port 769 167057 unique_id port 167057 remote_ip 10.8.0.182 167060 username hashtadani4 167060 mac 167060 bytes_out 0 167060 bytes_in 0 167060 station_ip 83.122.247.146 167060 port 769 167060 unique_id port 167060 remote_ip 10.8.0.182 167065 username barzegar 167065 mac 167065 bytes_out 0 167065 bytes_in 0 167065 station_ip 5.119.221.234 167065 port 391 167065 unique_id port 167065 remote_ip 10.8.1.174 167066 username mehdizare 167066 mac 167066 bytes_out 0 167066 bytes_in 0 167066 station_ip 83.122.93.213 167066 port 745 167066 unique_id port 167066 remote_ip 10.8.0.90 167070 username hashtadani4 167070 mac 167070 bytes_out 0 167070 bytes_in 0 167070 station_ip 83.122.247.146 167070 port 767 167070 unique_id port 167070 remote_ip 10.8.0.182 167072 username hashtadani4 167072 mac 167072 bytes_out 0 167072 bytes_in 0 167072 station_ip 83.122.247.146 167072 port 395 167072 unique_id port 167072 remote_ip 10.8.1.142 167073 username hashtadani4 167073 mac 167073 bytes_out 0 167073 bytes_in 0 167073 station_ip 83.122.247.146 167073 port 767 167073 unique_id port 167073 remote_ip 10.8.0.182 167075 username nilufarrajaei 167075 mac 167075 bytes_out 0 167075 bytes_in 0 167075 station_ip 83.122.47.139 167075 port 391 167075 unique_id port 167075 remote_ip 10.8.1.166 167076 username hashtadani4 167076 mac 167076 bytes_out 0 167076 bytes_in 0 167076 station_ip 83.122.247.146 167076 port 767 167076 unique_id port 167076 remote_ip 10.8.0.182 167079 port 767 167079 unique_id port 167079 remote_ip 10.8.0.182 167083 station_ip 5.119.221.234 167083 port 767 167083 unique_id port 167083 remote_ip 10.8.0.234 167084 username hashtadani4 167084 mac 167084 bytes_out 0 167084 bytes_in 0 167084 station_ip 83.122.247.146 167084 port 767 167084 unique_id port 167084 remote_ip 10.8.0.182 167085 username hashtadani4 167085 mac 167085 bytes_out 0 167085 bytes_in 0 167085 station_ip 83.122.247.146 167085 port 767 167085 unique_id port 167085 remote_ip 10.8.0.182 167086 username hashtadani4 167086 mac 167086 bytes_out 0 167086 bytes_in 0 167086 station_ip 83.122.247.146 167086 port 767 167086 unique_id port 167086 remote_ip 10.8.0.182 167087 username barzegar 167087 mac 167087 bytes_out 0 167087 bytes_in 0 167087 station_ip 5.119.221.234 167087 port 395 167087 unique_id port 167087 remote_ip 10.8.1.174 167088 username hashtadani4 167088 mac 167088 bytes_out 156097 167088 bytes_in 873857 167088 station_ip 83.122.247.146 167088 port 767 167088 unique_id port 167088 remote_ip 10.8.0.182 167089 username saeed9658 167089 mac 167089 bytes_out 0 167089 bytes_in 0 167089 station_ip 5.119.176.146 167089 port 395 167089 unique_id port 167089 remote_ip 10.8.1.210 167090 username hashtadani4 167090 mac 167090 bytes_out 0 167090 bytes_in 0 167090 station_ip 83.122.247.146 167090 port 767 167090 unique_id port 167090 remote_ip 10.8.0.182 167093 username hashtadani4 167093 mac 167093 bytes_out 0 167093 bytes_in 0 167093 station_ip 83.122.247.146 167093 port 767 167093 unique_id port 167093 remote_ip 10.8.0.182 167095 username saeed9658 167095 mac 167095 bytes_out 319114 167095 bytes_in 3284445 167095 station_ip 5.119.176.146 167095 port 395 167095 unique_id port 167095 remote_ip 10.8.1.210 167101 username hashtadani4 167101 mac 167101 bytes_out 0 167101 bytes_in 0 167101 station_ip 37.129.28.115 167101 port 767 167101 unique_id port 167101 remote_ip 10.8.0.182 167102 username hashtadani4 167102 mac 167102 bytes_out 0 167102 bytes_in 0 167102 station_ip 37.129.28.115 167102 port 767 167102 unique_id port 167102 remote_ip 10.8.0.182 167103 username hashtadani4 167103 mac 167103 bytes_out 0 167103 bytes_in 0 167103 station_ip 37.129.28.115 167103 port 767 167103 unique_id port 167103 remote_ip 10.8.0.182 167106 username alipour 167106 mac 167106 bytes_out 0 167106 bytes_in 0 167106 station_ip 113.203.66.66 167106 port 767 167106 unique_id port 167106 remote_ip 10.8.0.102 167107 username hashtadani4 167107 mac 167107 bytes_out 0 167107 bytes_in 0 167107 station_ip 37.129.28.115 167107 port 767 167107 unique_id port 167107 remote_ip 10.8.0.182 167110 username hashtadani4 167110 mac 167110 bytes_out 0 167110 bytes_in 0 167110 station_ip 37.129.28.115 167110 port 767 167110 unique_id port 167110 remote_ip 10.8.0.182 167117 username hashtadani4 167117 mac 167117 bytes_out 0 167117 bytes_in 0 167117 station_ip 37.129.28.115 167117 port 769 167117 unique_id port 167117 remote_ip 10.8.0.182 167119 username barzegar 167119 mac 167119 bytes_out 0 167119 bytes_in 0 167119 station_ip 5.119.221.234 167119 port 395 167119 unique_id port 167119 remote_ip 10.8.1.174 167120 username hashtadani4 167120 mac 167120 bytes_out 0 167120 bytes_in 0 167120 station_ip 37.129.28.115 167120 port 773 167120 unique_id port 167120 remote_ip 10.8.0.182 167121 username hashtadani4 167121 mac 167121 bytes_out 0 167121 bytes_in 0 167121 station_ip 37.129.28.115 167121 port 773 167121 unique_id port 167121 remote_ip 10.8.0.182 167122 username mehdizare 167122 mac 167122 bytes_out 0 167122 bytes_in 0 167122 station_ip 83.122.93.213 167122 port 745 167122 unique_id port 167122 remote_ip 10.8.0.90 167127 username mehdizare 167127 mac 167127 bytes_out 0 167127 bytes_in 0 167127 station_ip 37.129.239.226 167127 port 773 167127 unique_id port 167127 remote_ip 10.8.0.90 167133 username barzegar 167133 mac 167133 bytes_out 0 167133 bytes_in 0 167133 station_ip 5.119.221.234 167133 port 769 167133 unique_id port 167133 remote_ip 10.8.0.234 167135 username mehdizare 167135 mac 167135 bytes_out 0 167135 bytes_in 0 167135 station_ip 83.123.30.60 167135 port 769 167135 unique_id port 167135 remote_ip 10.8.0.90 167136 username hashtadani4 167136 mac 167136 bytes_out 0 167136 bytes_in 0 167136 station_ip 37.129.28.115 167136 port 769 167136 unique_id port 167136 remote_ip 10.8.0.182 167143 username jafari 167143 kill_reason Another user logged on this global unique id 167143 mac 167143 bytes_out 0 167143 bytes_in 0 167143 station_ip 37.137.18.243 167143 port 770 167143 unique_id port 167143 remote_ip 10.8.0.242 167145 username mehdizare 167145 mac 167145 bytes_out 0 167145 bytes_in 0 167091 username barzegar 167091 mac 167091 bytes_out 0 167091 bytes_in 0 167091 station_ip 5.119.221.234 167091 port 396 167091 unique_id port 167091 remote_ip 10.8.1.174 167092 username saeed9658 167092 mac 167092 bytes_out 0 167092 bytes_in 0 167092 station_ip 5.119.176.146 167092 port 395 167092 unique_id port 167092 remote_ip 10.8.1.210 167094 username barzegar 167094 mac 167094 bytes_out 0 167094 bytes_in 0 167094 station_ip 5.119.221.234 167094 port 396 167094 unique_id port 167094 remote_ip 10.8.1.174 167096 username hashtadani4 167096 mac 167096 bytes_out 435812 167096 bytes_in 3361654 167096 station_ip 83.122.247.146 167096 port 767 167096 unique_id port 167096 remote_ip 10.8.0.182 167097 username hashtadani4 167097 mac 167097 bytes_out 0 167097 bytes_in 0 167097 station_ip 83.122.247.146 167097 port 395 167097 unique_id port 167097 remote_ip 10.8.1.142 167098 username hashtadani4 167098 mac 167098 bytes_out 0 167098 bytes_in 0 167098 station_ip 37.129.28.115 167098 port 767 167098 unique_id port 167098 remote_ip 10.8.0.182 167099 username barzegar 167099 mac 167099 bytes_out 0 167099 bytes_in 0 167099 station_ip 5.119.221.234 167099 port 769 167099 unique_id port 167099 remote_ip 10.8.0.234 167104 username hashtadani4 167104 mac 167104 bytes_out 0 167104 bytes_in 0 167104 station_ip 37.129.28.115 167104 port 767 167104 unique_id port 167104 remote_ip 10.8.0.182 167105 username hashtadani4 167105 mac 167105 bytes_out 0 167105 bytes_in 0 167105 station_ip 37.129.28.115 167105 port 767 167105 unique_id port 167105 remote_ip 10.8.0.182 167108 username barzegar 167108 mac 167108 bytes_out 0 167108 bytes_in 0 167108 station_ip 5.119.221.234 167108 port 395 167108 unique_id port 167108 remote_ip 10.8.1.174 167109 username hashtadani4 167109 mac 167109 bytes_out 0 167109 bytes_in 0 167109 station_ip 37.129.28.115 167109 port 767 167109 unique_id port 167109 remote_ip 10.8.0.182 167111 username hashtadani4 167111 mac 167111 bytes_out 0 167111 bytes_in 0 167111 station_ip 37.129.28.115 167111 port 769 167111 unique_id port 167111 remote_ip 10.8.0.182 167112 username hashtadani4 167112 mac 167112 bytes_out 0 167112 bytes_in 0 167112 station_ip 37.129.28.115 167112 port 769 167112 unique_id port 167112 remote_ip 10.8.0.182 167115 username hashtadani4 167115 mac 167115 bytes_out 0 167115 bytes_in 0 167115 station_ip 37.129.28.115 167115 port 395 167115 unique_id port 167115 remote_ip 10.8.1.142 167118 username hashtadani4 167118 mac 167118 bytes_out 0 167118 bytes_in 0 167118 station_ip 37.129.28.115 167118 port 769 167118 unique_id port 167118 remote_ip 10.8.0.182 167124 username barzegar 167124 mac 167124 bytes_out 0 167124 bytes_in 0 167124 station_ip 5.119.221.234 167124 port 395 167124 unique_id port 167124 remote_ip 10.8.1.174 167125 username hashtadani4 167125 mac 167125 bytes_out 0 167125 bytes_in 0 167125 station_ip 37.129.28.115 167125 port 773 167125 unique_id port 167125 remote_ip 10.8.0.182 167126 username mehdizare 167126 mac 167126 bytes_out 0 167126 bytes_in 0 167126 station_ip 83.123.58.185 167126 port 745 167126 unique_id port 167126 remote_ip 10.8.0.90 167129 username hashtadani4 167129 mac 167129 bytes_out 0 167129 bytes_in 0 167129 station_ip 37.129.28.115 167129 port 395 167129 unique_id port 167129 remote_ip 10.8.1.142 167131 username hashtadani4 167131 mac 167100 username hashtadani4 167100 mac 167100 bytes_out 0 167100 bytes_in 0 167100 station_ip 37.129.28.115 167100 port 767 167100 unique_id port 167100 remote_ip 10.8.0.182 167113 username hashtadani4 167113 mac 167113 bytes_out 0 167113 bytes_in 0 167113 station_ip 37.129.28.115 167113 port 769 167113 unique_id port 167113 remote_ip 10.8.0.182 167114 username barzegar 167114 mac 167114 bytes_out 0 167114 bytes_in 0 167114 station_ip 5.119.221.234 167114 port 395 167114 unique_id port 167114 remote_ip 10.8.1.174 167116 username hashtadani4 167116 mac 167116 bytes_out 0 167116 bytes_in 0 167116 station_ip 37.129.28.115 167116 port 769 167116 unique_id port 167116 remote_ip 10.8.0.182 167123 username hashtadani4 167123 mac 167123 bytes_out 0 167123 bytes_in 0 167123 station_ip 37.129.28.115 167123 port 773 167123 unique_id port 167123 remote_ip 10.8.0.182 167128 username mehdizare 167128 mac 167128 bytes_out 0 167128 bytes_in 0 167128 station_ip 83.123.25.39 167128 port 745 167128 unique_id port 167128 remote_ip 10.8.0.90 167130 username hashtadani4 167130 mac 167130 bytes_out 0 167130 bytes_in 0 167130 station_ip 37.129.28.115 167130 port 745 167130 unique_id port 167130 remote_ip 10.8.0.182 167138 username hashtadani4 167138 mac 167138 bytes_out 0 167138 bytes_in 0 167138 station_ip 37.129.28.115 167138 port 773 167138 unique_id port 167138 remote_ip 10.8.0.182 167139 username hashtadani4 167139 mac 167139 bytes_out 0 167139 bytes_in 0 167139 station_ip 37.129.28.115 167139 port 773 167139 unique_id port 167139 remote_ip 10.8.0.182 167140 username sedighe 167140 mac 167140 bytes_out 67763 167140 bytes_in 102795 167140 station_ip 37.129.95.21 167140 port 745 167140 unique_id port 167140 remote_ip 10.8.0.146 167141 username hashtadani4 167141 mac 167141 bytes_out 0 167141 bytes_in 0 167141 station_ip 37.129.28.115 167141 port 745 167141 unique_id port 167141 remote_ip 10.8.0.182 167147 username sedighe 167147 mac 167147 bytes_out 0 167147 bytes_in 0 167147 station_ip 37.129.95.21 167147 port 773 167147 unique_id port 167147 remote_ip 10.8.0.146 167148 username mehdizare 167148 mac 167148 bytes_out 10478 167148 bytes_in 15576 167148 station_ip 83.123.231.129 167148 port 745 167148 unique_id port 167148 remote_ip 10.8.0.90 167149 username barzegar 167149 mac 167149 bytes_out 0 167149 bytes_in 0 167149 station_ip 5.119.221.234 167149 port 745 167149 unique_id port 167149 remote_ip 10.8.0.234 167153 username hashtadani4 167153 mac 167153 bytes_out 0 167153 bytes_in 0 167153 station_ip 37.129.28.115 167153 port 773 167153 unique_id port 167153 remote_ip 10.8.0.182 167158 username nilufarrajaei 167158 mac 167158 bytes_out 0 167158 bytes_in 0 167158 station_ip 37.129.175.58 167158 port 391 167158 unique_id port 167159 username jafari 167159 kill_reason Another user logged on this global unique id 167159 mac 167159 bytes_out 0 167159 bytes_in 0 167159 station_ip 37.137.18.243 167159 port 770 167159 unique_id port 167160 username mehdizare 167160 mac 167160 bytes_out 0 167160 bytes_in 0 167160 station_ip 83.122.46.121 167160 port 745 167160 unique_id port 167160 remote_ip 10.8.0.90 167171 username barzegar 167171 mac 167171 bytes_out 0 167171 bytes_in 0 167171 station_ip 5.119.221.234 167171 port 769 167171 unique_id port 167171 remote_ip 10.8.0.234 167172 username hashtadani4 167172 mac 167172 bytes_out 0 167131 bytes_out 0 167131 bytes_in 0 167131 station_ip 37.129.28.115 167131 port 775 167131 unique_id port 167131 remote_ip 10.8.0.182 167132 username sedighe 167132 mac 167132 bytes_out 795409 167132 bytes_in 8412035 167132 station_ip 37.129.95.21 167132 port 769 167132 unique_id port 167132 remote_ip 10.8.0.146 167134 username mehdizare 167134 mac 167134 bytes_out 0 167134 bytes_in 0 167134 station_ip 83.122.20.211 167134 port 773 167134 unique_id port 167134 remote_ip 10.8.0.90 167137 username mehdizare 167137 mac 167137 bytes_out 0 167137 bytes_in 0 167137 station_ip 83.123.231.129 167137 port 773 167137 unique_id port 167137 remote_ip 10.8.0.90 167142 username barzegar 167142 mac 167142 bytes_out 0 167142 bytes_in 0 167142 station_ip 5.119.221.234 167142 port 745 167142 unique_id port 167142 remote_ip 10.8.0.234 167144 username hashtadani4 167144 mac 167144 bytes_out 188303 167144 bytes_in 3986834 167144 station_ip 37.129.28.115 167144 port 745 167144 unique_id port 167144 remote_ip 10.8.0.182 167151 username nilufarrajaei 167151 kill_reason Another user logged on this global unique id 167151 mac 167151 bytes_out 0 167151 bytes_in 0 167151 station_ip 37.129.175.58 167151 port 391 167151 unique_id port 167151 remote_ip 10.8.1.166 167154 username jafari 167154 kill_reason Another user logged on this global unique id 167154 mac 167154 bytes_out 0 167154 bytes_in 0 167154 station_ip 37.137.18.243 167154 port 770 167154 unique_id port 167162 username mehdizare 167162 mac 167162 bytes_out 0 167162 bytes_in 0 167162 station_ip 83.123.25.25 167162 port 775 167162 unique_id port 167162 remote_ip 10.8.0.90 167164 username hashtadani4 167164 mac 167164 bytes_out 0 167164 bytes_in 0 167164 station_ip 37.129.28.115 167164 port 773 167164 unique_id port 167164 remote_ip 10.8.0.182 167165 username mehdizare 167165 mac 167165 bytes_out 3871 167165 bytes_in 8286 167165 station_ip 37.129.228.62 167165 port 745 167165 unique_id port 167165 remote_ip 10.8.0.90 167167 username yaghobi 167167 mac 167167 bytes_out 39119 167167 bytes_in 95506 167167 station_ip 37.129.54.241 167167 port 745 167167 unique_id port 167167 remote_ip 10.8.0.198 167168 username hashtadani4 167168 mac 167168 bytes_out 0 167168 bytes_in 0 167168 station_ip 37.129.28.115 167168 port 745 167168 unique_id port 167168 remote_ip 10.8.0.182 167169 username milan 167169 kill_reason Another user logged on this global unique id 167169 mac 167169 bytes_out 0 167169 bytes_in 0 167169 station_ip 5.120.91.29 167169 port 768 167169 unique_id port 167170 username jafari 167170 kill_reason Another user logged on this global unique id 167170 mac 167170 bytes_out 0 167170 bytes_in 0 167170 station_ip 37.137.18.243 167170 port 770 167170 unique_id port 167173 username mansour 167173 mac 167173 bytes_out 0 167173 bytes_in 0 167173 station_ip 5.202.5.132 167173 port 767 167173 unique_id port 167173 remote_ip 10.8.0.30 167174 username hashtadani4 167174 mac 167174 bytes_out 0 167174 bytes_in 0 167174 station_ip 37.129.28.115 167174 port 767 167174 unique_id port 167174 remote_ip 10.8.0.182 167175 username hashtadani4 167175 mac 167175 bytes_out 0 167175 bytes_in 0 167175 station_ip 37.129.28.115 167175 port 767 167175 unique_id port 167175 remote_ip 10.8.0.182 167176 username mehdizare 167176 mac 167176 bytes_out 126586 167176 bytes_in 289653 167176 station_ip 83.123.108.164 167176 port 745 167176 unique_id port 167176 remote_ip 10.8.0.90 167145 station_ip 83.123.231.129 167145 port 769 167145 unique_id port 167145 remote_ip 10.8.0.90 167146 username hashtadani4 167146 mac 167146 bytes_out 0 167146 bytes_in 0 167146 station_ip 37.129.28.115 167146 port 769 167146 unique_id port 167146 remote_ip 10.8.0.182 167150 username mehdizare 167150 mac 167150 bytes_out 0 167150 bytes_in 0 167150 station_ip 83.123.64.95 167150 port 769 167150 unique_id port 167150 remote_ip 10.8.0.90 167152 username hashtadani4 167152 mac 167152 bytes_out 0 167152 bytes_in 0 167152 station_ip 37.129.28.115 167152 port 773 167152 unique_id port 167152 remote_ip 10.8.0.182 167155 username forozandeh1 167155 mac 167155 bytes_out 0 167155 bytes_in 0 167155 station_ip 37.129.53.170 167155 port 769 167155 unique_id port 167155 remote_ip 10.8.0.130 167156 username hashtadani4 167156 mac 167156 bytes_out 0 167156 bytes_in 0 167156 station_ip 37.129.28.115 167156 port 769 167156 unique_id port 167156 remote_ip 10.8.0.182 167157 username hashtadani4 167157 mac 167157 bytes_out 0 167157 bytes_in 0 167157 station_ip 37.129.28.115 167157 port 769 167157 unique_id port 167157 remote_ip 10.8.0.182 167161 username barzegar 167161 mac 167161 bytes_out 0 167161 bytes_in 0 167161 station_ip 5.119.221.234 167161 port 745 167161 unique_id port 167161 remote_ip 10.8.0.234 167163 username yaghobi 167163 mac 167163 bytes_out 0 167163 bytes_in 0 167163 station_ip 37.129.54.241 167163 port 773 167163 unique_id port 167163 remote_ip 10.8.0.198 167166 username shadkam 167166 mac 167166 bytes_out 0 167166 bytes_in 0 167166 station_ip 37.129.90.224 167166 port 769 167166 unique_id port 167166 remote_ip 10.8.0.62 167177 username mehdizare 167177 mac 167177 bytes_out 0 167177 bytes_in 0 167177 station_ip 83.123.58.164 167177 port 767 167177 unique_id port 167177 remote_ip 10.8.0.90 167178 username hashtadani4 167178 mac 167178 bytes_out 0 167178 bytes_in 0 167178 station_ip 37.129.28.115 167178 port 767 167178 unique_id port 167178 remote_ip 10.8.0.182 167180 username mehdizare 167180 mac 167180 bytes_out 0 167180 bytes_in 0 167180 station_ip 83.123.44.16 167180 port 767 167180 unique_id port 167180 remote_ip 10.8.0.90 167183 username moradi 167183 mac 167183 bytes_out 0 167183 bytes_in 0 167183 station_ip 83.122.45.213 167183 port 758 167183 unique_id port 167183 remote_ip 10.8.0.126 167184 username hashtadani4 167184 mac 167184 bytes_out 0 167184 bytes_in 0 167184 station_ip 37.129.28.115 167184 port 767 167184 unique_id port 167184 remote_ip 10.8.0.182 167187 username milan 167187 kill_reason Another user logged on this global unique id 167187 mac 167187 bytes_out 0 167187 bytes_in 0 167187 station_ip 5.120.91.29 167187 port 768 167187 unique_id port 167189 username jafari 167232 remote_ip 10.8.1.42 167189 kill_reason Another user logged on this global unique id 167189 mac 167189 bytes_out 0 167189 bytes_in 0 167189 station_ip 37.137.18.243 167189 port 770 167189 unique_id port 167192 username mehdizare 167192 mac 167192 bytes_out 0 167192 bytes_in 0 167192 station_ip 83.123.89.63 167192 port 769 167192 unique_id port 167192 remote_ip 10.8.0.90 167194 username hashtadani4 167194 mac 167194 bytes_out 0 167194 bytes_in 0 167194 station_ip 37.129.28.115 167194 port 769 167194 unique_id port 167194 remote_ip 10.8.0.182 167197 username hashtadani4 167197 mac 167197 bytes_out 0 167197 bytes_in 0 167197 station_ip 37.129.28.115 167197 port 769 167172 bytes_in 0 167172 station_ip 37.129.28.115 167172 port 769 167172 unique_id port 167172 remote_ip 10.8.0.182 167179 username mehdizare 167179 mac 167179 bytes_out 0 167179 bytes_in 0 167179 station_ip 83.122.204.139 167179 port 769 167179 unique_id port 167179 remote_ip 10.8.0.90 167181 username mehdizare 167181 mac 167181 bytes_out 0 167181 bytes_in 0 167181 station_ip 37.129.36.133 167181 port 769 167181 unique_id port 167181 remote_ip 10.8.0.90 167190 username mehdizare 167190 mac 167190 bytes_out 8943 167190 bytes_in 12276 167190 station_ip 83.123.40.181 167190 port 773 167190 unique_id port 167190 remote_ip 10.8.0.90 167191 username mehdizare 167191 mac 167191 bytes_out 0 167191 bytes_in 0 167191 station_ip 113.203.111.120 167191 port 767 167191 unique_id port 167191 remote_ip 10.8.0.90 167193 username hashtadani4 167193 mac 167193 bytes_out 0 167193 bytes_in 0 167193 station_ip 37.129.28.115 167193 port 396 167193 unique_id port 167193 remote_ip 10.8.1.142 167195 username hashtadani4 167195 mac 167195 bytes_out 0 167195 bytes_in 0 167195 station_ip 37.129.28.115 167195 port 773 167195 unique_id port 167195 remote_ip 10.8.0.182 167205 username hashtadani4 167205 mac 167205 bytes_out 0 167205 bytes_in 0 167205 station_ip 37.129.28.115 167205 port 767 167205 unique_id port 167205 remote_ip 10.8.0.182 167206 username barzegar 167206 mac 167206 bytes_out 0 167206 bytes_in 0 167206 station_ip 5.119.221.234 167206 port 767 167206 unique_id port 167206 remote_ip 10.8.0.234 167209 username milan 167209 kill_reason Another user logged on this global unique id 167209 mac 167209 bytes_out 0 167209 bytes_in 0 167209 station_ip 5.120.91.29 167209 port 768 167209 unique_id port 167210 username mehdizare 167210 mac 167210 bytes_out 7633 167210 bytes_in 10173 167210 station_ip 83.123.116.143 167210 port 770 167210 unique_id port 167210 remote_ip 10.8.0.90 167211 username hashtadani4 167211 kill_reason Maximum check online fails reached 167211 mac 167211 bytes_out 0 167211 bytes_in 0 167211 station_ip 37.129.28.115 167211 port 396 167211 unique_id port 167215 username moradi 167215 mac 167215 bytes_out 1274957 167215 bytes_in 23838481 167215 station_ip 83.122.59.161 167215 port 758 167215 unique_id port 167215 remote_ip 10.8.0.126 167216 username mehdizare 167216 mac 167216 bytes_out 6902 167216 bytes_in 10260 167216 station_ip 83.123.101.8 167216 port 767 167216 unique_id port 167216 remote_ip 10.8.0.90 167224 username mehdizare 167224 mac 167224 bytes_out 0 167224 bytes_in 0 167224 station_ip 83.123.27.235 167224 port 397 167224 unique_id port 167224 remote_ip 10.8.1.42 167232 username mehdizare 167232 mac 167232 bytes_out 0 167232 bytes_in 0 167232 station_ip 83.123.150.44 167232 port 397 167232 unique_id port 167238 username shadkam 167238 mac 167238 bytes_out 697106 167238 bytes_in 4001222 167238 station_ip 83.122.115.25 167238 port 767 167238 unique_id port 167238 remote_ip 10.8.0.62 167242 username shadkam 167242 mac 167242 bytes_out 0 167242 bytes_in 0 167242 station_ip 83.122.115.25 167242 port 391 167242 unique_id port 167242 remote_ip 10.8.1.218 167245 username khalili 167245 kill_reason Relative expiration date has reached 167245 mac 167245 bytes_out 0 167245 bytes_in 0 167245 station_ip 5.120.109.173 167245 port 769 167245 unique_id port 167246 username hashtadani4 167246 mac 167246 bytes_out 0 167246 bytes_in 0 167182 username barzegar 167182 mac 167182 bytes_out 0 167182 bytes_in 0 167182 station_ip 5.119.221.234 167182 port 767 167182 unique_id port 167182 remote_ip 10.8.0.234 167185 username mehdizare 167185 mac 167185 bytes_out 22213 167185 bytes_in 31009 167185 station_ip 83.123.77.234 167185 port 773 167185 unique_id port 167185 remote_ip 10.8.0.90 167186 username mehdizare 167186 mac 167186 bytes_out 7758 167186 bytes_in 11174 167186 station_ip 37.129.235.150 167186 port 769 167186 unique_id port 167186 remote_ip 10.8.0.90 167188 username kalantary 167188 mac 167188 bytes_out 885003 167188 bytes_in 2764819 167188 station_ip 83.123.62.37 167188 port 767 167188 unique_id port 167188 remote_ip 10.8.0.98 167196 username jafari 167196 mac 167196 bytes_out 0 167196 bytes_in 0 167196 station_ip 37.137.18.243 167196 port 770 167196 unique_id port 167198 username mehdizare 167198 mac 167198 bytes_out 0 167198 bytes_in 0 167198 station_ip 83.122.140.117 167198 port 767 167198 unique_id port 167198 remote_ip 10.8.0.90 167201 username mehdizare 167201 mac 167201 bytes_out 0 167201 bytes_in 0 167201 station_ip 83.122.156.238 167201 port 767 167201 unique_id port 167201 remote_ip 10.8.0.90 167202 username barzegar 167202 mac 167202 bytes_out 0 167202 bytes_in 0 167202 station_ip 5.119.221.234 167202 port 767 167202 unique_id port 167202 remote_ip 10.8.0.234 167207 username mehdizare 167207 mac 167207 bytes_out 30067 167207 bytes_in 38020 167207 station_ip 83.123.116.143 167207 port 769 167207 unique_id port 167207 remote_ip 10.8.0.90 167212 username hashtadani4 167212 mac 167212 bytes_out 0 167212 bytes_in 0 167212 station_ip 37.129.28.115 167212 port 773 167212 unique_id port 167212 remote_ip 10.8.0.182 167217 username hashtadani4 167217 mac 167217 bytes_out 0 167217 bytes_in 0 167217 station_ip 37.129.28.115 167217 port 767 167217 unique_id port 167217 remote_ip 10.8.0.182 167219 username sedighe 167219 mac 167219 bytes_out 109256 167219 bytes_in 414227 167219 station_ip 83.122.112.66 167219 port 770 167219 unique_id port 167219 remote_ip 10.8.0.146 167221 username mehdizare 167221 mac 167221 bytes_out 0 167221 bytes_in 0 167221 station_ip 83.122.230.57 167221 port 758 167221 unique_id port 167221 remote_ip 10.8.0.90 167222 username barzegar 167222 mac 167222 bytes_out 0 167222 bytes_in 0 167222 station_ip 5.119.221.234 167222 port 758 167222 unique_id port 167222 remote_ip 10.8.0.234 167223 username mehdizare 167223 mac 167223 bytes_out 6867 167223 bytes_in 11069 167223 station_ip 83.122.230.57 167223 port 397 167223 unique_id port 167223 remote_ip 10.8.1.42 167225 username hashtadani4 167225 mac 167225 bytes_out 0 167225 bytes_in 0 167225 station_ip 37.129.28.115 167225 port 767 167225 unique_id port 167225 remote_ip 10.8.0.182 167228 username mehdizare 167228 mac 167228 bytes_out 0 167228 bytes_in 0 167228 station_ip 37.129.83.26 167228 port 398 167228 unique_id port 167228 remote_ip 10.8.1.42 167229 username barzegar 167229 mac 167229 bytes_out 0 167229 bytes_in 0 167229 station_ip 5.119.221.234 167229 port 767 167229 unique_id port 167229 remote_ip 10.8.0.234 167230 username mohammadjavad 167230 mac 167230 bytes_out 40552 167230 bytes_in 77285 167230 station_ip 83.122.71.16 167230 port 758 167230 unique_id port 167230 remote_ip 10.8.0.142 167231 username shadkam 167231 mac 167231 bytes_out 38085 167231 bytes_in 300876 167197 unique_id port 167197 remote_ip 10.8.0.182 167199 username barzegar 167199 mac 167199 bytes_out 0 167199 bytes_in 0 167199 station_ip 5.119.221.234 167199 port 767 167199 unique_id port 167199 remote_ip 10.8.0.234 167200 username mehdizare 167200 mac 167200 bytes_out 11496 167200 bytes_in 14449 167200 station_ip 83.123.40.37 167200 port 769 167200 unique_id port 167200 remote_ip 10.8.0.90 167203 username hashtadani4 167203 mac 167203 bytes_out 0 167203 bytes_in 0 167203 station_ip 37.129.28.115 167203 port 767 167203 unique_id port 167203 remote_ip 10.8.0.182 167204 username vanila 167204 mac 167204 bytes_out 2319980 167204 bytes_in 34497447 167204 station_ip 113.203.127.224 167204 port 758 167204 unique_id port 167204 remote_ip 10.8.0.178 167208 username hashtadani4 167208 mac 167208 bytes_out 0 167208 bytes_in 0 167208 station_ip 37.129.28.115 167208 port 769 167208 unique_id port 167208 remote_ip 10.8.0.182 167213 username mahdiyehalizadeh 167213 mac 167213 bytes_out 75944 167213 bytes_in 198765 167213 station_ip 5.120.13.139 167213 port 767 167213 unique_id port 167213 remote_ip 10.8.0.82 167214 username mehdizare 167214 mac 167214 bytes_out 0 167214 bytes_in 0 167214 station_ip 113.203.31.206 167214 port 769 167214 unique_id port 167214 remote_ip 10.8.0.90 167218 username milan 167218 kill_reason Another user logged on this global unique id 167218 mac 167218 bytes_out 0 167218 bytes_in 0 167218 station_ip 5.120.91.29 167218 port 768 167218 unique_id port 167220 username hashtadani4 167220 mac 167220 bytes_out 0 167220 bytes_in 0 167220 station_ip 37.129.28.115 167220 port 767 167220 unique_id port 167220 remote_ip 10.8.0.182 167226 username jafari 167226 kill_reason Another user logged on this global unique id 167226 mac 167226 bytes_out 0 167226 bytes_in 0 167226 station_ip 37.137.18.243 167226 port 758 167226 unique_id port 167226 remote_ip 10.8.0.242 167227 username jafari 167227 mac 167227 bytes_out 0 167227 bytes_in 0 167227 station_ip 37.137.18.243 167227 port 758 167227 unique_id port 167239 username hashtadani4 167239 mac 167239 bytes_out 0 167239 bytes_in 0 167239 station_ip 37.129.28.115 167239 port 758 167239 unique_id port 167239 remote_ip 10.8.0.182 167247 username khalili 167247 kill_reason Relative expiration date has reached 167247 mac 167247 bytes_out 0 167247 bytes_in 0 167247 station_ip 5.120.109.173 167247 port 769 167247 unique_id port 167251 username aminvpn 167251 mac 167251 bytes_out 0 167251 bytes_in 0 167251 station_ip 37.129.220.39 167251 port 395 167251 unique_id port 167251 remote_ip 10.8.1.6 167253 username mehdizare 167253 mac 167253 bytes_out 0 167253 bytes_in 0 167253 station_ip 83.123.55.33 167253 port 398 167253 unique_id port 167253 remote_ip 10.8.1.42 167259 username barzegar 167259 mac 167259 bytes_out 0 167259 bytes_in 0 167259 station_ip 5.119.221.234 167259 port 773 167259 unique_id port 167259 remote_ip 10.8.0.234 167260 username meysam 167260 mac 167260 bytes_out 1047833 167260 bytes_in 15273147 167260 station_ip 188.158.51.74 167260 port 776 167260 unique_id port 167260 remote_ip 10.8.0.110 167263 username barzegar 167263 mac 167263 bytes_out 0 167263 bytes_in 0 167263 station_ip 5.119.221.234 167263 port 758 167263 unique_id port 167263 remote_ip 10.8.0.234 167269 username hashtadani4 167269 kill_reason Maximum check online fails reached 167269 mac 167269 bytes_out 0 167269 bytes_in 0 167269 station_ip 37.129.28.115 167231 station_ip 83.123.135.136 167231 port 767 167231 unique_id port 167231 remote_ip 10.8.0.62 167233 username mirzaei 167233 kill_reason Another user logged on this global unique id 167233 mac 167233 bytes_out 0 167233 bytes_in 0 167233 station_ip 5.120.155.112 167233 port 762 167233 unique_id port 167233 remote_ip 10.8.0.66 167234 username hashtadani4 167234 mac 167234 bytes_out 0 167234 bytes_in 0 167234 station_ip 37.129.28.115 167234 port 397 167234 unique_id port 167234 remote_ip 10.8.1.142 167235 username hashtadani4 167235 mac 167235 bytes_out 0 167235 bytes_in 0 167235 station_ip 37.129.28.115 167235 port 767 167235 unique_id port 167235 remote_ip 10.8.0.182 167236 username sekonji3 167236 mac 167236 bytes_out 430212 167236 bytes_in 8279379 167236 station_ip 83.122.173.149 167236 port 758 167236 unique_id port 167236 remote_ip 10.8.0.6 167237 username barzegar 167237 mac 167237 bytes_out 0 167237 bytes_in 0 167237 station_ip 5.119.221.234 167237 port 758 167237 unique_id port 167237 remote_ip 10.8.0.234 167240 username nilufarrajaei 167240 mac 167240 bytes_out 0 167240 bytes_in 0 167240 station_ip 37.129.175.58 167240 port 391 167240 unique_id port 167240 remote_ip 10.8.1.166 167241 username shadkam 167241 mac 167241 bytes_out 0 167241 bytes_in 0 167241 station_ip 83.122.115.25 167241 port 391 167241 unique_id port 167241 remote_ip 10.8.1.218 167243 username khalili 167243 kill_reason Relative expiration date has reached 167243 mac 167243 bytes_out 0 167243 bytes_in 0 167243 station_ip 5.120.109.173 167243 port 767 167243 unique_id port 167244 username khalili 167244 kill_reason Relative expiration date has reached 167244 mac 167244 bytes_out 0 167244 bytes_in 0 167244 station_ip 5.120.109.173 167244 port 769 167244 unique_id port 167248 username hashtadani4 167248 kill_reason Maximum check online fails reached 167248 mac 167248 bytes_out 0 167248 bytes_in 0 167248 station_ip 37.129.28.115 167248 port 767 167248 unique_id port 167250 username barzegar 167250 mac 167250 bytes_out 0 167250 bytes_in 0 167250 station_ip 5.119.221.234 167250 port 391 167250 unique_id port 167250 remote_ip 10.8.1.174 167255 username kalantary 167255 kill_reason Another user logged on this global unique id 167255 mac 167255 bytes_out 0 167255 bytes_in 0 167255 station_ip 83.123.116.17 167255 port 758 167255 unique_id port 167255 remote_ip 10.8.0.98 167257 username mehdizare 167257 mac 167257 bytes_out 0 167257 bytes_in 0 167257 station_ip 83.122.76.226 167257 port 391 167257 unique_id port 167257 remote_ip 10.8.1.42 167258 username mehdizare 167258 kill_reason Maximum check online fails reached 167258 mac 167258 bytes_out 0 167258 bytes_in 0 167258 station_ip 83.123.44.199 167258 port 775 167258 unique_id port 167264 username hashtadani4 167264 mac 167264 bytes_out 0 167264 bytes_in 0 167264 station_ip 37.129.28.115 167264 port 773 167264 unique_id port 167264 remote_ip 10.8.0.182 167267 username mehdizare 167267 mac 167267 bytes_out 34577 167267 bytes_in 89445 167267 station_ip 37.129.114.241 167267 port 395 167267 unique_id port 167267 remote_ip 10.8.1.42 167273 username barzegar 167273 mac 167273 bytes_out 0 167273 bytes_in 0 167273 station_ip 5.119.221.234 167273 port 769 167273 unique_id port 167273 remote_ip 10.8.0.234 167275 username mehdizare 167275 mac 167275 bytes_out 0 167275 bytes_in 0 167275 station_ip 83.123.72.227 167275 port 780 167275 unique_id port 167275 remote_ip 10.8.0.90 167278 username hashtadani4 167246 station_ip 37.129.28.115 167246 port 391 167246 unique_id port 167246 remote_ip 10.8.1.142 167249 username nilufarrajaei 167249 mac 167249 bytes_out 0 167249 bytes_in 0 167249 station_ip 188.245.88.234 167249 port 397 167249 unique_id port 167249 remote_ip 10.8.1.166 167252 username aminvpn 167252 mac 167252 bytes_out 0 167252 bytes_in 0 167252 station_ip 37.129.220.39 167252 port 391 167252 unique_id port 167252 remote_ip 10.8.1.6 167254 username shadkam 167254 mac 167254 bytes_out 0 167254 bytes_in 0 167254 station_ip 37.129.98.210 167254 port 397 167254 unique_id port 167254 remote_ip 10.8.1.218 167256 username aminvpn 167256 mac 167256 bytes_out 0 167256 bytes_in 0 167256 station_ip 37.129.220.39 167256 port 395 167256 unique_id port 167256 remote_ip 10.8.1.6 167261 username kalantary 167261 mac 167261 bytes_out 0 167261 bytes_in 0 167261 station_ip 83.123.116.17 167261 port 758 167261 unique_id port 167262 username hashtadani4 167262 mac 167262 bytes_out 0 167262 bytes_in 0 167262 station_ip 37.129.28.115 167262 port 758 167262 unique_id port 167262 remote_ip 10.8.0.182 167265 username hashtadani4 167265 mac 167265 bytes_out 0 167265 bytes_in 0 167265 station_ip 37.129.28.115 167265 port 773 167265 unique_id port 167265 remote_ip 10.8.0.182 167266 username nilufarrajaei 167266 mac 167266 bytes_out 0 167266 bytes_in 0 167266 station_ip 188.245.88.234 167266 port 769 167266 unique_id port 167266 remote_ip 10.8.0.206 167268 username hashtadani4 167268 mac 167268 bytes_out 0 167268 bytes_in 0 167268 station_ip 37.129.28.115 167268 port 769 167268 unique_id port 167268 remote_ip 10.8.0.182 167274 username mehdizare 167274 mac 167274 bytes_out 51517 167274 bytes_in 74076 167274 station_ip 37.129.114.241 167274 port 395 167274 unique_id port 167274 remote_ip 10.8.1.42 167284 username hashtadani4 167284 mac 167284 bytes_out 0 167284 bytes_in 0 167284 station_ip 37.129.28.115 167284 port 780 167284 unique_id port 167284 remote_ip 10.8.0.182 167287 username hashtadani4 167287 mac 167287 bytes_out 0 167287 bytes_in 0 167287 station_ip 37.129.28.115 167287 port 770 167287 unique_id port 167287 remote_ip 10.8.0.182 167288 username moradi 167288 mac 167288 bytes_out 0 167288 bytes_in 0 167288 station_ip 46.225.210.112 167288 port 773 167288 unique_id port 167288 remote_ip 10.8.0.126 167289 username hashtadani4 167289 mac 167289 bytes_out 0 167289 bytes_in 0 167289 station_ip 37.129.28.115 167289 port 770 167289 unique_id port 167289 remote_ip 10.8.0.182 167293 username hashtadani4 167293 mac 167293 bytes_out 0 167293 bytes_in 0 167293 station_ip 37.129.28.115 167293 port 395 167293 unique_id port 167293 remote_ip 10.8.1.142 167296 username hashtadani4 167296 mac 167296 bytes_out 0 167296 bytes_in 0 167296 station_ip 37.129.28.115 167296 port 770 167296 unique_id port 167296 remote_ip 10.8.0.182 167298 username hashtadani4 167298 mac 167298 bytes_out 0 167298 bytes_in 0 167298 station_ip 37.129.28.115 167298 port 770 167298 unique_id port 167298 remote_ip 10.8.0.182 167300 username hashtadani4 167300 mac 167300 bytes_out 0 167300 bytes_in 0 167300 station_ip 37.129.28.115 167300 port 780 167300 unique_id port 167300 remote_ip 10.8.0.182 167301 username hashtadani4 167301 mac 167301 bytes_out 0 167301 bytes_in 0 167301 station_ip 37.129.28.115 167301 port 780 167301 unique_id port 167269 port 397 167269 unique_id port 167270 username mahdiyehalizadeh 167270 mac 167270 bytes_out 0 167270 bytes_in 0 167270 station_ip 5.119.62.152 167270 port 758 167270 unique_id port 167270 remote_ip 10.8.0.82 167271 username hashtadani4 167271 mac 167271 bytes_out 0 167271 bytes_in 0 167271 station_ip 37.129.28.115 167271 port 758 167271 unique_id port 167271 remote_ip 10.8.0.182 167272 username hashtadani4 167272 mac 167272 bytes_out 0 167272 bytes_in 0 167272 station_ip 37.129.28.115 167272 port 773 167272 unique_id port 167272 remote_ip 10.8.0.182 167276 username shadkam 167276 mac 167276 bytes_out 0 167276 bytes_in 0 167276 station_ip 83.122.198.31 167276 port 395 167276 unique_id port 167276 remote_ip 10.8.1.218 167277 username shadkam 167277 mac 167277 bytes_out 0 167277 bytes_in 0 167277 station_ip 83.122.198.31 167277 port 780 167277 unique_id port 167277 remote_ip 10.8.0.62 167279 username hashtadani4 167279 mac 167279 bytes_out 0 167279 bytes_in 0 167279 station_ip 37.129.28.115 167279 port 395 167279 unique_id port 167279 remote_ip 10.8.1.142 167280 username hashtadani4 167280 mac 167280 bytes_out 0 167280 bytes_in 0 167280 station_ip 37.129.28.115 167280 port 780 167280 unique_id port 167280 remote_ip 10.8.0.182 167282 username sabaghnezhad 167282 mac 167282 bytes_out 310124 167282 bytes_in 1917020 167282 station_ip 83.122.25.122 167282 port 781 167282 unique_id port 167282 remote_ip 10.8.0.186 167283 username godarzi 167283 mac 167283 bytes_out 0 167283 bytes_in 0 167283 station_ip 5.119.88.130 167283 port 770 167283 unique_id port 167283 remote_ip 10.8.0.174 167285 username hashtadani4 167285 mac 167285 bytes_out 0 167285 bytes_in 0 167285 station_ip 37.129.28.115 167285 port 395 167285 unique_id port 167285 remote_ip 10.8.1.142 167290 username hashtadani4 167290 mac 167290 bytes_out 0 167290 bytes_in 0 167290 station_ip 37.129.28.115 167290 port 395 167290 unique_id port 167290 remote_ip 10.8.1.142 167294 username hashtadani4 167294 mac 167294 bytes_out 0 167294 bytes_in 0 167294 station_ip 37.129.28.115 167294 port 770 167294 unique_id port 167294 remote_ip 10.8.0.182 167304 username hashtadani4 167304 mac 167304 bytes_out 0 167304 bytes_in 0 167304 station_ip 37.129.28.115 167304 port 780 167304 unique_id port 167304 remote_ip 10.8.0.182 167308 username hashtadani4 167308 mac 167308 bytes_out 0 167308 bytes_in 0 167308 station_ip 37.129.28.115 167308 port 780 167308 unique_id port 167308 remote_ip 10.8.0.182 167310 username hashtadani4 167310 mac 167310 bytes_out 0 167310 bytes_in 0 167310 station_ip 37.129.28.115 167310 port 398 167310 unique_id port 167310 remote_ip 10.8.1.142 167311 username hashtadani4 167311 mac 167311 bytes_out 0 167311 bytes_in 0 167311 station_ip 37.129.28.115 167311 port 398 167311 unique_id port 167311 remote_ip 10.8.1.142 167313 username hashtadani4 167313 mac 167313 bytes_out 0 167313 bytes_in 0 167313 station_ip 37.129.28.115 167313 port 778 167313 unique_id port 167313 remote_ip 10.8.0.182 167316 username hashtadani4 167316 mac 167316 bytes_out 0 167316 bytes_in 0 167316 station_ip 37.129.28.115 167316 port 398 167316 unique_id port 167316 remote_ip 10.8.1.142 167320 username hashtadani4 167320 mac 167320 bytes_out 0 167320 bytes_in 0 167320 station_ip 37.129.28.115 167320 port 398 167320 unique_id port 167320 remote_ip 10.8.1.142 167278 mac 167278 bytes_out 0 167278 bytes_in 0 167278 station_ip 37.129.28.115 167278 port 773 167278 unique_id port 167278 remote_ip 10.8.0.182 167281 username hashtadani4 167281 mac 167281 bytes_out 0 167281 bytes_in 0 167281 station_ip 37.129.28.115 167281 port 395 167281 unique_id port 167281 remote_ip 10.8.1.142 167286 username hashtadani4 167286 mac 167286 bytes_out 0 167286 bytes_in 0 167286 station_ip 37.129.28.115 167286 port 770 167286 unique_id port 167286 remote_ip 10.8.0.182 167291 username hashtadani4 167291 mac 167291 bytes_out 0 167291 bytes_in 0 167291 station_ip 37.129.28.115 167291 port 770 167291 unique_id port 167291 remote_ip 10.8.0.182 167292 username hashtadani4 167292 mac 167292 bytes_out 0 167292 bytes_in 0 167292 station_ip 37.129.28.115 167292 port 770 167292 unique_id port 167292 remote_ip 10.8.0.182 167295 username hashtadani4 167295 mac 167295 bytes_out 0 167295 bytes_in 0 167295 station_ip 37.129.28.115 167295 port 395 167295 unique_id port 167295 remote_ip 10.8.1.142 167297 username hashtadani4 167297 mac 167297 bytes_out 0 167297 bytes_in 0 167297 station_ip 37.129.28.115 167297 port 395 167297 unique_id port 167297 remote_ip 10.8.1.142 167299 username hashtadani4 167299 mac 167299 bytes_out 0 167299 bytes_in 0 167299 station_ip 37.129.28.115 167299 port 780 167299 unique_id port 167299 remote_ip 10.8.0.182 167302 username hashtadani4 167302 mac 167302 bytes_out 0 167302 bytes_in 0 167302 station_ip 37.129.28.115 167302 port 780 167302 unique_id port 167302 remote_ip 10.8.0.182 167305 username hashtadani4 167305 mac 167305 bytes_out 0 167305 bytes_in 0 167305 station_ip 37.129.28.115 167305 port 780 167305 unique_id port 167305 remote_ip 10.8.0.182 167306 username hashtadani4 167306 mac 167306 bytes_out 0 167306 bytes_in 0 167306 station_ip 37.129.28.115 167306 port 398 167306 unique_id port 167306 remote_ip 10.8.1.142 167314 username hashtadani4 167314 mac 167314 bytes_out 0 167314 bytes_in 0 167314 station_ip 37.129.28.115 167314 port 398 167314 unique_id port 167314 remote_ip 10.8.1.142 167315 username hashtadani4 167315 mac 167315 bytes_out 0 167315 bytes_in 0 167315 station_ip 37.129.28.115 167315 port 780 167315 unique_id port 167315 remote_ip 10.8.0.182 167317 username hashtadani4 167317 mac 167317 bytes_out 0 167317 bytes_in 0 167317 station_ip 37.129.28.115 167317 port 780 167317 unique_id port 167317 remote_ip 10.8.0.182 167321 username hashtadani4 167321 mac 167321 bytes_out 0 167321 bytes_in 0 167321 station_ip 37.129.28.115 167321 port 780 167321 unique_id port 167321 remote_ip 10.8.0.182 167329 username hashtadani4 167329 mac 167329 bytes_out 0 167329 bytes_in 0 167329 station_ip 37.129.28.115 167329 port 398 167329 unique_id port 167329 remote_ip 10.8.1.142 167334 username hashtadani4 167334 mac 167334 bytes_out 0 167334 bytes_in 0 167334 station_ip 37.129.28.115 167334 port 769 167334 unique_id port 167334 remote_ip 10.8.0.182 167335 username hashtadani4 167335 kill_reason Maximum number of concurrent logins reached 167335 mac 167335 bytes_out 0 167335 bytes_in 0 167335 station_ip 37.129.28.115 167335 port 769 167335 unique_id port 167336 username hashtadani4 167336 kill_reason Maximum check online fails reached 167336 mac 167336 bytes_out 0 167336 bytes_in 0 167336 station_ip 37.129.28.115 167336 port 399 167336 unique_id port 167338 username godarzi 167338 mac 167301 remote_ip 10.8.0.182 167303 username hashtadani4 167303 mac 167303 bytes_out 0 167303 bytes_in 0 167303 station_ip 37.129.28.115 167303 port 398 167303 unique_id port 167303 remote_ip 10.8.1.142 167307 username meysam 167307 kill_reason Another user logged on this global unique id 167307 mac 167307 bytes_out 0 167307 bytes_in 0 167307 station_ip 188.158.51.74 167307 port 769 167307 unique_id port 167307 remote_ip 10.8.0.110 167309 username hashtadani4 167309 kill_reason Maximum check online fails reached 167309 mac 167309 bytes_out 0 167309 bytes_in 0 167309 station_ip 37.129.28.115 167309 port 395 167309 unique_id port 167312 username barzegar 167312 mac 167312 bytes_out 4276371 167312 bytes_in 1783357 167312 station_ip 5.119.221.234 167312 port 778 167312 unique_id port 167312 remote_ip 10.8.0.234 167318 username hashtadani4 167318 mac 167318 bytes_out 0 167318 bytes_in 0 167318 station_ip 37.129.28.115 167318 port 398 167318 unique_id port 167318 remote_ip 10.8.1.142 167319 username hashtadani4 167319 mac 167319 bytes_out 0 167319 bytes_in 0 167319 station_ip 37.129.28.115 167319 port 780 167319 unique_id port 167319 remote_ip 10.8.0.182 167323 username malekpoir 167323 kill_reason Another user logged on this global unique id 167323 mac 167323 bytes_out 0 167323 bytes_in 0 167323 station_ip 5.119.214.100 167323 port 776 167323 unique_id port 167323 remote_ip 10.8.0.58 167324 username hashtadani4 167324 mac 167324 bytes_out 0 167324 bytes_in 0 167324 station_ip 37.129.28.115 167324 port 398 167324 unique_id port 167324 remote_ip 10.8.1.142 167325 username hashtadani4 167325 mac 167325 bytes_out 0 167325 bytes_in 0 167325 station_ip 37.129.28.115 167325 port 769 167325 unique_id port 167325 remote_ip 10.8.0.182 167326 username hashtadani4 167326 mac 167326 bytes_out 0 167326 bytes_in 0 167326 station_ip 37.129.28.115 167326 port 780 167326 unique_id port 167326 remote_ip 10.8.0.182 167328 username hashtadani4 167328 mac 167328 bytes_out 0 167328 bytes_in 0 167328 station_ip 37.129.28.115 167328 port 780 167328 unique_id port 167328 remote_ip 10.8.0.182 167333 username meysam 167333 mac 167333 bytes_out 0 167333 bytes_in 0 167333 station_ip 188.158.48.41 167333 port 769 167333 unique_id port 167333 remote_ip 10.8.0.110 167337 username hashtadani4 167337 kill_reason Maximum check online fails reached 167337 mac 167337 bytes_out 0 167337 bytes_in 0 167337 station_ip 37.129.28.115 167337 port 398 167337 unique_id port 167343 username mehdizare 167343 mac 167343 bytes_out 0 167343 bytes_in 0 167343 station_ip 37.129.28.228 167343 port 400 167343 unique_id port 167343 remote_ip 10.8.1.42 167344 username khalili 167344 kill_reason Relative expiration date has reached 167344 mac 167344 bytes_out 0 167344 bytes_in 0 167344 station_ip 5.120.109.173 167344 port 781 167344 unique_id port 167348 username aminvpn 167348 mac 167348 bytes_out 3524757 167348 bytes_in 28472957 167348 station_ip 37.129.220.39 167348 port 391 167348 unique_id port 167348 remote_ip 10.8.1.6 167349 username barzegar 167349 mac 167349 bytes_out 0 167349 bytes_in 0 167349 station_ip 5.119.221.234 167349 port 391 167349 unique_id port 167349 remote_ip 10.8.1.174 167350 username kordestani 167350 mac 167350 bytes_out 0 167350 bytes_in 0 167350 station_ip 151.235.118.220 167350 port 770 167350 unique_id port 167350 remote_ip 10.8.0.74 167351 username mehdizare 167351 mac 167351 bytes_out 17370 167351 bytes_in 27281 167322 username meysam 167322 mac 167322 bytes_out 0 167322 bytes_in 0 167322 station_ip 188.158.51.74 167322 port 769 167322 unique_id port 167327 username kalantary 167327 mac 167327 bytes_out 0 167327 bytes_in 0 167327 station_ip 83.123.13.97 167327 port 781 167327 unique_id port 167327 remote_ip 10.8.0.98 167330 username hashtadani4 167330 mac 167330 bytes_out 0 167330 bytes_in 0 167330 station_ip 37.129.28.115 167330 port 780 167330 unique_id port 167330 remote_ip 10.8.0.182 167331 username hashtadani4 167331 mac 167331 bytes_out 0 167331 bytes_in 0 167331 station_ip 37.129.28.115 167331 port 780 167331 unique_id port 167331 remote_ip 10.8.0.182 167332 username hashtadani4 167332 mac 167332 bytes_out 0 167332 bytes_in 0 167332 station_ip 37.129.28.115 167332 port 781 167332 unique_id port 167332 remote_ip 10.8.0.182 167340 username godarzi 167340 mac 167340 bytes_out 0 167340 bytes_in 0 167340 station_ip 5.119.88.130 167340 port 769 167340 unique_id port 167340 remote_ip 10.8.0.174 167347 username mehdizare 167347 mac 167347 bytes_out 0 167347 bytes_in 0 167347 station_ip 83.123.122.93 167347 port 781 167347 unique_id port 167347 remote_ip 10.8.0.90 167353 username kalantary 167353 mac 167353 bytes_out 537832 167353 bytes_in 3051400 167353 station_ip 83.123.18.41 167353 port 770 167353 unique_id port 167353 remote_ip 10.8.0.98 167354 username nilufarrajaei 167354 mac 167354 bytes_out 0 167354 bytes_in 0 167354 station_ip 83.123.125.0 167354 port 769 167354 unique_id port 167354 remote_ip 10.8.0.206 167364 username mehdizare 167364 kill_reason Maximum check online fails reached 167364 mac 167364 bytes_out 0 167364 bytes_in 0 167364 station_ip 83.123.53.145 167364 port 778 167364 unique_id port 167366 username barzegar 167366 mac 167366 bytes_out 0 167366 bytes_in 0 167366 station_ip 5.119.221.234 167366 port 402 167366 unique_id port 167366 remote_ip 10.8.1.174 167368 username aminvpn 167368 mac 167368 bytes_out 0 167368 bytes_in 0 167368 station_ip 5.125.168.162 167368 port 781 167368 unique_id port 167368 remote_ip 10.8.0.14 167371 username barzegar 167371 mac 167371 bytes_out 0 167371 bytes_in 0 167371 station_ip 5.119.221.234 167371 port 402 167371 unique_id port 167371 remote_ip 10.8.1.174 167375 username vanila 167375 mac 167375 bytes_out 0 167375 bytes_in 0 167375 station_ip 113.203.105.240 167375 port 758 167375 unique_id port 167375 remote_ip 10.8.0.178 167377 username mosi 167377 kill_reason Another user logged on this global unique id 167377 mac 167377 bytes_out 0 167377 bytes_in 0 167377 station_ip 151.235.105.226 167377 port 401 167377 unique_id port 167377 remote_ip 10.8.1.86 167379 username barzegar 167379 mac 167379 bytes_out 0 167379 bytes_in 0 167379 station_ip 5.119.221.234 167379 port 402 167379 unique_id port 167379 remote_ip 10.8.1.174 167382 username alirezazadeh 167382 unique_id port 167382 terminate_cause Lost-Carrier 167382 bytes_out 745829 167382 bytes_in 2282442 167382 station_ip 31.56.223.188 167382 port 15728737 167382 nas_port_type Virtual 167382 remote_ip 5.5.5.176 167385 username mehdizare 167385 mac 167385 bytes_out 0 167385 bytes_in 0 167385 station_ip 83.123.93.191 167385 port 780 167385 unique_id port 167385 remote_ip 10.8.0.90 167386 username alipour 167386 mac 167386 bytes_out 0 167386 bytes_in 0 167386 station_ip 37.129.229.2 167386 port 745 167386 unique_id port 167386 remote_ip 10.8.0.102 167338 bytes_out 0 167338 bytes_in 0 167338 station_ip 5.119.88.130 167338 port 770 167338 unique_id port 167338 remote_ip 10.8.0.174 167339 username mehdizare 167339 mac 167339 bytes_out 0 167339 bytes_in 0 167339 station_ip 37.129.86.236 167339 port 782 167339 unique_id port 167339 remote_ip 10.8.0.90 167341 username milan 167341 kill_reason Another user logged on this global unique id 167341 mac 167341 bytes_out 0 167341 bytes_in 0 167341 station_ip 5.120.91.29 167341 port 768 167341 unique_id port 167342 username kordestani 167342 mac 167342 bytes_out 0 167342 bytes_in 0 167342 station_ip 151.235.118.220 167342 port 770 167342 unique_id port 167342 remote_ip 10.8.0.74 167345 username mehdizare 167345 mac 167345 bytes_out 0 167345 bytes_in 0 167345 station_ip 83.122.46.238 167345 port 769 167345 unique_id port 167345 remote_ip 10.8.0.90 167346 username barzegar 167346 mac 167346 bytes_out 0 167346 bytes_in 0 167346 station_ip 5.119.221.234 167346 port 778 167346 unique_id port 167346 remote_ip 10.8.0.234 167355 username forozandeh1 167355 mac 167355 bytes_out 0 167355 bytes_in 0 167355 station_ip 113.203.38.172 167355 port 745 167355 unique_id port 167355 remote_ip 10.8.0.130 167357 username alipour 167357 mac 167357 bytes_out 0 167357 bytes_in 0 167357 station_ip 83.123.3.76 167357 port 758 167357 unique_id port 167357 remote_ip 10.8.0.102 167358 username barzegar 167358 mac 167358 bytes_out 24650 167358 bytes_in 31115 167358 station_ip 5.119.221.234 167358 port 400 167358 unique_id port 167358 remote_ip 10.8.1.174 167359 username alipour 167359 mac 167359 bytes_out 2406 167359 bytes_in 5889 167359 station_ip 83.123.3.76 167359 port 782 167359 unique_id port 167359 remote_ip 10.8.0.102 167360 username barzegar 167360 mac 167360 bytes_out 0 167360 bytes_in 0 167360 station_ip 5.119.221.234 167360 port 782 167360 unique_id port 167360 remote_ip 10.8.0.234 167363 username mohammadjavad 167363 mac 167363 bytes_out 0 167363 bytes_in 0 167363 station_ip 37.129.228.199 167363 port 780 167363 unique_id port 167363 remote_ip 10.8.0.142 167365 username nilufarrajaei 167365 mac 167365 bytes_out 3720091 167365 bytes_in 30887829 167365 station_ip 83.123.28.179 167365 port 770 167365 unique_id port 167365 remote_ip 10.8.0.206 167367 username alipour 167367 mac 167367 bytes_out 23947 167367 bytes_in 27392 167367 station_ip 83.123.3.76 167367 port 758 167367 unique_id port 167367 remote_ip 10.8.0.102 167372 username alirezazadeh 167372 unique_id port 167372 terminate_cause User-Request 167372 bytes_out 1016 167372 bytes_in 214 167372 station_ip 31.56.223.188 167372 port 15728736 167372 nas_port_type Virtual 167372 remote_ip 5.5.5.177 167374 username milan 167374 mac 167374 bytes_out 0 167374 bytes_in 0 167374 station_ip 5.120.91.29 167374 port 768 167374 unique_id port 167376 username godarzi 167376 mac 167376 bytes_out 127953 167376 bytes_in 176777 167376 station_ip 5.119.88.130 167376 port 769 167376 unique_id port 167376 remote_ip 10.8.0.174 167378 username alirezazadeh 167378 unique_id port 167378 terminate_cause User-Request 167378 bytes_out 483127 167378 bytes_in 1906415 167378 station_ip 31.56.223.188 167378 port 15728738 167378 nas_port_type Virtual 167378 remote_ip 5.5.5.175 167380 username nilufarrajaei 167380 mac 167380 bytes_out 1235405 167380 bytes_in 6890748 167380 station_ip 83.123.28.179 167380 port 403 167380 unique_id port 167380 remote_ip 10.8.1.166 167381 username shadkam 167351 station_ip 113.203.102.82 167351 port 769 167351 unique_id port 167351 remote_ip 10.8.0.90 167352 username barzegar 167352 mac 167352 bytes_out 0 167352 bytes_in 0 167352 station_ip 5.119.221.234 167352 port 769 167352 unique_id port 167352 remote_ip 10.8.0.234 167356 username mehdizare 167356 mac 167356 bytes_out 0 167356 bytes_in 0 167356 station_ip 83.123.156.58 167356 port 400 167356 unique_id port 167356 remote_ip 10.8.1.42 167361 username godarzi 167361 mac 167361 bytes_out 1580098 167361 bytes_in 18369667 167361 station_ip 5.119.88.130 167361 port 778 167361 unique_id port 167361 remote_ip 10.8.0.174 167362 username mehdizare 167362 mac 167362 bytes_out 0 167362 bytes_in 0 167362 station_ip 83.123.156.58 167362 port 745 167362 unique_id port 167362 remote_ip 10.8.0.90 167369 username vanila 167369 mac 167369 bytes_out 408184 167369 bytes_in 1908499 167369 station_ip 113.203.105.240 167369 port 769 167369 unique_id port 167369 remote_ip 10.8.0.178 167370 username alipour 167370 mac 167370 bytes_out 50833 167370 bytes_in 54051 167370 station_ip 83.122.22.217 167370 port 402 167370 unique_id port 167370 remote_ip 10.8.1.50 167373 username mehdizare 167373 mac 167373 bytes_out 0 167373 bytes_in 0 167373 station_ip 37.129.182.223 167373 port 400 167373 unique_id port 167373 remote_ip 10.8.1.42 167383 username mehdizare 167383 mac 167383 bytes_out 13676 167383 bytes_in 24136 167383 station_ip 83.123.220.69 167383 port 770 167383 unique_id port 167383 remote_ip 10.8.0.90 167391 username mosi 167391 kill_reason Another user logged on this global unique id 167391 mac 167391 bytes_out 0 167391 bytes_in 0 167391 station_ip 151.235.105.226 167391 port 401 167391 unique_id port 167393 username aminvpn 167393 mac 167393 bytes_out 143795 167393 bytes_in 162580 167393 station_ip 5.125.168.162 167393 port 745 167393 unique_id port 167393 remote_ip 10.8.0.14 167394 username mohammadjavad 167394 mac 167394 bytes_out 1397705 167394 bytes_in 20990288 167394 station_ip 37.129.23.204 167394 port 770 167394 unique_id port 167394 remote_ip 10.8.0.142 167396 username nilufarrajaei 167396 kill_reason Another user logged on this global unique id 167396 mac 167396 bytes_out 0 167396 bytes_in 0 167396 station_ip 83.123.28.179 167396 port 402 167396 unique_id port 167396 remote_ip 10.8.1.166 167398 username godarzi 167398 mac 167398 bytes_out 0 167398 bytes_in 0 167398 station_ip 5.119.88.130 167398 port 758 167398 unique_id port 167398 remote_ip 10.8.0.174 167401 username alipour 167401 mac 167401 bytes_out 2504959 167401 bytes_in 34952885 167401 station_ip 37.129.229.2 167401 port 780 167401 unique_id port 167401 remote_ip 10.8.0.102 167406 username alipour 167406 mac 167406 bytes_out 416204 167406 bytes_in 4111427 167406 station_ip 37.129.229.2 167406 port 781 167406 unique_id port 167406 remote_ip 10.8.0.102 167409 username mosi 167409 kill_reason Another user logged on this global unique id 167409 mac 167409 bytes_out 0 167409 bytes_in 0 167409 station_ip 151.235.105.226 167409 port 401 167409 unique_id port 167411 username aminvpn 167411 mac 167411 bytes_out 397629 167411 bytes_in 754029 167411 station_ip 5.125.168.162 167411 port 745 167411 unique_id port 167411 remote_ip 10.8.0.14 167413 username godarzi 167413 mac 167413 bytes_out 0 167413 bytes_in 0 167413 station_ip 5.119.88.130 167413 port 768 167413 unique_id port 167413 remote_ip 10.8.0.174 167416 username shadkam 167416 kill_reason Maximum check online fails reached 167381 mac 167381 bytes_out 129079 167381 bytes_in 407405 167381 station_ip 83.122.145.218 167381 port 400 167381 unique_id port 167381 remote_ip 10.8.1.218 167384 username barzegar 167384 mac 167384 bytes_out 0 167384 bytes_in 0 167384 station_ip 5.119.221.234 167384 port 769 167384 unique_id port 167384 remote_ip 10.8.0.234 167387 username mehdizare 167387 mac 167387 bytes_out 13144 167387 bytes_in 21735 167387 station_ip 83.122.100.216 167387 port 769 167387 unique_id port 167387 remote_ip 10.8.0.90 167388 username shadkam 167388 mac 167388 bytes_out 306245 167388 bytes_in 2796880 167388 station_ip 83.123.180.174 167388 port 400 167388 unique_id port 167388 remote_ip 10.8.1.218 167389 username kalantary 167389 mac 167389 bytes_out 854741 167389 bytes_in 9281464 167389 station_ip 83.123.47.41 167389 port 768 167389 unique_id port 167389 remote_ip 10.8.0.98 167392 username mehdizare 167392 mac 167392 bytes_out 0 167392 bytes_in 0 167392 station_ip 37.129.236.243 167392 port 400 167392 unique_id port 167392 remote_ip 10.8.1.42 167395 username aminvpn 167395 kill_reason Another user logged on this global unique id 167395 mac 167395 bytes_out 0 167395 bytes_in 0 167395 station_ip 5.125.168.162 167395 port 745 167395 unique_id port 167395 remote_ip 10.8.0.14 167403 username barzegar 167403 mac 167403 bytes_out 0 167403 bytes_in 0 167403 station_ip 5.119.221.234 167403 port 780 167403 unique_id port 167403 remote_ip 10.8.0.234 167404 username nilufarrajaei 167404 kill_reason Another user logged on this global unique id 167404 mac 167404 bytes_out 0 167404 bytes_in 0 167404 station_ip 83.123.28.179 167404 port 402 167404 unique_id port 167405 username vanila 167405 mac 167405 bytes_out 0 167405 bytes_in 0 167405 station_ip 113.203.105.240 167405 port 770 167405 unique_id port 167405 remote_ip 10.8.0.178 167407 username mehdizare 167407 mac 167407 bytes_out 0 167407 bytes_in 0 167407 station_ip 37.129.118.128 167407 port 758 167407 unique_id port 167407 remote_ip 10.8.0.90 167414 username alipour 167414 mac 167414 bytes_out 40478 167414 bytes_in 48416 167414 station_ip 83.122.160.197 167414 port 403 167414 unique_id port 167414 remote_ip 10.8.1.50 167417 username aminvpn 167417 unique_id port 167417 terminate_cause User-Request 167417 bytes_out 1636019 167417 bytes_in 48624989 167417 station_ip 31.57.132.156 167417 port 15728739 167417 nas_port_type Virtual 167417 remote_ip 5.5.5.173 167420 username barzegar 167420 mac 167420 bytes_out 0 167420 bytes_in 0 167420 station_ip 5.119.221.234 167420 port 770 167420 unique_id port 167420 remote_ip 10.8.0.234 167421 username milan 167421 mac 167421 bytes_out 460914 167421 bytes_in 2390352 167421 station_ip 5.120.91.29 167421 port 769 167421 unique_id port 167421 remote_ip 10.8.0.218 167423 username nilufarrajaei 167423 mac 167423 bytes_out 0 167423 bytes_in 0 167423 station_ip 83.123.28.179 167423 port 402 167423 unique_id port 167429 username kalantary 167429 mac 167429 bytes_out 1493707 167429 bytes_in 20477812 167429 station_ip 83.123.23.85 167429 port 758 167429 unique_id port 167429 remote_ip 10.8.0.98 167434 username meysam 167434 kill_reason Another user logged on this global unique id 167434 mac 167434 bytes_out 0 167434 bytes_in 0 167434 station_ip 188.158.48.41 167434 port 745 167434 unique_id port 167434 remote_ip 10.8.0.110 167435 username shadkam 167435 mac 167435 bytes_out 43687 167435 bytes_in 157497 167435 station_ip 83.123.59.89 167435 port 769 167390 username barzegar 167390 mac 167390 bytes_out 0 167390 bytes_in 0 167390 station_ip 5.119.221.234 167390 port 403 167390 unique_id port 167390 remote_ip 10.8.1.174 167397 username mehdizare 167397 mac 167397 bytes_out 10338 167397 bytes_in 14203 167397 station_ip 37.129.236.243 167397 port 768 167397 unique_id port 167397 remote_ip 10.8.0.90 167399 username barzegar 167399 mac 167399 bytes_out 0 167399 bytes_in 0 167399 station_ip 5.119.221.234 167399 port 768 167399 unique_id port 167399 remote_ip 10.8.0.234 167400 username mosi 167400 kill_reason Another user logged on this global unique id 167400 mac 167400 bytes_out 0 167400 bytes_in 0 167400 station_ip 151.235.105.226 167400 port 401 167400 unique_id port 167402 username shadkam 167402 mac 167402 bytes_out 860264 167402 bytes_in 6662399 167402 station_ip 113.203.82.172 167402 port 400 167402 unique_id port 167402 remote_ip 10.8.1.218 167408 username aminvpn 167408 mac 167408 bytes_out 0 167408 bytes_in 0 167408 station_ip 5.125.168.162 167408 port 745 167408 unique_id port 167410 username meysam 167410 mac 167410 bytes_out 0 167410 bytes_in 0 167410 station_ip 188.158.48.41 167410 port 758 167410 unique_id port 167410 remote_ip 10.8.0.110 167412 username barzegar 167412 mac 167412 bytes_out 0 167412 bytes_in 0 167412 station_ip 5.119.221.234 167412 port 404 167412 unique_id port 167412 remote_ip 10.8.1.174 167415 username kalantary 167415 mac 167415 bytes_out 0 167415 bytes_in 0 167415 station_ip 83.123.23.85 167415 port 770 167415 unique_id port 167415 remote_ip 10.8.0.98 167418 username mosi 167418 kill_reason Another user logged on this global unique id 167418 mac 167418 bytes_out 0 167418 bytes_in 0 167418 station_ip 151.235.105.226 167418 port 401 167418 unique_id port 167419 username kalantary 167419 mac 167419 bytes_out 170592 167419 bytes_in 389945 167419 station_ip 83.123.23.85 167419 port 758 167419 unique_id port 167419 remote_ip 10.8.0.98 167425 username godarzi 167425 mac 167425 bytes_out 0 167425 bytes_in 0 167425 station_ip 5.119.88.130 167425 port 769 167425 unique_id port 167425 remote_ip 10.8.0.174 167427 username vanila 167427 mac 167427 bytes_out 286165 167427 bytes_in 1721954 167427 station_ip 113.203.105.240 167427 port 770 167427 unique_id port 167427 remote_ip 10.8.0.178 167431 username shadkam 167431 mac 167431 bytes_out 0 167431 bytes_in 0 167431 station_ip 83.122.184.245 167431 port 769 167431 unique_id port 167431 remote_ip 10.8.0.62 167432 username barzegar 167432 mac 167432 bytes_out 5065 167432 bytes_in 6496 167432 station_ip 5.119.221.234 167432 port 773 167432 unique_id port 167432 remote_ip 10.8.0.234 167433 username mehdizare 167433 mac 167433 bytes_out 0 167433 bytes_in 0 167433 station_ip 37.129.118.128 167433 port 400 167433 unique_id port 167433 remote_ip 10.8.1.42 167437 username shadkam 167437 mac 167437 bytes_out 0 167437 bytes_in 0 167437 station_ip 83.122.192.116 167437 port 773 167437 unique_id port 167437 remote_ip 10.8.0.62 167438 username barzegar 167438 mac 167438 bytes_out 0 167438 bytes_in 0 167438 station_ip 5.119.221.234 167438 port 768 167438 unique_id port 167438 remote_ip 10.8.0.234 167442 username saeed9658 167442 mac 167442 bytes_out 0 167442 bytes_in 0 167442 station_ip 5.119.176.146 167442 port 400 167442 unique_id port 167442 remote_ip 10.8.1.210 167444 username mosi 167444 kill_reason Another user logged on this global unique id 167416 mac 167416 bytes_out 0 167416 bytes_in 0 167416 station_ip 37.129.43.113 167416 port 404 167416 unique_id port 167422 username moradi 167422 mac 167422 bytes_out 1296842 167422 bytes_in 21089184 167422 station_ip 46.225.212.113 167422 port 773 167422 unique_id port 167422 remote_ip 10.8.0.126 167424 username barzegar 167424 mac 167424 bytes_out 0 167424 bytes_in 0 167424 station_ip 5.119.221.234 167424 port 406 167424 unique_id port 167424 remote_ip 10.8.1.174 167426 username shadkam 167426 mac 167426 bytes_out 0 167426 bytes_in 0 167426 station_ip 83.122.184.245 167426 port 768 167426 unique_id port 167426 remote_ip 10.8.0.62 167428 username mosi 167428 kill_reason Another user logged on this global unique id 167428 mac 167428 bytes_out 0 167428 bytes_in 0 167428 station_ip 151.235.105.226 167428 port 401 167428 unique_id port 167430 username alipour 167430 mac 167430 bytes_out 406092 167430 bytes_in 1641577 167430 station_ip 37.129.82.41 167430 port 403 167430 unique_id port 167430 remote_ip 10.8.1.50 167436 username shadkam 167436 mac 167436 bytes_out 0 167436 bytes_in 0 167436 station_ip 83.123.25.116 167436 port 773 167436 unique_id port 167436 remote_ip 10.8.0.62 167439 username malekpoir 167439 mac 167439 bytes_out 0 167439 bytes_in 0 167439 station_ip 5.119.214.100 167439 port 776 167439 unique_id port 167441 username moradi 167441 mac 167441 bytes_out 0 167441 bytes_in 0 167441 station_ip 37.129.135.179 167441 port 758 167441 unique_id port 167441 remote_ip 10.8.0.126 167445 username shadkam 167445 mac 167445 bytes_out 0 167445 bytes_in 0 167445 station_ip 83.122.151.0 167445 port 758 167445 unique_id port 167445 remote_ip 10.8.0.62 167453 username hashtadani4 167453 mac 167453 bytes_out 0 167453 bytes_in 0 167453 station_ip 37.129.28.115 167453 port 783 167453 unique_id port 167453 remote_ip 10.8.0.182 167456 username meysam 167456 mac 167456 bytes_out 0 167456 bytes_in 0 167456 station_ip 188.158.48.41 167456 port 745 167456 unique_id port 167460 username alipour 167460 mac 167460 bytes_out 465811 167460 bytes_in 4443815 167460 station_ip 37.129.159.119 167460 port 402 167460 unique_id port 167460 remote_ip 10.8.1.50 167462 username moradi 167462 mac 167462 bytes_out 30309 167462 bytes_in 35427 167462 station_ip 37.129.135.179 167462 port 781 167462 unique_id port 167462 remote_ip 10.8.0.126 167464 username sedighe 167464 mac 167464 bytes_out 0 167464 bytes_in 0 167464 station_ip 83.123.6.221 167464 port 776 167464 unique_id port 167464 remote_ip 10.8.0.146 167468 username hashtadani4 167468 mac 167468 bytes_out 0 167468 bytes_in 0 167468 station_ip 37.129.28.115 167468 port 768 167468 unique_id port 167468 remote_ip 10.8.0.182 167474 username mosi 167474 mac 167474 bytes_out 0 167474 bytes_in 0 167474 station_ip 151.235.105.226 167474 port 401 167474 unique_id port 167476 username hashtadani4 167476 mac 167476 bytes_out 0 167476 bytes_in 0 167476 station_ip 37.129.28.115 167476 port 780 167476 unique_id port 167476 remote_ip 10.8.0.182 167478 username fezealinaghi 167478 kill_reason Another user logged on this global unique id 167478 mac 167478 bytes_out 0 167478 bytes_in 0 167478 station_ip 83.123.206.79 167478 port 403 167478 unique_id port 167482 username hashtadani4 167482 mac 167482 bytes_out 0 167482 bytes_in 0 167482 station_ip 37.129.28.115 167482 port 781 167482 unique_id port 167435 unique_id port 167435 remote_ip 10.8.0.62 167440 username meysam 167440 kill_reason Another user logged on this global unique id 167440 mac 167440 bytes_out 0 167440 bytes_in 0 167440 station_ip 188.158.48.41 167440 port 745 167440 unique_id port 167443 username shadkam 167443 mac 167443 bytes_out 65522 167443 bytes_in 470100 167443 station_ip 83.122.151.0 167443 port 768 167443 unique_id port 167443 remote_ip 10.8.0.62 167446 username meysam 167446 kill_reason Another user logged on this global unique id 167446 mac 167446 bytes_out 0 167446 bytes_in 0 167446 station_ip 188.158.48.41 167446 port 745 167446 unique_id port 167449 username hashtadani4 167449 mac 167449 bytes_out 223335 167449 bytes_in 1606643 167449 station_ip 37.129.28.115 167449 port 782 167449 unique_id port 167449 remote_ip 10.8.0.182 167450 username mehdizare 167450 mac 167450 bytes_out 241344 167450 bytes_in 3646456 167450 station_ip 37.129.30.215 167450 port 776 167450 unique_id port 167450 remote_ip 10.8.0.90 167455 username hashtadani4 167455 kill_reason Maximum check online fails reached 167455 mac 167455 bytes_out 0 167455 bytes_in 0 167455 station_ip 37.129.28.115 167455 port 758 167455 unique_id port 167457 username mehdizare 167457 mac 167457 bytes_out 0 167457 bytes_in 0 167457 station_ip 37.129.30.215 167457 port 782 167457 unique_id port 167457 remote_ip 10.8.0.90 167458 username laleh 167458 mac 167458 bytes_out 0 167458 bytes_in 0 167458 station_ip 5.120.3.34 167458 port 768 167458 unique_id port 167458 remote_ip 10.8.0.214 167459 username hashtadani4 167459 mac 167459 bytes_out 0 167459 bytes_in 0 167459 station_ip 37.129.28.115 167459 port 768 167459 unique_id port 167459 remote_ip 10.8.0.182 167466 username alipour 167466 mac 167466 bytes_out 25917 167466 bytes_in 439362 167466 station_ip 37.129.159.119 167466 port 400 167466 unique_id port 167466 remote_ip 10.8.1.50 167469 username mosi 167469 kill_reason Another user logged on this global unique id 167469 mac 167469 bytes_out 0 167469 bytes_in 0 167469 station_ip 151.235.105.226 167469 port 401 167469 unique_id port 167472 username hashtadani4 167472 mac 167472 bytes_out 0 167472 bytes_in 0 167472 station_ip 37.129.28.115 167472 port 768 167472 unique_id port 167472 remote_ip 10.8.0.182 167473 username moradi 167473 mac 167473 bytes_out 0 167473 bytes_in 0 167473 station_ip 37.129.135.179 167473 port 768 167473 unique_id port 167473 remote_ip 10.8.0.126 167479 username kordestani 167479 mac 167479 bytes_out 0 167479 bytes_in 0 167479 station_ip 151.235.118.220 167479 port 769 167479 unique_id port 167479 remote_ip 10.8.0.74 167481 username hashtadani4 167481 mac 167481 bytes_out 0 167481 bytes_in 0 167481 station_ip 37.129.28.115 167481 port 781 167481 unique_id port 167481 remote_ip 10.8.0.182 167484 username barzegar 167484 mac 167484 bytes_out 0 167484 bytes_in 0 167484 station_ip 5.119.221.234 167484 port 745 167484 unique_id port 167484 remote_ip 10.8.0.234 167487 username fezealinaghi 167487 kill_reason Another user logged on this global unique id 167487 mac 167487 bytes_out 0 167487 bytes_in 0 167487 station_ip 83.123.206.79 167487 port 403 167487 unique_id port 167488 username mehdizare 167488 mac 167488 bytes_out 249225 167488 bytes_in 4733430 167488 station_ip 37.129.122.91 167488 port 776 167488 unique_id port 167488 remote_ip 10.8.0.90 167489 username aminvpn 167489 mac 167489 bytes_out 670373 167489 bytes_in 2092167 167489 station_ip 5.125.168.162 167444 mac 167444 bytes_out 0 167444 bytes_in 0 167444 station_ip 151.235.105.226 167444 port 401 167444 unique_id port 167447 username vanila 167447 mac 167447 bytes_out 902732 167447 bytes_in 23498761 167447 station_ip 113.203.74.244 167447 port 776 167447 unique_id port 167447 remote_ip 10.8.0.178 167448 username shadkam 167448 mac 167448 bytes_out 0 167448 bytes_in 0 167448 station_ip 83.123.97.80 167448 port 758 167448 unique_id port 167448 remote_ip 10.8.0.62 167451 username fezealinaghi 167451 kill_reason Another user logged on this global unique id 167451 mac 167451 bytes_out 0 167451 bytes_in 0 167451 station_ip 83.123.206.79 167451 port 403 167451 unique_id port 167451 remote_ip 10.8.1.162 167452 username hashtadani4 167452 mac 167452 bytes_out 0 167452 bytes_in 0 167452 station_ip 37.129.28.115 167452 port 400 167452 unique_id port 167452 remote_ip 10.8.1.142 167454 username barzegar 167454 mac 167454 bytes_out 64263 167454 bytes_in 79985 167454 station_ip 5.119.221.234 167454 port 780 167454 unique_id port 167454 remote_ip 10.8.0.234 167461 username malekpoir 167461 kill_reason Another user logged on this global unique id 167461 mac 167461 bytes_out 0 167461 bytes_in 0 167461 station_ip 5.119.214.100 167461 port 773 167461 unique_id port 167461 remote_ip 10.8.0.58 167463 username laleh 167463 mac 167463 bytes_out 0 167463 bytes_in 0 167463 station_ip 5.119.210.198 167463 port 780 167463 unique_id port 167463 remote_ip 10.8.0.214 167465 username vanila 167465 mac 167465 bytes_out 1959134 167465 bytes_in 34386351 167465 station_ip 113.203.74.244 167465 port 784 167465 unique_id port 167465 remote_ip 10.8.0.178 167467 username fezealinaghi 167467 kill_reason Another user logged on this global unique id 167467 mac 167467 bytes_out 0 167467 bytes_in 0 167467 station_ip 83.123.206.79 167467 port 403 167467 unique_id port 167470 username kordestani 167470 mac 167470 bytes_out 2454462 167470 bytes_in 17794312 167470 station_ip 151.235.118.220 167470 port 769 167470 unique_id port 167470 remote_ip 10.8.0.74 167471 username moradi 167471 mac 167471 bytes_out 0 167471 bytes_in 0 167471 station_ip 46.225.211.118 167471 port 782 167471 unique_id port 167471 remote_ip 10.8.0.126 167475 username godarzi 167475 mac 167475 bytes_out 0 167475 bytes_in 0 167475 station_ip 5.119.88.130 167475 port 770 167475 unique_id port 167475 remote_ip 10.8.0.174 167477 username hashtadani4 167477 mac 167477 bytes_out 0 167477 bytes_in 0 167477 station_ip 37.129.28.115 167477 port 780 167477 unique_id port 167477 remote_ip 10.8.0.182 167480 username moradi 167480 mac 167480 bytes_out 22086 167480 bytes_in 19708 167480 station_ip 37.129.135.179 167480 port 768 167480 unique_id port 167480 remote_ip 10.8.0.126 167486 username hashtadani4 167486 mac 167486 bytes_out 0 167486 bytes_in 0 167486 station_ip 37.129.28.115 167486 port 781 167486 unique_id port 167486 remote_ip 10.8.0.182 167492 username aminvpn 167492 mac 167492 bytes_out 649851 167492 bytes_in 5507436 167492 station_ip 5.119.94.158 167492 port 776 167492 unique_id port 167492 remote_ip 10.8.0.14 167493 username aminvpn 167493 mac 167493 bytes_out 0 167493 bytes_in 0 167493 station_ip 5.125.168.162 167493 port 769 167493 unique_id port 167493 remote_ip 10.8.0.14 167494 username mohammadjavad 167494 mac 167494 bytes_out 0 167494 bytes_in 0 167494 station_ip 83.122.156.190 167494 port 780 167494 unique_id port 167494 remote_ip 10.8.0.142 167482 remote_ip 10.8.0.182 167483 username kordestani 167483 mac 167483 bytes_out 0 167483 bytes_in 0 167483 station_ip 151.235.118.220 167483 port 769 167483 unique_id port 167483 remote_ip 10.8.0.74 167485 username hashtadani4 167485 mac 167485 bytes_out 0 167485 bytes_in 0 167485 station_ip 37.129.28.115 167485 port 781 167485 unique_id port 167485 remote_ip 10.8.0.182 167490 username barzegar 167490 mac 167490 bytes_out 0 167490 bytes_in 0 167490 station_ip 5.112.173.131 167490 port 769 167490 unique_id port 167490 remote_ip 10.8.0.234 167496 username hashtadani4 167496 mac 167496 bytes_out 0 167496 bytes_in 0 167496 station_ip 37.129.28.115 167496 port 769 167496 unique_id port 167496 remote_ip 10.8.0.182 167498 username fezealinaghi 167498 mac 167498 bytes_out 0 167498 bytes_in 0 167498 station_ip 83.123.206.79 167498 port 403 167498 unique_id port 167507 username hashtadani4 167507 mac 167507 bytes_out 0 167507 bytes_in 0 167507 station_ip 37.129.28.115 167507 port 401 167507 unique_id port 167507 remote_ip 10.8.1.142 167509 username aminvpn 167509 kill_reason Another user logged on this global unique id 167509 mac 167509 bytes_out 0 167509 bytes_in 0 167509 station_ip 5.119.94.158 167509 port 770 167509 unique_id port 167509 remote_ip 10.8.0.14 167510 username hashtadani4 167510 mac 167510 bytes_out 0 167510 bytes_in 0 167510 station_ip 37.129.28.115 167510 port 401 167510 unique_id port 167510 remote_ip 10.8.1.142 167515 username alipour 167515 mac 167515 bytes_out 0 167515 bytes_in 0 167515 station_ip 37.129.159.119 167515 port 400 167515 unique_id port 167515 remote_ip 10.8.1.50 167516 username saeed9658 167516 mac 167516 bytes_out 0 167516 bytes_in 0 167516 station_ip 5.119.176.146 167516 port 402 167516 unique_id port 167516 remote_ip 10.8.1.210 167517 username mostafa_es78 167517 kill_reason Another user logged on this global unique id 167517 mac 167517 bytes_out 0 167517 bytes_in 0 167517 station_ip 83.123.164.53 167517 port 768 167517 unique_id port 167517 remote_ip 10.8.0.194 167521 username vanila 167521 mac 167521 bytes_out 0 167521 bytes_in 0 167521 station_ip 113.203.74.244 167521 port 745 167521 unique_id port 167521 remote_ip 10.8.0.178 167528 username hashtadani4 167528 mac 167528 bytes_out 0 167528 bytes_in 0 167528 station_ip 37.129.28.115 167528 port 780 167528 unique_id port 167528 remote_ip 10.8.0.182 167529 username alipour 167529 mac 167529 bytes_out 52099 167529 bytes_in 138578 167529 station_ip 113.203.66.247 167529 port 402 167529 unique_id port 167529 remote_ip 10.8.1.50 167531 username alipour 167531 mac 167531 bytes_out 0 167531 bytes_in 0 167531 station_ip 113.203.33.109 167531 port 403 167531 unique_id port 167531 remote_ip 10.8.1.50 167533 username moradi 167533 mac 167533 bytes_out 7494 167533 bytes_in 10446 167533 station_ip 37.129.174.83 167533 port 401 167533 unique_id port 167533 remote_ip 10.8.1.202 167535 username hashtadani4 167535 mac 167535 bytes_out 0 167535 bytes_in 0 167535 station_ip 37.129.28.115 167535 port 401 167535 unique_id port 167535 remote_ip 10.8.1.142 167538 username hashtadani4 167538 mac 167538 bytes_out 0 167538 bytes_in 0 167538 station_ip 37.129.28.115 167538 port 403 167538 unique_id port 167538 remote_ip 10.8.1.142 167541 username hashtadani4 167541 mac 167541 bytes_out 0 167541 bytes_in 0 167541 station_ip 37.129.28.115 167541 port 403 167541 unique_id port 167489 port 770 167489 unique_id port 167489 remote_ip 10.8.0.14 167491 username godarzi 167491 mac 167491 bytes_out 0 167491 bytes_in 0 167491 station_ip 5.119.48.227 167491 port 401 167491 unique_id port 167491 remote_ip 10.8.1.230 167495 username alipour 167495 mac 167495 bytes_out 429558 167495 bytes_in 3585017 167495 station_ip 37.129.159.119 167495 port 400 167495 unique_id port 167495 remote_ip 10.8.1.50 167497 username aminvpn 167497 mac 167497 bytes_out 0 167497 bytes_in 0 167497 station_ip 5.119.94.158 167497 port 770 167497 unique_id port 167497 remote_ip 10.8.0.14 167499 username aminvpn 167499 mac 167499 bytes_out 0 167499 bytes_in 0 167499 station_ip 5.125.168.162 167499 port 769 167499 unique_id port 167499 remote_ip 10.8.0.14 167502 username vanila 167502 mac 167502 bytes_out 0 167502 bytes_in 0 167502 station_ip 113.203.74.244 167502 port 745 167502 unique_id port 167502 remote_ip 10.8.0.178 167503 username alipour 167503 mac 167503 bytes_out 48284 167503 bytes_in 178643 167503 station_ip 37.129.159.119 167503 port 400 167503 unique_id port 167503 remote_ip 10.8.1.50 167505 username alipour 167505 mac 167505 bytes_out 0 167505 bytes_in 0 167505 station_ip 37.129.159.119 167505 port 400 167505 unique_id port 167505 remote_ip 10.8.1.50 167508 username barzegar 167508 mac 167508 bytes_out 0 167508 bytes_in 0 167508 station_ip 5.119.3.156 167508 port 776 167508 unique_id port 167508 remote_ip 10.8.0.234 167512 username vanila 167512 mac 167512 bytes_out 229229 167512 bytes_in 1274643 167512 station_ip 113.203.74.244 167512 port 745 167512 unique_id port 167512 remote_ip 10.8.0.178 167518 username saeed9658 167518 mac 167518 bytes_out 0 167518 bytes_in 0 167518 station_ip 5.119.176.146 167518 port 400 167518 unique_id port 167518 remote_ip 10.8.1.210 167519 username hashtadani4 167519 mac 167519 bytes_out 0 167519 bytes_in 0 167519 station_ip 37.129.28.115 167519 port 745 167519 unique_id port 167519 remote_ip 10.8.0.182 167520 username amirabbas 167520 kill_reason Relative expiration date has reached 167520 unique_id port 167520 bytes_out 0 167520 bytes_in 0 167520 station_ip 37.27.1.144 167520 port 15728740 167520 nas_port_type Virtual 167522 username hashtadani4 167522 mac 167522 bytes_out 0 167522 bytes_in 0 167522 station_ip 37.129.28.115 167522 port 745 167522 unique_id port 167522 remote_ip 10.8.0.182 167523 username godarzi 167523 mac 167523 bytes_out 1115425 167523 bytes_in 9639881 167523 station_ip 5.119.48.227 167523 port 403 167523 unique_id port 167523 remote_ip 10.8.1.230 167527 username vanila 167527 mac 167527 bytes_out 0 167527 bytes_in 0 167527 station_ip 113.203.74.244 167527 port 745 167527 unique_id port 167527 remote_ip 10.8.0.178 167530 username vanila 167530 mac 167530 bytes_out 0 167530 bytes_in 0 167530 station_ip 113.203.74.244 167530 port 782 167530 unique_id port 167530 remote_ip 10.8.0.178 167532 username hashtadani4 167532 mac 167532 bytes_out 0 167532 bytes_in 0 167532 station_ip 37.129.28.115 167532 port 745 167532 unique_id port 167532 remote_ip 10.8.0.182 167536 username hashtadani4 167536 mac 167536 bytes_out 0 167536 bytes_in 0 167536 station_ip 37.129.28.115 167536 port 783 167536 unique_id port 167536 remote_ip 10.8.0.182 167537 username vanila 167537 mac 167537 bytes_out 173120 167537 bytes_in 1177278 167537 station_ip 113.203.74.244 167537 port 780 167537 unique_id port 167500 username godarzi 167500 mac 167500 bytes_out 114588 167500 bytes_in 634228 167500 station_ip 5.119.48.227 167500 port 401 167500 unique_id port 167500 remote_ip 10.8.1.230 167501 username hashtadani4 167501 mac 167501 bytes_out 0 167501 bytes_in 0 167501 station_ip 37.129.28.115 167501 port 769 167501 unique_id port 167501 remote_ip 10.8.0.182 167504 username shadkam 167504 mac 167504 bytes_out 37841 167504 bytes_in 214010 167504 station_ip 83.122.206.19 167504 port 745 167504 unique_id port 167504 remote_ip 10.8.0.62 167506 username hashtadani4 167506 mac 167506 bytes_out 1292562 167506 bytes_in 18383870 167506 station_ip 37.129.28.115 167506 port 401 167506 unique_id port 167506 remote_ip 10.8.1.142 167511 username hashtadani4 167511 kill_reason Maximum check online fails reached 167511 mac 167511 bytes_out 0 167511 bytes_in 0 167511 station_ip 37.129.28.115 167511 port 776 167511 unique_id port 167513 username moradi 167513 mac 167513 bytes_out 615091 167513 bytes_in 7985919 167513 station_ip 37.129.135.179 167513 port 782 167513 unique_id port 167513 remote_ip 10.8.0.126 167514 username hashtadani4 167514 mac 167514 bytes_out 0 167514 bytes_in 0 167514 station_ip 37.129.28.115 167514 port 745 167514 unique_id port 167514 remote_ip 10.8.0.182 167524 username hashtadani4 167524 mac 167524 bytes_out 0 167524 bytes_in 0 167524 station_ip 37.129.28.115 167524 port 780 167524 unique_id port 167524 remote_ip 10.8.0.182 167525 username barzegar 167525 mac 167525 bytes_out 23818504 167525 bytes_in 14142729 167525 station_ip 5.119.3.156 167525 port 401 167525 unique_id port 167525 remote_ip 10.8.1.174 167526 username hashtadani4 167526 mac 167526 bytes_out 0 167526 bytes_in 0 167526 station_ip 37.129.28.115 167526 port 780 167526 unique_id port 167526 remote_ip 10.8.0.182 167534 username aminvpn 167534 kill_reason Another user logged on this global unique id 167534 mac 167534 bytes_out 0 167534 bytes_in 0 167534 station_ip 5.119.94.158 167534 port 770 167534 unique_id port 167539 username vanila 167539 mac 167539 bytes_out 0 167539 bytes_in 0 167539 station_ip 113.203.74.244 167539 port 783 167539 unique_id port 167539 remote_ip 10.8.0.178 167540 username hashtadani4 167540 mac 167540 bytes_out 0 167540 bytes_in 0 167540 station_ip 37.129.28.115 167540 port 403 167540 unique_id port 167540 remote_ip 10.8.1.142 167544 username meysam 167544 kill_reason Another user logged on this global unique id 167544 mac 167544 bytes_out 0 167544 bytes_in 0 167544 station_ip 188.158.48.41 167544 port 780 167544 unique_id port 167544 remote_ip 10.8.0.110 167545 username hashtadani4 167545 mac 167545 bytes_out 0 167545 bytes_in 0 167545 station_ip 37.129.28.115 167545 port 783 167545 unique_id port 167545 remote_ip 10.8.0.182 167549 username hashtadani4 167549 mac 167549 bytes_out 0 167549 bytes_in 0 167549 station_ip 37.129.28.115 167549 port 400 167549 unique_id port 167549 remote_ip 10.8.1.142 167551 username tahmasebi 167551 kill_reason Another user logged on this global unique id 167551 mac 167551 bytes_out 0 167551 bytes_in 0 167551 station_ip 5.119.60.71 167551 port 769 167551 unique_id port 167551 remote_ip 10.8.0.42 167559 username sedighe 167559 mac 167559 bytes_out 123262 167559 bytes_in 710327 167559 station_ip 83.122.161.233 167559 port 783 167559 unique_id port 167559 remote_ip 10.8.0.146 167566 username hashtadani4 167566 mac 167566 bytes_out 0 167566 bytes_in 0 167566 station_ip 37.129.28.115 167537 remote_ip 10.8.0.178 167547 username malekpoir 167547 kill_reason Another user logged on this global unique id 167547 mac 167547 bytes_out 0 167547 bytes_in 0 167547 station_ip 5.119.214.100 167547 port 773 167547 unique_id port 167550 username hashtadani4 167550 mac 167550 bytes_out 0 167550 bytes_in 0 167550 station_ip 37.129.28.115 167550 port 783 167550 unique_id port 167550 remote_ip 10.8.0.182 167552 username barzegar 167552 mac 167552 bytes_out 15864997 167552 bytes_in 4056193 167552 station_ip 5.119.3.156 167552 port 401 167552 unique_id port 167552 remote_ip 10.8.1.174 167555 username shadkam 167555 mac 167555 bytes_out 0 167555 bytes_in 0 167555 station_ip 37.129.125.2 167555 port 784 167555 unique_id port 167555 remote_ip 10.8.0.62 167556 username hashtadani4 167556 mac 167556 bytes_out 0 167556 bytes_in 0 167556 station_ip 37.129.28.115 167556 port 400 167556 unique_id port 167556 remote_ip 10.8.1.142 167558 username hashtadani4 167558 mac 167558 bytes_out 0 167558 bytes_in 0 167558 station_ip 37.129.28.115 167558 port 780 167558 unique_id port 167558 remote_ip 10.8.0.182 167561 username alipour 167561 mac 167561 bytes_out 0 167561 bytes_in 0 167561 station_ip 83.122.119.242 167561 port 782 167561 unique_id port 167561 remote_ip 10.8.0.102 167575 username barzegar 167575 mac 167575 bytes_out 0 167575 bytes_in 0 167575 station_ip 5.119.3.156 167575 port 401 167575 unique_id port 167575 remote_ip 10.8.1.174 167579 username barzegar 167579 mac 167579 bytes_out 0 167579 bytes_in 0 167579 station_ip 5.119.3.156 167579 port 401 167579 unique_id port 167579 remote_ip 10.8.1.174 167581 username hashtadani4 167581 mac 167581 bytes_out 0 167581 bytes_in 0 167581 station_ip 37.129.28.115 167581 port 770 167581 unique_id port 167581 remote_ip 10.8.0.182 167586 username vanila 167586 mac 167586 bytes_out 468689 167586 bytes_in 4425924 167586 station_ip 37.129.58.38 167586 port 769 167586 unique_id port 167586 remote_ip 10.8.0.178 167593 username hashtadani4 167593 mac 167593 bytes_out 0 167593 bytes_in 0 167593 station_ip 37.129.28.115 167593 port 780 167593 unique_id port 167593 remote_ip 10.8.0.182 167594 username hashtadani4 167594 mac 167594 bytes_out 0 167594 bytes_in 0 167594 station_ip 37.129.28.115 167594 port 782 167594 unique_id port 167594 remote_ip 10.8.0.182 167598 username barzegar 167598 mac 167598 bytes_out 28749 167598 bytes_in 45165 167598 station_ip 5.119.3.156 167598 port 770 167598 unique_id port 167598 remote_ip 10.8.0.234 167604 username hashtadani4 167604 mac 167604 bytes_out 0 167604 bytes_in 0 167604 station_ip 37.129.28.115 167604 port 783 167604 unique_id port 167604 remote_ip 10.8.0.182 167605 username barzegar 167605 mac 167605 bytes_out 0 167605 bytes_in 0 167605 station_ip 5.119.3.156 167605 port 400 167605 unique_id port 167605 remote_ip 10.8.1.174 167607 username godarzi 167607 mac 167607 bytes_out 0 167607 bytes_in 0 167607 station_ip 5.119.48.227 167607 port 401 167607 unique_id port 167607 remote_ip 10.8.1.230 167608 username hashtadani4 167608 mac 167608 bytes_out 0 167608 bytes_in 0 167608 station_ip 37.129.28.115 167608 port 769 167608 unique_id port 167608 remote_ip 10.8.0.182 167610 username farhad2 167610 mac 167610 bytes_out 354561 167610 bytes_in 6406595 167610 station_ip 5.120.67.28 167610 port 783 167610 unique_id port 167610 remote_ip 10.8.0.190 167541 remote_ip 10.8.1.142 167542 username hashtadani4 167542 mac 167542 bytes_out 0 167542 bytes_in 0 167542 station_ip 37.129.28.115 167542 port 783 167542 unique_id port 167542 remote_ip 10.8.0.182 167543 username saeed9658 167543 mac 167543 bytes_out 34901 167543 bytes_in 61520 167543 station_ip 5.119.176.146 167543 port 400 167543 unique_id port 167543 remote_ip 10.8.1.210 167546 username hashtadani4 167546 mac 167546 bytes_out 0 167546 bytes_in 0 167546 station_ip 37.129.28.115 167546 port 783 167546 unique_id port 167546 remote_ip 10.8.0.182 167548 username hashtadani4 167548 mac 167548 bytes_out 0 167548 bytes_in 0 167548 station_ip 37.129.28.115 167548 port 783 167548 unique_id port 167548 remote_ip 10.8.0.182 167553 username nilufarrajaei 167553 kill_reason Another user logged on this global unique id 167553 mac 167553 bytes_out 0 167553 bytes_in 0 167553 station_ip 45.132.168.16 167553 port 745 167553 unique_id port 167553 remote_ip 10.8.0.206 167554 username meysam 167554 mac 167554 bytes_out 0 167554 bytes_in 0 167554 station_ip 188.158.48.41 167554 port 780 167554 unique_id port 167557 username hashtadani4 167557 mac 167557 bytes_out 0 167557 bytes_in 0 167557 station_ip 37.129.28.115 167557 port 400 167557 unique_id port 167557 remote_ip 10.8.1.142 167560 username hashtadani4 167560 mac 167560 bytes_out 0 167560 bytes_in 0 167560 station_ip 37.129.28.115 167560 port 780 167560 unique_id port 167560 remote_ip 10.8.0.182 167562 username barzegar 167562 mac 167562 bytes_out 0 167562 bytes_in 0 167562 station_ip 5.119.3.156 167562 port 400 167562 unique_id port 167562 remote_ip 10.8.1.174 167563 username nilufarrajaei 167563 mac 167563 bytes_out 0 167563 bytes_in 0 167563 station_ip 45.132.168.16 167563 port 745 167563 unique_id port 167564 username barzegar 167564 mac 167564 bytes_out 0 167564 bytes_in 0 167564 station_ip 5.119.3.156 167564 port 401 167564 unique_id port 167564 remote_ip 10.8.1.174 167565 username aminvpn 167565 mac 167565 bytes_out 0 167565 bytes_in 0 167565 station_ip 5.119.94.158 167565 port 770 167565 unique_id port 167567 username hosseine 167567 mac 167567 bytes_out 6327152 167567 bytes_in 49677085 167567 station_ip 83.122.12.73 167567 port 391 167567 unique_id port 167567 remote_ip 10.8.1.190 167568 username moradi 167568 mac 167568 bytes_out 0 167568 bytes_in 0 167568 station_ip 92.119.68.131 167568 port 402 167568 unique_id port 167568 remote_ip 10.8.1.202 167569 username vanila 167569 mac 167569 bytes_out 0 167569 bytes_in 0 167569 station_ip 37.129.58.38 167569 port 745 167569 unique_id port 167569 remote_ip 10.8.0.178 167572 username shadkam 167572 mac 167572 bytes_out 0 167572 bytes_in 0 167572 station_ip 37.129.151.213 167572 port 783 167572 unique_id port 167572 remote_ip 10.8.0.62 167574 username tahmasebi 167574 mac 167574 bytes_out 0 167574 bytes_in 0 167574 station_ip 5.119.60.71 167574 port 769 167574 unique_id port 167576 username godarzi 167576 mac 167576 bytes_out 261031 167576 bytes_in 1968545 167576 station_ip 5.119.48.227 167576 port 400 167576 unique_id port 167576 remote_ip 10.8.1.230 167577 username hashtadani4 167577 mac 167577 bytes_out 0 167577 bytes_in 0 167577 station_ip 37.129.28.115 167577 port 770 167577 unique_id port 167577 remote_ip 10.8.0.182 167578 username tahmasebi 167578 mac 167578 bytes_out 37781 167578 bytes_in 128654 167566 port 782 167566 unique_id port 167566 remote_ip 10.8.0.182 167570 username alipour 167570 mac 167570 bytes_out 0 167570 bytes_in 0 167570 station_ip 83.122.132.241 167570 port 400 167570 unique_id port 167570 remote_ip 10.8.1.50 167571 username barzegar 167571 mac 167571 bytes_out 2367 167571 bytes_in 4946 167571 station_ip 5.119.3.156 167571 port 401 167571 unique_id port 167571 remote_ip 10.8.1.174 167573 username vanila 167573 mac 167573 bytes_out 40067 167573 bytes_in 127238 167573 station_ip 37.129.58.38 167573 port 770 167573 unique_id port 167573 remote_ip 10.8.0.178 167580 username khalili 167580 kill_reason Relative expiration date has reached 167580 mac 167580 bytes_out 0 167580 bytes_in 0 167580 station_ip 5.120.109.173 167580 port 782 167580 unique_id port 167582 username khalili 167582 kill_reason Relative expiration date has reached 167582 unique_id port 167582 bytes_out 0 167582 bytes_in 0 167582 station_ip 5.120.109.173 167582 port 15728741 167582 nas_port_type Virtual 167583 username tahmasebi 167583 mac 167583 bytes_out 0 167583 bytes_in 0 167583 station_ip 5.119.60.71 167583 port 400 167583 unique_id port 167583 remote_ip 10.8.1.90 167584 username tahmasebi 167584 mac 167584 bytes_out 0 167584 bytes_in 0 167584 station_ip 5.119.60.71 167584 port 400 167584 unique_id port 167584 remote_ip 10.8.1.90 167585 username tahmasebi 167585 mac 167585 bytes_out 0 167585 bytes_in 0 167585 station_ip 5.119.60.71 167585 port 400 167585 unique_id port 167585 remote_ip 10.8.1.90 167590 username tahmasebi 167590 mac 167590 bytes_out 13946 167590 bytes_in 21504 167590 station_ip 5.119.60.71 167590 port 400 167590 unique_id port 167590 remote_ip 10.8.1.90 167592 username hosseine 167592 mac 167592 bytes_out 0 167592 bytes_in 0 167592 station_ip 83.123.7.50 167592 port 402 167592 unique_id port 167592 remote_ip 10.8.1.190 167596 username hashtadani4 167596 mac 167596 bytes_out 0 167596 bytes_in 0 167596 station_ip 37.129.28.115 167596 port 782 167596 unique_id port 167596 remote_ip 10.8.0.182 167597 username tahmasebi 167597 mac 167597 bytes_out 0 167597 bytes_in 0 167597 station_ip 5.119.60.71 167597 port 402 167597 unique_id port 167597 remote_ip 10.8.1.90 167603 username mohammadjavad 167603 mac 167603 bytes_out 0 167603 bytes_in 0 167603 station_ip 37.129.225.136 167603 port 769 167603 unique_id port 167606 username farhad2 167606 mac 167606 bytes_out 143167 167606 bytes_in 1499743 167606 station_ip 5.120.67.28 167606 port 785 167606 unique_id port 167606 remote_ip 10.8.0.190 167609 username hosseine 167609 mac 167609 bytes_out 37985 167609 bytes_in 81348 167609 station_ip 83.123.7.50 167609 port 391 167609 unique_id port 167609 remote_ip 10.8.1.190 167612 username alipour 167612 mac 167612 bytes_out 110647 167612 bytes_in 207090 167612 station_ip 83.122.132.241 167612 port 745 167612 unique_id port 167612 remote_ip 10.8.0.102 167615 username khademi 167615 kill_reason Another user logged on this global unique id 167615 mac 167615 bytes_out 0 167615 bytes_in 0 167615 station_ip 37.129.49.105 167615 port 782 167615 unique_id port 167615 remote_ip 10.8.0.10 167626 username hashtadani4 167626 mac 167626 bytes_out 0 167626 bytes_in 0 167626 station_ip 37.129.28.115 167626 port 784 167626 unique_id port 167626 remote_ip 10.8.0.182 167627 username hashtadani4 167627 mac 167627 bytes_out 0 167627 bytes_in 0 167627 station_ip 37.129.28.115 167627 port 783 167578 station_ip 5.119.60.71 167578 port 400 167578 unique_id port 167578 remote_ip 10.8.1.90 167587 username tahmasebi 167587 mac 167587 bytes_out 0 167587 bytes_in 0 167587 station_ip 5.119.60.71 167587 port 400 167587 unique_id port 167587 remote_ip 10.8.1.90 167588 username hashtadani4 167588 mac 167588 bytes_out 0 167588 bytes_in 0 167588 station_ip 37.129.28.115 167588 port 769 167588 unique_id port 167588 remote_ip 10.8.0.182 167589 username farhad2 167589 mac 167589 bytes_out 0 167589 bytes_in 0 167589 station_ip 5.120.41.24 167589 port 780 167589 unique_id port 167589 remote_ip 10.8.0.190 167591 username moradi 167591 mac 167591 bytes_out 0 167591 bytes_in 0 167591 station_ip 37.129.204.87 167591 port 391 167591 unique_id port 167591 remote_ip 10.8.1.202 167595 username mohammadjavad 167595 kill_reason Another user logged on this global unique id 167595 mac 167595 bytes_out 0 167595 bytes_in 0 167595 station_ip 37.129.225.136 167595 port 769 167595 unique_id port 167595 remote_ip 10.8.0.142 167599 username tahmasebi 167599 mac 167599 bytes_out 374155 167599 bytes_in 3005509 167599 station_ip 5.119.60.71 167599 port 784 167599 unique_id port 167599 remote_ip 10.8.0.42 167600 username naeimeh 167600 mac 167600 bytes_out 0 167600 bytes_in 0 167600 station_ip 83.122.188.75 167600 port 400 167600 unique_id port 167600 remote_ip 10.8.1.206 167601 username tahmasebi 167601 mac 167601 bytes_out 0 167601 bytes_in 0 167601 station_ip 5.119.60.71 167601 port 785 167601 unique_id port 167601 remote_ip 10.8.0.42 167602 username tahmasebi 167602 mac 167602 bytes_out 0 167602 bytes_in 0 167602 station_ip 5.119.60.71 167602 port 785 167602 unique_id port 167602 remote_ip 10.8.0.42 167611 username tahmasebi 167611 mac 167611 bytes_out 95283 167611 bytes_in 506635 167611 station_ip 5.119.60.71 167611 port 785 167611 unique_id port 167611 remote_ip 10.8.0.42 167613 username hashtadani4 167613 mac 167613 bytes_out 4480 167613 bytes_in 6371 167613 station_ip 37.129.28.115 167613 port 400 167613 unique_id port 167613 remote_ip 10.8.1.142 167614 username farhad2 167614 mac 167614 bytes_out 94185 167614 bytes_in 642571 167614 station_ip 5.120.67.28 167614 port 769 167614 unique_id port 167614 remote_ip 10.8.0.190 167617 username hashtadani4 167617 mac 167617 bytes_out 0 167617 bytes_in 0 167617 station_ip 37.129.28.115 167617 port 400 167617 unique_id port 167617 remote_ip 10.8.1.142 167619 username arash 167619 mac 167619 bytes_out 0 167619 bytes_in 0 167619 station_ip 93.114.26.89 167619 port 781 167619 unique_id port 167619 remote_ip 10.8.0.122 167622 username naeimeh 167622 mac 167622 bytes_out 770817 167622 bytes_in 4381469 167622 station_ip 83.122.188.75 167622 port 784 167622 unique_id port 167622 remote_ip 10.8.0.202 167623 username hashtadani4 167623 mac 167623 bytes_out 0 167623 bytes_in 0 167623 station_ip 37.129.28.115 167623 port 402 167623 unique_id port 167623 remote_ip 10.8.1.142 167625 username godarzi 167625 mac 167625 bytes_out 38557 167625 bytes_in 74171 167625 station_ip 5.119.48.227 167625 port 400 167625 unique_id port 167625 remote_ip 10.8.1.230 167631 username tahmasebi 167631 mac 167631 bytes_out 0 167631 bytes_in 0 167631 station_ip 5.119.58.232 167631 port 781 167631 unique_id port 167631 remote_ip 10.8.0.42 167633 username mehdizare 167633 mac 167633 bytes_out 0 167633 bytes_in 0 167633 station_ip 37.129.122.91 167616 username mehdizare 167616 mac 167616 bytes_out 0 167616 bytes_in 0 167616 station_ip 37.129.122.91 167616 port 781 167616 unique_id port 167616 remote_ip 10.8.0.90 167618 username barzegar 167618 mac 167618 bytes_out 0 167618 bytes_in 0 167618 station_ip 5.119.3.156 167618 port 783 167618 unique_id port 167618 remote_ip 10.8.0.234 167620 username tahmasebi 167620 mac 167620 bytes_out 0 167620 bytes_in 0 167620 station_ip 5.119.60.71 167620 port 745 167620 unique_id port 167620 remote_ip 10.8.0.42 167621 username arash 167621 mac 167621 bytes_out 0 167621 bytes_in 0 167621 station_ip 37.27.7.92 167621 port 785 167621 unique_id port 167621 remote_ip 10.8.0.122 167624 username hashtadani4 167624 mac 167624 bytes_out 3358 167624 bytes_in 6075 167624 station_ip 37.129.28.115 167624 port 783 167624 unique_id port 167624 remote_ip 10.8.0.182 167628 username barzegar 167628 mac 167628 bytes_out 0 167628 bytes_in 0 167628 station_ip 5.119.3.156 167628 port 783 167628 unique_id port 167628 remote_ip 10.8.0.234 167629 username hashtadani4 167629 mac 167629 bytes_out 0 167629 bytes_in 0 167629 station_ip 37.129.28.115 167629 port 786 167629 unique_id port 167629 remote_ip 10.8.0.182 167632 username hashtadani4 167632 mac 167632 bytes_out 0 167632 bytes_in 0 167632 station_ip 37.129.28.115 167632 port 781 167632 unique_id port 167632 remote_ip 10.8.0.182 167634 username hashtadani4 167634 mac 167634 bytes_out 0 167634 bytes_in 0 167634 station_ip 37.129.28.115 167634 port 769 167634 unique_id port 167634 remote_ip 10.8.0.182 167635 username fezealinaghi 167635 mac 167635 bytes_out 0 167635 bytes_in 0 167635 station_ip 83.123.118.154 167635 port 784 167635 unique_id port 167635 remote_ip 10.8.0.78 167640 username alikomsari 167640 mac 167640 bytes_out 3055773 167640 bytes_in 27914221 167640 station_ip 5.119.159.219 167640 port 770 167640 unique_id port 167640 remote_ip 10.8.0.26 167641 username barzegar 167641 mac 167641 bytes_out 0 167641 bytes_in 0 167641 station_ip 5.119.3.156 167641 port 770 167641 unique_id port 167641 remote_ip 10.8.0.234 167647 username godarzi 167647 mac 167647 bytes_out 245153 167647 bytes_in 996393 167647 station_ip 5.119.48.227 167647 port 400 167647 unique_id port 167647 remote_ip 10.8.1.230 167650 username hosseine 167650 mac 167650 bytes_out 402962 167650 bytes_in 2589601 167650 station_ip 83.123.7.50 167650 port 391 167650 unique_id port 167650 remote_ip 10.8.1.190 167651 username hashtadani4 167651 mac 167651 bytes_out 0 167651 bytes_in 0 167651 station_ip 37.129.28.115 167651 port 769 167651 unique_id port 167651 remote_ip 10.8.0.182 167659 username barzegar 167659 mac 167659 bytes_out 8663 167659 bytes_in 13630 167659 station_ip 5.119.3.156 167659 port 769 167659 unique_id port 167659 remote_ip 10.8.0.234 167660 username godarzi 167660 kill_reason Another user logged on this global unique id 167660 mac 167660 bytes_out 0 167660 bytes_in 0 167660 station_ip 5.119.46.231 167660 port 400 167660 unique_id port 167660 remote_ip 10.8.1.230 167664 username godarzi 167664 mac 167664 bytes_out 0 167664 bytes_in 0 167664 station_ip 5.119.46.231 167664 port 400 167664 unique_id port 167668 username hashtadani4 167668 mac 167668 bytes_out 0 167668 bytes_in 0 167668 station_ip 37.129.28.115 167668 port 768 167668 unique_id port 167668 remote_ip 10.8.0.182 167671 username kalantary 167671 mac 167627 unique_id port 167627 remote_ip 10.8.0.182 167630 username hashtadani4 167630 mac 167630 bytes_out 0 167630 bytes_in 0 167630 station_ip 37.129.28.115 167630 port 783 167630 unique_id port 167630 remote_ip 10.8.0.182 167637 username tahmasebi 167637 mac 167637 bytes_out 0 167637 bytes_in 0 167637 station_ip 5.119.58.232 167637 port 781 167637 unique_id port 167637 remote_ip 10.8.0.42 167639 username hashtadani4 167639 mac 167639 bytes_out 0 167639 bytes_in 0 167639 station_ip 37.129.28.115 167639 port 781 167639 unique_id port 167639 remote_ip 10.8.0.182 167642 username tahmasebi 167642 mac 167642 bytes_out 28129 167642 bytes_in 28665 167642 station_ip 5.119.58.232 167642 port 769 167642 unique_id port 167642 remote_ip 10.8.0.42 167644 username alipour 167644 mac 167644 bytes_out 112922 167644 bytes_in 249919 167644 station_ip 83.123.235.125 167644 port 401 167644 unique_id port 167644 remote_ip 10.8.1.50 167649 username barzegar 167649 mac 167649 bytes_out 0 167649 bytes_in 0 167649 station_ip 5.119.3.156 167649 port 770 167649 unique_id port 167649 remote_ip 10.8.0.234 167652 username hashtadani4 167652 mac 167652 bytes_out 0 167652 bytes_in 0 167652 station_ip 37.129.28.115 167652 port 770 167652 unique_id port 167652 remote_ip 10.8.0.182 167653 username farhad2 167653 mac 167653 bytes_out 147568 167653 bytes_in 881814 167653 station_ip 5.119.131.165 167653 port 781 167653 unique_id port 167653 remote_ip 10.8.0.190 167655 username tahmasebi 167655 mac 167655 bytes_out 0 167655 bytes_in 0 167655 station_ip 5.119.58.232 167655 port 402 167655 unique_id port 167655 remote_ip 10.8.1.90 167657 username vanila 167657 mac 167657 bytes_out 0 167657 bytes_in 0 167657 station_ip 37.129.58.38 167657 port 786 167657 unique_id port 167657 remote_ip 10.8.0.178 167661 username tahmasebi 167661 mac 167661 bytes_out 0 167661 bytes_in 0 167661 station_ip 5.119.58.232 167661 port 402 167661 unique_id port 167661 remote_ip 10.8.1.90 167662 username barzegar 167662 mac 167662 bytes_out 0 167662 bytes_in 0 167662 station_ip 5.119.3.156 167662 port 769 167662 unique_id port 167662 remote_ip 10.8.0.234 167667 username aminvpn 167667 unique_id port 167667 terminate_cause Lost-Carrier 167667 bytes_out 2939541 167667 bytes_in 53766800 167667 station_ip 5.120.127.136 167667 port 15728742 167667 nas_port_type Virtual 167667 remote_ip 5.5.5.171 167670 username alipour 167670 mac 167670 bytes_out 0 167670 bytes_in 0 167670 station_ip 83.123.142.44 167670 port 401 167670 unique_id port 167670 remote_ip 10.8.1.50 167672 username fezealinaghi 167672 kill_reason Another user logged on this global unique id 167672 mac 167672 bytes_out 0 167672 bytes_in 0 167672 station_ip 83.123.118.154 167672 port 784 167672 unique_id port 167672 remote_ip 10.8.0.78 167674 username farhad2 167674 mac 167674 bytes_out 0 167674 bytes_in 0 167674 station_ip 5.119.131.165 167674 port 770 167674 unique_id port 167674 remote_ip 10.8.0.190 167675 username hashtadani4 167675 mac 167675 bytes_out 0 167675 bytes_in 0 167675 station_ip 37.129.28.115 167675 port 768 167675 unique_id port 167675 remote_ip 10.8.0.182 167677 username tahmasebi 167677 mac 167677 bytes_out 0 167677 bytes_in 0 167677 station_ip 5.119.58.232 167677 port 786 167677 unique_id port 167677 remote_ip 10.8.0.42 167680 username tahmasebi 167680 mac 167680 bytes_out 0 167680 bytes_in 0 167680 station_ip 5.119.58.232 167680 port 400 167633 port 769 167633 unique_id port 167633 remote_ip 10.8.0.90 167636 username barzegar 167636 mac 167636 bytes_out 0 167636 bytes_in 0 167636 station_ip 5.119.3.156 167636 port 769 167636 unique_id port 167636 remote_ip 10.8.0.234 167638 username kalantary 167638 kill_reason Another user logged on this global unique id 167638 mac 167638 bytes_out 0 167638 bytes_in 0 167638 station_ip 83.123.86.93 167638 port 780 167638 unique_id port 167638 remote_ip 10.8.0.98 167643 username hashtadani4 167643 mac 167643 bytes_out 0 167643 bytes_in 0 167643 station_ip 37.129.28.115 167643 port 769 167643 unique_id port 167643 remote_ip 10.8.0.182 167645 username mostafa_es78 167645 mac 167645 bytes_out 0 167645 bytes_in 0 167645 station_ip 83.123.164.53 167645 port 768 167645 unique_id port 167646 username farhad2 167646 mac 167646 bytes_out 0 167646 bytes_in 0 167646 station_ip 5.119.131.165 167646 port 781 167646 unique_id port 167646 remote_ip 10.8.0.190 167648 username tahmasebi 167648 mac 167648 bytes_out 0 167648 bytes_in 0 167648 station_ip 5.119.58.232 167648 port 787 167648 unique_id port 167648 remote_ip 10.8.0.42 167654 username tahmasebi 167654 mac 167654 bytes_out 0 167654 bytes_in 0 167654 station_ip 5.119.58.232 167654 port 402 167654 unique_id port 167654 remote_ip 10.8.1.90 167656 username hashtadani4 167656 mac 167656 bytes_out 0 167656 bytes_in 0 167656 station_ip 37.129.28.115 167656 port 781 167656 unique_id port 167656 remote_ip 10.8.0.182 167658 username tahmasebi 167658 mac 167658 bytes_out 0 167658 bytes_in 0 167658 station_ip 5.119.58.232 167658 port 781 167658 unique_id port 167658 remote_ip 10.8.0.42 167663 username forozandeh1 167663 mac 167663 bytes_out 429948 167663 bytes_in 1945702 167663 station_ip 113.203.77.160 167663 port 768 167663 unique_id port 167663 remote_ip 10.8.0.130 167665 username tahmasebi 167665 mac 167665 bytes_out 0 167665 bytes_in 0 167665 station_ip 5.119.58.232 167665 port 781 167665 unique_id port 167665 remote_ip 10.8.0.42 167666 username houshang 167666 mac 167666 bytes_out 395109 167666 bytes_in 2720953 167666 station_ip 5.120.132.163 167666 port 786 167666 unique_id port 167666 remote_ip 10.8.0.134 167669 username tahmasebi 167669 mac 167669 bytes_out 0 167669 bytes_in 0 167669 station_ip 5.119.58.232 167669 port 768 167669 unique_id port 167669 remote_ip 10.8.0.42 167679 username forozandeh1 167679 mac 167679 bytes_out 0 167679 bytes_in 0 167679 station_ip 83.123.139.1 167679 port 788 167679 unique_id port 167679 remote_ip 10.8.0.130 167681 username tahmasebi 167681 mac 167681 bytes_out 0 167681 bytes_in 0 167681 station_ip 5.119.58.232 167681 port 400 167681 unique_id port 167681 remote_ip 10.8.1.90 167683 username farhad2 167683 mac 167683 bytes_out 0 167683 bytes_in 0 167683 station_ip 5.119.131.165 167683 port 768 167683 unique_id port 167683 remote_ip 10.8.0.190 167685 username tahmasebi 167685 mac 167685 bytes_out 0 167685 bytes_in 0 167685 station_ip 5.119.58.232 167685 port 400 167685 unique_id port 167685 remote_ip 10.8.1.90 167687 username tahmasebi 167687 mac 167687 bytes_out 0 167687 bytes_in 0 167687 station_ip 5.119.58.232 167687 port 400 167687 unique_id port 167687 remote_ip 10.8.1.90 167689 username farhad2 167689 mac 167689 bytes_out 369788 167689 bytes_in 1836607 167689 station_ip 5.119.131.165 167689 port 768 167689 unique_id port 167689 remote_ip 10.8.0.190 167671 bytes_out 0 167671 bytes_in 0 167671 station_ip 83.123.86.93 167671 port 780 167671 unique_id port 167673 username alipour 167673 mac 167673 bytes_out 0 167673 bytes_in 0 167673 station_ip 83.123.124.107 167673 port 786 167673 unique_id port 167673 remote_ip 10.8.0.102 167676 username barzegar 167676 mac 167676 bytes_out 0 167676 bytes_in 0 167676 station_ip 5.119.3.156 167676 port 787 167676 unique_id port 167676 remote_ip 10.8.0.234 167678 username farhad2 167678 mac 167678 bytes_out 0 167678 bytes_in 0 167678 station_ip 5.119.131.165 167678 port 768 167678 unique_id port 167678 remote_ip 10.8.0.190 167686 username houshang 167686 mac 167686 bytes_out 0 167686 bytes_in 0 167686 station_ip 5.120.132.163 167686 port 781 167686 unique_id port 167688 username tahmasebi 167688 mac 167688 bytes_out 0 167688 bytes_in 0 167688 station_ip 5.119.58.232 167688 port 400 167688 unique_id port 167688 remote_ip 10.8.1.90 167691 username hashtadani4 167691 mac 167691 bytes_out 0 167691 bytes_in 0 167691 station_ip 37.129.28.115 167691 port 768 167691 unique_id port 167691 remote_ip 10.8.0.182 167692 username tahmasebi 167692 mac 167692 bytes_out 0 167692 bytes_in 0 167692 station_ip 5.119.58.232 167692 port 400 167692 unique_id port 167692 remote_ip 10.8.1.90 167695 username hashtadani4 167695 mac 167695 bytes_out 0 167695 bytes_in 0 167695 station_ip 37.129.28.115 167695 port 402 167695 unique_id port 167695 remote_ip 10.8.1.142 167696 username hashtadani4 167696 kill_reason Maximum number of concurrent logins reached 167696 mac 167696 bytes_out 0 167696 bytes_in 0 167696 station_ip 37.129.28.115 167696 port 770 167696 unique_id port 167697 username hosseine 167697 mac 167697 bytes_out 0 167697 bytes_in 0 167697 station_ip 83.123.7.50 167697 port 391 167697 unique_id port 167697 remote_ip 10.8.1.190 167704 username farhad2 167704 mac 167704 bytes_out 0 167704 bytes_in 0 167704 station_ip 5.119.131.165 167704 port 770 167704 unique_id port 167704 remote_ip 10.8.0.190 167705 username houshang 167705 mac 167705 bytes_out 2469259 167705 bytes_in 44398189 167705 station_ip 5.120.132.163 167705 port 786 167705 unique_id port 167705 remote_ip 10.8.0.134 167708 username farhad2 167708 mac 167708 bytes_out 0 167708 bytes_in 0 167708 station_ip 5.119.160.91 167708 port 745 167708 unique_id port 167708 remote_ip 10.8.0.190 167712 username barzegar 167712 mac 167712 bytes_out 24610 167712 bytes_in 27978 167712 station_ip 5.119.3.156 167712 port 391 167712 unique_id port 167712 remote_ip 10.8.1.174 167713 username hosseine 167713 mac 167713 bytes_out 0 167713 bytes_in 0 167713 station_ip 83.123.7.50 167713 port 402 167713 unique_id port 167713 remote_ip 10.8.1.190 167719 username farhad2 167719 kill_reason Another user logged on this global unique id 167719 mac 167719 bytes_out 0 167719 bytes_in 0 167719 station_ip 5.120.140.85 167719 port 745 167719 unique_id port 167719 remote_ip 10.8.0.190 167721 username alipour 167721 mac 167721 bytes_out 1389888 167721 bytes_in 7975386 167721 station_ip 83.122.249.139 167721 port 780 167721 unique_id port 167721 remote_ip 10.8.0.102 167726 username houshang 167726 mac 167726 bytes_out 0 167726 bytes_in 0 167726 station_ip 5.120.132.163 167726 port 788 167726 unique_id port 167726 remote_ip 10.8.0.134 167729 username godarzi 167729 mac 167729 bytes_out 0 167729 bytes_in 0 167729 station_ip 5.119.46.231 167680 unique_id port 167680 remote_ip 10.8.1.90 167682 username hashtadani4 167682 mac 167682 bytes_out 0 167682 bytes_in 0 167682 station_ip 37.129.28.115 167682 port 770 167682 unique_id port 167682 remote_ip 10.8.0.182 167684 username houshang 167684 kill_reason Another user logged on this global unique id 167684 mac 167684 bytes_out 0 167684 bytes_in 0 167684 station_ip 5.120.132.163 167684 port 781 167684 unique_id port 167684 remote_ip 10.8.0.134 167690 username hashtadani4 167690 mac 167690 bytes_out 0 167690 bytes_in 0 167690 station_ip 37.129.28.115 167690 port 770 167690 unique_id port 167690 remote_ip 10.8.0.182 167694 username tahmasebi 167694 mac 167694 bytes_out 0 167694 bytes_in 0 167694 station_ip 5.119.58.232 167694 port 400 167694 unique_id port 167694 remote_ip 10.8.1.90 167699 username barzegar 167699 mac 167699 bytes_out 2345 167699 bytes_in 4716 167699 station_ip 5.119.3.156 167699 port 401 167699 unique_id port 167699 remote_ip 10.8.1.174 167701 username hashtadani4 167701 kill_reason Maximum check online fails reached 167701 mac 167701 bytes_out 0 167701 bytes_in 0 167701 station_ip 37.129.28.115 167701 port 400 167701 unique_id port 167703 username arash 167703 mac 167703 bytes_out 3134527 167703 bytes_in 25372264 167703 station_ip 37.27.7.92 167703 port 745 167703 unique_id port 167703 remote_ip 10.8.0.122 167707 username barzegar 167707 mac 167707 bytes_out 0 167707 bytes_in 0 167707 station_ip 5.119.3.156 167707 port 391 167707 unique_id port 167707 remote_ip 10.8.1.174 167709 username pourshad 167709 mac 167709 bytes_out 0 167709 bytes_in 0 167709 station_ip 5.120.26.183 167709 port 401 167709 unique_id port 167709 remote_ip 10.8.1.154 167710 username kalantary 167710 mac 167710 bytes_out 493425 167710 bytes_in 1417420 167710 station_ip 83.123.25.213 167710 port 781 167710 unique_id port 167710 remote_ip 10.8.0.98 167711 username godarzi 167711 mac 167711 bytes_out 0 167711 bytes_in 0 167711 station_ip 5.119.46.231 167711 port 401 167711 unique_id port 167711 remote_ip 10.8.1.230 167714 username shadkam 167714 mac 167714 bytes_out 0 167714 bytes_in 0 167714 station_ip 83.122.224.103 167714 port 781 167714 unique_id port 167714 remote_ip 10.8.0.62 167717 username barzegar 167717 mac 167717 bytes_out 0 167717 bytes_in 0 167717 station_ip 5.119.3.156 167717 port 401 167717 unique_id port 167717 remote_ip 10.8.1.174 167718 username houshang 167718 mac 167718 bytes_out 1684152 167718 bytes_in 24773082 167718 station_ip 5.120.132.163 167718 port 781 167718 unique_id port 167718 remote_ip 10.8.0.134 167720 username shadkam 167720 mac 167720 bytes_out 0 167720 bytes_in 0 167720 station_ip 37.129.162.84 167720 port 786 167720 unique_id port 167720 remote_ip 10.8.0.62 167728 username tahmasebi 167728 mac 167728 bytes_out 0 167728 bytes_in 0 167728 station_ip 5.119.58.232 167728 port 402 167728 unique_id port 167728 remote_ip 10.8.1.90 167732 username malekpoir 167732 mac 167732 bytes_out 0 167732 bytes_in 0 167732 station_ip 5.119.214.100 167732 port 773 167732 unique_id port 167741 username jafari 167741 kill_reason Another user logged on this global unique id 167741 mac 167741 bytes_out 0 167741 bytes_in 0 167741 station_ip 37.137.18.243 167741 port 787 167741 unique_id port 167742 username arash 167742 mac 167742 bytes_out 66803 167742 bytes_in 190786 167742 station_ip 37.27.7.92 167742 port 769 167742 unique_id port 167693 username hashtadani4 167693 mac 167693 bytes_out 0 167693 bytes_in 0 167693 station_ip 37.129.28.115 167693 port 768 167693 unique_id port 167693 remote_ip 10.8.0.182 167698 username hashtadani4 167698 kill_reason Maximum check online fails reached 167698 mac 167698 bytes_out 0 167698 bytes_in 0 167698 station_ip 37.129.28.115 167698 port 768 167698 unique_id port 167700 username pourshad 167700 mac 167700 bytes_out 9186560 167700 bytes_in 21798894 167700 station_ip 5.120.26.183 167700 port 785 167700 unique_id port 167700 remote_ip 10.8.0.18 167702 username tahmasebi 167702 mac 167702 bytes_out 0 167702 bytes_in 0 167702 station_ip 5.119.58.232 167702 port 401 167702 unique_id port 167702 remote_ip 10.8.1.90 167706 username tahmasebi 167706 mac 167706 bytes_out 0 167706 bytes_in 0 167706 station_ip 5.119.58.232 167706 port 403 167706 unique_id port 167706 remote_ip 10.8.1.90 167715 username khademi 167715 mac 167715 bytes_out 0 167715 bytes_in 0 167715 station_ip 37.129.49.105 167715 port 782 167715 unique_id port 167716 username tahmasebi 167716 mac 167716 bytes_out 0 167716 bytes_in 0 167716 station_ip 5.119.58.232 167716 port 403 167716 unique_id port 167716 remote_ip 10.8.1.90 167722 username tahmasebi 167722 mac 167722 bytes_out 21908 167722 bytes_in 18149 167722 station_ip 5.119.58.232 167722 port 788 167722 unique_id port 167722 remote_ip 10.8.0.42 167723 username pourshad 167723 mac 167723 bytes_out 46573 167723 bytes_in 58967 167723 station_ip 5.120.26.183 167723 port 770 167723 unique_id port 167723 remote_ip 10.8.0.18 167724 username tahmasebi 167724 mac 167724 bytes_out 0 167724 bytes_in 0 167724 station_ip 5.119.58.232 167724 port 401 167724 unique_id port 167724 remote_ip 10.8.1.90 167725 username kalantary 167725 mac 167725 bytes_out 562362 167725 bytes_in 7143057 167725 station_ip 83.123.34.129 167725 port 781 167725 unique_id port 167725 remote_ip 10.8.0.98 167727 username pourshad 167727 mac 167727 bytes_out 62117 167727 bytes_in 655439 167727 station_ip 5.120.26.183 167727 port 789 167727 unique_id port 167727 remote_ip 10.8.0.18 167731 username pourshad 167731 mac 167731 bytes_out 9309 167731 bytes_in 17642 167731 station_ip 5.120.26.183 167731 port 402 167731 unique_id port 167731 remote_ip 10.8.1.154 167733 username barzegar 167733 mac 167733 bytes_out 0 167733 bytes_in 0 167733 station_ip 5.119.3.156 167733 port 403 167733 unique_id port 167733 remote_ip 10.8.1.174 167735 username vanila 167735 mac 167735 bytes_out 1900670 167735 bytes_in 10367386 167735 station_ip 37.129.58.38 167735 port 785 167735 unique_id port 167735 remote_ip 10.8.0.178 167737 username pourshad 167737 mac 167737 bytes_out 0 167737 bytes_in 0 167737 station_ip 5.120.26.183 167737 port 402 167737 unique_id port 167737 remote_ip 10.8.1.154 167739 username alirezazadeh 167739 unique_id port 167739 terminate_cause Lost-Carrier 167739 bytes_out 1164412 167739 bytes_in 10425798 167739 station_ip 5.119.57.171 167739 port 15728743 167739 nas_port_type Virtual 167739 remote_ip 5.5.5.169 167743 username pourshad 167743 mac 167743 bytes_out 39086 167743 bytes_in 57170 167743 station_ip 5.120.26.183 167743 port 745 167743 unique_id port 167743 remote_ip 10.8.0.18 167748 username meysam 167748 kill_reason Another user logged on this global unique id 167748 mac 167748 bytes_out 0 167748 bytes_in 0 167748 station_ip 188.158.48.51 167748 port 770 167748 unique_id port 167748 remote_ip 10.8.0.110 167729 port 401 167729 unique_id port 167729 remote_ip 10.8.1.230 167730 username jafari 167730 kill_reason Another user logged on this global unique id 167730 mac 167730 bytes_out 0 167730 bytes_in 0 167730 station_ip 37.137.18.243 167730 port 787 167730 unique_id port 167730 remote_ip 10.8.0.242 167734 username farhad2 167734 mac 167734 bytes_out 0 167734 bytes_in 0 167734 station_ip 5.120.140.85 167734 port 745 167734 unique_id port 167736 username alikomsari 167736 mac 167736 bytes_out 4518101 167736 bytes_in 18397905 167736 station_ip 5.119.76.147 167736 port 769 167736 unique_id port 167736 remote_ip 10.8.0.26 167738 username shadkam 167738 mac 167738 bytes_out 567242 167738 bytes_in 5188189 167738 station_ip 37.129.79.134 167738 port 789 167738 unique_id port 167738 remote_ip 10.8.0.62 167740 username sekonji3 167740 mac 167740 bytes_out 0 167740 bytes_in 0 167740 station_ip 83.123.0.122 167740 port 745 167740 unique_id port 167740 remote_ip 10.8.0.6 167744 username mosi 167744 kill_reason Another user logged on this global unique id 167744 mac 167744 bytes_out 0 167744 bytes_in 0 167744 station_ip 94.24.23.204 167744 port 773 167744 unique_id port 167744 remote_ip 10.8.0.138 167746 username barzegar 167746 mac 167746 bytes_out 0 167746 bytes_in 0 167746 station_ip 5.119.3.156 167746 port 745 167746 unique_id port 167746 remote_ip 10.8.0.234 167747 username tahmasebi 167747 mac 167747 bytes_out 0 167747 bytes_in 0 167747 station_ip 5.119.58.232 167747 port 401 167747 unique_id port 167747 remote_ip 10.8.1.90 167749 username kordestani 167749 mac 167749 bytes_out 0 167749 bytes_in 0 167749 station_ip 151.235.98.216 167749 port 769 167749 unique_id port 167749 remote_ip 10.8.0.74 167752 username shadkam 167752 mac 167752 bytes_out 42364 167752 bytes_in 221088 167752 station_ip 113.203.101.136 167752 port 769 167752 unique_id port 167752 remote_ip 10.8.0.62 167754 username barzegar 167754 mac 167754 bytes_out 29624 167754 bytes_in 36165 167754 station_ip 5.119.3.156 167754 port 745 167754 unique_id port 167754 remote_ip 10.8.0.234 167758 username barzegar 167758 mac 167758 bytes_out 0 167758 bytes_in 0 167758 station_ip 5.119.3.156 167758 port 745 167758 unique_id port 167758 remote_ip 10.8.0.234 167759 username mosi 167759 kill_reason Another user logged on this global unique id 167759 mac 167759 bytes_out 0 167759 bytes_in 0 167759 station_ip 94.24.23.204 167759 port 773 167759 unique_id port 167766 username moradi 167766 mac 167766 bytes_out 0 167766 bytes_in 0 167766 station_ip 37.129.110.109 167766 port 406 167766 unique_id port 167766 remote_ip 10.8.1.202 167771 username jafari 167771 kill_reason Another user logged on this global unique id 167771 mac 167771 bytes_out 0 167771 bytes_in 0 167771 station_ip 37.137.18.243 167771 port 787 167771 unique_id port 167773 username aminvpn 167773 mac 167773 bytes_out 0 167773 bytes_in 0 167773 station_ip 37.129.220.39 167773 port 745 167773 unique_id port 167773 remote_ip 10.8.0.14 167774 username aminvpn 167774 mac 167774 bytes_out 0 167774 bytes_in 0 167774 station_ip 5.119.94.158 167774 port 790 167774 unique_id port 167774 remote_ip 10.8.0.14 167776 username tahmorsi 167776 mac 167776 bytes_out 1740851 167776 bytes_in 23535374 167776 station_ip 86.57.29.184 167776 port 785 167776 unique_id port 167776 remote_ip 10.8.0.210 167777 username barzegar 167777 mac 167777 bytes_out 0 167777 bytes_in 0 167777 station_ip 5.119.3.156 167742 remote_ip 10.8.0.122 167745 username jafari 167745 kill_reason Another user logged on this global unique id 167745 mac 167745 bytes_out 0 167745 bytes_in 0 167745 station_ip 37.137.18.243 167745 port 787 167745 unique_id port 167750 username mostafa_es78 167750 kill_reason Another user logged on this global unique id 167750 mac 167750 bytes_out 0 167750 bytes_in 0 167750 station_ip 83.123.164.53 167750 port 781 167750 unique_id port 167750 remote_ip 10.8.0.194 167751 username tahmasebi 167751 mac 167751 bytes_out 0 167751 bytes_in 0 167751 station_ip 5.119.58.232 167751 port 789 167751 unique_id port 167751 remote_ip 10.8.0.42 167756 username tahmasebi 167756 mac 167756 bytes_out 0 167756 bytes_in 0 167756 station_ip 5.119.58.232 167756 port 402 167756 unique_id port 167756 remote_ip 10.8.1.90 167764 username barzegar 167764 mac 167764 bytes_out 0 167764 bytes_in 0 167764 station_ip 5.119.3.156 167764 port 403 167764 unique_id port 167764 remote_ip 10.8.1.174 167768 username barzegar 167768 kill_reason Maximum check online fails reached 167768 mac 167768 bytes_out 0 167768 bytes_in 0 167768 station_ip 5.119.3.156 167768 port 402 167768 unique_id port 167770 username barzegar 167770 mac 167770 bytes_out 0 167770 bytes_in 0 167770 station_ip 5.119.3.156 167770 port 403 167770 unique_id port 167770 remote_ip 10.8.1.174 167778 username barzegar 167778 mac 167778 bytes_out 0 167778 bytes_in 0 167778 station_ip 5.119.3.156 167778 port 790 167778 unique_id port 167778 remote_ip 10.8.0.234 167780 username pourshad 167780 mac 167780 bytes_out 13584 167780 bytes_in 23645 167780 station_ip 5.119.19.50 167780 port 785 167780 unique_id port 167780 remote_ip 10.8.0.18 167782 username barzegar 167782 mac 167782 bytes_out 0 167782 bytes_in 0 167782 station_ip 5.119.3.156 167782 port 406 167782 unique_id port 167782 remote_ip 10.8.1.174 167783 username pourshad 167783 mac 167783 bytes_out 13610 167783 bytes_in 24142 167783 station_ip 5.119.19.50 167783 port 403 167783 unique_id port 167783 remote_ip 10.8.1.154 167785 username jafari 167785 kill_reason Another user logged on this global unique id 167785 mac 167785 bytes_out 0 167785 bytes_in 0 167785 station_ip 37.137.18.243 167785 port 787 167785 unique_id port 167786 username farhad2 167786 mac 167786 bytes_out 0 167786 bytes_in 0 167786 station_ip 5.119.179.74 167786 port 789 167786 unique_id port 167786 remote_ip 10.8.0.190 167788 username tahmasebi 167788 mac 167788 bytes_out 0 167788 bytes_in 0 167788 station_ip 5.119.58.232 167788 port 773 167788 unique_id port 167788 remote_ip 10.8.0.42 167789 username khalili 167789 kill_reason Relative expiration date has reached 167789 mac 167789 bytes_out 0 167789 bytes_in 0 167789 station_ip 5.120.109.173 167789 port 789 167789 unique_id port 167791 username jafari 167791 kill_reason Another user logged on this global unique id 167791 mac 167791 bytes_out 0 167791 bytes_in 0 167791 station_ip 37.137.18.243 167791 port 787 167791 unique_id port 167795 username jafari 167795 mac 167795 bytes_out 0 167795 bytes_in 0 167795 station_ip 37.137.18.243 167795 port 787 167795 unique_id port 167800 username moradi 167800 kill_reason Another user logged on this global unique id 167800 mac 167800 bytes_out 0 167800 bytes_in 0 167800 station_ip 37.129.110.109 167800 port 769 167800 unique_id port 167801 username tahmasebi 167801 mac 167801 bytes_out 0 167801 bytes_in 0 167801 station_ip 5.119.58.232 167801 port 391 167801 unique_id port 167753 username jafari 167753 kill_reason Another user logged on this global unique id 167753 mac 167753 bytes_out 0 167753 bytes_in 0 167753 station_ip 37.137.18.243 167753 port 787 167753 unique_id port 167755 username tahmasebi 167755 mac 167755 bytes_out 0 167755 bytes_in 0 167755 station_ip 5.119.58.232 167755 port 769 167755 unique_id port 167755 remote_ip 10.8.0.42 167757 username tahmasebi 167757 mac 167757 bytes_out 0 167757 bytes_in 0 167757 station_ip 5.119.58.232 167757 port 402 167757 unique_id port 167757 remote_ip 10.8.1.90 167760 username tahmasebi 167760 mac 167760 bytes_out 2477 167760 bytes_in 4945 167760 station_ip 5.119.58.232 167760 port 402 167760 unique_id port 167760 remote_ip 10.8.1.90 167761 username meysam 167761 kill_reason Another user logged on this global unique id 167761 mac 167761 bytes_out 0 167761 bytes_in 0 167761 station_ip 188.158.48.51 167761 port 770 167761 unique_id port 167762 username kalantary 167762 mac 167762 bytes_out 330929 167762 bytes_in 4562604 167762 station_ip 83.123.13.97 167762 port 745 167762 unique_id port 167762 remote_ip 10.8.0.98 167763 username hosseine 167763 mac 167763 bytes_out 0 167763 bytes_in 0 167763 station_ip 83.123.7.50 167763 port 391 167763 unique_id port 167763 remote_ip 10.8.1.190 167765 username tahmasebi 167765 mac 167765 bytes_out 0 167765 bytes_in 0 167765 station_ip 5.119.58.232 167765 port 403 167765 unique_id port 167765 remote_ip 10.8.1.90 167767 username aminvpn 167767 mac 167767 bytes_out 88524 167767 bytes_in 53353 167767 station_ip 5.119.94.158 167767 port 769 167767 unique_id port 167767 remote_ip 10.8.0.14 167769 username aminvpn 167769 mac 167769 bytes_out 0 167769 bytes_in 0 167769 station_ip 37.129.220.39 167769 port 745 167769 unique_id port 167769 remote_ip 10.8.0.14 167772 username aminvpn 167772 mac 167772 bytes_out 0 167772 bytes_in 0 167772 station_ip 5.119.94.158 167772 port 790 167772 unique_id port 167772 remote_ip 10.8.0.14 167775 username shadkam 167775 mac 167775 bytes_out 0 167775 bytes_in 0 167775 station_ip 37.129.22.2 167775 port 789 167775 unique_id port 167775 remote_ip 10.8.0.62 167779 username sabaghnezhad 167779 mac 167779 bytes_out 0 167779 bytes_in 0 167779 station_ip 83.122.129.24 167779 port 780 167779 unique_id port 167779 remote_ip 10.8.0.186 167790 username khalili 167790 kill_reason Relative expiration date has reached 167790 mac 167790 bytes_out 0 167790 bytes_in 0 167790 station_ip 5.120.109.173 167790 port 789 167790 unique_id port 167792 username godarzi 167792 mac 167792 bytes_out 1002135 167792 bytes_in 4918984 167792 station_ip 5.119.46.231 167792 port 401 167792 unique_id port 167792 remote_ip 10.8.1.230 167799 username barzegar 167799 mac 167799 bytes_out 0 167799 bytes_in 0 167799 station_ip 5.119.3.156 167799 port 773 167799 unique_id port 167799 remote_ip 10.8.0.234 167804 username aminvpn 167804 mac 167804 bytes_out 238860 167804 bytes_in 2022062 167804 station_ip 37.129.220.39 167804 port 745 167804 unique_id port 167804 remote_ip 10.8.0.14 167805 username aminvpn 167805 mac 167805 bytes_out 0 167805 bytes_in 0 167805 station_ip 5.119.94.158 167805 port 787 167805 unique_id port 167805 remote_ip 10.8.0.14 167806 username aminvpn 167806 mac 167806 bytes_out 0 167806 bytes_in 0 167806 station_ip 37.129.220.39 167806 port 745 167806 unique_id port 167806 remote_ip 10.8.0.14 167809 username aminvpn 167809 mac 167777 port 403 167777 unique_id port 167777 remote_ip 10.8.1.174 167781 username tahmasebi 167781 mac 167781 bytes_out 0 167781 bytes_in 0 167781 station_ip 5.119.58.232 167781 port 403 167781 unique_id port 167781 remote_ip 10.8.1.90 167784 username moradi 167784 kill_reason Another user logged on this global unique id 167784 mac 167784 bytes_out 0 167784 bytes_in 0 167784 station_ip 37.129.110.109 167784 port 769 167784 unique_id port 167784 remote_ip 10.8.0.126 167787 username mosi 167787 mac 167787 bytes_out 0 167787 bytes_in 0 167787 station_ip 94.24.23.204 167787 port 773 167787 unique_id port 167793 username tahmasebi 167793 mac 167793 bytes_out 0 167793 bytes_in 0 167793 station_ip 5.119.58.232 167793 port 773 167793 unique_id port 167793 remote_ip 10.8.0.42 167794 username kalantary 167794 mac 167794 bytes_out 1883461 167794 bytes_in 27627891 167794 station_ip 83.123.13.97 167794 port 780 167794 unique_id port 167794 remote_ip 10.8.0.98 167796 username shadkam 167796 mac 167796 bytes_out 0 167796 bytes_in 0 167796 station_ip 83.122.130.152 167796 port 401 167796 unique_id port 167796 remote_ip 10.8.1.218 167797 username tahmasebi 167797 mac 167797 bytes_out 0 167797 bytes_in 0 167797 station_ip 5.119.58.232 167797 port 401 167797 unique_id port 167797 remote_ip 10.8.1.90 167798 username hosseine 167798 mac 167798 bytes_out 0 167798 bytes_in 0 167798 station_ip 83.123.7.50 167798 port 391 167798 unique_id port 167798 remote_ip 10.8.1.190 167803 username tahmasebi 167803 mac 167803 bytes_out 0 167803 bytes_in 0 167803 station_ip 5.119.58.232 167803 port 391 167803 unique_id port 167803 remote_ip 10.8.1.90 167807 username meysam 167807 mac 167807 bytes_out 0 167807 bytes_in 0 167807 station_ip 188.158.48.51 167807 port 770 167807 unique_id port 167810 username aminvpn 167810 mac 167810 bytes_out 0 167810 bytes_in 0 167810 station_ip 37.129.220.39 167810 port 770 167810 unique_id port 167810 remote_ip 10.8.0.14 167811 username godarzi 167811 mac 167811 bytes_out 0 167811 bytes_in 0 167811 station_ip 5.119.46.231 167811 port 401 167811 unique_id port 167811 remote_ip 10.8.1.230 167812 username barzegar 167812 mac 167812 bytes_out 0 167812 bytes_in 0 167812 station_ip 5.119.3.156 167812 port 391 167812 unique_id port 167812 remote_ip 10.8.1.174 167816 username aminvpn 167816 mac 167816 bytes_out 0 167816 bytes_in 0 167816 station_ip 37.129.220.39 167816 port 789 167816 unique_id port 167816 remote_ip 10.8.0.14 167819 username mohammadjavad 167819 mac 167819 bytes_out 614612 167819 bytes_in 5209844 167819 station_ip 83.122.206.238 167819 port 770 167819 unique_id port 167819 remote_ip 10.8.0.142 167823 username aminvpn 167823 mac 167823 bytes_out 0 167823 bytes_in 0 167823 station_ip 37.129.220.39 167823 port 770 167823 unique_id port 167823 remote_ip 10.8.0.14 167824 username aminvpn 167824 mac 167824 bytes_out 0 167824 bytes_in 0 167824 station_ip 5.119.94.158 167824 port 785 167824 unique_id port 167824 remote_ip 10.8.0.14 167826 username mohammadjavad 167826 mac 167826 bytes_out 45968 167826 bytes_in 62268 167826 station_ip 83.122.138.157 167826 port 745 167826 unique_id port 167826 remote_ip 10.8.0.142 167831 username aminvpn 167831 mac 167831 bytes_out 0 167831 bytes_in 0 167831 station_ip 37.129.220.39 167831 port 745 167831 unique_id port 167831 remote_ip 10.8.0.14 167834 username alihosseini1 167801 remote_ip 10.8.1.90 167802 username tahmasebi 167802 mac 167802 bytes_out 0 167802 bytes_in 0 167802 station_ip 5.119.58.232 167802 port 391 167802 unique_id port 167802 remote_ip 10.8.1.90 167808 username pourshad 167808 mac 167808 bytes_out 74540 167808 bytes_in 97922 167808 station_ip 5.119.19.50 167808 port 785 167808 unique_id port 167808 remote_ip 10.8.0.18 167814 username aminvpn 167814 mac 167814 bytes_out 6676 167814 bytes_in 9383 167814 station_ip 5.119.94.158 167814 port 787 167814 unique_id port 167814 remote_ip 10.8.0.14 167818 username moradi 167818 kill_reason Another user logged on this global unique id 167818 mac 167818 bytes_out 0 167818 bytes_in 0 167818 station_ip 37.129.110.109 167818 port 769 167818 unique_id port 167821 username aminvpn 167821 mac 167821 bytes_out 5834 167821 bytes_in 9143 167821 station_ip 5.119.94.158 167821 port 785 167821 unique_id port 167821 remote_ip 10.8.0.14 167827 username aminvpn 167827 mac 167827 bytes_out 5170 167827 bytes_in 8223 167827 station_ip 5.119.94.158 167827 port 785 167827 unique_id port 167827 remote_ip 10.8.0.14 167828 username aminvpn 167828 mac 167828 bytes_out 0 167828 bytes_in 0 167828 station_ip 37.129.220.39 167828 port 745 167828 unique_id port 167828 remote_ip 10.8.0.14 167829 username aminvpn 167829 mac 167829 bytes_out 0 167829 bytes_in 0 167829 station_ip 5.119.94.158 167829 port 770 167829 unique_id port 167829 remote_ip 10.8.0.14 167833 username vanila 167833 mac 167833 bytes_out 0 167833 bytes_in 0 167833 station_ip 37.129.53.46 167833 port 745 167833 unique_id port 167833 remote_ip 10.8.0.178 167837 username tahmasebi 167837 mac 167837 bytes_out 0 167837 bytes_in 0 167837 station_ip 5.119.58.232 167837 port 781 167837 unique_id port 167837 remote_ip 10.8.0.42 167840 username aminvpn 167840 mac 167840 bytes_out 0 167840 bytes_in 0 167840 station_ip 37.129.220.39 167840 port 781 167840 unique_id port 167840 remote_ip 10.8.0.14 167842 username hosseine 167842 mac 167842 bytes_out 1378366 167842 bytes_in 7948914 167842 station_ip 113.203.89.54 167842 port 773 167842 unique_id port 167842 remote_ip 10.8.0.238 167843 username alihosseini1 167843 mac 167843 bytes_out 0 167843 bytes_in 0 167843 station_ip 5.119.2.75 167843 port 780 167843 unique_id port 167844 username aminvpn 167844 mac 167844 bytes_out 0 167844 bytes_in 0 167844 station_ip 37.129.220.39 167844 port 781 167844 unique_id port 167844 remote_ip 10.8.0.14 167848 username alihosseini1 167848 mac 167848 bytes_out 0 167848 bytes_in 0 167848 station_ip 5.119.2.75 167848 port 773 167848 unique_id port 167848 remote_ip 10.8.0.22 167850 username aminvpn 167850 mac 167850 bytes_out 0 167850 bytes_in 0 167850 station_ip 37.129.220.39 167850 port 773 167850 unique_id port 167850 remote_ip 10.8.0.14 167851 username alihosseini1 167851 mac 167851 bytes_out 4093 167851 bytes_in 6032 167851 station_ip 5.119.2.75 167851 port 787 167851 unique_id port 167851 remote_ip 10.8.0.22 167855 username saeed9658 167855 mac 167855 bytes_out 0 167855 bytes_in 0 167855 station_ip 5.119.176.146 167855 port 391 167855 unique_id port 167855 remote_ip 10.8.1.210 167856 username aminvpn 167856 mac 167856 bytes_out 5443 167856 bytes_in 7741 167856 station_ip 5.119.94.158 167856 port 780 167856 unique_id port 167856 remote_ip 10.8.0.14 167858 username mohammadjavad 167858 mac 167858 bytes_out 9474 167809 bytes_out 4391 167809 bytes_in 6364 167809 station_ip 5.119.94.158 167809 port 787 167809 unique_id port 167809 remote_ip 10.8.0.14 167813 username malekpoir 167813 kill_reason Another user logged on this global unique id 167813 mac 167813 bytes_out 0 167813 bytes_in 0 167813 station_ip 5.119.214.100 167813 port 788 167813 unique_id port 167813 remote_ip 10.8.0.58 167815 username pourshad 167815 mac 167815 bytes_out 12067 167815 bytes_in 19485 167815 station_ip 5.119.19.50 167815 port 785 167815 unique_id port 167815 remote_ip 10.8.0.18 167817 username tahmasebi 167817 mac 167817 bytes_out 38739 167817 bytes_in 18214 167817 station_ip 5.119.58.232 167817 port 745 167817 unique_id port 167817 remote_ip 10.8.0.42 167820 username alihosseini1 167820 kill_reason Another user logged on this global unique id 167820 mac 167820 bytes_out 0 167820 bytes_in 0 167820 station_ip 5.119.2.75 167820 port 780 167820 unique_id port 167820 remote_ip 10.8.0.22 167822 username tahmasebi 167822 mac 167822 bytes_out 0 167822 bytes_in 0 167822 station_ip 5.119.58.232 167822 port 391 167822 unique_id port 167822 remote_ip 10.8.1.90 167825 username aminvpn 167825 mac 167825 bytes_out 0 167825 bytes_in 0 167825 station_ip 37.129.220.39 167825 port 770 167825 unique_id port 167825 remote_ip 10.8.0.14 167830 username barzegar 167830 mac 167830 bytes_out 0 167830 bytes_in 0 167830 station_ip 5.119.3.156 167830 port 391 167830 unique_id port 167830 remote_ip 10.8.1.174 167832 username aminvpn 167832 mac 167832 bytes_out 0 167832 bytes_in 0 167832 station_ip 5.119.94.158 167832 port 770 167832 unique_id port 167832 remote_ip 10.8.0.14 167835 username aminvpn 167835 mac 167835 bytes_out 0 167835 bytes_in 0 167835 station_ip 37.129.220.39 167835 port 785 167835 unique_id port 167835 remote_ip 10.8.0.14 167838 username aminvpn 167838 mac 167838 bytes_out 0 167838 bytes_in 0 167838 station_ip 5.119.94.158 167838 port 770 167838 unique_id port 167838 remote_ip 10.8.0.14 167841 username aminvpn 167841 mac 167841 bytes_out 4682 167841 bytes_in 6812 167841 station_ip 5.119.94.158 167841 port 745 167841 unique_id port 167841 remote_ip 10.8.0.14 167846 username moradi 167846 kill_reason Another user logged on this global unique id 167846 mac 167846 bytes_out 0 167846 bytes_in 0 167846 station_ip 37.129.110.109 167846 port 769 167846 unique_id port 167852 username barzegar 167852 mac 167852 bytes_out 3352 167852 bytes_in 4476 167852 station_ip 5.119.3.156 167852 port 773 167852 unique_id port 167852 remote_ip 10.8.0.234 167853 username alihosseini1 167853 mac 167853 bytes_out 0 167853 bytes_in 0 167853 station_ip 5.119.2.75 167853 port 789 167853 unique_id port 167853 remote_ip 10.8.0.22 167860 username moradi 167860 kill_reason Another user logged on this global unique id 167860 mac 167860 bytes_out 0 167860 bytes_in 0 167860 station_ip 37.129.110.109 167860 port 769 167860 unique_id port 167861 username aminvpn 167861 mac 167861 bytes_out 0 167861 bytes_in 0 167861 station_ip 5.119.94.158 167861 port 780 167861 unique_id port 167861 remote_ip 10.8.0.14 167862 username aminvpn 167862 mac 167862 bytes_out 0 167862 bytes_in 0 167862 station_ip 37.129.220.39 167862 port 787 167862 unique_id port 167862 remote_ip 10.8.0.14 167866 username moradi 167866 mac 167866 bytes_out 0 167866 bytes_in 0 167866 station_ip 37.129.110.109 167866 port 769 167866 unique_id port 167870 username godarzi 167870 mac 167870 bytes_out 0 167834 kill_reason Another user logged on this global unique id 167834 mac 167834 bytes_out 0 167834 bytes_in 0 167834 station_ip 5.119.2.75 167834 port 780 167834 unique_id port 167836 username mostafa_es78 167836 mac 167836 bytes_out 0 167836 bytes_in 0 167836 station_ip 83.123.164.53 167836 port 781 167836 unique_id port 167839 username vanila 167839 mac 167839 bytes_out 75087 167839 bytes_in 114171 167839 station_ip 37.129.53.46 167839 port 745 167839 unique_id port 167839 remote_ip 10.8.0.178 167845 username tahmasebi 167845 mac 167845 bytes_out 0 167845 bytes_in 0 167845 station_ip 5.119.58.232 167845 port 773 167845 unique_id port 167845 remote_ip 10.8.0.42 167847 username alihosseini1 167847 mac 167847 bytes_out 0 167847 bytes_in 0 167847 station_ip 5.119.2.75 167847 port 773 167847 unique_id port 167847 remote_ip 10.8.0.22 167849 username aminvpn 167849 mac 167849 bytes_out 5289 167849 bytes_in 7174 167849 station_ip 5.119.94.158 167849 port 780 167849 unique_id port 167849 remote_ip 10.8.0.14 167854 username pourshad 167854 mac 167854 bytes_out 73585 167854 bytes_in 518070 167854 station_ip 5.119.19.50 167854 port 781 167854 unique_id port 167854 remote_ip 10.8.0.18 167857 username pourshad 167857 mac 167857 bytes_out 0 167857 bytes_in 0 167857 station_ip 5.119.19.50 167857 port 401 167857 unique_id port 167857 remote_ip 10.8.1.154 167865 username alihosseini1 167865 mac 167865 bytes_out 0 167865 bytes_in 0 167865 station_ip 5.119.2.75 167865 port 403 167865 unique_id port 167865 remote_ip 10.8.1.106 167867 username aminvpn 167867 mac 167867 bytes_out 0 167867 bytes_in 0 167867 station_ip 37.129.220.39 167867 port 787 167867 unique_id port 167867 remote_ip 10.8.0.14 167868 username khalili 167868 kill_reason Relative expiration date has reached 167868 mac 167868 bytes_out 0 167868 bytes_in 0 167868 station_ip 5.120.109.173 167868 port 403 167868 unique_id port 167871 username farhad2 167871 mac 167871 bytes_out 345534 167871 bytes_in 1725773 167871 station_ip 5.120.90.187 167871 port 780 167871 unique_id port 167871 remote_ip 10.8.0.190 167875 username aminvpn 167875 mac 167875 bytes_out 223023 167875 bytes_in 6731571 167875 station_ip 5.119.94.158 167875 port 780 167875 unique_id port 167875 remote_ip 10.8.0.14 167878 username hatami 167878 mac 167878 bytes_out 234531 167878 bytes_in 1700546 167878 station_ip 151.235.96.204 167878 port 773 167878 unique_id port 167878 remote_ip 10.8.0.106 167881 username vanila 167881 mac 167881 bytes_out 408096 167881 bytes_in 2982755 167881 station_ip 37.129.118.54 167881 port 790 167881 unique_id port 167881 remote_ip 10.8.0.178 167885 username moradi 167885 kill_reason Another user logged on this global unique id 167885 mac 167885 bytes_out 0 167885 bytes_in 0 167885 station_ip 37.129.110.109 167885 port 769 167885 unique_id port 167885 remote_ip 10.8.0.126 167894 username aminvpn 167894 mac 167894 bytes_out 0 167894 bytes_in 0 167894 station_ip 5.119.94.158 167894 port 789 167894 unique_id port 167894 remote_ip 10.8.0.14 167896 username barzegar 167896 mac 167896 bytes_out 0 167896 bytes_in 0 167896 station_ip 5.119.3.156 167896 port 789 167896 unique_id port 167896 remote_ip 10.8.0.234 167898 username farhad2 167898 mac 167898 bytes_out 0 167898 bytes_in 0 167898 station_ip 5.120.90.187 167898 port 401 167898 unique_id port 167898 remote_ip 10.8.1.222 167910 username kamali2 167910 mac 167858 bytes_in 10021 167858 station_ip 83.122.184.94 167858 port 787 167858 unique_id port 167858 remote_ip 10.8.0.142 167859 username aminvpn 167859 mac 167859 bytes_out 0 167859 bytes_in 0 167859 station_ip 37.129.220.39 167859 port 789 167859 unique_id port 167859 remote_ip 10.8.0.14 167863 username aminvpn 167863 mac 167863 bytes_out 0 167863 bytes_in 0 167863 station_ip 5.119.94.158 167863 port 780 167863 unique_id port 167863 remote_ip 10.8.0.14 167864 username tahmasebi 167864 mac 167864 bytes_out 0 167864 bytes_in 0 167864 station_ip 5.119.58.232 167864 port 406 167864 unique_id port 167864 remote_ip 10.8.1.90 167869 username aminvpn 167869 mac 167869 bytes_out 3759 167869 bytes_in 5716 167869 station_ip 5.119.94.158 167869 port 769 167869 unique_id port 167869 remote_ip 10.8.0.14 167872 username aminvpn 167872 mac 167872 bytes_out 0 167872 bytes_in 0 167872 station_ip 37.129.220.39 167872 port 789 167872 unique_id port 167872 remote_ip 10.8.0.14 167877 username pourshad 167877 mac 167877 bytes_out 13546 167877 bytes_in 29770 167877 station_ip 5.119.19.50 167877 port 391 167877 unique_id port 167877 remote_ip 10.8.1.154 167882 username tahmasebi 167882 mac 167882 bytes_out 4441 167882 bytes_in 6907 167882 station_ip 5.119.58.232 167882 port 787 167882 unique_id port 167882 remote_ip 10.8.0.42 167883 username aminvpn 167883 mac 167883 bytes_out 0 167883 bytes_in 0 167883 station_ip 37.129.220.39 167883 port 745 167883 unique_id port 167883 remote_ip 10.8.0.14 167884 username aminvpn 167884 mac 167884 bytes_out 261813 167884 bytes_in 3020002 167884 station_ip 5.119.94.158 167884 port 773 167884 unique_id port 167884 remote_ip 10.8.0.14 167887 username aminvpn 167887 mac 167887 bytes_out 0 167887 bytes_in 0 167887 station_ip 5.119.94.158 167887 port 787 167887 unique_id port 167887 remote_ip 10.8.0.14 167888 username aminvpn 167888 mac 167888 bytes_out 0 167888 bytes_in 0 167888 station_ip 37.129.220.39 167888 port 745 167888 unique_id port 167888 remote_ip 10.8.0.14 167890 username pourshad 167890 mac 167890 bytes_out 0 167890 bytes_in 0 167890 station_ip 5.119.19.50 167890 port 391 167890 unique_id port 167890 remote_ip 10.8.1.154 167891 username aminvpn 167891 mac 167891 bytes_out 0 167891 bytes_in 0 167891 station_ip 37.129.220.39 167891 port 745 167891 unique_id port 167891 remote_ip 10.8.0.14 167893 username aminvpn 167893 mac 167893 bytes_out 0 167893 bytes_in 0 167893 station_ip 37.129.220.39 167893 port 745 167893 unique_id port 167893 remote_ip 10.8.0.14 167895 username saeed9658 167895 mac 167895 bytes_out 262745 167895 bytes_in 1482196 167895 station_ip 5.119.176.146 167895 port 781 167895 unique_id port 167895 remote_ip 10.8.0.166 167897 username mohammadjavad 167897 mac 167897 bytes_out 12434 167897 bytes_in 12628 167897 station_ip 83.122.60.226 167897 port 773 167897 unique_id port 167897 remote_ip 10.8.0.142 167901 username moradi 167901 mac 167901 bytes_out 0 167901 bytes_in 0 167901 station_ip 37.129.110.109 167901 port 769 167901 unique_id port 167902 username pourshad 167902 mac 167902 bytes_out 0 167902 bytes_in 0 167902 station_ip 5.119.19.50 167902 port 401 167902 unique_id port 167902 remote_ip 10.8.1.154 167903 username khademi 167903 kill_reason Another user logged on this global unique id 167903 mac 167903 bytes_out 0 167903 bytes_in 0 167903 station_ip 37.129.111.84 167903 port 782 167870 bytes_in 0 167870 station_ip 5.119.46.231 167870 port 401 167870 unique_id port 167870 remote_ip 10.8.1.230 167873 username tahmasebi 167873 mac 167873 bytes_out 0 167873 bytes_in 0 167873 station_ip 5.119.58.232 167873 port 787 167873 unique_id port 167873 remote_ip 10.8.0.42 167874 username hosseine 167874 mac 167874 bytes_out 0 167874 bytes_in 0 167874 station_ip 113.203.89.54 167874 port 745 167874 unique_id port 167874 remote_ip 10.8.0.238 167876 username barzegar 167876 mac 167876 bytes_out 0 167876 bytes_in 0 167876 station_ip 5.119.3.156 167876 port 789 167876 unique_id port 167876 remote_ip 10.8.0.234 167879 username hatami 167879 mac 167879 bytes_out 0 167879 bytes_in 0 167879 station_ip 151.235.96.204 167879 port 391 167879 unique_id port 167879 remote_ip 10.8.1.134 167880 username shadkam 167880 mac 167880 bytes_out 0 167880 bytes_in 0 167880 station_ip 37.129.25.106 167880 port 391 167880 unique_id port 167880 remote_ip 10.8.1.218 167886 username aminvpn 167886 mac 167886 bytes_out 0 167886 bytes_in 0 167886 station_ip 37.129.220.39 167886 port 745 167886 unique_id port 167886 remote_ip 10.8.0.14 167889 username aminvpn 167889 mac 167889 bytes_out 0 167889 bytes_in 0 167889 station_ip 5.119.94.158 167889 port 787 167889 unique_id port 167889 remote_ip 10.8.0.14 167892 username aminvpn 167892 mac 167892 bytes_out 0 167892 bytes_in 0 167892 station_ip 5.119.94.158 167892 port 787 167892 unique_id port 167892 remote_ip 10.8.0.14 167899 username tahmasebi 167899 mac 167899 bytes_out 24364 167899 bytes_in 53196 167899 station_ip 5.119.58.232 167899 port 406 167899 unique_id port 167899 remote_ip 10.8.1.90 167900 username tahmasebi 167900 mac 167900 bytes_out 0 167900 bytes_in 0 167900 station_ip 5.119.58.232 167900 port 773 167900 unique_id port 167900 remote_ip 10.8.0.42 167905 username aminvpn 167905 mac 167905 bytes_out 0 167905 bytes_in 0 167905 station_ip 37.129.220.39 167905 port 745 167905 unique_id port 167905 remote_ip 10.8.0.14 167907 username godarzi 167907 mac 167907 bytes_out 324238 167907 bytes_in 1685633 167907 station_ip 5.119.46.231 167907 port 403 167907 unique_id port 167907 remote_ip 10.8.1.230 167909 username barzegar 167909 mac 167909 bytes_out 872514 167909 bytes_in 92770 167909 station_ip 5.119.3.156 167909 port 773 167909 unique_id port 167909 remote_ip 10.8.0.234 167911 username tahmasebi 167911 mac 167911 bytes_out 0 167911 bytes_in 0 167911 station_ip 5.119.58.232 167911 port 403 167911 unique_id port 167911 remote_ip 10.8.1.90 167913 username pourshad 167913 mac 167913 bytes_out 0 167913 bytes_in 0 167913 station_ip 5.119.19.50 167913 port 401 167913 unique_id port 167913 remote_ip 10.8.1.154 167916 username barzegar 167916 mac 167916 bytes_out 0 167916 bytes_in 0 167916 station_ip 5.119.3.156 167916 port 401 167916 unique_id port 167916 remote_ip 10.8.1.174 167918 username pourshad 167918 mac 167918 bytes_out 0 167918 bytes_in 0 167918 station_ip 5.119.19.50 167918 port 391 167918 unique_id port 167918 remote_ip 10.8.1.154 167919 username farhad2 167919 mac 167919 bytes_out 243932 167919 bytes_in 1276947 167919 station_ip 5.120.90.187 167919 port 769 167919 unique_id port 167919 remote_ip 10.8.0.190 167922 username Mahin 167922 kill_reason Relative expiration date has reached 167922 mac 167922 bytes_out 0 167922 bytes_in 0 167922 station_ip 5.119.94.172 167903 unique_id port 167903 remote_ip 10.8.0.10 167904 username kamali2 167904 mac 167904 bytes_out 230744 167904 bytes_in 720725 167904 station_ip 5.120.180.77 167904 port 770 167904 unique_id port 167904 remote_ip 10.8.0.158 167906 username aminvpn 167906 mac 167906 bytes_out 0 167906 bytes_in 0 167906 station_ip 5.119.94.158 167906 port 781 167906 unique_id port 167906 remote_ip 10.8.0.14 167908 username rajaei 167908 mac 167908 bytes_out 2445968 167908 bytes_in 43846462 167908 station_ip 89.32.105.174 167908 port 769 167908 unique_id port 167908 remote_ip 10.8.0.34 167915 username pourshad 167915 mac 167915 bytes_out 0 167915 bytes_in 0 167915 station_ip 5.119.19.50 167915 port 391 167915 unique_id port 167915 remote_ip 10.8.1.154 167920 username shadkam 167920 mac 167920 bytes_out 0 167920 bytes_in 0 167920 station_ip 113.203.47.132 167920 port 781 167920 unique_id port 167920 remote_ip 10.8.0.62 167921 username ahmadi1 167921 mac 167921 bytes_out 88163 167921 bytes_in 494433 167921 station_ip 113.203.97.45 167921 port 770 167921 unique_id port 167921 remote_ip 10.8.0.250 167931 username aminvpn 167931 mac 167931 bytes_out 16971 167931 bytes_in 83625 167931 station_ip 5.120.115.223 167931 port 770 167931 unique_id port 167931 remote_ip 10.8.0.14 167933 username alihosseini1 167933 mac 167933 bytes_out 0 167933 bytes_in 0 167933 station_ip 5.120.88.174 167933 port 391 167933 unique_id port 167933 remote_ip 10.8.1.106 167935 username khademi 167935 mac 167935 bytes_out 21047 167935 bytes_in 25812 167935 station_ip 37.129.111.84 167935 port 789 167935 unique_id port 167935 remote_ip 10.8.0.10 167936 username shadkam 167936 mac 167936 bytes_out 774144 167936 bytes_in 6628085 167936 station_ip 37.129.83.83 167936 port 782 167936 unique_id port 167936 remote_ip 10.8.0.62 167937 username mahdiyehalizadeh 167937 mac 167937 bytes_out 290033 167937 bytes_in 1143286 167937 station_ip 5.120.50.38 167937 port 745 167937 unique_id port 167937 remote_ip 10.8.0.82 167939 username barzegar 167939 mac 167939 bytes_out 0 167939 bytes_in 0 167939 station_ip 5.119.3.156 167939 port 745 167939 unique_id port 167939 remote_ip 10.8.0.234 167940 username barzegar 167940 mac 167940 bytes_out 0 167940 bytes_in 0 167940 station_ip 5.119.3.156 167940 port 745 167940 unique_id port 167940 remote_ip 10.8.0.234 167945 username mirzaei 167945 mac 167945 bytes_out 0 167945 bytes_in 0 167945 station_ip 5.120.155.112 167945 port 762 167945 unique_id port 167946 username sabaghnezhad 167946 mac 167946 bytes_out 2188846 167946 bytes_in 43471182 167946 station_ip 83.122.112.36 167946 port 789 167946 unique_id port 167946 remote_ip 10.8.0.186 167947 username sedighe 167947 mac 167947 bytes_out 180289 167947 bytes_in 578461 167947 station_ip 83.122.195.83 167947 port 745 167947 unique_id port 167947 remote_ip 10.8.0.146 167949 username houshang 167949 kill_reason Another user logged on this global unique id 167949 mac 167949 bytes_out 0 167949 bytes_in 0 167949 station_ip 5.120.132.163 167949 port 770 167949 unique_id port 167949 remote_ip 10.8.0.134 167950 username barzegar 167950 mac 167950 bytes_out 0 167950 bytes_in 0 167950 station_ip 5.119.3.156 167950 port 406 167950 unique_id port 167950 remote_ip 10.8.1.174 167954 username khalili 167954 kill_reason Relative expiration date has reached 167954 mac 167954 bytes_out 0 167954 bytes_in 0 167954 station_ip 5.120.109.173 167954 port 789 167910 bytes_out 42410 167910 bytes_in 161191 167910 station_ip 5.120.180.77 167910 port 770 167910 unique_id port 167910 remote_ip 10.8.0.158 167912 username farhad2 167912 mac 167912 bytes_out 0 167912 bytes_in 0 167912 station_ip 5.120.90.187 167912 port 391 167912 unique_id port 167912 remote_ip 10.8.1.222 167914 username khademi 167914 mac 167914 bytes_out 0 167914 bytes_in 0 167914 station_ip 37.129.111.84 167914 port 782 167914 unique_id port 167917 username tahmasebi 167917 mac 167917 bytes_out 0 167917 bytes_in 0 167917 station_ip 5.119.58.232 167917 port 782 167917 unique_id port 167917 remote_ip 10.8.0.42 167923 username aminvpn 167923 mac 167923 bytes_out 0 167923 bytes_in 0 167923 station_ip 37.129.220.39 167923 port 745 167923 unique_id port 167923 remote_ip 10.8.0.14 167926 username aminvpn 167926 mac 167926 bytes_out 0 167926 bytes_in 0 167926 station_ip 5.120.115.223 167926 port 770 167926 unique_id port 167926 remote_ip 10.8.0.14 167927 username aminvpn 167927 mac 167927 bytes_out 0 167927 bytes_in 0 167927 station_ip 37.129.220.39 167927 port 781 167927 unique_id port 167927 remote_ip 10.8.0.14 167929 username houshang 167929 mac 167929 bytes_out 471441 167929 bytes_in 3838422 167929 station_ip 5.120.132.163 167929 port 782 167929 unique_id port 167929 remote_ip 10.8.0.134 167932 username barzegar 167932 mac 167932 bytes_out 0 167932 bytes_in 0 167932 station_ip 5.119.3.156 167932 port 781 167932 unique_id port 167932 remote_ip 10.8.0.234 167934 username barzegar 167934 kill_reason Maximum check online fails reached 167934 mac 167934 bytes_out 0 167934 bytes_in 0 167934 station_ip 5.119.3.156 167934 port 401 167934 unique_id port 167941 username alihosseini1 167941 mac 167941 bytes_out 0 167941 bytes_in 0 167941 station_ip 5.120.88.174 167941 port 782 167941 unique_id port 167941 remote_ip 10.8.0.22 167942 username barzegar 167942 mac 167942 bytes_out 2479 167942 bytes_in 4604 167942 station_ip 5.119.3.156 167942 port 782 167942 unique_id port 167942 remote_ip 10.8.0.234 167943 username barzegar 167943 mac 167943 bytes_out 0 167943 bytes_in 0 167943 station_ip 5.119.3.156 167943 port 792 167943 unique_id port 167943 remote_ip 10.8.0.234 167948 username barzegar 167948 mac 167948 bytes_out 0 167948 bytes_in 0 167948 station_ip 5.119.3.156 167948 port 406 167948 unique_id port 167948 remote_ip 10.8.1.174 167951 username farhad2 167951 mac 167951 bytes_out 440343 167951 bytes_in 4521536 167951 station_ip 5.120.7.70 167951 port 762 167951 unique_id port 167951 remote_ip 10.8.0.190 167952 username barzegar 167952 mac 167952 bytes_out 0 167952 bytes_in 0 167952 station_ip 5.119.3.156 167952 port 406 167952 unique_id port 167952 remote_ip 10.8.1.174 167953 username khalili 167953 kill_reason Relative expiration date has reached 167953 mac 167953 bytes_out 0 167953 bytes_in 0 167953 station_ip 5.120.109.173 167953 port 762 167953 unique_id port 167958 username barzegar 167958 mac 167958 bytes_out 0 167958 bytes_in 0 167958 station_ip 5.119.3.156 167958 port 407 167958 unique_id port 167958 remote_ip 10.8.1.174 167959 username khademi 167959 mac 167959 bytes_out 0 167959 bytes_in 0 167959 station_ip 37.129.111.84 167959 port 781 167959 unique_id port 167959 remote_ip 10.8.0.10 167961 username kalantary 167961 mac 167961 bytes_out 0 167961 bytes_in 0 167961 station_ip 83.123.61.29 167961 port 762 167922 port 406 167922 unique_id port 167924 username barzegar 167924 mac 167924 bytes_out 0 167924 bytes_in 0 167924 station_ip 5.119.3.156 167924 port 406 167924 unique_id port 167924 remote_ip 10.8.1.174 167925 username godarzi 167925 mac 167925 bytes_out 0 167925 bytes_in 0 167925 station_ip 5.119.46.231 167925 port 401 167925 unique_id port 167925 remote_ip 10.8.1.230 167928 username pourshad 167928 mac 167928 bytes_out 0 167928 bytes_in 0 167928 station_ip 5.119.19.50 167928 port 391 167928 unique_id port 167928 remote_ip 10.8.1.154 167930 username khademi 167930 mac 167930 bytes_out 277674 167930 bytes_in 2918509 167930 station_ip 37.129.111.84 167930 port 773 167930 unique_id port 167930 remote_ip 10.8.0.10 167938 username barzegar 167938 mac 167938 bytes_out 0 167938 bytes_in 0 167938 station_ip 5.119.3.156 167938 port 391 167938 unique_id port 167938 remote_ip 10.8.1.174 167944 username farhad2 167944 mac 167944 bytes_out 3599683 167944 bytes_in 32962678 167944 station_ip 5.120.7.70 167944 port 769 167944 unique_id port 167944 remote_ip 10.8.0.190 167955 username alihosseini1 167955 mac 167955 bytes_out 0 167955 bytes_in 0 167955 station_ip 5.120.88.174 167955 port 762 167955 unique_id port 167955 remote_ip 10.8.0.22 167957 username pourshad 167957 mac 167957 bytes_out 29010 167957 bytes_in 139407 167957 station_ip 5.119.19.50 167957 port 406 167957 unique_id port 167957 remote_ip 10.8.1.154 167960 username barzegar 167960 mac 167960 bytes_out 0 167960 bytes_in 0 167960 station_ip 5.119.3.156 167960 port 792 167960 unique_id port 167960 remote_ip 10.8.0.234 167962 username shadkam 167962 mac 167962 bytes_out 0 167962 bytes_in 0 167962 station_ip 83.122.230.146 167962 port 781 167962 unique_id port 167962 remote_ip 10.8.0.62 167964 username khademi 167964 mac 167964 bytes_out 0 167964 bytes_in 0 167964 station_ip 83.122.127.46 167964 port 789 167964 unique_id port 167964 remote_ip 10.8.0.10 167970 username farhad2 167970 mac 167970 bytes_out 299340 167970 bytes_in 1821537 167970 station_ip 5.120.7.70 167970 port 403 167970 unique_id port 167970 remote_ip 10.8.1.222 167974 username pourshad 167974 mac 167974 bytes_out 51998 167974 bytes_in 89535 167974 station_ip 5.119.19.50 167974 port 406 167974 unique_id port 167974 remote_ip 10.8.1.154 167976 username barzegar 167976 mac 167976 bytes_out 0 167976 bytes_in 0 167976 station_ip 5.119.3.156 167976 port 745 167976 unique_id port 167976 remote_ip 10.8.0.234 167977 username shadkam 167977 mac 167977 bytes_out 0 167977 bytes_in 0 167977 station_ip 83.123.193.140 167977 port 745 167977 unique_id port 167977 remote_ip 10.8.0.62 167979 username tahmasebi 167979 mac 167979 bytes_out 0 167979 bytes_in 0 167979 station_ip 5.119.58.232 167979 port 745 167979 unique_id port 167979 remote_ip 10.8.0.42 167980 username mehdizare 167980 mac 167980 bytes_out 0 167980 bytes_in 0 167980 station_ip 37.129.122.91 167980 port 406 167980 unique_id port 167980 remote_ip 10.8.1.42 167984 username mahdiyehalizadeh 167984 mac 167984 bytes_out 0 167984 bytes_in 0 167984 station_ip 5.120.50.38 167984 port 789 167984 unique_id port 167984 remote_ip 10.8.0.82 167989 username sedighe 167989 mac 167989 bytes_out 0 167989 bytes_in 0 167989 station_ip 83.122.195.83 167989 port 769 167989 unique_id port 167989 remote_ip 10.8.0.146 167991 username mostafa_es78 167954 unique_id port 167956 username houshang 167956 mac 167956 bytes_out 0 167956 bytes_in 0 167956 station_ip 5.120.132.163 167956 port 770 167956 unique_id port 167963 username pourshad 167963 mac 167963 bytes_out 0 167963 bytes_in 0 167963 station_ip 5.119.19.50 167963 port 770 167963 unique_id port 167963 remote_ip 10.8.0.18 167966 username mehdizare 167966 mac 167966 bytes_out 0 167966 bytes_in 0 167966 station_ip 37.129.122.91 167966 port 783 167966 unique_id port 167966 remote_ip 10.8.0.90 167972 username mehdizare 167972 mac 167972 bytes_out 0 167972 bytes_in 0 167972 station_ip 37.129.122.91 167972 port 745 167972 unique_id port 167972 remote_ip 10.8.0.90 167975 username tahmasebi 167975 mac 167975 bytes_out 0 167975 bytes_in 0 167975 station_ip 5.119.58.232 167975 port 745 167975 unique_id port 167975 remote_ip 10.8.0.42 167978 username mostafa_es78 167978 kill_reason Another user logged on this global unique id 167978 mac 167978 bytes_out 0 167978 bytes_in 0 167978 station_ip 83.123.164.53 167978 port 785 167978 unique_id port 167978 remote_ip 10.8.0.194 167981 username mahdiyehalizadeh 167981 mac 167981 bytes_out 2374849 167981 bytes_in 30375986 167981 station_ip 5.120.50.38 167981 port 782 167981 unique_id port 167981 remote_ip 10.8.0.82 167982 username barzegar 167982 mac 167982 bytes_out 0 167982 bytes_in 0 167982 station_ip 5.119.3.156 167982 port 745 167982 unique_id port 167982 remote_ip 10.8.0.234 167987 username alihosseini1 167987 mac 167987 bytes_out 0 167987 bytes_in 0 167987 station_ip 5.120.88.174 167987 port 745 167987 unique_id port 167987 remote_ip 10.8.0.22 167988 username tahmasebi 167988 mac 167988 bytes_out 0 167988 bytes_in 0 167988 station_ip 5.119.58.232 167988 port 745 167988 unique_id port 167988 remote_ip 10.8.0.42 167994 username tahmasebi 167994 mac 167994 bytes_out 0 167994 bytes_in 0 167994 station_ip 5.119.58.232 167994 port 769 167994 unique_id port 167994 remote_ip 10.8.0.42 167995 username tahmasebi 167995 mac 167995 bytes_out 0 167995 bytes_in 0 167995 station_ip 5.119.58.232 167995 port 782 167995 unique_id port 167995 remote_ip 10.8.0.42 167997 username alihosseini1 167997 mac 167997 bytes_out 2013 167997 bytes_in 4401 167997 station_ip 5.120.88.174 167997 port 408 167997 unique_id port 167997 remote_ip 10.8.1.106 167999 username fezealinaghi 167999 mac 167999 bytes_out 0 167999 bytes_in 0 167999 station_ip 83.123.118.154 167999 port 784 167999 unique_id port 168000 username khalili2 168000 mac 168000 bytes_out 1206050 168000 bytes_in 11784040 168000 station_ip 5.120.109.173 168000 port 781 168000 unique_id port 168000 remote_ip 10.8.0.38 168003 username khademi 168003 mac 168003 bytes_out 0 168003 bytes_in 0 168003 station_ip 83.122.127.46 168003 port 762 168003 unique_id port 168003 remote_ip 10.8.0.10 168006 username farhad2 168006 mac 168006 bytes_out 0 168006 bytes_in 0 168006 station_ip 5.120.7.70 168006 port 407 168006 unique_id port 168006 remote_ip 10.8.1.222 168012 username pourshad 168012 mac 168012 bytes_out 13910 168012 bytes_in 16879 168012 station_ip 5.119.19.50 168012 port 407 168012 unique_id port 168012 remote_ip 10.8.1.154 168013 username tahmasebi 168013 mac 168013 bytes_out 0 168013 bytes_in 0 168013 station_ip 5.119.58.232 168013 port 782 168013 unique_id port 168013 remote_ip 10.8.0.42 168017 username tahmasebi 168017 mac 168017 bytes_out 0 167961 unique_id port 167961 remote_ip 10.8.0.98 167965 username tahmasebi 167965 mac 167965 bytes_out 1027473 167965 bytes_in 171483 167965 station_ip 5.119.58.232 167965 port 403 167965 unique_id port 167965 remote_ip 10.8.1.90 167967 username farhad2 167967 mac 167967 bytes_out 0 167967 bytes_in 0 167967 station_ip 5.120.7.70 167967 port 745 167967 unique_id port 167967 remote_ip 10.8.0.190 167968 username barzegar 167968 mac 167968 bytes_out 0 167968 bytes_in 0 167968 station_ip 5.119.3.156 167968 port 745 167968 unique_id port 167968 remote_ip 10.8.0.234 167969 username alihosseini1 167969 mac 167969 bytes_out 0 167969 bytes_in 0 167969 station_ip 5.120.88.174 167969 port 770 167969 unique_id port 167969 remote_ip 10.8.0.22 167971 username alihosseini1 167971 mac 167971 bytes_out 0 167971 bytes_in 0 167971 station_ip 5.120.88.174 167971 port 789 167971 unique_id port 167971 remote_ip 10.8.0.22 167973 username tahmasebi 167973 mac 167973 bytes_out 0 167973 bytes_in 0 167973 station_ip 5.119.58.232 167973 port 783 167973 unique_id port 167973 remote_ip 10.8.0.42 167983 username vanila 167983 mac 167983 bytes_out 130206 167983 bytes_in 565095 167983 station_ip 37.129.118.54 167983 port 783 167983 unique_id port 167983 remote_ip 10.8.0.178 167985 username mohammadjavad 167985 mac 167985 bytes_out 0 167985 bytes_in 0 167985 station_ip 113.203.45.37 167985 port 791 167985 unique_id port 167985 remote_ip 10.8.0.142 167986 username saeed9658 167986 mac 167986 bytes_out 0 167986 bytes_in 0 167986 station_ip 5.119.176.146 167986 port 770 167986 unique_id port 167986 remote_ip 10.8.0.166 167990 username tahmasebi 167990 mac 167990 bytes_out 0 167990 bytes_in 0 167990 station_ip 5.119.58.232 167990 port 769 167990 unique_id port 167990 remote_ip 10.8.0.42 167992 username tahmasebi 167992 mac 167992 bytes_out 0 167992 bytes_in 0 167992 station_ip 5.119.58.232 167992 port 769 167992 unique_id port 167992 remote_ip 10.8.0.42 167996 username barzegar 167996 kill_reason Maximum check online fails reached 167996 mac 167996 bytes_out 0 167996 bytes_in 0 167996 station_ip 5.119.3.156 167996 port 769 167996 unique_id port 167998 username moradi 167998 mac 167998 bytes_out 0 167998 bytes_in 0 167998 station_ip 46.225.232.219 167998 port 790 167998 unique_id port 167998 remote_ip 10.8.0.126 168001 username barzegar 168001 mac 168001 bytes_out 104998 168001 bytes_in 13481 168001 station_ip 5.119.3.156 168001 port 408 168001 unique_id port 168001 remote_ip 10.8.1.174 168009 username godarzi 168009 mac 168009 bytes_out 749631 168009 bytes_in 4199334 168009 station_ip 5.119.46.231 168009 port 391 168009 unique_id port 168009 remote_ip 10.8.1.230 168010 username alihosseini1 168010 mac 168010 bytes_out 0 168010 bytes_in 0 168010 station_ip 5.120.88.174 168010 port 783 168010 unique_id port 168010 remote_ip 10.8.0.22 168011 username shadkam 168011 mac 168011 bytes_out 0 168011 bytes_in 0 168011 station_ip 37.129.206.60 168011 port 782 168011 unique_id port 168011 remote_ip 10.8.0.62 168016 username alihosseini1 168016 mac 168016 bytes_out 0 168016 bytes_in 0 168016 station_ip 5.120.88.174 168016 port 782 168016 unique_id port 168016 remote_ip 10.8.0.22 168019 username farhad2 168019 mac 168019 bytes_out 627900 168019 bytes_in 5957278 168019 station_ip 5.120.7.70 168019 port 403 168019 unique_id port 168019 remote_ip 10.8.1.222 168020 username aminvpn 167991 mac 167991 bytes_out 0 167991 bytes_in 0 167991 station_ip 83.123.164.53 167991 port 785 167991 unique_id port 167993 username barzegar 167993 mac 167993 bytes_out 4142 167993 bytes_in 6829 167993 station_ip 5.119.3.156 167993 port 408 167993 unique_id port 167993 remote_ip 10.8.1.174 168002 username pourshad 168002 mac 168002 bytes_out 26903 168002 bytes_in 45301 168002 station_ip 5.119.19.50 168002 port 407 168002 unique_id port 168002 remote_ip 10.8.1.154 168004 username farhad2 168004 mac 168004 bytes_out 0 168004 bytes_in 0 168004 station_ip 5.120.7.70 168004 port 403 168004 unique_id port 168004 remote_ip 10.8.1.222 168005 username alihosseini1 168005 mac 168005 bytes_out 0 168005 bytes_in 0 168005 station_ip 5.120.88.174 168005 port 403 168005 unique_id port 168005 remote_ip 10.8.1.106 168007 username tahmasebi 168007 mac 168007 bytes_out 0 168007 bytes_in 0 168007 station_ip 5.119.58.232 168007 port 762 168007 unique_id port 168007 remote_ip 10.8.0.42 168008 username alihosseini1 168008 mac 168008 bytes_out 0 168008 bytes_in 0 168008 station_ip 5.120.88.174 168008 port 762 168008 unique_id port 168008 remote_ip 10.8.0.22 168014 username vanila 168014 mac 168014 bytes_out 0 168014 bytes_in 0 168014 station_ip 37.129.118.54 168014 port 781 168014 unique_id port 168014 remote_ip 10.8.0.178 168015 username barzegar 168015 mac 168015 bytes_out 5974 168015 bytes_in 13145 168015 station_ip 5.119.3.156 168015 port 391 168015 unique_id port 168015 remote_ip 10.8.1.174 168018 username aminvpn 168018 mac 168018 bytes_out 2256170 168018 bytes_in 3390052 168018 station_ip 37.129.220.39 168018 port 773 168018 unique_id port 168018 remote_ip 10.8.0.14 168021 username aminvpn 168021 mac 168021 bytes_out 0 168021 bytes_in 0 168021 station_ip 37.129.220.39 168021 port 783 168021 unique_id port 168021 remote_ip 10.8.0.14 168023 username kalantary 168023 mac 168023 bytes_out 0 168023 bytes_in 0 168023 station_ip 83.123.3.125 168023 port 781 168023 unique_id port 168023 remote_ip 10.8.0.98 168024 username barzegar 168024 mac 168024 bytes_out 0 168024 bytes_in 0 168024 station_ip 5.119.3.156 168024 port 781 168024 unique_id port 168024 remote_ip 10.8.0.234 168025 username alihosseini1 168025 mac 168025 bytes_out 0 168025 bytes_in 0 168025 station_ip 5.120.88.174 168025 port 403 168025 unique_id port 168025 remote_ip 10.8.1.106 168026 username barzegar 168026 mac 168026 bytes_out 0 168026 bytes_in 0 168026 station_ip 5.119.3.156 168026 port 781 168026 unique_id port 168026 remote_ip 10.8.0.234 168027 username farhad2 168027 mac 168027 bytes_out 0 168027 bytes_in 0 168027 station_ip 5.120.7.70 168027 port 784 168027 unique_id port 168027 remote_ip 10.8.0.190 168032 username barzegar 168032 mac 168032 bytes_out 0 168032 bytes_in 0 168032 station_ip 5.119.3.156 168032 port 745 168032 unique_id port 168032 remote_ip 10.8.0.234 168035 username aminvpn 168035 mac 168035 bytes_out 0 168035 bytes_in 0 168035 station_ip 37.129.220.39 168035 port 745 168035 unique_id port 168035 remote_ip 10.8.0.14 168039 username pourshad 168039 mac 168039 bytes_out 15419 168039 bytes_in 28733 168039 station_ip 5.119.19.50 168039 port 403 168039 unique_id port 168039 remote_ip 10.8.1.154 168042 username sedighe 168042 mac 168042 bytes_out 0 168042 bytes_in 0 168042 station_ip 83.122.109.125 168042 port 783 168017 bytes_in 0 168017 station_ip 5.119.58.232 168017 port 783 168017 unique_id port 168017 remote_ip 10.8.0.42 168022 username tahmasebi 168022 mac 168022 bytes_out 0 168022 bytes_in 0 168022 station_ip 5.119.58.232 168022 port 782 168022 unique_id port 168022 remote_ip 10.8.0.42 168029 username tahmasebi 168029 mac 168029 bytes_out 0 168029 bytes_in 0 168029 station_ip 5.119.58.232 168029 port 782 168029 unique_id port 168029 remote_ip 10.8.0.42 168034 username farhad2 168034 mac 168034 bytes_out 0 168034 bytes_in 0 168034 station_ip 5.120.7.70 168034 port 782 168034 unique_id port 168034 remote_ip 10.8.0.190 168036 username barzegar 168036 kill_reason Maximum check online fails reached 168036 mac 168036 bytes_out 0 168036 bytes_in 0 168036 station_ip 5.119.3.156 168036 port 781 168036 unique_id port 168038 username khademi 168038 mac 168038 bytes_out 0 168038 bytes_in 0 168038 station_ip 37.129.111.76 168038 port 762 168038 unique_id port 168038 remote_ip 10.8.0.10 168041 username aminvpn 168041 mac 168041 bytes_out 0 168041 bytes_in 0 168041 station_ip 37.129.220.39 168041 port 762 168041 unique_id port 168041 remote_ip 10.8.0.14 168043 username alihosseini1 168043 mac 168043 bytes_out 0 168043 bytes_in 0 168043 station_ip 5.120.88.174 168043 port 403 168043 unique_id port 168043 remote_ip 10.8.1.106 168045 username barzegar 168045 mac 168045 bytes_out 0 168045 bytes_in 0 168045 station_ip 5.119.3.156 168045 port 782 168045 unique_id port 168045 remote_ip 10.8.0.234 168046 username aminvpn 168046 mac 168046 bytes_out 0 168046 bytes_in 0 168046 station_ip 5.126.57.246 168046 port 762 168046 unique_id port 168046 remote_ip 10.8.0.14 168050 username farhad2 168050 mac 168050 bytes_out 0 168050 bytes_in 0 168050 station_ip 5.120.7.70 168050 port 762 168050 unique_id port 168050 remote_ip 10.8.0.190 168052 username tahmasebi 168052 mac 168052 bytes_out 0 168052 bytes_in 0 168052 station_ip 5.119.58.232 168052 port 745 168052 unique_id port 168052 remote_ip 10.8.0.42 168057 username aminvpn 168057 mac 168057 bytes_out 0 168057 bytes_in 0 168057 station_ip 5.120.115.223 168057 port 745 168057 unique_id port 168057 remote_ip 10.8.0.14 168062 username farhad2 168062 mac 168062 bytes_out 0 168062 bytes_in 0 168062 station_ip 5.120.7.70 168062 port 785 168062 unique_id port 168062 remote_ip 10.8.0.190 168063 username tahmasebi 168063 mac 168063 bytes_out 0 168063 bytes_in 0 168063 station_ip 5.119.58.232 168063 port 784 168063 unique_id port 168063 remote_ip 10.8.0.42 168065 username alihosseini1 168065 mac 168065 bytes_out 0 168065 bytes_in 0 168065 station_ip 5.120.88.174 168065 port 789 168065 unique_id port 168065 remote_ip 10.8.0.22 168067 username tahmasebi 168067 mac 168067 bytes_out 0 168067 bytes_in 0 168067 station_ip 5.119.58.232 168067 port 762 168067 unique_id port 168067 remote_ip 10.8.0.42 168070 username Mahin 168070 kill_reason Relative expiration date has reached 168070 mac 168070 bytes_out 0 168070 bytes_in 0 168070 station_ip 5.119.94.172 168070 port 762 168070 unique_id port 168073 username barzegar 168073 mac 168073 bytes_out 0 168073 bytes_in 0 168073 station_ip 5.119.3.156 168073 port 790 168073 unique_id port 168073 remote_ip 10.8.0.234 168075 username farhad2 168075 mac 168075 bytes_out 0 168075 bytes_in 0 168075 station_ip 5.120.7.70 168075 port 403 168075 unique_id port 168020 mac 168020 bytes_out 0 168020 bytes_in 0 168020 station_ip 5.126.57.246 168020 port 782 168020 unique_id port 168020 remote_ip 10.8.0.14 168028 username sedighe 168028 mac 168028 bytes_out 0 168028 bytes_in 0 168028 station_ip 83.122.109.125 168028 port 745 168028 unique_id port 168028 remote_ip 10.8.0.146 168030 username pourshad 168030 mac 168030 bytes_out 19400 168030 bytes_in 38412 168030 station_ip 5.119.19.50 168030 port 407 168030 unique_id port 168030 remote_ip 10.8.1.154 168031 username alihosseini1 168031 mac 168031 bytes_out 0 168031 bytes_in 0 168031 station_ip 5.120.88.174 168031 port 403 168031 unique_id port 168031 remote_ip 10.8.1.106 168033 username aminvpn 168033 mac 168033 bytes_out 0 168033 bytes_in 0 168033 station_ip 5.126.57.246 168033 port 785 168033 unique_id port 168033 remote_ip 10.8.0.14 168037 username rajaei 168037 mac 168037 bytes_out 0 168037 bytes_in 0 168037 station_ip 89.32.105.174 168037 port 773 168037 unique_id port 168037 remote_ip 10.8.0.34 168040 username aminvpn 168040 mac 168040 bytes_out 0 168040 bytes_in 0 168040 station_ip 5.126.57.246 168040 port 782 168040 unique_id port 168040 remote_ip 10.8.0.14 168047 username aminvpn 168047 mac 168047 bytes_out 0 168047 bytes_in 0 168047 station_ip 5.120.115.223 168047 port 783 168047 unique_id port 168047 remote_ip 10.8.0.14 168053 username alihosseini1 168053 mac 168053 bytes_out 0 168053 bytes_in 0 168053 station_ip 5.120.88.174 168053 port 403 168053 unique_id port 168053 remote_ip 10.8.1.106 168055 username aminvpn 168055 mac 168055 bytes_out 0 168055 bytes_in 0 168055 station_ip 5.126.57.246 168055 port 784 168055 unique_id port 168055 remote_ip 10.8.0.14 168056 username godarzi 168056 mac 168056 bytes_out 1350019 168056 bytes_in 18719855 168056 station_ip 5.119.46.231 168056 port 391 168056 unique_id port 168056 remote_ip 10.8.1.230 168059 username aminvpn 168059 mac 168059 bytes_out 0 168059 bytes_in 0 168059 station_ip 5.126.57.246 168059 port 784 168059 unique_id port 168059 remote_ip 10.8.0.14 168060 username tahmasebi 168060 mac 168060 bytes_out 0 168060 bytes_in 0 168060 station_ip 5.119.58.232 168060 port 784 168060 unique_id port 168060 remote_ip 10.8.0.42 168064 username tahmasebi 168064 mac 168064 bytes_out 0 168064 bytes_in 0 168064 station_ip 5.119.58.232 168064 port 762 168064 unique_id port 168064 remote_ip 10.8.0.42 168066 username godarzi 168066 mac 168066 bytes_out 33220 168066 bytes_in 186445 168066 station_ip 5.119.46.231 168066 port 391 168066 unique_id port 168066 remote_ip 10.8.1.230 168068 username aminvpn 168068 mac 168068 bytes_out 0 168068 bytes_in 0 168068 station_ip 5.126.57.246 168068 port 790 168068 unique_id port 168068 remote_ip 10.8.0.14 168076 username tahmasebi 168076 mac 168076 bytes_out 0 168076 bytes_in 0 168076 station_ip 5.119.58.232 168076 port 762 168076 unique_id port 168076 remote_ip 10.8.0.42 168078 username farhad2 168078 mac 168078 bytes_out 0 168078 bytes_in 0 168078 station_ip 5.120.7.70 168078 port 403 168078 unique_id port 168078 remote_ip 10.8.1.222 168081 username barzegar 168081 mac 168081 bytes_out 0 168081 bytes_in 0 168081 station_ip 5.119.3.156 168081 port 745 168081 unique_id port 168081 remote_ip 10.8.0.234 168083 username alihosseini1 168083 mac 168083 bytes_out 0 168083 bytes_in 0 168083 station_ip 5.120.88.174 168083 port 403 168042 unique_id port 168042 remote_ip 10.8.0.146 168044 username aminvpn 168044 mac 168044 bytes_out 0 168044 bytes_in 0 168044 station_ip 5.120.115.223 168044 port 782 168044 unique_id port 168044 remote_ip 10.8.0.14 168048 username alihosseini1 168048 mac 168048 bytes_out 0 168048 bytes_in 0 168048 station_ip 5.120.88.174 168048 port 762 168048 unique_id port 168048 remote_ip 10.8.0.22 168049 username hashtadani4 168049 mac 168049 bytes_out 0 168049 bytes_in 0 168049 station_ip 37.129.14.19 168049 port 745 168049 unique_id port 168049 remote_ip 10.8.0.182 168051 username hashtadani4 168051 mac 168051 bytes_out 0 168051 bytes_in 0 168051 station_ip 37.129.14.19 168051 port 745 168051 unique_id port 168051 remote_ip 10.8.0.182 168054 username barzegar 168054 kill_reason Maximum check online fails reached 168054 mac 168054 bytes_out 0 168054 bytes_in 0 168054 station_ip 5.119.3.156 168054 port 782 168054 unique_id port 168058 username farhad2 168058 mac 168058 bytes_out 179036 168058 bytes_in 335257 168058 station_ip 5.120.7.70 168058 port 762 168058 unique_id port 168058 remote_ip 10.8.0.190 168061 username aminvpn 168061 mac 168061 bytes_out 0 168061 bytes_in 0 168061 station_ip 37.129.220.39 168061 port 762 168061 unique_id port 168061 remote_ip 10.8.0.14 168069 username tahmasebi 168069 mac 168069 bytes_out 0 168069 bytes_in 0 168069 station_ip 5.119.58.232 168069 port 762 168069 unique_id port 168069 remote_ip 10.8.0.42 168071 username aminvpn 168071 mac 168071 bytes_out 0 168071 bytes_in 0 168071 station_ip 37.129.220.39 168071 port 784 168071 unique_id port 168071 remote_ip 10.8.0.14 168072 username aminvpn 168072 mac 168072 bytes_out 0 168072 bytes_in 0 168072 station_ip 5.126.57.246 168072 port 762 168072 unique_id port 168072 remote_ip 10.8.0.14 168074 username tahmasebi 168074 mac 168074 bytes_out 0 168074 bytes_in 0 168074 station_ip 5.119.58.232 168074 port 785 168074 unique_id port 168074 remote_ip 10.8.0.42 168079 username alihosseini1 168079 mac 168079 bytes_out 0 168079 bytes_in 0 168079 station_ip 5.120.88.174 168079 port 391 168079 unique_id port 168079 remote_ip 10.8.1.106 168080 username aminvpn 168080 mac 168080 bytes_out 0 168080 bytes_in 0 168080 station_ip 37.129.220.39 168080 port 791 168080 unique_id port 168080 remote_ip 10.8.0.14 168084 username tahmasebi 168084 mac 168084 bytes_out 0 168084 bytes_in 0 168084 station_ip 5.119.58.232 168084 port 762 168084 unique_id port 168084 remote_ip 10.8.0.42 168086 username aminvpn 168086 mac 168086 bytes_out 0 168086 bytes_in 0 168086 station_ip 37.129.220.39 168086 port 745 168086 unique_id port 168086 remote_ip 10.8.0.14 168090 username tahmasebi 168090 mac 168090 bytes_out 0 168090 bytes_in 0 168090 station_ip 5.119.58.232 168090 port 745 168090 unique_id port 168090 remote_ip 10.8.0.42 168091 username aminvpn 168091 mac 168091 bytes_out 0 168091 bytes_in 0 168091 station_ip 37.129.220.39 168091 port 745 168091 unique_id port 168091 remote_ip 10.8.0.14 168092 username barzegar 168092 mac 168092 bytes_out 0 168092 bytes_in 0 168092 station_ip 5.119.3.156 168092 port 745 168092 unique_id port 168092 remote_ip 10.8.0.234 168094 username alihosseini1 168094 mac 168094 bytes_out 0 168094 bytes_in 0 168094 station_ip 5.120.88.174 168094 port 403 168094 unique_id port 168094 remote_ip 10.8.1.106 168096 username pourshad 168096 mac 168075 remote_ip 10.8.1.222 168077 username hashtadani4 168077 mac 168077 bytes_out 0 168077 bytes_in 0 168077 station_ip 37.129.14.19 168077 port 745 168077 unique_id port 168077 remote_ip 10.8.0.182 168082 username aminvpn 168082 mac 168082 bytes_out 0 168082 bytes_in 0 168082 station_ip 5.126.57.246 168082 port 762 168082 unique_id port 168082 remote_ip 10.8.0.14 168085 username mehdizare 168085 mac 168085 bytes_out 54369 168085 bytes_in 72432 168085 station_ip 37.129.122.91 168085 port 406 168085 unique_id port 168085 remote_ip 10.8.1.42 168087 username aminvpn 168087 mac 168087 bytes_out 0 168087 bytes_in 0 168087 station_ip 5.126.57.246 168087 port 762 168087 unique_id port 168087 remote_ip 10.8.0.14 168093 username aminvpn 168093 mac 168093 bytes_out 0 168093 bytes_in 0 168093 station_ip 5.126.57.246 168093 port 762 168093 unique_id port 168093 remote_ip 10.8.0.14 168100 username pourshad 168100 mac 168100 bytes_out 0 168100 bytes_in 0 168100 station_ip 5.119.19.50 168100 port 762 168100 unique_id port 168100 remote_ip 10.8.0.18 168103 username pourshad 168103 mac 168103 bytes_out 0 168103 bytes_in 0 168103 station_ip 5.119.19.50 168103 port 789 168103 unique_id port 168103 remote_ip 10.8.0.18 168108 username malekpoir 168108 kill_reason Another user logged on this global unique id 168108 mac 168108 bytes_out 0 168108 bytes_in 0 168108 station_ip 5.119.214.100 168108 port 788 168108 unique_id port 168110 username hashtadani4 168110 mac 168110 bytes_out 0 168110 bytes_in 0 168110 station_ip 37.129.14.19 168110 port 403 168110 unique_id port 168110 remote_ip 10.8.1.142 168115 username farhad2 168115 mac 168115 bytes_out 2510923 168115 bytes_in 22279177 168115 station_ip 5.120.7.70 168115 port 785 168115 unique_id port 168115 remote_ip 10.8.0.190 168117 username aminvpn 168117 mac 168117 bytes_out 0 168117 bytes_in 0 168117 station_ip 37.129.220.39 168117 port 786 168117 unique_id port 168117 remote_ip 10.8.0.14 168121 username hashtadani4 168121 mac 168121 bytes_out 0 168121 bytes_in 0 168121 station_ip 37.129.14.19 168121 port 786 168121 unique_id port 168121 remote_ip 10.8.0.182 168126 username pourshad 168126 mac 168126 bytes_out 60961 168126 bytes_in 496800 168126 station_ip 5.119.19.50 168126 port 403 168126 unique_id port 168126 remote_ip 10.8.1.154 168133 username hashtadani4 168133 mac 168133 bytes_out 0 168133 bytes_in 0 168133 station_ip 37.129.14.19 168133 port 790 168133 unique_id port 168133 remote_ip 10.8.0.182 168134 username hashtadani4 168134 mac 168134 bytes_out 0 168134 bytes_in 0 168134 station_ip 37.129.14.19 168134 port 790 168134 unique_id port 168134 remote_ip 10.8.0.182 168137 username tahmasebi 168137 mac 168137 bytes_out 0 168137 bytes_in 0 168137 station_ip 5.120.2.227 168137 port 786 168137 unique_id port 168137 remote_ip 10.8.0.42 168138 username aminvpn 168138 mac 168138 bytes_out 0 168138 bytes_in 0 168138 station_ip 37.129.220.39 168138 port 789 168138 unique_id port 168138 remote_ip 10.8.0.14 168142 username barzegar 168142 mac 168142 bytes_out 0 168142 bytes_in 0 168142 station_ip 5.119.3.156 168142 port 407 168142 unique_id port 168142 remote_ip 10.8.1.174 168144 username hashtadani4 168144 kill_reason Maximum check online fails reached 168144 mac 168144 bytes_out 0 168144 bytes_in 0 168144 station_ip 37.129.14.19 168144 port 786 168144 unique_id port 168147 username aminvpn 168147 mac 168083 unique_id port 168083 remote_ip 10.8.1.106 168088 username hashtadani4 168088 mac 168088 bytes_out 0 168088 bytes_in 0 168088 station_ip 37.129.14.19 168088 port 790 168088 unique_id port 168088 remote_ip 10.8.0.182 168089 username aminvpn 168089 mac 168089 bytes_out 0 168089 bytes_in 0 168089 station_ip 5.126.57.246 168089 port 762 168089 unique_id port 168089 remote_ip 10.8.0.14 168095 username aminvpn 168095 mac 168095 bytes_out 0 168095 bytes_in 0 168095 station_ip 5.126.57.246 168095 port 745 168095 unique_id port 168095 remote_ip 10.8.0.14 168097 username godarzi 168097 mac 168097 bytes_out 638624 168097 bytes_in 131768 168097 station_ip 5.119.46.231 168097 port 391 168097 unique_id port 168097 remote_ip 10.8.1.230 168098 username aminvpn 168098 mac 168098 bytes_out 0 168098 bytes_in 0 168098 station_ip 37.129.220.39 168098 port 745 168098 unique_id port 168098 remote_ip 10.8.0.14 168099 username mohammadjavad 168099 mac 168099 bytes_out 0 168099 bytes_in 0 168099 station_ip 83.123.105.214 168099 port 789 168099 unique_id port 168099 remote_ip 10.8.0.142 168101 username alihosseini1 168101 mac 168101 bytes_out 0 168101 bytes_in 0 168101 station_ip 5.120.88.174 168101 port 790 168101 unique_id port 168101 remote_ip 10.8.0.22 168104 username tahmasebi 168104 mac 168104 bytes_out 0 168104 bytes_in 0 168104 station_ip 5.119.58.232 168104 port 762 168104 unique_id port 168104 remote_ip 10.8.0.42 168106 username aminvpn 168106 mac 168106 bytes_out 127201 168106 bytes_in 220885 168106 station_ip 5.126.57.246 168106 port 783 168106 unique_id port 168106 remote_ip 10.8.0.14 168111 username alihosseini1 168111 mac 168111 bytes_out 0 168111 bytes_in 0 168111 station_ip 5.120.88.174 168111 port 762 168111 unique_id port 168111 remote_ip 10.8.0.22 168114 username pourshad 168114 mac 168114 bytes_out 0 168114 bytes_in 0 168114 station_ip 5.119.19.50 168114 port 403 168114 unique_id port 168114 remote_ip 10.8.1.154 168116 username hashtadani4 168116 mac 168116 bytes_out 0 168116 bytes_in 0 168116 station_ip 37.129.14.19 168116 port 783 168116 unique_id port 168116 remote_ip 10.8.0.182 168118 username aminvpn 168118 mac 168118 bytes_out 0 168118 bytes_in 0 168118 station_ip 5.126.57.246 168118 port 783 168118 unique_id port 168118 remote_ip 10.8.0.14 168119 username aminvpn 168119 mac 168119 bytes_out 0 168119 bytes_in 0 168119 station_ip 37.129.220.39 168119 port 786 168119 unique_id port 168119 remote_ip 10.8.0.14 168124 username aminvpn 168124 mac 168124 bytes_out 0 168124 bytes_in 0 168124 station_ip 5.126.57.246 168124 port 789 168124 unique_id port 168124 remote_ip 10.8.0.14 168127 username farhad2 168127 mac 168127 bytes_out 1029241 168127 bytes_in 4306744 168127 station_ip 5.120.7.70 168127 port 785 168127 unique_id port 168127 remote_ip 10.8.0.190 168129 username vanila 168129 mac 168129 bytes_out 70935 168129 bytes_in 296622 168129 station_ip 37.129.118.54 168129 port 789 168129 unique_id port 168129 remote_ip 10.8.0.178 168130 username aminvpn 168130 mac 168130 bytes_out 0 168130 bytes_in 0 168130 station_ip 5.126.57.246 168130 port 790 168130 unique_id port 168130 remote_ip 10.8.0.14 168131 username hashtadani4 168131 mac 168131 bytes_out 0 168131 bytes_in 0 168131 station_ip 37.129.14.19 168131 port 790 168131 unique_id port 168131 remote_ip 10.8.0.182 168139 username hashtadani4 168096 bytes_out 0 168096 bytes_in 0 168096 station_ip 5.119.19.50 168096 port 783 168096 unique_id port 168096 remote_ip 10.8.0.18 168102 username hashtadani4 168102 mac 168102 bytes_out 0 168102 bytes_in 0 168102 station_ip 37.129.14.19 168102 port 745 168102 unique_id port 168102 remote_ip 10.8.0.182 168105 username tahmasebi 168105 mac 168105 bytes_out 0 168105 bytes_in 0 168105 station_ip 5.119.58.232 168105 port 745 168105 unique_id port 168105 remote_ip 10.8.0.42 168107 username aminvpn 168107 mac 168107 bytes_out 0 168107 bytes_in 0 168107 station_ip 37.129.220.39 168107 port 745 168107 unique_id port 168107 remote_ip 10.8.0.14 168109 username alipour 168109 mac 168109 bytes_out 3778037 168109 bytes_in 39918355 168109 station_ip 83.122.249.139 168109 port 786 168109 unique_id port 168109 remote_ip 10.8.0.102 168112 username pourshad 168112 mac 168112 bytes_out 0 168112 bytes_in 0 168112 station_ip 5.119.19.50 168112 port 391 168112 unique_id port 168112 remote_ip 10.8.1.154 168113 username aminvpn 168113 mac 168113 bytes_out 0 168113 bytes_in 0 168113 station_ip 5.126.57.246 168113 port 783 168113 unique_id port 168113 remote_ip 10.8.0.14 168120 username barzegar 168120 mac 168120 bytes_out 0 168120 bytes_in 0 168120 station_ip 5.119.3.156 168120 port 786 168120 unique_id port 168120 remote_ip 10.8.0.234 168122 username meysam 168122 kill_reason Another user logged on this global unique id 168122 mac 168122 bytes_out 0 168122 bytes_in 0 168122 station_ip 188.158.48.41 168122 port 762 168122 unique_id port 168122 remote_ip 10.8.0.110 168123 username tahmasebi 168123 mac 168123 bytes_out 0 168123 bytes_in 0 168123 station_ip 5.119.58.232 168123 port 783 168123 unique_id port 168123 remote_ip 10.8.0.42 168125 username aminvpn 168125 mac 168125 bytes_out 0 168125 bytes_in 0 168125 station_ip 37.129.220.39 168125 port 783 168125 unique_id port 168125 remote_ip 10.8.0.14 168128 username barzegar 168128 mac 168128 bytes_out 0 168128 bytes_in 0 168128 station_ip 5.119.3.156 168128 port 407 168128 unique_id port 168128 remote_ip 10.8.1.174 168132 username meysam 168132 mac 168132 bytes_out 0 168132 bytes_in 0 168132 station_ip 188.158.48.41 168132 port 762 168132 unique_id port 168135 username aminvpn 168135 mac 168135 bytes_out 0 168135 bytes_in 0 168135 station_ip 37.129.220.39 168135 port 789 168135 unique_id port 168135 remote_ip 10.8.0.14 168136 username aminvpn 168136 mac 168136 bytes_out 0 168136 bytes_in 0 168136 station_ip 5.126.57.246 168136 port 790 168136 unique_id port 168136 remote_ip 10.8.0.14 168141 username pourshad 168141 mac 168141 bytes_out 27452 168141 bytes_in 46067 168141 station_ip 5.119.19.50 168141 port 403 168141 unique_id port 168141 remote_ip 10.8.1.154 168143 username hashtadani4 168143 kill_reason Maximum check online fails reached 168143 mac 168143 bytes_out 0 168143 bytes_in 0 168143 station_ip 37.129.14.19 168143 port 789 168143 unique_id port 168145 username tahmasebi 168145 mac 168145 bytes_out 0 168145 bytes_in 0 168145 station_ip 5.120.2.227 168145 port 791 168145 unique_id port 168145 remote_ip 10.8.0.42 168148 username aminvpn 168148 mac 168148 bytes_out 0 168148 bytes_in 0 168148 station_ip 37.129.220.39 168148 port 792 168148 unique_id port 168148 remote_ip 10.8.0.14 168149 username barzegar 168149 mac 168149 bytes_out 0 168149 bytes_in 0 168149 station_ip 5.119.3.156 168139 kill_reason Maximum number of concurrent logins reached 168139 mac 168139 bytes_out 0 168139 bytes_in 0 168139 station_ip 37.129.14.19 168139 port 791 168139 unique_id port 168140 username tahmasebi 168140 mac 168140 bytes_out 0 168140 bytes_in 0 168140 station_ip 5.120.2.227 168140 port 791 168140 unique_id port 168140 remote_ip 10.8.0.42 168146 username alipour 168146 mac 168146 bytes_out 0 168146 bytes_in 0 168146 station_ip 83.122.53.82 168146 port 391 168146 unique_id port 168146 remote_ip 10.8.1.50 168151 username farhad2 168151 mac 168151 bytes_out 0 168151 bytes_in 0 168151 station_ip 5.120.7.70 168151 port 783 168151 unique_id port 168151 remote_ip 10.8.0.190 168155 username tahmasebi 168155 mac 168155 bytes_out 0 168155 bytes_in 0 168155 station_ip 5.120.2.227 168155 port 783 168155 unique_id port 168155 remote_ip 10.8.0.42 168157 username hashtadani4 168157 mac 168157 bytes_out 0 168157 bytes_in 0 168157 station_ip 37.129.14.19 168157 port 391 168157 unique_id port 168157 remote_ip 10.8.1.142 168163 username mohammadjavad 168163 mac 168163 bytes_out 0 168163 bytes_in 0 168163 station_ip 83.122.199.49 168163 port 785 168163 unique_id port 168163 remote_ip 10.8.0.142 168165 username aminvpn 168165 mac 168165 bytes_out 0 168165 bytes_in 0 168165 station_ip 5.126.57.246 168165 port 790 168165 unique_id port 168165 remote_ip 10.8.0.14 168167 username hashtadani4 168167 kill_reason Maximum check online fails reached 168167 mac 168167 bytes_out 0 168167 bytes_in 0 168167 station_ip 37.129.14.19 168167 port 792 168167 unique_id port 168171 username hashtadani4 168171 mac 168171 bytes_out 0 168171 bytes_in 0 168171 station_ip 37.129.14.19 168171 port 403 168171 unique_id port 168171 remote_ip 10.8.1.142 168174 username tahmasebi 168174 mac 168174 bytes_out 0 168174 bytes_in 0 168174 station_ip 5.120.2.227 168174 port 783 168174 unique_id port 168174 remote_ip 10.8.0.42 168180 username hashtadani4 168180 mac 168180 bytes_out 0 168180 bytes_in 0 168180 station_ip 37.129.14.19 168180 port 762 168180 unique_id port 168180 remote_ip 10.8.0.182 168182 username aminvpn 168182 mac 168182 bytes_out 0 168182 bytes_in 0 168182 station_ip 5.126.57.246 168182 port 791 168182 unique_id port 168182 remote_ip 10.8.0.14 168183 username hashtadani4 168183 mac 168183 bytes_out 0 168183 bytes_in 0 168183 station_ip 37.129.14.19 168183 port 790 168183 unique_id port 168183 remote_ip 10.8.0.182 168184 username aminvpn 168184 mac 168184 bytes_out 0 168184 bytes_in 0 168184 station_ip 37.129.220.39 168184 port 783 168184 unique_id port 168184 remote_ip 10.8.0.14 168185 username mehdizare 168185 mac 168185 bytes_out 0 168185 bytes_in 0 168185 station_ip 37.129.122.91 168185 port 785 168185 unique_id port 168185 remote_ip 10.8.0.90 168192 username hashtadani4 168192 kill_reason Maximum check online fails reached 168192 mac 168192 bytes_out 0 168192 bytes_in 0 168192 station_ip 37.129.14.19 168192 port 783 168192 unique_id port 168197 username mostafa_es78 168197 kill_reason Another user logged on this global unique id 168197 mac 168197 bytes_out 0 168197 bytes_in 0 168197 station_ip 83.123.164.53 168197 port 770 168197 unique_id port 168197 remote_ip 10.8.0.194 168198 username aminvpn 168198 mac 168198 bytes_out 0 168198 bytes_in 0 168198 station_ip 31.56.222.155 168198 port 790 168198 unique_id port 168198 remote_ip 10.8.0.14 168209 username mehdizare 168223 mac 168147 bytes_out 0 168147 bytes_in 0 168147 station_ip 5.126.57.246 168147 port 790 168147 unique_id port 168147 remote_ip 10.8.0.14 168150 username hashtadani4 168150 mac 168150 bytes_out 0 168150 bytes_in 0 168150 station_ip 37.129.14.19 168150 port 791 168150 unique_id port 168150 remote_ip 10.8.0.182 168152 username aminvpn 168152 mac 168152 bytes_out 0 168152 bytes_in 0 168152 station_ip 5.126.57.246 168152 port 795 168152 unique_id port 168152 remote_ip 10.8.0.14 168153 username aminvpn 168153 mac 168153 bytes_out 0 168153 bytes_in 0 168153 station_ip 37.129.220.39 168153 port 783 168153 unique_id port 168153 remote_ip 10.8.0.14 168154 username aminvpn 168154 mac 168154 bytes_out 0 168154 bytes_in 0 168154 station_ip 5.126.57.246 168154 port 791 168154 unique_id port 168154 remote_ip 10.8.0.14 168156 username zotaher 168156 mac 168156 bytes_out 0 168156 bytes_in 0 168156 station_ip 37.129.228.20 168156 port 790 168156 unique_id port 168156 remote_ip 10.8.0.222 168158 username hashtadani4 168158 mac 168158 bytes_out 0 168158 bytes_in 0 168158 station_ip 37.129.14.19 168158 port 391 168158 unique_id port 168158 remote_ip 10.8.1.142 168161 username pourshad 168161 mac 168161 bytes_out 0 168161 bytes_in 0 168161 station_ip 5.119.19.50 168161 port 791 168161 unique_id port 168161 remote_ip 10.8.0.18 168166 username mehdizare 168166 mac 168166 bytes_out 0 168166 bytes_in 0 168166 station_ip 37.129.122.91 168166 port 791 168166 unique_id port 168166 remote_ip 10.8.0.90 168168 username aminvpn 168168 mac 168168 bytes_out 0 168168 bytes_in 0 168168 station_ip 37.129.220.39 168168 port 795 168168 unique_id port 168168 remote_ip 10.8.0.14 168170 username pourshad 168170 mac 168170 bytes_out 0 168170 bytes_in 0 168170 station_ip 5.119.19.50 168170 port 783 168170 unique_id port 168170 remote_ip 10.8.0.18 168177 username hashtadani4 168177 mac 168177 bytes_out 0 168177 bytes_in 0 168177 station_ip 37.129.14.19 168177 port 762 168177 unique_id port 168177 remote_ip 10.8.0.182 168178 username farhad2 168178 mac 168178 bytes_out 0 168178 bytes_in 0 168178 station_ip 5.120.81.183 168178 port 762 168178 unique_id port 168178 remote_ip 10.8.0.190 168179 username farhad2 168179 mac 168179 bytes_out 0 168179 bytes_in 0 168179 station_ip 5.120.81.183 168179 port 790 168179 unique_id port 168179 remote_ip 10.8.0.190 168181 username tahmasebi 168181 mac 168181 bytes_out 0 168181 bytes_in 0 168181 station_ip 5.120.2.227 168181 port 783 168181 unique_id port 168181 remote_ip 10.8.0.42 168186 username aminvpn 168186 mac 168186 bytes_out 0 168186 bytes_in 0 168186 station_ip 5.126.57.246 168186 port 791 168186 unique_id port 168186 remote_ip 10.8.0.14 168188 username pourshad 168188 mac 168188 bytes_out 20270 168188 bytes_in 29275 168188 station_ip 5.119.12.43 168188 port 403 168188 unique_id port 168188 remote_ip 10.8.1.154 168189 username aminvpn 168189 mac 168189 bytes_out 0 168189 bytes_in 0 168189 station_ip 31.56.222.155 168189 port 785 168189 unique_id port 168189 remote_ip 10.8.0.14 168191 username aminvpn 168191 mac 168191 bytes_out 0 168191 bytes_in 0 168191 station_ip 5.126.57.246 168191 port 745 168191 unique_id port 168191 remote_ip 10.8.0.14 168194 username zotaher 168194 mac 168194 bytes_out 199490 168194 bytes_in 820231 168194 station_ip 37.129.228.20 168194 port 391 168194 unique_id port 168149 port 391 168149 unique_id port 168149 remote_ip 10.8.1.174 168159 username aminvpn 168159 mac 168159 bytes_out 0 168159 bytes_in 0 168159 station_ip 37.129.220.39 168159 port 792 168159 unique_id port 168159 remote_ip 10.8.0.14 168160 username tahmasebi 168160 mac 168160 bytes_out 0 168160 bytes_in 0 168160 station_ip 5.120.2.227 168160 port 783 168160 unique_id port 168160 remote_ip 10.8.0.42 168162 username mehdizare 168162 mac 168162 bytes_out 334624 168162 bytes_in 247184 168162 station_ip 37.129.122.91 168162 port 406 168162 unique_id port 168162 remote_ip 10.8.1.42 168164 username tahmasebi 168164 mac 168164 bytes_out 0 168164 bytes_in 0 168164 station_ip 5.120.2.227 168164 port 783 168164 unique_id port 168164 remote_ip 10.8.0.42 168169 username tahmasebi 168169 mac 168169 bytes_out 0 168169 bytes_in 0 168169 station_ip 5.120.2.227 168169 port 785 168169 unique_id port 168169 remote_ip 10.8.0.42 168172 username barzegar 168172 mac 168172 bytes_out 0 168172 bytes_in 0 168172 station_ip 5.119.3.156 168172 port 796 168172 unique_id port 168172 remote_ip 10.8.0.234 168173 username hashtadani4 168173 mac 168173 bytes_out 1644 168173 bytes_in 5235 168173 station_ip 37.129.14.19 168173 port 795 168173 unique_id port 168173 remote_ip 10.8.0.182 168175 username meysam 168175 mac 168175 bytes_out 0 168175 bytes_in 0 168175 station_ip 188.158.48.41 168175 port 762 168175 unique_id port 168175 remote_ip 10.8.0.110 168176 username farhad2 168176 mac 168176 bytes_out 166115 168176 bytes_in 659776 168176 station_ip 5.120.81.183 168176 port 790 168176 unique_id port 168176 remote_ip 10.8.0.190 168187 username godarzi 168187 mac 168187 bytes_out 501813 168187 bytes_in 2133474 168187 station_ip 5.119.46.231 168187 port 745 168187 unique_id port 168187 remote_ip 10.8.0.174 168190 username tahmasebi 168190 mac 168190 bytes_out 0 168190 bytes_in 0 168190 station_ip 5.120.2.227 168190 port 790 168190 unique_id port 168190 remote_ip 10.8.0.42 168193 username hashtadani4 168193 mac 168193 bytes_out 0 168193 bytes_in 0 168193 station_ip 37.129.14.19 168193 port 406 168193 unique_id port 168193 remote_ip 10.8.1.142 168195 username alipour 168195 mac 168195 bytes_out 0 168195 bytes_in 0 168195 station_ip 83.122.53.82 168195 port 793 168195 unique_id port 168195 remote_ip 10.8.0.102 168200 username aminvpn 168200 mac 168200 bytes_out 0 168200 bytes_in 0 168200 station_ip 5.126.57.246 168200 port 795 168200 unique_id port 168200 remote_ip 10.8.0.14 168203 username aminvpn 168203 mac 168203 bytes_out 0 168203 bytes_in 0 168203 station_ip 31.56.222.155 168203 port 796 168203 unique_id port 168203 remote_ip 10.8.0.14 168208 username hashtadani4 168208 mac 168208 bytes_out 2702 168208 bytes_in 5140 168208 station_ip 37.129.14.19 168208 port 403 168208 unique_id port 168208 remote_ip 10.8.1.142 168211 username barzegar 168211 mac 168211 bytes_out 0 168211 bytes_in 0 168211 station_ip 5.119.3.156 168211 port 406 168211 unique_id port 168211 remote_ip 10.8.1.174 168215 username hashtadani4 168215 mac 168215 bytes_out 0 168215 bytes_in 0 168215 station_ip 37.129.14.19 168215 port 790 168215 unique_id port 168215 remote_ip 10.8.0.182 168216 username aminvpn 168216 mac 168216 bytes_out 0 168216 bytes_in 0 168216 station_ip 5.126.57.246 168216 port 796 168216 unique_id port 168216 remote_ip 10.8.0.14 168223 username barzegar 168194 remote_ip 10.8.1.246 168196 username farhad2 168196 mac 168196 bytes_out 0 168196 bytes_in 0 168196 station_ip 5.120.81.183 168196 port 762 168196 unique_id port 168196 remote_ip 10.8.0.190 168199 username hashtadani4 168199 kill_reason Maximum check online fails reached 168199 mac 168199 bytes_out 0 168199 bytes_in 0 168199 station_ip 37.129.14.19 168199 port 745 168199 unique_id port 168201 username pourshad 168201 mac 168201 bytes_out 16138 168201 bytes_in 22565 168201 station_ip 5.119.12.43 168201 port 403 168201 unique_id port 168201 remote_ip 10.8.1.154 168202 username barzegar 168202 mac 168202 bytes_out 0 168202 bytes_in 0 168202 station_ip 5.119.3.156 168202 port 406 168202 unique_id port 168202 remote_ip 10.8.1.174 168204 username hashtadani4 168204 kill_reason Maximum check online fails reached 168204 mac 168204 bytes_out 0 168204 bytes_in 0 168204 station_ip 37.129.14.19 168204 port 793 168204 unique_id port 168205 username tahmasebi 168205 mac 168205 bytes_out 0 168205 bytes_in 0 168205 station_ip 5.120.2.227 168205 port 790 168205 unique_id port 168205 remote_ip 10.8.0.42 168206 username tahmasebi 168206 mac 168206 bytes_out 0 168206 bytes_in 0 168206 station_ip 5.120.2.227 168206 port 790 168206 unique_id port 168206 remote_ip 10.8.0.42 168207 username aminvpn 168207 mac 168207 bytes_out 0 168207 bytes_in 0 168207 station_ip 5.126.57.246 168207 port 795 168207 unique_id port 168207 remote_ip 10.8.0.14 168210 username aminvpn 168210 mac 168210 bytes_out 14951 168210 bytes_in 22188 168210 station_ip 31.56.222.155 168210 port 790 168210 unique_id port 168210 remote_ip 10.8.0.14 168212 username tahmasebi 168212 mac 168212 bytes_out 0 168212 bytes_in 0 168212 station_ip 5.120.2.227 168212 port 797 168212 unique_id port 168212 remote_ip 10.8.0.42 168214 username kalantary 168214 mac 168214 bytes_out 0 168214 bytes_in 0 168214 station_ip 83.123.18.109 168214 port 790 168214 unique_id port 168214 remote_ip 10.8.0.98 168220 username godarzi 168220 mac 168220 bytes_out 192017 168220 bytes_in 792978 168220 station_ip 5.119.46.231 168220 port 785 168220 unique_id port 168220 remote_ip 10.8.0.174 168233 username aminvpn 168233 mac 168233 bytes_out 0 168233 bytes_in 0 168233 station_ip 31.56.222.155 168233 port 796 168233 unique_id port 168233 remote_ip 10.8.0.14 168235 username aminvpn 168235 mac 168235 bytes_out 0 168235 bytes_in 0 168235 station_ip 5.120.115.223 168235 port 770 168235 unique_id port 168235 remote_ip 10.8.0.14 168238 username aminvpn 168238 mac 168238 bytes_out 0 168238 bytes_in 0 168238 station_ip 5.120.115.223 168238 port 770 168238 unique_id port 168238 remote_ip 10.8.0.14 168240 username mohammadjavad 168240 mac 168240 bytes_out 0 168240 bytes_in 0 168240 station_ip 83.122.202.100 168240 port 785 168240 unique_id port 168240 remote_ip 10.8.0.142 168243 username mehdizare 168243 kill_reason Another user logged on this global unique id 168243 mac 168243 bytes_out 0 168243 bytes_in 0 168243 station_ip 37.129.122.91 168243 port 791 168243 unique_id port 168244 username barzegar 168244 mac 168244 bytes_out 0 168244 bytes_in 0 168244 station_ip 5.119.3.156 168244 port 406 168244 unique_id port 168244 remote_ip 10.8.1.174 168246 username aminvpn 168246 mac 168246 bytes_out 6982 168246 bytes_in 8928 168246 station_ip 5.120.115.223 168246 port 770 168246 unique_id port 168246 remote_ip 10.8.0.14 168247 username aminvpn 168209 kill_reason Another user logged on this global unique id 168209 mac 168209 bytes_out 0 168209 bytes_in 0 168209 station_ip 37.129.122.91 168209 port 791 168209 unique_id port 168209 remote_ip 10.8.0.90 168213 username hashtadani4 168213 kill_reason Maximum check online fails reached 168213 mac 168213 bytes_out 0 168213 bytes_in 0 168213 station_ip 37.129.14.19 168213 port 403 168213 unique_id port 168217 username tahmasebi 168217 mac 168217 bytes_out 0 168217 bytes_in 0 168217 station_ip 5.120.2.227 168217 port 796 168217 unique_id port 168217 remote_ip 10.8.0.42 168218 username sekonji3 168218 mac 168218 bytes_out 0 168218 bytes_in 0 168218 station_ip 83.123.4.239 168218 port 796 168218 unique_id port 168218 remote_ip 10.8.0.6 168219 username aminvpn 168219 mac 168219 bytes_out 6735 168219 bytes_in 9956 168219 station_ip 31.56.222.155 168219 port 790 168219 unique_id port 168219 remote_ip 10.8.0.14 168221 username tahmasebi 168221 mac 168221 bytes_out 0 168221 bytes_in 0 168221 station_ip 5.120.2.227 168221 port 797 168221 unique_id port 168221 remote_ip 10.8.0.42 168222 username hashtadani4 168222 mac 168222 bytes_out 0 168222 bytes_in 0 168222 station_ip 37.129.14.19 168222 port 797 168222 unique_id port 168222 remote_ip 10.8.0.182 168224 username farhad2 168224 mac 168224 bytes_out 0 168224 bytes_in 0 168224 station_ip 5.120.81.183 168224 port 762 168224 unique_id port 168224 remote_ip 10.8.0.190 168226 username aminvpn 168226 mac 168226 bytes_out 0 168226 bytes_in 0 168226 station_ip 5.126.57.246 168226 port 796 168226 unique_id port 168226 remote_ip 10.8.0.14 168228 username mostafa_es78 168228 mac 168228 bytes_out 0 168228 bytes_in 0 168228 station_ip 83.123.164.53 168228 port 770 168228 unique_id port 168229 username aminvpn 168229 mac 168229 bytes_out 6299 168229 bytes_in 9195 168229 station_ip 31.56.222.155 168229 port 790 168229 unique_id port 168229 remote_ip 10.8.0.14 168230 username hashtadani4 168230 mac 168230 bytes_out 0 168230 bytes_in 0 168230 station_ip 37.129.14.19 168230 port 790 168230 unique_id port 168230 remote_ip 10.8.0.182 168232 username aminvpn 168232 mac 168232 bytes_out 0 168232 bytes_in 0 168232 station_ip 5.126.57.246 168232 port 770 168232 unique_id port 168232 remote_ip 10.8.0.14 168236 username hashtadani4 168236 mac 168236 bytes_out 0 168236 bytes_in 0 168236 station_ip 37.129.14.19 168236 port 796 168236 unique_id port 168236 remote_ip 10.8.0.182 168237 username aminvpn 168237 mac 168237 bytes_out 0 168237 bytes_in 0 168237 station_ip 31.56.222.155 168237 port 797 168237 unique_id port 168237 remote_ip 10.8.0.14 168241 username aminvpn 168241 mac 168241 bytes_out 0 168241 bytes_in 0 168241 station_ip 5.126.57.246 168241 port 796 168241 unique_id port 168241 remote_ip 10.8.0.14 168242 username hashtadani4 168242 mac 168242 bytes_out 0 168242 bytes_in 0 168242 station_ip 37.129.14.19 168242 port 785 168242 unique_id port 168242 remote_ip 10.8.0.182 168245 username tahmasebi 168245 mac 168245 bytes_out 0 168245 bytes_in 0 168245 station_ip 5.120.2.227 168245 port 796 168245 unique_id port 168245 remote_ip 10.8.0.42 168251 username godarzi 168251 mac 168251 bytes_out 854657 168251 bytes_in 9573861 168251 station_ip 5.119.46.231 168251 port 762 168251 unique_id port 168251 remote_ip 10.8.0.174 168252 username aminvpn 168252 mac 168252 bytes_out 0 168252 bytes_in 0 168223 bytes_out 0 168223 bytes_in 0 168223 station_ip 5.119.3.156 168223 port 790 168223 unique_id port 168223 remote_ip 10.8.0.234 168225 username mehdizare 168225 kill_reason Another user logged on this global unique id 168225 mac 168225 bytes_out 0 168225 bytes_in 0 168225 station_ip 37.129.122.91 168225 port 791 168225 unique_id port 168227 username hashtadani4 168227 mac 168227 bytes_out 0 168227 bytes_in 0 168227 station_ip 37.129.14.19 168227 port 762 168227 unique_id port 168227 remote_ip 10.8.0.182 168231 username hashtadani4 168231 mac 168231 bytes_out 0 168231 bytes_in 0 168231 station_ip 37.129.14.19 168231 port 790 168231 unique_id port 168231 remote_ip 10.8.0.182 168234 username moradi 168234 mac 168234 bytes_out 1191864 168234 bytes_in 13312833 168234 station_ip 46.225.232.219 168234 port 784 168234 unique_id port 168234 remote_ip 10.8.0.126 168239 username hashtadani4 168239 mac 168239 bytes_out 0 168239 bytes_in 0 168239 station_ip 37.129.14.19 168239 port 770 168239 unique_id port 168239 remote_ip 10.8.0.182 168249 username hashtadani4 168249 mac 168249 bytes_out 0 168249 bytes_in 0 168249 station_ip 37.129.14.19 168249 port 770 168249 unique_id port 168249 remote_ip 10.8.0.182 168255 username aminvpn 168255 mac 168255 bytes_out 0 168255 bytes_in 0 168255 station_ip 5.120.115.223 168255 port 788 168255 unique_id port 168255 remote_ip 10.8.0.14 168258 username aminvpn 168258 mac 168258 bytes_out 0 168258 bytes_in 0 168258 station_ip 5.120.115.223 168258 port 788 168258 unique_id port 168258 remote_ip 10.8.0.14 168264 username aminvpn 168264 mac 168264 bytes_out 0 168264 bytes_in 0 168264 station_ip 5.120.115.223 168264 port 796 168264 unique_id port 168264 remote_ip 10.8.0.14 168268 username kamali2 168268 mac 168268 bytes_out 71594 168268 bytes_in 42335 168268 station_ip 5.120.123.242 168268 port 788 168268 unique_id port 168268 remote_ip 10.8.0.158 168272 username tahmasebi 168272 mac 168272 bytes_out 0 168272 bytes_in 0 168272 station_ip 5.120.2.227 168272 port 788 168272 unique_id port 168272 remote_ip 10.8.0.42 168274 username vanila 168274 mac 168274 bytes_out 0 168274 bytes_in 0 168274 station_ip 37.129.51.166 168274 port 790 168274 unique_id port 168274 remote_ip 10.8.0.178 168276 username shadkam 168276 mac 168276 bytes_out 0 168276 bytes_in 0 168276 station_ip 83.122.29.133 168276 port 770 168276 unique_id port 168276 remote_ip 10.8.0.62 168279 username mehdizare 168279 mac 168279 bytes_out 0 168279 bytes_in 0 168279 station_ip 37.129.122.91 168279 port 791 168279 unique_id port 168282 username shadkam 168282 mac 168282 bytes_out 84876 168282 bytes_in 422484 168282 station_ip 83.123.100.222 168282 port 799 168282 unique_id port 168282 remote_ip 10.8.0.62 168291 username barzegar 168291 mac 168291 bytes_out 0 168291 bytes_in 0 168291 station_ip 5.119.3.156 168291 port 407 168291 unique_id port 168291 remote_ip 10.8.1.174 168292 username zotaher 168292 mac 168292 bytes_out 0 168292 bytes_in 0 168292 station_ip 37.129.228.20 168292 port 391 168292 unique_id port 168292 remote_ip 10.8.1.246 168295 username sedighe 168295 mac 168295 bytes_out 236027 168295 bytes_in 1124997 168295 station_ip 83.122.236.21 168295 port 798 168295 unique_id port 168295 remote_ip 10.8.0.146 168301 username barzegar 168301 mac 168301 bytes_out 0 168301 bytes_in 0 168301 station_ip 5.119.3.156 168301 port 790 168247 mac 168247 bytes_out 0 168247 bytes_in 0 168247 station_ip 31.56.222.155 168247 port 785 168247 unique_id port 168247 remote_ip 10.8.0.14 168248 username aminvpn 168248 mac 168248 bytes_out 6467 168248 bytes_in 8646 168248 station_ip 5.120.115.223 168248 port 770 168248 unique_id port 168248 remote_ip 10.8.0.14 168250 username aminvpn 168250 mac 168250 bytes_out 0 168250 bytes_in 0 168250 station_ip 5.126.57.246 168250 port 785 168250 unique_id port 168250 remote_ip 10.8.0.14 168253 username malekpoir 168253 mac 168253 bytes_out 0 168253 bytes_in 0 168253 station_ip 5.119.214.100 168253 port 788 168253 unique_id port 168257 username aminvpn 168257 mac 168257 bytes_out 0 168257 bytes_in 0 168257 station_ip 31.56.222.155 168257 port 798 168257 unique_id port 168257 remote_ip 10.8.0.14 168260 username aminvpn 168260 mac 168260 bytes_out 0 168260 bytes_in 0 168260 station_ip 31.56.222.155 168260 port 788 168260 unique_id port 168260 remote_ip 10.8.0.14 168261 username kamali2 168261 mac 168261 bytes_out 384319 168261 bytes_in 45478 168261 station_ip 5.120.61.112 168261 port 797 168261 unique_id port 168261 remote_ip 10.8.0.158 168262 username aminvpn 168262 mac 168262 bytes_out 0 168262 bytes_in 0 168262 station_ip 5.120.115.223 168262 port 796 168262 unique_id port 168262 remote_ip 10.8.0.14 168263 username aminvpn 168263 mac 168263 bytes_out 0 168263 bytes_in 0 168263 station_ip 31.56.222.155 168263 port 797 168263 unique_id port 168263 remote_ip 10.8.0.14 168267 username aminvpn 168267 mac 168267 bytes_out 0 168267 bytes_in 0 168267 station_ip 5.120.115.223 168267 port 796 168267 unique_id port 168267 remote_ip 10.8.0.14 168270 username aminvpn 168270 mac 168270 bytes_out 0 168270 bytes_in 0 168270 station_ip 31.56.222.155 168270 port 788 168270 unique_id port 168270 remote_ip 10.8.0.14 168271 username barzegar 168271 mac 168271 bytes_out 0 168271 bytes_in 0 168271 station_ip 5.119.3.156 168271 port 407 168271 unique_id port 168271 remote_ip 10.8.1.174 168273 username mehdizare 168273 kill_reason Another user logged on this global unique id 168273 mac 168273 bytes_out 0 168273 bytes_in 0 168273 station_ip 37.129.122.91 168273 port 791 168273 unique_id port 168275 username hashtadani4 168275 mac 168275 bytes_out 0 168275 bytes_in 0 168275 station_ip 37.129.14.19 168275 port 770 168275 unique_id port 168278 username aminvpn 168278 mac 168278 bytes_out 0 168278 bytes_in 0 168278 station_ip 5.120.115.223 168278 port 797 168278 unique_id port 168278 remote_ip 10.8.0.14 168284 username hashtadani4 168284 mac 168284 bytes_out 0 168284 bytes_in 0 168284 station_ip 37.129.14.19 168284 port 407 168284 unique_id port 168284 remote_ip 10.8.1.142 168286 username hashtadani4 168286 kill_reason Maximum check online fails reached 168286 mac 168286 bytes_out 0 168286 bytes_in 0 168286 station_ip 37.129.14.19 168286 port 791 168286 unique_id port 168288 username mehdizare 168288 mac 168288 bytes_out 18273 168288 bytes_in 20521 168288 station_ip 37.129.122.91 168288 port 795 168288 unique_id port 168288 remote_ip 10.8.0.90 168289 username hashtadani4 168289 mac 168289 bytes_out 0 168289 bytes_in 0 168289 station_ip 37.129.14.19 168289 port 799 168289 unique_id port 168289 remote_ip 10.8.0.182 168296 username zotaher 168296 mac 168296 bytes_out 11576 168296 bytes_in 6810 168296 station_ip 37.129.228.20 168296 port 391 168252 station_ip 5.120.115.223 168252 port 797 168252 unique_id port 168252 remote_ip 10.8.0.14 168254 username aminvpn 168254 mac 168254 bytes_out 0 168254 bytes_in 0 168254 station_ip 31.56.222.155 168254 port 762 168254 unique_id port 168254 remote_ip 10.8.0.14 168256 username houshang 168256 mac 168256 bytes_out 0 168256 bytes_in 0 168256 station_ip 5.120.132.163 168256 port 796 168256 unique_id port 168256 remote_ip 10.8.0.134 168259 username aminvpn 168259 mac 168259 bytes_out 0 168259 bytes_in 0 168259 station_ip 5.126.57.246 168259 port 796 168259 unique_id port 168259 remote_ip 10.8.0.14 168265 username hashtadani4 168265 kill_reason Another user logged on this global unique id 168265 mac 168265 bytes_out 0 168265 bytes_in 0 168265 station_ip 37.129.14.19 168265 port 770 168265 unique_id port 168265 remote_ip 10.8.0.182 168266 username aminvpn 168266 mac 168266 bytes_out 0 168266 bytes_in 0 168266 station_ip 31.56.222.155 168266 port 797 168266 unique_id port 168266 remote_ip 10.8.0.14 168269 username aminvpn 168269 mac 168269 bytes_out 0 168269 bytes_in 0 168269 station_ip 5.126.57.246 168269 port 797 168269 unique_id port 168269 remote_ip 10.8.0.14 168277 username pourshad 168277 mac 168277 bytes_out 147879 168277 bytes_in 1030522 168277 station_ip 5.119.12.43 168277 port 795 168277 unique_id port 168277 remote_ip 10.8.0.18 168280 username hashtadani4 168280 mac 168280 bytes_out 0 168280 bytes_in 0 168280 station_ip 37.129.14.19 168280 port 791 168280 unique_id port 168280 remote_ip 10.8.0.182 168281 username aminvpn 168281 mac 168281 bytes_out 0 168281 bytes_in 0 168281 station_ip 5.126.57.246 168281 port 770 168281 unique_id port 168281 remote_ip 10.8.0.14 168283 username meysam 168283 mac 168283 bytes_out 0 168283 bytes_in 0 168283 station_ip 188.158.48.41 168283 port 790 168283 unique_id port 168283 remote_ip 10.8.0.110 168285 username hashtadani4 168285 mac 168285 bytes_out 0 168285 bytes_in 0 168285 station_ip 37.129.14.19 168285 port 770 168285 unique_id port 168285 remote_ip 10.8.0.182 168287 username kordestani 168287 mac 168287 bytes_out 1453311 168287 bytes_in 21566059 168287 station_ip 151.235.91.97 168287 port 770 168287 unique_id port 168287 remote_ip 10.8.0.74 168290 username tahmasebi 168290 mac 168290 bytes_out 0 168290 bytes_in 0 168290 station_ip 5.120.2.227 168290 port 795 168290 unique_id port 168290 remote_ip 10.8.0.42 168293 username aminvpn 168293 mac 168293 bytes_out 0 168293 bytes_in 0 168293 station_ip 5.120.115.223 168293 port 797 168293 unique_id port 168293 remote_ip 10.8.0.14 168294 username aminvpn 168294 mac 168294 bytes_out 0 168294 bytes_in 0 168294 station_ip 5.126.57.246 168294 port 799 168294 unique_id port 168294 remote_ip 10.8.0.14 168298 username morteza 168298 kill_reason Another user logged on this global unique id 168298 mac 168298 bytes_out 0 168298 bytes_in 0 168298 station_ip 83.122.26.92 168298 port 762 168298 unique_id port 168298 remote_ip 10.8.0.46 168300 username moradi 168300 mac 168300 bytes_out 764102 168300 bytes_in 7687241 168300 station_ip 46.225.232.219 168300 port 406 168300 unique_id port 168300 remote_ip 10.8.1.202 168306 username barzegar 168306 mac 168306 bytes_out 0 168306 bytes_in 0 168306 station_ip 5.119.3.156 168306 port 798 168306 unique_id port 168306 remote_ip 10.8.0.234 168308 username hashtadani4 168308 mac 168308 bytes_out 0 168308 bytes_in 0 168296 unique_id port 168296 remote_ip 10.8.1.246 168297 username meysam 168297 mac 168297 bytes_out 0 168297 bytes_in 0 168297 station_ip 188.158.48.41 168297 port 790 168297 unique_id port 168297 remote_ip 10.8.0.110 168299 username barzegar 168299 kill_reason Maximum check online fails reached 168299 mac 168299 bytes_out 0 168299 bytes_in 0 168299 station_ip 5.119.3.156 168299 port 408 168299 unique_id port 168302 username hashtadani4 168302 mac 168302 bytes_out 0 168302 bytes_in 0 168302 station_ip 37.129.14.19 168302 port 798 168302 unique_id port 168302 remote_ip 10.8.0.182 168303 username aminvpn 168303 mac 168303 bytes_out 0 168303 bytes_in 0 168303 station_ip 5.120.115.223 168303 port 797 168303 unique_id port 168303 remote_ip 10.8.0.14 168309 username vanila 168309 mac 168309 bytes_out 0 168309 bytes_in 0 168309 station_ip 37.129.51.166 168309 port 788 168309 unique_id port 168309 remote_ip 10.8.0.178 168310 username aminvpn 168310 mac 168310 bytes_out 4774 168310 bytes_in 6827 168310 station_ip 5.120.115.223 168310 port 797 168310 unique_id port 168310 remote_ip 10.8.0.14 168311 username aminvpn 168311 mac 168311 bytes_out 0 168311 bytes_in 0 168311 station_ip 5.126.57.246 168311 port 788 168311 unique_id port 168311 remote_ip 10.8.0.14 168313 username aminvpn 168313 mac 168313 bytes_out 0 168313 bytes_in 0 168313 station_ip 5.120.115.223 168313 port 802 168313 unique_id port 168313 remote_ip 10.8.0.14 168316 username aminvpn 168316 mac 168316 bytes_out 0 168316 bytes_in 0 168316 station_ip 5.126.57.246 168316 port 788 168316 unique_id port 168316 remote_ip 10.8.0.14 168317 username tahmasebi 168317 mac 168317 bytes_out 0 168317 bytes_in 0 168317 station_ip 5.120.2.227 168317 port 788 168317 unique_id port 168317 remote_ip 10.8.0.42 168319 username vanila 168319 mac 168319 bytes_out 0 168319 bytes_in 0 168319 station_ip 37.129.51.166 168319 port 801 168319 unique_id port 168319 remote_ip 10.8.0.178 168321 username godarzi 168321 mac 168321 bytes_out 0 168321 bytes_in 0 168321 station_ip 5.119.46.231 168321 port 799 168321 unique_id port 168321 remote_ip 10.8.0.174 168325 username hashtadani4 168325 mac 168325 bytes_out 0 168325 bytes_in 0 168325 station_ip 37.129.14.19 168325 port 799 168325 unique_id port 168325 remote_ip 10.8.0.182 168327 username kamali2 168327 mac 168327 bytes_out 0 168327 bytes_in 0 168327 station_ip 5.120.123.242 168327 port 796 168327 unique_id port 168327 remote_ip 10.8.0.158 168329 username jafari 168329 kill_reason Another user logged on this global unique id 168329 mac 168329 bytes_out 0 168329 bytes_in 0 168329 station_ip 37.137.18.243 168329 port 795 168329 unique_id port 168331 username yarmohamadi 168331 mac 168331 bytes_out 3481501 168331 bytes_in 13528016 168331 station_ip 5.119.108.3 168331 port 407 168331 unique_id port 168331 remote_ip 10.8.1.234 168335 username pourshad 168335 mac 168335 bytes_out 0 168335 bytes_in 0 168335 station_ip 5.119.12.43 168335 port 800 168335 unique_id port 168335 remote_ip 10.8.0.18 168338 username tahmasebi 168338 mac 168338 bytes_out 0 168338 bytes_in 0 168338 station_ip 5.120.2.227 168338 port 407 168338 unique_id port 168338 remote_ip 10.8.1.90 168340 username hashtadani4 168340 mac 168340 bytes_out 0 168340 bytes_in 0 168340 station_ip 37.129.14.19 168340 port 796 168340 unique_id port 168340 remote_ip 10.8.0.182 168342 username hashtadani4 168301 unique_id port 168301 remote_ip 10.8.0.234 168304 username moradi 168304 mac 168304 bytes_out 834904 168304 bytes_in 7918874 168304 station_ip 83.122.248.94 168304 port 391 168304 unique_id port 168304 remote_ip 10.8.1.202 168305 username aminvpn 168305 mac 168305 bytes_out 0 168305 bytes_in 0 168305 station_ip 5.126.57.246 168305 port 798 168305 unique_id port 168305 remote_ip 10.8.0.14 168307 username saeed9658 168307 kill_reason Another user logged on this global unique id 168307 mac 168307 bytes_out 0 168307 bytes_in 0 168307 station_ip 5.119.176.146 168307 port 794 168307 unique_id port 168307 remote_ip 10.8.0.166 168320 username aminvpn 168320 mac 168320 bytes_out 0 168320 bytes_in 0 168320 station_ip 5.120.115.223 168320 port 803 168320 unique_id port 168320 remote_ip 10.8.0.14 168323 username vanila 168323 mac 168323 bytes_out 5716 168323 bytes_in 6818 168323 station_ip 37.129.51.166 168323 port 788 168323 unique_id port 168323 remote_ip 10.8.0.178 168324 username mostafa_es78 168324 mac 168324 bytes_out 2260002 168324 bytes_in 31887270 168324 station_ip 37.129.123.185 168324 port 790 168324 unique_id port 168324 remote_ip 10.8.0.194 168328 username godarzi 168328 mac 168328 bytes_out 0 168328 bytes_in 0 168328 station_ip 5.119.46.231 168328 port 790 168328 unique_id port 168328 remote_ip 10.8.0.174 168330 username barzegar 168330 mac 168330 bytes_out 0 168330 bytes_in 0 168330 station_ip 5.119.3.156 168330 port 796 168330 unique_id port 168330 remote_ip 10.8.0.234 168334 username hashtadani4 168334 mac 168334 bytes_out 0 168334 bytes_in 0 168334 station_ip 37.129.14.19 168334 port 788 168334 unique_id port 168334 remote_ip 10.8.0.182 168337 username jafari 168337 kill_reason Another user logged on this global unique id 168337 mac 168337 bytes_out 0 168337 bytes_in 0 168337 station_ip 37.137.18.243 168337 port 795 168337 unique_id port 168341 username jafari 168341 mac 168341 bytes_out 0 168341 bytes_in 0 168341 station_ip 37.137.18.243 168341 port 795 168341 unique_id port 168345 username hashtadani4 168345 kill_reason Maximum check online fails reached 168345 mac 168345 bytes_out 0 168345 bytes_in 0 168345 station_ip 37.129.14.19 168345 port 795 168345 unique_id port 168346 username hashtadani4 168346 mac 168346 bytes_out 0 168346 bytes_in 0 168346 station_ip 37.129.14.19 168346 port 407 168346 unique_id port 168346 remote_ip 10.8.1.142 168348 username hashtadani4 168348 mac 168348 bytes_out 0 168348 bytes_in 0 168348 station_ip 37.129.14.19 168348 port 407 168348 unique_id port 168348 remote_ip 10.8.1.142 168349 username tahmasebi 168349 mac 168349 bytes_out 0 168349 bytes_in 0 168349 station_ip 5.120.2.227 168349 port 407 168349 unique_id port 168349 remote_ip 10.8.1.90 168355 username hashtadani4 168355 kill_reason Maximum check online fails reached 168355 mac 168355 bytes_out 0 168355 bytes_in 0 168355 station_ip 37.129.14.19 168355 port 800 168355 unique_id port 168359 username pourshad 168359 mac 168359 bytes_out 23769 168359 bytes_in 24454 168359 station_ip 5.119.82.85 168359 port 803 168359 unique_id port 168359 remote_ip 10.8.0.18 168360 username tahmasebi 168360 mac 168360 bytes_out 0 168360 bytes_in 0 168360 station_ip 5.120.2.227 168360 port 406 168360 unique_id port 168360 remote_ip 10.8.1.90 168361 username hashtadani4 168361 mac 168361 bytes_out 0 168361 bytes_in 0 168361 station_ip 37.129.14.19 168361 port 794 168361 unique_id port 168308 station_ip 37.129.14.19 168308 port 801 168308 unique_id port 168308 remote_ip 10.8.0.182 168312 username hashtadani4 168312 mac 168312 bytes_out 0 168312 bytes_in 0 168312 station_ip 37.129.14.19 168312 port 788 168312 unique_id port 168312 remote_ip 10.8.0.182 168314 username jafari 168314 kill_reason Another user logged on this global unique id 168314 mac 168314 bytes_out 0 168314 bytes_in 0 168314 station_ip 37.137.18.243 168314 port 795 168314 unique_id port 168314 remote_ip 10.8.0.242 168315 username tahmasebi 168315 mac 168315 bytes_out 0 168315 bytes_in 0 168315 station_ip 5.120.2.227 168315 port 803 168315 unique_id port 168315 remote_ip 10.8.0.42 168318 username houshang 168318 mac 168318 bytes_out 420505 168318 bytes_in 5003682 168318 station_ip 5.120.132.163 168318 port 797 168318 unique_id port 168318 remote_ip 10.8.0.134 168322 username aminvpn 168322 mac 168322 bytes_out 0 168322 bytes_in 0 168322 station_ip 5.126.57.246 168322 port 797 168322 unique_id port 168322 remote_ip 10.8.0.14 168326 username barzegar 168326 mac 168326 bytes_out 0 168326 bytes_in 0 168326 station_ip 5.119.3.156 168326 port 788 168326 unique_id port 168326 remote_ip 10.8.0.234 168332 username kamali2 168332 mac 168332 bytes_out 0 168332 bytes_in 0 168332 station_ip 5.120.123.242 168332 port 788 168332 unique_id port 168332 remote_ip 10.8.0.158 168333 username barzegar 168333 mac 168333 bytes_out 0 168333 bytes_in 0 168333 station_ip 5.119.3.156 168333 port 407 168333 unique_id port 168333 remote_ip 10.8.1.174 168336 username barzegar 168336 mac 168336 bytes_out 0 168336 bytes_in 0 168336 station_ip 5.119.3.156 168336 port 796 168336 unique_id port 168336 remote_ip 10.8.0.234 168339 username kalantary 168339 mac 168339 bytes_out 223589 168339 bytes_in 941629 168339 station_ip 37.129.68.153 168339 port 788 168339 unique_id port 168339 remote_ip 10.8.0.98 168343 username hashtadani4 168343 mac 168343 bytes_out 0 168343 bytes_in 0 168343 station_ip 37.129.14.19 168343 port 407 168343 unique_id port 168343 remote_ip 10.8.1.142 168347 username hashtadani4 168347 kill_reason Maximum check online fails reached 168347 mac 168347 bytes_out 0 168347 bytes_in 0 168347 station_ip 37.129.14.19 168347 port 796 168347 unique_id port 168350 username hashtadani4 168350 mac 168350 bytes_out 0 168350 bytes_in 0 168350 station_ip 37.129.14.19 168350 port 800 168350 unique_id port 168350 remote_ip 10.8.0.182 168354 username shadkam 168354 mac 168354 bytes_out 7223 168354 bytes_in 41807 168354 station_ip 37.129.4.91 168354 port 801 168354 unique_id port 168354 remote_ip 10.8.0.62 168358 username saeed9658 168358 mac 168358 bytes_out 0 168358 bytes_in 0 168358 station_ip 5.119.176.146 168358 port 794 168358 unique_id port 168363 username pourshad 168363 mac 168363 bytes_out 13553 168363 bytes_in 11412 168363 station_ip 5.119.82.85 168363 port 803 168363 unique_id port 168363 remote_ip 10.8.0.18 168365 username barzegar 168365 mac 168365 bytes_out 0 168365 bytes_in 0 168365 station_ip 5.119.3.156 168365 port 406 168365 unique_id port 168365 remote_ip 10.8.1.174 168368 username saeed9658 168368 mac 168368 bytes_out 0 168368 bytes_in 0 168368 station_ip 5.119.176.146 168368 port 794 168368 unique_id port 168368 remote_ip 10.8.0.166 168369 username khademi 168369 mac 168369 bytes_out 0 168369 bytes_in 0 168369 station_ip 83.123.16.169 168369 port 773 168342 kill_reason Maximum check online fails reached 168342 mac 168342 bytes_out 0 168342 bytes_in 0 168342 station_ip 37.129.14.19 168342 port 788 168342 unique_id port 168344 username hashtadani4 168344 mac 168344 bytes_out 0 168344 bytes_in 0 168344 station_ip 37.129.14.19 168344 port 407 168344 unique_id port 168344 remote_ip 10.8.1.142 168351 username morteza 168351 kill_reason Another user logged on this global unique id 168351 mac 168351 bytes_out 0 168351 bytes_in 0 168351 station_ip 83.122.26.92 168351 port 762 168351 unique_id port 168352 username tahmasebi 168352 mac 168352 bytes_out 0 168352 bytes_in 0 168352 station_ip 5.120.2.227 168352 port 407 168352 unique_id port 168352 remote_ip 10.8.1.90 168353 username pourshad 168353 mac 168353 bytes_out 0 168353 bytes_in 0 168353 station_ip 5.119.12.43 168353 port 799 168353 unique_id port 168353 remote_ip 10.8.0.18 168356 username barzegar 168356 mac 168356 bytes_out 2793 168356 bytes_in 5203 168356 station_ip 5.119.3.156 168356 port 799 168356 unique_id port 168356 remote_ip 10.8.0.234 168357 username moradi 168357 mac 168357 bytes_out 211070 168357 bytes_in 305296 168357 station_ip 46.225.232.219 168357 port 406 168357 unique_id port 168357 remote_ip 10.8.1.202 168362 username hashtadani4 168362 mac 168362 bytes_out 0 168362 bytes_in 0 168362 station_ip 37.129.14.19 168362 port 794 168362 unique_id port 168362 remote_ip 10.8.0.182 168364 username farhad2 168364 mac 168364 bytes_out 324743 168364 bytes_in 1589838 168364 station_ip 5.120.31.0 168364 port 799 168364 unique_id port 168364 remote_ip 10.8.0.190 168366 username hashtadani4 168366 mac 168366 bytes_out 0 168366 bytes_in 0 168366 station_ip 37.129.14.19 168366 port 803 168366 unique_id port 168366 remote_ip 10.8.0.182 168370 username yarmohamadi 168370 mac 168370 bytes_out 0 168370 bytes_in 0 168370 station_ip 5.119.108.3 168370 port 391 168370 unique_id port 168370 remote_ip 10.8.1.234 168371 username hashtadani4 168371 mac 168371 bytes_out 0 168371 bytes_in 0 168371 station_ip 37.129.14.19 168371 port 804 168371 unique_id port 168371 remote_ip 10.8.0.182 168372 username tahmasebi 168372 mac 168372 bytes_out 0 168372 bytes_in 0 168372 station_ip 5.120.2.227 168372 port 391 168372 unique_id port 168372 remote_ip 10.8.1.90 168377 username aminvpn 168377 mac 168377 bytes_out 0 168377 bytes_in 0 168377 station_ip 83.123.137.121 168377 port 805 168377 unique_id port 168377 remote_ip 10.8.0.14 168382 username hashtadani4 168382 mac 168382 bytes_out 0 168382 bytes_in 0 168382 station_ip 37.129.14.19 168382 port 802 168382 unique_id port 168382 remote_ip 10.8.0.182 168384 username barzegar 168384 mac 168384 bytes_out 0 168384 bytes_in 0 168384 station_ip 5.119.3.156 168384 port 802 168384 unique_id port 168384 remote_ip 10.8.0.234 168386 username farhad2 168386 kill_reason Another user logged on this global unique id 168386 mac 168386 bytes_out 0 168386 bytes_in 0 168386 station_ip 5.120.31.0 168386 port 799 168386 unique_id port 168387 username tahmasebi 168387 mac 168387 bytes_out 788697 168387 bytes_in 6306669 168387 station_ip 5.120.2.227 168387 port 391 168387 unique_id port 168387 remote_ip 10.8.1.90 168391 username barzegar 168391 mac 168391 bytes_out 0 168391 bytes_in 0 168391 station_ip 5.119.3.156 168391 port 391 168391 unique_id port 168391 remote_ip 10.8.1.174 168392 username tahmasebi 168392 mac 168392 bytes_out 0 168361 remote_ip 10.8.0.182 168367 username pourshad 168367 mac 168367 bytes_out 0 168367 bytes_in 0 168367 station_ip 5.119.82.85 168367 port 794 168367 unique_id port 168367 remote_ip 10.8.0.18 168374 username hashtadani4 168374 kill_reason Maximum check online fails reached 168374 mac 168374 bytes_out 0 168374 bytes_in 0 168374 station_ip 37.129.14.19 168374 port 804 168374 unique_id port 168379 username alikomsari 168379 mac 168379 bytes_out 3688551 168379 bytes_in 26126940 168379 station_ip 5.120.132.107 168379 port 802 168379 unique_id port 168379 remote_ip 10.8.0.26 168380 username hashtadani4 168380 mac 168380 bytes_out 0 168380 bytes_in 0 168380 station_ip 37.129.14.19 168380 port 407 168380 unique_id port 168380 remote_ip 10.8.1.142 168390 username hashtadani4 168390 mac 168390 bytes_out 0 168390 bytes_in 0 168390 station_ip 37.129.14.19 168390 port 798 168390 unique_id port 168390 remote_ip 10.8.0.182 168395 username farhad2 168395 mac 168395 bytes_out 0 168395 bytes_in 0 168395 station_ip 5.120.31.0 168395 port 799 168395 unique_id port 168396 username houshang 168396 mac 168396 bytes_out 0 168396 bytes_in 0 168396 station_ip 5.120.132.163 168396 port 794 168396 unique_id port 168396 remote_ip 10.8.0.134 168398 username farhad2 168398 mac 168398 bytes_out 0 168398 bytes_in 0 168398 station_ip 5.120.31.0 168398 port 798 168398 unique_id port 168398 remote_ip 10.8.0.190 168401 username barzegar 168401 mac 168401 bytes_out 0 168401 bytes_in 0 168401 station_ip 5.119.3.156 168401 port 407 168401 unique_id port 168401 remote_ip 10.8.1.174 168405 username pourshad 168405 mac 168405 bytes_out 0 168405 bytes_in 0 168405 station_ip 5.114.143.173 168405 port 407 168405 unique_id port 168405 remote_ip 10.8.1.154 168408 username kalantary 168408 mac 168408 bytes_out 0 168408 bytes_in 0 168408 station_ip 37.129.62.97 168408 port 799 168408 unique_id port 168408 remote_ip 10.8.0.98 168410 username yarmohamadi 168410 mac 168410 bytes_out 1542386 168410 bytes_in 4896207 168410 station_ip 5.119.108.3 168410 port 406 168410 unique_id port 168410 remote_ip 10.8.1.234 168415 username komeil 168415 mac 168415 bytes_out 0 168415 bytes_in 0 168415 station_ip 5.120.166.69 168415 port 807 168415 unique_id port 168415 remote_ip 10.8.0.70 168416 username tahmasebi 168416 mac 168416 bytes_out 0 168416 bytes_in 0 168416 station_ip 5.120.2.227 168416 port 797 168416 unique_id port 168416 remote_ip 10.8.0.42 168417 username vanila 168417 mac 168417 bytes_out 3826149 168417 bytes_in 20119324 168417 station_ip 83.122.139.126 168417 port 790 168417 unique_id port 168417 remote_ip 10.8.0.178 168420 username tahmasebi 168420 mac 168420 bytes_out 0 168420 bytes_in 0 168420 station_ip 5.120.2.227 168420 port 797 168420 unique_id port 168420 remote_ip 10.8.0.42 168427 username aminvpn 168427 mac 168427 bytes_out 0 168427 bytes_in 0 168427 station_ip 5.126.57.246 168427 port 807 168427 unique_id port 168427 remote_ip 10.8.0.14 168428 username aminvpn 168428 mac 168428 bytes_out 0 168428 bytes_in 0 168428 station_ip 5.119.94.158 168428 port 797 168428 unique_id port 168428 remote_ip 10.8.0.14 168432 username tahmasebi 168432 mac 168432 bytes_out 9175 168432 bytes_in 13536 168432 station_ip 5.120.2.227 168432 port 773 168432 unique_id port 168432 remote_ip 10.8.0.42 168436 username farhad2 168436 kill_reason Another user logged on this global unique id 168436 mac 168369 unique_id port 168369 remote_ip 10.8.0.10 168373 username barzegar 168373 mac 168373 bytes_out 0 168373 bytes_in 0 168373 station_ip 5.119.3.156 168373 port 805 168373 unique_id port 168373 remote_ip 10.8.0.234 168375 username moradi 168375 kill_reason Another user logged on this global unique id 168375 mac 168375 bytes_out 0 168375 bytes_in 0 168375 station_ip 46.225.232.219 168375 port 801 168375 unique_id port 168375 remote_ip 10.8.0.126 168376 username aminvpn 168376 mac 168376 bytes_out 4313449 168376 bytes_in 11514773 168376 station_ip 5.126.57.246 168376 port 797 168376 unique_id port 168376 remote_ip 10.8.0.14 168378 username farhad2 168378 kill_reason Another user logged on this global unique id 168378 mac 168378 bytes_out 0 168378 bytes_in 0 168378 station_ip 5.120.31.0 168378 port 799 168378 unique_id port 168378 remote_ip 10.8.0.190 168381 username morteza 168381 kill_reason Another user logged on this global unique id 168381 mac 168381 bytes_out 0 168381 bytes_in 0 168381 station_ip 83.122.26.92 168381 port 762 168381 unique_id port 168383 username mirzaei 168383 kill_reason Another user logged on this global unique id 168383 mac 168383 bytes_out 0 168383 bytes_in 0 168383 station_ip 5.120.27.93 168383 port 784 168383 unique_id port 168383 remote_ip 10.8.0.66 168385 username saeed9658 168385 mac 168385 bytes_out 411108 168385 bytes_in 6725021 168385 station_ip 5.119.176.146 168385 port 794 168385 unique_id port 168385 remote_ip 10.8.0.166 168388 username mohammadjavad 168388 mac 168388 bytes_out 0 168388 bytes_in 0 168388 station_ip 113.203.7.149 168388 port 798 168388 unique_id port 168388 remote_ip 10.8.0.142 168389 username jafari 168389 kill_reason Another user logged on this global unique id 168389 mac 168389 bytes_out 0 168389 bytes_in 0 168389 station_ip 37.137.18.243 168389 port 803 168389 unique_id port 168389 remote_ip 10.8.0.242 168393 username hashtadani4 168393 mac 168393 bytes_out 0 168393 bytes_in 0 168393 station_ip 37.129.14.19 168393 port 798 168393 unique_id port 168393 remote_ip 10.8.0.182 168394 username kalantary 168394 mac 168394 bytes_out 1590731 168394 bytes_in 14158996 168394 station_ip 37.129.62.97 168394 port 773 168394 unique_id port 168394 remote_ip 10.8.0.98 168399 username hashtadani4 168399 mac 168399 bytes_out 0 168399 bytes_in 0 168399 station_ip 37.129.14.19 168399 port 794 168399 unique_id port 168399 remote_ip 10.8.0.182 168400 username farhad2 168400 mac 168400 bytes_out 0 168400 bytes_in 0 168400 station_ip 5.120.31.0 168400 port 798 168400 unique_id port 168400 remote_ip 10.8.0.190 168407 username aminvpn 168407 mac 168407 bytes_out 0 168407 bytes_in 0 168407 station_ip 5.119.94.158 168407 port 805 168407 unique_id port 168407 remote_ip 10.8.0.14 168409 username hashtadani4 168409 mac 168409 bytes_out 5124 168409 bytes_in 7321 168409 station_ip 37.129.14.19 168409 port 802 168409 unique_id port 168409 remote_ip 10.8.0.182 168411 username pourshad 168411 mac 168411 bytes_out 5029 168411 bytes_in 10043 168411 station_ip 5.114.143.173 168411 port 797 168411 unique_id port 168411 remote_ip 10.8.0.18 168413 username jafari 168413 kill_reason Another user logged on this global unique id 168413 mac 168413 bytes_out 0 168413 bytes_in 0 168413 station_ip 37.137.18.243 168413 port 803 168413 unique_id port 168423 username tahmasebi 168423 mac 168423 bytes_out 0 168423 bytes_in 0 168423 station_ip 5.120.2.227 168423 port 773 168423 unique_id port 168423 remote_ip 10.8.0.42 168392 bytes_in 0 168392 station_ip 5.120.2.227 168392 port 391 168392 unique_id port 168392 remote_ip 10.8.1.90 168397 username tahmasebi 168397 mac 168397 bytes_out 0 168397 bytes_in 0 168397 station_ip 5.120.2.227 168397 port 407 168397 unique_id port 168397 remote_ip 10.8.1.90 168402 username tahmasebi 168402 kill_reason Maximum check online fails reached 168402 mac 168402 bytes_out 0 168402 bytes_in 0 168402 station_ip 5.120.2.227 168402 port 409 168402 unique_id port 168403 username hashtadani4 168403 mac 168403 bytes_out 0 168403 bytes_in 0 168403 station_ip 37.129.14.19 168403 port 799 168403 unique_id port 168403 remote_ip 10.8.0.182 168404 username jafari 168404 kill_reason Another user logged on this global unique id 168404 mac 168404 bytes_out 0 168404 bytes_in 0 168404 station_ip 37.137.18.243 168404 port 803 168404 unique_id port 168406 username aminvpn 168406 mac 168406 bytes_out 3934448 168406 bytes_in 47259774 168406 station_ip 5.126.57.246 168406 port 797 168406 unique_id port 168406 remote_ip 10.8.0.14 168412 username komeil 168412 mac 168412 bytes_out 0 168412 bytes_in 0 168412 station_ip 5.120.166.69 168412 port 797 168412 unique_id port 168412 remote_ip 10.8.0.70 168414 username farhad2 168414 kill_reason Another user logged on this global unique id 168414 mac 168414 bytes_out 0 168414 bytes_in 0 168414 station_ip 5.120.31.0 168414 port 798 168414 unique_id port 168414 remote_ip 10.8.0.190 168418 username pourshad 168418 mac 168418 bytes_out 0 168418 bytes_in 0 168418 station_ip 5.114.143.173 168418 port 807 168418 unique_id port 168418 remote_ip 10.8.0.18 168419 username morteza 168419 kill_reason Another user logged on this global unique id 168419 mac 168419 bytes_out 0 168419 bytes_in 0 168419 station_ip 83.122.26.92 168419 port 762 168419 unique_id port 168421 username saeed9658 168421 mac 168421 bytes_out 126703 168421 bytes_in 592192 168421 station_ip 5.119.176.146 168421 port 773 168421 unique_id port 168421 remote_ip 10.8.0.166 168422 username aminvpn 168422 mac 168422 bytes_out 239347 168422 bytes_in 433277 168422 station_ip 5.126.57.246 168422 port 806 168422 unique_id port 168422 remote_ip 10.8.0.14 168424 username aminvpn 168424 mac 168424 bytes_out 0 168424 bytes_in 0 168424 station_ip 5.119.94.158 168424 port 797 168424 unique_id port 168424 remote_ip 10.8.0.14 168425 username aminvpn 168425 mac 168425 bytes_out 0 168425 bytes_in 0 168425 station_ip 5.126.57.246 168425 port 773 168425 unique_id port 168425 remote_ip 10.8.0.14 168429 username arash 168429 mac 168429 bytes_out 1697083 168429 bytes_in 14897543 168429 station_ip 37.27.7.92 168429 port 787 168429 unique_id port 168429 remote_ip 10.8.0.122 168430 username hashtadani4 168430 kill_reason Another user logged on this global unique id 168430 mac 168430 bytes_out 0 168430 bytes_in 0 168430 station_ip 37.129.14.19 168430 port 805 168430 unique_id port 168430 remote_ip 10.8.0.182 168433 username morteza 168433 mac 168433 bytes_out 0 168433 bytes_in 0 168433 station_ip 83.122.26.92 168433 port 762 168433 unique_id port 168438 username aminvpn 168438 mac 168438 bytes_out 0 168438 bytes_in 0 168438 station_ip 5.126.57.246 168438 port 762 168438 unique_id port 168438 remote_ip 10.8.0.14 168440 username vanila 168440 mac 168440 bytes_out 22730101 168440 bytes_in 1834041 168440 station_ip 83.122.139.126 168440 port 790 168440 unique_id port 168440 remote_ip 10.8.0.178 168444 username hashtadani4 168444 mac 168426 username aminvpn 168426 mac 168426 bytes_out 0 168426 bytes_in 0 168426 station_ip 5.119.94.158 168426 port 797 168426 unique_id port 168426 remote_ip 10.8.0.14 168431 username aminvpn 168431 mac 168431 bytes_out 0 168431 bytes_in 0 168431 station_ip 5.126.57.246 168431 port 809 168431 unique_id port 168431 remote_ip 10.8.0.14 168434 username godarzi 168434 mac 168434 bytes_out 0 168434 bytes_in 0 168434 station_ip 5.119.46.130 168434 port 799 168434 unique_id port 168434 remote_ip 10.8.0.174 168435 username aminvpn 168435 mac 168435 bytes_out 0 168435 bytes_in 0 168435 station_ip 5.119.94.158 168435 port 797 168435 unique_id port 168435 remote_ip 10.8.0.14 168437 username hashtadani4 168437 mac 168437 bytes_out 0 168437 bytes_in 0 168437 station_ip 37.129.14.19 168437 port 805 168437 unique_id port 168439 username malekpoir 168439 kill_reason Another user logged on this global unique id 168439 mac 168439 bytes_out 0 168439 bytes_in 0 168439 station_ip 5.120.60.155 168439 port 785 168439 unique_id port 168439 remote_ip 10.8.0.58 168447 username sabaghnezhad 168447 mac 168447 bytes_out 0 168447 bytes_in 0 168447 station_ip 83.123.118.118 168447 port 797 168447 unique_id port 168447 remote_ip 10.8.0.186 168448 username aminvpn 168448 mac 168448 bytes_out 0 168448 bytes_in 0 168448 station_ip 5.126.57.246 168448 port 790 168448 unique_id port 168448 remote_ip 10.8.0.14 168449 username aminvpn 168449 mac 168449 bytes_out 0 168449 bytes_in 0 168449 station_ip 5.119.94.158 168449 port 802 168449 unique_id port 168449 remote_ip 10.8.0.14 168451 username aminvpn 168451 mac 168451 bytes_out 0 168451 bytes_in 0 168451 station_ip 5.126.57.246 168451 port 790 168451 unique_id port 168451 remote_ip 10.8.0.14 168453 username aminvpn 168453 mac 168453 bytes_out 0 168453 bytes_in 0 168453 station_ip 5.126.57.246 168453 port 790 168453 unique_id port 168453 remote_ip 10.8.0.14 168455 username aminvpn 168455 mac 168455 bytes_out 0 168455 bytes_in 0 168455 station_ip 5.119.94.158 168455 port 809 168455 unique_id port 168455 remote_ip 10.8.0.14 168459 username alipour 168459 kill_reason Another user logged on this global unique id 168459 mac 168459 bytes_out 0 168459 bytes_in 0 168459 station_ip 37.129.178.163 168459 port 808 168459 unique_id port 168459 remote_ip 10.8.0.102 168463 username mosi 168463 kill_reason Another user logged on this global unique id 168463 mac 168463 bytes_out 0 168463 bytes_in 0 168463 station_ip 151.235.105.226 168463 port 806 168463 unique_id port 168463 remote_ip 10.8.0.138 168464 username aminvpn 168464 mac 168464 bytes_out 0 168464 bytes_in 0 168464 station_ip 83.123.137.121 168464 port 797 168464 unique_id port 168464 remote_ip 10.8.0.14 168466 username aminvpn 168466 mac 168466 bytes_out 0 168466 bytes_in 0 168466 station_ip 5.119.94.158 168466 port 790 168466 unique_id port 168466 remote_ip 10.8.0.14 168470 username aminvpn 168470 mac 168470 bytes_out 0 168470 bytes_in 0 168470 station_ip 83.123.137.121 168470 port 790 168470 unique_id port 168470 remote_ip 10.8.0.14 168472 username aminvpn 168472 mac 168472 bytes_out 0 168472 bytes_in 0 168472 station_ip 5.126.57.246 168472 port 797 168472 unique_id port 168472 remote_ip 10.8.0.14 168473 username aminvpn 168473 mac 168473 bytes_out 0 168473 bytes_in 0 168473 station_ip 83.123.137.121 168473 port 773 168473 unique_id port 168473 remote_ip 10.8.0.14 168476 username aminvpn 168436 bytes_out 0 168436 bytes_in 0 168436 station_ip 5.120.31.0 168436 port 798 168436 unique_id port 168441 username aminvpn 168441 mac 168441 bytes_out 0 168441 bytes_in 0 168441 station_ip 5.119.94.158 168441 port 773 168441 unique_id port 168441 remote_ip 10.8.0.14 168442 username sabaghnezhad 168442 mac 168442 bytes_out 70839 168442 bytes_in 64364 168442 station_ip 37.129.114.4 168442 port 802 168442 unique_id port 168442 remote_ip 10.8.0.186 168443 username aminvpn 168443 mac 168443 bytes_out 0 168443 bytes_in 0 168443 station_ip 5.126.57.246 168443 port 790 168443 unique_id port 168443 remote_ip 10.8.0.14 168446 username tahmasebi 168446 mac 168446 bytes_out 0 168446 bytes_in 0 168446 station_ip 5.120.2.227 168446 port 762 168446 unique_id port 168446 remote_ip 10.8.0.42 168450 username tahmasebi 168450 mac 168450 bytes_out 0 168450 bytes_in 0 168450 station_ip 5.120.2.227 168450 port 797 168450 unique_id port 168450 remote_ip 10.8.0.42 168454 username khalili2 168454 mac 168454 bytes_out 3561886 168454 bytes_in 25679542 168454 station_ip 5.120.109.173 168454 port 391 168454 unique_id port 168454 remote_ip 10.8.1.158 168456 username barzegar 168456 mac 168456 bytes_out 15137 168456 bytes_in 17106 168456 station_ip 5.113.62.247 168456 port 797 168456 unique_id port 168456 remote_ip 10.8.0.234 168462 username aminvpn 168462 mac 168462 bytes_out 0 168462 bytes_in 0 168462 station_ip 5.126.57.246 168462 port 790 168462 unique_id port 168462 remote_ip 10.8.0.14 168465 username mohammadjavad 168465 mac 168465 bytes_out 1015962 168465 bytes_in 14674806 168465 station_ip 37.129.102.172 168465 port 773 168465 unique_id port 168465 remote_ip 10.8.0.142 168467 username alipour 168467 mac 168467 bytes_out 0 168467 bytes_in 0 168467 station_ip 37.129.178.163 168467 port 808 168467 unique_id port 168469 username aminvpn 168469 mac 168469 bytes_out 0 168469 bytes_in 0 168469 station_ip 5.126.57.246 168469 port 773 168469 unique_id port 168469 remote_ip 10.8.0.14 168471 username aminvpn 168471 mac 168471 bytes_out 0 168471 bytes_in 0 168471 station_ip 5.119.94.158 168471 port 773 168471 unique_id port 168471 remote_ip 10.8.0.14 168474 username tahmasebi 168474 mac 168474 bytes_out 0 168474 bytes_in 0 168474 station_ip 5.120.2.227 168474 port 790 168474 unique_id port 168474 remote_ip 10.8.0.42 168475 username aminvpn 168475 mac 168475 bytes_out 0 168475 bytes_in 0 168475 station_ip 83.123.137.121 168475 port 797 168475 unique_id port 168475 remote_ip 10.8.0.14 168478 username aminvpn 168478 mac 168478 bytes_out 0 168478 bytes_in 0 168478 station_ip 83.123.137.121 168478 port 773 168478 unique_id port 168478 remote_ip 10.8.0.14 168484 username aminvpn 168484 mac 168484 bytes_out 0 168484 bytes_in 0 168484 station_ip 83.123.137.121 168484 port 773 168484 unique_id port 168484 remote_ip 10.8.0.14 168486 username aminvpn 168486 mac 168486 bytes_out 0 168486 bytes_in 0 168486 station_ip 5.119.94.158 168486 port 797 168486 unique_id port 168486 remote_ip 10.8.0.14 168488 username aminvpn 168488 mac 168488 bytes_out 0 168488 bytes_in 0 168488 station_ip 83.123.137.121 168488 port 797 168488 unique_id port 168488 remote_ip 10.8.0.14 168489 username aminvpn 168489 mac 168489 bytes_out 0 168489 bytes_in 0 168489 station_ip 5.119.94.158 168489 port 773 168489 unique_id port 168489 remote_ip 10.8.0.14 168444 bytes_out 0 168444 bytes_in 0 168444 station_ip 37.129.14.19 168444 port 799 168444 unique_id port 168444 remote_ip 10.8.0.182 168445 username aminvpn 168445 mac 168445 bytes_out 0 168445 bytes_in 0 168445 station_ip 5.119.94.158 168445 port 802 168445 unique_id port 168445 remote_ip 10.8.0.14 168452 username aminvpn 168452 mac 168452 bytes_out 0 168452 bytes_in 0 168452 station_ip 5.119.94.158 168452 port 805 168452 unique_id port 168452 remote_ip 10.8.0.14 168457 username aminvpn 168457 mac 168457 bytes_out 0 168457 bytes_in 0 168457 station_ip 5.126.57.246 168457 port 790 168457 unique_id port 168457 remote_ip 10.8.0.14 168458 username aminvpn 168458 mac 168458 bytes_out 0 168458 bytes_in 0 168458 station_ip 83.123.137.121 168458 port 797 168458 unique_id port 168458 remote_ip 10.8.0.14 168460 username tahmasebi 168460 mac 168460 bytes_out 0 168460 bytes_in 0 168460 station_ip 5.120.2.227 168460 port 790 168460 unique_id port 168460 remote_ip 10.8.0.42 168461 username aminvpn 168461 mac 168461 bytes_out 0 168461 bytes_in 0 168461 station_ip 5.119.94.158 168461 port 809 168461 unique_id port 168461 remote_ip 10.8.0.14 168468 username yaghobi 168468 mac 168468 bytes_out 0 168468 bytes_in 0 168468 station_ip 83.122.175.89 168468 port 391 168468 unique_id port 168468 remote_ip 10.8.1.118 168477 username aminvpn 168477 mac 168477 bytes_out 0 168477 bytes_in 0 168477 station_ip 5.126.57.246 168477 port 790 168477 unique_id port 168477 remote_ip 10.8.0.14 168479 username hashtadani4 168479 mac 168479 bytes_out 2520615 168479 bytes_in 23887846 168479 station_ip 37.129.14.19 168479 port 802 168479 unique_id port 168479 remote_ip 10.8.0.182 168481 username farhad2 168481 mac 168481 bytes_out 0 168481 bytes_in 0 168481 station_ip 5.120.31.0 168481 port 798 168481 unique_id port 168483 username aminvpn 168483 mac 168483 bytes_out 0 168483 bytes_in 0 168483 station_ip 5.126.57.246 168483 port 797 168483 unique_id port 168483 remote_ip 10.8.0.14 168485 username shadkam 168485 mac 168485 bytes_out 0 168485 bytes_in 0 168485 station_ip 37.129.6.41 168485 port 799 168485 unique_id port 168485 remote_ip 10.8.0.62 168487 username aminvpn 168487 mac 168487 bytes_out 0 168487 bytes_in 0 168487 station_ip 5.126.57.246 168487 port 773 168487 unique_id port 168487 remote_ip 10.8.0.14 168492 username yaghobi 168492 mac 168492 bytes_out 1209626 168492 bytes_in 22504380 168492 station_ip 83.122.175.89 168492 port 391 168492 unique_id port 168492 remote_ip 10.8.1.118 168494 username aminvpn 168494 mac 168494 bytes_out 0 168494 bytes_in 0 168494 station_ip 5.119.94.158 168494 port 773 168494 unique_id port 168494 remote_ip 10.8.0.14 168496 username aminvpn 168496 mac 168496 bytes_out 0 168496 bytes_in 0 168496 station_ip 5.126.57.246 168496 port 799 168496 unique_id port 168496 remote_ip 10.8.0.14 168499 username jafari 168499 kill_reason Another user logged on this global unique id 168499 mac 168499 bytes_out 0 168499 bytes_in 0 168499 station_ip 37.137.18.243 168499 port 803 168499 unique_id port 168500 username aminvpn 168500 mac 168500 bytes_out 0 168500 bytes_in 0 168500 station_ip 83.123.137.121 168500 port 773 168500 unique_id port 168500 remote_ip 10.8.0.14 168502 username farhad2 168502 mac 168502 bytes_out 686670 168502 bytes_in 6929582 168502 station_ip 5.120.74.42 168502 port 790 168502 unique_id port 168476 mac 168476 bytes_out 0 168476 bytes_in 0 168476 station_ip 5.119.94.158 168476 port 773 168476 unique_id port 168476 remote_ip 10.8.0.14 168480 username aminvpn 168480 mac 168480 bytes_out 0 168480 bytes_in 0 168480 station_ip 5.119.94.158 168480 port 790 168480 unique_id port 168480 remote_ip 10.8.0.14 168482 username hashtadani4 168482 mac 168482 bytes_out 0 168482 bytes_in 0 168482 station_ip 37.129.14.19 168482 port 773 168482 unique_id port 168482 remote_ip 10.8.0.182 168490 username hashtadani4 168490 mac 168490 bytes_out 0 168490 bytes_in 0 168490 station_ip 37.129.14.19 168490 port 410 168490 unique_id port 168490 remote_ip 10.8.1.142 168491 username aminvpn 168491 mac 168491 bytes_out 0 168491 bytes_in 0 168491 station_ip 5.126.57.246 168491 port 797 168491 unique_id port 168491 remote_ip 10.8.0.14 168495 username tahmasebi 168495 mac 168495 bytes_out 0 168495 bytes_in 0 168495 station_ip 5.120.2.227 168495 port 797 168495 unique_id port 168495 remote_ip 10.8.0.42 168497 username sabaghnezhad 168497 mac 168497 bytes_out 0 168497 bytes_in 0 168497 station_ip 83.122.125.186 168497 port 762 168497 unique_id port 168497 remote_ip 10.8.0.186 168501 username houshang 168501 kill_reason Another user logged on this global unique id 168501 mac 168501 bytes_out 0 168501 bytes_in 0 168501 station_ip 5.120.132.163 168501 port 787 168501 unique_id port 168501 remote_ip 10.8.0.134 168505 username yaghobi 168505 mac 168505 bytes_out 16079 168505 bytes_in 25007 168505 station_ip 83.122.175.89 168505 port 391 168505 unique_id port 168505 remote_ip 10.8.1.118 168510 username hashtadani4 168510 mac 168510 bytes_out 0 168510 bytes_in 0 168510 station_ip 37.129.14.19 168510 port 762 168510 unique_id port 168510 remote_ip 10.8.0.182 168512 username aminvpn 168512 mac 168512 bytes_out 0 168512 bytes_in 0 168512 station_ip 5.119.94.158 168512 port 798 168512 unique_id port 168512 remote_ip 10.8.0.14 168515 username aminvpn 168515 mac 168515 bytes_out 0 168515 bytes_in 0 168515 station_ip 5.126.57.246 168515 port 773 168515 unique_id port 168515 remote_ip 10.8.0.14 168516 username hashtadani4 168516 mac 168516 bytes_out 0 168516 bytes_in 0 168516 station_ip 37.129.14.19 168516 port 798 168516 unique_id port 168516 remote_ip 10.8.0.182 168523 username aminvpn 168523 mac 168523 bytes_out 0 168523 bytes_in 0 168523 station_ip 5.126.57.246 168523 port 790 168523 unique_id port 168523 remote_ip 10.8.0.14 168525 username moradi 168525 kill_reason Another user logged on this global unique id 168525 mac 168525 bytes_out 0 168525 bytes_in 0 168525 station_ip 46.225.232.219 168525 port 801 168525 unique_id port 168526 username aminvpn 168526 mac 168526 bytes_out 0 168526 bytes_in 0 168526 station_ip 83.123.137.121 168526 port 762 168526 unique_id port 168526 remote_ip 10.8.0.14 168527 username aminvpn 168527 mac 168527 bytes_out 0 168527 bytes_in 0 168527 station_ip 5.126.57.246 168527 port 798 168527 unique_id port 168527 remote_ip 10.8.0.14 168532 username farhad2 168532 mac 168532 bytes_out 0 168532 bytes_in 0 168532 station_ip 5.120.74.42 168532 port 794 168532 unique_id port 168532 remote_ip 10.8.0.190 168535 username mirzaei 168535 kill_reason Another user logged on this global unique id 168535 mac 168535 bytes_out 0 168535 bytes_in 0 168535 station_ip 5.120.27.93 168535 port 784 168535 unique_id port 168537 username aminvpn 168537 mac 168493 username hashtadani4 168493 mac 168493 bytes_out 0 168493 bytes_in 0 168493 station_ip 37.129.14.19 168493 port 410 168493 unique_id port 168493 remote_ip 10.8.1.142 168498 username hashtadani4 168498 mac 168498 bytes_out 0 168498 bytes_in 0 168498 station_ip 37.129.14.19 168498 port 798 168498 unique_id port 168498 remote_ip 10.8.0.182 168503 username aminvpn 168503 mac 168503 bytes_out 0 168503 bytes_in 0 168503 station_ip 5.119.94.158 168503 port 762 168503 unique_id port 168503 remote_ip 10.8.0.14 168507 username aminvpn 168507 mac 168507 bytes_out 0 168507 bytes_in 0 168507 station_ip 83.123.137.121 168507 port 790 168507 unique_id port 168507 remote_ip 10.8.0.14 168511 username aminvpn 168511 mac 168511 bytes_out 0 168511 bytes_in 0 168511 station_ip 5.126.57.246 168511 port 790 168511 unique_id port 168511 remote_ip 10.8.0.14 168514 username aminvpn 168514 mac 168514 bytes_out 0 168514 bytes_in 0 168514 station_ip 83.123.137.121 168514 port 790 168514 unique_id port 168514 remote_ip 10.8.0.14 168518 username aminvpn 168518 mac 168518 bytes_out 0 168518 bytes_in 0 168518 station_ip 5.119.94.158 168518 port 790 168518 unique_id port 168518 remote_ip 10.8.0.14 168520 username aminvpn 168520 mac 168520 bytes_out 0 168520 bytes_in 0 168520 station_ip 83.123.137.121 168520 port 794 168520 unique_id port 168520 remote_ip 10.8.0.14 168528 username aminvpn 168528 mac 168528 bytes_out 0 168528 bytes_in 0 168528 station_ip 5.119.94.158 168528 port 799 168528 unique_id port 168528 remote_ip 10.8.0.14 168529 username aminvpn 168529 mac 168529 bytes_out 0 168529 bytes_in 0 168529 station_ip 83.123.137.121 168529 port 802 168529 unique_id port 168529 remote_ip 10.8.0.14 168531 username mosi 168531 kill_reason Another user logged on this global unique id 168531 mac 168531 bytes_out 0 168531 bytes_in 0 168531 station_ip 151.235.105.226 168531 port 806 168531 unique_id port 168534 username aminvpn 168534 mac 168534 bytes_out 0 168534 bytes_in 0 168534 station_ip 5.119.94.158 168534 port 794 168534 unique_id port 168534 remote_ip 10.8.0.14 168536 username aminvpn 168536 mac 168536 bytes_out 0 168536 bytes_in 0 168536 station_ip 83.123.137.121 168536 port 802 168536 unique_id port 168536 remote_ip 10.8.0.14 168539 username tahmasebi 168539 mac 168539 bytes_out 0 168539 bytes_in 0 168539 station_ip 5.120.2.227 168539 port 807 168539 unique_id port 168539 remote_ip 10.8.0.42 168542 username hashtadani4 168542 kill_reason Maximum check online fails reached 168542 mac 168542 bytes_out 0 168542 bytes_in 0 168542 station_ip 37.129.14.19 168542 port 799 168542 unique_id port 168551 username aminvpn 168551 mac 168551 bytes_out 0 168551 bytes_in 0 168551 station_ip 5.126.57.246 168551 port 798 168551 unique_id port 168551 remote_ip 10.8.0.14 168555 username farhad2 168555 mac 168555 bytes_out 1096578 168555 bytes_in 10461252 168555 station_ip 5.120.74.42 168555 port 794 168555 unique_id port 168555 remote_ip 10.8.0.190 168557 username aminvpn 168557 mac 168557 bytes_out 0 168557 bytes_in 0 168557 station_ip 5.119.94.158 168557 port 798 168557 unique_id port 168557 remote_ip 10.8.0.14 168559 username barzegar 168559 mac 168559 bytes_out 0 168559 bytes_in 0 168559 station_ip 5.119.111.133 168559 port 802 168559 unique_id port 168559 remote_ip 10.8.0.234 168561 username tahmasebi 168561 mac 168561 bytes_out 0 168561 bytes_in 0 168502 remote_ip 10.8.0.190 168504 username aminvpn 168504 mac 168504 bytes_out 0 168504 bytes_in 0 168504 station_ip 5.126.57.246 168504 port 773 168504 unique_id port 168504 remote_ip 10.8.0.14 168506 username houshang 168506 mac 168506 bytes_out 0 168506 bytes_in 0 168506 station_ip 5.120.132.163 168506 port 787 168506 unique_id port 168508 username farhad2 168508 mac 168508 bytes_out 0 168508 bytes_in 0 168508 station_ip 5.120.74.42 168508 port 762 168508 unique_id port 168508 remote_ip 10.8.0.190 168509 username aminvpn 168509 mac 168509 bytes_out 0 168509 bytes_in 0 168509 station_ip 5.119.94.158 168509 port 787 168509 unique_id port 168509 remote_ip 10.8.0.14 168513 username houshang 168513 mac 168513 bytes_out 78111 168513 bytes_in 619675 168513 station_ip 5.120.132.163 168513 port 773 168513 unique_id port 168513 remote_ip 10.8.0.134 168517 username sedighe 168517 mac 168517 bytes_out 0 168517 bytes_in 0 168517 station_ip 37.129.7.82 168517 port 794 168517 unique_id port 168517 remote_ip 10.8.0.146 168519 username kalantary 168519 mac 168519 bytes_out 0 168519 bytes_in 0 168519 station_ip 37.129.62.97 168519 port 807 168519 unique_id port 168519 remote_ip 10.8.0.98 168521 username pourshad 168521 mac 168521 bytes_out 0 168521 bytes_in 0 168521 station_ip 5.120.113.112 168521 port 407 168521 unique_id port 168521 remote_ip 10.8.1.154 168522 username farhad2 168522 mac 168522 bytes_out 144323 168522 bytes_in 1482750 168522 station_ip 5.120.74.42 168522 port 762 168522 unique_id port 168522 remote_ip 10.8.0.190 168524 username aminvpn 168524 mac 168524 bytes_out 0 168524 bytes_in 0 168524 station_ip 5.119.94.158 168524 port 794 168524 unique_id port 168524 remote_ip 10.8.0.14 168530 username hashtadani4 168530 mac 168530 bytes_out 0 168530 bytes_in 0 168530 station_ip 37.129.14.19 168530 port 799 168530 unique_id port 168530 remote_ip 10.8.0.182 168533 username aminvpn 168533 mac 168533 bytes_out 0 168533 bytes_in 0 168533 station_ip 5.126.57.246 168533 port 807 168533 unique_id port 168533 remote_ip 10.8.0.14 168541 username aminvpn 168541 mac 168541 bytes_out 0 168541 bytes_in 0 168541 station_ip 83.123.137.121 168541 port 808 168541 unique_id port 168541 remote_ip 10.8.0.14 168544 username aminvpn 168544 mac 168544 bytes_out 0 168544 bytes_in 0 168544 station_ip 83.123.137.121 168544 port 807 168544 unique_id port 168544 remote_ip 10.8.0.14 168546 username aminvpn 168546 mac 168546 bytes_out 0 168546 bytes_in 0 168546 station_ip 5.126.57.246 168546 port 798 168546 unique_id port 168546 remote_ip 10.8.0.14 168547 username aminvpn 168547 mac 168547 bytes_out 0 168547 bytes_in 0 168547 station_ip 5.119.94.158 168547 port 802 168547 unique_id port 168547 remote_ip 10.8.0.14 168549 username aminvpn 168549 mac 168549 bytes_out 0 168549 bytes_in 0 168549 station_ip 83.123.137.121 168549 port 798 168549 unique_id port 168549 remote_ip 10.8.0.14 168550 username aminvpn 168550 mac 168550 bytes_out 0 168550 bytes_in 0 168550 station_ip 5.119.94.158 168550 port 802 168550 unique_id port 168550 remote_ip 10.8.0.14 168552 username malekpoir 168552 kill_reason Another user logged on this global unique id 168552 mac 168552 bytes_out 0 168552 bytes_in 0 168552 station_ip 5.120.60.155 168552 port 785 168552 unique_id port 168553 username aminvpn 168553 mac 168553 bytes_out 0 168553 bytes_in 0 168537 bytes_out 0 168537 bytes_in 0 168537 station_ip 5.119.94.158 168537 port 807 168537 unique_id port 168537 remote_ip 10.8.0.14 168538 username aminvpn 168538 mac 168538 bytes_out 0 168538 bytes_in 0 168538 station_ip 5.126.57.246 168538 port 802 168538 unique_id port 168538 remote_ip 10.8.0.14 168540 username barzegar 168540 mac 168540 bytes_out 0 168540 bytes_in 0 168540 station_ip 5.119.111.133 168540 port 798 168540 unique_id port 168540 remote_ip 10.8.0.234 168543 username aminvpn 168543 mac 168543 bytes_out 0 168543 bytes_in 0 168543 station_ip 5.119.94.158 168543 port 798 168543 unique_id port 168543 remote_ip 10.8.0.14 168545 username barzegar 168545 mac 168545 bytes_out 0 168545 bytes_in 0 168545 station_ip 5.119.111.133 168545 port 802 168545 unique_id port 168545 remote_ip 10.8.0.234 168548 username tahmasebi 168548 mac 168548 bytes_out 0 168548 bytes_in 0 168548 station_ip 5.120.2.227 168548 port 411 168548 unique_id port 168548 remote_ip 10.8.1.90 168558 username moradi 168558 mac 168558 bytes_out 0 168558 bytes_in 0 168558 station_ip 46.225.232.219 168558 port 801 168558 unique_id port 168560 username pourshad 168560 mac 168560 bytes_out 0 168560 bytes_in 0 168560 station_ip 5.120.113.112 168560 port 807 168560 unique_id port 168560 remote_ip 10.8.0.18 168564 username hadibarzegar 168564 kill_reason Another user logged on this global unique id 168564 mac 168564 bytes_out 0 168564 bytes_in 0 168564 station_ip 37.129.190.58 168564 port 787 168564 unique_id port 168564 remote_ip 10.8.0.154 168565 username barzegar 168565 mac 168565 bytes_out 0 168565 bytes_in 0 168565 station_ip 5.119.111.133 168565 port 762 168565 unique_id port 168565 remote_ip 10.8.0.234 168568 username aminvpn 168568 mac 168568 bytes_out 0 168568 bytes_in 0 168568 station_ip 83.123.137.121 168568 port 762 168568 unique_id port 168568 remote_ip 10.8.0.14 168571 username barzegar 168571 mac 168571 bytes_out 0 168571 bytes_in 0 168571 station_ip 5.119.111.133 168571 port 762 168571 unique_id port 168571 remote_ip 10.8.0.234 168572 username aminvpn 168572 mac 168572 bytes_out 0 168572 bytes_in 0 168572 station_ip 83.123.137.121 168572 port 798 168572 unique_id port 168572 remote_ip 10.8.0.14 168574 username aminvpn 168574 mac 168574 bytes_out 0 168574 bytes_in 0 168574 station_ip 5.119.94.158 168574 port 762 168574 unique_id port 168574 remote_ip 10.8.0.14 168579 username barzegar 168579 mac 168579 bytes_out 0 168579 bytes_in 0 168579 station_ip 5.119.111.133 168579 port 798 168579 unique_id port 168579 remote_ip 10.8.0.234 168580 username aminvpn 168580 mac 168580 bytes_out 0 168580 bytes_in 0 168580 station_ip 5.126.57.246 168580 port 801 168580 unique_id port 168580 remote_ip 10.8.0.14 168581 username hashtadani4 168581 mac 168581 bytes_out 0 168581 bytes_in 0 168581 station_ip 37.129.14.19 168581 port 410 168581 unique_id port 168581 remote_ip 10.8.1.142 168582 username aminvpn 168582 mac 168582 bytes_out 4318 168582 bytes_in 7022 168582 station_ip 5.119.94.158 168582 port 762 168582 unique_id port 168582 remote_ip 10.8.0.14 168586 username hadibarzegar 168586 kill_reason Another user logged on this global unique id 168586 mac 168586 bytes_out 0 168586 bytes_in 0 168586 station_ip 37.129.190.58 168586 port 787 168586 unique_id port 168589 username hashtadani4 168589 kill_reason Maximum check online fails reached 168589 mac 168589 bytes_out 0 168553 station_ip 83.123.137.121 168553 port 802 168553 unique_id port 168553 remote_ip 10.8.0.14 168554 username pourshad 168554 mac 168554 bytes_out 0 168554 bytes_in 0 168554 station_ip 5.120.113.112 168554 port 762 168554 unique_id port 168554 remote_ip 10.8.0.18 168556 username yaghobi 168556 mac 168556 bytes_out 1033426 168556 bytes_in 13562267 168556 station_ip 83.122.175.89 168556 port 391 168556 unique_id port 168556 remote_ip 10.8.1.118 168563 username aminvpn 168563 mac 168563 bytes_out 0 168563 bytes_in 0 168563 station_ip 5.119.94.158 168563 port 798 168563 unique_id port 168563 remote_ip 10.8.0.14 168569 username aminvpn 168569 mac 168569 bytes_out 0 168569 bytes_in 0 168569 station_ip 5.119.94.158 168569 port 798 168569 unique_id port 168569 remote_ip 10.8.0.14 168578 username sedighe 168578 mac 168578 bytes_out 244222 168578 bytes_in 871829 168578 station_ip 37.129.7.82 168578 port 773 168578 unique_id port 168578 remote_ip 10.8.0.146 168587 username hashtadani4 168587 mac 168587 bytes_out 0 168587 bytes_in 0 168587 station_ip 37.129.14.19 168587 port 798 168587 unique_id port 168587 remote_ip 10.8.0.182 168588 username aminvpn 168588 mac 168588 bytes_out 0 168588 bytes_in 0 168588 station_ip 5.126.57.246 168588 port 802 168588 unique_id port 168588 remote_ip 10.8.0.14 168593 username aminvpn 168593 mac 168593 bytes_out 0 168593 bytes_in 0 168593 station_ip 5.119.94.158 168593 port 798 168593 unique_id port 168593 remote_ip 10.8.0.14 168599 username aminvpn 168599 mac 168599 bytes_out 0 168599 bytes_in 0 168599 station_ip 5.126.57.246 168599 port 807 168599 unique_id port 168599 remote_ip 10.8.0.14 168601 username aminvpn 168601 mac 168601 bytes_out 0 168601 bytes_in 0 168601 station_ip 5.126.57.246 168601 port 808 168601 unique_id port 168601 remote_ip 10.8.0.14 168602 username barzegar 168602 mac 168602 bytes_out 13524 168602 bytes_in 23223 168602 station_ip 5.119.111.133 168602 port 762 168602 unique_id port 168602 remote_ip 10.8.0.234 168604 username tahmasebi 168604 mac 168604 bytes_out 0 168604 bytes_in 0 168604 station_ip 5.120.2.227 168604 port 801 168604 unique_id port 168604 remote_ip 10.8.0.42 168612 username tahmasebi 168612 mac 168612 bytes_out 0 168612 bytes_in 0 168612 station_ip 5.120.2.227 168612 port 787 168612 unique_id port 168612 remote_ip 10.8.0.42 168618 username tahmasebi 168618 mac 168618 bytes_out 0 168618 bytes_in 0 168618 station_ip 5.120.2.227 168618 port 762 168618 unique_id port 168618 remote_ip 10.8.0.42 168621 username aminvpn 168621 mac 168621 bytes_out 0 168621 bytes_in 0 168621 station_ip 5.126.57.246 168621 port 801 168621 unique_id port 168621 remote_ip 10.8.0.14 168627 username tahmasebi 168627 mac 168627 bytes_out 0 168627 bytes_in 0 168627 station_ip 5.120.2.227 168627 port 802 168627 unique_id port 168627 remote_ip 10.8.0.42 168628 username aminvpn 168628 mac 168628 bytes_out 0 168628 bytes_in 0 168628 station_ip 5.119.94.158 168628 port 808 168628 unique_id port 168628 remote_ip 10.8.0.14 168630 username tahmasebi 168630 mac 168630 bytes_out 0 168630 bytes_in 0 168630 station_ip 5.120.2.227 168630 port 801 168630 unique_id port 168630 remote_ip 10.8.0.42 168632 username hashtadani4 168632 mac 168632 bytes_out 0 168632 bytes_in 0 168632 station_ip 37.129.14.19 168632 port 391 168632 unique_id port 168632 remote_ip 10.8.1.142 168561 station_ip 5.120.2.227 168561 port 391 168561 unique_id port 168561 remote_ip 10.8.1.90 168562 username aminvpn 168562 mac 168562 bytes_out 0 168562 bytes_in 0 168562 station_ip 83.123.137.121 168562 port 762 168562 unique_id port 168562 remote_ip 10.8.0.14 168566 username aminvpn 168566 mac 168566 bytes_out 0 168566 bytes_in 0 168566 station_ip 83.123.137.121 168566 port 801 168566 unique_id port 168566 remote_ip 10.8.0.14 168567 username aminvpn 168567 mac 168567 bytes_out 0 168567 bytes_in 0 168567 station_ip 5.119.94.158 168567 port 798 168567 unique_id port 168567 remote_ip 10.8.0.14 168570 username aminvpn 168570 mac 168570 bytes_out 0 168570 bytes_in 0 168570 station_ip 5.126.57.246 168570 port 801 168570 unique_id port 168570 remote_ip 10.8.0.14 168573 username tahmasebi 168573 mac 168573 bytes_out 2535 168573 bytes_in 4967 168573 station_ip 5.120.2.227 168573 port 411 168573 unique_id port 168573 remote_ip 10.8.1.90 168575 username vanila 168575 mac 168575 bytes_out 3332797 168575 bytes_in 22434577 168575 station_ip 83.122.139.126 168575 port 805 168575 unique_id port 168575 remote_ip 10.8.0.178 168576 username aminvpn 168576 mac 168576 bytes_out 0 168576 bytes_in 0 168576 station_ip 83.123.137.121 168576 port 798 168576 unique_id port 168576 remote_ip 10.8.0.14 168577 username aminvpn 168577 mac 168577 bytes_out 0 168577 bytes_in 0 168577 station_ip 5.119.94.158 168577 port 762 168577 unique_id port 168577 remote_ip 10.8.0.14 168583 username mosi 168583 kill_reason Another user logged on this global unique id 168583 mac 168583 bytes_out 0 168583 bytes_in 0 168583 station_ip 151.235.105.226 168583 port 806 168583 unique_id port 168584 username aminvpn 168584 mac 168584 bytes_out 0 168584 bytes_in 0 168584 station_ip 5.126.57.246 168584 port 798 168584 unique_id port 168584 remote_ip 10.8.0.14 168585 username aminvpn 168585 mac 168585 bytes_out 0 168585 bytes_in 0 168585 station_ip 5.119.94.158 168585 port 801 168585 unique_id port 168585 remote_ip 10.8.0.14 168590 username jafari 168590 kill_reason Another user logged on this global unique id 168590 mac 168590 bytes_out 0 168590 bytes_in 0 168590 station_ip 37.137.18.243 168590 port 803 168590 unique_id port 168592 username khalili2 168592 kill_reason Another user logged on this global unique id 168592 mac 168592 bytes_out 0 168592 bytes_in 0 168592 station_ip 5.120.109.173 168592 port 407 168592 unique_id port 168592 remote_ip 10.8.1.158 168594 username mirzaei 168594 kill_reason Another user logged on this global unique id 168594 mac 168594 bytes_out 0 168594 bytes_in 0 168594 station_ip 5.120.27.93 168594 port 784 168594 unique_id port 168595 username aminvpn 168595 mac 168595 bytes_out 0 168595 bytes_in 0 168595 station_ip 5.126.57.246 168595 port 802 168595 unique_id port 168595 remote_ip 10.8.0.14 168597 username aminvpn 168597 mac 168597 bytes_out 0 168597 bytes_in 0 168597 station_ip 5.119.94.158 168597 port 798 168597 unique_id port 168597 remote_ip 10.8.0.14 168605 username aminvpn 168605 mac 168605 bytes_out 0 168605 bytes_in 0 168605 station_ip 5.119.94.158 168605 port 798 168605 unique_id port 168605 remote_ip 10.8.0.14 168606 username aminvpn 168606 mac 168606 bytes_out 0 168606 bytes_in 0 168606 station_ip 5.126.57.246 168606 port 787 168606 unique_id port 168606 remote_ip 10.8.0.14 168608 username saeed9658 168608 mac 168608 bytes_out 1552368 168608 bytes_in 19933561 168589 bytes_in 0 168589 station_ip 37.129.14.19 168589 port 773 168589 unique_id port 168591 username barzegar 168591 mac 168591 bytes_out 0 168591 bytes_in 0 168591 station_ip 5.119.111.133 168591 port 762 168591 unique_id port 168591 remote_ip 10.8.0.234 168596 username hashtadani4 168596 mac 168596 bytes_out 0 168596 bytes_in 0 168596 station_ip 37.129.14.19 168596 port 802 168596 unique_id port 168596 remote_ip 10.8.0.182 168598 username farhad2 168598 mac 168598 bytes_out 2535524 168598 bytes_in 27554817 168598 station_ip 5.120.74.42 168598 port 391 168598 unique_id port 168598 remote_ip 10.8.1.222 168600 username aminvpn 168600 mac 168600 bytes_out 0 168600 bytes_in 0 168600 station_ip 5.119.94.158 168600 port 798 168600 unique_id port 168600 remote_ip 10.8.0.14 168603 username hadibarzegar 168603 mac 168603 bytes_out 0 168603 bytes_in 0 168603 station_ip 37.129.190.58 168603 port 787 168603 unique_id port 168607 username barzegar 168607 mac 168607 bytes_out 0 168607 bytes_in 0 168607 station_ip 5.119.111.133 168607 port 762 168607 unique_id port 168607 remote_ip 10.8.0.234 168609 username aminvpn 168609 mac 168609 bytes_out 0 168609 bytes_in 0 168609 station_ip 5.119.94.158 168609 port 801 168609 unique_id port 168609 remote_ip 10.8.0.14 168614 username kalantary 168614 mac 168614 bytes_out 0 168614 bytes_in 0 168614 station_ip 37.129.119.105 168614 port 802 168614 unique_id port 168614 remote_ip 10.8.0.98 168619 username kordestani 168619 mac 168619 bytes_out 0 168619 bytes_in 0 168619 station_ip 151.235.91.97 168619 port 805 168619 unique_id port 168619 remote_ip 10.8.0.74 168622 username tahmasebi 168622 mac 168622 bytes_out 0 168622 bytes_in 0 168622 station_ip 5.120.2.227 168622 port 802 168622 unique_id port 168622 remote_ip 10.8.0.42 168623 username aminvpn 168623 mac 168623 bytes_out 0 168623 bytes_in 0 168623 station_ip 5.119.94.158 168623 port 808 168623 unique_id port 168623 remote_ip 10.8.0.14 168624 username hashtadani4 168624 mac 168624 bytes_out 0 168624 bytes_in 0 168624 station_ip 37.129.14.19 168624 port 391 168624 unique_id port 168624 remote_ip 10.8.1.142 168625 username aminvpn 168625 mac 168625 bytes_out 0 168625 bytes_in 0 168625 station_ip 5.126.57.246 168625 port 801 168625 unique_id port 168625 remote_ip 10.8.0.14 168629 username kalantary 168629 mac 168629 bytes_out 500772 168629 bytes_in 5320183 168629 station_ip 37.129.119.105 168629 port 762 168629 unique_id port 168629 remote_ip 10.8.0.98 168637 username aminvpn 168637 mac 168637 bytes_out 0 168637 bytes_in 0 168637 station_ip 5.119.94.158 168637 port 762 168637 unique_id port 168637 remote_ip 10.8.0.14 168640 username aminvpn 168640 mac 168640 bytes_out 0 168640 bytes_in 0 168640 station_ip 5.126.57.246 168640 port 802 168640 unique_id port 168640 remote_ip 10.8.0.14 168643 username godarzi 168643 kill_reason Another user logged on this global unique id 168643 mac 168643 bytes_out 0 168643 bytes_in 0 168643 station_ip 5.119.46.130 168643 port 797 168643 unique_id port 168643 remote_ip 10.8.0.174 168646 username forozandeh1 168646 mac 168646 bytes_out 977260 168646 bytes_in 11413430 168646 station_ip 113.203.26.6 168646 port 787 168646 unique_id port 168646 remote_ip 10.8.0.130 168648 username farhad2 168648 mac 168648 bytes_out 0 168648 bytes_in 0 168648 station_ip 5.119.195.134 168648 port 391 168648 unique_id port 168608 station_ip 5.119.176.146 168608 port 790 168608 unique_id port 168608 remote_ip 10.8.0.166 168610 username yarmohamadi 168610 kill_reason Another user logged on this global unique id 168610 mac 168610 bytes_out 0 168610 bytes_in 0 168610 station_ip 5.119.108.3 168610 port 406 168610 unique_id port 168610 remote_ip 10.8.1.234 168611 username aminvpn 168611 mac 168611 bytes_out 0 168611 bytes_in 0 168611 station_ip 5.126.57.246 168611 port 762 168611 unique_id port 168611 remote_ip 10.8.0.14 168613 username aminvpn 168613 mac 168613 bytes_out 0 168613 bytes_in 0 168613 station_ip 5.119.94.158 168613 port 801 168613 unique_id port 168613 remote_ip 10.8.0.14 168615 username jafari 168615 kill_reason Another user logged on this global unique id 168615 mac 168615 bytes_out 0 168615 bytes_in 0 168615 station_ip 37.137.18.243 168615 port 803 168615 unique_id port 168616 username aminvpn 168616 mac 168616 bytes_out 0 168616 bytes_in 0 168616 station_ip 5.126.57.246 168616 port 762 168616 unique_id port 168616 remote_ip 10.8.0.14 168617 username aminvpn 168617 mac 168617 bytes_out 0 168617 bytes_in 0 168617 station_ip 5.119.94.158 168617 port 787 168617 unique_id port 168617 remote_ip 10.8.0.14 168620 username hashtadani4 168620 mac 168620 bytes_out 0 168620 bytes_in 0 168620 station_ip 37.129.14.19 168620 port 391 168620 unique_id port 168620 remote_ip 10.8.1.142 168626 username hashtadani4 168626 kill_reason Maximum check online fails reached 168626 mac 168626 bytes_out 0 168626 bytes_in 0 168626 station_ip 37.129.14.19 168626 port 805 168626 unique_id port 168631 username barzegar 168631 mac 168631 bytes_out 0 168631 bytes_in 0 168631 station_ip 5.119.111.133 168631 port 790 168631 unique_id port 168631 remote_ip 10.8.0.234 168636 username aminvpn 168636 mac 168636 bytes_out 0 168636 bytes_in 0 168636 station_ip 5.126.57.246 168636 port 801 168636 unique_id port 168636 remote_ip 10.8.0.14 168638 username tahmasebi 168638 mac 168638 bytes_out 0 168638 bytes_in 0 168638 station_ip 5.120.2.227 168638 port 801 168638 unique_id port 168638 remote_ip 10.8.0.42 168641 username aminvpn 168641 mac 168641 bytes_out 0 168641 bytes_in 0 168641 station_ip 5.119.94.158 168641 port 801 168641 unique_id port 168641 remote_ip 10.8.0.14 168644 username aminvpn 168644 mac 168644 bytes_out 0 168644 bytes_in 0 168644 station_ip 5.126.57.246 168644 port 808 168644 unique_id port 168644 remote_ip 10.8.0.14 168647 username jafari 168647 kill_reason Another user logged on this global unique id 168647 mac 168647 bytes_out 0 168647 bytes_in 0 168647 station_ip 37.137.18.243 168647 port 803 168647 unique_id port 168653 username tahmasebi 168653 mac 168653 bytes_out 0 168653 bytes_in 0 168653 station_ip 5.120.2.227 168653 port 808 168653 unique_id port 168653 remote_ip 10.8.0.42 168655 username yarmohamadi 168655 kill_reason Another user logged on this global unique id 168655 mac 168655 bytes_out 0 168655 bytes_in 0 168655 station_ip 5.119.108.3 168655 port 406 168655 unique_id port 168656 username hashtadani4 168656 mac 168656 bytes_out 0 168656 bytes_in 0 168656 station_ip 37.129.14.19 168656 port 787 168656 unique_id port 168656 remote_ip 10.8.0.182 168661 username mohammadjavad 168661 mac 168661 bytes_out 201677 168661 bytes_in 1122788 168661 station_ip 37.129.250.103 168661 port 802 168661 unique_id port 168661 remote_ip 10.8.0.142 168664 username tahmasebi 168664 mac 168664 bytes_out 0 168664 bytes_in 0 168633 username aminvpn 168633 mac 168633 bytes_out 0 168633 bytes_in 0 168633 station_ip 5.126.57.246 168633 port 802 168633 unique_id port 168633 remote_ip 10.8.0.14 168634 username aminvpn 168634 mac 168634 bytes_out 0 168634 bytes_in 0 168634 station_ip 5.119.94.158 168634 port 762 168634 unique_id port 168634 remote_ip 10.8.0.14 168635 username tahmasebi 168635 mac 168635 bytes_out 0 168635 bytes_in 0 168635 station_ip 5.120.2.227 168635 port 762 168635 unique_id port 168635 remote_ip 10.8.0.42 168639 username khalili2 168639 kill_reason Another user logged on this global unique id 168639 mac 168639 bytes_out 0 168639 bytes_in 0 168639 station_ip 5.120.109.173 168639 port 407 168639 unique_id port 168642 username barzegar 168642 mac 168642 bytes_out 0 168642 bytes_in 0 168642 station_ip 5.119.111.133 168642 port 790 168642 unique_id port 168642 remote_ip 10.8.0.234 168645 username aminvpn 168645 mac 168645 bytes_out 0 168645 bytes_in 0 168645 station_ip 5.119.94.158 168645 port 801 168645 unique_id port 168645 remote_ip 10.8.0.14 168649 username aminvpn 168649 mac 168649 bytes_out 0 168649 bytes_in 0 168649 station_ip 5.126.57.246 168649 port 809 168649 unique_id port 168649 remote_ip 10.8.0.14 168650 username hashtadani4 168650 mac 168650 bytes_out 0 168650 bytes_in 0 168650 station_ip 37.129.14.19 168650 port 391 168650 unique_id port 168650 remote_ip 10.8.1.142 168652 username aminvpn 168652 mac 168652 bytes_out 0 168652 bytes_in 0 168652 station_ip 5.119.94.158 168652 port 787 168652 unique_id port 168652 remote_ip 10.8.0.14 168654 username mosi 168654 kill_reason Another user logged on this global unique id 168654 mac 168654 bytes_out 0 168654 bytes_in 0 168654 station_ip 151.235.105.226 168654 port 806 168654 unique_id port 168657 username aminvpn 168657 mac 168657 bytes_out 0 168657 bytes_in 0 168657 station_ip 5.126.57.246 168657 port 798 168657 unique_id port 168657 remote_ip 10.8.0.14 168658 username khalili2 168658 mac 168658 bytes_out 0 168658 bytes_in 0 168658 station_ip 5.120.109.173 168658 port 407 168658 unique_id port 168659 username aminvpn 168659 mac 168659 bytes_out 0 168659 bytes_in 0 168659 station_ip 5.119.94.158 168659 port 801 168659 unique_id port 168659 remote_ip 10.8.0.14 168662 username hashtadani4 168662 mac 168662 bytes_out 0 168662 bytes_in 0 168662 station_ip 37.129.14.19 168662 port 787 168662 unique_id port 168662 remote_ip 10.8.0.182 168666 username sedighe 168666 mac 168666 bytes_out 0 168666 bytes_in 0 168666 station_ip 37.129.142.236 168666 port 787 168666 unique_id port 168666 remote_ip 10.8.0.146 168676 username pourshad 168676 mac 168676 bytes_out 0 168676 bytes_in 0 168676 station_ip 5.120.113.112 168676 port 794 168676 unique_id port 168676 remote_ip 10.8.0.18 168682 username kalantary 168682 mac 168682 bytes_out 0 168682 bytes_in 0 168682 station_ip 37.129.29.157 168682 port 787 168682 unique_id port 168682 remote_ip 10.8.0.98 168685 username yarmohamadi 168685 kill_reason Another user logged on this global unique id 168685 mac 168685 bytes_out 0 168685 bytes_in 0 168685 station_ip 5.119.108.3 168685 port 406 168685 unique_id port 168687 username aminvpn 168687 mac 168687 bytes_out 422793 168687 bytes_in 895767 168687 station_ip 83.123.137.121 168687 port 411 168687 unique_id port 168687 remote_ip 10.8.1.6 168689 username tahmasebi 168689 kill_reason Another user logged on this global unique id 168689 mac 168648 remote_ip 10.8.1.222 168651 username vanila 168651 mac 168651 bytes_out 1436751 168651 bytes_in 16961100 168651 station_ip 83.122.139.126 168651 port 798 168651 unique_id port 168651 remote_ip 10.8.0.178 168660 username hashtadani4 168660 mac 168660 bytes_out 0 168660 bytes_in 0 168660 station_ip 37.129.14.19 168660 port 787 168660 unique_id port 168660 remote_ip 10.8.0.182 168663 username khalili2 168663 mac 168663 bytes_out 0 168663 bytes_in 0 168663 station_ip 5.120.109.173 168663 port 391 168663 unique_id port 168663 remote_ip 10.8.1.158 168665 username godarzi 168665 mac 168665 bytes_out 0 168665 bytes_in 0 168665 station_ip 5.119.46.130 168665 port 797 168665 unique_id port 168667 username hashtadani4 168667 mac 168667 bytes_out 0 168667 bytes_in 0 168667 station_ip 37.129.14.19 168667 port 787 168667 unique_id port 168667 remote_ip 10.8.0.182 168668 username hashtadani4 168668 mac 168668 bytes_out 0 168668 bytes_in 0 168668 station_ip 37.129.14.19 168668 port 808 168668 unique_id port 168668 remote_ip 10.8.0.182 168669 username tahmasebi 168669 mac 168669 bytes_out 0 168669 bytes_in 0 168669 station_ip 5.120.2.227 168669 port 797 168669 unique_id port 168669 remote_ip 10.8.0.42 168674 username yarmohamadi 168674 kill_reason Another user logged on this global unique id 168674 mac 168674 bytes_out 0 168674 bytes_in 0 168674 station_ip 5.119.108.3 168674 port 406 168674 unique_id port 168679 username aminvpn 168679 mac 168679 bytes_out 0 168679 bytes_in 0 168679 station_ip 5.126.57.246 168679 port 794 168679 unique_id port 168679 remote_ip 10.8.0.14 168680 username hashtadani4 168680 mac 168680 bytes_out 0 168680 bytes_in 0 168680 station_ip 37.129.14.19 168680 port 797 168680 unique_id port 168680 remote_ip 10.8.0.182 168683 username sedighe 168683 mac 168683 bytes_out 0 168683 bytes_in 0 168683 station_ip 37.129.142.236 168683 port 801 168683 unique_id port 168683 remote_ip 10.8.0.146 168684 username aminvpn 168684 mac 168684 bytes_out 78973 168684 bytes_in 205490 168684 station_ip 5.126.57.246 168684 port 794 168684 unique_id port 168684 remote_ip 10.8.0.14 168686 username khalili2 168686 mac 168686 bytes_out 192712 168686 bytes_in 781696 168686 station_ip 5.120.109.173 168686 port 391 168686 unique_id port 168686 remote_ip 10.8.1.158 168688 username hadibarzegar 168688 kill_reason Another user logged on this global unique id 168688 mac 168688 bytes_out 0 168688 bytes_in 0 168688 station_ip 37.129.190.58 168688 port 802 168688 unique_id port 168688 remote_ip 10.8.0.154 168692 username aminvpn 168692 mac 168692 bytes_out 655599 168692 bytes_in 8350513 168692 station_ip 5.119.94.158 168692 port 391 168692 unique_id port 168692 remote_ip 10.8.1.6 168696 username barzegar 168696 mac 168696 bytes_out 0 168696 bytes_in 0 168696 station_ip 5.119.111.133 168696 port 790 168696 unique_id port 168696 remote_ip 10.8.0.234 168699 username hadibarzegar 168699 kill_reason Another user logged on this global unique id 168699 mac 168699 bytes_out 0 168699 bytes_in 0 168699 station_ip 37.129.190.58 168699 port 802 168699 unique_id port 168700 username hashtadani4 168700 mac 168700 bytes_out 36101 168700 bytes_in 496477 168700 station_ip 37.129.14.19 168700 port 810 168700 unique_id port 168700 remote_ip 10.8.0.182 168703 username jafari 168703 kill_reason Another user logged on this global unique id 168703 mac 168703 bytes_out 0 168703 bytes_in 0 168703 station_ip 37.137.18.243 168703 port 803 168664 station_ip 5.120.2.227 168664 port 787 168664 unique_id port 168664 remote_ip 10.8.0.42 168670 username jafari 168670 kill_reason Another user logged on this global unique id 168670 mac 168670 bytes_out 0 168670 bytes_in 0 168670 station_ip 37.137.18.243 168670 port 803 168670 unique_id port 168671 username hashtadani4 168671 mac 168671 bytes_out 0 168671 bytes_in 0 168671 station_ip 37.129.14.19 168671 port 808 168671 unique_id port 168671 remote_ip 10.8.0.182 168672 username malekpoir 168672 kill_reason Another user logged on this global unique id 168672 mac 168672 bytes_out 0 168672 bytes_in 0 168672 station_ip 5.120.60.155 168672 port 785 168672 unique_id port 168673 username forozandeh1 168673 mac 168673 bytes_out 0 168673 bytes_in 0 168673 station_ip 37.129.176.181 168673 port 802 168673 unique_id port 168673 remote_ip 10.8.0.130 168675 username mohammadjavad 168675 mac 168675 bytes_out 0 168675 bytes_in 0 168675 station_ip 83.122.69.135 168675 port 797 168675 unique_id port 168675 remote_ip 10.8.0.142 168677 username aminvpn 168677 mac 168677 bytes_out 720228 168677 bytes_in 748134 168677 station_ip 5.126.57.246 168677 port 798 168677 unique_id port 168677 remote_ip 10.8.0.14 168678 username forozandeh1 168678 mac 168678 bytes_out 0 168678 bytes_in 0 168678 station_ip 37.129.176.181 168678 port 809 168678 unique_id port 168678 remote_ip 10.8.0.130 168681 username hashtadani4 168681 mac 168681 bytes_out 180867 168681 bytes_in 1959896 168681 station_ip 37.129.14.19 168681 port 797 168681 unique_id port 168681 remote_ip 10.8.0.182 168691 username hashtadani4 168691 mac 168691 bytes_out 0 168691 bytes_in 0 168691 station_ip 37.129.14.19 168691 port 798 168691 unique_id port 168691 remote_ip 10.8.0.182 168697 username shadkam 168697 mac 168697 bytes_out 2331494 168697 bytes_in 34471565 168697 station_ip 37.129.196.189 168697 port 797 168697 unique_id port 168697 remote_ip 10.8.0.62 168701 username hatami 168701 mac 168701 bytes_out 286411 168701 bytes_in 2900128 168701 station_ip 151.235.96.204 168701 port 794 168701 unique_id port 168701 remote_ip 10.8.0.106 168702 username hashtadani4 168702 mac 168702 bytes_out 0 168702 bytes_in 0 168702 station_ip 37.129.14.19 168702 port 790 168702 unique_id port 168702 remote_ip 10.8.0.182 168706 username yarmohamadi 168706 kill_reason Another user logged on this global unique id 168706 mac 168706 bytes_out 0 168706 bytes_in 0 168706 station_ip 5.119.108.3 168706 port 406 168706 unique_id port 168709 username aminvpn 168709 mac 168709 bytes_out 0 168709 bytes_in 0 168709 station_ip 83.123.137.121 168709 port 410 168709 unique_id port 168709 remote_ip 10.8.1.6 168715 username aminvpn 168715 mac 168715 bytes_out 0 168715 bytes_in 0 168715 station_ip 83.123.137.121 168715 port 410 168715 unique_id port 168715 remote_ip 10.8.1.6 168721 username aminvpn 168721 mac 168721 bytes_out 0 168721 bytes_in 0 168721 station_ip 83.123.137.121 168721 port 410 168721 unique_id port 168721 remote_ip 10.8.1.6 168725 username hadibarzegar 168725 kill_reason Another user logged on this global unique id 168725 mac 168725 bytes_out 0 168725 bytes_in 0 168725 station_ip 37.129.190.58 168725 port 802 168725 unique_id port 168726 username aminvpn 168726 mac 168726 bytes_out 0 168726 bytes_in 0 168726 station_ip 5.119.94.158 168726 port 411 168726 unique_id port 168726 remote_ip 10.8.1.6 168728 username aminvpn 168728 mac 168728 bytes_out 0 168728 bytes_in 0 168689 bytes_out 0 168689 bytes_in 0 168689 station_ip 5.120.2.227 168689 port 808 168689 unique_id port 168689 remote_ip 10.8.0.42 168690 username ayobi 168690 kill_reason Another user logged on this global unique id 168690 mac 168690 bytes_out 0 168690 bytes_in 0 168690 station_ip 37.27.12.38 168690 port 807 168690 unique_id port 168690 remote_ip 10.8.0.94 168693 username aminvpn 168693 mac 168693 bytes_out 0 168693 bytes_in 0 168693 station_ip 83.123.137.121 168693 port 410 168693 unique_id port 168693 remote_ip 10.8.1.6 168694 username hashtadani4 168694 mac 168694 bytes_out 0 168694 bytes_in 0 168694 station_ip 37.129.14.19 168694 port 809 168694 unique_id port 168694 remote_ip 10.8.0.182 168695 username hashtadani4 168695 mac 168695 bytes_out 0 168695 bytes_in 0 168695 station_ip 37.129.14.19 168695 port 810 168695 unique_id port 168695 remote_ip 10.8.0.182 168698 username kalantary 168698 mac 168698 bytes_out 0 168698 bytes_in 0 168698 station_ip 37.129.29.157 168698 port 798 168698 unique_id port 168698 remote_ip 10.8.0.98 168704 username hashtadani4 168704 mac 168704 bytes_out 0 168704 bytes_in 0 168704 station_ip 37.129.14.19 168704 port 790 168704 unique_id port 168704 remote_ip 10.8.0.182 168708 username forozandeh1 168708 mac 168708 bytes_out 982045 168708 bytes_in 14623701 168708 station_ip 113.203.59.69 168708 port 801 168708 unique_id port 168708 remote_ip 10.8.0.130 168712 username aminvpn 168712 mac 168712 bytes_out 0 168712 bytes_in 0 168712 station_ip 5.119.94.158 168712 port 391 168712 unique_id port 168712 remote_ip 10.8.1.6 168713 username aminvpn 168713 mac 168713 bytes_out 0 168713 bytes_in 0 168713 station_ip 83.123.137.121 168713 port 410 168713 unique_id port 168713 remote_ip 10.8.1.6 168714 username aminvpn 168714 mac 168714 bytes_out 0 168714 bytes_in 0 168714 station_ip 5.119.94.158 168714 port 391 168714 unique_id port 168714 remote_ip 10.8.1.6 168716 username vanila 168716 mac 168716 bytes_out 891358 168716 bytes_in 8965612 168716 station_ip 83.122.215.238 168716 port 809 168716 unique_id port 168716 remote_ip 10.8.0.178 168719 username aminvpn 168719 mac 168719 bytes_out 0 168719 bytes_in 0 168719 station_ip 83.123.137.121 168719 port 410 168719 unique_id port 168719 remote_ip 10.8.1.6 168720 username aminvpn 168720 mac 168720 bytes_out 0 168720 bytes_in 0 168720 station_ip 5.119.94.158 168720 port 391 168720 unique_id port 168720 remote_ip 10.8.1.6 168723 username hashtadani4 168723 mac 168723 bytes_out 0 168723 bytes_in 0 168723 station_ip 37.129.14.19 168723 port 798 168723 unique_id port 168723 remote_ip 10.8.0.182 168727 username mosi 168727 mac 168727 bytes_out 0 168727 bytes_in 0 168727 station_ip 151.235.105.226 168727 port 806 168727 unique_id port 168730 username aminvpn 168730 mac 168730 bytes_out 12329 168730 bytes_in 12485 168730 station_ip 5.119.94.158 168730 port 411 168730 unique_id port 168730 remote_ip 10.8.1.6 168734 username hadibarzegar 168734 mac 168734 bytes_out 0 168734 bytes_in 0 168734 station_ip 37.129.190.58 168734 port 802 168734 unique_id port 168736 username aminvpn 168736 mac 168736 bytes_out 0 168736 bytes_in 0 168736 station_ip 5.119.94.158 168736 port 412 168736 unique_id port 168736 remote_ip 10.8.1.6 168737 username aminvpn 168737 mac 168737 bytes_out 222807 168737 bytes_in 314840 168737 station_ip 5.126.57.246 168737 port 787 168703 unique_id port 168705 username jafari 168705 mac 168705 bytes_out 0 168705 bytes_in 0 168705 station_ip 37.137.18.243 168705 port 803 168705 unique_id port 168707 username aminvpn 168707 mac 168707 bytes_out 44193 168707 bytes_in 69063 168707 station_ip 5.119.94.158 168707 port 391 168707 unique_id port 168707 remote_ip 10.8.1.6 168710 username aminvpn 168710 mac 168710 bytes_out 0 168710 bytes_in 0 168710 station_ip 5.119.94.158 168710 port 391 168710 unique_id port 168710 remote_ip 10.8.1.6 168711 username aminvpn 168711 mac 168711 bytes_out 0 168711 bytes_in 0 168711 station_ip 83.123.137.121 168711 port 410 168711 unique_id port 168711 remote_ip 10.8.1.6 168717 username tahmasebi 168717 kill_reason Another user logged on this global unique id 168717 mac 168717 bytes_out 0 168717 bytes_in 0 168717 station_ip 5.120.2.227 168717 port 808 168717 unique_id port 168718 username aminvpn 168718 mac 168718 bytes_out 0 168718 bytes_in 0 168718 station_ip 5.119.94.158 168718 port 391 168718 unique_id port 168718 remote_ip 10.8.1.6 168722 username aminvpn 168722 mac 168722 bytes_out 0 168722 bytes_in 0 168722 station_ip 5.119.94.158 168722 port 391 168722 unique_id port 168722 remote_ip 10.8.1.6 168724 username aminvpn 168724 mac 168724 bytes_out 0 168724 bytes_in 0 168724 station_ip 83.123.137.121 168724 port 410 168724 unique_id port 168724 remote_ip 10.8.1.6 168735 username tahmasebi 168735 mac 168735 bytes_out 0 168735 bytes_in 0 168735 station_ip 5.120.2.227 168735 port 808 168735 unique_id port 168739 username aminvpn 168739 mac 168739 bytes_out 0 168739 bytes_in 0 168739 station_ip 5.126.57.246 168739 port 801 168739 unique_id port 168739 remote_ip 10.8.0.14 168744 username aminvpn 168744 mac 168744 bytes_out 0 168744 bytes_in 0 168744 station_ip 5.119.94.158 168744 port 802 168744 unique_id port 168744 remote_ip 10.8.0.14 168746 username aminvpn 168746 mac 168746 bytes_out 0 168746 bytes_in 0 168746 station_ip 5.126.57.246 168746 port 801 168746 unique_id port 168746 remote_ip 10.8.0.14 168750 username aminvpn 168750 mac 168750 bytes_out 10317 168750 bytes_in 15503 168750 station_ip 5.119.94.158 168750 port 803 168750 unique_id port 168750 remote_ip 10.8.0.14 168751 username aminvpn 168751 mac 168751 bytes_out 0 168751 bytes_in 0 168751 station_ip 5.126.57.246 168751 port 801 168751 unique_id port 168751 remote_ip 10.8.0.14 168753 username hashtadani4 168753 mac 168753 bytes_out 0 168753 bytes_in 0 168753 station_ip 37.129.14.19 168753 port 801 168753 unique_id port 168753 remote_ip 10.8.0.182 168755 username aminvpn 168755 mac 168755 bytes_out 0 168755 bytes_in 0 168755 station_ip 5.126.57.246 168755 port 801 168755 unique_id port 168755 remote_ip 10.8.0.14 168757 username aminvpn 168757 mac 168757 bytes_out 0 168757 bytes_in 0 168757 station_ip 5.119.94.158 168757 port 803 168757 unique_id port 168757 remote_ip 10.8.0.14 168758 username aminvpn 168758 mac 168758 bytes_out 0 168758 bytes_in 0 168758 station_ip 5.126.57.246 168758 port 801 168758 unique_id port 168758 remote_ip 10.8.0.14 168764 username morteza 168764 mac 168764 bytes_out 10456 168764 bytes_in 19786 168764 station_ip 83.122.116.252 168764 port 762 168764 unique_id port 168764 remote_ip 10.8.0.46 168765 username hashtadani4 168765 mac 168765 bytes_out 0 168765 bytes_in 0 168765 station_ip 37.129.14.19 168765 port 803 168728 station_ip 83.123.137.121 168728 port 410 168728 unique_id port 168728 remote_ip 10.8.1.6 168729 username forozandeh1 168729 mac 168729 bytes_out 380289 168729 bytes_in 3452255 168729 station_ip 83.122.96.109 168729 port 797 168729 unique_id port 168729 remote_ip 10.8.0.130 168731 username aminvpn 168731 mac 168731 bytes_out 0 168731 bytes_in 0 168731 station_ip 83.123.137.121 168731 port 410 168731 unique_id port 168731 remote_ip 10.8.1.6 168732 username aminvpn 168732 mac 168732 bytes_out 0 168732 bytes_in 0 168732 station_ip 5.119.94.158 168732 port 411 168732 unique_id port 168732 remote_ip 10.8.1.6 168733 username aminvpn 168733 mac 168733 bytes_out 0 168733 bytes_in 0 168733 station_ip 83.123.137.121 168733 port 410 168733 unique_id port 168733 remote_ip 10.8.1.6 168742 username aminvpn 168742 mac 168742 bytes_out 0 168742 bytes_in 0 168742 station_ip 5.126.57.246 168742 port 801 168742 unique_id port 168742 remote_ip 10.8.0.14 168743 username yarmohamadi 168743 mac 168743 bytes_out 0 168743 bytes_in 0 168743 station_ip 5.119.108.3 168743 port 406 168743 unique_id port 168745 username jafari 168745 kill_reason Another user logged on this global unique id 168745 mac 168745 bytes_out 0 168745 bytes_in 0 168745 station_ip 37.137.18.243 168745 port 794 168745 unique_id port 168745 remote_ip 10.8.0.242 168747 username khalili2 168747 mac 168747 bytes_out 0 168747 bytes_in 0 168747 station_ip 5.120.109.173 168747 port 391 168747 unique_id port 168747 remote_ip 10.8.1.158 168748 username hashtadani4 168748 mac 168748 bytes_out 0 168748 bytes_in 0 168748 station_ip 37.129.14.19 168748 port 801 168748 unique_id port 168748 remote_ip 10.8.0.182 168749 username hashtadani4 168749 mac 168749 bytes_out 0 168749 bytes_in 0 168749 station_ip 37.129.14.19 168749 port 801 168749 unique_id port 168749 remote_ip 10.8.0.182 168752 username rahim 168752 mac 168752 bytes_out 151373 168752 bytes_in 256872 168752 station_ip 5.119.218.17 168752 port 802 168752 unique_id port 168752 remote_ip 10.8.0.50 168756 username hashtadani4 168756 mac 168756 bytes_out 0 168756 bytes_in 0 168756 station_ip 37.129.14.19 168756 port 802 168756 unique_id port 168756 remote_ip 10.8.0.182 168759 username jafari 168759 kill_reason Another user logged on this global unique id 168759 mac 168759 bytes_out 0 168759 bytes_in 0 168759 station_ip 37.137.18.243 168759 port 794 168759 unique_id port 168760 username rahim 168760 mac 168760 bytes_out 0 168760 bytes_in 0 168760 station_ip 5.119.218.17 168760 port 391 168760 unique_id port 168760 remote_ip 10.8.1.126 168762 username pourshad 168762 mac 168762 bytes_out 0 168762 bytes_in 0 168762 station_ip 5.120.113.112 168762 port 411 168762 unique_id port 168762 remote_ip 10.8.1.154 168766 username rahim 168766 mac 168766 bytes_out 0 168766 bytes_in 0 168766 station_ip 5.119.218.17 168766 port 391 168766 unique_id port 168766 remote_ip 10.8.1.126 168768 username aminvpn 168768 mac 168768 bytes_out 0 168768 bytes_in 0 168768 station_ip 5.126.57.246 168768 port 801 168768 unique_id port 168768 remote_ip 10.8.0.14 168775 username rahim 168775 mac 168775 bytes_out 0 168775 bytes_in 0 168775 station_ip 5.119.218.17 168775 port 411 168775 unique_id port 168775 remote_ip 10.8.1.126 168781 username aminvpn 168781 mac 168781 bytes_out 0 168781 bytes_in 0 168781 station_ip 5.126.57.246 168781 port 803 168781 unique_id port 168737 unique_id port 168737 remote_ip 10.8.0.14 168738 username aminvpn 168738 mac 168738 bytes_out 0 168738 bytes_in 0 168738 station_ip 5.119.94.158 168738 port 797 168738 unique_id port 168738 remote_ip 10.8.0.14 168740 username hashtadani4 168740 mac 168740 bytes_out 0 168740 bytes_in 0 168740 station_ip 37.129.14.19 168740 port 801 168740 unique_id port 168740 remote_ip 10.8.0.182 168741 username aminvpn 168741 mac 168741 bytes_out 8871 168741 bytes_in 21235 168741 station_ip 5.119.94.158 168741 port 802 168741 unique_id port 168741 remote_ip 10.8.0.14 168754 username aminvpn 168754 mac 168754 bytes_out 6822 168754 bytes_in 9003 168754 station_ip 5.119.94.158 168754 port 803 168754 unique_id port 168754 remote_ip 10.8.0.14 168761 username morteza 168761 mac 168761 bytes_out 657557 168761 bytes_in 5927005 168761 station_ip 83.122.116.252 168761 port 762 168761 unique_id port 168761 remote_ip 10.8.0.46 168763 username rahim 168763 mac 168763 bytes_out 0 168763 bytes_in 0 168763 station_ip 5.119.218.17 168763 port 801 168763 unique_id port 168763 remote_ip 10.8.0.50 168769 username rahim 168769 mac 168769 bytes_out 0 168769 bytes_in 0 168769 station_ip 5.119.218.17 168769 port 802 168769 unique_id port 168769 remote_ip 10.8.0.50 168774 username aminvpn 168774 mac 168774 bytes_out 0 168774 bytes_in 0 168774 station_ip 5.126.57.246 168774 port 798 168774 unique_id port 168774 remote_ip 10.8.0.14 168777 username rahim 168777 mac 168777 bytes_out 0 168777 bytes_in 0 168777 station_ip 5.119.218.17 168777 port 802 168777 unique_id port 168777 remote_ip 10.8.0.50 168778 username aminvpn 168778 mac 168778 bytes_out 0 168778 bytes_in 0 168778 station_ip 5.119.94.158 168778 port 787 168778 unique_id port 168778 remote_ip 10.8.0.14 168780 username hashtadani4 168780 kill_reason Maximum check online fails reached 168780 mac 168780 bytes_out 0 168780 bytes_in 0 168780 station_ip 37.129.14.19 168780 port 801 168780 unique_id port 168785 username mostafa_es78 168785 mac 168785 bytes_out 3594024 168785 bytes_in 33916936 168785 station_ip 83.122.74.170 168785 port 407 168785 unique_id port 168785 remote_ip 10.8.1.46 168787 username jafari 168787 kill_reason Another user logged on this global unique id 168787 mac 168787 bytes_out 0 168787 bytes_in 0 168787 station_ip 37.137.18.243 168787 port 794 168787 unique_id port 168789 username barzegar 168789 mac 168789 bytes_out 504427 168789 bytes_in 1941145 168789 station_ip 5.119.111.133 168789 port 811 168789 unique_id port 168789 remote_ip 10.8.0.234 168791 username morteza 168791 mac 168791 bytes_out 28705 168791 bytes_in 50615 168791 station_ip 83.122.116.252 168791 port 762 168791 unique_id port 168791 remote_ip 10.8.0.46 168799 username hashtadani4 168799 mac 168799 bytes_out 0 168799 bytes_in 0 168799 station_ip 37.129.14.19 168799 port 803 168799 unique_id port 168799 remote_ip 10.8.0.182 168805 username hashtadani4 168805 mac 168805 bytes_out 0 168805 bytes_in 0 168805 station_ip 37.129.14.19 168805 port 802 168805 unique_id port 168805 remote_ip 10.8.0.182 168808 username morteza 168808 mac 168808 bytes_out 0 168808 bytes_in 0 168808 station_ip 83.122.116.252 168808 port 762 168808 unique_id port 168808 remote_ip 10.8.0.46 168817 username hashtadani4 168817 mac 168817 bytes_out 0 168817 bytes_in 0 168817 station_ip 37.129.14.19 168817 port 413 168817 unique_id port 168817 remote_ip 10.8.1.142 168765 unique_id port 168765 remote_ip 10.8.0.182 168767 username aminvpn 168767 mac 168767 bytes_out 12763 168767 bytes_in 10002 168767 station_ip 5.119.94.158 168767 port 802 168767 unique_id port 168767 remote_ip 10.8.0.14 168770 username saeed9658 168770 mac 168770 bytes_out 199325 168770 bytes_in 802213 168770 station_ip 5.119.176.146 168770 port 798 168770 unique_id port 168770 remote_ip 10.8.0.166 168771 username aminvpn 168771 mac 168771 bytes_out 0 168771 bytes_in 0 168771 station_ip 5.119.94.158 168771 port 803 168771 unique_id port 168771 remote_ip 10.8.0.14 168772 username rahim 168772 mac 168772 bytes_out 0 168772 bytes_in 0 168772 station_ip 5.119.218.17 168772 port 391 168772 unique_id port 168772 remote_ip 10.8.1.126 168773 username tahmasebi 168773 mac 168773 bytes_out 12797887 168773 bytes_in 40765973 168773 station_ip 5.120.2.227 168773 port 787 168773 unique_id port 168773 remote_ip 10.8.0.42 168776 username hashtadani4 168776 mac 168776 bytes_out 0 168776 bytes_in 0 168776 station_ip 37.129.14.19 168776 port 391 168776 unique_id port 168776 remote_ip 10.8.1.142 168779 username rahim 168779 mac 168779 bytes_out 0 168779 bytes_in 0 168779 station_ip 5.119.218.17 168779 port 802 168779 unique_id port 168779 remote_ip 10.8.0.50 168788 username tahmasebi 168788 kill_reason Another user logged on this global unique id 168788 mac 168788 bytes_out 0 168788 bytes_in 0 168788 station_ip 5.120.2.227 168788 port 798 168788 unique_id port 168788 remote_ip 10.8.0.42 168790 username hashtadani4 168790 mac 168790 bytes_out 2270 168790 bytes_in 4706 168790 station_ip 37.129.14.19 168790 port 802 168790 unique_id port 168790 remote_ip 10.8.0.182 168792 username aminvpn 168792 mac 168792 bytes_out 0 168792 bytes_in 0 168792 station_ip 5.119.94.158 168792 port 808 168792 unique_id port 168792 remote_ip 10.8.0.14 168794 username ayobi 168794 kill_reason Another user logged on this global unique id 168794 mac 168794 bytes_out 0 168794 bytes_in 0 168794 station_ip 37.27.12.38 168794 port 807 168794 unique_id port 168796 username shadkam 168796 mac 168796 bytes_out 0 168796 bytes_in 0 168796 station_ip 37.129.87.60 168796 port 806 168796 unique_id port 168796 remote_ip 10.8.0.62 168797 username hashtadani4 168797 mac 168797 bytes_out 0 168797 bytes_in 0 168797 station_ip 37.129.14.19 168797 port 806 168797 unique_id port 168797 remote_ip 10.8.0.182 168800 username pourshad 168800 mac 168800 bytes_out 0 168800 bytes_in 0 168800 station_ip 5.120.113.112 168800 port 406 168800 unique_id port 168800 remote_ip 10.8.1.154 168801 username aminvpn 168801 mac 168801 bytes_out 239520 168801 bytes_in 2815707 168801 station_ip 5.119.94.158 168801 port 808 168801 unique_id port 168801 remote_ip 10.8.0.14 168802 username aminvpn 168802 mac 168802 bytes_out 0 168802 bytes_in 0 168802 station_ip 5.126.57.246 168802 port 803 168802 unique_id port 168802 remote_ip 10.8.0.14 168803 username shadkam 168803 mac 168803 bytes_out 221030 168803 bytes_in 2486174 168803 station_ip 37.129.87.60 168803 port 809 168803 unique_id port 168803 remote_ip 10.8.0.62 168804 username barzegar 168804 mac 168804 bytes_out 0 168804 bytes_in 0 168804 station_ip 5.119.111.133 168804 port 802 168804 unique_id port 168804 remote_ip 10.8.0.234 168807 username jafari 168807 kill_reason Another user logged on this global unique id 168807 mac 168807 bytes_out 0 168807 bytes_in 0 168807 station_ip 37.137.18.243 168781 remote_ip 10.8.0.14 168782 username rahim 168782 mac 168782 bytes_out 0 168782 bytes_in 0 168782 station_ip 5.119.218.17 168782 port 802 168782 unique_id port 168782 remote_ip 10.8.0.50 168783 username hashtadani4 168783 mac 168783 bytes_out 0 168783 bytes_in 0 168783 station_ip 37.129.14.19 168783 port 391 168783 unique_id port 168783 remote_ip 10.8.1.142 168784 username aminvpn 168784 mac 168784 bytes_out 0 168784 bytes_in 0 168784 station_ip 5.119.94.158 168784 port 787 168784 unique_id port 168784 remote_ip 10.8.0.14 168786 username aminvpn 168786 mac 168786 bytes_out 0 168786 bytes_in 0 168786 station_ip 5.126.57.246 168786 port 803 168786 unique_id port 168786 remote_ip 10.8.0.14 168793 username morteza 168793 mac 168793 bytes_out 0 168793 bytes_in 0 168793 station_ip 83.122.116.252 168793 port 762 168793 unique_id port 168793 remote_ip 10.8.0.46 168795 username aminvpn 168795 mac 168795 bytes_out 0 168795 bytes_in 0 168795 station_ip 5.126.57.246 168795 port 809 168795 unique_id port 168795 remote_ip 10.8.0.14 168798 username mohammadjavad 168798 mac 168798 bytes_out 1002436 168798 bytes_in 28294182 168798 station_ip 83.122.196.21 168798 port 803 168798 unique_id port 168798 remote_ip 10.8.0.142 168806 username morteza 168806 mac 168806 bytes_out 0 168806 bytes_in 0 168806 station_ip 83.122.116.252 168806 port 762 168806 unique_id port 168806 remote_ip 10.8.0.46 168810 username forozandeh1 168810 mac 168810 bytes_out 719005 168810 bytes_in 2481348 168810 station_ip 37.129.176.120 168810 port 787 168810 unique_id port 168810 remote_ip 10.8.0.130 168814 username morteza 168814 kill_reason Maximum check online fails reached 168814 mac 168814 bytes_out 0 168814 bytes_in 0 168814 station_ip 83.122.116.252 168814 port 407 168814 unique_id port 168815 username hashtadani4 168815 mac 168815 bytes_out 0 168815 bytes_in 0 168815 station_ip 37.129.14.19 168815 port 802 168815 unique_id port 168815 remote_ip 10.8.0.182 168818 username mahdiyehalizadeh 168818 kill_reason Wrong password 168818 mac 168818 bytes_out 0 168818 bytes_in 0 168818 station_ip 5.120.50.38 168818 port 802 168818 unique_id port 168820 username morteza 168820 kill_reason Maximum check online fails reached 168820 mac 168820 bytes_out 0 168820 bytes_in 0 168820 station_ip 83.122.116.252 168820 port 411 168820 unique_id port 168821 username aminvpn 168821 mac 168821 bytes_out 0 168821 bytes_in 0 168821 station_ip 5.119.94.158 168821 port 787 168821 unique_id port 168821 remote_ip 10.8.0.14 168824 username jafari 168824 kill_reason Another user logged on this global unique id 168824 mac 168824 bytes_out 0 168824 bytes_in 0 168824 station_ip 37.137.18.243 168824 port 794 168824 unique_id port 168830 username shadkam 168830 mac 168830 bytes_out 29354 168830 bytes_in 63041 168830 station_ip 37.129.209.233 168830 port 787 168830 unique_id port 168830 remote_ip 10.8.0.62 168831 username aminvpn 168831 mac 168831 bytes_out 0 168831 bytes_in 0 168831 station_ip 5.126.57.246 168831 port 810 168831 unique_id port 168831 remote_ip 10.8.0.14 168835 username aminvpn 168835 mac 168835 bytes_out 64305 168835 bytes_in 401827 168835 station_ip 5.119.94.158 168835 port 787 168835 unique_id port 168835 remote_ip 10.8.0.14 168837 username houshang 168837 mac 168837 bytes_out 0 168837 bytes_in 0 168837 station_ip 5.120.51.207 168837 port 762 168837 unique_id port 168837 remote_ip 10.8.0.134 168843 username hashtadani4 168807 port 794 168807 unique_id port 168809 username morteza 168809 mac 168809 bytes_out 0 168809 bytes_in 0 168809 station_ip 83.122.116.252 168809 port 762 168809 unique_id port 168809 remote_ip 10.8.0.46 168811 username aminvpn 168811 mac 168811 bytes_out 16342 168811 bytes_in 19866 168811 station_ip 5.119.94.158 168811 port 806 168811 unique_id port 168811 remote_ip 10.8.0.14 168812 username aminvpn 168812 mac 168812 bytes_out 0 168812 bytes_in 0 168812 station_ip 5.126.57.246 168812 port 762 168812 unique_id port 168812 remote_ip 10.8.0.14 168813 username morteza 168813 mac 168813 bytes_out 0 168813 bytes_in 0 168813 station_ip 83.122.116.252 168813 port 762 168813 unique_id port 168813 remote_ip 10.8.0.46 168816 username morteza 168816 kill_reason Maximum number of concurrent logins reached 168816 mac 168816 bytes_out 0 168816 bytes_in 0 168816 station_ip 83.122.116.252 168816 port 413 168816 unique_id port 168819 username morteza 168819 kill_reason Maximum check online fails reached 168819 mac 168819 bytes_out 0 168819 bytes_in 0 168819 station_ip 83.122.116.252 168819 port 412 168819 unique_id port 168823 username hashtadani4 168823 mac 168823 bytes_out 0 168823 bytes_in 0 168823 station_ip 37.129.14.19 168823 port 413 168823 unique_id port 168823 remote_ip 10.8.1.142 168825 username mirzaei 168825 kill_reason Another user logged on this global unique id 168825 mac 168825 bytes_out 0 168825 bytes_in 0 168825 station_ip 5.120.27.93 168825 port 784 168825 unique_id port 168827 username hashtadani4 168827 mac 168827 bytes_out 0 168827 bytes_in 0 168827 station_ip 37.129.14.19 168827 port 812 168827 unique_id port 168827 remote_ip 10.8.0.182 168829 username forozandeh1 168829 mac 168829 bytes_out 0 168829 bytes_in 0 168829 station_ip 83.122.34.217 168829 port 806 168829 unique_id port 168829 remote_ip 10.8.0.130 168836 username aminvpn 168836 mac 168836 bytes_out 0 168836 bytes_in 0 168836 station_ip 5.126.57.246 168836 port 809 168836 unique_id port 168836 remote_ip 10.8.0.14 168840 username aminvpn 168840 mac 168840 bytes_out 0 168840 bytes_in 0 168840 station_ip 5.126.57.246 168840 port 762 168840 unique_id port 168840 remote_ip 10.8.0.14 168842 username hashtadani4 168842 mac 168842 bytes_out 0 168842 bytes_in 0 168842 station_ip 37.129.14.19 168842 port 787 168842 unique_id port 168842 remote_ip 10.8.0.182 168844 username rahim 168844 kill_reason Another user logged on this global unique id 168844 mac 168844 bytes_out 0 168844 bytes_in 0 168844 station_ip 5.119.218.17 168844 port 391 168844 unique_id port 168844 remote_ip 10.8.1.126 168845 username jafari 168845 kill_reason Another user logged on this global unique id 168845 mac 168845 bytes_out 0 168845 bytes_in 0 168845 station_ip 37.137.18.243 168845 port 794 168845 unique_id port 168847 username farhad2 168847 mac 168847 bytes_out 0 168847 bytes_in 0 168847 station_ip 5.119.95.73 168847 port 413 168847 unique_id port 168847 remote_ip 10.8.1.222 168849 username aminvpn 168849 mac 168849 bytes_out 0 168849 bytes_in 0 168849 station_ip 5.126.57.246 168849 port 811 168849 unique_id port 168849 remote_ip 10.8.0.14 168850 username hashtadani4 168850 mac 168850 bytes_out 0 168850 bytes_in 0 168850 station_ip 37.129.14.19 168850 port 811 168850 unique_id port 168850 remote_ip 10.8.0.182 168851 username aminvpn 168851 mac 168851 bytes_out 0 168851 bytes_in 0 168851 station_ip 5.119.94.158 168851 port 810 168822 username hashtadani4 168822 mac 168822 bytes_out 0 168822 bytes_in 0 168822 station_ip 37.129.14.19 168822 port 413 168822 unique_id port 168822 remote_ip 10.8.1.142 168826 username aminvpn 168826 mac 168826 bytes_out 0 168826 bytes_in 0 168826 station_ip 5.126.57.246 168826 port 810 168826 unique_id port 168826 remote_ip 10.8.0.14 168828 username aminvpn 168828 mac 168828 bytes_out 0 168828 bytes_in 0 168828 station_ip 5.119.94.158 168828 port 813 168828 unique_id port 168828 remote_ip 10.8.0.14 168832 username mahdiyehalizadeh 168832 mac 168832 bytes_out 52655 168832 bytes_in 46551 168832 station_ip 5.120.50.38 168832 port 809 168832 unique_id port 168832 remote_ip 10.8.0.82 168833 username hashtadani4 168833 mac 168833 bytes_out 0 168833 bytes_in 0 168833 station_ip 37.129.14.19 168833 port 806 168833 unique_id port 168833 remote_ip 10.8.0.182 168834 username jafari 168834 kill_reason Another user logged on this global unique id 168834 mac 168834 bytes_out 0 168834 bytes_in 0 168834 station_ip 37.137.18.243 168834 port 794 168834 unique_id port 168838 username kalantary 168838 mac 168838 bytes_out 0 168838 bytes_in 0 168838 station_ip 37.129.38.245 168838 port 811 168838 unique_id port 168838 remote_ip 10.8.0.98 168839 username aminvpn 168839 mac 168839 bytes_out 0 168839 bytes_in 0 168839 station_ip 5.119.94.158 168839 port 787 168839 unique_id port 168839 remote_ip 10.8.0.14 168841 username hashtadani4 168841 mac 168841 bytes_out 0 168841 bytes_in 0 168841 station_ip 37.129.14.19 168841 port 413 168841 unique_id port 168841 remote_ip 10.8.1.142 168854 username shadkam 168854 mac 168854 bytes_out 56297 168854 bytes_in 52409 168854 station_ip 83.122.136.95 168854 port 787 168854 unique_id port 168854 remote_ip 10.8.0.62 168860 username sedighe 168860 mac 168860 bytes_out 0 168860 bytes_in 0 168860 station_ip 37.129.39.102 168860 port 809 168860 unique_id port 168860 remote_ip 10.8.0.146 168862 username hashtadani4 168862 mac 168862 bytes_out 2111 168862 bytes_in 4546 168862 station_ip 37.129.14.19 168862 port 787 168862 unique_id port 168862 remote_ip 10.8.0.182 168863 username hashtadani4 168863 mac 168863 bytes_out 0 168863 bytes_in 0 168863 station_ip 37.129.14.19 168863 port 787 168863 unique_id port 168863 remote_ip 10.8.0.182 168867 username aminvpn 168867 mac 168867 bytes_out 0 168867 bytes_in 0 168867 station_ip 5.126.57.246 168867 port 790 168867 unique_id port 168867 remote_ip 10.8.0.14 168868 username hashtadani4 168868 mac 168868 bytes_out 0 168868 bytes_in 0 168868 station_ip 37.129.14.19 168868 port 787 168868 unique_id port 168868 remote_ip 10.8.0.182 168872 username jafari 168872 kill_reason Another user logged on this global unique id 168872 mac 168872 bytes_out 0 168872 bytes_in 0 168872 station_ip 37.137.18.243 168872 port 794 168872 unique_id port 168874 username houshang 168874 kill_reason Another user logged on this global unique id 168874 mac 168874 bytes_out 0 168874 bytes_in 0 168874 station_ip 5.120.51.207 168874 port 762 168874 unique_id port 168874 remote_ip 10.8.0.134 168875 username barzegar 168875 mac 168875 bytes_out 0 168875 bytes_in 0 168875 station_ip 5.119.111.133 168875 port 808 168875 unique_id port 168877 username hashtadani4 168877 mac 168877 bytes_out 0 168877 bytes_in 0 168877 station_ip 37.129.14.19 168877 port 787 168877 unique_id port 168877 remote_ip 10.8.0.182 168881 username tahmasebi 168881 mac 168843 mac 168843 bytes_out 0 168843 bytes_in 0 168843 station_ip 37.129.14.19 168843 port 762 168843 unique_id port 168843 remote_ip 10.8.0.182 168846 username hashtadani4 168846 mac 168846 bytes_out 0 168846 bytes_in 0 168846 station_ip 37.129.14.19 168846 port 762 168846 unique_id port 168846 remote_ip 10.8.0.182 168848 username aminvpn 168848 mac 168848 bytes_out 11655 168848 bytes_in 18682 168848 station_ip 5.119.94.158 168848 port 810 168848 unique_id port 168848 remote_ip 10.8.0.14 168852 username aminvpn 168852 mac 168852 bytes_out 0 168852 bytes_in 0 168852 station_ip 5.126.57.246 168852 port 811 168852 unique_id port 168852 remote_ip 10.8.0.14 168855 username aminvpn 168855 mac 168855 bytes_out 7800 168855 bytes_in 10183 168855 station_ip 5.119.94.158 168855 port 810 168855 unique_id port 168855 remote_ip 10.8.0.14 168857 username aminvpn 168857 mac 168857 bytes_out 0 168857 bytes_in 0 168857 station_ip 5.126.57.246 168857 port 787 168857 unique_id port 168857 remote_ip 10.8.0.14 168865 username godarzi 168865 mac 168865 bytes_out 3812033 168865 bytes_in 30056653 168865 station_ip 5.119.46.130 168865 port 790 168865 unique_id port 168865 remote_ip 10.8.0.174 168869 username aminvpn 168869 mac 168869 bytes_out 0 168869 bytes_in 0 168869 station_ip 5.119.94.158 168869 port 797 168869 unique_id port 168869 remote_ip 10.8.0.14 168873 username mosi 168873 kill_reason Another user logged on this global unique id 168873 mac 168873 bytes_out 0 168873 bytes_in 0 168873 station_ip 151.235.105.226 168873 port 810 168873 unique_id port 168873 remote_ip 10.8.0.138 168878 username aminvpn 168878 mac 168878 bytes_out 0 168878 bytes_in 0 168878 station_ip 5.119.94.158 168878 port 790 168878 unique_id port 168878 remote_ip 10.8.0.14 168884 username aminvpn 168884 mac 168884 bytes_out 0 168884 bytes_in 0 168884 station_ip 5.126.57.246 168884 port 797 168884 unique_id port 168884 remote_ip 10.8.0.14 168888 username aminvpn 168888 mac 168888 bytes_out 8226 168888 bytes_in 10083 168888 station_ip 5.119.94.158 168888 port 798 168888 unique_id port 168888 remote_ip 10.8.0.14 168891 username aminvpn 168891 mac 168891 bytes_out 0 168891 bytes_in 0 168891 station_ip 5.126.57.246 168891 port 797 168891 unique_id port 168891 remote_ip 10.8.0.14 168893 username hashtadani4 168893 mac 168893 bytes_out 0 168893 bytes_in 0 168893 station_ip 37.129.14.19 168893 port 798 168893 unique_id port 168893 remote_ip 10.8.0.182 168895 username houshang 168895 kill_reason Another user logged on this global unique id 168895 mac 168895 bytes_out 0 168895 bytes_in 0 168895 station_ip 5.120.51.207 168895 port 762 168895 unique_id port 168901 username jafari 168901 kill_reason Another user logged on this global unique id 168901 mac 168901 bytes_out 0 168901 bytes_in 0 168901 station_ip 37.137.18.243 168901 port 794 168901 unique_id port 168907 username hashtadani4 168907 mac 168907 bytes_out 0 168907 bytes_in 0 168907 station_ip 37.129.14.19 168907 port 391 168907 unique_id port 168907 remote_ip 10.8.1.142 168915 username hatami 168915 mac 168915 bytes_out 809989 168915 bytes_in 10520182 168915 station_ip 151.235.96.204 168915 port 797 168915 unique_id port 168915 remote_ip 10.8.0.106 168921 username barzegar 168921 mac 168921 bytes_out 0 168921 bytes_in 0 168921 station_ip 5.119.111.133 168921 port 787 168921 unique_id port 168921 remote_ip 10.8.0.234 168926 username farhad2 168926 mac 168851 unique_id port 168851 remote_ip 10.8.0.14 168853 username hashtadani4 168853 mac 168853 bytes_out 0 168853 bytes_in 0 168853 station_ip 37.129.14.19 168853 port 811 168853 unique_id port 168853 remote_ip 10.8.0.182 168856 username barzegar 168856 kill_reason Another user logged on this global unique id 168856 mac 168856 bytes_out 0 168856 bytes_in 0 168856 station_ip 5.119.111.133 168856 port 808 168856 unique_id port 168856 remote_ip 10.8.0.234 168858 username hashtadani4 168858 mac 168858 bytes_out 0 168858 bytes_in 0 168858 station_ip 37.129.14.19 168858 port 787 168858 unique_id port 168858 remote_ip 10.8.0.182 168859 username ayobi 168859 kill_reason Another user logged on this global unique id 168859 mac 168859 bytes_out 0 168859 bytes_in 0 168859 station_ip 37.27.12.38 168859 port 807 168859 unique_id port 168861 username jafari 168861 kill_reason Another user logged on this global unique id 168861 mac 168861 bytes_out 0 168861 bytes_in 0 168861 station_ip 37.137.18.243 168861 port 794 168861 unique_id port 168864 username vanila 168864 mac 168864 bytes_out 45419500 168864 bytes_in 14918228 168864 station_ip 83.122.215.238 168864 port 797 168864 unique_id port 168864 remote_ip 10.8.0.178 168866 username aminvpn 168866 mac 168866 bytes_out 108751 168866 bytes_in 928168 168866 station_ip 5.119.94.158 168866 port 811 168866 unique_id port 168866 remote_ip 10.8.0.14 168870 username aminvpn 168870 mac 168870 bytes_out 0 168870 bytes_in 0 168870 station_ip 5.126.57.246 168870 port 787 168870 unique_id port 168870 remote_ip 10.8.0.14 168871 username hashtadani4 168871 mac 168871 bytes_out 0 168871 bytes_in 0 168871 station_ip 37.129.14.19 168871 port 787 168871 unique_id port 168871 remote_ip 10.8.0.182 168876 username hashtadani4 168876 mac 168876 bytes_out 0 168876 bytes_in 0 168876 station_ip 37.129.14.19 168876 port 787 168876 unique_id port 168876 remote_ip 10.8.0.182 168879 username tahmasebi 168879 kill_reason Another user logged on this global unique id 168879 mac 168879 bytes_out 0 168879 bytes_in 0 168879 station_ip 5.120.2.227 168879 port 798 168879 unique_id port 168880 username aminvpn 168880 mac 168880 bytes_out 0 168880 bytes_in 0 168880 station_ip 5.126.57.246 168880 port 787 168880 unique_id port 168880 remote_ip 10.8.0.14 168882 username farhad2 168882 mac 168882 bytes_out 0 168882 bytes_in 0 168882 station_ip 5.120.149.195 168882 port 413 168882 unique_id port 168882 remote_ip 10.8.1.222 168887 username saeed9658 168887 mac 168887 bytes_out 0 168887 bytes_in 0 168887 station_ip 5.119.176.146 168887 port 802 168887 unique_id port 168887 remote_ip 10.8.0.166 168889 username hashtadani4 168889 mac 168889 bytes_out 0 168889 bytes_in 0 168889 station_ip 37.129.14.19 168889 port 798 168889 unique_id port 168889 remote_ip 10.8.0.182 168894 username aminvpn 168894 mac 168894 bytes_out 0 168894 bytes_in 0 168894 station_ip 5.119.94.158 168894 port 787 168894 unique_id port 168894 remote_ip 10.8.0.14 168897 username rahim 168897 kill_reason Another user logged on this global unique id 168897 mac 168897 bytes_out 0 168897 bytes_in 0 168897 station_ip 5.119.218.17 168897 port 391 168897 unique_id port 168900 username ayobi 168900 mac 168900 bytes_out 0 168900 bytes_in 0 168900 station_ip 37.27.12.38 168900 port 807 168900 unique_id port 168903 username rahim 168903 mac 168903 bytes_out 0 168903 bytes_in 0 168903 station_ip 5.119.218.17 168903 port 391 168903 unique_id port 168881 bytes_out 0 168881 bytes_in 0 168881 station_ip 5.120.2.227 168881 port 798 168881 unique_id port 168883 username aminvpn 168883 mac 168883 bytes_out 0 168883 bytes_in 0 168883 station_ip 5.119.94.158 168883 port 790 168883 unique_id port 168883 remote_ip 10.8.0.14 168885 username tahmasebi 168885 mac 168885 bytes_out 0 168885 bytes_in 0 168885 station_ip 5.120.2.227 168885 port 790 168885 unique_id port 168885 remote_ip 10.8.0.42 168886 username hashtadani4 168886 mac 168886 bytes_out 0 168886 bytes_in 0 168886 station_ip 37.129.14.19 168886 port 797 168886 unique_id port 168886 remote_ip 10.8.0.182 168890 username godarzi 168890 mac 168890 bytes_out 333259 168890 bytes_in 2888431 168890 station_ip 5.119.46.130 168890 port 787 168890 unique_id port 168890 remote_ip 10.8.0.174 168892 username barzegar 168892 mac 168892 bytes_out 0 168892 bytes_in 0 168892 station_ip 5.119.111.133 168892 port 808 168892 unique_id port 168892 remote_ip 10.8.0.234 168896 username aminvpn 168896 mac 168896 bytes_out 0 168896 bytes_in 0 168896 station_ip 5.126.57.246 168896 port 797 168896 unique_id port 168896 remote_ip 10.8.0.14 168898 username aminvpn 168898 mac 168898 bytes_out 0 168898 bytes_in 0 168898 station_ip 5.119.94.158 168898 port 798 168898 unique_id port 168898 remote_ip 10.8.0.14 168899 username aminvpn 168899 mac 168899 bytes_out 0 168899 bytes_in 0 168899 station_ip 5.126.57.246 168899 port 802 168899 unique_id port 168899 remote_ip 10.8.0.14 168902 username aminvpn 168902 mac 168902 bytes_out 0 168902 bytes_in 0 168902 station_ip 5.119.94.158 168902 port 798 168902 unique_id port 168902 remote_ip 10.8.0.14 168904 username aminvpn 168904 mac 168904 bytes_out 0 168904 bytes_in 0 168904 station_ip 5.126.57.246 168904 port 802 168904 unique_id port 168904 remote_ip 10.8.0.14 168906 username aminvpn 168906 mac 168906 bytes_out 0 168906 bytes_in 0 168906 station_ip 5.119.94.158 168906 port 798 168906 unique_id port 168906 remote_ip 10.8.0.14 168908 username aminvpn 168908 mac 168908 bytes_out 0 168908 bytes_in 0 168908 station_ip 5.126.57.246 168908 port 785 168908 unique_id port 168908 remote_ip 10.8.0.14 168910 username hashtadani4 168910 mac 168910 bytes_out 0 168910 bytes_in 0 168910 station_ip 37.129.14.19 168910 port 785 168910 unique_id port 168910 remote_ip 10.8.0.182 168917 username hashtadani4 168917 mac 168917 bytes_out 0 168917 bytes_in 0 168917 station_ip 37.129.14.19 168917 port 787 168917 unique_id port 168917 remote_ip 10.8.0.182 168920 username hashtadani4 168920 mac 168920 bytes_out 0 168920 bytes_in 0 168920 station_ip 37.129.14.19 168920 port 797 168920 unique_id port 168920 remote_ip 10.8.0.182 168924 username aminvpn 168924 mac 168924 bytes_out 0 168924 bytes_in 0 168924 station_ip 5.126.57.246 168924 port 787 168924 unique_id port 168924 remote_ip 10.8.0.14 168925 username hashtadani4 168925 mac 168925 bytes_out 0 168925 bytes_in 0 168925 station_ip 37.129.14.19 168925 port 787 168925 unique_id port 168925 remote_ip 10.8.0.182 168933 username tahmasebi 168933 mac 168933 bytes_out 0 168933 bytes_in 0 168933 station_ip 5.120.2.227 168933 port 807 168933 unique_id port 168933 remote_ip 10.8.0.42 168935 username kordestani 168935 kill_reason Another user logged on this global unique id 168935 mac 168935 bytes_out 0 168935 bytes_in 0 168935 station_ip 151.235.94.55 168935 port 762 168905 username malekpoir 168905 mac 168905 bytes_out 0 168905 bytes_in 0 168905 station_ip 5.120.60.155 168905 port 785 168905 unique_id port 168909 username hashtadani4 168909 mac 168909 bytes_out 0 168909 bytes_in 0 168909 station_ip 37.129.14.19 168909 port 391 168909 unique_id port 168909 remote_ip 10.8.1.142 168911 username houshang 168911 kill_reason Another user logged on this global unique id 168911 mac 168911 bytes_out 0 168911 bytes_in 0 168911 station_ip 5.120.51.207 168911 port 762 168911 unique_id port 168912 username mosi 168912 kill_reason Another user logged on this global unique id 168912 mac 168912 bytes_out 0 168912 bytes_in 0 168912 station_ip 151.235.105.226 168912 port 810 168912 unique_id port 168913 username barzegar 168913 mac 168913 bytes_out 0 168913 bytes_in 0 168913 station_ip 5.119.111.133 168913 port 787 168913 unique_id port 168913 remote_ip 10.8.0.234 168914 username houshang 168914 mac 168914 bytes_out 0 168914 bytes_in 0 168914 station_ip 5.120.51.207 168914 port 762 168914 unique_id port 168916 username kordestani 168916 mac 168916 bytes_out 0 168916 bytes_in 0 168916 station_ip 151.235.123.97 168916 port 802 168916 unique_id port 168916 remote_ip 10.8.0.74 168918 username aminvpn 168918 mac 168918 bytes_out 28588 168918 bytes_in 44647 168918 station_ip 5.119.94.158 168918 port 798 168918 unique_id port 168918 remote_ip 10.8.0.14 168919 username aminvpn 168919 mac 168919 bytes_out 0 168919 bytes_in 0 168919 station_ip 5.126.57.246 168919 port 787 168919 unique_id port 168919 remote_ip 10.8.0.14 168922 username farhad2 168922 kill_reason Another user logged on this global unique id 168922 mac 168922 bytes_out 0 168922 bytes_in 0 168922 station_ip 5.120.149.195 168922 port 413 168922 unique_id port 168922 remote_ip 10.8.1.222 168923 username aminvpn 168923 mac 168923 bytes_out 0 168923 bytes_in 0 168923 station_ip 5.119.94.158 168923 port 798 168923 unique_id port 168923 remote_ip 10.8.0.14 168927 username aminvpn 168927 mac 168927 bytes_out 0 168927 bytes_in 0 168927 station_ip 5.119.94.158 168927 port 797 168927 unique_id port 168927 remote_ip 10.8.0.14 168929 username aminvpn 168929 mac 168929 bytes_out 0 168929 bytes_in 0 168929 station_ip 5.126.57.246 168929 port 787 168929 unique_id port 168929 remote_ip 10.8.0.14 168931 username tahmasebi 168931 mac 168931 bytes_out 1507036 168931 bytes_in 354609 168931 station_ip 5.120.2.227 168931 port 790 168931 unique_id port 168931 remote_ip 10.8.0.42 168936 username aminvpn 168936 mac 168936 bytes_out 0 168936 bytes_in 0 168936 station_ip 5.126.57.246 168936 port 807 168936 unique_id port 168936 remote_ip 10.8.0.14 168939 username mostafa_es78 168939 mac 168939 bytes_out 0 168939 bytes_in 0 168939 station_ip 83.122.74.170 168939 port 391 168939 unique_id port 168939 remote_ip 10.8.1.46 168942 username tahmasebi 168942 mac 168942 bytes_out 0 168942 bytes_in 0 168942 station_ip 5.120.2.227 168942 port 808 168942 unique_id port 168942 remote_ip 10.8.0.42 168946 username tahmasebi 168946 mac 168946 bytes_out 0 168946 bytes_in 0 168946 station_ip 5.120.2.227 168946 port 809 168946 unique_id port 168946 remote_ip 10.8.0.42 168947 username aminvpn 168947 mac 168947 bytes_out 6426 168947 bytes_in 9041 168947 station_ip 5.119.94.158 168947 port 797 168947 unique_id port 168947 remote_ip 10.8.0.14 168951 username houshang 168951 kill_reason Another user logged on this global unique id 168951 mac 168926 bytes_out 0 168926 bytes_in 0 168926 station_ip 5.120.149.195 168926 port 413 168926 unique_id port 168928 username jafari 168928 kill_reason Another user logged on this global unique id 168928 mac 168928 bytes_out 0 168928 bytes_in 0 168928 station_ip 37.137.18.243 168928 port 794 168928 unique_id port 168930 username hashtadani4 168930 mac 168930 bytes_out 0 168930 bytes_in 0 168930 station_ip 37.129.14.19 168930 port 802 168930 unique_id port 168930 remote_ip 10.8.0.182 168932 username houshang 168932 kill_reason Another user logged on this global unique id 168932 mac 168932 bytes_out 0 168932 bytes_in 0 168932 station_ip 5.120.51.207 168932 port 785 168932 unique_id port 168932 remote_ip 10.8.0.134 168934 username aminvpn 168934 mac 168934 bytes_out 8123 168934 bytes_in 9977 168934 station_ip 5.119.94.158 168934 port 797 168934 unique_id port 168934 remote_ip 10.8.0.14 168937 username pourshad 168937 mac 168937 bytes_out 691644 168937 bytes_in 4410269 168937 station_ip 5.120.113.112 168937 port 406 168937 unique_id port 168937 remote_ip 10.8.1.154 168938 username mosi 168938 kill_reason Another user logged on this global unique id 168938 mac 168938 bytes_out 0 168938 bytes_in 0 168938 station_ip 151.235.105.226 168938 port 810 168938 unique_id port 168940 username pourshad 168940 kill_reason Maximum check online fails reached 168940 mac 168940 bytes_out 0 168940 bytes_in 0 168940 station_ip 5.120.113.112 168940 port 406 168940 unique_id port 168941 username aminvpn 168941 mac 168941 bytes_out 7843 168941 bytes_in 13476 168941 station_ip 5.119.94.158 168941 port 797 168941 unique_id port 168941 remote_ip 10.8.0.14 168944 username hashtadani4 168944 mac 168944 bytes_out 0 168944 bytes_in 0 168944 station_ip 37.129.14.19 168944 port 808 168944 unique_id port 168944 remote_ip 10.8.0.182 168948 username barzegar 168948 mac 168948 bytes_out 0 168948 bytes_in 0 168948 station_ip 5.119.111.133 168948 port 808 168948 unique_id port 168948 remote_ip 10.8.0.234 168949 username mirzaei 168949 kill_reason Another user logged on this global unique id 168949 mac 168949 bytes_out 0 168949 bytes_in 0 168949 station_ip 5.120.27.93 168949 port 784 168949 unique_id port 168950 username aminvpn 168950 mac 168950 bytes_out 0 168950 bytes_in 0 168950 station_ip 5.126.57.246 168950 port 809 168950 unique_id port 168950 remote_ip 10.8.0.14 168952 username aminvpn 168952 mac 168952 bytes_out 6538 168952 bytes_in 8578 168952 station_ip 5.119.94.158 168952 port 808 168952 unique_id port 168952 remote_ip 10.8.0.14 168958 username kordestani 168958 mac 168958 bytes_out 0 168958 bytes_in 0 168958 station_ip 151.235.94.55 168958 port 762 168958 unique_id port 168961 username hashtadani4 168961 mac 168961 bytes_out 0 168961 bytes_in 0 168961 station_ip 37.129.14.19 168961 port 391 168961 unique_id port 168961 remote_ip 10.8.1.142 168962 username hashtadani4 168962 mac 168962 bytes_out 0 168962 bytes_in 0 168962 station_ip 37.129.14.19 168962 port 785 168962 unique_id port 168962 remote_ip 10.8.0.182 168963 username barzegar 168963 mac 168963 bytes_out 0 168963 bytes_in 0 168963 station_ip 5.119.111.133 168963 port 391 168963 unique_id port 168963 remote_ip 10.8.1.174 168964 username shadkam 168964 mac 168964 bytes_out 632419 168964 bytes_in 5521779 168964 station_ip 83.122.149.211 168964 port 762 168964 unique_id port 168964 remote_ip 10.8.0.62 168966 username jafari 168966 kill_reason Another user logged on this global unique id 168935 unique_id port 168935 remote_ip 10.8.0.74 168943 username aminvpn 168943 mac 168943 bytes_out 0 168943 bytes_in 0 168943 station_ip 5.126.57.246 168943 port 809 168943 unique_id port 168943 remote_ip 10.8.0.14 168945 username barzegar 168945 mac 168945 bytes_out 0 168945 bytes_in 0 168945 station_ip 5.119.111.133 168945 port 808 168945 unique_id port 168945 remote_ip 10.8.0.234 168953 username hashtadani4 168953 mac 168953 bytes_out 0 168953 bytes_in 0 168953 station_ip 37.129.14.19 168953 port 391 168953 unique_id port 168953 remote_ip 10.8.1.142 168959 username mosi 168959 kill_reason Another user logged on this global unique id 168959 mac 168959 bytes_out 0 168959 bytes_in 0 168959 station_ip 151.235.105.226 168959 port 810 168959 unique_id port 168960 username vanila 168960 mac 168960 bytes_out 439246 168960 bytes_in 2607986 168960 station_ip 83.122.215.238 168960 port 809 168960 unique_id port 168960 remote_ip 10.8.0.178 168969 username hosseine 168969 mac 168969 bytes_out 19634973 168969 bytes_in 42798193 168969 station_ip 113.203.89.54 168969 port 780 168969 unique_id port 168969 remote_ip 10.8.0.238 168973 username hashtadani4 168973 mac 168973 bytes_out 0 168973 bytes_in 0 168973 station_ip 37.129.14.19 168973 port 780 168973 unique_id port 168973 remote_ip 10.8.0.182 168975 username aminvpn 168975 mac 168975 bytes_out 0 168975 bytes_in 0 168975 station_ip 5.126.57.246 168975 port 808 168975 unique_id port 168975 remote_ip 10.8.0.14 168976 username barzegar 168976 mac 168976 bytes_out 0 168976 bytes_in 0 168976 station_ip 5.119.111.133 168976 port 413 168976 unique_id port 168976 remote_ip 10.8.1.174 168979 username sekonji3 168979 mac 168979 bytes_out 1054981 168979 bytes_in 14679132 168979 station_ip 83.123.4.239 168979 port 812 168979 unique_id port 168979 remote_ip 10.8.0.6 168983 username hashtadani4 168983 mac 168983 bytes_out 0 168983 bytes_in 0 168983 station_ip 37.129.14.19 168983 port 391 168983 unique_id port 168983 remote_ip 10.8.1.142 168987 username farhad2 168987 kill_reason Another user logged on this global unique id 168987 mac 168987 bytes_out 0 168987 bytes_in 0 168987 station_ip 5.120.149.195 168987 port 802 168987 unique_id port 168987 remote_ip 10.8.0.190 168995 username hassan 168995 mac 168995 bytes_out 2314932 168995 bytes_in 22653787 168995 station_ip 37.27.48.191 168995 port 790 168995 unique_id port 168995 remote_ip 10.8.0.170 168996 username aminvpn 168996 mac 168996 bytes_out 0 168996 bytes_in 0 168996 station_ip 5.126.57.246 168996 port 809 168996 unique_id port 168996 remote_ip 10.8.0.14 168999 username aminvpn 168999 mac 168999 bytes_out 0 168999 bytes_in 0 168999 station_ip 5.126.57.246 168999 port 808 168999 unique_id port 168999 remote_ip 10.8.0.14 169000 username aminvpn 169000 mac 169000 bytes_out 0 169000 bytes_in 0 169000 station_ip 5.119.94.158 169000 port 790 169000 unique_id port 169000 remote_ip 10.8.0.14 169002 username aminvpn 169002 mac 169002 bytes_out 0 169002 bytes_in 0 169002 station_ip 5.126.57.246 169002 port 808 169002 unique_id port 169002 remote_ip 10.8.0.14 169003 username jafari 169003 kill_reason Another user logged on this global unique id 169003 mac 169003 bytes_out 0 169003 bytes_in 0 169003 station_ip 37.137.18.243 169003 port 794 169003 unique_id port 169004 username aminvpn 169004 mac 169004 bytes_out 0 169004 bytes_in 0 169004 station_ip 5.119.94.158 169004 port 790 168951 bytes_out 0 168951 bytes_in 0 168951 station_ip 5.120.51.207 168951 port 785 168951 unique_id port 168954 username houshang 168954 mac 168954 bytes_out 0 168954 bytes_in 0 168954 station_ip 5.120.51.207 168954 port 785 168954 unique_id port 168955 username hashtadani4 168955 mac 168955 bytes_out 0 168955 bytes_in 0 168955 station_ip 37.129.14.19 168955 port 391 168955 unique_id port 168955 remote_ip 10.8.1.142 168956 username hashtadani4 168956 mac 168956 bytes_out 0 168956 bytes_in 0 168956 station_ip 37.129.14.19 168956 port 391 168956 unique_id port 168956 remote_ip 10.8.1.142 168957 username hashtadani4 168957 mac 168957 bytes_out 0 168957 bytes_in 0 168957 station_ip 37.129.14.19 168957 port 785 168957 unique_id port 168957 remote_ip 10.8.0.182 168965 username hashtadani4 168965 mac 168965 bytes_out 0 168965 bytes_in 0 168965 station_ip 37.129.14.19 168965 port 762 168965 unique_id port 168965 remote_ip 10.8.0.182 168968 username hashtadani4 168968 mac 168968 bytes_out 0 168968 bytes_in 0 168968 station_ip 37.129.14.19 168968 port 762 168968 unique_id port 168968 remote_ip 10.8.0.182 168971 username moradi 168971 mac 168971 bytes_out 736104 168971 bytes_in 7960116 168971 station_ip 83.122.144.90 168971 port 785 168971 unique_id port 168971 remote_ip 10.8.0.126 168972 username mosi 168972 kill_reason Another user logged on this global unique id 168972 mac 168972 bytes_out 0 168972 bytes_in 0 168972 station_ip 151.235.105.226 168972 port 810 168972 unique_id port 168980 username mahdiyehalizadeh 168980 kill_reason Another user logged on this global unique id 168980 mac 168980 bytes_out 0 168980 bytes_in 0 168980 station_ip 5.120.50.38 168980 port 806 168980 unique_id port 168980 remote_ip 10.8.0.82 168982 username mohammadmahdi 168982 kill_reason Another user logged on this global unique id 168982 mac 168982 bytes_out 0 168982 bytes_in 0 168982 station_ip 5.119.194.164 168982 port 798 168982 unique_id port 168984 username hashtadani4 168984 mac 168984 bytes_out 0 168984 bytes_in 0 168984 station_ip 37.129.14.19 168984 port 780 168984 unique_id port 168984 remote_ip 10.8.0.182 168986 username hashtadani4 168986 mac 168986 bytes_out 2058 168986 bytes_in 4653 168986 station_ip 37.129.14.19 168986 port 780 168986 unique_id port 168986 remote_ip 10.8.0.182 168990 username aminvpn 168990 mac 168990 bytes_out 159847 168990 bytes_in 1045464 168990 station_ip 5.119.94.158 168990 port 785 168990 unique_id port 168990 remote_ip 10.8.0.14 168997 username naeimeh 168997 mac 168997 bytes_out 412513 168997 bytes_in 3863968 168997 station_ip 83.123.131.122 168997 port 808 168997 unique_id port 168997 remote_ip 10.8.0.202 168998 username aminvpn 168998 mac 168998 bytes_out 0 168998 bytes_in 0 168998 station_ip 5.119.94.158 168998 port 790 168998 unique_id port 168998 remote_ip 10.8.0.14 169001 username farhad2 169001 mac 169001 bytes_out 0 169001 bytes_in 0 169001 station_ip 5.120.149.195 169001 port 802 169001 unique_id port 169005 username hashtadani4 169005 kill_reason Another user logged on this global unique id 169005 mac 169005 bytes_out 0 169005 bytes_in 0 169005 station_ip 37.129.14.19 169005 port 780 169005 unique_id port 169005 remote_ip 10.8.0.182 169006 username aminvpn 169006 mac 169006 bytes_out 0 169006 bytes_in 0 169006 station_ip 5.126.57.246 169006 port 802 169006 unique_id port 169006 remote_ip 10.8.0.14 169008 username aminvpn 169008 mac 169008 bytes_out 0 168966 mac 168966 bytes_out 0 168966 bytes_in 0 168966 station_ip 37.137.18.243 168966 port 794 168966 unique_id port 168967 username khalili2 168967 mac 168967 bytes_out 513517 168967 bytes_in 7192652 168967 station_ip 5.120.109.173 168967 port 413 168967 unique_id port 168967 remote_ip 10.8.1.158 168970 username mohammadmahdi 168970 kill_reason Another user logged on this global unique id 168970 mac 168970 bytes_out 0 168970 bytes_in 0 168970 station_ip 5.119.194.164 168970 port 798 168970 unique_id port 168970 remote_ip 10.8.0.54 168974 username hashtadani4 168974 mac 168974 bytes_out 0 168974 bytes_in 0 168974 station_ip 37.129.14.19 168974 port 785 168974 unique_id port 168974 remote_ip 10.8.0.182 168977 username khalili2 168977 mac 168977 bytes_out 0 168977 bytes_in 0 168977 station_ip 5.120.109.173 168977 port 391 168977 unique_id port 168977 remote_ip 10.8.1.158 168978 username aminvpn 168978 mac 168978 bytes_out 1625153 168978 bytes_in 17908744 168978 station_ip 83.123.137.121 168978 port 410 168978 unique_id port 168978 remote_ip 10.8.1.6 168981 username hashtadani4 168981 mac 168981 bytes_out 0 168981 bytes_in 0 168981 station_ip 37.129.14.19 168981 port 780 168981 unique_id port 168981 remote_ip 10.8.0.182 168985 username jafari 168985 kill_reason Another user logged on this global unique id 168985 mac 168985 bytes_out 0 168985 bytes_in 0 168985 station_ip 37.137.18.243 168985 port 794 168985 unique_id port 168988 username hashtadani4 168988 mac 168988 bytes_out 0 168988 bytes_in 0 168988 station_ip 37.129.14.19 168988 port 780 168988 unique_id port 168988 remote_ip 10.8.0.182 168989 username barzegar 168989 mac 168989 bytes_out 0 168989 bytes_in 0 168989 station_ip 5.119.111.133 168989 port 391 168989 unique_id port 168989 remote_ip 10.8.1.174 168991 username aminvpn 168991 mac 168991 bytes_out 0 168991 bytes_in 0 168991 station_ip 5.126.57.246 168991 port 808 168991 unique_id port 168991 remote_ip 10.8.0.14 168992 username aminvpn 168992 mac 168992 bytes_out 0 168992 bytes_in 0 168992 station_ip 5.119.94.158 168992 port 785 168992 unique_id port 168992 remote_ip 10.8.0.14 168993 username aminvpn 168993 mac 168993 bytes_out 0 168993 bytes_in 0 168993 station_ip 5.126.57.246 168993 port 809 168993 unique_id port 168993 remote_ip 10.8.0.14 168994 username aminvpn 168994 mac 168994 bytes_out 0 168994 bytes_in 0 168994 station_ip 5.119.94.158 168994 port 785 168994 unique_id port 168994 remote_ip 10.8.0.14 169007 username mehdizare 169007 mac 169007 bytes_out 0 169007 bytes_in 0 169007 station_ip 37.129.122.91 169007 port 770 169007 unique_id port 169007 remote_ip 10.8.0.90 169011 username aminvpn 169011 mac 169011 bytes_out 0 169011 bytes_in 0 169011 station_ip 5.126.57.246 169011 port 808 169011 unique_id port 169011 remote_ip 10.8.0.14 169014 username barzegar 169014 mac 169014 bytes_out 0 169014 bytes_in 0 169014 station_ip 5.119.111.133 169014 port 790 169014 unique_id port 169014 remote_ip 10.8.0.234 169017 username mahdiyehalizadeh 169017 mac 169017 bytes_out 0 169017 bytes_in 0 169017 station_ip 5.120.50.38 169017 port 806 169017 unique_id port 169023 username pourshad 169023 mac 169023 bytes_out 942148 169023 bytes_in 9093668 169023 station_ip 5.120.113.112 169023 port 807 169023 unique_id port 169023 remote_ip 10.8.0.18 169025 username hassan 169025 mac 169025 bytes_out 606088 169025 bytes_in 2102386 169004 unique_id port 169004 remote_ip 10.8.0.14 169015 username godarzi 169015 mac 169015 bytes_out 0 169015 bytes_in 0 169015 station_ip 5.119.46.130 169015 port 809 169015 unique_id port 169015 remote_ip 10.8.0.174 169016 username mostafa_es78 169016 kill_reason Another user logged on this global unique id 169016 mac 169016 bytes_out 0 169016 bytes_in 0 169016 station_ip 37.129.4.153 169016 port 762 169016 unique_id port 169016 remote_ip 10.8.0.194 169018 username hashtadani4 169018 kill_reason Another user logged on this global unique id 169018 mac 169018 bytes_out 0 169018 bytes_in 0 169018 station_ip 37.129.14.19 169018 port 780 169018 unique_id port 169020 username tahmasebi 169020 mac 169020 bytes_out 0 169020 bytes_in 0 169020 station_ip 5.120.2.227 169020 port 797 169020 unique_id port 169020 remote_ip 10.8.0.42 169021 username tahmasebi 169021 mac 169021 bytes_out 0 169021 bytes_in 0 169021 station_ip 5.120.2.227 169021 port 790 169021 unique_id port 169021 remote_ip 10.8.0.42 169024 username mostafa_es78 169024 kill_reason Another user logged on this global unique id 169024 mac 169024 bytes_out 0 169024 bytes_in 0 169024 station_ip 37.129.4.153 169024 port 762 169024 unique_id port 169027 username hassan 169027 mac 169027 bytes_out 0 169027 bytes_in 0 169027 station_ip 5.119.44.107 169027 port 410 169027 unique_id port 169027 remote_ip 10.8.1.138 169028 username barzegar 169028 mac 169028 bytes_out 2710 169028 bytes_in 4803 169028 station_ip 5.119.111.133 169028 port 785 169028 unique_id port 169028 remote_ip 10.8.0.234 169037 username farhad2 169037 kill_reason Another user logged on this global unique id 169037 mac 169037 bytes_out 0 169037 bytes_in 0 169037 station_ip 5.120.149.195 169037 port 808 169037 unique_id port 169037 remote_ip 10.8.0.190 169043 username tahmasebi 169043 mac 169043 bytes_out 0 169043 bytes_in 0 169043 station_ip 5.120.2.227 169043 port 780 169043 unique_id port 169043 remote_ip 10.8.0.42 169046 username tahmasebi 169046 mac 169046 bytes_out 0 169046 bytes_in 0 169046 station_ip 5.120.2.227 169046 port 785 169046 unique_id port 169046 remote_ip 10.8.0.42 169048 username jafari 169048 kill_reason Another user logged on this global unique id 169048 mac 169048 bytes_out 0 169048 bytes_in 0 169048 station_ip 37.137.18.243 169048 port 794 169048 unique_id port 169051 username milan 169051 kill_reason Another user logged on this global unique id 169051 mac 169051 bytes_out 0 169051 bytes_in 0 169051 station_ip 5.119.50.98 169051 port 405 169051 unique_id port 169051 remote_ip 10.8.1.178 169052 username jafari 169052 kill_reason Another user logged on this global unique id 169052 mac 169052 bytes_out 0 169052 bytes_in 0 169052 station_ip 37.137.18.243 169052 port 794 169052 unique_id port 169054 username farhad2 169054 kill_reason Another user logged on this global unique id 169054 mac 169054 bytes_out 0 169054 bytes_in 0 169054 station_ip 5.120.149.195 169054 port 808 169054 unique_id port 169055 username milan 169055 mac 169055 bytes_out 0 169055 bytes_in 0 169055 station_ip 5.119.50.98 169055 port 405 169055 unique_id port 169057 username mosi 169057 mac 169057 bytes_out 0 169057 bytes_in 0 169057 station_ip 151.235.105.226 169057 port 810 169057 unique_id port 169066 username farhad2 169066 kill_reason Another user logged on this global unique id 169066 mac 169066 bytes_out 0 169066 bytes_in 0 169066 station_ip 5.120.149.195 169066 port 808 169066 unique_id port 169067 username komeil 169067 mac 169067 bytes_out 0 169008 bytes_in 0 169008 station_ip 5.119.94.158 169008 port 808 169008 unique_id port 169008 remote_ip 10.8.0.14 169009 username aminvpn 169009 mac 169009 bytes_out 0 169009 bytes_in 0 169009 station_ip 5.126.57.246 169009 port 770 169009 unique_id port 169009 remote_ip 10.8.0.14 169010 username aminvpn 169010 mac 169010 bytes_out 0 169010 bytes_in 0 169010 station_ip 5.119.94.158 169010 port 802 169010 unique_id port 169010 remote_ip 10.8.0.14 169012 username farhad2 169012 mac 169012 bytes_out 334176 169012 bytes_in 1300116 169012 station_ip 5.120.149.195 169012 port 790 169012 unique_id port 169012 remote_ip 10.8.0.190 169013 username godarzi 169013 mac 169013 bytes_out 655442 169013 bytes_in 6746521 169013 station_ip 5.119.46.130 169013 port 770 169013 unique_id port 169013 remote_ip 10.8.0.174 169019 username jafari 169019 kill_reason Another user logged on this global unique id 169019 mac 169019 bytes_out 0 169019 bytes_in 0 169019 station_ip 37.137.18.243 169019 port 794 169019 unique_id port 169022 username jafari 169022 kill_reason Another user logged on this global unique id 169022 mac 169022 bytes_out 0 169022 bytes_in 0 169022 station_ip 37.137.18.243 169022 port 794 169022 unique_id port 169029 username barzegar 169029 kill_reason Maximum check online fails reached 169029 mac 169029 bytes_out 0 169029 bytes_in 0 169029 station_ip 5.119.111.133 169029 port 413 169029 unique_id port 169030 username vanila 169030 mac 169030 bytes_out 1089441 169030 bytes_in 5443077 169030 station_ip 83.122.215.238 169030 port 770 169030 unique_id port 169030 remote_ip 10.8.0.178 169033 username hassan 169033 mac 169033 bytes_out 0 169033 bytes_in 0 169033 station_ip 5.119.240.235 169033 port 414 169033 unique_id port 169033 remote_ip 10.8.1.138 169035 username tahmasebi 169035 mac 169035 bytes_out 0 169035 bytes_in 0 169035 station_ip 5.120.2.227 169035 port 770 169035 unique_id port 169035 remote_ip 10.8.0.42 169036 username aminvpn 169036 mac 169036 bytes_out 2913212 169036 bytes_in 37041867 169036 station_ip 5.119.94.158 169036 port 802 169036 unique_id port 169036 remote_ip 10.8.0.14 169044 username barzegar 169044 mac 169044 bytes_out 0 169044 bytes_in 0 169044 station_ip 5.119.111.133 169044 port 415 169044 unique_id port 169044 remote_ip 10.8.1.174 169053 username kamali2 169053 mac 169053 bytes_out 258713 169053 bytes_in 2378914 169053 station_ip 5.120.123.242 169053 port 780 169053 unique_id port 169053 remote_ip 10.8.0.158 169056 username barzegar 169056 mac 169056 bytes_out 0 169056 bytes_in 0 169056 station_ip 5.119.111.133 169056 port 780 169056 unique_id port 169056 remote_ip 10.8.0.234 169058 username tahmasebi 169058 mac 169058 bytes_out 0 169058 bytes_in 0 169058 station_ip 5.120.2.227 169058 port 405 169058 unique_id port 169058 remote_ip 10.8.1.90 169059 username jafari 169059 mac 169059 bytes_out 0 169059 bytes_in 0 169059 station_ip 37.137.18.243 169059 port 794 169059 unique_id port 169061 username sabaghnezhad 169061 mac 169061 bytes_out 0 169061 bytes_in 0 169061 station_ip 37.129.118.226 169061 port 405 169061 unique_id port 169061 remote_ip 10.8.1.130 169064 username tahmasebi 169064 mac 169064 bytes_out 0 169064 bytes_in 0 169064 station_ip 5.120.2.227 169064 port 405 169064 unique_id port 169064 remote_ip 10.8.1.90 169071 username jafari 169071 kill_reason Another user logged on this global unique id 169071 mac 169071 bytes_out 0 169071 bytes_in 0 169025 station_ip 37.27.48.191 169025 port 785 169025 unique_id port 169025 remote_ip 10.8.0.170 169026 username pourshad 169026 mac 169026 bytes_out 15294 169026 bytes_in 40570 169026 station_ip 5.120.113.112 169026 port 790 169026 unique_id port 169026 remote_ip 10.8.0.18 169031 username jafari 169031 kill_reason Another user logged on this global unique id 169031 mac 169031 bytes_out 0 169031 bytes_in 0 169031 station_ip 37.137.18.243 169031 port 794 169031 unique_id port 169032 username hassan 169032 mac 169032 bytes_out 0 169032 bytes_in 0 169032 station_ip 5.119.39.16 169032 port 410 169032 unique_id port 169032 remote_ip 10.8.1.138 169034 username hashtadani4 169034 mac 169034 bytes_out 0 169034 bytes_in 0 169034 station_ip 37.129.14.19 169034 port 780 169034 unique_id port 169038 username jafari 169038 kill_reason Another user logged on this global unique id 169038 mac 169038 bytes_out 0 169038 bytes_in 0 169038 station_ip 37.137.18.243 169038 port 794 169038 unique_id port 169039 username hassan 169039 mac 169039 bytes_out 767750 169039 bytes_in 4480518 169039 station_ip 37.27.48.191 169039 port 410 169039 unique_id port 169039 remote_ip 10.8.1.138 169040 username tahmasebi 169040 mac 169040 bytes_out 0 169040 bytes_in 0 169040 station_ip 5.120.2.227 169040 port 770 169040 unique_id port 169040 remote_ip 10.8.0.42 169041 username pourshad 169041 mac 169041 bytes_out 188220 169041 bytes_in 3762350 169041 station_ip 5.120.113.112 169041 port 797 169041 unique_id port 169041 remote_ip 10.8.0.18 169042 username mostafa_es78 169042 kill_reason Another user logged on this global unique id 169042 mac 169042 bytes_out 0 169042 bytes_in 0 169042 station_ip 37.129.4.153 169042 port 762 169042 unique_id port 169045 username tahmasebi 169045 mac 169045 bytes_out 0 169045 bytes_in 0 169045 station_ip 5.120.2.227 169045 port 410 169045 unique_id port 169045 remote_ip 10.8.1.90 169047 username hassan 169047 mac 169047 bytes_out 624252 169047 bytes_in 2312093 169047 station_ip 37.27.48.191 169047 port 770 169047 unique_id port 169047 remote_ip 10.8.0.170 169049 username mohammadmahdi 169049 mac 169049 bytes_out 0 169049 bytes_in 0 169049 station_ip 5.119.194.164 169049 port 798 169049 unique_id port 169050 username tahmasebi 169050 mac 169050 bytes_out 0 169050 bytes_in 0 169050 station_ip 5.120.2.227 169050 port 410 169050 unique_id port 169050 remote_ip 10.8.1.90 169060 username sabaghnezhad 169060 mac 169060 bytes_out 0 169060 bytes_in 0 169060 station_ip 37.129.118.226 169060 port 811 169060 unique_id port 169060 remote_ip 10.8.0.186 169062 username barzegar 169062 mac 169062 bytes_out 0 169062 bytes_in 0 169062 station_ip 5.119.111.133 169062 port 780 169062 unique_id port 169062 remote_ip 10.8.0.234 169063 username mohammadmahdi 169063 kill_reason Another user logged on this global unique id 169063 mac 169063 bytes_out 0 169063 bytes_in 0 169063 station_ip 5.119.194.164 169063 port 770 169063 unique_id port 169063 remote_ip 10.8.0.54 169065 username alihosseini1 169065 mac 169065 bytes_out 0 169065 bytes_in 0 169065 station_ip 5.120.83.140 169065 port 785 169065 unique_id port 169065 remote_ip 10.8.0.22 169069 username mohammadmahdi 169069 mac 169069 bytes_out 0 169069 bytes_in 0 169069 station_ip 5.119.194.164 169069 port 770 169069 unique_id port 169070 username mostafa_es78 169070 kill_reason Another user logged on this global unique id 169070 mac 169070 bytes_out 0 169070 bytes_in 0 169070 station_ip 37.129.4.153 169067 bytes_in 0 169067 station_ip 83.122.150.30 169067 port 780 169067 unique_id port 169067 remote_ip 10.8.0.70 169068 username barzegar 169068 mac 169068 bytes_out 0 169068 bytes_in 0 169068 station_ip 5.119.111.133 169068 port 790 169068 unique_id port 169068 remote_ip 10.8.0.234 169073 username naeimeh 169073 mac 169073 bytes_out 0 169073 bytes_in 0 169073 station_ip 83.123.170.132 169073 port 770 169073 unique_id port 169073 remote_ip 10.8.0.202 169075 username farhad2 169075 mac 169075 bytes_out 0 169075 bytes_in 0 169075 station_ip 5.120.149.195 169075 port 770 169075 unique_id port 169075 remote_ip 10.8.0.190 169081 username jafari 169081 kill_reason Another user logged on this global unique id 169081 mac 169081 bytes_out 0 169081 bytes_in 0 169081 station_ip 37.137.18.243 169081 port 785 169081 unique_id port 169082 username mostafa_es78 169082 mac 169082 bytes_out 0 169082 bytes_in 0 169082 station_ip 37.129.4.153 169082 port 762 169082 unique_id port 169082 remote_ip 10.8.0.194 169086 username mostafa_es78 169086 mac 169086 bytes_out 0 169086 bytes_in 0 169086 station_ip 37.129.4.153 169086 port 762 169086 unique_id port 169086 remote_ip 10.8.0.194 169088 username mostafa_es78 169088 mac 169088 bytes_out 0 169088 bytes_in 0 169088 station_ip 83.122.74.170 169088 port 762 169088 unique_id port 169088 remote_ip 10.8.0.194 169089 username mostafa_es78 169089 mac 169089 bytes_out 0 169089 bytes_in 0 169089 station_ip 37.129.182.62 169089 port 780 169089 unique_id port 169089 remote_ip 10.8.0.194 169092 username mostafa_es78 169092 mac 169092 bytes_out 0 169092 bytes_in 0 169092 station_ip 37.129.182.62 169092 port 780 169092 unique_id port 169092 remote_ip 10.8.0.194 169093 username mostafa_es78 169093 mac 169093 bytes_out 0 169093 bytes_in 0 169093 station_ip 83.122.74.170 169093 port 762 169093 unique_id port 169093 remote_ip 10.8.0.194 169094 username mostafa_es78 169094 mac 169094 bytes_out 0 169094 bytes_in 0 169094 station_ip 37.129.182.62 169094 port 780 169094 unique_id port 169094 remote_ip 10.8.0.194 169097 username barzegar 169097 mac 169097 bytes_out 0 169097 bytes_in 0 169097 station_ip 5.119.111.133 169097 port 780 169097 unique_id port 169097 remote_ip 10.8.0.234 169099 username mostafa_es78 169099 mac 169099 bytes_out 0 169099 bytes_in 0 169099 station_ip 83.122.74.170 169099 port 762 169099 unique_id port 169099 remote_ip 10.8.0.194 169103 username mostafa_es78 169103 mac 169103 bytes_out 0 169103 bytes_in 0 169103 station_ip 83.122.74.170 169103 port 762 169103 unique_id port 169103 remote_ip 10.8.0.194 169106 username komeil 169106 mac 169106 bytes_out 103567 169106 bytes_in 393898 169106 station_ip 83.122.150.30 169106 port 410 169106 unique_id port 169106 remote_ip 10.8.1.14 169107 username mostafa_es78 169107 mac 169107 bytes_out 0 169107 bytes_in 0 169107 station_ip 83.122.74.170 169107 port 762 169107 unique_id port 169107 remote_ip 10.8.0.194 169109 username mostafa_es78 169109 mac 169109 bytes_out 0 169109 bytes_in 0 169109 station_ip 37.129.182.62 169109 port 794 169109 unique_id port 169109 remote_ip 10.8.0.194 169110 username mostafa_es78 169110 mac 169110 bytes_out 0 169110 bytes_in 0 169110 station_ip 83.122.74.170 169110 port 797 169110 unique_id port 169110 remote_ip 10.8.0.194 169113 username mostafa_es78 169113 mac 169113 bytes_out 0 169113 bytes_in 0 169113 station_ip 83.122.74.170 169070 port 762 169070 unique_id port 169074 username barzegar 169074 mac 169074 bytes_out 0 169074 bytes_in 0 169074 station_ip 5.119.111.133 169074 port 410 169074 unique_id port 169074 remote_ip 10.8.1.174 169076 username komeil 169076 mac 169076 bytes_out 0 169076 bytes_in 0 169076 station_ip 83.122.150.30 169076 port 780 169076 unique_id port 169076 remote_ip 10.8.0.70 169079 username mostafa_es78 169079 mac 169079 bytes_out 0 169079 bytes_in 0 169079 station_ip 37.129.4.153 169079 port 762 169079 unique_id port 169085 username komeil 169085 mac 169085 bytes_out 0 169085 bytes_in 0 169085 station_ip 83.122.150.30 169085 port 410 169085 unique_id port 169085 remote_ip 10.8.1.14 169087 username mostafa_es78 169087 mac 169087 bytes_out 0 169087 bytes_in 0 169087 station_ip 37.129.182.62 169087 port 780 169087 unique_id port 169087 remote_ip 10.8.0.194 169090 username mostafa_es78 169090 mac 169090 bytes_out 0 169090 bytes_in 0 169090 station_ip 83.122.74.170 169090 port 762 169090 unique_id port 169090 remote_ip 10.8.0.194 169095 username pourshad 169095 mac 169095 bytes_out 1417846 169095 bytes_in 17290390 169095 station_ip 5.120.113.112 169095 port 414 169095 unique_id port 169095 remote_ip 10.8.1.154 169096 username mostafa_es78 169096 mac 169096 bytes_out 0 169096 bytes_in 0 169096 station_ip 83.122.74.170 169096 port 762 169096 unique_id port 169096 remote_ip 10.8.0.194 169098 username mostafa_es78 169098 mac 169098 bytes_out 0 169098 bytes_in 0 169098 station_ip 37.129.182.62 169098 port 794 169098 unique_id port 169098 remote_ip 10.8.0.194 169102 username jafari 169102 kill_reason Another user logged on this global unique id 169102 mac 169102 bytes_out 0 169102 bytes_in 0 169102 station_ip 37.137.18.243 169102 port 785 169102 unique_id port 169104 username tahmasebi 169104 mac 169104 bytes_out 0 169104 bytes_in 0 169104 station_ip 5.120.2.227 169104 port 780 169104 unique_id port 169104 remote_ip 10.8.0.42 169111 username mostafa_es78 169111 mac 169111 bytes_out 0 169111 bytes_in 0 169111 station_ip 37.129.182.62 169111 port 794 169111 unique_id port 169111 remote_ip 10.8.0.194 169112 username komeil 169112 kill_reason Maximum check online fails reached 169112 mac 169112 bytes_out 0 169112 bytes_in 0 169112 station_ip 83.122.150.30 169112 port 405 169112 unique_id port 169114 username komeil 169114 mac 169114 bytes_out 0 169114 bytes_in 0 169114 station_ip 83.122.150.30 169114 port 762 169114 unique_id port 169114 remote_ip 10.8.0.70 169116 username mostafa_es78 169116 mac 169116 bytes_out 0 169116 bytes_in 0 169116 station_ip 37.129.182.62 169116 port 794 169116 unique_id port 169116 remote_ip 10.8.0.194 169117 username mostafa_es78 169117 mac 169117 bytes_out 0 169117 bytes_in 0 169117 station_ip 83.122.74.170 169117 port 762 169117 unique_id port 169117 remote_ip 10.8.0.194 169118 username mostafa_es78 169118 mac 169118 bytes_out 0 169118 bytes_in 0 169118 station_ip 37.129.182.62 169118 port 794 169118 unique_id port 169118 remote_ip 10.8.0.194 169123 username farhad2 169123 kill_reason Another user logged on this global unique id 169123 mac 169123 bytes_out 0 169123 bytes_in 0 169123 station_ip 5.119.125.17 169123 port 770 169123 unique_id port 169123 remote_ip 10.8.0.190 169124 username mostafa_es78 169124 mac 169124 bytes_out 0 169124 bytes_in 0 169124 station_ip 83.122.74.170 169124 port 762 169124 unique_id port 169071 station_ip 37.137.18.243 169071 port 785 169071 unique_id port 169071 remote_ip 10.8.0.242 169072 username farhad2 169072 mac 169072 bytes_out 0 169072 bytes_in 0 169072 station_ip 5.120.149.195 169072 port 808 169072 unique_id port 169077 username komeil 169077 mac 169077 bytes_out 0 169077 bytes_in 0 169077 station_ip 83.122.150.30 169077 port 770 169077 unique_id port 169077 remote_ip 10.8.0.70 169078 username komeil 169078 mac 169078 bytes_out 0 169078 bytes_in 0 169078 station_ip 83.122.150.30 169078 port 410 169078 unique_id port 169078 remote_ip 10.8.1.14 169080 username mostafa_es78 169080 mac 169080 bytes_out 0 169080 bytes_in 0 169080 station_ip 83.122.74.170 169080 port 780 169080 unique_id port 169080 remote_ip 10.8.0.194 169083 username komeil 169083 mac 169083 bytes_out 18136 169083 bytes_in 70529 169083 station_ip 83.122.150.30 169083 port 410 169083 unique_id port 169083 remote_ip 10.8.1.14 169084 username mostafa_es78 169084 mac 169084 bytes_out 0 169084 bytes_in 0 169084 station_ip 83.122.74.170 169084 port 780 169084 unique_id port 169084 remote_ip 10.8.0.194 169091 username tahmasebi 169091 mac 169091 bytes_out 62036 169091 bytes_in 108604 169091 station_ip 5.120.2.227 169091 port 405 169091 unique_id port 169091 remote_ip 10.8.1.90 169100 username tahmasebi 169100 mac 169100 bytes_out 23732 169100 bytes_in 83974 169100 station_ip 5.120.2.227 169100 port 405 169100 unique_id port 169100 remote_ip 10.8.1.90 169101 username mostafa_es78 169101 mac 169101 bytes_out 0 169101 bytes_in 0 169101 station_ip 37.129.182.62 169101 port 780 169101 unique_id port 169101 remote_ip 10.8.0.194 169105 username mostafa_es78 169105 mac 169105 bytes_out 0 169105 bytes_in 0 169105 station_ip 37.129.182.62 169105 port 794 169105 unique_id port 169105 remote_ip 10.8.0.194 169108 username komeil 169108 mac 169108 bytes_out 0 169108 bytes_in 0 169108 station_ip 83.122.150.30 169108 port 405 169108 unique_id port 169108 remote_ip 10.8.1.14 169119 username jafari 169119 kill_reason Another user logged on this global unique id 169119 mac 169119 bytes_out 0 169119 bytes_in 0 169119 station_ip 37.137.18.243 169119 port 785 169119 unique_id port 169121 username mostafa_es78 169121 mac 169121 bytes_out 0 169121 bytes_in 0 169121 station_ip 83.122.74.170 169121 port 762 169121 unique_id port 169121 remote_ip 10.8.0.194 169126 username mostafa_es78 169126 mac 169126 bytes_out 0 169126 bytes_in 0 169126 station_ip 83.122.74.170 169126 port 762 169126 unique_id port 169126 remote_ip 10.8.0.194 169127 username mostafa_es78 169127 mac 169127 bytes_out 0 169127 bytes_in 0 169127 station_ip 37.129.182.62 169127 port 794 169127 unique_id port 169127 remote_ip 10.8.0.194 169133 username mostafa_es78 169133 mac 169133 bytes_out 0 169133 bytes_in 0 169133 station_ip 37.129.182.62 169133 port 798 169133 unique_id port 169133 remote_ip 10.8.0.194 169135 username naeimeh 169135 kill_reason Another user logged on this global unique id 169135 mac 169135 bytes_out 0 169135 bytes_in 0 169135 station_ip 113.203.116.225 169135 port 790 169135 unique_id port 169135 remote_ip 10.8.0.202 169138 username mohammadmahdi 169138 mac 169138 bytes_out 1621270 169138 bytes_in 20294302 169138 station_ip 5.119.194.164 169138 port 762 169138 unique_id port 169138 remote_ip 10.8.0.54 169139 username mostafa_es78 169139 mac 169139 bytes_out 0 169139 bytes_in 0 169139 station_ip 83.122.74.170 169113 port 797 169113 unique_id port 169113 remote_ip 10.8.0.194 169115 username tahmasebi 169115 mac 169115 bytes_out 0 169115 bytes_in 0 169115 station_ip 5.120.2.227 169115 port 780 169115 unique_id port 169115 remote_ip 10.8.0.42 169120 username barzegar 169120 mac 169120 bytes_out 0 169120 bytes_in 0 169120 station_ip 5.119.111.133 169120 port 794 169120 unique_id port 169120 remote_ip 10.8.0.234 169122 username mostafa_es78 169122 mac 169122 bytes_out 0 169122 bytes_in 0 169122 station_ip 37.129.182.62 169122 port 794 169122 unique_id port 169122 remote_ip 10.8.0.194 169128 username tahmasebi 169128 mac 169128 bytes_out 0 169128 bytes_in 0 169128 station_ip 5.120.2.227 169128 port 794 169128 unique_id port 169128 remote_ip 10.8.0.42 169129 username mostafa_es78 169129 mac 169129 bytes_out 0 169129 bytes_in 0 169129 station_ip 83.122.74.170 169129 port 762 169129 unique_id port 169129 remote_ip 10.8.0.194 169130 username mostafa_es78 169130 mac 169130 bytes_out 0 169130 bytes_in 0 169130 station_ip 37.129.182.62 169130 port 794 169130 unique_id port 169130 remote_ip 10.8.0.194 169132 username farhad2 169132 kill_reason Another user logged on this global unique id 169132 mac 169132 bytes_out 0 169132 bytes_in 0 169132 station_ip 5.119.125.17 169132 port 770 169132 unique_id port 169134 username mostafa_es78 169134 mac 169134 bytes_out 0 169134 bytes_in 0 169134 station_ip 83.122.74.170 169134 port 797 169134 unique_id port 169134 remote_ip 10.8.0.194 169137 username komeil 169137 mac 169137 bytes_out 375782 169137 bytes_in 2884782 169137 station_ip 83.122.150.30 169137 port 780 169137 unique_id port 169137 remote_ip 10.8.0.70 169144 username komeil 169144 mac 169144 bytes_out 0 169144 bytes_in 0 169144 station_ip 83.122.219.234 169144 port 780 169144 unique_id port 169144 remote_ip 10.8.0.70 169146 username mostafa_es78 169146 kill_reason Another user logged on this global unique id 169146 mac 169146 bytes_out 0 169146 bytes_in 0 169146 station_ip 37.129.182.62 169146 port 762 169146 unique_id port 169146 remote_ip 10.8.0.194 169148 username barzegar 169148 mac 169148 bytes_out 0 169148 bytes_in 0 169148 station_ip 5.119.111.133 169148 port 410 169148 unique_id port 169148 remote_ip 10.8.1.174 169151 username naeimeh 169151 mac 169151 bytes_out 0 169151 bytes_in 0 169151 station_ip 113.203.116.225 169151 port 790 169151 unique_id port 169152 username barzegar 169152 mac 169152 bytes_out 0 169152 bytes_in 0 169152 station_ip 5.119.111.133 169152 port 410 169152 unique_id port 169152 remote_ip 10.8.1.174 169154 username komeil 169154 mac 169154 bytes_out 81545 169154 bytes_in 201978 169154 station_ip 83.122.219.234 169154 port 780 169154 unique_id port 169154 remote_ip 10.8.0.70 169159 username komeil 169159 mac 169159 bytes_out 0 169159 bytes_in 0 169159 station_ip 113.203.6.21 169159 port 780 169159 unique_id port 169159 remote_ip 10.8.0.70 169160 username jafari 169160 kill_reason Another user logged on this global unique id 169160 mac 169160 bytes_out 0 169160 bytes_in 0 169160 station_ip 37.137.18.243 169160 port 785 169160 unique_id port 169169 username barzegar 169169 mac 169169 bytes_out 0 169169 bytes_in 0 169169 station_ip 5.119.111.133 169169 port 410 169169 unique_id port 169169 remote_ip 10.8.1.174 169170 username barzegar 169170 mac 169170 bytes_out 0 169170 bytes_in 0 169170 station_ip 5.119.111.133 169170 port 785 169124 remote_ip 10.8.0.194 169125 username mostafa_es78 169125 mac 169125 bytes_out 0 169125 bytes_in 0 169125 station_ip 37.129.182.62 169125 port 794 169125 unique_id port 169125 remote_ip 10.8.0.194 169131 username mostafa_es78 169131 mac 169131 bytes_out 0 169131 bytes_in 0 169131 station_ip 83.122.74.170 169131 port 797 169131 unique_id port 169131 remote_ip 10.8.0.194 169136 username mostafa_es78 169136 mac 169136 bytes_out 0 169136 bytes_in 0 169136 station_ip 37.129.182.62 169136 port 798 169136 unique_id port 169136 remote_ip 10.8.0.194 169141 username komeil 169141 mac 169141 bytes_out 0 169141 bytes_in 0 169141 station_ip 83.122.219.234 169141 port 780 169141 unique_id port 169141 remote_ip 10.8.0.70 169145 username komeil 169145 mac 169145 bytes_out 0 169145 bytes_in 0 169145 station_ip 83.122.219.234 169145 port 780 169145 unique_id port 169145 remote_ip 10.8.0.70 169147 username barzegar 169147 mac 169147 bytes_out 0 169147 bytes_in 0 169147 station_ip 5.119.111.133 169147 port 797 169147 unique_id port 169147 remote_ip 10.8.0.234 169149 username farhad2 169149 kill_reason Another user logged on this global unique id 169149 mac 169149 bytes_out 0 169149 bytes_in 0 169149 station_ip 5.119.125.17 169149 port 770 169149 unique_id port 169150 username komeil 169150 mac 169150 bytes_out 0 169150 bytes_in 0 169150 station_ip 83.122.219.234 169150 port 780 169150 unique_id port 169150 remote_ip 10.8.0.70 169153 username mostafa_es78 169153 kill_reason Another user logged on this global unique id 169153 mac 169153 bytes_out 0 169153 bytes_in 0 169153 station_ip 37.129.182.62 169153 port 762 169153 unique_id port 169156 username komeil 169156 mac 169156 bytes_out 0 169156 bytes_in 0 169156 station_ip 113.203.6.21 169156 port 780 169156 unique_id port 169156 remote_ip 10.8.0.70 169158 username barzegar 169158 mac 169158 bytes_out 0 169158 bytes_in 0 169158 station_ip 5.119.111.133 169158 port 790 169158 unique_id port 169158 remote_ip 10.8.0.234 169164 username jafari 169164 mac 169164 bytes_out 0 169164 bytes_in 0 169164 station_ip 37.137.18.243 169164 port 785 169164 unique_id port 169166 username barzegar 169166 kill_reason Maximum check online fails reached 169166 mac 169166 bytes_out 0 169166 bytes_in 0 169166 station_ip 5.119.111.133 169166 port 762 169166 unique_id port 169168 username farhad2 169168 mac 169168 bytes_out 0 169168 bytes_in 0 169168 station_ip 5.119.175.40 169168 port 770 169168 unique_id port 169168 remote_ip 10.8.0.190 169172 username mosi 169172 kill_reason Another user logged on this global unique id 169172 mac 169172 bytes_out 0 169172 bytes_in 0 169172 station_ip 89.47.137.38 169172 port 797 169172 unique_id port 169177 username mosi 169183 station_ip 89.47.137.38 169177 kill_reason Another user logged on this global unique id 169177 mac 169177 bytes_out 0 169177 bytes_in 0 169177 station_ip 89.47.137.38 169177 port 797 169177 unique_id port 169179 username barzegar 169179 mac 169179 bytes_out 0 169179 bytes_in 0 169179 station_ip 5.119.111.133 169179 port 410 169179 unique_id port 169179 remote_ip 10.8.1.174 169180 username mosi 169180 kill_reason Another user logged on this global unique id 169180 mac 169180 bytes_out 0 169180 bytes_in 0 169180 station_ip 89.47.137.38 169180 port 797 169180 unique_id port 169181 username tahmasebi 169181 mac 169181 bytes_out 6601609 169181 bytes_in 5233164 169181 station_ip 5.120.2.227 169181 port 794 169181 unique_id port 169181 remote_ip 10.8.0.42 169139 port 797 169139 unique_id port 169139 remote_ip 10.8.0.194 169140 username barzegar 169140 mac 169140 bytes_out 0 169140 bytes_in 0 169140 station_ip 5.119.111.133 169140 port 410 169140 unique_id port 169140 remote_ip 10.8.1.174 169142 username komeil 169142 mac 169142 bytes_out 0 169142 bytes_in 0 169142 station_ip 83.122.219.234 169142 port 780 169142 unique_id port 169142 remote_ip 10.8.0.70 169143 username jafari 169143 kill_reason Another user logged on this global unique id 169143 mac 169143 bytes_out 0 169143 bytes_in 0 169143 station_ip 37.137.18.243 169143 port 785 169143 unique_id port 169155 username komeil 169155 mac 169155 bytes_out 0 169155 bytes_in 0 169155 station_ip 113.203.6.21 169155 port 790 169155 unique_id port 169155 remote_ip 10.8.0.70 169157 username komeil 169157 mac 169157 bytes_out 0 169157 bytes_in 0 169157 station_ip 113.203.6.21 169157 port 780 169157 unique_id port 169157 remote_ip 10.8.0.70 169161 username mostafa_es78 169161 mac 169161 bytes_out 0 169161 bytes_in 0 169161 station_ip 37.129.182.62 169161 port 762 169161 unique_id port 169162 username mosi 169162 kill_reason Another user logged on this global unique id 169162 mac 169162 bytes_out 0 169162 bytes_in 0 169162 station_ip 89.47.137.38 169162 port 797 169162 unique_id port 169162 remote_ip 10.8.0.138 169163 username farhad2 169163 mac 169163 bytes_out 0 169163 bytes_in 0 169163 station_ip 5.119.125.17 169163 port 770 169163 unique_id port 169165 username barzegar 169165 mac 169165 bytes_out 0 169165 bytes_in 0 169165 station_ip 5.119.111.133 169165 port 410 169165 unique_id port 169165 remote_ip 10.8.1.174 169167 username mosi 169167 kill_reason Another user logged on this global unique id 169167 mac 169167 bytes_out 0 169167 bytes_in 0 169167 station_ip 89.47.137.38 169167 port 797 169167 unique_id port 169174 username mahdiyehalizadeh 169174 mac 169174 bytes_out 0 169174 bytes_in 0 169174 station_ip 5.120.50.38 169174 port 770 169174 unique_id port 169174 remote_ip 10.8.0.82 169175 username mosi 169175 kill_reason Another user logged on this global unique id 169175 mac 169175 bytes_out 0 169175 bytes_in 0 169175 station_ip 89.47.137.38 169175 port 797 169175 unique_id port 169176 username barzegar 169176 mac 169176 bytes_out 0 169176 bytes_in 0 169176 station_ip 5.119.111.133 169176 port 410 169176 unique_id port 169176 remote_ip 10.8.1.174 169178 username komeil 169178 kill_reason Another user logged on this global unique id 169178 mac 169178 bytes_out 0 169178 bytes_in 0 169178 station_ip 113.203.6.21 169178 port 780 169178 unique_id port 169178 remote_ip 10.8.0.70 169183 username mosi 169183 kill_reason Another user logged on this global unique id 169183 mac 169183 bytes_out 0 169183 bytes_in 0 169183 port 797 169183 unique_id port 169185 username barzegar 169185 mac 169185 bytes_out 0 169185 bytes_in 0 169185 station_ip 5.119.111.133 169185 port 790 169185 unique_id port 169185 remote_ip 10.8.0.234 169186 username mosi 169186 kill_reason Another user logged on this global unique id 169186 mac 169186 bytes_out 0 169186 bytes_in 0 169186 station_ip 89.47.137.38 169186 port 797 169186 unique_id port 169187 username komeil 169187 mac 169187 bytes_out 0 169187 bytes_in 0 169187 station_ip 113.203.6.21 169187 port 780 169187 unique_id port 169195 username komeil 169195 mac 169195 bytes_out 249476 169195 bytes_in 872010 169195 station_ip 113.203.6.21 169195 port 780 169170 unique_id port 169170 remote_ip 10.8.0.234 169171 username barzegar 169171 mac 169171 bytes_out 0 169171 bytes_in 0 169171 station_ip 5.119.111.133 169171 port 785 169171 unique_id port 169171 remote_ip 10.8.0.234 169173 username barzegar 169173 mac 169173 bytes_out 0 169173 bytes_in 0 169173 station_ip 5.119.111.133 169173 port 410 169173 unique_id port 169173 remote_ip 10.8.1.174 169184 username barzegar 169184 mac 169184 bytes_out 0 169184 bytes_in 0 169184 station_ip 5.119.111.133 169184 port 790 169184 unique_id port 169184 remote_ip 10.8.0.234 169190 username barzegar 169190 mac 169190 bytes_out 0 169190 bytes_in 0 169190 station_ip 5.119.111.133 169190 port 410 169190 unique_id port 169190 remote_ip 10.8.1.174 169191 username mosi 169191 kill_reason Another user logged on this global unique id 169191 mac 169191 bytes_out 0 169191 bytes_in 0 169191 station_ip 89.47.137.38 169191 port 797 169191 unique_id port 169193 username alikomsari 169193 kill_reason Another user logged on this global unique id 169193 mac 169193 bytes_out 0 169193 bytes_in 0 169193 station_ip 5.120.26.213 169193 port 785 169193 unique_id port 169193 remote_ip 10.8.0.26 169194 username moradi 169194 kill_reason Another user logged on this global unique id 169194 mac 169194 bytes_out 0 169194 bytes_in 0 169194 station_ip 37.153.188.245 169194 port 790 169194 unique_id port 169194 remote_ip 10.8.0.126 169197 username moradi 169197 kill_reason Another user logged on this global unique id 169197 mac 169197 bytes_out 0 169197 bytes_in 0 169197 station_ip 37.153.188.245 169197 port 790 169197 unique_id port 169200 username moradi 169200 mac 169200 bytes_out 0 169200 bytes_in 0 169200 station_ip 37.153.188.245 169200 port 790 169200 unique_id port 169202 username barzegar 169202 mac 169202 bytes_out 0 169202 bytes_in 0 169202 station_ip 5.119.111.133 169202 port 770 169202 unique_id port 169202 remote_ip 10.8.0.234 169205 username barzegar 169205 mac 169205 bytes_out 0 169205 bytes_in 0 169205 station_ip 5.119.111.133 169205 port 410 169205 unique_id port 169205 remote_ip 10.8.1.174 169206 username barzegar 169206 mac 169206 bytes_out 0 169206 bytes_in 0 169206 station_ip 5.119.111.133 169206 port 770 169206 unique_id port 169206 remote_ip 10.8.0.234 169207 username barzegar 169207 mac 169207 bytes_out 0 169207 bytes_in 0 169207 station_ip 5.119.111.133 169207 port 410 169207 unique_id port 169207 remote_ip 10.8.1.174 169213 username hashtadani4 169213 mac 169213 bytes_out 408868 169213 bytes_in 3695600 169213 station_ip 37.129.56.107 169213 port 770 169213 unique_id port 169213 remote_ip 10.8.0.182 169216 username hashtadani4 169216 mac 169216 bytes_out 0 169216 bytes_in 0 169216 station_ip 37.129.56.107 169216 port 770 169216 unique_id port 169216 remote_ip 10.8.0.182 169222 username hashtadani4 169222 mac 169222 bytes_out 0 169222 bytes_in 0 169222 station_ip 37.129.56.107 169222 port 410 169222 unique_id port 169222 remote_ip 10.8.1.142 169226 username hashtadani4 169226 mac 169226 bytes_out 0 169226 bytes_in 0 169226 station_ip 37.129.56.107 169226 port 770 169226 unique_id port 169226 remote_ip 10.8.0.182 169230 username hashtadani4 169230 mac 169230 bytes_out 0 169230 bytes_in 0 169230 station_ip 37.129.56.107 169230 port 770 169230 unique_id port 169230 remote_ip 10.8.0.182 169232 mac 169232 bytes_out 0 169232 bytes_in 0 169232 station_ip 37.129.56.107 169232 port 770 169182 username barzegar 169182 mac 169182 bytes_out 0 169182 bytes_in 0 169182 station_ip 5.119.111.133 169182 port 410 169182 unique_id port 169182 remote_ip 10.8.1.174 169188 username mosi 169188 kill_reason Another user logged on this global unique id 169188 mac 169188 bytes_out 0 169188 bytes_in 0 169188 station_ip 89.47.137.38 169188 port 797 169188 unique_id port 169189 username mansour 169189 mac 169189 bytes_out 1269932 169189 bytes_in 19304071 169189 station_ip 5.202.98.181 169189 port 790 169189 unique_id port 169189 remote_ip 10.8.0.30 169192 username barzegar 169192 mac 169192 bytes_out 0 169192 bytes_in 0 169192 station_ip 5.119.111.133 169192 port 794 169192 unique_id port 169192 remote_ip 10.8.0.234 169196 username alikomsari 169196 mac 169196 bytes_out 0 169196 bytes_in 0 169196 station_ip 5.120.26.213 169196 port 785 169196 unique_id port 169198 username barzegar 169198 mac 169198 bytes_out 0 169198 bytes_in 0 169198 station_ip 5.119.111.133 169198 port 785 169198 unique_id port 169198 remote_ip 10.8.0.234 169201 username tahmasebi 169201 mac 169201 bytes_out 0 169201 bytes_in 0 169201 station_ip 5.120.2.227 169201 port 770 169201 unique_id port 169201 remote_ip 10.8.0.42 169203 username barzegar 169203 mac 169203 bytes_out 0 169203 bytes_in 0 169203 station_ip 5.119.111.133 169203 port 410 169203 unique_id port 169203 remote_ip 10.8.1.174 169204 username barzegar 169204 mac 169204 bytes_out 0 169204 bytes_in 0 169204 station_ip 5.119.111.133 169204 port 770 169204 unique_id port 169204 remote_ip 10.8.0.234 169208 username kalantary 169208 mac 169208 bytes_out 654906 169208 bytes_in 5140142 169208 station_ip 37.129.85.153 169208 port 780 169208 unique_id port 169208 remote_ip 10.8.0.98 169209 username barzegar 169209 mac 169209 bytes_out 0 169209 bytes_in 0 169209 station_ip 5.119.111.133 169209 port 770 169209 unique_id port 169209 remote_ip 10.8.0.234 169210 username kalantary 169210 mac 169210 bytes_out 0 169210 bytes_in 0 169210 station_ip 37.129.8.97 169210 port 770 169210 unique_id port 169210 remote_ip 10.8.0.98 169212 username mehdizare 169212 mac 169212 bytes_out 787119 169212 bytes_in 865195 169212 station_ip 37.129.122.91 169212 port 391 169212 unique_id port 169212 remote_ip 10.8.1.42 169215 username hashtadani4 169215 mac 169215 bytes_out 1669207 169215 bytes_in 26354771 169215 station_ip 37.129.56.107 169215 port 770 169215 unique_id port 169215 remote_ip 10.8.0.182 169219 username hashtadani4 169219 mac 169219 bytes_out 0 169219 bytes_in 0 169219 station_ip 37.129.56.107 169219 port 770 169219 unique_id port 169219 remote_ip 10.8.0.182 169221 username hashtadani4 169221 mac 169221 bytes_out 0 169221 bytes_in 0 169221 station_ip 37.129.56.107 169221 port 770 169221 unique_id port 169221 remote_ip 10.8.0.182 169225 username hashtadani4 169225 mac 169225 bytes_out 0 169225 bytes_in 0 169225 station_ip 37.129.56.107 169225 port 410 169225 unique_id port 169225 remote_ip 10.8.1.142 169228 username hashtadani4 169228 mac 169228 bytes_out 0 169228 bytes_in 0 169228 station_ip 37.129.56.107 169228 port 770 169228 unique_id port 169228 remote_ip 10.8.0.182 169229 username mohammadjavad 169229 kill_reason Another user logged on this global unique id 169229 mac 169229 bytes_out 0 169229 bytes_in 0 169229 station_ip 113.203.44.109 169229 port 780 169229 unique_id port 169229 remote_ip 10.8.0.142 169232 username hashtadani4 169195 unique_id port 169195 remote_ip 10.8.0.70 169199 username kalantary 169199 mac 169199 bytes_out 1537163 169199 bytes_in 23683797 169199 station_ip 37.129.120.237 169199 port 780 169199 unique_id port 169199 remote_ip 10.8.0.98 169211 username barzegar 169211 mac 169211 bytes_out 0 169211 bytes_in 0 169211 station_ip 5.119.111.133 169211 port 770 169211 unique_id port 169211 remote_ip 10.8.0.234 169214 username barzegar 169214 mac 169214 bytes_out 0 169214 bytes_in 0 169214 station_ip 5.119.111.133 169214 port 780 169214 unique_id port 169214 remote_ip 10.8.0.234 169217 username hashtadani4 169217 mac 169217 bytes_out 0 169217 bytes_in 0 169217 station_ip 37.129.56.107 169217 port 770 169217 unique_id port 169217 remote_ip 10.8.0.182 169218 username hashtadani4 169218 mac 169218 bytes_out 0 169218 bytes_in 0 169218 station_ip 37.129.56.107 169218 port 410 169218 unique_id port 169218 remote_ip 10.8.1.142 169220 username hashtadani4 169220 mac 169220 bytes_out 0 169220 bytes_in 0 169220 station_ip 37.129.56.107 169220 port 410 169220 unique_id port 169220 remote_ip 10.8.1.142 169223 username hashtadani4 169223 mac 169223 bytes_out 0 169223 bytes_in 0 169223 station_ip 37.129.56.107 169223 port 770 169223 unique_id port 169223 remote_ip 10.8.0.182 169224 username barzegar 169224 mac 169224 bytes_out 0 169224 bytes_in 0 169224 station_ip 5.119.111.133 169224 port 770 169224 unique_id port 169224 remote_ip 10.8.0.234 169227 username hashtadani4 169227 mac 169227 bytes_out 0 169227 bytes_in 0 169227 station_ip 37.129.56.107 169227 port 770 169227 unique_id port 169227 remote_ip 10.8.0.182 169231 username hashtadani4 169231 mac 169231 bytes_out 0 169231 bytes_in 0 169231 station_ip 37.129.56.107 169231 port 770 169231 unique_id port 169231 remote_ip 10.8.0.182 169232 unique_id port 169232 remote_ip 10.8.0.182 169233 username hashtadani4 169233 mac 169233 bytes_out 0 169233 bytes_in 0 169233 station_ip 37.129.56.107 169233 port 410 169233 unique_id port 169233 remote_ip 10.8.1.142 169234 username hashtadani4 169234 mac 169234 bytes_out 0 169234 bytes_in 0 169234 station_ip 37.129.56.107 169234 port 770 169234 unique_id port 169234 remote_ip 10.8.0.182 169235 username hashtadani4 169235 mac 169235 bytes_out 0 169235 bytes_in 0 169235 station_ip 37.129.56.107 169235 port 410 169235 unique_id port 169235 remote_ip 10.8.1.142 169236 username hashtadani4 169236 mac 169236 bytes_out 0 169236 bytes_in 0 169236 station_ip 37.129.56.107 169236 port 770 169236 unique_id port 169236 remote_ip 10.8.0.182 169237 username hashtadani4 169237 mac 169237 bytes_out 0 169237 bytes_in 0 169237 station_ip 37.129.56.107 169237 port 410 169237 unique_id port 169237 remote_ip 10.8.1.142 169238 username hashtadani4 169238 mac 169238 bytes_out 0 169238 bytes_in 0 169238 station_ip 37.129.56.107 169238 port 770 169238 unique_id port 169238 remote_ip 10.8.0.182 169239 username hashtadani4 169239 mac 169239 bytes_out 0 169239 bytes_in 0 169239 station_ip 37.129.56.107 169239 port 410 169239 unique_id port 169239 remote_ip 10.8.1.142 169240 username mehdizare 169240 mac 169240 bytes_out 0 169240 bytes_in 0 169240 station_ip 83.123.130.208 169240 port 391 169240 unique_id port 169240 remote_ip 10.8.1.42 169241 username hashtadani4 169241 mac 169241 bytes_out 0 169241 bytes_in 0 169241 station_ip 37.129.56.107 169241 port 770 169241 unique_id port 169241 remote_ip 10.8.0.182 169246 username hashtadani4 169246 mac 169246 bytes_out 0 169246 bytes_in 0 169246 station_ip 37.129.56.107 169246 port 770 169246 unique_id port 169246 remote_ip 10.8.0.182 169250 username hashtadani4 169250 mac 169250 bytes_out 0 169250 bytes_in 0 169250 station_ip 37.129.56.107 169250 port 391 169250 unique_id port 169250 remote_ip 10.8.1.142 169255 username hashtadani4 169255 mac 169255 bytes_out 0 169255 bytes_in 0 169255 station_ip 37.129.56.107 169255 port 770 169255 unique_id port 169255 remote_ip 10.8.0.182 169256 username hashtadani4 169256 mac 169256 bytes_out 0 169256 bytes_in 0 169256 station_ip 37.129.56.107 169256 port 391 169256 unique_id port 169256 remote_ip 10.8.1.142 169263 username hashtadani4 169263 mac 169263 bytes_out 0 169263 bytes_in 0 169263 station_ip 37.129.56.107 169263 port 391 169263 unique_id port 169263 remote_ip 10.8.1.142 169268 username hashtadani4 169268 mac 169268 bytes_out 0 169268 bytes_in 0 169268 station_ip 37.129.56.107 169268 port 391 169268 unique_id port 169268 remote_ip 10.8.1.142 169273 username hashtadani4 169273 mac 169273 bytes_out 0 169273 bytes_in 0 169273 station_ip 37.129.56.107 169273 port 391 169273 unique_id port 169273 remote_ip 10.8.1.142 169274 username hashtadani4 169274 mac 169274 bytes_out 0 169274 bytes_in 0 169274 station_ip 37.129.56.107 169274 port 770 169274 unique_id port 169274 remote_ip 10.8.0.182 169277 username hashtadani4 169277 mac 169277 bytes_out 0 169277 bytes_in 0 169277 station_ip 37.129.56.107 169277 port 391 169277 unique_id port 169277 remote_ip 10.8.1.142 169281 username hashtadani4 169281 mac 169281 bytes_out 0 169281 bytes_in 0 169281 station_ip 37.129.56.107 169281 port 391 169281 unique_id port 169281 remote_ip 10.8.1.142 169285 username hashtadani4 169285 mac 169285 bytes_out 0 169285 bytes_in 0 169285 station_ip 37.129.56.107 169285 port 391 169285 unique_id port 169285 remote_ip 10.8.1.142 169289 username hashtadani4 169289 mac 169289 bytes_out 0 169289 bytes_in 0 169289 station_ip 37.129.56.107 169289 port 770 169289 unique_id port 169289 remote_ip 10.8.0.182 169292 username hashtadani4 169292 mac 169292 bytes_out 0 169292 bytes_in 0 169292 station_ip 37.129.56.107 169292 port 770 169292 unique_id port 169292 remote_ip 10.8.0.182 169294 username hashtadani4 169294 mac 169294 bytes_out 0 169294 bytes_in 0 169294 station_ip 37.129.56.107 169294 port 770 169294 unique_id port 169294 remote_ip 10.8.0.182 169298 username hashtadani4 169298 mac 169298 bytes_out 0 169298 bytes_in 0 169298 station_ip 37.129.56.107 169298 port 391 169298 unique_id port 169298 remote_ip 10.8.1.142 169305 username hashtadani4 169305 mac 169305 bytes_out 0 169305 bytes_in 0 169305 station_ip 37.129.56.107 169305 port 770 169305 unique_id port 169305 remote_ip 10.8.0.182 169306 username hashtadani4 169306 mac 169306 bytes_out 0 169306 bytes_in 0 169306 station_ip 37.129.56.107 169306 port 391 169306 unique_id port 169306 remote_ip 10.8.1.142 169309 username hashtadani4 169309 mac 169309 bytes_out 0 169309 bytes_in 0 169309 station_ip 37.129.56.107 169309 port 770 169309 unique_id port 169309 remote_ip 10.8.0.182 169310 username hashtadani4 169310 mac 169310 bytes_out 0 169310 bytes_in 0 169310 station_ip 37.129.56.107 169310 port 391 169310 unique_id port 169310 remote_ip 10.8.1.142 169242 username hashtadani4 169242 mac 169242 bytes_out 0 169242 bytes_in 0 169242 station_ip 37.129.56.107 169242 port 770 169242 unique_id port 169242 remote_ip 10.8.0.182 169243 username mehdizare 169243 mac 169243 bytes_out 0 169243 bytes_in 0 169243 station_ip 83.123.130.208 169243 port 391 169243 unique_id port 169243 remote_ip 10.8.1.42 169244 username hashtadani4 169244 mac 169244 bytes_out 169257 169244 bytes_in 3496021 169244 station_ip 37.129.56.107 169244 port 770 169244 unique_id port 169244 remote_ip 10.8.0.182 169247 username hashtadani4 169247 mac 169247 bytes_out 0 169247 bytes_in 0 169247 station_ip 37.129.56.107 169247 port 391 169247 unique_id port 169247 remote_ip 10.8.1.142 169251 username hashtadani4 169251 mac 169251 bytes_out 0 169251 bytes_in 0 169251 station_ip 37.129.56.107 169251 port 770 169251 unique_id port 169251 remote_ip 10.8.0.182 169253 username hashtadani4 169253 mac 169253 bytes_out 0 169253 bytes_in 0 169253 station_ip 37.129.56.107 169253 port 770 169253 unique_id port 169253 remote_ip 10.8.0.182 169257 username hashtadani4 169257 mac 169257 bytes_out 0 169257 bytes_in 0 169257 station_ip 37.129.56.107 169257 port 770 169257 unique_id port 169257 remote_ip 10.8.0.182 169260 username hashtadani4 169260 mac 169260 bytes_out 0 169260 bytes_in 0 169260 station_ip 37.129.56.107 169260 port 770 169260 unique_id port 169260 remote_ip 10.8.0.182 169264 username hashtadani4 169264 mac 169264 bytes_out 0 169264 bytes_in 0 169264 station_ip 37.129.56.107 169264 port 770 169264 unique_id port 169264 remote_ip 10.8.0.182 169265 username hashtadani4 169265 mac 169265 bytes_out 0 169265 bytes_in 0 169265 station_ip 37.129.56.107 169265 port 391 169265 unique_id port 169265 remote_ip 10.8.1.142 169269 username hashtadani4 169269 mac 169269 bytes_out 0 169269 bytes_in 0 169269 station_ip 37.129.56.107 169269 port 770 169269 unique_id port 169269 remote_ip 10.8.0.182 169271 username hashtadani4 169271 mac 169271 bytes_out 0 169271 bytes_in 0 169271 station_ip 37.129.56.107 169271 port 391 169271 unique_id port 169271 remote_ip 10.8.1.142 169275 username hashtadani4 169275 mac 169275 bytes_out 0 169275 bytes_in 0 169275 station_ip 37.129.56.107 169275 port 391 169275 unique_id port 169275 remote_ip 10.8.1.142 169278 username hashtadani4 169278 mac 169278 bytes_out 0 169278 bytes_in 0 169278 station_ip 37.129.56.107 169278 port 770 169278 unique_id port 169278 remote_ip 10.8.0.182 169279 username hashtadani4 169279 mac 169279 bytes_out 0 169279 bytes_in 0 169279 station_ip 37.129.56.107 169279 port 391 169279 unique_id port 169279 remote_ip 10.8.1.142 169282 username hashtadani4 169282 mac 169282 bytes_out 0 169282 bytes_in 0 169282 station_ip 37.129.56.107 169282 port 770 169282 unique_id port 169282 remote_ip 10.8.0.182 169283 username hashtadani4 169283 mac 169283 bytes_out 0 169283 bytes_in 0 169283 station_ip 37.129.56.107 169283 port 391 169283 unique_id port 169283 remote_ip 10.8.1.142 169286 username hashtadani4 169286 mac 169286 bytes_out 0 169286 bytes_in 0 169286 station_ip 37.129.56.107 169286 port 770 169286 unique_id port 169286 remote_ip 10.8.0.182 169287 username hashtadani4 169287 mac 169287 bytes_out 0 169287 bytes_in 0 169287 station_ip 37.129.56.107 169287 port 770 169287 unique_id port 169287 remote_ip 10.8.0.182 169290 username hashtadani4 169290 mac 169245 username hashtadani4 169245 mac 169245 bytes_out 0 169245 bytes_in 0 169245 station_ip 37.129.56.107 169245 port 391 169245 unique_id port 169245 remote_ip 10.8.1.142 169248 username hashtadani4 169248 mac 169248 bytes_out 0 169248 bytes_in 0 169248 station_ip 37.129.56.107 169248 port 770 169248 unique_id port 169248 remote_ip 10.8.0.182 169249 username hashtadani4 169249 mac 169249 bytes_out 0 169249 bytes_in 0 169249 station_ip 37.129.56.107 169249 port 770 169249 unique_id port 169249 remote_ip 10.8.0.182 169252 username hashtadani4 169252 mac 169252 bytes_out 0 169252 bytes_in 0 169252 station_ip 37.129.56.107 169252 port 391 169252 unique_id port 169252 remote_ip 10.8.1.142 169254 username hashtadani4 169254 mac 169254 bytes_out 0 169254 bytes_in 0 169254 station_ip 37.129.56.107 169254 port 391 169254 unique_id port 169254 remote_ip 10.8.1.142 169258 username hashtadani4 169258 mac 169258 bytes_out 0 169258 bytes_in 0 169258 station_ip 37.129.56.107 169258 port 391 169258 unique_id port 169258 remote_ip 10.8.1.142 169259 username barzegar 169259 mac 169259 bytes_out 0 169259 bytes_in 0 169259 station_ip 5.119.111.133 169259 port 391 169259 unique_id port 169259 remote_ip 10.8.1.174 169261 username hashtadani4 169261 mac 169261 bytes_out 0 169261 bytes_in 0 169261 station_ip 37.129.56.107 169261 port 391 169261 unique_id port 169261 remote_ip 10.8.1.142 169262 username hashtadani4 169262 mac 169262 bytes_out 0 169262 bytes_in 0 169262 station_ip 37.129.56.107 169262 port 770 169262 unique_id port 169262 remote_ip 10.8.0.182 169266 username hashtadani4 169266 mac 169266 bytes_out 0 169266 bytes_in 0 169266 station_ip 37.129.56.107 169266 port 391 169266 unique_id port 169266 remote_ip 10.8.1.142 169267 username hashtadani4 169267 mac 169267 bytes_out 0 169267 bytes_in 0 169267 station_ip 37.129.56.107 169267 port 770 169267 unique_id port 169267 remote_ip 10.8.0.182 169270 username hashtadani4 169270 mac 169270 bytes_out 0 169270 bytes_in 0 169270 station_ip 37.129.56.107 169270 port 770 169270 unique_id port 169270 remote_ip 10.8.0.182 169272 username hashtadani4 169272 mac 169272 bytes_out 0 169272 bytes_in 0 169272 station_ip 37.129.56.107 169272 port 770 169272 unique_id port 169272 remote_ip 10.8.0.182 169276 username hashtadani4 169276 mac 169276 bytes_out 0 169276 bytes_in 0 169276 station_ip 37.129.56.107 169276 port 770 169276 unique_id port 169276 remote_ip 10.8.0.182 169280 username hashtadani4 169280 mac 169280 bytes_out 0 169280 bytes_in 0 169280 station_ip 37.129.56.107 169280 port 770 169280 unique_id port 169280 remote_ip 10.8.0.182 169284 username hashtadani4 169284 mac 169284 bytes_out 0 169284 bytes_in 0 169284 station_ip 37.129.56.107 169284 port 770 169284 unique_id port 169284 remote_ip 10.8.0.182 169288 username hashtadani4 169288 mac 169288 bytes_out 0 169288 bytes_in 0 169288 station_ip 37.129.56.107 169288 port 391 169288 unique_id port 169288 remote_ip 10.8.1.142 169291 username hashtadani4 169291 mac 169291 bytes_out 0 169291 bytes_in 0 169291 station_ip 37.129.56.107 169291 port 391 169291 unique_id port 169291 remote_ip 10.8.1.142 169293 username hashtadani4 169293 mac 169293 bytes_out 0 169293 bytes_in 0 169293 station_ip 37.129.56.107 169293 port 391 169293 unique_id port 169293 remote_ip 10.8.1.142 169297 username hashtadani4 169297 mac 169290 bytes_out 0 169290 bytes_in 0 169290 station_ip 37.129.56.107 169290 port 770 169290 unique_id port 169290 remote_ip 10.8.0.182 169295 username hashtadani4 169295 mac 169295 bytes_out 0 169295 bytes_in 0 169295 station_ip 37.129.56.107 169295 port 770 169295 unique_id port 169295 remote_ip 10.8.0.182 169296 username hashtadani4 169296 mac 169296 bytes_out 0 169296 bytes_in 0 169296 station_ip 37.129.56.107 169296 port 770 169296 unique_id port 169296 remote_ip 10.8.0.182 169299 username hashtadani4 169299 mac 169299 bytes_out 0 169299 bytes_in 0 169299 station_ip 37.129.56.107 169299 port 770 169299 unique_id port 169299 remote_ip 10.8.0.182 169303 username hashtadani4 169303 mac 169303 bytes_out 0 169303 bytes_in 0 169303 station_ip 37.129.56.107 169303 port 785 169303 unique_id port 169303 remote_ip 10.8.0.182 169307 username hashtadani4 169307 mac 169307 bytes_out 0 169307 bytes_in 0 169307 station_ip 37.129.56.107 169307 port 770 169307 unique_id port 169307 remote_ip 10.8.0.182 169311 username hashtadani4 169311 mac 169311 bytes_out 0 169311 bytes_in 0 169311 station_ip 37.129.56.107 169311 port 770 169311 unique_id port 169311 remote_ip 10.8.0.182 169313 username hashtadani4 169313 mac 169313 bytes_out 0 169313 bytes_in 0 169313 station_ip 37.129.56.107 169313 port 770 169313 unique_id port 169313 remote_ip 10.8.0.182 169316 username hashtadani4 169316 mac 169316 bytes_out 0 169316 bytes_in 0 169316 station_ip 37.129.56.107 169316 port 391 169316 unique_id port 169316 remote_ip 10.8.1.142 169320 username hashtadani4 169320 mac 169320 bytes_out 0 169320 bytes_in 0 169320 station_ip 37.129.56.107 169320 port 770 169320 unique_id port 169320 remote_ip 10.8.0.182 169325 username hashtadani4 169325 mac 169325 bytes_out 0 169325 bytes_in 0 169325 station_ip 37.129.56.107 169325 port 770 169325 unique_id port 169325 remote_ip 10.8.0.182 169329 username hashtadani4 169329 mac 169329 bytes_out 0 169329 bytes_in 0 169329 station_ip 37.129.56.107 169329 port 770 169329 unique_id port 169329 remote_ip 10.8.0.182 169332 username hashtadani4 169332 mac 169332 bytes_out 0 169332 bytes_in 0 169332 station_ip 37.129.56.107 169332 port 770 169332 unique_id port 169332 remote_ip 10.8.0.182 169334 username hashtadani4 169334 mac 169334 bytes_out 0 169334 bytes_in 0 169334 station_ip 37.129.56.107 169334 port 770 169334 unique_id port 169334 remote_ip 10.8.0.182 169338 username hashtadani4 169338 mac 169338 bytes_out 0 169338 bytes_in 0 169338 station_ip 37.129.56.107 169338 port 391 169338 unique_id port 169338 remote_ip 10.8.1.142 169344 username hashtadani4 169344 mac 169344 bytes_out 0 169344 bytes_in 0 169344 station_ip 37.129.56.107 169344 port 770 169344 unique_id port 169344 remote_ip 10.8.0.182 169349 username hashtadani4 169349 mac 169349 bytes_out 0 169349 bytes_in 0 169349 station_ip 37.129.56.107 169349 port 770 169349 unique_id port 169349 remote_ip 10.8.0.182 169353 username hashtadani4 169353 mac 169353 bytes_out 0 169353 bytes_in 0 169353 station_ip 37.129.56.107 169353 port 770 169353 unique_id port 169353 remote_ip 10.8.0.182 169354 username hashtadani4 169354 mac 169354 bytes_out 0 169354 bytes_in 0 169354 station_ip 37.129.56.107 169354 port 391 169354 unique_id port 169354 remote_ip 10.8.1.142 169357 username hashtadani4 169357 mac 169357 bytes_out 0 169357 bytes_in 0 169297 bytes_out 0 169297 bytes_in 0 169297 station_ip 37.129.56.107 169297 port 770 169297 unique_id port 169297 remote_ip 10.8.0.182 169300 username hashtadani4 169300 mac 169300 bytes_out 0 169300 bytes_in 0 169300 station_ip 37.129.56.107 169300 port 391 169300 unique_id port 169300 remote_ip 10.8.1.142 169301 username hashtadani4 169301 mac 169301 bytes_out 0 169301 bytes_in 0 169301 station_ip 37.129.56.107 169301 port 770 169301 unique_id port 169301 remote_ip 10.8.0.182 169302 username barzegar 169302 mac 169302 bytes_out 0 169302 bytes_in 0 169302 station_ip 5.119.111.133 169302 port 770 169302 unique_id port 169302 remote_ip 10.8.0.234 169304 username hashtadani4 169304 mac 169304 bytes_out 0 169304 bytes_in 0 169304 station_ip 37.129.56.107 169304 port 391 169304 unique_id port 169304 remote_ip 10.8.1.142 169308 username hashtadani4 169308 mac 169308 bytes_out 0 169308 bytes_in 0 169308 station_ip 37.129.56.107 169308 port 391 169308 unique_id port 169308 remote_ip 10.8.1.142 169312 username hashtadani4 169312 mac 169312 bytes_out 0 169312 bytes_in 0 169312 station_ip 37.129.56.107 169312 port 391 169312 unique_id port 169312 remote_ip 10.8.1.142 169314 username hashtadani4 169314 mac 169314 bytes_out 0 169314 bytes_in 0 169314 station_ip 37.129.56.107 169314 port 391 169314 unique_id port 169314 remote_ip 10.8.1.142 169317 username hashtadani4 169317 mac 169317 bytes_out 0 169317 bytes_in 0 169317 station_ip 37.129.56.107 169317 port 770 169317 unique_id port 169317 remote_ip 10.8.0.182 169318 username hashtadani4 169318 mac 169318 bytes_out 0 169318 bytes_in 0 169318 station_ip 37.129.56.107 169318 port 770 169318 unique_id port 169318 remote_ip 10.8.0.182 169321 username hashtadani4 169321 mac 169321 bytes_out 0 169321 bytes_in 0 169321 station_ip 37.129.56.107 169321 port 391 169321 unique_id port 169321 remote_ip 10.8.1.142 169326 username hashtadani4 169326 mac 169326 bytes_out 0 169326 bytes_in 0 169326 station_ip 37.129.56.107 169326 port 391 169326 unique_id port 169326 remote_ip 10.8.1.142 169330 username hashtadani4 169330 mac 169330 bytes_out 0 169330 bytes_in 0 169330 station_ip 37.129.56.107 169330 port 770 169330 unique_id port 169330 remote_ip 10.8.0.182 169335 username hashtadani4 169335 mac 169335 bytes_out 0 169335 bytes_in 0 169335 station_ip 37.129.56.107 169335 port 391 169335 unique_id port 169335 remote_ip 10.8.1.142 169339 username hashtadani4 169339 mac 169339 bytes_out 0 169339 bytes_in 0 169339 station_ip 37.129.56.107 169339 port 770 169339 unique_id port 169339 remote_ip 10.8.0.182 169342 username hashtadani4 169342 mac 169342 bytes_out 0 169342 bytes_in 0 169342 station_ip 37.129.56.107 169342 port 790 169342 unique_id port 169342 remote_ip 10.8.0.182 169345 username hashtadani4 169345 mac 169345 bytes_out 0 169345 bytes_in 0 169345 station_ip 37.129.56.107 169345 port 770 169345 unique_id port 169345 remote_ip 10.8.0.182 169346 username hashtadani4 169346 mac 169346 bytes_out 0 169346 bytes_in 0 169346 station_ip 37.129.56.107 169346 port 770 169346 unique_id port 169346 remote_ip 10.8.0.182 169350 username hashtadani4 169350 mac 169350 bytes_out 0 169350 bytes_in 0 169350 station_ip 37.129.56.107 169350 port 391 169350 unique_id port 169350 remote_ip 10.8.1.142 169355 username hashtadani4 169355 mac 169355 bytes_out 0 169355 bytes_in 0 169315 username hashtadani4 169315 mac 169315 bytes_out 0 169315 bytes_in 0 169315 station_ip 37.129.56.107 169315 port 770 169315 unique_id port 169315 remote_ip 10.8.0.182 169319 username hashtadani4 169319 mac 169319 bytes_out 0 169319 bytes_in 0 169319 station_ip 37.129.56.107 169319 port 391 169319 unique_id port 169319 remote_ip 10.8.1.142 169322 username hashtadani4 169322 mac 169322 bytes_out 0 169322 bytes_in 0 169322 station_ip 37.129.56.107 169322 port 770 169322 unique_id port 169322 remote_ip 10.8.0.182 169323 username hashtadani4 169323 mac 169323 bytes_out 0 169323 bytes_in 0 169323 station_ip 37.129.56.107 169323 port 770 169323 unique_id port 169323 remote_ip 10.8.0.182 169324 username hashtadani4 169324 mac 169324 bytes_out 0 169324 bytes_in 0 169324 station_ip 37.129.56.107 169324 port 391 169324 unique_id port 169324 remote_ip 10.8.1.142 169327 username hashtadani4 169327 mac 169327 bytes_out 0 169327 bytes_in 0 169327 station_ip 37.129.56.107 169327 port 770 169327 unique_id port 169327 remote_ip 10.8.0.182 169328 username hashtadani4 169328 mac 169328 bytes_out 0 169328 bytes_in 0 169328 station_ip 37.129.56.107 169328 port 391 169328 unique_id port 169328 remote_ip 10.8.1.142 169331 username hashtadani4 169331 mac 169331 bytes_out 0 169331 bytes_in 0 169331 station_ip 37.129.56.107 169331 port 391 169331 unique_id port 169331 remote_ip 10.8.1.142 169333 username hashtadani4 169333 mac 169333 bytes_out 0 169333 bytes_in 0 169333 station_ip 37.129.56.107 169333 port 391 169333 unique_id port 169333 remote_ip 10.8.1.142 169336 username hashtadani4 169336 mac 169336 bytes_out 0 169336 bytes_in 0 169336 station_ip 37.129.56.107 169336 port 770 169336 unique_id port 169336 remote_ip 10.8.0.182 169337 username hashtadani4 169337 mac 169337 bytes_out 0 169337 bytes_in 0 169337 station_ip 37.129.56.107 169337 port 770 169337 unique_id port 169337 remote_ip 10.8.0.182 169340 username hashtadani4 169340 mac 169340 bytes_out 0 169340 bytes_in 0 169340 station_ip 37.129.56.107 169340 port 391 169340 unique_id port 169340 remote_ip 10.8.1.142 169341 username hashtadani4 169341 mac 169341 bytes_out 0 169341 bytes_in 0 169341 station_ip 37.129.56.107 169341 port 770 169341 unique_id port 169341 remote_ip 10.8.0.182 169343 username barzegar 169343 mac 169343 bytes_out 0 169343 bytes_in 0 169343 station_ip 5.119.111.133 169343 port 391 169343 unique_id port 169343 remote_ip 10.8.1.174 169347 username hashtadani4 169347 mac 169347 bytes_out 0 169347 bytes_in 0 169347 station_ip 37.129.56.107 169347 port 770 169347 unique_id port 169347 remote_ip 10.8.0.182 169348 username hashtadani4 169348 mac 169348 bytes_out 0 169348 bytes_in 0 169348 station_ip 37.129.56.107 169348 port 391 169348 unique_id port 169348 remote_ip 10.8.1.142 169351 username hashtadani4 169351 mac 169351 bytes_out 0 169351 bytes_in 0 169351 station_ip 37.129.56.107 169351 port 770 169351 unique_id port 169351 remote_ip 10.8.0.182 169352 username hashtadani4 169352 mac 169352 bytes_out 0 169352 bytes_in 0 169352 station_ip 37.129.56.107 169352 port 770 169352 unique_id port 169352 remote_ip 10.8.0.182 169356 username hashtadani4 169356 mac 169356 bytes_out 0 169356 bytes_in 0 169356 station_ip 37.129.56.107 169356 port 770 169356 unique_id port 169356 remote_ip 10.8.0.182 169361 username hashtadani4 169361 mac 169355 station_ip 37.129.56.107 169355 port 770 169355 unique_id port 169355 remote_ip 10.8.0.182 169358 username hashtadani4 169358 mac 169358 bytes_out 0 169358 bytes_in 0 169358 station_ip 37.129.56.107 169358 port 770 169358 unique_id port 169358 remote_ip 10.8.0.182 169360 username hashtadani4 169360 mac 169360 bytes_out 0 169360 bytes_in 0 169360 station_ip 37.129.56.107 169360 port 391 169360 unique_id port 169360 remote_ip 10.8.1.142 169364 username hashtadani4 169364 mac 169364 bytes_out 0 169364 bytes_in 0 169364 station_ip 37.129.56.107 169364 port 770 169364 unique_id port 169364 remote_ip 10.8.0.182 169365 username hashtadani4 169365 mac 169365 bytes_out 0 169365 bytes_in 0 169365 station_ip 37.129.56.107 169365 port 391 169365 unique_id port 169365 remote_ip 10.8.1.142 169368 username hashtadani4 169368 mac 169368 bytes_out 0 169368 bytes_in 0 169368 station_ip 37.129.56.107 169368 port 391 169368 unique_id port 169368 remote_ip 10.8.1.142 169371 username hashtadani4 169371 mac 169371 bytes_out 0 169371 bytes_in 0 169371 station_ip 37.129.56.107 169371 port 391 169371 unique_id port 169371 remote_ip 10.8.1.142 169372 username barzegar 169372 mac 169372 bytes_out 0 169372 bytes_in 0 169372 station_ip 5.119.111.133 169372 port 785 169372 unique_id port 169372 remote_ip 10.8.0.234 169375 username hashtadani4 169375 mac 169375 bytes_out 0 169375 bytes_in 0 169375 station_ip 37.129.56.107 169375 port 391 169375 unique_id port 169375 remote_ip 10.8.1.142 169378 username hashtadani4 169378 mac 169378 bytes_out 0 169378 bytes_in 0 169378 station_ip 37.129.56.107 169378 port 770 169378 unique_id port 169378 remote_ip 10.8.0.182 169383 username hashtadani4 169383 mac 169383 bytes_out 0 169383 bytes_in 0 169383 station_ip 37.129.56.107 169383 port 785 169383 unique_id port 169383 remote_ip 10.8.0.182 169387 username hashtadani4 169387 mac 169387 bytes_out 0 169387 bytes_in 0 169387 station_ip 37.129.56.107 169387 port 770 169387 unique_id port 169387 remote_ip 10.8.0.182 169391 username hashtadani4 169391 mac 169391 bytes_out 0 169391 bytes_in 0 169391 station_ip 37.129.56.107 169391 port 770 169391 unique_id port 169391 remote_ip 10.8.0.182 169395 username hashtadani4 169395 mac 169395 bytes_out 0 169395 bytes_in 0 169395 station_ip 37.129.56.107 169395 port 770 169395 unique_id port 169395 remote_ip 10.8.0.182 169403 username hashtadani4 169403 mac 169403 bytes_out 0 169403 bytes_in 0 169403 station_ip 37.129.56.107 169403 port 770 169403 unique_id port 169403 remote_ip 10.8.0.182 169407 username hashtadani4 169407 mac 169407 bytes_out 0 169407 bytes_in 0 169407 station_ip 37.129.56.107 169407 port 770 169407 unique_id port 169407 remote_ip 10.8.0.182 169411 username hashtadani4 169411 mac 169411 bytes_out 0 169411 bytes_in 0 169411 station_ip 37.129.56.107 169411 port 770 169411 unique_id port 169411 remote_ip 10.8.0.182 169415 username hashtadani4 169415 mac 169415 bytes_out 0 169415 bytes_in 0 169415 station_ip 37.129.56.107 169415 port 391 169415 unique_id port 169415 remote_ip 10.8.1.142 169419 username barzegar 169419 mac 169419 bytes_out 0 169419 bytes_in 0 169419 station_ip 5.119.111.133 169419 port 770 169419 unique_id port 169419 remote_ip 10.8.0.234 169422 username hashtadani4 169422 mac 169422 bytes_out 0 169422 bytes_in 0 169422 station_ip 37.129.56.107 169422 port 391 169357 station_ip 37.129.56.107 169357 port 391 169357 unique_id port 169357 remote_ip 10.8.1.142 169359 username hashtadani4 169359 mac 169359 bytes_out 0 169359 bytes_in 0 169359 station_ip 37.129.56.107 169359 port 391 169359 unique_id port 169359 remote_ip 10.8.1.142 169363 username hashtadani4 169363 mac 169363 bytes_out 0 169363 bytes_in 0 169363 station_ip 37.129.56.107 169363 port 391 169363 unique_id port 169363 remote_ip 10.8.1.142 169367 username hashtadani4 169367 mac 169367 bytes_out 0 169367 bytes_in 0 169367 station_ip 37.129.56.107 169367 port 770 169367 unique_id port 169367 remote_ip 10.8.0.182 169369 username sedighe 169369 mac 169369 bytes_out 57560 169369 bytes_in 113055 169369 station_ip 83.123.237.37 169369 port 785 169369 unique_id port 169369 remote_ip 10.8.0.146 169370 username hashtadani4 169370 mac 169370 bytes_out 0 169370 bytes_in 0 169370 station_ip 37.129.56.107 169370 port 770 169370 unique_id port 169370 remote_ip 10.8.0.182 169373 username hashtadani4 169373 mac 169373 bytes_out 0 169373 bytes_in 0 169373 station_ip 37.129.56.107 169373 port 770 169373 unique_id port 169373 remote_ip 10.8.0.182 169374 username barzegar 169374 mac 169374 bytes_out 0 169374 bytes_in 0 169374 station_ip 5.119.111.133 169374 port 770 169374 unique_id port 169374 remote_ip 10.8.0.234 169377 username hashtadani4 169377 mac 169377 bytes_out 0 169377 bytes_in 0 169377 station_ip 37.129.56.107 169377 port 391 169377 unique_id port 169377 remote_ip 10.8.1.142 169380 username hashtadani4 169380 mac 169380 bytes_out 0 169380 bytes_in 0 169380 station_ip 37.129.56.107 169380 port 770 169380 unique_id port 169380 remote_ip 10.8.0.182 169385 username hashtadani4 169385 mac 169385 bytes_out 0 169385 bytes_in 0 169385 station_ip 37.129.56.107 169385 port 770 169385 unique_id port 169385 remote_ip 10.8.0.182 169386 username hashtadani4 169386 mac 169386 bytes_out 0 169386 bytes_in 0 169386 station_ip 37.129.56.107 169386 port 391 169386 unique_id port 169386 remote_ip 10.8.1.142 169390 username hashtadani4 169390 mac 169390 bytes_out 0 169390 bytes_in 0 169390 station_ip 37.129.56.107 169390 port 391 169390 unique_id port 169390 remote_ip 10.8.1.142 169394 username hashtadani4 169394 mac 169394 bytes_out 0 169394 bytes_in 0 169394 station_ip 37.129.56.107 169394 port 391 169394 unique_id port 169394 remote_ip 10.8.1.142 169398 username hashtadani4 169398 mac 169398 bytes_out 0 169398 bytes_in 0 169398 station_ip 37.129.56.107 169398 port 770 169398 unique_id port 169398 remote_ip 10.8.0.182 169400 username hashtadani4 169400 mac 169400 bytes_out 0 169400 bytes_in 0 169400 station_ip 37.129.56.107 169400 port 391 169400 unique_id port 169400 remote_ip 10.8.1.142 169402 username hashtadani4 169402 mac 169402 bytes_out 0 169402 bytes_in 0 169402 station_ip 37.129.56.107 169402 port 391 169402 unique_id port 169402 remote_ip 10.8.1.142 169405 username hashtadani4 169405 mac 169405 bytes_out 0 169405 bytes_in 0 169405 station_ip 37.129.56.107 169405 port 770 169405 unique_id port 169405 remote_ip 10.8.0.182 169406 username hashtadani4 169406 mac 169406 bytes_out 0 169406 bytes_in 0 169406 station_ip 37.129.56.107 169406 port 391 169406 unique_id port 169406 remote_ip 10.8.1.142 169409 username hashtadani4 169409 mac 169409 bytes_out 0 169409 bytes_in 0 169409 station_ip 37.129.56.107 169409 port 770 169361 bytes_out 0 169361 bytes_in 0 169361 station_ip 37.129.56.107 169361 port 770 169361 unique_id port 169361 remote_ip 10.8.0.182 169362 username hashtadani4 169362 mac 169362 bytes_out 0 169362 bytes_in 0 169362 station_ip 37.129.56.107 169362 port 770 169362 unique_id port 169362 remote_ip 10.8.0.182 169366 username hashtadani4 169366 mac 169366 bytes_out 0 169366 bytes_in 0 169366 station_ip 37.129.56.107 169366 port 770 169366 unique_id port 169366 remote_ip 10.8.0.182 169376 username hashtadani4 169376 mac 169376 bytes_out 0 169376 bytes_in 0 169376 station_ip 37.129.56.107 169376 port 770 169376 unique_id port 169376 remote_ip 10.8.0.182 169379 username hashtadani4 169379 mac 169379 bytes_out 0 169379 bytes_in 0 169379 station_ip 37.129.56.107 169379 port 770 169379 unique_id port 169379 remote_ip 10.8.0.182 169381 username hashtadani4 169381 mac 169381 bytes_out 0 169381 bytes_in 0 169381 station_ip 37.129.56.107 169381 port 391 169381 unique_id port 169381 remote_ip 10.8.1.142 169382 username hashtadani4 169382 mac 169382 bytes_out 0 169382 bytes_in 0 169382 station_ip 37.129.56.107 169382 port 770 169382 unique_id port 169382 remote_ip 10.8.0.182 169384 username hashtadani4 169384 mac 169384 bytes_out 0 169384 bytes_in 0 169384 station_ip 37.129.56.107 169384 port 391 169384 unique_id port 169384 remote_ip 10.8.1.142 169388 username hashtadani4 169388 mac 169388 bytes_out 0 169388 bytes_in 0 169388 station_ip 37.129.56.107 169388 port 391 169388 unique_id port 169388 remote_ip 10.8.1.142 169389 username hashtadani4 169389 mac 169389 bytes_out 0 169389 bytes_in 0 169389 station_ip 37.129.56.107 169389 port 770 169389 unique_id port 169389 remote_ip 10.8.0.182 169392 username hashtadani4 169392 mac 169392 bytes_out 0 169392 bytes_in 0 169392 station_ip 37.129.56.107 169392 port 391 169392 unique_id port 169392 remote_ip 10.8.1.142 169393 username hashtadani4 169393 mac 169393 bytes_out 0 169393 bytes_in 0 169393 station_ip 37.129.56.107 169393 port 770 169393 unique_id port 169393 remote_ip 10.8.0.182 169396 username hashtadani4 169396 mac 169396 bytes_out 0 169396 bytes_in 0 169396 station_ip 37.129.56.107 169396 port 391 169396 unique_id port 169396 remote_ip 10.8.1.142 169397 username hashtadani4 169397 mac 169397 bytes_out 0 169397 bytes_in 0 169397 station_ip 37.129.56.107 169397 port 770 169397 unique_id port 169397 remote_ip 10.8.0.182 169399 username mohammadjavad 169399 mac 169399 bytes_out 0 169399 bytes_in 0 169399 station_ip 113.203.44.109 169399 port 780 169399 unique_id port 169401 username hashtadani4 169401 mac 169401 bytes_out 0 169401 bytes_in 0 169401 station_ip 37.129.56.107 169401 port 770 169401 unique_id port 169401 remote_ip 10.8.0.182 169404 username hashtadani4 169404 mac 169404 bytes_out 0 169404 bytes_in 0 169404 station_ip 37.129.56.107 169404 port 391 169404 unique_id port 169404 remote_ip 10.8.1.142 169408 username hashtadani4 169408 mac 169408 bytes_out 0 169408 bytes_in 0 169408 station_ip 37.129.56.107 169408 port 391 169408 unique_id port 169408 remote_ip 10.8.1.142 169412 username hashtadani4 169412 mac 169412 bytes_out 0 169412 bytes_in 0 169412 station_ip 37.129.56.107 169412 port 770 169412 unique_id port 169412 remote_ip 10.8.0.182 169413 username hashtadani4 169413 mac 169413 bytes_out 0 169413 bytes_in 0 169413 station_ip 37.129.56.107 169409 unique_id port 169409 remote_ip 10.8.0.182 169410 username hashtadani4 169410 mac 169410 bytes_out 0 169410 bytes_in 0 169410 station_ip 37.129.56.107 169410 port 391 169410 unique_id port 169410 remote_ip 10.8.1.142 169414 username hashtadani4 169414 mac 169414 bytes_out 0 169414 bytes_in 0 169414 station_ip 37.129.56.107 169414 port 770 169414 unique_id port 169414 remote_ip 10.8.0.182 169417 username hashtadani4 169417 mac 169417 bytes_out 0 169417 bytes_in 0 169417 station_ip 37.129.56.107 169417 port 770 169417 unique_id port 169417 remote_ip 10.8.0.182 169421 username hashtadani4 169421 mac 169421 bytes_out 0 169421 bytes_in 0 169421 station_ip 37.129.56.107 169421 port 770 169421 unique_id port 169421 remote_ip 10.8.0.182 169426 username hashtadani4 169426 mac 169426 bytes_out 0 169426 bytes_in 0 169426 station_ip 37.129.56.107 169426 port 391 169426 unique_id port 169426 remote_ip 10.8.1.142 169430 username hashtadani4 169430 mac 169430 bytes_out 0 169430 bytes_in 0 169430 station_ip 37.129.56.107 169430 port 391 169430 unique_id port 169430 remote_ip 10.8.1.142 169434 username hashtadani4 169434 mac 169434 bytes_out 0 169434 bytes_in 0 169434 station_ip 37.129.56.107 169434 port 770 169434 unique_id port 169434 remote_ip 10.8.0.182 169438 username hashtadani4 169438 mac 169438 bytes_out 0 169438 bytes_in 0 169438 station_ip 37.129.56.107 169438 port 391 169438 unique_id port 169438 remote_ip 10.8.1.142 169442 username hashtadani4 169442 mac 169442 bytes_out 0 169442 bytes_in 0 169442 station_ip 37.129.56.107 169442 port 391 169442 unique_id port 169442 remote_ip 10.8.1.142 169444 username hashtadani4 169444 mac 169444 bytes_out 0 169444 bytes_in 0 169444 station_ip 37.129.56.107 169444 port 391 169444 unique_id port 169444 remote_ip 10.8.1.142 169448 username hashtadani4 169448 mac 169448 bytes_out 0 169448 bytes_in 0 169448 station_ip 37.129.56.107 169448 port 391 169448 unique_id port 169448 remote_ip 10.8.1.142 169451 username hashtadani4 169451 mac 169451 bytes_out 0 169451 bytes_in 0 169451 station_ip 37.129.56.107 169451 port 770 169451 unique_id port 169451 remote_ip 10.8.0.182 169452 username hashtadani4 169452 mac 169452 bytes_out 0 169452 bytes_in 0 169452 station_ip 37.129.56.107 169452 port 391 169452 unique_id port 169452 remote_ip 10.8.1.142 169456 username hashtadani4 169456 mac 169456 bytes_out 0 169456 bytes_in 0 169456 station_ip 37.129.56.107 169456 port 391 169456 unique_id port 169456 remote_ip 10.8.1.142 169460 username hashtadani4 169460 mac 169460 bytes_out 0 169460 bytes_in 0 169460 station_ip 37.129.56.107 169460 port 770 169460 unique_id port 169460 remote_ip 10.8.0.182 169461 username barzegar 169461 mac 169461 bytes_out 0 169461 bytes_in 0 169461 station_ip 5.119.111.133 169461 port 770 169461 unique_id port 169461 remote_ip 10.8.0.234 169465 username hashtadani4 169465 mac 169465 bytes_out 0 169465 bytes_in 0 169465 station_ip 37.129.56.107 169465 port 391 169465 unique_id port 169465 remote_ip 10.8.1.142 169469 username hashtadani4 169469 mac 169469 bytes_out 0 169469 bytes_in 0 169469 station_ip 37.129.56.107 169469 port 391 169469 unique_id port 169469 remote_ip 10.8.1.142 169473 username hashtadani4 169473 mac 169473 bytes_out 0 169473 bytes_in 0 169473 station_ip 37.129.56.107 169473 port 391 169473 unique_id port 169473 remote_ip 10.8.1.142 169413 port 391 169413 unique_id port 169413 remote_ip 10.8.1.142 169416 username hashtadani4 169416 mac 169416 bytes_out 0 169416 bytes_in 0 169416 station_ip 37.129.56.107 169416 port 770 169416 unique_id port 169416 remote_ip 10.8.0.182 169418 username hashtadani4 169418 mac 169418 bytes_out 0 169418 bytes_in 0 169418 station_ip 37.129.56.107 169418 port 391 169418 unique_id port 169418 remote_ip 10.8.1.142 169420 username hashtadani4 169420 mac 169420 bytes_out 0 169420 bytes_in 0 169420 station_ip 37.129.56.107 169420 port 770 169420 unique_id port 169420 remote_ip 10.8.0.182 169423 username hashtadani4 169423 mac 169423 bytes_out 0 169423 bytes_in 0 169423 station_ip 37.129.56.107 169423 port 770 169423 unique_id port 169423 remote_ip 10.8.0.182 169425 username hashtadani4 169425 mac 169425 bytes_out 0 169425 bytes_in 0 169425 station_ip 37.129.56.107 169425 port 770 169425 unique_id port 169425 remote_ip 10.8.0.182 169429 username hashtadani4 169429 mac 169429 bytes_out 0 169429 bytes_in 0 169429 station_ip 37.129.56.107 169429 port 770 169429 unique_id port 169429 remote_ip 10.8.0.182 169431 username hashtadani4 169431 mac 169431 bytes_out 0 169431 bytes_in 0 169431 station_ip 37.129.56.107 169431 port 770 169431 unique_id port 169431 remote_ip 10.8.0.182 169433 username hashtadani4 169433 mac 169433 bytes_out 0 169433 bytes_in 0 169433 station_ip 37.129.56.107 169433 port 391 169433 unique_id port 169433 remote_ip 10.8.1.142 169437 username hashtadani4 169437 mac 169437 bytes_out 0 169437 bytes_in 0 169437 station_ip 37.129.56.107 169437 port 770 169437 unique_id port 169437 remote_ip 10.8.0.182 169441 username hashtadani4 169441 mac 169441 bytes_out 0 169441 bytes_in 0 169441 station_ip 37.129.56.107 169441 port 770 169441 unique_id port 169441 remote_ip 10.8.0.182 169446 username hashtadani4 169446 mac 169446 bytes_out 0 169446 bytes_in 0 169446 station_ip 37.129.56.107 169446 port 391 169446 unique_id port 169446 remote_ip 10.8.1.142 169447 username hashtadani4 169447 mac 169447 bytes_out 0 169447 bytes_in 0 169447 station_ip 37.129.56.107 169447 port 770 169447 unique_id port 169447 remote_ip 10.8.0.182 169450 username hashtadani4 169450 mac 169450 bytes_out 0 169450 bytes_in 0 169450 station_ip 37.129.56.107 169450 port 391 169450 unique_id port 169450 remote_ip 10.8.1.142 169454 username hashtadani4 169454 mac 169454 bytes_out 0 169454 bytes_in 0 169454 station_ip 37.129.56.107 169454 port 391 169454 unique_id port 169454 remote_ip 10.8.1.142 169455 username hashtadani4 169455 mac 169455 bytes_out 0 169455 bytes_in 0 169455 station_ip 37.129.56.107 169455 port 770 169455 unique_id port 169455 remote_ip 10.8.0.182 169459 username hashtadani4 169459 mac 169459 bytes_out 0 169459 bytes_in 0 169459 station_ip 37.129.56.107 169459 port 391 169459 unique_id port 169459 remote_ip 10.8.1.142 169462 username hashtadani4 169462 mac 169462 bytes_out 0 169462 bytes_in 0 169462 station_ip 37.129.56.107 169462 port 391 169462 unique_id port 169462 remote_ip 10.8.1.142 169464 username hashtadani4 169464 mac 169464 bytes_out 0 169464 bytes_in 0 169464 station_ip 37.129.56.107 169464 port 770 169464 unique_id port 169464 remote_ip 10.8.0.182 169468 username hashtadani4 169468 mac 169468 bytes_out 0 169468 bytes_in 0 169468 station_ip 37.129.56.107 169468 port 770 169468 unique_id port 169422 unique_id port 169422 remote_ip 10.8.1.142 169424 username hashtadani4 169424 mac 169424 bytes_out 0 169424 bytes_in 0 169424 station_ip 37.129.56.107 169424 port 391 169424 unique_id port 169424 remote_ip 10.8.1.142 169427 username hashtadani4 169427 mac 169427 bytes_out 0 169427 bytes_in 0 169427 station_ip 37.129.56.107 169427 port 770 169427 unique_id port 169427 remote_ip 10.8.0.182 169428 username hashtadani4 169428 mac 169428 bytes_out 0 169428 bytes_in 0 169428 station_ip 37.129.56.107 169428 port 391 169428 unique_id port 169428 remote_ip 10.8.1.142 169432 username hashtadani4 169432 mac 169432 bytes_out 0 169432 bytes_in 0 169432 station_ip 37.129.56.107 169432 port 780 169432 unique_id port 169432 remote_ip 10.8.0.182 169435 username hashtadani4 169435 mac 169435 bytes_out 0 169435 bytes_in 0 169435 station_ip 37.129.56.107 169435 port 770 169435 unique_id port 169435 remote_ip 10.8.0.182 169436 username hashtadani4 169436 mac 169436 bytes_out 0 169436 bytes_in 0 169436 station_ip 37.129.56.107 169436 port 391 169436 unique_id port 169436 remote_ip 10.8.1.142 169439 username hashtadani4 169439 mac 169439 bytes_out 0 169439 bytes_in 0 169439 station_ip 37.129.56.107 169439 port 770 169439 unique_id port 169439 remote_ip 10.8.0.182 169440 username hashtadani4 169440 mac 169440 bytes_out 0 169440 bytes_in 0 169440 station_ip 37.129.56.107 169440 port 391 169440 unique_id port 169440 remote_ip 10.8.1.142 169443 username hashtadani4 169443 mac 169443 bytes_out 0 169443 bytes_in 0 169443 station_ip 37.129.56.107 169443 port 770 169443 unique_id port 169443 remote_ip 10.8.0.182 169445 username hashtadani4 169445 mac 169445 bytes_out 0 169445 bytes_in 0 169445 station_ip 37.129.56.107 169445 port 770 169445 unique_id port 169445 remote_ip 10.8.0.182 169449 username hashtadani4 169449 mac 169449 bytes_out 0 169449 bytes_in 0 169449 station_ip 37.129.56.107 169449 port 770 169449 unique_id port 169449 remote_ip 10.8.0.182 169453 username hashtadani4 169453 mac 169453 bytes_out 0 169453 bytes_in 0 169453 station_ip 37.129.56.107 169453 port 770 169453 unique_id port 169453 remote_ip 10.8.0.182 169457 username hashtadani4 169457 mac 169457 bytes_out 0 169457 bytes_in 0 169457 station_ip 37.129.56.107 169457 port 770 169457 unique_id port 169457 remote_ip 10.8.0.182 169458 username hashtadani4 169458 mac 169458 bytes_out 0 169458 bytes_in 0 169458 station_ip 37.129.56.107 169458 port 770 169458 unique_id port 169458 remote_ip 10.8.0.182 169463 username hashtadani4 169463 mac 169463 bytes_out 0 169463 bytes_in 0 169463 station_ip 37.129.56.107 169463 port 770 169463 unique_id port 169463 remote_ip 10.8.0.182 169466 username hashtadani4 169466 mac 169466 bytes_out 0 169466 bytes_in 0 169466 station_ip 37.129.56.107 169466 port 770 169466 unique_id port 169466 remote_ip 10.8.0.182 169467 username hashtadani4 169467 mac 169467 bytes_out 0 169467 bytes_in 0 169467 station_ip 37.129.56.107 169467 port 391 169467 unique_id port 169467 remote_ip 10.8.1.142 169470 username hashtadani4 169470 mac 169470 bytes_out 0 169470 bytes_in 0 169470 station_ip 37.129.56.107 169470 port 770 169470 unique_id port 169470 remote_ip 10.8.0.182 169471 username hashtadani4 169471 mac 169471 bytes_out 0 169471 bytes_in 0 169471 station_ip 37.129.56.107 169471 port 391 169471 unique_id port 169471 remote_ip 10.8.1.142 169468 remote_ip 10.8.0.182 169472 username hashtadani4 169472 mac 169472 bytes_out 0 169472 bytes_in 0 169472 station_ip 37.129.56.107 169472 port 770 169472 unique_id port 169472 remote_ip 10.8.0.182 169476 username hashtadani4 169476 mac 169476 bytes_out 0 169476 bytes_in 0 169476 station_ip 37.129.56.107 169476 port 391 169476 unique_id port 169476 remote_ip 10.8.1.142 169477 username hashtadani4 169477 mac 169477 bytes_out 0 169477 bytes_in 0 169477 station_ip 37.129.56.107 169477 port 770 169477 unique_id port 169477 remote_ip 10.8.0.182 169480 username hashtadani4 169480 mac 169480 bytes_out 0 169480 bytes_in 0 169480 station_ip 37.129.56.107 169480 port 780 169480 unique_id port 169480 remote_ip 10.8.0.182 169484 username hashtadani4 169484 mac 169484 bytes_out 0 169484 bytes_in 0 169484 station_ip 37.129.56.107 169484 port 780 169484 unique_id port 169484 remote_ip 10.8.0.182 169485 username hashtadani4 169485 mac 169485 bytes_out 0 169485 bytes_in 0 169485 station_ip 37.129.56.107 169485 port 391 169485 unique_id port 169485 remote_ip 10.8.1.142 169488 username hashtadani4 169488 mac 169488 bytes_out 0 169488 bytes_in 0 169488 station_ip 37.129.56.107 169488 port 780 169488 unique_id port 169488 remote_ip 10.8.0.182 169492 username hashtadani4 169492 mac 169492 bytes_out 0 169492 bytes_in 0 169492 station_ip 37.129.56.107 169492 port 391 169492 unique_id port 169492 remote_ip 10.8.1.142 169496 username hashtadani4 169496 mac 169496 bytes_out 0 169496 bytes_in 0 169496 station_ip 37.129.56.107 169496 port 780 169496 unique_id port 169496 remote_ip 10.8.0.182 169498 username hashtadani4 169498 mac 169498 bytes_out 0 169498 bytes_in 0 169498 station_ip 37.129.56.107 169498 port 391 169498 unique_id port 169498 remote_ip 10.8.1.142 169502 username hashtadani4 169502 mac 169502 bytes_out 0 169502 bytes_in 0 169502 station_ip 37.129.56.107 169502 port 391 169502 unique_id port 169502 remote_ip 10.8.1.142 169505 username hashtadani4 169505 mac 169505 bytes_out 0 169505 bytes_in 0 169505 station_ip 37.129.56.107 169505 port 770 169505 unique_id port 169505 remote_ip 10.8.0.182 169508 username hashtadani4 169508 mac 169508 bytes_out 0 169508 bytes_in 0 169508 station_ip 37.129.56.107 169508 port 391 169508 unique_id port 169508 remote_ip 10.8.1.142 169512 username hashtadani4 169512 mac 169512 bytes_out 0 169512 bytes_in 0 169512 station_ip 37.129.56.107 169512 port 391 169512 unique_id port 169512 remote_ip 10.8.1.142 169515 username hashtadani4 169515 mac 169515 bytes_out 0 169515 bytes_in 0 169515 station_ip 37.129.56.107 169515 port 770 169515 unique_id port 169515 remote_ip 10.8.0.182 169516 username hashtadani4 169516 mac 169516 bytes_out 0 169516 bytes_in 0 169516 station_ip 37.129.56.107 169516 port 770 169516 unique_id port 169516 remote_ip 10.8.0.182 169521 username hashtadani4 169521 mac 169521 bytes_out 0 169521 bytes_in 0 169521 station_ip 37.129.56.107 169521 port 770 169521 unique_id port 169521 remote_ip 10.8.0.182 169522 username hashtadani4 169522 mac 169522 bytes_out 0 169522 bytes_in 0 169522 station_ip 37.129.56.107 169522 port 391 169522 unique_id port 169522 remote_ip 10.8.1.142 169525 username hashtadani4 169525 mac 169525 bytes_out 0 169525 bytes_in 0 169525 station_ip 37.129.56.107 169525 port 770 169525 unique_id port 169525 remote_ip 10.8.0.182 169474 username hashtadani4 169474 mac 169474 bytes_out 0 169474 bytes_in 0 169474 station_ip 37.129.56.107 169474 port 770 169474 unique_id port 169474 remote_ip 10.8.0.182 169478 username hashtadani4 169478 mac 169478 bytes_out 0 169478 bytes_in 0 169478 station_ip 37.129.56.107 169478 port 391 169478 unique_id port 169478 remote_ip 10.8.1.142 169481 username hashtadani4 169481 mac 169481 bytes_out 0 169481 bytes_in 0 169481 station_ip 37.129.56.107 169481 port 391 169481 unique_id port 169481 remote_ip 10.8.1.142 169482 username hashtadani4 169482 mac 169482 bytes_out 0 169482 bytes_in 0 169482 station_ip 37.129.56.107 169482 port 780 169482 unique_id port 169482 remote_ip 10.8.0.182 169486 username hashtadani4 169486 mac 169486 bytes_out 0 169486 bytes_in 0 169486 station_ip 37.129.56.107 169486 port 780 169486 unique_id port 169486 remote_ip 10.8.0.182 169489 username hashtadani4 169489 mac 169489 bytes_out 0 169489 bytes_in 0 169489 station_ip 37.129.56.107 169489 port 780 169489 unique_id port 169489 remote_ip 10.8.0.182 169490 username hashtadani4 169490 mac 169490 bytes_out 0 169490 bytes_in 0 169490 station_ip 37.129.56.107 169490 port 391 169490 unique_id port 169490 remote_ip 10.8.1.142 169493 username hashtadani4 169493 mac 169493 bytes_out 0 169493 bytes_in 0 169493 station_ip 37.129.56.107 169493 port 780 169493 unique_id port 169493 remote_ip 10.8.0.182 169494 username hashtadani4 169494 mac 169494 bytes_out 0 169494 bytes_in 0 169494 station_ip 37.129.56.107 169494 port 780 169494 unique_id port 169494 remote_ip 10.8.0.182 169497 username barzegar 169497 mac 169497 bytes_out 0 169497 bytes_in 0 169497 station_ip 5.119.111.133 169497 port 780 169497 unique_id port 169497 remote_ip 10.8.0.234 169499 username hashtadani4 169499 mac 169499 bytes_out 0 169499 bytes_in 0 169499 station_ip 37.129.56.107 169499 port 780 169499 unique_id port 169499 remote_ip 10.8.0.182 169500 username hashtadani4 169500 mac 169500 bytes_out 0 169500 bytes_in 0 169500 station_ip 37.129.56.107 169500 port 391 169500 unique_id port 169500 remote_ip 10.8.1.142 169503 username sedighe 169503 mac 169503 bytes_out 1917321 169503 bytes_in 14962340 169503 station_ip 83.123.237.37 169503 port 770 169503 unique_id port 169503 remote_ip 10.8.0.146 169506 username hashtadani4 169506 mac 169506 bytes_out 0 169506 bytes_in 0 169506 station_ip 37.129.56.107 169506 port 391 169506 unique_id port 169506 remote_ip 10.8.1.142 169509 username hashtadani4 169509 mac 169509 bytes_out 0 169509 bytes_in 0 169509 station_ip 37.129.56.107 169509 port 770 169509 unique_id port 169509 remote_ip 10.8.0.182 169510 username hashtadani4 169510 mac 169510 bytes_out 0 169510 bytes_in 0 169510 station_ip 37.129.56.107 169510 port 391 169510 unique_id port 169510 remote_ip 10.8.1.142 169513 username hashtadani4 169513 mac 169513 bytes_out 0 169513 bytes_in 0 169513 station_ip 37.129.56.107 169513 port 770 169513 unique_id port 169513 remote_ip 10.8.0.182 169517 username hashtadani4 169517 mac 169517 bytes_out 0 169517 bytes_in 0 169517 station_ip 37.129.56.107 169517 port 391 169517 unique_id port 169517 remote_ip 10.8.1.142 169519 username hashtadani4 169519 mac 169519 bytes_out 0 169519 bytes_in 0 169519 station_ip 37.129.56.107 169519 port 770 169519 unique_id port 169519 remote_ip 10.8.0.182 169523 username hashtadani4 169523 mac 169475 username hashtadani4 169475 mac 169475 bytes_out 0 169475 bytes_in 0 169475 station_ip 37.129.56.107 169475 port 770 169475 unique_id port 169475 remote_ip 10.8.0.182 169479 username hashtadani4 169479 mac 169479 bytes_out 0 169479 bytes_in 0 169479 station_ip 37.129.56.107 169479 port 391 169479 unique_id port 169479 remote_ip 10.8.1.142 169483 username hashtadani4 169483 mac 169483 bytes_out 0 169483 bytes_in 0 169483 station_ip 37.129.56.107 169483 port 391 169483 unique_id port 169483 remote_ip 10.8.1.142 169487 username hashtadani4 169487 mac 169487 bytes_out 0 169487 bytes_in 0 169487 station_ip 37.129.56.107 169487 port 391 169487 unique_id port 169487 remote_ip 10.8.1.142 169491 username hashtadani4 169491 mac 169491 bytes_out 0 169491 bytes_in 0 169491 station_ip 37.129.56.107 169491 port 780 169491 unique_id port 169491 remote_ip 10.8.0.182 169495 username hashtadani4 169495 mac 169495 bytes_out 0 169495 bytes_in 0 169495 station_ip 37.129.56.107 169495 port 391 169495 unique_id port 169495 remote_ip 10.8.1.142 169501 username hashtadani4 169501 mac 169501 bytes_out 0 169501 bytes_in 0 169501 station_ip 37.129.56.107 169501 port 780 169501 unique_id port 169501 remote_ip 10.8.0.182 169504 username hashtadani4 169504 mac 169504 bytes_out 0 169504 bytes_in 0 169504 station_ip 37.129.56.107 169504 port 780 169504 unique_id port 169504 remote_ip 10.8.0.182 169507 username hashtadani4 169507 mac 169507 bytes_out 0 169507 bytes_in 0 169507 station_ip 37.129.56.107 169507 port 770 169507 unique_id port 169507 remote_ip 10.8.0.182 169511 username hashtadani4 169511 mac 169511 bytes_out 0 169511 bytes_in 0 169511 station_ip 37.129.56.107 169511 port 770 169511 unique_id port 169511 remote_ip 10.8.0.182 169514 username hashtadani4 169514 mac 169514 bytes_out 0 169514 bytes_in 0 169514 station_ip 37.129.56.107 169514 port 770 169514 unique_id port 169514 remote_ip 10.8.0.182 169518 username hashtadani4 169518 mac 169518 bytes_out 0 169518 bytes_in 0 169518 station_ip 37.129.56.107 169518 port 391 169518 unique_id port 169518 remote_ip 10.8.1.142 169520 username hashtadani4 169520 mac 169520 bytes_out 0 169520 bytes_in 0 169520 station_ip 37.129.56.107 169520 port 391 169520 unique_id port 169520 remote_ip 10.8.1.142 169524 username hashtadani4 169524 mac 169524 bytes_out 0 169524 bytes_in 0 169524 station_ip 37.129.56.107 169524 port 391 169524 unique_id port 169524 remote_ip 10.8.1.142 169528 username hashtadani4 169528 mac 169528 bytes_out 0 169528 bytes_in 0 169528 station_ip 37.129.56.107 169528 port 391 169528 unique_id port 169528 remote_ip 10.8.1.142 169532 username hashtadani4 169532 mac 169532 bytes_out 0 169532 bytes_in 0 169532 station_ip 37.129.56.107 169532 port 391 169532 unique_id port 169532 remote_ip 10.8.1.142 169538 username hashtadani4 169538 mac 169538 bytes_out 0 169538 bytes_in 0 169538 station_ip 37.129.56.107 169538 port 770 169538 unique_id port 169538 remote_ip 10.8.0.182 169540 username hashtadani4 169540 mac 169540 bytes_out 0 169540 bytes_in 0 169540 station_ip 37.129.56.107 169540 port 780 169540 unique_id port 169540 remote_ip 10.8.0.182 169542 username hashtadani4 169542 mac 169542 bytes_out 0 169542 bytes_in 0 169542 station_ip 37.129.56.107 169542 port 391 169542 unique_id port 169542 remote_ip 10.8.1.142 169546 username hashtadani4 169546 mac 169523 bytes_out 0 169523 bytes_in 0 169523 station_ip 37.129.56.107 169523 port 770 169523 unique_id port 169523 remote_ip 10.8.0.182 169526 username hashtadani4 169526 mac 169526 bytes_out 0 169526 bytes_in 0 169526 station_ip 37.129.56.107 169526 port 391 169526 unique_id port 169526 remote_ip 10.8.1.142 169527 username hashtadani4 169527 mac 169527 bytes_out 0 169527 bytes_in 0 169527 station_ip 37.129.56.107 169527 port 770 169527 unique_id port 169527 remote_ip 10.8.0.182 169531 username hashtadani4 169531 mac 169531 bytes_out 0 169531 bytes_in 0 169531 station_ip 37.129.56.107 169531 port 770 169531 unique_id port 169531 remote_ip 10.8.0.182 169535 username hashtadani4 169535 mac 169535 bytes_out 0 169535 bytes_in 0 169535 station_ip 37.129.56.107 169535 port 770 169535 unique_id port 169535 remote_ip 10.8.0.182 169537 username hashtadani4 169537 mac 169537 bytes_out 0 169537 bytes_in 0 169537 station_ip 37.129.56.107 169537 port 391 169537 unique_id port 169537 remote_ip 10.8.1.142 169541 username barzegar 169541 mac 169541 bytes_out 0 169541 bytes_in 0 169541 station_ip 5.119.111.133 169541 port 770 169541 unique_id port 169541 remote_ip 10.8.0.234 169544 username hashtadani4 169544 mac 169544 bytes_out 0 169544 bytes_in 0 169544 station_ip 37.129.56.107 169544 port 391 169544 unique_id port 169544 remote_ip 10.8.1.142 169545 username hashtadani4 169545 mac 169545 bytes_out 0 169545 bytes_in 0 169545 station_ip 37.129.56.107 169545 port 770 169545 unique_id port 169545 remote_ip 10.8.0.182 169548 username hashtadani4 169548 mac 169548 bytes_out 0 169548 bytes_in 0 169548 station_ip 37.129.56.107 169548 port 391 169548 unique_id port 169548 remote_ip 10.8.1.142 169549 username hashtadani4 169549 mac 169549 bytes_out 0 169549 bytes_in 0 169549 station_ip 37.129.56.107 169549 port 770 169549 unique_id port 169549 remote_ip 10.8.0.182 169552 username hashtadani4 169552 mac 169552 bytes_out 0 169552 bytes_in 0 169552 station_ip 37.129.56.107 169552 port 391 169552 unique_id port 169552 remote_ip 10.8.1.142 169556 username hashtadani4 169556 mac 169556 bytes_out 0 169556 bytes_in 0 169556 station_ip 37.129.56.107 169556 port 391 169556 unique_id port 169556 remote_ip 10.8.1.142 169558 username hashtadani4 169558 mac 169558 bytes_out 0 169558 bytes_in 0 169558 station_ip 37.129.56.107 169558 port 770 169558 unique_id port 169558 remote_ip 10.8.0.182 169561 username hashtadani4 169561 mac 169561 bytes_out 0 169561 bytes_in 0 169561 station_ip 37.129.56.107 169561 port 770 169561 unique_id port 169561 remote_ip 10.8.0.182 169565 username hashtadani4 169565 mac 169565 bytes_out 0 169565 bytes_in 0 169565 station_ip 37.129.56.107 169565 port 770 169565 unique_id port 169565 remote_ip 10.8.0.182 169569 username hashtadani4 169569 mac 169569 bytes_out 0 169569 bytes_in 0 169569 station_ip 37.129.56.107 169569 port 770 169569 unique_id port 169569 remote_ip 10.8.0.182 169570 username hashtadani4 169570 mac 169570 bytes_out 0 169570 bytes_in 0 169570 station_ip 37.129.56.107 169570 port 391 169570 unique_id port 169570 remote_ip 10.8.1.142 169575 username hashtadani4 169575 mac 169575 bytes_out 0 169575 bytes_in 0 169575 station_ip 37.129.56.107 169575 port 780 169575 unique_id port 169575 remote_ip 10.8.0.182 169577 username hashtadani4 169577 mac 169577 bytes_out 0 169577 bytes_in 0 169529 username hashtadani4 169529 mac 169529 bytes_out 0 169529 bytes_in 0 169529 station_ip 37.129.56.107 169529 port 770 169529 unique_id port 169529 remote_ip 10.8.0.182 169530 username hashtadani4 169530 mac 169530 bytes_out 0 169530 bytes_in 0 169530 station_ip 37.129.56.107 169530 port 391 169530 unique_id port 169530 remote_ip 10.8.1.142 169533 username hashtadani4 169533 mac 169533 bytes_out 0 169533 bytes_in 0 169533 station_ip 37.129.56.107 169533 port 770 169533 unique_id port 169533 remote_ip 10.8.0.182 169534 username hashtadani4 169534 mac 169534 bytes_out 0 169534 bytes_in 0 169534 station_ip 37.129.56.107 169534 port 391 169534 unique_id port 169534 remote_ip 10.8.1.142 169536 username hashtadani4 169536 mac 169536 bytes_out 0 169536 bytes_in 0 169536 station_ip 37.129.56.107 169536 port 770 169536 unique_id port 169536 remote_ip 10.8.0.182 169539 username hashtadani4 169539 mac 169539 bytes_out 0 169539 bytes_in 0 169539 station_ip 37.129.56.107 169539 port 391 169539 unique_id port 169539 remote_ip 10.8.1.142 169543 username hashtadani4 169543 mac 169543 bytes_out 0 169543 bytes_in 0 169543 station_ip 37.129.56.107 169543 port 770 169543 unique_id port 169543 remote_ip 10.8.0.182 169547 username hashtadani4 169547 mac 169547 bytes_out 0 169547 bytes_in 0 169547 station_ip 37.129.56.107 169547 port 770 169547 unique_id port 169547 remote_ip 10.8.0.182 169551 username hashtadani4 169551 mac 169551 bytes_out 0 169551 bytes_in 0 169551 station_ip 37.129.56.107 169551 port 770 169551 unique_id port 169551 remote_ip 10.8.0.182 169555 username hashtadani4 169555 mac 169555 bytes_out 0 169555 bytes_in 0 169555 station_ip 37.129.56.107 169555 port 770 169555 unique_id port 169555 remote_ip 10.8.0.182 169560 username hashtadani4 169560 mac 169560 bytes_out 0 169560 bytes_in 0 169560 station_ip 37.129.56.107 169560 port 391 169560 unique_id port 169560 remote_ip 10.8.1.142 169564 username hashtadani4 169564 mac 169564 bytes_out 0 169564 bytes_in 0 169564 station_ip 37.129.56.107 169564 port 391 169564 unique_id port 169564 remote_ip 10.8.1.142 169568 username hashtadani4 169568 mac 169568 bytes_out 0 169568 bytes_in 0 169568 station_ip 37.129.56.107 169568 port 391 169568 unique_id port 169568 remote_ip 10.8.1.142 169573 username hashtadani4 169573 mac 169573 bytes_out 0 169573 bytes_in 0 169573 station_ip 37.129.56.107 169573 port 780 169573 unique_id port 169573 remote_ip 10.8.0.182 169574 username hashtadani4 169574 mac 169574 bytes_out 0 169574 bytes_in 0 169574 station_ip 37.129.56.107 169574 port 391 169574 unique_id port 169574 remote_ip 10.8.1.142 169581 username hashtadani4 169581 mac 169581 bytes_out 0 169581 bytes_in 0 169581 station_ip 37.129.56.107 169581 port 785 169581 unique_id port 169581 remote_ip 10.8.0.182 169582 username hashtadani4 169582 mac 169582 bytes_out 0 169582 bytes_in 0 169582 station_ip 37.129.56.107 169582 port 391 169582 unique_id port 169582 remote_ip 10.8.1.142 169584 username hashtadani4 169584 mac 169584 bytes_out 0 169584 bytes_in 0 169584 station_ip 37.129.56.107 169584 port 790 169584 unique_id port 169584 remote_ip 10.8.0.182 169587 username hashtadani4 169587 mac 169587 bytes_out 0 169587 bytes_in 0 169587 station_ip 37.129.56.107 169587 port 770 169587 unique_id port 169587 remote_ip 10.8.0.182 169591 username hashtadani4 169591 mac 169546 bytes_out 0 169546 bytes_in 0 169546 station_ip 37.129.56.107 169546 port 391 169546 unique_id port 169546 remote_ip 10.8.1.142 169550 username hashtadani4 169550 mac 169550 bytes_out 0 169550 bytes_in 0 169550 station_ip 37.129.56.107 169550 port 391 169550 unique_id port 169550 remote_ip 10.8.1.142 169553 username hashtadani4 169553 mac 169553 bytes_out 0 169553 bytes_in 0 169553 station_ip 37.129.56.107 169553 port 770 169553 unique_id port 169553 remote_ip 10.8.0.182 169554 username hashtadani4 169554 mac 169554 bytes_out 0 169554 bytes_in 0 169554 station_ip 37.129.56.107 169554 port 391 169554 unique_id port 169554 remote_ip 10.8.1.142 169557 username hashtadani4 169557 mac 169557 bytes_out 0 169557 bytes_in 0 169557 station_ip 37.129.56.107 169557 port 770 169557 unique_id port 169557 remote_ip 10.8.0.182 169559 username hashtadani4 169559 mac 169559 bytes_out 0 169559 bytes_in 0 169559 station_ip 37.129.56.107 169559 port 770 169559 unique_id port 169559 remote_ip 10.8.0.182 169562 username hashtadani4 169562 mac 169562 bytes_out 0 169562 bytes_in 0 169562 station_ip 37.129.56.107 169562 port 391 169562 unique_id port 169562 remote_ip 10.8.1.142 169563 username hashtadani4 169563 mac 169563 bytes_out 0 169563 bytes_in 0 169563 station_ip 37.129.56.107 169563 port 770 169563 unique_id port 169563 remote_ip 10.8.0.182 169566 username hashtadani4 169566 mac 169566 bytes_out 0 169566 bytes_in 0 169566 station_ip 37.129.56.107 169566 port 391 169566 unique_id port 169566 remote_ip 10.8.1.142 169567 username hashtadani4 169567 mac 169567 bytes_out 0 169567 bytes_in 0 169567 station_ip 37.129.56.107 169567 port 770 169567 unique_id port 169567 remote_ip 10.8.0.182 169571 username hashtadani4 169571 mac 169571 bytes_out 0 169571 bytes_in 0 169571 station_ip 37.129.56.107 169571 port 770 169571 unique_id port 169571 remote_ip 10.8.0.182 169572 username hashtadani4 169572 mac 169572 bytes_out 0 169572 bytes_in 0 169572 station_ip 37.129.56.107 169572 port 391 169572 unique_id port 169572 remote_ip 10.8.1.142 169576 username hashtadani4 169576 mac 169576 bytes_out 0 169576 bytes_in 0 169576 station_ip 37.129.56.107 169576 port 391 169576 unique_id port 169576 remote_ip 10.8.1.142 169579 username hashtadani4 169579 mac 169579 bytes_out 0 169579 bytes_in 0 169579 station_ip 37.129.56.107 169579 port 785 169579 unique_id port 169579 remote_ip 10.8.0.182 169580 username hashtadani4 169580 mac 169580 bytes_out 0 169580 bytes_in 0 169580 station_ip 37.129.56.107 169580 port 391 169580 unique_id port 169580 remote_ip 10.8.1.142 169586 username hashtadani4 169586 mac 169586 bytes_out 0 169586 bytes_in 0 169586 station_ip 37.129.56.107 169586 port 391 169586 unique_id port 169586 remote_ip 10.8.1.142 169590 username vanila 169590 mac 169590 bytes_out 0 169590 bytes_in 0 169590 station_ip 83.122.193.182 169590 port 780 169590 unique_id port 169590 remote_ip 10.8.0.178 169594 username mehdizare 169594 mac 169594 bytes_out 5831 169594 bytes_in 18451 169594 station_ip 37.129.240.109 169594 port 391 169594 unique_id port 169594 remote_ip 10.8.1.42 169596 username hashtadani4 169596 mac 169596 bytes_out 0 169596 bytes_in 0 169596 station_ip 37.129.56.107 169596 port 770 169596 unique_id port 169596 remote_ip 10.8.0.182 169603 username hashtadani4 169603 mac 169603 bytes_out 0 169603 bytes_in 0 169577 station_ip 37.129.56.107 169577 port 780 169577 unique_id port 169577 remote_ip 10.8.0.182 169578 username hashtadani4 169578 mac 169578 bytes_out 0 169578 bytes_in 0 169578 station_ip 37.129.56.107 169578 port 391 169578 unique_id port 169578 remote_ip 10.8.1.142 169583 username barzegar 169583 mac 169583 bytes_out 0 169583 bytes_in 0 169583 station_ip 5.119.111.133 169583 port 785 169583 unique_id port 169583 remote_ip 10.8.0.234 169585 username sedighe 169585 mac 169585 bytes_out 73924 169585 bytes_in 444127 169585 station_ip 83.123.237.37 169585 port 770 169585 unique_id port 169585 remote_ip 10.8.0.146 169588 username hashtadani4 169588 mac 169588 bytes_out 0 169588 bytes_in 0 169588 station_ip 37.129.56.107 169588 port 391 169588 unique_id port 169588 remote_ip 10.8.1.142 169589 username hashtadani4 169589 mac 169589 bytes_out 0 169589 bytes_in 0 169589 station_ip 37.129.56.107 169589 port 770 169589 unique_id port 169589 remote_ip 10.8.0.182 169592 username hashtadani4 169592 mac 169592 bytes_out 0 169592 bytes_in 0 169592 station_ip 37.129.56.107 169592 port 770 169592 unique_id port 169592 remote_ip 10.8.0.182 169595 username hashtadani4 169595 mac 169595 bytes_out 0 169595 bytes_in 0 169595 station_ip 37.129.56.107 169595 port 410 169595 unique_id port 169595 remote_ip 10.8.1.142 169598 username hashtadani4 169598 mac 169598 bytes_out 0 169598 bytes_in 0 169598 station_ip 37.129.56.107 169598 port 770 169598 unique_id port 169598 remote_ip 10.8.0.182 169602 username hashtadani4 169602 mac 169602 bytes_out 0 169602 bytes_in 0 169602 station_ip 37.129.56.107 169602 port 780 169602 unique_id port 169602 remote_ip 10.8.0.182 169605 username mehdizare 169605 mac 169605 bytes_out 0 169605 bytes_in 0 169605 station_ip 83.123.17.39 169605 port 780 169605 unique_id port 169605 remote_ip 10.8.0.90 169613 username hashtadani4 169613 mac 169613 bytes_out 0 169613 bytes_in 0 169613 station_ip 37.129.56.107 169613 port 391 169613 unique_id port 169613 remote_ip 10.8.1.142 169618 username hashtadani4 169618 mac 169618 bytes_out 0 169618 bytes_in 0 169618 station_ip 37.129.56.107 169618 port 780 169618 unique_id port 169618 remote_ip 10.8.0.182 169622 username hashtadani4 169622 mac 169622 bytes_out 0 169622 bytes_in 0 169622 station_ip 37.129.56.107 169622 port 391 169622 unique_id port 169622 remote_ip 10.8.1.142 169626 username hashtadani4 169626 mac 169626 bytes_out 0 169626 bytes_in 0 169626 station_ip 37.129.56.107 169626 port 391 169626 unique_id port 169626 remote_ip 10.8.1.142 169627 username hashtadani4 169627 mac 169627 bytes_out 0 169627 bytes_in 0 169627 station_ip 37.129.56.107 169627 port 780 169627 unique_id port 169627 remote_ip 10.8.0.182 169628 username hashtadani4 169628 mac 169628 bytes_out 0 169628 bytes_in 0 169628 station_ip 37.129.56.107 169628 port 391 169628 unique_id port 169628 remote_ip 10.8.1.142 169632 username hashtadani4 169632 mac 169632 bytes_out 0 169632 bytes_in 0 169632 station_ip 37.129.56.107 169632 port 391 169632 unique_id port 169632 remote_ip 10.8.1.142 169634 username hashtadani4 169634 mac 169634 bytes_out 0 169634 bytes_in 0 169634 station_ip 37.129.56.107 169634 port 780 169634 unique_id port 169634 remote_ip 10.8.0.182 169638 username hashtadani4 169638 mac 169638 bytes_out 0 169638 bytes_in 0 169638 station_ip 37.129.56.107 169638 port 780 169591 bytes_out 0 169591 bytes_in 0 169591 station_ip 37.129.56.107 169591 port 410 169591 unique_id port 169591 remote_ip 10.8.1.142 169593 username barzegar 169593 mac 169593 bytes_out 0 169593 bytes_in 0 169593 station_ip 5.119.111.133 169593 port 770 169593 unique_id port 169593 remote_ip 10.8.0.234 169597 username hashtadani4 169597 mac 169597 bytes_out 0 169597 bytes_in 0 169597 station_ip 37.129.56.107 169597 port 391 169597 unique_id port 169597 remote_ip 10.8.1.142 169599 username hashtadani4 169599 mac 169599 bytes_out 0 169599 bytes_in 0 169599 station_ip 37.129.56.107 169599 port 391 169599 unique_id port 169599 remote_ip 10.8.1.142 169600 username hashtadani4 169600 mac 169600 bytes_out 0 169600 bytes_in 0 169600 station_ip 37.129.56.107 169600 port 391 169600 unique_id port 169600 remote_ip 10.8.1.142 169601 username hashtadani4 169601 mac 169601 bytes_out 0 169601 bytes_in 0 169601 station_ip 37.129.56.107 169601 port 780 169601 unique_id port 169601 remote_ip 10.8.0.182 169604 username hashtadani4 169604 mac 169604 bytes_out 0 169604 bytes_in 0 169604 station_ip 37.129.56.107 169604 port 780 169604 unique_id port 169604 remote_ip 10.8.0.182 169606 username hashtadani4 169606 mac 169606 bytes_out 0 169606 bytes_in 0 169606 station_ip 37.129.56.107 169606 port 785 169606 unique_id port 169606 remote_ip 10.8.0.182 169608 username hashtadani4 169608 mac 169608 bytes_out 0 169608 bytes_in 0 169608 station_ip 37.129.56.107 169608 port 391 169608 unique_id port 169608 remote_ip 10.8.1.142 169609 username barzegar 169609 mac 169609 bytes_out 0 169609 bytes_in 0 169609 station_ip 5.119.111.133 169609 port 780 169609 unique_id port 169609 remote_ip 10.8.0.234 169612 username hashtadani4 169612 mac 169612 bytes_out 0 169612 bytes_in 0 169612 station_ip 37.129.56.107 169612 port 780 169612 unique_id port 169612 remote_ip 10.8.0.182 169616 username mehdizare 169616 mac 169616 bytes_out 0 169616 bytes_in 0 169616 station_ip 37.129.240.109 169616 port 790 169616 unique_id port 169616 remote_ip 10.8.0.90 169621 username hashtadani4 169621 mac 169621 bytes_out 0 169621 bytes_in 0 169621 station_ip 37.129.56.107 169621 port 780 169621 unique_id port 169621 remote_ip 10.8.0.182 169625 username hashtadani4 169625 mac 169625 bytes_out 0 169625 bytes_in 0 169625 station_ip 37.129.56.107 169625 port 780 169625 unique_id port 169625 remote_ip 10.8.0.182 169631 username hashtadani4 169631 mac 169631 bytes_out 0 169631 bytes_in 0 169631 station_ip 37.129.56.107 169631 port 780 169631 unique_id port 169631 remote_ip 10.8.0.182 169637 username hashtadani4 169637 mac 169637 bytes_out 0 169637 bytes_in 0 169637 station_ip 37.129.56.107 169637 port 391 169637 unique_id port 169637 remote_ip 10.8.1.142 169641 username hashtadani4 169641 mac 169641 bytes_out 0 169641 bytes_in 0 169641 station_ip 37.129.56.107 169641 port 391 169641 unique_id port 169641 remote_ip 10.8.1.142 169643 username barzegar 169643 mac 169643 bytes_out 0 169643 bytes_in 0 169643 station_ip 5.119.111.133 169643 port 780 169643 unique_id port 169643 remote_ip 10.8.0.234 169645 username hashtadani4 169645 mac 169645 bytes_out 0 169645 bytes_in 0 169645 station_ip 37.129.56.107 169645 port 780 169645 unique_id port 169645 remote_ip 10.8.0.182 169646 username hashtadani4 169646 mac 169646 bytes_out 0 169646 bytes_in 0 169603 station_ip 37.129.56.107 169603 port 391 169603 unique_id port 169603 remote_ip 10.8.1.142 169607 username hashtadani4 169607 kill_reason Maximum check online fails reached 169607 mac 169607 bytes_out 0 169607 bytes_in 0 169607 station_ip 37.129.56.107 169607 port 770 169607 unique_id port 169610 username hashtadani4 169610 mac 169610 bytes_out 0 169610 bytes_in 0 169610 station_ip 37.129.56.107 169610 port 785 169610 unique_id port 169610 remote_ip 10.8.0.182 169611 username hashtadani4 169611 mac 169611 bytes_out 0 169611 bytes_in 0 169611 station_ip 37.129.56.107 169611 port 391 169611 unique_id port 169611 remote_ip 10.8.1.142 169614 username hashtadani4 169614 mac 169614 bytes_out 0 169614 bytes_in 0 169614 station_ip 37.129.56.107 169614 port 780 169614 unique_id port 169614 remote_ip 10.8.0.182 169615 username hashtadani4 169615 mac 169615 bytes_out 0 169615 bytes_in 0 169615 station_ip 37.129.56.107 169615 port 391 169615 unique_id port 169615 remote_ip 10.8.1.142 169617 username hashtadani4 169617 mac 169617 bytes_out 0 169617 bytes_in 0 169617 station_ip 37.129.56.107 169617 port 391 169617 unique_id port 169617 remote_ip 10.8.1.142 169619 username hashtadani4 169619 mac 169619 bytes_out 0 169619 bytes_in 0 169619 station_ip 37.129.56.107 169619 port 780 169619 unique_id port 169619 remote_ip 10.8.0.182 169620 username hashtadani4 169620 mac 169620 bytes_out 0 169620 bytes_in 0 169620 station_ip 37.129.56.107 169620 port 391 169620 unique_id port 169620 remote_ip 10.8.1.142 169623 username hashtadani4 169623 mac 169623 bytes_out 0 169623 bytes_in 0 169623 station_ip 37.129.56.107 169623 port 780 169623 unique_id port 169623 remote_ip 10.8.0.182 169624 username hashtadani4 169624 mac 169624 bytes_out 0 169624 bytes_in 0 169624 station_ip 37.129.56.107 169624 port 391 169624 unique_id port 169624 remote_ip 10.8.1.142 169629 username hashtadani4 169629 mac 169629 bytes_out 0 169629 bytes_in 0 169629 station_ip 37.129.56.107 169629 port 780 169629 unique_id port 169629 remote_ip 10.8.0.182 169630 username hashtadani4 169630 mac 169630 bytes_out 0 169630 bytes_in 0 169630 station_ip 37.129.56.107 169630 port 780 169630 unique_id port 169630 remote_ip 10.8.0.182 169633 username hashtadani4 169633 mac 169633 bytes_out 0 169633 bytes_in 0 169633 station_ip 37.129.56.107 169633 port 391 169633 unique_id port 169633 remote_ip 10.8.1.142 169635 username hashtadani4 169635 mac 169635 bytes_out 0 169635 bytes_in 0 169635 station_ip 37.129.56.107 169635 port 391 169635 unique_id port 169635 remote_ip 10.8.1.142 169636 username hashtadani4 169636 mac 169636 bytes_out 0 169636 bytes_in 0 169636 station_ip 37.129.56.107 169636 port 780 169636 unique_id port 169636 remote_ip 10.8.0.182 169639 username hashtadani4 169639 mac 169639 bytes_out 0 169639 bytes_in 0 169639 station_ip 37.129.56.107 169639 port 391 169639 unique_id port 169639 remote_ip 10.8.1.142 169640 username hashtadani4 169640 mac 169640 bytes_out 0 169640 bytes_in 0 169640 station_ip 37.129.56.107 169640 port 780 169640 unique_id port 169640 remote_ip 10.8.0.182 169642 username hashtadani4 169642 mac 169642 bytes_out 0 169642 bytes_in 0 169642 station_ip 37.129.56.107 169642 port 790 169642 unique_id port 169642 remote_ip 10.8.0.182 169644 username hashtadani4 169644 mac 169644 bytes_out 0 169644 bytes_in 0 169644 station_ip 37.129.56.107 169638 unique_id port 169638 remote_ip 10.8.0.182 169647 username hashtadani4 169647 mac 169647 bytes_out 0 169647 bytes_in 0 169647 station_ip 37.129.56.107 169647 port 780 169647 unique_id port 169647 remote_ip 10.8.0.182 169649 username hashtadani4 169649 mac 169649 bytes_out 0 169649 bytes_in 0 169649 station_ip 37.129.56.107 169649 port 780 169649 unique_id port 169649 remote_ip 10.8.0.182 169653 username hashtadani4 169653 mac 169653 bytes_out 0 169653 bytes_in 0 169653 station_ip 37.129.56.107 169653 port 391 169653 unique_id port 169653 remote_ip 10.8.1.142 169654 username hashtadani4 169654 mac 169654 bytes_out 0 169654 bytes_in 0 169654 station_ip 37.129.56.107 169654 port 780 169654 unique_id port 169654 remote_ip 10.8.0.182 169657 username hashtadani4 169657 mac 169657 bytes_out 0 169657 bytes_in 0 169657 station_ip 37.129.56.107 169657 port 790 169657 unique_id port 169657 remote_ip 10.8.0.182 169661 username hashtadani4 169661 mac 169661 bytes_out 0 169661 bytes_in 0 169661 station_ip 37.129.56.107 169661 port 780 169661 unique_id port 169661 remote_ip 10.8.0.182 169664 username hashtadani4 169664 mac 169664 bytes_out 0 169664 bytes_in 0 169664 station_ip 37.129.56.107 169664 port 780 169664 unique_id port 169664 remote_ip 10.8.0.182 169667 username hashtadani4 169667 mac 169667 bytes_out 0 169667 bytes_in 0 169667 station_ip 37.129.56.107 169667 port 780 169667 unique_id port 169667 remote_ip 10.8.0.182 169668 username hashtadani4 169668 mac 169668 bytes_out 0 169668 bytes_in 0 169668 station_ip 37.129.56.107 169668 port 780 169668 unique_id port 169668 remote_ip 10.8.0.182 169673 username hashtadani4 169673 mac 169673 bytes_out 0 169673 bytes_in 0 169673 station_ip 37.129.56.107 169673 port 410 169673 unique_id port 169673 remote_ip 10.8.1.142 169675 username hashtadani4 169675 mac 169675 bytes_out 0 169675 bytes_in 0 169675 station_ip 37.129.56.107 169675 port 410 169675 unique_id port 169675 remote_ip 10.8.1.142 169676 username hashtadani4 169676 mac 169676 bytes_out 0 169676 bytes_in 0 169676 station_ip 37.129.56.107 169676 port 790 169676 unique_id port 169676 remote_ip 10.8.0.182 169682 username hashtadani4 169682 mac 169682 bytes_out 0 169682 bytes_in 0 169682 station_ip 37.129.56.107 169682 port 785 169682 unique_id port 169682 remote_ip 10.8.0.182 169684 username hashtadani4 169684 mac 169684 bytes_out 0 169684 bytes_in 0 169684 station_ip 37.129.56.107 169684 port 410 169684 unique_id port 169684 remote_ip 10.8.1.142 169689 username hashtadani4 169689 mac 169689 bytes_out 0 169689 bytes_in 0 169689 station_ip 37.129.56.107 169689 port 790 169689 unique_id port 169689 remote_ip 10.8.0.182 169690 username hashtadani4 169690 mac 169690 bytes_out 0 169690 bytes_in 0 169690 station_ip 37.129.56.107 169690 port 790 169690 unique_id port 169690 remote_ip 10.8.0.182 169693 username hashtadani4 169693 mac 169693 bytes_out 0 169693 bytes_in 0 169693 station_ip 37.129.56.107 169693 port 790 169693 unique_id port 169693 remote_ip 10.8.0.182 169697 username hashtadani4 169697 mac 169697 bytes_out 0 169697 bytes_in 0 169697 station_ip 37.129.56.107 169697 port 790 169697 unique_id port 169697 remote_ip 10.8.0.182 169701 username hashtadani4 169701 mac 169701 bytes_out 0 169701 bytes_in 0 169701 station_ip 37.129.56.107 169701 port 790 169701 unique_id port 169701 remote_ip 10.8.0.182 169644 port 391 169644 unique_id port 169644 remote_ip 10.8.1.142 169648 username hashtadani4 169648 mac 169648 bytes_out 0 169648 bytes_in 0 169648 station_ip 37.129.56.107 169648 port 391 169648 unique_id port 169648 remote_ip 10.8.1.142 169650 username hashtadani4 169650 mac 169650 bytes_out 0 169650 bytes_in 0 169650 station_ip 37.129.56.107 169650 port 391 169650 unique_id port 169650 remote_ip 10.8.1.142 169655 username hashtadani4 169655 mac 169655 bytes_out 0 169655 bytes_in 0 169655 station_ip 37.129.56.107 169655 port 391 169655 unique_id port 169655 remote_ip 10.8.1.142 169656 username barzegar 169656 mac 169656 bytes_out 0 169656 bytes_in 0 169656 station_ip 5.119.111.133 169656 port 780 169656 unique_id port 169656 remote_ip 10.8.0.234 169658 username hashtadani4 169658 mac 169658 bytes_out 0 169658 bytes_in 0 169658 station_ip 37.129.56.107 169658 port 391 169658 unique_id port 169658 remote_ip 10.8.1.142 169659 username hashtadani4 169659 mac 169659 bytes_out 0 169659 bytes_in 0 169659 station_ip 37.129.56.107 169659 port 780 169659 unique_id port 169659 remote_ip 10.8.0.182 169665 username hashtadani4 169665 mac 169665 bytes_out 0 169665 bytes_in 0 169665 station_ip 37.129.56.107 169665 port 391 169665 unique_id port 169665 remote_ip 10.8.1.142 169669 username hashtadani4 169669 mac 169669 bytes_out 0 169669 bytes_in 0 169669 station_ip 37.129.56.107 169669 port 391 169669 unique_id port 169669 remote_ip 10.8.1.142 169674 username hashtadani4 169674 mac 169674 bytes_out 0 169674 bytes_in 0 169674 station_ip 37.129.56.107 169674 port 780 169674 unique_id port 169674 remote_ip 10.8.0.182 169677 username hashtadani4 169677 mac 169677 bytes_out 0 169677 bytes_in 0 169677 station_ip 37.129.56.107 169677 port 410 169677 unique_id port 169677 remote_ip 10.8.1.142 169679 username sekonji3 169679 mac 169679 bytes_out 143832 169679 bytes_in 1088490 169679 station_ip 113.203.35.131 169679 port 785 169679 unique_id port 169679 remote_ip 10.8.0.6 169683 username hashtadani4 169683 mac 169683 bytes_out 0 169683 bytes_in 0 169683 station_ip 37.129.56.107 169683 port 785 169683 unique_id port 169683 remote_ip 10.8.0.182 169685 username hashtadani4 169685 mac 169685 bytes_out 0 169685 bytes_in 0 169685 station_ip 37.129.56.107 169685 port 785 169685 unique_id port 169685 remote_ip 10.8.0.182 169686 username hashtadani4 169686 mac 169686 bytes_out 0 169686 bytes_in 0 169686 station_ip 37.129.56.107 169686 port 410 169686 unique_id port 169686 remote_ip 10.8.1.142 169687 username hashtadani4 169687 mac 169687 bytes_out 0 169687 bytes_in 0 169687 station_ip 37.129.56.107 169687 port 790 169687 unique_id port 169687 remote_ip 10.8.0.182 169691 username hashtadani4 169691 mac 169691 bytes_out 0 169691 bytes_in 0 169691 station_ip 37.129.56.107 169691 port 410 169691 unique_id port 169691 remote_ip 10.8.1.142 169694 username hashtadani4 169694 mac 169694 bytes_out 0 169694 bytes_in 0 169694 station_ip 37.129.56.107 169694 port 410 169694 unique_id port 169694 remote_ip 10.8.1.142 169698 username hashtadani4 169698 mac 169698 bytes_out 0 169698 bytes_in 0 169698 station_ip 37.129.56.107 169698 port 410 169698 unique_id port 169698 remote_ip 10.8.1.142 169699 username hashtadani4 169699 mac 169699 bytes_out 0 169699 bytes_in 0 169699 station_ip 37.129.56.107 169699 port 790 169699 unique_id port 169646 station_ip 37.129.56.107 169646 port 391 169646 unique_id port 169646 remote_ip 10.8.1.142 169651 username hashtadani4 169651 mac 169651 bytes_out 0 169651 bytes_in 0 169651 station_ip 37.129.56.107 169651 port 391 169651 unique_id port 169651 remote_ip 10.8.1.142 169652 username hashtadani4 169652 mac 169652 bytes_out 0 169652 bytes_in 0 169652 station_ip 37.129.56.107 169652 port 780 169652 unique_id port 169652 remote_ip 10.8.0.182 169660 username hashtadani4 169660 mac 169660 bytes_out 0 169660 bytes_in 0 169660 station_ip 37.129.56.107 169660 port 391 169660 unique_id port 169660 remote_ip 10.8.1.142 169662 username mehdizare 169662 mac 169662 bytes_out 20610 169662 bytes_in 32062 169662 station_ip 83.123.35.233 169662 port 785 169662 unique_id port 169662 remote_ip 10.8.0.90 169663 username hashtadani4 169663 mac 169663 bytes_out 0 169663 bytes_in 0 169663 station_ip 37.129.56.107 169663 port 391 169663 unique_id port 169663 remote_ip 10.8.1.142 169666 username hashtadani4 169666 mac 169666 bytes_out 0 169666 bytes_in 0 169666 station_ip 37.129.56.107 169666 port 780 169666 unique_id port 169666 remote_ip 10.8.0.182 169670 username hashtadani4 169670 mac 169670 bytes_out 0 169670 bytes_in 0 169670 station_ip 37.129.56.107 169670 port 780 169670 unique_id port 169670 remote_ip 10.8.0.182 169671 username hashtadani4 169671 mac 169671 bytes_out 0 169671 bytes_in 0 169671 station_ip 37.129.56.107 169671 port 391 169671 unique_id port 169671 remote_ip 10.8.1.142 169672 username hashtadani4 169672 mac 169672 bytes_out 0 169672 bytes_in 0 169672 station_ip 37.129.56.107 169672 port 780 169672 unique_id port 169672 remote_ip 10.8.0.182 169678 username hashtadani4 169678 mac 169678 bytes_out 0 169678 bytes_in 0 169678 station_ip 37.129.56.107 169678 port 790 169678 unique_id port 169678 remote_ip 10.8.0.182 169680 username hashtadani4 169680 mac 169680 bytes_out 0 169680 bytes_in 0 169680 station_ip 37.129.56.107 169680 port 785 169680 unique_id port 169680 remote_ip 10.8.0.182 169681 username hashtadani4 169681 mac 169681 bytes_out 0 169681 bytes_in 0 169681 station_ip 37.129.56.107 169681 port 410 169681 unique_id port 169681 remote_ip 10.8.1.142 169688 username hashtadani4 169688 mac 169688 bytes_out 0 169688 bytes_in 0 169688 station_ip 37.129.56.107 169688 port 410 169688 unique_id port 169688 remote_ip 10.8.1.142 169692 username hashtadani4 169692 mac 169692 bytes_out 0 169692 bytes_in 0 169692 station_ip 37.129.56.107 169692 port 790 169692 unique_id port 169692 remote_ip 10.8.0.182 169695 username hashtadani4 169695 mac 169695 bytes_out 0 169695 bytes_in 0 169695 station_ip 37.129.56.107 169695 port 790 169695 unique_id port 169695 remote_ip 10.8.0.182 169696 username hashtadani4 169696 mac 169696 bytes_out 0 169696 bytes_in 0 169696 station_ip 37.129.56.107 169696 port 410 169696 unique_id port 169696 remote_ip 10.8.1.142 169700 username hashtadani4 169700 mac 169700 bytes_out 0 169700 bytes_in 0 169700 station_ip 37.129.56.107 169700 port 410 169700 unique_id port 169700 remote_ip 10.8.1.142 169702 username barzegar 169702 mac 169702 bytes_out 38932 169702 bytes_in 32479 169702 station_ip 5.119.111.133 169702 port 794 169702 unique_id port 169702 remote_ip 10.8.0.234 169709 username hashtadani4 169709 mac 169709 bytes_out 0 169709 bytes_in 0 169709 station_ip 37.129.56.107 169699 remote_ip 10.8.0.182 169703 username hashtadani4 169703 mac 169703 bytes_out 0 169703 bytes_in 0 169703 station_ip 37.129.56.107 169703 port 410 169703 unique_id port 169703 remote_ip 10.8.1.142 169706 username hashtadani4 169706 mac 169706 bytes_out 0 169706 bytes_in 0 169706 station_ip 37.129.56.107 169706 port 790 169706 unique_id port 169706 remote_ip 10.8.0.182 169708 username hashtadani4 169708 mac 169708 bytes_out 0 169708 bytes_in 0 169708 station_ip 37.129.56.107 169708 port 780 169708 unique_id port 169708 remote_ip 10.8.0.182 169713 username hashtadani4 169713 mac 169713 bytes_out 0 169713 bytes_in 0 169713 station_ip 37.129.56.107 169713 port 780 169713 unique_id port 169713 remote_ip 10.8.0.182 169717 username hashtadani4 169717 mac 169717 bytes_out 0 169717 bytes_in 0 169717 station_ip 37.129.56.107 169717 port 410 169717 unique_id port 169717 remote_ip 10.8.1.142 169718 username hashtadani4 169718 mac 169718 bytes_out 0 169718 bytes_in 0 169718 station_ip 37.129.56.107 169718 port 780 169718 unique_id port 169718 remote_ip 10.8.0.182 169723 username hashtadani4 169723 mac 169723 bytes_out 0 169723 bytes_in 0 169723 station_ip 37.129.56.107 169723 port 780 169723 unique_id port 169723 remote_ip 10.8.0.182 169725 username hashtadani4 169725 mac 169725 bytes_out 0 169725 bytes_in 0 169725 station_ip 37.129.56.107 169725 port 790 169725 unique_id port 169725 remote_ip 10.8.0.182 169730 username hashtadani4 169730 mac 169730 bytes_out 0 169730 bytes_in 0 169730 station_ip 37.129.56.107 169730 port 410 169730 unique_id port 169730 remote_ip 10.8.1.142 169731 username hashtadani4 169731 mac 169731 bytes_out 0 169731 bytes_in 0 169731 station_ip 37.129.56.107 169731 port 790 169731 unique_id port 169731 remote_ip 10.8.0.182 169737 username hashtadani4 169737 mac 169737 bytes_out 0 169737 bytes_in 0 169737 station_ip 37.129.56.107 169737 port 410 169737 unique_id port 169737 remote_ip 10.8.1.142 169739 username hashtadani4 169739 mac 169739 bytes_out 0 169739 bytes_in 0 169739 station_ip 37.129.56.107 169739 port 798 169739 unique_id port 169739 remote_ip 10.8.0.182 169742 username hashtadani4 169742 mac 169742 bytes_out 0 169742 bytes_in 0 169742 station_ip 37.129.56.107 169742 port 790 169742 unique_id port 169742 remote_ip 10.8.0.182 169746 username hashtadani4 169746 mac 169746 bytes_out 0 169746 bytes_in 0 169746 station_ip 37.129.56.107 169746 port 410 169746 unique_id port 169746 remote_ip 10.8.1.142 169748 username hashtadani4 169748 mac 169748 bytes_out 0 169748 bytes_in 0 169748 station_ip 37.129.56.107 169748 port 410 169748 unique_id port 169748 remote_ip 10.8.1.142 169749 username hashtadani4 169749 mac 169749 bytes_out 0 169749 bytes_in 0 169749 station_ip 37.129.56.107 169749 port 798 169749 unique_id port 169749 remote_ip 10.8.0.182 169751 username vanila 169751 mac 169751 bytes_out 0 169751 bytes_in 0 169751 station_ip 83.122.193.182 169751 port 802 169751 unique_id port 169751 remote_ip 10.8.0.178 169754 username hashtadani4 169754 mac 169754 bytes_out 0 169754 bytes_in 0 169754 station_ip 37.129.56.107 169754 port 798 169754 unique_id port 169754 remote_ip 10.8.0.182 169755 username hashtadani4 169755 mac 169755 bytes_out 0 169755 bytes_in 0 169755 station_ip 37.129.56.107 169755 port 410 169755 unique_id port 169755 remote_ip 10.8.1.142 169760 username hashtadani4 169704 username mehdizare 169704 mac 169704 bytes_out 15951 169704 bytes_in 19104 169704 station_ip 83.123.35.233 169704 port 391 169704 unique_id port 169704 remote_ip 10.8.1.42 169705 username hashtadani4 169705 mac 169705 bytes_out 0 169705 bytes_in 0 169705 station_ip 37.129.56.107 169705 port 790 169705 unique_id port 169705 remote_ip 10.8.0.182 169707 username mohammadjavad 169707 mac 169707 bytes_out 479159 169707 bytes_in 7949563 169707 station_ip 83.122.214.151 169707 port 780 169707 unique_id port 169707 remote_ip 10.8.0.142 169710 username hashtadani4 169710 mac 169710 bytes_out 0 169710 bytes_in 0 169710 station_ip 37.129.56.107 169710 port 780 169710 unique_id port 169710 remote_ip 10.8.0.182 169712 username hashtadani4 169712 mac 169712 bytes_out 0 169712 bytes_in 0 169712 station_ip 37.129.56.107 169712 port 410 169712 unique_id port 169712 remote_ip 10.8.1.142 169715 username hashtadani4 169715 mac 169715 bytes_out 0 169715 bytes_in 0 169715 station_ip 37.129.56.107 169715 port 410 169715 unique_id port 169715 remote_ip 10.8.1.142 169716 username hashtadani4 169716 mac 169716 bytes_out 0 169716 bytes_in 0 169716 station_ip 37.129.56.107 169716 port 780 169716 unique_id port 169716 remote_ip 10.8.0.182 169720 username mehdizare 169720 kill_reason Maximum check online fails reached 169720 mac 169720 bytes_out 0 169720 bytes_in 0 169720 station_ip 83.123.35.233 169720 port 391 169720 unique_id port 169722 username hashtadani4 169722 mac 169722 bytes_out 0 169722 bytes_in 0 169722 station_ip 37.129.56.107 169722 port 410 169722 unique_id port 169722 remote_ip 10.8.1.142 169724 username hashtadani4 169724 mac 169724 bytes_out 0 169724 bytes_in 0 169724 station_ip 37.129.56.107 169724 port 410 169724 unique_id port 169724 remote_ip 10.8.1.142 169727 username hashtadani4 169727 mac 169727 bytes_out 0 169727 bytes_in 0 169727 station_ip 37.129.56.107 169727 port 790 169727 unique_id port 169727 remote_ip 10.8.0.182 169729 username hashtadani4 169729 mac 169729 bytes_out 0 169729 bytes_in 0 169729 station_ip 37.129.56.107 169729 port 790 169729 unique_id port 169729 remote_ip 10.8.0.182 169733 username hashtadani4 169733 kill_reason Maximum check online fails reached 169733 mac 169733 bytes_out 0 169733 bytes_in 0 169733 station_ip 37.129.56.107 169733 port 780 169733 unique_id port 169735 username hashtadani4 169735 mac 169735 bytes_out 0 169735 bytes_in 0 169735 station_ip 37.129.56.107 169735 port 790 169735 unique_id port 169735 remote_ip 10.8.0.182 169736 username hashtadani4 169736 mac 169736 bytes_out 0 169736 bytes_in 0 169736 station_ip 37.129.56.107 169736 port 790 169736 unique_id port 169736 remote_ip 10.8.0.182 169738 username hashtadani4 169738 mac 169738 bytes_out 0 169738 bytes_in 0 169738 station_ip 37.129.56.107 169738 port 790 169738 unique_id port 169738 remote_ip 10.8.0.182 169741 username hashtadani4 169741 mac 169741 bytes_out 0 169741 bytes_in 0 169741 station_ip 37.129.56.107 169741 port 790 169741 unique_id port 169741 remote_ip 10.8.0.182 169745 username hashtadani4 169745 mac 169745 bytes_out 0 169745 bytes_in 0 169745 station_ip 37.129.56.107 169745 port 790 169745 unique_id port 169745 remote_ip 10.8.0.182 169753 username hashtadani4 169753 mac 169753 bytes_out 0 169753 bytes_in 0 169753 station_ip 37.129.56.107 169753 port 410 169753 unique_id port 169753 remote_ip 10.8.1.142 169709 port 391 169709 unique_id port 169709 remote_ip 10.8.1.142 169711 username hashtadani4 169711 mac 169711 bytes_out 0 169711 bytes_in 0 169711 station_ip 37.129.56.107 169711 port 790 169711 unique_id port 169711 remote_ip 10.8.0.182 169714 username hashtadani4 169714 mac 169714 bytes_out 0 169714 bytes_in 0 169714 station_ip 37.129.56.107 169714 port 780 169714 unique_id port 169714 remote_ip 10.8.0.182 169719 username hashtadani4 169719 mac 169719 bytes_out 0 169719 bytes_in 0 169719 station_ip 37.129.56.107 169719 port 410 169719 unique_id port 169719 remote_ip 10.8.1.142 169721 username hashtadani4 169721 mac 169721 bytes_out 0 169721 bytes_in 0 169721 station_ip 37.129.56.107 169721 port 780 169721 unique_id port 169721 remote_ip 10.8.0.182 169726 username hashtadani4 169726 mac 169726 bytes_out 0 169726 bytes_in 0 169726 station_ip 37.129.56.107 169726 port 410 169726 unique_id port 169726 remote_ip 10.8.1.142 169728 username hashtadani4 169728 mac 169728 bytes_out 0 169728 bytes_in 0 169728 station_ip 37.129.56.107 169728 port 410 169728 unique_id port 169728 remote_ip 10.8.1.142 169732 username hashtadani4 169732 mac 169732 bytes_out 0 169732 bytes_in 0 169732 station_ip 37.129.56.107 169732 port 790 169732 unique_id port 169732 remote_ip 10.8.0.182 169734 username hashtadani4 169734 mac 169734 bytes_out 0 169734 bytes_in 0 169734 station_ip 37.129.56.107 169734 port 410 169734 unique_id port 169734 remote_ip 10.8.1.142 169740 username hashtadani4 169740 mac 169740 bytes_out 0 169740 bytes_in 0 169740 station_ip 37.129.56.107 169740 port 410 169740 unique_id port 169740 remote_ip 10.8.1.142 169743 username hashtadani4 169743 mac 169743 bytes_out 0 169743 bytes_in 0 169743 station_ip 37.129.56.107 169743 port 790 169743 unique_id port 169743 remote_ip 10.8.0.182 169744 username hashtadani4 169744 mac 169744 bytes_out 0 169744 bytes_in 0 169744 station_ip 37.129.56.107 169744 port 410 169744 unique_id port 169744 remote_ip 10.8.1.142 169747 username hashtadani4 169747 mac 169747 bytes_out 0 169747 bytes_in 0 169747 station_ip 37.129.56.107 169747 port 790 169747 unique_id port 169747 remote_ip 10.8.0.182 169750 username hashtadani4 169750 mac 169750 bytes_out 0 169750 bytes_in 0 169750 station_ip 37.129.56.107 169750 port 410 169750 unique_id port 169750 remote_ip 10.8.1.142 169752 username hashtadani4 169752 mac 169752 bytes_out 0 169752 bytes_in 0 169752 station_ip 37.129.56.107 169752 port 798 169752 unique_id port 169752 remote_ip 10.8.0.182 169756 username hashtadani4 169756 mac 169756 bytes_out 0 169756 bytes_in 0 169756 station_ip 37.129.56.107 169756 port 798 169756 unique_id port 169756 remote_ip 10.8.0.182 169762 username hashtadani4 169762 mac 169762 bytes_out 0 169762 bytes_in 0 169762 station_ip 37.129.56.107 169762 port 806 169762 unique_id port 169762 remote_ip 10.8.0.182 169765 username hashtadani4 169765 mac 169765 bytes_out 0 169765 bytes_in 0 169765 station_ip 37.129.56.107 169765 port 802 169765 unique_id port 169765 remote_ip 10.8.0.182 169766 username hashtadani4 169766 mac 169766 bytes_out 0 169766 bytes_in 0 169766 station_ip 37.129.56.107 169766 port 410 169766 unique_id port 169766 remote_ip 10.8.1.142 169769 username hashtadani4 169769 mac 169769 bytes_out 0 169769 bytes_in 0 169769 station_ip 37.129.56.107 169769 port 802 169769 unique_id port 169757 username hashtadani4 169757 mac 169757 bytes_out 0 169757 bytes_in 0 169757 station_ip 37.129.56.107 169757 port 410 169757 unique_id port 169757 remote_ip 10.8.1.142 169758 username hashtadani4 169758 mac 169758 bytes_out 0 169758 bytes_in 0 169758 station_ip 37.129.56.107 169758 port 798 169758 unique_id port 169758 remote_ip 10.8.0.182 169759 username hashtadani4 169759 mac 169759 bytes_out 0 169759 bytes_in 0 169759 station_ip 37.129.56.107 169759 port 802 169759 unique_id port 169759 remote_ip 10.8.0.182 169761 username hashtadani4 169761 mac 169761 bytes_out 0 169761 bytes_in 0 169761 station_ip 37.129.56.107 169761 port 802 169761 unique_id port 169761 remote_ip 10.8.0.182 169767 username hashtadani4 169767 mac 169767 bytes_out 0 169767 bytes_in 0 169767 station_ip 37.129.56.107 169767 port 802 169767 unique_id port 169767 remote_ip 10.8.0.182 169772 username hashtadani4 169772 mac 169772 bytes_out 0 169772 bytes_in 0 169772 station_ip 37.129.56.107 169772 port 410 169772 unique_id port 169772 remote_ip 10.8.1.142 169773 username mehdizare 169773 mac 169773 bytes_out 23462 169773 bytes_in 150473 169773 station_ip 83.123.91.64 169773 port 798 169773 unique_id port 169773 remote_ip 10.8.0.90 169775 username hashtadani4 169775 mac 169775 bytes_out 0 169775 bytes_in 0 169775 station_ip 37.129.56.107 169775 port 410 169775 unique_id port 169775 remote_ip 10.8.1.142 169776 username hashtadani4 169776 mac 169776 bytes_out 0 169776 bytes_in 0 169776 station_ip 37.129.56.107 169776 port 798 169776 unique_id port 169776 remote_ip 10.8.0.182 169779 username hashtadani4 169779 mac 169779 bytes_out 0 169779 bytes_in 0 169779 station_ip 37.129.56.107 169779 port 798 169779 unique_id port 169779 remote_ip 10.8.0.182 169780 username hashtadani4 169780 mac 169780 bytes_out 0 169780 bytes_in 0 169780 station_ip 37.129.56.107 169780 port 410 169780 unique_id port 169780 remote_ip 10.8.1.142 169781 username godarzi 169781 mac 169781 bytes_out 3245034 169781 bytes_in 26217546 169781 station_ip 5.119.46.130 169781 port 790 169781 unique_id port 169781 remote_ip 10.8.0.174 169783 username hashtadani4 169783 mac 169783 bytes_out 0 169783 bytes_in 0 169783 station_ip 37.129.56.107 169783 port 414 169783 unique_id port 169783 remote_ip 10.8.1.142 169786 username hashtadani4 169786 mac 169786 bytes_out 0 169786 bytes_in 0 169786 station_ip 37.129.56.107 169786 port 785 169786 unique_id port 169786 remote_ip 10.8.0.182 169789 username barzegar 169789 mac 169789 bytes_out 0 169789 bytes_in 0 169789 station_ip 5.119.111.133 169789 port 794 169789 unique_id port 169791 username hashtadani4 169791 mac 169791 bytes_out 0 169791 bytes_in 0 169791 station_ip 37.129.56.107 169791 port 794 169791 unique_id port 169791 remote_ip 10.8.0.182 169793 username hashtadani4 169793 mac 169793 bytes_out 0 169793 bytes_in 0 169793 station_ip 37.129.56.107 169793 port 414 169793 unique_id port 169793 remote_ip 10.8.1.142 169795 username hashtadani4 169795 mac 169795 bytes_out 0 169795 bytes_in 0 169795 station_ip 37.129.56.107 169795 port 414 169795 unique_id port 169795 remote_ip 10.8.1.142 169798 username hashtadani4 169798 mac 169798 bytes_out 0 169798 bytes_in 0 169798 station_ip 37.129.56.107 169798 port 790 169798 unique_id port 169798 remote_ip 10.8.0.182 169799 username hashtadani4 169799 mac 169799 bytes_out 0 169760 mac 169760 bytes_out 0 169760 bytes_in 0 169760 station_ip 37.129.56.107 169760 port 410 169760 unique_id port 169760 remote_ip 10.8.1.142 169763 username barzegar 169763 kill_reason Another user logged on this global unique id 169763 mac 169763 bytes_out 0 169763 bytes_in 0 169763 station_ip 5.119.111.133 169763 port 794 169763 unique_id port 169763 remote_ip 10.8.0.234 169764 username hashtadani4 169764 mac 169764 bytes_out 0 169764 bytes_in 0 169764 station_ip 37.129.56.107 169764 port 410 169764 unique_id port 169764 remote_ip 10.8.1.142 169768 username hashtadani4 169768 mac 169768 bytes_out 0 169768 bytes_in 0 169768 station_ip 37.129.56.107 169768 port 410 169768 unique_id port 169768 remote_ip 10.8.1.142 169770 username hashtadani4 169770 mac 169770 bytes_out 0 169770 bytes_in 0 169770 station_ip 37.129.56.107 169770 port 410 169770 unique_id port 169770 remote_ip 10.8.1.142 169777 username hashtadani4 169777 mac 169777 bytes_out 0 169777 bytes_in 0 169777 station_ip 37.129.56.107 169777 port 410 169777 unique_id port 169777 remote_ip 10.8.1.142 169787 username hashtadani4 169787 mac 169787 bytes_out 0 169787 bytes_in 0 169787 station_ip 37.129.56.107 169787 port 414 169787 unique_id port 169787 remote_ip 10.8.1.142 169794 username hashtadani4 169794 mac 169794 bytes_out 0 169794 bytes_in 0 169794 station_ip 37.129.56.107 169794 port 790 169794 unique_id port 169794 remote_ip 10.8.0.182 169796 username hashtadani4 169796 mac 169796 bytes_out 0 169796 bytes_in 0 169796 station_ip 37.129.56.107 169796 port 790 169796 unique_id port 169796 remote_ip 10.8.0.182 169800 username hashtadani4 169800 mac 169800 bytes_out 0 169800 bytes_in 0 169800 station_ip 37.129.56.107 169800 port 790 169800 unique_id port 169800 remote_ip 10.8.0.182 169805 username hashtadani4 169805 mac 169805 bytes_out 0 169805 bytes_in 0 169805 station_ip 37.129.56.107 169805 port 414 169805 unique_id port 169805 remote_ip 10.8.1.142 169807 username hashtadani4 169807 mac 169807 bytes_out 0 169807 bytes_in 0 169807 station_ip 37.129.56.107 169807 port 794 169807 unique_id port 169807 remote_ip 10.8.0.182 169814 username hashtadani4 169814 mac 169814 bytes_out 0 169814 bytes_in 0 169814 station_ip 37.129.56.107 169814 port 798 169814 unique_id port 169814 remote_ip 10.8.0.182 169817 username hashtadani4 169817 mac 169817 bytes_out 0 169817 bytes_in 0 169817 station_ip 37.129.56.107 169817 port 790 169817 unique_id port 169817 remote_ip 10.8.0.182 169823 username barzegar 169823 mac 169823 bytes_out 0 169823 bytes_in 0 169823 station_ip 5.119.111.133 169823 port 798 169823 unique_id port 169823 remote_ip 10.8.0.234 169826 username hashtadani4 169826 mac 169826 bytes_out 0 169826 bytes_in 0 169826 station_ip 37.129.56.107 169826 port 790 169826 unique_id port 169826 remote_ip 10.8.0.182 169827 username hashtadani4 169827 mac 169827 bytes_out 0 169827 bytes_in 0 169827 station_ip 37.129.56.107 169827 port 790 169827 unique_id port 169827 remote_ip 10.8.0.182 169830 username forozandeh1 169830 kill_reason Another user logged on this global unique id 169830 mac 169830 bytes_out 0 169830 bytes_in 0 169830 station_ip 83.122.41.37 169830 port 785 169830 unique_id port 169830 remote_ip 10.8.0.130 169835 username hashtadani4 169835 mac 169835 bytes_out 0 169835 bytes_in 0 169835 station_ip 37.129.56.107 169835 port 798 169835 unique_id port 169769 remote_ip 10.8.0.182 169771 username hashtadani4 169771 mac 169771 bytes_out 0 169771 bytes_in 0 169771 station_ip 37.129.56.107 169771 port 802 169771 unique_id port 169771 remote_ip 10.8.0.182 169774 username hashtadani4 169774 mac 169774 bytes_out 0 169774 bytes_in 0 169774 station_ip 37.129.56.107 169774 port 802 169774 unique_id port 169774 remote_ip 10.8.0.182 169778 username hashtadani4 169778 mac 169778 bytes_out 0 169778 bytes_in 0 169778 station_ip 37.129.56.107 169778 port 798 169778 unique_id port 169778 remote_ip 10.8.0.182 169782 username hashtadani4 169782 mac 169782 bytes_out 0 169782 bytes_in 0 169782 station_ip 37.129.56.107 169782 port 798 169782 unique_id port 169782 remote_ip 10.8.0.182 169784 username sabaghnezhad 169784 mac 169784 bytes_out 117698 169784 bytes_in 198134 169784 station_ip 113.203.10.155 169784 port 785 169784 unique_id port 169784 remote_ip 10.8.0.186 169785 username hashtadani4 169785 mac 169785 bytes_out 0 169785 bytes_in 0 169785 station_ip 37.129.56.107 169785 port 414 169785 unique_id port 169785 remote_ip 10.8.1.142 169788 username hashtadani4 169788 mac 169788 bytes_out 0 169788 bytes_in 0 169788 station_ip 37.129.56.107 169788 port 785 169788 unique_id port 169788 remote_ip 10.8.0.182 169790 username hashtadani4 169790 mac 169790 bytes_out 0 169790 bytes_in 0 169790 station_ip 37.129.56.107 169790 port 785 169790 unique_id port 169790 remote_ip 10.8.0.182 169792 username barzegar 169792 mac 169792 bytes_out 0 169792 bytes_in 0 169792 station_ip 5.119.111.133 169792 port 790 169792 unique_id port 169792 remote_ip 10.8.0.234 169797 username hashtadani4 169797 mac 169797 bytes_out 0 169797 bytes_in 0 169797 station_ip 37.129.56.107 169797 port 414 169797 unique_id port 169797 remote_ip 10.8.1.142 169801 username hashtadani4 169801 mac 169801 bytes_out 0 169801 bytes_in 0 169801 station_ip 37.129.56.107 169801 port 414 169801 unique_id port 169801 remote_ip 10.8.1.142 169803 username hashtadani4 169803 mac 169803 bytes_out 0 169803 bytes_in 0 169803 station_ip 37.129.56.107 169803 port 414 169803 unique_id port 169803 remote_ip 10.8.1.142 169808 username hashtadani4 169808 mac 169808 bytes_out 0 169808 bytes_in 0 169808 station_ip 37.129.56.107 169808 port 794 169808 unique_id port 169808 remote_ip 10.8.0.182 169809 username hashtadani4 169809 mac 169809 bytes_out 0 169809 bytes_in 0 169809 station_ip 37.129.56.107 169809 port 410 169809 unique_id port 169809 remote_ip 10.8.1.142 169811 username alipour 169811 mac 169811 bytes_out 3132009 169811 bytes_in 34982299 169811 station_ip 83.123.97.113 169811 port 803 169811 unique_id port 169811 remote_ip 10.8.0.102 169812 username hashtadani4 169812 mac 169812 bytes_out 0 169812 bytes_in 0 169812 station_ip 37.129.56.107 169812 port 410 169812 unique_id port 169812 remote_ip 10.8.1.142 169815 username houshang 169815 mac 169815 bytes_out 134503 169815 bytes_in 262123 169815 station_ip 5.120.51.207 169815 port 790 169815 unique_id port 169815 remote_ip 10.8.0.134 169818 username hashtadani4 169818 mac 169818 bytes_out 0 169818 bytes_in 0 169818 station_ip 37.129.56.107 169818 port 410 169818 unique_id port 169818 remote_ip 10.8.1.142 169820 username hashtadani4 169820 mac 169820 bytes_out 0 169820 bytes_in 0 169820 station_ip 37.129.56.107 169820 port 410 169820 unique_id port 169820 remote_ip 10.8.1.142 169799 bytes_in 0 169799 station_ip 37.129.56.107 169799 port 414 169799 unique_id port 169799 remote_ip 10.8.1.142 169802 username hashtadani4 169802 mac 169802 bytes_out 0 169802 bytes_in 0 169802 station_ip 37.129.56.107 169802 port 790 169802 unique_id port 169802 remote_ip 10.8.0.182 169804 username hashtadani4 169804 mac 169804 bytes_out 0 169804 bytes_in 0 169804 station_ip 37.129.56.107 169804 port 794 169804 unique_id port 169804 remote_ip 10.8.0.182 169806 username sabaghnezhad 169806 mac 169806 bytes_out 12455 169806 bytes_in 17287 169806 station_ip 37.129.222.95 169806 port 410 169806 unique_id port 169806 remote_ip 10.8.1.130 169810 username hashtadani4 169810 mac 169810 bytes_out 0 169810 bytes_in 0 169810 station_ip 37.129.56.107 169810 port 794 169810 unique_id port 169810 remote_ip 10.8.0.182 169813 username hashtadani4 169813 mac 169813 bytes_out 0 169813 bytes_in 0 169813 station_ip 37.129.56.107 169813 port 798 169813 unique_id port 169813 remote_ip 10.8.0.182 169816 username hashtadani4 169816 mac 169816 bytes_out 0 169816 bytes_in 0 169816 station_ip 37.129.56.107 169816 port 410 169816 unique_id port 169816 remote_ip 10.8.1.142 169819 username hashtadani4 169819 mac 169819 bytes_out 0 169819 bytes_in 0 169819 station_ip 37.129.56.107 169819 port 790 169819 unique_id port 169819 remote_ip 10.8.0.182 169822 username hashtadani4 169822 mac 169822 bytes_out 0 169822 bytes_in 0 169822 station_ip 37.129.56.107 169822 port 410 169822 unique_id port 169822 remote_ip 10.8.1.142 169824 username hashtadani4 169824 mac 169824 bytes_out 0 169824 bytes_in 0 169824 station_ip 37.129.56.107 169824 port 790 169824 unique_id port 169824 remote_ip 10.8.0.182 169825 username hashtadani4 169825 mac 169825 bytes_out 0 169825 bytes_in 0 169825 station_ip 37.129.56.107 169825 port 410 169825 unique_id port 169825 remote_ip 10.8.1.142 169832 username hashtadani4 169832 mac 169832 bytes_out 0 169832 bytes_in 0 169832 station_ip 37.129.56.107 169832 port 790 169832 unique_id port 169832 remote_ip 10.8.0.182 169833 username hashtadani4 169833 mac 169833 bytes_out 0 169833 bytes_in 0 169833 station_ip 37.129.56.107 169833 port 410 169833 unique_id port 169833 remote_ip 10.8.1.142 169834 username hashtadani4 169834 mac 169834 bytes_out 0 169834 bytes_in 0 169834 station_ip 37.129.56.107 169834 port 410 169834 unique_id port 169834 remote_ip 10.8.1.142 169843 username hashtadani4 169843 mac 169843 bytes_out 0 169843 bytes_in 0 169843 station_ip 37.129.56.107 169843 port 790 169843 unique_id port 169843 remote_ip 10.8.0.182 169847 username hashtadani4 169847 mac 169847 bytes_out 0 169847 bytes_in 0 169847 station_ip 37.129.56.107 169847 port 414 169847 unique_id port 169847 remote_ip 10.8.1.142 169851 username hashtadani4 169851 mac 169851 bytes_out 0 169851 bytes_in 0 169851 station_ip 37.129.56.107 169851 port 414 169851 unique_id port 169851 remote_ip 10.8.1.142 169854 username hashtadani4 169854 mac 169854 bytes_out 0 169854 bytes_in 0 169854 station_ip 37.129.56.107 169854 port 414 169854 unique_id port 169854 remote_ip 10.8.1.142 169855 username hashtadani4 169855 mac 169855 bytes_out 0 169855 bytes_in 0 169855 station_ip 37.129.56.107 169855 port 790 169855 unique_id port 169855 remote_ip 10.8.0.182 169858 username hashtadani4 169858 mac 169858 bytes_out 0 169858 bytes_in 0 169821 username hashtadani4 169821 mac 169821 bytes_out 0 169821 bytes_in 0 169821 station_ip 37.129.56.107 169821 port 790 169821 unique_id port 169821 remote_ip 10.8.0.182 169828 username hashtadani4 169828 mac 169828 bytes_out 0 169828 bytes_in 0 169828 station_ip 37.129.56.107 169828 port 410 169828 unique_id port 169828 remote_ip 10.8.1.142 169829 username hashtadani4 169829 mac 169829 bytes_out 0 169829 bytes_in 0 169829 station_ip 37.129.56.107 169829 port 790 169829 unique_id port 169829 remote_ip 10.8.0.182 169831 username barzegar 169831 mac 169831 bytes_out 0 169831 bytes_in 0 169831 station_ip 5.119.111.133 169831 port 798 169831 unique_id port 169831 remote_ip 10.8.0.234 169837 username hashtadani4 169837 mac 169837 bytes_out 0 169837 bytes_in 0 169837 station_ip 37.129.56.107 169837 port 798 169837 unique_id port 169837 remote_ip 10.8.0.182 169839 username hashtadani4 169839 mac 169839 bytes_out 0 169839 bytes_in 0 169839 station_ip 37.129.56.107 169839 port 410 169839 unique_id port 169839 remote_ip 10.8.1.142 169840 username hashtadani4 169840 mac 169840 bytes_out 0 169840 bytes_in 0 169840 station_ip 37.129.56.107 169840 port 790 169840 unique_id port 169840 remote_ip 10.8.0.182 169842 username hashtadani4 169842 mac 169842 bytes_out 0 169842 bytes_in 0 169842 station_ip 37.129.56.107 169842 port 790 169842 unique_id port 169842 remote_ip 10.8.0.182 169845 username hashtadani4 169845 mac 169845 bytes_out 0 169845 bytes_in 0 169845 station_ip 37.129.56.107 169845 port 414 169845 unique_id port 169845 remote_ip 10.8.1.142 169846 username hashtadani4 169846 mac 169846 bytes_out 0 169846 bytes_in 0 169846 station_ip 37.129.56.107 169846 port 790 169846 unique_id port 169846 remote_ip 10.8.0.182 169849 username hashtadani4 169849 mac 169849 bytes_out 0 169849 bytes_in 0 169849 station_ip 37.129.56.107 169849 port 414 169849 unique_id port 169849 remote_ip 10.8.1.142 169850 username hashtadani4 169850 mac 169850 bytes_out 0 169850 bytes_in 0 169850 station_ip 37.129.56.107 169850 port 790 169850 unique_id port 169850 remote_ip 10.8.0.182 169853 username hashtadani4 169853 mac 169853 bytes_out 0 169853 bytes_in 0 169853 station_ip 37.129.56.107 169853 port 790 169853 unique_id port 169853 remote_ip 10.8.0.182 169857 username hashtadani4 169857 mac 169857 bytes_out 0 169857 bytes_in 0 169857 station_ip 37.129.56.107 169857 port 790 169857 unique_id port 169857 remote_ip 10.8.0.182 169864 username hashtadani4 169864 mac 169864 bytes_out 0 169864 bytes_in 0 169864 station_ip 37.129.56.107 169864 port 414 169864 unique_id port 169864 remote_ip 10.8.1.142 169866 username hashtadani4 169866 mac 169866 bytes_out 0 169866 bytes_in 0 169866 station_ip 37.129.56.107 169866 port 798 169866 unique_id port 169866 remote_ip 10.8.0.182 169868 username hashtadani4 169868 mac 169868 bytes_out 0 169868 bytes_in 0 169868 station_ip 37.129.56.107 169868 port 798 169868 unique_id port 169868 remote_ip 10.8.0.182 169875 username hashtadani4 169875 mac 169875 bytes_out 0 169875 bytes_in 0 169875 station_ip 37.129.56.107 169875 port 798 169875 unique_id port 169875 remote_ip 10.8.0.182 169876 username hashtadani4 169876 mac 169876 bytes_out 0 169876 bytes_in 0 169876 station_ip 37.129.56.107 169876 port 798 169876 unique_id port 169876 remote_ip 10.8.0.182 169880 username hashtadani4 169880 mac 169835 remote_ip 10.8.0.182 169836 username hashtadani4 169836 mac 169836 bytes_out 0 169836 bytes_in 0 169836 station_ip 37.129.56.107 169836 port 410 169836 unique_id port 169836 remote_ip 10.8.1.142 169838 username godarzi 169838 mac 169838 bytes_out 52150 169838 bytes_in 95734 169838 station_ip 5.119.46.130 169838 port 790 169838 unique_id port 169838 remote_ip 10.8.0.174 169841 username hashtadani4 169841 mac 169841 bytes_out 0 169841 bytes_in 0 169841 station_ip 37.129.56.107 169841 port 414 169841 unique_id port 169841 remote_ip 10.8.1.142 169844 username hashtadani4 169844 mac 169844 bytes_out 0 169844 bytes_in 0 169844 station_ip 37.129.56.107 169844 port 790 169844 unique_id port 169844 remote_ip 10.8.0.182 169848 username hashtadani4 169848 mac 169848 bytes_out 0 169848 bytes_in 0 169848 station_ip 37.129.56.107 169848 port 790 169848 unique_id port 169848 remote_ip 10.8.0.182 169852 username hashtadani4 169852 mac 169852 bytes_out 0 169852 bytes_in 0 169852 station_ip 37.129.56.107 169852 port 790 169852 unique_id port 169852 remote_ip 10.8.0.182 169856 username hashtadani4 169856 mac 169856 bytes_out 0 169856 bytes_in 0 169856 station_ip 37.129.56.107 169856 port 414 169856 unique_id port 169856 remote_ip 10.8.1.142 169861 username hashtadani4 169861 mac 169861 bytes_out 0 169861 bytes_in 0 169861 station_ip 37.129.56.107 169861 port 798 169861 unique_id port 169861 remote_ip 10.8.0.182 169863 username hashtadani4 169863 mac 169863 bytes_out 0 169863 bytes_in 0 169863 station_ip 37.129.56.107 169863 port 798 169863 unique_id port 169863 remote_ip 10.8.0.182 169867 username hashtadani4 169867 mac 169867 bytes_out 0 169867 bytes_in 0 169867 station_ip 37.129.56.107 169867 port 414 169867 unique_id port 169867 remote_ip 10.8.1.142 169870 username hashtadani4 169870 mac 169870 bytes_out 0 169870 bytes_in 0 169870 station_ip 37.129.56.107 169870 port 798 169870 unique_id port 169870 remote_ip 10.8.0.182 169871 username hashtadani4 169871 mac 169871 bytes_out 0 169871 bytes_in 0 169871 station_ip 37.129.56.107 169871 port 414 169871 unique_id port 169871 remote_ip 10.8.1.142 169872 username hashtadani4 169872 mac 169872 bytes_out 0 169872 bytes_in 0 169872 station_ip 37.129.56.107 169872 port 798 169872 unique_id port 169872 remote_ip 10.8.0.182 169879 username hashtadani4 169879 mac 169879 bytes_out 0 169879 bytes_in 0 169879 station_ip 37.129.56.107 169879 port 414 169879 unique_id port 169879 remote_ip 10.8.1.142 169882 username hashtadani4 169882 mac 169882 bytes_out 0 169882 bytes_in 0 169882 station_ip 37.129.56.107 169882 port 794 169882 unique_id port 169882 remote_ip 10.8.0.182 169884 username hashtadani4 169884 mac 169884 bytes_out 0 169884 bytes_in 0 169884 station_ip 37.129.56.107 169884 port 414 169884 unique_id port 169884 remote_ip 10.8.1.142 169887 username hashtadani4 169887 mac 169887 bytes_out 0 169887 bytes_in 0 169887 station_ip 37.129.56.107 169887 port 794 169887 unique_id port 169887 remote_ip 10.8.0.182 169888 username forozandeh1 169888 mac 169888 bytes_out 0 169888 bytes_in 0 169888 station_ip 83.122.41.37 169888 port 785 169888 unique_id port 169891 username hashtadani4 169891 mac 169891 bytes_out 0 169891 bytes_in 0 169891 station_ip 37.129.56.107 169891 port 414 169891 unique_id port 169891 remote_ip 10.8.1.142 169895 username hashtadani4 169895 mac 169858 station_ip 37.129.56.107 169858 port 414 169858 unique_id port 169858 remote_ip 10.8.1.142 169859 username hashtadani4 169859 mac 169859 bytes_out 0 169859 bytes_in 0 169859 station_ip 37.129.56.107 169859 port 790 169859 unique_id port 169859 remote_ip 10.8.0.182 169860 username hashtadani4 169860 mac 169860 bytes_out 0 169860 bytes_in 0 169860 station_ip 37.129.56.107 169860 port 414 169860 unique_id port 169860 remote_ip 10.8.1.142 169862 username hashtadani4 169862 mac 169862 bytes_out 0 169862 bytes_in 0 169862 station_ip 37.129.56.107 169862 port 414 169862 unique_id port 169862 remote_ip 10.8.1.142 169865 username godarzi 169865 mac 169865 bytes_out 0 169865 bytes_in 0 169865 station_ip 5.119.46.130 169865 port 790 169865 unique_id port 169865 remote_ip 10.8.0.174 169869 username hashtadani4 169869 mac 169869 bytes_out 0 169869 bytes_in 0 169869 station_ip 37.129.56.107 169869 port 414 169869 unique_id port 169869 remote_ip 10.8.1.142 169873 username barzegar 169873 kill_reason Another user logged on this global unique id 169873 mac 169873 bytes_out 0 169873 bytes_in 0 169873 station_ip 5.119.111.133 169873 port 410 169873 unique_id port 169873 remote_ip 10.8.1.174 169874 username alipour 169874 mac 169874 bytes_out 51255 169874 bytes_in 165900 169874 station_ip 83.123.242.110 169874 port 794 169874 unique_id port 169874 remote_ip 10.8.0.102 169877 username hashtadani4 169877 mac 169877 bytes_out 0 169877 bytes_in 0 169877 station_ip 37.129.56.107 169877 port 798 169877 unique_id port 169877 remote_ip 10.8.0.182 169878 username alipour 169878 mac 169878 bytes_out 0 169878 bytes_in 0 169878 station_ip 83.123.87.90 169878 port 794 169878 unique_id port 169878 remote_ip 10.8.0.102 169881 username hashtadani4 169881 mac 169881 bytes_out 0 169881 bytes_in 0 169881 station_ip 37.129.56.107 169881 port 414 169881 unique_id port 169881 remote_ip 10.8.1.142 169883 username hashtadani4 169883 mac 169883 bytes_out 0 169883 bytes_in 0 169883 station_ip 37.129.56.107 169883 port 794 169883 unique_id port 169883 remote_ip 10.8.0.182 169886 username hashtadani4 169886 mac 169886 bytes_out 0 169886 bytes_in 0 169886 station_ip 37.129.56.107 169886 port 414 169886 unique_id port 169886 remote_ip 10.8.1.142 169890 username hashtadani4 169890 mac 169890 bytes_out 0 169890 bytes_in 0 169890 station_ip 37.129.56.107 169890 port 785 169890 unique_id port 169890 remote_ip 10.8.0.182 169894 username hashtadani4 169894 mac 169894 bytes_out 0 169894 bytes_in 0 169894 station_ip 37.129.56.107 169894 port 785 169894 unique_id port 169894 remote_ip 10.8.0.182 169898 username hashtadani4 169898 mac 169898 bytes_out 0 169898 bytes_in 0 169898 station_ip 37.129.56.107 169898 port 785 169898 unique_id port 169898 remote_ip 10.8.0.182 169904 username houshang 169904 mac 169904 bytes_out 0 169904 bytes_in 0 169904 station_ip 5.120.51.207 169904 port 790 169904 unique_id port 169904 remote_ip 10.8.0.134 169911 username hashtadani4 169911 mac 169911 bytes_out 0 169911 bytes_in 0 169911 station_ip 37.129.56.107 169911 port 414 169911 unique_id port 169911 remote_ip 10.8.1.142 169915 username hashtadani4 169915 mac 169915 bytes_out 0 169915 bytes_in 0 169915 station_ip 37.129.56.107 169915 port 414 169915 unique_id port 169915 remote_ip 10.8.1.142 169917 username hashtadani4 169917 mac 169917 bytes_out 0 169917 bytes_in 0 169880 bytes_out 0 169880 bytes_in 0 169880 station_ip 37.129.56.107 169880 port 794 169880 unique_id port 169880 remote_ip 10.8.0.182 169885 username hashtadani4 169885 mac 169885 bytes_out 0 169885 bytes_in 0 169885 station_ip 37.129.56.107 169885 port 794 169885 unique_id port 169885 remote_ip 10.8.0.182 169889 username hashtadani4 169889 mac 169889 bytes_out 0 169889 bytes_in 0 169889 station_ip 37.129.56.107 169889 port 414 169889 unique_id port 169889 remote_ip 10.8.1.142 169892 username hashtadani4 169892 mac 169892 bytes_out 0 169892 bytes_in 0 169892 station_ip 37.129.56.107 169892 port 785 169892 unique_id port 169892 remote_ip 10.8.0.182 169893 username hashtadani4 169893 mac 169893 bytes_out 0 169893 bytes_in 0 169893 station_ip 37.129.56.107 169893 port 414 169893 unique_id port 169893 remote_ip 10.8.1.142 169896 username hashtadani4 169896 mac 169896 bytes_out 0 169896 bytes_in 0 169896 station_ip 37.129.56.107 169896 port 785 169896 unique_id port 169896 remote_ip 10.8.0.182 169897 username hashtadani4 169897 mac 169897 bytes_out 0 169897 bytes_in 0 169897 station_ip 37.129.56.107 169897 port 414 169897 unique_id port 169897 remote_ip 10.8.1.142 169900 username hashtadani4 169900 mac 169900 bytes_out 0 169900 bytes_in 0 169900 station_ip 37.129.56.107 169900 port 785 169900 unique_id port 169900 remote_ip 10.8.0.182 169902 username hashtadani4 169902 mac 169902 bytes_out 0 169902 bytes_in 0 169902 station_ip 37.129.56.107 169902 port 785 169902 unique_id port 169902 remote_ip 10.8.0.182 169903 username hashtadani4 169903 mac 169903 bytes_out 0 169903 bytes_in 0 169903 station_ip 37.129.56.107 169903 port 414 169903 unique_id port 169903 remote_ip 10.8.1.142 169906 username hashtadani4 169906 mac 169906 bytes_out 0 169906 bytes_in 0 169906 station_ip 37.129.56.107 169906 port 414 169906 unique_id port 169906 remote_ip 10.8.1.142 169909 username hashtadani4 169909 mac 169909 bytes_out 0 169909 bytes_in 0 169909 station_ip 37.129.56.107 169909 port 414 169909 unique_id port 169909 remote_ip 10.8.1.142 169910 username hashtadani4 169910 mac 169910 bytes_out 0 169910 bytes_in 0 169910 station_ip 37.129.56.107 169910 port 790 169910 unique_id port 169910 remote_ip 10.8.0.182 169914 username hashtadani4 169914 mac 169914 bytes_out 0 169914 bytes_in 0 169914 station_ip 37.129.56.107 169914 port 790 169914 unique_id port 169914 remote_ip 10.8.0.182 169925 username hashtadani4 169925 mac 169925 bytes_out 0 169925 bytes_in 0 169925 station_ip 37.129.56.107 169925 port 802 169925 unique_id port 169925 remote_ip 10.8.0.182 169926 username hashtadani4 169926 mac 169926 bytes_out 0 169926 bytes_in 0 169926 station_ip 37.129.56.107 169926 port 414 169926 unique_id port 169926 remote_ip 10.8.1.142 169929 username hashtadani4 169929 mac 169929 bytes_out 0 169929 bytes_in 0 169929 station_ip 37.129.56.107 169929 port 803 169929 unique_id port 169929 remote_ip 10.8.0.182 169931 username hashtadani4 169931 mac 169931 bytes_out 0 169931 bytes_in 0 169931 station_ip 37.129.56.107 169931 port 802 169931 unique_id port 169931 remote_ip 10.8.0.182 169935 username hashtadani4 169935 mac 169935 bytes_out 0 169935 bytes_in 0 169935 station_ip 37.129.56.107 169935 port 802 169935 unique_id port 169935 remote_ip 10.8.0.182 169936 username hashtadani4 169936 mac 169936 bytes_out 0 169936 bytes_in 0 169895 bytes_out 0 169895 bytes_in 0 169895 station_ip 37.129.56.107 169895 port 414 169895 unique_id port 169895 remote_ip 10.8.1.142 169899 username hashtadani4 169899 mac 169899 bytes_out 0 169899 bytes_in 0 169899 station_ip 37.129.56.107 169899 port 414 169899 unique_id port 169899 remote_ip 10.8.1.142 169901 username hashtadani4 169901 mac 169901 bytes_out 0 169901 bytes_in 0 169901 station_ip 37.129.56.107 169901 port 414 169901 unique_id port 169901 remote_ip 10.8.1.142 169905 username hashtadani4 169905 mac 169905 bytes_out 0 169905 bytes_in 0 169905 station_ip 37.129.56.107 169905 port 794 169905 unique_id port 169905 remote_ip 10.8.0.182 169907 username barzegar 169907 kill_reason Another user logged on this global unique id 169907 mac 169907 bytes_out 0 169907 bytes_in 0 169907 station_ip 5.119.111.133 169907 port 410 169907 unique_id port 169908 username hashtadani4 169908 mac 169908 bytes_out 0 169908 bytes_in 0 169908 station_ip 37.129.56.107 169908 port 790 169908 unique_id port 169908 remote_ip 10.8.0.182 169912 username hashtadani4 169912 mac 169912 bytes_out 0 169912 bytes_in 0 169912 station_ip 37.129.56.107 169912 port 790 169912 unique_id port 169912 remote_ip 10.8.0.182 169913 username hashtadani4 169913 mac 169913 bytes_out 0 169913 bytes_in 0 169913 station_ip 37.129.56.107 169913 port 414 169913 unique_id port 169913 remote_ip 10.8.1.142 169916 username hashtadani4 169916 mac 169916 bytes_out 0 169916 bytes_in 0 169916 station_ip 37.129.56.107 169916 port 790 169916 unique_id port 169916 remote_ip 10.8.0.182 169918 username hashtadani4 169918 mac 169918 bytes_out 0 169918 bytes_in 0 169918 station_ip 37.129.56.107 169918 port 794 169918 unique_id port 169918 remote_ip 10.8.0.182 169920 username hashtadani4 169920 mac 169920 bytes_out 0 169920 bytes_in 0 169920 station_ip 37.129.56.107 169920 port 410 169920 unique_id port 169920 remote_ip 10.8.1.142 169923 username hashtadani4 169923 mac 169923 bytes_out 0 169923 bytes_in 0 169923 station_ip 37.129.56.107 169923 port 802 169923 unique_id port 169923 remote_ip 10.8.0.182 169924 username hashtadani4 169924 mac 169924 bytes_out 0 169924 bytes_in 0 169924 station_ip 37.129.56.107 169924 port 414 169924 unique_id port 169924 remote_ip 10.8.1.142 169932 username barzegar 169932 kill_reason Maximum check online fails reached 169932 mac 169932 bytes_out 0 169932 bytes_in 0 169932 station_ip 5.119.111.133 169932 port 410 169932 unique_id port 169934 username hashtadani4 169934 mac 169934 bytes_out 0 169934 bytes_in 0 169934 station_ip 37.129.56.107 169934 port 414 169934 unique_id port 169934 remote_ip 10.8.1.142 169938 username hashtadani4 169938 mac 169938 bytes_out 0 169938 bytes_in 0 169938 station_ip 37.129.56.107 169938 port 414 169938 unique_id port 169938 remote_ip 10.8.1.142 169944 username hashtadani4 169944 mac 169944 bytes_out 0 169944 bytes_in 0 169944 station_ip 37.129.56.107 169944 port 414 169944 unique_id port 169944 remote_ip 10.8.1.142 169945 username hashtadani4 169945 mac 169945 bytes_out 0 169945 bytes_in 0 169945 station_ip 37.129.56.107 169945 port 802 169945 unique_id port 169945 remote_ip 10.8.0.182 169951 username hashtadani4 169951 mac 169951 bytes_out 0 169951 bytes_in 0 169951 station_ip 37.129.56.107 169951 port 414 169951 unique_id port 169951 remote_ip 10.8.1.142 169952 username hashtadani4 169952 mac 169952 bytes_out 0 169917 station_ip 37.129.56.107 169917 port 414 169917 unique_id port 169917 remote_ip 10.8.1.142 169919 username barzegar 169919 mac 169919 bytes_out 0 169919 bytes_in 0 169919 station_ip 5.119.111.133 169919 port 410 169919 unique_id port 169921 username hashtadani4 169921 mac 169921 bytes_out 0 169921 bytes_in 0 169921 station_ip 37.129.56.107 169921 port 794 169921 unique_id port 169921 remote_ip 10.8.0.182 169922 username hashtadani4 169922 mac 169922 bytes_out 0 169922 bytes_in 0 169922 station_ip 37.129.56.107 169922 port 410 169922 unique_id port 169922 remote_ip 10.8.1.142 169927 username hashtadani4 169927 mac 169927 bytes_out 0 169927 bytes_in 0 169927 station_ip 37.129.56.107 169927 port 802 169927 unique_id port 169927 remote_ip 10.8.0.182 169928 username hashtadani4 169928 mac 169928 bytes_out 0 169928 bytes_in 0 169928 station_ip 37.129.56.107 169928 port 802 169928 unique_id port 169928 remote_ip 10.8.0.182 169930 username hashtadani4 169930 mac 169930 bytes_out 0 169930 bytes_in 0 169930 station_ip 37.129.56.107 169930 port 414 169930 unique_id port 169930 remote_ip 10.8.1.142 169933 username hashtadani4 169933 mac 169933 bytes_out 0 169933 bytes_in 0 169933 station_ip 37.129.56.107 169933 port 803 169933 unique_id port 169933 remote_ip 10.8.0.182 169937 username hashtadani4 169937 mac 169937 bytes_out 0 169937 bytes_in 0 169937 station_ip 37.129.56.107 169937 port 802 169937 unique_id port 169937 remote_ip 10.8.0.182 169941 username hashtadani4 169941 mac 169941 bytes_out 0 169941 bytes_in 0 169941 station_ip 37.129.56.107 169941 port 802 169941 unique_id port 169941 remote_ip 10.8.0.182 169943 username hashtadani4 169943 mac 169943 bytes_out 0 169943 bytes_in 0 169943 station_ip 37.129.56.107 169943 port 414 169943 unique_id port 169943 remote_ip 10.8.1.142 169947 username hashtadani4 169947 mac 169947 bytes_out 0 169947 bytes_in 0 169947 station_ip 37.129.56.107 169947 port 802 169947 unique_id port 169947 remote_ip 10.8.0.182 169950 username hashtadani4 169950 mac 169950 bytes_out 0 169950 bytes_in 0 169950 station_ip 37.129.56.107 169950 port 794 169950 unique_id port 169950 remote_ip 10.8.0.182 169954 username hashtadani4 169954 mac 169954 bytes_out 0 169954 bytes_in 0 169954 station_ip 37.129.56.107 169954 port 414 169954 unique_id port 169954 remote_ip 10.8.1.142 169958 username hashtadani4 169958 mac 169958 bytes_out 0 169958 bytes_in 0 169958 station_ip 37.129.56.107 169958 port 794 169958 unique_id port 169958 remote_ip 10.8.0.182 169964 username hashtadani4 169964 mac 169964 bytes_out 0 169964 bytes_in 0 169964 station_ip 37.129.56.107 169964 port 794 169964 unique_id port 169964 remote_ip 10.8.0.182 169966 username hashtadani4 169966 mac 169966 bytes_out 0 169966 bytes_in 0 169966 station_ip 37.129.56.107 169966 port 414 169966 unique_id port 169966 remote_ip 10.8.1.142 169968 username hashtadani4 169968 mac 169968 bytes_out 0 169968 bytes_in 0 169968 station_ip 37.129.56.107 169968 port 414 169968 unique_id port 169968 remote_ip 10.8.1.142 169974 username barzegar 169974 mac 169974 bytes_out 0 169974 bytes_in 0 169974 station_ip 5.119.111.133 169974 port 790 169974 unique_id port 169974 remote_ip 10.8.0.234 169976 username hashtadani4 169976 mac 169976 bytes_out 0 169976 bytes_in 0 169976 station_ip 37.129.56.107 169976 port 415 169976 unique_id port 169936 station_ip 37.129.56.107 169936 port 414 169936 unique_id port 169936 remote_ip 10.8.1.142 169939 username hashtadani4 169939 mac 169939 bytes_out 0 169939 bytes_in 0 169939 station_ip 37.129.56.107 169939 port 802 169939 unique_id port 169939 remote_ip 10.8.0.182 169940 username hashtadani4 169940 mac 169940 bytes_out 0 169940 bytes_in 0 169940 station_ip 37.129.56.107 169940 port 414 169940 unique_id port 169940 remote_ip 10.8.1.142 169942 username shadkam 169942 mac 169942 bytes_out 0 169942 bytes_in 0 169942 station_ip 37.129.129.37 169942 port 794 169942 unique_id port 169942 remote_ip 10.8.0.62 169946 username hashtadani4 169946 mac 169946 bytes_out 0 169946 bytes_in 0 169946 station_ip 37.129.56.107 169946 port 414 169946 unique_id port 169946 remote_ip 10.8.1.142 169948 username barzegar 169948 mac 169948 bytes_out 0 169948 bytes_in 0 169948 station_ip 5.119.111.133 169948 port 794 169948 unique_id port 169948 remote_ip 10.8.0.234 169949 username hashtadani4 169949 mac 169949 bytes_out 0 169949 bytes_in 0 169949 station_ip 37.129.56.107 169949 port 414 169949 unique_id port 169949 remote_ip 10.8.1.142 169953 username hashtadani4 169953 mac 169953 bytes_out 0 169953 bytes_in 0 169953 station_ip 37.129.56.107 169953 port 794 169953 unique_id port 169953 remote_ip 10.8.0.182 169956 username malekpoir 169956 kill_reason Another user logged on this global unique id 169956 mac 169956 bytes_out 0 169956 bytes_in 0 169956 station_ip 5.119.6.116 169956 port 785 169956 unique_id port 169956 remote_ip 10.8.0.58 169957 username hashtadani4 169957 mac 169957 bytes_out 0 169957 bytes_in 0 169957 station_ip 37.129.56.107 169957 port 414 169957 unique_id port 169957 remote_ip 10.8.1.142 169960 username hashtadani4 169960 mac 169960 bytes_out 0 169960 bytes_in 0 169960 station_ip 37.129.56.107 169960 port 794 169960 unique_id port 169960 remote_ip 10.8.0.182 169961 username hashtadani4 169961 mac 169961 bytes_out 0 169961 bytes_in 0 169961 station_ip 37.129.56.107 169961 port 414 169961 unique_id port 169961 remote_ip 10.8.1.142 169963 username jafari 169963 kill_reason Another user logged on this global unique id 169963 mac 169963 bytes_out 0 169963 bytes_in 0 169963 station_ip 37.137.18.243 169963 port 803 169963 unique_id port 169963 remote_ip 10.8.0.242 169970 username hashtadani4 169970 mac 169970 bytes_out 0 169970 bytes_in 0 169970 station_ip 37.129.56.107 169970 port 414 169970 unique_id port 169970 remote_ip 10.8.1.142 169971 username hashtadani4 169971 mac 169971 bytes_out 0 169971 bytes_in 0 169971 station_ip 37.129.56.107 169971 port 790 169971 unique_id port 169971 remote_ip 10.8.0.182 169973 username hashtadani4 169973 mac 169973 bytes_out 0 169973 bytes_in 0 169973 station_ip 37.129.56.107 169973 port 794 169973 unique_id port 169973 remote_ip 10.8.0.182 169975 username hashtadani4 169975 mac 169975 bytes_out 0 169975 bytes_in 0 169975 station_ip 37.129.56.107 169975 port 794 169975 unique_id port 169975 remote_ip 10.8.0.182 169984 username hashtadani4 169984 mac 169984 bytes_out 0 169984 bytes_in 0 169984 station_ip 37.129.56.107 169984 port 794 169984 unique_id port 169984 remote_ip 10.8.0.182 169986 username barzegar 169986 mac 169986 bytes_out 0 169986 bytes_in 0 169986 station_ip 5.119.111.133 169986 port 790 169986 unique_id port 169986 remote_ip 10.8.0.234 169989 username hashtadani4 169989 mac 169989 bytes_out 0 169952 bytes_in 0 169952 station_ip 37.129.56.107 169952 port 414 169952 unique_id port 169952 remote_ip 10.8.1.142 169955 username hashtadani4 169955 mac 169955 bytes_out 0 169955 bytes_in 0 169955 station_ip 37.129.56.107 169955 port 794 169955 unique_id port 169955 remote_ip 10.8.0.182 169959 username hashtadani4 169959 mac 169959 bytes_out 0 169959 bytes_in 0 169959 station_ip 37.129.56.107 169959 port 414 169959 unique_id port 169959 remote_ip 10.8.1.142 169962 username mehdizare 169962 mac 169962 bytes_out 130790 169962 bytes_in 143700 169962 station_ip 37.129.99.175 169962 port 806 169962 unique_id port 169962 remote_ip 10.8.0.90 169965 username houshang 169965 mac 169965 bytes_out 1580344 169965 bytes_in 26677692 169965 station_ip 5.120.51.207 169965 port 790 169965 unique_id port 169965 remote_ip 10.8.0.134 169967 username hashtadani4 169967 mac 169967 bytes_out 0 169967 bytes_in 0 169967 station_ip 37.129.56.107 169967 port 790 169967 unique_id port 169967 remote_ip 10.8.0.182 169969 username hashtadani4 169969 mac 169969 bytes_out 0 169969 bytes_in 0 169969 station_ip 37.129.56.107 169969 port 790 169969 unique_id port 169969 remote_ip 10.8.0.182 169972 username hashtadani4 169972 mac 169972 bytes_out 0 169972 bytes_in 0 169972 station_ip 37.129.56.107 169972 port 415 169972 unique_id port 169972 remote_ip 10.8.1.142 169977 username hashtadani4 169977 mac 169977 bytes_out 0 169977 bytes_in 0 169977 station_ip 37.129.56.107 169977 port 790 169977 unique_id port 169977 remote_ip 10.8.0.182 169979 username barzegar 169979 mac 169979 bytes_out 0 169979 bytes_in 0 169979 station_ip 5.119.111.133 169979 port 790 169979 unique_id port 169979 remote_ip 10.8.0.234 169982 username hashtadani4 169982 mac 169982 bytes_out 0 169982 bytes_in 0 169982 station_ip 37.129.56.107 169982 port 790 169982 unique_id port 169982 remote_ip 10.8.0.182 169983 username hashtadani4 169983 mac 169983 bytes_out 0 169983 bytes_in 0 169983 station_ip 37.129.56.107 169983 port 415 169983 unique_id port 169983 remote_ip 10.8.1.142 169985 username jafari 169985 mac 169985 bytes_out 0 169985 bytes_in 0 169985 station_ip 37.137.18.243 169985 port 803 169985 unique_id port 169988 username alipour 169988 mac 169988 bytes_out 0 169988 bytes_in 0 169988 station_ip 83.122.33.3 169988 port 798 169988 unique_id port 169988 remote_ip 10.8.0.102 169990 username barzegar 169990 mac 169990 bytes_out 0 169990 bytes_in 0 169990 station_ip 5.119.111.133 169990 port 790 169990 unique_id port 169990 remote_ip 10.8.0.234 169994 username hashtadani4 169994 mac 169994 bytes_out 0 169994 bytes_in 0 169994 station_ip 37.129.56.107 169994 port 794 169994 unique_id port 169994 remote_ip 10.8.0.182 169998 username hashtadani4 169998 mac 169998 bytes_out 0 169998 bytes_in 0 169998 station_ip 37.129.56.107 169998 port 794 169998 unique_id port 169998 remote_ip 10.8.0.182 170002 username barzegar 170002 mac 170002 bytes_out 0 170002 bytes_in 0 170002 station_ip 5.119.111.133 170002 port 790 170002 unique_id port 170002 remote_ip 10.8.0.234 170004 username hashtadani4 170004 mac 170004 bytes_out 0 170004 bytes_in 0 170004 station_ip 37.129.56.107 170004 port 798 170004 unique_id port 170004 remote_ip 10.8.0.182 170005 username hashtadani4 170005 mac 170005 bytes_out 0 170005 bytes_in 0 170005 station_ip 37.129.56.107 170005 port 414 169976 remote_ip 10.8.1.142 169978 username hashtadani4 169978 mac 169978 bytes_out 0 169978 bytes_in 0 169978 station_ip 37.129.56.107 169978 port 794 169978 unique_id port 169978 remote_ip 10.8.0.182 169980 username mehdizare 169980 mac 169980 bytes_out 7055 169980 bytes_in 15300 169980 station_ip 37.129.99.175 169980 port 414 169980 unique_id port 169980 remote_ip 10.8.1.42 169981 username hashtadani4 169981 mac 169981 bytes_out 0 169981 bytes_in 0 169981 station_ip 37.129.56.107 169981 port 415 169981 unique_id port 169981 remote_ip 10.8.1.142 169987 username hashtadani4 169987 mac 169987 bytes_out 0 169987 bytes_in 0 169987 station_ip 37.129.56.107 169987 port 415 169987 unique_id port 169987 remote_ip 10.8.1.142 169992 username hashtadani4 169992 mac 169992 bytes_out 0 169992 bytes_in 0 169992 station_ip 37.129.56.107 169992 port 790 169992 unique_id port 169992 remote_ip 10.8.0.182 169993 username hashtadani4 169993 mac 169993 bytes_out 0 169993 bytes_in 0 169993 station_ip 37.129.56.107 169993 port 416 169993 unique_id port 169993 remote_ip 10.8.1.142 169996 username hashtadani4 169996 mac 169996 bytes_out 0 169996 bytes_in 0 169996 station_ip 37.129.56.107 169996 port 794 169996 unique_id port 169996 remote_ip 10.8.0.182 169997 username hashtadani4 169997 mac 169997 bytes_out 0 169997 bytes_in 0 169997 station_ip 37.129.56.107 169997 port 416 169997 unique_id port 169997 remote_ip 10.8.1.142 170000 username hashtadani4 170000 mac 170000 bytes_out 0 170000 bytes_in 0 170000 station_ip 37.129.56.107 170000 port 794 170000 unique_id port 170000 remote_ip 10.8.0.182 170001 username mehdizare 170001 mac 170001 bytes_out 18640 170001 bytes_in 17516 170001 station_ip 113.203.3.68 170001 port 415 170001 unique_id port 170001 remote_ip 10.8.1.42 170008 username hashtadani4 170008 mac 170008 bytes_out 0 170008 bytes_in 0 170008 station_ip 37.129.56.107 170008 port 803 170008 unique_id port 170008 remote_ip 10.8.0.182 170010 username hashtadani4 170010 mac 170010 bytes_out 0 170010 bytes_in 0 170010 station_ip 37.129.56.107 170010 port 803 170010 unique_id port 170010 remote_ip 10.8.0.182 170013 username meysam 170013 kill_reason Another user logged on this global unique id 170013 mac 170013 bytes_out 0 170013 bytes_in 0 170013 station_ip 188.158.51.35 170013 port 790 170013 unique_id port 170013 remote_ip 10.8.0.110 170017 username hashtadani4 170017 mac 170017 bytes_out 0 170017 bytes_in 0 170017 station_ip 37.129.56.107 170017 port 798 170017 unique_id port 170017 remote_ip 10.8.0.182 170022 username hashtadani4 170022 mac 170022 bytes_out 0 170022 bytes_in 0 170022 station_ip 37.129.56.107 170022 port 414 170022 unique_id port 170022 remote_ip 10.8.1.142 170024 username khademi 170024 mac 170024 bytes_out 0 170024 bytes_in 0 170024 station_ip 37.129.48.146 170024 port 787 170024 unique_id port 170024 remote_ip 10.8.0.10 170027 username hashtadani4 170027 mac 170027 bytes_out 0 170027 bytes_in 0 170027 station_ip 37.129.56.107 170027 port 787 170027 unique_id port 170027 remote_ip 10.8.0.182 170031 username hashtadani4 170031 mac 170031 bytes_out 0 170031 bytes_in 0 170031 station_ip 37.129.56.107 170031 port 414 170031 unique_id port 170031 remote_ip 10.8.1.142 170035 username hashtadani4 170035 mac 170035 bytes_out 0 170035 bytes_in 0 170035 station_ip 37.129.56.107 170035 port 798 170035 unique_id port 169989 bytes_in 0 169989 station_ip 37.129.56.107 169989 port 794 169989 unique_id port 169989 remote_ip 10.8.0.182 169991 username hashtadani4 169991 mac 169991 bytes_out 0 169991 bytes_in 0 169991 station_ip 37.129.56.107 169991 port 415 169991 unique_id port 169991 remote_ip 10.8.1.142 169995 username hashtadani4 169995 mac 169995 bytes_out 0 169995 bytes_in 0 169995 station_ip 37.129.56.107 169995 port 416 169995 unique_id port 169995 remote_ip 10.8.1.142 169999 username hashtadani4 169999 mac 169999 bytes_out 0 169999 bytes_in 0 169999 station_ip 37.129.56.107 169999 port 794 169999 unique_id port 169999 remote_ip 10.8.0.182 170003 username alipour 170003 mac 170003 bytes_out 47118 170003 bytes_in 64322 170003 station_ip 83.122.33.3 170003 port 414 170003 unique_id port 170003 remote_ip 10.8.1.50 170007 username hashtadani4 170007 mac 170007 bytes_out 0 170007 bytes_in 0 170007 station_ip 37.129.56.107 170007 port 414 170007 unique_id port 170007 remote_ip 10.8.1.142 170011 username barzegar 170011 mac 170011 bytes_out 0 170011 bytes_in 0 170011 station_ip 5.119.111.133 170011 port 414 170011 unique_id port 170011 remote_ip 10.8.1.174 170012 username hashtadani4 170012 mac 170012 bytes_out 0 170012 bytes_in 0 170012 station_ip 37.129.56.107 170012 port 414 170012 unique_id port 170012 remote_ip 10.8.1.142 170015 username hashtadani4 170015 mac 170015 bytes_out 0 170015 bytes_in 0 170015 station_ip 37.129.56.107 170015 port 414 170015 unique_id port 170015 remote_ip 10.8.1.142 170019 username hashtadani4 170019 mac 170019 bytes_out 0 170019 bytes_in 0 170019 station_ip 37.129.56.107 170019 port 798 170019 unique_id port 170019 remote_ip 10.8.0.182 170021 username barzegar 170021 mac 170021 bytes_out 0 170021 bytes_in 0 170021 station_ip 5.119.111.133 170021 port 798 170021 unique_id port 170021 remote_ip 10.8.0.234 170026 username hashtadani4 170026 mac 170026 bytes_out 0 170026 bytes_in 0 170026 station_ip 37.129.56.107 170026 port 414 170026 unique_id port 170026 remote_ip 10.8.1.142 170028 username barzegar 170028 mac 170028 bytes_out 0 170028 bytes_in 0 170028 station_ip 5.119.111.133 170028 port 798 170028 unique_id port 170028 remote_ip 10.8.0.234 170029 username hashtadani4 170029 mac 170029 bytes_out 0 170029 bytes_in 0 170029 station_ip 37.129.56.107 170029 port 787 170029 unique_id port 170029 remote_ip 10.8.0.182 170033 username hashtadani4 170033 mac 170033 bytes_out 0 170033 bytes_in 0 170033 station_ip 37.129.56.107 170033 port 798 170033 unique_id port 170033 remote_ip 10.8.0.182 170040 username hashtadani4 170040 mac 170040 bytes_out 0 170040 bytes_in 0 170040 station_ip 37.129.56.107 170040 port 798 170040 unique_id port 170040 remote_ip 10.8.0.182 170041 username hashtadani4 170041 mac 170041 bytes_out 0 170041 bytes_in 0 170041 station_ip 37.129.56.107 170041 port 415 170041 unique_id port 170041 remote_ip 10.8.1.142 170042 username hashtadani4 170042 mac 170042 bytes_out 0 170042 bytes_in 0 170042 station_ip 37.129.56.107 170042 port 807 170042 unique_id port 170042 remote_ip 10.8.0.182 170045 username mehdizare 170045 mac 170045 bytes_out 0 170045 bytes_in 0 170045 station_ip 83.123.127.102 170045 port 806 170045 unique_id port 170045 remote_ip 10.8.0.90 170047 username hashtadani4 170047 mac 170047 bytes_out 0 170047 bytes_in 0 170047 station_ip 37.129.56.107 170005 unique_id port 170005 remote_ip 10.8.1.142 170006 username hashtadani4 170006 mac 170006 bytes_out 0 170006 bytes_in 0 170006 station_ip 37.129.56.107 170006 port 803 170006 unique_id port 170006 remote_ip 10.8.0.182 170009 username hashtadani4 170009 mac 170009 bytes_out 0 170009 bytes_in 0 170009 station_ip 37.129.56.107 170009 port 414 170009 unique_id port 170009 remote_ip 10.8.1.142 170014 username hashtadani4 170014 mac 170014 bytes_out 0 170014 bytes_in 0 170014 station_ip 37.129.56.107 170014 port 803 170014 unique_id port 170014 remote_ip 10.8.0.182 170016 username vanila 170016 mac 170016 bytes_out 0 170016 bytes_in 0 170016 station_ip 83.122.170.190 170016 port 798 170016 unique_id port 170016 remote_ip 10.8.0.178 170018 username hashtadani4 170018 mac 170018 bytes_out 0 170018 bytes_in 0 170018 station_ip 37.129.56.107 170018 port 414 170018 unique_id port 170018 remote_ip 10.8.1.142 170020 username barzegar 170020 mac 170020 bytes_out 0 170020 bytes_in 0 170020 station_ip 5.119.111.133 170020 port 803 170020 unique_id port 170020 remote_ip 10.8.0.234 170023 username hashtadani4 170023 mac 170023 bytes_out 0 170023 bytes_in 0 170023 station_ip 37.129.56.107 170023 port 798 170023 unique_id port 170023 remote_ip 10.8.0.182 170025 username hashtadani4 170025 mac 170025 bytes_out 0 170025 bytes_in 0 170025 station_ip 37.129.56.107 170025 port 787 170025 unique_id port 170025 remote_ip 10.8.0.182 170030 username barzegar 170030 mac 170030 bytes_out 0 170030 bytes_in 0 170030 station_ip 5.119.111.133 170030 port 798 170030 unique_id port 170030 remote_ip 10.8.0.234 170032 username hashtadani4 170032 mac 170032 bytes_out 0 170032 bytes_in 0 170032 station_ip 37.129.56.107 170032 port 414 170032 unique_id port 170032 remote_ip 10.8.1.142 170034 username barzegar 170034 mac 170034 bytes_out 0 170034 bytes_in 0 170034 station_ip 5.119.111.133 170034 port 803 170034 unique_id port 170034 remote_ip 10.8.0.234 170038 username hashtadani4 170038 mac 170038 bytes_out 0 170038 bytes_in 0 170038 station_ip 37.129.56.107 170038 port 807 170038 unique_id port 170038 remote_ip 10.8.0.182 170039 username hashtadani4 170039 mac 170039 bytes_out 0 170039 bytes_in 0 170039 station_ip 37.129.56.107 170039 port 415 170039 unique_id port 170039 remote_ip 10.8.1.142 170044 username hashtadani4 170044 mac 170044 bytes_out 0 170044 bytes_in 0 170044 station_ip 37.129.56.107 170044 port 807 170044 unique_id port 170044 remote_ip 10.8.0.182 170048 username hashtadani4 170048 mac 170048 bytes_out 0 170048 bytes_in 0 170048 station_ip 37.129.56.107 170048 port 787 170048 unique_id port 170048 remote_ip 10.8.0.182 170049 username hashtadani4 170049 mac 170049 bytes_out 0 170049 bytes_in 0 170049 station_ip 37.129.56.107 170049 port 415 170049 unique_id port 170049 remote_ip 10.8.1.142 170051 username sedighe 170051 mac 170051 bytes_out 0 170051 bytes_in 0 170051 station_ip 37.129.88.67 170051 port 803 170051 unique_id port 170051 remote_ip 10.8.0.146 170060 username alipour 170060 mac 170060 bytes_out 148736 170060 bytes_in 1660374 170060 station_ip 37.129.52.27 170060 port 802 170060 unique_id port 170060 remote_ip 10.8.0.102 170062 username barzegar 170062 mac 170062 bytes_out 0 170062 bytes_in 0 170062 station_ip 5.119.111.133 170062 port 414 170062 unique_id port 170062 remote_ip 10.8.1.174 170035 remote_ip 10.8.0.182 170036 username hashtadani4 170036 mac 170036 bytes_out 0 170036 bytes_in 0 170036 station_ip 37.129.56.107 170036 port 803 170036 unique_id port 170036 remote_ip 10.8.0.182 170037 username barzegar 170037 mac 170037 bytes_out 0 170037 bytes_in 0 170037 station_ip 5.119.111.133 170037 port 798 170037 unique_id port 170037 remote_ip 10.8.0.234 170043 username hashtadani4 170043 mac 170043 bytes_out 0 170043 bytes_in 0 170043 station_ip 37.129.56.107 170043 port 415 170043 unique_id port 170043 remote_ip 10.8.1.142 170046 username vanila 170046 mac 170046 bytes_out 0 170046 bytes_in 0 170046 station_ip 83.122.170.190 170046 port 787 170046 unique_id port 170046 remote_ip 10.8.0.178 170052 username godarzi 170052 mac 170052 bytes_out 0 170052 bytes_in 0 170052 station_ip 5.119.46.130 170052 port 798 170052 unique_id port 170052 remote_ip 10.8.0.174 170054 username hashtadani4 170054 mac 170054 bytes_out 0 170054 bytes_in 0 170054 station_ip 37.129.56.107 170054 port 803 170054 unique_id port 170054 remote_ip 10.8.0.182 170056 username hashtadani4 170056 mac 170056 bytes_out 0 170056 bytes_in 0 170056 station_ip 37.129.56.107 170056 port 787 170056 unique_id port 170056 remote_ip 10.8.0.182 170058 username mosi 170058 mac 170058 bytes_out 0 170058 bytes_in 0 170058 station_ip 89.47.137.38 170058 port 797 170058 unique_id port 170065 username hashtadani4 170065 mac 170065 bytes_out 0 170065 bytes_in 0 170065 station_ip 37.129.56.107 170065 port 787 170065 unique_id port 170065 remote_ip 10.8.0.182 170067 username hashtadani4 170067 mac 170067 bytes_out 0 170067 bytes_in 0 170067 station_ip 37.129.56.107 170067 port 414 170067 unique_id port 170067 remote_ip 10.8.1.142 170068 username hashtadani4 170068 mac 170068 bytes_out 0 170068 bytes_in 0 170068 station_ip 37.129.56.107 170068 port 787 170068 unique_id port 170068 remote_ip 10.8.0.182 170069 username hashtadani4 170069 mac 170069 bytes_out 0 170069 bytes_in 0 170069 station_ip 37.129.56.107 170069 port 414 170069 unique_id port 170069 remote_ip 10.8.1.142 170073 username hashtadani4 170073 mac 170073 bytes_out 0 170073 bytes_in 0 170073 station_ip 37.129.56.107 170073 port 414 170073 unique_id port 170073 remote_ip 10.8.1.142 170075 username hashtadani4 170075 mac 170075 bytes_out 0 170075 bytes_in 0 170075 station_ip 37.129.56.107 170075 port 785 170075 unique_id port 170075 remote_ip 10.8.0.182 170076 username hashtadani4 170076 mac 170076 bytes_out 0 170076 bytes_in 0 170076 station_ip 37.129.56.107 170076 port 414 170076 unique_id port 170076 remote_ip 10.8.1.142 170077 username hashtadani4 170077 mac 170077 bytes_out 0 170077 bytes_in 0 170077 station_ip 37.129.56.107 170077 port 790 170077 unique_id port 170077 remote_ip 10.8.0.182 170082 username hashtadani4 170082 mac 170082 bytes_out 0 170082 bytes_in 0 170082 station_ip 37.129.56.107 170082 port 414 170082 unique_id port 170082 remote_ip 10.8.1.142 170084 username hashtadani4 170084 mac 170084 bytes_out 0 170084 bytes_in 0 170084 station_ip 37.129.56.107 170084 port 414 170084 unique_id port 170084 remote_ip 10.8.1.142 170089 username hashtadani4 170089 mac 170089 bytes_out 0 170089 bytes_in 0 170089 station_ip 37.129.56.107 170089 port 794 170089 unique_id port 170089 remote_ip 10.8.0.182 170091 username hashtadani4 170091 mac 170047 port 415 170047 unique_id port 170047 remote_ip 10.8.1.142 170050 username hashtadani4 170050 mac 170050 bytes_out 0 170050 bytes_in 0 170050 station_ip 37.129.56.107 170050 port 806 170050 unique_id port 170050 remote_ip 10.8.0.182 170053 username hashtadani4 170053 mac 170053 bytes_out 391826 170053 bytes_in 5892002 170053 station_ip 37.129.56.107 170053 port 415 170053 unique_id port 170053 remote_ip 10.8.1.142 170055 username mohammadjavad 170055 mac 170055 bytes_out 434832 170055 bytes_in 6149776 170055 station_ip 83.122.108.8 170055 port 787 170055 unique_id port 170055 remote_ip 10.8.0.142 170057 username meysam 170057 kill_reason Another user logged on this global unique id 170057 mac 170057 bytes_out 0 170057 bytes_in 0 170057 station_ip 188.158.51.35 170057 port 790 170057 unique_id port 170059 username barzegar 170059 mac 170059 bytes_out 400891 170059 bytes_in 2022445 170059 station_ip 5.119.111.133 170059 port 414 170059 unique_id port 170059 remote_ip 10.8.1.174 170061 username hashtadani4 170061 mac 170061 bytes_out 0 170061 bytes_in 0 170061 station_ip 37.129.56.107 170061 port 415 170061 unique_id port 170061 remote_ip 10.8.1.142 170064 username hashtadani4 170064 mac 170064 bytes_out 0 170064 bytes_in 0 170064 station_ip 37.129.56.107 170064 port 414 170064 unique_id port 170064 remote_ip 10.8.1.142 170066 username mehdizare 170066 mac 170066 bytes_out 12929 170066 bytes_in 23050 170066 station_ip 83.122.62.39 170066 port 807 170066 unique_id port 170066 remote_ip 10.8.0.90 170071 username meysam 170071 mac 170071 bytes_out 0 170071 bytes_in 0 170071 station_ip 188.158.51.35 170071 port 790 170071 unique_id port 170074 username malekpoir 170074 mac 170074 bytes_out 0 170074 bytes_in 0 170074 station_ip 5.119.6.116 170074 port 785 170074 unique_id port 170079 username hashtadani4 170079 mac 170079 bytes_out 0 170079 bytes_in 0 170079 station_ip 37.129.56.107 170079 port 414 170079 unique_id port 170079 remote_ip 10.8.1.142 170081 username hashtadani4 170081 mac 170081 bytes_out 0 170081 bytes_in 0 170081 station_ip 37.129.56.107 170081 port 790 170081 unique_id port 170081 remote_ip 10.8.0.182 170083 username hashtadani4 170083 mac 170083 bytes_out 0 170083 bytes_in 0 170083 station_ip 37.129.56.107 170083 port 790 170083 unique_id port 170083 remote_ip 10.8.0.182 170087 username hashtadani4 170087 mac 170087 bytes_out 0 170087 bytes_in 0 170087 station_ip 37.129.56.107 170087 port 794 170087 unique_id port 170087 remote_ip 10.8.0.182 170088 username hashtadani4 170088 mac 170088 bytes_out 0 170088 bytes_in 0 170088 station_ip 37.129.56.107 170088 port 414 170088 unique_id port 170088 remote_ip 10.8.1.142 170093 username shadkam 170093 mac 170093 bytes_out 19182 170093 bytes_in 83534 170093 station_ip 37.129.66.221 170093 port 790 170093 unique_id port 170093 remote_ip 10.8.0.62 170094 username hashtadani4 170094 mac 170094 bytes_out 0 170094 bytes_in 0 170094 station_ip 37.129.56.107 170094 port 414 170094 unique_id port 170094 remote_ip 10.8.1.142 170106 username hashtadani4 170106 mac 170106 bytes_out 0 170106 bytes_in 0 170106 station_ip 37.129.56.107 170106 port 797 170106 unique_id port 170106 remote_ip 10.8.0.182 170108 username mehdizare 170108 mac 170108 bytes_out 0 170108 bytes_in 0 170108 station_ip 83.122.248.245 170108 port 415 170108 unique_id port 170108 remote_ip 10.8.1.42 170063 username hashtadani4 170063 mac 170063 bytes_out 0 170063 bytes_in 0 170063 station_ip 37.129.56.107 170063 port 787 170063 unique_id port 170063 remote_ip 10.8.0.182 170070 username hashtadani4 170070 mac 170070 bytes_out 0 170070 bytes_in 0 170070 station_ip 37.129.56.107 170070 port 787 170070 unique_id port 170070 remote_ip 10.8.0.182 170072 username barzegar 170072 mac 170072 bytes_out 0 170072 bytes_in 0 170072 station_ip 5.119.111.133 170072 port 787 170072 unique_id port 170072 remote_ip 10.8.0.234 170078 username hashtadani4 170078 mac 170078 bytes_out 0 170078 bytes_in 0 170078 station_ip 37.129.56.107 170078 port 797 170078 unique_id port 170078 remote_ip 10.8.0.182 170080 username saeed9658 170080 mac 170080 bytes_out 0 170080 bytes_in 0 170080 station_ip 5.119.176.146 170080 port 794 170080 unique_id port 170080 remote_ip 10.8.0.166 170085 username hashtadani4 170085 mac 170085 bytes_out 0 170085 bytes_in 0 170085 station_ip 37.129.56.107 170085 port 414 170085 unique_id port 170085 remote_ip 10.8.1.142 170086 username hashtadani4 170086 mac 170086 bytes_out 0 170086 bytes_in 0 170086 station_ip 37.129.56.107 170086 port 794 170086 unique_id port 170086 remote_ip 10.8.0.182 170090 username malekpoir 170090 mac 170090 bytes_out 13470 170090 bytes_in 13465 170090 station_ip 5.119.6.116 170090 port 785 170090 unique_id port 170090 remote_ip 10.8.0.58 170098 username hashtadani4 170098 mac 170098 bytes_out 0 170098 bytes_in 0 170098 station_ip 37.129.56.107 170098 port 790 170098 unique_id port 170098 remote_ip 10.8.0.182 170099 username hashtadani4 170099 mac 170099 bytes_out 0 170099 bytes_in 0 170099 station_ip 37.129.56.107 170099 port 790 170099 unique_id port 170099 remote_ip 10.8.0.182 170101 username hashtadani4 170101 mac 170101 bytes_out 0 170101 bytes_in 0 170101 station_ip 37.129.56.107 170101 port 802 170101 unique_id port 170101 remote_ip 10.8.0.182 170102 username kalantary 170102 mac 170102 bytes_out 725351 170102 bytes_in 5086511 170102 station_ip 37.129.38.109 170102 port 785 170102 unique_id port 170102 remote_ip 10.8.0.98 170104 username shadkam 170104 mac 170104 bytes_out 0 170104 bytes_in 0 170104 station_ip 83.122.148.156 170104 port 803 170104 unique_id port 170104 remote_ip 10.8.0.62 170105 username moradi 170105 mac 170105 bytes_out 173985 170105 bytes_in 5326062 170105 station_ip 46.225.214.110 170105 port 797 170105 unique_id port 170105 remote_ip 10.8.0.126 170111 username hashtadani4 170111 mac 170111 bytes_out 0 170111 bytes_in 0 170111 station_ip 37.129.56.107 170111 port 414 170111 unique_id port 170111 remote_ip 10.8.1.142 170112 username hashtadani4 170112 mac 170112 bytes_out 0 170112 bytes_in 0 170112 station_ip 37.129.56.107 170112 port 414 170112 unique_id port 170112 remote_ip 10.8.1.142 170117 username hashtadani4 170117 mac 170117 bytes_out 0 170117 bytes_in 0 170117 station_ip 37.129.56.107 170117 port 797 170117 unique_id port 170117 remote_ip 10.8.0.182 170119 username moradi 170119 mac 170119 bytes_out 31926 170119 bytes_in 49591 170119 station_ip 46.225.210.147 170119 port 785 170119 unique_id port 170119 remote_ip 10.8.0.126 170121 username hashtadani4 170121 mac 170121 bytes_out 0 170121 bytes_in 0 170121 station_ip 37.129.56.107 170121 port 785 170121 unique_id port 170121 remote_ip 10.8.0.182 170123 username hashtadani4 170123 mac 170091 bytes_out 0 170091 bytes_in 0 170091 station_ip 37.129.56.107 170091 port 414 170091 unique_id port 170091 remote_ip 10.8.1.142 170092 username hashtadani4 170092 mac 170092 bytes_out 0 170092 bytes_in 0 170092 station_ip 37.129.56.107 170092 port 785 170092 unique_id port 170092 remote_ip 10.8.0.182 170095 username hashtadani4 170095 mac 170095 bytes_out 0 170095 bytes_in 0 170095 station_ip 37.129.56.107 170095 port 785 170095 unique_id port 170095 remote_ip 10.8.0.182 170096 username hashtadani4 170096 mac 170096 bytes_out 0 170096 bytes_in 0 170096 station_ip 37.129.56.107 170096 port 414 170096 unique_id port 170096 remote_ip 10.8.1.142 170097 username hashtadani4 170097 mac 170097 bytes_out 0 170097 bytes_in 0 170097 station_ip 37.129.56.107 170097 port 414 170097 unique_id port 170097 remote_ip 10.8.1.142 170100 username hashtadani4 170100 mac 170100 bytes_out 0 170100 bytes_in 0 170100 station_ip 37.129.56.107 170100 port 802 170100 unique_id port 170100 remote_ip 10.8.0.182 170103 username barzegar 170103 mac 170103 bytes_out 0 170103 bytes_in 0 170103 station_ip 5.119.111.133 170103 port 802 170103 unique_id port 170103 remote_ip 10.8.0.234 170107 username hashtadani4 170107 mac 170107 bytes_out 0 170107 bytes_in 0 170107 station_ip 37.129.56.107 170107 port 414 170107 unique_id port 170107 remote_ip 10.8.1.142 170110 username hashtadani4 170110 mac 170110 bytes_out 0 170110 bytes_in 0 170110 station_ip 37.129.56.107 170110 port 797 170110 unique_id port 170110 remote_ip 10.8.0.182 170116 username hashtadani4 170116 mac 170116 bytes_out 0 170116 bytes_in 0 170116 station_ip 37.129.56.107 170116 port 414 170116 unique_id port 170116 remote_ip 10.8.1.142 170124 username hashtadani4 170124 mac 170124 bytes_out 0 170124 bytes_in 0 170124 station_ip 37.129.56.107 170124 port 797 170124 unique_id port 170124 remote_ip 10.8.0.182 170126 username hashtadani4 170126 mac 170126 bytes_out 0 170126 bytes_in 0 170126 station_ip 37.129.56.107 170126 port 785 170126 unique_id port 170126 remote_ip 10.8.0.182 170127 username hashtadani4 170127 mac 170127 bytes_out 0 170127 bytes_in 0 170127 station_ip 37.129.56.107 170127 port 785 170127 unique_id port 170127 remote_ip 10.8.0.182 170128 username yaghobi 170128 mac 170128 bytes_out 0 170128 bytes_in 0 170128 station_ip 83.123.33.156 170128 port 790 170128 unique_id port 170128 remote_ip 10.8.0.198 170131 username barzegar 170131 mac 170131 bytes_out 0 170131 bytes_in 0 170131 station_ip 5.119.111.133 170131 port 798 170131 unique_id port 170131 remote_ip 10.8.0.234 170132 username alipour 170132 mac 170132 bytes_out 0 170132 bytes_in 0 170132 station_ip 83.122.82.216 170132 port 798 170132 unique_id port 170132 remote_ip 10.8.0.102 170135 username hashtadani4 170135 mac 170135 bytes_out 0 170135 bytes_in 0 170135 station_ip 37.129.56.107 170135 port 785 170135 unique_id port 170135 remote_ip 10.8.0.182 170137 username yaghobi 170137 mac 170137 bytes_out 0 170137 bytes_in 0 170137 station_ip 83.123.33.156 170137 port 802 170137 unique_id port 170137 remote_ip 10.8.0.198 170144 username pourshad 170144 mac 170144 bytes_out 0 170144 bytes_in 0 170144 station_ip 5.120.40.140 170144 port 785 170144 unique_id port 170144 remote_ip 10.8.0.18 170152 username saeed9658 170152 kill_reason Another user logged on this global unique id 170152 mac 170152 bytes_out 0 170109 username hashtadani4 170109 mac 170109 bytes_out 0 170109 bytes_in 0 170109 station_ip 37.129.56.107 170109 port 797 170109 unique_id port 170109 remote_ip 10.8.0.182 170113 username hashtadani4 170113 mac 170113 bytes_out 0 170113 bytes_in 0 170113 station_ip 37.129.56.107 170113 port 797 170113 unique_id port 170113 remote_ip 10.8.0.182 170114 username barzegar 170114 mac 170114 bytes_out 0 170114 bytes_in 0 170114 station_ip 5.119.111.133 170114 port 802 170114 unique_id port 170114 remote_ip 10.8.0.234 170115 username hashtadani4 170115 mac 170115 bytes_out 23133 170115 bytes_in 40718 170115 station_ip 37.129.56.107 170115 port 797 170115 unique_id port 170115 remote_ip 10.8.0.182 170118 username hashtadani4 170118 mac 170118 bytes_out 0 170118 bytes_in 0 170118 station_ip 37.129.56.107 170118 port 797 170118 unique_id port 170118 remote_ip 10.8.0.182 170120 username hashtadani4 170120 mac 170120 bytes_out 0 170120 bytes_in 0 170120 station_ip 37.129.56.107 170120 port 785 170120 unique_id port 170120 remote_ip 10.8.0.182 170122 username hashtadani4 170122 mac 170122 bytes_out 0 170122 bytes_in 0 170122 station_ip 37.129.56.107 170122 port 785 170122 unique_id port 170122 remote_ip 10.8.0.182 170125 username yaghobi 170125 mac 170125 bytes_out 1085496 170125 bytes_in 9971556 170125 station_ip 83.122.112.39 170125 port 790 170125 unique_id port 170125 remote_ip 10.8.0.198 170130 username godarzi 170130 mac 170130 bytes_out 1413496 170130 bytes_in 8578058 170130 station_ip 5.119.46.130 170130 port 798 170130 unique_id port 170130 remote_ip 10.8.0.174 170133 username hashtadani4 170133 mac 170133 bytes_out 0 170133 bytes_in 0 170133 station_ip 37.129.56.107 170133 port 785 170133 unique_id port 170133 remote_ip 10.8.0.182 170134 username hashtadani4 170134 mac 170134 bytes_out 0 170134 bytes_in 0 170134 station_ip 37.129.56.107 170134 port 415 170134 unique_id port 170134 remote_ip 10.8.1.142 170136 username hashtadani4 170136 mac 170136 bytes_out 0 170136 bytes_in 0 170136 station_ip 37.129.56.107 170136 port 785 170136 unique_id port 170136 remote_ip 10.8.0.182 170138 username hashtadani4 170138 mac 170138 bytes_out 0 170138 bytes_in 0 170138 station_ip 5.202.2.109 170138 port 785 170138 unique_id port 170138 remote_ip 10.8.0.182 170139 username barzegar 170139 mac 170139 bytes_out 0 170139 bytes_in 0 170139 station_ip 5.119.111.133 170139 port 415 170139 unique_id port 170139 remote_ip 10.8.1.174 170143 username forozandeh1 170143 mac 170143 bytes_out 0 170143 bytes_in 0 170143 station_ip 37.129.105.63 170143 port 787 170143 unique_id port 170143 remote_ip 10.8.0.130 170145 username kalantary 170145 mac 170145 bytes_out 0 170145 bytes_in 0 170145 station_ip 37.129.55.97 170145 port 790 170145 unique_id port 170145 remote_ip 10.8.0.98 170146 username forozandeh1 170146 mac 170146 bytes_out 0 170146 bytes_in 0 170146 station_ip 37.129.105.63 170146 port 802 170146 unique_id port 170146 remote_ip 10.8.0.130 170147 username pourshad 170147 mac 170147 bytes_out 14059 170147 bytes_in 25570 170147 station_ip 5.120.40.140 170147 port 415 170147 unique_id port 170147 remote_ip 10.8.1.154 170150 username malekpoir 170150 kill_reason Another user logged on this global unique id 170150 mac 170150 bytes_out 0 170150 bytes_in 0 170150 station_ip 5.119.6.116 170150 port 794 170150 unique_id port 170151 username forozandeh1 170123 bytes_out 0 170123 bytes_in 0 170123 station_ip 37.129.56.107 170123 port 785 170123 unique_id port 170123 remote_ip 10.8.0.182 170129 username malekpoir 170129 kill_reason Another user logged on this global unique id 170129 mac 170129 bytes_out 0 170129 bytes_in 0 170129 station_ip 5.119.6.116 170129 port 794 170129 unique_id port 170129 remote_ip 10.8.0.58 170140 username godarzi 170140 mac 170140 bytes_out 0 170140 bytes_in 0 170140 station_ip 5.119.46.130 170140 port 790 170140 unique_id port 170140 remote_ip 10.8.0.174 170141 username alipour 170141 mac 170141 bytes_out 265870 170141 bytes_in 2197358 170141 station_ip 83.122.82.216 170141 port 414 170141 unique_id port 170141 remote_ip 10.8.1.50 170142 username saeed9658 170142 kill_reason Another user logged on this global unique id 170142 mac 170142 bytes_out 0 170142 bytes_in 0 170142 station_ip 5.119.176.146 170142 port 797 170142 unique_id port 170142 remote_ip 10.8.0.166 170148 username hashtadani4 170148 mac 170148 bytes_out 0 170148 bytes_in 0 170148 station_ip 5.202.2.109 170148 port 785 170148 unique_id port 170148 remote_ip 10.8.0.182 170149 username alipour 170149 mac 170149 bytes_out 47296 170149 bytes_in 440863 170149 station_ip 83.122.82.216 170149 port 414 170149 unique_id port 170149 remote_ip 10.8.1.50 170155 username hashtadani4 170155 mac 170155 bytes_out 0 170155 bytes_in 0 170155 station_ip 5.202.2.109 170155 port 787 170155 unique_id port 170155 remote_ip 10.8.0.182 170157 username hashtadani4 170157 mac 170157 bytes_out 0 170157 bytes_in 0 170157 station_ip 5.202.2.109 170157 port 787 170157 unique_id port 170157 remote_ip 10.8.0.182 170161 username hashtadani4 170161 mac 170161 bytes_out 0 170161 bytes_in 0 170161 station_ip 5.202.2.109 170161 port 785 170161 unique_id port 170161 remote_ip 10.8.0.182 170164 username hashtadani4 170164 mac 170164 bytes_out 0 170164 bytes_in 0 170164 station_ip 5.202.2.109 170164 port 806 170164 unique_id port 170164 remote_ip 10.8.0.182 170166 username hashtadani4 170166 mac 170166 bytes_out 81379 170166 bytes_in 622199 170166 station_ip 83.122.133.213 170166 port 787 170166 unique_id port 170166 remote_ip 10.8.0.182 170167 username hashtadani4 170167 mac 170167 bytes_out 0 170167 bytes_in 0 170167 station_ip 83.122.133.213 170167 port 787 170167 unique_id port 170167 remote_ip 10.8.0.182 170170 username pourshad 170170 mac 170170 bytes_out 50037 170170 bytes_in 142822 170170 station_ip 5.120.40.140 170170 port 809 170170 unique_id port 170170 remote_ip 10.8.0.18 170172 username hashtadani4 170172 kill_reason Maximum check online fails reached 170172 mac 170172 bytes_out 0 170172 bytes_in 0 170172 station_ip 83.122.133.213 170172 port 787 170172 unique_id port 170175 username malekpoir 170175 kill_reason Another user logged on this global unique id 170175 mac 170175 bytes_out 0 170175 bytes_in 0 170175 station_ip 5.119.6.116 170175 port 794 170175 unique_id port 170176 username hashtadani4 170176 kill_reason Maximum check online fails reached 170176 mac 170176 bytes_out 0 170176 bytes_in 0 170176 station_ip 83.122.133.213 170176 port 809 170176 unique_id port 170181 username malekpoir 170181 kill_reason Another user logged on this global unique id 170181 mac 170181 bytes_out 0 170181 bytes_in 0 170181 station_ip 5.119.6.116 170181 port 794 170181 unique_id port 170183 username kalantary 170183 mac 170183 bytes_out 0 170183 bytes_in 0 170183 station_ip 37.129.42.121 170183 port 803 170183 unique_id port 170151 mac 170151 bytes_out 0 170151 bytes_in 0 170151 station_ip 37.129.105.63 170151 port 787 170151 unique_id port 170151 remote_ip 10.8.0.130 170162 username barzegar 170162 mac 170162 bytes_out 0 170162 bytes_in 0 170162 station_ip 5.119.111.133 170162 port 414 170162 unique_id port 170162 remote_ip 10.8.1.174 170173 username alipour 170173 mac 170173 bytes_out 119015 170173 bytes_in 357850 170173 station_ip 83.123.250.253 170173 port 790 170173 unique_id port 170173 remote_ip 10.8.0.102 170174 username alipour 170174 mac 170174 bytes_out 29319 170174 bytes_in 65531 170174 station_ip 83.123.250.253 170174 port 414 170174 unique_id port 170174 remote_ip 10.8.1.50 170178 username forozandeh1 170178 mac 170178 bytes_out 940012 170178 bytes_in 12942091 170178 station_ip 83.123.79.14 170178 port 808 170178 unique_id port 170178 remote_ip 10.8.0.130 170180 username shadkam 170180 mac 170180 bytes_out 109896 170180 bytes_in 1606369 170180 station_ip 83.123.230.216 170180 port 790 170180 unique_id port 170180 remote_ip 10.8.0.62 170182 username pourshad 170182 mac 170182 bytes_out 20814 170182 bytes_in 23676 170182 station_ip 5.120.40.140 170182 port 810 170182 unique_id port 170182 remote_ip 10.8.0.18 170187 username shadkam 170187 mac 170187 bytes_out 0 170187 bytes_in 0 170187 station_ip 83.123.230.216 170187 port 414 170187 unique_id port 170187 remote_ip 10.8.1.218 170189 username godarzi 170189 mac 170189 bytes_out 1116179 170189 bytes_in 14759284 170189 station_ip 5.119.46.130 170189 port 803 170189 unique_id port 170189 remote_ip 10.8.0.174 170190 username shadkam 170190 kill_reason Maximum number of concurrent logins reached 170190 mac 170190 bytes_out 0 170190 bytes_in 0 170190 station_ip 83.123.230.216 170190 port 415 170190 unique_id port 170192 username shadkam 170192 kill_reason Maximum check online fails reached 170192 mac 170192 bytes_out 0 170192 bytes_in 0 170192 station_ip 83.123.230.216 170192 port 414 170192 unique_id port 170196 username meysam 170196 mac 170196 bytes_out 0 170196 bytes_in 0 170196 station_ip 188.159.252.60 170196 port 806 170196 unique_id port 170196 remote_ip 10.8.0.110 170201 username pourshad 170201 mac 170201 bytes_out 0 170201 bytes_in 0 170201 station_ip 5.120.40.140 170201 port 415 170201 unique_id port 170201 remote_ip 10.8.1.154 170202 username pourshad 170202 mac 170202 bytes_out 10455 170202 bytes_in 18360 170202 station_ip 5.120.40.140 170202 port 415 170202 unique_id port 170202 remote_ip 10.8.1.154 170207 username moradi 170207 kill_reason Another user logged on this global unique id 170207 mac 170207 bytes_out 0 170207 bytes_in 0 170207 station_ip 46.225.214.94 170207 port 802 170207 unique_id port 170207 remote_ip 10.8.0.126 170215 username mirzaei 170215 kill_reason Another user logged on this global unique id 170215 mac 170215 bytes_out 0 170215 bytes_in 0 170215 station_ip 5.120.27.93 170215 port 784 170215 unique_id port 170219 username barzegar 170219 mac 170219 bytes_out 0 170219 bytes_in 0 170219 station_ip 5.119.111.133 170219 port 415 170219 unique_id port 170219 remote_ip 10.8.1.174 170221 username malekpoir 170221 mac 170221 bytes_out 0 170221 bytes_in 0 170221 station_ip 5.119.6.116 170221 port 794 170221 unique_id port 170222 username pourshad 170222 mac 170222 bytes_out 0 170222 bytes_in 0 170222 station_ip 5.120.40.140 170222 port 812 170222 unique_id port 170222 remote_ip 10.8.0.18 170224 username kalantary 170152 bytes_in 0 170152 station_ip 5.119.176.146 170152 port 797 170152 unique_id port 170153 username barzegar 170153 mac 170153 bytes_out 0 170153 bytes_in 0 170153 station_ip 5.119.111.133 170153 port 787 170153 unique_id port 170153 remote_ip 10.8.0.234 170154 username moradi 170154 mac 170154 bytes_out 0 170154 bytes_in 0 170154 station_ip 46.225.210.147 170154 port 798 170154 unique_id port 170154 remote_ip 10.8.0.126 170156 username malekpoir 170156 kill_reason Another user logged on this global unique id 170156 mac 170156 bytes_out 0 170156 bytes_in 0 170156 station_ip 5.119.6.116 170156 port 794 170156 unique_id port 170158 username saeed9658 170158 mac 170158 bytes_out 0 170158 bytes_in 0 170158 station_ip 5.119.176.146 170158 port 797 170158 unique_id port 170159 username hashtadani4 170159 mac 170159 bytes_out 277353 170159 bytes_in 3305193 170159 station_ip 5.202.2.109 170159 port 787 170159 unique_id port 170159 remote_ip 10.8.0.182 170160 username pourshad 170160 mac 170160 bytes_out 0 170160 bytes_in 0 170160 station_ip 5.120.40.140 170160 port 785 170160 unique_id port 170160 remote_ip 10.8.0.18 170163 username houshang 170163 mac 170163 bytes_out 72531 170163 bytes_in 79773 170163 station_ip 5.120.51.207 170163 port 787 170163 unique_id port 170163 remote_ip 10.8.0.134 170165 username malekpoir 170165 kill_reason Another user logged on this global unique id 170165 mac 170165 bytes_out 0 170165 bytes_in 0 170165 station_ip 5.119.6.116 170165 port 794 170165 unique_id port 170168 username hashtadani4 170168 mac 170168 bytes_out 0 170168 bytes_in 0 170168 station_ip 83.122.133.213 170168 port 414 170168 unique_id port 170168 remote_ip 10.8.1.142 170169 username hashtadani4 170169 mac 170169 bytes_out 0 170169 bytes_in 0 170169 station_ip 83.122.133.213 170169 port 414 170169 unique_id port 170169 remote_ip 10.8.1.142 170171 username hashtadani4 170171 kill_reason Maximum number of concurrent logins reached 170171 mac 170171 bytes_out 0 170171 bytes_in 0 170171 station_ip 83.122.133.213 170171 port 811 170171 unique_id port 170177 username vanila 170177 mac 170177 bytes_out 680240 170177 bytes_in 5761297 170177 station_ip 83.122.144.178 170177 port 797 170177 unique_id port 170177 remote_ip 10.8.0.178 170179 username alipour 170179 mac 170179 bytes_out 0 170179 bytes_in 0 170179 station_ip 83.123.250.253 170179 port 414 170179 unique_id port 170179 remote_ip 10.8.1.50 170186 username shadkam 170186 mac 170186 bytes_out 0 170186 bytes_in 0 170186 station_ip 83.123.230.216 170186 port 415 170186 unique_id port 170186 remote_ip 10.8.1.218 170188 username mohammadjavad 170188 mac 170188 bytes_out 792541 170188 bytes_in 13015378 170188 station_ip 113.203.81.151 170188 port 806 170188 unique_id port 170188 remote_ip 10.8.0.142 170191 username shadkam 170191 kill_reason Maximum check online fails reached 170191 mac 170191 bytes_out 0 170191 bytes_in 0 170191 station_ip 83.123.230.216 170191 port 803 170191 unique_id port 170193 username mirzaei 170193 kill_reason Another user logged on this global unique id 170193 mac 170193 bytes_out 0 170193 bytes_in 0 170193 station_ip 5.120.27.93 170193 port 784 170193 unique_id port 170197 username barzegar 170197 mac 170197 bytes_out 0 170197 bytes_in 0 170197 station_ip 5.119.111.133 170197 port 416 170197 unique_id port 170197 remote_ip 10.8.1.174 170198 username barzegar 170198 mac 170198 bytes_out 0 170198 bytes_in 0 170183 remote_ip 10.8.0.98 170184 username alipour 170184 mac 170184 bytes_out 49830 170184 bytes_in 67308 170184 station_ip 83.123.250.253 170184 port 414 170184 unique_id port 170184 remote_ip 10.8.1.50 170185 username barzegar 170185 mac 170185 bytes_out 0 170185 bytes_in 0 170185 station_ip 5.119.111.133 170185 port 414 170185 unique_id port 170185 remote_ip 10.8.1.174 170194 username mohammadjavad 170194 mac 170194 bytes_out 0 170194 bytes_in 0 170194 station_ip 83.122.235.99 170194 port 806 170194 unique_id port 170194 remote_ip 10.8.0.142 170195 username pourshad 170195 mac 170195 bytes_out 0 170195 bytes_in 0 170195 station_ip 5.120.40.140 170195 port 790 170195 unique_id port 170195 remote_ip 10.8.0.18 170205 username barzegar 170205 mac 170205 bytes_out 0 170205 bytes_in 0 170205 station_ip 5.119.111.133 170205 port 811 170205 unique_id port 170205 remote_ip 10.8.0.234 170206 username barzegar 170206 mac 170206 bytes_out 0 170206 bytes_in 0 170206 station_ip 5.119.111.133 170206 port 415 170206 unique_id port 170206 remote_ip 10.8.1.174 170208 username moradi 170208 mac 170208 bytes_out 0 170208 bytes_in 0 170208 station_ip 46.225.214.94 170208 port 802 170208 unique_id port 170209 username saeed9658 170209 mac 170209 bytes_out 583762 170209 bytes_in 2522865 170209 station_ip 5.119.176.146 170209 port 785 170209 unique_id port 170209 remote_ip 10.8.0.166 170211 username pourshad 170211 mac 170211 bytes_out 27872 170211 bytes_in 44671 170211 station_ip 5.120.40.140 170211 port 811 170211 unique_id port 170211 remote_ip 10.8.0.18 170213 username malekpoir 170213 kill_reason Another user logged on this global unique id 170213 mac 170213 bytes_out 0 170213 bytes_in 0 170213 station_ip 5.119.6.116 170213 port 794 170213 unique_id port 170214 username barzegar 170214 mac 170214 bytes_out 0 170214 bytes_in 0 170214 station_ip 5.119.111.133 170214 port 415 170214 unique_id port 170214 remote_ip 10.8.1.174 170223 username saeed9658 170223 mac 170223 bytes_out 393749 170223 bytes_in 2655192 170223 station_ip 5.119.176.146 170223 port 802 170223 unique_id port 170223 remote_ip 10.8.0.166 170233 username houshang 170233 mac 170233 bytes_out 0 170233 bytes_in 0 170233 station_ip 5.119.160.222 170233 port 802 170233 unique_id port 170242 username aminvpn 170242 mac 170242 bytes_out 0 170242 bytes_in 0 170242 station_ip 83.122.4.43 170242 port 806 170242 unique_id port 170242 remote_ip 10.8.0.14 170245 username komeil 170245 mac 170245 bytes_out 0 170245 bytes_in 0 170245 station_ip 113.203.54.94 170245 port 802 170245 unique_id port 170245 remote_ip 10.8.0.70 170248 username aminvpn 170248 mac 170248 bytes_out 0 170248 bytes_in 0 170248 station_ip 5.120.96.62 170248 port 812 170248 unique_id port 170248 remote_ip 10.8.0.14 170250 username aminvpn 170250 mac 170250 bytes_out 0 170250 bytes_in 0 170250 station_ip 83.122.4.43 170250 port 813 170250 unique_id port 170250 remote_ip 10.8.0.14 170253 username alipour 170253 mac 170253 bytes_out 0 170253 bytes_in 0 170253 station_ip 83.123.84.30 170253 port 797 170253 unique_id port 170253 remote_ip 10.8.0.102 170254 username alipour 170254 mac 170254 bytes_out 0 170254 bytes_in 0 170254 station_ip 83.123.107.131 170254 port 813 170254 unique_id port 170254 remote_ip 10.8.0.102 170256 username alipour 170256 mac 170256 bytes_out 0 170256 bytes_in 0 170198 station_ip 5.119.111.133 170198 port 416 170198 unique_id port 170198 remote_ip 10.8.1.174 170199 username barzegar 170199 mac 170199 bytes_out 0 170199 bytes_in 0 170199 station_ip 5.119.111.133 170199 port 810 170199 unique_id port 170199 remote_ip 10.8.0.234 170200 username pourshad 170200 mac 170200 bytes_out 28530 170200 bytes_in 52930 170200 station_ip 5.120.40.140 170200 port 415 170200 unique_id port 170200 remote_ip 10.8.1.154 170203 username kordestani 170203 mac 170203 bytes_out 0 170203 bytes_in 0 170203 station_ip 151.235.101.252 170203 port 807 170203 unique_id port 170203 remote_ip 10.8.0.74 170204 username kalantary 170204 mac 170204 bytes_out 161947 170204 bytes_in 732688 170204 station_ip 37.129.94.253 170204 port 810 170204 unique_id port 170204 remote_ip 10.8.0.98 170210 username tahmasebi 170210 mac 170210 bytes_out 3524401 170210 bytes_in 39075110 170210 station_ip 5.120.51.204 170210 port 806 170210 unique_id port 170210 remote_ip 10.8.0.42 170212 username barzegar 170212 mac 170212 bytes_out 0 170212 bytes_in 0 170212 station_ip 5.119.111.133 170212 port 415 170212 unique_id port 170212 remote_ip 10.8.1.174 170216 username pourshad 170216 mac 170216 bytes_out 0 170216 bytes_in 0 170216 station_ip 5.120.40.140 170216 port 416 170216 unique_id port 170216 remote_ip 10.8.1.154 170217 username mostafa_es78 170217 kill_reason Another user logged on this global unique id 170217 mac 170217 bytes_out 0 170217 bytes_in 0 170217 station_ip 37.129.182.62 170217 port 808 170217 unique_id port 170217 remote_ip 10.8.0.194 170218 username kalantary 170218 mac 170218 bytes_out 113610 170218 bytes_in 431230 170218 station_ip 37.129.82.101 170218 port 811 170218 unique_id port 170218 remote_ip 10.8.0.98 170220 username houshang 170220 mac 170220 bytes_out 2991455 170220 bytes_in 55018537 170220 station_ip 5.119.160.222 170220 port 806 170220 unique_id port 170220 remote_ip 10.8.0.134 170226 username barzegar 170226 mac 170226 bytes_out 0 170226 bytes_in 0 170226 station_ip 5.119.111.133 170226 port 802 170226 unique_id port 170226 remote_ip 10.8.0.234 170231 username komeil 170231 mac 170231 bytes_out 1235398 170231 bytes_in 23122325 170231 station_ip 113.203.54.94 170231 port 806 170231 unique_id port 170231 remote_ip 10.8.0.70 170234 username komeil 170234 mac 170234 bytes_out 0 170234 bytes_in 0 170234 station_ip 113.203.54.94 170234 port 812 170234 unique_id port 170234 remote_ip 10.8.0.70 170235 username pourshad 170235 mac 170235 bytes_out 30335 170235 bytes_in 74083 170235 station_ip 5.120.40.140 170235 port 785 170235 unique_id port 170235 remote_ip 10.8.0.18 170240 username aminvpn 170240 mac 170240 bytes_out 0 170240 bytes_in 0 170240 station_ip 5.120.96.62 170240 port 812 170240 unique_id port 170240 remote_ip 10.8.0.14 170243 username komeil 170243 mac 170243 bytes_out 0 170243 bytes_in 0 170243 station_ip 113.203.54.94 170243 port 802 170243 unique_id port 170243 remote_ip 10.8.0.70 170244 username aminvpn 170244 mac 170244 bytes_out 0 170244 bytes_in 0 170244 station_ip 5.120.96.62 170244 port 812 170244 unique_id port 170244 remote_ip 10.8.0.14 170246 username mostafa_es78 170246 kill_reason Another user logged on this global unique id 170246 mac 170246 bytes_out 0 170246 bytes_in 0 170246 station_ip 37.129.182.62 170246 port 808 170246 unique_id port 170249 username barzegar 170249 mac 170249 bytes_out 28645 170249 bytes_in 50312 170224 mac 170224 bytes_out 322064 170224 bytes_in 2785707 170224 station_ip 37.129.82.101 170224 port 811 170224 unique_id port 170224 remote_ip 10.8.0.98 170225 username moradi 170225 mac 170225 bytes_out 97575 170225 bytes_in 134263 170225 station_ip 46.225.214.110 170225 port 785 170225 unique_id port 170225 remote_ip 10.8.0.126 170227 username pourshad 170227 mac 170227 bytes_out 0 170227 bytes_in 0 170227 station_ip 5.120.40.140 170227 port 416 170227 unique_id port 170227 remote_ip 10.8.1.154 170228 username houshang 170228 mac 170228 bytes_out 26044 170228 bytes_in 8298 170228 station_ip 5.119.160.222 170228 port 785 170228 unique_id port 170228 remote_ip 10.8.0.134 170229 username barzegar 170229 mac 170229 bytes_out 0 170229 bytes_in 0 170229 station_ip 5.119.111.133 170229 port 811 170229 unique_id port 170229 remote_ip 10.8.0.234 170230 username houshang 170230 kill_reason Another user logged on this global unique id 170230 mac 170230 bytes_out 0 170230 bytes_in 0 170230 station_ip 5.119.160.222 170230 port 802 170230 unique_id port 170230 remote_ip 10.8.0.134 170232 username komeil 170232 mac 170232 bytes_out 0 170232 bytes_in 0 170232 station_ip 113.203.54.94 170232 port 806 170232 unique_id port 170232 remote_ip 10.8.0.70 170236 username aminvpn 170236 mac 170236 bytes_out 698255 170236 bytes_in 5855926 170236 station_ip 83.122.4.43 170236 port 798 170236 unique_id port 170236 remote_ip 10.8.0.14 170237 username aminvpn 170237 mac 170237 bytes_out 0 170237 bytes_in 0 170237 station_ip 5.120.96.62 170237 port 785 170237 unique_id port 170237 remote_ip 10.8.0.14 170238 username moradi 170238 mac 170238 bytes_out 8838 170238 bytes_in 17428 170238 station_ip 46.225.214.94 170238 port 811 170238 unique_id port 170238 remote_ip 10.8.0.126 170239 username aminvpn 170239 mac 170239 bytes_out 0 170239 bytes_in 0 170239 station_ip 83.122.4.43 170239 port 806 170239 unique_id port 170239 remote_ip 10.8.0.14 170241 username komeil 170241 mac 170241 bytes_out 104487 170241 bytes_in 167845 170241 station_ip 113.203.54.94 170241 port 802 170241 unique_id port 170241 remote_ip 10.8.0.70 170247 username aminvpn 170247 mac 170247 bytes_out 0 170247 bytes_in 0 170247 station_ip 83.122.4.43 170247 port 806 170247 unique_id port 170247 remote_ip 10.8.0.14 170252 username aminvpn 170252 mac 170252 bytes_out 0 170252 bytes_in 0 170252 station_ip 5.120.96.62 170252 port 798 170252 unique_id port 170252 remote_ip 10.8.0.14 170261 username Mahin 170261 kill_reason Relative expiration date has reached 170261 mac 170261 bytes_out 0 170261 bytes_in 0 170261 station_ip 5.119.185.118 170261 port 417 170261 unique_id port 170265 username Mahin 170265 kill_reason Relative expiration date has reached 170265 mac 170265 bytes_out 0 170265 bytes_in 0 170265 station_ip 5.119.185.118 170265 port 807 170265 unique_id port 170267 username Mahin 170267 kill_reason Relative expiration date has reached 170267 mac 170267 bytes_out 0 170267 bytes_in 0 170267 station_ip 5.119.185.118 170267 port 794 170267 unique_id port 170269 username sabaghnezhad 170269 mac 170269 bytes_out 0 170269 bytes_in 0 170269 station_ip 113.203.4.239 170269 port 810 170269 unique_id port 170269 remote_ip 10.8.0.186 170271 username barzegar 170271 mac 170271 bytes_out 0 170271 bytes_in 0 170271 station_ip 5.119.111.133 170271 port 812 170271 unique_id port 170271 remote_ip 10.8.0.234 170278 username alipour 170249 station_ip 5.119.111.133 170249 port 798 170249 unique_id port 170249 remote_ip 10.8.0.234 170251 username komeil 170251 mac 170251 bytes_out 2381 170251 bytes_in 4626 170251 station_ip 113.203.54.94 170251 port 802 170251 unique_id port 170251 remote_ip 10.8.0.70 170255 username kordestani 170255 mac 170255 bytes_out 0 170255 bytes_in 0 170255 station_ip 151.235.101.252 170255 port 807 170255 unique_id port 170255 remote_ip 10.8.0.74 170258 username malekpoir 170258 mac 170258 bytes_out 0 170258 bytes_in 0 170258 station_ip 5.119.6.116 170258 port 794 170258 unique_id port 170258 remote_ip 10.8.0.58 170260 username khademi 170260 kill_reason Another user logged on this global unique id 170260 mac 170260 bytes_out 0 170260 bytes_in 0 170260 station_ip 83.122.191.219 170260 port 811 170260 unique_id port 170260 remote_ip 10.8.0.10 170268 username Mahin 170268 kill_reason Relative expiration date has reached 170268 mac 170268 bytes_out 0 170268 bytes_in 0 170268 station_ip 5.119.185.118 170268 port 794 170268 unique_id port 170270 username Mahin 170270 kill_reason Relative expiration date has reached 170270 mac 170270 bytes_out 0 170270 bytes_in 0 170270 station_ip 5.119.185.118 170270 port 807 170270 unique_id port 170273 username mosi 170273 kill_reason Another user logged on this global unique id 170273 mac 170273 bytes_out 0 170273 bytes_in 0 170273 station_ip 93.114.21.241 170273 port 806 170273 unique_id port 170273 remote_ip 10.8.0.138 170274 username Mahin 170274 kill_reason Relative expiration date has reached 170274 mac 170274 bytes_out 0 170274 bytes_in 0 170274 station_ip 5.119.185.118 170274 port 812 170274 unique_id port 170276 username malekpoir 170276 mac 170276 bytes_out 0 170276 bytes_in 0 170276 station_ip 5.119.6.116 170276 port 797 170276 unique_id port 170276 remote_ip 10.8.0.58 170280 username alipour 170280 mac 170280 bytes_out 0 170280 bytes_in 0 170280 station_ip 83.123.49.160 170280 port 797 170280 unique_id port 170280 remote_ip 10.8.0.102 170281 username khademi 170281 kill_reason Another user logged on this global unique id 170281 mac 170281 bytes_out 0 170281 bytes_in 0 170281 station_ip 83.122.191.219 170281 port 811 170281 unique_id port 170283 username malekpoir 170283 mac 170283 bytes_out 0 170283 bytes_in 0 170283 station_ip 5.119.6.116 170283 port 794 170283 unique_id port 170283 remote_ip 10.8.0.58 170287 username mosi 170287 mac 170287 bytes_out 0 170287 bytes_in 0 170287 station_ip 93.114.21.241 170287 port 806 170287 unique_id port 170290 username hashtadani4 170290 mac 170290 bytes_out 0 170290 bytes_in 0 170290 station_ip 83.122.133.213 170290 port 419 170290 unique_id port 170290 remote_ip 10.8.1.142 170291 username hashtadani4 170291 mac 170291 bytes_out 0 170291 bytes_in 0 170291 station_ip 83.122.133.213 170291 port 794 170291 unique_id port 170291 remote_ip 10.8.0.182 170294 username pourshad 170294 mac 170294 bytes_out 0 170294 bytes_in 0 170294 station_ip 5.119.65.142 170294 port 798 170294 unique_id port 170294 remote_ip 10.8.0.18 170299 username godarzi 170299 mac 170299 bytes_out 0 170299 bytes_in 0 170299 station_ip 5.119.46.130 170299 port 790 170299 unique_id port 170303 username mosi 170303 kill_reason Another user logged on this global unique id 170303 mac 170303 bytes_out 0 170303 bytes_in 0 170303 station_ip 151.235.78.217 170303 port 807 170303 unique_id port 170303 remote_ip 10.8.0.138 170305 username moradi 170305 mac 170305 bytes_out 0 170256 station_ip 83.122.157.23 170256 port 797 170256 unique_id port 170256 remote_ip 10.8.0.102 170257 username kordestani 170257 mac 170257 bytes_out 0 170257 bytes_in 0 170257 station_ip 151.235.101.252 170257 port 807 170257 unique_id port 170257 remote_ip 10.8.0.74 170259 username alipour 170259 mac 170259 bytes_out 64659 170259 bytes_in 115963 170259 station_ip 83.122.157.23 170259 port 814 170259 unique_id port 170259 remote_ip 10.8.0.102 170262 username mostafa_es78 170262 kill_reason Another user logged on this global unique id 170262 mac 170262 bytes_out 0 170262 bytes_in 0 170262 station_ip 37.129.182.62 170262 port 808 170262 unique_id port 170263 username Mahin 170263 kill_reason Relative expiration date has reached 170263 mac 170263 bytes_out 0 170263 bytes_in 0 170263 station_ip 5.119.185.118 170263 port 807 170263 unique_id port 170264 username Mahin 170264 kill_reason Relative expiration date has reached 170264 mac 170264 bytes_out 0 170264 bytes_in 0 170264 station_ip 5.119.185.118 170264 port 807 170264 unique_id port 170266 username alipour 170266 mac 170266 bytes_out 0 170266 bytes_in 0 170266 station_ip 83.122.157.23 170266 port 794 170266 unique_id port 170266 remote_ip 10.8.0.102 170272 username sabaghnezhad 170272 mac 170272 bytes_out 8098 170272 bytes_in 13686 170272 station_ip 113.203.4.239 170272 port 794 170272 unique_id port 170272 remote_ip 10.8.0.186 170275 username Mahin 170275 kill_reason Relative expiration date has reached 170275 mac 170275 bytes_out 0 170275 bytes_in 0 170275 station_ip 5.119.185.118 170275 port 812 170275 unique_id port 170277 username barzegar 170277 mac 170277 bytes_out 1700 170277 bytes_in 5262 170277 station_ip 5.119.111.133 170277 port 794 170277 unique_id port 170277 remote_ip 10.8.0.234 170282 username sedighe 170282 mac 170282 bytes_out 0 170282 bytes_in 0 170282 station_ip 83.123.71.88 170282 port 813 170282 unique_id port 170282 remote_ip 10.8.0.146 170285 username pourshad 170285 mac 170285 bytes_out 771313 170285 bytes_in 9209877 170285 station_ip 5.120.40.140 170285 port 418 170285 unique_id port 170285 remote_ip 10.8.1.154 170293 username barzegar 170293 mac 170293 bytes_out 115177 170293 bytes_in 334971 170293 station_ip 5.119.111.133 170293 port 417 170293 unique_id port 170293 remote_ip 10.8.1.174 170295 username kalantary 170295 mac 170295 bytes_out 416927 170295 bytes_in 3042198 170295 station_ip 83.123.59.228 170295 port 813 170295 unique_id port 170295 remote_ip 10.8.0.98 170296 username hashtadani4 170296 mac 170296 bytes_out 0 170296 bytes_in 0 170296 station_ip 83.122.133.213 170296 port 794 170296 unique_id port 170296 remote_ip 10.8.0.182 170298 username aminvpn 170298 mac 170298 bytes_out 0 170298 bytes_in 0 170298 station_ip 83.122.4.43 170298 port 802 170298 unique_id port 170298 remote_ip 10.8.0.14 170302 username barzegar 170302 mac 170302 bytes_out 3157 170302 bytes_in 5588 170302 station_ip 5.119.111.133 170302 port 417 170302 unique_id port 170302 remote_ip 10.8.1.174 170307 username alipour 170307 mac 170307 bytes_out 102470 170307 bytes_in 162295 170307 station_ip 37.129.169.150 170307 port 418 170307 unique_id port 170307 remote_ip 10.8.1.50 170309 username sedighe 170309 mac 170309 bytes_out 0 170309 bytes_in 0 170309 station_ip 83.123.90.150 170309 port 790 170309 unique_id port 170309 remote_ip 10.8.0.146 170311 username aminvpn 170311 mac 170311 bytes_out 231624 170278 mac 170278 bytes_out 0 170278 bytes_in 0 170278 station_ip 83.123.240.167 170278 port 807 170278 unique_id port 170278 remote_ip 10.8.0.102 170279 username pourshad 170279 mac 170279 bytes_out 0 170279 bytes_in 0 170279 station_ip 5.120.40.140 170279 port 798 170279 unique_id port 170279 remote_ip 10.8.0.18 170284 username alipour 170284 mac 170284 bytes_out 0 170284 bytes_in 0 170284 station_ip 83.122.249.160 170284 port 798 170284 unique_id port 170284 remote_ip 10.8.0.102 170286 username alipour 170286 mac 170286 bytes_out 0 170286 bytes_in 0 170286 station_ip 83.123.12.224 170286 port 807 170286 unique_id port 170286 remote_ip 10.8.0.102 170288 username alipour 170288 mac 170288 bytes_out 0 170288 bytes_in 0 170288 station_ip 37.129.118.1 170288 port 812 170288 unique_id port 170288 remote_ip 10.8.0.102 170289 username hashtadani4 170289 mac 170289 bytes_out 0 170289 bytes_in 0 170289 station_ip 83.122.133.213 170289 port 794 170289 unique_id port 170289 remote_ip 10.8.0.182 170292 username godarzi 170292 kill_reason Another user logged on this global unique id 170292 mac 170292 bytes_out 0 170292 bytes_in 0 170292 station_ip 5.119.46.130 170292 port 790 170292 unique_id port 170292 remote_ip 10.8.0.174 170297 username barzegar 170297 mac 170297 bytes_out 0 170297 bytes_in 0 170297 station_ip 5.119.111.133 170297 port 417 170297 unique_id port 170297 remote_ip 10.8.1.174 170300 username sabaghnezhad 170300 mac 170300 bytes_out 0 170300 bytes_in 0 170300 station_ip 113.203.4.239 170300 port 810 170300 unique_id port 170300 remote_ip 10.8.0.186 170301 username forozandeh1 170301 mac 170301 bytes_out 0 170301 bytes_in 0 170301 station_ip 113.203.90.145 170301 port 794 170301 unique_id port 170301 remote_ip 10.8.0.130 170304 username sedighe 170304 mac 170304 bytes_out 0 170304 bytes_in 0 170304 station_ip 83.123.71.88 170304 port 797 170304 unique_id port 170304 remote_ip 10.8.0.146 170306 username saeed9658 170306 mac 170306 bytes_out 0 170306 bytes_in 0 170306 station_ip 5.119.176.146 170306 port 415 170306 unique_id port 170306 remote_ip 10.8.1.210 170308 username pourshad 170308 mac 170308 bytes_out 0 170308 bytes_in 0 170308 station_ip 5.119.95.117 170308 port 785 170308 unique_id port 170308 remote_ip 10.8.0.18 170310 username barzegar 170310 mac 170310 bytes_out 0 170310 bytes_in 0 170310 station_ip 5.119.111.133 170310 port 785 170310 unique_id port 170310 remote_ip 10.8.0.234 170314 username barzegar 170314 mac 170314 bytes_out 10903 170314 bytes_in 40636 170314 station_ip 5.119.111.133 170314 port 415 170314 unique_id port 170314 remote_ip 10.8.1.174 170318 username vanila 170318 mac 170318 bytes_out 0 170318 bytes_in 0 170318 station_ip 83.122.236.174 170318 port 794 170318 unique_id port 170318 remote_ip 10.8.0.178 170326 username alipour 170326 mac 170326 bytes_out 0 170326 bytes_in 0 170326 station_ip 83.122.158.24 170326 port 798 170326 unique_id port 170326 remote_ip 10.8.0.102 170328 username forozandeh1 170328 mac 170328 bytes_out 0 170328 bytes_in 0 170328 station_ip 83.123.248.134 170328 port 794 170328 unique_id port 170328 remote_ip 10.8.0.130 170331 username hashtadani4 170331 mac 170331 bytes_out 0 170331 bytes_in 0 170331 station_ip 83.122.133.213 170331 port 794 170331 unique_id port 170331 remote_ip 10.8.0.182 170336 username hashtadani4 170336 mac 170336 bytes_out 0 170305 bytes_in 0 170305 station_ip 46.225.214.94 170305 port 785 170305 unique_id port 170305 remote_ip 10.8.0.126 170312 username godarzi 170312 mac 170312 bytes_out 751816 170312 bytes_in 6094923 170312 station_ip 5.119.46.130 170312 port 794 170312 unique_id port 170312 remote_ip 10.8.0.174 170315 username alipour 170315 mac 170315 bytes_out 0 170315 bytes_in 0 170315 station_ip 37.129.169.150 170315 port 790 170315 unique_id port 170315 remote_ip 10.8.0.102 170316 username barzegar 170316 mac 170316 bytes_out 0 170316 bytes_in 0 170316 station_ip 5.119.111.133 170316 port 417 170316 unique_id port 170316 remote_ip 10.8.1.174 170320 username hashtadani4 170320 mac 170320 bytes_out 0 170320 bytes_in 0 170320 station_ip 83.122.133.213 170320 port 418 170320 unique_id port 170320 remote_ip 10.8.1.142 170323 username alipour 170323 mac 170323 bytes_out 0 170323 bytes_in 0 170323 station_ip 113.203.13.41 170323 port 797 170323 unique_id port 170323 remote_ip 10.8.0.102 170324 username fezealinaghi 170324 kill_reason Another user logged on this global unique id 170324 mac 170324 bytes_out 0 170324 bytes_in 0 170324 station_ip 83.123.44.118 170324 port 790 170324 unique_id port 170324 remote_ip 10.8.0.78 170325 username barzegar 170325 mac 170325 bytes_out 0 170325 bytes_in 0 170325 station_ip 5.119.111.133 170325 port 420 170325 unique_id port 170325 remote_ip 10.8.1.174 170329 username hashtadani4 170329 mac 170329 bytes_out 0 170329 bytes_in 0 170329 station_ip 83.122.133.213 170329 port 798 170329 unique_id port 170329 remote_ip 10.8.0.182 170332 username hashtadani4 170332 mac 170332 bytes_out 0 170332 bytes_in 0 170332 station_ip 83.122.133.213 170332 port 419 170332 unique_id port 170332 remote_ip 10.8.1.142 170334 username hashtadani4 170334 mac 170334 bytes_out 0 170334 bytes_in 0 170334 station_ip 83.122.133.213 170334 port 419 170334 unique_id port 170334 remote_ip 10.8.1.142 170339 username hashtadani4 170339 mac 170339 bytes_out 0 170339 bytes_in 0 170339 station_ip 83.122.133.213 170339 port 421 170339 unique_id port 170339 remote_ip 10.8.1.142 170341 username kalantary 170341 mac 170341 bytes_out 0 170341 bytes_in 0 170341 station_ip 83.123.78.224 170341 port 797 170341 unique_id port 170341 remote_ip 10.8.0.98 170343 username hashtadani4 170343 mac 170343 bytes_out 0 170343 bytes_in 0 170343 station_ip 83.122.133.213 170343 port 417 170343 unique_id port 170343 remote_ip 10.8.1.142 170351 username hashtadani4 170351 mac 170351 bytes_out 0 170351 bytes_in 0 170351 station_ip 83.122.133.213 170351 port 794 170351 unique_id port 170351 remote_ip 10.8.0.182 170353 username hashtadani4 170353 mac 170353 bytes_out 0 170353 bytes_in 0 170353 station_ip 83.122.133.213 170353 port 794 170353 unique_id port 170353 remote_ip 10.8.0.182 170355 username hashtadani4 170355 mac 170355 bytes_out 0 170355 bytes_in 0 170355 station_ip 83.122.133.213 170355 port 794 170355 unique_id port 170355 remote_ip 10.8.0.182 170358 username hashtadani4 170358 mac 170358 bytes_out 0 170358 bytes_in 0 170358 station_ip 83.122.133.213 170358 port 419 170358 unique_id port 170358 remote_ip 10.8.1.142 170368 username hashtadani4 170368 mac 170368 bytes_out 185235 170368 bytes_in 1548148 170368 station_ip 83.122.133.213 170368 port 794 170368 unique_id port 170368 remote_ip 10.8.0.182 170372 username aminvpn 170372 mac 170372 bytes_out 0 170311 bytes_in 396091 170311 station_ip 83.122.4.43 170311 port 812 170311 unique_id port 170311 remote_ip 10.8.0.14 170313 username mosi 170313 mac 170313 bytes_out 0 170313 bytes_in 0 170313 station_ip 151.235.78.217 170313 port 807 170313 unique_id port 170317 username alipour 170317 mac 170317 bytes_out 0 170317 bytes_in 0 170317 station_ip 83.123.22.113 170317 port 794 170317 unique_id port 170317 remote_ip 10.8.0.102 170319 username hashtadani4 170319 mac 170319 bytes_out 1799117 170319 bytes_in 27222220 170319 station_ip 83.122.133.213 170319 port 798 170319 unique_id port 170319 remote_ip 10.8.0.182 170321 username hashtadani4 170321 mac 170321 bytes_out 0 170321 bytes_in 0 170321 station_ip 83.122.133.213 170321 port 798 170321 unique_id port 170321 remote_ip 10.8.0.182 170322 username hashtadani4 170322 mac 170322 bytes_out 0 170322 bytes_in 0 170322 station_ip 83.122.133.213 170322 port 419 170322 unique_id port 170322 remote_ip 10.8.1.142 170327 username hashtadani4 170327 mac 170327 bytes_out 230632 170327 bytes_in 2528410 170327 station_ip 83.122.133.213 170327 port 419 170327 unique_id port 170327 remote_ip 10.8.1.142 170330 username hashtadani4 170330 mac 170330 bytes_out 0 170330 bytes_in 0 170330 station_ip 83.122.133.213 170330 port 419 170330 unique_id port 170330 remote_ip 10.8.1.142 170333 username hashtadani4 170333 mac 170333 bytes_out 0 170333 bytes_in 0 170333 station_ip 83.122.133.213 170333 port 794 170333 unique_id port 170333 remote_ip 10.8.0.182 170335 username hashtadani4 170335 mac 170335 bytes_out 0 170335 bytes_in 0 170335 station_ip 83.122.133.213 170335 port 794 170335 unique_id port 170335 remote_ip 10.8.0.182 170338 username barzegar 170338 mac 170338 bytes_out 0 170338 bytes_in 0 170338 station_ip 5.119.111.133 170338 port 419 170338 unique_id port 170338 remote_ip 10.8.1.174 170340 username hashtadani4 170340 mac 170340 bytes_out 0 170340 bytes_in 0 170340 station_ip 83.122.133.213 170340 port 794 170340 unique_id port 170340 remote_ip 10.8.0.182 170344 username hashtadani4 170344 mac 170344 bytes_out 0 170344 bytes_in 0 170344 station_ip 83.122.133.213 170344 port 794 170344 unique_id port 170344 remote_ip 10.8.0.182 170347 username hashtadani4 170347 mac 170347 bytes_out 0 170347 bytes_in 0 170347 station_ip 83.122.133.213 170347 port 419 170347 unique_id port 170347 remote_ip 10.8.1.142 170349 username alipour 170349 mac 170349 bytes_out 0 170349 bytes_in 0 170349 station_ip 83.123.23.248 170349 port 417 170349 unique_id port 170349 remote_ip 10.8.1.50 170354 username hashtadani4 170354 mac 170354 bytes_out 0 170354 bytes_in 0 170354 station_ip 83.122.133.213 170354 port 794 170354 unique_id port 170354 remote_ip 10.8.0.182 170356 username hashtadani4 170356 mac 170356 bytes_out 0 170356 bytes_in 0 170356 station_ip 83.122.133.213 170356 port 794 170356 unique_id port 170356 remote_ip 10.8.0.182 170357 username aminvpn 170357 mac 170357 bytes_out 0 170357 bytes_in 0 170357 station_ip 83.122.4.43 170357 port 785 170357 unique_id port 170357 remote_ip 10.8.0.14 170359 username hashtadani4 170359 mac 170359 bytes_out 0 170359 bytes_in 0 170359 station_ip 83.122.133.213 170359 port 785 170359 unique_id port 170359 remote_ip 10.8.0.182 170360 username hashtadani4 170360 mac 170360 bytes_out 0 170360 bytes_in 0 170360 station_ip 83.122.133.213 170360 port 785 170336 bytes_in 0 170336 station_ip 83.122.133.213 170336 port 419 170336 unique_id port 170336 remote_ip 10.8.1.142 170337 username hashtadani4 170337 mac 170337 bytes_out 0 170337 bytes_in 0 170337 station_ip 83.122.133.213 170337 port 794 170337 unique_id port 170337 remote_ip 10.8.0.182 170342 username pourshad 170342 mac 170342 bytes_out 178770 170342 bytes_in 994844 170342 station_ip 5.119.42.25 170342 port 417 170342 unique_id port 170342 remote_ip 10.8.1.154 170345 username alipour 170345 mac 170345 bytes_out 2604 170345 bytes_in 6921 170345 station_ip 83.123.23.248 170345 port 420 170345 unique_id port 170345 remote_ip 10.8.1.50 170346 username aminvpn 170346 mac 170346 bytes_out 0 170346 bytes_in 0 170346 station_ip 5.119.94.158 170346 port 415 170346 unique_id port 170346 remote_ip 10.8.1.6 170348 username hashtadani4 170348 mac 170348 bytes_out 0 170348 bytes_in 0 170348 station_ip 83.122.133.213 170348 port 794 170348 unique_id port 170348 remote_ip 10.8.0.182 170350 username hashtadani4 170350 mac 170350 bytes_out 0 170350 bytes_in 0 170350 station_ip 83.122.133.213 170350 port 415 170350 unique_id port 170350 remote_ip 10.8.1.142 170352 username hashtadani4 170352 mac 170352 bytes_out 0 170352 bytes_in 0 170352 station_ip 83.122.133.213 170352 port 794 170352 unique_id port 170352 remote_ip 10.8.0.182 170361 username aminvpn 170361 mac 170361 bytes_out 0 170361 bytes_in 0 170361 station_ip 5.119.94.158 170361 port 794 170361 unique_id port 170361 remote_ip 10.8.0.14 170362 username aminvpn 170362 mac 170362 bytes_out 0 170362 bytes_in 0 170362 station_ip 83.122.4.43 170362 port 785 170362 unique_id port 170362 remote_ip 10.8.0.14 170363 username yarmohamadi 170363 kill_reason Another user logged on this global unique id 170363 mac 170363 bytes_out 0 170363 bytes_in 0 170363 station_ip 5.120.103.172 170363 port 416 170363 unique_id port 170363 remote_ip 10.8.1.234 170364 username aminvpn 170364 mac 170364 bytes_out 0 170364 bytes_in 0 170364 station_ip 5.119.94.158 170364 port 798 170364 unique_id port 170364 remote_ip 10.8.0.14 170365 username aminvpn 170365 mac 170365 bytes_out 0 170365 bytes_in 0 170365 station_ip 83.122.4.43 170365 port 785 170365 unique_id port 170365 remote_ip 10.8.0.14 170366 username aminvpn 170366 mac 170366 bytes_out 0 170366 bytes_in 0 170366 station_ip 5.119.94.158 170366 port 798 170366 unique_id port 170366 remote_ip 10.8.0.14 170369 username malekpoir 170369 mac 170369 bytes_out 62412 170369 bytes_in 99661 170369 station_ip 5.119.6.116 170369 port 806 170369 unique_id port 170369 remote_ip 10.8.0.58 170375 username godarzi 170375 mac 170375 bytes_out 0 170375 bytes_in 0 170375 station_ip 5.119.46.130 170375 port 802 170375 unique_id port 170375 remote_ip 10.8.0.174 170379 username aminvpn 170379 mac 170379 bytes_out 0 170379 bytes_in 0 170379 station_ip 83.122.4.43 170379 port 806 170379 unique_id port 170379 remote_ip 10.8.0.14 170384 username hashtadani4 170384 mac 170384 bytes_out 0 170384 bytes_in 0 170384 station_ip 83.122.133.213 170384 port 785 170384 unique_id port 170384 remote_ip 10.8.0.182 170418 station_ip 5.119.111.133 170418 port 13 170418 unique_id port 170418 remote_ip 10.8.0.10 170419 username vanila 170419 mac 170419 bytes_out 209404 170419 bytes_in 447806 170419 station_ip 83.122.236.174 170419 port 6 170419 unique_id port 170419 remote_ip 10.8.0.46 170360 unique_id port 170360 remote_ip 10.8.0.182 170367 username godarzi 170367 mac 170367 bytes_out 0 170367 bytes_in 0 170367 station_ip 5.119.46.130 170367 port 802 170367 unique_id port 170367 remote_ip 10.8.0.174 170370 username aminvpn 170370 mac 170370 bytes_out 0 170370 bytes_in 0 170370 station_ip 83.122.4.43 170370 port 785 170370 unique_id port 170370 remote_ip 10.8.0.14 170371 username aminvpn 170371 mac 170371 bytes_out 0 170371 bytes_in 0 170371 station_ip 5.119.94.158 170371 port 802 170371 unique_id port 170371 remote_ip 10.8.0.14 170377 username aminvpn 170377 mac 170377 bytes_out 0 170377 bytes_in 0 170377 station_ip 5.119.94.158 170377 port 802 170377 unique_id port 170377 remote_ip 10.8.0.14 170380 username kalantary 170380 mac 170380 bytes_out 0 170380 bytes_in 0 170380 station_ip 83.123.119.84 170380 port 794 170380 unique_id port 170380 remote_ip 10.8.0.98 170383 username hashtadani4 170383 mac 170383 bytes_out 0 170383 bytes_in 0 170383 station_ip 83.122.133.213 170383 port 785 170383 unique_id port 170383 remote_ip 10.8.0.182 172038 username kalantary 172038 mac 172038 bytes_out 725041 172038 bytes_in 10668322 172038 station_ip 83.123.73.152 172038 port 21 172038 unique_id port 172038 remote_ip 10.8.0.50 172041 username hashtadani4 172041 mac 172041 bytes_out 0 172041 bytes_in 0 172041 station_ip 83.122.178.27 172041 port 17 172041 unique_id port 172041 remote_ip 10.8.0.22 172042 username yarmohamadi 172042 mac 172042 bytes_out 0 172042 bytes_in 0 172042 station_ip 5.120.18.129 172042 port 7 172042 unique_id port 172045 username hashtadani4 172045 mac 172045 bytes_out 0 172045 bytes_in 0 172045 station_ip 83.122.178.27 172045 port 7 172045 unique_id port 172045 remote_ip 10.8.0.22 172047 username barzegar 172047 mac 172047 bytes_out 0 172047 bytes_in 0 172047 station_ip 5.119.187.175 172047 port 7 172047 unique_id port 172047 remote_ip 10.8.0.10 172051 username hashtadani4 172051 mac 172051 bytes_out 0 172051 bytes_in 0 172051 station_ip 83.122.178.27 172051 port 7 172051 unique_id port 172051 remote_ip 10.8.0.22 172055 username aminvpn 172055 mac 172055 bytes_out 0 172055 bytes_in 0 172055 station_ip 5.119.94.158 172055 port 7 172055 unique_id port 172055 remote_ip 10.8.0.58 172059 username hashtadani4 172059 mac 172059 bytes_out 0 172059 bytes_in 0 172059 station_ip 83.122.178.27 172059 port 7 172059 unique_id port 172059 remote_ip 10.8.0.22 172061 username barzegar 172061 mac 172061 bytes_out 0 172061 bytes_in 0 172061 station_ip 5.119.187.175 172061 port 7 172061 unique_id port 172061 remote_ip 10.8.0.10 172065 username hashtadani4 172065 mac 172065 bytes_out 0 172065 bytes_in 0 172065 station_ip 83.122.178.27 172065 port 7 172065 unique_id port 172065 remote_ip 10.8.0.22 172067 username aminvpn 172067 mac 172067 bytes_out 0 172067 bytes_in 0 172067 station_ip 5.119.94.158 172067 port 7 172067 unique_id port 172067 remote_ip 10.8.0.58 172068 username hashtadani4 172068 mac 172068 bytes_out 0 172068 bytes_in 0 172068 station_ip 83.122.178.27 172068 port 7 172068 unique_id port 172068 remote_ip 10.8.0.22 172069 username hashtadani4 172069 mac 172069 bytes_out 0 172069 bytes_in 0 172069 station_ip 83.122.178.27 172069 port 10 172069 unique_id port 172069 remote_ip 10.8.0.22 172073 username kalantary 172073 mac 172073 bytes_out 490142 172073 bytes_in 4121171 170372 bytes_in 0 170372 station_ip 83.122.4.43 170372 port 794 170372 unique_id port 170372 remote_ip 10.8.0.14 170373 username alipour 170373 mac 170373 bytes_out 626030 170373 bytes_in 5604529 170373 station_ip 83.122.241.72 170373 port 415 170373 unique_id port 170373 remote_ip 10.8.1.50 170374 username aminvpn 170374 mac 170374 bytes_out 0 170374 bytes_in 0 170374 station_ip 5.119.94.158 170374 port 806 170374 unique_id port 170374 remote_ip 10.8.0.14 170376 username aminvpn 170376 mac 170376 bytes_out 0 170376 bytes_in 0 170376 station_ip 83.122.4.43 170376 port 794 170376 unique_id port 170376 remote_ip 10.8.0.14 170378 username barzegar 170378 mac 170378 bytes_out 0 170378 bytes_in 0 170378 station_ip 5.119.111.133 170378 port 417 170378 unique_id port 170378 remote_ip 10.8.1.174 170381 username hashtadani4 170381 mac 170381 bytes_out 294319 170381 bytes_in 3278683 170381 station_ip 83.122.133.213 170381 port 785 170381 unique_id port 170381 remote_ip 10.8.0.182 170382 username hashtadani4 170382 mac 170382 bytes_out 0 170382 bytes_in 0 170382 station_ip 83.122.133.213 170382 port 785 170382 unique_id port 170382 remote_ip 10.8.0.182 170406 username barzegar 170406 mac 170406 bytes_out 0 170406 bytes_in 0 170406 station_ip 5.119.111.133 170406 port 2 170406 unique_id port 170406 remote_ip 10.8.0.10 170407 username barzegar 170407 mac 170407 bytes_out 4720 170407 bytes_in 6273 170407 station_ip 5.119.111.133 170407 port 6 170407 unique_id port 170407 remote_ip 10.8.0.10 170408 username godarzi 170408 mac 170408 bytes_out 437118 170408 bytes_in 4998727 170408 station_ip 5.119.46.130 170408 port 6 170408 unique_id port 170408 remote_ip 10.8.0.38 170409 username hashtadani4 170409 mac 170409 bytes_out 991467 170409 bytes_in 14548386 170409 station_ip 83.122.133.213 170409 port 5 170409 unique_id port 170409 remote_ip 10.8.0.22 170410 username forozandeh1 170410 mac 170410 bytes_out 501526 170410 bytes_in 4653547 170410 station_ip 37.129.250.173 170410 port 7 170410 unique_id port 170410 remote_ip 10.8.0.30 170411 username khademi 170411 kill_reason Another user logged on this global unique id 170411 mac 170411 bytes_out 0 170411 bytes_in 0 170411 station_ip 83.122.191.219 170411 port 3 170411 unique_id port 170411 remote_ip 10.8.0.14 170412 username pourshad 170412 mac 170412 bytes_out 18980 170412 bytes_in 25343 170412 station_ip 5.119.42.25 170412 port 9 170412 unique_id port 170412 remote_ip 10.8.0.42 170413 username barzegar 170413 mac 170413 bytes_out 0 170413 bytes_in 0 170413 station_ip 5.119.111.133 170413 port 6 170413 unique_id port 170413 remote_ip 10.8.0.10 170414 username barzegar 170414 mac 170414 bytes_out 0 170414 bytes_in 0 170414 station_ip 5.119.111.133 170414 port 6 170414 unique_id port 170414 remote_ip 10.8.0.10 170415 username khademi 170415 kill_reason Another user logged on this global unique id 170415 mac 170415 bytes_out 0 170415 bytes_in 0 170415 station_ip 83.122.191.219 170415 port 3 170415 unique_id port 170416 username barzegar 170416 mac 170416 bytes_out 0 170416 bytes_in 0 170416 station_ip 5.119.111.133 170416 port 11 170416 unique_id port 170416 remote_ip 10.8.0.10 170417 username pourshad 170417 mac 170417 bytes_out 10992 170417 bytes_in 18719 170417 station_ip 5.119.42.25 170417 port 12 170417 unique_id port 170417 remote_ip 10.8.0.42 170418 username barzegar 170418 mac 170418 bytes_out 0 170418 bytes_in 0 170420 username kalantary 170420 mac 170420 bytes_out 1091619 170420 bytes_in 15774893 170420 station_ip 83.123.24.28 170420 port 7 170420 unique_id port 170420 remote_ip 10.8.0.50 170424 username hashtadani4 170424 mac 170424 bytes_out 0 170424 bytes_in 0 170424 station_ip 83.122.133.213 170424 port 7 170424 unique_id port 170424 remote_ip 10.8.0.22 170428 username hashtadani4 170428 mac 170428 bytes_out 0 170428 bytes_in 0 170428 station_ip 83.122.133.213 170428 port 6 170428 unique_id port 170428 remote_ip 10.8.0.22 170431 username aminvpn 170431 mac 170431 bytes_out 0 170431 bytes_in 0 170431 station_ip 5.119.94.158 170431 port 7 170431 unique_id port 170431 remote_ip 10.8.0.58 170433 username hosseine 170433 kill_reason Another user logged on this global unique id 170433 mac 170433 bytes_out 0 170433 bytes_in 0 170433 station_ip 113.203.88.22 170433 port 9 170433 unique_id port 170433 remote_ip 10.8.0.54 170440 username aminvpn 170440 mac 170440 bytes_out 0 170440 bytes_in 0 170440 station_ip 5.119.94.158 170440 port 11 170440 unique_id port 170440 remote_ip 10.8.0.58 170442 username hashtadani4 170442 mac 170442 bytes_out 172040 170442 bytes_in 1923747 170442 station_ip 83.122.133.213 170442 port 5 170442 unique_id port 170442 remote_ip 10.8.0.22 170448 username sekonji3 170448 mac 170448 bytes_out 751304 170448 bytes_in 10095098 170448 station_ip 113.203.115.98 170448 port 12 170448 unique_id port 170448 remote_ip 10.8.0.62 170450 username hashtadani4 170450 mac 170450 bytes_out 0 170450 bytes_in 0 170450 station_ip 83.122.133.213 170450 port 10 170450 unique_id port 170450 remote_ip 10.8.0.22 170453 username hashtadani4 170453 mac 170453 bytes_out 0 170453 bytes_in 0 170453 station_ip 83.122.133.213 170453 port 10 170453 unique_id port 170453 remote_ip 10.8.0.22 170454 username hashtadani4 170454 mac 170454 bytes_out 0 170454 bytes_in 0 170454 station_ip 83.122.133.213 170454 port 10 170454 unique_id port 170454 remote_ip 10.8.0.22 170457 username hashtadani4 170457 mac 170457 bytes_out 0 170457 bytes_in 0 170457 station_ip 83.122.133.213 170457 port 10 170457 unique_id port 170457 remote_ip 10.8.0.22 170459 username shadkam 170459 mac 170459 bytes_out 485707 170459 bytes_in 6731119 170459 station_ip 83.122.242.114 170459 port 7 170459 unique_id port 170459 remote_ip 10.8.0.74 170461 username aminvpn 170461 mac 170461 bytes_out 0 170461 bytes_in 0 170461 station_ip 5.119.94.158 170461 port 5 170461 unique_id port 170461 remote_ip 10.8.0.58 170462 username aminvpn 170462 mac 170462 bytes_out 0 170462 bytes_in 0 170462 station_ip 5.119.94.158 170462 port 7 170462 unique_id port 170462 remote_ip 10.8.0.58 170466 username aminvpn 170466 mac 170466 bytes_out 0 170466 bytes_in 0 170466 station_ip 5.119.94.158 170466 port 5 170466 unique_id port 170466 remote_ip 10.8.0.58 170469 username aminvpn 170469 mac 170469 bytes_out 0 170469 bytes_in 0 170469 station_ip 83.122.4.43 170469 port 5 170469 unique_id port 170469 remote_ip 10.8.0.58 170470 username sedighe 170470 mac 170470 bytes_out 64453 170470 bytes_in 96917 170470 station_ip 37.129.93.235 170470 port 6 170470 unique_id port 170470 remote_ip 10.8.0.78 170476 username barzegar 170476 mac 170476 bytes_out 0 170476 bytes_in 0 170476 station_ip 5.119.111.133 170476 port 12 170476 unique_id port 170476 remote_ip 10.8.0.10 170481 username hashtadani4 170481 mac 170481 bytes_out 0 170421 username godarzi 170421 mac 170421 bytes_out 303361 170421 bytes_in 2404686 170421 station_ip 5.119.46.130 170421 port 11 170421 unique_id port 170421 remote_ip 10.8.0.38 170423 username sabaghnezhad 170423 mac 170423 bytes_out 21304 170423 bytes_in 21678 170423 station_ip 83.123.53.210 170423 port 7 170423 unique_id port 170423 remote_ip 10.8.0.66 170426 username arash 170426 mac 170426 bytes_out 9497 170426 bytes_in 30666 170426 station_ip 37.27.7.92 170426 port 5 170426 unique_id port 170426 remote_ip 10.8.0.70 170434 username barzegar 170434 mac 170434 bytes_out 0 170434 bytes_in 0 170434 station_ip 5.119.111.133 170434 port 6 170434 unique_id port 170434 remote_ip 10.8.0.10 170437 username aminvpn 170437 mac 170437 bytes_out 0 170437 bytes_in 0 170437 station_ip 5.119.94.158 170437 port 10 170437 unique_id port 170437 remote_ip 10.8.0.58 170441 username aminvpn 170441 mac 170441 bytes_out 0 170441 bytes_in 0 170441 station_ip 5.119.94.158 170441 port 10 170441 unique_id port 170441 remote_ip 10.8.0.58 170443 username aminvpn 170443 mac 170443 bytes_out 0 170443 bytes_in 0 170443 station_ip 83.122.4.43 170443 port 11 170443 unique_id port 170443 remote_ip 10.8.0.58 170444 username aminvpn 170444 mac 170444 bytes_out 0 170444 bytes_in 0 170444 station_ip 5.119.94.158 170444 port 5 170444 unique_id port 170444 remote_ip 10.8.0.58 170446 username hosseine 170446 kill_reason Another user logged on this global unique id 170446 mac 170446 bytes_out 0 170446 bytes_in 0 170446 station_ip 113.203.88.22 170446 port 9 170446 unique_id port 170447 username aminvpn 170447 mac 170447 bytes_out 0 170447 bytes_in 0 170447 station_ip 83.122.4.43 170447 port 5 170447 unique_id port 170447 remote_ip 10.8.0.58 170451 username aminvpn 170451 mac 170451 bytes_out 0 170451 bytes_in 0 170451 station_ip 5.119.94.158 170451 port 5 170451 unique_id port 170451 remote_ip 10.8.0.58 170455 username aminvpn 170455 mac 170455 bytes_out 0 170455 bytes_in 0 170455 station_ip 83.122.4.43 170455 port 5 170455 unique_id port 170455 remote_ip 10.8.0.58 170458 username hashtadani4 170458 mac 170458 bytes_out 0 170458 bytes_in 0 170458 station_ip 83.122.133.213 170458 port 10 170458 unique_id port 170458 remote_ip 10.8.0.22 170463 username hashtadani4 170463 mac 170463 bytes_out 0 170463 bytes_in 0 170463 station_ip 83.122.133.213 170463 port 7 170463 unique_id port 170463 remote_ip 10.8.0.22 170467 username hashtadani4 170467 mac 170467 bytes_out 0 170467 bytes_in 0 170467 station_ip 83.122.133.213 170467 port 5 170467 unique_id port 170467 remote_ip 10.8.0.22 170472 username hashtadani4 170472 mac 170472 bytes_out 0 170472 bytes_in 0 170472 station_ip 83.122.133.213 170472 port 6 170472 unique_id port 170472 remote_ip 10.8.0.22 170473 username aminvpn 170473 mac 170473 bytes_out 0 170473 bytes_in 0 170473 station_ip 83.122.4.43 170473 port 11 170473 unique_id port 170473 remote_ip 10.8.0.58 170474 username hosseine 170474 kill_reason Another user logged on this global unique id 170474 mac 170474 bytes_out 0 170474 bytes_in 0 170474 station_ip 113.203.88.22 170474 port 9 170474 unique_id port 170475 username hashtadani4 170475 mac 170475 bytes_out 0 170475 bytes_in 0 170475 station_ip 83.122.133.213 170475 port 11 170475 unique_id port 170475 remote_ip 10.8.0.22 170477 username Mahin 170477 kill_reason Relative expiration date has reached 170477 mac 170477 bytes_out 0 170422 username hashtadani4 170422 mac 170422 bytes_out 3444515 170422 bytes_in 48248077 170422 station_ip 83.122.133.213 170422 port 5 170422 unique_id port 170422 remote_ip 10.8.0.22 170425 username forozandeh1 170425 mac 170425 bytes_out 179697 170425 bytes_in 884851 170425 station_ip 83.123.12.115 170425 port 6 170425 unique_id port 170425 remote_ip 10.8.0.30 170427 username aminvpn 170427 mac 170427 bytes_out 273623 170427 bytes_in 1779327 170427 station_ip 5.119.94.158 170427 port 10 170427 unique_id port 170427 remote_ip 10.8.0.58 170429 username aminvpn 170429 mac 170429 bytes_out 0 170429 bytes_in 0 170429 station_ip 83.122.4.43 170429 port 5 170429 unique_id port 170429 remote_ip 10.8.0.58 170430 username aminvpn 170430 mac 170430 bytes_out 0 170430 bytes_in 0 170430 station_ip 5.119.94.158 170430 port 6 170430 unique_id port 170430 remote_ip 10.8.0.58 170432 username aminvpn 170432 mac 170432 bytes_out 0 170432 bytes_in 0 170432 station_ip 83.122.4.43 170432 port 6 170432 unique_id port 170432 remote_ip 10.8.0.58 170435 username aminvpn 170435 mac 170435 bytes_out 0 170435 bytes_in 0 170435 station_ip 5.119.94.158 170435 port 10 170435 unique_id port 170435 remote_ip 10.8.0.58 170436 username aminvpn 170436 mac 170436 bytes_out 0 170436 bytes_in 0 170436 station_ip 83.122.4.43 170436 port 6 170436 unique_id port 170436 remote_ip 10.8.0.58 170438 username aminvpn 170438 mac 170438 bytes_out 0 170438 bytes_in 0 170438 station_ip 5.119.94.158 170438 port 11 170438 unique_id port 170438 remote_ip 10.8.0.58 170439 username aminvpn 170439 mac 170439 bytes_out 0 170439 bytes_in 0 170439 station_ip 83.122.4.43 170439 port 10 170439 unique_id port 170439 remote_ip 10.8.0.58 170445 username aminvpn 170445 mac 170445 bytes_out 0 170445 bytes_in 0 170445 station_ip 5.119.94.158 170445 port 10 170445 unique_id port 170445 remote_ip 10.8.0.58 170449 username aminvpn 170449 mac 170449 bytes_out 0 170449 bytes_in 0 170449 station_ip 5.119.94.158 170449 port 10 170449 unique_id port 170449 remote_ip 10.8.0.58 170452 username aminvpn 170452 mac 170452 bytes_out 0 170452 bytes_in 0 170452 station_ip 5.119.94.158 170452 port 10 170452 unique_id port 170452 remote_ip 10.8.0.58 170456 username aminvpn 170456 mac 170456 bytes_out 0 170456 bytes_in 0 170456 station_ip 5.119.94.158 170456 port 10 170456 unique_id port 170456 remote_ip 10.8.0.58 170460 username vanila 170460 mac 170460 bytes_out 1407886 170460 bytes_in 8387191 170460 station_ip 83.122.236.174 170460 port 13 170460 unique_id port 170460 remote_ip 10.8.0.46 170464 username hashtadani4 170464 mac 170464 bytes_out 0 170464 bytes_in 0 170464 station_ip 83.122.133.213 170464 port 7 170464 unique_id port 170464 remote_ip 10.8.0.22 170465 username malekpoir 170465 mac 170465 bytes_out 119955 170465 bytes_in 643625 170465 station_ip 5.119.6.116 170465 port 4 170465 unique_id port 170465 remote_ip 10.8.0.18 170468 username aminvpn 170468 mac 170468 bytes_out 0 170468 bytes_in 0 170468 station_ip 5.119.94.158 170468 port 4 170468 unique_id port 170468 remote_ip 10.8.0.58 170471 username aminvpn 170471 mac 170471 bytes_out 1830 170471 bytes_in 4566 170471 station_ip 5.119.94.158 170471 port 4 170471 unique_id port 170471 remote_ip 10.8.0.58 170478 username alipour 170478 mac 170478 bytes_out 166389 170478 bytes_in 393777 170478 station_ip 83.122.241.72 170477 bytes_in 0 170477 station_ip 5.120.13.107 170477 port 11 170477 unique_id port 170479 username hashtadani4 170479 mac 170479 bytes_out 0 170479 bytes_in 0 170479 station_ip 83.122.133.213 170479 port 14 170479 unique_id port 170479 remote_ip 10.8.0.22 170480 username aminvpn 170480 mac 170480 bytes_out 5373 170480 bytes_in 11597 170480 station_ip 5.119.94.158 170480 port 6 170480 unique_id port 170480 remote_ip 10.8.0.58 170483 username houshang 170483 mac 170483 bytes_out 609896 170483 bytes_in 5347515 170483 station_ip 5.119.160.222 170483 port 10 170483 unique_id port 170483 remote_ip 10.8.0.82 170489 username hashtadani4 170489 mac 170489 bytes_out 0 170489 bytes_in 0 170489 station_ip 83.122.133.213 170489 port 4 170489 unique_id port 170489 remote_ip 10.8.0.22 170492 username aminvpn 170492 mac 170492 bytes_out 0 170492 bytes_in 0 170492 station_ip 83.122.4.43 170492 port 1 170492 unique_id port 170492 remote_ip 10.8.0.58 170495 username hashtadani4 170495 mac 170495 bytes_out 0 170495 bytes_in 0 170495 station_ip 83.122.133.213 170495 port 6 170495 unique_id port 170495 remote_ip 10.8.0.22 170499 username hashtadani4 170499 mac 170499 bytes_out 0 170499 bytes_in 0 170499 station_ip 83.122.133.213 170499 port 11 170499 unique_id port 170499 remote_ip 10.8.0.22 170500 username hashtadani4 170500 mac 170500 bytes_out 0 170500 bytes_in 0 170500 station_ip 83.122.133.213 170500 port 10 170500 unique_id port 170500 remote_ip 10.8.0.22 170501 username hashtadani4 170501 mac 170501 bytes_out 0 170501 bytes_in 0 170501 station_ip 83.122.133.213 170501 port 11 170501 unique_id port 170501 remote_ip 10.8.0.22 170503 username barzegar 170503 mac 170503 bytes_out 0 170503 bytes_in 0 170503 station_ip 5.119.111.133 170503 port 10 170503 unique_id port 170503 remote_ip 10.8.0.10 170512 username vanila 170512 mac 170512 bytes_out 139605 170512 bytes_in 319524 170512 station_ip 83.122.236.174 170512 port 11 170512 unique_id port 170512 remote_ip 10.8.0.46 170515 username hashtadani4 170515 mac 170515 bytes_out 0 170515 bytes_in 0 170515 station_ip 83.122.133.213 170515 port 6 170515 unique_id port 170515 remote_ip 10.8.0.22 170516 username hashtadani4 170516 mac 170516 bytes_out 0 170516 bytes_in 0 170516 station_ip 83.122.133.213 170516 port 6 170516 unique_id port 170516 remote_ip 10.8.0.22 170517 username aminvpn 170517 mac 170517 bytes_out 10519 170517 bytes_in 14586 170517 station_ip 5.119.94.158 170517 port 12 170517 unique_id port 170517 remote_ip 10.8.0.58 170522 username hashtadani4 170522 mac 170522 bytes_out 0 170522 bytes_in 0 170522 station_ip 83.122.133.213 170522 port 10 170522 unique_id port 170522 remote_ip 10.8.0.22 170524 username hashtadani4 170524 mac 170524 bytes_out 0 170524 bytes_in 0 170524 station_ip 83.122.133.213 170524 port 10 170524 unique_id port 170524 remote_ip 10.8.0.22 170530 username hashtadani4 170530 mac 170530 bytes_out 0 170530 bytes_in 0 170530 station_ip 83.122.133.213 170530 port 10 170530 unique_id port 170530 remote_ip 10.8.0.22 170532 username hashtadani4 170532 mac 170532 bytes_out 0 170532 bytes_in 0 170532 station_ip 83.122.133.213 170532 port 10 170532 unique_id port 170532 remote_ip 10.8.0.22 170533 username malekpoir 170533 mac 170533 bytes_out 44838 170533 bytes_in 57676 170533 station_ip 5.119.6.116 170533 port 7 170533 unique_id port 170533 remote_ip 10.8.0.18 170535 username aminvpn 170478 port 2 170478 unique_id port 170478 remote_ip 10.8.0.26 170485 username kalantary 170485 mac 170485 bytes_out 577625 170485 bytes_in 7453850 170485 station_ip 83.123.85.252 170485 port 4 170485 unique_id port 170485 remote_ip 10.8.0.50 170486 username hashtadani4 170486 mac 170486 bytes_out 0 170486 bytes_in 0 170486 station_ip 83.122.133.213 170486 port 4 170486 unique_id port 170486 remote_ip 10.8.0.22 170488 username hashtadani4 170488 mac 170488 bytes_out 0 170488 bytes_in 0 170488 station_ip 83.122.133.213 170488 port 4 170488 unique_id port 170488 remote_ip 10.8.0.22 170498 username hashtadani4 170498 mac 170498 bytes_out 0 170498 bytes_in 0 170498 station_ip 83.122.133.213 170498 port 10 170498 unique_id port 170498 remote_ip 10.8.0.22 170504 username hashtadani4 170504 mac 170504 bytes_out 0 170504 bytes_in 0 170504 station_ip 83.122.133.213 170504 port 1 170504 unique_id port 170504 remote_ip 10.8.0.22 170505 username hashtadani4 170505 mac 170505 bytes_out 0 170505 bytes_in 0 170505 station_ip 83.122.133.213 170505 port 1 170505 unique_id port 170505 remote_ip 10.8.0.22 170508 username hashtadani4 170508 mac 170508 bytes_out 0 170508 bytes_in 0 170508 station_ip 83.122.133.213 170508 port 12 170508 unique_id port 170508 remote_ip 10.8.0.22 170509 username aminvpn 170509 mac 170509 bytes_out 0 170509 bytes_in 0 170509 station_ip 83.122.4.43 170509 port 14 170509 unique_id port 170509 remote_ip 10.8.0.58 170510 username shadkam 170510 mac 170510 bytes_out 89053 170510 bytes_in 384612 170510 station_ip 83.122.35.147 170510 port 10 170510 unique_id port 170510 remote_ip 10.8.0.74 170527 username shadkam 170527 mac 170527 bytes_out 535858 170527 bytes_in 4224825 170527 station_ip 83.122.248.91 170527 port 11 170527 unique_id port 170527 remote_ip 10.8.0.74 170528 username hashtadani4 170528 mac 170528 bytes_out 0 170528 bytes_in 0 170528 station_ip 83.122.133.213 170528 port 10 170528 unique_id port 170528 remote_ip 10.8.0.22 170538 username aminvpn 170538 mac 170538 bytes_out 0 170538 bytes_in 0 170538 station_ip 83.122.4.43 170538 port 7 170538 unique_id port 170538 remote_ip 10.8.0.58 170540 username barzegar 170540 mac 170540 bytes_out 0 170540 bytes_in 0 170540 station_ip 5.119.111.133 170540 port 10 170540 unique_id port 170540 remote_ip 10.8.0.10 170541 username hashtadani4 170541 mac 170541 bytes_out 0 170541 bytes_in 0 170541 station_ip 5.202.2.109 170541 port 5 170541 unique_id port 170541 remote_ip 10.8.0.22 170543 username sedighe 170543 mac 170543 bytes_out 1638 170543 bytes_in 3731 170543 station_ip 37.129.93.235 170543 port 7 170543 unique_id port 170543 remote_ip 10.8.0.78 170545 username aminvpn 170545 mac 170545 bytes_out 0 170545 bytes_in 0 170545 station_ip 5.119.94.158 170545 port 7 170545 unique_id port 170545 remote_ip 10.8.0.58 170552 username aminvpn 170552 mac 170552 bytes_out 0 170552 bytes_in 0 170552 station_ip 83.122.4.43 170552 port 13 170552 unique_id port 170552 remote_ip 10.8.0.58 170557 username hashtadani4 170557 mac 170557 bytes_out 7055 170557 bytes_in 8781 170557 station_ip 5.202.2.109 170557 port 14 170557 unique_id port 170557 remote_ip 10.8.0.22 170559 username aminvpn 170559 mac 170559 bytes_out 0 170559 bytes_in 0 170559 station_ip 83.122.4.43 170559 port 16 170559 unique_id port 170559 remote_ip 10.8.0.58 170567 username ahmadi1 170567 mac 170481 bytes_in 0 170481 station_ip 83.122.133.213 170481 port 2 170481 unique_id port 170481 remote_ip 10.8.0.22 170482 username alipour 170482 mac 170482 bytes_out 0 170482 bytes_in 0 170482 station_ip 83.123.74.172 170482 port 11 170482 unique_id port 170482 remote_ip 10.8.0.26 170484 username aminvpn 170484 mac 170484 bytes_out 0 170484 bytes_in 0 170484 station_ip 83.122.4.43 170484 port 12 170484 unique_id port 170484 remote_ip 10.8.0.58 170487 username hashtadani4 170487 mac 170487 bytes_out 0 170487 bytes_in 0 170487 station_ip 83.122.133.213 170487 port 4 170487 unique_id port 170487 remote_ip 10.8.0.22 170490 username yarmohamadi 170490 mac 170490 bytes_out 2490410 170490 bytes_in 8504453 170490 station_ip 5.120.103.172 170490 port 1 170490 unique_id port 170490 remote_ip 10.8.0.6 170491 username aminvpn 170491 mac 170491 bytes_out 50130 170491 bytes_in 461665 170491 station_ip 5.119.94.158 170491 port 6 170491 unique_id port 170491 remote_ip 10.8.0.58 170493 username hashtadani4 170493 mac 170493 bytes_out 0 170493 bytes_in 0 170493 station_ip 83.122.133.213 170493 port 1 170493 unique_id port 170493 remote_ip 10.8.0.22 170494 username aminvpn 170494 mac 170494 bytes_out 10426 170494 bytes_in 16377 170494 station_ip 5.119.94.158 170494 port 4 170494 unique_id port 170494 remote_ip 10.8.0.58 170496 username hashtadani4 170496 mac 170496 bytes_out 0 170496 bytes_in 0 170496 station_ip 83.122.133.213 170496 port 4 170496 unique_id port 170496 remote_ip 10.8.0.22 170497 username aminvpn 170497 mac 170497 bytes_out 0 170497 bytes_in 0 170497 station_ip 83.122.4.43 170497 port 10 170497 unique_id port 170497 remote_ip 10.8.0.58 170502 username kalantary 170502 mac 170502 bytes_out 282640 170502 bytes_in 1361124 170502 station_ip 83.123.85.252 170502 port 1 170502 unique_id port 170502 remote_ip 10.8.0.50 170506 username hashtadani4 170506 mac 170506 bytes_out 0 170506 bytes_in 0 170506 station_ip 83.122.133.213 170506 port 12 170506 unique_id port 170506 remote_ip 10.8.0.22 170507 username aminvpn 170507 mac 170507 bytes_out 5758 170507 bytes_in 7553 170507 station_ip 5.119.94.158 170507 port 6 170507 unique_id port 170507 remote_ip 10.8.0.58 170511 username godarzi 170511 mac 170511 bytes_out 132511 170511 bytes_in 894181 170511 station_ip 5.119.46.130 170511 port 1 170511 unique_id port 170511 remote_ip 10.8.0.38 170513 username hashtadani4 170513 mac 170513 bytes_out 2005 170513 bytes_in 4274 170513 station_ip 83.122.133.213 170513 port 6 170513 unique_id port 170513 remote_ip 10.8.0.22 170514 username hashtadani4 170514 mac 170514 bytes_out 0 170514 bytes_in 0 170514 station_ip 83.122.133.213 170514 port 6 170514 unique_id port 170514 remote_ip 10.8.0.22 170518 username hashtadani4 170518 mac 170518 bytes_out 0 170518 bytes_in 0 170518 station_ip 83.122.133.213 170518 port 6 170518 unique_id port 170518 remote_ip 10.8.0.22 170519 username hashtadani4 170519 mac 170519 bytes_out 0 170519 bytes_in 0 170519 station_ip 83.122.133.213 170519 port 6 170519 unique_id port 170519 remote_ip 10.8.0.22 170520 username aminvpn 170520 mac 170520 bytes_out 0 170520 bytes_in 0 170520 station_ip 83.122.4.43 170520 port 10 170520 unique_id port 170520 remote_ip 10.8.0.58 170521 username hashtadani4 170521 mac 170521 bytes_out 0 170521 bytes_in 0 170521 station_ip 83.122.133.213 170521 port 10 170521 unique_id port 170521 remote_ip 10.8.0.22 170523 username hashtadani4 170523 mac 170523 bytes_out 0 170523 bytes_in 0 170523 station_ip 83.122.133.213 170523 port 10 170523 unique_id port 170523 remote_ip 10.8.0.22 170525 username jafari 170525 kill_reason Another user logged on this global unique id 170525 mac 170525 bytes_out 0 170525 bytes_in 0 170525 station_ip 89.47.68.14 170525 port 1 170525 unique_id port 170525 remote_ip 10.8.0.86 170526 username forozandeh1 170526 mac 170526 bytes_out 2542749 170526 bytes_in 26452360 170526 station_ip 37.129.74.176 170526 port 13 170526 unique_id port 170526 remote_ip 10.8.0.30 170529 username hashtadani4 170529 mac 170529 bytes_out 0 170529 bytes_in 0 170529 station_ip 83.122.133.213 170529 port 10 170529 unique_id port 170529 remote_ip 10.8.0.22 170531 username kalantary 170531 mac 170531 bytes_out 266895 170531 bytes_in 1368183 170531 station_ip 83.123.85.252 170531 port 12 170531 unique_id port 170531 remote_ip 10.8.0.50 170534 username hashtadani4 170534 mac 170534 bytes_out 0 170534 bytes_in 0 170534 station_ip 83.122.133.213 170534 port 10 170534 unique_id port 170534 remote_ip 10.8.0.22 170539 username sedighe 170539 mac 170539 bytes_out 86500 170539 bytes_in 70683 170539 station_ip 37.129.93.235 170539 port 5 170539 unique_id port 170539 remote_ip 10.8.0.78 170544 username aminvpn 170544 mac 170544 bytes_out 0 170544 bytes_in 0 170544 station_ip 83.122.4.43 170544 port 5 170544 unique_id port 170544 remote_ip 10.8.0.58 170546 username sedighe 170546 mac 170546 bytes_out 1903 170546 bytes_in 5206 170546 station_ip 37.129.93.235 170546 port 6 170546 unique_id port 170546 remote_ip 10.8.0.78 170547 username aminvpn 170547 mac 170547 bytes_out 0 170547 bytes_in 0 170547 station_ip 83.122.4.43 170547 port 10 170547 unique_id port 170547 remote_ip 10.8.0.58 170548 username aminvpn 170548 unique_id port 170548 terminate_cause Lost-Carrier 170548 bytes_out 2979411 170548 bytes_in 11236686 170548 station_ip 93.110.42.81 170548 port 15728642 170548 nas_port_type Virtual 170548 remote_ip 5.5.5.250 170550 username hashtadani4 170550 mac 170550 bytes_out 0 170550 bytes_in 0 170550 station_ip 5.202.2.109 170550 port 10 170550 unique_id port 170550 remote_ip 10.8.0.22 170554 username hashtadani4 170554 mac 170554 bytes_out 0 170554 bytes_in 0 170554 station_ip 5.202.2.109 170554 port 12 170554 unique_id port 170554 remote_ip 10.8.0.22 170555 username hashtadani4 170555 mac 170555 bytes_out 0 170555 bytes_in 0 170555 station_ip 5.202.2.109 170555 port 13 170555 unique_id port 170555 remote_ip 10.8.0.22 170556 username sedighe 170556 mac 170556 bytes_out 11590 170556 bytes_in 21901 170556 station_ip 83.122.179.90 170556 port 7 170556 unique_id port 170556 remote_ip 10.8.0.78 170558 username aminvpn 170558 mac 170558 bytes_out 187480 170558 bytes_in 1604466 170558 station_ip 5.119.94.158 170558 port 10 170558 unique_id port 170558 remote_ip 10.8.0.58 170560 username hashtadani4 170560 mac 170560 bytes_out 0 170560 bytes_in 0 170560 station_ip 37.129.196.117 170560 port 16 170560 unique_id port 170560 remote_ip 10.8.0.22 170563 username hashtadani4 170563 mac 170563 bytes_out 0 170563 bytes_in 0 170563 station_ip 37.129.196.117 170563 port 16 170563 unique_id port 170563 remote_ip 10.8.0.22 170565 username hashtadani4 170565 mac 170565 bytes_out 0 170565 bytes_in 0 170565 station_ip 37.129.196.117 170565 port 13 170565 unique_id port 170565 remote_ip 10.8.0.22 170535 mac 170535 bytes_out 7503 170535 bytes_in 9566 170535 station_ip 5.119.94.158 170535 port 6 170535 unique_id port 170535 remote_ip 10.8.0.58 170536 username hashtadani4 170536 mac 170536 bytes_out 0 170536 bytes_in 0 170536 station_ip 83.122.133.213 170536 port 6 170536 unique_id port 170536 remote_ip 10.8.0.22 170537 username hashtadani4 170537 mac 170537 bytes_out 0 170537 bytes_in 0 170537 station_ip 5.202.2.109 170537 port 6 170537 unique_id port 170537 remote_ip 10.8.0.22 170542 username aminvpn 170542 mac 170542 bytes_out 4596 170542 bytes_in 6490 170542 station_ip 5.119.94.158 170542 port 6 170542 unique_id port 170542 remote_ip 10.8.0.58 170549 username aminvpn 170549 mac 170549 bytes_out 0 170549 bytes_in 0 170549 station_ip 5.119.94.158 170549 port 12 170549 unique_id port 170549 remote_ip 10.8.0.58 170551 username hashtadani4 170551 kill_reason Maximum check online fails reached 170551 mac 170551 bytes_out 0 170551 bytes_in 0 170551 station_ip 5.202.2.109 170551 port 5 170551 unique_id port 170553 username jafari 170553 kill_reason Another user logged on this global unique id 170553 mac 170553 bytes_out 0 170553 bytes_in 0 170553 station_ip 89.47.68.14 170553 port 1 170553 unique_id port 170561 username hashtadani4 170561 kill_reason Maximum check online fails reached 170561 mac 170561 bytes_out 0 170561 bytes_in 0 170561 station_ip 37.129.196.117 170561 port 15 170561 unique_id port 170562 username sedighe 170562 mac 170562 bytes_out 22084 170562 bytes_in 13794 170562 station_ip 37.129.96.241 170562 port 13 170562 unique_id port 170562 remote_ip 10.8.0.78 170564 username vanila 170564 mac 170564 bytes_out 269157 170564 bytes_in 833264 170564 station_ip 83.122.236.174 170564 port 12 170564 unique_id port 170564 remote_ip 10.8.0.46 170571 username hashtadani4 170571 mac 170571 bytes_out 0 170571 bytes_in 0 170571 station_ip 37.129.196.117 170571 port 10 170571 unique_id port 170571 remote_ip 10.8.0.22 170576 username hashtadani4 170576 mac 170576 bytes_out 0 170576 bytes_in 0 170576 station_ip 37.129.196.117 170576 port 10 170576 unique_id port 170576 remote_ip 10.8.0.22 170581 username hashtadani4 170581 mac 170581 bytes_out 0 170581 bytes_in 0 170581 station_ip 37.129.196.117 170581 port 10 170581 unique_id port 170581 remote_ip 10.8.0.22 170582 username hashtadani4 170582 mac 170582 bytes_out 0 170582 bytes_in 0 170582 station_ip 37.129.196.117 170582 port 10 170582 unique_id port 170582 remote_ip 10.8.0.22 170587 username hashtadani4 170587 mac 170587 bytes_out 0 170587 bytes_in 0 170587 station_ip 37.129.196.117 170587 port 10 170587 unique_id port 170587 remote_ip 10.8.0.22 170588 username hashtadani4 170588 mac 170588 bytes_out 0 170588 bytes_in 0 170588 station_ip 37.129.196.117 170588 port 10 170588 unique_id port 170588 remote_ip 10.8.0.22 170592 username mohammadmahdi 170592 kill_reason Another user logged on this global unique id 170592 mac 170592 bytes_out 0 170592 bytes_in 0 170592 station_ip 5.119.206.241 170592 port 6 170592 unique_id port 170592 remote_ip 10.8.0.90 170593 username aminvpn 170593 mac 170593 bytes_out 89784 170593 bytes_in 695005 170593 station_ip 5.119.94.158 170593 port 13 170593 unique_id port 170593 remote_ip 10.8.0.58 170597 username vanila 170597 mac 170597 bytes_out 399673 170597 bytes_in 612713 170597 station_ip 83.122.236.174 170597 port 12 170597 unique_id port 170597 remote_ip 10.8.0.46 170599 username sedighe 170599 mac 170566 username hashtadani4 170566 mac 170566 bytes_out 0 170566 bytes_in 0 170566 station_ip 37.129.196.117 170566 port 12 170566 unique_id port 170566 remote_ip 10.8.0.22 170569 username barzegar 170569 mac 170569 bytes_out 0 170569 bytes_in 0 170569 station_ip 5.119.111.133 170569 port 10 170569 unique_id port 170569 remote_ip 10.8.0.10 170573 username kalantary 170573 mac 170573 bytes_out 549974 170573 bytes_in 5677043 170573 station_ip 83.123.85.252 170573 port 14 170573 unique_id port 170573 remote_ip 10.8.0.50 170575 username hashtadani4 170575 mac 170575 bytes_out 0 170575 bytes_in 0 170575 station_ip 37.129.196.117 170575 port 10 170575 unique_id port 170575 remote_ip 10.8.0.22 170580 username aminvpn 170580 mac 170580 bytes_out 0 170580 bytes_in 0 170580 station_ip 83.122.4.43 170580 port 10 170580 unique_id port 170580 remote_ip 10.8.0.58 170586 username hashtadani4 170586 mac 170586 bytes_out 0 170586 bytes_in 0 170586 station_ip 37.129.196.117 170586 port 10 170586 unique_id port 170586 remote_ip 10.8.0.22 170590 username hashtadani4 170590 mac 170590 bytes_out 0 170590 bytes_in 0 170590 station_ip 37.129.196.117 170590 port 16 170590 unique_id port 170590 remote_ip 10.8.0.22 170595 username hashtadani4 170595 mac 170595 bytes_out 0 170595 bytes_in 0 170595 station_ip 37.129.196.117 170595 port 13 170595 unique_id port 170595 remote_ip 10.8.0.22 170596 username aminvpn 170596 mac 170596 bytes_out 0 170596 bytes_in 0 170596 station_ip 83.122.4.43 170596 port 16 170596 unique_id port 170596 remote_ip 10.8.0.58 170598 username hashtadani4 170598 mac 170598 bytes_out 0 170598 bytes_in 0 170598 station_ip 37.129.196.117 170598 port 16 170598 unique_id port 170598 remote_ip 10.8.0.22 170600 username aminvpn 170600 mac 170600 bytes_out 5672 170600 bytes_in 8126 170600 station_ip 5.119.94.158 170600 port 13 170600 unique_id port 170600 remote_ip 10.8.0.58 170608 username hashtadani4 170608 mac 170608 bytes_out 0 170608 bytes_in 0 170608 station_ip 37.129.196.117 170608 port 16 170608 unique_id port 170608 remote_ip 10.8.0.22 170612 username hashtadani4 170612 mac 170612 bytes_out 0 170612 bytes_in 0 170612 station_ip 37.129.196.117 170612 port 8 170612 unique_id port 170612 remote_ip 10.8.0.22 170614 username aminvpn 170614 mac 170614 bytes_out 5011 170614 bytes_in 6984 170614 station_ip 5.119.94.158 170614 port 18 170614 unique_id port 170614 remote_ip 10.8.0.58 170615 username mostafa_es78 170615 mac 170615 bytes_out 0 170615 bytes_in 0 170615 station_ip 83.123.93.179 170615 port 10 170615 unique_id port 170615 remote_ip 10.8.0.34 170619 username barzegar 170619 mac 170619 bytes_out 0 170619 bytes_in 0 170619 station_ip 5.119.111.133 170619 port 7 170619 unique_id port 170619 remote_ip 10.8.0.10 170621 username aminvpn 170621 mac 170621 bytes_out 0 170621 bytes_in 0 170621 station_ip 83.122.4.43 170621 port 8 170621 unique_id port 170621 remote_ip 10.8.0.58 170625 username hashtadani4 170625 mac 170625 bytes_out 0 170625 bytes_in 0 170625 station_ip 37.129.196.117 170625 port 10 170625 unique_id port 170625 remote_ip 10.8.0.22 170629 username hashtadani4 170629 mac 170629 bytes_out 0 170629 bytes_in 0 170629 station_ip 37.129.196.117 170629 port 10 170629 unique_id port 170629 remote_ip 10.8.0.22 170632 username mostafa_es78 170632 mac 170632 bytes_out 0 170632 bytes_in 0 170632 station_ip 37.129.182.62 170567 bytes_out 89650 170567 bytes_in 1412594 170567 station_ip 83.122.237.144 170567 port 10 170567 unique_id port 170567 remote_ip 10.8.0.94 170568 username hashtadani4 170568 mac 170568 bytes_out 0 170568 bytes_in 0 170568 station_ip 37.129.196.117 170568 port 12 170568 unique_id port 170568 remote_ip 10.8.0.22 170570 username hashtadani4 170570 mac 170570 bytes_out 0 170570 bytes_in 0 170570 station_ip 37.129.196.117 170570 port 12 170570 unique_id port 170570 remote_ip 10.8.0.22 170572 username hashtadani4 170572 mac 170572 bytes_out 0 170572 bytes_in 0 170572 station_ip 37.129.196.117 170572 port 10 170572 unique_id port 170572 remote_ip 10.8.0.22 170574 username hashtadani4 170574 mac 170574 bytes_out 0 170574 bytes_in 0 170574 station_ip 37.129.196.117 170574 port 10 170574 unique_id port 170574 remote_ip 10.8.0.22 170577 username aminvpn 170577 mac 170577 bytes_out 6416 170577 bytes_in 8163 170577 station_ip 5.119.94.158 170577 port 17 170577 unique_id port 170577 remote_ip 10.8.0.58 170578 username hashtadani4 170578 mac 170578 bytes_out 0 170578 bytes_in 0 170578 station_ip 37.129.196.117 170578 port 12 170578 unique_id port 170578 remote_ip 10.8.0.22 170579 username hashtadani4 170579 mac 170579 bytes_out 0 170579 bytes_in 0 170579 station_ip 37.129.196.117 170579 port 13 170579 unique_id port 170579 remote_ip 10.8.0.22 170583 username hashtadani4 170583 mac 170583 bytes_out 0 170583 bytes_in 0 170583 station_ip 37.129.196.117 170583 port 10 170583 unique_id port 170583 remote_ip 10.8.0.22 170584 username hashtadani4 170584 mac 170584 bytes_out 0 170584 bytes_in 0 170584 station_ip 37.129.196.117 170584 port 10 170584 unique_id port 170584 remote_ip 10.8.0.22 170585 username hashtadani4 170585 mac 170585 bytes_out 0 170585 bytes_in 0 170585 station_ip 37.129.196.117 170585 port 10 170585 unique_id port 170585 remote_ip 10.8.0.22 170589 username sedighe 170589 mac 170589 bytes_out 21014 170589 bytes_in 24656 170589 station_ip 37.129.96.241 170589 port 18 170589 unique_id port 170589 remote_ip 10.8.0.78 170591 username jafari 170591 kill_reason Another user logged on this global unique id 170591 mac 170591 bytes_out 0 170591 bytes_in 0 170591 station_ip 89.47.68.14 170591 port 1 170591 unique_id port 170594 username hashtadani4 170594 mac 170594 bytes_out 0 170594 bytes_in 0 170594 station_ip 37.129.196.117 170594 port 13 170594 unique_id port 170594 remote_ip 10.8.0.22 170603 username hashtadani4 170603 mac 170603 bytes_out 0 170603 bytes_in 0 170603 station_ip 37.129.196.117 170603 port 8 170603 unique_id port 170603 remote_ip 10.8.0.22 170604 username hashtadani4 170604 mac 170604 bytes_out 0 170604 bytes_in 0 170604 station_ip 37.129.196.117 170604 port 8 170604 unique_id port 170604 remote_ip 10.8.0.22 170607 username mostafa_es78 170607 mac 170607 bytes_out 111706 170607 bytes_in 481489 170607 station_ip 83.123.93.179 170607 port 17 170607 unique_id port 170607 remote_ip 10.8.0.34 170611 username hashtadani4 170611 mac 170611 bytes_out 0 170611 bytes_in 0 170611 station_ip 37.129.196.117 170611 port 8 170611 unique_id port 170611 remote_ip 10.8.0.22 170613 username godarzi 170613 mac 170613 bytes_out 1205273 170613 bytes_in 9870612 170613 station_ip 5.119.46.130 170613 port 7 170613 unique_id port 170613 remote_ip 10.8.0.38 170616 username hashtadani4 170616 mac 170616 bytes_out 0 170616 bytes_in 0 170616 station_ip 37.129.196.117 170599 bytes_out 10314 170599 bytes_in 10617 170599 station_ip 83.123.64.163 170599 port 10 170599 unique_id port 170599 remote_ip 10.8.0.78 170601 username hashtadani4 170601 mac 170601 bytes_out 0 170601 bytes_in 0 170601 station_ip 37.129.196.117 170601 port 12 170601 unique_id port 170601 remote_ip 10.8.0.22 170602 username mostafa_es78 170602 mac 170602 bytes_out 173316 170602 bytes_in 277454 170602 station_ip 37.129.182.62 170602 port 8 170602 unique_id port 170602 remote_ip 10.8.0.34 170605 username aminvpn 170605 mac 170605 bytes_out 0 170605 bytes_in 0 170605 station_ip 83.122.4.43 170605 port 16 170605 unique_id port 170605 remote_ip 10.8.0.58 170606 username hashtadani4 170606 mac 170606 bytes_out 0 170606 bytes_in 0 170606 station_ip 37.129.196.117 170606 port 8 170606 unique_id port 170606 remote_ip 10.8.0.22 170609 username sedighe 170609 mac 170609 bytes_out 4627 170609 bytes_in 8728 170609 station_ip 83.123.64.163 170609 port 10 170609 unique_id port 170609 remote_ip 10.8.0.78 170610 username mostafa_es78 170610 mac 170610 bytes_out 0 170610 bytes_in 0 170610 station_ip 37.129.182.62 170610 port 8 170610 unique_id port 170610 remote_ip 10.8.0.34 170617 username hatami 170617 mac 170617 bytes_out 140035 170617 bytes_in 920366 170617 station_ip 151.235.97.37 170617 port 13 170617 unique_id port 170617 remote_ip 10.8.0.98 170622 username mostafa_es78 170622 mac 170622 bytes_out 0 170622 bytes_in 0 170622 station_ip 37.129.182.62 170622 port 18 170622 unique_id port 170622 remote_ip 10.8.0.34 170627 username hashtadani4 170627 mac 170627 bytes_out 0 170627 bytes_in 0 170627 station_ip 37.129.196.117 170627 port 10 170627 unique_id port 170627 remote_ip 10.8.0.22 170628 username aminvpn 170628 mac 170628 bytes_out 4701 170628 bytes_in 10104 170628 station_ip 5.119.94.158 170628 port 7 170628 unique_id port 170628 remote_ip 10.8.0.58 170634 username sedighe 170634 mac 170634 bytes_out 29392 170634 bytes_in 20866 170634 station_ip 83.122.224.65 170634 port 16 170634 unique_id port 170634 remote_ip 10.8.0.78 170635 username mostafa_es78 170635 mac 170635 bytes_out 24341 170635 bytes_in 177644 170635 station_ip 83.123.93.179 170635 port 8 170635 unique_id port 170635 remote_ip 10.8.0.34 170639 username mostafa_es78 170639 mac 170639 bytes_out 0 170639 bytes_in 0 170639 station_ip 83.123.93.179 170639 port 10 170639 unique_id port 170639 remote_ip 10.8.0.34 170640 username aminvpn 170640 mac 170640 bytes_out 0 170640 bytes_in 0 170640 station_ip 5.119.94.158 170640 port 13 170640 unique_id port 170640 remote_ip 10.8.0.58 170643 username aminvpn 170643 mac 170643 bytes_out 0 170643 bytes_in 0 170643 station_ip 5.119.94.158 170643 port 16 170643 unique_id port 170643 remote_ip 10.8.0.58 170646 username mostafa_es78 170646 mac 170646 bytes_out 0 170646 bytes_in 0 170646 station_ip 37.129.182.62 170646 port 16 170646 unique_id port 170646 remote_ip 10.8.0.34 170647 username mohammadmahdi 170647 kill_reason Another user logged on this global unique id 170647 mac 170647 bytes_out 0 170647 bytes_in 0 170647 station_ip 5.119.206.241 170647 port 6 170647 unique_id port 170651 username sekonji3 170651 mac 170651 bytes_out 907036 170651 bytes_in 14596337 170651 station_ip 113.203.115.98 170651 port 14 170651 unique_id port 170651 remote_ip 10.8.0.62 170652 username mostafa_es78 170652 mac 170652 bytes_out 132813 170652 bytes_in 2454225 170652 station_ip 83.123.93.179 170616 port 17 170616 unique_id port 170616 remote_ip 10.8.0.22 170618 username hashtadani4 170618 mac 170618 bytes_out 0 170618 bytes_in 0 170618 station_ip 37.129.196.117 170618 port 10 170618 unique_id port 170618 remote_ip 10.8.0.22 170620 username hashtadani4 170620 mac 170620 bytes_out 0 170620 bytes_in 0 170620 station_ip 37.129.196.117 170620 port 10 170620 unique_id port 170620 remote_ip 10.8.0.22 170623 username hashtadani4 170623 mac 170623 bytes_out 0 170623 bytes_in 0 170623 station_ip 37.129.196.117 170623 port 10 170623 unique_id port 170623 remote_ip 10.8.0.22 170624 username hashtadani4 170624 mac 170624 bytes_out 0 170624 bytes_in 0 170624 station_ip 37.129.196.117 170624 port 10 170624 unique_id port 170624 remote_ip 10.8.0.22 170626 username jafari 170626 kill_reason Another user logged on this global unique id 170626 mac 170626 bytes_out 0 170626 bytes_in 0 170626 station_ip 89.47.68.14 170626 port 1 170626 unique_id port 170630 username aminvpn 170630 mac 170630 bytes_out 0 170630 bytes_in 0 170630 station_ip 83.122.4.43 170630 port 13 170630 unique_id port 170630 remote_ip 10.8.0.58 170631 username mostafa_es78 170631 mac 170631 bytes_out 311487 170631 bytes_in 1825029 170631 station_ip 83.123.93.179 170631 port 8 170631 unique_id port 170631 remote_ip 10.8.0.34 170633 username pourshad 170633 mac 170633 bytes_out 3831008 170633 bytes_in 35384224 170633 station_ip 5.120.195.96 170633 port 4 170633 unique_id port 170633 remote_ip 10.8.0.42 170636 username aminvpn 170636 mac 170636 bytes_out 5791 170636 bytes_in 11546 170636 station_ip 5.119.94.158 170636 port 10 170636 unique_id port 170636 remote_ip 10.8.0.58 170637 username mostafa_es78 170637 mac 170637 bytes_out 0 170637 bytes_in 0 170637 station_ip 37.129.182.62 170637 port 13 170637 unique_id port 170637 remote_ip 10.8.0.34 170641 username mostafa_es78 170641 mac 170641 bytes_out 0 170641 bytes_in 0 170641 station_ip 37.129.182.62 170641 port 8 170641 unique_id port 170641 remote_ip 10.8.0.34 170642 username aminvpn 170642 mac 170642 bytes_out 0 170642 bytes_in 0 170642 station_ip 83.122.4.43 170642 port 10 170642 unique_id port 170642 remote_ip 10.8.0.58 170644 username mostafa_es78 170644 mac 170644 bytes_out 0 170644 bytes_in 0 170644 station_ip 83.123.93.179 170644 port 13 170644 unique_id port 170644 remote_ip 10.8.0.34 170648 username barzegar 170648 mac 170648 bytes_out 0 170648 bytes_in 0 170648 station_ip 5.119.111.133 170648 port 16 170648 unique_id port 170648 remote_ip 10.8.0.10 170650 username komeil 170650 mac 170650 bytes_out 630206 170650 bytes_in 9202838 170650 station_ip 113.203.54.94 170650 port 12 170650 unique_id port 170650 remote_ip 10.8.0.102 170653 username mostafa_es78 170653 mac 170653 bytes_out 0 170653 bytes_in 0 170653 station_ip 37.129.182.62 170653 port 10 170653 unique_id port 170653 remote_ip 10.8.0.34 170654 username mostafa_es78 170654 mac 170654 bytes_out 0 170654 bytes_in 0 170654 station_ip 83.123.93.179 170654 port 12 170654 unique_id port 170654 remote_ip 10.8.0.34 170656 username arash 170656 mac 170656 bytes_out 2373636 170656 bytes_in 34478523 170656 station_ip 37.27.7.92 170656 port 8 170656 unique_id port 170656 remote_ip 10.8.0.70 170659 username sedighe 170659 mac 170659 bytes_out 51581 170659 bytes_in 469593 170659 station_ip 83.122.224.65 170659 port 4 170659 unique_id port 170659 remote_ip 10.8.0.78 170660 username mostafa_es78 170632 port 13 170632 unique_id port 170632 remote_ip 10.8.0.34 170638 username aminvpn 170638 mac 170638 bytes_out 0 170638 bytes_in 0 170638 station_ip 83.122.4.43 170638 port 8 170638 unique_id port 170638 remote_ip 10.8.0.58 170645 username aminvpn 170645 mac 170645 bytes_out 0 170645 bytes_in 0 170645 station_ip 83.122.4.43 170645 port 17 170645 unique_id port 170645 remote_ip 10.8.0.58 170649 username kalantary 170649 mac 170649 bytes_out 270532 170649 bytes_in 2667789 170649 station_ip 83.123.25.252 170649 port 10 170649 unique_id port 170649 remote_ip 10.8.0.50 170661 username aminvpn 170661 mac 170661 bytes_out 0 170661 bytes_in 0 170661 station_ip 83.122.4.43 170661 port 8 170661 unique_id port 170661 remote_ip 10.8.0.58 170674 username mostafa_es78 170674 mac 170674 bytes_out 0 170674 bytes_in 0 170674 station_ip 37.129.182.62 170674 port 4 170674 unique_id port 170674 remote_ip 10.8.0.34 170679 username sekonji3 170679 mac 170679 bytes_out 7819 170679 bytes_in 26659 170679 station_ip 113.203.115.98 170679 port 13 170679 unique_id port 170679 remote_ip 10.8.0.62 170683 username mostafa_es78 170683 mac 170683 bytes_out 9800 170683 bytes_in 55875 170683 station_ip 83.123.93.179 170683 port 4 170683 unique_id port 170683 remote_ip 10.8.0.34 170684 username mostafa_es78 170684 mac 170684 bytes_out 0 170684 bytes_in 0 170684 station_ip 37.129.182.62 170684 port 10 170684 unique_id port 170684 remote_ip 10.8.0.34 170688 username jafari 170688 mac 170688 bytes_out 0 170688 bytes_in 0 170688 station_ip 89.47.68.14 170688 port 1 170688 unique_id port 170689 username sekonji3 170689 mac 170689 bytes_out 0 170689 bytes_in 0 170689 station_ip 113.203.115.98 170689 port 1 170689 unique_id port 170689 remote_ip 10.8.0.62 170690 username barzegar 170690 mac 170690 bytes_out 0 170690 bytes_in 0 170690 station_ip 5.119.111.133 170690 port 1 170690 unique_id port 170690 remote_ip 10.8.0.10 170694 username mohammadmahdi 170694 mac 170694 bytes_out 0 170694 bytes_in 0 170694 station_ip 5.119.206.241 170694 port 6 170694 unique_id port 170695 username aminvpn 170695 unique_id port 170695 terminate_cause User-Request 170695 bytes_out 12855000 170695 bytes_in 402898323 170695 station_ip 5.119.94.158 170695 port 15728641 170695 nas_port_type Virtual 170695 remote_ip 5.5.5.252 170700 username sekonji3 170700 mac 170700 bytes_out 0 170700 bytes_in 0 170700 station_ip 113.203.115.98 170700 port 4 170700 unique_id port 170700 remote_ip 10.8.0.62 170714 username barzegar 170714 mac 170714 bytes_out 4097 170714 bytes_in 6268 170714 station_ip 5.119.111.133 170714 port 4 170714 unique_id port 170714 remote_ip 10.8.0.10 170717 username aminvpn 170717 unique_id port 170717 terminate_cause User-Request 170717 bytes_out 447462 170717 bytes_in 3369649 170717 station_ip 5.119.94.158 170717 port 15728673 170717 nas_port_type Virtual 170717 remote_ip 5.5.5.247 170718 username khademi 170718 kill_reason Another user logged on this global unique id 170718 mac 170718 bytes_out 0 170718 bytes_in 0 170718 station_ip 83.122.191.219 170718 port 3 170718 unique_id port 170727 username hoorieh 170727 mac 170727 bytes_out 0 170727 bytes_in 0 170727 station_ip 5.120.170.199 170727 port 6 170727 unique_id port 170731 username aminvpn 170731 mac 170731 bytes_out 0 170731 bytes_in 0 170731 station_ip 83.122.4.43 170731 port 6 170731 unique_id port 170731 remote_ip 10.8.0.58 170733 username Mahin 170652 port 17 170652 unique_id port 170652 remote_ip 10.8.0.34 170655 username mostafa_es78 170655 mac 170655 bytes_out 0 170655 bytes_in 0 170655 station_ip 37.129.182.62 170655 port 10 170655 unique_id port 170655 remote_ip 10.8.0.34 170657 username sekonji3 170657 mac 170657 bytes_out 0 170657 bytes_in 0 170657 station_ip 113.203.115.98 170657 port 10 170657 unique_id port 170657 remote_ip 10.8.0.62 170658 username aminvpn 170658 mac 170658 bytes_out 7395 170658 bytes_in 9496 170658 station_ip 5.119.94.158 170658 port 13 170658 unique_id port 170658 remote_ip 10.8.0.58 170662 username vanila 170662 mac 170662 bytes_out 482602 170662 bytes_in 2655543 170662 station_ip 83.122.191.174 170662 port 18 170662 unique_id port 170662 remote_ip 10.8.0.46 170663 username mostafa_es78 170663 mac 170663 bytes_out 0 170663 bytes_in 0 170663 station_ip 37.129.182.62 170663 port 4 170663 unique_id port 170663 remote_ip 10.8.0.34 170664 username mostafa_es78 170664 mac 170664 bytes_out 0 170664 bytes_in 0 170664 station_ip 83.123.93.179 170664 port 13 170664 unique_id port 170664 remote_ip 10.8.0.34 170666 username sedighe 170666 mac 170666 bytes_out 6169 170666 bytes_in 8513 170666 station_ip 83.122.224.65 170666 port 10 170666 unique_id port 170666 remote_ip 10.8.0.78 170667 username sekonji3 170667 mac 170667 bytes_out 0 170667 bytes_in 0 170667 station_ip 113.203.115.98 170667 port 10 170667 unique_id port 170667 remote_ip 10.8.0.62 170668 username barzegar 170668 mac 170668 bytes_out 0 170668 bytes_in 0 170668 station_ip 5.119.111.133 170668 port 10 170668 unique_id port 170668 remote_ip 10.8.0.10 170669 username sedighe 170669 mac 170669 bytes_out 4414 170669 bytes_in 7711 170669 station_ip 83.122.224.65 170669 port 4 170669 unique_id port 170669 remote_ip 10.8.0.78 170670 username barzegar 170670 mac 170670 bytes_out 0 170670 bytes_in 0 170670 station_ip 5.119.111.133 170670 port 4 170670 unique_id port 170670 remote_ip 10.8.0.10 170676 username jafari 170676 kill_reason Another user logged on this global unique id 170676 mac 170676 bytes_out 0 170676 bytes_in 0 170676 station_ip 89.47.68.14 170676 port 1 170676 unique_id port 170677 username aminvpn 170677 mac 170677 bytes_out 10075 170677 bytes_in 12643 170677 station_ip 5.119.94.158 170677 port 12 170677 unique_id port 170677 remote_ip 10.8.0.58 170680 username aminvpn 170680 mac 170680 bytes_out 0 170680 bytes_in 0 170680 station_ip 83.122.4.43 170680 port 4 170680 unique_id port 170680 remote_ip 10.8.0.58 170682 username khademi 170682 kill_reason Another user logged on this global unique id 170682 mac 170682 bytes_out 0 170682 bytes_in 0 170682 station_ip 83.122.191.219 170682 port 3 170682 unique_id port 170687 username mohammadmahdi 170687 kill_reason Another user logged on this global unique id 170687 mac 170687 bytes_out 0 170687 bytes_in 0 170687 station_ip 5.119.206.241 170687 port 6 170687 unique_id port 170692 username sekonji3 170692 mac 170692 bytes_out 0 170692 bytes_in 0 170692 station_ip 113.203.115.98 170692 port 4 170692 unique_id port 170692 remote_ip 10.8.0.62 170693 username alipour 170693 mac 170693 bytes_out 726514 170693 bytes_in 7027793 170693 station_ip 83.122.19.42 170693 port 2 170693 unique_id port 170693 remote_ip 10.8.0.26 170699 username aminvpn 170699 mac 170699 bytes_out 0 170699 bytes_in 0 170699 station_ip 83.122.4.43 170699 port 4 170699 unique_id port 170699 remote_ip 10.8.0.58 170660 mac 170660 bytes_out 11124 170660 bytes_in 40477 170660 station_ip 83.123.93.179 170660 port 12 170660 unique_id port 170660 remote_ip 10.8.0.34 170665 username mostafa_es78 170665 mac 170665 bytes_out 0 170665 bytes_in 0 170665 station_ip 37.129.182.62 170665 port 4 170665 unique_id port 170665 remote_ip 10.8.0.34 170671 username mostafa_es78 170671 mac 170671 bytes_out 166002 170671 bytes_in 134457 170671 station_ip 83.123.93.179 170671 port 13 170671 unique_id port 170671 remote_ip 10.8.0.34 170672 username mostafa_es78 170672 mac 170672 bytes_out 0 170672 bytes_in 0 170672 station_ip 37.129.182.62 170672 port 4 170672 unique_id port 170672 remote_ip 10.8.0.34 170673 username mostafa_es78 170673 mac 170673 bytes_out 0 170673 bytes_in 0 170673 station_ip 83.123.93.179 170673 port 14 170673 unique_id port 170673 remote_ip 10.8.0.34 170675 username arash 170675 mac 170675 bytes_out 507066 170675 bytes_in 9599514 170675 station_ip 37.27.29.198 170675 port 10 170675 unique_id port 170675 remote_ip 10.8.0.70 170678 username mostafa_es78 170678 mac 170678 bytes_out 0 170678 bytes_in 0 170678 station_ip 83.123.93.179 170678 port 16 170678 unique_id port 170678 remote_ip 10.8.0.34 170681 username mostafa_es78 170681 mac 170681 bytes_out 0 170681 bytes_in 0 170681 station_ip 37.129.182.62 170681 port 10 170681 unique_id port 170681 remote_ip 10.8.0.34 170685 username vanila 170685 mac 170685 bytes_out 854087 170685 bytes_in 5826044 170685 station_ip 83.122.191.174 170685 port 8 170685 unique_id port 170685 remote_ip 10.8.0.46 170686 username mostafa_es78 170686 mac 170686 bytes_out 0 170686 bytes_in 0 170686 station_ip 83.123.93.179 170686 port 4 170686 unique_id port 170686 remote_ip 10.8.0.34 170691 username kalantary 170691 mac 170691 bytes_out 706619 170691 bytes_in 6388564 170691 station_ip 83.123.126.8 170691 port 14 170691 unique_id port 170691 remote_ip 10.8.0.50 170696 username khademi 170696 kill_reason Another user logged on this global unique id 170696 mac 170696 bytes_out 0 170696 bytes_in 0 170696 station_ip 83.122.191.219 170696 port 3 170696 unique_id port 170697 username alipour 170697 mac 170697 bytes_out 4500 170697 bytes_in 7307 170697 station_ip 83.122.19.42 170697 port 1 170697 unique_id port 170697 remote_ip 10.8.0.26 170698 username aminvpn 170698 mac 170698 bytes_out 25828 170698 bytes_in 24655 170698 station_ip 5.119.94.158 170698 port 12 170698 unique_id port 170698 remote_ip 10.8.0.58 170702 username sekonji3 170702 mac 170702 bytes_out 0 170702 bytes_in 0 170702 station_ip 113.203.115.98 170702 port 4 170702 unique_id port 170702 remote_ip 10.8.0.62 170703 username sekonji3 170703 mac 170703 bytes_out 0 170703 bytes_in 0 170703 station_ip 113.203.115.98 170703 port 4 170703 unique_id port 170703 remote_ip 10.8.0.62 170705 username mohammadmahdi 170705 mac 170705 bytes_out 31210 170705 bytes_in 55219 170705 station_ip 5.119.206.241 170705 port 4 170705 unique_id port 170705 remote_ip 10.8.0.90 170707 username mirzaei 170707 mac 170707 bytes_out 1221474 170707 bytes_in 6322722 170707 station_ip 5.120.27.93 170707 port 7 170707 unique_id port 170707 remote_ip 10.8.0.106 170709 username pourshad 170709 kill_reason Another user logged on this global unique id 170709 mac 170709 bytes_out 0 170709 bytes_in 0 170709 station_ip 5.120.195.96 170709 port 10 170709 unique_id port 170709 remote_ip 10.8.0.42 170710 username aminvpn 170710 mac 170710 bytes_out 0 170701 username sekonji3 170701 mac 170701 bytes_out 0 170701 bytes_in 0 170701 station_ip 113.203.115.98 170701 port 4 170701 unique_id port 170701 remote_ip 10.8.0.62 170704 username barzegar 170704 mac 170704 bytes_out 0 170704 bytes_in 0 170704 station_ip 5.119.111.133 170704 port 12 170704 unique_id port 170704 remote_ip 10.8.0.10 170706 username sekonji3 170706 mac 170706 bytes_out 0 170706 bytes_in 0 170706 station_ip 113.203.115.98 170706 port 12 170706 unique_id port 170706 remote_ip 10.8.0.62 170708 username aminvpn 170708 mac 170708 bytes_out 13510 170708 bytes_in 22656 170708 station_ip 5.119.94.158 170708 port 6 170708 unique_id port 170708 remote_ip 10.8.0.58 170711 username hoorieh 170711 kill_reason Another user logged on this global unique id 170711 mac 170711 bytes_out 0 170711 bytes_in 0 170711 station_ip 5.120.170.199 170711 port 6 170711 unique_id port 170711 remote_ip 10.8.0.114 170713 username mirzaei 170713 mac 170713 bytes_out 5986 170713 bytes_in 9723 170713 station_ip 5.120.27.93 170713 port 7 170713 unique_id port 170713 remote_ip 10.8.0.106 170715 username aminvpn 170715 mac 170715 bytes_out 2967 170715 bytes_in 4329 170715 station_ip 5.119.94.158 170715 port 14 170715 unique_id port 170715 remote_ip 10.8.0.58 170716 username aminvpn 170716 mac 170716 bytes_out 0 170716 bytes_in 0 170716 station_ip 83.122.4.43 170716 port 16 170716 unique_id port 170716 remote_ip 10.8.0.58 170719 username barzegar 170719 mac 170719 bytes_out 19216 170719 bytes_in 18567 170719 station_ip 5.119.111.133 170719 port 16 170719 unique_id port 170719 remote_ip 10.8.0.10 170721 username aminvpn 170721 mac 170721 bytes_out 5463 170721 bytes_in 7516 170721 station_ip 5.119.94.158 170721 port 17 170721 unique_id port 170721 remote_ip 10.8.0.58 170723 username forozandeh1 170723 mac 170723 bytes_out 853230 170723 bytes_in 7569942 170723 station_ip 37.129.167.118 170723 port 2 170723 unique_id port 170723 remote_ip 10.8.0.30 170726 username sekonji3 170726 mac 170726 bytes_out 362258 170726 bytes_in 6834113 170726 station_ip 113.203.115.98 170726 port 4 170726 unique_id port 170726 remote_ip 10.8.0.62 170728 username amin.saeedi 170728 unique_id port 170728 terminate_cause User-Request 170728 bytes_out 9325834 170728 bytes_in 246619996 170728 station_ip 31.59.34.125 170728 port 15728640 170728 nas_port_type Virtual 170728 remote_ip 5.5.5.254 170739 username aminvpn 170739 mac 170739 bytes_out 7997 170739 bytes_in 13020 170739 station_ip 5.119.94.158 170739 port 19 170739 unique_id port 170739 remote_ip 10.8.0.58 170740 username aminvpn 170740 mac 170740 bytes_out 0 170740 bytes_in 0 170740 station_ip 83.122.4.43 170740 port 21 170740 unique_id port 170740 remote_ip 10.8.0.58 170743 username vanila 170743 mac 170743 bytes_out 563979 170743 bytes_in 1375753 170743 station_ip 37.129.183.44 170743 port 18 170743 unique_id port 170743 remote_ip 10.8.0.46 170744 username forozandeh1 170744 mac 170744 bytes_out 703542 170744 bytes_in 10337128 170744 station_ip 83.123.12.248 170744 port 17 170744 unique_id port 170744 remote_ip 10.8.0.30 170746 username aminvpn 170746 mac 170746 bytes_out 9645 170746 bytes_in 14771 170746 station_ip 5.119.94.158 170746 port 19 170746 unique_id port 170746 remote_ip 10.8.0.58 170751 username khademi 170751 kill_reason Another user logged on this global unique id 170751 mac 170751 bytes_out 0 170751 bytes_in 0 170751 station_ip 83.122.191.219 170751 port 3 170710 bytes_in 0 170710 station_ip 83.122.4.43 170710 port 13 170710 unique_id port 170710 remote_ip 10.8.0.58 170712 username godarzi 170712 mac 170712 bytes_out 170768 170712 bytes_in 1274745 170712 station_ip 5.119.46.130 170712 port 2 170712 unique_id port 170712 remote_ip 10.8.0.38 170720 username aminvpn 170720 unique_id port 170720 terminate_cause Lost-Carrier 170720 bytes_out 2911923 170720 bytes_in 37018480 170720 station_ip 5.120.120.184 170720 port 15728650 170720 nas_port_type Virtual 170720 remote_ip 5.5.5.248 170722 username aminvpn 170722 mac 170722 bytes_out 0 170722 bytes_in 0 170722 station_ip 83.122.4.43 170722 port 18 170722 unique_id port 170722 remote_ip 10.8.0.58 170724 username aminvpn 170724 mac 170724 bytes_out 0 170724 bytes_in 0 170724 station_ip 5.119.94.158 170724 port 17 170724 unique_id port 170724 remote_ip 10.8.0.58 170725 username aminvpn 170725 mac 170725 bytes_out 0 170725 bytes_in 0 170725 station_ip 83.122.4.43 170725 port 18 170725 unique_id port 170725 remote_ip 10.8.0.58 170729 username barzegar 170729 mac 170729 bytes_out 15791 170729 bytes_in 15690 170729 station_ip 5.119.111.133 170729 port 2 170729 unique_id port 170729 remote_ip 10.8.0.10 170730 username aminvpn 170730 mac 170730 bytes_out 3918 170730 bytes_in 5979 170730 station_ip 5.119.94.158 170730 port 17 170730 unique_id port 170730 remote_ip 10.8.0.58 170732 username mohammadjavad 170732 mac 170732 bytes_out 317565 170732 bytes_in 1411946 170732 station_ip 113.203.67.218 170732 port 12 170732 unique_id port 170732 remote_ip 10.8.0.110 170735 username khademi 170735 kill_reason Another user logged on this global unique id 170735 mac 170735 bytes_out 0 170735 bytes_in 0 170735 station_ip 83.122.191.219 170735 port 3 170735 unique_id port 170737 username barzegar 170737 mac 170737 bytes_out 3624 170737 bytes_in 5509 170737 station_ip 5.119.111.133 170737 port 17 170737 unique_id port 170737 remote_ip 10.8.0.10 170741 username aminvpn 170741 mac 170741 bytes_out 0 170741 bytes_in 0 170741 station_ip 5.119.94.158 170741 port 19 170741 unique_id port 170741 remote_ip 10.8.0.58 170742 username aminvpn 170742 mac 170742 bytes_out 0 170742 bytes_in 0 170742 station_ip 83.122.4.43 170742 port 21 170742 unique_id port 170742 remote_ip 10.8.0.58 170748 username barzegar 170748 mac 170748 bytes_out 6982 170748 bytes_in 9453 170748 station_ip 5.119.111.133 170748 port 12 170748 unique_id port 170748 remote_ip 10.8.0.10 170749 username aminvpn 170749 mac 170749 bytes_out 0 170749 bytes_in 0 170749 station_ip 83.122.4.43 170749 port 17 170749 unique_id port 170749 remote_ip 10.8.0.58 170750 username barzegar 170750 mac 170750 bytes_out 0 170750 bytes_in 0 170750 station_ip 5.119.111.133 170750 port 12 170750 unique_id port 170750 remote_ip 10.8.0.10 170754 username aminvpn 170754 mac 170754 bytes_out 0 170754 bytes_in 0 170754 station_ip 83.122.4.43 170754 port 12 170754 unique_id port 170754 remote_ip 10.8.0.58 170755 username barzegar 170755 mac 170755 bytes_out 3874 170755 bytes_in 5075 170755 station_ip 5.119.111.133 170755 port 7 170755 unique_id port 170755 remote_ip 10.8.0.10 170756 username aminvpn 170756 mac 170756 bytes_out 2489 170756 bytes_in 4526 170756 station_ip 5.119.94.158 170756 port 4 170756 unique_id port 170756 remote_ip 10.8.0.58 170758 username aminvpn 170758 mac 170758 bytes_out 0 170758 bytes_in 0 170758 station_ip 83.122.4.43 170733 kill_reason Relative expiration date has reached 170733 mac 170733 bytes_out 0 170733 bytes_in 0 170733 station_ip 5.120.13.107 170733 port 6 170733 unique_id port 170734 username Mahin 170734 kill_reason Relative expiration date has reached 170734 mac 170734 bytes_out 0 170734 bytes_in 0 170734 station_ip 5.120.13.107 170734 port 6 170734 unique_id port 170736 username sedighe 170736 mac 170736 bytes_out 15357 170736 bytes_in 20911 170736 station_ip 113.203.76.21 170736 port 2 170736 unique_id port 170736 remote_ip 10.8.0.78 170738 username sedighe 170738 mac 170738 bytes_out 0 170738 bytes_in 0 170738 station_ip 83.123.2.254 170738 port 6 170738 unique_id port 170738 remote_ip 10.8.0.78 170745 username moradi 170745 kill_reason Another user logged on this global unique id 170745 mac 170745 bytes_out 0 170745 bytes_in 0 170745 station_ip 37.137.47.151 170745 port 2 170745 unique_id port 170745 remote_ip 10.8.0.122 170747 username alikomsari 170747 mac 170747 bytes_out 2469759 170747 bytes_in 18751116 170747 station_ip 5.119.221.36 170747 port 7 170747 unique_id port 170747 remote_ip 10.8.0.118 170757 username tahmasebi 170757 kill_reason Another user logged on this global unique id 170757 mac 170757 bytes_out 0 170757 bytes_in 0 170757 station_ip 5.120.37.112 170757 port 6 170757 unique_id port 170757 remote_ip 10.8.0.126 170759 username moradi 170759 kill_reason Another user logged on this global unique id 170759 mac 170759 bytes_out 0 170759 bytes_in 0 170759 station_ip 37.137.47.151 170759 port 2 170759 unique_id port 170766 username arash 170766 mac 170766 bytes_out 77766 170766 bytes_in 93650 170766 station_ip 37.27.29.198 170766 port 16 170766 unique_id port 170766 remote_ip 10.8.0.70 170767 username sedighe 170767 mac 170767 bytes_out 23353 170767 bytes_in 27228 170767 station_ip 83.123.107.99 170767 port 20 170767 unique_id port 170767 remote_ip 10.8.0.78 170768 username moradi 170768 mac 170768 bytes_out 0 170768 bytes_in 0 170768 station_ip 37.137.47.151 170768 port 2 170768 unique_id port 170770 username sedighe 170770 mac 170770 bytes_out 2834 170770 bytes_in 3784 170770 station_ip 83.122.172.164 170770 port 2 170770 unique_id port 170770 remote_ip 10.8.0.78 170774 username malekpoir 170774 kill_reason Another user logged on this global unique id 170774 mac 170774 bytes_out 0 170774 bytes_in 0 170774 station_ip 5.119.6.116 170774 port 11 170774 unique_id port 170774 remote_ip 10.8.0.18 170776 username barzegar 170776 mac 170776 bytes_out 0 170776 bytes_in 0 170776 station_ip 5.119.111.133 170776 port 2 170776 unique_id port 170776 remote_ip 10.8.0.10 170777 username malekpoir 170777 mac 170777 bytes_out 0 170777 bytes_in 0 170777 station_ip 5.119.6.116 170777 port 11 170777 unique_id port 170780 username sedighe 170780 mac 170780 bytes_out 11249 170780 bytes_in 15018 170780 station_ip 83.122.172.164 170780 port 16 170780 unique_id port 170780 remote_ip 10.8.0.78 170781 username kordestani 170781 mac 170781 bytes_out 0 170781 bytes_in 0 170781 station_ip 151.235.112.210 170781 port 17 170781 unique_id port 170785 username rahim 170785 mac 170785 bytes_out 171334 170785 bytes_in 803329 170785 station_ip 5.119.218.17 170785 port 10 170785 unique_id port 170785 remote_ip 10.8.0.134 170787 username hosseine 170787 mac 170787 bytes_out 0 170787 bytes_in 0 170787 station_ip 113.203.88.22 170787 port 9 170787 unique_id port 170790 username forozandeh1 170790 mac 170790 bytes_out 1504566 170751 unique_id port 170752 username aminvpn 170752 mac 170752 bytes_out 4655 170752 bytes_in 11869 170752 station_ip 5.119.94.158 170752 port 7 170752 unique_id port 170752 remote_ip 10.8.0.58 170753 username kalantary 170753 mac 170753 bytes_out 1530779 170753 bytes_in 13290369 170753 station_ip 83.123.92.28 170753 port 4 170753 unique_id port 170753 remote_ip 10.8.0.50 170760 username vanila 170760 mac 170760 bytes_out 115416 170760 bytes_in 268845 170760 station_ip 83.122.179.161 170760 port 12 170760 unique_id port 170760 remote_ip 10.8.0.46 170761 username barzegar 170761 mac 170761 bytes_out 2011 170761 bytes_in 4296 170761 station_ip 5.119.111.133 170761 port 4 170761 unique_id port 170761 remote_ip 10.8.0.10 170762 username aminvpn 170762 mac 170762 bytes_out 2171 170762 bytes_in 4208 170762 station_ip 5.119.94.158 170762 port 17 170762 unique_id port 170762 remote_ip 10.8.0.58 170763 username aminvpn 170763 mac 170763 bytes_out 0 170763 bytes_in 0 170763 station_ip 83.122.4.43 170763 port 12 170763 unique_id port 170763 remote_ip 10.8.0.58 170764 username aminvpn 170764 mac 170764 bytes_out 160746 170764 bytes_in 1003511 170764 station_ip 5.119.94.158 170764 port 17 170764 unique_id port 170764 remote_ip 10.8.0.58 170769 username sedighe 170769 mac 170769 bytes_out 1638 170769 bytes_in 4167 170769 station_ip 83.122.172.164 170769 port 16 170769 unique_id port 170769 remote_ip 10.8.0.78 170771 username mirzaei 170771 mac 170771 bytes_out 121580 170771 bytes_in 171819 170771 station_ip 5.120.27.93 170771 port 13 170771 unique_id port 170771 remote_ip 10.8.0.106 170773 username mirzaei 170773 mac 170773 bytes_out 4107 170773 bytes_in 4630 170773 station_ip 5.120.27.93 170773 port 13 170773 unique_id port 170773 remote_ip 10.8.0.106 170779 username kordestani 170779 kill_reason Another user logged on this global unique id 170779 mac 170779 bytes_out 0 170779 bytes_in 0 170779 station_ip 151.235.112.210 170779 port 17 170779 unique_id port 170779 remote_ip 10.8.0.130 170783 username kalantary 170783 mac 170783 bytes_out 1408097 170783 bytes_in 7475114 170783 station_ip 83.123.92.28 170783 port 18 170783 unique_id port 170783 remote_ip 10.8.0.50 170784 username aminvpn 170784 unique_id port 170784 terminate_cause Lost-Carrier 170784 bytes_out 1542238 170784 bytes_in 3243106 170784 station_ip 5.120.120.184 170784 port 15728690 170784 nas_port_type Virtual 170784 remote_ip 5.5.5.246 170788 username shadkam 170788 mac 170788 bytes_out 449624 170788 bytes_in 360918 170788 station_ip 37.129.113.201 170788 port 19 170788 unique_id port 170788 remote_ip 10.8.0.74 170795 username barzegar 170795 mac 170795 bytes_out 0 170795 bytes_in 0 170795 station_ip 5.119.111.133 170795 port 9 170795 unique_id port 170795 remote_ip 10.8.0.10 170805 username yaghobi 170805 mac 170805 bytes_out 0 170805 bytes_in 0 170805 station_ip 83.122.219.172 170805 port 9 170805 unique_id port 170809 username sabaghnezhad 170809 mac 170809 bytes_out 380213 170809 bytes_in 1275957 170809 station_ip 83.123.45.48 170809 port 14 170809 unique_id port 170809 remote_ip 10.8.0.66 170811 username hashtadani4 170811 mac 170811 bytes_out 3436 170811 bytes_in 5758 170811 station_ip 83.123.137.211 170811 port 6 170811 unique_id port 170811 remote_ip 10.8.0.22 170816 username mosi 170816 mac 170816 bytes_out 2103 170816 bytes_in 4572 170816 station_ip 2.184.6.59 170816 port 3 170816 unique_id port 170816 remote_ip 10.8.0.142 170758 port 7 170758 unique_id port 170758 remote_ip 10.8.0.58 170765 username khademi 170765 kill_reason Another user logged on this global unique id 170765 mac 170765 bytes_out 0 170765 bytes_in 0 170765 station_ip 83.122.191.219 170765 port 3 170765 unique_id port 170772 username pourshad 170772 mac 170772 bytes_out 0 170772 bytes_in 0 170772 station_ip 5.120.195.96 170772 port 10 170772 unique_id port 170775 username barzegar 170775 mac 170775 bytes_out 3168 170775 bytes_in 5261 170775 station_ip 5.119.111.133 170775 port 2 170775 unique_id port 170775 remote_ip 10.8.0.10 170778 username tahmasebi 170778 mac 170778 bytes_out 0 170778 bytes_in 0 170778 station_ip 5.120.37.112 170778 port 6 170778 unique_id port 170782 username barzegar 170782 mac 170782 bytes_out 5186 170782 bytes_in 7008 170782 station_ip 5.119.111.133 170782 port 2 170782 unique_id port 170782 remote_ip 10.8.0.10 170786 username barzegar 170786 mac 170786 bytes_out 5667 170786 bytes_in 12417 170786 station_ip 5.119.111.133 170786 port 2 170786 unique_id port 170786 remote_ip 10.8.0.10 170789 username shadkam 170789 mac 170789 bytes_out 8570 170789 bytes_in 6362 170789 station_ip 37.129.113.201 170789 port 2 170789 unique_id port 170789 remote_ip 10.8.0.74 170791 username barzegar 170791 mac 170791 bytes_out 2925 170791 bytes_in 5010 170791 station_ip 5.119.111.133 170791 port 9 170791 unique_id port 170791 remote_ip 10.8.0.10 170797 username mirzaei 170797 mac 170797 bytes_out 39330 170797 bytes_in 119388 170797 station_ip 5.112.31.217 170797 port 10 170797 unique_id port 170797 remote_ip 10.8.0.106 170799 username mirzaei 170799 mac 170799 bytes_out 3963 170799 bytes_in 8124 170799 station_ip 5.114.249.7 170799 port 11 170799 unique_id port 170799 remote_ip 10.8.0.106 170800 username yaghobi 170800 kill_reason Another user logged on this global unique id 170800 mac 170800 bytes_out 0 170800 bytes_in 0 170800 station_ip 83.122.219.172 170800 port 9 170800 unique_id port 170800 remote_ip 10.8.0.138 170804 username hashtadani4 170804 mac 170804 bytes_out 0 170804 bytes_in 0 170804 station_ip 83.123.137.211 170804 port 6 170804 unique_id port 170804 remote_ip 10.8.0.22 170806 username mirzaei 170806 kill_reason Maximum check online fails reached 170806 mac 170806 bytes_out 0 170806 bytes_in 0 170806 station_ip 5.112.183.173 170806 port 4 170806 unique_id port 170810 username mirzaei 170810 mac 170810 bytes_out 35969 170810 bytes_in 153427 170810 station_ip 5.112.183.173 170810 port 6 170810 unique_id port 170810 remote_ip 10.8.0.106 170813 username mohammadmahdi 170813 mac 170813 bytes_out 0 170813 bytes_in 0 170813 station_ip 5.119.206.241 170813 port 7 170813 unique_id port 170820 username barzegar 170820 mac 170820 bytes_out 0 170820 bytes_in 0 170820 station_ip 5.119.111.133 170820 port 13 170820 unique_id port 170820 remote_ip 10.8.0.10 170830 username mohammadjavad 170830 mac 170830 bytes_out 875611 170830 bytes_in 14465743 170830 station_ip 37.129.27.48 170830 port 2 170830 unique_id port 170830 remote_ip 10.8.0.110 170832 username hashtadani4 170832 kill_reason Another user logged on this global unique id 170832 mac 170832 bytes_out 0 170832 bytes_in 0 170832 station_ip 83.123.137.211 170832 port 6 170832 unique_id port 170832 remote_ip 10.8.0.22 170835 username forozandeh1 170835 mac 170835 bytes_out 185035 170835 bytes_in 1232833 170835 station_ip 37.129.244.115 170835 port 2 170835 unique_id port 170790 bytes_in 16233029 170790 station_ip 113.203.41.193 170790 port 4 170790 unique_id port 170790 remote_ip 10.8.0.30 170792 username mirzaei 170792 mac 170792 bytes_out 25298 170792 bytes_in 32972 170792 station_ip 5.114.111.105 170792 port 6 170792 unique_id port 170792 remote_ip 10.8.0.106 170793 username barzegar 170793 mac 170793 bytes_out 2638 170793 bytes_in 4784 170793 station_ip 5.119.111.133 170793 port 4 170793 unique_id port 170793 remote_ip 10.8.0.10 170794 username mohammadjavad 170794 mac 170794 bytes_out 184811 170794 bytes_in 1290549 170794 station_ip 83.123.80.242 170794 port 10 170794 unique_id port 170794 remote_ip 10.8.0.110 170796 username mohammadmahdi 170796 kill_reason Another user logged on this global unique id 170796 mac 170796 bytes_out 0 170796 bytes_in 0 170796 station_ip 5.119.206.241 170796 port 7 170796 unique_id port 170796 remote_ip 10.8.0.90 170798 username mohammadjavad 170798 mac 170798 bytes_out 76931 170798 bytes_in 588400 170798 station_ip 37.129.103.118 170798 port 4 170798 unique_id port 170798 remote_ip 10.8.0.110 170801 username hashtadani4 170801 mac 170801 bytes_out 2458285 170801 bytes_in 35841802 170801 station_ip 83.123.137.211 170801 port 6 170801 unique_id port 170801 remote_ip 10.8.0.22 170802 username barzegar 170802 mac 170802 bytes_out 0 170802 bytes_in 0 170802 station_ip 5.119.111.133 170802 port 4 170802 unique_id port 170802 remote_ip 10.8.0.10 170803 username hashtadani4 170803 mac 170803 bytes_out 2535 170803 bytes_in 4804 170803 station_ip 83.123.137.211 170803 port 6 170803 unique_id port 170803 remote_ip 10.8.0.22 170807 username barzegar 170807 mac 170807 bytes_out 5324 170807 bytes_in 9727 170807 station_ip 5.119.111.133 170807 port 10 170807 unique_id port 170807 remote_ip 10.8.0.10 170808 username barzegar 170808 mac 170808 bytes_out 0 170808 bytes_in 0 170808 station_ip 5.119.111.133 170808 port 9 170808 unique_id port 170808 remote_ip 10.8.0.10 170812 username khademi 170812 mac 170812 bytes_out 0 170812 bytes_in 0 170812 station_ip 83.122.191.219 170812 port 3 170812 unique_id port 170814 username barzegar 170814 mac 170814 bytes_out 19829 170814 bytes_in 27342 170814 station_ip 5.119.111.133 170814 port 10 170814 unique_id port 170814 remote_ip 10.8.0.10 170815 username mirzaei 170815 mac 170815 bytes_out 4661 170815 bytes_in 9372 170815 station_ip 5.112.229.183 170815 port 7 170815 unique_id port 170815 remote_ip 10.8.0.106 170817 username kalantary 170817 mac 170817 bytes_out 1917110 170817 bytes_in 15837458 170817 station_ip 83.123.92.28 170817 port 2 170817 unique_id port 170817 remote_ip 10.8.0.50 170818 username mirzaei 170818 mac 170818 bytes_out 2776 170818 bytes_in 4780 170818 station_ip 5.120.42.143 170818 port 2 170818 unique_id port 170818 remote_ip 10.8.0.106 170823 username rahim 170823 mac 170823 bytes_out 2833821 170823 bytes_in 3107077 170823 station_ip 5.119.218.17 170823 port 7 170823 unique_id port 170823 remote_ip 10.8.0.134 170827 username rahim 170827 mac 170827 bytes_out 0 170827 bytes_in 0 170827 station_ip 5.119.218.17 170827 port 10 170827 unique_id port 170827 remote_ip 10.8.0.134 170828 username farhad2 170828 mac 170828 bytes_out 3053461 170828 bytes_in 30719898 170828 station_ip 5.120.147.189 170828 port 3 170828 unique_id port 170828 remote_ip 10.8.0.146 170833 username barzegar 170833 mac 170833 bytes_out 0 170833 bytes_in 0 170833 station_ip 5.119.111.133 170819 username mirzaei 170819 mac 170819 bytes_out 14624 170819 bytes_in 18900 170819 station_ip 5.114.137.208 170819 port 2 170819 unique_id port 170819 remote_ip 10.8.0.106 170821 username aminvpn 170821 unique_id port 170821 terminate_cause User-Request 170821 bytes_out 2234684 170821 bytes_in 9404118 170821 station_ip 5.119.94.158 170821 port 15728720 170821 nas_port_type Virtual 170821 remote_ip 5.5.5.245 170822 username mostafa_es78 170822 kill_reason Another user logged on this global unique id 170822 mac 170822 bytes_out 0 170822 bytes_in 0 170822 station_ip 37.129.182.62 170822 port 8 170822 unique_id port 170822 remote_ip 10.8.0.34 170824 username mirzaei 170824 mac 170824 bytes_out 45684 170824 bytes_in 87206 170824 station_ip 5.113.141.181 170824 port 10 170824 unique_id port 170824 remote_ip 10.8.0.106 170825 username rahim 170825 mac 170825 bytes_out 0 170825 bytes_in 0 170825 station_ip 5.119.218.17 170825 port 10 170825 unique_id port 170825 remote_ip 10.8.0.134 170826 username rahim 170826 mac 170826 bytes_out 0 170826 bytes_in 0 170826 station_ip 5.119.218.17 170826 port 10 170826 unique_id port 170826 remote_ip 10.8.0.134 170829 username sabaghnezhad 170829 kill_reason Another user logged on this global unique id 170829 mac 170829 bytes_out 0 170829 bytes_in 0 170829 station_ip 83.123.45.48 170829 port 9 170829 unique_id port 170829 remote_ip 10.8.0.66 170831 username mostafa_es78 170831 kill_reason Another user logged on this global unique id 170831 mac 170831 bytes_out 0 170831 bytes_in 0 170831 station_ip 37.129.182.62 170831 port 8 170831 unique_id port 170836 username mirzaei 170836 mac 170836 bytes_out 4489 170836 bytes_in 6418 170836 station_ip 5.119.110.121 170836 port 2 170836 unique_id port 170836 remote_ip 10.8.0.106 170837 username alipour 170837 mac 170837 bytes_out 1752201 170837 bytes_in 16568918 170837 station_ip 37.129.128.23 170837 port 1 170837 unique_id port 170837 remote_ip 10.8.0.26 170838 username mohammadjavad 170838 mac 170838 bytes_out 27320 170838 bytes_in 33630 170838 station_ip 83.123.130.78 170838 port 7 170838 unique_id port 170838 remote_ip 10.8.0.110 170842 username alipour 170842 mac 170842 bytes_out 16919 170842 bytes_in 24966 170842 station_ip 37.129.128.23 170842 port 2 170842 unique_id port 170842 remote_ip 10.8.0.26 170843 username alipour 170843 mac 170843 bytes_out 0 170843 bytes_in 0 170843 station_ip 83.123.37.135 170843 port 3 170843 unique_id port 170843 remote_ip 10.8.0.26 170850 username mostafa_es78 170850 kill_reason Another user logged on this global unique id 170850 mac 170850 bytes_out 0 170850 bytes_in 0 170850 station_ip 37.129.182.62 170850 port 8 170850 unique_id port 170852 username mostafa_es78 170852 mac 170852 bytes_out 0 170852 bytes_in 0 170852 station_ip 37.129.182.62 170852 port 8 170852 unique_id port 170854 username alipour 170854 mac 170854 bytes_out 0 170854 bytes_in 0 170854 station_ip 83.123.49.151 170854 port 7 170854 unique_id port 170854 remote_ip 10.8.0.26 170856 username barzegar 170856 mac 170856 bytes_out 3326 170856 bytes_in 5288 170856 station_ip 5.119.111.133 170856 port 2 170856 unique_id port 170856 remote_ip 10.8.0.10 170858 username kordestani 170858 mac 170858 bytes_out 1541848 170858 bytes_in 23440591 170858 station_ip 151.235.112.210 170858 port 3 170858 unique_id port 170858 remote_ip 10.8.0.130 170859 username aminvpn 170859 mac 170859 bytes_out 499849 170859 bytes_in 4781041 170859 station_ip 83.122.4.43 170859 port 12 170833 port 14 170833 unique_id port 170833 remote_ip 10.8.0.10 170834 username mirzaei 170834 mac 170834 bytes_out 35612 170834 bytes_in 42319 170834 station_ip 5.113.141.181 170834 port 7 170834 unique_id port 170834 remote_ip 10.8.0.106 170840 username farhad2 170840 mac 170840 bytes_out 3455616 170840 bytes_in 47751228 170840 station_ip 5.120.147.189 170840 port 3 170840 unique_id port 170840 remote_ip 10.8.0.146 170844 username pourshad 170844 kill_reason Another user logged on this global unique id 170844 mac 170844 bytes_out 0 170844 bytes_in 0 170844 station_ip 5.120.195.96 170844 port 20 170844 unique_id port 170844 remote_ip 10.8.0.42 170845 username barzegar 170845 mac 170845 bytes_out 0 170845 bytes_in 0 170845 station_ip 5.119.111.133 170845 port 3 170845 unique_id port 170845 remote_ip 10.8.0.10 170847 username farhad2 170847 kill_reason Another user logged on this global unique id 170847 mac 170847 bytes_out 0 170847 bytes_in 0 170847 station_ip 5.120.147.189 170847 port 1 170847 unique_id port 170847 remote_ip 10.8.0.146 170848 username barzegar 170848 mac 170848 bytes_out 14622 170848 bytes_in 31351 170848 station_ip 5.119.111.133 170848 port 3 170848 unique_id port 170848 remote_ip 10.8.0.10 170851 username rahim 170851 kill_reason Another user logged on this global unique id 170851 mac 170851 bytes_out 0 170851 bytes_in 0 170851 station_ip 5.119.218.17 170851 port 10 170851 unique_id port 170855 username mirzaei 170855 mac 170855 bytes_out 24775 170855 bytes_in 29696 170855 station_ip 5.119.110.121 170855 port 14 170855 unique_id port 170855 remote_ip 10.8.0.106 170857 username pourshad 170857 mac 170857 bytes_out 0 170857 bytes_in 0 170857 station_ip 5.120.195.96 170857 port 20 170857 unique_id port 170860 username rahim 170860 kill_reason Another user logged on this global unique id 170860 mac 170860 bytes_out 0 170860 bytes_in 0 170860 station_ip 5.119.218.17 170860 port 10 170860 unique_id port 170863 username mohammadmahdi 170863 kill_reason Another user logged on this global unique id 170863 mac 170863 bytes_out 0 170863 bytes_in 0 170863 station_ip 5.119.206.241 170863 port 13 170863 unique_id port 170864 username aminvpn 170864 mac 170864 bytes_out 0 170864 bytes_in 0 170864 station_ip 5.119.94.158 170864 port 3 170864 unique_id port 170864 remote_ip 10.8.0.58 170869 username barzegar 170869 mac 170869 bytes_out 76985 170869 bytes_in 96950 170869 station_ip 5.119.111.133 170869 port 2 170869 unique_id port 170869 remote_ip 10.8.0.10 170872 username farhad2 170872 mac 170872 bytes_out 224074 170872 bytes_in 2097922 170872 station_ip 5.119.71.130 170872 port 1 170872 unique_id port 170872 remote_ip 10.8.0.146 170882 username barzegar 170882 mac 170882 bytes_out 0 170882 bytes_in 0 170882 station_ip 5.119.111.133 170882 port 11 170882 unique_id port 170882 remote_ip 10.8.0.10 170883 username rahim 170883 mac 170883 bytes_out 0 170883 bytes_in 0 170883 station_ip 5.119.218.17 170883 port 10 170883 unique_id port 170888 username kordestani 170888 mac 170888 bytes_out 2163442 170888 bytes_in 31491159 170888 station_ip 151.235.101.252 170888 port 2 170888 unique_id port 170888 remote_ip 10.8.0.130 170893 username rahim 170893 mac 170893 bytes_out 0 170893 bytes_in 0 170893 station_ip 5.119.218.17 170893 port 2 170893 unique_id port 170893 remote_ip 10.8.0.134 170894 username barzegar 170894 mac 170894 bytes_out 2759 170894 bytes_in 5076 170894 station_ip 5.119.111.133 170894 port 10 170835 remote_ip 10.8.0.30 170839 username sabaghnezhad 170839 mac 170839 bytes_out 0 170839 bytes_in 0 170839 station_ip 83.123.45.48 170839 port 9 170839 unique_id port 170841 username rahim 170841 kill_reason Another user logged on this global unique id 170841 mac 170841 bytes_out 0 170841 bytes_in 0 170841 station_ip 5.119.218.17 170841 port 10 170841 unique_id port 170841 remote_ip 10.8.0.134 170846 username mohammadmahdi 170846 kill_reason Another user logged on this global unique id 170846 mac 170846 bytes_out 0 170846 bytes_in 0 170846 station_ip 5.119.206.241 170846 port 13 170846 unique_id port 170846 remote_ip 10.8.0.90 170849 username vanila 170849 mac 170849 bytes_out 7687 170849 bytes_in 9346 170849 station_ip 83.122.141.5 170849 port 7 170849 unique_id port 170849 remote_ip 10.8.0.46 170853 username alipour 170853 mac 170853 bytes_out 42343 170853 bytes_in 70948 170853 station_ip 83.122.133.139 170853 port 2 170853 unique_id port 170853 remote_ip 10.8.0.26 170862 username aminvpn 170862 mac 170862 bytes_out 0 170862 bytes_in 0 170862 station_ip 83.122.4.43 170862 port 9 170862 unique_id port 170862 remote_ip 10.8.0.58 170865 username hashtadani4 170865 kill_reason Another user logged on this global unique id 170865 mac 170865 bytes_out 0 170865 bytes_in 0 170865 station_ip 83.123.137.211 170865 port 6 170865 unique_id port 170866 username aminvpn 170866 mac 170866 bytes_out 0 170866 bytes_in 0 170866 station_ip 83.122.4.43 170866 port 9 170866 unique_id port 170866 remote_ip 10.8.0.58 170867 username aminvpn 170867 mac 170867 bytes_out 0 170867 bytes_in 0 170867 station_ip 5.119.94.158 170867 port 3 170867 unique_id port 170867 remote_ip 10.8.0.58 170870 username barzegar 170870 mac 170870 bytes_out 0 170870 bytes_in 0 170870 station_ip 5.119.111.133 170870 port 1 170870 unique_id port 170870 remote_ip 10.8.0.10 170873 username alipour 170873 mac 170873 bytes_out 52293 170873 bytes_in 109465 170873 station_ip 37.129.244.89 170873 port 8 170873 unique_id port 170873 remote_ip 10.8.0.26 170874 username rahim 170874 kill_reason Another user logged on this global unique id 170874 mac 170874 bytes_out 0 170874 bytes_in 0 170874 station_ip 5.119.218.17 170874 port 10 170874 unique_id port 170875 username mohammadmahdi 170875 kill_reason Another user logged on this global unique id 170875 mac 170875 bytes_out 0 170875 bytes_in 0 170875 station_ip 5.119.206.241 170875 port 13 170875 unique_id port 170876 username khademi 170876 mac 170876 bytes_out 220227 170876 bytes_in 1029969 170876 station_ip 113.203.97.172 170876 port 11 170876 unique_id port 170876 remote_ip 10.8.0.14 170878 username mirzaei 170878 mac 170878 bytes_out 4052 170878 bytes_in 6737 170878 station_ip 5.113.243.204 170878 port 8 170878 unique_id port 170878 remote_ip 10.8.0.106 170881 username alipour 170881 mac 170881 bytes_out 45274 170881 bytes_in 366022 170881 station_ip 37.129.244.89 170881 port 1 170881 unique_id port 170881 remote_ip 10.8.0.26 170884 username rahim 170884 mac 170884 bytes_out 0 170884 bytes_in 0 170884 station_ip 5.119.218.17 170884 port 10 170884 unique_id port 170884 remote_ip 10.8.0.134 170887 username rahim 170887 mac 170887 bytes_out 0 170887 bytes_in 0 170887 station_ip 5.119.218.17 170887 port 12 170887 unique_id port 170887 remote_ip 10.8.0.134 170889 username rahim 170889 mac 170889 bytes_out 0 170889 bytes_in 0 170889 station_ip 5.119.218.17 170889 port 12 170889 unique_id port 170889 remote_ip 10.8.0.134 170859 unique_id port 170859 remote_ip 10.8.0.58 170861 username aminvpn 170861 mac 170861 bytes_out 0 170861 bytes_in 0 170861 station_ip 5.119.94.158 170861 port 3 170861 unique_id port 170861 remote_ip 10.8.0.58 170868 username farhad2 170868 mac 170868 bytes_out 0 170868 bytes_in 0 170868 station_ip 5.120.147.189 170868 port 1 170868 unique_id port 170871 username rahim 170871 kill_reason Another user logged on this global unique id 170871 mac 170871 bytes_out 0 170871 bytes_in 0 170871 station_ip 5.119.218.17 170871 port 10 170871 unique_id port 170877 username kalantary 170877 mac 170877 bytes_out 838834 170877 bytes_in 5591578 170877 station_ip 83.123.104.232 170877 port 12 170877 unique_id port 170877 remote_ip 10.8.0.50 170879 username kordestani 170879 mac 170879 bytes_out 630953 170879 bytes_in 8658414 170879 station_ip 151.235.101.252 170879 port 3 170879 unique_id port 170879 remote_ip 10.8.0.130 170880 username barzegar 170880 mac 170880 bytes_out 323766 170880 bytes_in 421585 170880 station_ip 5.119.111.133 170880 port 2 170880 unique_id port 170880 remote_ip 10.8.0.10 170885 username mohammadmahdi 170885 mac 170885 bytes_out 0 170885 bytes_in 0 170885 station_ip 5.119.206.241 170885 port 13 170885 unique_id port 170886 username barzegar 170886 mac 170886 bytes_out 0 170886 bytes_in 0 170886 station_ip 5.119.111.133 170886 port 10 170886 unique_id port 170886 remote_ip 10.8.0.10 170891 username rahim 170891 mac 170891 bytes_out 0 170891 bytes_in 0 170891 station_ip 5.119.218.17 170891 port 2 170891 unique_id port 170891 remote_ip 10.8.0.134 170895 username alipour 170895 mac 170895 bytes_out 91450 170895 bytes_in 625639 170895 station_ip 83.122.236.33 170895 port 8 170895 unique_id port 170895 remote_ip 10.8.0.26 170903 username rahim 170903 mac 170903 bytes_out 0 170903 bytes_in 0 170903 station_ip 5.119.218.17 170903 port 11 170903 unique_id port 170903 remote_ip 10.8.0.134 170905 username rahim 170905 mac 170905 bytes_out 0 170905 bytes_in 0 170905 station_ip 5.119.218.17 170905 port 9 170905 unique_id port 170905 remote_ip 10.8.0.134 170908 username aminvpn 170908 mac 170908 bytes_out 302679 170908 bytes_in 3643517 170908 station_ip 5.119.94.158 170908 port 10 170908 unique_id port 170908 remote_ip 10.8.0.58 170910 username hashtadani4 170910 mac 170910 bytes_out 0 170910 bytes_in 0 170910 station_ip 83.123.137.211 170910 port 6 170910 unique_id port 170913 username rahim 170913 mac 170913 bytes_out 0 170913 bytes_in 0 170913 station_ip 5.119.218.17 170913 port 6 170913 unique_id port 170913 remote_ip 10.8.0.134 170916 username rahim 170916 mac 170916 bytes_out 0 170916 bytes_in 0 170916 station_ip 5.119.218.17 170916 port 6 170916 unique_id port 170916 remote_ip 10.8.0.134 170917 username rahim 170917 mac 170917 bytes_out 0 170917 bytes_in 0 170917 station_ip 5.119.218.17 170917 port 6 170917 unique_id port 170917 remote_ip 10.8.0.134 170924 username farhad2 170924 kill_reason Another user logged on this global unique id 170924 mac 170924 bytes_out 0 170924 bytes_in 0 170924 station_ip 5.119.117.230 170924 port 12 170924 unique_id port 170924 remote_ip 10.8.0.146 170927 username sekonji3 170927 mac 170927 bytes_out 0 170927 bytes_in 0 170927 station_ip 37.129.89.233 170927 port 13 170927 unique_id port 170927 remote_ip 10.8.0.62 170930 username barzegar 170930 mac 170930 bytes_out 0 170930 bytes_in 0 170890 username shadkam 170890 mac 170890 bytes_out 1997 170890 bytes_in 4413 170890 station_ip 37.129.49.144 170890 port 13 170890 unique_id port 170890 remote_ip 10.8.0.74 170892 username rahim 170892 mac 170892 bytes_out 0 170892 bytes_in 0 170892 station_ip 5.119.218.17 170892 port 2 170892 unique_id port 170892 remote_ip 10.8.0.134 170896 username rahim 170896 mac 170896 bytes_out 0 170896 bytes_in 0 170896 station_ip 5.119.218.17 170896 port 2 170896 unique_id port 170896 remote_ip 10.8.0.134 170899 username rahim 170899 mac 170899 bytes_out 0 170899 bytes_in 0 170899 station_ip 5.119.218.17 170899 port 8 170899 unique_id port 170899 remote_ip 10.8.0.134 170902 username barzegar 170902 mac 170902 bytes_out 2554 170902 bytes_in 4639 170902 station_ip 5.119.111.133 170902 port 10 170902 unique_id port 170902 remote_ip 10.8.0.10 170906 username hashtadani4 170906 kill_reason Another user logged on this global unique id 170906 mac 170906 bytes_out 0 170906 bytes_in 0 170906 station_ip 83.123.137.211 170906 port 6 170906 unique_id port 170907 username rahim 170907 mac 170907 bytes_out 0 170907 bytes_in 0 170907 station_ip 5.119.218.17 170907 port 9 170907 unique_id port 170907 remote_ip 10.8.0.134 170912 username aminvpn 170912 mac 170912 bytes_out 0 170912 bytes_in 0 170912 station_ip 83.122.4.43 170912 port 11 170912 unique_id port 170912 remote_ip 10.8.0.58 170915 username aminvpn 170915 mac 170915 bytes_out 0 170915 bytes_in 0 170915 station_ip 5.119.94.158 170915 port 10 170915 unique_id port 170915 remote_ip 10.8.0.58 170919 username sekonji3 170919 mac 170919 bytes_out 7472 170919 bytes_in 8133 170919 station_ip 113.203.47.31 170919 port 6 170919 unique_id port 170919 remote_ip 10.8.0.62 170921 username pourshad 170921 mac 170921 bytes_out 41306530 170921 bytes_in 12233443 170921 station_ip 5.120.195.96 170921 port 7 170921 unique_id port 170921 remote_ip 10.8.0.42 170923 username aminvpn 170923 unique_id port 170923 terminate_cause Lost-Carrier 170923 bytes_out 218185 170923 bytes_in 3360777 170923 station_ip 5.120.77.109 170923 port 15728768 170923 nas_port_type Virtual 170923 remote_ip 5.5.5.242 170925 username shadkam 170925 mac 170925 bytes_out 231437 170925 bytes_in 385685 170925 station_ip 83.123.210.157 170925 port 7 170925 unique_id port 170925 remote_ip 10.8.0.74 170926 username alipour 170926 mac 170926 bytes_out 36952 170926 bytes_in 63981 170926 station_ip 83.123.37.95 170926 port 2 170926 unique_id port 170926 remote_ip 10.8.0.26 170929 username farhad2 170929 mac 170929 bytes_out 0 170929 bytes_in 0 170929 station_ip 5.119.117.230 170929 port 12 170929 unique_id port 170931 username alipour 170931 mac 170931 bytes_out 29243 170931 bytes_in 930656 170931 station_ip 37.129.12.165 170931 port 2 170931 unique_id port 170931 remote_ip 10.8.0.26 170933 username alipour 170933 mac 170933 bytes_out 0 170933 bytes_in 0 170933 station_ip 83.123.115.213 170933 port 16 170933 unique_id port 170933 remote_ip 10.8.0.26 170935 username kalantary 170935 mac 170935 bytes_out 1347174 170935 bytes_in 13780273 170935 station_ip 83.123.42.252 170935 port 10 170935 unique_id port 170935 remote_ip 10.8.0.50 170938 username sekonji3 170938 mac 170938 bytes_out 0 170938 bytes_in 0 170938 station_ip 37.129.89.233 170938 port 10 170938 unique_id port 170938 remote_ip 10.8.0.62 170945 username sekonji3 170945 mac 170945 bytes_out 0 170945 bytes_in 0 170894 unique_id port 170894 remote_ip 10.8.0.10 170897 username alipour 170897 mac 170897 bytes_out 0 170897 bytes_in 0 170897 station_ip 83.123.68.18 170897 port 8 170897 unique_id port 170897 remote_ip 10.8.0.26 170898 username rahim 170898 mac 170898 bytes_out 0 170898 bytes_in 0 170898 station_ip 5.119.218.17 170898 port 8 170898 unique_id port 170898 remote_ip 10.8.0.134 170900 username sekonji3 170900 mac 170900 bytes_out 119338 170900 bytes_in 1144638 170900 station_ip 113.203.47.31 170900 port 11 170900 unique_id port 170900 remote_ip 10.8.0.62 170901 username rahim 170901 mac 170901 bytes_out 0 170901 bytes_in 0 170901 station_ip 5.119.218.17 170901 port 8 170901 unique_id port 170901 remote_ip 10.8.0.134 170904 username aminvpn 170904 mac 170904 bytes_out 331523 170904 bytes_in 718510 170904 station_ip 83.122.4.43 170904 port 9 170904 unique_id port 170904 remote_ip 10.8.0.58 170909 username rahim 170909 mac 170909 bytes_out 0 170909 bytes_in 0 170909 station_ip 5.119.218.17 170909 port 9 170909 unique_id port 170909 remote_ip 10.8.0.134 170911 username sekonji3 170911 mac 170911 bytes_out 0 170911 bytes_in 0 170911 station_ip 113.203.47.31 170911 port 9 170911 unique_id port 170911 remote_ip 10.8.0.62 170914 username barzegar 170914 mac 170914 bytes_out 0 170914 bytes_in 0 170914 station_ip 5.119.111.133 170914 port 9 170914 unique_id port 170914 remote_ip 10.8.0.10 170918 username malekpoir 170918 kill_reason Another user logged on this global unique id 170918 mac 170918 bytes_out 0 170918 bytes_in 0 170918 station_ip 5.119.6.116 170918 port 8 170918 unique_id port 170918 remote_ip 10.8.0.18 170920 username sekonji3 170920 mac 170920 bytes_out 0 170920 bytes_in 0 170920 station_ip 37.129.89.233 170920 port 11 170920 unique_id port 170920 remote_ip 10.8.0.62 170922 username shadkam 170922 mac 170922 bytes_out 36698 170922 bytes_in 67552 170922 station_ip 37.129.12.97 170922 port 10 170922 unique_id port 170922 remote_ip 10.8.0.74 170928 username sekonji3 170928 mac 170928 bytes_out 0 170928 bytes_in 0 170928 station_ip 37.129.89.233 170928 port 13 170928 unique_id port 170928 remote_ip 10.8.0.62 170937 username malekpoir 170937 kill_reason Another user logged on this global unique id 170937 mac 170937 bytes_out 0 170937 bytes_in 0 170937 station_ip 5.119.6.116 170937 port 8 170937 unique_id port 170939 username hashtadani4 170939 mac 170939 bytes_out 1322760 170939 bytes_in 19868902 170939 station_ip 83.123.137.211 170939 port 6 170939 unique_id port 170939 remote_ip 10.8.0.22 170940 username barzegar 170940 mac 170940 bytes_out 0 170940 bytes_in 0 170940 station_ip 5.119.111.133 170940 port 10 170940 unique_id port 170940 remote_ip 10.8.0.10 170941 username hashtadani4 170941 mac 170941 bytes_out 13913 170941 bytes_in 162858 170941 station_ip 5.202.64.127 170941 port 6 170941 unique_id port 170941 remote_ip 10.8.0.22 170948 username mahdiyehalizadeh 170948 mac 170948 bytes_out 411490 170948 bytes_in 4397302 170948 station_ip 5.120.9.137 170948 port 11 170948 unique_id port 170948 remote_ip 10.8.0.150 170950 username farhad2 170950 mac 170950 bytes_out 2169393 170950 bytes_in 15253396 170950 station_ip 5.119.117.230 170950 port 13 170950 unique_id port 170950 remote_ip 10.8.0.146 170951 username aminvpn 170951 mac 170951 bytes_out 253320 170951 bytes_in 796727 170951 station_ip 83.122.4.43 170951 port 9 170951 unique_id port 170951 remote_ip 10.8.0.58 170930 station_ip 5.119.111.133 170930 port 12 170930 unique_id port 170930 remote_ip 10.8.0.10 170932 username farhad2 170932 mac 170932 bytes_out 168917 170932 bytes_in 922093 170932 station_ip 5.119.117.230 170932 port 13 170932 unique_id port 170932 remote_ip 10.8.0.146 170934 username sekonji3 170934 mac 170934 bytes_out 0 170934 bytes_in 0 170934 station_ip 37.129.89.233 170934 port 12 170934 unique_id port 170934 remote_ip 10.8.0.62 170936 username sekonji3 170936 mac 170936 bytes_out 3941 170936 bytes_in 5786 170936 station_ip 37.129.89.233 170936 port 12 170936 unique_id port 170936 remote_ip 10.8.0.62 170942 username hashtadani4 170942 mac 170942 bytes_out 0 170942 bytes_in 0 170942 station_ip 37.129.217.93 170942 port 6 170942 unique_id port 170942 remote_ip 10.8.0.22 170943 username hashtadani4 170943 mac 170943 bytes_out 0 170943 bytes_in 0 170943 station_ip 5.202.64.127 170943 port 6 170943 unique_id port 170943 remote_ip 10.8.0.22 170944 username hashtadani4 170944 mac 170944 bytes_out 0 170944 bytes_in 0 170944 station_ip 5.202.64.127 170944 port 6 170944 unique_id port 170944 remote_ip 10.8.0.22 170946 username vanila 170946 mac 170946 bytes_out 536182 170946 bytes_in 5887005 170946 station_ip 83.122.139.221 170946 port 10 170946 unique_id port 170946 remote_ip 10.8.0.46 170947 username hashtadani4 170947 mac 170947 bytes_out 0 170947 bytes_in 0 170947 station_ip 5.202.64.127 170947 port 6 170947 unique_id port 170947 remote_ip 10.8.0.22 170952 username aminvpn 170952 mac 170952 bytes_out 0 170952 bytes_in 0 170952 station_ip 5.119.94.158 170952 port 10 170952 unique_id port 170952 remote_ip 10.8.0.58 170956 username shadkam 170956 mac 170956 bytes_out 8592131 170956 bytes_in 36648794 170956 station_ip 83.123.199.170 170956 port 16 170956 unique_id port 170956 remote_ip 10.8.0.74 170961 username sekonji3 170961 mac 170961 bytes_out 0 170961 bytes_in 0 170961 station_ip 37.129.89.233 170961 port 11 170961 unique_id port 170961 remote_ip 10.8.0.62 170962 username shadkam 170962 mac 170962 bytes_out 97432 170962 bytes_in 441744 170962 station_ip 83.122.102.238 170962 port 12 170962 unique_id port 170962 remote_ip 10.8.0.74 170964 username sekonji3 170964 mac 170964 bytes_out 0 170964 bytes_in 0 170964 station_ip 37.129.89.233 170964 port 11 170964 unique_id port 170964 remote_ip 10.8.0.62 170967 username hashtadani4 170967 mac 170967 bytes_out 0 170967 bytes_in 0 170967 station_ip 5.202.64.127 170967 port 11 170967 unique_id port 170967 remote_ip 10.8.0.22 170969 username hashtadani4 170969 mac 170969 bytes_out 0 170969 bytes_in 0 170969 station_ip 5.202.64.127 170969 port 7 170969 unique_id port 170969 remote_ip 10.8.0.22 170970 username sekonji3 170970 mac 170970 bytes_out 0 170970 bytes_in 0 170970 station_ip 37.129.89.233 170970 port 7 170970 unique_id port 170970 remote_ip 10.8.0.62 170974 username sekonji3 170974 mac 170974 bytes_out 0 170974 bytes_in 0 170974 station_ip 37.129.89.233 170974 port 16 170974 unique_id port 170974 remote_ip 10.8.0.62 170980 username jafari 170980 kill_reason Another user logged on this global unique id 170980 mac 170980 bytes_out 0 170980 bytes_in 0 170980 station_ip 89.47.68.14 170980 port 10 170980 unique_id port 170981 username hashtadani4 170981 mac 170981 bytes_out 0 170981 bytes_in 0 170981 station_ip 5.202.64.127 170981 port 11 170981 unique_id port 170981 remote_ip 10.8.0.22 170945 station_ip 37.129.89.233 170945 port 6 170945 unique_id port 170945 remote_ip 10.8.0.62 170949 username aminvpn 170949 unique_id port 170949 terminate_cause User-Request 170949 bytes_out 2440113 170949 bytes_in 11652848 170949 station_ip 5.119.94.158 170949 port 15728757 170949 nas_port_type Virtual 170949 remote_ip 5.5.5.244 170960 username sekonji3 170960 mac 170960 bytes_out 0 170960 bytes_in 0 170960 station_ip 37.129.89.233 170960 port 12 170960 unique_id port 170960 remote_ip 10.8.0.62 170963 username jafari 170963 kill_reason Another user logged on this global unique id 170963 mac 170963 bytes_out 0 170963 bytes_in 0 170963 station_ip 89.47.68.14 170963 port 10 170963 unique_id port 170963 remote_ip 10.8.0.86 170965 username hashtadani4 170965 mac 170965 bytes_out 26907 170965 bytes_in 49441 170965 station_ip 5.202.64.127 170965 port 16 170965 unique_id port 170965 remote_ip 10.8.0.22 170966 username hashtadani4 170966 mac 170966 bytes_out 0 170966 bytes_in 0 170966 station_ip 5.202.64.127 170966 port 11 170966 unique_id port 170966 remote_ip 10.8.0.22 170973 username vanila 170973 mac 170973 bytes_out 19062 170973 bytes_in 24608 170973 station_ip 83.122.156.153 170973 port 11 170973 unique_id port 170973 remote_ip 10.8.0.46 170976 username kordestani 170976 mac 170976 bytes_out 1812597 170976 bytes_in 26605183 170976 station_ip 151.235.101.252 170976 port 13 170976 unique_id port 170976 remote_ip 10.8.0.130 170988 username farhad2 170988 kill_reason Another user logged on this global unique id 170988 mac 170988 bytes_out 0 170988 bytes_in 0 170988 station_ip 5.119.117.230 170988 port 6 170988 unique_id port 170988 remote_ip 10.8.0.146 170990 username aminvpn 170990 mac 170990 bytes_out 25707 170990 bytes_in 35643 170990 station_ip 83.122.4.43 170990 port 12 170990 unique_id port 170990 remote_ip 10.8.0.58 170993 username aminvpn 170993 mac 170993 bytes_out 0 170993 bytes_in 0 170993 station_ip 5.119.52.87 170993 port 11 170993 unique_id port 170993 remote_ip 10.8.0.58 170994 username aminvpn 170994 mac 170994 bytes_out 0 170994 bytes_in 0 170994 station_ip 83.122.4.43 170994 port 12 170994 unique_id port 170994 remote_ip 10.8.0.58 170999 username aminvpn 170999 mac 170999 bytes_out 0 170999 bytes_in 0 170999 station_ip 5.119.52.87 170999 port 13 170999 unique_id port 170999 remote_ip 10.8.0.58 171004 username mohammadjavad 171004 mac 171004 bytes_out 471475 171004 bytes_in 4369302 171004 station_ip 83.122.240.36 171004 port 9 171004 unique_id port 171004 remote_ip 10.8.0.110 171007 username aminvpn 171007 mac 171007 bytes_out 0 171007 bytes_in 0 171007 station_ip 83.122.4.43 171007 port 12 171007 unique_id port 171007 remote_ip 10.8.0.58 171008 username aminvpn 171008 mac 171008 bytes_out 0 171008 bytes_in 0 171008 station_ip 5.119.52.87 171008 port 11 171008 unique_id port 171008 remote_ip 10.8.0.58 171010 username aminvpn 171010 mac 171010 bytes_out 0 171010 bytes_in 0 171010 station_ip 83.122.4.43 171010 port 12 171010 unique_id port 171010 remote_ip 10.8.0.58 171011 username aminvpn 171011 mac 171011 bytes_out 0 171011 bytes_in 0 171011 station_ip 5.119.52.87 171011 port 9 171011 unique_id port 171011 remote_ip 10.8.0.58 171014 username hashtadani4 171014 mac 171014 bytes_out 0 171014 bytes_in 0 171014 station_ip 5.202.64.127 171014 port 11 171014 unique_id port 171014 remote_ip 10.8.0.22 171018 username rahim 171018 mac 171018 bytes_out 607369 171018 bytes_in 1088230 170953 username hashtadani4 170953 mac 170953 bytes_out 0 170953 bytes_in 0 170953 station_ip 5.202.64.127 170953 port 10 170953 unique_id port 170953 remote_ip 10.8.0.22 170954 username barzegar 170954 mac 170954 bytes_out 116569 170954 bytes_in 276609 170954 station_ip 5.119.111.133 170954 port 12 170954 unique_id port 170954 remote_ip 10.8.0.10 170955 username hashtadani4 170955 mac 170955 bytes_out 0 170955 bytes_in 0 170955 station_ip 5.202.64.127 170955 port 12 170955 unique_id port 170955 remote_ip 10.8.0.22 170957 username sekonji3 170957 mac 170957 bytes_out 0 170957 bytes_in 0 170957 station_ip 37.129.89.233 170957 port 12 170957 unique_id port 170957 remote_ip 10.8.0.62 170958 username sekonji3 170958 mac 170958 bytes_out 0 170958 bytes_in 0 170958 station_ip 37.129.89.233 170958 port 12 170958 unique_id port 170958 remote_ip 10.8.0.62 170959 username forozandeh1 170959 mac 170959 bytes_out 502862 170959 bytes_in 5863676 170959 station_ip 83.122.66.215 170959 port 11 170959 unique_id port 170959 remote_ip 10.8.0.30 170968 username saeed9658 170968 mac 170968 bytes_out 3506506 170968 bytes_in 43714839 170968 station_ip 5.119.77.159 170968 port 7 170968 unique_id port 170968 remote_ip 10.8.0.154 170971 username barzegar 170971 mac 170971 bytes_out 53310 170971 bytes_in 64753 170971 station_ip 5.119.111.133 170971 port 17 170971 unique_id port 170971 remote_ip 10.8.0.10 170972 username sekonji3 170972 mac 170972 bytes_out 0 170972 bytes_in 0 170972 station_ip 37.129.89.233 170972 port 7 170972 unique_id port 170972 remote_ip 10.8.0.62 170975 username barzegar 170975 mac 170975 bytes_out 0 170975 bytes_in 0 170975 station_ip 5.119.111.133 170975 port 12 170975 unique_id port 170975 remote_ip 10.8.0.10 170977 username hashtadani4 170977 mac 170977 bytes_out 0 170977 bytes_in 0 170977 station_ip 5.202.64.127 170977 port 11 170977 unique_id port 170977 remote_ip 10.8.0.22 170978 username farhad2 170978 mac 170978 bytes_out 1850022 170978 bytes_in 6945762 170978 station_ip 5.119.117.230 170978 port 6 170978 unique_id port 170978 remote_ip 10.8.0.146 170979 username farhad2 170979 mac 170979 bytes_out 0 170979 bytes_in 0 170979 station_ip 5.119.117.230 170979 port 6 170979 unique_id port 170979 remote_ip 10.8.0.146 170985 username sekonji3 170985 mac 170985 bytes_out 0 170985 bytes_in 0 170985 station_ip 37.129.89.233 170985 port 12 170985 unique_id port 170985 remote_ip 10.8.0.62 170987 username shadkam 170987 mac 170987 bytes_out 25549 170987 bytes_in 18651 170987 station_ip 83.123.205.17 170987 port 11 170987 unique_id port 170987 remote_ip 10.8.0.74 170989 username hashtadani4 170989 mac 170989 bytes_out 0 170989 bytes_in 0 170989 station_ip 5.202.64.127 170989 port 9 170989 unique_id port 170989 remote_ip 10.8.0.22 170991 username hashtadani4 170991 mac 170991 bytes_out 0 170991 bytes_in 0 170991 station_ip 5.202.64.127 170991 port 12 170991 unique_id port 170991 remote_ip 10.8.0.22 170996 username sekonji3 170996 mac 170996 bytes_out 0 170996 bytes_in 0 170996 station_ip 37.129.89.233 170996 port 13 170996 unique_id port 170996 remote_ip 10.8.0.62 170997 username aminvpn 170997 mac 170997 bytes_out 0 170997 bytes_in 0 170997 station_ip 5.119.52.87 170997 port 17 170997 unique_id port 170997 remote_ip 10.8.0.58 170998 username aminvpn 170998 mac 170998 bytes_out 0 170998 bytes_in 0 170998 station_ip 83.122.4.43 170982 username hashtadani4 170982 mac 170982 bytes_out 0 170982 bytes_in 0 170982 station_ip 5.202.64.127 170982 port 11 170982 unique_id port 170982 remote_ip 10.8.0.22 170983 username barzegar 170983 mac 170983 bytes_out 0 170983 bytes_in 0 170983 station_ip 5.119.111.133 170983 port 12 170983 unique_id port 170983 remote_ip 10.8.0.10 170984 username hashtadani4 170984 mac 170984 bytes_out 0 170984 bytes_in 0 170984 station_ip 5.202.64.127 170984 port 11 170984 unique_id port 170984 remote_ip 10.8.0.22 170986 username aminvpn 170986 mac 170986 bytes_out 207086 170986 bytes_in 5236408 170986 station_ip 83.122.4.43 170986 port 9 170986 unique_id port 170986 remote_ip 10.8.0.58 170992 username hashtadani4 170992 mac 170992 bytes_out 0 170992 bytes_in 0 170992 station_ip 5.202.64.127 170992 port 12 170992 unique_id port 170992 remote_ip 10.8.0.22 170995 username hashtadani4 170995 mac 170995 bytes_out 0 170995 bytes_in 0 170995 station_ip 5.202.64.127 170995 port 11 170995 unique_id port 170995 remote_ip 10.8.0.22 171000 username jafari 171000 kill_reason Another user logged on this global unique id 171000 mac 171000 bytes_out 0 171000 bytes_in 0 171000 station_ip 89.47.68.14 171000 port 10 171000 unique_id port 171001 username aminvpn 171001 mac 171001 bytes_out 0 171001 bytes_in 0 171001 station_ip 83.122.4.43 171001 port 12 171001 unique_id port 171001 remote_ip 10.8.0.58 171005 username kalantary 171005 mac 171005 bytes_out 1241336 171005 bytes_in 14139109 171005 station_ip 83.123.97.232 171005 port 7 171005 unique_id port 171005 remote_ip 10.8.0.50 171006 username arash 171006 mac 171006 bytes_out 53838 171006 bytes_in 439187 171006 station_ip 37.27.29.198 171006 port 11 171006 unique_id port 171006 remote_ip 10.8.0.70 171009 username barzegar 171009 mac 171009 bytes_out 1754 171009 bytes_in 4285 171009 station_ip 5.119.111.133 171009 port 9 171009 unique_id port 171009 remote_ip 10.8.0.10 171013 username aminvpn 171013 mac 171013 bytes_out 0 171013 bytes_in 0 171013 station_ip 83.122.4.43 171013 port 11 171013 unique_id port 171013 remote_ip 10.8.0.58 171022 username rahim 171022 mac 171022 bytes_out 36276 171022 bytes_in 264707 171022 station_ip 86.57.127.21 171022 port 9 171022 unique_id port 171022 remote_ip 10.8.0.134 171025 username farhad2 171025 kill_reason Another user logged on this global unique id 171025 mac 171025 bytes_out 0 171025 bytes_in 0 171025 station_ip 5.119.117.230 171025 port 6 171025 unique_id port 171029 username hashtadani4 171029 mac 171029 bytes_out 0 171029 bytes_in 0 171029 station_ip 83.122.198.119 171029 port 9 171029 unique_id port 171029 remote_ip 10.8.0.22 171032 username hashtadani4 171032 kill_reason Maximum number of concurrent logins reached 171032 mac 171032 bytes_out 0 171032 bytes_in 0 171032 station_ip 83.122.198.119 171032 port 9 171032 unique_id port 171034 username aminvpn 171034 mac 171034 bytes_out 0 171034 bytes_in 0 171034 station_ip 5.119.52.87 171034 port 9 171034 unique_id port 171034 remote_ip 10.8.0.58 171039 username aminvpn 171039 mac 171039 bytes_out 0 171039 bytes_in 0 171039 station_ip 5.119.52.87 171039 port 9 171039 unique_id port 171039 remote_ip 10.8.0.58 171042 username aminvpn 171042 mac 171042 bytes_out 0 171042 bytes_in 0 171042 station_ip 5.119.52.87 171042 port 18 171042 unique_id port 171042 remote_ip 10.8.0.58 171044 username aminvpn 171044 mac 171044 bytes_out 0 171044 bytes_in 0 170998 port 12 170998 unique_id port 170998 remote_ip 10.8.0.58 171002 username meysam 171002 mac 171002 bytes_out 917501 171002 bytes_in 13956887 171002 station_ip 188.158.51.161 171002 port 16 171002 unique_id port 171002 remote_ip 10.8.0.158 171003 username aminvpn 171003 mac 171003 bytes_out 0 171003 bytes_in 0 171003 station_ip 5.119.52.87 171003 port 13 171003 unique_id port 171003 remote_ip 10.8.0.58 171012 username sekonji3 171012 mac 171012 bytes_out 0 171012 bytes_in 0 171012 station_ip 37.129.89.233 171012 port 9 171012 unique_id port 171012 remote_ip 10.8.0.62 171015 username aminvpn 171015 mac 171015 bytes_out 0 171015 bytes_in 0 171015 station_ip 5.119.52.87 171015 port 9 171015 unique_id port 171015 remote_ip 10.8.0.58 171016 username jafari 171016 kill_reason Another user logged on this global unique id 171016 mac 171016 bytes_out 0 171016 bytes_in 0 171016 station_ip 89.47.68.14 171016 port 10 171016 unique_id port 171017 username aminvpn 171017 mac 171017 bytes_out 0 171017 bytes_in 0 171017 station_ip 83.122.4.43 171017 port 11 171017 unique_id port 171017 remote_ip 10.8.0.58 171019 username aminvpn 171019 mac 171019 bytes_out 0 171019 bytes_in 0 171019 station_ip 5.119.52.87 171019 port 9 171019 unique_id port 171019 remote_ip 10.8.0.58 171026 username aminvpn 171026 mac 171026 bytes_out 0 171026 bytes_in 0 171026 station_ip 83.122.4.43 171026 port 7 171026 unique_id port 171026 remote_ip 10.8.0.58 171028 username sekonji3 171028 mac 171028 bytes_out 0 171028 bytes_in 0 171028 station_ip 37.129.89.233 171028 port 9 171028 unique_id port 171028 remote_ip 10.8.0.62 171031 username sekonji3 171031 mac 171031 bytes_out 0 171031 bytes_in 0 171031 station_ip 37.129.89.233 171031 port 9 171031 unique_id port 171031 remote_ip 10.8.0.62 171036 username hashtadani4 171036 kill_reason Maximum check online fails reached 171036 mac 171036 bytes_out 0 171036 bytes_in 0 171036 station_ip 83.122.198.119 171036 port 11 171036 unique_id port 171038 username farhad2 171038 mac 171038 bytes_out 0 171038 bytes_in 0 171038 station_ip 5.119.117.230 171038 port 6 171038 unique_id port 171040 username aminvpn 171040 mac 171040 bytes_out 0 171040 bytes_in 0 171040 station_ip 83.122.4.43 171040 port 6 171040 unique_id port 171040 remote_ip 10.8.0.58 171043 username rahim 171043 mac 171043 bytes_out 0 171043 bytes_in 0 171043 station_ip 86.57.30.174 171043 port 6 171043 unique_id port 171043 remote_ip 10.8.0.134 171046 username farhad2 171046 mac 171046 bytes_out 63584 171046 bytes_in 151641 171046 station_ip 5.119.117.230 171046 port 9 171046 unique_id port 171046 remote_ip 10.8.0.146 171048 username jafari 171048 kill_reason Another user logged on this global unique id 171048 mac 171048 bytes_out 0 171048 bytes_in 0 171048 station_ip 89.47.68.14 171048 port 10 171048 unique_id port 171050 username vanila 171050 mac 171050 bytes_out 273853 171050 bytes_in 567661 171050 station_ip 83.122.156.153 171050 port 7 171050 unique_id port 171050 remote_ip 10.8.0.46 171053 username farhad2 171053 mac 171053 bytes_out 397352 171053 bytes_in 3824399 171053 station_ip 5.120.104.185 171053 port 9 171053 unique_id port 171053 remote_ip 10.8.0.146 171056 username sekonji3 171056 mac 171056 bytes_out 0 171056 bytes_in 0 171056 station_ip 37.129.89.233 171056 port 17 171056 unique_id port 171056 remote_ip 10.8.0.62 171060 username barzegar 171060 mac 171018 station_ip 86.57.127.21 171018 port 7 171018 unique_id port 171018 remote_ip 10.8.0.134 171020 username aminvpn 171020 mac 171020 bytes_out 0 171020 bytes_in 0 171020 station_ip 83.122.4.43 171020 port 7 171020 unique_id port 171020 remote_ip 10.8.0.58 171021 username aminvpn 171021 mac 171021 bytes_out 0 171021 bytes_in 0 171021 station_ip 5.119.52.87 171021 port 11 171021 unique_id port 171021 remote_ip 10.8.0.58 171023 username aminvpn 171023 mac 171023 bytes_out 0 171023 bytes_in 0 171023 station_ip 83.122.4.43 171023 port 7 171023 unique_id port 171023 remote_ip 10.8.0.58 171024 username aminvpn 171024 mac 171024 bytes_out 0 171024 bytes_in 0 171024 station_ip 5.119.52.87 171024 port 9 171024 unique_id port 171024 remote_ip 10.8.0.58 171027 username hashtadani4 171027 mac 171027 bytes_out 1193833 171027 bytes_in 17606793 171027 station_ip 83.122.198.119 171027 port 13 171027 unique_id port 171027 remote_ip 10.8.0.22 171030 username aminvpn 171030 mac 171030 bytes_out 0 171030 bytes_in 0 171030 station_ip 5.119.52.87 171030 port 11 171030 unique_id port 171030 remote_ip 10.8.0.58 171033 username aminvpn 171033 mac 171033 bytes_out 0 171033 bytes_in 0 171033 station_ip 83.122.4.43 171033 port 16 171033 unique_id port 171033 remote_ip 10.8.0.58 171035 username aminvpn 171035 mac 171035 bytes_out 0 171035 bytes_in 0 171035 station_ip 83.122.4.43 171035 port 16 171035 unique_id port 171035 remote_ip 10.8.0.58 171037 username hashtadani4 171037 kill_reason Maximum check online fails reached 171037 mac 171037 bytes_out 0 171037 bytes_in 0 171037 station_ip 83.122.198.119 171037 port 13 171037 unique_id port 171041 username barzegar 171041 mac 171041 bytes_out 0 171041 bytes_in 0 171041 station_ip 5.119.111.133 171041 port 17 171041 unique_id port 171041 remote_ip 10.8.0.10 171051 username aminvpn 171051 mac 171051 bytes_out 4798 171051 bytes_in 6279 171051 station_ip 5.119.52.87 171051 port 18 171051 unique_id port 171051 remote_ip 10.8.0.58 171052 username shadkam 171052 mac 171052 bytes_out 61837 171052 bytes_in 429150 171052 station_ip 37.129.164.71 171052 port 17 171052 unique_id port 171052 remote_ip 10.8.0.74 171055 username pourshad 171055 kill_reason Another user logged on this global unique id 171055 mac 171055 bytes_out 0 171055 bytes_in 0 171055 station_ip 5.120.195.96 171055 port 14 171055 unique_id port 171055 remote_ip 10.8.0.42 171057 username farhad2 171057 mac 171057 bytes_out 0 171057 bytes_in 0 171057 station_ip 5.120.104.185 171057 port 19 171057 unique_id port 171057 remote_ip 10.8.0.146 171059 username sekonji3 171059 mac 171059 bytes_out 0 171059 bytes_in 0 171059 station_ip 37.129.89.233 171059 port 19 171059 unique_id port 171059 remote_ip 10.8.0.62 171073 username pourshad 171073 mac 171073 bytes_out 0 171073 bytes_in 0 171073 station_ip 5.120.195.96 171073 port 14 171073 unique_id port 171074 username farhad2 171074 kill_reason Another user logged on this global unique id 171074 mac 171074 bytes_out 0 171074 bytes_in 0 171074 station_ip 5.120.104.185 171074 port 17 171074 unique_id port 171075 username sekonji3 171075 mac 171075 bytes_out 0 171075 bytes_in 0 171075 station_ip 37.129.89.233 171075 port 14 171075 unique_id port 171075 remote_ip 10.8.0.62 171078 username jafari 171078 kill_reason Another user logged on this global unique id 171078 mac 171078 bytes_out 0 171078 bytes_in 0 171078 station_ip 89.47.68.14 171078 port 10 171044 station_ip 83.122.4.43 171044 port 17 171044 unique_id port 171044 remote_ip 10.8.0.58 171045 username aminvpn 171045 mac 171045 bytes_out 0 171045 bytes_in 0 171045 station_ip 5.119.52.87 171045 port 6 171045 unique_id port 171045 remote_ip 10.8.0.58 171047 username aminvpn 171047 mac 171047 bytes_out 0 171047 bytes_in 0 171047 station_ip 83.122.4.43 171047 port 17 171047 unique_id port 171047 remote_ip 10.8.0.58 171049 username sekonji3 171049 mac 171049 bytes_out 0 171049 bytes_in 0 171049 station_ip 37.129.89.233 171049 port 9 171049 unique_id port 171049 remote_ip 10.8.0.62 171054 username jafari 171054 kill_reason Another user logged on this global unique id 171054 mac 171054 bytes_out 0 171054 bytes_in 0 171054 station_ip 89.47.68.14 171054 port 10 171054 unique_id port 171058 username shadkam 171058 mac 171058 bytes_out 6187 171058 bytes_in 6886 171058 station_ip 113.203.29.51 171058 port 9 171058 unique_id port 171058 remote_ip 10.8.0.74 171061 username mohammadjavad 171061 kill_reason Another user logged on this global unique id 171061 mac 171061 bytes_out 0 171061 bytes_in 0 171061 station_ip 83.123.32.242 171061 port 9 171061 unique_id port 171061 remote_ip 10.8.0.110 171063 username sekonji3 171063 mac 171063 bytes_out 0 171063 bytes_in 0 171063 station_ip 37.129.89.233 171063 port 20 171063 unique_id port 171063 remote_ip 10.8.0.62 171067 username farhad2 171067 kill_reason Another user logged on this global unique id 171067 mac 171067 bytes_out 0 171067 bytes_in 0 171067 station_ip 5.120.104.185 171067 port 17 171067 unique_id port 171067 remote_ip 10.8.0.146 171068 username sekonji3 171068 mac 171068 bytes_out 0 171068 bytes_in 0 171068 station_ip 37.129.89.233 171068 port 18 171068 unique_id port 171068 remote_ip 10.8.0.62 171069 username jafari 171069 kill_reason Another user logged on this global unique id 171069 mac 171069 bytes_out 0 171069 bytes_in 0 171069 station_ip 89.47.68.14 171069 port 10 171069 unique_id port 171071 username hatami 171071 mac 171071 bytes_out 404070 171071 bytes_in 2947577 171071 station_ip 151.235.97.37 171071 port 6 171071 unique_id port 171071 remote_ip 10.8.0.98 171072 username hadibarzegar 171072 kill_reason Another user logged on this global unique id 171072 mac 171072 bytes_out 0 171072 bytes_in 0 171072 station_ip 37.129.156.58 171072 port 12 171072 unique_id port 171072 remote_ip 10.8.0.162 171077 username malekpoir 171077 kill_reason Another user logged on this global unique id 171077 mac 171077 bytes_out 0 171077 bytes_in 0 171077 station_ip 5.119.6.116 171077 port 8 171077 unique_id port 171079 username barzegar 171079 mac 171079 bytes_out 0 171079 bytes_in 0 171079 station_ip 5.119.111.133 171079 port 20 171079 unique_id port 171079 remote_ip 10.8.0.10 171086 username mosi 171086 mac 171086 bytes_out 3445 171086 bytes_in 4004 171086 station_ip 151.235.72.91 171086 port 22 171086 unique_id port 171086 remote_ip 10.8.0.142 171093 username sekonji3 171093 mac 171093 bytes_out 4131 171093 bytes_in 10897 171093 station_ip 37.129.89.233 171093 port 9 171093 unique_id port 171093 remote_ip 10.8.0.62 171097 username pourshad 171097 mac 171097 bytes_out 5198 171097 bytes_in 7099 171097 station_ip 5.120.195.96 171097 port 16 171097 unique_id port 171097 remote_ip 10.8.0.42 171098 username hadibarzegar 171098 kill_reason Another user logged on this global unique id 171098 mac 171098 bytes_out 0 171098 bytes_in 0 171098 station_ip 37.129.156.58 171098 port 12 171098 unique_id port 171101 username barzegar 171060 bytes_out 0 171060 bytes_in 0 171060 station_ip 5.119.111.133 171060 port 19 171060 unique_id port 171060 remote_ip 10.8.0.10 171062 username jafari 171062 kill_reason Another user logged on this global unique id 171062 mac 171062 bytes_out 0 171062 bytes_in 0 171062 station_ip 89.47.68.14 171062 port 10 171062 unique_id port 171064 username forozandeh1 171064 mac 171064 bytes_out 2498899 171064 bytes_in 44637958 171064 station_ip 83.122.141.250 171064 port 18 171064 unique_id port 171064 remote_ip 10.8.0.30 171065 username kalantary 171065 mac 171065 bytes_out 769215 171065 bytes_in 10610288 171065 station_ip 83.123.36.76 171065 port 19 171065 unique_id port 171065 remote_ip 10.8.0.50 171066 username zotaher 171066 mac 171066 bytes_out 2651 171066 bytes_in 14676 171066 station_ip 83.123.25.249 171066 port 18 171066 unique_id port 171066 remote_ip 10.8.0.166 171070 username barzegar 171070 mac 171070 bytes_out 0 171070 bytes_in 0 171070 station_ip 5.119.111.133 171070 port 18 171070 unique_id port 171070 remote_ip 10.8.0.10 171076 username mohammadjavad 171076 mac 171076 bytes_out 0 171076 bytes_in 0 171076 station_ip 83.123.32.242 171076 port 9 171076 unique_id port 171080 username mohammadjavad 171080 mac 171080 bytes_out 22049 171080 bytes_in 28107 171080 station_ip 113.203.69.51 171080 port 9 171080 unique_id port 171080 remote_ip 10.8.0.110 171081 username sekonji3 171081 mac 171081 bytes_out 0 171081 bytes_in 0 171081 station_ip 37.129.89.233 171081 port 9 171081 unique_id port 171081 remote_ip 10.8.0.62 171082 username sekonji3 171082 mac 171082 bytes_out 0 171082 bytes_in 0 171082 station_ip 37.129.89.233 171082 port 9 171082 unique_id port 171082 remote_ip 10.8.0.62 171083 username sekonji3 171083 mac 171083 bytes_out 0 171083 bytes_in 0 171083 station_ip 37.129.89.233 171083 port 9 171083 unique_id port 171083 remote_ip 10.8.0.62 171085 username zotaher 171085 kill_reason Another user logged on this global unique id 171085 mac 171085 bytes_out 0 171085 bytes_in 0 171085 station_ip 83.123.25.249 171085 port 19 171085 unique_id port 171085 remote_ip 10.8.0.166 171087 username hoorieh 171087 mac 171087 bytes_out 427858 171087 bytes_in 5695652 171087 station_ip 5.119.90.204 171087 port 9 171087 unique_id port 171087 remote_ip 10.8.0.114 171090 username Mahin 171090 kill_reason Relative expiration date has reached 171090 mac 171090 bytes_out 0 171090 bytes_in 0 171090 station_ip 5.120.167.92 171090 port 16 171090 unique_id port 171091 username Mahin 171091 kill_reason Relative expiration date has reached 171091 mac 171091 bytes_out 0 171091 bytes_in 0 171091 station_ip 5.120.167.92 171091 port 20 171091 unique_id port 171094 username barzegar 171094 mac 171094 bytes_out 2575402 171094 bytes_in 1163679 171094 station_ip 5.119.111.133 171094 port 21 171094 unique_id port 171094 remote_ip 10.8.0.10 171099 username majidsarmast 171099 mac 171099 bytes_out 231413 171099 bytes_in 818060 171099 station_ip 5.119.143.98 171099 port 14 171099 unique_id port 171099 remote_ip 10.8.0.170 171108 username barzegar 171108 mac 171108 bytes_out 24329 171108 bytes_in 68783 171108 station_ip 5.119.111.133 171108 port 14 171108 unique_id port 171108 remote_ip 10.8.0.10 171112 username jafari 171112 mac 171112 bytes_out 0 171112 bytes_in 0 171112 station_ip 89.47.68.14 171112 port 10 171112 unique_id port 171117 username barzegar 171117 mac 171117 bytes_out 3883 171117 bytes_in 5765 171078 unique_id port 171084 username pourshad 171084 mac 171084 bytes_out 189165 171084 bytes_in 338080 171084 station_ip 5.120.195.96 171084 port 20 171084 unique_id port 171084 remote_ip 10.8.0.42 171088 username kordestani 171088 mac 171088 bytes_out 1896556 171088 bytes_in 23476292 171088 station_ip 151.235.101.252 171088 port 16 171088 unique_id port 171088 remote_ip 10.8.0.130 171089 username Mahin 171089 kill_reason Relative expiration date has reached 171089 mac 171089 bytes_out 0 171089 bytes_in 0 171089 station_ip 5.120.167.92 171089 port 16 171089 unique_id port 171092 username jafari 171092 kill_reason Another user logged on this global unique id 171092 mac 171092 bytes_out 0 171092 bytes_in 0 171092 station_ip 89.47.68.14 171092 port 10 171092 unique_id port 171095 username vanila 171095 mac 171095 bytes_out 1212371 171095 bytes_in 5982318 171095 station_ip 83.122.224.181 171095 port 6 171095 unique_id port 171095 remote_ip 10.8.0.46 171096 username barzegar 171096 mac 171096 bytes_out 0 171096 bytes_in 0 171096 station_ip 5.119.111.133 171096 port 6 171096 unique_id port 171096 remote_ip 10.8.0.10 171100 username morteza 171100 kill_reason Another user logged on this global unique id 171100 mac 171100 bytes_out 0 171100 bytes_in 0 171100 station_ip 83.122.252.255 171100 port 18 171100 unique_id port 171100 remote_ip 10.8.0.174 171102 username pourshad 171102 mac 171102 bytes_out 2671 171102 bytes_in 4331 171102 station_ip 5.120.195.96 171102 port 21 171102 unique_id port 171102 remote_ip 10.8.0.42 171104 username barzegar 171104 mac 171104 bytes_out 52641 171104 bytes_in 416182 171104 station_ip 5.119.111.133 171104 port 14 171104 unique_id port 171104 remote_ip 10.8.0.10 171105 username sekonji3 171105 mac 171105 bytes_out 16700 171105 bytes_in 33116 171105 station_ip 37.129.89.233 171105 port 6 171105 unique_id port 171105 remote_ip 10.8.0.62 171107 username jafari 171107 kill_reason Another user logged on this global unique id 171107 mac 171107 bytes_out 0 171107 bytes_in 0 171107 station_ip 89.47.68.14 171107 port 10 171107 unique_id port 171111 username hadibarzegar 171111 kill_reason Another user logged on this global unique id 171111 mac 171111 bytes_out 0 171111 bytes_in 0 171111 station_ip 37.129.156.58 171111 port 12 171111 unique_id port 171115 username afarin1 171115 mac 171115 bytes_out 872197 171115 bytes_in 13284007 171115 station_ip 31.59.35.63 171115 port 6 171115 unique_id port 171115 remote_ip 10.8.0.178 171116 username pourshad 171116 kill_reason Another user logged on this global unique id 171116 mac 171116 bytes_out 0 171116 bytes_in 0 171116 station_ip 5.120.195.96 171116 port 22 171116 unique_id port 171116 remote_ip 10.8.0.42 171119 username malekpoir 171119 kill_reason Another user logged on this global unique id 171119 mac 171119 bytes_out 0 171119 bytes_in 0 171119 station_ip 5.119.6.116 171119 port 8 171119 unique_id port 171120 username zotaher 171120 kill_reason Another user logged on this global unique id 171120 mac 171120 bytes_out 0 171120 bytes_in 0 171120 station_ip 83.123.25.249 171120 port 19 171120 unique_id port 171121 username morteza 171121 mac 171121 bytes_out 0 171121 bytes_in 0 171121 station_ip 83.122.252.255 171121 port 18 171121 unique_id port 171122 username morteza 171122 mac 171122 bytes_out 0 171122 bytes_in 0 171122 station_ip 83.122.252.255 171122 port 9 171122 unique_id port 171122 remote_ip 10.8.0.174 171124 username barzegar 171124 mac 171124 bytes_out 0 171124 bytes_in 0 171124 station_ip 5.119.111.133 171101 mac 171101 bytes_out 2098 171101 bytes_in 4391 171101 station_ip 5.119.111.133 171101 port 9 171101 unique_id port 171101 remote_ip 10.8.0.10 171103 username malekpoir 171103 kill_reason Another user logged on this global unique id 171103 mac 171103 bytes_out 0 171103 bytes_in 0 171103 station_ip 5.119.6.116 171103 port 8 171103 unique_id port 171106 username shadkam 171106 mac 171106 bytes_out 707680 171106 bytes_in 8538743 171106 station_ip 83.122.79.198 171106 port 9 171106 unique_id port 171106 remote_ip 10.8.0.74 171109 username afarin1 171109 mac 171109 bytes_out 159811 171109 bytes_in 635643 171109 station_ip 31.59.34.85 171109 port 20 171109 unique_id port 171109 remote_ip 10.8.0.178 171110 username farhad2 171110 kill_reason Another user logged on this global unique id 171110 mac 171110 bytes_out 0 171110 bytes_in 0 171110 station_ip 5.120.104.185 171110 port 17 171110 unique_id port 171113 username alipour 171113 kill_reason Another user logged on this global unique id 171113 mac 171113 bytes_out 0 171113 bytes_in 0 171113 station_ip 37.129.187.181 171113 port 2 171113 unique_id port 171113 remote_ip 10.8.0.26 171114 username barzegar 171114 mac 171114 bytes_out 7169 171114 bytes_in 7806 171114 station_ip 5.119.111.133 171114 port 9 171114 unique_id port 171114 remote_ip 10.8.0.10 171125 username morteza 171125 mac 171125 bytes_out 0 171125 bytes_in 0 171125 station_ip 83.122.252.255 171125 port 9 171125 unique_id port 171125 remote_ip 10.8.0.174 171133 username morteza 171133 mac 171133 bytes_out 0 171133 bytes_in 0 171133 station_ip 83.122.252.255 171133 port 18 171133 unique_id port 171133 remote_ip 10.8.0.174 171141 username barzegar 171141 mac 171141 bytes_out 2151 171141 bytes_in 4444 171141 station_ip 5.119.111.133 171141 port 14 171141 unique_id port 171141 remote_ip 10.8.0.10 171142 username barzegar 171142 mac 171142 bytes_out 0 171142 bytes_in 0 171142 station_ip 5.119.111.133 171142 port 14 171142 unique_id port 171142 remote_ip 10.8.0.10 171149 username jafari 171149 kill_reason Another user logged on this global unique id 171149 mac 171149 bytes_out 0 171149 bytes_in 0 171149 station_ip 89.47.68.14 171149 port 10 171149 unique_id port 171150 username zotaher 171150 mac 171150 bytes_out 197106 171150 bytes_in 356866 171150 station_ip 83.123.25.249 171150 port 18 171150 unique_id port 171150 remote_ip 10.8.0.166 171157 username barzegar 171157 mac 171157 bytes_out 0 171157 bytes_in 0 171157 station_ip 5.119.111.133 171157 port 1 171157 unique_id port 171157 remote_ip 10.8.0.10 171159 username barzegar 171159 mac 171159 bytes_out 0 171159 bytes_in 0 171159 station_ip 5.119.111.133 171159 port 1 171159 unique_id port 171159 remote_ip 10.8.0.10 171161 username jafari 171161 kill_reason Another user logged on this global unique id 171161 mac 171161 bytes_out 0 171161 bytes_in 0 171161 station_ip 89.47.68.14 171161 port 10 171161 unique_id port 171164 username barzegar 171164 mac 171164 bytes_out 0 171164 bytes_in 0 171164 station_ip 5.119.111.133 171164 port 6 171164 unique_id port 171164 remote_ip 10.8.0.10 171167 username barzegar 171167 mac 171167 bytes_out 0 171167 bytes_in 0 171167 station_ip 5.119.111.133 171167 port 9 171167 unique_id port 171167 remote_ip 10.8.0.10 171169 username morteza 171169 mac 171169 bytes_out 0 171169 bytes_in 0 171169 station_ip 83.122.111.36 171169 port 8 171169 unique_id port 171169 remote_ip 10.8.0.174 171173 username barzegar 171117 station_ip 5.119.111.133 171117 port 9 171117 unique_id port 171117 remote_ip 10.8.0.10 171118 username kalantary 171118 mac 171118 bytes_out 10587 171118 bytes_in 17766 171118 station_ip 83.123.33.76 171118 port 6 171118 unique_id port 171118 remote_ip 10.8.0.50 171123 username zotaher 171123 mac 171123 bytes_out 0 171123 bytes_in 0 171123 station_ip 83.123.25.249 171123 port 19 171123 unique_id port 171129 username godarzi 171129 kill_reason Another user logged on this global unique id 171129 mac 171129 bytes_out 0 171129 bytes_in 0 171129 station_ip 5.119.200.207 171129 port 1 171129 unique_id port 171129 remote_ip 10.8.0.38 171130 username barzegar 171130 mac 171130 bytes_out 0 171130 bytes_in 0 171130 station_ip 5.119.111.133 171130 port 9 171130 unique_id port 171130 remote_ip 10.8.0.10 171131 username morteza 171131 mac 171131 bytes_out 0 171131 bytes_in 0 171131 station_ip 83.122.252.255 171131 port 9 171131 unique_id port 171131 remote_ip 10.8.0.174 171132 username barzegar 171132 mac 171132 bytes_out 0 171132 bytes_in 0 171132 station_ip 5.119.111.133 171132 port 9 171132 unique_id port 171132 remote_ip 10.8.0.10 171136 username morteza 171136 mac 171136 bytes_out 0 171136 bytes_in 0 171136 station_ip 83.122.252.255 171136 port 9 171136 unique_id port 171136 remote_ip 10.8.0.174 171140 username morteza 171140 mac 171140 bytes_out 0 171140 bytes_in 0 171140 station_ip 83.122.252.255 171140 port 9 171140 unique_id port 171140 remote_ip 10.8.0.174 171143 username malekpoir 171143 mac 171143 bytes_out 0 171143 bytes_in 0 171143 station_ip 5.119.6.116 171143 port 8 171143 unique_id port 171145 username godarzi 171145 mac 171145 bytes_out 0 171145 bytes_in 0 171145 station_ip 5.119.200.207 171145 port 1 171145 unique_id port 171146 username houshang 171146 mac 171146 bytes_out 175360 171146 bytes_in 527178 171146 station_ip 5.119.184.139 171146 port 6 171146 unique_id port 171146 remote_ip 10.8.0.82 171148 username barzegar 171148 mac 171148 bytes_out 0 171148 bytes_in 0 171148 station_ip 5.119.111.133 171148 port 1 171148 unique_id port 171148 remote_ip 10.8.0.10 171151 username barzegar 171151 mac 171151 bytes_out 0 171151 bytes_in 0 171151 station_ip 5.119.111.133 171151 port 1 171151 unique_id port 171151 remote_ip 10.8.0.10 171152 username barzegar 171152 mac 171152 bytes_out 2218 171152 bytes_in 4527 171152 station_ip 5.119.111.133 171152 port 1 171152 unique_id port 171152 remote_ip 10.8.0.10 171154 username farhad2 171154 mac 171154 bytes_out 0 171154 bytes_in 0 171154 station_ip 5.120.104.185 171154 port 17 171154 unique_id port 171158 username yarmohamadi 171158 kill_reason Another user logged on this global unique id 171158 mac 171158 bytes_out 0 171158 bytes_in 0 171158 station_ip 5.120.40.249 171158 port 21 171158 unique_id port 171165 username hadibarzegar 171165 kill_reason Another user logged on this global unique id 171165 mac 171165 bytes_out 0 171165 bytes_in 0 171165 station_ip 37.129.156.58 171165 port 12 171165 unique_id port 171166 username jafari 171166 kill_reason Another user logged on this global unique id 171166 mac 171166 bytes_out 0 171166 bytes_in 0 171166 station_ip 89.47.68.14 171166 port 10 171166 unique_id port 171168 username morteza 171168 mac 171168 bytes_out 358904 171168 bytes_in 6485913 171168 station_ip 83.122.111.36 171168 port 8 171168 unique_id port 171168 remote_ip 10.8.0.174 171170 username pourshad 171124 port 9 171124 unique_id port 171124 remote_ip 10.8.0.10 171126 username morteza 171126 mac 171126 bytes_out 0 171126 bytes_in 0 171126 station_ip 83.122.252.255 171126 port 9 171126 unique_id port 171126 remote_ip 10.8.0.174 171127 username farhad2 171127 kill_reason Another user logged on this global unique id 171127 mac 171127 bytes_out 0 171127 bytes_in 0 171127 station_ip 5.120.104.185 171127 port 17 171127 unique_id port 171128 username jafari 171128 kill_reason Another user logged on this global unique id 171128 mac 171128 bytes_out 0 171128 bytes_in 0 171128 station_ip 89.47.68.14 171128 port 10 171128 unique_id port 171128 remote_ip 10.8.0.86 171134 username morteza 171134 mac 171134 bytes_out 0 171134 bytes_in 0 171134 station_ip 83.122.252.255 171134 port 9 171134 unique_id port 171134 remote_ip 10.8.0.174 171135 username morteza 171135 mac 171135 bytes_out 0 171135 bytes_in 0 171135 station_ip 83.122.252.255 171135 port 9 171135 unique_id port 171135 remote_ip 10.8.0.174 171137 username zotaher 171137 mac 171137 bytes_out 1206215 171137 bytes_in 15565201 171137 station_ip 83.123.25.249 171137 port 14 171137 unique_id port 171137 remote_ip 10.8.0.166 171138 username Mahin 171138 kill_reason Relative expiration date has reached 171138 mac 171138 bytes_out 0 171138 bytes_in 0 171138 station_ip 5.119.246.227 171138 port 19 171138 unique_id port 171139 username morteza 171139 mac 171139 bytes_out 0 171139 bytes_in 0 171139 station_ip 83.122.252.255 171139 port 9 171139 unique_id port 171139 remote_ip 10.8.0.174 171144 username morteza 171144 mac 171144 bytes_out 2005 171144 bytes_in 4470 171144 station_ip 83.122.252.255 171144 port 9 171144 unique_id port 171144 remote_ip 10.8.0.174 171147 username barzegar 171147 mac 171147 bytes_out 0 171147 bytes_in 0 171147 station_ip 5.119.111.133 171147 port 1 171147 unique_id port 171147 remote_ip 10.8.0.10 171153 username majidsarmast 171153 mac 171153 bytes_out 1542458 171153 bytes_in 9371943 171153 station_ip 5.119.143.98 171153 port 16 171153 unique_id port 171153 remote_ip 10.8.0.170 171155 username yarmohamadi 171155 kill_reason Another user logged on this global unique id 171155 mac 171155 bytes_out 0 171155 bytes_in 0 171155 station_ip 5.120.40.249 171155 port 21 171155 unique_id port 171155 remote_ip 10.8.0.6 171156 username barzegar 171156 mac 171156 bytes_out 0 171156 bytes_in 0 171156 station_ip 5.119.111.133 171156 port 1 171156 unique_id port 171156 remote_ip 10.8.0.10 171160 username forozandeh1 171160 mac 171160 bytes_out 517868 171160 bytes_in 2740485 171160 station_ip 83.123.190.79 171160 port 6 171160 unique_id port 171160 remote_ip 10.8.0.30 171162 username barzegar 171162 mac 171162 bytes_out 0 171162 bytes_in 0 171162 station_ip 5.119.111.133 171162 port 1 171162 unique_id port 171162 remote_ip 10.8.0.10 171163 username yarmohamadi 171163 kill_reason Another user logged on this global unique id 171163 mac 171163 bytes_out 0 171163 bytes_in 0 171163 station_ip 5.120.40.249 171163 port 21 171163 unique_id port 171172 username yarmohamadi 171172 kill_reason Another user logged on this global unique id 171172 mac 171172 bytes_out 0 171172 bytes_in 0 171172 station_ip 5.120.40.249 171172 port 21 171172 unique_id port 171174 username jafari 171174 kill_reason Another user logged on this global unique id 171174 mac 171174 bytes_out 0 171174 bytes_in 0 171174 station_ip 89.47.68.14 171174 port 10 171174 unique_id port 171175 username hadibarzegar 171215 mac 171170 mac 171170 bytes_out 0 171170 bytes_in 0 171170 station_ip 5.120.195.96 171170 port 22 171170 unique_id port 171171 username pourshad 171171 mac 171171 bytes_out 4218 171171 bytes_in 5850 171171 station_ip 5.120.195.96 171171 port 8 171171 unique_id port 171171 remote_ip 10.8.0.42 171176 username yarmohamadi 171176 kill_reason Another user logged on this global unique id 171176 mac 171176 bytes_out 0 171176 bytes_in 0 171176 station_ip 5.120.40.249 171176 port 21 171176 unique_id port 171180 username majidsarmast 171180 kill_reason Another user logged on this global unique id 171180 mac 171180 bytes_out 0 171180 bytes_in 0 171180 station_ip 5.119.143.98 171180 port 16 171180 unique_id port 171180 remote_ip 10.8.0.170 171181 username hashtadani4 171181 mac 171181 bytes_out 2214558 171181 bytes_in 27129037 171181 station_ip 83.122.198.119 171181 port 8 171181 unique_id port 171181 remote_ip 10.8.0.22 171183 username hashtadani4 171183 mac 171183 bytes_out 0 171183 bytes_in 0 171183 station_ip 83.122.198.119 171183 port 23 171183 unique_id port 171183 remote_ip 10.8.0.22 171187 username milan 171187 kill_reason Another user logged on this global unique id 171187 mac 171187 bytes_out 0 171187 bytes_in 0 171187 station_ip 5.119.173.190 171187 port 6 171187 unique_id port 171187 remote_ip 10.8.0.182 171190 username godarzi 171190 mac 171190 bytes_out 3047257 171190 bytes_in 41708698 171190 station_ip 5.119.200.207 171190 port 1 171190 unique_id port 171190 remote_ip 10.8.0.38 171193 username hashtadani4 171193 mac 171193 bytes_out 6780 171193 bytes_in 16842 171193 station_ip 83.122.198.119 171193 port 1 171193 unique_id port 171193 remote_ip 10.8.0.22 171194 username shadkam 171194 mac 171194 bytes_out 2404858 171194 bytes_in 17446966 171194 station_ip 83.123.17.91 171194 port 19 171194 unique_id port 171194 remote_ip 10.8.0.74 171195 username milan 171195 kill_reason Another user logged on this global unique id 171195 mac 171195 bytes_out 0 171195 bytes_in 0 171195 station_ip 5.119.173.190 171195 port 6 171195 unique_id port 171196 username barzegar 171196 mac 171196 bytes_out 0 171196 bytes_in 0 171196 station_ip 5.119.111.133 171196 port 1 171196 unique_id port 171196 remote_ip 10.8.0.10 171197 username farhad2 171197 mac 171197 bytes_out 671622 171197 bytes_in 3961693 171197 station_ip 5.119.146.214 171197 port 7 171197 unique_id port 171197 remote_ip 10.8.0.146 171203 username barzegar 171203 mac 171203 bytes_out 0 171203 bytes_in 0 171203 station_ip 5.119.111.133 171203 port 14 171203 unique_id port 171203 remote_ip 10.8.0.10 171204 username rahim 171204 mac 171204 bytes_out 0 171204 bytes_in 0 171204 station_ip 5.119.218.17 171204 port 14 171204 unique_id port 171204 remote_ip 10.8.0.134 171206 username rahim 171206 mac 171206 bytes_out 0 171206 bytes_in 0 171206 station_ip 5.119.218.17 171206 port 19 171206 unique_id port 171206 remote_ip 10.8.0.134 171208 username aminvpn 171208 mac 171208 bytes_out 3523 171208 bytes_in 5714 171208 station_ip 5.119.85.159 171208 port 7 171208 unique_id port 171208 remote_ip 10.8.0.58 171210 username morteza 171210 kill_reason Another user logged on this global unique id 171210 mac 171210 bytes_out 0 171210 bytes_in 0 171210 station_ip 83.122.111.36 171210 port 20 171210 unique_id port 171211 username rahim 171211 mac 171211 bytes_out 0 171211 bytes_in 0 171211 station_ip 5.119.218.17 171211 port 18 171211 unique_id port 171211 remote_ip 10.8.0.134 171215 username rahim 171173 mac 171173 bytes_out 0 171173 bytes_in 0 171173 station_ip 5.119.111.133 171173 port 18 171173 unique_id port 171173 remote_ip 10.8.0.10 171177 username morteza 171177 kill_reason Another user logged on this global unique id 171177 mac 171177 bytes_out 0 171177 bytes_in 0 171177 station_ip 83.122.111.36 171177 port 14 171177 unique_id port 171177 remote_ip 10.8.0.174 171182 username hashtadani4 171182 mac 171182 bytes_out 0 171182 bytes_in 0 171182 station_ip 83.122.198.119 171182 port 8 171182 unique_id port 171182 remote_ip 10.8.0.22 171186 username morteza 171186 kill_reason Another user logged on this global unique id 171186 mac 171186 bytes_out 0 171186 bytes_in 0 171186 station_ip 83.122.111.36 171186 port 20 171186 unique_id port 171186 remote_ip 10.8.0.174 171198 username aminvpn 171198 mac 171198 bytes_out 0 171198 bytes_in 0 171198 station_ip 5.119.52.87 171198 port 19 171198 unique_id port 171198 remote_ip 10.8.0.58 171199 username barzegar 171199 mac 171199 bytes_out 0 171199 bytes_in 0 171199 station_ip 5.119.111.133 171199 port 19 171199 unique_id port 171199 remote_ip 10.8.0.10 171202 username rahim 171202 mac 171202 bytes_out 0 171202 bytes_in 0 171202 station_ip 5.119.218.17 171202 port 23 171202 unique_id port 171202 remote_ip 10.8.0.134 171205 username mosi 171205 mac 171205 bytes_out 3264305 171205 bytes_in 38346461 171205 station_ip 2.184.6.118 171205 port 18 171205 unique_id port 171205 remote_ip 10.8.0.142 171212 username hadibarzegar 171212 kill_reason Another user logged on this global unique id 171212 mac 171212 bytes_out 0 171212 bytes_in 0 171212 station_ip 37.129.156.58 171212 port 12 171212 unique_id port 171213 username hashtadani4 171213 mac 171213 bytes_out 0 171213 bytes_in 0 171213 station_ip 83.122.198.119 171213 port 18 171213 unique_id port 171213 remote_ip 10.8.0.22 171217 username kordestani 171217 mac 171217 bytes_out 3800056 171217 bytes_in 56128618 171217 station_ip 151.235.101.252 171217 port 8 171217 unique_id port 171217 remote_ip 10.8.0.130 171219 username forozandeh1 171219 mac 171219 bytes_out 465589 171219 bytes_in 6102533 171219 station_ip 113.203.124.74 171219 port 14 171219 unique_id port 171219 remote_ip 10.8.0.30 171221 username milan 171221 kill_reason Another user logged on this global unique id 171221 mac 171221 bytes_out 0 171221 bytes_in 0 171221 station_ip 5.119.173.190 171221 port 6 171221 unique_id port 171223 username farhad2 171223 mac 171223 bytes_out 534793 171223 bytes_in 1691847 171223 station_ip 5.119.146.214 171223 port 7 171223 unique_id port 171223 remote_ip 10.8.0.146 171225 username barzegar 171225 mac 171225 bytes_out 0 171225 bytes_in 0 171225 station_ip 5.119.111.133 171225 port 14 171225 unique_id port 171225 remote_ip 10.8.0.10 171227 username hashtadani4 171227 kill_reason Maximum check online fails reached 171227 mac 171227 bytes_out 0 171227 bytes_in 0 171227 station_ip 83.122.198.119 171227 port 8 171227 unique_id port 171229 username milan 171229 kill_reason Another user logged on this global unique id 171229 mac 171229 bytes_out 0 171229 bytes_in 0 171229 station_ip 5.119.173.190 171229 port 6 171229 unique_id port 171230 username morteza 171230 mac 171230 bytes_out 0 171230 bytes_in 0 171230 station_ip 83.122.111.36 171230 port 20 171230 unique_id port 171232 username yarmohamadi 171232 kill_reason Another user logged on this global unique id 171232 mac 171232 bytes_out 0 171232 bytes_in 0 171232 station_ip 5.120.40.249 171232 port 21 171175 kill_reason Another user logged on this global unique id 171175 mac 171175 bytes_out 0 171175 bytes_in 0 171175 station_ip 37.129.156.58 171175 port 12 171175 unique_id port 171178 username morteza 171178 mac 171178 bytes_out 0 171178 bytes_in 0 171178 station_ip 83.122.111.36 171178 port 14 171178 unique_id port 171179 username morteza 171179 mac 171179 bytes_out 2137 171179 bytes_in 6218 171179 station_ip 83.122.111.36 171179 port 14 171179 unique_id port 171179 remote_ip 10.8.0.174 171184 username barzegar 171184 mac 171184 bytes_out 0 171184 bytes_in 0 171184 station_ip 5.119.111.133 171184 port 8 171184 unique_id port 171184 remote_ip 10.8.0.10 171185 username aminvpn 171185 mac 171185 bytes_out 5842808 171185 bytes_in 34631244 171185 station_ip 5.119.94.158 171185 port 7 171185 unique_id port 171185 remote_ip 10.8.0.58 171188 username hadibarzegar 171188 kill_reason Another user logged on this global unique id 171188 mac 171188 bytes_out 0 171188 bytes_in 0 171188 station_ip 37.129.156.58 171188 port 12 171188 unique_id port 171189 username hashtadani4 171189 mac 171189 bytes_out 1710 171189 bytes_in 3731 171189 station_ip 83.122.198.119 171189 port 8 171189 unique_id port 171189 remote_ip 10.8.0.22 171191 username hashtadani4 171191 mac 171191 bytes_out 0 171191 bytes_in 0 171191 station_ip 83.122.198.119 171191 port 23 171191 unique_id port 171191 remote_ip 10.8.0.22 171192 username morteza 171192 kill_reason Another user logged on this global unique id 171192 mac 171192 bytes_out 0 171192 bytes_in 0 171192 station_ip 83.122.111.36 171192 port 20 171192 unique_id port 171200 username rahim 171200 mac 171200 bytes_out 1656655 171200 bytes_in 9812638 171200 station_ip 5.119.218.17 171200 port 14 171200 unique_id port 171200 remote_ip 10.8.0.134 171201 username hashtadani4 171201 mac 171201 bytes_out 0 171201 bytes_in 0 171201 station_ip 83.122.198.119 171201 port 19 171201 unique_id port 171201 remote_ip 10.8.0.22 171207 username alipour 171207 kill_reason Another user logged on this global unique id 171207 mac 171207 bytes_out 0 171207 bytes_in 0 171207 station_ip 37.129.187.181 171207 port 2 171207 unique_id port 171209 username farhad2 171209 mac 171209 bytes_out 0 171209 bytes_in 0 171209 station_ip 5.119.146.214 171209 port 14 171209 unique_id port 171209 remote_ip 10.8.0.146 171214 username rahim 171214 mac 171214 bytes_out 0 171214 bytes_in 0 171214 station_ip 5.119.218.17 171214 port 18 171214 unique_id port 171214 remote_ip 10.8.0.134 171216 username godarzi 171216 mac 171216 bytes_out 331577 171216 bytes_in 4685210 171216 station_ip 5.119.200.207 171216 port 19 171216 unique_id port 171216 remote_ip 10.8.0.38 171220 username hashtadani4 171220 kill_reason Maximum check online fails reached 171220 mac 171220 bytes_out 0 171220 bytes_in 0 171220 station_ip 83.122.198.119 171220 port 18 171220 unique_id port 171222 username barzegar 171222 mac 171222 bytes_out 2628 171222 bytes_in 4974 171222 station_ip 5.119.111.133 171222 port 8 171222 unique_id port 171222 remote_ip 10.8.0.10 171224 username hashtadani4 171224 mac 171224 bytes_out 0 171224 bytes_in 0 171224 station_ip 83.122.198.119 171224 port 8 171224 unique_id port 171224 remote_ip 10.8.0.22 171228 username hashtadani4 171228 mac 171228 bytes_out 0 171228 bytes_in 0 171228 station_ip 83.122.198.119 171228 port 24 171228 unique_id port 171228 remote_ip 10.8.0.22 171231 username hashtadani4 171231 mac 171231 bytes_out 0 171215 bytes_out 0 171215 bytes_in 0 171215 station_ip 5.119.218.17 171215 port 23 171215 unique_id port 171215 remote_ip 10.8.0.134 171218 username shadkam 171218 mac 171218 bytes_out 955777 171218 bytes_in 8642368 171218 station_ip 83.122.140.67 171218 port 1 171218 unique_id port 171218 remote_ip 10.8.0.74 171226 username sedighe 171226 mac 171226 bytes_out 96622 171226 bytes_in 241453 171226 station_ip 113.203.120.182 171226 port 19 171226 unique_id port 171226 remote_ip 10.8.0.78 171233 username aminvpn 171233 mac 171233 bytes_out 1167979 171233 bytes_in 8689771 171233 station_ip 83.123.141.110 171233 port 1 171233 unique_id port 171233 remote_ip 10.8.0.58 171238 username hashtadani4 171238 mac 171238 bytes_out 0 171238 bytes_in 0 171238 station_ip 83.122.198.119 171238 port 27 171238 unique_id port 171238 remote_ip 10.8.0.22 171243 username hadibarzegar 171243 kill_reason Another user logged on this global unique id 171243 mac 171243 bytes_out 0 171243 bytes_in 0 171243 station_ip 37.129.156.58 171243 port 12 171243 unique_id port 171248 username kalantary 171248 mac 171248 bytes_out 892094 171248 bytes_in 6303705 171248 station_ip 83.123.116.116 171248 port 17 171248 unique_id port 171248 remote_ip 10.8.0.50 171253 username morteza 171253 mac 171253 bytes_out 0 171253 bytes_in 0 171253 station_ip 83.122.111.36 171253 port 19 171253 unique_id port 171253 remote_ip 10.8.0.174 171255 username houshang 171255 mac 171255 bytes_out 0 171255 bytes_in 0 171255 station_ip 5.119.184.139 171255 port 9 171255 unique_id port 171255 remote_ip 10.8.0.82 171256 username aminvpn 171256 mac 171256 bytes_out 125737 171256 bytes_in 227101 171256 station_ip 83.123.141.110 171256 port 28 171256 unique_id port 171256 remote_ip 10.8.0.58 171260 username rahim 171260 mac 171260 bytes_out 0 171260 bytes_in 0 171260 station_ip 5.119.218.17 171260 port 23 171260 unique_id port 171260 remote_ip 10.8.0.134 171262 username hashtadani4 171262 kill_reason Maximum check online fails reached 171262 mac 171262 bytes_out 0 171262 bytes_in 0 171262 station_ip 83.122.198.119 171262 port 19 171262 unique_id port 171264 username yarmohamadi 171264 kill_reason Another user logged on this global unique id 171264 mac 171264 bytes_out 0 171264 bytes_in 0 171264 station_ip 5.120.40.249 171264 port 21 171264 unique_id port 171267 username rahim 171267 mac 171267 bytes_out 0 171267 bytes_in 0 171267 station_ip 5.119.218.17 171267 port 30 171267 unique_id port 171267 remote_ip 10.8.0.134 171268 username rahim 171268 mac 171268 bytes_out 0 171268 bytes_in 0 171268 station_ip 5.119.218.17 171268 port 23 171268 unique_id port 171268 remote_ip 10.8.0.134 171270 username farhad2 171270 mac 171270 bytes_out 3375270 171270 bytes_in 25856750 171270 station_ip 5.119.66.31 171270 port 1 171270 unique_id port 171270 remote_ip 10.8.0.146 171274 username morteza 171274 mac 171274 bytes_out 0 171274 bytes_in 0 171274 station_ip 83.122.111.36 171274 port 29 171274 unique_id port 171274 remote_ip 10.8.0.174 171276 username farhad2 171276 mac 171276 bytes_out 300690 171276 bytes_in 1711523 171276 station_ip 5.119.103.114 171276 port 23 171276 unique_id port 171276 remote_ip 10.8.0.146 171278 username barzegar 171278 mac 171278 bytes_out 0 171278 bytes_in 0 171278 station_ip 5.119.111.133 171278 port 23 171278 unique_id port 171278 remote_ip 10.8.0.10 171280 username milan 171280 kill_reason Another user logged on this global unique id 171280 mac 171231 bytes_in 0 171231 station_ip 83.122.198.119 171231 port 24 171231 unique_id port 171231 remote_ip 10.8.0.22 171234 username farhad2 171234 mac 171234 bytes_out 598992 171234 bytes_in 2704347 171234 station_ip 5.119.146.214 171234 port 7 171234 unique_id port 171234 remote_ip 10.8.0.146 171235 username aminvpn 171235 mac 171235 bytes_out 0 171235 bytes_in 0 171235 station_ip 5.120.128.56 171235 port 25 171235 unique_id port 171235 remote_ip 10.8.0.58 171240 username hashtadani4 171240 mac 171240 bytes_out 0 171240 bytes_in 0 171240 station_ip 83.122.198.119 171240 port 26 171240 unique_id port 171240 remote_ip 10.8.0.22 171244 username rahim 171244 mac 171244 bytes_out 0 171244 bytes_in 0 171244 station_ip 5.119.218.17 171244 port 25 171244 unique_id port 171244 remote_ip 10.8.0.134 171246 username rahim 171246 mac 171246 bytes_out 0 171246 bytes_in 0 171246 station_ip 5.119.218.17 171246 port 25 171246 unique_id port 171246 remote_ip 10.8.0.134 171249 username barzegar 171249 mac 171249 bytes_out 0 171249 bytes_in 0 171249 station_ip 5.119.111.133 171249 port 25 171249 unique_id port 171249 remote_ip 10.8.0.10 171251 username saeed9658 171251 mac 171251 bytes_out 1803820 171251 bytes_in 19202981 171251 station_ip 5.119.77.159 171251 port 9 171251 unique_id port 171251 remote_ip 10.8.0.154 171254 username hashtadani4 171254 mac 171254 bytes_out 0 171254 bytes_in 0 171254 station_ip 83.122.198.119 171254 port 27 171254 unique_id port 171254 remote_ip 10.8.0.22 171258 username majidsarmast 171258 kill_reason Another user logged on this global unique id 171258 mac 171258 bytes_out 0 171258 bytes_in 0 171258 station_ip 5.119.143.98 171258 port 16 171258 unique_id port 171265 username aminvpn 171265 mac 171265 bytes_out 442081 171265 bytes_in 4685157 171265 station_ip 5.120.128.56 171265 port 29 171265 unique_id port 171265 remote_ip 10.8.0.58 171269 username aminvpn 171269 mac 171269 bytes_out 24258 171269 bytes_in 26880 171269 station_ip 5.120.128.56 171269 port 31 171269 unique_id port 171269 remote_ip 10.8.0.58 171271 username rahim 171271 mac 171271 bytes_out 0 171271 bytes_in 0 171271 station_ip 5.119.218.17 171271 port 23 171271 unique_id port 171271 remote_ip 10.8.0.134 171272 username hadibarzegar 171272 kill_reason Another user logged on this global unique id 171272 mac 171272 bytes_out 0 171272 bytes_in 0 171272 station_ip 37.129.156.58 171272 port 12 171272 unique_id port 171273 username rahim 171273 mac 171273 bytes_out 0 171273 bytes_in 0 171273 station_ip 5.119.218.17 171273 port 1 171273 unique_id port 171273 remote_ip 10.8.0.134 171275 username yarmohamadi 171275 kill_reason Another user logged on this global unique id 171275 mac 171275 bytes_out 0 171275 bytes_in 0 171275 station_ip 5.120.40.249 171275 port 21 171275 unique_id port 171277 username pourshad 171277 kill_reason Another user logged on this global unique id 171277 mac 171277 bytes_out 0 171277 bytes_in 0 171277 station_ip 5.120.195.96 171277 port 26 171277 unique_id port 171277 remote_ip 10.8.0.42 171281 username morteza 171281 mac 171281 bytes_out 0 171281 bytes_in 0 171281 station_ip 83.122.111.36 171281 port 29 171281 unique_id port 171281 remote_ip 10.8.0.174 171284 username farhad2 171284 mac 171284 bytes_out 0 171284 bytes_in 0 171284 station_ip 5.119.103.114 171284 port 29 171284 unique_id port 171284 remote_ip 10.8.0.146 171286 username mosi 171286 mac 171286 bytes_out 2205875 171286 bytes_in 24006736 171232 unique_id port 171236 username aminvpn 171236 mac 171236 bytes_out 0 171236 bytes_in 0 171236 station_ip 83.123.141.110 171236 port 1 171236 unique_id port 171236 remote_ip 10.8.0.58 171237 username aminvpn 171237 mac 171237 bytes_out 0 171237 bytes_in 0 171237 station_ip 5.120.128.56 171237 port 26 171237 unique_id port 171237 remote_ip 10.8.0.58 171239 username hashtadani4 171239 kill_reason Maximum check online fails reached 171239 mac 171239 bytes_out 0 171239 bytes_in 0 171239 station_ip 83.122.198.119 171239 port 24 171239 unique_id port 171241 username pourshad 171241 mac 171241 bytes_out 1712645 171241 bytes_in 23173357 171241 station_ip 5.120.195.96 171241 port 17 171241 unique_id port 171241 remote_ip 10.8.0.42 171242 username rahim 171242 mac 171242 bytes_out 524011 171242 bytes_in 4196160 171242 station_ip 5.119.218.17 171242 port 25 171242 unique_id port 171242 remote_ip 10.8.0.134 171245 username rahim 171245 mac 171245 bytes_out 0 171245 bytes_in 0 171245 station_ip 5.119.218.17 171245 port 25 171245 unique_id port 171245 remote_ip 10.8.0.134 171247 username hashtadani4 171247 mac 171247 bytes_out 0 171247 bytes_in 0 171247 station_ip 83.122.198.119 171247 port 27 171247 unique_id port 171247 remote_ip 10.8.0.22 171250 username rahim 171250 mac 171250 bytes_out 0 171250 bytes_in 0 171250 station_ip 5.119.218.17 171250 port 17 171250 unique_id port 171250 remote_ip 10.8.0.134 171252 username morteza 171252 mac 171252 bytes_out 1516426 171252 bytes_in 21292284 171252 station_ip 83.122.111.36 171252 port 19 171252 unique_id port 171252 remote_ip 10.8.0.174 171257 username mosi 171257 mac 171257 bytes_out 613010 171257 bytes_in 3681567 171257 station_ip 37.153.177.140 171257 port 23 171257 unique_id port 171257 remote_ip 10.8.0.142 171259 username hashtadani4 171259 kill_reason Maximum number of concurrent logins reached 171259 mac 171259 bytes_out 0 171259 bytes_in 0 171259 station_ip 83.122.198.119 171259 port 30 171259 unique_id port 171261 username hashtadani4 171261 kill_reason Maximum check online fails reached 171261 mac 171261 bytes_out 0 171261 bytes_in 0 171261 station_ip 83.122.198.119 171261 port 9 171261 unique_id port 171263 username rahim 171263 mac 171263 bytes_out 0 171263 bytes_in 0 171263 station_ip 5.119.218.17 171263 port 23 171263 unique_id port 171263 remote_ip 10.8.0.134 171266 username morteza 171266 mac 171266 bytes_out 2082 171266 bytes_in 4582 171266 station_ip 83.122.111.36 171266 port 23 171266 unique_id port 171266 remote_ip 10.8.0.174 171279 username morteza 171279 mac 171279 bytes_out 0 171279 bytes_in 0 171279 station_ip 83.122.111.36 171279 port 29 171279 unique_id port 171279 remote_ip 10.8.0.174 171283 username pourshad 171283 kill_reason Another user logged on this global unique id 171283 mac 171283 bytes_out 0 171283 bytes_in 0 171283 station_ip 5.120.195.96 171283 port 26 171283 unique_id port 171287 username morteza 171287 mac 171287 bytes_out 0 171287 bytes_in 0 171287 station_ip 83.122.111.36 171287 port 30 171287 unique_id port 171287 remote_ip 10.8.0.174 171290 username farhad2 171290 mac 171290 bytes_out 128613 171290 bytes_in 637200 171290 station_ip 5.119.103.114 171290 port 23 171290 unique_id port 171290 remote_ip 10.8.0.146 171292 username morteza 171292 mac 171292 bytes_out 0 171292 bytes_in 0 171292 station_ip 83.122.111.36 171292 port 23 171292 unique_id port 171292 remote_ip 10.8.0.174 171297 username hadibarzegar 171280 bytes_out 0 171280 bytes_in 0 171280 station_ip 5.119.173.190 171280 port 6 171280 unique_id port 171282 username shadkam 171282 mac 171282 bytes_out 181767 171282 bytes_in 2009929 171282 station_ip 113.203.33.137 171282 port 23 171282 unique_id port 171282 remote_ip 10.8.0.74 171285 username hadibarzegar 171285 kill_reason Another user logged on this global unique id 171285 mac 171285 bytes_out 0 171285 bytes_in 0 171285 station_ip 37.129.156.58 171285 port 12 171285 unique_id port 171288 username tahmasebi 171288 mac 171288 bytes_out 0 171288 bytes_in 0 171288 station_ip 5.119.45.99 171288 port 29 171288 unique_id port 171288 remote_ip 10.8.0.126 171295 username kalantary 171295 mac 171295 bytes_out 546436 171295 bytes_in 5845372 171295 station_ip 83.123.93.68 171295 port 25 171295 unique_id port 171295 remote_ip 10.8.0.50 171298 username morteza 171298 mac 171298 bytes_out 0 171298 bytes_in 0 171298 station_ip 83.122.111.36 171298 port 31 171298 unique_id port 171298 remote_ip 10.8.0.174 171301 username tahmasebi 171301 mac 171301 bytes_out 31091 171301 bytes_in 60733 171301 station_ip 5.119.45.99 171301 port 28 171301 unique_id port 171301 remote_ip 10.8.0.126 171303 username mohammadjavad 171303 mac 171303 bytes_out 1597649 171303 bytes_in 27316983 171303 station_ip 83.122.159.203 171303 port 22 171303 unique_id port 171303 remote_ip 10.8.0.110 171316 username morteza 171316 mac 171316 bytes_out 1636 171316 bytes_in 5023 171316 station_ip 83.122.111.36 171316 port 22 171316 unique_id port 171316 remote_ip 10.8.0.174 171321 username Mahin 171321 kill_reason Relative expiration date has reached 171321 mac 171321 bytes_out 0 171321 bytes_in 0 171321 station_ip 5.119.218.240 171321 port 22 171321 unique_id port 171325 username sabaghnezhad 171325 mac 171325 bytes_out 969794 171325 bytes_in 12129574 171325 station_ip 37.129.87.205 171325 port 17 171325 unique_id port 171325 remote_ip 10.8.0.66 171328 username farhad2 171328 mac 171328 bytes_out 478151 171328 bytes_in 3365606 171328 station_ip 5.120.149.78 171328 port 14 171328 unique_id port 171328 remote_ip 10.8.0.146 171329 username sedighe 171329 mac 171329 bytes_out 45899 171329 bytes_in 67254 171329 station_ip 113.203.120.182 171329 port 22 171329 unique_id port 171329 remote_ip 10.8.0.78 171337 username morteza 171337 mac 171337 bytes_out 0 171337 bytes_in 0 171337 station_ip 83.122.111.36 171337 port 27 171337 unique_id port 171337 remote_ip 10.8.0.174 171338 username morteza 171338 mac 171338 bytes_out 0 171338 bytes_in 0 171338 station_ip 83.122.111.36 171338 port 25 171338 unique_id port 171338 remote_ip 10.8.0.174 171343 username majidsarmast 171343 mac 171343 bytes_out 1666227 171343 bytes_in 18997216 171343 station_ip 86.57.12.94 171343 port 28 171343 unique_id port 171343 remote_ip 10.8.0.170 171344 username barzegar 171344 mac 171344 bytes_out 0 171344 bytes_in 0 171344 station_ip 5.119.111.133 171344 port 23 171344 unique_id port 171344 remote_ip 10.8.0.10 171347 username sedighe 171347 mac 171347 bytes_out 66093 171347 bytes_in 109665 171347 station_ip 83.123.135.30 171347 port 17 171347 unique_id port 171347 remote_ip 10.8.0.78 171349 username shadkam 171349 mac 171349 bytes_out 122290 171349 bytes_in 1940959 171349 station_ip 83.123.210.24 171349 port 17 171349 unique_id port 171349 remote_ip 10.8.0.74 171351 username barzegar 171351 mac 171351 bytes_out 0 171351 bytes_in 0 171286 station_ip 2.184.6.42 171286 port 28 171286 unique_id port 171286 remote_ip 10.8.0.142 171289 username saeed9658 171289 mac 171289 bytes_out 135101 171289 bytes_in 1097853 171289 station_ip 5.119.77.159 171289 port 25 171289 unique_id port 171289 remote_ip 10.8.0.154 171291 username tahmasebi 171291 mac 171291 bytes_out 4569 171291 bytes_in 13650 171291 station_ip 5.119.45.99 171291 port 28 171291 unique_id port 171291 remote_ip 10.8.0.126 171293 username yarmohamadi 171293 kill_reason Another user logged on this global unique id 171293 mac 171293 bytes_out 0 171293 bytes_in 0 171293 station_ip 5.120.40.249 171293 port 21 171293 unique_id port 171294 username tahmasebi 171294 mac 171294 bytes_out 0 171294 bytes_in 0 171294 station_ip 5.119.45.99 171294 port 28 171294 unique_id port 171294 remote_ip 10.8.0.126 171296 username tahmasebi 171296 mac 171296 bytes_out 0 171296 bytes_in 0 171296 station_ip 5.119.45.99 171296 port 28 171296 unique_id port 171296 remote_ip 10.8.0.126 171299 username pourshad 171299 kill_reason Another user logged on this global unique id 171299 mac 171299 bytes_out 0 171299 bytes_in 0 171299 station_ip 5.120.195.96 171299 port 26 171299 unique_id port 171300 username barzegar 171300 mac 171300 bytes_out 4746 171300 bytes_in 11303 171300 station_ip 5.119.111.133 171300 port 30 171300 unique_id port 171300 remote_ip 10.8.0.10 171305 username tahmasebi 171305 mac 171305 bytes_out 8961 171305 bytes_in 19729 171305 station_ip 5.119.45.99 171305 port 28 171305 unique_id port 171305 remote_ip 10.8.0.126 171307 username yarmohamadi 171307 kill_reason Another user logged on this global unique id 171307 mac 171307 bytes_out 0 171307 bytes_in 0 171307 station_ip 5.120.40.249 171307 port 21 171307 unique_id port 171308 username barzegar 171308 mac 171308 bytes_out 0 171308 bytes_in 0 171308 station_ip 5.119.111.133 171308 port 27 171308 unique_id port 171308 remote_ip 10.8.0.10 171310 username houshang 171310 mac 171310 bytes_out 419649 171310 bytes_in 5313802 171310 station_ip 5.119.184.139 171310 port 22 171310 unique_id port 171310 remote_ip 10.8.0.82 171312 username hadibarzegar 171312 kill_reason Another user logged on this global unique id 171312 mac 171312 bytes_out 0 171312 bytes_in 0 171312 station_ip 37.129.156.58 171312 port 12 171312 unique_id port 171313 username morteza 171313 mac 171313 bytes_out 0 171313 bytes_in 0 171313 station_ip 83.122.111.36 171313 port 16 171313 unique_id port 171313 remote_ip 10.8.0.174 171315 username sedighe 171315 mac 171315 bytes_out 198555 171315 bytes_in 370705 171315 station_ip 113.203.120.182 171315 port 14 171315 unique_id port 171315 remote_ip 10.8.0.78 171317 username barzegar 171317 mac 171317 bytes_out 0 171317 bytes_in 0 171317 station_ip 5.119.111.133 171317 port 14 171317 unique_id port 171317 remote_ip 10.8.0.10 171318 username morteza 171318 mac 171318 bytes_out 0 171318 bytes_in 0 171318 station_ip 83.122.111.36 171318 port 14 171318 unique_id port 171318 remote_ip 10.8.0.174 171319 username barzegar 171319 mac 171319 bytes_out 0 171319 bytes_in 0 171319 station_ip 5.119.111.133 171319 port 22 171319 unique_id port 171319 remote_ip 10.8.0.10 171322 username sedighe 171322 mac 171322 bytes_out 42942 171322 bytes_in 76931 171322 station_ip 113.203.120.182 171322 port 23 171322 unique_id port 171322 remote_ip 10.8.0.78 171324 username hatami 171324 mac 171324 bytes_out 544405 171324 bytes_in 4743893 171324 station_ip 151.235.97.37 171297 kill_reason Another user logged on this global unique id 171297 mac 171297 bytes_out 0 171297 bytes_in 0 171297 station_ip 37.129.156.58 171297 port 12 171297 unique_id port 171302 username barzegar 171302 mac 171302 bytes_out 2354 171302 bytes_in 4884 171302 station_ip 5.119.111.133 171302 port 30 171302 unique_id port 171302 remote_ip 10.8.0.10 171304 username houshang 171304 mac 171304 bytes_out 1124491 171304 bytes_in 10308868 171304 station_ip 5.119.184.139 171304 port 27 171304 unique_id port 171304 remote_ip 10.8.0.82 171306 username barzegar 171306 mac 171306 bytes_out 0 171306 bytes_in 0 171306 station_ip 5.119.111.133 171306 port 27 171306 unique_id port 171306 remote_ip 10.8.0.10 171309 username saeed9658 171309 mac 171309 bytes_out 1842876 171309 bytes_in 25152304 171309 station_ip 5.119.77.159 171309 port 23 171309 unique_id port 171309 remote_ip 10.8.0.154 171311 username majidsarmast 171311 mac 171311 bytes_out 0 171311 bytes_in 0 171311 station_ip 5.119.143.98 171311 port 16 171311 unique_id port 171314 username farhad2 171314 mac 171314 bytes_out 2093288 171314 bytes_in 19520836 171314 station_ip 5.119.103.114 171314 port 29 171314 unique_id port 171314 remote_ip 10.8.0.146 171320 username hadibarzegar 171320 kill_reason Another user logged on this global unique id 171320 mac 171320 bytes_out 0 171320 bytes_in 0 171320 station_ip 37.129.156.58 171320 port 12 171320 unique_id port 171323 username majidsarmast 171323 mac 171323 bytes_out 306338 171323 bytes_in 392664 171323 station_ip 86.57.12.94 171323 port 27 171323 unique_id port 171323 remote_ip 10.8.0.170 171326 username barzegar 171326 mac 171326 bytes_out 0 171326 bytes_in 0 171326 station_ip 5.119.111.133 171326 port 17 171326 unique_id port 171326 remote_ip 10.8.0.10 171327 username morteza 171327 mac 171327 bytes_out 0 171327 bytes_in 0 171327 station_ip 83.122.111.36 171327 port 17 171327 unique_id port 171327 remote_ip 10.8.0.174 171333 username morteza 171333 mac 171333 bytes_out 0 171333 bytes_in 0 171333 station_ip 83.122.111.36 171333 port 27 171333 unique_id port 171333 remote_ip 10.8.0.174 171335 username yarmohamadi 171335 mac 171335 bytes_out 0 171335 bytes_in 0 171335 station_ip 5.120.40.249 171335 port 21 171335 unique_id port 171336 username kalantary 171336 mac 171336 bytes_out 937591 171336 bytes_in 9972076 171336 station_ip 83.123.26.152 171336 port 25 171336 unique_id port 171336 remote_ip 10.8.0.50 171340 username barzegar 171340 mac 171340 bytes_out 2320 171340 bytes_in 4413 171340 station_ip 5.119.111.133 171340 port 21 171340 unique_id port 171340 remote_ip 10.8.0.10 171345 username tahmasebi 171345 mac 171345 bytes_out 34020 171345 bytes_in 72482 171345 station_ip 5.119.45.99 171345 port 21 171345 unique_id port 171345 remote_ip 10.8.0.126 171346 username tahmasebi 171346 mac 171346 bytes_out 0 171346 bytes_in 0 171346 station_ip 5.119.45.99 171346 port 21 171346 unique_id port 171346 remote_ip 10.8.0.126 171350 username farhad2 171350 kill_reason Another user logged on this global unique id 171350 mac 171350 bytes_out 0 171350 bytes_in 0 171350 station_ip 5.120.149.78 171350 port 22 171350 unique_id port 171350 remote_ip 10.8.0.146 171353 username tahmasebi 171353 mac 171353 bytes_out 0 171353 bytes_in 0 171353 station_ip 5.119.45.99 171353 port 27 171353 unique_id port 171353 remote_ip 10.8.0.126 171354 username tahmasebi 171354 mac 171354 bytes_out 0 171354 bytes_in 0 171324 port 25 171324 unique_id port 171324 remote_ip 10.8.0.98 171330 username morteza 171330 mac 171330 bytes_out 0 171330 bytes_in 0 171330 station_ip 83.122.111.36 171330 port 14 171330 unique_id port 171330 remote_ip 10.8.0.174 171331 username barzegar 171331 mac 171331 bytes_out 0 171331 bytes_in 0 171331 station_ip 5.119.111.133 171331 port 14 171331 unique_id port 171331 remote_ip 10.8.0.10 171332 username hadibarzegar 171332 kill_reason Another user logged on this global unique id 171332 mac 171332 bytes_out 0 171332 bytes_in 0 171332 station_ip 37.129.156.58 171332 port 12 171332 unique_id port 171334 username morteza 171334 mac 171334 bytes_out 0 171334 bytes_in 0 171334 station_ip 83.122.111.36 171334 port 27 171334 unique_id port 171334 remote_ip 10.8.0.174 171339 username tahmasebi 171339 mac 171339 bytes_out 139379 171339 bytes_in 983190 171339 station_ip 5.119.45.99 171339 port 23 171339 unique_id port 171339 remote_ip 10.8.0.126 171341 username morteza 171341 mac 171341 bytes_out 11392 171341 bytes_in 31566 171341 station_ip 83.122.111.36 171341 port 25 171341 unique_id port 171341 remote_ip 10.8.0.174 171342 username hadibarzegar 171342 kill_reason Another user logged on this global unique id 171342 mac 171342 bytes_out 0 171342 bytes_in 0 171342 station_ip 37.129.156.58 171342 port 12 171342 unique_id port 171348 username morteza 171348 mac 171348 bytes_out 0 171348 bytes_in 0 171348 station_ip 83.123.62.164 171348 port 21 171348 unique_id port 171348 remote_ip 10.8.0.174 171356 username hadibarzegar 171356 kill_reason Another user logged on this global unique id 171356 mac 171356 bytes_out 0 171356 bytes_in 0 171356 station_ip 37.129.156.58 171356 port 12 171356 unique_id port 171357 username tahmasebi 171357 mac 171357 bytes_out 0 171357 bytes_in 0 171357 station_ip 5.119.45.99 171357 port 27 171357 unique_id port 171357 remote_ip 10.8.0.126 171358 username vanila 171358 mac 171358 bytes_out 1551130 171358 bytes_in 10499690 171358 station_ip 83.122.156.13 171358 port 21 171358 unique_id port 171358 remote_ip 10.8.0.46 171360 username farhad2 171360 mac 171360 bytes_out 202028 171360 bytes_in 589264 171360 station_ip 5.120.149.78 171360 port 22 171360 unique_id port 171360 remote_ip 10.8.0.146 171364 username shadkam 171364 mac 171364 bytes_out 201109 171364 bytes_in 634697 171364 station_ip 83.122.180.157 171364 port 17 171364 unique_id port 171364 remote_ip 10.8.0.74 171366 username yaghobi 171366 mac 171366 bytes_out 15028 171366 bytes_in 24439 171366 station_ip 37.129.89.30 171366 port 22 171366 unique_id port 171366 remote_ip 10.8.0.138 171368 username vanila 171368 mac 171368 bytes_out 1105689 171368 bytes_in 98422 171368 station_ip 83.122.156.13 171368 port 27 171368 unique_id port 171368 remote_ip 10.8.0.46 171370 username tahmasebi 171370 mac 171370 bytes_out 0 171370 bytes_in 0 171370 station_ip 5.119.45.99 171370 port 27 171370 unique_id port 171370 remote_ip 10.8.0.126 171375 username rahim 171375 mac 171375 bytes_out 3522283 171375 bytes_in 8341417 171375 station_ip 5.119.145.190 171375 port 23 171375 unique_id port 171375 remote_ip 10.8.0.134 171377 username jafari 171377 kill_reason Another user logged on this global unique id 171377 mac 171377 bytes_out 0 171377 bytes_in 0 171377 station_ip 89.47.68.14 171377 port 10 171377 unique_id port 171380 username aminvpn 171380 mac 171380 bytes_out 0 171380 bytes_in 0 171380 station_ip 5.119.94.158 171380 port 1 171351 station_ip 5.119.111.133 171351 port 25 171351 unique_id port 171351 remote_ip 10.8.0.10 171352 username hadibarzegar 171352 kill_reason Another user logged on this global unique id 171352 mac 171352 bytes_out 0 171352 bytes_in 0 171352 station_ip 37.129.156.58 171352 port 12 171352 unique_id port 171355 username farhad2 171355 mac 171355 bytes_out 0 171355 bytes_in 0 171355 station_ip 5.120.149.78 171355 port 22 171355 unique_id port 171361 username yaghobi 171361 mac 171361 bytes_out 0 171361 bytes_in 0 171361 station_ip 37.129.89.30 171361 port 23 171361 unique_id port 171362 username barzegar 171362 mac 171362 bytes_out 0 171362 bytes_in 0 171362 station_ip 5.119.111.133 171362 port 23 171362 unique_id port 171362 remote_ip 10.8.0.10 171363 username mosi 171363 mac 171363 bytes_out 737718 171363 bytes_in 4924438 171363 station_ip 37.153.177.140 171363 port 25 171363 unique_id port 171363 remote_ip 10.8.0.142 171365 username mohammadmahdi 171365 mac 171365 bytes_out 2404645 171365 bytes_in 26794826 171365 station_ip 5.119.206.241 171365 port 7 171365 unique_id port 171365 remote_ip 10.8.0.90 171369 username tahmasebi 171369 mac 171369 bytes_out 3592 171369 bytes_in 13675 171369 station_ip 5.119.45.99 171369 port 23 171369 unique_id port 171369 remote_ip 10.8.0.126 171371 username kalantary 171371 mac 171371 bytes_out 581362 171371 bytes_in 4940189 171371 station_ip 83.123.20.128 171371 port 7 171371 unique_id port 171371 remote_ip 10.8.0.50 171373 username farhad2 171373 mac 171373 bytes_out 1894229 171373 bytes_in 18560236 171373 station_ip 5.120.149.78 171373 port 21 171373 unique_id port 171373 remote_ip 10.8.0.146 171376 username aminvpn 171376 mac 171376 bytes_out 331662 171376 bytes_in 2723026 171376 station_ip 5.119.94.158 171376 port 1 171376 unique_id port 171376 remote_ip 10.8.0.58 171378 username hadibarzegar 171378 kill_reason Another user logged on this global unique id 171378 mac 171378 bytes_out 0 171378 bytes_in 0 171378 station_ip 37.129.156.58 171378 port 12 171378 unique_id port 171379 username aminvpn 171379 mac 171379 bytes_out 0 171379 bytes_in 0 171379 station_ip 37.129.105.151 171379 port 7 171379 unique_id port 171379 remote_ip 10.8.0.58 171386 username ahmadi1 171386 mac 171386 bytes_out 109939 171386 bytes_in 871996 171386 station_ip 83.122.157.198 171386 port 7 171386 unique_id port 171386 remote_ip 10.8.0.94 171389 username mostafa_es78 171389 kill_reason Another user logged on this global unique id 171389 mac 171389 bytes_out 0 171389 bytes_in 0 171389 station_ip 94.24.93.10 171389 port 14 171389 unique_id port 171389 remote_ip 10.8.0.34 171390 username aminvpn 171390 mac 171390 bytes_out 0 171390 bytes_in 0 171390 station_ip 37.129.105.151 171390 port 7 171390 unique_id port 171390 remote_ip 10.8.0.58 171393 username mohammadmahdi 171393 kill_reason Another user logged on this global unique id 171393 mac 171393 bytes_out 0 171393 bytes_in 0 171393 station_ip 5.119.206.241 171393 port 25 171393 unique_id port 171393 remote_ip 10.8.0.90 171395 username tahmasebi 171395 mac 171395 bytes_out 0 171395 bytes_in 0 171395 station_ip 5.119.45.99 171395 port 7 171395 unique_id port 171395 remote_ip 10.8.0.126 171398 username tahmasebi 171398 mac 171398 bytes_out 0 171398 bytes_in 0 171398 station_ip 5.119.45.99 171398 port 7 171398 unique_id port 171398 remote_ip 10.8.0.126 171400 username aminvpn 171400 mac 171400 bytes_out 0 171400 bytes_in 0 171400 station_ip 37.129.105.151 171354 station_ip 5.119.45.99 171354 port 27 171354 unique_id port 171354 remote_ip 10.8.0.126 171359 username yaghobi 171359 kill_reason Another user logged on this global unique id 171359 mac 171359 bytes_out 0 171359 bytes_in 0 171359 station_ip 37.129.89.30 171359 port 23 171359 unique_id port 171359 remote_ip 10.8.0.138 171367 username hadibarzegar 171367 kill_reason Another user logged on this global unique id 171367 mac 171367 bytes_out 0 171367 bytes_in 0 171367 station_ip 37.129.156.58 171367 port 12 171367 unique_id port 171372 username tahmasebi 171372 mac 171372 bytes_out 2103 171372 bytes_in 4388 171372 station_ip 5.119.45.99 171372 port 27 171372 unique_id port 171372 remote_ip 10.8.0.126 171374 username barzegar 171374 mac 171374 bytes_out 0 171374 bytes_in 0 171374 station_ip 5.119.111.133 171374 port 7 171374 unique_id port 171374 remote_ip 10.8.0.10 171381 username aminvpn 171381 mac 171381 bytes_out 0 171381 bytes_in 0 171381 station_ip 37.129.105.151 171381 port 23 171381 unique_id port 171381 remote_ip 10.8.0.58 171384 username aminvpn 171384 mac 171384 bytes_out 0 171384 bytes_in 0 171384 station_ip 5.119.94.158 171384 port 1 171384 unique_id port 171384 remote_ip 10.8.0.58 171387 username aminvpn 171387 mac 171387 bytes_out 0 171387 bytes_in 0 171387 station_ip 37.129.105.151 171387 port 30 171387 unique_id port 171387 remote_ip 10.8.0.58 171388 username aminvpn 171388 mac 171388 bytes_out 0 171388 bytes_in 0 171388 station_ip 5.119.94.158 171388 port 1 171388 unique_id port 171388 remote_ip 10.8.0.58 171392 username shadkam 171392 mac 171392 bytes_out 120965 171392 bytes_in 225066 171392 station_ip 83.122.180.157 171392 port 17 171392 unique_id port 171392 remote_ip 10.8.0.74 171394 username aminvpn 171394 mac 171394 bytes_out 0 171394 bytes_in 0 171394 station_ip 5.119.94.158 171394 port 1 171394 unique_id port 171394 remote_ip 10.8.0.58 171397 username barzegar 171397 mac 171397 bytes_out 0 171397 bytes_in 0 171397 station_ip 5.119.111.133 171397 port 7 171397 unique_id port 171397 remote_ip 10.8.0.10 171399 username aminvpn 171399 mac 171399 bytes_out 0 171399 bytes_in 0 171399 station_ip 5.119.94.158 171399 port 21 171399 unique_id port 171399 remote_ip 10.8.0.58 171404 username farhad2 171404 mac 171404 bytes_out 2312901 171404 bytes_in 16222831 171404 station_ip 5.120.149.78 171404 port 27 171404 unique_id port 171404 remote_ip 10.8.0.146 171406 username jafari 171406 kill_reason Another user logged on this global unique id 171406 mac 171406 bytes_out 0 171406 bytes_in 0 171406 station_ip 89.47.68.14 171406 port 10 171406 unique_id port 171414 username mostafa_es78 171414 mac 171414 bytes_out 0 171414 bytes_in 0 171414 station_ip 94.24.93.10 171414 port 14 171414 unique_id port 171415 username aminvpn 171415 mac 171415 bytes_out 0 171415 bytes_in 0 171415 station_ip 5.119.94.158 171415 port 12 171415 unique_id port 171415 remote_ip 10.8.0.58 171419 username alipour 171419 kill_reason Another user logged on this global unique id 171419 mac 171419 bytes_out 0 171419 bytes_in 0 171419 station_ip 37.129.187.181 171419 port 2 171419 unique_id port 171424 username jafari 171424 mac 171424 bytes_out 0 171424 bytes_in 0 171424 station_ip 89.47.68.14 171424 port 10 171424 unique_id port 171428 username shadkam 171428 mac 171428 bytes_out 7775 171428 bytes_in 10966 171428 station_ip 37.129.56.97 171428 port 17 171428 unique_id port 171428 remote_ip 10.8.0.74 171380 unique_id port 171380 remote_ip 10.8.0.58 171382 username aminvpn 171382 mac 171382 bytes_out 0 171382 bytes_in 0 171382 station_ip 5.119.94.158 171382 port 1 171382 unique_id port 171382 remote_ip 10.8.0.58 171383 username aminvpn 171383 mac 171383 bytes_out 0 171383 bytes_in 0 171383 station_ip 37.129.105.151 171383 port 23 171383 unique_id port 171383 remote_ip 10.8.0.58 171385 username hadibarzegar 171385 kill_reason Another user logged on this global unique id 171385 mac 171385 bytes_out 0 171385 bytes_in 0 171385 station_ip 37.129.156.58 171385 port 12 171385 unique_id port 171391 username tahmasebi 171391 mac 171391 bytes_out 27720 171391 bytes_in 38410 171391 station_ip 5.119.45.99 171391 port 21 171391 unique_id port 171391 remote_ip 10.8.0.126 171396 username aminvpn 171396 mac 171396 bytes_out 0 171396 bytes_in 0 171396 station_ip 37.129.105.151 171396 port 17 171396 unique_id port 171396 remote_ip 10.8.0.58 171401 username tahmasebi 171401 mac 171401 bytes_out 0 171401 bytes_in 0 171401 station_ip 5.119.45.99 171401 port 17 171401 unique_id port 171401 remote_ip 10.8.0.126 171402 username aminvpn 171402 mac 171402 bytes_out 0 171402 bytes_in 0 171402 station_ip 5.119.94.158 171402 port 21 171402 unique_id port 171402 remote_ip 10.8.0.58 171403 username aminvpn 171403 mac 171403 bytes_out 0 171403 bytes_in 0 171403 station_ip 37.129.105.151 171403 port 17 171403 unique_id port 171403 remote_ip 10.8.0.58 171405 username shadkam 171405 mac 171405 bytes_out 430124 171405 bytes_in 5719299 171405 station_ip 37.129.56.97 171405 port 1 171405 unique_id port 171405 remote_ip 10.8.0.74 171409 username hadibarzegar 171409 kill_reason Another user logged on this global unique id 171409 mac 171409 bytes_out 0 171409 bytes_in 0 171409 station_ip 37.129.156.58 171409 port 12 171409 unique_id port 171416 username aminvpn 171416 mac 171416 bytes_out 0 171416 bytes_in 0 171416 station_ip 5.119.94.158 171416 port 21 171416 unique_id port 171416 remote_ip 10.8.0.58 171417 username aminvpn 171417 mac 171417 bytes_out 0 171417 bytes_in 0 171417 station_ip 37.129.105.151 171417 port 12 171417 unique_id port 171417 remote_ip 10.8.0.58 171420 username aminvpn 171420 mac 171420 bytes_out 0 171420 bytes_in 0 171420 station_ip 5.119.94.158 171420 port 12 171420 unique_id port 171420 remote_ip 10.8.0.58 171421 username aminvpn 171421 mac 171421 bytes_out 0 171421 bytes_in 0 171421 station_ip 5.119.94.158 171421 port 21 171421 unique_id port 171421 remote_ip 10.8.0.58 171425 username aminvpn 171425 mac 171425 bytes_out 0 171425 bytes_in 0 171425 station_ip 5.119.94.158 171425 port 12 171425 unique_id port 171425 remote_ip 10.8.0.58 171433 username aminvpn 171433 mac 171433 bytes_out 0 171433 bytes_in 0 171433 station_ip 5.119.94.158 171433 port 27 171433 unique_id port 171433 remote_ip 10.8.0.58 171438 username mostafa_es78 171438 mac 171438 bytes_out 1055477 171438 bytes_in 10369147 171438 station_ip 94.24.93.10 171438 port 14 171438 unique_id port 171438 remote_ip 10.8.0.34 171439 username saeed9658 171439 mac 171439 bytes_out 0 171439 bytes_in 0 171439 station_ip 5.119.77.159 171439 port 22 171439 unique_id port 171441 username tahmasebi 171441 mac 171441 bytes_out 0 171441 bytes_in 0 171441 station_ip 5.119.45.99 171441 port 14 171441 unique_id port 171441 remote_ip 10.8.0.126 171443 username farhad2 171443 mac 171443 bytes_out 3302744 171400 port 7 171400 unique_id port 171400 remote_ip 10.8.0.58 171407 username aminvpn 171407 mac 171407 bytes_out 0 171407 bytes_in 0 171407 station_ip 5.119.94.158 171407 port 21 171407 unique_id port 171407 remote_ip 10.8.0.58 171408 username aminvpn 171408 mac 171408 bytes_out 0 171408 bytes_in 0 171408 station_ip 37.129.105.151 171408 port 27 171408 unique_id port 171408 remote_ip 10.8.0.58 171410 username pourshad 171410 kill_reason Another user logged on this global unique id 171410 mac 171410 bytes_out 0 171410 bytes_in 0 171410 station_ip 5.120.195.96 171410 port 26 171410 unique_id port 171411 username hadibarzegar 171411 mac 171411 bytes_out 0 171411 bytes_in 0 171411 station_ip 37.129.156.58 171411 port 12 171411 unique_id port 171412 username saeed9658 171412 kill_reason Another user logged on this global unique id 171412 mac 171412 bytes_out 0 171412 bytes_in 0 171412 station_ip 5.119.77.159 171412 port 22 171412 unique_id port 171412 remote_ip 10.8.0.154 171413 username aminvpn 171413 mac 171413 bytes_out 12995 171413 bytes_in 60662 171413 station_ip 5.119.94.158 171413 port 21 171413 unique_id port 171413 remote_ip 10.8.0.58 171418 username aminvpn 171418 mac 171418 bytes_out 0 171418 bytes_in 0 171418 station_ip 5.119.94.158 171418 port 21 171418 unique_id port 171418 remote_ip 10.8.0.58 171422 username aminvpn 171422 mac 171422 bytes_out 0 171422 bytes_in 0 171422 station_ip 5.119.94.158 171422 port 12 171422 unique_id port 171422 remote_ip 10.8.0.58 171423 username aminvpn 171423 mac 171423 bytes_out 0 171423 bytes_in 0 171423 station_ip 5.119.94.158 171423 port 21 171423 unique_id port 171423 remote_ip 10.8.0.58 171426 username sabaghnezhad 171426 mac 171426 bytes_out 0 171426 bytes_in 0 171426 station_ip 37.129.232.184 171426 port 12 171426 unique_id port 171426 remote_ip 10.8.0.66 171427 username aminvpn 171427 mac 171427 bytes_out 0 171427 bytes_in 0 171427 station_ip 5.119.94.158 171427 port 10 171427 unique_id port 171427 remote_ip 10.8.0.58 171429 username barzegar 171429 mac 171429 bytes_out 0 171429 bytes_in 0 171429 station_ip 5.119.111.133 171429 port 27 171429 unique_id port 171429 remote_ip 10.8.0.10 171430 username aminvpn 171430 mac 171430 bytes_out 0 171430 bytes_in 0 171430 station_ip 5.119.94.158 171430 port 30 171430 unique_id port 171430 remote_ip 10.8.0.58 171431 username aminvpn 171431 mac 171431 bytes_out 0 171431 bytes_in 0 171431 station_ip 37.129.105.151 171431 port 27 171431 unique_id port 171431 remote_ip 10.8.0.58 171436 username mohammadmahdi 171436 kill_reason Another user logged on this global unique id 171436 mac 171436 bytes_out 0 171436 bytes_in 0 171436 station_ip 5.119.206.241 171436 port 25 171436 unique_id port 171437 username tahmasebi 171437 mac 171437 bytes_out 7175507 171437 bytes_in 38601433 171437 station_ip 5.119.45.99 171437 port 7 171437 unique_id port 171437 remote_ip 10.8.0.126 171442 username shadkam 171442 mac 171442 bytes_out 142566 171442 bytes_in 1014790 171442 station_ip 37.129.56.97 171442 port 17 171442 unique_id port 171442 remote_ip 10.8.0.74 171447 username tahmasebi 171447 mac 171447 bytes_out 0 171447 bytes_in 0 171447 station_ip 5.119.45.99 171447 port 14 171447 unique_id port 171447 remote_ip 10.8.0.126 171448 username aminvpn 171448 mac 171448 bytes_out 0 171448 bytes_in 0 171448 station_ip 5.119.94.158 171448 port 17 171448 unique_id port 171448 remote_ip 10.8.0.58 171450 username aminvpn 171432 username aminvpn 171432 mac 171432 bytes_out 0 171432 bytes_in 0 171432 station_ip 5.119.94.158 171432 port 30 171432 unique_id port 171432 remote_ip 10.8.0.58 171434 username aminvpn 171434 mac 171434 bytes_out 0 171434 bytes_in 0 171434 station_ip 37.129.105.151 171434 port 30 171434 unique_id port 171434 remote_ip 10.8.0.58 171435 username barzegar 171435 mac 171435 bytes_out 0 171435 bytes_in 0 171435 station_ip 5.119.111.133 171435 port 30 171435 unique_id port 171435 remote_ip 10.8.0.10 171440 username saeed9658 171440 mac 171440 bytes_out 0 171440 bytes_in 0 171440 station_ip 5.119.77.159 171440 port 7 171440 unique_id port 171440 remote_ip 10.8.0.154 171444 username jafari 171444 kill_reason Another user logged on this global unique id 171444 mac 171444 bytes_out 0 171444 bytes_in 0 171444 station_ip 89.47.68.14 171444 port 21 171444 unique_id port 171444 remote_ip 10.8.0.86 171445 username aminvpn 171445 mac 171445 bytes_out 9676 171445 bytes_in 20884 171445 station_ip 5.119.94.158 171445 port 31 171445 unique_id port 171445 remote_ip 10.8.0.58 171446 username aminvpn 171446 mac 171446 bytes_out 0 171446 bytes_in 0 171446 station_ip 37.129.105.151 171446 port 1 171446 unique_id port 171446 remote_ip 10.8.0.58 171455 username aminvpn 171455 mac 171455 bytes_out 0 171455 bytes_in 0 171455 station_ip 5.119.94.158 171455 port 17 171455 unique_id port 171455 remote_ip 10.8.0.58 171463 username aminvpn 171463 mac 171463 bytes_out 0 171463 bytes_in 0 171463 station_ip 5.119.94.158 171463 port 7 171463 unique_id port 171463 remote_ip 10.8.0.58 171466 username pourshad 171466 kill_reason Another user logged on this global unique id 171466 mac 171466 bytes_out 0 171466 bytes_in 0 171466 station_ip 5.120.195.96 171466 port 26 171466 unique_id port 171471 username aminvpn 171471 mac 171471 bytes_out 0 171471 bytes_in 0 171471 station_ip 37.129.105.151 171471 port 17 171471 unique_id port 171471 remote_ip 10.8.0.58 171472 username aminvpn 171472 mac 171472 bytes_out 0 171472 bytes_in 0 171472 station_ip 5.119.94.158 171472 port 7 171472 unique_id port 171472 remote_ip 10.8.0.58 171476 username ayobi 171476 kill_reason Another user logged on this global unique id 171476 mac 171476 bytes_out 0 171476 bytes_in 0 171476 station_ip 37.27.4.25 171476 port 10 171476 unique_id port 171480 username aminvpn 171480 mac 171480 bytes_out 0 171480 bytes_in 0 171480 station_ip 37.129.105.151 171480 port 7 171480 unique_id port 171480 remote_ip 10.8.0.58 171483 username aminvpn 171483 mac 171483 bytes_out 0 171483 bytes_in 0 171483 station_ip 5.119.94.158 171483 port 17 171483 unique_id port 171483 remote_ip 10.8.0.58 171485 username jafari 171485 kill_reason Another user logged on this global unique id 171485 mac 171485 bytes_out 0 171485 bytes_in 0 171485 station_ip 89.47.68.14 171485 port 21 171485 unique_id port 171486 username aminvpn 171486 mac 171486 bytes_out 0 171486 bytes_in 0 171486 station_ip 5.119.94.158 171486 port 20 171486 unique_id port 171486 remote_ip 10.8.0.58 171491 username aminvpn 171491 mac 171491 bytes_out 0 171491 bytes_in 0 171491 station_ip 37.129.105.151 171491 port 22 171491 unique_id port 171491 remote_ip 10.8.0.58 171493 username aminvpn 171493 mac 171493 bytes_out 0 171493 bytes_in 0 171493 station_ip 5.119.94.158 171493 port 20 171493 unique_id port 171493 remote_ip 10.8.0.58 171498 username naeimeh 171498 kill_reason Maximum check online fails reached 171443 bytes_in 28585169 171443 station_ip 5.120.149.78 171443 port 1 171443 unique_id port 171443 remote_ip 10.8.0.146 171449 username aminvpn 171449 mac 171449 bytes_out 0 171449 bytes_in 0 171449 station_ip 5.119.94.158 171449 port 14 171449 unique_id port 171449 remote_ip 10.8.0.58 171451 username vanila 171451 mac 171451 bytes_out 2014307 171451 bytes_in 12571171 171451 station_ip 83.122.156.13 171451 port 29 171451 unique_id port 171451 remote_ip 10.8.0.46 171453 username barzegar 171453 mac 171453 bytes_out 0 171453 bytes_in 0 171453 station_ip 5.119.111.133 171453 port 17 171453 unique_id port 171453 remote_ip 10.8.0.10 171457 username godarzi 171457 mac 171457 bytes_out 4785323 171457 bytes_in 34621032 171457 station_ip 5.119.200.207 171457 port 20 171457 unique_id port 171457 remote_ip 10.8.0.38 171460 username saeed9658 171460 mac 171460 bytes_out 2157903 171460 bytes_in 31371742 171460 station_ip 5.119.77.159 171460 port 7 171460 unique_id port 171460 remote_ip 10.8.0.154 171464 username aminvpn 171464 mac 171464 bytes_out 0 171464 bytes_in 0 171464 station_ip 5.119.94.158 171464 port 14 171464 unique_id port 171464 remote_ip 10.8.0.58 171467 username ayobi 171467 kill_reason Another user logged on this global unique id 171467 mac 171467 bytes_out 0 171467 bytes_in 0 171467 station_ip 37.27.4.25 171467 port 10 171467 unique_id port 171467 remote_ip 10.8.0.186 171468 username aminvpn 171468 mac 171468 bytes_out 0 171468 bytes_in 0 171468 station_ip 37.129.105.151 171468 port 7 171468 unique_id port 171468 remote_ip 10.8.0.58 171469 username aminvpn 171469 mac 171469 bytes_out 0 171469 bytes_in 0 171469 station_ip 5.119.94.158 171469 port 17 171469 unique_id port 171469 remote_ip 10.8.0.58 171473 username aminvpn 171473 mac 171473 bytes_out 0 171473 bytes_in 0 171473 station_ip 37.129.105.151 171473 port 17 171473 unique_id port 171473 remote_ip 10.8.0.58 171474 username aminvpn 171474 mac 171474 bytes_out 0 171474 bytes_in 0 171474 station_ip 5.119.94.158 171474 port 7 171474 unique_id port 171474 remote_ip 10.8.0.58 171475 username aminvpn 171475 mac 171475 bytes_out 0 171475 bytes_in 0 171475 station_ip 37.129.105.151 171475 port 17 171475 unique_id port 171475 remote_ip 10.8.0.58 171477 username tahmasebi 171477 mac 171477 bytes_out 0 171477 bytes_in 0 171477 station_ip 5.119.45.99 171477 port 7 171477 unique_id port 171477 remote_ip 10.8.0.126 171488 username tahmasebi 171488 mac 171488 bytes_out 0 171488 bytes_in 0 171488 station_ip 5.119.45.99 171488 port 20 171488 unique_id port 171488 remote_ip 10.8.0.126 171496 username vanila 171496 mac 171496 bytes_out 887912 171496 bytes_in 11513590 171496 station_ip 83.122.156.13 171496 port 7 171496 unique_id port 171496 remote_ip 10.8.0.46 171500 username houshang 171500 kill_reason Another user logged on this global unique id 171500 mac 171500 bytes_out 0 171500 bytes_in 0 171500 station_ip 5.119.184.139 171500 port 14 171500 unique_id port 171500 remote_ip 10.8.0.82 171501 username sabaghnezhad 171501 kill_reason Another user logged on this global unique id 171501 mac 171501 bytes_out 0 171501 bytes_in 0 171501 station_ip 37.129.232.184 171501 port 12 171501 unique_id port 171501 remote_ip 10.8.0.66 171503 username jafari 171503 kill_reason Another user logged on this global unique id 171503 mac 171503 bytes_out 0 171503 bytes_in 0 171503 station_ip 89.47.68.14 171503 port 21 171503 unique_id port 171506 username barzegar 171506 mac 171450 mac 171450 bytes_out 0 171450 bytes_in 0 171450 station_ip 5.119.94.158 171450 port 30 171450 unique_id port 171450 remote_ip 10.8.0.58 171452 username tahmasebi 171452 mac 171452 bytes_out 0 171452 bytes_in 0 171452 station_ip 5.119.45.99 171452 port 22 171452 unique_id port 171452 remote_ip 10.8.0.126 171454 username aminvpn 171454 mac 171454 bytes_out 0 171454 bytes_in 0 171454 station_ip 37.129.105.151 171454 port 14 171454 unique_id port 171454 remote_ip 10.8.0.58 171456 username aminvpn 171456 mac 171456 bytes_out 0 171456 bytes_in 0 171456 station_ip 5.119.94.158 171456 port 14 171456 unique_id port 171456 remote_ip 10.8.0.58 171458 username aminvpn 171458 mac 171458 bytes_out 0 171458 bytes_in 0 171458 station_ip 5.119.94.158 171458 port 22 171458 unique_id port 171458 remote_ip 10.8.0.58 171459 username aminvpn 171459 mac 171459 bytes_out 0 171459 bytes_in 0 171459 station_ip 5.119.94.158 171459 port 14 171459 unique_id port 171459 remote_ip 10.8.0.58 171461 username aminvpn 171461 mac 171461 bytes_out 0 171461 bytes_in 0 171461 station_ip 5.119.94.158 171461 port 20 171461 unique_id port 171461 remote_ip 10.8.0.58 171462 username tahmasebi 171462 mac 171462 bytes_out 3057 171462 bytes_in 5395 171462 station_ip 5.119.45.99 171462 port 17 171462 unique_id port 171462 remote_ip 10.8.0.126 171465 username mosi 171465 kill_reason Another user logged on this global unique id 171465 mac 171465 bytes_out 0 171465 bytes_in 0 171465 station_ip 2.184.6.6 171465 port 28 171465 unique_id port 171465 remote_ip 10.8.0.142 171470 username aminvpn 171470 mac 171470 bytes_out 0 171470 bytes_in 0 171470 station_ip 5.119.94.158 171470 port 7 171470 unique_id port 171470 remote_ip 10.8.0.58 171478 username yarmohamadi 171478 kill_reason Another user logged on this global unique id 171478 mac 171478 bytes_out 0 171478 bytes_in 0 171478 station_ip 5.119.41.177 171478 port 23 171478 unique_id port 171478 remote_ip 10.8.0.6 171479 username aminvpn 171479 mac 171479 bytes_out 0 171479 bytes_in 0 171479 station_ip 5.119.94.158 171479 port 20 171479 unique_id port 171479 remote_ip 10.8.0.58 171481 username aminvpn 171481 mac 171481 bytes_out 0 171481 bytes_in 0 171481 station_ip 5.119.94.158 171481 port 17 171481 unique_id port 171481 remote_ip 10.8.0.58 171482 username aminvpn 171482 mac 171482 bytes_out 0 171482 bytes_in 0 171482 station_ip 37.129.105.151 171482 port 7 171482 unique_id port 171482 remote_ip 10.8.0.58 171484 username aminvpn 171484 mac 171484 bytes_out 0 171484 bytes_in 0 171484 station_ip 37.129.105.151 171484 port 7 171484 unique_id port 171484 remote_ip 10.8.0.58 171487 username barzegar 171487 mac 171487 bytes_out 0 171487 bytes_in 0 171487 station_ip 5.119.111.133 171487 port 7 171487 unique_id port 171487 remote_ip 10.8.0.10 171489 username aminvpn 171489 mac 171489 bytes_out 0 171489 bytes_in 0 171489 station_ip 37.129.105.151 171489 port 22 171489 unique_id port 171489 remote_ip 10.8.0.58 171490 username aminvpn 171490 mac 171490 bytes_out 0 171490 bytes_in 0 171490 station_ip 5.119.94.158 171490 port 20 171490 unique_id port 171490 remote_ip 10.8.0.58 171492 username mohammadmahdi 171492 mac 171492 bytes_out 0 171492 bytes_in 0 171492 station_ip 5.119.206.241 171492 port 25 171492 unique_id port 171494 username aminvpn 171494 mac 171494 bytes_out 0 171494 bytes_in 0 171494 station_ip 37.129.105.151 171494 port 25 171494 unique_id port 171494 remote_ip 10.8.0.58 171495 username shadkam 171495 mac 171495 bytes_out 101423 171495 bytes_in 150210 171495 station_ip 37.129.56.97 171495 port 1 171495 unique_id port 171495 remote_ip 10.8.0.74 171497 username kalantary 171497 mac 171497 bytes_out 301017 171497 bytes_in 4179446 171497 station_ip 83.123.7.64 171497 port 22 171497 unique_id port 171497 remote_ip 10.8.0.50 171499 username tahmasebi 171499 mac 171499 bytes_out 1636 171499 bytes_in 5023 171499 station_ip 5.119.45.99 171499 port 1 171499 unique_id port 171499 remote_ip 10.8.0.126 171502 username forozandeh1 171502 mac 171502 bytes_out 630176 171502 bytes_in 6083455 171502 station_ip 83.123.167.45 171502 port 7 171502 unique_id port 171502 remote_ip 10.8.0.30 171504 username rahim 171504 mac 171504 bytes_out 15892058 171504 bytes_in 15762341 171504 station_ip 5.120.55.192 171504 port 30 171504 unique_id port 171504 remote_ip 10.8.0.134 171505 username tahmasebi 171505 mac 171505 bytes_out 0 171505 bytes_in 0 171505 station_ip 5.119.45.99 171505 port 7 171505 unique_id port 171505 remote_ip 10.8.0.126 171509 username sekonji3 171509 mac 171509 bytes_out 662095 171509 bytes_in 9047808 171509 station_ip 37.129.89.233 171509 port 17 171509 unique_id port 171509 remote_ip 10.8.0.62 171512 username majidsarmast 171512 kill_reason Another user logged on this global unique id 171512 mac 171512 bytes_out 0 171512 bytes_in 0 171512 station_ip 86.57.12.94 171512 port 14 171512 unique_id port 171512 remote_ip 10.8.0.170 171514 username shadkam 171514 mac 171514 bytes_out 31064 171514 bytes_in 62152 171514 station_ip 37.129.56.97 171514 port 31 171514 unique_id port 171514 remote_ip 10.8.0.74 171515 username milan 171515 kill_reason Another user logged on this global unique id 171515 mac 171515 bytes_out 0 171515 bytes_in 0 171515 station_ip 5.119.173.190 171515 port 6 171515 unique_id port 171517 username shadkam 171517 mac 171517 bytes_out 2151 171517 bytes_in 4444 171517 station_ip 37.129.56.97 171517 port 31 171517 unique_id port 171517 remote_ip 10.8.0.74 171518 username alipour 171518 kill_reason Another user logged on this global unique id 171518 mac 171518 bytes_out 0 171518 bytes_in 0 171518 station_ip 37.129.187.181 171518 port 2 171518 unique_id port 171521 username shadkam 171521 mac 171521 bytes_out 0 171521 bytes_in 0 171521 station_ip 37.129.56.97 171521 port 33 171521 unique_id port 171521 remote_ip 10.8.0.74 171524 username sedighe 171524 mac 171524 bytes_out 779507 171524 bytes_in 13139705 171524 station_ip 37.129.84.89 171524 port 22 171524 unique_id port 171524 remote_ip 10.8.0.78 171525 username shadkam 171525 mac 171525 bytes_out 0 171525 bytes_in 0 171525 station_ip 37.129.56.97 171525 port 22 171525 unique_id port 171525 remote_ip 10.8.0.74 171527 username morteza 171527 kill_reason Another user logged on this global unique id 171527 mac 171527 bytes_out 0 171527 bytes_in 0 171527 station_ip 83.123.84.172 171527 port 17 171527 unique_id port 171533 username sekonji3 171533 mac 171533 bytes_out 10444 171533 bytes_in 12858 171533 station_ip 37.129.89.233 171533 port 7 171533 unique_id port 171533 remote_ip 10.8.0.62 171535 username houshang 171535 mac 171535 bytes_out 4568328 171535 bytes_in 39546646 171535 station_ip 5.119.4.204 171535 port 31 171535 unique_id port 171535 remote_ip 10.8.0.82 171545 username morteza 171545 kill_reason Another user logged on this global unique id 171545 mac 171545 bytes_out 0 171498 mac 171498 bytes_out 0 171498 bytes_in 0 171498 station_ip 83.123.20.216 171498 port 25 171498 unique_id port 171511 username tahmasebi 171511 mac 171511 bytes_out 0 171511 bytes_in 0 171511 station_ip 5.119.45.99 171511 port 30 171511 unique_id port 171511 remote_ip 10.8.0.126 171513 username jafari 171513 kill_reason Another user logged on this global unique id 171513 mac 171513 bytes_out 0 171513 bytes_in 0 171513 station_ip 89.47.68.14 171513 port 21 171513 unique_id port 171516 username shadkam 171516 kill_reason Maximum check online fails reached 171516 mac 171516 bytes_out 0 171516 bytes_in 0 171516 station_ip 37.129.56.97 171516 port 30 171516 unique_id port 171519 username morteza 171519 kill_reason Another user logged on this global unique id 171519 mac 171519 bytes_out 0 171519 bytes_in 0 171519 station_ip 83.123.84.172 171519 port 17 171519 unique_id port 171519 remote_ip 10.8.0.174 171520 username me 171520 mac 171520 bytes_out 4246932 171520 bytes_in 27527939 171520 station_ip 5.119.94.158 171520 port 27 171520 unique_id port 171520 remote_ip 10.8.0.190 171528 username sekonji3 171528 mac 171528 bytes_out 472064 171528 bytes_in 6274783 171528 station_ip 37.129.89.233 171528 port 7 171528 unique_id port 171528 remote_ip 10.8.0.62 171529 username tahmasebi 171529 kill_reason Another user logged on this global unique id 171529 mac 171529 bytes_out 0 171529 bytes_in 0 171529 station_ip 5.119.45.99 171529 port 32 171529 unique_id port 171529 remote_ip 10.8.0.126 171532 username tahmasebi 171532 mac 171532 bytes_out 0 171532 bytes_in 0 171532 station_ip 5.119.45.99 171532 port 32 171532 unique_id port 171534 username saeed9658 171534 mac 171534 bytes_out 0 171534 bytes_in 0 171534 station_ip 5.119.77.159 171534 port 27 171534 unique_id port 171537 username aminvpn 171537 mac 171537 bytes_out 0 171537 bytes_in 0 171537 station_ip 5.119.94.158 171537 port 7 171537 unique_id port 171537 remote_ip 10.8.0.58 171538 username jafari 171538 kill_reason Another user logged on this global unique id 171538 mac 171538 bytes_out 0 171538 bytes_in 0 171538 station_ip 89.47.68.14 171538 port 21 171538 unique_id port 171539 username shadkam 171539 kill_reason Another user logged on this global unique id 171539 mac 171539 bytes_out 0 171539 bytes_in 0 171539 station_ip 37.129.56.97 171539 port 22 171539 unique_id port 171539 remote_ip 10.8.0.74 171541 username barzegar 171541 mac 171541 bytes_out 0 171541 bytes_in 0 171541 station_ip 5.119.111.133 171541 port 27 171541 unique_id port 171541 remote_ip 10.8.0.10 171543 username tahmasebi 171543 mac 171543 bytes_out 0 171543 bytes_in 0 171543 station_ip 5.119.45.99 171543 port 29 171543 unique_id port 171543 remote_ip 10.8.0.126 171548 username khademi 171548 kill_reason Another user logged on this global unique id 171548 mac 171548 bytes_out 0 171548 bytes_in 0 171548 station_ip 37.129.12.135 171548 port 20 171548 unique_id port 171549 username jafari 171549 kill_reason Another user logged on this global unique id 171549 mac 171549 bytes_out 0 171549 bytes_in 0 171549 station_ip 89.47.68.14 171549 port 21 171549 unique_id port 171551 username barzegar 171551 mac 171551 bytes_out 0 171551 bytes_in 0 171551 station_ip 5.119.111.133 171551 port 29 171551 unique_id port 171551 remote_ip 10.8.0.10 171552 username shadkam 171552 mac 171552 bytes_out 0 171552 bytes_in 0 171552 station_ip 37.129.56.97 171552 port 22 171552 unique_id port 171553 username sekonji3 171553 mac 171553 bytes_out 242420 171506 bytes_out 0 171506 bytes_in 0 171506 station_ip 5.119.111.133 171506 port 22 171506 unique_id port 171506 remote_ip 10.8.0.10 171507 username tahmasebi 171507 mac 171507 bytes_out 0 171507 bytes_in 0 171507 station_ip 5.119.45.99 171507 port 7 171507 unique_id port 171507 remote_ip 10.8.0.126 171508 username houshang 171508 mac 171508 bytes_out 0 171508 bytes_in 0 171508 station_ip 5.119.184.139 171508 port 14 171508 unique_id port 171510 username khademi 171510 kill_reason Another user logged on this global unique id 171510 mac 171510 bytes_out 0 171510 bytes_in 0 171510 station_ip 37.129.12.135 171510 port 20 171510 unique_id port 171510 remote_ip 10.8.0.14 171522 username barzegar 171522 mac 171522 bytes_out 0 171522 bytes_in 0 171522 station_ip 5.119.111.133 171522 port 34 171522 unique_id port 171522 remote_ip 10.8.0.10 171523 username yarmohamadi 171523 kill_reason Another user logged on this global unique id 171523 mac 171523 bytes_out 0 171523 bytes_in 0 171523 station_ip 5.119.41.177 171523 port 23 171523 unique_id port 171526 username yarmohamadi 171526 mac 171526 bytes_out 0 171526 bytes_in 0 171526 station_ip 5.119.41.177 171526 port 23 171526 unique_id port 171530 username saeed9658 171530 kill_reason Another user logged on this global unique id 171530 mac 171530 bytes_out 0 171530 bytes_in 0 171530 station_ip 5.119.77.159 171530 port 27 171530 unique_id port 171530 remote_ip 10.8.0.154 171531 username aminvpn 171531 mac 171531 bytes_out 901970 171531 bytes_in 2418809 171531 station_ip 5.119.94.158 171531 port 29 171531 unique_id port 171531 remote_ip 10.8.0.58 171536 username morteza 171536 kill_reason Another user logged on this global unique id 171536 mac 171536 bytes_out 0 171536 bytes_in 0 171536 station_ip 83.123.84.172 171536 port 17 171536 unique_id port 171540 username sekonji3 171540 mac 171540 bytes_out 15255 171540 bytes_in 31947 171540 station_ip 37.129.89.233 171540 port 27 171540 unique_id port 171540 remote_ip 10.8.0.62 171542 username khademi 171542 kill_reason Another user logged on this global unique id 171542 mac 171542 bytes_out 0 171542 bytes_in 0 171542 station_ip 37.129.12.135 171542 port 20 171542 unique_id port 171544 username alipour 171544 kill_reason Another user logged on this global unique id 171544 mac 171544 bytes_out 0 171544 bytes_in 0 171544 station_ip 37.129.187.181 171544 port 2 171544 unique_id port 171550 username morteza 171550 mac 171550 bytes_out 0 171550 bytes_in 0 171550 station_ip 83.123.84.172 171550 port 17 171550 unique_id port 171555 username farhad2 171555 mac 171555 bytes_out 258628 171555 bytes_in 1372783 171555 station_ip 5.119.96.6 171555 port 23 171555 unique_id port 171555 remote_ip 10.8.0.146 171557 username godarzi 171557 mac 171557 bytes_out 3332590 171557 bytes_in 26452359 171557 station_ip 5.119.200.207 171557 port 1 171557 unique_id port 171557 remote_ip 10.8.0.38 171561 username aminvpn 171561 unique_id port 171561 terminate_cause Lost-Carrier 171561 bytes_out 174714 171561 bytes_in 827590 171561 station_ip 5.160.112.57 171561 port 15728777 171561 nas_port_type Virtual 171561 remote_ip 5.5.5.240 171562 username sabaghnezhad 171562 mac 171562 bytes_out 0 171562 bytes_in 0 171562 station_ip 37.129.232.184 171562 port 12 171562 unique_id port 171570 username tahmasebi 171570 mac 171570 bytes_out 0 171570 bytes_in 0 171570 station_ip 5.119.45.99 171570 port 1 171570 unique_id port 171570 remote_ip 10.8.0.126 171572 username hashtadani4 171572 mac 171572 bytes_out 0 171545 bytes_in 0 171545 station_ip 83.123.84.172 171545 port 17 171545 unique_id port 171546 username kalantary 171546 mac 171546 bytes_out 1163128 171546 bytes_in 10741803 171546 station_ip 83.123.25.232 171546 port 23 171546 unique_id port 171546 remote_ip 10.8.0.50 171547 username tahmasebi 171547 mac 171547 bytes_out 0 171547 bytes_in 0 171547 station_ip 5.119.45.99 171547 port 23 171547 unique_id port 171547 remote_ip 10.8.0.126 171554 username aminvpn 171554 mac 171554 bytes_out 0 171554 bytes_in 0 171554 station_ip 5.119.94.158 171554 port 22 171554 unique_id port 171554 remote_ip 10.8.0.58 171556 username sekonji3 171556 mac 171556 bytes_out 0 171556 bytes_in 0 171556 station_ip 37.129.89.233 171556 port 27 171556 unique_id port 171556 remote_ip 10.8.0.62 171558 username sekonji3 171558 mac 171558 bytes_out 0 171558 bytes_in 0 171558 station_ip 37.129.89.233 171558 port 1 171558 unique_id port 171558 remote_ip 10.8.0.62 171560 username godarzi 171560 mac 171560 bytes_out 0 171560 bytes_in 0 171560 station_ip 5.119.200.207 171560 port 1 171560 unique_id port 171560 remote_ip 10.8.0.38 171564 username jafari 171564 kill_reason Another user logged on this global unique id 171564 mac 171564 bytes_out 0 171564 bytes_in 0 171564 station_ip 89.47.68.14 171564 port 21 171564 unique_id port 171566 username ayobi 171566 kill_reason Another user logged on this global unique id 171566 mac 171566 bytes_out 0 171566 bytes_in 0 171566 station_ip 37.27.4.25 171566 port 10 171566 unique_id port 171568 username sekonji3 171568 mac 171568 bytes_out 0 171568 bytes_in 0 171568 station_ip 37.129.89.233 171568 port 1 171568 unique_id port 171568 remote_ip 10.8.0.62 171571 username sekonji3 171571 mac 171571 bytes_out 0 171571 bytes_in 0 171571 station_ip 37.129.89.233 171571 port 1 171571 unique_id port 171571 remote_ip 10.8.0.62 171574 username hashtadani4 171574 mac 171574 bytes_out 0 171574 bytes_in 0 171574 station_ip 83.122.178.27 171574 port 12 171574 unique_id port 171574 remote_ip 10.8.0.22 171575 username hashtadani4 171575 mac 171575 bytes_out 0 171575 bytes_in 0 171575 station_ip 83.122.178.27 171575 port 12 171575 unique_id port 171575 remote_ip 10.8.0.22 171577 username sekonji3 171577 mac 171577 bytes_out 0 171577 bytes_in 0 171577 station_ip 37.129.89.233 171577 port 27 171577 unique_id port 171577 remote_ip 10.8.0.62 171578 username godarzi 171578 mac 171578 bytes_out 105249 171578 bytes_in 49023 171578 station_ip 5.119.200.207 171578 port 17 171578 unique_id port 171578 remote_ip 10.8.0.38 171581 username tahmasebi 171581 mac 171581 bytes_out 0 171581 bytes_in 0 171581 station_ip 5.119.45.99 171581 port 1 171581 unique_id port 171581 remote_ip 10.8.0.126 171590 username hashtadani4 171590 mac 171590 bytes_out 30851 171590 bytes_in 463012 171590 station_ip 83.122.178.27 171590 port 1 171590 unique_id port 171590 remote_ip 10.8.0.22 171594 username tahmasebi 171594 mac 171594 bytes_out 0 171594 bytes_in 0 171594 station_ip 5.119.45.99 171594 port 1 171594 unique_id port 171594 remote_ip 10.8.0.126 171595 username tahmasebi 171595 mac 171595 bytes_out 0 171595 bytes_in 0 171595 station_ip 5.119.45.99 171595 port 1 171595 unique_id port 171595 remote_ip 10.8.0.126 171597 username malekpoir 171597 kill_reason Another user logged on this global unique id 171597 mac 171597 bytes_out 0 171597 bytes_in 0 171597 station_ip 5.119.6.116 171597 port 7 171553 bytes_in 3593009 171553 station_ip 37.129.89.233 171553 port 27 171553 unique_id port 171553 remote_ip 10.8.0.62 171559 username tahmasebi 171559 mac 171559 bytes_out 0 171559 bytes_in 0 171559 station_ip 5.119.45.99 171559 port 1 171559 unique_id port 171559 remote_ip 10.8.0.126 171563 username barzegar 171563 mac 171563 bytes_out 0 171563 bytes_in 0 171563 station_ip 5.119.111.133 171563 port 1 171563 unique_id port 171563 remote_ip 10.8.0.10 171565 username hashtadani4 171565 mac 171565 bytes_out 32130415 171565 bytes_in 11011961 171565 station_ip 83.122.178.27 171565 port 17 171565 unique_id port 171565 remote_ip 10.8.0.22 171567 username hashtadani4 171567 mac 171567 bytes_out 0 171567 bytes_in 0 171567 station_ip 83.122.178.27 171567 port 12 171567 unique_id port 171567 remote_ip 10.8.0.22 171569 username malekpoir 171569 kill_reason Another user logged on this global unique id 171569 mac 171569 bytes_out 0 171569 bytes_in 0 171569 station_ip 5.119.6.116 171569 port 7 171569 unique_id port 171569 remote_ip 10.8.0.18 171576 username aminvpn 171576 mac 171576 bytes_out 0 171576 bytes_in 0 171576 station_ip 5.119.94.158 171576 port 17 171576 unique_id port 171576 remote_ip 10.8.0.58 171582 username hashtadani4 171582 mac 171582 bytes_out 3384 171582 bytes_in 5632 171582 station_ip 83.122.178.27 171582 port 12 171582 unique_id port 171582 remote_ip 10.8.0.22 171583 username jafari 171583 kill_reason Another user logged on this global unique id 171583 mac 171583 bytes_out 0 171583 bytes_in 0 171583 station_ip 89.47.68.14 171583 port 21 171583 unique_id port 171584 username khademi 171584 kill_reason Another user logged on this global unique id 171584 mac 171584 bytes_out 0 171584 bytes_in 0 171584 station_ip 37.129.12.135 171584 port 20 171584 unique_id port 171586 username barzegar 171586 mac 171586 bytes_out 0 171586 bytes_in 0 171586 station_ip 5.119.111.133 171586 port 12 171586 unique_id port 171586 remote_ip 10.8.0.10 171587 username sekonji3 171587 mac 171587 bytes_out 0 171587 bytes_in 0 171587 station_ip 37.129.89.233 171587 port 12 171587 unique_id port 171587 remote_ip 10.8.0.62 171589 username mosi 171589 mac 171589 bytes_out 0 171589 bytes_in 0 171589 station_ip 2.184.6.6 171589 port 28 171589 unique_id port 171591 username farhad2 171591 kill_reason Another user logged on this global unique id 171591 mac 171591 bytes_out 0 171591 bytes_in 0 171591 station_ip 5.119.96.6 171591 port 22 171591 unique_id port 171591 remote_ip 10.8.0.146 171592 username hashtadani4 171592 mac 171592 bytes_out 0 171592 bytes_in 0 171592 station_ip 83.122.178.27 171592 port 1 171592 unique_id port 171592 remote_ip 10.8.0.22 171596 username aminvpn 171596 mac 171596 bytes_out 0 171596 bytes_in 0 171596 station_ip 5.119.94.158 171596 port 14 171596 unique_id port 171596 remote_ip 10.8.0.58 171601 username tahmasebi 171601 mac 171601 bytes_out 0 171601 bytes_in 0 171601 station_ip 5.119.45.99 171601 port 17 171601 unique_id port 171601 remote_ip 10.8.0.126 171605 username mohammadjavad 171605 mac 171605 bytes_out 0 171605 bytes_in 0 171605 station_ip 37.129.221.103 171605 port 23 171605 unique_id port 171607 username khademi 171607 kill_reason Another user logged on this global unique id 171607 mac 171607 bytes_out 0 171607 bytes_in 0 171607 station_ip 37.129.12.135 171607 port 20 171607 unique_id port 171609 username hashtadani4 171609 mac 171609 bytes_out 0 171609 bytes_in 0 171609 station_ip 83.122.178.27 171572 bytes_in 0 171572 station_ip 83.122.178.27 171572 port 12 171572 unique_id port 171572 remote_ip 10.8.0.22 171573 username hashtadani4 171573 mac 171573 bytes_out 0 171573 bytes_in 0 171573 station_ip 83.122.178.27 171573 port 1 171573 unique_id port 171573 remote_ip 10.8.0.22 171579 username mosi 171579 kill_reason Another user logged on this global unique id 171579 mac 171579 bytes_out 0 171579 bytes_in 0 171579 station_ip 2.184.6.6 171579 port 28 171579 unique_id port 171580 username tahmasebi 171580 mac 171580 bytes_out 1469189 171580 bytes_in 15929899 171580 station_ip 5.119.45.99 171580 port 1 171580 unique_id port 171580 remote_ip 10.8.0.126 171585 username majidsarmast 171585 mac 171585 bytes_out 0 171585 bytes_in 0 171585 station_ip 86.57.12.94 171585 port 14 171585 unique_id port 171588 username tahmasebi 171588 mac 171588 bytes_out 0 171588 bytes_in 0 171588 station_ip 5.119.45.99 171588 port 12 171588 unique_id port 171588 remote_ip 10.8.0.126 171593 username mohammadjavad 171593 kill_reason Another user logged on this global unique id 171593 mac 171593 bytes_out 0 171593 bytes_in 0 171593 station_ip 37.129.221.103 171593 port 23 171593 unique_id port 171593 remote_ip 10.8.0.110 171598 username barzegar 171598 mac 171598 bytes_out 2745 171598 bytes_in 5054 171598 station_ip 5.119.111.133 171598 port 1 171598 unique_id port 171598 remote_ip 10.8.0.10 171600 username tahmasebi 171600 mac 171600 bytes_out 0 171600 bytes_in 0 171600 station_ip 5.119.45.99 171600 port 17 171600 unique_id port 171600 remote_ip 10.8.0.126 171602 username hashtadani4 171602 mac 171602 bytes_out 0 171602 bytes_in 0 171602 station_ip 83.122.178.27 171602 port 17 171602 unique_id port 171602 remote_ip 10.8.0.22 171603 username farhad2 171603 mac 171603 bytes_out 0 171603 bytes_in 0 171603 station_ip 5.119.96.6 171603 port 22 171603 unique_id port 171606 username farhad2 171606 mac 171606 bytes_out 0 171606 bytes_in 0 171606 station_ip 5.119.96.6 171606 port 23 171606 unique_id port 171606 remote_ip 10.8.0.146 171608 username shadkam 171608 mac 171608 bytes_out 948968 171608 bytes_in 13583533 171608 station_ip 83.122.74.23 171608 port 1 171608 unique_id port 171608 remote_ip 10.8.0.74 171610 username hashtadani4 171610 mac 171610 bytes_out 0 171610 bytes_in 0 171610 station_ip 83.122.178.27 171610 port 1 171610 unique_id port 171610 remote_ip 10.8.0.22 171613 username sabaghnezhad 171613 mac 171613 bytes_out 106966 171613 bytes_in 531628 171613 station_ip 37.129.103.245 171613 port 17 171613 unique_id port 171613 remote_ip 10.8.0.66 171618 username hashtadani4 171618 mac 171618 bytes_out 0 171618 bytes_in 0 171618 station_ip 83.122.178.27 171618 port 17 171618 unique_id port 171618 remote_ip 10.8.0.22 171622 username aminvpn 171622 mac 171622 bytes_out 0 171622 bytes_in 0 171622 station_ip 5.119.94.158 171622 port 28 171622 unique_id port 171622 remote_ip 10.8.0.58 171624 username tahmasebi 171624 mac 171624 bytes_out 0 171624 bytes_in 0 171624 station_ip 5.119.45.99 171624 port 29 171624 unique_id port 171624 remote_ip 10.8.0.126 171626 username rahim 171626 mac 171626 bytes_out 0 171626 bytes_in 0 171626 station_ip 5.120.55.192 171626 port 29 171626 unique_id port 171626 remote_ip 10.8.0.134 171629 username milan 171629 kill_reason Another user logged on this global unique id 171629 mac 171629 bytes_out 0 171629 bytes_in 0 171629 station_ip 5.119.173.190 171629 port 6 171597 unique_id port 171599 username hashtadani4 171599 mac 171599 bytes_out 0 171599 bytes_in 0 171599 station_ip 83.122.178.27 171599 port 14 171599 unique_id port 171599 remote_ip 10.8.0.22 171604 username alipour 171604 kill_reason Another user logged on this global unique id 171604 mac 171604 bytes_out 0 171604 bytes_in 0 171604 station_ip 37.129.187.181 171604 port 2 171604 unique_id port 171615 username malekpoir 171615 mac 171615 bytes_out 0 171615 bytes_in 0 171615 station_ip 5.119.6.116 171615 port 7 171615 unique_id port 171616 username tahmasebi 171616 mac 171616 bytes_out 0 171616 bytes_in 0 171616 station_ip 5.119.45.99 171616 port 17 171616 unique_id port 171616 remote_ip 10.8.0.126 171617 username hashtadani4 171617 mac 171617 bytes_out 0 171617 bytes_in 0 171617 station_ip 83.122.178.27 171617 port 28 171617 unique_id port 171617 remote_ip 10.8.0.22 171619 username aminvpn 171619 mac 171619 bytes_out 0 171619 bytes_in 0 171619 station_ip 5.119.94.158 171619 port 28 171619 unique_id port 171619 remote_ip 10.8.0.58 171621 username tahmasebi 171621 mac 171621 bytes_out 0 171621 bytes_in 0 171621 station_ip 5.119.45.99 171621 port 29 171621 unique_id port 171621 remote_ip 10.8.0.126 171623 username rahim 171623 mac 171623 bytes_out 0 171623 bytes_in 0 171623 station_ip 5.120.55.192 171623 port 28 171623 unique_id port 171623 remote_ip 10.8.0.134 171625 username hashtadani4 171625 mac 171625 bytes_out 208892 171625 bytes_in 2464676 171625 station_ip 83.122.178.27 171625 port 1 171625 unique_id port 171625 remote_ip 10.8.0.22 171627 username farhad2 171627 mac 171627 bytes_out 1688172 171627 bytes_in 16948906 171627 station_ip 5.119.96.6 171627 port 23 171627 unique_id port 171627 remote_ip 10.8.0.146 171628 username rahim 171628 mac 171628 bytes_out 0 171628 bytes_in 0 171628 station_ip 5.120.55.192 171628 port 1 171628 unique_id port 171628 remote_ip 10.8.0.134 171632 username farhad2 171632 mac 171632 bytes_out 0 171632 bytes_in 0 171632 station_ip 5.119.96.6 171632 port 29 171632 unique_id port 171632 remote_ip 10.8.0.146 171636 username farhad2 171636 mac 171636 bytes_out 36462 171636 bytes_in 142018 171636 station_ip 5.119.96.6 171636 port 7 171636 unique_id port 171636 remote_ip 10.8.0.146 171640 username shadkam 171640 mac 171640 bytes_out 238759 171640 bytes_in 2353451 171640 station_ip 113.203.71.216 171640 port 7 171640 unique_id port 171640 remote_ip 10.8.0.74 171641 username farhad2 171641 mac 171641 bytes_out 89886 171641 bytes_in 222410 171641 station_ip 5.119.96.6 171641 port 29 171641 unique_id port 171641 remote_ip 10.8.0.146 171642 username rahim 171642 mac 171642 bytes_out 86425 171642 bytes_in 73105 171642 station_ip 5.120.55.192 171642 port 1 171642 unique_id port 171642 remote_ip 10.8.0.134 171645 username vanila 171645 mac 171645 bytes_out 2128902 171645 bytes_in 25462499 171645 station_ip 83.122.229.141 171645 port 22 171645 unique_id port 171645 remote_ip 10.8.0.46 171646 username aminvpn 171646 mac 171646 bytes_out 0 171646 bytes_in 0 171646 station_ip 5.119.94.158 171646 port 12 171646 unique_id port 171646 remote_ip 10.8.0.58 171648 username aminvpn 171648 mac 171648 bytes_out 0 171648 bytes_in 0 171648 station_ip 5.119.94.158 171648 port 12 171648 unique_id port 171648 remote_ip 10.8.0.58 171649 username aminvpn 171649 mac 171649 bytes_out 0 171649 bytes_in 0 171609 port 1 171609 unique_id port 171609 remote_ip 10.8.0.22 171611 username khalili2 171611 kill_reason Another user logged on this global unique id 171611 mac 171611 bytes_out 0 171611 bytes_in 0 171611 station_ip 5.119.13.234 171611 port 14 171611 unique_id port 171611 remote_ip 10.8.0.194 171612 username hashtadani4 171612 kill_reason Maximum check online fails reached 171612 mac 171612 bytes_out 0 171612 bytes_in 0 171612 station_ip 83.122.178.27 171612 port 27 171612 unique_id port 171614 username hashtadani4 171614 mac 171614 bytes_out 0 171614 bytes_in 0 171614 station_ip 83.122.178.27 171614 port 1 171614 unique_id port 171614 remote_ip 10.8.0.22 171620 username rahim 171620 mac 171620 bytes_out 157225 171620 bytes_in 205806 171620 station_ip 5.120.55.192 171620 port 1 171620 unique_id port 171620 remote_ip 10.8.0.134 171631 username tahmasebi 171631 mac 171631 bytes_out 0 171631 bytes_in 0 171631 station_ip 5.119.45.99 171631 port 7 171631 unique_id port 171631 remote_ip 10.8.0.126 171634 username barzegar 171634 mac 171634 bytes_out 0 171634 bytes_in 0 171634 station_ip 5.119.187.175 171634 port 29 171634 unique_id port 171634 remote_ip 10.8.0.10 171635 username rahim 171635 mac 171635 bytes_out 0 171635 bytes_in 0 171635 station_ip 5.120.55.192 171635 port 29 171635 unique_id port 171635 remote_ip 10.8.0.134 171639 username rahim 171639 mac 171639 bytes_out 0 171639 bytes_in 0 171639 station_ip 5.120.55.192 171639 port 29 171639 unique_id port 171639 remote_ip 10.8.0.134 171644 username morteza 171644 mac 171644 bytes_out 127233 171644 bytes_in 1747817 171644 station_ip 83.123.55.176 171644 port 7 171644 unique_id port 171644 remote_ip 10.8.0.174 171647 username rahim 171647 mac 171647 bytes_out 142807 171647 bytes_in 935246 171647 station_ip 5.120.55.192 171647 port 1 171647 unique_id port 171647 remote_ip 10.8.0.134 171655 username rahim 171655 mac 171655 bytes_out 0 171655 bytes_in 0 171655 station_ip 5.120.55.192 171655 port 1 171655 unique_id port 171655 remote_ip 10.8.0.134 171658 username hashtadani4 171658 mac 171658 bytes_out 0 171658 bytes_in 0 171658 station_ip 83.122.178.27 171658 port 23 171658 unique_id port 171658 remote_ip 10.8.0.22 171661 username vanila 171661 mac 171661 bytes_out 162883 171661 bytes_in 1125891 171661 station_ip 83.122.229.141 171661 port 12 171661 unique_id port 171661 remote_ip 10.8.0.46 171666 username rahim 171666 mac 171666 bytes_out 0 171666 bytes_in 0 171666 station_ip 5.120.55.192 171666 port 12 171666 unique_id port 171666 remote_ip 10.8.0.134 171675 username rahim 171675 mac 171675 bytes_out 2258 171675 bytes_in 4650 171675 station_ip 5.120.55.192 171675 port 12 171675 unique_id port 171675 remote_ip 10.8.0.134 171680 username farhad2 171680 mac 171680 bytes_out 1814887 171680 bytes_in 17387695 171680 station_ip 5.119.112.199 171680 port 1 171680 unique_id port 171680 remote_ip 10.8.0.146 171682 username yarmohamadi 171682 kill_reason Another user logged on this global unique id 171682 mac 171682 bytes_out 0 171682 bytes_in 0 171682 station_ip 5.120.178.75 171682 port 17 171682 unique_id port 171683 username rahim 171683 mac 171683 bytes_out 0 171683 bytes_in 0 171683 station_ip 5.120.55.192 171683 port 23 171683 unique_id port 171683 remote_ip 10.8.0.134 171686 username rahim 171686 mac 171686 bytes_out 0 171686 bytes_in 0 171686 station_ip 5.120.55.192 171686 port 28 171686 unique_id port 171629 unique_id port 171630 username shadkam 171630 mac 171630 bytes_out 820847 171630 bytes_in 7699125 171630 station_ip 113.203.94.34 171630 port 7 171630 unique_id port 171630 remote_ip 10.8.0.74 171633 username rahim 171633 mac 171633 bytes_out 0 171633 bytes_in 0 171633 station_ip 5.120.55.192 171633 port 31 171633 unique_id port 171633 remote_ip 10.8.0.134 171637 username shadkam 171637 mac 171637 bytes_out 235990 171637 bytes_in 1469907 171637 station_ip 113.203.94.34 171637 port 1 171637 unique_id port 171637 remote_ip 10.8.0.74 171638 username farhad2 171638 mac 171638 bytes_out 0 171638 bytes_in 0 171638 station_ip 5.119.96.6 171638 port 1 171638 unique_id port 171638 remote_ip 10.8.0.146 171643 username sekonji3 171643 mac 171643 bytes_out 844780 171643 bytes_in 12816830 171643 station_ip 37.129.89.233 171643 port 12 171643 unique_id port 171643 remote_ip 10.8.0.62 171651 username alipour 171651 kill_reason Another user logged on this global unique id 171651 mac 171651 bytes_out 0 171651 bytes_in 0 171651 station_ip 37.129.187.181 171651 port 2 171651 unique_id port 171652 username vanila 171652 mac 171652 bytes_out 19276 171652 bytes_in 32301 171652 station_ip 83.122.229.141 171652 port 22 171652 unique_id port 171652 remote_ip 10.8.0.46 171656 username hashtadani4 171656 mac 171656 bytes_out 718853 171656 bytes_in 6286636 171656 station_ip 83.122.178.27 171656 port 23 171656 unique_id port 171656 remote_ip 10.8.0.22 171662 username rahim 171662 mac 171662 bytes_out 0 171662 bytes_in 0 171662 station_ip 5.120.55.192 171662 port 12 171662 unique_id port 171662 remote_ip 10.8.0.134 171663 username forozandeh1 171663 mac 171663 bytes_out 1720625 171663 bytes_in 18898106 171663 station_ip 83.123.233.237 171663 port 28 171663 unique_id port 171663 remote_ip 10.8.0.30 171664 username rahim 171664 mac 171664 bytes_out 0 171664 bytes_in 0 171664 station_ip 5.120.55.192 171664 port 12 171664 unique_id port 171664 remote_ip 10.8.0.134 171667 username rahim 171667 mac 171667 bytes_out 0 171667 bytes_in 0 171667 station_ip 5.120.55.192 171667 port 12 171667 unique_id port 171667 remote_ip 10.8.0.134 171668 username rahim 171668 mac 171668 bytes_out 0 171668 bytes_in 0 171668 station_ip 5.120.55.192 171668 port 12 171668 unique_id port 171668 remote_ip 10.8.0.134 171669 username rahim 171669 mac 171669 bytes_out 0 171669 bytes_in 0 171669 station_ip 5.120.55.192 171669 port 12 171669 unique_id port 171669 remote_ip 10.8.0.134 171671 username rahim 171671 mac 171671 bytes_out 0 171671 bytes_in 0 171671 station_ip 5.120.55.192 171671 port 12 171671 unique_id port 171671 remote_ip 10.8.0.134 171672 username alipour 171672 kill_reason Another user logged on this global unique id 171672 mac 171672 bytes_out 0 171672 bytes_in 0 171672 station_ip 37.129.187.181 171672 port 2 171672 unique_id port 171674 username hashtadani4 171674 mac 171674 bytes_out 2058 171674 bytes_in 5111 171674 station_ip 83.122.178.27 171674 port 22 171674 unique_id port 171674 remote_ip 10.8.0.22 171676 username rahim 171676 mac 171676 bytes_out 0 171676 bytes_in 0 171676 station_ip 5.120.55.192 171676 port 23 171676 unique_id port 171676 remote_ip 10.8.0.134 171677 username rahim 171677 mac 171677 bytes_out 0 171677 bytes_in 0 171677 station_ip 5.120.55.192 171677 port 23 171677 unique_id port 171677 remote_ip 10.8.0.134 171679 username rahim 171679 mac 171649 station_ip 5.119.94.158 171649 port 1 171649 unique_id port 171649 remote_ip 10.8.0.58 171650 username aminvpn 171650 mac 171650 bytes_out 0 171650 bytes_in 0 171650 station_ip 5.119.94.158 171650 port 12 171650 unique_id port 171650 remote_ip 10.8.0.58 171653 username yarmohamadi 171653 kill_reason Another user logged on this global unique id 171653 mac 171653 bytes_out 0 171653 bytes_in 0 171653 station_ip 5.120.178.75 171653 port 17 171653 unique_id port 171653 remote_ip 10.8.0.6 171654 username rahim 171654 mac 171654 bytes_out 0 171654 bytes_in 0 171654 station_ip 5.120.55.192 171654 port 1 171654 unique_id port 171654 remote_ip 10.8.0.134 171657 username rahim 171657 mac 171657 bytes_out 0 171657 bytes_in 0 171657 station_ip 5.120.55.192 171657 port 1 171657 unique_id port 171657 remote_ip 10.8.0.134 171659 username farhad2 171659 mac 171659 bytes_out 489462 171659 bytes_in 3258090 171659 station_ip 5.119.112.199 171659 port 29 171659 unique_id port 171659 remote_ip 10.8.0.146 171660 username rahim 171660 mac 171660 bytes_out 0 171660 bytes_in 0 171660 station_ip 5.120.55.192 171660 port 23 171660 unique_id port 171660 remote_ip 10.8.0.134 171665 username hashtadani4 171665 mac 171665 bytes_out 0 171665 bytes_in 0 171665 station_ip 83.122.178.27 171665 port 12 171665 unique_id port 171665 remote_ip 10.8.0.22 171670 username tahmasebi 171670 mac 171670 bytes_out 869566 171670 bytes_in 6321024 171670 station_ip 5.119.45.99 171670 port 22 171670 unique_id port 171670 remote_ip 10.8.0.126 171673 username aminvpn 171673 mac 171673 bytes_out 0 171673 bytes_in 0 171673 station_ip 5.119.94.158 171673 port 23 171673 unique_id port 171673 remote_ip 10.8.0.58 171678 username rahim 171678 mac 171678 bytes_out 0 171678 bytes_in 0 171678 station_ip 5.120.55.192 171678 port 23 171678 unique_id port 171678 remote_ip 10.8.0.134 171684 username hashtadani4 171684 mac 171684 bytes_out 0 171684 bytes_in 0 171684 station_ip 83.122.178.27 171684 port 28 171684 unique_id port 171684 remote_ip 10.8.0.22 171688 username sekonji3 171688 mac 171688 bytes_out 190166 171688 bytes_in 1732422 171688 station_ip 37.129.89.233 171688 port 7 171688 unique_id port 171688 remote_ip 10.8.0.62 171689 username saeed9658 171689 mac 171689 bytes_out 188147 171689 bytes_in 887127 171689 station_ip 5.119.77.159 171689 port 23 171689 unique_id port 171689 remote_ip 10.8.0.154 171691 username tahmasebi 171691 mac 171691 bytes_out 2230496 171691 bytes_in 11903571 171691 station_ip 5.119.45.99 171691 port 12 171691 unique_id port 171691 remote_ip 10.8.0.126 171694 username rahim 171694 mac 171694 bytes_out 0 171694 bytes_in 0 171694 station_ip 5.120.55.192 171694 port 12 171694 unique_id port 171694 remote_ip 10.8.0.134 171696 username aminvpn 171696 mac 171696 bytes_out 0 171696 bytes_in 0 171696 station_ip 5.119.94.158 171696 port 23 171696 unique_id port 171696 remote_ip 10.8.0.58 171706 username hashtadani4 171706 mac 171706 bytes_out 0 171706 bytes_in 0 171706 station_ip 83.122.178.27 171706 port 31 171706 unique_id port 171706 remote_ip 10.8.0.22 171708 username sekonji3 171708 mac 171708 bytes_out 38093 171708 bytes_in 321338 171708 station_ip 37.129.89.233 171708 port 12 171708 unique_id port 171708 remote_ip 10.8.0.62 171712 username shadkam 171712 kill_reason Another user logged on this global unique id 171712 mac 171712 bytes_out 0 171712 bytes_in 0 171712 station_ip 37.129.130.7 171679 bytes_out 0 171679 bytes_in 0 171679 station_ip 5.120.55.192 171679 port 23 171679 unique_id port 171679 remote_ip 10.8.0.134 171681 username rahim 171681 mac 171681 bytes_out 0 171681 bytes_in 0 171681 station_ip 5.120.55.192 171681 port 1 171681 unique_id port 171681 remote_ip 10.8.0.134 171685 username barzegar 171685 mac 171685 bytes_out 469921 171685 bytes_in 2719234 171685 station_ip 5.119.187.175 171685 port 31 171685 unique_id port 171685 remote_ip 10.8.0.10 171690 username rahim 171690 mac 171690 bytes_out 0 171690 bytes_in 0 171690 station_ip 5.120.55.192 171690 port 28 171690 unique_id port 171690 remote_ip 10.8.0.134 171692 username vanila 171692 mac 171692 bytes_out 1499611 171692 bytes_in 21580459 171692 station_ip 83.122.229.141 171692 port 22 171692 unique_id port 171692 remote_ip 10.8.0.46 171698 username tahmasebi 171698 mac 171698 bytes_out 0 171698 bytes_in 0 171698 station_ip 5.119.45.99 171698 port 28 171698 unique_id port 171698 remote_ip 10.8.0.126 171701 username rahim 171701 mac 171701 bytes_out 0 171701 bytes_in 0 171701 station_ip 5.120.55.192 171701 port 28 171701 unique_id port 171701 remote_ip 10.8.0.134 171704 username kordestani 171704 mac 171704 bytes_out 1110548 171704 bytes_in 13582152 171704 station_ip 151.235.74.238 171704 port 23 171704 unique_id port 171704 remote_ip 10.8.0.130 171707 username rahim 171707 mac 171707 bytes_out 0 171707 bytes_in 0 171707 station_ip 5.120.55.192 171707 port 28 171707 unique_id port 171707 remote_ip 10.8.0.134 171710 username rahim 171710 mac 171710 bytes_out 0 171710 bytes_in 0 171710 station_ip 5.120.55.192 171710 port 12 171710 unique_id port 171710 remote_ip 10.8.0.134 171714 username rahim 171714 mac 171714 bytes_out 0 171714 bytes_in 0 171714 station_ip 5.120.55.192 171714 port 22 171714 unique_id port 171714 remote_ip 10.8.0.134 171715 username rahim 171715 mac 171715 bytes_out 0 171715 bytes_in 0 171715 station_ip 5.120.55.192 171715 port 22 171715 unique_id port 171715 remote_ip 10.8.0.134 171717 username rahim 171717 mac 171717 bytes_out 0 171717 bytes_in 0 171717 station_ip 5.120.55.192 171717 port 22 171717 unique_id port 171717 remote_ip 10.8.0.134 171720 username sekonji3 171720 mac 171720 bytes_out 0 171720 bytes_in 0 171720 station_ip 37.129.89.233 171720 port 23 171720 unique_id port 171720 remote_ip 10.8.0.62 171725 username rahim 171725 mac 171725 bytes_out 0 171725 bytes_in 0 171725 station_ip 5.120.55.192 171725 port 31 171725 unique_id port 171725 remote_ip 10.8.0.134 171728 username shadkam 171728 mac 171728 bytes_out 0 171728 bytes_in 0 171728 station_ip 37.129.130.7 171728 port 7 171728 unique_id port 171729 username tahmasebi 171729 mac 171729 bytes_out 930372 171729 bytes_in 11898105 171729 station_ip 5.119.45.99 171729 port 22 171729 unique_id port 171729 remote_ip 10.8.0.126 171730 username yarmohamadi 171730 kill_reason Another user logged on this global unique id 171730 mac 171730 bytes_out 0 171730 bytes_in 0 171730 station_ip 5.120.178.75 171730 port 17 171730 unique_id port 171731 username hashtadani4 171731 mac 171731 bytes_out 0 171731 bytes_in 0 171731 station_ip 83.122.178.27 171731 port 32 171731 unique_id port 171731 remote_ip 10.8.0.22 171733 username tahmasebi 171733 mac 171733 bytes_out 0 171733 bytes_in 0 171733 station_ip 5.119.45.99 171733 port 7 171733 unique_id port 171733 remote_ip 10.8.0.126 171686 remote_ip 10.8.0.134 171687 username rahim 171687 mac 171687 bytes_out 0 171687 bytes_in 0 171687 station_ip 5.120.55.192 171687 port 28 171687 unique_id port 171687 remote_ip 10.8.0.134 171693 username hashtadani4 171693 mac 171693 bytes_out 0 171693 bytes_in 0 171693 station_ip 83.122.178.27 171693 port 23 171693 unique_id port 171693 remote_ip 10.8.0.22 171695 username rahim 171695 mac 171695 bytes_out 0 171695 bytes_in 0 171695 station_ip 5.120.55.192 171695 port 12 171695 unique_id port 171695 remote_ip 10.8.0.134 171697 username tahmasebi 171697 mac 171697 bytes_out 0 171697 bytes_in 0 171697 station_ip 5.119.45.99 171697 port 23 171697 unique_id port 171697 remote_ip 10.8.0.126 171699 username rahim 171699 mac 171699 bytes_out 0 171699 bytes_in 0 171699 station_ip 5.120.55.192 171699 port 29 171699 unique_id port 171699 remote_ip 10.8.0.134 171700 username me 171700 mac 171700 bytes_out 2687979 171700 bytes_in 20367430 171700 station_ip 5.119.94.158 171700 port 35 171700 unique_id port 171700 remote_ip 10.8.0.190 171702 username alipour 171702 kill_reason Another user logged on this global unique id 171702 mac 171702 bytes_out 0 171702 bytes_in 0 171702 station_ip 37.129.187.181 171702 port 2 171702 unique_id port 171703 username rahim 171703 mac 171703 bytes_out 0 171703 bytes_in 0 171703 station_ip 5.120.55.192 171703 port 31 171703 unique_id port 171703 remote_ip 10.8.0.134 171705 username tahmasebi 171705 mac 171705 bytes_out 2615 171705 bytes_in 4895 171705 station_ip 5.119.45.99 171705 port 28 171705 unique_id port 171705 remote_ip 10.8.0.126 171709 username yarmohamadi 171709 kill_reason Another user logged on this global unique id 171709 mac 171709 bytes_out 0 171709 bytes_in 0 171709 station_ip 5.120.178.75 171709 port 17 171709 unique_id port 171711 username farhad2 171711 mac 171711 bytes_out 1531109 171711 bytes_in 6506728 171711 station_ip 5.119.112.199 171711 port 1 171711 unique_id port 171711 remote_ip 10.8.0.146 171713 username barzegar 171713 mac 171713 bytes_out 225199 171713 bytes_in 1256049 171713 station_ip 5.119.187.175 171713 port 22 171713 unique_id port 171713 remote_ip 10.8.0.10 171716 username tahmasebi 171716 mac 171716 bytes_out 1328037 171716 bytes_in 17841812 171716 station_ip 5.119.45.99 171716 port 23 171716 unique_id port 171716 remote_ip 10.8.0.126 171722 username rahim 171722 mac 171722 bytes_out 0 171722 bytes_in 0 171722 station_ip 5.120.55.192 171722 port 31 171722 unique_id port 171722 remote_ip 10.8.0.134 171723 username rahim 171723 mac 171723 bytes_out 0 171723 bytes_in 0 171723 station_ip 5.120.55.192 171723 port 31 171723 unique_id port 171723 remote_ip 10.8.0.134 171724 username aminvpn 171724 mac 171724 bytes_out 0 171724 bytes_in 0 171724 station_ip 5.119.94.158 171724 port 31 171724 unique_id port 171724 remote_ip 10.8.0.58 171727 username barzegar 171727 mac 171727 bytes_out 0 171727 bytes_in 0 171727 station_ip 5.119.187.175 171727 port 1 171727 unique_id port 171727 remote_ip 10.8.0.10 171732 username rahim 171732 mac 171732 bytes_out 6054212 171732 bytes_in 255037 171732 station_ip 5.120.55.192 171732 port 31 171732 unique_id port 171732 remote_ip 10.8.0.134 171734 username sekonji3 171734 mac 171734 bytes_out 3660 171734 bytes_in 5935 171734 station_ip 37.129.89.233 171734 port 1 171734 unique_id port 171734 remote_ip 10.8.0.62 171735 username sekonji3 171735 mac 171712 port 7 171712 unique_id port 171712 remote_ip 10.8.0.74 171718 username sekonji3 171718 mac 171718 bytes_out 0 171718 bytes_in 0 171718 station_ip 37.129.89.233 171718 port 23 171718 unique_id port 171718 remote_ip 10.8.0.62 171719 username rahim 171719 mac 171719 bytes_out 0 171719 bytes_in 0 171719 station_ip 5.120.55.192 171719 port 28 171719 unique_id port 171719 remote_ip 10.8.0.134 171721 username hashtadani4 171721 mac 171721 bytes_out 0 171721 bytes_in 0 171721 station_ip 83.122.178.27 171721 port 31 171721 unique_id port 171721 remote_ip 10.8.0.22 171726 username vanila 171726 mac 171726 bytes_out 1122577 171726 bytes_in 2912172 171726 station_ip 83.122.229.141 171726 port 1 171726 unique_id port 171726 remote_ip 10.8.0.46 171736 username barzegar 171736 mac 171736 bytes_out 0 171736 bytes_in 0 171736 station_ip 5.119.187.175 171736 port 1 171736 unique_id port 171736 remote_ip 10.8.0.10 171747 username aminvpn 171747 mac 171747 bytes_out 0 171747 bytes_in 0 171747 station_ip 5.119.94.158 171747 port 7 171747 unique_id port 171747 remote_ip 10.8.0.58 171749 username sekonji3 171749 mac 171749 bytes_out 0 171749 bytes_in 0 171749 station_ip 37.129.89.233 171749 port 32 171749 unique_id port 171749 remote_ip 10.8.0.62 171751 username barzegar 171751 mac 171751 bytes_out 0 171751 bytes_in 0 171751 station_ip 5.119.187.175 171751 port 32 171751 unique_id port 171751 remote_ip 10.8.0.10 171753 username rezaei 171753 mac 171753 bytes_out 2075107 171753 bytes_in 24622112 171753 station_ip 5.120.190.234 171753 port 29 171753 unique_id port 171753 remote_ip 10.8.0.198 171754 username mosi 171754 mac 171754 bytes_out 36863 171754 bytes_in 70055 171754 station_ip 37.153.177.140 171754 port 33 171754 unique_id port 171754 remote_ip 10.8.0.142 171756 username hashtadani4 171756 mac 171756 bytes_out 0 171756 bytes_in 0 171756 station_ip 83.122.178.27 171756 port 10 171756 unique_id port 171756 remote_ip 10.8.0.22 171761 username vanila 171761 mac 171761 bytes_out 327712 171761 bytes_in 2064522 171761 station_ip 83.122.229.141 171761 port 12 171761 unique_id port 171761 remote_ip 10.8.0.46 171765 username sekonji3 171765 mac 171765 bytes_out 0 171765 bytes_in 0 171765 station_ip 37.129.89.233 171765 port 1 171765 unique_id port 171765 remote_ip 10.8.0.62 171767 username hashtadani4 171767 mac 171767 bytes_out 0 171767 bytes_in 0 171767 station_ip 83.122.178.27 171767 port 7 171767 unique_id port 171767 remote_ip 10.8.0.22 171771 username farhad2 171771 mac 171771 bytes_out 77218 171771 bytes_in 321743 171771 station_ip 5.119.112.199 171771 port 1 171771 unique_id port 171771 remote_ip 10.8.0.146 171773 username saeed9658 171773 mac 171773 bytes_out 1771202 171773 bytes_in 22834144 171773 station_ip 5.119.77.159 171773 port 22 171773 unique_id port 171773 remote_ip 10.8.0.154 171776 username jafari 171776 mac 171776 bytes_out 0 171776 bytes_in 0 171776 station_ip 89.47.68.14 171776 port 21 171776 unique_id port 171783 username hadibarzegar 171783 kill_reason Another user logged on this global unique id 171783 mac 171783 bytes_out 0 171783 bytes_in 0 171783 station_ip 37.129.156.58 171783 port 7 171783 unique_id port 171783 remote_ip 10.8.0.162 171788 username aminvpn 171788 unique_id port 171788 terminate_cause Lost-Carrier 171788 bytes_out 589761 171788 bytes_in 301764 171788 station_ip 31.57.142.167 171788 port 15728780 171788 nas_port_type Virtual 171735 bytes_out 0 171735 bytes_in 0 171735 station_ip 37.129.89.233 171735 port 1 171735 unique_id port 171735 remote_ip 10.8.0.62 171740 username sekonji3 171740 mac 171740 bytes_out 8160 171740 bytes_in 12139 171740 station_ip 37.129.89.233 171740 port 1 171740 unique_id port 171740 remote_ip 10.8.0.62 171743 username farhad2 171743 mac 171743 bytes_out 2000246 171743 bytes_in 16732757 171743 station_ip 5.119.112.199 171743 port 12 171743 unique_id port 171743 remote_ip 10.8.0.146 171744 username tahmasebi 171744 mac 171744 bytes_out 0 171744 bytes_in 0 171744 station_ip 5.119.45.99 171744 port 7 171744 unique_id port 171744 remote_ip 10.8.0.126 171745 username aminvpn 171745 mac 171745 bytes_out 0 171745 bytes_in 0 171745 station_ip 5.119.94.158 171745 port 7 171745 unique_id port 171745 remote_ip 10.8.0.58 171746 username vanila 171746 mac 171746 bytes_out 410651 171746 bytes_in 1603851 171746 station_ip 83.122.229.141 171746 port 22 171746 unique_id port 171746 remote_ip 10.8.0.46 171748 username farhad2 171748 mac 171748 bytes_out 44777 171748 bytes_in 618583 171748 station_ip 5.119.112.199 171748 port 1 171748 unique_id port 171748 remote_ip 10.8.0.146 171750 username jafari 171750 kill_reason Another user logged on this global unique id 171750 mac 171750 bytes_out 0 171750 bytes_in 0 171750 station_ip 89.47.68.14 171750 port 21 171750 unique_id port 171758 username morteza 171758 mac 171758 bytes_out 145287 171758 bytes_in 1458040 171758 station_ip 83.123.13.172 171758 port 1 171758 unique_id port 171758 remote_ip 10.8.0.174 171759 username morteza 171759 mac 171759 bytes_out 0 171759 bytes_in 0 171759 station_ip 83.123.13.172 171759 port 1 171759 unique_id port 171759 remote_ip 10.8.0.174 171760 username morteza 171760 mac 171760 bytes_out 0 171760 bytes_in 0 171760 station_ip 83.123.13.172 171760 port 1 171760 unique_id port 171760 remote_ip 10.8.0.174 171763 username yarmohamadi 171763 kill_reason Another user logged on this global unique id 171763 mac 171763 bytes_out 0 171763 bytes_in 0 171763 station_ip 5.120.178.75 171763 port 17 171763 unique_id port 171770 username tahmasebi 171770 mac 171770 bytes_out 0 171770 bytes_in 0 171770 station_ip 5.119.45.99 171770 port 10 171770 unique_id port 171770 remote_ip 10.8.0.126 171775 username barzegar 171775 mac 171775 bytes_out 0 171775 bytes_in 0 171775 station_ip 5.119.187.175 171775 port 1 171775 unique_id port 171775 remote_ip 10.8.0.10 171779 username tahmasebi 171779 mac 171779 bytes_out 0 171779 bytes_in 0 171779 station_ip 5.119.45.99 171779 port 1 171779 unique_id port 171779 remote_ip 10.8.0.126 171781 username hashtadani4 171781 mac 171781 bytes_out 0 171781 bytes_in 0 171781 station_ip 83.122.178.27 171781 port 12 171781 unique_id port 171781 remote_ip 10.8.0.22 171782 username tahmasebi 171782 mac 171782 bytes_out 0 171782 bytes_in 0 171782 station_ip 5.119.45.99 171782 port 1 171782 unique_id port 171782 remote_ip 10.8.0.126 171784 username tahmasebi 171784 mac 171784 bytes_out 0 171784 bytes_in 0 171784 station_ip 5.119.45.99 171784 port 1 171784 unique_id port 171784 remote_ip 10.8.0.126 171786 username sekonji3 171786 mac 171786 bytes_out 0 171786 bytes_in 0 171786 station_ip 37.129.89.233 171786 port 1 171786 unique_id port 171786 remote_ip 10.8.0.62 171789 username hashtadani4 171789 mac 171789 bytes_out 0 171789 bytes_in 0 171789 station_ip 83.122.178.27 171737 username tahmasebi 171737 mac 171737 bytes_out 0 171737 bytes_in 0 171737 station_ip 5.119.45.99 171737 port 7 171737 unique_id port 171737 remote_ip 10.8.0.126 171738 username tahmasebi 171738 mac 171738 bytes_out 2639 171738 bytes_in 5007 171738 station_ip 5.119.45.99 171738 port 7 171738 unique_id port 171738 remote_ip 10.8.0.126 171739 username tahmasebi 171739 mac 171739 bytes_out 0 171739 bytes_in 0 171739 station_ip 5.119.45.99 171739 port 7 171739 unique_id port 171739 remote_ip 10.8.0.126 171741 username yarmohamadi 171741 kill_reason Another user logged on this global unique id 171741 mac 171741 bytes_out 0 171741 bytes_in 0 171741 station_ip 5.120.178.75 171741 port 17 171741 unique_id port 171742 username hashtadani4 171742 mac 171742 bytes_out 0 171742 bytes_in 0 171742 station_ip 83.122.178.27 171742 port 1 171742 unique_id port 171742 remote_ip 10.8.0.22 171752 username ayobi 171752 mac 171752 bytes_out 0 171752 bytes_in 0 171752 station_ip 37.27.4.25 171752 port 10 171752 unique_id port 171755 username hashtadani4 171755 mac 171755 bytes_out 0 171755 bytes_in 0 171755 station_ip 83.122.178.27 171755 port 10 171755 unique_id port 171755 remote_ip 10.8.0.22 171757 username tahmasebi 171757 mac 171757 bytes_out 0 171757 bytes_in 0 171757 station_ip 5.119.45.99 171757 port 29 171757 unique_id port 171757 remote_ip 10.8.0.126 171762 username farhad2 171762 mac 171762 bytes_out 961363 171762 bytes_in 7070732 171762 station_ip 5.119.112.199 171762 port 7 171762 unique_id port 171762 remote_ip 10.8.0.146 171764 username morteza 171764 mac 171764 bytes_out 0 171764 bytes_in 0 171764 station_ip 83.123.13.172 171764 port 1 171764 unique_id port 171764 remote_ip 10.8.0.174 171766 username farhad2 171766 mac 171766 bytes_out 106203 171766 bytes_in 343243 171766 station_ip 5.119.112.199 171766 port 1 171766 unique_id port 171766 remote_ip 10.8.0.146 171768 username yarmohamadi 171768 kill_reason Another user logged on this global unique id 171768 mac 171768 bytes_out 0 171768 bytes_in 0 171768 station_ip 5.120.178.75 171768 port 17 171768 unique_id port 171769 username aminvpn 171769 mac 171769 bytes_out 0 171769 bytes_in 0 171769 station_ip 5.119.94.158 171769 port 7 171769 unique_id port 171769 remote_ip 10.8.0.58 171772 username sekonji3 171772 mac 171772 bytes_out 0 171772 bytes_in 0 171772 station_ip 37.129.89.233 171772 port 12 171772 unique_id port 171772 remote_ip 10.8.0.62 171774 username jafari 171774 kill_reason Another user logged on this global unique id 171774 mac 171774 bytes_out 0 171774 bytes_in 0 171774 station_ip 89.47.68.14 171774 port 21 171774 unique_id port 171777 username tahmasebi 171777 mac 171777 bytes_out 0 171777 bytes_in 0 171777 station_ip 5.119.45.99 171777 port 12 171777 unique_id port 171777 remote_ip 10.8.0.126 171778 username jafari 171778 mac 171778 bytes_out 0 171778 bytes_in 0 171778 station_ip 89.47.68.14 171778 port 1 171778 unique_id port 171778 remote_ip 10.8.0.86 171780 username tahmasebi 171780 mac 171780 bytes_out 0 171780 bytes_in 0 171780 station_ip 5.119.45.99 171780 port 1 171780 unique_id port 171780 remote_ip 10.8.0.126 171785 username farhad2 171785 mac 171785 bytes_out 716593 171785 bytes_in 1577762 171785 station_ip 5.119.85.5 171785 port 29 171785 unique_id port 171785 remote_ip 10.8.0.146 171787 username tahmasebi 171787 mac 171787 bytes_out 0 171787 bytes_in 0 171787 station_ip 5.119.45.99 171787 port 21 171787 unique_id port 171787 remote_ip 10.8.0.126 171790 username aminvpn 171790 mac 171790 bytes_out 0 171790 bytes_in 0 171790 station_ip 5.119.94.158 171790 port 21 171790 unique_id port 171790 remote_ip 10.8.0.58 171793 username rahim 171793 mac 171793 bytes_out 5677067 171793 bytes_in 37005765 171793 station_ip 5.120.55.192 171793 port 31 171793 unique_id port 171793 remote_ip 10.8.0.134 171795 username tahmasebi 171795 mac 171795 bytes_out 0 171795 bytes_in 0 171795 station_ip 5.119.45.99 171795 port 21 171795 unique_id port 171795 remote_ip 10.8.0.126 171797 username tahmasebi 171797 mac 171797 bytes_out 2639 171797 bytes_in 4887 171797 station_ip 5.119.45.99 171797 port 21 171797 unique_id port 171797 remote_ip 10.8.0.126 171802 username hatami 171802 mac 171802 bytes_out 325532 171802 bytes_in 2692348 171802 station_ip 151.235.97.37 171802 port 1 171802 unique_id port 171802 remote_ip 10.8.0.98 171808 username hadibarzegar 171808 kill_reason Another user logged on this global unique id 171808 mac 171808 bytes_out 0 171808 bytes_in 0 171808 station_ip 37.129.156.58 171808 port 7 171808 unique_id port 171811 username hashtadani4 171811 mac 171811 bytes_out 0 171811 bytes_in 0 171811 station_ip 83.122.178.27 171811 port 12 171811 unique_id port 171811 remote_ip 10.8.0.22 171813 username majidsarmast 171813 kill_reason Another user logged on this global unique id 171813 mac 171813 bytes_out 0 171813 bytes_in 0 171813 station_ip 86.57.12.94 171813 port 22 171813 unique_id port 171816 username tahmasebi 171816 mac 171816 bytes_out 3251930 171816 bytes_in 33989640 171816 station_ip 5.119.45.99 171816 port 21 171816 unique_id port 171816 remote_ip 10.8.0.126 171821 username yarmohamadi 171821 kill_reason Another user logged on this global unique id 171821 mac 171821 bytes_out 0 171821 bytes_in 0 171821 station_ip 5.120.178.75 171821 port 17 171821 unique_id port 171824 username hashtadani4 171824 mac 171824 bytes_out 0 171824 bytes_in 0 171824 station_ip 83.122.178.27 171824 port 29 171824 unique_id port 171824 remote_ip 10.8.0.22 171831 username aminvpn 171831 mac 171831 bytes_out 0 171831 bytes_in 0 171831 station_ip 5.119.94.158 171831 port 31 171831 unique_id port 171831 remote_ip 10.8.0.58 171833 username rahim 171833 mac 171833 bytes_out 476303 171833 bytes_in 2334928 171833 station_ip 5.120.55.192 171833 port 17 171833 unique_id port 171833 remote_ip 10.8.0.134 171838 username rahim 171838 mac 171838 bytes_out 0 171838 bytes_in 0 171838 station_ip 5.120.55.192 171838 port 17 171838 unique_id port 171838 remote_ip 10.8.0.134 171843 username rahim 171843 mac 171843 bytes_out 0 171843 bytes_in 0 171843 station_ip 5.120.55.192 171843 port 26 171843 unique_id port 171843 remote_ip 10.8.0.134 171845 username barzegar 171845 mac 171845 bytes_out 0 171845 bytes_in 0 171845 station_ip 5.119.187.175 171845 port 21 171845 unique_id port 171845 remote_ip 10.8.0.10 171847 username rahim 171847 mac 171847 bytes_out 0 171847 bytes_in 0 171847 station_ip 5.120.55.192 171847 port 3 171847 unique_id port 171847 remote_ip 10.8.0.134 171848 username rahim 171848 mac 171848 bytes_out 0 171848 bytes_in 0 171848 station_ip 5.120.55.192 171848 port 3 171848 unique_id port 171848 remote_ip 10.8.0.134 171849 username farhad2 171849 mac 171849 bytes_out 266660 171849 bytes_in 707609 171849 station_ip 5.119.156.82 171849 port 17 171849 unique_id port 171788 remote_ip 5.5.5.236 171792 username tahmasebi 171792 mac 171792 bytes_out 0 171792 bytes_in 0 171792 station_ip 5.119.45.99 171792 port 1 171792 unique_id port 171792 remote_ip 10.8.0.126 171796 username barzegar 171796 mac 171796 bytes_out 0 171796 bytes_in 0 171796 station_ip 5.119.187.175 171796 port 22 171796 unique_id port 171796 remote_ip 10.8.0.10 171805 username hashtadani4 171805 mac 171805 bytes_out 0 171805 bytes_in 0 171805 station_ip 83.122.178.27 171805 port 1 171805 unique_id port 171805 remote_ip 10.8.0.22 171806 username aminvpn 171806 unique_id port 171806 terminate_cause Lost-Carrier 171806 bytes_out 12187832 171806 bytes_in 246172160 171806 station_ip 5.119.94.158 171806 port 15728778 171806 nas_port_type Virtual 171806 remote_ip 5.5.5.238 171807 username aminvpn 171807 mac 171807 bytes_out 0 171807 bytes_in 0 171807 station_ip 5.119.94.158 171807 port 1 171807 unique_id port 171807 remote_ip 10.8.0.58 171809 username majidsarmast 171809 kill_reason Another user logged on this global unique id 171809 mac 171809 bytes_out 0 171809 bytes_in 0 171809 station_ip 86.57.12.94 171809 port 22 171809 unique_id port 171809 remote_ip 10.8.0.170 171810 username hadibarzegar 171810 kill_reason Another user logged on this global unique id 171810 mac 171810 bytes_out 0 171810 bytes_in 0 171810 station_ip 37.129.156.58 171810 port 7 171810 unique_id port 171814 username hashtadani4 171814 mac 171814 bytes_out 0 171814 bytes_in 0 171814 station_ip 83.122.178.27 171814 port 12 171814 unique_id port 171814 remote_ip 10.8.0.22 171820 username mohammadmahdi 171820 kill_reason Another user logged on this global unique id 171820 mac 171820 bytes_out 0 171820 bytes_in 0 171820 station_ip 5.119.206.241 171820 port 10 171820 unique_id port 171820 remote_ip 10.8.0.90 171822 username fezealinaghi 171822 kill_reason Another user logged on this global unique id 171822 mac 171822 bytes_out 0 171822 bytes_in 0 171822 station_ip 113.203.106.173 171822 port 1 171822 unique_id port 171822 remote_ip 10.8.0.202 171823 username yarmohamadi 171823 mac 171823 bytes_out 0 171823 bytes_in 0 171823 station_ip 5.120.178.75 171823 port 17 171823 unique_id port 171826 username farhad2 171826 mac 171826 bytes_out 0 171826 bytes_in 0 171826 station_ip 5.119.156.82 171826 port 31 171826 unique_id port 171826 remote_ip 10.8.0.146 171829 username hadibarzegar 171829 kill_reason Another user logged on this global unique id 171829 mac 171829 bytes_out 0 171829 bytes_in 0 171829 station_ip 37.129.156.58 171829 port 7 171829 unique_id port 171830 username pourshad 171830 mac 171830 bytes_out 0 171830 bytes_in 0 171830 station_ip 5.120.195.96 171830 port 26 171830 unique_id port 171834 username hadibarzegar 171834 kill_reason Another user logged on this global unique id 171834 mac 171834 bytes_out 0 171834 bytes_in 0 171834 station_ip 37.129.156.58 171834 port 7 171834 unique_id port 171835 username tahmasebi 171835 kill_reason Another user logged on this global unique id 171835 mac 171835 bytes_out 0 171835 bytes_in 0 171835 station_ip 5.119.45.99 171835 port 3 171835 unique_id port 171835 remote_ip 10.8.0.126 171839 username rahim 171839 mac 171839 bytes_out 0 171839 bytes_in 0 171839 station_ip 5.120.55.192 171839 port 17 171839 unique_id port 171839 remote_ip 10.8.0.134 171840 username farhad2 171840 mac 171840 bytes_out 1296391 171840 bytes_in 9695289 171840 station_ip 5.119.156.82 171840 port 21 171840 unique_id port 171840 remote_ip 10.8.0.146 171850 username rahim 171850 mac 171850 bytes_out 0 171789 port 21 171789 unique_id port 171789 remote_ip 10.8.0.22 171791 username tahmasebi 171791 mac 171791 bytes_out 6952 171791 bytes_in 11254 171791 station_ip 5.119.45.99 171791 port 1 171791 unique_id port 171791 remote_ip 10.8.0.126 171794 username hadibarzegar 171794 kill_reason Another user logged on this global unique id 171794 mac 171794 bytes_out 0 171794 bytes_in 0 171794 station_ip 37.129.156.58 171794 port 7 171794 unique_id port 171798 username hashtadani4 171798 mac 171798 bytes_out 0 171798 bytes_in 0 171798 station_ip 83.122.178.27 171798 port 29 171798 unique_id port 171798 remote_ip 10.8.0.22 171799 username tahmasebi 171799 mac 171799 bytes_out 0 171799 bytes_in 0 171799 station_ip 5.119.45.99 171799 port 29 171799 unique_id port 171799 remote_ip 10.8.0.126 171800 username barzegar 171800 mac 171800 bytes_out 0 171800 bytes_in 0 171800 station_ip 5.119.187.175 171800 port 21 171800 unique_id port 171800 remote_ip 10.8.0.10 171801 username hadibarzegar 171801 kill_reason Another user logged on this global unique id 171801 mac 171801 bytes_out 0 171801 bytes_in 0 171801 station_ip 37.129.156.58 171801 port 7 171801 unique_id port 171803 username saeed9658 171803 mac 171803 bytes_out 8694 171803 bytes_in 11031 171803 station_ip 5.119.77.159 171803 port 12 171803 unique_id port 171803 remote_ip 10.8.0.154 171804 username mirzaei 171804 kill_reason Another user logged on this global unique id 171804 mac 171804 bytes_out 0 171804 bytes_in 0 171804 station_ip 5.120.58.130 171804 port 3 171804 unique_id port 171804 remote_ip 10.8.0.106 171812 username barzegar 171812 mac 171812 bytes_out 0 171812 bytes_in 0 171812 station_ip 5.119.187.175 171812 port 29 171812 unique_id port 171812 remote_ip 10.8.0.10 171815 username aminvpn 171815 mac 171815 bytes_out 0 171815 bytes_in 0 171815 station_ip 5.119.94.158 171815 port 12 171815 unique_id port 171815 remote_ip 10.8.0.58 171817 username hadibarzegar 171817 kill_reason Another user logged on this global unique id 171817 mac 171817 bytes_out 0 171817 bytes_in 0 171817 station_ip 37.129.156.58 171817 port 7 171817 unique_id port 171818 username tahmasebi 171818 mac 171818 bytes_out 0 171818 bytes_in 0 171818 station_ip 5.119.45.99 171818 port 12 171818 unique_id port 171818 remote_ip 10.8.0.126 171819 username mirzaei 171819 mac 171819 bytes_out 0 171819 bytes_in 0 171819 station_ip 5.120.58.130 171819 port 3 171819 unique_id port 171825 username barzegar 171825 mac 171825 bytes_out 0 171825 bytes_in 0 171825 station_ip 5.119.187.175 171825 port 21 171825 unique_id port 171825 remote_ip 10.8.0.10 171827 username majidsarmast 171827 kill_reason Another user logged on this global unique id 171827 mac 171827 bytes_out 0 171827 bytes_in 0 171827 station_ip 86.57.12.94 171827 port 22 171827 unique_id port 171828 username pourshad 171828 kill_reason Another user logged on this global unique id 171828 mac 171828 bytes_out 0 171828 bytes_in 0 171828 station_ip 5.120.195.96 171828 port 26 171828 unique_id port 171832 username hashtadani4 171832 mac 171832 bytes_out 0 171832 bytes_in 0 171832 station_ip 83.122.178.27 171832 port 26 171832 unique_id port 171832 remote_ip 10.8.0.22 171836 username rahim 171836 mac 171836 bytes_out 0 171836 bytes_in 0 171836 station_ip 5.120.55.192 171836 port 17 171836 unique_id port 171836 remote_ip 10.8.0.134 171837 username rahim 171837 mac 171837 bytes_out 0 171837 bytes_in 0 171837 station_ip 5.120.55.192 171837 port 17 171837 unique_id port 171837 remote_ip 10.8.0.134 171841 username rahim 171841 mac 171841 bytes_out 0 171841 bytes_in 0 171841 station_ip 5.120.55.192 171841 port 17 171841 unique_id port 171841 remote_ip 10.8.0.134 171842 username rahim 171842 mac 171842 bytes_out 0 171842 bytes_in 0 171842 station_ip 5.120.55.192 171842 port 21 171842 unique_id port 171842 remote_ip 10.8.0.134 171844 username hashtadani4 171844 mac 171844 bytes_out 0 171844 bytes_in 0 171844 station_ip 83.122.178.27 171844 port 31 171844 unique_id port 171844 remote_ip 10.8.0.22 171846 username tahmasebi 171846 mac 171846 bytes_out 0 171846 bytes_in 0 171846 station_ip 5.119.45.99 171846 port 3 171846 unique_id port 171851 username rahim 171851 mac 171851 bytes_out 0 171851 bytes_in 0 171851 station_ip 5.120.55.192 171851 port 3 171851 unique_id port 171851 remote_ip 10.8.0.134 171852 username farhad2 171852 mac 171852 bytes_out 0 171852 bytes_in 0 171852 station_ip 5.119.156.82 171852 port 17 171852 unique_id port 171852 remote_ip 10.8.0.146 171865 username majidsarmast 171865 mac 171865 bytes_out 0 171865 bytes_in 0 171865 station_ip 86.57.12.94 171865 port 22 171865 unique_id port 171866 username aminvpn 171866 mac 171866 bytes_out 0 171866 bytes_in 0 171866 station_ip 5.119.94.158 171866 port 17 171866 unique_id port 171866 remote_ip 10.8.0.58 171868 username farhad2 171868 mac 171868 bytes_out 589684 171868 bytes_in 2332337 171868 station_ip 5.119.5.151 171868 port 1 171868 unique_id port 171868 remote_ip 10.8.0.146 171873 username farhad2 171873 mac 171873 bytes_out 0 171873 bytes_in 0 171873 station_ip 5.119.5.151 171873 port 17 171873 unique_id port 171873 remote_ip 10.8.0.146 171874 username farhad2 171874 mac 171874 bytes_out 0 171874 bytes_in 0 171874 station_ip 5.119.5.151 171874 port 17 171874 unique_id port 171874 remote_ip 10.8.0.146 171876 username hashtadani4 171876 mac 171876 bytes_out 0 171876 bytes_in 0 171876 station_ip 83.122.178.27 171876 port 22 171876 unique_id port 171876 remote_ip 10.8.0.22 171877 username farhad2 171877 mac 171877 bytes_out 101804 171877 bytes_in 253049 171877 station_ip 5.119.5.151 171877 port 17 171877 unique_id port 171877 remote_ip 10.8.0.146 171879 username hadibarzegar 171879 kill_reason Another user logged on this global unique id 171879 mac 171879 bytes_out 0 171879 bytes_in 0 171879 station_ip 37.129.156.58 171879 port 7 171879 unique_id port 171881 username mirzaei 171881 kill_reason Another user logged on this global unique id 171881 mac 171881 bytes_out 0 171881 bytes_in 0 171881 station_ip 5.120.58.130 171881 port 12 171881 unique_id port 171884 username mohammadmahdi 171884 mac 171884 bytes_out 3154090 171884 bytes_in 42771152 171884 station_ip 5.119.206.241 171884 port 10 171884 unique_id port 171884 remote_ip 10.8.0.90 171887 username pourshad 171887 kill_reason Another user logged on this global unique id 171887 mac 171887 bytes_out 0 171887 bytes_in 0 171887 station_ip 5.120.195.96 171887 port 3 171887 unique_id port 171887 remote_ip 10.8.0.42 171888 username barzegar 171888 mac 171888 bytes_out 0 171888 bytes_in 0 171888 station_ip 5.119.187.175 171888 port 10 171888 unique_id port 171888 remote_ip 10.8.0.10 171890 username hashtadani4 171890 mac 171890 bytes_out 0 171890 bytes_in 0 171890 station_ip 83.122.178.27 171890 port 10 171890 unique_id port 171890 remote_ip 10.8.0.22 171891 username aminvpn 171891 mac 171849 remote_ip 10.8.0.146 171854 username hadibarzegar 171854 kill_reason Another user logged on this global unique id 171854 mac 171854 bytes_out 0 171854 bytes_in 0 171854 station_ip 37.129.156.58 171854 port 7 171854 unique_id port 171855 username aminvpn 171855 mac 171855 bytes_out 0 171855 bytes_in 0 171855 station_ip 5.119.94.158 171855 port 3 171855 unique_id port 171855 remote_ip 10.8.0.58 171856 username hashtadani4 171856 mac 171856 bytes_out 0 171856 bytes_in 0 171856 station_ip 83.122.178.27 171856 port 3 171856 unique_id port 171856 remote_ip 10.8.0.22 171859 username farhad2 171859 mac 171859 bytes_out 295417 171859 bytes_in 967701 171859 station_ip 5.119.156.82 171859 port 17 171859 unique_id port 171859 remote_ip 10.8.0.146 171861 username hadibarzegar 171861 kill_reason Another user logged on this global unique id 171861 mac 171861 bytes_out 0 171861 bytes_in 0 171861 station_ip 37.129.156.58 171861 port 7 171861 unique_id port 171863 username hashtadani4 171863 mac 171863 bytes_out 0 171863 bytes_in 0 171863 station_ip 83.122.178.27 171863 port 17 171863 unique_id port 171863 remote_ip 10.8.0.22 171867 username aminvpn 171867 mac 171867 bytes_out 0 171867 bytes_in 0 171867 station_ip 5.119.94.158 171867 port 17 171867 unique_id port 171867 remote_ip 10.8.0.58 171870 username hadibarzegar 171870 kill_reason Another user logged on this global unique id 171870 mac 171870 bytes_out 0 171870 bytes_in 0 171870 station_ip 37.129.156.58 171870 port 7 171870 unique_id port 171872 username kordestani 171872 mac 171872 bytes_out 2182115 171872 bytes_in 26550520 171872 station_ip 151.235.77.136 171872 port 29 171872 unique_id port 171872 remote_ip 10.8.0.130 171875 username barzegar 171875 mac 171875 bytes_out 0 171875 bytes_in 0 171875 station_ip 5.119.187.175 171875 port 21 171875 unique_id port 171875 remote_ip 10.8.0.10 171880 username aminvpn 171880 mac 171880 bytes_out 0 171880 bytes_in 0 171880 station_ip 5.119.94.158 171880 port 21 171880 unique_id port 171880 remote_ip 10.8.0.58 171882 username farhad2 171882 mac 171882 bytes_out 166760 171882 bytes_in 524678 171882 station_ip 5.119.5.151 171882 port 17 171882 unique_id port 171882 remote_ip 10.8.0.146 171885 username hashtadani4 171885 mac 171885 bytes_out 0 171885 bytes_in 0 171885 station_ip 83.122.178.27 171885 port 10 171885 unique_id port 171885 remote_ip 10.8.0.22 171889 username hadibarzegar 171889 kill_reason Another user logged on this global unique id 171889 mac 171889 bytes_out 0 171889 bytes_in 0 171889 station_ip 37.129.156.58 171889 port 7 171889 unique_id port 171893 username mostafa_es78 171893 kill_reason Another user logged on this global unique id 171893 mac 171893 bytes_out 0 171893 bytes_in 0 171893 station_ip 37.129.226.89 171893 port 28 171893 unique_id port 171893 remote_ip 10.8.0.34 171898 username barzegar 171898 mac 171898 bytes_out 0 171898 bytes_in 0 171898 station_ip 5.119.187.175 171898 port 10 171898 unique_id port 171898 remote_ip 10.8.0.10 171899 username hashtadani4 171899 mac 171899 bytes_out 0 171899 bytes_in 0 171899 station_ip 83.122.178.27 171899 port 10 171899 unique_id port 171899 remote_ip 10.8.0.22 171906 username hadibarzegar 171906 kill_reason Another user logged on this global unique id 171906 mac 171906 bytes_out 0 171906 bytes_in 0 171906 station_ip 37.129.156.58 171906 port 7 171906 unique_id port 171908 username milan 171908 kill_reason Another user logged on this global unique id 171908 mac 171908 bytes_out 0 171908 bytes_in 0 171850 bytes_in 0 171850 station_ip 5.120.55.192 171850 port 3 171850 unique_id port 171850 remote_ip 10.8.0.134 171853 username rahim 171853 mac 171853 bytes_out 0 171853 bytes_in 0 171853 station_ip 5.120.55.192 171853 port 3 171853 unique_id port 171853 remote_ip 10.8.0.134 171857 username mirzaei 171857 kill_reason Another user logged on this global unique id 171857 mac 171857 bytes_out 0 171857 bytes_in 0 171857 station_ip 5.120.58.130 171857 port 12 171857 unique_id port 171857 remote_ip 10.8.0.106 171858 username mohammadmahdi 171858 mac 171858 bytes_out 0 171858 bytes_in 0 171858 station_ip 5.119.206.241 171858 port 10 171858 unique_id port 171860 username fezealinaghi 171860 mac 171860 bytes_out 0 171860 bytes_in 0 171860 station_ip 113.203.106.173 171860 port 1 171860 unique_id port 171862 username barzegar 171862 mac 171862 bytes_out 0 171862 bytes_in 0 171862 station_ip 5.119.187.175 171862 port 10 171862 unique_id port 171862 remote_ip 10.8.0.10 171864 username farhad2 171864 mac 171864 bytes_out 661591 171864 bytes_in 5894530 171864 station_ip 5.119.5.151 171864 port 1 171864 unique_id port 171864 remote_ip 10.8.0.146 171869 username hashtadani4 171869 mac 171869 bytes_out 2326 171869 bytes_in 5025 171869 station_ip 83.122.178.27 171869 port 17 171869 unique_id port 171869 remote_ip 10.8.0.22 171871 username farhad2 171871 mac 171871 bytes_out 0 171871 bytes_in 0 171871 station_ip 5.119.5.151 171871 port 1 171871 unique_id port 171871 remote_ip 10.8.0.146 171878 username hashtadani4 171878 mac 171878 bytes_out 2005 171878 bytes_in 4274 171878 station_ip 83.122.178.27 171878 port 21 171878 unique_id port 171878 remote_ip 10.8.0.22 171883 username barzegar 171883 mac 171883 bytes_out 0 171883 bytes_in 0 171883 station_ip 5.119.187.175 171883 port 17 171883 unique_id port 171883 remote_ip 10.8.0.10 171886 username milan 171886 kill_reason Another user logged on this global unique id 171886 mac 171886 bytes_out 0 171886 bytes_in 0 171886 station_ip 5.119.173.190 171886 port 6 171886 unique_id port 171894 username milan 171894 kill_reason Another user logged on this global unique id 171894 mac 171894 bytes_out 0 171894 bytes_in 0 171894 station_ip 5.119.173.190 171894 port 6 171894 unique_id port 171897 username mostafa_es78 171897 mac 171897 bytes_out 0 171897 bytes_in 0 171897 station_ip 37.129.226.89 171897 port 28 171897 unique_id port 171900 username mirzaei 171900 kill_reason Another user logged on this global unique id 171900 mac 171900 bytes_out 0 171900 bytes_in 0 171900 station_ip 5.120.58.130 171900 port 12 171900 unique_id port 171903 username hashtadani4 171903 mac 171903 bytes_out 0 171903 bytes_in 0 171903 station_ip 83.122.178.27 171903 port 10 171903 unique_id port 171903 remote_ip 10.8.0.22 171907 username aminvpn 171907 unique_id port 171907 terminate_cause Lost-Carrier 171907 bytes_out 6662030 171907 bytes_in 27617337 171907 station_ip 93.110.36.239 171907 port 15728781 171907 nas_port_type Virtual 171907 remote_ip 5.5.5.234 171911 username aminvpn 171911 mac 171911 bytes_out 0 171911 bytes_in 0 171911 station_ip 5.119.94.158 171911 port 21 171911 unique_id port 171911 remote_ip 10.8.0.58 171915 username farhad2 171915 mac 171915 bytes_out 0 171915 bytes_in 0 171915 station_ip 5.119.5.151 171915 port 7 171915 unique_id port 171915 remote_ip 10.8.0.146 171916 username milan 171916 kill_reason Another user logged on this global unique id 171916 mac 171916 bytes_out 0 171916 bytes_in 0 171891 bytes_out 0 171891 bytes_in 0 171891 station_ip 5.119.94.158 171891 port 10 171891 unique_id port 171891 remote_ip 10.8.0.58 171892 username mirzaei 171892 kill_reason Another user logged on this global unique id 171892 mac 171892 bytes_out 0 171892 bytes_in 0 171892 station_ip 5.120.58.130 171892 port 12 171892 unique_id port 171895 username hadibarzegar 171895 kill_reason Another user logged on this global unique id 171895 mac 171895 bytes_out 0 171895 bytes_in 0 171895 station_ip 37.129.156.58 171895 port 7 171895 unique_id port 171896 username hashtadani4 171896 mac 171896 bytes_out 0 171896 bytes_in 0 171896 station_ip 83.122.178.27 171896 port 10 171896 unique_id port 171896 remote_ip 10.8.0.22 171901 username mahdiyehalizadeh 171901 mac 171901 bytes_out 1128007 171901 bytes_in 9704831 171901 station_ip 5.120.12.238 171901 port 1 171901 unique_id port 171901 remote_ip 10.8.0.150 171902 username aminvpn 171902 kill_reason Maximum check online fails reached 171902 mac 171902 bytes_out 0 171902 bytes_in 0 171902 station_ip 5.119.94.158 171902 port 1 171902 unique_id port 171904 username hashtadani4 171904 mac 171904 bytes_out 0 171904 bytes_in 0 171904 station_ip 83.122.178.27 171904 port 10 171904 unique_id port 171904 remote_ip 10.8.0.22 171905 username farhad2 171905 kill_reason Another user logged on this global unique id 171905 mac 171905 bytes_out 0 171905 bytes_in 0 171905 station_ip 5.119.5.151 171905 port 17 171905 unique_id port 171905 remote_ip 10.8.0.146 171909 username barzegar 171909 mac 171909 bytes_out 0 171909 bytes_in 0 171909 station_ip 5.119.187.175 171909 port 21 171909 unique_id port 171909 remote_ip 10.8.0.10 171910 username hashtadani4 171910 mac 171910 bytes_out 0 171910 bytes_in 0 171910 station_ip 83.122.178.27 171910 port 21 171910 unique_id port 171910 remote_ip 10.8.0.22 171912 username aminvpn 171912 mac 171912 bytes_out 0 171912 bytes_in 0 171912 station_ip 5.119.94.158 171912 port 21 171912 unique_id port 171912 remote_ip 10.8.0.58 171914 username farhad2 171914 mac 171914 bytes_out 0 171914 bytes_in 0 171914 station_ip 5.119.5.151 171914 port 17 171914 unique_id port 171918 username yarmohamadi 171918 kill_reason Another user logged on this global unique id 171918 mac 171918 bytes_out 0 171918 bytes_in 0 171918 station_ip 5.120.18.129 171918 port 10 171918 unique_id port 171918 remote_ip 10.8.0.6 171919 username mirzaei 171919 kill_reason Another user logged on this global unique id 171919 mac 171919 bytes_out 0 171919 bytes_in 0 171919 station_ip 5.120.58.130 171919 port 12 171919 unique_id port 171923 username aminvpn 171923 mac 171923 bytes_out 0 171923 bytes_in 0 171923 station_ip 5.119.94.158 171923 port 7 171923 unique_id port 171923 remote_ip 10.8.0.58 171925 username aminvpn 171925 mac 171925 bytes_out 0 171925 bytes_in 0 171925 station_ip 5.119.94.158 171925 port 7 171925 unique_id port 171925 remote_ip 10.8.0.58 171929 username hashtadani4 171929 mac 171929 bytes_out 0 171929 bytes_in 0 171929 station_ip 83.122.178.27 171929 port 17 171929 unique_id port 171929 remote_ip 10.8.0.22 171932 username hashtadani4 171932 mac 171932 bytes_out 0 171932 bytes_in 0 171932 station_ip 83.122.178.27 171932 port 17 171932 unique_id port 171932 remote_ip 10.8.0.22 171946 username hashtadani4 171946 mac 171946 bytes_out 0 171946 bytes_in 0 171946 station_ip 83.122.178.27 171946 port 21 171946 unique_id port 171946 remote_ip 10.8.0.22 171948 username hashtadani4 171948 mac 171908 station_ip 5.119.173.190 171908 port 6 171908 unique_id port 171913 username hadibarzegar 171913 mac 171913 bytes_out 0 171913 bytes_in 0 171913 station_ip 37.129.156.58 171913 port 7 171913 unique_id port 171920 username farhad2 171920 mac 171920 bytes_out 268325 171920 bytes_in 1521432 171920 station_ip 5.119.5.151 171920 port 7 171920 unique_id port 171920 remote_ip 10.8.0.146 171921 username barzegar 171921 mac 171921 bytes_out 0 171921 bytes_in 0 171921 station_ip 5.119.187.175 171921 port 7 171921 unique_id port 171921 remote_ip 10.8.0.10 171924 username hashtadani4 171924 mac 171924 bytes_out 0 171924 bytes_in 0 171924 station_ip 83.122.178.27 171924 port 7 171924 unique_id port 171924 remote_ip 10.8.0.22 171926 username yarmohamadi 171926 kill_reason Another user logged on this global unique id 171926 mac 171926 bytes_out 0 171926 bytes_in 0 171926 station_ip 5.120.18.129 171926 port 10 171926 unique_id port 171928 username barzegar 171928 mac 171928 bytes_out 0 171928 bytes_in 0 171928 station_ip 5.119.187.175 171928 port 17 171928 unique_id port 171928 remote_ip 10.8.0.10 171930 username yarmohamadi 171930 kill_reason Another user logged on this global unique id 171930 mac 171930 bytes_out 0 171930 bytes_in 0 171930 station_ip 5.120.18.129 171930 port 10 171930 unique_id port 171933 username aminvpn 171933 mac 171933 bytes_out 0 171933 bytes_in 0 171933 station_ip 5.119.94.158 171933 port 17 171933 unique_id port 171933 remote_ip 10.8.0.58 171935 username hashtadani4 171935 mac 171935 bytes_out 0 171935 bytes_in 0 171935 station_ip 83.122.178.27 171935 port 17 171935 unique_id port 171935 remote_ip 10.8.0.22 171938 username farhad2 171938 mac 171938 bytes_out 1784353 171938 bytes_in 9827306 171938 station_ip 5.119.5.151 171938 port 7 171938 unique_id port 171938 remote_ip 10.8.0.146 171939 username barzegar 171939 mac 171939 bytes_out 0 171939 bytes_in 0 171939 station_ip 5.119.187.175 171939 port 7 171939 unique_id port 171939 remote_ip 10.8.0.10 171940 username hashtadani4 171940 mac 171940 bytes_out 0 171940 bytes_in 0 171940 station_ip 83.122.178.27 171940 port 7 171940 unique_id port 171940 remote_ip 10.8.0.22 171942 username farhad2 171942 mac 171942 bytes_out 1093911 171942 bytes_in 12418259 171942 station_ip 5.119.5.151 171942 port 17 171942 unique_id port 171942 remote_ip 10.8.0.146 171943 username yarmohamadi 171943 kill_reason Another user logged on this global unique id 171943 mac 171943 bytes_out 0 171943 bytes_in 0 171943 station_ip 5.120.18.129 171943 port 10 171943 unique_id port 171944 username hashtadani4 171944 mac 171944 bytes_out 0 171944 bytes_in 0 171944 station_ip 83.122.178.27 171944 port 7 171944 unique_id port 171944 remote_ip 10.8.0.22 171945 username hashtadani4 171945 mac 171945 bytes_out 0 171945 bytes_in 0 171945 station_ip 83.122.178.27 171945 port 17 171945 unique_id port 171945 remote_ip 10.8.0.22 171949 username hashtadani4 171949 mac 171949 bytes_out 0 171949 bytes_in 0 171949 station_ip 83.122.178.27 171949 port 17 171949 unique_id port 171949 remote_ip 10.8.0.22 171950 username hashtadani4 171950 mac 171950 bytes_out 0 171950 bytes_in 0 171950 station_ip 83.122.178.27 171950 port 17 171950 unique_id port 171950 remote_ip 10.8.0.22 171952 username hashtadani4 171952 mac 171952 bytes_out 0 171952 bytes_in 0 171952 station_ip 83.122.178.27 171952 port 21 171952 unique_id port 171952 remote_ip 10.8.0.22 171916 station_ip 5.119.173.190 171916 port 6 171916 unique_id port 171917 username hashtadani4 171917 mac 171917 bytes_out 0 171917 bytes_in 0 171917 station_ip 83.122.178.27 171917 port 17 171917 unique_id port 171917 remote_ip 10.8.0.22 171922 username hashtadani4 171922 mac 171922 bytes_out 0 171922 bytes_in 0 171922 station_ip 83.122.178.27 171922 port 7 171922 unique_id port 171922 remote_ip 10.8.0.22 171927 username milan 171927 kill_reason Another user logged on this global unique id 171927 mac 171927 bytes_out 0 171927 bytes_in 0 171927 station_ip 5.119.173.190 171927 port 6 171927 unique_id port 171931 username yarmohamadi 171931 kill_reason Another user logged on this global unique id 171931 mac 171931 bytes_out 0 171931 bytes_in 0 171931 station_ip 5.120.18.129 171931 port 10 171931 unique_id port 171934 username yarmohamadi 171934 kill_reason Another user logged on this global unique id 171934 mac 171934 bytes_out 0 171934 bytes_in 0 171934 station_ip 5.120.18.129 171934 port 10 171934 unique_id port 171936 username hashtadani4 171936 mac 171936 bytes_out 0 171936 bytes_in 0 171936 station_ip 83.122.178.27 171936 port 17 171936 unique_id port 171936 remote_ip 10.8.0.22 171937 username yarmohamadi 171937 kill_reason Another user logged on this global unique id 171937 mac 171937 bytes_out 0 171937 bytes_in 0 171937 station_ip 5.120.18.129 171937 port 10 171937 unique_id port 171941 username hashtadani4 171941 mac 171941 bytes_out 0 171941 bytes_in 0 171941 station_ip 83.122.178.27 171941 port 7 171941 unique_id port 171941 remote_ip 10.8.0.22 171947 username aminvpn 171947 mac 171947 bytes_out 0 171947 bytes_in 0 171947 station_ip 5.119.94.158 171947 port 17 171947 unique_id port 171947 remote_ip 10.8.0.58 171951 username yarmohamadi 171951 kill_reason Another user logged on this global unique id 171951 mac 171951 bytes_out 0 171951 bytes_in 0 171951 station_ip 5.120.18.129 171951 port 10 171951 unique_id port 171956 username hashtadani4 171956 mac 171956 bytes_out 0 171956 bytes_in 0 171956 station_ip 83.122.178.27 171956 port 17 171956 unique_id port 171956 remote_ip 10.8.0.22 171960 username sabaghnezhad 171960 mac 171960 bytes_out 538462 171960 bytes_in 708507 171960 station_ip 37.129.251.132 171960 port 23 171960 unique_id port 171960 remote_ip 10.8.0.66 171963 username aminvpn 171963 mac 171963 bytes_out 0 171963 bytes_in 0 171963 station_ip 5.119.94.158 171963 port 7 171963 unique_id port 171963 remote_ip 10.8.0.58 171966 username hashtadani4 171966 mac 171966 bytes_out 0 171966 bytes_in 0 171966 station_ip 83.122.178.27 171966 port 10 171966 unique_id port 171966 remote_ip 10.8.0.22 171968 username hashtadani4 171968 mac 171968 bytes_out 0 171968 bytes_in 0 171968 station_ip 83.122.178.27 171968 port 10 171968 unique_id port 171968 remote_ip 10.8.0.22 171973 username yarmohamadi 171973 kill_reason Another user logged on this global unique id 171973 mac 171973 bytes_out 0 171973 bytes_in 0 171973 station_ip 5.120.18.129 171973 port 7 171973 unique_id port 171975 username mirzaei 171975 kill_reason Another user logged on this global unique id 171975 mac 171975 bytes_out 0 171975 bytes_in 0 171975 station_ip 5.120.58.130 171975 port 12 171975 unique_id port 171979 username hashtadani4 171979 mac 171979 bytes_out 0 171979 bytes_in 0 171979 station_ip 83.122.178.27 171979 port 10 171979 unique_id port 171979 remote_ip 10.8.0.22 171980 username hashtadani4 171980 mac 171980 bytes_out 0 171980 bytes_in 0 171980 station_ip 83.122.178.27 171948 bytes_out 0 171948 bytes_in 0 171948 station_ip 83.122.178.27 171948 port 17 171948 unique_id port 171948 remote_ip 10.8.0.22 171954 username yarmohamadi 171954 kill_reason Another user logged on this global unique id 171954 mac 171954 bytes_out 0 171954 bytes_in 0 171954 station_ip 5.120.18.129 171954 port 10 171954 unique_id port 171957 username farhad2 171957 mac 171957 bytes_out 1351400 171957 bytes_in 9416719 171957 station_ip 5.119.5.151 171957 port 7 171957 unique_id port 171957 remote_ip 10.8.0.146 171958 username hashtadani4 171958 mac 171958 bytes_out 0 171958 bytes_in 0 171958 station_ip 83.122.178.27 171958 port 7 171958 unique_id port 171958 remote_ip 10.8.0.22 171959 username hashtadani4 171959 mac 171959 bytes_out 0 171959 bytes_in 0 171959 station_ip 83.122.178.27 171959 port 7 171959 unique_id port 171959 remote_ip 10.8.0.22 171961 username hashtadani4 171961 mac 171961 bytes_out 0 171961 bytes_in 0 171961 station_ip 83.122.178.27 171961 port 7 171961 unique_id port 171961 remote_ip 10.8.0.22 171965 username barzegar 171965 mac 171965 bytes_out 0 171965 bytes_in 0 171965 station_ip 5.119.187.175 171965 port 10 171965 unique_id port 171965 remote_ip 10.8.0.10 171967 username hashtadani4 171967 mac 171967 bytes_out 0 171967 bytes_in 0 171967 station_ip 83.122.178.27 171967 port 10 171967 unique_id port 171967 remote_ip 10.8.0.22 171970 username hashtadani4 171970 mac 171970 bytes_out 0 171970 bytes_in 0 171970 station_ip 83.122.178.27 171970 port 10 171970 unique_id port 171970 remote_ip 10.8.0.22 171971 username aminvpn 171971 mac 171971 bytes_out 0 171971 bytes_in 0 171971 station_ip 5.119.94.158 171971 port 10 171971 unique_id port 171971 remote_ip 10.8.0.58 171972 username hashtadani4 171972 mac 171972 bytes_out 0 171972 bytes_in 0 171972 station_ip 83.122.178.27 171972 port 10 171972 unique_id port 171972 remote_ip 10.8.0.22 171976 username barzegar 171976 mac 171976 bytes_out 0 171976 bytes_in 0 171976 station_ip 5.119.187.175 171976 port 10 171976 unique_id port 171976 remote_ip 10.8.0.10 171978 username yarmohamadi 171978 kill_reason Another user logged on this global unique id 171978 mac 171978 bytes_out 0 171978 bytes_in 0 171978 station_ip 5.120.18.129 171978 port 7 171978 unique_id port 171981 username hashtadani4 171981 mac 171981 bytes_out 0 171981 bytes_in 0 171981 station_ip 83.122.178.27 171981 port 10 171981 unique_id port 171981 remote_ip 10.8.0.22 171990 username yarmohamadi 171990 kill_reason Another user logged on this global unique id 171990 mac 171990 bytes_out 0 171990 bytes_in 0 171990 station_ip 5.120.18.129 171990 port 7 171990 unique_id port 171991 username hashtadani4 171991 mac 171991 bytes_out 0 171991 bytes_in 0 171991 station_ip 83.122.178.27 171991 port 10 171991 unique_id port 171991 remote_ip 10.8.0.22 171993 username yarmohamadi 171993 kill_reason Another user logged on this global unique id 171993 mac 171993 bytes_out 0 171993 bytes_in 0 171993 station_ip 5.120.18.129 171993 port 7 171993 unique_id port 171995 username hashtadani4 171995 mac 171995 bytes_out 0 171995 bytes_in 0 171995 station_ip 83.122.178.27 171995 port 10 171995 unique_id port 171995 remote_ip 10.8.0.22 171999 username hashtadani4 171999 mac 171999 bytes_out 0 171999 bytes_in 0 171999 station_ip 83.122.178.27 171999 port 10 171999 unique_id port 171999 remote_ip 10.8.0.22 172000 username barzegar 172000 mac 172000 bytes_out 0 172000 bytes_in 0 171953 username barzegar 171953 mac 171953 bytes_out 0 171953 bytes_in 0 171953 station_ip 5.119.187.175 171953 port 21 171953 unique_id port 171953 remote_ip 10.8.0.10 171955 username fezealinaghi 171955 mac 171955 bytes_out 188115 171955 bytes_in 1783619 171955 station_ip 83.123.252.243 171955 port 17 171955 unique_id port 171955 remote_ip 10.8.0.202 171962 username hashtadani4 171962 mac 171962 bytes_out 0 171962 bytes_in 0 171962 station_ip 83.122.178.27 171962 port 7 171962 unique_id port 171962 remote_ip 10.8.0.22 171964 username yarmohamadi 171964 mac 171964 bytes_out 0 171964 bytes_in 0 171964 station_ip 5.120.18.129 171964 port 10 171964 unique_id port 171969 username yarmohamadi 171969 kill_reason Another user logged on this global unique id 171969 mac 171969 bytes_out 0 171969 bytes_in 0 171969 station_ip 5.120.18.129 171969 port 7 171969 unique_id port 171969 remote_ip 10.8.0.6 171974 username hashtadani4 171974 mac 171974 bytes_out 0 171974 bytes_in 0 171974 station_ip 83.122.178.27 171974 port 17 171974 unique_id port 171974 remote_ip 10.8.0.22 171977 username hashtadani4 171977 mac 171977 bytes_out 0 171977 bytes_in 0 171977 station_ip 83.122.178.27 171977 port 10 171977 unique_id port 171977 remote_ip 10.8.0.22 171982 username hashtadani4 171982 mac 171982 bytes_out 0 171982 bytes_in 0 171982 station_ip 83.122.178.27 171982 port 10 171982 unique_id port 171982 remote_ip 10.8.0.22 171989 username hashtadani4 171989 mac 171989 bytes_out 0 171989 bytes_in 0 171989 station_ip 83.122.178.27 171989 port 10 171989 unique_id port 171989 remote_ip 10.8.0.22 171994 username barzegar 171994 mac 171994 bytes_out 0 171994 bytes_in 0 171994 station_ip 5.119.187.175 171994 port 10 171994 unique_id port 171994 remote_ip 10.8.0.10 171996 username hashtadani4 171996 mac 171996 bytes_out 0 171996 bytes_in 0 171996 station_ip 83.122.178.27 171996 port 10 171996 unique_id port 171996 remote_ip 10.8.0.22 171997 username aminvpn 171997 mac 171997 bytes_out 0 171997 bytes_in 0 171997 station_ip 5.119.94.158 171997 port 10 171997 unique_id port 171997 remote_ip 10.8.0.58 172001 username hashtadani4 172001 mac 172001 bytes_out 0 172001 bytes_in 0 172001 station_ip 83.122.178.27 172001 port 10 172001 unique_id port 172001 remote_ip 10.8.0.22 172006 username hashtadani4 172006 mac 172006 bytes_out 0 172006 bytes_in 0 172006 station_ip 83.122.178.27 172006 port 10 172006 unique_id port 172006 remote_ip 10.8.0.22 172007 username hashtadani4 172007 mac 172007 bytes_out 0 172007 bytes_in 0 172007 station_ip 83.122.178.27 172007 port 10 172007 unique_id port 172007 remote_ip 10.8.0.22 172010 username hashtadani4 172010 mac 172010 bytes_out 0 172010 bytes_in 0 172010 station_ip 83.122.178.27 172010 port 10 172010 unique_id port 172010 remote_ip 10.8.0.22 172013 username hashtadani4 172013 mac 172013 bytes_out 0 172013 bytes_in 0 172013 station_ip 83.122.178.27 172013 port 17 172013 unique_id port 172013 remote_ip 10.8.0.22 172018 username hashtadani4 172018 mac 172018 bytes_out 0 172018 bytes_in 0 172018 station_ip 83.122.178.27 172018 port 17 172018 unique_id port 172018 remote_ip 10.8.0.22 172020 username hashtadani4 172020 mac 172020 bytes_out 0 172020 bytes_in 0 172020 station_ip 83.122.178.27 172020 port 17 172020 unique_id port 172020 remote_ip 10.8.0.22 172024 username yarmohamadi 172024 kill_reason Another user logged on this global unique id 172024 mac 171980 port 10 171980 unique_id port 171980 remote_ip 10.8.0.22 171983 username hashtadani4 171983 mac 171983 bytes_out 0 171983 bytes_in 0 171983 station_ip 83.122.178.27 171983 port 10 171983 unique_id port 171983 remote_ip 10.8.0.22 171984 username hashtadani4 171984 mac 171984 bytes_out 0 171984 bytes_in 0 171984 station_ip 83.122.178.27 171984 port 10 171984 unique_id port 171984 remote_ip 10.8.0.22 171985 username aminvpn 171985 mac 171985 bytes_out 0 171985 bytes_in 0 171985 station_ip 5.119.94.158 171985 port 10 171985 unique_id port 171985 remote_ip 10.8.0.58 171986 username mirzaei 171986 kill_reason Another user logged on this global unique id 171986 mac 171986 bytes_out 0 171986 bytes_in 0 171986 station_ip 5.120.58.130 171986 port 12 171986 unique_id port 171987 username barzegar 171987 mac 171987 bytes_out 0 171987 bytes_in 0 171987 station_ip 5.119.187.175 171987 port 10 171987 unique_id port 171987 remote_ip 10.8.0.10 171988 username yarmohamadi 171988 kill_reason Another user logged on this global unique id 171988 mac 171988 bytes_out 0 171988 bytes_in 0 171988 station_ip 5.120.18.129 171988 port 7 171988 unique_id port 171992 username aminvpn 171992 mac 171992 bytes_out 0 171992 bytes_in 0 171992 station_ip 5.119.94.158 171992 port 10 171992 unique_id port 171992 remote_ip 10.8.0.58 171998 username hashtadani4 171998 mac 171998 bytes_out 0 171998 bytes_in 0 171998 station_ip 83.122.178.27 171998 port 10 171998 unique_id port 171998 remote_ip 10.8.0.22 172002 username hashtadani4 172002 mac 172002 bytes_out 0 172002 bytes_in 0 172002 station_ip 83.122.178.27 172002 port 10 172002 unique_id port 172002 remote_ip 10.8.0.22 172008 username aminvpn 172008 mac 172008 bytes_out 0 172008 bytes_in 0 172008 station_ip 5.119.94.158 172008 port 10 172008 unique_id port 172008 remote_ip 10.8.0.58 172012 username hashtadani4 172012 mac 172012 bytes_out 0 172012 bytes_in 0 172012 station_ip 83.122.178.27 172012 port 17 172012 unique_id port 172012 remote_ip 10.8.0.22 172014 username hashtadani4 172014 mac 172014 bytes_out 0 172014 bytes_in 0 172014 station_ip 83.122.178.27 172014 port 17 172014 unique_id port 172014 remote_ip 10.8.0.22 172015 username hashtadani4 172015 mac 172015 bytes_out 0 172015 bytes_in 0 172015 station_ip 83.122.178.27 172015 port 17 172015 unique_id port 172015 remote_ip 10.8.0.22 172017 username yarmohamadi 172017 kill_reason Another user logged on this global unique id 172017 mac 172017 bytes_out 0 172017 bytes_in 0 172017 station_ip 5.120.18.129 172017 port 7 172017 unique_id port 172019 username barzegar 172019 mac 172019 bytes_out 0 172019 bytes_in 0 172019 station_ip 5.119.187.175 172019 port 17 172019 unique_id port 172019 remote_ip 10.8.0.10 172021 username hashtadani4 172021 mac 172021 bytes_out 0 172021 bytes_in 0 172021 station_ip 83.122.178.27 172021 port 17 172021 unique_id port 172021 remote_ip 10.8.0.22 172022 username hashtadani4 172022 mac 172022 bytes_out 0 172022 bytes_in 0 172022 station_ip 83.122.178.27 172022 port 17 172022 unique_id port 172022 remote_ip 10.8.0.22 172029 username hashtadani4 172029 mac 172029 bytes_out 0 172029 bytes_in 0 172029 station_ip 83.122.178.27 172029 port 17 172029 unique_id port 172029 remote_ip 10.8.0.22 172031 username hashtadani4 172031 mac 172031 bytes_out 0 172031 bytes_in 0 172031 station_ip 83.122.178.27 172031 port 17 172031 unique_id port 172031 remote_ip 10.8.0.22 172000 station_ip 5.119.187.175 172000 port 10 172000 unique_id port 172000 remote_ip 10.8.0.10 172003 username hashtadani4 172003 mac 172003 bytes_out 0 172003 bytes_in 0 172003 station_ip 83.122.178.27 172003 port 10 172003 unique_id port 172003 remote_ip 10.8.0.22 172004 username hashtadani4 172004 mac 172004 bytes_out 0 172004 bytes_in 0 172004 station_ip 83.122.178.27 172004 port 10 172004 unique_id port 172004 remote_ip 10.8.0.22 172005 username hashtadani4 172005 mac 172005 bytes_out 0 172005 bytes_in 0 172005 station_ip 83.122.178.27 172005 port 10 172005 unique_id port 172005 remote_ip 10.8.0.22 172009 username hashtadani4 172009 mac 172009 bytes_out 0 172009 bytes_in 0 172009 station_ip 83.122.178.27 172009 port 10 172009 unique_id port 172009 remote_ip 10.8.0.22 172011 username barzegar 172011 mac 172011 bytes_out 0 172011 bytes_in 0 172011 station_ip 5.119.187.175 172011 port 17 172011 unique_id port 172011 remote_ip 10.8.0.10 172016 username aminvpn 172016 mac 172016 bytes_out 0 172016 bytes_in 0 172016 station_ip 5.119.94.158 172016 port 17 172016 unique_id port 172016 remote_ip 10.8.0.58 172023 username hashtadani4 172023 mac 172023 bytes_out 0 172023 bytes_in 0 172023 station_ip 83.122.178.27 172023 port 17 172023 unique_id port 172023 remote_ip 10.8.0.22 172026 username hashtadani4 172026 mac 172026 bytes_out 0 172026 bytes_in 0 172026 station_ip 83.122.178.27 172026 port 17 172026 unique_id port 172026 remote_ip 10.8.0.22 172027 username barzegar 172027 mac 172027 bytes_out 0 172027 bytes_in 0 172027 station_ip 5.119.187.175 172027 port 17 172027 unique_id port 172027 remote_ip 10.8.0.10 172028 username hashtadani4 172028 mac 172028 bytes_out 0 172028 bytes_in 0 172028 station_ip 83.122.178.27 172028 port 17 172028 unique_id port 172028 remote_ip 10.8.0.22 172030 username hashtadani4 172030 mac 172030 bytes_out 0 172030 bytes_in 0 172030 station_ip 83.122.178.27 172030 port 17 172030 unique_id port 172030 remote_ip 10.8.0.22 172032 username hashtadani4 172032 mac 172032 bytes_out 0 172032 bytes_in 0 172032 station_ip 83.122.178.27 172032 port 17 172032 unique_id port 172032 remote_ip 10.8.0.22 172033 username aminvpn 172033 mac 172033 bytes_out 0 172033 bytes_in 0 172033 station_ip 5.119.94.158 172033 port 17 172033 unique_id port 172033 remote_ip 10.8.0.58 172034 username aminvpn 172034 mac 172034 bytes_out 0 172034 bytes_in 0 172034 station_ip 5.119.94.158 172034 port 17 172034 unique_id port 172034 remote_ip 10.8.0.58 172036 username hashtadani4 172036 mac 172036 bytes_out 0 172036 bytes_in 0 172036 station_ip 83.122.178.27 172036 port 21 172036 unique_id port 172036 remote_ip 10.8.0.22 172039 username mansour 172039 mac 172039 bytes_out 1202591 172039 bytes_in 18946856 172039 station_ip 5.202.17.228 172039 port 17 172039 unique_id port 172039 remote_ip 10.8.0.206 172043 username aminvpn 172043 mac 172043 bytes_out 0 172043 bytes_in 0 172043 station_ip 5.119.94.158 172043 port 7 172043 unique_id port 172043 remote_ip 10.8.0.58 172044 username hashtadani4 172044 mac 172044 bytes_out 0 172044 bytes_in 0 172044 station_ip 83.122.178.27 172044 port 7 172044 unique_id port 172044 remote_ip 10.8.0.22 172046 username hashtadani4 172046 mac 172046 bytes_out 0 172046 bytes_in 0 172046 station_ip 83.122.178.27 172046 port 7 172046 unique_id port 172046 remote_ip 10.8.0.22 172048 username hashtadani4 172024 bytes_out 0 172024 bytes_in 0 172024 station_ip 5.120.18.129 172024 port 7 172024 unique_id port 172025 username aminvpn 172025 mac 172025 bytes_out 0 172025 bytes_in 0 172025 station_ip 5.119.94.158 172025 port 17 172025 unique_id port 172025 remote_ip 10.8.0.58 172037 username barzegar 172037 mac 172037 bytes_out 0 172037 bytes_in 0 172037 station_ip 5.119.187.175 172037 port 22 172037 unique_id port 172037 remote_ip 10.8.0.10 172040 username hashtadani4 172040 mac 172040 bytes_out 0 172040 bytes_in 0 172040 station_ip 83.122.178.27 172040 port 17 172040 unique_id port 172040 remote_ip 10.8.0.22 172053 username hashtadani4 172053 mac 172053 bytes_out 0 172053 bytes_in 0 172053 station_ip 83.122.178.27 172053 port 7 172053 unique_id port 172053 remote_ip 10.8.0.22 172054 username aminvpn 172054 mac 172054 bytes_out 0 172054 bytes_in 0 172054 station_ip 5.119.94.158 172054 port 7 172054 unique_id port 172054 remote_ip 10.8.0.58 172057 username hashtadani4 172057 mac 172057 bytes_out 0 172057 bytes_in 0 172057 station_ip 83.122.178.27 172057 port 7 172057 unique_id port 172057 remote_ip 10.8.0.22 172058 username hashtadani4 172058 mac 172058 bytes_out 0 172058 bytes_in 0 172058 station_ip 83.122.178.27 172058 port 7 172058 unique_id port 172058 remote_ip 10.8.0.22 172064 username hashtadani4 172064 mac 172064 bytes_out 0 172064 bytes_in 0 172064 station_ip 83.122.178.27 172064 port 7 172064 unique_id port 172064 remote_ip 10.8.0.22 172066 username aminvpn 172066 mac 172066 bytes_out 0 172066 bytes_in 0 172066 station_ip 5.119.94.158 172066 port 7 172066 unique_id port 172066 remote_ip 10.8.0.58 172071 username barzegar 172071 mac 172071 bytes_out 0 172071 bytes_in 0 172071 station_ip 5.119.187.175 172071 port 10 172071 unique_id port 172071 remote_ip 10.8.0.10 172072 username hashtadani4 172072 mac 172072 bytes_out 0 172072 bytes_in 0 172072 station_ip 83.122.178.27 172072 port 10 172072 unique_id port 172072 remote_ip 10.8.0.22 172073 station_ip 83.122.168.38 172073 port 7 172073 unique_id port 172073 remote_ip 10.8.0.50 172074 username hashtadani4 172074 mac 172074 bytes_out 0 172074 bytes_in 0 172074 station_ip 83.122.178.27 172074 port 7 172074 unique_id port 172074 remote_ip 10.8.0.22 172075 username aminvpn 172075 mac 172075 bytes_out 0 172075 bytes_in 0 172075 station_ip 5.119.94.158 172075 port 7 172075 unique_id port 172075 remote_ip 10.8.0.58 172077 username hashtadani4 172077 mac 172077 bytes_out 0 172077 bytes_in 0 172077 station_ip 83.122.178.27 172077 port 7 172077 unique_id port 172077 remote_ip 10.8.0.22 172078 username hashtadani4 172078 mac 172078 bytes_out 0 172078 bytes_in 0 172078 station_ip 83.122.178.27 172078 port 7 172078 unique_id port 172078 remote_ip 10.8.0.22 172079 username hashtadani4 172079 mac 172079 bytes_out 0 172079 bytes_in 0 172079 station_ip 83.122.178.27 172079 port 7 172079 unique_id port 172079 remote_ip 10.8.0.22 172080 username hashtadani4 172080 mac 172080 bytes_out 0 172080 bytes_in 0 172080 station_ip 83.122.178.27 172080 port 7 172080 unique_id port 172080 remote_ip 10.8.0.22 172081 username hashtadani4 172081 mac 172081 bytes_out 0 172081 bytes_in 0 172081 station_ip 83.122.178.27 172081 port 7 172081 unique_id port 172081 remote_ip 10.8.0.22 172082 username hashtadani4 172082 mac 172082 bytes_out 0 172082 bytes_in 0 172035 username hashtadani4 172035 mac 172035 bytes_out 0 172035 bytes_in 0 172035 station_ip 83.122.178.27 172035 port 21 172035 unique_id port 172035 remote_ip 10.8.0.22 172048 mac 172048 bytes_out 0 172048 bytes_in 0 172048 station_ip 83.122.178.27 172048 port 7 172048 unique_id port 172048 remote_ip 10.8.0.22 172049 username hashtadani4 172049 mac 172049 bytes_out 0 172049 bytes_in 0 172049 station_ip 83.122.178.27 172049 port 7 172049 unique_id port 172049 remote_ip 10.8.0.22 172050 username hashtadani4 172050 mac 172050 bytes_out 0 172050 bytes_in 0 172050 station_ip 83.122.178.27 172050 port 7 172050 unique_id port 172050 remote_ip 10.8.0.22 172052 username hashtadani4 172052 mac 172052 bytes_out 0 172052 bytes_in 0 172052 station_ip 83.122.178.27 172052 port 7 172052 unique_id port 172052 remote_ip 10.8.0.22 172056 username aminvpn 172056 mac 172056 bytes_out 0 172056 bytes_in 0 172056 station_ip 5.119.94.158 172056 port 7 172056 unique_id port 172056 remote_ip 10.8.0.58 172060 username moradi 172060 mac 172060 bytes_out 875921 172060 bytes_in 2609013 172060 station_ip 37.156.153.177 172060 port 10 172060 unique_id port 172060 remote_ip 10.8.0.122 172062 username hashtadani4 172062 mac 172062 bytes_out 0 172062 bytes_in 0 172062 station_ip 83.122.178.27 172062 port 7 172062 unique_id port 172062 remote_ip 10.8.0.22 172063 username hashtadani4 172063 mac 172063 bytes_out 0 172063 bytes_in 0 172063 station_ip 83.122.178.27 172063 port 7 172063 unique_id port 172063 remote_ip 10.8.0.22 172070 username hashtadani4 172070 mac 172070 bytes_out 0 172070 bytes_in 0 172070 station_ip 83.122.178.27 172070 port 10 172070 unique_id port 172070 remote_ip 10.8.0.22 172076 username barzegar 172076 mac 172076 bytes_out 0 172076 bytes_in 0 172076 station_ip 5.119.187.175 172076 port 7 172076 unique_id port 172076 remote_ip 10.8.0.10 172082 station_ip 83.122.178.27 172082 port 7 172082 unique_id port 172082 remote_ip 10.8.0.22 172083 username hashtadani4 172083 mac 172083 bytes_out 0 172083 bytes_in 0 172083 station_ip 83.122.178.27 172083 port 7 172083 unique_id port 172083 remote_ip 10.8.0.22 172084 username aminvpn 172084 mac 172084 bytes_out 0 172084 bytes_in 0 172084 station_ip 5.119.94.158 172084 port 7 172084 unique_id port 172084 remote_ip 10.8.0.58 172085 username aminvpn 172085 mac 172085 bytes_out 0 172085 bytes_in 0 172085 station_ip 5.119.94.158 172085 port 7 172085 unique_id port 172085 remote_ip 10.8.0.58 172086 username hashtadani4 172086 mac 172086 bytes_out 0 172086 bytes_in 0 172086 station_ip 83.122.178.27 172086 port 7 172086 unique_id port 172086 remote_ip 10.8.0.22 172087 username hashtadani4 172087 mac 172087 bytes_out 0 172087 bytes_in 0 172087 station_ip 83.122.178.27 172087 port 7 172087 unique_id port 172087 remote_ip 10.8.0.22 172088 username hashtadani4 172088 mac 172088 bytes_out 0 172088 bytes_in 0 172088 station_ip 83.122.178.27 172088 port 7 172088 unique_id port 172088 remote_ip 10.8.0.22 172089 username hashtadani4 172089 mac 172089 bytes_out 0 172089 bytes_in 0 172089 station_ip 83.122.178.27 172089 port 7 172089 unique_id port 172089 remote_ip 10.8.0.22 172090 username hashtadani4 172090 mac 172090 bytes_out 0 172090 bytes_in 0 172090 station_ip 83.122.178.27 172090 port 7 172090 unique_id port 172090 remote_ip 10.8.0.22 172091 username barzegar 172091 mac 172091 bytes_out 0 172091 bytes_in 0 172091 station_ip 5.119.187.175 172091 port 7 172091 unique_id port 172091 remote_ip 10.8.0.10 172092 username hashtadani4 172092 mac 172092 bytes_out 0 172092 bytes_in 0 172092 station_ip 83.122.178.27 172092 port 7 172092 unique_id port 172092 remote_ip 10.8.0.22 172093 username hashtadani4 172093 mac 172093 bytes_out 0 172093 bytes_in 0 172093 station_ip 83.122.178.27 172093 port 7 172093 unique_id port 172093 remote_ip 10.8.0.22 172098 username hashtadani4 172098 mac 172098 bytes_out 0 172098 bytes_in 0 172098 station_ip 83.122.178.27 172098 port 7 172098 unique_id port 172098 remote_ip 10.8.0.22 172104 username hashtadani4 172104 mac 172104 bytes_out 0 172104 bytes_in 0 172104 station_ip 83.122.178.27 172104 port 7 172104 unique_id port 172104 remote_ip 10.8.0.22 172105 username hashtadani4 172105 mac 172105 bytes_out 0 172105 bytes_in 0 172105 station_ip 83.122.178.27 172105 port 7 172105 unique_id port 172105 remote_ip 10.8.0.22 172112 username hashtadani4 172112 mac 172112 bytes_out 0 172112 bytes_in 0 172112 station_ip 83.122.178.27 172112 port 7 172112 unique_id port 172112 remote_ip 10.8.0.22 172113 username aminvpn 172113 mac 172113 bytes_out 0 172113 bytes_in 0 172113 station_ip 5.119.94.158 172113 port 7 172113 unique_id port 172113 remote_ip 10.8.0.58 172115 username hashtadani4 172115 mac 172115 bytes_out 0 172115 bytes_in 0 172115 station_ip 83.122.178.27 172115 port 7 172115 unique_id port 172115 remote_ip 10.8.0.22 172119 username hashtadani4 172119 mac 172119 bytes_out 0 172119 bytes_in 0 172119 station_ip 83.122.178.27 172119 port 7 172119 unique_id port 172119 remote_ip 10.8.0.22 172120 username hashtadani4 172120 mac 172120 bytes_out 0 172120 bytes_in 0 172120 station_ip 83.122.178.27 172120 port 7 172120 unique_id port 172120 remote_ip 10.8.0.22 172122 username aminvpn 172122 mac 172122 bytes_out 0 172122 bytes_in 0 172122 station_ip 5.119.94.158 172122 port 7 172122 unique_id port 172122 remote_ip 10.8.0.58 172123 username aminvpn 172123 mac 172123 bytes_out 0 172123 bytes_in 0 172123 station_ip 5.119.94.158 172123 port 7 172123 unique_id port 172123 remote_ip 10.8.0.58 172124 username hashtadani4 172124 mac 172124 bytes_out 0 172124 bytes_in 0 172124 station_ip 83.122.178.27 172124 port 10 172124 unique_id port 172124 remote_ip 10.8.0.22 172125 username barzegar 172125 mac 172125 bytes_out 0 172125 bytes_in 0 172125 station_ip 5.119.187.175 172125 port 10 172125 unique_id port 172125 remote_ip 10.8.0.10 172126 username barzegar 172126 kill_reason Maximum check online fails reached 172126 mac 172126 bytes_out 0 172126 bytes_in 0 172126 station_ip 5.119.187.175 172126 port 10 172126 unique_id port 172127 username hashtadani4 172127 mac 172127 bytes_out 1644 172127 bytes_in 3842 172127 station_ip 83.122.178.27 172127 port 17 172127 unique_id port 172127 remote_ip 10.8.0.22 172128 username hashtadani4 172128 mac 172128 bytes_out 2270 172128 bytes_in 4592 172128 station_ip 83.122.178.27 172128 port 17 172128 unique_id port 172128 remote_ip 10.8.0.22 172129 username hashtadani4 172129 mac 172129 bytes_out 0 172129 bytes_in 0 172129 station_ip 83.122.178.27 172129 port 17 172129 unique_id port 172129 remote_ip 10.8.0.22 172132 username hashtadani4 172132 mac 172132 bytes_out 0 172132 bytes_in 0 172132 station_ip 83.122.178.27 172132 port 17 172094 username hashtadani4 172094 mac 172094 bytes_out 0 172094 bytes_in 0 172094 station_ip 83.122.178.27 172094 port 7 172094 unique_id port 172094 remote_ip 10.8.0.22 172096 username aminvpn 172096 mac 172096 bytes_out 0 172096 bytes_in 0 172096 station_ip 5.119.94.158 172096 port 7 172096 unique_id port 172096 remote_ip 10.8.0.58 172100 username hashtadani4 172100 mac 172100 bytes_out 0 172100 bytes_in 0 172100 station_ip 83.122.178.27 172100 port 7 172100 unique_id port 172100 remote_ip 10.8.0.22 172101 username hashtadani4 172101 mac 172101 bytes_out 0 172101 bytes_in 0 172101 station_ip 83.122.178.27 172101 port 7 172101 unique_id port 172101 remote_ip 10.8.0.22 172102 username aminvpn 172102 mac 172102 bytes_out 0 172102 bytes_in 0 172102 station_ip 5.119.94.158 172102 port 7 172102 unique_id port 172102 remote_ip 10.8.0.58 172103 username hashtadani4 172103 mac 172103 bytes_out 0 172103 bytes_in 0 172103 station_ip 83.122.178.27 172103 port 7 172103 unique_id port 172103 remote_ip 10.8.0.22 172106 username barzegar 172106 mac 172106 bytes_out 0 172106 bytes_in 0 172106 station_ip 5.119.187.175 172106 port 7 172106 unique_id port 172106 remote_ip 10.8.0.10 172107 username hashtadani4 172107 mac 172107 bytes_out 0 172107 bytes_in 0 172107 station_ip 83.122.178.27 172107 port 7 172107 unique_id port 172107 remote_ip 10.8.0.22 172110 username hashtadani4 172110 mac 172110 bytes_out 0 172110 bytes_in 0 172110 station_ip 83.122.178.27 172110 port 7 172110 unique_id port 172110 remote_ip 10.8.0.22 172111 username barzegar 172111 mac 172111 bytes_out 0 172111 bytes_in 0 172111 station_ip 5.119.187.175 172111 port 7 172111 unique_id port 172111 remote_ip 10.8.0.10 172114 username hashtadani4 172114 mac 172114 bytes_out 0 172114 bytes_in 0 172114 station_ip 83.122.178.27 172114 port 7 172114 unique_id port 172114 remote_ip 10.8.0.22 172117 username hashtadani4 172117 mac 172117 bytes_out 0 172117 bytes_in 0 172117 station_ip 83.122.178.27 172117 port 7 172117 unique_id port 172117 remote_ip 10.8.0.22 172118 username barzegar 172118 mac 172118 bytes_out 0 172118 bytes_in 0 172118 station_ip 5.119.187.175 172118 port 7 172118 unique_id port 172118 remote_ip 10.8.0.10 172130 username aminvpn 172130 mac 172130 bytes_out 0 172130 bytes_in 0 172130 station_ip 5.119.94.158 172130 port 21 172130 unique_id port 172130 remote_ip 10.8.0.58 172131 username barzegar 172131 mac 172131 bytes_out 0 172131 bytes_in 0 172131 station_ip 5.119.187.175 172131 port 17 172131 unique_id port 172131 remote_ip 10.8.0.10 172133 username mohammadjavad 172133 mac 172133 bytes_out 538195 172133 bytes_in 4716440 172133 station_ip 113.203.39.159 172133 port 7 172133 unique_id port 172133 remote_ip 10.8.0.110 172138 username hashtadani4 172138 mac 172138 bytes_out 0 172138 bytes_in 0 172138 station_ip 83.122.178.27 172138 port 7 172138 unique_id port 172138 remote_ip 10.8.0.22 172139 username hashtadani4 172139 mac 172139 bytes_out 0 172139 bytes_in 0 172139 station_ip 83.122.178.27 172139 port 7 172139 unique_id port 172139 remote_ip 10.8.0.22 172143 username sedighe 172143 mac 172143 bytes_out 203136 172143 bytes_in 1732377 172143 station_ip 83.122.60.61 172143 port 17 172143 unique_id port 172143 remote_ip 10.8.0.78 172146 username hashtadani4 172146 mac 172146 bytes_out 0 172146 bytes_in 0 172146 station_ip 83.122.178.27 172095 username aminvpn 172095 mac 172095 bytes_out 0 172095 bytes_in 0 172095 station_ip 5.119.94.158 172095 port 7 172095 unique_id port 172095 remote_ip 10.8.0.58 172097 username hashtadani4 172097 mac 172097 bytes_out 0 172097 bytes_in 0 172097 station_ip 83.122.178.27 172097 port 7 172097 unique_id port 172097 remote_ip 10.8.0.22 172099 username barzegar 172099 mac 172099 bytes_out 0 172099 bytes_in 0 172099 station_ip 5.119.187.175 172099 port 10 172099 unique_id port 172099 remote_ip 10.8.0.10 172108 username aminvpn 172108 mac 172108 bytes_out 0 172108 bytes_in 0 172108 station_ip 5.119.94.158 172108 port 7 172108 unique_id port 172108 remote_ip 10.8.0.58 172109 username aminvpn 172109 mac 172109 bytes_out 1644 172109 bytes_in 4564 172109 station_ip 5.119.94.158 172109 port 7 172109 unique_id port 172109 remote_ip 10.8.0.58 172116 username hashtadani4 172116 mac 172116 bytes_out 0 172116 bytes_in 0 172116 station_ip 83.122.178.27 172116 port 7 172116 unique_id port 172116 remote_ip 10.8.0.22 172121 username hashtadani4 172121 mac 172121 bytes_out 0 172121 bytes_in 0 172121 station_ip 83.122.178.27 172121 port 7 172121 unique_id port 172121 remote_ip 10.8.0.22 172136 username hashtadani4 172136 mac 172136 bytes_out 0 172136 bytes_in 0 172136 station_ip 83.122.178.27 172136 port 7 172136 unique_id port 172136 remote_ip 10.8.0.22 172137 username hashtadani4 172137 mac 172137 bytes_out 0 172137 bytes_in 0 172137 station_ip 83.122.178.27 172137 port 7 172137 unique_id port 172137 remote_ip 10.8.0.22 172149 username hashtadani4 172149 mac 172149 bytes_out 0 172149 bytes_in 0 172149 station_ip 83.122.178.27 172149 port 21 172149 unique_id port 172149 remote_ip 10.8.0.22 172153 username houshang 172153 kill_reason Another user logged on this global unique id 172153 mac 172153 bytes_out 0 172153 bytes_in 0 172153 station_ip 5.120.103.241 172153 port 7 172153 unique_id port 172157 username pourshad 172157 mac 172157 bytes_out 0 172157 bytes_in 0 172157 station_ip 5.120.195.96 172157 port 3 172157 unique_id port 172159 username mohammadjavad 172159 kill_reason Another user logged on this global unique id 172159 mac 172159 bytes_out 0 172159 bytes_in 0 172159 station_ip 37.129.167.30 172159 port 17 172159 unique_id port 172159 remote_ip 10.8.0.110 172160 username sedighe 172160 mac 172160 bytes_out 63517 172160 bytes_in 265812 172160 station_ip 113.203.93.123 172160 port 21 172160 unique_id port 172160 remote_ip 10.8.0.78 172162 username hashtadani4 172162 mac 172162 bytes_out 0 172162 bytes_in 0 172162 station_ip 83.122.178.27 172162 port 3 172162 unique_id port 172162 remote_ip 10.8.0.22 172163 username hashtadani4 172163 mac 172163 bytes_out 0 172163 bytes_in 0 172163 station_ip 83.122.178.27 172163 port 3 172163 unique_id port 172163 remote_ip 10.8.0.22 172164 username hashtadani4 172164 mac 172164 bytes_out 0 172164 bytes_in 0 172164 station_ip 83.122.178.27 172164 port 14 172164 unique_id port 172164 remote_ip 10.8.0.22 172171 username hashtadani4 172171 mac 172171 bytes_out 0 172171 bytes_in 0 172171 station_ip 83.122.178.27 172171 port 17 172171 unique_id port 172171 remote_ip 10.8.0.22 172172 username barzegar 172172 kill_reason Maximum check online fails reached 172172 mac 172172 bytes_out 0 172172 bytes_in 0 172172 station_ip 5.119.187.175 172172 port 21 172172 unique_id port 172176 username hashtadani4 172176 mac 172176 bytes_out 0 172132 unique_id port 172132 remote_ip 10.8.0.22 172134 username hashtadani4 172134 mac 172134 bytes_out 0 172134 bytes_in 0 172134 station_ip 83.122.178.27 172134 port 7 172134 unique_id port 172134 remote_ip 10.8.0.22 172135 username hashtadani4 172135 mac 172135 bytes_out 1644 172135 bytes_in 3736 172135 station_ip 83.122.178.27 172135 port 7 172135 unique_id port 172135 remote_ip 10.8.0.22 172140 username aminvpn 172140 mac 172140 bytes_out 0 172140 bytes_in 0 172140 station_ip 5.119.94.158 172140 port 7 172140 unique_id port 172140 remote_ip 10.8.0.58 172141 username barzegar 172141 mac 172141 bytes_out 0 172141 bytes_in 0 172141 station_ip 5.119.187.175 172141 port 21 172141 unique_id port 172141 remote_ip 10.8.0.10 172142 username hashtadani4 172142 mac 172142 bytes_out 0 172142 bytes_in 0 172142 station_ip 83.122.178.27 172142 port 21 172142 unique_id port 172142 remote_ip 10.8.0.22 172144 username hashtadani4 172144 mac 172144 bytes_out 0 172144 bytes_in 0 172144 station_ip 83.122.178.27 172144 port 21 172144 unique_id port 172144 remote_ip 10.8.0.22 172145 username hashtadani4 172145 mac 172145 bytes_out 0 172145 bytes_in 0 172145 station_ip 83.122.178.27 172145 port 21 172145 unique_id port 172145 remote_ip 10.8.0.22 172148 username aminvpn 172148 mac 172148 bytes_out 0 172148 bytes_in 0 172148 station_ip 5.119.94.158 172148 port 21 172148 unique_id port 172148 remote_ip 10.8.0.58 172151 username barzegar 172151 mac 172151 bytes_out 0 172151 bytes_in 0 172151 station_ip 5.119.187.175 172151 port 21 172151 unique_id port 172151 remote_ip 10.8.0.10 172155 username hashtadani4 172155 mac 172155 bytes_out 0 172155 bytes_in 0 172155 station_ip 83.122.178.27 172155 port 22 172155 unique_id port 172155 remote_ip 10.8.0.22 172156 username hashtadani4 172156 mac 172156 bytes_out 0 172156 bytes_in 0 172156 station_ip 83.122.178.27 172156 port 22 172156 unique_id port 172156 remote_ip 10.8.0.22 172158 username khalili2 172158 mac 172158 bytes_out 0 172158 bytes_in 0 172158 station_ip 5.119.13.234 172158 port 14 172158 unique_id port 172166 username mohammadjavad 172166 mac 172166 bytes_out 0 172166 bytes_in 0 172166 station_ip 37.129.167.30 172166 port 17 172166 unique_id port 172167 username houshang 172167 kill_reason Another user logged on this global unique id 172167 mac 172167 bytes_out 0 172167 bytes_in 0 172167 station_ip 5.120.103.241 172167 port 7 172167 unique_id port 172169 username hashtadani4 172169 mac 172169 bytes_out 1644 172169 bytes_in 3895 172169 station_ip 83.122.178.27 172169 port 14 172169 unique_id port 172169 remote_ip 10.8.0.22 172170 username hashtadani4 172170 mac 172170 bytes_out 0 172170 bytes_in 0 172170 station_ip 83.122.178.27 172170 port 17 172170 unique_id port 172170 remote_ip 10.8.0.22 172173 username mosi 172173 mac 172173 bytes_out 1832 172173 bytes_in 4453 172173 station_ip 2.184.6.27 172173 port 14 172173 unique_id port 172173 remote_ip 10.8.0.142 172175 username houshang 172175 kill_reason Another user logged on this global unique id 172175 mac 172175 bytes_out 0 172175 bytes_in 0 172175 station_ip 5.120.103.241 172175 port 7 172175 unique_id port 172179 username barzegar 172179 mac 172179 bytes_out 0 172179 bytes_in 0 172179 station_ip 5.119.187.175 172179 port 14 172179 unique_id port 172179 remote_ip 10.8.0.10 172184 username hashtadani4 172184 mac 172184 bytes_out 0 172184 bytes_in 0 172146 port 21 172146 unique_id port 172146 remote_ip 10.8.0.22 172147 username houshang 172147 kill_reason Another user logged on this global unique id 172147 mac 172147 bytes_out 0 172147 bytes_in 0 172147 station_ip 5.120.103.241 172147 port 7 172147 unique_id port 172147 remote_ip 10.8.0.82 172150 username hashtadani4 172150 mac 172150 bytes_out 0 172150 bytes_in 0 172150 station_ip 83.122.178.27 172150 port 21 172150 unique_id port 172150 remote_ip 10.8.0.22 172152 username hashtadani4 172152 mac 172152 bytes_out 0 172152 bytes_in 0 172152 station_ip 83.122.178.27 172152 port 21 172152 unique_id port 172152 remote_ip 10.8.0.22 172154 username hashtadani4 172154 mac 172154 bytes_out 0 172154 bytes_in 0 172154 station_ip 83.122.178.27 172154 port 22 172154 unique_id port 172154 remote_ip 10.8.0.22 172161 username barzegar 172161 mac 172161 bytes_out 0 172161 bytes_in 0 172161 station_ip 5.119.187.175 172161 port 3 172161 unique_id port 172161 remote_ip 10.8.0.10 172165 username hashtadani4 172165 mac 172165 bytes_out 0 172165 bytes_in 0 172165 station_ip 83.122.178.27 172165 port 14 172165 unique_id port 172165 remote_ip 10.8.0.22 172168 username aminvpn 172168 mac 172168 bytes_out 0 172168 bytes_in 0 172168 station_ip 5.119.94.158 172168 port 17 172168 unique_id port 172168 remote_ip 10.8.0.58 172174 username sedighe 172174 mac 172174 bytes_out 530888 172174 bytes_in 4248247 172174 station_ip 83.123.55.158 172174 port 3 172174 unique_id port 172174 remote_ip 10.8.0.78 172177 username hashtadani4 172177 mac 172177 bytes_out 0 172177 bytes_in 0 172177 station_ip 83.122.178.27 172177 port 3 172177 unique_id port 172177 remote_ip 10.8.0.22 172180 username hashtadani4 172180 mac 172180 bytes_out 0 172180 bytes_in 0 172180 station_ip 83.122.178.27 172180 port 3 172180 unique_id port 172180 remote_ip 10.8.0.22 172181 username mirzaei 172181 kill_reason Another user logged on this global unique id 172181 mac 172181 bytes_out 0 172181 bytes_in 0 172181 station_ip 5.120.58.130 172181 port 12 172181 unique_id port 172186 username mehdizare 172186 kill_reason Another user logged on this global unique id 172186 mac 172186 bytes_out 0 172186 bytes_in 0 172186 station_ip 37.129.185.236 172186 port 3 172186 unique_id port 172186 remote_ip 10.8.0.210 172188 username barzegar 172188 mac 172188 bytes_out 0 172188 bytes_in 0 172188 station_ip 5.119.187.175 172188 port 22 172188 unique_id port 172188 remote_ip 10.8.0.10 172191 username hashtadani4 172191 mac 172191 bytes_out 0 172191 bytes_in 0 172191 station_ip 83.122.178.27 172191 port 22 172191 unique_id port 172191 remote_ip 10.8.0.22 172196 username aminvpn 172196 mac 172196 bytes_out 0 172196 bytes_in 0 172196 station_ip 5.119.94.158 172196 port 17 172196 unique_id port 172196 remote_ip 10.8.0.58 172199 username hashtadani4 172199 mac 172199 bytes_out 0 172199 bytes_in 0 172199 station_ip 83.122.178.27 172199 port 17 172199 unique_id port 172199 remote_ip 10.8.0.22 172202 username hashtadani4 172202 mac 172202 bytes_out 0 172202 bytes_in 0 172202 station_ip 83.122.178.27 172202 port 17 172202 unique_id port 172202 remote_ip 10.8.0.22 172204 username hashtadani4 172204 mac 172204 bytes_out 0 172204 bytes_in 0 172204 station_ip 83.122.178.27 172204 port 17 172204 unique_id port 172204 remote_ip 10.8.0.22 172206 username houshang 172206 mac 172206 bytes_out 0 172206 bytes_in 0 172206 station_ip 5.120.103.241 172206 port 7 172176 bytes_in 0 172176 station_ip 83.122.178.27 172176 port 3 172176 unique_id port 172176 remote_ip 10.8.0.22 172178 username aminvpn 172178 mac 172178 bytes_out 0 172178 bytes_in 0 172178 station_ip 5.119.94.158 172178 port 3 172178 unique_id port 172178 remote_ip 10.8.0.58 172182 username houshang 172182 kill_reason Another user logged on this global unique id 172182 mac 172182 bytes_out 0 172182 bytes_in 0 172182 station_ip 5.120.103.241 172182 port 7 172182 unique_id port 172183 username pourshad 172183 mac 172183 bytes_out 40436159 172183 bytes_in 15018436 172183 station_ip 5.120.193.18 172183 port 22 172183 unique_id port 172183 remote_ip 10.8.0.42 172185 username aminvpn 172185 mac 172185 bytes_out 0 172185 bytes_in 0 172185 station_ip 5.119.94.158 172185 port 22 172185 unique_id port 172185 remote_ip 10.8.0.58 172189 username mehdizare 172189 kill_reason Another user logged on this global unique id 172189 mac 172189 bytes_out 0 172189 bytes_in 0 172189 station_ip 37.129.185.236 172189 port 3 172189 unique_id port 172190 username houshang 172190 kill_reason Another user logged on this global unique id 172190 mac 172190 bytes_out 0 172190 bytes_in 0 172190 station_ip 5.120.103.241 172190 port 7 172190 unique_id port 172192 username mohammadjavad 172192 mac 172192 bytes_out 849236 172192 bytes_in 17442988 172192 station_ip 113.203.75.171 172192 port 17 172192 unique_id port 172192 remote_ip 10.8.0.110 172193 username hashtadani4 172193 mac 172193 bytes_out 0 172193 bytes_in 0 172193 station_ip 83.122.178.27 172193 port 17 172193 unique_id port 172193 remote_ip 10.8.0.22 172195 username hashtadani4 172195 mac 172195 bytes_out 0 172195 bytes_in 0 172195 station_ip 83.122.178.27 172195 port 17 172195 unique_id port 172195 remote_ip 10.8.0.22 172197 username houshang 172197 kill_reason Another user logged on this global unique id 172197 mac 172197 bytes_out 0 172197 bytes_in 0 172197 station_ip 5.120.103.241 172197 port 7 172197 unique_id port 172200 username pourshad 172200 kill_reason Another user logged on this global unique id 172200 mac 172200 bytes_out 0 172200 bytes_in 0 172200 station_ip 5.120.193.18 172200 port 14 172200 unique_id port 172200 remote_ip 10.8.0.42 172205 username barzegar 172205 mac 172205 bytes_out 0 172205 bytes_in 0 172205 station_ip 5.119.187.175 172205 port 22 172205 unique_id port 172205 remote_ip 10.8.0.10 172207 username hashtadani4 172207 mac 172207 bytes_out 0 172207 bytes_in 0 172207 station_ip 83.122.178.27 172207 port 7 172207 unique_id port 172207 remote_ip 10.8.0.22 172209 username hashtadani4 172209 mac 172209 bytes_out 0 172209 bytes_in 0 172209 station_ip 83.122.178.27 172209 port 7 172209 unique_id port 172209 remote_ip 10.8.0.22 172220 username houshang 172220 kill_reason Another user logged on this global unique id 172220 mac 172220 bytes_out 0 172220 bytes_in 0 172220 station_ip 5.120.126.52 172220 port 7 172220 unique_id port 172221 username hashtadani4 172221 mac 172221 bytes_out 0 172221 bytes_in 0 172221 station_ip 83.122.178.27 172221 port 17 172221 unique_id port 172221 remote_ip 10.8.0.22 172226 username houshang 172226 mac 172226 bytes_out 0 172226 bytes_in 0 172226 station_ip 5.120.126.52 172226 port 7 172226 unique_id port 172229 username hashtadani4 172229 mac 172229 bytes_out 0 172229 bytes_in 0 172229 station_ip 83.122.178.27 172229 port 7 172229 unique_id port 172229 remote_ip 10.8.0.22 172230 username hashtadani4 172230 mac 172230 bytes_out 0 172230 bytes_in 0 172184 station_ip 83.122.178.27 172184 port 22 172184 unique_id port 172184 remote_ip 10.8.0.22 172187 username hashtadani4 172187 mac 172187 bytes_out 0 172187 bytes_in 0 172187 station_ip 83.122.178.27 172187 port 23 172187 unique_id port 172187 remote_ip 10.8.0.22 172194 username hashtadani4 172194 mac 172194 bytes_out 0 172194 bytes_in 0 172194 station_ip 83.122.178.27 172194 port 17 172194 unique_id port 172194 remote_ip 10.8.0.22 172198 username barzegar 172198 mac 172198 bytes_out 0 172198 bytes_in 0 172198 station_ip 5.119.187.175 172198 port 17 172198 unique_id port 172198 remote_ip 10.8.0.10 172201 username hashtadani4 172201 mac 172201 bytes_out 0 172201 bytes_in 0 172201 station_ip 83.122.178.27 172201 port 17 172201 unique_id port 172201 remote_ip 10.8.0.22 172203 username aminvpn 172203 mac 172203 bytes_out 0 172203 bytes_in 0 172203 station_ip 5.119.94.158 172203 port 17 172203 unique_id port 172203 remote_ip 10.8.0.58 172211 username hashtadani4 172211 mac 172211 bytes_out 0 172211 bytes_in 0 172211 station_ip 83.122.178.27 172211 port 7 172211 unique_id port 172211 remote_ip 10.8.0.22 172215 username houshang 172215 kill_reason Another user logged on this global unique id 172215 mac 172215 bytes_out 0 172215 bytes_in 0 172215 station_ip 5.120.126.52 172215 port 7 172215 unique_id port 172215 remote_ip 10.8.0.82 172216 username hashtadani4 172216 mac 172216 bytes_out 0 172216 bytes_in 0 172216 station_ip 83.122.178.27 172216 port 22 172216 unique_id port 172216 remote_ip 10.8.0.22 172217 username aminvpn 172217 mac 172217 bytes_out 0 172217 bytes_in 0 172217 station_ip 5.119.94.158 172217 port 22 172217 unique_id port 172217 remote_ip 10.8.0.58 172218 username barzegar 172218 mac 172218 bytes_out 0 172218 bytes_in 0 172218 station_ip 5.119.187.175 172218 port 22 172218 unique_id port 172218 remote_ip 10.8.0.10 172222 username pourshad 172222 kill_reason Another user logged on this global unique id 172222 mac 172222 bytes_out 0 172222 bytes_in 0 172222 station_ip 5.120.193.18 172222 port 14 172222 unique_id port 172223 username hashtadani4 172223 mac 172223 bytes_out 0 172223 bytes_in 0 172223 station_ip 83.122.178.27 172223 port 17 172223 unique_id port 172223 remote_ip 10.8.0.22 172227 username hashtadani4 172227 mac 172227 bytes_out 0 172227 bytes_in 0 172227 station_ip 83.122.178.27 172227 port 7 172227 unique_id port 172227 remote_ip 10.8.0.22 172228 username aminvpn 172228 mac 172228 bytes_out 0 172228 bytes_in 0 172228 station_ip 5.119.94.158 172228 port 7 172228 unique_id port 172228 remote_ip 10.8.0.58 172231 username jafari 172231 kill_reason Another user logged on this global unique id 172231 mac 172231 bytes_out 0 172231 bytes_in 0 172231 station_ip 89.47.68.14 172231 port 22 172231 unique_id port 172231 remote_ip 10.8.0.86 172233 username barzegar 172233 mac 172233 bytes_out 0 172233 bytes_in 0 172233 station_ip 5.119.187.175 172233 port 7 172233 unique_id port 172233 remote_ip 10.8.0.10 172234 username hashtadani4 172234 mac 172234 bytes_out 0 172234 bytes_in 0 172234 station_ip 83.122.178.27 172234 port 7 172234 unique_id port 172234 remote_ip 10.8.0.22 172239 username pourshad 172239 kill_reason Another user logged on this global unique id 172239 mac 172239 bytes_out 0 172239 bytes_in 0 172239 station_ip 5.120.193.18 172239 port 14 172239 unique_id port 172242 username jafari 172242 kill_reason Another user logged on this global unique id 172242 mac 172242 bytes_out 0 172206 unique_id port 172208 username pourshad 172208 kill_reason Another user logged on this global unique id 172208 mac 172208 bytes_out 0 172208 bytes_in 0 172208 station_ip 5.120.193.18 172208 port 14 172208 unique_id port 172210 username hashtadani4 172210 mac 172210 bytes_out 0 172210 bytes_in 0 172210 station_ip 83.122.178.27 172210 port 7 172210 unique_id port 172210 remote_ip 10.8.0.22 172212 username hashtadani4 172212 mac 172212 bytes_out 0 172212 bytes_in 0 172212 station_ip 83.122.178.27 172212 port 17 172212 unique_id port 172212 remote_ip 10.8.0.22 172213 username hashtadani4 172213 mac 172213 bytes_out 0 172213 bytes_in 0 172213 station_ip 83.122.178.27 172213 port 17 172213 unique_id port 172213 remote_ip 10.8.0.22 172214 username hashtadani4 172214 mac 172214 bytes_out 0 172214 bytes_in 0 172214 station_ip 83.122.178.27 172214 port 17 172214 unique_id port 172214 remote_ip 10.8.0.22 172219 username jafari 172219 mac 172219 bytes_out 1269090 172219 bytes_in 10142311 172219 station_ip 89.47.68.14 172219 port 17 172219 unique_id port 172219 remote_ip 10.8.0.86 172224 username hashtadani4 172224 mac 172224 bytes_out 2106 172224 bytes_in 4391 172224 station_ip 83.122.178.27 172224 port 17 172224 unique_id port 172224 remote_ip 10.8.0.22 172225 username hashtadani4 172225 mac 172225 bytes_out 0 172225 bytes_in 0 172225 station_ip 83.122.178.27 172225 port 17 172225 unique_id port 172225 remote_ip 10.8.0.22 172235 username hashtadani4 172235 mac 172235 bytes_out 0 172235 bytes_in 0 172235 station_ip 83.122.178.27 172235 port 17 172235 unique_id port 172235 remote_ip 10.8.0.22 172236 username hashtadani4 172236 mac 172236 bytes_out 0 172236 bytes_in 0 172236 station_ip 83.122.178.27 172236 port 17 172236 unique_id port 172236 remote_ip 10.8.0.22 172237 username hashtadani4 172237 mac 172237 bytes_out 0 172237 bytes_in 0 172237 station_ip 83.122.178.27 172237 port 17 172237 unique_id port 172237 remote_ip 10.8.0.22 172240 username hashtadani4 172240 mac 172240 bytes_out 0 172240 bytes_in 0 172240 station_ip 83.122.178.27 172240 port 17 172240 unique_id port 172240 remote_ip 10.8.0.22 172241 username aminvpn 172241 mac 172241 bytes_out 0 172241 bytes_in 0 172241 station_ip 5.119.94.158 172241 port 17 172241 unique_id port 172241 remote_ip 10.8.0.58 172247 username jafari 172247 kill_reason Another user logged on this global unique id 172247 mac 172247 bytes_out 0 172247 bytes_in 0 172247 station_ip 89.47.68.14 172247 port 22 172247 unique_id port 172248 username hashtadani4 172248 mac 172248 bytes_out 0 172248 bytes_in 0 172248 station_ip 83.122.178.27 172248 port 7 172248 unique_id port 172248 remote_ip 10.8.0.22 172249 username aminvpn 172249 mac 172249 bytes_out 0 172249 bytes_in 0 172249 station_ip 5.119.94.158 172249 port 7 172249 unique_id port 172249 remote_ip 10.8.0.58 172252 username barzegar 172252 mac 172252 bytes_out 2515 172252 bytes_in 4708 172252 station_ip 5.119.187.175 172252 port 7 172252 unique_id port 172252 remote_ip 10.8.0.10 172254 username hashtadani4 172254 mac 172254 bytes_out 0 172254 bytes_in 0 172254 station_ip 83.122.178.27 172254 port 7 172254 unique_id port 172254 remote_ip 10.8.0.22 172259 username hashtadani4 172259 mac 172259 bytes_out 0 172259 bytes_in 0 172259 station_ip 83.122.178.27 172259 port 17 172259 unique_id port 172259 remote_ip 10.8.0.22 172266 username hashtadani4 172266 mac 172266 bytes_out 0 172230 station_ip 83.122.178.27 172230 port 7 172230 unique_id port 172230 remote_ip 10.8.0.22 172232 username hashtadani4 172232 mac 172232 bytes_out 0 172232 bytes_in 0 172232 station_ip 83.122.178.27 172232 port 17 172232 unique_id port 172232 remote_ip 10.8.0.22 172238 username jafari 172238 kill_reason Another user logged on this global unique id 172238 mac 172238 bytes_out 0 172238 bytes_in 0 172238 station_ip 89.47.68.14 172238 port 22 172238 unique_id port 172243 username barzegar 172243 mac 172243 bytes_out 0 172243 bytes_in 0 172243 station_ip 5.119.187.175 172243 port 17 172243 unique_id port 172243 remote_ip 10.8.0.10 172244 username hashtadani4 172244 mac 172244 bytes_out 2005 172244 bytes_in 4274 172244 station_ip 83.122.178.27 172244 port 23 172244 unique_id port 172244 remote_ip 10.8.0.22 172245 username mohammadjavad 172245 mac 172245 bytes_out 223438 172245 bytes_in 638594 172245 station_ip 83.122.132.144 172245 port 7 172245 unique_id port 172245 remote_ip 10.8.0.110 172253 username hashtadani4 172253 mac 172253 bytes_out 0 172253 bytes_in 0 172253 station_ip 83.122.178.27 172253 port 7 172253 unique_id port 172253 remote_ip 10.8.0.22 172255 username aminvpn 172255 mac 172255 bytes_out 0 172255 bytes_in 0 172255 station_ip 5.119.94.158 172255 port 7 172255 unique_id port 172255 remote_ip 10.8.0.58 172256 username hashtadani4 172256 mac 172256 bytes_out 0 172256 bytes_in 0 172256 station_ip 83.122.178.27 172256 port 7 172256 unique_id port 172256 remote_ip 10.8.0.22 172258 username barzegar 172258 mac 172258 bytes_out 0 172258 bytes_in 0 172258 station_ip 5.119.187.175 172258 port 7 172258 unique_id port 172258 remote_ip 10.8.0.10 172260 username hashtadani4 172260 mac 172260 bytes_out 0 172260 bytes_in 0 172260 station_ip 83.122.178.27 172260 port 17 172260 unique_id port 172260 remote_ip 10.8.0.22 172265 username barzegar 172265 mac 172265 bytes_out 3342 172265 bytes_in 5380 172265 station_ip 5.119.187.175 172265 port 23 172265 unique_id port 172265 remote_ip 10.8.0.10 172273 username hassan 172273 kill_reason Another user logged on this global unique id 172273 mac 172273 bytes_out 0 172273 bytes_in 0 172273 station_ip 37.27.48.191 172273 port 7 172273 unique_id port 172273 remote_ip 10.8.0.214 172277 username hashtadani4 172277 mac 172277 bytes_out 15713 172277 bytes_in 24615 172277 station_ip 83.122.178.27 172277 port 31 172277 unique_id port 172277 remote_ip 10.8.0.22 172283 username hashtadani4 172283 mac 172283 bytes_out 0 172283 bytes_in 0 172283 station_ip 83.122.178.27 172283 port 23 172283 unique_id port 172283 remote_ip 10.8.0.22 172285 username hashtadani4 172285 mac 172285 bytes_out 0 172285 bytes_in 0 172285 station_ip 83.122.178.27 172285 port 23 172285 unique_id port 172285 remote_ip 10.8.0.22 172287 username forozandeh1 172287 mac 172287 bytes_out 0 172287 bytes_in 0 172287 station_ip 83.122.207.13 172287 port 17 172287 unique_id port 172288 username aminvpn 172288 mac 172288 bytes_out 32706 172288 bytes_in 48011 172288 station_ip 113.203.17.141 172288 port 28 172288 unique_id port 172288 remote_ip 10.8.0.58 172290 username hashtadani4 172290 mac 172290 bytes_out 0 172290 bytes_in 0 172290 station_ip 83.122.178.27 172290 port 23 172290 unique_id port 172290 remote_ip 10.8.0.22 172291 username hashtadani4 172291 mac 172291 bytes_out 0 172291 bytes_in 0 172291 station_ip 83.122.178.27 172291 port 23 172291 unique_id port 172242 bytes_in 0 172242 station_ip 89.47.68.14 172242 port 22 172242 unique_id port 172246 username barzegar 172246 mac 172246 bytes_out 0 172246 bytes_in 0 172246 station_ip 5.119.187.175 172246 port 17 172246 unique_id port 172246 remote_ip 10.8.0.10 172250 username barzegar 172250 mac 172250 bytes_out 0 172250 bytes_in 0 172250 station_ip 5.119.187.175 172250 port 7 172250 unique_id port 172250 remote_ip 10.8.0.10 172251 username hashtadani4 172251 mac 172251 bytes_out 2005 172251 bytes_in 4327 172251 station_ip 83.122.178.27 172251 port 17 172251 unique_id port 172251 remote_ip 10.8.0.22 172257 username jafari 172257 kill_reason Another user logged on this global unique id 172257 mac 172257 bytes_out 0 172257 bytes_in 0 172257 station_ip 89.47.68.14 172257 port 22 172257 unique_id port 172261 username shadkam 172261 mac 172261 bytes_out 599691 172261 bytes_in 9524835 172261 station_ip 37.129.169.199 172261 port 23 172261 unique_id port 172261 remote_ip 10.8.0.74 172262 username aminvpn 172262 mac 172262 bytes_out 0 172262 bytes_in 0 172262 station_ip 5.119.94.158 172262 port 23 172262 unique_id port 172262 remote_ip 10.8.0.58 172263 username hashtadani4 172263 mac 172263 bytes_out 0 172263 bytes_in 0 172263 station_ip 83.122.178.27 172263 port 26 172263 unique_id port 172263 remote_ip 10.8.0.22 172264 username vanila 172264 mac 172264 bytes_out 273786 172264 bytes_in 541141 172264 station_ip 83.122.188.133 172264 port 7 172264 unique_id port 172264 remote_ip 10.8.0.46 172267 username barzegar 172267 mac 172267 bytes_out 0 172267 bytes_in 0 172267 station_ip 5.119.187.175 172267 port 28 172267 unique_id port 172267 remote_ip 10.8.0.10 172269 username hashtadani4 172269 mac 172269 bytes_out 0 172269 bytes_in 0 172269 station_ip 83.122.178.27 172269 port 28 172269 unique_id port 172269 remote_ip 10.8.0.22 172270 username hashtadani4 172270 mac 172270 bytes_out 0 172270 bytes_in 0 172270 station_ip 83.122.178.27 172270 port 28 172270 unique_id port 172270 remote_ip 10.8.0.22 172271 username aminvpn 172271 mac 172271 bytes_out 142646 172271 bytes_in 461914 172271 station_ip 113.203.17.141 172271 port 23 172271 unique_id port 172271 remote_ip 10.8.0.58 172275 username hashtadani4 172275 mac 172275 bytes_out 0 172275 bytes_in 0 172275 station_ip 83.122.178.27 172275 port 31 172275 unique_id port 172275 remote_ip 10.8.0.22 172278 username forozandeh1 172278 kill_reason Another user logged on this global unique id 172278 mac 172278 bytes_out 0 172278 bytes_in 0 172278 station_ip 83.122.207.13 172278 port 17 172278 unique_id port 172278 remote_ip 10.8.0.30 172279 username hashtadani4 172279 mac 172279 bytes_out 0 172279 bytes_in 0 172279 station_ip 83.122.178.27 172279 port 31 172279 unique_id port 172279 remote_ip 10.8.0.22 172280 username kalantary 172280 mac 172280 bytes_out 533697 172280 bytes_in 2858781 172280 station_ip 83.122.203.242 172280 port 23 172280 unique_id port 172280 remote_ip 10.8.0.50 172282 username hashtadani4 172282 mac 172282 bytes_out 0 172282 bytes_in 0 172282 station_ip 83.122.178.27 172282 port 31 172282 unique_id port 172282 remote_ip 10.8.0.22 172284 username milan 172284 kill_reason Another user logged on this global unique id 172284 mac 172284 bytes_out 0 172284 bytes_in 0 172284 station_ip 5.119.173.190 172284 port 6 172284 unique_id port 172289 username aminvpn 172289 mac 172289 bytes_out 0 172289 bytes_in 0 172289 station_ip 5.119.94.158 172266 bytes_in 0 172266 station_ip 83.122.178.27 172266 port 28 172266 unique_id port 172266 remote_ip 10.8.0.22 172268 username shadkam 172268 kill_reason Another user logged on this global unique id 172268 mac 172268 bytes_out 0 172268 bytes_in 0 172268 station_ip 83.122.168.128 172268 port 26 172268 unique_id port 172268 remote_ip 10.8.0.74 172272 username aminvpn 172272 mac 172272 bytes_out 0 172272 bytes_in 0 172272 station_ip 5.119.94.158 172272 port 28 172272 unique_id port 172272 remote_ip 10.8.0.58 172274 username hashtadani4 172274 mac 172274 bytes_out 0 172274 bytes_in 0 172274 station_ip 83.122.178.27 172274 port 31 172274 unique_id port 172274 remote_ip 10.8.0.22 172276 username barzegar 172276 mac 172276 bytes_out 8548 172276 bytes_in 18114 172276 station_ip 5.119.187.175 172276 port 23 172276 unique_id port 172276 remote_ip 10.8.0.10 172281 username majidsarmast 172281 kill_reason Another user logged on this global unique id 172281 mac 172281 bytes_out 0 172281 bytes_in 0 172281 station_ip 86.57.114.254 172281 port 29 172281 unique_id port 172281 remote_ip 10.8.0.170 172286 username barzegar 172286 mac 172286 bytes_out 3160 172286 bytes_in 5160 172286 station_ip 5.119.187.175 172286 port 32 172286 unique_id port 172286 remote_ip 10.8.0.10 172296 username hashtadani4 172296 mac 172296 bytes_out 0 172296 bytes_in 0 172296 station_ip 83.122.178.27 172296 port 32 172296 unique_id port 172296 remote_ip 10.8.0.22 172299 username milan 172299 kill_reason Another user logged on this global unique id 172299 mac 172299 bytes_out 0 172299 bytes_in 0 172299 station_ip 5.119.173.190 172299 port 6 172299 unique_id port 172301 username barzegar 172301 mac 172301 bytes_out 2395 172301 bytes_in 4580 172301 station_ip 5.119.187.175 172301 port 28 172301 unique_id port 172301 remote_ip 10.8.0.10 172308 username aminvpn 172308 mac 172308 bytes_out 0 172308 bytes_in 0 172308 station_ip 5.119.94.158 172308 port 26 172308 unique_id port 172308 remote_ip 10.8.0.58 172310 username saeed9658 172310 mac 172310 bytes_out 36256568 172310 bytes_in 21736267 172310 station_ip 5.119.31.171 172310 port 23 172310 unique_id port 172310 remote_ip 10.8.0.154 172313 username milan 172313 kill_reason Another user logged on this global unique id 172313 mac 172313 bytes_out 0 172313 bytes_in 0 172313 station_ip 5.119.173.190 172313 port 6 172313 unique_id port 172314 username barzegar 172314 mac 172314 bytes_out 12203 172314 bytes_in 25303 172314 station_ip 5.119.187.175 172314 port 17 172314 unique_id port 172314 remote_ip 10.8.0.10 172315 username sekonji3 172315 mac 172315 bytes_out 165391 172315 bytes_in 2962680 172315 station_ip 113.203.1.131 172315 port 26 172315 unique_id port 172315 remote_ip 10.8.0.62 172317 username kalantary 172317 mac 172317 bytes_out 1258824 172317 bytes_in 17551035 172317 station_ip 83.122.177.198 172317 port 31 172317 unique_id port 172317 remote_ip 10.8.0.50 172320 username hashtadani4 172320 mac 172320 bytes_out 0 172320 bytes_in 0 172320 station_ip 83.122.178.27 172320 port 3 172320 unique_id port 172320 remote_ip 10.8.0.22 172322 username morteza 172322 mac 172322 bytes_out 257175 172322 bytes_in 728646 172322 station_ip 83.122.124.80 172322 port 23 172322 unique_id port 172322 remote_ip 10.8.0.174 172323 username aminvpn 172323 mac 172323 bytes_out 196251 172323 bytes_in 230646 172323 station_ip 113.203.17.141 172323 port 7 172323 unique_id port 172323 remote_ip 10.8.0.58 172325 username aminvpn 172325 mac 172289 port 17 172289 unique_id port 172289 remote_ip 10.8.0.58 172292 username shadkam 172292 mac 172292 bytes_out 0 172292 bytes_in 0 172292 station_ip 83.122.168.128 172292 port 26 172292 unique_id port 172293 username jafari 172293 kill_reason Another user logged on this global unique id 172293 mac 172293 bytes_out 0 172293 bytes_in 0 172293 station_ip 89.47.68.14 172293 port 22 172293 unique_id port 172295 username shadkam 172295 mac 172295 bytes_out 0 172295 bytes_in 0 172295 station_ip 83.122.182.130 172295 port 23 172295 unique_id port 172295 remote_ip 10.8.0.74 172300 username hassan 172300 mac 172300 bytes_out 0 172300 bytes_in 0 172300 station_ip 37.27.48.191 172300 port 7 172300 unique_id port 172305 username milan 172305 kill_reason Another user logged on this global unique id 172305 mac 172305 bytes_out 0 172305 bytes_in 0 172305 station_ip 5.119.173.190 172305 port 6 172305 unique_id port 172307 username barzegar 172307 mac 172307 bytes_out 5427 172307 bytes_in 6790 172307 station_ip 5.119.187.175 172307 port 7 172307 unique_id port 172307 remote_ip 10.8.0.10 172311 username hashtadani4 172311 mac 172311 bytes_out 12891 172311 bytes_in 28937 172311 station_ip 83.122.178.27 172311 port 17 172311 unique_id port 172311 remote_ip 10.8.0.22 172319 username hashtadani4 172319 mac 172319 bytes_out 2111 172319 bytes_in 4380 172319 station_ip 83.122.178.27 172319 port 26 172319 unique_id port 172319 remote_ip 10.8.0.22 172321 username hashtadani4 172321 mac 172321 bytes_out 0 172321 bytes_in 0 172321 station_ip 83.122.178.27 172321 port 3 172321 unique_id port 172321 remote_ip 10.8.0.22 172324 username hashtadani4 172324 mac 172324 bytes_out 0 172324 bytes_in 0 172324 station_ip 83.122.178.27 172324 port 23 172324 unique_id port 172324 remote_ip 10.8.0.22 172328 username hashtadani4 172328 mac 172328 bytes_out 11091 172328 bytes_in 20471 172328 station_ip 83.122.178.27 172328 port 23 172328 unique_id port 172328 remote_ip 10.8.0.22 172329 username mehdizare 172329 mac 172329 bytes_out 23831 172329 bytes_in 47784 172329 station_ip 37.129.185.236 172329 port 26 172329 unique_id port 172329 remote_ip 10.8.0.210 172339 username morteza 172339 mac 172339 bytes_out 0 172339 bytes_in 0 172339 station_ip 83.122.124.80 172339 port 7 172339 unique_id port 172339 remote_ip 10.8.0.174 172345 username mirzaei 172345 kill_reason Another user logged on this global unique id 172345 mac 172345 bytes_out 0 172345 bytes_in 0 172345 station_ip 5.120.58.130 172345 port 12 172345 unique_id port 172350 username hashtadani4 172350 mac 172350 bytes_out 0 172350 bytes_in 0 172350 station_ip 83.122.178.27 172350 port 31 172350 unique_id port 172350 remote_ip 10.8.0.22 172351 username hashtadani4 172351 mac 172351 bytes_out 0 172351 bytes_in 0 172351 station_ip 83.122.178.27 172351 port 31 172351 unique_id port 172351 remote_ip 10.8.0.22 172352 username hashtadani4 172352 mac 172352 bytes_out 0 172352 bytes_in 0 172352 station_ip 83.122.178.27 172352 port 31 172352 unique_id port 172352 remote_ip 10.8.0.22 172353 username hashtadani4 172353 mac 172353 bytes_out 0 172353 bytes_in 0 172353 station_ip 83.122.178.27 172353 port 31 172353 unique_id port 172353 remote_ip 10.8.0.22 172355 username hashtadani4 172355 kill_reason Maximum check online fails reached 172355 mac 172355 bytes_out 0 172355 bytes_in 0 172355 station_ip 83.122.178.27 172355 port 31 172355 unique_id port 172360 username barzegar 172291 remote_ip 10.8.0.22 172294 username hashtadani4 172294 mac 172294 bytes_out 0 172294 bytes_in 0 172294 station_ip 83.122.178.27 172294 port 26 172294 unique_id port 172294 remote_ip 10.8.0.22 172297 username shadkam 172297 mac 172297 bytes_out 37464 172297 bytes_in 22667 172297 station_ip 83.123.39.85 172297 port 28 172297 unique_id port 172297 remote_ip 10.8.0.74 172298 username hassan 172298 kill_reason Another user logged on this global unique id 172298 mac 172298 bytes_out 0 172298 bytes_in 0 172298 station_ip 37.27.48.191 172298 port 7 172298 unique_id port 172302 username vanila 172302 mac 172302 bytes_out 104975 172302 bytes_in 503783 172302 station_ip 83.122.160.53 172302 port 26 172302 unique_id port 172302 remote_ip 10.8.0.46 172303 username hashtadani4 172303 mac 172303 bytes_out 0 172303 bytes_in 0 172303 station_ip 83.122.178.27 172303 port 7 172303 unique_id port 172303 remote_ip 10.8.0.22 172304 username hashtadani4 172304 mac 172304 bytes_out 0 172304 bytes_in 0 172304 station_ip 83.122.178.27 172304 port 26 172304 unique_id port 172304 remote_ip 10.8.0.22 172306 username aminvpn 172306 mac 172306 bytes_out 349105 172306 bytes_in 4451360 172306 station_ip 113.203.17.141 172306 port 17 172306 unique_id port 172306 remote_ip 10.8.0.58 172309 username sedighe 172309 mac 172309 bytes_out 1485996 172309 bytes_in 25475481 172309 station_ip 83.123.55.158 172309 port 31 172309 unique_id port 172309 remote_ip 10.8.0.78 172312 username barzegar 172312 mac 172312 bytes_out 3634 172312 bytes_in 5319 172312 station_ip 5.119.187.175 172312 port 28 172312 unique_id port 172312 remote_ip 10.8.0.10 172316 username hassan 172316 kill_reason Another user logged on this global unique id 172316 mac 172316 bytes_out 0 172316 bytes_in 0 172316 station_ip 5.120.48.37 172316 port 32 172316 unique_id port 172316 remote_ip 10.8.0.214 172318 username mehdizare 172318 mac 172318 bytes_out 0 172318 bytes_in 0 172318 station_ip 37.129.185.236 172318 port 3 172318 unique_id port 172326 username barzegar 172326 mac 172326 bytes_out 10725 172326 bytes_in 14721 172326 station_ip 5.119.187.175 172326 port 17 172326 unique_id port 172326 remote_ip 10.8.0.10 172327 username hassan 172327 kill_reason Another user logged on this global unique id 172327 mac 172327 bytes_out 0 172327 bytes_in 0 172327 station_ip 5.120.48.37 172327 port 32 172327 unique_id port 172332 username hashtadani4 172332 mac 172332 bytes_out 0 172332 bytes_in 0 172332 station_ip 83.122.178.27 172332 port 23 172332 unique_id port 172332 remote_ip 10.8.0.22 172334 username hashtadani4 172334 mac 172334 bytes_out 0 172334 bytes_in 0 172334 station_ip 83.122.178.27 172334 port 3 172334 unique_id port 172334 remote_ip 10.8.0.22 172335 username barzegar 172335 mac 172335 bytes_out 0 172335 bytes_in 0 172335 station_ip 5.119.187.175 172335 port 3 172335 unique_id port 172335 remote_ip 10.8.0.10 172336 username hashtadani4 172336 mac 172336 bytes_out 0 172336 bytes_in 0 172336 station_ip 83.122.178.27 172336 port 3 172336 unique_id port 172336 remote_ip 10.8.0.22 172337 username hashtadani4 172337 kill_reason Maximum check online fails reached 172337 mac 172337 bytes_out 0 172337 bytes_in 0 172337 station_ip 83.122.178.27 172337 port 23 172337 unique_id port 172338 username morteza 172338 mac 172338 bytes_out 2459422 172338 bytes_in 40500681 172338 station_ip 83.122.124.80 172338 port 7 172338 unique_id port 172338 remote_ip 10.8.0.174 172325 bytes_out 0 172325 bytes_in 0 172325 station_ip 5.119.94.158 172325 port 3 172325 unique_id port 172325 remote_ip 10.8.0.58 172330 username barzegar 172330 mac 172330 bytes_out 3158 172330 bytes_in 5451 172330 station_ip 5.119.187.175 172330 port 3 172330 unique_id port 172330 remote_ip 10.8.0.10 172331 username barzegar 172331 mac 172331 bytes_out 0 172331 bytes_in 0 172331 station_ip 5.119.187.175 172331 port 3 172331 unique_id port 172331 remote_ip 10.8.0.10 172333 username hashtadani4 172333 mac 172333 bytes_out 0 172333 bytes_in 0 172333 station_ip 83.122.178.27 172333 port 3 172333 unique_id port 172333 remote_ip 10.8.0.22 172341 username hashtadani4 172341 mac 172341 bytes_out 0 172341 bytes_in 0 172341 station_ip 83.122.178.27 172341 port 17 172341 unique_id port 172341 remote_ip 10.8.0.22 172343 username hashtadani4 172343 mac 172343 bytes_out 0 172343 bytes_in 0 172343 station_ip 83.122.178.27 172343 port 7 172343 unique_id port 172343 remote_ip 10.8.0.22 172346 username hashtadani4 172346 mac 172346 bytes_out 0 172346 bytes_in 0 172346 station_ip 83.122.178.27 172346 port 31 172346 unique_id port 172346 remote_ip 10.8.0.22 172349 username hashtadani4 172349 mac 172349 bytes_out 0 172349 bytes_in 0 172349 station_ip 83.122.178.27 172349 port 31 172349 unique_id port 172349 remote_ip 10.8.0.22 172357 username aminvpn 172357 mac 172357 bytes_out 715331 172357 bytes_in 9516206 172357 station_ip 113.203.17.141 172357 port 17 172357 unique_id port 172357 remote_ip 10.8.0.58 172364 username alipour 172364 mac 172364 bytes_out 10055 172364 bytes_in 18060 172364 station_ip 83.122.227.250 172364 port 34 172364 unique_id port 172364 remote_ip 10.8.0.26 172365 username hashtadani4 172365 mac 172365 bytes_out 0 172365 bytes_in 0 172365 station_ip 5.202.9.175 172365 port 29 172365 unique_id port 172365 remote_ip 10.8.0.22 172368 username hashtadani4 172368 mac 172368 bytes_out 0 172368 bytes_in 0 172368 station_ip 5.202.9.175 172368 port 3 172368 unique_id port 172368 remote_ip 10.8.0.22 172372 username hassan 172372 mac 172372 bytes_out 0 172372 bytes_in 0 172372 station_ip 5.120.48.37 172372 port 32 172372 unique_id port 172373 username hashtadani4 172373 mac 172373 bytes_out 0 172373 bytes_in 0 172373 station_ip 5.202.9.175 172373 port 29 172373 unique_id port 172373 remote_ip 10.8.0.22 172379 username hashtadani4 172379 mac 172379 bytes_out 0 172379 bytes_in 0 172379 station_ip 5.202.9.175 172379 port 17 172379 unique_id port 172379 remote_ip 10.8.0.22 172380 username hashtadani4 172380 mac 172380 bytes_out 0 172380 bytes_in 0 172380 station_ip 5.202.9.175 172380 port 17 172380 unique_id port 172380 remote_ip 10.8.0.22 172382 username hashtadani4 172382 mac 172382 bytes_out 0 172382 bytes_in 0 172382 station_ip 5.202.9.175 172382 port 17 172382 unique_id port 172382 remote_ip 10.8.0.22 172384 username morteza 172384 kill_reason Another user logged on this global unique id 172384 mac 172384 bytes_out 0 172384 bytes_in 0 172384 station_ip 83.122.124.80 172384 port 7 172384 unique_id port 172384 remote_ip 10.8.0.174 172387 username barzegar 172387 mac 172387 bytes_out 0 172387 bytes_in 0 172387 station_ip 5.119.187.175 172387 port 32 172387 unique_id port 172387 remote_ip 10.8.0.10 172388 username hashtadani4 172388 mac 172388 bytes_out 0 172388 bytes_in 0 172388 station_ip 83.122.178.27 172388 port 33 172340 username aminvpn 172340 mac 172340 bytes_out 68411 172340 bytes_in 54646 172340 station_ip 113.203.17.141 172340 port 17 172340 unique_id port 172340 remote_ip 10.8.0.58 172342 username aminvpn 172342 mac 172342 bytes_out 0 172342 bytes_in 0 172342 station_ip 5.119.94.158 172342 port 7 172342 unique_id port 172342 remote_ip 10.8.0.58 172344 username morteza 172344 mac 172344 bytes_out 0 172344 bytes_in 0 172344 station_ip 83.122.124.80 172344 port 31 172344 unique_id port 172344 remote_ip 10.8.0.174 172347 username barzegar 172347 mac 172347 bytes_out 16733 172347 bytes_in 27604 172347 station_ip 5.119.187.175 172347 port 3 172347 unique_id port 172347 remote_ip 10.8.0.10 172348 username hashtadani4 172348 mac 172348 bytes_out 0 172348 bytes_in 0 172348 station_ip 83.122.178.27 172348 port 3 172348 unique_id port 172348 remote_ip 10.8.0.22 172354 username hashtadani4 172354 mac 172354 bytes_out 0 172354 bytes_in 0 172354 station_ip 83.122.178.27 172354 port 31 172354 unique_id port 172354 remote_ip 10.8.0.22 172356 username alipour 172356 mac 172356 bytes_out 0 172356 bytes_in 0 172356 station_ip 37.129.187.181 172356 port 2 172356 unique_id port 172358 username aminvpn 172358 mac 172358 bytes_out 0 172358 bytes_in 0 172358 station_ip 5.119.94.158 172358 port 2 172358 unique_id port 172358 remote_ip 10.8.0.58 172359 username kalantary 172359 mac 172359 bytes_out 55786 172359 bytes_in 387250 172359 station_ip 83.122.128.46 172359 port 33 172359 unique_id port 172359 remote_ip 10.8.0.50 172361 username hashtadani4 172361 mac 172361 bytes_out 0 172361 bytes_in 0 172361 station_ip 83.122.178.27 172361 port 17 172361 unique_id port 172361 remote_ip 10.8.0.22 172362 username saeed9658 172362 mac 172362 bytes_out 3135704 172362 bytes_in 42684960 172362 station_ip 5.119.31.171 172362 port 3 172362 unique_id port 172362 remote_ip 10.8.0.154 172367 username sekonji3 172367 mac 172367 bytes_out 10415 172367 bytes_in 13561 172367 station_ip 113.203.1.131 172367 port 3 172367 unique_id port 172367 remote_ip 10.8.0.62 172370 username alipour 172370 mac 172370 bytes_out 7078 172370 bytes_in 13617 172370 station_ip 83.123.75.113 172370 port 17 172370 unique_id port 172370 remote_ip 10.8.0.26 172375 username alipour 172375 mac 172375 bytes_out 41086 172375 bytes_in 137189 172375 station_ip 37.129.1.204 172375 port 33 172375 unique_id port 172375 remote_ip 10.8.0.26 172376 username aminvpn 172376 mac 172376 bytes_out 284022 172376 bytes_in 3398201 172376 station_ip 113.203.17.141 172376 port 2 172376 unique_id port 172376 remote_ip 10.8.0.58 172381 username alipour 172381 mac 172381 bytes_out 2461 172381 bytes_in 7374 172381 station_ip 83.123.95.112 172381 port 2 172381 unique_id port 172381 remote_ip 10.8.0.26 172385 username aminvpn 172385 kill_reason Maximum check online fails reached 172385 mac 172385 bytes_out 0 172385 bytes_in 0 172385 station_ip 5.119.94.158 172385 port 17 172385 unique_id port 172389 username alipour 172389 mac 172389 bytes_out 34113 172389 bytes_in 41019 172389 station_ip 37.129.76.128 172389 port 2 172389 unique_id port 172389 remote_ip 10.8.0.26 172391 username aminvpn 172391 mac 172391 bytes_out 0 172391 bytes_in 0 172391 station_ip 5.119.94.158 172391 port 2 172391 unique_id port 172391 remote_ip 10.8.0.58 172392 username aminvpn 172392 mac 172392 bytes_out 0 172392 bytes_in 0 172392 station_ip 5.119.94.158 172360 mac 172360 bytes_out 0 172360 bytes_in 0 172360 station_ip 5.119.187.175 172360 port 2 172360 unique_id port 172360 remote_ip 10.8.0.10 172363 username majidsarmast 172363 mac 172363 bytes_out 0 172363 bytes_in 0 172363 station_ip 86.57.114.254 172363 port 29 172363 unique_id port 172366 username hashtadani4 172366 mac 172366 bytes_out 0 172366 bytes_in 0 172366 station_ip 5.202.9.175 172366 port 29 172366 unique_id port 172366 remote_ip 10.8.0.22 172369 username hashtadani4 172369 mac 172369 bytes_out 0 172369 bytes_in 0 172369 station_ip 5.202.9.175 172369 port 3 172369 unique_id port 172369 remote_ip 10.8.0.22 172371 username barzegar 172371 mac 172371 bytes_out 0 172371 bytes_in 0 172371 station_ip 5.119.187.175 172371 port 3 172371 unique_id port 172371 remote_ip 10.8.0.10 172374 username hashtadani4 172374 mac 172374 bytes_out 0 172374 bytes_in 0 172374 station_ip 5.202.9.175 172374 port 3 172374 unique_id port 172374 remote_ip 10.8.0.22 172377 username aminvpn 172377 mac 172377 bytes_out 0 172377 bytes_in 0 172377 station_ip 5.119.94.158 172377 port 3 172377 unique_id port 172377 remote_ip 10.8.0.58 172378 username hashtadani4 172378 mac 172378 bytes_out 0 172378 bytes_in 0 172378 station_ip 5.202.9.175 172378 port 2 172378 unique_id port 172378 remote_ip 10.8.0.22 172383 username hashtadani4 172383 mac 172383 bytes_out 0 172383 bytes_in 0 172383 station_ip 83.122.178.27 172383 port 32 172383 unique_id port 172383 remote_ip 10.8.0.22 172386 username hashtadani4 172386 kill_reason Maximum check online fails reached 172386 mac 172386 bytes_out 0 172386 bytes_in 0 172386 station_ip 83.122.178.27 172386 port 29 172386 unique_id port 172394 username hashtadani4 172394 mac 172394 bytes_out 2111 172394 bytes_in 4433 172394 station_ip 83.122.178.27 172394 port 35 172394 unique_id port 172394 remote_ip 10.8.0.22 172401 username rahim 172401 mac 172401 bytes_out 1570865 172401 bytes_in 6572856 172401 station_ip 5.120.55.192 172401 port 32 172401 unique_id port 172401 remote_ip 10.8.0.134 172403 username aminvpn 172403 mac 172403 bytes_out 0 172403 bytes_in 0 172403 station_ip 5.119.94.158 172403 port 28 172403 unique_id port 172403 remote_ip 10.8.0.58 172404 username rahim 172404 mac 172404 bytes_out 0 172404 bytes_in 0 172404 station_ip 5.120.55.192 172404 port 32 172404 unique_id port 172404 remote_ip 10.8.0.134 172406 username barzegar 172406 mac 172406 bytes_out 0 172406 bytes_in 0 172406 station_ip 5.119.187.175 172406 port 32 172406 unique_id port 172406 remote_ip 10.8.0.10 172410 username morteza 172410 mac 172410 bytes_out 0 172410 bytes_in 0 172410 station_ip 83.122.124.80 172410 port 7 172410 unique_id port 172410 remote_ip 10.8.0.174 172411 username Mahin 172411 kill_reason Relative expiration date has reached 172411 mac 172411 bytes_out 0 172411 bytes_in 0 172411 station_ip 5.119.218.240 172411 port 14 172411 unique_id port 172413 username morteza 172413 mac 172413 bytes_out 0 172413 bytes_in 0 172413 station_ip 83.122.124.80 172413 port 7 172413 unique_id port 172413 remote_ip 10.8.0.174 172415 username rahim 172415 mac 172415 bytes_out 0 172415 bytes_in 0 172415 station_ip 5.120.55.192 172415 port 14 172415 unique_id port 172415 remote_ip 10.8.0.134 172417 username Mahin 172417 kill_reason Relative expiration date has reached 172417 mac 172417 bytes_out 0 172417 bytes_in 0 172417 station_ip 5.119.218.240 172388 unique_id port 172388 remote_ip 10.8.0.22 172390 username aminvpn 172390 mac 172390 bytes_out 276335 172390 bytes_in 2042823 172390 station_ip 113.203.17.141 172390 port 3 172390 unique_id port 172390 remote_ip 10.8.0.58 172395 username pourshad 172395 mac 172395 bytes_out 0 172395 bytes_in 0 172395 station_ip 5.120.193.18 172395 port 14 172395 unique_id port 172396 username hashtadani4 172396 mac 172396 bytes_out 122939 172396 bytes_in 1402787 172396 station_ip 83.122.178.27 172396 port 14 172396 unique_id port 172396 remote_ip 10.8.0.22 172399 username hashtadani4 172399 mac 172399 bytes_out 0 172399 bytes_in 0 172399 station_ip 83.122.178.27 172399 port 14 172399 unique_id port 172399 remote_ip 10.8.0.22 172400 username mehdizare 172400 mac 172400 bytes_out 12698438 172400 bytes_in 30249940 172400 station_ip 37.129.185.236 172400 port 28 172400 unique_id port 172400 remote_ip 10.8.0.210 172408 username rahim 172408 mac 172408 bytes_out 0 172408 bytes_in 0 172408 station_ip 5.120.55.192 172408 port 2 172408 unique_id port 172408 remote_ip 10.8.0.134 172412 username forozandeh1 172412 mac 172412 bytes_out 1050101 172412 bytes_in 14048297 172412 station_ip 83.123.150.219 172412 port 34 172412 unique_id port 172412 remote_ip 10.8.0.30 172416 username barzegar 172416 mac 172416 bytes_out 2501 172416 bytes_in 4275 172416 station_ip 5.119.187.175 172416 port 2 172416 unique_id port 172416 remote_ip 10.8.0.10 172420 username morteza 172420 mac 172420 bytes_out 0 172420 bytes_in 0 172420 station_ip 83.122.124.80 172420 port 14 172420 unique_id port 172420 remote_ip 10.8.0.174 172422 username morteza 172422 mac 172422 bytes_out 0 172422 bytes_in 0 172422 station_ip 83.122.124.80 172422 port 14 172422 unique_id port 172422 remote_ip 10.8.0.174 172424 username barzegar 172424 mac 172424 bytes_out 0 172424 bytes_in 0 172424 station_ip 5.119.187.175 172424 port 7 172424 unique_id port 172424 remote_ip 10.8.0.10 172425 username rahim 172425 mac 172425 bytes_out 0 172425 bytes_in 0 172425 station_ip 5.120.55.192 172425 port 7 172425 unique_id port 172425 remote_ip 10.8.0.134 172428 username aminvpn 172428 mac 172428 bytes_out 147993 172428 bytes_in 181158 172428 station_ip 113.203.17.141 172428 port 28 172428 unique_id port 172428 remote_ip 10.8.0.58 172430 username aminvpn 172430 mac 172430 bytes_out 0 172430 bytes_in 0 172430 station_ip 5.119.94.158 172430 port 36 172430 unique_id port 172430 remote_ip 10.8.0.58 172431 username alipour 172431 mac 172431 bytes_out 528223 172431 bytes_in 5958292 172431 station_ip 83.123.111.43 172431 port 33 172431 unique_id port 172431 remote_ip 10.8.0.26 172435 username sabaghnezhad 172435 mac 172435 bytes_out 1416802 172435 bytes_in 3750645 172435 station_ip 83.122.165.106 172435 port 26 172435 unique_id port 172435 remote_ip 10.8.0.66 172441 username milan 172441 kill_reason Another user logged on this global unique id 172441 mac 172441 bytes_out 0 172441 bytes_in 0 172441 station_ip 5.119.173.190 172441 port 6 172441 unique_id port 172443 username barzegar 172443 mac 172443 bytes_out 0 172443 bytes_in 0 172443 station_ip 5.119.187.175 172443 port 7 172443 unique_id port 172443 remote_ip 10.8.0.10 172445 username shadkam 172445 mac 172445 bytes_out 1044801 172445 bytes_in 14208375 172445 station_ip 37.129.147.140 172445 port 33 172445 unique_id port 172445 remote_ip 10.8.0.74 172446 username aminvpn 172446 mac 172392 port 2 172392 unique_id port 172392 remote_ip 10.8.0.58 172393 username barzegar 172393 mac 172393 bytes_out 0 172393 bytes_in 0 172393 station_ip 5.119.187.175 172393 port 3 172393 unique_id port 172393 remote_ip 10.8.0.10 172397 username barzegar 172397 mac 172397 bytes_out 0 172397 bytes_in 0 172397 station_ip 5.119.187.175 172397 port 35 172397 unique_id port 172397 remote_ip 10.8.0.10 172398 username kalantary 172398 mac 172398 bytes_out 978220 172398 bytes_in 8756202 172398 station_ip 83.122.160.202 172398 port 34 172398 unique_id port 172398 remote_ip 10.8.0.50 172402 username aminvpn 172402 mac 172402 bytes_out 396022 172402 bytes_in 5167212 172402 station_ip 113.203.17.141 172402 port 2 172402 unique_id port 172402 remote_ip 10.8.0.58 172405 username godarzi 172405 mac 172405 bytes_out 3608762 172405 bytes_in 47738107 172405 station_ip 5.119.200.207 172405 port 14 172405 unique_id port 172405 remote_ip 10.8.0.38 172407 username hashtadani4 172407 mac 172407 bytes_out 2114 172407 bytes_in 4495 172407 station_ip 83.123.0.38 172407 port 2 172407 unique_id port 172407 remote_ip 10.8.0.22 172409 username morteza 172409 mac 172409 bytes_out 0 172409 bytes_in 0 172409 station_ip 83.122.124.80 172409 port 7 172409 unique_id port 172414 username Mahin 172414 kill_reason Relative expiration date has reached 172414 mac 172414 bytes_out 0 172414 bytes_in 0 172414 station_ip 5.119.218.240 172414 port 7 172414 unique_id port 172419 username morteza 172419 mac 172419 bytes_out 0 172419 bytes_in 0 172419 station_ip 83.122.124.80 172419 port 2 172419 unique_id port 172419 remote_ip 10.8.0.174 172423 username rahim 172423 mac 172423 bytes_out 289921 172423 bytes_in 1503292 172423 station_ip 5.120.55.192 172423 port 7 172423 unique_id port 172423 remote_ip 10.8.0.134 172427 username pourshad 172427 mac 172427 bytes_out 64693 172427 bytes_in 81656 172427 station_ip 5.120.193.18 172427 port 3 172427 unique_id port 172427 remote_ip 10.8.0.42 172429 username rahim 172429 mac 172429 bytes_out 0 172429 bytes_in 0 172429 station_ip 5.120.55.192 172429 port 3 172429 unique_id port 172429 remote_ip 10.8.0.134 172432 username barzegar 172432 mac 172432 bytes_out 0 172432 bytes_in 0 172432 station_ip 5.119.187.175 172432 port 37 172432 unique_id port 172432 remote_ip 10.8.0.10 172436 username rahim 172436 mac 172436 bytes_out 1230383 172436 bytes_in 658667 172436 station_ip 5.120.55.192 172436 port 36 172436 unique_id port 172436 remote_ip 10.8.0.134 172439 username mehdizare 172439 mac 172439 bytes_out 78462 172439 bytes_in 38221 172439 station_ip 37.129.185.236 172439 port 35 172439 unique_id port 172439 remote_ip 10.8.0.210 172444 username mohsenaskari 172444 mac 172444 bytes_out 25623 172444 bytes_in 60716 172444 station_ip 46.225.210.246 172444 port 37 172444 unique_id port 172444 remote_ip 10.8.0.222 172447 username aminvpn 172447 mac 172447 bytes_out 0 172447 bytes_in 0 172447 station_ip 5.119.94.158 172447 port 38 172447 unique_id port 172447 remote_ip 10.8.0.58 172450 username hashtadani4 172450 mac 172450 bytes_out 0 172450 bytes_in 0 172450 station_ip 83.123.79.29 172450 port 33 172450 unique_id port 172450 remote_ip 10.8.0.22 172451 username rajaei 172451 mac 172451 bytes_out 777427 172451 bytes_in 10687533 172451 station_ip 5.200.119.12 172451 port 36 172451 unique_id port 172451 remote_ip 10.8.0.218 172455 username aminvpn 172455 mac 172417 port 2 172417 unique_id port 172418 username rahim 172418 mac 172418 bytes_out 0 172418 bytes_in 0 172418 station_ip 5.120.55.192 172418 port 2 172418 unique_id port 172418 remote_ip 10.8.0.134 172421 username godarzi 172421 mac 172421 bytes_out 160996 172421 bytes_in 426017 172421 station_ip 5.119.200.207 172421 port 2 172421 unique_id port 172421 remote_ip 10.8.0.38 172426 username rahim 172426 mac 172426 bytes_out 0 172426 bytes_in 0 172426 station_ip 5.120.55.192 172426 port 7 172426 unique_id port 172426 remote_ip 10.8.0.134 172433 username rezaei 172433 mac 172433 bytes_out 1870786 172433 bytes_in 25782308 172433 station_ip 5.120.141.233 172433 port 34 172433 unique_id port 172433 remote_ip 10.8.0.198 172434 username kalantary 172434 mac 172434 bytes_out 989038 172434 bytes_in 15586897 172434 station_ip 83.122.191.78 172434 port 2 172434 unique_id port 172434 remote_ip 10.8.0.50 172437 username houshang 172437 mac 172437 bytes_out 150073 172437 bytes_in 1267089 172437 station_ip 5.120.135.85 172437 port 3 172437 unique_id port 172437 remote_ip 10.8.0.82 172438 username hashtadani4 172438 mac 172438 bytes_out 5637 172438 bytes_in 13961 172438 station_ip 83.123.79.29 172438 port 26 172438 unique_id port 172438 remote_ip 10.8.0.22 172440 username alipour 172440 mac 172440 bytes_out 41890 172440 bytes_in 59402 172440 station_ip 83.123.111.43 172440 port 38 172440 unique_id port 172440 remote_ip 10.8.0.26 172442 username pourshad 172442 mac 172442 bytes_out 27756 172442 bytes_in 40787 172442 station_ip 5.120.193.18 172442 port 7 172442 unique_id port 172442 remote_ip 10.8.0.42 172448 username barzegar 172448 mac 172448 bytes_out 0 172448 bytes_in 0 172448 station_ip 5.119.187.175 172448 port 37 172448 unique_id port 172448 remote_ip 10.8.0.10 172452 username aminvpn 172452 unique_id port 172452 terminate_cause User-Request 172452 bytes_out 359359 172452 bytes_in 6054678 172452 station_ip 5.119.94.158 172452 port 15728782 172452 nas_port_type Virtual 172452 remote_ip 5.5.5.233 172457 username houshang 172457 mac 172457 bytes_out 2531663 172457 bytes_in 36796971 172457 station_ip 5.120.139.102 172457 port 34 172457 unique_id port 172457 remote_ip 10.8.0.82 172458 username rahim 172458 kill_reason Another user logged on this global unique id 172458 mac 172458 bytes_out 0 172458 bytes_in 0 172458 station_ip 5.120.55.192 172458 port 2 172458 unique_id port 172458 remote_ip 10.8.0.134 172460 username barzegar 172460 mac 172460 bytes_out 2691 172460 bytes_in 4822 172460 station_ip 5.119.187.175 172460 port 36 172460 unique_id port 172460 remote_ip 10.8.0.10 172461 username milan 172461 kill_reason Another user logged on this global unique id 172461 mac 172461 bytes_out 0 172461 bytes_in 0 172461 station_ip 5.119.173.190 172461 port 6 172461 unique_id port 172462 username shadkam 172462 mac 172462 bytes_out 591303 172462 bytes_in 10342707 172462 station_ip 37.129.125.223 172462 port 35 172462 unique_id port 172462 remote_ip 10.8.0.74 172466 username shadkam 172466 mac 172466 bytes_out 277485 172466 bytes_in 5382059 172466 station_ip 37.129.39.191 172466 port 38 172466 unique_id port 172466 remote_ip 10.8.0.74 172468 username barzegar 172468 mac 172468 bytes_out 2535 172468 bytes_in 4644 172468 station_ip 5.119.187.175 172468 port 40 172468 unique_id port 172468 remote_ip 10.8.0.10 172470 username alipour 172470 mac 172470 bytes_out 11348 172470 bytes_in 19213 172470 station_ip 37.129.62.207 172446 bytes_out 102884 172446 bytes_in 208274 172446 station_ip 113.203.17.141 172446 port 28 172446 unique_id port 172446 remote_ip 10.8.0.58 172449 username pourshad 172449 mac 172449 bytes_out 2788 172449 bytes_in 4094 172449 station_ip 5.120.193.18 172449 port 7 172449 unique_id port 172449 remote_ip 10.8.0.42 172453 username alipour 172453 mac 172453 bytes_out 19819 172453 bytes_in 23628 172453 station_ip 83.123.111.43 172453 port 35 172453 unique_id port 172453 remote_ip 10.8.0.26 172454 username aminvpn 172454 mac 172454 bytes_out 552606 172454 bytes_in 8730775 172454 station_ip 113.203.17.141 172454 port 7 172454 unique_id port 172454 remote_ip 10.8.0.58 172465 username pourshad 172465 mac 172465 bytes_out 187512 172465 bytes_in 1038302 172465 station_ip 5.120.193.18 172465 port 28 172465 unique_id port 172465 remote_ip 10.8.0.42 172475 username morteza 172475 mac 172475 bytes_out 0 172475 bytes_in 0 172475 station_ip 83.122.124.80 172475 port 3 172475 unique_id port 172475 remote_ip 10.8.0.174 172478 username morteza 172478 mac 172478 bytes_out 172012 172478 bytes_in 2794295 172478 station_ip 83.122.124.80 172478 port 38 172478 unique_id port 172478 remote_ip 10.8.0.174 172482 username aminvpn 172482 mac 172482 bytes_out 0 172482 bytes_in 0 172482 station_ip 5.119.94.158 172482 port 40 172482 unique_id port 172482 remote_ip 10.8.0.58 172484 username morteza 172484 mac 172484 bytes_out 0 172484 bytes_in 0 172484 station_ip 83.122.124.80 172484 port 34 172484 unique_id port 172484 remote_ip 10.8.0.174 172487 username morteza 172487 mac 172487 bytes_out 0 172487 bytes_in 0 172487 station_ip 83.122.124.80 172487 port 32 172487 unique_id port 172487 remote_ip 10.8.0.174 172489 username rahim 172489 kill_reason Another user logged on this global unique id 172489 mac 172489 bytes_out 0 172489 bytes_in 0 172489 station_ip 5.120.55.192 172489 port 2 172489 unique_id port 172491 username kalantary 172491 mac 172491 bytes_out 677703 172491 bytes_in 6367559 172491 station_ip 83.122.229.234 172491 port 37 172491 unique_id port 172491 remote_ip 10.8.0.50 172498 username morteza 172498 mac 172498 bytes_out 0 172498 bytes_in 0 172498 station_ip 83.122.124.80 172498 port 37 172498 unique_id port 172498 remote_ip 10.8.0.174 172503 username aminvpn 172503 unique_id port 172503 terminate_cause Lost-Carrier 172503 bytes_out 662418 172503 bytes_in 11294582 172503 station_ip 5.119.94.158 172503 port 15728784 172503 nas_port_type Virtual 172503 remote_ip 5.5.5.231 172511 username alikomsari 172511 mac 172511 bytes_out 2854924 172511 bytes_in 14786339 172511 station_ip 5.120.87.99 172511 port 35 172511 unique_id port 172511 remote_ip 10.8.0.118 172512 username rahim 172512 kill_reason Another user logged on this global unique id 172512 mac 172512 bytes_out 0 172512 bytes_in 0 172512 station_ip 5.120.55.192 172512 port 2 172512 unique_id port 172514 username aminvpn 172514 mac 172514 bytes_out 0 172514 bytes_in 0 172514 station_ip 5.119.94.158 172514 port 32 172514 unique_id port 172514 remote_ip 10.8.0.58 172517 username forozandeh1 172517 mac 172517 bytes_out 823758 172517 bytes_in 11725342 172517 station_ip 83.122.198.38 172517 port 34 172517 unique_id port 172517 remote_ip 10.8.0.30 172518 username morteza 172518 mac 172518 bytes_out 0 172518 bytes_in 0 172518 station_ip 83.122.124.80 172518 port 34 172518 unique_id port 172518 remote_ip 10.8.0.174 172520 username barzegar 172520 mac 172455 bytes_out 0 172455 bytes_in 0 172455 station_ip 5.119.94.158 172455 port 35 172455 unique_id port 172455 remote_ip 10.8.0.58 172456 username alipour 172456 kill_reason Maximum check online fails reached 172456 mac 172456 bytes_out 0 172456 bytes_in 0 172456 station_ip 83.123.111.43 172456 port 33 172456 unique_id port 172459 username mohsenaskari 172459 mac 172459 bytes_out 60023 172459 bytes_in 131887 172459 station_ip 46.225.210.246 172459 port 34 172459 unique_id port 172459 remote_ip 10.8.0.222 172463 username yarmohamadi 172463 mac 172463 bytes_out 3441698 172463 bytes_in 11571845 172463 station_ip 5.120.132.49 172463 port 3 172463 unique_id port 172463 remote_ip 10.8.0.6 172464 username alipour 172464 mac 172464 bytes_out 14278 172464 bytes_in 17609 172464 station_ip 83.123.111.43 172464 port 34 172464 unique_id port 172464 remote_ip 10.8.0.26 172467 username aminvpn 172467 mac 172467 bytes_out 455880 172467 bytes_in 7200118 172467 station_ip 113.203.17.141 172467 port 7 172467 unique_id port 172467 remote_ip 10.8.0.58 172469 username aminvpn 172469 mac 172469 bytes_out 0 172469 bytes_in 0 172469 station_ip 5.119.94.158 172469 port 34 172469 unique_id port 172469 remote_ip 10.8.0.58 172471 username shadkam 172471 mac 172471 bytes_out 269161 172471 bytes_in 4160836 172471 station_ip 83.122.224.125 172471 port 28 172471 unique_id port 172471 remote_ip 10.8.0.74 172474 username morteza 172474 mac 172474 bytes_out 1625318 172474 bytes_in 25099942 172474 station_ip 83.122.124.80 172474 port 32 172474 unique_id port 172474 remote_ip 10.8.0.174 172476 username pourshad 172476 mac 172476 bytes_out 14083 172476 bytes_in 24272 172476 station_ip 5.120.193.18 172476 port 38 172476 unique_id port 172476 remote_ip 10.8.0.42 172477 username alipour 172477 mac 172477 bytes_out 11376 172477 bytes_in 12353 172477 station_ip 37.129.62.207 172477 port 28 172477 unique_id port 172477 remote_ip 10.8.0.26 172480 username alipour 172480 mac 172480 bytes_out 13454 172480 bytes_in 13651 172480 station_ip 83.123.43.218 172480 port 3 172480 unique_id port 172480 remote_ip 10.8.0.26 172483 username barzegar 172483 mac 172483 bytes_out 2656 172483 bytes_in 4965 172483 station_ip 5.119.187.175 172483 port 39 172483 unique_id port 172483 remote_ip 10.8.0.10 172485 username houshang 172485 mac 172485 bytes_out 1078116 172485 bytes_in 16405286 172485 station_ip 5.120.139.102 172485 port 32 172485 unique_id port 172485 remote_ip 10.8.0.82 172486 username morteza 172486 mac 172486 bytes_out 0 172486 bytes_in 0 172486 station_ip 83.122.124.80 172486 port 32 172486 unique_id port 172486 remote_ip 10.8.0.174 172490 username aminvpn 172490 mac 172490 bytes_out 61654 172490 bytes_in 225122 172490 station_ip 113.203.17.141 172490 port 34 172490 unique_id port 172490 remote_ip 10.8.0.58 172494 username alipour 172494 mac 172494 bytes_out 40184 172494 bytes_in 58467 172494 station_ip 83.123.43.218 172494 port 3 172494 unique_id port 172494 remote_ip 10.8.0.26 172499 username morteza 172499 mac 172499 bytes_out 0 172499 bytes_in 0 172499 station_ip 83.122.124.80 172499 port 34 172499 unique_id port 172499 remote_ip 10.8.0.174 172500 username mostafa_es78 172500 kill_reason Another user logged on this global unique id 172500 mac 172500 bytes_out 0 172500 bytes_in 0 172500 station_ip 37.129.226.89 172500 port 36 172500 unique_id port 172500 remote_ip 10.8.0.34 172505 username aminvpn 172505 mac 172505 bytes_out 0 172470 port 39 172470 unique_id port 172470 remote_ip 10.8.0.26 172472 username alipour 172472 mac 172472 bytes_out 0 172472 bytes_in 0 172472 station_ip 37.129.62.207 172472 port 34 172472 unique_id port 172472 remote_ip 10.8.0.26 172473 username meysam 172473 mac 172473 bytes_out 2135639 172473 bytes_in 32774269 172473 station_ip 188.159.254.19 172473 port 3 172473 unique_id port 172473 remote_ip 10.8.0.158 172479 username forozandeh1 172479 mac 172479 bytes_out 689608 172479 bytes_in 5463150 172479 station_ip 83.123.133.62 172479 port 39 172479 unique_id port 172479 remote_ip 10.8.0.30 172481 username aminvpn 172481 mac 172481 bytes_out 9149 172481 bytes_in 13204 172481 station_ip 113.203.17.141 172481 port 34 172481 unique_id port 172481 remote_ip 10.8.0.58 172488 username forozandeh1 172488 mac 172488 bytes_out 339962 172488 bytes_in 455288 172488 station_ip 37.129.89.101 172488 port 38 172488 unique_id port 172488 remote_ip 10.8.0.30 172492 username morteza 172492 mac 172492 bytes_out 0 172492 bytes_in 0 172492 station_ip 83.122.124.80 172492 port 34 172492 unique_id port 172492 remote_ip 10.8.0.174 172493 username barzegar 172493 mac 172493 bytes_out 2850 172493 bytes_in 5037 172493 station_ip 5.119.187.175 172493 port 34 172493 unique_id port 172493 remote_ip 10.8.0.10 172495 username morteza 172495 mac 172495 bytes_out 0 172495 bytes_in 0 172495 station_ip 83.122.124.80 172495 port 34 172495 unique_id port 172495 remote_ip 10.8.0.174 172496 username aminvpn 172496 mac 172496 bytes_out 0 172496 bytes_in 0 172496 station_ip 5.119.94.158 172496 port 34 172496 unique_id port 172496 remote_ip 10.8.0.58 172497 username vanila 172497 mac 172497 bytes_out 88508 172497 bytes_in 199226 172497 station_ip 83.122.237.9 172497 port 3 172497 unique_id port 172497 remote_ip 10.8.0.46 172501 username alipour 172501 mac 172501 bytes_out 8777 172501 bytes_in 10502 172501 station_ip 83.123.43.218 172501 port 3 172501 unique_id port 172501 remote_ip 10.8.0.26 172502 username morteza 172502 mac 172502 bytes_out 0 172502 bytes_in 0 172502 station_ip 83.122.124.80 172502 port 37 172502 unique_id port 172502 remote_ip 10.8.0.174 172504 username barzegar 172504 mac 172504 bytes_out 0 172504 bytes_in 0 172504 station_ip 5.119.187.175 172504 port 3 172504 unique_id port 172504 remote_ip 10.8.0.10 172506 username forozandeh1 172506 mac 172506 bytes_out 232526 172506 bytes_in 3379038 172506 station_ip 83.123.10.77 172506 port 34 172506 unique_id port 172506 remote_ip 10.8.0.30 172509 username morteza 172509 mac 172509 bytes_out 0 172509 bytes_in 0 172509 station_ip 83.122.124.80 172509 port 3 172509 unique_id port 172509 remote_ip 10.8.0.174 172513 username meysam 172513 mac 172513 bytes_out 0 172513 bytes_in 0 172513 station_ip 188.159.254.19 172513 port 32 172513 unique_id port 172516 username shadkam 172516 mac 172516 bytes_out 454727 172516 bytes_in 5156420 172516 station_ip 83.122.130.199 172516 port 37 172516 unique_id port 172516 remote_ip 10.8.0.74 172521 username morteza 172521 mac 172521 bytes_out 0 172521 bytes_in 0 172521 station_ip 83.122.124.80 172521 port 34 172521 unique_id port 172521 remote_ip 10.8.0.174 172522 username morteza 172522 mac 172522 bytes_out 0 172522 bytes_in 0 172522 station_ip 83.122.124.80 172522 port 34 172522 unique_id port 172522 remote_ip 10.8.0.174 172523 username morteza 172523 mac 172505 bytes_in 0 172505 station_ip 113.203.74.5 172505 port 3 172505 unique_id port 172505 remote_ip 10.8.0.58 172507 username morteza 172507 mac 172507 bytes_out 1702 172507 bytes_in 4057 172507 station_ip 83.122.124.80 172507 port 37 172507 unique_id port 172507 remote_ip 10.8.0.174 172508 username meysam 172508 kill_reason Another user logged on this global unique id 172508 mac 172508 bytes_out 0 172508 bytes_in 0 172508 station_ip 188.159.254.19 172508 port 32 172508 unique_id port 172508 remote_ip 10.8.0.158 172510 username malekpoir 172510 kill_reason Another user logged on this global unique id 172510 mac 172510 bytes_out 0 172510 bytes_in 0 172510 station_ip 5.119.6.116 172510 port 14 172510 unique_id port 172510 remote_ip 10.8.0.18 172515 username morteza 172515 mac 172515 bytes_out 0 172515 bytes_in 0 172515 station_ip 83.122.124.80 172515 port 35 172515 unique_id port 172515 remote_ip 10.8.0.174 172519 username morteza 172519 mac 172519 bytes_out 0 172519 bytes_in 0 172519 station_ip 83.122.124.80 172519 port 34 172519 unique_id port 172519 remote_ip 10.8.0.174 172525 username alipour 172525 mac 172525 bytes_out 65661 172525 bytes_in 368135 172525 station_ip 83.123.43.218 172525 port 38 172525 unique_id port 172525 remote_ip 10.8.0.26 172528 username morteza 172528 mac 172528 bytes_out 114076 172528 bytes_in 996546 172528 station_ip 83.122.124.80 172528 port 28 172528 unique_id port 172528 remote_ip 10.8.0.174 172529 username aminvpn 172529 mac 172529 bytes_out 0 172529 bytes_in 0 172529 station_ip 5.119.94.158 172529 port 28 172529 unique_id port 172529 remote_ip 10.8.0.58 172532 username morteza 172532 mac 172532 bytes_out 0 172532 bytes_in 0 172532 station_ip 83.122.124.80 172532 port 28 172532 unique_id port 172532 remote_ip 10.8.0.174 172533 username pourshad 172533 mac 172533 bytes_out 16660 172533 bytes_in 24788 172533 station_ip 5.120.193.18 172533 port 35 172533 unique_id port 172533 remote_ip 10.8.0.42 172536 username morteza 172536 mac 172536 bytes_out 0 172536 bytes_in 0 172536 station_ip 83.122.124.80 172536 port 28 172536 unique_id port 172536 remote_ip 10.8.0.174 172537 username barzegar 172537 mac 172537 bytes_out 0 172537 bytes_in 0 172537 station_ip 5.119.187.175 172537 port 38 172537 unique_id port 172537 remote_ip 10.8.0.10 172545 username malekpoir 172545 mac 172545 bytes_out 0 172545 bytes_in 0 172545 station_ip 5.119.6.116 172545 port 14 172545 unique_id port 172549 username rahim 172549 mac 172549 bytes_out 0 172549 bytes_in 0 172549 station_ip 5.120.55.192 172549 port 2 172549 unique_id port 172552 username hosseine 172552 kill_reason Another user logged on this global unique id 172552 mac 172552 bytes_out 0 172552 bytes_in 0 172552 station_ip 113.203.54.182 172552 port 16 172552 unique_id port 172552 remote_ip 10.8.0.54 172553 username mostafa_es78 172553 mac 172553 bytes_out 0 172553 bytes_in 0 172553 station_ip 37.129.226.89 172553 port 36 172553 unique_id port 172556 username rezaei 172556 mac 172556 bytes_out 162726 172556 bytes_in 156886 172556 station_ip 5.120.141.233 172556 port 3 172556 unique_id port 172556 remote_ip 10.8.0.198 172557 username rahim 172557 mac 172557 bytes_out 0 172557 bytes_in 0 172557 station_ip 5.120.55.192 172557 port 3 172557 unique_id port 172557 remote_ip 10.8.0.134 172558 username barzegar 172558 mac 172558 bytes_out 0 172558 bytes_in 0 172558 station_ip 5.119.187.175 172558 port 36 172520 bytes_out 0 172520 bytes_in 0 172520 station_ip 5.119.187.175 172520 port 35 172520 unique_id port 172520 remote_ip 10.8.0.10 172526 username morteza 172526 mac 172526 bytes_out 0 172526 bytes_in 0 172526 station_ip 83.122.124.80 172526 port 35 172526 unique_id port 172526 remote_ip 10.8.0.174 172538 username morteza 172538 mac 172538 bytes_out 4892 172538 bytes_in 11237 172538 station_ip 83.122.124.80 172538 port 35 172538 unique_id port 172538 remote_ip 10.8.0.174 172540 username barzegar 172540 mac 172540 bytes_out 0 172540 bytes_in 0 172540 station_ip 5.119.187.175 172540 port 35 172540 unique_id port 172540 remote_ip 10.8.0.10 172542 username godarzi 172542 kill_reason Another user logged on this global unique id 172542 mac 172542 bytes_out 0 172542 bytes_in 0 172542 station_ip 5.119.200.207 172542 port 7 172542 unique_id port 172542 remote_ip 10.8.0.38 172544 username pourshad 172544 mac 172544 bytes_out 27459 172544 bytes_in 43204 172544 station_ip 5.120.193.18 172544 port 28 172544 unique_id port 172544 remote_ip 10.8.0.42 172550 username rahim 172550 mac 172550 bytes_out 0 172550 bytes_in 0 172550 station_ip 5.120.55.192 172550 port 28 172550 unique_id port 172550 remote_ip 10.8.0.134 172551 username rahim 172551 mac 172551 bytes_out 0 172551 bytes_in 0 172551 station_ip 5.120.55.192 172551 port 28 172551 unique_id port 172551 remote_ip 10.8.0.134 172554 username rahim 172554 mac 172554 bytes_out 0 172554 bytes_in 0 172554 station_ip 5.120.55.192 172554 port 36 172554 unique_id port 172554 remote_ip 10.8.0.134 172555 username rahim 172555 mac 172555 bytes_out 0 172555 bytes_in 0 172555 station_ip 5.120.55.192 172555 port 36 172555 unique_id port 172555 remote_ip 10.8.0.134 172560 username kalantary 172560 kill_reason Another user logged on this global unique id 172560 mac 172560 bytes_out 0 172560 bytes_in 0 172560 station_ip 83.122.193.86 172560 port 38 172560 unique_id port 172560 remote_ip 10.8.0.50 172565 username pourshad 172565 mac 172565 bytes_out 30354 172565 bytes_in 58911 172565 station_ip 5.120.193.18 172565 port 2 172565 unique_id port 172565 remote_ip 10.8.0.42 172567 username malekpoir 172567 mac 172567 bytes_out 11144 172567 bytes_in 17755 172567 station_ip 5.119.6.116 172567 port 14 172567 unique_id port 172567 remote_ip 10.8.0.18 172571 username majidsarmast 172571 mac 172571 bytes_out 284904 172571 bytes_in 1468210 172571 station_ip 83.122.166.25 172571 port 26 172571 unique_id port 172571 remote_ip 10.8.0.170 172575 username barzegar 172575 mac 172575 bytes_out 3661 172575 bytes_in 12235 172575 station_ip 5.119.187.175 172575 port 40 172575 unique_id port 172575 remote_ip 10.8.0.10 172577 username aminvpn 172577 mac 172577 bytes_out 0 172577 bytes_in 0 172577 station_ip 5.119.94.158 172577 port 41 172577 unique_id port 172577 remote_ip 10.8.0.58 172578 username malekpoir 172578 mac 172578 bytes_out 7847 172578 bytes_in 10527 172578 station_ip 5.119.6.116 172578 port 14 172578 unique_id port 172578 remote_ip 10.8.0.18 172582 username fezealinaghi 172582 kill_reason Another user logged on this global unique id 172582 mac 172582 bytes_out 0 172582 bytes_in 0 172582 station_ip 83.123.246.67 172582 port 34 172582 unique_id port 172582 remote_ip 10.8.0.202 172584 username mohammadmahdi 172584 mac 172584 bytes_out 0 172584 bytes_in 0 172584 station_ip 5.119.206.241 172584 port 36 172584 unique_id port 172589 username fezealinaghi 172589 mac 172589 bytes_out 0 172523 bytes_out 0 172523 bytes_in 0 172523 station_ip 83.122.124.80 172523 port 34 172523 unique_id port 172523 remote_ip 10.8.0.174 172524 username barzegar 172524 mac 172524 bytes_out 0 172524 bytes_in 0 172524 station_ip 5.119.187.175 172524 port 35 172524 unique_id port 172524 remote_ip 10.8.0.10 172527 username pourshad 172527 mac 172527 bytes_out 2167447 172527 bytes_in 37052305 172527 station_ip 5.120.193.18 172527 port 28 172527 unique_id port 172527 remote_ip 10.8.0.42 172530 username rahim 172530 kill_reason Another user logged on this global unique id 172530 mac 172530 bytes_out 0 172530 bytes_in 0 172530 station_ip 5.120.55.192 172530 port 2 172530 unique_id port 172531 username morteza 172531 mac 172531 bytes_out 0 172531 bytes_in 0 172531 station_ip 83.122.124.80 172531 port 28 172531 unique_id port 172531 remote_ip 10.8.0.174 172534 username morteza 172534 mac 172534 bytes_out 0 172534 bytes_in 0 172534 station_ip 83.122.124.80 172534 port 28 172534 unique_id port 172534 remote_ip 10.8.0.174 172535 username barzegar 172535 mac 172535 bytes_out 0 172535 bytes_in 0 172535 station_ip 5.119.187.175 172535 port 28 172535 unique_id port 172535 remote_ip 10.8.0.10 172539 username morteza 172539 mac 172539 bytes_out 0 172539 bytes_in 0 172539 station_ip 83.122.124.80 172539 port 38 172539 unique_id port 172539 remote_ip 10.8.0.174 172541 username barzegar 172541 mac 172541 bytes_out 0 172541 bytes_in 0 172541 station_ip 5.119.187.175 172541 port 39 172541 unique_id port 172541 remote_ip 10.8.0.10 172543 username mehdizare 172543 mac 172543 bytes_out 749046 172543 bytes_in 14278628 172543 station_ip 37.129.185.236 172543 port 26 172543 unique_id port 172543 remote_ip 10.8.0.210 172546 username aminvpn 172546 mac 172546 bytes_out 0 172546 bytes_in 0 172546 station_ip 5.119.94.158 172546 port 26 172546 unique_id port 172546 remote_ip 10.8.0.58 172547 username mostafa_es78 172547 kill_reason Another user logged on this global unique id 172547 mac 172547 bytes_out 0 172547 bytes_in 0 172547 station_ip 37.129.226.89 172547 port 36 172547 unique_id port 172548 username malekpoir 172548 mac 172548 bytes_out 9211 172548 bytes_in 13961 172548 station_ip 5.119.6.116 172548 port 28 172548 unique_id port 172548 remote_ip 10.8.0.18 172561 username rahim 172561 mac 172561 bytes_out 0 172561 bytes_in 0 172561 station_ip 5.120.55.192 172561 port 3 172561 unique_id port 172561 remote_ip 10.8.0.134 172563 username rahim 172563 mac 172563 bytes_out 0 172563 bytes_in 0 172563 station_ip 5.120.55.192 172563 port 3 172563 unique_id port 172563 remote_ip 10.8.0.134 172566 username rahim 172566 mac 172566 bytes_out 0 172566 bytes_in 0 172566 station_ip 5.120.55.192 172566 port 2 172566 unique_id port 172566 remote_ip 10.8.0.134 172568 username rahim 172568 mac 172568 bytes_out 0 172568 bytes_in 0 172568 station_ip 5.120.55.192 172568 port 39 172568 unique_id port 172568 remote_ip 10.8.0.134 172569 username rahim 172569 kill_reason Maximum number of concurrent logins reached 172569 mac 172569 bytes_out 0 172569 bytes_in 0 172569 station_ip 5.120.55.192 172569 port 40 172569 unique_id port 172573 username malekpoir 172573 mac 172573 bytes_out 9244 172573 bytes_in 20834 172573 station_ip 5.119.6.116 172573 port 14 172573 unique_id port 172573 remote_ip 10.8.0.18 172574 username alikomsari 172574 mac 172574 bytes_out 3560064 172574 bytes_in 16980557 172574 station_ip 5.120.87.99 172558 unique_id port 172558 remote_ip 10.8.0.10 172559 username rahim 172559 mac 172559 bytes_out 0 172559 bytes_in 0 172559 station_ip 5.120.55.192 172559 port 3 172559 unique_id port 172559 remote_ip 10.8.0.134 172562 username aminvpn 172562 mac 172562 bytes_out 0 172562 bytes_in 0 172562 station_ip 5.119.94.158 172562 port 3 172562 unique_id port 172562 remote_ip 10.8.0.58 172564 username rahim 172564 mac 172564 bytes_out 0 172564 bytes_in 0 172564 station_ip 5.120.55.192 172564 port 3 172564 unique_id port 172564 remote_ip 10.8.0.134 172570 username rahim 172570 kill_reason Maximum check online fails reached 172570 mac 172570 bytes_out 0 172570 bytes_in 0 172570 station_ip 5.120.55.192 172570 port 2 172570 unique_id port 172572 username rahim 172572 kill_reason Maximum check online fails reached 172572 mac 172572 bytes_out 0 172572 bytes_in 0 172572 station_ip 5.120.55.192 172572 port 39 172572 unique_id port 172580 username mohammadmahdi 172580 kill_reason Another user logged on this global unique id 172580 mac 172580 bytes_out 0 172580 bytes_in 0 172580 station_ip 5.119.206.241 172580 port 36 172580 unique_id port 172580 remote_ip 10.8.0.90 172581 username barzegar 172581 mac 172581 bytes_out 0 172581 bytes_in 0 172581 station_ip 5.119.187.175 172581 port 32 172581 unique_id port 172581 remote_ip 10.8.0.10 172587 username barzegar 172587 mac 172587 bytes_out 0 172587 bytes_in 0 172587 station_ip 5.119.187.175 172587 port 14 172587 unique_id port 172587 remote_ip 10.8.0.10 172588 username mostafa_es78 172588 kill_reason Another user logged on this global unique id 172588 mac 172588 bytes_out 0 172588 bytes_in 0 172588 station_ip 37.129.226.89 172588 port 28 172588 unique_id port 172588 remote_ip 10.8.0.34 172590 username jafari 172590 kill_reason Another user logged on this global unique id 172590 mac 172590 bytes_out 0 172590 bytes_in 0 172590 station_ip 89.47.68.14 172590 port 22 172590 unique_id port 172592 username aminvpn 172592 mac 172592 bytes_out 0 172592 bytes_in 0 172592 station_ip 5.119.94.158 172592 port 14 172592 unique_id port 172592 remote_ip 10.8.0.58 172602 username forozandeh1 172602 mac 172602 bytes_out 280920 172602 bytes_in 1502598 172602 station_ip 83.123.253.132 172602 port 36 172602 unique_id port 172602 remote_ip 10.8.0.30 172604 username kalantary 172604 mac 172604 bytes_out 639702 172604 bytes_in 7757545 172604 station_ip 83.122.193.86 172604 port 42 172604 unique_id port 172604 remote_ip 10.8.0.50 172605 username barzegar 172605 mac 172605 bytes_out 0 172605 bytes_in 0 172605 station_ip 5.119.187.175 172605 port 7 172605 unique_id port 172605 remote_ip 10.8.0.10 172606 username yaghobi 172606 mac 172606 bytes_out 2611381 172606 bytes_in 33207102 172606 station_ip 113.203.6.157 172606 port 26 172606 unique_id port 172606 remote_ip 10.8.0.138 172608 username rahim 172608 mac 172608 bytes_out 1076054 172608 bytes_in 11808993 172608 station_ip 5.120.55.192 172608 port 37 172608 unique_id port 172608 remote_ip 10.8.0.134 172612 username tahmasebi 172612 mac 172612 bytes_out 0 172612 bytes_in 0 172612 station_ip 5.119.45.99 172612 port 26 172612 unique_id port 172612 remote_ip 10.8.0.126 172613 username alipour 172613 mac 172613 bytes_out 75006 172613 bytes_in 187670 172613 station_ip 83.123.43.218 172613 port 40 172613 unique_id port 172613 remote_ip 10.8.0.26 172622 username ayobi 172622 mac 172622 bytes_out 3623392 172622 bytes_in 49933587 172622 station_ip 188.245.89.158 172574 port 32 172574 unique_id port 172574 remote_ip 10.8.0.118 172576 username aminvpn 172576 mac 172576 bytes_out 251833 172576 bytes_in 1039570 172576 station_ip 5.126.89.146 172576 port 26 172576 unique_id port 172576 remote_ip 10.8.0.58 172579 username forozandeh1 172579 mac 172579 bytes_out 715630 172579 bytes_in 9684628 172579 station_ip 37.129.118.135 172579 port 32 172579 unique_id port 172579 remote_ip 10.8.0.30 172583 username vanila 172583 mac 172583 bytes_out 2862707 172583 bytes_in 324321 172583 station_ip 83.122.237.9 172583 port 40 172583 unique_id port 172583 remote_ip 10.8.0.46 172585 username malekpoir 172585 mac 172585 bytes_out 9823 172585 bytes_in 14717 172585 station_ip 5.119.6.116 172585 port 14 172585 unique_id port 172585 remote_ip 10.8.0.18 172586 username shadkam 172586 mac 172586 bytes_out 1339462 172586 bytes_in 16154998 172586 station_ip 37.129.112.144 172586 port 26 172586 unique_id port 172586 remote_ip 10.8.0.74 172593 username barzegar 172593 mac 172593 bytes_out 0 172593 bytes_in 0 172593 station_ip 5.119.187.175 172593 port 26 172593 unique_id port 172593 remote_ip 10.8.0.10 172595 username alipour 172595 mac 172595 bytes_out 174340 172595 bytes_in 612933 172595 station_ip 83.123.43.218 172595 port 37 172595 unique_id port 172595 remote_ip 10.8.0.26 172596 username kalantary 172596 mac 172596 bytes_out 497045 172596 bytes_in 1709218 172596 station_ip 83.122.193.86 172596 port 14 172596 unique_id port 172596 remote_ip 10.8.0.50 172598 username jafari 172598 kill_reason Another user logged on this global unique id 172598 mac 172598 bytes_out 0 172598 bytes_in 0 172598 station_ip 89.47.68.14 172598 port 22 172598 unique_id port 172599 username godarzi 172599 mac 172599 bytes_out 0 172599 bytes_in 0 172599 station_ip 5.119.200.207 172599 port 7 172599 unique_id port 172601 username pourshad 172601 mac 172601 bytes_out 63578 172601 bytes_in 92488 172601 station_ip 5.120.193.18 172601 port 3 172601 unique_id port 172601 remote_ip 10.8.0.42 172603 username aminvpn 172603 mac 172603 bytes_out 0 172603 bytes_in 0 172603 station_ip 5.119.94.158 172603 port 3 172603 unique_id port 172603 remote_ip 10.8.0.58 172607 username tahmasebi 172607 kill_reason Another user logged on this global unique id 172607 mac 172607 bytes_out 0 172607 bytes_in 0 172607 station_ip 5.119.45.99 172607 port 38 172607 unique_id port 172607 remote_ip 10.8.0.126 172614 username barzegar 172614 mac 172614 bytes_out 0 172614 bytes_in 0 172614 station_ip 5.119.187.175 172614 port 36 172614 unique_id port 172614 remote_ip 10.8.0.10 172617 username aminvpn 172617 mac 172617 bytes_out 0 172617 bytes_in 0 172617 station_ip 5.119.94.158 172617 port 26 172617 unique_id port 172617 remote_ip 10.8.0.58 172620 username tahmasebi 172620 mac 172620 bytes_out 0 172620 bytes_in 0 172620 station_ip 5.119.45.99 172620 port 26 172620 unique_id port 172620 remote_ip 10.8.0.126 172621 username godarzi 172621 mac 172621 bytes_out 367596 172621 bytes_in 3121725 172621 station_ip 5.119.200.207 172621 port 34 172621 unique_id port 172621 remote_ip 10.8.0.38 172625 username tahmasebi 172625 mac 172625 bytes_out 0 172625 bytes_in 0 172625 station_ip 5.119.45.99 172625 port 34 172625 unique_id port 172625 remote_ip 10.8.0.126 172627 username mostafa_es78 172627 mac 172627 bytes_out 83948 172627 bytes_in 845456 172627 station_ip 37.129.226.89 172627 port 34 172627 unique_id port 172627 remote_ip 10.8.0.34 172589 bytes_in 0 172589 station_ip 83.123.246.67 172589 port 34 172589 unique_id port 172591 username kalantary 172591 mac 172591 bytes_out 0 172591 bytes_in 0 172591 station_ip 83.122.193.86 172591 port 38 172591 unique_id port 172594 username mehdizare 172594 kill_reason Another user logged on this global unique id 172594 mac 172594 bytes_out 0 172594 bytes_in 0 172594 station_ip 37.129.185.236 172594 port 35 172594 unique_id port 172594 remote_ip 10.8.0.210 172597 username alipour 172597 mac 172597 bytes_out 83166 172597 bytes_in 137536 172597 station_ip 83.123.43.218 172597 port 37 172597 unique_id port 172597 remote_ip 10.8.0.26 172600 username kordestani 172600 kill_reason Another user logged on this global unique id 172600 mac 172600 bytes_out 0 172600 bytes_in 0 172600 station_ip 151.235.104.46 172600 port 34 172600 unique_id port 172600 remote_ip 10.8.0.130 172609 username kordestani 172609 mac 172609 bytes_out 0 172609 bytes_in 0 172609 station_ip 151.235.104.46 172609 port 34 172609 unique_id port 172610 username kordestani 172610 mac 172610 bytes_out 440141 172610 bytes_in 6947381 172610 station_ip 151.235.122.177 172610 port 26 172610 unique_id port 172610 remote_ip 10.8.0.130 172611 username tahmasebi 172611 mac 172611 bytes_out 0 172611 bytes_in 0 172611 station_ip 5.119.45.99 172611 port 38 172611 unique_id port 172615 username tahmasebi 172615 mac 172615 bytes_out 6569 172615 bytes_in 11612 172615 station_ip 5.119.45.99 172615 port 26 172615 unique_id port 172615 remote_ip 10.8.0.126 172616 username mostafa_es78 172616 kill_reason Another user logged on this global unique id 172616 mac 172616 bytes_out 0 172616 bytes_in 0 172616 station_ip 37.129.226.89 172616 port 28 172616 unique_id port 172618 username barzegar 172618 mac 172618 bytes_out 0 172618 bytes_in 0 172618 station_ip 5.119.187.175 172618 port 36 172618 unique_id port 172618 remote_ip 10.8.0.10 172619 username jafari 172619 kill_reason Another user logged on this global unique id 172619 mac 172619 bytes_out 0 172619 bytes_in 0 172619 station_ip 89.47.68.14 172619 port 22 172619 unique_id port 172624 username tahmasebi 172624 mac 172624 bytes_out 0 172624 bytes_in 0 172624 station_ip 5.119.45.99 172624 port 34 172624 unique_id port 172624 remote_ip 10.8.0.126 172628 username tahmasebi 172628 mac 172628 bytes_out 0 172628 bytes_in 0 172628 station_ip 5.119.45.99 172628 port 41 172628 unique_id port 172628 remote_ip 10.8.0.126 172629 username mehdizare 172629 mac 172629 bytes_out 0 172629 bytes_in 0 172629 station_ip 37.129.185.236 172629 port 35 172629 unique_id port 172632 username jafari 172632 kill_reason Another user logged on this global unique id 172632 mac 172632 bytes_out 0 172632 bytes_in 0 172632 station_ip 89.47.68.14 172632 port 22 172632 unique_id port 172633 username yaghobi 172633 mac 172633 bytes_out 3225351 172633 bytes_in 39269864 172633 station_ip 113.203.6.157 172633 port 7 172633 unique_id port 172633 remote_ip 10.8.0.138 172634 username tahmasebi 172634 mac 172634 bytes_out 0 172634 bytes_in 0 172634 station_ip 5.119.45.99 172634 port 7 172634 unique_id port 172634 remote_ip 10.8.0.126 172639 username aminvpn 172639 mac 172639 bytes_out 94243 172639 bytes_in 414691 172639 station_ip 5.126.89.146 172639 port 36 172639 unique_id port 172639 remote_ip 10.8.0.58 172645 username tahmasebi 172645 mac 172645 bytes_out 0 172645 bytes_in 0 172645 station_ip 5.119.45.99 172645 port 34 172645 unique_id port 172622 port 41 172622 unique_id port 172622 remote_ip 10.8.0.186 172623 username tahmasebi 172623 mac 172623 bytes_out 7986 172623 bytes_in 84954 172623 station_ip 5.119.45.99 172623 port 34 172623 unique_id port 172623 remote_ip 10.8.0.126 172626 username mostafa_es78 172626 mac 172626 bytes_out 0 172626 bytes_in 0 172626 station_ip 37.129.226.89 172626 port 28 172626 unique_id port 172630 username aminvpn 172630 mac 172630 bytes_out 88516 172630 bytes_in 687351 172630 station_ip 5.119.94.158 172630 port 40 172630 unique_id port 172630 remote_ip 10.8.0.58 172631 username vanila 172631 mac 172631 bytes_out 236550 172631 bytes_in 738825 172631 station_ip 83.122.237.9 172631 port 38 172631 unique_id port 172631 remote_ip 10.8.0.46 172635 username mehdizare 172635 mac 172635 bytes_out 13933 172635 bytes_in 16172 172635 station_ip 37.129.185.236 172635 port 34 172635 unique_id port 172635 remote_ip 10.8.0.210 172641 username kalantary 172641 mac 172641 bytes_out 467920 172641 bytes_in 2567827 172641 station_ip 83.122.162.210 172641 port 34 172641 unique_id port 172641 remote_ip 10.8.0.50 172644 username barzegar 172644 mac 172644 bytes_out 37586 172644 bytes_in 182745 172644 station_ip 5.119.187.175 172644 port 35 172644 unique_id port 172644 remote_ip 10.8.0.10 172647 username pourshad 172647 mac 172647 bytes_out 113347 172647 bytes_in 174826 172647 station_ip 5.120.193.18 172647 port 3 172647 unique_id port 172647 remote_ip 10.8.0.42 172648 username tahmasebi 172648 mac 172648 bytes_out 0 172648 bytes_in 0 172648 station_ip 5.119.45.99 172648 port 34 172648 unique_id port 172648 remote_ip 10.8.0.126 172650 username mostafa_es78 172650 mac 172650 bytes_out 0 172650 bytes_in 0 172650 station_ip 37.129.226.89 172650 port 42 172650 unique_id port 172653 username mostafa_es78 172653 mac 172653 bytes_out 3781 172653 bytes_in 5804 172653 station_ip 37.129.226.89 172653 port 40 172653 unique_id port 172653 remote_ip 10.8.0.34 172658 username tahmasebi 172658 mac 172658 bytes_out 0 172658 bytes_in 0 172658 station_ip 5.119.45.99 172658 port 7 172658 unique_id port 172658 remote_ip 10.8.0.126 172659 username pourshad 172659 mac 172659 bytes_out 57504 172659 bytes_in 69741 172659 station_ip 5.120.220.178 172659 port 41 172659 unique_id port 172659 remote_ip 10.8.0.42 172665 username barzegar 172665 kill_reason Another user logged on this global unique id 172665 mac 172665 bytes_out 0 172665 bytes_in 0 172665 station_ip 5.119.187.175 172665 port 34 172665 unique_id port 172665 remote_ip 10.8.0.10 172668 username pourshad 172668 mac 172668 bytes_out 23936 172668 bytes_in 33316 172668 station_ip 5.120.237.74 172668 port 40 172668 unique_id port 172668 remote_ip 10.8.0.42 172671 username tahmasebi 172671 mac 172671 bytes_out 16566 172671 bytes_in 27161 172671 station_ip 5.119.45.99 172671 port 38 172671 unique_id port 172671 remote_ip 10.8.0.126 172674 username jafari 172674 mac 172674 bytes_out 0 172674 bytes_in 0 172674 station_ip 89.47.68.14 172674 port 22 172674 unique_id port 172677 username tahmasebi 172677 mac 172677 bytes_out 2474 172677 bytes_in 4812 172677 station_ip 5.119.45.99 172677 port 22 172677 unique_id port 172677 remote_ip 10.8.0.126 172678 username aminvpn 172678 mac 172678 bytes_out 0 172678 bytes_in 0 172678 station_ip 5.119.94.158 172678 port 22 172678 unique_id port 172678 remote_ip 10.8.0.58 172679 username godarzi 172679 mac 172679 bytes_out 1184915 172636 username barzegar 172636 mac 172636 bytes_out 32444 172636 bytes_in 44228 172636 station_ip 5.119.187.175 172636 port 28 172636 unique_id port 172636 remote_ip 10.8.0.10 172637 username godarzi 172637 mac 172637 bytes_out 339687 172637 bytes_in 2498427 172637 station_ip 5.119.200.207 172637 port 36 172637 unique_id port 172637 remote_ip 10.8.0.38 172638 username mostafa_es78 172638 kill_reason Another user logged on this global unique id 172638 mac 172638 bytes_out 0 172638 bytes_in 0 172638 station_ip 37.129.226.89 172638 port 42 172638 unique_id port 172638 remote_ip 10.8.0.34 172640 username aminvpn 172640 mac 172640 bytes_out 0 172640 bytes_in 0 172640 station_ip 5.119.94.158 172640 port 36 172640 unique_id port 172640 remote_ip 10.8.0.58 172642 username pourshad 172642 mac 172642 bytes_out 8131527 172642 bytes_in 16459489 172642 station_ip 5.120.193.18 172642 port 3 172642 unique_id port 172642 remote_ip 10.8.0.42 172643 username aminvpn 172643 unique_id port 172643 terminate_cause User-Request 172643 bytes_out 282881 172643 bytes_in 1469570 172643 station_ip 5.160.112.32 172643 port 15728786 172643 nas_port_type Virtual 172643 remote_ip 5.5.5.227 172646 username vanila 172646 mac 172646 bytes_out 355227 172646 bytes_in 2079532 172646 station_ip 83.122.237.9 172646 port 38 172646 unique_id port 172646 remote_ip 10.8.0.46 172651 username tahmasebi 172651 mac 172651 bytes_out 0 172651 bytes_in 0 172651 station_ip 5.119.45.99 172651 port 40 172651 unique_id port 172651 remote_ip 10.8.0.126 172652 username tahmasebi 172652 mac 172652 bytes_out 0 172652 bytes_in 0 172652 station_ip 5.119.45.99 172652 port 36 172652 unique_id port 172652 remote_ip 10.8.0.126 172654 username aminvpn 172654 mac 172654 bytes_out 0 172654 bytes_in 0 172654 station_ip 5.119.94.158 172654 port 36 172654 unique_id port 172654 remote_ip 10.8.0.58 172656 username hosseine 172656 kill_reason Another user logged on this global unique id 172656 mac 172656 bytes_out 0 172656 bytes_in 0 172656 station_ip 113.203.54.182 172656 port 16 172656 unique_id port 172657 username yaghobi 172657 mac 172657 bytes_out 1026720 172657 bytes_in 5188934 172657 station_ip 37.129.11.209 172657 port 7 172657 unique_id port 172657 remote_ip 10.8.0.138 172660 username kalantary 172660 mac 172660 bytes_out 639625 172660 bytes_in 5354180 172660 station_ip 83.122.162.210 172660 port 38 172660 unique_id port 172660 remote_ip 10.8.0.50 172661 username pourshad 172661 mac 172661 bytes_out 44989 172661 bytes_in 66042 172661 station_ip 5.120.237.74 172661 port 7 172661 unique_id port 172661 remote_ip 10.8.0.42 172664 username tahmasebi 172664 mac 172664 bytes_out 17359 172664 bytes_in 31938 172664 station_ip 5.119.45.99 172664 port 38 172664 unique_id port 172664 remote_ip 10.8.0.126 172667 username aminvpn 172667 mac 172667 bytes_out 0 172667 bytes_in 0 172667 station_ip 5.119.94.158 172667 port 35 172667 unique_id port 172667 remote_ip 10.8.0.58 172669 username fezealinaghi 172669 kill_reason Another user logged on this global unique id 172669 mac 172669 bytes_out 0 172669 bytes_in 0 172669 station_ip 113.203.92.35 172669 port 7 172669 unique_id port 172669 remote_ip 10.8.0.202 172670 username barzegar 172670 kill_reason Another user logged on this global unique id 172670 mac 172670 bytes_out 0 172670 bytes_in 0 172670 station_ip 5.119.187.175 172670 port 34 172670 unique_id port 172672 username khademi 172672 kill_reason Another user logged on this global unique id 172672 mac 172672 bytes_out 0 172645 remote_ip 10.8.0.126 172649 username pourshad 172649 mac 172649 bytes_out 2190 172649 bytes_in 4046 172649 station_ip 5.120.193.18 172649 port 36 172649 unique_id port 172649 remote_ip 10.8.0.42 172655 username godarzi 172655 mac 172655 bytes_out 182929 172655 bytes_in 1281547 172655 station_ip 5.119.200.207 172655 port 35 172655 unique_id port 172655 remote_ip 10.8.0.38 172662 username sedighe 172662 mac 172662 bytes_out 762810 172662 bytes_in 8359488 172662 station_ip 83.123.55.158 172662 port 3 172662 unique_id port 172662 remote_ip 10.8.0.78 172663 username mostafa_es78 172663 mac 172663 bytes_out 3531 172663 bytes_in 5487 172663 station_ip 37.129.226.89 172663 port 36 172663 unique_id port 172663 remote_ip 10.8.0.34 172666 username forozandeh1 172666 mac 172666 bytes_out 226719 172666 bytes_in 729630 172666 station_ip 37.129.21.204 172666 port 35 172666 unique_id port 172666 remote_ip 10.8.0.30 172673 username tahmasebi 172673 mac 172673 bytes_out 0 172673 bytes_in 0 172673 station_ip 5.119.45.99 172673 port 38 172673 unique_id port 172673 remote_ip 10.8.0.126 172675 username shadkam 172675 mac 172675 bytes_out 723349 172675 bytes_in 8299993 172675 station_ip 83.123.187.153 172675 port 40 172675 unique_id port 172675 remote_ip 10.8.0.74 172684 username tahmasebi 172684 mac 172684 bytes_out 5803 172684 bytes_in 10973 172684 station_ip 5.119.56.25 172684 port 41 172684 unique_id port 172684 remote_ip 10.8.0.126 172687 username aminvpn 172687 mac 172687 bytes_out 0 172687 bytes_in 0 172687 station_ip 5.119.94.158 172687 port 46 172687 unique_id port 172687 remote_ip 10.8.0.58 172693 username kalantary 172693 mac 172693 bytes_out 2320227 172693 bytes_in 23223722 172693 station_ip 83.122.162.210 172693 port 36 172693 unique_id port 172693 remote_ip 10.8.0.50 172694 username mahdiyehalizadeh 172694 mac 172694 bytes_out 80039 172694 bytes_in 230113 172694 station_ip 5.120.33.122 172694 port 45 172694 unique_id port 172694 remote_ip 10.8.0.150 172697 username barzegar 172697 mac 172697 bytes_out 26176 172697 bytes_in 67736 172697 station_ip 5.119.187.175 172697 port 34 172697 unique_id port 172697 remote_ip 10.8.0.10 172700 username tahmasebi 172700 mac 172700 bytes_out 0 172700 bytes_in 0 172700 station_ip 5.119.56.25 172700 port 44 172700 unique_id port 172700 remote_ip 10.8.0.126 172705 username kalantary 172705 mac 172705 bytes_out 185229 172705 bytes_in 295969 172705 station_ip 83.122.162.210 172705 port 36 172705 unique_id port 172705 remote_ip 10.8.0.50 172707 username mehdizare 172707 mac 172707 bytes_out 10185 172707 bytes_in 12032 172707 station_ip 37.129.185.236 172707 port 38 172707 unique_id port 172707 remote_ip 10.8.0.210 172711 username barzegar 172711 mac 172711 bytes_out 3162 172711 bytes_in 5455 172711 station_ip 5.119.187.175 172711 port 34 172711 unique_id port 172711 remote_ip 10.8.0.10 172716 username aminvpn 172716 mac 172716 bytes_out 1333831 172716 bytes_in 18375611 172716 station_ip 83.122.93.55 172716 port 43 172716 unique_id port 172716 remote_ip 10.8.0.58 172718 username godarzi 172718 mac 172718 bytes_out 574083 172718 bytes_in 3710790 172718 station_ip 5.119.200.207 172718 port 41 172718 unique_id port 172718 remote_ip 10.8.0.38 172719 username arash 172719 mac 172719 bytes_out 0 172719 bytes_in 0 172719 station_ip 37.27.29.198 172719 port 40 172719 unique_id port 172722 username jafari 172722 kill_reason Another user logged on this global unique id 172672 bytes_in 0 172672 station_ip 37.129.12.135 172672 port 20 172672 unique_id port 172676 username barzegar 172676 mac 172676 bytes_out 0 172676 bytes_in 0 172676 station_ip 5.119.187.175 172676 port 34 172676 unique_id port 172682 username rajaei 172682 mac 172682 bytes_out 2961177 172682 bytes_in 37392293 172682 station_ip 5.134.161.208 172682 port 41 172682 unique_id port 172682 remote_ip 10.8.0.218 172685 username vanila 172685 mac 172685 bytes_out 143055 172685 bytes_in 443925 172685 station_ip 83.122.237.9 172685 port 43 172685 unique_id port 172685 remote_ip 10.8.0.46 172689 username mehdizare 172689 mac 172689 bytes_out 130658 172689 bytes_in 160391 172689 station_ip 37.129.185.236 172689 port 28 172689 unique_id port 172689 remote_ip 10.8.0.210 172691 username shadkam 172691 kill_reason Another user logged on this global unique id 172691 mac 172691 bytes_out 0 172691 bytes_in 0 172691 station_ip 83.122.205.165 172691 port 38 172691 unique_id port 172691 remote_ip 10.8.0.74 172692 username tahmasebi 172692 mac 172692 bytes_out 10869 172692 bytes_in 18391 172692 station_ip 5.119.56.25 172692 port 47 172692 unique_id port 172692 remote_ip 10.8.0.126 172696 username jafari 172696 mac 172696 bytes_out 36048 172696 bytes_in 70366 172696 station_ip 89.47.68.14 172696 port 46 172696 unique_id port 172696 remote_ip 10.8.0.86 172699 username naeimeh 172699 mac 172699 bytes_out 210443 172699 bytes_in 1893172 172699 station_ip 83.123.83.232 172699 port 36 172699 unique_id port 172699 remote_ip 10.8.0.226 172703 username aminvpn 172703 unique_id port 172703 terminate_cause Lost-Carrier 172703 bytes_out 19756865 172703 bytes_in 830162986 172703 station_ip 31.57.128.219 172703 port 15728785 172703 nas_port_type Virtual 172703 remote_ip 5.5.5.229 172706 username rajaei 172706 mac 172706 bytes_out 1371832 172706 bytes_in 22528628 172706 station_ip 5.134.161.208 172706 port 28 172706 unique_id port 172706 remote_ip 10.8.0.218 172708 username arash 172708 kill_reason Another user logged on this global unique id 172708 mac 172708 bytes_out 0 172708 bytes_in 0 172708 station_ip 37.27.29.198 172708 port 40 172708 unique_id port 172708 remote_ip 10.8.0.70 172709 username malekpoir 172709 kill_reason Another user logged on this global unique id 172709 mac 172709 bytes_out 0 172709 bytes_in 0 172709 station_ip 5.119.6.116 172709 port 32 172709 unique_id port 172709 remote_ip 10.8.0.18 172710 username pourshad 172710 mac 172710 bytes_out 257624 172710 bytes_in 1166992 172710 station_ip 5.120.237.74 172710 port 35 172710 unique_id port 172710 remote_ip 10.8.0.42 172712 username rezaei 172712 mac 172712 bytes_out 3046659 172712 bytes_in 47367042 172712 station_ip 5.119.80.107 172712 port 42 172712 unique_id port 172712 remote_ip 10.8.0.198 172714 username tahmasebi 172714 kill_reason Maximum check online fails reached 172714 mac 172714 bytes_out 0 172714 bytes_in 0 172714 station_ip 5.119.56.25 172714 port 28 172714 unique_id port 172717 username aminvpn 172717 mac 172717 bytes_out 0 172717 bytes_in 0 172717 station_ip 5.119.94.158 172717 port 22 172717 unique_id port 172717 remote_ip 10.8.0.58 172721 username barzegar 172721 mac 172721 bytes_out 273353 172721 bytes_in 1673281 172721 station_ip 5.119.187.175 172721 port 34 172721 unique_id port 172721 remote_ip 10.8.0.10 172723 username kalantary 172723 mac 172723 bytes_out 532694 172723 bytes_in 4548423 172723 station_ip 83.122.172.90 172723 port 41 172723 unique_id port 172723 remote_ip 10.8.0.50 172724 username aminvpn 172679 bytes_in 6369815 172679 station_ip 5.119.200.207 172679 port 3 172679 unique_id port 172679 remote_ip 10.8.0.38 172680 username tahmasebi 172680 mac 172680 bytes_out 0 172680 bytes_in 0 172680 station_ip 5.119.45.99 172680 port 3 172680 unique_id port 172680 remote_ip 10.8.0.126 172681 username tahmasebi 172681 mac 172681 bytes_out 0 172681 bytes_in 0 172681 station_ip 5.119.45.99 172681 port 3 172681 unique_id port 172681 remote_ip 10.8.0.126 172683 username tahmasebi 172683 mac 172683 bytes_out 0 172683 bytes_in 0 172683 station_ip 5.119.56.25 172683 port 40 172683 unique_id port 172683 remote_ip 10.8.0.126 172686 username aminvpn 172686 mac 172686 bytes_out 100456 172686 bytes_in 296389 172686 station_ip 83.122.93.55 172686 port 44 172686 unique_id port 172686 remote_ip 10.8.0.58 172688 username tahmasebi 172688 mac 172688 bytes_out 0 172688 bytes_in 0 172688 station_ip 5.119.56.25 172688 port 43 172688 unique_id port 172688 remote_ip 10.8.0.126 172690 username vanila 172690 mac 172690 bytes_out 99931 172690 bytes_in 277009 172690 station_ip 83.122.237.9 172690 port 44 172690 unique_id port 172690 remote_ip 10.8.0.46 172695 username tahmasebi 172695 mac 172695 bytes_out 0 172695 bytes_in 0 172695 station_ip 5.119.56.25 172695 port 44 172695 unique_id port 172695 remote_ip 10.8.0.126 172698 username mehdizare 172698 mac 172698 bytes_out 7203 172698 bytes_in 10558 172698 station_ip 37.129.185.236 172698 port 48 172698 unique_id port 172698 remote_ip 10.8.0.210 172701 username mehdizare 172701 mac 172701 bytes_out 3764 172701 bytes_in 9652 172701 station_ip 37.129.185.236 172701 port 34 172701 unique_id port 172701 remote_ip 10.8.0.210 172702 username shadkam 172702 mac 172702 bytes_out 0 172702 bytes_in 0 172702 station_ip 83.122.205.165 172702 port 38 172702 unique_id port 172704 username mehdizare 172704 mac 172704 bytes_out 0 172704 bytes_in 0 172704 station_ip 37.129.185.236 172704 port 34 172704 unique_id port 172704 remote_ip 10.8.0.210 172713 username tahmasebi 172713 mac 172713 bytes_out 0 172713 bytes_in 0 172713 station_ip 5.119.56.25 172713 port 34 172713 unique_id port 172713 remote_ip 10.8.0.126 172715 username saeed9658 172715 mac 172715 bytes_out 2411636 172715 bytes_in 28727314 172715 station_ip 5.120.130.149 172715 port 22 172715 unique_id port 172715 remote_ip 10.8.0.154 172720 username tahmasebi 172720 mac 172720 bytes_out 8116 172720 bytes_in 14881 172720 station_ip 5.119.56.25 172720 port 40 172720 unique_id port 172720 remote_ip 10.8.0.126 172728 username tahmasebi 172728 mac 172728 bytes_out 15104 172728 bytes_in 27213 172728 station_ip 5.119.56.25 172728 port 43 172728 unique_id port 172728 remote_ip 10.8.0.126 172730 username jafari 172730 mac 172730 bytes_out 0 172730 bytes_in 0 172730 station_ip 89.47.68.14 172730 port 42 172730 unique_id port 172733 username alipour 172733 mac 172733 bytes_out 412401 172733 bytes_in 2633432 172733 station_ip 83.123.43.218 172733 port 37 172733 unique_id port 172733 remote_ip 10.8.0.26 172734 username mehdizare 172734 mac 172734 bytes_out 60067 172734 bytes_in 99433 172734 station_ip 37.129.185.236 172734 port 36 172734 unique_id port 172734 remote_ip 10.8.0.210 172735 username aminvpn 172735 mac 172735 bytes_out 168433 172735 bytes_in 286907 172735 station_ip 83.122.93.55 172735 port 26 172735 unique_id port 172735 remote_ip 10.8.0.58 172739 username rajaei 172722 mac 172722 bytes_out 0 172722 bytes_in 0 172722 station_ip 89.47.68.14 172722 port 42 172722 unique_id port 172722 remote_ip 10.8.0.86 172725 username aminvpn 172725 mac 172725 bytes_out 0 172725 bytes_in 0 172725 station_ip 5.119.94.158 172725 port 40 172725 unique_id port 172725 remote_ip 10.8.0.58 172731 username sabaghnezhad 172731 mac 172731 bytes_out 614451 172731 bytes_in 3707624 172731 station_ip 83.122.102.101 172731 port 14 172731 unique_id port 172731 remote_ip 10.8.0.66 172732 username vanila 172732 mac 172732 bytes_out 618999 172732 bytes_in 2714458 172732 station_ip 83.122.237.9 172732 port 40 172732 unique_id port 172732 remote_ip 10.8.0.46 172736 username aminvpn 172736 mac 172736 bytes_out 0 172736 bytes_in 0 172736 station_ip 5.119.94.158 172736 port 37 172736 unique_id port 172736 remote_ip 10.8.0.58 172737 username aminvpn 172737 mac 172737 bytes_out 0 172737 bytes_in 0 172737 station_ip 5.119.94.158 172737 port 26 172737 unique_id port 172737 remote_ip 10.8.0.58 172738 username kalantary 172738 mac 172738 bytes_out 744894 172738 bytes_in 11333926 172738 station_ip 83.122.172.90 172738 port 14 172738 unique_id port 172738 remote_ip 10.8.0.50 172746 username aminvpn 172746 mac 172746 bytes_out 43551 172746 bytes_in 266117 172746 station_ip 83.122.93.55 172746 port 37 172746 unique_id port 172746 remote_ip 10.8.0.58 172748 username rahim 172748 mac 172748 bytes_out 0 172748 bytes_in 0 172748 station_ip 5.120.55.192 172748 port 37 172748 unique_id port 172748 remote_ip 10.8.0.134 172749 username barzegar 172749 mac 172749 bytes_out 0 172749 bytes_in 0 172749 station_ip 5.119.187.175 172749 port 37 172749 unique_id port 172749 remote_ip 10.8.0.10 172756 username rahim 172756 mac 172756 bytes_out 0 172756 bytes_in 0 172756 station_ip 5.120.55.192 172756 port 37 172756 unique_id port 172756 remote_ip 10.8.0.134 172758 username hatami 172758 mac 172758 bytes_out 281060 172758 bytes_in 2042272 172758 station_ip 151.235.119.152 172758 port 38 172758 unique_id port 172758 remote_ip 10.8.0.98 172762 username rahim 172762 mac 172762 bytes_out 0 172762 bytes_in 0 172762 station_ip 5.120.55.192 172762 port 37 172762 unique_id port 172762 remote_ip 10.8.0.134 172764 username jafari 172764 kill_reason Another user logged on this global unique id 172764 mac 172764 bytes_out 0 172764 bytes_in 0 172764 station_ip 89.47.68.14 172764 port 40 172764 unique_id port 172764 remote_ip 10.8.0.86 172766 username tahmasebi 172766 mac 172766 bytes_out 0 172766 bytes_in 0 172766 station_ip 5.119.56.25 172766 port 3 172766 unique_id port 172766 remote_ip 10.8.0.126 172767 username aminvpn 172767 mac 172767 bytes_out 0 172767 bytes_in 0 172767 station_ip 5.119.94.158 172767 port 3 172767 unique_id port 172767 remote_ip 10.8.0.58 172771 username tahmasebi 172771 mac 172771 bytes_out 0 172771 bytes_in 0 172771 station_ip 5.119.56.25 172771 port 3 172771 unique_id port 172771 remote_ip 10.8.0.126 172779 username rahim 172779 mac 172779 bytes_out 0 172779 bytes_in 0 172779 station_ip 5.120.55.192 172779 port 3 172779 unique_id port 172779 remote_ip 10.8.0.134 172782 username barzegar 172782 mac 172782 bytes_out 0 172782 bytes_in 0 172782 station_ip 5.119.187.175 172782 port 41 172782 unique_id port 172782 remote_ip 10.8.0.10 172785 username vanila 172785 mac 172785 bytes_out 40916 172785 bytes_in 83887 172785 station_ip 83.122.237.9 172724 mac 172724 bytes_out 1188414 172724 bytes_in 8979700 172724 station_ip 83.122.93.55 172724 port 22 172724 unique_id port 172724 remote_ip 10.8.0.58 172726 username ayobi 172726 mac 172726 bytes_out 1297696 172726 bytes_in 17674394 172726 station_ip 83.122.238.22 172726 port 26 172726 unique_id port 172726 remote_ip 10.8.0.186 172727 username barzegar 172727 mac 172727 bytes_out 2704 172727 bytes_in 5115 172727 station_ip 5.119.187.175 172727 port 41 172727 unique_id port 172727 remote_ip 10.8.0.10 172729 username godarzi 172729 mac 172729 bytes_out 579406 172729 bytes_in 5471574 172729 station_ip 5.119.200.207 172729 port 35 172729 unique_id port 172729 remote_ip 10.8.0.38 172741 username rahim 172741 mac 172741 bytes_out 2289625 172741 bytes_in 13748233 172741 station_ip 5.120.55.192 172741 port 3 172741 unique_id port 172741 remote_ip 10.8.0.134 172743 username rahim 172743 mac 172743 bytes_out 0 172743 bytes_in 0 172743 station_ip 5.120.55.192 172743 port 34 172743 unique_id port 172743 remote_ip 10.8.0.134 172752 username tahmasebi 172752 mac 172752 bytes_out 0 172752 bytes_in 0 172752 station_ip 5.119.56.25 172752 port 3 172752 unique_id port 172752 remote_ip 10.8.0.126 172754 username tahmasebi 172754 mac 172754 bytes_out 0 172754 bytes_in 0 172754 station_ip 5.119.56.25 172754 port 3 172754 unique_id port 172754 remote_ip 10.8.0.126 172755 username tahmasebi 172755 mac 172755 bytes_out 0 172755 bytes_in 0 172755 station_ip 5.119.56.25 172755 port 3 172755 unique_id port 172755 remote_ip 10.8.0.126 172759 username vanila 172759 mac 172759 bytes_out 79377 172759 bytes_in 226004 172759 station_ip 83.122.237.9 172759 port 3 172759 unique_id port 172759 remote_ip 10.8.0.46 172763 username kalantary 172763 mac 172763 bytes_out 368584 172763 bytes_in 2426484 172763 station_ip 83.122.231.54 172763 port 41 172763 unique_id port 172763 remote_ip 10.8.0.50 172765 username rahim 172765 mac 172765 bytes_out 0 172765 bytes_in 0 172765 station_ip 5.120.55.192 172765 port 37 172765 unique_id port 172765 remote_ip 10.8.0.134 172769 username rahim 172769 mac 172769 bytes_out 0 172769 bytes_in 0 172769 station_ip 5.120.55.192 172769 port 3 172769 unique_id port 172769 remote_ip 10.8.0.134 172774 username tahmasebi 172774 mac 172774 bytes_out 2527 172774 bytes_in 4865 172774 station_ip 5.119.56.25 172774 port 3 172774 unique_id port 172774 remote_ip 10.8.0.126 172777 username rahim 172777 mac 172777 bytes_out 0 172777 bytes_in 0 172777 station_ip 5.120.55.192 172777 port 3 172777 unique_id port 172777 remote_ip 10.8.0.134 172778 username rahim 172778 mac 172778 bytes_out 0 172778 bytes_in 0 172778 station_ip 5.120.55.192 172778 port 3 172778 unique_id port 172778 remote_ip 10.8.0.134 172781 username rahim 172781 mac 172781 bytes_out 0 172781 bytes_in 0 172781 station_ip 5.120.55.192 172781 port 3 172781 unique_id port 172781 remote_ip 10.8.0.134 172783 username tahmasebi 172783 mac 172783 bytes_out 0 172783 bytes_in 0 172783 station_ip 5.119.56.25 172783 port 42 172783 unique_id port 172783 remote_ip 10.8.0.126 172787 username rahim 172787 mac 172787 bytes_out 222600 172787 bytes_in 1179178 172787 station_ip 5.120.55.192 172787 port 3 172787 unique_id port 172787 remote_ip 10.8.0.134 172789 username rahim 172789 mac 172789 bytes_out 0 172789 bytes_in 0 172789 station_ip 5.120.55.192 172789 port 3 172739 mac 172739 bytes_out 1540819 172739 bytes_in 23341025 172739 station_ip 5.200.116.233 172739 port 34 172739 unique_id port 172739 remote_ip 10.8.0.218 172740 username pourshad 172740 mac 172740 bytes_out 556559 172740 bytes_in 1711941 172740 station_ip 5.120.237.74 172740 port 38 172740 unique_id port 172740 remote_ip 10.8.0.42 172742 username tahmasebi 172742 mac 172742 bytes_out 0 172742 bytes_in 0 172742 station_ip 5.119.56.25 172742 port 34 172742 unique_id port 172742 remote_ip 10.8.0.126 172744 username barzegar 172744 mac 172744 bytes_out 0 172744 bytes_in 0 172744 station_ip 5.119.187.175 172744 port 34 172744 unique_id port 172744 remote_ip 10.8.0.10 172745 username tahmasebi 172745 mac 172745 bytes_out 0 172745 bytes_in 0 172745 station_ip 5.119.56.25 172745 port 34 172745 unique_id port 172745 remote_ip 10.8.0.126 172747 username aminvpn 172747 mac 172747 bytes_out 0 172747 bytes_in 0 172747 station_ip 5.119.94.158 172747 port 38 172747 unique_id port 172747 remote_ip 10.8.0.58 172750 username rahim 172750 mac 172750 bytes_out 0 172750 bytes_in 0 172750 station_ip 5.120.55.192 172750 port 38 172750 unique_id port 172750 remote_ip 10.8.0.134 172751 username vanila 172751 mac 172751 bytes_out 653277 172751 bytes_in 5123119 172751 station_ip 83.122.237.9 172751 port 3 172751 unique_id port 172751 remote_ip 10.8.0.46 172753 username aminvpn 172753 mac 172753 bytes_out 6401 172753 bytes_in 13440 172753 station_ip 83.122.93.55 172753 port 37 172753 unique_id port 172753 remote_ip 10.8.0.58 172757 username rahim 172757 mac 172757 bytes_out 0 172757 bytes_in 0 172757 station_ip 5.120.55.192 172757 port 37 172757 unique_id port 172757 remote_ip 10.8.0.134 172760 username rahim 172760 mac 172760 bytes_out 250309 172760 bytes_in 2787897 172760 station_ip 5.120.55.192 172760 port 37 172760 unique_id port 172760 remote_ip 10.8.0.134 172761 username barzegar 172761 mac 172761 bytes_out 0 172761 bytes_in 0 172761 station_ip 5.119.187.175 172761 port 3 172761 unique_id port 172761 remote_ip 10.8.0.10 172768 username mirzaei 172768 kill_reason Another user logged on this global unique id 172768 mac 172768 bytes_out 0 172768 bytes_in 0 172768 station_ip 5.120.58.130 172768 port 12 172768 unique_id port 172770 username rajaei 172770 kill_reason Another user logged on this global unique id 172770 mac 172770 bytes_out 0 172770 bytes_in 0 172770 station_ip 5.134.174.184 172770 port 34 172770 unique_id port 172770 remote_ip 10.8.0.218 172772 username mostafa_es78 172772 mac 172772 bytes_out 4379670 172772 bytes_in 30287557 172772 station_ip 37.129.226.89 172772 port 26 172772 unique_id port 172772 remote_ip 10.8.0.34 172773 username rahim 172773 mac 172773 bytes_out 0 172773 bytes_in 0 172773 station_ip 5.120.55.192 172773 port 38 172773 unique_id port 172773 remote_ip 10.8.0.134 172775 username tahmasebi 172775 mac 172775 bytes_out 0 172775 bytes_in 0 172775 station_ip 5.119.56.25 172775 port 3 172775 unique_id port 172775 remote_ip 10.8.0.126 172776 username rahim 172776 mac 172776 bytes_out 0 172776 bytes_in 0 172776 station_ip 5.120.55.192 172776 port 3 172776 unique_id port 172776 remote_ip 10.8.0.134 172780 username rajaei 172780 kill_reason Another user logged on this global unique id 172780 mac 172780 bytes_out 0 172780 bytes_in 0 172780 station_ip 5.134.174.184 172780 port 34 172780 unique_id port 172784 username majidsarmast 172784 mac 172784 bytes_out 674192 172784 bytes_in 13772000 172784 station_ip 86.57.114.254 172784 port 38 172784 unique_id port 172784 remote_ip 10.8.0.170 172788 username vanila 172788 mac 172788 bytes_out 7644 172788 bytes_in 9351 172788 station_ip 83.122.237.9 172788 port 38 172788 unique_id port 172788 remote_ip 10.8.0.46 172791 username mirzaei 172791 kill_reason Another user logged on this global unique id 172791 mac 172791 bytes_out 0 172791 bytes_in 0 172791 station_ip 5.120.58.130 172791 port 12 172791 unique_id port 172792 username rajaei 172792 kill_reason Another user logged on this global unique id 172792 mac 172792 bytes_out 0 172792 bytes_in 0 172792 station_ip 5.134.174.184 172792 port 34 172792 unique_id port 172793 username rahim 172793 mac 172793 bytes_out 117039 172793 bytes_in 149050 172793 station_ip 5.120.55.192 172793 port 3 172793 unique_id port 172793 remote_ip 10.8.0.134 172795 username rahim 172795 mac 172795 bytes_out 0 172795 bytes_in 0 172795 station_ip 5.120.55.192 172795 port 3 172795 unique_id port 172795 remote_ip 10.8.0.134 172796 username rahim 172796 mac 172796 bytes_out 0 172796 bytes_in 0 172796 station_ip 5.120.55.192 172796 port 3 172796 unique_id port 172796 remote_ip 10.8.0.134 172798 username kalantary 172798 mac 172798 bytes_out 613947 172798 bytes_in 5237329 172798 station_ip 83.122.202.206 172798 port 42 172798 unique_id port 172798 remote_ip 10.8.0.50 172801 username jafari 172801 kill_reason Another user logged on this global unique id 172801 mac 172801 bytes_out 0 172801 bytes_in 0 172801 station_ip 89.47.68.14 172801 port 40 172801 unique_id port 172806 username aminvpn 172806 mac 172806 bytes_out 0 172806 bytes_in 0 172806 station_ip 5.119.94.158 172806 port 41 172806 unique_id port 172806 remote_ip 10.8.0.58 172807 username jafari 172807 mac 172807 bytes_out 0 172807 bytes_in 0 172807 station_ip 89.47.68.14 172807 port 40 172807 unique_id port 172808 username alirezazadeh 172808 unique_id port 172808 terminate_cause Lost-Carrier 172808 bytes_out 199158 172808 bytes_in 1246382 172808 station_ip 5.120.102.197 172808 port 15728787 172808 nas_port_type Virtual 172808 remote_ip 5.5.5.225 172810 username tahmasebi 172810 mac 172810 bytes_out 19807 172810 bytes_in 42274 172810 station_ip 5.119.56.25 172810 port 3 172810 unique_id port 172810 remote_ip 10.8.0.126 172815 username tahmasebi 172815 mac 172815 bytes_out 0 172815 bytes_in 0 172815 station_ip 5.119.56.25 172815 port 34 172815 unique_id port 172815 remote_ip 10.8.0.126 172818 username shadkam 172818 mac 172818 bytes_out 1507459 172818 bytes_in 16930624 172818 station_ip 37.129.157.244 172818 port 38 172818 unique_id port 172818 remote_ip 10.8.0.74 172821 username tahmasebi 172821 mac 172821 bytes_out 13034 172821 bytes_in 29451 172821 station_ip 5.119.56.25 172821 port 34 172821 unique_id port 172821 remote_ip 10.8.0.126 172822 username rajaei 172822 kill_reason Another user logged on this global unique id 172822 mac 172822 bytes_out 0 172822 bytes_in 0 172822 station_ip 5.134.174.184 172822 port 3 172822 unique_id port 172822 remote_ip 10.8.0.218 172824 username tahmasebi 172824 mac 172824 bytes_out 0 172824 bytes_in 0 172824 station_ip 5.119.56.25 172824 port 42 172824 unique_id port 172824 remote_ip 10.8.0.126 172826 username tahmasebi 172826 kill_reason Maximum check online fails reached 172826 mac 172826 bytes_out 0 172826 bytes_in 0 172826 station_ip 5.119.56.25 172826 port 43 172826 unique_id port 172827 username tahmasebi 172827 mac 172827 bytes_out 0 172785 port 41 172785 unique_id port 172785 remote_ip 10.8.0.46 172786 username aminvpn 172786 mac 172786 bytes_out 0 172786 bytes_in 0 172786 station_ip 5.119.94.158 172786 port 41 172786 unique_id port 172786 remote_ip 10.8.0.58 172794 username rahim 172794 mac 172794 bytes_out 0 172794 bytes_in 0 172794 station_ip 5.120.55.192 172794 port 3 172794 unique_id port 172794 remote_ip 10.8.0.134 172799 username rahim 172799 mac 172799 bytes_out 0 172799 bytes_in 0 172799 station_ip 5.120.55.192 172799 port 3 172799 unique_id port 172799 remote_ip 10.8.0.134 172800 username rahim 172800 mac 172800 bytes_out 0 172800 bytes_in 0 172800 station_ip 5.120.55.192 172800 port 3 172800 unique_id port 172800 remote_ip 10.8.0.134 172803 username barzegar 172803 mac 172803 bytes_out 0 172803 bytes_in 0 172803 station_ip 5.119.187.175 172803 port 41 172803 unique_id port 172803 remote_ip 10.8.0.10 172809 username mehdizare 172809 mac 172809 bytes_out 560137 172809 bytes_in 6289052 172809 station_ip 37.129.185.236 172809 port 36 172809 unique_id port 172809 remote_ip 10.8.0.210 172812 username pourshad 172812 mac 172812 bytes_out 2045757 172812 bytes_in 54692363 172812 station_ip 5.120.203.248 172812 port 37 172812 unique_id port 172812 remote_ip 10.8.0.42 172814 username tahmasebi 172814 mac 172814 bytes_out 0 172814 bytes_in 0 172814 station_ip 5.119.56.25 172814 port 34 172814 unique_id port 172814 remote_ip 10.8.0.126 172817 username tahmasebi 172817 mac 172817 bytes_out 4978 172817 bytes_in 10267 172817 station_ip 5.119.56.25 172817 port 37 172817 unique_id port 172817 remote_ip 10.8.0.126 172819 username barzegar 172819 mac 172819 bytes_out 0 172819 bytes_in 0 172819 station_ip 5.119.187.175 172819 port 37 172819 unique_id port 172819 remote_ip 10.8.0.10 172823 username aminvpn 172823 mac 172823 bytes_out 0 172823 bytes_in 0 172823 station_ip 5.119.94.158 172823 port 38 172823 unique_id port 172823 remote_ip 10.8.0.58 172825 username rajaei 172825 mac 172825 bytes_out 0 172825 bytes_in 0 172825 station_ip 5.134.174.184 172825 port 3 172825 unique_id port 172830 username saeed9658 172830 mac 172830 bytes_out 76907 172830 bytes_in 201511 172830 station_ip 5.120.130.149 172830 port 37 172830 unique_id port 172830 remote_ip 10.8.0.154 172832 username tahmasebi 172832 mac 172832 bytes_out 11875 172832 bytes_in 21943 172832 station_ip 5.119.56.25 172832 port 3 172832 unique_id port 172832 remote_ip 10.8.0.126 172835 username kalantary 172835 mac 172835 bytes_out 1546371 172835 bytes_in 24034460 172835 station_ip 83.122.209.238 172835 port 38 172835 unique_id port 172835 remote_ip 10.8.0.50 172838 username aminvpn 172838 mac 172838 bytes_out 0 172838 bytes_in 0 172838 station_ip 5.119.94.158 172838 port 3 172838 unique_id port 172838 remote_ip 10.8.0.58 172839 username shadkam 172839 mac 172839 bytes_out 2736843 172839 bytes_in 35160905 172839 station_ip 113.203.34.211 172839 port 42 172839 unique_id port 172839 remote_ip 10.8.0.74 172842 username sedighe 172842 mac 172842 bytes_out 383210 172842 bytes_in 4426292 172842 station_ip 83.122.10.180 172842 port 34 172842 unique_id port 172842 remote_ip 10.8.0.78 172843 username sabaghnezhad 172843 mac 172843 bytes_out 217610 172843 bytes_in 608476 172843 station_ip 83.122.102.101 172843 port 35 172843 unique_id port 172843 remote_ip 10.8.0.66 172844 username farhad2 172844 mac 172789 unique_id port 172789 remote_ip 10.8.0.134 172790 username rahim 172790 mac 172790 bytes_out 0 172790 bytes_in 0 172790 station_ip 5.120.55.192 172790 port 3 172790 unique_id port 172790 remote_ip 10.8.0.134 172797 username mostafa_es78 172797 kill_reason Another user logged on this global unique id 172797 mac 172797 bytes_out 0 172797 bytes_in 0 172797 station_ip 37.129.226.89 172797 port 26 172797 unique_id port 172797 remote_ip 10.8.0.34 172802 username rahim 172802 mac 172802 bytes_out 0 172802 bytes_in 0 172802 station_ip 5.120.55.192 172802 port 42 172802 unique_id port 172802 remote_ip 10.8.0.134 172804 username rajaei 172804 kill_reason Another user logged on this global unique id 172804 mac 172804 bytes_out 0 172804 bytes_in 0 172804 station_ip 5.134.174.184 172804 port 34 172804 unique_id port 172805 username rahim 172805 mac 172805 bytes_out 0 172805 bytes_in 0 172805 station_ip 5.120.55.192 172805 port 41 172805 unique_id port 172805 remote_ip 10.8.0.134 172811 username aminvpn 172811 unique_id port 172811 terminate_cause User-Request 172811 bytes_out 136895 172811 bytes_in 1498051 172811 station_ip 109.125.128.116 172811 port 15728788 172811 nas_port_type Virtual 172811 remote_ip 5.5.5.223 172813 username rajaei 172813 mac 172813 bytes_out 0 172813 bytes_in 0 172813 station_ip 5.134.174.184 172813 port 34 172813 unique_id port 172816 username vanila 172816 mac 172816 bytes_out 155420 172816 bytes_in 1908679 172816 station_ip 83.122.237.9 172816 port 34 172816 unique_id port 172816 remote_ip 10.8.0.46 172820 username ayobi 172820 kill_reason Another user logged on this global unique id 172820 mac 172820 bytes_out 0 172820 bytes_in 0 172820 station_ip 188.245.89.158 172820 port 22 172820 unique_id port 172820 remote_ip 10.8.0.186 172828 username sabaghnezhad 172828 mac 172828 bytes_out 69858 172828 bytes_in 81239 172828 station_ip 83.122.102.101 172828 port 35 172828 unique_id port 172828 remote_ip 10.8.0.66 172836 username aminvpn 172836 mac 172836 bytes_out 0 172836 bytes_in 0 172836 station_ip 5.119.94.158 172836 port 3 172836 unique_id port 172836 remote_ip 10.8.0.58 172840 username mehdizare 172840 mac 172840 bytes_out 32201 172840 bytes_in 34494 172840 station_ip 37.129.185.236 172840 port 40 172840 unique_id port 172840 remote_ip 10.8.0.210 172841 username pourshad 172841 kill_reason Another user logged on this global unique id 172841 mac 172841 bytes_out 0 172841 bytes_in 0 172841 station_ip 5.120.203.248 172841 port 36 172841 unique_id port 172841 remote_ip 10.8.0.42 172847 username rahim 172847 kill_reason Another user logged on this global unique id 172847 mac 172847 bytes_out 0 172847 bytes_in 0 172847 station_ip 5.120.55.192 172847 port 41 172847 unique_id port 172847 remote_ip 10.8.0.134 172849 username barzegar 172849 mac 172849 bytes_out 0 172849 bytes_in 0 172849 station_ip 5.119.187.175 172849 port 42 172849 unique_id port 172849 remote_ip 10.8.0.10 172852 username aminvpn 172852 mac 172852 bytes_out 0 172852 bytes_in 0 172852 station_ip 5.119.94.158 172852 port 40 172852 unique_id port 172852 remote_ip 10.8.0.58 172853 username aminvpn 172853 mac 172853 bytes_out 0 172853 bytes_in 0 172853 station_ip 5.119.94.158 172853 port 40 172853 unique_id port 172853 remote_ip 10.8.0.58 172854 username tahmasebi 172854 mac 172854 bytes_out 0 172854 bytes_in 0 172854 station_ip 5.119.56.25 172854 port 37 172854 unique_id port 172854 remote_ip 10.8.0.126 172858 username sabaghnezhad 172858 mac 172858 bytes_out 27532 172827 bytes_in 0 172827 station_ip 5.119.56.25 172827 port 3 172827 unique_id port 172827 remote_ip 10.8.0.126 172829 username farhad2 172829 mac 172829 bytes_out 257072 172829 bytes_in 970715 172829 station_ip 5.119.194.76 172829 port 3 172829 unique_id port 172829 remote_ip 10.8.0.146 172831 username vanila 172831 mac 172831 bytes_out 147343 172831 bytes_in 708987 172831 station_ip 83.122.237.9 172831 port 44 172831 unique_id port 172831 remote_ip 10.8.0.46 172833 username barzegar 172833 mac 172833 bytes_out 0 172833 bytes_in 0 172833 station_ip 5.119.187.175 172833 port 3 172833 unique_id port 172833 remote_ip 10.8.0.10 172834 username tahmasebi 172834 mac 172834 bytes_out 0 172834 bytes_in 0 172834 station_ip 5.119.56.25 172834 port 3 172834 unique_id port 172834 remote_ip 10.8.0.126 172837 username aminvpn 172837 mac 172837 bytes_out 0 172837 bytes_in 0 172837 station_ip 5.119.94.158 172837 port 3 172837 unique_id port 172837 remote_ip 10.8.0.58 172846 username tahmasebi 172846 mac 172846 bytes_out 0 172846 bytes_in 0 172846 station_ip 5.119.56.25 172846 port 42 172846 unique_id port 172846 remote_ip 10.8.0.126 172848 username sedighe 172848 mac 172848 bytes_out 28786 172848 bytes_in 41221 172848 station_ip 83.123.138.100 172848 port 40 172848 unique_id port 172848 remote_ip 10.8.0.78 172850 username mostafa_es78 172850 kill_reason Another user logged on this global unique id 172850 mac 172850 bytes_out 0 172850 bytes_in 0 172850 station_ip 37.129.226.89 172850 port 26 172850 unique_id port 172851 username aminvpn 172851 mac 172851 bytes_out 114061 172851 bytes_in 461466 172851 station_ip 83.122.93.55 172851 port 37 172851 unique_id port 172851 remote_ip 10.8.0.58 172855 username sedighe 172855 mac 172855 bytes_out 12861 172855 bytes_in 11856 172855 station_ip 83.123.138.100 172855 port 44 172855 unique_id port 172855 remote_ip 10.8.0.78 172856 username barzegar 172856 mac 172856 bytes_out 0 172856 bytes_in 0 172856 station_ip 5.119.187.175 172856 port 42 172856 unique_id port 172856 remote_ip 10.8.0.10 172857 username fezealinaghi 172857 mac 172857 bytes_out 0 172857 bytes_in 0 172857 station_ip 113.203.92.35 172857 port 7 172857 unique_id port 172860 username jafari 172860 mac 172860 bytes_out 639907 172860 bytes_in 707308 172860 station_ip 89.47.68.14 172860 port 3 172860 unique_id port 172860 remote_ip 10.8.0.86 172862 username sabaghnezhad 172862 mac 172862 bytes_out 8323 172862 bytes_in 12734 172862 station_ip 83.122.102.101 172862 port 45 172862 unique_id port 172862 remote_ip 10.8.0.66 172864 username sabaghnezhad 172864 mac 172864 bytes_out 4599 172864 bytes_in 9386 172864 station_ip 83.122.102.101 172864 port 3 172864 unique_id port 172864 remote_ip 10.8.0.66 172866 username barzegar 172866 mac 172866 bytes_out 0 172866 bytes_in 0 172866 station_ip 5.119.187.175 172866 port 34 172866 unique_id port 172866 remote_ip 10.8.0.10 172869 username fezealinaghi 172869 mac 172869 bytes_out 13261 172869 bytes_in 35262 172869 station_ip 113.203.92.35 172869 port 3 172869 unique_id port 172869 remote_ip 10.8.0.202 172870 username tahmasebi 172870 mac 172870 bytes_out 0 172870 bytes_in 0 172870 station_ip 5.119.56.25 172870 port 3 172870 unique_id port 172870 remote_ip 10.8.0.126 172880 username sedighe 172880 mac 172880 bytes_out 375961 172880 bytes_in 2134688 172880 station_ip 83.123.138.100 172880 port 7 172880 unique_id port 172844 bytes_out 2561215 172844 bytes_in 31936123 172844 station_ip 5.119.194.76 172844 port 37 172844 unique_id port 172844 remote_ip 10.8.0.146 172845 username ayobi 172845 kill_reason Another user logged on this global unique id 172845 mac 172845 bytes_out 0 172845 bytes_in 0 172845 station_ip 188.245.89.158 172845 port 22 172845 unique_id port 172859 username tahmasebi 172859 mac 172859 bytes_out 0 172859 bytes_in 0 172859 station_ip 5.119.56.25 172859 port 7 172859 unique_id port 172859 remote_ip 10.8.0.126 172861 username aminvpn 172861 kill_reason Maximum check online fails reached 172861 mac 172861 bytes_out 0 172861 bytes_in 0 172861 station_ip 5.119.94.158 172861 port 44 172861 unique_id port 172865 username fezealinaghi 172865 mac 172865 bytes_out 21035 172865 bytes_in 27571 172865 station_ip 113.203.92.35 172865 port 42 172865 unique_id port 172865 remote_ip 10.8.0.202 172868 username aminvpn 172868 mac 172868 bytes_out 0 172868 bytes_in 0 172868 station_ip 5.119.94.158 172868 port 37 172868 unique_id port 172868 remote_ip 10.8.0.58 172871 username aminvpn 172871 mac 172871 bytes_out 0 172871 bytes_in 0 172871 station_ip 5.119.94.158 172871 port 3 172871 unique_id port 172871 remote_ip 10.8.0.58 172872 username sabaghnezhad 172872 mac 172872 bytes_out 9312 172872 bytes_in 12823 172872 station_ip 83.122.102.101 172872 port 34 172872 unique_id port 172872 remote_ip 10.8.0.66 172874 username mirzaei 172874 kill_reason Another user logged on this global unique id 172874 mac 172874 bytes_out 0 172874 bytes_in 0 172874 station_ip 5.120.58.130 172874 port 12 172874 unique_id port 172876 username malekpoir 172876 mac 172876 bytes_out 0 172876 bytes_in 0 172876 station_ip 5.119.6.116 172876 port 32 172876 unique_id port 172877 username rahim 172877 kill_reason Another user logged on this global unique id 172877 mac 172877 bytes_out 0 172877 bytes_in 0 172877 station_ip 5.120.55.192 172877 port 41 172877 unique_id port 172878 username jafari 172878 mac 172878 bytes_out 113289 172878 bytes_in 139324 172878 station_ip 94.24.95.154 172878 port 3 172878 unique_id port 172878 remote_ip 10.8.0.86 172879 username alipour 172879 mac 172879 bytes_out 1359277 172879 bytes_in 6511542 172879 station_ip 83.123.43.218 172879 port 14 172879 unique_id port 172879 remote_ip 10.8.0.26 172882 username farhad2 172882 mac 172882 bytes_out 3932381 172882 bytes_in 47129485 172882 station_ip 5.119.194.76 172882 port 35 172882 unique_id port 172882 remote_ip 10.8.0.146 172883 username tahmasebi 172883 mac 172883 bytes_out 106309 172883 bytes_in 164251 172883 station_ip 5.119.56.25 172883 port 32 172883 unique_id port 172883 remote_ip 10.8.0.126 172887 username pourshad 172887 kill_reason Another user logged on this global unique id 172887 mac 172887 bytes_out 0 172887 bytes_in 0 172887 station_ip 5.120.203.248 172887 port 36 172887 unique_id port 172890 username tahmasebi 172890 mac 172890 bytes_out 0 172890 bytes_in 0 172890 station_ip 5.119.56.25 172890 port 35 172890 unique_id port 172890 remote_ip 10.8.0.126 172893 username houshang 172893 mac 172893 bytes_out 323115 172893 bytes_in 1836358 172893 station_ip 5.120.19.193 172893 port 32 172893 unique_id port 172893 remote_ip 10.8.0.82 172894 username pourshad 172894 mac 172894 bytes_out 0 172894 bytes_in 0 172894 station_ip 5.120.203.248 172894 port 36 172894 unique_id port 172896 username barzegar 172896 mac 172896 bytes_out 0 172896 bytes_in 0 172896 station_ip 5.119.187.175 172858 bytes_in 50367 172858 station_ip 83.122.102.101 172858 port 34 172858 unique_id port 172858 remote_ip 10.8.0.66 172863 username sedighe 172863 mac 172863 bytes_out 7251 172863 bytes_in 8606 172863 station_ip 83.123.138.100 172863 port 37 172863 unique_id port 172863 remote_ip 10.8.0.78 172867 username aminvpn 172867 mac 172867 bytes_out 1132491 172867 bytes_in 15992148 172867 station_ip 83.122.93.55 172867 port 40 172867 unique_id port 172867 remote_ip 10.8.0.58 172873 username sabaghnezhad 172873 mac 172873 bytes_out 0 172873 bytes_in 0 172873 station_ip 83.123.45.211 172873 port 37 172873 unique_id port 172873 remote_ip 10.8.0.66 172875 username aminvpn 172875 mac 172875 bytes_out 44630 172875 bytes_in 84662 172875 station_ip 83.122.93.55 172875 port 3 172875 unique_id port 172875 remote_ip 10.8.0.58 172881 username barzegar 172881 mac 172881 bytes_out 0 172881 bytes_in 0 172881 station_ip 5.119.187.175 172881 port 3 172881 unique_id port 172881 remote_ip 10.8.0.10 172884 username aminvpn 172884 mac 172884 bytes_out 1338165 172884 bytes_in 7436303 172884 station_ip 83.122.93.55 172884 port 37 172884 unique_id port 172884 remote_ip 10.8.0.58 172886 username tahmasebi 172886 mac 172886 bytes_out 1953 172886 bytes_in 4590 172886 station_ip 5.119.56.25 172886 port 32 172886 unique_id port 172886 remote_ip 10.8.0.126 172888 username tahmasebi 172888 mac 172888 bytes_out 0 172888 bytes_in 0 172888 station_ip 5.119.56.25 172888 port 35 172888 unique_id port 172888 remote_ip 10.8.0.126 172889 username farhad2 172889 mac 172889 bytes_out 516349 172889 bytes_in 4143241 172889 station_ip 5.119.194.76 172889 port 3 172889 unique_id port 172889 remote_ip 10.8.0.146 172891 username mehdizare 172891 mac 172891 bytes_out 291185 172891 bytes_in 203248 172891 station_ip 37.129.185.236 172891 port 38 172891 unique_id port 172891 remote_ip 10.8.0.210 172895 username tahmasebi 172895 mac 172895 bytes_out 0 172895 bytes_in 0 172895 station_ip 5.119.56.25 172895 port 38 172895 unique_id port 172895 remote_ip 10.8.0.126 172897 username tahmasebi 172897 mac 172897 bytes_out 0 172897 bytes_in 0 172897 station_ip 5.119.56.25 172897 port 36 172897 unique_id port 172897 remote_ip 10.8.0.126 172900 username vanila 172900 mac 172900 bytes_out 116018 172900 bytes_in 309741 172900 station_ip 83.122.150.153 172900 port 32 172900 unique_id port 172900 remote_ip 10.8.0.46 172905 username mostafa_es78 172905 kill_reason Another user logged on this global unique id 172905 mac 172905 bytes_out 0 172905 bytes_in 0 172905 station_ip 37.129.226.89 172905 port 26 172905 unique_id port 172906 username tahmasebi 172906 mac 172906 bytes_out 0 172906 bytes_in 0 172906 station_ip 5.119.56.25 172906 port 32 172906 unique_id port 172906 remote_ip 10.8.0.126 172908 username mirzaei 172908 kill_reason Another user logged on this global unique id 172908 mac 172908 bytes_out 0 172908 bytes_in 0 172908 station_ip 5.120.58.130 172908 port 12 172908 unique_id port 172914 username aminvpn 172914 mac 172914 bytes_out 85088 172914 bytes_in 134892 172914 station_ip 83.122.93.55 172914 port 7 172914 unique_id port 172914 remote_ip 10.8.0.58 172921 username farhad2 172921 mac 172921 bytes_out 0 172921 bytes_in 0 172921 station_ip 5.119.194.76 172921 port 14 172921 unique_id port 172921 remote_ip 10.8.0.146 172928 username aminvpn 172928 mac 172928 bytes_out 0 172928 bytes_in 0 172928 station_ip 5.119.94.158 172928 port 32 172880 remote_ip 10.8.0.78 172885 username aminvpn 172885 mac 172885 bytes_out 0 172885 bytes_in 0 172885 station_ip 5.119.94.158 172885 port 7 172885 unique_id port 172885 remote_ip 10.8.0.58 172892 username rahim 172892 mac 172892 bytes_out 0 172892 bytes_in 0 172892 station_ip 5.120.55.192 172892 port 41 172892 unique_id port 172899 username aminvpn 172899 mac 172899 bytes_out 0 172899 bytes_in 0 172899 station_ip 5.119.94.158 172899 port 36 172899 unique_id port 172899 remote_ip 10.8.0.58 172901 username mostafa_es78 172901 kill_reason Another user logged on this global unique id 172901 mac 172901 bytes_out 0 172901 bytes_in 0 172901 station_ip 37.129.226.89 172901 port 26 172901 unique_id port 172902 username tahmasebi 172902 mac 172902 bytes_out 0 172902 bytes_in 0 172902 station_ip 5.119.56.25 172902 port 7 172902 unique_id port 172902 remote_ip 10.8.0.126 172904 username mohammadjavad 172904 mac 172904 bytes_out 268815 172904 bytes_in 2010309 172904 station_ip 37.129.101.120 172904 port 37 172904 unique_id port 172904 remote_ip 10.8.0.110 172909 username forozandeh1 172909 mac 172909 bytes_out 1798888 172909 bytes_in 13502697 172909 station_ip 113.203.93.91 172909 port 14 172909 unique_id port 172909 remote_ip 10.8.0.30 172910 username farhad2 172910 mac 172910 bytes_out 1585050 172910 bytes_in 11616514 172910 station_ip 5.119.194.76 172910 port 3 172910 unique_id port 172910 remote_ip 10.8.0.146 172911 username sekonji3 172911 mac 172911 bytes_out 2103 172911 bytes_in 4160 172911 station_ip 37.129.76.195 172911 port 14 172911 unique_id port 172911 remote_ip 10.8.0.62 172913 username farhad2 172913 mac 172913 bytes_out 1926089 172913 bytes_in 29771347 172913 station_ip 5.119.194.76 172913 port 3 172913 unique_id port 172913 remote_ip 10.8.0.146 172916 username aminvpn 172916 mac 172916 bytes_out 0 172916 bytes_in 0 172916 station_ip 5.119.94.158 172916 port 3 172916 unique_id port 172916 remote_ip 10.8.0.58 172917 username aminvpn 172917 mac 172917 bytes_out 3811 172917 bytes_in 7213 172917 station_ip 83.122.93.55 172917 port 36 172917 unique_id port 172917 remote_ip 10.8.0.58 172918 username farhad2 172918 mac 172918 bytes_out 184740 172918 bytes_in 775385 172918 station_ip 5.119.194.76 172918 port 14 172918 unique_id port 172918 remote_ip 10.8.0.146 172920 username tahmasebi 172920 mac 172920 bytes_out 30691 172920 bytes_in 65701 172920 station_ip 5.119.56.25 172920 port 7 172920 unique_id port 172920 remote_ip 10.8.0.126 172922 username amin.saeedi 172922 unique_id port 172922 terminate_cause User-Request 172922 bytes_out 4859739 172922 bytes_in 142326643 172922 station_ip 31.59.34.125 172922 port 15728790 172922 nas_port_type Virtual 172922 remote_ip 5.5.5.220 172924 username farhad2 172924 mac 172924 bytes_out 668121 172924 bytes_in 2976870 172924 station_ip 5.119.194.76 172924 port 7 172924 unique_id port 172924 remote_ip 10.8.0.146 172925 username rahim 172925 mac 172925 bytes_out 678270 172925 bytes_in 5126829 172925 station_ip 5.120.55.192 172925 port 32 172925 unique_id port 172925 remote_ip 10.8.0.134 172929 username pourshad 172929 mac 172929 bytes_out 1801038 172929 bytes_in 25891292 172929 station_ip 5.120.203.248 172929 port 37 172929 unique_id port 172929 remote_ip 10.8.0.42 172934 username khademi 172934 kill_reason Another user logged on this global unique id 172934 mac 172934 bytes_out 0 172934 bytes_in 0 172934 station_ip 37.129.12.135 172934 port 20 172934 unique_id port 172896 port 42 172896 unique_id port 172896 remote_ip 10.8.0.10 172898 username aminvpn 172898 mac 172898 bytes_out 429672 172898 bytes_in 4173042 172898 station_ip 83.122.93.55 172898 port 7 172898 unique_id port 172898 remote_ip 10.8.0.58 172903 username sedighe 172903 mac 172903 bytes_out 1184957 172903 bytes_in 15225392 172903 station_ip 83.123.138.100 172903 port 40 172903 unique_id port 172903 remote_ip 10.8.0.78 172907 username hosseine 172907 kill_reason Another user logged on this global unique id 172907 mac 172907 bytes_out 0 172907 bytes_in 0 172907 station_ip 113.203.54.182 172907 port 16 172907 unique_id port 172912 username barzegar 172912 mac 172912 bytes_out 0 172912 bytes_in 0 172912 station_ip 5.119.187.175 172912 port 14 172912 unique_id port 172912 remote_ip 10.8.0.10 172915 username tahmasebi 172915 mac 172915 bytes_out 8193 172915 bytes_in 13594 172915 station_ip 5.119.56.25 172915 port 32 172915 unique_id port 172915 remote_ip 10.8.0.126 172919 username pourshad 172919 mac 172919 bytes_out 65010 172919 bytes_in 63726 172919 station_ip 5.120.203.248 172919 port 41 172919 unique_id port 172919 remote_ip 10.8.0.42 172923 username vanila 172923 mac 172923 bytes_out 23867 172923 bytes_in 28707 172923 station_ip 37.129.147.1 172923 port 14 172923 unique_id port 172923 remote_ip 10.8.0.46 172926 username barzegar 172926 mac 172926 bytes_out 0 172926 bytes_in 0 172926 station_ip 5.119.187.175 172926 port 38 172926 unique_id port 172926 remote_ip 10.8.0.10 172927 username aminvpn 172927 mac 172927 bytes_out 73779 172927 bytes_in 136654 172927 station_ip 83.122.93.55 172927 port 36 172927 unique_id port 172927 remote_ip 10.8.0.58 172932 username shadkam 172932 mac 172932 bytes_out 226216 172932 bytes_in 2396793 172932 station_ip 37.129.47.6 172932 port 3 172932 unique_id port 172932 remote_ip 10.8.0.74 172933 username sedighe 172933 mac 172933 bytes_out 315762 172933 bytes_in 250386 172933 station_ip 83.123.138.100 172933 port 14 172933 unique_id port 172933 remote_ip 10.8.0.78 172936 username tahmasebi 172936 mac 172936 bytes_out 0 172936 bytes_in 0 172936 station_ip 5.119.56.25 172936 port 34 172936 unique_id port 172936 remote_ip 10.8.0.126 172937 username aminvpn 172937 unique_id port 172937 terminate_cause User-Request 172937 bytes_out 31751852 172937 bytes_in 694718694 172937 station_ip 5.119.94.158 172937 port 15728783 172937 nas_port_type Virtual 172937 remote_ip 5.5.5.232 172940 username mehdizare 172940 mac 172940 bytes_out 157646 172940 bytes_in 221022 172940 station_ip 37.129.185.236 172940 port 35 172940 unique_id port 172940 remote_ip 10.8.0.210 172943 username barzegar 172943 mac 172943 bytes_out 2344 172943 bytes_in 4521 172943 station_ip 5.119.187.175 172943 port 35 172943 unique_id port 172943 remote_ip 10.8.0.10 172947 username alirezazadeh 172947 unique_id port 172947 terminate_cause Lost-Carrier 172947 bytes_out 1221397 172947 bytes_in 6172513 172947 station_ip 5.120.50.136 172947 port 15728789 172947 nas_port_type Virtual 172947 remote_ip 5.5.5.221 172949 username sedighe 172949 mac 172949 bytes_out 236348 172949 bytes_in 1276631 172949 station_ip 113.203.117.109 172949 port 3 172949 unique_id port 172949 remote_ip 10.8.0.78 172954 username godarzi 172954 mac 172954 bytes_out 222048 172954 bytes_in 2228496 172954 station_ip 5.119.200.207 172954 port 3 172954 unique_id port 172954 remote_ip 10.8.0.38 172956 username farhad2 172956 mac 172956 bytes_out 56671 172956 bytes_in 120916 172928 unique_id port 172928 remote_ip 10.8.0.58 172930 username tahmasebi 172930 mac 172930 bytes_out 0 172930 bytes_in 0 172930 station_ip 5.119.56.25 172930 port 38 172930 unique_id port 172930 remote_ip 10.8.0.126 172931 username sabaghnezhad 172931 mac 172931 bytes_out 242101 172931 bytes_in 1323345 172931 station_ip 83.122.102.101 172931 port 34 172931 unique_id port 172931 remote_ip 10.8.0.66 172935 username ayobi 172935 mac 172935 bytes_out 0 172935 bytes_in 0 172935 station_ip 188.245.89.158 172935 port 22 172935 unique_id port 172942 username aminvpn 172942 mac 172942 bytes_out 0 172942 bytes_in 0 172942 station_ip 5.119.94.158 172942 port 36 172942 unique_id port 172942 remote_ip 10.8.0.58 172950 username tahmasebi 172950 mac 172950 bytes_out 2392030 172950 bytes_in 31127373 172950 station_ip 5.119.56.25 172950 port 22 172950 unique_id port 172950 remote_ip 10.8.0.126 172951 username barzegar 172951 mac 172951 bytes_out 0 172951 bytes_in 0 172951 station_ip 5.119.187.175 172951 port 3 172951 unique_id port 172951 remote_ip 10.8.0.10 172952 username tahmasebi 172952 mac 172952 bytes_out 0 172952 bytes_in 0 172952 station_ip 5.119.56.25 172952 port 22 172952 unique_id port 172952 remote_ip 10.8.0.126 172960 username mohammadjavad 172960 mac 172960 bytes_out 541905 172960 bytes_in 9010667 172960 station_ip 83.123.91.223 172960 port 32 172960 unique_id port 172960 remote_ip 10.8.0.110 172963 username barzegar 172963 mac 172963 bytes_out 2576 172963 bytes_in 5073 172963 station_ip 5.119.187.175 172963 port 22 172963 unique_id port 172963 remote_ip 10.8.0.10 172968 username amin.saeedi 172968 unique_id port 172968 terminate_cause Lost-Carrier 172968 bytes_out 6203495 172968 bytes_in 259358981 172968 station_ip 31.59.34.125 172968 port 15728791 172968 nas_port_type Virtual 172968 remote_ip 5.5.5.219 172969 username mosi 172969 mac 172969 bytes_out 1630 172969 bytes_in 4057 172969 station_ip 151.235.78.217 172969 port 32 172969 unique_id port 172969 remote_ip 10.8.0.142 172971 username farhad2 172971 mac 172971 bytes_out 469157 172971 bytes_in 2263339 172971 station_ip 5.119.194.76 172971 port 3 172971 unique_id port 172971 remote_ip 10.8.0.146 172973 username farhad2 172973 mac 172973 bytes_out 217281 172973 bytes_in 1093458 172973 station_ip 5.119.194.76 172973 port 3 172973 unique_id port 172973 remote_ip 10.8.0.146 172975 username aminvpn 172975 mac 172975 bytes_out 178244 172975 bytes_in 2061859 172975 station_ip 83.122.93.55 172975 port 22 172975 unique_id port 172975 remote_ip 10.8.0.58 172976 username farhad2 172976 mac 172976 bytes_out 0 172976 bytes_in 0 172976 station_ip 5.119.194.76 172976 port 7 172976 unique_id port 172976 remote_ip 10.8.0.146 172983 username sekonji3 172983 mac 172983 bytes_out 11475 172983 bytes_in 10803 172983 station_ip 37.129.124.77 172983 port 22 172983 unique_id port 172983 remote_ip 10.8.0.62 172984 username aminvpn 172984 mac 172984 bytes_out 26895 172984 bytes_in 305026 172984 station_ip 83.122.93.55 172984 port 36 172984 unique_id port 172984 remote_ip 10.8.0.58 172986 username aminvpn 172986 mac 172986 bytes_out 2160 172986 bytes_in 3789 172986 station_ip 83.122.93.55 172986 port 36 172986 unique_id port 172986 remote_ip 10.8.0.58 172991 username barzegar 172991 mac 172991 bytes_out 0 172991 bytes_in 0 172991 station_ip 5.119.187.175 172991 port 7 172991 unique_id port 172991 remote_ip 10.8.0.10 172996 username jafari 172938 username tahmasebi 172938 mac 172938 bytes_out 0 172938 bytes_in 0 172938 station_ip 5.119.56.25 172938 port 22 172938 unique_id port 172938 remote_ip 10.8.0.126 172939 username kalantary 172939 mac 172939 bytes_out 1106872 172939 bytes_in 7895041 172939 station_ip 83.122.142.90 172939 port 36 172939 unique_id port 172939 remote_ip 10.8.0.50 172941 username aminvpn 172941 mac 172941 bytes_out 160871 172941 bytes_in 339996 172941 station_ip 83.122.93.55 172941 port 40 172941 unique_id port 172941 remote_ip 10.8.0.58 172944 username mehdizare 172944 mac 172944 bytes_out 14908 172944 bytes_in 26708 172944 station_ip 37.129.185.236 172944 port 34 172944 unique_id port 172944 remote_ip 10.8.0.210 172945 username khademi 172945 kill_reason Another user logged on this global unique id 172945 mac 172945 bytes_out 0 172945 bytes_in 0 172945 station_ip 37.129.12.135 172945 port 20 172945 unique_id port 172946 username sekonji3 172946 mac 172946 bytes_out 186590 172946 bytes_in 2597848 172946 station_ip 37.129.124.77 172946 port 32 172946 unique_id port 172946 remote_ip 10.8.0.62 172948 username aminvpn 172948 mac 172948 bytes_out 11210 172948 bytes_in 18610 172948 station_ip 83.122.93.55 172948 port 34 172948 unique_id port 172948 remote_ip 10.8.0.58 172953 username farhad2 172953 mac 172953 bytes_out 4221378 172953 bytes_in 41274391 172953 station_ip 5.119.194.76 172953 port 7 172953 unique_id port 172953 remote_ip 10.8.0.146 172955 username tahmasebi 172955 mac 172955 bytes_out 0 172955 bytes_in 0 172955 station_ip 5.119.56.25 172955 port 38 172955 unique_id port 172955 remote_ip 10.8.0.126 172957 username tahmasebi 172957 mac 172957 bytes_out 0 172957 bytes_in 0 172957 station_ip 5.119.56.25 172957 port 3 172957 unique_id port 172957 remote_ip 10.8.0.126 172962 username aminvpn 172962 mac 172962 bytes_out 0 172962 bytes_in 0 172962 station_ip 5.119.94.158 172962 port 38 172962 unique_id port 172962 remote_ip 10.8.0.58 172967 username pourshad 172967 mac 172967 bytes_out 48458 172967 bytes_in 70233 172967 station_ip 5.120.203.248 172967 port 14 172967 unique_id port 172967 remote_ip 10.8.0.42 172972 username tahmasebi 172972 mac 172972 bytes_out 0 172972 bytes_in 0 172972 station_ip 5.119.56.25 172972 port 14 172972 unique_id port 172972 remote_ip 10.8.0.126 172974 username jafari 172974 mac 172974 bytes_out 227296 172974 bytes_in 372790 172974 station_ip 94.24.95.154 172974 port 7 172974 unique_id port 172974 remote_ip 10.8.0.86 172978 username pourshad 172978 mac 172978 bytes_out 11791 172978 bytes_in 22377 172978 station_ip 5.120.203.248 172978 port 36 172978 unique_id port 172978 remote_ip 10.8.0.42 172980 username aminvpn 172980 mac 172980 bytes_out 3745 172980 bytes_in 5794 172980 station_ip 83.122.93.55 172980 port 22 172980 unique_id port 172980 remote_ip 10.8.0.58 172981 username tahmasebi 172981 kill_reason Another user logged on this global unique id 172981 mac 172981 bytes_out 0 172981 bytes_in 0 172981 station_ip 5.119.56.25 172981 port 14 172981 unique_id port 172981 remote_ip 10.8.0.126 172990 username shadkam 172990 kill_reason Another user logged on this global unique id 172990 mac 172990 bytes_out 0 172990 bytes_in 0 172990 station_ip 37.129.143.183 172990 port 40 172990 unique_id port 172990 remote_ip 10.8.0.74 172992 username aminvpn 172992 mac 172992 bytes_out 0 172992 bytes_in 0 172992 station_ip 5.119.94.158 172992 port 7 172992 unique_id port 172992 remote_ip 10.8.0.58 172956 station_ip 5.119.194.76 172956 port 22 172956 unique_id port 172956 remote_ip 10.8.0.146 172958 username khademi 172958 kill_reason Another user logged on this global unique id 172958 mac 172958 bytes_out 0 172958 bytes_in 0 172958 station_ip 37.129.12.135 172958 port 20 172958 unique_id port 172959 username mirzaei 172959 kill_reason Another user logged on this global unique id 172959 mac 172959 bytes_out 0 172959 bytes_in 0 172959 station_ip 5.120.58.130 172959 port 12 172959 unique_id port 172961 username aminvpn 172961 mac 172961 bytes_out 14957 172961 bytes_in 22100 172961 station_ip 83.122.93.55 172961 port 36 172961 unique_id port 172961 remote_ip 10.8.0.58 172964 username tahmasebi 172964 mac 172964 bytes_out 0 172964 bytes_in 0 172964 station_ip 5.119.56.25 172964 port 32 172964 unique_id port 172964 remote_ip 10.8.0.126 172965 username farhad2 172965 mac 172965 bytes_out 387455 172965 bytes_in 1706242 172965 station_ip 5.119.194.76 172965 port 3 172965 unique_id port 172965 remote_ip 10.8.0.146 172966 username tahmasebi 172966 mac 172966 bytes_out 0 172966 bytes_in 0 172966 station_ip 5.119.56.25 172966 port 32 172966 unique_id port 172966 remote_ip 10.8.0.126 172970 username tahmasebi 172970 mac 172970 bytes_out 0 172970 bytes_in 0 172970 station_ip 5.119.56.25 172970 port 14 172970 unique_id port 172970 remote_ip 10.8.0.126 172977 username aminvpn 172977 mac 172977 bytes_out 0 172977 bytes_in 0 172977 station_ip 5.119.94.158 172977 port 22 172977 unique_id port 172977 remote_ip 10.8.0.58 172979 username barzegar 172979 kill_reason Maximum check online fails reached 172979 mac 172979 bytes_out 0 172979 bytes_in 0 172979 station_ip 5.119.187.175 172979 port 32 172979 unique_id port 172982 username khademi 172982 kill_reason Another user logged on this global unique id 172982 mac 172982 bytes_out 0 172982 bytes_in 0 172982 station_ip 37.129.12.135 172982 port 20 172982 unique_id port 172985 username tahmasebi 172985 mac 172985 bytes_out 0 172985 bytes_in 0 172985 station_ip 5.119.56.25 172985 port 14 172985 unique_id port 172987 username mostafa_es78 172987 kill_reason Another user logged on this global unique id 172987 mac 172987 bytes_out 0 172987 bytes_in 0 172987 station_ip 37.129.226.89 172987 port 26 172987 unique_id port 172988 username tahmasebi 172988 mac 172988 bytes_out 0 172988 bytes_in 0 172988 station_ip 5.119.56.25 172988 port 14 172988 unique_id port 172988 remote_ip 10.8.0.126 172989 username pourshad 172989 mac 172989 bytes_out 750705 172989 bytes_in 8332707 172989 station_ip 5.120.203.248 172989 port 7 172989 unique_id port 172989 remote_ip 10.8.0.42 172993 username pourshad 172993 mac 172993 bytes_out 5084 172993 bytes_in 10456 172993 station_ip 5.120.203.248 172993 port 14 172993 unique_id port 172993 remote_ip 10.8.0.42 172995 username farhad2 172995 kill_reason Another user logged on this global unique id 172995 mac 172995 bytes_out 0 172995 bytes_in 0 172995 station_ip 5.119.194.76 172995 port 38 172995 unique_id port 172995 remote_ip 10.8.0.146 172997 username farhad2 172997 mac 172997 bytes_out 0 172997 bytes_in 0 172997 station_ip 5.119.194.76 172997 port 38 172997 unique_id port 172999 username khademi 172999 kill_reason Another user logged on this global unique id 172999 mac 172999 bytes_out 0 172999 bytes_in 0 172999 station_ip 37.129.12.135 172999 port 20 172999 unique_id port 173001 username aminvpn 173001 mac 173001 bytes_out 6207 173001 bytes_in 8358 173001 station_ip 83.122.93.55 172994 username tahmasebi 172994 mac 172994 bytes_out 0 172994 bytes_in 0 172994 station_ip 5.119.56.25 172994 port 7 172994 unique_id port 172994 remote_ip 10.8.0.126 172998 username mostafa_es78 172998 kill_reason Another user logged on this global unique id 172998 mac 172998 bytes_out 0 172998 bytes_in 0 172998 station_ip 37.129.226.89 172998 port 26 172998 unique_id port 173005 username pourshad 173005 mac 173005 bytes_out 3553866 173005 bytes_in 2328575 173005 station_ip 5.120.203.248 173005 port 7 173005 unique_id port 173005 remote_ip 10.8.0.42 173007 username aminvpn 173007 mac 173007 bytes_out 0 173007 bytes_in 0 173007 station_ip 5.119.94.158 173007 port 34 173007 unique_id port 173007 remote_ip 10.8.0.58 173012 username godarzi 173012 mac 173012 bytes_out 1006837 173012 bytes_in 12499811 173012 station_ip 5.119.200.207 173012 port 42 173012 unique_id port 173012 remote_ip 10.8.0.38 173013 username mohammadjavad 173013 mac 173013 bytes_out 725927 173013 bytes_in 13078361 173013 station_ip 83.122.87.80 173013 port 38 173013 unique_id port 173013 remote_ip 10.8.0.110 173020 username godarzi 173020 mac 173020 bytes_out 53466 173020 bytes_in 107393 173020 station_ip 5.119.200.207 173020 port 3 173020 unique_id port 173020 remote_ip 10.8.0.38 173021 username milan 173021 kill_reason Another user logged on this global unique id 173021 mac 173021 bytes_out 0 173021 bytes_in 0 173021 station_ip 5.119.173.190 173021 port 6 173021 unique_id port 173032 username aminvpn 173032 mac 173032 bytes_out 0 173032 bytes_in 0 173032 station_ip 5.119.94.158 173032 port 35 173032 unique_id port 173032 remote_ip 10.8.0.58 173035 username farhad2 173035 mac 173035 bytes_out 2634 173035 bytes_in 4126 173035 station_ip 5.119.194.76 173035 port 36 173035 unique_id port 173035 remote_ip 10.8.0.146 173044 username tahmasebi 173044 mac 173044 bytes_out 1695 173044 bytes_in 3761 173044 station_ip 5.119.56.25 173044 port 38 173044 unique_id port 173044 remote_ip 10.8.0.126 173047 username barzegar 173047 mac 173047 bytes_out 0 173047 bytes_in 0 173047 station_ip 5.119.187.175 173047 port 42 173047 unique_id port 173047 remote_ip 10.8.0.10 173050 username shadkam 173050 mac 173050 bytes_out 171188 173050 bytes_in 1096576 173050 station_ip 83.123.94.173 173050 port 38 173050 unique_id port 173050 remote_ip 10.8.0.74 173057 username sekonji3 173057 mac 173057 bytes_out 3761 173057 bytes_in 5425 173057 station_ip 37.129.16.198 173057 port 7 173057 unique_id port 173057 remote_ip 10.8.0.62 173059 username tahmasebi 173059 mac 173059 bytes_out 11357 173059 bytes_in 31868 173059 station_ip 5.119.56.25 173059 port 38 173059 unique_id port 173059 remote_ip 10.8.0.126 173060 username shadkam 173060 mac 173060 bytes_out 182857 173060 bytes_in 1306147 173060 station_ip 83.123.94.173 173060 port 42 173060 unique_id port 173060 remote_ip 10.8.0.74 173061 username majidsarmast 173061 mac 173061 bytes_out 266559 173061 bytes_in 2909836 173061 station_ip 86.57.98.69 173061 port 45 173061 unique_id port 173061 remote_ip 10.8.0.170 173066 username shadkam 173066 mac 173066 bytes_out 500636 173066 bytes_in 6008628 173066 station_ip 83.123.94.173 173066 port 7 173066 unique_id port 173066 remote_ip 10.8.0.74 173068 username tahmasebi 173068 mac 173068 bytes_out 0 173068 bytes_in 0 173068 station_ip 5.119.56.25 173068 port 3 173068 unique_id port 173068 remote_ip 10.8.0.126 173069 username tahmasebi 173069 mac 172996 mac 172996 bytes_out 48335 172996 bytes_in 127490 172996 station_ip 94.24.95.154 172996 port 3 172996 unique_id port 172996 remote_ip 10.8.0.86 173000 username arash 173000 mac 173000 bytes_out 96068 173000 bytes_in 167332 173000 station_ip 37.153.180.88 173000 port 34 173000 unique_id port 173000 remote_ip 10.8.0.70 173002 username kordestani 173002 mac 173002 bytes_out 3433216 173002 bytes_in 49331482 173002 station_ip 151.235.82.213 173002 port 22 173002 unique_id port 173002 remote_ip 10.8.0.130 173011 username farhad2 173011 kill_reason Another user logged on this global unique id 173011 mac 173011 bytes_out 0 173011 bytes_in 0 173011 station_ip 5.119.194.76 173011 port 22 173011 unique_id port 173011 remote_ip 10.8.0.146 173014 username barzegar 173014 mac 173014 bytes_out 0 173014 bytes_in 0 173014 station_ip 5.119.187.175 173014 port 3 173014 unique_id port 173014 remote_ip 10.8.0.10 173015 username tahmasebi 173015 mac 173015 bytes_out 0 173015 bytes_in 0 173015 station_ip 5.119.56.25 173015 port 3 173015 unique_id port 173015 remote_ip 10.8.0.126 173017 username farhad2 173017 kill_reason Another user logged on this global unique id 173017 mac 173017 bytes_out 0 173017 bytes_in 0 173017 station_ip 5.119.194.76 173017 port 22 173017 unique_id port 173018 username aminvpn 173018 mac 173018 bytes_out 0 173018 bytes_in 0 173018 station_ip 5.119.94.158 173018 port 36 173018 unique_id port 173018 remote_ip 10.8.0.58 173024 username forozandeh1 173024 kill_reason Another user logged on this global unique id 173024 mac 173024 bytes_out 0 173024 bytes_in 0 173024 station_ip 83.123.233.255 173024 port 37 173024 unique_id port 173024 remote_ip 10.8.0.30 173025 username mostafa_es78 173025 kill_reason Another user logged on this global unique id 173025 mac 173025 bytes_out 0 173025 bytes_in 0 173025 station_ip 37.129.226.89 173025 port 26 173025 unique_id port 173028 username jafari 173028 mac 173028 bytes_out 144184 173028 bytes_in 174841 173028 station_ip 94.24.95.154 173028 port 35 173028 unique_id port 173028 remote_ip 10.8.0.86 173029 username farhad2 173029 kill_reason Another user logged on this global unique id 173029 mac 173029 bytes_out 0 173029 bytes_in 0 173029 station_ip 5.119.194.76 173029 port 22 173029 unique_id port 173030 username tahmasebi 173030 mac 173030 bytes_out 0 173030 bytes_in 0 173030 station_ip 5.119.56.25 173030 port 14 173030 unique_id port 173030 remote_ip 10.8.0.126 173033 username farhad2 173033 mac 173033 bytes_out 0 173033 bytes_in 0 173033 station_ip 5.119.194.76 173033 port 22 173033 unique_id port 173034 username farhad2 173034 mac 173034 bytes_out 0 173034 bytes_in 0 173034 station_ip 5.119.194.76 173034 port 36 173034 unique_id port 173034 remote_ip 10.8.0.146 173037 username tahmasebi 173037 mac 173037 bytes_out 1678572 173037 bytes_in 16459720 173037 station_ip 5.119.56.25 173037 port 14 173037 unique_id port 173037 remote_ip 10.8.0.126 173040 username sekonji3 173040 mac 173040 bytes_out 0 173040 bytes_in 0 173040 station_ip 37.129.16.198 173040 port 40 173040 unique_id port 173040 remote_ip 10.8.0.62 173043 username aminvpn 173043 mac 173043 bytes_out 0 173043 bytes_in 0 173043 station_ip 5.119.94.158 173043 port 42 173043 unique_id port 173043 remote_ip 10.8.0.58 173045 username sekonji3 173045 mac 173045 bytes_out 3246 173045 bytes_in 5128 173045 station_ip 37.129.16.198 173045 port 40 173045 unique_id port 173045 remote_ip 10.8.0.62 173049 username farhad2 173001 port 41 173001 unique_id port 173001 remote_ip 10.8.0.58 173003 username farhad2 173003 mac 173003 bytes_out 385899 173003 bytes_in 2616336 173003 station_ip 5.119.194.76 173003 port 3 173003 unique_id port 173003 remote_ip 10.8.0.146 173004 username shadkam 173004 mac 173004 bytes_out 0 173004 bytes_in 0 173004 station_ip 37.129.143.183 173004 port 40 173004 unique_id port 173006 username vanila 173006 mac 173006 bytes_out 551298 173006 bytes_in 4056310 173006 station_ip 37.129.147.1 173006 port 3 173006 unique_id port 173006 remote_ip 10.8.0.46 173008 username kalantary 173008 mac 173008 bytes_out 1317651 173008 bytes_in 19327085 173008 station_ip 83.122.169.230 173008 port 36 173008 unique_id port 173008 remote_ip 10.8.0.50 173009 username tahmasebi 173009 mac 173009 bytes_out 3058277 173009 bytes_in 7278083 173009 station_ip 5.119.56.25 173009 port 14 173009 unique_id port 173009 remote_ip 10.8.0.126 173010 username tahmasebi 173010 mac 173010 bytes_out 0 173010 bytes_in 0 173010 station_ip 5.119.56.25 173010 port 3 173010 unique_id port 173010 remote_ip 10.8.0.126 173016 username mehdizare 173016 mac 173016 bytes_out 104009 173016 bytes_in 127728 173016 station_ip 37.129.185.236 173016 port 35 173016 unique_id port 173016 remote_ip 10.8.0.210 173019 username vanila 173019 mac 173019 bytes_out 308746 173019 bytes_in 1107554 173019 station_ip 37.129.147.1 173019 port 14 173019 unique_id port 173019 remote_ip 10.8.0.46 173022 username pourshad 173022 mac 173022 bytes_out 5702772 173022 bytes_in 457407 173022 station_ip 5.120.203.248 173022 port 7 173022 unique_id port 173022 remote_ip 10.8.0.42 173023 username farhad2 173023 kill_reason Another user logged on this global unique id 173023 mac 173023 bytes_out 0 173023 bytes_in 0 173023 station_ip 5.119.194.76 173023 port 22 173023 unique_id port 173026 username tahmasebi 173026 mac 173026 bytes_out 0 173026 bytes_in 0 173026 station_ip 5.119.56.25 173026 port 7 173026 unique_id port 173026 remote_ip 10.8.0.126 173027 username barzegar 173027 mac 173027 bytes_out 0 173027 bytes_in 0 173027 station_ip 5.119.187.175 173027 port 7 173027 unique_id port 173027 remote_ip 10.8.0.10 173031 username saeed9658 173031 mac 173031 bytes_out 443084 173031 bytes_in 3882804 173031 station_ip 5.119.90.147 173031 port 3 173031 unique_id port 173031 remote_ip 10.8.0.154 173036 username sekonji3 173036 mac 173036 bytes_out 64188 173036 bytes_in 286423 173036 station_ip 37.129.16.198 173036 port 38 173036 unique_id port 173036 remote_ip 10.8.0.62 173038 username barzegar 173038 mac 173038 bytes_out 0 173038 bytes_in 0 173038 station_ip 5.119.187.175 173038 port 36 173038 unique_id port 173038 remote_ip 10.8.0.10 173039 username houshang 173039 kill_reason Another user logged on this global unique id 173039 mac 173039 bytes_out 0 173039 bytes_in 0 173039 station_ip 5.120.19.193 173039 port 3 173039 unique_id port 173039 remote_ip 10.8.0.82 173041 username farhad2 173041 mac 173041 bytes_out 339240 173041 bytes_in 1463674 173041 station_ip 5.119.194.76 173041 port 38 173041 unique_id port 173041 remote_ip 10.8.0.146 173042 username shadkam 173042 mac 173042 bytes_out 24140 173042 bytes_in 51784 173042 station_ip 83.123.147.31 173042 port 42 173042 unique_id port 173042 remote_ip 10.8.0.74 173046 username forozandeh1 173046 mac 173046 bytes_out 0 173046 bytes_in 0 173046 station_ip 83.123.233.255 173046 port 37 173046 unique_id port 173048 username sekonji3 173048 mac 173048 bytes_out 2454 173048 bytes_in 4626 173048 station_ip 37.129.16.198 173048 port 40 173048 unique_id port 173048 remote_ip 10.8.0.62 173051 username sekonji3 173051 mac 173051 bytes_out 0 173051 bytes_in 0 173051 station_ip 37.129.16.198 173051 port 37 173051 unique_id port 173051 remote_ip 10.8.0.62 173052 username sekonji3 173052 mac 173052 bytes_out 2189 173052 bytes_in 4361 173052 station_ip 37.129.16.198 173052 port 37 173052 unique_id port 173052 remote_ip 10.8.0.62 173054 username vanila 173054 mac 173054 bytes_out 1496271 173054 bytes_in 9785781 173054 station_ip 37.129.147.1 173054 port 7 173054 unique_id port 173054 remote_ip 10.8.0.46 173055 username jafari 173055 kill_reason Another user logged on this global unique id 173055 mac 173055 bytes_out 0 173055 bytes_in 0 173055 station_ip 94.24.95.154 173055 port 41 173055 unique_id port 173055 remote_ip 10.8.0.86 173058 username barzegar 173058 mac 173058 bytes_out 0 173058 bytes_in 0 173058 station_ip 5.119.187.175 173058 port 7 173058 unique_id port 173058 remote_ip 10.8.0.10 173065 username houshang 173065 mac 173065 bytes_out 0 173065 bytes_in 0 173065 station_ip 5.120.19.193 173065 port 3 173065 unique_id port 173067 username aminvpn 173067 unique_id port 173067 terminate_cause Lost-Carrier 173067 bytes_out 543731 173067 bytes_in 6836013 173067 station_ip 109.125.128.116 173067 port 15728792 173067 nas_port_type Virtual 173067 remote_ip 5.5.5.218 173071 username sekonji3 173071 mac 173071 bytes_out 2331 173071 bytes_in 4479 173071 station_ip 37.129.16.198 173071 port 3 173071 unique_id port 173071 remote_ip 10.8.0.62 173075 username pourshad 173075 mac 173075 bytes_out 2998 173075 bytes_in 4958 173075 station_ip 5.120.203.248 173075 port 22 173075 unique_id port 173075 remote_ip 10.8.0.42 173080 username ayobi 173080 kill_reason Another user logged on this global unique id 173080 mac 173080 bytes_out 0 173080 bytes_in 0 173080 station_ip 188.245.89.158 173080 port 36 173080 unique_id port 173080 remote_ip 10.8.0.186 173082 username rajaei 173082 mac 173082 bytes_out 1278615 173082 bytes_in 10707426 173082 station_ip 89.47.150.53 173082 port 42 173082 unique_id port 173082 remote_ip 10.8.0.218 173083 username sekonji3 173083 mac 173083 bytes_out 0 173083 bytes_in 0 173083 station_ip 37.129.16.198 173083 port 3 173083 unique_id port 173083 remote_ip 10.8.0.62 173085 username hamid 173085 mac 173085 bytes_out 571481 173085 bytes_in 4275548 173085 station_ip 37.129.173.59 173085 port 45 173085 unique_id port 173085 remote_ip 10.8.0.230 173090 username tahmasebi 173090 mac 173090 bytes_out 10299 173090 bytes_in 13825 173090 station_ip 5.119.56.25 173090 port 7 173090 unique_id port 173090 remote_ip 10.8.0.126 173091 username tahmasebi 173091 mac 173091 bytes_out 0 173091 bytes_in 0 173091 station_ip 5.119.56.25 173091 port 3 173091 unique_id port 173091 remote_ip 10.8.0.126 173094 username mohammadjavad 173094 mac 173094 bytes_out 353416 173094 bytes_in 3896646 173094 station_ip 83.123.228.156 173094 port 35 173094 unique_id port 173094 remote_ip 10.8.0.110 173095 username hamid 173095 mac 173095 bytes_out 0 173095 bytes_in 0 173095 station_ip 37.129.173.59 173095 port 20 173095 unique_id port 173095 remote_ip 10.8.0.230 173097 username farhad2 173097 kill_reason Another user logged on this global unique id 173097 mac 173097 bytes_out 0 173097 bytes_in 0 173097 station_ip 5.119.194.76 173097 port 40 173049 mac 173049 bytes_out 202160 173049 bytes_in 1289210 173049 station_ip 5.119.194.76 173049 port 45 173049 unique_id port 173049 remote_ip 10.8.0.146 173053 username sekonji3 173053 mac 173053 bytes_out 0 173053 bytes_in 0 173053 station_ip 37.129.16.198 173053 port 37 173053 unique_id port 173053 remote_ip 10.8.0.62 173056 username mohammadjavad 173056 mac 173056 bytes_out 1360775 173056 bytes_in 14655694 173056 station_ip 37.129.64.172 173056 port 35 173056 unique_id port 173056 remote_ip 10.8.0.110 173062 username aminvpn 173062 mac 173062 bytes_out 0 173062 bytes_in 0 173062 station_ip 5.119.94.158 173062 port 37 173062 unique_id port 173062 remote_ip 10.8.0.58 173063 username sekonji3 173063 mac 173063 bytes_out 2384 173063 bytes_in 4532 173063 station_ip 37.129.16.198 173063 port 35 173063 unique_id port 173063 remote_ip 10.8.0.62 173064 username kalantary 173064 mac 173064 bytes_out 1730867 173064 bytes_in 13584637 173064 station_ip 83.122.149.202 173064 port 14 173064 unique_id port 173064 remote_ip 10.8.0.50 173072 username barzegar 173072 mac 173072 bytes_out 0 173072 bytes_in 0 173072 station_ip 5.119.187.175 173072 port 14 173072 unique_id port 173072 remote_ip 10.8.0.10 173076 username forozandeh1 173076 mac 173076 bytes_out 686808 173076 bytes_in 5041873 173076 station_ip 83.122.215.187 173076 port 3 173076 unique_id port 173076 remote_ip 10.8.0.30 173081 username tahmasebi 173081 mac 173081 bytes_out 392301 173081 bytes_in 3473407 173081 station_ip 5.119.56.25 173081 port 7 173081 unique_id port 173081 remote_ip 10.8.0.126 173087 username mostafa_es78 173087 kill_reason Another user logged on this global unique id 173087 mac 173087 bytes_out 0 173087 bytes_in 0 173087 station_ip 37.129.226.89 173087 port 26 173087 unique_id port 173089 username sekonji3 173089 mac 173089 bytes_out 0 173089 bytes_in 0 173089 station_ip 37.129.16.198 173089 port 3 173089 unique_id port 173089 remote_ip 10.8.0.62 173092 username aminvpn 173092 mac 173092 bytes_out 0 173092 bytes_in 0 173092 station_ip 5.119.94.158 173092 port 3 173092 unique_id port 173092 remote_ip 10.8.0.58 173099 username sekonji3 173099 mac 173099 bytes_out 0 173099 bytes_in 0 173099 station_ip 37.129.16.198 173099 port 42 173099 unique_id port 173099 remote_ip 10.8.0.62 173100 username sekonji3 173100 mac 173100 bytes_out 0 173100 bytes_in 0 173100 station_ip 37.129.16.198 173100 port 42 173100 unique_id port 173100 remote_ip 10.8.0.62 173104 username rezaei 173104 kill_reason Another user logged on this global unique id 173104 mac 173104 bytes_out 0 173104 bytes_in 0 173104 station_ip 5.119.80.107 173104 port 47 173104 unique_id port 173104 remote_ip 10.8.0.198 173107 username aminvpn 173107 mac 173107 bytes_out 0 173107 bytes_in 0 173107 station_ip 5.119.94.158 173107 port 20 173107 unique_id port 173107 remote_ip 10.8.0.58 173109 username sekonji3 173109 mac 173109 bytes_out 11658 173109 bytes_in 15037 173109 station_ip 37.129.16.198 173109 port 26 173109 unique_id port 173109 remote_ip 10.8.0.62 173111 username sekonji3 173111 mac 173111 bytes_out 0 173111 bytes_in 0 173111 station_ip 37.129.16.198 173111 port 3 173111 unique_id port 173111 remote_ip 10.8.0.62 173112 username majidsarmast 173112 kill_reason Another user logged on this global unique id 173112 mac 173112 bytes_out 0 173112 bytes_in 0 173112 station_ip 86.57.98.69 173112 port 37 173112 unique_id port 173113 username hamid 173131 mac 173069 bytes_out 0 173069 bytes_in 0 173069 station_ip 5.119.56.25 173069 port 7 173069 unique_id port 173069 remote_ip 10.8.0.126 173070 username tahmasebi 173070 mac 173070 bytes_out 0 173070 bytes_in 0 173070 station_ip 5.119.56.25 173070 port 7 173070 unique_id port 173070 remote_ip 10.8.0.126 173073 username pourshad 173073 mac 173073 bytes_out 485256 173073 bytes_in 3021796 173073 station_ip 5.120.203.248 173073 port 22 173073 unique_id port 173073 remote_ip 10.8.0.42 173074 username aminvpn 173074 mac 173074 bytes_out 0 173074 bytes_in 0 173074 station_ip 5.119.94.158 173074 port 38 173074 unique_id port 173074 remote_ip 10.8.0.58 173077 username sekonji3 173077 mac 173077 bytes_out 12537 173077 bytes_in 15320 173077 station_ip 37.129.16.198 173077 port 14 173077 unique_id port 173077 remote_ip 10.8.0.62 173078 username jafari 173078 kill_reason Another user logged on this global unique id 173078 mac 173078 bytes_out 0 173078 bytes_in 0 173078 station_ip 94.24.95.154 173078 port 41 173078 unique_id port 173079 username sekonji3 173079 mac 173079 bytes_out 3076 173079 bytes_in 5187 173079 station_ip 37.129.16.198 173079 port 3 173079 unique_id port 173079 remote_ip 10.8.0.62 173084 username sedighe 173084 mac 173084 bytes_out 58646 173084 bytes_in 505803 173084 station_ip 83.123.8.191 173084 port 46 173084 unique_id port 173084 remote_ip 10.8.0.78 173086 username barzegar 173086 mac 173086 bytes_out 0 173086 bytes_in 0 173086 station_ip 5.119.187.175 173086 port 3 173086 unique_id port 173086 remote_ip 10.8.0.10 173088 username khademi 173088 mac 173088 bytes_out 0 173088 bytes_in 0 173088 station_ip 37.129.12.135 173088 port 20 173088 unique_id port 173093 username hamid 173093 mac 173093 bytes_out 84488 173093 bytes_in 229347 173093 station_ip 37.129.173.59 173093 port 42 173093 unique_id port 173093 remote_ip 10.8.0.230 173096 username sekonji3 173096 mac 173096 bytes_out 16365 173096 bytes_in 19640 173096 station_ip 37.129.16.198 173096 port 3 173096 unique_id port 173096 remote_ip 10.8.0.62 173101 username majidsarmast 173101 kill_reason Another user logged on this global unique id 173101 mac 173101 bytes_out 0 173101 bytes_in 0 173101 station_ip 86.57.98.69 173101 port 37 173101 unique_id port 173101 remote_ip 10.8.0.170 173105 username khademi 173105 kill_reason Another user logged on this global unique id 173105 mac 173105 bytes_out 0 173105 bytes_in 0 173105 station_ip 37.129.12.135 173105 port 45 173105 unique_id port 173105 remote_ip 10.8.0.14 173108 username tahmasebi 173108 mac 173108 bytes_out 5271118 173108 bytes_in 4756537 173108 station_ip 5.119.56.25 173108 port 3 173108 unique_id port 173108 remote_ip 10.8.0.126 173118 username jafari 173118 kill_reason Another user logged on this global unique id 173118 mac 173118 bytes_out 0 173118 bytes_in 0 173118 station_ip 94.24.95.154 173118 port 41 173118 unique_id port 173124 username khademi 173124 kill_reason Another user logged on this global unique id 173124 mac 173124 bytes_out 0 173124 bytes_in 0 173124 station_ip 37.129.12.135 173124 port 45 173124 unique_id port 173127 username rezaei 173127 kill_reason Another user logged on this global unique id 173127 mac 173127 bytes_out 0 173127 bytes_in 0 173127 station_ip 5.119.80.107 173127 port 47 173127 unique_id port 173129 username shadkam 173129 mac 173129 bytes_out 31852956 173129 bytes_in 1587744 173129 station_ip 83.123.126.137 173129 port 14 173129 unique_id port 173129 remote_ip 10.8.0.74 173131 username rezaei 173097 unique_id port 173097 remote_ip 10.8.0.146 173098 username tahmasebi 173098 mac 173098 bytes_out 0 173098 bytes_in 0 173098 station_ip 5.119.56.25 173098 port 3 173098 unique_id port 173098 remote_ip 10.8.0.126 173102 username barzegar 173102 mac 173102 bytes_out 0 173102 bytes_in 0 173102 station_ip 5.119.187.175 173102 port 42 173102 unique_id port 173102 remote_ip 10.8.0.10 173103 username mostafa_es78 173103 mac 173103 bytes_out 0 173103 bytes_in 0 173103 station_ip 37.129.226.89 173103 port 26 173103 unique_id port 173106 username kalantary 173106 mac 173106 bytes_out 1368642 173106 bytes_in 23693870 173106 station_ip 83.122.149.202 173106 port 20 173106 unique_id port 173106 remote_ip 10.8.0.50 173110 username forozandeh1 173110 mac 173110 bytes_out 643863 173110 bytes_in 1296234 173110 station_ip 83.122.125.147 173110 port 7 173110 unique_id port 173110 remote_ip 10.8.0.30 173114 username sekonji3 173114 mac 173114 bytes_out 0 173114 bytes_in 0 173114 station_ip 37.129.16.198 173114 port 20 173114 unique_id port 173114 remote_ip 10.8.0.62 173117 username barzegar 173117 mac 173117 bytes_out 0 173117 bytes_in 0 173117 station_ip 5.119.187.175 173117 port 26 173117 unique_id port 173117 remote_ip 10.8.0.10 173119 username sekonji3 173119 mac 173119 bytes_out 16693 173119 bytes_in 27152 173119 station_ip 37.129.16.198 173119 port 20 173119 unique_id port 173119 remote_ip 10.8.0.62 173120 username sekonji3 173120 mac 173120 bytes_out 0 173120 bytes_in 0 173120 station_ip 37.129.16.198 173120 port 20 173120 unique_id port 173120 remote_ip 10.8.0.62 173122 username hatami 173122 mac 173122 bytes_out 1248322 173122 bytes_in 11585273 173122 station_ip 151.235.119.152 173122 port 14 173122 unique_id port 173122 remote_ip 10.8.0.98 173123 username tahmasebi 173123 mac 173123 bytes_out 0 173123 bytes_in 0 173123 station_ip 5.119.56.25 173123 port 14 173123 unique_id port 173123 remote_ip 10.8.0.126 173125 username majidsarmast 173125 mac 173125 bytes_out 0 173125 bytes_in 0 173125 station_ip 86.57.98.69 173125 port 37 173125 unique_id port 173130 username hosseine 173130 kill_reason Another user logged on this global unique id 173130 mac 173130 bytes_out 0 173130 bytes_in 0 173130 station_ip 113.203.54.182 173130 port 16 173130 unique_id port 173134 username mostafa_es78 173134 mac 173134 bytes_out 815059 173134 bytes_in 4690284 173134 station_ip 37.129.226.89 173134 port 42 173134 unique_id port 173134 remote_ip 10.8.0.34 173136 username aminvpn 173136 unique_id port 173136 terminate_cause User-Request 173136 bytes_out 984823 173136 bytes_in 5703471 173136 station_ip 109.125.128.116 173136 port 15728793 173136 nas_port_type Virtual 173136 remote_ip 5.5.5.217 173142 username sekonji3 173142 mac 173142 bytes_out 0 173142 bytes_in 0 173142 station_ip 37.129.16.198 173142 port 20 173142 unique_id port 173142 remote_ip 10.8.0.62 173144 username tahmasebi 173144 mac 173144 bytes_out 0 173144 bytes_in 0 173144 station_ip 5.119.56.25 173144 port 26 173144 unique_id port 173144 remote_ip 10.8.0.126 173146 username shadkam 173146 mac 173146 bytes_out 21808 173146 bytes_in 35858 173146 station_ip 83.123.78.94 173146 port 37 173146 unique_id port 173146 remote_ip 10.8.0.74 173147 username aminvpn 173147 mac 173147 bytes_out 0 173147 bytes_in 0 173147 station_ip 5.119.94.158 173147 port 42 173147 unique_id port 173147 remote_ip 10.8.0.58 173151 username jafari 173113 kill_reason Another user logged on this global unique id 173113 mac 173113 bytes_out 0 173113 bytes_in 0 173113 station_ip 37.129.173.59 173113 port 35 173113 unique_id port 173113 remote_ip 10.8.0.230 173115 username sekonji3 173115 mac 173115 bytes_out 0 173115 bytes_in 0 173115 station_ip 37.129.16.198 173115 port 20 173115 unique_id port 173115 remote_ip 10.8.0.62 173116 username sekonji3 173116 mac 173116 bytes_out 0 173116 bytes_in 0 173116 station_ip 37.129.16.198 173116 port 20 173116 unique_id port 173116 remote_ip 10.8.0.62 173121 username aminvpn 173121 mac 173121 bytes_out 0 173121 bytes_in 0 173121 station_ip 5.119.94.158 173121 port 20 173121 unique_id port 173121 remote_ip 10.8.0.58 173126 username hosseine 173126 kill_reason Another user logged on this global unique id 173126 mac 173126 bytes_out 0 173126 bytes_in 0 173126 station_ip 113.203.54.182 173126 port 16 173126 unique_id port 173128 username sekonji3 173128 mac 173128 bytes_out 0 173128 bytes_in 0 173128 station_ip 37.129.16.198 173128 port 20 173128 unique_id port 173128 remote_ip 10.8.0.62 173132 username sekonji3 173132 mac 173132 bytes_out 0 173132 bytes_in 0 173132 station_ip 37.129.16.198 173132 port 14 173132 unique_id port 173132 remote_ip 10.8.0.62 173139 username aminvpn 173139 mac 173139 bytes_out 0 173139 bytes_in 0 173139 station_ip 5.119.94.158 173139 port 20 173139 unique_id port 173139 remote_ip 10.8.0.58 173140 username tahmasebi 173140 mac 173140 bytes_out 0 173140 bytes_in 0 173140 station_ip 5.119.56.25 173140 port 20 173140 unique_id port 173140 remote_ip 10.8.0.126 173141 username aminvpn 173141 mac 173141 bytes_out 0 173141 bytes_in 0 173141 station_ip 5.119.94.158 173141 port 26 173141 unique_id port 173141 remote_ip 10.8.0.58 173143 username sekonji3 173143 mac 173143 bytes_out 0 173143 bytes_in 0 173143 station_ip 37.129.16.198 173143 port 20 173143 unique_id port 173143 remote_ip 10.8.0.62 173145 username vanila 173145 mac 173145 bytes_out 5584 173145 bytes_in 34887 173145 station_ip 83.123.111.215 173145 port 20 173145 unique_id port 173145 remote_ip 10.8.0.46 173149 username sekonji3 173149 mac 173149 bytes_out 7877 173149 bytes_in 11368 173149 station_ip 37.129.16.198 173149 port 26 173149 unique_id port 173149 remote_ip 10.8.0.62 173153 username farhad2 173153 kill_reason Another user logged on this global unique id 173153 mac 173153 bytes_out 0 173153 bytes_in 0 173153 station_ip 5.119.194.76 173153 port 40 173153 unique_id port 173154 username khademi 173154 kill_reason Another user logged on this global unique id 173154 mac 173154 bytes_out 0 173154 bytes_in 0 173154 station_ip 37.129.12.135 173154 port 45 173154 unique_id port 173161 username barzegar 173161 mac 173161 bytes_out 0 173161 bytes_in 0 173161 station_ip 5.119.187.175 173161 port 7 173161 unique_id port 173161 remote_ip 10.8.0.10 173162 username tahmasebi 173162 mac 173162 bytes_out 0 173162 bytes_in 0 173162 station_ip 5.119.56.25 173162 port 7 173162 unique_id port 173162 remote_ip 10.8.0.126 173168 username khademi 173168 kill_reason Another user logged on this global unique id 173168 mac 173168 bytes_out 0 173168 bytes_in 0 173168 station_ip 37.129.12.135 173168 port 45 173168 unique_id port 173169 username sekonji3 173169 mac 173169 bytes_out 9454 173169 bytes_in 11854 173169 station_ip 37.129.16.198 173169 port 7 173169 unique_id port 173169 remote_ip 10.8.0.62 173172 username barzegar 173172 mac 173131 bytes_out 0 173131 bytes_in 0 173131 station_ip 5.119.80.107 173131 port 47 173131 unique_id port 173133 username hamid 173133 kill_reason Another user logged on this global unique id 173133 mac 173133 bytes_out 0 173133 bytes_in 0 173133 station_ip 37.129.173.59 173133 port 35 173133 unique_id port 173135 username barzegar 173135 mac 173135 bytes_out 0 173135 bytes_in 0 173135 station_ip 5.119.187.175 173135 port 14 173135 unique_id port 173135 remote_ip 10.8.0.10 173137 username jafari 173137 kill_reason Another user logged on this global unique id 173137 mac 173137 bytes_out 0 173137 bytes_in 0 173137 station_ip 94.24.95.154 173137 port 41 173137 unique_id port 173138 username khademi 173138 kill_reason Another user logged on this global unique id 173138 mac 173138 bytes_out 0 173138 bytes_in 0 173138 station_ip 37.129.12.135 173138 port 45 173138 unique_id port 173148 username barzegar 173148 mac 173148 bytes_out 0 173148 bytes_in 0 173148 station_ip 5.119.187.175 173148 port 20 173148 unique_id port 173148 remote_ip 10.8.0.10 173150 username sekonji3 173150 mac 173150 bytes_out 0 173150 bytes_in 0 173150 station_ip 37.129.16.198 173150 port 20 173150 unique_id port 173150 remote_ip 10.8.0.62 173157 username sekonji3 173157 mac 173157 bytes_out 15027 173157 bytes_in 17684 173157 station_ip 37.129.16.198 173157 port 26 173157 unique_id port 173157 remote_ip 10.8.0.62 173158 username tahmasebi 173158 mac 173158 bytes_out 0 173158 bytes_in 0 173158 station_ip 5.119.56.25 173158 port 20 173158 unique_id port 173158 remote_ip 10.8.0.126 173163 username barzegar 173163 mac 173163 bytes_out 0 173163 bytes_in 0 173163 station_ip 5.119.187.175 173163 port 26 173163 unique_id port 173163 remote_ip 10.8.0.10 173165 username mirzaei 173165 kill_reason Another user logged on this global unique id 173165 mac 173165 bytes_out 0 173165 bytes_in 0 173165 station_ip 5.120.58.130 173165 port 12 173165 unique_id port 173166 username hamid 173166 kill_reason Another user logged on this global unique id 173166 mac 173166 bytes_out 0 173166 bytes_in 0 173166 station_ip 37.129.173.59 173166 port 35 173166 unique_id port 173171 username aminvpn 173171 mac 173171 bytes_out 0 173171 bytes_in 0 173171 station_ip 5.119.94.158 173171 port 7 173171 unique_id port 173171 remote_ip 10.8.0.58 173178 username sekonji3 173178 mac 173178 bytes_out 0 173178 bytes_in 0 173178 station_ip 37.129.16.198 173178 port 26 173178 unique_id port 173178 remote_ip 10.8.0.62 173183 username aminvpn 173183 mac 173183 bytes_out 0 173183 bytes_in 0 173183 station_ip 5.119.94.158 173183 port 7 173183 unique_id port 173183 remote_ip 10.8.0.58 173185 username sekonji3 173185 mac 173185 bytes_out 0 173185 bytes_in 0 173185 station_ip 37.129.16.198 173185 port 7 173185 unique_id port 173185 remote_ip 10.8.0.62 173189 username barzegar 173189 mac 173189 bytes_out 0 173189 bytes_in 0 173189 station_ip 5.119.187.175 173189 port 35 173189 unique_id port 173189 remote_ip 10.8.0.10 173192 username sabaghnezhad 173192 mac 173192 bytes_out 1270853 173192 bytes_in 6254305 173192 station_ip 83.122.189.230 173192 port 3 173192 unique_id port 173192 remote_ip 10.8.0.66 173194 username sedighe 173194 mac 173194 bytes_out 1767 173194 bytes_in 4040 173194 station_ip 37.129.172.250 173194 port 3 173194 unique_id port 173194 remote_ip 10.8.0.78 173195 username tahmasebi 173195 mac 173195 bytes_out 0 173195 bytes_in 0 173195 station_ip 5.119.56.25 173151 kill_reason Another user logged on this global unique id 173151 mac 173151 bytes_out 0 173151 bytes_in 0 173151 station_ip 94.24.95.154 173151 port 41 173151 unique_id port 173152 username vanila 173152 mac 173152 bytes_out 27015 173152 bytes_in 50396 173152 station_ip 83.123.111.215 173152 port 20 173152 unique_id port 173152 remote_ip 10.8.0.46 173155 username vanila 173155 mac 173155 bytes_out 154243 173155 bytes_in 331329 173155 station_ip 83.123.111.215 173155 port 42 173155 unique_id port 173155 remote_ip 10.8.0.46 173156 username aminvpn 173156 mac 173156 bytes_out 0 173156 bytes_in 0 173156 station_ip 5.119.94.158 173156 port 20 173156 unique_id port 173156 remote_ip 10.8.0.58 173159 username jafari 173159 kill_reason Another user logged on this global unique id 173159 mac 173159 bytes_out 0 173159 bytes_in 0 173159 station_ip 94.24.95.154 173159 port 41 173159 unique_id port 173160 username forozandeh1 173160 mac 173160 bytes_out 1265665 173160 bytes_in 5665026 173160 station_ip 83.123.45.213 173160 port 7 173160 unique_id port 173160 remote_ip 10.8.0.30 173164 username mohammadjavad 173164 mac 173164 bytes_out 1653250 173164 bytes_in 31565475 173164 station_ip 83.122.80.229 173164 port 37 173164 unique_id port 173164 remote_ip 10.8.0.110 173167 username tahmasebi 173167 mac 173167 bytes_out 0 173167 bytes_in 0 173167 station_ip 5.119.56.25 173167 port 26 173167 unique_id port 173167 remote_ip 10.8.0.126 173170 username sekonji3 173170 mac 173170 bytes_out 0 173170 bytes_in 0 173170 station_ip 37.129.16.198 173170 port 26 173170 unique_id port 173170 remote_ip 10.8.0.62 173174 username jafari 173174 kill_reason Another user logged on this global unique id 173174 mac 173174 bytes_out 0 173174 bytes_in 0 173174 station_ip 94.24.95.154 173174 port 41 173174 unique_id port 173177 username tahmasebi 173177 mac 173177 bytes_out 0 173177 bytes_in 0 173177 station_ip 5.119.56.25 173177 port 7 173177 unique_id port 173177 remote_ip 10.8.0.126 173184 username pourshad 173184 mac 173184 bytes_out 21665647 173184 bytes_in 22217119 173184 station_ip 5.120.203.248 173184 port 22 173184 unique_id port 173184 remote_ip 10.8.0.42 173186 username jafari 173186 kill_reason Another user logged on this global unique id 173186 mac 173186 bytes_out 0 173186 bytes_in 0 173186 station_ip 94.24.95.154 173186 port 41 173186 unique_id port 173191 username tahmasebi 173191 mac 173191 bytes_out 1014302 173191 bytes_in 19978586 173191 station_ip 5.119.56.25 173191 port 7 173191 unique_id port 173191 remote_ip 10.8.0.126 173206 username shadkam 173206 mac 173206 bytes_out 38332 173206 bytes_in 82779 173206 station_ip 37.129.177.132 173206 port 22 173206 unique_id port 173206 remote_ip 10.8.0.74 173212 username tahmasebi 173212 mac 173212 bytes_out 0 173212 bytes_in 0 173212 station_ip 5.119.56.25 173212 port 35 173212 unique_id port 173212 remote_ip 10.8.0.126 173213 username hamid 173213 mac 173213 bytes_out 380747 173213 bytes_in 1735727 173213 station_ip 37.129.173.59 173213 port 22 173213 unique_id port 173213 remote_ip 10.8.0.230 173219 username sekonji3 173219 mac 173219 bytes_out 0 173219 bytes_in 0 173219 station_ip 37.129.16.198 173219 port 35 173219 unique_id port 173219 remote_ip 10.8.0.62 173221 username sekonji3 173221 mac 173221 bytes_out 0 173221 bytes_in 0 173221 station_ip 37.129.16.198 173221 port 35 173221 unique_id port 173221 remote_ip 10.8.0.62 173222 username barzegar 173222 mac 173222 bytes_out 0 173172 bytes_out 0 173172 bytes_in 0 173172 station_ip 5.119.187.175 173172 port 7 173172 unique_id port 173172 remote_ip 10.8.0.10 173173 username sekonji3 173173 mac 173173 bytes_out 0 173173 bytes_in 0 173173 station_ip 37.129.16.198 173173 port 7 173173 unique_id port 173173 remote_ip 10.8.0.62 173175 username ayobi 173175 kill_reason Another user logged on this global unique id 173175 mac 173175 bytes_out 0 173175 bytes_in 0 173175 station_ip 188.245.89.158 173175 port 36 173175 unique_id port 173176 username sekonji3 173176 mac 173176 bytes_out 0 173176 bytes_in 0 173176 station_ip 37.129.16.198 173176 port 7 173176 unique_id port 173176 remote_ip 10.8.0.62 173179 username khademi 173179 kill_reason Another user logged on this global unique id 173179 mac 173179 bytes_out 0 173179 bytes_in 0 173179 station_ip 37.129.12.135 173179 port 45 173179 unique_id port 173180 username hamid 173180 mac 173180 bytes_out 0 173180 bytes_in 0 173180 station_ip 37.129.173.59 173180 port 35 173180 unique_id port 173181 username sekonji3 173181 mac 173181 bytes_out 0 173181 bytes_in 0 173181 station_ip 37.129.16.198 173181 port 7 173181 unique_id port 173181 remote_ip 10.8.0.62 173182 username kalantary 173182 kill_reason Another user logged on this global unique id 173182 mac 173182 bytes_out 0 173182 bytes_in 0 173182 station_ip 83.122.193.86 173182 port 20 173182 unique_id port 173182 remote_ip 10.8.0.50 173187 username sekonji3 173187 mac 173187 bytes_out 0 173187 bytes_in 0 173187 station_ip 37.129.16.198 173187 port 22 173187 unique_id port 173187 remote_ip 10.8.0.62 173188 username sekonji3 173188 mac 173188 bytes_out 0 173188 bytes_in 0 173188 station_ip 37.129.16.198 173188 port 22 173188 unique_id port 173188 remote_ip 10.8.0.62 173190 username kalantary 173190 mac 173190 bytes_out 0 173190 bytes_in 0 173190 station_ip 83.122.193.86 173190 port 20 173190 unique_id port 173193 username khademi 173193 kill_reason Another user logged on this global unique id 173193 mac 173193 bytes_out 0 173193 bytes_in 0 173193 station_ip 37.129.12.135 173193 port 45 173193 unique_id port 173196 username sekonji3 173196 mac 173196 bytes_out 0 173196 bytes_in 0 173196 station_ip 37.129.16.198 173196 port 22 173196 unique_id port 173196 remote_ip 10.8.0.62 173200 username tahmasebi 173200 mac 173200 bytes_out 0 173200 bytes_in 0 173200 station_ip 5.119.56.25 173200 port 3 173200 unique_id port 173200 remote_ip 10.8.0.126 173204 username malekpoir 173204 kill_reason Another user logged on this global unique id 173204 mac 173204 bytes_out 0 173204 bytes_in 0 173204 station_ip 5.119.6.116 173204 port 38 173204 unique_id port 173204 remote_ip 10.8.0.18 173205 username aminvpn 173205 mac 173205 bytes_out 0 173205 bytes_in 0 173205 station_ip 5.119.94.158 173205 port 35 173205 unique_id port 173205 remote_ip 10.8.0.58 173207 username sekonji3 173207 mac 173207 bytes_out 0 173207 bytes_in 0 173207 station_ip 37.129.16.198 173207 port 35 173207 unique_id port 173207 remote_ip 10.8.0.62 173217 username jafari 173217 kill_reason Another user logged on this global unique id 173217 mac 173217 bytes_out 0 173217 bytes_in 0 173217 station_ip 94.24.95.154 173217 port 41 173217 unique_id port 173223 username kalantary 173223 mac 173223 bytes_out 252679 173223 bytes_in 2434775 173223 station_ip 83.122.222.34 173223 port 35 173223 unique_id port 173223 remote_ip 10.8.0.50 173225 username sekonji3 173225 mac 173225 bytes_out 0 173225 bytes_in 0 173195 port 3 173195 unique_id port 173195 remote_ip 10.8.0.126 173197 username pourshad 173197 mac 173197 bytes_out 192559 173197 bytes_in 2290852 173197 station_ip 5.120.203.248 173197 port 26 173197 unique_id port 173197 remote_ip 10.8.0.42 173198 username sekonji3 173198 mac 173198 bytes_out 0 173198 bytes_in 0 173198 station_ip 37.129.16.198 173198 port 3 173198 unique_id port 173198 remote_ip 10.8.0.62 173199 username tahmasebi 173199 mac 173199 bytes_out 0 173199 bytes_in 0 173199 station_ip 5.119.56.25 173199 port 3 173199 unique_id port 173199 remote_ip 10.8.0.126 173201 username sekonji3 173201 mac 173201 bytes_out 0 173201 bytes_in 0 173201 station_ip 37.129.16.198 173201 port 3 173201 unique_id port 173201 remote_ip 10.8.0.62 173202 username jafari 173202 kill_reason Another user logged on this global unique id 173202 mac 173202 bytes_out 0 173202 bytes_in 0 173202 station_ip 94.24.95.154 173202 port 41 173202 unique_id port 173203 username sekonji3 173203 mac 173203 bytes_out 0 173203 bytes_in 0 173203 station_ip 37.129.16.198 173203 port 35 173203 unique_id port 173203 remote_ip 10.8.0.62 173208 username jafari 173208 kill_reason Another user logged on this global unique id 173208 mac 173208 bytes_out 0 173208 bytes_in 0 173208 station_ip 94.24.95.154 173208 port 41 173208 unique_id port 173209 username barzegar 173209 mac 173209 bytes_out 0 173209 bytes_in 0 173209 station_ip 5.119.187.175 173209 port 35 173209 unique_id port 173209 remote_ip 10.8.0.10 173210 username tahmasebi 173210 mac 173210 bytes_out 0 173210 bytes_in 0 173210 station_ip 5.119.56.25 173210 port 37 173210 unique_id port 173210 remote_ip 10.8.0.126 173211 username farhad2 173211 kill_reason Another user logged on this global unique id 173211 mac 173211 bytes_out 0 173211 bytes_in 0 173211 station_ip 5.119.194.76 173211 port 40 173211 unique_id port 173214 username sekonji3 173214 mac 173214 bytes_out 0 173214 bytes_in 0 173214 station_ip 37.129.16.198 173214 port 35 173214 unique_id port 173214 remote_ip 10.8.0.62 173215 username tahmasebi 173215 mac 173215 bytes_out 0 173215 bytes_in 0 173215 station_ip 5.119.56.25 173215 port 22 173215 unique_id port 173215 remote_ip 10.8.0.126 173216 username tahmasebi 173216 mac 173216 bytes_out 0 173216 bytes_in 0 173216 station_ip 5.119.56.25 173216 port 22 173216 unique_id port 173216 remote_ip 10.8.0.126 173218 username mohammadjavad 173218 kill_reason Another user logged on this global unique id 173218 mac 173218 bytes_out 0 173218 bytes_in 0 173218 station_ip 83.123.169.98 173218 port 20 173218 unique_id port 173218 remote_ip 10.8.0.110 173220 username aminvpn 173220 mac 173220 bytes_out 0 173220 bytes_in 0 173220 station_ip 5.119.94.158 173220 port 37 173220 unique_id port 173220 remote_ip 10.8.0.58 173230 username sekonji3 173230 mac 173230 bytes_out 0 173230 bytes_in 0 173230 station_ip 37.129.16.198 173230 port 22 173230 unique_id port 173230 remote_ip 10.8.0.62 173233 username farhad2 173233 kill_reason Another user logged on this global unique id 173233 mac 173233 bytes_out 0 173233 bytes_in 0 173233 station_ip 5.119.194.76 173233 port 40 173233 unique_id port 173237 username barzegar 173237 mac 173237 bytes_out 0 173237 bytes_in 0 173237 station_ip 5.119.187.175 173237 port 34 173237 unique_id port 173237 remote_ip 10.8.0.10 173238 username sekonji3 173238 mac 173238 bytes_out 0 173238 bytes_in 0 173238 station_ip 37.129.16.198 173238 port 34 173222 bytes_in 0 173222 station_ip 5.119.187.175 173222 port 42 173222 unique_id port 173222 remote_ip 10.8.0.10 173224 username mehdizare 173224 mac 173224 bytes_out 365252 173224 bytes_in 527625 173224 station_ip 37.129.185.236 173224 port 34 173224 unique_id port 173224 remote_ip 10.8.0.210 173226 username pourshad 173226 kill_reason Another user logged on this global unique id 173226 mac 173226 bytes_out 0 173226 bytes_in 0 173226 station_ip 5.120.203.248 173226 port 26 173226 unique_id port 173226 remote_ip 10.8.0.42 173232 username mohammadjavad 173232 mac 173232 bytes_out 0 173232 bytes_in 0 173232 station_ip 83.123.169.98 173232 port 20 173232 unique_id port 173234 username aminvpn 173234 mac 173234 bytes_out 0 173234 bytes_in 0 173234 station_ip 5.119.94.158 173234 port 20 173234 unique_id port 173234 remote_ip 10.8.0.58 173236 username mehdizare 173236 mac 173236 bytes_out 11293 173236 bytes_in 13796 173236 station_ip 37.129.185.236 173236 port 22 173236 unique_id port 173236 remote_ip 10.8.0.210 173246 username jafari 173246 kill_reason Another user logged on this global unique id 173246 mac 173246 bytes_out 0 173246 bytes_in 0 173246 station_ip 94.24.95.154 173246 port 41 173246 unique_id port 173248 username rajaei 173248 mac 173248 bytes_out 2109928 173248 bytes_in 27650236 173248 station_ip 89.47.67.116 173248 port 34 173248 unique_id port 173248 remote_ip 10.8.0.218 173249 username tahmasebi 173249 mac 173249 bytes_out 194556 173249 bytes_in 1545286 173249 station_ip 5.119.56.25 173249 port 7 173249 unique_id port 173249 remote_ip 10.8.0.126 173252 username vanila 173252 mac 173252 bytes_out 0 173252 bytes_in 0 173252 station_ip 83.123.120.171 173252 port 3 173252 unique_id port 173254 username rajaei 173254 mac 173254 bytes_out 1180709 173254 bytes_in 15898981 173254 station_ip 89.47.67.116 173254 port 7 173254 unique_id port 173254 remote_ip 10.8.0.218 173264 username tahmasebi 173264 mac 173264 bytes_out 564616 173264 bytes_in 3380650 173264 station_ip 5.119.56.25 173264 port 3 173264 unique_id port 173264 remote_ip 10.8.0.126 173266 username sekonji3 173266 mac 173266 bytes_out 0 173266 bytes_in 0 173266 station_ip 83.123.156.64 173266 port 3 173266 unique_id port 173266 remote_ip 10.8.0.62 173271 username kalantary 173271 mac 173271 bytes_out 2402798 173271 bytes_in 30937592 173271 station_ip 83.122.248.62 173271 port 34 173271 unique_id port 173271 remote_ip 10.8.0.50 173272 username sekonji3 173272 mac 173272 bytes_out 0 173272 bytes_in 0 173272 station_ip 83.123.156.64 173272 port 3 173272 unique_id port 173272 remote_ip 10.8.0.62 173274 username mostafa_es78 173274 mac 173274 bytes_out 4951446 173274 bytes_in 29397454 173274 station_ip 37.129.226.89 173274 port 14 173274 unique_id port 173274 remote_ip 10.8.0.34 173276 username majidsarmast 173276 kill_reason Another user logged on this global unique id 173276 mac 173276 bytes_out 0 173276 bytes_in 0 173276 station_ip 86.57.98.69 173276 port 42 173276 unique_id port 173279 username hosseine 173279 mac 173279 bytes_out 0 173279 bytes_in 0 173279 station_ip 113.203.54.182 173279 port 16 173279 unique_id port 173282 username saeed9658 173282 mac 173282 bytes_out 4675 173282 bytes_in 7090 173282 station_ip 5.120.19.31 173282 port 14 173282 unique_id port 173282 remote_ip 10.8.0.154 173284 username barzegar 173284 mac 173284 bytes_out 4165 173284 bytes_in 6458 173284 station_ip 5.119.187.175 173284 port 22 173284 unique_id port 173225 station_ip 37.129.16.198 173225 port 34 173225 unique_id port 173225 remote_ip 10.8.0.62 173227 username forozandeh1 173227 mac 173227 bytes_out 635377 173227 bytes_in 3727498 173227 station_ip 113.203.94.133 173227 port 35 173227 unique_id port 173227 remote_ip 10.8.0.30 173228 username kamali2 173228 mac 173228 bytes_out 10174715 173228 bytes_in 897230 173228 station_ip 37.129.4.185 173228 port 22 173228 unique_id port 173228 remote_ip 10.8.0.234 173229 username tahmasebi 173229 mac 173229 bytes_out 6413 173229 bytes_in 14109 173229 station_ip 5.119.56.25 173229 port 34 173229 unique_id port 173229 remote_ip 10.8.0.126 173231 username mehdizare 173231 mac 173231 bytes_out 120734 173231 bytes_in 68863 173231 station_ip 37.129.185.236 173231 port 42 173231 unique_id port 173231 remote_ip 10.8.0.210 173235 username tahmasebi 173235 mac 173235 bytes_out 2676 173235 bytes_in 5081 173235 station_ip 5.119.56.25 173235 port 20 173235 unique_id port 173235 remote_ip 10.8.0.126 173239 username tahmasebi 173239 mac 173239 bytes_out 0 173239 bytes_in 0 173239 station_ip 5.119.56.25 173239 port 34 173239 unique_id port 173239 remote_ip 10.8.0.126 173241 username sabaghnezhad 173241 mac 173241 bytes_out 1596106 173241 bytes_in 19319812 173241 station_ip 37.129.51.11 173241 port 7 173241 unique_id port 173241 remote_ip 10.8.0.66 173244 username malekpoir 173244 kill_reason Another user logged on this global unique id 173244 mac 173244 bytes_out 0 173244 bytes_in 0 173244 station_ip 5.119.6.116 173244 port 38 173244 unique_id port 173247 username aminvpn 173247 mac 173247 bytes_out 0 173247 bytes_in 0 173247 station_ip 5.119.94.158 173247 port 35 173247 unique_id port 173247 remote_ip 10.8.0.58 173250 username barzegar 173250 mac 173250 bytes_out 0 173250 bytes_in 0 173250 station_ip 5.119.187.175 173250 port 34 173250 unique_id port 173250 remote_ip 10.8.0.10 173251 username sekonji3 173251 mac 173251 bytes_out 0 173251 bytes_in 0 173251 station_ip 37.129.16.198 173251 port 7 173251 unique_id port 173251 remote_ip 10.8.0.62 173253 username tahmasebi 173253 mac 173253 bytes_out 0 173253 bytes_in 0 173253 station_ip 5.119.56.25 173253 port 3 173253 unique_id port 173253 remote_ip 10.8.0.126 173255 username mehdizare 173255 mac 173255 bytes_out 62959 173255 bytes_in 96319 173255 station_ip 37.129.185.236 173255 port 22 173255 unique_id port 173255 remote_ip 10.8.0.210 173258 username farhad2 173258 mac 173258 bytes_out 0 173258 bytes_in 0 173258 station_ip 5.119.194.76 173258 port 40 173258 unique_id port 173259 username forozandeh1 173259 mac 173259 bytes_out 363560 173259 bytes_in 3041499 173259 station_ip 37.129.125.37 173259 port 22 173259 unique_id port 173259 remote_ip 10.8.0.30 173262 username sekonji3 173262 mac 173262 bytes_out 0 173262 bytes_in 0 173262 station_ip 37.129.16.198 173262 port 22 173262 unique_id port 173262 remote_ip 10.8.0.62 173263 username ayobi 173263 kill_reason Another user logged on this global unique id 173263 mac 173263 bytes_out 0 173263 bytes_in 0 173263 station_ip 188.245.89.158 173263 port 36 173263 unique_id port 173265 username sekonji3 173265 mac 173265 bytes_out 0 173265 bytes_in 0 173265 station_ip 83.123.19.205 173265 port 22 173265 unique_id port 173265 remote_ip 10.8.0.62 173270 username majidsarmast 173270 kill_reason Another user logged on this global unique id 173270 mac 173270 bytes_out 0 173270 bytes_in 0 173270 station_ip 86.57.98.69 173270 port 42 173238 unique_id port 173238 remote_ip 10.8.0.62 173240 username farhad2 173240 kill_reason Another user logged on this global unique id 173240 mac 173240 bytes_out 0 173240 bytes_in 0 173240 station_ip 5.119.194.76 173240 port 40 173240 unique_id port 173242 username vanila 173242 kill_reason Another user logged on this global unique id 173242 mac 173242 bytes_out 0 173242 bytes_in 0 173242 station_ip 83.123.120.171 173242 port 3 173242 unique_id port 173242 remote_ip 10.8.0.46 173243 username sekonji3 173243 mac 173243 bytes_out 0 173243 bytes_in 0 173243 station_ip 37.129.16.198 173243 port 35 173243 unique_id port 173243 remote_ip 10.8.0.62 173245 username pourshad 173245 kill_reason Another user logged on this global unique id 173245 mac 173245 bytes_out 0 173245 bytes_in 0 173245 station_ip 5.120.203.248 173245 port 26 173245 unique_id port 173256 username barzegar 173256 mac 173256 bytes_out 2120 173256 bytes_in 4505 173256 station_ip 5.119.187.175 173256 port 46 173256 unique_id port 173256 remote_ip 10.8.0.10 173257 username sekonji3 173257 mac 173257 bytes_out 0 173257 bytes_in 0 173257 station_ip 37.129.16.198 173257 port 46 173257 unique_id port 173257 remote_ip 10.8.0.62 173260 username barzegar 173260 mac 173260 bytes_out 3475 173260 bytes_in 5000 173260 station_ip 5.119.187.175 173260 port 40 173260 unique_id port 173260 remote_ip 10.8.0.10 173261 username aminvpn 173261 mac 173261 bytes_out 0 173261 bytes_in 0 173261 station_ip 5.119.94.158 173261 port 22 173261 unique_id port 173261 remote_ip 10.8.0.58 173267 username godarzi 173267 kill_reason Another user logged on this global unique id 173267 mac 173267 bytes_out 0 173267 bytes_in 0 173267 station_ip 5.120.27.239 173267 port 37 173267 unique_id port 173267 remote_ip 10.8.0.38 173268 username sekonji3 173268 mac 173268 bytes_out 0 173268 bytes_in 0 173268 station_ip 83.123.156.64 173268 port 3 173268 unique_id port 173268 remote_ip 10.8.0.62 173269 username sekonji3 173269 mac 173269 bytes_out 0 173269 bytes_in 0 173269 station_ip 83.123.156.64 173269 port 3 173269 unique_id port 173269 remote_ip 10.8.0.62 173273 username farhad2 173273 mac 173273 bytes_out 831306 173273 bytes_in 2293792 173273 station_ip 5.119.194.76 173273 port 40 173273 unique_id port 173273 remote_ip 10.8.0.146 173278 username jafari 173278 kill_reason Another user logged on this global unique id 173278 mac 173278 bytes_out 0 173278 bytes_in 0 173278 station_ip 94.24.95.154 173278 port 41 173278 unique_id port 173281 username majidsarmast 173281 mac 173281 bytes_out 0 173281 bytes_in 0 173281 station_ip 86.57.98.69 173281 port 42 173281 unique_id port 173283 username ayobi 173283 kill_reason Another user logged on this global unique id 173283 mac 173283 bytes_out 0 173283 bytes_in 0 173283 station_ip 188.245.89.158 173283 port 36 173283 unique_id port 173286 username tahmasebi 173286 mac 173286 bytes_out 24660 173286 bytes_in 47110 173286 station_ip 5.119.56.25 173286 port 34 173286 unique_id port 173286 remote_ip 10.8.0.126 173287 username tahmasebi 173287 mac 173287 bytes_out 0 173287 bytes_in 0 173287 station_ip 5.119.56.25 173287 port 40 173287 unique_id port 173287 remote_ip 10.8.0.126 173289 username alikomsari 173289 mac 173289 bytes_out 2780760 173289 bytes_in 22442009 173289 station_ip 5.119.66.116 173289 port 20 173289 unique_id port 173289 remote_ip 10.8.0.118 173291 username aminvpn 173291 mac 173291 bytes_out 0 173291 bytes_in 0 173291 station_ip 5.119.94.158 173291 port 14 173270 unique_id port 173270 remote_ip 10.8.0.170 173275 username barzegar 173275 mac 173275 bytes_out 0 173275 bytes_in 0 173275 station_ip 5.119.187.175 173275 port 14 173275 unique_id port 173275 remote_ip 10.8.0.10 173277 username aminvpn 173277 mac 173277 bytes_out 0 173277 bytes_in 0 173277 station_ip 5.119.94.158 173277 port 14 173277 unique_id port 173277 remote_ip 10.8.0.58 173280 username mehdizare 173280 mac 173280 bytes_out 34164 173280 bytes_in 65654 173280 station_ip 37.129.185.236 173280 port 7 173280 unique_id port 173280 remote_ip 10.8.0.210 173288 username tahmorsi 173288 mac 173288 bytes_out 801856 173288 bytes_in 3534526 173288 station_ip 86.57.32.31 173288 port 14 173288 unique_id port 173288 remote_ip 10.8.0.238 173293 username barzegar 173293 mac 173293 bytes_out 2586 173293 bytes_in 4895 173293 station_ip 5.119.187.175 173293 port 40 173293 unique_id port 173293 remote_ip 10.8.0.10 173295 username tahmasebi 173295 mac 173295 bytes_out 1636 173295 bytes_in 3739 173295 station_ip 5.119.56.25 173295 port 20 173295 unique_id port 173295 remote_ip 10.8.0.126 173300 username sekonji3 173300 mac 173300 bytes_out 0 173300 bytes_in 0 173300 station_ip 83.123.156.64 173300 port 3 173300 unique_id port 173300 remote_ip 10.8.0.62 173301 username yaghobi 173301 mac 173301 bytes_out 1128250 173301 bytes_in 11690977 173301 station_ip 83.122.112.199 173301 port 22 173301 unique_id port 173301 remote_ip 10.8.0.138 173304 username aminvpn 173304 mac 173304 bytes_out 0 173304 bytes_in 0 173304 station_ip 5.119.94.158 173304 port 40 173304 unique_id port 173304 remote_ip 10.8.0.58 173307 username sekonji3 173307 mac 173307 bytes_out 4255 173307 bytes_in 5806 173307 station_ip 83.123.156.64 173307 port 7 173307 unique_id port 173307 remote_ip 10.8.0.62 173309 username mostafa_es78 173309 kill_reason Another user logged on this global unique id 173309 mac 173309 bytes_out 0 173309 bytes_in 0 173309 station_ip 37.129.226.89 173309 port 34 173309 unique_id port 173309 remote_ip 10.8.0.34 173316 username aminvpn 173316 mac 173316 bytes_out 0 173316 bytes_in 0 173316 station_ip 5.119.94.158 173316 port 7 173316 unique_id port 173316 remote_ip 10.8.0.58 173317 username pourshad 173317 mac 173317 bytes_out 0 173317 bytes_in 0 173317 station_ip 5.120.203.248 173317 port 26 173317 unique_id port 173323 username barzegar 173323 mac 173323 bytes_out 3074 173323 bytes_in 6090 173323 station_ip 5.119.187.175 173323 port 42 173323 unique_id port 173323 remote_ip 10.8.0.10 173326 username hashtadani4 173326 mac 173326 bytes_out 0 173326 bytes_in 0 173326 station_ip 37.129.33.170 173326 port 20 173326 unique_id port 173326 remote_ip 10.8.0.22 173331 username shadkam 173331 mac 173331 bytes_out 976160 173331 bytes_in 9903568 173331 station_ip 83.123.36.209 173331 port 40 173331 unique_id port 173331 remote_ip 10.8.0.74 173333 username shadkam 173333 mac 173333 bytes_out 0 173333 bytes_in 0 173333 station_ip 83.123.36.209 173333 port 20 173333 unique_id port 173333 remote_ip 10.8.0.74 173337 username tahmasebi 173337 mac 173337 bytes_out 7539 173337 bytes_in 11570 173337 station_ip 5.119.56.25 173337 port 20 173337 unique_id port 173337 remote_ip 10.8.0.126 173339 username shadkam 173339 mac 173339 bytes_out 0 173339 bytes_in 0 173339 station_ip 83.123.36.209 173339 port 40 173339 unique_id port 173339 remote_ip 10.8.0.74 173344 username sekonji3 173284 remote_ip 10.8.0.10 173285 username mehdizare 173285 mac 173285 bytes_out 8992 173285 bytes_in 12066 173285 station_ip 37.129.185.236 173285 port 40 173285 unique_id port 173285 remote_ip 10.8.0.210 173290 username hashtadani4 173290 mac 173290 bytes_out 11986 173290 bytes_in 30588 173290 station_ip 83.123.110.122 173290 port 42 173290 unique_id port 173290 remote_ip 10.8.0.22 173292 username barzegar 173292 mac 173292 bytes_out 0 173292 bytes_in 0 173292 station_ip 5.119.187.175 173292 port 20 173292 unique_id port 173292 remote_ip 10.8.0.10 173294 username tahmasebi 173294 mac 173294 bytes_out 2103 173294 bytes_in 4388 173294 station_ip 5.119.56.25 173294 port 20 173294 unique_id port 173294 remote_ip 10.8.0.126 173299 username sekonji3 173299 mac 173299 bytes_out 36279 173299 bytes_in 130693 173299 station_ip 83.123.156.64 173299 port 3 173299 unique_id port 173299 remote_ip 10.8.0.62 173302 username barzegar 173302 mac 173302 bytes_out 172026 173302 bytes_in 628275 173302 station_ip 5.119.187.175 173302 port 42 173302 unique_id port 173302 remote_ip 10.8.0.10 173303 username sedighe 173303 mac 173303 bytes_out 383820 173303 bytes_in 1464646 173303 station_ip 83.123.53.162 173303 port 7 173303 unique_id port 173303 remote_ip 10.8.0.78 173305 username rahim 173305 mac 173305 bytes_out 105798 173305 bytes_in 176177 173305 station_ip 5.120.55.192 173305 port 20 173305 unique_id port 173305 remote_ip 10.8.0.134 173308 username barzegar 173308 mac 173308 bytes_out 0 173308 bytes_in 0 173308 station_ip 5.119.187.175 173308 port 20 173308 unique_id port 173308 remote_ip 10.8.0.10 173314 username barzegar 173314 mac 173314 bytes_out 7017 173314 bytes_in 9828 173314 station_ip 5.119.187.175 173314 port 7 173314 unique_id port 173314 remote_ip 10.8.0.10 173319 username milan 173319 kill_reason Another user logged on this global unique id 173319 mac 173319 bytes_out 0 173319 bytes_in 0 173319 station_ip 5.119.173.190 173319 port 6 173319 unique_id port 173321 username vanila 173321 mac 173321 bytes_out 356106 173321 bytes_in 1019853 173321 station_ip 83.123.120.171 173321 port 35 173321 unique_id port 173321 remote_ip 10.8.0.46 173324 username aminvpn 173324 mac 173324 bytes_out 482055 173324 bytes_in 1999891 173324 station_ip 83.122.79.122 173324 port 14 173324 unique_id port 173324 remote_ip 10.8.0.58 173327 username aminvpn 173327 mac 173327 bytes_out 1644 173327 bytes_in 10602 173327 station_ip 5.119.94.158 173327 port 14 173327 unique_id port 173327 remote_ip 10.8.0.58 173329 username godarzi 173329 mac 173329 bytes_out 0 173329 bytes_in 0 173329 station_ip 5.120.27.239 173329 port 37 173329 unique_id port 173330 username sekonji3 173330 mac 173330 bytes_out 83249 173330 bytes_in 704471 173330 station_ip 83.123.156.64 173330 port 7 173330 unique_id port 173330 remote_ip 10.8.0.62 173332 username hashtadani4 173332 mac 173332 bytes_out 2300 173332 bytes_in 5607 173332 station_ip 83.122.237.124 173332 port 20 173332 unique_id port 173332 remote_ip 10.8.0.22 173336 username malekpoir 173336 kill_reason Another user logged on this global unique id 173336 mac 173336 bytes_out 0 173336 bytes_in 0 173336 station_ip 5.119.6.116 173336 port 38 173336 unique_id port 173340 username hashtadani4 173340 mac 173340 bytes_out 0 173340 bytes_in 0 173340 station_ip 113.203.74.84 173340 port 35 173340 unique_id port 173340 remote_ip 10.8.0.22 173342 username aminvpn 173342 mac 173291 unique_id port 173291 remote_ip 10.8.0.58 173296 username tahmasebi 173296 mac 173296 bytes_out 0 173296 bytes_in 0 173296 station_ip 5.119.56.25 173296 port 20 173296 unique_id port 173296 remote_ip 10.8.0.126 173297 username tahmasebi 173297 mac 173297 bytes_out 1636 173297 bytes_in 4503 173297 station_ip 5.119.56.25 173297 port 20 173297 unique_id port 173297 remote_ip 10.8.0.126 173298 username jafari 173298 kill_reason Another user logged on this global unique id 173298 mac 173298 bytes_out 0 173298 bytes_in 0 173298 station_ip 94.24.95.154 173298 port 41 173298 unique_id port 173306 username tahmasebi 173306 mac 173306 bytes_out 228318 173306 bytes_in 1731925 173306 station_ip 5.119.56.25 173306 port 22 173306 unique_id port 173306 remote_ip 10.8.0.126 173310 username tahmasebi 173310 mac 173310 bytes_out 2056 173310 bytes_in 4304 173310 station_ip 5.119.56.25 173310 port 20 173310 unique_id port 173310 remote_ip 10.8.0.126 173311 username tahmasebi 173311 mac 173311 bytes_out 1636 173311 bytes_in 7552 173311 station_ip 5.119.56.25 173311 port 20 173311 unique_id port 173311 remote_ip 10.8.0.126 173312 username forozandeh1 173312 mac 173312 bytes_out 2188783 173312 bytes_in 23416505 173312 station_ip 37.129.22.123 173312 port 14 173312 unique_id port 173312 remote_ip 10.8.0.30 173313 username shadkam 173313 mac 173313 bytes_out 11821484 173313 bytes_in 13598711 173313 station_ip 83.123.180.185 173313 port 35 173313 unique_id port 173313 remote_ip 10.8.0.74 173315 username ayobi 173315 kill_reason Another user logged on this global unique id 173315 mac 173315 bytes_out 0 173315 bytes_in 0 173315 station_ip 188.245.89.158 173315 port 36 173315 unique_id port 173318 username barzegar 173318 mac 173318 bytes_out 4070 173318 bytes_in 5047 173318 station_ip 5.119.187.175 173318 port 26 173318 unique_id port 173318 remote_ip 10.8.0.10 173320 username tahmasebi 173320 mac 173320 bytes_out 0 173320 bytes_in 0 173320 station_ip 5.119.56.25 173320 port 26 173320 unique_id port 173320 remote_ip 10.8.0.126 173322 username hatami 173322 mac 173322 bytes_out 596500 173322 bytes_in 4435440 173322 station_ip 151.235.119.152 173322 port 20 173322 unique_id port 173322 remote_ip 10.8.0.98 173325 username aminvpn 173325 mac 173325 bytes_out 0 173325 bytes_in 0 173325 station_ip 5.119.94.158 173325 port 26 173325 unique_id port 173325 remote_ip 10.8.0.58 173328 username hashtadani4 173328 mac 173328 bytes_out 0 173328 bytes_in 0 173328 station_ip 83.122.237.124 173328 port 26 173328 unique_id port 173328 remote_ip 10.8.0.22 173334 username tahmasebi 173334 mac 173334 bytes_out 2103 173334 bytes_in 4388 173334 station_ip 5.119.56.25 173334 port 20 173334 unique_id port 173334 remote_ip 10.8.0.126 173335 username hashtadani4 173335 mac 173335 bytes_out 14829 173335 bytes_in 16875 173335 station_ip 83.122.110.213 173335 port 35 173335 unique_id port 173335 remote_ip 10.8.0.22 173338 username aminvpn 173338 mac 173338 bytes_out 183083 173338 bytes_in 806245 173338 station_ip 83.122.79.122 173338 port 14 173338 unique_id port 173338 remote_ip 10.8.0.58 173341 username sekonji3 173341 mac 173341 bytes_out 5178 173341 bytes_in 10853 173341 station_ip 83.123.156.64 173341 port 37 173341 unique_id port 173341 remote_ip 10.8.0.62 173343 username fezealinaghi 173343 mac 173343 bytes_out 798009 173343 bytes_in 8768389 173343 station_ip 83.122.48.158 173343 port 26 173343 unique_id port 173343 remote_ip 10.8.0.202 173342 bytes_out 0 173342 bytes_in 0 173342 station_ip 5.119.94.158 173342 port 20 173342 unique_id port 173342 remote_ip 10.8.0.58 173348 username pourshad 173348 mac 173348 bytes_out 746270 173348 bytes_in 9421348 173348 station_ip 5.120.203.248 173348 port 22 173348 unique_id port 173348 remote_ip 10.8.0.42 173352 username shadkam 173352 mac 173352 bytes_out 363829 173352 bytes_in 119115 173352 station_ip 83.123.36.209 173352 port 26 173352 unique_id port 173352 remote_ip 10.8.0.74 173354 username hashtadani4 173354 mac 173354 bytes_out 0 173354 bytes_in 0 173354 station_ip 113.203.74.84 173354 port 20 173354 unique_id port 173354 remote_ip 10.8.0.22 173356 username hashtadani4 173356 mac 173356 bytes_out 0 173356 bytes_in 0 173356 station_ip 113.203.74.84 173356 port 40 173356 unique_id port 173356 remote_ip 10.8.0.22 173360 username hashtadani4 173360 mac 173360 bytes_out 0 173360 bytes_in 0 173360 station_ip 113.203.74.84 173360 port 37 173360 unique_id port 173360 remote_ip 10.8.0.22 173362 username hashtadani4 173362 mac 173362 bytes_out 0 173362 bytes_in 0 173362 station_ip 113.203.74.84 173362 port 40 173362 unique_id port 173362 remote_ip 10.8.0.22 173365 username kordestani 173365 mac 173365 bytes_out 21857 173365 bytes_in 6240 173365 station_ip 151.235.81.28 173365 port 37 173365 unique_id port 173365 remote_ip 10.8.0.130 173367 username aminvpn 173367 mac 173367 bytes_out 74059 173367 bytes_in 99211 173367 station_ip 83.122.79.122 173367 port 35 173367 unique_id port 173367 remote_ip 10.8.0.58 173369 username aminvpn 173369 mac 173369 bytes_out 0 173369 bytes_in 0 173369 station_ip 5.119.94.158 173369 port 37 173369 unique_id port 173369 remote_ip 10.8.0.58 173372 username hashtadani4 173372 mac 173372 bytes_out 0 173372 bytes_in 0 173372 station_ip 113.203.74.84 173372 port 20 173372 unique_id port 173372 remote_ip 10.8.0.22 173373 username barzegar 173373 mac 173373 bytes_out 11817 173373 bytes_in 27431 173373 station_ip 5.119.187.175 173373 port 42 173373 unique_id port 173373 remote_ip 10.8.0.10 173374 username hashtadani4 173374 mac 173374 bytes_out 0 173374 bytes_in 0 173374 station_ip 113.203.74.84 173374 port 40 173374 unique_id port 173374 remote_ip 10.8.0.22 173376 username hashtadani4 173376 mac 173376 bytes_out 0 173376 bytes_in 0 173376 station_ip 113.203.74.84 173376 port 40 173376 unique_id port 173376 remote_ip 10.8.0.22 173377 username hashtadani4 173377 kill_reason Maximum check online fails reached 173377 mac 173377 bytes_out 0 173377 bytes_in 0 173377 station_ip 113.203.74.84 173377 port 35 173377 unique_id port 173382 username tahmasebi 173382 mac 173382 bytes_out 0 173382 bytes_in 0 173382 station_ip 5.119.56.25 173382 port 40 173382 unique_id port 173382 remote_ip 10.8.0.126 173385 username aminvpn 173385 mac 173385 bytes_out 258233 173385 bytes_in 1861128 173385 station_ip 83.122.79.122 173385 port 20 173385 unique_id port 173385 remote_ip 10.8.0.58 173389 username shadkam 173389 mac 173389 bytes_out 0 173389 bytes_in 0 173389 station_ip 37.129.113.84 173389 port 22 173389 unique_id port 173389 remote_ip 10.8.0.74 173391 username hashtadani4 173391 mac 173391 bytes_out 0 173391 bytes_in 0 173391 station_ip 113.203.74.84 173391 port 22 173391 unique_id port 173391 remote_ip 10.8.0.22 173394 username hashtadani4 173394 mac 173394 bytes_out 0 173394 bytes_in 0 173394 station_ip 113.203.74.84 173394 port 22 173344 mac 173344 bytes_out 0 173344 bytes_in 0 173344 station_ip 83.123.156.64 173344 port 26 173344 unique_id port 173344 remote_ip 10.8.0.62 173347 username barzegar 173347 mac 173347 bytes_out 3444 173347 bytes_in 6073 173347 station_ip 5.119.187.175 173347 port 40 173347 unique_id port 173347 remote_ip 10.8.0.10 173358 username hashtadani4 173358 mac 173358 bytes_out 0 173358 bytes_in 0 173358 station_ip 113.203.74.84 173358 port 37 173358 unique_id port 173358 remote_ip 10.8.0.22 173363 username hashtadani4 173363 mac 173363 bytes_out 0 173363 bytes_in 0 173363 station_ip 113.203.74.84 173363 port 40 173363 unique_id port 173363 remote_ip 10.8.0.22 173364 username milan 173364 kill_reason Another user logged on this global unique id 173364 mac 173364 bytes_out 0 173364 bytes_in 0 173364 station_ip 5.119.173.190 173364 port 6 173364 unique_id port 173368 username hashtadani4 173368 mac 173368 bytes_out 0 173368 bytes_in 0 173368 station_ip 113.203.74.84 173368 port 35 173368 unique_id port 173368 remote_ip 10.8.0.22 173380 username sekonji3 173380 mac 173380 bytes_out 0 173380 bytes_in 0 173380 station_ip 83.123.156.64 173380 port 47 173380 unique_id port 173380 remote_ip 10.8.0.62 173381 username shadkam 173381 mac 173381 bytes_out 83902 173381 bytes_in 95670 173381 station_ip 37.129.3.25 173381 port 22 173381 unique_id port 173381 remote_ip 10.8.0.74 173383 username houshang 173383 mac 173383 bytes_out 1808616 173383 bytes_in 23921326 173383 station_ip 5.120.190.137 173383 port 26 173383 unique_id port 173383 remote_ip 10.8.0.82 173386 username hashtadani4 173386 mac 173386 bytes_out 501174 173386 bytes_in 5239193 173386 station_ip 113.203.74.84 173386 port 46 173386 unique_id port 173386 remote_ip 10.8.0.22 173392 username hashtadani4 173392 mac 173392 bytes_out 0 173392 bytes_in 0 173392 station_ip 113.203.74.84 173392 port 22 173392 unique_id port 173392 remote_ip 10.8.0.22 173393 username shadkam 173393 mac 173393 bytes_out 14130 173393 bytes_in 19390 173393 station_ip 37.129.113.84 173393 port 7 173393 unique_id port 173393 remote_ip 10.8.0.74 173396 username hashtadani4 173396 mac 173396 bytes_out 0 173396 bytes_in 0 173396 station_ip 113.203.74.84 173396 port 7 173396 unique_id port 173396 remote_ip 10.8.0.22 173403 username hashtadani4 173403 mac 173403 bytes_out 0 173403 bytes_in 0 173403 station_ip 113.203.74.84 173403 port 22 173403 unique_id port 173403 remote_ip 10.8.0.22 173409 username hashtadani4 173409 mac 173409 bytes_out 0 173409 bytes_in 0 173409 station_ip 113.203.74.84 173409 port 22 173409 unique_id port 173409 remote_ip 10.8.0.22 173412 username barzegar 173412 mac 173412 bytes_out 0 173412 bytes_in 0 173412 station_ip 5.119.187.175 173412 port 34 173412 unique_id port 173412 remote_ip 10.8.0.10 173414 username khademi 173414 kill_reason Another user logged on this global unique id 173414 mac 173414 bytes_out 0 173414 bytes_in 0 173414 station_ip 37.129.12.135 173414 port 45 173414 unique_id port 173415 username hashtadani4 173415 mac 173415 bytes_out 2921 173415 bytes_in 5684 173415 station_ip 5.202.24.176 173415 port 40 173415 unique_id port 173415 remote_ip 10.8.0.22 173421 username mostafa_es78 173421 mac 173421 bytes_out 644653 173421 bytes_in 7525223 173421 station_ip 37.129.226.89 173421 port 22 173421 unique_id port 173421 remote_ip 10.8.0.34 173423 username hashtadani4 173423 kill_reason Maximum check online fails reached 173423 mac 173345 username mostafa_es78 173345 kill_reason Another user logged on this global unique id 173345 mac 173345 bytes_out 0 173345 bytes_in 0 173345 station_ip 37.129.226.89 173345 port 34 173345 unique_id port 173346 username fezealinaghi 173346 mac 173346 bytes_out 89131 173346 bytes_in 112561 173346 station_ip 83.122.48.158 173346 port 14 173346 unique_id port 173346 remote_ip 10.8.0.202 173349 username hashtadani4 173349 mac 173349 bytes_out 455049 173349 bytes_in 5075995 173349 station_ip 113.203.74.84 173349 port 20 173349 unique_id port 173349 remote_ip 10.8.0.22 173350 username jafari 173350 kill_reason Another user logged on this global unique id 173350 mac 173350 bytes_out 0 173350 bytes_in 0 173350 station_ip 94.24.95.154 173350 port 41 173350 unique_id port 173351 username sekonji3 173351 mac 173351 bytes_out 5249 173351 bytes_in 11967 173351 station_ip 83.123.156.64 173351 port 37 173351 unique_id port 173351 remote_ip 10.8.0.62 173353 username rostami 173353 kill_reason Relative expiration date has reached 173353 mac 173353 bytes_out 0 173353 bytes_in 0 173353 station_ip 5.120.30.1 173353 port 40 173353 unique_id port 173355 username tahmasebi 173355 mac 173355 bytes_out 0 173355 bytes_in 0 173355 station_ip 5.119.56.25 173355 port 37 173355 unique_id port 173355 remote_ip 10.8.0.126 173357 username vanila 173357 mac 173357 bytes_out 927270 173357 bytes_in 6655331 173357 station_ip 83.123.120.171 173357 port 42 173357 unique_id port 173357 remote_ip 10.8.0.46 173359 username hashtadani4 173359 mac 173359 bytes_out 0 173359 bytes_in 0 173359 station_ip 113.203.74.84 173359 port 37 173359 unique_id port 173359 remote_ip 10.8.0.22 173361 username hashtadani4 173361 mac 173361 bytes_out 0 173361 bytes_in 0 173361 station_ip 113.203.74.84 173361 port 40 173361 unique_id port 173361 remote_ip 10.8.0.22 173366 username tahmasebi 173366 mac 173366 bytes_out 0 173366 bytes_in 0 173366 station_ip 5.119.56.25 173366 port 40 173366 unique_id port 173366 remote_ip 10.8.0.126 173370 username sekonji3 173370 mac 173370 bytes_out 3410 173370 bytes_in 5497 173370 station_ip 83.123.156.64 173370 port 20 173370 unique_id port 173370 remote_ip 10.8.0.62 173371 username kordestani 173371 mac 173371 bytes_out 771636 173371 bytes_in 7438210 173371 station_ip 151.235.81.28 173371 port 46 173371 unique_id port 173371 remote_ip 10.8.0.130 173375 username tahmasebi 173375 mac 173375 bytes_out 0 173375 bytes_in 0 173375 station_ip 5.119.56.25 173375 port 46 173375 unique_id port 173375 remote_ip 10.8.0.126 173378 username hashtadani4 173378 mac 173378 bytes_out 0 173378 bytes_in 0 173378 station_ip 113.203.74.84 173378 port 40 173378 unique_id port 173378 remote_ip 10.8.0.22 173379 username tahmasebi 173379 mac 173379 bytes_out 0 173379 bytes_in 0 173379 station_ip 5.119.56.25 173379 port 40 173379 unique_id port 173379 remote_ip 10.8.0.126 173384 username barzegar 173384 mac 173384 bytes_out 9123 173384 bytes_in 60906 173384 station_ip 5.119.187.175 173384 port 22 173384 unique_id port 173384 remote_ip 10.8.0.10 173387 username shadkam 173387 mac 173387 bytes_out 22093 173387 bytes_in 46952 173387 station_ip 37.129.25.182 173387 port 26 173387 unique_id port 173387 remote_ip 10.8.0.74 173388 username kalantary 173388 mac 173388 bytes_out 3028551 173388 bytes_in 29233850 173388 station_ip 83.122.143.254 173388 port 7 173388 unique_id port 173388 remote_ip 10.8.0.50 173390 username hashtadani4 173390 mac 173390 bytes_out 0 173390 bytes_in 0 173390 station_ip 113.203.74.84 173390 port 26 173390 unique_id port 173390 remote_ip 10.8.0.22 173395 username aminvpn 173395 mac 173395 bytes_out 252969 173395 bytes_in 657742 173395 station_ip 83.122.79.122 173395 port 20 173395 unique_id port 173395 remote_ip 10.8.0.58 173398 username hashtadani4 173398 mac 173398 bytes_out 0 173398 bytes_in 0 173398 station_ip 113.203.74.84 173398 port 20 173398 unique_id port 173398 remote_ip 10.8.0.22 173399 username hashtadani4 173399 mac 173399 bytes_out 0 173399 bytes_in 0 173399 station_ip 113.203.74.84 173399 port 20 173399 unique_id port 173399 remote_ip 10.8.0.22 173400 username hashtadani4 173400 mac 173400 bytes_out 0 173400 bytes_in 0 173400 station_ip 113.203.74.84 173400 port 20 173400 unique_id port 173400 remote_ip 10.8.0.22 173402 username tahmasebi 173402 mac 173402 bytes_out 2064 173402 bytes_in 4357 173402 station_ip 5.119.56.25 173402 port 22 173402 unique_id port 173402 remote_ip 10.8.0.126 173404 username hashtadani4 173404 mac 173404 bytes_out 0 173404 bytes_in 0 173404 station_ip 113.203.74.84 173404 port 22 173404 unique_id port 173404 remote_ip 10.8.0.22 173405 username mostafa_es78 173405 mac 173405 bytes_out 0 173405 bytes_in 0 173405 station_ip 37.129.226.89 173405 port 34 173405 unique_id port 173407 username hashtadani4 173407 kill_reason Maximum check online fails reached 173407 mac 173407 bytes_out 0 173407 bytes_in 0 173407 station_ip 113.203.74.84 173407 port 20 173407 unique_id port 173410 username hashtadani4 173410 mac 173410 bytes_out 0 173410 bytes_in 0 173410 station_ip 113.203.74.84 173410 port 22 173410 unique_id port 173410 remote_ip 10.8.0.22 173411 username morteza 173411 mac 173411 bytes_out 2544911 173411 bytes_in 41497134 173411 station_ip 83.122.149.195 173411 port 37 173411 unique_id port 173411 remote_ip 10.8.0.174 173413 username hashtadani4 173413 kill_reason Maximum check online fails reached 173413 mac 173413 bytes_out 0 173413 bytes_in 0 173413 station_ip 5.202.24.176 173413 port 26 173413 unique_id port 173418 username hashtadani4 173418 mac 173418 bytes_out 0 173418 bytes_in 0 173418 station_ip 113.203.74.84 173418 port 40 173418 unique_id port 173418 remote_ip 10.8.0.22 173420 username aminvpn 173420 mac 173420 bytes_out 0 173420 bytes_in 0 173420 station_ip 5.119.94.158 173420 port 40 173420 unique_id port 173420 remote_ip 10.8.0.58 173428 username hashtadani4 173428 kill_reason Another user logged on this global unique id 173428 mac 173428 bytes_out 0 173428 bytes_in 0 173428 station_ip 113.203.74.84 173428 port 7 173428 unique_id port 173431 username tahmasebi 173431 mac 173431 bytes_out 0 173431 bytes_in 0 173431 station_ip 5.119.56.25 173431 port 46 173431 unique_id port 173431 remote_ip 10.8.0.126 173433 username aminvpn 173433 kill_reason Maximum check online fails reached 173433 mac 173433 bytes_out 0 173433 bytes_in 0 173433 station_ip 5.119.94.158 173433 port 40 173433 unique_id port 173437 username aminvpn 173437 mac 173437 bytes_out 0 173437 bytes_in 0 173437 station_ip 83.122.197.11 173437 port 50 173437 unique_id port 173437 remote_ip 10.8.0.58 173442 username morteza 173442 mac 173442 bytes_out 462895 173442 bytes_in 7713604 173442 station_ip 83.122.149.195 173442 port 7 173442 unique_id port 173442 remote_ip 10.8.0.174 173443 username barzegar 173443 mac 173443 bytes_out 0 173443 bytes_in 0 173443 station_ip 5.119.187.175 173394 unique_id port 173394 remote_ip 10.8.0.22 173397 username aminvpn 173397 mac 173397 bytes_out 0 173397 bytes_in 0 173397 station_ip 5.119.94.158 173397 port 26 173397 unique_id port 173397 remote_ip 10.8.0.58 173401 username hashtadani4 173401 mac 173401 bytes_out 0 173401 bytes_in 0 173401 station_ip 113.203.74.84 173401 port 20 173401 unique_id port 173401 remote_ip 10.8.0.22 173406 username hashtadani4 173406 mac 173406 bytes_out 0 173406 bytes_in 0 173406 station_ip 113.203.74.84 173406 port 22 173406 unique_id port 173406 remote_ip 10.8.0.22 173408 username hashtadani4 173408 mac 173408 bytes_out 0 173408 bytes_in 0 173408 station_ip 113.203.74.84 173408 port 22 173408 unique_id port 173408 remote_ip 10.8.0.22 173416 username sekonji3 173416 mac 173416 bytes_out 806563 173416 bytes_in 6733497 173416 station_ip 83.123.156.64 173416 port 47 173416 unique_id port 173416 remote_ip 10.8.0.62 173417 username sekonji3 173417 mac 173417 bytes_out 0 173417 bytes_in 0 173417 station_ip 83.123.156.64 173417 port 34 173417 unique_id port 173417 remote_ip 10.8.0.62 173419 username aminvpn 173419 mac 173419 bytes_out 185956 173419 bytes_in 2390915 173419 station_ip 83.122.79.122 173419 port 7 173419 unique_id port 173419 remote_ip 10.8.0.58 173422 username tahmasebi 173422 mac 173422 bytes_out 0 173422 bytes_in 0 173422 station_ip 5.119.56.25 173422 port 40 173422 unique_id port 173422 remote_ip 10.8.0.126 173425 username tahmasebi 173425 mac 173425 bytes_out 0 173425 bytes_in 0 173425 station_ip 5.119.56.25 173425 port 46 173425 unique_id port 173425 remote_ip 10.8.0.126 173432 username farhad2 173432 mac 173432 bytes_out 406373 173432 bytes_in 1731220 173432 station_ip 5.120.108.121 173432 port 37 173432 unique_id port 173432 remote_ip 10.8.0.146 173434 username aminvpn 173434 mac 173434 bytes_out 0 173434 bytes_in 0 173434 station_ip 83.122.197.11 173434 port 49 173434 unique_id port 173434 remote_ip 10.8.0.58 173436 username tahmasebi 173436 mac 173436 bytes_out 0 173436 bytes_in 0 173436 station_ip 5.119.56.25 173436 port 46 173436 unique_id port 173436 remote_ip 10.8.0.126 173440 username aminvpn 173440 mac 173440 bytes_out 0 173440 bytes_in 0 173440 station_ip 83.122.197.11 173440 port 46 173440 unique_id port 173440 remote_ip 10.8.0.58 173441 username fezealinaghi 173441 mac 173441 bytes_out 1018192 173441 bytes_in 7852078 173441 station_ip 83.123.164.135 173441 port 48 173441 unique_id port 173441 remote_ip 10.8.0.202 173445 username godarzi 173445 mac 173445 bytes_out 4062592 173445 bytes_in 23064975 173445 station_ip 5.120.27.239 173445 port 14 173445 unique_id port 173445 remote_ip 10.8.0.38 173452 username aminvpn 173452 mac 173452 bytes_out 0 173452 bytes_in 0 173452 station_ip 5.119.94.158 173452 port 37 173452 unique_id port 173452 remote_ip 10.8.0.58 173459 username barzegar 173459 mac 173459 bytes_out 0 173459 bytes_in 0 173459 station_ip 5.119.187.175 173459 port 50 173459 unique_id port 173459 remote_ip 10.8.0.10 173460 username sekonji3 173460 mac 173460 bytes_out 0 173460 bytes_in 0 173460 station_ip 83.123.156.64 173460 port 51 173460 unique_id port 173460 remote_ip 10.8.0.62 173461 username farhad2 173461 mac 173461 bytes_out 597722 173461 bytes_in 5585099 173461 station_ip 5.120.108.121 173461 port 50 173461 unique_id port 173461 remote_ip 10.8.0.146 173462 username aminvpn 173462 mac 173423 bytes_out 0 173423 bytes_in 0 173423 station_ip 113.203.74.84 173423 port 34 173423 unique_id port 173424 username hashtadani4 173424 mac 173424 bytes_out 0 173424 bytes_in 0 173424 station_ip 113.203.74.84 173424 port 47 173424 unique_id port 173424 remote_ip 10.8.0.22 173426 username aminvpn 173426 mac 173426 bytes_out 104702 173426 bytes_in 383504 173426 station_ip 83.122.79.122 173426 port 7 173426 unique_id port 173426 remote_ip 10.8.0.58 173427 username hashtadani4 173427 kill_reason Another user logged on this global unique id 173427 mac 173427 bytes_out 0 173427 bytes_in 0 173427 station_ip 113.203.74.84 173427 port 7 173427 unique_id port 173429 username aminvpn 173429 mac 173429 bytes_out 0 173429 bytes_in 0 173429 station_ip 83.122.197.11 173429 port 46 173429 unique_id port 173429 remote_ip 10.8.0.58 173430 username aminvpn 173430 mac 173430 bytes_out 0 173430 bytes_in 0 173430 station_ip 83.122.79.122 173430 port 48 173430 unique_id port 173430 remote_ip 10.8.0.58 173435 username aminvpn 173435 mac 173435 bytes_out 0 173435 bytes_in 0 173435 station_ip 83.122.79.122 173435 port 37 173435 unique_id port 173435 remote_ip 10.8.0.58 173438 username sekonji3 173438 mac 173438 bytes_out 17299 173438 bytes_in 18513 173438 station_ip 83.123.156.64 173438 port 22 173438 unique_id port 173438 remote_ip 10.8.0.62 173439 username aminvpn 173439 mac 173439 bytes_out 0 173439 bytes_in 0 173439 station_ip 83.122.79.122 173439 port 37 173439 unique_id port 173439 remote_ip 10.8.0.58 173444 username kalantary 173444 mac 173444 bytes_out 148419 173444 bytes_in 872863 173444 station_ip 83.122.143.254 173444 port 22 173444 unique_id port 173444 remote_ip 10.8.0.50 173446 username fezealinaghi 173446 mac 173446 bytes_out 30975 173446 bytes_in 39361 173446 station_ip 83.123.164.135 173446 port 51 173446 unique_id port 173446 remote_ip 10.8.0.202 173450 username khademi 173450 kill_reason Another user logged on this global unique id 173450 mac 173450 bytes_out 0 173450 bytes_in 0 173450 station_ip 37.129.12.135 173450 port 45 173450 unique_id port 173451 username aminvpn 173451 mac 173451 bytes_out 123592 173451 bytes_in 166729 173451 station_ip 83.122.79.122 173451 port 50 173451 unique_id port 173451 remote_ip 10.8.0.58 173455 username sekonji3 173455 mac 173455 bytes_out 25444 173455 bytes_in 355101 173455 station_ip 83.123.156.64 173455 port 14 173455 unique_id port 173455 remote_ip 10.8.0.62 173456 username tahmasebi 173456 kill_reason Maximum check online fails reached 173456 mac 173456 bytes_out 0 173456 bytes_in 0 173456 station_ip 5.119.56.25 173456 port 14 173456 unique_id port 173457 username sekonji3 173457 mac 173457 bytes_out 0 173457 bytes_in 0 173457 station_ip 83.123.156.64 173457 port 50 173457 unique_id port 173457 remote_ip 10.8.0.62 173458 username sekonji3 173458 mac 173458 bytes_out 0 173458 bytes_in 0 173458 station_ip 83.123.156.64 173458 port 50 173458 unique_id port 173458 remote_ip 10.8.0.62 173463 username aminvpn 173463 mac 173463 bytes_out 0 173463 bytes_in 0 173463 station_ip 5.119.94.158 173463 port 52 173463 unique_id port 173463 remote_ip 10.8.0.58 173465 username shadkam 173465 mac 173465 bytes_out 38483 173465 bytes_in 102665 173465 station_ip 37.129.183.196 173465 port 51 173465 unique_id port 173465 remote_ip 10.8.0.74 173466 username sekonji3 173466 mac 173466 bytes_out 0 173466 bytes_in 0 173466 station_ip 83.123.156.64 173466 port 22 173443 port 7 173443 unique_id port 173443 remote_ip 10.8.0.10 173447 username shadkam 173447 mac 173447 bytes_out 88024 173447 bytes_in 201177 173447 station_ip 83.122.51.204 173447 port 47 173447 unique_id port 173447 remote_ip 10.8.0.74 173448 username godarzi 173448 mac 173448 bytes_out 0 173448 bytes_in 0 173448 station_ip 5.120.27.239 173448 port 14 173448 unique_id port 173448 remote_ip 10.8.0.38 173449 username sekonji3 173449 mac 173449 bytes_out 42321 173449 bytes_in 109657 173449 station_ip 83.123.156.64 173449 port 37 173449 unique_id port 173449 remote_ip 10.8.0.62 173453 username tahmasebi 173453 mac 173453 bytes_out 0 173453 bytes_in 0 173453 station_ip 5.119.56.25 173453 port 22 173453 unique_id port 173453 remote_ip 10.8.0.126 173454 username tahmasebi 173454 mac 173454 bytes_out 0 173454 bytes_in 0 173454 station_ip 5.119.56.25 173454 port 47 173454 unique_id port 173454 remote_ip 10.8.0.126 173469 username tahmasebi 173469 mac 173469 bytes_out 12155693 173469 bytes_in 3747537 173469 station_ip 5.119.56.25 173469 port 48 173469 unique_id port 173469 remote_ip 10.8.0.126 173473 username nekheei 173473 mac 173473 bytes_out 1823679 173473 bytes_in 30588657 173473 station_ip 5.119.220.231 173473 port 51 173473 unique_id port 173473 remote_ip 10.8.0.242 173478 username nekheei 173478 mac 173478 bytes_out 0 173478 bytes_in 0 173478 station_ip 5.119.220.231 173478 port 53 173478 unique_id port 173478 remote_ip 10.8.0.242 173480 username jafari 173480 mac 173480 bytes_out 0 173480 bytes_in 0 173480 station_ip 94.24.95.154 173480 port 41 173480 unique_id port 173482 username shadkam 173482 mac 173482 bytes_out 2374 173482 bytes_in 4861 173482 station_ip 83.122.116.115 173482 port 41 173482 unique_id port 173482 remote_ip 10.8.0.74 173487 username farhad2 173487 mac 173487 bytes_out 1893193 173487 bytes_in 18066708 173487 station_ip 5.120.108.121 173487 port 7 173487 unique_id port 173487 remote_ip 10.8.0.146 173493 username aminvpn 173493 mac 173493 bytes_out 0 173493 bytes_in 0 173493 station_ip 5.119.94.158 173493 port 51 173493 unique_id port 173493 remote_ip 10.8.0.58 173494 username tahmasebi 173494 mac 173494 bytes_out 0 173494 bytes_in 0 173494 station_ip 5.119.56.25 173494 port 22 173494 unique_id port 173494 remote_ip 10.8.0.126 173497 username aminvpn 173497 mac 173497 bytes_out 0 173497 bytes_in 0 173497 station_ip 83.123.102.188 173497 port 22 173497 unique_id port 173497 remote_ip 10.8.0.58 173498 username aminvpn 173498 mac 173498 bytes_out 0 173498 bytes_in 0 173498 station_ip 83.122.253.48 173498 port 41 173498 unique_id port 173498 remote_ip 10.8.0.58 173502 username barzegar 173502 mac 173502 bytes_out 0 173502 bytes_in 0 173502 station_ip 5.119.187.175 173502 port 47 173502 unique_id port 173502 remote_ip 10.8.0.10 173505 username aminvpn 173505 mac 173505 bytes_out 0 173505 bytes_in 0 173505 station_ip 83.123.102.188 173505 port 22 173505 unique_id port 173505 remote_ip 10.8.0.58 173512 username farhad2 173512 mac 173512 bytes_out 1865768 173512 bytes_in 19189754 173512 station_ip 5.120.108.121 173512 port 45 173512 unique_id port 173512 remote_ip 10.8.0.146 173513 username farhad2 173513 mac 173513 bytes_out 0 173513 bytes_in 0 173513 station_ip 5.120.108.121 173513 port 45 173513 unique_id port 173513 remote_ip 10.8.0.146 173521 username tahmasebi 173521 mac 173521 bytes_out 7112 173462 bytes_out 158526 173462 bytes_in 556683 173462 station_ip 83.122.79.122 173462 port 22 173462 unique_id port 173462 remote_ip 10.8.0.58 173464 username sekonji3 173464 mac 173464 bytes_out 0 173464 bytes_in 0 173464 station_ip 83.123.156.64 173464 port 50 173464 unique_id port 173464 remote_ip 10.8.0.62 173472 username fezealinaghi 173472 mac 173472 bytes_out 3022 173472 bytes_in 5163 173472 station_ip 83.123.97.252 173472 port 7 173472 unique_id port 173472 remote_ip 10.8.0.202 173474 username nekheei 173474 mac 173474 bytes_out 65178 173474 bytes_in 148078 173474 station_ip 5.119.220.231 173474 port 48 173474 unique_id port 173474 remote_ip 10.8.0.242 173476 username aminvpn 173476 mac 173476 bytes_out 0 173476 bytes_in 0 173476 station_ip 5.119.94.158 173476 port 48 173476 unique_id port 173476 remote_ip 10.8.0.58 173477 username alirezazadeh 173477 unique_id port 173477 terminate_cause Lost-Carrier 173477 bytes_out 192586 173477 bytes_in 408107 173477 station_ip 5.119.18.227 173477 port 15728794 173477 nas_port_type Virtual 173477 remote_ip 5.5.5.215 173481 username tahmasebi 173481 mac 173481 bytes_out 49600 173481 bytes_in 265013 173481 station_ip 5.119.56.25 173481 port 51 173481 unique_id port 173481 remote_ip 10.8.0.126 173483 username milan 173483 kill_reason Another user logged on this global unique id 173483 mac 173483 bytes_out 0 173483 bytes_in 0 173483 station_ip 5.119.173.190 173483 port 6 173483 unique_id port 173485 username khademi 173485 mac 173485 bytes_out 0 173485 bytes_in 0 173485 station_ip 37.129.12.135 173485 port 45 173485 unique_id port 173488 username godarzi 173488 mac 173488 bytes_out 1628916 173488 bytes_in 10141366 173488 station_ip 5.120.27.239 173488 port 47 173488 unique_id port 173488 remote_ip 10.8.0.38 173499 username majidsarmast 173499 kill_reason Another user logged on this global unique id 173499 mac 173499 bytes_out 0 173499 bytes_in 0 173499 station_ip 86.57.98.69 173499 port 49 173499 unique_id port 173499 remote_ip 10.8.0.170 173500 username pourshad 173500 mac 173500 bytes_out 11320421 173500 bytes_in 37497372 173500 station_ip 5.120.203.248 173500 port 42 173500 unique_id port 173500 remote_ip 10.8.0.42 173503 username aminvpn 173503 mac 173503 bytes_out 46880 173503 bytes_in 76982 173503 station_ip 83.123.102.188 173503 port 22 173503 unique_id port 173503 remote_ip 10.8.0.58 173504 username aminvpn 173504 mac 173504 bytes_out 0 173504 bytes_in 0 173504 station_ip 83.122.253.48 173504 port 47 173504 unique_id port 173504 remote_ip 10.8.0.58 173506 username mirzaei 173496 remote_ip 10.8.0.230 173506 kill_reason Another user logged on this global unique id 173506 mac 173506 bytes_out 0 173506 bytes_in 0 173506 station_ip 5.120.58.130 173506 port 12 173506 unique_id port 173508 username barzegar 173508 mac 173508 bytes_out 0 173508 bytes_in 0 173508 station_ip 5.119.187.175 173508 port 52 173508 unique_id port 173508 remote_ip 10.8.0.10 173509 username aminvpn 173509 mac 173509 bytes_out 0 173509 bytes_in 0 173509 station_ip 83.123.102.188 173509 port 53 173509 unique_id port 173509 remote_ip 10.8.0.58 173511 username aminvpn 173511 mac 173511 bytes_out 0 173511 bytes_in 0 173511 station_ip 5.119.94.158 173511 port 52 173511 unique_id port 173511 remote_ip 10.8.0.58 173519 username arash 173519 mac 173519 bytes_out 1963142 173519 bytes_in 14569467 173519 station_ip 37.27.29.198 173519 port 46 173519 unique_id port 173519 remote_ip 10.8.0.70 173520 username aminvpn 173520 mac 173466 unique_id port 173466 remote_ip 10.8.0.62 173467 username forozandeh1 173467 mac 173467 bytes_out 952269 173467 bytes_in 5843115 173467 station_ip 113.203.77.36 173467 port 37 173467 unique_id port 173467 remote_ip 10.8.0.30 173468 username fezealinaghi 173468 mac 173468 bytes_out 1144477 173468 bytes_in 11169029 173468 station_ip 83.123.97.252 173468 port 7 173468 unique_id port 173468 remote_ip 10.8.0.202 173470 username barzegar 173470 mac 173470 bytes_out 0 173470 bytes_in 0 173470 station_ip 5.119.187.175 173470 port 7 173470 unique_id port 173470 remote_ip 10.8.0.10 173471 username vanila 173471 mac 173471 bytes_out 148577 173471 bytes_in 343426 173471 station_ip 83.123.32.167 173471 port 37 173471 unique_id port 173471 remote_ip 10.8.0.46 173475 username aminvpn 173475 mac 173475 bytes_out 149358 173475 bytes_in 630707 173475 station_ip 83.122.79.122 173475 port 22 173475 unique_id port 173475 remote_ip 10.8.0.58 173479 username shadkam 173479 mac 173479 bytes_out 5196 173479 bytes_in 7569 173479 station_ip 37.129.91.182 173479 port 52 173479 unique_id port 173479 remote_ip 10.8.0.74 173484 username sekonji3 173484 mac 173484 bytes_out 620446 173484 bytes_in 3799208 173484 station_ip 83.123.156.64 173484 port 50 173484 unique_id port 173484 remote_ip 10.8.0.62 173486 username nekheei 173486 mac 173486 bytes_out 369861 173486 bytes_in 5374254 173486 station_ip 5.119.220.231 173486 port 52 173486 unique_id port 173486 remote_ip 10.8.0.242 173489 username barzegar 173489 mac 173489 bytes_out 0 173489 bytes_in 0 173489 station_ip 5.119.187.175 173489 port 45 173489 unique_id port 173489 remote_ip 10.8.0.10 173490 username vanila 173490 mac 173490 bytes_out 256518 173490 bytes_in 1587501 173490 station_ip 83.123.32.167 173490 port 41 173490 unique_id port 173490 remote_ip 10.8.0.46 173491 username tahmasebi 173491 mac 173491 bytes_out 0 173491 bytes_in 0 173491 station_ip 5.119.56.25 173491 port 50 173491 unique_id port 173491 remote_ip 10.8.0.126 173492 username aminvpn 173492 mac 173492 bytes_out 167319 173492 bytes_in 542803 173492 station_ip 83.122.79.122 173492 port 22 173492 unique_id port 173492 remote_ip 10.8.0.58 173495 username vanila 173495 mac 173495 bytes_out 333720 173495 bytes_in 1890741 173495 station_ip 83.123.32.167 173495 port 41 173495 unique_id port 173495 remote_ip 10.8.0.46 173496 username hamid 173496 mac 173496 bytes_out 1961778 173496 bytes_in 13915424 173496 station_ip 37.129.250.167 173496 port 47 173496 unique_id port 173501 username milan 173501 kill_reason Another user logged on this global unique id 173501 mac 173501 bytes_out 0 173501 bytes_in 0 173501 station_ip 5.119.173.190 173501 port 6 173501 unique_id port 173507 username aminvpn 173507 mac 173507 bytes_out 0 173507 bytes_in 0 173507 station_ip 83.122.253.48 173507 port 51 173507 unique_id port 173507 remote_ip 10.8.0.58 173510 username aminvpn 173510 mac 173510 bytes_out 0 173510 bytes_in 0 173510 station_ip 83.122.253.48 173510 port 51 173510 unique_id port 173510 remote_ip 10.8.0.58 173514 username aminvpn 173514 mac 173514 bytes_out 0 173514 bytes_in 0 173514 station_ip 83.123.102.188 173514 port 51 173514 unique_id port 173514 remote_ip 10.8.0.58 173515 username aminvpn 173515 mac 173515 bytes_out 0 173515 bytes_in 0 173515 station_ip 83.122.253.48 173515 port 45 173515 unique_id port 173515 remote_ip 10.8.0.58 173516 username saeed9658 173516 mac 173516 bytes_out 113821 173516 bytes_in 320951 173516 station_ip 5.120.19.31 173516 port 42 173516 unique_id port 173516 remote_ip 10.8.0.154 173517 username aminvpn 173517 mac 173517 bytes_out 10120 173517 bytes_in 11122 173517 station_ip 83.123.102.188 173517 port 53 173517 unique_id port 173517 remote_ip 10.8.0.58 173518 username aminvpn 173518 mac 173518 bytes_out 0 173518 bytes_in 0 173518 station_ip 83.122.253.48 173518 port 42 173518 unique_id port 173518 remote_ip 10.8.0.58 173522 username aminvpn 173522 mac 173522 bytes_out 0 173522 bytes_in 0 173522 station_ip 83.122.253.48 173522 port 42 173522 unique_id port 173522 remote_ip 10.8.0.58 173524 username majidsarmast 173524 mac 173524 bytes_out 0 173524 bytes_in 0 173524 station_ip 86.57.98.69 173524 port 49 173524 unique_id port 173527 username fezealinaghi 173527 mac 173527 bytes_out 171523 173527 bytes_in 612069 173527 station_ip 83.123.97.252 173527 port 48 173527 unique_id port 173527 remote_ip 10.8.0.202 173529 username aminvpn 173529 mac 173529 bytes_out 5167 173529 bytes_in 9034 173529 station_ip 83.122.253.48 173529 port 22 173529 unique_id port 173529 remote_ip 10.8.0.58 173532 username kalantary 173532 mac 173532 bytes_out 1766778 173532 bytes_in 16860210 173532 station_ip 83.122.168.70 173532 port 41 173532 unique_id port 173532 remote_ip 10.8.0.50 173540 username aminvpn 173540 mac 173540 bytes_out 0 173540 bytes_in 0 173540 station_ip 83.122.253.48 173540 port 48 173540 unique_id port 173540 remote_ip 10.8.0.58 173550 username aminvpn 173550 mac 173550 bytes_out 0 173550 bytes_in 0 173550 station_ip 5.119.94.158 173550 port 22 173550 unique_id port 173550 remote_ip 10.8.0.58 173551 username aminvpn 173551 kill_reason Maximum check online fails reached 173551 mac 173551 bytes_out 0 173551 bytes_in 0 173551 station_ip 5.119.94.158 173551 port 47 173551 unique_id port 173553 username sekonji3 173553 mac 173553 bytes_out 0 173553 bytes_in 0 173553 station_ip 83.123.156.64 173553 port 22 173553 unique_id port 173553 remote_ip 10.8.0.62 173555 username aminvpn 173555 mac 173555 bytes_out 0 173555 bytes_in 0 173555 station_ip 83.122.253.48 173555 port 49 173555 unique_id port 173555 remote_ip 10.8.0.58 173562 username sedighe 173562 mac 173562 bytes_out 141266 173562 bytes_in 452252 173562 station_ip 37.129.7.232 173562 port 22 173562 unique_id port 173562 remote_ip 10.8.0.78 173564 username aminvpn 173564 mac 173564 bytes_out 83833 173564 bytes_in 104708 173564 station_ip 83.123.102.188 173564 port 49 173564 unique_id port 173564 remote_ip 10.8.0.58 173565 username aminvpn 173565 mac 173565 bytes_out 0 173565 bytes_in 0 173565 station_ip 83.122.253.48 173565 port 22 173565 unique_id port 173565 remote_ip 10.8.0.58 173566 username sekonji3 173566 mac 173566 bytes_out 0 173566 bytes_in 0 173566 station_ip 83.123.156.64 173566 port 45 173566 unique_id port 173566 remote_ip 10.8.0.62 173568 username tahmasebi 173568 mac 173568 bytes_out 0 173568 bytes_in 0 173568 station_ip 5.119.56.25 173568 port 49 173568 unique_id port 173568 remote_ip 10.8.0.126 173570 username aminvpn 173570 mac 173570 bytes_out 0 173570 bytes_in 0 173570 station_ip 5.119.94.158 173570 port 51 173570 unique_id port 173570 remote_ip 10.8.0.58 173574 username aminvpn 173574 mac 173574 bytes_out 0 173574 bytes_in 0 173574 station_ip 83.123.102.188 173520 bytes_out 0 173520 bytes_in 0 173520 station_ip 83.123.102.188 173520 port 53 173520 unique_id port 173520 remote_ip 10.8.0.58 173523 username godarzi 173523 mac 173523 bytes_out 869462 173523 bytes_in 2388008 173523 station_ip 5.120.27.239 173523 port 22 173523 unique_id port 173523 remote_ip 10.8.0.38 173525 username barzegar 173525 mac 173525 bytes_out 0 173525 bytes_in 0 173525 station_ip 5.119.187.175 173525 port 22 173525 unique_id port 173525 remote_ip 10.8.0.10 173526 username aminvpn 173526 mac 173526 bytes_out 18316 173526 bytes_in 27411 173526 station_ip 83.123.102.188 173526 port 51 173526 unique_id port 173526 remote_ip 10.8.0.58 173528 username pourshad 173528 mac 173528 bytes_out 41401 173528 bytes_in 66525 173528 station_ip 5.120.203.248 173528 port 47 173528 unique_id port 173528 remote_ip 10.8.0.42 173533 username farhad2 173533 mac 173533 bytes_out 1045772 173533 bytes_in 10578345 173533 station_ip 5.120.108.121 173533 port 52 173533 unique_id port 173533 remote_ip 10.8.0.146 173536 username tahmasebi 173536 mac 173536 bytes_out 4833 173536 bytes_in 7495 173536 station_ip 5.119.56.25 173536 port 46 173536 unique_id port 173536 remote_ip 10.8.0.126 173539 username barzegar 173539 mac 173539 bytes_out 0 173539 bytes_in 0 173539 station_ip 5.119.187.175 173539 port 46 173539 unique_id port 173539 remote_ip 10.8.0.10 173542 username aminvpn 173542 mac 173542 bytes_out 0 173542 bytes_in 0 173542 station_ip 5.125.37.26 173542 port 47 173542 unique_id port 173542 remote_ip 10.8.0.58 173546 username aminvpn 173546 mac 173546 bytes_out 0 173546 bytes_in 0 173546 station_ip 83.122.253.48 173546 port 22 173546 unique_id port 173546 remote_ip 10.8.0.58 173548 username aminvpn 173548 mac 173548 bytes_out 0 173548 bytes_in 0 173548 station_ip 83.123.102.188 173548 port 42 173548 unique_id port 173548 remote_ip 10.8.0.58 173552 username aminvpn 173552 mac 173552 bytes_out 0 173552 bytes_in 0 173552 station_ip 83.123.102.188 173552 port 22 173552 unique_id port 173552 remote_ip 10.8.0.58 173554 username barzegar 173554 mac 173554 bytes_out 0 173554 bytes_in 0 173554 station_ip 5.119.187.175 173554 port 42 173554 unique_id port 173554 remote_ip 10.8.0.10 173557 username aminvpn 173557 mac 173557 bytes_out 21922 173557 bytes_in 21286 173557 station_ip 83.123.102.188 173557 port 22 173557 unique_id port 173557 remote_ip 10.8.0.58 173558 username aminvpn 173558 mac 173558 bytes_out 0 173558 bytes_in 0 173558 station_ip 83.122.253.48 173558 port 46 173558 unique_id port 173558 remote_ip 10.8.0.58 173559 username vanila 173559 mac 173559 bytes_out 851890 173559 bytes_in 5498109 173559 station_ip 83.123.32.167 173559 port 45 173559 unique_id port 173559 remote_ip 10.8.0.46 173560 username sekonji3 173560 mac 173560 bytes_out 0 173560 bytes_in 0 173560 station_ip 83.123.156.64 173560 port 45 173560 unique_id port 173560 remote_ip 10.8.0.62 173563 username tahmasebi 173563 mac 173563 bytes_out 0 173563 bytes_in 0 173563 station_ip 5.119.56.25 173563 port 45 173563 unique_id port 173563 remote_ip 10.8.0.126 173571 username hashtadani4 173571 mac 173571 bytes_out 0 173571 bytes_in 0 173571 station_ip 83.122.244.32 173571 port 46 173571 unique_id port 173571 remote_ip 10.8.0.22 173573 username hashtadani4 173573 mac 173573 bytes_out 0 173573 bytes_in 0 173573 station_ip 83.122.244.32 173573 port 46 173573 unique_id port 173521 bytes_in 26605 173521 station_ip 5.119.56.25 173521 port 51 173521 unique_id port 173521 remote_ip 10.8.0.126 173530 username barzegar 173530 mac 173530 bytes_out 0 173530 bytes_in 0 173530 station_ip 5.119.187.175 173530 port 22 173530 unique_id port 173530 remote_ip 10.8.0.10 173531 username aminvpn 173531 mac 173531 bytes_out 26575 173531 bytes_in 41941 173531 station_ip 83.123.102.188 173531 port 48 173531 unique_id port 173531 remote_ip 10.8.0.58 173534 username shadkam 173534 mac 173534 bytes_out 50290 173534 bytes_in 496336 173534 station_ip 113.203.11.169 173534 port 47 173534 unique_id port 173534 remote_ip 10.8.0.74 173535 username aminvpn 173535 mac 173535 bytes_out 0 173535 bytes_in 0 173535 station_ip 83.122.253.48 173535 port 22 173535 unique_id port 173535 remote_ip 10.8.0.58 173537 username farhad2 173537 mac 173537 bytes_out 0 173537 bytes_in 0 173537 station_ip 5.120.108.121 173537 port 41 173537 unique_id port 173537 remote_ip 10.8.0.146 173538 username aminvpn 173538 mac 173538 bytes_out 205349 173538 bytes_in 2287023 173538 station_ip 83.123.102.188 173538 port 47 173538 unique_id port 173538 remote_ip 10.8.0.58 173541 username sekonji3 173541 mac 173541 bytes_out 1298027 173541 bytes_in 14241832 173541 station_ip 83.123.156.64 173541 port 7 173541 unique_id port 173541 remote_ip 10.8.0.62 173543 username farhad2 173543 mac 173543 bytes_out 82714 173543 bytes_in 1183244 173543 station_ip 5.120.108.121 173543 port 22 173543 unique_id port 173543 remote_ip 10.8.0.146 173544 username aminvpn 173544 mac 173544 bytes_out 0 173544 bytes_in 0 173544 station_ip 83.123.102.188 173544 port 7 173544 unique_id port 173544 remote_ip 10.8.0.58 173545 username fezealinaghi 173545 mac 173545 bytes_out 14681 173545 bytes_in 21823 173545 station_ip 83.123.97.252 173545 port 42 173545 unique_id port 173545 remote_ip 10.8.0.202 173547 username tahmasebi 173547 mac 173547 bytes_out 23087 173547 bytes_in 54224 173547 station_ip 5.119.56.25 173547 port 41 173547 unique_id port 173547 remote_ip 10.8.0.126 173549 username pourshad 173549 mac 173549 bytes_out 17790 173549 bytes_in 30951 173549 station_ip 5.120.203.248 173549 port 46 173549 unique_id port 173549 remote_ip 10.8.0.42 173556 username tahmasebi 173556 mac 173556 bytes_out 3035 173556 bytes_in 4996 173556 station_ip 5.119.56.25 173556 port 46 173556 unique_id port 173556 remote_ip 10.8.0.126 173561 username malekpoir 173561 kill_reason Another user logged on this global unique id 173561 mac 173561 bytes_out 0 173561 bytes_in 0 173561 station_ip 5.119.6.116 173561 port 38 173561 unique_id port 173567 username barzegar 173567 mac 173567 bytes_out 0 173567 bytes_in 0 173567 station_ip 5.119.187.175 173567 port 45 173567 unique_id port 173567 remote_ip 10.8.0.10 173569 username aminvpn 173569 mac 173569 bytes_out 80322 173569 bytes_in 81875 173569 station_ip 83.123.102.188 173569 port 46 173569 unique_id port 173569 remote_ip 10.8.0.58 173572 username tahmasebi 173572 mac 173572 bytes_out 15847 173572 bytes_in 34224 173572 station_ip 5.119.56.25 173572 port 49 173572 unique_id port 173572 remote_ip 10.8.0.126 173577 username pourshad 173577 mac 173577 bytes_out 1690190 173577 bytes_in 29125891 173577 station_ip 5.120.203.248 173577 port 41 173577 unique_id port 173577 remote_ip 10.8.0.42 173579 username pourshad 173579 mac 173579 bytes_out 1661 173579 bytes_in 3248 173579 station_ip 5.120.203.248 173573 remote_ip 10.8.0.22 173575 username aminvpn 173575 mac 173575 bytes_out 0 173575 bytes_in 0 173575 station_ip 83.122.253.48 173575 port 46 173575 unique_id port 173575 remote_ip 10.8.0.58 173582 username tahmasebi 173582 mac 173582 bytes_out 0 173582 bytes_in 0 173582 station_ip 5.119.56.25 173582 port 53 173582 unique_id port 173582 remote_ip 10.8.0.126 173584 username aminvpn 173584 mac 173584 bytes_out 10491 173584 bytes_in 13612 173584 station_ip 83.123.102.188 173584 port 51 173584 unique_id port 173584 remote_ip 10.8.0.58 173586 username aminvpn 173586 mac 173586 bytes_out 0 173586 bytes_in 0 173586 station_ip 83.122.253.48 173586 port 53 173586 unique_id port 173586 remote_ip 10.8.0.58 173587 username aminvpn 173587 mac 173587 bytes_out 0 173587 bytes_in 0 173587 station_ip 83.123.102.188 173587 port 12 173587 unique_id port 173587 remote_ip 10.8.0.58 173589 username barzegar 173589 mac 173589 bytes_out 0 173589 bytes_in 0 173589 station_ip 5.119.187.175 173589 port 12 173589 unique_id port 173589 remote_ip 10.8.0.10 173592 username aminvpn 173592 mac 173592 bytes_out 0 173592 bytes_in 0 173592 station_ip 83.122.253.48 173592 port 52 173592 unique_id port 173592 remote_ip 10.8.0.58 173596 username forozandeh1 173596 mac 173596 bytes_out 1568422 173596 bytes_in 12596783 173596 station_ip 83.122.125.8 173596 port 42 173596 unique_id port 173596 remote_ip 10.8.0.30 173597 username hashtadani4 173597 mac 173597 bytes_out 0 173597 bytes_in 0 173597 station_ip 83.122.244.32 173597 port 52 173597 unique_id port 173597 remote_ip 10.8.0.22 173603 username shadkam 173603 mac 173603 bytes_out 909666 173603 bytes_in 7353033 173603 station_ip 83.123.224.114 173603 port 42 173603 unique_id port 173603 remote_ip 10.8.0.74 173608 username tahmasebi 173608 mac 173608 bytes_out 10786 173608 bytes_in 17741 173608 station_ip 5.119.56.25 173608 port 51 173608 unique_id port 173608 remote_ip 10.8.0.126 173610 username barzegar 173610 mac 173610 bytes_out 0 173610 bytes_in 0 173610 station_ip 5.119.187.175 173610 port 54 173610 unique_id port 173610 remote_ip 10.8.0.10 173614 username hatami 173614 mac 173614 bytes_out 2444836 173614 bytes_in 25551183 173614 station_ip 151.235.119.152 173614 port 22 173614 unique_id port 173614 remote_ip 10.8.0.98 173620 username mirzaei 173620 mac 173620 bytes_out 27885 173620 bytes_in 92296 173620 station_ip 5.120.58.130 173620 port 22 173620 unique_id port 173620 remote_ip 10.8.0.106 173623 username moradi 173623 kill_reason Relative expiration date has reached 173623 mac 173623 bytes_out 0 173623 bytes_in 0 173623 station_ip 89.34.38.247 173623 port 52 173623 unique_id port 173625 username moradi 173625 kill_reason Relative expiration date has reached 173625 mac 173625 bytes_out 0 173625 bytes_in 0 173625 station_ip 89.32.108.181 173625 port 51 173625 unique_id port 173626 username moradi 173626 kill_reason Relative expiration date has reached 173626 mac 173626 bytes_out 0 173626 bytes_in 0 173626 station_ip 89.32.108.181 173626 port 55 173626 unique_id port 173629 username barzegar 173629 mac 173629 bytes_out 0 173629 bytes_in 0 173629 station_ip 5.119.187.175 173629 port 56 173629 unique_id port 173629 remote_ip 10.8.0.10 173632 username vanila 173632 mac 173632 bytes_out 351006 173632 bytes_in 632415 173632 station_ip 83.123.103.191 173632 port 46 173632 unique_id port 173632 remote_ip 10.8.0.46 173634 username ayobi 173641 username milan 173574 port 51 173574 unique_id port 173574 remote_ip 10.8.0.58 173576 username tahmasebi 173576 mac 173576 bytes_out 0 173576 bytes_in 0 173576 station_ip 5.119.56.25 173576 port 46 173576 unique_id port 173576 remote_ip 10.8.0.126 173578 username hashtadani4 173578 mac 173578 bytes_out 0 173578 bytes_in 0 173578 station_ip 83.122.244.32 173578 port 52 173578 unique_id port 173578 remote_ip 10.8.0.22 173583 username pourshad 173583 mac 173583 bytes_out 253634 173583 bytes_in 4146600 173583 station_ip 5.120.242.177 173583 port 46 173583 unique_id port 173583 remote_ip 10.8.0.42 173588 username sekonji3 173588 mac 173588 bytes_out 22464 173588 bytes_in 40130 173588 station_ip 83.123.156.64 173588 port 52 173588 unique_id port 173588 remote_ip 10.8.0.62 173590 username aminvpn 173590 mac 173590 bytes_out 0 173590 bytes_in 0 173590 station_ip 83.122.253.48 173590 port 51 173590 unique_id port 173590 remote_ip 10.8.0.58 173595 username hashtadani4 173595 mac 173595 bytes_out 0 173595 bytes_in 0 173595 station_ip 83.122.244.32 173595 port 52 173595 unique_id port 173595 remote_ip 10.8.0.22 173599 username farhad2 173599 kill_reason Another user logged on this global unique id 173599 mac 173599 bytes_out 0 173599 bytes_in 0 173599 station_ip 5.120.108.121 173599 port 7 173599 unique_id port 173599 remote_ip 10.8.0.146 173602 username mostafa_es78 173602 mac 173602 bytes_out 2225626 173602 bytes_in 23673483 173602 station_ip 37.129.192.73 173602 port 37 173602 unique_id port 173602 remote_ip 10.8.0.34 173605 username mirzaei 173605 mac 173605 bytes_out 81257 173605 bytes_in 181791 173605 station_ip 5.120.58.130 173605 port 53 173605 unique_id port 173605 remote_ip 10.8.0.106 173606 username hashtadani4 173606 kill_reason Maximum number of concurrent logins reached 173606 mac 173606 bytes_out 0 173606 bytes_in 0 173606 station_ip 83.122.244.32 173606 port 53 173606 unique_id port 173607 username hashtadani4 173607 kill_reason Maximum check online fails reached 173607 mac 173607 bytes_out 0 173607 bytes_in 0 173607 station_ip 83.122.244.32 173607 port 37 173607 unique_id port 173613 username aminvpn 173613 mac 173613 bytes_out 0 173613 bytes_in 0 173613 station_ip 5.119.94.158 173613 port 45 173613 unique_id port 173613 remote_ip 10.8.0.58 173615 username hamid 173615 kill_reason Another user logged on this global unique id 173615 mac 173615 bytes_out 0 173615 bytes_in 0 173615 station_ip 37.129.250.167 173615 port 49 173615 unique_id port 173615 remote_ip 10.8.0.230 173617 username yaghobi 173617 mac 173617 bytes_out 2690406 173617 bytes_in 27418825 173617 station_ip 113.203.106.23 173617 port 46 173617 unique_id port 173617 remote_ip 10.8.0.138 173622 username farhad2 173622 mac 173622 bytes_out 0 173622 bytes_in 0 173622 station_ip 5.120.108.121 173622 port 7 173622 unique_id port 173627 username sekonji3 173627 mac 173627 bytes_out 0 173627 bytes_in 0 173627 station_ip 83.123.156.64 173627 port 54 173627 unique_id port 173627 remote_ip 10.8.0.62 173628 username moradi 173628 kill_reason Relative expiration date has reached 173628 mac 173628 bytes_out 0 173628 bytes_in 0 173628 station_ip 89.32.102.170 173628 port 54 173628 unique_id port 173630 username aminvpn 173630 mac 173630 bytes_out 9082 173630 bytes_in 12328 173630 station_ip 83.122.253.48 173630 port 12 173630 unique_id port 173630 remote_ip 10.8.0.58 173631 username aminvpn 173631 mac 173631 bytes_out 0 173631 bytes_in 0 173631 station_ip 5.119.94.158 173579 port 46 173579 unique_id port 173579 remote_ip 10.8.0.42 173580 username aminvpn 173580 mac 173580 bytes_out 40697 173580 bytes_in 54540 173580 station_ip 83.123.102.188 173580 port 51 173580 unique_id port 173580 remote_ip 10.8.0.58 173581 username aminvpn 173581 mac 173581 bytes_out 0 173581 bytes_in 0 173581 station_ip 83.122.253.48 173581 port 53 173581 unique_id port 173581 remote_ip 10.8.0.58 173585 username mirzaei 173585 mac 173585 bytes_out 0 173585 bytes_in 0 173585 station_ip 5.120.58.130 173585 port 12 173585 unique_id port 173591 username aminvpn 173591 mac 173591 bytes_out 0 173591 bytes_in 0 173591 station_ip 83.123.102.188 173591 port 12 173591 unique_id port 173591 remote_ip 10.8.0.58 173593 username aminvpn 173593 mac 173593 bytes_out 0 173593 bytes_in 0 173593 station_ip 5.119.94.158 173593 port 12 173593 unique_id port 173593 remote_ip 10.8.0.58 173594 username hashtadani4 173594 mac 173594 bytes_out 2047 173594 bytes_in 4340 173594 station_ip 83.122.244.32 173594 port 51 173594 unique_id port 173594 remote_ip 10.8.0.22 173598 username tahmasebi 173598 mac 173598 bytes_out 15017 173598 bytes_in 63633 173598 station_ip 5.119.56.25 173598 port 51 173598 unique_id port 173598 remote_ip 10.8.0.126 173600 username malekpoir 173600 kill_reason Another user logged on this global unique id 173600 mac 173600 bytes_out 0 173600 bytes_in 0 173600 station_ip 5.119.6.116 173600 port 38 173600 unique_id port 173601 username hashtadani4 173601 mac 173601 bytes_out 0 173601 bytes_in 0 173601 station_ip 83.122.244.32 173601 port 54 173601 unique_id port 173601 remote_ip 10.8.0.22 173604 username hashtadani4 173604 mac 173604 bytes_out 0 173604 bytes_in 0 173604 station_ip 83.122.244.32 173604 port 42 173604 unique_id port 173604 remote_ip 10.8.0.22 173609 username hashtadani4 173609 kill_reason Maximum check online fails reached 173609 mac 173609 bytes_out 0 173609 bytes_in 0 173609 station_ip 83.122.244.32 173609 port 42 173609 unique_id port 173611 username rahim 173611 mac 173611 bytes_out 3496152 173611 bytes_in 30615251 173611 station_ip 5.120.55.192 173611 port 45 173611 unique_id port 173611 remote_ip 10.8.0.134 173612 username aminvpn 173612 mac 173612 bytes_out 49495 173612 bytes_in 57049 173612 station_ip 83.122.253.48 173612 port 12 173612 unique_id port 173612 remote_ip 10.8.0.58 173616 username pourshad 173616 mac 173616 bytes_out 23146 173616 bytes_in 30314 173616 station_ip 5.120.242.177 173616 port 52 173616 unique_id port 173616 remote_ip 10.8.0.42 173618 username moradi 173618 kill_reason Relative expiration date has reached 173618 mac 173618 bytes_out 0 173618 bytes_in 0 173618 station_ip 89.34.38.247 173618 port 45 173618 unique_id port 173619 username moradi 173619 kill_reason Relative expiration date has reached 173619 mac 173619 bytes_out 0 173619 bytes_in 0 173619 station_ip 89.34.38.247 173619 port 45 173619 unique_id port 173621 username moradi 173621 kill_reason Relative expiration date has reached 173621 mac 173621 bytes_out 0 173621 bytes_in 0 173621 station_ip 89.34.38.247 173621 port 22 173621 unique_id port 173624 username hoorieh 173624 mac 173624 bytes_out 1368444 173624 bytes_in 22707869 173624 station_ip 5.120.50.188 173624 port 51 173624 unique_id port 173624 remote_ip 10.8.0.114 173638 username aminvpn 173638 kill_reason Maximum check online fails reached 173638 mac 173638 bytes_out 0 173638 bytes_in 0 173638 station_ip 5.119.94.158 173638 port 38 173638 unique_id port 173631 port 56 173631 unique_id port 173631 remote_ip 10.8.0.58 173633 username pourshad 173633 mac 173633 bytes_out 142500 173633 bytes_in 88982 173633 station_ip 5.120.242.177 173633 port 52 173633 unique_id port 173633 remote_ip 10.8.0.42 173636 username hosseine 173636 kill_reason Another user logged on this global unique id 173636 mac 173636 bytes_out 0 173636 bytes_in 0 173636 station_ip 113.203.54.182 173636 port 16 173636 unique_id port 173636 remote_ip 10.8.0.54 173637 username aminvpn 173637 mac 173637 bytes_out 466296 173637 bytes_in 1584982 173637 station_ip 83.122.253.48 173637 port 12 173637 unique_id port 173637 remote_ip 10.8.0.58 173639 username aminvpn 173639 mac 173639 bytes_out 0 173639 bytes_in 0 173639 station_ip 5.119.94.158 173639 port 52 173639 unique_id port 173639 remote_ip 10.8.0.58 173643 username hatami 173643 mac 173643 bytes_out 1664926 173643 bytes_in 21339691 173643 station_ip 151.235.119.152 173643 port 55 173643 unique_id port 173643 remote_ip 10.8.0.98 173647 username shadkam 173647 kill_reason Another user logged on this global unique id 173647 mac 173647 bytes_out 0 173647 bytes_in 0 173647 station_ip 113.203.1.2 173647 port 54 173647 unique_id port 173647 remote_ip 10.8.0.74 173649 username sekonji3 173649 mac 173649 bytes_out 184537 173649 bytes_in 1001049 173649 station_ip 83.123.156.64 173649 port 53 173649 unique_id port 173649 remote_ip 10.8.0.62 173651 username aminvpn 173651 mac 173651 bytes_out 0 173651 bytes_in 0 173651 station_ip 5.119.94.158 173651 port 53 173651 unique_id port 173651 remote_ip 10.8.0.58 173652 username mirzaei 173652 mac 173652 bytes_out 111798 173652 bytes_in 172635 173652 station_ip 5.112.22.212 173652 port 16 173652 unique_id port 173652 remote_ip 10.8.0.106 173660 username mirzaei 173660 mac 173660 bytes_out 47546 173660 bytes_in 34148 173660 station_ip 5.112.22.212 173660 port 16 173660 unique_id port 173660 remote_ip 10.8.0.106 173663 username mirzaei 173663 mac 173663 bytes_out 4035 173663 bytes_in 5741 173663 station_ip 5.120.31.84 173663 port 16 173663 unique_id port 173663 remote_ip 10.8.0.106 173665 username alihajmalek 173665 mac 173665 bytes_out 0 173665 bytes_in 0 173665 station_ip 37.129.220.207 173665 port 7 173665 unique_id port 173667 username mirzaei 173667 mac 173667 bytes_out 2658 173667 bytes_in 4516 173667 station_ip 5.112.179.248 173667 port 16 173667 unique_id port 173667 remote_ip 10.8.0.106 173670 username barzegar 173670 mac 173670 bytes_out 0 173670 bytes_in 0 173670 station_ip 5.119.187.175 173670 port 16 173670 unique_id port 173670 remote_ip 10.8.0.10 173672 username farhad2 173672 mac 173672 bytes_out 0 173672 bytes_in 0 173672 station_ip 5.120.108.121 173672 port 55 173672 unique_id port 173673 username farhad2 173673 mac 173673 bytes_out 0 173673 bytes_in 0 173673 station_ip 5.120.108.121 173673 port 52 173673 unique_id port 173673 remote_ip 10.8.0.146 173681 username aminvpn 173681 mac 173681 bytes_out 135055 173681 bytes_in 187948 173681 station_ip 83.122.253.48 173681 port 7 173681 unique_id port 173681 remote_ip 10.8.0.58 173684 username mirzaei 173684 mac 173684 bytes_out 43774 173684 bytes_in 39508 173684 station_ip 5.113.210.13 173684 port 7 173684 unique_id port 173684 remote_ip 10.8.0.106 173686 username kordestani 173686 kill_reason Another user logged on this global unique id 173686 mac 173686 bytes_out 0 173686 bytes_in 0 173686 station_ip 151.235.124.222 173686 port 6 173634 kill_reason Another user logged on this global unique id 173634 mac 173634 bytes_out 0 173634 bytes_in 0 173634 station_ip 188.245.89.158 173634 port 36 173634 unique_id port 173635 username malekpoir 173635 mac 173635 bytes_out 0 173635 bytes_in 0 173635 station_ip 5.119.6.116 173635 port 38 173635 unique_id port 173640 username alihajmalek 173640 kill_reason Another user logged on this global unique id 173640 mac 173640 bytes_out 0 173640 bytes_in 0 173640 station_ip 37.129.220.207 173640 port 7 173640 unique_id port 173640 remote_ip 10.8.0.246 173644 username barzegar 173644 mac 173644 bytes_out 0 173644 bytes_in 0 173644 station_ip 5.119.187.175 173644 port 6 173644 unique_id port 173644 remote_ip 10.8.0.10 173653 username sekonji3 173653 kill_reason Maximum check online fails reached 173653 mac 173653 bytes_out 0 173653 bytes_in 0 173653 station_ip 83.123.156.64 173653 port 53 173653 unique_id port 173655 username alihajmalek 173655 kill_reason Another user logged on this global unique id 173655 mac 173655 bytes_out 0 173655 bytes_in 0 173655 station_ip 37.129.220.207 173655 port 7 173655 unique_id port 173657 username aminvpn 173657 mac 173657 bytes_out 205438 173657 bytes_in 291578 173657 station_ip 83.122.253.48 173657 port 52 173657 unique_id port 173657 remote_ip 10.8.0.58 173659 username jafari 173659 kill_reason Another user logged on this global unique id 173659 mac 173659 bytes_out 0 173659 bytes_in 0 173659 station_ip 94.24.95.154 173659 port 41 173659 unique_id port 173659 remote_ip 10.8.0.86 173662 username alihajmalek 173662 kill_reason Another user logged on this global unique id 173662 mac 173662 bytes_out 0 173662 bytes_in 0 173662 station_ip 37.129.220.207 173662 port 7 173662 unique_id port 173664 username aminvpn 173664 mac 173664 bytes_out 0 173664 bytes_in 0 173664 station_ip 5.119.94.158 173664 port 16 173664 unique_id port 173664 remote_ip 10.8.0.58 173668 username farhad2 173668 kill_reason Another user logged on this global unique id 173668 mac 173668 bytes_out 0 173668 bytes_in 0 173668 station_ip 5.120.108.121 173668 port 55 173668 unique_id port 173668 remote_ip 10.8.0.146 173669 username ahmadi1 173669 mac 173669 bytes_out 20461 173669 bytes_in 65877 173669 station_ip 83.122.131.186 173669 port 52 173669 unique_id port 173669 remote_ip 10.8.0.94 173671 username amin.saeedi 173671 unique_id port 173671 terminate_cause User-Request 173671 bytes_out 3889780 173671 bytes_in 34214681 173671 station_ip 31.59.34.125 173671 port 15728796 173671 nas_port_type Virtual 173671 remote_ip 5.5.5.213 173674 username mirzaei 173674 mac 173674 bytes_out 30143 173674 bytes_in 46049 173674 station_ip 5.120.64.42 173674 port 16 173674 unique_id port 173674 remote_ip 10.8.0.106 173676 username godarzi 173676 mac 173676 bytes_out 0 173676 bytes_in 0 173676 station_ip 5.120.27.239 173676 port 22 173676 unique_id port 173676 remote_ip 10.8.0.38 173678 username mirzaei 173678 mac 173678 bytes_out 15368 173678 bytes_in 14395 173678 station_ip 5.113.210.13 173678 port 16 173678 unique_id port 173678 remote_ip 10.8.0.106 173680 username farhad2 173680 mac 173680 bytes_out 1556260 173680 bytes_in 19668037 173680 station_ip 5.120.108.121 173680 port 52 173680 unique_id port 173680 remote_ip 10.8.0.146 173682 username aminvpn 173682 mac 173682 bytes_out 0 173682 bytes_in 0 173682 station_ip 5.119.94.158 173682 port 52 173682 unique_id port 173682 remote_ip 10.8.0.58 173683 username tahmasebi 173683 mac 173683 bytes_out 222649 173683 bytes_in 725958 173683 station_ip 5.119.56.25 173641 mac 173641 bytes_out 0 173641 bytes_in 0 173641 station_ip 5.119.173.190 173641 port 6 173641 unique_id port 173642 username fezealinaghi 173642 mac 173642 bytes_out 181167 173642 bytes_in 451607 173642 station_ip 83.122.77.112 173642 port 53 173642 unique_id port 173642 remote_ip 10.8.0.202 173645 username mirzaei 173645 mac 173645 bytes_out 509381 173645 bytes_in 1600508 173645 station_ip 5.120.58.130 173645 port 45 173645 unique_id port 173645 remote_ip 10.8.0.106 173646 username hosseine 173646 mac 173646 bytes_out 0 173646 bytes_in 0 173646 station_ip 113.203.54.182 173646 port 16 173646 unique_id port 173648 username alihajmalek 173648 kill_reason Another user logged on this global unique id 173648 mac 173648 bytes_out 0 173648 bytes_in 0 173648 station_ip 37.129.220.207 173648 port 7 173648 unique_id port 173650 username aminvpn 173650 mac 173650 bytes_out 585248 173650 bytes_in 933936 173650 station_ip 83.122.253.48 173650 port 52 173650 unique_id port 173650 remote_ip 10.8.0.58 173654 username barzegar 173654 mac 173654 bytes_out 0 173654 bytes_in 0 173654 station_ip 5.119.187.175 173654 port 57 173654 unique_id port 173654 remote_ip 10.8.0.10 173656 username hadibarzegar 173656 mac 173656 bytes_out 0 173656 bytes_in 0 173656 station_ip 37.129.156.58 173656 port 57 173656 unique_id port 173656 remote_ip 10.8.0.162 173658 username saeed9658 173658 mac 173658 bytes_out 4154151 173658 bytes_in 41417499 173658 station_ip 5.120.19.31 173658 port 22 173658 unique_id port 173658 remote_ip 10.8.0.154 173661 username houshang 173661 mac 173661 bytes_out 296583 173661 bytes_in 2767809 173661 station_ip 5.120.190.137 173661 port 22 173661 unique_id port 173661 remote_ip 10.8.0.82 173666 username shadkam 173666 mac 173666 bytes_out 0 173666 bytes_in 0 173666 station_ip 113.203.1.2 173666 port 54 173666 unique_id port 173675 username houshang 173675 mac 173675 bytes_out 1468364 173675 bytes_in 14187970 173675 station_ip 5.119.85.148 173675 port 22 173675 unique_id port 173675 remote_ip 10.8.0.82 173677 username tahmasebi 173677 mac 173677 bytes_out 20578541 173677 bytes_in 40495459 173677 station_ip 5.119.56.25 173677 port 51 173677 unique_id port 173677 remote_ip 10.8.0.126 173679 username milan 173679 kill_reason Another user logged on this global unique id 173679 mac 173679 bytes_out 0 173679 bytes_in 0 173679 station_ip 5.119.173.190 173679 port 12 173679 unique_id port 173679 remote_ip 10.8.0.182 173685 username barzegar 173685 mac 173685 bytes_out 0 173685 bytes_in 0 173685 station_ip 5.119.187.175 173685 port 16 173685 unique_id port 173685 remote_ip 10.8.0.10 173687 username aminvpn 173687 mac 173687 bytes_out 5727 173687 bytes_in 12189 173687 station_ip 83.122.253.48 173687 port 52 173687 unique_id port 173687 remote_ip 10.8.0.58 173688 username farhad2 173688 mac 173688 bytes_out 465028 173688 bytes_in 2635681 173688 station_ip 5.120.108.121 173688 port 51 173688 unique_id port 173688 remote_ip 10.8.0.146 173693 username tahmasebi 173693 mac 173693 bytes_out 131764 173693 bytes_in 539194 173693 station_ip 5.119.56.25 173693 port 7 173693 unique_id port 173693 remote_ip 10.8.0.126 173698 username kordestani 173698 mac 173698 bytes_out 0 173698 bytes_in 0 173698 station_ip 151.235.124.222 173698 port 6 173698 unique_id port 173699 username aminvpn 173699 mac 173699 bytes_out 48904 173699 bytes_in 359630 173699 station_ip 83.122.148.175 173699 port 16 173683 port 16 173683 unique_id port 173683 remote_ip 10.8.0.126 173689 username aminvpn 173689 mac 173689 bytes_out 0 173689 bytes_in 0 173689 station_ip 83.122.148.175 173689 port 54 173689 unique_id port 173689 remote_ip 10.8.0.58 173690 username aminvpn 173690 mac 173690 bytes_out 0 173690 bytes_in 0 173690 station_ip 83.122.253.48 173690 port 51 173690 unique_id port 173690 remote_ip 10.8.0.58 173691 username mirzaei 173691 mac 173691 bytes_out 17263 173691 bytes_in 21961 173691 station_ip 5.113.210.13 173691 port 16 173691 unique_id port 173691 remote_ip 10.8.0.106 173696 username aminvpn 173696 mac 173696 bytes_out 0 173696 bytes_in 0 173696 station_ip 83.122.253.48 173696 port 7 173696 unique_id port 173696 remote_ip 10.8.0.58 173701 username aminvpn 173701 mac 173701 bytes_out 0 173701 bytes_in 0 173701 station_ip 5.119.94.158 173701 port 6 173701 unique_id port 173701 remote_ip 10.8.0.58 173702 username shadkam 173702 kill_reason Another user logged on this global unique id 173702 mac 173702 bytes_out 0 173702 bytes_in 0 173702 station_ip 83.122.211.182 173702 port 22 173702 unique_id port 173702 remote_ip 10.8.0.74 173705 username hamid 173705 mac 173705 bytes_out 0 173705 bytes_in 0 173705 station_ip 37.129.250.167 173705 port 49 173705 unique_id port 173708 username ayobi 173708 mac 173708 bytes_out 0 173708 bytes_in 0 173708 station_ip 188.245.89.158 173708 port 36 173708 unique_id port 173711 username malekpoir 173711 mac 173711 bytes_out 1155715 173711 bytes_in 7460621 173711 station_ip 5.119.6.116 173711 port 7 173711 unique_id port 173711 remote_ip 10.8.0.18 173716 username aminvpn 173716 unique_id port 173716 terminate_cause Lost-Carrier 173716 bytes_out 4392074 173716 bytes_in 57430987 173716 station_ip 5.119.94.158 173716 port 15728795 173716 nas_port_type Virtual 173716 remote_ip 5.5.5.214 173718 username houshang 173718 mac 173718 bytes_out 26689 173718 bytes_in 60866 173718 station_ip 5.119.85.148 173718 port 22 173718 unique_id port 173718 remote_ip 10.8.0.82 173719 username fezealinaghi 173719 mac 173719 bytes_out 0 173719 bytes_in 0 173719 station_ip 83.122.77.112 173719 port 56 173719 unique_id port 173722 username rezaei 173722 mac 173722 bytes_out 4054283 173722 bytes_in 37866012 173722 station_ip 5.119.80.107 173722 port 48 173722 unique_id port 173722 remote_ip 10.8.0.198 173723 username farhad2 173723 kill_reason Another user logged on this global unique id 173723 mac 173723 bytes_out 0 173723 bytes_in 0 173723 station_ip 5.120.108.121 173723 port 46 173723 unique_id port 173723 remote_ip 10.8.0.146 173729 username jafari 173729 mac 173729 bytes_out 0 173729 bytes_in 0 173729 station_ip 94.24.95.154 173729 port 41 173729 unique_id port 173732 username sabaghnezhad 173732 mac 173732 bytes_out 1665440 173732 bytes_in 12949020 173732 station_ip 83.123.219.143 173732 port 50 173732 unique_id port 173732 remote_ip 10.8.0.66 173734 username aminvpn 173734 mac 173734 bytes_out 0 173734 bytes_in 0 173734 station_ip 5.119.94.158 173734 port 22 173734 unique_id port 173734 remote_ip 10.8.0.58 173737 username milan 173737 kill_reason Another user logged on this global unique id 173737 mac 173737 bytes_out 0 173737 bytes_in 0 173737 station_ip 5.119.173.190 173737 port 12 173737 unique_id port 173738 username barzegar 173738 mac 173738 bytes_out 0 173738 bytes_in 0 173738 station_ip 5.119.187.175 173738 port 3 173738 unique_id port 173738 remote_ip 10.8.0.10 173686 unique_id port 173686 remote_ip 10.8.0.130 173692 username pourshad 173692 mac 173692 bytes_out 1144870 173692 bytes_in 15128168 173692 station_ip 5.120.242.177 173692 port 46 173692 unique_id port 173692 remote_ip 10.8.0.42 173694 username mirzaei 173694 mac 173694 bytes_out 14156 173694 bytes_in 16662 173694 station_ip 5.114.232.191 173694 port 51 173694 unique_id port 173694 remote_ip 10.8.0.106 173695 username aminvpn 173695 mac 173695 bytes_out 255986 173695 bytes_in 2655083 173695 station_ip 83.122.148.175 173695 port 54 173695 unique_id port 173695 remote_ip 10.8.0.58 173697 username farhad2 173697 mac 173697 bytes_out 644787 173697 bytes_in 4578856 173697 station_ip 5.120.108.121 173697 port 52 173697 unique_id port 173697 remote_ip 10.8.0.146 173700 username tahmasebi 173700 mac 173700 bytes_out 0 173700 bytes_in 0 173700 station_ip 5.119.56.25 173700 port 7 173700 unique_id port 173700 remote_ip 10.8.0.126 173703 username tahmasebi 173703 mac 173703 bytes_out 0 173703 bytes_in 0 173703 station_ip 5.119.56.25 173703 port 6 173703 unique_id port 173703 remote_ip 10.8.0.126 173709 username mirzaei 173709 mac 173709 bytes_out 14952 173709 bytes_in 12899 173709 station_ip 5.114.99.244 173709 port 49 173709 unique_id port 173709 remote_ip 10.8.0.106 173710 username tahmasebi 173710 mac 173710 bytes_out 32037 173710 bytes_in 73680 173710 station_ip 5.119.56.25 173710 port 16 173710 unique_id port 173710 remote_ip 10.8.0.126 173714 username shadkam 173714 kill_reason Another user logged on this global unique id 173714 mac 173714 bytes_out 0 173714 bytes_in 0 173714 station_ip 83.122.211.182 173714 port 22 173714 unique_id port 173717 username shadkam 173717 mac 173717 bytes_out 0 173717 bytes_in 0 173717 station_ip 83.122.211.182 173717 port 22 173717 unique_id port 173721 username vanila 173721 mac 173721 bytes_out 1113280 173721 bytes_in 6047770 173721 station_ip 83.123.118.183 173721 port 6 173721 unique_id port 173721 remote_ip 10.8.0.46 173725 username barzegar 173725 mac 173725 bytes_out 0 173725 bytes_in 0 173725 station_ip 5.119.187.175 173725 port 22 173725 unique_id port 173725 remote_ip 10.8.0.10 173727 username aminvpn 173727 mac 173727 bytes_out 0 173727 bytes_in 0 173727 station_ip 5.119.94.158 173727 port 22 173727 unique_id port 173727 remote_ip 10.8.0.58 173730 username milan 173730 kill_reason Another user logged on this global unique id 173730 mac 173730 bytes_out 0 173730 bytes_in 0 173730 station_ip 5.119.173.190 173730 port 12 173730 unique_id port 173731 username barzegar 173731 mac 173731 bytes_out 0 173731 bytes_in 0 173731 station_ip 5.119.187.175 173731 port 3 173731 unique_id port 173731 remote_ip 10.8.0.10 173735 username aminvpn 173735 mac 173735 bytes_out 0 173735 bytes_in 0 173735 station_ip 5.119.94.158 173735 port 22 173735 unique_id port 173735 remote_ip 10.8.0.58 173741 username mirzaei 173741 mac 173741 bytes_out 368766 173741 bytes_in 1423219 173741 station_ip 5.120.129.130 173741 port 36 173741 unique_id port 173741 remote_ip 10.8.0.106 173743 username tahmasebi 173743 kill_reason Another user logged on this global unique id 173743 mac 173743 bytes_out 0 173743 bytes_in 0 173743 station_ip 5.119.56.25 173743 port 16 173743 unique_id port 173743 remote_ip 10.8.0.126 173744 username aminvpn 173744 mac 173744 bytes_out 0 173744 bytes_in 0 173744 station_ip 5.119.94.158 173744 port 22 173744 unique_id port 173744 remote_ip 10.8.0.58 173699 unique_id port 173699 remote_ip 10.8.0.58 173704 username tahmasebi 173704 mac 173704 bytes_out 0 173704 bytes_in 0 173704 station_ip 5.119.56.25 173704 port 6 173704 unique_id port 173704 remote_ip 10.8.0.126 173706 username barzegar 173706 mac 173706 bytes_out 0 173706 bytes_in 0 173706 station_ip 5.119.187.175 173706 port 7 173706 unique_id port 173706 remote_ip 10.8.0.10 173707 username fezealinaghi 173707 kill_reason Another user logged on this global unique id 173707 mac 173707 bytes_out 0 173707 bytes_in 0 173707 station_ip 83.122.77.112 173707 port 56 173707 unique_id port 173707 remote_ip 10.8.0.202 173712 username aminvpn 173712 mac 173712 bytes_out 0 173712 bytes_in 0 173712 station_ip 5.119.94.158 173712 port 36 173712 unique_id port 173712 remote_ip 10.8.0.58 173713 username tahmasebi 173713 mac 173713 bytes_out 0 173713 bytes_in 0 173713 station_ip 5.119.56.25 173713 port 7 173713 unique_id port 173713 remote_ip 10.8.0.126 173715 username barzegar 173715 mac 173715 bytes_out 0 173715 bytes_in 0 173715 station_ip 5.119.187.175 173715 port 36 173715 unique_id port 173715 remote_ip 10.8.0.10 173720 username aminvpn 173720 mac 173720 bytes_out 0 173720 bytes_in 0 173720 station_ip 5.119.94.158 173720 port 22 173720 unique_id port 173720 remote_ip 10.8.0.58 173724 username barzegar 173724 mac 173724 bytes_out 0 173724 bytes_in 0 173724 station_ip 5.119.187.175 173724 port 22 173724 unique_id port 173724 remote_ip 10.8.0.10 173726 username jafari 173726 kill_reason Another user logged on this global unique id 173726 mac 173726 bytes_out 0 173726 bytes_in 0 173726 station_ip 94.24.95.154 173726 port 41 173726 unique_id port 173728 username mehdizare 173728 mac 173728 bytes_out 932548 173728 bytes_in 2443615 173728 station_ip 37.129.151.92 173728 port 3 173728 unique_id port 173728 remote_ip 10.8.0.210 173733 username pourshad 173733 mac 173733 bytes_out 66409 173733 bytes_in 507021 173733 station_ip 5.120.242.177 173733 port 7 173733 unique_id port 173733 remote_ip 10.8.0.42 173736 username pourshad 173736 mac 173736 bytes_out 1809 173736 bytes_in 3599 173736 station_ip 5.120.242.177 173736 port 3 173736 unique_id port 173736 remote_ip 10.8.0.42 173740 username milan 173740 mac 173740 bytes_out 0 173740 bytes_in 0 173740 station_ip 5.119.173.190 173740 port 12 173740 unique_id port 173747 username mansour 173747 mac 173747 bytes_out 769787 173747 bytes_in 10049002 173747 station_ip 5.202.10.238 173747 port 12 173747 unique_id port 173747 remote_ip 10.8.0.206 173755 username tahmasebi 173755 mac 173755 bytes_out 0 173755 bytes_in 0 173755 station_ip 5.119.56.25 173755 port 16 173755 unique_id port 173757 username farhad2 173757 kill_reason Another user logged on this global unique id 173757 mac 173757 bytes_out 0 173757 bytes_in 0 173757 station_ip 5.120.108.121 173757 port 46 173757 unique_id port 173761 username hassan 173761 kill_reason Another user logged on this global unique id 173761 mac 173761 bytes_out 0 173761 bytes_in 0 173761 station_ip 5.120.144.53 173761 port 3 173761 unique_id port 173762 username aminvpn 173762 mac 173762 bytes_out 0 173762 bytes_in 0 173762 station_ip 5.119.94.158 173762 port 7 173762 unique_id port 173762 remote_ip 10.8.0.58 173767 username mirzaei 173767 mac 173767 bytes_out 0 173767 bytes_in 0 173767 station_ip 5.120.129.130 173767 port 12 173767 unique_id port 173767 remote_ip 10.8.0.106 173773 username hassan 173739 username hassan 173739 mac 173739 bytes_out 1393298 173739 bytes_in 15908736 173739 station_ip 37.27.9.91 173739 port 7 173739 unique_id port 173739 remote_ip 10.8.0.214 173742 username hassan 173742 kill_reason Another user logged on this global unique id 173742 mac 173742 bytes_out 0 173742 bytes_in 0 173742 station_ip 5.120.144.53 173742 port 3 173742 unique_id port 173742 remote_ip 10.8.0.214 173745 username mosi 173745 kill_reason Another user logged on this global unique id 173745 mac 173745 bytes_out 0 173745 bytes_in 0 173745 station_ip 151.235.78.217 173745 port 45 173745 unique_id port 173745 remote_ip 10.8.0.142 173748 username hassan 173748 kill_reason Another user logged on this global unique id 173748 mac 173748 bytes_out 0 173748 bytes_in 0 173748 station_ip 5.120.144.53 173748 port 3 173748 unique_id port 173750 username pourshad 173750 mac 173750 bytes_out 18578 173750 bytes_in 26926 173750 station_ip 5.120.242.177 173750 port 7 173750 unique_id port 173750 remote_ip 10.8.0.42 173754 username pourshad 173754 mac 173754 bytes_out 32141 173754 bytes_in 29473 173754 station_ip 5.120.242.177 173754 port 7 173754 unique_id port 173754 remote_ip 10.8.0.42 173760 username mosi 173760 mac 173760 bytes_out 0 173760 bytes_in 0 173760 station_ip 151.235.78.217 173760 port 45 173760 unique_id port 173764 username mirzaei 173764 mac 173764 bytes_out 277827 173764 bytes_in 1996109 173764 station_ip 5.120.129.130 173764 port 12 173764 unique_id port 173764 remote_ip 10.8.0.106 173766 username mirzaei 173766 mac 173766 bytes_out 32139 173766 bytes_in 38740 173766 station_ip 5.120.129.130 173766 port 7 173766 unique_id port 173766 remote_ip 10.8.0.106 173768 username mirzaei 173768 mac 173768 bytes_out 0 173768 bytes_in 0 173768 station_ip 5.120.129.130 173768 port 7 173768 unique_id port 173768 remote_ip 10.8.0.106 173769 username mirzaei 173769 mac 173769 bytes_out 0 173769 bytes_in 0 173769 station_ip 5.120.129.130 173769 port 12 173769 unique_id port 173769 remote_ip 10.8.0.106 173772 username mirzaei 173772 mac 173772 bytes_out 5524 173772 bytes_in 7409 173772 station_ip 5.120.129.130 173772 port 7 173772 unique_id port 173772 remote_ip 10.8.0.106 173774 username mirzaei 173774 mac 173774 bytes_out 1638 173774 bytes_in 3845 173774 station_ip 5.120.129.130 173774 port 12 173774 unique_id port 173774 remote_ip 10.8.0.106 173776 username aminvpn 173776 mac 173776 bytes_out 0 173776 bytes_in 0 173776 station_ip 5.119.94.158 173776 port 16 173776 unique_id port 173776 remote_ip 10.8.0.58 173778 username mirzaei 173778 mac 173778 bytes_out 8752 173778 bytes_in 13641 173778 station_ip 5.113.228.239 173778 port 12 173778 unique_id port 173778 remote_ip 10.8.0.106 173782 username pourshad 173782 mac 173782 bytes_out 4891 173782 bytes_in 9587 173782 station_ip 5.120.122.132 173782 port 3 173782 unique_id port 173782 remote_ip 10.8.0.42 173784 username mirzaei 173784 kill_reason Another user logged on this global unique id 173784 mac 173784 bytes_out 0 173784 bytes_in 0 173784 station_ip 5.119.116.102 173784 port 12 173784 unique_id port 173784 remote_ip 10.8.0.106 173785 username mirzaei 173785 kill_reason Another user logged on this global unique id 173785 mac 173785 bytes_out 0 173785 bytes_in 0 173785 station_ip 5.119.116.102 173785 port 12 173785 unique_id port 173789 username pourshad 173789 mac 173789 bytes_out 8725 173789 bytes_in 10987 173789 station_ip 5.120.158.14 173789 port 6 173746 username barzegar 173746 mac 173746 bytes_out 0 173746 bytes_in 0 173746 station_ip 5.119.187.175 173746 port 22 173746 unique_id port 173746 remote_ip 10.8.0.10 173749 username aminvpn 173749 mac 173749 bytes_out 0 173749 bytes_in 0 173749 station_ip 5.119.94.158 173749 port 12 173749 unique_id port 173749 remote_ip 10.8.0.58 173751 username pourshad 173751 mac 173751 bytes_out 3152 173751 bytes_in 4206 173751 station_ip 5.120.242.177 173751 port 12 173751 unique_id port 173751 remote_ip 10.8.0.42 173752 username barzegar 173752 mac 173752 bytes_out 0 173752 bytes_in 0 173752 station_ip 5.119.187.175 173752 port 12 173752 unique_id port 173752 remote_ip 10.8.0.10 173753 username mosi 173753 kill_reason Another user logged on this global unique id 173753 mac 173753 bytes_out 0 173753 bytes_in 0 173753 station_ip 151.235.78.217 173753 port 45 173753 unique_id port 173756 username aminvpn 173756 mac 173756 bytes_out 0 173756 bytes_in 0 173756 station_ip 5.119.94.158 173756 port 7 173756 unique_id port 173756 remote_ip 10.8.0.58 173758 username barzegar 173758 mac 173758 bytes_out 0 173758 bytes_in 0 173758 station_ip 5.119.187.175 173758 port 7 173758 unique_id port 173758 remote_ip 10.8.0.10 173759 username farhad2 173759 mac 173759 bytes_out 0 173759 bytes_in 0 173759 station_ip 5.120.108.121 173759 port 46 173759 unique_id port 173763 username aminvpn 173763 mac 173763 bytes_out 1644 173763 bytes_in 5248 173763 station_ip 5.119.94.158 173763 port 7 173763 unique_id port 173763 remote_ip 10.8.0.58 173765 username aminvpn 173765 mac 173765 bytes_out 0 173765 bytes_in 0 173765 station_ip 5.119.94.158 173765 port 12 173765 unique_id port 173765 remote_ip 10.8.0.58 173770 username mirzaei 173770 mac 173770 bytes_out 0 173770 bytes_in 0 173770 station_ip 5.120.129.130 173770 port 7 173770 unique_id port 173770 remote_ip 10.8.0.106 173771 username mirzaei 173771 mac 173771 bytes_out 1663 173771 bytes_in 3159 173771 station_ip 5.120.129.130 173771 port 12 173771 unique_id port 173771 remote_ip 10.8.0.106 173777 username mirzaei 173777 mac 173777 bytes_out 5180 173777 bytes_in 8077 173777 station_ip 5.120.129.130 173777 port 12 173777 unique_id port 173777 remote_ip 10.8.0.106 173788 username pourshad 173788 mac 173788 bytes_out 27381 173788 bytes_in 38664 173788 station_ip 5.120.122.132 173788 port 6 173788 unique_id port 173788 remote_ip 10.8.0.42 173792 username rezaei 173792 mac 173792 bytes_out 147217 173792 bytes_in 234084 173792 station_ip 5.119.80.107 173792 port 3 173792 unique_id port 173792 remote_ip 10.8.0.198 173793 username pourshad 173793 mac 173793 bytes_out 32783 173793 bytes_in 38737 173793 station_ip 5.120.158.14 173793 port 16 173793 unique_id port 173793 remote_ip 10.8.0.42 173797 username mehdizare 173797 mac 173797 bytes_out 39084 173797 bytes_in 109051 173797 station_ip 83.123.47.212 173797 port 3 173797 unique_id port 173797 remote_ip 10.8.0.210 173798 username mehdizare 173798 mac 173798 bytes_out 29361 173798 bytes_in 115046 173798 station_ip 83.123.47.212 173798 port 6 173798 unique_id port 173798 remote_ip 10.8.0.210 173802 username rezaei 173802 mac 173802 bytes_out 394171 173802 bytes_in 4646402 173802 station_ip 5.119.143.178 173802 port 3 173802 unique_id port 173802 remote_ip 10.8.0.198 173804 username mirzaei 173804 kill_reason Another user logged on this global unique id 173804 mac 173804 bytes_out 0 173773 kill_reason Another user logged on this global unique id 173773 mac 173773 bytes_out 0 173773 bytes_in 0 173773 station_ip 5.120.144.53 173773 port 3 173773 unique_id port 173775 username mirzaei 173775 kill_reason Maximum check online fails reached 173775 mac 173775 bytes_out 0 173775 bytes_in 0 173775 station_ip 5.120.129.130 173775 port 7 173775 unique_id port 173779 username mirzaei 173779 mac 173779 bytes_out 0 173779 bytes_in 0 173779 station_ip 5.119.116.102 173779 port 16 173779 unique_id port 173779 remote_ip 10.8.0.106 173780 username hassan 173780 mac 173780 bytes_out 0 173780 bytes_in 0 173780 station_ip 5.120.144.53 173780 port 3 173780 unique_id port 173781 username aminvpn 173781 mac 173781 bytes_out 0 173781 bytes_in 0 173781 station_ip 5.119.94.158 173781 port 3 173781 unique_id port 173781 remote_ip 10.8.0.58 173783 username rezaei 173783 mac 173783 bytes_out 145065 173783 bytes_in 169845 173783 station_ip 5.119.80.107 173783 port 6 173783 unique_id port 173783 remote_ip 10.8.0.198 173786 username mirzaei 173786 kill_reason Another user logged on this global unique id 173786 mac 173786 bytes_out 0 173786 bytes_in 0 173786 station_ip 5.119.116.102 173786 port 12 173786 unique_id port 173787 username mirzaei 173787 kill_reason Another user logged on this global unique id 173787 mac 173787 bytes_out 0 173787 bytes_in 0 173787 station_ip 5.119.116.102 173787 port 12 173787 unique_id port 173790 username pourshad 173790 mac 173790 bytes_out 2451 173790 bytes_in 5118 173790 station_ip 5.120.158.14 173790 port 6 173790 unique_id port 173790 remote_ip 10.8.0.42 173791 username pourshad 173791 mac 173791 bytes_out 183594 173791 bytes_in 341751 173791 station_ip 5.120.158.14 173791 port 6 173791 unique_id port 173791 remote_ip 10.8.0.42 173794 username mehdizare 173794 mac 173794 bytes_out 65541 173794 bytes_in 126829 173794 station_ip 83.123.104.13 173794 port 3 173794 unique_id port 173794 remote_ip 10.8.0.210 173799 username mehdizare 173799 mac 173799 bytes_out 404500 173799 bytes_in 8731834 173799 station_ip 83.123.47.212 173799 port 3 173799 unique_id port 173799 remote_ip 10.8.0.210 173800 username afarin1 173800 mac 173800 bytes_out 1013560 173800 bytes_in 13103878 173800 station_ip 151.238.255.178 173800 port 6 173800 unique_id port 173800 remote_ip 10.8.0.178 173803 username mehdizare 173803 mac 173803 bytes_out 10791 173803 bytes_in 13472 173803 station_ip 83.123.81.172 173803 port 3 173803 unique_id port 173803 remote_ip 10.8.0.210 173804 bytes_in 0 173804 station_ip 5.119.116.102 173804 port 12 173804 unique_id port 173805 username mehdizare 173805 mac 173805 bytes_out 199201 173805 bytes_in 86831 173805 station_ip 83.123.81.172 173805 port 3 173805 unique_id port 173805 remote_ip 10.8.0.210 173806 username mehdizare 173806 mac 173806 bytes_out 29517 173806 bytes_in 51460 173806 station_ip 83.123.81.172 173806 port 3 173806 unique_id port 173806 remote_ip 10.8.0.210 173807 username mosi 173807 mac 173807 bytes_out 12887 173807 bytes_in 20249 173807 station_ip 151.235.104.37 173807 port 6 173807 unique_id port 173807 remote_ip 10.8.0.142 173810 username meysam 173810 kill_reason Another user logged on this global unique id 173810 mac 173810 bytes_out 0 173810 bytes_in 0 173810 station_ip 188.158.51.170 173810 port 3 173810 unique_id port 173811 username mirzaei 173811 kill_reason Another user logged on this global unique id 173811 mac 173811 bytes_out 0 173811 bytes_in 0 173811 station_ip 5.119.116.102 173789 unique_id port 173789 remote_ip 10.8.0.42 173795 username mehdizare 173795 mac 173795 bytes_out 7887 173795 bytes_in 10478 173795 station_ip 83.123.47.212 173795 port 3 173795 unique_id port 173795 remote_ip 10.8.0.210 173796 username mehdizare 173796 mac 173796 bytes_out 8923 173796 bytes_in 25417 173796 station_ip 83.123.47.212 173796 port 3 173796 unique_id port 173796 remote_ip 10.8.0.210 173801 username mehdizare 173801 mac 173801 bytes_out 45097 173801 bytes_in 108877 173801 station_ip 83.123.81.172 173801 port 3 173801 unique_id port 173801 remote_ip 10.8.0.210 173808 username meysam 173808 kill_reason Another user logged on this global unique id 173808 mac 173808 bytes_out 0 173808 bytes_in 0 173808 station_ip 188.158.51.170 173808 port 3 173808 unique_id port 173808 remote_ip 10.8.0.158 173809 username godarzi 173809 mac 173809 bytes_out 1796506 173809 bytes_in 21172312 173809 station_ip 5.202.11.120 173809 port 6 173809 unique_id port 173809 remote_ip 10.8.0.38 173811 port 12 173811 unique_id port 173812 username mehdizare 173812 mac 173812 bytes_out 5676 173812 bytes_in 22140 173812 station_ip 83.123.71.65 173812 port 6 173812 unique_id port 173812 remote_ip 10.8.0.210 173813 username meysam 173813 mac 173813 bytes_out 0 173813 bytes_in 0 173813 station_ip 188.158.51.170 173813 port 3 173813 unique_id port 173814 username rezaei 173814 mac 173814 bytes_out 714831 173814 bytes_in 11126996 173814 station_ip 5.120.10.237 173814 port 22 173814 unique_id port 173814 remote_ip 10.8.0.198 173815 username rezaei 173815 mac 173815 bytes_out 4956 173815 bytes_in 11279 173815 station_ip 5.120.10.237 173815 port 3 173815 unique_id port 173815 remote_ip 10.8.0.198 173816 username rezaei 173816 mac 173816 bytes_out 5449 173816 bytes_in 10605 173816 station_ip 5.120.10.237 173816 port 3 173816 unique_id port 173816 remote_ip 10.8.0.198 173817 username hatami 173817 mac 173817 bytes_out 109826 173817 bytes_in 911493 173817 station_ip 94.241.176.4 173817 port 6 173817 unique_id port 173817 remote_ip 10.8.0.98 173818 username mosi 173818 mac 173818 bytes_out 839335 173818 bytes_in 5033048 173818 station_ip 151.235.104.37 173818 port 3 173818 unique_id port 173818 remote_ip 10.8.0.142 173819 username godarzi 173819 kill_reason Another user logged on this global unique id 173819 mac 173819 bytes_out 0 173819 bytes_in 0 173819 station_ip 5.202.25.208 173819 port 16 173819 unique_id port 173819 remote_ip 10.8.0.38 173820 username mirzaei 173820 mac 173820 bytes_out 0 173820 bytes_in 0 173820 station_ip 5.119.116.102 173820 port 12 173820 unique_id port 173821 username hamid.e 173821 unique_id port 173821 terminate_cause User-Request 173821 bytes_out 1191478 173821 bytes_in 7258543 173821 station_ip 37.27.23.252 173821 port 15728798 173821 nas_port_type Virtual 173821 remote_ip 5.5.5.209 173822 username mehdizare 173822 kill_reason Maximum check online fails reached 173822 mac 173822 bytes_out 0 173822 bytes_in 0 173822 station_ip 83.123.36.235 173822 port 12 173822 unique_id port 173823 username godarzi 173823 mac 173823 bytes_out 0 173823 bytes_in 0 173823 station_ip 5.202.25.208 173823 port 16 173823 unique_id port 173824 username godarzi 173824 mac 173824 bytes_out 91890 173824 bytes_in 105272 173824 station_ip 5.202.25.208 173824 port 16 173824 unique_id port 173824 remote_ip 10.8.0.38 173825 username godarzi 173825 mac 173825 bytes_out 156493 173825 bytes_in 995207 173825 station_ip 5.202.25.208 173825 port 16 173825 unique_id port 173825 remote_ip 10.8.0.38 173827 username meysam 173827 kill_reason Another user logged on this global unique id 173827 mac 173827 bytes_out 0 173827 bytes_in 0 173827 station_ip 188.159.254.137 173827 port 22 173827 unique_id port 173827 remote_ip 10.8.0.158 173829 username godarzi 173829 mac 173829 bytes_out 122270 173829 bytes_in 620643 173829 station_ip 5.202.25.208 173829 port 16 173829 unique_id port 173829 remote_ip 10.8.0.38 173833 username mirzaei 173833 mac 173833 bytes_out 4779820 173833 bytes_in 54904707 173833 station_ip 5.119.116.102 173833 port 6 173833 unique_id port 173833 remote_ip 10.8.0.106 173838 username godarzi 173838 mac 173838 bytes_out 1327548 173838 bytes_in 16036973 173838 station_ip 5.202.25.208 173838 port 6 173838 unique_id port 173838 remote_ip 10.8.0.38 173840 username rajaei 173840 mac 173840 bytes_out 0 173840 bytes_in 0 173840 station_ip 5.134.170.57 173840 port 22 173840 unique_id port 173841 username mirzaei 173841 mac 173841 bytes_out 28527 173841 bytes_in 51090 173841 station_ip 5.119.116.102 173841 port 6 173841 unique_id port 173841 remote_ip 10.8.0.106 173843 username godarzi 173843 mac 173843 bytes_out 552642 173843 bytes_in 4389158 173843 station_ip 5.202.25.208 173843 port 22 173843 unique_id port 173843 remote_ip 10.8.0.38 173845 username kordestani 173845 mac 173845 bytes_out 1290248 173845 bytes_in 13632209 173845 station_ip 151.235.83.84 173845 port 16 173845 unique_id port 173845 remote_ip 10.8.0.130 173846 username mirzaei 173846 mac 173846 bytes_out 81395 173846 bytes_in 102998 173846 station_ip 5.119.116.102 173846 port 41 173846 unique_id port 173846 remote_ip 10.8.0.106 173847 username meysam 173847 kill_reason Another user logged on this global unique id 173847 mac 173847 bytes_out 0 173847 bytes_in 0 173847 station_ip 188.159.254.137 173847 port 6 173847 unique_id port 173851 username mirzaei 173851 mac 173851 bytes_out 10734 173851 bytes_in 9960 173851 station_ip 5.119.116.102 173851 port 41 173851 unique_id port 173851 remote_ip 10.8.0.106 173853 username mirzaei 173853 mac 173853 bytes_out 6856 173853 bytes_in 7361 173853 station_ip 5.119.116.102 173853 port 16 173853 unique_id port 173853 remote_ip 10.8.0.106 173854 username mirzaei 173854 mac 173854 bytes_out 19528 173854 bytes_in 18495 173854 station_ip 5.119.116.102 173854 port 6 173854 unique_id port 173854 remote_ip 10.8.0.106 173858 username godarzi 173858 kill_reason Another user logged on this global unique id 173858 mac 173858 bytes_out 0 173858 bytes_in 0 173858 station_ip 5.202.25.208 173858 port 36 173858 unique_id port 173858 remote_ip 10.8.0.38 173865 username mirzaei 173865 mac 173865 bytes_out 63381 173865 bytes_in 93543 173865 station_ip 5.119.116.102 173865 port 16 173865 unique_id port 173865 remote_ip 10.8.0.106 173867 username mirzaei 173867 mac 173867 bytes_out 13302 173867 bytes_in 13155 173867 station_ip 5.119.116.102 173867 port 16 173867 unique_id port 173867 remote_ip 10.8.0.106 173870 username mosi 173870 mac 173870 bytes_out 9199 173870 bytes_in 4748 173870 station_ip 151.235.104.37 173870 port 6 173870 unique_id port 173870 remote_ip 10.8.0.142 173881 username mosi 173881 kill_reason Maximum number of concurrent logins reached 173881 mac 173881 bytes_out 0 173881 bytes_in 0 173881 station_ip 151.235.104.37 173881 port 6 173881 unique_id port 173895 username mirzaei 173895 mac 173895 bytes_out 11744 173895 bytes_in 20003 173826 username godarzi 173826 mac 173826 bytes_out 355696 173826 bytes_in 2116707 173826 station_ip 5.202.25.208 173826 port 16 173826 unique_id port 173826 remote_ip 10.8.0.38 173830 username kordestani 173830 mac 173830 bytes_out 1680507 173830 bytes_in 23608360 173830 station_ip 151.235.83.84 173830 port 36 173830 unique_id port 173830 remote_ip 10.8.0.130 173834 username meysam 173834 mac 173834 bytes_out 0 173834 bytes_in 0 173834 station_ip 188.159.254.137 173834 port 22 173834 unique_id port 173836 username rajaei 173836 kill_reason Another user logged on this global unique id 173836 mac 173836 bytes_out 0 173836 bytes_in 0 173836 station_ip 5.134.170.57 173836 port 22 173836 unique_id port 173836 remote_ip 10.8.0.218 173839 username mirzaei 173839 mac 173839 bytes_out 2687205 173839 bytes_in 28350661 173839 station_ip 5.119.116.102 173839 port 16 173839 unique_id port 173839 remote_ip 10.8.0.106 173848 username rajaei 173848 kill_reason Another user logged on this global unique id 173848 mac 173848 bytes_out 0 173848 bytes_in 0 173848 station_ip 5.134.170.57 173848 port 22 173848 unique_id port 173848 remote_ip 10.8.0.218 173855 username rajaei 173855 kill_reason Another user logged on this global unique id 173855 mac 173855 bytes_out 0 173855 bytes_in 0 173855 station_ip 5.134.170.57 173855 port 22 173855 unique_id port 173857 username mirzaei 173857 mac 173857 bytes_out 31674 173857 bytes_in 65139 173857 station_ip 5.119.116.102 173857 port 41 173857 unique_id port 173857 remote_ip 10.8.0.106 173860 username mirzaei 173860 mac 173860 bytes_out 9416 173860 bytes_in 9307 173860 station_ip 5.119.116.102 173860 port 16 173860 unique_id port 173860 remote_ip 10.8.0.106 173862 username mirzaei 173862 mac 173862 bytes_out 7162 173862 bytes_in 7536 173862 station_ip 5.119.116.102 173862 port 6 173862 unique_id port 173862 remote_ip 10.8.0.106 173863 username mosi 173863 mac 173863 bytes_out 0 173863 bytes_in 0 173863 station_ip 151.235.104.37 173863 port 6 173863 unique_id port 173863 remote_ip 10.8.0.142 173868 username mirzaei 173868 mac 173868 bytes_out 15072 173868 bytes_in 14555 173868 station_ip 5.119.116.102 173868 port 6 173868 unique_id port 173868 remote_ip 10.8.0.106 173869 username mirzaei 173869 mac 173869 bytes_out 9559 173869 bytes_in 10062 173869 station_ip 5.119.116.102 173869 port 16 173869 unique_id port 173869 remote_ip 10.8.0.106 173871 username mirzaei 173871 mac 173871 bytes_out 449503 173871 bytes_in 4140151 173871 station_ip 5.119.116.102 173871 port 16 173871 unique_id port 173871 remote_ip 10.8.0.106 173872 username mirzaei 173872 mac 173872 bytes_out 49724 173872 bytes_in 329463 173872 station_ip 5.119.116.102 173872 port 6 173872 unique_id port 173872 remote_ip 10.8.0.106 173877 username godarzi 173877 mac 173877 bytes_out 0 173877 bytes_in 0 173877 station_ip 5.202.25.208 173877 port 36 173877 unique_id port 173878 username mosi 173878 kill_reason Maximum number of concurrent logins reached 173878 mac 173878 bytes_out 0 173878 bytes_in 0 173878 station_ip 151.235.104.37 173878 port 41 173878 unique_id port 173879 username mosi 173879 kill_reason Maximum number of concurrent logins reached 173879 mac 173879 bytes_out 0 173879 bytes_in 0 173879 station_ip 151.235.104.37 173879 port 41 173879 unique_id port 173884 username mosi 173884 kill_reason Maximum check online fails reached 173884 mac 173884 bytes_out 0 173884 bytes_in 0 173884 station_ip 151.235.104.37 173884 port 36 173884 unique_id port 173828 username aminvpn 173828 mac 173828 bytes_out 2052408 173828 bytes_in 28992128 173828 station_ip 31.56.218.179 173828 port 3 173828 unique_id port 173828 remote_ip 10.8.0.58 173831 username meysam 173831 kill_reason Another user logged on this global unique id 173831 mac 173831 bytes_out 0 173831 bytes_in 0 173831 station_ip 188.159.254.137 173831 port 22 173831 unique_id port 173832 username amin.saeedi 173832 unique_id port 173832 terminate_cause User-Request 173832 bytes_out 127701 173832 bytes_in 854875 173832 station_ip 31.59.34.125 173832 port 15728799 173832 nas_port_type Virtual 173832 remote_ip 5.5.5.208 173835 username hosseine 173835 mac 173835 bytes_out 2155786 173835 bytes_in 18965934 173835 station_ip 37.156.54.144 173835 port 3 173835 unique_id port 173835 remote_ip 10.8.0.54 173837 username mehdizare 173837 kill_reason Maximum check online fails reached 173837 mac 173837 bytes_out 0 173837 bytes_in 0 173837 station_ip 83.123.9.139 173837 port 3 173837 unique_id port 173842 username mirzaei 173842 mac 173842 bytes_out 17825 173842 bytes_in 14858 173842 station_ip 5.119.116.102 173842 port 36 173842 unique_id port 173842 remote_ip 10.8.0.106 173844 username meysam 173844 kill_reason Another user logged on this global unique id 173844 mac 173844 bytes_out 0 173844 bytes_in 0 173844 station_ip 188.159.254.137 173844 port 6 173844 unique_id port 173844 remote_ip 10.8.0.158 173849 username mirzaei 173849 mac 173849 bytes_out 52998 173849 bytes_in 41730 173849 station_ip 5.119.116.102 173849 port 16 173849 unique_id port 173849 remote_ip 10.8.0.106 173850 username meysam 173850 mac 173850 bytes_out 0 173850 bytes_in 0 173850 station_ip 188.159.254.137 173850 port 6 173850 unique_id port 173852 username mirzaei 173852 mac 173852 bytes_out 21361 173852 bytes_in 31811 173852 station_ip 5.119.116.102 173852 port 6 173852 unique_id port 173852 remote_ip 10.8.0.106 173856 username hosseine 173856 mac 173856 bytes_out 816921 173856 bytes_in 4980496 173856 station_ip 5.202.97.155 173856 port 16 173856 unique_id port 173856 remote_ip 10.8.0.54 173859 username mirzaei 173859 mac 173859 bytes_out 28046 173859 bytes_in 21340 173859 station_ip 5.119.116.102 173859 port 6 173859 unique_id port 173859 remote_ip 10.8.0.106 173861 username rajaei 173861 mac 173861 bytes_out 0 173861 bytes_in 0 173861 station_ip 5.134.170.57 173861 port 22 173861 unique_id port 173864 username mosi 173864 mac 173864 bytes_out 2034 173864 bytes_in 4700 173864 station_ip 151.235.104.37 173864 port 22 173864 unique_id port 173864 remote_ip 10.8.0.142 173866 username mirzaei 173866 mac 173866 bytes_out 0 173866 bytes_in 0 173866 station_ip 5.119.116.102 173866 port 6 173866 unique_id port 173866 remote_ip 10.8.0.106 173873 username ebrahimpour3 173873 mac 173873 bytes_out 0 173873 bytes_in 0 173873 station_ip 46.225.209.194 173873 port 16 173873 unique_id port 173873 remote_ip 10.8.0.250 173874 username mirzaei 173874 mac 173874 bytes_out 22705 173874 bytes_in 70234 173874 station_ip 5.119.116.102 173874 port 6 173874 unique_id port 173874 remote_ip 10.8.0.106 173875 username mirzaei 173875 mac 173875 bytes_out 6552 173875 bytes_in 12022 173875 station_ip 5.119.116.102 173875 port 16 173875 unique_id port 173875 remote_ip 10.8.0.106 173876 username mirzaei 173876 mac 173876 bytes_out 38013 173876 bytes_in 61483 173876 station_ip 5.119.116.102 173876 port 6 173876 unique_id port 173876 remote_ip 10.8.0.106 173880 username mirzaei 173880 mac 173880 bytes_out 5494 173880 bytes_in 7909 173880 station_ip 5.119.116.102 173880 port 6 173880 unique_id port 173880 remote_ip 10.8.0.106 173882 username mosi 173882 mac 173882 bytes_out 2893 173882 bytes_in 4971 173882 station_ip 151.235.104.37 173882 port 22 173882 unique_id port 173882 remote_ip 10.8.0.142 173883 username mosi 173883 mac 173883 bytes_out 1661 173883 bytes_in 3159 173883 station_ip 151.235.104.37 173883 port 6 173883 unique_id port 173883 remote_ip 10.8.0.142 173886 username godarzi 173886 mac 173886 bytes_out 911597 173886 bytes_in 5769199 173886 station_ip 5.202.25.208 173886 port 22 173886 unique_id port 173886 remote_ip 10.8.0.38 173887 username mosi 173887 mac 173887 bytes_out 6598 173887 bytes_in 6363 173887 station_ip 151.235.104.37 173887 port 45 173887 unique_id port 173887 remote_ip 10.8.0.142 173888 username mirzaei 173888 mac 173888 bytes_out 665208 173888 bytes_in 7339364 173888 station_ip 5.119.116.102 173888 port 41 173888 unique_id port 173888 remote_ip 10.8.0.106 173890 username hosseine 173890 mac 173890 bytes_out 1442532 173890 bytes_in 19694780 173890 station_ip 37.156.54.144 173890 port 16 173890 unique_id port 173890 remote_ip 10.8.0.54 173891 username majidsarmast 173891 mac 173891 bytes_out 2590239 173891 bytes_in 26227126 173891 station_ip 91.251.185.7 173891 port 6 173891 unique_id port 173891 remote_ip 10.8.0.170 173892 username mirzaei 173892 mac 173892 bytes_out 7233 173892 bytes_in 8948 173892 station_ip 5.119.116.102 173892 port 41 173892 unique_id port 173892 remote_ip 10.8.0.106 173896 username mirzaei 173896 mac 173896 bytes_out 12421 173896 bytes_in 14350 173896 station_ip 5.119.116.102 173896 port 16 173896 unique_id port 173896 remote_ip 10.8.0.106 173900 username mirzaei 173900 mac 173900 bytes_out 750694 173900 bytes_in 8893258 173900 station_ip 5.119.116.102 173900 port 16 173900 unique_id port 173900 remote_ip 10.8.0.106 173901 username moradi 173901 kill_reason Relative expiration date has reached 173901 mac 173901 bytes_out 0 173901 bytes_in 0 173901 station_ip 89.47.64.105 173901 port 16 173901 unique_id port 173903 username godarzi 173903 kill_reason Another user logged on this global unique id 173903 mac 173903 bytes_out 0 173903 bytes_in 0 173903 station_ip 5.202.25.208 173903 port 22 173903 unique_id port 173903 remote_ip 10.8.0.38 173906 username mirzaei 173906 mac 173906 bytes_out 8714 173906 bytes_in 10444 173906 station_ip 5.119.116.102 173906 port 22 173906 unique_id port 173906 remote_ip 10.8.0.106 173907 username mosi 173907 mac 173907 bytes_out 0 173907 bytes_in 0 173907 station_ip 151.235.104.37 173907 port 22 173907 unique_id port 173907 remote_ip 10.8.0.142 173910 username mirzaei 173910 mac 173910 bytes_out 17660 173910 bytes_in 16960 173910 station_ip 5.119.116.102 173910 port 16 173910 unique_id port 173910 remote_ip 10.8.0.106 173913 username mirzaei 173913 mac 173913 bytes_out 4133 173913 bytes_in 6442 173913 station_ip 5.119.116.102 173913 port 22 173913 unique_id port 173913 remote_ip 10.8.0.106 173914 username mirzaei 173914 mac 173914 bytes_out 10219 173914 bytes_in 19893 173914 station_ip 5.119.116.102 173914 port 22 173914 unique_id port 173914 remote_ip 10.8.0.106 173922 username hosseine 173922 mac 173922 bytes_out 0 173922 bytes_in 0 173922 station_ip 37.156.54.144 173922 port 16 173922 unique_id port 173922 remote_ip 10.8.0.54 173931 username kordestani 173885 username pourshad 173885 mac 173885 bytes_out 151220 173885 bytes_in 595315 173885 station_ip 5.120.18.143 173885 port 6 173885 unique_id port 173885 remote_ip 10.8.0.42 173889 username mirzaei 173889 mac 173889 bytes_out 25677 173889 bytes_in 63234 173889 station_ip 5.119.116.102 173889 port 45 173889 unique_id port 173889 remote_ip 10.8.0.106 173893 username mirzaei 173893 mac 173893 bytes_out 15869 173893 bytes_in 23621 173893 station_ip 5.119.116.102 173893 port 6 173893 unique_id port 173893 remote_ip 10.8.0.106 173894 username mirzaei 173894 mac 173894 bytes_out 2762 173894 bytes_in 5302 173894 station_ip 5.119.116.102 173894 port 16 173894 unique_id port 173894 remote_ip 10.8.0.106 173897 username mosi 173897 mac 173897 bytes_out 2361 173897 bytes_in 4743 173897 station_ip 151.235.104.37 173897 port 41 173897 unique_id port 173897 remote_ip 10.8.0.142 173898 username mirzaei 173898 mac 173898 bytes_out 17842 173898 bytes_in 23190 173898 station_ip 5.119.116.102 173898 port 45 173898 unique_id port 173898 remote_ip 10.8.0.106 173899 username hosseine 173899 kill_reason Another user logged on this global unique id 173899 mac 173899 bytes_out 0 173899 bytes_in 0 173899 station_ip 37.156.54.144 173899 port 6 173899 unique_id port 173899 remote_ip 10.8.0.54 173902 username mirzaei 173902 mac 173902 bytes_out 10345 173902 bytes_in 19548 173902 station_ip 5.119.116.102 173902 port 41 173902 unique_id port 173902 remote_ip 10.8.0.106 173905 username mirzaei 173905 mac 173905 bytes_out 26266 173905 bytes_in 45176 173905 station_ip 5.119.116.102 173905 port 16 173905 unique_id port 173905 remote_ip 10.8.0.106 173908 username mirzaei 173908 mac 173908 bytes_out 24623 173908 bytes_in 45045 173908 station_ip 5.119.116.102 173908 port 16 173908 unique_id port 173908 remote_ip 10.8.0.106 173915 username mirzaei 173915 mac 173915 bytes_out 6124 173915 bytes_in 10865 173915 station_ip 5.119.116.102 173915 port 41 173915 unique_id port 173915 remote_ip 10.8.0.106 173916 username mirzaei 173916 mac 173916 bytes_out 20917 173916 bytes_in 18874 173916 station_ip 5.119.116.102 173916 port 22 173916 unique_id port 173916 remote_ip 10.8.0.106 173918 username kordestani 173918 kill_reason Another user logged on this global unique id 173918 mac 173918 bytes_out 0 173918 bytes_in 0 173918 station_ip 151.235.88.17 173918 port 16 173918 unique_id port 173918 remote_ip 10.8.0.130 173919 username mirzaei 173919 mac 173919 bytes_out 6395 173919 bytes_in 8461 173919 station_ip 5.119.116.102 173919 port 41 173919 unique_id port 173919 remote_ip 10.8.0.106 173920 username hosseine 173920 mac 173920 bytes_out 0 173920 bytes_in 0 173920 station_ip 37.156.54.144 173920 port 6 173920 unique_id port 173925 username tahmorsi 173925 mac 173925 bytes_out 2399720 173925 bytes_in 34038000 173925 station_ip 86.57.90.2 173925 port 6 173925 unique_id port 173925 remote_ip 10.8.0.238 173930 username mirzaei 173930 mac 173930 bytes_out 134562 173930 bytes_in 757576 173930 station_ip 5.119.116.102 173930 port 16 173930 unique_id port 173930 remote_ip 10.8.0.106 173934 username mirzaei 173934 mac 173934 bytes_out 15026 173934 bytes_in 22233 173934 station_ip 5.119.116.102 173934 port 22 173934 unique_id port 173934 remote_ip 10.8.0.106 173936 username hatami 173936 mac 173936 bytes_out 2445666 173936 bytes_in 24606057 173936 station_ip 151.235.82.17 173936 port 6 173936 unique_id port 173936 remote_ip 10.8.0.98 173895 station_ip 5.119.116.102 173895 port 6 173895 unique_id port 173895 remote_ip 10.8.0.106 173904 username godarzi 173904 mac 173904 bytes_out 0 173904 bytes_in 0 173904 station_ip 5.202.25.208 173904 port 22 173904 unique_id port 173909 username mirzaei 173909 mac 173909 bytes_out 2855 173909 bytes_in 4957 173909 station_ip 5.119.116.102 173909 port 16 173909 unique_id port 173909 remote_ip 10.8.0.106 173911 username mirzaei 173911 mac 173911 bytes_out 10096 173911 bytes_in 22550 173911 station_ip 5.119.116.102 173911 port 22 173911 unique_id port 173911 remote_ip 10.8.0.106 173912 username mirzaei 173912 mac 173912 bytes_out 15385 173912 bytes_in 62254 173912 station_ip 5.119.116.102 173912 port 16 173912 unique_id port 173912 remote_ip 10.8.0.106 173917 username mirzaei 173917 mac 173917 bytes_out 0 173917 bytes_in 0 173917 station_ip 5.119.116.102 173917 port 22 173917 unique_id port 173917 remote_ip 10.8.0.106 173921 username kordestani 173921 mac 173921 bytes_out 0 173921 bytes_in 0 173921 station_ip 151.235.88.17 173921 port 16 173921 unique_id port 173923 username mirzaei 173923 mac 173923 bytes_out 2148867 173923 bytes_in 25629217 173923 station_ip 5.119.116.102 173923 port 22 173923 unique_id port 173923 remote_ip 10.8.0.106 173924 username mirzaei 173924 mac 173924 bytes_out 1663243 173924 bytes_in 17761233 173924 station_ip 5.119.116.102 173924 port 16 173924 unique_id port 173924 remote_ip 10.8.0.106 173926 username mirzaei 173926 mac 173926 bytes_out 11379 173926 bytes_in 18740 173926 station_ip 5.119.116.102 173926 port 22 173926 unique_id port 173926 remote_ip 10.8.0.106 173927 username mirzaei 173927 mac 173927 bytes_out 12264 173927 bytes_in 20949 173927 station_ip 5.119.116.102 173927 port 6 173927 unique_id port 173927 remote_ip 10.8.0.106 173928 username aminvpn 173928 unique_id port 173928 terminate_cause Lost-Carrier 173928 bytes_out 1495788 173928 bytes_in 18047310 173928 station_ip 5.160.112.221 173928 port 15728801 173928 nas_port_type Virtual 173928 remote_ip 5.5.5.204 173929 username hosseine 173929 kill_reason Another user logged on this global unique id 173929 mac 173929 bytes_out 0 173929 bytes_in 0 173929 station_ip 37.156.54.144 173929 port 41 173929 unique_id port 173929 remote_ip 10.8.0.54 173937 username hosseine 173937 mac 173937 bytes_out 4096835 173937 bytes_in 29450421 173937 station_ip 94.24.16.120 173937 port 22 173937 unique_id port 173937 remote_ip 10.8.0.54 173940 username mirzaei 173940 mac 173940 bytes_out 88155 173940 bytes_in 163791 173940 station_ip 5.119.116.102 173940 port 45 173940 unique_id port 173940 remote_ip 10.8.0.106 173943 username kordestani 173943 mac 173943 bytes_out 1794618 173943 bytes_in 24640442 173943 station_ip 151.235.77.29 173943 port 6 173943 unique_id port 173943 remote_ip 10.8.0.130 173946 username mostafa_es78 173946 kill_reason Another user logged on this global unique id 173946 mac 173946 bytes_out 0 173946 bytes_in 0 173946 station_ip 178.236.35.96 173946 port 6 173946 unique_id port 173947 username mostafa_es78 173947 kill_reason Maximum check online fails reached 173947 mac 173947 bytes_out 0 173947 bytes_in 0 173947 station_ip 178.236.35.96 173947 port 6 173947 unique_id port 173948 username mostafa_es78 173948 mac 173948 bytes_out 0 173948 bytes_in 0 173948 station_ip 178.236.35.96 173948 port 6 173948 unique_id port 173948 remote_ip 10.8.0.34 173952 username mostafa_es78 173952 mac 173952 bytes_out 0 173952 bytes_in 0 173931 mac 173931 bytes_out 395226 173931 bytes_in 3502638 173931 station_ip 151.235.123.247 173931 port 22 173931 unique_id port 173931 remote_ip 10.8.0.130 173932 username hosseine 173932 kill_reason Another user logged on this global unique id 173932 mac 173932 bytes_out 0 173932 bytes_in 0 173932 station_ip 37.156.54.144 173932 port 41 173932 unique_id port 173933 username mirzaei 173933 mac 173933 bytes_out 3368 173933 bytes_in 5164 173933 station_ip 5.119.116.102 173933 port 16 173933 unique_id port 173933 remote_ip 10.8.0.106 173935 username hosseine 173935 mac 173935 bytes_out 0 173935 bytes_in 0 173935 station_ip 37.156.54.144 173935 port 41 173935 unique_id port 173938 username godarzi 173938 mac 173938 bytes_out 1281714 173938 bytes_in 15980399 173938 station_ip 5.202.25.208 173938 port 6 173938 unique_id port 173938 remote_ip 10.8.0.38 173941 username mirzaei 173941 mac 173941 bytes_out 4963 173941 bytes_in 6883 173941 station_ip 5.119.116.102 173941 port 16 173941 unique_id port 173941 remote_ip 10.8.0.106 173949 username mostafa_es78 173949 mac 173949 bytes_out 0 173949 bytes_in 0 173949 station_ip 178.236.35.96 173949 port 16 173949 unique_id port 173949 remote_ip 10.8.0.34 173950 username mostafa_es78 173950 mac 173950 bytes_out 0 173950 bytes_in 0 173950 station_ip 178.236.35.96 173950 port 6 173950 unique_id port 173950 remote_ip 10.8.0.34 173951 username mostafa_es78 173951 mac 173951 bytes_out 435551 173951 bytes_in 6906037 173951 station_ip 178.236.35.96 173951 port 16 173951 unique_id port 173951 remote_ip 10.8.0.34 173953 username mostafa_es78 173953 mac 173953 bytes_out 1579691 173953 bytes_in 17050813 173953 station_ip 178.236.35.96 173953 port 16 173953 unique_id port 173953 remote_ip 10.8.0.34 173954 username mostafa_es78 173954 mac 173954 bytes_out 189946 173954 bytes_in 1816736 173954 station_ip 178.236.35.96 173954 port 6 173954 unique_id port 173954 remote_ip 10.8.0.34 173955 username mostafa_es78 173955 mac 173955 bytes_out 174860 173955 bytes_in 945277 173955 station_ip 178.236.35.96 173955 port 6 173955 unique_id port 173955 remote_ip 10.8.0.34 173956 username mostafa_es78 173956 mac 173956 bytes_out 13450790 173956 bytes_in 759747 173956 station_ip 178.236.35.96 173956 port 6 173956 unique_id port 173956 remote_ip 10.8.0.34 173957 username mostafa_es78 173957 mac 173957 bytes_out 314772 173957 bytes_in 1514886 173957 station_ip 178.236.35.96 173957 port 6 173957 unique_id port 173957 remote_ip 10.8.0.34 173958 username aminvpn 173958 unique_id port 173958 terminate_cause User-Request 173958 bytes_out 281359 173958 bytes_in 1299388 173958 station_ip 109.125.128.116 173958 port 15728849 173958 nas_port_type Virtual 173958 remote_ip 5.5.5.202 173960 username hatami 173960 mac 173960 bytes_out 474151 173960 bytes_in 3721988 173960 station_ip 37.27.56.212 173960 port 6 173960 unique_id port 173960 remote_ip 10.8.0.98 173961 username aminvpn 173961 unique_id port 173961 terminate_cause User-Request 173961 bytes_out 0 173961 bytes_in 224 173961 station_ip 109.125.128.116 173961 port 15728870 173961 nas_port_type Virtual 173961 remote_ip 5.5.5.201 173962 username hatami 173962 mac 173962 bytes_out 1884 173962 bytes_in 3599 173962 station_ip 37.27.56.212 173962 port 6 173962 unique_id port 173962 remote_ip 10.8.0.98 173965 username moradi 173965 kill_reason Relative expiration date has reached 173965 mac 173965 bytes_out 0 173965 bytes_in 0 173965 station_ip 46.225.232.177 173965 port 6 173939 username houshang 173939 mac 173939 bytes_out 2716337 173939 bytes_in 27619903 173939 station_ip 5.119.191.189 173939 port 16 173939 unique_id port 173939 remote_ip 10.8.0.82 173942 username mirzaei 173942 mac 173942 bytes_out 6918 173942 bytes_in 7884 173942 station_ip 5.119.116.102 173942 port 22 173942 unique_id port 173942 remote_ip 10.8.0.106 173944 username mirzaei 173944 mac 173944 bytes_out 14265 173944 bytes_in 50130 173944 station_ip 5.119.116.102 173944 port 16 173944 unique_id port 173944 remote_ip 10.8.0.106 173945 username amin.saeedi 173945 unique_id port 173945 terminate_cause User-Request 173945 bytes_out 15671081 173945 bytes_in 481302502 173945 station_ip 31.59.34.125 173945 port 15728802 173945 nas_port_type Virtual 173945 remote_ip 5.5.5.203 173952 station_ip 178.236.35.96 173952 port 6 173952 unique_id port 173952 remote_ip 10.8.0.34 173959 username mostafa_es78 173959 mac 173959 bytes_out 2555994 173959 bytes_in 7291916 173959 station_ip 178.236.35.96 173959 port 6 173959 unique_id port 173959 remote_ip 10.8.0.34 173963 username moradi 173963 kill_reason Relative expiration date has reached 173963 mac 173963 bytes_out 0 173963 bytes_in 0 173963 station_ip 46.225.232.177 173963 port 6 173963 unique_id port 173964 username moradi 173964 kill_reason Relative expiration date has reached 173964 mac 173964 bytes_out 0 173964 bytes_in 0 173964 station_ip 46.225.232.177 173964 port 6 173964 unique_id port 173965 unique_id port 173966 username mosi 173966 kill_reason Another user logged on this global unique id 173966 mac 173966 bytes_out 0 173966 bytes_in 0 173966 station_ip 151.235.117.39 173966 port 6 173966 unique_id port 173966 remote_ip 10.8.0.142 173967 username meysam 173967 kill_reason Another user logged on this global unique id 173967 mac 173967 bytes_out 0 173967 bytes_in 0 173967 station_ip 188.158.48.153 173967 port 22 173967 unique_id port 173967 remote_ip 10.8.0.158 173968 username meysam 173968 mac 173968 bytes_out 0 173968 bytes_in 0 173968 station_ip 188.158.48.153 173968 port 22 173968 unique_id port 173969 username tahmorsi 173969 mac 173969 bytes_out 198203 173969 bytes_in 1368478 173969 station_ip 86.57.14.228 173969 port 22 173969 unique_id port 173969 remote_ip 10.8.0.238 173970 username meysam 173970 mac 173970 bytes_out 76278 173970 bytes_in 794107 173970 station_ip 188.158.48.153 173970 port 22 173970 unique_id port 173970 remote_ip 10.8.0.158 173971 username mosi 173971 kill_reason Another user logged on this global unique id 173971 mac 173971 bytes_out 0 173971 bytes_in 0 173971 station_ip 151.235.117.39 173971 port 6 173971 unique_id port 173972 username amin.saeedi 173972 unique_id port 173972 terminate_cause User-Request 173972 bytes_out 655635 173972 bytes_in 16550813 173972 station_ip 31.56.221.26 173972 port 15728880 173972 nas_port_type Virtual 173972 remote_ip 5.5.5.197 173973 username hamid.e 173973 unique_id port 173973 terminate_cause User-Request 173973 bytes_out 12393401 173973 bytes_in 153489831 173973 station_ip 37.27.10.118 173973 port 15728879 173973 nas_port_type Virtual 173973 remote_ip 5.5.5.199 173974 username mosi 173974 kill_reason Another user logged on this global unique id 173974 mac 173974 bytes_out 0 173974 bytes_in 0 173974 station_ip 151.235.117.39 173974 port 6 173974 unique_id port 173975 username hatami 173975 mac 173975 bytes_out 1617211 173975 bytes_in 14299832 173975 station_ip 151.235.83.52 173975 port 16 173975 unique_id port 173975 remote_ip 10.8.0.98 173976 username aminvpn 173976 unique_id port 173976 terminate_cause Lost-Carrier 173976 bytes_out 5701073 173976 bytes_in 89481512 173976 station_ip 5.113.12.149 173976 port 15728881 173976 nas_port_type Virtual 173976 remote_ip 5.5.5.195 173977 username aminvpn 173977 kill_reason Another user logged on this global unique id 173977 mac 173977 bytes_out 0 173977 bytes_in 0 173977 station_ip 5.113.12.149 173977 port 22 173977 unique_id port 173977 remote_ip 10.8.0.58 173980 username aminvpn 173980 kill_reason Another user logged on this global unique id 173980 mac 173980 bytes_out 0 173980 bytes_in 0 173980 station_ip 5.113.12.149 173980 port 16 173980 unique_id port 173980 remote_ip 10.8.0.58 173981 username moradi 173981 kill_reason Relative expiration date has reached 173981 mac 173981 bytes_out 0 173981 bytes_in 0 173981 station_ip 46.225.232.177 173981 port 22 173981 unique_id port 173982 username moradi 173982 kill_reason Relative expiration date has reached 173982 mac 173982 bytes_out 0 173982 bytes_in 0 173982 station_ip 46.225.232.177 173982 port 22 173982 unique_id port 173985 username aminvpn 173985 mac 173985 bytes_out 0 173985 bytes_in 0 173985 station_ip 5.113.12.149 173985 port 16 173985 unique_id port 173986 username aminvpn 173986 kill_reason Maximum check online fails reached 173986 mac 173986 bytes_out 0 173986 bytes_in 0 173986 station_ip 5.113.28.152 173986 port 6 173986 unique_id port 173988 username aminvpn 173988 mac 173988 bytes_out 0 173988 bytes_in 0 173988 station_ip 5.113.28.152 173988 port 22 173988 unique_id port 173988 remote_ip 10.8.0.58 173994 username aminvpn 173994 mac 173994 bytes_out 0 173994 bytes_in 0 173994 station_ip 5.113.28.152 173994 port 41 173994 unique_id port 173994 remote_ip 10.8.0.58 173995 username aminvpn 173995 mac 173995 bytes_out 0 173995 bytes_in 0 173995 station_ip 5.113.28.152 173995 port 45 173995 unique_id port 173995 remote_ip 10.8.0.58 173996 username amin.saeedi 173996 unique_id port 173996 terminate_cause User-Request 173996 bytes_out 1084178 173996 bytes_in 34683045 173996 station_ip 31.56.219.107 173996 port 15728886 173996 nas_port_type Virtual 173996 remote_ip 5.5.5.190 174002 username aminvpn 174002 mac 174002 bytes_out 0 174002 bytes_in 0 174002 station_ip 5.113.28.152 174002 port 45 174002 unique_id port 174002 remote_ip 10.8.0.58 174005 username aminvpn 174005 mac 174005 bytes_out 0 174005 bytes_in 0 174005 station_ip 5.113.28.152 174005 port 45 174005 unique_id port 174005 remote_ip 10.8.0.58 174007 username majidsarmast 174007 kill_reason Another user logged on this global unique id 174007 mac 174007 bytes_out 0 174007 bytes_in 0 174007 station_ip 86.57.72.77 174007 port 16 174007 unique_id port 174007 remote_ip 10.8.0.170 174009 username majidsarmast 174009 kill_reason Another user logged on this global unique id 174009 mac 174009 bytes_out 0 174009 bytes_in 0 174009 station_ip 86.57.72.77 174009 port 16 174009 unique_id port 174011 username godarzi 174011 kill_reason Another user logged on this global unique id 174011 mac 174011 bytes_out 0 174011 bytes_in 0 174011 station_ip 5.202.1.160 174011 port 41 174011 unique_id port 174014 username aminvpn 174014 mac 174014 bytes_out 0 174014 bytes_in 0 174014 station_ip 5.113.28.152 174014 port 16 174014 unique_id port 174014 remote_ip 10.8.0.58 174017 username aminvpn 174017 mac 174017 bytes_out 0 174017 bytes_in 0 174017 station_ip 5.113.28.152 174017 port 49 174017 unique_id port 174017 remote_ip 10.8.0.58 174023 username aminvpn 174023 mac 174023 bytes_out 0 174023 bytes_in 0 174023 station_ip 5.113.28.152 174023 port 48 174023 unique_id port 173978 username aminvpn 173978 mac 173978 bytes_out 0 173978 bytes_in 0 173978 station_ip 5.113.12.149 173978 port 22 173978 unique_id port 173983 username mosi 173983 kill_reason Another user logged on this global unique id 173983 mac 173983 bytes_out 0 173983 bytes_in 0 173983 station_ip 151.235.117.39 173983 port 6 173983 unique_id port 173990 username aminvpn 173990 mac 173990 bytes_out 0 173990 bytes_in 0 173990 station_ip 5.113.28.152 173990 port 22 173990 unique_id port 173990 remote_ip 10.8.0.58 173997 username godarzi 173997 kill_reason Another user logged on this global unique id 173997 mac 173997 bytes_out 0 173997 bytes_in 0 173997 station_ip 5.202.1.160 173997 port 41 173997 unique_id port 173997 remote_ip 10.8.0.38 173998 username amin.saeedi 173998 unique_id port 173998 terminate_cause User-Request 173998 bytes_out 212264 173998 bytes_in 5026286 173998 station_ip 31.56.219.107 173998 port 15728887 173998 nas_port_type Virtual 173998 remote_ip 5.5.5.189 174000 username aminvpn 174000 mac 174000 bytes_out 0 174000 bytes_in 0 174000 station_ip 5.113.28.152 174000 port 45 174000 unique_id port 174000 remote_ip 10.8.0.58 174003 username aminvpn 174003 mac 174003 bytes_out 0 174003 bytes_in 0 174003 station_ip 5.113.28.152 174003 port 45 174003 unique_id port 174003 remote_ip 10.8.0.58 174004 username aminvpn 174004 mac 174004 bytes_out 0 174004 bytes_in 0 174004 station_ip 5.113.28.152 174004 port 45 174004 unique_id port 174004 remote_ip 10.8.0.58 174013 username amin.saeedi 174013 unique_id port 174013 terminate_cause User-Request 174013 bytes_out 433124 174013 bytes_in 1692605 174013 station_ip 31.56.219.107 174013 port 15728890 174013 nas_port_type Virtual 174013 remote_ip 5.5.5.186 174015 username aminvpn 174015 kill_reason Maximum check online fails reached 174015 mac 174015 bytes_out 0 174015 bytes_in 0 174015 station_ip 5.113.28.152 174015 port 16 174015 unique_id port 174016 username arash 174016 kill_reason Maximum check online fails reached 174016 mac 174016 bytes_out 0 174016 bytes_in 0 174016 station_ip 37.27.14.205 174016 port 46 174016 unique_id port 174018 username aminvpn 174018 mac 174018 bytes_out 0 174018 bytes_in 0 174018 station_ip 5.113.28.152 174018 port 49 174018 unique_id port 174018 remote_ip 10.8.0.58 174020 username hatami 174020 mac 174020 bytes_out 3234745 174020 bytes_in 31878084 174020 station_ip 151.235.83.52 174020 port 22 174020 unique_id port 174020 remote_ip 10.8.0.98 174024 username aminvpn 174024 mac 174024 bytes_out 1644 174024 bytes_in 3842 174024 station_ip 5.113.28.152 174024 port 48 174024 unique_id port 174024 remote_ip 10.8.0.58 174026 username godarzi 174026 mac 174026 bytes_out 0 174026 bytes_in 0 174026 station_ip 5.202.1.160 174026 port 41 174026 unique_id port 174028 username amin.saeedi 174028 unique_id port 174028 terminate_cause User-Request 174028 bytes_out 6684347 174028 bytes_in 188244865 174028 station_ip 31.56.219.107 174028 port 15728892 174028 nas_port_type Virtual 174028 remote_ip 5.5.5.184 174034 username amin.saeedi 174034 unique_id port 174034 terminate_cause User-Request 174034 bytes_out 860000 174034 bytes_in 9351139 174034 station_ip 31.56.219.107 174034 port 15728894 174034 nas_port_type Virtual 174034 remote_ip 5.5.5.182 174037 username mosi 174037 kill_reason Another user logged on this global unique id 174037 mac 174037 bytes_out 0 174037 bytes_in 0 174037 station_ip 151.235.117.39 174037 port 49 174037 unique_id port 174039 username amin.saeedi 174039 unique_id port 174039 terminate_cause User-Request 173979 username mosi 173979 kill_reason Another user logged on this global unique id 173979 mac 173979 bytes_out 0 173979 bytes_in 0 173979 station_ip 151.235.117.39 173979 port 6 173979 unique_id port 173984 username mosi 173984 mac 173984 bytes_out 0 173984 bytes_in 0 173984 station_ip 151.235.117.39 173984 port 6 173984 unique_id port 173987 username moradi 173987 kill_reason Relative expiration date has reached 173987 mac 173987 bytes_out 0 173987 bytes_in 0 173987 station_ip 46.225.232.177 173987 port 16 173987 unique_id port 173989 username aminvpn 173989 mac 173989 bytes_out 0 173989 bytes_in 0 173989 station_ip 5.113.28.152 173989 port 22 173989 unique_id port 173989 remote_ip 10.8.0.58 173991 username aminvpn 173991 mac 173991 bytes_out 0 173991 bytes_in 0 173991 station_ip 5.113.28.152 173991 port 22 173991 unique_id port 173991 remote_ip 10.8.0.58 173992 username aminvpn 173992 mac 173992 bytes_out 0 173992 bytes_in 0 173992 station_ip 5.113.28.152 173992 port 41 173992 unique_id port 173992 remote_ip 10.8.0.58 173993 username hamid.e 173993 unique_id port 173993 terminate_cause User-Request 173993 bytes_out 6182502 173993 bytes_in 61533507 173993 station_ip 37.27.10.118 173993 port 15728884 173993 nas_port_type Virtual 173993 remote_ip 5.5.5.192 173999 username amin.saeedi 173999 unique_id port 173999 terminate_cause User-Request 173999 bytes_out 311225 173999 bytes_in 9481462 173999 station_ip 31.56.219.107 173999 port 15728888 173999 nas_port_type Virtual 173999 remote_ip 5.5.5.188 174001 username aminvpn 174001 mac 174001 bytes_out 0 174001 bytes_in 0 174001 station_ip 5.113.28.152 174001 port 45 174001 unique_id port 174001 remote_ip 10.8.0.58 174006 username aminvpn 174006 kill_reason Maximum check online fails reached 174006 mac 174006 bytes_out 0 174006 bytes_in 0 174006 station_ip 5.113.28.152 174006 port 45 174006 unique_id port 174008 username aminvpn 174008 mac 174008 bytes_out 0 174008 bytes_in 0 174008 station_ip 5.113.28.152 174008 port 46 174008 unique_id port 174008 remote_ip 10.8.0.58 174010 username amin.saeedi 174010 unique_id port 174010 terminate_cause User-Request 174010 bytes_out 1399410 174010 bytes_in 28294723 174010 station_ip 31.56.219.107 174010 port 15728889 174010 nas_port_type Virtual 174010 remote_ip 5.5.5.187 174012 username majidsarmast 174012 mac 174012 bytes_out 0 174012 bytes_in 0 174012 station_ip 86.57.72.77 174012 port 16 174012 unique_id port 174019 username arash 174019 mac 174019 bytes_out 582251 174019 bytes_in 5963249 174019 station_ip 37.27.14.205 174019 port 48 174019 unique_id port 174019 remote_ip 10.8.0.70 174021 username aminvpn 174021 kill_reason Maximum check online fails reached 174021 mac 174021 bytes_out 0 174021 bytes_in 0 174021 station_ip 5.113.28.152 174021 port 22 174021 unique_id port 174022 username aminvpn 174022 unique_id port 174022 terminate_cause User-Request 174022 bytes_out 15790567 174022 bytes_in 336982267 174022 station_ip 5.113.28.152 174022 port 15728883 174022 nas_port_type Virtual 174022 remote_ip 5.5.5.193 174027 username amin.saeedi 174027 unique_id port 174027 terminate_cause User-Request 174027 bytes_out 2477814 174027 bytes_in 69628837 174027 station_ip 31.56.219.107 174027 port 15728891 174027 nas_port_type Virtual 174027 remote_ip 5.5.5.185 174029 username amin.saeedi 174029 unique_id port 174029 terminate_cause User-Request 174029 bytes_out 468974 174029 bytes_in 4036784 174029 station_ip 31.56.219.107 174029 port 15728893 174029 nas_port_type Virtual 174029 remote_ip 5.5.5.183 174030 username mansour 174030 mac 174023 remote_ip 10.8.0.58 174025 username hajghani 174025 mac 174025 bytes_out 304099 174025 bytes_in 2709670 174025 station_ip 46.225.232.177 174025 port 48 174025 unique_id port 174025 remote_ip 10.8.0.102 174033 username mosi 174033 kill_reason Another user logged on this global unique id 174033 mac 174033 bytes_out 0 174033 bytes_in 0 174033 station_ip 151.235.117.39 174033 port 49 174033 unique_id port 174033 remote_ip 10.8.0.142 174036 username amin.saeedi 174036 unique_id port 174036 terminate_cause User-Request 174036 bytes_out 488597 174036 bytes_in 6376314 174036 station_ip 31.56.219.107 174036 port 15728895 174036 nas_port_type Virtual 174036 remote_ip 5.5.5.181 174040 username hatami 174040 mac 174040 bytes_out 979386 174040 bytes_in 9445438 174040 station_ip 151.235.83.52 174040 port 41 174040 unique_id port 174040 remote_ip 10.8.0.98 174045 username godarzi 174045 mac 174045 bytes_out 0 174045 bytes_in 0 174045 station_ip 5.202.1.160 174045 port 48 174045 unique_id port 174045 remote_ip 10.8.0.38 174050 username amin.saeedi 174050 unique_id port 174050 terminate_cause User-Request 174050 bytes_out 8428596 174050 bytes_in 282465722 174050 station_ip 31.56.219.107 174050 port 15728901 174050 nas_port_type Virtual 174050 remote_ip 5.5.5.175 174051 username aminvpn 174051 unique_id port 174051 terminate_cause User-Request 174051 bytes_out 3837102 174051 bytes_in 77163040 174051 station_ip 5.113.28.152 174051 port 15728896 174051 nas_port_type Virtual 174051 remote_ip 5.5.5.180 174052 username amin.saeedi 174052 unique_id port 174052 terminate_cause User-Request 174052 bytes_out 618242 174052 bytes_in 6905576 174052 station_ip 31.56.219.107 174052 port 15728902 174052 nas_port_type Virtual 174052 remote_ip 5.5.5.174 174059 username aminvpn 174059 mac 174059 bytes_out 0 174059 bytes_in 0 174059 station_ip 5.113.28.152 174059 port 41 174059 unique_id port 174059 remote_ip 10.8.0.58 174060 username aminvpn 174060 mac 174060 bytes_out 0 174060 bytes_in 0 174060 station_ip 5.113.28.152 174060 port 48 174060 unique_id port 174060 remote_ip 10.8.0.58 174070 username amin.saeedi 174070 unique_id port 174070 terminate_cause User-Request 174070 bytes_out 50875 174070 bytes_in 59174 174070 station_ip 31.56.219.107 174070 port 15728903 174070 nas_port_type Virtual 174070 remote_ip 5.5.5.173 174075 username aminvpn 174075 mac 174075 bytes_out 0 174075 bytes_in 0 174075 station_ip 5.113.28.152 174075 port 48 174075 unique_id port 174075 remote_ip 10.8.0.58 174076 username aminvpn 174076 mac 174076 bytes_out 0 174076 bytes_in 0 174076 station_ip 5.113.28.152 174076 port 41 174076 unique_id port 174076 remote_ip 10.8.0.58 174079 username aminvpn 174079 mac 174079 bytes_out 0 174079 bytes_in 0 174079 station_ip 5.113.28.152 174079 port 48 174079 unique_id port 174079 remote_ip 10.8.0.58 174081 username aminvpn 174081 mac 174081 bytes_out 0 174081 bytes_in 0 174081 station_ip 5.113.28.152 174081 port 48 174081 unique_id port 174081 remote_ip 10.8.0.58 174082 username aminvpn 174082 mac 174082 bytes_out 0 174082 bytes_in 0 174082 station_ip 5.113.28.152 174082 port 41 174082 unique_id port 174082 remote_ip 10.8.0.58 174083 username aminvpn 174083 mac 174083 bytes_out 0 174083 bytes_in 0 174083 station_ip 5.113.28.152 174083 port 48 174083 unique_id port 174083 remote_ip 10.8.0.58 174085 username aminvpn 174085 mac 174085 bytes_out 0 174085 bytes_in 0 174085 station_ip 5.113.28.152 174085 port 48 174085 unique_id port 174085 remote_ip 10.8.0.58 174091 username aminvpn 174030 bytes_out 1132580 174030 bytes_in 13257013 174030 station_ip 45.84.157.42 174030 port 48 174030 unique_id port 174030 remote_ip 10.8.0.206 174031 username godarzi 174031 mac 174031 bytes_out 3094322 174031 bytes_in 15179024 174031 station_ip 5.202.1.160 174031 port 41 174031 unique_id port 174031 remote_ip 10.8.0.38 174032 username godarzi 174032 mac 174032 bytes_out 446564 174032 bytes_in 5433460 174032 station_ip 5.202.1.160 174032 port 41 174032 unique_id port 174032 remote_ip 10.8.0.38 174035 username godarzi 174035 mac 174035 bytes_out 77325 174035 bytes_in 143104 174035 station_ip 5.202.1.160 174035 port 48 174035 unique_id port 174035 remote_ip 10.8.0.38 174038 username godarzi 174038 mac 174038 bytes_out 0 174038 bytes_in 0 174038 station_ip 5.202.1.160 174038 port 48 174038 unique_id port 174038 remote_ip 10.8.0.38 174042 username mosi 174042 kill_reason Another user logged on this global unique id 174042 mac 174042 bytes_out 0 174042 bytes_in 0 174042 station_ip 151.235.117.39 174042 port 49 174042 unique_id port 174043 username amin.saeedi 174043 unique_id port 174043 terminate_cause User-Request 174043 bytes_out 89337 174043 bytes_in 209396 174043 station_ip 31.56.219.107 174043 port 15728898 174043 nas_port_type Virtual 174043 remote_ip 5.5.5.178 174044 username meysam 174044 mac 174044 bytes_out 0 174044 bytes_in 0 174044 station_ip 188.159.252.243 174044 port 41 174044 unique_id port 174044 remote_ip 10.8.0.158 174047 username amin.saeedi 174047 unique_id port 174047 terminate_cause User-Request 174047 bytes_out 1348523 174047 bytes_in 13966601 174047 station_ip 31.56.219.107 174047 port 15728899 174047 nas_port_type Virtual 174047 remote_ip 5.5.5.177 174048 username jamali 174048 kill_reason Relative expiration date has reached 174048 mac 174048 bytes_out 0 174048 bytes_in 0 174048 station_ip 151.235.118.59 174048 port 41 174048 unique_id port 174054 username aminvpn 174054 mac 174054 bytes_out 0 174054 bytes_in 0 174054 station_ip 5.113.28.152 174054 port 48 174054 unique_id port 174054 remote_ip 10.8.0.58 174055 username aminvpn 174055 mac 174055 bytes_out 0 174055 bytes_in 0 174055 station_ip 5.113.28.152 174055 port 41 174055 unique_id port 174055 remote_ip 10.8.0.58 174057 username aminvpn 174057 mac 174057 bytes_out 0 174057 bytes_in 0 174057 station_ip 5.113.28.152 174057 port 41 174057 unique_id port 174057 remote_ip 10.8.0.58 174058 username aminvpn 174058 mac 174058 bytes_out 0 174058 bytes_in 0 174058 station_ip 5.113.28.152 174058 port 48 174058 unique_id port 174058 remote_ip 10.8.0.58 174064 username aminvpn 174064 mac 174064 bytes_out 0 174064 bytes_in 0 174064 station_ip 5.113.28.152 174064 port 48 174064 unique_id port 174064 remote_ip 10.8.0.58 174066 username aminvpn 174066 mac 174066 bytes_out 0 174066 bytes_in 0 174066 station_ip 5.113.28.152 174066 port 48 174066 unique_id port 174066 remote_ip 10.8.0.58 174067 username aminvpn 174067 mac 174067 bytes_out 1503 174067 bytes_in 3449 174067 station_ip 5.113.28.152 174067 port 41 174067 unique_id port 174067 remote_ip 10.8.0.58 174068 username aminvpn 174068 mac 174068 bytes_out 0 174068 bytes_in 0 174068 station_ip 5.113.28.152 174068 port 48 174068 unique_id port 174068 remote_ip 10.8.0.58 174074 username aminvpn 174074 mac 174074 bytes_out 0 174074 bytes_in 0 174074 station_ip 5.113.28.152 174074 port 41 174074 unique_id port 174074 remote_ip 10.8.0.58 174080 username aminvpn 174080 mac 174039 bytes_out 84731 174039 bytes_in 282319 174039 station_ip 31.56.219.107 174039 port 15728897 174039 nas_port_type Virtual 174039 remote_ip 5.5.5.179 174041 username aminvpn 174041 mac 174041 bytes_out 1266208 174041 bytes_in 11344997 174041 station_ip 5.113.28.152 174041 port 41 174041 unique_id port 174041 remote_ip 10.8.0.58 174046 username mosi 174046 mac 174046 bytes_out 0 174046 bytes_in 0 174046 station_ip 151.235.117.39 174046 port 49 174046 unique_id port 174049 username amin.saeedi 174049 unique_id port 174049 terminate_cause User-Request 174049 bytes_out 1776857 174049 bytes_in 36629648 174049 station_ip 31.56.219.107 174049 port 15728900 174049 nas_port_type Virtual 174049 remote_ip 5.5.5.176 174053 username aminvpn 174053 mac 174053 bytes_out 348974 174053 bytes_in 1110651 174053 station_ip 5.113.28.152 174053 port 41 174053 unique_id port 174053 remote_ip 10.8.0.58 174056 username aminvpn 174056 mac 174056 bytes_out 0 174056 bytes_in 0 174056 station_ip 5.113.28.152 174056 port 48 174056 unique_id port 174056 remote_ip 10.8.0.58 174061 username aminvpn 174061 mac 174061 bytes_out 0 174061 bytes_in 0 174061 station_ip 5.113.28.152 174061 port 41 174061 unique_id port 174061 remote_ip 10.8.0.58 174062 username aminvpn 174062 mac 174062 bytes_out 0 174062 bytes_in 0 174062 station_ip 5.113.28.152 174062 port 48 174062 unique_id port 174062 remote_ip 10.8.0.58 174063 username aminvpn 174063 mac 174063 bytes_out 0 174063 bytes_in 0 174063 station_ip 5.113.28.152 174063 port 41 174063 unique_id port 174063 remote_ip 10.8.0.58 174065 username aminvpn 174065 mac 174065 bytes_out 0 174065 bytes_in 0 174065 station_ip 5.113.28.152 174065 port 41 174065 unique_id port 174065 remote_ip 10.8.0.58 174069 username aminvpn 174069 mac 174069 bytes_out 0 174069 bytes_in 0 174069 station_ip 5.113.28.152 174069 port 41 174069 unique_id port 174069 remote_ip 10.8.0.58 174071 username aminvpn 174071 mac 174071 bytes_out 0 174071 bytes_in 0 174071 station_ip 5.113.28.152 174071 port 48 174071 unique_id port 174071 remote_ip 10.8.0.58 174072 username aminvpn 174072 mac 174072 bytes_out 0 174072 bytes_in 0 174072 station_ip 5.113.28.152 174072 port 41 174072 unique_id port 174072 remote_ip 10.8.0.58 174073 username aminvpn 174073 mac 174073 bytes_out 0 174073 bytes_in 0 174073 station_ip 5.113.28.152 174073 port 48 174073 unique_id port 174073 remote_ip 10.8.0.58 174077 username aminvpn 174077 mac 174077 bytes_out 0 174077 bytes_in 0 174077 station_ip 5.113.28.152 174077 port 48 174077 unique_id port 174077 remote_ip 10.8.0.58 174078 username aminvpn 174078 mac 174078 bytes_out 0 174078 bytes_in 0 174078 station_ip 5.113.28.152 174078 port 41 174078 unique_id port 174078 remote_ip 10.8.0.58 174084 username aminvpn 174084 mac 174084 bytes_out 0 174084 bytes_in 0 174084 station_ip 5.113.28.152 174084 port 41 174084 unique_id port 174084 remote_ip 10.8.0.58 174086 username aminvpn 174086 mac 174086 bytes_out 0 174086 bytes_in 0 174086 station_ip 5.113.28.152 174086 port 41 174086 unique_id port 174086 remote_ip 10.8.0.58 174087 username aminvpn 174087 mac 174087 bytes_out 0 174087 bytes_in 0 174087 station_ip 5.113.28.152 174087 port 48 174087 unique_id port 174087 remote_ip 10.8.0.58 174093 username aminvpn 174093 mac 174093 bytes_out 0 174093 bytes_in 0 174093 station_ip 5.113.28.152 174093 port 48 174093 unique_id port 174080 bytes_out 29214 174080 bytes_in 35794 174080 station_ip 5.113.28.152 174080 port 41 174080 unique_id port 174080 remote_ip 10.8.0.58 174088 username aminvpn 174088 mac 174088 bytes_out 0 174088 bytes_in 0 174088 station_ip 5.113.28.152 174088 port 41 174088 unique_id port 174088 remote_ip 10.8.0.58 174089 username aminvpn 174089 mac 174089 bytes_out 0 174089 bytes_in 0 174089 station_ip 5.113.28.152 174089 port 48 174089 unique_id port 174089 remote_ip 10.8.0.58 174090 username aminvpn 174090 mac 174090 bytes_out 0 174090 bytes_in 0 174090 station_ip 5.113.28.152 174090 port 41 174090 unique_id port 174090 remote_ip 10.8.0.58 174097 username aminvpn 174097 mac 174097 bytes_out 0 174097 bytes_in 0 174097 station_ip 5.113.28.152 174097 port 48 174097 unique_id port 174097 remote_ip 10.8.0.58 174098 username aminvpn 174098 mac 174098 bytes_out 0 174098 bytes_in 0 174098 station_ip 5.113.28.152 174098 port 41 174098 unique_id port 174098 remote_ip 10.8.0.58 174099 username aminvpn 174099 mac 174099 bytes_out 0 174099 bytes_in 0 174099 station_ip 5.113.28.152 174099 port 48 174099 unique_id port 174099 remote_ip 10.8.0.58 174106 username aminvpn 174106 mac 174106 bytes_out 0 174106 bytes_in 0 174106 station_ip 5.113.28.152 174106 port 41 174106 unique_id port 174106 remote_ip 10.8.0.58 174107 username aminvpn 174107 kill_reason Another user logged on this global unique id 174107 mac 174107 bytes_out 0 174107 bytes_in 0 174107 station_ip 5.113.28.152 174107 port 48 174107 unique_id port 174107 remote_ip 10.8.0.58 174108 username aminvpn 174108 mac 174108 bytes_out 0 174108 bytes_in 0 174108 station_ip 5.113.28.152 174108 port 48 174108 unique_id port 174109 username mohsenaskari 174109 mac 174109 bytes_out 0 174109 bytes_in 0 174109 station_ip 46.225.210.118 174109 port 41 174109 unique_id port 174109 remote_ip 10.8.0.222 174111 username aminvpn 174111 unique_id port 174111 terminate_cause Lost-Carrier 174111 bytes_out 615540 174111 bytes_in 15351615 174111 station_ip 5.113.28.152 174111 port 15728904 174111 nas_port_type Virtual 174111 remote_ip 5.5.5.171 174112 username godarzi 174112 mac 174112 bytes_out 1321377 174112 bytes_in 5633935 174112 station_ip 5.202.1.160 174112 port 41 174112 unique_id port 174112 remote_ip 10.8.0.38 174115 username godarzi 174115 mac 174115 bytes_out 2180764 174115 bytes_in 22806496 174115 station_ip 5.202.1.160 174115 port 41 174115 unique_id port 174115 remote_ip 10.8.0.38 174120 username aminvpn 174120 unique_id port 174120 terminate_cause User-Request 174120 bytes_out 183213 174120 bytes_in 2740646 174120 station_ip 31.57.132.160 174120 port 15728905 174120 nas_port_type Virtual 174120 remote_ip 5.5.5.169 174124 username meysam 174124 mac 174124 bytes_out 0 174124 bytes_in 0 174124 station_ip 188.159.254.33 174124 port 41 174124 unique_id port 174125 username aminvpn 174125 mac 174125 bytes_out 0 174125 bytes_in 0 174125 station_ip 5.233.67.163 174125 port 49 174125 unique_id port 174125 remote_ip 10.8.0.58 174126 username aminvpn 174126 mac 174126 bytes_out 1644 174126 bytes_in 5089 174126 station_ip 5.233.67.163 174126 port 49 174126 unique_id port 174126 remote_ip 10.8.0.58 174127 username meysam 174127 mac 174127 bytes_out 0 174127 bytes_in 0 174127 station_ip 188.159.254.151 174127 port 41 174127 unique_id port 174127 remote_ip 10.8.0.158 174129 username godarzi 174129 mac 174129 bytes_out 1681106 174129 bytes_in 12564616 174091 mac 174091 bytes_out 0 174091 bytes_in 0 174091 station_ip 5.113.28.152 174091 port 48 174091 unique_id port 174091 remote_ip 10.8.0.58 174092 username aminvpn 174092 mac 174092 bytes_out 0 174092 bytes_in 0 174092 station_ip 5.113.28.152 174092 port 41 174092 unique_id port 174092 remote_ip 10.8.0.58 174094 username aminvpn 174094 mac 174094 bytes_out 0 174094 bytes_in 0 174094 station_ip 5.113.28.152 174094 port 41 174094 unique_id port 174094 remote_ip 10.8.0.58 174100 username aminvpn 174100 mac 174100 bytes_out 0 174100 bytes_in 0 174100 station_ip 5.113.28.152 174100 port 41 174100 unique_id port 174100 remote_ip 10.8.0.58 174101 username aminvpn 174101 mac 174101 bytes_out 0 174101 bytes_in 0 174101 station_ip 5.113.28.152 174101 port 48 174101 unique_id port 174101 remote_ip 10.8.0.58 174103 username aminvpn 174103 mac 174103 bytes_out 0 174103 bytes_in 0 174103 station_ip 5.113.28.152 174103 port 48 174103 unique_id port 174103 remote_ip 10.8.0.58 174110 username aminvpn 174110 mac 174110 bytes_out 2378934 174110 bytes_in 21889552 174110 station_ip 5.113.28.152 174110 port 41 174110 unique_id port 174110 remote_ip 10.8.0.58 174113 username godarzi 174113 mac 174113 bytes_out 1185202 174113 bytes_in 14690542 174113 station_ip 5.202.1.160 174113 port 41 174113 unique_id port 174113 remote_ip 10.8.0.38 174116 username aminvpn 174116 mac 174116 bytes_out 0 174116 bytes_in 0 174116 station_ip 5.233.67.163 174116 port 48 174116 unique_id port 174116 remote_ip 10.8.0.58 174123 username meysam 174123 kill_reason Another user logged on this global unique id 174123 mac 174123 bytes_out 0 174123 bytes_in 0 174123 station_ip 188.159.254.33 174123 port 41 174123 unique_id port 174128 username aminvpn 174128 unique_id port 174128 terminate_cause User-Request 174128 bytes_out 593725 174128 bytes_in 4446210 174128 station_ip 31.57.132.160 174128 port 15728906 174128 nas_port_type Virtual 174128 remote_ip 5.5.5.168 174129 station_ip 5.202.1.160 174129 port 48 174129 unique_id port 174129 remote_ip 10.8.0.38 174130 username meysam 174130 kill_reason Another user logged on this global unique id 174130 mac 174130 bytes_out 0 174130 bytes_in 0 174130 station_ip 188.159.254.151 174130 port 49 174130 unique_id port 174130 remote_ip 10.8.0.166 174132 username aminvpn 174132 unique_id port 174132 terminate_cause Lost-Carrier 174132 bytes_out 84451 174132 bytes_in 253827 174132 station_ip 31.57.132.160 174132 port 15728908 174132 nas_port_type Virtual 174132 remote_ip 5.5.5.165 174134 username aminvpn 174134 mac 174134 bytes_out 0 174134 bytes_in 0 174134 station_ip 5.233.67.163 174134 port 48 174134 unique_id port 174134 remote_ip 10.8.0.58 174135 username aminvpn 174135 mac 174135 bytes_out 0 174135 bytes_in 0 174135 station_ip 5.233.67.163 174135 port 48 174135 unique_id port 174135 remote_ip 10.8.0.58 174136 username aminvpn 174136 mac 174136 bytes_out 0 174136 bytes_in 0 174136 station_ip 5.233.67.163 174136 port 48 174136 unique_id port 174136 remote_ip 10.8.0.58 174138 username aminvpn 174138 mac 174138 bytes_out 0 174138 bytes_in 0 174138 station_ip 5.233.67.163 174138 port 48 174138 unique_id port 174138 remote_ip 10.8.0.58 174139 username aminvpn 174139 mac 174139 bytes_out 0 174139 bytes_in 0 174139 station_ip 5.233.67.163 174139 port 48 174139 unique_id port 174139 remote_ip 10.8.0.58 174140 username aminvpn 174140 mac 174140 bytes_out 1688 174140 bytes_in 4071 174140 station_ip 5.233.67.163 174093 remote_ip 10.8.0.58 174095 username aminvpn 174095 mac 174095 bytes_out 0 174095 bytes_in 0 174095 station_ip 5.113.28.152 174095 port 48 174095 unique_id port 174095 remote_ip 10.8.0.58 174096 username aminvpn 174096 mac 174096 bytes_out 0 174096 bytes_in 0 174096 station_ip 5.113.28.152 174096 port 41 174096 unique_id port 174096 remote_ip 10.8.0.58 174102 username aminvpn 174102 mac 174102 bytes_out 0 174102 bytes_in 0 174102 station_ip 5.113.28.152 174102 port 41 174102 unique_id port 174102 remote_ip 10.8.0.58 174104 username aminvpn 174104 mac 174104 bytes_out 0 174104 bytes_in 0 174104 station_ip 5.113.28.152 174104 port 41 174104 unique_id port 174104 remote_ip 10.8.0.58 174105 username aminvpn 174105 mac 174105 bytes_out 0 174105 bytes_in 0 174105 station_ip 5.113.28.152 174105 port 48 174105 unique_id port 174105 remote_ip 10.8.0.58 174114 username godarzi 174114 mac 174114 bytes_out 194496 174114 bytes_in 914751 174114 station_ip 5.202.1.160 174114 port 41 174114 unique_id port 174114 remote_ip 10.8.0.38 174117 username meysam 174117 kill_reason Another user logged on this global unique id 174117 mac 174117 bytes_out 0 174117 bytes_in 0 174117 station_ip 188.159.254.33 174117 port 41 174117 unique_id port 174117 remote_ip 10.8.0.158 174118 username aminvpn 174118 mac 174118 bytes_out 1644 174118 bytes_in 4930 174118 station_ip 5.233.67.163 174118 port 48 174118 unique_id port 174118 remote_ip 10.8.0.58 174119 username meysam 174119 kill_reason Another user logged on this global unique id 174119 mac 174119 bytes_out 0 174119 bytes_in 0 174119 station_ip 188.159.254.33 174119 port 41 174119 unique_id port 174121 username aminvpn 174121 mac 174121 bytes_out 0 174121 bytes_in 0 174121 station_ip 5.233.67.163 174121 port 49 174121 unique_id port 174121 remote_ip 10.8.0.58 174122 username meysam 174122 kill_reason Another user logged on this global unique id 174122 mac 174122 bytes_out 0 174122 bytes_in 0 174122 station_ip 188.159.254.33 174122 port 41 174122 unique_id port 174131 username meysam 174131 mac 174131 bytes_out 0 174131 bytes_in 0 174131 station_ip 188.159.254.151 174131 port 49 174131 unique_id port 174133 username aminvpn 174133 unique_id port 174133 terminate_cause Lost-Carrier 174133 bytes_out 902059 174133 bytes_in 19678202 174133 station_ip 5.113.27.65 174133 port 15728907 174133 nas_port_type Virtual 174133 remote_ip 5.5.5.166 174137 username aminvpn 174137 mac 174137 bytes_out 0 174137 bytes_in 0 174137 station_ip 5.233.67.163 174137 port 48 174137 unique_id port 174137 remote_ip 10.8.0.58 174140 port 48 174140 unique_id port 174140 remote_ip 10.8.0.58 174141 username godarzi 174141 mac 174141 bytes_out 4541781 174141 bytes_in 22140112 174141 station_ip 5.202.1.160 174141 port 41 174141 unique_id port 174141 remote_ip 10.8.0.38 174142 username aminvpn 174142 kill_reason Maximum check online fails reached 174142 mac 174142 bytes_out 0 174142 bytes_in 0 174142 station_ip 5.233.67.163 174142 port 49 174142 unique_id port 174143 username aminvpn 174143 kill_reason Another user logged on this global unique id 174143 mac 174143 bytes_out 0 174143 bytes_in 0 174143 station_ip 5.113.27.65 174143 port 41 174143 unique_id port 174143 remote_ip 10.8.0.58 174144 username godarzi 174144 mac 174144 bytes_out 828349 174144 bytes_in 4740129 174144 station_ip 5.202.1.160 174144 port 48 174144 unique_id port 174144 remote_ip 10.8.0.38 174145 username aminvpn 174145 kill_reason Another user logged on this global unique id 174145 mac 174145 bytes_out 0 174145 bytes_in 0 174145 station_ip 5.113.27.65 174145 port 41 174145 unique_id port 174147 username aminvpn 174147 mac 174147 bytes_out 0 174147 bytes_in 0 174147 station_ip 5.113.27.65 174147 port 41 174147 unique_id port 174150 username kordestani 174150 kill_reason Another user logged on this global unique id 174150 mac 174150 bytes_out 0 174150 bytes_in 0 174150 station_ip 151.235.86.172 174150 port 51 174150 unique_id port 174150 remote_ip 10.8.0.130 174151 username godarzi 174151 kill_reason Another user logged on this global unique id 174151 mac 174151 bytes_out 0 174151 bytes_in 0 174151 station_ip 5.202.1.160 174151 port 50 174151 unique_id port 174151 remote_ip 10.8.0.38 174152 username kordestani 174152 mac 174152 bytes_out 0 174152 bytes_in 0 174152 station_ip 151.235.86.172 174152 port 51 174152 unique_id port 174154 username mosi 174154 mac 174154 bytes_out 4282950 174154 bytes_in 14415369 174154 station_ip 151.235.117.39 174154 port 48 174154 unique_id port 174154 remote_ip 10.8.0.142 174155 username amin.saeedi 174155 unique_id port 174155 terminate_cause User-Request 174155 bytes_out 2173654 174155 bytes_in 49834510 174155 station_ip 31.56.219.107 174155 port 15728909 174155 nas_port_type Virtual 174155 remote_ip 5.5.5.164 174159 username barzegar 174159 mac 174159 bytes_out 3513 174159 bytes_in 6200 174159 station_ip 5.120.128.5 174159 port 51 174159 unique_id port 174159 remote_ip 10.8.0.10 174164 username amir 174164 kill_reason Relative expiration date has reached 174164 mac 174164 bytes_out 0 174164 bytes_in 0 174164 station_ip 46.225.210.212 174164 port 54 174164 unique_id port 174168 username mosi 174168 kill_reason Another user logged on this global unique id 174168 mac 174168 bytes_out 0 174168 bytes_in 0 174168 station_ip 151.235.117.39 174168 port 50 174168 unique_id port 174168 remote_ip 10.8.0.142 174169 username hatami 174169 mac 174169 bytes_out 1697414 174169 bytes_in 16745418 174169 station_ip 151.235.107.226 174169 port 51 174169 unique_id port 174169 remote_ip 10.8.0.98 174170 username kordestani 174170 mac 174170 bytes_out 0 174170 bytes_in 0 174170 station_ip 151.235.108.102 174170 port 48 174170 unique_id port 174173 username rahim 174173 mac 174173 bytes_out 8648572 174173 bytes_in 33028995 174173 station_ip 86.57.8.241 174173 port 54 174173 unique_id port 174173 remote_ip 10.8.0.134 174177 username mosi 174177 kill_reason Another user logged on this global unique id 174177 mac 174177 bytes_out 0 174177 bytes_in 0 174177 station_ip 151.235.117.39 174177 port 50 174177 unique_id port 174179 username aminvpn 174179 unique_id port 174179 terminate_cause User-Request 174179 bytes_out 2107396 174179 bytes_in 20556369 174179 station_ip 5.119.149.66 174179 port 15728912 174179 nas_port_type Virtual 174179 remote_ip 5.5.5.160 174180 username aminvpn 174180 mac 174180 bytes_out 38655 174180 bytes_in 131050 174180 station_ip 5.113.27.65 174180 port 48 174180 unique_id port 174180 remote_ip 10.8.0.58 174182 username hamid.e 174182 unique_id port 174182 terminate_cause User-Request 174182 bytes_out 853528 174182 bytes_in 12233173 174182 station_ip 37.27.5.44 174182 port 15728913 174182 nas_port_type Virtual 174182 remote_ip 5.5.5.158 174185 username rahim 174185 mac 174185 bytes_out 0 174185 bytes_in 0 174185 station_ip 86.57.8.241 174185 port 41 174185 unique_id port 174186 username aminvpn 174186 mac 174186 bytes_out 1971012 174186 bytes_in 21782060 174186 station_ip 5.113.27.65 174186 port 48 174186 unique_id port 174186 remote_ip 10.8.0.58 174146 username meysam 174146 mac 174146 bytes_out 419086 174146 bytes_in 5758838 174146 station_ip 188.159.254.151 174146 port 51 174146 unique_id port 174146 remote_ip 10.8.0.158 174148 username aminvpn 174148 mac 174148 bytes_out 0 174148 bytes_in 0 174148 station_ip 5.233.67.163 174148 port 52 174148 unique_id port 174148 remote_ip 10.8.0.58 174149 username aminvpn 174149 mac 174149 bytes_out 1644 174149 bytes_in 3959 174149 station_ip 5.233.67.163 174149 port 41 174149 unique_id port 174149 remote_ip 10.8.0.58 174156 username godarzi 174156 mac 174156 bytes_out 2528097 174156 bytes_in 10587915 174156 station_ip 5.202.1.160 174156 port 51 174156 unique_id port 174156 remote_ip 10.8.0.38 174157 username barzegar 174157 mac 174157 bytes_out 182191 174157 bytes_in 1540736 174157 station_ip 5.120.128.5 174157 port 48 174157 unique_id port 174157 remote_ip 10.8.0.10 174158 username barzegar 174158 mac 174158 bytes_out 5034 174158 bytes_in 12406 174158 station_ip 5.120.128.5 174158 port 48 174158 unique_id port 174158 remote_ip 10.8.0.10 174160 username kordestani 174160 kill_reason Another user logged on this global unique id 174160 mac 174160 bytes_out 0 174160 bytes_in 0 174160 station_ip 151.235.108.102 174160 port 48 174160 unique_id port 174160 remote_ip 10.8.0.130 174161 username aminvpn 174161 mac 174161 bytes_out 129823 174161 bytes_in 180224 174161 station_ip 5.113.27.65 174161 port 41 174161 unique_id port 174161 remote_ip 10.8.0.58 174171 username mosi 174171 kill_reason Another user logged on this global unique id 174171 mac 174171 bytes_out 0 174171 bytes_in 0 174171 station_ip 151.235.117.39 174171 port 50 174171 unique_id port 174172 username tahmorsi 174172 kill_reason Another user logged on this global unique id 174172 mac 174172 bytes_out 0 174172 bytes_in 0 174172 station_ip 86.57.57.12 174172 port 52 174172 unique_id port 174172 remote_ip 10.8.0.238 174176 username aminvpn 174176 mac 174176 bytes_out 36187 174176 bytes_in 165786 174176 station_ip 5.113.27.65 174176 port 51 174176 unique_id port 174176 remote_ip 10.8.0.58 174178 username kordestani 174178 mac 174178 bytes_out 438064 174178 bytes_in 3378680 174178 station_ip 151.235.82.140 174178 port 48 174178 unique_id port 174178 remote_ip 10.8.0.130 174181 username aminvpn 174181 mac 174181 bytes_out 0 174181 bytes_in 0 174181 station_ip 5.233.67.163 174181 port 51 174181 unique_id port 174181 remote_ip 10.8.0.58 174187 username aminvpn 174187 mac 174187 bytes_out 0 174187 bytes_in 0 174187 station_ip 5.233.67.163 174187 port 41 174187 unique_id port 174187 remote_ip 10.8.0.58 174190 username aminvpn 174190 mac 174190 bytes_out 37234 174190 bytes_in 276497 174190 station_ip 5.113.27.65 174190 port 41 174190 unique_id port 174190 remote_ip 10.8.0.58 174191 username aminvpn 174191 unique_id port 174191 terminate_cause Lost-Carrier 174191 bytes_out 41633798 174191 bytes_in 2018764276 174191 station_ip 31.57.132.160 174191 port 15728910 174191 nas_port_type Virtual 174191 remote_ip 5.5.5.163 174192 username aminvpn 174192 mac 174192 bytes_out 0 174192 bytes_in 0 174192 station_ip 5.233.67.163 174192 port 41 174192 unique_id port 174192 remote_ip 10.8.0.58 174199 username kamali2 174199 kill_reason Relative expiration date has reached 174199 mac 174199 bytes_out 0 174199 bytes_in 0 174199 station_ip 5.202.62.83 174199 port 41 174199 unique_id port 174201 username kamali2 174201 kill_reason Relative expiration date has reached 174201 mac 174201 bytes_out 0 174201 bytes_in 0 174153 username godarzi 174153 mac 174153 bytes_out 0 174153 bytes_in 0 174153 station_ip 5.202.1.160 174153 port 50 174153 unique_id port 174162 username aminvpn 174162 mac 174162 bytes_out 0 174162 bytes_in 0 174162 station_ip 5.233.67.163 174162 port 51 174162 unique_id port 174162 remote_ip 10.8.0.58 174163 username aminvpn 174163 mac 174163 bytes_out 0 174163 bytes_in 0 174163 station_ip 5.233.67.163 174163 port 41 174163 unique_id port 174163 remote_ip 10.8.0.58 174165 username godarzi 174165 mac 174165 bytes_out 98378 174165 bytes_in 1039152 174165 station_ip 5.202.1.160 174165 port 54 174165 unique_id port 174165 remote_ip 10.8.0.38 174166 username aminvpn 174166 mac 174166 bytes_out 210762 174166 bytes_in 1747005 174166 station_ip 5.113.27.65 174166 port 41 174166 unique_id port 174166 remote_ip 10.8.0.58 174167 username aminvpn 174167 mac 174167 bytes_out 0 174167 bytes_in 0 174167 station_ip 5.233.67.163 174167 port 54 174167 unique_id port 174167 remote_ip 10.8.0.58 174174 username tahmorsi 174174 mac 174174 bytes_out 0 174174 bytes_in 0 174174 station_ip 86.57.57.12 174174 port 52 174174 unique_id port 174175 username aminvpn 174175 mac 174175 bytes_out 21849 174175 bytes_in 24641 174175 station_ip 5.113.27.65 174175 port 41 174175 unique_id port 174175 remote_ip 10.8.0.58 174183 username rahim 174183 kill_reason Another user logged on this global unique id 174183 mac 174183 bytes_out 0 174183 bytes_in 0 174183 station_ip 86.57.8.241 174183 port 41 174183 unique_id port 174183 remote_ip 10.8.0.134 174184 username amin.saeedi 174184 unique_id port 174184 terminate_cause Lost-Carrier 174184 bytes_out 6570204 174184 bytes_in 142787059 174184 station_ip 31.56.219.107 174184 port 15728911 174184 nas_port_type Virtual 174184 remote_ip 5.5.5.162 174188 username aminvpn 174188 mac 174188 bytes_out 2090250 174188 bytes_in 26000664 174188 station_ip 5.113.27.65 174188 port 41 174188 unique_id port 174188 remote_ip 10.8.0.58 174193 username mosi 174193 kill_reason Another user logged on this global unique id 174193 mac 174193 bytes_out 0 174193 bytes_in 0 174193 station_ip 151.235.117.39 174193 port 50 174193 unique_id port 174194 username amin.saeedi 174194 unique_id port 174194 terminate_cause User-Request 174194 bytes_out 9159144 174194 bytes_in 290148597 174194 station_ip 31.56.219.107 174194 port 15728914 174194 nas_port_type Virtual 174194 remote_ip 5.5.5.157 174195 username aminvpn 174195 mac 174195 bytes_out 0 174195 bytes_in 0 174195 station_ip 5.233.67.163 174195 port 41 174195 unique_id port 174195 remote_ip 10.8.0.58 174196 username aminvpn 174196 mac 174196 bytes_out 156594 174196 bytes_in 1058360 174196 station_ip 5.113.27.65 174196 port 48 174196 unique_id port 174196 remote_ip 10.8.0.58 174197 username aminvpn 174197 mac 174197 bytes_out 0 174197 bytes_in 0 174197 station_ip 5.233.67.163 174197 port 41 174197 unique_id port 174197 remote_ip 10.8.0.58 174200 username mosi 174200 kill_reason Another user logged on this global unique id 174200 mac 174200 bytes_out 0 174200 bytes_in 0 174200 station_ip 151.235.117.39 174200 port 50 174200 unique_id port 174203 username aminvpn 174203 unique_id port 174203 terminate_cause Lost-Carrier 174203 bytes_out 63628430 174203 bytes_in 3470618748 174203 station_ip 31.57.128.212 174203 port 15728915 174203 nas_port_type Virtual 174203 remote_ip 5.5.5.155 174208 username vanila 174208 kill_reason Relative expiration date has reached 174208 mac 174208 bytes_out 0 174208 bytes_in 0 174208 station_ip 37.27.26.69 174189 username aminvpn 174189 mac 174189 bytes_out 0 174189 bytes_in 0 174189 station_ip 5.233.67.163 174189 port 48 174189 unique_id port 174189 remote_ip 10.8.0.58 174198 username mosi 174198 kill_reason Another user logged on this global unique id 174198 mac 174198 bytes_out 0 174198 bytes_in 0 174198 station_ip 151.235.117.39 174198 port 50 174198 unique_id port 174207 username vanila 174207 kill_reason Relative expiration date has reached 174207 mac 174207 bytes_out 0 174207 bytes_in 0 174207 station_ip 37.27.26.69 174207 port 41 174207 unique_id port 174210 username vanila 174210 kill_reason Relative expiration date has reached 174210 mac 174210 bytes_out 0 174210 bytes_in 0 174210 station_ip 37.27.26.69 174210 port 41 174210 unique_id port 174212 username vanila 174212 kill_reason Relative expiration date has reached 174212 mac 174212 bytes_out 0 174212 bytes_in 0 174212 station_ip 37.27.26.69 174212 port 41 174212 unique_id port 174216 username vanila 174216 kill_reason Relative expiration date has reached 174216 mac 174216 bytes_out 0 174216 bytes_in 0 174216 station_ip 37.27.26.69 174216 port 48 174216 unique_id port 174220 username meysam 174220 mac 174220 bytes_out 1106435 174220 bytes_in 16764120 174220 station_ip 188.159.254.151 174220 port 41 174220 unique_id port 174220 remote_ip 10.8.0.158 174224 username hatami 174224 mac 174224 bytes_out 342387 174224 bytes_in 3138409 174224 station_ip 151.235.119.184 174224 port 41 174224 unique_id port 174224 remote_ip 10.8.0.98 174228 username godarzi 174228 mac 174228 bytes_out 1144246 174228 bytes_in 12848702 174228 station_ip 85.185.171.156 174228 port 41 174228 unique_id port 174228 remote_ip 10.8.0.38 174229 username godarzi 174229 mac 174229 bytes_out 287208 174229 bytes_in 3171056 174229 station_ip 85.185.171.156 174229 port 41 174229 unique_id port 174229 remote_ip 10.8.0.38 174231 username tahmorsi 174231 mac 174231 bytes_out 87980 174231 bytes_in 117821 174231 station_ip 86.57.28.40 174231 port 48 174231 unique_id port 174231 remote_ip 10.8.0.238 174234 username aminvpn 174234 mac 174234 bytes_out 0 174234 bytes_in 0 174234 station_ip 5.233.67.163 174234 port 41 174234 unique_id port 174234 remote_ip 10.8.0.58 174236 username aminvpn 174236 unique_id port 174236 terminate_cause User-Request 174236 bytes_out 0 174236 bytes_in 0 174236 station_ip 109.125.128.116 174236 port 15728919 174236 nas_port_type Virtual 174236 remote_ip 5.5.5.148 174238 username majidsarmast 174238 mac 174238 bytes_out 978122 174238 bytes_in 9306021 174238 station_ip 86.57.118.248 174238 port 41 174238 unique_id port 174238 remote_ip 10.8.0.170 174239 username aminvpn 174239 kill_reason Maximum check online fails reached 174239 mac 174239 bytes_out 0 174239 bytes_in 0 174239 station_ip 5.233.67.163 174239 port 41 174239 unique_id port 174241 username aminvpn 174241 mac 174241 bytes_out 1136198 174241 bytes_in 9714047 174241 station_ip 5.113.12.253 174241 port 48 174241 unique_id port 174241 remote_ip 10.8.0.58 174246 username aminvpn 174246 mac 174246 bytes_out 2091784 174246 bytes_in 21115337 174246 station_ip 5.113.12.253 174246 port 48 174246 unique_id port 174246 remote_ip 10.8.0.58 174249 username aminvpn 174249 mac 174249 bytes_out 1481288 174249 bytes_in 14724421 174249 station_ip 5.113.12.253 174249 port 48 174249 unique_id port 174249 remote_ip 10.8.0.58 174252 username aminvpn 174252 mac 174252 bytes_out 0 174252 bytes_in 0 174252 station_ip 5.233.67.163 174252 port 51 174252 unique_id port 174201 station_ip 5.202.62.83 174201 port 41 174201 unique_id port 174202 username mosi 174202 kill_reason Another user logged on this global unique id 174202 mac 174202 bytes_out 0 174202 bytes_in 0 174202 station_ip 151.235.117.39 174202 port 50 174202 unique_id port 174204 username mosi 174204 kill_reason Another user logged on this global unique id 174204 mac 174204 bytes_out 0 174204 bytes_in 0 174204 station_ip 151.235.117.39 174204 port 50 174204 unique_id port 174205 username meysam 174205 mac 174205 bytes_out 3128569 174205 bytes_in 42913252 174205 station_ip 188.159.254.151 174205 port 41 174205 unique_id port 174205 remote_ip 10.8.0.158 174206 username vanila 174206 kill_reason Relative expiration date has reached 174206 mac 174206 bytes_out 0 174206 bytes_in 0 174206 station_ip 37.27.26.69 174206 port 41 174206 unique_id port 174209 username vanila 174209 kill_reason Relative expiration date has reached 174209 mac 174209 bytes_out 0 174209 bytes_in 0 174209 station_ip 37.27.26.69 174209 port 41 174209 unique_id port 174211 username vanila 174211 kill_reason Relative expiration date has reached 174211 mac 174211 bytes_out 0 174211 bytes_in 0 174211 station_ip 37.27.26.69 174211 port 41 174211 unique_id port 174213 username vanila 174213 kill_reason Relative expiration date has reached 174213 mac 174213 bytes_out 0 174213 bytes_in 0 174213 station_ip 37.27.26.69 174213 port 41 174213 unique_id port 174214 username meysam 174214 kill_reason Another user logged on this global unique id 174214 mac 174214 bytes_out 0 174214 bytes_in 0 174214 station_ip 188.159.254.151 174214 port 41 174214 unique_id port 174214 remote_ip 10.8.0.158 174219 username meysam 174219 mac 174219 bytes_out 0 174219 bytes_in 0 174219 station_ip 188.159.254.151 174219 port 41 174219 unique_id port 174223 username meysam 174223 mac 174223 bytes_out 76694 174223 bytes_in 735933 174223 station_ip 188.159.254.151 174223 port 41 174223 unique_id port 174223 remote_ip 10.8.0.158 174226 username hatami 174226 mac 174226 bytes_out 85750 174226 bytes_in 532751 174226 station_ip 151.235.121.101 174226 port 41 174226 unique_id port 174226 remote_ip 10.8.0.98 174227 username arash 174227 mac 174227 bytes_out 1739867 174227 bytes_in 17798188 174227 station_ip 37.27.43.116 174227 port 48 174227 unique_id port 174227 remote_ip 10.8.0.70 174230 username aminvpn 174230 mac 174230 bytes_out 0 174230 bytes_in 0 174230 station_ip 5.233.67.163 174230 port 50 174230 unique_id port 174230 remote_ip 10.8.0.58 174232 username godarzi 174232 mac 174232 bytes_out 932380 174232 bytes_in 10928999 174232 station_ip 85.185.171.156 174232 port 41 174232 unique_id port 174232 remote_ip 10.8.0.38 174233 username vanila 174233 kill_reason Relative expiration date has reached 174233 mac 174233 bytes_out 0 174233 bytes_in 0 174233 station_ip 37.27.38.110 174233 port 41 174233 unique_id port 174245 username amin.saeedi 174245 unique_id port 174245 terminate_cause Lost-Carrier 174245 bytes_out 395316 174245 bytes_in 14442416 174245 station_ip 31.56.219.155 174245 port 15728925 174245 nas_port_type Virtual 174245 remote_ip 5.5.5.144 174247 username aminvpn 174247 mac 174247 bytes_out 0 174247 bytes_in 0 174247 station_ip 5.233.67.163 174247 port 51 174247 unique_id port 174247 remote_ip 10.8.0.58 174248 username aminvpn 174248 unique_id port 174248 terminate_cause User-Request 174248 bytes_out 20967440 174248 bytes_in 850091874 174248 station_ip 31.57.132.198 174248 port 15728916 174248 nas_port_type Virtual 174248 remote_ip 5.5.5.153 174253 username aminvpn 174253 mac 174208 port 41 174208 unique_id port 174215 username meysam 174215 kill_reason Another user logged on this global unique id 174215 mac 174215 bytes_out 0 174215 bytes_in 0 174215 station_ip 188.159.254.151 174215 port 41 174215 unique_id port 174217 username vanila 174217 kill_reason Relative expiration date has reached 174217 mac 174217 bytes_out 0 174217 bytes_in 0 174217 station_ip 37.27.26.69 174217 port 48 174217 unique_id port 174218 username mosi 174218 mac 174218 bytes_out 0 174218 bytes_in 0 174218 station_ip 151.235.117.39 174218 port 50 174218 unique_id port 174221 username meysam 174221 mac 174221 bytes_out 246969 174221 bytes_in 2542150 174221 station_ip 188.159.254.151 174221 port 41 174221 unique_id port 174221 remote_ip 10.8.0.158 174222 username aminvpn 174222 unique_id port 174222 terminate_cause Lost-Carrier 174222 bytes_out 776980 174222 bytes_in 5586017 174222 station_ip 5.119.165.13 174222 port 15728917 174222 nas_port_type Virtual 174222 remote_ip 5.5.5.151 174225 username hatami 174225 mac 174225 bytes_out 30869 174225 bytes_in 162376 174225 station_ip 151.235.88.111 174225 port 41 174225 unique_id port 174225 remote_ip 10.8.0.98 174235 username aminvpn 174235 mac 174235 bytes_out 0 174235 bytes_in 0 174235 station_ip 5.233.67.163 174235 port 41 174235 unique_id port 174235 remote_ip 10.8.0.58 174237 username aminvpn 174237 mac 174237 bytes_out 1644 174237 bytes_in 4532 174237 station_ip 5.233.67.163 174237 port 48 174237 unique_id port 174237 remote_ip 10.8.0.58 174240 username amin.saeedi 174240 unique_id port 174240 terminate_cause User-Request 174240 bytes_out 1902893 174240 bytes_in 25658908 174240 station_ip 31.56.219.155 174240 port 15728920 174240 nas_port_type Virtual 174240 remote_ip 5.5.5.146 174242 username aminvpn 174242 mac 174242 bytes_out 0 174242 bytes_in 0 174242 station_ip 5.233.67.163 174242 port 51 174242 unique_id port 174242 remote_ip 10.8.0.58 174243 username hamid.e 174243 unique_id port 174243 terminate_cause User-Request 174243 bytes_out 12134811 174243 bytes_in 254409090 174243 station_ip 37.27.34.185 174243 port 15728918 174243 nas_port_type Virtual 174243 remote_ip 5.5.5.149 174244 username amin.saeedi 174244 unique_id port 174244 terminate_cause User-Request 174244 bytes_out 4904422 174244 bytes_in 166742539 174244 station_ip 31.56.219.155 174244 port 15728924 174244 nas_port_type Virtual 174244 remote_ip 5.5.5.145 174250 username aminvpn 174250 mac 174250 bytes_out 0 174250 bytes_in 0 174250 station_ip 5.233.67.163 174250 port 51 174250 unique_id port 174250 remote_ip 10.8.0.58 174251 username aminvpn 174251 mac 174251 bytes_out 629551 174251 bytes_in 4472029 174251 station_ip 5.113.12.253 174251 port 48 174251 unique_id port 174251 remote_ip 10.8.0.58 174254 username aminvpn 174254 mac 174254 bytes_out 0 174254 bytes_in 0 174254 station_ip 5.233.67.163 174254 port 48 174254 unique_id port 174254 remote_ip 10.8.0.58 174257 username aminvpn 174257 mac 174257 bytes_out 0 174257 bytes_in 0 174257 station_ip 5.113.23.107 174257 port 48 174257 unique_id port 174257 remote_ip 10.8.0.58 174258 username aminvpn 174258 mac 174258 bytes_out 0 174258 bytes_in 0 174258 station_ip 5.113.23.107 174258 port 52 174258 unique_id port 174258 remote_ip 10.8.0.58 174260 username tahmorsi 174260 mac 174260 bytes_out 6000313 174260 bytes_in 8987376 174260 station_ip 86.57.94.159 174260 port 48 174260 unique_id port 174260 remote_ip 10.8.0.238 174262 username aminvpn 174262 mac 174262 bytes_out 0 174262 bytes_in 0 174252 remote_ip 10.8.0.58 174255 username hajghani 174255 mac 174255 bytes_out 2391294 174255 bytes_in 32579385 174255 station_ip 5.202.133.219 174255 port 48 174255 unique_id port 174255 remote_ip 10.8.0.102 174259 username aminvpn 174259 unique_id port 174259 terminate_cause User-Request 174259 bytes_out 7750732 174259 bytes_in 205139365 174259 station_ip 31.57.132.198 174259 port 15728927 174259 nas_port_type Virtual 174259 remote_ip 5.5.5.141 174263 username aminvpn 174263 mac 174263 bytes_out 1644 174263 bytes_in 5036 174263 station_ip 5.113.23.107 174263 port 48 174263 unique_id port 174263 remote_ip 10.8.0.58 174264 username godarzi 174264 kill_reason Another user logged on this global unique id 174264 mac 174264 bytes_out 0 174264 bytes_in 0 174264 station_ip 5.202.1.160 174264 port 50 174264 unique_id port 174264 remote_ip 10.8.0.38 174275 username aminvpn 174275 mac 174275 bytes_out 5307 174275 bytes_in 7642 174275 station_ip 5.113.23.107 174275 port 48 174275 unique_id port 174275 remote_ip 10.8.0.58 174277 username shadkam 174277 mac 174277 bytes_out 595790 174277 bytes_in 7453338 174277 station_ip 5.202.7.117 174277 port 50 174277 unique_id port 174277 remote_ip 10.8.0.74 174279 username aminvpn 174279 mac 174279 bytes_out 6738 174279 bytes_in 9270 174279 station_ip 5.113.23.107 174279 port 48 174279 unique_id port 174279 remote_ip 10.8.0.58 174283 username godarzi 174283 mac 174283 bytes_out 0 174283 bytes_in 0 174283 station_ip 5.202.1.160 174283 port 52 174283 unique_id port 174283 remote_ip 10.8.0.38 174286 username amin.saeedi 174286 unique_id port 174286 terminate_cause User-Request 174286 bytes_out 5515052 174286 bytes_in 125791190 174286 station_ip 31.56.156.69 174286 port 15728926 174286 nas_port_type Virtual 174286 remote_ip 5.5.5.142 174289 username majidsarmast 174289 kill_reason Another user logged on this global unique id 174289 mac 174289 bytes_out 0 174289 bytes_in 0 174289 station_ip 86.57.118.248 174289 port 51 174289 unique_id port 174290 username aminvpn 174290 mac 174290 bytes_out 26932 174290 bytes_in 35769 174290 station_ip 5.113.23.107 174290 port 48 174290 unique_id port 174290 remote_ip 10.8.0.58 174291 username aminvpn 174291 mac 174291 bytes_out 0 174291 bytes_in 0 174291 station_ip 5.113.23.107 174291 port 48 174291 unique_id port 174291 remote_ip 10.8.0.58 174297 username aminvpn 174297 mac 174297 bytes_out 0 174297 bytes_in 0 174297 station_ip 5.113.23.107 174297 port 48 174297 unique_id port 174297 remote_ip 10.8.0.58 174303 username aminvpn 174303 mac 174303 bytes_out 11002 174303 bytes_in 20250 174303 station_ip 5.113.23.107 174303 port 50 174303 unique_id port 174303 remote_ip 10.8.0.58 174305 username shadkam 174305 mac 174305 bytes_out 370335 174305 bytes_in 5336422 174305 station_ip 5.202.7.117 174305 port 51 174305 unique_id port 174305 remote_ip 10.8.0.74 174308 username aminvpn 174308 mac 174308 bytes_out 0 174308 bytes_in 0 174308 station_ip 5.113.23.107 174308 port 51 174308 unique_id port 174308 remote_ip 10.8.0.58 174309 username aminvpn 174309 mac 174309 bytes_out 3973 174309 bytes_in 6646 174309 station_ip 5.113.23.107 174309 port 50 174309 unique_id port 174309 remote_ip 10.8.0.58 174311 username aminvpn 174311 mac 174311 bytes_out 5245 174311 bytes_in 8024 174311 station_ip 5.113.23.107 174311 port 50 174311 unique_id port 174311 remote_ip 10.8.0.58 174315 username aminvpn 174315 mac 174315 bytes_out 151357 174315 bytes_in 1006378 174315 station_ip 5.113.23.107 174253 bytes_out 34381 174253 bytes_in 51290 174253 station_ip 5.113.12.253 174253 port 48 174253 unique_id port 174253 remote_ip 10.8.0.58 174256 username hatami 174256 mac 174256 bytes_out 713146 174256 bytes_in 5193458 174256 station_ip 151.235.127.98 174256 port 51 174256 unique_id port 174256 remote_ip 10.8.0.98 174261 username aminvpn 174261 mac 174261 bytes_out 17121 174261 bytes_in 29887 174261 station_ip 5.113.23.107 174261 port 52 174261 unique_id port 174261 remote_ip 10.8.0.58 174265 username aminvpn 174265 mac 174265 bytes_out 3802 174265 bytes_in 5999 174265 station_ip 5.113.23.107 174265 port 52 174265 unique_id port 174265 remote_ip 10.8.0.58 174268 username godarzi 174268 mac 174268 bytes_out 0 174268 bytes_in 0 174268 station_ip 5.202.1.160 174268 port 50 174268 unique_id port 174269 username shadkam 174269 mac 174269 bytes_out 55516 174269 bytes_in 53054 174269 station_ip 5.202.7.117 174269 port 50 174269 unique_id port 174269 remote_ip 10.8.0.74 174271 username aminvpn 174271 mac 174271 bytes_out 7049 174271 bytes_in 12695 174271 station_ip 5.113.23.107 174271 port 48 174271 unique_id port 174271 remote_ip 10.8.0.58 174276 username aminvpn 174276 mac 174276 bytes_out 0 174276 bytes_in 0 174276 station_ip 5.113.23.107 174276 port 52 174276 unique_id port 174276 remote_ip 10.8.0.58 174278 username majidsarmast 174278 kill_reason Another user logged on this global unique id 174278 mac 174278 bytes_out 0 174278 bytes_in 0 174278 station_ip 86.57.118.248 174278 port 51 174278 unique_id port 174280 username aminvpn 174280 mac 174280 bytes_out 0 174280 bytes_in 0 174280 station_ip 5.113.23.107 174280 port 52 174280 unique_id port 174280 remote_ip 10.8.0.58 174281 username aminvpn 174281 mac 174281 bytes_out 1644 174281 bytes_in 4617 174281 station_ip 5.113.23.107 174281 port 48 174281 unique_id port 174281 remote_ip 10.8.0.58 174287 username aminvpn 174287 mac 174287 bytes_out 0 174287 bytes_in 0 174287 station_ip 5.113.23.107 174287 port 50 174287 unique_id port 174287 remote_ip 10.8.0.58 174288 username aminvpn 174288 mac 174288 bytes_out 1644 174288 bytes_in 4251 174288 station_ip 5.113.23.107 174288 port 48 174288 unique_id port 174288 remote_ip 10.8.0.58 174293 username majidsarmast 174293 kill_reason Another user logged on this global unique id 174293 mac 174293 bytes_out 0 174293 bytes_in 0 174293 station_ip 86.57.118.248 174293 port 51 174293 unique_id port 174294 username majidsarmast 174294 mac 174294 bytes_out 0 174294 bytes_in 0 174294 station_ip 86.57.118.248 174294 port 51 174294 unique_id port 174295 username aminvpn 174295 mac 174295 bytes_out 0 174295 bytes_in 0 174295 station_ip 5.113.23.107 174295 port 48 174295 unique_id port 174295 remote_ip 10.8.0.58 174296 username aminvpn 174296 mac 174296 bytes_out 1644 174296 bytes_in 4930 174296 station_ip 5.113.23.107 174296 port 48 174296 unique_id port 174296 remote_ip 10.8.0.58 174299 username aminvpn 174299 mac 174299 bytes_out 0 174299 bytes_in 0 174299 station_ip 5.113.23.107 174299 port 48 174299 unique_id port 174299 remote_ip 10.8.0.58 174301 username aminvpn 174301 mac 174301 bytes_out 0 174301 bytes_in 0 174301 station_ip 5.113.23.107 174301 port 50 174301 unique_id port 174301 remote_ip 10.8.0.58 174304 username aminvpn 174304 mac 174304 bytes_out 0 174304 bytes_in 0 174304 station_ip 5.113.23.107 174304 port 52 174304 unique_id port 174304 remote_ip 10.8.0.58 174262 station_ip 5.113.23.107 174262 port 48 174262 unique_id port 174262 remote_ip 10.8.0.58 174266 username aminvpn 174266 mac 174266 bytes_out 0 174266 bytes_in 0 174266 station_ip 5.113.23.107 174266 port 54 174266 unique_id port 174266 remote_ip 10.8.0.58 174267 username kordestani 174267 mac 174267 bytes_out 3655779 174267 bytes_in 50797615 174267 station_ip 151.235.110.93 174267 port 48 174267 unique_id port 174267 remote_ip 10.8.0.130 174270 username godarzi 174270 mac 174270 bytes_out 0 174270 bytes_in 0 174270 station_ip 5.202.1.160 174270 port 50 174270 unique_id port 174270 remote_ip 10.8.0.38 174272 username aminvpn 174272 mac 174272 bytes_out 0 174272 bytes_in 0 174272 station_ip 5.113.23.107 174272 port 52 174272 unique_id port 174272 remote_ip 10.8.0.58 174273 username majidsarmast 174273 kill_reason Another user logged on this global unique id 174273 mac 174273 bytes_out 0 174273 bytes_in 0 174273 station_ip 86.57.118.248 174273 port 51 174273 unique_id port 174273 remote_ip 10.8.0.170 174274 username godarzi 174274 mac 174274 bytes_out 0 174274 bytes_in 0 174274 station_ip 5.202.1.160 174274 port 52 174274 unique_id port 174274 remote_ip 10.8.0.38 174282 username majidsarmast 174282 kill_reason Another user logged on this global unique id 174282 mac 174282 bytes_out 0 174282 bytes_in 0 174282 station_ip 86.57.118.248 174282 port 51 174282 unique_id port 174284 username shadkam 174284 mac 174284 bytes_out 1953471 174284 bytes_in 23838721 174284 station_ip 5.202.7.117 174284 port 50 174284 unique_id port 174284 remote_ip 10.8.0.74 174285 username aminvpn 174285 mac 174285 bytes_out 5960 174285 bytes_in 7878 174285 station_ip 5.113.23.107 174285 port 48 174285 unique_id port 174285 remote_ip 10.8.0.58 174292 username aminvpn 174292 mac 174292 bytes_out 0 174292 bytes_in 0 174292 station_ip 5.113.23.107 174292 port 48 174292 unique_id port 174292 remote_ip 10.8.0.58 174298 username aminvpn 174298 mac 174298 bytes_out 0 174298 bytes_in 0 174298 station_ip 5.113.23.107 174298 port 48 174298 unique_id port 174298 remote_ip 10.8.0.58 174300 username aminvpn 174300 kill_reason Maximum check online fails reached 174300 mac 174300 bytes_out 0 174300 bytes_in 0 174300 station_ip 5.113.23.107 174300 port 48 174300 unique_id port 174302 username aminvpn 174302 mac 174302 bytes_out 0 174302 bytes_in 0 174302 station_ip 5.113.23.107 174302 port 50 174302 unique_id port 174302 remote_ip 10.8.0.58 174306 username mosi 174306 mac 174306 bytes_out 0 174306 bytes_in 0 174306 station_ip 151.235.117.39 174306 port 51 174306 unique_id port 174306 remote_ip 10.8.0.142 174307 username aminvpn 174307 mac 174307 bytes_out 2860 174307 bytes_in 4950 174307 station_ip 5.113.23.107 174307 port 50 174307 unique_id port 174307 remote_ip 10.8.0.58 174314 username aminvpn 174314 mac 174314 bytes_out 0 174314 bytes_in 0 174314 station_ip 5.113.23.107 174314 port 52 174314 unique_id port 174314 remote_ip 10.8.0.58 174318 username aminvpn 174318 mac 174318 bytes_out 0 174318 bytes_in 0 174318 station_ip 5.113.23.107 174318 port 52 174318 unique_id port 174318 remote_ip 10.8.0.58 174322 username aminvpn 174322 mac 174322 bytes_out 0 174322 bytes_in 0 174322 station_ip 5.113.23.107 174322 port 52 174322 unique_id port 174322 remote_ip 10.8.0.58 174324 username aminvpn 174324 mac 174324 bytes_out 0 174324 bytes_in 0 174324 station_ip 5.113.23.107 174324 port 52 174324 unique_id port 174310 username aminvpn 174310 mac 174310 bytes_out 0 174310 bytes_in 0 174310 station_ip 5.113.23.107 174310 port 51 174310 unique_id port 174310 remote_ip 10.8.0.58 174312 username aminvpn 174312 mac 174312 bytes_out 0 174312 bytes_in 0 174312 station_ip 5.113.23.107 174312 port 52 174312 unique_id port 174312 remote_ip 10.8.0.58 174313 username aminvpn 174313 mac 174313 bytes_out 6223 174313 bytes_in 8769 174313 station_ip 5.113.23.107 174313 port 50 174313 unique_id port 174313 remote_ip 10.8.0.58 174316 username aminvpn 174316 mac 174316 bytes_out 0 174316 bytes_in 0 174316 station_ip 5.113.23.107 174316 port 52 174316 unique_id port 174316 remote_ip 10.8.0.58 174317 username aminvpn 174317 mac 174317 bytes_out 4976 174317 bytes_in 9919 174317 station_ip 5.113.23.107 174317 port 50 174317 unique_id port 174317 remote_ip 10.8.0.58 174320 username aminvpn 174320 mac 174320 bytes_out 0 174320 bytes_in 0 174320 station_ip 5.113.23.107 174320 port 52 174320 unique_id port 174320 remote_ip 10.8.0.58 174321 username aminvpn 174321 mac 174321 bytes_out 3317 174321 bytes_in 5727 174321 station_ip 5.113.23.107 174321 port 50 174321 unique_id port 174321 remote_ip 10.8.0.58 174323 username aminvpn 174323 mac 174323 bytes_out 5199 174323 bytes_in 7674 174323 station_ip 5.113.23.107 174323 port 50 174323 unique_id port 174323 remote_ip 10.8.0.58 174329 username mansour 174329 mac 174329 bytes_out 14905854 174329 bytes_in 220265511 174329 station_ip 45.84.157.42 174329 port 51 174329 unique_id port 174329 remote_ip 10.8.0.206 174331 username aminvpn 174331 mac 174331 bytes_out 0 174331 bytes_in 0 174331 station_ip 5.113.23.107 174331 port 51 174331 unique_id port 174331 remote_ip 10.8.0.58 174334 username aminvpn 174334 mac 174334 bytes_out 0 174334 bytes_in 0 174334 station_ip 5.113.23.107 174334 port 52 174334 unique_id port 174334 remote_ip 10.8.0.58 174337 username aminvpn 174337 mac 174337 bytes_out 0 174337 bytes_in 0 174337 station_ip 5.113.23.107 174337 port 52 174337 unique_id port 174337 remote_ip 10.8.0.58 174340 username aminvpn 174340 mac 174340 bytes_out 0 174340 bytes_in 0 174340 station_ip 5.113.23.107 174340 port 51 174340 unique_id port 174340 remote_ip 10.8.0.58 174341 username aminvpn 174341 mac 174341 bytes_out 0 174341 bytes_in 0 174341 station_ip 5.113.23.107 174341 port 51 174341 unique_id port 174341 remote_ip 10.8.0.58 174342 username aminvpn 174342 mac 174342 bytes_out 51768 174342 bytes_in 113470 174342 station_ip 5.113.23.107 174342 port 51 174342 unique_id port 174342 remote_ip 10.8.0.58 174346 username mosi 174346 mac 174346 bytes_out 2337 174346 bytes_in 5147 174346 station_ip 151.235.117.39 174346 port 52 174346 unique_id port 174346 remote_ip 10.8.0.142 174348 username aminvpn 174348 mac 174348 bytes_out 0 174348 bytes_in 0 174348 station_ip 5.113.23.107 174348 port 52 174348 unique_id port 174348 remote_ip 10.8.0.58 174349 username aminvpn 174349 mac 174349 bytes_out 1644 174349 bytes_in 4670 174349 station_ip 5.113.23.107 174349 port 51 174349 unique_id port 174349 remote_ip 10.8.0.58 174352 username mosi 174352 kill_reason Another user logged on this global unique id 174352 mac 174352 bytes_out 0 174352 bytes_in 0 174352 station_ip 151.235.117.39 174352 port 52 174352 unique_id port 174353 username aminvpn 174353 mac 174353 bytes_out 16562 174353 bytes_in 21333 174353 station_ip 5.113.23.107 174315 port 50 174315 unique_id port 174315 remote_ip 10.8.0.58 174319 username aminvpn 174319 mac 174319 bytes_out 5798 174319 bytes_in 11356 174319 station_ip 5.113.23.107 174319 port 50 174319 unique_id port 174319 remote_ip 10.8.0.58 174325 username aminvpn 174325 kill_reason Maximum check online fails reached 174325 mac 174325 bytes_out 0 174325 bytes_in 0 174325 station_ip 5.113.23.107 174325 port 50 174325 unique_id port 174327 username aminvpn 174327 mac 174327 bytes_out 0 174327 bytes_in 0 174327 station_ip 5.113.23.107 174327 port 54 174327 unique_id port 174327 remote_ip 10.8.0.58 174330 username aminvpn 174330 mac 174330 bytes_out 5298 174330 bytes_in 7812 174330 station_ip 5.113.23.107 174330 port 52 174330 unique_id port 174330 remote_ip 10.8.0.58 174333 username aminvpn 174333 mac 174333 bytes_out 5553 174333 bytes_in 8921 174333 station_ip 5.113.23.107 174333 port 51 174333 unique_id port 174333 remote_ip 10.8.0.58 174335 username aminvpn 174335 mac 174335 bytes_out 0 174335 bytes_in 0 174335 station_ip 5.113.23.107 174335 port 51 174335 unique_id port 174335 remote_ip 10.8.0.58 174347 username aminvpn 174347 mac 174347 bytes_out 8415 174347 bytes_in 12360 174347 station_ip 5.113.23.107 174347 port 51 174347 unique_id port 174347 remote_ip 10.8.0.58 174356 username aminvpn 174356 kill_reason Maximum check online fails reached 174356 mac 174356 bytes_out 0 174356 bytes_in 0 174356 station_ip 5.113.23.107 174356 port 51 174356 unique_id port 174358 username aminvpn 174358 mac 174358 bytes_out 0 174358 bytes_in 0 174358 station_ip 5.113.23.107 174358 port 55 174358 unique_id port 174358 remote_ip 10.8.0.58 174363 username aminvpn 174363 mac 174363 bytes_out 6051 174363 bytes_in 11741 174363 station_ip 5.113.23.107 174363 port 55 174363 unique_id port 174363 remote_ip 10.8.0.58 174366 username aminvpn 174366 mac 174366 bytes_out 0 174366 bytes_in 0 174366 station_ip 5.113.23.107 174366 port 56 174366 unique_id port 174366 remote_ip 10.8.0.58 174367 username aminvpn 174367 mac 174367 bytes_out 8369 174367 bytes_in 15278 174367 station_ip 5.113.23.107 174367 port 55 174367 unique_id port 174367 remote_ip 10.8.0.58 174369 username aminvpn 174369 mac 174369 bytes_out 5962 174369 bytes_in 8756 174369 station_ip 5.113.23.107 174369 port 55 174369 unique_id port 174369 remote_ip 10.8.0.58 174372 username aminvpn 174372 mac 174372 bytes_out 0 174372 bytes_in 0 174372 station_ip 5.113.23.107 174372 port 56 174372 unique_id port 174372 remote_ip 10.8.0.58 174373 username aminvpn 174373 mac 174373 bytes_out 3868 174373 bytes_in 6104 174373 station_ip 5.113.23.107 174373 port 55 174373 unique_id port 174373 remote_ip 10.8.0.58 174375 username mosi 174375 kill_reason Another user logged on this global unique id 174375 mac 174375 bytes_out 0 174375 bytes_in 0 174375 station_ip 151.235.117.39 174375 port 52 174375 unique_id port 174379 username aminvpn 174379 mac 174379 bytes_out 0 174379 bytes_in 0 174379 station_ip 5.113.23.107 174379 port 56 174379 unique_id port 174379 remote_ip 10.8.0.58 174380 username aminvpn 174380 mac 174380 bytes_out 0 174380 bytes_in 0 174380 station_ip 5.113.23.107 174380 port 55 174380 unique_id port 174380 remote_ip 10.8.0.58 174381 username shadkam 174381 mac 174381 bytes_out 0 174381 bytes_in 0 174381 station_ip 5.202.7.117 174381 port 56 174381 unique_id port 174381 remote_ip 10.8.0.74 174382 username aminvpn 174382 mac 174324 remote_ip 10.8.0.58 174326 username aminvpn 174326 mac 174326 bytes_out 4893 174326 bytes_in 7230 174326 station_ip 5.113.23.107 174326 port 52 174326 unique_id port 174326 remote_ip 10.8.0.58 174328 username aminvpn 174328 mac 174328 bytes_out 1644 174328 bytes_in 4930 174328 station_ip 5.113.23.107 174328 port 52 174328 unique_id port 174328 remote_ip 10.8.0.58 174332 username aminvpn 174332 mac 174332 bytes_out 0 174332 bytes_in 0 174332 station_ip 5.113.23.107 174332 port 51 174332 unique_id port 174332 remote_ip 10.8.0.58 174336 username aminvpn 174336 mac 174336 bytes_out 5129 174336 bytes_in 8364 174336 station_ip 5.113.23.107 174336 port 51 174336 unique_id port 174336 remote_ip 10.8.0.58 174338 username aminvpn 174338 mac 174338 bytes_out 1644 174338 bytes_in 5142 174338 station_ip 5.113.23.107 174338 port 51 174338 unique_id port 174338 remote_ip 10.8.0.58 174339 username aminvpn 174339 mac 174339 bytes_out 0 174339 bytes_in 0 174339 station_ip 5.113.23.107 174339 port 51 174339 unique_id port 174339 remote_ip 10.8.0.58 174343 username aminvpn 174343 mac 174343 bytes_out 0 174343 bytes_in 0 174343 station_ip 5.113.23.107 174343 port 52 174343 unique_id port 174343 remote_ip 10.8.0.58 174344 username aminvpn 174344 mac 174344 bytes_out 0 174344 bytes_in 0 174344 station_ip 5.113.23.107 174344 port 51 174344 unique_id port 174344 remote_ip 10.8.0.58 174345 username mosi 174345 mac 174345 bytes_out 1439 174345 bytes_in 3137 174345 station_ip 151.235.117.39 174345 port 52 174345 unique_id port 174345 remote_ip 10.8.0.142 174350 username aminvpn 174350 mac 174350 bytes_out 0 174350 bytes_in 0 174350 station_ip 5.113.23.107 174350 port 51 174350 unique_id port 174350 remote_ip 10.8.0.58 174351 username mosi 174351 kill_reason Another user logged on this global unique id 174351 mac 174351 bytes_out 0 174351 bytes_in 0 174351 station_ip 151.235.117.39 174351 port 52 174351 unique_id port 174351 remote_ip 10.8.0.142 174354 username aminvpn 174354 mac 174354 bytes_out 0 174354 bytes_in 0 174354 station_ip 5.113.23.107 174354 port 54 174354 unique_id port 174354 remote_ip 10.8.0.58 174357 username aminvpn 174357 mac 174357 bytes_out 3746 174357 bytes_in 6216 174357 station_ip 5.113.23.107 174357 port 54 174357 unique_id port 174357 remote_ip 10.8.0.58 174371 username aminvpn 174371 mac 174371 bytes_out 7161 174371 bytes_in 10240 174371 station_ip 5.113.23.107 174371 port 55 174371 unique_id port 174371 remote_ip 10.8.0.58 174377 username aminvpn 174377 mac 174377 bytes_out 0 174377 bytes_in 0 174377 station_ip 5.113.23.107 174377 port 56 174377 unique_id port 174377 remote_ip 10.8.0.58 174378 username aminvpn 174378 mac 174378 bytes_out 3857 174378 bytes_in 6218 174378 station_ip 5.113.23.107 174378 port 55 174378 unique_id port 174378 remote_ip 10.8.0.58 174382 bytes_out 5167 174382 bytes_in 7855 174382 station_ip 5.113.23.107 174382 port 55 174382 unique_id port 174382 remote_ip 10.8.0.58 174384 username shadkam 174384 kill_reason Another user logged on this global unique id 174384 mac 174384 bytes_out 0 174384 bytes_in 0 174384 station_ip 5.202.7.117 174384 port 56 174384 unique_id port 174384 remote_ip 10.8.0.74 174385 username shadkam 174385 mac 174385 bytes_out 0 174385 bytes_in 0 174385 station_ip 5.202.7.117 174385 port 56 174385 unique_id port 174387 username aminvpn 174387 mac 174387 bytes_out 0 174387 bytes_in 0 174353 port 51 174353 unique_id port 174353 remote_ip 10.8.0.58 174355 username aminvpn 174355 mac 174355 bytes_out 0 174355 bytes_in 0 174355 station_ip 5.113.23.107 174355 port 51 174355 unique_id port 174355 remote_ip 10.8.0.58 174359 username aminvpn 174359 kill_reason Maximum check online fails reached 174359 mac 174359 bytes_out 0 174359 bytes_in 0 174359 station_ip 5.113.23.107 174359 port 54 174359 unique_id port 174360 username aminvpn 174360 mac 174360 bytes_out 3534 174360 bytes_in 6004 174360 station_ip 5.113.23.107 174360 port 55 174360 unique_id port 174360 remote_ip 10.8.0.58 174361 username aminvpn 174361 mac 174361 bytes_out 0 174361 bytes_in 0 174361 station_ip 5.113.23.107 174361 port 56 174361 unique_id port 174361 remote_ip 10.8.0.58 174362 username mosi 174362 kill_reason Another user logged on this global unique id 174362 mac 174362 bytes_out 0 174362 bytes_in 0 174362 station_ip 151.235.117.39 174362 port 52 174362 unique_id port 174364 username aminvpn 174364 mac 174364 bytes_out 0 174364 bytes_in 0 174364 station_ip 5.113.23.107 174364 port 56 174364 unique_id port 174364 remote_ip 10.8.0.58 174365 username aminvpn 174365 mac 174365 bytes_out 4276 174365 bytes_in 6905 174365 station_ip 5.113.23.107 174365 port 55 174365 unique_id port 174365 remote_ip 10.8.0.58 174368 username aminvpn 174368 mac 174368 bytes_out 0 174368 bytes_in 0 174368 station_ip 5.113.23.107 174368 port 56 174368 unique_id port 174368 remote_ip 10.8.0.58 174370 username aminvpn 174370 mac 174370 bytes_out 0 174370 bytes_in 0 174370 station_ip 5.113.23.107 174370 port 56 174370 unique_id port 174370 remote_ip 10.8.0.58 174374 username aminvpn 174374 mac 174374 bytes_out 0 174374 bytes_in 0 174374 station_ip 5.113.23.107 174374 port 56 174374 unique_id port 174374 remote_ip 10.8.0.58 174376 username aminvpn 174376 mac 174376 bytes_out 2272 174376 bytes_in 4471 174376 station_ip 5.113.23.107 174376 port 55 174376 unique_id port 174376 remote_ip 10.8.0.58 174383 username aminvpn 174383 mac 174383 bytes_out 0 174383 bytes_in 0 174383 station_ip 5.113.23.107 174383 port 57 174383 unique_id port 174383 remote_ip 10.8.0.58 174386 username aminvpn 174386 mac 174386 bytes_out 5808 174386 bytes_in 8387 174386 station_ip 5.113.23.107 174386 port 55 174386 unique_id port 174386 remote_ip 10.8.0.58 174387 station_ip 5.113.23.107 174387 port 56 174387 unique_id port 174387 remote_ip 10.8.0.58 174388 username shadkam 174388 mac 174388 bytes_out 0 174388 bytes_in 0 174388 station_ip 5.202.7.117 174388 port 55 174388 unique_id port 174388 remote_ip 10.8.0.74 174389 username aminvpn 174389 mac 174389 bytes_out 5557 174389 bytes_in 8307 174389 station_ip 5.113.23.107 174389 port 55 174389 unique_id port 174389 remote_ip 10.8.0.58 174390 username aminvpn 174390 mac 174390 bytes_out 0 174390 bytes_in 0 174390 station_ip 5.113.23.107 174390 port 55 174390 unique_id port 174390 remote_ip 10.8.0.58 174391 username shadkam 174391 mac 174391 bytes_out 0 174391 bytes_in 0 174391 station_ip 5.202.7.117 174391 port 56 174391 unique_id port 174391 remote_ip 10.8.0.74 174392 username aminvpn 174392 mac 174392 bytes_out 0 174392 bytes_in 0 174392 station_ip 5.113.23.107 174392 port 55 174392 unique_id port 174392 remote_ip 10.8.0.58 174393 username aminvpn 174393 kill_reason Maximum check online fails reached 174393 mac 174393 bytes_out 0 174393 bytes_in 0 174393 station_ip 5.113.23.107 174393 port 55 174393 unique_id port 174394 username aminvpn 174394 mac 174394 bytes_out 0 174394 bytes_in 0 174394 station_ip 5.113.23.107 174394 port 58 174394 unique_id port 174394 remote_ip 10.8.0.58 174396 username aminvpn 174396 mac 174396 bytes_out 5017 174396 bytes_in 10526 174396 station_ip 5.113.23.107 174396 port 58 174396 unique_id port 174396 remote_ip 10.8.0.58 174401 username aminvpn 174401 mac 174401 bytes_out 0 174401 bytes_in 0 174401 station_ip 5.113.23.107 174401 port 59 174401 unique_id port 174401 remote_ip 10.8.0.58 174402 username shadkam 174402 mac 174402 bytes_out 109989 174402 bytes_in 615332 174402 station_ip 5.202.7.117 174402 port 57 174402 unique_id port 174402 remote_ip 10.8.0.74 174406 username morteza 174406 mac 174406 bytes_out 0 174406 bytes_in 0 174406 station_ip 94.241.178.199 174406 port 56 174406 unique_id port 174409 username aminvpn 174409 mac 174409 bytes_out 0 174409 bytes_in 0 174409 station_ip 5.113.23.107 174409 port 57 174409 unique_id port 174409 remote_ip 10.8.0.58 174414 username aminvpn 174414 mac 174414 bytes_out 0 174414 bytes_in 0 174414 station_ip 5.113.23.107 174414 port 58 174414 unique_id port 174414 remote_ip 10.8.0.58 174416 username aminvpn 174416 kill_reason Maximum check online fails reached 174416 mac 174416 bytes_out 0 174416 bytes_in 0 174416 station_ip 5.113.23.107 174416 port 58 174416 unique_id port 174419 username aminvpn 174419 mac 174419 bytes_out 0 174419 bytes_in 0 174419 station_ip 5.113.23.107 174419 port 59 174419 unique_id port 174419 remote_ip 10.8.0.58 174420 username godarzi 174420 mac 174420 bytes_out 2625009 174420 bytes_in 11541760 174420 station_ip 5.202.1.160 174420 port 57 174420 unique_id port 174420 remote_ip 10.8.0.38 174424 username aminvpn 174424 mac 174424 bytes_out 0 174424 bytes_in 0 174424 station_ip 5.113.23.107 174424 port 57 174424 unique_id port 174424 remote_ip 10.8.0.58 174425 username aminvpn 174425 mac 174425 bytes_out 10577 174425 bytes_in 14234 174425 station_ip 5.113.23.107 174425 port 56 174425 unique_id port 174425 remote_ip 10.8.0.58 174427 username aminvpn 174427 mac 174427 bytes_out 0 174427 bytes_in 0 174427 station_ip 5.113.23.107 174427 port 56 174427 unique_id port 174427 remote_ip 10.8.0.58 174428 username aminvpn 174428 kill_reason Maximum check online fails reached 174428 mac 174428 bytes_out 0 174428 bytes_in 0 174428 station_ip 5.113.23.107 174428 port 59 174428 unique_id port 174429 username aminvpn 174429 mac 174429 bytes_out 86580 174429 bytes_in 465387 174429 station_ip 5.113.23.107 174429 port 56 174429 unique_id port 174429 remote_ip 10.8.0.58 174431 username godarzi 174431 mac 174431 bytes_out 1838034 174431 bytes_in 10747140 174431 station_ip 5.202.1.160 174431 port 57 174431 unique_id port 174431 remote_ip 10.8.0.38 174432 username aminvpn 174432 mac 174432 bytes_out 87744 174432 bytes_in 366280 174432 station_ip 5.113.23.107 174432 port 56 174432 unique_id port 174432 remote_ip 10.8.0.58 174435 username aminvpn 174435 mac 174435 bytes_out 30437 174435 bytes_in 50929 174435 station_ip 5.113.23.107 174435 port 56 174435 unique_id port 174435 remote_ip 10.8.0.58 174439 username aminvpn 174439 mac 174439 bytes_out 0 174439 bytes_in 0 174439 station_ip 5.113.23.107 174439 port 56 174439 unique_id port 174439 remote_ip 10.8.0.58 174440 username meysam 174440 mac 174440 bytes_out 0 174440 bytes_in 0 174395 username aminvpn 174395 mac 174395 bytes_out 1644 174395 bytes_in 5089 174395 station_ip 5.113.23.107 174395 port 58 174395 unique_id port 174395 remote_ip 10.8.0.58 174397 username aminvpn 174397 mac 174397 bytes_out 0 174397 bytes_in 0 174397 station_ip 5.113.23.107 174397 port 59 174397 unique_id port 174397 remote_ip 10.8.0.58 174398 username shadkam 174398 kill_reason Another user logged on this global unique id 174398 mac 174398 bytes_out 0 174398 bytes_in 0 174398 station_ip 5.202.7.117 174398 port 57 174398 unique_id port 174398 remote_ip 10.8.0.74 174399 username shadkam 174399 mac 174399 bytes_out 0 174399 bytes_in 0 174399 station_ip 5.202.7.117 174399 port 57 174399 unique_id port 174403 username morteza 174403 kill_reason Another user logged on this global unique id 174403 mac 174403 bytes_out 0 174403 bytes_in 0 174403 station_ip 94.241.178.199 174403 port 56 174403 unique_id port 174403 remote_ip 10.8.0.174 174404 username aminvpn 174404 mac 174404 bytes_out 95743 174404 bytes_in 260295 174404 station_ip 5.113.23.107 174404 port 57 174404 unique_id port 174404 remote_ip 10.8.0.58 174407 username shadkam 174407 mac 174407 bytes_out 1897562 174407 bytes_in 12687899 174407 station_ip 5.202.7.117 174407 port 57 174407 unique_id port 174407 remote_ip 10.8.0.74 174410 username aminvpn 174410 mac 174410 bytes_out 10309 174410 bytes_in 11477 174410 station_ip 5.113.23.107 174410 port 56 174410 unique_id port 174410 remote_ip 10.8.0.58 174412 username aminvpn 174412 mac 174412 bytes_out 1644 174412 bytes_in 4564 174412 station_ip 5.113.23.107 174412 port 56 174412 unique_id port 174412 remote_ip 10.8.0.58 174413 username aminvpn 174413 mac 174413 bytes_out 32886 174413 bytes_in 238754 174413 station_ip 5.113.23.107 174413 port 56 174413 unique_id port 174413 remote_ip 10.8.0.58 174417 username morteza 174417 mac 174417 bytes_out 2689910 174417 bytes_in 636439 174417 station_ip 94.241.178.199 174417 port 59 174417 unique_id port 174417 remote_ip 10.8.0.174 174418 username aminvpn 174418 mac 174418 bytes_out 7533 174418 bytes_in 10204 174418 station_ip 5.113.23.107 174418 port 56 174418 unique_id port 174418 remote_ip 10.8.0.58 174421 username aminvpn 174421 mac 174421 bytes_out 2148288 174421 bytes_in 26821414 174421 station_ip 5.113.23.107 174421 port 56 174421 unique_id port 174421 remote_ip 10.8.0.58 174426 username aminvpn 174426 mac 174426 bytes_out 0 174426 bytes_in 0 174426 station_ip 5.113.23.107 174426 port 59 174426 unique_id port 174426 remote_ip 10.8.0.58 174434 username godarzi 174434 mac 174434 bytes_out 77818 174434 bytes_in 99768 174434 station_ip 5.202.1.160 174434 port 57 174434 unique_id port 174434 remote_ip 10.8.0.38 174436 username godarzi 174436 mac 174436 bytes_out 426033 174436 bytes_in 5156066 174436 station_ip 5.202.1.160 174436 port 56 174436 unique_id port 174436 remote_ip 10.8.0.38 174437 username aminvpn 174437 mac 174437 bytes_out 0 174437 bytes_in 0 174437 station_ip 5.113.23.107 174437 port 56 174437 unique_id port 174437 remote_ip 10.8.0.58 174446 username meysam 174446 mac 174446 bytes_out 2402695 174446 bytes_in 38132648 174446 station_ip 188.159.254.187 174446 port 60 174446 unique_id port 174446 remote_ip 10.8.0.158 174449 username aminvpn 174449 mac 174449 bytes_out 0 174449 bytes_in 0 174449 station_ip 5.113.23.107 174449 port 60 174449 unique_id port 174449 remote_ip 10.8.0.58 174450 username aminvpn 174450 mac 174400 username aminvpn 174400 mac 174400 bytes_out 218224 174400 bytes_in 544862 174400 station_ip 5.113.23.107 174400 port 58 174400 unique_id port 174400 remote_ip 10.8.0.58 174405 username aminvpn 174405 mac 174405 bytes_out 0 174405 bytes_in 0 174405 station_ip 5.113.23.107 174405 port 58 174405 unique_id port 174405 remote_ip 10.8.0.58 174408 username aminvpn 174408 mac 174408 bytes_out 13853 174408 bytes_in 13300 174408 station_ip 5.113.23.107 174408 port 56 174408 unique_id port 174408 remote_ip 10.8.0.58 174411 username aminvpn 174411 mac 174411 bytes_out 0 174411 bytes_in 0 174411 station_ip 5.113.23.107 174411 port 57 174411 unique_id port 174411 remote_ip 10.8.0.58 174415 username aminvpn 174415 mac 174415 bytes_out 0 174415 bytes_in 0 174415 station_ip 5.113.23.107 174415 port 56 174415 unique_id port 174415 remote_ip 10.8.0.58 174422 username aminvpn 174422 mac 174422 bytes_out 0 174422 bytes_in 0 174422 station_ip 5.113.23.107 174422 port 57 174422 unique_id port 174422 remote_ip 10.8.0.58 174423 username aminvpn 174423 mac 174423 bytes_out 18512 174423 bytes_in 44991 174423 station_ip 5.113.23.107 174423 port 56 174423 unique_id port 174423 remote_ip 10.8.0.58 174430 username aminvpn 174430 mac 174430 bytes_out 0 174430 bytes_in 0 174430 station_ip 5.113.23.107 174430 port 60 174430 unique_id port 174430 remote_ip 10.8.0.58 174433 username aminvpn 174433 mac 174433 bytes_out 0 174433 bytes_in 0 174433 station_ip 5.113.23.107 174433 port 60 174433 unique_id port 174433 remote_ip 10.8.0.58 174438 username meysam 174438 kill_reason Another user logged on this global unique id 174438 mac 174438 bytes_out 0 174438 bytes_in 0 174438 station_ip 188.159.254.187 174438 port 57 174438 unique_id port 174438 remote_ip 10.8.0.158 174441 username aminvpn 174441 unique_id port 174441 terminate_cause User-Request 174441 bytes_out 7377425 174441 bytes_in 256448536 174441 station_ip 5.113.23.107 174441 port 15728935 174441 nas_port_type Virtual 174441 remote_ip 5.5.5.139 174442 username aminvpn 174442 mac 174442 bytes_out 10180 174442 bytes_in 14222 174442 station_ip 5.113.23.107 174442 port 57 174442 unique_id port 174442 remote_ip 10.8.0.58 174444 username aminvpn 174444 mac 174444 bytes_out 8266 174444 bytes_in 9906 174444 station_ip 5.113.23.107 174444 port 57 174444 unique_id port 174444 remote_ip 10.8.0.58 174447 username aminvpn 174447 unique_id port 174447 terminate_cause User-Request 174447 bytes_out 11284533 174447 bytes_in 534609739 174447 station_ip 31.57.132.198 174447 port 15728936 174447 nas_port_type Virtual 174447 remote_ip 5.5.5.138 174448 username aminvpn 174448 mac 174448 bytes_out 0 174448 bytes_in 0 174448 station_ip 5.113.23.107 174448 port 60 174448 unique_id port 174448 remote_ip 10.8.0.58 174453 username aminvpn 174453 mac 174453 bytes_out 0 174453 bytes_in 0 174453 station_ip 5.113.23.107 174453 port 61 174453 unique_id port 174453 remote_ip 10.8.0.58 174455 username meysam 174455 mac 174455 bytes_out 1310245 174455 bytes_in 18571747 174455 station_ip 188.159.254.187 174455 port 60 174455 unique_id port 174455 remote_ip 10.8.0.158 174457 username aminvpn 174457 mac 174457 bytes_out 0 174457 bytes_in 0 174457 station_ip 5.113.23.107 174457 port 56 174457 unique_id port 174457 remote_ip 10.8.0.58 174466 username aminvpn 174466 mac 174466 bytes_out 0 174466 bytes_in 0 174466 station_ip 5.113.23.107 174466 port 52 174466 unique_id port 174466 remote_ip 10.8.0.58 174440 station_ip 188.159.254.187 174440 port 57 174440 unique_id port 174443 username aminvpn 174443 mac 174443 bytes_out 0 174443 bytes_in 0 174443 station_ip 5.113.23.107 174443 port 61 174443 unique_id port 174443 remote_ip 10.8.0.58 174445 username aminvpn 174445 kill_reason Maximum check online fails reached 174445 mac 174445 bytes_out 0 174445 bytes_in 0 174445 station_ip 5.113.23.107 174445 port 57 174445 unique_id port 174451 username godarzi 174451 mac 174451 bytes_out 3298220 174451 bytes_in 25221405 174451 station_ip 5.202.1.160 174451 port 56 174451 unique_id port 174451 remote_ip 10.8.0.38 174454 username godarzi 174454 mac 174454 bytes_out 84776 174454 bytes_in 186433 174454 station_ip 5.202.1.160 174454 port 56 174454 unique_id port 174454 remote_ip 10.8.0.38 174459 username aminvpn 174459 unique_id port 174459 terminate_cause User-Request 174459 bytes_out 917118 174459 bytes_in 18867682 174459 station_ip 31.57.132.198 174459 port 15728941 174459 nas_port_type Virtual 174459 remote_ip 5.5.5.135 174462 username aminvpn 174462 mac 174462 bytes_out 0 174462 bytes_in 0 174462 station_ip 5.113.23.107 174462 port 52 174462 unique_id port 174462 remote_ip 10.8.0.58 174463 username aminvpn 174463 unique_id port 174463 terminate_cause User-Request 174463 bytes_out 680761 174463 bytes_in 7066448 174463 station_ip 5.119.64.205 174463 port 15728942 174463 nas_port_type Virtual 174463 remote_ip 5.5.5.133 174464 username afarin1 174464 mac 174464 bytes_out 152830 174464 bytes_in 1349449 174464 station_ip 151.238.244.184 174464 port 52 174464 unique_id port 174464 remote_ip 10.8.0.178 174465 username aminvpn 174465 mac 174465 bytes_out 0 174465 bytes_in 0 174465 station_ip 5.113.23.107 174465 port 52 174465 unique_id port 174465 remote_ip 10.8.0.58 174467 username hamid.e 174467 unique_id port 174467 terminate_cause User-Request 174467 bytes_out 13344606 174467 bytes_in 248727627 174467 station_ip 37.27.25.106 174467 port 15728940 174467 nas_port_type Virtual 174467 remote_ip 5.5.5.136 174469 username godarzi 174469 kill_reason Another user logged on this global unique id 174469 mac 174469 bytes_out 0 174469 bytes_in 0 174469 station_ip 5.202.1.160 174469 port 60 174469 unique_id port 174469 remote_ip 10.8.0.38 174477 username aminvpn 174477 mac 174477 bytes_out 1644 174477 bytes_in 5089 174477 station_ip 5.113.23.107 174477 port 52 174477 unique_id port 174477 remote_ip 10.8.0.58 174480 username aminvpn 174480 mac 174480 bytes_out 0 174480 bytes_in 0 174480 station_ip 5.113.23.107 174480 port 52 174480 unique_id port 174480 remote_ip 10.8.0.58 174482 username aminvpn 174482 mac 174482 bytes_out 0 174482 bytes_in 0 174482 station_ip 5.113.23.107 174482 port 52 174482 unique_id port 174482 remote_ip 10.8.0.58 174483 username aminvpn 174483 mac 174483 bytes_out 0 174483 bytes_in 0 174483 station_ip 5.113.23.107 174483 port 52 174483 unique_id port 174483 remote_ip 10.8.0.58 174489 username aminvpn 174489 unique_id port 174489 terminate_cause User-Request 174489 bytes_out 8120134 174489 bytes_in 155055319 174489 station_ip 31.57.132.198 174489 port 15728943 174489 nas_port_type Virtual 174489 remote_ip 5.5.5.132 174491 username aminvpn 174491 mac 174491 bytes_out 0 174491 bytes_in 0 174491 station_ip 5.113.23.107 174491 port 52 174491 unique_id port 174491 remote_ip 10.8.0.58 174497 username kordestani 174497 mac 174497 bytes_out 1459895 174497 bytes_in 15665370 174497 station_ip 151.235.79.2 174497 port 52 174497 unique_id port 174497 remote_ip 10.8.0.130 174450 bytes_out 0 174450 bytes_in 0 174450 station_ip 5.113.23.107 174450 port 60 174450 unique_id port 174450 remote_ip 10.8.0.58 174452 username godarzi 174452 mac 174452 bytes_out 339482 174452 bytes_in 2707030 174452 station_ip 5.202.1.160 174452 port 56 174452 unique_id port 174452 remote_ip 10.8.0.38 174456 username aminvpn 174456 mac 174456 bytes_out 72034 174456 bytes_in 113569 174456 station_ip 5.113.23.107 174456 port 56 174456 unique_id port 174456 remote_ip 10.8.0.58 174458 username mosi 174458 mac 174458 bytes_out 0 174458 bytes_in 0 174458 station_ip 151.235.117.39 174458 port 52 174458 unique_id port 174460 username aminvpn 174460 mac 174460 bytes_out 0 174460 bytes_in 0 174460 station_ip 5.113.23.107 174460 port 52 174460 unique_id port 174460 remote_ip 10.8.0.58 174461 username aminvpn 174461 mac 174461 bytes_out 0 174461 bytes_in 0 174461 station_ip 5.113.23.107 174461 port 52 174461 unique_id port 174461 remote_ip 10.8.0.58 174471 username meysam 174471 mac 174471 bytes_out 1107861 174471 bytes_in 14966419 174471 station_ip 188.159.254.187 174471 port 56 174471 unique_id port 174471 remote_ip 10.8.0.158 174472 username aminvpn 174472 mac 174472 bytes_out 0 174472 bytes_in 0 174472 station_ip 5.113.23.107 174472 port 52 174472 unique_id port 174472 remote_ip 10.8.0.58 174473 username meysam 174473 mac 174473 bytes_out 0 174473 bytes_in 0 174473 station_ip 188.159.254.187 174473 port 52 174473 unique_id port 174473 remote_ip 10.8.0.158 174475 username aminvpn 174475 mac 174475 bytes_out 0 174475 bytes_in 0 174475 station_ip 5.113.23.107 174475 port 52 174475 unique_id port 174475 remote_ip 10.8.0.58 174479 username aminvpn 174479 mac 174479 bytes_out 0 174479 bytes_in 0 174479 station_ip 5.113.23.107 174479 port 52 174479 unique_id port 174479 remote_ip 10.8.0.58 174486 username meysam 174486 mac 174486 bytes_out 767192 174486 bytes_in 9985033 174486 station_ip 188.159.254.187 174486 port 52 174486 unique_id port 174486 remote_ip 10.8.0.158 174498 username aminvpn 174498 mac 174498 bytes_out 155765 174498 bytes_in 363935 174498 station_ip 5.113.23.107 174498 port 60 174498 unique_id port 174498 remote_ip 10.8.0.58 174500 username arash 174500 mac 174500 bytes_out 1564 174500 bytes_in 4959 174500 station_ip 37.27.6.223 174500 port 60 174500 unique_id port 174500 remote_ip 10.8.0.70 174503 username aminvpn 174503 mac 174503 bytes_out 0 174503 bytes_in 0 174503 station_ip 5.113.23.107 174503 port 61 174503 unique_id port 174503 remote_ip 10.8.0.58 174505 username aminvpn 174505 mac 174505 bytes_out 10070 174505 bytes_in 16010 174505 station_ip 5.113.23.107 174505 port 52 174505 unique_id port 174505 remote_ip 10.8.0.58 174512 username amin.saeedi 174512 unique_id port 174512 terminate_cause User-Request 174512 bytes_out 2041434 174512 bytes_in 24968238 174512 station_ip 31.56.156.69 174512 port 15728946 174512 nas_port_type Virtual 174512 remote_ip 5.5.5.128 174518 username godarzi 174518 mac 174518 bytes_out 1356645 174518 bytes_in 1004299 174518 station_ip 5.202.1.160 174518 port 60 174518 unique_id port 174518 remote_ip 10.8.0.38 174519 username aminvpn 174519 mac 174519 bytes_out 1351395 174519 bytes_in 13036138 174519 station_ip 5.113.23.107 174519 port 52 174519 unique_id port 174519 remote_ip 10.8.0.58 174527 username godarzi 174527 mac 174527 bytes_out 99291 174527 bytes_in 169893 174527 station_ip 5.202.1.160 174527 port 60 174468 username aminvpn 174468 mac 174468 bytes_out 0 174468 bytes_in 0 174468 station_ip 5.113.23.107 174468 port 56 174468 unique_id port 174468 remote_ip 10.8.0.58 174470 username mostafa_es78 174470 mac 174470 bytes_out 2092650 174470 bytes_in 10565173 174470 station_ip 178.236.35.96 174470 port 52 174470 unique_id port 174470 remote_ip 10.8.0.34 174474 username aminvpn 174474 mac 174474 bytes_out 0 174474 bytes_in 0 174474 station_ip 5.113.23.107 174474 port 52 174474 unique_id port 174474 remote_ip 10.8.0.58 174476 username aminvpn 174476 mac 174476 bytes_out 0 174476 bytes_in 0 174476 station_ip 5.113.23.107 174476 port 52 174476 unique_id port 174476 remote_ip 10.8.0.58 174478 username aminvpn 174478 mac 174478 bytes_out 0 174478 bytes_in 0 174478 station_ip 5.113.23.107 174478 port 52 174478 unique_id port 174478 remote_ip 10.8.0.58 174481 username aminvpn 174481 mac 174481 bytes_out 0 174481 bytes_in 0 174481 station_ip 5.113.23.107 174481 port 52 174481 unique_id port 174481 remote_ip 10.8.0.58 174484 username aminvpn 174484 mac 174484 bytes_out 0 174484 bytes_in 0 174484 station_ip 5.113.23.107 174484 port 52 174484 unique_id port 174484 remote_ip 10.8.0.58 174485 username aminvpn 174485 kill_reason Maximum check online fails reached 174485 mac 174485 bytes_out 0 174485 bytes_in 0 174485 station_ip 5.113.23.107 174485 port 56 174485 unique_id port 174487 username aminvpn 174487 mac 174487 bytes_out 0 174487 bytes_in 0 174487 station_ip 5.113.23.107 174487 port 52 174487 unique_id port 174487 remote_ip 10.8.0.58 174488 username aminvpn 174488 mac 174488 bytes_out 1644 174488 bytes_in 5036 174488 station_ip 5.113.23.107 174488 port 52 174488 unique_id port 174488 remote_ip 10.8.0.58 174490 username meysam 174490 mac 174490 bytes_out 758515 174490 bytes_in 10497769 174490 station_ip 188.159.254.187 174490 port 52 174490 unique_id port 174490 remote_ip 10.8.0.158 174492 username aminvpn 174492 mac 174492 bytes_out 0 174492 bytes_in 0 174492 station_ip 5.113.23.107 174492 port 52 174492 unique_id port 174492 remote_ip 10.8.0.58 174493 username godarzi 174493 mac 174493 bytes_out 0 174493 bytes_in 0 174493 station_ip 5.202.1.160 174493 port 60 174493 unique_id port 174494 username aminvpn 174494 mac 174494 bytes_out 0 174494 bytes_in 0 174494 station_ip 5.113.23.107 174494 port 61 174494 unique_id port 174494 remote_ip 10.8.0.58 174495 username godarzi 174495 mac 174495 bytes_out 1071298 174495 bytes_in 6189052 174495 station_ip 5.202.1.160 174495 port 60 174495 unique_id port 174495 remote_ip 10.8.0.38 174496 username aminvpn 174496 mac 174496 bytes_out 0 174496 bytes_in 0 174496 station_ip 5.113.23.107 174496 port 60 174496 unique_id port 174496 remote_ip 10.8.0.58 174499 username aminvpn 174499 mac 174499 bytes_out 0 174499 bytes_in 0 174499 station_ip 5.113.23.107 174499 port 52 174499 unique_id port 174499 remote_ip 10.8.0.58 174501 username aminvpn 174501 mac 174501 bytes_out 8374 174501 bytes_in 11683 174501 station_ip 5.113.23.107 174501 port 52 174501 unique_id port 174501 remote_ip 10.8.0.58 174506 username aminvpn 174506 mac 174506 bytes_out 0 174506 bytes_in 0 174506 station_ip 5.113.23.107 174506 port 60 174506 unique_id port 174506 remote_ip 10.8.0.58 174508 username aminvpn 174508 mac 174508 bytes_out 7751 174508 bytes_in 10718 174508 station_ip 5.113.23.107 174508 port 52 174508 unique_id port 174502 username godarzi 174502 mac 174502 bytes_out 0 174502 bytes_in 0 174502 station_ip 5.202.1.160 174502 port 60 174502 unique_id port 174502 remote_ip 10.8.0.38 174504 username aminvpn 174504 unique_id port 174504 terminate_cause User-Request 174504 bytes_out 2362195 174504 bytes_in 115771325 174504 station_ip 31.57.132.198 174504 port 15728945 174504 nas_port_type Virtual 174504 remote_ip 5.5.5.129 174507 username godarzi 174507 mac 174507 bytes_out 699103 174507 bytes_in 5363042 174507 station_ip 5.202.1.160 174507 port 60 174507 unique_id port 174507 remote_ip 10.8.0.38 174509 username aminvpn 174509 mac 174509 bytes_out 0 174509 bytes_in 0 174509 station_ip 5.113.23.107 174509 port 60 174509 unique_id port 174509 remote_ip 10.8.0.58 174510 username godarzi 174510 mac 174510 bytes_out 277862 174510 bytes_in 3896553 174510 station_ip 5.202.1.160 174510 port 60 174510 unique_id port 174510 remote_ip 10.8.0.38 174511 username aminvpn 174511 mac 174511 bytes_out 9975 174511 bytes_in 12373 174511 station_ip 5.113.23.107 174511 port 52 174511 unique_id port 174511 remote_ip 10.8.0.58 174513 username aminvpn 174513 mac 174513 bytes_out 0 174513 bytes_in 0 174513 station_ip 5.113.23.107 174513 port 60 174513 unique_id port 174513 remote_ip 10.8.0.58 174517 username aminvpn 174517 mac 174517 bytes_out 0 174517 bytes_in 0 174517 station_ip 5.113.23.107 174517 port 61 174517 unique_id port 174517 remote_ip 10.8.0.58 174521 username godarzi 174521 mac 174521 bytes_out 0 174521 bytes_in 0 174521 station_ip 5.202.1.160 174521 port 61 174521 unique_id port 174521 remote_ip 10.8.0.38 174523 username aminvpn 174523 mac 174523 bytes_out 0 174523 bytes_in 0 174523 station_ip 5.113.23.107 174523 port 61 174523 unique_id port 174523 remote_ip 10.8.0.58 174524 username aminvpn 174524 mac 174524 bytes_out 0 174524 bytes_in 0 174524 station_ip 5.113.23.107 174524 port 52 174524 unique_id port 174524 remote_ip 10.8.0.58 174530 username aminvpn 174530 mac 174530 bytes_out 0 174530 bytes_in 0 174530 station_ip 5.113.23.107 174530 port 60 174530 unique_id port 174530 remote_ip 10.8.0.58 174531 username godarzi 174531 mac 174531 bytes_out 58097 174531 bytes_in 84104 174531 station_ip 5.202.1.160 174531 port 60 174531 unique_id port 174531 remote_ip 10.8.0.38 174533 username aminvpn 174533 mac 174533 bytes_out 0 174533 bytes_in 0 174533 station_ip 5.113.23.107 174533 port 62 174533 unique_id port 174533 remote_ip 10.8.0.58 174542 username aminvpn 174542 mac 174542 bytes_out 0 174542 bytes_in 0 174542 station_ip 5.113.23.107 174542 port 60 174542 unique_id port 174542 remote_ip 10.8.0.58 174544 username aminvpn 174544 kill_reason Maximum check online fails reached 174544 mac 174544 bytes_out 0 174544 bytes_in 0 174544 station_ip 5.113.23.107 174544 port 60 174544 unique_id port 174545 username aminvpn 174545 mac 174545 bytes_out 222138 174545 bytes_in 387673 174545 station_ip 5.113.23.107 174545 port 52 174545 unique_id port 174545 remote_ip 10.8.0.58 174549 username aminvpn 174549 mac 174549 bytes_out 0 174549 bytes_in 0 174549 station_ip 5.113.23.107 174549 port 52 174549 unique_id port 174549 remote_ip 10.8.0.58 174554 username aminvpn 174554 mac 174554 bytes_out 0 174554 bytes_in 0 174554 station_ip 5.113.23.107 174554 port 61 174554 unique_id port 174554 remote_ip 10.8.0.58 174557 username aminvpn 174557 mac 174557 bytes_out 13530 174557 bytes_in 19920 174508 remote_ip 10.8.0.58 174514 username mosi 174514 mac 174514 bytes_out 2313 174514 bytes_in 5246 174514 station_ip 151.235.117.39 174514 port 60 174514 unique_id port 174514 remote_ip 10.8.0.142 174515 username mosi 174515 mac 174515 bytes_out 4732 174515 bytes_in 7261 174515 station_ip 151.235.117.39 174515 port 61 174515 unique_id port 174515 remote_ip 10.8.0.142 174516 username aminvpn 174516 mac 174516 bytes_out 383164 174516 bytes_in 3698675 174516 station_ip 5.113.23.107 174516 port 52 174516 unique_id port 174516 remote_ip 10.8.0.58 174520 username aminvpn 174520 mac 174520 bytes_out 0 174520 bytes_in 0 174520 station_ip 5.113.23.107 174520 port 61 174520 unique_id port 174520 remote_ip 10.8.0.58 174522 username aminvpn 174522 mac 174522 bytes_out 2629581 174522 bytes_in 30041483 174522 station_ip 5.113.23.107 174522 port 52 174522 unique_id port 174522 remote_ip 10.8.0.58 174525 username aminvpn 174525 unique_id port 174525 terminate_cause Lost-Carrier 174525 bytes_out 2566807 174525 bytes_in 50436465 174525 station_ip 5.119.64.205 174525 port 15728948 174525 nas_port_type Virtual 174525 remote_ip 5.5.5.125 174526 username tahmorsi 174526 mac 174526 bytes_out 648748 174526 bytes_in 3169601 174526 station_ip 86.57.81.47 174526 port 60 174526 unique_id port 174526 remote_ip 10.8.0.238 174528 username aminvpn 174528 unique_id port 174528 terminate_cause Lost-Carrier 174528 bytes_out 6829962 174528 bytes_in 120979816 174528 station_ip 5.113.23.107 174528 port 15728944 174528 nas_port_type Virtual 174528 remote_ip 5.5.5.130 174529 username aminvpn 174529 mac 174529 bytes_out 1650925 174529 bytes_in 20994289 174529 station_ip 5.113.23.107 174529 port 52 174529 unique_id port 174529 remote_ip 10.8.0.58 174534 username mostafa_es78 174534 mac 174534 bytes_out 522428 174534 bytes_in 5943294 174534 station_ip 178.236.35.96 174534 port 60 174534 unique_id port 174534 remote_ip 10.8.0.34 174538 username aminvpn 174538 mac 174538 bytes_out 0 174538 bytes_in 0 174538 station_ip 5.113.23.107 174538 port 60 174538 unique_id port 174538 remote_ip 10.8.0.58 174540 username hamid.e 174540 unique_id port 174540 terminate_cause User-Request 174540 bytes_out 11607248 174540 bytes_in 292492938 174540 station_ip 31.56.156.69 174540 port 15728947 174540 nas_port_type Virtual 174540 remote_ip 5.5.5.126 174547 username aminvpn 174547 mac 174547 bytes_out 0 174547 bytes_in 0 174547 station_ip 5.113.23.107 174547 port 52 174547 unique_id port 174547 remote_ip 10.8.0.58 174548 username aminvpn 174548 mac 174548 bytes_out 11767 174548 bytes_in 12210 174548 station_ip 5.113.23.107 174548 port 61 174548 unique_id port 174548 remote_ip 10.8.0.58 174550 username aminvpn 174550 mac 174550 bytes_out 0 174550 bytes_in 0 174550 station_ip 5.113.23.107 174550 port 52 174550 unique_id port 174550 remote_ip 10.8.0.58 174551 username aminvpn 174551 unique_id port 174551 terminate_cause User-Request 174551 bytes_out 798030 174551 bytes_in 11779613 174551 station_ip 5.119.64.205 174551 port 15728951 174551 nas_port_type Virtual 174551 remote_ip 5.5.5.123 174552 username aminvpn 174552 unique_id port 174552 terminate_cause User-Request 174552 bytes_out 16934 174552 bytes_in 206217 174552 station_ip 5.113.23.107 174552 port 15728952 174552 nas_port_type Virtual 174552 remote_ip 5.5.5.122 174553 username aminvpn 174553 mac 174553 bytes_out 36807 174553 bytes_in 80065 174553 station_ip 5.113.23.107 174553 port 52 174553 unique_id port 174553 remote_ip 10.8.0.58 174555 username aminvpn 174555 mac 174527 unique_id port 174527 remote_ip 10.8.0.38 174532 username aminvpn 174532 mac 174532 bytes_out 26267 174532 bytes_in 38114 174532 station_ip 5.113.23.107 174532 port 52 174532 unique_id port 174532 remote_ip 10.8.0.58 174535 username aminvpn 174535 mac 174535 bytes_out 236420 174535 bytes_in 1487967 174535 station_ip 5.113.23.107 174535 port 52 174535 unique_id port 174535 remote_ip 10.8.0.58 174536 username aminvpn 174536 mac 174536 bytes_out 0 174536 bytes_in 0 174536 station_ip 5.113.23.107 174536 port 60 174536 unique_id port 174536 remote_ip 10.8.0.58 174537 username aminvpn 174537 mac 174537 bytes_out 0 174537 bytes_in 0 174537 station_ip 5.113.23.107 174537 port 52 174537 unique_id port 174537 remote_ip 10.8.0.58 174539 username mosi 174539 mac 174539 bytes_out 481935 174539 bytes_in 2062064 174539 station_ip 151.235.117.39 174539 port 61 174539 unique_id port 174539 remote_ip 10.8.0.142 174541 username aminvpn 174541 mac 174541 bytes_out 34554 174541 bytes_in 55289 174541 station_ip 5.113.23.107 174541 port 52 174541 unique_id port 174541 remote_ip 10.8.0.58 174543 username hamid.e 174543 unique_id port 174543 terminate_cause User-Request 174543 bytes_out 524223 174543 bytes_in 9282750 174543 station_ip 31.56.156.69 174543 port 15728950 174543 nas_port_type Virtual 174543 remote_ip 5.5.5.124 174546 username aminvpn 174546 mac 174546 bytes_out 0 174546 bytes_in 0 174546 station_ip 5.113.23.107 174546 port 61 174546 unique_id port 174546 remote_ip 10.8.0.58 174556 username aminvpn 174556 mac 174556 bytes_out 0 174556 bytes_in 0 174556 station_ip 5.113.23.107 174556 port 52 174556 unique_id port 174556 remote_ip 10.8.0.58 174558 username aminvpn 174558 mac 174558 bytes_out 0 174558 bytes_in 0 174558 station_ip 5.113.23.107 174558 port 61 174558 unique_id port 174558 remote_ip 10.8.0.58 174559 username aminvpn 174559 mac 174559 bytes_out 57310 174559 bytes_in 43609 174559 station_ip 5.113.23.107 174559 port 52 174559 unique_id port 174559 remote_ip 10.8.0.58 174562 username aminvpn 174562 mac 174562 bytes_out 0 174562 bytes_in 0 174562 station_ip 5.113.23.107 174562 port 63 174562 unique_id port 174562 remote_ip 10.8.0.58 174563 username aminvpn 174563 mac 174563 bytes_out 0 174563 bytes_in 0 174563 station_ip 5.113.23.107 174563 port 52 174563 unique_id port 174563 remote_ip 10.8.0.58 174567 username aminvpn 174567 kill_reason Maximum check online fails reached 174567 unique_id port 174567 bytes_out 91319 174567 bytes_in 379637 174567 station_ip 31.57.132.198 174567 port 15728953 174567 nas_port_type Virtual 174567 remote_ip 5.5.5.121 174572 username aminvpn 174572 unique_id port 174572 terminate_cause User-Request 174572 bytes_out 274130 174572 bytes_in 1464537 174572 station_ip 5.119.64.205 174572 port 15728954 174572 nas_port_type Virtual 174572 remote_ip 5.5.5.120 174573 username meysam 174573 mac 174573 bytes_out 1644693 174573 bytes_in 25759147 174573 station_ip 188.159.254.187 174573 port 52 174573 unique_id port 174573 remote_ip 10.8.0.158 174579 username tahmorsi 174579 mac 174579 bytes_out 38953 174579 bytes_in 110654 174579 station_ip 86.57.81.47 174579 port 64 174579 unique_id port 174579 remote_ip 10.8.0.238 174580 username hashtadani4 174580 mac 174580 bytes_out 663650 174580 bytes_in 5095534 174580 station_ip 5.202.2.35 174580 port 62 174580 unique_id port 174580 remote_ip 10.8.0.22 174582 username aminvpn 174582 mac 174582 bytes_out 19811 174582 bytes_in 23156 174582 station_ip 77.237.178.135 174555 bytes_out 0 174555 bytes_in 0 174555 station_ip 5.113.23.107 174555 port 52 174555 unique_id port 174555 remote_ip 10.8.0.58 174560 username aminvpn 174560 mac 174560 bytes_out 0 174560 bytes_in 0 174560 station_ip 5.113.23.107 174560 port 61 174560 unique_id port 174560 remote_ip 10.8.0.58 174565 username meysam 174565 mac 174565 bytes_out 787580 174565 bytes_in 9224454 174565 station_ip 188.159.254.187 174565 port 62 174565 unique_id port 174565 remote_ip 10.8.0.158 174566 username aminvpn 174566 mac 174566 bytes_out 34286 174566 bytes_in 275854 174566 station_ip 5.113.23.107 174566 port 63 174566 unique_id port 174566 remote_ip 10.8.0.58 174569 username meysam 174569 mac 174569 bytes_out 1224130 174569 bytes_in 17413432 174569 station_ip 188.159.254.187 174569 port 52 174569 unique_id port 174569 remote_ip 10.8.0.158 174570 username aminvpn 174570 unique_id port 174570 terminate_cause User-Request 174570 bytes_out 107342 174570 bytes_in 1198173 174570 station_ip 31.57.130.50 174570 port 15728955 174570 nas_port_type Virtual 174570 remote_ip 5.5.5.118 174578 username meysam 174578 mac 174578 bytes_out 908479 174578 bytes_in 5436292 174578 station_ip 188.159.254.187 174578 port 62 174578 unique_id port 174578 remote_ip 10.8.0.158 174581 username hashtadani4 174581 mac 174581 bytes_out 0 174581 bytes_in 0 174581 station_ip 5.202.2.35 174581 port 62 174581 unique_id port 174581 remote_ip 10.8.0.22 174584 username aminvpn 174584 mac 174584 bytes_out 0 174584 bytes_in 0 174584 station_ip 77.237.178.135 174584 port 52 174584 unique_id port 174584 remote_ip 10.8.0.58 174585 username hashtadani4 174585 mac 174585 bytes_out 0 174585 bytes_in 0 174585 station_ip 5.202.2.35 174585 port 62 174585 unique_id port 174585 remote_ip 10.8.0.22 174587 username hashtadani4 174587 mac 174587 bytes_out 0 174587 bytes_in 0 174587 station_ip 5.202.2.35 174587 port 62 174587 unique_id port 174587 remote_ip 10.8.0.22 174589 username aminvpn 174589 mac 174589 bytes_out 0 174589 bytes_in 0 174589 station_ip 77.237.178.135 174589 port 62 174589 unique_id port 174589 remote_ip 10.8.0.58 174592 username mosi 174592 mac 174592 bytes_out 1067475 174592 bytes_in 8038557 174592 station_ip 151.235.117.39 174592 port 63 174592 unique_id port 174592 remote_ip 10.8.0.142 174594 username aminvpn 174594 mac 174594 bytes_out 13230 174594 bytes_in 15307 174594 station_ip 77.237.178.135 174594 port 52 174594 unique_id port 174594 remote_ip 10.8.0.58 174599 username hashtadani4 174599 mac 174599 bytes_out 7875 174599 bytes_in 9336 174599 station_ip 5.202.2.35 174599 port 63 174599 unique_id port 174599 remote_ip 10.8.0.22 174600 username kordestani 174600 mac 174600 bytes_out 2088270 174600 bytes_in 26028328 174600 station_ip 151.235.104.192 174600 port 61 174600 unique_id port 174600 remote_ip 10.8.0.130 174601 username hashtadani4 174601 mac 174601 bytes_out 0 174601 bytes_in 0 174601 station_ip 5.202.2.35 174601 port 61 174601 unique_id port 174601 remote_ip 10.8.0.22 174605 username shadkam 174605 mac 174605 bytes_out 5058164 174605 bytes_in 14866461 174605 station_ip 5.202.7.117 174605 port 61 174605 unique_id port 174605 remote_ip 10.8.0.74 174609 username aminvpn 174609 mac 174609 bytes_out 19317 174609 bytes_in 21641 174609 station_ip 77.237.178.135 174609 port 52 174609 unique_id port 174609 remote_ip 10.8.0.58 174610 username aminvpn 174610 mac 174610 bytes_out 0 174610 bytes_in 0 174557 station_ip 5.113.23.107 174557 port 52 174557 unique_id port 174557 remote_ip 10.8.0.58 174561 username aminvpn 174561 mac 174561 bytes_out 15573 174561 bytes_in 24045 174561 station_ip 5.113.23.107 174561 port 52 174561 unique_id port 174561 remote_ip 10.8.0.58 174564 username hatami 174564 mac 174564 bytes_out 119121 174564 bytes_in 729639 174564 station_ip 151.235.119.193 174564 port 61 174564 unique_id port 174564 remote_ip 10.8.0.98 174568 username mostafa_es78 174568 mac 174568 bytes_out 55841 174568 bytes_in 82471 174568 station_ip 178.236.35.96 174568 port 52 174568 unique_id port 174568 remote_ip 10.8.0.34 174571 username meysam 174571 mac 174571 bytes_out 397575 174571 bytes_in 5153478 174571 station_ip 188.159.254.187 174571 port 52 174571 unique_id port 174571 remote_ip 10.8.0.158 174574 username aminvpn 174574 unique_id port 174574 terminate_cause User-Request 174574 bytes_out 294676 174574 bytes_in 6037597 174574 station_ip 31.57.130.50 174574 port 15728957 174574 nas_port_type Virtual 174574 remote_ip 5.5.5.116 174575 username aminvpn 174575 mac 174575 bytes_out 20061 174575 bytes_in 27697 174575 station_ip 77.237.178.135 174575 port 52 174575 unique_id port 174575 remote_ip 10.8.0.58 174576 username aminvpn 174576 mac 174576 bytes_out 0 174576 bytes_in 0 174576 station_ip 77.237.178.135 174576 port 63 174576 unique_id port 174576 remote_ip 10.8.0.58 174577 username vanila 174577 kill_reason Relative expiration date has reached 174577 mac 174577 bytes_out 0 174577 bytes_in 0 174577 station_ip 37.27.43.226 174577 port 63 174577 unique_id port 174583 username aminvpn 174583 mac 174583 bytes_out 0 174583 bytes_in 0 174583 station_ip 77.237.178.135 174583 port 62 174583 unique_id port 174583 remote_ip 10.8.0.58 174591 username hashtadani4 174591 mac 174591 bytes_out 0 174591 bytes_in 0 174591 station_ip 5.202.2.35 174591 port 62 174591 unique_id port 174591 remote_ip 10.8.0.22 174593 username aminvpn 174593 unique_id port 174593 terminate_cause Lost-Carrier 174593 bytes_out 939954 174593 bytes_in 27967211 174593 station_ip 5.120.150.233 174593 port 15728960 174593 nas_port_type Virtual 174593 remote_ip 5.5.5.112 174595 username aminvpn 174595 mac 174595 bytes_out 0 174595 bytes_in 0 174595 station_ip 77.237.178.135 174595 port 62 174595 unique_id port 174595 remote_ip 10.8.0.58 174596 username hashtadani4 174596 mac 174596 bytes_out 1644 174596 bytes_in 5370 174596 station_ip 5.202.2.35 174596 port 62 174596 unique_id port 174596 remote_ip 10.8.0.22 174597 username hashtadani4 174597 mac 174597 bytes_out 0 174597 bytes_in 0 174597 station_ip 5.202.2.35 174597 port 63 174597 unique_id port 174597 remote_ip 10.8.0.22 174602 username aminvpn 174602 mac 174602 bytes_out 35035 174602 bytes_in 43954 174602 station_ip 77.237.178.135 174602 port 52 174602 unique_id port 174602 remote_ip 10.8.0.58 174604 username hashtadani4 174604 mac 174604 bytes_out 0 174604 bytes_in 0 174604 station_ip 5.202.2.35 174604 port 61 174604 unique_id port 174604 remote_ip 10.8.0.22 174607 username hashtadani4 174607 mac 174607 bytes_out 0 174607 bytes_in 0 174607 station_ip 5.202.2.35 174607 port 61 174607 unique_id port 174607 remote_ip 10.8.0.22 174608 username aminvpn 174608 unique_id port 174608 terminate_cause User-Request 174608 bytes_out 3985474 174608 bytes_in 124191405 174608 station_ip 31.57.130.50 174608 port 15728959 174608 nas_port_type Virtual 174608 remote_ip 5.5.5.113 174611 username aminvpn 174611 mac 174582 port 52 174582 unique_id port 174582 remote_ip 10.8.0.58 174586 username hashtadani4 174586 mac 174586 bytes_out 0 174586 bytes_in 0 174586 station_ip 5.202.2.35 174586 port 62 174586 unique_id port 174586 remote_ip 10.8.0.22 174588 username aminvpn 174588 mac 174588 bytes_out 8075 174588 bytes_in 9585 174588 station_ip 77.237.178.135 174588 port 52 174588 unique_id port 174588 remote_ip 10.8.0.58 174590 username aminvpn 174590 unique_id port 174590 terminate_cause Lost-Carrier 174590 bytes_out 269210 174590 bytes_in 3732569 174590 station_ip 5.120.150.233 174590 port 15728958 174590 nas_port_type Virtual 174590 remote_ip 5.5.5.114 174598 username tahmorsi 174598 mac 174598 bytes_out 125083 174598 bytes_in 420119 174598 station_ip 86.57.87.4 174598 port 62 174598 unique_id port 174598 remote_ip 10.8.0.238 174603 username aminvpn 174603 mac 174603 bytes_out 0 174603 bytes_in 0 174603 station_ip 77.237.178.135 174603 port 61 174603 unique_id port 174603 remote_ip 10.8.0.58 174606 username hamid.e 174606 unique_id port 174606 terminate_cause User-Request 174606 bytes_out 17456113 174606 bytes_in 360443129 174606 station_ip 37.27.25.106 174606 port 15728956 174606 nas_port_type Virtual 174606 remote_ip 5.5.5.117 174612 username aminvpn 174612 mac 174612 bytes_out 0 174612 bytes_in 0 174612 station_ip 77.237.178.135 174612 port 61 174612 unique_id port 174612 remote_ip 10.8.0.58 174615 username shadkam 174615 mac 174615 bytes_out 5137475 174615 bytes_in 19336098 174615 station_ip 5.202.7.117 174615 port 63 174615 unique_id port 174615 remote_ip 10.8.0.74 174619 username aminvpn 174619 mac 174619 bytes_out 0 174619 bytes_in 0 174619 station_ip 77.237.178.135 174619 port 61 174619 unique_id port 174619 remote_ip 10.8.0.58 174621 username meysam 174621 mac 174621 bytes_out 1334764 174621 bytes_in 16889651 174621 station_ip 188.159.252.117 174621 port 61 174621 unique_id port 174621 remote_ip 10.8.0.158 174626 username kordestani 174626 mac 174626 bytes_out 0 174626 bytes_in 0 174626 station_ip 151.235.109.163 174626 port 62 174626 unique_id port 174630 username hashtadani4 174630 mac 174630 bytes_out 0 174630 bytes_in 0 174630 station_ip 5.202.2.35 174630 port 61 174630 unique_id port 174630 remote_ip 10.8.0.22 174631 username aminvpn 174631 mac 174631 bytes_out 0 174631 bytes_in 0 174631 station_ip 77.237.178.135 174631 port 63 174631 unique_id port 174631 remote_ip 10.8.0.58 174632 username majidsarmast 174632 kill_reason Another user logged on this global unique id 174632 mac 174632 bytes_out 0 174632 bytes_in 0 174632 station_ip 86.57.127.17 174632 port 52 174632 unique_id port 174632 remote_ip 10.8.0.170 174634 username rahim 174634 mac 174634 bytes_out 10189960 174634 bytes_in 43868009 174634 station_ip 86.57.124.33 174634 port 64 174634 unique_id port 174634 remote_ip 10.8.0.134 174636 username aminvpn 174636 unique_id port 174636 terminate_cause Lost-Carrier 174636 bytes_out 718672 174636 bytes_in 9134354 174636 station_ip 5.120.150.233 174636 port 15728961 174636 nas_port_type Virtual 174636 remote_ip 5.5.5.111 174640 username hashtadani4 174640 mac 174640 bytes_out 0 174640 bytes_in 0 174640 station_ip 5.202.2.35 174640 port 63 174640 unique_id port 174640 remote_ip 10.8.0.22 174643 username kordestani 174643 kill_reason Another user logged on this global unique id 174643 mac 174643 bytes_out 0 174643 bytes_in 0 174643 station_ip 151.235.113.45 174643 port 63 174643 unique_id port 174643 remote_ip 10.8.0.130 174646 username aminvpn 174610 station_ip 77.237.178.135 174610 port 61 174610 unique_id port 174610 remote_ip 10.8.0.58 174613 username hashtadani4 174613 mac 174613 bytes_out 0 174613 bytes_in 0 174613 station_ip 5.202.2.35 174613 port 61 174613 unique_id port 174613 remote_ip 10.8.0.22 174616 username meysam 174616 mac 174616 bytes_out 744621 174616 bytes_in 10229100 174616 station_ip 188.159.252.117 174616 port 61 174616 unique_id port 174616 remote_ip 10.8.0.158 174618 username aminvpn 174618 mac 174618 bytes_out 8895 174618 bytes_in 10876 174618 station_ip 77.237.178.135 174618 port 52 174618 unique_id port 174618 remote_ip 10.8.0.58 174620 username hashtadani4 174620 mac 174620 bytes_out 0 174620 bytes_in 0 174620 station_ip 5.202.2.35 174620 port 63 174620 unique_id port 174620 remote_ip 10.8.0.22 174622 username kordestani 174622 kill_reason Another user logged on this global unique id 174622 mac 174622 bytes_out 0 174622 bytes_in 0 174622 station_ip 151.235.109.163 174622 port 62 174622 unique_id port 174622 remote_ip 10.8.0.130 174624 username aminvpn 174624 mac 174624 bytes_out 0 174624 bytes_in 0 174624 station_ip 77.237.178.135 174624 port 61 174624 unique_id port 174624 remote_ip 10.8.0.58 174625 username aminvpn 174625 mac 174625 bytes_out 0 174625 bytes_in 0 174625 station_ip 77.237.178.135 174625 port 52 174625 unique_id port 174625 remote_ip 10.8.0.58 174627 username hashtadani4 174627 kill_reason Maximum check online fails reached 174627 mac 174627 bytes_out 0 174627 bytes_in 0 174627 station_ip 5.202.2.35 174627 port 62 174627 unique_id port 174628 username hashtadani4 174628 mac 174628 bytes_out 0 174628 bytes_in 0 174628 station_ip 5.202.2.35 174628 port 63 174628 unique_id port 174628 remote_ip 10.8.0.22 174633 username hashtadani4 174633 mac 174633 bytes_out 0 174633 bytes_in 0 174633 station_ip 5.202.2.35 174633 port 65 174633 unique_id port 174633 remote_ip 10.8.0.22 174635 username hashtadani4 174635 mac 174635 bytes_out 0 174635 bytes_in 0 174635 station_ip 5.202.2.35 174635 port 66 174635 unique_id port 174635 remote_ip 10.8.0.22 174645 username aminvpn 174645 mac 174645 bytes_out 69231 174645 bytes_in 327731 174645 station_ip 77.237.178.135 174645 port 61 174645 unique_id port 174645 remote_ip 10.8.0.58 174648 username shadkam 174648 mac 174648 bytes_out 39546 174648 bytes_in 18631 174648 station_ip 5.202.7.117 174648 port 64 174648 unique_id port 174648 remote_ip 10.8.0.74 174650 username aminvpn 174650 mac 174650 bytes_out 0 174650 bytes_in 0 174650 station_ip 77.237.178.135 174650 port 64 174650 unique_id port 174650 remote_ip 10.8.0.58 174654 username aminvpn 174654 mac 174654 bytes_out 55066 174654 bytes_in 336562 174654 station_ip 77.237.178.135 174654 port 61 174654 unique_id port 174654 remote_ip 10.8.0.58 174658 username hashtadani4 174658 mac 174658 bytes_out 9200 174658 bytes_in 17942 174658 station_ip 5.202.2.35 174658 port 64 174658 unique_id port 174658 remote_ip 10.8.0.22 174661 username hashtadani4 174661 mac 174661 bytes_out 0 174661 bytes_in 0 174661 station_ip 5.202.2.35 174661 port 63 174661 unique_id port 174661 remote_ip 10.8.0.22 174662 username hashtadani4 174662 mac 174662 bytes_out 0 174662 bytes_in 0 174662 station_ip 5.202.2.35 174662 port 63 174662 unique_id port 174662 remote_ip 10.8.0.22 174666 username hashtadani4 174666 kill_reason Maximum check online fails reached 174666 mac 174666 bytes_out 0 174666 bytes_in 0 174666 station_ip 5.202.2.35 174611 bytes_out 0 174611 bytes_in 0 174611 station_ip 77.237.178.135 174611 port 52 174611 unique_id port 174611 remote_ip 10.8.0.58 174614 username hashtadani4 174614 mac 174614 bytes_out 0 174614 bytes_in 0 174614 station_ip 5.202.2.35 174614 port 65 174614 unique_id port 174614 remote_ip 10.8.0.22 174617 username hashtadani4 174617 mac 174617 bytes_out 0 174617 bytes_in 0 174617 station_ip 5.202.2.35 174617 port 63 174617 unique_id port 174617 remote_ip 10.8.0.22 174623 username aminvpn 174623 mac 174623 bytes_out 50452 174623 bytes_in 82017 174623 station_ip 77.237.178.135 174623 port 52 174623 unique_id port 174623 remote_ip 10.8.0.58 174629 username aminvpn 174629 mac 174629 bytes_out 76175 174629 bytes_in 321359 174629 station_ip 77.237.178.135 174629 port 61 174629 unique_id port 174629 remote_ip 10.8.0.58 174637 username rahim 174637 mac 174637 bytes_out 58878 174637 bytes_in 176987 174637 station_ip 86.57.124.33 174637 port 64 174637 unique_id port 174637 remote_ip 10.8.0.134 174638 username majidsarmast 174638 kill_reason Another user logged on this global unique id 174638 mac 174638 bytes_out 0 174638 bytes_in 0 174638 station_ip 86.57.127.17 174638 port 52 174638 unique_id port 174639 username shadkam 174639 mac 174639 bytes_out 13260134 174639 bytes_in 46502811 174639 station_ip 5.202.7.117 174639 port 63 174639 unique_id port 174639 remote_ip 10.8.0.74 174641 username hashtadani4 174641 mac 174641 bytes_out 0 174641 bytes_in 0 174641 station_ip 5.202.2.35 174641 port 63 174641 unique_id port 174641 remote_ip 10.8.0.22 174642 username hashtadani4 174642 mac 174642 bytes_out 0 174642 bytes_in 0 174642 station_ip 5.202.2.35 174642 port 64 174642 unique_id port 174642 remote_ip 10.8.0.22 174644 username godarzi 174644 kill_reason Another user logged on this global unique id 174644 mac 174644 bytes_out 0 174644 bytes_in 0 174644 station_ip 5.202.1.160 174644 port 65 174644 unique_id port 174644 remote_ip 10.8.0.38 174649 username aminvpn 174649 mac 174649 bytes_out 13013 174649 bytes_in 15705 174649 station_ip 77.237.178.135 174649 port 61 174649 unique_id port 174649 remote_ip 10.8.0.58 174664 username shadkam 174664 kill_reason Another user logged on this global unique id 174664 mac 174664 bytes_out 19164070 174664 bytes_in 50936784 174664 station_ip 5.202.7.117 174664 port 52 174664 unique_id port 174664 remote_ip 10.8.0.74 174665 username hashtadani4 174665 mac 174665 bytes_out 0 174665 bytes_in 0 174665 station_ip 5.202.2.35 174665 port 64 174665 unique_id port 174665 remote_ip 10.8.0.22 174667 username aminvpn 174667 kill_reason Another user logged on this global unique id 174667 mac 174667 bytes_out 0 174667 bytes_in 0 174667 station_ip 77.237.178.135 174667 port 61 174667 unique_id port 174667 remote_ip 10.8.0.58 174668 username hashtadani4 174668 mac 174668 bytes_out 47823 174668 bytes_in 98614 174668 station_ip 5.202.2.35 174668 port 64 174668 unique_id port 174668 remote_ip 10.8.0.22 174672 username shadkam 174672 mac 174672 bytes_out 0 174672 bytes_in 0 174672 station_ip 5.202.7.117 174672 port 52 174672 unique_id port 174673 username hashtadani4 174673 mac 174673 bytes_out 0 174673 bytes_in 0 174673 station_ip 5.202.2.35 174673 port 52 174673 unique_id port 174673 remote_ip 10.8.0.22 174675 username hashtadani4 174675 mac 174675 bytes_out 0 174675 bytes_in 0 174675 station_ip 5.202.2.35 174675 port 52 174675 unique_id port 174675 remote_ip 10.8.0.22 174676 username hashtadani4 174646 mac 174646 bytes_out 0 174646 bytes_in 0 174646 station_ip 77.237.178.135 174646 port 64 174646 unique_id port 174646 remote_ip 10.8.0.58 174647 username hashtadani4 174647 mac 174647 bytes_out 0 174647 bytes_in 0 174647 station_ip 5.202.2.35 174647 port 64 174647 unique_id port 174647 remote_ip 10.8.0.22 174651 username majidsarmast 174651 mac 174651 bytes_out 0 174651 bytes_in 0 174651 station_ip 86.57.127.17 174651 port 52 174651 unique_id port 174652 username hashtadani4 174652 mac 174652 bytes_out 0 174652 bytes_in 0 174652 station_ip 5.202.2.35 174652 port 52 174652 unique_id port 174652 remote_ip 10.8.0.22 174653 username aminvpn 174653 unique_id port 174653 terminate_cause Lost-Carrier 174653 bytes_out 8029476 174653 bytes_in 107894679 174653 station_ip 5.120.150.233 174653 port 15728962 174653 nas_port_type Virtual 174653 remote_ip 5.5.5.110 174655 username aminvpn 174655 mac 174655 bytes_out 0 174655 bytes_in 0 174655 station_ip 77.237.178.135 174655 port 64 174655 unique_id port 174655 remote_ip 10.8.0.58 174656 username aminvpn 174656 mac 174656 bytes_out 0 174656 bytes_in 0 174656 station_ip 77.237.178.135 174656 port 61 174656 unique_id port 174656 remote_ip 10.8.0.58 174657 username aminvpn 174657 mac 174657 bytes_out 555829 174657 bytes_in 7536472 174657 station_ip 77.237.178.135 174657 port 64 174657 unique_id port 174657 remote_ip 10.8.0.58 174659 username godarzi 174659 kill_reason Another user logged on this global unique id 174659 mac 174659 bytes_out 0 174659 bytes_in 0 174659 station_ip 5.202.1.160 174659 port 65 174659 unique_id port 174660 username kordestani 174660 mac 174660 bytes_out 0 174660 bytes_in 0 174660 station_ip 151.235.113.45 174660 port 63 174660 unique_id port 174663 username hashtadani4 174663 mac 174663 bytes_out 25240 174663 bytes_in 36496 174663 station_ip 5.202.2.35 174663 port 63 174663 unique_id port 174663 remote_ip 10.8.0.22 174678 username aminvpn 174678 mac 174678 bytes_out 0 174678 bytes_in 0 174678 station_ip 77.237.178.135 174678 port 61 174678 unique_id port 174682 username aminvpn 174682 kill_reason Maximum check online fails reached 174682 mac 174682 bytes_out 0 174682 bytes_in 0 174682 station_ip 77.237.178.135 174682 port 61 174682 unique_id port 174683 username godarzi 174683 kill_reason Maximum check online fails reached 174683 mac 174683 bytes_out 0 174683 bytes_in 0 174683 station_ip 5.202.1.160 174683 port 65 174683 unique_id port 174684 username aminvpn 174684 unique_id port 174684 terminate_cause User-Request 174684 bytes_out 12786604 174684 bytes_in 388509298 174684 station_ip 77.237.178.135 174684 port 15728963 174684 nas_port_type Virtual 174684 remote_ip 5.5.5.108 174686 username aminvpn 174686 mac 174686 bytes_out 0 174686 bytes_in 0 174686 station_ip 109.125.154.91 174686 port 65 174686 unique_id port 174686 remote_ip 10.8.0.58 174690 username shadkam 174690 kill_reason Another user logged on this global unique id 174690 mac 174690 bytes_out 0 174690 bytes_in 0 174690 station_ip 5.202.7.117 174690 port 52 174690 unique_id port 174691 username shadkam 174691 mac 174691 bytes_out 0 174691 bytes_in 0 174691 station_ip 5.202.7.117 174691 port 64 174691 unique_id port 174699 username shadkam 174699 kill_reason Another user logged on this global unique id 174699 mac 174699 bytes_out 0 174699 bytes_in 0 174699 station_ip 5.202.7.117 174699 port 52 174699 unique_id port 174699 remote_ip 10.8.0.74 174701 username godarzi 174701 mac 174701 bytes_out 0 174666 port 63 174666 unique_id port 174669 username hashtadani4 174669 mac 174669 bytes_out 0 174669 bytes_in 0 174669 station_ip 5.202.2.35 174669 port 64 174669 unique_id port 174669 remote_ip 10.8.0.22 174670 username hashtadani4 174670 mac 174670 bytes_out 0 174670 bytes_in 0 174670 station_ip 5.202.2.35 174670 port 64 174670 unique_id port 174670 remote_ip 10.8.0.22 174671 username hashtadani4 174671 mac 174671 bytes_out 0 174671 bytes_in 0 174671 station_ip 5.202.2.35 174671 port 64 174671 unique_id port 174671 remote_ip 10.8.0.22 174674 username hashtadani4 174674 mac 174674 bytes_out 0 174674 bytes_in 0 174674 station_ip 5.202.2.35 174674 port 52 174674 unique_id port 174674 remote_ip 10.8.0.22 174679 username aminvpn 174679 kill_reason Another user logged on this global unique id 174679 mac 174679 bytes_out 0 174679 bytes_in 0 174679 station_ip 77.237.178.135 174679 port 61 174679 unique_id port 174680 username godarzi 174680 kill_reason Another user logged on this global unique id 174680 mac 174680 bytes_out 0 174680 bytes_in 0 174680 station_ip 5.202.1.160 174680 port 65 174680 unique_id port 174685 username aminvpn 174685 mac 174685 bytes_out 3875172 174685 bytes_in 38197184 174685 station_ip 77.237.178.135 174685 port 52 174685 unique_id port 174685 remote_ip 10.8.0.58 174688 username aminvpn 174688 mac 174688 bytes_out 0 174688 bytes_in 0 174688 station_ip 109.125.154.91 174688 port 65 174688 unique_id port 174688 remote_ip 10.8.0.58 174695 username godarzi 174695 kill_reason Another user logged on this global unique id 174695 mac 174695 bytes_out 0 174695 bytes_in 0 174695 station_ip 5.202.1.160 174695 port 61 174695 unique_id port 174695 remote_ip 10.8.0.38 174697 username amin.saeedi 174697 unique_id port 174697 terminate_cause User-Request 174697 bytes_out 1211097 174697 bytes_in 40955076 174697 station_ip 31.56.221.212 174697 port 15728967 174697 nas_port_type Virtual 174697 remote_ip 5.5.5.103 174709 username aminvpn 174709 mac 174709 bytes_out 0 174709 bytes_in 0 174709 station_ip 5.119.25.167 174709 port 61 174709 unique_id port 174709 remote_ip 10.8.0.58 174710 username shadkam 174710 mac 174710 bytes_out 0 174710 bytes_in 0 174710 station_ip 5.202.7.117 174710 port 52 174710 unique_id port 174713 username kordestani 174713 kill_reason Another user logged on this global unique id 174713 mac 174713 bytes_out 0 174713 bytes_in 0 174713 station_ip 151.235.104.101 174713 port 61 174713 unique_id port 174714 username kordestani 174714 kill_reason Another user logged on this global unique id 174714 mac 174714 bytes_out 0 174714 bytes_in 0 174714 station_ip 151.235.104.101 174714 port 61 174714 unique_id port 174718 username aminvpn 174718 mac 174718 bytes_out 0 174718 bytes_in 0 174718 station_ip 5.119.25.167 174718 port 64 174718 unique_id port 174721 username kordestani 174721 kill_reason Another user logged on this global unique id 174721 mac 174721 bytes_out 0 174721 bytes_in 0 174721 station_ip 151.235.104.101 174721 port 61 174721 unique_id port 174722 username shadkam 174722 kill_reason Another user logged on this global unique id 174722 mac 174722 bytes_out 0 174722 bytes_in 0 174722 station_ip 5.202.7.117 174722 port 64 174722 unique_id port 174722 remote_ip 10.8.0.74 174724 username kordestani 174724 kill_reason Another user logged on this global unique id 174724 mac 174724 bytes_out 0 174724 bytes_in 0 174724 station_ip 151.235.104.101 174724 port 61 174724 unique_id port 174727 username afarin1 174727 mac 174727 bytes_out 29553 174727 bytes_in 57866 174676 kill_reason Another user logged on this global unique id 174676 mac 174676 bytes_out 0 174676 bytes_in 0 174676 station_ip 5.202.2.35 174676 port 52 174676 unique_id port 174677 username hashtadani4 174677 kill_reason Maximum check online fails reached 174677 mac 174677 bytes_out 0 174677 bytes_in 0 174677 station_ip 5.202.2.35 174677 port 52 174677 unique_id port 174681 username godarzi 174681 kill_reason Another user logged on this global unique id 174681 mac 174681 bytes_out 0 174681 bytes_in 0 174681 station_ip 5.202.1.160 174681 port 65 174681 unique_id port 174687 username shadkam 174687 kill_reason Another user logged on this global unique id 174687 mac 174687 bytes_out 0 174687 bytes_in 0 174687 station_ip 5.202.7.117 174687 port 64 174687 unique_id port 174687 remote_ip 10.8.0.74 174689 username hatami 174689 mac 174689 bytes_out 487689 174689 bytes_in 3159329 174689 station_ip 151.235.112.86 174689 port 52 174689 unique_id port 174689 remote_ip 10.8.0.98 174692 username shadkam 174692 kill_reason Maximum check online fails reached 174692 mac 174692 bytes_out 0 174692 bytes_in 0 174692 station_ip 5.202.7.117 174692 port 52 174692 unique_id port 174693 username aminvpn 174693 unique_id port 174693 terminate_cause Lost-Carrier 174693 bytes_out 955816 174693 bytes_in 37671766 174693 station_ip 31.57.132.90 174693 port 15728966 174693 nas_port_type Virtual 174693 remote_ip 5.5.5.104 174694 username aminvpn 174694 mac 174694 bytes_out 0 174694 bytes_in 0 174694 station_ip 109.125.152.212 174694 port 52 174694 unique_id port 174694 remote_ip 10.8.0.58 174696 username amin.saeedi 174696 unique_id port 174696 terminate_cause User-Request 174696 bytes_out 16866278 174696 bytes_in 579088206 174696 station_ip 31.56.221.212 174696 port 15728965 174696 nas_port_type Virtual 174696 remote_ip 5.5.5.106 174698 username godarzi 174698 kill_reason Another user logged on this global unique id 174698 mac 174698 bytes_out 0 174698 bytes_in 0 174698 station_ip 5.202.1.160 174698 port 61 174698 unique_id port 174700 username godarzi 174700 mac 174700 bytes_out 0 174700 bytes_in 0 174700 station_ip 5.202.1.160 174700 port 61 174700 unique_id port 174702 username mosi 174702 mac 174702 bytes_out 0 174702 bytes_in 0 174702 station_ip 151.235.107.166 174702 port 64 174702 unique_id port 174702 remote_ip 10.8.0.142 174703 username shadkam 174703 kill_reason Another user logged on this global unique id 174703 mac 174703 bytes_out 0 174703 bytes_in 0 174703 station_ip 5.202.7.117 174703 port 52 174703 unique_id port 174704 username mosi 174704 mac 174704 bytes_out 0 174704 bytes_in 0 174704 station_ip 151.235.107.166 174704 port 64 174704 unique_id port 174704 remote_ip 10.8.0.142 174706 username mosi 174706 mac 174706 bytes_out 0 174706 bytes_in 0 174706 station_ip 151.235.107.166 174706 port 64 174706 unique_id port 174706 remote_ip 10.8.0.142 174711 username mosi 174711 kill_reason Another user logged on this global unique id 174711 mac 174711 bytes_out 0 174711 bytes_in 0 174711 station_ip 151.235.107.166 174711 port 52 174711 unique_id port 174711 remote_ip 10.8.0.142 174712 username aminvpn 174712 unique_id port 174712 terminate_cause Lost-Carrier 174712 bytes_out 873481 174712 bytes_in 5739806 174712 station_ip 5.120.150.233 174712 port 15728968 174712 nas_port_type Virtual 174712 remote_ip 5.5.5.102 174715 username mosi 174715 kill_reason Another user logged on this global unique id 174715 mac 174715 bytes_out 0 174715 bytes_in 0 174715 station_ip 151.235.107.166 174715 port 52 174715 unique_id port 174720 username aminvpn 174720 mac 174701 bytes_in 0 174701 station_ip 5.202.1.160 174701 port 64 174701 unique_id port 174701 remote_ip 10.8.0.38 174705 username mosi 174705 mac 174705 bytes_out 2449 174705 bytes_in 4537 174705 station_ip 151.235.107.166 174705 port 65 174705 unique_id port 174705 remote_ip 10.8.0.142 174707 username aminvpn 174707 mac 174707 bytes_out 696611 174707 bytes_in 3731636 174707 station_ip 5.119.25.167 174707 port 61 174707 unique_id port 174707 remote_ip 10.8.0.58 174708 username aminvpn 174708 mac 174708 bytes_out 0 174708 bytes_in 0 174708 station_ip 5.119.25.167 174708 port 64 174708 unique_id port 174708 remote_ip 10.8.0.58 174716 username aminvpn 174716 kill_reason Another user logged on this global unique id 174716 mac 174716 bytes_out 0 174716 bytes_in 0 174716 station_ip 5.119.25.167 174716 port 64 174716 unique_id port 174716 remote_ip 10.8.0.58 174717 username mosi 174717 kill_reason Another user logged on this global unique id 174717 mac 174717 bytes_out 0 174717 bytes_in 0 174717 station_ip 151.235.107.166 174717 port 52 174717 unique_id port 174719 username kordestani 174719 kill_reason Another user logged on this global unique id 174719 mac 174719 bytes_out 0 174719 bytes_in 0 174719 station_ip 151.235.104.101 174719 port 61 174719 unique_id port 174719 remote_ip 10.8.0.130 174723 username shadkam 174723 mac 174723 bytes_out 0 174723 bytes_in 0 174723 station_ip 5.202.7.117 174723 port 64 174723 unique_id port 174725 username kordestani 174725 mac 174725 bytes_out 0 174725 bytes_in 0 174725 station_ip 151.235.104.101 174725 port 61 174725 unique_id port 174727 station_ip 151.238.254.91 174727 port 64 174727 unique_id port 174727 remote_ip 10.8.0.178 174728 username afarin1 174728 mac 174728 bytes_out 0 174728 bytes_in 0 174728 station_ip 151.238.254.91 174728 port 64 174728 unique_id port 174728 remote_ip 10.8.0.178 174730 username majidsarmast 174730 mac 174730 bytes_out 1887640 174730 bytes_in 28260787 174730 station_ip 86.57.113.228 174730 port 52 174730 unique_id port 174730 remote_ip 10.8.0.170 174731 username morteza 174731 mac 174731 bytes_out 21831 174731 bytes_in 97148 174731 station_ip 94.241.180.19 174731 port 52 174731 unique_id port 174731 remote_ip 10.8.0.174 174732 username shadkam 174732 mac 174732 bytes_out 22155 174732 bytes_in 65828 174732 station_ip 5.202.9.118 174732 port 52 174732 unique_id port 174732 remote_ip 10.8.0.74 174735 username shadkam 174735 mac 174735 bytes_out 0 174735 bytes_in 0 174735 station_ip 5.202.9.118 174735 port 52 174735 unique_id port 174735 remote_ip 10.8.0.74 174736 username shadkam 174736 mac 174736 bytes_out 0 174736 bytes_in 0 174736 station_ip 5.202.9.118 174736 port 52 174736 unique_id port 174736 remote_ip 10.8.0.74 174737 username shadkam 174737 mac 174737 bytes_out 0 174737 bytes_in 0 174737 station_ip 5.202.9.118 174737 port 64 174737 unique_id port 174737 remote_ip 10.8.0.74 174738 username shadkam 174738 mac 174738 bytes_out 0 174738 bytes_in 0 174738 station_ip 5.202.9.118 174738 port 64 174738 unique_id port 174738 remote_ip 10.8.0.74 174739 username shadkam 174739 mac 174739 bytes_out 0 174739 bytes_in 0 174739 station_ip 5.202.9.118 174739 port 64 174739 unique_id port 174739 remote_ip 10.8.0.74 174740 username shadkam 174740 mac 174740 bytes_out 0 174740 bytes_in 0 174740 station_ip 5.202.9.118 174740 port 64 174740 unique_id port 174740 remote_ip 10.8.0.74 174743 username shadkam 174743 mac 174720 bytes_out 2669534 174720 bytes_in 34979164 174720 station_ip 5.119.25.167 174720 port 65 174720 unique_id port 174720 remote_ip 10.8.0.58 174726 username mansour 174726 mac 174726 bytes_out 1333732 174726 bytes_in 18974959 174726 station_ip 45.84.157.42 174726 port 64 174726 unique_id port 174726 remote_ip 10.8.0.206 174729 username mosi 174729 mac 174729 bytes_out 0 174729 bytes_in 0 174729 station_ip 151.235.107.166 174729 port 52 174729 unique_id port 174733 username shadkam 174733 mac 174733 bytes_out 0 174733 bytes_in 0 174733 station_ip 5.202.9.118 174733 port 52 174733 unique_id port 174733 remote_ip 10.8.0.74 174734 username shadkam 174734 mac 174734 bytes_out 0 174734 bytes_in 0 174734 station_ip 5.202.9.118 174734 port 52 174734 unique_id port 174734 remote_ip 10.8.0.74 174741 username godarzi 174741 mac 174741 bytes_out 2400711 174741 bytes_in 16235426 174741 station_ip 5.202.23.122 174741 port 52 174741 unique_id port 174741 remote_ip 10.8.0.38 174742 username shadkam 174742 mac 174742 bytes_out 0 174742 bytes_in 0 174742 station_ip 5.202.9.118 174742 port 52 174742 unique_id port 174742 remote_ip 10.8.0.74 174743 bytes_out 0 174743 bytes_in 0 174743 station_ip 5.202.9.118 174743 port 64 174743 unique_id port 174743 remote_ip 10.8.0.74 174744 username godarzi 174744 mac 174744 bytes_out 829400 174744 bytes_in 3093276 174744 station_ip 5.202.23.122 174744 port 52 174744 unique_id port 174744 remote_ip 10.8.0.38 174745 username shadkam 174745 mac 174745 bytes_out 0 174745 bytes_in 0 174745 station_ip 5.202.9.118 174745 port 65 174745 unique_id port 174745 remote_ip 10.8.0.74 174746 username mohammadjavad 174746 kill_reason Another user logged on this global unique id 174746 mac 174746 bytes_out 0 174746 bytes_in 0 174746 station_ip 37.27.12.248 174746 port 64 174746 unique_id port 174746 remote_ip 10.8.0.110 174747 username shadkam 174747 mac 174747 bytes_out 24653 174747 bytes_in 70154 174747 station_ip 5.202.9.118 174747 port 65 174747 unique_id port 174747 remote_ip 10.8.0.74 174748 username meysam 174748 mac 174748 bytes_out 3735596 174748 bytes_in 49358041 174748 station_ip 188.158.48.141 174748 port 52 174748 unique_id port 174748 remote_ip 10.8.0.158 174749 username mohammadjavad 174749 kill_reason Another user logged on this global unique id 174749 mac 174749 bytes_out 0 174749 bytes_in 0 174749 station_ip 37.27.12.248 174749 port 64 174749 unique_id port 174750 username mohammadjavad 174750 mac 174750 bytes_out 0 174750 bytes_in 0 174750 station_ip 37.27.12.248 174750 port 64 174750 unique_id port 174751 username mohammadjavad 174751 kill_reason Another user logged on this global unique id 174751 mac 174751 bytes_out 0 174751 bytes_in 0 174751 station_ip 37.27.12.248 174751 port 64 174751 unique_id port 174751 remote_ip 10.8.0.110 174752 username mohammadjavad 174752 mac 174752 bytes_out 0 174752 bytes_in 0 174752 station_ip 37.27.12.248 174752 port 64 174752 unique_id port 174753 username mohammadjavad 174753 mac 174753 bytes_out 0 174753 bytes_in 0 174753 station_ip 37.27.12.248 174753 port 64 174753 unique_id port 174753 remote_ip 10.8.0.110 174754 username mohammadjavad 174754 mac 174754 bytes_out 70616 174754 bytes_in 1320035 174754 station_ip 37.27.12.248 174754 port 64 174754 unique_id port 174754 remote_ip 10.8.0.110 174755 username mohammadjavad 174755 mac 174755 bytes_out 0 174755 bytes_in 0 174755 station_ip 37.27.12.248 174755 port 64 174755 unique_id port 174755 remote_ip 10.8.0.110 174756 username mohammadjavad 174756 mac 174756 bytes_out 0 174756 bytes_in 0 174756 station_ip 37.27.12.248 174756 port 64 174756 unique_id port 174756 remote_ip 10.8.0.110 174762 username mohammadjavad 174762 mac 174762 bytes_out 0 174762 bytes_in 0 174762 station_ip 37.27.12.248 174762 port 65 174762 unique_id port 174762 remote_ip 10.8.0.110 174771 username saeeddamghani 174771 mac 174771 bytes_out 162685 174771 bytes_in 950084 174771 station_ip 2.183.151.8 174771 port 65 174771 unique_id port 174771 remote_ip 10.8.0.122 174772 username saeeddamghani 174772 mac 174772 bytes_out 0 174772 bytes_in 0 174772 station_ip 2.183.151.8 174772 port 64 174772 unique_id port 174772 remote_ip 10.8.0.122 174777 username aminvpn 174777 mac 174777 bytes_out 52735 174777 bytes_in 105957 174777 station_ip 5.119.25.167 174777 port 61 174777 unique_id port 174777 remote_ip 10.8.0.58 174778 username saeeddamghani 174778 mac 174778 bytes_out 452913 174778 bytes_in 5015840 174778 station_ip 2.183.151.8 174778 port 64 174778 unique_id port 174778 remote_ip 10.8.0.122 174779 username saeeddamghani 174779 mac 174779 bytes_out 0 174779 bytes_in 0 174779 station_ip 2.183.151.8 174779 port 61 174779 unique_id port 174779 remote_ip 10.8.0.122 174786 username shadkam 174786 mac 174786 bytes_out 1579475 174786 bytes_in 8444782 174786 station_ip 5.202.9.118 174786 port 61 174786 unique_id port 174786 remote_ip 10.8.0.74 174790 username saeeddamghani 174790 mac 174790 bytes_out 0 174790 bytes_in 0 174790 station_ip 2.183.151.8 174790 port 65 174790 unique_id port 174790 remote_ip 10.8.0.122 174791 username saeeddamghani 174791 mac 174791 bytes_out 0 174791 bytes_in 0 174791 station_ip 2.183.151.8 174791 port 66 174791 unique_id port 174791 remote_ip 10.8.0.122 174793 username godarzi 174793 kill_reason Another user logged on this global unique id 174793 mac 174793 bytes_out 0 174793 bytes_in 0 174793 station_ip 5.202.23.122 174793 port 52 174793 unique_id port 174797 username saeeddamghani 174797 mac 174797 bytes_out 1644 174797 bytes_in 4596 174797 station_ip 2.183.151.8 174797 port 67 174797 unique_id port 174797 remote_ip 10.8.0.122 174798 username saeeddamghani 174798 mac 174798 bytes_out 12357 174798 bytes_in 10931 174798 station_ip 2.183.151.8 174798 port 67 174798 unique_id port 174798 remote_ip 10.8.0.122 174799 username kordestani 174799 mac 174799 bytes_out 11245325 174799 bytes_in 18475768 174799 station_ip 151.235.94.194 174799 port 64 174799 unique_id port 174799 remote_ip 10.8.0.130 174800 username meysam 174800 mac 174800 bytes_out 3242673 174800 bytes_in 47502055 174800 station_ip 188.158.49.43 174800 port 66 174800 unique_id port 174800 remote_ip 10.8.0.158 174801 username saeeddamghani 174801 mac 174801 bytes_out 0 174801 bytes_in 0 174801 station_ip 2.183.151.8 174801 port 66 174801 unique_id port 174801 remote_ip 10.8.0.122 174806 username godarzi 174806 mac 174806 bytes_out 0 174806 bytes_in 0 174806 station_ip 5.202.23.122 174806 port 52 174806 unique_id port 174816 username shadkam 174816 mac 174816 bytes_out 9419698 174816 bytes_in 27545624 174816 station_ip 5.202.9.118 174816 port 64 174816 unique_id port 174816 remote_ip 10.8.0.74 174822 username aminvpn 174822 mac 174822 bytes_out 0 174822 bytes_in 0 174822 station_ip 5.119.91.32 174822 port 64 174822 unique_id port 174822 remote_ip 10.8.0.58 174823 username aminvpn 174823 mac 174823 bytes_out 0 174757 username mohammadjavad 174757 mac 174757 bytes_out 522905 174757 bytes_in 10749190 174757 station_ip 37.27.12.248 174757 port 64 174757 unique_id port 174757 remote_ip 10.8.0.110 174758 username mohammadjavad 174758 mac 174758 bytes_out 172393 174758 bytes_in 1921009 174758 station_ip 37.27.12.248 174758 port 65 174758 unique_id port 174758 remote_ip 10.8.0.110 174759 username mohammadjavad 174759 mac 174759 bytes_out 0 174759 bytes_in 0 174759 station_ip 37.27.12.248 174759 port 65 174759 unique_id port 174759 remote_ip 10.8.0.110 174761 username mohammadjavad 174761 mac 174761 bytes_out 571523 174761 bytes_in 8899975 174761 station_ip 37.27.12.248 174761 port 65 174761 unique_id port 174761 remote_ip 10.8.0.110 174763 username mohammadjavad 174763 mac 174763 bytes_out 0 174763 bytes_in 0 174763 station_ip 37.27.12.248 174763 port 65 174763 unique_id port 174763 remote_ip 10.8.0.110 174767 username aminvpn 174767 unique_id port 174767 terminate_cause User-Request 174767 bytes_out 84142 174767 bytes_in 385658 174767 station_ip 5.120.148.241 174767 port 15728976 174767 nas_port_type Virtual 174767 remote_ip 5.5.5.100 174770 username shadkam 174770 mac 174770 bytes_out 33700970 174770 bytes_in 38702831 174770 station_ip 5.202.9.118 174770 port 67 174770 unique_id port 174770 remote_ip 10.8.0.74 174780 username saeeddamghani 174780 mac 174780 bytes_out 0 174780 bytes_in 0 174780 station_ip 2.183.151.8 174780 port 61 174780 unique_id port 174780 remote_ip 10.8.0.122 174781 username saeeddamghani 174781 mac 174781 bytes_out 129510 174781 bytes_in 94912 174781 station_ip 2.183.151.8 174781 port 61 174781 unique_id port 174781 remote_ip 10.8.0.122 174782 username godarzi 174782 kill_reason Another user logged on this global unique id 174782 mac 174782 bytes_out 0 174782 bytes_in 0 174782 station_ip 5.202.23.122 174782 port 52 174782 unique_id port 174783 username aminvpn 174783 unique_id port 174783 terminate_cause Lost-Carrier 174783 bytes_out 50126 174783 bytes_in 96787 174783 station_ip 5.120.148.241 174783 port 15728997 174783 nas_port_type Virtual 174783 remote_ip 5.5.5.99 174784 username aminvpn 174784 unique_id port 174784 terminate_cause User-Request 174784 bytes_out 21327 174784 bytes_in 186339 174784 station_ip 5.120.148.241 174784 port 15728998 174784 nas_port_type Virtual 174784 remote_ip 5.5.5.98 174787 username saeeddamghani 174787 kill_reason Maximum check online fails reached 174787 mac 174787 bytes_out 0 174787 bytes_in 0 174787 station_ip 2.183.151.8 174787 port 64 174787 unique_id port 174789 username kordestani 174789 mac 174789 bytes_out 498953 174789 bytes_in 5108933 174789 station_ip 151.235.94.194 174789 port 64 174789 unique_id port 174789 remote_ip 10.8.0.130 174792 username saeeddamghani 174792 mac 174792 bytes_out 0 174792 bytes_in 0 174792 station_ip 2.183.151.8 174792 port 66 174792 unique_id port 174792 remote_ip 10.8.0.122 174795 username shadkam 174795 kill_reason Another user logged on this global unique id 174795 mac 174795 bytes_out 0 174795 bytes_in 0 174795 station_ip 5.202.9.118 174795 port 65 174795 unique_id port 174795 remote_ip 10.8.0.74 174796 username saeeddamghani 174796 mac 174796 bytes_out 0 174796 bytes_in 0 174796 station_ip 2.183.151.8 174796 port 67 174796 unique_id port 174796 remote_ip 10.8.0.122 174802 username aminvpn 174802 unique_id port 174802 terminate_cause Lost-Carrier 174802 bytes_out 170580 174802 bytes_in 1731875 174802 station_ip 5.120.148.241 174802 port 15728999 174802 nas_port_type Virtual 174802 remote_ip 5.5.5.97 174803 username kordestani 174760 username mohammadjavad 174760 mac 174760 bytes_out 0 174760 bytes_in 0 174760 station_ip 37.27.12.248 174760 port 65 174760 unique_id port 174760 remote_ip 10.8.0.110 174764 username mohammadjavad 174764 mac 174764 bytes_out 0 174764 bytes_in 0 174764 station_ip 37.27.12.248 174764 port 65 174764 unique_id port 174764 remote_ip 10.8.0.110 174765 username mohammadjavad 174765 mac 174765 bytes_out 0 174765 bytes_in 0 174765 station_ip 37.27.12.248 174765 port 65 174765 unique_id port 174765 remote_ip 10.8.0.110 174766 username rahim 174766 mac 174766 bytes_out 2928924 174766 bytes_in 29141191 174766 station_ip 86.57.79.42 174766 port 64 174766 unique_id port 174766 remote_ip 10.8.0.134 174768 username zahra1101 174768 kill_reason Another user logged on this global unique id 174768 mac 174768 bytes_out 0 174768 bytes_in 0 174768 station_ip 46.225.212.174 174768 port 64 174768 unique_id port 174768 remote_ip 10.8.0.190 174769 username zahra1101 174769 mac 174769 bytes_out 0 174769 bytes_in 0 174769 station_ip 46.225.212.174 174769 port 64 174769 unique_id port 174773 username aminvpn 174773 mac 174773 bytes_out 3953573 174773 bytes_in 26154037 174773 station_ip 5.119.25.167 174773 port 61 174773 unique_id port 174773 remote_ip 10.8.0.58 174774 username godarzi 174774 kill_reason Another user logged on this global unique id 174774 mac 174774 bytes_out 0 174774 bytes_in 0 174774 station_ip 5.202.23.122 174774 port 52 174774 unique_id port 174774 remote_ip 10.8.0.38 174775 username saeeddamghani 174775 mac 174775 bytes_out 10471 174775 bytes_in 9391 174775 station_ip 2.183.151.8 174775 port 64 174775 unique_id port 174775 remote_ip 10.8.0.122 174776 username tahmorsi 174776 mac 174776 bytes_out 3263891 174776 bytes_in 33263797 174776 station_ip 86.57.99.85 174776 port 66 174776 unique_id port 174776 remote_ip 10.8.0.238 174785 username saeeddamghani 174785 kill_reason Another user logged on this global unique id 174785 mac 174785 bytes_out 0 174785 bytes_in 0 174785 station_ip 2.183.151.8 174785 port 64 174785 unique_id port 174788 username saeeddamghani 174788 mac 174788 bytes_out 196468 174788 bytes_in 172777 174788 station_ip 2.183.151.8 174788 port 64 174788 unique_id port 174788 remote_ip 10.8.0.122 174794 username saeeddamghani 174794 mac 174794 bytes_out 0 174794 bytes_in 0 174794 station_ip 2.183.151.8 174794 port 66 174794 unique_id port 174794 remote_ip 10.8.0.122 174804 username saeeddamghani 174804 mac 174804 bytes_out 0 174804 bytes_in 0 174804 station_ip 2.183.151.8 174804 port 64 174804 unique_id port 174804 remote_ip 10.8.0.122 174807 username saeeddamghani 174807 mac 174807 bytes_out 0 174807 bytes_in 0 174807 station_ip 2.183.151.8 174807 port 64 174807 unique_id port 174807 remote_ip 10.8.0.122 174810 username saeeddamghani 174810 mac 174810 bytes_out 0 174810 bytes_in 0 174810 station_ip 2.183.151.8 174810 port 64 174810 unique_id port 174810 remote_ip 10.8.0.122 174812 username saeeddamghani 174812 mac 174812 bytes_out 10579 174812 bytes_in 9555 174812 station_ip 2.183.151.8 174812 port 67 174812 unique_id port 174812 remote_ip 10.8.0.122 174813 username shadkam 174813 mac 174813 bytes_out 0 174813 bytes_in 0 174813 station_ip 5.202.9.118 174813 port 65 174813 unique_id port 174814 username saeeddamghani 174814 mac 174814 bytes_out 3114 174814 bytes_in 8367 174814 station_ip 2.183.151.8 174814 port 64 174814 unique_id port 174814 remote_ip 10.8.0.122 174819 username aminvpn 174819 mac 174803 mac 174803 bytes_out 25432163 174803 bytes_in 6576990 174803 station_ip 151.235.94.194 174803 port 64 174803 unique_id port 174803 remote_ip 10.8.0.130 174805 username saeeddamghani 174805 mac 174805 bytes_out 15690 174805 bytes_in 20198 174805 station_ip 2.183.151.8 174805 port 64 174805 unique_id port 174805 remote_ip 10.8.0.122 174808 username saeeddamghani 174808 kill_reason Maximum check online fails reached 174808 mac 174808 bytes_out 0 174808 bytes_in 0 174808 station_ip 2.183.151.8 174808 port 52 174808 unique_id port 174809 username saeeddamghani 174809 mac 174809 bytes_out 0 174809 bytes_in 0 174809 station_ip 2.183.151.8 174809 port 64 174809 unique_id port 174809 remote_ip 10.8.0.122 174811 username godarzi 174811 mac 174811 bytes_out 881958 174811 bytes_in 11612096 174811 station_ip 5.202.23.122 174811 port 64 174811 unique_id port 174811 remote_ip 10.8.0.38 174815 username meysam 174815 mac 174815 bytes_out 3050315 174815 bytes_in 48044735 174815 station_ip 188.158.49.43 174815 port 66 174815 unique_id port 174815 remote_ip 10.8.0.158 174817 username godarzi 174817 mac 174817 bytes_out 224212 174817 bytes_in 754818 174817 station_ip 5.202.23.122 174817 port 66 174817 unique_id port 174817 remote_ip 10.8.0.38 174818 username saeeddamghani 174818 mac 174818 bytes_out 55860 174818 bytes_in 78751 174818 station_ip 2.183.151.8 174818 port 64 174818 unique_id port 174818 remote_ip 10.8.0.122 174827 username aminvpn 174827 mac 174827 bytes_out 0 174827 bytes_in 0 174827 station_ip 5.119.91.32 174827 port 64 174827 unique_id port 174827 remote_ip 10.8.0.58 174830 username aminvpn 174830 mac 174830 bytes_out 0 174830 bytes_in 0 174830 station_ip 5.119.91.32 174830 port 61 174830 unique_id port 174830 remote_ip 10.8.0.58 174831 username aminvpn 174831 mac 174831 bytes_out 0 174831 bytes_in 0 174831 station_ip 5.119.91.32 174831 port 64 174831 unique_id port 174831 remote_ip 10.8.0.58 174832 username aminvpn 174832 mac 174832 bytes_out 34818 174832 bytes_in 52785 174832 station_ip 5.119.91.32 174832 port 61 174832 unique_id port 174832 remote_ip 10.8.0.58 174833 username aminvpn 174833 mac 174833 bytes_out 0 174833 bytes_in 0 174833 station_ip 5.119.91.32 174833 port 64 174833 unique_id port 174833 remote_ip 10.8.0.58 174835 username aminvpn 174835 mac 174835 bytes_out 0 174835 bytes_in 0 174835 station_ip 5.119.91.32 174835 port 64 174835 unique_id port 174835 remote_ip 10.8.0.58 174836 username aminvpn 174836 mac 174836 bytes_out 0 174836 bytes_in 0 174836 station_ip 5.119.91.32 174836 port 61 174836 unique_id port 174836 remote_ip 10.8.0.58 174841 username aminvpn 174841 mac 174841 bytes_out 0 174841 bytes_in 0 174841 station_ip 5.119.91.32 174841 port 64 174841 unique_id port 174841 remote_ip 10.8.0.58 174846 username aminvpn 174846 mac 174846 bytes_out 0 174846 bytes_in 0 174846 station_ip 5.119.91.32 174846 port 61 174846 unique_id port 174846 remote_ip 10.8.0.58 174847 username aminvpn 174847 mac 174847 bytes_out 0 174847 bytes_in 0 174847 station_ip 5.119.91.32 174847 port 64 174847 unique_id port 174847 remote_ip 10.8.0.58 174853 username aminvpn 174853 mac 174853 bytes_out 3038 174853 bytes_in 6318 174853 station_ip 5.119.91.32 174853 port 64 174853 unique_id port 174853 remote_ip 10.8.0.58 174854 username aminvpn 174854 mac 174854 bytes_out 0 174854 bytes_in 0 174854 station_ip 5.119.91.32 174854 port 61 174819 bytes_out 10392646 174819 bytes_in 24598710 174819 station_ip 5.119.91.32 174819 port 61 174819 unique_id port 174819 remote_ip 10.8.0.58 174820 username aminvpn 174820 mac 174820 bytes_out 0 174820 bytes_in 0 174820 station_ip 5.119.91.32 174820 port 64 174820 unique_id port 174820 remote_ip 10.8.0.58 174821 username aminvpn 174821 mac 174821 bytes_out 0 174821 bytes_in 0 174821 station_ip 5.119.91.32 174821 port 61 174821 unique_id port 174821 remote_ip 10.8.0.58 174824 username sabaghnezhad 174824 mac 174824 bytes_out 3014551 174824 bytes_in 35842005 174824 station_ip 151.235.92.119 174824 port 65 174824 unique_id port 174824 remote_ip 10.8.0.66 174837 username aminvpn 174837 mac 174837 bytes_out 0 174837 bytes_in 0 174837 station_ip 5.119.91.32 174837 port 64 174837 unique_id port 174837 remote_ip 10.8.0.58 174838 username aminvpn 174838 mac 174838 bytes_out 0 174838 bytes_in 0 174838 station_ip 5.119.91.32 174838 port 61 174838 unique_id port 174838 remote_ip 10.8.0.58 174839 username aminvpn 174839 mac 174839 bytes_out 0 174839 bytes_in 0 174839 station_ip 5.119.91.32 174839 port 64 174839 unique_id port 174839 remote_ip 10.8.0.58 174840 username aminvpn 174840 mac 174840 bytes_out 2768 174840 bytes_in 4364 174840 station_ip 5.119.91.32 174840 port 61 174840 unique_id port 174840 remote_ip 10.8.0.58 174842 username aminvpn 174842 mac 174842 bytes_out 0 174842 bytes_in 0 174842 station_ip 5.119.91.32 174842 port 61 174842 unique_id port 174842 remote_ip 10.8.0.58 174848 username aminvpn 174848 mac 174848 bytes_out 0 174848 bytes_in 0 174848 station_ip 5.119.91.32 174848 port 61 174848 unique_id port 174848 remote_ip 10.8.0.58 174851 username aminvpn 174851 mac 174851 bytes_out 132153 174851 bytes_in 38380 174851 station_ip 5.119.91.32 174851 port 64 174851 unique_id port 174851 remote_ip 10.8.0.58 174860 username aminvpn 174860 mac 174860 bytes_out 0 174860 bytes_in 0 174860 station_ip 5.119.91.32 174860 port 61 174860 unique_id port 174860 remote_ip 10.8.0.58 174865 username hamid.e 174865 unique_id port 174865 terminate_cause User-Request 174865 bytes_out 3843788 174865 bytes_in 18418639 174865 station_ip 37.27.11.231 174865 port 15729000 174865 nas_port_type Virtual 174865 remote_ip 5.5.5.95 174869 username saeeddamghani 174869 mac 174869 bytes_out 0 174869 bytes_in 0 174869 station_ip 2.183.151.8 174869 port 67 174869 unique_id port 174869 remote_ip 10.8.0.122 174870 username nilufarrajaei 174870 mac 174870 bytes_out 0 174870 bytes_in 0 174870 station_ip 45.15.248.21 174870 port 65 174870 unique_id port 174872 username aminvpn 174872 mac 174872 bytes_out 0 174872 bytes_in 0 174872 station_ip 5.119.91.32 174872 port 65 174872 unique_id port 174872 remote_ip 10.8.0.58 174879 username aminvpn 174879 mac 174879 bytes_out 36184 174879 bytes_in 53083 174879 station_ip 5.119.91.32 174879 port 64 174879 unique_id port 174879 remote_ip 10.8.0.58 174880 username aminvpn 174880 mac 174880 bytes_out 0 174880 bytes_in 0 174880 station_ip 5.119.91.32 174880 port 67 174880 unique_id port 174880 remote_ip 10.8.0.58 174891 username aminvpn 174891 mac 174891 bytes_out 0 174891 bytes_in 0 174891 station_ip 5.119.91.32 174891 port 68 174891 unique_id port 174891 remote_ip 10.8.0.58 174892 username aminvpn 174892 mac 174892 bytes_out 0 174892 bytes_in 0 174892 station_ip 5.119.91.32 174892 port 64 174892 unique_id port 174823 bytes_in 0 174823 station_ip 5.119.91.32 174823 port 61 174823 unique_id port 174823 remote_ip 10.8.0.58 174825 username aminvpn 174825 mac 174825 bytes_out 0 174825 bytes_in 0 174825 station_ip 5.119.91.32 174825 port 64 174825 unique_id port 174825 remote_ip 10.8.0.58 174826 username aminvpn 174826 mac 174826 bytes_out 0 174826 bytes_in 0 174826 station_ip 5.119.91.32 174826 port 61 174826 unique_id port 174826 remote_ip 10.8.0.58 174828 username aminvpn 174828 mac 174828 bytes_out 0 174828 bytes_in 0 174828 station_ip 5.119.91.32 174828 port 61 174828 unique_id port 174828 remote_ip 10.8.0.58 174829 username aminvpn 174829 mac 174829 bytes_out 0 174829 bytes_in 0 174829 station_ip 5.119.91.32 174829 port 64 174829 unique_id port 174829 remote_ip 10.8.0.58 174834 username aminvpn 174834 mac 174834 bytes_out 0 174834 bytes_in 0 174834 station_ip 5.119.91.32 174834 port 61 174834 unique_id port 174834 remote_ip 10.8.0.58 174843 username aminvpn 174843 mac 174843 bytes_out 0 174843 bytes_in 0 174843 station_ip 5.119.91.32 174843 port 64 174843 unique_id port 174843 remote_ip 10.8.0.58 174844 username aminvpn 174844 mac 174844 bytes_out 0 174844 bytes_in 0 174844 station_ip 5.119.91.32 174844 port 61 174844 unique_id port 174844 remote_ip 10.8.0.58 174845 username aminvpn 174845 mac 174845 bytes_out 0 174845 bytes_in 0 174845 station_ip 5.119.91.32 174845 port 64 174845 unique_id port 174845 remote_ip 10.8.0.58 174849 username aminvpn 174849 mac 174849 bytes_out 8828 174849 bytes_in 14603 174849 station_ip 5.119.91.32 174849 port 64 174849 unique_id port 174849 remote_ip 10.8.0.58 174850 username aminvpn 174850 mac 174850 bytes_out 0 174850 bytes_in 0 174850 station_ip 5.119.91.32 174850 port 61 174850 unique_id port 174850 remote_ip 10.8.0.58 174852 username aminvpn 174852 mac 174852 bytes_out 0 174852 bytes_in 0 174852 station_ip 5.119.91.32 174852 port 61 174852 unique_id port 174852 remote_ip 10.8.0.58 174855 username aminvpn 174855 mac 174855 bytes_out 6800 174855 bytes_in 12075 174855 station_ip 5.119.91.32 174855 port 64 174855 unique_id port 174855 remote_ip 10.8.0.58 174857 username aminvpn 174857 mac 174857 bytes_out 3669 174857 bytes_in 9532 174857 station_ip 5.119.91.32 174857 port 64 174857 unique_id port 174857 remote_ip 10.8.0.58 174858 username aminvpn 174858 mac 174858 bytes_out 0 174858 bytes_in 0 174858 station_ip 5.119.91.32 174858 port 61 174858 unique_id port 174858 remote_ip 10.8.0.58 174863 username aminvpn 174863 mac 174863 bytes_out 1382205 174863 bytes_in 15792169 174863 station_ip 5.119.91.32 174863 port 64 174863 unique_id port 174863 remote_ip 10.8.0.58 174867 username nilufarrajaei 174867 kill_reason Another user logged on this global unique id 174867 mac 174867 bytes_out 0 174867 bytes_in 0 174867 station_ip 45.15.248.21 174867 port 65 174867 unique_id port 174867 remote_ip 10.8.0.194 174868 username aminvpn 174868 mac 174868 bytes_out 0 174868 bytes_in 0 174868 station_ip 5.119.91.32 174868 port 68 174868 unique_id port 174868 remote_ip 10.8.0.58 174871 username aminvpn 174871 mac 174871 bytes_out 62576 174871 bytes_in 95513 174871 station_ip 5.119.91.32 174871 port 64 174871 unique_id port 174871 remote_ip 10.8.0.58 174876 username aminvpn 174876 mac 174876 bytes_out 0 174876 bytes_in 0 174876 station_ip 5.119.91.32 174876 port 65 174876 unique_id port 174876 remote_ip 10.8.0.58 174854 unique_id port 174854 remote_ip 10.8.0.58 174856 username aminvpn 174856 mac 174856 bytes_out 0 174856 bytes_in 0 174856 station_ip 5.119.91.32 174856 port 61 174856 unique_id port 174856 remote_ip 10.8.0.58 174859 username aminvpn 174859 mac 174859 bytes_out 3990 174859 bytes_in 6096 174859 station_ip 5.119.91.32 174859 port 64 174859 unique_id port 174859 remote_ip 10.8.0.58 174861 username aminvpn 174861 mac 174861 bytes_out 3653 174861 bytes_in 5714 174861 station_ip 5.119.91.32 174861 port 64 174861 unique_id port 174861 remote_ip 10.8.0.58 174862 username aminvpn 174862 mac 174862 bytes_out 0 174862 bytes_in 0 174862 station_ip 5.119.91.32 174862 port 61 174862 unique_id port 174862 remote_ip 10.8.0.58 174864 username aminvpn 174864 mac 174864 bytes_out 0 174864 bytes_in 0 174864 station_ip 5.119.91.32 174864 port 67 174864 unique_id port 174864 remote_ip 10.8.0.58 174866 username aminvpn 174866 mac 174866 bytes_out 66071 174866 bytes_in 316625 174866 station_ip 5.119.91.32 174866 port 64 174866 unique_id port 174866 remote_ip 10.8.0.58 174873 username aminvpn 174873 mac 174873 bytes_out 33696 174873 bytes_in 47483 174873 station_ip 5.119.91.32 174873 port 64 174873 unique_id port 174873 remote_ip 10.8.0.58 174874 username aminvpn 174874 mac 174874 bytes_out 0 174874 bytes_in 0 174874 station_ip 5.119.91.32 174874 port 65 174874 unique_id port 174874 remote_ip 10.8.0.58 174875 username aminvpn 174875 mac 174875 bytes_out 1628 174875 bytes_in 3731 174875 station_ip 5.119.91.32 174875 port 64 174875 unique_id port 174875 remote_ip 10.8.0.58 174877 username aminvpn 174877 mac 174877 bytes_out 0 174877 bytes_in 0 174877 station_ip 5.119.91.32 174877 port 64 174877 unique_id port 174877 remote_ip 10.8.0.58 174878 username aminvpn 174878 mac 174878 bytes_out 0 174878 bytes_in 0 174878 station_ip 5.119.91.32 174878 port 65 174878 unique_id port 174878 remote_ip 10.8.0.58 174881 username saeeddamghani 174881 kill_reason Maximum check online fails reached 174881 mac 174881 bytes_out 0 174881 bytes_in 0 174881 station_ip 2.183.151.8 174881 port 65 174881 unique_id port 174885 username aminvpn 174885 mac 174885 bytes_out 0 174885 bytes_in 0 174885 station_ip 5.119.91.32 174885 port 67 174885 unique_id port 174885 remote_ip 10.8.0.58 174886 username aminvpn 174886 mac 174886 bytes_out 0 174886 bytes_in 0 174886 station_ip 5.119.91.32 174886 port 64 174886 unique_id port 174886 remote_ip 10.8.0.58 174887 username aminvpn 174887 mac 174887 bytes_out 0 174887 bytes_in 0 174887 station_ip 5.119.91.32 174887 port 67 174887 unique_id port 174887 remote_ip 10.8.0.58 174890 username aminvpn 174890 mac 174890 bytes_out 7426 174890 bytes_in 10750 174890 station_ip 5.119.91.32 174890 port 64 174890 unique_id port 174890 remote_ip 10.8.0.58 174893 username aminvpn 174893 mac 174893 bytes_out 0 174893 bytes_in 0 174893 station_ip 5.119.91.32 174893 port 68 174893 unique_id port 174893 remote_ip 10.8.0.58 174894 username aminvpn 174894 mac 174894 bytes_out 6016 174894 bytes_in 11182 174894 station_ip 5.119.91.32 174894 port 64 174894 unique_id port 174894 remote_ip 10.8.0.58 174898 username aminvpn 174898 mac 174898 bytes_out 0 174898 bytes_in 0 174898 station_ip 5.119.91.32 174898 port 64 174898 unique_id port 174898 remote_ip 10.8.0.58 174899 username aminvpn 174899 mac 174899 bytes_out 0 174899 bytes_in 0 174882 username aminvpn 174882 mac 174882 bytes_out 6793 174882 bytes_in 8301 174882 station_ip 5.119.91.32 174882 port 64 174882 unique_id port 174882 remote_ip 10.8.0.58 174883 username aminvpn 174883 mac 174883 bytes_out 0 174883 bytes_in 0 174883 station_ip 5.119.91.32 174883 port 67 174883 unique_id port 174883 remote_ip 10.8.0.58 174884 username aminvpn 174884 mac 174884 bytes_out 0 174884 bytes_in 0 174884 station_ip 5.119.91.32 174884 port 64 174884 unique_id port 174884 remote_ip 10.8.0.58 174888 username aminvpn 174888 mac 174888 bytes_out 3960 174888 bytes_in 5550 174888 station_ip 5.119.91.32 174888 port 64 174888 unique_id port 174888 remote_ip 10.8.0.58 174889 username aminvpn 174889 mac 174889 bytes_out 0 174889 bytes_in 0 174889 station_ip 5.119.91.32 174889 port 67 174889 unique_id port 174889 remote_ip 10.8.0.58 174896 username aminvpn 174896 mac 174896 bytes_out 0 174896 bytes_in 0 174896 station_ip 5.119.91.32 174896 port 68 174896 unique_id port 174896 remote_ip 10.8.0.58 174900 username aminvpn 174900 mac 174900 bytes_out 0 174900 bytes_in 0 174900 station_ip 5.119.91.32 174900 port 64 174900 unique_id port 174900 remote_ip 10.8.0.58 174904 username kordestani 174904 kill_reason Another user logged on this global unique id 174904 mac 174904 bytes_out 0 174904 bytes_in 0 174904 station_ip 151.235.94.194 174904 port 67 174904 unique_id port 174908 username kordestani 174908 mac 174908 bytes_out 228787 174908 bytes_in 142374 174908 station_ip 151.235.94.194 174908 port 61 174908 unique_id port 174908 remote_ip 10.8.0.130 174909 username kordestani 174909 mac 174909 bytes_out 96638 174909 bytes_in 178599 174909 station_ip 151.235.94.194 174909 port 61 174909 unique_id port 174909 remote_ip 10.8.0.130 174910 username godarzi 174910 mac 174910 bytes_out 13846698 174910 bytes_in 42352762 174910 station_ip 5.202.23.122 174910 port 66 174910 unique_id port 174910 remote_ip 10.8.0.38 174911 username saeeddamghani 174911 mac 174911 bytes_out 0 174911 bytes_in 0 174911 station_ip 217.60.218.29 174911 port 61 174911 unique_id port 174911 remote_ip 10.8.0.122 174913 username mosi 174913 mac 174913 bytes_out 4532308 174913 bytes_in 48951325 174913 station_ip 151.235.107.166 174913 port 64 174913 unique_id port 174913 remote_ip 10.8.0.142 174918 username shadkam 174918 kill_reason Another user logged on this global unique id 174918 mac 174918 bytes_out 0 174918 bytes_in 0 174918 station_ip 5.202.9.118 174918 port 67 174918 unique_id port 174918 remote_ip 10.8.0.74 174921 username saeeddamghani 174921 mac 174921 bytes_out 0 174921 bytes_in 0 174921 station_ip 217.60.218.29 174921 port 61 174921 unique_id port 174921 remote_ip 10.8.0.122 174928 username mosi 174928 kill_reason Another user logged on this global unique id 174928 mac 174928 bytes_out 0 174928 bytes_in 0 174928 station_ip 151.235.107.166 174928 port 64 174928 unique_id port 174929 username shadkam 174929 mac 174929 bytes_out 0 174929 bytes_in 0 174929 station_ip 5.202.9.118 174929 port 67 174929 unique_id port 174932 username saeeddamghani 174932 mac 174932 bytes_out 0 174932 bytes_in 0 174932 station_ip 217.60.218.29 174932 port 61 174932 unique_id port 174932 remote_ip 10.8.0.122 174933 username saeeddamghani 174933 mac 174933 bytes_out 0 174933 bytes_in 0 174933 station_ip 217.60.218.29 174933 port 61 174933 unique_id port 174933 remote_ip 10.8.0.122 174939 username mosi 174939 mac 174939 bytes_out 0 174892 remote_ip 10.8.0.58 174895 username alipour 174895 mac 174895 bytes_out 899619 174895 bytes_in 5482259 174895 station_ip 5.233.47.163 174895 port 61 174895 unique_id port 174895 remote_ip 10.8.0.26 174897 username aminvpn 174897 mac 174897 bytes_out 6236 174897 bytes_in 11914 174897 station_ip 5.119.91.32 174897 port 61 174897 unique_id port 174897 remote_ip 10.8.0.58 174901 username kordestani 174901 kill_reason Another user logged on this global unique id 174901 mac 174901 bytes_out 0 174901 bytes_in 0 174901 station_ip 151.235.94.194 174901 port 67 174901 unique_id port 174901 remote_ip 10.8.0.130 174906 username saeeddamghani 174906 mac 174906 bytes_out 0 174906 bytes_in 0 174906 station_ip 85.185.172.167 174906 port 64 174906 unique_id port 174906 remote_ip 10.8.0.122 174912 username saeeddamghani 174912 mac 174912 bytes_out 0 174912 bytes_in 0 174912 station_ip 217.60.218.29 174912 port 61 174912 unique_id port 174912 remote_ip 10.8.0.122 174916 username saeeddamghani 174916 mac 174916 bytes_out 0 174916 bytes_in 0 174916 station_ip 217.60.218.29 174916 port 61 174916 unique_id port 174916 remote_ip 10.8.0.122 174917 username godarzi 174917 mac 174917 bytes_out 0 174917 bytes_in 0 174917 station_ip 5.202.23.122 174917 port 61 174917 unique_id port 174917 remote_ip 10.8.0.38 174922 username mosi 174922 kill_reason Another user logged on this global unique id 174922 mac 174922 bytes_out 0 174922 bytes_in 0 174922 station_ip 151.235.107.166 174922 port 64 174922 unique_id port 174922 remote_ip 10.8.0.142 174923 username mosi 174923 kill_reason Another user logged on this global unique id 174923 mac 174923 bytes_out 0 174923 bytes_in 0 174923 station_ip 151.235.107.166 174923 port 64 174923 unique_id port 174927 username saeeddamghani 174927 mac 174927 bytes_out 0 174927 bytes_in 0 174927 station_ip 217.60.218.29 174927 port 61 174927 unique_id port 174927 remote_ip 10.8.0.122 174934 username mosi 174934 kill_reason Another user logged on this global unique id 174934 mac 174934 bytes_out 0 174934 bytes_in 0 174934 station_ip 151.235.107.166 174934 port 64 174934 unique_id port 174935 username mosi 174935 kill_reason Another user logged on this global unique id 174935 mac 174935 bytes_out 0 174935 bytes_in 0 174935 station_ip 151.235.107.166 174935 port 64 174935 unique_id port 174940 username aminvpn 174940 unique_id port 174940 terminate_cause Lost-Carrier 174940 bytes_out 159080 174940 bytes_in 959239 174940 station_ip 5.120.148.241 174940 port 15729001 174940 nas_port_type Virtual 174940 remote_ip 5.5.5.94 174943 username hatami 174943 mac 174943 bytes_out 223007 174943 bytes_in 1258444 174943 station_ip 151.235.77.224 174943 port 61 174943 unique_id port 174943 remote_ip 10.8.0.98 174944 username saeeddamghani 174944 mac 174944 bytes_out 0 174944 bytes_in 0 174944 station_ip 217.60.218.29 174944 port 61 174944 unique_id port 174944 remote_ip 10.8.0.122 174948 username godarzi 174948 mac 174948 bytes_out 0 174948 bytes_in 0 174948 station_ip 5.202.23.122 174948 port 61 174948 unique_id port 174948 remote_ip 10.8.0.38 174952 username saeeddamghani 174952 mac 174952 bytes_out 0 174952 bytes_in 0 174952 station_ip 217.60.218.29 174952 port 66 174952 unique_id port 174952 remote_ip 10.8.0.122 174954 username amin.saeedi 174954 unique_id port 174954 terminate_cause Lost-Carrier 174954 bytes_out 8428927 174954 bytes_in 242238625 174954 station_ip 31.56.219.231 174954 port 15729003 174954 nas_port_type Virtual 174954 remote_ip 5.5.5.91 174959 username saeeddamghani 174959 mac 174899 station_ip 5.119.91.32 174899 port 61 174899 unique_id port 174899 remote_ip 10.8.0.58 174902 username aminvpn 174902 mac 174902 bytes_out 18372 174902 bytes_in 28491 174902 station_ip 5.119.91.32 174902 port 61 174902 unique_id port 174902 remote_ip 10.8.0.58 174903 username rahim 174903 mac 174903 bytes_out 0 174903 bytes_in 0 174903 station_ip 86.57.79.42 174903 port 61 174903 unique_id port 174903 remote_ip 10.8.0.134 174905 username kordestani 174905 mac 174905 bytes_out 0 174905 bytes_in 0 174905 station_ip 151.235.94.194 174905 port 67 174905 unique_id port 174907 username saeeddamghani 174907 mac 174907 bytes_out 0 174907 bytes_in 0 174907 station_ip 85.185.172.167 174907 port 64 174907 unique_id port 174907 remote_ip 10.8.0.122 174914 username saeeddamghani 174914 mac 174914 bytes_out 8045 174914 bytes_in 16460 174914 station_ip 217.60.218.29 174914 port 61 174914 unique_id port 174914 remote_ip 10.8.0.122 174915 username godarzi 174915 mac 174915 bytes_out 2313 174915 bytes_in 4340 174915 station_ip 5.202.23.122 174915 port 64 174915 unique_id port 174915 remote_ip 10.8.0.38 174919 username godarzi 174919 mac 174919 bytes_out 0 174919 bytes_in 0 174919 station_ip 5.202.23.122 174919 port 64 174919 unique_id port 174919 remote_ip 10.8.0.38 174920 username saeeddamghani 174920 mac 174920 bytes_out 1708765 174920 bytes_in 16040309 174920 station_ip 217.60.218.29 174920 port 61 174920 unique_id port 174920 remote_ip 10.8.0.122 174924 username saeeddamghani 174924 mac 174924 bytes_out 0 174924 bytes_in 0 174924 station_ip 217.60.218.29 174924 port 61 174924 unique_id port 174924 remote_ip 10.8.0.122 174925 username saeeddamghani 174925 mac 174925 bytes_out 1644 174925 bytes_in 3739 174925 station_ip 217.60.218.29 174925 port 61 174925 unique_id port 174925 remote_ip 10.8.0.122 174926 username mosi 174926 kill_reason Another user logged on this global unique id 174926 mac 174926 bytes_out 0 174926 bytes_in 0 174926 station_ip 151.235.107.166 174926 port 64 174926 unique_id port 174930 username saeeddamghani 174930 mac 174930 bytes_out 260625 174930 bytes_in 1105441 174930 station_ip 217.60.218.29 174930 port 61 174930 unique_id port 174930 remote_ip 10.8.0.122 174931 username mosi 174931 kill_reason Another user logged on this global unique id 174931 mac 174931 bytes_out 0 174931 bytes_in 0 174931 station_ip 151.235.107.166 174931 port 64 174931 unique_id port 174936 username mosi 174979 mac 174936 kill_reason Another user logged on this global unique id 174936 mac 174936 bytes_out 0 174936 bytes_in 0 174936 station_ip 151.235.107.166 174936 port 64 174936 unique_id port 174937 username saeeddamghani 174937 mac 174937 bytes_out 2075374 174937 bytes_in 24337830 174937 station_ip 217.60.218.29 174937 port 61 174937 unique_id port 174937 remote_ip 10.8.0.122 174938 username aminvpn 174938 mac 174938 bytes_out 6632 174938 bytes_in 7852 174938 station_ip 31.56.153.35 174938 port 66 174938 unique_id port 174938 remote_ip 10.8.0.58 174941 username saeeddamghani 174941 mac 174941 bytes_out 0 174941 bytes_in 0 174941 station_ip 217.60.218.29 174941 port 61 174941 unique_id port 174941 remote_ip 10.8.0.122 174942 username saeeddamghani 174942 mac 174942 bytes_out 0 174942 bytes_in 0 174942 station_ip 217.60.218.29 174942 port 64 174942 unique_id port 174942 remote_ip 10.8.0.122 174945 username saeeddamghani 174945 mac 174945 bytes_out 0 174945 bytes_in 0 174945 station_ip 217.60.218.29 174945 port 61 174939 bytes_in 0 174939 station_ip 151.235.107.166 174939 port 64 174939 unique_id port 174947 username hamid.e 174947 unique_id port 174947 terminate_cause Lost-Carrier 174947 bytes_out 4439326 174947 bytes_in 101326405 174947 station_ip 37.27.11.231 174947 port 15729002 174947 nas_port_type Virtual 174947 remote_ip 5.5.5.93 174951 username saeeddamghani 174951 kill_reason Maximum check online fails reached 174951 mac 174951 bytes_out 0 174951 bytes_in 0 174951 station_ip 217.60.218.29 174951 port 61 174951 unique_id port 174953 username arash 174953 mac 174953 bytes_out 592682 174953 bytes_in 3223661 174953 station_ip 37.27.13.61 174953 port 66 174953 unique_id port 174953 remote_ip 10.8.0.70 174955 username saeeddamghani 174955 mac 174955 bytes_out 0 174955 bytes_in 0 174955 station_ip 217.60.218.29 174955 port 67 174955 unique_id port 174955 remote_ip 10.8.0.122 174957 username arash 174957 mac 174957 bytes_out 707595 174957 bytes_in 6585699 174957 station_ip 37.27.13.61 174957 port 68 174957 unique_id port 174957 remote_ip 10.8.0.70 174958 username saeeddamghani 174958 kill_reason Another user logged on this global unique id 174958 mac 174958 bytes_out 0 174958 bytes_in 0 174958 station_ip 217.60.218.29 174958 port 66 174958 unique_id port 174958 remote_ip 10.8.0.122 174962 username amin.saeedi 174962 unique_id port 174962 terminate_cause Lost-Carrier 174962 bytes_out 322681 174962 bytes_in 3653460 174962 station_ip 31.56.219.231 174962 port 15729005 174962 nas_port_type Virtual 174962 remote_ip 5.5.5.88 174964 username aminvpn 174964 kill_reason Maximum check online fails reached 174964 unique_id port 174964 bytes_out 0 174964 bytes_in 0 174964 station_ip 5.119.92.44 174964 port 15728641 174964 nas_port_type Virtual 174966 username aminvpn 174966 unique_id port 174966 terminate_cause User-Request 174966 bytes_out 448926 174966 bytes_in 1503469 174966 station_ip 5.119.92.44 174966 port 15728640 174966 nas_port_type Virtual 174966 remote_ip 5.5.5.254 174968 username hashtadani4 174968 mac 174968 bytes_out 2957 174968 bytes_in 4695 174968 station_ip 5.202.64.251 174968 port 69 174968 unique_id port 174968 remote_ip 10.8.0.22 174973 username kordestani 174973 mac 174973 bytes_out 2481413 174973 bytes_in 31939349 174973 station_ip 151.235.100.55 174973 port 64 174973 unique_id port 174973 remote_ip 10.8.0.130 174976 username hashtadani4 174976 mac 174976 bytes_out 0 174976 bytes_in 0 174976 station_ip 5.202.59.253 174976 port 66 174976 unique_id port 174976 remote_ip 10.8.0.22 174979 username hashtadani4 174979 bytes_out 0 174979 bytes_in 0 174979 station_ip 5.202.59.253 174979 port 66 174979 unique_id port 174979 remote_ip 10.8.0.22 174980 username meysam 174980 mac 174980 bytes_out 153230 174980 bytes_in 1744368 174980 station_ip 188.158.49.43 174980 port 66 174980 unique_id port 174980 remote_ip 10.8.0.158 174983 username hashtadani4 174983 mac 174983 bytes_out 0 174983 bytes_in 0 174983 station_ip 5.202.59.253 174983 port 64 174983 unique_id port 174983 remote_ip 10.8.0.22 174984 username hashtadani4 174984 mac 174984 bytes_out 0 174984 bytes_in 0 174984 station_ip 5.202.59.253 174984 port 64 174984 unique_id port 174984 remote_ip 10.8.0.22 174987 username godarzi 174987 mac 174987 bytes_out 768778 174987 bytes_in 9056127 174987 station_ip 5.202.23.122 174987 port 64 174987 unique_id port 174987 remote_ip 10.8.0.38 174988 username godarzi 174988 mac 174988 bytes_out 945994 174988 bytes_in 12160885 174988 station_ip 5.202.23.122 174988 port 64 174988 unique_id port 174945 unique_id port 174945 remote_ip 10.8.0.122 174946 username saeeddamghani 174946 mac 174946 bytes_out 0 174946 bytes_in 0 174946 station_ip 217.60.218.29 174946 port 61 174946 unique_id port 174946 remote_ip 10.8.0.122 174949 username saeeddamghani 174949 mac 174949 bytes_out 0 174949 bytes_in 0 174949 station_ip 217.60.218.29 174949 port 61 174949 unique_id port 174949 remote_ip 10.8.0.122 174950 username saeeddamghani 174950 mac 174950 bytes_out 0 174950 bytes_in 0 174950 station_ip 217.60.218.29 174950 port 61 174950 unique_id port 174950 remote_ip 10.8.0.122 174956 username hamid.e 174956 unique_id port 174956 terminate_cause User-Request 174956 bytes_out 6036486 174956 bytes_in 139386776 174956 station_ip 37.27.1.142 174956 port 15729004 174956 nas_port_type Virtual 174956 remote_ip 5.5.5.89 174961 username aminvpn 174961 unique_id port 174961 terminate_cause User-Request 174961 bytes_out 1019495 174961 bytes_in 15600460 174961 station_ip 5.119.92.44 174961 port 15729007 174961 nas_port_type Virtual 174961 remote_ip 5.5.5.85 174965 username aminvpn 174965 kill_reason Maximum check online fails reached 174965 unique_id port 174965 bytes_out 0 174965 bytes_in 0 174965 station_ip 5.119.92.44 174965 port 15728640 174965 nas_port_type Virtual 174967 username meysam 174967 kill_reason Another user logged on this global unique id 174967 mac 174967 bytes_out 0 174967 bytes_in 0 174967 station_ip 188.158.49.43 174967 port 66 174967 unique_id port 174967 remote_ip 10.8.0.158 174970 username aminvpn 174970 mac 174970 bytes_out 0 174970 bytes_in 0 174970 station_ip 5.119.92.44 174970 port 64 174970 unique_id port 174970 remote_ip 10.8.0.58 174971 username meysam 174971 kill_reason Another user logged on this global unique id 174971 mac 174971 bytes_out 0 174971 bytes_in 0 174971 station_ip 188.158.49.43 174971 port 66 174971 unique_id port 174974 username meysam 174974 mac 174974 bytes_out 0 174974 bytes_in 0 174974 station_ip 188.158.49.43 174974 port 66 174974 unique_id port 174975 username kordestani 174975 mac 174975 bytes_out 2887 174975 bytes_in 5084 174975 station_ip 151.235.122.183 174975 port 64 174975 unique_id port 174975 remote_ip 10.8.0.130 174977 username godarzi 174977 mac 174977 bytes_out 4960067 174977 bytes_in 24995685 174977 station_ip 5.202.23.122 174977 port 68 174977 unique_id port 174977 remote_ip 10.8.0.38 174978 username hashtadani4 174978 mac 174978 bytes_out 14340 174978 bytes_in 31009 174978 station_ip 5.202.59.253 174978 port 66 174978 unique_id port 174978 remote_ip 10.8.0.22 174981 username kordestani 174981 mac 174981 bytes_out 280231 174981 bytes_in 3133292 174981 station_ip 151.235.95.242 174981 port 64 174981 unique_id port 174981 remote_ip 10.8.0.130 174986 username alipour 174986 mac 174986 bytes_out 2781380 174986 bytes_in 31607971 174986 station_ip 5.233.47.163 174986 port 67 174986 unique_id port 174986 remote_ip 10.8.0.26 174989 username hashtadani4 174989 mac 174989 bytes_out 0 174989 bytes_in 0 174989 station_ip 5.202.59.253 174989 port 64 174989 unique_id port 174989 remote_ip 10.8.0.22 174994 username hamid.e 174994 unique_id port 174994 terminate_cause Lost-Carrier 174994 bytes_out 3438205 174994 bytes_in 83776811 174994 station_ip 37.27.0.192 174994 port 15728643 174994 nas_port_type Virtual 174994 remote_ip 5.5.5.249 174995 username godarzi 174995 mac 174995 bytes_out 383952 174995 bytes_in 1631525 174995 station_ip 5.202.23.122 174995 port 66 174995 unique_id port 174995 remote_ip 10.8.0.38 174996 username hashtadani4 174996 mac 174959 bytes_out 0 174959 bytes_in 0 174959 station_ip 217.60.218.29 174959 port 66 174959 unique_id port 174960 username aminvpn 174960 unique_id port 174960 terminate_cause User-Request 174960 bytes_out 301948 174960 bytes_in 1298196 174960 station_ip 5.119.92.44 174960 port 15729006 174960 nas_port_type Virtual 174960 remote_ip 5.5.5.86 174963 username aminvpn 174963 unique_id port 174963 terminate_cause User-Request 174963 bytes_out 404448 174963 bytes_in 11297070 174963 station_ip 5.119.92.44 174963 port 15729008 174963 nas_port_type Virtual 174963 remote_ip 5.5.5.84 174969 username aminvpn 174969 mac 174969 bytes_out 1502287 174969 bytes_in 3466396 174969 station_ip 5.119.92.44 174969 port 64 174969 unique_id port 174969 remote_ip 10.8.0.58 174972 username hashtadani4 174972 mac 174972 bytes_out 0 174972 bytes_in 0 174972 station_ip 5.202.64.251 174972 port 69 174972 unique_id port 174972 remote_ip 10.8.0.22 174982 username godarzi 174982 mac 174982 bytes_out 835961 174982 bytes_in 12031230 174982 station_ip 5.202.23.122 174982 port 68 174982 unique_id port 174982 remote_ip 10.8.0.38 174985 username hashtadani4 174985 mac 174985 bytes_out 0 174985 bytes_in 0 174985 station_ip 5.202.59.253 174985 port 66 174985 unique_id port 174985 remote_ip 10.8.0.22 174990 username hashtadani4 174990 mac 174990 bytes_out 0 174990 bytes_in 0 174990 station_ip 5.202.59.253 174990 port 67 174990 unique_id port 174990 remote_ip 10.8.0.22 174992 username meysam 174992 mac 174992 bytes_out 2284014 174992 bytes_in 33547408 174992 station_ip 188.158.49.43 174992 port 64 174992 unique_id port 174992 remote_ip 10.8.0.158 174993 username aminvpn 174993 unique_id port 174993 terminate_cause User-Request 174993 bytes_out 0 174993 bytes_in 0 174993 station_ip 5.119.92.44 174993 port 15728645 174993 nas_port_type Virtual 174993 remote_ip 5.5.5.248 174999 username hashtadani4 174999 mac 174999 bytes_out 0 174999 bytes_in 0 174999 station_ip 5.202.59.253 174999 port 64 174999 unique_id port 174999 remote_ip 10.8.0.22 175012 username mosi 175012 mac 175012 bytes_out 0 175012 bytes_in 0 175012 station_ip 151.235.107.166 175012 port 64 175012 unique_id port 175013 username hashtadani4 175013 mac 175013 bytes_out 0 175013 bytes_in 0 175013 station_ip 5.202.59.253 175013 port 64 175013 unique_id port 175013 remote_ip 10.8.0.22 175014 username hashtadani4 175014 mac 175014 bytes_out 0 175014 bytes_in 0 175014 station_ip 5.202.59.253 175014 port 64 175014 unique_id port 175014 remote_ip 10.8.0.22 175017 username hashtadani4 175017 mac 175017 bytes_out 0 175017 bytes_in 0 175017 station_ip 5.202.59.253 175017 port 64 175017 unique_id port 175017 remote_ip 10.8.0.22 175021 username hashtadani4 175021 mac 175021 bytes_out 0 175021 bytes_in 0 175021 station_ip 5.202.59.253 175021 port 69 175021 unique_id port 175021 remote_ip 10.8.0.22 175024 username hashtadani4 175024 mac 175024 bytes_out 0 175024 bytes_in 0 175024 station_ip 5.202.59.253 175024 port 69 175024 unique_id port 175024 remote_ip 10.8.0.22 175025 username hashtadani4 175025 mac 175025 bytes_out 0 175025 bytes_in 0 175025 station_ip 5.202.59.253 175025 port 69 175025 unique_id port 175025 remote_ip 10.8.0.22 175029 username hashtadani4 175029 kill_reason Another user logged on this global unique id 175029 mac 175029 bytes_out 0 175029 bytes_in 0 175029 station_ip 5.202.59.253 175029 port 70 175029 unique_id port 175029 remote_ip 10.8.0.22 175031 username hashtadani4 175031 mac 174988 remote_ip 10.8.0.38 174991 username hashtadani4 174991 mac 174991 bytes_out 0 174991 bytes_in 0 174991 station_ip 5.202.59.253 174991 port 67 174991 unique_id port 174991 remote_ip 10.8.0.22 174998 username hashtadani4 174998 mac 174998 bytes_out 0 174998 bytes_in 0 174998 station_ip 5.202.59.253 174998 port 64 174998 unique_id port 174998 remote_ip 10.8.0.22 175001 username hashtadani4 175001 mac 175001 bytes_out 0 175001 bytes_in 0 175001 station_ip 5.202.59.253 175001 port 67 175001 unique_id port 175001 remote_ip 10.8.0.22 175002 username hashtadani4 175002 mac 175002 bytes_out 0 175002 bytes_in 0 175002 station_ip 5.202.59.253 175002 port 67 175002 unique_id port 175002 remote_ip 10.8.0.22 175003 username hashtadani4 175003 mac 175003 bytes_out 0 175003 bytes_in 0 175003 station_ip 5.202.59.253 175003 port 67 175003 unique_id port 175003 remote_ip 10.8.0.22 175005 username hashtadani4 175005 mac 175005 bytes_out 0 175005 bytes_in 0 175005 station_ip 5.202.59.253 175005 port 67 175005 unique_id port 175005 remote_ip 10.8.0.22 175009 username aminvpn 175009 unique_id port 175009 terminate_cause User-Request 175009 bytes_out 73377 175009 bytes_in 75049 175009 station_ip 5.119.92.44 175009 port 15728649 175009 nas_port_type Virtual 175009 remote_ip 5.5.5.244 175010 username aminvpn 175010 unique_id port 175010 terminate_cause User-Request 175010 bytes_out 346107 175010 bytes_in 2433585 175010 station_ip 5.119.92.44 175010 port 15728650 175010 nas_port_type Virtual 175010 remote_ip 5.5.5.244 175011 username aminvpn 175011 unique_id port 175011 terminate_cause User-Request 175011 bytes_out 7691 175011 bytes_in 2094 175011 station_ip 5.119.92.44 175011 port 15728654 175011 nas_port_type Virtual 175011 remote_ip 5.5.5.244 175018 username hashtadani4 175018 mac 175018 bytes_out 0 175018 bytes_in 0 175018 station_ip 5.202.59.253 175018 port 67 175018 unique_id port 175018 remote_ip 10.8.0.22 175019 username hashtadani4 175019 mac 175019 bytes_out 0 175019 bytes_in 0 175019 station_ip 5.202.59.253 175019 port 69 175019 unique_id port 175019 remote_ip 10.8.0.22 175022 username majidsarmast 175022 kill_reason Another user logged on this global unique id 175022 mac 175022 bytes_out 0 175022 bytes_in 0 175022 station_ip 86.57.100.205 175022 port 64 175022 unique_id port 175022 remote_ip 10.8.0.170 175023 username hashtadani4 175023 mac 175023 bytes_out 13581 175023 bytes_in 20649 175023 station_ip 5.202.59.253 175023 port 69 175023 unique_id port 175023 remote_ip 10.8.0.22 175027 username majidsarmast 175027 kill_reason Another user logged on this global unique id 175027 mac 175027 bytes_out 0 175027 bytes_in 0 175027 station_ip 86.57.100.205 175027 port 64 175027 unique_id port 175028 username majidsarmast 175028 mac 175028 bytes_out 0 175028 bytes_in 0 175028 station_ip 86.57.100.205 175028 port 64 175028 unique_id port 175037 username hashtadani4 175037 mac 175037 bytes_out 0 175037 bytes_in 0 175037 station_ip 5.202.59.253 175037 port 68 175037 unique_id port 175037 remote_ip 10.8.0.22 175038 username hashtadani4 175038 mac 175038 bytes_out 0 175038 bytes_in 0 175038 station_ip 5.202.59.253 175038 port 68 175038 unique_id port 175038 remote_ip 10.8.0.22 175043 username hashtadani4 175043 mac 175043 bytes_out 8296 175043 bytes_in 10238 175043 station_ip 5.202.59.253 175043 port 69 175043 unique_id port 175043 remote_ip 10.8.0.22 175044 username godarzi 175044 kill_reason Another user logged on this global unique id 175044 mac 175044 bytes_out 0 174996 bytes_out 0 174996 bytes_in 0 174996 station_ip 5.202.59.253 174996 port 64 174996 unique_id port 174996 remote_ip 10.8.0.22 174997 username hashtadani4 174997 mac 174997 bytes_out 0 174997 bytes_in 0 174997 station_ip 5.202.59.253 174997 port 64 174997 unique_id port 174997 remote_ip 10.8.0.22 175000 username mosi 175000 kill_reason Another user logged on this global unique id 175000 mac 175000 bytes_out 0 175000 bytes_in 0 175000 station_ip 151.235.107.166 175000 port 64 175000 unique_id port 175000 remote_ip 10.8.0.142 175004 username hashtadani4 175004 mac 175004 bytes_out 0 175004 bytes_in 0 175004 station_ip 5.202.59.253 175004 port 67 175004 unique_id port 175004 remote_ip 10.8.0.22 175006 username aminvpn 175006 unique_id port 175006 terminate_cause User-Request 175006 bytes_out 583671 175006 bytes_in 7540229 175006 station_ip 5.119.92.44 175006 port 15728648 175006 nas_port_type Virtual 175006 remote_ip 5.5.5.244 175007 username hashtadani4 175007 mac 175007 bytes_out 0 175007 bytes_in 0 175007 station_ip 5.202.59.253 175007 port 67 175007 unique_id port 175007 remote_ip 10.8.0.22 175008 username hashtadani4 175008 mac 175008 bytes_out 0 175008 bytes_in 0 175008 station_ip 5.202.59.253 175008 port 67 175008 unique_id port 175008 remote_ip 10.8.0.22 175015 username hashtadani4 175015 mac 175015 bytes_out 0 175015 bytes_in 0 175015 station_ip 5.202.59.253 175015 port 64 175015 unique_id port 175015 remote_ip 10.8.0.22 175016 username hashtadani4 175016 mac 175016 bytes_out 0 175016 bytes_in 0 175016 station_ip 5.202.59.253 175016 port 64 175016 unique_id port 175016 remote_ip 10.8.0.22 175020 username hashtadani4 175020 kill_reason Maximum check online fails reached 175020 mac 175020 bytes_out 0 175020 bytes_in 0 175020 station_ip 5.202.59.253 175020 port 67 175020 unique_id port 175026 username hashtadani4 175026 mac 175026 bytes_out 0 175026 bytes_in 0 175026 station_ip 5.202.59.253 175026 port 69 175026 unique_id port 175026 remote_ip 10.8.0.22 175030 username arash 175030 mac 175030 bytes_out 2717829 175030 bytes_in 32578190 175030 station_ip 37.27.13.61 175030 port 68 175030 unique_id port 175030 remote_ip 10.8.0.70 175032 username hamid.e 175032 unique_id port 175032 terminate_cause User-Request 175032 bytes_out 20909021 175032 bytes_in 517358214 175032 station_ip 37.27.11.194 175032 port 15728647 175032 nas_port_type Virtual 175032 remote_ip 5.5.5.245 175033 username hashtadani4 175033 mac 175033 bytes_out 0 175033 bytes_in 0 175033 station_ip 5.202.59.253 175033 port 64 175033 unique_id port 175033 remote_ip 10.8.0.22 175035 username askari5795 175035 mac 175035 bytes_out 1642155 175035 bytes_in 5046174 175035 station_ip 46.225.212.174 175035 port 68 175035 unique_id port 175035 remote_ip 10.8.0.6 175036 username hashtadani4 175036 mac 175036 bytes_out 0 175036 bytes_in 0 175036 station_ip 5.202.59.253 175036 port 68 175036 unique_id port 175036 remote_ip 10.8.0.22 175039 username godarzi 175039 kill_reason Another user logged on this global unique id 175039 mac 175039 bytes_out 0 175039 bytes_in 0 175039 station_ip 5.202.23.122 175039 port 66 175039 unique_id port 175039 remote_ip 10.8.0.38 175042 username hashtadani4 175042 mac 175042 bytes_out 0 175042 bytes_in 0 175042 station_ip 5.202.59.253 175042 port 69 175042 unique_id port 175042 remote_ip 10.8.0.22 175047 username hashtadani4 175047 kill_reason Maximum check online fails reached 175047 mac 175047 bytes_out 0 175047 bytes_in 0 175047 station_ip 5.202.59.253 175047 port 69 175031 bytes_out 0 175031 bytes_in 0 175031 station_ip 5.202.59.253 175031 port 70 175031 unique_id port 175034 username hatami 175034 mac 175034 bytes_out 241822 175034 bytes_in 1378302 175034 station_ip 151.235.80.147 175034 port 69 175034 unique_id port 175034 remote_ip 10.8.0.98 175040 username shadkam 175040 kill_reason Another user logged on this global unique id 175040 mac 175040 bytes_out 0 175040 bytes_in 0 175040 station_ip 5.202.9.118 175040 port 64 175040 unique_id port 175040 remote_ip 10.8.0.74 175041 username hashtadani4 175041 mac 175041 bytes_out 0 175041 bytes_in 0 175041 station_ip 5.202.59.253 175041 port 69 175041 unique_id port 175041 remote_ip 10.8.0.22 175046 username shadkam 175046 kill_reason Another user logged on this global unique id 175046 mac 175046 bytes_out 0 175046 bytes_in 0 175046 station_ip 5.202.9.118 175046 port 64 175046 unique_id port 175051 username hashtadani4 175051 mac 175051 bytes_out 7525 175051 bytes_in 10793 175051 station_ip 5.202.59.253 175051 port 70 175051 unique_id port 175051 remote_ip 10.8.0.22 175055 username majidsarmast 175055 kill_reason Another user logged on this global unique id 175055 mac 175055 bytes_out 0 175055 bytes_in 0 175055 station_ip 86.57.45.78 175055 port 71 175055 unique_id port 175055 remote_ip 10.8.0.170 175061 username majidsarmast 175061 kill_reason Another user logged on this global unique id 175061 mac 175061 bytes_out 0 175061 bytes_in 0 175061 station_ip 86.57.45.78 175061 port 71 175061 unique_id port 175063 username hashtadani4 175063 mac 175063 bytes_out 16604 175063 bytes_in 17843 175063 station_ip 5.202.59.253 175063 port 71 175063 unique_id port 175063 remote_ip 10.8.0.22 175065 username hashtadani4 175065 kill_reason Another user logged on this global unique id 175065 mac 175065 bytes_out 0 175065 bytes_in 0 175065 station_ip 5.202.59.253 175065 port 71 175065 unique_id port 175065 remote_ip 10.8.0.22 175066 username barzegar 175066 mac 175066 bytes_out 260707 175066 bytes_in 2653482 175066 station_ip 151.235.116.0 175066 port 72 175066 unique_id port 175066 remote_ip 10.8.0.10 175067 username hashtadani4 175067 mac 175067 bytes_out 0 175067 bytes_in 0 175067 station_ip 5.202.59.253 175067 port 71 175067 unique_id port 175071 username barzegar 175071 mac 175071 bytes_out 0 175071 bytes_in 0 175071 station_ip 151.235.116.0 175071 port 70 175071 unique_id port 175071 remote_ip 10.8.0.10 175075 username hashtadani4 175075 mac 175075 bytes_out 0 175075 bytes_in 0 175075 station_ip 5.202.59.253 175075 port 71 175075 unique_id port 175075 remote_ip 10.8.0.22 175082 username godarzi 175082 mac 175082 bytes_out 0 175082 bytes_in 0 175082 station_ip 5.202.23.122 175082 port 66 175082 unique_id port 175084 username hashtadani4 175084 mac 175084 bytes_out 0 175084 bytes_in 0 175084 station_ip 5.202.59.253 175084 port 66 175084 unique_id port 175084 remote_ip 10.8.0.22 175086 username barzegar 175086 mac 175086 bytes_out 29743 175086 bytes_in 466799 175086 station_ip 151.235.116.0 175086 port 70 175086 unique_id port 175086 remote_ip 10.8.0.10 175087 username hashtadani4 175087 mac 175087 bytes_out 0 175087 bytes_in 0 175087 station_ip 5.202.59.253 175087 port 66 175087 unique_id port 175087 remote_ip 10.8.0.22 175090 username shadkam 175090 kill_reason Another user logged on this global unique id 175090 mac 175090 bytes_out 0 175090 bytes_in 0 175090 station_ip 5.202.9.118 175090 port 71 175090 unique_id port 175090 remote_ip 10.8.0.74 175095 username saeeddamghani 175095 mac 175044 bytes_in 0 175044 station_ip 5.202.23.122 175044 port 66 175044 unique_id port 175045 username hashtadani4 175045 mac 175045 bytes_out 0 175045 bytes_in 0 175045 station_ip 5.202.59.253 175045 port 70 175045 unique_id port 175045 remote_ip 10.8.0.22 175050 username hashtadani4 175050 mac 175050 bytes_out 0 175050 bytes_in 0 175050 station_ip 5.202.59.253 175050 port 70 175050 unique_id port 175050 remote_ip 10.8.0.22 175056 username majidsarmast 175056 kill_reason Another user logged on this global unique id 175056 mac 175056 bytes_out 0 175056 bytes_in 0 175056 station_ip 86.57.45.78 175056 port 71 175056 unique_id port 175058 username hashtadani4 175058 mac 175058 bytes_out 0 175058 bytes_in 0 175058 station_ip 5.202.59.253 175058 port 72 175058 unique_id port 175058 remote_ip 10.8.0.22 175059 username hashtadani4 175059 mac 175059 bytes_out 0 175059 bytes_in 0 175059 station_ip 5.202.59.253 175059 port 72 175059 unique_id port 175059 remote_ip 10.8.0.22 175060 username hashtadani4 175060 mac 175060 bytes_out 0 175060 bytes_in 0 175060 station_ip 5.202.59.253 175060 port 72 175060 unique_id port 175060 remote_ip 10.8.0.22 175064 username shadkam 175064 kill_reason Another user logged on this global unique id 175064 mac 175064 bytes_out 0 175064 bytes_in 0 175064 station_ip 5.202.9.118 175064 port 64 175064 unique_id port 175064 remote_ip 10.8.0.74 175068 username hajghani 175068 mac 175068 bytes_out 944630 175068 bytes_in 6006464 175068 station_ip 46.225.212.174 175068 port 70 175068 unique_id port 175068 remote_ip 10.8.0.102 175070 username shadkam 175070 mac 175070 bytes_out 0 175070 bytes_in 0 175070 station_ip 5.202.9.118 175070 port 64 175070 unique_id port 175072 username barzegar 175072 mac 175072 bytes_out 0 175072 bytes_in 0 175072 station_ip 151.235.116.0 175072 port 64 175072 unique_id port 175072 remote_ip 10.8.0.10 175073 username hashtadani4 175073 mac 175073 bytes_out 0 175073 bytes_in 0 175073 station_ip 5.202.59.253 175073 port 64 175073 unique_id port 175073 remote_ip 10.8.0.22 175076 username hashtadani4 175076 mac 175076 bytes_out 527683 175076 bytes_in 4956873 175076 station_ip 5.202.59.253 175076 port 64 175076 unique_id port 175076 remote_ip 10.8.0.22 175079 username barzegar 175079 mac 175079 bytes_out 192782 175079 bytes_in 2775438 175079 station_ip 151.235.116.0 175079 port 70 175079 unique_id port 175079 remote_ip 10.8.0.10 175080 username barzegar 175080 mac 175080 bytes_out 0 175080 bytes_in 0 175080 station_ip 151.235.116.0 175080 port 64 175080 unique_id port 175080 remote_ip 10.8.0.10 175083 username barzegar 175083 kill_reason Maximum check online fails reached 175083 mac 175083 bytes_out 0 175083 bytes_in 0 175083 station_ip 151.235.116.0 175083 port 64 175083 unique_id port 175089 username hashtadani4 175089 mac 175089 bytes_out 0 175089 bytes_in 0 175089 station_ip 5.202.59.253 175089 port 70 175089 unique_id port 175089 remote_ip 10.8.0.22 175092 username saeeddamghani 175092 unique_id port 175092 terminate_cause User-Request 175092 bytes_out 271525 175092 bytes_in 1889885 175092 station_ip 217.60.218.29 175092 port 15728660 175092 nas_port_type Virtual 175092 remote_ip 5.5.5.240 175093 username saeeddamghani 175093 mac 175093 bytes_out 1324817 175093 bytes_in 11985650 175093 station_ip 217.60.218.29 175093 port 66 175093 unique_id port 175093 remote_ip 10.8.0.122 175096 username shadkam 175096 kill_reason Another user logged on this global unique id 175096 mac 175096 bytes_out 0 175047 unique_id port 175048 username hashtadani4 175048 mac 175048 bytes_out 0 175048 bytes_in 0 175048 station_ip 5.202.59.253 175048 port 70 175048 unique_id port 175048 remote_ip 10.8.0.22 175049 username hashtadani4 175049 mac 175049 bytes_out 0 175049 bytes_in 0 175049 station_ip 5.202.59.253 175049 port 70 175049 unique_id port 175049 remote_ip 10.8.0.22 175052 username hashtadani4 175052 mac 175052 bytes_out 9689 175052 bytes_in 11386 175052 station_ip 5.202.59.253 175052 port 70 175052 unique_id port 175052 remote_ip 10.8.0.22 175053 username hashtadani4 175053 mac 175053 bytes_out 0 175053 bytes_in 0 175053 station_ip 5.202.59.253 175053 port 70 175053 unique_id port 175053 remote_ip 10.8.0.22 175054 username shadkam 175054 mac 175054 bytes_out 0 175054 bytes_in 0 175054 station_ip 5.202.9.118 175054 port 64 175054 unique_id port 175057 username hashtadani4 175057 mac 175057 bytes_out 0 175057 bytes_in 0 175057 station_ip 5.202.59.253 175057 port 72 175057 unique_id port 175057 remote_ip 10.8.0.22 175062 username majidsarmast 175062 mac 175062 bytes_out 0 175062 bytes_in 0 175062 station_ip 86.57.45.78 175062 port 71 175062 unique_id port 175069 username hashtadani4 175069 mac 175069 bytes_out 0 175069 bytes_in 0 175069 station_ip 5.202.59.253 175069 port 70 175069 unique_id port 175069 remote_ip 10.8.0.22 175074 username shadkam 175074 mac 175074 bytes_out 1636 175074 bytes_in 6213 175074 station_ip 5.202.9.118 175074 port 64 175074 unique_id port 175074 remote_ip 10.8.0.74 175077 username hashtadani4 175077 mac 175077 bytes_out 11471 175077 bytes_in 13208 175077 station_ip 5.202.59.253 175077 port 64 175077 unique_id port 175077 remote_ip 10.8.0.22 175078 username godarzi 175078 kill_reason Another user logged on this global unique id 175078 mac 175078 bytes_out 0 175078 bytes_in 0 175078 station_ip 5.202.23.122 175078 port 66 175078 unique_id port 175081 username hashtadani4 175081 mac 175081 bytes_out 0 175081 bytes_in 0 175081 station_ip 5.202.59.253 175081 port 70 175081 unique_id port 175081 remote_ip 10.8.0.22 175085 username hashtadani4 175085 mac 175085 bytes_out 0 175085 bytes_in 0 175085 station_ip 5.202.59.253 175085 port 66 175085 unique_id port 175085 remote_ip 10.8.0.22 175088 username hashtadani4 175088 mac 175088 bytes_out 10199 175088 bytes_in 11356 175088 station_ip 5.202.59.253 175088 port 66 175088 unique_id port 175088 remote_ip 10.8.0.22 175091 username hashtadani4 175091 mac 175091 bytes_out 0 175091 bytes_in 0 175091 station_ip 5.202.59.253 175091 port 70 175091 unique_id port 175091 remote_ip 10.8.0.22 175094 username saeeddamghani 175094 unique_id port 175094 terminate_cause User-Request 175094 bytes_out 57055 175094 bytes_in 634962 175094 station_ip 217.60.218.29 175094 port 15728662 175094 nas_port_type Virtual 175094 remote_ip 5.5.5.239 175098 username shadkam 175098 mac 175098 bytes_out 0 175098 bytes_in 0 175098 station_ip 5.202.9.118 175098 port 71 175098 unique_id port 175099 username aminvpn 175099 unique_id port 175099 terminate_cause User-Request 175099 bytes_out 145908 175099 bytes_in 300561 175099 station_ip 5.119.92.44 175099 port 15728665 175099 nas_port_type Virtual 175099 remote_ip 5.5.5.244 175104 username mansour 175104 mac 175104 bytes_out 324374 175104 bytes_in 4474392 175104 station_ip 5.202.134.148 175104 port 66 175104 unique_id port 175104 remote_ip 10.8.0.206 175108 username godarzi 175108 mac 175108 bytes_out 1321847 175095 bytes_out 71005 175095 bytes_in 46279 175095 station_ip 217.60.218.29 175095 port 66 175095 unique_id port 175095 remote_ip 10.8.0.122 175097 username saeeddamghani 175097 mac 175097 bytes_out 327523 175097 bytes_in 104538 175097 station_ip 217.60.218.29 175097 port 66 175097 unique_id port 175097 remote_ip 10.8.0.122 175100 username godarzi 175100 mac 175100 bytes_out 112555 175100 bytes_in 714714 175100 station_ip 5.202.23.122 175100 port 72 175100 unique_id port 175100 remote_ip 10.8.0.38 175103 username saeeddamghani 175103 unique_id port 175103 terminate_cause Lost-Carrier 175103 bytes_out 2454813 175103 bytes_in 79459475 175103 station_ip 217.60.218.29 175103 port 15728663 175103 nas_port_type Virtual 175103 remote_ip 5.5.5.239 175107 username amin.saeedi 175107 unique_id port 175107 terminate_cause User-Request 175107 bytes_out 8251280 175107 bytes_in 259390418 175107 station_ip 31.56.157.11 175107 port 15728658 175107 nas_port_type Virtual 175107 remote_ip 5.5.5.241 175109 username kordestani 175109 mac 175109 bytes_out 260710 175109 bytes_in 338128 175109 station_ip 151.235.105.6 175109 port 66 175109 unique_id port 175109 remote_ip 10.8.0.130 175112 username saeeddamghani 175112 kill_reason Another user logged on this global unique id 175112 mac 175112 bytes_out 0 175112 bytes_in 0 175112 station_ip 217.60.218.29 175112 port 71 175112 unique_id port 175114 username kordestani 175114 kill_reason Another user logged on this global unique id 175114 mac 175114 bytes_out 0 175114 bytes_in 0 175114 station_ip 151.235.105.6 175114 port 66 175114 unique_id port 175114 remote_ip 10.8.0.130 175117 username saeeddamghani 175117 mac 175117 bytes_out 0 175117 bytes_in 0 175117 station_ip 217.60.218.29 175117 port 71 175117 unique_id port 175121 username saeeddamghani 175121 kill_reason Another user logged on this global unique id 175121 mac 175121 bytes_out 0 175121 bytes_in 0 175121 station_ip 217.60.218.29 175121 port 71 175121 unique_id port 175122 username saeeddamghani 175122 kill_reason Another user logged on this global unique id 175122 mac 175122 bytes_out 0 175122 bytes_in 0 175122 station_ip 217.60.218.29 175122 port 71 175122 unique_id port 175123 username kordestani 175123 kill_reason Another user logged on this global unique id 175123 mac 175123 bytes_out 0 175123 bytes_in 0 175123 station_ip 151.235.105.6 175123 port 66 175123 unique_id port 175128 username kordestani 175128 kill_reason Another user logged on this global unique id 175128 mac 175128 bytes_out 0 175128 bytes_in 0 175128 station_ip 151.235.105.6 175128 port 66 175128 unique_id port 175132 username aminvpn 175132 mac 175132 bytes_out 48032 175132 bytes_in 351247 175132 station_ip 5.120.148.199 175132 port 66 175132 unique_id port 175132 remote_ip 10.8.0.58 175136 username morteza 175136 mac 175136 bytes_out 2275183 175136 bytes_in 2623235 175136 station_ip 94.241.176.50 175136 port 66 175136 unique_id port 175136 remote_ip 10.8.0.174 175137 username morteza 175137 mac 175137 bytes_out 309013 175137 bytes_in 2117730 175137 station_ip 94.241.176.50 175137 port 66 175137 unique_id port 175137 remote_ip 10.8.0.174 175141 username shadkam 175141 mac 175141 bytes_out 0 175141 bytes_in 0 175141 station_ip 5.202.6.67 175141 port 66 175141 unique_id port 175141 remote_ip 10.8.0.74 175145 username alipour 175145 mac 175145 bytes_out 0 175145 bytes_in 0 175145 station_ip 5.233.47.163 175145 port 68 175145 unique_id port 175146 username shadkam 175146 mac 175146 bytes_out 9312 175146 bytes_in 15458 175146 station_ip 5.202.6.67 175146 port 70 175096 bytes_in 0 175096 station_ip 5.202.9.118 175096 port 71 175096 unique_id port 175101 username shadkam 175101 mac 175101 bytes_out 16830545 175101 bytes_in 22432829 175101 station_ip 5.202.9.118 175101 port 66 175101 unique_id port 175101 remote_ip 10.8.0.74 175102 username saeeddamghani 175102 kill_reason Another user logged on this global unique id 175102 mac 175102 bytes_out 0 175102 bytes_in 0 175102 station_ip 217.60.218.29 175102 port 71 175102 unique_id port 175102 remote_ip 10.8.0.122 175105 username saeeddamghani 175105 kill_reason Another user logged on this global unique id 175105 mac 175105 bytes_out 0 175105 bytes_in 0 175105 station_ip 217.60.218.29 175105 port 71 175105 unique_id port 175106 username saeeddamghani 175106 unique_id port 175106 terminate_cause User-Request 175106 bytes_out 1246300 175106 bytes_in 10552436 175106 station_ip 217.60.218.29 175106 port 15728661 175106 nas_port_type Virtual 175106 remote_ip 5.5.5.240 175110 username kordestani 175110 mac 175110 bytes_out 0 175110 bytes_in 0 175110 station_ip 151.235.105.6 175110 port 72 175110 unique_id port 175110 remote_ip 10.8.0.130 175111 username saeeddamghani 175111 kill_reason Another user logged on this global unique id 175111 mac 175111 bytes_out 0 175111 bytes_in 0 175111 station_ip 217.60.218.29 175111 port 71 175111 unique_id port 175115 username saeeddamghani 175115 kill_reason Another user logged on this global unique id 175115 mac 175115 bytes_out 0 175115 bytes_in 0 175115 station_ip 217.60.218.29 175115 port 71 175115 unique_id port 175115 remote_ip 10.8.0.122 175124 username saeeddamghani 175124 kill_reason Another user logged on this global unique id 175124 mac 175124 bytes_out 0 175124 bytes_in 0 175124 station_ip 217.60.218.29 175124 port 71 175124 unique_id port 175127 username kordestani 175127 kill_reason Another user logged on this global unique id 175127 mac 175127 bytes_out 0 175127 bytes_in 0 175127 station_ip 151.235.105.6 175127 port 66 175127 unique_id port 175130 username kordestani 175130 mac 175130 bytes_out 2973076 175130 bytes_in 42138354 175130 station_ip 151.235.105.6 175130 port 66 175130 unique_id port 175130 remote_ip 10.8.0.130 175134 username aminvpn 175134 unique_id port 175134 terminate_cause User-Request 175134 bytes_out 1811590 175134 bytes_in 17970224 175134 station_ip 5.120.148.199 175134 port 15728643 175134 nas_port_type Virtual 175134 remote_ip 5.5.5.255 175138 username shadkam 175138 mac 175138 bytes_out 0 175138 bytes_in 0 175138 station_ip 5.202.6.67 175138 port 66 175138 unique_id port 175138 remote_ip 10.8.0.74 175143 username alipour 175143 kill_reason Another user logged on this global unique id 175143 mac 175143 bytes_out 0 175143 bytes_in 0 175143 station_ip 5.233.47.163 175143 port 68 175143 unique_id port 175143 remote_ip 10.8.0.26 175146 unique_id port 175146 remote_ip 10.8.0.74 175147 username godarzi 175147 mac 175147 bytes_out 4823718 175147 bytes_in 20636196 175147 station_ip 5.202.25.131 175147 port 68 175147 unique_id port 175147 remote_ip 10.8.0.38 175149 username godarzi 175149 mac 175149 bytes_out 1821818 175149 bytes_in 18512117 175149 station_ip 5.202.25.131 175149 port 68 175149 unique_id port 175149 remote_ip 10.8.0.38 175151 username meysam 175151 kill_reason Another user logged on this global unique id 175151 mac 175151 bytes_out 0 175151 bytes_in 0 175151 station_ip 188.159.252.173 175151 port 70 175151 unique_id port 175151 remote_ip 10.8.0.158 175152 username godarzi 175152 mac 175152 bytes_out 3767687 175152 bytes_in 28524771 175152 station_ip 5.202.25.131 175152 port 71 175152 unique_id port 175108 bytes_in 13413977 175108 station_ip 5.202.23.122 175108 port 66 175108 unique_id port 175108 remote_ip 10.8.0.38 175113 username saeeddamghani 175113 mac 175113 bytes_out 0 175113 bytes_in 0 175113 station_ip 217.60.218.29 175113 port 71 175113 unique_id port 175116 username godarzi 175116 mac 175116 bytes_out 1594310 175116 bytes_in 10063608 175116 station_ip 5.202.23.122 175116 port 72 175116 unique_id port 175116 remote_ip 10.8.0.38 175118 username saeeddamghani 175118 mac 175118 bytes_out 0 175118 bytes_in 0 175118 station_ip 217.60.218.29 175118 port 71 175118 unique_id port 175118 remote_ip 10.8.0.122 175119 username saeeddamghani 175119 kill_reason Another user logged on this global unique id 175119 mac 175119 bytes_out 0 175119 bytes_in 0 175119 station_ip 217.60.218.29 175119 port 71 175119 unique_id port 175119 remote_ip 10.8.0.122 175120 username saeeddamghani 175120 kill_reason Another user logged on this global unique id 175120 mac 175120 bytes_out 0 175120 bytes_in 0 175120 station_ip 217.60.218.29 175120 port 71 175120 unique_id port 175125 username saeeddamghani 175125 mac 175125 bytes_out 0 175125 bytes_in 0 175125 station_ip 217.60.218.29 175125 port 71 175125 unique_id port 175126 username kordestani 175126 kill_reason Another user logged on this global unique id 175126 mac 175126 bytes_out 0 175126 bytes_in 0 175126 station_ip 151.235.105.6 175126 port 66 175126 unique_id port 175129 username kordestani 175129 mac 175129 bytes_out 0 175129 bytes_in 0 175129 station_ip 151.235.105.6 175129 port 66 175129 unique_id port 175131 username aminvpn 175131 mac 175131 bytes_out 3577495 175131 bytes_in 35973953 175131 station_ip 5.119.92.44 175131 port 70 175131 unique_id port 175131 remote_ip 10.8.0.58 175133 username aminvpn 175133 unique_id port 175133 terminate_cause User-Request 175133 bytes_out 0 175133 bytes_in 0 175133 station_ip 5.120.148.199 175133 port 15728642 175133 nas_port_type Virtual 175133 remote_ip 5.5.5.255 175135 username aminvpn 175135 unique_id port 175135 terminate_cause User-Request 175135 bytes_out 1622553 175135 bytes_in 34749437 175135 station_ip 5.120.148.199 175135 port 15728680 175135 nas_port_type Virtual 175135 remote_ip 5.5.5.255 175139 username shadkam 175139 mac 175139 bytes_out 0 175139 bytes_in 0 175139 station_ip 5.202.6.67 175139 port 66 175139 unique_id port 175139 remote_ip 10.8.0.74 175140 username shadkam 175140 mac 175140 bytes_out 0 175140 bytes_in 0 175140 station_ip 5.202.6.67 175140 port 66 175140 unique_id port 175140 remote_ip 10.8.0.74 175142 username shadkam 175142 mac 175142 bytes_out 1636 175142 bytes_in 5035 175142 station_ip 5.202.6.67 175142 port 66 175142 unique_id port 175142 remote_ip 10.8.0.74 175144 username shadkam 175144 kill_reason Maximum check online fails reached 175144 mac 175144 bytes_out 0 175144 bytes_in 0 175144 station_ip 5.202.6.67 175144 port 66 175144 unique_id port 175148 username aminvpn 175148 mac 175148 bytes_out 371165 175148 bytes_in 2357270 175148 station_ip 31.56.153.35 175148 port 70 175148 unique_id port 175148 remote_ip 10.8.0.58 175150 username aminvpn 175150 mac 175150 bytes_out 1808674 175150 bytes_in 22968114 175150 station_ip 5.120.148.199 175150 port 72 175150 unique_id port 175150 remote_ip 10.8.0.58 175152 remote_ip 10.8.0.38 175153 username godarzi 175153 mac 175153 bytes_out 68047 175153 bytes_in 105835 175153 station_ip 5.202.25.131 175153 port 71 175153 unique_id port 175153 remote_ip 10.8.0.38 175154 username alipour 175154 mac 175154 bytes_out 2309976 175154 bytes_in 28688477 175154 station_ip 5.233.47.163 175154 port 68 175154 unique_id port 175154 remote_ip 10.8.0.26 175156 username hashtadani4 175156 mac 175156 bytes_out 0 175156 bytes_in 0 175156 station_ip 5.202.133.236 175156 port 68 175156 unique_id port 175156 remote_ip 10.8.0.22 175160 username hashtadani4 175160 kill_reason Another user logged on this global unique id 175160 mac 175160 bytes_out 0 175160 bytes_in 0 175160 station_ip 5.202.133.236 175160 port 68 175160 unique_id port 175160 remote_ip 10.8.0.22 175166 username hashtadani4 175166 mac 175166 bytes_out 0 175166 bytes_in 0 175166 station_ip 5.202.133.236 175166 port 68 175166 unique_id port 175166 remote_ip 10.8.0.22 175170 username hashtadani4 175170 mac 175170 bytes_out 0 175170 bytes_in 0 175170 station_ip 5.202.133.236 175170 port 68 175170 unique_id port 175170 remote_ip 10.8.0.22 175173 username hashtadani4 175173 mac 175173 bytes_out 0 175173 bytes_in 0 175173 station_ip 5.202.133.236 175173 port 68 175173 unique_id port 175173 remote_ip 10.8.0.22 175174 username hashtadani4 175174 mac 175174 bytes_out 0 175174 bytes_in 0 175174 station_ip 5.202.133.236 175174 port 68 175174 unique_id port 175174 remote_ip 10.8.0.22 175178 username aminvpn 175178 mac 175178 bytes_out 497040 175178 bytes_in 3537278 175178 station_ip 5.119.157.220 175178 port 71 175178 unique_id port 175178 remote_ip 10.8.0.58 175180 username hashtadani4 175180 mac 175180 bytes_out 536348 175180 bytes_in 4557124 175180 station_ip 5.202.133.236 175180 port 68 175180 unique_id port 175180 remote_ip 10.8.0.22 175184 username hashtadani4 175184 mac 175184 bytes_out 0 175184 bytes_in 0 175184 station_ip 5.202.133.236 175184 port 70 175184 unique_id port 175184 remote_ip 10.8.0.22 175189 username hashtadani4 175189 mac 175189 bytes_out 0 175189 bytes_in 0 175189 station_ip 5.202.133.236 175189 port 70 175189 unique_id port 175189 remote_ip 10.8.0.22 175190 username hamid.e 175190 unique_id port 175190 terminate_cause Lost-Carrier 175190 bytes_out 711255 175190 bytes_in 8306269 175190 station_ip 37.27.28.57 175190 port 15728729 175190 nas_port_type Virtual 175190 remote_ip 5.5.5.254 175191 username hashtadani4 175191 mac 175191 bytes_out 0 175191 bytes_in 0 175191 station_ip 5.202.133.236 175191 port 71 175191 unique_id port 175191 remote_ip 10.8.0.22 175194 username godarzi 175194 mac 175194 bytes_out 481257 175194 bytes_in 3021948 175194 station_ip 5.202.25.131 175194 port 70 175194 unique_id port 175194 remote_ip 10.8.0.38 175197 username hashtadani4 175197 mac 175197 bytes_out 0 175197 bytes_in 0 175197 station_ip 5.202.133.236 175197 port 72 175197 unique_id port 175197 remote_ip 10.8.0.22 175199 username hashtadani4 175199 mac 175199 bytes_out 0 175199 bytes_in 0 175199 station_ip 5.202.133.236 175199 port 72 175199 unique_id port 175199 remote_ip 10.8.0.22 175201 username hashtadani4 175201 mac 175201 bytes_out 0 175201 bytes_in 0 175201 station_ip 5.202.133.236 175201 port 72 175201 unique_id port 175201 remote_ip 10.8.0.22 175206 username hashtadani4 175206 mac 175206 bytes_out 1307162 175206 bytes_in 16744031 175206 station_ip 5.202.133.236 175206 port 71 175206 unique_id port 175206 remote_ip 10.8.0.22 175207 username hashtadani4 175207 mac 175207 bytes_out 0 175207 bytes_in 0 175207 station_ip 5.202.133.236 175207 port 70 175207 unique_id port 175207 remote_ip 10.8.0.22 175217 username hashtadani4 175217 mac 175155 username meysam 175155 kill_reason Another user logged on this global unique id 175155 mac 175155 bytes_out 0 175155 bytes_in 0 175155 station_ip 188.159.252.173 175155 port 70 175155 unique_id port 175159 username godarzi 175159 mac 175159 bytes_out 674662 175159 bytes_in 883457 175159 station_ip 5.202.25.131 175159 port 70 175159 unique_id port 175159 remote_ip 10.8.0.38 175163 username hashtadani4 175163 kill_reason Another user logged on this global unique id 175163 mac 175163 bytes_out 0 175163 bytes_in 0 175163 station_ip 5.202.133.236 175163 port 68 175163 unique_id port 175163 remote_ip 10.8.0.22 175167 username hashtadani4 175167 mac 175167 bytes_out 0 175167 bytes_in 0 175167 station_ip 5.202.133.236 175167 port 68 175167 unique_id port 175167 remote_ip 10.8.0.22 175168 username hashtadani4 175168 mac 175168 bytes_out 0 175168 bytes_in 0 175168 station_ip 5.202.133.236 175168 port 68 175168 unique_id port 175168 remote_ip 10.8.0.22 175171 username hashtadani4 175171 mac 175171 bytes_out 0 175171 bytes_in 0 175171 station_ip 5.202.133.236 175171 port 68 175171 unique_id port 175171 remote_ip 10.8.0.22 175172 username hashtadani4 175172 mac 175172 bytes_out 0 175172 bytes_in 0 175172 station_ip 5.202.133.236 175172 port 68 175172 unique_id port 175172 remote_ip 10.8.0.22 175175 username mohsenaskari 175175 mac 175175 bytes_out 0 175175 bytes_in 0 175175 station_ip 46.225.232.138 175175 port 71 175175 unique_id port 175175 remote_ip 10.8.0.222 175176 username hashtadani4 175176 mac 175176 bytes_out 0 175176 bytes_in 0 175176 station_ip 5.202.133.236 175176 port 68 175176 unique_id port 175176 remote_ip 10.8.0.22 175177 username hashtadani4 175177 mac 175177 bytes_out 15284 175177 bytes_in 17694 175177 station_ip 5.202.133.236 175177 port 68 175177 unique_id port 175177 remote_ip 10.8.0.22 175182 username godarzi 175182 mac 175182 bytes_out 419487 175182 bytes_in 241521 175182 station_ip 5.202.25.131 175182 port 68 175182 unique_id port 175182 remote_ip 10.8.0.38 175183 username hashtadani4 175183 kill_reason Maximum check online fails reached 175183 mac 175183 bytes_out 0 175183 bytes_in 0 175183 station_ip 5.202.133.236 175183 port 68 175183 unique_id port 175185 username hashtadani4 175185 mac 175185 bytes_out 0 175185 bytes_in 0 175185 station_ip 5.202.133.236 175185 port 70 175185 unique_id port 175185 remote_ip 10.8.0.22 175186 username hashtadani4 175186 mac 175186 bytes_out 0 175186 bytes_in 0 175186 station_ip 5.202.133.236 175186 port 70 175186 unique_id port 175186 remote_ip 10.8.0.22 175200 username meysam 175200 kill_reason Another user logged on this global unique id 175200 mac 175200 bytes_out 0 175200 bytes_in 0 175200 station_ip 188.159.252.173 175200 port 71 175200 unique_id port 175200 remote_ip 10.8.0.158 175202 username hashtadani4 175202 mac 175202 bytes_out 8912 175202 bytes_in 10402 175202 station_ip 5.202.133.236 175202 port 72 175202 unique_id port 175202 remote_ip 10.8.0.22 175205 username alipour 175205 mac 175205 bytes_out 139650 175205 bytes_in 197668 175205 station_ip 5.233.47.163 175205 port 70 175205 unique_id port 175205 remote_ip 10.8.0.26 175208 username hashtadani4 175208 mac 175208 bytes_out 1644 175208 bytes_in 4251 175208 station_ip 5.202.133.236 175208 port 70 175208 unique_id port 175208 remote_ip 10.8.0.22 175210 username hamid.e 175210 unique_id port 175210 terminate_cause User-Request 175210 bytes_out 5504861 175210 bytes_in 68891533 175210 station_ip 37.27.16.73 175157 username hashtadani4 175157 mac 175157 bytes_out 0 175157 bytes_in 0 175157 station_ip 5.202.133.236 175157 port 68 175157 unique_id port 175157 remote_ip 10.8.0.22 175158 username meysam 175158 mac 175158 bytes_out 0 175158 bytes_in 0 175158 station_ip 188.159.252.173 175158 port 70 175158 unique_id port 175161 username hashtadani4 175161 kill_reason Another user logged on this global unique id 175161 mac 175161 bytes_out 0 175161 bytes_in 0 175161 station_ip 5.202.133.236 175161 port 68 175161 unique_id port 175162 username hashtadani4 175162 mac 175162 bytes_out 0 175162 bytes_in 0 175162 station_ip 5.202.133.236 175162 port 68 175162 unique_id port 175164 username hashtadani4 175164 mac 175164 bytes_out 0 175164 bytes_in 0 175164 station_ip 5.202.133.236 175164 port 68 175164 unique_id port 175165 username hashtadani4 175165 mac 175165 bytes_out 284875 175165 bytes_in 4814083 175165 station_ip 5.202.133.236 175165 port 68 175165 unique_id port 175165 remote_ip 10.8.0.22 175169 username sabaghnezhad 175169 mac 175169 bytes_out 1149638 175169 bytes_in 4968860 175169 station_ip 151.235.77.224 175169 port 71 175169 unique_id port 175169 remote_ip 10.8.0.66 175179 username godarzi 175179 mac 175179 bytes_out 5095061 175179 bytes_in 31616515 175179 station_ip 5.202.25.131 175179 port 70 175179 unique_id port 175179 remote_ip 10.8.0.38 175181 username hashtadani4 175181 mac 175181 bytes_out 0 175181 bytes_in 0 175181 station_ip 5.202.133.236 175181 port 68 175181 unique_id port 175181 remote_ip 10.8.0.22 175187 username hashtadani4 175187 mac 175187 bytes_out 0 175187 bytes_in 0 175187 station_ip 5.202.133.236 175187 port 70 175187 unique_id port 175187 remote_ip 10.8.0.22 175188 username hashtadani4 175188 mac 175188 bytes_out 0 175188 bytes_in 0 175188 station_ip 5.202.133.236 175188 port 70 175188 unique_id port 175188 remote_ip 10.8.0.22 175192 username godarzi 175192 mac 175192 bytes_out 2109882 175192 bytes_in 22798313 175192 station_ip 5.202.25.131 175192 port 70 175192 unique_id port 175192 remote_ip 10.8.0.38 175193 username hashtadani4 175193 mac 175193 bytes_out 0 175193 bytes_in 0 175193 station_ip 5.202.133.236 175193 port 71 175193 unique_id port 175193 remote_ip 10.8.0.22 175195 username hashtadani4 175195 mac 175195 bytes_out 0 175195 bytes_in 0 175195 station_ip 5.202.133.236 175195 port 70 175195 unique_id port 175195 remote_ip 10.8.0.22 175196 username hashtadani4 175196 mac 175196 bytes_out 0 175196 bytes_in 0 175196 station_ip 5.202.133.236 175196 port 71 175196 unique_id port 175196 remote_ip 10.8.0.22 175198 username hashtadani4 175198 mac 175198 bytes_out 0 175198 bytes_in 0 175198 station_ip 5.202.133.236 175198 port 72 175198 unique_id port 175198 remote_ip 10.8.0.22 175203 username meysam 175203 mac 175203 bytes_out 0 175203 bytes_in 0 175203 station_ip 188.159.252.173 175203 port 71 175203 unique_id port 175204 username hashtadani4 175204 mac 175204 bytes_out 0 175204 bytes_in 0 175204 station_ip 5.202.133.236 175204 port 71 175204 unique_id port 175204 remote_ip 10.8.0.22 175209 username hashtadani4 175209 mac 175209 bytes_out 0 175209 bytes_in 0 175209 station_ip 5.202.133.236 175209 port 70 175209 unique_id port 175209 remote_ip 10.8.0.22 175211 username hashtadani4 175211 mac 175211 bytes_out 0 175211 bytes_in 0 175211 station_ip 5.202.133.236 175211 port 70 175211 unique_id port 175211 remote_ip 10.8.0.22 175210 port 15728730 175210 nas_port_type Virtual 175210 remote_ip 5.5.5.253 175213 username hashtadani4 175213 mac 175213 bytes_out 0 175213 bytes_in 0 175213 station_ip 5.202.133.236 175213 port 73 175213 unique_id port 175213 remote_ip 10.8.0.22 175214 username meysam 175214 mac 175214 bytes_out 114449 175214 bytes_in 894995 175214 station_ip 188.159.252.104 175214 port 72 175214 unique_id port 175214 remote_ip 10.8.0.158 175215 username hashtadani4 175215 mac 175215 bytes_out 0 175215 bytes_in 0 175215 station_ip 5.202.133.236 175215 port 72 175215 unique_id port 175215 remote_ip 10.8.0.22 175218 username nilufarrajaei 175218 kill_reason Another user logged on this global unique id 175218 mac 175218 bytes_out 0 175218 bytes_in 0 175218 station_ip 45.15.251.53 175218 port 70 175218 unique_id port 175218 remote_ip 10.8.0.194 175221 username hashtadani4 175221 mac 175221 bytes_out 0 175221 bytes_in 0 175221 station_ip 5.202.133.236 175221 port 73 175221 unique_id port 175221 remote_ip 10.8.0.22 175223 username hashtadani4 175223 mac 175223 bytes_out 0 175223 bytes_in 0 175223 station_ip 5.202.133.236 175223 port 73 175223 unique_id port 175223 remote_ip 10.8.0.22 175229 username hashtadani4 175229 mac 175229 bytes_out 0 175229 bytes_in 0 175229 station_ip 5.202.133.236 175229 port 71 175229 unique_id port 175229 remote_ip 10.8.0.22 175233 username hashtadani4 175233 mac 175233 bytes_out 0 175233 bytes_in 0 175233 station_ip 5.202.133.236 175233 port 70 175233 unique_id port 175233 remote_ip 10.8.0.22 175234 username kordestani 175234 mac 175234 bytes_out 31376 175234 bytes_in 35645 175234 station_ip 151.235.121.177 175234 port 73 175234 unique_id port 175234 remote_ip 10.8.0.130 175240 username hashtadani4 175240 mac 175240 bytes_out 0 175240 bytes_in 0 175240 station_ip 5.202.133.236 175240 port 71 175240 unique_id port 175240 remote_ip 10.8.0.22 175244 username hashtadani4 175244 mac 175244 bytes_out 0 175244 bytes_in 0 175244 station_ip 5.202.133.236 175244 port 76 175244 unique_id port 175244 remote_ip 10.8.0.22 175246 username sabaghnezhad 175246 mac 175246 bytes_out 363974 175246 bytes_in 1368064 175246 station_ip 151.235.77.224 175246 port 72 175246 unique_id port 175246 remote_ip 10.8.0.66 175247 username kordestani 175247 mac 175247 bytes_out 72871 175247 bytes_in 82328 175247 station_ip 151.235.92.72 175247 port 70 175247 unique_id port 175247 remote_ip 10.8.0.130 175249 username meysam 175249 mac 175249 bytes_out 3866918 175249 bytes_in 45330195 175249 station_ip 188.158.51.23 175249 port 73 175249 unique_id port 175249 remote_ip 10.8.0.158 175252 username aminvpn 175252 unique_id port 175252 terminate_cause Lost-Carrier 175252 bytes_out 126376 175252 bytes_in 686391 175252 station_ip 5.233.67.110 175252 port 15728732 175252 nas_port_type Virtual 175252 remote_ip 5.5.5.252 175254 username hatami 175254 mac 175254 bytes_out 1763 175254 bytes_in 3997 175254 station_ip 37.27.29.202 175254 port 70 175254 unique_id port 175254 remote_ip 10.8.0.98 175257 username godarzi 175257 mac 175257 bytes_out 2969644 175257 bytes_in 14988322 175257 station_ip 5.202.25.131 175257 port 75 175257 unique_id port 175257 remote_ip 10.8.0.38 175258 username arash 175258 mac 175258 bytes_out 285224 175258 bytes_in 2050945 175258 station_ip 37.27.10.240 175258 port 71 175258 unique_id port 175258 remote_ip 10.8.0.70 175264 username aminvpn 175264 mac 175264 bytes_out 4524803 175264 bytes_in 45090967 175212 username kordestani 175212 mac 175212 bytes_out 1262837 175212 bytes_in 14790880 175212 station_ip 151.235.80.203 175212 port 71 175212 unique_id port 175212 remote_ip 10.8.0.130 175216 username hashtadani4 175216 mac 175216 bytes_out 0 175216 bytes_in 0 175216 station_ip 5.202.133.236 175216 port 72 175216 unique_id port 175216 remote_ip 10.8.0.22 175219 username hashtadani4 175219 mac 175219 bytes_out 0 175219 bytes_in 0 175219 station_ip 5.202.133.236 175219 port 73 175219 unique_id port 175219 remote_ip 10.8.0.22 175220 username hashtadani4 175220 mac 175220 bytes_out 0 175220 bytes_in 0 175220 station_ip 5.202.133.236 175220 port 73 175220 unique_id port 175220 remote_ip 10.8.0.22 175224 username hashtadani4 175224 mac 175224 bytes_out 0 175224 bytes_in 0 175224 station_ip 5.202.133.236 175224 port 73 175224 unique_id port 175224 remote_ip 10.8.0.22 175227 username hashtadani4 175227 mac 175227 bytes_out 0 175227 bytes_in 0 175227 station_ip 5.202.133.236 175227 port 73 175227 unique_id port 175227 remote_ip 10.8.0.22 175228 username kordestani 175228 mac 175228 bytes_out 104979 175228 bytes_in 165738 175228 station_ip 151.235.121.177 175228 port 71 175228 unique_id port 175228 remote_ip 10.8.0.130 175230 username hashtadani4 175230 mac 175230 bytes_out 1669485 175230 bytes_in 17921276 175230 station_ip 5.202.133.236 175230 port 71 175230 unique_id port 175230 remote_ip 10.8.0.22 175231 username hashtadani4 175231 mac 175231 bytes_out 0 175231 bytes_in 0 175231 station_ip 5.202.133.236 175231 port 71 175231 unique_id port 175231 remote_ip 10.8.0.22 175235 username hashtadani4 175235 mac 175235 bytes_out 0 175235 bytes_in 0 175235 station_ip 5.202.133.236 175235 port 71 175235 unique_id port 175235 remote_ip 10.8.0.22 175237 username hashtadani4 175237 mac 175237 bytes_out 0 175237 bytes_in 0 175237 station_ip 5.202.133.236 175237 port 71 175237 unique_id port 175237 remote_ip 10.8.0.22 175239 username hashtadani4 175239 mac 175239 bytes_out 0 175239 bytes_in 0 175239 station_ip 5.202.133.236 175239 port 71 175239 unique_id port 175239 remote_ip 10.8.0.22 175241 username kordestani 175241 mac 175241 bytes_out 33444 175241 bytes_in 40667 175241 station_ip 151.235.121.177 175241 port 70 175241 unique_id port 175241 remote_ip 10.8.0.130 175243 username hashtadani4 175243 mac 175243 bytes_out 0 175243 bytes_in 0 175243 station_ip 5.202.133.236 175243 port 75 175243 unique_id port 175243 remote_ip 10.8.0.22 175250 username hashtadani4 175250 mac 175250 bytes_out 0 175250 bytes_in 0 175250 station_ip 5.202.133.236 175250 port 70 175250 unique_id port 175250 remote_ip 10.8.0.22 175251 username hashtadani4 175251 mac 175251 bytes_out 0 175251 bytes_in 0 175251 station_ip 5.202.133.236 175251 port 70 175251 unique_id port 175251 remote_ip 10.8.0.22 175255 username mosi 175255 mac 175255 bytes_out 0 175255 bytes_in 0 175255 station_ip 151.235.107.166 175255 port 71 175255 unique_id port 175255 remote_ip 10.8.0.142 175256 username mosi 175256 mac 175256 bytes_out 2034 175256 bytes_in 4303 175256 station_ip 151.235.107.166 175256 port 72 175256 unique_id port 175256 remote_ip 10.8.0.142 175259 username alipour 175259 mac 175259 bytes_out 665265 175259 bytes_in 2027988 175259 station_ip 5.233.47.163 175259 port 74 175259 unique_id port 175259 remote_ip 10.8.0.26 175260 username godarzi 175260 mac 175260 bytes_out 664192 175217 bytes_out 0 175217 bytes_in 0 175217 station_ip 5.202.133.236 175217 port 72 175217 unique_id port 175217 remote_ip 10.8.0.22 175222 username nilufarrajaei 175222 kill_reason Another user logged on this global unique id 175222 mac 175222 bytes_out 0 175222 bytes_in 0 175222 station_ip 45.15.251.53 175222 port 70 175222 unique_id port 175225 username nilufarrajaei 175225 kill_reason Another user logged on this global unique id 175225 mac 175225 bytes_out 0 175225 bytes_in 0 175225 station_ip 45.15.251.53 175225 port 70 175225 unique_id port 175226 username hashtadani4 175226 mac 175226 bytes_out 9601 175226 bytes_in 10381 175226 station_ip 5.202.133.236 175226 port 73 175226 unique_id port 175226 remote_ip 10.8.0.22 175232 username nilufarrajaei 175232 mac 175232 bytes_out 0 175232 bytes_in 0 175232 station_ip 45.15.251.53 175232 port 70 175232 unique_id port 175236 username hashtadani4 175236 mac 175236 bytes_out 0 175236 bytes_in 0 175236 station_ip 5.202.133.236 175236 port 71 175236 unique_id port 175236 remote_ip 10.8.0.22 175238 username hashtadani4 175238 mac 175238 bytes_out 0 175238 bytes_in 0 175238 station_ip 5.202.133.236 175238 port 71 175238 unique_id port 175238 remote_ip 10.8.0.22 175242 username hashtadani4 175242 mac 175242 bytes_out 0 175242 bytes_in 0 175242 station_ip 5.202.133.236 175242 port 73 175242 unique_id port 175242 remote_ip 10.8.0.22 175245 username hatami 175245 mac 175245 bytes_out 147701 175245 bytes_in 833039 175245 station_ip 37.27.29.202 175245 port 71 175245 unique_id port 175245 remote_ip 10.8.0.98 175248 username hashtadani4 175248 mac 175248 bytes_out 0 175248 bytes_in 0 175248 station_ip 5.202.133.236 175248 port 71 175248 unique_id port 175248 remote_ip 10.8.0.22 175253 username hatami 175253 mac 175253 bytes_out 59916 175253 bytes_in 77137 175253 station_ip 37.27.29.202 175253 port 76 175253 unique_id port 175253 remote_ip 10.8.0.98 175261 username hamid.e 175261 unique_id port 175261 terminate_cause User-Request 175261 bytes_out 1345994 175261 bytes_in 14940813 175261 station_ip 37.27.16.73 175261 port 15728733 175261 nas_port_type Virtual 175261 remote_ip 5.5.5.253 175263 username godarzi 175263 mac 175263 bytes_out 990901 175263 bytes_in 10917395 175263 station_ip 5.202.25.131 175263 port 70 175263 unique_id port 175263 remote_ip 10.8.0.38 175265 username hatami 175265 mac 175265 bytes_out 69607 175265 bytes_in 81266 175265 station_ip 37.27.29.202 175265 port 72 175265 unique_id port 175265 remote_ip 10.8.0.98 175269 username godarzi 175269 mac 175269 bytes_out 701827 175269 bytes_in 1541918 175269 station_ip 5.202.25.131 175269 port 70 175269 unique_id port 175269 remote_ip 10.8.0.38 175278 username amin.saeedi 175278 mac 175278 bytes_out 75880 175278 bytes_in 401059 175278 station_ip 31.56.217.25 175278 port 70 175278 unique_id port 175278 remote_ip 10.8.0.90 175279 username meysam 175279 mac 175279 bytes_out 2709488 175279 bytes_in 35405485 175279 station_ip 188.159.252.104 175279 port 72 175279 unique_id port 175279 remote_ip 10.8.0.158 175280 username amin.saeedi 175280 kill_reason Another user logged on this global unique id 175280 mac 175280 bytes_out 0 175280 bytes_in 0 175280 station_ip 31.56.217.25 175280 port 70 175280 unique_id port 175280 remote_ip 10.8.0.90 175283 username hashtadani4 175283 mac 175283 bytes_out 9806 175283 bytes_in 44466 175283 station_ip 5.202.98.138 175283 port 73 175283 unique_id port 175283 remote_ip 10.8.0.22 175285 username shadkam 175314 unique_id port 175260 bytes_in 6118280 175260 station_ip 5.202.25.131 175260 port 72 175260 unique_id port 175260 remote_ip 10.8.0.38 175262 username hatami 175262 mac 175262 bytes_out 734503 175262 bytes_in 5598867 175262 station_ip 37.27.29.202 175262 port 70 175262 unique_id port 175262 remote_ip 10.8.0.98 175271 username aminvpn 175271 kill_reason Maximum check online fails reached 175271 unique_id port 175271 bytes_out 3525675 175271 bytes_in 96770108 175271 station_ip 109.125.144.90 175271 port 15728737 175271 nas_port_type Virtual 175271 remote_ip 5.5.5.251 175273 username mosi 175273 kill_reason Another user logged on this global unique id 175273 mac 175273 bytes_out 0 175273 bytes_in 0 175273 station_ip 151.235.107.166 175273 port 71 175273 unique_id port 175273 remote_ip 10.8.0.142 175274 username godarzi 175274 mac 175274 bytes_out 0 175274 bytes_in 0 175274 station_ip 5.202.25.131 175274 port 70 175274 unique_id port 175274 remote_ip 10.8.0.38 175276 username amin.saeedi 175276 mac 175276 bytes_out 0 175276 bytes_in 0 175276 station_ip 31.56.217.25 175276 port 70 175276 unique_id port 175276 remote_ip 10.8.0.90 175277 username amin.saeedi 175277 mac 175277 bytes_out 91373 175277 bytes_in 318237 175277 station_ip 31.56.217.25 175277 port 72 175277 unique_id port 175277 remote_ip 10.8.0.90 175284 username hashtadani4 175284 mac 175284 bytes_out 0 175284 bytes_in 0 175284 station_ip 5.202.98.138 175284 port 70 175284 unique_id port 175284 remote_ip 10.8.0.22 175288 username kordestani 175288 mac 175288 bytes_out 340234 175288 bytes_in 1291092 175288 station_ip 151.235.108.203 175288 port 70 175288 unique_id port 175288 remote_ip 10.8.0.130 175300 username hashtadani4 175300 mac 175300 bytes_out 0 175300 bytes_in 0 175300 station_ip 5.202.59.186 175300 port 70 175300 unique_id port 175300 remote_ip 10.8.0.22 175303 username hashtadani4 175303 mac 175303 bytes_out 105342 175303 bytes_in 765672 175303 station_ip 5.202.59.186 175303 port 70 175303 unique_id port 175303 remote_ip 10.8.0.22 175304 username mosi 175304 kill_reason Another user logged on this global unique id 175304 mac 175304 bytes_out 0 175304 bytes_in 0 175304 station_ip 151.235.107.166 175304 port 71 175304 unique_id port 175306 username hashtadani4 175306 mac 175306 bytes_out 2480737 175306 bytes_in 25796115 175306 station_ip 5.202.59.186 175306 port 70 175306 unique_id port 175306 remote_ip 10.8.0.22 175309 username hashtadani4 175309 mac 175309 bytes_out 0 175309 bytes_in 0 175309 station_ip 5.202.59.186 175309 port 70 175309 unique_id port 175309 remote_ip 10.8.0.22 175315 username hashtadani4 175315 mac 175315 bytes_out 0 175315 bytes_in 0 175315 station_ip 5.202.59.186 175315 port 70 175315 unique_id port 175315 remote_ip 10.8.0.22 175316 username hashtadani4 175316 mac 175316 bytes_out 2150149 175316 bytes_in 25952721 175316 station_ip 5.202.59.186 175316 port 70 175316 unique_id port 175316 remote_ip 10.8.0.22 175322 username hashtadani4 175322 mac 175322 bytes_out 1644 175322 bytes_in 4670 175322 station_ip 5.202.59.186 175322 port 74 175322 unique_id port 175322 remote_ip 10.8.0.22 175323 username meysam 175323 kill_reason Another user logged on this global unique id 175323 mac 175323 bytes_out 0 175323 bytes_in 0 175323 station_ip 188.158.51.222 175323 port 70 175323 unique_id port 175323 remote_ip 10.8.0.158 175324 username mosi 175324 kill_reason Another user logged on this global unique id 175324 mac 175324 bytes_out 0 175324 bytes_in 0 175324 station_ip 151.235.107.166 175324 port 71 175324 unique_id port 175264 station_ip 5.120.100.73 175264 port 71 175264 unique_id port 175264 remote_ip 10.8.0.58 175266 username kordestani 175266 mac 175266 bytes_out 3558 175266 bytes_in 4345 175266 station_ip 151.235.121.95 175266 port 71 175266 unique_id port 175266 remote_ip 10.8.0.130 175267 username godarzi 175267 mac 175267 bytes_out 1276379 175267 bytes_in 753981 175267 station_ip 5.202.25.131 175267 port 70 175267 unique_id port 175267 remote_ip 10.8.0.38 175268 username hatami 175268 mac 175268 bytes_out 181272 175268 bytes_in 1197652 175268 station_ip 37.27.29.202 175268 port 72 175268 unique_id port 175268 remote_ip 10.8.0.98 175270 username hatami 175270 mac 175270 bytes_out 35112 175270 bytes_in 43082 175270 station_ip 151.235.82.142 175270 port 71 175270 unique_id port 175270 remote_ip 10.8.0.98 175272 username hatami 175272 mac 175272 bytes_out 516249 175272 bytes_in 3522404 175272 station_ip 151.235.115.132 175272 port 70 175272 unique_id port 175272 remote_ip 10.8.0.98 175275 username mosi 175275 kill_reason Another user logged on this global unique id 175275 mac 175275 bytes_out 0 175275 bytes_in 0 175275 station_ip 151.235.107.166 175275 port 71 175275 unique_id port 175281 username amin.saeedi 175281 kill_reason Another user logged on this global unique id 175281 mac 175281 bytes_out 0 175281 bytes_in 0 175281 station_ip 31.56.217.25 175281 port 70 175281 unique_id port 175282 username amin.saeedi 175282 mac 175282 bytes_out 0 175282 bytes_in 0 175282 station_ip 31.56.217.25 175282 port 70 175282 unique_id port 175287 username hashtadani4 175287 mac 175287 bytes_out 0 175287 bytes_in 0 175287 station_ip 5.202.59.186 175287 port 73 175287 unique_id port 175287 remote_ip 10.8.0.22 175292 username hashtadani4 175292 mac 175292 bytes_out 12015 175292 bytes_in 16340 175292 station_ip 5.202.59.186 175292 port 70 175292 unique_id port 175292 remote_ip 10.8.0.22 175293 username hashtadani4 175293 mac 175293 bytes_out 0 175293 bytes_in 0 175293 station_ip 5.202.59.186 175293 port 70 175293 unique_id port 175293 remote_ip 10.8.0.22 175294 username mosi 175294 kill_reason Another user logged on this global unique id 175294 mac 175294 bytes_out 0 175294 bytes_in 0 175294 station_ip 151.235.107.166 175294 port 71 175294 unique_id port 175296 username hashtadani4 175296 mac 175296 bytes_out 0 175296 bytes_in 0 175296 station_ip 5.202.59.186 175296 port 74 175296 unique_id port 175296 remote_ip 10.8.0.22 175299 username hashtadani4 175299 mac 175299 bytes_out 0 175299 bytes_in 0 175299 station_ip 5.202.59.186 175299 port 70 175299 unique_id port 175299 remote_ip 10.8.0.22 175301 username hashtadani4 175301 mac 175301 bytes_out 0 175301 bytes_in 0 175301 station_ip 5.202.59.186 175301 port 70 175301 unique_id port 175301 remote_ip 10.8.0.22 175305 username mostafa_es78 175305 mac 175305 bytes_out 106601 175305 bytes_in 971290 175305 station_ip 178.236.35.96 175305 port 74 175305 unique_id port 175305 remote_ip 10.8.0.34 175311 username godarzi 175311 kill_reason Another user logged on this global unique id 175311 mac 175311 bytes_out 0 175311 bytes_in 0 175311 station_ip 5.202.25.131 175311 port 72 175311 unique_id port 175311 remote_ip 10.8.0.38 175313 username hashtadani4 175313 mac 175313 bytes_out 0 175313 bytes_in 0 175313 station_ip 5.202.59.186 175313 port 70 175313 unique_id port 175313 remote_ip 10.8.0.22 175314 username hashtadani4 175314 mac 175314 bytes_out 0 175314 bytes_in 0 175314 station_ip 5.202.59.186 175314 port 70 175285 kill_reason Another user logged on this global unique id 175285 mac 175285 bytes_out 0 175285 bytes_in 0 175285 station_ip 5.202.6.67 175285 port 72 175285 unique_id port 175285 remote_ip 10.8.0.74 175286 username hashtadani4 175286 mac 175286 bytes_out 0 175286 bytes_in 0 175286 station_ip 5.202.98.138 175286 port 73 175286 unique_id port 175286 remote_ip 10.8.0.22 175289 username shadkam 175289 kill_reason Another user logged on this global unique id 175289 mac 175289 bytes_out 0 175289 bytes_in 0 175289 station_ip 5.202.6.67 175289 port 72 175289 unique_id port 175290 username hashtadani4 175290 kill_reason Maximum check online fails reached 175290 mac 175290 bytes_out 0 175290 bytes_in 0 175290 station_ip 5.202.59.186 175290 port 73 175290 unique_id port 175291 username shadkam 175291 mac 175291 bytes_out 0 175291 bytes_in 0 175291 station_ip 5.202.6.67 175291 port 72 175291 unique_id port 175295 username hashtadani4 175295 mac 175295 bytes_out 0 175295 bytes_in 0 175295 station_ip 5.202.59.186 175295 port 74 175295 unique_id port 175295 remote_ip 10.8.0.22 175297 username shadkam 175297 mac 175297 bytes_out 2082644 175297 bytes_in 311046 175297 station_ip 5.202.6.67 175297 port 70 175297 unique_id port 175297 remote_ip 10.8.0.74 175298 username hashtadani4 175298 mac 175298 bytes_out 0 175298 bytes_in 0 175298 station_ip 5.202.59.186 175298 port 70 175298 unique_id port 175298 remote_ip 10.8.0.22 175302 username hashtadani4 175302 mac 175302 bytes_out 0 175302 bytes_in 0 175302 station_ip 5.202.59.186 175302 port 70 175302 unique_id port 175302 remote_ip 10.8.0.22 175307 username hashtadani4 175307 mac 175307 bytes_out 0 175307 bytes_in 0 175307 station_ip 5.202.59.186 175307 port 70 175307 unique_id port 175307 remote_ip 10.8.0.22 175308 username hashtadani4 175308 mac 175308 bytes_out 0 175308 bytes_in 0 175308 station_ip 5.202.59.186 175308 port 70 175308 unique_id port 175308 remote_ip 10.8.0.22 175310 username hashtadani4 175310 mac 175310 bytes_out 0 175310 bytes_in 0 175310 station_ip 5.202.59.186 175310 port 70 175310 unique_id port 175310 remote_ip 10.8.0.22 175312 username mosi 175312 kill_reason Another user logged on this global unique id 175312 mac 175312 bytes_out 0 175312 bytes_in 0 175312 station_ip 151.235.107.166 175312 port 71 175312 unique_id port 175317 username hashtadani4 175317 mac 175317 bytes_out 0 175317 bytes_in 0 175317 station_ip 5.202.59.186 175317 port 70 175317 unique_id port 175317 remote_ip 10.8.0.22 175321 username hashtadani4 175321 mac 175321 bytes_out 0 175321 bytes_in 0 175321 station_ip 5.202.59.186 175321 port 74 175321 unique_id port 175321 remote_ip 10.8.0.22 175325 username godarzi 175325 mac 175325 bytes_out 0 175325 bytes_in 0 175325 station_ip 5.202.25.131 175325 port 72 175325 unique_id port 175326 username hashtadani4 175326 mac 175326 bytes_out 0 175326 bytes_in 0 175326 station_ip 5.202.59.186 175326 port 72 175326 unique_id port 175326 remote_ip 10.8.0.22 175328 username mosi 175328 kill_reason Another user logged on this global unique id 175328 mac 175328 bytes_out 0 175328 bytes_in 0 175328 station_ip 151.235.107.166 175328 port 71 175328 unique_id port 175329 username meysam 175329 mac 175329 bytes_out 0 175329 bytes_in 0 175329 station_ip 188.158.51.222 175329 port 70 175329 unique_id port 175339 username arash 175339 mac 175339 bytes_out 103258 175339 bytes_in 290792 175339 station_ip 37.27.10.240 175339 port 71 175314 remote_ip 10.8.0.22 175318 username hashtadani4 175318 mac 175318 bytes_out 0 175318 bytes_in 0 175318 station_ip 5.202.59.186 175318 port 70 175318 unique_id port 175318 remote_ip 10.8.0.22 175319 username mosi 175319 kill_reason Another user logged on this global unique id 175319 mac 175319 bytes_out 0 175319 bytes_in 0 175319 station_ip 151.235.107.166 175319 port 71 175319 unique_id port 175320 username vanila 175320 kill_reason Relative expiration date has reached 175320 mac 175320 bytes_out 0 175320 bytes_in 0 175320 station_ip 37.27.48.247 175320 port 74 175320 unique_id port 175327 username arash 175327 mac 175327 bytes_out 282710 175327 bytes_in 2123317 175327 station_ip 37.27.10.240 175327 port 74 175327 unique_id port 175327 remote_ip 10.8.0.70 175331 username mosi 175331 mac 175331 bytes_out 0 175331 bytes_in 0 175331 station_ip 151.235.107.166 175331 port 71 175331 unique_id port 175332 username mosi 175332 kill_reason Another user logged on this global unique id 175332 mac 175332 bytes_out 0 175332 bytes_in 0 175332 station_ip 151.235.107.166 175332 port 70 175332 unique_id port 175332 remote_ip 10.8.0.142 175334 username mosi 175334 kill_reason Another user logged on this global unique id 175334 mac 175334 bytes_out 0 175334 bytes_in 0 175334 station_ip 151.235.107.166 175334 port 70 175334 unique_id port 175336 username mosi 175336 mac 175336 bytes_out 0 175336 bytes_in 0 175336 station_ip 151.235.107.166 175336 port 70 175336 unique_id port 175342 username hashtadani4 175342 mac 175342 bytes_out 0 175342 bytes_in 0 175342 station_ip 5.202.1.181 175342 port 72 175342 unique_id port 175342 remote_ip 10.8.0.22 175343 username hashtadani4 175343 mac 175343 bytes_out 262272 175343 bytes_in 2373312 175343 station_ip 5.202.1.181 175343 port 72 175343 unique_id port 175343 remote_ip 10.8.0.22 175344 username hashtadani4 175344 mac 175344 bytes_out 0 175344 bytes_in 0 175344 station_ip 5.202.1.181 175344 port 74 175344 unique_id port 175344 remote_ip 10.8.0.22 175345 username hashtadani4 175345 kill_reason Maximum check online fails reached 175345 mac 175345 bytes_out 0 175345 bytes_in 0 175345 station_ip 5.202.1.181 175345 port 72 175345 unique_id port 175346 username hashtadani4 175346 mac 175346 bytes_out 0 175346 bytes_in 0 175346 station_ip 5.202.1.181 175346 port 75 175346 unique_id port 175346 remote_ip 10.8.0.22 175347 username saeeddamghani 175347 mac 175347 bytes_out 656915 175347 bytes_in 5199671 175347 station_ip 217.60.218.29 175347 port 74 175347 unique_id port 175347 remote_ip 10.8.0.122 175349 username saeeddamghani 175349 mac 175349 bytes_out 0 175349 bytes_in 0 175349 station_ip 217.60.218.29 175349 port 74 175349 unique_id port 175349 remote_ip 10.8.0.122 175350 username saeeddamghani 175350 mac 175350 bytes_out 0 175350 bytes_in 0 175350 station_ip 217.60.218.29 175350 port 74 175350 unique_id port 175350 remote_ip 10.8.0.122 175356 username saeeddamghani 175356 mac 175356 bytes_out 267192 175356 bytes_in 3007439 175356 station_ip 217.60.218.29 175356 port 74 175356 unique_id port 175356 remote_ip 10.8.0.122 175358 username ayobi 175358 kill_reason Another user logged on this global unique id 175358 mac 175358 bytes_out 0 175358 bytes_in 0 175358 station_ip 37.27.15.70 175358 port 70 175358 unique_id port 175358 remote_ip 10.8.0.186 175359 username godarzi 175359 kill_reason Another user logged on this global unique id 175359 mac 175359 bytes_out 0 175359 bytes_in 0 175359 station_ip 5.202.25.131 175359 port 71 175330 username mostafa_es78 175330 mac 175330 bytes_out 799744 175330 bytes_in 9393653 175330 station_ip 178.236.35.96 175330 port 72 175330 unique_id port 175330 remote_ip 10.8.0.34 175333 username arash 175333 mac 175333 bytes_out 277688 175333 bytes_in 2047918 175333 station_ip 37.27.10.240 175333 port 71 175333 unique_id port 175333 remote_ip 10.8.0.70 175335 username mosi 175335 kill_reason Another user logged on this global unique id 175335 mac 175335 bytes_out 0 175335 bytes_in 0 175335 station_ip 151.235.107.166 175335 port 70 175335 unique_id port 175337 username godarzi 175337 mac 175337 bytes_out 5719825 175337 bytes_in 34386061 175337 station_ip 5.202.25.131 175337 port 74 175337 unique_id port 175337 remote_ip 10.8.0.38 175338 username godarzi 175338 mac 175338 bytes_out 87020 175338 bytes_in 526924 175338 station_ip 5.202.25.131 175338 port 70 175338 unique_id port 175338 remote_ip 10.8.0.38 175340 username majidsarmast 175340 mac 175340 bytes_out 567058 175340 bytes_in 7494930 175340 station_ip 86.57.29.50 175340 port 70 175340 unique_id port 175340 remote_ip 10.8.0.170 175341 username hashtadani4 175341 mac 175341 bytes_out 0 175341 bytes_in 0 175341 station_ip 5.202.1.181 175341 port 70 175341 unique_id port 175341 remote_ip 10.8.0.22 175351 username saeeddamghani 175351 mac 175351 bytes_out 0 175351 bytes_in 0 175351 station_ip 217.60.218.29 175351 port 74 175351 unique_id port 175351 remote_ip 10.8.0.122 175353 username saeeddamghani 175353 mac 175353 bytes_out 0 175353 bytes_in 0 175353 station_ip 217.60.218.29 175353 port 74 175353 unique_id port 175353 remote_ip 10.8.0.122 175354 username saeeddamghani 175354 mac 175354 bytes_out 0 175354 bytes_in 0 175354 station_ip 217.60.218.29 175354 port 74 175354 unique_id port 175354 remote_ip 10.8.0.122 175357 username saeeddamghani 175357 mac 175357 bytes_out 2332 175357 bytes_in 4809 175357 station_ip 217.60.218.29 175357 port 74 175357 unique_id port 175357 remote_ip 10.8.0.122 175360 username aminvpn 175360 mac 175360 bytes_out 500806 175360 bytes_in 5134018 175360 station_ip 5.233.81.203 175360 port 74 175360 unique_id port 175360 remote_ip 10.8.0.58 175364 username saeeddamghani 175364 mac 175364 bytes_out 939440 175364 bytes_in 21234949 175364 station_ip 217.60.218.29 175364 port 75 175364 unique_id port 175364 remote_ip 10.8.0.122 175372 username shadkam 175372 kill_reason Another user logged on this global unique id 175372 mac 175372 bytes_out 0 175372 bytes_in 0 175372 station_ip 5.202.22.76 175372 port 74 175372 unique_id port 175372 remote_ip 10.8.0.74 175374 username saeeddamghani 175374 mac 175374 bytes_out 281633 175374 bytes_in 2660990 175374 station_ip 217.60.218.29 175374 port 76 175374 unique_id port 175374 remote_ip 10.8.0.122 175375 username saeeddamghani 175375 mac 175375 bytes_out 317419 175375 bytes_in 1230423 175375 station_ip 217.60.218.29 175375 port 78 175375 unique_id port 175375 remote_ip 10.8.0.122 175376 username majidsarmast 175376 kill_reason Another user logged on this global unique id 175376 mac 175376 bytes_out 0 175376 bytes_in 0 175376 station_ip 86.57.77.44 175376 port 77 175376 unique_id port 175376 remote_ip 10.8.0.170 175378 username hashtadani4 175378 mac 175378 bytes_out 1644 175378 bytes_in 3845 175378 station_ip 5.202.134.147 175378 port 78 175378 unique_id port 175378 remote_ip 10.8.0.22 175383 username hashtadani4 175383 mac 175383 bytes_out 0 175383 bytes_in 0 175383 station_ip 5.202.134.147 175383 port 76 175339 unique_id port 175339 remote_ip 10.8.0.70 175348 username saeeddamghani 175348 mac 175348 bytes_out 0 175348 bytes_in 0 175348 station_ip 217.60.218.29 175348 port 74 175348 unique_id port 175348 remote_ip 10.8.0.122 175352 username saeeddamghani 175352 mac 175352 bytes_out 0 175352 bytes_in 0 175352 station_ip 217.60.218.29 175352 port 74 175352 unique_id port 175352 remote_ip 10.8.0.122 175355 username saeeddamghani 175355 mac 175355 bytes_out 0 175355 bytes_in 0 175355 station_ip 217.60.218.29 175355 port 74 175355 unique_id port 175355 remote_ip 10.8.0.122 175362 username hashtadani4 175362 mac 175362 bytes_out 319028 175362 bytes_in 3901707 175362 station_ip 5.202.134.147 175362 port 74 175362 unique_id port 175362 remote_ip 10.8.0.22 175363 username hashtadani4 175363 mac 175363 bytes_out 0 175363 bytes_in 0 175363 station_ip 5.202.134.147 175363 port 74 175363 unique_id port 175363 remote_ip 10.8.0.22 175365 username hashtadani4 175365 mac 175365 bytes_out 0 175365 bytes_in 0 175365 station_ip 5.202.134.147 175365 port 75 175365 unique_id port 175365 remote_ip 10.8.0.22 175367 username godarzi 175367 kill_reason Another user logged on this global unique id 175367 mac 175367 bytes_out 0 175367 bytes_in 0 175367 station_ip 5.202.25.131 175367 port 71 175367 unique_id port 175370 username saeeddamghani 175370 mac 175370 bytes_out 0 175370 bytes_in 0 175370 station_ip 217.60.218.29 175370 port 76 175370 unique_id port 175370 remote_ip 10.8.0.122 175371 username hashtadani4 175371 mac 175371 bytes_out 0 175371 bytes_in 0 175371 station_ip 5.202.134.147 175371 port 78 175371 unique_id port 175371 remote_ip 10.8.0.22 175373 username ayobi 175373 kill_reason Another user logged on this global unique id 175373 mac 175373 bytes_out 0 175373 bytes_in 0 175373 station_ip 37.27.15.70 175373 port 70 175373 unique_id port 175377 username hashtadani4 175377 mac 175377 bytes_out 0 175377 bytes_in 0 175377 station_ip 5.202.134.147 175377 port 78 175377 unique_id port 175377 remote_ip 10.8.0.22 175381 username saeeddamghani 175381 mac 175381 bytes_out 0 175381 bytes_in 0 175381 station_ip 217.60.218.29 175381 port 76 175381 unique_id port 175381 remote_ip 10.8.0.122 175382 username hashtadani4 175382 mac 175382 bytes_out 0 175382 bytes_in 0 175382 station_ip 5.202.134.147 175382 port 75 175382 unique_id port 175382 remote_ip 10.8.0.22 175384 username hashtadani4 175384 mac 175384 bytes_out 0 175384 bytes_in 0 175384 station_ip 5.202.134.147 175384 port 76 175384 unique_id port 175384 remote_ip 10.8.0.22 175385 username majidsarmast 175385 kill_reason Another user logged on this global unique id 175385 mac 175385 bytes_out 0 175385 bytes_in 0 175385 station_ip 86.57.77.44 175385 port 77 175385 unique_id port 175388 username saeeddamghani 175388 mac 175388 bytes_out 61319 175388 bytes_in 575933 175388 station_ip 217.60.218.29 175388 port 76 175388 unique_id port 175388 remote_ip 10.8.0.122 175394 username saeeddamghani 175394 mac 175394 bytes_out 18862 175394 bytes_in 26004 175394 station_ip 217.60.218.29 175394 port 75 175394 unique_id port 175394 remote_ip 10.8.0.122 175395 username ayobi 175395 mac 175395 bytes_out 0 175395 bytes_in 0 175395 station_ip 37.27.15.70 175395 port 70 175395 unique_id port 175398 username shadkam 175398 mac 175398 bytes_out 0 175398 bytes_in 0 175398 station_ip 5.202.22.76 175398 port 75 175398 unique_id port 175398 remote_ip 10.8.0.74 175404 username mosi 175359 unique_id port 175359 remote_ip 10.8.0.38 175361 username hashtadani4 175361 mac 175361 bytes_out 0 175361 bytes_in 0 175361 station_ip 5.202.134.147 175361 port 74 175361 unique_id port 175361 remote_ip 10.8.0.22 175366 username hashtadani4 175366 mac 175366 bytes_out 0 175366 bytes_in 0 175366 station_ip 5.202.134.147 175366 port 75 175366 unique_id port 175366 remote_ip 10.8.0.22 175368 username hashtadani4 175368 mac 175368 bytes_out 14260 175368 bytes_in 12950 175368 station_ip 5.202.134.147 175368 port 76 175368 unique_id port 175368 remote_ip 10.8.0.22 175369 username saeeddamghani 175369 mac 175369 bytes_out 1220505 175369 bytes_in 19996388 175369 station_ip 217.60.218.29 175369 port 75 175369 unique_id port 175369 remote_ip 10.8.0.122 175379 username saeeddamghani 175379 mac 175379 bytes_out 69699 175379 bytes_in 386184 175379 station_ip 217.60.218.29 175379 port 76 175379 unique_id port 175379 remote_ip 10.8.0.122 175380 username aminvpn 175380 mac 175380 bytes_out 4542775 175380 bytes_in 65127373 175380 station_ip 5.233.81.203 175380 port 75 175380 unique_id port 175380 remote_ip 10.8.0.58 175387 username barzegar 175387 mac 175387 bytes_out 325328 175387 bytes_in 5802732 175387 station_ip 151.235.115.177 175387 port 75 175387 unique_id port 175387 remote_ip 10.8.0.10 175389 username barzegar 175389 mac 175389 bytes_out 0 175389 bytes_in 0 175389 station_ip 151.235.115.177 175389 port 75 175389 unique_id port 175389 remote_ip 10.8.0.10 175390 username shadkam 175390 kill_reason Another user logged on this global unique id 175390 mac 175390 bytes_out 0 175390 bytes_in 0 175390 station_ip 5.202.22.76 175390 port 74 175390 unique_id port 175393 username godarzi 175393 mac 175393 bytes_out 0 175393 bytes_in 0 175393 station_ip 5.202.25.131 175393 port 71 175393 unique_id port 175397 username shadkam 175397 mac 175397 bytes_out 0 175397 bytes_in 0 175397 station_ip 5.202.22.76 175397 port 75 175397 unique_id port 175397 remote_ip 10.8.0.74 175402 username shadkam 175402 mac 175402 bytes_out 0 175402 bytes_in 0 175402 station_ip 5.202.22.76 175402 port 79 175402 unique_id port 175402 remote_ip 10.8.0.74 175403 username hatami 175403 mac 175403 bytes_out 262295 175403 bytes_in 1772101 175403 station_ip 151.235.110.14 175403 port 78 175403 unique_id port 175403 remote_ip 10.8.0.98 175409 username godarzi 175409 mac 175409 bytes_out 3519972 175409 bytes_in 23232357 175409 station_ip 5.202.25.131 175409 port 70 175409 unique_id port 175409 remote_ip 10.8.0.38 175414 username saeeddamghani 175414 mac 175414 bytes_out 0 175414 bytes_in 0 175414 station_ip 217.60.218.29 175414 port 76 175414 unique_id port 175414 remote_ip 10.8.0.122 175422 username saeeddamghani 175422 mac 175422 bytes_out 4320955 175422 bytes_in 45442428 175422 station_ip 217.60.218.29 175422 port 70 175422 unique_id port 175422 remote_ip 10.8.0.122 175425 username mansour 175425 mac 175425 bytes_out 1203039 175425 bytes_in 17648976 175425 station_ip 5.202.134.148 175425 port 71 175425 unique_id port 175425 remote_ip 10.8.0.206 175429 username majidsarmast 175429 mac 175429 bytes_out 0 175429 bytes_in 0 175429 station_ip 86.57.77.44 175429 port 77 175429 unique_id port 175430 username shadkam 175430 kill_reason Another user logged on this global unique id 175430 mac 175430 bytes_out 0 175430 bytes_in 0 175430 station_ip 5.202.22.76 175430 port 70 175430 unique_id port 175431 username shadkam 175431 mac 175383 unique_id port 175383 remote_ip 10.8.0.22 175386 username saeeddamghani 175386 mac 175386 bytes_out 438106 175386 bytes_in 1364150 175386 station_ip 217.60.218.29 175386 port 76 175386 unique_id port 175386 remote_ip 10.8.0.122 175391 username hashtadani4 175391 mac 175391 bytes_out 7488 175391 bytes_in 9055 175391 station_ip 5.202.134.147 175391 port 78 175391 unique_id port 175391 remote_ip 10.8.0.22 175392 username barzegar 175392 mac 175392 bytes_out 0 175392 bytes_in 0 175392 station_ip 151.235.115.177 175392 port 75 175392 unique_id port 175392 remote_ip 10.8.0.10 175396 username shadkam 175396 mac 175396 bytes_out 0 175396 bytes_in 0 175396 station_ip 5.202.22.76 175396 port 74 175396 unique_id port 175399 username kordestani 175399 mac 175399 bytes_out 525986 175399 bytes_in 3829497 175399 station_ip 151.235.87.32 175399 port 76 175399 unique_id port 175399 remote_ip 10.8.0.130 175400 username shadkam 175400 mac 175400 bytes_out 0 175400 bytes_in 0 175400 station_ip 5.202.22.76 175400 port 78 175400 unique_id port 175400 remote_ip 10.8.0.74 175401 username saeeddamghani 175401 kill_reason Another user logged on this global unique id 175401 mac 175401 bytes_out 0 175401 bytes_in 0 175401 station_ip 217.60.218.29 175401 port 71 175401 unique_id port 175401 remote_ip 10.8.0.122 175405 username kordestani 175405 mac 175405 bytes_out 4123840 175405 bytes_in 53551968 175405 station_ip 151.235.87.32 175405 port 76 175405 unique_id port 175405 remote_ip 10.8.0.130 175407 username mosi 175407 kill_reason Another user logged on this global unique id 175407 mac 175407 bytes_out 0 175407 bytes_in 0 175407 station_ip 151.235.101.178 175407 port 75 175407 unique_id port 175408 username saeeddamghani 175408 mac 175408 bytes_out 0 175408 bytes_in 0 175408 station_ip 217.60.218.29 175408 port 71 175408 unique_id port 175411 username godarzi 175411 mac 175411 bytes_out 0 175411 bytes_in 0 175411 station_ip 5.202.25.131 175411 port 70 175411 unique_id port 175411 remote_ip 10.8.0.38 175413 username saeeddamghani 175413 mac 175413 bytes_out 88676 175413 bytes_in 318304 175413 station_ip 217.60.218.29 175413 port 70 175413 unique_id port 175413 remote_ip 10.8.0.122 175416 username mosi 175416 kill_reason Another user logged on this global unique id 175416 mac 175416 bytes_out 0 175416 bytes_in 0 175416 station_ip 151.235.101.178 175416 port 75 175416 unique_id port 175419 username shadkam 175419 mac 175419 bytes_out 0 175419 bytes_in 0 175419 station_ip 5.202.22.76 175419 port 76 175419 unique_id port 175419 remote_ip 10.8.0.74 175421 username mostafa_es78 175421 mac 175421 bytes_out 2590821 175421 bytes_in 24512388 175421 station_ip 178.236.35.96 175421 port 71 175421 unique_id port 175421 remote_ip 10.8.0.34 175424 username majidsarmast 175424 kill_reason Another user logged on this global unique id 175424 mac 175424 bytes_out 0 175424 bytes_in 0 175424 station_ip 86.57.77.44 175424 port 77 175424 unique_id port 175424 remote_ip 10.8.0.170 175427 username majidsarmast 175427 kill_reason Another user logged on this global unique id 175427 mac 175427 bytes_out 0 175427 bytes_in 0 175427 station_ip 86.57.77.44 175427 port 77 175427 unique_id port 175428 username shadkam 175428 kill_reason Another user logged on this global unique id 175428 mac 175428 bytes_out 0 175428 bytes_in 0 175428 station_ip 5.202.22.76 175428 port 70 175428 unique_id port 175428 remote_ip 10.8.0.74 175432 username mosi 175432 mac 175432 bytes_out 0 175432 bytes_in 0 175404 kill_reason Another user logged on this global unique id 175404 mac 175404 bytes_out 0 175404 bytes_in 0 175404 station_ip 151.235.101.178 175404 port 75 175404 unique_id port 175404 remote_ip 10.8.0.142 175406 username shadkam 175406 kill_reason Another user logged on this global unique id 175406 mac 175406 bytes_out 0 175406 bytes_in 0 175406 station_ip 5.202.22.76 175406 port 79 175406 unique_id port 175406 remote_ip 10.8.0.74 175410 username majidsarmast 175410 mac 175410 bytes_out 0 175410 bytes_in 0 175410 station_ip 86.57.77.44 175410 port 77 175410 unique_id port 175412 username saeeddamghani 175412 mac 175412 bytes_out 550133 175412 bytes_in 4302338 175412 station_ip 217.60.218.29 175412 port 71 175412 unique_id port 175412 remote_ip 10.8.0.122 175415 username shadkam 175415 kill_reason Another user logged on this global unique id 175415 mac 175415 bytes_out 0 175415 bytes_in 0 175415 station_ip 5.202.22.76 175415 port 79 175415 unique_id port 175417 username shadkam 175417 mac 175417 bytes_out 0 175417 bytes_in 0 175417 station_ip 5.202.22.76 175417 port 79 175417 unique_id port 175418 username shadkam 175418 mac 175418 bytes_out 0 175418 bytes_in 0 175418 station_ip 5.202.22.76 175418 port 76 175418 unique_id port 175418 remote_ip 10.8.0.74 175420 username shadkam 175420 mac 175420 bytes_out 101066 175420 bytes_in 240516 175420 station_ip 5.202.22.76 175420 port 76 175420 unique_id port 175420 remote_ip 10.8.0.74 175423 username ayobi 175423 mac 175423 bytes_out 325664 175423 bytes_in 2339745 175423 station_ip 37.27.21.140 175423 port 74 175423 unique_id port 175423 remote_ip 10.8.0.186 175426 username mosi 175426 kill_reason Another user logged on this global unique id 175426 mac 175426 bytes_out 0 175426 bytes_in 0 175426 station_ip 151.235.101.178 175426 port 75 175426 unique_id port 175436 username aminvpn 175436 kill_reason Another user logged on this global unique id 175436 mac 175436 bytes_out 0 175436 bytes_in 0 175436 station_ip 5.120.56.251 175436 port 70 175436 unique_id port 175437 username aminvpn 175437 mac 175437 bytes_out 0 175437 bytes_in 0 175437 station_ip 5.120.56.251 175437 port 70 175437 unique_id port 175438 username shadkam 175438 kill_reason Maximum check online fails reached 175438 mac 175438 bytes_out 0 175438 bytes_in 0 175438 station_ip 5.202.22.76 175438 port 70 175438 unique_id port 175440 username mosi 175440 kill_reason Another user logged on this global unique id 175440 mac 175440 bytes_out 0 175440 bytes_in 0 175440 station_ip 151.235.101.178 175440 port 76 175440 unique_id port 175440 remote_ip 10.8.0.142 175446 username mosi 175446 kill_reason Another user logged on this global unique id 175446 mac 175446 bytes_out 0 175446 bytes_in 0 175446 station_ip 151.235.101.178 175446 port 76 175446 unique_id port 175447 username mosi 175447 kill_reason Another user logged on this global unique id 175447 mac 175447 bytes_out 0 175447 bytes_in 0 175447 station_ip 151.235.101.178 175447 port 76 175447 unique_id port 175451 username mosi 175451 kill_reason Another user logged on this global unique id 175451 mac 175451 bytes_out 0 175451 bytes_in 0 175451 station_ip 151.235.101.178 175451 port 76 175451 unique_id port 175452 username mosi 175452 kill_reason Another user logged on this global unique id 175452 mac 175452 bytes_out 0 175452 bytes_in 0 175452 station_ip 151.235.101.178 175452 port 76 175452 unique_id port 175458 username mosi 175458 mac 175458 bytes_out 2406 175458 bytes_in 4971 175458 station_ip 151.235.101.178 175458 port 74 175458 unique_id port 175431 bytes_out 0 175431 bytes_in 0 175431 station_ip 5.202.22.76 175431 port 70 175431 unique_id port 175433 username aminvpn 175433 kill_reason Another user logged on this global unique id 175433 mac 175433 bytes_out 0 175433 bytes_in 0 175433 station_ip 5.120.56.251 175433 port 70 175433 unique_id port 175433 remote_ip 10.8.0.58 175434 username shadkam 175434 mac 175434 bytes_out 873926 175434 bytes_in 8278434 175434 station_ip 5.202.22.76 175434 port 74 175434 unique_id port 175434 remote_ip 10.8.0.74 175435 username shadkam 175435 mac 175435 bytes_out 0 175435 bytes_in 0 175435 station_ip 5.202.22.76 175435 port 74 175435 unique_id port 175435 remote_ip 10.8.0.74 175439 username ebrahimpour3 175439 mac 175439 bytes_out 4027440 175439 bytes_in 49112956 175439 station_ip 86.57.56.39 175439 port 74 175439 unique_id port 175439 remote_ip 10.8.0.250 175444 username mosi 175444 kill_reason Another user logged on this global unique id 175444 mac 175444 bytes_out 0 175444 bytes_in 0 175444 station_ip 151.235.101.178 175444 port 76 175444 unique_id port 175445 username mosi 175445 kill_reason Another user logged on this global unique id 175445 mac 175445 bytes_out 0 175445 bytes_in 0 175445 station_ip 151.235.101.178 175445 port 76 175445 unique_id port 175449 username mosi 175449 kill_reason Another user logged on this global unique id 175449 mac 175449 bytes_out 0 175449 bytes_in 0 175449 station_ip 151.235.101.178 175449 port 76 175449 unique_id port 175453 username mosi 175453 kill_reason Another user logged on this global unique id 175453 mac 175453 bytes_out 0 175453 bytes_in 0 175453 station_ip 151.235.101.178 175453 port 76 175453 unique_id port 175459 username mosi 175459 mac 175459 bytes_out 0 175459 bytes_in 0 175459 station_ip 151.235.101.178 175459 port 74 175459 unique_id port 175459 remote_ip 10.8.0.142 175462 username arash 175462 mac 175462 bytes_out 173089 175462 bytes_in 1374668 175462 station_ip 37.27.10.240 175462 port 74 175462 unique_id port 175462 remote_ip 10.8.0.70 175463 username majidsarmast 175463 mac 175463 bytes_out 686512 175463 bytes_in 1518158 175463 station_ip 86.57.77.44 175463 port 71 175463 unique_id port 175463 remote_ip 10.8.0.170 175472 username saeeddamghani 175472 mac 175472 bytes_out 135296 175472 bytes_in 623666 175472 station_ip 151.235.67.158 175472 port 74 175472 unique_id port 175472 remote_ip 10.8.0.122 175473 username shadkam 175473 mac 175473 bytes_out 0 175473 bytes_in 0 175473 station_ip 5.202.8.119 175473 port 74 175473 unique_id port 175473 remote_ip 10.8.0.74 175474 username shadkam 175474 mac 175474 bytes_out 0 175474 bytes_in 0 175474 station_ip 5.202.8.119 175474 port 75 175474 unique_id port 175474 remote_ip 10.8.0.74 175478 username meysam 175478 kill_reason Another user logged on this global unique id 175478 mac 175478 bytes_out 0 175478 bytes_in 0 175478 station_ip 188.159.251.1 175478 port 74 175478 unique_id port 175483 username meysam 175483 mac 175483 bytes_out 0 175483 bytes_in 0 175483 station_ip 188.159.251.1 175483 port 74 175483 unique_id port 175484 username shadkam 175484 mac 175484 bytes_out 3384003 175484 bytes_in 35822346 175484 station_ip 5.202.8.119 175484 port 71 175484 unique_id port 175484 remote_ip 10.8.0.74 175488 username hatami 175488 kill_reason Another user logged on this global unique id 175488 mac 175488 bytes_out 0 175488 bytes_in 0 175488 station_ip 37.27.29.202 175488 port 75 175488 unique_id port 175488 remote_ip 10.8.0.98 175489 remote_ip 10.8.0.74 175490 username aminvpn 175432 station_ip 151.235.101.178 175432 port 75 175432 unique_id port 175441 username mosi 175441 kill_reason Another user logged on this global unique id 175441 mac 175441 bytes_out 0 175441 bytes_in 0 175441 station_ip 151.235.101.178 175441 port 76 175441 unique_id port 175442 username mosi 175442 kill_reason Another user logged on this global unique id 175442 mac 175442 bytes_out 0 175442 bytes_in 0 175442 station_ip 151.235.101.178 175442 port 76 175442 unique_id port 175443 username mosi 175443 kill_reason Another user logged on this global unique id 175443 mac 175443 bytes_out 0 175443 bytes_in 0 175443 station_ip 151.235.101.178 175443 port 76 175443 unique_id port 175448 username arash 175448 mac 175448 bytes_out 412686 175448 bytes_in 1404688 175448 station_ip 37.27.10.240 175448 port 75 175448 unique_id port 175448 remote_ip 10.8.0.70 175450 username mosi 175450 kill_reason Another user logged on this global unique id 175450 mac 175450 bytes_out 0 175450 bytes_in 0 175450 station_ip 151.235.101.178 175450 port 76 175450 unique_id port 175454 username mosi 175454 kill_reason Another user logged on this global unique id 175454 mac 175454 bytes_out 0 175454 bytes_in 0 175454 station_ip 151.235.101.178 175454 port 76 175454 unique_id port 175455 username mosi 175455 mac 175455 bytes_out 0 175455 bytes_in 0 175455 station_ip 151.235.101.178 175455 port 76 175455 unique_id port 175456 username mosi 175456 mac 175456 bytes_out 0 175456 bytes_in 0 175456 station_ip 151.235.101.178 175456 port 74 175456 unique_id port 175456 remote_ip 10.8.0.142 175457 username mosi 175457 mac 175457 bytes_out 0 175457 bytes_in 0 175457 station_ip 151.235.101.178 175457 port 75 175457 unique_id port 175457 remote_ip 10.8.0.142 175461 username mosi 175461 mac 175461 bytes_out 2829 175461 bytes_in 6549 175461 station_ip 151.235.101.178 175461 port 74 175461 unique_id port 175461 remote_ip 10.8.0.142 175464 username shadkam 175464 mac 175464 bytes_out 0 175464 bytes_in 0 175464 station_ip 5.202.8.119 175464 port 71 175464 unique_id port 175464 remote_ip 10.8.0.74 175466 username shadkam 175466 mac 175466 bytes_out 0 175466 bytes_in 0 175466 station_ip 5.202.8.119 175466 port 71 175466 unique_id port 175466 remote_ip 10.8.0.74 175468 username shadkam 175468 mac 175468 bytes_out 0 175468 bytes_in 0 175468 station_ip 5.202.8.119 175468 port 71 175468 unique_id port 175468 remote_ip 10.8.0.74 175469 username shadkam 175469 mac 175469 bytes_out 0 175469 bytes_in 0 175469 station_ip 5.202.8.119 175469 port 71 175469 unique_id port 175469 remote_ip 10.8.0.74 175471 username shadkam 175471 mac 175471 bytes_out 0 175471 bytes_in 0 175471 station_ip 5.202.8.119 175471 port 74 175471 unique_id port 175471 remote_ip 10.8.0.74 175475 username meysam 175475 kill_reason Another user logged on this global unique id 175475 mac 175475 bytes_out 0 175475 bytes_in 0 175475 station_ip 188.159.251.1 175475 port 74 175475 unique_id port 175475 remote_ip 10.8.0.158 175476 username barzegar 175476 mac 175476 bytes_out 178452 175476 bytes_in 1548215 175476 station_ip 151.235.115.177 175476 port 75 175476 unique_id port 175476 remote_ip 10.8.0.10 175486 username shadkam 175486 mac 175486 bytes_out 0 175486 bytes_in 0 175486 station_ip 5.202.8.119 175486 port 71 175486 unique_id port 175486 remote_ip 10.8.0.74 175489 username shadkam 175489 mac 175489 bytes_out 0 175489 bytes_in 0 175489 station_ip 5.202.8.119 175489 port 71 175489 unique_id port 175458 remote_ip 10.8.0.142 175460 username mosi 175460 mac 175460 bytes_out 0 175460 bytes_in 0 175460 station_ip 151.235.101.178 175460 port 75 175460 unique_id port 175460 remote_ip 10.8.0.142 175465 username shadkam 175465 mac 175465 bytes_out 0 175465 bytes_in 0 175465 station_ip 5.202.8.119 175465 port 71 175465 unique_id port 175465 remote_ip 10.8.0.74 175467 username shadkam 175467 mac 175467 bytes_out 0 175467 bytes_in 0 175467 station_ip 5.202.8.119 175467 port 71 175467 unique_id port 175467 remote_ip 10.8.0.74 175470 username shadkam 175470 mac 175470 bytes_out 0 175470 bytes_in 0 175470 station_ip 5.202.8.119 175470 port 71 175470 unique_id port 175470 remote_ip 10.8.0.74 175477 username shadkam 175477 mac 175477 bytes_out 0 175477 bytes_in 0 175477 station_ip 5.202.8.119 175477 port 75 175477 unique_id port 175477 remote_ip 10.8.0.74 175479 username godarzi 175479 mac 175479 bytes_out 3628829 175479 bytes_in 15465772 175479 station_ip 5.202.25.131 175479 port 71 175479 unique_id port 175479 remote_ip 10.8.0.38 175480 username shadkam 175480 mac 175480 bytes_out 550579 175480 bytes_in 4410299 175480 station_ip 5.202.8.119 175480 port 75 175480 unique_id port 175480 remote_ip 10.8.0.74 175481 username godarzi 175481 mac 175481 bytes_out 555881 175481 bytes_in 739579 175481 station_ip 5.202.25.131 175481 port 76 175481 unique_id port 175481 remote_ip 10.8.0.38 175482 username meysam 175482 kill_reason Another user logged on this global unique id 175482 mac 175482 bytes_out 0 175482 bytes_in 0 175482 station_ip 188.159.251.1 175482 port 74 175482 unique_id port 175485 username shadkam 175485 mac 175485 bytes_out 0 175485 bytes_in 0 175485 station_ip 5.202.8.119 175485 port 71 175485 unique_id port 175485 remote_ip 10.8.0.74 175487 username godarzi 175487 mac 175487 bytes_out 409800 175487 bytes_in 1436289 175487 station_ip 5.202.25.131 175487 port 76 175487 unique_id port 175487 remote_ip 10.8.0.38 175490 mac 175490 bytes_out 0 175490 bytes_in 0 175490 station_ip 5.120.56.251 175490 port 71 175490 unique_id port 175490 remote_ip 10.8.0.58 175491 username shadkam 175491 mac 175491 bytes_out 0 175491 bytes_in 0 175491 station_ip 5.202.8.119 175491 port 71 175491 unique_id port 175491 remote_ip 10.8.0.74 175492 username aminvpn 175492 mac 175492 bytes_out 0 175492 bytes_in 0 175492 station_ip 5.120.56.251 175492 port 74 175492 unique_id port 175492 remote_ip 10.8.0.58 175493 username aminvpn 175493 mac 175493 bytes_out 0 175493 bytes_in 0 175493 station_ip 5.120.56.251 175493 port 74 175493 unique_id port 175493 remote_ip 10.8.0.58 175494 username shadkam 175494 mac 175494 bytes_out 0 175494 bytes_in 0 175494 station_ip 5.202.8.119 175494 port 76 175494 unique_id port 175494 remote_ip 10.8.0.74 175495 username godarzi 175495 mac 175495 bytes_out 564166 175495 bytes_in 933038 175495 station_ip 5.202.25.131 175495 port 71 175495 unique_id port 175495 remote_ip 10.8.0.38 175496 username meysam 175496 mac 175496 bytes_out 418427 175496 bytes_in 5277579 175496 station_ip 188.159.251.1 175496 port 74 175496 unique_id port 175496 remote_ip 10.8.0.158 175497 username aminvpn 175497 mac 175497 bytes_out 0 175497 bytes_in 0 175497 station_ip 5.120.56.251 175497 port 74 175497 unique_id port 175497 remote_ip 10.8.0.58 175498 username shadkam 175498 mac 175498 bytes_out 206446 175498 bytes_in 1055322 175498 station_ip 5.202.8.119 175498 port 71 175498 unique_id port 175498 remote_ip 10.8.0.74 175504 username aminvpn 175504 mac 175504 bytes_out 0 175504 bytes_in 0 175504 station_ip 5.120.56.251 175504 port 71 175504 unique_id port 175504 remote_ip 10.8.0.58 175506 username shadkam 175506 mac 175506 bytes_out 64678 175506 bytes_in 410457 175506 station_ip 5.202.8.119 175506 port 75 175506 unique_id port 175506 remote_ip 10.8.0.74 175508 username meysam 175508 mac 175508 bytes_out 1658898 175508 bytes_in 24169034 175508 station_ip 188.159.251.1 175508 port 71 175508 unique_id port 175508 remote_ip 10.8.0.158 175513 username godarzi 175513 mac 175513 bytes_out 20050590 175513 bytes_in 7123486 175513 station_ip 5.202.25.131 175513 port 74 175513 unique_id port 175513 remote_ip 10.8.0.38 175515 username aminvpn 175515 mac 175515 bytes_out 0 175515 bytes_in 0 175515 station_ip 5.120.56.251 175515 port 77 175515 unique_id port 175515 remote_ip 10.8.0.58 175517 username hatami 175517 mac 175517 bytes_out 713671 175517 bytes_in 1592122 175517 station_ip 37.27.29.202 175517 port 76 175517 unique_id port 175517 remote_ip 10.8.0.98 175521 username aminvpn 175521 mac 175521 bytes_out 485007 175521 bytes_in 13908475 175521 station_ip 5.120.56.251 175521 port 71 175521 unique_id port 175521 remote_ip 10.8.0.58 175523 username godarzi 175523 mac 175523 bytes_out 932318 175523 bytes_in 7491983 175523 station_ip 5.202.25.131 175523 port 75 175523 unique_id port 175523 remote_ip 10.8.0.38 175527 username aminvpn 175527 mac 175527 bytes_out 2325471 175527 bytes_in 34035315 175527 station_ip 5.120.56.251 175527 port 71 175527 unique_id port 175527 remote_ip 10.8.0.58 175528 username aminvpn 175528 mac 175528 bytes_out 0 175528 bytes_in 0 175528 station_ip 5.120.56.251 175528 port 71 175528 unique_id port 175528 remote_ip 10.8.0.58 175530 username hosseine 175530 mac 175530 bytes_out 0 175530 bytes_in 0 175530 station_ip 37.129.235.17 175530 port 78 175530 unique_id port 175530 remote_ip 10.8.0.54 175531 username mosi 175531 mac 175531 bytes_out 0 175531 bytes_in 0 175531 station_ip 151.235.101.178 175531 port 79 175531 unique_id port 175531 remote_ip 10.8.0.142 175533 username mosi 175533 mac 175533 bytes_out 7126 175533 bytes_in 4621 175533 station_ip 151.235.101.178 175533 port 78 175533 unique_id port 175533 remote_ip 10.8.0.142 175541 username hashtadani4 175541 mac 175541 bytes_out 0 175541 bytes_in 0 175541 station_ip 5.202.3.224 175541 port 80 175541 unique_id port 175541 remote_ip 10.8.0.22 175542 username aminvpn 175542 mac 175542 bytes_out 246755 175542 bytes_in 1432200 175542 station_ip 5.120.56.251 175542 port 77 175542 unique_id port 175542 remote_ip 10.8.0.58 175545 username aminvpn2 175545 mac 175545 bytes_out 0 175545 bytes_in 0 175545 station_ip 5.120.56.251 175545 port 81 175545 unique_id port 175545 remote_ip 10.8.0.150 175546 username hashtadani4 175546 mac 175546 bytes_out 8538 175546 bytes_in 11006 175546 station_ip 5.202.3.224 175546 port 78 175546 unique_id port 175546 remote_ip 10.8.0.22 175548 username aminvpn2 175548 mac 175548 bytes_out 0 175548 bytes_in 0 175548 station_ip 5.120.56.251 175548 port 78 175548 unique_id port 175548 remote_ip 10.8.0.150 175551 username aminvpn 175551 mac 175551 bytes_out 1582359 175551 bytes_in 15033872 175551 station_ip 5.120.56.251 175551 port 77 175551 unique_id port 175551 remote_ip 10.8.0.58 175554 username hosseine 175499 username hatami 175499 mac 175499 bytes_out 0 175499 bytes_in 0 175499 station_ip 37.27.29.202 175499 port 75 175499 unique_id port 175501 username hatami 175501 mac 175501 bytes_out 35131 175501 bytes_in 44806 175501 station_ip 37.27.29.202 175501 port 71 175501 unique_id port 175501 remote_ip 10.8.0.98 175503 username aminvpn 175503 mac 175503 bytes_out 0 175503 bytes_in 0 175503 station_ip 5.120.56.251 175503 port 71 175503 unique_id port 175503 remote_ip 10.8.0.58 175510 username aminvpn 175510 mac 175510 bytes_out 297180 175510 bytes_in 3726083 175510 station_ip 5.120.56.251 175510 port 71 175510 unique_id port 175510 remote_ip 10.8.0.58 175518 username aminvpn 175518 mac 175518 bytes_out 546376 175518 bytes_in 17257392 175518 station_ip 5.120.56.251 175518 port 71 175518 unique_id port 175518 remote_ip 10.8.0.58 175520 username meysam 175520 mac 175520 bytes_out 1054394 175520 bytes_in 13787298 175520 station_ip 188.159.251.1 175520 port 74 175520 unique_id port 175520 remote_ip 10.8.0.158 175522 username aminvpn 175522 mac 175522 bytes_out 0 175522 bytes_in 0 175522 station_ip 5.120.56.251 175522 port 74 175522 unique_id port 175522 remote_ip 10.8.0.58 175524 username mansour 175524 mac 175524 bytes_out 1306359 175524 bytes_in 17802706 175524 station_ip 5.202.134.148 175524 port 74 175524 unique_id port 175524 remote_ip 10.8.0.206 175525 username aminvpn 175525 mac 175525 bytes_out 594097 175525 bytes_in 6696262 175525 station_ip 5.120.56.251 175525 port 71 175525 unique_id port 175525 remote_ip 10.8.0.58 175529 username aminvpn 175529 kill_reason Maximum check online fails reached 175529 mac 175529 bytes_out 0 175529 bytes_in 0 175529 station_ip 5.120.56.251 175529 port 71 175529 unique_id port 175536 username aminvpn 175536 mac 175536 bytes_out 0 175536 bytes_in 0 175536 station_ip 5.120.56.251 175536 port 79 175536 unique_id port 175536 remote_ip 10.8.0.58 175538 username aminvpn 175538 mac 175538 bytes_out 0 175538 bytes_in 0 175538 station_ip 5.120.56.251 175538 port 77 175538 unique_id port 175538 remote_ip 10.8.0.58 175543 username aminvpn 175543 mac 175543 bytes_out 0 175543 bytes_in 0 175543 station_ip 5.120.56.251 175543 port 80 175543 unique_id port 175543 remote_ip 10.8.0.58 175544 username aminvpn2 175544 mac 175544 bytes_out 0 175544 bytes_in 0 175544 station_ip 5.120.56.251 175544 port 80 175544 unique_id port 175544 remote_ip 10.8.0.150 175547 username aminvpn2 175547 mac 175547 bytes_out 0 175547 bytes_in 0 175547 station_ip 5.120.56.251 175547 port 81 175547 unique_id port 175547 remote_ip 10.8.0.150 175552 username aminvpn 175552 mac 175552 bytes_out 0 175552 bytes_in 0 175552 station_ip 5.120.56.251 175552 port 74 175552 unique_id port 175552 remote_ip 10.8.0.58 175553 username hashtadani4 175553 mac 175553 bytes_out 0 175553 bytes_in 0 175553 station_ip 5.202.3.224 175553 port 74 175553 unique_id port 175553 remote_ip 10.8.0.22 175557 username mansour 175557 mac 175557 bytes_out 62758 175557 bytes_in 411199 175557 station_ip 5.202.134.148 175557 port 78 175557 unique_id port 175557 remote_ip 10.8.0.206 175561 username hashtadani4 175561 mac 175561 bytes_out 0 175561 bytes_in 0 175561 station_ip 5.202.3.224 175561 port 77 175561 unique_id port 175561 remote_ip 10.8.0.22 175562 username hashtadani4 175562 mac 175562 bytes_out 0 175562 bytes_in 0 175562 station_ip 5.202.3.224 175562 port 80 175500 username rahim 175500 mac 175500 bytes_out 101880 175500 bytes_in 115500 175500 station_ip 86.57.118.223 175500 port 75 175500 unique_id port 175500 remote_ip 10.8.0.134 175502 username shadkam 175502 mac 175502 bytes_out 18089 175502 bytes_in 42050 175502 station_ip 5.202.8.119 175502 port 76 175502 unique_id port 175502 remote_ip 10.8.0.74 175505 username shadkam 175505 mac 175505 bytes_out 8715 175505 bytes_in 9464 175505 station_ip 5.202.8.119 175505 port 71 175505 unique_id port 175505 remote_ip 10.8.0.74 175507 username aminvpn 175507 mac 175507 bytes_out 0 175507 bytes_in 0 175507 station_ip 5.120.56.251 175507 port 77 175507 unique_id port 175507 remote_ip 10.8.0.58 175509 username rahim 175509 mac 175509 bytes_out 2763541 175509 bytes_in 34559592 175509 station_ip 86.57.118.223 175509 port 75 175509 unique_id port 175509 remote_ip 10.8.0.134 175511 username aminvpn 175511 mac 175511 bytes_out 0 175511 bytes_in 0 175511 station_ip 5.120.56.251 175511 port 75 175511 unique_id port 175511 remote_ip 10.8.0.58 175512 username aminvpn 175512 mac 175512 bytes_out 0 175512 bytes_in 0 175512 station_ip 5.120.56.251 175512 port 71 175512 unique_id port 175512 remote_ip 10.8.0.58 175514 username aminvpn 175514 mac 175514 bytes_out 3000240 175514 bytes_in 63039440 175514 station_ip 5.120.56.251 175514 port 71 175514 unique_id port 175514 remote_ip 10.8.0.58 175516 username aminvpn 175516 mac 175516 bytes_out 0 175516 bytes_in 0 175516 station_ip 5.120.56.251 175516 port 71 175516 unique_id port 175516 remote_ip 10.8.0.58 175519 username aminvpn 175519 mac 175519 bytes_out 0 175519 bytes_in 0 175519 station_ip 5.120.56.251 175519 port 77 175519 unique_id port 175519 remote_ip 10.8.0.58 175526 username aminvpn 175526 mac 175526 bytes_out 0 175526 bytes_in 0 175526 station_ip 5.120.56.251 175526 port 74 175526 unique_id port 175526 remote_ip 10.8.0.58 175532 username hashtadani4 175532 mac 175532 bytes_out 2090879 175532 bytes_in 23197521 175532 station_ip 5.202.3.224 175532 port 74 175532 unique_id port 175532 remote_ip 10.8.0.22 175534 username hashtadani4 175534 mac 175534 bytes_out 0 175534 bytes_in 0 175534 station_ip 5.202.3.224 175534 port 79 175534 unique_id port 175534 remote_ip 10.8.0.22 175535 username aminvpn 175535 mac 175535 bytes_out 758805 175535 bytes_in 6144092 175535 station_ip 5.120.56.251 175535 port 77 175535 unique_id port 175535 remote_ip 10.8.0.58 175537 username hashtadani4 175537 mac 175537 bytes_out 0 175537 bytes_in 0 175537 station_ip 5.202.3.224 175537 port 77 175537 unique_id port 175537 remote_ip 10.8.0.22 175539 username hosseine 175539 mac 175539 bytes_out 2000687 175539 bytes_in 8697066 175539 station_ip 37.129.130.197 175539 port 80 175539 unique_id port 175539 remote_ip 10.8.0.54 175540 username meysam 175540 mac 175540 bytes_out 1205636 175540 bytes_in 17581941 175540 station_ip 188.158.50.93 175540 port 78 175540 unique_id port 175540 remote_ip 10.8.0.158 175549 username ahmadi1 175549 mac 175549 bytes_out 191631 175549 bytes_in 1263527 175549 station_ip 37.129.238.143 175549 port 80 175549 unique_id port 175549 remote_ip 10.8.0.94 175550 username tahmorsi 175550 mac 175550 bytes_out 12339103 175550 bytes_in 13326418 175550 station_ip 86.57.69.206 175550 port 74 175550 unique_id port 175550 remote_ip 10.8.0.238 175555 username aminvpn2 175555 mac 175555 bytes_out 2106536 175555 bytes_in 19021598 175554 kill_reason Another user logged on this global unique id 175554 mac 175554 bytes_out 0 175554 bytes_in 0 175554 station_ip 37.129.180.177 175554 port 79 175554 unique_id port 175554 remote_ip 10.8.0.54 175556 username meysam 175556 mac 175556 bytes_out 1021620 175556 bytes_in 14167373 175556 station_ip 188.158.50.93 175556 port 80 175556 unique_id port 175556 remote_ip 10.8.0.158 175558 username aminvpn 175558 mac 175558 bytes_out 406343 175558 bytes_in 3676868 175558 station_ip 5.120.56.251 175558 port 77 175558 unique_id port 175558 remote_ip 10.8.0.58 175564 username shadkam 175564 mac 175564 bytes_out 491647 175564 bytes_in 2844297 175564 station_ip 37.129.139.4 175564 port 77 175564 unique_id port 175564 remote_ip 10.8.0.74 175568 username sekonji3 175568 kill_reason Relative expiration date has reached 175568 mac 175568 bytes_out 0 175568 bytes_in 0 175568 station_ip 37.129.195.1 175568 port 78 175568 unique_id port 175571 username sekonji3 175571 kill_reason Relative expiration date has reached 175571 mac 175571 bytes_out 0 175571 bytes_in 0 175571 station_ip 37.129.140.169 175571 port 77 175571 unique_id port 175572 username sekonji3 175572 kill_reason Relative expiration date has reached 175572 mac 175572 bytes_out 0 175572 bytes_in 0 175572 station_ip 37.129.247.33 175572 port 77 175572 unique_id port 175577 username aminvpn 175577 mac 175577 bytes_out 0 175577 bytes_in 0 175577 station_ip 5.120.56.251 175577 port 80 175577 unique_id port 175577 remote_ip 10.8.0.58 175578 username aminvpn 175578 mac 175578 bytes_out 0 175578 bytes_in 0 175578 station_ip 5.119.19.146 175578 port 78 175578 unique_id port 175578 remote_ip 10.8.0.58 175580 username aminvpn 175580 mac 175580 bytes_out 0 175580 bytes_in 0 175580 station_ip 5.120.56.251 175580 port 78 175580 unique_id port 175580 remote_ip 10.8.0.58 175584 username aminvpn 175584 mac 175584 bytes_out 0 175584 bytes_in 0 175584 station_ip 5.120.56.251 175584 port 80 175584 unique_id port 175584 remote_ip 10.8.0.58 175585 username aminvpn 175585 mac 175585 bytes_out 0 175585 bytes_in 0 175585 station_ip 5.119.19.146 175585 port 78 175585 unique_id port 175585 remote_ip 10.8.0.58 175586 username aminvpn 175586 mac 175586 bytes_out 0 175586 bytes_in 0 175586 station_ip 5.120.56.251 175586 port 80 175586 unique_id port 175586 remote_ip 10.8.0.58 175592 username aminvpn 175592 mac 175592 bytes_out 0 175592 bytes_in 0 175592 station_ip 5.120.56.251 175592 port 80 175592 unique_id port 175592 remote_ip 10.8.0.58 175593 username aminvpn 175593 mac 175593 bytes_out 0 175593 bytes_in 0 175593 station_ip 5.119.19.146 175593 port 81 175593 unique_id port 175593 remote_ip 10.8.0.58 175597 username hashtadani4 175597 mac 175597 bytes_out 0 175597 bytes_in 0 175597 station_ip 37.129.203.194 175597 port 81 175597 unique_id port 175597 remote_ip 10.8.0.22 175601 username aminvpn 175601 mac 175601 bytes_out 0 175601 bytes_in 0 175601 station_ip 5.119.19.146 175601 port 82 175601 unique_id port 175601 remote_ip 10.8.0.58 175603 username aminvpn 175603 mac 175603 bytes_out 0 175603 bytes_in 0 175603 station_ip 5.119.19.146 175603 port 85 175603 unique_id port 175603 remote_ip 10.8.0.58 175605 username houshang 175605 mac 175605 bytes_out 1033364 175605 bytes_in 153341 175605 station_ip 5.119.171.5 175605 port 83 175605 unique_id port 175605 remote_ip 10.8.0.82 175606 username shadkam 175606 mac 175606 bytes_out 96372 175555 station_ip 5.120.56.251 175555 port 78 175555 unique_id port 175555 remote_ip 10.8.0.150 175559 username aminvpn 175559 mac 175559 bytes_out 0 175559 bytes_in 0 175559 station_ip 5.120.56.251 175559 port 78 175559 unique_id port 175559 remote_ip 10.8.0.58 175560 username aminvpn 175560 mac 175560 bytes_out 0 175560 bytes_in 0 175560 station_ip 5.120.56.251 175560 port 77 175560 unique_id port 175560 remote_ip 10.8.0.58 175563 username hashtadani4 175563 mac 175563 bytes_out 0 175563 bytes_in 0 175563 station_ip 5.202.3.224 175563 port 80 175563 unique_id port 175563 remote_ip 10.8.0.22 175565 username aminvpn 175565 mac 175565 bytes_out 69455 175565 bytes_in 157947 175565 station_ip 5.120.56.251 175565 port 78 175565 unique_id port 175565 remote_ip 10.8.0.58 175569 username sekonji3 175569 kill_reason Relative expiration date has reached 175569 mac 175569 bytes_out 0 175569 bytes_in 0 175569 station_ip 37.129.192.161 175569 port 78 175569 unique_id port 175573 username sekonji3 175573 kill_reason Relative expiration date has reached 175573 mac 175573 bytes_out 0 175573 bytes_in 0 175573 station_ip 37.129.226.189 175573 port 77 175573 unique_id port 175574 username aminvpn 175574 mac 175574 bytes_out 0 175574 bytes_in 0 175574 station_ip 5.120.56.251 175574 port 78 175574 unique_id port 175574 remote_ip 10.8.0.58 175575 username aminvpn 175575 mac 175575 bytes_out 0 175575 bytes_in 0 175575 station_ip 5.119.19.146 175575 port 80 175575 unique_id port 175575 remote_ip 10.8.0.58 175579 username aminvpn 175579 mac 175579 bytes_out 0 175579 bytes_in 0 175579 station_ip 5.120.56.251 175579 port 80 175579 unique_id port 175579 remote_ip 10.8.0.58 175581 username aminvpn 175581 mac 175581 bytes_out 0 175581 bytes_in 0 175581 station_ip 5.119.19.146 175581 port 78 175581 unique_id port 175581 remote_ip 10.8.0.58 175587 username hashtadani4 175587 mac 175587 bytes_out 0 175587 bytes_in 0 175587 station_ip 5.202.3.224 175587 port 80 175587 unique_id port 175587 remote_ip 10.8.0.22 175589 username aminvpn 175589 mac 175589 bytes_out 0 175589 bytes_in 0 175589 station_ip 5.120.56.251 175589 port 80 175589 unique_id port 175589 remote_ip 10.8.0.58 175594 username godarzi 175594 kill_reason Another user logged on this global unique id 175594 mac 175594 bytes_out 0 175594 bytes_in 0 175594 station_ip 5.202.25.131 175594 port 75 175594 unique_id port 175594 remote_ip 10.8.0.38 175595 username aminvpn 175595 mac 175595 bytes_out 0 175595 bytes_in 0 175595 station_ip 5.120.56.251 175595 port 80 175595 unique_id port 175595 remote_ip 10.8.0.58 175598 username aminvpn 175598 mac 175598 bytes_out 0 175598 bytes_in 0 175598 station_ip 5.119.19.146 175598 port 82 175598 unique_id port 175598 remote_ip 10.8.0.58 175599 username aminvpn 175599 mac 175599 bytes_out 0 175599 bytes_in 0 175599 station_ip 5.120.56.251 175599 port 80 175599 unique_id port 175599 remote_ip 10.8.0.58 175600 username hashtadani4 175600 mac 175600 bytes_out 0 175600 bytes_in 0 175600 station_ip 37.129.203.194 175600 port 81 175600 unique_id port 175600 remote_ip 10.8.0.22 175604 username aminvpn 175604 mac 175604 bytes_out 0 175604 bytes_in 0 175604 station_ip 5.120.56.251 175604 port 84 175604 unique_id port 175604 remote_ip 10.8.0.58 175610 username hashtadani4 175610 kill_reason Maximum check online fails reached 175610 mac 175610 bytes_out 0 175610 bytes_in 0 175610 station_ip 37.129.203.194 175610 port 82 175562 unique_id port 175562 remote_ip 10.8.0.22 175566 username aminvpn 175566 mac 175566 bytes_out 0 175566 bytes_in 0 175566 station_ip 5.119.19.146 175566 port 77 175566 unique_id port 175566 remote_ip 10.8.0.58 175567 username aminvpn 175567 mac 175567 bytes_out 0 175567 bytes_in 0 175567 station_ip 5.120.56.251 175567 port 78 175567 unique_id port 175567 remote_ip 10.8.0.58 175570 username aminvpn 175570 mac 175570 bytes_out 0 175570 bytes_in 0 175570 station_ip 5.119.19.146 175570 port 77 175570 unique_id port 175570 remote_ip 10.8.0.58 175576 username aminvpn 175576 mac 175576 bytes_out 0 175576 bytes_in 0 175576 station_ip 5.120.56.251 175576 port 78 175576 unique_id port 175576 remote_ip 10.8.0.58 175582 username aminvpn 175582 mac 175582 bytes_out 0 175582 bytes_in 0 175582 station_ip 5.120.56.251 175582 port 80 175582 unique_id port 175582 remote_ip 10.8.0.58 175583 username aminvpn 175583 mac 175583 bytes_out 0 175583 bytes_in 0 175583 station_ip 5.119.19.146 175583 port 78 175583 unique_id port 175583 remote_ip 10.8.0.58 175588 username aminvpn 175588 mac 175588 bytes_out 0 175588 bytes_in 0 175588 station_ip 5.119.19.146 175588 port 78 175588 unique_id port 175588 remote_ip 10.8.0.58 175590 username aminvpn 175590 mac 175590 bytes_out 0 175590 bytes_in 0 175590 station_ip 5.119.19.146 175590 port 81 175590 unique_id port 175590 remote_ip 10.8.0.58 175591 username hashtadani4 175591 kill_reason Maximum check online fails reached 175591 mac 175591 bytes_out 0 175591 bytes_in 0 175591 station_ip 5.202.3.224 175591 port 78 175591 unique_id port 175596 username mirzaei 175596 kill_reason Relative expiration date has reached 175596 mac 175596 bytes_out 0 175596 bytes_in 0 175596 station_ip 5.120.54.23 175596 port 80 175596 unique_id port 175602 username aminvpn 175602 mac 175602 bytes_out 0 175602 bytes_in 0 175602 station_ip 5.120.56.251 175602 port 84 175602 unique_id port 175602 remote_ip 10.8.0.58 175608 username hashtadani4 175608 mac 175608 bytes_out 110312 175608 bytes_in 684692 175608 station_ip 37.129.203.194 175608 port 81 175608 unique_id port 175608 remote_ip 10.8.0.22 175612 username sabaghnezhad 175612 mac 175612 bytes_out 525040 175612 bytes_in 2038082 175612 station_ip 151.235.109.1 175612 port 77 175612 unique_id port 175612 remote_ip 10.8.0.66 175615 username vanila 175615 kill_reason Relative expiration date has reached 175615 mac 175615 bytes_out 0 175615 bytes_in 0 175615 station_ip 37.129.170.203 175615 port 80 175615 unique_id port 175620 username barzegar 175620 mac 175620 bytes_out 4377 175620 bytes_in 6322 175620 station_ip 5.119.58.218 175620 port 77 175620 unique_id port 175620 remote_ip 10.8.0.10 175623 username soleymani5056 175623 mac 175623 bytes_out 2748 175623 bytes_in 4453 175623 station_ip 5.120.102.107 175623 port 84 175623 unique_id port 175623 remote_ip 10.8.0.226 175631 username shadkam 175631 mac 175631 bytes_out 4685321 175631 bytes_in 44278319 175631 station_ip 37.129.227.158 175631 port 83 175631 unique_id port 175631 remote_ip 10.8.0.74 175633 username aminvpn 175633 mac 175633 bytes_out 0 175633 bytes_in 0 175633 station_ip 5.120.56.251 175633 port 80 175633 unique_id port 175633 remote_ip 10.8.0.58 175640 username aminvpn 175640 mac 175640 bytes_out 104018 175640 bytes_in 164915 175640 station_ip 5.120.56.251 175640 port 76 175640 unique_id port 175640 remote_ip 10.8.0.58 175643 username hamid 175606 bytes_in 438561 175606 station_ip 37.129.177.99 175606 port 80 175606 unique_id port 175606 remote_ip 10.8.0.74 175607 username meysam 175607 mac 175607 bytes_out 167747 175607 bytes_in 1938825 175607 station_ip 188.158.50.93 175607 port 82 175607 unique_id port 175607 remote_ip 10.8.0.158 175609 username hashtadani4 175609 kill_reason Maximum number of concurrent logins reached 175609 mac 175609 bytes_out 0 175609 bytes_in 0 175609 station_ip 37.129.203.194 175609 port 84 175609 unique_id port 175611 username hashtadani4 175611 kill_reason Maximum check online fails reached 175611 mac 175611 bytes_out 0 175611 bytes_in 0 175611 station_ip 37.129.203.194 175611 port 81 175611 unique_id port 175613 username soleymani5056 175613 mac 175613 bytes_out 2580 175613 bytes_in 4425 175613 station_ip 5.119.64.175 175613 port 83 175613 unique_id port 175613 remote_ip 10.8.0.226 175616 username vanila 175616 kill_reason Relative expiration date has reached 175616 mac 175616 bytes_out 0 175616 bytes_in 0 175616 station_ip 37.129.170.203 175616 port 80 175616 unique_id port 175617 username soleymani5056 175617 mac 175617 bytes_out 266847 175617 bytes_in 1406536 175617 station_ip 5.120.81.174 175617 port 77 175617 unique_id port 175617 remote_ip 10.8.0.226 175619 username aminvpn 175619 mac 175619 bytes_out 0 175619 bytes_in 0 175619 station_ip 5.120.56.251 175619 port 80 175619 unique_id port 175619 remote_ip 10.8.0.58 175621 username barzegar 175621 mac 175621 bytes_out 0 175621 bytes_in 0 175621 station_ip 5.119.58.218 175621 port 84 175621 unique_id port 175621 remote_ip 10.8.0.10 175622 username hatami 175622 mac 175622 bytes_out 408102 175622 bytes_in 1455961 175622 station_ip 37.27.29.202 175622 port 76 175622 unique_id port 175622 remote_ip 10.8.0.98 175625 username aminvpn 175625 mac 175625 bytes_out 0 175625 bytes_in 0 175625 station_ip 5.120.56.251 175625 port 76 175625 unique_id port 175625 remote_ip 10.8.0.58 175627 username aminvpn 175627 mac 175627 bytes_out 0 175627 bytes_in 0 175627 station_ip 5.120.56.251 175627 port 76 175627 unique_id port 175627 remote_ip 10.8.0.58 175628 username aminvpn 175628 mac 175628 bytes_out 0 175628 bytes_in 0 175628 station_ip 5.120.56.251 175628 port 80 175628 unique_id port 175628 remote_ip 10.8.0.58 175632 username aminvpn 175632 mac 175632 bytes_out 0 175632 bytes_in 0 175632 station_ip 5.120.56.251 175632 port 76 175632 unique_id port 175632 remote_ip 10.8.0.58 175634 username hosseine 175634 kill_reason Another user logged on this global unique id 175634 mac 175634 bytes_out 0 175634 bytes_in 0 175634 station_ip 37.129.180.177 175634 port 79 175634 unique_id port 175635 username barzegar 175635 mac 175635 bytes_out 2970784 175635 bytes_in 35474337 175635 station_ip 5.119.58.218 175635 port 77 175635 unique_id port 175635 remote_ip 10.8.0.10 175636 username hosseine 175636 kill_reason Another user logged on this global unique id 175636 mac 175636 bytes_out 0 175636 bytes_in 0 175636 station_ip 37.129.180.177 175636 port 79 175636 unique_id port 175638 username aminvpn 175638 mac 175638 bytes_out 658639 175638 bytes_in 3932787 175638 station_ip 5.120.56.251 175638 port 76 175638 unique_id port 175638 remote_ip 10.8.0.58 175639 username aminvpn 175639 mac 175639 bytes_out 0 175639 bytes_in 0 175639 station_ip 5.120.56.251 175639 port 83 175639 unique_id port 175639 remote_ip 10.8.0.58 175641 username shadkam 175641 mac 175641 bytes_out 236030 175641 bytes_in 2328664 175610 unique_id port 175614 username barzegar 175614 mac 175614 bytes_out 729799 175614 bytes_in 8889435 175614 station_ip 5.119.58.218 175614 port 80 175614 unique_id port 175614 remote_ip 10.8.0.10 175618 username aminvpn 175618 mac 175618 bytes_out 1558276 175618 bytes_in 26244238 175618 station_ip 5.120.56.251 175618 port 85 175618 unique_id port 175618 remote_ip 10.8.0.58 175624 username aminvpn 175624 mac 175624 bytes_out 417181 175624 bytes_in 4684870 175624 station_ip 5.120.56.251 175624 port 80 175624 unique_id port 175624 remote_ip 10.8.0.58 175626 username aminvpn 175626 mac 175626 bytes_out 0 175626 bytes_in 0 175626 station_ip 5.120.56.251 175626 port 76 175626 unique_id port 175626 remote_ip 10.8.0.58 175629 username aminvpn 175629 mac 175629 bytes_out 0 175629 bytes_in 0 175629 station_ip 5.120.56.251 175629 port 76 175629 unique_id port 175629 remote_ip 10.8.0.58 175630 username aminvpn 175630 mac 175630 bytes_out 0 175630 bytes_in 0 175630 station_ip 5.120.56.251 175630 port 80 175630 unique_id port 175630 remote_ip 10.8.0.58 175637 username barzegar 175637 kill_reason Maximum check online fails reached 175637 mac 175637 bytes_out 0 175637 bytes_in 0 175637 station_ip 5.119.58.218 175637 port 77 175637 unique_id port 175642 username afarin1 175642 mac 175642 bytes_out 414374 175642 bytes_in 3184285 175642 station_ip 31.59.34.146 175642 port 83 175642 unique_id port 175642 remote_ip 10.8.0.178 175649 username meysam 175649 mac 175649 bytes_out 191777 175649 bytes_in 918927 175649 station_ip 188.158.50.93 175649 port 84 175649 unique_id port 175649 remote_ip 10.8.0.158 175651 username mohammadjavad 175651 mac 175651 bytes_out 550229 175651 bytes_in 4948467 175651 station_ip 37.129.244.232 175651 port 87 175651 unique_id port 175651 remote_ip 10.8.0.110 175652 username barzegar 175652 kill_reason Another user logged on this global unique id 175652 mac 175652 bytes_out 0 175652 bytes_in 0 175652 station_ip 5.119.58.218 175652 port 80 175652 unique_id port 175652 remote_ip 10.8.0.10 175653 username mohammadjavad 175653 mac 175653 bytes_out 0 175653 bytes_in 0 175653 station_ip 37.129.244.232 175653 port 85 175653 unique_id port 175653 remote_ip 10.8.0.110 175654 username hamid 175654 kill_reason Relative expiration date has reached 175654 mac 175654 bytes_out 0 175654 bytes_in 0 175654 station_ip 37.129.231.128 175654 port 89 175654 unique_id port 175656 username rezaei 175656 mac 175656 bytes_out 1201654 175656 bytes_in 5702745 175656 station_ip 5.119.213.115 175656 port 85 175656 unique_id port 175656 remote_ip 10.8.0.198 175659 username vanila 175659 kill_reason Relative expiration date has reached 175659 mac 175659 bytes_out 0 175659 bytes_in 0 175659 station_ip 37.27.35.123 175659 port 85 175659 unique_id port 175661 username rajaei 175661 mac 175661 bytes_out 0 175661 bytes_in 0 175661 station_ip 94.24.88.133 175661 port 83 175661 unique_id port 175661 remote_ip 10.8.0.218 175668 username aminvpn 175668 mac 175668 bytes_out 0 175668 bytes_in 0 175668 station_ip 37.129.152.49 175668 port 84 175668 unique_id port 175668 remote_ip 10.8.0.58 175669 username rashidi4690 175669 mac 175669 bytes_out 0 175669 bytes_in 0 175669 station_ip 46.225.214.4 175669 port 89 175669 unique_id port 175669 remote_ip 10.8.0.242 175670 username aminvpn 175670 mac 175670 bytes_out 1644 175670 bytes_in 9212 175670 station_ip 5.120.61.238 175670 port 85 175670 unique_id port 175670 remote_ip 10.8.0.58 175641 station_ip 37.129.246.153 175641 port 84 175641 unique_id port 175641 remote_ip 10.8.0.74 175644 username hamid 175644 kill_reason Relative expiration date has reached 175644 mac 175644 bytes_out 0 175644 bytes_in 0 175644 station_ip 37.129.231.128 175644 port 84 175644 unique_id port 175646 username hatami 175646 mac 175646 bytes_out 132121 175646 bytes_in 364091 175646 station_ip 37.27.29.202 175646 port 84 175646 unique_id port 175646 remote_ip 10.8.0.98 175647 username kalantary 175647 kill_reason Relative expiration date has reached 175647 mac 175647 bytes_out 0 175647 bytes_in 0 175647 station_ip 37.129.252.118 175647 port 87 175647 unique_id port 175657 username khademi 175657 mac 175657 bytes_out 3798908 175657 bytes_in 47985707 175657 station_ip 37.129.151.1 175657 port 74 175657 unique_id port 175657 remote_ip 10.8.0.14 175658 username alihosseini1 175658 mac 175658 bytes_out 1908774 175658 bytes_in 15236635 175658 station_ip 5.120.78.157 175658 port 83 175658 unique_id port 175658 remote_ip 10.8.0.234 175660 username mohammadjavad 175660 mac 175660 bytes_out 0 175660 bytes_in 0 175660 station_ip 37.129.244.232 175660 port 83 175660 unique_id port 175660 remote_ip 10.8.0.110 175663 username aminvpn 175663 mac 175663 bytes_out 192723 175663 bytes_in 503866 175663 station_ip 37.129.149.209 175663 port 88 175663 unique_id port 175663 remote_ip 10.8.0.58 175664 username aminvpn 175664 mac 175664 bytes_out 0 175664 bytes_in 0 175664 station_ip 5.120.56.251 175664 port 83 175664 unique_id port 175664 remote_ip 10.8.0.58 175666 username mohammadjavad 175666 mac 175666 bytes_out 4239 175666 bytes_in 7488 175666 station_ip 37.129.244.232 175666 port 85 175666 unique_id port 175666 remote_ip 10.8.0.110 175673 username rashidi4690 175673 mac 175673 bytes_out 37242 175673 bytes_in 83582 175673 station_ip 46.225.214.4 175673 port 84 175673 unique_id port 175673 remote_ip 10.8.0.242 175677 username kalantary6037 175677 mac 175677 bytes_out 202255 175677 bytes_in 1471619 175677 station_ip 46.225.214.4 175677 port 88 175677 unique_id port 175677 remote_ip 10.8.0.50 175680 username afarin1 175680 mac 175680 bytes_out 109378 175680 bytes_in 731725 175680 station_ip 31.59.34.146 175680 port 84 175680 unique_id port 175680 remote_ip 10.8.0.178 175682 username yaghobi 175682 mac 175682 bytes_out 327983 175682 bytes_in 604797 175682 station_ip 83.122.128.50 175682 port 87 175682 unique_id port 175682 remote_ip 10.8.0.138 175683 username aminvpn 175683 mac 175683 bytes_out 9179 175683 bytes_in 13396 175683 station_ip 37.129.152.49 175683 port 85 175683 unique_id port 175683 remote_ip 10.8.0.58 175685 username mohammadjavad 175685 mac 175685 bytes_out 0 175685 bytes_in 0 175685 station_ip 37.129.244.232 175685 port 85 175685 unique_id port 175685 remote_ip 10.8.0.110 175686 username yaghobi 175686 mac 175686 bytes_out 28216 175686 bytes_in 68708 175686 station_ip 83.122.128.50 175686 port 84 175686 unique_id port 175686 remote_ip 10.8.0.138 175689 username soleymani5056 175689 mac 175689 bytes_out 519480 175689 bytes_in 7122505 175689 station_ip 5.119.255.144 175689 port 92 175689 unique_id port 175689 remote_ip 10.8.0.226 175690 username tahmasebi 175690 mac 175690 bytes_out 0 175690 bytes_in 0 175690 station_ip 5.120.66.18 175690 port 90 175690 unique_id port 175690 remote_ip 10.8.0.126 175691 username barzegar 175691 mac 175691 bytes_out 0 175691 bytes_in 0 175691 station_ip 5.119.58.218 175691 port 80 175643 kill_reason Relative expiration date has reached 175643 mac 175643 bytes_out 0 175643 bytes_in 0 175643 station_ip 37.129.231.128 175643 port 84 175643 unique_id port 175645 username aminvpn 175645 mac 175645 bytes_out 589286 175645 bytes_in 6756287 175645 station_ip 5.120.138.151 175645 port 76 175645 unique_id port 175645 remote_ip 10.8.0.58 175648 username aminvpn 175648 mac 175648 bytes_out 0 175648 bytes_in 0 175648 station_ip 5.120.56.251 175648 port 84 175648 unique_id port 175648 remote_ip 10.8.0.58 175650 username yaghobi 175650 mac 175650 bytes_out 463607 175650 bytes_in 1092246 175650 station_ip 83.122.128.50 175650 port 85 175650 unique_id port 175650 remote_ip 10.8.0.138 175655 username hamid 175655 kill_reason Relative expiration date has reached 175655 mac 175655 bytes_out 0 175655 bytes_in 0 175655 station_ip 37.129.231.128 175655 port 89 175655 unique_id port 175662 username vanila 175662 kill_reason Relative expiration date has reached 175662 mac 175662 bytes_out 0 175662 bytes_in 0 175662 station_ip 37.27.35.123 175662 port 83 175662 unique_id port 175665 username aminvpn 175665 mac 175665 bytes_out 0 175665 bytes_in 0 175665 station_ip 5.120.56.251 175665 port 88 175665 unique_id port 175665 remote_ip 10.8.0.58 175667 username tahmasebi 175667 mac 175667 bytes_out 4528136 175667 bytes_in 6821319 175667 station_ip 5.120.66.18 175667 port 84 175667 unique_id port 175667 remote_ip 10.8.0.126 175672 username tahmasebi 175672 mac 175672 bytes_out 0 175672 bytes_in 0 175672 station_ip 5.120.66.18 175672 port 88 175672 unique_id port 175672 remote_ip 10.8.0.126 175678 username mohammadjavad 175678 mac 175678 bytes_out 0 175678 bytes_in 0 175678 station_ip 37.129.244.232 175678 port 90 175678 unique_id port 175678 remote_ip 10.8.0.110 175679 username hamid 175679 kill_reason Relative expiration date has reached 175679 mac 175679 bytes_out 0 175679 bytes_in 0 175679 station_ip 37.129.231.128 175679 port 88 175679 unique_id port 175681 username mostafa_es78 175681 mac 175681 bytes_out 383087 175681 bytes_in 2417315 175681 station_ip 113.203.17.254 175681 port 89 175681 unique_id port 175681 remote_ip 10.8.0.34 175684 username aminvpn 175684 mac 175684 bytes_out 0 175684 bytes_in 0 175684 station_ip 5.120.61.238 175684 port 87 175684 unique_id port 175684 remote_ip 10.8.0.58 175687 username mohammadjavad 175687 mac 175687 bytes_out 0 175687 bytes_in 0 175687 station_ip 37.129.244.232 175687 port 87 175687 unique_id port 175687 remote_ip 10.8.0.110 175688 username shadkam 175688 mac 175688 bytes_out 381809 175688 bytes_in 3015892 175688 station_ip 37.129.131.77 175688 port 91 175688 unique_id port 175688 remote_ip 10.8.0.74 175693 username soleymani5056 175693 mac 175693 bytes_out 91348 175693 bytes_in 890319 175693 station_ip 5.119.101.50 175693 port 89 175693 unique_id port 175693 remote_ip 10.8.0.226 175695 username godarzi 175695 kill_reason Another user logged on this global unique id 175695 mac 175695 bytes_out 0 175695 bytes_in 0 175695 station_ip 5.202.25.131 175695 port 75 175695 unique_id port 175697 username mirzaei 175697 kill_reason Relative expiration date has reached 175697 mac 175697 bytes_out 0 175697 bytes_in 0 175697 station_ip 5.120.54.23 175697 port 91 175697 unique_id port 175700 username khalili2 175700 kill_reason Another user logged on this global unique id 175700 mac 175700 bytes_out 0 175700 bytes_in 0 175700 station_ip 5.119.201.0 175700 port 83 175700 unique_id port 175700 remote_ip 10.8.0.118 175671 username mostafa_es78 175671 mac 175671 bytes_out 124299 175671 bytes_in 350252 175671 station_ip 113.203.17.254 175671 port 88 175671 unique_id port 175671 remote_ip 10.8.0.34 175674 username mosi 175674 kill_reason Another user logged on this global unique id 175674 mac 175674 bytes_out 0 175674 bytes_in 0 175674 station_ip 151.235.101.178 175674 port 76 175674 unique_id port 175674 remote_ip 10.8.0.142 175675 username hamid 175675 kill_reason Relative expiration date has reached 175675 mac 175675 bytes_out 0 175675 bytes_in 0 175675 station_ip 37.129.231.128 175675 port 91 175675 unique_id port 175676 username soleymani5056 175676 mac 175676 bytes_out 790201 175676 bytes_in 9911197 175676 station_ip 5.120.185.126 175676 port 85 175676 unique_id port 175676 remote_ip 10.8.0.226 175692 username mohammadjavad 175692 mac 175692 bytes_out 292623 175692 bytes_in 3337762 175692 station_ip 37.129.244.232 175692 port 87 175692 unique_id port 175692 remote_ip 10.8.0.110 175694 username mosi 175694 kill_reason Another user logged on this global unique id 175694 mac 175694 bytes_out 0 175694 bytes_in 0 175694 station_ip 151.235.101.178 175694 port 76 175694 unique_id port 175699 username mirzaei 175699 kill_reason Relative expiration date has reached 175699 mac 175699 bytes_out 0 175699 bytes_in 0 175699 station_ip 5.120.54.23 175699 port 91 175699 unique_id port 175704 username alihosseini1 175704 mac 175704 bytes_out 2734549 175704 bytes_in 26572360 175704 station_ip 5.120.78.157 175704 port 74 175704 unique_id port 175704 remote_ip 10.8.0.234 175705 username tahmasebi 175705 mac 175705 bytes_out 2107432 175705 bytes_in 5424648 175705 station_ip 5.120.66.18 175705 port 90 175705 unique_id port 175705 remote_ip 10.8.0.126 175708 username khalili2 175708 mac 175708 bytes_out 335176 175708 bytes_in 3717330 175708 station_ip 5.119.201.0 175708 port 83 175708 unique_id port 175708 remote_ip 10.8.0.118 175709 username barzegar 175709 mac 175709 bytes_out 30971 175709 bytes_in 170226 175709 station_ip 5.119.101.189 175709 port 84 175709 unique_id port 175709 remote_ip 10.8.0.10 175718 username aminvpn 175718 mac 175718 bytes_out 0 175718 bytes_in 0 175718 station_ip 37.129.152.49 175718 port 83 175718 unique_id port 175718 remote_ip 10.8.0.58 175722 username yaghobi 175722 mac 175722 bytes_out 2488823 175722 bytes_in 16842669 175722 station_ip 113.203.50.81 175722 port 85 175722 unique_id port 175722 remote_ip 10.8.0.138 175724 username majidsarmast 175724 mac 175724 bytes_out 3633156 175724 bytes_in 38001240 175724 station_ip 37.129.187.30 175724 port 89 175724 unique_id port 175724 remote_ip 10.8.0.170 175725 username soleymani5056 175725 mac 175725 bytes_out 113629 175725 bytes_in 553497 175725 station_ip 5.120.114.191 175725 port 85 175725 unique_id port 175725 remote_ip 10.8.0.226 175730 username alihosseini1 175730 mac 175730 bytes_out 0 175730 bytes_in 0 175730 station_ip 5.120.78.157 175730 port 86 175730 unique_id port 175730 remote_ip 10.8.0.234 175735 username aminvpn 175735 mac 175735 bytes_out 0 175735 bytes_in 0 175735 station_ip 5.120.61.238 175735 port 86 175735 unique_id port 175735 remote_ip 10.8.0.58 175738 username barzegar 175738 kill_reason Another user logged on this global unique id 175738 mac 175738 bytes_out 0 175738 bytes_in 0 175738 station_ip 5.119.37.123 175738 port 80 175738 unique_id port 175738 remote_ip 10.8.0.10 175739 username rashidi4690 175739 mac 175739 bytes_out 3405055 175739 bytes_in 20508924 175739 station_ip 5.119.118.107 175691 unique_id port 175696 username rahim 175696 mac 175696 bytes_out 543212 175696 bytes_in 4432681 175696 station_ip 5.119.255.241 175696 port 88 175696 unique_id port 175696 remote_ip 10.8.0.134 175698 username mirzaei 175698 kill_reason Relative expiration date has reached 175698 mac 175698 bytes_out 0 175698 bytes_in 0 175698 station_ip 5.120.54.23 175698 port 91 175698 unique_id port 175701 username barzegar 175701 mac 175701 bytes_out 923445 175701 bytes_in 8775823 175701 station_ip 5.120.86.156 175701 port 80 175701 unique_id port 175701 remote_ip 10.8.0.10 175702 username aminvpn 175702 mac 175702 bytes_out 126266 175702 bytes_in 323200 175702 station_ip 37.129.152.49 175702 port 84 175702 unique_id port 175702 remote_ip 10.8.0.58 175706 username khalili2 175706 mac 175706 bytes_out 0 175706 bytes_in 0 175706 station_ip 5.119.201.0 175706 port 83 175706 unique_id port 175707 username barzegar 175707 mac 175707 bytes_out 2971 175707 bytes_in 5750 175707 station_ip 5.120.86.156 175707 port 74 175707 unique_id port 175707 remote_ip 10.8.0.10 175711 username barzegar 175711 mac 175711 bytes_out 108274 175711 bytes_in 1925557 175711 station_ip 5.120.158.96 175711 port 91 175711 unique_id port 175711 remote_ip 10.8.0.10 175713 username khalili2 175713 mac 175713 bytes_out 404712 175713 bytes_in 5370270 175713 station_ip 5.119.201.0 175713 port 90 175713 unique_id port 175713 remote_ip 10.8.0.118 175715 username aminvpn 175715 mac 175715 bytes_out 0 175715 bytes_in 0 175715 station_ip 5.120.61.238 175715 port 84 175715 unique_id port 175715 remote_ip 10.8.0.58 175717 username aminvpn 175717 mac 175717 bytes_out 0 175717 bytes_in 0 175717 station_ip 5.119.19.146 175717 port 80 175717 unique_id port 175717 remote_ip 10.8.0.58 175719 username aminvpn 175719 mac 175719 bytes_out 0 175719 bytes_in 0 175719 station_ip 5.120.61.238 175719 port 80 175719 unique_id port 175719 remote_ip 10.8.0.58 175721 username aminvpn 175721 mac 175721 bytes_out 0 175721 bytes_in 0 175721 station_ip 5.120.61.238 175721 port 83 175721 unique_id port 175721 remote_ip 10.8.0.58 175727 username malekpoir 175727 mac 175727 bytes_out 4402407 175727 bytes_in 29434758 175727 station_ip 5.120.54.192 175727 port 86 175727 unique_id port 175727 remote_ip 10.8.0.18 175731 username soleymani5056 175731 mac 175731 bytes_out 79671 175731 bytes_in 169340 175731 station_ip 5.119.95.37 175731 port 88 175731 unique_id port 175731 remote_ip 10.8.0.226 175732 username malekpoir 175732 mac 175732 bytes_out 13534 175732 bytes_in 18223 175732 station_ip 5.120.54.192 175732 port 83 175732 unique_id port 175732 remote_ip 10.8.0.18 175733 username aminvpn 175733 mac 175733 bytes_out 0 175733 bytes_in 0 175733 station_ip 5.120.61.238 175733 port 88 175733 unique_id port 175733 remote_ip 10.8.0.58 175734 username malekpoir 175734 mac 175734 bytes_out 0 175734 bytes_in 0 175734 station_ip 5.120.54.192 175734 port 86 175734 unique_id port 175734 remote_ip 10.8.0.18 175736 username hajghani 175736 mac 175736 bytes_out 973835 175736 bytes_in 5299802 175736 station_ip 89.32.99.238 175736 port 84 175736 unique_id port 175736 remote_ip 10.8.0.102 175740 username mosi 175740 mac 175740 bytes_out 0 175740 bytes_in 0 175740 station_ip 151.235.101.178 175740 port 76 175740 unique_id port 175742 username tahmasebi 175742 mac 175742 bytes_out 244162 175742 bytes_in 2242690 175742 station_ip 5.120.66.18 175703 username aminvpn 175703 mac 175703 bytes_out 0 175703 bytes_in 0 175703 station_ip 5.120.61.238 175703 port 80 175703 unique_id port 175703 remote_ip 10.8.0.58 175710 username houshang 175710 mac 175710 bytes_out 171781 175710 bytes_in 1220122 175710 station_ip 5.119.171.5 175710 port 83 175710 unique_id port 175710 remote_ip 10.8.0.82 175712 username soleymani5056 175712 mac 175712 bytes_out 658254 175712 bytes_in 6751305 175712 station_ip 5.119.144.143 175712 port 88 175712 unique_id port 175712 remote_ip 10.8.0.226 175714 username aminvpn 175714 mac 175714 bytes_out 723864 175714 bytes_in 9130334 175714 station_ip 37.129.152.49 175714 port 80 175714 unique_id port 175714 remote_ip 10.8.0.58 175716 username alihosseini1 175716 mac 175716 bytes_out 0 175716 bytes_in 0 175716 station_ip 5.120.78.157 175716 port 83 175716 unique_id port 175716 remote_ip 10.8.0.234 175720 username aminvpn 175720 mac 175720 bytes_out 0 175720 bytes_in 0 175720 station_ip 5.119.19.146 175720 port 83 175720 unique_id port 175720 remote_ip 10.8.0.58 175723 username aminvpn 175723 mac 175723 bytes_out 538464 175723 bytes_in 5192899 175723 station_ip 37.129.152.49 175723 port 84 175723 unique_id port 175723 remote_ip 10.8.0.58 175726 username mohammadjavad 175726 mac 175726 bytes_out 301569 175726 bytes_in 5055632 175726 station_ip 37.129.244.232 175726 port 84 175726 unique_id port 175726 remote_ip 10.8.0.110 175728 username yaghobi 175728 mac 175728 bytes_out 212824 175728 bytes_in 689554 175728 station_ip 37.129.173.10 175728 port 83 175728 unique_id port 175728 remote_ip 10.8.0.138 175729 username tahmasebi 175729 mac 175729 bytes_out 2793571 175729 bytes_in 17418830 175729 station_ip 5.120.66.18 175729 port 74 175729 unique_id port 175729 remote_ip 10.8.0.126 175737 username soleymani5056 175737 mac 175737 bytes_out 34754 175737 bytes_in 21038 175737 station_ip 5.120.74.227 175737 port 83 175737 unique_id port 175737 remote_ip 10.8.0.226 175743 username tahmasebi 175743 mac 175743 bytes_out 0 175743 bytes_in 0 175743 station_ip 5.119.180.185 175743 port 85 175743 unique_id port 175743 remote_ip 10.8.0.126 175749 username afarin1 175749 mac 175749 bytes_out 246668 175749 bytes_in 1540687 175749 station_ip 31.59.34.146 175749 port 84 175749 unique_id port 175749 remote_ip 10.8.0.178 175752 username amin.saeedi 175752 mac 175752 bytes_out 71882 175752 bytes_in 199444 175752 station_ip 31.56.115.161 175752 port 74 175752 unique_id port 175752 remote_ip 10.8.0.90 175754 username tahmasebi 175754 mac 175754 bytes_out 39394 175754 bytes_in 195970 175754 station_ip 5.119.180.185 175754 port 76 175754 unique_id port 175754 remote_ip 10.8.0.126 175761 username tahmasebi 175761 mac 175761 bytes_out 12678 175761 bytes_in 21388 175761 station_ip 5.119.180.185 175761 port 76 175761 unique_id port 175761 remote_ip 10.8.0.126 175764 username aminvpn 175764 mac 175764 bytes_out 1244604 175764 bytes_in 9481309 175764 station_ip 5.120.61.238 175764 port 74 175764 unique_id port 175764 remote_ip 10.8.0.58 175766 username amin.saeedi 175766 mac 175766 bytes_out 1598437 175766 bytes_in 9697701 175766 station_ip 31.56.115.161 175766 port 84 175766 unique_id port 175766 remote_ip 10.8.0.90 175771 username aminvpn 175771 mac 175771 bytes_out 244444 175771 bytes_in 2174901 175771 station_ip 5.120.61.238 175771 port 76 175771 unique_id port 175771 remote_ip 10.8.0.58 175772 username houshang 175772 mac 175739 port 85 175739 unique_id port 175739 remote_ip 10.8.0.242 175741 username mostafa_es78 175741 mac 175741 bytes_out 1504227 175741 bytes_in 14913755 175741 station_ip 113.203.24.130 175741 port 74 175741 unique_id port 175741 remote_ip 10.8.0.34 175744 username alihosseini1 175744 mac 175744 bytes_out 31244 175744 bytes_in 18290 175744 station_ip 5.120.78.157 175744 port 74 175744 unique_id port 175744 remote_ip 10.8.0.234 175745 username tahmasebi 175745 mac 175745 bytes_out 0 175745 bytes_in 0 175745 station_ip 5.119.180.185 175745 port 74 175745 unique_id port 175745 remote_ip 10.8.0.126 175746 username tahmasebi 175746 mac 175746 bytes_out 0 175746 bytes_in 0 175746 station_ip 5.119.180.185 175746 port 74 175746 unique_id port 175746 remote_ip 10.8.0.126 175751 username kalantary6037 175751 mac 175751 bytes_out 6606380 175751 bytes_in 43624948 175751 station_ip 37.129.252.118 175751 port 87 175751 unique_id port 175751 remote_ip 10.8.0.50 175753 username aminvpn 175753 mac 175753 bytes_out 0 175753 bytes_in 0 175753 station_ip 5.120.61.238 175753 port 84 175753 unique_id port 175753 remote_ip 10.8.0.58 175755 username rashidi4690 175755 kill_reason Another user logged on this global unique id 175755 mac 175755 bytes_out 0 175755 bytes_in 0 175755 station_ip 5.119.29.8 175755 port 86 175755 unique_id port 175755 remote_ip 10.8.0.242 175756 username houshang 175756 mac 175756 bytes_out 46707 175756 bytes_in 227664 175756 station_ip 5.119.221.165 175756 port 83 175756 unique_id port 175756 remote_ip 10.8.0.82 175757 username amin.saeedi 175757 mac 175757 bytes_out 39004 175757 bytes_in 25822 175757 station_ip 31.56.115.161 175757 port 76 175757 unique_id port 175757 remote_ip 10.8.0.90 175765 username aminvpn 175765 mac 175765 bytes_out 0 175765 bytes_in 0 175765 station_ip 5.120.61.238 175765 port 76 175765 unique_id port 175765 remote_ip 10.8.0.58 175767 username kordestani 175767 mac 175767 bytes_out 0 175767 bytes_in 0 175767 station_ip 37.129.176.222 175767 port 83 175767 unique_id port 175767 remote_ip 10.8.0.130 175773 username tahmasebi 175773 mac 175773 bytes_out 0 175773 bytes_in 0 175773 station_ip 5.119.180.185 175773 port 87 175773 unique_id port 175773 remote_ip 10.8.0.126 175786 username rezaei 175786 mac 175786 bytes_out 2875 175786 bytes_in 7611 175786 station_ip 5.119.213.115 175786 port 80 175786 unique_id port 175786 remote_ip 10.8.0.198 175789 username barzegar 175789 mac 175789 bytes_out 57742 175789 bytes_in 394694 175789 station_ip 5.119.37.123 175789 port 79 175789 unique_id port 175789 remote_ip 10.8.0.10 175797 username tahmasebi 175797 mac 175797 bytes_out 1997 175797 bytes_in 3739 175797 station_ip 5.119.180.185 175797 port 91 175797 unique_id port 175797 remote_ip 10.8.0.126 175799 username khalili2 175799 mac 175799 bytes_out 623494 175799 bytes_in 6736813 175799 station_ip 5.119.201.0 175799 port 85 175799 unique_id port 175799 remote_ip 10.8.0.118 175804 username rashidi4690 175804 kill_reason Another user logged on this global unique id 175804 mac 175804 bytes_out 0 175804 bytes_in 0 175804 station_ip 5.119.29.8 175804 port 86 175804 unique_id port 175813 username godarzi 175813 mac 175813 bytes_out 0 175813 bytes_in 0 175813 station_ip 5.202.25.131 175813 port 90 175813 unique_id port 175813 remote_ip 10.8.0.38 175814 username barzegar 175814 mac 175814 bytes_out 0 175814 bytes_in 0 175814 station_ip 5.119.37.123 175814 port 90 175742 port 83 175742 unique_id port 175742 remote_ip 10.8.0.126 175747 username mostafa_es78 175747 mac 175747 bytes_out 16773 175747 bytes_in 17066 175747 station_ip 113.203.24.130 175747 port 76 175747 unique_id port 175747 remote_ip 10.8.0.34 175748 username mostafa_es78 175748 mac 175748 bytes_out 7716 175748 bytes_in 6802 175748 station_ip 113.203.24.130 175748 port 74 175748 unique_id port 175748 remote_ip 10.8.0.34 175750 username yaghobi 175750 mac 175750 bytes_out 1207416 175750 bytes_in 10946363 175750 station_ip 37.129.173.10 175750 port 83 175750 unique_id port 175750 remote_ip 10.8.0.138 175758 username tahmasebi 175758 mac 175758 bytes_out 5000 175758 bytes_in 13312 175758 station_ip 5.119.180.185 175758 port 83 175758 unique_id port 175758 remote_ip 10.8.0.126 175759 username barzegar 175759 kill_reason Another user logged on this global unique id 175759 mac 175759 bytes_out 0 175759 bytes_in 0 175759 station_ip 5.119.37.123 175759 port 80 175759 unique_id port 175760 username tahmasebi 175760 mac 175760 bytes_out 0 175760 bytes_in 0 175760 station_ip 5.119.180.185 175760 port 76 175760 unique_id port 175760 remote_ip 10.8.0.126 175762 username godarzi 175762 mac 175762 bytes_out 0 175762 bytes_in 0 175762 station_ip 5.202.25.131 175762 port 75 175762 unique_id port 175763 username mohammadjavad 175763 mac 175763 bytes_out 0 175763 bytes_in 0 175763 station_ip 37.129.244.232 175763 port 76 175763 unique_id port 175763 remote_ip 10.8.0.110 175768 username hamid.e 175768 kill_reason Wrong password 175768 mac 175768 bytes_out 0 175768 bytes_in 0 175768 station_ip 31.56.115.161 175768 port 83 175768 unique_id port 175769 username amin.saeedi 175769 mac 175769 bytes_out 88494 175769 bytes_in 291067 175769 station_ip 31.56.115.161 175769 port 74 175769 unique_id port 175769 remote_ip 10.8.0.90 175770 username hosseine 175770 kill_reason Another user logged on this global unique id 175770 mac 175770 bytes_out 0 175770 bytes_in 0 175770 station_ip 37.129.180.177 175770 port 79 175770 unique_id port 175774 username hamid.e 175774 mac 175774 bytes_out 71548 175774 bytes_in 95910 175774 station_ip 31.56.115.161 175774 port 74 175774 unique_id port 175774 remote_ip 10.8.0.78 175775 username mohammadjavad 175775 mac 175775 bytes_out 0 175775 bytes_in 0 175775 station_ip 37.129.244.232 175775 port 74 175775 unique_id port 175775 remote_ip 10.8.0.110 175776 username sabaghnezhad 175776 mac 175776 bytes_out 18700 175776 bytes_in 23481 175776 station_ip 151.235.109.1 175776 port 85 175776 unique_id port 175776 remote_ip 10.8.0.66 175779 username hosseine 175779 mac 175779 bytes_out 0 175779 bytes_in 0 175779 station_ip 37.129.180.177 175779 port 79 175779 unique_id port 175780 username aminvpn 175780 mac 175780 bytes_out 0 175780 bytes_in 0 175780 station_ip 5.120.61.238 175780 port 79 175780 unique_id port 175780 remote_ip 10.8.0.58 175781 username barzegar 175781 mac 175781 bytes_out 0 175781 bytes_in 0 175781 station_ip 5.119.37.123 175781 port 80 175781 unique_id port 175782 username mohammadjavad 175782 mac 175782 bytes_out 270421 175782 bytes_in 4930054 175782 station_ip 37.129.244.232 175782 port 79 175782 unique_id port 175782 remote_ip 10.8.0.110 175784 username tahmorsi 175784 mac 175784 bytes_out 2346992 175784 bytes_in 33197881 175784 station_ip 86.57.69.206 175784 port 75 175784 unique_id port 175784 remote_ip 10.8.0.238 175785 username tahmasebi 175785 mac 175772 bytes_out 49120 175772 bytes_in 23544 175772 station_ip 5.119.221.165 175772 port 83 175772 unique_id port 175772 remote_ip 10.8.0.82 175777 username tahmasebi 175777 mac 175777 bytes_out 0 175777 bytes_in 0 175777 station_ip 5.119.180.185 175777 port 74 175777 unique_id port 175777 remote_ip 10.8.0.126 175778 username tahmasebi 175778 mac 175778 bytes_out 25965 175778 bytes_in 112024 175778 station_ip 5.119.180.185 175778 port 74 175778 unique_id port 175778 remote_ip 10.8.0.126 175783 username rashidi4690 175783 kill_reason Another user logged on this global unique id 175783 mac 175783 bytes_out 0 175783 bytes_in 0 175783 station_ip 5.119.29.8 175783 port 86 175783 unique_id port 175787 username tahmasebi 175787 mac 175787 bytes_out 0 175787 bytes_in 0 175787 station_ip 5.119.180.185 175787 port 80 175787 unique_id port 175787 remote_ip 10.8.0.126 175792 username barzegar 175792 kill_reason Maximum check online fails reached 175792 mac 175792 bytes_out 0 175792 bytes_in 0 175792 station_ip 5.119.37.123 175792 port 79 175792 unique_id port 175794 username rashidi4690 175794 kill_reason Another user logged on this global unique id 175794 mac 175794 bytes_out 0 175794 bytes_in 0 175794 station_ip 5.119.29.8 175794 port 86 175794 unique_id port 175796 username barzegar 175796 mac 175796 bytes_out 4292 175796 bytes_in 6812 175796 station_ip 5.119.37.123 175796 port 87 175796 unique_id port 175796 remote_ip 10.8.0.10 175798 username barzegar 175798 mac 175798 bytes_out 31607 175798 bytes_in 43811 175798 station_ip 5.119.37.123 175798 port 87 175798 unique_id port 175798 remote_ip 10.8.0.10 175800 username godarzi 175800 mac 175800 bytes_out 1314057 175800 bytes_in 11233901 175800 station_ip 5.202.25.131 175800 port 84 175800 unique_id port 175800 remote_ip 10.8.0.38 175805 username tahmasebi 175805 mac 175805 bytes_out 0 175805 bytes_in 0 175805 station_ip 5.119.180.185 175805 port 87 175805 unique_id port 175805 remote_ip 10.8.0.126 175806 username tahmasebi 175806 mac 175806 bytes_out 0 175806 bytes_in 0 175806 station_ip 5.119.180.185 175806 port 87 175806 unique_id port 175806 remote_ip 10.8.0.126 175807 username rahim 175807 mac 175807 bytes_out 0 175807 bytes_in 0 175807 station_ip 5.119.255.241 175807 port 75 175807 unique_id port 175808 username rezaei 175808 mac 175808 bytes_out 2436605 175808 bytes_in 20805191 175808 station_ip 5.119.213.115 175808 port 90 175808 unique_id port 175808 remote_ip 10.8.0.198 175809 username rashidi4690 175809 mac 175809 bytes_out 0 175809 bytes_in 0 175809 station_ip 5.119.29.8 175809 port 86 175809 unique_id port 175812 username tahmasebi 175812 mac 175812 bytes_out 0 175812 bytes_in 0 175812 station_ip 5.119.180.185 175812 port 92 175812 unique_id port 175812 remote_ip 10.8.0.126 175816 username jafari 175816 kill_reason Another user logged on this global unique id 175816 mac 175816 bytes_out 0 175816 bytes_in 0 175816 station_ip 37.137.24.12 175816 port 84 175816 unique_id port 175816 remote_ip 10.8.0.86 175818 username tahmasebi 175818 mac 175818 bytes_out 226183 175818 bytes_in 1483866 175818 station_ip 5.119.180.185 175818 port 90 175818 unique_id port 175818 remote_ip 10.8.0.126 175819 username barzegar 175819 mac 175819 bytes_out 0 175819 bytes_in 0 175819 station_ip 5.119.37.123 175819 port 89 175819 unique_id port 175819 remote_ip 10.8.0.10 175821 username morteza 175821 kill_reason Another user logged on this global unique id 175821 mac 175821 bytes_out 0 175785 bytes_out 0 175785 bytes_in 0 175785 station_ip 5.119.180.185 175785 port 79 175785 unique_id port 175785 remote_ip 10.8.0.126 175788 username aminvpn 175788 mac 175788 bytes_out 0 175788 bytes_in 0 175788 station_ip 5.120.61.238 175788 port 85 175788 unique_id port 175788 remote_ip 10.8.0.58 175790 username tahmasebi 175790 mac 175790 bytes_out 0 175790 bytes_in 0 175790 station_ip 5.119.180.185 175790 port 85 175790 unique_id port 175790 remote_ip 10.8.0.126 175791 username tahmasebi 175791 mac 175791 bytes_out 0 175791 bytes_in 0 175791 station_ip 5.119.180.185 175791 port 85 175791 unique_id port 175791 remote_ip 10.8.0.126 175793 username khalili2 175793 mac 175793 bytes_out 568310 175793 bytes_in 6978041 175793 station_ip 5.119.201.0 175793 port 83 175793 unique_id port 175793 remote_ip 10.8.0.118 175795 username mehdizare 175795 mac 175795 bytes_out 1274967 175795 bytes_in 7473490 175795 station_ip 83.122.126.173 175795 port 80 175795 unique_id port 175795 remote_ip 10.8.0.210 175801 username jafari 175801 mac 175801 bytes_out 1108831 175801 bytes_in 5344301 175801 station_ip 37.137.24.12 175801 port 80 175801 unique_id port 175801 remote_ip 10.8.0.86 175802 username mehdizare 175802 mac 175802 bytes_out 1408862 175802 bytes_in 12752141 175802 station_ip 83.122.126.173 175802 port 89 175802 unique_id port 175802 remote_ip 10.8.0.210 175803 username rahim 175803 kill_reason Another user logged on this global unique id 175803 mac 175803 bytes_out 0 175803 bytes_in 0 175803 station_ip 5.119.255.241 175803 port 75 175803 unique_id port 175803 remote_ip 10.8.0.134 175810 username tahmasebi 175810 mac 175810 bytes_out 2103 175810 bytes_in 4388 175810 station_ip 5.119.180.185 175810 port 90 175810 unique_id port 175810 remote_ip 10.8.0.126 175811 username aminvpn 175811 mac 175811 bytes_out 0 175811 bytes_in 0 175811 station_ip 5.120.61.238 175811 port 90 175811 unique_id port 175811 remote_ip 10.8.0.58 175815 username tahmasebi 175815 mac 175815 bytes_out 0 175815 bytes_in 0 175815 station_ip 5.119.180.185 175815 port 90 175815 unique_id port 175815 remote_ip 10.8.0.126 175817 username houshang 175817 mac 175817 bytes_out 1542334 175817 bytes_in 9280971 175817 station_ip 5.119.221.165 175817 port 89 175817 unique_id port 175817 remote_ip 10.8.0.82 175820 username mahdiyehalizadeh 175820 mac 175820 bytes_out 753690 175820 bytes_in 1787498 175820 station_ip 5.120.97.124 175820 port 75 175820 unique_id port 175820 remote_ip 10.8.0.114 175822 username kalantary6037 175822 kill_reason Another user logged on this global unique id 175822 mac 175822 bytes_out 0 175822 bytes_in 0 175822 station_ip 37.129.132.106 175822 port 76 175822 unique_id port 175822 remote_ip 10.8.0.50 175823 username fezealinaghi 175823 kill_reason Another user logged on this global unique id 175823 mac 175823 bytes_out 0 175823 bytes_in 0 175823 station_ip 37.129.231.164 175823 port 86 175823 unique_id port 175823 remote_ip 10.8.0.202 175824 username mahdiyehalizadeh 175824 mac 175824 bytes_out 93209 175824 bytes_in 311837 175824 station_ip 5.120.97.124 175824 port 89 175824 unique_id port 175824 remote_ip 10.8.0.114 175825 username mohammadjavad 175825 mac 175825 bytes_out 0 175825 bytes_in 0 175825 station_ip 37.129.244.232 175825 port 89 175825 unique_id port 175825 remote_ip 10.8.0.110 175831 username soleymani5056 175831 mac 175831 bytes_out 28911 175831 bytes_in 39556 175831 station_ip 5.120.52.183 175831 port 87 175831 unique_id port 175814 unique_id port 175814 remote_ip 10.8.0.10 175826 username rahim 175826 mac 175826 bytes_out 2873780 175826 bytes_in 34490534 175826 station_ip 5.119.255.241 175826 port 87 175826 unique_id port 175826 remote_ip 10.8.0.134 175828 username godarzi 175828 mac 175828 bytes_out 0 175828 bytes_in 0 175828 station_ip 5.202.25.131 175828 port 92 175828 unique_id port 175828 remote_ip 10.8.0.38 175829 username barzegar 175829 mac 175829 bytes_out 0 175829 bytes_in 0 175829 station_ip 5.119.37.123 175829 port 92 175829 unique_id port 175829 remote_ip 10.8.0.10 175832 username rashidi4690 175832 kill_reason Another user logged on this global unique id 175832 mac 175832 bytes_out 0 175832 bytes_in 0 175832 station_ip 37.129.179.144 175832 port 91 175832 unique_id port 175832 remote_ip 10.8.0.242 175835 username barzegar 175835 mac 175835 bytes_out 0 175835 bytes_in 0 175835 station_ip 5.119.37.123 175835 port 84 175835 unique_id port 175835 remote_ip 10.8.0.10 175836 username aminvpn 175836 mac 175836 bytes_out 0 175836 bytes_in 0 175836 station_ip 5.120.61.238 175836 port 84 175836 unique_id port 175836 remote_ip 10.8.0.58 175838 username morteza 175838 mac 175838 bytes_out 0 175838 bytes_in 0 175838 station_ip 37.129.254.127 175838 port 85 175838 unique_id port 175842 username morteza 175842 mac 175842 bytes_out 0 175842 bytes_in 0 175842 station_ip 37.129.254.127 175842 port 85 175842 unique_id port 175842 remote_ip 10.8.0.174 175846 username barzegar 175846 mac 175846 bytes_out 0 175846 bytes_in 0 175846 station_ip 5.119.37.123 175846 port 87 175846 unique_id port 175846 remote_ip 10.8.0.10 175847 username aminvpn 175847 mac 175847 bytes_out 169447 175847 bytes_in 1636912 175847 station_ip 5.120.61.238 175847 port 85 175847 unique_id port 175847 remote_ip 10.8.0.58 175850 username kalantary6037 175850 kill_reason Another user logged on this global unique id 175850 mac 175850 bytes_out 0 175850 bytes_in 0 175850 station_ip 37.129.132.106 175850 port 76 175850 unique_id port 175851 username majidsarmast 175851 mac 175851 bytes_out 4291177 175851 bytes_in 49863183 175851 station_ip 86.57.55.239 175851 port 75 175851 unique_id port 175851 remote_ip 10.8.0.170 175855 username mohammadmahdi 175855 kill_reason Another user logged on this global unique id 175855 mac 175855 bytes_out 0 175855 bytes_in 0 175855 station_ip 5.120.50.124 175855 port 83 175855 unique_id port 175859 username mirzaei 175859 kill_reason Relative expiration date has reached 175859 mac 175859 bytes_out 0 175859 bytes_in 0 175859 station_ip 5.120.54.23 175859 port 90 175859 unique_id port 175866 username aminvpn 175866 mac 175866 bytes_out 0 175866 bytes_in 0 175866 station_ip 5.120.61.238 175866 port 85 175866 unique_id port 175866 remote_ip 10.8.0.58 175868 username morteza 175868 kill_reason Maximum check online fails reached 175868 mac 175868 bytes_out 0 175868 bytes_in 0 175868 station_ip 37.129.254.127 175868 port 85 175868 unique_id port 175870 username morteza 175870 mac 175870 bytes_out 0 175870 bytes_in 0 175870 station_ip 37.129.254.127 175870 port 91 175870 unique_id port 175870 remote_ip 10.8.0.174 175873 username malekpoir 175873 kill_reason Another user logged on this global unique id 175873 mac 175873 bytes_out 0 175873 bytes_in 0 175873 station_ip 5.120.54.192 175873 port 88 175873 unique_id port 175873 remote_ip 10.8.0.18 175879 username barzegar 175879 mac 175879 bytes_out 0 175879 bytes_in 0 175879 station_ip 5.119.37.123 175879 port 76 175821 bytes_in 0 175821 station_ip 37.129.254.127 175821 port 85 175821 unique_id port 175821 remote_ip 10.8.0.174 175827 username aminvpn 175827 mac 175827 bytes_out 0 175827 bytes_in 0 175827 station_ip 5.120.61.238 175827 port 87 175827 unique_id port 175827 remote_ip 10.8.0.58 175830 username houshang 175830 mac 175830 bytes_out 126097 175830 bytes_in 213447 175830 station_ip 5.119.221.165 175830 port 90 175830 unique_id port 175830 remote_ip 10.8.0.82 175837 username aminvpn 175837 mac 175837 bytes_out 0 175837 bytes_in 0 175837 station_ip 5.120.61.238 175837 port 84 175837 unique_id port 175837 remote_ip 10.8.0.58 175841 username barzegar 175841 mac 175841 bytes_out 0 175841 bytes_in 0 175841 station_ip 5.119.37.123 175841 port 84 175841 unique_id port 175841 remote_ip 10.8.0.10 175844 username rashidi4690 175844 kill_reason Another user logged on this global unique id 175844 mac 175844 bytes_out 0 175844 bytes_in 0 175844 station_ip 37.129.179.144 175844 port 91 175844 unique_id port 175852 username morteza 175852 mac 175852 bytes_out 0 175852 bytes_in 0 175852 station_ip 37.129.254.127 175852 port 75 175852 unique_id port 175852 remote_ip 10.8.0.174 175856 username morteza 175856 mac 175856 bytes_out 0 175856 bytes_in 0 175856 station_ip 37.129.254.127 175856 port 75 175856 unique_id port 175856 remote_ip 10.8.0.174 175857 username morteza 175857 mac 175857 bytes_out 0 175857 bytes_in 0 175857 station_ip 37.129.254.127 175857 port 75 175857 unique_id port 175857 remote_ip 10.8.0.174 175861 username fezealinaghi 175861 kill_reason Another user logged on this global unique id 175861 mac 175861 bytes_out 0 175861 bytes_in 0 175861 station_ip 37.129.231.164 175861 port 86 175861 unique_id port 175862 username mirzaei 175862 kill_reason Relative expiration date has reached 175862 mac 175862 bytes_out 0 175862 bytes_in 0 175862 station_ip 5.120.54.23 175862 port 75 175862 unique_id port 175863 username aminvpn 175863 mac 175863 bytes_out 1904118 175863 bytes_in 19167673 175863 station_ip 5.120.61.238 175863 port 85 175863 unique_id port 175863 remote_ip 10.8.0.58 175869 username morteza 175869 mac 175869 bytes_out 0 175869 bytes_in 0 175869 station_ip 37.129.254.127 175869 port 91 175869 unique_id port 175869 remote_ip 10.8.0.174 175871 username mohammadjavad 175871 mac 175871 bytes_out 0 175871 bytes_in 0 175871 station_ip 37.129.244.232 175871 port 91 175871 unique_id port 175871 remote_ip 10.8.0.110 175876 username kalantary6037 175876 mac 175876 bytes_out 0 175876 bytes_in 0 175876 station_ip 37.129.132.106 175876 port 76 175876 unique_id port 175884 username aminvpn 175884 mac 175884 bytes_out 0 175884 bytes_in 0 175884 station_ip 5.120.61.238 175884 port 90 175884 unique_id port 175884 remote_ip 10.8.0.58 175885 username barzegar 175885 mac 175885 bytes_out 8694 175885 bytes_in 10992 175885 station_ip 5.119.37.123 175885 port 84 175885 unique_id port 175885 remote_ip 10.8.0.10 175886 username mohammadmahdi 175886 kill_reason Another user logged on this global unique id 175886 mac 175886 bytes_out 0 175886 bytes_in 0 175886 station_ip 5.120.50.124 175886 port 83 175886 unique_id port 175888 username mohammadjavad 175888 mac 175888 bytes_out 0 175888 bytes_in 0 175888 station_ip 37.129.244.232 175888 port 94 175888 unique_id port 175888 remote_ip 10.8.0.110 175890 username mosi 175890 kill_reason Another user logged on this global unique id 175890 mac 175890 bytes_out 0 175890 bytes_in 0 175831 remote_ip 10.8.0.226 175833 username mohammadmahdi 175833 kill_reason Another user logged on this global unique id 175833 mac 175833 bytes_out 0 175833 bytes_in 0 175833 station_ip 5.120.50.124 175833 port 83 175833 unique_id port 175833 remote_ip 10.8.0.30 175834 username jafari 175834 mac 175834 bytes_out 0 175834 bytes_in 0 175834 station_ip 37.137.24.12 175834 port 84 175834 unique_id port 175839 username mohammadjavad 175839 mac 175839 bytes_out 0 175839 bytes_in 0 175839 station_ip 37.129.244.232 175839 port 90 175839 unique_id port 175839 remote_ip 10.8.0.110 175840 username hajghani 175840 mac 175840 bytes_out 733127 175840 bytes_in 7192961 175840 station_ip 89.32.99.238 175840 port 87 175840 unique_id port 175840 remote_ip 10.8.0.102 175843 username mohammadjavad 175843 mac 175843 bytes_out 0 175843 bytes_in 0 175843 station_ip 37.129.244.232 175843 port 90 175843 unique_id port 175843 remote_ip 10.8.0.110 175845 username fezealinaghi 175845 kill_reason Another user logged on this global unique id 175845 mac 175845 bytes_out 0 175845 bytes_in 0 175845 station_ip 37.129.231.164 175845 port 86 175845 unique_id port 175848 username aminvpn 175848 mac 175848 bytes_out 0 175848 bytes_in 0 175848 station_ip 5.120.61.238 175848 port 87 175848 unique_id port 175848 remote_ip 10.8.0.58 175849 username aminvpn 175849 mac 175849 bytes_out 0 175849 bytes_in 0 175849 station_ip 5.120.61.238 175849 port 85 175849 unique_id port 175849 remote_ip 10.8.0.58 175853 username morteza 175853 mac 175853 bytes_out 0 175853 bytes_in 0 175853 station_ip 37.129.254.127 175853 port 75 175853 unique_id port 175853 remote_ip 10.8.0.174 175854 username rashidi4690 175854 mac 175854 bytes_out 0 175854 bytes_in 0 175854 station_ip 37.129.179.144 175854 port 91 175854 unique_id port 175858 username morteza 175858 mac 175858 bytes_out 0 175858 bytes_in 0 175858 station_ip 37.129.254.127 175858 port 75 175858 unique_id port 175858 remote_ip 10.8.0.174 175860 username morteza 175860 mac 175860 bytes_out 0 175860 bytes_in 0 175860 station_ip 37.129.254.127 175860 port 75 175860 unique_id port 175860 remote_ip 10.8.0.174 175864 username aminvpn 175864 mac 175864 bytes_out 0 175864 bytes_in 0 175864 station_ip 5.120.61.238 175864 port 75 175864 unique_id port 175864 remote_ip 10.8.0.58 175865 username morteza 175865 mac 175865 bytes_out 0 175865 bytes_in 0 175865 station_ip 37.129.254.127 175865 port 75 175865 unique_id port 175865 remote_ip 10.8.0.174 175867 username aminvpn 175867 mac 175867 bytes_out 0 175867 bytes_in 0 175867 station_ip 5.120.61.238 175867 port 75 175867 unique_id port 175867 remote_ip 10.8.0.58 175872 username barzegar 175872 mac 175872 bytes_out 24537 175872 bytes_in 25804 175872 station_ip 5.119.37.123 175872 port 87 175872 unique_id port 175872 remote_ip 10.8.0.10 175874 username kalantary6037 175874 kill_reason Another user logged on this global unique id 175874 mac 175874 bytes_out 0 175874 bytes_in 0 175874 station_ip 37.129.132.106 175874 port 76 175874 unique_id port 175875 username barzegar 175875 mac 175875 bytes_out 0 175875 bytes_in 0 175875 station_ip 5.119.37.123 175875 port 91 175875 unique_id port 175875 remote_ip 10.8.0.10 175877 username barzegar 175877 mac 175877 bytes_out 1664 175877 bytes_in 3775 175877 station_ip 5.119.37.123 175877 port 94 175877 unique_id port 175877 remote_ip 10.8.0.10 175878 username shadkam 175878 mac 175878 bytes_out 647984 175878 bytes_in 4371333 175878 station_ip 37.129.195.48 175878 port 91 175878 unique_id port 175878 remote_ip 10.8.0.74 175880 username hajghani 175880 mac 175880 bytes_out 4488524 175880 bytes_in 49232367 175880 station_ip 89.32.99.238 175880 port 84 175880 unique_id port 175880 remote_ip 10.8.0.102 175881 username mostafa_es78 175881 mac 175881 bytes_out 839273 175881 bytes_in 4828658 175881 station_ip 113.203.31.182 175881 port 90 175881 unique_id port 175881 remote_ip 10.8.0.34 175883 username soleymani5056 175883 mac 175883 bytes_out 1677 175883 bytes_in 3248 175883 station_ip 5.120.138.138 175883 port 76 175883 unique_id port 175883 remote_ip 10.8.0.226 175889 username barzegar 175889 mac 175889 bytes_out 7151 175889 bytes_in 9968 175889 station_ip 5.119.37.123 175889 port 84 175889 unique_id port 175889 remote_ip 10.8.0.10 175893 username aminvpn 175893 mac 175893 bytes_out 1838349 175893 bytes_in 33850384 175893 station_ip 5.120.61.238 175893 port 75 175893 unique_id port 175893 remote_ip 10.8.0.58 175894 username morteza 175894 mac 175894 bytes_out 0 175894 bytes_in 0 175894 station_ip 37.129.254.127 175894 port 75 175894 unique_id port 175894 remote_ip 10.8.0.174 175896 username aminvpn 175896 mac 175896 bytes_out 0 175896 bytes_in 0 175896 station_ip 5.120.61.238 175896 port 84 175896 unique_id port 175896 remote_ip 10.8.0.58 175899 username tahmasebi 175899 mac 175899 bytes_out 143668 175899 bytes_in 311431 175899 station_ip 5.119.180.185 175899 port 89 175899 unique_id port 175899 remote_ip 10.8.0.126 175903 username kalantary6037 175903 kill_reason Another user logged on this global unique id 175903 mac 175903 bytes_out 0 175903 bytes_in 0 175903 station_ip 37.129.132.106 175903 port 76 175903 unique_id port 175903 remote_ip 10.8.0.50 175905 username shadkam 175905 kill_reason Another user logged on this global unique id 175905 mac 175905 bytes_out 0 175905 bytes_in 0 175905 station_ip 37.129.229.77 175905 port 90 175905 unique_id port 175905 remote_ip 10.8.0.74 175909 username malekpoir 175909 kill_reason Another user logged on this global unique id 175909 mac 175909 bytes_out 0 175909 bytes_in 0 175909 station_ip 5.120.54.192 175909 port 88 175909 unique_id port 175911 username houshang 175911 mac 175911 bytes_out 420598 175911 bytes_in 2134473 175911 station_ip 5.119.221.165 175911 port 91 175911 unique_id port 175911 remote_ip 10.8.0.82 175914 username mohammadmahdi 175914 mac 175914 bytes_out 0 175914 bytes_in 0 175914 station_ip 5.120.50.124 175914 port 83 175914 unique_id port 175916 username shadkam 175916 kill_reason Another user logged on this global unique id 175916 mac 175916 bytes_out 0 175916 bytes_in 0 175916 station_ip 37.129.229.77 175916 port 90 175916 unique_id port 175919 username barzegar 175919 mac 175919 bytes_out 1638813 175919 bytes_in 16891143 175919 station_ip 5.119.37.123 175919 port 93 175919 unique_id port 175919 remote_ip 10.8.0.10 175921 username aminvpn 175921 mac 175921 bytes_out 19933 175921 bytes_in 34340 175921 station_ip 5.120.61.238 175921 port 75 175921 unique_id port 175921 remote_ip 10.8.0.58 175929 username barzegar 175929 mac 175929 bytes_out 0 175929 bytes_in 0 175929 station_ip 5.120.72.49 175929 port 84 175929 unique_id port 175929 remote_ip 10.8.0.10 175932 username alihosseini1 175932 mac 175932 bytes_out 4668048 175932 bytes_in 47088389 175932 station_ip 5.120.78.157 175932 port 83 175932 unique_id port 175932 remote_ip 10.8.0.234 175934 username aminvpn 175934 mac 175879 unique_id port 175879 remote_ip 10.8.0.10 175882 username aminvpn 175882 mac 175882 bytes_out 736157 175882 bytes_in 5538171 175882 station_ip 5.120.61.238 175882 port 75 175882 unique_id port 175882 remote_ip 10.8.0.58 175887 username fezealinaghi 175887 kill_reason Another user logged on this global unique id 175887 mac 175887 bytes_out 0 175887 bytes_in 0 175887 station_ip 37.129.231.164 175887 port 86 175887 unique_id port 175891 username morteza 175891 mac 175891 bytes_out 461729 175891 bytes_in 4319070 175891 station_ip 37.129.254.127 175891 port 93 175891 unique_id port 175891 remote_ip 10.8.0.174 175897 username mohammadjavad 175897 mac 175897 bytes_out 0 175897 bytes_in 0 175897 station_ip 37.129.244.232 175897 port 84 175897 unique_id port 175897 remote_ip 10.8.0.110 175898 username aminvpn 175898 mac 175898 bytes_out 0 175898 bytes_in 0 175898 station_ip 5.120.61.238 175898 port 75 175898 unique_id port 175898 remote_ip 10.8.0.58 175906 username tahmasebi 175906 mac 175906 bytes_out 0 175906 bytes_in 0 175906 station_ip 5.119.180.185 175906 port 89 175906 unique_id port 175906 remote_ip 10.8.0.126 175907 username aminvpn 175907 mac 175907 bytes_out 673910 175907 bytes_in 6214361 175907 station_ip 5.120.61.238 175907 port 75 175907 unique_id port 175907 remote_ip 10.8.0.58 175910 username tahmasebi 175910 mac 175910 bytes_out 3017 175910 bytes_in 5534 175910 station_ip 5.119.180.185 175910 port 89 175910 unique_id port 175910 remote_ip 10.8.0.126 175912 username tahmasebi 175912 mac 175912 bytes_out 0 175912 bytes_in 0 175912 station_ip 5.119.180.185 175912 port 89 175912 unique_id port 175912 remote_ip 10.8.0.126 175915 username malekpoir 175915 mac 175915 bytes_out 0 175915 bytes_in 0 175915 station_ip 5.120.54.192 175915 port 88 175915 unique_id port 175917 username morteza 175917 mac 175917 bytes_out 3762589 175917 bytes_in 1634696 175917 station_ip 37.129.254.127 175917 port 84 175917 unique_id port 175917 remote_ip 10.8.0.174 175923 username mosi 175923 kill_reason Another user logged on this global unique id 175923 mac 175923 bytes_out 0 175923 bytes_in 0 175923 station_ip 151.235.101.178 175923 port 87 175923 unique_id port 175924 username aminvpn 175924 mac 175924 bytes_out 0 175924 bytes_in 0 175924 station_ip 5.120.61.238 175924 port 84 175924 unique_id port 175924 remote_ip 10.8.0.58 175925 username barzegar 175925 kill_reason Another user logged on this global unique id 175925 mac 175925 bytes_out 0 175925 bytes_in 0 175925 station_ip 5.120.72.49 175925 port 88 175925 unique_id port 175925 remote_ip 10.8.0.10 175930 username khademi 175930 kill_reason Another user logged on this global unique id 175930 mac 175930 bytes_out 0 175930 bytes_in 0 175930 station_ip 37.129.154.227 175930 port 92 175930 unique_id port 175930 remote_ip 10.8.0.14 175933 username aminvpn 175933 mac 175933 bytes_out 14660 175933 bytes_in 20282 175933 station_ip 5.120.61.238 175933 port 75 175933 unique_id port 175933 remote_ip 10.8.0.58 175935 username tahmasebi 175935 kill_reason Another user logged on this global unique id 175935 mac 175935 bytes_out 0 175935 bytes_in 0 175935 station_ip 5.119.180.185 175935 port 76 175935 unique_id port 175935 remote_ip 10.8.0.126 175936 username barzegar 175936 mac 175936 bytes_out 2204 175936 bytes_in 4497 175936 station_ip 5.120.72.49 175936 port 84 175936 unique_id port 175936 remote_ip 10.8.0.10 175943 username kalantary6037 175943 mac 175943 bytes_out 2274384 175943 bytes_in 33582556 175890 station_ip 151.235.101.178 175890 port 87 175890 unique_id port 175890 remote_ip 10.8.0.142 175892 username morteza 175892 mac 175892 bytes_out 0 175892 bytes_in 0 175892 station_ip 37.129.254.127 175892 port 84 175892 unique_id port 175892 remote_ip 10.8.0.174 175895 username amin.saeedi 175895 mac 175895 bytes_out 253349 175895 bytes_in 909368 175895 station_ip 31.56.115.161 175895 port 91 175895 unique_id port 175895 remote_ip 10.8.0.90 175900 username aminvpn 175900 mac 175900 bytes_out 0 175900 bytes_in 0 175900 station_ip 5.120.61.238 175900 port 84 175900 unique_id port 175900 remote_ip 10.8.0.58 175901 username morteza 175901 mac 175901 bytes_out 0 175901 bytes_in 0 175901 station_ip 37.129.254.127 175901 port 89 175901 unique_id port 175901 remote_ip 10.8.0.174 175902 username soleymani5056 175902 mac 175902 bytes_out 21938 175902 bytes_in 33829 175902 station_ip 5.119.103.243 175902 port 84 175902 unique_id port 175902 remote_ip 10.8.0.226 175904 username barzegar 175904 mac 175904 bytes_out 0 175904 bytes_in 0 175904 station_ip 5.119.37.123 175904 port 89 175904 unique_id port 175904 remote_ip 10.8.0.10 175908 username aminvpn 175908 mac 175908 bytes_out 0 175908 bytes_in 0 175908 station_ip 5.120.61.238 175908 port 94 175908 unique_id port 175908 remote_ip 10.8.0.58 175913 username kalantary6037 175913 mac 175913 bytes_out 0 175913 bytes_in 0 175913 station_ip 37.129.132.106 175913 port 76 175913 unique_id port 175918 username mohammadjavad 175918 mac 175918 bytes_out 162518 175918 bytes_in 1196217 175918 station_ip 37.129.244.232 175918 port 88 175918 unique_id port 175918 remote_ip 10.8.0.110 175920 username mohammadjavad 175920 mac 175920 bytes_out 59574 175920 bytes_in 756003 175920 station_ip 37.129.244.232 175920 port 84 175920 unique_id port 175920 remote_ip 10.8.0.110 175922 username mohammadmahdi 175922 mac 175922 bytes_out 1088062 175922 bytes_in 11983590 175922 station_ip 5.120.50.124 175922 port 76 175922 unique_id port 175922 remote_ip 10.8.0.30 175926 username shadkam 175926 kill_reason Another user logged on this global unique id 175926 mac 175926 bytes_out 0 175926 bytes_in 0 175926 station_ip 37.129.229.77 175926 port 90 175926 unique_id port 175927 username mohammadjavad 175927 mac 175927 bytes_out 838528 175927 bytes_in 16295964 175927 station_ip 37.129.228.118 175927 port 84 175927 unique_id port 175927 remote_ip 10.8.0.110 175928 username barzegar 175928 mac 175928 bytes_out 0 175928 bytes_in 0 175928 station_ip 5.120.72.49 175928 port 88 175928 unique_id port 175931 username barzegar 175931 mac 175931 bytes_out 2527 175931 bytes_in 4664 175931 station_ip 5.120.72.49 175931 port 84 175931 unique_id port 175931 remote_ip 10.8.0.10 175938 username alihosseini1 175938 kill_reason Another user logged on this global unique id 175938 mac 175938 bytes_out 0 175938 bytes_in 0 175938 station_ip 5.120.78.157 175938 port 83 175938 unique_id port 175938 remote_ip 10.8.0.234 175947 username aminvpn 175947 mac 175947 bytes_out 0 175947 bytes_in 0 175947 station_ip 5.120.61.238 175947 port 76 175947 unique_id port 175947 remote_ip 10.8.0.58 175948 username shadkam 175948 mac 175948 bytes_out 0 175948 bytes_in 0 175948 station_ip 37.129.229.77 175948 port 90 175948 unique_id port 175953 username aminvpn 175953 mac 175953 bytes_out 0 175953 bytes_in 0 175953 station_ip 5.120.61.238 175953 port 76 175953 unique_id port 175953 remote_ip 10.8.0.58 175934 bytes_out 0 175934 bytes_in 0 175934 station_ip 5.120.61.238 175934 port 83 175934 unique_id port 175934 remote_ip 10.8.0.58 175937 username barzegar 175937 mac 175937 bytes_out 0 175937 bytes_in 0 175937 station_ip 5.120.72.49 175937 port 91 175937 unique_id port 175937 remote_ip 10.8.0.10 175939 username shadkam 175939 kill_reason Another user logged on this global unique id 175939 mac 175939 bytes_out 0 175939 bytes_in 0 175939 station_ip 37.129.229.77 175939 port 90 175939 unique_id port 175940 username tahmasebi 175940 mac 175940 bytes_out 0 175940 bytes_in 0 175940 station_ip 5.119.180.185 175940 port 76 175940 unique_id port 175941 username aminvpn 175941 mac 175941 bytes_out 12198 175941 bytes_in 18757 175941 station_ip 5.120.61.238 175941 port 75 175941 unique_id port 175941 remote_ip 10.8.0.58 175942 username aminvpn 175942 mac 175942 bytes_out 0 175942 bytes_in 0 175942 station_ip 5.120.61.238 175942 port 91 175942 unique_id port 175942 remote_ip 10.8.0.58 175944 username aminvpn 175944 mac 175944 bytes_out 0 175944 bytes_in 0 175944 station_ip 5.120.61.238 175944 port 75 175944 unique_id port 175944 remote_ip 10.8.0.58 175945 username barzegar 175945 mac 175945 bytes_out 0 175945 bytes_in 0 175945 station_ip 5.120.72.49 175945 port 76 175945 unique_id port 175945 remote_ip 10.8.0.10 175950 username barzegar 175950 mac 175950 bytes_out 1650 175950 bytes_in 4639 175950 station_ip 5.120.72.49 175950 port 89 175950 unique_id port 175950 remote_ip 10.8.0.10 175954 username aminvpn 175954 mac 175954 bytes_out 0 175954 bytes_in 0 175954 station_ip 5.120.61.238 175954 port 75 175954 unique_id port 175954 remote_ip 10.8.0.58 175959 username soleymani5056 175959 mac 175959 bytes_out 8030 175959 bytes_in 9529 175959 station_ip 5.120.137.196 175959 port 75 175959 unique_id port 175959 remote_ip 10.8.0.226 175965 username kalantary6037 175965 mac 175965 bytes_out 485930 175965 bytes_in 3170337 175965 station_ip 37.129.166.46 175965 port 76 175965 unique_id port 175965 remote_ip 10.8.0.50 175966 username barzegar 175966 mac 175966 bytes_out 0 175966 bytes_in 0 175966 station_ip 5.120.72.49 175966 port 90 175966 unique_id port 175966 remote_ip 10.8.0.10 175967 username tahmasebi 175967 mac 175967 bytes_out 0 175967 bytes_in 0 175967 station_ip 5.119.180.185 175967 port 90 175967 unique_id port 175967 remote_ip 10.8.0.126 175968 username malekpoir 175968 mac 175968 bytes_out 1966271 175968 bytes_in 25820596 175968 station_ip 5.120.54.192 175968 port 84 175968 unique_id port 175968 remote_ip 10.8.0.18 175969 username hatami 175969 mac 175969 bytes_out 58761 175969 bytes_in 269257 175969 station_ip 151.235.123.234 175969 port 83 175969 unique_id port 175969 remote_ip 10.8.0.98 175971 username yaghobi 175971 mac 175971 bytes_out 631584 175971 bytes_in 6663598 175971 station_ip 37.129.192.177 175971 port 89 175971 unique_id port 175971 remote_ip 10.8.0.138 175973 username barzegar 175973 mac 175973 bytes_out 2437 175973 bytes_in 4675 175973 station_ip 5.120.72.49 175973 port 83 175973 unique_id port 175973 remote_ip 10.8.0.10 175974 username kalantary6037 175974 mac 175974 bytes_out 523087 175974 bytes_in 4126558 175974 station_ip 37.129.166.46 175974 port 75 175974 unique_id port 175974 remote_ip 10.8.0.50 175975 username barzegar 175975 mac 175975 bytes_out 0 175975 bytes_in 0 175975 station_ip 5.120.72.49 175975 port 75 175975 unique_id port 175943 station_ip 37.129.166.46 175943 port 89 175943 unique_id port 175943 remote_ip 10.8.0.50 175946 username aminvpn 175946 mac 175946 bytes_out 0 175946 bytes_in 0 175946 station_ip 5.120.61.238 175946 port 91 175946 unique_id port 175946 remote_ip 10.8.0.58 175949 username mohammadjavad 175949 mac 175949 bytes_out 2164 175949 bytes_in 7105 175949 station_ip 37.129.228.118 175949 port 75 175949 unique_id port 175949 remote_ip 10.8.0.110 175951 username aminvpn 175951 mac 175951 bytes_out 0 175951 bytes_in 0 175951 station_ip 5.120.61.238 175951 port 91 175951 unique_id port 175951 remote_ip 10.8.0.58 175952 username aminvpn 175952 mac 175952 bytes_out 0 175952 bytes_in 0 175952 station_ip 5.120.61.238 175952 port 75 175952 unique_id port 175952 remote_ip 10.8.0.58 175961 username barzegar 175961 mac 175961 bytes_out 0 175961 bytes_in 0 175961 station_ip 5.120.72.49 175961 port 75 175961 unique_id port 175961 remote_ip 10.8.0.10 175964 username aminvpn 175964 mac 175964 bytes_out 0 175964 bytes_in 0 175964 station_ip 5.120.61.238 175964 port 75 175964 unique_id port 175964 remote_ip 10.8.0.58 175970 username mostafa_es78 175970 mac 175970 bytes_out 0 175970 bytes_in 0 175970 station_ip 113.203.116.150 175970 port 88 175970 unique_id port 175972 username alihosseini1 175972 mac 175972 bytes_out 64025 175972 bytes_in 105321 175972 station_ip 5.120.78.157 175972 port 91 175972 unique_id port 175972 remote_ip 10.8.0.234 175977 username jamali 175977 kill_reason Relative expiration date has reached 175977 mac 175977 bytes_out 0 175977 bytes_in 0 175977 station_ip 5.120.125.161 175977 port 75 175977 unique_id port 175980 username khademi 175980 kill_reason Another user logged on this global unique id 175980 mac 175980 bytes_out 0 175980 bytes_in 0 175980 station_ip 37.129.154.227 175980 port 92 175980 unique_id port 175983 username alihosseini1 175983 mac 175983 bytes_out 0 175983 bytes_in 0 175983 station_ip 5.120.78.157 175983 port 80 175983 unique_id port 175983 remote_ip 10.8.0.234 175985 username mostafa_es78 175985 mac 175985 bytes_out 45202 175985 bytes_in 108809 175985 station_ip 113.203.116.150 175985 port 83 175985 unique_id port 175985 remote_ip 10.8.0.34 175987 username malekpoir 175987 kill_reason Another user logged on this global unique id 175987 mac 175987 bytes_out 0 175987 bytes_in 0 175987 station_ip 5.120.159.78 175987 port 84 175987 unique_id port 175987 remote_ip 10.8.0.18 175990 username alihosseini1 175990 mac 175990 bytes_out 0 175990 bytes_in 0 175990 station_ip 5.120.78.157 175990 port 80 175990 unique_id port 175990 remote_ip 10.8.0.234 175991 username tahmasebi 175991 mac 175991 bytes_out 0 175991 bytes_in 0 175991 station_ip 5.119.180.185 175991 port 80 175991 unique_id port 175991 remote_ip 10.8.0.126 175994 username hatami 175994 mac 175994 bytes_out 2332367 175994 bytes_in 26201095 175994 station_ip 151.235.127.203 175994 port 93 175994 unique_id port 175994 remote_ip 10.8.0.98 175995 username rashidi4690 175995 mac 175995 bytes_out 0 175995 bytes_in 0 175995 station_ip 5.120.24.161 175995 port 76 175995 unique_id port 175997 username tahmasebi 175997 mac 175997 bytes_out 0 175997 bytes_in 0 175997 station_ip 5.119.180.185 175997 port 76 175997 unique_id port 175997 remote_ip 10.8.0.126 175998 username vanila 175998 kill_reason Relative expiration date has reached 175998 mac 175998 bytes_out 0 175998 bytes_in 0 175998 station_ip 37.27.33.255 175998 port 76 175998 unique_id port 175955 username tahmasebi 175955 mac 175955 bytes_out 0 175955 bytes_in 0 175955 station_ip 5.119.180.185 175955 port 89 175955 unique_id port 175955 remote_ip 10.8.0.126 175956 username yaghobi 175956 mac 175956 bytes_out 608194 175956 bytes_in 6717206 175956 station_ip 37.129.225.60 175956 port 84 175956 unique_id port 175956 remote_ip 10.8.0.138 175957 username malekpoir 175957 mac 175957 bytes_out 4837 175957 bytes_in 7093 175957 station_ip 5.120.54.192 175957 port 76 175957 unique_id port 175957 remote_ip 10.8.0.18 175958 username khademi 175958 kill_reason Another user logged on this global unique id 175958 mac 175958 bytes_out 0 175958 bytes_in 0 175958 station_ip 37.129.154.227 175958 port 92 175958 unique_id port 175960 username alihosseini1 175960 mac 175960 bytes_out 0 175960 bytes_in 0 175960 station_ip 5.120.78.157 175960 port 83 175960 unique_id port 175962 username mostafa_es78 175962 kill_reason Another user logged on this global unique id 175962 mac 175962 bytes_out 0 175962 bytes_in 0 175962 station_ip 113.203.116.150 175962 port 88 175962 unique_id port 175962 remote_ip 10.8.0.34 175963 username aminvpn 175963 mac 175963 bytes_out 15652 175963 bytes_in 33802 175963 station_ip 5.120.61.238 175963 port 90 175963 unique_id port 175963 remote_ip 10.8.0.58 175979 username aminvpn 175979 mac 175979 bytes_out 15590 175979 bytes_in 22976 175979 station_ip 5.120.61.238 175979 port 76 175979 unique_id port 175979 remote_ip 10.8.0.58 175981 username barzegar 175981 mac 175981 bytes_out 0 175981 bytes_in 0 175981 station_ip 5.120.72.49 175981 port 76 175981 unique_id port 175981 remote_ip 10.8.0.10 175992 username rashidi4690 175992 kill_reason Another user logged on this global unique id 175992 mac 175992 bytes_out 0 175992 bytes_in 0 175992 station_ip 5.120.24.161 175992 port 76 175992 unique_id port 175992 remote_ip 10.8.0.242 175993 username tahmasebi 175993 mac 175993 bytes_out 0 175993 bytes_in 0 175993 station_ip 5.119.180.185 175993 port 80 175993 unique_id port 175993 remote_ip 10.8.0.126 175999 username vanila 175999 kill_reason Relative expiration date has reached 175999 mac 175999 bytes_out 0 175999 bytes_in 0 175999 station_ip 37.27.33.255 175999 port 76 175999 unique_id port 176000 username godarzi 176000 kill_reason Another user logged on this global unique id 176000 mac 176000 bytes_out 0 176000 bytes_in 0 176000 station_ip 5.202.25.131 176000 port 90 176000 unique_id port 176000 remote_ip 10.8.0.38 176005 username yaghobi 176005 mac 176005 bytes_out 0 176005 bytes_in 0 176005 station_ip 37.129.130.236 176005 port 76 176005 unique_id port 176005 remote_ip 10.8.0.138 176006 username barzegar 176006 mac 176006 bytes_out 0 176006 bytes_in 0 176006 station_ip 5.120.72.49 176006 port 80 176006 unique_id port 176006 remote_ip 10.8.0.10 176009 username fezealinaghi 176009 mac 176009 bytes_out 0 176009 bytes_in 0 176009 station_ip 37.129.231.164 176009 port 86 176009 unique_id port 176010 username tahmasebi 176010 mac 176010 bytes_out 0 176010 bytes_in 0 176010 station_ip 5.119.180.185 176010 port 83 176010 unique_id port 176010 remote_ip 10.8.0.126 176011 username mehdizare 176011 mac 176011 bytes_out 144642 176011 bytes_in 445015 176011 station_ip 83.122.126.173 176011 port 75 176011 unique_id port 176011 remote_ip 10.8.0.210 176014 username shadkam 176014 mac 176014 bytes_out 632722 176014 bytes_in 7479321 176014 station_ip 37.129.207.169 176014 port 80 176014 unique_id port 176014 remote_ip 10.8.0.74 175975 remote_ip 10.8.0.10 175976 username kamali2 175976 kill_reason Relative expiration date has reached 175976 mac 175976 bytes_out 0 175976 bytes_in 0 175976 station_ip 37.129.166.47 175976 port 75 175976 unique_id port 175978 username mehdizare 175978 mac 175978 bytes_out 1607739 175978 bytes_in 2228921 175978 station_ip 83.122.126.173 175978 port 80 175978 unique_id port 175978 remote_ip 10.8.0.210 175982 username barzegar 175982 mac 175982 bytes_out 0 175982 bytes_in 0 175982 station_ip 5.120.72.49 175982 port 80 175982 unique_id port 175982 remote_ip 10.8.0.10 175984 username tahmasebi 175984 mac 175984 bytes_out 0 175984 bytes_in 0 175984 station_ip 5.119.180.185 175984 port 88 175984 unique_id port 175984 remote_ip 10.8.0.126 175986 username khademi 175986 kill_reason Another user logged on this global unique id 175986 mac 175986 bytes_out 0 175986 bytes_in 0 175986 station_ip 37.129.154.227 175986 port 92 175986 unique_id port 175988 username barzegar 175988 mac 175988 bytes_out 0 175988 bytes_in 0 175988 station_ip 5.120.72.49 175988 port 80 175988 unique_id port 175988 remote_ip 10.8.0.10 175989 username alihosseini1 175989 mac 175989 bytes_out 0 175989 bytes_in 0 175989 station_ip 5.120.78.157 175989 port 80 175989 unique_id port 175989 remote_ip 10.8.0.234 175996 username barzegar 175996 mac 175996 bytes_out 0 175996 bytes_in 0 175996 station_ip 5.120.72.49 175996 port 80 175996 unique_id port 175996 remote_ip 10.8.0.10 176001 username hosseine 176001 kill_reason Another user logged on this global unique id 176001 mac 176001 bytes_out 0 176001 bytes_in 0 176001 station_ip 37.129.180.177 176001 port 74 176001 unique_id port 176001 remote_ip 10.8.0.54 176003 username alihosseini1 176003 mac 176003 bytes_out 0 176003 bytes_in 0 176003 station_ip 5.120.78.157 176003 port 76 176003 unique_id port 176003 remote_ip 10.8.0.234 176008 username godarzi 176008 mac 176008 bytes_out 0 176008 bytes_in 0 176008 station_ip 5.202.25.131 176008 port 90 176008 unique_id port 176016 username barzegar 176016 mac 176016 bytes_out 0 176016 bytes_in 0 176016 station_ip 5.120.72.49 176016 port 75 176016 unique_id port 176016 remote_ip 10.8.0.10 176018 username khademi 176018 mac 176018 bytes_out 0 176018 bytes_in 0 176018 station_ip 37.129.154.227 176018 port 92 176018 unique_id port 176026 username barzegar 176026 mac 176026 bytes_out 0 176026 bytes_in 0 176026 station_ip 5.120.72.49 176026 port 89 176026 unique_id port 176026 remote_ip 10.8.0.10 176030 username malekpoir 176030 kill_reason Another user logged on this global unique id 176030 mac 176030 bytes_out 0 176030 bytes_in 0 176030 station_ip 5.120.159.78 176030 port 84 176030 unique_id port 176037 username aminvpn 176037 kill_reason Another user logged on this global unique id 176037 mac 176037 bytes_out 0 176037 bytes_in 0 176037 station_ip 5.119.47.102 176037 port 86 176037 unique_id port 176039 username mohammadjavad 176039 kill_reason Another user logged on this global unique id 176039 mac 176039 bytes_out 0 176039 bytes_in 0 176039 station_ip 37.129.195.98 176039 port 89 176039 unique_id port 176040 username mohammadjavad 176040 mac 176040 bytes_out 0 176040 bytes_in 0 176040 station_ip 37.129.195.98 176040 port 89 176040 unique_id port 176042 username shadkam 176042 mac 176042 bytes_out 997550 176042 bytes_in 13724163 176042 station_ip 37.129.132.16 176042 port 90 176042 unique_id port 176042 remote_ip 10.8.0.74 176044 username alihosseini1 176044 mac 176002 username mehdizare 176002 mac 176002 bytes_out 769014 176002 bytes_in 1203162 176002 station_ip 83.122.126.173 176002 port 75 176002 unique_id port 176002 remote_ip 10.8.0.210 176004 username hosseine 176004 kill_reason Another user logged on this global unique id 176004 mac 176004 bytes_out 0 176004 bytes_in 0 176004 station_ip 37.129.180.177 176004 port 74 176004 unique_id port 176007 username tahmasebi 176007 mac 176007 bytes_out 0 176007 bytes_in 0 176007 station_ip 5.119.180.185 176007 port 76 176007 unique_id port 176007 remote_ip 10.8.0.126 176012 username barzegar 176012 mac 176012 bytes_out 4565 176012 bytes_in 7199 176012 station_ip 5.120.72.49 176012 port 76 176012 unique_id port 176012 remote_ip 10.8.0.10 176013 username alihosseini1 176013 kill_reason Maximum check online fails reached 176013 mac 176013 bytes_out 0 176013 bytes_in 0 176013 station_ip 5.120.78.157 176013 port 83 176013 unique_id port 176015 username tahmasebi 176015 mac 176015 bytes_out 0 176015 bytes_in 0 176015 station_ip 5.119.180.185 176015 port 76 176015 unique_id port 176015 remote_ip 10.8.0.126 176017 username alihosseini1 176017 mac 176017 bytes_out 0 176017 bytes_in 0 176017 station_ip 5.120.78.157 176017 port 76 176017 unique_id port 176017 remote_ip 10.8.0.234 176019 username aminvpn 176019 kill_reason Another user logged on this global unique id 176019 mac 176019 bytes_out 0 176019 bytes_in 0 176019 station_ip 5.119.47.102 176019 port 86 176019 unique_id port 176019 remote_ip 10.8.0.58 176020 username barzegar 176020 mac 176020 bytes_out 17769 176020 bytes_in 28269 176020 station_ip 5.120.72.49 176020 port 75 176020 unique_id port 176020 remote_ip 10.8.0.10 176025 username tahmasebi 176025 mac 176025 bytes_out 0 176025 bytes_in 0 176025 station_ip 5.119.180.185 176025 port 80 176025 unique_id port 176025 remote_ip 10.8.0.126 176034 username barzegar 176034 mac 176034 bytes_out 0 176034 bytes_in 0 176034 station_ip 5.120.72.49 176034 port 90 176034 unique_id port 176034 remote_ip 10.8.0.10 176038 username mehdizare 176038 kill_reason Another user logged on this global unique id 176038 mac 176038 bytes_out 0 176038 bytes_in 0 176038 station_ip 83.122.126.173 176038 port 75 176038 unique_id port 176038 remote_ip 10.8.0.210 176041 username mohammadjavad 176041 mac 176041 bytes_out 0 176041 bytes_in 0 176041 station_ip 37.129.195.98 176041 port 93 176041 unique_id port 176041 remote_ip 10.8.0.110 176046 username alihosseini1 176046 mac 176046 bytes_out 0 176046 bytes_in 0 176046 station_ip 5.120.78.157 176046 port 90 176046 unique_id port 176046 remote_ip 10.8.0.234 176048 username tahmasebi 176048 mac 176048 bytes_out 827184 176048 bytes_in 12007617 176048 station_ip 5.119.180.185 176048 port 89 176048 unique_id port 176048 remote_ip 10.8.0.126 176049 username barzegar 176049 mac 176049 bytes_out 0 176049 bytes_in 0 176049 station_ip 5.120.72.49 176049 port 89 176049 unique_id port 176049 remote_ip 10.8.0.10 176055 username mehdizare 176055 mac 176055 bytes_out 622072 176055 bytes_in 23512435 176055 station_ip 83.122.126.173 176055 port 93 176055 unique_id port 176055 remote_ip 10.8.0.210 176056 username rezaei 176056 kill_reason Another user logged on this global unique id 176056 mac 176056 bytes_out 0 176056 bytes_in 0 176056 station_ip 5.119.213.115 176056 port 91 176056 unique_id port 176056 remote_ip 10.8.0.198 176057 username tahmasebi 176057 mac 176057 bytes_out 0 176057 bytes_in 0 176057 station_ip 5.119.180.185 176057 port 93 176021 username aminvpn 176021 kill_reason Another user logged on this global unique id 176021 mac 176021 bytes_out 0 176021 bytes_in 0 176021 station_ip 5.119.47.102 176021 port 86 176021 unique_id port 176022 username mehdizare 176022 mac 176022 bytes_out 123102 176022 bytes_in 58769 176022 station_ip 83.122.126.173 176022 port 80 176022 unique_id port 176022 remote_ip 10.8.0.210 176023 username barzegar 176023 mac 176023 bytes_out 10234 176023 bytes_in 12118 176023 station_ip 5.120.72.49 176023 port 89 176023 unique_id port 176023 remote_ip 10.8.0.10 176024 username aminvpn 176024 kill_reason Another user logged on this global unique id 176024 mac 176024 bytes_out 0 176024 bytes_in 0 176024 station_ip 5.119.47.102 176024 port 86 176024 unique_id port 176027 username aminvpn 176027 kill_reason Another user logged on this global unique id 176027 mac 176027 bytes_out 0 176027 bytes_in 0 176027 station_ip 5.119.47.102 176027 port 86 176027 unique_id port 176028 username tahmasebi 176028 mac 176028 bytes_out 0 176028 bytes_in 0 176028 station_ip 5.119.180.185 176028 port 89 176028 unique_id port 176028 remote_ip 10.8.0.126 176029 username alihosseini1 176029 mac 176029 bytes_out 14931 176029 bytes_in 38146 176029 station_ip 5.120.78.157 176029 port 80 176029 unique_id port 176029 remote_ip 10.8.0.234 176031 username khademi 176031 kill_reason Another user logged on this global unique id 176031 mac 176031 bytes_out 0 176031 bytes_in 0 176031 station_ip 37.129.154.227 176031 port 88 176031 unique_id port 176031 remote_ip 10.8.0.14 176032 username mohammadjavad 176032 kill_reason Another user logged on this global unique id 176032 mac 176032 bytes_out 0 176032 bytes_in 0 176032 station_ip 37.129.195.98 176032 port 89 176032 unique_id port 176032 remote_ip 10.8.0.110 176033 username alihosseini1 176033 mac 176033 bytes_out 0 176033 bytes_in 0 176033 station_ip 5.120.78.157 176033 port 90 176033 unique_id port 176033 remote_ip 10.8.0.234 176035 username tahmasebi 176035 mac 176035 bytes_out 0 176035 bytes_in 0 176035 station_ip 5.119.180.185 176035 port 90 176035 unique_id port 176035 remote_ip 10.8.0.126 176036 username kalantary6037 176036 mac 176036 bytes_out 335877 176036 bytes_in 3068567 176036 station_ip 37.129.166.46 176036 port 92 176036 unique_id port 176036 remote_ip 10.8.0.50 176043 username barzegar 176043 mac 176043 bytes_out 0 176043 bytes_in 0 176043 station_ip 5.120.72.49 176043 port 93 176043 unique_id port 176043 remote_ip 10.8.0.10 176052 username morteza 176052 mac 176052 bytes_out 0 176052 bytes_in 0 176052 station_ip 37.129.240.83 176052 port 94 176052 unique_id port 176052 remote_ip 10.8.0.174 176054 username morteza 176054 mac 176054 bytes_out 0 176054 bytes_in 0 176054 station_ip 37.129.240.83 176054 port 90 176054 unique_id port 176054 remote_ip 10.8.0.174 176059 username mehdizare 176059 mac 176059 bytes_out 299441 176059 bytes_in 13254381 176059 station_ip 83.122.126.173 176059 port 92 176059 unique_id port 176059 remote_ip 10.8.0.210 176060 username yaghobi 176060 mac 176060 bytes_out 51451 176060 bytes_in 89790 176060 station_ip 37.129.178.77 176060 port 95 176060 unique_id port 176060 remote_ip 10.8.0.138 176061 username morteza 176061 mac 176061 bytes_out 0 176061 bytes_in 0 176061 station_ip 37.129.240.83 176061 port 94 176061 unique_id port 176061 remote_ip 10.8.0.174 176064 username morteza 176064 mac 176064 bytes_out 0 176064 bytes_in 0 176064 station_ip 37.129.240.83 176064 port 93 176044 bytes_out 0 176044 bytes_in 0 176044 station_ip 5.120.78.157 176044 port 90 176044 unique_id port 176044 remote_ip 10.8.0.234 176045 username khademi 176045 kill_reason Another user logged on this global unique id 176045 mac 176045 bytes_out 0 176045 bytes_in 0 176045 station_ip 37.129.154.227 176045 port 88 176045 unique_id port 176047 username mehdizare 176047 mac 176047 bytes_out 0 176047 bytes_in 0 176047 station_ip 83.122.126.173 176047 port 75 176047 unique_id port 176050 username morteza 176050 mac 176050 bytes_out 129877 176050 bytes_in 2212370 176050 station_ip 37.129.240.83 176050 port 90 176050 unique_id port 176050 remote_ip 10.8.0.174 176051 username yaghobi 176051 mac 176051 bytes_out 480031 176051 bytes_in 950005 176051 station_ip 37.129.178.77 176051 port 92 176051 unique_id port 176051 remote_ip 10.8.0.138 176053 username mohammadjavad 176053 mac 176053 bytes_out 604531 176053 bytes_in 12044573 176053 station_ip 37.129.195.98 176053 port 90 176053 unique_id port 176053 remote_ip 10.8.0.110 176058 username barzegar 176058 mac 176058 bytes_out 2586 176058 bytes_in 4659 176058 station_ip 5.120.72.49 176058 port 94 176058 unique_id port 176058 remote_ip 10.8.0.10 176062 username yaghobi 176062 mac 176062 bytes_out 0 176062 bytes_in 0 176062 station_ip 37.129.178.77 176062 port 93 176062 unique_id port 176062 remote_ip 10.8.0.138 176063 username mehdizare 176063 mac 176063 bytes_out 1972 176063 bytes_in 4007 176063 station_ip 83.122.126.173 176063 port 92 176063 unique_id port 176063 remote_ip 10.8.0.210 176066 username kordestani 176066 mac 176066 bytes_out 1817232 176066 bytes_in 23055655 176066 station_ip 151.235.126.211 176066 port 90 176066 unique_id port 176066 remote_ip 10.8.0.130 176071 username barzegar 176071 mac 176071 bytes_out 0 176071 bytes_in 0 176071 station_ip 5.120.72.49 176071 port 87 176071 unique_id port 176071 remote_ip 10.8.0.10 176075 username aminvpn 176075 mac 176075 bytes_out 0 176075 bytes_in 0 176075 station_ip 5.119.47.102 176075 port 86 176075 unique_id port 176082 username aminvpn 176082 mac 176082 bytes_out 0 176082 bytes_in 0 176082 station_ip 37.129.152.49 176082 port 92 176082 unique_id port 176082 remote_ip 10.8.0.58 176085 username morteza 176085 mac 176085 bytes_out 0 176085 bytes_in 0 176085 station_ip 37.129.240.83 176085 port 92 176085 unique_id port 176085 remote_ip 10.8.0.174 176090 username aminvpn 176090 mac 176090 bytes_out 0 176090 bytes_in 0 176090 station_ip 37.129.152.49 176090 port 93 176090 unique_id port 176090 remote_ip 10.8.0.58 176093 username morteza 176093 mac 176093 bytes_out 0 176093 bytes_in 0 176093 station_ip 37.129.240.83 176093 port 93 176093 unique_id port 176093 remote_ip 10.8.0.174 176094 username aminvpn 176094 mac 176094 bytes_out 0 176094 bytes_in 0 176094 station_ip 37.129.152.49 176094 port 94 176094 unique_id port 176094 remote_ip 10.8.0.58 176095 username tahmasebi 176095 mac 176095 bytes_out 2098 176095 bytes_in 4399 176095 station_ip 5.119.180.185 176095 port 92 176095 unique_id port 176095 remote_ip 10.8.0.126 176098 username yaghobi 176098 mac 176098 bytes_out 225361 176098 bytes_in 419754 176098 station_ip 37.129.233.22 176098 port 90 176098 unique_id port 176098 remote_ip 10.8.0.138 176100 username aminvpn 176100 mac 176100 bytes_out 0 176100 bytes_in 0 176100 station_ip 37.129.152.49 176100 port 92 176100 unique_id port 176057 unique_id port 176057 remote_ip 10.8.0.126 176065 username tahmasebi 176065 mac 176065 bytes_out 0 176065 bytes_in 0 176065 station_ip 5.119.180.185 176065 port 92 176065 unique_id port 176065 remote_ip 10.8.0.126 176068 username mosi 176068 mac 176068 bytes_out 0 176068 bytes_in 0 176068 station_ip 151.235.101.178 176068 port 87 176068 unique_id port 176069 username tahmasebi 176069 mac 176069 bytes_out 65017 176069 bytes_in 576377 176069 station_ip 5.119.180.185 176069 port 90 176069 unique_id port 176069 remote_ip 10.8.0.126 176070 username mehdizare 176070 mac 176070 bytes_out 11747 176070 bytes_in 21302 176070 station_ip 83.122.126.173 176070 port 95 176070 unique_id port 176070 remote_ip 10.8.0.210 176073 username malekpoir 176073 kill_reason Another user logged on this global unique id 176073 mac 176073 bytes_out 0 176073 bytes_in 0 176073 station_ip 5.120.159.78 176073 port 84 176073 unique_id port 176076 username aminvpn 176076 mac 176076 bytes_out 0 176076 bytes_in 0 176076 station_ip 37.129.152.49 176076 port 92 176076 unique_id port 176076 remote_ip 10.8.0.58 176077 username aminvpn 176077 mac 176077 bytes_out 0 176077 bytes_in 0 176077 station_ip 5.119.47.102 176077 port 86 176077 unique_id port 176077 remote_ip 10.8.0.58 176078 username aminvpn 176078 mac 176078 bytes_out 0 176078 bytes_in 0 176078 station_ip 37.129.152.49 176078 port 92 176078 unique_id port 176078 remote_ip 10.8.0.58 176083 username alihosseini1 176083 mac 176083 bytes_out 0 176083 bytes_in 0 176083 station_ip 5.120.78.157 176083 port 89 176083 unique_id port 176084 username aminvpn 176084 mac 176084 bytes_out 0 176084 bytes_in 0 176084 station_ip 5.119.47.102 176084 port 93 176084 unique_id port 176084 remote_ip 10.8.0.58 176086 username soleymani5056 176086 mac 176086 bytes_out 104314 176086 bytes_in 437838 176086 station_ip 5.120.101.248 176086 port 86 176086 unique_id port 176086 remote_ip 10.8.0.226 176091 username aminvpn 176091 mac 176091 bytes_out 0 176091 bytes_in 0 176091 station_ip 5.119.47.102 176091 port 86 176091 unique_id port 176091 remote_ip 10.8.0.58 176103 username aminvpn 176103 mac 176103 bytes_out 0 176103 bytes_in 0 176103 station_ip 5.119.47.102 176103 port 90 176103 unique_id port 176103 remote_ip 10.8.0.58 176104 username aminvpn 176104 mac 176104 bytes_out 0 176104 bytes_in 0 176104 station_ip 37.129.152.49 176104 port 89 176104 unique_id port 176104 remote_ip 10.8.0.58 176105 username aminvpn 176105 mac 176105 bytes_out 0 176105 bytes_in 0 176105 station_ip 5.119.47.102 176105 port 90 176105 unique_id port 176105 remote_ip 10.8.0.58 176110 username shadkam 176110 mac 176110 bytes_out 120390 176110 bytes_in 930227 176110 station_ip 37.129.194.106 176110 port 86 176110 unique_id port 176110 remote_ip 10.8.0.74 176112 username aminvpn 176112 mac 176112 bytes_out 0 176112 bytes_in 0 176112 station_ip 37.129.152.49 176112 port 92 176112 unique_id port 176112 remote_ip 10.8.0.58 176115 username morteza 176115 mac 176115 bytes_out 2755462 176115 bytes_in 1924075 176115 station_ip 37.129.240.83 176115 port 89 176115 unique_id port 176115 remote_ip 10.8.0.174 176118 username aminvpn 176118 mac 176118 bytes_out 0 176118 bytes_in 0 176118 station_ip 37.129.152.49 176118 port 89 176118 unique_id port 176118 remote_ip 10.8.0.58 176119 username morteza 176119 mac 176119 bytes_out 0 176119 bytes_in 0 176064 unique_id port 176064 remote_ip 10.8.0.174 176067 username morteza 176067 mac 176067 bytes_out 0 176067 bytes_in 0 176067 station_ip 37.129.240.83 176067 port 96 176067 unique_id port 176067 remote_ip 10.8.0.174 176072 username morteza 176072 mac 176072 bytes_out 0 176072 bytes_in 0 176072 station_ip 37.129.240.83 176072 port 90 176072 unique_id port 176072 remote_ip 10.8.0.174 176074 username yaghobi 176074 mac 176074 bytes_out 492817 176074 bytes_in 8253471 176074 station_ip 37.129.233.22 176074 port 94 176074 unique_id port 176074 remote_ip 10.8.0.138 176079 username alihosseini1 176079 kill_reason Another user logged on this global unique id 176079 mac 176079 bytes_out 0 176079 bytes_in 0 176079 station_ip 5.120.78.157 176079 port 89 176079 unique_id port 176079 remote_ip 10.8.0.234 176080 username aminvpn 176080 mac 176080 bytes_out 0 176080 bytes_in 0 176080 station_ip 5.119.47.102 176080 port 93 176080 unique_id port 176080 remote_ip 10.8.0.58 176081 username morteza 176081 mac 176081 bytes_out 0 176081 bytes_in 0 176081 station_ip 37.129.240.83 176081 port 93 176081 unique_id port 176081 remote_ip 10.8.0.174 176087 username aminvpn 176087 mac 176087 bytes_out 0 176087 bytes_in 0 176087 station_ip 37.129.152.49 176087 port 94 176087 unique_id port 176087 remote_ip 10.8.0.58 176088 username aminvpn 176088 mac 176088 bytes_out 0 176088 bytes_in 0 176088 station_ip 5.119.47.102 176088 port 86 176088 unique_id port 176088 remote_ip 10.8.0.58 176089 username tahmasebi 176089 mac 176089 bytes_out 0 176089 bytes_in 0 176089 station_ip 5.119.180.185 176089 port 92 176089 unique_id port 176089 remote_ip 10.8.0.126 176092 username aminvpn2 176092 kill_reason Another user logged on this global unique id 176092 mac 176092 bytes_out 0 176092 bytes_in 0 176092 station_ip 5.119.238.174 176092 port 75 176092 unique_id port 176092 remote_ip 10.8.0.150 176096 username morteza 176096 mac 176096 bytes_out 0 176096 bytes_in 0 176096 station_ip 37.129.240.83 176096 port 94 176096 unique_id port 176096 remote_ip 10.8.0.174 176097 username aminvpn 176097 mac 176097 bytes_out 0 176097 bytes_in 0 176097 station_ip 5.119.47.102 176097 port 95 176097 unique_id port 176097 remote_ip 10.8.0.58 176099 username barzegar 176099 mac 176099 bytes_out 0 176099 bytes_in 0 176099 station_ip 5.120.72.49 176099 port 96 176099 unique_id port 176099 remote_ip 10.8.0.10 176101 username mostafa_es78 176101 mac 176101 bytes_out 49881 176101 bytes_in 95301 176101 station_ip 113.203.101.58 176101 port 93 176101 unique_id port 176101 remote_ip 10.8.0.34 176107 username mostafa_es78 176107 mac 176107 bytes_out 34483 176107 bytes_in 47367 176107 station_ip 113.203.101.58 176107 port 89 176107 unique_id port 176107 remote_ip 10.8.0.34 176108 username aminvpn 176108 mac 176108 bytes_out 0 176108 bytes_in 0 176108 station_ip 5.119.47.102 176108 port 90 176108 unique_id port 176108 remote_ip 10.8.0.58 176113 username aminvpn 176113 mac 176113 bytes_out 0 176113 bytes_in 0 176113 station_ip 5.119.47.102 176113 port 86 176113 unique_id port 176113 remote_ip 10.8.0.58 176114 username aminvpn 176114 mac 176114 bytes_out 0 176114 bytes_in 0 176114 station_ip 37.129.152.49 176114 port 90 176114 unique_id port 176114 remote_ip 10.8.0.58 176116 username morteza 176116 mac 176116 bytes_out 0 176116 bytes_in 0 176116 station_ip 37.129.240.83 176116 port 89 176116 unique_id port 176100 remote_ip 10.8.0.58 176102 username alihosseini1 176102 mac 176102 bytes_out 250687 176102 bytes_in 1068501 176102 station_ip 5.120.78.157 176102 port 89 176102 unique_id port 176102 remote_ip 10.8.0.234 176106 username aminvpn 176106 mac 176106 bytes_out 0 176106 bytes_in 0 176106 station_ip 37.129.152.49 176106 port 92 176106 unique_id port 176106 remote_ip 10.8.0.58 176109 username rezaei 176109 kill_reason Another user logged on this global unique id 176109 mac 176109 bytes_out 0 176109 bytes_in 0 176109 station_ip 5.119.213.115 176109 port 91 176109 unique_id port 176111 username yaghobi 176111 mac 176111 bytes_out 130288 176111 bytes_in 259964 176111 station_ip 37.129.233.22 176111 port 94 176111 unique_id port 176111 remote_ip 10.8.0.138 176121 username aminvpn 176121 mac 176121 bytes_out 0 176121 bytes_in 0 176121 station_ip 37.129.152.49 176121 port 89 176121 unique_id port 176121 remote_ip 10.8.0.58 176136 username rahim 176136 mac 176136 bytes_out 3987409 176136 bytes_in 34314135 176136 station_ip 5.119.110.31 176136 port 80 176136 unique_id port 176136 remote_ip 10.8.0.134 176140 username morteza 176140 mac 176140 bytes_out 223344 176140 bytes_in 1222872 176140 station_ip 37.129.240.83 176140 port 87 176140 unique_id port 176140 remote_ip 10.8.0.174 176142 username aminvpn 176142 mac 176142 bytes_out 0 176142 bytes_in 0 176142 station_ip 37.129.152.49 176142 port 87 176142 unique_id port 176142 remote_ip 10.8.0.58 176147 username barzegar 176147 mac 176147 bytes_out 0 176147 bytes_in 0 176147 station_ip 5.120.72.49 176147 port 92 176147 unique_id port 176147 remote_ip 10.8.0.10 176148 username mehdizare 176148 mac 176148 bytes_out 10010 176148 bytes_in 16315 176148 station_ip 83.122.126.173 176148 port 89 176148 unique_id port 176148 remote_ip 10.8.0.210 176153 username alihosseini1 176153 mac 176153 bytes_out 0 176153 bytes_in 0 176153 station_ip 5.120.78.157 176153 port 80 176153 unique_id port 176153 remote_ip 10.8.0.234 176155 username tahmasebi 176155 mac 176155 bytes_out 0 176155 bytes_in 0 176155 station_ip 5.119.180.185 176155 port 93 176155 unique_id port 176155 remote_ip 10.8.0.126 176156 username barzegar 176156 mac 176156 bytes_out 2204 176156 bytes_in 4550 176156 station_ip 5.120.72.49 176156 port 92 176156 unique_id port 176156 remote_ip 10.8.0.10 176159 username mehdizare 176159 mac 176159 bytes_out 6117 176159 bytes_in 13921 176159 station_ip 83.122.126.173 176159 port 92 176159 unique_id port 176159 remote_ip 10.8.0.210 176165 username barzegar 176165 mac 176165 bytes_out 0 176165 bytes_in 0 176165 station_ip 5.120.72.49 176165 port 92 176165 unique_id port 176165 remote_ip 10.8.0.10 176172 username tahmasebi 176172 mac 176172 bytes_out 0 176172 bytes_in 0 176172 station_ip 5.119.180.185 176172 port 93 176172 unique_id port 176172 remote_ip 10.8.0.126 176173 username barzegar 176173 mac 176173 bytes_out 0 176173 bytes_in 0 176173 station_ip 5.120.72.49 176173 port 92 176173 unique_id port 176173 remote_ip 10.8.0.10 176175 username rezaei 176175 mac 176175 bytes_out 0 176175 bytes_in 0 176175 station_ip 5.119.213.115 176175 port 91 176175 unique_id port 176186 username tahmasebi 176186 mac 176186 bytes_out 0 176186 bytes_in 0 176186 station_ip 5.119.180.185 176186 port 91 176186 unique_id port 176192 username majidsarmast 176192 mac 176192 bytes_out 0 176192 bytes_in 0 176192 station_ip 86.57.114.88 176116 remote_ip 10.8.0.174 176117 username aminvpn 176117 mac 176117 bytes_out 0 176117 bytes_in 0 176117 station_ip 5.119.47.102 176117 port 86 176117 unique_id port 176117 remote_ip 10.8.0.58 176120 username aminvpn 176120 mac 176120 bytes_out 0 176120 bytes_in 0 176120 station_ip 5.119.47.102 176120 port 92 176120 unique_id port 176120 remote_ip 10.8.0.58 176122 username meysam 176122 mac 176122 bytes_out 1298593 176122 bytes_in 18185889 176122 station_ip 188.158.50.158 176122 port 90 176122 unique_id port 176122 remote_ip 10.8.0.158 176124 username aminvpn 176124 mac 176124 bytes_out 0 176124 bytes_in 0 176124 station_ip 5.119.47.102 176124 port 93 176124 unique_id port 176124 remote_ip 10.8.0.58 176126 username tahmasebi 176126 mac 176126 bytes_out 0 176126 bytes_in 0 176126 station_ip 5.119.180.185 176126 port 93 176126 unique_id port 176126 remote_ip 10.8.0.126 176127 username aminvpn 176127 mac 176127 bytes_out 17877 176127 bytes_in 54795 176127 station_ip 5.119.47.102 176127 port 92 176127 unique_id port 176127 remote_ip 10.8.0.58 176130 username alihosseini1 176130 mac 176130 bytes_out 9980 176130 bytes_in 18513 176130 station_ip 5.120.78.157 176130 port 89 176130 unique_id port 176130 remote_ip 10.8.0.234 176132 username mehdizare 176132 mac 176132 bytes_out 965040 176132 bytes_in 42644247 176132 station_ip 83.122.126.173 176132 port 87 176132 unique_id port 176132 remote_ip 10.8.0.210 176133 username aminvpn 176133 mac 176133 bytes_out 40814 176133 bytes_in 89638 176133 station_ip 5.119.47.102 176133 port 94 176133 unique_id port 176133 remote_ip 10.8.0.58 176135 username aminvpn 176135 mac 176135 bytes_out 0 176135 bytes_in 0 176135 station_ip 37.129.152.49 176135 port 93 176135 unique_id port 176135 remote_ip 10.8.0.58 176138 username aminvpn 176138 mac 176138 bytes_out 0 176138 bytes_in 0 176138 station_ip 5.119.47.102 176138 port 89 176138 unique_id port 176138 remote_ip 10.8.0.58 176141 username aminvpn 176141 mac 176141 bytes_out 29470 176141 bytes_in 81701 176141 station_ip 5.119.47.102 176141 port 93 176141 unique_id port 176141 remote_ip 10.8.0.58 176143 username morteza 176143 mac 176143 bytes_out 2252 176143 bytes_in 5739 176143 station_ip 37.129.240.83 176143 port 80 176143 unique_id port 176143 remote_ip 10.8.0.174 176144 username aminvpn 176144 mac 176144 bytes_out 0 176144 bytes_in 0 176144 station_ip 5.119.47.102 176144 port 93 176144 unique_id port 176144 remote_ip 10.8.0.58 176146 username barzegar 176146 mac 176146 bytes_out 0 176146 bytes_in 0 176146 station_ip 5.120.72.49 176146 port 92 176146 unique_id port 176146 remote_ip 10.8.0.10 176150 username alihosseini1 176150 mac 176150 bytes_out 0 176150 bytes_in 0 176150 station_ip 5.120.78.157 176150 port 89 176150 unique_id port 176150 remote_ip 10.8.0.234 176151 username hoorieh 176151 mac 176151 bytes_out 414947 176151 bytes_in 4342935 176151 station_ip 5.119.115.213 176151 port 87 176151 unique_id port 176151 remote_ip 10.8.0.62 176157 username mehdizare 176157 mac 176157 bytes_out 9280 176157 bytes_in 13016 176157 station_ip 83.122.126.173 176157 port 89 176157 unique_id port 176157 remote_ip 10.8.0.210 176158 username kalantary6037 176158 kill_reason Another user logged on this global unique id 176158 mac 176158 bytes_out 0 176158 bytes_in 0 176158 station_ip 37.129.235.50 176158 port 86 176158 unique_id port 176158 remote_ip 10.8.0.50 176162 username aminvpn 176119 station_ip 37.129.240.83 176119 port 89 176119 unique_id port 176119 remote_ip 10.8.0.174 176123 username morteza 176123 mac 176123 bytes_out 73930 176123 bytes_in 1407952 176123 station_ip 37.129.240.83 176123 port 92 176123 unique_id port 176123 remote_ip 10.8.0.174 176125 username aminvpn 176125 mac 176125 bytes_out 0 176125 bytes_in 0 176125 station_ip 37.129.152.49 176125 port 89 176125 unique_id port 176125 remote_ip 10.8.0.58 176128 username morteza 176128 mac 176128 bytes_out 237456 176128 bytes_in 4765287 176128 station_ip 37.129.240.83 176128 port 94 176128 unique_id port 176128 remote_ip 10.8.0.174 176129 username aminvpn 176129 mac 176129 bytes_out 0 176129 bytes_in 0 176129 station_ip 37.129.152.49 176129 port 93 176129 unique_id port 176129 remote_ip 10.8.0.58 176131 username morteza 176131 mac 176131 bytes_out 0 176131 bytes_in 0 176131 station_ip 37.129.240.83 176131 port 92 176131 unique_id port 176131 remote_ip 10.8.0.174 176134 username shadkam 176134 mac 176134 bytes_out 31779 176134 bytes_in 54463 176134 station_ip 37.129.236.221 176134 port 89 176134 unique_id port 176134 remote_ip 10.8.0.74 176137 username tahmasebi 176137 mac 176137 bytes_out 0 176137 bytes_in 0 176137 station_ip 5.119.180.185 176137 port 80 176137 unique_id port 176137 remote_ip 10.8.0.126 176139 username aminvpn 176139 mac 176139 bytes_out 0 176139 bytes_in 0 176139 station_ip 37.129.152.49 176139 port 80 176139 unique_id port 176139 remote_ip 10.8.0.58 176145 username barzegar 176145 mac 176145 bytes_out 150157 176145 bytes_in 32348 176145 station_ip 5.120.72.49 176145 port 92 176145 unique_id port 176145 remote_ip 10.8.0.10 176149 username alihosseini1 176149 mac 176149 bytes_out 0 176149 bytes_in 0 176149 station_ip 5.120.78.157 176149 port 92 176149 unique_id port 176149 remote_ip 10.8.0.234 176152 username aminvpn 176152 mac 176152 bytes_out 37852 176152 bytes_in 113516 176152 station_ip 37.129.152.49 176152 port 80 176152 unique_id port 176152 remote_ip 10.8.0.58 176154 username alihosseini1 176154 mac 176154 bytes_out 0 176154 bytes_in 0 176154 station_ip 5.120.78.157 176154 port 92 176154 unique_id port 176154 remote_ip 10.8.0.234 176160 username alihosseini1 176160 mac 176160 bytes_out 0 176160 bytes_in 0 176160 station_ip 5.120.78.157 176160 port 89 176160 unique_id port 176160 remote_ip 10.8.0.234 176161 username morteza 176161 mac 176161 bytes_out 2065433 176161 bytes_in 23453923 176161 station_ip 37.129.240.83 176161 port 80 176161 unique_id port 176161 remote_ip 10.8.0.174 176163 username tahmasebi 176163 mac 176163 bytes_out 1316693 176163 bytes_in 13622779 176163 station_ip 5.119.180.185 176163 port 93 176163 unique_id port 176163 remote_ip 10.8.0.126 176164 username tahmasebi 176164 mac 176164 bytes_out 0 176164 bytes_in 0 176164 station_ip 5.119.180.185 176164 port 87 176164 unique_id port 176164 remote_ip 10.8.0.126 176166 username tahmasebi 176166 mac 176166 bytes_out 2207 176166 bytes_in 4596 176166 station_ip 5.119.180.185 176166 port 87 176166 unique_id port 176166 remote_ip 10.8.0.126 176167 username yosefi4232 176167 mac 176167 bytes_out 260015 176167 bytes_in 495725 176167 station_ip 46.225.214.4 176167 port 89 176167 unique_id port 176167 remote_ip 10.8.0.162 176169 username alihosseini1 176169 mac 176169 bytes_out 0 176169 bytes_in 0 176169 station_ip 5.120.78.157 176169 port 92 176169 unique_id port 176162 mac 176162 bytes_out 38068 176162 bytes_in 118189 176162 station_ip 37.129.152.49 176162 port 87 176162 unique_id port 176162 remote_ip 10.8.0.58 176168 username kalantary6037 176168 mac 176168 bytes_out 0 176168 bytes_in 0 176168 station_ip 37.129.235.50 176168 port 86 176168 unique_id port 176171 username yosefi4232 176171 mac 176171 bytes_out 6282 176171 bytes_in 10488 176171 station_ip 46.225.214.4 176171 port 92 176171 unique_id port 176171 remote_ip 10.8.0.162 176174 username tahmasebi 176174 mac 176174 bytes_out 0 176174 bytes_in 0 176174 station_ip 5.119.180.185 176174 port 93 176174 unique_id port 176174 remote_ip 10.8.0.126 176176 username kalantary6037 176176 mac 176176 bytes_out 904698 176176 bytes_in 9697303 176176 station_ip 37.129.235.50 176176 port 86 176176 unique_id port 176176 remote_ip 10.8.0.50 176179 username godarzi 176179 mac 176179 bytes_out 2513185 176179 bytes_in 7988203 176179 station_ip 5.202.25.131 176179 port 76 176179 unique_id port 176179 remote_ip 10.8.0.38 176182 username tahmasebi 176182 kill_reason Another user logged on this global unique id 176182 mac 176182 bytes_out 0 176182 bytes_in 0 176182 station_ip 5.119.180.185 176182 port 91 176182 unique_id port 176183 username sekonji3 176183 kill_reason Relative expiration date has reached 176183 mac 176183 bytes_out 0 176183 bytes_in 0 176183 station_ip 37.129.190.205 176183 port 76 176183 unique_id port 176187 username majidsarmast 176187 kill_reason Another user logged on this global unique id 176187 mac 176187 bytes_out 0 176187 bytes_in 0 176187 station_ip 86.57.114.88 176187 port 89 176187 unique_id port 176187 remote_ip 10.8.0.170 176188 username alihosseini1 176188 mac 176188 bytes_out 0 176188 bytes_in 0 176188 station_ip 5.120.78.157 176188 port 76 176188 unique_id port 176188 remote_ip 10.8.0.234 176189 username barzegar 176189 mac 176189 bytes_out 0 176189 bytes_in 0 176189 station_ip 5.120.72.49 176189 port 76 176189 unique_id port 176189 remote_ip 10.8.0.10 176194 username tahmasebi 176194 mac 176194 bytes_out 237339 176194 bytes_in 1686540 176194 station_ip 5.120.153.142 176194 port 75 176194 unique_id port 176194 remote_ip 10.8.0.126 176196 username aminvpn 176196 mac 176196 bytes_out 0 176196 bytes_in 0 176196 station_ip 5.119.47.102 176196 port 75 176196 unique_id port 176196 remote_ip 10.8.0.58 176198 username aminvpn 176198 mac 176198 bytes_out 0 176198 bytes_in 0 176198 station_ip 5.119.47.102 176198 port 80 176198 unique_id port 176198 remote_ip 10.8.0.58 176199 username aminvpn 176199 mac 176199 bytes_out 0 176199 bytes_in 0 176199 station_ip 37.129.152.49 176199 port 74 176199 unique_id port 176199 remote_ip 10.8.0.58 176200 username aminvpn 176200 mac 176200 bytes_out 0 176200 bytes_in 0 176200 station_ip 5.119.47.102 176200 port 80 176200 unique_id port 176200 remote_ip 10.8.0.58 176202 username shadkam 176202 mac 176202 bytes_out 226484 176202 bytes_in 1338520 176202 station_ip 83.122.239.99 176202 port 89 176202 unique_id port 176202 remote_ip 10.8.0.74 176204 username aminvpn 176204 mac 176204 bytes_out 0 176204 bytes_in 0 176204 station_ip 37.129.152.49 176204 port 80 176204 unique_id port 176204 remote_ip 10.8.0.58 176206 username aminvpn 176206 mac 176206 bytes_out 0 176206 bytes_in 0 176206 station_ip 5.119.47.102 176206 port 80 176206 unique_id port 176206 remote_ip 10.8.0.58 176210 username aminvpn 176210 mac 176210 bytes_out 0 176210 bytes_in 0 176169 remote_ip 10.8.0.234 176170 username hosseine 176170 mac 176170 bytes_out 0 176170 bytes_in 0 176170 station_ip 37.129.180.177 176170 port 74 176170 unique_id port 176177 username amin.saeedi 176177 mac 176177 bytes_out 72692 176177 bytes_in 287346 176177 station_ip 31.56.114.5 176177 port 74 176177 unique_id port 176177 remote_ip 10.8.0.90 176178 username tahmasebi 176178 kill_reason Another user logged on this global unique id 176178 mac 176178 bytes_out 0 176178 bytes_in 0 176178 station_ip 5.119.180.185 176178 port 91 176178 unique_id port 176178 remote_ip 10.8.0.126 176180 username mostafa_es78 176180 mac 176180 bytes_out 1256729 176180 bytes_in 9460571 176180 station_ip 113.203.101.58 176180 port 87 176180 unique_id port 176180 remote_ip 10.8.0.34 176181 username amin.saeedi 176181 mac 176181 bytes_out 48320 176181 bytes_in 115077 176181 station_ip 31.56.114.5 176181 port 92 176181 unique_id port 176181 remote_ip 10.8.0.90 176184 username amin.saeedi 176184 mac 176184 bytes_out 98179 176184 bytes_in 99402 176184 station_ip 31.56.114.5 176184 port 74 176184 unique_id port 176184 remote_ip 10.8.0.90 176185 username barzegar 176185 mac 176185 bytes_out 0 176185 bytes_in 0 176185 station_ip 5.120.72.49 176185 port 74 176185 unique_id port 176185 remote_ip 10.8.0.10 176190 username aminvpn2 176190 mac 176190 bytes_out 0 176190 bytes_in 0 176190 station_ip 5.119.238.174 176190 port 75 176190 unique_id port 176191 username vanila 176191 kill_reason Relative expiration date has reached 176191 mac 176191 bytes_out 0 176191 bytes_in 0 176191 station_ip 37.129.220.148 176191 port 75 176191 unique_id port 176195 username aminvpn 176195 mac 176195 bytes_out 1665832 176195 bytes_in 11872648 176195 station_ip 37.129.152.49 176195 port 80 176195 unique_id port 176195 remote_ip 10.8.0.58 176197 username alihosseini1 176197 mac 176197 bytes_out 0 176197 bytes_in 0 176197 station_ip 5.120.78.157 176197 port 74 176197 unique_id port 176197 remote_ip 10.8.0.234 176203 username majidsarmast 176203 mac 176203 bytes_out 122213 176203 bytes_in 319078 176203 station_ip 37.129.200.38 176203 port 87 176203 unique_id port 176203 remote_ip 10.8.0.170 176205 username aminvpn 176205 mac 176205 bytes_out 0 176205 bytes_in 0 176205 station_ip 5.119.47.102 176205 port 74 176205 unique_id port 176205 remote_ip 10.8.0.58 176209 username aminvpn 176209 mac 176209 bytes_out 0 176209 bytes_in 0 176209 station_ip 5.119.47.102 176209 port 74 176209 unique_id port 176209 remote_ip 10.8.0.58 176213 username aminvpn 176213 mac 176213 bytes_out 0 176213 bytes_in 0 176213 station_ip 5.119.47.102 176213 port 87 176213 unique_id port 176213 remote_ip 10.8.0.58 176215 username aminvpn 176215 mac 176215 bytes_out 0 176215 bytes_in 0 176215 station_ip 5.119.47.102 176215 port 80 176215 unique_id port 176215 remote_ip 10.8.0.58 176220 username barzegar 176220 mac 176220 bytes_out 0 176220 bytes_in 0 176220 station_ip 5.120.72.49 176220 port 87 176220 unique_id port 176220 remote_ip 10.8.0.10 176224 username aminvpn 176224 mac 176224 bytes_out 0 176224 bytes_in 0 176224 station_ip 5.119.47.102 176224 port 80 176224 unique_id port 176224 remote_ip 10.8.0.58 176225 username aminvpn 176225 mac 176225 bytes_out 0 176225 bytes_in 0 176225 station_ip 5.119.47.102 176225 port 84 176225 unique_id port 176225 remote_ip 10.8.0.58 176230 username aminvpn 176230 mac 176230 bytes_out 0 176230 bytes_in 0 176192 port 89 176192 unique_id port 176193 username amin.saeedi 176193 mac 176193 bytes_out 1244207 176193 bytes_in 7543730 176193 station_ip 31.56.114.5 176193 port 74 176193 unique_id port 176193 remote_ip 10.8.0.90 176201 username aminvpn 176201 mac 176201 bytes_out 0 176201 bytes_in 0 176201 station_ip 5.119.47.102 176201 port 74 176201 unique_id port 176201 remote_ip 10.8.0.58 176207 username aminvpn 176207 mac 176207 bytes_out 0 176207 bytes_in 0 176207 station_ip 37.129.152.49 176207 port 74 176207 unique_id port 176207 remote_ip 10.8.0.58 176208 username aminvpn 176208 mac 176208 bytes_out 0 176208 bytes_in 0 176208 station_ip 5.119.47.102 176208 port 80 176208 unique_id port 176208 remote_ip 10.8.0.58 176212 username tahmasebi 176212 mac 176212 bytes_out 0 176212 bytes_in 0 176212 station_ip 5.120.153.142 176212 port 80 176212 unique_id port 176212 remote_ip 10.8.0.126 176218 username aminvpn 176218 mac 176218 bytes_out 0 176218 bytes_in 0 176218 station_ip 5.119.47.102 176218 port 87 176218 unique_id port 176218 remote_ip 10.8.0.58 176221 username tahmasebi 176221 mac 176221 bytes_out 5036 176221 bytes_in 7407 176221 station_ip 5.120.153.142 176221 port 74 176221 unique_id port 176221 remote_ip 10.8.0.126 176223 username malekpoir 176223 mac 176223 bytes_out 0 176223 bytes_in 0 176223 station_ip 5.120.159.78 176223 port 84 176223 unique_id port 176228 username alihosseini1 176228 mac 176228 bytes_out 1010175 176228 bytes_in 9778259 176228 station_ip 5.120.78.157 176228 port 75 176228 unique_id port 176228 remote_ip 10.8.0.234 176229 username aminvpn 176229 mac 176229 bytes_out 0 176229 bytes_in 0 176229 station_ip 5.119.47.102 176229 port 80 176229 unique_id port 176229 remote_ip 10.8.0.58 176233 username aminvpn 176233 mac 176233 bytes_out 0 176233 bytes_in 0 176233 station_ip 5.119.47.102 176233 port 87 176233 unique_id port 176233 remote_ip 10.8.0.58 176236 username aminvpn 176236 mac 176236 bytes_out 0 176236 bytes_in 0 176236 station_ip 5.119.47.102 176236 port 91 176236 unique_id port 176236 remote_ip 10.8.0.58 176237 username aminvpn 176237 mac 176237 bytes_out 0 176237 bytes_in 0 176237 station_ip 5.119.47.102 176237 port 80 176237 unique_id port 176237 remote_ip 10.8.0.58 176240 username mirzaei 176240 kill_reason Relative expiration date has reached 176240 mac 176240 bytes_out 0 176240 bytes_in 0 176240 station_ip 5.119.59.74 176240 port 86 176240 unique_id port 176242 username barzegar 176242 mac 176242 bytes_out 0 176242 bytes_in 0 176242 station_ip 5.120.72.49 176242 port 74 176242 unique_id port 176242 remote_ip 10.8.0.10 176243 username motamedi9772 176243 kill_reason Another user logged on this global unique id 176243 mac 176243 bytes_out 0 176243 bytes_in 0 176243 station_ip 46.225.214.4 176243 port 89 176243 unique_id port 176243 remote_ip 10.8.0.154 176244 username motamedi9772 176244 mac 176244 bytes_out 0 176244 bytes_in 0 176244 station_ip 46.225.214.4 176244 port 89 176244 unique_id port 176245 username barzegar 176245 mac 176245 bytes_out 3390 176245 bytes_in 5995 176245 station_ip 5.120.72.49 176245 port 74 176245 unique_id port 176245 remote_ip 10.8.0.10 176247 username soleymani5056 176247 mac 176247 bytes_out 88164 176247 bytes_in 600243 176247 station_ip 5.119.130.28 176247 port 89 176247 unique_id port 176247 remote_ip 10.8.0.226 176251 username milan 176251 mac 176251 bytes_out 0 176251 bytes_in 0 176210 station_ip 37.129.152.49 176210 port 80 176210 unique_id port 176210 remote_ip 10.8.0.58 176211 username aminvpn 176211 mac 176211 bytes_out 0 176211 bytes_in 0 176211 station_ip 5.119.47.102 176211 port 74 176211 unique_id port 176211 remote_ip 10.8.0.58 176214 username aminvpn 176214 mac 176214 bytes_out 0 176214 bytes_in 0 176214 station_ip 37.129.152.49 176214 port 74 176214 unique_id port 176214 remote_ip 10.8.0.58 176216 username aminvpn 176216 mac 176216 bytes_out 0 176216 bytes_in 0 176216 station_ip 5.119.47.102 176216 port 74 176216 unique_id port 176216 remote_ip 10.8.0.58 176217 username aminvpn 176217 mac 176217 bytes_out 0 176217 bytes_in 0 176217 station_ip 37.129.152.49 176217 port 80 176217 unique_id port 176217 remote_ip 10.8.0.58 176219 username aminvpn 176219 mac 176219 bytes_out 0 176219 bytes_in 0 176219 station_ip 5.119.47.102 176219 port 80 176219 unique_id port 176219 remote_ip 10.8.0.58 176222 username aminvpn 176222 mac 176222 bytes_out 0 176222 bytes_in 0 176222 station_ip 5.119.47.102 176222 port 89 176222 unique_id port 176222 remote_ip 10.8.0.58 176226 username aminvpn 176226 mac 176226 bytes_out 0 176226 bytes_in 0 176226 station_ip 5.119.47.102 176226 port 80 176226 unique_id port 176226 remote_ip 10.8.0.58 176227 username aminvpn 176227 mac 176227 bytes_out 0 176227 bytes_in 0 176227 station_ip 5.119.47.102 176227 port 84 176227 unique_id port 176227 remote_ip 10.8.0.58 176231 username rezaei 176231 mac 176231 bytes_out 79258 176231 bytes_in 139179 176231 station_ip 5.119.213.115 176231 port 86 176231 unique_id port 176231 remote_ip 10.8.0.198 176234 username barzegar 176234 mac 176234 bytes_out 2025 176234 bytes_in 4742 176234 station_ip 5.120.72.49 176234 port 86 176234 unique_id port 176234 remote_ip 10.8.0.10 176235 username yaghobi 176235 mac 176235 bytes_out 1616 176235 bytes_in 4018 176235 station_ip 37.129.135.195 176235 port 80 176235 unique_id port 176235 remote_ip 10.8.0.138 176239 username aminvpn 176239 mac 176239 bytes_out 0 176239 bytes_in 0 176239 station_ip 5.119.47.102 176239 port 86 176239 unique_id port 176239 remote_ip 10.8.0.58 176246 username barzegar 176246 mac 176246 bytes_out 0 176246 bytes_in 0 176246 station_ip 5.120.72.49 176246 port 89 176246 unique_id port 176246 remote_ip 10.8.0.10 176248 username barzegar 176248 mac 176248 bytes_out 0 176248 bytes_in 0 176248 station_ip 5.120.72.49 176248 port 89 176248 unique_id port 176248 remote_ip 10.8.0.10 176249 username barzegar 176249 mac 176249 bytes_out 0 176249 bytes_in 0 176249 station_ip 5.120.72.49 176249 port 91 176249 unique_id port 176249 remote_ip 10.8.0.10 176250 username milan 176250 mac 176250 bytes_out 0 176250 bytes_in 0 176250 station_ip 5.120.129.249 176250 port 91 176250 unique_id port 176250 remote_ip 10.8.0.182 176254 username khademi 176254 kill_reason Another user logged on this global unique id 176254 mac 176254 bytes_out 0 176254 bytes_in 0 176254 station_ip 37.129.154.227 176254 port 88 176254 unique_id port 176257 username barzegar 176257 mac 176257 bytes_out 0 176257 bytes_in 0 176257 station_ip 5.120.72.49 176257 port 75 176257 unique_id port 176257 remote_ip 10.8.0.10 176262 username milan 176262 mac 176262 bytes_out 1823938 176262 bytes_in 17301685 176262 station_ip 5.120.129.249 176262 port 91 176262 unique_id port 176262 remote_ip 10.8.0.182 176264 username yaghobi 176230 station_ip 5.119.47.102 176230 port 75 176230 unique_id port 176230 remote_ip 10.8.0.58 176232 username aminvpn 176232 mac 176232 bytes_out 0 176232 bytes_in 0 176232 station_ip 5.119.47.102 176232 port 80 176232 unique_id port 176232 remote_ip 10.8.0.58 176238 username mirzaei 176238 kill_reason Relative expiration date has reached 176238 mac 176238 bytes_out 0 176238 bytes_in 0 176238 station_ip 5.119.59.74 176238 port 80 176238 unique_id port 176241 username malekpoir 176241 mac 176241 bytes_out 122081 176241 bytes_in 1188251 176241 station_ip 5.120.159.78 176241 port 74 176241 unique_id port 176241 remote_ip 10.8.0.18 176255 username shadkam 176255 mac 176255 bytes_out 1038329 176255 bytes_in 11502153 176255 station_ip 37.129.217.255 176255 port 92 176255 unique_id port 176255 remote_ip 10.8.0.74 176260 username motamedi9772 176260 mac 176260 bytes_out 0 176260 bytes_in 0 176260 station_ip 37.129.230.198 176260 port 74 176260 unique_id port 176260 remote_ip 10.8.0.154 176263 username milan 176263 mac 176263 bytes_out 0 176263 bytes_in 0 176263 station_ip 5.119.68.145 176263 port 84 176263 unique_id port 176263 remote_ip 10.8.0.182 176267 username motamedi9772 176267 mac 176267 bytes_out 716296 176267 bytes_in 1932372 176267 station_ip 37.129.230.198 176267 port 74 176267 unique_id port 176267 remote_ip 10.8.0.154 176269 username milan 176269 mac 176269 bytes_out 0 176269 bytes_in 0 176269 station_ip 5.119.68.145 176269 port 80 176269 unique_id port 176269 remote_ip 10.8.0.182 176273 username motamedi9772 176273 mac 176273 bytes_out 0 176273 bytes_in 0 176273 station_ip 37.129.230.198 176273 port 80 176273 unique_id port 176273 remote_ip 10.8.0.154 176274 username alihosseini1 176274 mac 176274 bytes_out 0 176274 bytes_in 0 176274 station_ip 5.120.78.157 176274 port 84 176274 unique_id port 176274 remote_ip 10.8.0.234 176277 username barzegar 176277 kill_reason Maximum check online fails reached 176277 mac 176277 bytes_out 0 176277 bytes_in 0 176277 station_ip 5.120.72.49 176277 port 91 176277 unique_id port 176282 username motamedi9772 176282 mac 176282 bytes_out 1585176 176282 bytes_in 8320980 176282 station_ip 37.129.230.198 176282 port 80 176282 unique_id port 176282 remote_ip 10.8.0.154 176289 username morteza 176289 mac 176289 bytes_out 261328 176289 bytes_in 3970216 176289 station_ip 37.129.225.243 176289 port 92 176289 unique_id port 176289 remote_ip 10.8.0.174 176290 username morteza 176290 mac 176290 bytes_out 0 176290 bytes_in 0 176290 station_ip 37.129.225.243 176290 port 92 176290 unique_id port 176290 remote_ip 10.8.0.174 176292 username khademi 176292 kill_reason Another user logged on this global unique id 176292 mac 176292 bytes_out 0 176292 bytes_in 0 176292 station_ip 37.129.154.227 176292 port 88 176292 unique_id port 176294 username morteza 176294 mac 176294 bytes_out 0 176294 bytes_in 0 176294 station_ip 37.129.225.243 176294 port 92 176294 unique_id port 176294 remote_ip 10.8.0.174 176297 username morteza 176297 mac 176297 bytes_out 0 176297 bytes_in 0 176297 station_ip 37.129.225.243 176297 port 92 176297 unique_id port 176297 remote_ip 10.8.0.174 176298 username aminvpn 176298 mac 176298 bytes_out 0 176298 bytes_in 0 176298 station_ip 5.119.47.102 176298 port 93 176298 unique_id port 176298 remote_ip 10.8.0.58 176301 username morteza 176301 mac 176301 bytes_out 0 176301 bytes_in 0 176301 station_ip 37.129.225.243 176301 port 75 176251 station_ip 5.120.129.249 176251 port 92 176251 unique_id port 176251 remote_ip 10.8.0.182 176252 username rezaei 176252 mac 176252 bytes_out 2911052 176252 bytes_in 34198073 176252 station_ip 5.119.213.115 176252 port 75 176252 unique_id port 176252 remote_ip 10.8.0.198 176253 username motamedi9772 176253 mac 176253 bytes_out 2116944 176253 bytes_in 16825634 176253 station_ip 37.129.230.198 176253 port 74 176253 unique_id port 176253 remote_ip 10.8.0.154 176256 username motamedi9772 176256 mac 176256 bytes_out 0 176256 bytes_in 0 176256 station_ip 37.129.230.198 176256 port 74 176256 unique_id port 176256 remote_ip 10.8.0.154 176258 username motamedi9772 176258 mac 176258 bytes_out 0 176258 bytes_in 0 176258 station_ip 37.129.230.198 176258 port 74 176258 unique_id port 176258 remote_ip 10.8.0.154 176259 username alihosseini1 176259 mac 176259 bytes_out 3498772 176259 bytes_in 30783425 176259 station_ip 5.120.78.157 176259 port 84 176259 unique_id port 176259 remote_ip 10.8.0.234 176261 username yaghobi 176261 mac 176261 bytes_out 774106 176261 bytes_in 8122922 176261 station_ip 37.129.135.195 176261 port 89 176261 unique_id port 176261 remote_ip 10.8.0.138 176265 username aminvpn 176265 mac 176265 bytes_out 85989 176265 bytes_in 256795 176265 station_ip 5.119.47.102 176265 port 80 176265 unique_id port 176265 remote_ip 10.8.0.58 176268 username aminvpn 176268 mac 176268 bytes_out 0 176268 bytes_in 0 176268 station_ip 37.129.198.116 176268 port 75 176268 unique_id port 176268 remote_ip 10.8.0.58 176272 username yaghobi 176272 mac 176272 bytes_out 14293 176272 bytes_in 19882 176272 station_ip 37.129.139.224 176272 port 84 176272 unique_id port 176272 remote_ip 10.8.0.138 176275 username barzegar 176275 mac 176275 bytes_out 0 176275 bytes_in 0 176275 station_ip 5.120.72.49 176275 port 89 176275 unique_id port 176275 remote_ip 10.8.0.10 176276 username barzegar 176276 mac 176276 bytes_out 0 176276 bytes_in 0 176276 station_ip 5.120.72.49 176276 port 93 176276 unique_id port 176276 remote_ip 10.8.0.10 176279 username khademi 176279 kill_reason Another user logged on this global unique id 176279 mac 176279 bytes_out 0 176279 bytes_in 0 176279 station_ip 37.129.154.227 176279 port 88 176279 unique_id port 176281 username yaghobi 176281 mac 176281 bytes_out 989051 176281 bytes_in 12287217 176281 station_ip 37.129.139.224 176281 port 93 176281 unique_id port 176281 remote_ip 10.8.0.138 176283 username morteza 176283 mac 176283 bytes_out 2011638 176283 bytes_in 31351662 176283 station_ip 37.129.225.243 176283 port 92 176283 unique_id port 176283 remote_ip 10.8.0.174 176284 username motamedi9772 176284 mac 176284 bytes_out 0 176284 bytes_in 0 176284 station_ip 37.129.230.198 176284 port 80 176284 unique_id port 176284 remote_ip 10.8.0.154 176286 username mosi 176286 kill_reason Another user logged on this global unique id 176286 mac 176286 bytes_out 0 176286 bytes_in 0 176286 station_ip 151.235.101.178 176286 port 90 176286 unique_id port 176286 remote_ip 10.8.0.142 176288 username motamedi9772 176288 mac 176288 bytes_out 0 176288 bytes_in 0 176288 station_ip 37.129.230.198 176288 port 80 176288 unique_id port 176288 remote_ip 10.8.0.154 176304 username khademi 176304 kill_reason Another user logged on this global unique id 176304 mac 176304 bytes_out 0 176304 bytes_in 0 176304 station_ip 37.129.154.227 176304 port 88 176304 unique_id port 176308 username aminvpn 176308 mac 176308 bytes_out 0 176308 bytes_in 0 176264 mac 176264 bytes_out 64472 176264 bytes_in 111368 176264 station_ip 37.129.135.195 176264 port 75 176264 unique_id port 176264 remote_ip 10.8.0.138 176266 username milan 176266 mac 176266 bytes_out 0 176266 bytes_in 0 176266 station_ip 5.119.68.145 176266 port 89 176266 unique_id port 176266 remote_ip 10.8.0.182 176270 username motamedi9772 176270 mac 176270 bytes_out 0 176270 bytes_in 0 176270 station_ip 37.129.230.198 176270 port 75 176270 unique_id port 176270 remote_ip 10.8.0.154 176271 username motamedi9772 176271 mac 176271 bytes_out 0 176271 bytes_in 0 176271 station_ip 37.129.230.198 176271 port 80 176271 unique_id port 176271 remote_ip 10.8.0.154 176278 username mehdizare 176278 kill_reason Another user logged on this global unique id 176278 mac 176278 bytes_out 0 176278 bytes_in 0 176278 station_ip 83.122.83.181 176278 port 89 176278 unique_id port 176278 remote_ip 10.8.0.210 176280 username godarzi 176280 kill_reason Another user logged on this global unique id 176280 mac 176280 bytes_out 0 176280 bytes_in 0 176280 station_ip 5.202.25.131 176280 port 87 176280 unique_id port 176280 remote_ip 10.8.0.38 176285 username morteza 176285 mac 176285 bytes_out 0 176285 bytes_in 0 176285 station_ip 37.129.225.243 176285 port 92 176285 unique_id port 176285 remote_ip 10.8.0.174 176287 username motamedi9772 176287 mac 176287 bytes_out 0 176287 bytes_in 0 176287 station_ip 37.129.230.198 176287 port 80 176287 unique_id port 176287 remote_ip 10.8.0.154 176291 username morteza 176291 mac 176291 bytes_out 0 176291 bytes_in 0 176291 station_ip 37.129.225.243 176291 port 92 176291 unique_id port 176291 remote_ip 10.8.0.174 176293 username morteza 176293 mac 176293 bytes_out 0 176293 bytes_in 0 176293 station_ip 37.129.225.243 176293 port 92 176293 unique_id port 176293 remote_ip 10.8.0.174 176295 username barzegar 176295 mac 176295 bytes_out 0 176295 bytes_in 0 176295 station_ip 5.119.128.179 176295 port 92 176295 unique_id port 176295 remote_ip 10.8.0.10 176296 username aminvpn 176296 mac 176296 bytes_out 177816 176296 bytes_in 528785 176296 station_ip 5.119.47.102 176296 port 75 176296 unique_id port 176296 remote_ip 10.8.0.58 176299 username morteza 176299 mac 176299 bytes_out 0 176299 bytes_in 0 176299 station_ip 37.129.225.243 176299 port 75 176299 unique_id port 176299 remote_ip 10.8.0.174 176300 username aminvpn 176300 mac 176300 bytes_out 0 176300 bytes_in 0 176300 station_ip 5.119.47.102 176300 port 92 176300 unique_id port 176300 remote_ip 10.8.0.58 176302 username aminvpn 176302 mac 176302 bytes_out 0 176302 bytes_in 0 176302 station_ip 5.119.47.102 176302 port 93 176302 unique_id port 176302 remote_ip 10.8.0.58 176305 username mosi 176305 mac 176305 bytes_out 0 176305 bytes_in 0 176305 station_ip 151.235.101.178 176305 port 90 176305 unique_id port 176307 username aminvpn 176307 mac 176307 bytes_out 0 176307 bytes_in 0 176307 station_ip 5.119.47.102 176307 port 92 176307 unique_id port 176307 remote_ip 10.8.0.58 176313 username motamedi9772 176313 mac 176313 bytes_out 1355108 176313 bytes_in 12952466 176313 station_ip 37.129.230.198 176313 port 80 176313 unique_id port 176313 remote_ip 10.8.0.154 176315 username aminvpn 176315 mac 176315 bytes_out 0 176315 bytes_in 0 176315 station_ip 5.119.47.102 176315 port 90 176315 unique_id port 176315 remote_ip 10.8.0.58 176318 username jafari 176318 mac 176318 bytes_out 4022624 176301 unique_id port 176301 remote_ip 10.8.0.174 176303 username aminvpn 176303 kill_reason Killed by admin system 176303 mac 176303 bytes_out 0 176303 bytes_in 0 176303 station_ip 5.119.47.102 176303 port 75 176303 unique_id port 176303 remote_ip 10.8.0.58 176306 username morteza 176306 mac 176306 bytes_out 0 176306 bytes_in 0 176306 station_ip 37.129.225.243 176306 port 75 176306 unique_id port 176306 remote_ip 10.8.0.174 176310 username aminvpn 176310 mac 176310 bytes_out 0 176310 bytes_in 0 176310 station_ip 5.119.47.102 176310 port 75 176310 unique_id port 176310 remote_ip 10.8.0.58 176311 username aminvpn 176311 mac 176311 bytes_out 0 176311 bytes_in 0 176311 station_ip 5.119.47.102 176311 port 90 176311 unique_id port 176311 remote_ip 10.8.0.58 176312 username aminvpn 176312 mac 176312 bytes_out 0 176312 bytes_in 0 176312 station_ip 5.119.47.102 176312 port 75 176312 unique_id port 176312 remote_ip 10.8.0.58 176314 username morteza 176314 mac 176314 bytes_out 0 176314 bytes_in 0 176314 station_ip 37.129.225.243 176314 port 75 176314 unique_id port 176314 remote_ip 10.8.0.174 176317 username morteza 176317 mac 176317 bytes_out 0 176317 bytes_in 0 176317 station_ip 37.129.225.243 176317 port 90 176317 unique_id port 176317 remote_ip 10.8.0.174 176323 username aminvpn 176323 mac 176323 bytes_out 11733 176323 bytes_in 21445 176323 station_ip 5.119.47.102 176323 port 75 176323 unique_id port 176323 remote_ip 10.8.0.58 176329 username morteza 176329 mac 176329 bytes_out 0 176329 bytes_in 0 176329 station_ip 37.129.225.243 176329 port 93 176329 unique_id port 176329 remote_ip 10.8.0.174 176331 username morteza 176331 mac 176331 bytes_out 0 176331 bytes_in 0 176331 station_ip 37.129.225.243 176331 port 75 176331 unique_id port 176331 remote_ip 10.8.0.174 176332 username khademi 176332 kill_reason Another user logged on this global unique id 176332 mac 176332 bytes_out 0 176332 bytes_in 0 176332 station_ip 37.129.154.227 176332 port 88 176332 unique_id port 176340 username mohammadjavad 176340 mac 176340 bytes_out 2851869 176340 bytes_in 41974472 176340 station_ip 83.122.143.171 176340 port 93 176340 unique_id port 176340 remote_ip 10.8.0.110 176341 username alihosseini1 176341 mac 176341 bytes_out 1554277 176341 bytes_in 10253040 176341 station_ip 5.120.78.157 176341 port 84 176341 unique_id port 176341 remote_ip 10.8.0.234 176345 username morteza 176345 mac 176345 bytes_out 0 176345 bytes_in 0 176345 station_ip 37.129.225.243 176345 port 99 176345 unique_id port 176345 remote_ip 10.8.0.174 176346 username morteza 176346 mac 176346 bytes_out 0 176346 bytes_in 0 176346 station_ip 37.129.225.243 176346 port 99 176346 unique_id port 176346 remote_ip 10.8.0.174 176348 username shadkam 176348 mac 176348 bytes_out 799956 176348 bytes_in 7323807 176348 station_ip 37.129.152.59 176348 port 84 176348 unique_id port 176348 remote_ip 10.8.0.74 176351 username milan 176351 kill_reason Another user logged on this global unique id 176351 mac 176351 bytes_out 0 176351 bytes_in 0 176351 station_ip 5.119.68.145 176351 port 74 176351 unique_id port 176351 remote_ip 10.8.0.182 176352 username morteza 176352 mac 176352 bytes_out 46496 176352 bytes_in 612625 176352 station_ip 37.129.225.243 176352 port 75 176352 unique_id port 176352 remote_ip 10.8.0.174 176356 username morteza 176356 mac 176356 bytes_out 0 176356 bytes_in 0 176356 station_ip 37.129.225.243 176356 port 94 176308 station_ip 5.119.47.102 176308 port 75 176308 unique_id port 176308 remote_ip 10.8.0.58 176309 username aminvpn 176309 mac 176309 bytes_out 0 176309 bytes_in 0 176309 station_ip 5.119.47.102 176309 port 90 176309 unique_id port 176309 remote_ip 10.8.0.58 176316 username barzegar 176316 mac 176316 bytes_out 0 176316 bytes_in 0 176316 station_ip 5.119.128.179 176316 port 90 176316 unique_id port 176316 remote_ip 10.8.0.10 176319 username barzegar 176319 mac 176319 bytes_out 0 176319 bytes_in 0 176319 station_ip 5.119.128.179 176319 port 94 176319 unique_id port 176319 remote_ip 10.8.0.10 176320 username morteza 176320 kill_reason Maximum check online fails reached 176320 mac 176320 bytes_out 0 176320 bytes_in 0 176320 station_ip 37.129.225.243 176320 port 92 176320 unique_id port 176321 username morteza 176321 mac 176321 bytes_out 0 176321 bytes_in 0 176321 station_ip 37.129.225.243 176321 port 94 176321 unique_id port 176321 remote_ip 10.8.0.174 176325 username barzegar 176325 mac 176325 bytes_out 0 176325 bytes_in 0 176325 station_ip 5.119.128.179 176325 port 75 176325 unique_id port 176325 remote_ip 10.8.0.10 176328 username hamid 176328 kill_reason Relative expiration date has reached 176328 mac 176328 bytes_out 0 176328 bytes_in 0 176328 station_ip 37.129.230.125 176328 port 93 176328 unique_id port 176330 username barzegar 176330 mac 176330 bytes_out 6533 176330 bytes_in 9647 176330 station_ip 5.119.128.179 176330 port 75 176330 unique_id port 176330 remote_ip 10.8.0.10 176333 username morteza 176333 mac 176333 bytes_out 0 176333 bytes_in 0 176333 station_ip 37.129.225.243 176333 port 94 176333 unique_id port 176333 remote_ip 10.8.0.174 176334 username kalantary6037 176334 mac 176334 bytes_out 3759715 176334 bytes_in 33970413 176334 station_ip 37.129.192.130 176334 port 76 176334 unique_id port 176334 remote_ip 10.8.0.50 176336 username barzegar 176336 kill_reason Maximum check online fails reached 176336 mac 176336 bytes_out 0 176336 bytes_in 0 176336 station_ip 5.119.128.179 176336 port 96 176336 unique_id port 176342 username barzegar 176342 mac 176342 bytes_out 0 176342 bytes_in 0 176342 station_ip 5.119.128.179 176342 port 93 176342 unique_id port 176342 remote_ip 10.8.0.10 176343 username godarzi 176343 kill_reason Another user logged on this global unique id 176343 mac 176343 bytes_out 0 176343 bytes_in 0 176343 station_ip 5.202.25.131 176343 port 87 176343 unique_id port 176347 username mostafa_es78 176347 mac 176347 bytes_out 2678542 176347 bytes_in 27346848 176347 station_ip 113.203.101.58 176347 port 94 176347 unique_id port 176347 remote_ip 10.8.0.34 176349 username mosi 176349 mac 176349 bytes_out 1383393 176349 bytes_in 13155505 176349 station_ip 151.235.101.178 176349 port 75 176349 unique_id port 176349 remote_ip 10.8.0.142 176350 username khademi 176350 kill_reason Another user logged on this global unique id 176350 mac 176350 bytes_out 0 176350 bytes_in 0 176350 station_ip 37.129.154.227 176350 port 88 176350 unique_id port 176354 username alihosseini1 176354 mac 176354 bytes_out 136623 176354 bytes_in 345130 176354 station_ip 5.120.78.157 176354 port 98 176354 unique_id port 176354 remote_ip 10.8.0.234 176366 username zahra1101 176366 kill_reason Another user logged on this global unique id 176366 mac 176366 bytes_out 0 176366 bytes_in 0 176366 station_ip 5.120.68.177 176366 port 93 176366 unique_id port 176369 username morteza 176369 mac 176369 bytes_out 0 176369 bytes_in 0 176369 station_ip 37.129.225.243 176318 bytes_in 40232828 176318 station_ip 89.47.144.123 176318 port 94 176318 unique_id port 176318 remote_ip 10.8.0.86 176322 username khademi 176322 kill_reason Another user logged on this global unique id 176322 mac 176322 bytes_out 0 176322 bytes_in 0 176322 station_ip 37.129.154.227 176322 port 88 176322 unique_id port 176324 username shadkam 176324 mac 176324 bytes_out 1290080 176324 bytes_in 13026171 176324 station_ip 83.122.229.42 176324 port 93 176324 unique_id port 176324 remote_ip 10.8.0.74 176326 username hamid 176326 kill_reason Relative expiration date has reached 176326 mac 176326 bytes_out 0 176326 bytes_in 0 176326 station_ip 37.129.230.125 176326 port 93 176326 unique_id port 176327 username morteza 176327 mac 176327 bytes_out 610012 176327 bytes_in 9914434 176327 station_ip 37.129.225.243 176327 port 94 176327 unique_id port 176327 remote_ip 10.8.0.174 176335 username morteza 176335 mac 176335 bytes_out 1636 176335 bytes_in 5129 176335 station_ip 37.129.225.243 176335 port 76 176335 unique_id port 176335 remote_ip 10.8.0.174 176337 username morteza 176337 mac 176337 bytes_out 0 176337 bytes_in 0 176337 station_ip 37.129.225.243 176337 port 76 176337 unique_id port 176337 remote_ip 10.8.0.174 176338 username barzegar 176338 mac 176338 bytes_out 0 176338 bytes_in 0 176338 station_ip 5.119.128.179 176338 port 76 176338 unique_id port 176338 remote_ip 10.8.0.10 176339 username morteza 176339 mac 176339 bytes_out 0 176339 bytes_in 0 176339 station_ip 37.129.225.243 176339 port 76 176339 unique_id port 176339 remote_ip 10.8.0.174 176344 username morteza 176344 kill_reason Maximum check online fails reached 176344 mac 176344 bytes_out 0 176344 bytes_in 0 176344 station_ip 37.129.225.243 176344 port 76 176344 unique_id port 176353 username kalantary6037 176353 mac 176353 bytes_out 745703 176353 bytes_in 6550407 176353 station_ip 37.129.192.130 176353 port 97 176353 unique_id port 176353 remote_ip 10.8.0.50 176355 username barzegar 176355 mac 176355 bytes_out 0 176355 bytes_in 0 176355 station_ip 5.119.128.179 176355 port 94 176355 unique_id port 176355 remote_ip 10.8.0.10 176357 username morteza 176357 mac 176357 bytes_out 0 176357 bytes_in 0 176357 station_ip 37.129.225.243 176357 port 94 176357 unique_id port 176357 remote_ip 10.8.0.174 176358 username mirzaei6046 176358 mac 176358 bytes_out 2247547 176358 bytes_in 25616967 176358 station_ip 5.119.59.74 176358 port 95 176358 unique_id port 176358 remote_ip 10.8.0.246 176359 username fezealinaghi 176359 mac 176359 bytes_out 3754312 176359 bytes_in 41353767 176359 station_ip 37.129.199.179 176359 port 80 176359 unique_id port 176359 remote_ip 10.8.0.202 176362 username kalantary6037 176362 mac 176362 bytes_out 90344 176362 bytes_in 450020 176362 station_ip 37.129.192.130 176362 port 84 176362 unique_id port 176362 remote_ip 10.8.0.50 176363 username morteza 176363 mac 176363 bytes_out 0 176363 bytes_in 0 176363 station_ip 37.129.225.243 176363 port 80 176363 unique_id port 176363 remote_ip 10.8.0.174 176364 username morteza 176364 mac 176364 bytes_out 0 176364 bytes_in 0 176364 station_ip 37.129.225.243 176364 port 80 176364 unique_id port 176364 remote_ip 10.8.0.174 176367 username morteza 176367 mac 176367 bytes_out 0 176367 bytes_in 0 176367 station_ip 37.129.225.243 176367 port 84 176367 unique_id port 176367 remote_ip 10.8.0.174 176370 username jafari 176370 kill_reason Another user logged on this global unique id 176370 mac 176356 unique_id port 176356 remote_ip 10.8.0.174 176360 username jafari 176360 kill_reason Another user logged on this global unique id 176360 mac 176360 bytes_out 0 176360 bytes_in 0 176360 station_ip 89.47.144.123 176360 port 90 176360 unique_id port 176360 remote_ip 10.8.0.86 176361 username zahra1101 176361 kill_reason Another user logged on this global unique id 176361 mac 176361 bytes_out 0 176361 bytes_in 0 176361 station_ip 5.120.68.177 176361 port 93 176361 unique_id port 176361 remote_ip 10.8.0.190 176365 username barzegar 176365 mac 176365 bytes_out 0 176365 bytes_in 0 176365 station_ip 5.119.128.179 176365 port 80 176365 unique_id port 176365 remote_ip 10.8.0.10 176368 username morteza 176368 mac 176368 bytes_out 0 176368 bytes_in 0 176368 station_ip 37.129.225.243 176368 port 84 176368 unique_id port 176368 remote_ip 10.8.0.174 176371 username morteza 176371 mac 176371 bytes_out 0 176371 bytes_in 0 176371 station_ip 37.129.225.243 176371 port 84 176371 unique_id port 176371 remote_ip 10.8.0.174 176373 username morteza 176373 mac 176373 bytes_out 0 176373 bytes_in 0 176373 station_ip 37.129.225.243 176373 port 84 176373 unique_id port 176373 remote_ip 10.8.0.174 176376 username morteza 176376 mac 176376 bytes_out 0 176376 bytes_in 0 176376 station_ip 37.129.225.243 176376 port 99 176376 unique_id port 176376 remote_ip 10.8.0.174 176377 username zahra1101 176377 kill_reason Another user logged on this global unique id 176377 mac 176377 bytes_out 0 176377 bytes_in 0 176377 station_ip 5.120.68.177 176377 port 93 176377 unique_id port 176379 username barzegar 176379 mac 176379 bytes_out 0 176379 bytes_in 0 176379 station_ip 5.119.128.179 176379 port 99 176379 unique_id port 176379 remote_ip 10.8.0.10 176381 username yaghobi 176381 mac 176381 bytes_out 463882 176381 bytes_in 1359820 176381 station_ip 37.129.231.11 176381 port 80 176381 unique_id port 176381 remote_ip 10.8.0.138 176382 username morteza 176382 mac 176382 bytes_out 0 176382 bytes_in 0 176382 station_ip 37.129.225.243 176382 port 80 176382 unique_id port 176382 remote_ip 10.8.0.174 176383 username morteza 176383 kill_reason Maximum check online fails reached 176383 mac 176383 bytes_out 0 176383 bytes_in 0 176383 station_ip 37.129.225.243 176383 port 80 176383 unique_id port 176386 username morteza 176386 mac 176386 bytes_out 0 176386 bytes_in 0 176386 station_ip 37.129.225.243 176386 port 103 176386 unique_id port 176386 remote_ip 10.8.0.174 176388 username saeeddamghani 176388 mac 176388 bytes_out 0 176388 bytes_in 0 176388 station_ip 5.119.95.1 176388 port 103 176388 unique_id port 176388 remote_ip 10.8.0.122 176395 username saeeddamghani 176395 mac 176395 bytes_out 248028 176395 bytes_in 1747339 176395 station_ip 5.119.95.1 176395 port 106 176395 unique_id port 176395 remote_ip 10.8.0.122 176397 username houshang 176397 mac 176397 bytes_out 162350 176397 bytes_in 289563 176397 station_ip 5.119.198.201 176397 port 107 176397 unique_id port 176397 remote_ip 10.8.0.82 176399 username morteza 176399 kill_reason Maximum check online fails reached 176399 mac 176399 bytes_out 0 176399 bytes_in 0 176399 station_ip 37.129.225.243 176399 port 108 176399 unique_id port 176400 username aminvpn 176400 mac 176400 bytes_out 0 176400 bytes_in 0 176400 station_ip 37.129.152.49 176400 port 75 176400 unique_id port 176400 remote_ip 10.8.0.58 176409 username barzegar 176409 kill_reason Maximum check online fails reached 176409 mac 176409 bytes_out 0 176369 port 97 176369 unique_id port 176369 remote_ip 10.8.0.174 176380 username morteza 176380 mac 176380 bytes_out 0 176380 bytes_in 0 176380 station_ip 37.129.225.243 176380 port 101 176380 unique_id port 176380 remote_ip 10.8.0.174 176384 username morteza 176384 mac 176384 bytes_out 0 176384 bytes_in 0 176384 station_ip 37.129.225.243 176384 port 103 176384 unique_id port 176384 remote_ip 10.8.0.174 176385 username morteza 176385 mac 176385 bytes_out 0 176385 bytes_in 0 176385 station_ip 37.129.225.243 176385 port 103 176385 unique_id port 176385 remote_ip 10.8.0.174 176387 username saeeddamghani 176387 mac 176387 bytes_out 0 176387 bytes_in 0 176387 station_ip 5.119.95.1 176387 port 103 176387 unique_id port 176387 remote_ip 10.8.0.122 176389 username morteza 176389 mac 176389 bytes_out 0 176389 bytes_in 0 176389 station_ip 37.129.225.243 176389 port 105 176389 unique_id port 176389 remote_ip 10.8.0.174 176390 username saeeddamghani 176390 mac 176390 bytes_out 0 176390 bytes_in 0 176390 station_ip 5.119.95.1 176390 port 103 176390 unique_id port 176390 remote_ip 10.8.0.122 176391 username jafari 176391 kill_reason Another user logged on this global unique id 176391 mac 176391 bytes_out 0 176391 bytes_in 0 176391 station_ip 89.47.144.123 176391 port 90 176391 unique_id port 176393 username barzegar 176393 mac 176393 bytes_out 3288 176393 bytes_in 4970 176393 station_ip 5.119.128.179 176393 port 105 176393 unique_id port 176393 remote_ip 10.8.0.10 176402 username aminvpn 176402 mac 176402 bytes_out 0 176402 bytes_in 0 176402 station_ip 5.119.156.93 176402 port 99 176402 unique_id port 176402 remote_ip 10.8.0.58 176405 username khademi 176405 kill_reason Another user logged on this global unique id 176405 mac 176405 bytes_out 0 176405 bytes_in 0 176405 station_ip 37.129.154.227 176405 port 88 176405 unique_id port 176406 username aminvpn 176406 mac 176406 bytes_out 0 176406 bytes_in 0 176406 station_ip 37.129.152.49 176406 port 100 176406 unique_id port 176406 remote_ip 10.8.0.58 176412 username mehdizare 176412 kill_reason Another user logged on this global unique id 176412 mac 176412 bytes_out 0 176412 bytes_in 0 176412 station_ip 83.122.83.181 176412 port 89 176412 unique_id port 176416 username mostafa_es78 176416 mac 176416 bytes_out 375737 176416 bytes_in 4124086 176416 station_ip 113.203.101.58 176416 port 107 176416 unique_id port 176416 remote_ip 10.8.0.34 176417 username hoorieh 176417 mac 176417 bytes_out 2249671 176417 bytes_in 29014614 176417 station_ip 5.119.115.213 176417 port 102 176417 unique_id port 176417 remote_ip 10.8.0.62 176422 username morteza 176422 kill_reason Maximum number of concurrent logins reached 176422 mac 176422 bytes_out 0 176422 bytes_in 0 176422 station_ip 37.129.225.243 176422 port 75 176422 unique_id port 176425 username barzegar 176425 mac 176425 bytes_out 0 176425 bytes_in 0 176425 station_ip 5.119.128.179 176425 port 75 176425 unique_id port 176425 remote_ip 10.8.0.10 176427 username hoorieh 176427 mac 176427 bytes_out 1830388 176427 bytes_in 30042175 176427 station_ip 5.119.115.213 176427 port 107 176427 unique_id port 176427 remote_ip 10.8.0.62 176428 username zahra1101 176428 kill_reason Another user logged on this global unique id 176428 mac 176428 bytes_out 0 176428 bytes_in 0 176428 station_ip 5.120.68.177 176428 port 93 176428 unique_id port 176430 username jafari 176430 kill_reason Another user logged on this global unique id 176430 mac 176430 bytes_out 0 176370 bytes_out 0 176370 bytes_in 0 176370 station_ip 89.47.144.123 176370 port 90 176370 unique_id port 176372 username mostafa_es78 176372 mac 176372 bytes_out 2396066 176372 bytes_in 26165615 176372 station_ip 113.203.101.58 176372 port 75 176372 unique_id port 176372 remote_ip 10.8.0.34 176374 username morteza 176374 mac 176374 bytes_out 0 176374 bytes_in 0 176374 station_ip 37.129.225.243 176374 port 99 176374 unique_id port 176374 remote_ip 10.8.0.174 176375 username morteza 176375 kill_reason Maximum check online fails reached 176375 mac 176375 bytes_out 0 176375 bytes_in 0 176375 station_ip 37.129.225.243 176375 port 84 176375 unique_id port 176378 username morteza 176378 mac 176378 bytes_out 0 176378 bytes_in 0 176378 station_ip 37.129.225.243 176378 port 99 176378 unique_id port 176378 remote_ip 10.8.0.174 176392 username aminvpn 176392 mac 176392 bytes_out 479673 176392 bytes_in 313407 176392 station_ip 37.129.152.49 176392 port 75 176392 unique_id port 176392 remote_ip 10.8.0.58 176394 username hatami 176394 mac 176394 bytes_out 605495 176394 bytes_in 6193605 176394 station_ip 151.235.78.144 176394 port 98 176394 unique_id port 176394 remote_ip 10.8.0.98 176396 username aminvpn 176396 mac 176396 bytes_out 0 176396 bytes_in 0 176396 station_ip 5.119.156.93 176396 port 109 176396 unique_id port 176396 remote_ip 10.8.0.58 176398 username yaghobi 176398 mac 176398 bytes_out 382516 176398 bytes_in 487427 176398 station_ip 37.129.231.11 176398 port 99 176398 unique_id port 176398 remote_ip 10.8.0.138 176401 username mostafa_es78 176401 mac 176401 bytes_out 2601259 176401 bytes_in 33269779 176401 station_ip 113.203.101.58 176401 port 100 176401 unique_id port 176401 remote_ip 10.8.0.34 176403 username morteza 176403 mac 176403 bytes_out 0 176403 bytes_in 0 176403 station_ip 37.129.225.243 176403 port 106 176403 unique_id port 176403 remote_ip 10.8.0.174 176404 username malekpoir 176404 mac 176404 bytes_out 5322335 176404 bytes_in 48515302 176404 station_ip 5.120.159.78 176404 port 86 176404 unique_id port 176404 remote_ip 10.8.0.18 176407 username morteza 176407 mac 176407 bytes_out 0 176407 bytes_in 0 176407 station_ip 37.129.225.243 176407 port 86 176407 unique_id port 176407 remote_ip 10.8.0.174 176408 username aminvpn 176408 mac 176408 bytes_out 0 176408 bytes_in 0 176408 station_ip 5.119.156.93 176408 port 106 176408 unique_id port 176408 remote_ip 10.8.0.58 176410 username morteza 176410 kill_reason Maximum check online fails reached 176410 mac 176410 bytes_out 0 176410 bytes_in 0 176410 station_ip 37.129.225.243 176410 port 99 176410 unique_id port 176415 username morteza 176415 mac 176415 bytes_out 0 176415 bytes_in 0 176415 station_ip 37.129.225.243 176415 port 100 176415 unique_id port 176415 remote_ip 10.8.0.174 176418 username morteza 176418 mac 176418 bytes_out 0 176418 bytes_in 0 176418 station_ip 37.129.225.243 176418 port 106 176418 unique_id port 176418 remote_ip 10.8.0.174 176419 username morteza 176419 mac 176419 bytes_out 0 176419 bytes_in 0 176419 station_ip 37.129.225.243 176419 port 109 176419 unique_id port 176419 remote_ip 10.8.0.174 176420 username houshang 176420 mac 176420 bytes_out 24709 176420 bytes_in 47162 176420 station_ip 5.119.198.201 176420 port 102 176420 unique_id port 176420 remote_ip 10.8.0.82 176421 username saeeddamghani 176421 mac 176421 bytes_out 556388 176421 bytes_in 2114408 176421 station_ip 5.119.95.1 176409 bytes_in 0 176409 station_ip 5.119.128.179 176409 port 105 176409 unique_id port 176411 username barzegar 176411 mac 176411 bytes_out 0 176411 bytes_in 0 176411 station_ip 5.119.128.179 176411 port 106 176411 unique_id port 176411 remote_ip 10.8.0.10 176413 username morteza 176413 mac 176413 bytes_out 9535 176413 bytes_in 36741 176413 station_ip 37.129.225.243 176413 port 100 176413 unique_id port 176413 remote_ip 10.8.0.174 176414 username morteza 176414 mac 176414 bytes_out 0 176414 bytes_in 0 176414 station_ip 37.129.225.243 176414 port 100 176414 unique_id port 176414 remote_ip 10.8.0.174 176424 username yaghobi 176424 mac 176424 bytes_out 956182 176424 bytes_in 1180424 176424 station_ip 37.129.198.46 176424 port 98 176424 unique_id port 176424 remote_ip 10.8.0.138 176426 username morteza 176426 kill_reason Maximum check online fails reached 176426 mac 176426 bytes_out 0 176426 bytes_in 0 176426 station_ip 37.129.225.243 176426 port 109 176426 unique_id port 176436 username saeeddamghani 176436 mac 176436 bytes_out 0 176436 bytes_in 0 176436 station_ip 5.119.95.1 176436 port 104 176436 unique_id port 176436 remote_ip 10.8.0.122 176438 username saeeddamghani 176438 mac 176438 bytes_out 0 176438 bytes_in 0 176438 station_ip 5.119.95.1 176438 port 104 176438 unique_id port 176438 remote_ip 10.8.0.122 176440 username saeeddamghani 176440 kill_reason Maximum check online fails reached 176440 mac 176440 bytes_out 0 176440 bytes_in 0 176440 station_ip 5.119.95.1 176440 port 104 176440 unique_id port 176446 username majidsarmast 176446 mac 176446 bytes_out 2995699 176446 bytes_in 36586754 176446 station_ip 86.57.46.25 176446 port 75 176446 unique_id port 176446 remote_ip 10.8.0.170 176452 username saeeddamghani 176452 mac 176452 bytes_out 0 176452 bytes_in 0 176452 station_ip 5.119.95.1 176452 port 75 176452 unique_id port 176452 remote_ip 10.8.0.122 176455 username saeeddamghani 176455 mac 176455 bytes_out 0 176455 bytes_in 0 176455 station_ip 5.119.95.1 176455 port 110 176455 unique_id port 176455 remote_ip 10.8.0.122 176456 username godarzi 176456 kill_reason Another user logged on this global unique id 176456 mac 176456 bytes_out 0 176456 bytes_in 0 176456 station_ip 5.202.25.131 176456 port 87 176456 unique_id port 176458 username saeeddamghani 176458 mac 176458 bytes_out 0 176458 bytes_in 0 176458 station_ip 5.119.95.1 176458 port 112 176458 unique_id port 176458 remote_ip 10.8.0.122 176467 username rahim 176467 mac 176467 bytes_out 4057867 176467 bytes_in 34569284 176467 station_ip 5.119.110.31 176467 port 86 176467 unique_id port 176467 remote_ip 10.8.0.134 176468 username saeeddamghani 176468 mac 176468 bytes_out 293611 176468 bytes_in 1699416 176468 station_ip 5.119.95.1 176468 port 97 176468 unique_id port 176468 remote_ip 10.8.0.122 176470 username alihosseini1 176470 mac 176470 bytes_out 33763 176470 bytes_in 28112 176470 station_ip 5.120.144.43 176470 port 98 176470 unique_id port 176470 remote_ip 10.8.0.234 176474 username rahim 176474 mac 176474 bytes_out 0 176474 bytes_in 0 176474 station_ip 5.119.110.31 176474 port 97 176474 unique_id port 176474 remote_ip 10.8.0.134 176475 username mostafa_es78 176475 mac 176475 bytes_out 0 176475 bytes_in 0 176475 station_ip 113.203.101.58 176475 port 86 176475 unique_id port 176475 remote_ip 10.8.0.34 176476 username rahim 176476 mac 176476 bytes_out 0 176476 bytes_in 0 176476 station_ip 5.119.110.31 176421 port 75 176421 unique_id port 176421 remote_ip 10.8.0.122 176423 username morteza 176423 kill_reason Maximum check online fails reached 176423 mac 176423 bytes_out 0 176423 bytes_in 0 176423 station_ip 37.129.225.243 176423 port 106 176423 unique_id port 176429 username jafari 176429 mac 176429 bytes_out 0 176429 bytes_in 0 176429 station_ip 89.47.144.123 176429 port 90 176429 unique_id port 176431 username godarzi 176431 kill_reason Another user logged on this global unique id 176431 mac 176431 bytes_out 0 176431 bytes_in 0 176431 station_ip 5.202.25.131 176431 port 87 176431 unique_id port 176432 username jafari 176432 kill_reason Maximum check online fails reached 176432 mac 176432 bytes_out 0 176432 bytes_in 0 176432 station_ip 89.47.144.123 176432 port 90 176432 unique_id port 176433 username kalantary6037 176433 mac 176433 bytes_out 1081463 176433 bytes_in 7113739 176433 station_ip 37.129.128.150 176433 port 104 176433 unique_id port 176433 remote_ip 10.8.0.50 176435 username barzegar 176435 mac 176435 bytes_out 0 176435 bytes_in 0 176435 station_ip 5.119.128.179 176435 port 104 176435 unique_id port 176435 remote_ip 10.8.0.10 176437 username saeeddamghani 176437 kill_reason Maximum check online fails reached 176437 mac 176437 bytes_out 0 176437 bytes_in 0 176437 station_ip 5.119.95.1 176437 port 102 176437 unique_id port 176439 username houshang 176439 mac 176439 bytes_out 473739 176439 bytes_in 4841549 176439 station_ip 5.119.198.201 176439 port 107 176439 unique_id port 176439 remote_ip 10.8.0.82 176442 username mohammadmahdi 176442 kill_reason Another user logged on this global unique id 176442 mac 176442 bytes_out 0 176442 bytes_in 0 176442 station_ip 5.120.50.124 176442 port 103 176442 unique_id port 176442 remote_ip 10.8.0.30 176448 username milan 176448 kill_reason Another user logged on this global unique id 176448 mac 176448 bytes_out 0 176448 bytes_in 0 176448 station_ip 5.119.68.145 176448 port 74 176448 unique_id port 176453 username malekpoir 176453 mac 176453 bytes_out 1894223 176453 bytes_in 14379271 176453 station_ip 5.120.116.105 176453 port 100 176453 unique_id port 176453 remote_ip 10.8.0.18 176457 username mohammadmahdi 176457 kill_reason Another user logged on this global unique id 176457 mac 176457 bytes_out 0 176457 bytes_in 0 176457 station_ip 5.120.50.124 176457 port 103 176457 unique_id port 176461 username alihosseini1 176461 mac 176461 bytes_out 70034 176461 bytes_in 29882 176461 station_ip 5.120.100.176 176461 port 113 176461 unique_id port 176461 remote_ip 10.8.0.234 176464 username motamedi9772 176464 mac 176464 bytes_out 692072 176464 bytes_in 1253934 176464 station_ip 37.129.230.198 176464 port 98 176464 unique_id port 176464 remote_ip 10.8.0.154 176469 username saeeddamghani 176469 mac 176469 bytes_out 0 176469 bytes_in 0 176469 station_ip 5.119.95.1 176469 port 97 176469 unique_id port 176469 remote_ip 10.8.0.122 176473 username majidsarmast 176473 mac 176473 bytes_out 46281 176473 bytes_in 118473 176473 station_ip 86.57.46.25 176473 port 86 176473 unique_id port 176473 remote_ip 10.8.0.170 176477 username motamedi9772 176477 mac 176477 bytes_out 345970 176477 bytes_in 3220995 176477 station_ip 37.129.230.198 176477 port 100 176477 unique_id port 176477 remote_ip 10.8.0.154 176478 username motamedi9772 176478 mac 176478 bytes_out 0 176478 bytes_in 0 176478 station_ip 37.129.230.198 176478 port 97 176478 unique_id port 176478 remote_ip 10.8.0.154 176479 username saeeddamghani 176479 mac 176479 bytes_out 0 176430 bytes_in 0 176430 station_ip 89.47.144.123 176430 port 90 176430 unique_id port 176434 username saeeddamghani 176434 mac 176434 bytes_out 1256034 176434 bytes_in 13597168 176434 station_ip 5.119.95.1 176434 port 102 176434 unique_id port 176434 remote_ip 10.8.0.122 176441 username saeeddamghani 176441 mac 176441 bytes_out 7411 176441 bytes_in 9128 176441 station_ip 5.119.95.1 176441 port 110 176441 unique_id port 176441 remote_ip 10.8.0.122 176443 username rashidi4690 176443 kill_reason Another user logged on this global unique id 176443 mac 176443 bytes_out 0 176443 bytes_in 0 176443 station_ip 5.120.24.161 176443 port 101 176443 unique_id port 176443 remote_ip 10.8.0.242 176444 username houshang 176444 mac 176444 bytes_out 0 176444 bytes_in 0 176444 station_ip 5.120.55.186 176444 port 111 176444 unique_id port 176444 remote_ip 10.8.0.82 176445 username barzegar 176445 mac 176445 bytes_out 0 176445 bytes_in 0 176445 station_ip 5.119.128.179 176445 port 110 176445 unique_id port 176445 remote_ip 10.8.0.10 176447 username houshang 176447 mac 176447 bytes_out 63185 176447 bytes_in 117302 176447 station_ip 5.120.0.82 176447 port 107 176447 unique_id port 176447 remote_ip 10.8.0.82 176449 username aminvpn 176449 mac 176449 bytes_out 149944 176449 bytes_in 305298 176449 station_ip 37.129.152.49 176449 port 86 176449 unique_id port 176449 remote_ip 10.8.0.58 176450 username saeeddamghani 176450 mac 176450 bytes_out 3046 176450 bytes_in 5507 176450 station_ip 5.119.95.1 176450 port 75 176450 unique_id port 176450 remote_ip 10.8.0.122 176451 username saeeddamghani 176451 mac 176451 bytes_out 0 176451 bytes_in 0 176451 station_ip 5.119.95.1 176451 port 75 176451 unique_id port 176451 remote_ip 10.8.0.122 176454 username zahra1101 176454 kill_reason Another user logged on this global unique id 176454 mac 176454 bytes_out 0 176454 bytes_in 0 176454 station_ip 5.120.68.177 176454 port 93 176454 unique_id port 176459 username mahdiyehalizadeh 176459 mac 176459 bytes_out 1123926 176459 bytes_in 10129914 176459 station_ip 5.120.169.143 176459 port 97 176459 unique_id port 176459 remote_ip 10.8.0.114 176460 username shadkam 176460 mac 176460 bytes_out 638288 176460 bytes_in 4899168 176460 station_ip 83.122.180.69 176460 port 100 176460 unique_id port 176460 remote_ip 10.8.0.74 176462 username nekheei 176462 mac 176462 bytes_out 574163 176462 bytes_in 4671717 176462 station_ip 5.119.157.237 176462 port 111 176462 unique_id port 176462 remote_ip 10.8.0.230 176463 username saeeddamghani 176463 mac 176463 bytes_out 0 176463 bytes_in 0 176463 station_ip 5.119.95.1 176463 port 97 176463 unique_id port 176463 remote_ip 10.8.0.122 176465 username mohammadmahdi 176465 kill_reason Another user logged on this global unique id 176465 mac 176465 bytes_out 0 176465 bytes_in 0 176465 station_ip 5.120.50.124 176465 port 103 176465 unique_id port 176466 username rashidi4690 176466 kill_reason Another user logged on this global unique id 176466 mac 176466 bytes_out 0 176466 bytes_in 0 176466 station_ip 5.120.24.161 176466 port 101 176466 unique_id port 176471 username mostafa_es78 176471 mac 176471 bytes_out 0 176471 bytes_in 0 176471 station_ip 113.203.101.58 176471 port 97 176471 unique_id port 176471 remote_ip 10.8.0.34 176472 username kalantary6037 176472 mac 176472 bytes_out 835294 176472 bytes_in 8151996 176472 station_ip 37.129.162.150 176472 port 111 176472 unique_id port 176472 remote_ip 10.8.0.50 176480 username motamedi9772 176480 mac 176476 port 86 176476 unique_id port 176476 remote_ip 10.8.0.134 176482 username rahim 176482 mac 176482 bytes_out 24275 176482 bytes_in 82259 176482 station_ip 5.119.110.31 176482 port 86 176482 unique_id port 176482 remote_ip 10.8.0.134 176486 username saeeddamghani 176486 mac 176486 bytes_out 0 176486 bytes_in 0 176486 station_ip 5.119.95.1 176486 port 98 176486 unique_id port 176486 remote_ip 10.8.0.122 176488 username rahim 176488 mac 176488 bytes_out 0 176488 bytes_in 0 176488 station_ip 5.119.110.31 176488 port 97 176488 unique_id port 176488 remote_ip 10.8.0.134 176490 username mostafa_es78 176490 mac 176490 bytes_out 0 176490 bytes_in 0 176490 station_ip 113.203.101.58 176490 port 98 176490 unique_id port 176490 remote_ip 10.8.0.34 176496 username mostafa_es78 176496 mac 176496 bytes_out 0 176496 bytes_in 0 176496 station_ip 113.203.101.58 176496 port 86 176496 unique_id port 176496 remote_ip 10.8.0.34 176499 username barzegar 176499 mac 176499 bytes_out 0 176499 bytes_in 0 176499 station_ip 5.120.92.202 176499 port 86 176499 unique_id port 176499 remote_ip 10.8.0.10 176504 username motamedi9772 176504 mac 176504 bytes_out 0 176504 bytes_in 0 176504 station_ip 37.129.230.198 176504 port 100 176504 unique_id port 176504 remote_ip 10.8.0.154 176505 username barzegar 176505 mac 176505 bytes_out 2899 176505 bytes_in 4976 176505 station_ip 5.120.92.202 176505 port 101 176505 unique_id port 176505 remote_ip 10.8.0.10 176509 username barzegar 176509 mac 176509 bytes_out 0 176509 bytes_in 0 176509 station_ip 5.120.92.202 176509 port 100 176509 unique_id port 176509 remote_ip 10.8.0.10 176510 username mostafa_es78 176510 mac 176510 bytes_out 0 176510 bytes_in 0 176510 station_ip 113.203.101.58 176510 port 100 176510 unique_id port 176510 remote_ip 10.8.0.34 176511 username rahim 176511 mac 176511 bytes_out 151130 176511 bytes_in 1027010 176511 station_ip 5.119.110.31 176511 port 97 176511 unique_id port 176511 remote_ip 10.8.0.134 176512 username rashidi4690 176512 mac 176512 bytes_out 12434465 176512 bytes_in 4240005 176512 station_ip 37.129.238.54 176512 port 86 176512 unique_id port 176512 remote_ip 10.8.0.242 176515 username mostafa_es78 176515 mac 176515 bytes_out 0 176515 bytes_in 0 176515 station_ip 113.203.101.58 176515 port 111 176515 unique_id port 176515 remote_ip 10.8.0.34 176517 username mehdizare 176517 mac 176517 bytes_out 0 176517 bytes_in 0 176517 station_ip 83.122.83.181 176517 port 89 176517 unique_id port 176521 username jafari 176521 kill_reason Another user logged on this global unique id 176521 mac 176521 bytes_out 0 176521 bytes_in 0 176521 station_ip 89.47.144.123 176521 port 90 176521 unique_id port 176523 username mostafa_es78 176523 mac 176523 bytes_out 19232 176523 bytes_in 16052 176523 station_ip 113.203.101.58 176523 port 97 176523 unique_id port 176523 remote_ip 10.8.0.34 176526 username barzegar 176526 mac 176526 bytes_out 0 176526 bytes_in 0 176526 station_ip 5.120.92.202 176526 port 115 176526 unique_id port 176526 remote_ip 10.8.0.10 176527 username mohammadmahdi 176527 mac 176527 bytes_out 0 176527 bytes_in 0 176527 station_ip 5.120.50.124 176527 port 103 176527 unique_id port 176531 username motamedi9772 176531 mac 176531 bytes_out 0 176531 bytes_in 0 176531 station_ip 37.129.131.218 176531 port 116 176531 unique_id port 176531 remote_ip 10.8.0.154 176533 username saeeddamghani 176533 mac 176479 bytes_in 0 176479 station_ip 5.119.95.1 176479 port 98 176479 unique_id port 176479 remote_ip 10.8.0.122 176492 username mostafa_es78 176492 mac 176492 bytes_out 0 176492 bytes_in 0 176492 station_ip 113.203.101.58 176492 port 98 176492 unique_id port 176492 remote_ip 10.8.0.34 176495 username motamedi9772 176495 mac 176495 bytes_out 0 176495 bytes_in 0 176495 station_ip 37.129.230.198 176495 port 98 176495 unique_id port 176495 remote_ip 10.8.0.154 176498 username rahim 176498 mac 176498 bytes_out 431846 176498 bytes_in 1329168 176498 station_ip 5.119.110.31 176498 port 97 176498 unique_id port 176498 remote_ip 10.8.0.134 176500 username rashidi4690 176500 mac 176500 bytes_out 0 176500 bytes_in 0 176500 station_ip 5.120.24.161 176500 port 101 176500 unique_id port 176501 username motamedi9772 176501 mac 176501 bytes_out 0 176501 bytes_in 0 176501 station_ip 37.129.230.198 176501 port 97 176501 unique_id port 176501 remote_ip 10.8.0.154 176502 username motamedi9772 176502 mac 176502 bytes_out 0 176502 bytes_in 0 176502 station_ip 37.129.230.198 176502 port 97 176502 unique_id port 176502 remote_ip 10.8.0.154 176508 username motamedi9772 176508 mac 176508 bytes_out 14819 176508 bytes_in 49122 176508 station_ip 37.129.230.198 176508 port 100 176508 unique_id port 176508 remote_ip 10.8.0.154 176513 username mostafa_es78 176513 mac 176513 bytes_out 0 176513 bytes_in 0 176513 station_ip 113.203.101.58 176513 port 86 176513 unique_id port 176513 remote_ip 10.8.0.34 176514 username tahmasebi 176514 mac 176514 bytes_out 76867 176514 bytes_in 740329 176514 station_ip 5.120.107.62 176514 port 100 176514 unique_id port 176514 remote_ip 10.8.0.126 176519 username rahim 176519 mac 176519 bytes_out 270022 176519 bytes_in 1215084 176519 station_ip 5.119.110.31 176519 port 97 176519 unique_id port 176519 remote_ip 10.8.0.134 176522 username mahdiyehalizadeh 176522 mac 176522 bytes_out 97345 176522 bytes_in 483509 176522 station_ip 5.120.169.143 176522 port 112 176522 unique_id port 176522 remote_ip 10.8.0.114 176524 username mehdizare 176524 mac 176524 bytes_out 769666 176524 bytes_in 11188310 176524 station_ip 83.122.83.181 176524 port 98 176524 unique_id port 176524 remote_ip 10.8.0.210 176529 username mostafa_es78 176529 mac 176529 bytes_out 165281 176529 bytes_in 515366 176529 station_ip 113.203.101.58 176529 port 112 176529 unique_id port 176529 remote_ip 10.8.0.34 176540 username motamedi9772 176540 mac 176540 bytes_out 140747 176540 bytes_in 27034 176540 station_ip 37.129.131.218 176540 port 90 176540 unique_id port 176540 remote_ip 10.8.0.154 176544 username mostafa_es78 176544 mac 176544 bytes_out 16789 176544 bytes_in 15751 176544 station_ip 113.203.101.58 176544 port 90 176544 unique_id port 176544 remote_ip 10.8.0.34 176547 username mostafa_es78 176547 mac 176547 bytes_out 0 176547 bytes_in 0 176547 station_ip 113.203.101.58 176547 port 90 176547 unique_id port 176547 remote_ip 10.8.0.34 176551 username mostafa_es78 176551 mac 176551 bytes_out 0 176551 bytes_in 0 176551 station_ip 113.203.101.58 176551 port 113 176551 unique_id port 176551 remote_ip 10.8.0.34 176555 username houshang 176555 mac 176555 bytes_out 105583 176555 bytes_in 183778 176555 station_ip 5.120.182.136 176555 port 89 176555 unique_id port 176555 remote_ip 10.8.0.82 176559 username saeeddamghani 176559 mac 176559 bytes_out 0 176559 bytes_in 0 176559 station_ip 217.60.218.29 176559 port 89 176480 bytes_out 0 176480 bytes_in 0 176480 station_ip 37.129.230.198 176480 port 98 176480 unique_id port 176480 remote_ip 10.8.0.154 176481 username motamedi9772 176481 mac 176481 bytes_out 0 176481 bytes_in 0 176481 station_ip 37.129.230.198 176481 port 100 176481 unique_id port 176481 remote_ip 10.8.0.154 176483 username saeeddamghani 176483 mac 176483 bytes_out 2122 176483 bytes_in 4511 176483 station_ip 5.119.95.1 176483 port 98 176483 unique_id port 176483 remote_ip 10.8.0.122 176484 username mostafa_es78 176484 mac 176484 bytes_out 826337 176484 bytes_in 1886317 176484 station_ip 113.203.101.58 176484 port 97 176484 unique_id port 176484 remote_ip 10.8.0.34 176485 username jafari 176485 kill_reason Another user logged on this global unique id 176485 mac 176485 bytes_out 0 176485 bytes_in 0 176485 station_ip 89.47.144.123 176485 port 90 176485 unique_id port 176485 remote_ip 10.8.0.86 176487 username rahim 176487 mac 176487 bytes_out 0 176487 bytes_in 0 176487 station_ip 5.119.110.31 176487 port 97 176487 unique_id port 176487 remote_ip 10.8.0.134 176489 username shadkam 176489 mac 176489 bytes_out 120358 176489 bytes_in 1154991 176489 station_ip 37.129.130.194 176489 port 100 176489 unique_id port 176489 remote_ip 10.8.0.74 176491 username motamedi9772 176491 mac 176491 bytes_out 10888 176491 bytes_in 29053 176491 station_ip 37.129.230.198 176491 port 86 176491 unique_id port 176491 remote_ip 10.8.0.154 176493 username motamedi9772 176493 mac 176493 bytes_out 0 176493 bytes_in 0 176493 station_ip 37.129.230.198 176493 port 86 176493 unique_id port 176493 remote_ip 10.8.0.154 176494 username motamedi9772 176494 mac 176494 bytes_out 0 176494 bytes_in 0 176494 station_ip 37.129.230.198 176494 port 98 176494 unique_id port 176494 remote_ip 10.8.0.154 176497 username motamedi9772 176497 mac 176497 bytes_out 0 176497 bytes_in 0 176497 station_ip 37.129.230.198 176497 port 100 176497 unique_id port 176497 remote_ip 10.8.0.154 176503 username rahim 176503 mac 176503 bytes_out 0 176503 bytes_in 0 176503 station_ip 5.119.110.31 176503 port 97 176503 unique_id port 176503 remote_ip 10.8.0.134 176506 username mostafa_es78 176506 mac 176506 bytes_out 217664 176506 bytes_in 3182503 176506 station_ip 113.203.101.58 176506 port 97 176506 unique_id port 176506 remote_ip 10.8.0.34 176507 username mohammadjavad 176507 mac 176507 bytes_out 647261 176507 bytes_in 4702091 176507 station_ip 37.129.183.120 176507 port 111 176507 unique_id port 176507 remote_ip 10.8.0.110 176516 username kalantary6037 176516 mac 176516 bytes_out 1081603 176516 bytes_in 6706780 176516 station_ip 37.129.162.150 176516 port 98 176516 unique_id port 176516 remote_ip 10.8.0.50 176518 username mostafa_es78 176518 kill_reason Maximum check online fails reached 176518 mac 176518 bytes_out 0 176518 bytes_in 0 176518 station_ip 113.203.101.58 176518 port 86 176518 unique_id port 176520 username rashidi4690 176520 mac 176520 bytes_out 3431161 176520 bytes_in 425009 176520 station_ip 5.120.24.161 176520 port 101 176520 unique_id port 176520 remote_ip 10.8.0.242 176525 username mostafa_es78 176525 mac 176525 bytes_out 172254 176525 bytes_in 1256530 176525 station_ip 113.203.101.58 176525 port 97 176525 unique_id port 176525 remote_ip 10.8.0.34 176528 username nekheei 176528 mac 176528 bytes_out 453324 176528 bytes_in 2852900 176528 station_ip 5.119.157.237 176528 port 114 176528 unique_id port 176528 remote_ip 10.8.0.230 176530 username jafari 176530 mac 176530 bytes_out 0 176530 bytes_in 0 176530 station_ip 89.47.144.123 176530 port 90 176530 unique_id port 176532 username shadkam 176532 mac 176532 bytes_out 290630 176532 bytes_in 1353394 176532 station_ip 37.129.210.248 176532 port 97 176532 unique_id port 176532 remote_ip 10.8.0.74 176534 username tahmasebi 176534 mac 176534 bytes_out 3538508 176534 bytes_in 39527510 176534 station_ip 5.120.107.62 176534 port 113 176534 unique_id port 176534 remote_ip 10.8.0.126 176535 username saeeddamghani 176535 mac 176535 bytes_out 0 176535 bytes_in 0 176535 station_ip 217.60.218.29 176535 port 97 176535 unique_id port 176535 remote_ip 10.8.0.122 176537 username soleymani5056 176537 mac 176537 bytes_out 245719 176537 bytes_in 1139050 176537 station_ip 5.120.95.154 176537 port 114 176537 unique_id port 176537 remote_ip 10.8.0.226 176538 username fezealinaghi 176538 kill_reason Another user logged on this global unique id 176538 mac 176538 bytes_out 0 176538 bytes_in 0 176538 station_ip 37.129.199.179 176538 port 95 176538 unique_id port 176538 remote_ip 10.8.0.202 176539 username mostafa_es78 176539 mac 176539 bytes_out 276963 176539 bytes_in 2416134 176539 station_ip 113.203.101.58 176539 port 112 176539 unique_id port 176539 remote_ip 10.8.0.34 176541 username mostafa_es78 176541 mac 176541 bytes_out 0 176541 bytes_in 0 176541 station_ip 83.123.76.74 176541 port 113 176541 unique_id port 176541 remote_ip 10.8.0.34 176545 username vanila 176545 kill_reason Relative expiration date has reached 176545 mac 176545 bytes_out 0 176545 bytes_in 0 176545 station_ip 37.129.220.148 176545 port 90 176545 unique_id port 176549 username nekheei 176549 kill_reason Another user logged on this global unique id 176549 mac 176549 bytes_out 0 176549 bytes_in 0 176549 station_ip 5.119.157.237 176549 port 103 176549 unique_id port 176549 remote_ip 10.8.0.230 176552 username mostafa_es78 176552 mac 176552 bytes_out 0 176552 bytes_in 0 176552 station_ip 113.203.101.58 176552 port 113 176552 unique_id port 176552 remote_ip 10.8.0.34 176553 username mostafa_es78 176553 mac 176553 bytes_out 0 176553 bytes_in 0 176553 station_ip 113.203.101.58 176553 port 113 176553 unique_id port 176553 remote_ip 10.8.0.34 176556 username khalili2 176556 mac 176556 bytes_out 3623772 176556 bytes_in 40149443 176556 station_ip 5.119.201.0 176556 port 111 176556 unique_id port 176556 remote_ip 10.8.0.118 176558 username mostafa_es78 176558 mac 176558 bytes_out 0 176558 bytes_in 0 176558 station_ip 113.203.101.58 176558 port 89 176558 unique_id port 176558 remote_ip 10.8.0.34 176560 username rezaei 176560 kill_reason Another user logged on this global unique id 176560 mac 176560 bytes_out 0 176560 bytes_in 0 176560 station_ip 5.120.134.61 176560 port 98 176560 unique_id port 176560 remote_ip 10.8.0.198 176561 username saeeddamghani 176561 mac 176561 bytes_out 0 176561 bytes_in 0 176561 station_ip 217.60.218.29 176561 port 89 176561 unique_id port 176561 remote_ip 10.8.0.122 176566 username khademi 176566 kill_reason Another user logged on this global unique id 176566 mac 176566 bytes_out 0 176566 bytes_in 0 176566 station_ip 37.129.154.227 176566 port 88 176566 unique_id port 176570 username mostafa_es78 176570 mac 176570 bytes_out 0 176570 bytes_in 0 176570 station_ip 113.203.101.58 176570 port 89 176570 unique_id port 176570 remote_ip 10.8.0.34 176572 username mostafa_es78 176572 mac 176572 bytes_out 0 176572 bytes_in 0 176572 station_ip 178.236.35.96 176572 port 89 176533 bytes_out 370383 176533 bytes_in 2564115 176533 station_ip 217.60.218.29 176533 port 115 176533 unique_id port 176533 remote_ip 10.8.0.122 176536 username rashidi4690 176536 kill_reason Another user logged on this global unique id 176536 mac 176536 bytes_out 0 176536 bytes_in 0 176536 station_ip 37.129.238.54 176536 port 89 176536 unique_id port 176536 remote_ip 10.8.0.242 176542 username milan 176542 kill_reason Another user logged on this global unique id 176542 mac 176542 bytes_out 0 176542 bytes_in 0 176542 station_ip 5.119.68.145 176542 port 74 176542 unique_id port 176543 username rashidi4690 176543 mac 176543 bytes_out 0 176543 bytes_in 0 176543 station_ip 37.129.238.54 176543 port 89 176543 unique_id port 176546 username mostafa_es78 176546 mac 176546 bytes_out 0 176546 bytes_in 0 176546 station_ip 83.123.76.74 176546 port 89 176546 unique_id port 176546 remote_ip 10.8.0.34 176548 username mostafa_es78 176548 kill_reason Maximum check online fails reached 176548 mac 176548 bytes_out 0 176548 bytes_in 0 176548 station_ip 83.123.76.74 176548 port 90 176548 unique_id port 176550 username mostafa_es78 176550 mac 176550 bytes_out 28348 176550 bytes_in 30218 176550 station_ip 113.203.101.58 176550 port 112 176550 unique_id port 176550 remote_ip 10.8.0.34 176554 username mostafa_es78 176554 mac 176554 bytes_out 0 176554 bytes_in 0 176554 station_ip 113.203.101.58 176554 port 113 176554 unique_id port 176554 remote_ip 10.8.0.34 176557 username saeeddamghani 176557 mac 176557 bytes_out 322658 176557 bytes_in 3130251 176557 station_ip 217.60.218.29 176557 port 112 176557 unique_id port 176557 remote_ip 10.8.0.122 176562 username houshang 176562 mac 176562 bytes_out 135613 176562 bytes_in 964655 176562 station_ip 5.120.182.136 176562 port 113 176562 unique_id port 176562 remote_ip 10.8.0.82 176564 username mostafa_es78 176564 mac 176564 bytes_out 0 176564 bytes_in 0 176564 station_ip 113.203.101.58 176564 port 89 176564 unique_id port 176564 remote_ip 10.8.0.34 176565 username mostafa_es78 176565 mac 176565 bytes_out 21374 176565 bytes_in 19207 176565 station_ip 113.203.101.58 176565 port 89 176565 unique_id port 176565 remote_ip 10.8.0.34 176567 username saeeddamghani 176567 mac 176567 bytes_out 0 176567 bytes_in 0 176567 station_ip 217.60.218.29 176567 port 89 176567 unique_id port 176567 remote_ip 10.8.0.122 176569 username saeeddamghani 176569 mac 176569 bytes_out 0 176569 bytes_in 0 176569 station_ip 217.60.218.29 176569 port 112 176569 unique_id port 176569 remote_ip 10.8.0.122 176571 username mostafa_es78 176571 mac 176571 bytes_out 0 176571 bytes_in 0 176571 station_ip 113.203.101.58 176571 port 89 176571 unique_id port 176571 remote_ip 10.8.0.34 176574 username mostafa_es78 176574 mac 176574 bytes_out 0 176574 bytes_in 0 176574 station_ip 178.236.35.96 176574 port 89 176574 unique_id port 176574 remote_ip 10.8.0.34 176579 username nekheei 176579 mac 176579 bytes_out 0 176579 bytes_in 0 176579 station_ip 5.119.157.237 176579 port 103 176579 unique_id port 176581 username mostafa_es78 176581 mac 176581 bytes_out 0 176581 bytes_in 0 176581 station_ip 113.203.101.58 176581 port 103 176581 unique_id port 176581 remote_ip 10.8.0.34 176583 username mostafa_es78 176583 mac 176583 bytes_out 0 176583 bytes_in 0 176583 station_ip 178.236.35.96 176583 port 89 176583 unique_id port 176583 remote_ip 10.8.0.34 176585 username mostafa_es78 176585 mac 176585 bytes_out 0 176585 bytes_in 0 176559 unique_id port 176559 remote_ip 10.8.0.122 176563 username barzegar 176563 mac 176563 bytes_out 0 176563 bytes_in 0 176563 station_ip 5.120.92.202 176563 port 89 176563 unique_id port 176563 remote_ip 10.8.0.10 176568 username saeeddamghani 176568 mac 176568 bytes_out 0 176568 bytes_in 0 176568 station_ip 217.60.218.29 176568 port 89 176568 unique_id port 176568 remote_ip 10.8.0.122 176573 username mostafa_es78 176573 mac 176573 bytes_out 0 176573 bytes_in 0 176573 station_ip 113.203.101.58 176573 port 112 176573 unique_id port 176573 remote_ip 10.8.0.34 176576 username nekheei 176576 kill_reason Another user logged on this global unique id 176576 mac 176576 bytes_out 0 176576 bytes_in 0 176576 station_ip 5.119.157.237 176576 port 103 176576 unique_id port 176577 username zahra1101 176577 kill_reason Another user logged on this global unique id 176577 mac 176577 bytes_out 0 176577 bytes_in 0 176577 station_ip 5.120.68.177 176577 port 93 176577 unique_id port 176578 username godarzi 176578 kill_reason Another user logged on this global unique id 176578 mac 176578 bytes_out 0 176578 bytes_in 0 176578 station_ip 5.202.25.131 176578 port 87 176578 unique_id port 176580 username mostafa_es78 176580 mac 176580 bytes_out 0 176580 bytes_in 0 176580 station_ip 178.236.35.96 176580 port 89 176580 unique_id port 176580 remote_ip 10.8.0.34 176588 username aminvpn 176588 mac 176588 bytes_out 535833 176588 bytes_in 1270115 176588 station_ip 5.119.19.146 176588 port 110 176588 unique_id port 176588 remote_ip 10.8.0.58 176590 username saeeddamghani 176590 mac 176590 bytes_out 0 176590 bytes_in 0 176590 station_ip 217.60.218.29 176590 port 113 176590 unique_id port 176590 remote_ip 10.8.0.122 176597 username houshang 176597 mac 176597 bytes_out 465200 176597 bytes_in 3197262 176597 station_ip 5.120.182.136 176597 port 103 176597 unique_id port 176597 remote_ip 10.8.0.82 176599 username aminvpn 176599 mac 176599 bytes_out 138503 176599 bytes_in 555538 176599 station_ip 5.119.19.146 176599 port 110 176599 unique_id port 176599 remote_ip 10.8.0.58 176602 username aminvpn 176602 mac 176602 bytes_out 0 176602 bytes_in 0 176602 station_ip 37.129.152.49 176602 port 103 176602 unique_id port 176602 remote_ip 10.8.0.58 176604 username aminvpn 176604 mac 176604 bytes_out 0 176604 bytes_in 0 176604 station_ip 5.119.19.146 176604 port 112 176604 unique_id port 176604 remote_ip 10.8.0.58 176605 username aminvpn 176605 mac 176605 bytes_out 0 176605 bytes_in 0 176605 station_ip 37.129.152.49 176605 port 103 176605 unique_id port 176605 remote_ip 10.8.0.58 176615 username aminvpn 176615 mac 176615 bytes_out 0 176615 bytes_in 0 176615 station_ip 37.129.152.49 176615 port 112 176615 unique_id port 176615 remote_ip 10.8.0.58 176616 username mostafa_es78 176616 mac 176616 bytes_out 0 176616 bytes_in 0 176616 station_ip 113.203.101.58 176616 port 113 176616 unique_id port 176616 remote_ip 10.8.0.34 176623 username barzegar 176623 mac 176623 bytes_out 2334 176623 bytes_in 4435 176623 station_ip 5.120.92.202 176623 port 112 176623 unique_id port 176623 remote_ip 10.8.0.10 176631 username aminvpn 176631 mac 176631 bytes_out 188957 176631 bytes_in 1099354 176631 station_ip 5.119.19.146 176631 port 112 176631 unique_id port 176631 remote_ip 10.8.0.58 176638 username aminvpn 176638 mac 176638 bytes_out 0 176638 bytes_in 0 176638 station_ip 37.129.152.49 176638 port 112 176638 unique_id port 176572 unique_id port 176572 remote_ip 10.8.0.34 176575 username mostafa_es78 176575 mac 176575 bytes_out 0 176575 bytes_in 0 176575 station_ip 113.203.101.58 176575 port 112 176575 unique_id port 176575 remote_ip 10.8.0.34 176582 username shadkam 176582 mac 176582 bytes_out 0 176582 bytes_in 0 176582 station_ip 37.129.201.14 176582 port 112 176582 unique_id port 176582 remote_ip 10.8.0.74 176584 username mostafa_es78 176584 mac 176584 bytes_out 0 176584 bytes_in 0 176584 station_ip 113.203.101.58 176584 port 103 176584 unique_id port 176584 remote_ip 10.8.0.34 176586 username saeeddamghani 176586 mac 176586 bytes_out 74833 176586 bytes_in 896722 176586 station_ip 217.60.218.29 176586 port 113 176586 unique_id port 176586 remote_ip 10.8.0.122 176589 username mostafa_es78 176589 mac 176589 bytes_out 0 176589 bytes_in 0 176589 station_ip 113.203.101.58 176589 port 89 176589 unique_id port 176589 remote_ip 10.8.0.34 176593 username barzegar 176593 mac 176593 bytes_out 0 176593 bytes_in 0 176593 station_ip 5.120.92.202 176593 port 113 176593 unique_id port 176593 remote_ip 10.8.0.10 176595 username saeeddamghani 176595 mac 176595 bytes_out 1644 176595 bytes_in 4275 176595 station_ip 217.60.218.29 176595 port 89 176595 unique_id port 176595 remote_ip 10.8.0.122 176596 username mostafa_es78 176596 mac 176596 bytes_out 0 176596 bytes_in 0 176596 station_ip 178.236.35.96 176596 port 113 176596 unique_id port 176596 remote_ip 10.8.0.34 176600 username yaghobi 176600 mac 176600 bytes_out 1907335 176600 bytes_in 10229659 176600 station_ip 37.129.185.74 176600 port 111 176600 unique_id port 176600 remote_ip 10.8.0.138 176601 username mostafa_es78 176601 mac 176601 bytes_out 0 176601 bytes_in 0 176601 station_ip 113.203.101.58 176601 port 89 176601 unique_id port 176601 remote_ip 10.8.0.34 176606 username mostafa_es78 176606 mac 176606 bytes_out 0 176606 bytes_in 0 176606 station_ip 113.203.101.58 176606 port 89 176606 unique_id port 176606 remote_ip 10.8.0.34 176607 username aminvpn 176607 mac 176607 bytes_out 0 176607 bytes_in 0 176607 station_ip 5.119.19.146 176607 port 111 176607 unique_id port 176607 remote_ip 10.8.0.58 176610 username barzegar 176610 mac 176610 bytes_out 0 176610 bytes_in 0 176610 station_ip 5.120.92.202 176610 port 89 176610 unique_id port 176610 remote_ip 10.8.0.10 176613 username mostafa_es78 176613 mac 176613 bytes_out 0 176613 bytes_in 0 176613 station_ip 178.236.35.96 176613 port 112 176613 unique_id port 176613 remote_ip 10.8.0.34 176618 username aminvpn 176618 mac 176618 bytes_out 0 176618 bytes_in 0 176618 station_ip 5.119.19.146 176618 port 89 176618 unique_id port 176618 remote_ip 10.8.0.58 176620 username saeeddamghani 176620 mac 176620 bytes_out 0 176620 bytes_in 0 176620 station_ip 217.60.218.29 176620 port 111 176620 unique_id port 176620 remote_ip 10.8.0.122 176621 username aminvpn 176621 mac 176621 bytes_out 0 176621 bytes_in 0 176621 station_ip 37.129.152.49 176621 port 113 176621 unique_id port 176621 remote_ip 10.8.0.58 176622 username mostafa_es78 176622 mac 176622 bytes_out 0 176622 bytes_in 0 176622 station_ip 113.203.101.58 176622 port 89 176622 unique_id port 176622 remote_ip 10.8.0.34 176624 username mostafa_es78 176624 mac 176624 bytes_out 0 176624 bytes_in 0 176624 station_ip 178.236.35.96 176624 port 115 176624 unique_id port 176624 remote_ip 10.8.0.34 176626 username mostafa_es78 176626 mac 176585 station_ip 113.203.101.58 176585 port 89 176585 unique_id port 176585 remote_ip 10.8.0.34 176587 username mostafa_es78 176587 mac 176587 bytes_out 0 176587 bytes_in 0 176587 station_ip 178.236.35.96 176587 port 112 176587 unique_id port 176587 remote_ip 10.8.0.34 176591 username mostafa_es78 176591 mac 176591 bytes_out 0 176591 bytes_in 0 176591 station_ip 178.236.35.96 176591 port 110 176591 unique_id port 176591 remote_ip 10.8.0.34 176592 username aminvpn 176592 mac 176592 bytes_out 0 176592 bytes_in 0 176592 station_ip 37.129.152.49 176592 port 114 176592 unique_id port 176592 remote_ip 10.8.0.58 176594 username mostafa_es78 176594 mac 176594 bytes_out 0 176594 bytes_in 0 176594 station_ip 113.203.101.58 176594 port 115 176594 unique_id port 176594 remote_ip 10.8.0.34 176598 username shadkam 176598 mac 176598 bytes_out 129599 176598 bytes_in 579765 176598 station_ip 37.129.201.14 176598 port 112 176598 unique_id port 176598 remote_ip 10.8.0.74 176603 username mostafa_es78 176603 mac 176603 bytes_out 0 176603 bytes_in 0 176603 station_ip 178.236.35.96 176603 port 111 176603 unique_id port 176603 remote_ip 10.8.0.34 176608 username mostafa_es78 176608 mac 176608 bytes_out 0 176608 bytes_in 0 176608 station_ip 178.236.35.96 176608 port 103 176608 unique_id port 176608 remote_ip 10.8.0.34 176609 username mehdizare 176609 mac 176609 bytes_out 103632 176609 bytes_in 247910 176609 station_ip 83.122.83.181 176609 port 101 176609 unique_id port 176609 remote_ip 10.8.0.210 176611 username aminvpn 176611 mac 176611 bytes_out 0 176611 bytes_in 0 176611 station_ip 37.129.152.49 176611 port 112 176611 unique_id port 176611 remote_ip 10.8.0.58 176612 username mostafa_es78 176612 mac 176612 bytes_out 0 176612 bytes_in 0 176612 station_ip 113.203.101.58 176612 port 111 176612 unique_id port 176612 remote_ip 10.8.0.34 176614 username aminvpn 176614 mac 176614 bytes_out 0 176614 bytes_in 0 176614 station_ip 5.119.19.146 176614 port 89 176614 unique_id port 176614 remote_ip 10.8.0.58 176617 username mosi 176617 mac 176617 bytes_out 2090 176617 bytes_in 4303 176617 station_ip 151.235.101.178 176617 port 111 176617 unique_id port 176617 remote_ip 10.8.0.142 176619 username mostafa_es78 176619 mac 176619 bytes_out 0 176619 bytes_in 0 176619 station_ip 178.236.35.96 176619 port 114 176619 unique_id port 176619 remote_ip 10.8.0.34 176625 username aminvpn 176625 mac 176625 bytes_out 0 176625 bytes_in 0 176625 station_ip 5.119.19.146 176625 port 114 176625 unique_id port 176625 remote_ip 10.8.0.58 176627 username aminvpn 176627 mac 176627 bytes_out 0 176627 bytes_in 0 176627 station_ip 37.129.152.49 176627 port 115 176627 unique_id port 176627 remote_ip 10.8.0.58 176629 username mostafa_es78 176629 mac 176629 bytes_out 0 176629 bytes_in 0 176629 station_ip 178.236.35.96 176629 port 116 176629 unique_id port 176629 remote_ip 10.8.0.34 176630 username mostafa_es78 176630 mac 176630 bytes_out 0 176630 bytes_in 0 176630 station_ip 113.203.101.58 176630 port 111 176630 unique_id port 176630 remote_ip 10.8.0.34 176635 username rezaei 176635 kill_reason Another user logged on this global unique id 176635 mac 176635 bytes_out 0 176635 bytes_in 0 176635 station_ip 5.120.134.61 176635 port 98 176635 unique_id port 176636 username aminvpn 176636 mac 176636 bytes_out 344591 176636 bytes_in 3718784 176636 station_ip 5.119.19.146 176636 port 115 176636 unique_id port 176626 bytes_out 0 176626 bytes_in 0 176626 station_ip 113.203.101.58 176626 port 112 176626 unique_id port 176626 remote_ip 10.8.0.34 176628 username saeeddamghani 176628 mac 176628 bytes_out 600080 176628 bytes_in 4923156 176628 station_ip 217.60.218.29 176628 port 111 176628 unique_id port 176628 remote_ip 10.8.0.122 176632 username mostafa_es78 176632 mac 176632 bytes_out 0 176632 bytes_in 0 176632 station_ip 178.236.35.96 176632 port 115 176632 unique_id port 176632 remote_ip 10.8.0.34 176633 username aminvpn 176633 mac 176633 bytes_out 0 176633 bytes_in 0 176633 station_ip 37.129.152.49 176633 port 111 176633 unique_id port 176633 remote_ip 10.8.0.58 176634 username mostafa_es78 176634 mac 176634 bytes_out 0 176634 bytes_in 0 176634 station_ip 113.203.101.58 176634 port 112 176634 unique_id port 176634 remote_ip 10.8.0.34 176637 username shadkam 176637 mac 176637 bytes_out 7342 176637 bytes_in 22009 176637 station_ip 37.129.163.24 176637 port 111 176637 unique_id port 176637 remote_ip 10.8.0.74 176641 username aminvpn 176641 mac 176641 bytes_out 344358 176641 bytes_in 5130706 176641 station_ip 5.119.19.146 176641 port 111 176641 unique_id port 176641 remote_ip 10.8.0.58 176642 username aminvpn 176642 mac 176642 bytes_out 0 176642 bytes_in 0 176642 station_ip 37.129.152.49 176642 port 112 176642 unique_id port 176642 remote_ip 10.8.0.58 176644 username aminvpn 176644 mac 176644 bytes_out 0 176644 bytes_in 0 176644 station_ip 5.119.19.146 176644 port 111 176644 unique_id port 176644 remote_ip 10.8.0.58 176646 username mostafa_es78 176646 mac 176646 bytes_out 0 176646 bytes_in 0 176646 station_ip 178.236.35.96 176646 port 112 176646 unique_id port 176646 remote_ip 10.8.0.34 176648 username fezealinaghi 176648 kill_reason Another user logged on this global unique id 176648 mac 176648 bytes_out 0 176648 bytes_in 0 176648 station_ip 37.129.199.179 176648 port 95 176648 unique_id port 176655 username godarzi 176655 mac 176655 bytes_out 0 176655 bytes_in 0 176655 station_ip 5.202.25.131 176655 port 87 176655 unique_id port 176659 username barzegar 176659 mac 176659 bytes_out 5386 176659 bytes_in 12328 176659 station_ip 5.120.92.202 176659 port 115 176659 unique_id port 176659 remote_ip 10.8.0.10 176660 username houshang 176660 mac 176660 bytes_out 3329432 176660 bytes_in 22451492 176660 station_ip 5.120.182.136 176660 port 114 176660 unique_id port 176660 remote_ip 10.8.0.82 176661 username rashidi4690 176661 mac 176661 bytes_out 3519776 176661 bytes_in 34204060 176661 station_ip 5.120.24.161 176661 port 101 176661 unique_id port 176661 remote_ip 10.8.0.242 176662 username alipour 176662 mac 176662 bytes_out 415217 176662 bytes_in 2533262 176662 station_ip 113.203.35.48 176662 port 100 176662 unique_id port 176662 remote_ip 10.8.0.26 176665 username mostafa_es78 176665 mac 176665 bytes_out 0 176665 bytes_in 0 176665 station_ip 178.236.35.96 176665 port 100 176665 unique_id port 176665 remote_ip 10.8.0.34 176667 username godarzi 176667 mac 176667 bytes_out 0 176667 bytes_in 0 176667 station_ip 5.202.25.131 176667 port 100 176667 unique_id port 176667 remote_ip 10.8.0.38 176669 username mostafa_es78 176669 mac 176669 bytes_out 0 176669 bytes_in 0 176669 station_ip 113.203.104.5 176669 port 75 176669 unique_id port 176669 remote_ip 10.8.0.34 176672 username mostafa_es78 176672 mac 176672 bytes_out 0 176672 bytes_in 0 176672 station_ip 113.203.104.5 176636 remote_ip 10.8.0.58 176639 username mostafa_es78 176639 mac 176639 bytes_out 579773 176639 bytes_in 2090210 176639 station_ip 178.236.35.96 176639 port 116 176639 unique_id port 176639 remote_ip 10.8.0.34 176643 username mostafa_es78 176643 mac 176643 bytes_out 0 176643 bytes_in 0 176643 station_ip 178.236.35.96 176643 port 115 176643 unique_id port 176643 remote_ip 10.8.0.34 176649 username malekpoir 176649 mac 176649 bytes_out 6114456 176649 bytes_in 48852964 176649 station_ip 5.120.116.105 176649 port 75 176649 unique_id port 176649 remote_ip 10.8.0.18 176651 username aminvpn 176651 mac 176651 bytes_out 0 176651 bytes_in 0 176651 station_ip 5.119.19.146 176651 port 75 176651 unique_id port 176651 remote_ip 10.8.0.58 176654 username mosi 176654 mac 176654 bytes_out 2377 176654 bytes_in 5344 176654 station_ip 151.235.101.178 176654 port 89 176654 unique_id port 176654 remote_ip 10.8.0.142 176657 username godarzi 176657 mac 176657 bytes_out 0 176657 bytes_in 0 176657 station_ip 5.202.25.131 176657 port 87 176657 unique_id port 176657 remote_ip 10.8.0.38 176663 username mostafa_es78 176663 mac 176663 bytes_out 1514266 176663 bytes_in 3731103 176663 station_ip 178.236.35.96 176663 port 87 176663 unique_id port 176663 remote_ip 10.8.0.34 176666 username mostafa_es78 176666 mac 176666 bytes_out 0 176666 bytes_in 0 176666 station_ip 113.203.104.5 176666 port 75 176666 unique_id port 176666 remote_ip 10.8.0.34 176670 username barzegar 176670 mac 176670 bytes_out 4486 176670 bytes_in 7445 176670 station_ip 5.120.92.202 176670 port 89 176670 unique_id port 176670 remote_ip 10.8.0.10 176674 username mostafa_es78 176674 mac 176674 bytes_out 0 176674 bytes_in 0 176674 station_ip 113.203.104.5 176674 port 89 176674 unique_id port 176674 remote_ip 10.8.0.34 176677 username mostafa_es78 176677 mac 176677 bytes_out 0 176677 bytes_in 0 176677 station_ip 178.236.35.96 176677 port 75 176677 unique_id port 176677 remote_ip 10.8.0.34 176680 username aminvpn 176680 mac 176680 bytes_out 0 176680 bytes_in 0 176680 station_ip 37.129.198.116 176680 port 112 176680 unique_id port 176680 remote_ip 10.8.0.58 176683 username yaghobi 176683 mac 176683 bytes_out 533738 176683 bytes_in 5640328 176683 station_ip 37.129.208.77 176683 port 101 176683 unique_id port 176683 remote_ip 10.8.0.138 176689 username rashidi4690 176689 mac 176689 bytes_out 0 176689 bytes_in 0 176689 station_ip 5.120.24.161 176689 port 100 176689 unique_id port 176689 remote_ip 10.8.0.242 176693 username mostafa_es78 176693 mac 176693 bytes_out 0 176693 bytes_in 0 176693 station_ip 178.236.35.96 176693 port 101 176693 unique_id port 176693 remote_ip 10.8.0.34 176696 username mostafa_es78 176696 mac 176696 bytes_out 0 176696 bytes_in 0 176696 station_ip 178.236.35.96 176696 port 110 176696 unique_id port 176696 remote_ip 10.8.0.34 176701 username milan 176701 kill_reason Another user logged on this global unique id 176701 mac 176701 bytes_out 0 176701 bytes_in 0 176701 station_ip 5.119.68.145 176701 port 74 176701 unique_id port 176702 username barzegar 176702 mac 176702 bytes_out 105074 176702 bytes_in 25045 176702 station_ip 5.120.92.202 176702 port 100 176702 unique_id port 176702 remote_ip 10.8.0.10 176705 username shadkam 176705 mac 176705 bytes_out 27533942 176705 bytes_in 26997199 176705 station_ip 37.129.132.141 176705 port 89 176705 unique_id port 176705 remote_ip 10.8.0.74 176706 username motamedi9772 176638 remote_ip 10.8.0.58 176640 username mostafa_es78 176640 mac 176640 bytes_out 0 176640 bytes_in 0 176640 station_ip 178.236.35.96 176640 port 112 176640 unique_id port 176640 remote_ip 10.8.0.34 176645 username yaghobi 176645 mac 176645 bytes_out 680189 176645 bytes_in 4032665 176645 station_ip 37.129.136.219 176645 port 89 176645 unique_id port 176645 remote_ip 10.8.0.138 176647 username khademi 176647 kill_reason Another user logged on this global unique id 176647 mac 176647 bytes_out 0 176647 bytes_in 0 176647 station_ip 37.129.154.227 176647 port 88 176647 unique_id port 176650 username aminvpn 176650 mac 176650 bytes_out 0 176650 bytes_in 0 176650 station_ip 37.129.152.49 176650 port 116 176650 unique_id port 176650 remote_ip 10.8.0.58 176652 username mostafa_es78 176652 mac 176652 bytes_out 0 176652 bytes_in 0 176652 station_ip 178.236.35.96 176652 port 89 176652 unique_id port 176652 remote_ip 10.8.0.34 176653 username mostafa_es78 176653 mac 176653 bytes_out 0 176653 bytes_in 0 176653 station_ip 113.203.25.217 176653 port 75 176653 unique_id port 176653 remote_ip 10.8.0.34 176656 username mostafa_es78 176656 mac 176656 bytes_out 0 176656 bytes_in 0 176656 station_ip 178.236.35.96 176656 port 112 176656 unique_id port 176656 remote_ip 10.8.0.34 176658 username mostafa_es78 176658 mac 176658 bytes_out 0 176658 bytes_in 0 176658 station_ip 113.203.25.217 176658 port 75 176658 unique_id port 176658 remote_ip 10.8.0.34 176664 username mostafa_es78 176664 mac 176664 bytes_out 0 176664 bytes_in 0 176664 station_ip 113.203.104.5 176664 port 75 176664 unique_id port 176664 remote_ip 10.8.0.34 176668 username mostafa_es78 176668 mac 176668 bytes_out 0 176668 bytes_in 0 176668 station_ip 178.236.35.96 176668 port 112 176668 unique_id port 176668 remote_ip 10.8.0.34 176671 username mostafa_es78 176671 mac 176671 bytes_out 0 176671 bytes_in 0 176671 station_ip 178.236.35.96 176671 port 100 176671 unique_id port 176671 remote_ip 10.8.0.34 176673 username nilufarrajaei 176673 kill_reason Another user logged on this global unique id 176673 mac 176673 bytes_out 0 176673 bytes_in 0 176673 station_ip 37.129.197.77 176673 port 97 176673 unique_id port 176673 remote_ip 10.8.0.194 176679 username aminvpn 176679 mac 176679 bytes_out 146738 176679 bytes_in 1227394 176679 station_ip 37.129.152.49 176679 port 111 176679 unique_id port 176679 remote_ip 10.8.0.58 176681 username mostafa_es78 176681 mac 176681 bytes_out 0 176681 bytes_in 0 176681 station_ip 178.236.35.96 176681 port 114 176681 unique_id port 176681 remote_ip 10.8.0.34 176684 username barzegar 176684 mac 176684 bytes_out 34343 176684 bytes_in 118335 176684 station_ip 5.120.92.202 176684 port 100 176684 unique_id port 176684 remote_ip 10.8.0.10 176686 username kordestani 176686 mac 176686 bytes_out 4545368 176686 bytes_in 37506478 176686 station_ip 151.235.83.62 176686 port 110 176686 unique_id port 176686 remote_ip 10.8.0.130 176687 username mostafa_es78 176687 mac 176687 bytes_out 0 176687 bytes_in 0 176687 station_ip 113.203.104.5 176687 port 100 176687 unique_id port 176687 remote_ip 10.8.0.34 176688 username mostafa_es78 176688 mac 176688 bytes_out 0 176688 bytes_in 0 176688 station_ip 178.236.35.96 176688 port 101 176688 unique_id port 176688 remote_ip 10.8.0.34 176690 username mostafa_es78 176690 mac 176690 bytes_out 0 176690 bytes_in 0 176690 station_ip 113.203.104.5 176690 port 110 176690 unique_id port 176672 port 75 176672 unique_id port 176672 remote_ip 10.8.0.34 176675 username mostafa_es78 176675 mac 176675 bytes_out 0 176675 bytes_in 0 176675 station_ip 178.236.35.96 176675 port 75 176675 unique_id port 176675 remote_ip 10.8.0.34 176676 username mostafa_es78 176676 mac 176676 bytes_out 0 176676 bytes_in 0 176676 station_ip 113.203.104.5 176676 port 112 176676 unique_id port 176676 remote_ip 10.8.0.34 176678 username mostafa_es78 176678 mac 176678 bytes_out 0 176678 bytes_in 0 176678 station_ip 113.203.104.5 176678 port 112 176678 unique_id port 176678 remote_ip 10.8.0.34 176682 username mostafa_es78 176682 mac 176682 bytes_out 0 176682 bytes_in 0 176682 station_ip 113.203.104.5 176682 port 111 176682 unique_id port 176682 remote_ip 10.8.0.34 176685 username mostafa_es78 176685 mac 176685 bytes_out 0 176685 bytes_in 0 176685 station_ip 178.236.35.96 176685 port 112 176685 unique_id port 176685 remote_ip 10.8.0.34 176692 username rezaei 176692 mac 176692 bytes_out 0 176692 bytes_in 0 176692 station_ip 5.120.134.61 176692 port 98 176692 unique_id port 176694 username mostafa_es78 176694 mac 176694 bytes_out 0 176694 bytes_in 0 176694 station_ip 113.203.104.5 176694 port 98 176694 unique_id port 176694 remote_ip 10.8.0.34 176697 username mostafa_es78 176697 mac 176697 bytes_out 0 176697 bytes_in 0 176697 station_ip 113.203.104.5 176697 port 98 176697 unique_id port 176697 remote_ip 10.8.0.34 176699 username mostafa_es78 176699 mac 176699 bytes_out 0 176699 bytes_in 0 176699 station_ip 178.236.35.96 176699 port 75 176699 unique_id port 176699 remote_ip 10.8.0.34 176704 username mostafa_es78 176704 mac 176704 bytes_out 25775 176704 bytes_in 289642 176704 station_ip 178.236.35.96 176704 port 75 176704 unique_id port 176704 remote_ip 10.8.0.34 176708 username zahra1101 176708 mac 176708 bytes_out 0 176708 bytes_in 0 176708 station_ip 5.120.68.177 176708 port 93 176708 unique_id port 176708 remote_ip 10.8.0.190 176710 username mostafa_es78 176710 mac 176710 bytes_out 0 176710 bytes_in 0 176710 station_ip 113.203.104.5 176710 port 93 176710 unique_id port 176710 remote_ip 10.8.0.34 176711 username mostafa_es78 176711 mac 176711 bytes_out 0 176711 bytes_in 0 176711 station_ip 178.236.35.96 176711 port 98 176711 unique_id port 176711 remote_ip 10.8.0.34 176715 username mostafa_es78 176715 mac 176715 bytes_out 0 176715 bytes_in 0 176715 station_ip 178.236.35.96 176715 port 98 176715 unique_id port 176715 remote_ip 10.8.0.34 176716 username mostafa_es78 176716 mac 176716 bytes_out 0 176716 bytes_in 0 176716 station_ip 113.203.104.5 176716 port 100 176716 unique_id port 176716 remote_ip 10.8.0.34 176719 username mostafa_es78 176719 mac 176719 bytes_out 0 176719 bytes_in 0 176719 station_ip 113.203.104.5 176719 port 100 176719 unique_id port 176719 remote_ip 10.8.0.34 176722 username mostafa_es78 176722 mac 176722 bytes_out 0 176722 bytes_in 0 176722 station_ip 113.203.104.5 176722 port 100 176722 unique_id port 176722 remote_ip 10.8.0.34 176723 username zahra1101 176723 mac 176723 bytes_out 3587 176723 bytes_in 6290 176723 station_ip 5.120.68.177 176723 port 110 176723 unique_id port 176723 remote_ip 10.8.0.190 176726 username mehdizare 176726 kill_reason Another user logged on this global unique id 176726 mac 176726 bytes_out 0 176726 bytes_in 0 176726 station_ip 83.122.83.181 176726 port 103 176726 unique_id port 176726 remote_ip 10.8.0.210 176690 remote_ip 10.8.0.34 176691 username mostafa_es78 176691 mac 176691 bytes_out 0 176691 bytes_in 0 176691 station_ip 113.203.104.5 176691 port 100 176691 unique_id port 176691 remote_ip 10.8.0.34 176695 username barzegar 176695 mac 176695 bytes_out 0 176695 bytes_in 0 176695 station_ip 5.120.92.202 176695 port 100 176695 unique_id port 176695 remote_ip 10.8.0.10 176698 username arash 176698 mac 176698 bytes_out 339800 176698 bytes_in 1619238 176698 station_ip 37.27.2.9 176698 port 75 176698 unique_id port 176698 remote_ip 10.8.0.70 176700 username mostafa_es78 176700 mac 176700 bytes_out 0 176700 bytes_in 0 176700 station_ip 113.203.104.5 176700 port 100 176700 unique_id port 176700 remote_ip 10.8.0.34 176703 username zahra1101 176703 mac 176703 bytes_out 0 176703 bytes_in 0 176703 station_ip 5.120.68.177 176703 port 93 176703 unique_id port 176707 username mostafa_es78 176707 mac 176707 bytes_out 0 176707 bytes_in 0 176707 station_ip 113.203.104.5 176707 port 93 176707 unique_id port 176707 remote_ip 10.8.0.34 176712 username mostafa_es78 176712 mac 176712 bytes_out 0 176712 bytes_in 0 176712 station_ip 113.203.104.5 176712 port 93 176712 unique_id port 176712 remote_ip 10.8.0.34 176713 username mostafa_es78 176713 mac 176713 bytes_out 0 176713 bytes_in 0 176713 station_ip 113.203.104.5 176713 port 93 176713 unique_id port 176713 remote_ip 10.8.0.34 176714 username zahra1101 176714 kill_reason Maximum check online fails reached 176714 mac 176714 bytes_out 0 176714 bytes_in 0 176714 station_ip 5.120.68.177 176714 port 89 176714 unique_id port 176718 username zahra1101 176718 kill_reason Maximum check online fails reached 176718 mac 176718 bytes_out 0 176718 bytes_in 0 176718 station_ip 5.120.68.177 176718 port 93 176718 unique_id port 176721 username barzegar 176721 kill_reason Maximum check online fails reached 176721 mac 176721 bytes_out 0 176721 bytes_in 0 176721 station_ip 5.120.92.202 176721 port 98 176721 unique_id port 176724 username zahra1101 176724 mac 176724 bytes_out 0 176724 bytes_in 0 176724 station_ip 5.120.68.177 176724 port 114 176724 unique_id port 176724 remote_ip 10.8.0.190 176727 username zahra1101 176727 mac 176727 bytes_out 2251 176727 bytes_in 5216 176727 station_ip 5.120.68.177 176727 port 100 176727 unique_id port 176727 remote_ip 10.8.0.190 176735 username zahra1101 176745 mac 176735 kill_reason Another user logged on this global unique id 176735 mac 176735 bytes_out 0 176735 bytes_in 0 176735 station_ip 5.120.68.177 176735 port 110 176735 unique_id port 176738 username barzegar 176738 mac 176738 bytes_out 3338 176738 bytes_in 4338 176738 station_ip 5.120.92.202 176738 port 110 176738 unique_id port 176738 remote_ip 10.8.0.10 176740 username sedighe 176740 mac 176740 bytes_out 193718 176740 bytes_in 561313 176740 station_ip 37.129.207.167 176740 port 75 176740 unique_id port 176740 remote_ip 10.8.0.46 176742 username rezaei 176742 kill_reason Another user logged on this global unique id 176742 mac 176742 bytes_out 0 176742 bytes_in 0 176742 station_ip 5.120.134.61 176742 port 101 176742 unique_id port 176742 remote_ip 10.8.0.198 176748 username barzegar 176748 mac 176748 bytes_out 1858 176748 bytes_in 3970 176748 station_ip 5.120.92.202 176748 port 110 176748 unique_id port 176748 remote_ip 10.8.0.10 176749 username aminvpn 176749 mac 176749 bytes_out 0 176749 bytes_in 0 176749 station_ip 5.119.156.93 176749 port 75 176749 unique_id port 176749 remote_ip 10.8.0.58 176750 username mostafa_es78 176706 mac 176706 bytes_out 138624 176706 bytes_in 821826 176706 station_ip 37.129.207.58 176706 port 98 176706 unique_id port 176706 remote_ip 10.8.0.154 176709 username mostafa_es78 176709 mac 176709 bytes_out 0 176709 bytes_in 0 176709 station_ip 178.236.35.96 176709 port 89 176709 unique_id port 176709 remote_ip 10.8.0.34 176717 username mostafa_es78 176717 mac 176717 bytes_out 0 176717 bytes_in 0 176717 station_ip 178.236.35.96 176717 port 98 176717 unique_id port 176717 remote_ip 10.8.0.34 176720 username mostafa_es78 176720 mac 176720 bytes_out 0 176720 bytes_in 0 176720 station_ip 178.236.35.96 176720 port 112 176720 unique_id port 176720 remote_ip 10.8.0.34 176725 username barzegar 176725 mac 176725 bytes_out 0 176725 bytes_in 0 176725 station_ip 5.120.92.202 176725 port 100 176725 unique_id port 176725 remote_ip 10.8.0.10 176729 username shadkam 176729 mac 176729 bytes_out 3891063 176729 bytes_in 44896652 176729 station_ip 37.129.132.141 176729 port 75 176729 unique_id port 176729 remote_ip 10.8.0.74 176730 username zahra1101 176730 mac 176730 bytes_out 0 176730 bytes_in 0 176730 station_ip 5.120.68.177 176730 port 75 176730 unique_id port 176730 remote_ip 10.8.0.190 176731 username zahra1101 176731 mac 176731 bytes_out 0 176731 bytes_in 0 176731 station_ip 5.120.68.177 176731 port 110 176731 unique_id port 176731 remote_ip 10.8.0.190 176733 username zahra1101 176733 kill_reason Another user logged on this global unique id 176733 mac 176733 bytes_out 0 176733 bytes_in 0 176733 station_ip 5.120.68.177 176733 port 110 176733 unique_id port 176734 username zahra1101 176734 kill_reason Maximum check online fails reached 176734 mac 176734 bytes_out 0 176734 bytes_in 0 176734 station_ip 5.120.68.177 176734 port 100 176734 unique_id port 176739 username yaghobi 176739 mac 176739 bytes_out 1205839 176739 bytes_in 14447894 176739 station_ip 83.122.132.102 176739 port 114 176739 unique_id port 176739 remote_ip 10.8.0.138 176741 username barzegar 176741 mac 176741 bytes_out 4086 176741 bytes_in 5588 176741 station_ip 5.120.92.202 176741 port 110 176741 unique_id port 176741 remote_ip 10.8.0.10 176743 username aminvpn 176743 mac 176743 bytes_out 113113 176743 bytes_in 173161 176743 station_ip 37.129.152.49 176743 port 111 176743 unique_id port 176743 remote_ip 10.8.0.58 176745 username aminvpn 176745 bytes_out 458860 176745 bytes_in 4459045 176745 station_ip 5.119.156.93 176745 port 75 176745 unique_id port 176745 remote_ip 10.8.0.58 176753 username aminvpn 176753 mac 176753 bytes_out 0 176753 bytes_in 0 176753 station_ip 5.119.156.93 176753 port 111 176753 unique_id port 176753 remote_ip 10.8.0.58 176759 username rezaei 176759 mac 176759 bytes_out 0 176759 bytes_in 0 176759 station_ip 5.120.134.61 176759 port 101 176759 unique_id port 176764 username motamedi9772 176764 mac 176764 bytes_out 0 176764 bytes_in 0 176764 station_ip 37.129.159.198 176764 port 101 176764 unique_id port 176764 remote_ip 10.8.0.154 176766 username barzegar 176766 mac 176766 bytes_out 0 176766 bytes_in 0 176766 station_ip 5.120.92.202 176766 port 101 176766 unique_id port 176766 remote_ip 10.8.0.10 176767 username rezaei 176767 mac 176767 bytes_out 2147356 176767 bytes_in 18383273 176767 station_ip 5.119.232.155 176767 port 116 176767 unique_id port 176767 remote_ip 10.8.0.198 176769 username aminvpn2 176769 mac 176769 bytes_out 0 176769 bytes_in 0 176728 username kordestani 176728 mac 176728 bytes_out 887396 176728 bytes_in 5584648 176728 station_ip 37.129.158.248 176728 port 110 176728 unique_id port 176728 remote_ip 10.8.0.130 176732 username mostafa_es78 176732 mac 176732 bytes_out 388190 176732 bytes_in 3681817 176732 station_ip 178.236.35.96 176732 port 112 176732 unique_id port 176732 remote_ip 10.8.0.34 176736 username barzegar 176736 mac 176736 bytes_out 0 176736 bytes_in 0 176736 station_ip 5.120.92.202 176736 port 110 176736 unique_id port 176736 remote_ip 10.8.0.10 176737 username barzegar 176737 mac 176737 bytes_out 0 176737 bytes_in 0 176737 station_ip 5.120.92.202 176737 port 110 176737 unique_id port 176737 remote_ip 10.8.0.10 176744 username barzegar 176744 mac 176744 bytes_out 0 176744 bytes_in 0 176744 station_ip 5.120.92.202 176744 port 110 176744 unique_id port 176744 remote_ip 10.8.0.10 176746 username milan 176746 kill_reason Another user logged on this global unique id 176746 mac 176746 bytes_out 0 176746 bytes_in 0 176746 station_ip 5.119.68.145 176746 port 74 176746 unique_id port 176747 username aminvpn 176747 mac 176747 bytes_out 0 176747 bytes_in 0 176747 station_ip 37.129.152.49 176747 port 112 176747 unique_id port 176747 remote_ip 10.8.0.58 176752 username mostafa_es78 176752 mac 176752 bytes_out 0 176752 bytes_in 0 176752 station_ip 178.236.35.96 176752 port 75 176752 unique_id port 176752 remote_ip 10.8.0.34 176754 username mostafa_es78 176754 mac 176754 bytes_out 0 176754 bytes_in 0 176754 station_ip 178.236.35.96 176754 port 110 176754 unique_id port 176754 remote_ip 10.8.0.34 176762 username aminvpn 176762 mac 176762 bytes_out 0 176762 bytes_in 0 176762 station_ip 37.129.152.49 176762 port 115 176762 unique_id port 176762 remote_ip 10.8.0.58 176763 username aminvpn 176763 mac 176763 bytes_out 0 176763 bytes_in 0 176763 station_ip 5.119.156.93 176763 port 101 176763 unique_id port 176763 remote_ip 10.8.0.58 176765 username barzegar 176765 mac 176765 bytes_out 27435 176765 bytes_in 56675 176765 station_ip 5.120.92.202 176765 port 112 176765 unique_id port 176765 remote_ip 10.8.0.10 176775 username mostafa_es78 176775 mac 176775 bytes_out 0 176775 bytes_in 0 176775 station_ip 178.236.35.96 176775 port 101 176775 unique_id port 176775 remote_ip 10.8.0.34 176777 username mostafa_es78 176777 mac 176777 bytes_out 0 176777 bytes_in 0 176777 station_ip 178.236.35.96 176777 port 114 176777 unique_id port 176777 remote_ip 10.8.0.34 176779 username barzegar 176779 mac 176779 bytes_out 3763 176779 bytes_in 6194 176779 station_ip 5.120.92.202 176779 port 107 176779 unique_id port 176779 remote_ip 10.8.0.10 176782 username mostafa_es78 176782 mac 176782 bytes_out 0 176782 bytes_in 0 176782 station_ip 178.236.35.96 176782 port 95 176782 unique_id port 176782 remote_ip 10.8.0.34 176783 username motamedi9772 176783 mac 176783 bytes_out 173988 176783 bytes_in 2215238 176783 station_ip 37.129.224.22 176783 port 101 176783 unique_id port 176783 remote_ip 10.8.0.154 176786 username majidsarmast 176786 kill_reason Another user logged on this global unique id 176786 mac 176786 bytes_out 0 176786 bytes_in 0 176786 station_ip 86.57.68.251 176786 port 110 176786 unique_id port 176790 username barzegar 176790 mac 176790 bytes_out 0 176790 bytes_in 0 176790 station_ip 5.120.92.202 176790 port 95 176790 unique_id port 176790 remote_ip 10.8.0.10 176791 username barzegar 176792 unique_id port 176750 mac 176750 bytes_out 101679 176750 bytes_in 849765 176750 station_ip 178.236.35.96 176750 port 111 176750 unique_id port 176750 remote_ip 10.8.0.34 176751 username aminvpn 176751 mac 176751 bytes_out 0 176751 bytes_in 0 176751 station_ip 37.129.152.49 176751 port 110 176751 unique_id port 176751 remote_ip 10.8.0.58 176755 username aminvpn2 176755 kill_reason Another user logged on this global unique id 176755 mac 176755 bytes_out 0 176755 bytes_in 0 176755 station_ip 5.119.71.248 176755 port 107 176755 unique_id port 176755 remote_ip 10.8.0.150 176756 username aminvpn 176756 mac 176756 bytes_out 0 176756 bytes_in 0 176756 station_ip 37.129.152.49 176756 port 75 176756 unique_id port 176756 remote_ip 10.8.0.58 176757 username mehdizare 176757 kill_reason Another user logged on this global unique id 176757 mac 176757 bytes_out 0 176757 bytes_in 0 176757 station_ip 83.122.83.181 176757 port 103 176757 unique_id port 176758 username aminvpn 176758 mac 176758 bytes_out 24172 176758 bytes_in 47466 176758 station_ip 5.119.156.93 176758 port 110 176758 unique_id port 176758 remote_ip 10.8.0.58 176760 username aminvpn 176760 mac 176760 bytes_out 0 176760 bytes_in 0 176760 station_ip 37.129.152.49 176760 port 115 176760 unique_id port 176760 remote_ip 10.8.0.58 176761 username aminvpn 176761 mac 176761 bytes_out 0 176761 bytes_in 0 176761 station_ip 5.119.156.93 176761 port 101 176761 unique_id port 176761 remote_ip 10.8.0.58 176768 username motamedi9772 176768 mac 176768 bytes_out 231205 176768 bytes_in 1269980 176768 station_ip 37.129.159.198 176768 port 117 176768 unique_id port 176768 remote_ip 10.8.0.154 176770 username khademi 176770 kill_reason Maximum check online fails reached 176770 mac 176770 bytes_out 0 176770 bytes_in 0 176770 station_ip 37.129.154.227 176770 port 88 176770 unique_id port 176771 username hajghani 176771 kill_reason Another user logged on this global unique id 176771 mac 176771 bytes_out 0 176771 bytes_in 0 176771 station_ip 37.153.186.142 176771 port 111 176771 unique_id port 176771 remote_ip 10.8.0.102 176772 username barzegar 176772 mac 176772 bytes_out 3229 176772 bytes_in 6168 176772 station_ip 5.120.92.202 176772 port 101 176772 unique_id port 176772 remote_ip 10.8.0.10 176773 username hajghani 176773 kill_reason Another user logged on this global unique id 176773 mac 176773 bytes_out 0 176773 bytes_in 0 176773 station_ip 37.153.186.142 176773 port 111 176773 unique_id port 176774 username mostafa_es78 176774 mac 176774 bytes_out 3288858 176774 bytes_in 29807408 176774 station_ip 178.236.35.96 176774 port 114 176774 unique_id port 176774 remote_ip 10.8.0.34 176776 username fezealinaghi 176776 mac 176776 bytes_out 0 176776 bytes_in 0 176776 station_ip 37.129.199.179 176776 port 95 176776 unique_id port 176781 username mostafa_es78 176781 mac 176781 bytes_out 0 176781 bytes_in 0 176781 station_ip 178.236.35.96 176781 port 114 176781 unique_id port 176781 remote_ip 10.8.0.34 176784 username majidsarmast 176784 kill_reason Another user logged on this global unique id 176784 mac 176784 bytes_out 0 176784 bytes_in 0 176784 station_ip 86.57.68.251 176784 port 110 176784 unique_id port 176784 remote_ip 10.8.0.170 176785 username barzegar 176785 mac 176785 bytes_out 0 176785 bytes_in 0 176785 station_ip 5.120.92.202 176785 port 95 176785 unique_id port 176785 remote_ip 10.8.0.10 176792 username barzegar 176792 mac 176792 bytes_out 0 176792 bytes_in 0 176792 station_ip 5.120.92.202 176792 port 110 176769 station_ip 5.119.71.248 176769 port 107 176769 unique_id port 176778 username mostafa_es78 176778 mac 176778 bytes_out 0 176778 bytes_in 0 176778 station_ip 178.236.35.96 176778 port 95 176778 unique_id port 176778 remote_ip 10.8.0.34 176780 username rezaei 176780 mac 176780 bytes_out 270843 176780 bytes_in 1772052 176780 station_ip 5.119.232.155 176780 port 112 176780 unique_id port 176780 remote_ip 10.8.0.198 176787 username majidsarmast 176787 kill_reason Maximum check online fails reached 176787 mac 176787 bytes_out 0 176787 bytes_in 0 176787 station_ip 86.57.68.251 176787 port 110 176787 unique_id port 176788 username barzegar 176788 mac 176788 bytes_out 2777 176788 bytes_in 4815 176788 station_ip 5.120.92.202 176788 port 95 176788 unique_id port 176788 remote_ip 10.8.0.10 176789 username hajghani 176789 kill_reason Another user logged on this global unique id 176789 mac 176789 bytes_out 0 176789 bytes_in 0 176789 station_ip 37.153.186.142 176789 port 111 176789 unique_id port 176795 username shadkam 176795 mac 176795 bytes_out 4834558 176795 bytes_in 51005188 176795 station_ip 37.129.177.1 176795 port 75 176795 unique_id port 176795 remote_ip 10.8.0.74 176798 username hoorieh 176798 mac 176798 bytes_out 0 176798 bytes_in 0 176798 station_ip 5.119.115.213 176798 port 110 176798 unique_id port 176800 username hajghani 176800 kill_reason Another user logged on this global unique id 176800 mac 176800 bytes_out 0 176800 bytes_in 0 176800 station_ip 37.153.186.142 176800 port 111 176800 unique_id port 176802 username kordestani 176802 mac 176802 bytes_out 2865478 176802 bytes_in 35215527 176802 station_ip 151.235.110.56 176802 port 101 176802 unique_id port 176802 remote_ip 10.8.0.130 176808 username nilufarrajaei 176808 mac 176808 bytes_out 0 176808 bytes_in 0 176808 station_ip 37.129.197.77 176808 port 97 176808 unique_id port 176811 username mostafa_es78 176811 mac 176811 bytes_out 327432 176811 bytes_in 1811083 176811 station_ip 178.236.35.96 176811 port 107 176811 unique_id port 176811 remote_ip 10.8.0.34 176817 username barzegar 176817 mac 176817 bytes_out 459303 176817 bytes_in 4281490 176817 station_ip 5.120.92.202 176817 port 97 176817 unique_id port 176817 remote_ip 10.8.0.10 176831 username rahim 176831 mac 176831 bytes_out 16556 176831 bytes_in 97621 176831 station_ip 5.119.143.227 176831 port 75 176831 unique_id port 176831 remote_ip 10.8.0.134 176833 username rahim 176833 mac 176833 bytes_out 68626 176833 bytes_in 72440 176833 station_ip 5.119.143.227 176833 port 101 176833 unique_id port 176833 remote_ip 10.8.0.134 176835 username barzegar 176835 mac 176835 bytes_out 0 176835 bytes_in 0 176835 station_ip 5.120.92.202 176835 port 101 176835 unique_id port 176835 remote_ip 10.8.0.10 176840 username milan 176840 kill_reason Another user logged on this global unique id 176840 mac 176840 bytes_out 0 176840 bytes_in 0 176840 station_ip 5.119.68.145 176840 port 74 176840 unique_id port 176842 username milan 176842 kill_reason Another user logged on this global unique id 176842 mac 176842 bytes_out 0 176842 bytes_in 0 176842 station_ip 5.119.68.145 176842 port 74 176842 unique_id port 176844 username hajghani 176844 mac 176844 bytes_out 0 176844 bytes_in 0 176844 station_ip 37.153.186.142 176844 port 111 176844 unique_id port 176847 username hosseine 176847 kill_reason Another user logged on this global unique id 176847 mac 176847 bytes_out 0 176847 bytes_in 0 176847 station_ip 37.129.180.177 176847 port 113 176791 kill_reason Maximum check online fails reached 176791 mac 176791 bytes_out 0 176791 bytes_in 0 176791 station_ip 5.120.92.202 176791 port 95 176791 unique_id port 176796 username hoorieh 176796 kill_reason Another user logged on this global unique id 176796 mac 176796 bytes_out 0 176796 bytes_in 0 176796 station_ip 5.119.115.213 176796 port 110 176796 unique_id port 176796 remote_ip 10.8.0.62 176805 username shadkam 176805 kill_reason Another user logged on this global unique id 176805 mac 176805 bytes_out 0 176805 bytes_in 0 176805 station_ip 83.122.236.124 176805 port 110 176805 unique_id port 176805 remote_ip 10.8.0.74 176807 username rahim 176807 mac 176807 bytes_out 135268 176807 bytes_in 670717 176807 station_ip 5.119.143.227 176807 port 101 176807 unique_id port 176807 remote_ip 10.8.0.134 176810 username shadkam 176810 mac 176810 bytes_out 0 176810 bytes_in 0 176810 station_ip 83.122.236.124 176810 port 110 176810 unique_id port 176815 username milan 176815 kill_reason Another user logged on this global unique id 176815 mac 176815 bytes_out 0 176815 bytes_in 0 176815 station_ip 5.119.68.145 176815 port 74 176815 unique_id port 176816 username shadkam 176816 kill_reason Another user logged on this global unique id 176816 mac 176816 bytes_out 0 176816 bytes_in 0 176816 station_ip 5.202.8.119 176816 port 101 176816 unique_id port 176816 remote_ip 10.8.0.74 176820 username rahim 176820 mac 176820 bytes_out 0 176820 bytes_in 0 176820 station_ip 5.119.143.227 176820 port 75 176820 unique_id port 176820 remote_ip 10.8.0.134 176825 username rahim 176825 mac 176825 bytes_out 0 176825 bytes_in 0 176825 station_ip 5.119.143.227 176825 port 101 176825 unique_id port 176825 remote_ip 10.8.0.134 176826 username shadkam 176826 mac 176826 bytes_out 426599 176826 bytes_in 1205870 176826 station_ip 37.129.236.103 176826 port 75 176826 unique_id port 176826 remote_ip 10.8.0.74 176828 username mostafa_es78 176828 mac 176828 bytes_out 2033668 176828 bytes_in 44528184 176828 station_ip 113.203.6.155 176828 port 97 176828 unique_id port 176828 remote_ip 10.8.0.34 176829 username rahim 176829 mac 176829 bytes_out 0 176829 bytes_in 0 176829 station_ip 5.119.143.227 176829 port 75 176829 unique_id port 176829 remote_ip 10.8.0.134 176836 username hosseine 176836 kill_reason Another user logged on this global unique id 176836 mac 176836 bytes_out 0 176836 bytes_in 0 176836 station_ip 37.129.180.177 176836 port 113 176836 unique_id port 176836 remote_ip 10.8.0.54 176837 username mansour 176837 mac 176837 bytes_out 297918 176837 bytes_in 3585660 176837 station_ip 5.202.134.148 176837 port 75 176837 unique_id port 176837 remote_ip 10.8.0.206 176846 username barzegar 176846 mac 176846 bytes_out 0 176846 bytes_in 0 176846 station_ip 5.120.92.202 176846 port 97 176846 unique_id port 176846 remote_ip 10.8.0.10 176851 username barzegar 176851 mac 176851 bytes_out 0 176851 bytes_in 0 176851 station_ip 5.120.92.202 176851 port 75 176851 unique_id port 176851 remote_ip 10.8.0.10 176852 username motamedi9772 176852 mac 176852 bytes_out 28637 176852 bytes_in 40767 176852 station_ip 37.129.224.22 176852 port 97 176852 unique_id port 176852 remote_ip 10.8.0.154 176858 username mostafa_es78 176858 mac 176858 bytes_out 0 176858 bytes_in 0 176858 station_ip 113.203.6.155 176858 port 75 176858 unique_id port 176862 username barzegar 176862 mac 176862 bytes_out 0 176862 bytes_in 0 176862 station_ip 5.120.92.202 176862 port 75 176862 unique_id port 176792 remote_ip 10.8.0.10 176793 username majidsarmast 176793 mac 176793 bytes_out 2921793 176793 bytes_in 51404323 176793 station_ip 86.57.68.251 176793 port 101 176793 unique_id port 176793 remote_ip 10.8.0.170 176794 username aminvpn 176794 mac 176794 bytes_out 125485 176794 bytes_in 310677 176794 station_ip 37.129.152.49 176794 port 115 176794 unique_id port 176794 remote_ip 10.8.0.58 176797 username nilufarrajaei 176797 kill_reason Another user logged on this global unique id 176797 mac 176797 bytes_out 0 176797 bytes_in 0 176797 station_ip 37.129.197.77 176797 port 97 176797 unique_id port 176799 username fezealinaghi 176799 mac 176799 bytes_out 337897 176799 bytes_in 3924332 176799 station_ip 37.129.245.173 176799 port 101 176799 unique_id port 176799 remote_ip 10.8.0.202 176801 username mostafa_es78 176801 mac 176801 bytes_out 4078621 176801 bytes_in 879409 176801 station_ip 178.236.35.96 176801 port 107 176801 unique_id port 176801 remote_ip 10.8.0.34 176803 username rahim 176803 mac 176803 bytes_out 804670 176803 bytes_in 1575678 176803 station_ip 5.119.143.227 176803 port 112 176803 unique_id port 176803 remote_ip 10.8.0.134 176804 username rahim 176804 mac 176804 bytes_out 0 176804 bytes_in 0 176804 station_ip 5.119.143.227 176804 port 101 176804 unique_id port 176804 remote_ip 10.8.0.134 176806 username barzegar 176806 mac 176806 bytes_out 198005 176806 bytes_in 352560 176806 station_ip 5.120.92.202 176806 port 75 176806 unique_id port 176806 remote_ip 10.8.0.10 176809 username shadkam 176809 kill_reason Another user logged on this global unique id 176809 mac 176809 bytes_out 0 176809 bytes_in 0 176809 station_ip 83.122.236.124 176809 port 110 176809 unique_id port 176812 username zotaher 176812 kill_reason Relative expiration date has reached 176812 mac 176812 bytes_out 0 176812 bytes_in 0 176812 station_ip 37.129.129.147 176812 port 110 176812 unique_id port 176813 username mostafa_es78 176813 mac 176813 bytes_out 73567 176813 bytes_in 77420 176813 station_ip 178.236.35.96 176813 port 107 176813 unique_id port 176813 remote_ip 10.8.0.34 176814 username mostafa_es78 176814 mac 176814 bytes_out 0 176814 bytes_in 0 176814 station_ip 113.203.68.173 176814 port 110 176814 unique_id port 176814 remote_ip 10.8.0.34 176818 username rahim 176818 mac 176818 bytes_out 1434942 176818 bytes_in 10244034 176818 station_ip 5.119.143.227 176818 port 75 176818 unique_id port 176818 remote_ip 10.8.0.134 176819 username rahim 176819 mac 176819 bytes_out 186425 176819 bytes_in 468107 176819 station_ip 5.119.143.227 176819 port 75 176819 unique_id port 176819 remote_ip 10.8.0.134 176821 username shadkam 176821 mac 176821 bytes_out 0 176821 bytes_in 0 176821 station_ip 5.202.8.119 176821 port 101 176821 unique_id port 176822 username rahim 176822 mac 176822 bytes_out 0 176822 bytes_in 0 176822 station_ip 5.119.143.227 176822 port 97 176822 unique_id port 176822 remote_ip 10.8.0.134 176823 username rahim 176823 mac 176823 bytes_out 0 176823 bytes_in 0 176823 station_ip 5.119.143.227 176823 port 101 176823 unique_id port 176823 remote_ip 10.8.0.134 176824 username barzegar 176824 mac 176824 bytes_out 0 176824 bytes_in 0 176824 station_ip 5.120.92.202 176824 port 97 176824 unique_id port 176824 remote_ip 10.8.0.10 176827 username barzegar 176827 mac 176827 bytes_out 0 176827 bytes_in 0 176827 station_ip 5.120.92.202 176827 port 75 176827 unique_id port 176827 remote_ip 10.8.0.10 176830 username rahim 176830 mac 176830 bytes_out 0 176830 bytes_in 0 176830 station_ip 5.119.143.227 176830 port 75 176830 unique_id port 176830 remote_ip 10.8.0.134 176832 username milan 176832 kill_reason Another user logged on this global unique id 176832 mac 176832 bytes_out 0 176832 bytes_in 0 176832 station_ip 5.119.68.145 176832 port 74 176832 unique_id port 176834 username rahim 176834 mac 176834 bytes_out 0 176834 bytes_in 0 176834 station_ip 5.119.143.227 176834 port 107 176834 unique_id port 176834 remote_ip 10.8.0.134 176838 username shadkam 176838 mac 176838 bytes_out 324106 176838 bytes_in 2112252 176838 station_ip 37.129.228.50 176838 port 97 176838 unique_id port 176838 remote_ip 10.8.0.74 176839 username barzegar 176839 mac 176839 bytes_out 0 176839 bytes_in 0 176839 station_ip 5.120.92.202 176839 port 75 176839 unique_id port 176839 remote_ip 10.8.0.10 176841 username motamedi9772 176841 mac 176841 bytes_out 0 176841 bytes_in 0 176841 station_ip 37.129.224.22 176841 port 75 176841 unique_id port 176841 remote_ip 10.8.0.154 176843 username barzegar 176843 mac 176843 bytes_out 0 176843 bytes_in 0 176843 station_ip 5.120.92.202 176843 port 75 176843 unique_id port 176843 remote_ip 10.8.0.10 176845 username barzegar 176845 mac 176845 bytes_out 0 176845 bytes_in 0 176845 station_ip 5.120.92.202 176845 port 75 176845 unique_id port 176845 remote_ip 10.8.0.10 176854 username mostafa_es78 176854 kill_reason Another user logged on this global unique id 176854 mac 176854 bytes_out 0 176854 bytes_in 0 176854 station_ip 113.203.6.155 176854 port 75 176854 unique_id port 176854 remote_ip 10.8.0.34 176856 username motamedi9772 176856 mac 176856 bytes_out 0 176856 bytes_in 0 176856 station_ip 37.129.224.22 176856 port 97 176856 unique_id port 176856 remote_ip 10.8.0.154 176865 username tahmasebi 176865 mac 176865 bytes_out 0 176865 bytes_in 0 176865 station_ip 5.120.107.62 176865 port 75 176865 unique_id port 176865 remote_ip 10.8.0.126 176869 username tahmasebi 176869 mac 176869 bytes_out 0 176869 bytes_in 0 176869 station_ip 5.120.107.62 176869 port 75 176869 unique_id port 176869 remote_ip 10.8.0.126 176874 username motamedi9772 176874 mac 176874 bytes_out 0 176874 bytes_in 0 176874 station_ip 37.129.224.22 176874 port 75 176874 unique_id port 176874 remote_ip 10.8.0.154 176875 username tahmasebi 176875 mac 176875 bytes_out 0 176875 bytes_in 0 176875 station_ip 5.120.107.62 176875 port 75 176875 unique_id port 176875 remote_ip 10.8.0.126 176880 username mohammadjavad 176880 mac 176880 bytes_out 0 176880 bytes_in 0 176880 station_ip 83.122.223.236 176880 port 75 176880 unique_id port 176880 remote_ip 10.8.0.110 176881 username barzegar 176881 mac 176881 bytes_out 0 176881 bytes_in 0 176881 station_ip 5.120.92.202 176881 port 101 176881 unique_id port 176881 remote_ip 10.8.0.10 176882 username tahmasebi 176882 mac 176882 bytes_out 0 176882 bytes_in 0 176882 station_ip 5.120.107.62 176882 port 75 176882 unique_id port 176882 remote_ip 10.8.0.126 176884 username tahmasebi 176884 mac 176884 bytes_out 0 176884 bytes_in 0 176884 station_ip 5.120.107.62 176884 port 75 176884 unique_id port 176884 remote_ip 10.8.0.126 176886 username tahmasebi 176886 mac 176886 bytes_out 0 176886 bytes_in 0 176886 station_ip 5.120.107.62 176886 port 75 176886 unique_id port 176886 remote_ip 10.8.0.126 176888 username milan 176888 kill_reason Another user logged on this global unique id 176847 unique_id port 176848 username mostafa_es78 176848 mac 176848 bytes_out 845951 176848 bytes_in 33708494 176848 station_ip 113.203.6.155 176848 port 75 176848 unique_id port 176848 remote_ip 10.8.0.34 176849 username hosseine 176849 mac 176849 bytes_out 0 176849 bytes_in 0 176849 station_ip 37.129.180.177 176849 port 113 176849 unique_id port 176850 username mostafa_es78 176850 mac 176850 bytes_out 722088 176850 bytes_in 9502219 176850 station_ip 113.203.6.155 176850 port 75 176850 unique_id port 176850 remote_ip 10.8.0.34 176853 username barzegar 176853 mac 176853 bytes_out 0 176853 bytes_in 0 176853 station_ip 5.120.92.202 176853 port 97 176853 unique_id port 176853 remote_ip 10.8.0.10 176855 username barzegar 176855 mac 176855 bytes_out 0 176855 bytes_in 0 176855 station_ip 5.120.92.202 176855 port 101 176855 unique_id port 176855 remote_ip 10.8.0.10 176857 username barzegar 176857 mac 176857 bytes_out 0 176857 bytes_in 0 176857 station_ip 5.120.92.202 176857 port 97 176857 unique_id port 176857 remote_ip 10.8.0.10 176859 username tahmasebi 176859 mac 176859 bytes_out 0 176859 bytes_in 0 176859 station_ip 5.120.107.62 176859 port 101 176859 unique_id port 176859 remote_ip 10.8.0.126 176860 username mostafa_es78 176860 mac 176860 bytes_out 1457525 176860 bytes_in 21432994 176860 station_ip 113.203.6.155 176860 port 75 176860 unique_id port 176860 remote_ip 10.8.0.34 176861 username tahmasebi 176861 mac 176861 bytes_out 0 176861 bytes_in 0 176861 station_ip 5.120.107.62 176861 port 75 176861 unique_id port 176861 remote_ip 10.8.0.126 176866 username tahmasebi 176866 mac 176866 bytes_out 0 176866 bytes_in 0 176866 station_ip 5.120.107.62 176866 port 75 176866 unique_id port 176866 remote_ip 10.8.0.126 176867 username tahmasebi 176867 mac 176867 bytes_out 0 176867 bytes_in 0 176867 station_ip 5.120.107.62 176867 port 75 176867 unique_id port 176867 remote_ip 10.8.0.126 176868 username barzegar 176868 mac 176868 bytes_out 0 176868 bytes_in 0 176868 station_ip 5.120.92.202 176868 port 75 176868 unique_id port 176868 remote_ip 10.8.0.10 176871 username barzegar 176871 mac 176871 bytes_out 0 176871 bytes_in 0 176871 station_ip 5.120.92.202 176871 port 107 176871 unique_id port 176871 remote_ip 10.8.0.10 176872 username tahmasebi 176872 mac 176872 bytes_out 2156 176872 bytes_in 4494 176872 station_ip 5.120.107.62 176872 port 75 176872 unique_id port 176872 remote_ip 10.8.0.126 176877 username mohammadjavad 176877 mac 176877 bytes_out 140048 176877 bytes_in 466559 176877 station_ip 83.122.223.236 176877 port 75 176877 unique_id port 176877 remote_ip 10.8.0.110 176878 username tahmasebi 176878 mac 176878 bytes_out 0 176878 bytes_in 0 176878 station_ip 5.120.107.62 176878 port 101 176878 unique_id port 176878 remote_ip 10.8.0.126 176885 username mohammadjavad 176885 mac 176885 bytes_out 8588 176885 bytes_in 13567 176885 station_ip 83.122.223.236 176885 port 75 176885 unique_id port 176885 remote_ip 10.8.0.110 176889 username mosi 176889 kill_reason Another user logged on this global unique id 176889 mac 176889 bytes_out 0 176889 bytes_in 0 176889 station_ip 151.235.101.178 176889 port 97 176889 unique_id port 176889 remote_ip 10.8.0.142 176892 username barzegar 176892 mac 176892 bytes_out 0 176892 bytes_in 0 176892 station_ip 5.120.92.202 176892 port 75 176892 unique_id port 176892 remote_ip 10.8.0.10 176898 username barzegar 176898 mac 176898 bytes_out 0 176862 remote_ip 10.8.0.10 176863 username mostafa_es78 176863 mac 176863 bytes_out 0 176863 bytes_in 0 176863 station_ip 113.203.6.155 176863 port 75 176863 unique_id port 176863 remote_ip 10.8.0.34 176864 username tahmasebi 176864 mac 176864 bytes_out 0 176864 bytes_in 0 176864 station_ip 5.120.107.62 176864 port 75 176864 unique_id port 176864 remote_ip 10.8.0.126 176870 username tahmasebi 176870 mac 176870 bytes_out 0 176870 bytes_in 0 176870 station_ip 5.120.107.62 176870 port 75 176870 unique_id port 176870 remote_ip 10.8.0.126 176873 username motamedi9772 176873 mac 176873 bytes_out 98057 176873 bytes_in 108706 176873 station_ip 37.129.224.22 176873 port 101 176873 unique_id port 176873 remote_ip 10.8.0.154 176876 username motamedi9772 176876 mac 176876 bytes_out 0 176876 bytes_in 0 176876 station_ip 37.129.224.22 176876 port 101 176876 unique_id port 176876 remote_ip 10.8.0.154 176879 username mohammadjavad 176879 mac 176879 bytes_out 118802 176879 bytes_in 165848 176879 station_ip 83.122.223.236 176879 port 75 176879 unique_id port 176879 remote_ip 10.8.0.110 176883 username barzegar 176883 mac 176883 bytes_out 0 176883 bytes_in 0 176883 station_ip 5.120.92.202 176883 port 75 176883 unique_id port 176883 remote_ip 10.8.0.10 176887 username barzegar 176887 mac 176887 bytes_out 0 176887 bytes_in 0 176887 station_ip 5.120.92.202 176887 port 75 176887 unique_id port 176887 remote_ip 10.8.0.10 176890 username tahmasebi 176890 mac 176890 bytes_out 0 176890 bytes_in 0 176890 station_ip 5.120.107.62 176890 port 75 176890 unique_id port 176890 remote_ip 10.8.0.126 176893 username tahmasebi 176893 mac 176893 bytes_out 0 176893 bytes_in 0 176893 station_ip 5.120.107.62 176893 port 75 176893 unique_id port 176893 remote_ip 10.8.0.126 176894 username barzegar 176894 mac 176894 bytes_out 0 176894 bytes_in 0 176894 station_ip 5.120.92.202 176894 port 75 176894 unique_id port 176894 remote_ip 10.8.0.10 176895 username mosi 176895 kill_reason Another user logged on this global unique id 176895 mac 176895 bytes_out 0 176895 bytes_in 0 176895 station_ip 151.235.101.178 176895 port 97 176895 unique_id port 176896 username tahmasebi 176896 mac 176896 bytes_out 0 176896 bytes_in 0 176896 station_ip 5.120.107.62 176896 port 75 176896 unique_id port 176896 remote_ip 10.8.0.126 176897 username mehdizare 176897 kill_reason Another user logged on this global unique id 176897 mac 176897 bytes_out 0 176897 bytes_in 0 176897 station_ip 83.122.83.181 176897 port 103 176897 unique_id port 176899 username tahmasebi 176899 mac 176899 bytes_out 0 176899 bytes_in 0 176899 station_ip 5.120.107.62 176899 port 75 176899 unique_id port 176899 remote_ip 10.8.0.126 176900 username mehdizare 176900 kill_reason Another user logged on this global unique id 176900 mac 176900 bytes_out 0 176900 bytes_in 0 176900 station_ip 83.122.83.181 176900 port 103 176900 unique_id port 176902 username milan 176902 kill_reason Another user logged on this global unique id 176902 mac 176902 bytes_out 0 176902 bytes_in 0 176902 station_ip 5.119.68.145 176902 port 74 176902 unique_id port 176903 username barzegar 176903 mac 176903 bytes_out 0 176903 bytes_in 0 176903 station_ip 5.120.92.202 176903 port 101 176903 unique_id port 176903 remote_ip 10.8.0.10 176905 username tahmasebi 176905 mac 176905 bytes_out 0 176905 bytes_in 0 176905 station_ip 5.120.107.62 176905 port 75 176905 unique_id port 176905 remote_ip 10.8.0.126 176907 username milan 176888 mac 176888 bytes_out 0 176888 bytes_in 0 176888 station_ip 5.119.68.145 176888 port 74 176888 unique_id port 176891 username tahmasebi 176891 mac 176891 bytes_out 0 176891 bytes_in 0 176891 station_ip 5.120.107.62 176891 port 75 176891 unique_id port 176891 remote_ip 10.8.0.126 176898 bytes_in 0 176898 station_ip 5.120.92.202 176898 port 75 176898 unique_id port 176898 remote_ip 10.8.0.10 176901 username mosi 176901 kill_reason Another user logged on this global unique id 176901 mac 176901 bytes_out 0 176901 bytes_in 0 176901 station_ip 151.235.101.178 176901 port 97 176901 unique_id port 176904 username yaghobi 176904 mac 176904 bytes_out 400485 176904 bytes_in 3061118 176904 station_ip 37.129.225.205 176904 port 75 176904 unique_id port 176904 remote_ip 10.8.0.138 176906 username milan 176906 kill_reason Another user logged on this global unique id 176906 mac 176906 bytes_out 0 176906 bytes_in 0 176906 station_ip 5.119.68.145 176906 port 74 176906 unique_id port 176907 kill_reason Another user logged on this global unique id 176907 mac 176907 bytes_out 0 176907 bytes_in 0 176907 station_ip 5.119.68.145 176907 port 74 176907 unique_id port 176908 username mehdizare 176908 kill_reason Another user logged on this global unique id 176908 mac 176908 bytes_out 0 176908 bytes_in 0 176908 station_ip 83.122.83.181 176908 port 103 176908 unique_id port 176909 username barzegar 176909 mac 176909 bytes_out 0 176909 bytes_in 0 176909 station_ip 5.120.92.202 176909 port 75 176909 unique_id port 176909 remote_ip 10.8.0.10 176910 username milan 176910 kill_reason Another user logged on this global unique id 176910 mac 176910 bytes_out 0 176910 bytes_in 0 176910 station_ip 5.119.68.145 176910 port 74 176910 unique_id port 176911 username barzegar 176911 mac 176911 bytes_out 0 176911 bytes_in 0 176911 station_ip 5.120.92.202 176911 port 101 176911 unique_id port 176911 remote_ip 10.8.0.10 176912 username tahmasebi 176912 mac 176912 bytes_out 0 176912 bytes_in 0 176912 station_ip 5.120.107.62 176912 port 101 176912 unique_id port 176912 remote_ip 10.8.0.126 176913 username kalantary6037 176913 mac 176913 bytes_out 3244759 176913 bytes_in 37193206 176913 station_ip 37.129.162.102 176913 port 75 176913 unique_id port 176913 remote_ip 10.8.0.50 176914 username milan 176914 kill_reason Another user logged on this global unique id 176914 mac 176914 bytes_out 0 176914 bytes_in 0 176914 station_ip 5.119.68.145 176914 port 74 176914 unique_id port 176915 username barzegar 176915 mac 176915 bytes_out 0 176915 bytes_in 0 176915 station_ip 5.120.92.202 176915 port 75 176915 unique_id port 176915 remote_ip 10.8.0.10 176916 username tahmasebi 176916 mac 176916 bytes_out 0 176916 bytes_in 0 176916 station_ip 5.120.107.62 176916 port 75 176916 unique_id port 176916 remote_ip 10.8.0.126 176917 username milan 176917 kill_reason Another user logged on this global unique id 176917 mac 176917 bytes_out 0 176917 bytes_in 0 176917 station_ip 5.119.68.145 176917 port 74 176917 unique_id port 176918 username barzegar 176918 mac 176918 bytes_out 0 176918 bytes_in 0 176918 station_ip 5.120.92.202 176918 port 107 176918 unique_id port 176918 remote_ip 10.8.0.10 176919 username tahmasebi 176919 mac 176919 bytes_out 0 176919 bytes_in 0 176919 station_ip 5.120.107.62 176919 port 107 176919 unique_id port 176919 remote_ip 10.8.0.126 176920 username tahmasebi 176920 mac 176920 bytes_out 0 176920 bytes_in 0 176920 station_ip 5.120.107.62 176920 port 107 176920 unique_id port 176920 remote_ip 10.8.0.126 176923 username kalantary6037 176923 mac 176923 bytes_out 1801890 176923 bytes_in 14625980 176923 station_ip 37.129.162.102 176923 port 101 176923 unique_id port 176923 remote_ip 10.8.0.50 176925 username tahmasebi 176925 mac 176925 bytes_out 0 176925 bytes_in 0 176925 station_ip 5.120.107.62 176925 port 101 176925 unique_id port 176925 remote_ip 10.8.0.126 176927 username milan 176927 kill_reason Another user logged on this global unique id 176927 mac 176927 bytes_out 0 176927 bytes_in 0 176927 station_ip 5.119.68.145 176927 port 74 176927 unique_id port 176928 username barzegar 176928 mac 176928 bytes_out 19446 176928 bytes_in 102113 176928 station_ip 5.120.92.202 176928 port 101 176928 unique_id port 176928 remote_ip 10.8.0.10 176931 username kalantary6037 176931 mac 176931 bytes_out 484355 176931 bytes_in 2404810 176931 station_ip 37.129.162.102 176931 port 107 176931 unique_id port 176931 remote_ip 10.8.0.50 176934 username barzegar 176934 mac 176934 bytes_out 0 176934 bytes_in 0 176934 station_ip 5.120.92.202 176934 port 101 176934 unique_id port 176934 remote_ip 10.8.0.10 176937 username barzegar 176937 mac 176937 bytes_out 0 176937 bytes_in 0 176937 station_ip 5.120.92.202 176937 port 101 176937 unique_id port 176937 remote_ip 10.8.0.10 176946 username barzegar 176946 mac 176946 bytes_out 61720 176946 bytes_in 114668 176946 station_ip 5.120.92.202 176946 port 97 176946 unique_id port 176946 remote_ip 10.8.0.10 176948 username tahmasebi 176948 mac 176948 bytes_out 0 176948 bytes_in 0 176948 station_ip 5.120.107.62 176948 port 110 176948 unique_id port 176948 remote_ip 10.8.0.126 176951 username kalantary6037 176951 mac 176951 bytes_out 137667 176951 bytes_in 890549 176951 station_ip 37.129.247.126 176951 port 110 176951 unique_id port 176951 remote_ip 10.8.0.50 176954 username houshang 176954 mac 176954 bytes_out 2796276 176954 bytes_in 29307885 176954 station_ip 5.120.182.136 176954 port 75 176954 unique_id port 176954 remote_ip 10.8.0.82 176960 username tahmasebi 176960 mac 176960 bytes_out 0 176960 bytes_in 0 176960 station_ip 5.120.107.62 176960 port 75 176960 unique_id port 176960 remote_ip 10.8.0.126 176961 username tahmasebi 176961 mac 176961 bytes_out 0 176961 bytes_in 0 176961 station_ip 5.120.107.62 176961 port 75 176961 unique_id port 176961 remote_ip 10.8.0.126 176965 username houshang 176965 kill_reason Another user logged on this global unique id 176965 mac 176965 bytes_out 0 176965 bytes_in 0 176965 station_ip 5.120.182.136 176965 port 75 176965 unique_id port 176968 username barzegar 176968 mac 176968 bytes_out 0 176968 bytes_in 0 176968 station_ip 5.120.92.202 176968 port 97 176968 unique_id port 176968 remote_ip 10.8.0.10 176974 username pourshad 176974 kill_reason Another user logged on this global unique id 176974 mac 176974 bytes_out 0 176974 bytes_in 0 176974 station_ip 5.119.33.96 176974 port 97 176974 unique_id port 176976 username yaghobi 176976 mac 176976 bytes_out 260588 176976 bytes_in 1588366 176976 station_ip 37.129.193.64 176976 port 110 176976 unique_id port 176976 remote_ip 10.8.0.138 176978 username yaghobi 176978 mac 176978 bytes_out 1277862 176978 bytes_in 5410054 176978 station_ip 37.129.193.64 176978 port 111 176978 unique_id port 176978 remote_ip 10.8.0.138 176981 username houshang 176981 kill_reason Another user logged on this global unique id 176981 mac 176981 bytes_out 0 176981 bytes_in 0 176981 station_ip 5.120.182.136 176981 port 75 176921 username milan 176921 kill_reason Another user logged on this global unique id 176921 mac 176921 bytes_out 0 176921 bytes_in 0 176921 station_ip 5.119.68.145 176921 port 74 176921 unique_id port 176926 username tahmasebi 176926 mac 176926 bytes_out 0 176926 bytes_in 0 176926 station_ip 5.120.107.62 176926 port 107 176926 unique_id port 176926 remote_ip 10.8.0.126 176930 username tahmasebi 176930 mac 176930 bytes_out 0 176930 bytes_in 0 176930 station_ip 5.120.107.62 176930 port 101 176930 unique_id port 176930 remote_ip 10.8.0.126 176935 username barzegar 176935 mac 176935 bytes_out 0 176935 bytes_in 0 176935 station_ip 5.120.92.202 176935 port 101 176935 unique_id port 176935 remote_ip 10.8.0.10 176940 username barzegar 176940 mac 176940 bytes_out 0 176940 bytes_in 0 176940 station_ip 5.120.92.202 176940 port 97 176940 unique_id port 176940 remote_ip 10.8.0.10 176942 username barzegar 176942 mac 176942 bytes_out 12688 176942 bytes_in 16618 176942 station_ip 5.120.92.202 176942 port 97 176942 unique_id port 176942 remote_ip 10.8.0.10 176944 username tahmasebi 176944 mac 176944 bytes_out 0 176944 bytes_in 0 176944 station_ip 5.120.107.62 176944 port 75 176944 unique_id port 176944 remote_ip 10.8.0.126 176945 username kalantary6037 176945 mac 176945 bytes_out 1238065 176945 bytes_in 9104174 176945 station_ip 37.129.222.118 176945 port 107 176945 unique_id port 176945 remote_ip 10.8.0.50 176949 username sedighe 176949 mac 176949 bytes_out 187411 176949 bytes_in 1829700 176949 station_ip 37.129.142.163 176949 port 107 176949 unique_id port 176949 remote_ip 10.8.0.46 176950 username tahmasebi 176950 mac 176950 bytes_out 0 176950 bytes_in 0 176950 station_ip 5.120.107.62 176950 port 107 176950 unique_id port 176950 remote_ip 10.8.0.126 176952 username barzegar 176952 mac 176952 bytes_out 71354 176952 bytes_in 255303 176952 station_ip 5.120.92.202 176952 port 97 176952 unique_id port 176952 remote_ip 10.8.0.10 176953 username barzegar 176953 mac 176953 bytes_out 0 176953 bytes_in 0 176953 station_ip 5.120.92.202 176953 port 97 176953 unique_id port 176953 remote_ip 10.8.0.10 176959 username barzegar 176959 mac 176959 bytes_out 0 176959 bytes_in 0 176959 station_ip 5.120.92.202 176959 port 75 176959 unique_id port 176959 remote_ip 10.8.0.10 176962 username tahmasebi 176962 mac 176962 bytes_out 0 176962 bytes_in 0 176962 station_ip 5.120.107.62 176962 port 110 176962 unique_id port 176962 remote_ip 10.8.0.126 176971 username pourshad 176971 kill_reason Another user logged on this global unique id 176971 mac 176971 bytes_out 0 176971 bytes_in 0 176971 station_ip 5.119.33.96 176971 port 97 176971 unique_id port 176971 remote_ip 10.8.0.42 176975 username houshang 176975 kill_reason Another user logged on this global unique id 176975 mac 176975 bytes_out 0 176975 bytes_in 0 176975 station_ip 5.120.182.136 176975 port 75 176975 unique_id port 176980 username yaghobi 176980 mac 176980 bytes_out 245456 176980 bytes_in 2356930 176980 station_ip 37.129.212.173 176980 port 110 176980 unique_id port 176980 remote_ip 10.8.0.138 176983 username tahmasebi 176983 mac 176983 bytes_out 42548 176983 bytes_in 54549 176983 station_ip 5.120.107.62 176983 port 107 176983 unique_id port 176983 remote_ip 10.8.0.126 176988 username houshang 176988 mac 176988 bytes_out 0 176988 bytes_in 0 176988 station_ip 5.120.182.136 176988 port 75 176988 unique_id port 176989 username kalantary6037 176989 mac 176922 username barzegar 176922 mac 176922 bytes_out 3557 176922 bytes_in 3955 176922 station_ip 5.120.92.202 176922 port 107 176922 unique_id port 176922 remote_ip 10.8.0.10 176924 username barzegar 176924 mac 176924 bytes_out 0 176924 bytes_in 0 176924 station_ip 5.120.92.202 176924 port 101 176924 unique_id port 176924 remote_ip 10.8.0.10 176929 username barzegar 176929 mac 176929 bytes_out 0 176929 bytes_in 0 176929 station_ip 5.120.92.202 176929 port 101 176929 unique_id port 176929 remote_ip 10.8.0.10 176932 username barzegar 176932 mac 176932 bytes_out 0 176932 bytes_in 0 176932 station_ip 5.120.92.202 176932 port 101 176932 unique_id port 176932 remote_ip 10.8.0.10 176933 username barzegar 176933 mac 176933 bytes_out 0 176933 bytes_in 0 176933 station_ip 5.120.92.202 176933 port 101 176933 unique_id port 176933 remote_ip 10.8.0.10 176936 username tahmasebi 176936 mac 176936 bytes_out 0 176936 bytes_in 0 176936 station_ip 5.120.107.62 176936 port 101 176936 unique_id port 176936 remote_ip 10.8.0.126 176938 username mosi 176938 mac 176938 bytes_out 0 176938 bytes_in 0 176938 station_ip 151.235.101.178 176938 port 97 176938 unique_id port 176939 username tahmasebi 176939 mac 176939 bytes_out 0 176939 bytes_in 0 176939 station_ip 5.120.107.62 176939 port 97 176939 unique_id port 176939 remote_ip 10.8.0.126 176941 username tahmasebi 176941 mac 176941 bytes_out 0 176941 bytes_in 0 176941 station_ip 5.120.107.62 176941 port 107 176941 unique_id port 176941 remote_ip 10.8.0.126 176943 username sedighe 176943 mac 176943 bytes_out 2107917 176943 bytes_in 6242723 176943 station_ip 37.129.250.7 176943 port 75 176943 unique_id port 176943 remote_ip 10.8.0.46 176947 username tahmasebi 176947 mac 176947 bytes_out 0 176947 bytes_in 0 176947 station_ip 5.120.107.62 176947 port 110 176947 unique_id port 176947 remote_ip 10.8.0.126 176955 username barzegar 176955 mac 176955 bytes_out 0 176955 bytes_in 0 176955 station_ip 5.120.92.202 176955 port 75 176955 unique_id port 176955 remote_ip 10.8.0.10 176956 username barzegar 176956 mac 176956 bytes_out 0 176956 bytes_in 0 176956 station_ip 5.120.92.202 176956 port 75 176956 unique_id port 176956 remote_ip 10.8.0.10 176957 username tahmasebi 176957 mac 176957 bytes_out 0 176957 bytes_in 0 176957 station_ip 5.120.107.62 176957 port 75 176957 unique_id port 176957 remote_ip 10.8.0.126 176958 username milan 176958 kill_reason Another user logged on this global unique id 176958 mac 176958 bytes_out 0 176958 bytes_in 0 176958 station_ip 5.119.68.145 176958 port 74 176958 unique_id port 176963 username houshang 176963 kill_reason Another user logged on this global unique id 176963 mac 176963 bytes_out 0 176963 bytes_in 0 176963 station_ip 5.120.182.136 176963 port 75 176963 unique_id port 176963 remote_ip 10.8.0.82 176964 username mohammadjavad 176964 mac 176964 bytes_out 2135303 176964 bytes_in 33964568 176964 station_ip 37.129.215.46 176964 port 97 176964 unique_id port 176964 remote_ip 10.8.0.110 176966 username milan 176966 kill_reason Another user logged on this global unique id 176966 mac 176966 bytes_out 0 176966 bytes_in 0 176966 station_ip 5.119.68.145 176966 port 74 176966 unique_id port 176967 username barzegar 176967 mac 176967 bytes_out 15200 176967 bytes_in 25943 176967 station_ip 5.120.92.202 176967 port 107 176967 unique_id port 176967 remote_ip 10.8.0.10 176969 username tahmasebi 176969 mac 176969 bytes_out 0 176969 bytes_in 0 176969 station_ip 5.120.107.62 176969 port 107 176969 unique_id port 176969 remote_ip 10.8.0.126 176970 username houshang 176970 kill_reason Another user logged on this global unique id 176970 mac 176970 bytes_out 0 176970 bytes_in 0 176970 station_ip 5.120.182.136 176970 port 75 176970 unique_id port 176972 username milan 176972 kill_reason Another user logged on this global unique id 176972 mac 176972 bytes_out 0 176972 bytes_in 0 176972 station_ip 5.119.68.145 176972 port 74 176972 unique_id port 176973 username houshang 176973 kill_reason Another user logged on this global unique id 176973 mac 176973 bytes_out 0 176973 bytes_in 0 176973 station_ip 5.120.182.136 176973 port 75 176973 unique_id port 176977 username houshang 176977 kill_reason Another user logged on this global unique id 176977 mac 176977 bytes_out 0 176977 bytes_in 0 176977 station_ip 5.120.182.136 176977 port 75 176977 unique_id port 176979 username houshang 176979 kill_reason Another user logged on this global unique id 176979 mac 176979 bytes_out 0 176979 bytes_in 0 176979 station_ip 5.120.182.136 176979 port 75 176979 unique_id port 176984 username nekheei 176984 kill_reason Another user logged on this global unique id 176984 mac 176984 bytes_out 0 176984 bytes_in 0 176984 station_ip 5.119.157.237 176984 port 110 176984 unique_id port 176984 remote_ip 10.8.0.230 176997 username jafari 176997 mac 176997 bytes_out 18868702 176997 bytes_in 29535038 176997 station_ip 89.47.153.105 176997 port 111 176997 unique_id port 176997 remote_ip 10.8.0.86 177001 username milan 177001 kill_reason Maximum number of concurrent logins reached 177001 mac 177001 bytes_out 0 177001 bytes_in 0 177001 station_ip 5.119.68.145 177001 port 88 177001 unique_id port 177004 username milan 177004 kill_reason Maximum check online fails reached 177004 mac 177004 bytes_out 0 177004 bytes_in 0 177004 station_ip 5.119.68.145 177004 port 111 177004 unique_id port 177005 username sedighe 177005 mac 177005 bytes_out 161686 177005 bytes_in 446864 177005 station_ip 37.129.187.3 177005 port 112 177005 unique_id port 177005 remote_ip 10.8.0.46 177006 username nekheei 177006 kill_reason Another user logged on this global unique id 177006 mac 177006 bytes_out 0 177006 bytes_in 0 177006 station_ip 5.119.157.237 177006 port 110 177006 unique_id port 177007 username alipour 177007 kill_reason Relative expiration date has reached 177007 mac 177007 bytes_out 0 177007 bytes_in 0 177007 station_ip 5.233.47.163 177007 port 88 177007 unique_id port 177013 username nekheei 177013 kill_reason Another user logged on this global unique id 177013 mac 177013 bytes_out 0 177013 bytes_in 0 177013 station_ip 5.119.157.237 177013 port 110 177013 unique_id port 177019 username mehdizare 177019 mac 177019 bytes_out 0 177019 bytes_in 0 177019 station_ip 83.122.83.181 177019 port 103 177019 unique_id port 177026 username nekheei 177026 kill_reason Another user logged on this global unique id 177026 mac 177026 bytes_out 0 177026 bytes_in 0 177026 station_ip 5.119.157.237 177026 port 110 177026 unique_id port 177029 username nekheei 177029 mac 177029 bytes_out 0 177029 bytes_in 0 177029 station_ip 5.119.157.237 177029 port 110 177029 unique_id port 177031 username pourshad 177031 kill_reason Another user logged on this global unique id 177031 mac 177031 bytes_out 0 177031 bytes_in 0 177031 station_ip 5.119.33.96 177031 port 87 177031 unique_id port 177033 username sedighe 177033 mac 177033 bytes_out 7586 177033 bytes_in 11903 177033 station_ip 37.129.151.49 177033 port 113 177033 unique_id port 177033 remote_ip 10.8.0.46 176981 unique_id port 176982 username mirzaei6046 176982 kill_reason Another user logged on this global unique id 176982 mac 176982 bytes_out 0 176982 bytes_in 0 176982 station_ip 5.119.59.74 176982 port 94 176982 unique_id port 176982 remote_ip 10.8.0.246 176985 username houshang 176985 kill_reason Another user logged on this global unique id 176985 mac 176985 bytes_out 0 176985 bytes_in 0 176985 station_ip 5.120.182.136 176985 port 75 176985 unique_id port 176986 username mehdizare 176986 kill_reason Another user logged on this global unique id 176986 mac 176986 bytes_out 0 176986 bytes_in 0 176986 station_ip 83.122.83.181 176986 port 103 176986 unique_id port 176987 username tahmasebi 176987 mac 176987 bytes_out 0 176987 bytes_in 0 176987 station_ip 5.120.107.62 176987 port 107 176987 unique_id port 176987 remote_ip 10.8.0.126 176990 username milan 176990 kill_reason Another user logged on this global unique id 176990 mac 176990 bytes_out 0 176990 bytes_in 0 176990 station_ip 5.119.68.145 176990 port 74 176990 unique_id port 176994 username nekheei 176994 kill_reason Another user logged on this global unique id 176994 mac 176994 bytes_out 0 176994 bytes_in 0 176994 station_ip 5.119.157.237 176994 port 110 176994 unique_id port 176999 username milan 176999 mac 176999 bytes_out 3665 176999 bytes_in 7591 176999 station_ip 5.119.68.145 176999 port 74 176999 unique_id port 176999 remote_ip 10.8.0.182 177003 username yaghobi 177003 mac 177003 bytes_out 1231258 177003 bytes_in 5366378 177003 station_ip 37.129.212.244 177003 port 75 177003 unique_id port 177003 remote_ip 10.8.0.138 177008 username alipour 177008 kill_reason Relative expiration date has reached 177008 mac 177008 bytes_out 1873970 177008 bytes_in 8142500 177008 station_ip 113.203.35.48 177008 port 87 177008 unique_id port 177008 remote_ip 10.8.0.26 177009 username kalantary6037 177009 kill_reason Another user logged on this global unique id 177009 mac 177009 bytes_out 0 177009 bytes_in 0 177009 station_ip 37.129.149.242 177009 port 114 177009 unique_id port 177009 remote_ip 10.8.0.50 177011 username kalantary6037 177011 mac 177011 bytes_out 0 177011 bytes_in 0 177011 station_ip 37.129.149.242 177011 port 114 177011 unique_id port 177012 username aminvpn 177012 mac 177012 bytes_out 2668358 177012 bytes_in 26943429 177012 station_ip 5.119.156.93 177012 port 107 177012 unique_id port 177012 remote_ip 10.8.0.58 177014 username pourshad 177014 kill_reason Another user logged on this global unique id 177014 mac 177014 bytes_out 0 177014 bytes_in 0 177014 station_ip 5.119.33.96 177014 port 97 177014 unique_id port 177022 username khademi 177022 kill_reason Another user logged on this global unique id 177022 mac 177022 bytes_out 0 177022 bytes_in 0 177022 station_ip 37.129.154.227 177022 port 116 177022 unique_id port 177022 remote_ip 10.8.0.14 177023 username yaghobi 177023 mac 177023 bytes_out 0 177023 bytes_in 0 177023 station_ip 37.129.223.116 177023 port 112 177023 unique_id port 177023 remote_ip 10.8.0.138 177024 username sedighe 177024 mac 177024 bytes_out 5792 177024 bytes_in 8369 177024 station_ip 37.129.163.68 177024 port 97 177024 unique_id port 177024 remote_ip 10.8.0.46 177025 username tahmasebi 177025 mac 177025 bytes_out 578374 177025 bytes_in 447607 177025 station_ip 5.120.107.62 177025 port 113 177025 unique_id port 177025 remote_ip 10.8.0.126 177030 username yaghobi 177030 mac 177030 bytes_out 358924 177030 bytes_in 5730250 177030 station_ip 37.129.223.116 177030 port 113 177030 unique_id port 177030 remote_ip 10.8.0.138 176989 bytes_out 1488184 176989 bytes_in 3598980 176989 station_ip 37.129.248.102 176989 port 75 176989 unique_id port 176989 remote_ip 10.8.0.50 176991 username nekheei 176991 kill_reason Another user logged on this global unique id 176991 mac 176991 bytes_out 0 176991 bytes_in 0 176991 station_ip 5.119.157.237 176991 port 110 176991 unique_id port 176992 username tahmasebi 176992 mac 176992 bytes_out 197317 176992 bytes_in 158962 176992 station_ip 5.120.107.62 176992 port 75 176992 unique_id port 176992 remote_ip 10.8.0.126 176993 username milan 176993 kill_reason Maximum number of concurrent logins reached 176993 mac 176993 bytes_out 0 176993 bytes_in 0 176993 station_ip 5.119.68.145 176993 port 116 176993 unique_id port 176995 username milan 176995 mac 176995 bytes_out 0 176995 bytes_in 0 176995 station_ip 5.119.68.145 176995 port 74 176995 unique_id port 176996 username milan 176996 kill_reason Maximum number of concurrent logins reached 176996 mac 176996 bytes_out 0 176996 bytes_in 0 176996 station_ip 5.119.68.145 176996 port 116 176996 unique_id port 176998 username milan 176998 kill_reason Maximum check online fails reached 176998 mac 176998 bytes_out 0 176998 bytes_in 0 176998 station_ip 5.119.68.145 176998 port 115 176998 unique_id port 177000 username khademi 177000 mac 177000 bytes_out 0 177000 bytes_in 0 177000 station_ip 37.129.154.227 177000 port 88 177000 unique_id port 177002 username milan 177002 mac 177002 bytes_out 1765 177002 bytes_in 4427 177002 station_ip 5.119.68.145 177002 port 74 177002 unique_id port 177002 remote_ip 10.8.0.182 177010 username pourshad 177010 kill_reason Another user logged on this global unique id 177010 mac 177010 bytes_out 0 177010 bytes_in 0 177010 station_ip 5.119.33.96 177010 port 97 177010 unique_id port 177015 username rezaei 177015 mac 177015 bytes_out 205778 177015 bytes_in 295267 177015 station_ip 5.119.232.155 177015 port 87 177015 unique_id port 177015 remote_ip 10.8.0.198 177016 username pourshad 177016 mac 177016 bytes_out 0 177016 bytes_in 0 177016 station_ip 5.119.33.96 177016 port 97 177016 unique_id port 177017 username sedighe 177017 mac 177017 bytes_out 24743 177017 bytes_in 41044 177017 station_ip 37.129.163.68 177017 port 75 177017 unique_id port 177017 remote_ip 10.8.0.46 177018 username nekheei 177018 kill_reason Another user logged on this global unique id 177018 mac 177018 bytes_out 0 177018 bytes_in 0 177018 station_ip 5.119.157.237 177018 port 110 177018 unique_id port 177020 username pourshad 177020 kill_reason Another user logged on this global unique id 177020 mac 177020 bytes_out 0 177020 bytes_in 0 177020 station_ip 5.119.33.96 177020 port 87 177020 unique_id port 177020 remote_ip 10.8.0.42 177021 username yaghobi 177021 mac 177021 bytes_out 229260 177021 bytes_in 1227269 177021 station_ip 37.129.223.116 177021 port 88 177021 unique_id port 177021 remote_ip 10.8.0.138 177027 username yaghobi 177027 mac 177027 bytes_out 168282 177027 bytes_in 2294326 177027 station_ip 37.129.223.116 177027 port 88 177027 unique_id port 177027 remote_ip 10.8.0.138 177028 username sedighe 177028 mac 177028 bytes_out 10181 177028 bytes_in 16911 177028 station_ip 37.129.163.68 177028 port 114 177028 unique_id port 177028 remote_ip 10.8.0.46 177034 username motamedi9772 177034 mac 177034 bytes_out 0 177034 bytes_in 0 177034 station_ip 37.129.179.170 177034 port 114 177034 unique_id port 177034 remote_ip 10.8.0.154 177037 username aminvpn2 177037 mac 177037 bytes_out 1026048 177032 username sedighe 177032 mac 177032 bytes_out 6943 177032 bytes_in 14321 177032 station_ip 37.129.163.68 177032 port 88 177032 unique_id port 177032 remote_ip 10.8.0.46 177035 username mirzaei6046 177035 kill_reason Another user logged on this global unique id 177035 mac 177035 bytes_out 0 177035 bytes_in 0 177035 station_ip 5.119.59.74 177035 port 94 177035 unique_id port 177040 username pourshad 177040 mac 177040 bytes_out 29013 177040 bytes_in 46315 177040 station_ip 5.119.33.96 177040 port 114 177040 unique_id port 177040 remote_ip 10.8.0.42 177044 username aminvpn 177044 mac 177044 bytes_out 0 177044 bytes_in 0 177044 station_ip 5.119.156.93 177044 port 118 177044 unique_id port 177044 remote_ip 10.8.0.58 177052 username sedighe 177052 mac 177052 bytes_out 10680 177052 bytes_in 17752 177052 station_ip 37.129.245.129 177052 port 119 177052 unique_id port 177052 remote_ip 10.8.0.46 177054 username tahmasebi 177054 mac 177054 bytes_out 838359 177054 bytes_in 1937073 177054 station_ip 5.120.107.62 177054 port 97 177054 unique_id port 177054 remote_ip 10.8.0.126 177055 username pourshad 177055 mac 177055 bytes_out 70526 177055 bytes_in 56201 177055 station_ip 5.119.33.96 177055 port 107 177055 unique_id port 177055 remote_ip 10.8.0.42 177058 username rahim 177058 mac 177058 bytes_out 0 177058 bytes_in 0 177058 station_ip 5.119.143.227 177058 port 107 177058 unique_id port 177058 remote_ip 10.8.0.134 177059 username godarzi 177059 mac 177059 bytes_out 0 177059 bytes_in 0 177059 station_ip 5.202.26.240 177059 port 112 177059 unique_id port 177059 remote_ip 10.8.0.38 177061 username rahim 177061 mac 177061 bytes_out 0 177061 bytes_in 0 177061 station_ip 5.119.143.227 177061 port 107 177061 unique_id port 177061 remote_ip 10.8.0.134 177064 username kalantary6037 177064 mac 177064 bytes_out 2690636 177064 bytes_in 23715820 177064 station_ip 37.129.238.118 177064 port 110 177064 unique_id port 177064 remote_ip 10.8.0.50 177067 username tahmasebi 177067 mac 177067 bytes_out 0 177067 bytes_in 0 177067 station_ip 5.120.107.62 177067 port 97 177067 unique_id port 177067 remote_ip 10.8.0.126 177070 username khalili2 177070 mac 177070 bytes_out 334123 177070 bytes_in 4933827 177070 station_ip 5.119.201.0 177070 port 97 177070 unique_id port 177070 remote_ip 10.8.0.118 177072 username godarzi 177072 kill_reason Another user logged on this global unique id 177072 mac 177072 bytes_out 0 177072 bytes_in 0 177072 station_ip 5.202.26.240 177072 port 114 177072 unique_id port 177072 remote_ip 10.8.0.38 177075 username rahim 177075 mac 177075 bytes_out 369659 177075 bytes_in 4473160 177075 station_ip 5.119.143.227 177075 port 97 177075 unique_id port 177075 remote_ip 10.8.0.134 177076 username sedighe 177076 mac 177076 bytes_out 75012 177076 bytes_in 134411 177076 station_ip 83.122.193.97 177076 port 110 177076 unique_id port 177076 remote_ip 10.8.0.46 177078 username shadkam 177078 mac 177078 bytes_out 1296931 177078 bytes_in 14781006 177078 station_ip 83.122.137.237 177078 port 120 177078 unique_id port 177078 remote_ip 10.8.0.74 177084 username nilufarrajaei 177084 mac 177084 bytes_out 1771550 177084 bytes_in 12076351 177084 station_ip 37.129.154.26 177084 port 113 177084 unique_id port 177084 remote_ip 10.8.0.194 177085 username zahra1101 177085 mac 177085 bytes_out 3019709 177085 bytes_in 671009 177085 station_ip 5.119.21.16 177085 port 119 177085 unique_id port 177085 remote_ip 10.8.0.190 177036 username pourshad 177036 mac 177036 bytes_out 0 177036 bytes_in 0 177036 station_ip 5.119.33.96 177036 port 87 177036 unique_id port 177039 username malekpoir 177039 kill_reason Another user logged on this global unique id 177039 mac 177039 bytes_out 0 177039 bytes_in 0 177039 station_ip 5.120.116.105 177039 port 75 177039 unique_id port 177039 remote_ip 10.8.0.18 177041 username khademi 177041 kill_reason Another user logged on this global unique id 177041 mac 177041 bytes_out 0 177041 bytes_in 0 177041 station_ip 37.129.154.227 177041 port 116 177041 unique_id port 177046 username aminvpn 177046 mac 177046 bytes_out 0 177046 bytes_in 0 177046 station_ip 5.119.156.93 177046 port 107 177046 unique_id port 177046 remote_ip 10.8.0.58 177048 username aminvpn 177048 mac 177048 bytes_out 0 177048 bytes_in 0 177048 station_ip 5.119.156.93 177048 port 119 177048 unique_id port 177048 remote_ip 10.8.0.58 177051 username sedighe 177051 mac 177051 bytes_out 64272 177051 bytes_in 54510 177051 station_ip 83.122.163.213 177051 port 88 177051 unique_id port 177051 remote_ip 10.8.0.46 177056 username rahim 177056 mac 177056 bytes_out 151429 177056 bytes_in 250146 177056 station_ip 5.119.143.227 177056 port 112 177056 unique_id port 177056 remote_ip 10.8.0.134 177062 username khalili2 177062 mac 177062 bytes_out 0 177062 bytes_in 0 177062 station_ip 5.119.201.0 177062 port 88 177062 unique_id port 177065 username tahmasebi 177065 mac 177065 bytes_out 7363 177065 bytes_in 14409 177065 station_ip 5.120.107.62 177065 port 97 177065 unique_id port 177065 remote_ip 10.8.0.126 177068 username sedighe 177068 mac 177068 bytes_out 16550 177068 bytes_in 22420 177068 station_ip 83.122.193.97 177068 port 119 177068 unique_id port 177068 remote_ip 10.8.0.46 177074 username tahmasebi 177074 kill_reason Maximum check online fails reached 177074 mac 177074 bytes_out 0 177074 bytes_in 0 177074 station_ip 5.120.107.62 177074 port 121 177074 unique_id port 177077 username godarzi 177077 kill_reason Another user logged on this global unique id 177077 mac 177077 bytes_out 0 177077 bytes_in 0 177077 station_ip 5.202.26.240 177077 port 114 177077 unique_id port 177081 username fezealinaghi 177081 kill_reason Another user logged on this global unique id 177081 mac 177081 bytes_out 0 177081 bytes_in 0 177081 station_ip 37.129.131.185 177081 port 117 177081 unique_id port 177081 remote_ip 10.8.0.202 177083 username alihosseini1 177083 mac 177083 bytes_out 1023384 177083 bytes_in 8857300 177083 station_ip 5.120.49.65 177083 port 97 177083 unique_id port 177083 remote_ip 10.8.0.234 177086 username zahra1101 177086 mac 177086 bytes_out 0 177086 bytes_in 0 177086 station_ip 5.119.21.16 177086 port 113 177086 unique_id port 177086 remote_ip 10.8.0.190 177087 username fezealinaghi 177087 mac 177087 bytes_out 0 177087 bytes_in 0 177087 station_ip 37.129.131.185 177087 port 117 177087 unique_id port 177088 username bcboard 177088 kill_reason Relative expiration date has reached 177088 unique_id port 177088 bytes_out 0 177088 bytes_in 0 177088 station_ip 5.119.121.160 177088 port 15728641 177088 nas_port_type Virtual 177089 username houshang 177089 mac 177089 bytes_out 49134 177089 bytes_in 104121 177089 station_ip 5.120.182.136 177089 port 120 177089 unique_id port 177089 remote_ip 10.8.0.82 177090 username rahim 177090 mac 177090 bytes_out 0 177090 bytes_in 0 177090 station_ip 5.119.143.227 177090 port 120 177090 unique_id port 177090 remote_ip 10.8.0.134 177037 bytes_in 2899591 177037 station_ip 5.119.71.248 177037 port 112 177037 unique_id port 177037 remote_ip 10.8.0.150 177038 username sedighe 177038 mac 177038 bytes_out 8127 177038 bytes_in 17134 177038 station_ip 37.129.170.206 177038 port 88 177038 unique_id port 177038 remote_ip 10.8.0.46 177042 username sedighe 177042 mac 177042 bytes_out 1638 177042 bytes_in 3943 177042 station_ip 37.129.170.206 177042 port 117 177042 unique_id port 177042 remote_ip 10.8.0.46 177043 username aminvpn 177043 mac 177043 bytes_out 94160 177043 bytes_in 274983 177043 station_ip 5.119.156.93 177043 port 107 177043 unique_id port 177043 remote_ip 10.8.0.58 177045 username pourshad 177045 mac 177045 bytes_out 17798 177045 bytes_in 23324 177045 station_ip 5.119.33.96 177045 port 117 177045 unique_id port 177045 remote_ip 10.8.0.42 177047 username aminvpn 177047 mac 177047 bytes_out 0 177047 bytes_in 0 177047 station_ip 5.119.156.93 177047 port 117 177047 unique_id port 177047 remote_ip 10.8.0.58 177049 username houshang 177049 mac 177049 bytes_out 1001958 177049 bytes_in 151266 177049 station_ip 5.120.182.136 177049 port 118 177049 unique_id port 177049 remote_ip 10.8.0.82 177050 username aminvpn 177050 mac 177050 bytes_out 0 177050 bytes_in 0 177050 station_ip 5.119.156.93 177050 port 117 177050 unique_id port 177050 remote_ip 10.8.0.58 177053 username sedighe 177053 mac 177053 bytes_out 5243 177053 bytes_in 8961 177053 station_ip 37.129.162.250 177053 port 120 177053 unique_id port 177053 remote_ip 10.8.0.46 177057 username khalili2 177057 kill_reason Another user logged on this global unique id 177057 mac 177057 bytes_out 0 177057 bytes_in 0 177057 station_ip 5.119.201.0 177057 port 88 177057 unique_id port 177057 remote_ip 10.8.0.118 177060 username yaghobi 177060 mac 177060 bytes_out 3230016 177060 bytes_in 32002730 177060 station_ip 37.129.133.246 177060 port 114 177060 unique_id port 177060 remote_ip 10.8.0.138 177063 username pourshad 177063 mac 177063 bytes_out 19182 177063 bytes_in 84203 177063 station_ip 5.119.33.96 177063 port 107 177063 unique_id port 177063 remote_ip 10.8.0.42 177066 username rahim 177066 mac 177066 bytes_out 0 177066 bytes_in 0 177066 station_ip 5.119.143.227 177066 port 97 177066 unique_id port 177066 remote_ip 10.8.0.134 177069 username shadkam 177069 mac 177069 bytes_out 0 177069 bytes_in 0 177069 station_ip 5.202.132.18 177069 port 119 177069 unique_id port 177069 remote_ip 10.8.0.74 177071 username rahim 177071 mac 177071 bytes_out 0 177071 bytes_in 0 177071 station_ip 5.119.143.227 177071 port 97 177071 unique_id port 177071 remote_ip 10.8.0.134 177073 username tahmasebi 177073 mac 177073 bytes_out 0 177073 bytes_in 0 177073 station_ip 5.120.107.62 177073 port 122 177073 unique_id port 177073 remote_ip 10.8.0.126 177079 username tahmasebi 177079 mac 177079 bytes_out 0 177079 bytes_in 0 177079 station_ip 5.120.107.62 177079 port 110 177079 unique_id port 177079 remote_ip 10.8.0.126 177080 username tahmasebi 177080 mac 177080 bytes_out 0 177080 bytes_in 0 177080 station_ip 5.120.107.62 177080 port 110 177080 unique_id port 177080 remote_ip 10.8.0.126 177082 username rahim 177082 mac 177082 bytes_out 0 177082 bytes_in 0 177082 station_ip 5.119.143.227 177082 port 110 177082 unique_id port 177082 remote_ip 10.8.0.134 177091 username tahmasebi 177091 mac 177091 bytes_out 2409 177091 bytes_in 4864 177091 station_ip 5.120.107.62 177091 port 122 177091 unique_id port 177091 remote_ip 10.8.0.126 177098 username zahra1101 177098 mac 177098 bytes_out 0 177098 bytes_in 0 177098 station_ip 5.119.21.16 177098 port 120 177098 unique_id port 177098 remote_ip 10.8.0.190 177101 username zahra1101 177101 mac 177101 bytes_out 47869 177101 bytes_in 94733 177101 station_ip 5.119.21.16 177101 port 122 177101 unique_id port 177101 remote_ip 10.8.0.190 177102 username zahra1101 177102 mac 177102 bytes_out 0 177102 bytes_in 0 177102 station_ip 5.119.21.16 177102 port 112 177102 unique_id port 177102 remote_ip 10.8.0.190 177104 username rahim 177104 mac 177104 bytes_out 0 177104 bytes_in 0 177104 station_ip 5.119.143.227 177104 port 112 177104 unique_id port 177104 remote_ip 10.8.0.134 177105 username rahim 177105 mac 177105 bytes_out 0 177105 bytes_in 0 177105 station_ip 5.119.143.227 177105 port 112 177105 unique_id port 177105 remote_ip 10.8.0.134 177115 username tahmasebi 177115 mac 177115 bytes_out 0 177115 bytes_in 0 177115 station_ip 5.120.107.62 177115 port 113 177115 unique_id port 177115 remote_ip 10.8.0.126 177116 username rahim 177116 mac 177116 bytes_out 0 177116 bytes_in 0 177116 station_ip 5.119.143.227 177116 port 101 177116 unique_id port 177116 remote_ip 10.8.0.134 177117 username zahra1101 177117 mac 177117 bytes_out 44066 177117 bytes_in 70676 177117 station_ip 5.119.21.16 177117 port 88 177117 unique_id port 177117 remote_ip 10.8.0.190 177118 username saeed9658 177118 kill_reason Relative expiration date has reached 177118 mac 177118 bytes_out 0 177118 bytes_in 0 177118 station_ip 5.119.34.254 177118 port 88 177118 unique_id port 177121 username tahmasebi 177121 mac 177121 bytes_out 586263 177121 bytes_in 7173429 177121 station_ip 5.120.107.62 177121 port 101 177121 unique_id port 177121 remote_ip 10.8.0.126 177122 username godarzi 177122 kill_reason Another user logged on this global unique id 177122 mac 177122 bytes_out 0 177122 bytes_in 0 177122 station_ip 5.202.26.240 177122 port 114 177122 unique_id port 177130 username aminvpn2 177130 mac 177130 bytes_out 545247 177130 bytes_in 789652 177130 station_ip 5.119.71.248 177130 port 87 177130 unique_id port 177130 remote_ip 10.8.0.150 177132 username tahmasebi 177132 mac 177132 bytes_out 11726945 177132 bytes_in 2726724 177132 station_ip 5.120.107.62 177132 port 88 177132 unique_id port 177132 remote_ip 10.8.0.126 177138 username mohammadmahdi 177138 kill_reason Another user logged on this global unique id 177138 mac 177138 bytes_out 0 177138 bytes_in 0 177138 station_ip 5.119.29.117 177138 port 101 177138 unique_id port 177138 remote_ip 10.8.0.30 177141 username alihosseini1 177141 kill_reason Another user logged on this global unique id 177141 mac 177141 bytes_out 0 177141 bytes_in 0 177141 station_ip 5.120.49.65 177141 port 97 177141 unique_id port 177142 username pourshad 177142 mac 177142 bytes_out 488103 177142 bytes_in 3056816 177142 station_ip 5.119.33.96 177142 port 88 177142 unique_id port 177142 remote_ip 10.8.0.42 177144 username zahra1101 177144 mac 177144 bytes_out 23639 177144 bytes_in 36596 177144 station_ip 5.120.47.18 177144 port 107 177144 unique_id port 177144 remote_ip 10.8.0.190 177145 username pourshad 177145 mac 177145 bytes_out 49815 177145 bytes_in 37274 177145 station_ip 5.119.33.96 177145 port 88 177145 unique_id port 177145 remote_ip 10.8.0.42 177149 username khademi 177149 mac 177149 bytes_out 0 177149 bytes_in 0 177149 station_ip 37.129.154.227 177092 username zahra1101 177092 mac 177092 bytes_out 28014 177092 bytes_in 49622 177092 station_ip 5.119.21.16 177092 port 119 177092 unique_id port 177092 remote_ip 10.8.0.190 177094 username zahra1101 177094 mac 177094 bytes_out 0 177094 bytes_in 0 177094 station_ip 5.119.21.16 177094 port 119 177094 unique_id port 177094 remote_ip 10.8.0.190 177096 username rahim 177096 kill_reason Maximum check online fails reached 177096 mac 177096 bytes_out 0 177096 bytes_in 0 177096 station_ip 5.119.143.227 177096 port 119 177096 unique_id port 177097 username zahra1101 177097 mac 177097 bytes_out 85995 177097 bytes_in 225963 177097 station_ip 5.119.21.16 177097 port 112 177097 unique_id port 177097 remote_ip 10.8.0.190 177099 username rahim 177099 mac 177099 bytes_out 0 177099 bytes_in 0 177099 station_ip 5.119.143.227 177099 port 112 177099 unique_id port 177099 remote_ip 10.8.0.134 177100 username zahra1101 177100 kill_reason Maximum check online fails reached 177100 mac 177100 bytes_out 0 177100 bytes_in 0 177100 station_ip 5.119.21.16 177100 port 120 177100 unique_id port 177103 username zahra1101 177103 mac 177103 bytes_out 0 177103 bytes_in 0 177103 station_ip 5.119.21.16 177103 port 122 177103 unique_id port 177103 remote_ip 10.8.0.190 177107 username rahim 177107 mac 177107 bytes_out 0 177107 bytes_in 0 177107 station_ip 5.119.143.227 177107 port 113 177107 unique_id port 177107 remote_ip 10.8.0.134 177111 username zahra1101 177111 mac 177111 bytes_out 8550 177111 bytes_in 8568 177111 station_ip 5.119.21.16 177111 port 112 177111 unique_id port 177111 remote_ip 10.8.0.190 177120 username rahim 177120 mac 177120 bytes_out 6362 177120 bytes_in 10641 177120 station_ip 5.119.143.227 177120 port 88 177120 unique_id port 177120 remote_ip 10.8.0.134 177124 username rahim 177124 mac 177124 bytes_out 0 177124 bytes_in 0 177124 station_ip 5.119.143.227 177124 port 122 177124 unique_id port 177124 remote_ip 10.8.0.134 177125 username rashidi4690 177125 kill_reason Another user logged on this global unique id 177125 mac 177125 bytes_out 0 177125 bytes_in 0 177125 station_ip 5.119.156.209 177125 port 107 177125 unique_id port 177125 remote_ip 10.8.0.242 177126 username rahim 177126 mac 177126 bytes_out 39744 177126 bytes_in 51061 177126 station_ip 5.119.143.227 177126 port 122 177126 unique_id port 177126 remote_ip 10.8.0.134 177128 username shadkam 177128 mac 177128 bytes_out 382850 177128 bytes_in 3583237 177128 station_ip 37.129.172.120 177128 port 113 177128 unique_id port 177128 remote_ip 10.8.0.74 177129 username rahim 177129 mac 177129 bytes_out 0 177129 bytes_in 0 177129 station_ip 5.119.143.227 177129 port 112 177129 unique_id port 177129 remote_ip 10.8.0.134 177131 username alihosseini1 177131 kill_reason Another user logged on this global unique id 177131 mac 177131 bytes_out 0 177131 bytes_in 0 177131 station_ip 5.120.49.65 177131 port 97 177131 unique_id port 177131 remote_ip 10.8.0.234 177133 username aminvpn 177133 unique_id port 177133 terminate_cause Lost-Carrier 177133 bytes_out 4545405 177133 bytes_in 115736546 177133 station_ip 5.119.65.235 177133 port 15728640 177133 nas_port_type Virtual 177133 remote_ip 5.5.5.255 177137 username motamedi9772 177137 mac 177137 bytes_out 139494 177137 bytes_in 773913 177137 station_ip 37.129.236.162 177137 port 113 177137 unique_id port 177137 remote_ip 10.8.0.154 177140 username rashidi4690 177140 mac 177140 bytes_out 0 177140 bytes_in 0 177093 username yaghobi 177093 mac 177093 bytes_out 554451 177093 bytes_in 1327005 177093 station_ip 37.129.133.246 177093 port 112 177093 unique_id port 177093 remote_ip 10.8.0.138 177095 username tahmasebi 177095 mac 177095 bytes_out 0 177095 bytes_in 0 177095 station_ip 5.120.107.62 177095 port 112 177095 unique_id port 177095 remote_ip 10.8.0.126 177106 username kalantary6037 177106 mac 177106 bytes_out 3469963 177106 bytes_in 39076283 177106 station_ip 37.129.140.142 177106 port 113 177106 unique_id port 177106 remote_ip 10.8.0.50 177108 username zahra1101 177108 mac 177108 bytes_out 0 177108 bytes_in 0 177108 station_ip 5.119.21.16 177108 port 112 177108 unique_id port 177108 remote_ip 10.8.0.190 177109 username pourshad 177109 mac 177109 bytes_out 3893001 177109 bytes_in 4250152 177109 station_ip 5.119.33.96 177109 port 88 177109 unique_id port 177109 remote_ip 10.8.0.42 177110 username tahmasebi 177110 mac 177110 bytes_out 0 177110 bytes_in 0 177110 station_ip 5.120.107.62 177110 port 88 177110 unique_id port 177110 remote_ip 10.8.0.126 177112 username mosi 177112 mac 177112 bytes_out 4125898 177112 bytes_in 3611082 177112 station_ip 151.235.101.178 177112 port 101 177112 unique_id port 177112 remote_ip 10.8.0.142 177113 username tahmasebi 177113 mac 177113 bytes_out 0 177113 bytes_in 0 177113 station_ip 5.120.107.62 177113 port 112 177113 unique_id port 177113 remote_ip 10.8.0.126 177114 username rahim 177114 mac 177114 bytes_out 0 177114 bytes_in 0 177114 station_ip 5.119.143.227 177114 port 101 177114 unique_id port 177114 remote_ip 10.8.0.134 177119 username saeed9658 177119 kill_reason Relative expiration date has reached 177119 mac 177119 bytes_out 0 177119 bytes_in 0 177119 station_ip 5.119.34.254 177119 port 88 177119 unique_id port 177123 username rahim 177123 mac 177123 bytes_out 0 177123 bytes_in 0 177123 station_ip 5.119.143.227 177123 port 113 177123 unique_id port 177123 remote_ip 10.8.0.134 177127 username pourshad 177127 mac 177127 bytes_out 430033 177127 bytes_in 3755489 177127 station_ip 5.119.33.96 177127 port 112 177127 unique_id port 177127 remote_ip 10.8.0.42 177134 username rahim 177134 mac 177134 bytes_out 0 177134 bytes_in 0 177134 station_ip 5.119.143.227 177134 port 88 177134 unique_id port 177134 remote_ip 10.8.0.134 177135 username amin.saeedi 177135 mac 177135 bytes_out 41793 177135 bytes_in 76957 177135 station_ip 31.56.220.135 177135 port 87 177135 unique_id port 177135 remote_ip 10.8.0.90 177136 username shadkam 177136 mac 177136 bytes_out 767285 177136 bytes_in 8071554 177136 station_ip 37.129.143.0 177136 port 87 177136 unique_id port 177136 remote_ip 10.8.0.74 177139 username khalili2 177139 mac 177139 bytes_out 263483 177139 bytes_in 2319542 177139 station_ip 5.119.201.0 177139 port 113 177139 unique_id port 177139 remote_ip 10.8.0.118 177143 username alihosseini1 177143 mac 177143 bytes_out 0 177143 bytes_in 0 177143 station_ip 5.120.49.65 177143 port 97 177143 unique_id port 177148 username alihosseini1 177148 mac 177148 bytes_out 0 177148 bytes_in 0 177148 station_ip 5.120.49.65 177148 port 101 177148 unique_id port 177148 remote_ip 10.8.0.234 177153 username alihosseini1 177153 mac 177153 bytes_out 0 177153 bytes_in 0 177153 station_ip 5.120.49.65 177153 port 113 177153 unique_id port 177153 remote_ip 10.8.0.234 177154 username mohammadmahdi 177154 mac 177154 bytes_out 1783258 177140 station_ip 5.119.156.209 177140 port 107 177140 unique_id port 177146 username alihosseini1 177146 mac 177146 bytes_out 0 177146 bytes_in 0 177146 station_ip 5.120.49.65 177146 port 88 177146 unique_id port 177146 remote_ip 10.8.0.234 177147 username mohammadmahdi 177147 mac 177147 bytes_out 0 177147 bytes_in 0 177147 station_ip 5.119.29.117 177147 port 101 177147 unique_id port 177151 username alihosseini1 177151 mac 177151 bytes_out 0 177151 bytes_in 0 177151 station_ip 5.120.49.65 177151 port 113 177151 unique_id port 177151 remote_ip 10.8.0.234 177152 username alihosseini1 177152 mac 177152 bytes_out 0 177152 bytes_in 0 177152 station_ip 5.120.49.65 177152 port 101 177152 unique_id port 177152 remote_ip 10.8.0.234 177155 username pourshad 177155 mac 177155 bytes_out 27350 177155 bytes_in 44645 177155 station_ip 5.119.33.96 177155 port 116 177155 unique_id port 177155 remote_ip 10.8.0.42 177156 username mehdizare 177156 mac 177156 bytes_out 1524868 177156 bytes_in 6778759 177156 station_ip 83.122.83.181 177156 port 103 177156 unique_id port 177156 remote_ip 10.8.0.210 177158 username nilufarrajaei 177158 mac 177158 bytes_out 5628617 177158 bytes_in 45376842 177158 station_ip 37.129.154.26 177158 port 110 177158 unique_id port 177158 remote_ip 10.8.0.194 177165 username mehdizare 177165 mac 177165 bytes_out 111869 177165 bytes_in 155501 177165 station_ip 83.122.83.181 177165 port 103 177165 unique_id port 177165 remote_ip 10.8.0.210 177166 username alihosseini1 177166 mac 177166 bytes_out 2326 177166 bytes_in 4678 177166 station_ip 5.120.49.65 177166 port 87 177166 unique_id port 177166 remote_ip 10.8.0.234 177169 username pourshad 177169 mac 177169 bytes_out 168697 177169 bytes_in 816757 177169 station_ip 5.119.33.96 177169 port 88 177169 unique_id port 177169 remote_ip 10.8.0.42 177170 username kalantary6037 177170 mac 177170 bytes_out 2797931 177170 bytes_in 15717715 177170 station_ip 37.129.159.14 177170 port 97 177170 unique_id port 177170 remote_ip 10.8.0.50 177174 username alihosseini1 177174 mac 177174 bytes_out 0 177174 bytes_in 0 177174 station_ip 5.120.49.65 177174 port 97 177174 unique_id port 177174 remote_ip 10.8.0.234 177176 username rezaei 177176 mac 177176 bytes_out 2386405 177176 bytes_in 20298589 177176 station_ip 5.119.232.155 177176 port 103 177176 unique_id port 177176 remote_ip 10.8.0.198 177177 username fezealinaghi 177177 mac 177177 bytes_out 4144018 177177 bytes_in 24377825 177177 station_ip 37.129.131.185 177177 port 117 177177 unique_id port 177177 remote_ip 10.8.0.202 177180 username zahra1101 177180 mac 177180 bytes_out 24587 177180 bytes_in 135828 177180 station_ip 5.119.247.95 177180 port 88 177180 unique_id port 177180 remote_ip 10.8.0.190 177181 username alihosseini1 177181 mac 177181 bytes_out 0 177181 bytes_in 0 177181 station_ip 5.120.49.65 177181 port 88 177181 unique_id port 177181 remote_ip 10.8.0.234 177183 username shadkam 177183 kill_reason Another user logged on this global unique id 177183 mac 177183 bytes_out 0 177183 bytes_in 0 177183 station_ip 83.122.187.163 177183 port 103 177183 unique_id port 177183 remote_ip 10.8.0.74 177190 username meysam 177190 mac 177190 bytes_out 0 177190 bytes_in 0 177190 station_ip 188.158.49.244 177190 port 88 177190 unique_id port 177191 username pourshad 177191 mac 177191 bytes_out 46397 177191 bytes_in 50472 177191 station_ip 5.119.33.96 177191 port 87 177191 unique_id port 177149 port 116 177149 unique_id port 177150 username alihosseini1 177150 mac 177150 bytes_out 74234 177150 bytes_in 678135 177150 station_ip 5.120.49.65 177150 port 101 177150 unique_id port 177150 remote_ip 10.8.0.234 177157 username alihosseini1 177157 mac 177157 bytes_out 0 177157 bytes_in 0 177157 station_ip 5.120.49.65 177157 port 88 177157 unique_id port 177157 remote_ip 10.8.0.234 177161 username khalili2 177161 mac 177161 bytes_out 3777844 177161 bytes_in 49035437 177161 station_ip 5.119.201.0 177161 port 101 177161 unique_id port 177161 remote_ip 10.8.0.118 177163 username alihosseini1 177163 mac 177163 bytes_out 0 177163 bytes_in 0 177163 station_ip 5.120.49.65 177163 port 101 177163 unique_id port 177163 remote_ip 10.8.0.234 177164 username yaghobi 177164 mac 177164 bytes_out 1407771 177164 bytes_in 9646226 177164 station_ip 37.129.192.201 177164 port 87 177164 unique_id port 177164 remote_ip 10.8.0.138 177168 username alihosseini1 177168 mac 177168 bytes_out 0 177168 bytes_in 0 177168 station_ip 5.120.49.65 177168 port 87 177168 unique_id port 177168 remote_ip 10.8.0.234 177172 username alihosseini1 177172 mac 177172 bytes_out 0 177172 bytes_in 0 177172 station_ip 5.120.49.65 177172 port 88 177172 unique_id port 177172 remote_ip 10.8.0.234 177173 username alihosseini1 177173 mac 177173 bytes_out 0 177173 bytes_in 0 177173 station_ip 5.120.49.65 177173 port 88 177173 unique_id port 177173 remote_ip 10.8.0.234 177175 username yaghobi 177175 mac 177175 bytes_out 1045530 177175 bytes_in 9733455 177175 station_ip 83.122.253.83 177175 port 113 177175 unique_id port 177175 remote_ip 10.8.0.138 177179 username shadkam 177179 mac 177179 bytes_out 1864781 177179 bytes_in 8285236 177179 station_ip 83.122.187.163 177179 port 88 177179 unique_id port 177179 remote_ip 10.8.0.74 177184 username khalili2 177184 mac 177184 bytes_out 7177 177184 bytes_in 10390 177184 station_ip 5.119.201.0 177184 port 113 177184 unique_id port 177184 remote_ip 10.8.0.118 177185 username pourshad 177185 mac 177185 bytes_out 143575 177185 bytes_in 214501 177185 station_ip 5.119.33.96 177185 port 87 177185 unique_id port 177185 remote_ip 10.8.0.42 177186 username alihosseini1 177186 mac 177186 bytes_out 0 177186 bytes_in 0 177186 station_ip 5.120.49.65 177186 port 113 177186 unique_id port 177186 remote_ip 10.8.0.234 177188 username motamedi9772 177188 mac 177188 bytes_out 0 177188 bytes_in 0 177188 station_ip 37.129.162.206 177188 port 117 177188 unique_id port 177188 remote_ip 10.8.0.154 177189 username shadkam 177189 mac 177189 bytes_out 0 177189 bytes_in 0 177189 station_ip 83.122.187.163 177189 port 103 177189 unique_id port 177194 username alihosseini1 177194 mac 177194 bytes_out 1658 177194 bytes_in 3761 177194 station_ip 5.120.49.65 177194 port 87 177194 unique_id port 177194 remote_ip 10.8.0.234 177199 username aminvpn 177199 mac 177199 bytes_out 271835 177199 bytes_in 807634 177199 station_ip 5.119.156.93 177199 port 118 177199 unique_id port 177199 remote_ip 10.8.0.58 177204 username rahim 177204 mac 177204 bytes_out 655484 177204 bytes_in 5188365 177204 station_ip 5.119.143.227 177204 port 87 177204 unique_id port 177204 remote_ip 10.8.0.134 177211 username fezealinaghi 177211 kill_reason Another user logged on this global unique id 177211 mac 177211 bytes_out 0 177211 bytes_in 0 177211 station_ip 37.129.131.185 177211 port 97 177211 unique_id port 177154 bytes_in 20690161 177154 station_ip 5.119.29.117 177154 port 88 177154 unique_id port 177154 remote_ip 10.8.0.30 177159 username alihosseini1 177159 mac 177159 bytes_out 0 177159 bytes_in 0 177159 station_ip 5.120.49.65 177159 port 113 177159 unique_id port 177159 remote_ip 10.8.0.234 177160 username alihosseini1 177160 mac 177160 bytes_out 0 177160 bytes_in 0 177160 station_ip 5.120.49.65 177160 port 110 177160 unique_id port 177160 remote_ip 10.8.0.234 177162 username godarzi 177162 kill_reason Another user logged on this global unique id 177162 mac 177162 bytes_out 0 177162 bytes_in 0 177162 station_ip 5.202.26.240 177162 port 114 177162 unique_id port 177167 username yaghobi 177167 mac 177167 bytes_out 267677 177167 bytes_in 2420407 177167 station_ip 83.122.253.83 177167 port 101 177167 unique_id port 177167 remote_ip 10.8.0.138 177171 username alihosseini1 177171 mac 177171 bytes_out 0 177171 bytes_in 0 177171 station_ip 5.120.49.65 177171 port 88 177171 unique_id port 177171 remote_ip 10.8.0.234 177178 username yaghobi 177178 mac 177178 bytes_out 71129 177178 bytes_in 150844 177178 station_ip 83.122.253.83 177178 port 97 177178 unique_id port 177178 remote_ip 10.8.0.138 177182 username mehdizare 177182 kill_reason Another user logged on this global unique id 177182 mac 177182 bytes_out 0 177182 bytes_in 0 177182 station_ip 83.122.83.181 177182 port 110 177182 unique_id port 177182 remote_ip 10.8.0.210 177187 username meysam 177187 kill_reason Another user logged on this global unique id 177187 mac 177187 bytes_out 0 177187 bytes_in 0 177187 station_ip 188.158.49.244 177187 port 88 177187 unique_id port 177187 remote_ip 10.8.0.158 177193 username kalantary6037 177193 mac 177193 bytes_out 817398 177193 bytes_in 6117204 177193 station_ip 37.129.201.106 177193 port 113 177193 unique_id port 177193 remote_ip 10.8.0.50 177198 username mehdizare 177198 kill_reason Another user logged on this global unique id 177198 mac 177198 bytes_out 0 177198 bytes_in 0 177198 station_ip 83.122.83.181 177198 port 110 177198 unique_id port 177200 username aminvpn 177200 mac 177200 bytes_out 0 177200 bytes_in 0 177200 station_ip 5.119.156.93 177200 port 87 177200 unique_id port 177200 remote_ip 10.8.0.58 177201 username alihosseini1 177201 mac 177201 bytes_out 0 177201 bytes_in 0 177201 station_ip 5.120.49.65 177201 port 117 177201 unique_id port 177201 remote_ip 10.8.0.234 177202 username fezealinaghi 177202 kill_reason Another user logged on this global unique id 177202 mac 177202 bytes_out 0 177202 bytes_in 0 177202 station_ip 37.129.131.185 177202 port 97 177202 unique_id port 177202 remote_ip 10.8.0.202 177203 username alihosseini1 177203 mac 177203 bytes_out 0 177203 bytes_in 0 177203 station_ip 5.120.49.65 177203 port 118 177203 unique_id port 177203 remote_ip 10.8.0.234 177207 username alihosseini1 177207 mac 177207 bytes_out 0 177207 bytes_in 0 177207 station_ip 5.120.49.65 177207 port 110 177207 unique_id port 177207 remote_ip 10.8.0.234 177210 username alihosseini1 177210 mac 177210 bytes_out 0 177210 bytes_in 0 177210 station_ip 5.120.49.65 177210 port 123 177210 unique_id port 177210 remote_ip 10.8.0.234 177215 username alihosseini1 177215 mac 177215 bytes_out 0 177215 bytes_in 0 177215 station_ip 5.120.49.65 177215 port 117 177215 unique_id port 177215 remote_ip 10.8.0.234 177218 username soleymani5056 177218 mac 177218 bytes_out 153805 177218 bytes_in 466919 177218 station_ip 5.119.66.168 177218 port 125 177218 unique_id port 177191 remote_ip 10.8.0.42 177192 username pourshad 177192 mac 177192 bytes_out 26332 177192 bytes_in 21719 177192 station_ip 5.119.33.96 177192 port 88 177192 unique_id port 177192 remote_ip 10.8.0.42 177195 username pourshad 177195 kill_reason Maximum check online fails reached 177195 mac 177195 bytes_out 0 177195 bytes_in 0 177195 station_ip 5.119.33.96 177195 port 103 177195 unique_id port 177196 username alihosseini1 177196 mac 177196 bytes_out 0 177196 bytes_in 0 177196 station_ip 5.120.49.65 177196 port 87 177196 unique_id port 177196 remote_ip 10.8.0.234 177197 username alihosseini1 177197 mac 177197 bytes_out 0 177197 bytes_in 0 177197 station_ip 5.120.49.65 177197 port 87 177197 unique_id port 177197 remote_ip 10.8.0.234 177205 username mehdizare 177205 mac 177205 bytes_out 0 177205 bytes_in 0 177205 station_ip 83.122.83.181 177205 port 110 177205 unique_id port 177206 username rahim 177206 mac 177206 bytes_out 835921 177206 bytes_in 92842 177206 station_ip 5.119.174.162 177206 port 87 177206 unique_id port 177206 remote_ip 10.8.0.134 177208 username rahim 177208 mac 177208 bytes_out 3400 177208 bytes_in 5920 177208 station_ip 5.120.81.44 177208 port 87 177208 unique_id port 177208 remote_ip 10.8.0.134 177209 username alihosseini1 177209 mac 177209 bytes_out 0 177209 bytes_in 0 177209 station_ip 5.120.49.65 177209 port 87 177209 unique_id port 177209 remote_ip 10.8.0.234 177214 username mostafa_es78 177214 mac 177214 bytes_out 3767784 177214 bytes_in 38747306 177214 station_ip 113.203.6.155 177214 port 117 177214 unique_id port 177214 remote_ip 10.8.0.34 177216 username alihosseini1 177216 mac 177216 bytes_out 0 177216 bytes_in 0 177216 station_ip 5.120.49.65 177216 port 117 177216 unique_id port 177216 remote_ip 10.8.0.234 177219 username alihosseini1 177219 kill_reason Maximum check online fails reached 177219 mac 177219 bytes_out 0 177219 bytes_in 0 177219 station_ip 5.120.49.65 177219 port 123 177219 unique_id port 177223 username mostafa_es78 177223 mac 177223 bytes_out 3769774 177223 bytes_in 45419521 177223 station_ip 113.203.6.155 177223 port 122 177223 unique_id port 177223 remote_ip 10.8.0.34 177224 username rezaei 177224 kill_reason Another user logged on this global unique id 177224 mac 177224 bytes_out 0 177224 bytes_in 0 177224 station_ip 5.119.232.155 177224 port 118 177224 unique_id port 177224 remote_ip 10.8.0.198 177225 username mehdizare 177225 kill_reason Another user logged on this global unique id 177225 mac 177225 bytes_out 0 177225 bytes_in 0 177225 station_ip 83.122.83.181 177225 port 110 177225 unique_id port 177225 remote_ip 10.8.0.210 177228 username alihosseini1 177228 mac 177228 bytes_out 0 177228 bytes_in 0 177228 station_ip 5.120.49.65 177228 port 117 177228 unique_id port 177228 remote_ip 10.8.0.234 177230 username aminvpn 177230 unique_id port 177230 terminate_cause User-Request 177230 bytes_out 10318421 177230 bytes_in 444273415 177230 station_ip 31.57.143.33 177230 port 15728642 177230 nas_port_type Virtual 177230 remote_ip 5.5.5.254 177232 username aminvpn 177232 unique_id port 177232 terminate_cause User-Request 177232 bytes_out 0 177232 bytes_in 0 177232 station_ip 31.57.143.33 177232 port 15728646 177232 nas_port_type Virtual 177232 remote_ip 5.5.5.254 177234 username meysam 177234 mac 177234 bytes_out 22134 177234 bytes_in 161223 177234 station_ip 188.159.252.71 177234 port 118 177234 unique_id port 177234 remote_ip 10.8.0.158 177236 username shadkam 177236 mac 177236 bytes_out 54408 177212 username khalili2 177212 mac 177212 bytes_out 1173103 177212 bytes_in 15088826 177212 station_ip 5.119.201.0 177212 port 122 177212 unique_id port 177212 remote_ip 10.8.0.118 177213 username alihosseini1 177213 mac 177213 bytes_out 0 177213 bytes_in 0 177213 station_ip 5.120.49.65 177213 port 87 177213 unique_id port 177213 remote_ip 10.8.0.234 177217 username shadkam 177217 mac 177217 bytes_out 111664 177217 bytes_in 682173 177217 station_ip 83.122.215.148 177217 port 123 177217 unique_id port 177217 remote_ip 10.8.0.74 177221 username alihosseini1 177221 mac 177221 bytes_out 0 177221 bytes_in 0 177221 station_ip 5.120.49.65 177221 port 125 177221 unique_id port 177221 remote_ip 10.8.0.234 177227 username alihosseini1 177227 mac 177227 bytes_out 0 177227 bytes_in 0 177227 station_ip 5.120.49.65 177227 port 122 177227 unique_id port 177227 remote_ip 10.8.0.234 177229 username rezaei 177229 mac 177229 bytes_out 0 177229 bytes_in 0 177229 station_ip 5.119.232.155 177229 port 118 177229 unique_id port 177235 username pourshad 177235 mac 177235 bytes_out 1361242 177235 bytes_in 20665531 177235 station_ip 5.119.33.96 177235 port 88 177235 unique_id port 177235 remote_ip 10.8.0.42 177239 username pourshad 177239 mac 177239 bytes_out 0 177239 bytes_in 0 177239 station_ip 5.119.33.96 177239 port 117 177239 unique_id port 177239 remote_ip 10.8.0.42 177244 username mehdizare 177244 kill_reason Another user logged on this global unique id 177244 mac 177244 bytes_out 0 177244 bytes_in 0 177244 station_ip 83.122.83.181 177244 port 110 177244 unique_id port 177245 username mostafa_es78 177245 mac 177245 bytes_out 1289086 177245 bytes_in 9331347 177245 station_ip 113.203.6.155 177245 port 87 177245 unique_id port 177245 remote_ip 10.8.0.34 177248 username mostafa_es78 177248 mac 177248 bytes_out 212997 177248 bytes_in 217740 177248 station_ip 113.203.6.155 177248 port 122 177248 unique_id port 177248 remote_ip 10.8.0.34 177249 username mostafa_es78 177249 mac 177249 bytes_out 0 177249 bytes_in 0 177249 station_ip 113.203.6.155 177249 port 87 177249 unique_id port 177249 remote_ip 10.8.0.34 177254 username saeeddamghani 177254 unique_id port 177254 terminate_cause User-Request 177254 bytes_out 361798 177254 bytes_in 5884470 177254 station_ip 217.60.218.29 177254 port 15728647 177254 nas_port_type Virtual 177254 remote_ip 5.5.5.253 177258 username mohammadmahdi 177258 kill_reason Another user logged on this global unique id 177258 mac 177258 bytes_out 0 177258 bytes_in 0 177258 station_ip 5.119.29.117 177258 port 118 177258 unique_id port 177258 remote_ip 10.8.0.30 177259 username sekonji3 177259 kill_reason Relative expiration date has reached 177259 mac 177259 bytes_out 0 177259 bytes_in 0 177259 station_ip 113.203.15.52 177259 port 126 177259 unique_id port 177266 username mostafa_es78 177266 mac 177266 bytes_out 3144 177266 bytes_in 6958 177266 station_ip 113.203.6.155 177266 port 87 177266 unique_id port 177266 remote_ip 10.8.0.34 177267 username shadkam 177267 mac 177267 bytes_out 3907676 177267 bytes_in 43854321 177267 station_ip 37.129.241.135 177267 port 117 177267 unique_id port 177267 remote_ip 10.8.0.74 177269 username shadkam 177269 mac 177269 bytes_out 0 177269 bytes_in 0 177269 station_ip 37.129.241.135 177269 port 124 177269 unique_id port 177269 remote_ip 10.8.0.74 177281 username houshang 177281 mac 177281 bytes_out 0 177281 bytes_in 0 177281 station_ip 5.119.230.216 177281 port 117 177281 unique_id port 177218 remote_ip 10.8.0.226 177220 username yaghobi 177220 mac 177220 bytes_out 451607 177220 bytes_in 1582107 177220 station_ip 37.129.193.248 177220 port 87 177220 unique_id port 177220 remote_ip 10.8.0.138 177222 username rahim 177222 kill_reason Another user logged on this global unique id 177222 mac 177222 bytes_out 0 177222 bytes_in 0 177222 station_ip 5.119.143.227 177222 port 124 177222 unique_id port 177222 remote_ip 10.8.0.134 177226 username kalantary6037 177226 mac 177226 bytes_out 1451767 177226 bytes_in 10186813 177226 station_ip 37.129.179.126 177226 port 117 177226 unique_id port 177226 remote_ip 10.8.0.50 177231 username alihosseini1 177231 mac 177231 bytes_out 0 177231 bytes_in 0 177231 station_ip 5.120.49.65 177231 port 117 177231 unique_id port 177231 remote_ip 10.8.0.234 177233 username alihosseini1 177233 mac 177233 bytes_out 0 177233 bytes_in 0 177233 station_ip 5.120.49.65 177233 port 122 177233 unique_id port 177233 remote_ip 10.8.0.234 177240 username fezealinaghi 177240 kill_reason Another user logged on this global unique id 177240 mac 177240 bytes_out 0 177240 bytes_in 0 177240 station_ip 37.129.131.185 177240 port 97 177240 unique_id port 177241 username mostafa_es78 177241 mac 177241 bytes_out 1686959 177241 bytes_in 18381175 177241 station_ip 113.203.6.155 177241 port 87 177241 unique_id port 177241 remote_ip 10.8.0.34 177242 username alihosseini1 177242 mac 177242 bytes_out 70683 177242 bytes_in 135884 177242 station_ip 5.120.49.65 177242 port 117 177242 unique_id port 177242 remote_ip 10.8.0.234 177246 username rahim 177246 kill_reason Another user logged on this global unique id 177246 mac 177246 bytes_out 0 177246 bytes_in 0 177246 station_ip 5.119.143.227 177246 port 124 177246 unique_id port 177247 username mostafa_es78 177247 mac 177247 bytes_out 277511 177247 bytes_in 917812 177247 station_ip 113.203.6.155 177247 port 87 177247 unique_id port 177247 remote_ip 10.8.0.34 177252 username mirzaei6046 177252 kill_reason Another user logged on this global unique id 177252 mac 177252 bytes_out 0 177252 bytes_in 0 177252 station_ip 5.119.59.74 177252 port 94 177252 unique_id port 177253 username pourshad 177253 mac 177253 bytes_out 64218 177253 bytes_in 95916 177253 station_ip 5.119.33.96 177253 port 88 177253 unique_id port 177253 remote_ip 10.8.0.42 177256 username godarzi 177256 kill_reason Another user logged on this global unique id 177256 mac 177256 bytes_out 0 177256 bytes_in 0 177256 station_ip 5.202.26.240 177256 port 114 177256 unique_id port 177257 username saeed9658 177257 kill_reason Relative expiration date has reached 177257 mac 177257 bytes_out 0 177257 bytes_in 0 177257 station_ip 5.119.34.254 177257 port 125 177257 unique_id port 177260 username rahim 177260 kill_reason Another user logged on this global unique id 177260 mac 177260 bytes_out 0 177260 bytes_in 0 177260 station_ip 5.119.143.227 177260 port 124 177260 unique_id port 177262 username khademi 177262 kill_reason Another user logged on this global unique id 177262 mac 177262 bytes_out 0 177262 bytes_in 0 177262 station_ip 37.129.154.227 177262 port 107 177262 unique_id port 177263 username mostafa_es78 177263 mac 177263 bytes_out 3030250 177263 bytes_in 851160 177263 station_ip 113.203.6.155 177263 port 87 177263 unique_id port 177263 remote_ip 10.8.0.34 177271 username mehdizare 177271 mac 177271 bytes_out 26290 177271 bytes_in 41003 177271 station_ip 83.122.83.181 177271 port 113 177271 unique_id port 177271 remote_ip 10.8.0.210 177273 username houshang 177273 mac 177273 bytes_out 2455724 177236 bytes_in 104234 177236 station_ip 37.129.190.210 177236 port 117 177236 unique_id port 177236 remote_ip 10.8.0.74 177237 username rahim 177237 kill_reason Another user logged on this global unique id 177237 mac 177237 bytes_out 0 177237 bytes_in 0 177237 station_ip 5.119.143.227 177237 port 124 177237 unique_id port 177238 username alihosseini1 177238 mac 177238 bytes_out 0 177238 bytes_in 0 177238 station_ip 5.120.49.65 177238 port 88 177238 unique_id port 177238 remote_ip 10.8.0.234 177243 username rahim 177243 kill_reason Another user logged on this global unique id 177243 mac 177243 bytes_out 0 177243 bytes_in 0 177243 station_ip 5.119.143.227 177243 port 124 177243 unique_id port 177250 username khademi 177250 kill_reason Another user logged on this global unique id 177250 mac 177250 bytes_out 0 177250 bytes_in 0 177250 station_ip 37.129.154.227 177250 port 107 177250 unique_id port 177250 remote_ip 10.8.0.14 177251 username mostafa_es78 177251 mac 177251 bytes_out 25384 177251 bytes_in 32450 177251 station_ip 113.203.6.155 177251 port 122 177251 unique_id port 177251 remote_ip 10.8.0.34 177255 username mostafa_es78 177255 mac 177255 bytes_out 0 177255 bytes_in 0 177255 station_ip 113.203.6.155 177255 port 87 177255 unique_id port 177255 remote_ip 10.8.0.34 177261 username rahim 177261 mac 177261 bytes_out 0 177261 bytes_in 0 177261 station_ip 5.119.143.227 177261 port 124 177261 unique_id port 177264 username aminvpn 177264 mac 177264 bytes_out 1990358 177264 bytes_in 18364978 177264 station_ip 5.119.156.93 177264 port 113 177264 unique_id port 177264 remote_ip 10.8.0.58 177265 username mehdizare 177265 mac 177265 bytes_out 0 177265 bytes_in 0 177265 station_ip 83.122.83.181 177265 port 110 177265 unique_id port 177268 username mostafa_es78 177268 mac 177268 bytes_out 0 177268 bytes_in 0 177268 station_ip 113.203.6.155 177268 port 87 177268 unique_id port 177268 remote_ip 10.8.0.34 177270 username motamedi9772 177270 mac 177270 bytes_out 140040 177270 bytes_in 185783 177270 station_ip 37.129.212.42 177270 port 110 177270 unique_id port 177270 remote_ip 10.8.0.154 177272 username mostafa_es78 177272 mac 177272 bytes_out 0 177272 bytes_in 0 177272 station_ip 113.203.6.155 177272 port 117 177272 unique_id port 177272 remote_ip 10.8.0.34 177274 username malekpoir 177274 mac 177274 bytes_out 0 177274 bytes_in 0 177274 station_ip 5.120.116.105 177274 port 75 177274 unique_id port 177276 username shadkam 177276 mac 177276 bytes_out 779802 177276 bytes_in 6960322 177276 station_ip 37.129.241.135 177276 port 87 177276 unique_id port 177276 remote_ip 10.8.0.74 177278 username shadkam 177278 mac 177278 bytes_out 2175 177278 bytes_in 5622 177278 station_ip 37.129.241.135 177278 port 75 177278 unique_id port 177278 remote_ip 10.8.0.74 177283 username mosi 177283 mac 177283 bytes_out 3881 177283 bytes_in 4727 177283 station_ip 151.235.101.178 177283 port 88 177283 unique_id port 177283 remote_ip 10.8.0.142 177285 username hosseine 177285 mac 177285 bytes_out 6056842 177285 bytes_in 45133174 177285 station_ip 37.129.206.49 177285 port 101 177285 unique_id port 177285 remote_ip 10.8.0.54 177287 username godarzi 177287 mac 177287 bytes_out 0 177287 bytes_in 0 177287 station_ip 5.202.26.240 177287 port 114 177287 unique_id port 177288 username soleymani5056 177288 mac 177288 bytes_out 97307 177288 bytes_in 446072 177288 station_ip 5.120.126.181 177288 port 88 177288 unique_id port 177273 bytes_in 30077732 177273 station_ip 5.119.230.216 177273 port 122 177273 unique_id port 177273 remote_ip 10.8.0.82 177275 username pourshad 177275 mac 177275 bytes_out 163099 177275 bytes_in 660616 177275 station_ip 5.119.33.96 177275 port 88 177275 unique_id port 177275 remote_ip 10.8.0.42 177277 username houshang 177277 kill_reason Another user logged on this global unique id 177277 mac 177277 bytes_out 0 177277 bytes_in 0 177277 station_ip 5.119.230.216 177277 port 117 177277 unique_id port 177277 remote_ip 10.8.0.82 177279 username shadkam 177279 mac 177279 bytes_out 29396 177279 bytes_in 42118 177279 station_ip 37.129.214.216 177279 port 75 177279 unique_id port 177279 remote_ip 10.8.0.74 177280 username mohammadjavad 177280 mac 177280 bytes_out 495313 177280 bytes_in 2458138 177280 station_ip 37.129.153.248 177280 port 110 177280 unique_id port 177280 remote_ip 10.8.0.110 177282 username vanila 177282 kill_reason Relative expiration date has reached 177282 mac 177282 bytes_out 0 177282 bytes_in 0 177282 station_ip 37.129.149.247 177282 port 110 177282 unique_id port 177284 username mohammadmahdi 177284 kill_reason Another user logged on this global unique id 177284 mac 177284 bytes_out 0 177284 bytes_in 0 177284 station_ip 5.119.29.117 177284 port 118 177284 unique_id port 177286 username mostafa_es78 177286 kill_reason Another user logged on this global unique id 177286 mac 177286 bytes_out 0 177286 bytes_in 0 177286 station_ip 113.203.6.155 177286 port 113 177286 unique_id port 177286 remote_ip 10.8.0.34 177289 username khalili2 177289 mac 177289 bytes_out 0 177289 bytes_in 0 177289 station_ip 5.120.130.32 177289 port 125 177289 unique_id port 177289 remote_ip 10.8.0.118 177293 username mostafa_es78 177293 mac 177293 bytes_out 0 177293 bytes_in 0 177293 station_ip 113.203.6.155 177293 port 113 177293 unique_id port 177295 username milan 177295 kill_reason Another user logged on this global unique id 177295 mac 177295 bytes_out 0 177295 bytes_in 0 177295 station_ip 5.119.68.145 177295 port 74 177295 unique_id port 177295 remote_ip 10.8.0.182 177303 username pourshad 177303 kill_reason Another user logged on this global unique id 177303 mac 177303 bytes_out 0 177303 bytes_in 0 177303 station_ip 5.119.33.96 177303 port 101 177303 unique_id port 177303 remote_ip 10.8.0.42 177306 username rajaei 177306 kill_reason Another user logged on this global unique id 177306 mac 177306 bytes_out 0 177306 bytes_in 0 177306 station_ip 37.156.49.228 177306 port 88 177306 unique_id port 177306 remote_ip 10.8.0.218 177309 username zahra1101 177309 mac 177309 bytes_out 1158642 177309 bytes_in 14571689 177309 station_ip 5.119.153.4 177309 port 110 177309 unique_id port 177309 remote_ip 10.8.0.190 177311 username rajaei 177311 kill_reason Another user logged on this global unique id 177311 mac 177311 bytes_out 0 177311 bytes_in 0 177311 station_ip 37.156.49.228 177311 port 88 177311 unique_id port 177314 username mostafa_es78 177314 mac 177314 bytes_out 0 177314 bytes_in 0 177314 station_ip 113.203.6.155 177314 port 110 177314 unique_id port 177314 remote_ip 10.8.0.34 177317 username pourshad 177317 mac 177317 bytes_out 0 177317 bytes_in 0 177317 station_ip 5.119.33.96 177317 port 101 177317 unique_id port 177319 username rajaei 177319 mac 177319 bytes_out 0 177319 bytes_in 0 177319 station_ip 37.156.49.228 177319 port 88 177319 unique_id port 177321 username zahra1101 177321 mac 177321 bytes_out 242939 177321 bytes_in 1203669 177321 station_ip 5.120.110.55 177321 port 88 177321 unique_id port 177288 remote_ip 10.8.0.226 177290 username khalili2 177290 kill_reason Another user logged on this global unique id 177290 mac 177290 bytes_out 0 177290 bytes_in 0 177290 station_ip 5.120.130.32 177290 port 125 177290 unique_id port 177296 username mostafa_es78 177296 mac 177296 bytes_out 247378 177296 bytes_in 2982590 177296 station_ip 113.203.6.155 177296 port 88 177296 unique_id port 177296 remote_ip 10.8.0.34 177300 username kalantary6037 177300 mac 177300 bytes_out 453403 177300 bytes_in 2494187 177300 station_ip 37.129.209.154 177300 port 118 177300 unique_id port 177300 remote_ip 10.8.0.50 177302 username mohammadmahdi 177302 mac 177302 bytes_out 235759 177302 bytes_in 601542 177302 station_ip 5.119.29.117 177302 port 117 177302 unique_id port 177302 remote_ip 10.8.0.30 177304 username saeeddamghani 177304 mac 177304 bytes_out 0 177304 bytes_in 0 177304 station_ip 5.120.143.23 177304 port 110 177304 unique_id port 177304 remote_ip 10.8.0.122 177307 username mostafa_es78 177307 mac 177307 bytes_out 0 177307 bytes_in 0 177307 station_ip 113.203.6.155 177307 port 117 177307 unique_id port 177307 remote_ip 10.8.0.34 177318 username fezealinaghi 177318 kill_reason Another user logged on this global unique id 177318 mac 177318 bytes_out 0 177318 bytes_in 0 177318 station_ip 37.129.131.185 177318 port 97 177318 unique_id port 177324 username kalantary6037 177324 mac 177324 bytes_out 2759751 177324 bytes_in 30649913 177324 station_ip 37.129.166.254 177324 port 116 177324 unique_id port 177324 remote_ip 10.8.0.50 177325 username mohammadjavad 177325 mac 177325 bytes_out 26923 177325 bytes_in 29334 177325 station_ip 37.129.206.185 177325 port 110 177325 unique_id port 177325 remote_ip 10.8.0.110 177328 username zahra1101 177328 mac 177328 bytes_out 5029 177328 bytes_in 7034 177328 station_ip 5.120.160.175 177328 port 110 177328 unique_id port 177328 remote_ip 10.8.0.190 177330 username mirzaei6046 177330 mac 177330 bytes_out 0 177330 bytes_in 0 177330 station_ip 5.119.59.74 177330 port 94 177330 unique_id port 177333 username rahim 177333 kill_reason Another user logged on this global unique id 177333 mac 177333 bytes_out 0 177333 bytes_in 0 177333 station_ip 5.119.143.227 177333 port 113 177333 unique_id port 177333 remote_ip 10.8.0.134 177338 username zahra1101 177338 mac 177338 bytes_out 0 177338 bytes_in 0 177338 station_ip 5.119.246.91 177338 port 88 177338 unique_id port 177338 remote_ip 10.8.0.190 177340 username zahra1101 177340 mac 177340 bytes_out 18282 177340 bytes_in 35151 177340 station_ip 5.119.246.91 177340 port 75 177340 unique_id port 177340 remote_ip 10.8.0.190 177345 username mostafa_es78 177345 mac 177345 bytes_out 0 177345 bytes_in 0 177345 station_ip 113.203.8.171 177345 port 94 177345 unique_id port 177345 remote_ip 10.8.0.34 177346 username saeeddamghani 177346 mac 177346 bytes_out 0 177346 bytes_in 0 177346 station_ip 217.60.218.29 177346 port 75 177346 unique_id port 177346 remote_ip 10.8.0.122 177349 username saeeddamghani 177349 mac 177349 bytes_out 0 177349 bytes_in 0 177349 station_ip 217.60.218.29 177349 port 94 177349 unique_id port 177349 remote_ip 10.8.0.122 177352 username saeeddamghani 177352 mac 177352 bytes_out 349700 177352 bytes_in 2083062 177352 station_ip 217.60.218.29 177352 port 94 177352 unique_id port 177352 remote_ip 10.8.0.122 177356 username barzegar 177356 mac 177356 bytes_out 0 177356 bytes_in 0 177356 station_ip 5.119.195.192 177356 port 97 177356 unique_id port 177291 username khalili2 177291 kill_reason Maximum check online fails reached 177291 mac 177291 bytes_out 0 177291 bytes_in 0 177291 station_ip 5.120.130.32 177291 port 125 177291 unique_id port 177292 username mohammadmahdi 177292 mac 177292 bytes_out 0 177292 bytes_in 0 177292 station_ip 5.119.29.117 177292 port 118 177292 unique_id port 177294 username aminvpn 177294 mac 177294 bytes_out 1081938 177294 bytes_in 7250007 177294 station_ip 5.119.156.93 177294 port 88 177294 unique_id port 177294 remote_ip 10.8.0.58 177297 username mostafa_es78 177297 mac 177297 bytes_out 0 177297 bytes_in 0 177297 station_ip 113.203.6.155 177297 port 88 177297 unique_id port 177297 remote_ip 10.8.0.34 177298 username mostafa_es78 177298 mac 177298 bytes_out 0 177298 bytes_in 0 177298 station_ip 113.203.6.155 177298 port 88 177298 unique_id port 177298 remote_ip 10.8.0.34 177299 username saeeddamghani 177299 kill_reason Another user logged on this global unique id 177299 mac 177299 bytes_out 0 177299 bytes_in 0 177299 station_ip 217.60.218.29 177299 port 110 177299 unique_id port 177299 remote_ip 10.8.0.122 177301 username saeeddamghani 177301 mac 177301 bytes_out 0 177301 bytes_in 0 177301 station_ip 217.60.218.29 177301 port 110 177301 unique_id port 177305 username aminvpn 177305 mac 177305 bytes_out 621992 177305 bytes_in 5987943 177305 station_ip 5.119.156.93 177305 port 122 177305 unique_id port 177305 remote_ip 10.8.0.58 177308 username mostafa_es78 177308 mac 177308 bytes_out 0 177308 bytes_in 0 177308 station_ip 113.203.6.155 177308 port 117 177308 unique_id port 177308 remote_ip 10.8.0.34 177310 username morteza 177310 mac 177310 bytes_out 2397014 177310 bytes_in 35357909 177310 station_ip 37.129.146.43 177310 port 116 177310 unique_id port 177310 remote_ip 10.8.0.174 177312 username mostafa_es78 177312 mac 177312 bytes_out 0 177312 bytes_in 0 177312 station_ip 113.203.6.155 177312 port 110 177312 unique_id port 177312 remote_ip 10.8.0.34 177313 username mostafa_es78 177313 mac 177313 bytes_out 39160 177313 bytes_in 72659 177313 station_ip 113.203.6.155 177313 port 110 177313 unique_id port 177313 remote_ip 10.8.0.34 177315 username motamedi9772 177315 mac 177315 bytes_out 0 177315 bytes_in 0 177315 station_ip 37.129.249.6 177315 port 116 177315 unique_id port 177315 remote_ip 10.8.0.154 177316 username rajaei 177316 kill_reason Another user logged on this global unique id 177316 mac 177316 bytes_out 0 177316 bytes_in 0 177316 station_ip 37.156.49.228 177316 port 88 177316 unique_id port 177320 username rezaei 177320 mac 177320 bytes_out 1441390 177320 bytes_in 14836550 177320 station_ip 5.119.232.155 177320 port 110 177320 unique_id port 177320 remote_ip 10.8.0.198 177326 username rashidi4690 177326 mac 177326 bytes_out 4341966 177326 bytes_in 24441913 177326 station_ip 5.119.156.209 177326 port 75 177326 unique_id port 177326 remote_ip 10.8.0.242 177332 username mosi 177332 mac 177332 bytes_out 2849 177332 bytes_in 4780 177332 station_ip 151.235.101.178 177332 port 94 177332 unique_id port 177332 remote_ip 10.8.0.142 177334 username malekpoir 177334 kill_reason Another user logged on this global unique id 177334 mac 177334 bytes_out 0 177334 bytes_in 0 177334 station_ip 5.120.116.105 177334 port 117 177334 unique_id port 177334 remote_ip 10.8.0.18 177337 username saeeddamghani 177337 mac 177337 bytes_out 707453 177337 bytes_in 20595355 177337 station_ip 217.60.218.29 177337 port 75 177337 unique_id port 177321 remote_ip 10.8.0.190 177322 username pourshad 177322 kill_reason Another user logged on this global unique id 177322 mac 177322 bytes_out 0 177322 bytes_in 0 177322 station_ip 5.119.33.96 177322 port 101 177322 unique_id port 177322 remote_ip 10.8.0.42 177323 username zahra1101 177323 mac 177323 bytes_out 71328 177323 bytes_in 86067 177323 station_ip 5.119.175.91 177323 port 88 177323 unique_id port 177323 remote_ip 10.8.0.190 177327 username mosi 177327 mac 177327 bytes_out 2090 177327 bytes_in 4674 177327 station_ip 151.235.101.178 177327 port 118 177327 unique_id port 177327 remote_ip 10.8.0.142 177329 username yaghobi 177329 mac 177329 bytes_out 213425 177329 bytes_in 365638 177329 station_ip 37.129.137.136 177329 port 75 177329 unique_id port 177329 remote_ip 10.8.0.138 177331 username shadkam 177331 mac 177331 bytes_out 3164529 177331 bytes_in 35763335 177331 station_ip 37.129.236.157 177331 port 88 177331 unique_id port 177331 remote_ip 10.8.0.74 177335 username barzegar 177335 mac 177335 bytes_out 0 177335 bytes_in 0 177335 station_ip 5.119.147.98 177335 port 88 177335 unique_id port 177335 remote_ip 10.8.0.10 177336 username mosi 177336 mac 177336 bytes_out 2112 177336 bytes_in 4735 177336 station_ip 151.235.101.178 177336 port 110 177336 unique_id port 177336 remote_ip 10.8.0.142 177343 username pourshad 177343 mac 177343 bytes_out 0 177343 bytes_in 0 177343 station_ip 5.119.33.96 177343 port 101 177343 unique_id port 177347 username mohammadjavad 177347 mac 177347 bytes_out 2785623 177347 bytes_in 41553751 177347 station_ip 37.129.206.185 177347 port 116 177347 unique_id port 177347 remote_ip 10.8.0.110 177348 username saeeddamghani 177348 kill_reason Maximum check online fails reached 177348 mac 177348 bytes_out 0 177348 bytes_in 0 177348 station_ip 217.60.218.29 177348 port 75 177348 unique_id port 177350 username barzegar 177350 mac 177350 bytes_out 0 177350 bytes_in 0 177350 station_ip 5.119.195.192 177350 port 110 177350 unique_id port 177350 remote_ip 10.8.0.10 177363 username malekpoir 177363 mac 177363 bytes_out 1500245 177363 bytes_in 19105460 177363 station_ip 5.119.150.93 177363 port 97 177363 unique_id port 177363 remote_ip 10.8.0.18 177368 username mostafa_es78 177368 mac 177368 bytes_out 0 177368 bytes_in 0 177368 station_ip 113.203.8.171 177368 port 94 177368 unique_id port 177368 remote_ip 10.8.0.34 177369 username zahra1101 177369 mac 177369 bytes_out 22838 177369 bytes_in 45875 177369 station_ip 5.119.173.245 177369 port 113 177369 unique_id port 177369 remote_ip 10.8.0.190 177370 username barzegar 177370 mac 177370 bytes_out 0 177370 bytes_in 0 177370 station_ip 5.119.195.192 177370 port 113 177370 unique_id port 177370 remote_ip 10.8.0.10 177374 username zahra1101 177374 mac 177374 bytes_out 2138 177374 bytes_in 4469 177374 station_ip 5.119.173.245 177374 port 110 177374 unique_id port 177374 remote_ip 10.8.0.190 177378 username zahra1101 177378 kill_reason Maximum check online fails reached 177378 mac 177378 bytes_out 0 177378 bytes_in 0 177378 station_ip 5.119.173.245 177378 port 116 177378 unique_id port 177380 username zahra1101 177380 mac 177380 bytes_out 834331 177380 bytes_in 7227648 177380 station_ip 5.119.173.245 177380 port 110 177380 unique_id port 177380 remote_ip 10.8.0.190 177381 username khademi 177381 kill_reason Another user logged on this global unique id 177381 mac 177381 bytes_out 0 177381 bytes_in 0 177381 station_ip 37.129.154.227 177381 port 107 177337 remote_ip 10.8.0.122 177339 username saeeddamghani 177339 mac 177339 bytes_out 0 177339 bytes_in 0 177339 station_ip 217.60.218.29 177339 port 75 177339 unique_id port 177339 remote_ip 10.8.0.122 177341 username mosi 177341 mac 177341 bytes_out 2913 177341 bytes_in 4948 177341 station_ip 151.235.101.178 177341 port 88 177341 unique_id port 177341 remote_ip 10.8.0.142 177342 username fezealinaghi 177342 mac 177342 bytes_out 0 177342 bytes_in 0 177342 station_ip 37.129.131.185 177342 port 97 177342 unique_id port 177344 username saeeddamghani 177344 mac 177344 bytes_out 12730 177344 bytes_in 13287 177344 station_ip 217.60.218.29 177344 port 75 177344 unique_id port 177344 remote_ip 10.8.0.122 177351 username barzegar 177351 mac 177351 bytes_out 4580 177351 bytes_in 9319 177351 station_ip 5.119.195.192 177351 port 110 177351 unique_id port 177351 remote_ip 10.8.0.10 177353 username khalili2 177353 mac 177353 bytes_out 3550732 177353 bytes_in 37024425 177353 station_ip 5.120.130.32 177353 port 114 177353 unique_id port 177353 remote_ip 10.8.0.118 177354 username saeeddamghani 177354 mac 177354 bytes_out 0 177354 bytes_in 0 177354 station_ip 217.60.218.29 177354 port 94 177354 unique_id port 177354 remote_ip 10.8.0.122 177355 username pourshad 177355 mac 177355 bytes_out 31952 177355 bytes_in 34042 177355 station_ip 5.119.33.96 177355 port 97 177355 unique_id port 177355 remote_ip 10.8.0.42 177357 username saeeddamghani 177357 mac 177357 bytes_out 155901 177357 bytes_in 1263959 177357 station_ip 5.120.143.23 177357 port 114 177357 unique_id port 177357 remote_ip 10.8.0.122 177358 username barzegar 177358 mac 177358 bytes_out 0 177358 bytes_in 0 177358 station_ip 5.119.195.192 177358 port 97 177358 unique_id port 177358 remote_ip 10.8.0.10 177359 username kalantary6037 177359 mac 177359 bytes_out 1397191 177359 bytes_in 14175454 177359 station_ip 37.129.222.62 177359 port 110 177359 unique_id port 177359 remote_ip 10.8.0.50 177361 username rahim 177361 mac 177361 bytes_out 0 177361 bytes_in 0 177361 station_ip 5.119.143.227 177361 port 113 177361 unique_id port 177365 username mostafa_es78 177365 mac 177365 bytes_out 0 177365 bytes_in 0 177365 station_ip 113.203.8.171 177365 port 101 177365 unique_id port 177365 remote_ip 10.8.0.34 177371 username saeeddamghani 177371 mac 177371 bytes_out 0 177371 bytes_in 0 177371 station_ip 5.120.143.23 177371 port 110 177371 unique_id port 177375 username zahra1101 177375 mac 177375 bytes_out 0 177375 bytes_in 0 177375 station_ip 5.119.173.245 177375 port 110 177375 unique_id port 177375 remote_ip 10.8.0.190 177377 username rajaei 177377 kill_reason Another user logged on this global unique id 177377 mac 177377 bytes_out 0 177377 bytes_in 0 177377 station_ip 37.156.49.228 177377 port 114 177377 unique_id port 177377 remote_ip 10.8.0.218 177383 username godarzi 177383 mac 177383 bytes_out 0 177383 bytes_in 0 177383 station_ip 5.202.26.240 177383 port 97 177383 unique_id port 177383 remote_ip 10.8.0.38 177385 username barzegar 177385 mac 177385 bytes_out 0 177385 bytes_in 0 177385 station_ip 5.119.195.192 177385 port 88 177385 unique_id port 177385 remote_ip 10.8.0.10 177386 username rajaei 177386 kill_reason Another user logged on this global unique id 177386 mac 177386 bytes_out 0 177386 bytes_in 0 177386 station_ip 37.156.49.228 177386 port 114 177386 unique_id port 177389 username motamedi9772 177389 mac 177389 bytes_out 125355 177356 remote_ip 10.8.0.10 177360 username malekpoir 177360 mac 177360 bytes_out 0 177360 bytes_in 0 177360 station_ip 5.120.116.105 177360 port 117 177360 unique_id port 177362 username barzegar 177362 mac 177362 bytes_out 0 177362 bytes_in 0 177362 station_ip 5.119.195.192 177362 port 110 177362 unique_id port 177362 remote_ip 10.8.0.10 177364 username mostafa_es78 177364 mac 177364 bytes_out 2479557 177364 bytes_in 26174804 177364 station_ip 113.203.8.171 177364 port 101 177364 unique_id port 177364 remote_ip 10.8.0.34 177366 username pourshad 177366 mac 177366 bytes_out 86159 177366 bytes_in 73669 177366 station_ip 5.119.33.96 177366 port 94 177366 unique_id port 177366 remote_ip 10.8.0.42 177367 username saeeddamghani 177367 kill_reason Another user logged on this global unique id 177367 mac 177367 bytes_out 0 177367 bytes_in 0 177367 station_ip 5.120.143.23 177367 port 110 177367 unique_id port 177367 remote_ip 10.8.0.122 177372 username zahra1101 177372 mac 177372 bytes_out 5197 177372 bytes_in 7798 177372 station_ip 5.119.173.245 177372 port 110 177372 unique_id port 177372 remote_ip 10.8.0.190 177373 username zahra1101 177373 mac 177373 bytes_out 0 177373 bytes_in 0 177373 station_ip 5.119.173.245 177373 port 110 177373 unique_id port 177373 remote_ip 10.8.0.190 177376 username barzegar 177376 mac 177376 bytes_out 3968 177376 bytes_in 5379 177376 station_ip 5.119.195.192 177376 port 113 177376 unique_id port 177376 remote_ip 10.8.0.10 177379 username kalantary6037 177379 mac 177379 bytes_out 2050332 177379 bytes_in 11399481 177379 station_ip 37.129.218.150 177379 port 97 177379 unique_id port 177379 remote_ip 10.8.0.50 177388 username zahra1101 177388 mac 177388 bytes_out 0 177388 bytes_in 0 177388 station_ip 5.120.91.228 177388 port 88 177388 unique_id port 177388 remote_ip 10.8.0.190 177391 username barzegar 177391 mac 177391 bytes_out 2130 177391 bytes_in 3573 177391 station_ip 5.119.195.192 177391 port 88 177391 unique_id port 177391 remote_ip 10.8.0.10 177394 username barzegar 177394 mac 177394 bytes_out 0 177394 bytes_in 0 177394 station_ip 5.119.195.192 177394 port 88 177394 unique_id port 177394 remote_ip 10.8.0.10 177395 username saeeddamghani 177395 mac 177395 bytes_out 0 177395 bytes_in 0 177395 station_ip 217.60.218.29 177395 port 117 177395 unique_id port 177395 remote_ip 10.8.0.122 177398 username pourshad 177398 mac 177398 bytes_out 442603 177398 bytes_in 7622207 177398 station_ip 5.119.33.96 177398 port 101 177398 unique_id port 177398 remote_ip 10.8.0.42 177400 username khademi 177400 kill_reason Another user logged on this global unique id 177400 mac 177400 bytes_out 0 177400 bytes_in 0 177400 station_ip 37.129.154.227 177400 port 107 177400 unique_id port 177402 username pourshad 177402 mac 177402 bytes_out 24840486 177402 bytes_in 1424138 177402 station_ip 5.119.33.96 177402 port 101 177402 unique_id port 177402 remote_ip 10.8.0.42 177403 username hamid.e 177403 unique_id port 177403 terminate_cause User-Request 177403 bytes_out 4686273 177403 bytes_in 92418776 177403 station_ip 37.27.15.203 177403 port 15728651 177403 nas_port_type Virtual 177403 remote_ip 5.5.5.252 177407 username rashidi4690 177407 mac 177407 bytes_out 3176107 177407 bytes_in 24026835 177407 station_ip 5.119.156.209 177407 port 110 177407 unique_id port 177407 remote_ip 10.8.0.242 177408 username barzegar 177408 mac 177408 bytes_out 224898 177408 bytes_in 3503907 177408 station_ip 5.119.195.192 177408 port 118 177381 unique_id port 177382 username mostafa_es78 177382 kill_reason Another user logged on this global unique id 177382 mac 177382 bytes_out 0 177382 bytes_in 0 177382 station_ip 113.203.8.171 177382 port 94 177382 unique_id port 177382 remote_ip 10.8.0.34 177384 username fezealinaghi 177384 mac 177384 bytes_out 538549 177384 bytes_in 5879025 177384 station_ip 37.129.131.185 177384 port 88 177384 unique_id port 177384 remote_ip 10.8.0.202 177387 username zahra1101 177387 mac 177387 bytes_out 149536 177387 bytes_in 1943622 177387 station_ip 5.120.91.228 177387 port 88 177387 unique_id port 177387 remote_ip 10.8.0.190 177390 username khademi 177390 kill_reason Another user logged on this global unique id 177390 mac 177390 bytes_out 0 177390 bytes_in 0 177390 station_ip 37.129.154.227 177390 port 107 177390 unique_id port 177393 username zahra1101 177393 mac 177393 bytes_out 0 177393 bytes_in 0 177393 station_ip 5.120.91.228 177393 port 117 177393 unique_id port 177393 remote_ip 10.8.0.190 177399 username zahra1101 177399 kill_reason Maximum check online fails reached 177399 mac 177399 bytes_out 0 177399 bytes_in 0 177399 station_ip 5.120.91.228 177399 port 94 177399 unique_id port 177405 username pourshad 177405 mac 177405 bytes_out 15058 177405 bytes_in 23200 177405 station_ip 5.119.33.96 177405 port 122 177405 unique_id port 177405 remote_ip 10.8.0.42 177406 username zahra1101 177406 mac 177406 bytes_out 1575455 177406 bytes_in 12015995 177406 station_ip 5.120.91.228 177406 port 114 177406 unique_id port 177406 remote_ip 10.8.0.190 177409 username aminvpn 177409 unique_id port 177409 terminate_cause Lost-Carrier 177409 bytes_out 33249779 177409 bytes_in 912308279 177409 station_ip 31.57.143.33 177409 port 15728648 177409 nas_port_type Virtual 177409 remote_ip 5.5.5.254 177410 username aminvpn 177410 mac 177410 bytes_out 2908645 177410 bytes_in 20178023 177410 station_ip 5.119.231.130 177410 port 117 177410 unique_id port 177410 remote_ip 10.8.0.58 177415 username shadkam 177415 mac 177415 bytes_out 466448 177415 bytes_in 3258322 177415 station_ip 37.129.167.22 177415 port 101 177415 unique_id port 177415 remote_ip 10.8.0.74 177416 username milan 177416 mac 177416 bytes_out 0 177416 bytes_in 0 177416 station_ip 5.119.68.145 177416 port 74 177416 unique_id port 177418 username pourshad 177418 mac 177418 bytes_out 417380 177418 bytes_in 3018780 177418 station_ip 5.119.33.96 177418 port 114 177418 unique_id port 177418 remote_ip 10.8.0.42 177421 username jafari 177421 mac 177421 bytes_out 0 177421 bytes_in 0 177421 station_ip 5.62.205.206 177421 port 124 177421 unique_id port 177424 username mohammadjavad 177424 mac 177424 bytes_out 2791071 177424 bytes_in 39197884 177424 station_ip 37.129.220.160 177424 port 74 177424 unique_id port 177424 remote_ip 10.8.0.110 177426 username mohammadjavad 177426 mac 177426 bytes_out 0 177426 bytes_in 0 177426 station_ip 37.129.220.160 177426 port 87 177426 unique_id port 177426 remote_ip 10.8.0.110 177428 username barzegar 177428 kill_reason Another user logged on this global unique id 177428 mac 177428 bytes_out 0 177428 bytes_in 0 177428 station_ip 5.119.195.192 177428 port 110 177428 unique_id port 177430 username barzegar 177430 mac 177430 bytes_out 0 177430 bytes_in 0 177430 station_ip 5.119.195.192 177430 port 110 177430 unique_id port 177433 username barzegar 177433 kill_reason Maximum check online fails reached 177433 mac 177433 bytes_out 0 177433 bytes_in 0 177433 station_ip 5.119.195.192 177433 port 101 177389 bytes_in 473290 177389 station_ip 37.129.162.162 177389 port 113 177389 unique_id port 177389 remote_ip 10.8.0.154 177392 username zahra1101 177392 kill_reason Maximum check online fails reached 177392 mac 177392 bytes_out 0 177392 bytes_in 0 177392 station_ip 5.120.91.228 177392 port 113 177392 unique_id port 177396 username mostafa_es78 177396 mac 177396 bytes_out 0 177396 bytes_in 0 177396 station_ip 113.203.8.171 177396 port 94 177396 unique_id port 177397 username rajaei 177397 mac 177397 bytes_out 0 177397 bytes_in 0 177397 station_ip 37.156.49.228 177397 port 114 177397 unique_id port 177401 username barzegar 177401 mac 177401 bytes_out 682264 177401 bytes_in 10873688 177401 station_ip 5.119.195.192 177401 port 88 177401 unique_id port 177401 remote_ip 10.8.0.10 177404 username pourshad 177404 mac 177404 bytes_out 0 177404 bytes_in 0 177404 station_ip 5.119.33.96 177404 port 101 177404 unique_id port 177404 remote_ip 10.8.0.42 177411 username kalantary6037 177411 mac 177411 bytes_out 2072776 177411 bytes_in 18856769 177411 station_ip 37.129.183.118 177411 port 101 177411 unique_id port 177411 remote_ip 10.8.0.50 177413 username barzegar 177413 kill_reason Another user logged on this global unique id 177413 mac 177413 bytes_out 0 177413 bytes_in 0 177413 station_ip 5.119.195.192 177413 port 110 177413 unique_id port 177413 remote_ip 10.8.0.10 177414 username mehdizare 177414 kill_reason Another user logged on this global unique id 177414 mac 177414 bytes_out 0 177414 bytes_in 0 177414 station_ip 83.122.83.181 177414 port 87 177414 unique_id port 177420 username aminvpn2 177420 mac 177420 bytes_out 5203163 177420 bytes_in 38331823 177420 station_ip 5.119.71.248 177420 port 112 177420 unique_id port 177420 remote_ip 10.8.0.150 177425 username pourshad 177425 mac 177425 bytes_out 0 177425 bytes_in 0 177425 station_ip 5.119.33.96 177425 port 87 177425 unique_id port 177425 remote_ip 10.8.0.42 177427 username motamedi9772 177427 mac 177427 bytes_out 1317587 177427 bytes_in 15682237 177427 station_ip 37.129.214.50 177427 port 112 177427 unique_id port 177427 remote_ip 10.8.0.154 177432 username aminvpn 177432 unique_id port 177432 terminate_cause Lost-Carrier 177432 bytes_out 429506 177432 bytes_in 218993 177432 station_ip 31.57.121.58 177432 port 15728652 177432 nas_port_type Virtual 177432 remote_ip 5.5.5.251 177435 username pourshad 177435 mac 177435 bytes_out 39480 177435 bytes_in 66240 177435 station_ip 5.119.33.96 177435 port 74 177435 unique_id port 177435 remote_ip 10.8.0.42 177436 username sedighe 177436 mac 177436 bytes_out 179405 177436 bytes_in 843988 177436 station_ip 37.129.135.210 177436 port 117 177436 unique_id port 177436 remote_ip 10.8.0.46 177442 username barzegar 177442 mac 177442 bytes_out 17189 177442 bytes_in 25525 177442 station_ip 5.119.195.192 177442 port 110 177442 unique_id port 177442 remote_ip 10.8.0.10 177443 username mohammadmahdi 177443 mac 177443 bytes_out 1785075 177443 bytes_in 19148828 177443 station_ip 5.119.29.117 177443 port 112 177443 unique_id port 177443 remote_ip 10.8.0.30 177448 username godarzi 177448 mac 177448 bytes_out 3033234 177448 bytes_in 29375075 177448 station_ip 5.202.26.240 177448 port 87 177448 unique_id port 177448 remote_ip 10.8.0.38 177449 username barzegar 177449 mac 177449 bytes_out 13053 177449 bytes_in 14750 177449 station_ip 5.119.195.192 177449 port 112 177449 unique_id port 177449 remote_ip 10.8.0.10 177455 username yaghobi 177455 mac 177455 bytes_out 1432417 177408 unique_id port 177408 remote_ip 10.8.0.10 177412 username mehdizare 177412 kill_reason Another user logged on this global unique id 177412 mac 177412 bytes_out 0 177412 bytes_in 0 177412 station_ip 83.122.83.181 177412 port 87 177412 unique_id port 177412 remote_ip 10.8.0.210 177417 username jafari 177417 kill_reason Another user logged on this global unique id 177417 mac 177417 bytes_out 0 177417 bytes_in 0 177417 station_ip 5.62.205.206 177417 port 124 177417 unique_id port 177417 remote_ip 10.8.0.86 177419 username pourshad 177419 mac 177419 bytes_out 1683 177419 bytes_in 4260 177419 station_ip 5.119.33.96 177419 port 101 177419 unique_id port 177419 remote_ip 10.8.0.42 177422 username mehdizare 177422 mac 177422 bytes_out 0 177422 bytes_in 0 177422 station_ip 83.122.83.181 177422 port 87 177422 unique_id port 177423 username pourshad 177423 mac 177423 bytes_out 66433 177423 bytes_in 131489 177423 station_ip 5.119.33.96 177423 port 101 177423 unique_id port 177423 remote_ip 10.8.0.42 177429 username pourshad 177429 mac 177429 bytes_out 5344 177429 bytes_in 10028 177429 station_ip 5.119.33.96 177429 port 74 177429 unique_id port 177429 remote_ip 10.8.0.42 177431 username pourshad 177431 mac 177431 bytes_out 21279 177431 bytes_in 29327 177431 station_ip 5.119.33.96 177431 port 74 177431 unique_id port 177431 remote_ip 10.8.0.42 177434 username barzegar 177434 mac 177434 bytes_out 0 177434 bytes_in 0 177434 station_ip 5.119.195.192 177434 port 112 177434 unique_id port 177434 remote_ip 10.8.0.10 177437 username kalantary6037 177437 mac 177437 bytes_out 273662 177437 bytes_in 3692605 177437 station_ip 37.129.171.122 177437 port 112 177437 unique_id port 177437 remote_ip 10.8.0.50 177439 username alipour 177439 kill_reason Relative expiration date has reached 177439 mac 177439 bytes_out 0 177439 bytes_in 0 177439 station_ip 5.233.47.163 177439 port 112 177439 unique_id port 177441 username mohammadjavad 177441 mac 177441 bytes_out 0 177441 bytes_in 0 177441 station_ip 37.129.220.160 177441 port 112 177441 unique_id port 177441 remote_ip 10.8.0.110 177444 username pourshad 177444 mac 177444 bytes_out 102700 177444 bytes_in 658371 177444 station_ip 5.119.33.96 177444 port 74 177444 unique_id port 177444 remote_ip 10.8.0.42 177446 username pourshad 177446 mac 177446 bytes_out 2448 177446 bytes_in 3906 177446 station_ip 5.119.33.96 177446 port 117 177446 unique_id port 177446 remote_ip 10.8.0.42 177447 username alinezhad 177447 kill_reason Absolute expiration date has reached 177447 unique_id port 177447 bytes_out 0 177447 bytes_in 0 177447 station_ip 5.202.58.104 177447 port 15728654 177447 nas_port_type Virtual 177451 username barzegar 177451 mac 177451 bytes_out 7660 177451 bytes_in 11530 177451 station_ip 5.119.195.192 177451 port 112 177451 unique_id port 177451 remote_ip 10.8.0.10 177453 username soleymani5056 177453 mac 177453 bytes_out 119725 177453 bytes_in 323231 177453 station_ip 5.119.218.50 177453 port 122 177453 unique_id port 177453 remote_ip 10.8.0.226 177454 username barzegar 177454 mac 177454 bytes_out 3651 177454 bytes_in 4689 177454 station_ip 5.119.195.192 177454 port 97 177454 unique_id port 177454 remote_ip 10.8.0.10 177458 username khademi 177458 kill_reason Another user logged on this global unique id 177458 mac 177458 bytes_out 0 177458 bytes_in 0 177458 station_ip 37.129.154.227 177458 port 107 177458 unique_id port 177461 username barzegar 177461 mac 177461 bytes_out 2847 177461 bytes_in 4948 177433 unique_id port 177438 username morteza 177438 mac 177438 bytes_out 199286 177438 bytes_in 1521255 177438 station_ip 37.129.131.55 177438 port 118 177438 unique_id port 177438 remote_ip 10.8.0.174 177440 username malekpoir 177440 mac 177440 bytes_out 562697 177440 bytes_in 4587816 177440 station_ip 5.120.28.25 177440 port 110 177440 unique_id port 177440 remote_ip 10.8.0.18 177445 username pourshad 177445 mac 177445 bytes_out 167299 177445 bytes_in 1151905 177445 station_ip 5.119.33.96 177445 port 117 177445 unique_id port 177445 remote_ip 10.8.0.42 177450 username mohammadmahdi 177450 kill_reason Another user logged on this global unique id 177450 mac 177450 bytes_out 0 177450 bytes_in 0 177450 station_ip 5.119.29.117 177450 port 110 177450 unique_id port 177450 remote_ip 10.8.0.30 177452 username fezealinaghi 177452 mac 177452 bytes_out 1314069 177452 bytes_in 16022512 177452 station_ip 37.129.131.185 177452 port 97 177452 unique_id port 177452 remote_ip 10.8.0.202 177457 username barzegar 177457 kill_reason Maximum check online fails reached 177457 mac 177457 bytes_out 0 177457 bytes_in 0 177457 station_ip 5.119.195.192 177457 port 97 177457 unique_id port 177464 username fezealinaghi 177464 mac 177464 bytes_out 7896 177464 bytes_in 19078 177464 station_ip 37.129.131.185 177464 port 125 177464 unique_id port 177464 remote_ip 10.8.0.202 177468 username barzegar 177468 mac 177468 bytes_out 0 177468 bytes_in 0 177468 station_ip 5.119.195.192 177468 port 88 177468 unique_id port 177468 remote_ip 10.8.0.10 177470 username khademi 177470 kill_reason Another user logged on this global unique id 177470 mac 177470 bytes_out 0 177470 bytes_in 0 177470 station_ip 37.129.154.227 177470 port 107 177470 unique_id port 177471 username godarzi 177471 mac 177471 bytes_out 801067 177471 bytes_in 7167830 177471 station_ip 5.202.26.240 177471 port 118 177471 unique_id port 177471 remote_ip 10.8.0.38 177474 username fezealinaghi 177474 mac 177474 bytes_out 29203 177474 bytes_in 37191 177474 station_ip 37.129.131.185 177474 port 122 177474 unique_id port 177474 remote_ip 10.8.0.202 177477 username zahra1101 177477 mac 177477 bytes_out 510200 177477 bytes_in 4598486 177477 station_ip 5.119.50.80 177477 port 118 177477 unique_id port 177477 remote_ip 10.8.0.190 177480 username aminvpn 177480 unique_id port 177480 terminate_cause Lost-Carrier 177480 bytes_out 611877 177480 bytes_in 350786 177480 station_ip 31.57.141.78 177480 port 15728653 177480 nas_port_type Virtual 177480 remote_ip 5.5.5.250 177482 username mohammadjavad 177482 mac 177482 bytes_out 0 177482 bytes_in 0 177482 station_ip 37.129.238.29 177482 port 127 177482 unique_id port 177482 remote_ip 10.8.0.110 177484 username milan 177484 kill_reason Another user logged on this global unique id 177484 mac 177484 bytes_out 0 177484 bytes_in 0 177484 station_ip 5.119.68.145 177484 port 110 177484 unique_id port 177484 remote_ip 10.8.0.182 177486 username shadkam 177486 mac 177486 bytes_out 623171 177486 bytes_in 5240706 177486 station_ip 37.129.231.26 177486 port 87 177486 unique_id port 177486 remote_ip 10.8.0.74 177489 username zahra1101 177489 mac 177489 bytes_out 0 177489 bytes_in 0 177489 station_ip 5.119.50.80 177489 port 87 177489 unique_id port 177489 remote_ip 10.8.0.190 177491 username zahra1101 177491 mac 177491 bytes_out 15215 177491 bytes_in 19032 177491 station_ip 5.119.50.80 177491 port 87 177491 unique_id port 177491 remote_ip 10.8.0.190 177494 username barzegar 177494 mac 177455 bytes_in 14922544 177455 station_ip 37.129.222.109 177455 port 87 177455 unique_id port 177455 remote_ip 10.8.0.138 177456 username mohammadjavad 177456 mac 177456 bytes_out 690493 177456 bytes_in 8404006 177456 station_ip 37.129.220.160 177456 port 112 177456 unique_id port 177456 remote_ip 10.8.0.110 177459 username barzegar 177459 mac 177459 bytes_out 5820 177459 bytes_in 7135 177459 station_ip 5.119.195.192 177459 port 87 177459 unique_id port 177459 remote_ip 10.8.0.10 177460 username fezealinaghi 177460 mac 177460 bytes_out 10561 177460 bytes_in 17122 177460 station_ip 37.129.131.185 177460 port 122 177460 unique_id port 177460 remote_ip 10.8.0.202 177463 username mohammadmahdi 177463 mac 177463 bytes_out 0 177463 bytes_in 0 177463 station_ip 5.119.29.117 177463 port 110 177463 unique_id port 177465 username barzegar 177465 mac 177465 bytes_out 0 177465 bytes_in 0 177465 station_ip 5.119.195.192 177465 port 110 177465 unique_id port 177465 remote_ip 10.8.0.10 177467 username kalantary6037 177467 mac 177467 bytes_out 1094549 177467 bytes_in 8748168 177467 station_ip 37.129.153.110 177467 port 112 177467 unique_id port 177467 remote_ip 10.8.0.50 177472 username shadkam 177472 mac 177472 bytes_out 799503 177472 bytes_in 5536545 177472 station_ip 37.129.251.37 177472 port 124 177472 unique_id port 177472 remote_ip 10.8.0.74 177475 username mohammadmahdi 177475 mac 177475 bytes_out 1989591 177475 bytes_in 20770841 177475 station_ip 5.119.29.117 177475 port 87 177475 unique_id port 177475 remote_ip 10.8.0.30 177478 username fezealinaghi 177478 mac 177478 bytes_out 17938 177478 bytes_in 27040 177478 station_ip 37.129.131.185 177478 port 122 177478 unique_id port 177478 remote_ip 10.8.0.202 177479 username barzegar 177479 mac 177479 bytes_out 21664 177479 bytes_in 72958 177479 station_ip 5.119.195.192 177479 port 88 177479 unique_id port 177479 remote_ip 10.8.0.10 177483 username zahra1101 177483 mac 177483 bytes_out 43914 177483 bytes_in 72440 177483 station_ip 5.119.50.80 177483 port 122 177483 unique_id port 177483 remote_ip 10.8.0.190 177490 username barzegar 177490 mac 177490 bytes_out 199216 177490 bytes_in 1989250 177490 station_ip 5.119.195.192 177490 port 88 177490 unique_id port 177490 remote_ip 10.8.0.10 177495 username mosi 177495 kill_reason Another user logged on this global unique id 177495 mac 177495 bytes_out 0 177495 bytes_in 0 177495 station_ip 151.235.101.178 177495 port 74 177495 unique_id port 177501 username kalantary6037 177501 mac 177501 bytes_out 591108 177501 bytes_in 3724564 177501 station_ip 37.129.183.106 177501 port 87 177501 unique_id port 177501 remote_ip 10.8.0.50 177502 username mohammadjavad 177502 mac 177502 bytes_out 0 177502 bytes_in 0 177502 station_ip 37.129.238.29 177502 port 127 177502 unique_id port 177502 remote_ip 10.8.0.110 177503 username zahra1101 177503 kill_reason Maximum check online fails reached 177503 mac 177503 bytes_out 0 177503 bytes_in 0 177503 station_ip 5.119.50.80 177503 port 87 177503 unique_id port 177504 username shadkam 177504 mac 177504 bytes_out 3476 177504 bytes_in 5769 177504 station_ip 37.129.202.57 177504 port 118 177504 unique_id port 177504 remote_ip 10.8.0.74 177507 username fezealinaghi 177507 mac 177507 bytes_out 7681 177507 bytes_in 14750 177507 station_ip 37.129.131.185 177507 port 124 177507 unique_id port 177507 remote_ip 10.8.0.202 177509 username barzegar 177509 mac 177509 bytes_out 0 177509 bytes_in 0 177461 station_ip 5.119.195.192 177461 port 87 177461 unique_id port 177461 remote_ip 10.8.0.10 177462 username barzegar 177462 mac 177462 bytes_out 0 177462 bytes_in 0 177462 station_ip 5.119.195.192 177462 port 87 177462 unique_id port 177462 remote_ip 10.8.0.10 177466 username mostafa_es78 177466 mac 177466 bytes_out 2710320 177466 bytes_in 18846130 177466 station_ip 113.203.8.171 177466 port 88 177466 unique_id port 177466 remote_ip 10.8.0.34 177469 username fezealinaghi 177469 mac 177469 bytes_out 75294 177469 bytes_in 39849 177469 station_ip 37.129.131.185 177469 port 122 177469 unique_id port 177469 remote_ip 10.8.0.202 177473 username mosi 177473 kill_reason Another user logged on this global unique id 177473 mac 177473 bytes_out 0 177473 bytes_in 0 177473 station_ip 151.235.101.178 177473 port 74 177473 unique_id port 177473 remote_ip 10.8.0.142 177476 username mohammadjavad 177476 mac 177476 bytes_out 561743 177476 bytes_in 7516274 177476 station_ip 37.129.238.29 177476 port 124 177476 unique_id port 177476 remote_ip 10.8.0.110 177481 username mohammadjavad 177481 mac 177481 bytes_out 216002 177481 bytes_in 2315739 177481 station_ip 37.129.238.29 177481 port 88 177481 unique_id port 177481 remote_ip 10.8.0.110 177485 username kalantary6037 177485 mac 177485 bytes_out 1029684 177485 bytes_in 5013870 177485 station_ip 37.129.145.138 177485 port 125 177485 unique_id port 177485 remote_ip 10.8.0.50 177487 username khademi 177487 kill_reason Another user logged on this global unique id 177487 mac 177487 bytes_out 0 177487 bytes_in 0 177487 station_ip 37.129.154.227 177487 port 107 177487 unique_id port 177488 username zahra1101 177488 mac 177488 bytes_out 0 177488 bytes_in 0 177488 station_ip 5.119.50.80 177488 port 87 177488 unique_id port 177488 remote_ip 10.8.0.190 177492 username zahra1101 177492 mac 177492 bytes_out 0 177492 bytes_in 0 177492 station_ip 5.119.50.80 177492 port 87 177492 unique_id port 177492 remote_ip 10.8.0.190 177493 username godarzi 177493 mac 177493 bytes_out 3316863 177493 bytes_in 40587854 177493 station_ip 5.202.26.240 177493 port 126 177493 unique_id port 177493 remote_ip 10.8.0.38 177496 username zahra1101 177496 mac 177496 bytes_out 4301 177496 bytes_in 5231 177496 station_ip 5.119.50.80 177496 port 87 177496 unique_id port 177496 remote_ip 10.8.0.190 177497 username khademi 177497 kill_reason Another user logged on this global unique id 177497 mac 177497 bytes_out 0 177497 bytes_in 0 177497 station_ip 37.129.154.227 177497 port 107 177497 unique_id port 177505 username zahra1101 177505 mac 177505 bytes_out 0 177505 bytes_in 0 177505 station_ip 5.119.50.80 177505 port 127 177505 unique_id port 177505 remote_ip 10.8.0.190 177515 username shadkam 177515 mac 177515 bytes_out 296417 177515 bytes_in 1741533 177515 station_ip 37.129.202.57 177515 port 118 177515 unique_id port 177515 remote_ip 10.8.0.74 177519 username zahra1101 177519 mac 177519 bytes_out 0 177519 bytes_in 0 177519 station_ip 5.119.50.80 177519 port 129 177519 unique_id port 177519 remote_ip 10.8.0.190 177522 username khademi 177522 kill_reason Another user logged on this global unique id 177522 mac 177522 bytes_out 0 177522 bytes_in 0 177522 station_ip 37.129.154.227 177522 port 107 177522 unique_id port 177525 username zahra1101 177525 mac 177525 bytes_out 85906 177525 bytes_in 231912 177525 station_ip 5.119.50.80 177525 port 127 177525 unique_id port 177525 remote_ip 10.8.0.190 177530 username zahra1101 177530 mac 177494 bytes_out 0 177494 bytes_in 0 177494 station_ip 5.119.195.192 177494 port 87 177494 unique_id port 177494 remote_ip 10.8.0.10 177498 username sedighe 177498 mac 177498 bytes_out 172198 177498 bytes_in 638595 177498 station_ip 37.129.135.210 177498 port 118 177498 unique_id port 177498 remote_ip 10.8.0.46 177499 username zahra1101 177499 mac 177499 bytes_out 0 177499 bytes_in 0 177499 station_ip 5.119.50.80 177499 port 118 177499 unique_id port 177499 remote_ip 10.8.0.190 177500 username fezealinaghi 177500 mac 177500 bytes_out 1226880 177500 bytes_in 8168300 177500 station_ip 37.129.131.185 177500 port 124 177500 unique_id port 177500 remote_ip 10.8.0.202 177506 username zahra1101 177506 kill_reason Maximum check online fails reached 177506 mac 177506 bytes_out 0 177506 bytes_in 0 177506 station_ip 5.119.50.80 177506 port 128 177506 unique_id port 177508 username shadkam 177508 mac 177508 bytes_out 0 177508 bytes_in 0 177508 station_ip 37.129.202.57 177508 port 124 177508 unique_id port 177508 remote_ip 10.8.0.74 177510 username zahra1101 177510 mac 177510 bytes_out 0 177510 bytes_in 0 177510 station_ip 5.119.50.80 177510 port 118 177510 unique_id port 177510 remote_ip 10.8.0.190 177514 username fezealinaghi 177514 mac 177514 bytes_out 56980 177514 bytes_in 122330 177514 station_ip 37.129.131.185 177514 port 124 177514 unique_id port 177514 remote_ip 10.8.0.202 177516 username mohammadmahdi 177516 mac 177516 bytes_out 2126167 177516 bytes_in 22103363 177516 station_ip 5.119.29.117 177516 port 122 177516 unique_id port 177516 remote_ip 10.8.0.30 177517 username zahra1101 177517 mac 177517 bytes_out 2098 177517 bytes_in 5033 177517 station_ip 5.119.50.80 177517 port 118 177517 unique_id port 177517 remote_ip 10.8.0.190 177520 username barzegar 177520 kill_reason Maximum check online fails reached 177520 mac 177520 bytes_out 0 177520 bytes_in 0 177520 station_ip 5.119.195.192 177520 port 122 177520 unique_id port 177521 username fezealinaghi 177521 mac 177521 bytes_out 26563 177521 bytes_in 21144 177521 station_ip 37.129.131.185 177521 port 127 177521 unique_id port 177521 remote_ip 10.8.0.202 177524 username aminvpn 177524 mac 177524 bytes_out 26259 177524 bytes_in 79722 177524 station_ip 5.119.242.74 177524 port 88 177524 unique_id port 177524 remote_ip 10.8.0.58 177526 username hatami 177526 mac 177526 bytes_out 155155 177526 bytes_in 1082100 177526 station_ip 151.235.108.27 177526 port 88 177526 unique_id port 177526 remote_ip 10.8.0.98 177529 username barzegar 177529 mac 177529 bytes_out 2151 177529 bytes_in 4444 177529 station_ip 5.119.195.192 177529 port 127 177529 unique_id port 177529 remote_ip 10.8.0.10 177534 username soleymani5056 177534 mac 177534 bytes_out 24253 177534 bytes_in 49594 177534 station_ip 5.120.189.58 177534 port 126 177534 unique_id port 177534 remote_ip 10.8.0.226 177536 username sedighe 177536 mac 177536 bytes_out 70944 177536 bytes_in 250885 177536 station_ip 37.129.135.210 177536 port 88 177536 unique_id port 177536 remote_ip 10.8.0.46 177541 username saeeddamghani 177541 mac 177541 bytes_out 393143 177541 bytes_in 203098 177541 station_ip 217.60.218.29 177541 port 112 177541 unique_id port 177541 remote_ip 10.8.0.122 177543 username zahra1101 177543 mac 177543 bytes_out 173173 177543 bytes_in 793028 177543 station_ip 5.119.160.154 177543 port 112 177543 unique_id port 177543 remote_ip 10.8.0.190 177544 username zahra1101 177544 mac 177544 bytes_out 0 177509 station_ip 5.119.195.192 177509 port 127 177509 unique_id port 177509 remote_ip 10.8.0.10 177511 username godarzi 177511 mac 177511 bytes_out 684602 177511 bytes_in 2659544 177511 station_ip 5.202.26.240 177511 port 125 177511 unique_id port 177511 remote_ip 10.8.0.38 177512 username barzegar 177512 mac 177512 bytes_out 0 177512 bytes_in 0 177512 station_ip 5.119.195.192 177512 port 118 177512 unique_id port 177512 remote_ip 10.8.0.10 177513 username aminvpn 177513 kill_reason Maximum check online fails reached 177513 unique_id port 177513 bytes_out 323772 177513 bytes_in 225079 177513 station_ip 31.57.122.98 177513 port 15728655 177513 nas_port_type Virtual 177513 remote_ip 5.5.5.249 177518 username aminvpn 177518 mac 177518 bytes_out 1255725 177518 bytes_in 10988803 177518 station_ip 5.119.231.130 177518 port 88 177518 unique_id port 177518 remote_ip 10.8.0.58 177523 username aminvpn 177523 unique_id port 177523 terminate_cause User-Request 177523 bytes_out 87892 177523 bytes_in 666248 177523 station_ip 5.119.242.74 177523 port 15728658 177523 nas_port_type Virtual 177523 remote_ip 5.5.5.247 177527 username khademi 177527 kill_reason Another user logged on this global unique id 177527 mac 177527 bytes_out 0 177527 bytes_in 0 177527 station_ip 37.129.154.227 177527 port 107 177527 unique_id port 177528 username sedighe 177528 mac 177528 bytes_out 74773 177528 bytes_in 71443 177528 station_ip 37.129.135.210 177528 port 126 177528 unique_id port 177528 remote_ip 10.8.0.46 177531 username nilufarrajaei 177531 mac 177531 bytes_out 1106738 177531 bytes_in 3288479 177531 station_ip 37.129.199.134 177531 port 112 177531 unique_id port 177531 remote_ip 10.8.0.194 177533 username mohammadjavad 177533 mac 177533 bytes_out 10636 177533 bytes_in 156767 177533 station_ip 37.129.238.29 177533 port 112 177533 unique_id port 177533 remote_ip 10.8.0.110 177537 username shadkam 177537 mac 177537 bytes_out 1874715 177537 bytes_in 22646314 177537 station_ip 37.129.179.89 177537 port 126 177537 unique_id port 177537 remote_ip 10.8.0.74 177538 username zahra1101 177538 mac 177538 bytes_out 1214644 177538 bytes_in 11460238 177538 station_ip 5.119.160.154 177538 port 127 177538 unique_id port 177538 remote_ip 10.8.0.190 177539 username barzegar 177539 mac 177539 bytes_out 0 177539 bytes_in 0 177539 station_ip 5.119.195.192 177539 port 127 177539 unique_id port 177539 remote_ip 10.8.0.10 177542 username khademi 177542 kill_reason Another user logged on this global unique id 177542 mac 177542 bytes_out 0 177542 bytes_in 0 177542 station_ip 37.129.154.227 177542 port 107 177542 unique_id port 177545 username zahra1101 177545 mac 177545 bytes_out 0 177545 bytes_in 0 177545 station_ip 5.119.160.154 177545 port 127 177545 unique_id port 177545 remote_ip 10.8.0.190 177552 username barzegar 177552 mac 177552 bytes_out 0 177552 bytes_in 0 177552 station_ip 5.119.195.192 177552 port 129 177552 unique_id port 177552 remote_ip 10.8.0.10 177553 username zahra1101 177553 mac 177553 bytes_out 0 177553 bytes_in 0 177553 station_ip 5.119.160.154 177553 port 129 177553 unique_id port 177553 remote_ip 10.8.0.190 177559 username zahra1101 177559 kill_reason Maximum number of concurrent logins reached 177559 mac 177559 bytes_out 0 177559 bytes_in 0 177559 station_ip 5.119.160.154 177559 port 127 177559 unique_id port 177561 username zahra1101 177561 kill_reason Maximum check online fails reached 177561 mac 177561 bytes_out 0 177561 bytes_in 0 177561 station_ip 5.119.160.154 177561 port 118 177530 bytes_out 18695 177530 bytes_in 16979 177530 station_ip 5.120.1.30 177530 port 131 177530 unique_id port 177530 remote_ip 10.8.0.190 177532 username fezealinaghi 177532 mac 177532 bytes_out 34395 177532 bytes_in 197648 177532 station_ip 37.129.235.254 177532 port 130 177532 unique_id port 177532 remote_ip 10.8.0.202 177535 username soleymani5056 177535 mac 177535 bytes_out 35188 177535 bytes_in 47474 177535 station_ip 5.120.22.206 177535 port 130 177535 unique_id port 177535 remote_ip 10.8.0.226 177540 username zahra1101 177540 mac 177540 bytes_out 0 177540 bytes_in 0 177540 station_ip 5.119.160.154 177540 port 126 177540 unique_id port 177540 remote_ip 10.8.0.190 177546 username saeeddamghani 177546 mac 177546 bytes_out 58140 177546 bytes_in 75015 177546 station_ip 217.60.218.29 177546 port 112 177546 unique_id port 177546 remote_ip 10.8.0.122 177548 username aminvpn 177548 mac 177548 bytes_out 1696690 177548 bytes_in 9684680 177548 station_ip 5.119.242.74 177548 port 129 177548 unique_id port 177548 remote_ip 10.8.0.58 177549 username zahra1101 177549 mac 177549 bytes_out 92104 177549 bytes_in 507614 177549 station_ip 5.119.160.154 177549 port 112 177549 unique_id port 177549 remote_ip 10.8.0.190 177550 username mohammadmahdi 177550 kill_reason Another user logged on this global unique id 177550 mac 177550 bytes_out 0 177550 bytes_in 0 177550 station_ip 5.119.29.117 177550 port 118 177550 unique_id port 177550 remote_ip 10.8.0.30 177551 username zahra1101 177551 mac 177551 bytes_out 0 177551 bytes_in 0 177551 station_ip 5.119.160.154 177551 port 129 177551 unique_id port 177551 remote_ip 10.8.0.190 177556 username zahra1101 177556 mac 177556 bytes_out 0 177556 bytes_in 0 177556 station_ip 5.119.160.154 177556 port 112 177556 unique_id port 177556 remote_ip 10.8.0.190 177558 username mohammadmahdi 177558 mac 177558 bytes_out 0 177558 bytes_in 0 177558 station_ip 5.119.29.117 177558 port 118 177558 unique_id port 177560 username zahra1101 177560 mac 177560 bytes_out 1782 177560 bytes_in 4727 177560 station_ip 5.119.160.154 177560 port 112 177560 unique_id port 177560 remote_ip 10.8.0.190 177562 username godarzi 177562 mac 177562 bytes_out 2931813 177562 bytes_in 26570764 177562 station_ip 5.202.26.240 177562 port 124 177562 unique_id port 177562 remote_ip 10.8.0.38 177564 username aminvpn 177564 mac 177564 bytes_out 2175159 177564 bytes_in 48971913 177564 station_ip 5.119.231.130 177564 port 112 177564 unique_id port 177564 remote_ip 10.8.0.58 177568 username barzegar 177568 mac 177568 bytes_out 0 177568 bytes_in 0 177568 station_ip 5.119.195.192 177568 port 112 177568 unique_id port 177568 remote_ip 10.8.0.10 177570 username mohammadmahdi 177570 mac 177570 bytes_out 2451256 177570 bytes_in 29843837 177570 station_ip 5.119.29.117 177570 port 127 177570 unique_id port 177570 remote_ip 10.8.0.30 177572 username rashidi4690 177572 mac 177572 bytes_out 128248 177572 bytes_in 180238 177572 station_ip 5.119.156.209 177572 port 112 177572 unique_id port 177572 remote_ip 10.8.0.242 177577 username barzegar 177577 mac 177577 bytes_out 0 177577 bytes_in 0 177577 station_ip 5.119.195.192 177577 port 127 177577 unique_id port 177577 remote_ip 10.8.0.10 177581 username komeil 177581 mac 177581 bytes_out 0 177581 bytes_in 0 177581 station_ip 37.129.216.221 177581 port 112 177581 unique_id port 177581 remote_ip 10.8.0.146 177585 username bcboard 177585 kill_reason Relative expiration date has reached 177544 bytes_in 0 177544 station_ip 5.119.160.154 177544 port 126 177544 unique_id port 177544 remote_ip 10.8.0.190 177547 username soleymani5056 177547 mac 177547 bytes_out 874650 177547 bytes_in 3082373 177547 station_ip 5.119.172.176 177547 port 131 177547 unique_id port 177547 remote_ip 10.8.0.226 177554 username aminvpn 177554 mac 177554 bytes_out 1560849 177554 bytes_in 21974157 177554 station_ip 5.119.231.130 177554 port 112 177554 unique_id port 177554 remote_ip 10.8.0.58 177555 username zahra1101 177555 mac 177555 bytes_out 0 177555 bytes_in 0 177555 station_ip 5.119.160.154 177555 port 112 177555 unique_id port 177555 remote_ip 10.8.0.190 177557 username soleymani5056 177557 mac 177557 bytes_out 329338 177557 bytes_in 1366349 177557 station_ip 5.120.121.162 177557 port 127 177557 unique_id port 177557 remote_ip 10.8.0.226 177565 username kalantary6037 177565 mac 177565 bytes_out 83235 177565 bytes_in 206696 177565 station_ip 37.129.172.38 177565 port 124 177565 unique_id port 177565 remote_ip 10.8.0.50 177571 username motamedi9772 177571 mac 177571 bytes_out 129225 177571 bytes_in 331024 177571 station_ip 37.129.247.194 177571 port 129 177571 unique_id port 177571 remote_ip 10.8.0.154 177573 username pourshad 177573 mac 177573 bytes_out 2873685 177573 bytes_in 45202885 177573 station_ip 5.119.33.96 177573 port 117 177573 unique_id port 177573 remote_ip 10.8.0.42 177574 username komeil 177574 mac 177574 bytes_out 814487 177574 bytes_in 9647621 177574 station_ip 37.129.216.221 177574 port 112 177574 unique_id port 177574 remote_ip 10.8.0.146 177575 username komeil 177575 mac 177575 bytes_out 0 177575 bytes_in 0 177575 station_ip 37.129.216.221 177575 port 112 177575 unique_id port 177575 remote_ip 10.8.0.146 177580 username nilufarrajaei 177580 kill_reason Another user logged on this global unique id 177580 mac 177580 bytes_out 0 177580 bytes_in 0 177580 station_ip 37.129.199.134 177580 port 88 177580 unique_id port 177580 remote_ip 10.8.0.194 177582 username khademi 177582 kill_reason Another user logged on this global unique id 177582 mac 177582 bytes_out 0 177582 bytes_in 0 177582 station_ip 37.129.154.227 177582 port 107 177582 unique_id port 177590 username yaghobi 177590 mac 177590 bytes_out 374760 177590 bytes_in 9126597 177590 station_ip 37.129.134.71 177590 port 131 177590 unique_id port 177590 remote_ip 10.8.0.138 177591 username barzegar 177591 mac 177591 bytes_out 0 177591 bytes_in 0 177591 station_ip 5.119.195.192 177591 port 133 177591 unique_id port 177591 remote_ip 10.8.0.10 177595 username rahim 177595 mac 177595 bytes_out 172222 177595 bytes_in 698799 177595 station_ip 86.57.84.137 177595 port 126 177595 unique_id port 177595 remote_ip 10.8.0.134 177598 username hosseine 177598 kill_reason Another user logged on this global unique id 177598 mac 177598 bytes_out 0 177598 bytes_in 0 177598 station_ip 37.129.206.49 177598 port 125 177598 unique_id port 177598 remote_ip 10.8.0.54 177600 username pourshad 177600 mac 177600 bytes_out 94752 177600 bytes_in 174685 177600 station_ip 5.119.33.96 177600 port 117 177600 unique_id port 177600 remote_ip 10.8.0.42 177607 username mosi 177607 kill_reason Another user logged on this global unique id 177607 mac 177607 bytes_out 0 177607 bytes_in 0 177607 station_ip 151.235.101.178 177607 port 74 177607 unique_id port 177608 username sedighe 177608 mac 177608 bytes_out 36960 177608 bytes_in 73865 177608 station_ip 37.129.157.159 177608 port 88 177608 unique_id port 177561 unique_id port 177563 username sedighe 177563 mac 177563 bytes_out 193644 177563 bytes_in 246575 177563 station_ip 37.129.135.210 177563 port 126 177563 unique_id port 177563 remote_ip 10.8.0.46 177566 username alirezazadeh 177566 unique_id port 177566 terminate_cause Lost-Carrier 177566 bytes_out 1521116 177566 bytes_in 25023869 177566 station_ip 5.119.37.128 177566 port 15728656 177566 nas_port_type Virtual 177566 remote_ip 5.5.5.248 177567 username sedighe 177567 mac 177567 bytes_out 24125 177567 bytes_in 44910 177567 station_ip 37.129.162.156 177567 port 130 177567 unique_id port 177567 remote_ip 10.8.0.46 177569 username godarzi 177569 mac 177569 bytes_out 396058 177569 bytes_in 830154 177569 station_ip 5.202.26.240 177569 port 129 177569 unique_id port 177569 remote_ip 10.8.0.38 177576 username komeil 177576 mac 177576 bytes_out 1034332 177576 bytes_in 16117932 177576 station_ip 37.129.216.221 177576 port 112 177576 unique_id port 177576 remote_ip 10.8.0.146 177578 username komeil 177578 mac 177578 bytes_out 0 177578 bytes_in 0 177578 station_ip 37.129.216.221 177578 port 112 177578 unique_id port 177578 remote_ip 10.8.0.146 177579 username komeil 177579 mac 177579 bytes_out 0 177579 bytes_in 0 177579 station_ip 37.129.216.221 177579 port 112 177579 unique_id port 177579 remote_ip 10.8.0.146 177583 username mostafa_es78 177583 mac 177583 bytes_out 2854885 177583 bytes_in 37777475 177583 station_ip 113.203.8.171 177583 port 124 177583 unique_id port 177583 remote_ip 10.8.0.34 177584 username barzegar 177584 mac 177584 bytes_out 0 177584 bytes_in 0 177584 station_ip 5.119.195.192 177584 port 124 177584 unique_id port 177584 remote_ip 10.8.0.10 177587 username aminvpn 177587 unique_id port 177587 terminate_cause Lost-Carrier 177587 bytes_out 8506000 177587 bytes_in 13055868 177587 station_ip 5.119.130.76 177587 port 15728663 177587 nas_port_type Virtual 177587 remote_ip 5.5.5.245 177589 username sedighe 177589 mac 177589 bytes_out 135861 177589 bytes_in 164398 177589 station_ip 37.129.162.156 177589 port 126 177589 unique_id port 177589 remote_ip 10.8.0.46 177592 username rashidi4690 177592 mac 177592 bytes_out 88458 177592 bytes_in 496215 177592 station_ip 5.119.156.209 177592 port 131 177592 unique_id port 177592 remote_ip 10.8.0.242 177596 username komeil 177596 mac 177596 bytes_out 867231 177596 bytes_in 12724707 177596 station_ip 37.129.216.221 177596 port 112 177596 unique_id port 177596 remote_ip 10.8.0.146 177597 username sedighe 177597 mac 177597 bytes_out 60616 177597 bytes_in 178691 177597 station_ip 37.129.162.156 177597 port 129 177597 unique_id port 177597 remote_ip 10.8.0.46 177601 username shadkam 177601 mac 177601 bytes_out 1053746 177601 bytes_in 14295928 177601 station_ip 37.129.198.230 177601 port 126 177601 unique_id port 177601 remote_ip 10.8.0.74 177602 username barzegar 177602 mac 177602 bytes_out 0 177602 bytes_in 0 177602 station_ip 5.119.195.192 177602 port 117 177602 unique_id port 177602 remote_ip 10.8.0.10 177604 username sedighe 177604 mac 177604 bytes_out 204277 177604 bytes_in 1489798 177604 station_ip 37.129.162.156 177604 port 124 177604 unique_id port 177604 remote_ip 10.8.0.46 177606 username rahim 177606 mac 177606 bytes_out 0 177606 bytes_in 0 177606 station_ip 86.57.84.137 177606 port 112 177606 unique_id port 177606 remote_ip 10.8.0.134 177614 username jafari 177614 kill_reason Another user logged on this global unique id 177614 mac 177614 bytes_out 0 177585 unique_id port 177585 bytes_out 0 177585 bytes_in 0 177585 station_ip 37.129.182.103 177585 port 15728665 177585 nas_port_type Virtual 177586 username mostafa_es78 177586 kill_reason Another user logged on this global unique id 177586 mac 177586 bytes_out 0 177586 bytes_in 0 177586 station_ip 113.203.8.171 177586 port 127 177586 unique_id port 177586 remote_ip 10.8.0.34 177588 username barzegar 177588 mac 177588 bytes_out 0 177588 bytes_in 0 177588 station_ip 5.119.195.192 177588 port 129 177588 unique_id port 177588 remote_ip 10.8.0.10 177593 username rezaei 177593 mac 177593 bytes_out 2333121 177593 bytes_in 32428016 177593 station_ip 5.120.68.177 177593 port 124 177593 unique_id port 177593 remote_ip 10.8.0.198 177594 username fezealinaghi 177594 mac 177594 bytes_out 698973 177594 bytes_in 7811779 177594 station_ip 37.129.242.106 177594 port 132 177594 unique_id port 177594 remote_ip 10.8.0.202 177599 username nilufarrajaei 177599 mac 177599 bytes_out 0 177599 bytes_in 0 177599 station_ip 37.129.199.134 177599 port 88 177599 unique_id port 177603 username godarzi 177603 mac 177603 bytes_out 484173 177603 bytes_in 6620210 177603 station_ip 5.119.233.121 177603 port 88 177603 unique_id port 177603 remote_ip 10.8.0.38 177605 username rahim 177605 mac 177605 bytes_out 300832 177605 bytes_in 3695547 177605 station_ip 86.57.84.137 177605 port 112 177605 unique_id port 177605 remote_ip 10.8.0.134 177611 username sedighe 177611 mac 177611 bytes_out 59090 177611 bytes_in 92834 177611 station_ip 37.129.133.185 177611 port 129 177611 unique_id port 177611 remote_ip 10.8.0.46 177613 username hosseine 177613 kill_reason Another user logged on this global unique id 177613 mac 177613 bytes_out 0 177613 bytes_in 0 177613 station_ip 37.129.206.49 177613 port 88 177613 unique_id port 177613 remote_ip 10.8.0.54 177617 username sedighe 177617 mac 177617 bytes_out 285506 177617 bytes_in 1818980 177617 station_ip 37.129.133.185 177617 port 125 177617 unique_id port 177617 remote_ip 10.8.0.46 177618 username rashidi4690 177618 mac 177618 bytes_out 54187 177618 bytes_in 223598 177618 station_ip 5.119.156.209 177618 port 124 177618 unique_id port 177618 remote_ip 10.8.0.242 177626 username barzegar 177626 mac 177626 bytes_out 0 177626 bytes_in 0 177626 station_ip 5.119.195.192 177626 port 131 177626 unique_id port 177626 remote_ip 10.8.0.10 177628 username godarzi 177628 mac 177628 bytes_out 715755 177628 bytes_in 6344971 177628 station_ip 5.119.233.121 177628 port 125 177628 unique_id port 177628 remote_ip 10.8.0.38 177635 username barzegar 177635 mac 177635 bytes_out 0 177635 bytes_in 0 177635 station_ip 5.119.195.192 177635 port 127 177635 unique_id port 177635 remote_ip 10.8.0.10 177637 username mohammadjavad 177637 kill_reason Another user logged on this global unique id 177637 mac 177637 bytes_out 0 177637 bytes_in 0 177637 station_ip 37.129.132.102 177637 port 125 177637 unique_id port 177637 remote_ip 10.8.0.110 177638 username pourshad 177638 mac 177638 bytes_out 88600 177638 bytes_in 82883 177638 station_ip 5.119.33.96 177638 port 127 177638 unique_id port 177638 remote_ip 10.8.0.42 177646 username aminvpn 177646 unique_id port 177646 terminate_cause Lost-Carrier 177646 bytes_out 1638088 177646 bytes_in 3524142 177646 station_ip 5.120.89.129 177646 port 15728668 177646 nas_port_type Virtual 177646 remote_ip 5.5.5.242 177649 username yaghobi 177649 mac 177649 bytes_out 905223 177649 bytes_in 3960446 177649 station_ip 37.129.216.124 177608 remote_ip 10.8.0.46 177609 username hosseine 177609 mac 177609 bytes_out 0 177609 bytes_in 0 177609 station_ip 37.129.206.49 177609 port 125 177609 unique_id port 177610 username rahim 177610 mac 177610 bytes_out 289469 177610 bytes_in 2714126 177610 station_ip 86.57.84.137 177610 port 126 177610 unique_id port 177610 remote_ip 10.8.0.134 177612 username barzegar 177612 mac 177612 bytes_out 0 177612 bytes_in 0 177612 station_ip 5.119.195.192 177612 port 126 177612 unique_id port 177612 remote_ip 10.8.0.10 177615 username mosi 177615 kill_reason Another user logged on this global unique id 177615 mac 177615 bytes_out 0 177615 bytes_in 0 177615 station_ip 151.235.101.178 177615 port 74 177615 unique_id port 177616 username jafari 177616 mac 177616 bytes_out 0 177616 bytes_in 0 177616 station_ip 5.62.205.206 177616 port 124 177616 unique_id port 177620 username barzegar 177620 mac 177620 bytes_out 0 177620 bytes_in 0 177620 station_ip 5.119.195.192 177620 port 124 177620 unique_id port 177620 remote_ip 10.8.0.10 177621 username rashidi4690 177621 mac 177621 bytes_out 45831 177621 bytes_in 34564 177621 station_ip 5.120.68.208 177621 port 132 177621 unique_id port 177621 remote_ip 10.8.0.242 177623 username rahim 177623 mac 177623 bytes_out 2316236 177623 bytes_in 26927375 177623 station_ip 86.57.84.137 177623 port 131 177623 unique_id port 177623 remote_ip 10.8.0.134 177624 username morteza 177624 kill_reason Another user logged on this global unique id 177624 mac 177624 bytes_out 0 177624 bytes_in 0 177624 station_ip 37.129.136.204 177624 port 126 177624 unique_id port 177624 remote_ip 10.8.0.174 177625 username morteza 177625 mac 177625 bytes_out 0 177625 bytes_in 0 177625 station_ip 37.129.136.204 177625 port 126 177625 unique_id port 177630 username pourshad 177630 mac 177630 bytes_out 183235 177630 bytes_in 1658270 177630 station_ip 5.119.33.96 177630 port 117 177630 unique_id port 177630 remote_ip 10.8.0.42 177631 username godarzi 177631 mac 177631 bytes_out 47147 177631 bytes_in 92965 177631 station_ip 5.119.233.121 177631 port 117 177631 unique_id port 177631 remote_ip 10.8.0.38 177632 username vanila 177632 kill_reason Relative expiration date has reached 177632 mac 177632 bytes_out 0 177632 bytes_in 0 177632 station_ip 37.129.217.108 177632 port 117 177632 unique_id port 177634 username sedighe 177634 mac 177634 bytes_out 1352202 177634 bytes_in 14758731 177634 station_ip 37.129.226.193 177634 port 124 177634 unique_id port 177634 remote_ip 10.8.0.46 177642 username yaghobi 177642 mac 177642 bytes_out 17366 177642 bytes_in 43643 177642 station_ip 83.122.60.173 177642 port 112 177642 unique_id port 177642 remote_ip 10.8.0.138 177643 username pourshad 177643 mac 177643 bytes_out 15595 177643 bytes_in 17861 177643 station_ip 5.119.33.96 177643 port 127 177643 unique_id port 177643 remote_ip 10.8.0.42 177644 username tahmasebi 177644 kill_reason Relative expiration date has reached 177644 mac 177644 bytes_out 0 177644 bytes_in 0 177644 station_ip 5.119.18.231 177644 port 127 177644 unique_id port 177645 username barzegar 177645 mac 177645 bytes_out 0 177645 bytes_in 0 177645 station_ip 5.119.195.192 177645 port 127 177645 unique_id port 177645 remote_ip 10.8.0.10 177648 username rashidi4690 177648 mac 177648 bytes_out 145489 177648 bytes_in 296035 177648 station_ip 5.120.68.208 177648 port 129 177648 unique_id port 177648 remote_ip 10.8.0.242 177651 username barzegar 177614 bytes_in 0 177614 station_ip 5.62.205.206 177614 port 124 177614 unique_id port 177614 remote_ip 10.8.0.86 177619 username rashidi4690 177619 mac 177619 bytes_out 0 177619 bytes_in 0 177619 station_ip 5.120.68.208 177619 port 124 177619 unique_id port 177619 remote_ip 10.8.0.242 177622 username kalantary6037 177622 mac 177622 bytes_out 2002129 177622 bytes_in 16726422 177622 station_ip 37.129.211.6 177622 port 129 177622 unique_id port 177622 remote_ip 10.8.0.50 177627 username soleymani5056 177627 mac 177627 bytes_out 52616 177627 bytes_in 117932 177627 station_ip 5.120.149.158 177627 port 129 177627 unique_id port 177627 remote_ip 10.8.0.226 177629 username mostafa_es78 177629 mac 177629 bytes_out 0 177629 bytes_in 0 177629 station_ip 113.203.8.171 177629 port 127 177629 unique_id port 177633 username aminvpn 177633 mac 177633 bytes_out 610412 177633 bytes_in 5597540 177633 station_ip 5.119.242.74 177633 port 126 177633 unique_id port 177633 remote_ip 10.8.0.58 177636 username pourshad 177636 mac 177636 bytes_out 20754 177636 bytes_in 27498 177636 station_ip 5.119.33.96 177636 port 124 177636 unique_id port 177636 remote_ip 10.8.0.42 177639 username mohammadjavad 177639 mac 177639 bytes_out 0 177639 bytes_in 0 177639 station_ip 37.129.132.102 177639 port 125 177639 unique_id port 177640 username nilufarrajaei 177640 mac 177640 bytes_out 2953900 177640 bytes_in 22394895 177640 station_ip 37.129.199.134 177640 port 112 177640 unique_id port 177640 remote_ip 10.8.0.194 177641 username mehdizare 177641 mac 177641 bytes_out 1181234 177641 bytes_in 15995381 177641 station_ip 83.122.83.181 177641 port 114 177641 unique_id port 177641 remote_ip 10.8.0.210 177647 username zahra1101 177647 mac 177647 bytes_out 3497085 177647 bytes_in 34908947 177647 station_ip 5.119.160.154 177647 port 126 177647 unique_id port 177647 remote_ip 10.8.0.190 177650 username zahra1101 177650 mac 177650 bytes_out 697665 177650 bytes_in 5795339 177650 station_ip 5.119.214.40 177650 port 131 177650 unique_id port 177650 remote_ip 10.8.0.190 177653 username zahra1101 177653 mac 177653 bytes_out 885481 177653 bytes_in 1136232 177653 station_ip 5.120.96.133 177653 port 129 177653 unique_id port 177653 remote_ip 10.8.0.190 177654 username hosseine 177654 kill_reason Another user logged on this global unique id 177654 mac 177654 bytes_out 0 177654 bytes_in 0 177654 station_ip 37.129.206.49 177654 port 88 177654 unique_id port 177657 username aminvpn 177657 mac 177657 bytes_out 0 177657 bytes_in 0 177657 station_ip 5.119.249.2 177657 port 131 177657 unique_id port 177657 remote_ip 10.8.0.58 177663 username zahra1101 177663 mac 177663 bytes_out 0 177663 bytes_in 0 177663 station_ip 5.119.74.71 177663 port 127 177663 unique_id port 177663 remote_ip 10.8.0.190 177666 username pourshad 177666 mac 177666 bytes_out 1661 177666 bytes_in 5651 177666 station_ip 5.119.33.96 177666 port 127 177666 unique_id port 177666 remote_ip 10.8.0.42 177667 username aminvpn 177667 mac 177667 bytes_out 1576462 177667 bytes_in 18291845 177667 station_ip 5.119.249.2 177667 port 117 177667 unique_id port 177667 remote_ip 10.8.0.58 177668 username aminvpn 177668 mac 177668 bytes_out 0 177668 bytes_in 0 177668 station_ip 37.129.213.189 177668 port 133 177668 unique_id port 177668 remote_ip 10.8.0.58 177669 username aminvpn 177669 mac 177669 bytes_out 0 177669 bytes_in 0 177669 station_ip 5.119.249.2 177669 port 134 177649 port 114 177649 unique_id port 177649 remote_ip 10.8.0.138 177655 username houshang 177655 mac 177655 bytes_out 3368931 177655 bytes_in 44985092 177655 station_ip 5.119.216.181 177655 port 117 177655 unique_id port 177655 remote_ip 10.8.0.82 177658 username houshang 177658 mac 177658 bytes_out 0 177658 bytes_in 0 177658 station_ip 5.119.216.181 177658 port 117 177658 unique_id port 177658 remote_ip 10.8.0.82 177661 username ayobi 177661 kill_reason Another user logged on this global unique id 177661 mac 177661 bytes_out 0 177661 bytes_in 0 177661 station_ip 37.27.15.128 177661 port 124 177661 unique_id port 177661 remote_ip 10.8.0.186 177665 username pourshad 177665 mac 177665 bytes_out 209357 177665 bytes_in 221840 177665 station_ip 5.119.33.96 177665 port 125 177665 unique_id port 177665 remote_ip 10.8.0.42 177670 username houshang 177670 mac 177670 bytes_out 1237638 177670 bytes_in 17221419 177670 station_ip 5.119.216.181 177670 port 131 177670 unique_id port 177670 remote_ip 10.8.0.82 177675 username mosi 177675 mac 177675 bytes_out 0 177675 bytes_in 0 177675 station_ip 151.235.101.178 177675 port 74 177675 unique_id port 177677 username aminvpn 177677 mac 177677 bytes_out 0 177677 bytes_in 0 177677 station_ip 5.119.249.2 177677 port 117 177677 unique_id port 177677 remote_ip 10.8.0.58 177679 username shadkam 177679 mac 177679 bytes_out 1407294 177679 bytes_in 14428630 177679 station_ip 37.129.185.137 177679 port 132 177679 unique_id port 177679 remote_ip 10.8.0.74 177681 username barzegar 177681 mac 177681 bytes_out 0 177681 bytes_in 0 177681 station_ip 5.119.195.192 177681 port 131 177681 unique_id port 177681 remote_ip 10.8.0.10 177685 username rahim 177685 mac 177685 bytes_out 0 177685 bytes_in 0 177685 station_ip 5.119.143.227 177685 port 132 177685 unique_id port 177685 remote_ip 10.8.0.134 177686 username kalantary6037 177686 mac 177686 bytes_out 2938763 177686 bytes_in 29051127 177686 station_ip 37.129.132.254 177686 port 114 177686 unique_id port 177686 remote_ip 10.8.0.50 177688 username tahmasebi 177688 kill_reason Relative expiration date has reached 177688 mac 177688 bytes_out 0 177688 bytes_in 0 177688 station_ip 5.119.18.231 177688 port 132 177688 unique_id port 177690 username rahim 177690 mac 177690 bytes_out 0 177690 bytes_in 0 177690 station_ip 5.119.143.227 177690 port 114 177690 unique_id port 177690 remote_ip 10.8.0.134 177695 username barzegar 177695 mac 177695 bytes_out 0 177695 bytes_in 0 177695 station_ip 5.119.195.192 177695 port 114 177695 unique_id port 177695 remote_ip 10.8.0.10 177698 username malekpoir 177698 kill_reason Another user logged on this global unique id 177698 mac 177698 bytes_out 0 177698 bytes_in 0 177698 station_ip 5.120.28.25 177698 port 130 177698 unique_id port 177698 remote_ip 10.8.0.18 177703 username alihosseini1 177703 mac 177703 bytes_out 14491 177703 bytes_in 34205 177703 station_ip 5.120.22.188 177703 port 132 177703 unique_id port 177703 remote_ip 10.8.0.234 177707 username aminvpn 177707 mac 177707 bytes_out 2517032 177707 bytes_in 32233563 177707 station_ip 37.129.213.189 177707 port 74 177707 unique_id port 177707 remote_ip 10.8.0.58 177711 username mirzaei6046 177711 mac 177711 bytes_out 1453471 177711 bytes_in 13157116 177711 station_ip 5.119.44.190 177711 port 131 177711 unique_id port 177711 remote_ip 10.8.0.246 177717 username aminvpn 177717 unique_id port 177717 terminate_cause User-Request 177717 bytes_out 219357 177651 mac 177651 bytes_out 0 177651 bytes_in 0 177651 station_ip 5.119.195.192 177651 port 131 177651 unique_id port 177651 remote_ip 10.8.0.10 177652 username kalantary6037 177652 mac 177652 bytes_out 694460 177652 bytes_in 5382464 177652 station_ip 37.129.157.142 177652 port 114 177652 unique_id port 177652 remote_ip 10.8.0.50 177656 username motamedi9772 177656 mac 177656 bytes_out 106059 177656 bytes_in 120129 177656 station_ip 37.129.247.194 177656 port 129 177656 unique_id port 177656 remote_ip 10.8.0.154 177659 username houshang 177659 mac 177659 bytes_out 0 177659 bytes_in 0 177659 station_ip 5.119.216.181 177659 port 129 177659 unique_id port 177659 remote_ip 10.8.0.82 177660 username godarzi 177660 mac 177660 bytes_out 1129860 177660 bytes_in 10584398 177660 station_ip 5.119.233.121 177660 port 127 177660 unique_id port 177660 remote_ip 10.8.0.38 177662 username zahra1101 177662 mac 177662 bytes_out 5350222 177662 bytes_in 4395665 177662 station_ip 5.119.74.71 177662 port 114 177662 unique_id port 177662 remote_ip 10.8.0.190 177664 username barzegar 177664 mac 177664 bytes_out 0 177664 bytes_in 0 177664 station_ip 5.119.195.192 177664 port 127 177664 unique_id port 177664 remote_ip 10.8.0.10 177674 username aminvpn 177674 mac 177674 bytes_out 0 177674 bytes_in 0 177674 station_ip 37.129.213.189 177674 port 133 177674 unique_id port 177674 remote_ip 10.8.0.58 177676 username jafari 177676 kill_reason Another user logged on this global unique id 177676 mac 177676 bytes_out 0 177676 bytes_in 0 177676 station_ip 5.62.205.206 177676 port 126 177676 unique_id port 177676 remote_ip 10.8.0.86 177678 username zahra1101 177678 kill_reason Another user logged on this global unique id 177678 mac 177678 bytes_out 0 177678 bytes_in 0 177678 station_ip 5.120.20.148 177678 port 129 177678 unique_id port 177678 remote_ip 10.8.0.190 177682 username rashidi4690 177682 mac 177682 bytes_out 108083 177682 bytes_in 411002 177682 station_ip 5.120.68.208 177682 port 117 177682 unique_id port 177682 remote_ip 10.8.0.242 177683 username sedighe 177683 mac 177683 bytes_out 57097 177683 bytes_in 93008 177683 station_ip 37.129.131.221 177683 port 125 177683 unique_id port 177683 remote_ip 10.8.0.46 177687 username tahmasebi 177687 kill_reason Relative expiration date has reached 177687 mac 177687 bytes_out 0 177687 bytes_in 0 177687 station_ip 5.119.18.231 177687 port 132 177687 unique_id port 177689 username soleymani5056 177689 mac 177689 bytes_out 122791 177689 bytes_in 152154 177689 station_ip 5.119.23.2 177689 port 125 177689 unique_id port 177689 remote_ip 10.8.0.226 177691 username rahim 177691 mac 177691 bytes_out 0 177691 bytes_in 0 177691 station_ip 5.119.143.227 177691 port 114 177691 unique_id port 177691 remote_ip 10.8.0.134 177693 username tahmasebi 177693 kill_reason Relative expiration date has reached 177693 mac 177693 bytes_out 0 177693 bytes_in 0 177693 station_ip 5.119.18.231 177693 port 114 177693 unique_id port 177696 username aminvpn 177696 unique_id port 177696 terminate_cause Lost-Carrier 177696 bytes_out 730468 177696 bytes_in 6308076 177696 station_ip 5.119.216.211 177696 port 15728667 177696 nas_port_type Virtual 177696 remote_ip 5.5.5.243 177697 username saeed9658 177697 kill_reason Relative expiration date has reached 177697 mac 177697 bytes_out 0 177697 bytes_in 0 177697 station_ip 5.119.34.254 177697 port 132 177697 unique_id port 177704 username zahra1101 177704 kill_reason Another user logged on this global unique id 177704 mac 177704 bytes_out 0 177669 unique_id port 177669 remote_ip 10.8.0.58 177671 username aminvpn 177671 mac 177671 bytes_out 0 177671 bytes_in 0 177671 station_ip 37.129.213.189 177671 port 133 177671 unique_id port 177671 remote_ip 10.8.0.58 177672 username aminvpn 177672 mac 177672 bytes_out 0 177672 bytes_in 0 177672 station_ip 5.119.249.2 177672 port 131 177672 unique_id port 177672 remote_ip 10.8.0.58 177673 username godarzi 177673 mac 177673 bytes_out 100328 177673 bytes_in 197250 177673 station_ip 5.119.233.121 177673 port 117 177673 unique_id port 177673 remote_ip 10.8.0.38 177680 username rahim 177680 mac 177680 bytes_out 232950 177680 bytes_in 1553882 177680 station_ip 86.57.69.131 177680 port 131 177680 unique_id port 177680 remote_ip 10.8.0.134 177684 username pourshad 177684 kill_reason Another user logged on this global unique id 177684 mac 177684 bytes_out 0 177684 bytes_in 0 177684 station_ip 5.119.33.96 177684 port 127 177684 unique_id port 177684 remote_ip 10.8.0.42 177692 username rahim 177692 mac 177692 bytes_out 0 177692 bytes_in 0 177692 station_ip 5.119.143.227 177692 port 132 177692 unique_id port 177692 remote_ip 10.8.0.134 177694 username soleymani5056 177694 mac 177694 bytes_out 36876 177694 bytes_in 76987 177694 station_ip 5.119.100.17 177694 port 114 177694 unique_id port 177694 remote_ip 10.8.0.226 177699 username motamedi9772 177699 mac 177699 bytes_out 34010 177699 bytes_in 149072 177699 station_ip 37.129.159.198 177699 port 132 177699 unique_id port 177699 remote_ip 10.8.0.154 177700 username jafari 177700 kill_reason Another user logged on this global unique id 177700 mac 177700 bytes_out 0 177700 bytes_in 0 177700 station_ip 5.62.205.206 177700 port 126 177700 unique_id port 177701 username pourshad 177701 mac 177701 bytes_out 0 177701 bytes_in 0 177701 station_ip 5.119.33.96 177701 port 127 177701 unique_id port 177702 username shadkam 177702 mac 177702 bytes_out 142991 177702 bytes_in 2166809 177702 station_ip 37.129.172.166 177702 port 127 177702 unique_id port 177702 remote_ip 10.8.0.74 177706 username aminvpn 177706 unique_id port 177706 terminate_cause Lost-Carrier 177706 bytes_out 28643541 177706 bytes_in 867457998 177706 station_ip 31.57.122.98 177706 port 15728657 177706 nas_port_type Virtual 177706 remote_ip 5.5.5.249 177708 username barzegar 177708 mac 177708 bytes_out 0 177708 bytes_in 0 177708 station_ip 5.119.195.192 177708 port 74 177708 unique_id port 177708 remote_ip 10.8.0.10 177709 username kalantary6037 177709 mac 177709 bytes_out 96597 177709 bytes_in 782633 177709 station_ip 37.129.213.114 177709 port 127 177709 unique_id port 177709 remote_ip 10.8.0.50 177716 username jafari 177716 mac 177716 bytes_out 0 177716 bytes_in 0 177716 station_ip 5.62.205.206 177716 port 126 177716 unique_id port 177718 username alipour 177718 kill_reason Relative expiration date has reached 177718 mac 177718 bytes_out 0 177718 bytes_in 0 177718 station_ip 37.129.212.250 177718 port 126 177718 unique_id port 177719 username alipour 177719 kill_reason Relative expiration date has reached 177719 mac 177719 bytes_out 0 177719 bytes_in 0 177719 station_ip 5.233.47.163 177719 port 126 177719 unique_id port 177721 username barzegar 177721 mac 177721 bytes_out 0 177721 bytes_in 0 177721 station_ip 5.119.195.192 177721 port 126 177721 unique_id port 177721 remote_ip 10.8.0.10 177723 username mosi 177723 mac 177723 bytes_out 4321 177723 bytes_in 5244 177723 station_ip 151.235.120.48 177723 port 126 177704 bytes_in 0 177704 station_ip 5.120.20.148 177704 port 129 177704 unique_id port 177705 username yaghobi 177705 mac 177705 bytes_out 6897 177705 bytes_in 5574 177705 station_ip 37.129.136.7 177705 port 127 177705 unique_id port 177705 remote_ip 10.8.0.138 177710 username houshang 177710 mac 177710 bytes_out 1586189 177710 bytes_in 18191275 177710 station_ip 5.119.216.181 177710 port 114 177710 unique_id port 177710 remote_ip 10.8.0.82 177712 username alipour 177712 kill_reason Relative expiration date has reached 177712 mac 177712 bytes_out 0 177712 bytes_in 0 177712 station_ip 5.233.47.163 177712 port 127 177712 unique_id port 177713 username asadi 177713 kill_reason Relative expiration date has reached 177713 mac 177713 bytes_out 0 177713 bytes_in 0 177713 station_ip 37.129.200.53 177713 port 127 177713 unique_id port 177714 username asadi 177714 kill_reason Relative expiration date has reached 177714 mac 177714 bytes_out 0 177714 bytes_in 0 177714 station_ip 37.129.200.53 177714 port 131 177714 unique_id port 177715 username kalantary6037 177715 mac 177715 bytes_out 642236 177715 bytes_in 4623114 177715 station_ip 37.129.213.114 177715 port 74 177715 unique_id port 177715 remote_ip 10.8.0.50 177720 username majidsarmast 177720 kill_reason Another user logged on this global unique id 177720 mac 177720 bytes_out 0 177720 bytes_in 0 177720 station_ip 86.57.48.72 177720 port 134 177720 unique_id port 177720 remote_ip 10.8.0.170 177722 username barzegar 177722 mac 177722 bytes_out 0 177722 bytes_in 0 177722 station_ip 5.119.195.192 177722 port 126 177722 unique_id port 177722 remote_ip 10.8.0.10 177725 username barzegar 177725 mac 177725 bytes_out 0 177725 bytes_in 0 177725 station_ip 5.119.195.192 177725 port 135 177725 unique_id port 177725 remote_ip 10.8.0.10 177728 username barzegar 177728 mac 177728 bytes_out 0 177728 bytes_in 0 177728 station_ip 5.119.195.192 177728 port 134 177728 unique_id port 177728 remote_ip 10.8.0.10 177736 username hashtadani4 177736 mac 177736 bytes_out 0 177736 bytes_in 0 177736 station_ip 37.129.211.182 177736 port 135 177736 unique_id port 177736 remote_ip 10.8.0.22 177738 username barzegar 177738 mac 177738 bytes_out 0 177738 bytes_in 0 177738 station_ip 5.119.195.192 177738 port 125 177738 unique_id port 177738 remote_ip 10.8.0.10 177739 username mirzaei6046 177739 mac 177739 bytes_out 86992 177739 bytes_in 150445 177739 station_ip 5.119.44.190 177739 port 114 177739 unique_id port 177739 remote_ip 10.8.0.246 177740 username kalantary6037 177740 mac 177740 bytes_out 1588066 177740 bytes_in 12785634 177740 station_ip 37.129.210.98 177740 port 133 177740 unique_id port 177740 remote_ip 10.8.0.50 177741 username shadkam 177741 mac 177741 bytes_out 970113 177741 bytes_in 8979569 177741 station_ip 37.129.140.151 177741 port 134 177741 unique_id port 177741 remote_ip 10.8.0.74 177750 username barzegar 177750 mac 177750 bytes_out 0 177750 bytes_in 0 177750 station_ip 5.119.195.192 177750 port 74 177750 unique_id port 177750 remote_ip 10.8.0.10 177752 username mirzaei6046 177752 mac 177752 bytes_out 12505 177752 bytes_in 18515 177752 station_ip 5.120.164.107 177752 port 74 177752 unique_id port 177752 remote_ip 10.8.0.246 177753 username mohammadmahdi 177753 mac 177753 bytes_out 431187 177753 bytes_in 1477459 177753 station_ip 5.119.29.117 177753 port 127 177753 unique_id port 177753 remote_ip 10.8.0.30 177754 username mirzaei6046 177754 mac 177754 bytes_out 1739 177717 bytes_in 1214619 177717 station_ip 31.57.123.219 177717 port 15728669 177717 nas_port_type Virtual 177717 remote_ip 5.5.5.241 177726 username majidsarmast 177726 mac 177726 bytes_out 0 177726 bytes_in 0 177726 station_ip 86.57.48.72 177726 port 134 177726 unique_id port 177730 username aminvpn 177730 mac 177730 bytes_out 167599 177730 bytes_in 72668 177730 station_ip 37.129.213.189 177730 port 132 177730 unique_id port 177730 remote_ip 10.8.0.58 177731 username aminvpn 177731 mac 177731 bytes_out 8852 177731 bytes_in 18300 177731 station_ip 37.129.213.189 177731 port 135 177731 unique_id port 177731 remote_ip 10.8.0.58 177733 username rashidi4690 177733 kill_reason Maximum check online fails reached 177733 mac 177733 bytes_out 4106057 177733 bytes_in 37719840 177733 station_ip 37.129.183.86 177733 port 117 177733 unique_id port 177733 remote_ip 10.8.0.242 177734 username hashtadani4 177734 mac 177734 bytes_out 221228 177734 bytes_in 619542 177734 station_ip 37.129.211.182 177734 port 134 177734 unique_id port 177734 remote_ip 10.8.0.22 177735 username fezealinaghi 177735 mac 177735 bytes_out 533723 177735 bytes_in 4461123 177735 station_ip 37.129.164.86 177735 port 125 177735 unique_id port 177735 remote_ip 10.8.0.202 177737 username pourshad 177737 mac 177737 bytes_out 13489951 177737 bytes_in 5370055 177737 station_ip 5.119.33.96 177737 port 131 177737 unique_id port 177737 remote_ip 10.8.0.42 177743 username hashtadani4 177743 mac 177743 bytes_out 1466390 177743 bytes_in 5886456 177743 station_ip 37.129.211.182 177743 port 114 177743 unique_id port 177743 remote_ip 10.8.0.22 177745 username zahra1101 177745 kill_reason Another user logged on this global unique id 177745 mac 177745 bytes_out 0 177745 bytes_in 0 177745 station_ip 5.120.20.148 177745 port 129 177745 unique_id port 177746 username sedighe 177746 mac 177746 bytes_out 1255577 177746 bytes_in 15254763 177746 station_ip 37.129.138.135 177746 port 131 177746 unique_id port 177746 remote_ip 10.8.0.46 177749 username mirzaei6046 177749 mac 177749 bytes_out 9753 177749 bytes_in 12425 177749 station_ip 5.120.164.107 177749 port 114 177749 unique_id port 177749 remote_ip 10.8.0.246 177751 username hashtadani4 177751 mac 177751 bytes_out 870135 177751 bytes_in 8087612 177751 station_ip 37.129.211.182 177751 port 131 177751 unique_id port 177751 remote_ip 10.8.0.22 177757 username hashtadani4 177757 mac 177757 bytes_out 0 177757 bytes_in 0 177757 station_ip 37.129.211.182 177757 port 127 177757 unique_id port 177757 remote_ip 10.8.0.22 177759 username komeil 177759 mac 177759 bytes_out 3113354 177759 bytes_in 27549932 177759 station_ip 37.129.216.221 177759 port 126 177759 unique_id port 177759 remote_ip 10.8.0.146 177763 username aminvpn 177763 mac 177763 bytes_out 368838 177763 bytes_in 1316852 177763 station_ip 37.129.213.189 177763 port 132 177763 unique_id port 177763 remote_ip 10.8.0.58 177772 username hashtadani4 177772 mac 177772 bytes_out 0 177772 bytes_in 0 177772 station_ip 37.129.211.182 177772 port 114 177772 unique_id port 177772 remote_ip 10.8.0.22 177774 username hashtadani4 177774 mac 177774 bytes_out 0 177774 bytes_in 0 177774 station_ip 37.129.211.182 177774 port 125 177774 unique_id port 177774 remote_ip 10.8.0.22 177780 username motamedi9772 177780 mac 177780 bytes_out 4980 177780 bytes_in 9259 177780 station_ip 37.129.159.198 177780 port 135 177780 unique_id port 177780 remote_ip 10.8.0.154 177784 username mohammadmahdi 177723 unique_id port 177723 remote_ip 10.8.0.142 177724 username pourshad 177724 mac 177724 bytes_out 21505966 177724 bytes_in 2511667 177724 station_ip 5.119.33.96 177724 port 133 177724 unique_id port 177724 remote_ip 10.8.0.42 177727 username barzegar 177727 mac 177727 bytes_out 0 177727 bytes_in 0 177727 station_ip 5.119.195.192 177727 port 135 177727 unique_id port 177727 remote_ip 10.8.0.10 177729 username yaghobi 177729 mac 177729 bytes_out 3012 177729 bytes_in 3739 177729 station_ip 37.129.251.127 177729 port 136 177729 unique_id port 177729 remote_ip 10.8.0.138 177732 username shadkam 177732 mac 177732 bytes_out 47590 177732 bytes_in 470015 177732 station_ip 37.129.140.151 177732 port 132 177732 unique_id port 177732 remote_ip 10.8.0.74 177742 username rezaei 177742 mac 177742 bytes_out 62486 177742 bytes_in 74179 177742 station_ip 5.120.68.177 177742 port 127 177742 unique_id port 177742 remote_ip 10.8.0.198 177744 username aminvpn 177744 unique_id port 177744 terminate_cause Lost-Carrier 177744 bytes_out 660499 177744 bytes_in 12398049 177744 station_ip 5.119.216.211 177744 port 15728670 177744 nas_port_type Virtual 177744 remote_ip 5.5.5.243 177747 username hashtadani4 177747 mac 177747 bytes_out 0 177747 bytes_in 0 177747 station_ip 37.129.211.182 177747 port 131 177747 unique_id port 177747 remote_ip 10.8.0.22 177748 username ebrahimpour3 177748 mac 177748 bytes_out 3800299 177748 bytes_in 34864444 177748 station_ip 37.129.197.175 177748 port 74 177748 unique_id port 177748 remote_ip 10.8.0.250 177755 username hashtadani4 177755 mac 177755 bytes_out 0 177755 bytes_in 0 177755 station_ip 37.129.211.182 177755 port 127 177755 unique_id port 177755 remote_ip 10.8.0.22 177758 username hashtadani4 177758 mac 177758 bytes_out 0 177758 bytes_in 0 177758 station_ip 37.129.211.182 177758 port 127 177758 unique_id port 177758 remote_ip 10.8.0.22 177761 username barzegar 177761 mac 177761 bytes_out 0 177761 bytes_in 0 177761 station_ip 5.119.195.192 177761 port 117 177761 unique_id port 177761 remote_ip 10.8.0.10 177766 username pourshad 177766 mac 177766 bytes_out 20196343 177766 bytes_in 34275318 177766 station_ip 5.119.33.96 177766 port 125 177766 unique_id port 177766 remote_ip 10.8.0.42 177768 username malekpoir 177768 kill_reason Maximum check online fails reached 177768 mac 177768 bytes_out 0 177768 bytes_in 0 177768 station_ip 5.120.28.25 177768 port 132 177768 unique_id port 177770 username komeil 177770 mac 177770 bytes_out 95924 177770 bytes_in 200223 177770 station_ip 37.129.216.221 177770 port 133 177770 unique_id port 177770 remote_ip 10.8.0.146 177773 username barzegar 177773 mac 177773 bytes_out 0 177773 bytes_in 0 177773 station_ip 5.119.195.192 177773 port 125 177773 unique_id port 177773 remote_ip 10.8.0.10 177775 username aminvpn 177775 mac 177775 bytes_out 154307 177775 bytes_in 655882 177775 station_ip 5.120.118.187 177775 port 126 177775 unique_id port 177775 remote_ip 10.8.0.58 177777 username shadkam 177777 mac 177777 bytes_out 0 177777 bytes_in 0 177777 station_ip 37.129.202.73 177777 port 74 177777 unique_id port 177781 username kalantary6037 177781 mac 177781 bytes_out 360046 177781 bytes_in 1864278 177781 station_ip 37.129.157.154 177781 port 133 177781 unique_id port 177781 remote_ip 10.8.0.50 177785 username aminvpn 177785 mac 177785 bytes_out 503566 177785 bytes_in 3201386 177785 station_ip 5.120.118.187 177785 port 130 177785 unique_id port 177754 bytes_in 4015 177754 station_ip 5.120.164.107 177754 port 74 177754 unique_id port 177754 remote_ip 10.8.0.246 177756 username hashtadani4 177756 mac 177756 bytes_out 0 177756 bytes_in 0 177756 station_ip 37.129.211.182 177756 port 127 177756 unique_id port 177756 remote_ip 10.8.0.22 177760 username mohammadmahdi 177760 mac 177760 bytes_out 593907 177760 bytes_in 5282523 177760 station_ip 5.119.29.117 177760 port 117 177760 unique_id port 177760 remote_ip 10.8.0.30 177762 username shadkam 177762 kill_reason Another user logged on this global unique id 177762 mac 177762 bytes_out 0 177762 bytes_in 0 177762 station_ip 37.129.202.73 177762 port 74 177762 unique_id port 177762 remote_ip 10.8.0.74 177764 username kalantary6037 177764 mac 177764 bytes_out 408419 177764 bytes_in 3064085 177764 station_ip 37.129.189.50 177764 port 117 177764 unique_id port 177764 remote_ip 10.8.0.50 177765 username malekpoir 177765 mac 177765 bytes_out 0 177765 bytes_in 0 177765 station_ip 5.120.28.25 177765 port 130 177765 unique_id port 177767 username rezaei 177767 mac 177767 bytes_out 949114 177767 bytes_in 6652337 177767 station_ip 5.120.68.177 177767 port 126 177767 unique_id port 177767 remote_ip 10.8.0.198 177769 username rashidi4690 177769 mac 177769 bytes_out 1483788 177769 bytes_in 15909789 177769 station_ip 37.129.183.86 177769 port 114 177769 unique_id port 177769 remote_ip 10.8.0.242 177771 username hashtadani4 177771 mac 177771 bytes_out 5746831 177771 bytes_in 8461702 177771 station_ip 37.129.211.182 177771 port 127 177771 unique_id port 177771 remote_ip 10.8.0.22 177776 username zahra1101 177776 kill_reason Another user logged on this global unique id 177776 mac 177776 bytes_out 0 177776 bytes_in 0 177776 station_ip 5.120.20.148 177776 port 129 177776 unique_id port 177778 username komeil 177778 mac 177778 bytes_out 50824 177778 bytes_in 86523 177778 station_ip 37.129.216.221 177778 port 114 177778 unique_id port 177778 remote_ip 10.8.0.146 177779 username jafari 177779 mac 177779 bytes_out 1135517 177779 bytes_in 8139639 177779 station_ip 5.62.205.206 177779 port 127 177779 unique_id port 177779 remote_ip 10.8.0.86 177782 username hajghani 177782 mac 177782 bytes_out 1319788 177782 bytes_in 15054751 177782 station_ip 5.62.213.205 177782 port 117 177782 unique_id port 177782 remote_ip 10.8.0.102 177783 username saeeddamghani 177783 mac 177783 bytes_out 85384 177783 bytes_in 573657 177783 station_ip 217.60.218.29 177783 port 127 177783 unique_id port 177783 remote_ip 10.8.0.122 177789 username aminvpn 177789 mac 177789 bytes_out 0 177789 bytes_in 0 177789 station_ip 5.120.118.187 177789 port 114 177789 unique_id port 177789 remote_ip 10.8.0.58 177791 username aminvpn 177791 mac 177791 bytes_out 0 177791 bytes_in 0 177791 station_ip 5.120.118.187 177791 port 114 177791 unique_id port 177791 remote_ip 10.8.0.58 177798 username kalantary6037 177798 mac 177798 bytes_out 70165 177798 bytes_in 251728 177798 station_ip 37.129.157.154 177798 port 130 177798 unique_id port 177798 remote_ip 10.8.0.50 177800 username hashtadani4 177800 mac 177800 bytes_out 2827 177800 bytes_in 4910 177800 station_ip 37.129.211.182 177800 port 131 177800 unique_id port 177800 remote_ip 10.8.0.22 177804 username komeil 177804 mac 177804 bytes_out 0 177804 bytes_in 0 177804 station_ip 37.129.216.221 177804 port 117 177804 unique_id port 177804 remote_ip 10.8.0.146 177806 username barzegar 177806 mac 177806 bytes_out 0 177784 mac 177784 bytes_out 108234 177784 bytes_in 132510 177784 station_ip 5.119.29.117 177784 port 114 177784 unique_id port 177784 remote_ip 10.8.0.30 177786 username barzegar 177786 mac 177786 bytes_out 0 177786 bytes_in 0 177786 station_ip 5.119.195.192 177786 port 127 177786 unique_id port 177786 remote_ip 10.8.0.10 177788 username mirzaei6046 177788 mac 177788 bytes_out 696306 177788 bytes_in 1870380 177788 station_ip 5.120.66.34 177788 port 131 177788 unique_id port 177788 remote_ip 10.8.0.246 177790 username aminvpn 177790 mac 177790 bytes_out 0 177790 bytes_in 0 177790 station_ip 5.120.118.187 177790 port 136 177790 unique_id port 177790 remote_ip 10.8.0.58 177795 username hashtadani4 177795 mac 177795 bytes_out 1502167 177795 bytes_in 15481061 177795 station_ip 37.129.211.182 177795 port 126 177795 unique_id port 177795 remote_ip 10.8.0.22 177797 username rashidi4690 177797 kill_reason Another user logged on this global unique id 177797 mac 177797 bytes_out 0 177797 bytes_in 0 177797 station_ip 37.129.183.86 177797 port 125 177797 unique_id port 177797 remote_ip 10.8.0.242 177802 username komeil 177802 mac 177802 bytes_out 59504 177802 bytes_in 123898 177802 station_ip 37.129.216.221 177802 port 117 177802 unique_id port 177802 remote_ip 10.8.0.146 177803 username fezealinaghi 177803 mac 177803 bytes_out 254839 177803 bytes_in 837524 177803 station_ip 37.129.170.58 177803 port 130 177803 unique_id port 177803 remote_ip 10.8.0.202 177809 username komeil 177809 mac 177809 bytes_out 42010 177809 bytes_in 105341 177809 station_ip 37.129.216.221 177809 port 117 177809 unique_id port 177809 remote_ip 10.8.0.146 177810 username yaghobi 177810 mac 177810 bytes_out 515536 177810 bytes_in 2092440 177810 station_ip 37.129.228.179 177810 port 131 177810 unique_id port 177810 remote_ip 10.8.0.138 177815 username mostafa_es78 177815 mac 177815 bytes_out 3170499 177815 bytes_in 27529206 177815 station_ip 113.203.106.19 177815 port 74 177815 unique_id port 177815 remote_ip 10.8.0.34 177816 username komeil 177816 mac 177816 bytes_out 0 177816 bytes_in 0 177816 station_ip 37.129.216.221 177816 port 74 177816 unique_id port 177816 remote_ip 10.8.0.146 177820 username barzegar 177820 mac 177820 bytes_out 0 177820 bytes_in 0 177820 station_ip 5.119.195.192 177820 port 88 177820 unique_id port 177820 remote_ip 10.8.0.10 177822 username komeil 177822 mac 177822 bytes_out 23858 177822 bytes_in 37607 177822 station_ip 37.129.216.221 177822 port 131 177822 unique_id port 177822 remote_ip 10.8.0.146 177823 username aminvpn 177823 unique_id port 177823 terminate_cause Lost-Carrier 177823 bytes_out 13264637 177823 bytes_in 443378749 177823 station_ip 31.57.123.219 177823 port 15728675 177823 nas_port_type Virtual 177823 remote_ip 5.5.5.241 177828 username rashidi4690 177828 kill_reason Another user logged on this global unique id 177828 mac 177828 bytes_out 0 177828 bytes_in 0 177828 station_ip 37.129.183.86 177828 port 125 177828 unique_id port 177829 username komeil 177829 mac 177829 bytes_out 0 177829 bytes_in 0 177829 station_ip 37.129.216.221 177829 port 117 177829 unique_id port 177829 remote_ip 10.8.0.146 177831 username komeil 177831 mac 177831 bytes_out 0 177831 bytes_in 0 177831 station_ip 37.129.216.221 177831 port 117 177831 unique_id port 177831 remote_ip 10.8.0.146 177833 username komeil 177833 mac 177833 bytes_out 0 177833 bytes_in 0 177833 station_ip 37.129.216.221 177833 port 117 177833 unique_id port 177785 remote_ip 10.8.0.58 177787 username saeeddamghani 177787 mac 177787 bytes_out 0 177787 bytes_in 0 177787 station_ip 5.120.143.23 177787 port 136 177787 unique_id port 177787 remote_ip 10.8.0.122 177792 username kalantary6037 177792 mac 177792 bytes_out 155651 177792 bytes_in 197179 177792 station_ip 37.129.157.154 177792 port 135 177792 unique_id port 177792 remote_ip 10.8.0.50 177793 username saeeddamghani 177793 mac 177793 bytes_out 1710 177793 bytes_in 3739 177793 station_ip 217.60.218.29 177793 port 127 177793 unique_id port 177793 remote_ip 10.8.0.122 177794 username mirzaei6046 177794 mac 177794 bytes_out 6596 177794 bytes_in 13519 177794 station_ip 5.120.66.34 177794 port 130 177794 unique_id port 177794 remote_ip 10.8.0.246 177796 username ahmadi1 177796 mac 177796 bytes_out 0 177796 bytes_in 0 177796 station_ip 83.122.163.104 177796 port 126 177796 unique_id port 177796 remote_ip 10.8.0.94 177799 username milan 177799 kill_reason Another user logged on this global unique id 177799 mac 177799 bytes_out 0 177799 bytes_in 0 177799 station_ip 5.119.68.145 177799 port 110 177799 unique_id port 177801 username yaghobi 177801 mac 177801 bytes_out 550986 177801 bytes_in 2102924 177801 station_ip 37.129.228.179 177801 port 134 177801 unique_id port 177801 remote_ip 10.8.0.138 177805 username komeil 177805 mac 177805 bytes_out 2391 177805 bytes_in 4179 177805 station_ip 37.129.216.221 177805 port 117 177805 unique_id port 177805 remote_ip 10.8.0.146 177808 username saeeddamghani 177808 kill_reason Another user logged on this global unique id 177808 mac 177808 bytes_out 0 177808 bytes_in 0 177808 station_ip 217.60.218.29 177808 port 127 177808 unique_id port 177808 remote_ip 10.8.0.122 177811 username rashidi4690 177811 kill_reason Another user logged on this global unique id 177811 mac 177811 bytes_out 0 177811 bytes_in 0 177811 station_ip 37.129.183.86 177811 port 125 177811 unique_id port 177814 username komeil 177814 mac 177814 bytes_out 0 177814 bytes_in 0 177814 station_ip 37.129.216.221 177814 port 131 177814 unique_id port 177814 remote_ip 10.8.0.146 177819 username mirzaei6046 177819 mac 177819 bytes_out 12698 177819 bytes_in 22235 177819 station_ip 5.119.113.32 177819 port 131 177819 unique_id port 177819 remote_ip 10.8.0.246 177826 username komeil 177826 mac 177826 bytes_out 0 177826 bytes_in 0 177826 station_ip 37.129.216.221 177826 port 138 177826 unique_id port 177826 remote_ip 10.8.0.146 177834 username motamedi9772 177834 mac 177834 bytes_out 7949768 177834 bytes_in 740706 177834 station_ip 37.129.159.198 177834 port 131 177834 unique_id port 177834 remote_ip 10.8.0.154 177836 username milan 177836 kill_reason Another user logged on this global unique id 177836 mac 177836 bytes_out 0 177836 bytes_in 0 177836 station_ip 5.119.68.145 177836 port 110 177836 unique_id port 177838 username komeil 177838 mac 177838 bytes_out 0 177838 bytes_in 0 177838 station_ip 37.129.216.221 177838 port 117 177838 unique_id port 177838 remote_ip 10.8.0.146 177846 username rashidi4690 177846 kill_reason Another user logged on this global unique id 177846 mac 177846 bytes_out 0 177846 bytes_in 0 177846 station_ip 37.129.183.86 177846 port 125 177846 unique_id port 177850 username yaghobi 177850 mac 177850 bytes_out 506246 177850 bytes_in 772494 177850 station_ip 37.129.228.179 177850 port 139 177850 unique_id port 177850 remote_ip 10.8.0.138 177851 username komeil 177851 mac 177851 bytes_out 0 177851 bytes_in 0 177806 bytes_in 0 177806 station_ip 5.119.195.192 177806 port 130 177806 unique_id port 177806 remote_ip 10.8.0.10 177807 username hajghani 177807 mac 177807 bytes_out 210439 177807 bytes_in 1015591 177807 station_ip 5.200.127.29 177807 port 133 177807 unique_id port 177807 remote_ip 10.8.0.102 177812 username komeil 177812 mac 177812 bytes_out 1870 177812 bytes_in 3761 177812 station_ip 37.129.216.221 177812 port 133 177812 unique_id port 177812 remote_ip 10.8.0.146 177813 username komeil 177813 mac 177813 bytes_out 0 177813 bytes_in 0 177813 station_ip 37.129.216.221 177813 port 131 177813 unique_id port 177813 remote_ip 10.8.0.146 177817 username zahra1101 177817 kill_reason Another user logged on this global unique id 177817 mac 177817 bytes_out 0 177817 bytes_in 0 177817 station_ip 5.120.20.148 177817 port 129 177817 unique_id port 177818 username hosseine 177818 mac 177818 bytes_out 0 177818 bytes_in 0 177818 station_ip 37.129.206.49 177818 port 88 177818 unique_id port 177821 username mirzaei6046 177821 mac 177821 bytes_out 0 177821 bytes_in 0 177821 station_ip 5.119.113.32 177821 port 88 177821 unique_id port 177821 remote_ip 10.8.0.246 177824 username mirzaei6046 177824 mac 177824 bytes_out 2026 177824 bytes_in 4408 177824 station_ip 5.119.113.32 177824 port 134 177824 unique_id port 177824 remote_ip 10.8.0.246 177825 username yaghobi 177825 mac 177825 bytes_out 364888 177825 bytes_in 1364159 177825 station_ip 37.129.228.179 177825 port 117 177825 unique_id port 177825 remote_ip 10.8.0.138 177827 username saeeddamghani 177827 kill_reason Another user logged on this global unique id 177827 mac 177827 bytes_out 0 177827 bytes_in 0 177827 station_ip 217.60.218.29 177827 port 127 177827 unique_id port 177830 username mirzaei6046 177830 mac 177830 bytes_out 10152 177830 bytes_in 13194 177830 station_ip 5.120.157.152 177830 port 135 177830 unique_id port 177830 remote_ip 10.8.0.246 177832 username kalantary6037 177832 mac 177832 bytes_out 58782 177832 bytes_in 316589 177832 station_ip 37.129.230.102 177832 port 136 177832 unique_id port 177832 remote_ip 10.8.0.50 177837 username komeil 177837 mac 177837 bytes_out 0 177837 bytes_in 0 177837 station_ip 37.129.216.221 177837 port 117 177837 unique_id port 177837 remote_ip 10.8.0.146 177839 username mehdizare 177839 mac 177839 bytes_out 376189 177839 bytes_in 1150143 177839 station_ip 83.122.83.181 177839 port 112 177839 unique_id port 177839 remote_ip 10.8.0.210 177841 username komeil 177841 mac 177841 bytes_out 2236 177841 bytes_in 4375 177841 station_ip 37.129.216.221 177841 port 112 177841 unique_id port 177841 remote_ip 10.8.0.146 177845 username barzegar 177845 mac 177845 bytes_out 0 177845 bytes_in 0 177845 station_ip 5.119.195.192 177845 port 112 177845 unique_id port 177845 remote_ip 10.8.0.10 177848 username khademi 177848 kill_reason Another user logged on this global unique id 177848 mac 177848 bytes_out 0 177848 bytes_in 0 177848 station_ip 37.129.154.227 177848 port 107 177848 unique_id port 177849 username komeil 177849 mac 177849 bytes_out 0 177849 bytes_in 0 177849 station_ip 37.129.216.221 177849 port 112 177849 unique_id port 177849 remote_ip 10.8.0.146 177853 username komeil 177853 mac 177853 bytes_out 2428 177853 bytes_in 4468 177853 station_ip 37.129.216.221 177853 port 135 177853 unique_id port 177853 remote_ip 10.8.0.146 177854 username komeil 177854 mac 177854 bytes_out 0 177854 bytes_in 0 177833 remote_ip 10.8.0.146 177835 username kordestani 177835 mac 177835 bytes_out 1738746 177835 bytes_in 18312717 177835 station_ip 151.235.121.120 177835 port 126 177835 unique_id port 177835 remote_ip 10.8.0.130 177840 username nilufarrajaei 177840 mac 177840 bytes_out 381547 177840 bytes_in 1728562 177840 station_ip 37.129.190.252 177840 port 88 177840 unique_id port 177840 remote_ip 10.8.0.194 177842 username komeil 177842 mac 177842 bytes_out 0 177842 bytes_in 0 177842 station_ip 37.129.216.221 177842 port 88 177842 unique_id port 177842 remote_ip 10.8.0.146 177843 username komeil 177843 mac 177843 bytes_out 0 177843 bytes_in 0 177843 station_ip 37.129.216.221 177843 port 88 177843 unique_id port 177843 remote_ip 10.8.0.146 177844 username komeil 177844 mac 177844 bytes_out 0 177844 bytes_in 0 177844 station_ip 37.129.216.221 177844 port 88 177844 unique_id port 177844 remote_ip 10.8.0.146 177847 username komeil 177847 mac 177847 bytes_out 0 177847 bytes_in 0 177847 station_ip 37.129.216.221 177847 port 88 177847 unique_id port 177847 remote_ip 10.8.0.146 177852 username komeil 177852 kill_reason Maximum check online fails reached 177852 mac 177852 bytes_out 0 177852 bytes_in 0 177852 station_ip 37.129.216.221 177852 port 112 177852 unique_id port 177859 username alikomsari 177859 mac 177859 bytes_out 336762 177859 bytes_in 742383 177859 station_ip 5.120.43.93 177859 port 136 177859 unique_id port 177859 remote_ip 10.8.0.214 177860 username komeil 177860 mac 177860 bytes_out 0 177860 bytes_in 0 177860 station_ip 37.129.216.221 177860 port 135 177860 unique_id port 177860 remote_ip 10.8.0.146 177868 username aminvpn 177868 mac 177868 bytes_out 0 177868 bytes_in 0 177868 station_ip 37.129.213.189 177868 port 131 177868 unique_id port 177868 remote_ip 10.8.0.58 177871 username aminvpn 177871 mac 177871 bytes_out 0 177871 bytes_in 0 177871 station_ip 5.120.118.187 177871 port 114 177871 unique_id port 177871 remote_ip 10.8.0.58 177873 username shadkam 177873 mac 177873 bytes_out 966611 177873 bytes_in 6747947 177873 station_ip 37.129.215.220 177873 port 133 177873 unique_id port 177873 remote_ip 10.8.0.74 177878 username komeil 177878 mac 177878 bytes_out 0 177878 bytes_in 0 177878 station_ip 37.129.216.221 177878 port 114 177878 unique_id port 177878 remote_ip 10.8.0.146 177881 username malekpoir 177881 mac 177881 bytes_out 1255254 177881 bytes_in 8770903 177881 station_ip 5.120.28.25 177881 port 126 177881 unique_id port 177881 remote_ip 10.8.0.18 177885 username houshang 177885 mac 177885 bytes_out 1126796 177885 bytes_in 389808 177885 station_ip 5.119.216.181 177885 port 110 177885 unique_id port 177885 remote_ip 10.8.0.82 177888 username alikomsari 177888 mac 177888 bytes_out 1205637 177888 bytes_in 5660740 177888 station_ip 5.120.43.93 177888 port 136 177888 unique_id port 177888 remote_ip 10.8.0.214 177891 username mohammadmahdi 177891 mac 177891 bytes_out 1431540 177891 bytes_in 4823827 177891 station_ip 5.119.29.117 177891 port 137 177891 unique_id port 177891 remote_ip 10.8.0.30 177892 username komeil 177892 mac 177892 bytes_out 0 177892 bytes_in 0 177892 station_ip 37.129.216.221 177892 port 126 177892 unique_id port 177892 remote_ip 10.8.0.146 177897 username komeil 177897 mac 177897 bytes_out 17887 177897 bytes_in 41509 177897 station_ip 37.129.216.221 177897 port 126 177897 unique_id port 177897 remote_ip 10.8.0.146 177902 username komeil 177851 station_ip 37.129.216.221 177851 port 135 177851 unique_id port 177851 remote_ip 10.8.0.146 177855 username komeil 177855 mac 177855 bytes_out 0 177855 bytes_in 0 177855 station_ip 37.129.216.221 177855 port 135 177855 unique_id port 177855 remote_ip 10.8.0.146 177856 username komeil 177856 mac 177856 bytes_out 0 177856 bytes_in 0 177856 station_ip 37.129.216.221 177856 port 135 177856 unique_id port 177856 remote_ip 10.8.0.146 177857 username komeil 177857 mac 177857 bytes_out 0 177857 bytes_in 0 177857 station_ip 37.129.216.221 177857 port 135 177857 unique_id port 177857 remote_ip 10.8.0.146 177858 username barzegar 177858 mac 177858 bytes_out 2078 177858 bytes_in 4477 177858 station_ip 5.119.195.192 177858 port 138 177858 unique_id port 177858 remote_ip 10.8.0.10 177863 username aminvpn 177863 mac 177863 bytes_out 528085 177863 bytes_in 7121877 177863 station_ip 5.120.118.187 177863 port 114 177863 unique_id port 177863 remote_ip 10.8.0.58 177865 username saeeddamghani 177865 kill_reason Another user logged on this global unique id 177865 mac 177865 bytes_out 0 177865 bytes_in 0 177865 station_ip 217.60.218.29 177865 port 127 177865 unique_id port 177866 username aminvpn 177866 mac 177866 bytes_out 0 177866 bytes_in 0 177866 station_ip 5.120.118.187 177866 port 114 177866 unique_id port 177866 remote_ip 10.8.0.58 177869 username aminvpn 177869 mac 177869 bytes_out 0 177869 bytes_in 0 177869 station_ip 5.120.118.187 177869 port 114 177869 unique_id port 177869 remote_ip 10.8.0.58 177870 username aminvpn 177870 mac 177870 bytes_out 0 177870 bytes_in 0 177870 station_ip 37.129.213.189 177870 port 131 177870 unique_id port 177870 remote_ip 10.8.0.58 177872 username komeil 177872 mac 177872 bytes_out 0 177872 bytes_in 0 177872 station_ip 37.129.216.221 177872 port 135 177872 unique_id port 177872 remote_ip 10.8.0.146 177874 username aminvpn 177874 mac 177874 bytes_out 0 177874 bytes_in 0 177874 station_ip 37.129.213.189 177874 port 139 177874 unique_id port 177874 remote_ip 10.8.0.58 177875 username aminvpn 177875 mac 177875 bytes_out 0 177875 bytes_in 0 177875 station_ip 5.120.118.187 177875 port 114 177875 unique_id port 177875 remote_ip 10.8.0.58 177876 username komeil 177876 mac 177876 bytes_out 0 177876 bytes_in 0 177876 station_ip 37.129.216.221 177876 port 133 177876 unique_id port 177876 remote_ip 10.8.0.146 177877 username aminvpn 177877 mac 177877 bytes_out 0 177877 bytes_in 0 177877 station_ip 37.129.213.189 177877 port 135 177877 unique_id port 177877 remote_ip 10.8.0.58 177880 username komeil 177880 mac 177880 bytes_out 0 177880 bytes_in 0 177880 station_ip 37.129.216.221 177880 port 114 177880 unique_id port 177880 remote_ip 10.8.0.146 177882 username aminvpn 177882 mac 177882 bytes_out 0 177882 bytes_in 0 177882 station_ip 37.129.213.189 177882 port 135 177882 unique_id port 177882 remote_ip 10.8.0.58 177884 username barzegar 177884 mac 177884 bytes_out 0 177884 bytes_in 0 177884 station_ip 5.119.195.192 177884 port 133 177884 unique_id port 177884 remote_ip 10.8.0.10 177887 username komeil 177887 mac 177887 bytes_out 8538 177887 bytes_in 16201 177887 station_ip 37.129.216.221 177887 port 126 177887 unique_id port 177887 remote_ip 10.8.0.146 177889 username khademi 177889 kill_reason Another user logged on this global unique id 177889 mac 177889 bytes_out 0 177889 bytes_in 0 177889 station_ip 37.129.154.227 177854 station_ip 37.129.216.221 177854 port 135 177854 unique_id port 177854 remote_ip 10.8.0.146 177861 username yaghobi 177861 kill_reason Maximum check online fails reached 177861 mac 177861 bytes_out 138188 177861 bytes_in 178913 177861 station_ip 37.129.228.179 177861 port 131 177861 unique_id port 177861 remote_ip 10.8.0.138 177862 username milan 177862 mac 177862 bytes_out 0 177862 bytes_in 0 177862 station_ip 5.119.68.145 177862 port 110 177862 unique_id port 177864 username aminvpn 177864 mac 177864 bytes_out 0 177864 bytes_in 0 177864 station_ip 37.129.213.189 177864 port 110 177864 unique_id port 177864 remote_ip 10.8.0.58 177867 username komeil 177867 mac 177867 bytes_out 43453 177867 bytes_in 79620 177867 station_ip 37.129.216.221 177867 port 135 177867 unique_id port 177867 remote_ip 10.8.0.146 177879 username aminvpn 177879 mac 177879 bytes_out 0 177879 bytes_in 0 177879 station_ip 5.120.118.187 177879 port 133 177879 unique_id port 177879 remote_ip 10.8.0.58 177883 username kalantary6037 177883 kill_reason Another user logged on this global unique id 177883 mac 177883 bytes_out 0 177883 bytes_in 0 177883 station_ip 37.129.230.102 177883 port 88 177883 unique_id port 177883 remote_ip 10.8.0.50 177886 username yaghobi 177886 mac 177886 bytes_out 379003 177886 bytes_in 1192609 177886 station_ip 37.129.228.179 177886 port 138 177886 unique_id port 177886 remote_ip 10.8.0.138 177890 username mirzaei6046 177890 kill_reason Maximum check online fails reached 177890 mac 177890 bytes_out 0 177890 bytes_in 0 177890 station_ip 5.119.103.136 177890 port 110 177890 unique_id port 177896 username kalantary6037 177896 mac 177896 bytes_out 0 177896 bytes_in 0 177896 station_ip 37.129.230.102 177896 port 88 177896 unique_id port 177898 username rashidi4690 177898 kill_reason Another user logged on this global unique id 177898 mac 177898 bytes_out 0 177898 bytes_in 0 177898 station_ip 37.129.183.86 177898 port 125 177898 unique_id port 177905 username shadkam 177905 mac 177905 bytes_out 1009538 177905 bytes_in 9623778 177905 station_ip 37.129.249.176 177905 port 133 177905 unique_id port 177905 remote_ip 10.8.0.74 177912 username komeil 177912 mac 177912 bytes_out 14415 177912 bytes_in 18459 177912 station_ip 37.129.216.221 177912 port 126 177912 unique_id port 177912 remote_ip 10.8.0.146 177913 username komeil 177913 mac 177913 bytes_out 0 177913 bytes_in 0 177913 station_ip 37.129.216.221 177913 port 130 177913 unique_id port 177913 remote_ip 10.8.0.146 177916 username barzegar 177916 mac 177916 bytes_out 0 177916 bytes_in 0 177916 station_ip 5.119.195.192 177916 port 131 177916 unique_id port 177916 remote_ip 10.8.0.10 177918 username komeil 177918 mac 177918 bytes_out 16755 177918 bytes_in 33986 177918 station_ip 37.129.216.221 177918 port 130 177918 unique_id port 177918 remote_ip 10.8.0.146 177919 username mohammadmahdi 177919 mac 177919 bytes_out 113036 177919 bytes_in 147267 177919 station_ip 5.119.29.117 177919 port 126 177919 unique_id port 177919 remote_ip 10.8.0.30 177920 username hosseine 177920 mac 177920 bytes_out 5110545 177920 bytes_in 36543099 177920 station_ip 37.129.206.49 177920 port 74 177920 unique_id port 177920 remote_ip 10.8.0.54 177923 username komeil 177923 mac 177923 bytes_out 0 177923 bytes_in 0 177923 station_ip 37.129.216.221 177923 port 124 177923 unique_id port 177923 remote_ip 10.8.0.146 177924 username komeil 177924 mac 177924 bytes_out 0 177924 bytes_in 0 177889 port 107 177889 unique_id port 177893 username komeil 177893 mac 177893 bytes_out 0 177893 bytes_in 0 177893 station_ip 37.129.216.221 177893 port 126 177893 unique_id port 177893 remote_ip 10.8.0.146 177894 username motamedi9772 177894 mac 177894 bytes_out 950204 177894 bytes_in 8858788 177894 station_ip 37.129.159.198 177894 port 131 177894 unique_id port 177894 remote_ip 10.8.0.154 177895 username saeeddamghani 177895 kill_reason Another user logged on this global unique id 177895 mac 177895 bytes_out 0 177895 bytes_in 0 177895 station_ip 217.60.218.29 177895 port 127 177895 unique_id port 177899 username komeil 177899 mac 177899 bytes_out 0 177899 bytes_in 0 177899 station_ip 37.129.216.221 177899 port 88 177899 unique_id port 177899 remote_ip 10.8.0.146 177900 username komeil 177900 mac 177900 bytes_out 0 177900 bytes_in 0 177900 station_ip 37.129.216.221 177900 port 126 177900 unique_id port 177900 remote_ip 10.8.0.146 177901 username komeil 177901 mac 177901 bytes_out 0 177901 bytes_in 0 177901 station_ip 37.129.216.221 177901 port 126 177901 unique_id port 177901 remote_ip 10.8.0.146 177904 username mostafa_es78 177904 kill_reason Another user logged on this global unique id 177904 mac 177904 bytes_out 0 177904 bytes_in 0 177904 station_ip 113.203.106.19 177904 port 134 177904 unique_id port 177904 remote_ip 10.8.0.34 177907 username komeil 177907 mac 177907 bytes_out 0 177907 bytes_in 0 177907 station_ip 37.129.216.221 177907 port 126 177907 unique_id port 177907 remote_ip 10.8.0.146 177910 username hajghani 177910 mac 177910 bytes_out 206978 177910 bytes_in 424214 177910 station_ip 5.200.127.29 177910 port 130 177910 unique_id port 177910 remote_ip 10.8.0.102 177914 username mahdiyehalizadeh 177914 mac 177914 bytes_out 840623 177914 bytes_in 8259559 177914 station_ip 5.119.90.35 177914 port 131 177914 unique_id port 177914 remote_ip 10.8.0.114 177921 username hosseine 177921 mac 177921 bytes_out 0 177921 bytes_in 0 177921 station_ip 37.129.193.83 177921 port 130 177921 unique_id port 177921 remote_ip 10.8.0.54 177925 username godarzi 177925 mac 177925 bytes_out 0 177925 bytes_in 0 177925 station_ip 5.202.26.240 177925 port 74 177925 unique_id port 177925 remote_ip 10.8.0.38 177935 username hajghani 177935 mac 177935 bytes_out 36268 177935 bytes_in 48331 177935 station_ip 5.200.127.29 177935 port 133 177935 unique_id port 177935 remote_ip 10.8.0.102 177937 username kalantary6037 177937 mac 177937 bytes_out 474255 177937 bytes_in 3940001 177937 station_ip 37.129.239.122 177937 port 126 177937 unique_id port 177937 remote_ip 10.8.0.50 177940 username soleymani5056 177940 mac 177940 bytes_out 33831 177940 bytes_in 41489 177940 station_ip 5.120.18.150 177940 port 124 177940 unique_id port 177940 remote_ip 10.8.0.226 177943 username alikomsari 177943 kill_reason Another user logged on this global unique id 177943 mac 177943 bytes_out 0 177943 bytes_in 0 177943 station_ip 5.120.43.93 177943 port 135 177943 unique_id port 177943 remote_ip 10.8.0.214 177944 username soleymani5056 177944 mac 177944 bytes_out 166770 177944 bytes_in 1086356 177944 station_ip 5.120.18.150 177944 port 124 177944 unique_id port 177944 remote_ip 10.8.0.226 177946 username komeil 177946 mac 177946 bytes_out 52862 177946 bytes_in 90603 177946 station_ip 37.129.216.221 177946 port 74 177946 unique_id port 177946 remote_ip 10.8.0.146 177949 username rashidi4690 177949 kill_reason Another user logged on this global unique id 177949 mac 177902 mac 177902 bytes_out 0 177902 bytes_in 0 177902 station_ip 37.129.216.221 177902 port 126 177902 unique_id port 177902 remote_ip 10.8.0.146 177903 username barzegar 177903 mac 177903 bytes_out 0 177903 bytes_in 0 177903 station_ip 5.119.195.192 177903 port 136 177903 unique_id port 177903 remote_ip 10.8.0.10 177906 username komeil 177906 mac 177906 bytes_out 13424 177906 bytes_in 28559 177906 station_ip 37.129.216.221 177906 port 126 177906 unique_id port 177906 remote_ip 10.8.0.146 177908 username shadkam 177908 mac 177908 bytes_out 2244 177908 bytes_in 4516 177908 station_ip 37.129.249.176 177908 port 133 177908 unique_id port 177908 remote_ip 10.8.0.74 177909 username komeil 177909 mac 177909 bytes_out 0 177909 bytes_in 0 177909 station_ip 37.129.216.221 177909 port 126 177909 unique_id port 177909 remote_ip 10.8.0.146 177911 username saeeddamghani 177911 kill_reason Another user logged on this global unique id 177911 mac 177911 bytes_out 0 177911 bytes_in 0 177911 station_ip 217.60.218.29 177911 port 127 177911 unique_id port 177915 username rashidi4690 177915 kill_reason Another user logged on this global unique id 177915 mac 177915 bytes_out 0 177915 bytes_in 0 177915 station_ip 37.129.183.86 177915 port 125 177915 unique_id port 177917 username ayobi 177917 mac 177917 bytes_out 0 177917 bytes_in 0 177917 station_ip 37.27.15.128 177917 port 124 177917 unique_id port 177922 username komeil 177922 mac 177922 bytes_out 15876 177922 bytes_in 35011 177922 station_ip 37.129.216.221 177922 port 124 177922 unique_id port 177922 remote_ip 10.8.0.146 177926 username motamedi9772 177926 mac 177926 bytes_out 0 177926 bytes_in 0 177926 station_ip 37.129.159.198 177926 port 130 177926 unique_id port 177926 remote_ip 10.8.0.154 177927 username kalantary6037 177927 mac 177927 bytes_out 111248 177927 bytes_in 1107138 177927 station_ip 37.129.174.42 177927 port 126 177927 unique_id port 177927 remote_ip 10.8.0.50 177929 username komeil 177929 mac 177929 bytes_out 12203 177929 bytes_in 33540 177929 station_ip 37.129.216.221 177929 port 74 177929 unique_id port 177929 remote_ip 10.8.0.146 177932 username rashidi4690 177932 kill_reason Another user logged on this global unique id 177932 mac 177932 bytes_out 0 177932 bytes_in 0 177932 station_ip 37.129.183.86 177932 port 125 177932 unique_id port 177933 username komeil 177933 mac 177933 bytes_out 0 177933 bytes_in 0 177933 station_ip 37.129.216.221 177933 port 74 177933 unique_id port 177933 remote_ip 10.8.0.146 177934 username komeil 177934 mac 177934 bytes_out 0 177934 bytes_in 0 177934 station_ip 37.129.216.221 177934 port 74 177934 unique_id port 177934 remote_ip 10.8.0.146 177936 username soleymani5056 177936 mac 177936 bytes_out 266063 177936 bytes_in 993020 177936 station_ip 5.119.180.15 177936 port 124 177936 unique_id port 177936 remote_ip 10.8.0.226 177941 username saeeddamghani 177941 kill_reason Another user logged on this global unique id 177941 mac 177941 bytes_out 0 177941 bytes_in 0 177941 station_ip 217.60.218.29 177941 port 127 177941 unique_id port 177942 username barzegar 177942 mac 177942 bytes_out 0 177942 bytes_in 0 177942 station_ip 5.119.195.192 177942 port 133 177942 unique_id port 177942 remote_ip 10.8.0.10 177948 username komeil 177948 mac 177948 bytes_out 0 177948 bytes_in 0 177948 station_ip 37.129.216.221 177948 port 74 177948 unique_id port 177948 remote_ip 10.8.0.146 177950 username ebrahimpour3 177950 mac 177924 station_ip 37.129.216.221 177924 port 124 177924 unique_id port 177924 remote_ip 10.8.0.146 177928 username saeeddamghani 177928 kill_reason Another user logged on this global unique id 177928 mac 177928 bytes_out 0 177928 bytes_in 0 177928 station_ip 217.60.218.29 177928 port 127 177928 unique_id port 177930 username barzegar 177930 mac 177930 bytes_out 0 177930 bytes_in 0 177930 station_ip 5.119.195.192 177930 port 126 177930 unique_id port 177930 remote_ip 10.8.0.10 177931 username komeil 177931 mac 177931 bytes_out 5227 177931 bytes_in 12564 177931 station_ip 37.129.216.221 177931 port 74 177931 unique_id port 177931 remote_ip 10.8.0.146 177938 username soleymani5056 177938 mac 177938 bytes_out 75955 177938 bytes_in 248151 177938 station_ip 5.119.44.229 177938 port 133 177938 unique_id port 177938 remote_ip 10.8.0.226 177939 username barzegar 177939 mac 177939 bytes_out 0 177939 bytes_in 0 177939 station_ip 5.119.195.192 177939 port 133 177939 unique_id port 177939 remote_ip 10.8.0.10 177945 username alirezazadeh 177945 unique_id port 177945 terminate_cause Lost-Carrier 177945 bytes_out 120952134 177945 bytes_in 1280363362 177945 station_ip 5.120.30.99 177945 port 15728666 177945 nas_port_type Virtual 177945 remote_ip 5.5.5.244 177947 username mostafa_es78 177947 kill_reason Another user logged on this global unique id 177947 mac 177947 bytes_out 0 177947 bytes_in 0 177947 station_ip 113.203.106.19 177947 port 134 177947 unique_id port 177952 username komeil 177952 mac 177952 bytes_out 0 177952 bytes_in 0 177952 station_ip 37.129.216.221 177952 port 74 177952 unique_id port 177952 remote_ip 10.8.0.146 177954 username soleymani5056 177954 mac 177954 bytes_out 69115 177954 bytes_in 128933 177954 station_ip 5.119.24.33 177954 port 133 177954 unique_id port 177954 remote_ip 10.8.0.226 177961 username barzegar 177961 mac 177961 bytes_out 0 177961 bytes_in 0 177961 station_ip 5.119.195.192 177961 port 124 177961 unique_id port 177961 remote_ip 10.8.0.10 177964 username rezaei 177964 mac 177964 bytes_out 677396 177964 bytes_in 6256852 177964 station_ip 5.120.68.177 177964 port 124 177964 unique_id port 177964 remote_ip 10.8.0.198 177966 username barzegar 177966 mac 177966 bytes_out 0 177966 bytes_in 0 177966 station_ip 5.119.195.192 177966 port 124 177966 unique_id port 177966 remote_ip 10.8.0.10 177968 username barzegar 177968 mac 177968 bytes_out 0 177968 bytes_in 0 177968 station_ip 5.119.195.192 177968 port 126 177968 unique_id port 177968 remote_ip 10.8.0.10 177969 username rasoul56 177969 kill_reason Relative expiration date has reached 177969 mac 177969 bytes_out 0 177969 bytes_in 0 177969 station_ip 37.129.235.241 177969 port 126 177969 unique_id port 177970 username mahdiyehalizadeh 177970 mac 177970 bytes_out 749560 177970 bytes_in 9591739 177970 station_ip 5.119.219.241 177970 port 125 177970 unique_id port 177970 remote_ip 10.8.0.114 177979 username kordestani 177979 mac 177979 bytes_out 0 177979 bytes_in 0 177979 station_ip 151.235.121.120 177979 port 124 177979 unique_id port 177981 username barzegar 177981 mac 177981 bytes_out 0 177981 bytes_in 0 177981 station_ip 5.119.195.192 177981 port 125 177981 unique_id port 177981 remote_ip 10.8.0.10 177987 username mohammadjavad 177987 mac 177987 bytes_out 0 177987 bytes_in 0 177987 station_ip 37.129.203.8 177987 port 74 177987 unique_id port 177987 remote_ip 10.8.0.110 177996 username mohammadjavad 177996 mac 177996 bytes_out 660497 177996 bytes_in 10620164 177949 bytes_out 0 177949 bytes_in 0 177949 station_ip 37.129.183.86 177949 port 125 177949 unique_id port 177951 username komeil 177951 mac 177951 bytes_out 9701 177951 bytes_in 20047 177951 station_ip 37.129.216.221 177951 port 74 177951 unique_id port 177951 remote_ip 10.8.0.146 177953 username komeil 177953 mac 177953 bytes_out 0 177953 bytes_in 0 177953 station_ip 37.129.216.221 177953 port 74 177953 unique_id port 177953 remote_ip 10.8.0.146 177955 username komeil 177955 mac 177955 bytes_out 0 177955 bytes_in 0 177955 station_ip 37.129.216.221 177955 port 74 177955 unique_id port 177955 remote_ip 10.8.0.146 177958 username barzegar 177958 mac 177958 bytes_out 0 177958 bytes_in 0 177958 station_ip 5.119.195.192 177958 port 124 177958 unique_id port 177958 remote_ip 10.8.0.10 177960 username rashidi4690 177960 mac 177960 bytes_out 0 177960 bytes_in 0 177960 station_ip 37.129.183.86 177960 port 125 177960 unique_id port 177965 username komeil 177965 kill_reason Another user logged on this global unique id 177965 mac 177965 bytes_out 0 177965 bytes_in 0 177965 station_ip 37.129.216.221 177965 port 74 177965 unique_id port 177965 remote_ip 10.8.0.146 177967 username mostafa_es78 177967 kill_reason Another user logged on this global unique id 177967 mac 177967 bytes_out 0 177967 bytes_in 0 177967 station_ip 113.203.106.19 177967 port 134 177967 unique_id port 177971 username kordestani 177971 kill_reason Another user logged on this global unique id 177971 mac 177971 bytes_out 0 177971 bytes_in 0 177971 station_ip 151.235.121.120 177971 port 124 177971 unique_id port 177971 remote_ip 10.8.0.130 177974 username komeil 177974 kill_reason Another user logged on this global unique id 177974 mac 177974 bytes_out 0 177974 bytes_in 0 177974 station_ip 37.129.216.221 177974 port 74 177974 unique_id port 177978 username alikomsari 177978 mac 177978 bytes_out 69713 177978 bytes_in 105721 177978 station_ip 5.120.43.93 177978 port 125 177978 unique_id port 177978 remote_ip 10.8.0.214 177982 username ebrahimpour3 177982 mac 177982 bytes_out 868419 177982 bytes_in 8329262 177982 station_ip 37.129.157.107 177982 port 124 177982 unique_id port 177982 remote_ip 10.8.0.250 177983 username barzegar 177983 mac 177983 bytes_out 0 177983 bytes_in 0 177983 station_ip 5.119.195.192 177983 port 124 177983 unique_id port 177983 remote_ip 10.8.0.10 177985 username mohammadjavad 177985 mac 177985 bytes_out 1902 177985 bytes_in 3761 177985 station_ip 37.129.203.8 177985 port 126 177985 unique_id port 177985 remote_ip 10.8.0.110 177993 username barzegar 177993 mac 177993 bytes_out 0 177993 bytes_in 0 177993 station_ip 5.119.195.192 177993 port 74 177993 unique_id port 177993 remote_ip 10.8.0.10 177994 username hajghani 177994 kill_reason Another user logged on this global unique id 177994 mac 177994 bytes_out 0 177994 bytes_in 0 177994 station_ip 5.134.183.218 177994 port 124 177994 unique_id port 177994 remote_ip 10.8.0.102 177995 username barzegar 177995 mac 177995 bytes_out 0 177995 bytes_in 0 177995 station_ip 5.119.195.192 177995 port 126 177995 unique_id port 177995 remote_ip 10.8.0.10 178011 username ebrahimpour3 178011 mac 178011 bytes_out 0 178011 bytes_in 0 178011 station_ip 37.129.157.107 178011 port 125 178011 unique_id port 178012 username mostafa_es78 178012 kill_reason Another user logged on this global unique id 178012 mac 178012 bytes_out 0 178012 bytes_in 0 178012 station_ip 113.203.106.19 178012 port 88 178012 unique_id port 178013 username mostafa_es78 177950 bytes_out 3367427 177950 bytes_in 38638874 177950 station_ip 37.129.151.23 177950 port 126 177950 unique_id port 177950 remote_ip 10.8.0.250 177956 username shadkam 177956 mac 177956 bytes_out 1193569 177956 bytes_in 8544627 177956 station_ip 37.129.217.242 177956 port 131 177956 unique_id port 177956 remote_ip 10.8.0.74 177957 username saeeddamghani 177957 kill_reason Another user logged on this global unique id 177957 mac 177957 bytes_out 0 177957 bytes_in 0 177957 station_ip 217.60.218.29 177957 port 127 177957 unique_id port 177959 username saeeddamghani 177959 mac 177959 bytes_out 0 177959 bytes_in 0 177959 station_ip 217.60.218.29 177959 port 127 177959 unique_id port 177962 username godarzi 177962 mac 177962 bytes_out 0 177962 bytes_in 0 177962 station_ip 5.202.26.240 177962 port 124 177962 unique_id port 177962 remote_ip 10.8.0.38 177963 username barzegar 177963 mac 177963 bytes_out 0 177963 bytes_in 0 177963 station_ip 5.119.195.192 177963 port 125 177963 unique_id port 177963 remote_ip 10.8.0.10 177972 username alikomsari 177972 mac 177972 bytes_out 0 177972 bytes_in 0 177972 station_ip 5.120.43.93 177972 port 135 177972 unique_id port 177973 username barzegar 177973 mac 177973 bytes_out 0 177973 bytes_in 0 177973 station_ip 5.119.195.192 177973 port 125 177973 unique_id port 177973 remote_ip 10.8.0.10 177975 username mostafa_es78 177975 mac 177975 bytes_out 0 177975 bytes_in 0 177975 station_ip 113.203.106.19 177975 port 134 177975 unique_id port 177976 username barzegar 177976 mac 177976 bytes_out 0 177976 bytes_in 0 177976 station_ip 5.119.195.192 177976 port 125 177976 unique_id port 177976 remote_ip 10.8.0.10 177977 username kordestani 177977 kill_reason Another user logged on this global unique id 177977 mac 177977 bytes_out 0 177977 bytes_in 0 177977 station_ip 151.235.121.120 177977 port 124 177977 unique_id port 177980 username barzegar 177980 mac 177980 bytes_out 0 177980 bytes_in 0 177980 station_ip 5.119.195.192 177980 port 124 177980 unique_id port 177980 remote_ip 10.8.0.10 177984 username komeil 177984 mac 177984 bytes_out 0 177984 bytes_in 0 177984 station_ip 37.129.216.221 177984 port 74 177984 unique_id port 177986 username mirzaei6046 177986 kill_reason Another user logged on this global unique id 177986 mac 177986 bytes_out 0 177986 bytes_in 0 177986 station_ip 5.119.103.136 177986 port 88 177986 unique_id port 177986 remote_ip 10.8.0.246 177988 username barzegar 177988 mac 177988 bytes_out 20801 177988 bytes_in 29608 177988 station_ip 5.119.195.192 177988 port 124 177988 unique_id port 177988 remote_ip 10.8.0.10 177989 username mohammadjavad 177989 mac 177989 bytes_out 0 177989 bytes_in 0 177989 station_ip 37.129.203.8 177989 port 74 177989 unique_id port 177989 remote_ip 10.8.0.110 177990 username hajghani 177990 mac 177990 bytes_out 352260 177990 bytes_in 912043 177990 station_ip 5.200.127.29 177990 port 130 177990 unique_id port 177990 remote_ip 10.8.0.102 177991 username mohammadjavad 177991 mac 177991 bytes_out 749772 177991 bytes_in 15437489 177991 station_ip 37.129.203.8 177991 port 74 177991 unique_id port 177991 remote_ip 10.8.0.110 177992 username mohammadjavad 177992 mac 177992 bytes_out 10827 177992 bytes_in 36043 177992 station_ip 37.129.203.8 177992 port 74 177992 unique_id port 177992 remote_ip 10.8.0.110 177997 username mohammadjavad 177997 mac 177997 bytes_out 0 177997 bytes_in 0 177997 station_ip 37.129.217.146 177997 port 74 177996 station_ip 37.129.217.146 177996 port 74 177996 unique_id port 177996 remote_ip 10.8.0.110 177999 username mirzaei6046 177999 mac 177999 bytes_out 0 177999 bytes_in 0 177999 station_ip 5.119.103.136 177999 port 88 177999 unique_id port 178000 username barzegar 178000 mac 178000 bytes_out 0 178000 bytes_in 0 178000 station_ip 5.119.195.192 178000 port 126 178000 unique_id port 178000 remote_ip 10.8.0.10 178002 username mirzaei6046 178002 kill_reason Another user logged on this global unique id 178002 mac 178002 bytes_out 0 178002 bytes_in 0 178002 station_ip 5.119.103.136 178002 port 74 178002 unique_id port 178002 remote_ip 10.8.0.246 178003 username barzegar 178003 mac 178003 bytes_out 0 178003 bytes_in 0 178003 station_ip 5.119.195.192 178003 port 130 178003 unique_id port 178003 remote_ip 10.8.0.10 178004 username mohammadjavad 178004 mac 178004 bytes_out 0 178004 bytes_in 0 178004 station_ip 37.129.217.146 178004 port 130 178004 unique_id port 178004 remote_ip 10.8.0.110 178005 username mohammadjavad 178005 mac 178005 bytes_out 0 178005 bytes_in 0 178005 station_ip 37.129.217.146 178005 port 130 178005 unique_id port 178005 remote_ip 10.8.0.110 178006 username mohammadjavad 178006 mac 178006 bytes_out 0 178006 bytes_in 0 178006 station_ip 37.129.217.146 178006 port 130 178006 unique_id port 178006 remote_ip 10.8.0.110 178008 username hajghani 178008 kill_reason Another user logged on this global unique id 178008 mac 178008 bytes_out 0 178008 bytes_in 0 178008 station_ip 5.134.183.218 178008 port 124 178008 unique_id port 178010 username barzegar 178010 mac 178010 bytes_out 0 178010 bytes_in 0 178010 station_ip 5.119.195.192 178010 port 130 178010 unique_id port 178010 remote_ip 10.8.0.10 178022 username ebrahimpour3 178022 mac 178022 bytes_out 7386 178022 bytes_in 10886 178022 station_ip 37.129.157.107 178022 port 88 178022 unique_id port 178022 remote_ip 10.8.0.250 178024 username barzegar 178024 mac 178024 bytes_out 0 178024 bytes_in 0 178024 station_ip 5.119.195.192 178024 port 126 178024 unique_id port 178024 remote_ip 10.8.0.10 178025 username ebrahimpour3 178025 mac 178025 bytes_out 2033380 178025 bytes_in 26784699 178025 station_ip 37.129.157.107 178025 port 125 178025 unique_id port 178025 remote_ip 10.8.0.250 178028 username barzegar 178028 mac 178028 bytes_out 0 178028 bytes_in 0 178028 station_ip 5.119.195.192 178028 port 88 178028 unique_id port 178028 remote_ip 10.8.0.10 178031 username nilufarrajaei 178031 mac 178031 bytes_out 1042906 178031 bytes_in 10624540 178031 station_ip 37.129.164.192 178031 port 125 178031 unique_id port 178031 remote_ip 10.8.0.194 178039 username zahra1101 178039 mac 178039 bytes_out 2887 178039 bytes_in 4437 178039 station_ip 5.120.20.148 178039 port 125 178039 unique_id port 178039 remote_ip 10.8.0.190 178044 username zahra1101 178044 mac 178044 bytes_out 0 178044 bytes_in 0 178044 station_ip 5.120.20.148 178044 port 125 178044 unique_id port 178044 remote_ip 10.8.0.190 178047 username zahra1101 178047 mac 178047 bytes_out 634946 178047 bytes_in 7212068 178047 station_ip 5.120.20.148 178047 port 125 178047 unique_id port 178047 remote_ip 10.8.0.190 178049 username hajghani 178049 mac 178049 bytes_out 0 178049 bytes_in 0 178049 station_ip 5.134.183.218 178049 port 124 178049 unique_id port 178050 username barzegar 178050 mac 178050 bytes_out 0 178050 bytes_in 0 178050 station_ip 5.119.195.192 178050 port 124 177997 unique_id port 177997 remote_ip 10.8.0.110 177998 username hajghani 177998 kill_reason Another user logged on this global unique id 177998 mac 177998 bytes_out 0 177998 bytes_in 0 177998 station_ip 5.134.183.218 177998 port 124 177998 unique_id port 178001 username barzegar 178001 mac 178001 bytes_out 0 178001 bytes_in 0 178001 station_ip 5.119.195.192 178001 port 126 178001 unique_id port 178001 remote_ip 10.8.0.10 178007 username mostafa_es78 178007 kill_reason Another user logged on this global unique id 178007 mac 178007 bytes_out 0 178007 bytes_in 0 178007 station_ip 113.203.106.19 178007 port 88 178007 unique_id port 178007 remote_ip 10.8.0.34 178009 username ebrahimpour3 178009 kill_reason Another user logged on this global unique id 178009 mac 178009 bytes_out 0 178009 bytes_in 0 178009 station_ip 37.129.157.107 178009 port 125 178009 unique_id port 178009 remote_ip 10.8.0.250 178017 username barzegar 178017 mac 178017 bytes_out 0 178017 bytes_in 0 178017 station_ip 5.119.195.192 178017 port 88 178017 unique_id port 178017 remote_ip 10.8.0.10 178020 username fezealinaghi 178020 mac 178020 bytes_out 0 178020 bytes_in 0 178020 station_ip 37.129.128.94 178020 port 126 178020 unique_id port 178021 username barzegar 178021 mac 178021 bytes_out 0 178021 bytes_in 0 178021 station_ip 5.119.195.192 178021 port 88 178021 unique_id port 178021 remote_ip 10.8.0.10 178023 username barzegar 178023 mac 178023 bytes_out 0 178023 bytes_in 0 178023 station_ip 5.119.195.192 178023 port 125 178023 unique_id port 178023 remote_ip 10.8.0.10 178026 username barzegar 178026 mac 178026 bytes_out 0 178026 bytes_in 0 178026 station_ip 5.119.195.192 178026 port 126 178026 unique_id port 178026 remote_ip 10.8.0.10 178032 username mohammadjavad 178032 mac 178032 bytes_out 0 178032 bytes_in 0 178032 station_ip 37.129.217.146 178032 port 125 178032 unique_id port 178032 remote_ip 10.8.0.110 178034 username barzegar 178034 mac 178034 bytes_out 0 178034 bytes_in 0 178034 station_ip 5.119.195.192 178034 port 125 178034 unique_id port 178034 remote_ip 10.8.0.10 178035 username barzegar 178035 mac 178035 bytes_out 0 178035 bytes_in 0 178035 station_ip 5.119.195.192 178035 port 125 178035 unique_id port 178035 remote_ip 10.8.0.10 178037 username zahra1101 178037 mac 178037 bytes_out 0 178037 bytes_in 0 178037 station_ip 5.120.20.148 178037 port 125 178037 unique_id port 178037 remote_ip 10.8.0.190 178040 username zahra1101 178040 mac 178040 bytes_out 0 178040 bytes_in 0 178040 station_ip 5.120.20.148 178040 port 125 178040 unique_id port 178040 remote_ip 10.8.0.190 178041 username zahra1101 178041 mac 178041 bytes_out 0 178041 bytes_in 0 178041 station_ip 5.120.20.148 178041 port 125 178041 unique_id port 178041 remote_ip 10.8.0.190 178042 username zahra1101 178042 mac 178042 bytes_out 0 178042 bytes_in 0 178042 station_ip 5.120.20.148 178042 port 125 178042 unique_id port 178042 remote_ip 10.8.0.190 178043 username barzegar 178043 mac 178043 bytes_out 0 178043 bytes_in 0 178043 station_ip 5.119.195.192 178043 port 126 178043 unique_id port 178043 remote_ip 10.8.0.10 178050 unique_id port 178050 remote_ip 10.8.0.10 178051 username barzegar 178051 mac 178051 bytes_out 0 178051 bytes_in 0 178051 station_ip 5.119.195.192 178051 port 125 178051 unique_id port 178051 remote_ip 10.8.0.10 178052 username ebrahimpour3 178052 kill_reason Another user logged on this global unique id 178052 mac 178052 bytes_out 0 178013 mac 178013 bytes_out 0 178013 bytes_in 0 178013 station_ip 113.203.106.19 178013 port 88 178013 unique_id port 178014 username fezealinaghi 178014 kill_reason Another user logged on this global unique id 178014 mac 178014 bytes_out 0 178014 bytes_in 0 178014 station_ip 37.129.128.94 178014 port 126 178014 unique_id port 178014 remote_ip 10.8.0.202 178015 username barzegar 178015 mac 178015 bytes_out 0 178015 bytes_in 0 178015 station_ip 5.119.195.192 178015 port 88 178015 unique_id port 178015 remote_ip 10.8.0.10 178016 username zahra1101 178016 kill_reason Another user logged on this global unique id 178016 mac 178016 bytes_out 0 178016 bytes_in 0 178016 station_ip 5.120.20.148 178016 port 129 178016 unique_id port 178018 username fezealinaghi 178018 kill_reason Another user logged on this global unique id 178018 mac 178018 bytes_out 0 178018 bytes_in 0 178018 station_ip 37.129.128.94 178018 port 126 178018 unique_id port 178019 username barzegar 178019 mac 178019 bytes_out 0 178019 bytes_in 0 178019 station_ip 5.119.195.192 178019 port 88 178019 unique_id port 178019 remote_ip 10.8.0.10 178027 username nilufarrajaei 178027 mac 178027 bytes_out 422338 178027 bytes_in 883823 178027 station_ip 37.129.164.192 178027 port 88 178027 unique_id port 178027 remote_ip 10.8.0.194 178029 username fezealinaghi 178029 mac 178029 bytes_out 0 178029 bytes_in 0 178029 station_ip 37.129.186.94 178029 port 88 178029 unique_id port 178029 remote_ip 10.8.0.202 178030 username fezealinaghi 178030 mac 178030 bytes_out 52181 178030 bytes_in 379843 178030 station_ip 37.129.186.94 178030 port 126 178030 unique_id port 178030 remote_ip 10.8.0.202 178033 username barzegar 178033 mac 178033 bytes_out 0 178033 bytes_in 0 178033 station_ip 5.119.195.192 178033 port 125 178033 unique_id port 178033 remote_ip 10.8.0.10 178036 username zahra1101 178036 mac 178036 bytes_out 0 178036 bytes_in 0 178036 station_ip 5.120.20.148 178036 port 129 178036 unique_id port 178038 username barzegar 178038 mac 178038 bytes_out 0 178038 bytes_in 0 178038 station_ip 5.119.195.192 178038 port 125 178038 unique_id port 178038 remote_ip 10.8.0.10 178045 username zahra1101 178045 mac 178045 bytes_out 0 178045 bytes_in 0 178045 station_ip 5.120.20.148 178045 port 125 178045 unique_id port 178045 remote_ip 10.8.0.190 178046 username zahra1101 178046 mac 178046 bytes_out 0 178046 bytes_in 0 178046 station_ip 5.120.20.148 178046 port 125 178046 unique_id port 178046 remote_ip 10.8.0.190 178048 username barzegar 178048 mac 178048 bytes_out 0 178048 bytes_in 0 178048 station_ip 5.119.195.192 178048 port 125 178048 unique_id port 178048 remote_ip 10.8.0.10 178052 bytes_in 0 178052 station_ip 37.129.157.107 178052 port 124 178052 unique_id port 178052 remote_ip 10.8.0.250 178053 username barzegar 178053 mac 178053 bytes_out 0 178053 bytes_in 0 178053 station_ip 5.119.195.192 178053 port 126 178053 unique_id port 178053 remote_ip 10.8.0.10 178054 username mehdizare 178054 mac 178054 bytes_out 956078 178054 bytes_in 1043887 178054 station_ip 83.122.83.181 178054 port 117 178054 unique_id port 178054 remote_ip 10.8.0.210 178055 username morteza 178055 mac 178055 bytes_out 1342432 178055 bytes_in 20045685 178055 station_ip 37.129.227.181 178055 port 125 178055 unique_id port 178055 remote_ip 10.8.0.174 178056 username ebrahimpour3 178056 kill_reason Another user logged on this global unique id 178056 mac 178056 bytes_out 0 178056 bytes_in 0 178056 station_ip 37.129.157.107 178056 port 124 178056 unique_id port 178063 username morteza 178063 mac 178063 bytes_out 0 178063 bytes_in 0 178063 station_ip 37.129.197.36 178063 port 88 178063 unique_id port 178063 remote_ip 10.8.0.174 178065 username morteza 178065 mac 178065 bytes_out 10892 178065 bytes_in 17602 178065 station_ip 37.129.197.36 178065 port 125 178065 unique_id port 178065 remote_ip 10.8.0.174 178066 username morteza 178066 mac 178066 bytes_out 0 178066 bytes_in 0 178066 station_ip 37.129.197.36 178066 port 88 178066 unique_id port 178066 remote_ip 10.8.0.174 178067 username ebrahimpour3 178067 kill_reason Another user logged on this global unique id 178067 mac 178067 bytes_out 0 178067 bytes_in 0 178067 station_ip 37.129.157.107 178067 port 124 178067 unique_id port 178072 username aminvpn 178072 unique_id port 178072 terminate_cause User-Request 178072 bytes_out 4393687 178072 bytes_in 219109267 178072 station_ip 31.57.123.26 178072 port 15728692 178072 nas_port_type Virtual 178072 remote_ip 5.5.5.240 178075 username barzegar 178075 mac 178075 bytes_out 0 178075 bytes_in 0 178075 station_ip 5.119.195.192 178075 port 125 178075 unique_id port 178075 remote_ip 10.8.0.10 178078 username morteza 178078 mac 178078 bytes_out 0 178078 bytes_in 0 178078 station_ip 37.129.197.36 178078 port 125 178078 unique_id port 178078 remote_ip 10.8.0.174 178079 username morteza 178079 mac 178079 bytes_out 0 178079 bytes_in 0 178079 station_ip 37.129.197.36 178079 port 125 178079 unique_id port 178079 remote_ip 10.8.0.174 178080 username kalantary6037 178080 mac 178080 bytes_out 750151 178080 bytes_in 4188841 178080 station_ip 37.129.179.134 178080 port 129 178080 unique_id port 178080 remote_ip 10.8.0.50 178087 username mehdizare 178087 mac 178087 bytes_out 24880 178087 bytes_in 25353 178087 station_ip 83.122.83.181 178087 port 117 178087 unique_id port 178087 remote_ip 10.8.0.210 178091 username shadkam 178091 mac 178091 bytes_out 0 178091 bytes_in 0 178091 station_ip 5.202.0.31 178091 port 117 178091 unique_id port 178091 remote_ip 10.8.0.74 178093 username morteza 178093 kill_reason Maximum check online fails reached 178093 mac 178093 bytes_out 0 178093 bytes_in 0 178093 station_ip 37.129.197.36 178093 port 131 178093 unique_id port 178095 username jafari 178095 mac 178095 bytes_out 4176262 178095 bytes_in 43038138 178095 station_ip 5.62.204.121 178095 port 130 178095 unique_id port 178095 remote_ip 10.8.0.86 178099 username morteza 178099 mac 178099 bytes_out 0 178099 bytes_in 0 178099 station_ip 37.129.197.36 178099 port 127 178099 unique_id port 178099 remote_ip 10.8.0.174 178101 username mosi 178101 mac 178101 bytes_out 0 178101 bytes_in 0 178101 station_ip 151.235.120.48 178101 port 134 178101 unique_id port 178101 remote_ip 10.8.0.142 178106 username mohammadjavad 178106 kill_reason Another user logged on this global unique id 178106 mac 178106 bytes_out 0 178106 bytes_in 0 178106 station_ip 37.129.181.195 178106 port 117 178106 unique_id port 178106 remote_ip 10.8.0.110 178109 username morteza 178109 kill_reason Maximum check online fails reached 178109 mac 178109 bytes_out 0 178109 bytes_in 0 178109 station_ip 37.129.197.36 178109 port 135 178109 unique_id port 178113 username barzegar 178113 mac 178113 bytes_out 0 178113 bytes_in 0 178113 station_ip 5.119.195.192 178113 port 136 178113 unique_id port 178113 remote_ip 10.8.0.10 178115 username nilufarrajaei 178160 bytes_out 1636 178057 username morteza 178057 mac 178057 bytes_out 19090 178057 bytes_in 56539 178057 station_ip 37.129.197.36 178057 port 126 178057 unique_id port 178057 remote_ip 10.8.0.174 178058 username mehdizare 178058 mac 178058 bytes_out 19221 178058 bytes_in 32124 178058 station_ip 83.122.83.181 178058 port 117 178058 unique_id port 178058 remote_ip 10.8.0.210 178064 username aminvpn 178064 unique_id port 178064 terminate_cause User-Request 178064 bytes_out 150281 178064 bytes_in 3089426 178064 station_ip 31.57.123.26 178064 port 15728691 178064 nas_port_type Virtual 178064 remote_ip 5.5.5.240 178073 username morteza 178073 mac 178073 bytes_out 0 178073 bytes_in 0 178073 station_ip 37.129.197.36 178073 port 125 178073 unique_id port 178073 remote_ip 10.8.0.174 178074 username nilufarrajaei 178074 mac 178074 bytes_out 203338 178074 bytes_in 490344 178074 station_ip 37.129.164.192 178074 port 117 178074 unique_id port 178074 remote_ip 10.8.0.194 178077 username morteza 178077 mac 178077 bytes_out 0 178077 bytes_in 0 178077 station_ip 37.129.197.36 178077 port 125 178077 unique_id port 178077 remote_ip 10.8.0.174 178084 username morteza 178084 kill_reason Maximum check online fails reached 178084 mac 178084 bytes_out 0 178084 bytes_in 0 178084 station_ip 37.129.197.36 178084 port 125 178084 unique_id port 178086 username barzegar 178086 mac 178086 bytes_out 0 178086 bytes_in 0 178086 station_ip 5.119.195.192 178086 port 124 178086 unique_id port 178086 remote_ip 10.8.0.10 178088 username ebrahimpour3 178088 mac 178088 bytes_out 931221 178088 bytes_in 10326720 178088 station_ip 37.129.157.107 178088 port 131 178088 unique_id port 178088 remote_ip 10.8.0.250 178090 username pourshad 178090 kill_reason Another user logged on this global unique id 178090 mac 178090 bytes_out 0 178090 bytes_in 0 178090 station_ip 5.119.33.96 178090 port 88 178090 unique_id port 178090 remote_ip 10.8.0.42 178096 username mohammadjavad 178096 mac 178096 bytes_out 389311 178096 bytes_in 5517130 178096 station_ip 37.129.181.195 178096 port 114 178096 unique_id port 178096 remote_ip 10.8.0.110 178097 username barzegar 178097 mac 178097 bytes_out 0 178097 bytes_in 0 178097 station_ip 5.119.195.192 178097 port 117 178097 unique_id port 178097 remote_ip 10.8.0.10 178100 username sedighe 178100 mac 178100 bytes_out 366746 178100 bytes_in 3428258 178100 station_ip 37.129.226.87 178100 port 114 178100 unique_id port 178100 remote_ip 10.8.0.46 178103 username morteza 178103 kill_reason Maximum check online fails reached 178103 mac 178103 bytes_out 0 178103 bytes_in 0 178103 station_ip 37.129.197.36 178103 port 114 178103 unique_id port 178104 username morteza 178104 mac 178104 bytes_out 0 178104 bytes_in 0 178104 station_ip 37.129.197.36 178104 port 134 178104 unique_id port 178104 remote_ip 10.8.0.174 178107 username morteza 178107 mac 178107 bytes_out 0 178107 bytes_in 0 178107 station_ip 37.129.197.36 178107 port 136 178107 unique_id port 178107 remote_ip 10.8.0.174 178108 username mosi 178108 mac 178108 bytes_out 0 178108 bytes_in 0 178108 station_ip 151.235.120.48 178108 port 134 178108 unique_id port 178108 remote_ip 10.8.0.142 178110 username morteza 178110 mac 178110 bytes_out 1636 178110 bytes_in 5023 178110 station_ip 37.129.197.36 178110 port 136 178110 unique_id port 178110 remote_ip 10.8.0.174 178114 username mosi 178114 mac 178114 bytes_out 0 178114 bytes_in 0 178114 station_ip 151.235.120.48 178059 username nilufarrajaei 178059 mac 178059 bytes_out 2839294 178059 bytes_in 40760047 178059 station_ip 37.129.164.192 178059 port 88 178059 unique_id port 178059 remote_ip 10.8.0.194 178060 username morteza 178060 mac 178060 bytes_out 0 178060 bytes_in 0 178060 station_ip 37.129.197.36 178060 port 88 178060 unique_id port 178060 remote_ip 10.8.0.174 178061 username aminvpn 178061 unique_id port 178061 terminate_cause User-Request 178061 bytes_out 315044 178061 bytes_in 2613967 178061 station_ip 31.57.123.26 178061 port 15728690 178061 nas_port_type Virtual 178061 remote_ip 5.5.5.240 178062 username barzegar 178062 mac 178062 bytes_out 0 178062 bytes_in 0 178062 station_ip 5.119.195.192 178062 port 125 178062 unique_id port 178062 remote_ip 10.8.0.10 178068 username morteza 178068 mac 178068 bytes_out 0 178068 bytes_in 0 178068 station_ip 37.129.197.36 178068 port 125 178068 unique_id port 178068 remote_ip 10.8.0.174 178069 username houshang 178069 mac 178069 bytes_out 116029 178069 bytes_in 363924 178069 station_ip 5.119.216.181 178069 port 88 178069 unique_id port 178069 remote_ip 10.8.0.82 178070 username sedighe 178070 mac 178070 bytes_out 88493 178070 bytes_in 577397 178070 station_ip 37.129.234.2 178070 port 125 178070 unique_id port 178070 remote_ip 10.8.0.46 178071 username morteza 178071 mac 178071 bytes_out 0 178071 bytes_in 0 178071 station_ip 37.129.197.36 178071 port 88 178071 unique_id port 178071 remote_ip 10.8.0.174 178076 username ebrahimpour3 178076 kill_reason Another user logged on this global unique id 178076 mac 178076 bytes_out 0 178076 bytes_in 0 178076 station_ip 37.129.157.107 178076 port 124 178076 unique_id port 178081 username aminvpn 178081 mac 178081 bytes_out 992574 178081 bytes_in 5280205 178081 station_ip 5.120.118.187 178081 port 114 178081 unique_id port 178081 remote_ip 10.8.0.58 178082 username ebrahimpour3 178082 kill_reason Another user logged on this global unique id 178082 mac 178082 bytes_out 0 178082 bytes_in 0 178082 station_ip 37.129.157.107 178082 port 124 178082 unique_id port 178083 username ebrahimpour3 178083 mac 178083 bytes_out 0 178083 bytes_in 0 178083 station_ip 37.129.157.107 178083 port 124 178083 unique_id port 178085 username morteza 178085 kill_reason Maximum check online fails reached 178085 mac 178085 bytes_out 0 178085 bytes_in 0 178085 station_ip 37.129.197.36 178085 port 129 178085 unique_id port 178089 username morteza 178089 mac 178089 bytes_out 0 178089 bytes_in 0 178089 station_ip 37.129.197.36 178089 port 117 178089 unique_id port 178089 remote_ip 10.8.0.174 178092 username morteza 178092 kill_reason Maximum check online fails reached 178092 mac 178092 bytes_out 0 178092 bytes_in 0 178092 station_ip 37.129.197.36 178092 port 124 178092 unique_id port 178094 username mohammadjavad 178094 mac 178094 bytes_out 249192 178094 bytes_in 1555312 178094 station_ip 37.129.166.68 178094 port 114 178094 unique_id port 178094 remote_ip 10.8.0.110 178098 username mosi 178098 mac 178098 bytes_out 16628086 178098 bytes_in 13254378 178098 station_ip 151.235.120.48 178098 port 127 178098 unique_id port 178098 remote_ip 10.8.0.142 178102 username morteza 178102 kill_reason Maximum check online fails reached 178102 mac 178102 bytes_out 0 178102 bytes_in 0 178102 station_ip 37.129.197.36 178102 port 130 178102 unique_id port 178105 username mosi 178105 mac 178105 bytes_out 0 178105 bytes_in 0 178105 station_ip 151.235.120.48 178105 port 135 178105 unique_id port 178105 remote_ip 10.8.0.142 178111 username mosi 178111 mac 178111 bytes_out 13846 178111 bytes_in 15378 178111 station_ip 151.235.120.48 178111 port 137 178111 unique_id port 178111 remote_ip 10.8.0.142 178112 username mehdizare 178112 mac 178112 bytes_out 187609 178112 bytes_in 1775798 178112 station_ip 37.129.237.135 178112 port 133 178112 unique_id port 178112 remote_ip 10.8.0.210 178116 username mosi 178116 mac 178116 bytes_out 0 178116 bytes_in 0 178116 station_ip 151.235.120.48 178116 port 133 178116 unique_id port 178116 remote_ip 10.8.0.142 178117 username mosi 178117 mac 178117 bytes_out 0 178117 bytes_in 0 178117 station_ip 151.235.120.48 178117 port 134 178117 unique_id port 178117 remote_ip 10.8.0.142 178120 username mosi 178120 mac 178120 bytes_out 0 178120 bytes_in 0 178120 station_ip 151.235.120.48 178120 port 133 178120 unique_id port 178120 remote_ip 10.8.0.142 178121 username mosi 178121 mac 178121 bytes_out 0 178121 bytes_in 0 178121 station_ip 151.235.120.48 178121 port 117 178121 unique_id port 178121 remote_ip 10.8.0.142 178126 username mosi 178126 mac 178126 bytes_out 0 178126 bytes_in 0 178126 station_ip 151.235.120.48 178126 port 117 178126 unique_id port 178126 remote_ip 10.8.0.142 178129 username mosi 178129 mac 178129 bytes_out 2090 178129 bytes_in 4356 178129 station_ip 89.34.54.94 178129 port 136 178129 unique_id port 178129 remote_ip 10.8.0.142 178133 username shadkam 178133 mac 178133 bytes_out 396066 178133 bytes_in 3336243 178133 station_ip 37.129.213.252 178133 port 137 178133 unique_id port 178133 remote_ip 10.8.0.74 178134 username mosi 178134 mac 178134 bytes_out 2090 178134 bytes_in 4727 178134 station_ip 151.235.120.48 178134 port 117 178134 unique_id port 178134 remote_ip 10.8.0.142 178135 username rezaei 178135 mac 178135 bytes_out 1122504 178135 bytes_in 8677778 178135 station_ip 5.120.68.177 178135 port 127 178135 unique_id port 178135 remote_ip 10.8.0.198 178140 username zahra1101 178140 mac 178140 bytes_out 80199 178140 bytes_in 94314 178140 station_ip 5.120.32.40 178140 port 133 178140 unique_id port 178140 remote_ip 10.8.0.190 178141 username alipour 178141 kill_reason Relative expiration date has reached 178141 mac 178141 bytes_out 0 178141 bytes_in 0 178141 station_ip 78.39.25.121 178141 port 133 178141 unique_id port 178143 username pourshad 178143 mac 178143 bytes_out 0 178143 bytes_in 0 178143 station_ip 5.119.33.96 178143 port 88 178143 unique_id port 178148 username hajghani 178148 mac 178148 bytes_out 1393044 178148 bytes_in 15966596 178148 station_ip 5.200.118.203 178148 port 133 178148 unique_id port 178148 remote_ip 10.8.0.102 178150 username kalantary6037 178150 mac 178150 bytes_out 773017 178150 bytes_in 7590305 178150 station_ip 37.129.132.106 178150 port 134 178150 unique_id port 178150 remote_ip 10.8.0.50 178151 username mehdizare 178151 mac 178151 bytes_out 73919 178151 bytes_in 442814 178151 station_ip 37.129.237.135 178151 port 117 178151 unique_id port 178151 remote_ip 10.8.0.210 178154 username komeil 178154 mac 178154 bytes_out 0 178154 bytes_in 0 178154 station_ip 37.129.211.50 178154 port 136 178154 unique_id port 178154 remote_ip 10.8.0.146 178156 username komeil 178156 mac 178156 bytes_out 1636 178156 bytes_in 3739 178156 station_ip 37.129.211.50 178156 port 134 178156 unique_id port 178156 remote_ip 10.8.0.146 178160 username komeil 178160 mac 178114 port 134 178114 unique_id port 178114 remote_ip 10.8.0.142 178118 username mosi 178118 mac 178118 bytes_out 0 178118 bytes_in 0 178118 station_ip 151.235.120.48 178118 port 133 178118 unique_id port 178118 remote_ip 10.8.0.142 178122 username mehdizare 178122 mac 178122 bytes_out 10196 178122 bytes_in 17353 178122 station_ip 37.129.237.135 178122 port 137 178122 unique_id port 178122 remote_ip 10.8.0.210 178123 username mosi 178123 mac 178123 bytes_out 0 178123 bytes_in 0 178123 station_ip 151.235.120.48 178123 port 117 178123 unique_id port 178123 remote_ip 10.8.0.142 178125 username mosi 178125 mac 178125 bytes_out 6539 178125 bytes_in 11341 178125 station_ip 151.235.120.48 178125 port 136 178125 unique_id port 178125 remote_ip 10.8.0.142 178127 username mosi 178127 mac 178127 bytes_out 0 178127 bytes_in 0 178127 station_ip 151.235.120.48 178127 port 136 178127 unique_id port 178127 remote_ip 10.8.0.142 178130 username rashidi4690 178130 mac 178130 bytes_out 492667 178130 bytes_in 2916323 178130 station_ip 5.120.68.208 178130 port 117 178130 unique_id port 178130 remote_ip 10.8.0.242 178132 username mosi 178132 mac 178132 bytes_out 0 178132 bytes_in 0 178132 station_ip 151.235.120.48 178132 port 117 178132 unique_id port 178132 remote_ip 10.8.0.142 178136 username mehdizare 178136 mac 178136 bytes_out 123911 178136 bytes_in 226339 178136 station_ip 37.129.237.135 178136 port 134 178136 unique_id port 178136 remote_ip 10.8.0.210 178137 username mosi 178137 mac 178137 bytes_out 2701 178137 bytes_in 5618 178137 station_ip 151.235.120.48 178137 port 127 178137 unique_id port 178137 remote_ip 10.8.0.142 178138 username mosi 178138 mac 178138 bytes_out 2393 178138 bytes_in 4755 178138 station_ip 151.235.120.48 178138 port 127 178138 unique_id port 178138 remote_ip 10.8.0.142 178139 username barzegar 178139 mac 178139 bytes_out 0 178139 bytes_in 0 178139 station_ip 5.119.195.192 178139 port 127 178139 unique_id port 178139 remote_ip 10.8.0.10 178146 username pourshad 178146 mac 178146 bytes_out 16165 178146 bytes_in 26171 178146 station_ip 5.119.33.96 178146 port 88 178146 unique_id port 178146 remote_ip 10.8.0.42 178147 username barzegar 178147 mac 178147 bytes_out 0 178147 bytes_in 0 178147 station_ip 5.119.195.192 178147 port 133 178147 unique_id port 178147 remote_ip 10.8.0.10 178149 username barzegar 178149 mac 178149 bytes_out 0 178149 bytes_in 0 178149 station_ip 5.119.195.192 178149 port 137 178149 unique_id port 178149 remote_ip 10.8.0.10 178153 username barzegar 178153 mac 178153 bytes_out 0 178153 bytes_in 0 178153 station_ip 5.119.195.192 178153 port 134 178153 unique_id port 178153 remote_ip 10.8.0.10 178157 username komeil 178157 mac 178157 bytes_out 0 178157 bytes_in 0 178157 station_ip 37.129.211.50 178157 port 134 178157 unique_id port 178157 remote_ip 10.8.0.146 178158 username godarzi 178158 mac 178158 bytes_out 2687276 178158 bytes_in 29270009 178158 station_ip 5.202.26.240 178158 port 133 178158 unique_id port 178158 remote_ip 10.8.0.38 178163 username komeil 178163 mac 178163 bytes_out 0 178163 bytes_in 0 178163 station_ip 37.129.211.50 178163 port 88 178163 unique_id port 178163 remote_ip 10.8.0.146 178165 username komeil 178165 mac 178165 bytes_out 32030 178165 bytes_in 84352 178165 station_ip 37.129.211.50 178165 port 88 178165 unique_id port 178165 remote_ip 10.8.0.146 178115 kill_reason Another user logged on this global unique id 178115 mac 178115 bytes_out 0 178115 bytes_in 0 178115 station_ip 37.129.164.192 178115 port 126 178115 unique_id port 178115 remote_ip 10.8.0.194 178119 username mohammadjavad 178119 mac 178119 bytes_out 0 178119 bytes_in 0 178119 station_ip 37.129.181.195 178119 port 117 178119 unique_id port 178124 username jafari 178124 mac 178124 bytes_out 2169687 178124 bytes_in 22970161 178124 station_ip 5.62.204.121 178124 port 127 178124 unique_id port 178124 remote_ip 10.8.0.86 178128 username shadkam 178128 mac 178128 bytes_out 6188612 178128 bytes_in 29952656 178128 station_ip 5.202.0.31 178128 port 133 178128 unique_id port 178128 remote_ip 10.8.0.74 178131 username barzegar 178131 mac 178131 bytes_out 0 178131 bytes_in 0 178131 station_ip 5.119.195.192 178131 port 133 178131 unique_id port 178131 remote_ip 10.8.0.10 178142 username barzegar 178142 mac 178142 bytes_out 0 178142 bytes_in 0 178142 station_ip 5.119.195.192 178142 port 133 178142 unique_id port 178142 remote_ip 10.8.0.10 178144 username pourshad 178144 mac 178144 bytes_out 1831 178144 bytes_in 4180 178144 station_ip 5.119.33.96 178144 port 88 178144 unique_id port 178144 remote_ip 10.8.0.42 178145 username pourshad 178145 mac 178145 bytes_out 65273 178145 bytes_in 221592 178145 station_ip 5.119.33.96 178145 port 133 178145 unique_id port 178145 remote_ip 10.8.0.42 178152 username sedighe 178152 mac 178152 bytes_out 134521 178152 bytes_in 292430 178152 station_ip 37.129.226.87 178152 port 136 178152 unique_id port 178152 remote_ip 10.8.0.46 178155 username komeil 178155 mac 178155 bytes_out 0 178155 bytes_in 0 178155 station_ip 37.129.211.50 178155 port 134 178155 unique_id port 178155 remote_ip 10.8.0.146 178159 username pourshad 178159 mac 178159 bytes_out 687032 178159 bytes_in 8733920 178159 station_ip 5.119.33.96 178159 port 88 178159 unique_id port 178159 remote_ip 10.8.0.42 178161 username komeil 178161 mac 178161 bytes_out 0 178161 bytes_in 0 178161 station_ip 37.129.211.50 178161 port 88 178161 unique_id port 178161 remote_ip 10.8.0.146 178162 username mehdizare 178162 mac 178162 bytes_out 22640 178162 bytes_in 32256 178162 station_ip 37.129.237.135 178162 port 117 178162 unique_id port 178162 remote_ip 10.8.0.210 178164 username shadkam 178164 mac 178164 bytes_out 1329209 178164 bytes_in 15104806 178164 station_ip 37.129.195.161 178164 port 136 178164 unique_id port 178164 remote_ip 10.8.0.74 178166 username nilufarrajaei 178166 kill_reason Another user logged on this global unique id 178166 mac 178166 bytes_out 0 178166 bytes_in 0 178166 station_ip 37.129.164.192 178166 port 126 178166 unique_id port 178167 username barzegar 178167 mac 178167 bytes_out 0 178167 bytes_in 0 178167 station_ip 5.119.195.192 178167 port 88 178167 unique_id port 178167 remote_ip 10.8.0.10 178169 username komeil 178169 mac 178169 bytes_out 0 178169 bytes_in 0 178169 station_ip 37.129.211.50 178169 port 136 178169 unique_id port 178169 remote_ip 10.8.0.146 178171 username komeil 178171 mac 178171 bytes_out 0 178171 bytes_in 0 178171 station_ip 37.129.211.50 178171 port 136 178171 unique_id port 178171 remote_ip 10.8.0.146 178178 username komeil 178178 mac 178178 bytes_out 0 178178 bytes_in 0 178178 station_ip 37.129.211.50 178178 port 136 178178 unique_id port 178178 remote_ip 10.8.0.146 178179 username komeil 178179 mac 178179 bytes_out 0 178160 bytes_in 5505 178160 station_ip 37.129.211.50 178160 port 134 178160 unique_id port 178160 remote_ip 10.8.0.146 178168 username komeil 178168 mac 178168 bytes_out 399553 178168 bytes_in 3541074 178168 station_ip 37.129.211.50 178168 port 134 178168 unique_id port 178168 remote_ip 10.8.0.146 178173 username barzegar 178173 mac 178173 bytes_out 9040 178173 bytes_in 12854 178173 station_ip 5.119.195.192 178173 port 137 178173 unique_id port 178173 remote_ip 10.8.0.10 178175 username kalantary6037 178175 mac 178175 bytes_out 795114 178175 bytes_in 7811321 178175 station_ip 37.129.237.102 178175 port 134 178175 unique_id port 178175 remote_ip 10.8.0.50 178184 username komeil 178184 mac 178184 bytes_out 0 178184 bytes_in 0 178184 station_ip 37.129.211.50 178184 port 137 178184 unique_id port 178184 remote_ip 10.8.0.146 178193 username barzegar 178193 mac 178193 bytes_out 3070 178193 bytes_in 5205 178193 station_ip 5.119.195.192 178193 port 136 178193 unique_id port 178193 remote_ip 10.8.0.10 178194 username zahra1101 178194 mac 178194 bytes_out 3379 178194 bytes_in 6099 178194 station_ip 5.120.82.19 178194 port 127 178194 unique_id port 178194 remote_ip 10.8.0.190 178196 username barzegar 178196 mac 178196 bytes_out 0 178196 bytes_in 0 178196 station_ip 5.119.195.192 178196 port 138 178196 unique_id port 178196 remote_ip 10.8.0.10 178197 username tahmasebi 178197 kill_reason Relative expiration date has reached 178197 mac 178197 bytes_out 0 178197 bytes_in 0 178197 station_ip 5.120.12.2 178197 port 138 178197 unique_id port 178199 username tahmasebi 178199 kill_reason Relative expiration date has reached 178199 mac 178199 bytes_out 0 178199 bytes_in 0 178199 station_ip 5.120.12.2 178199 port 138 178199 unique_id port 178200 username komeil 178200 mac 178200 bytes_out 37673 178200 bytes_in 76913 178200 station_ip 37.129.211.50 178200 port 136 178200 unique_id port 178200 remote_ip 10.8.0.146 178202 username shadkam 178202 mac 178202 bytes_out 136848 178202 bytes_in 709287 178202 station_ip 37.129.203.131 178202 port 138 178202 unique_id port 178202 remote_ip 10.8.0.74 178205 username pourshad 178205 mac 178205 bytes_out 243874 178205 bytes_in 1243244 178205 station_ip 5.119.33.96 178205 port 117 178205 unique_id port 178205 remote_ip 10.8.0.42 178207 username godarzi 178207 mac 178207 bytes_out 554609 178207 bytes_in 3720360 178207 station_ip 5.202.26.240 178207 port 134 178207 unique_id port 178207 remote_ip 10.8.0.38 178213 username komeil 178213 mac 178213 bytes_out 0 178213 bytes_in 0 178213 station_ip 37.129.211.50 178213 port 133 178213 unique_id port 178213 remote_ip 10.8.0.146 178215 username barzegar 178215 mac 178215 bytes_out 0 178215 bytes_in 0 178215 station_ip 5.119.195.192 178215 port 133 178215 unique_id port 178215 remote_ip 10.8.0.10 178216 username rashidi4690 178216 mac 178216 bytes_out 186679 178216 bytes_in 869085 178216 station_ip 5.120.68.208 178216 port 133 178216 unique_id port 178216 remote_ip 10.8.0.242 178218 username barzegar 178218 mac 178218 bytes_out 2858 178218 bytes_in 5196 178218 station_ip 5.119.195.192 178218 port 136 178218 unique_id port 178218 remote_ip 10.8.0.10 178219 username komeil 178219 mac 178219 bytes_out 0 178219 bytes_in 0 178219 station_ip 37.129.211.50 178219 port 133 178219 unique_id port 178219 remote_ip 10.8.0.146 178223 username kalantary6037 178223 mac 178223 bytes_out 0 178223 bytes_in 0 178170 username komeil 178170 mac 178170 bytes_out 0 178170 bytes_in 0 178170 station_ip 37.129.211.50 178170 port 136 178170 unique_id port 178170 remote_ip 10.8.0.146 178172 username komeil 178172 mac 178172 bytes_out 0 178172 bytes_in 0 178172 station_ip 37.129.211.50 178172 port 136 178172 unique_id port 178172 remote_ip 10.8.0.146 178174 username zahra1101 178174 mac 178174 bytes_out 533343 178174 bytes_in 1161231 178174 station_ip 5.120.82.19 178174 port 127 178174 unique_id port 178174 remote_ip 10.8.0.190 178176 username malekpoir 178176 kill_reason Another user logged on this global unique id 178176 mac 178176 bytes_out 0 178176 bytes_in 0 178176 station_ip 5.120.164.161 178176 port 88 178176 unique_id port 178176 remote_ip 10.8.0.18 178177 username barzegar 178177 mac 178177 bytes_out 1886 178177 bytes_in 4850 178177 station_ip 5.119.195.192 178177 port 134 178177 unique_id port 178177 remote_ip 10.8.0.10 178181 username zahra1101 178181 mac 178181 bytes_out 20412 178181 bytes_in 42608 178181 station_ip 5.120.82.19 178181 port 127 178181 unique_id port 178181 remote_ip 10.8.0.190 178182 username komeil 178182 mac 178182 bytes_out 0 178182 bytes_in 0 178182 station_ip 37.129.211.50 178182 port 127 178182 unique_id port 178182 remote_ip 10.8.0.146 178183 username komeil 178183 mac 178183 bytes_out 0 178183 bytes_in 0 178183 station_ip 37.129.211.50 178183 port 137 178183 unique_id port 178183 remote_ip 10.8.0.146 178185 username zahra1101 178185 mac 178185 bytes_out 3495 178185 bytes_in 5444 178185 station_ip 5.120.82.19 178185 port 127 178185 unique_id port 178185 remote_ip 10.8.0.190 178187 username zahra1101 178187 mac 178187 bytes_out 17920 178187 bytes_in 34809 178187 station_ip 5.120.82.19 178187 port 127 178187 unique_id port 178187 remote_ip 10.8.0.190 178189 username kalantary6037 178189 mac 178189 bytes_out 378120 178189 bytes_in 2544858 178189 station_ip 37.129.237.102 178189 port 138 178189 unique_id port 178189 remote_ip 10.8.0.50 178191 username komeil 178191 mac 178191 bytes_out 0 178191 bytes_in 0 178191 station_ip 37.129.211.50 178191 port 137 178191 unique_id port 178191 remote_ip 10.8.0.146 178198 username tahmasebi 178198 kill_reason Relative expiration date has reached 178198 mac 178198 bytes_out 0 178198 bytes_in 0 178198 station_ip 5.120.12.2 178198 port 138 178198 unique_id port 178201 username afarin1 178201 mac 178201 bytes_out 32765 178201 bytes_in 194731 178201 station_ip 31.56.219.227 178201 port 134 178201 unique_id port 178201 remote_ip 10.8.0.178 178204 username mehdizare 178204 mac 178204 bytes_out 244156 178204 bytes_in 551158 178204 station_ip 37.129.237.135 178204 port 133 178204 unique_id port 178204 remote_ip 10.8.0.210 178208 username komeil 178208 mac 178208 bytes_out 22229 178208 bytes_in 34015 178208 station_ip 37.129.211.50 178208 port 136 178208 unique_id port 178208 remote_ip 10.8.0.146 178209 username barzegar 178209 mac 178209 bytes_out 0 178209 bytes_in 0 178209 station_ip 5.119.195.192 178209 port 117 178209 unique_id port 178209 remote_ip 10.8.0.10 178211 username meysam 178211 mac 178211 bytes_out 0 178211 bytes_in 0 178211 station_ip 188.158.50.82 178211 port 137 178211 unique_id port 178212 username komeil 178212 mac 178212 bytes_out 0 178212 bytes_in 0 178212 station_ip 37.129.211.50 178212 port 133 178212 unique_id port 178212 remote_ip 10.8.0.146 178220 username pourshad 178220 mac 178179 bytes_in 0 178179 station_ip 37.129.211.50 178179 port 134 178179 unique_id port 178179 remote_ip 10.8.0.146 178180 username shadkam 178180 mac 178180 bytes_out 210180 178180 bytes_in 1510293 178180 station_ip 37.129.235.216 178180 port 137 178180 unique_id port 178180 remote_ip 10.8.0.74 178186 username barzegar 178186 mac 178186 bytes_out 30261 178186 bytes_in 125313 178186 station_ip 5.119.195.192 178186 port 136 178186 unique_id port 178186 remote_ip 10.8.0.10 178188 username malekpoir 178188 kill_reason Another user logged on this global unique id 178188 mac 178188 bytes_out 0 178188 bytes_in 0 178188 station_ip 5.120.164.161 178188 port 88 178188 unique_id port 178190 username komeil 178190 mac 178190 bytes_out 2505719 178190 bytes_in 26268727 178190 station_ip 37.129.211.50 178190 port 137 178190 unique_id port 178190 remote_ip 10.8.0.146 178192 username zahra1101 178192 mac 178192 bytes_out 3893 178192 bytes_in 5947 178192 station_ip 5.120.82.19 178192 port 127 178192 unique_id port 178192 remote_ip 10.8.0.190 178195 username hajghani 178195 mac 178195 bytes_out 510208 178195 bytes_in 1451118 178195 station_ip 5.134.188.161 178195 port 134 178195 unique_id port 178195 remote_ip 10.8.0.102 178203 username meysam 178203 kill_reason Another user logged on this global unique id 178203 mac 178203 bytes_out 0 178203 bytes_in 0 178203 station_ip 188.158.50.82 178203 port 137 178203 unique_id port 178203 remote_ip 10.8.0.158 178206 username motamedi9772 178206 mac 178206 bytes_out 46085 178206 bytes_in 71072 178206 station_ip 37.129.236.206 178206 port 138 178206 unique_id port 178206 remote_ip 10.8.0.154 178210 username barzegar 178210 mac 178210 bytes_out 2241 178210 bytes_in 4911 178210 station_ip 5.119.195.192 178210 port 133 178210 unique_id port 178210 remote_ip 10.8.0.10 178214 username komeil 178214 mac 178214 bytes_out 0 178214 bytes_in 0 178214 station_ip 37.129.211.50 178214 port 133 178214 unique_id port 178214 remote_ip 10.8.0.146 178217 username komeil 178217 mac 178217 bytes_out 1904 178217 bytes_in 4157 178217 station_ip 37.129.211.50 178217 port 134 178217 unique_id port 178217 remote_ip 10.8.0.146 178222 username barzegar 178222 mac 178222 bytes_out 0 178222 bytes_in 0 178222 station_ip 5.119.195.192 178222 port 127 178222 unique_id port 178222 remote_ip 10.8.0.10 178224 username komeil 178224 mac 178224 bytes_out 65552 178224 bytes_in 125575 178224 station_ip 37.129.211.50 178224 port 117 178224 unique_id port 178224 remote_ip 10.8.0.146 178226 username mirzaei6046 178226 kill_reason Another user logged on this global unique id 178226 mac 178226 bytes_out 0 178226 bytes_in 0 178226 station_ip 5.119.103.136 178226 port 74 178226 unique_id port 178229 username mohammadjavad 178229 mac 178229 bytes_out 37422 178229 bytes_in 57064 178229 station_ip 37.129.146.12 178229 port 137 178229 unique_id port 178229 remote_ip 10.8.0.110 178239 username zahra1101 178239 mac 178239 bytes_out 2654 178239 bytes_in 4993 178239 station_ip 5.120.82.19 178239 port 136 178239 unique_id port 178239 remote_ip 10.8.0.190 178242 username komeil 178242 mac 178242 bytes_out 0 178242 bytes_in 0 178242 station_ip 37.129.211.50 178242 port 136 178242 unique_id port 178242 remote_ip 10.8.0.146 178243 username komeil 178243 mac 178243 bytes_out 0 178243 bytes_in 0 178243 station_ip 37.129.211.50 178243 port 127 178243 unique_id port 178243 remote_ip 10.8.0.146 178246 username komeil 178246 mac 178220 bytes_out 28315 178220 bytes_in 34842 178220 station_ip 5.119.33.96 178220 port 117 178220 unique_id port 178220 remote_ip 10.8.0.42 178221 username zahra1101 178221 mac 178221 bytes_out 957438 178221 bytes_in 4159066 178221 station_ip 5.120.82.19 178221 port 127 178221 unique_id port 178221 remote_ip 10.8.0.190 178227 username komeil 178227 mac 178227 bytes_out 0 178227 bytes_in 0 178227 station_ip 37.129.211.50 178227 port 138 178227 unique_id port 178227 remote_ip 10.8.0.146 178228 username rashidi4690 178228 mac 178228 bytes_out 150001 178228 bytes_in 308729 178228 station_ip 5.120.181.88 178228 port 117 178228 unique_id port 178228 remote_ip 10.8.0.242 178231 username komeil 178231 mac 178231 bytes_out 0 178231 bytes_in 0 178231 station_ip 37.129.211.50 178231 port 117 178231 unique_id port 178231 remote_ip 10.8.0.146 178232 username pourshad 178232 mac 178232 bytes_out 51340 178232 bytes_in 245687 178232 station_ip 5.119.33.96 178232 port 136 178232 unique_id port 178232 remote_ip 10.8.0.42 178233 username komeil 178233 mac 178233 bytes_out 0 178233 bytes_in 0 178233 station_ip 37.129.211.50 178233 port 117 178233 unique_id port 178233 remote_ip 10.8.0.146 178235 username komeil 178235 mac 178235 bytes_out 0 178235 bytes_in 0 178235 station_ip 37.129.211.50 178235 port 117 178235 unique_id port 178235 remote_ip 10.8.0.146 178236 username zahra1101 178236 mac 178236 bytes_out 194117 178236 bytes_in 1775853 178236 station_ip 5.120.82.19 178236 port 133 178236 unique_id port 178236 remote_ip 10.8.0.190 178241 username yaghobi 178241 mac 178241 bytes_out 0 178241 bytes_in 0 178241 station_ip 37.129.163.195 178241 port 138 178241 unique_id port 178241 remote_ip 10.8.0.138 178245 username barzegar 178245 mac 178245 bytes_out 0 178245 bytes_in 0 178245 station_ip 5.119.195.192 178245 port 127 178245 unique_id port 178245 remote_ip 10.8.0.10 178249 username barzegar 178249 mac 178249 bytes_out 0 178249 bytes_in 0 178249 station_ip 5.119.195.192 178249 port 117 178249 unique_id port 178249 remote_ip 10.8.0.10 178254 username barzegar 178254 mac 178254 bytes_out 3998 178254 bytes_in 5310 178254 station_ip 5.119.195.192 178254 port 133 178254 unique_id port 178254 remote_ip 10.8.0.10 178256 username zahra1101 178256 mac 178256 bytes_out 68797 178256 bytes_in 217864 178256 station_ip 5.120.82.19 178256 port 137 178256 unique_id port 178256 remote_ip 10.8.0.190 178258 username mohammadjavad 178258 mac 178258 bytes_out 1702 178258 bytes_in 3739 178258 station_ip 37.129.139.91 178258 port 138 178258 unique_id port 178258 remote_ip 10.8.0.110 178260 username komeil 178260 mac 178260 bytes_out 2462 178260 bytes_in 4731 178260 station_ip 37.129.211.50 178260 port 133 178260 unique_id port 178260 remote_ip 10.8.0.146 178266 username barzegar 178266 mac 178266 bytes_out 880987 178266 bytes_in 7443665 178266 station_ip 5.119.195.192 178266 port 133 178266 unique_id port 178266 remote_ip 10.8.0.10 178267 username komeil 178267 mac 178267 bytes_out 0 178267 bytes_in 0 178267 station_ip 37.129.211.50 178267 port 136 178267 unique_id port 178267 remote_ip 10.8.0.146 178268 username komeil 178268 mac 178268 bytes_out 0 178268 bytes_in 0 178268 station_ip 37.129.211.50 178268 port 136 178268 unique_id port 178268 remote_ip 10.8.0.146 178273 username komeil 178273 mac 178273 bytes_out 0 178273 bytes_in 0 178223 station_ip 37.129.222.250 178223 port 127 178223 unique_id port 178223 remote_ip 10.8.0.50 178225 username komeil 178225 mac 178225 bytes_out 0 178225 bytes_in 0 178225 station_ip 37.129.211.50 178225 port 136 178225 unique_id port 178225 remote_ip 10.8.0.146 178230 username komeil 178230 mac 178230 bytes_out 2063 178230 bytes_in 4316 178230 station_ip 37.129.211.50 178230 port 138 178230 unique_id port 178230 remote_ip 10.8.0.146 178234 username komeil 178234 mac 178234 bytes_out 0 178234 bytes_in 0 178234 station_ip 37.129.211.50 178234 port 117 178234 unique_id port 178234 remote_ip 10.8.0.146 178237 username komeil 178237 mac 178237 bytes_out 0 178237 bytes_in 0 178237 station_ip 37.129.211.50 178237 port 133 178237 unique_id port 178237 remote_ip 10.8.0.146 178238 username komeil 178238 mac 178238 bytes_out 0 178238 bytes_in 0 178238 station_ip 37.129.211.50 178238 port 137 178238 unique_id port 178238 remote_ip 10.8.0.146 178240 username yaghobi 178240 mac 178240 bytes_out 1346399 178240 bytes_in 12033549 178240 station_ip 37.129.163.195 178240 port 127 178240 unique_id port 178240 remote_ip 10.8.0.138 178244 username komeil 178244 mac 178244 bytes_out 0 178244 bytes_in 0 178244 station_ip 37.129.211.50 178244 port 136 178244 unique_id port 178244 remote_ip 10.8.0.146 178247 username fezealinaghi 178247 mac 178247 bytes_out 1371007 178247 bytes_in 20211970 178247 station_ip 83.122.172.108 178247 port 117 178247 unique_id port 178247 remote_ip 10.8.0.202 178248 username pourshad 178248 mac 178248 bytes_out 25728 178248 bytes_in 22764 178248 station_ip 5.119.33.96 178248 port 133 178248 unique_id port 178248 remote_ip 10.8.0.42 178250 username komeil 178250 mac 178250 bytes_out 0 178250 bytes_in 0 178250 station_ip 37.129.211.50 178250 port 133 178250 unique_id port 178250 remote_ip 10.8.0.146 178252 username komeil 178252 mac 178252 bytes_out 0 178252 bytes_in 0 178252 station_ip 37.129.211.50 178252 port 117 178252 unique_id port 178252 remote_ip 10.8.0.146 178253 username komeil 178253 mac 178253 bytes_out 0 178253 bytes_in 0 178253 station_ip 37.129.211.50 178253 port 117 178253 unique_id port 178253 remote_ip 10.8.0.146 178255 username komeil 178255 mac 178255 bytes_out 0 178255 bytes_in 0 178255 station_ip 37.129.211.50 178255 port 133 178255 unique_id port 178255 remote_ip 10.8.0.146 178257 username mahdiyehalizadeh 178257 mac 178257 bytes_out 453359 178257 bytes_in 4899547 178257 station_ip 5.120.5.170 178257 port 136 178257 unique_id port 178257 remote_ip 10.8.0.114 178259 username komeil 178259 mac 178259 bytes_out 0 178259 bytes_in 0 178259 station_ip 37.129.211.50 178259 port 133 178259 unique_id port 178259 remote_ip 10.8.0.146 178261 username meysam 178261 kill_reason Another user logged on this global unique id 178261 mac 178261 bytes_out 0 178261 bytes_in 0 178261 station_ip 188.158.50.82 178261 port 117 178261 unique_id port 178261 remote_ip 10.8.0.158 178262 username komeil 178262 mac 178262 bytes_out 0 178262 bytes_in 0 178262 station_ip 37.129.211.50 178262 port 136 178262 unique_id port 178262 remote_ip 10.8.0.146 178264 username komeil 178264 mac 178264 bytes_out 0 178264 bytes_in 0 178264 station_ip 37.129.211.50 178264 port 136 178264 unique_id port 178264 remote_ip 10.8.0.146 178265 username komeil 178265 mac 178265 bytes_out 0 178265 bytes_in 0 178265 station_ip 37.129.211.50 178246 bytes_out 0 178246 bytes_in 0 178246 station_ip 37.129.211.50 178246 port 127 178246 unique_id port 178246 remote_ip 10.8.0.146 178251 username komeil 178251 mac 178251 bytes_out 0 178251 bytes_in 0 178251 station_ip 37.129.211.50 178251 port 117 178251 unique_id port 178251 remote_ip 10.8.0.146 178263 username pourshad 178263 mac 178263 bytes_out 313203 178263 bytes_in 183232 178263 station_ip 5.119.33.96 178263 port 127 178263 unique_id port 178263 remote_ip 10.8.0.42 178271 username kordestani 178271 mac 178271 bytes_out 1363242 178271 bytes_in 17159649 178271 station_ip 151.235.94.191 178271 port 127 178271 unique_id port 178271 remote_ip 10.8.0.130 178274 username pourshad 178274 mac 178274 bytes_out 12650 178274 bytes_in 30447 178274 station_ip 5.119.33.96 178274 port 133 178274 unique_id port 178274 remote_ip 10.8.0.42 178280 username komeil 178280 mac 178280 bytes_out 0 178280 bytes_in 0 178280 station_ip 37.129.211.50 178280 port 127 178280 unique_id port 178280 remote_ip 10.8.0.146 178281 username komeil 178281 mac 178281 bytes_out 0 178281 bytes_in 0 178281 station_ip 37.129.211.50 178281 port 137 178281 unique_id port 178281 remote_ip 10.8.0.146 178285 username barzegar 178285 mac 178285 bytes_out 0 178285 bytes_in 0 178285 station_ip 5.119.195.192 178285 port 139 178285 unique_id port 178285 remote_ip 10.8.0.10 178288 username komeil 178288 mac 178288 bytes_out 0 178288 bytes_in 0 178288 station_ip 37.129.211.50 178288 port 136 178288 unique_id port 178288 remote_ip 10.8.0.146 178291 username houshang 178291 mac 178291 bytes_out 50957 178291 bytes_in 57466 178291 station_ip 5.119.216.181 178291 port 140 178291 unique_id port 178291 remote_ip 10.8.0.82 178292 username kamali3 178292 mac 178292 bytes_out 10040 178292 bytes_in 15615 178292 station_ip 37.129.237.203 178292 port 127 178292 unique_id port 178292 remote_ip 10.8.0.106 178299 username komeil 178299 mac 178299 bytes_out 5934 178299 bytes_in 10815 178299 station_ip 37.129.211.50 178299 port 127 178299 unique_id port 178299 remote_ip 10.8.0.146 178304 username morteza 178304 mac 178304 bytes_out 0 178304 bytes_in 0 178304 station_ip 37.129.129.196 178304 port 133 178304 unique_id port 178304 remote_ip 10.8.0.174 178307 username komeil 178307 mac 178307 bytes_out 58377 178307 bytes_in 118430 178307 station_ip 37.129.211.50 178307 port 140 178307 unique_id port 178307 remote_ip 10.8.0.146 178311 username komeil 178311 mac 178311 bytes_out 1904 178311 bytes_in 4156 178311 station_ip 37.129.211.50 178311 port 127 178311 unique_id port 178311 remote_ip 10.8.0.146 178314 username barzegar 178314 mac 178314 bytes_out 0 178314 bytes_in 0 178314 station_ip 5.119.195.192 178314 port 133 178314 unique_id port 178314 remote_ip 10.8.0.10 178321 username rashidi4690 178321 mac 178321 bytes_out 30007 178321 bytes_in 94323 178321 station_ip 5.120.181.88 178321 port 140 178321 unique_id port 178321 remote_ip 10.8.0.242 178325 username komeil 178325 mac 178325 bytes_out 0 178325 bytes_in 0 178325 station_ip 37.129.211.50 178325 port 136 178325 unique_id port 178325 remote_ip 10.8.0.146 178327 username meysam 178327 mac 178327 bytes_out 3564443 178327 bytes_in 51734796 178327 station_ip 188.158.50.82 178327 port 141 178327 unique_id port 178327 remote_ip 10.8.0.158 178331 username morteza 178331 mac 178331 bytes_out 0 178331 bytes_in 0 178265 port 136 178265 unique_id port 178265 remote_ip 10.8.0.146 178269 username komeil 178269 mac 178269 bytes_out 0 178269 bytes_in 0 178269 station_ip 37.129.211.50 178269 port 136 178269 unique_id port 178269 remote_ip 10.8.0.146 178270 username komeil 178270 mac 178270 bytes_out 0 178270 bytes_in 0 178270 station_ip 37.129.211.50 178270 port 136 178270 unique_id port 178270 remote_ip 10.8.0.146 178272 username komeil 178272 mac 178272 bytes_out 0 178272 bytes_in 0 178272 station_ip 37.129.211.50 178272 port 136 178272 unique_id port 178272 remote_ip 10.8.0.146 178275 username komeil 178275 mac 178275 bytes_out 4246 178275 bytes_in 20232 178275 station_ip 37.129.211.50 178275 port 127 178275 unique_id port 178275 remote_ip 10.8.0.146 178276 username komeil 178276 mac 178276 bytes_out 0 178276 bytes_in 0 178276 station_ip 37.129.211.50 178276 port 127 178276 unique_id port 178276 remote_ip 10.8.0.146 178278 username komeil 178278 mac 178278 bytes_out 0 178278 bytes_in 0 178278 station_ip 37.129.211.50 178278 port 127 178278 unique_id port 178278 remote_ip 10.8.0.146 178282 username mehdizare 178282 kill_reason Maximum check online fails reached 178282 mac 178282 bytes_out 0 178282 bytes_in 0 178282 station_ip 37.129.237.135 178282 port 138 178282 unique_id port 178286 username komeil 178286 mac 178286 bytes_out 0 178286 bytes_in 0 178286 station_ip 37.129.211.50 178286 port 137 178286 unique_id port 178286 remote_ip 10.8.0.146 178294 username mohammadjavad 178294 mac 178294 bytes_out 0 178294 bytes_in 0 178294 station_ip 37.129.139.158 178294 port 127 178294 unique_id port 178294 remote_ip 10.8.0.110 178296 username rashidi4690 178296 mac 178296 bytes_out 80182 178296 bytes_in 302777 178296 station_ip 5.120.181.88 178296 port 141 178296 unique_id port 178296 remote_ip 10.8.0.242 178298 username komeil 178298 mac 178298 bytes_out 17826 178298 bytes_in 35481 178298 station_ip 37.129.211.50 178298 port 127 178298 unique_id port 178298 remote_ip 10.8.0.146 178300 username barzegar 178300 mac 178300 bytes_out 0 178300 bytes_in 0 178300 station_ip 5.119.195.192 178300 port 140 178300 unique_id port 178300 remote_ip 10.8.0.10 178305 username meysam 178305 mac 178305 bytes_out 0 178305 bytes_in 0 178305 station_ip 188.158.50.82 178305 port 117 178305 unique_id port 178317 username soleymani5056 178317 mac 178317 bytes_out 91942 178317 bytes_in 221778 178317 station_ip 5.119.27.50 178317 port 127 178317 unique_id port 178317 remote_ip 10.8.0.226 178320 username kamali3 178320 mac 178320 bytes_out 69727 178320 bytes_in 96764 178320 station_ip 37.129.237.203 178320 port 136 178320 unique_id port 178320 remote_ip 10.8.0.106 178322 username komeil 178322 mac 178322 bytes_out 522675 178322 bytes_in 3067126 178322 station_ip 37.129.211.50 178322 port 127 178322 unique_id port 178322 remote_ip 10.8.0.146 178323 username komeil 178323 mac 178323 bytes_out 0 178323 bytes_in 0 178323 station_ip 37.129.211.50 178323 port 127 178323 unique_id port 178323 remote_ip 10.8.0.146 178326 username shadkam 178326 mac 178326 bytes_out 145742 178326 bytes_in 985546 178326 station_ip 37.129.255.140 178326 port 134 178326 unique_id port 178326 remote_ip 10.8.0.74 178330 username nilufarrajaei 178330 mac 178330 bytes_out 0 178330 bytes_in 0 178330 station_ip 37.129.164.192 178330 port 126 178330 unique_id port 178337 username komeil 178337 mac 178273 station_ip 37.129.211.50 178273 port 127 178273 unique_id port 178273 remote_ip 10.8.0.146 178277 username komeil 178277 mac 178277 bytes_out 6341 178277 bytes_in 10918 178277 station_ip 37.129.211.50 178277 port 127 178277 unique_id port 178277 remote_ip 10.8.0.146 178279 username soleymani5056 178279 mac 178279 bytes_out 211246 178279 bytes_in 476564 178279 station_ip 5.119.251.121 178279 port 137 178279 unique_id port 178279 remote_ip 10.8.0.226 178283 username meysam 178283 kill_reason Another user logged on this global unique id 178283 mac 178283 bytes_out 0 178283 bytes_in 0 178283 station_ip 188.158.50.82 178283 port 117 178283 unique_id port 178284 username komeil 178284 mac 178284 bytes_out 0 178284 bytes_in 0 178284 station_ip 37.129.211.50 178284 port 137 178284 unique_id port 178284 remote_ip 10.8.0.146 178287 username mahdiyehalizadeh 178287 mac 178287 bytes_out 531726 178287 bytes_in 6012631 178287 station_ip 5.120.5.170 178287 port 136 178287 unique_id port 178287 remote_ip 10.8.0.114 178289 username mehdizare 178289 mac 178289 bytes_out 10143 178289 bytes_in 12743 178289 station_ip 83.122.92.154 178289 port 139 178289 unique_id port 178289 remote_ip 10.8.0.210 178290 username rashidi4690 178290 mac 178290 bytes_out 0 178290 bytes_in 0 178290 station_ip 5.120.181.88 178290 port 136 178290 unique_id port 178290 remote_ip 10.8.0.242 178293 username komeil 178293 mac 178293 bytes_out 14195 178293 bytes_in 35768 178293 station_ip 37.129.211.50 178293 port 139 178293 unique_id port 178293 remote_ip 10.8.0.146 178295 username komeil 178295 mac 178295 bytes_out 0 178295 bytes_in 0 178295 station_ip 37.129.211.50 178295 port 139 178295 unique_id port 178295 remote_ip 10.8.0.146 178297 username mohammadjavad 178297 mac 178297 bytes_out 0 178297 bytes_in 0 178297 station_ip 37.129.139.158 178297 port 127 178297 unique_id port 178297 remote_ip 10.8.0.110 178301 username godarzi 178301 kill_reason Another user logged on this global unique id 178301 mac 178301 bytes_out 0 178301 bytes_in 0 178301 station_ip 5.202.26.240 178301 port 134 178301 unique_id port 178301 remote_ip 10.8.0.38 178302 username mohammadjavad 178302 mac 178302 bytes_out 18836 178302 bytes_in 402762 178302 station_ip 37.129.139.158 178302 port 127 178302 unique_id port 178302 remote_ip 10.8.0.110 178303 username pourshad 178303 mac 178303 bytes_out 53533 178303 bytes_in 99547 178303 station_ip 5.119.33.96 178303 port 133 178303 unique_id port 178303 remote_ip 10.8.0.42 178306 username houshang 178306 mac 178306 bytes_out 144865 178306 bytes_in 799769 178306 station_ip 5.119.216.181 178306 port 127 178306 unique_id port 178306 remote_ip 10.8.0.82 178308 username komeil 178308 mac 178308 bytes_out 0 178308 bytes_in 0 178308 station_ip 37.129.211.50 178308 port 127 178308 unique_id port 178308 remote_ip 10.8.0.146 178309 username morteza 178309 mac 178309 bytes_out 39086 178309 bytes_in 143408 178309 station_ip 37.129.129.196 178309 port 133 178309 unique_id port 178309 remote_ip 10.8.0.174 178310 username godarzi 178310 mac 178310 bytes_out 0 178310 bytes_in 0 178310 station_ip 5.202.26.240 178310 port 134 178310 unique_id port 178312 username komeil 178312 mac 178312 bytes_out 0 178312 bytes_in 0 178312 station_ip 37.129.211.50 178312 port 127 178312 unique_id port 178312 remote_ip 10.8.0.146 178313 username malekpoir 178313 mac 178313 bytes_out 0 178313 bytes_in 0 178313 station_ip 5.120.164.161 178313 port 88 178313 unique_id port 178315 username komeil 178315 mac 178315 bytes_out 0 178315 bytes_in 0 178315 station_ip 37.129.211.50 178315 port 133 178315 unique_id port 178315 remote_ip 10.8.0.146 178316 username barzegar 178316 mac 178316 bytes_out 0 178316 bytes_in 0 178316 station_ip 5.119.195.192 178316 port 133 178316 unique_id port 178316 remote_ip 10.8.0.10 178318 username barzegar 178318 mac 178318 bytes_out 3062 178318 bytes_in 3955 178318 station_ip 5.119.195.192 178318 port 140 178318 unique_id port 178318 remote_ip 10.8.0.10 178319 username yaghobi 178319 mac 178319 bytes_out 72936 178319 bytes_in 260855 178319 station_ip 37.129.216.200 178319 port 133 178319 unique_id port 178319 remote_ip 10.8.0.138 178324 username barzegar 178324 mac 178324 bytes_out 0 178324 bytes_in 0 178324 station_ip 5.119.195.192 178324 port 127 178324 unique_id port 178324 remote_ip 10.8.0.10 178328 username barzegar 178328 mac 178328 bytes_out 0 178328 bytes_in 0 178328 station_ip 5.119.195.192 178328 port 140 178328 unique_id port 178328 remote_ip 10.8.0.10 178329 username pourshad 178329 mac 178329 bytes_out 38377 178329 bytes_in 172102 178329 station_ip 5.119.33.96 178329 port 117 178329 unique_id port 178329 remote_ip 10.8.0.42 178332 username komeil 178332 mac 178332 bytes_out 33643 178332 bytes_in 73610 178332 station_ip 37.129.211.50 178332 port 136 178332 unique_id port 178332 remote_ip 10.8.0.146 178339 username barzegar 178339 mac 178339 bytes_out 4249 178339 bytes_in 6532 178339 station_ip 5.119.195.192 178339 port 136 178339 unique_id port 178339 remote_ip 10.8.0.10 178341 username komeil 178341 mac 178341 bytes_out 0 178341 bytes_in 0 178341 station_ip 37.129.211.50 178341 port 140 178341 unique_id port 178341 remote_ip 10.8.0.146 178347 username komeil 178347 mac 178347 bytes_out 61301 178347 bytes_in 226176 178347 station_ip 37.129.211.50 178347 port 127 178347 unique_id port 178347 remote_ip 10.8.0.146 178349 username barzegar 178349 mac 178349 bytes_out 5471 178349 bytes_in 6590 178349 station_ip 5.119.195.192 178349 port 141 178349 unique_id port 178349 remote_ip 10.8.0.10 178353 username godarzi 178353 kill_reason Another user logged on this global unique id 178353 mac 178353 bytes_out 0 178353 bytes_in 0 178353 station_ip 5.202.26.240 178353 port 117 178353 unique_id port 178353 remote_ip 10.8.0.38 178356 username rashidi4690 178356 mac 178356 bytes_out 108009 178356 bytes_in 385081 178356 station_ip 5.120.181.88 178356 port 126 178356 unique_id port 178356 remote_ip 10.8.0.242 178358 username komeil 178358 mac 178358 bytes_out 0 178358 bytes_in 0 178358 station_ip 37.129.211.50 178358 port 136 178358 unique_id port 178358 remote_ip 10.8.0.146 178360 username komeil 178360 mac 178360 bytes_out 0 178360 bytes_in 0 178360 station_ip 37.129.211.50 178360 port 136 178360 unique_id port 178360 remote_ip 10.8.0.146 178363 username komeil 178363 mac 178363 bytes_out 0 178363 bytes_in 0 178363 station_ip 37.129.211.50 178363 port 126 178363 unique_id port 178363 remote_ip 10.8.0.146 178366 username barzegar 178366 mac 178366 bytes_out 0 178366 bytes_in 0 178366 station_ip 5.119.195.192 178366 port 126 178366 unique_id port 178366 remote_ip 10.8.0.10 178368 username komeil 178368 mac 178368 bytes_out 0 178368 bytes_in 0 178368 station_ip 37.129.211.50 178368 port 126 178368 unique_id port 178368 remote_ip 10.8.0.146 178331 station_ip 37.129.168.204 178331 port 140 178331 unique_id port 178331 remote_ip 10.8.0.174 178333 username kordestani 178333 mac 178333 bytes_out 694941 178333 bytes_in 8577496 178333 station_ip 151.235.94.191 178333 port 137 178333 unique_id port 178333 remote_ip 10.8.0.130 178334 username komeil 178334 mac 178334 bytes_out 0 178334 bytes_in 0 178334 station_ip 37.129.211.50 178334 port 136 178334 unique_id port 178334 remote_ip 10.8.0.146 178335 username komeil 178335 mac 178335 bytes_out 0 178335 bytes_in 0 178335 station_ip 37.129.211.50 178335 port 136 178335 unique_id port 178335 remote_ip 10.8.0.146 178336 username meysam 178336 mac 178336 bytes_out 2032941 178336 bytes_in 29549742 178336 station_ip 188.158.50.82 178336 port 127 178336 unique_id port 178336 remote_ip 10.8.0.158 178345 username mehdizare 178345 mac 178345 bytes_out 89567 178345 bytes_in 964241 178345 station_ip 83.122.219.248 178345 port 127 178345 unique_id port 178345 remote_ip 10.8.0.210 178346 username yaghobi 178346 mac 178346 bytes_out 420106 178346 bytes_in 2104250 178346 station_ip 37.129.167.113 178346 port 136 178346 unique_id port 178346 remote_ip 10.8.0.138 178351 username kamali3 178351 mac 178351 bytes_out 2296 178351 bytes_in 4604 178351 station_ip 37.129.237.203 178351 port 127 178351 unique_id port 178351 remote_ip 10.8.0.106 178352 username pourshad 178352 mac 178352 bytes_out 50315 178352 bytes_in 91758 178352 station_ip 5.119.33.96 178352 port 126 178352 unique_id port 178352 remote_ip 10.8.0.42 178354 username barzegar 178354 mac 178354 bytes_out 0 178354 bytes_in 0 178354 station_ip 5.119.195.192 178354 port 126 178354 unique_id port 178354 remote_ip 10.8.0.10 178359 username komeil 178359 mac 178359 bytes_out 0 178359 bytes_in 0 178359 station_ip 37.129.211.50 178359 port 136 178359 unique_id port 178359 remote_ip 10.8.0.146 178367 username komeil 178367 mac 178367 bytes_out 0 178367 bytes_in 0 178367 station_ip 37.129.211.50 178367 port 141 178367 unique_id port 178367 remote_ip 10.8.0.146 178380 username soleymani5056 178380 mac 178380 bytes_out 72878 178380 bytes_in 234856 178380 station_ip 5.120.55.227 178380 port 136 178380 unique_id port 178380 remote_ip 10.8.0.226 178389 username mehdizare 178389 mac 178389 bytes_out 3792 178389 bytes_in 7767 178389 station_ip 83.122.219.248 178389 port 127 178389 unique_id port 178389 remote_ip 10.8.0.210 178390 username yaghobi 178390 mac 178390 bytes_out 559161 178390 bytes_in 2644823 178390 station_ip 37.129.162.248 178390 port 141 178390 unique_id port 178390 remote_ip 10.8.0.138 178392 username fezealinaghi 178392 kill_reason Another user logged on this global unique id 178392 mac 178392 bytes_out 0 178392 bytes_in 0 178392 station_ip 83.122.221.128 178392 port 134 178392 unique_id port 178396 username soleymani5056 178396 mac 178396 bytes_out 241101 178396 bytes_in 854315 178396 station_ip 5.119.242.249 178396 port 137 178396 unique_id port 178396 remote_ip 10.8.0.226 178401 username fezealinaghi 178401 mac 178401 bytes_out 0 178401 bytes_in 0 178401 station_ip 83.122.221.128 178401 port 134 178401 unique_id port 178403 username yaghobi 178403 mac 178403 bytes_out 317377 178403 bytes_in 452154 178403 station_ip 83.123.6.30 178403 port 144 178403 unique_id port 178403 remote_ip 10.8.0.138 178407 username sabaghnezhad 178407 mac 178407 bytes_out 13840 178407 bytes_in 16466 178407 station_ip 83.123.18.115 178337 bytes_out 0 178337 bytes_in 0 178337 station_ip 37.129.211.50 178337 port 140 178337 unique_id port 178337 remote_ip 10.8.0.146 178338 username komeil 178338 mac 178338 bytes_out 0 178338 bytes_in 0 178338 station_ip 37.129.211.50 178338 port 127 178338 unique_id port 178338 remote_ip 10.8.0.146 178340 username kordestani 178340 mac 178340 bytes_out 7083 178340 bytes_in 6208 178340 station_ip 151.235.94.191 178340 port 137 178340 unique_id port 178340 remote_ip 10.8.0.130 178342 username komeil 178342 mac 178342 bytes_out 0 178342 bytes_in 0 178342 station_ip 37.129.211.50 178342 port 137 178342 unique_id port 178342 remote_ip 10.8.0.146 178343 username komeil 178343 mac 178343 bytes_out 0 178343 bytes_in 0 178343 station_ip 37.129.211.50 178343 port 137 178343 unique_id port 178343 remote_ip 10.8.0.146 178344 username komeil 178344 mac 178344 bytes_out 0 178344 bytes_in 0 178344 station_ip 37.129.211.50 178344 port 137 178344 unique_id port 178344 remote_ip 10.8.0.146 178348 username komeil 178348 mac 178348 bytes_out 0 178348 bytes_in 0 178348 station_ip 37.129.211.50 178348 port 127 178348 unique_id port 178348 remote_ip 10.8.0.146 178350 username kamali3 178350 mac 178350 bytes_out 85388 178350 bytes_in 118212 178350 station_ip 37.129.237.203 178350 port 133 178350 unique_id port 178350 remote_ip 10.8.0.106 178355 username komeil 178355 mac 178355 bytes_out 10769 178355 bytes_in 15280 178355 station_ip 37.129.211.50 178355 port 133 178355 unique_id port 178355 remote_ip 10.8.0.146 178357 username kamali3 178357 mac 178357 bytes_out 43236 178357 bytes_in 64942 178357 station_ip 37.129.237.203 178357 port 127 178357 unique_id port 178357 remote_ip 10.8.0.106 178361 username komeil 178361 mac 178361 bytes_out 0 178361 bytes_in 0 178361 station_ip 37.129.211.50 178361 port 136 178361 unique_id port 178361 remote_ip 10.8.0.146 178362 username rashidi4690 178362 mac 178362 bytes_out 168895 178362 bytes_in 355266 178362 station_ip 5.120.181.88 178362 port 126 178362 unique_id port 178362 remote_ip 10.8.0.242 178364 username barzegar 178364 mac 178364 bytes_out 0 178364 bytes_in 0 178364 station_ip 5.119.195.192 178364 port 126 178364 unique_id port 178364 remote_ip 10.8.0.10 178365 username rashidi4690 178365 mac 178365 bytes_out 0 178365 bytes_in 0 178365 station_ip 5.120.181.88 178365 port 142 178365 unique_id port 178365 remote_ip 10.8.0.242 178369 username komeil 178369 mac 178369 bytes_out 0 178369 bytes_in 0 178369 station_ip 37.129.211.50 178369 port 126 178369 unique_id port 178369 remote_ip 10.8.0.146 178373 username komeil 178373 mac 178373 bytes_out 0 178373 bytes_in 0 178373 station_ip 37.129.211.50 178373 port 126 178373 unique_id port 178373 remote_ip 10.8.0.146 178374 username mehdizare 178374 mac 178374 bytes_out 55223 178374 bytes_in 97338 178374 station_ip 83.122.219.248 178374 port 137 178374 unique_id port 178374 remote_ip 10.8.0.210 178376 username fezealinaghi 178376 kill_reason Another user logged on this global unique id 178376 mac 178376 bytes_out 0 178376 bytes_in 0 178376 station_ip 83.122.221.128 178376 port 134 178376 unique_id port 178376 remote_ip 10.8.0.202 178379 username mehdizare 178379 mac 178379 bytes_out 0 178379 bytes_in 0 178379 station_ip 83.122.219.248 178379 port 137 178379 unique_id port 178379 remote_ip 10.8.0.210 178381 username fezealinaghi 178381 kill_reason Another user logged on this global unique id 178370 username barzegar 178370 mac 178370 bytes_out 0 178370 bytes_in 0 178370 station_ip 5.119.195.192 178370 port 141 178370 unique_id port 178370 remote_ip 10.8.0.10 178371 username komeil 178371 mac 178371 bytes_out 0 178371 bytes_in 0 178371 station_ip 37.129.211.50 178371 port 126 178371 unique_id port 178371 remote_ip 10.8.0.146 178372 username komeil 178372 mac 178372 bytes_out 0 178372 bytes_in 0 178372 station_ip 37.129.211.50 178372 port 126 178372 unique_id port 178372 remote_ip 10.8.0.146 178375 username soleymani5056 178375 mac 178375 bytes_out 151330 178375 bytes_in 328862 178375 station_ip 5.120.21.26 178375 port 136 178375 unique_id port 178375 remote_ip 10.8.0.226 178377 username barzegar 178377 mac 178377 bytes_out 0 178377 bytes_in 0 178377 station_ip 5.119.195.192 178377 port 136 178377 unique_id port 178377 remote_ip 10.8.0.10 178378 username soleymani5056 178378 mac 178378 bytes_out 22473 178378 bytes_in 31017 178378 station_ip 5.120.186.134 178378 port 137 178378 unique_id port 178378 remote_ip 10.8.0.226 178384 username mehdizare 178384 mac 178384 bytes_out 0 178384 bytes_in 0 178384 station_ip 83.122.219.248 178384 port 137 178384 unique_id port 178384 remote_ip 10.8.0.210 178385 username mehdizare 178385 mac 178385 bytes_out 10074 178385 bytes_in 21488 178385 station_ip 83.122.219.248 178385 port 136 178385 unique_id port 178385 remote_ip 10.8.0.210 178386 username kamali3 178386 mac 178386 bytes_out 572184 178386 bytes_in 3965766 178386 station_ip 37.129.237.203 178386 port 127 178386 unique_id port 178386 remote_ip 10.8.0.106 178388 username barzegar 178388 mac 178388 bytes_out 0 178388 bytes_in 0 178388 station_ip 5.119.195.192 178388 port 137 178388 unique_id port 178388 remote_ip 10.8.0.10 178394 username khademi 178394 kill_reason Another user logged on this global unique id 178394 mac 178394 bytes_out 0 178394 bytes_in 0 178394 station_ip 37.129.154.227 178394 port 107 178394 unique_id port 178399 username mehdizare 178399 mac 178399 bytes_out 28532 178399 bytes_in 59220 178399 station_ip 83.122.219.248 178399 port 143 178399 unique_id port 178399 remote_ip 10.8.0.210 178402 username komeil 178402 mac 178402 bytes_out 0 178402 bytes_in 0 178402 station_ip 83.123.87.4 178402 port 126 178402 unique_id port 178402 remote_ip 10.8.0.146 178404 username sabaghnezhad 178404 mac 178404 bytes_out 579358 178404 bytes_in 664539 178404 station_ip 83.123.13.99 178404 port 142 178404 unique_id port 178404 remote_ip 10.8.0.66 178406 username komeil 178406 mac 178406 bytes_out 0 178406 bytes_in 0 178406 station_ip 83.123.22.180 178406 port 142 178406 unique_id port 178406 remote_ip 10.8.0.146 178408 username komeil 178408 mac 178408 bytes_out 0 178408 bytes_in 0 178408 station_ip 83.123.103.240 178408 port 137 178408 unique_id port 178408 remote_ip 10.8.0.146 178412 username komeil 178412 mac 178412 bytes_out 87228 178412 bytes_in 143374 178412 station_ip 83.123.112.204 178412 port 134 178412 unique_id port 178412 remote_ip 10.8.0.146 178415 username rezaei 178415 mac 178415 bytes_out 3797338 178415 bytes_in 37738582 178415 station_ip 5.120.68.177 178415 port 141 178415 unique_id port 178415 remote_ip 10.8.0.198 178418 username komeil 178418 mac 178418 bytes_out 0 178418 bytes_in 0 178418 station_ip 83.123.70.168 178418 port 141 178418 unique_id port 178418 remote_ip 10.8.0.146 178420 username barzegar 178420 mac 178381 mac 178381 bytes_out 0 178381 bytes_in 0 178381 station_ip 83.122.221.128 178381 port 134 178381 unique_id port 178382 username mehdizare 178382 mac 178382 bytes_out 5707 178382 bytes_in 8845 178382 station_ip 83.122.219.248 178382 port 142 178382 unique_id port 178382 remote_ip 10.8.0.210 178383 username mehdizare 178383 mac 178383 bytes_out 0 178383 bytes_in 0 178383 station_ip 83.122.219.248 178383 port 136 178383 unique_id port 178383 remote_ip 10.8.0.210 178387 username mehdizare 178387 mac 178387 bytes_out 4006 178387 bytes_in 8975 178387 station_ip 83.122.219.248 178387 port 137 178387 unique_id port 178387 remote_ip 10.8.0.210 178391 username mehdizare 178391 mac 178391 bytes_out 9176 178391 bytes_in 15068 178391 station_ip 83.122.219.248 178391 port 143 178391 unique_id port 178391 remote_ip 10.8.0.210 178393 username meysam 178393 mac 178393 bytes_out 483901 178393 bytes_in 5503109 178393 station_ip 188.159.252.71 178393 port 127 178393 unique_id port 178393 remote_ip 10.8.0.158 178395 username mehdizare 178395 mac 178395 bytes_out 10722 178395 bytes_in 13446 178395 station_ip 83.122.219.248 178395 port 141 178395 unique_id port 178395 remote_ip 10.8.0.210 178397 username soleymani5056 178397 mac 178397 bytes_out 89754 178397 bytes_in 109478 178397 station_ip 5.119.38.215 178397 port 141 178397 unique_id port 178397 remote_ip 10.8.0.226 178398 username barzegar 178398 mac 178398 bytes_out 0 178398 bytes_in 0 178398 station_ip 5.119.195.192 178398 port 137 178398 unique_id port 178398 remote_ip 10.8.0.10 178400 username komeil 178400 mac 178400 bytes_out 1923768 178400 bytes_in 19222878 178400 station_ip 37.129.211.50 178400 port 126 178400 unique_id port 178400 remote_ip 10.8.0.146 178405 username mehdizare 178405 mac 178405 bytes_out 38875 178405 bytes_in 246745 178405 station_ip 83.122.219.248 178405 port 137 178405 unique_id port 178405 remote_ip 10.8.0.210 178409 username khademi 178409 kill_reason Another user logged on this global unique id 178409 mac 178409 bytes_out 0 178409 bytes_in 0 178409 station_ip 37.129.154.227 178409 port 107 178409 unique_id port 178413 username komeil 178413 mac 178413 bytes_out 0 178413 bytes_in 0 178413 station_ip 83.123.21.232 178413 port 137 178413 unique_id port 178413 remote_ip 10.8.0.146 178417 username aminvpn 178417 unique_id port 178417 terminate_cause User-Request 178417 bytes_out 20220052 178417 bytes_in 696922878 178417 station_ip 31.57.123.26 178417 port 15728694 178417 nas_port_type Virtual 178417 remote_ip 5.5.5.240 178421 username shadkam 178421 mac 178421 bytes_out 465638 178421 bytes_in 3932862 178421 station_ip 83.123.104.213 178421 port 134 178421 unique_id port 178421 remote_ip 10.8.0.74 178424 username komeil 178424 mac 178424 bytes_out 0 178424 bytes_in 0 178424 station_ip 83.123.113.152 178424 port 126 178424 unique_id port 178424 remote_ip 10.8.0.146 178428 username khademi 178428 kill_reason Another user logged on this global unique id 178428 mac 178428 bytes_out 0 178428 bytes_in 0 178428 station_ip 37.129.154.227 178428 port 107 178428 unique_id port 178440 username komeil 178440 mac 178440 bytes_out 0 178440 bytes_in 0 178440 station_ip 83.123.89.224 178440 port 141 178440 unique_id port 178440 remote_ip 10.8.0.146 178446 username soleymani5056 178446 mac 178446 bytes_out 71493 178446 bytes_in 72190 178446 station_ip 5.120.0.111 178446 port 137 178446 unique_id port 178446 remote_ip 10.8.0.226 178448 username pourshad 178407 port 134 178407 unique_id port 178407 remote_ip 10.8.0.66 178410 username majidsarmast 178410 kill_reason Another user logged on this global unique id 178410 mac 178410 bytes_out 0 178410 bytes_in 0 178410 station_ip 83.122.143.3 178410 port 127 178410 unique_id port 178410 remote_ip 10.8.0.170 178411 username barzegar 178411 mac 178411 bytes_out 5206 178411 bytes_in 10931 178411 station_ip 5.119.195.192 178411 port 137 178411 unique_id port 178411 remote_ip 10.8.0.10 178414 username komeil 178414 mac 178414 bytes_out 0 178414 bytes_in 0 178414 station_ip 83.123.74.44 178414 port 137 178414 unique_id port 178414 remote_ip 10.8.0.146 178416 username fezealinaghi 178416 mac 178416 bytes_out 867110 178416 bytes_in 9117386 178416 station_ip 83.122.221.128 178416 port 126 178416 unique_id port 178416 remote_ip 10.8.0.202 178419 username komeil 178419 mac 178419 bytes_out 0 178419 bytes_in 0 178419 station_ip 83.123.60.164 178419 port 126 178419 unique_id port 178419 remote_ip 10.8.0.146 178422 username komeil 178422 mac 178422 bytes_out 9447 178422 bytes_in 32893 178422 station_ip 83.123.3.200 178422 port 126 178422 unique_id port 178422 remote_ip 10.8.0.146 178425 username kamali3 178425 mac 178425 bytes_out 126715 178425 bytes_in 258525 178425 station_ip 83.123.103.193 178425 port 136 178425 unique_id port 178425 remote_ip 10.8.0.106 178426 username sedighe 178426 mac 178426 bytes_out 154917 178426 bytes_in 262814 178426 station_ip 83.123.93.96 178426 port 141 178426 unique_id port 178426 remote_ip 10.8.0.46 178427 username soleymani5056 178427 mac 178427 bytes_out 199168 178427 bytes_in 798067 178427 station_ip 5.120.77.19 178427 port 143 178427 unique_id port 178427 remote_ip 10.8.0.226 178430 username komeil 178430 mac 178430 bytes_out 20133 178430 bytes_in 40341 178430 station_ip 83.123.87.8 178430 port 126 178430 unique_id port 178430 remote_ip 10.8.0.146 178432 username fezealinaghi 178432 mac 178432 bytes_out 718475 178432 bytes_in 8540426 178432 station_ip 83.123.59.149 178432 port 134 178432 unique_id port 178432 remote_ip 10.8.0.202 178435 username komeil 178435 mac 178435 bytes_out 0 178435 bytes_in 0 178435 station_ip 83.123.89.224 178435 port 136 178435 unique_id port 178435 remote_ip 10.8.0.146 178436 username sedighe 178436 mac 178436 bytes_out 50035 178436 bytes_in 39581 178436 station_ip 83.123.93.96 178436 port 141 178436 unique_id port 178436 remote_ip 10.8.0.46 178438 username shadkam 178438 mac 178438 bytes_out 1248972 178438 bytes_in 11324045 178438 station_ip 83.123.24.0 178438 port 137 178438 unique_id port 178438 remote_ip 10.8.0.74 178439 username soleymani5056 178439 mac 178439 bytes_out 110222 178439 bytes_in 323633 178439 station_ip 5.119.130.156 178439 port 144 178439 unique_id port 178439 remote_ip 10.8.0.226 178444 username majidsarmast 178444 kill_reason Another user logged on this global unique id 178444 mac 178444 bytes_out 0 178444 bytes_in 0 178444 station_ip 83.122.143.3 178444 port 127 178444 unique_id port 178445 username kalantary6037 178445 mac 178445 bytes_out 959087 178445 bytes_in 7015736 178445 station_ip 83.123.9.28 178445 port 136 178445 unique_id port 178445 remote_ip 10.8.0.50 178447 username mehdizare 178447 mac 178447 bytes_out 20084 178447 bytes_in 35588 178447 station_ip 83.123.117.101 178447 port 134 178447 unique_id port 178447 remote_ip 10.8.0.210 178449 username komeil 178449 mac 178449 bytes_out 31121 178449 bytes_in 135387 178420 bytes_out 4901 178420 bytes_in 11164 178420 station_ip 5.119.195.192 178420 port 137 178420 unique_id port 178420 remote_ip 10.8.0.10 178423 username pourshad 178423 mac 178423 bytes_out 193105 178423 bytes_in 815562 178423 station_ip 5.119.33.96 178423 port 133 178423 unique_id port 178423 remote_ip 10.8.0.42 178429 username pourshad 178429 mac 178429 bytes_out 14930 178429 bytes_in 18845 178429 station_ip 5.119.33.96 178429 port 136 178429 unique_id port 178429 remote_ip 10.8.0.42 178431 username komeil 178431 mac 178431 bytes_out 0 178431 bytes_in 0 178431 station_ip 83.123.89.224 178431 port 126 178431 unique_id port 178431 remote_ip 10.8.0.146 178433 username komeil 178433 mac 178433 bytes_out 0 178433 bytes_in 0 178433 station_ip 83.123.89.224 178433 port 134 178433 unique_id port 178433 remote_ip 10.8.0.146 178434 username barzegar 178434 mac 178434 bytes_out 0 178434 bytes_in 0 178434 station_ip 5.119.195.192 178434 port 134 178434 unique_id port 178434 remote_ip 10.8.0.10 178437 username komeil 178437 mac 178437 bytes_out 0 178437 bytes_in 0 178437 station_ip 83.123.89.224 178437 port 134 178437 unique_id port 178437 remote_ip 10.8.0.146 178441 username komeil 178441 mac 178441 bytes_out 0 178441 bytes_in 0 178441 station_ip 83.123.89.224 178441 port 144 178441 unique_id port 178441 remote_ip 10.8.0.146 178442 username pourshad 178442 mac 178442 bytes_out 68213 178442 bytes_in 69495 178442 station_ip 5.119.33.96 178442 port 143 178442 unique_id port 178442 remote_ip 10.8.0.42 178443 username komeil 178443 mac 178443 bytes_out 0 178443 bytes_in 0 178443 station_ip 83.123.89.224 178443 port 141 178443 unique_id port 178443 remote_ip 10.8.0.146 178451 username sabaghnezhad 178451 mac 178451 bytes_out 865684 178451 bytes_in 505930 178451 station_ip 83.123.18.115 178451 port 142 178451 unique_id port 178451 remote_ip 10.8.0.66 178454 username kordestani 178454 mac 178454 bytes_out 1862895 178454 bytes_in 11771222 178454 station_ip 151.235.94.191 178454 port 140 178454 unique_id port 178454 remote_ip 10.8.0.130 178457 username pourshad 178457 mac 178457 bytes_out 31049 178457 bytes_in 96692 178457 station_ip 5.119.33.96 178457 port 136 178457 unique_id port 178457 remote_ip 10.8.0.42 178458 username fezealinaghi 178486 port 88 178458 kill_reason Another user logged on this global unique id 178458 mac 178458 bytes_out 0 178458 bytes_in 0 178458 station_ip 83.123.126.141 178458 port 126 178458 unique_id port 178458 remote_ip 10.8.0.202 178459 username mehdizare 178459 mac 178459 bytes_out 15233 178459 bytes_in 21212 178459 station_ip 83.123.0.121 178459 port 140 178459 unique_id port 178459 remote_ip 10.8.0.210 178463 username nilufarrajaei 178463 mac 178463 bytes_out 497797 178463 bytes_in 2805901 178463 station_ip 83.123.56.50 178463 port 133 178463 unique_id port 178463 remote_ip 10.8.0.194 178465 username majidsarmast 178465 kill_reason Another user logged on this global unique id 178465 mac 178465 bytes_out 0 178465 bytes_in 0 178465 station_ip 83.122.143.3 178465 port 127 178465 unique_id port 178466 username barzegar 178466 mac 178466 bytes_out 2082 178466 bytes_in 4051 178466 station_ip 5.119.195.192 178466 port 117 178466 unique_id port 178466 remote_ip 10.8.0.10 178470 username soleymani5056 178470 mac 178470 bytes_out 87147 178470 bytes_in 243308 178470 station_ip 5.119.254.224 178470 port 136 178470 unique_id port 178470 remote_ip 10.8.0.226 178472 username motamedi9772 178472 mac 178448 mac 178448 bytes_out 26922 178448 bytes_in 98589 178448 station_ip 5.119.33.96 178448 port 143 178448 unique_id port 178448 remote_ip 10.8.0.42 178450 username mehdizare 178450 mac 178450 bytes_out 3114 178450 bytes_in 5597 178450 station_ip 83.123.0.121 178450 port 134 178450 unique_id port 178450 remote_ip 10.8.0.210 178453 username barzegar 178453 mac 178453 bytes_out 0 178453 bytes_in 0 178453 station_ip 5.119.195.192 178453 port 134 178453 unique_id port 178453 remote_ip 10.8.0.10 178455 username kordestani 178455 mac 178455 bytes_out 0 178455 bytes_in 0 178455 station_ip 151.235.94.191 178455 port 133 178455 unique_id port 178455 remote_ip 10.8.0.130 178462 username barzegar 178462 mac 178462 bytes_out 0 178462 bytes_in 0 178462 station_ip 5.119.195.192 178462 port 117 178462 unique_id port 178462 remote_ip 10.8.0.10 178464 username saeeddamghani 178464 unique_id port 178464 terminate_cause User-Request 178464 bytes_out 47855 178464 bytes_in 198073 178464 station_ip 83.123.111.235 178464 port 15728695 178464 nas_port_type Virtual 178464 remote_ip 5.5.5.238 178467 username mehdizare 178467 mac 178467 bytes_out 9485 178467 bytes_in 12426 178467 station_ip 83.123.0.121 178467 port 136 178467 unique_id port 178467 remote_ip 10.8.0.210 178476 username kamali3 178476 mac 178476 bytes_out 45093 178476 bytes_in 87657 178476 station_ip 83.123.72.225 178476 port 134 178476 unique_id port 178476 remote_ip 10.8.0.106 178477 username soleymani5056 178477 mac 178477 bytes_out 75645 178477 bytes_in 103520 178477 station_ip 5.119.237.72 178477 port 136 178477 unique_id port 178477 remote_ip 10.8.0.226 178478 username mehdizare 178478 mac 178478 bytes_out 69903 178478 bytes_in 71543 178478 station_ip 83.123.0.121 178478 port 88 178478 unique_id port 178478 remote_ip 10.8.0.210 178480 username majidsarmast 178480 kill_reason Another user logged on this global unique id 178480 mac 178480 bytes_out 0 178480 bytes_in 0 178480 station_ip 83.122.143.3 178480 port 127 178480 unique_id port 178485 username barzegar 178485 mac 178485 bytes_out 0 178485 bytes_in 0 178485 station_ip 5.119.195.192 178485 port 143 178485 unique_id port 178485 remote_ip 10.8.0.10 178486 username mehdizare 178486 mac 178486 bytes_out 304610 178486 bytes_in 16972021 178486 station_ip 83.123.0.121 178486 unique_id port 178486 remote_ip 10.8.0.210 178487 username godarzi 178487 mac 178487 bytes_out 143159 178487 bytes_in 768934 178487 station_ip 5.120.0.219 178487 port 142 178487 unique_id port 178487 remote_ip 10.8.0.38 178488 username mehdizare 178488 mac 178488 bytes_out 8795 178488 bytes_in 12169 178488 station_ip 83.123.0.121 178488 port 143 178488 unique_id port 178488 remote_ip 10.8.0.210 178489 username mehdizare 178489 mac 178489 bytes_out 10180 178489 bytes_in 18451 178489 station_ip 83.123.0.121 178489 port 88 178489 unique_id port 178489 remote_ip 10.8.0.210 178490 username kordestani 178490 mac 178490 bytes_out 3034518 178490 bytes_in 42223903 178490 station_ip 151.235.94.191 178490 port 141 178490 unique_id port 178490 remote_ip 10.8.0.130 178494 username pourshad 178494 mac 178494 bytes_out 128357 178494 bytes_in 863330 178494 station_ip 5.119.33.96 178494 port 117 178494 unique_id port 178494 remote_ip 10.8.0.42 178500 username kalantary6037 178500 mac 178500 bytes_out 329673 178500 bytes_in 1223501 178500 station_ip 83.123.57.228 178500 port 143 178500 unique_id port 178500 remote_ip 10.8.0.50 178449 station_ip 83.123.89.224 178449 port 136 178449 unique_id port 178449 remote_ip 10.8.0.146 178452 username kamali3 178452 mac 178452 bytes_out 70974 178452 bytes_in 174260 178452 station_ip 83.123.72.225 178452 port 133 178452 unique_id port 178452 remote_ip 10.8.0.106 178456 username barzegar 178456 mac 178456 bytes_out 0 178456 bytes_in 0 178456 station_ip 5.119.195.192 178456 port 133 178456 unique_id port 178456 remote_ip 10.8.0.10 178460 username arash 178460 mac 178460 bytes_out 186146 178460 bytes_in 459220 178460 station_ip 89.47.157.209 178460 port 144 178460 unique_id port 178460 remote_ip 10.8.0.70 178461 username godarzi 178461 mac 178461 bytes_out 0 178461 bytes_in 0 178461 station_ip 5.202.26.240 178461 port 117 178461 unique_id port 178468 username fezealinaghi 178468 mac 178468 bytes_out 0 178468 bytes_in 0 178468 station_ip 83.123.126.141 178468 port 126 178468 unique_id port 178469 username malekpoir 178469 mac 178469 bytes_out 669665 178469 bytes_in 7193196 178469 station_ip 5.120.164.161 178469 port 88 178469 unique_id port 178469 remote_ip 10.8.0.18 178471 username soleymani5056 178471 mac 178471 bytes_out 60824 178471 bytes_in 187183 178471 station_ip 5.119.186.116 178471 port 88 178471 unique_id port 178471 remote_ip 10.8.0.226 178481 username shadkam 178481 mac 178481 bytes_out 24465 178481 bytes_in 231961 178481 station_ip 83.123.72.201 178481 port 88 178481 unique_id port 178481 remote_ip 10.8.0.74 178482 username mehdizare 178482 mac 178482 bytes_out 9469 178482 bytes_in 11614 178482 station_ip 83.123.0.121 178482 port 136 178482 unique_id port 178482 remote_ip 10.8.0.210 178483 username godarzi 178483 mac 178483 bytes_out 5917 178483 bytes_in 10256 178483 station_ip 78.39.127.51 178483 port 117 178483 unique_id port 178483 remote_ip 10.8.0.38 178492 username mehdizare 178492 mac 178492 bytes_out 16974 178492 bytes_in 20760 178492 station_ip 83.123.0.121 178492 port 88 178492 unique_id port 178492 remote_ip 10.8.0.210 178493 username barzegar 178493 mac 178493 bytes_out 0 178493 bytes_in 0 178493 station_ip 5.119.195.192 178493 port 88 178493 unique_id port 178493 remote_ip 10.8.0.10 178495 username sedighe 178495 mac 178495 bytes_out 95888 178495 bytes_in 325898 178495 station_ip 83.123.93.96 178495 port 136 178495 unique_id port 178495 remote_ip 10.8.0.46 178496 username shadkam 178496 mac 178496 bytes_out 22874 178496 bytes_in 56181 178496 station_ip 83.123.105.140 178496 port 143 178496 unique_id port 178496 remote_ip 10.8.0.74 178498 username majidsarmast 178498 mac 178498 bytes_out 0 178498 bytes_in 0 178498 station_ip 83.122.143.3 178498 port 127 178498 unique_id port 178501 username motamedi9772 178501 mac 178501 bytes_out 0 178501 bytes_in 0 178501 station_ip 83.123.17.10 178501 port 127 178501 unique_id port 178501 remote_ip 10.8.0.154 178507 username barzegar 178507 mac 178507 bytes_out 48002 178507 bytes_in 93980 178507 station_ip 5.119.195.192 178507 port 136 178507 unique_id port 178507 remote_ip 10.8.0.10 178511 username aminvpn 178511 mac 178511 bytes_out 0 178511 bytes_in 0 178511 station_ip 5.119.249.2 178511 port 134 178511 unique_id port 178511 remote_ip 10.8.0.58 178522 username barzegar 178522 mac 178522 bytes_out 713773 178522 bytes_in 5811174 178522 station_ip 5.119.195.192 178522 port 117 178522 unique_id port 178522 remote_ip 10.8.0.10 178526 username shadkam 178526 mac 178472 bytes_out 242315 178472 bytes_in 2699057 178472 station_ip 83.123.31.110 178472 port 143 178472 unique_id port 178472 remote_ip 10.8.0.154 178473 username mehdizare 178473 mac 178473 bytes_out 12376 178473 bytes_in 16564 178473 station_ip 83.123.0.121 178473 port 140 178473 unique_id port 178473 remote_ip 10.8.0.210 178474 username barzegar 178474 mac 178474 bytes_out 0 178474 bytes_in 0 178474 station_ip 5.119.195.192 178474 port 88 178474 unique_id port 178474 remote_ip 10.8.0.10 178475 username mehdizare 178475 mac 178475 bytes_out 7096 178475 bytes_in 9999 178475 station_ip 83.123.0.121 178475 port 140 178475 unique_id port 178475 remote_ip 10.8.0.210 178479 username godarzi 178479 mac 178479 bytes_out 1419393 178479 bytes_in 12183600 178479 station_ip 5.202.26.240 178479 port 117 178479 unique_id port 178479 remote_ip 10.8.0.38 178484 username pourshad 178484 mac 178484 bytes_out 382652 178484 bytes_in 5427368 178484 station_ip 5.119.33.96 178484 port 142 178484 unique_id port 178484 remote_ip 10.8.0.42 178491 username majidsarmast 178491 kill_reason Another user logged on this global unique id 178491 mac 178491 bytes_out 0 178491 bytes_in 0 178491 station_ip 83.122.143.3 178491 port 127 178491 unique_id port 178497 username sabaghnezhad 178497 mac 178497 bytes_out 857445 178497 bytes_in 6899587 178497 station_ip 83.123.18.115 178497 port 137 178497 unique_id port 178497 remote_ip 10.8.0.66 178499 username tahmasebi 178499 kill_reason Relative expiration date has reached 178499 mac 178499 bytes_out 0 178499 bytes_in 0 178499 station_ip 5.120.159.79 178499 port 127 178499 unique_id port 178502 username mehdizare 178502 mac 178502 bytes_out 16627 178502 bytes_in 23224 178502 station_ip 83.123.0.121 178502 port 141 178502 unique_id port 178502 remote_ip 10.8.0.210 178503 username soleymani5056 178503 mac 178503 bytes_out 211605 178503 bytes_in 1075498 178503 station_ip 5.119.146.41 178503 port 127 178503 unique_id port 178503 remote_ip 10.8.0.226 178510 username aminvpn 178510 mac 178510 bytes_out 217638 178510 bytes_in 702645 178510 station_ip 5.119.249.2 178510 port 134 178510 unique_id port 178510 remote_ip 10.8.0.58 178513 username sedighe 178513 mac 178513 bytes_out 2996 178513 bytes_in 4622 178513 station_ip 83.123.93.96 178513 port 134 178513 unique_id port 178513 remote_ip 10.8.0.46 178515 username pourshad 178515 mac 178515 bytes_out 21932 178515 bytes_in 30478 178515 station_ip 5.119.33.96 178515 port 117 178515 unique_id port 178515 remote_ip 10.8.0.42 178517 username hosseine 178517 kill_reason Another user logged on this global unique id 178517 mac 178517 bytes_out 0 178517 bytes_in 0 178517 station_ip 37.129.159.250 178517 port 139 178517 unique_id port 178517 remote_ip 10.8.0.54 178519 username nilufarrajaei 178519 mac 178519 bytes_out 39919 178519 bytes_in 39316 178519 station_ip 83.123.56.50 178519 port 134 178519 unique_id port 178519 remote_ip 10.8.0.194 178520 username houshang 178520 mac 178520 bytes_out 1425708 178520 bytes_in 12221990 178520 station_ip 5.119.216.181 178520 port 136 178520 unique_id port 178520 remote_ip 10.8.0.82 178525 username hosseine 178525 kill_reason Another user logged on this global unique id 178525 mac 178525 bytes_out 0 178525 bytes_in 0 178525 station_ip 37.129.159.250 178525 port 139 178525 unique_id port 178527 username houshang 178527 mac 178527 bytes_out 1660195 178527 bytes_in 19504782 178527 station_ip 5.119.216.181 178527 port 141 178527 unique_id port 178504 username nilufarrajaei 178504 kill_reason Another user logged on this global unique id 178504 mac 178504 bytes_out 0 178504 bytes_in 0 178504 station_ip 83.123.56.50 178504 port 133 178504 unique_id port 178504 remote_ip 10.8.0.194 178505 username kamali3 178505 mac 178505 bytes_out 890365 178505 bytes_in 6355287 178505 station_ip 83.123.72.225 178505 port 134 178505 unique_id port 178505 remote_ip 10.8.0.106 178506 username houshang 178506 mac 178506 bytes_out 29357 178506 bytes_in 61432 178506 station_ip 5.119.216.181 178506 port 141 178506 unique_id port 178506 remote_ip 10.8.0.82 178508 username pourshad 178508 mac 178508 bytes_out 214389 178508 bytes_in 2219348 178508 station_ip 5.119.33.96 178508 port 117 178508 unique_id port 178508 remote_ip 10.8.0.42 178509 username tahmasebi 178509 kill_reason Relative expiration date has reached 178509 mac 178509 bytes_out 0 178509 bytes_in 0 178509 station_ip 5.120.159.79 178509 port 117 178509 unique_id port 178512 username sedighe 178512 mac 178512 bytes_out 91247 178512 bytes_in 148645 178512 station_ip 83.123.93.96 178512 port 88 178512 unique_id port 178512 remote_ip 10.8.0.46 178514 username nilufarrajaei 178514 mac 178514 bytes_out 0 178514 bytes_in 0 178514 station_ip 83.123.56.50 178514 port 133 178514 unique_id port 178516 username soleymani5056 178516 mac 178516 bytes_out 123104 178516 bytes_in 360385 178516 station_ip 5.120.95.6 178516 port 143 178516 unique_id port 178516 remote_ip 10.8.0.226 178518 username kordestani 178518 mac 178518 bytes_out 260892 178518 bytes_in 3275601 178518 station_ip 151.235.113.221 178518 port 142 178518 unique_id port 178518 remote_ip 10.8.0.130 178521 username meysam 178521 mac 178521 bytes_out 3524047 178521 bytes_in 44432951 178521 station_ip 188.158.48.10 178521 port 140 178521 unique_id port 178521 remote_ip 10.8.0.158 178523 username khalili2 178523 kill_reason Another user logged on this global unique id 178523 mac 178523 bytes_out 0 178523 bytes_in 0 178523 station_ip 5.119.99.166 178523 port 88 178523 unique_id port 178523 remote_ip 10.8.0.118 178524 username hamid.e 178524 unique_id port 178524 terminate_cause User-Request 178524 bytes_out 2863366 178524 bytes_in 58846612 178524 station_ip 37.27.0.204 178524 port 15728702 178524 nas_port_type Virtual 178524 remote_ip 5.5.5.237 178530 username mohammadjavad 178530 mac 178530 bytes_out 104406 178530 bytes_in 659261 178530 station_ip 83.123.99.250 178530 port 117 178530 unique_id port 178530 remote_ip 10.8.0.110 178531 username mohammadjavad 178531 mac 178531 bytes_out 252653 178531 bytes_in 2988191 178531 station_ip 83.123.23.122 178531 port 117 178531 unique_id port 178531 remote_ip 10.8.0.110 178535 username komeil 178535 mac 178535 bytes_out 0 178535 bytes_in 0 178535 station_ip 83.123.57.24 178535 port 141 178535 unique_id port 178535 remote_ip 10.8.0.146 178536 username komeil 178536 mac 178536 bytes_out 0 178536 bytes_in 0 178536 station_ip 83.123.57.24 178536 port 141 178536 unique_id port 178536 remote_ip 10.8.0.146 178540 username shadkam 178540 mac 178540 bytes_out 99272 178540 bytes_in 1109589 178540 station_ip 83.123.32.44 178540 port 142 178540 unique_id port 178540 remote_ip 10.8.0.74 178541 username komeil 178541 mac 178541 bytes_out 0 178541 bytes_in 0 178541 station_ip 83.123.57.24 178541 port 141 178541 unique_id port 178541 remote_ip 10.8.0.146 178545 username nilufarrajaei 178545 mac 178545 bytes_out 0 178545 bytes_in 0 178545 station_ip 83.123.56.50 178526 bytes_out 42025 178526 bytes_in 338454 178526 station_ip 83.123.16.215 178526 port 117 178526 unique_id port 178526 remote_ip 10.8.0.74 178528 username mohammadjavad 178528 mac 178528 bytes_out 0 178528 bytes_in 0 178528 station_ip 83.123.124.94 178528 port 117 178528 unique_id port 178528 remote_ip 10.8.0.110 178534 username pourshad 178534 mac 178534 bytes_out 206645 178534 bytes_in 344175 178534 station_ip 5.119.33.96 178534 port 136 178534 unique_id port 178534 remote_ip 10.8.0.42 178537 username barzegar 178537 mac 178537 bytes_out 72946 178537 bytes_in 1055402 178537 station_ip 5.119.195.192 178537 port 117 178537 unique_id port 178537 remote_ip 10.8.0.10 178538 username komeil 178538 mac 178538 bytes_out 0 178538 bytes_in 0 178538 station_ip 83.123.57.24 178538 port 141 178538 unique_id port 178538 remote_ip 10.8.0.146 178549 username komeil 178549 mac 178549 bytes_out 0 178549 bytes_in 0 178549 station_ip 83.123.57.24 178549 port 140 178549 unique_id port 178549 remote_ip 10.8.0.146 178550 username zahra1101 178550 mac 178550 bytes_out 0 178550 bytes_in 0 178550 station_ip 5.120.172.90 178550 port 107 178550 unique_id port 178550 remote_ip 10.8.0.190 178553 username komeil 178553 mac 178553 bytes_out 0 178553 bytes_in 0 178553 station_ip 83.123.57.24 178553 port 140 178553 unique_id port 178553 remote_ip 10.8.0.146 178554 username komeil 178554 mac 178554 bytes_out 0 178554 bytes_in 0 178554 station_ip 83.123.57.24 178554 port 107 178554 unique_id port 178554 remote_ip 10.8.0.146 178555 username kalantary6037 178555 mac 178555 bytes_out 1868283 178555 bytes_in 10021833 178555 station_ip 83.123.101.84 178555 port 136 178555 unique_id port 178555 remote_ip 10.8.0.50 178556 username komeil 178556 mac 178556 bytes_out 0 178556 bytes_in 0 178556 station_ip 83.123.57.24 178556 port 136 178556 unique_id port 178556 remote_ip 10.8.0.146 178557 username komeil 178557 mac 178557 bytes_out 0 178557 bytes_in 0 178557 station_ip 83.123.57.24 178557 port 136 178557 unique_id port 178557 remote_ip 10.8.0.146 178563 username komeil 178563 kill_reason Maximum number of concurrent logins reached 178563 mac 178563 bytes_out 0 178563 bytes_in 0 178563 station_ip 83.123.57.24 178563 port 144 178563 unique_id port 178564 username komeil 178564 kill_reason Maximum check online fails reached 178564 mac 178564 bytes_out 0 178564 bytes_in 0 178564 station_ip 83.123.57.24 178564 port 133 178564 unique_id port 178566 username zahra1101 178566 mac 178566 bytes_out 593759 178566 bytes_in 1119165 178566 station_ip 5.120.172.90 178566 port 142 178566 unique_id port 178566 remote_ip 10.8.0.190 178569 username jafari 178569 kill_reason Maximum check online fails reached 178569 mac 178569 bytes_out 0 178569 bytes_in 0 178569 station_ip 89.34.41.136 178569 port 144 178569 unique_id port 178574 username kalantary6037 178574 mac 178574 bytes_out 5286 178574 bytes_in 9078 178574 station_ip 83.123.104.240 178574 port 147 178574 unique_id port 178574 remote_ip 10.8.0.50 178577 username mehdizare 178577 mac 178577 bytes_out 174847 178577 bytes_in 328172 178577 station_ip 83.123.0.121 178577 port 137 178577 unique_id port 178577 remote_ip 10.8.0.210 178580 username jafari 178580 mac 178580 bytes_out 0 178580 bytes_in 0 178580 station_ip 89.34.41.136 178580 port 145 178580 unique_id port 178582 username arabpour 178582 kill_reason Relative expiration date has reached 178582 unique_id port 178582 bytes_out 0 178527 remote_ip 10.8.0.82 178529 username barzegar 178529 mac 178529 bytes_out 1231867 178529 bytes_in 16249717 178529 station_ip 5.119.195.192 178529 port 140 178529 unique_id port 178529 remote_ip 10.8.0.10 178532 username barzegar 178532 mac 178532 bytes_out 1235290 178532 bytes_in 22576826 178532 station_ip 5.119.195.192 178532 port 140 178532 unique_id port 178532 remote_ip 10.8.0.10 178533 username aminvpn 178533 unique_id port 178533 terminate_cause Lost-Carrier 178533 bytes_out 1863725 178533 bytes_in 5689180 178533 station_ip 5.119.240.242 178533 port 15728703 178533 nas_port_type Virtual 178533 remote_ip 5.5.5.236 178539 username nilufarrajaei 178539 kill_reason Another user logged on this global unique id 178539 mac 178539 bytes_out 0 178539 bytes_in 0 178539 station_ip 83.123.56.50 178539 port 133 178539 unique_id port 178539 remote_ip 10.8.0.194 178542 username komeil 178542 kill_reason Maximum check online fails reached 178542 mac 178542 bytes_out 0 178542 bytes_in 0 178542 station_ip 83.123.57.24 178542 port 117 178542 unique_id port 178543 username komeil 178543 mac 178543 bytes_out 0 178543 bytes_in 0 178543 station_ip 83.123.57.24 178543 port 141 178543 unique_id port 178543 remote_ip 10.8.0.146 178544 username komeil 178544 mac 178544 bytes_out 0 178544 bytes_in 0 178544 station_ip 83.123.57.24 178544 port 141 178544 unique_id port 178544 remote_ip 10.8.0.146 178547 username khademi 178547 mac 178547 bytes_out 0 178547 bytes_in 0 178547 station_ip 37.129.154.227 178547 port 107 178547 unique_id port 178548 username komeil 178548 mac 178548 bytes_out 17407 178548 bytes_in 29708 178548 station_ip 83.123.57.24 178548 port 133 178548 unique_id port 178548 remote_ip 10.8.0.146 178551 username komeil 178551 mac 178551 bytes_out 0 178551 bytes_in 0 178551 station_ip 83.123.57.24 178551 port 140 178551 unique_id port 178551 remote_ip 10.8.0.146 178552 username zahra1101 178552 mac 178552 bytes_out 0 178552 bytes_in 0 178552 station_ip 5.120.172.90 178552 port 107 178552 unique_id port 178552 remote_ip 10.8.0.190 178559 username kalantary6037 178559 mac 178559 bytes_out 22799 178559 bytes_in 20413 178559 station_ip 83.123.101.84 178559 port 140 178559 unique_id port 178559 remote_ip 10.8.0.50 178562 username komeil 178562 mac 178562 bytes_out 0 178562 bytes_in 0 178562 station_ip 83.123.57.24 178562 port 140 178562 unique_id port 178562 remote_ip 10.8.0.146 178568 username komeil 178568 kill_reason Maximum check online fails reached 178568 mac 178568 bytes_out 0 178568 bytes_in 0 178568 station_ip 83.123.57.24 178568 port 140 178568 unique_id port 178572 username mostafa_es78 178572 mac 178572 bytes_out 763656 178572 bytes_in 1266830 178572 station_ip 113.203.25.40 178572 port 126 178572 unique_id port 178572 remote_ip 10.8.0.34 178575 username barzegar 178575 mac 178575 bytes_out 883294 178575 bytes_in 9104827 178575 station_ip 5.119.195.192 178575 port 148 178575 unique_id port 178575 remote_ip 10.8.0.10 178583 username arabpour 178583 kill_reason Relative expiration date has reached 178583 unique_id port 178583 bytes_out 0 178583 bytes_in 0 178583 station_ip 37.129.221.88 178583 port 15728706 178583 nas_port_type Virtual 178587 username arabpour 178587 kill_reason Relative expiration date has reached 178587 unique_id port 178587 bytes_out 0 178587 bytes_in 0 178587 station_ip 37.129.221.88 178587 port 15728710 178587 nas_port_type Virtual 178588 username zahra1101 178588 mac 178588 bytes_out 27477 178588 bytes_in 54667 178588 station_ip 5.120.172.90 178545 port 133 178545 unique_id port 178546 username pourshad 178546 mac 178546 bytes_out 85067 178546 bytes_in 105474 178546 station_ip 5.119.33.96 178546 port 140 178546 unique_id port 178546 remote_ip 10.8.0.42 178558 username barzegar 178558 mac 178558 bytes_out 4263 178558 bytes_in 4923 178558 station_ip 5.119.195.192 178558 port 107 178558 unique_id port 178558 remote_ip 10.8.0.10 178560 username tahmasebi 178560 kill_reason Relative expiration date has reached 178560 mac 178560 bytes_out 0 178560 bytes_in 0 178560 station_ip 5.120.48.220 178560 port 107 178560 unique_id port 178561 username pourshad 178561 mac 178561 bytes_out 19038 178561 bytes_in 34862 178561 station_ip 5.119.33.96 178561 port 133 178561 unique_id port 178561 remote_ip 10.8.0.42 178565 username kordestani 178565 mac 178565 bytes_out 1629146 178565 bytes_in 22651041 178565 station_ip 151.235.106.46 178565 port 134 178565 unique_id port 178565 remote_ip 10.8.0.130 178567 username soleymani5056 178567 mac 178567 bytes_out 153873 178567 bytes_in 423642 178567 station_ip 5.119.49.21 178567 port 107 178567 unique_id port 178567 remote_ip 10.8.0.226 178570 username malekpoir 178570 mac 178570 bytes_out 1043539 178570 bytes_in 12565765 178570 station_ip 5.120.164.161 178570 port 126 178570 unique_id port 178570 remote_ip 10.8.0.18 178571 username barzegar 178571 mac 178571 bytes_out 0 178571 bytes_in 0 178571 station_ip 5.119.195.192 178571 port 146 178571 unique_id port 178571 remote_ip 10.8.0.10 178573 username jafari 178573 kill_reason Another user logged on this global unique id 178573 mac 178573 bytes_out 0 178573 bytes_in 0 178573 station_ip 89.34.41.136 178573 port 145 178573 unique_id port 178573 remote_ip 10.8.0.86 178576 username fezealinaghi 178576 kill_reason Another user logged on this global unique id 178576 mac 178576 bytes_out 0 178576 bytes_in 0 178576 station_ip 83.123.93.210 178576 port 142 178576 unique_id port 178576 remote_ip 10.8.0.202 178578 username zahra1101 178578 mac 178578 bytes_out 152914 178578 bytes_in 167420 178578 station_ip 5.120.172.90 178578 port 107 178578 unique_id port 178578 remote_ip 10.8.0.190 178579 username malekpoir 178579 mac 178579 bytes_out 611616 178579 bytes_in 6446994 178579 station_ip 5.120.164.161 178579 port 134 178579 unique_id port 178579 remote_ip 10.8.0.18 178581 username arabpour 178581 kill_reason Relative expiration date has reached 178581 unique_id port 178581 bytes_out 0 178581 bytes_in 0 178581 station_ip 37.129.221.88 178581 port 15728704 178581 nas_port_type Virtual 178584 username arabpour 178584 kill_reason Relative expiration date has reached 178584 unique_id port 178584 bytes_out 0 178584 bytes_in 0 178584 station_ip 37.129.221.88 178584 port 15728707 178584 nas_port_type Virtual 178591 username barzegar 178591 mac 178591 bytes_out 39119 178591 bytes_in 47792 178591 station_ip 5.119.195.192 178591 port 126 178591 unique_id port 178591 remote_ip 10.8.0.10 178595 username aminvpn 178595 mac 178595 bytes_out 0 178595 bytes_in 0 178595 station_ip 5.120.118.187 178595 port 146 178595 unique_id port 178597 username pourshad 178597 mac 178597 bytes_out 235068 178597 bytes_in 883684 178597 station_ip 5.119.33.96 178597 port 143 178597 unique_id port 178597 remote_ip 10.8.0.42 178603 username soleymani5056 178603 mac 178603 bytes_out 913246 178603 bytes_in 732546 178603 station_ip 5.119.188.62 178603 port 107 178603 unique_id port 178603 remote_ip 10.8.0.226 178604 username pourshad 178604 mac 178604 bytes_out 14042 178582 bytes_in 0 178582 station_ip 37.129.221.88 178582 port 15728705 178582 nas_port_type Virtual 178585 username arabpour 178585 kill_reason Relative expiration date has reached 178585 unique_id port 178585 bytes_out 0 178585 bytes_in 0 178585 station_ip 37.129.221.88 178585 port 15728708 178585 nas_port_type Virtual 178586 username arabpour 178586 kill_reason Relative expiration date has reached 178586 unique_id port 178586 bytes_out 0 178586 bytes_in 0 178586 station_ip 37.129.221.88 178586 port 15728709 178586 nas_port_type Virtual 178589 username aminvpn 178589 kill_reason Another user logged on this global unique id 178589 mac 178589 bytes_out 0 178589 bytes_in 0 178589 station_ip 5.120.118.187 178589 port 146 178589 unique_id port 178589 remote_ip 10.8.0.58 178598 username mohammadmahdi 178598 kill_reason Another user logged on this global unique id 178598 mac 178598 bytes_out 0 178598 bytes_in 0 178598 station_ip 5.119.52.180 178598 port 147 178598 unique_id port 178599 username fezealinaghi 178599 mac 178599 bytes_out 0 178599 bytes_in 0 178599 station_ip 83.123.93.210 178599 port 142 178599 unique_id port 178600 username mehdizare 178600 mac 178600 bytes_out 335816 178600 bytes_in 936118 178600 station_ip 83.123.0.121 178600 port 137 178600 unique_id port 178600 remote_ip 10.8.0.210 178601 username pourshad 178601 mac 178601 bytes_out 19946 178601 bytes_in 30613 178601 station_ip 5.119.33.96 178601 port 143 178601 unique_id port 178601 remote_ip 10.8.0.42 178608 username malekpoir 178608 mac 178608 bytes_out 18939 178608 bytes_in 22609 178608 station_ip 5.120.164.161 178608 port 149 178608 unique_id port 178608 remote_ip 10.8.0.18 178610 username barzegar 178610 mac 178610 bytes_out 0 178610 bytes_in 0 178610 station_ip 5.119.195.192 178610 port 143 178610 unique_id port 178610 remote_ip 10.8.0.10 178612 username shadkam 178612 mac 178612 bytes_out 216086 178612 bytes_in 64189 178612 station_ip 83.123.17.120 178612 port 107 178612 unique_id port 178612 remote_ip 10.8.0.74 178618 username Mahin 178618 kill_reason Relative expiration date has reached 178618 mac 178618 bytes_out 0 178618 bytes_in 0 178618 station_ip 5.120.89.131 178618 port 146 178618 unique_id port 178623 username barzegar 178623 mac 178623 bytes_out 28392 178623 bytes_in 38116 178623 station_ip 5.119.195.192 178623 port 127 178623 unique_id port 178623 remote_ip 10.8.0.10 178624 username motamedi9772 178624 mac 178624 bytes_out 41163 178624 bytes_in 141991 178624 station_ip 83.123.60.10 178624 port 150 178624 unique_id port 178624 remote_ip 10.8.0.154 178628 username soleymani5056 178628 mac 178628 bytes_out 198512 178628 bytes_in 476617 178628 station_ip 5.120.18.228 178628 port 148 178628 unique_id port 178628 remote_ip 10.8.0.226 178634 username soleymani5056 178634 mac 178634 bytes_out 144257 178634 bytes_in 612008 178634 station_ip 5.120.125.217 178634 port 151 178634 unique_id port 178634 remote_ip 10.8.0.226 178636 username hajghani 178636 mac 178636 bytes_out 0 178636 bytes_in 0 178636 station_ip 89.47.140.138 178636 port 145 178636 unique_id port 178638 username mehdizare 178638 mac 178638 bytes_out 467288 178638 bytes_in 913059 178638 station_ip 83.123.0.121 178638 port 137 178638 unique_id port 178638 remote_ip 10.8.0.210 178640 username hosseine 178640 kill_reason Another user logged on this global unique id 178640 mac 178640 bytes_out 0 178640 bytes_in 0 178640 station_ip 37.129.159.250 178640 port 139 178640 unique_id port 178644 username fezealinaghi 178644 kill_reason Another user logged on this global unique id 178588 port 107 178588 unique_id port 178588 remote_ip 10.8.0.190 178590 username kalantary6037 178590 mac 178590 bytes_out 241663 178590 bytes_in 1573017 178590 station_ip 83.123.77.4 178590 port 145 178590 unique_id port 178590 remote_ip 10.8.0.50 178592 username mohammadjavad 178592 mac 178592 bytes_out 646641 178592 bytes_in 7746676 178592 station_ip 83.123.66.42 178592 port 134 178592 unique_id port 178592 remote_ip 10.8.0.110 178593 username mohammadmahdi 178593 kill_reason Another user logged on this global unique id 178593 mac 178593 bytes_out 0 178593 bytes_in 0 178593 station_ip 5.119.52.180 178593 port 147 178593 unique_id port 178593 remote_ip 10.8.0.30 178594 username malekpoir 178594 mac 178594 bytes_out 24307 178594 bytes_in 31843 178594 station_ip 5.120.164.161 178594 port 148 178594 unique_id port 178594 remote_ip 10.8.0.18 178596 username zahra1101 178596 mac 178596 bytes_out 18334 178596 bytes_in 26668 178596 station_ip 5.120.172.90 178596 port 107 178596 unique_id port 178596 remote_ip 10.8.0.190 178602 username aminvpn 178602 mac 178602 bytes_out 0 178602 bytes_in 0 178602 station_ip 5.120.118.187 178602 port 142 178602 unique_id port 178602 remote_ip 10.8.0.58 178605 username barzegar 178605 mac 178605 bytes_out 109101 178605 bytes_in 240757 178605 station_ip 5.119.195.192 178605 port 126 178605 unique_id port 178605 remote_ip 10.8.0.10 178607 username barzegar 178607 mac 178607 bytes_out 0 178607 bytes_in 0 178607 station_ip 5.119.195.192 178607 port 126 178607 unique_id port 178607 remote_ip 10.8.0.10 178609 username aminvpn 178609 mac 178609 bytes_out 590821 178609 bytes_in 3259635 178609 station_ip 5.120.118.187 178609 port 107 178609 unique_id port 178609 remote_ip 10.8.0.58 178611 username aminvpn 178611 unique_id port 178611 terminate_cause Lost-Carrier 178611 bytes_out 348695 178611 bytes_in 3600771 178611 station_ip 5.119.240.242 178611 port 15728712 178611 nas_port_type Virtual 178611 remote_ip 5.5.5.236 178615 username nilufarrajaei 178615 mac 178615 bytes_out 497377 178615 bytes_in 1179055 178615 station_ip 83.123.56.50 178615 port 141 178615 unique_id port 178615 remote_ip 10.8.0.194 178620 username mohammadmahdi 178620 kill_reason Another user logged on this global unique id 178620 mac 178620 bytes_out 0 178620 bytes_in 0 178620 station_ip 5.119.52.180 178620 port 147 178620 unique_id port 178621 username yaghobi 178621 mac 178621 bytes_out 309129 178621 bytes_in 2441124 178621 station_ip 83.123.28.114 178621 port 148 178621 unique_id port 178621 remote_ip 10.8.0.138 178622 username mohammadmahdi 178622 mac 178622 bytes_out 0 178622 bytes_in 0 178622 station_ip 5.119.52.180 178622 port 147 178622 unique_id port 178626 username milan 178626 kill_reason Another user logged on this global unique id 178626 mac 178626 bytes_out 0 178626 bytes_in 0 178626 station_ip 5.119.68.145 178626 port 134 178626 unique_id port 178626 remote_ip 10.8.0.182 178629 username godarzi 178629 mac 178629 bytes_out 211102 178629 bytes_in 1627099 178629 station_ip 5.120.17.26 178629 port 147 178629 unique_id port 178629 remote_ip 10.8.0.38 178631 username hajghani 178631 kill_reason Another user logged on this global unique id 178631 mac 178631 bytes_out 0 178631 bytes_in 0 178631 station_ip 89.47.140.138 178631 port 145 178631 unique_id port 178631 remote_ip 10.8.0.102 178639 username zahra1101 178639 mac 178639 bytes_out 315859 178639 bytes_in 2988952 178639 station_ip 5.119.52.36 178639 port 107 178639 unique_id port 178604 bytes_in 26464 178604 station_ip 5.119.33.96 178604 port 142 178604 unique_id port 178604 remote_ip 10.8.0.42 178606 username kalantary6037 178606 mac 178606 bytes_out 59129 178606 bytes_in 69175 178606 station_ip 83.123.122.132 178606 port 143 178606 unique_id port 178606 remote_ip 10.8.0.50 178613 username kamali3 178613 mac 178613 bytes_out 991154 178613 bytes_in 749650 178613 station_ip 83.123.72.225 178613 port 127 178613 unique_id port 178613 remote_ip 10.8.0.106 178614 username barzegar 178614 mac 178614 bytes_out 2568 178614 bytes_in 4751 178614 station_ip 5.119.195.192 178614 port 146 178614 unique_id port 178614 remote_ip 10.8.0.10 178616 username godarzi 178616 mac 178616 bytes_out 2634575 178616 bytes_in 14855812 178616 station_ip 5.120.17.26 178616 port 145 178616 unique_id port 178616 remote_ip 10.8.0.38 178617 username shadkam 178617 mac 178617 bytes_out 22604 178617 bytes_in 58898 178617 station_ip 83.123.17.120 178617 port 148 178617 unique_id port 178617 remote_ip 10.8.0.74 178619 username yaghobi 178619 mac 178619 bytes_out 2524833 178619 bytes_in 39791936 178619 station_ip 83.123.28.114 178619 port 134 178619 unique_id port 178619 remote_ip 10.8.0.138 178625 username ahmadi1 178625 mac 178625 bytes_out 0 178625 bytes_in 0 178625 station_ip 83.123.127.93 178625 port 127 178625 unique_id port 178625 remote_ip 10.8.0.94 178627 username fezealinaghi 178627 kill_reason Another user logged on this global unique id 178627 mac 178627 bytes_out 0 178627 bytes_in 0 178627 station_ip 83.123.3.2 178627 port 146 178627 unique_id port 178627 remote_ip 10.8.0.202 178630 username kamali3 178630 mac 178630 bytes_out 223847 178630 bytes_in 517525 178630 station_ip 83.123.72.225 178630 port 107 178630 unique_id port 178630 remote_ip 10.8.0.106 178632 username mostafa_es78 178632 mac 178632 bytes_out 11000 178632 bytes_in 21567 178632 station_ip 113.203.25.40 178632 port 150 178632 unique_id port 178632 remote_ip 10.8.0.34 178633 username aminvpn 178633 unique_id port 178633 terminate_cause Lost-Carrier 178633 bytes_out 2434361 178633 bytes_in 9046888 178633 station_ip 5.119.240.242 178633 port 15728713 178633 nas_port_type Virtual 178633 remote_ip 5.5.5.236 178635 username aminvpn 178635 unique_id port 178635 terminate_cause Lost-Carrier 178635 bytes_out 266091 178635 bytes_in 3874863 178635 station_ip 5.119.240.242 178635 port 15728714 178635 nas_port_type Virtual 178635 remote_ip 5.5.5.235 178637 username barzegar 178637 mac 178637 bytes_out 0 178637 bytes_in 0 178637 station_ip 5.119.195.192 178637 port 145 178637 unique_id port 178637 remote_ip 10.8.0.10 178641 username barzegar 178641 mac 178641 bytes_out 0 178641 bytes_in 0 178641 station_ip 5.119.195.192 178641 port 150 178641 unique_id port 178641 remote_ip 10.8.0.10 178643 username kalantary6037 178643 mac 178643 bytes_out 240622 178643 bytes_in 1667654 178643 station_ip 83.123.110.240 178643 port 107 178643 unique_id port 178643 remote_ip 10.8.0.50 178650 username yaghobi 178650 mac 178650 bytes_out 316313 178650 bytes_in 1722760 178650 station_ip 83.123.55.177 178650 port 145 178650 unique_id port 178650 remote_ip 10.8.0.138 178655 username mahdiyehalizadeh 178655 mac 178655 bytes_out 422690 178655 bytes_in 4100332 178655 station_ip 5.120.5.170 178655 port 148 178655 unique_id port 178655 remote_ip 10.8.0.114 178656 username aminvpn 178656 mac 178656 bytes_out 0 178656 bytes_in 0 178656 station_ip 5.120.118.187 178656 port 126 178639 remote_ip 10.8.0.190 178642 username zahra1101 178642 mac 178642 bytes_out 3789 178642 bytes_in 12597 178642 station_ip 5.119.52.36 178642 port 145 178642 unique_id port 178642 remote_ip 10.8.0.190 178646 username majidsarmast 178646 kill_reason Another user logged on this global unique id 178646 mac 178646 bytes_out 0 178646 bytes_in 0 178646 station_ip 83.123.70.146 178646 port 127 178646 unique_id port 178646 remote_ip 10.8.0.170 178647 username hosseine 178647 kill_reason Another user logged on this global unique id 178647 mac 178647 bytes_out 0 178647 bytes_in 0 178647 station_ip 37.129.159.250 178647 port 139 178647 unique_id port 178648 username zahra1101 178648 mac 178648 bytes_out 2308 178648 bytes_in 4453 178648 station_ip 5.119.129.146 178648 port 150 178648 unique_id port 178648 remote_ip 10.8.0.190 178652 username aminvpn 178652 mac 178652 bytes_out 12256238 178652 bytes_in 17747403 178652 station_ip 5.120.118.187 178652 port 126 178652 unique_id port 178652 remote_ip 10.8.0.58 178654 username aminvpn 178654 mac 178654 bytes_out 0 178654 bytes_in 0 178654 station_ip 5.120.118.187 178654 port 107 178654 unique_id port 178654 remote_ip 10.8.0.58 178657 username barzegar 178657 mac 178657 bytes_out 0 178657 bytes_in 0 178657 station_ip 5.119.195.192 178657 port 107 178657 unique_id port 178657 remote_ip 10.8.0.10 178658 username aminvpn 178658 mac 178658 bytes_out 0 178658 bytes_in 0 178658 station_ip 5.120.118.187 178658 port 141 178658 unique_id port 178658 remote_ip 10.8.0.58 178659 username aminvpn 178659 mac 178659 bytes_out 0 178659 bytes_in 0 178659 station_ip 5.120.118.187 178659 port 126 178659 unique_id port 178659 remote_ip 10.8.0.58 178663 username farhad2 178663 kill_reason Relative expiration date has reached 178663 mac 178663 bytes_out 0 178663 bytes_in 0 178663 station_ip 5.120.125.78 178663 port 126 178663 unique_id port 178671 username aminvpn 178671 mac 178671 bytes_out 0 178671 bytes_in 0 178671 station_ip 5.120.118.187 178671 port 126 178671 unique_id port 178671 remote_ip 10.8.0.58 178674 username aminvpn 178674 mac 178674 bytes_out 148993 178674 bytes_in 683438 178674 station_ip 5.120.118.187 178674 port 126 178674 unique_id port 178674 remote_ip 10.8.0.58 178680 username aminvpn 178680 mac 178680 bytes_out 0 178680 bytes_in 0 178680 station_ip 5.119.54.160 178680 port 107 178680 unique_id port 178680 remote_ip 10.8.0.58 178682 username aminvpn 178682 mac 178682 bytes_out 0 178682 bytes_in 0 178682 station_ip 5.119.54.160 178682 port 107 178682 unique_id port 178682 remote_ip 10.8.0.58 178684 username hosseine 178684 mac 178684 bytes_out 0 178684 bytes_in 0 178684 station_ip 37.129.159.250 178684 port 139 178684 unique_id port 178685 username barzegar 178685 mac 178685 bytes_out 1028722 178685 bytes_in 10568238 178685 station_ip 5.119.195.192 178685 port 141 178685 unique_id port 178685 remote_ip 10.8.0.10 178686 username aminvpn 178686 kill_reason Another user logged on this global unique id 178686 mac 178686 bytes_out 0 178686 bytes_in 0 178686 station_ip 5.120.118.187 178686 port 107 178686 unique_id port 178686 remote_ip 10.8.0.58 178687 username yaghobi 178687 mac 178687 bytes_out 143492 178687 bytes_in 86838 178687 station_ip 83.123.99.178 178687 port 141 178687 unique_id port 178687 remote_ip 10.8.0.138 178689 username barzegar 178689 mac 178689 bytes_out 1192815 178689 bytes_in 15669917 178689 station_ip 5.119.195.192 178689 port 139 178644 mac 178644 bytes_out 0 178644 bytes_in 0 178644 station_ip 83.123.3.2 178644 port 146 178644 unique_id port 178645 username zahra1101 178645 mac 178645 bytes_out 2215 178645 bytes_in 5808 178645 station_ip 5.119.52.36 178645 port 107 178645 unique_id port 178645 remote_ip 10.8.0.190 178649 username shadkam 178649 mac 178649 bytes_out 1027893 178649 bytes_in 8789486 178649 station_ip 83.123.108.213 178649 port 107 178649 unique_id port 178649 remote_ip 10.8.0.74 178651 username tahmorsi 178651 mac 178651 bytes_out 2614500 178651 bytes_in 7319012 178651 station_ip 86.57.116.29 178651 port 141 178651 unique_id port 178651 remote_ip 10.8.0.238 178653 username malekpoir 178653 mac 178653 bytes_out 2273499 178653 bytes_in 20487381 178653 station_ip 5.120.164.161 178653 port 143 178653 unique_id port 178653 remote_ip 10.8.0.18 178660 username barzegar 178660 mac 178660 bytes_out 0 178660 bytes_in 0 178660 station_ip 5.119.195.192 178660 port 107 178660 unique_id port 178660 remote_ip 10.8.0.10 178662 username aminvpn 178662 mac 178662 bytes_out 0 178662 bytes_in 0 178662 station_ip 5.120.118.187 178662 port 141 178662 unique_id port 178662 remote_ip 10.8.0.58 178666 username aminvpn 178666 mac 178666 bytes_out 0 178666 bytes_in 0 178666 station_ip 5.120.118.187 178666 port 107 178666 unique_id port 178666 remote_ip 10.8.0.58 178668 username aminvpn 178668 mac 178668 bytes_out 0 178668 bytes_in 0 178668 station_ip 5.120.118.187 178668 port 141 178668 unique_id port 178668 remote_ip 10.8.0.58 178670 username aminvpn 178670 unique_id port 178670 terminate_cause Lost-Carrier 178670 bytes_out 7839775 178670 bytes_in 201207257 178670 station_ip 31.57.123.26 178670 port 15728711 178670 nas_port_type Virtual 178670 remote_ip 5.5.5.240 178673 username khalili2 178673 kill_reason Another user logged on this global unique id 178673 mac 178673 bytes_out 0 178673 bytes_in 0 178673 station_ip 5.119.99.166 178673 port 88 178673 unique_id port 178677 username aminvpn 178677 mac 178677 bytes_out 0 178677 bytes_in 0 178677 station_ip 5.119.54.160 178677 port 141 178677 unique_id port 178677 remote_ip 10.8.0.58 178683 username fezealinaghi 178683 kill_reason Another user logged on this global unique id 178683 mac 178683 bytes_out 0 178683 bytes_in 0 178683 station_ip 83.123.3.2 178683 port 146 178683 unique_id port 178688 username aminvpn 178688 unique_id port 178688 terminate_cause Lost-Carrier 178688 bytes_out 3608878 178688 bytes_in 96959435 178688 station_ip 31.57.126.5 178688 port 15728715 178688 nas_port_type Virtual 178688 remote_ip 5.5.5.234 178698 username soleymani5056 178698 mac 178698 bytes_out 166135 178698 bytes_in 259394 178698 station_ip 5.119.75.3 178698 port 145 178698 unique_id port 178698 remote_ip 10.8.0.226 178700 username barzegar 178700 mac 178700 bytes_out 0 178700 bytes_in 0 178700 station_ip 5.119.195.192 178700 port 139 178700 unique_id port 178702 username kalantary6037 178702 mac 178702 bytes_out 172008 178702 bytes_in 69178 178702 station_ip 83.123.96.76 178702 port 139 178702 unique_id port 178702 remote_ip 10.8.0.50 178704 username barzegar 178704 mac 178704 bytes_out 0 178704 bytes_in 0 178704 station_ip 5.119.195.192 178704 port 139 178704 unique_id port 178704 remote_ip 10.8.0.10 178705 username aminvpn 178705 mac 178705 bytes_out 0 178705 bytes_in 0 178705 station_ip 5.120.118.187 178705 port 139 178705 unique_id port 178705 remote_ip 10.8.0.58 178710 username mostafa_es78 178656 unique_id port 178656 remote_ip 10.8.0.58 178661 username fezealinaghi 178661 kill_reason Another user logged on this global unique id 178661 mac 178661 bytes_out 0 178661 bytes_in 0 178661 station_ip 83.123.3.2 178661 port 146 178661 unique_id port 178664 username aminvpn 178664 mac 178664 bytes_out 0 178664 bytes_in 0 178664 station_ip 5.120.118.187 178664 port 107 178664 unique_id port 178664 remote_ip 10.8.0.58 178665 username aminvpn 178665 mac 178665 bytes_out 0 178665 bytes_in 0 178665 station_ip 5.120.118.187 178665 port 126 178665 unique_id port 178665 remote_ip 10.8.0.58 178667 username aminvpn 178667 mac 178667 bytes_out 0 178667 bytes_in 0 178667 station_ip 5.120.118.187 178667 port 126 178667 unique_id port 178667 remote_ip 10.8.0.58 178669 username pourshad 178669 mac 178669 bytes_out 7768888 178669 bytes_in 36182741 178669 station_ip 5.119.33.96 178669 port 142 178669 unique_id port 178669 remote_ip 10.8.0.42 178672 username aminvpn 178672 mac 178672 bytes_out 0 178672 bytes_in 0 178672 station_ip 5.120.118.187 178672 port 141 178672 unique_id port 178672 remote_ip 10.8.0.58 178675 username aminvpn 178675 mac 178675 bytes_out 0 178675 bytes_in 0 178675 station_ip 5.119.54.160 178675 port 141 178675 unique_id port 178675 remote_ip 10.8.0.58 178676 username aminvpn 178676 mac 178676 bytes_out 0 178676 bytes_in 0 178676 station_ip 5.120.118.187 178676 port 126 178676 unique_id port 178676 remote_ip 10.8.0.58 178678 username soleymani5056 178678 mac 178678 bytes_out 205212 178678 bytes_in 644471 178678 station_ip 5.119.220.232 178678 port 107 178678 unique_id port 178678 remote_ip 10.8.0.226 178679 username aminvpn 178679 mac 178679 bytes_out 0 178679 bytes_in 0 178679 station_ip 5.120.118.187 178679 port 126 178679 unique_id port 178679 remote_ip 10.8.0.58 178681 username aminvpn 178681 mac 178681 bytes_out 0 178681 bytes_in 0 178681 station_ip 5.120.118.187 178681 port 126 178681 unique_id port 178681 remote_ip 10.8.0.58 178690 username aminvpn 178690 mac 178690 bytes_out 0 178690 bytes_in 0 178690 station_ip 5.120.118.187 178690 port 107 178690 unique_id port 178692 username kalantary6037 178692 mac 178692 bytes_out 223419 178692 bytes_in 1884007 178692 station_ip 83.123.116.100 178692 port 107 178692 unique_id port 178692 remote_ip 10.8.0.50 178695 username aminvpn 178695 mac 178695 bytes_out 0 178695 bytes_in 0 178695 station_ip 5.120.118.187 178695 port 107 178695 unique_id port 178695 remote_ip 10.8.0.58 178696 username kamali3 178696 mac 178696 bytes_out 14914285 178696 bytes_in 13576313 178696 station_ip 83.123.72.225 178696 port 147 178696 unique_id port 178696 remote_ip 10.8.0.106 178701 username kamali3 178701 mac 178701 bytes_out 10161 178701 bytes_in 18920 178701 station_ip 83.123.72.225 178701 port 145 178701 unique_id port 178701 remote_ip 10.8.0.106 178707 username aminvpn 178707 mac 178707 bytes_out 0 178707 bytes_in 0 178707 station_ip 5.120.118.187 178707 port 139 178707 unique_id port 178707 remote_ip 10.8.0.58 178709 username rashidi4690 178709 mac 178709 bytes_out 924850 178709 bytes_in 5046641 178709 station_ip 83.123.42.28 178709 port 107 178709 unique_id port 178709 remote_ip 10.8.0.242 178711 username mostafa_es78 178711 mac 178711 bytes_out 0 178711 bytes_in 0 178711 station_ip 113.203.78.176 178711 port 107 178711 unique_id port 178711 remote_ip 10.8.0.34 178712 username mostafa_es78 178689 unique_id port 178689 remote_ip 10.8.0.10 178691 username soleymani5056 178691 mac 178691 bytes_out 215075 178691 bytes_in 837335 178691 station_ip 5.120.105.180 178691 port 143 178691 unique_id port 178691 remote_ip 10.8.0.226 178693 username barzegar 178693 kill_reason Another user logged on this global unique id 178693 mac 178693 bytes_out 0 178693 bytes_in 0 178693 station_ip 5.119.195.192 178693 port 139 178693 unique_id port 178693 remote_ip 10.8.0.10 178694 username aminvpn 178694 mac 178694 bytes_out 0 178694 bytes_in 0 178694 station_ip 5.120.118.187 178694 port 107 178694 unique_id port 178694 remote_ip 10.8.0.58 178697 username kamali3 178697 mac 178697 bytes_out 7211 178697 bytes_in 12328 178697 station_ip 83.123.72.225 178697 port 107 178697 unique_id port 178697 remote_ip 10.8.0.106 178699 username kamali3 178699 mac 178699 bytes_out 7089 178699 bytes_in 12155 178699 station_ip 83.123.72.225 178699 port 143 178699 unique_id port 178699 remote_ip 10.8.0.106 178703 username barzegar 178703 mac 178703 bytes_out 142126 178703 bytes_in 2619437 178703 station_ip 5.119.195.192 178703 port 148 178703 unique_id port 178703 remote_ip 10.8.0.10 178706 username aminvpn 178706 mac 178706 bytes_out 0 178706 bytes_in 0 178706 station_ip 5.119.54.160 178706 port 148 178706 unique_id port 178706 remote_ip 10.8.0.58 178708 username mostafa_es78 178708 mac 178708 bytes_out 975305 178708 bytes_in 3541541 178708 station_ip 113.203.78.176 178708 port 142 178708 unique_id port 178708 remote_ip 10.8.0.34 178716 username pourshad 178716 mac 178716 bytes_out 97517 178716 bytes_in 157487 178716 station_ip 5.119.33.96 178716 port 126 178716 unique_id port 178716 remote_ip 10.8.0.42 178718 username barzegar 178718 mac 178718 bytes_out 0 178718 bytes_in 0 178718 station_ip 5.119.195.192 178718 port 139 178718 unique_id port 178718 remote_ip 10.8.0.10 178719 username soleymani5056 178719 mac 178719 bytes_out 246890 178719 bytes_in 454219 178719 station_ip 5.119.148.105 178719 port 147 178719 unique_id port 178719 remote_ip 10.8.0.226 178723 username hatami 178723 mac 178723 bytes_out 984206 178723 bytes_in 5339646 178723 station_ip 151.235.78.183 178723 port 143 178723 unique_id port 178723 remote_ip 10.8.0.98 178728 username saeeddamghani 178728 mac 178728 bytes_out 0 178728 bytes_in 0 178728 station_ip 217.60.218.29 178728 port 139 178728 unique_id port 178728 remote_ip 10.8.0.122 178729 username barzegar 178729 mac 178729 bytes_out 0 178729 bytes_in 0 178729 station_ip 5.119.195.192 178729 port 147 178729 unique_id port 178729 remote_ip 10.8.0.10 178731 username saeeddamghani 178731 mac 178731 bytes_out 0 178731 bytes_in 0 178731 station_ip 217.60.218.29 178731 port 139 178731 unique_id port 178731 remote_ip 10.8.0.122 178732 username saeeddamghani 178732 mac 178732 bytes_out 0 178732 bytes_in 0 178732 station_ip 217.60.218.29 178732 port 139 178732 unique_id port 178732 remote_ip 10.8.0.122 178733 username hatami 178733 mac 178733 bytes_out 29347 178733 bytes_in 32714 178733 station_ip 151.235.121.242 178733 port 142 178733 unique_id port 178733 remote_ip 10.8.0.98 178737 username kalantary6037 178737 mac 178737 bytes_out 1572 178737 bytes_in 3731 178737 station_ip 83.123.36.84 178737 port 142 178737 unique_id port 178737 remote_ip 10.8.0.50 178738 username barzegar 178738 mac 178738 bytes_out 0 178738 bytes_in 0 178738 station_ip 5.119.195.192 178738 port 142 178710 mac 178710 bytes_out 0 178710 bytes_in 0 178710 station_ip 178.236.35.96 178710 port 139 178710 unique_id port 178710 remote_ip 10.8.0.34 178713 username mostafa_es78 178713 mac 178713 bytes_out 0 178713 bytes_in 0 178713 station_ip 113.203.78.176 178713 port 107 178713 unique_id port 178713 remote_ip 10.8.0.34 178714 username mostafa_es78 178714 mac 178714 bytes_out 0 178714 bytes_in 0 178714 station_ip 178.236.35.96 178714 port 139 178714 unique_id port 178714 remote_ip 10.8.0.34 178721 username rashidi4690 178721 mac 178721 bytes_out 1049770 178721 bytes_in 9258326 178721 station_ip 83.123.42.28 178721 port 142 178721 unique_id port 178721 remote_ip 10.8.0.242 178722 username sabaghnezhad 178722 mac 178722 bytes_out 335522 178722 bytes_in 679904 178722 station_ip 83.123.13.140 178722 port 149 178722 unique_id port 178722 remote_ip 10.8.0.66 178725 username saeeddamghani 178725 mac 178725 bytes_out 0 178725 bytes_in 0 178725 station_ip 5.119.211.158 178725 port 143 178725 unique_id port 178725 remote_ip 10.8.0.122 178727 username kalantary6037 178727 mac 178727 bytes_out 15160 178727 bytes_in 22313 178727 station_ip 83.123.36.84 178727 port 139 178727 unique_id port 178727 remote_ip 10.8.0.50 178734 username saeeddamghani 178734 mac 178734 bytes_out 0 178734 bytes_in 0 178734 station_ip 217.60.218.29 178734 port 142 178734 unique_id port 178734 remote_ip 10.8.0.122 178736 username meysam 178736 kill_reason Another user logged on this global unique id 178736 mac 178736 bytes_out 0 178736 bytes_in 0 178736 station_ip 188.158.48.10 178736 port 126 178736 unique_id port 178736 remote_ip 10.8.0.158 178739 username godarzi 178739 mac 178739 bytes_out 95219 178739 bytes_in 176098 178739 station_ip 5.120.17.26 178739 port 141 178739 unique_id port 178739 remote_ip 10.8.0.38 178740 username shadkam 178740 kill_reason Another user logged on this global unique id 178740 mac 178740 bytes_out 0 178740 bytes_in 0 178740 station_ip 83.123.85.196 178740 port 139 178740 unique_id port 178740 remote_ip 10.8.0.74 178746 username tahmasebi 178746 kill_reason Relative expiration date has reached 178746 mac 178746 bytes_out 0 178746 bytes_in 0 178746 station_ip 5.119.193.2 178746 port 143 178746 unique_id port 178748 username barzegar 178748 mac 178748 bytes_out 0 178748 bytes_in 0 178748 station_ip 5.119.195.192 178748 port 149 178748 unique_id port 178748 remote_ip 10.8.0.10 178750 username kalantary6037 178750 mac 178750 bytes_out 36321 178750 bytes_in 48412 178750 station_ip 83.123.36.84 178750 port 143 178750 unique_id port 178750 remote_ip 10.8.0.50 178752 username aminvpn 178752 mac 178752 bytes_out 1680238 178752 bytes_in 16687342 178752 station_ip 5.119.251.67 178752 port 147 178752 unique_id port 178752 remote_ip 10.8.0.58 178754 username meysam 178754 mac 178754 bytes_out 0 178754 bytes_in 0 178754 station_ip 188.158.48.10 178754 port 126 178754 unique_id port 178756 username khalili2 178756 mac 178756 bytes_out 3690 178756 bytes_in 8261 178756 station_ip 5.119.99.166 178756 port 88 178756 unique_id port 178756 remote_ip 10.8.0.118 178757 username barzegar 178757 mac 178757 bytes_out 0 178757 bytes_in 0 178757 station_ip 5.119.195.192 178757 port 88 178757 unique_id port 178757 remote_ip 10.8.0.10 178758 username barzegar 178758 mac 178758 bytes_out 0 178758 bytes_in 0 178758 station_ip 5.119.195.192 178758 port 88 178758 unique_id port 178758 remote_ip 10.8.0.10 178761 username shadkam 178712 mac 178712 bytes_out 0 178712 bytes_in 0 178712 station_ip 178.236.35.96 178712 port 139 178712 unique_id port 178712 remote_ip 10.8.0.34 178715 username mostafa_es78 178715 mac 178715 bytes_out 0 178715 bytes_in 0 178715 station_ip 113.203.78.176 178715 port 107 178715 unique_id port 178715 remote_ip 10.8.0.34 178717 username aminvpn 178717 unique_id port 178717 terminate_cause Lost-Carrier 178717 bytes_out 6612952 178717 bytes_in 123472738 178717 station_ip 5.120.118.187 178717 port 15728693 178717 nas_port_type Virtual 178717 remote_ip 5.5.5.239 178720 username barzegar 178720 mac 178720 bytes_out 1953 178720 bytes_in 3911 178720 station_ip 5.119.195.192 178720 port 147 178720 unique_id port 178720 remote_ip 10.8.0.10 178724 username saeeddamghani 178724 mac 178724 bytes_out 254754 178724 bytes_in 3431477 178724 station_ip 5.119.211.158 178724 port 148 178724 unique_id port 178724 remote_ip 10.8.0.122 178726 username soleymani5056 178726 mac 178726 bytes_out 221437 178726 bytes_in 732269 178726 station_ip 5.120.54.225 178726 port 139 178726 unique_id port 178726 remote_ip 10.8.0.226 178730 username godarzi 178730 mac 178730 bytes_out 2297807 178730 bytes_in 20838561 178730 station_ip 5.120.17.26 178730 port 141 178730 unique_id port 178730 remote_ip 10.8.0.38 178735 username kalantary6037 178735 mac 178735 bytes_out 86178 178735 bytes_in 226583 178735 station_ip 83.123.36.84 178735 port 141 178735 unique_id port 178735 remote_ip 10.8.0.50 178741 username shadkam 178741 mac 178741 bytes_out 0 178741 bytes_in 0 178741 station_ip 83.123.85.196 178741 port 139 178741 unique_id port 178743 username mansur 178743 kill_reason Relative expiration date has reached 178743 mac 178743 bytes_out 0 178743 bytes_in 0 178743 station_ip 5.119.235.66 178743 port 139 178743 unique_id port 178747 username sedighe 178747 mac 178747 bytes_out 1970 178747 bytes_in 4230 178747 station_ip 83.123.72.110 178747 port 142 178747 unique_id port 178747 remote_ip 10.8.0.46 178751 username hatami 178751 mac 178751 bytes_out 64795 178751 bytes_in 80060 178751 station_ip 151.235.86.171 178751 port 148 178751 unique_id port 178751 remote_ip 10.8.0.98 178753 username soleymani5056 178753 mac 178753 bytes_out 214367 178753 bytes_in 334772 178753 station_ip 5.119.27.211 178753 port 141 178753 unique_id port 178753 remote_ip 10.8.0.226 178755 username khalili2 178755 mac 178755 bytes_out 0 178755 bytes_in 0 178755 station_ip 5.119.99.166 178755 port 88 178755 unique_id port 178759 username shadkam 178759 kill_reason Another user logged on this global unique id 178759 mac 178759 bytes_out 0 178759 bytes_in 0 178759 station_ip 83.123.126.114 178759 port 142 178759 unique_id port 178759 remote_ip 10.8.0.74 178762 username sedighe 178762 mac 178762 bytes_out 67397 178762 bytes_in 120604 178762 station_ip 83.123.72.110 178762 port 150 178762 unique_id port 178762 remote_ip 10.8.0.46 178764 username soleymani5056 178764 mac 178764 bytes_out 113321 178764 bytes_in 147496 178764 station_ip 5.120.92.20 178764 port 88 178764 unique_id port 178764 remote_ip 10.8.0.226 178770 username mostafa_es78 178770 mac 178770 bytes_out 291783 178770 bytes_in 3147637 178770 station_ip 83.123.63.228 178770 port 147 178770 unique_id port 178770 remote_ip 10.8.0.34 178775 username hatami 178775 mac 178775 bytes_out 33908 178775 bytes_in 30122 178775 station_ip 151.235.101.17 178775 port 142 178775 unique_id port 178775 remote_ip 10.8.0.98 178776 username zahra1101 178738 unique_id port 178738 remote_ip 10.8.0.10 178742 username kalantary6037 178742 mac 178742 bytes_out 28186 178742 bytes_in 22926 178742 station_ip 83.123.36.84 178742 port 142 178742 unique_id port 178742 remote_ip 10.8.0.50 178744 username sedighe 178744 mac 178744 bytes_out 211933 178744 bytes_in 399963 178744 station_ip 83.123.72.110 178744 port 143 178744 unique_id port 178744 remote_ip 10.8.0.46 178745 username barzegar 178745 mac 178745 bytes_out 0 178745 bytes_in 0 178745 station_ip 5.119.195.192 178745 port 139 178745 unique_id port 178745 remote_ip 10.8.0.10 178749 username hamid.e 178749 unique_id port 178749 terminate_cause User-Request 178749 bytes_out 442671 178749 bytes_in 6262877 178749 station_ip 37.27.21.111 178749 port 15728716 178749 nas_port_type Virtual 178749 remote_ip 5.5.5.233 178760 username soleymani5056 178760 mac 178760 bytes_out 125216 178760 bytes_in 202782 178760 station_ip 5.120.8.100 178760 port 147 178760 unique_id port 178760 remote_ip 10.8.0.226 178767 username barzegar 178767 mac 178767 bytes_out 0 178767 bytes_in 0 178767 station_ip 5.119.195.192 178767 port 137 178767 unique_id port 178767 remote_ip 10.8.0.10 178769 username kalantary6037 178769 mac 178769 bytes_out 21007 178769 bytes_in 23021 178769 station_ip 83.123.85.88 178769 port 148 178769 unique_id port 178769 remote_ip 10.8.0.50 178771 username kamali3 178771 mac 178771 bytes_out 2286523 178771 bytes_in 40232215 178771 station_ip 83.123.72.225 178771 port 145 178771 unique_id port 178771 remote_ip 10.8.0.106 178773 username kordestani 178773 mac 178773 bytes_out 2340992 178773 bytes_in 27318539 178773 station_ip 151.235.107.142 178773 port 139 178773 unique_id port 178773 remote_ip 10.8.0.130 178774 username zahra1101 178774 mac 178774 bytes_out 0 178774 bytes_in 0 178774 station_ip 5.119.37.42 178774 port 139 178774 unique_id port 178774 remote_ip 10.8.0.190 178780 username rashidi4690 178780 kill_reason Another user logged on this global unique id 178780 mac 178780 bytes_out 0 178780 bytes_in 0 178780 station_ip 83.123.42.28 178780 port 147 178780 unique_id port 178780 remote_ip 10.8.0.242 178788 username mirzaei6046 178788 kill_reason Another user logged on this global unique id 178788 mac 178788 bytes_out 0 178788 bytes_in 0 178788 station_ip 5.119.103.136 178788 port 74 178788 unique_id port 178789 username motamedi9772 178789 mac 178789 bytes_out 336898 178789 bytes_in 257213 178789 station_ip 83.123.3.166 178789 port 142 178789 unique_id port 178789 remote_ip 10.8.0.154 178790 username hatami 178790 mac 178790 bytes_out 41494 178790 bytes_in 37773 178790 station_ip 151.235.112.170 178790 port 139 178790 unique_id port 178790 remote_ip 10.8.0.98 178796 username rashidi4690 178796 kill_reason Another user logged on this global unique id 178796 mac 178796 bytes_out 0 178796 bytes_in 0 178796 station_ip 83.123.42.28 178796 port 147 178796 unique_id port 178798 username kalantary6037 178798 mac 178798 bytes_out 266169 178798 bytes_in 1808421 178798 station_ip 83.123.94.144 178798 port 139 178798 unique_id port 178798 remote_ip 10.8.0.50 178806 username ahmadi1 178806 mac 178806 bytes_out 3238 178806 bytes_in 5205 178806 station_ip 83.123.36.69 178806 port 148 178806 unique_id port 178806 remote_ip 10.8.0.94 178810 username aminvpn 178810 unique_id port 178810 terminate_cause User-Request 178810 bytes_out 2568920 178810 bytes_in 30344751 178810 station_ip 5.120.117.193 178810 port 15728718 178810 nas_port_type Virtual 178810 remote_ip 5.5.5.231 178814 username khalili2 178761 mac 178761 bytes_out 0 178761 bytes_in 0 178761 station_ip 83.123.126.114 178761 port 142 178761 unique_id port 178763 username hatami 178763 mac 178763 bytes_out 35868 178763 bytes_in 31791 178763 station_ip 151.235.105.93 178763 port 143 178763 unique_id port 178763 remote_ip 10.8.0.98 178765 username barzegar 178765 mac 178765 bytes_out 0 178765 bytes_in 0 178765 station_ip 5.119.195.192 178765 port 88 178765 unique_id port 178765 remote_ip 10.8.0.10 178766 username mehdizare 178766 mac 178766 bytes_out 620304 178766 bytes_in 1898747 178766 station_ip 83.123.0.121 178766 port 137 178766 unique_id port 178766 remote_ip 10.8.0.210 178768 username soleymani5056 178768 mac 178768 bytes_out 75965 178768 bytes_in 83753 178768 station_ip 5.120.92.254 178768 port 143 178768 unique_id port 178768 remote_ip 10.8.0.226 178772 username sedighe 178772 mac 178772 bytes_out 1241688 178772 bytes_in 12793281 178772 station_ip 83.123.2.28 178772 port 126 178772 unique_id port 178772 remote_ip 10.8.0.46 178777 username zahra1101 178777 mac 178777 bytes_out 0 178777 bytes_in 0 178777 station_ip 5.119.37.42 178777 port 142 178777 unique_id port 178777 remote_ip 10.8.0.190 178778 username sedighe 178778 mac 178778 bytes_out 563821 178778 bytes_in 5030412 178778 station_ip 83.123.2.28 178778 port 145 178778 unique_id port 178778 remote_ip 10.8.0.46 178779 username sedighe 178779 mac 178779 bytes_out 0 178779 bytes_in 0 178779 station_ip 83.123.2.28 178779 port 142 178779 unique_id port 178779 remote_ip 10.8.0.46 178784 username aminvpn 178784 unique_id port 178784 terminate_cause Lost-Carrier 178784 bytes_out 2069097 178784 bytes_in 30241545 178784 station_ip 5.119.94.118 178784 port 15728717 178784 nas_port_type Virtual 178784 remote_ip 5.5.5.232 178785 username mostafa_es78 178785 mac 178785 bytes_out 1382479 178785 bytes_in 15132646 178785 station_ip 113.203.10.234 178785 port 126 178785 unique_id port 178785 remote_ip 10.8.0.34 178787 username kalantary6037 178787 mac 178787 bytes_out 56348 178787 bytes_in 84320 178787 station_ip 83.123.75.108 178787 port 142 178787 unique_id port 178787 remote_ip 10.8.0.50 178791 username mehdizare 178791 mac 178791 bytes_out 168724 178791 bytes_in 635029 178791 station_ip 83.123.0.121 178791 port 88 178791 unique_id port 178791 remote_ip 10.8.0.210 178792 username mehdizare 178792 mac 178792 bytes_out 18251 178792 bytes_in 39115 178792 station_ip 83.123.0.121 178792 port 148 178792 unique_id port 178792 remote_ip 10.8.0.210 178794 username sedighe 178794 mac 178794 bytes_out 31170 178794 bytes_in 36269 178794 station_ip 83.123.110.35 178794 port 127 178794 unique_id port 178794 remote_ip 10.8.0.46 178802 username zahra1101 178802 kill_reason Maximum check online fails reached 178802 mac 178802 bytes_out 0 178802 bytes_in 0 178802 station_ip 5.119.129.203 178802 port 143 178802 unique_id port 178804 username zahra1101 178804 mac 178804 bytes_out 0 178804 bytes_in 0 178804 station_ip 5.119.129.203 178804 port 152 178804 unique_id port 178804 remote_ip 10.8.0.190 178807 username soleymani5056 178807 mac 178807 bytes_out 93256 178807 bytes_in 288301 178807 station_ip 5.119.40.46 178807 port 151 178807 unique_id port 178807 remote_ip 10.8.0.226 178809 username khalili2 178809 kill_reason Another user logged on this global unique id 178809 mac 178809 bytes_out 0 178809 bytes_in 0 178809 station_ip 5.119.99.166 178809 port 141 178809 unique_id port 178809 remote_ip 10.8.0.118 178776 mac 178776 bytes_out 0 178776 bytes_in 0 178776 station_ip 5.119.37.42 178776 port 142 178776 unique_id port 178776 remote_ip 10.8.0.190 178781 username majidsarmast 178781 mac 178781 bytes_out 0 178781 bytes_in 0 178781 station_ip 83.123.70.146 178781 port 127 178781 unique_id port 178782 username zahra1101 178782 kill_reason Maximum check online fails reached 178782 mac 178782 bytes_out 0 178782 bytes_in 0 178782 station_ip 5.119.37.42 178782 port 145 178782 unique_id port 178783 username sedighe 178783 mac 178783 bytes_out 17608 178783 bytes_in 44873 178783 station_ip 83.123.100.145 178783 port 148 178783 unique_id port 178783 remote_ip 10.8.0.46 178786 username rashidi4690 178786 kill_reason Another user logged on this global unique id 178786 mac 178786 bytes_out 0 178786 bytes_in 0 178786 station_ip 83.123.42.28 178786 port 147 178786 unique_id port 178793 username barzegar 178793 mac 178793 bytes_out 48943 178793 bytes_in 81836 178793 station_ip 5.119.195.192 178793 port 143 178793 unique_id port 178793 remote_ip 10.8.0.10 178795 username zahra1101 178795 mac 178795 bytes_out 568442 178795 bytes_in 7720140 178795 station_ip 5.119.129.203 178795 port 142 178795 unique_id port 178795 remote_ip 10.8.0.190 178797 username zahra1101 178797 mac 178797 bytes_out 0 178797 bytes_in 0 178797 station_ip 5.119.129.203 178797 port 142 178797 unique_id port 178797 remote_ip 10.8.0.190 178799 username mehdizare 178799 mac 178799 bytes_out 10182 178799 bytes_in 13756 178799 station_ip 83.123.0.121 178799 port 88 178799 unique_id port 178799 remote_ip 10.8.0.210 178800 username rashidi4690 178800 kill_reason Another user logged on this global unique id 178800 mac 178800 bytes_out 0 178800 bytes_in 0 178800 station_ip 83.123.42.28 178800 port 147 178800 unique_id port 178801 username barzegar 178801 mac 178801 bytes_out 0 178801 bytes_in 0 178801 station_ip 5.119.195.192 178801 port 151 178801 unique_id port 178801 remote_ip 10.8.0.10 178803 username milan 178803 kill_reason Another user logged on this global unique id 178803 mac 178803 bytes_out 0 178803 bytes_in 0 178803 station_ip 5.119.68.145 178803 port 134 178803 unique_id port 178805 username kalantary6037 178805 mac 178805 bytes_out 13127 178805 bytes_in 18080 178805 station_ip 83.123.94.144 178805 port 148 178805 unique_id port 178805 remote_ip 10.8.0.50 178808 username rezaei 178808 mac 178808 bytes_out 1749425 178808 bytes_in 13786919 178808 station_ip 5.120.68.177 178808 port 142 178808 unique_id port 178808 remote_ip 10.8.0.198 178815 username zahra1101 178815 mac 178815 bytes_out 1463158 178815 bytes_in 15510775 178815 station_ip 5.119.129.203 178815 port 152 178815 unique_id port 178815 remote_ip 10.8.0.190 178819 username meysam 178819 mac 178819 bytes_out 2121947 178819 bytes_in 28063759 178819 station_ip 188.158.48.10 178819 port 88 178819 unique_id port 178819 remote_ip 10.8.0.158 178825 username barzegar 178825 mac 178825 bytes_out 0 178825 bytes_in 0 178825 station_ip 5.119.195.192 178825 port 88 178825 unique_id port 178825 remote_ip 10.8.0.10 178832 username sedighe 178832 mac 178832 bytes_out 160719 178832 bytes_in 496906 178832 station_ip 83.123.110.35 178832 port 127 178832 unique_id port 178832 remote_ip 10.8.0.46 178838 username fezealinaghi 178838 kill_reason Another user logged on this global unique id 178838 mac 178838 bytes_out 0 178838 bytes_in 0 178838 station_ip 83.123.3.2 178838 port 146 178838 unique_id port 178839 username yaghobi 178811 username soleymani5056 178811 mac 178811 bytes_out 53568 178811 bytes_in 78384 178811 station_ip 5.120.9.200 178811 port 155 178811 unique_id port 178811 remote_ip 10.8.0.226 178812 username barzegar 178812 mac 178812 bytes_out 3416 178812 bytes_in 5640 178812 station_ip 5.119.195.192 178812 port 153 178812 unique_id port 178812 remote_ip 10.8.0.10 178813 username rashidi4690 178813 mac 178813 bytes_out 0 178813 bytes_in 0 178813 station_ip 83.123.42.28 178813 port 147 178813 unique_id port 178817 username barzegar 178817 mac 178817 bytes_out 0 178817 bytes_in 0 178817 station_ip 5.119.195.192 178817 port 147 178817 unique_id port 178817 remote_ip 10.8.0.10 178822 username fezealinaghi 178822 kill_reason Another user logged on this global unique id 178822 mac 178822 bytes_out 0 178822 bytes_in 0 178822 station_ip 83.123.3.2 178822 port 146 178822 unique_id port 178824 username mostafa_es78 178824 kill_reason Another user logged on this global unique id 178824 mac 178824 bytes_out 0 178824 bytes_in 0 178824 station_ip 83.123.23.254 178824 port 148 178824 unique_id port 178824 remote_ip 10.8.0.34 178828 username godarzi 178828 kill_reason Another user logged on this global unique id 178828 mac 178828 bytes_out 0 178828 bytes_in 0 178828 station_ip 5.120.17.26 178828 port 149 178828 unique_id port 178828 remote_ip 10.8.0.38 178829 username morteza 178829 mac 178829 bytes_out 0 178829 bytes_in 0 178829 station_ip 83.123.47.146 178829 port 154 178829 unique_id port 178837 username barzegar 178837 mac 178837 bytes_out 0 178837 bytes_in 0 178837 station_ip 5.119.195.192 178837 port 142 178837 unique_id port 178837 remote_ip 10.8.0.10 178841 username pourshad 178841 kill_reason Another user logged on this global unique id 178841 mac 178841 bytes_out 0 178841 bytes_in 0 178841 station_ip 5.119.33.96 178841 port 107 178841 unique_id port 178841 remote_ip 10.8.0.42 178844 username rezaei 178844 mac 178844 bytes_out 109812 178844 bytes_in 232104 178844 station_ip 5.120.68.177 178844 port 126 178844 unique_id port 178844 remote_ip 10.8.0.198 178848 username hashtadani4 178848 mac 178848 bytes_out 69687 178848 bytes_in 106658 178848 station_ip 83.123.60.60 178848 port 126 178848 unique_id port 178848 remote_ip 10.8.0.22 178850 username moslem6940 178850 mac 178850 bytes_out 80914 178850 bytes_in 116037 178850 station_ip 83.123.27.37 178850 port 151 178850 unique_id port 178850 remote_ip 10.8.0.166 178858 username sedighe 178858 mac 178858 bytes_out 112139 178858 bytes_in 373697 178858 station_ip 83.123.110.35 178858 port 152 178858 unique_id port 178858 remote_ip 10.8.0.46 178863 username barzegar 178863 mac 178863 bytes_out 2126 178863 bytes_in 4435 178863 station_ip 5.119.195.192 178863 port 126 178863 unique_id port 178863 remote_ip 10.8.0.10 178865 username moslem6940 178865 mac 178865 bytes_out 4782 178865 bytes_in 15089 178865 station_ip 83.123.27.37 178865 port 127 178865 unique_id port 178865 remote_ip 10.8.0.166 178873 username fezealinaghi 178873 mac 178873 bytes_out 0 178873 bytes_in 0 178873 station_ip 83.123.3.2 178873 port 146 178873 unique_id port 178877 username moslem6940 178877 kill_reason Maximum check online fails reached 178877 mac 178877 bytes_out 0 178877 bytes_in 0 178877 station_ip 83.123.27.37 178877 port 139 178877 unique_id port 178878 username khalili2 178878 mac 178878 bytes_out 140429 178878 bytes_in 711240 178878 station_ip 5.119.99.166 178878 port 146 178878 unique_id port 178878 remote_ip 10.8.0.118 178814 mac 178814 bytes_out 0 178814 bytes_in 0 178814 station_ip 5.119.99.166 178814 port 141 178814 unique_id port 178816 username sedighe 178816 mac 178816 bytes_out 18362 178816 bytes_in 31045 178816 station_ip 83.123.110.35 178816 port 127 178816 unique_id port 178816 remote_ip 10.8.0.46 178818 username morteza 178818 kill_reason Another user logged on this global unique id 178818 mac 178818 bytes_out 0 178818 bytes_in 0 178818 station_ip 83.123.47.146 178818 port 154 178818 unique_id port 178818 remote_ip 10.8.0.174 178820 username kordestani 178820 mac 178820 bytes_out 3117128 178820 bytes_in 42908071 178820 station_ip 151.235.90.96 178820 port 126 178820 unique_id port 178820 remote_ip 10.8.0.130 178821 username kalantary6037 178821 mac 178821 bytes_out 980205 178821 bytes_in 6030031 178821 station_ip 83.123.94.144 178821 port 142 178821 unique_id port 178821 remote_ip 10.8.0.50 178823 username kalantary6037 178823 mac 178823 bytes_out 202174 178823 bytes_in 983653 178823 station_ip 83.123.94.144 178823 port 88 178823 unique_id port 178823 remote_ip 10.8.0.50 178826 username morteza 178826 kill_reason Another user logged on this global unique id 178826 mac 178826 bytes_out 0 178826 bytes_in 0 178826 station_ip 83.123.47.146 178826 port 154 178826 unique_id port 178827 username rezaei 178827 mac 178827 bytes_out 84280 178827 bytes_in 92682 178827 station_ip 5.120.68.177 178827 port 141 178827 unique_id port 178827 remote_ip 10.8.0.198 178830 username shadkam 178830 mac 178830 bytes_out 933230 178830 bytes_in 10505128 178830 station_ip 83.123.1.26 178830 port 141 178830 unique_id port 178830 remote_ip 10.8.0.74 178831 username mehdizare 178831 mac 178831 bytes_out 83245 178831 bytes_in 125001 178831 station_ip 83.123.0.121 178831 port 139 178831 unique_id port 178831 remote_ip 10.8.0.210 178833 username yaghobi 178833 mac 178833 bytes_out 693026 178833 bytes_in 1726446 178833 station_ip 83.123.1.59 178833 port 147 178833 unique_id port 178833 remote_ip 10.8.0.138 178834 username zahra1101 178834 mac 178834 bytes_out 28538 178834 bytes_in 60754 178834 station_ip 5.119.195.35 178834 port 151 178834 unique_id port 178834 remote_ip 10.8.0.190 178835 username kalantary6037 178835 mac 178835 bytes_out 826302 178835 bytes_in 6195918 178835 station_ip 83.123.94.144 178835 port 142 178835 unique_id port 178835 remote_ip 10.8.0.50 178836 username morteza 178836 mac 178836 bytes_out 0 178836 bytes_in 0 178836 station_ip 83.123.47.146 178836 port 142 178836 unique_id port 178836 remote_ip 10.8.0.174 178840 username shadkam 178840 mac 178840 bytes_out 3418 178840 bytes_in 8319 178840 station_ip 83.123.48.42 178840 port 127 178840 unique_id port 178840 remote_ip 10.8.0.74 178842 username mehdizare 178842 mac 178842 bytes_out 24287 178842 bytes_in 93385 178842 station_ip 83.123.0.121 178842 port 141 178842 unique_id port 178842 remote_ip 10.8.0.210 178843 username zahra1101 178843 mac 178843 bytes_out 15410 178843 bytes_in 26213 178843 station_ip 5.119.225.251 178843 port 153 178843 unique_id port 178843 remote_ip 10.8.0.190 178846 username kalantary6037 178846 mac 178846 bytes_out 262731 178846 bytes_in 1986053 178846 station_ip 83.123.94.144 178846 port 142 178846 unique_id port 178846 remote_ip 10.8.0.50 178851 username barzegar 178851 mac 178851 bytes_out 0 178851 bytes_in 0 178851 station_ip 5.119.195.192 178851 port 141 178851 unique_id port 178851 remote_ip 10.8.0.10 178856 username hashtadani4 178839 mac 178839 bytes_out 262371 178839 bytes_in 458552 178839 station_ip 83.123.1.59 178839 port 154 178839 unique_id port 178839 remote_ip 10.8.0.138 178845 username morteza 178845 kill_reason Another user logged on this global unique id 178845 mac 178845 bytes_out 0 178845 bytes_in 0 178845 station_ip 83.123.47.146 178845 port 147 178845 unique_id port 178845 remote_ip 10.8.0.174 178847 username mehdizare 178847 mac 178847 bytes_out 11972 178847 bytes_in 14974 178847 station_ip 83.123.0.121 178847 port 141 178847 unique_id port 178847 remote_ip 10.8.0.210 178849 username hashtadani4 178849 mac 178849 bytes_out 0 178849 bytes_in 0 178849 station_ip 83.123.60.60 178849 port 126 178849 unique_id port 178849 remote_ip 10.8.0.22 178852 username hashtadani4 178852 mac 178852 bytes_out 0 178852 bytes_in 0 178852 station_ip 83.123.60.60 178852 port 141 178852 unique_id port 178852 remote_ip 10.8.0.22 178853 username khalili2 178853 mac 178853 bytes_out 1329267 178853 bytes_in 16433267 178853 station_ip 5.119.99.166 178853 port 127 178853 unique_id port 178853 remote_ip 10.8.0.118 178854 username moslem6940 178854 mac 178854 bytes_out 541480 178854 bytes_in 8783335 178854 station_ip 83.123.27.37 178854 port 126 178854 unique_id port 178854 remote_ip 10.8.0.166 178855 username moslem6940 178855 mac 178855 bytes_out 0 178855 bytes_in 0 178855 station_ip 83.123.27.37 178855 port 126 178855 unique_id port 178855 remote_ip 10.8.0.166 178857 username moslem6940 178857 mac 178857 bytes_out 0 178857 bytes_in 0 178857 station_ip 83.123.27.37 178857 port 126 178857 unique_id port 178857 remote_ip 10.8.0.166 178860 username moslem6940 178860 mac 178860 bytes_out 0 178860 bytes_in 0 178860 station_ip 83.123.27.37 178860 port 127 178860 unique_id port 178860 remote_ip 10.8.0.166 178862 username moslem6940 178862 mac 178862 bytes_out 0 178862 bytes_in 0 178862 station_ip 83.123.27.37 178862 port 127 178862 unique_id port 178862 remote_ip 10.8.0.166 178866 username godarzi 178866 kill_reason Another user logged on this global unique id 178866 mac 178866 bytes_out 0 178866 bytes_in 0 178866 station_ip 5.120.17.26 178866 port 149 178866 unique_id port 178869 username moslem6940 178869 mac 178869 bytes_out 0 178869 bytes_in 0 178869 station_ip 83.123.27.37 178869 port 136 178869 unique_id port 178869 remote_ip 10.8.0.166 178871 username morteza 178871 mac 178871 bytes_out 0 178871 bytes_in 0 178871 station_ip 83.123.47.146 178871 port 147 178871 unique_id port 178879 username hashtadani4 178879 mac 178879 bytes_out 3101742 178879 bytes_in 40261130 178879 station_ip 83.123.60.60 178879 port 141 178879 unique_id port 178879 remote_ip 10.8.0.22 178880 username barzegar 178880 mac 178880 bytes_out 0 178880 bytes_in 0 178880 station_ip 5.119.195.192 178880 port 141 178880 unique_id port 178880 remote_ip 10.8.0.10 178883 username zahra1101 178883 mac 178883 bytes_out 0 178883 bytes_in 0 178883 station_ip 5.119.192.177 178883 port 141 178883 unique_id port 178883 remote_ip 10.8.0.190 178885 username hashtadani4 178885 mac 178885 bytes_out 0 178885 bytes_in 0 178885 station_ip 83.123.60.60 178885 port 148 178885 unique_id port 178885 remote_ip 10.8.0.22 178888 username mehdizare 178888 mac 178888 bytes_out 58581 178888 bytes_in 79561 178888 station_ip 83.123.0.121 178888 port 142 178888 unique_id port 178888 remote_ip 10.8.0.210 178889 username soleymani5056 178889 mac 178889 bytes_out 39568 178856 mac 178856 bytes_out 171311 178856 bytes_in 814799 178856 station_ip 83.123.60.60 178856 port 127 178856 unique_id port 178856 remote_ip 10.8.0.22 178859 username moslem6940 178859 mac 178859 bytes_out 0 178859 bytes_in 0 178859 station_ip 83.123.27.37 178859 port 126 178859 unique_id port 178859 remote_ip 10.8.0.166 178861 username hashtadani4 178861 mac 178861 bytes_out 0 178861 bytes_in 0 178861 station_ip 83.123.60.60 178861 port 141 178861 unique_id port 178861 remote_ip 10.8.0.22 178864 username khademi 178864 mac 178864 bytes_out 4103244 178864 bytes_in 46317612 178864 station_ip 83.123.10.145 178864 port 136 178864 unique_id port 178864 remote_ip 10.8.0.14 178867 username moslem6940 178867 mac 178867 bytes_out 0 178867 bytes_in 0 178867 station_ip 83.123.27.37 178867 port 127 178867 unique_id port 178867 remote_ip 10.8.0.166 178868 username mostafa_es78 178868 mac 178868 bytes_out 0 178868 bytes_in 0 178868 station_ip 83.123.23.254 178868 port 148 178868 unique_id port 178870 username meysam 178870 mac 178870 bytes_out 1563295 178870 bytes_in 18183354 178870 station_ip 188.158.48.10 178870 port 139 178870 unique_id port 178870 remote_ip 10.8.0.158 178872 username moslem6940 178872 mac 178872 bytes_out 1644 178872 bytes_in 4440 178872 station_ip 83.123.27.37 178872 port 136 178872 unique_id port 178872 remote_ip 10.8.0.166 178874 username moslem6940 178874 mac 178874 bytes_out 0 178874 bytes_in 0 178874 station_ip 83.123.27.37 178874 port 139 178874 unique_id port 178874 remote_ip 10.8.0.166 178875 username moslem6940 178875 mac 178875 bytes_out 0 178875 bytes_in 0 178875 station_ip 83.123.27.37 178875 port 139 178875 unique_id port 178875 remote_ip 10.8.0.166 178876 username fezealinaghi 178876 mac 178876 bytes_out 30726 178876 bytes_in 54109 178876 station_ip 83.123.3.2 178876 port 136 178876 unique_id port 178876 remote_ip 10.8.0.202 178881 username hashtadani4 178881 mac 178881 bytes_out 0 178881 bytes_in 0 178881 station_ip 83.123.60.60 178881 port 141 178881 unique_id port 178881 remote_ip 10.8.0.22 178882 username mostafa_es78 178882 kill_reason Another user logged on this global unique id 178882 mac 178882 bytes_out 0 178882 bytes_in 0 178882 station_ip 83.123.23.254 178882 port 127 178882 unique_id port 178882 remote_ip 10.8.0.34 178886 username zahra1101 178886 mac 178886 bytes_out 0 178886 bytes_in 0 178886 station_ip 5.119.192.177 178886 port 136 178886 unique_id port 178886 remote_ip 10.8.0.190 178890 username milan 178890 kill_reason Another user logged on this global unique id 178890 mac 178890 bytes_out 0 178890 bytes_in 0 178890 station_ip 5.119.68.145 178890 port 134 178890 unique_id port 178892 username zahra1101 178892 kill_reason Maximum check online fails reached 178892 mac 178892 bytes_out 0 178892 bytes_in 0 178892 station_ip 5.119.192.177 178892 port 142 178892 unique_id port 178893 username moslem6940 178893 mac 178893 bytes_out 0 178893 bytes_in 0 178893 station_ip 83.123.27.37 178893 port 148 178893 unique_id port 178893 remote_ip 10.8.0.166 178894 username moslem6940 178894 mac 178894 bytes_out 0 178894 bytes_in 0 178894 station_ip 83.123.27.37 178894 port 148 178894 unique_id port 178894 remote_ip 10.8.0.166 178900 username zahra1101 178900 mac 178900 bytes_out 24669 178900 bytes_in 34433 178900 station_ip 5.119.192.177 178900 port 151 178900 unique_id port 178900 remote_ip 10.8.0.190 178905 username khalili2 178905 mac 178884 username moslem6940 178884 mac 178884 bytes_out 1827402 178884 bytes_in 18301048 178884 station_ip 83.123.27.37 178884 port 136 178884 unique_id port 178884 remote_ip 10.8.0.166 178887 username houshang 178887 mac 178887 bytes_out 246175 178887 bytes_in 684949 178887 station_ip 5.119.216.181 178887 port 147 178887 unique_id port 178887 remote_ip 10.8.0.82 178891 username zahra1101 178891 mac 178891 bytes_out 0 178891 bytes_in 0 178891 station_ip 5.119.192.177 178891 port 148 178891 unique_id port 178891 remote_ip 10.8.0.190 178897 username tahmasebi 178897 kill_reason Relative expiration date has reached 178897 mac 178897 bytes_out 0 178897 bytes_in 0 178897 station_ip 5.119.193.2 178897 port 148 178897 unique_id port 178898 username houshang 178898 mac 178898 bytes_out 127174 178898 bytes_in 778634 178898 station_ip 5.119.216.181 178898 port 152 178898 unique_id port 178898 remote_ip 10.8.0.82 178901 username hashtadani4 178901 mac 178901 bytes_out 1944528 178901 bytes_in 19702304 178901 station_ip 83.123.60.60 178901 port 146 178901 unique_id port 178901 remote_ip 10.8.0.22 178903 username zahra1101 178903 mac 178903 bytes_out 0 178903 bytes_in 0 178903 station_ip 5.120.64.194 178903 port 146 178903 unique_id port 178903 remote_ip 10.8.0.190 178906 username hashtadani4 178906 mac 178906 bytes_out 0 178906 bytes_in 0 178906 station_ip 83.123.60.60 178906 port 137 178906 unique_id port 178906 remote_ip 10.8.0.22 178909 username milan 178909 kill_reason Another user logged on this global unique id 178909 mac 178909 bytes_out 0 178909 bytes_in 0 178909 station_ip 5.119.68.145 178909 port 134 178909 unique_id port 178912 username barzegar 178912 mac 178912 bytes_out 51636 178912 bytes_in 121628 178912 station_ip 5.119.195.192 178912 port 152 178912 unique_id port 178912 remote_ip 10.8.0.10 178916 username moslem6940 178916 mac 178916 bytes_out 2084125 178916 bytes_in 15556564 178916 station_ip 83.123.27.37 178916 port 148 178916 unique_id port 178916 remote_ip 10.8.0.166 178917 username moslem6940 178917 mac 178917 bytes_out 0 178917 bytes_in 0 178917 station_ip 83.123.27.37 178917 port 147 178917 unique_id port 178917 remote_ip 10.8.0.166 178919 username zahra1101 178919 mac 178919 bytes_out 0 178919 bytes_in 0 178919 station_ip 5.120.64.194 178919 port 147 178919 unique_id port 178919 remote_ip 10.8.0.190 178922 username zahra1101 178922 mac 178922 bytes_out 0 178922 bytes_in 0 178922 station_ip 5.120.64.194 178922 port 127 178922 unique_id port 178922 remote_ip 10.8.0.190 178925 username rezaei 178925 mac 178925 bytes_out 911790 178925 bytes_in 8880768 178925 station_ip 5.120.68.177 178925 port 136 178925 unique_id port 178925 remote_ip 10.8.0.198 178928 username pourshad 178928 kill_reason Another user logged on this global unique id 178928 mac 178928 bytes_out 0 178928 bytes_in 0 178928 station_ip 5.119.33.96 178928 port 107 178928 unique_id port 178931 username moslem6940 178931 mac 178931 bytes_out 0 178931 bytes_in 0 178931 station_ip 83.123.27.37 178931 port 127 178931 unique_id port 178931 remote_ip 10.8.0.166 178932 username hashtadani4 178932 mac 178932 bytes_out 0 178932 bytes_in 0 178932 station_ip 83.123.60.60 178932 port 88 178932 unique_id port 178932 remote_ip 10.8.0.22 178933 username milan 178933 kill_reason Another user logged on this global unique id 178933 mac 178933 bytes_out 0 178933 bytes_in 0 178933 station_ip 5.119.68.145 178933 port 134 178933 unique_id port 178889 bytes_in 51248 178889 station_ip 5.119.18.220 178889 port 146 178889 unique_id port 178889 remote_ip 10.8.0.226 178895 username barzegar 178895 mac 178895 bytes_out 0 178895 bytes_in 0 178895 station_ip 5.119.195.192 178895 port 148 178895 unique_id port 178895 remote_ip 10.8.0.10 178896 username tahmasebi 178896 kill_reason Relative expiration date has reached 178896 mac 178896 bytes_out 0 178896 bytes_in 0 178896 station_ip 5.119.193.2 178896 port 148 178896 unique_id port 178899 username mehdizare 178899 mac 178899 bytes_out 100199 178899 bytes_in 629641 178899 station_ip 83.123.0.121 178899 port 136 178899 unique_id port 178899 remote_ip 10.8.0.210 178902 username zahra1101 178902 mac 178902 bytes_out 0 178902 bytes_in 0 178902 station_ip 5.120.64.194 178902 port 136 178902 unique_id port 178902 remote_ip 10.8.0.190 178904 username kamali3 178904 mac 178904 bytes_out 371691 178904 bytes_in 1016941 178904 station_ip 83.123.72.225 178904 port 137 178904 unique_id port 178904 remote_ip 10.8.0.106 178907 username mehdizare 178907 mac 178907 bytes_out 16255 178907 bytes_in 130909 178907 station_ip 83.123.0.121 178907 port 153 178907 unique_id port 178907 remote_ip 10.8.0.210 178911 username kamali3 178911 mac 178911 bytes_out 8509 178911 bytes_in 13701 178911 station_ip 83.123.72.225 178911 port 146 178911 unique_id port 178911 remote_ip 10.8.0.106 178913 username zahra1101 178913 mac 178913 bytes_out 0 178913 bytes_in 0 178913 station_ip 5.120.64.194 178913 port 146 178913 unique_id port 178913 remote_ip 10.8.0.190 178918 username zahra1101 178918 mac 178918 bytes_out 0 178918 bytes_in 0 178918 station_ip 5.120.64.194 178918 port 151 178918 unique_id port 178918 remote_ip 10.8.0.190 178921 username hashtadani4 178921 mac 178921 bytes_out 0 178921 bytes_in 0 178921 station_ip 83.123.60.60 178921 port 147 178921 unique_id port 178921 remote_ip 10.8.0.22 178923 username nilufarrajaei 178923 mac 178923 bytes_out 8034624 178923 bytes_in 17017819 178923 station_ip 83.123.116.101 178923 port 88 178923 unique_id port 178923 remote_ip 10.8.0.194 178926 username hashtadani4 178926 mac 178926 bytes_out 0 178926 bytes_in 0 178926 station_ip 83.123.60.60 178926 port 88 178926 unique_id port 178926 remote_ip 10.8.0.22 178930 username zahra1101 178930 mac 178930 bytes_out 0 178930 bytes_in 0 178930 station_ip 5.120.64.194 178930 port 88 178930 unique_id port 178930 remote_ip 10.8.0.190 178935 username barzegar 178935 mac 178935 bytes_out 0 178935 bytes_in 0 178935 station_ip 5.119.195.192 178935 port 136 178935 unique_id port 178935 remote_ip 10.8.0.10 178947 username khalili2 178947 mac 178947 bytes_out 155118 178947 bytes_in 494942 178947 station_ip 5.119.99.166 178947 port 151 178947 unique_id port 178947 remote_ip 10.8.0.118 178948 username zahra1101 178948 kill_reason Maximum check online fails reached 178948 mac 178948 bytes_out 0 178948 bytes_in 0 178948 station_ip 5.120.64.194 178948 port 148 178948 unique_id port 178950 username hashtadani4 178950 kill_reason Maximum check online fails reached 178950 mac 178950 bytes_out 0 178950 bytes_in 0 178950 station_ip 83.123.60.60 178950 port 127 178950 unique_id port 178953 username zahra1101 178953 mac 178953 bytes_out 0 178953 bytes_in 0 178953 station_ip 5.120.64.194 178953 port 152 178953 unique_id port 178953 remote_ip 10.8.0.190 178957 username hashtadani4 178957 mac 178957 bytes_out 0 178957 bytes_in 0 178905 bytes_out 417767 178905 bytes_in 1692601 178905 station_ip 5.119.99.166 178905 port 147 178905 unique_id port 178905 remote_ip 10.8.0.118 178908 username fezealinaghi 178908 kill_reason Another user logged on this global unique id 178908 mac 178908 bytes_out 0 178908 bytes_in 0 178908 station_ip 83.123.3.2 178908 port 141 178908 unique_id port 178908 remote_ip 10.8.0.202 178910 username zahra1101 178910 mac 178910 bytes_out 0 178910 bytes_in 0 178910 station_ip 5.120.64.194 178910 port 137 178910 unique_id port 178910 remote_ip 10.8.0.190 178914 username zahra1101 178914 mac 178914 bytes_out 0 178914 bytes_in 0 178914 station_ip 5.120.64.194 178914 port 151 178914 unique_id port 178914 remote_ip 10.8.0.190 178915 username kalantary6037 178915 mac 178915 bytes_out 308456 178915 bytes_in 1924583 178915 station_ip 83.123.96.76 178915 port 147 178915 unique_id port 178915 remote_ip 10.8.0.50 178920 username mostafa_es78 178920 mac 178920 bytes_out 0 178920 bytes_in 0 178920 station_ip 83.123.23.254 178920 port 127 178920 unique_id port 178924 username hashtadani4 178924 mac 178924 bytes_out 0 178924 bytes_in 0 178924 station_ip 83.123.60.60 178924 port 147 178924 unique_id port 178924 remote_ip 10.8.0.22 178927 username zahra1101 178927 mac 178927 bytes_out 3971 178927 bytes_in 10310 178927 station_ip 5.120.64.194 178927 port 127 178927 unique_id port 178927 remote_ip 10.8.0.190 178929 username moslem6940 178929 mac 178929 bytes_out 0 178929 bytes_in 0 178929 station_ip 83.123.27.37 178929 port 127 178929 unique_id port 178929 remote_ip 10.8.0.166 178940 username zahra1101 178940 mac 178940 bytes_out 12290 178940 bytes_in 25787 178940 station_ip 5.120.64.194 178940 port 137 178940 unique_id port 178940 remote_ip 10.8.0.190 178942 username godarzi 178942 mac 178942 bytes_out 0 178942 bytes_in 0 178942 station_ip 5.120.17.26 178942 port 149 178942 unique_id port 178944 username zahra1101 178944 mac 178944 bytes_out 0 178944 bytes_in 0 178944 station_ip 5.120.64.194 178944 port 152 178944 unique_id port 178944 remote_ip 10.8.0.190 178945 username zahra1101 178945 mac 178945 bytes_out 0 178945 bytes_in 0 178945 station_ip 5.120.64.194 178945 port 152 178945 unique_id port 178945 remote_ip 10.8.0.190 178949 username nilufarrajaei 178949 mac 178949 bytes_out 1433172 178949 bytes_in 3332452 178949 station_ip 83.123.116.101 178949 port 147 178949 unique_id port 178949 remote_ip 10.8.0.194 178951 username milan 178951 kill_reason Another user logged on this global unique id 178951 mac 178951 bytes_out 0 178951 bytes_in 0 178951 station_ip 5.119.68.145 178951 port 134 178951 unique_id port 178954 username nilufarrajaei 178954 mac 178954 bytes_out 10232 178954 bytes_in 23422 178954 station_ip 83.123.116.101 178954 port 147 178954 unique_id port 178954 remote_ip 10.8.0.194 178962 username zahra1101 178962 mac 178962 bytes_out 0 178962 bytes_in 0 178962 station_ip 5.120.64.194 178962 port 147 178962 unique_id port 178962 remote_ip 10.8.0.190 178963 username hashtadani4 178963 mac 178963 bytes_out 0 178963 bytes_in 0 178963 station_ip 83.123.60.60 178963 port 147 178963 unique_id port 178963 remote_ip 10.8.0.22 178965 username hashtadani4 178965 kill_reason Maximum number of concurrent logins reached 178965 mac 178965 bytes_out 0 178965 bytes_in 0 178965 station_ip 83.123.60.60 178965 port 137 178965 unique_id port 178968 username hashtadani4 178968 kill_reason Maximum check online fails reached 178968 mac 178934 username moslem6940 178934 mac 178934 bytes_out 2085 178934 bytes_in 4603 178934 station_ip 83.123.27.37 178934 port 127 178934 unique_id port 178934 remote_ip 10.8.0.166 178936 username kamali3 178936 mac 178936 bytes_out 24209 178936 bytes_in 35005 178936 station_ip 83.123.72.225 178936 port 137 178936 unique_id port 178936 remote_ip 10.8.0.106 178937 username zahra1101 178937 kill_reason Maximum check online fails reached 178937 mac 178937 bytes_out 0 178937 bytes_in 0 178937 station_ip 5.120.64.194 178937 port 88 178937 unique_id port 178938 username godarzi 178938 kill_reason Another user logged on this global unique id 178938 mac 178938 bytes_out 0 178938 bytes_in 0 178938 station_ip 5.120.17.26 178938 port 149 178938 unique_id port 178939 username zahra1101 178939 mac 178939 bytes_out 0 178939 bytes_in 0 178939 station_ip 5.120.64.194 178939 port 137 178939 unique_id port 178939 remote_ip 10.8.0.190 178941 username mohammadjavad 178941 mac 178941 bytes_out 15356 178941 bytes_in 44905 178941 station_ip 83.123.61.34 178941 port 148 178941 unique_id port 178941 remote_ip 10.8.0.110 178943 username aminvpn 178943 unique_id port 178943 terminate_cause Lost-Carrier 178943 bytes_out 1316441 178943 bytes_in 25927888 178943 station_ip 5.120.122.101 178943 port 15728719 178943 nas_port_type Virtual 178943 remote_ip 5.5.5.230 178946 username hashtadani4 178946 mac 178946 bytes_out 2600122 178946 bytes_in 27585126 178946 station_ip 83.123.60.60 178946 port 127 178946 unique_id port 178946 remote_ip 10.8.0.22 178952 username hashtadani4 178952 mac 178952 bytes_out 0 178952 bytes_in 0 178952 station_ip 83.123.60.60 178952 port 153 178952 unique_id port 178952 remote_ip 10.8.0.22 178955 username barzegar 178955 mac 178955 bytes_out 0 178955 bytes_in 0 178955 station_ip 5.119.195.192 178955 port 154 178955 unique_id port 178955 remote_ip 10.8.0.10 178956 username mostafa_es78 178956 mac 178956 bytes_out 1409145 178956 bytes_in 18983274 178956 station_ip 83.123.33.34 178956 port 149 178956 unique_id port 178956 remote_ip 10.8.0.34 178958 username hashtadani4 178958 mac 178958 bytes_out 0 178958 bytes_in 0 178958 station_ip 83.123.60.60 178958 port 149 178958 unique_id port 178958 remote_ip 10.8.0.22 178959 username zahra1101 178959 mac 178959 bytes_out 0 178959 bytes_in 0 178959 station_ip 5.120.64.194 178959 port 147 178959 unique_id port 178959 remote_ip 10.8.0.190 178961 username kalantary6037 178961 mac 178961 bytes_out 58862 178961 bytes_in 64061 178961 station_ip 83.123.20.136 178961 port 153 178961 unique_id port 178961 remote_ip 10.8.0.50 178964 username meysam 178964 mac 178964 bytes_out 530365 178964 bytes_in 6037748 178964 station_ip 188.159.252.233 178964 port 137 178964 unique_id port 178964 remote_ip 10.8.0.158 178966 username hashtadani4 178966 kill_reason Maximum check online fails reached 178966 mac 178966 bytes_out 0 178966 bytes_in 0 178966 station_ip 83.123.60.60 178966 port 153 178966 unique_id port 178971 username moslem6940 178971 mac 178971 bytes_out 14792 178971 bytes_in 25877 178971 station_ip 83.123.10.17 178971 port 149 178971 unique_id port 178971 remote_ip 10.8.0.166 178974 username meysam 178974 mac 178974 bytes_out 408045 178974 bytes_in 5135210 178974 station_ip 188.159.252.233 178974 port 155 178974 unique_id port 178974 remote_ip 10.8.0.158 178976 username moslem6940 178976 mac 178976 bytes_out 0 178976 bytes_in 0 178976 station_ip 83.123.10.17 178976 port 149 178976 unique_id port 178957 station_ip 83.123.60.60 178957 port 152 178957 unique_id port 178957 remote_ip 10.8.0.22 178960 username zahra1101 178960 mac 178960 bytes_out 0 178960 bytes_in 0 178960 station_ip 5.120.64.194 178960 port 155 178960 unique_id port 178960 remote_ip 10.8.0.190 178967 username rezaei 178967 mac 178967 bytes_out 375454 178967 bytes_in 742620 178967 station_ip 5.120.68.177 178967 port 149 178967 unique_id port 178967 remote_ip 10.8.0.198 178969 username zahra1101 178969 mac 178969 bytes_out 0 178969 bytes_in 0 178969 station_ip 5.120.64.194 178969 port 156 178969 unique_id port 178969 remote_ip 10.8.0.190 178975 username shadkam 178975 mac 178975 bytes_out 96529 178975 bytes_in 1173132 178975 station_ip 83.123.103.46 178975 port 152 178975 unique_id port 178975 remote_ip 10.8.0.74 178983 username hashtadani4 178983 kill_reason Maximum check online fails reached 178983 mac 178983 bytes_out 0 178983 bytes_in 0 178983 station_ip 83.123.60.60 178983 port 152 178983 unique_id port 178984 username rezaei 178984 mac 178984 bytes_out 74358 178984 bytes_in 56413 178984 station_ip 5.120.68.177 178984 port 159 178984 unique_id port 178984 remote_ip 10.8.0.198 178988 username hamid.e 178988 unique_id port 178988 terminate_cause User-Request 178988 bytes_out 2450024 178988 bytes_in 48486287 178988 station_ip 37.27.21.111 178988 port 15728721 178988 nas_port_type Virtual 178988 remote_ip 5.5.5.233 178993 username zahra1101 178993 mac 178993 bytes_out 3774 178993 bytes_in 6576 178993 station_ip 5.120.64.194 178993 port 155 178993 unique_id port 178993 remote_ip 10.8.0.190 178995 username tahmorsi 178995 mac 178995 bytes_out 0 178995 bytes_in 0 178995 station_ip 86.57.101.57 178995 port 151 178995 unique_id port 178995 remote_ip 10.8.0.238 178997 username milan 178997 kill_reason Another user logged on this global unique id 178997 mac 178997 bytes_out 0 178997 bytes_in 0 178997 station_ip 5.119.68.145 178997 port 134 178997 unique_id port 179002 username moslem6940 179002 mac 179002 bytes_out 0 179002 bytes_in 0 179002 station_ip 83.123.10.17 179002 port 159 179002 unique_id port 179002 remote_ip 10.8.0.166 179005 username zahra1101 179005 mac 179005 bytes_out 38392 179005 bytes_in 81025 179005 station_ip 5.120.64.194 179005 port 149 179005 unique_id port 179005 remote_ip 10.8.0.190 179006 username milan 179006 kill_reason Another user logged on this global unique id 179006 mac 179006 bytes_out 0 179006 bytes_in 0 179006 station_ip 5.119.68.145 179006 port 134 179006 unique_id port 179007 username moslem6940 179007 mac 179007 bytes_out 0 179007 bytes_in 0 179007 station_ip 83.123.10.17 179007 port 149 179007 unique_id port 179007 remote_ip 10.8.0.166 179009 username barzegar 179009 mac 179009 bytes_out 0 179009 bytes_in 0 179009 station_ip 5.119.195.192 179009 port 159 179009 unique_id port 179009 remote_ip 10.8.0.10 179012 username kordestani 179012 mac 179012 bytes_out 3253540 179012 bytes_in 43510760 179012 station_ip 151.235.75.67 179012 port 157 179012 unique_id port 179012 remote_ip 10.8.0.130 179015 username moslem6940 179015 mac 179015 bytes_out 0 179015 bytes_in 0 179015 station_ip 83.123.10.17 179015 port 149 179015 unique_id port 179015 remote_ip 10.8.0.166 179016 username moslem6940 179016 mac 179016 bytes_out 0 179016 bytes_in 0 179016 station_ip 83.123.10.17 179016 port 149 179016 unique_id port 179016 remote_ip 10.8.0.166 179019 username moslem6940 179019 kill_reason Maximum check online fails reached 179019 mac 178968 bytes_out 0 178968 bytes_in 0 178968 station_ip 83.123.60.60 178968 port 147 178968 unique_id port 178970 username hashtadani4 178970 mac 178970 bytes_out 0 178970 bytes_in 0 178970 station_ip 83.123.60.60 178970 port 137 178970 unique_id port 178970 remote_ip 10.8.0.22 178972 username moslem6940 178972 mac 178972 bytes_out 0 178972 bytes_in 0 178972 station_ip 83.123.10.17 178972 port 149 178972 unique_id port 178972 remote_ip 10.8.0.166 178973 username hashtadani4 178973 kill_reason Maximum number of concurrent logins reached 178973 mac 178973 bytes_out 0 178973 bytes_in 0 178973 station_ip 83.123.60.60 178973 port 161 178973 unique_id port 178977 username hashtadani4 178977 mac 178977 bytes_out 1644 178977 bytes_in 4991 178977 station_ip 83.123.60.60 178977 port 160 178977 unique_id port 178977 remote_ip 10.8.0.22 178978 username aminvpn 178978 unique_id port 178978 terminate_cause Lost-Carrier 178978 bytes_out 7133882 178978 bytes_in 236023321 178978 station_ip 31.57.141.21 178978 port 15728720 178978 nas_port_type Virtual 178978 remote_ip 5.5.5.229 178980 username hashtadani4 178980 kill_reason Maximum number of concurrent logins reached 178980 mac 178980 bytes_out 0 178980 bytes_in 0 178980 station_ip 83.123.60.60 178980 port 155 178980 unique_id port 178985 username rashidi4690 178985 mac 178985 bytes_out 23731 178985 bytes_in 56681 178985 station_ip 5.119.61.147 178985 port 155 178985 unique_id port 178985 remote_ip 10.8.0.242 178986 username soleymani5056 178986 mac 178986 bytes_out 117760 178986 bytes_in 353893 178986 station_ip 5.120.185.212 178986 port 157 178986 unique_id port 178986 remote_ip 10.8.0.226 178989 username zahra1101 178989 mac 178989 bytes_out 150554 178989 bytes_in 278655 178989 station_ip 5.120.64.194 178989 port 137 178989 unique_id port 178989 remote_ip 10.8.0.190 178990 username barzegar 178990 mac 178990 bytes_out 3090 178990 bytes_in 5207 178990 station_ip 5.119.195.192 178990 port 155 178990 unique_id port 178990 remote_ip 10.8.0.10 178998 username moslem6940 178998 mac 178998 bytes_out 175890 178998 bytes_in 673857 178998 station_ip 83.123.10.17 178998 port 149 178998 unique_id port 178998 remote_ip 10.8.0.166 179000 username zahra1101 179000 mac 179000 bytes_out 44185 179000 bytes_in 300881 179000 station_ip 5.120.64.194 179000 port 151 179000 unique_id port 179000 remote_ip 10.8.0.190 179004 username fezealinaghi 179004 kill_reason Another user logged on this global unique id 179004 mac 179004 bytes_out 0 179004 bytes_in 0 179004 station_ip 83.123.3.2 179004 port 141 179004 unique_id port 179008 username moslem6940 179008 mac 179008 bytes_out 0 179008 bytes_in 0 179008 station_ip 83.123.10.17 179008 port 149 179008 unique_id port 179008 remote_ip 10.8.0.166 179010 username moslem6940 179010 mac 179010 bytes_out 0 179010 bytes_in 0 179010 station_ip 83.123.10.17 179010 port 149 179010 unique_id port 179010 remote_ip 10.8.0.166 179013 username kalantary6037 179013 mac 179013 bytes_out 9246 179013 bytes_in 14208 179013 station_ip 83.123.78.68 179013 port 149 179013 unique_id port 179013 remote_ip 10.8.0.50 179014 username moslem6940 179014 mac 179014 bytes_out 0 179014 bytes_in 0 179014 station_ip 83.123.10.17 179014 port 149 179014 unique_id port 179014 remote_ip 10.8.0.166 179018 username moslem6940 179018 mac 179018 bytes_out 0 179018 bytes_in 0 179018 station_ip 83.123.10.17 179018 port 149 179018 unique_id port 179018 remote_ip 10.8.0.166 179020 username zahra1101 179036 mac 178976 remote_ip 10.8.0.166 178979 username barzegar 178979 mac 178979 bytes_out 0 178979 bytes_in 0 178979 station_ip 5.119.195.192 178979 port 155 178979 unique_id port 178979 remote_ip 10.8.0.10 178981 username hashtadani4 178981 kill_reason Maximum check online fails reached 178981 mac 178981 bytes_out 0 178981 bytes_in 0 178981 station_ip 83.123.60.60 178981 port 158 178981 unique_id port 178982 username moslem6940 178982 mac 178982 bytes_out 19547 178982 bytes_in 23605 178982 station_ip 83.123.10.17 178982 port 149 178982 unique_id port 178982 remote_ip 10.8.0.166 178987 username pourshad 178987 mac 178987 bytes_out 0 178987 bytes_in 0 178987 station_ip 5.119.33.96 178987 port 107 178987 unique_id port 178991 username fezealinaghi 178991 kill_reason Another user logged on this global unique id 178991 mac 178991 bytes_out 0 178991 bytes_in 0 178991 station_ip 83.123.3.2 178991 port 141 178991 unique_id port 178992 username rezaei 178992 mac 178992 bytes_out 21348 178992 bytes_in 35593 178992 station_ip 5.120.68.177 178992 port 149 178992 unique_id port 178992 remote_ip 10.8.0.198 178994 username rezaei 178994 mac 178994 bytes_out 9014 178994 bytes_in 21012 178994 station_ip 5.120.68.177 178994 port 159 178994 unique_id port 178994 remote_ip 10.8.0.198 178996 username pourshad 178996 mac 178996 bytes_out 18551 178996 bytes_in 25276 178996 station_ip 5.119.33.96 178996 port 107 178996 unique_id port 178996 remote_ip 10.8.0.42 178999 username khalili2 178999 kill_reason Another user logged on this global unique id 178999 mac 178999 bytes_out 0 178999 bytes_in 0 178999 station_ip 5.119.99.166 178999 port 156 178999 unique_id port 178999 remote_ip 10.8.0.118 179001 username moslem6940 179001 mac 179001 bytes_out 145010 179001 bytes_in 1967598 179001 station_ip 83.123.10.17 179001 port 159 179001 unique_id port 179001 remote_ip 10.8.0.166 179003 username moslem6940 179003 mac 179003 bytes_out 0 179003 bytes_in 0 179003 station_ip 83.123.10.17 179003 port 159 179003 unique_id port 179003 remote_ip 10.8.0.166 179011 username zahra1101 179011 mac 179011 bytes_out 23905 179011 bytes_in 58627 179011 station_ip 5.120.64.194 179011 port 161 179011 unique_id port 179011 remote_ip 10.8.0.190 179017 username moslem6940 179017 mac 179017 bytes_out 0 179017 bytes_in 0 179017 station_ip 83.123.10.17 179017 port 149 179017 unique_id port 179017 remote_ip 10.8.0.166 179022 username kordestani 179022 mac 179022 bytes_out 0 179022 bytes_in 0 179022 station_ip 151.235.122.134 179022 port 162 179022 unique_id port 179022 remote_ip 10.8.0.130 179023 username godarzi 179023 mac 179023 bytes_out 0 179023 bytes_in 0 179023 station_ip 5.119.181.24 179023 port 162 179023 unique_id port 179023 remote_ip 10.8.0.38 179026 username khalili2 179026 mac 179026 bytes_out 0 179026 bytes_in 0 179026 station_ip 5.119.99.166 179026 port 156 179026 unique_id port 179028 username kamali3 179028 mac 179028 bytes_out 131851 179028 bytes_in 371866 179028 station_ip 83.123.72.225 179028 port 136 179028 unique_id port 179028 remote_ip 10.8.0.106 179032 username shadkam 179032 mac 179032 bytes_out 2726982 179032 bytes_in 41752064 179032 station_ip 83.123.6.156 179032 port 137 179032 unique_id port 179032 remote_ip 10.8.0.74 179034 username sedighe 179034 mac 179034 bytes_out 24669 179034 bytes_in 39446 179034 station_ip 83.123.27.219 179034 port 136 179034 unique_id port 179034 remote_ip 10.8.0.46 179036 username moslem6940 179019 bytes_out 0 179019 bytes_in 0 179019 station_ip 83.123.10.17 179019 port 159 179019 unique_id port 179021 username moslem6940 179021 mac 179021 bytes_out 0 179021 bytes_in 0 179021 station_ip 83.123.10.17 179021 port 149 179021 unique_id port 179021 remote_ip 10.8.0.166 179029 username milan 179029 kill_reason Another user logged on this global unique id 179029 mac 179029 bytes_out 0 179029 bytes_in 0 179029 station_ip 5.119.68.145 179029 port 134 179029 unique_id port 179031 username moslem6940 179031 mac 179031 bytes_out 7972 179031 bytes_in 11515 179031 station_ip 83.123.10.17 179031 port 156 179031 unique_id port 179031 remote_ip 10.8.0.166 179035 username moslem6940 179035 mac 179035 bytes_out 144418 179035 bytes_in 826701 179035 station_ip 83.123.10.17 179035 port 151 179035 unique_id port 179035 remote_ip 10.8.0.166 179040 username moslem6940 179040 mac 179040 bytes_out 0 179040 bytes_in 0 179040 station_ip 83.123.10.17 179040 port 136 179040 unique_id port 179040 remote_ip 10.8.0.166 179044 username sedighe 179044 mac 179044 bytes_out 26802 179044 bytes_in 39778 179044 station_ip 83.123.27.219 179044 port 137 179044 unique_id port 179044 remote_ip 10.8.0.46 179049 username afarin1 179049 mac 179049 bytes_out 3495 179049 bytes_in 7829 179049 station_ip 31.56.155.227 179049 port 155 179049 unique_id port 179049 remote_ip 10.8.0.178 179051 username moslem6940 179051 mac 179051 bytes_out 0 179051 bytes_in 0 179051 station_ip 83.123.10.17 179051 port 155 179051 unique_id port 179051 remote_ip 10.8.0.166 179052 username kordestani 179052 mac 179052 bytes_out 649872 179052 bytes_in 6728421 179052 station_ip 151.235.122.134 179052 port 149 179052 unique_id port 179052 remote_ip 10.8.0.130 179055 username moslem6940 179055 mac 179055 bytes_out 0 179055 bytes_in 0 179055 station_ip 83.123.10.17 179055 port 156 179055 unique_id port 179055 remote_ip 10.8.0.166 179056 username khalili2 179056 mac 179056 bytes_out 1360623 179056 bytes_in 20327119 179056 station_ip 5.119.99.166 179056 port 137 179056 unique_id port 179056 remote_ip 10.8.0.118 179058 username rashidi4690 179058 mac 179058 bytes_out 43550 179058 bytes_in 168854 179058 station_ip 5.119.61.147 179058 port 156 179058 unique_id port 179058 remote_ip 10.8.0.242 179066 username moslem6940 179066 mac 179066 bytes_out 0 179066 bytes_in 0 179066 station_ip 83.123.10.17 179066 port 164 179066 unique_id port 179066 remote_ip 10.8.0.166 179070 username moslem6940 179070 kill_reason Maximum check online fails reached 179070 mac 179070 bytes_out 0 179070 bytes_in 0 179070 station_ip 83.123.10.17 179070 port 164 179070 unique_id port 179079 username motamedi9772 179079 mac 179079 bytes_out 244402 179079 bytes_in 1652580 179079 station_ip 83.123.97.162 179079 port 163 179079 unique_id port 179079 remote_ip 10.8.0.154 179087 username moslem6940 179087 mac 179087 bytes_out 0 179087 bytes_in 0 179087 station_ip 83.123.10.17 179087 port 74 179087 unique_id port 179087 remote_ip 10.8.0.166 179091 username barzegar 179091 mac 179091 bytes_out 0 179091 bytes_in 0 179091 station_ip 5.119.195.192 179091 port 167 179091 unique_id port 179091 remote_ip 10.8.0.10 179096 username mehdizare 179096 mac 179096 bytes_out 1383908 179096 bytes_in 22538511 179096 station_ip 83.123.0.121 179096 port 146 179096 unique_id port 179096 remote_ip 10.8.0.210 179098 username khalili2 179098 mac 179098 bytes_out 687789 179098 bytes_in 4509809 179020 kill_reason Maximum check online fails reached 179020 mac 179020 bytes_out 0 179020 bytes_in 0 179020 station_ip 5.120.64.194 179020 port 161 179020 unique_id port 179024 username moslem6940 179024 mac 179024 bytes_out 0 179024 bytes_in 0 179024 station_ip 83.123.10.17 179024 port 162 179024 unique_id port 179024 remote_ip 10.8.0.166 179025 username moslem6940 179025 mac 179025 bytes_out 0 179025 bytes_in 0 179025 station_ip 83.123.10.17 179025 port 162 179025 unique_id port 179025 remote_ip 10.8.0.166 179027 username pourshad 179027 kill_reason Another user logged on this global unique id 179027 mac 179027 bytes_out 0 179027 bytes_in 0 179027 station_ip 5.119.33.96 179027 port 107 179027 unique_id port 179027 remote_ip 10.8.0.42 179030 username sedighe 179030 mac 179030 bytes_out 80588 179030 bytes_in 132878 179030 station_ip 83.123.27.219 179030 port 151 179030 unique_id port 179030 remote_ip 10.8.0.46 179033 username malekpoir 179033 kill_reason Another user logged on this global unique id 179033 mac 179033 bytes_out 0 179033 bytes_in 0 179033 station_ip 5.120.107.177 179033 port 150 179033 unique_id port 179033 remote_ip 10.8.0.18 179037 username moslem6940 179037 mac 179037 bytes_out 0 179037 bytes_in 0 179037 station_ip 83.123.10.17 179037 port 136 179037 unique_id port 179037 remote_ip 10.8.0.166 179039 username barzegar 179039 mac 179039 bytes_out 0 179039 bytes_in 0 179039 station_ip 5.119.195.192 179039 port 136 179039 unique_id port 179039 remote_ip 10.8.0.10 179041 username milan 179041 kill_reason Another user logged on this global unique id 179041 mac 179041 bytes_out 0 179041 bytes_in 0 179041 station_ip 5.119.68.145 179041 port 134 179041 unique_id port 179042 username moslem6940 179042 mac 179042 bytes_out 0 179042 bytes_in 0 179042 station_ip 83.123.10.17 179042 port 136 179042 unique_id port 179042 remote_ip 10.8.0.166 179045 username pourshad 179045 kill_reason Another user logged on this global unique id 179045 mac 179045 bytes_out 0 179045 bytes_in 0 179045 station_ip 5.119.33.96 179045 port 107 179045 unique_id port 179046 username tahmorsi 179046 mac 179046 bytes_out 0 179046 bytes_in 0 179046 station_ip 86.57.101.57 179046 port 155 179046 unique_id port 179046 remote_ip 10.8.0.238 179054 username moslem6940 179054 mac 179054 bytes_out 0 179054 bytes_in 0 179054 station_ip 83.123.10.17 179054 port 149 179054 unique_id port 179054 remote_ip 10.8.0.166 179059 username moslem6940 179059 mac 179059 bytes_out 0 179059 bytes_in 0 179059 station_ip 83.123.10.17 179059 port 137 179059 unique_id port 179059 remote_ip 10.8.0.166 179060 username barzegar 179060 mac 179060 bytes_out 0 179060 bytes_in 0 179060 station_ip 5.119.195.192 179060 port 156 179060 unique_id port 179060 remote_ip 10.8.0.10 179063 username sedighe 179063 mac 179063 bytes_out 107589 179063 bytes_in 198892 179063 station_ip 83.123.27.219 179063 port 163 179063 unique_id port 179063 remote_ip 10.8.0.46 179067 username moslem6940 179067 mac 179067 bytes_out 0 179067 bytes_in 0 179067 station_ip 83.123.10.17 179067 port 165 179067 unique_id port 179067 remote_ip 10.8.0.166 179069 username milan 179069 kill_reason Another user logged on this global unique id 179069 mac 179069 bytes_out 0 179069 bytes_in 0 179069 station_ip 5.119.68.145 179069 port 134 179069 unique_id port 179071 username soleymani5056 179071 mac 179071 bytes_out 42481 179071 bytes_in 72780 179071 station_ip 5.119.48.169 179071 port 160 179071 unique_id port 179036 bytes_out 0 179036 bytes_in 0 179036 station_ip 83.123.10.17 179036 port 136 179036 unique_id port 179036 remote_ip 10.8.0.166 179038 username mostafa_es78 179038 kill_reason Another user logged on this global unique id 179038 mac 179038 bytes_out 0 179038 bytes_in 0 179038 station_ip 83.123.33.34 179038 port 154 179038 unique_id port 179038 remote_ip 10.8.0.34 179043 username moslem6940 179043 mac 179043 bytes_out 0 179043 bytes_in 0 179043 station_ip 83.123.10.17 179043 port 136 179043 unique_id port 179043 remote_ip 10.8.0.166 179047 username moslem6940 179047 mac 179047 bytes_out 5537 179047 bytes_in 10554 179047 station_ip 83.123.10.17 179047 port 156 179047 unique_id port 179047 remote_ip 10.8.0.166 179048 username moslem6940 179048 mac 179048 bytes_out 0 179048 bytes_in 0 179048 station_ip 83.123.10.17 179048 port 156 179048 unique_id port 179048 remote_ip 10.8.0.166 179050 username moslem6940 179050 mac 179050 bytes_out 0 179050 bytes_in 0 179050 station_ip 83.123.10.17 179050 port 155 179050 unique_id port 179050 remote_ip 10.8.0.166 179053 username moslem6940 179053 mac 179053 bytes_out 0 179053 bytes_in 0 179053 station_ip 83.123.10.17 179053 port 149 179053 unique_id port 179053 remote_ip 10.8.0.166 179057 username moslem6940 179057 kill_reason Maximum check online fails reached 179057 mac 179057 bytes_out 0 179057 bytes_in 0 179057 station_ip 83.123.10.17 179057 port 149 179057 unique_id port 179061 username moslem6940 179061 mac 179061 bytes_out 0 179061 bytes_in 0 179061 station_ip 83.123.10.17 179061 port 165 179061 unique_id port 179061 remote_ip 10.8.0.166 179062 username jafari 179062 kill_reason Another user logged on this global unique id 179062 mac 179062 bytes_out 0 179062 bytes_in 0 179062 station_ip 93.114.30.84 179062 port 151 179062 unique_id port 179062 remote_ip 10.8.0.86 179064 username khalili2 179064 mac 179064 bytes_out 59113 179064 bytes_in 214190 179064 station_ip 5.119.99.166 179064 port 164 179064 unique_id port 179064 remote_ip 10.8.0.118 179065 username nilufarrajaei 179065 mac 179065 bytes_out 277800 179065 bytes_in 1641170 179065 station_ip 83.123.116.101 179065 port 160 179065 unique_id port 179065 remote_ip 10.8.0.194 179068 username pourshad 179068 kill_reason Another user logged on this global unique id 179068 mac 179068 bytes_out 0 179068 bytes_in 0 179068 station_ip 5.119.33.96 179068 port 107 179068 unique_id port 179072 username moslem6940 179072 mac 179072 bytes_out 0 179072 bytes_in 0 179072 station_ip 83.123.10.17 179072 port 166 179072 unique_id port 179072 remote_ip 10.8.0.166 179075 username aminvpn 179075 unique_id port 179075 terminate_cause Lost-Carrier 179075 bytes_out 3664573 179075 bytes_in 52478548 179075 station_ip 5.119.240.242 179075 port 15728724 179075 nas_port_type Virtual 179075 remote_ip 5.5.5.235 179077 username shadkam 179077 mac 179077 bytes_out 2257 179077 bytes_in 4709 179077 station_ip 83.123.64.221 179077 port 137 179077 unique_id port 179077 remote_ip 10.8.0.74 179081 username nilufarrajaei 179081 kill_reason Another user logged on this global unique id 179081 mac 179081 bytes_out 0 179081 bytes_in 0 179081 station_ip 83.123.116.101 179081 port 156 179081 unique_id port 179081 remote_ip 10.8.0.194 179084 username milan 179084 kill_reason Another user logged on this global unique id 179084 mac 179084 bytes_out 0 179084 bytes_in 0 179084 station_ip 5.119.68.145 179084 port 134 179084 unique_id port 179085 username moslem6940 179085 mac 179085 bytes_out 0 179085 bytes_in 0 179071 remote_ip 10.8.0.226 179073 username kalantary6037 179073 mac 179073 bytes_out 577002 179073 bytes_in 5247119 179073 station_ip 83.123.116.84 179073 port 137 179073 unique_id port 179073 remote_ip 10.8.0.50 179074 username mirzaei6046 179074 mac 179074 bytes_out 0 179074 bytes_in 0 179074 station_ip 5.119.103.136 179074 port 74 179074 unique_id port 179076 username moslem6940 179076 mac 179076 bytes_out 1998829 179076 bytes_in 33010576 179076 station_ip 83.123.10.17 179076 port 137 179076 unique_id port 179076 remote_ip 10.8.0.166 179078 username moslem6940 179078 mac 179078 bytes_out 0 179078 bytes_in 0 179078 station_ip 83.123.10.17 179078 port 137 179078 unique_id port 179078 remote_ip 10.8.0.166 179080 username khalili2 179080 mac 179080 bytes_out 1222677 179080 bytes_in 16747658 179080 station_ip 5.119.99.166 179080 port 74 179080 unique_id port 179080 remote_ip 10.8.0.118 179082 username barzegar 179082 mac 179082 bytes_out 0 179082 bytes_in 0 179082 station_ip 5.119.195.192 179082 port 137 179082 unique_id port 179082 remote_ip 10.8.0.10 179083 username barzegar 179083 mac 179083 bytes_out 0 179083 bytes_in 0 179083 station_ip 5.119.195.192 179083 port 74 179083 unique_id port 179083 remote_ip 10.8.0.10 179089 username moslem6940 179089 mac 179089 bytes_out 0 179089 bytes_in 0 179089 station_ip 83.123.10.17 179089 port 74 179089 unique_id port 179089 remote_ip 10.8.0.166 179090 username tahmorsi 179090 mac 179090 bytes_out 0 179090 bytes_in 0 179090 station_ip 86.57.101.57 179090 port 136 179090 unique_id port 179090 remote_ip 10.8.0.6 179100 username kamali3 179100 mac 179100 bytes_out 168755 179100 bytes_in 185045 179100 station_ip 83.123.72.225 179100 port 162 179100 unique_id port 179100 remote_ip 10.8.0.106 179103 username rezaei 179103 mac 179103 bytes_out 1139742 179103 bytes_in 8179891 179103 station_ip 5.120.68.177 179103 port 167 179103 unique_id port 179103 remote_ip 10.8.0.198 179106 username malekpoir 179106 mac 179106 bytes_out 0 179106 bytes_in 0 179106 station_ip 5.120.107.177 179106 port 150 179106 unique_id port 179108 username soleymani5056 179108 mac 179108 bytes_out 46185 179108 bytes_in 74006 179108 station_ip 5.119.91.97 179108 port 136 179108 unique_id port 179108 remote_ip 10.8.0.226 179109 username soleymani5056 179109 mac 179109 bytes_out 5382 179109 bytes_in 6700 179109 station_ip 5.119.145.189 179109 port 150 179109 unique_id port 179109 remote_ip 10.8.0.226 179111 username kalantary6037 179111 mac 179111 bytes_out 1618560 179111 bytes_in 8241644 179111 station_ip 83.123.36.244 179111 port 163 179111 unique_id port 179111 remote_ip 10.8.0.50 179112 username mehdizare 179112 mac 179112 bytes_out 16630 179112 bytes_in 25986 179112 station_ip 83.123.0.121 179112 port 168 179112 unique_id port 179112 remote_ip 10.8.0.210 179116 username moslem6940 179116 mac 179116 bytes_out 929705 179116 bytes_in 14783270 179116 station_ip 83.123.10.17 179116 port 74 179116 unique_id port 179116 remote_ip 10.8.0.166 179119 username moslem6940 179119 mac 179119 bytes_out 0 179119 bytes_in 0 179119 station_ip 83.123.10.17 179119 port 74 179119 unique_id port 179119 remote_ip 10.8.0.166 179126 username moslem6940 179126 mac 179126 bytes_out 1126200 179126 bytes_in 19886400 179126 station_ip 83.123.10.17 179126 port 74 179126 unique_id port 179126 remote_ip 10.8.0.166 179127 username pourshad 179127 mac 179127 bytes_out 0 179085 station_ip 83.123.10.17 179085 port 74 179085 unique_id port 179085 remote_ip 10.8.0.166 179086 username pourshad 179086 kill_reason Another user logged on this global unique id 179086 mac 179086 bytes_out 0 179086 bytes_in 0 179086 station_ip 5.119.33.96 179086 port 107 179086 unique_id port 179088 username moslem6940 179088 mac 179088 bytes_out 0 179088 bytes_in 0 179088 station_ip 83.123.10.17 179088 port 74 179088 unique_id port 179088 remote_ip 10.8.0.166 179092 username sedighe 179092 mac 179092 bytes_out 82752 179092 bytes_in 159555 179092 station_ip 83.123.2.183 179092 port 137 179092 unique_id port 179092 remote_ip 10.8.0.46 179093 username sabaghnezhad 179093 mac 179093 bytes_out 290063 179093 bytes_in 599641 179093 station_ip 83.123.105.60 179093 port 168 179093 unique_id port 179093 remote_ip 10.8.0.66 179094 username barzegar 179094 mac 179094 bytes_out 4876 179094 bytes_in 7297 179094 station_ip 5.119.195.192 179094 port 137 179094 unique_id port 179094 remote_ip 10.8.0.10 179095 username pourshad 179095 kill_reason Another user logged on this global unique id 179095 mac 179095 bytes_out 0 179095 bytes_in 0 179095 station_ip 5.119.33.96 179095 port 107 179095 unique_id port 179097 username milan 179097 kill_reason Another user logged on this global unique id 179097 mac 179097 bytes_out 0 179097 bytes_in 0 179097 station_ip 5.119.68.145 179097 port 134 179097 unique_id port 179104 username moslem6940 179104 mac 179104 bytes_out 0 179104 bytes_in 0 179104 station_ip 83.123.10.17 179104 port 74 179104 unique_id port 179104 remote_ip 10.8.0.166 179113 username soleymani5056 179113 mac 179113 bytes_out 47993 179113 bytes_in 75052 179113 station_ip 5.119.32.2 179113 port 136 179113 unique_id port 179113 remote_ip 10.8.0.226 179115 username tahmorsi 179115 kill_reason Another user logged on this global unique id 179115 mac 179115 bytes_out 0 179115 bytes_in 0 179115 station_ip 86.57.101.57 179115 port 166 179115 unique_id port 179115 remote_ip 10.8.0.238 179118 username barzegar 179118 mac 179118 bytes_out 0 179118 bytes_in 0 179118 station_ip 5.119.195.192 179118 port 136 179118 unique_id port 179118 remote_ip 10.8.0.10 179120 username jafari 179120 kill_reason Another user logged on this global unique id 179120 mac 179120 bytes_out 0 179120 bytes_in 0 179120 station_ip 93.114.30.84 179120 port 151 179120 unique_id port 179121 username khademi 179121 kill_reason Another user logged on this global unique id 179121 mac 179121 bytes_out 0 179121 bytes_in 0 179121 station_ip 83.123.53.153 179121 port 126 179121 unique_id port 179121 remote_ip 10.8.0.14 179122 username pourshad 179122 kill_reason Another user logged on this global unique id 179122 mac 179122 bytes_out 0 179122 bytes_in 0 179122 station_ip 5.119.33.96 179122 port 107 179122 unique_id port 179122 remote_ip 10.8.0.42 179124 username shadkam 179124 mac 179124 bytes_out 98678 179124 bytes_in 528922 179124 station_ip 83.123.127.134 179124 port 163 179124 unique_id port 179124 remote_ip 10.8.0.74 179125 username mehdizare 179125 mac 179125 bytes_out 11686 179125 bytes_in 12999 179125 station_ip 83.123.0.121 179125 port 167 179125 unique_id port 179125 remote_ip 10.8.0.210 179128 username moslem6940 179128 mac 179128 bytes_out 0 179128 bytes_in 0 179128 station_ip 83.123.10.17 179128 port 74 179128 unique_id port 179128 remote_ip 10.8.0.166 179130 username moslem6940 179130 mac 179130 bytes_out 0 179130 bytes_in 0 179130 station_ip 83.123.10.17 179130 port 107 179130 unique_id port 179130 remote_ip 10.8.0.166 179098 station_ip 5.119.99.166 179098 port 136 179098 unique_id port 179098 remote_ip 10.8.0.118 179099 username mohammadmahdi 179099 mac 179099 bytes_out 747196 179099 bytes_in 7818055 179099 station_ip 5.119.52.180 179099 port 170 179099 unique_id port 179099 remote_ip 10.8.0.30 179101 username moslem6940 179101 mac 179101 bytes_out 1367339 179101 bytes_in 17981252 179101 station_ip 83.123.10.17 179101 port 74 179101 unique_id port 179101 remote_ip 10.8.0.166 179102 username pourshad 179102 mac 179102 bytes_out 0 179102 bytes_in 0 179102 station_ip 5.119.33.96 179102 port 107 179102 unique_id port 179105 username yaghobi 179105 mac 179105 bytes_out 543771 179105 bytes_in 1844924 179105 station_ip 83.123.3.167 179105 port 169 179105 unique_id port 179105 remote_ip 10.8.0.138 179107 username barzegar 179107 mac 179107 bytes_out 0 179107 bytes_in 0 179107 station_ip 5.119.195.192 179107 port 107 179107 unique_id port 179107 remote_ip 10.8.0.10 179110 username alirezazadeh 179110 unique_id port 179110 terminate_cause User-Request 179110 bytes_out 2740833 179110 bytes_in 10107038 179110 station_ip 151.238.246.120 179110 port 15728725 179110 nas_port_type Virtual 179110 remote_ip 5.5.5.228 179114 username motamedi9772 179114 mac 179114 bytes_out 0 179114 bytes_in 0 179114 station_ip 83.123.2.18 179114 port 163 179114 unique_id port 179114 remote_ip 10.8.0.154 179117 username shadkam 179117 mac 179117 bytes_out 2588515 179117 bytes_in 27465297 179117 station_ip 83.123.111.36 179117 port 162 179117 unique_id port 179117 remote_ip 10.8.0.74 179123 username mehdizare 179123 mac 179123 bytes_out 13282 179123 bytes_in 16907 179123 station_ip 83.123.0.121 179123 port 150 179123 unique_id port 179123 remote_ip 10.8.0.210 179132 username moslem6940 179132 mac 179132 bytes_out 0 179132 bytes_in 0 179132 station_ip 83.123.10.17 179132 port 107 179132 unique_id port 179132 remote_ip 10.8.0.166 179133 username yaghobi 179133 mac 179133 bytes_out 71313 179133 bytes_in 108041 179133 station_ip 83.123.19.103 179133 port 162 179133 unique_id port 179133 remote_ip 10.8.0.138 179137 username kalantary6037 179137 mac 179137 bytes_out 249471 179137 bytes_in 864928 179137 station_ip 83.123.45.92 179137 port 163 179137 unique_id port 179137 remote_ip 10.8.0.50 179138 username moslem6940 179138 mac 179138 bytes_out 0 179138 bytes_in 0 179138 station_ip 83.123.10.17 179138 port 107 179138 unique_id port 179138 remote_ip 10.8.0.166 179140 username rezaei 179140 mac 179140 bytes_out 759861 179140 bytes_in 6327106 179140 station_ip 5.120.68.177 179140 port 167 179140 unique_id port 179140 remote_ip 10.8.0.198 179143 username jafari 179143 kill_reason Another user logged on this global unique id 179143 mac 179143 bytes_out 0 179143 bytes_in 0 179143 station_ip 93.114.30.84 179143 port 151 179143 unique_id port 179144 username moslem6940 179144 mac 179144 bytes_out 0 179144 bytes_in 0 179144 station_ip 83.123.10.17 179144 port 141 179144 unique_id port 179144 remote_ip 10.8.0.166 179145 username barzegar 179145 mac 179145 bytes_out 0 179145 bytes_in 0 179145 station_ip 5.119.195.192 179145 port 141 179145 unique_id port 179145 remote_ip 10.8.0.10 179150 username mehdizare 179150 mac 179150 bytes_out 18559 179150 bytes_in 21145 179150 station_ip 83.123.0.121 179150 port 150 179150 unique_id port 179150 remote_ip 10.8.0.210 179151 username godarzi 179151 mac 179151 bytes_out 5635497 179151 bytes_in 39613892 179127 bytes_in 0 179127 station_ip 5.119.33.96 179127 port 107 179127 unique_id port 179129 username rashidi4690 179129 mac 179129 bytes_out 4778082 179129 bytes_in 45797557 179129 station_ip 83.123.120.0 179129 port 137 179129 unique_id port 179129 remote_ip 10.8.0.242 179131 username moslem6940 179131 mac 179131 bytes_out 0 179131 bytes_in 0 179131 station_ip 83.123.10.17 179131 port 107 179131 unique_id port 179131 remote_ip 10.8.0.166 179134 username barzegar 179134 mac 179134 bytes_out 0 179134 bytes_in 0 179134 station_ip 5.119.195.192 179134 port 107 179134 unique_id port 179134 remote_ip 10.8.0.10 179136 username fezealinaghi 179136 mac 179136 bytes_out 0 179136 bytes_in 0 179136 station_ip 83.123.3.2 179136 port 141 179136 unique_id port 179139 username moslem6940 179139 mac 179139 bytes_out 0 179139 bytes_in 0 179139 station_ip 83.123.10.17 179139 port 141 179139 unique_id port 179139 remote_ip 10.8.0.166 179146 username pourshad 179146 kill_reason Another user logged on this global unique id 179146 mac 179146 bytes_out 0 179146 bytes_in 0 179146 station_ip 5.119.33.96 179146 port 168 179146 unique_id port 179146 remote_ip 10.8.0.42 179148 username tahmorsi 179148 mac 179148 bytes_out 0 179148 bytes_in 0 179148 station_ip 86.57.101.57 179148 port 166 179148 unique_id port 179153 username barzegar 179153 mac 179153 bytes_out 0 179153 bytes_in 0 179153 station_ip 5.119.195.192 179153 port 151 179153 unique_id port 179153 remote_ip 10.8.0.10 179155 username mehdizare 179155 mac 179155 bytes_out 256461 179155 bytes_in 5102980 179155 station_ip 83.123.0.121 179155 port 162 179155 unique_id port 179155 remote_ip 10.8.0.210 179158 username shadkam 179158 mac 179158 bytes_out 2502 179158 bytes_in 5183 179158 station_ip 83.123.107.207 179158 port 151 179158 unique_id port 179158 remote_ip 10.8.0.74 179164 username shadkam 179164 mac 179164 bytes_out 45953 179164 bytes_in 124191 179164 station_ip 83.123.64.233 179164 port 166 179164 unique_id port 179164 remote_ip 10.8.0.74 179167 username tahmorsi 179167 mac 179167 bytes_out 47621299 179167 bytes_in 2554810 179167 station_ip 86.57.101.57 179167 port 150 179167 unique_id port 179167 remote_ip 10.8.0.6 179173 username mostafa_es78 179173 kill_reason Another user logged on this global unique id 179173 mac 179173 bytes_out 0 179173 bytes_in 0 179173 station_ip 83.123.33.34 179173 port 154 179173 unique_id port 179175 username rezaei 179175 mac 179175 bytes_out 4517872 179175 bytes_in 44665315 179175 station_ip 5.120.68.177 179175 port 163 179175 unique_id port 179175 remote_ip 10.8.0.198 179177 username khademi 179177 mac 179177 bytes_out 0 179177 bytes_in 0 179177 station_ip 83.123.53.153 179177 port 126 179177 unique_id port 179179 username sedighe 179179 mac 179179 bytes_out 800500 179179 bytes_in 4459566 179179 station_ip 83.123.75.72 179179 port 150 179179 unique_id port 179179 remote_ip 10.8.0.46 179180 username shadkam 179180 mac 179180 bytes_out 34951 179180 bytes_in 77009 179180 station_ip 83.123.21.103 179180 port 166 179180 unique_id port 179180 remote_ip 10.8.0.74 179184 username aminvpn 179184 mac 179184 bytes_out 0 179184 bytes_in 0 179184 station_ip 5.119.160.248 179184 port 74 179184 unique_id port 179184 remote_ip 10.8.0.58 179185 username hamid.e 179185 kill_reason Maximum number of concurrent logins reached 179185 unique_id port 179185 bytes_out 0 179185 bytes_in 0 179185 station_ip 31.59.38.150 179185 port 15728732 179135 username rashidi4690 179135 mac 179135 bytes_out 31263 179135 bytes_in 46906 179135 station_ip 83.123.120.0 179135 port 74 179135 unique_id port 179135 remote_ip 10.8.0.242 179141 username moslem6940 179141 mac 179141 bytes_out 21857 179141 bytes_in 65826 179141 station_ip 83.123.10.17 179141 port 141 179141 unique_id port 179141 remote_ip 10.8.0.166 179142 username moslem6940 179142 mac 179142 bytes_out 0 179142 bytes_in 0 179142 station_ip 83.123.10.17 179142 port 141 179142 unique_id port 179142 remote_ip 10.8.0.166 179147 username barzegar 179147 mac 179147 bytes_out 0 179147 bytes_in 0 179147 station_ip 5.119.195.192 179147 port 162 179147 unique_id port 179147 remote_ip 10.8.0.10 179149 username jafari 179149 mac 179149 bytes_out 0 179149 bytes_in 0 179149 station_ip 93.114.30.84 179149 port 151 179149 unique_id port 179154 username kalantary6037 179154 mac 179154 bytes_out 622822 179154 bytes_in 3699273 179154 station_ip 83.123.45.92 179154 port 141 179154 unique_id port 179154 remote_ip 10.8.0.50 179156 username barzegar 179156 kill_reason Maximum check online fails reached 179156 mac 179156 bytes_out 0 179156 bytes_in 0 179156 station_ip 5.119.195.192 179156 port 165 179156 unique_id port 179157 username mohammadjavad 179157 mac 179157 bytes_out 468554 179157 bytes_in 4436866 179157 station_ip 83.123.117.170 179157 port 151 179157 unique_id port 179157 remote_ip 10.8.0.110 179160 username rashidi4690 179160 kill_reason Another user logged on this global unique id 179160 mac 179160 bytes_out 0 179160 bytes_in 0 179160 station_ip 83.123.120.0 179160 port 107 179160 unique_id port 179160 remote_ip 10.8.0.242 179163 username mohammadmahdi 179163 mac 179163 bytes_out 3452257 179163 bytes_in 36617868 179163 station_ip 5.119.52.180 179163 port 172 179163 unique_id port 179163 remote_ip 10.8.0.30 179166 username khalili2 179166 mac 179166 bytes_out 3178868 179166 bytes_in 24590052 179166 station_ip 5.119.99.166 179166 port 146 179166 unique_id port 179166 remote_ip 10.8.0.118 179168 username rashidi4690 179168 kill_reason Another user logged on this global unique id 179168 mac 179168 bytes_out 0 179168 bytes_in 0 179168 station_ip 83.123.120.0 179168 port 107 179168 unique_id port 179174 username yaghobi 179174 mac 179174 bytes_out 2475620 179174 bytes_in 13469157 179174 station_ip 83.123.121.195 179174 port 74 179174 unique_id port 179174 remote_ip 10.8.0.138 179178 username yaghobi 179178 kill_reason Maximum check online fails reached 179178 mac 179178 bytes_out 0 179178 bytes_in 0 179178 station_ip 83.123.98.138 179178 port 107 179178 unique_id port 179182 username yaghobi 179182 mac 179182 bytes_out 181079 179182 bytes_in 962207 179182 station_ip 83.123.75.92 179182 port 74 179182 unique_id port 179182 remote_ip 10.8.0.138 179183 username aminvpn 179183 mac 179183 bytes_out 0 179183 bytes_in 0 179183 station_ip 5.119.160.248 179183 port 74 179183 unique_id port 179183 remote_ip 10.8.0.58 179187 username hamid.e 179187 unique_id port 179187 terminate_cause User-Request 179187 bytes_out 33604995 179187 bytes_in 862187374 179187 station_ip 37.27.21.111 179187 port 15728723 179187 nas_port_type Virtual 179187 remote_ip 5.5.5.233 179190 username rezaei 179190 mac 179190 bytes_out 1287971 179190 bytes_in 9749801 179190 station_ip 5.120.68.177 179190 port 163 179190 unique_id port 179190 remote_ip 10.8.0.198 179196 username yaghobi 179196 mac 179196 bytes_out 219817 179196 bytes_in 557530 179196 station_ip 83.123.75.92 179196 port 150 179151 station_ip 5.119.181.24 179151 port 165 179151 unique_id port 179151 remote_ip 10.8.0.38 179152 username barzegar 179152 mac 179152 bytes_out 2237 179152 bytes_in 4477 179152 station_ip 5.119.195.192 179152 port 151 179152 unique_id port 179152 remote_ip 10.8.0.10 179159 username soleymani5056 179159 mac 179159 bytes_out 1916491 179159 bytes_in 227730 179159 station_ip 5.120.167.146 179159 port 163 179159 unique_id port 179159 remote_ip 10.8.0.226 179161 username soleymani5056 179161 mac 179161 bytes_out 21462 179161 bytes_in 25633 179161 station_ip 5.120.169.134 179161 port 151 179161 unique_id port 179161 remote_ip 10.8.0.226 179162 username barzegar 179162 mac 179162 bytes_out 0 179162 bytes_in 0 179162 station_ip 5.119.195.192 179162 port 167 179162 unique_id port 179162 remote_ip 10.8.0.10 179165 username godarzi 179165 mac 179165 bytes_out 539046 179165 bytes_in 5847960 179165 station_ip 5.119.181.24 179165 port 151 179165 unique_id port 179165 remote_ip 10.8.0.38 179169 username barzegar 179169 mac 179169 bytes_out 0 179169 bytes_in 0 179169 station_ip 5.119.195.192 179169 port 151 179169 unique_id port 179169 remote_ip 10.8.0.10 179170 username aminvpn 179170 mac 179170 bytes_out 53603 179170 bytes_in 77933 179170 station_ip 5.119.160.248 179170 port 151 179170 unique_id port 179170 remote_ip 10.8.0.58 179171 username fezealinaghi 179171 kill_reason Another user logged on this global unique id 179171 mac 179171 bytes_out 0 179171 bytes_in 0 179171 station_ip 83.123.3.2 179171 port 137 179171 unique_id port 179171 remote_ip 10.8.0.202 179172 username rashidi4690 179172 mac 179172 bytes_out 0 179172 bytes_in 0 179172 station_ip 83.123.120.0 179172 port 107 179172 unique_id port 179176 username kalantary6037 179176 mac 179176 bytes_out 266273 179176 bytes_in 1087769 179176 station_ip 83.123.45.68 179176 port 151 179176 unique_id port 179176 remote_ip 10.8.0.50 179181 username barzegar 179181 mac 179181 bytes_out 0 179181 bytes_in 0 179181 station_ip 5.119.195.192 179181 port 150 179181 unique_id port 179181 remote_ip 10.8.0.10 179186 username hamid.e 179186 kill_reason Maximum number of concurrent logins reached 179186 unique_id port 179186 bytes_out 0 179186 bytes_in 0 179186 station_ip 31.59.38.150 179186 port 15728733 179186 nas_port_type Virtual 179188 username amin.saeedi 179188 unique_id port 179188 terminate_cause User-Request 179188 bytes_out 23405 179188 bytes_in 4462 179188 station_ip 31.59.38.150 179188 port 15728734 179188 nas_port_type Virtual 179188 remote_ip 5.5.5.227 179191 username soleymani5056 179191 mac 179191 bytes_out 72699 179191 bytes_in 59439 179191 station_ip 5.120.167.229 179191 port 151 179191 unique_id port 179191 remote_ip 10.8.0.226 179194 username motamedi9772 179194 mac 179194 bytes_out 0 179194 bytes_in 0 179194 station_ip 83.123.67.14 179194 port 163 179194 unique_id port 179194 remote_ip 10.8.0.154 179195 username motamedi9772 179195 mac 179195 bytes_out 0 179195 bytes_in 0 179195 station_ip 83.123.67.14 179195 port 163 179195 unique_id port 179195 remote_ip 10.8.0.154 179197 username motamedi9772 179197 mac 179197 bytes_out 0 179197 bytes_in 0 179197 station_ip 83.123.67.14 179197 port 163 179197 unique_id port 179197 remote_ip 10.8.0.154 179201 username saeeddamghani 179201 mac 179201 bytes_out 0 179201 bytes_in 0 179201 station_ip 217.60.218.29 179201 port 151 179201 unique_id port 179201 remote_ip 10.8.0.122 179204 username yaghobi 179204 mac 179204 bytes_out 158983 179185 nas_port_type Virtual 179189 username mohammadmahdi 179189 mac 179189 bytes_out 1572884 179189 bytes_in 3654675 179189 station_ip 5.119.52.180 179189 port 167 179189 unique_id port 179189 remote_ip 10.8.0.30 179192 username amin.saeedi 179192 unique_id port 179192 terminate_cause User-Request 179192 bytes_out 149089 179192 bytes_in 190091 179192 station_ip 31.59.38.150 179192 port 15728735 179192 nas_port_type Virtual 179192 remote_ip 5.5.5.227 179193 username motamedi9772 179193 mac 179193 bytes_out 457873 179193 bytes_in 6630041 179193 station_ip 83.123.67.14 179193 port 126 179193 unique_id port 179193 remote_ip 10.8.0.154 179198 username barzegar 179198 mac 179198 bytes_out 4494 179198 bytes_in 5111 179198 station_ip 5.119.195.192 179198 port 151 179198 unique_id port 179198 remote_ip 10.8.0.10 179199 username kalantary6037 179199 mac 179199 bytes_out 130693 179199 bytes_in 631521 179199 station_ip 83.123.45.252 179199 port 126 179199 unique_id port 179199 remote_ip 10.8.0.50 179202 username barzegar 179202 mac 179202 bytes_out 0 179202 bytes_in 0 179202 station_ip 5.119.195.192 179202 port 163 179202 unique_id port 179202 remote_ip 10.8.0.10 179211 username rashidi4690 179211 mac 179211 bytes_out 177412 179211 bytes_in 389976 179211 station_ip 5.120.12.75 179211 port 150 179211 unique_id port 179211 remote_ip 10.8.0.242 179212 username mostafa_es78 179212 mac 179212 bytes_out 0 179212 bytes_in 0 179212 station_ip 83.123.33.34 179212 port 154 179212 unique_id port 179217 username soleymani5056 179217 mac 179217 bytes_out 67978 179217 bytes_in 132110 179217 station_ip 5.120.150.30 179217 port 163 179217 unique_id port 179217 remote_ip 10.8.0.226 179220 username sabaghnezhad 179220 mac 179220 bytes_out 598071 179220 bytes_in 1761327 179220 station_ip 83.123.105.60 179220 port 171 179220 unique_id port 179220 remote_ip 10.8.0.66 179221 username zahra1101 179221 kill_reason Another user logged on this global unique id 179221 mac 179221 bytes_out 0 179221 bytes_in 0 179221 station_ip 5.120.64.194 179221 port 157 179221 unique_id port 179221 remote_ip 10.8.0.190 179222 username saeeddamghani 179222 mac 179222 bytes_out 0 179222 bytes_in 0 179222 station_ip 217.60.218.29 179222 port 163 179222 unique_id port 179222 remote_ip 10.8.0.122 179225 username sedighe 179225 mac 179225 bytes_out 1217755 179225 bytes_in 8484966 179225 station_ip 83.123.75.72 179225 port 169 179225 unique_id port 179225 remote_ip 10.8.0.46 179226 username nilufarrajaei 179226 mac 179226 bytes_out 1736086 179226 bytes_in 11000468 179226 station_ip 83.123.112.253 179226 port 156 179226 unique_id port 179226 remote_ip 10.8.0.194 179228 username godarzi 179228 kill_reason Another user logged on this global unique id 179228 mac 179228 bytes_out 0 179228 bytes_in 0 179228 station_ip 5.202.13.223 179228 port 126 179228 unique_id port 179228 remote_ip 10.8.0.38 179229 username barzegar 179229 mac 179229 bytes_out 0 179229 bytes_in 0 179229 station_ip 5.119.195.192 179229 port 146 179229 unique_id port 179229 remote_ip 10.8.0.10 179231 username soleymani5056 179231 mac 179231 bytes_out 54895 179231 bytes_in 161448 179231 station_ip 5.119.196.82 179231 port 171 179231 unique_id port 179231 remote_ip 10.8.0.226 179233 username malekpoir 179233 mac 179233 bytes_out 1772101 179233 bytes_in 10800222 179233 station_ip 5.119.184.136 179233 port 136 179233 unique_id port 179233 remote_ip 10.8.0.18 179236 username barzegar 179236 mac 179236 bytes_out 0 179236 bytes_in 0 179196 unique_id port 179196 remote_ip 10.8.0.138 179200 username soleymani5056 179200 mac 179200 bytes_out 35404 179200 bytes_in 66220 179200 station_ip 5.120.87.7 179200 port 166 179200 unique_id port 179200 remote_ip 10.8.0.226 179203 username nilufarrajaei 179203 mac 179203 bytes_out 0 179203 bytes_in 0 179203 station_ip 83.123.116.101 179203 port 156 179203 unique_id port 179205 username vanila 179205 kill_reason Relative expiration date has reached 179205 mac 179205 bytes_out 0 179205 bytes_in 0 179205 station_ip 83.123.96.76 179205 port 151 179205 unique_id port 179207 username godarzi 179207 mac 179207 bytes_out 1374856 179207 bytes_in 11540277 179207 station_ip 5.119.181.24 179207 port 146 179207 unique_id port 179207 remote_ip 10.8.0.38 179210 username aminvpn 179210 kill_reason Maximum check online fails reached 179210 mac 179210 bytes_out 0 179210 bytes_in 0 179210 station_ip 5.119.160.248 179210 port 151 179210 unique_id port 179214 username motamedi9772 179214 mac 179214 bytes_out 1974631 179214 bytes_in 38305891 179214 station_ip 83.123.67.14 179214 port 146 179214 unique_id port 179214 remote_ip 10.8.0.154 179215 username aminvpn 179215 mac 179215 bytes_out 684210 179215 bytes_in 10208160 179215 station_ip 5.119.160.248 179215 port 156 179215 unique_id port 179215 remote_ip 10.8.0.58 179216 username barzegar 179216 mac 179216 bytes_out 2104 179216 bytes_in 5295 179216 station_ip 5.119.195.192 179216 port 146 179216 unique_id port 179216 remote_ip 10.8.0.10 179218 username mohammadmahdi 179218 mac 179218 bytes_out 341647 179218 bytes_in 502416 179218 station_ip 5.119.52.180 179218 port 167 179218 unique_id port 179218 remote_ip 10.8.0.30 179219 username saeeddamghani 179219 mac 179219 bytes_out 1014701 179219 bytes_in 5378390 179219 station_ip 5.119.91.244 179219 port 154 179219 unique_id port 179219 remote_ip 10.8.0.122 179224 username saeeddamghani 179224 mac 179224 bytes_out 0 179224 bytes_in 0 179224 station_ip 217.60.218.29 179224 port 167 179224 unique_id port 179224 remote_ip 10.8.0.122 179230 username saeeddamghani 179230 mac 179230 bytes_out 205193 179230 bytes_in 2330336 179230 station_ip 217.60.218.29 179230 port 169 179230 unique_id port 179230 remote_ip 10.8.0.122 179237 username saeeddamghani 179237 mac 179237 bytes_out 357037 179237 bytes_in 2700999 179237 station_ip 217.60.218.29 179237 port 166 179237 unique_id port 179237 remote_ip 10.8.0.122 179241 username mohammadmahdi 179241 mac 179241 bytes_out 310211 179241 bytes_in 721076 179241 station_ip 5.119.52.180 179241 port 146 179241 unique_id port 179241 remote_ip 10.8.0.30 179243 username khademi 179243 kill_reason Another user logged on this global unique id 179243 mac 179243 bytes_out 0 179243 bytes_in 0 179243 station_ip 83.123.53.153 179243 port 74 179243 unique_id port 179243 remote_ip 10.8.0.14 179247 username aminvpn 179247 mac 179247 bytes_out 678314 179247 bytes_in 5517265 179247 station_ip 83.123.61.225 179247 port 141 179247 unique_id port 179247 remote_ip 10.8.0.58 179254 username soleymani5056 179254 mac 179254 bytes_out 145839 179254 bytes_in 138530 179254 station_ip 5.120.57.67 179254 port 156 179254 unique_id port 179254 remote_ip 10.8.0.226 179256 username mohammadmahdi 179256 mac 179256 bytes_out 503000 179256 bytes_in 1632367 179256 station_ip 5.119.52.180 179256 port 126 179256 unique_id port 179256 remote_ip 10.8.0.30 179260 username farhad3 179260 mac 179260 bytes_out 237409 179260 bytes_in 1038260 179204 bytes_in 177754 179204 station_ip 83.123.75.92 179204 port 172 179204 unique_id port 179204 remote_ip 10.8.0.138 179206 username motamedi9772 179206 mac 179206 bytes_out 38754 179206 bytes_in 46987 179206 station_ip 83.123.67.14 179206 port 126 179206 unique_id port 179206 remote_ip 10.8.0.154 179208 username mostafa_es78 179208 kill_reason Another user logged on this global unique id 179208 mac 179208 bytes_out 0 179208 bytes_in 0 179208 station_ip 83.123.33.34 179208 port 154 179208 unique_id port 179209 username saeeddamghani 179209 mac 179209 bytes_out 331616 179209 bytes_in 4172195 179209 station_ip 5.119.91.244 179209 port 166 179209 unique_id port 179209 remote_ip 10.8.0.122 179213 username rashidi4690 179213 mac 179213 bytes_out 30315 179213 bytes_in 57244 179213 station_ip 5.120.12.75 179213 port 163 179213 unique_id port 179213 remote_ip 10.8.0.242 179223 username milan 179223 kill_reason Another user logged on this global unique id 179223 mac 179223 bytes_out 0 179223 bytes_in 0 179223 station_ip 5.119.68.145 179223 port 134 179223 unique_id port 179227 username soleymani5056 179227 mac 179227 bytes_out 405309 179227 bytes_in 3670905 179227 station_ip 5.119.64.234 179227 port 146 179227 unique_id port 179227 remote_ip 10.8.0.226 179232 username kalantary6037 179232 mac 179232 bytes_out 494577 179232 bytes_in 2867636 179232 station_ip 83.123.85.88 179232 port 166 179232 unique_id port 179232 remote_ip 10.8.0.50 179234 username majidsarmast 179234 mac 179234 bytes_out 947823 179234 bytes_in 7773066 179234 station_ip 86.57.58.238 179234 port 162 179234 unique_id port 179234 remote_ip 10.8.0.170 179235 username sedighe 179235 mac 179235 bytes_out 13371 179235 bytes_in 15877 179235 station_ip 83.123.75.72 179235 port 167 179235 unique_id port 179235 remote_ip 10.8.0.46 179245 username sedighe 179245 mac 179245 bytes_out 167386 179245 bytes_in 509528 179245 station_ip 83.123.75.72 179245 port 162 179245 unique_id port 179245 remote_ip 10.8.0.46 179246 username saeeddamghani 179246 mac 179246 bytes_out 0 179246 bytes_in 0 179246 station_ip 217.60.218.29 179246 port 146 179246 unique_id port 179246 remote_ip 10.8.0.122 179249 username kalantary6037 179249 mac 179249 bytes_out 81957 179249 bytes_in 107642 179249 station_ip 83.123.127.84 179249 port 146 179249 unique_id port 179249 remote_ip 10.8.0.50 179251 username afarin1 179251 mac 179251 bytes_out 364324 179251 bytes_in 865423 179251 station_ip 83.123.115.11 179251 port 136 179251 unique_id port 179251 remote_ip 10.8.0.178 179252 username alirezazadeh 179252 unique_id port 179252 terminate_cause Lost-Carrier 179252 bytes_out 10491603 179252 bytes_in 113212176 179252 station_ip 5.119.147.201 179252 port 15728737 179252 nas_port_type Virtual 179252 remote_ip 5.5.5.226 179255 username pourshad 179255 kill_reason Another user logged on this global unique id 179255 mac 179255 bytes_out 0 179255 bytes_in 0 179255 station_ip 5.119.33.96 179255 port 168 179255 unique_id port 179258 username farhad3 179258 mac 179258 bytes_out 324313 179258 bytes_in 1124542 179258 station_ip 5.120.120.14 179258 port 156 179258 unique_id port 179258 remote_ip 10.8.0.222 179259 username kordestani 179259 mac 179259 bytes_out 669838 179259 bytes_in 6000094 179259 station_ip 151.235.96.55 179259 port 162 179259 unique_id port 179259 remote_ip 10.8.0.130 179261 username barzegar 179261 mac 179261 bytes_out 0 179261 bytes_in 0 179261 station_ip 5.119.195.192 179261 port 156 179261 unique_id port 179261 remote_ip 10.8.0.10 179236 station_ip 5.119.195.192 179236 port 136 179236 unique_id port 179236 remote_ip 10.8.0.10 179238 username mehdizare 179238 mac 179238 bytes_out 1408009 179238 bytes_in 17428530 179238 station_ip 83.123.0.121 179238 port 141 179238 unique_id port 179238 remote_ip 10.8.0.210 179239 username aminvpn 179239 unique_id port 179239 terminate_cause Lost-Carrier 179239 bytes_out 2443415 179239 bytes_in 7400330 179239 station_ip 5.119.240.242 179239 port 15728736 179239 nas_port_type Virtual 179239 remote_ip 5.5.5.235 179240 username godarzi 179240 mac 179240 bytes_out 0 179240 bytes_in 0 179240 station_ip 5.202.13.223 179240 port 126 179240 unique_id port 179242 username saeeddamghani 179242 mac 179242 bytes_out 499914 179242 bytes_in 2988423 179242 station_ip 217.60.218.29 179242 port 136 179242 unique_id port 179242 remote_ip 10.8.0.122 179244 username shadkam 179244 mac 179244 bytes_out 4422919 179244 bytes_in 47338984 179244 station_ip 83.123.3.138 179244 port 156 179244 unique_id port 179244 remote_ip 10.8.0.74 179248 username aminvpn 179248 mac 179248 bytes_out 0 179248 bytes_in 0 179248 station_ip 5.119.160.248 179248 port 146 179248 unique_id port 179248 remote_ip 10.8.0.58 179250 username houshang 179250 kill_reason Another user logged on this global unique id 179250 mac 179250 bytes_out 0 179250 bytes_in 0 179250 station_ip 5.119.216.181 179250 port 163 179250 unique_id port 179250 remote_ip 10.8.0.82 179253 username barzegar 179253 mac 179253 bytes_out 0 179253 bytes_in 0 179253 station_ip 5.119.195.192 179253 port 167 179253 unique_id port 179253 remote_ip 10.8.0.10 179257 username afarin1 179257 mac 179257 bytes_out 23007 179257 bytes_in 93895 179257 station_ip 31.56.115.122 179257 port 146 179257 unique_id port 179257 remote_ip 10.8.0.178 179262 username fezealinaghi 179262 mac 179262 bytes_out 0 179262 bytes_in 0 179262 station_ip 83.123.3.2 179262 port 137 179262 unique_id port 179263 username barzegar 179263 mac 179263 bytes_out 0 179263 bytes_in 0 179263 station_ip 5.119.195.192 179263 port 137 179263 unique_id port 179263 remote_ip 10.8.0.10 179265 username shadkam 179265 mac 179265 bytes_out 3450013 179265 bytes_in 37365281 179265 station_ip 83.123.64.39 179265 port 167 179265 unique_id port 179265 remote_ip 10.8.0.74 179268 username barzegar 179268 mac 179268 bytes_out 0 179268 bytes_in 0 179268 station_ip 5.119.195.192 179268 port 146 179268 unique_id port 179268 remote_ip 10.8.0.10 179270 username zahra1101 179270 mac 179270 bytes_out 0 179270 bytes_in 0 179270 station_ip 5.120.64.194 179270 port 157 179270 unique_id port 179272 username zahra1101 179272 mac 179272 bytes_out 0 179272 bytes_in 0 179272 station_ip 5.120.64.194 179272 port 146 179272 unique_id port 179272 remote_ip 10.8.0.190 179275 username zahra1101 179275 mac 179275 bytes_out 0 179275 bytes_in 0 179275 station_ip 5.120.64.194 179275 port 157 179275 unique_id port 179275 remote_ip 10.8.0.190 179277 username jafari 179277 mac 179277 bytes_out 3753765 179277 bytes_in 35559850 179277 station_ip 93.114.30.84 179277 port 136 179277 unique_id port 179277 remote_ip 10.8.0.86 179280 username zahra1101 179280 mac 179280 bytes_out 0 179280 bytes_in 0 179280 station_ip 5.120.64.194 179280 port 157 179280 unique_id port 179280 remote_ip 10.8.0.190 179281 username kalantary6037 179281 mac 179281 bytes_out 1079876 179281 bytes_in 9980527 179281 station_ip 83.123.92.16 179281 port 136 179260 station_ip 5.120.120.14 179260 port 146 179260 unique_id port 179260 remote_ip 10.8.0.222 179266 username farhad3 179266 mac 179266 bytes_out 1667263 179266 bytes_in 3551214 179266 station_ip 5.120.120.14 179266 port 146 179266 unique_id port 179266 remote_ip 10.8.0.222 179271 username motamedi9772 179271 mac 179271 bytes_out 52228 179271 bytes_in 146992 179271 station_ip 83.123.38.178 179271 port 146 179271 unique_id port 179271 remote_ip 10.8.0.154 179273 username pourshad 179273 mac 179273 bytes_out 0 179273 bytes_in 0 179273 station_ip 5.119.33.96 179273 port 168 179273 unique_id port 179276 username ayobi 179276 mac 179276 bytes_out 2483471 179276 bytes_in 26522744 179276 station_ip 37.27.15.128 179276 port 150 179276 unique_id port 179276 remote_ip 10.8.0.186 179278 username pourshad 179278 mac 179278 bytes_out 583610 179278 bytes_in 7232835 179278 station_ip 5.119.33.96 179278 port 146 179278 unique_id port 179278 remote_ip 10.8.0.42 179282 username barzegar 179282 mac 179282 bytes_out 0 179282 bytes_in 0 179282 station_ip 5.119.195.192 179282 port 157 179282 unique_id port 179282 remote_ip 10.8.0.10 179291 username farhad3 179291 mac 179291 bytes_out 0 179291 bytes_in 0 179291 station_ip 5.120.120.14 179291 port 150 179291 unique_id port 179300 username kalantary6037 179300 mac 179300 bytes_out 607978 179300 bytes_in 3696696 179300 station_ip 83.123.67.236 179300 port 167 179300 unique_id port 179300 remote_ip 10.8.0.50 179308 username yaghobi 179308 mac 179308 bytes_out 1025278 179308 bytes_in 6954048 179308 station_ip 83.123.34.22 179308 port 163 179308 unique_id port 179308 remote_ip 10.8.0.138 179310 username godarzi 179310 mac 179310 bytes_out 344091 179310 bytes_in 4435846 179310 station_ip 5.202.13.223 179310 port 150 179310 unique_id port 179310 remote_ip 10.8.0.38 179311 username farhad3 179311 kill_reason Another user logged on this global unique id 179311 mac 179311 bytes_out 0 179311 bytes_in 0 179311 station_ip 5.120.120.14 179311 port 169 179311 unique_id port 179311 remote_ip 10.8.0.222 179313 username farhad3 179313 mac 179313 bytes_out 0 179313 bytes_in 0 179313 station_ip 5.120.120.14 179313 port 169 179313 unique_id port 179314 username kamali3 179314 mac 179314 bytes_out 758422 179314 bytes_in 3021965 179314 station_ip 83.123.72.225 179314 port 170 179314 unique_id port 179314 remote_ip 10.8.0.106 179317 username yaghobi 179317 mac 179317 bytes_out 499379 179317 bytes_in 2890340 179317 station_ip 83.123.86.33 179317 port 156 179317 unique_id port 179317 remote_ip 10.8.0.138 179322 username kamali3 179322 mac 179322 bytes_out 8002 179322 bytes_in 14611 179322 station_ip 83.123.72.225 179322 port 167 179322 unique_id port 179322 remote_ip 10.8.0.106 179329 username yaghobi 179329 mac 179329 bytes_out 778908 179329 bytes_in 6487550 179329 station_ip 83.123.86.33 179329 port 163 179329 unique_id port 179329 remote_ip 10.8.0.138 179332 username mirzaei6046 179332 kill_reason Another user logged on this global unique id 179332 mac 179332 bytes_out 0 179332 bytes_in 0 179332 station_ip 5.119.103.136 179332 port 160 179332 unique_id port 179332 remote_ip 10.8.0.246 179333 username soleymani5056 179333 mac 179333 bytes_out 55365 179333 bytes_in 83199 179333 station_ip 5.120.12.155 179333 port 167 179333 unique_id port 179333 remote_ip 10.8.0.226 179340 username zahra1101 179340 mac 179340 bytes_out 0 179340 bytes_in 0 179340 station_ip 5.120.64.194 179264 username fezealinaghi 179264 mac 179264 bytes_out 328054 179264 bytes_in 4088593 179264 station_ip 83.123.3.2 179264 port 156 179264 unique_id port 179264 remote_ip 10.8.0.202 179267 username houshang 179267 mac 179267 bytes_out 0 179267 bytes_in 0 179267 station_ip 5.119.216.181 179267 port 163 179267 unique_id port 179269 username rezaei 179269 mac 179269 bytes_out 1889804 179269 bytes_in 20738610 179269 station_ip 5.120.68.177 179269 port 137 179269 unique_id port 179269 remote_ip 10.8.0.198 179274 username barzegar 179274 kill_reason Maximum check online fails reached 179274 mac 179274 bytes_out 0 179274 bytes_in 0 179274 station_ip 5.119.195.192 179274 port 137 179274 unique_id port 179279 username zahra1101 179279 kill_reason Maximum check online fails reached 179279 mac 179279 bytes_out 0 179279 bytes_in 0 179279 station_ip 5.120.64.194 179279 port 146 179279 unique_id port 179284 username zahra1101 179284 mac 179284 bytes_out 0 179284 bytes_in 0 179284 station_ip 5.120.64.194 179284 port 162 179284 unique_id port 179284 remote_ip 10.8.0.190 179285 username farhad3 179285 kill_reason Another user logged on this global unique id 179285 mac 179285 bytes_out 0 179285 bytes_in 0 179285 station_ip 5.120.120.14 179285 port 150 179285 unique_id port 179285 remote_ip 10.8.0.222 179286 username soleymani5056 179286 mac 179286 bytes_out 3343 179286 bytes_in 5622 179286 station_ip 5.120.129.65 179286 port 162 179286 unique_id port 179286 remote_ip 10.8.0.226 179287 username barzegar 179287 mac 179287 bytes_out 0 179287 bytes_in 0 179287 station_ip 5.119.195.192 179287 port 162 179287 unique_id port 179287 remote_ip 10.8.0.10 179288 username zahra1101 179288 mac 179288 bytes_out 0 179288 bytes_in 0 179288 station_ip 5.120.64.194 179288 port 162 179288 unique_id port 179288 remote_ip 10.8.0.190 179289 username farhad3 179289 kill_reason Another user logged on this global unique id 179289 mac 179289 bytes_out 0 179289 bytes_in 0 179289 station_ip 5.120.120.14 179289 port 150 179289 unique_id port 179290 username barzegar 179290 mac 179290 bytes_out 7240 179290 bytes_in 13666 179290 station_ip 5.119.195.192 179290 port 163 179290 unique_id port 179290 remote_ip 10.8.0.10 179293 username zahra1101 179293 mac 179293 bytes_out 0 179293 bytes_in 0 179293 station_ip 5.120.64.194 179293 port 163 179293 unique_id port 179293 remote_ip 10.8.0.190 179294 username barzegar 179294 mac 179294 bytes_out 1997 179294 bytes_in 4380 179294 station_ip 5.119.195.192 179294 port 150 179294 unique_id port 179294 remote_ip 10.8.0.10 179297 username sekonji3 179297 kill_reason Relative expiration date has reached 179297 mac 179297 bytes_out 0 179297 bytes_in 0 179297 station_ip 83.123.51.35 179297 port 172 179297 unique_id port 179299 username kordestani 179299 mac 179299 bytes_out 2686290 179299 bytes_in 33658897 179299 station_ip 151.235.122.227 179299 port 162 179299 unique_id port 179299 remote_ip 10.8.0.130 179303 username alirezaza 179303 unique_id port 179303 terminate_cause Lost-Carrier 179303 bytes_out 4039618 179303 bytes_in 80964980 179303 station_ip 5.119.24.229 179303 port 15728745 179303 nas_port_type Virtual 179303 remote_ip 5.5.5.224 179305 username zahra1101 179305 mac 179305 bytes_out 0 179305 bytes_in 0 179305 station_ip 5.120.64.194 179305 port 150 179305 unique_id port 179305 remote_ip 10.8.0.190 179307 username zahra1101 179307 mac 179307 bytes_out 0 179307 bytes_in 0 179307 station_ip 5.120.64.194 179307 port 156 179281 unique_id port 179281 remote_ip 10.8.0.50 179283 username zahra1101 179283 kill_reason Maximum check online fails reached 179283 mac 179283 bytes_out 0 179283 bytes_in 0 179283 station_ip 5.120.64.194 179283 port 136 179283 unique_id port 179292 username yaghobi 179292 mac 179292 bytes_out 1321909 179292 bytes_in 8593845 179292 station_ip 83.123.25.110 179292 port 157 179292 unique_id port 179292 remote_ip 10.8.0.138 179295 username farhad3 179295 mac 179295 bytes_out 0 179295 bytes_in 0 179295 station_ip 5.120.120.14 179295 port 157 179295 unique_id port 179295 remote_ip 10.8.0.222 179296 username sekonji3 179296 kill_reason Relative expiration date has reached 179296 mac 179296 bytes_out 0 179296 bytes_in 0 179296 station_ip 83.123.51.35 179296 port 172 179296 unique_id port 179298 username mostafa_es78 179298 mac 179298 bytes_out 0 179298 bytes_in 0 179298 station_ip 83.123.33.34 179298 port 171 179298 unique_id port 179298 remote_ip 10.8.0.34 179301 username zahra1101 179301 mac 179301 bytes_out 0 179301 bytes_in 0 179301 station_ip 5.120.64.194 179301 port 167 179301 unique_id port 179301 remote_ip 10.8.0.190 179302 username barzegar 179302 mac 179302 bytes_out 20787 179302 bytes_in 39617 179302 station_ip 5.119.195.192 179302 port 150 179302 unique_id port 179302 remote_ip 10.8.0.10 179304 username godarzi 179304 mac 179304 bytes_out 4027789 179304 bytes_in 20947163 179304 station_ip 5.202.13.223 179304 port 156 179304 unique_id port 179304 remote_ip 10.8.0.38 179306 username khalili2 179306 kill_reason Another user logged on this global unique id 179306 mac 179306 bytes_out 0 179306 bytes_in 0 179306 station_ip 5.119.99.166 179306 port 157 179306 unique_id port 179306 remote_ip 10.8.0.118 179309 username khalili2 179309 mac 179309 bytes_out 0 179309 bytes_in 0 179309 station_ip 5.119.99.166 179309 port 157 179309 unique_id port 179312 username barzegar 179312 mac 179312 bytes_out 21189 179312 bytes_in 36021 179312 station_ip 5.119.195.192 179312 port 167 179312 unique_id port 179312 remote_ip 10.8.0.10 179319 username mohammadmahdi 179319 mac 179319 bytes_out 3672259 179319 bytes_in 38503874 179319 station_ip 5.119.52.180 179319 port 168 179319 unique_id port 179319 remote_ip 10.8.0.30 179324 username zahra1101 179324 mac 179324 bytes_out 2310 179324 bytes_in 5161 179324 station_ip 5.120.64.194 179324 port 157 179324 unique_id port 179324 remote_ip 10.8.0.190 179330 username rashidi4690 179330 mac 179330 bytes_out 26740 179330 bytes_in 155462 179330 station_ip 5.120.12.75 179330 port 156 179330 unique_id port 179330 remote_ip 10.8.0.242 179335 username soleymani5056 179335 mac 179335 bytes_out 11695 179335 bytes_in 10503 179335 station_ip 5.120.97.231 179335 port 169 179335 unique_id port 179335 remote_ip 10.8.0.226 179336 username hajghani 179336 kill_reason Another user logged on this global unique id 179336 mac 179336 bytes_out 0 179336 bytes_in 0 179336 station_ip 89.47.152.84 179336 port 163 179336 unique_id port 179336 remote_ip 10.8.0.102 179338 username yaghobi 179338 mac 179338 bytes_out 698246 179338 bytes_in 3684090 179338 station_ip 83.123.86.33 179338 port 157 179338 unique_id port 179338 remote_ip 10.8.0.138 179339 username farhad3 179339 mac 179339 bytes_out 903948 179339 bytes_in 3171175 179339 station_ip 5.120.120.14 179339 port 168 179339 unique_id port 179339 remote_ip 10.8.0.222 179342 username zahra1101 179342 mac 179342 bytes_out 0 179342 bytes_in 0 179342 station_ip 5.120.64.194 179307 unique_id port 179307 remote_ip 10.8.0.190 179315 username zahra1101 179315 mac 179315 bytes_out 0 179315 bytes_in 0 179315 station_ip 5.120.64.194 179315 port 150 179315 unique_id port 179315 remote_ip 10.8.0.190 179316 username barzegar 179316 mac 179316 bytes_out 0 179316 bytes_in 0 179316 station_ip 5.119.195.192 179316 port 150 179316 unique_id port 179316 remote_ip 10.8.0.10 179318 username zahra1101 179318 kill_reason Maximum check online fails reached 179318 mac 179318 bytes_out 0 179318 bytes_in 0 179318 station_ip 5.120.64.194 179318 port 150 179318 unique_id port 179320 username kamali3 179320 mac 179320 bytes_out 29174 179320 bytes_in 29130 179320 station_ip 83.123.72.225 179320 port 157 179320 unique_id port 179320 remote_ip 10.8.0.106 179321 username zahra1101 179321 mac 179321 bytes_out 0 179321 bytes_in 0 179321 station_ip 5.120.64.194 179321 port 157 179321 unique_id port 179321 remote_ip 10.8.0.190 179323 username godarzi 179323 mac 179323 bytes_out 140319 179323 bytes_in 891579 179323 station_ip 5.202.13.223 179323 port 156 179323 unique_id port 179323 remote_ip 10.8.0.38 179325 username barzegar 179325 mac 179325 bytes_out 3488 179325 bytes_in 5479 179325 station_ip 5.119.195.192 179325 port 156 179325 unique_id port 179325 remote_ip 10.8.0.10 179326 username zahra1101 179326 mac 179326 bytes_out 0 179326 bytes_in 0 179326 station_ip 5.120.64.194 179326 port 157 179326 unique_id port 179326 remote_ip 10.8.0.190 179327 username barzegar 179327 mac 179327 bytes_out 21490 179327 bytes_in 43590 179327 station_ip 5.119.195.192 179327 port 156 179327 unique_id port 179327 remote_ip 10.8.0.10 179328 username aminvpn 179328 unique_id port 179328 terminate_cause Lost-Carrier 179328 bytes_out 5149682 179328 bytes_in 95122508 179328 station_ip 5.120.189.87 179328 port 15728746 179328 nas_port_type Virtual 179328 remote_ip 5.5.5.223 179331 username ahmadi1 179331 mac 179331 bytes_out 219027 179331 bytes_in 653072 179331 station_ip 83.123.85.245 179331 port 156 179331 unique_id port 179331 remote_ip 10.8.0.94 179334 username zahra1101 179334 mac 179334 bytes_out 0 179334 bytes_in 0 179334 station_ip 5.120.64.194 179334 port 156 179334 unique_id port 179334 remote_ip 10.8.0.190 179337 username barzegar 179337 mac 179337 bytes_out 0 179337 bytes_in 0 179337 station_ip 5.119.195.192 179337 port 169 179337 unique_id port 179337 remote_ip 10.8.0.10 179345 username zahra1101 179345 mac 179345 bytes_out 0 179345 bytes_in 0 179345 station_ip 5.120.64.194 179345 port 170 179345 unique_id port 179345 remote_ip 10.8.0.190 179348 username soleymani5056 179348 mac 179348 bytes_out 30310 179348 bytes_in 40198 179348 station_ip 5.120.109.138 179348 port 170 179348 unique_id port 179348 remote_ip 10.8.0.226 179350 username rashidi4690 179350 kill_reason Another user logged on this global unique id 179350 mac 179350 bytes_out 0 179350 bytes_in 0 179350 station_ip 83.123.42.52 179350 port 156 179350 unique_id port 179350 remote_ip 10.8.0.242 179352 username hajghani 179352 kill_reason Another user logged on this global unique id 179352 mac 179352 bytes_out 0 179352 bytes_in 0 179352 station_ip 89.47.152.84 179352 port 163 179352 unique_id port 179356 username barzegar 179356 mac 179356 bytes_out 0 179356 bytes_in 0 179356 station_ip 5.119.195.192 179356 port 168 179356 unique_id port 179356 remote_ip 10.8.0.10 179358 username mostafa_es78 179358 kill_reason Another user logged on this global unique id 179358 mac 179340 port 157 179340 unique_id port 179340 remote_ip 10.8.0.190 179341 username farhad3 179341 mac 179341 bytes_out 396121 179341 bytes_in 2042193 179341 station_ip 5.120.120.14 179341 port 157 179341 unique_id port 179341 remote_ip 10.8.0.222 179343 username hajghani 179343 kill_reason Another user logged on this global unique id 179343 mac 179343 bytes_out 0 179343 bytes_in 0 179343 station_ip 89.47.152.84 179343 port 163 179343 unique_id port 179346 username yaghobi 179346 mac 179346 bytes_out 806810 179346 bytes_in 3609911 179346 station_ip 83.123.94.180 179346 port 169 179346 unique_id port 179346 remote_ip 10.8.0.138 179349 username barzegar 179349 mac 179349 bytes_out 154049 179349 bytes_in 910204 179349 station_ip 5.119.195.192 179349 port 168 179349 unique_id port 179349 remote_ip 10.8.0.10 179351 username zahra1101 179351 mac 179351 bytes_out 0 179351 bytes_in 0 179351 station_ip 5.120.64.194 179351 port 167 179351 unique_id port 179351 remote_ip 10.8.0.190 179353 username zahra1101 179353 kill_reason Maximum check online fails reached 179353 mac 179353 bytes_out 0 179353 bytes_in 0 179353 station_ip 5.120.64.194 179353 port 167 179353 unique_id port 179355 username rashidi4690 179355 kill_reason Another user logged on this global unique id 179355 mac 179355 bytes_out 0 179355 bytes_in 0 179355 station_ip 83.123.42.52 179355 port 156 179355 unique_id port 179357 username hajghani 179357 kill_reason Another user logged on this global unique id 179357 mac 179357 bytes_out 0 179357 bytes_in 0 179357 station_ip 89.47.152.84 179357 port 163 179357 unique_id port 179359 username farhad3 179359 kill_reason Another user logged on this global unique id 179359 mac 179359 bytes_out 0 179359 bytes_in 0 179359 station_ip 5.120.120.14 179359 port 169 179359 unique_id port 179359 remote_ip 10.8.0.222 179360 username zahra1101 179360 mac 179360 bytes_out 0 179360 bytes_in 0 179360 station_ip 5.120.64.194 179360 port 168 179360 unique_id port 179360 remote_ip 10.8.0.190 179361 username aminvpn 179361 mac 179361 bytes_out 3004059 179361 bytes_in 10604053 179361 station_ip 83.123.61.225 179361 port 141 179361 unique_id port 179361 remote_ip 10.8.0.58 179367 username zahra1101 179367 mac 179367 bytes_out 0 179367 bytes_in 0 179367 station_ip 5.120.64.194 179367 port 141 179367 unique_id port 179367 remote_ip 10.8.0.190 179370 username zahra1101 179370 mac 179370 bytes_out 0 179370 bytes_in 0 179370 station_ip 5.120.64.194 179370 port 141 179370 unique_id port 179370 remote_ip 10.8.0.190 179373 username zahra1101 179373 mac 179373 bytes_out 0 179373 bytes_in 0 179373 station_ip 5.120.64.194 179373 port 141 179373 unique_id port 179373 remote_ip 10.8.0.190 179384 username zahra1101 179384 mac 179384 bytes_out 0 179384 bytes_in 0 179384 station_ip 5.120.64.194 179384 port 156 179384 unique_id port 179384 remote_ip 10.8.0.190 179385 username soleymani5056 179385 mac 179385 bytes_out 316282 179385 bytes_in 1082144 179385 station_ip 5.120.151.176 179385 port 141 179385 unique_id port 179385 remote_ip 10.8.0.226 179388 username zahra1101 179388 mac 179388 bytes_out 0 179388 bytes_in 0 179388 station_ip 5.120.64.194 179388 port 141 179388 unique_id port 179388 remote_ip 10.8.0.190 179399 username barzegar 179399 mac 179399 bytes_out 0 179399 bytes_in 0 179399 station_ip 5.119.195.192 179399 port 163 179399 unique_id port 179399 remote_ip 10.8.0.10 179401 username shadkam 179401 mac 179401 bytes_out 1586826 179342 port 157 179342 unique_id port 179342 remote_ip 10.8.0.190 179344 username zahra1101 179344 kill_reason Maximum check online fails reached 179344 mac 179344 bytes_out 0 179344 bytes_in 0 179344 station_ip 5.120.64.194 179344 port 157 179344 unique_id port 179347 username hatami 179347 mac 179347 bytes_out 1183490 179347 bytes_in 10498659 179347 station_ip 151.235.127.86 179347 port 167 179347 unique_id port 179347 remote_ip 10.8.0.98 179354 username zahra1101 179354 mac 179354 bytes_out 0 179354 bytes_in 0 179354 station_ip 5.120.64.194 179354 port 168 179354 unique_id port 179354 remote_ip 10.8.0.190 179364 username zahra1101 179364 mac 179364 bytes_out 0 179364 bytes_in 0 179364 station_ip 5.120.64.194 179364 port 163 179364 unique_id port 179364 remote_ip 10.8.0.190 179366 username hajghani 179366 mac 179366 bytes_out 1395132 179366 bytes_in 22505754 179366 station_ip 37.156.53.6 179366 port 141 179366 unique_id port 179366 remote_ip 10.8.0.102 179372 username rashidi4690 179372 mac 179372 bytes_out 0 179372 bytes_in 0 179372 station_ip 83.123.42.52 179372 port 156 179372 unique_id port 179374 username farhad3 179374 kill_reason Another user logged on this global unique id 179374 mac 179374 bytes_out 0 179374 bytes_in 0 179374 station_ip 5.120.120.14 179374 port 169 179374 unique_id port 179375 username zahra1101 179375 mac 179375 bytes_out 0 179375 bytes_in 0 179375 station_ip 5.120.64.194 179375 port 141 179375 unique_id port 179375 remote_ip 10.8.0.190 179377 username farhad3 179377 kill_reason Another user logged on this global unique id 179377 mac 179377 bytes_out 0 179377 bytes_in 0 179377 station_ip 5.120.120.14 179377 port 169 179377 unique_id port 179378 username zahra1101 179378 mac 179378 bytes_out 0 179378 bytes_in 0 179378 station_ip 5.120.64.194 179378 port 141 179378 unique_id port 179378 remote_ip 10.8.0.190 179379 username barzegar 179379 mac 179379 bytes_out 0 179379 bytes_in 0 179379 station_ip 5.119.195.192 179379 port 141 179379 unique_id port 179379 remote_ip 10.8.0.10 179380 username afarin1 179380 mac 179380 bytes_out 2122664 179380 bytes_in 17849597 179380 station_ip 31.59.34.138 179380 port 126 179380 unique_id port 179380 remote_ip 10.8.0.178 179381 username farhad3 179400 station_ip 5.120.64.194 179381 kill_reason Another user logged on this global unique id 179381 mac 179381 bytes_out 0 179381 bytes_in 0 179381 station_ip 5.120.120.14 179381 port 169 179381 unique_id port 179383 username afarin1 179383 kill_reason Maximum check online fails reached 179383 mac 179383 bytes_out 0 179383 bytes_in 0 179383 station_ip 151.238.237.111 179383 port 126 179383 unique_id port 179386 username barzegar 179386 mac 179386 bytes_out 0 179386 bytes_in 0 179386 station_ip 5.119.195.192 179386 port 141 179386 unique_id port 179386 remote_ip 10.8.0.10 179389 username farhad3 179389 kill_reason Another user logged on this global unique id 179389 mac 179389 bytes_out 0 179389 bytes_in 0 179389 station_ip 5.120.120.14 179389 port 169 179389 unique_id port 179390 username soleymani5056 179390 mac 179390 bytes_out 309062 179390 bytes_in 782399 179390 station_ip 5.120.15.218 179390 port 156 179390 unique_id port 179390 remote_ip 10.8.0.226 179392 username naeimeh 179392 mac 179392 bytes_out 661773 179392 bytes_in 5517234 179392 station_ip 83.123.98.49 179392 port 141 179392 unique_id port 179392 remote_ip 10.8.0.78 179393 username zahra1101 179393 mac 179393 bytes_out 0 179393 bytes_in 0 179393 station_ip 5.120.64.194 179393 port 141 179358 bytes_out 0 179358 bytes_in 0 179358 station_ip 83.123.33.34 179358 port 162 179358 unique_id port 179358 remote_ip 10.8.0.34 179362 username hajghani 179362 mac 179362 bytes_out 0 179362 bytes_in 0 179362 station_ip 89.47.152.84 179362 port 163 179362 unique_id port 179363 username rashidi4690 179363 kill_reason Another user logged on this global unique id 179363 mac 179363 bytes_out 0 179363 bytes_in 0 179363 station_ip 83.123.42.52 179363 port 156 179363 unique_id port 179365 username barzegar 179365 mac 179365 bytes_out 0 179365 bytes_in 0 179365 station_ip 5.119.195.192 179365 port 163 179365 unique_id port 179365 remote_ip 10.8.0.10 179368 username aminvpn 179368 unique_id port 179368 terminate_cause Lost-Carrier 179368 bytes_out 961824 179368 bytes_in 14618466 179368 station_ip 5.119.248.221 179368 port 15728747 179368 nas_port_type Virtual 179368 remote_ip 5.5.5.222 179369 username farhad3 179369 kill_reason Another user logged on this global unique id 179369 mac 179369 bytes_out 0 179369 bytes_in 0 179369 station_ip 5.120.120.14 179369 port 169 179369 unique_id port 179371 username barzegar 179371 mac 179371 bytes_out 0 179371 bytes_in 0 179371 station_ip 5.119.195.192 179371 port 163 179371 unique_id port 179371 remote_ip 10.8.0.10 179376 username motamedi9772 179376 mac 179376 bytes_out 87719 179376 bytes_in 80176 179376 station_ip 83.123.38.178 179376 port 141 179376 unique_id port 179376 remote_ip 10.8.0.154 179382 username zahra1101 179382 mac 179382 bytes_out 0 179382 bytes_in 0 179382 station_ip 5.120.64.194 179382 port 156 179382 unique_id port 179382 remote_ip 10.8.0.190 179387 username afarin1 179387 mac 179387 bytes_out 1222465 179387 bytes_in 18890779 179387 station_ip 151.238.237.111 179387 port 163 179387 unique_id port 179387 remote_ip 10.8.0.178 179391 username soleymani5056 179391 mac 179391 bytes_out 3187 179391 bytes_in 7640 179391 station_ip 5.119.211.167 179391 port 163 179391 unique_id port 179391 remote_ip 10.8.0.226 179397 username mostafa_es78 179397 kill_reason Another user logged on this global unique id 179397 mac 179397 bytes_out 0 179397 bytes_in 0 179397 station_ip 83.123.33.34 179397 port 162 179397 unique_id port 179400 username zahra1101 179400 mac 179400 bytes_out 0 179400 bytes_in 0 179400 port 163 179400 unique_id port 179400 remote_ip 10.8.0.190 179403 username naeimeh 179403 mac 179403 bytes_out 3722957 179403 bytes_in 49989490 179403 station_ip 83.123.98.49 179403 port 156 179403 unique_id port 179403 remote_ip 10.8.0.78 179404 username mostafa_es78 179404 kill_reason Another user logged on this global unique id 179404 mac 179404 bytes_out 0 179404 bytes_in 0 179404 station_ip 83.123.33.34 179404 port 162 179404 unique_id port 179406 username barzegar 179406 mac 179406 bytes_out 0 179406 bytes_in 0 179406 station_ip 5.119.195.192 179406 port 163 179406 unique_id port 179406 remote_ip 10.8.0.10 179410 username zahra1101 179410 mac 179410 bytes_out 0 179410 bytes_in 0 179410 station_ip 5.120.64.194 179410 port 141 179410 unique_id port 179410 remote_ip 10.8.0.190 179417 username barzegar 179417 mac 179417 bytes_out 0 179417 bytes_in 0 179417 station_ip 5.119.195.192 179417 port 163 179417 unique_id port 179417 remote_ip 10.8.0.10 179421 username farhad3 179421 kill_reason Another user logged on this global unique id 179421 mac 179421 bytes_out 0 179421 bytes_in 0 179421 station_ip 5.120.120.14 179421 port 141 179421 unique_id port 179421 remote_ip 10.8.0.222 179393 unique_id port 179393 remote_ip 10.8.0.190 179394 username mostafa_es78 179394 kill_reason Another user logged on this global unique id 179394 mac 179394 bytes_out 0 179394 bytes_in 0 179394 station_ip 83.123.33.34 179394 port 162 179394 unique_id port 179395 username barzegar 179395 mac 179395 bytes_out 0 179395 bytes_in 0 179395 station_ip 5.119.195.192 179395 port 141 179395 unique_id port 179395 remote_ip 10.8.0.10 179396 username zahra1101 179396 mac 179396 bytes_out 0 179396 bytes_in 0 179396 station_ip 5.120.64.194 179396 port 141 179396 unique_id port 179396 remote_ip 10.8.0.190 179398 username zahra1101 179398 mac 179398 bytes_out 0 179398 bytes_in 0 179398 station_ip 5.120.64.194 179398 port 163 179398 unique_id port 179398 remote_ip 10.8.0.190 179407 username zahra1101 179407 kill_reason Maximum check online fails reached 179407 mac 179407 bytes_out 0 179407 bytes_in 0 179407 station_ip 5.120.64.194 179407 port 156 179407 unique_id port 179411 username mostafa_es78 179411 kill_reason Another user logged on this global unique id 179411 mac 179411 bytes_out 0 179411 bytes_in 0 179411 station_ip 83.123.33.34 179411 port 162 179411 unique_id port 179412 username barzegar 179412 mac 179412 bytes_out 0 179412 bytes_in 0 179412 station_ip 5.119.195.192 179412 port 141 179412 unique_id port 179412 remote_ip 10.8.0.10 179413 username zahra1101 179413 mac 179413 bytes_out 0 179413 bytes_in 0 179413 station_ip 5.120.64.194 179413 port 141 179413 unique_id port 179413 remote_ip 10.8.0.190 179414 username farhad3 179414 mac 179414 bytes_out 0 179414 bytes_in 0 179414 station_ip 5.120.120.14 179414 port 169 179414 unique_id port 179415 username zahra1101 179415 mac 179415 bytes_out 0 179415 bytes_in 0 179415 station_ip 5.120.64.194 179415 port 141 179415 unique_id port 179415 remote_ip 10.8.0.190 179423 username sabaghnezhad 179423 mac 179423 bytes_out 3324045 179423 bytes_in 24005196 179423 station_ip 83.123.105.60 179423 port 154 179423 unique_id port 179423 remote_ip 10.8.0.66 179425 username sabaghnezhad 179425 mac 179425 bytes_out 7519 179425 bytes_in 9351 179425 station_ip 83.123.105.60 179425 port 154 179425 unique_id port 179425 remote_ip 10.8.0.66 179427 username farhad3 179427 mac 179427 bytes_out 0 179427 bytes_in 0 179427 station_ip 5.120.120.14 179427 port 141 179427 unique_id port 179430 username alirezazadeh 179430 unique_id port 179430 terminate_cause Lost-Carrier 179430 bytes_out 2857201 179430 bytes_in 32829266 179430 station_ip 5.119.23.81 179430 port 15728744 179430 nas_port_type Virtual 179430 remote_ip 5.5.5.225 179435 username barzegar 179435 mac 179435 bytes_out 0 179435 bytes_in 0 179435 station_ip 5.119.195.192 179435 port 154 179435 unique_id port 179435 remote_ip 10.8.0.10 179438 username motamedi9772 179438 mac 179438 bytes_out 0 179438 bytes_in 0 179438 station_ip 83.123.38.178 179438 port 141 179438 unique_id port 179438 remote_ip 10.8.0.154 179439 username barzegar 179439 mac 179439 bytes_out 0 179439 bytes_in 0 179439 station_ip 5.119.195.192 179439 port 141 179439 unique_id port 179439 remote_ip 10.8.0.10 179440 username milan 179440 mac 179440 bytes_out 0 179440 bytes_in 0 179440 station_ip 5.119.68.145 179440 port 134 179440 unique_id port 179442 username farhad3 179442 mac 179442 bytes_out 792835 179442 bytes_in 5577335 179442 station_ip 5.120.120.14 179442 port 141 179442 unique_id port 179442 remote_ip 10.8.0.222 179445 username barzegar 179401 bytes_in 14669966 179401 station_ip 83.123.73.119 179401 port 141 179401 unique_id port 179401 remote_ip 10.8.0.74 179402 username farhad3 179402 kill_reason Another user logged on this global unique id 179402 mac 179402 bytes_out 0 179402 bytes_in 0 179402 station_ip 5.120.120.14 179402 port 169 179402 unique_id port 179405 username zahra1101 179405 mac 179405 bytes_out 0 179405 bytes_in 0 179405 station_ip 5.120.64.194 179405 port 156 179405 unique_id port 179405 remote_ip 10.8.0.190 179408 username fezealinaghi 179408 mac 179408 bytes_out 2336710 179408 bytes_in 29731195 179408 station_ip 83.123.87.110 179408 port 141 179408 unique_id port 179408 remote_ip 10.8.0.202 179409 username zahra1101 179409 mac 179409 bytes_out 0 179409 bytes_in 0 179409 station_ip 5.120.64.194 179409 port 141 179409 unique_id port 179409 remote_ip 10.8.0.190 179416 username zahra1101 179416 mac 179416 bytes_out 0 179416 bytes_in 0 179416 station_ip 5.120.64.194 179416 port 141 179416 unique_id port 179416 remote_ip 10.8.0.190 179418 username zahra1101 179418 mac 179418 bytes_out 0 179418 bytes_in 0 179418 station_ip 5.120.64.194 179418 port 163 179418 unique_id port 179418 remote_ip 10.8.0.190 179419 username zahra1101 179419 mac 179419 bytes_out 0 179419 bytes_in 0 179419 station_ip 5.120.64.194 179419 port 163 179419 unique_id port 179419 remote_ip 10.8.0.190 179420 username mostafa_es78 179420 mac 179420 bytes_out 0 179420 bytes_in 0 179420 station_ip 83.123.33.34 179420 port 162 179420 unique_id port 179424 username barzegar 179424 mac 179424 bytes_out 0 179424 bytes_in 0 179424 station_ip 5.119.195.192 179424 port 162 179424 unique_id port 179424 remote_ip 10.8.0.10 179432 username motamedi9772 179432 mac 179432 bytes_out 78364 179432 bytes_in 441061 179432 station_ip 83.123.38.178 179432 port 154 179432 unique_id port 179432 remote_ip 10.8.0.154 179433 username zahra1101 179433 mac 179433 bytes_out 0 179433 bytes_in 0 179433 station_ip 5.120.64.194 179433 port 154 179433 unique_id port 179433 remote_ip 10.8.0.190 179436 username zahra1101 179436 mac 179436 bytes_out 0 179436 bytes_in 0 179436 station_ip 5.120.64.194 179436 port 154 179436 unique_id port 179436 remote_ip 10.8.0.190 179437 username farhad3 179437 mac 179437 bytes_out 1248648 179437 bytes_in 2402412 179437 station_ip 5.120.120.14 179437 port 141 179437 unique_id port 179437 remote_ip 10.8.0.222 179446 username mirzaei6046 179446 mac 179446 bytes_out 0 179446 bytes_in 0 179446 station_ip 5.119.103.136 179446 port 160 179446 unique_id port 179448 username barzegar 179448 mac 179448 bytes_out 0 179448 bytes_in 0 179448 station_ip 5.119.195.192 179448 port 154 179448 unique_id port 179448 remote_ip 10.8.0.10 179454 username motamedi9772 179454 mac 179454 bytes_out 0 179454 bytes_in 0 179454 station_ip 83.123.38.178 179454 port 154 179454 unique_id port 179454 remote_ip 10.8.0.154 179463 username nilufarrajaei 179463 mac 179463 bytes_out 0 179463 bytes_in 0 179463 station_ip 83.123.20.137 179463 port 141 179463 unique_id port 179464 username zahra1101 179464 mac 179464 bytes_out 0 179464 bytes_in 0 179464 station_ip 5.120.64.194 179464 port 141 179464 unique_id port 179464 remote_ip 10.8.0.190 179467 username zahra1101 179467 mac 179467 bytes_out 0 179467 bytes_in 0 179467 station_ip 5.120.64.194 179467 port 141 179467 unique_id port 179467 remote_ip 10.8.0.190 179422 username mostafa_es78 179422 mac 179422 bytes_out 81623 179422 bytes_in 700372 179422 station_ip 83.123.33.34 179422 port 163 179422 unique_id port 179422 remote_ip 10.8.0.34 179426 username zahra1101 179426 mac 179426 bytes_out 0 179426 bytes_in 0 179426 station_ip 5.120.64.194 179426 port 162 179426 unique_id port 179426 remote_ip 10.8.0.190 179428 username barzegar 179428 mac 179428 bytes_out 0 179428 bytes_in 0 179428 station_ip 5.119.195.192 179428 port 162 179428 unique_id port 179428 remote_ip 10.8.0.10 179429 username zahra1101 179429 mac 179429 bytes_out 3585 179429 bytes_in 5397 179429 station_ip 5.120.64.194 179429 port 154 179429 unique_id port 179429 remote_ip 10.8.0.190 179431 username zahra1101 179431 mac 179431 bytes_out 0 179431 bytes_in 0 179431 station_ip 5.120.64.194 179431 port 154 179431 unique_id port 179431 remote_ip 10.8.0.190 179434 username farhad3 179434 mac 179434 bytes_out 1865175 179434 bytes_in 11605874 179434 station_ip 5.120.120.14 179434 port 141 179434 unique_id port 179434 remote_ip 10.8.0.222 179441 username zahra1101 179441 mac 179441 bytes_out 0 179441 bytes_in 0 179441 station_ip 5.120.64.194 179441 port 154 179441 unique_id port 179441 remote_ip 10.8.0.190 179443 username zahra1101 179443 mac 179443 bytes_out 0 179443 bytes_in 0 179443 station_ip 5.120.64.194 179443 port 134 179443 unique_id port 179443 remote_ip 10.8.0.190 179444 username zahra1101 179444 mac 179444 bytes_out 0 179444 bytes_in 0 179444 station_ip 5.120.64.194 179444 port 134 179444 unique_id port 179444 remote_ip 10.8.0.190 179447 username zahra1101 179447 mac 179447 bytes_out 0 179447 bytes_in 0 179447 station_ip 5.120.64.194 179447 port 141 179447 unique_id port 179447 remote_ip 10.8.0.190 179449 username zahra1101 179449 mac 179449 bytes_out 0 179449 bytes_in 0 179449 station_ip 5.120.64.194 179449 port 154 179449 unique_id port 179449 remote_ip 10.8.0.190 179451 username barzegar 179451 mac 179451 bytes_out 0 179451 bytes_in 0 179451 station_ip 5.119.195.192 179451 port 154 179451 unique_id port 179451 remote_ip 10.8.0.10 179452 username zahra1101 179452 mac 179452 bytes_out 0 179452 bytes_in 0 179452 station_ip 5.120.64.194 179452 port 154 179452 unique_id port 179452 remote_ip 10.8.0.190 179456 username barzegar 179456 mac 179456 bytes_out 0 179456 bytes_in 0 179456 station_ip 5.119.195.192 179456 port 160 179456 unique_id port 179456 remote_ip 10.8.0.10 179457 username nilufarrajaei 179457 kill_reason Another user logged on this global unique id 179457 mac 179457 bytes_out 0 179457 bytes_in 0 179457 station_ip 83.123.20.137 179457 port 141 179457 unique_id port 179457 remote_ip 10.8.0.194 179458 username zahra1101 179458 mac 179458 bytes_out 0 179458 bytes_in 0 179458 station_ip 5.120.64.194 179458 port 160 179458 unique_id port 179458 remote_ip 10.8.0.190 179461 username barzegar 179461 mac 179461 bytes_out 0 179461 bytes_in 0 179461 station_ip 5.119.195.192 179461 port 160 179461 unique_id port 179461 remote_ip 10.8.0.10 179462 username zahra1101 179462 mac 179462 bytes_out 0 179462 bytes_in 0 179462 station_ip 5.120.64.194 179462 port 160 179462 unique_id port 179462 remote_ip 10.8.0.190 179465 username zahra1101 179465 mac 179465 bytes_out 0 179465 bytes_in 0 179465 station_ip 5.120.64.194 179465 port 141 179465 unique_id port 179465 remote_ip 10.8.0.190 179466 username barzegar 179466 mac 179445 mac 179445 bytes_out 0 179445 bytes_in 0 179445 station_ip 5.119.195.192 179445 port 134 179445 unique_id port 179445 remote_ip 10.8.0.10 179450 username zahra1101 179450 mac 179450 bytes_out 0 179450 bytes_in 0 179450 station_ip 5.120.64.194 179450 port 154 179450 unique_id port 179450 remote_ip 10.8.0.190 179453 username barzegar 179453 mac 179453 bytes_out 0 179453 bytes_in 0 179453 station_ip 5.119.195.192 179453 port 154 179453 unique_id port 179453 remote_ip 10.8.0.10 179455 username zahra1101 179455 mac 179455 bytes_out 0 179455 bytes_in 0 179455 station_ip 5.120.64.194 179455 port 154 179455 unique_id port 179455 remote_ip 10.8.0.190 179459 username mosi 179459 kill_reason Another user logged on this global unique id 179459 mac 179459 bytes_out 0 179459 bytes_in 0 179459 station_ip 151.235.83.58 179459 port 154 179459 unique_id port 179459 remote_ip 10.8.0.142 179460 username zahra1101 179460 mac 179460 bytes_out 2192 179460 bytes_in 5017 179460 station_ip 5.120.64.194 179460 port 160 179460 unique_id port 179460 remote_ip 10.8.0.190 179471 username zahra1101 179471 mac 179471 bytes_out 0 179471 bytes_in 0 179471 station_ip 5.120.64.194 179471 port 141 179471 unique_id port 179471 remote_ip 10.8.0.190 179473 username barzegar 179473 mac 179473 bytes_out 0 179473 bytes_in 0 179473 station_ip 5.119.195.192 179473 port 141 179473 unique_id port 179473 remote_ip 10.8.0.10 179475 username zahra1101 179475 mac 179475 bytes_out 0 179475 bytes_in 0 179475 station_ip 5.120.64.194 179475 port 141 179475 unique_id port 179475 remote_ip 10.8.0.190 179478 username barzegar 179478 mac 179478 bytes_out 0 179478 bytes_in 0 179478 station_ip 5.119.195.192 179478 port 141 179478 unique_id port 179478 remote_ip 10.8.0.10 179481 username barzegar 179481 mac 179481 bytes_out 0 179481 bytes_in 0 179481 station_ip 5.119.195.192 179481 port 141 179481 unique_id port 179481 remote_ip 10.8.0.10 179482 username zahra1101 179482 mac 179482 bytes_out 0 179482 bytes_in 0 179482 station_ip 5.120.64.194 179482 port 141 179482 unique_id port 179482 remote_ip 10.8.0.190 179483 username zahra1101 179483 mac 179483 bytes_out 0 179483 bytes_in 0 179483 station_ip 5.120.64.194 179483 port 141 179483 unique_id port 179483 remote_ip 10.8.0.190 179485 username zahra1101 179485 mac 179485 bytes_out 0 179485 bytes_in 0 179485 station_ip 5.120.64.194 179485 port 141 179485 unique_id port 179485 remote_ip 10.8.0.190 179487 username zahra1101 179487 mac 179487 bytes_out 0 179487 bytes_in 0 179487 station_ip 5.120.64.194 179487 port 141 179487 unique_id port 179487 remote_ip 10.8.0.190 179488 username zahra1101 179488 mac 179488 bytes_out 0 179488 bytes_in 0 179488 station_ip 5.120.64.194 179488 port 160 179488 unique_id port 179488 remote_ip 10.8.0.190 179491 username zahra1101 179491 mac 179491 bytes_out 0 179491 bytes_in 0 179491 station_ip 5.120.64.194 179491 port 160 179491 unique_id port 179491 remote_ip 10.8.0.190 179492 username barzegar 179492 mac 179492 bytes_out 0 179492 bytes_in 0 179492 station_ip 5.119.195.192 179492 port 160 179492 unique_id port 179492 remote_ip 10.8.0.10 179493 username zahra1101 179493 mac 179493 bytes_out 0 179493 bytes_in 0 179493 station_ip 5.120.64.194 179493 port 160 179493 unique_id port 179493 remote_ip 10.8.0.190 179494 username zahra1101 179494 mac 179494 bytes_out 0 179494 bytes_in 0 179466 bytes_out 0 179466 bytes_in 0 179466 station_ip 5.119.195.192 179466 port 141 179466 unique_id port 179466 remote_ip 10.8.0.10 179469 username barzegar 179469 mac 179469 bytes_out 0 179469 bytes_in 0 179469 station_ip 5.119.195.192 179469 port 141 179469 unique_id port 179469 remote_ip 10.8.0.10 179470 username zahra1101 179470 mac 179470 bytes_out 0 179470 bytes_in 0 179470 station_ip 5.120.64.194 179470 port 141 179470 unique_id port 179470 remote_ip 10.8.0.190 179472 username zahra1101 179472 mac 179472 bytes_out 0 179472 bytes_in 0 179472 station_ip 5.120.64.194 179472 port 141 179472 unique_id port 179472 remote_ip 10.8.0.190 179474 username zahra1101 179474 mac 179474 bytes_out 0 179474 bytes_in 0 179474 station_ip 5.120.64.194 179474 port 141 179474 unique_id port 179474 remote_ip 10.8.0.190 179479 username zahra1101 179479 mac 179479 bytes_out 0 179479 bytes_in 0 179479 station_ip 5.120.64.194 179479 port 141 179479 unique_id port 179479 remote_ip 10.8.0.190 179480 username zahra1101 179480 mac 179480 bytes_out 0 179480 bytes_in 0 179480 station_ip 5.120.64.194 179480 port 141 179480 unique_id port 179480 remote_ip 10.8.0.190 179486 username zahra1101 179486 mac 179486 bytes_out 0 179486 bytes_in 0 179486 station_ip 5.120.64.194 179486 port 141 179486 unique_id port 179486 remote_ip 10.8.0.190 179494 station_ip 5.120.64.194 179494 port 160 179494 unique_id port 179494 remote_ip 10.8.0.190 179495 username barzegar 179495 mac 179495 bytes_out 0 179495 bytes_in 0 179495 station_ip 5.119.195.192 179495 port 160 179495 unique_id port 179495 remote_ip 10.8.0.10 179496 username zahra1101 179496 mac 179496 bytes_out 0 179496 bytes_in 0 179496 station_ip 5.120.64.194 179496 port 160 179496 unique_id port 179496 remote_ip 10.8.0.190 179497 username zahra1101 179497 mac 179497 bytes_out 0 179497 bytes_in 0 179497 station_ip 5.120.64.194 179497 port 162 179497 unique_id port 179497 remote_ip 10.8.0.190 179498 username sedighe 179498 mac 179498 bytes_out 1031054 179498 bytes_in 8336178 179498 station_ip 83.123.22.106 179498 port 141 179498 unique_id port 179498 remote_ip 10.8.0.46 179499 username hashtadani4 179499 mac 179499 bytes_out 103081 179499 bytes_in 526129 179499 station_ip 83.123.60.60 179499 port 160 179499 unique_id port 179499 remote_ip 10.8.0.22 179500 username hashtadani4 179500 mac 179500 bytes_out 0 179500 bytes_in 0 179500 station_ip 83.123.60.60 179500 port 141 179500 unique_id port 179500 remote_ip 10.8.0.22 179501 username hashtadani4 179501 mac 179501 bytes_out 0 179501 bytes_in 0 179501 station_ip 83.123.60.60 179501 port 141 179501 unique_id port 179501 remote_ip 10.8.0.22 179504 username hashtadani4 179504 mac 179504 bytes_out 0 179504 bytes_in 0 179504 station_ip 83.123.60.60 179504 port 141 179504 unique_id port 179504 remote_ip 10.8.0.22 179506 username zahra1101 179506 mac 179506 bytes_out 0 179506 bytes_in 0 179506 station_ip 5.120.64.194 179506 port 160 179506 unique_id port 179506 remote_ip 10.8.0.190 179507 username hashtadani4 179507 mac 179507 bytes_out 0 179507 bytes_in 0 179507 station_ip 83.123.60.60 179507 port 141 179507 unique_id port 179507 remote_ip 10.8.0.22 179510 username barzegar 179510 mac 179510 bytes_out 0 179510 bytes_in 0 179510 station_ip 5.119.195.192 179510 port 141 179510 unique_id port 179510 remote_ip 10.8.0.10 179511 username hashtadani4 179511 mac 179468 username zahra1101 179468 mac 179468 bytes_out 0 179468 bytes_in 0 179468 station_ip 5.120.64.194 179468 port 141 179468 unique_id port 179468 remote_ip 10.8.0.190 179476 username barzegar 179476 mac 179476 bytes_out 0 179476 bytes_in 0 179476 station_ip 5.119.195.192 179476 port 160 179476 unique_id port 179476 remote_ip 10.8.0.10 179477 username zahra1101 179477 mac 179477 bytes_out 0 179477 bytes_in 0 179477 station_ip 5.120.64.194 179477 port 141 179477 unique_id port 179477 remote_ip 10.8.0.190 179484 username barzegar 179484 mac 179484 bytes_out 0 179484 bytes_in 0 179484 station_ip 5.119.195.192 179484 port 141 179484 unique_id port 179484 remote_ip 10.8.0.10 179489 username barzegar 179489 mac 179489 bytes_out 0 179489 bytes_in 0 179489 station_ip 5.119.195.192 179489 port 160 179489 unique_id port 179489 remote_ip 10.8.0.10 179490 username zahra1101 179490 mac 179490 bytes_out 0 179490 bytes_in 0 179490 station_ip 5.120.64.194 179490 port 160 179490 unique_id port 179490 remote_ip 10.8.0.190 179502 username barzegar 179502 mac 179502 bytes_out 0 179502 bytes_in 0 179502 station_ip 5.119.195.192 179502 port 160 179502 unique_id port 179502 remote_ip 10.8.0.10 179503 username hashtadani4 179503 mac 179503 bytes_out 0 179503 bytes_in 0 179503 station_ip 83.123.60.60 179503 port 141 179503 unique_id port 179503 remote_ip 10.8.0.22 179505 username hashtadani4 179505 mac 179505 bytes_out 0 179505 bytes_in 0 179505 station_ip 83.123.60.60 179505 port 141 179505 unique_id port 179505 remote_ip 10.8.0.22 179508 username hashtadani4 179508 mac 179508 bytes_out 0 179508 bytes_in 0 179508 station_ip 83.123.60.60 179508 port 141 179508 unique_id port 179508 remote_ip 10.8.0.22 179509 username zahra1101 179509 mac 179509 bytes_out 0 179509 bytes_in 0 179509 station_ip 5.120.64.194 179509 port 141 179509 unique_id port 179509 remote_ip 10.8.0.190 179511 bytes_out 0 179511 bytes_in 0 179511 station_ip 83.123.60.60 179511 port 160 179511 unique_id port 179511 remote_ip 10.8.0.22 179512 username nilufarrajaei 179512 mac 179512 bytes_out 573307 179512 bytes_in 1351580 179512 station_ip 83.123.60.93 179512 port 141 179512 unique_id port 179512 remote_ip 10.8.0.194 179513 username zahra1101 179513 mac 179513 bytes_out 0 179513 bytes_in 0 179513 station_ip 5.120.64.194 179513 port 141 179513 unique_id port 179513 remote_ip 10.8.0.190 179514 username nilufarrajaei 179514 mac 179514 bytes_out 139870 179514 bytes_in 617469 179514 station_ip 83.123.60.93 179514 port 160 179514 unique_id port 179514 remote_ip 10.8.0.194 179515 username mehdizare 179515 mac 179515 bytes_out 2256539 179515 bytes_in 17239429 179515 station_ip 83.123.0.121 179515 port 166 179515 unique_id port 179515 remote_ip 10.8.0.210 179516 username hashtadani4 179516 mac 179516 bytes_out 0 179516 bytes_in 0 179516 station_ip 83.123.60.60 179516 port 160 179516 unique_id port 179516 remote_ip 10.8.0.22 179517 username barzegar 179517 mac 179517 bytes_out 0 179517 bytes_in 0 179517 station_ip 5.119.195.192 179517 port 160 179517 unique_id port 179517 remote_ip 10.8.0.10 179518 username mehdizare 179518 mac 179518 bytes_out 7621 179518 bytes_in 15025 179518 station_ip 83.123.0.121 179518 port 141 179518 unique_id port 179518 remote_ip 10.8.0.210 179519 username zahra1101 179519 mac 179519 bytes_out 0 179519 bytes_in 0 179519 station_ip 5.120.64.194 179519 port 160 179519 unique_id port 179519 remote_ip 10.8.0.190 179522 username hashtadani4 179522 mac 179522 bytes_out 0 179522 bytes_in 0 179522 station_ip 83.123.60.60 179522 port 162 179522 unique_id port 179522 remote_ip 10.8.0.22 179524 username barzegar 179524 mac 179524 bytes_out 0 179524 bytes_in 0 179524 station_ip 5.119.195.192 179524 port 160 179524 unique_id port 179524 remote_ip 10.8.0.10 179527 username zahra1101 179527 mac 179527 bytes_out 0 179527 bytes_in 0 179527 station_ip 5.120.64.194 179527 port 160 179527 unique_id port 179527 remote_ip 10.8.0.190 179533 username hashtadani4 179533 mac 179533 bytes_out 0 179533 bytes_in 0 179533 station_ip 83.123.60.60 179533 port 166 179533 unique_id port 179533 remote_ip 10.8.0.22 179535 username mohammadjavad 179535 mac 179535 bytes_out 609266 179535 bytes_in 9485553 179535 station_ip 83.123.20.161 179535 port 162 179535 unique_id port 179535 remote_ip 10.8.0.110 179537 username hashtadani4 179537 mac 179537 bytes_out 0 179537 bytes_in 0 179537 station_ip 83.123.60.60 179537 port 162 179537 unique_id port 179537 remote_ip 10.8.0.22 179542 username zahra1101 179542 kill_reason Maximum check online fails reached 179542 mac 179542 bytes_out 0 179542 bytes_in 0 179542 station_ip 5.120.64.194 179542 port 160 179542 unique_id port 179543 username zahra1101 179543 mac 179543 bytes_out 0 179543 bytes_in 0 179543 station_ip 5.120.64.194 179543 port 162 179543 unique_id port 179543 remote_ip 10.8.0.190 179544 username mohammadjavad 179544 mac 179544 bytes_out 704403 179544 bytes_in 10368996 179544 station_ip 83.123.20.161 179544 port 162 179544 unique_id port 179544 remote_ip 10.8.0.110 179549 username barzegar 179549 mac 179549 bytes_out 0 179549 bytes_in 0 179549 station_ip 5.119.195.192 179549 port 166 179549 unique_id port 179549 remote_ip 10.8.0.10 179556 username zahra1101 179556 kill_reason Maximum check online fails reached 179556 mac 179556 bytes_out 0 179556 bytes_in 0 179556 station_ip 5.120.64.194 179556 port 166 179556 unique_id port 179559 username mehdizare 179559 mac 179559 bytes_out 21349 179559 bytes_in 24222 179559 station_ip 83.123.0.121 179559 port 169 179559 unique_id port 179559 remote_ip 10.8.0.210 179562 username barzegar 179562 mac 179562 bytes_out 0 179562 bytes_in 0 179562 station_ip 5.119.195.192 179562 port 169 179562 unique_id port 179562 remote_ip 10.8.0.10 179563 username shadkam 179563 mac 179563 bytes_out 0 179563 bytes_in 0 179563 station_ip 5.202.13.242 179563 port 169 179563 unique_id port 179563 remote_ip 10.8.0.74 179565 username zahra1101 179565 mac 179565 bytes_out 0 179565 bytes_in 0 179565 station_ip 5.120.64.194 179565 port 169 179565 unique_id port 179565 remote_ip 10.8.0.190 179568 username hashtadani4 179568 mac 179568 bytes_out 0 179568 bytes_in 0 179568 station_ip 83.123.60.60 179568 port 169 179568 unique_id port 179568 remote_ip 10.8.0.22 179569 username hashtadani4 179569 mac 179569 bytes_out 0 179569 bytes_in 0 179569 station_ip 83.123.60.60 179569 port 169 179569 unique_id port 179569 remote_ip 10.8.0.22 179572 username zahra1101 179572 mac 179572 bytes_out 0 179572 bytes_in 0 179572 station_ip 5.120.64.194 179572 port 168 179572 unique_id port 179572 remote_ip 10.8.0.190 179575 username shadkam 179575 mac 179575 bytes_out 0 179575 bytes_in 0 179575 station_ip 5.202.13.242 179575 port 168 179575 unique_id port 179575 remote_ip 10.8.0.74 179577 username zahra1101 179520 username hashtadani4 179520 mac 179520 bytes_out 0 179520 bytes_in 0 179520 station_ip 83.123.60.60 179520 port 160 179520 unique_id port 179520 remote_ip 10.8.0.22 179523 username mohammadjavad 179523 mac 179523 bytes_out 145252 179523 bytes_in 1989800 179523 station_ip 83.123.99.3 179523 port 160 179523 unique_id port 179523 remote_ip 10.8.0.110 179530 username barzegar 179530 mac 179530 bytes_out 0 179530 bytes_in 0 179530 station_ip 5.119.195.192 179530 port 160 179530 unique_id port 179530 remote_ip 10.8.0.10 179531 username hashtadani4 179531 mac 179531 bytes_out 0 179531 bytes_in 0 179531 station_ip 83.123.60.60 179531 port 160 179531 unique_id port 179531 remote_ip 10.8.0.22 179532 username hashtadani4 179532 mac 179532 bytes_out 4606 179532 bytes_in 16022 179532 station_ip 83.123.60.60 179532 port 160 179532 unique_id port 179532 remote_ip 10.8.0.22 179534 username zahra1101 179534 mac 179534 bytes_out 0 179534 bytes_in 0 179534 station_ip 5.120.64.194 179534 port 163 179534 unique_id port 179534 remote_ip 10.8.0.190 179536 username fezealinaghi 179536 mac 179536 bytes_out 611414 179536 bytes_in 2828873 179536 station_ip 83.123.97.114 179536 port 160 179536 unique_id port 179536 remote_ip 10.8.0.202 179539 username mohammadjavad 179539 mac 179539 bytes_out 0 179539 bytes_in 0 179539 station_ip 83.123.20.161 179539 port 162 179539 unique_id port 179539 remote_ip 10.8.0.110 179540 username barzegar 179540 mac 179540 bytes_out 0 179540 bytes_in 0 179540 station_ip 5.119.195.192 179540 port 160 179540 unique_id port 179540 remote_ip 10.8.0.10 179541 username hashtadani4 179541 mac 179541 bytes_out 0 179541 bytes_in 0 179541 station_ip 83.123.60.60 179541 port 160 179541 unique_id port 179541 remote_ip 10.8.0.22 179545 username hashtadani4 179545 kill_reason Maximum check online fails reached 179545 mac 179545 bytes_out 0 179545 bytes_in 0 179545 station_ip 83.123.60.60 179545 port 163 179545 unique_id port 179548 username hashtadani4 179548 mac 179548 bytes_out 0 179548 bytes_in 0 179548 station_ip 83.123.60.60 179548 port 166 179548 unique_id port 179548 remote_ip 10.8.0.22 179550 username mehdizare 179550 mac 179550 bytes_out 114832 179550 bytes_in 174463 179550 station_ip 83.123.0.121 179550 port 141 179550 unique_id port 179550 remote_ip 10.8.0.210 179551 username shadkam 179551 mac 179551 bytes_out 0 179551 bytes_in 0 179551 station_ip 5.202.13.242 179551 port 166 179551 unique_id port 179551 remote_ip 10.8.0.74 179552 username shadkam 179552 mac 179552 bytes_out 0 179552 bytes_in 0 179552 station_ip 5.202.13.242 179552 port 166 179552 unique_id port 179552 remote_ip 10.8.0.74 179558 username sedighe 179558 mac 179558 bytes_out 684404 179558 bytes_in 12032439 179558 station_ip 83.123.22.106 179558 port 162 179558 unique_id port 179558 remote_ip 10.8.0.46 179561 username zahra1101 179561 mac 179561 bytes_out 2273 179561 bytes_in 5153 179561 station_ip 5.120.64.194 179561 port 170 179561 unique_id port 179561 remote_ip 10.8.0.190 179564 username zahra1101 179564 mac 179564 bytes_out 0 179564 bytes_in 0 179564 station_ip 5.120.64.194 179564 port 169 179564 unique_id port 179564 remote_ip 10.8.0.190 179573 username mohammadjavad 179573 mac 179573 bytes_out 615803 179573 bytes_in 11872105 179573 station_ip 83.123.20.161 179573 port 171 179573 unique_id port 179573 remote_ip 10.8.0.110 179579 username hashtadani4 179579 mac 179521 username zahra1101 179521 mac 179521 bytes_out 0 179521 bytes_in 0 179521 station_ip 5.120.64.194 179521 port 160 179521 unique_id port 179521 remote_ip 10.8.0.190 179525 username hashtadani4 179525 mac 179525 bytes_out 0 179525 bytes_in 0 179525 station_ip 83.123.60.60 179525 port 160 179525 unique_id port 179525 remote_ip 10.8.0.22 179526 username hashtadani4 179526 mac 179526 bytes_out 0 179526 bytes_in 0 179526 station_ip 83.123.60.60 179526 port 162 179526 unique_id port 179526 remote_ip 10.8.0.22 179528 username hashtadani4 179528 mac 179528 bytes_out 0 179528 bytes_in 0 179528 station_ip 83.123.60.60 179528 port 160 179528 unique_id port 179528 remote_ip 10.8.0.22 179529 username zahra1101 179529 mac 179529 bytes_out 0 179529 bytes_in 0 179529 station_ip 5.120.64.194 179529 port 160 179529 unique_id port 179529 remote_ip 10.8.0.190 179538 username zahra1101 179538 mac 179538 bytes_out 0 179538 bytes_in 0 179538 station_ip 5.120.64.194 179538 port 160 179538 unique_id port 179538 remote_ip 10.8.0.190 179546 username hashtadani4 179546 mac 179546 bytes_out 0 179546 bytes_in 0 179546 station_ip 83.123.60.60 179546 port 162 179546 unique_id port 179546 remote_ip 10.8.0.22 179547 username hashtadani4 179547 mac 179547 bytes_out 0 179547 bytes_in 0 179547 station_ip 83.123.60.60 179547 port 162 179547 unique_id port 179547 remote_ip 10.8.0.22 179553 username hashtadani4 179553 kill_reason Maximum check online fails reached 179553 mac 179553 bytes_out 0 179553 bytes_in 0 179553 station_ip 83.123.60.60 179553 port 141 179553 unique_id port 179554 username hashtadani4 179554 mac 179554 bytes_out 0 179554 bytes_in 0 179554 station_ip 83.123.60.60 179554 port 169 179554 unique_id port 179554 remote_ip 10.8.0.22 179555 username mehdizare 179555 mac 179555 bytes_out 8610 179555 bytes_in 9647 179555 station_ip 83.123.0.121 179555 port 168 179555 unique_id port 179555 remote_ip 10.8.0.210 179557 username hashtadani4 179557 mac 179557 bytes_out 0 179557 bytes_in 0 179557 station_ip 83.123.60.60 179557 port 168 179557 unique_id port 179557 remote_ip 10.8.0.22 179560 username hashtadani4 179560 mac 179560 bytes_out 0 179560 bytes_in 0 179560 station_ip 83.123.60.60 179560 port 169 179560 unique_id port 179560 remote_ip 10.8.0.22 179566 username hashtadani4 179566 kill_reason Maximum check online fails reached 179566 mac 179566 bytes_out 0 179566 bytes_in 0 179566 station_ip 83.123.60.60 179566 port 170 179566 unique_id port 179567 username barzegar 179567 mac 179567 bytes_out 0 179567 bytes_in 0 179567 station_ip 5.119.195.192 179567 port 171 179567 unique_id port 179567 remote_ip 10.8.0.10 179570 username sedighe 179570 mac 179570 bytes_out 198892 179570 bytes_in 580039 179570 station_ip 83.123.22.106 179570 port 168 179570 unique_id port 179570 remote_ip 10.8.0.46 179571 username mohammadjavad 179571 mac 179571 bytes_out 0 179571 bytes_in 0 179571 station_ip 83.123.20.161 179571 port 168 179571 unique_id port 179571 remote_ip 10.8.0.110 179574 username barzegar 179574 mac 179574 bytes_out 0 179574 bytes_in 0 179574 station_ip 5.119.195.192 179574 port 168 179574 unique_id port 179574 remote_ip 10.8.0.10 179576 username zahra1101 179576 mac 179576 bytes_out 13346 179576 bytes_in 18255 179576 station_ip 5.120.64.194 179576 port 171 179576 unique_id port 179576 remote_ip 10.8.0.190 179580 username shadkam 179580 mac 179580 bytes_out 529767 179577 mac 179577 bytes_out 0 179577 bytes_in 0 179577 station_ip 5.120.64.194 179577 port 168 179577 unique_id port 179577 remote_ip 10.8.0.190 179578 username hashtadani4 179578 mac 179578 bytes_out 0 179578 bytes_in 0 179578 station_ip 83.123.60.60 179578 port 168 179578 unique_id port 179578 remote_ip 10.8.0.22 179581 username hashtadani4 179581 mac 179581 bytes_out 0 179581 bytes_in 0 179581 station_ip 83.123.60.60 179581 port 168 179581 unique_id port 179581 remote_ip 10.8.0.22 179582 username barzegar 179582 mac 179582 bytes_out 0 179582 bytes_in 0 179582 station_ip 5.119.195.192 179582 port 172 179582 unique_id port 179582 remote_ip 10.8.0.10 179586 username sedighe 179586 mac 179586 bytes_out 411177 179586 bytes_in 3009169 179586 station_ip 83.123.22.106 179586 port 169 179586 unique_id port 179586 remote_ip 10.8.0.46 179588 username hashtadani4 179588 mac 179588 bytes_out 0 179588 bytes_in 0 179588 station_ip 83.123.60.60 179588 port 169 179588 unique_id port 179588 remote_ip 10.8.0.22 179591 username hashtadani4 179591 kill_reason Maximum check online fails reached 179591 mac 179591 bytes_out 0 179591 bytes_in 0 179591 station_ip 83.123.60.60 179591 port 169 179591 unique_id port 179596 username hashtadani4 179596 mac 179596 bytes_out 0 179596 bytes_in 0 179596 station_ip 83.123.60.60 179596 port 172 179596 unique_id port 179596 remote_ip 10.8.0.22 179598 username jafari 179598 mac 179598 bytes_out 0 179598 bytes_in 0 179598 station_ip 93.114.30.84 179598 port 162 179598 unique_id port 179602 username zahra1101 179602 mac 179602 bytes_out 0 179602 bytes_in 0 179602 station_ip 5.120.64.194 179602 port 172 179602 unique_id port 179602 remote_ip 10.8.0.190 179604 username zahra1101 179604 kill_reason Maximum check online fails reached 179604 mac 179604 bytes_out 0 179604 bytes_in 0 179604 station_ip 5.120.64.194 179604 port 162 179604 unique_id port 179606 username aminvpn 179606 unique_id port 179606 terminate_cause Lost-Carrier 179606 bytes_out 8263252 179606 bytes_in 161237442 179606 station_ip 5.120.29.137 179606 port 15728748 179606 nas_port_type Virtual 179606 remote_ip 5.5.5.221 179607 username hashtadani4 179607 mac 179607 bytes_out 0 179607 bytes_in 0 179607 station_ip 83.123.60.60 179607 port 168 179607 unique_id port 179607 remote_ip 10.8.0.22 179608 username zahra1101 179608 mac 179608 bytes_out 4239 179608 bytes_in 5253 179608 station_ip 5.120.64.194 179608 port 168 179608 unique_id port 179608 remote_ip 10.8.0.190 179610 username zahra1101 179610 mac 179610 bytes_out 0 179610 bytes_in 0 179610 station_ip 5.120.64.194 179610 port 168 179610 unique_id port 179610 remote_ip 10.8.0.190 179611 username hashtadani4 179611 mac 179611 bytes_out 0 179611 bytes_in 0 179611 station_ip 83.123.60.60 179611 port 172 179611 unique_id port 179611 remote_ip 10.8.0.22 179616 username barzegar 179616 mac 179616 bytes_out 0 179616 bytes_in 0 179616 station_ip 5.119.195.192 179616 port 173 179616 unique_id port 179616 remote_ip 10.8.0.10 179618 username hashtadani4 179618 mac 179618 bytes_out 0 179618 bytes_in 0 179618 station_ip 83.123.60.60 179618 port 172 179618 unique_id port 179618 remote_ip 10.8.0.22 179619 username zahra1101 179619 kill_reason Maximum check online fails reached 179619 mac 179619 bytes_out 0 179619 bytes_in 0 179619 station_ip 5.120.64.194 179619 port 168 179619 unique_id port 179624 username hosseine 179624 kill_reason Another user logged on this global unique id 179579 bytes_out 0 179579 bytes_in 0 179579 station_ip 83.123.60.60 179579 port 172 179579 unique_id port 179579 remote_ip 10.8.0.22 179583 username jafari 179583 kill_reason Another user logged on this global unique id 179583 mac 179583 bytes_out 0 179583 bytes_in 0 179583 station_ip 93.114.30.84 179583 port 162 179583 unique_id port 179583 remote_ip 10.8.0.86 179584 username hashtadani4 179584 mac 179584 bytes_out 0 179584 bytes_in 0 179584 station_ip 83.123.60.60 179584 port 172 179584 unique_id port 179584 remote_ip 10.8.0.22 179585 username hashtadani4 179585 mac 179585 bytes_out 0 179585 bytes_in 0 179585 station_ip 83.123.60.60 179585 port 172 179585 unique_id port 179585 remote_ip 10.8.0.22 179592 username hashtadani4 179592 mac 179592 bytes_out 0 179592 bytes_in 0 179592 station_ip 83.123.60.60 179592 port 172 179592 unique_id port 179592 remote_ip 10.8.0.22 179594 username hashtadani4 179594 mac 179594 bytes_out 0 179594 bytes_in 0 179594 station_ip 83.123.60.60 179594 port 168 179594 unique_id port 179594 remote_ip 10.8.0.22 179595 username barzegar 179595 mac 179595 bytes_out 0 179595 bytes_in 0 179595 station_ip 5.119.195.192 179595 port 174 179595 unique_id port 179595 remote_ip 10.8.0.10 179597 username hashtadani4 179597 mac 179597 bytes_out 0 179597 bytes_in 0 179597 station_ip 83.123.60.60 179597 port 174 179597 unique_id port 179597 remote_ip 10.8.0.22 179599 username kalantary6037 179599 mac 179599 bytes_out 394443 179599 bytes_in 4543113 179599 station_ip 83.123.104.236 179599 port 173 179599 unique_id port 179599 remote_ip 10.8.0.50 179600 username zahra1101 179600 mac 179600 bytes_out 451053 179600 bytes_in 4704118 179600 station_ip 5.120.64.194 179600 port 168 179600 unique_id port 179600 remote_ip 10.8.0.190 179612 username hashtadani4 179612 mac 179612 bytes_out 0 179612 bytes_in 0 179612 station_ip 83.123.60.60 179612 port 173 179612 unique_id port 179612 remote_ip 10.8.0.22 179617 username hashtadani4 179617 mac 179617 bytes_out 0 179617 bytes_in 0 179617 station_ip 83.123.60.60 179617 port 172 179617 unique_id port 179617 remote_ip 10.8.0.22 179620 username zahra1101 179620 mac 179620 bytes_out 20809 179620 bytes_in 373111 179620 station_ip 5.120.64.194 179620 port 172 179620 unique_id port 179620 remote_ip 10.8.0.190 179625 username zahra1101 179625 mac 179625 bytes_out 0 179625 bytes_in 0 179625 station_ip 5.120.64.194 179625 port 172 179625 unique_id port 179625 remote_ip 10.8.0.190 179627 username hashtadani4 179627 mac 179627 bytes_out 0 179627 bytes_in 0 179627 station_ip 83.123.60.60 179627 port 174 179627 unique_id port 179627 remote_ip 10.8.0.22 179628 username hashtadani4 179628 mac 179628 bytes_out 0 179628 bytes_in 0 179628 station_ip 83.123.60.60 179628 port 175 179628 unique_id port 179628 remote_ip 10.8.0.22 179635 username barzegar 179635 mac 179635 bytes_out 0 179635 bytes_in 0 179635 station_ip 5.119.195.192 179635 port 175 179635 unique_id port 179635 remote_ip 10.8.0.10 179637 username hashtadani4 179637 mac 179637 bytes_out 0 179637 bytes_in 0 179637 station_ip 83.123.60.60 179637 port 173 179637 unique_id port 179637 remote_ip 10.8.0.22 179639 username hashtadani4 179639 mac 179639 bytes_out 0 179639 bytes_in 0 179639 station_ip 83.123.60.60 179639 port 173 179639 unique_id port 179639 remote_ip 10.8.0.22 179641 username hashtadani4 179641 mac 179641 bytes_out 0 179641 bytes_in 0 179580 bytes_in 5465968 179580 station_ip 5.202.13.242 179580 port 168 179580 unique_id port 179580 remote_ip 10.8.0.74 179587 username nilufarrajaei 179587 kill_reason Another user logged on this global unique id 179587 mac 179587 bytes_out 0 179587 bytes_in 0 179587 station_ip 83.123.75.85 179587 port 171 179587 unique_id port 179587 remote_ip 10.8.0.194 179589 username hashtadani4 179589 mac 179589 bytes_out 0 179589 bytes_in 0 179589 station_ip 83.123.60.60 179589 port 169 179589 unique_id port 179589 remote_ip 10.8.0.22 179590 username hashtadani4 179590 mac 179590 bytes_out 0 179590 bytes_in 0 179590 station_ip 83.123.60.60 179590 port 172 179590 unique_id port 179590 remote_ip 10.8.0.22 179593 username zahra1101 179593 mac 179593 bytes_out 1241930 179593 bytes_in 9435404 179593 station_ip 5.120.64.194 179593 port 168 179593 unique_id port 179593 remote_ip 10.8.0.190 179601 username hashtadani4 179601 mac 179601 bytes_out 0 179601 bytes_in 0 179601 station_ip 83.123.60.60 179601 port 162 179601 unique_id port 179601 remote_ip 10.8.0.22 179603 username hashtadani4 179603 mac 179603 bytes_out 0 179603 bytes_in 0 179603 station_ip 83.123.60.60 179603 port 172 179603 unique_id port 179603 remote_ip 10.8.0.22 179605 username barzegar 179605 mac 179605 bytes_out 0 179605 bytes_in 0 179605 station_ip 5.119.195.192 179605 port 168 179605 unique_id port 179605 remote_ip 10.8.0.10 179609 username zahra1101 179609 mac 179609 bytes_out 0 179609 bytes_in 0 179609 station_ip 5.120.64.194 179609 port 168 179609 unique_id port 179609 remote_ip 10.8.0.190 179613 username zahra1101 179613 mac 179613 bytes_out 0 179613 bytes_in 0 179613 station_ip 5.120.64.194 179613 port 168 179613 unique_id port 179613 remote_ip 10.8.0.190 179614 username zahra1101 179614 mac 179614 bytes_out 0 179614 bytes_in 0 179614 station_ip 5.120.64.194 179614 port 168 179614 unique_id port 179614 remote_ip 10.8.0.190 179615 username zahra1101 179615 mac 179615 bytes_out 0 179615 bytes_in 0 179615 station_ip 5.120.64.194 179615 port 168 179615 unique_id port 179615 remote_ip 10.8.0.190 179621 username hashtadani4 179621 mac 179621 bytes_out 0 179621 bytes_in 0 179621 station_ip 83.123.60.60 179621 port 173 179621 unique_id port 179621 remote_ip 10.8.0.22 179622 username zahra1101 179622 mac 179622 bytes_out 0 179622 bytes_in 0 179622 station_ip 5.120.64.194 179622 port 172 179622 unique_id port 179622 remote_ip 10.8.0.190 179623 username hashtadani4 179623 mac 179623 bytes_out 0 179623 bytes_in 0 179623 station_ip 83.123.60.60 179623 port 172 179623 unique_id port 179623 remote_ip 10.8.0.22 179626 username hashtadani4 179626 mac 179626 bytes_out 0 179626 bytes_in 0 179626 station_ip 83.123.60.60 179626 port 174 179626 unique_id port 179626 remote_ip 10.8.0.22 179632 username hashtadani4 179632 mac 179632 bytes_out 0 179632 bytes_in 0 179632 station_ip 83.123.60.60 179632 port 173 179632 unique_id port 179632 remote_ip 10.8.0.22 179633 username hashtadani4 179633 mac 179633 bytes_out 0 179633 bytes_in 0 179633 station_ip 83.123.60.60 179633 port 175 179633 unique_id port 179633 remote_ip 10.8.0.22 179636 username zahra1101 179636 mac 179636 bytes_out 0 179636 bytes_in 0 179636 station_ip 5.120.64.194 179636 port 173 179636 unique_id port 179636 remote_ip 10.8.0.190 179638 username zahra1101 179638 mac 179638 bytes_out 0 179638 bytes_in 0 179638 station_ip 5.120.64.194 179624 mac 179624 bytes_out 0 179624 bytes_in 0 179624 station_ip 83.123.80.105 179624 port 155 179624 unique_id port 179624 remote_ip 10.8.0.54 179629 username zahra1101 179629 mac 179629 bytes_out 2350 179629 bytes_in 4515 179629 station_ip 5.120.64.194 179629 port 173 179629 unique_id port 179629 remote_ip 10.8.0.190 179630 username hashtadani4 179630 mac 179630 bytes_out 0 179630 bytes_in 0 179630 station_ip 83.123.60.60 179630 port 173 179630 unique_id port 179630 remote_ip 10.8.0.22 179631 username hashtadani4 179631 mac 179631 bytes_out 0 179631 bytes_in 0 179631 station_ip 83.123.60.60 179631 port 173 179631 unique_id port 179631 remote_ip 10.8.0.22 179634 username zahra1101 179634 mac 179634 bytes_out 0 179634 bytes_in 0 179634 station_ip 5.120.64.194 179634 port 173 179634 unique_id port 179634 remote_ip 10.8.0.190 179640 username rezaei 179640 mac 179640 bytes_out 1437996 179640 bytes_in 14210261 179640 station_ip 5.120.68.177 179640 port 174 179640 unique_id port 179640 remote_ip 10.8.0.198 179645 username zahra1101 179645 mac 179645 bytes_out 2802 179645 bytes_in 5168 179645 station_ip 5.120.64.194 179645 port 175 179645 unique_id port 179645 remote_ip 10.8.0.190 179646 username hashtadani4 179646 mac 179646 bytes_out 0 179646 bytes_in 0 179646 station_ip 83.123.60.60 179646 port 174 179646 unique_id port 179646 remote_ip 10.8.0.22 179647 username hashtadani4 179647 mac 179647 bytes_out 0 179647 bytes_in 0 179647 station_ip 83.123.60.60 179647 port 174 179647 unique_id port 179647 remote_ip 10.8.0.22 179649 username hashtadani4 179649 mac 179649 bytes_out 0 179649 bytes_in 0 179649 station_ip 83.123.60.60 179649 port 155 179649 unique_id port 179649 remote_ip 10.8.0.22 179652 username hashtadani4 179652 mac 179652 bytes_out 0 179652 bytes_in 0 179652 station_ip 83.123.60.60 179652 port 155 179652 unique_id port 179652 remote_ip 10.8.0.22 179659 username alihosseini1 179659 mac 179659 bytes_out 37973 179659 bytes_in 91349 179659 station_ip 5.119.103.60 179659 port 175 179659 unique_id port 179659 remote_ip 10.8.0.234 179660 username hashtadani4 179660 mac 179660 bytes_out 0 179660 bytes_in 0 179660 station_ip 83.123.60.60 179660 port 175 179660 unique_id port 179660 remote_ip 10.8.0.22 179662 username barzegar 179662 mac 179662 bytes_out 0 179662 bytes_in 0 179662 station_ip 5.119.195.192 179662 port 175 179662 unique_id port 179662 remote_ip 10.8.0.10 179666 username alihosseini1 179666 mac 179666 bytes_out 802047 179666 bytes_in 6198768 179666 station_ip 5.120.172.50 179666 port 176 179666 unique_id port 179666 remote_ip 10.8.0.234 179668 username hashtadani4 179668 mac 179668 bytes_out 0 179668 bytes_in 0 179668 station_ip 83.123.60.60 179668 port 173 179668 unique_id port 179668 remote_ip 10.8.0.22 179671 username jafari 179671 mac 179671 bytes_out 460909 179671 bytes_in 3526821 179671 station_ip 93.114.30.84 179671 port 155 179671 unique_id port 179671 remote_ip 10.8.0.86 179673 username barzegar 179673 mac 179673 bytes_out 0 179673 bytes_in 0 179673 station_ip 5.119.195.192 179673 port 155 179673 unique_id port 179673 remote_ip 10.8.0.10 179675 username sedighe 179675 mac 179675 bytes_out 353577 179675 bytes_in 479344 179675 station_ip 83.123.22.106 179675 port 172 179675 unique_id port 179675 remote_ip 10.8.0.46 179682 username mostafa_es78 179682 kill_reason Another user logged on this global unique id 179682 mac 179638 port 173 179638 unique_id port 179638 remote_ip 10.8.0.190 179642 username zahra1101 179642 mac 179642 bytes_out 0 179642 bytes_in 0 179642 station_ip 5.120.64.194 179642 port 174 179642 unique_id port 179642 remote_ip 10.8.0.190 179643 username hashtadani4 179643 mac 179643 bytes_out 0 179643 bytes_in 0 179643 station_ip 83.123.60.60 179643 port 174 179643 unique_id port 179643 remote_ip 10.8.0.22 179653 username hashtadani4 179653 mac 179653 bytes_out 0 179653 bytes_in 0 179653 station_ip 83.123.60.60 179653 port 174 179653 unique_id port 179653 remote_ip 10.8.0.22 179654 username hashtadani4 179654 mac 179654 bytes_out 0 179654 bytes_in 0 179654 station_ip 83.123.60.60 179654 port 174 179654 unique_id port 179654 remote_ip 10.8.0.22 179655 username hashtadani4 179655 mac 179655 bytes_out 0 179655 bytes_in 0 179655 station_ip 83.123.60.60 179655 port 176 179655 unique_id port 179655 remote_ip 10.8.0.22 179656 username hashtadani4 179656 mac 179656 bytes_out 0 179656 bytes_in 0 179656 station_ip 83.123.60.60 179656 port 176 179656 unique_id port 179656 remote_ip 10.8.0.22 179661 username hashtadani4 179661 mac 179661 bytes_out 0 179661 bytes_in 0 179661 station_ip 83.123.60.60 179661 port 175 179661 unique_id port 179661 remote_ip 10.8.0.22 179664 username hashtadani4 179664 mac 179664 bytes_out 0 179664 bytes_in 0 179664 station_ip 83.123.60.60 179664 port 175 179664 unique_id port 179664 remote_ip 10.8.0.22 179665 username hashtadani4 179665 mac 179665 bytes_out 0 179665 bytes_in 0 179665 station_ip 83.123.60.60 179665 port 175 179665 unique_id port 179665 remote_ip 10.8.0.22 179669 username hashtadani4 179669 mac 179669 bytes_out 0 179669 bytes_in 0 179669 station_ip 83.123.60.60 179669 port 173 179669 unique_id port 179669 remote_ip 10.8.0.22 179674 username hashtadani4 179674 mac 179674 bytes_out 0 179674 bytes_in 0 179674 station_ip 83.123.60.60 179674 port 155 179674 unique_id port 179674 remote_ip 10.8.0.22 179676 username hashtadani4 179676 mac 179676 bytes_out 0 179676 bytes_in 0 179676 station_ip 83.123.60.60 179676 port 172 179676 unique_id port 179676 remote_ip 10.8.0.22 179679 username hashtadani4 179679 mac 179679 bytes_out 0 179679 bytes_in 0 179679 station_ip 83.123.60.60 179679 port 172 179679 unique_id port 179679 remote_ip 10.8.0.22 179680 username hashtadani4 179680 mac 179680 bytes_out 0 179680 bytes_in 0 179680 station_ip 83.123.60.60 179680 port 172 179680 unique_id port 179680 remote_ip 10.8.0.22 179684 username hashtadani4 179684 mac 179684 bytes_out 0 179684 bytes_in 0 179684 station_ip 83.123.60.60 179684 port 172 179684 unique_id port 179684 remote_ip 10.8.0.22 179685 username hashtadani4 179685 mac 179685 bytes_out 0 179685 bytes_in 0 179685 station_ip 83.123.60.60 179685 port 176 179685 unique_id port 179685 remote_ip 10.8.0.22 179688 username shadkam 179688 mac 179688 bytes_out 2627 179688 bytes_in 5545 179688 station_ip 83.123.78.62 179688 port 176 179688 unique_id port 179688 remote_ip 10.8.0.74 179690 username hashtadani4 179690 mac 179690 bytes_out 0 179690 bytes_in 0 179690 station_ip 83.123.60.60 179690 port 176 179690 unique_id port 179690 remote_ip 10.8.0.22 179691 username hashtadani4 179691 mac 179691 bytes_out 0 179691 bytes_in 0 179691 station_ip 83.123.60.60 179691 port 176 179691 unique_id port 179691 remote_ip 10.8.0.22 179693 username alihosseini1 179641 station_ip 83.123.60.60 179641 port 173 179641 unique_id port 179641 remote_ip 10.8.0.22 179644 username hashtadani4 179644 mac 179644 bytes_out 0 179644 bytes_in 0 179644 station_ip 83.123.60.60 179644 port 174 179644 unique_id port 179644 remote_ip 10.8.0.22 179648 username hosseine 179648 mac 179648 bytes_out 0 179648 bytes_in 0 179648 station_ip 83.123.80.105 179648 port 155 179648 unique_id port 179650 username barzegar 179650 mac 179650 bytes_out 0 179650 bytes_in 0 179650 station_ip 5.119.195.192 179650 port 174 179650 unique_id port 179650 remote_ip 10.8.0.10 179651 username hashtadani4 179651 mac 179651 bytes_out 0 179651 bytes_in 0 179651 station_ip 83.123.60.60 179651 port 155 179651 unique_id port 179651 remote_ip 10.8.0.22 179657 username hashtadani4 179657 mac 179657 bytes_out 0 179657 bytes_in 0 179657 station_ip 83.123.60.60 179657 port 176 179657 unique_id port 179657 remote_ip 10.8.0.22 179658 username hashtadani4 179658 mac 179658 bytes_out 0 179658 bytes_in 0 179658 station_ip 83.123.60.60 179658 port 176 179658 unique_id port 179658 remote_ip 10.8.0.22 179663 username hashtadani4 179663 mac 179663 bytes_out 0 179663 bytes_in 0 179663 station_ip 83.123.60.60 179663 port 177 179663 unique_id port 179663 remote_ip 10.8.0.22 179667 username yaghobi 179667 mac 179667 bytes_out 3577671 179667 bytes_in 36804068 179667 station_ip 83.123.19.230 179667 port 173 179667 unique_id port 179667 remote_ip 10.8.0.138 179670 username hashtadani4 179670 mac 179670 bytes_out 0 179670 bytes_in 0 179670 station_ip 83.123.60.60 179670 port 173 179670 unique_id port 179670 remote_ip 10.8.0.22 179672 username hashtadani4 179672 mac 179672 bytes_out 0 179672 bytes_in 0 179672 station_ip 83.123.60.60 179672 port 173 179672 unique_id port 179672 remote_ip 10.8.0.22 179677 username hashtadani4 179677 mac 179677 bytes_out 0 179677 bytes_in 0 179677 station_ip 83.123.60.60 179677 port 172 179677 unique_id port 179677 remote_ip 10.8.0.22 179678 username kalantary6037 179678 mac 179678 bytes_out 614098 179678 bytes_in 2466861 179678 station_ip 83.123.2.68 179678 port 155 179678 unique_id port 179678 remote_ip 10.8.0.50 179681 username barzegar 179681 mac 179681 bytes_out 0 179681 bytes_in 0 179681 station_ip 5.119.195.192 179681 port 172 179681 unique_id port 179681 remote_ip 10.8.0.10 179683 username hashtadani4 179683 mac 179683 bytes_out 0 179683 bytes_in 0 179683 station_ip 83.123.60.60 179683 port 172 179683 unique_id port 179683 remote_ip 10.8.0.22 179686 username hashtadani4 179686 mac 179686 bytes_out 0 179686 bytes_in 0 179686 station_ip 83.123.60.60 179686 port 176 179686 unique_id port 179686 remote_ip 10.8.0.22 179687 username aminvpn 179687 unique_id port 179687 terminate_cause User-Request 179687 bytes_out 5822604 179687 bytes_in 179087712 179687 station_ip 31.57.121.194 179687 port 15728749 179687 nas_port_type Virtual 179687 remote_ip 5.5.5.220 179696 username khademi 179696 mac 179696 bytes_out 0 179696 bytes_in 0 179696 station_ip 83.123.53.153 179696 port 74 179696 unique_id port 179699 username barzegar 179699 mac 179699 bytes_out 0 179699 bytes_in 0 179699 station_ip 5.119.195.192 179699 port 175 179699 unique_id port 179699 remote_ip 10.8.0.10 179701 username hashtadani4 179701 kill_reason Maximum check online fails reached 179701 mac 179701 bytes_out 0 179701 bytes_in 0 179701 station_ip 83.123.83.180 179701 port 171 179682 bytes_out 0 179682 bytes_in 0 179682 station_ip 83.123.39.92 179682 port 174 179682 unique_id port 179682 remote_ip 10.8.0.34 179689 username barzegar 179689 mac 179689 bytes_out 0 179689 bytes_in 0 179689 station_ip 5.119.195.192 179689 port 176 179689 unique_id port 179689 remote_ip 10.8.0.10 179692 username godarzi 179692 kill_reason Another user logged on this global unique id 179692 mac 179692 bytes_out 0 179692 bytes_in 0 179692 station_ip 5.202.13.223 179692 port 173 179692 unique_id port 179692 remote_ip 10.8.0.38 179694 username hashtadani4 179694 mac 179694 bytes_out 0 179694 bytes_in 0 179694 station_ip 83.123.60.60 179694 port 177 179694 unique_id port 179694 remote_ip 10.8.0.22 179697 username hashtadani4 179697 mac 179697 bytes_out 0 179697 bytes_in 0 179697 station_ip 83.123.83.180 179697 port 74 179697 unique_id port 179697 remote_ip 10.8.0.22 179700 username hashtadani4 179700 mac 179700 bytes_out 0 179700 bytes_in 0 179700 station_ip 83.123.83.180 179700 port 175 179700 unique_id port 179700 remote_ip 10.8.0.22 179703 username hashtadani4 179703 mac 179703 bytes_out 0 179703 bytes_in 0 179703 station_ip 83.123.83.180 179703 port 175 179703 unique_id port 179703 remote_ip 10.8.0.22 179706 username hashtadani4 179706 mac 179706 bytes_out 0 179706 bytes_in 0 179706 station_ip 83.123.83.180 179706 port 175 179706 unique_id port 179706 remote_ip 10.8.0.22 179709 username shadkam 179709 mac 179709 bytes_out 51545 179709 bytes_in 502564 179709 station_ip 83.123.119.228 179709 port 175 179709 unique_id port 179709 remote_ip 10.8.0.74 179710 username hashtadani4 179710 kill_reason Maximum number of concurrent logins reached 179710 mac 179710 bytes_out 0 179710 bytes_in 0 179710 station_ip 83.123.83.180 179710 port 178 179710 unique_id port 179712 username hashtadani4 179712 kill_reason Maximum check online fails reached 179712 mac 179712 bytes_out 0 179712 bytes_in 0 179712 station_ip 83.123.83.180 179712 port 175 179712 unique_id port 179716 username meysam 179716 kill_reason Another user logged on this global unique id 179716 mac 179716 bytes_out 0 179716 bytes_in 0 179716 station_ip 188.158.49.195 179716 port 176 179716 unique_id port 179718 username barzegar 179718 mac 179718 bytes_out 6073 179718 bytes_in 14447 179718 station_ip 5.119.195.192 179718 port 173 179718 unique_id port 179718 remote_ip 10.8.0.10 179720 username meysam 179720 mac 179720 bytes_out 0 179720 bytes_in 0 179720 station_ip 188.158.49.195 179720 port 176 179720 unique_id port 179729 username morteza 179729 kill_reason Relative expiration date has reached 179729 mac 179729 bytes_out 0 179729 bytes_in 0 179729 station_ip 83.123.116.153 179729 port 182 179729 unique_id port 179734 username barzegar 179734 mac 179734 bytes_out 293677 179734 bytes_in 32947 179734 station_ip 5.119.195.192 179734 port 180 179734 unique_id port 179734 remote_ip 10.8.0.10 179735 username barzegar 179735 mac 179735 bytes_out 2723 179735 bytes_in 4991 179735 station_ip 5.119.195.192 179735 port 176 179735 unique_id port 179735 remote_ip 10.8.0.10 179738 username shadkam 179738 mac 179738 bytes_out 8231 179738 bytes_in 64922 179738 station_ip 83.123.99.113 179738 port 180 179738 unique_id port 179738 remote_ip 10.8.0.74 179743 username barzegar 179743 mac 179743 bytes_out 929602 179743 bytes_in 608440 179743 station_ip 5.119.195.192 179743 port 176 179743 unique_id port 179743 remote_ip 10.8.0.10 179746 username mirzaei6046 179758 station_ip 5.119.195.192 179693 mac 179693 bytes_out 457593 179693 bytes_in 3261988 179693 station_ip 5.119.90.134 179693 port 175 179693 unique_id port 179693 remote_ip 10.8.0.234 179695 username mostafa_es78 179695 mac 179695 bytes_out 0 179695 bytes_in 0 179695 station_ip 83.123.39.92 179695 port 174 179695 unique_id port 179698 username nilufarrajaei 179698 mac 179698 bytes_out 0 179698 bytes_in 0 179698 station_ip 83.123.75.85 179698 port 171 179698 unique_id port 179702 username khalili2 179702 mac 179702 bytes_out 207103 179702 bytes_in 365899 179702 station_ip 5.119.99.166 179702 port 155 179702 unique_id port 179702 remote_ip 10.8.0.118 179704 username barzegar 179704 mac 179704 bytes_out 0 179704 bytes_in 0 179704 station_ip 5.119.195.192 179704 port 175 179704 unique_id port 179704 remote_ip 10.8.0.10 179714 username mosi 179714 kill_reason Another user logged on this global unique id 179714 mac 179714 bytes_out 0 179714 bytes_in 0 179714 station_ip 151.235.83.58 179714 port 154 179714 unique_id port 179715 username barzegar 179715 mac 179715 bytes_out 2206 179715 bytes_in 4491 179715 station_ip 5.119.195.192 179715 port 178 179715 unique_id port 179715 remote_ip 10.8.0.10 179717 username godarzi 179717 mac 179717 bytes_out 0 179717 bytes_in 0 179717 station_ip 5.202.13.223 179717 port 173 179717 unique_id port 179719 username aminvpn 179719 mac 179719 bytes_out 0 179719 bytes_in 0 179719 station_ip 5.119.222.165 179719 port 173 179719 unique_id port 179719 remote_ip 10.8.0.58 179726 username barzegar 179726 mac 179726 bytes_out 0 179726 bytes_in 0 179726 station_ip 5.119.195.192 179726 port 176 179726 unique_id port 179726 remote_ip 10.8.0.10 179728 username morteza 179728 kill_reason Relative expiration date has reached 179728 mac 179728 bytes_out 0 179728 bytes_in 0 179728 station_ip 83.123.116.153 179728 port 181 179728 unique_id port 179731 username rashidi4690 179731 mac 179731 bytes_out 249761 179731 bytes_in 650682 179731 station_ip 5.119.220.171 179731 port 179 179731 unique_id port 179731 remote_ip 10.8.0.242 179737 username aminvpn 179737 unique_id port 179737 terminate_cause Lost-Carrier 179737 bytes_out 728954 179737 bytes_in 13948445 179737 station_ip 31.57.121.194 179737 port 15728753 179737 nas_port_type Virtual 179737 remote_ip 5.5.5.220 179739 username meysam 179739 mac 179739 bytes_out 1337676 179739 bytes_in 18338693 179739 station_ip 188.158.49.195 179739 port 179 179739 unique_id port 179739 remote_ip 10.8.0.158 179742 username barzegar 179742 mac 179742 bytes_out 452487 179742 bytes_in 42488 179742 station_ip 5.119.195.192 179742 port 176 179742 unique_id port 179742 remote_ip 10.8.0.10 179747 username mosi 179747 mac 179747 bytes_out 0 179747 bytes_in 0 179747 station_ip 151.235.83.58 179747 port 154 179747 unique_id port 179752 username barzegar 179752 mac 179752 bytes_out 4060186 179752 bytes_in 1145364 179752 station_ip 5.119.195.192 179752 port 154 179752 unique_id port 179752 remote_ip 10.8.0.10 179754 username godarzi 179754 kill_reason Another user logged on this global unique id 179754 mac 179754 bytes_out 0 179754 bytes_in 0 179754 station_ip 5.119.181.24 179754 port 176 179754 unique_id port 179754 remote_ip 10.8.0.38 179757 username godarzi 179757 mac 179757 bytes_out 0 179757 bytes_in 0 179757 station_ip 5.119.181.24 179757 port 176 179757 unique_id port 179758 username barzegar 179758 mac 179758 bytes_out 0 179758 bytes_in 0 179701 unique_id port 179705 username khalili2 179705 mac 179705 bytes_out 4118 179705 bytes_in 15033 179705 station_ip 5.119.99.166 179705 port 155 179705 unique_id port 179705 remote_ip 10.8.0.118 179707 username meysam 179707 kill_reason Another user logged on this global unique id 179707 mac 179707 bytes_out 0 179707 bytes_in 0 179707 station_ip 188.158.49.195 179707 port 176 179707 unique_id port 179707 remote_ip 10.8.0.158 179708 username hashtadani4 179708 mac 179708 bytes_out 0 179708 bytes_in 0 179708 station_ip 83.123.83.180 179708 port 177 179708 unique_id port 179708 remote_ip 10.8.0.22 179711 username kalantary6037 179711 mac 179711 bytes_out 47951 179711 bytes_in 55341 179711 station_ip 83.123.30.109 179711 port 155 179711 unique_id port 179711 remote_ip 10.8.0.50 179713 username hashtadani4 179713 kill_reason Maximum check online fails reached 179713 mac 179713 bytes_out 0 179713 bytes_in 0 179713 station_ip 83.123.83.180 179713 port 177 179713 unique_id port 179721 username aminvpn 179721 unique_id port 179721 terminate_cause User-Request 179721 bytes_out 2904482 179721 bytes_in 40438183 179721 station_ip 31.57.121.194 179721 port 15728750 179721 nas_port_type Virtual 179721 remote_ip 5.5.5.220 179722 username barzegar 179722 mac 179722 bytes_out 3370 179722 bytes_in 5174 179722 station_ip 5.119.195.192 179722 port 176 179722 unique_id port 179722 remote_ip 10.8.0.10 179723 username mosi 179723 kill_reason Another user logged on this global unique id 179723 mac 179723 bytes_out 0 179723 bytes_in 0 179723 station_ip 151.235.83.58 179723 port 154 179723 unique_id port 179724 username morteza 179724 kill_reason Relative expiration date has reached 179724 mac 179724 bytes_out 0 179724 bytes_in 0 179724 station_ip 83.123.116.153 179724 port 179 179724 unique_id port 179725 username kalantary6037 179725 mac 179725 bytes_out 0 179725 bytes_in 0 179725 station_ip 83.123.24.229 179725 port 179 179725 unique_id port 179725 remote_ip 10.8.0.50 179727 username barzegar 179727 mac 179727 bytes_out 0 179727 bytes_in 0 179727 station_ip 5.119.195.192 179727 port 176 179727 unique_id port 179727 remote_ip 10.8.0.10 179730 username godarzi 179730 mac 179730 bytes_out 40444 179730 bytes_in 62749 179730 station_ip 5.119.181.24 179730 port 176 179730 unique_id port 179730 remote_ip 10.8.0.38 179732 username shadkam 179732 mac 179732 bytes_out 2433 179732 bytes_in 4958 179732 station_ip 83.123.65.247 179732 port 181 179732 unique_id port 179732 remote_ip 10.8.0.74 179733 username morteza 179733 kill_reason Relative expiration date has reached 179733 mac 179733 bytes_out 0 179733 bytes_in 0 179733 station_ip 83.123.116.153 179733 port 176 179733 unique_id port 179736 username mosi 179736 kill_reason Another user logged on this global unique id 179736 mac 179736 bytes_out 0 179736 bytes_in 0 179736 station_ip 151.235.83.58 179736 port 154 179736 unique_id port 179740 username mohammadjavad 179740 mac 179740 bytes_out 0 179740 bytes_in 0 179740 station_ip 83.123.18.6 179740 port 180 179740 unique_id port 179740 remote_ip 10.8.0.110 179741 username tahmasebi 179741 kill_reason Relative expiration date has reached 179741 mac 179741 bytes_out 0 179741 bytes_in 0 179741 station_ip 46.225.212.179 179741 port 180 179741 unique_id port 179744 username kalantary6037 179744 mac 179744 bytes_out 95336 179744 bytes_in 63770 179744 station_ip 83.123.24.229 179744 port 176 179744 unique_id port 179744 remote_ip 10.8.0.50 179745 username barzegar 179745 mac 179745 bytes_out 3854 179745 bytes_in 4757 179745 station_ip 5.119.195.192 179745 port 183 179745 unique_id port 179745 remote_ip 10.8.0.10 179749 username kordestani 179749 mac 179749 bytes_out 2197641 179749 bytes_in 29852898 179749 station_ip 151.235.113.113 179749 port 182 179749 unique_id port 179749 remote_ip 10.8.0.130 179753 username shadkam 179753 mac 179753 bytes_out 0 179753 bytes_in 0 179753 station_ip 83.123.19.32 179753 port 183 179753 unique_id port 179753 remote_ip 10.8.0.74 179755 username mohammadjavad 179755 mac 179755 bytes_out 0 179755 bytes_in 0 179755 station_ip 83.123.18.6 179755 port 183 179755 unique_id port 179755 remote_ip 10.8.0.110 179761 username zahra1101 179761 mac 179761 bytes_out 4994 179761 bytes_in 7243 179761 station_ip 5.119.116.59 179761 port 154 179761 unique_id port 179761 remote_ip 10.8.0.190 179762 username barzegar 179762 mac 179762 bytes_out 0 179762 bytes_in 0 179762 station_ip 5.119.195.192 179762 port 154 179762 unique_id port 179762 remote_ip 10.8.0.10 179763 username godarzi 179763 mac 179763 bytes_out 675534 179763 bytes_in 6183056 179763 station_ip 5.202.22.5 179763 port 172 179763 unique_id port 179763 remote_ip 10.8.0.38 179765 username kalantary6037 179765 mac 179765 bytes_out 142837 179765 bytes_in 402694 179765 station_ip 83.123.1.7 179765 port 154 179765 unique_id port 179765 remote_ip 10.8.0.50 179768 username zahra1101 179768 mac 179768 bytes_out 0 179768 bytes_in 0 179768 station_ip 5.119.116.59 179768 port 154 179768 unique_id port 179768 remote_ip 10.8.0.190 179775 username Mahin 179775 kill_reason Relative expiration date has reached 179775 mac 179775 bytes_out 0 179775 bytes_in 0 179775 station_ip 5.119.59.152 179775 port 183 179775 unique_id port 179782 username mosi 179782 mac 179782 bytes_out 151608 179782 bytes_in 395986 179782 station_ip 37.153.178.180 179782 port 183 179782 unique_id port 179782 remote_ip 10.8.0.142 179789 username shadkam 179789 mac 179789 bytes_out 40627 179789 bytes_in 410583 179789 station_ip 83.123.121.215 179789 port 185 179789 unique_id port 179789 remote_ip 10.8.0.74 179790 username meysam 179790 mac 179790 bytes_out 3603267 179790 bytes_in 51019898 179790 station_ip 188.158.49.195 179790 port 183 179790 unique_id port 179790 remote_ip 10.8.0.158 179796 username nilufarrajaei 179796 kill_reason Another user logged on this global unique id 179796 mac 179796 bytes_out 0 179796 bytes_in 0 179796 station_ip 83.123.8.75 179796 port 74 179796 unique_id port 179796 remote_ip 10.8.0.194 179802 username saeeddamghani 179802 unique_id port 179802 terminate_cause User-Request 179802 bytes_out 160196 179802 bytes_in 325465 179802 station_ip 83.123.0.225 179802 port 15728759 179802 nas_port_type Virtual 179802 remote_ip 5.5.5.218 179806 username barzegar 179806 mac 179806 bytes_out 29254 179806 bytes_in 54466 179806 station_ip 5.119.195.192 179806 port 176 179806 unique_id port 179806 remote_ip 10.8.0.10 179808 username saeeddamghani 179808 unique_id port 179808 terminate_cause User-Request 179808 bytes_out 10983 179808 bytes_in 14116 179808 station_ip 83.123.0.225 179808 port 15728763 179808 nas_port_type Virtual 179808 remote_ip 5.5.5.218 179813 username barzegar 179813 mac 179813 bytes_out 37794 179813 bytes_in 87058 179813 station_ip 5.119.195.192 179813 port 176 179813 unique_id port 179813 remote_ip 10.8.0.10 179816 username sabaghnezhad 179816 mac 179816 bytes_out 0 179816 bytes_in 0 179816 station_ip 83.123.20.2 179816 port 184 179816 unique_id port 179746 kill_reason Another user logged on this global unique id 179746 mac 179746 bytes_out 0 179746 bytes_in 0 179746 station_ip 5.119.103.136 179746 port 134 179746 unique_id port 179746 remote_ip 10.8.0.246 179748 username mosi 179748 mac 179748 bytes_out 0 179748 bytes_in 0 179748 station_ip 37.156.54.169 179748 port 184 179748 unique_id port 179748 remote_ip 10.8.0.142 179750 username kalantary6037 179750 mac 179750 bytes_out 198816 179750 bytes_in 2123893 179750 station_ip 83.123.101.43 179750 port 183 179750 unique_id port 179750 remote_ip 10.8.0.50 179751 username sabaghnezhad 179751 mac 179751 bytes_out 130447 179751 bytes_in 119774 179751 station_ip 83.123.20.2 179751 port 178 179751 unique_id port 179751 remote_ip 10.8.0.66 179756 username shadkam 179756 mac 179756 bytes_out 83646 179756 bytes_in 609515 179756 station_ip 83.123.19.32 179756 port 154 179756 unique_id port 179756 remote_ip 10.8.0.74 179759 username zahra1101 179759 mac 179759 bytes_out 10836918 179759 bytes_in 6733242 179759 station_ip 5.119.116.59 179759 port 172 179759 unique_id port 179759 remote_ip 10.8.0.190 179766 username barzegar 179766 mac 179766 bytes_out 0 179766 bytes_in 0 179766 station_ip 5.119.195.192 179766 port 172 179766 unique_id port 179766 remote_ip 10.8.0.10 179767 username barzegar 179767 mac 179767 bytes_out 0 179767 bytes_in 0 179767 station_ip 5.119.195.192 179767 port 172 179767 unique_id port 179767 remote_ip 10.8.0.10 179769 username mohammadjavad 179769 mac 179769 bytes_out 640220 179769 bytes_in 7731184 179769 station_ip 83.123.18.6 179769 port 176 179769 unique_id port 179769 remote_ip 10.8.0.110 179773 username barzegar 179773 kill_reason Maximum check online fails reached 179773 mac 179773 bytes_out 0 179773 bytes_in 0 179773 station_ip 5.119.195.192 179773 port 154 179773 unique_id port 179776 username Mahin 179776 kill_reason Relative expiration date has reached 179776 mac 179776 bytes_out 0 179776 bytes_in 0 179776 station_ip 5.119.59.152 179776 port 183 179776 unique_id port 179778 username zahra1101 179778 kill_reason Maximum check online fails reached 179778 mac 179778 bytes_out 0 179778 bytes_in 0 179778 station_ip 5.119.116.59 179778 port 172 179778 unique_id port 179780 username zahra1101 179780 mac 179780 bytes_out 32929 179780 bytes_in 62332 179780 station_ip 5.119.116.59 179780 port 178 179780 unique_id port 179780 remote_ip 10.8.0.190 179783 username yaghobi 179783 mac 179783 bytes_out 514510 179783 bytes_in 1689417 179783 station_ip 83.123.99.17 179783 port 176 179783 unique_id port 179783 remote_ip 10.8.0.138 179784 username zahra1101 179784 mac 179784 bytes_out 30965 179784 bytes_in 57301 179784 station_ip 5.119.116.59 179784 port 178 179784 unique_id port 179784 remote_ip 10.8.0.190 179787 username barzegar 179787 mac 179787 bytes_out 0 179787 bytes_in 0 179787 station_ip 5.119.195.192 179787 port 176 179787 unique_id port 179787 remote_ip 10.8.0.10 179792 username yaghobi 179792 mac 179792 bytes_out 911205 179792 bytes_in 5593381 179792 station_ip 83.123.62.243 179792 port 184 179792 unique_id port 179792 remote_ip 10.8.0.138 179797 username aminvpn 179797 unique_id port 179797 terminate_cause User-Request 179797 bytes_out 530993 179797 bytes_in 1789529 179797 station_ip 5.119.244.142 179797 port 15728755 179797 nas_port_type Virtual 179797 remote_ip 5.5.5.219 179798 username saeeddamghani 179798 unique_id port 179798 terminate_cause User-Request 179798 bytes_out 0 179798 bytes_in 0 179758 port 154 179758 unique_id port 179758 remote_ip 10.8.0.10 179760 username barzegar 179760 mac 179760 bytes_out 0 179760 bytes_in 0 179760 station_ip 5.119.195.192 179760 port 176 179760 unique_id port 179760 remote_ip 10.8.0.10 179764 username meysam 179764 mac 179764 bytes_out 3112730 179764 bytes_in 42834543 179764 station_ip 188.158.49.195 179764 port 178 179764 unique_id port 179764 remote_ip 10.8.0.158 179770 username zahra1101 179770 mac 179770 bytes_out 3656 179770 bytes_in 4985 179770 station_ip 5.119.116.59 179770 port 154 179770 unique_id port 179770 remote_ip 10.8.0.190 179771 username fezealinaghi 179771 mac 179771 bytes_out 2080913 179771 bytes_in 20522072 179771 station_ip 83.123.100.234 179771 port 180 179771 unique_id port 179771 remote_ip 10.8.0.202 179772 username zahra1101 179772 mac 179772 bytes_out 41560 179772 bytes_in 62425 179772 station_ip 5.119.116.59 179772 port 172 179772 unique_id port 179772 remote_ip 10.8.0.190 179774 username barzegar 179774 mac 179774 bytes_out 0 179774 bytes_in 0 179774 station_ip 5.119.195.192 179774 port 178 179774 unique_id port 179774 remote_ip 10.8.0.10 179777 username Mahin 179777 kill_reason Relative expiration date has reached 179777 mac 179777 bytes_out 0 179777 bytes_in 0 179777 station_ip 5.119.59.152 179777 port 183 179777 unique_id port 179779 username barzegar 179779 mac 179779 bytes_out 0 179779 bytes_in 0 179779 station_ip 5.119.195.192 179779 port 183 179779 unique_id port 179779 remote_ip 10.8.0.10 179781 username barzegar 179781 mac 179781 bytes_out 0 179781 bytes_in 0 179781 station_ip 5.119.195.192 179781 port 184 179781 unique_id port 179781 remote_ip 10.8.0.10 179785 username yaghobi 179785 mac 179785 bytes_out 194060 179785 bytes_in 424182 179785 station_ip 83.123.62.243 179785 port 183 179785 unique_id port 179785 remote_ip 10.8.0.138 179786 username shadkam 179786 mac 179786 bytes_out 547765 179786 bytes_in 3112175 179786 station_ip 83.123.83.105 179786 port 176 179786 unique_id port 179786 remote_ip 10.8.0.74 179788 username sedighe 179788 mac 179788 bytes_out 3090 179788 bytes_in 4277 179788 station_ip 83.123.124.99 179788 port 185 179788 unique_id port 179788 remote_ip 10.8.0.46 179791 username barzegar 179791 mac 179791 bytes_out 0 179791 bytes_in 0 179791 station_ip 5.119.195.192 179791 port 183 179791 unique_id port 179791 remote_ip 10.8.0.10 179793 username soleymani5056 179793 mac 179793 bytes_out 379508 179793 bytes_in 1385208 179793 station_ip 5.119.33.227 179793 port 176 179793 unique_id port 179793 remote_ip 10.8.0.226 179794 username barzegar 179794 mac 179794 bytes_out 0 179794 bytes_in 0 179794 station_ip 5.119.195.192 179794 port 176 179794 unique_id port 179794 remote_ip 10.8.0.10 179795 username hamid.e 179795 unique_id port 179795 terminate_cause User-Request 179795 bytes_out 1748530 179795 bytes_in 14629903 179795 station_ip 37.27.21.111 179795 port 15728754 179795 nas_port_type Virtual 179795 remote_ip 5.5.5.233 179800 username saeeddamghani 179800 kill_reason Maximum check online fails reached 179800 unique_id port 179800 bytes_out 60251 179800 bytes_in 539720 179800 station_ip 83.123.0.225 179800 port 15728756 179800 nas_port_type Virtual 179800 remote_ip 5.5.5.218 179804 username saeeddamghani 179804 unique_id port 179804 terminate_cause User-Request 179804 bytes_out 653517 179804 bytes_in 21371351 179804 station_ip 83.123.0.225 179804 port 15728760 179804 nas_port_type Virtual 179804 remote_ip 5.5.5.218 179807 username saeeddamghani 179798 station_ip 83.123.0.225 179798 port 15728757 179798 nas_port_type Virtual 179798 remote_ip 5.5.5.218 179799 username saeeddamghani 179799 unique_id port 179799 terminate_cause User-Request 179799 bytes_out 0 179799 bytes_in 0 179799 station_ip 83.123.0.225 179799 port 15728758 179799 nas_port_type Virtual 179799 remote_ip 5.5.5.218 179801 username soleymani5056 179801 mac 179801 bytes_out 44395 179801 bytes_in 88446 179801 station_ip 5.120.83.231 179801 port 183 179801 unique_id port 179801 remote_ip 10.8.0.226 179803 username soleymani5056 179803 mac 179803 bytes_out 24952 179803 bytes_in 43775 179803 station_ip 5.120.90.95 179803 port 184 179803 unique_id port 179803 remote_ip 10.8.0.226 179805 username saeeddamghani 179805 unique_id port 179805 terminate_cause User-Request 179805 bytes_out 396801 179805 bytes_in 17737276 179805 station_ip 83.123.0.225 179805 port 15728761 179805 nas_port_type Virtual 179805 remote_ip 5.5.5.218 179809 username zahra1101 179809 mac 179809 bytes_out 3273428 179809 bytes_in 20480808 179809 station_ip 5.119.116.59 179809 port 178 179809 unique_id port 179809 remote_ip 10.8.0.190 179814 username barzegar 179814 mac 179814 bytes_out 10198 179814 bytes_in 15752 179814 station_ip 5.119.195.192 179814 port 183 179814 unique_id port 179814 remote_ip 10.8.0.10 179815 username sabaghnezhad 179815 mac 179815 bytes_out 121979 179815 bytes_in 186220 179815 station_ip 83.123.20.2 179815 port 182 179815 unique_id port 179815 remote_ip 10.8.0.66 179820 username zahra1101 179820 mac 179820 bytes_out 119239 179820 bytes_in 348429 179820 station_ip 5.119.116.59 179820 port 178 179820 unique_id port 179820 remote_ip 10.8.0.190 179821 username zahra1101 179821 mac 179821 bytes_out 31300 179821 bytes_in 61711 179821 station_ip 5.119.116.59 179821 port 178 179821 unique_id port 179821 remote_ip 10.8.0.190 179822 username mohammadjavad 179822 mac 179822 bytes_out 1523622 179822 bytes_in 21157721 179822 station_ip 83.123.53.94 179822 port 182 179822 unique_id port 179822 remote_ip 10.8.0.110 179823 username barzegar 179823 mac 179823 bytes_out 0 179823 bytes_in 0 179823 station_ip 5.119.195.192 179823 port 182 179823 unique_id port 179823 remote_ip 10.8.0.10 179825 username rezaei 179825 mac 179825 bytes_out 1641756 179825 bytes_in 13744107 179825 station_ip 5.120.68.177 179825 port 176 179825 unique_id port 179825 remote_ip 10.8.0.198 179827 username sabaghnezhad 179827 mac 179827 bytes_out 29035 179827 bytes_in 43932 179827 station_ip 83.123.20.2 179827 port 183 179827 unique_id port 179827 remote_ip 10.8.0.66 179833 username malekpoir 179833 mac 179833 bytes_out 4315583 179833 bytes_in 45381363 179833 station_ip 5.119.86.125 179833 port 155 179833 unique_id port 179833 remote_ip 10.8.0.18 179837 username zahra1101 179837 kill_reason Maximum check online fails reached 179837 mac 179837 bytes_out 0 179837 bytes_in 0 179837 station_ip 5.119.116.59 179837 port 182 179837 unique_id port 179840 username zahra1101 179840 mac 179840 bytes_out 0 179840 bytes_in 0 179840 station_ip 5.119.116.59 179840 port 180 179840 unique_id port 179840 remote_ip 10.8.0.190 179846 username aminvpn 179846 unique_id port 179846 terminate_cause User-Request 179846 bytes_out 312 179846 bytes_in 210 179846 station_ip 83.123.108.145 179846 port 15728765 179846 nas_port_type Virtual 179846 remote_ip 5.5.5.217 179849 username farhad3 179849 mac 179849 bytes_out 0 179849 bytes_in 0 179849 station_ip 5.119.101.14 179849 port 186 179849 unique_id port 179849 remote_ip 10.8.0.222 179807 unique_id port 179807 terminate_cause User-Request 179807 bytes_out 142049 179807 bytes_in 70343 179807 station_ip 83.123.0.225 179807 port 15728762 179807 nas_port_type Virtual 179807 remote_ip 5.5.5.218 179810 username soleymani5056 179810 mac 179810 bytes_out 193923 179810 bytes_in 572110 179810 station_ip 5.119.188.25 179810 port 183 179810 unique_id port 179810 remote_ip 10.8.0.226 179811 username saeeddamghani 179811 unique_id port 179811 terminate_cause User-Request 179811 bytes_out 37809 179811 bytes_in 276675 179811 station_ip 83.123.0.225 179811 port 15728764 179811 nas_port_type Virtual 179811 remote_ip 5.5.5.218 179812 username meysam 179812 mac 179812 bytes_out 1847006 179812 bytes_in 25352568 179812 station_ip 188.158.49.195 179812 port 183 179812 unique_id port 179812 remote_ip 10.8.0.158 179817 username barzegar 179817 mac 179817 bytes_out 14365 179817 bytes_in 23312 179817 station_ip 5.119.195.192 179817 port 183 179817 unique_id port 179817 remote_ip 10.8.0.10 179818 username barzegar 179818 mac 179818 bytes_out 0 179818 bytes_in 0 179818 station_ip 5.119.195.192 179818 port 183 179818 unique_id port 179818 remote_ip 10.8.0.10 179826 username zahra1101 179826 mac 179826 bytes_out 0 179826 bytes_in 0 179826 station_ip 5.119.116.59 179826 port 176 179826 unique_id port 179826 remote_ip 10.8.0.190 179829 username zahra1101 179829 mac 179829 bytes_out 0 179829 bytes_in 0 179829 station_ip 5.119.116.59 179829 port 183 179829 unique_id port 179829 remote_ip 10.8.0.190 179831 username barzegar 179831 mac 179831 bytes_out 2997227 179831 bytes_in 1077040 179831 station_ip 5.119.195.192 179831 port 182 179831 unique_id port 179831 remote_ip 10.8.0.10 179835 username zahra1101 179835 kill_reason Maximum check online fails reached 179835 mac 179835 bytes_out 0 179835 bytes_in 0 179835 station_ip 5.119.116.59 179835 port 155 179835 unique_id port 179839 username zahra1101 179839 mac 179839 bytes_out 4863 179839 bytes_in 5551 179839 station_ip 5.119.116.59 179839 port 180 179839 unique_id port 179839 remote_ip 10.8.0.190 179841 username zahra1101 179841 mac 179841 bytes_out 0 179841 bytes_in 0 179841 station_ip 5.119.116.59 179841 port 180 179841 unique_id port 179841 remote_ip 10.8.0.190 179844 username sabaghnezhad 179844 mac 179844 bytes_out 178088 179844 bytes_in 2082477 179844 station_ip 83.123.20.2 179844 port 186 179844 unique_id port 179844 remote_ip 10.8.0.66 179847 username morteza 179847 kill_reason Relative expiration date has reached 179847 mac 179847 bytes_out 0 179847 bytes_in 0 179847 station_ip 83.123.74.227 179847 port 186 179847 unique_id port 179848 username aminvpn 179848 unique_id port 179848 terminate_cause User-Request 179848 bytes_out 103116 179848 bytes_in 170579 179848 station_ip 83.123.108.145 179848 port 15728766 179848 nas_port_type Virtual 179848 remote_ip 5.5.5.217 179851 username barzegar 179851 mac 179851 bytes_out 0 179851 bytes_in 0 179851 station_ip 5.119.195.192 179851 port 178 179851 unique_id port 179851 remote_ip 10.8.0.10 179857 username aminvpn 179857 unique_id port 179857 terminate_cause User-Request 179857 bytes_out 1118 179857 bytes_in 844 179857 station_ip 83.123.108.145 179857 port 15728769 179857 nas_port_type Virtual 179857 remote_ip 5.5.5.217 179859 username aminvpn 179859 unique_id port 179859 terminate_cause User-Request 179859 bytes_out 104 179859 bytes_in 116 179859 station_ip 83.123.108.145 179859 port 15728770 179859 nas_port_type Virtual 179859 remote_ip 5.5.5.217 179860 username barzegar 179860 mac 179816 remote_ip 10.8.0.66 179819 username sabaghnezhad 179819 mac 179819 bytes_out 11365 179819 bytes_in 17897 179819 station_ip 83.123.20.2 179819 port 182 179819 unique_id port 179819 remote_ip 10.8.0.66 179824 username zahra1101 179824 mac 179824 bytes_out 3527 179824 bytes_in 10147 179824 station_ip 5.119.116.59 179824 port 178 179824 unique_id port 179824 remote_ip 10.8.0.190 179828 username rezaei 179828 mac 179828 bytes_out 18674 179828 bytes_in 37459 179828 station_ip 5.120.68.177 179828 port 178 179828 unique_id port 179828 remote_ip 10.8.0.198 179830 username rashidi4690 179830 mac 179830 bytes_out 3533 179830 bytes_in 7600 179830 station_ip 5.119.220.171 179830 port 184 179830 unique_id port 179830 remote_ip 10.8.0.242 179832 username meysam 179832 mac 179832 bytes_out 1360561 179832 bytes_in 18366210 179832 station_ip 188.158.49.195 179832 port 176 179832 unique_id port 179832 remote_ip 10.8.0.158 179834 username barzegar 179834 mac 179834 bytes_out 0 179834 bytes_in 0 179834 station_ip 5.119.195.192 179834 port 178 179834 unique_id port 179834 remote_ip 10.8.0.10 179836 username godarzi 179836 mac 179836 bytes_out 9330507 179836 bytes_in 47902441 179836 station_ip 5.202.22.5 179836 port 180 179836 unique_id port 179836 remote_ip 10.8.0.38 179838 username zahra1101 179838 kill_reason Maximum check online fails reached 179838 mac 179838 bytes_out 0 179838 bytes_in 0 179838 station_ip 5.119.116.59 179838 port 183 179838 unique_id port 179842 username zahra1101 179842 mac 179842 bytes_out 0 179842 bytes_in 0 179842 station_ip 5.119.116.59 179842 port 180 179842 unique_id port 179842 remote_ip 10.8.0.190 179843 username zahra1101 179843 mac 179843 bytes_out 0 179843 bytes_in 0 179843 station_ip 5.119.116.59 179843 port 180 179843 unique_id port 179843 remote_ip 10.8.0.190 179845 username barzegar 179845 mac 179845 bytes_out 1062616 179845 bytes_in 6742687 179845 station_ip 5.119.195.192 179845 port 178 179845 unique_id port 179845 remote_ip 10.8.0.10 179850 username shadkam 179850 mac 179850 bytes_out 593057 179850 bytes_in 4796493 179850 station_ip 83.123.44.7 179850 port 178 179850 unique_id port 179850 remote_ip 10.8.0.74 179852 username aminvpn 179852 unique_id port 179852 terminate_cause User-Request 179852 bytes_out 9549 179852 bytes_in 20957 179852 station_ip 83.123.108.145 179852 port 15728767 179852 nas_port_type Virtual 179852 remote_ip 5.5.5.217 179854 username sedighe 179854 mac 179854 bytes_out 67819 179854 bytes_in 109602 179854 station_ip 83.123.124.99 179854 port 187 179854 unique_id port 179854 remote_ip 10.8.0.46 179855 username kalantary6037 179855 mac 179855 bytes_out 253931 179855 bytes_in 1194446 179855 station_ip 83.123.65.37 179855 port 189 179855 unique_id port 179855 remote_ip 10.8.0.50 179856 username sedighe 179856 mac 179856 bytes_out 1744 179856 bytes_in 4208 179856 station_ip 83.123.124.99 179856 port 190 179856 unique_id port 179856 remote_ip 10.8.0.46 179861 username nilufarrajaei 179861 mac 179861 bytes_out 0 179861 bytes_in 0 179861 station_ip 83.123.8.75 179861 port 74 179861 unique_id port 179865 username farhad3 179865 kill_reason Another user logged on this global unique id 179865 mac 179865 bytes_out 0 179865 bytes_in 0 179865 station_ip 5.119.101.14 179865 port 188 179865 unique_id port 179865 remote_ip 10.8.0.222 179868 username barzegar 179868 mac 179868 bytes_out 0 179868 bytes_in 0 179868 station_ip 5.119.195.192 179868 port 189 179853 username aminvpn 179853 unique_id port 179853 terminate_cause User-Request 179853 bytes_out 186893 179853 bytes_in 5626007 179853 station_ip 83.123.108.145 179853 port 15728768 179853 nas_port_type Virtual 179853 remote_ip 5.5.5.217 179858 username barzegar 179858 mac 179858 bytes_out 0 179858 bytes_in 0 179858 station_ip 5.119.195.192 179858 port 187 179858 unique_id port 179858 remote_ip 10.8.0.10 179863 username soleymani5056 179863 mac 179863 bytes_out 333476 179863 bytes_in 2187007 179863 station_ip 5.119.126.132 179863 port 178 179863 unique_id port 179863 remote_ip 10.8.0.226 179867 username barzegar 179867 mac 179867 bytes_out 0 179867 bytes_in 0 179867 station_ip 5.119.195.192 179867 port 178 179867 unique_id port 179867 remote_ip 10.8.0.10 179869 username rajaei 179869 kill_reason Another user logged on this global unique id 179869 mac 179869 bytes_out 0 179869 bytes_in 0 179869 station_ip 5.134.151.134 179869 port 187 179869 unique_id port 179869 remote_ip 10.8.0.218 179871 username Mahin 179871 kill_reason Relative expiration date has reached 179871 mac 179871 bytes_out 0 179871 bytes_in 0 179871 station_ip 5.119.59.152 179871 port 178 179871 unique_id port 179874 username zahra1101 179874 mac 179874 bytes_out 449059 179874 bytes_in 2003131 179874 station_ip 5.119.116.59 179874 port 180 179874 unique_id port 179874 remote_ip 10.8.0.190 179875 username alikomsari 179875 mac 179875 bytes_out 3854211 179875 bytes_in 10718929 179875 station_ip 5.120.174.237 179875 port 181 179875 unique_id port 179875 remote_ip 10.8.0.214 179876 username zahra1101 179876 kill_reason Maximum check online fails reached 179876 mac 179876 bytes_out 0 179876 bytes_in 0 179876 station_ip 5.119.116.59 179876 port 178 179876 unique_id port 179877 username malekpoir 179877 mac 179877 bytes_out 1629454 179877 bytes_in 17399383 179877 station_ip 5.119.86.125 179877 port 176 179877 unique_id port 179877 remote_ip 10.8.0.18 179882 username khademi 179882 mac 179882 bytes_out 1430362 179882 bytes_in 6011704 179882 station_ip 83.123.54.146 179882 port 174 179882 unique_id port 179882 remote_ip 10.8.0.14 179883 username nilufarrajaei 179883 mac 179883 bytes_out 111440 179883 bytes_in 213834 179883 station_ip 83.123.8.75 179883 port 190 179883 unique_id port 179883 remote_ip 10.8.0.194 179884 username rezaei 179884 mac 179884 bytes_out 1834193 179884 bytes_in 18772986 179884 station_ip 5.120.68.177 179884 port 181 179884 unique_id port 179884 remote_ip 10.8.0.198 179890 username farhad3 179890 mac 179890 bytes_out 3375 179890 bytes_in 3862 179890 station_ip 5.119.101.14 179890 port 181 179890 unique_id port 179890 remote_ip 10.8.0.222 179894 username soleymani5056 179894 mac 179894 bytes_out 126173 179894 bytes_in 414943 179894 station_ip 5.119.65.115 179894 port 176 179894 unique_id port 179894 remote_ip 10.8.0.226 179895 username barzegar 179895 mac 179895 bytes_out 2903 179895 bytes_in 4996 179895 station_ip 5.119.195.192 179895 port 192 179895 unique_id port 179895 remote_ip 10.8.0.10 179896 username ahmadi1 179896 mac 179896 bytes_out 0 179896 bytes_in 0 179896 station_ip 83.123.114.171 179896 port 176 179896 unique_id port 179896 remote_ip 10.8.0.94 179897 username rajaei 179897 mac 179897 bytes_out 0 179897 bytes_in 0 179897 station_ip 5.134.151.134 179897 port 187 179897 unique_id port 179899 username ahmadi1 179899 mac 179899 bytes_out 1997 179899 bytes_in 4274 179899 station_ip 83.123.114.171 179899 port 187 179860 bytes_out 2604 179860 bytes_in 4804 179860 station_ip 5.119.195.192 179860 port 190 179860 unique_id port 179860 remote_ip 10.8.0.10 179862 username alihosseini1 179862 mac 179862 bytes_out 588123 179862 bytes_in 4107838 179862 station_ip 5.120.89.39 179862 port 189 179862 unique_id port 179862 remote_ip 10.8.0.234 179864 username alihosseini1 179864 mac 179864 bytes_out 0 179864 bytes_in 0 179864 station_ip 5.120.89.39 179864 port 74 179864 unique_id port 179864 remote_ip 10.8.0.234 179866 username barzegar 179866 mac 179866 bytes_out 0 179866 bytes_in 0 179866 station_ip 5.119.195.192 179866 port 74 179866 unique_id port 179866 remote_ip 10.8.0.10 179873 username aminvpn 179873 unique_id port 179873 terminate_cause Lost-Carrier 179873 bytes_out 1136921 179873 bytes_in 20309128 179873 station_ip 83.123.108.145 179873 port 15728771 179873 nas_port_type Virtual 179873 remote_ip 5.5.5.216 179879 username barzegar 179879 mac 179879 bytes_out 0 179879 bytes_in 0 179879 station_ip 5.119.195.192 179879 port 176 179879 unique_id port 179879 remote_ip 10.8.0.10 179881 username farhad3 179881 kill_reason Another user logged on this global unique id 179881 mac 179881 bytes_out 0 179881 bytes_in 0 179881 station_ip 5.119.101.14 179881 port 188 179881 unique_id port 179888 username farhad3 179888 mac 179888 bytes_out 140051 179888 bytes_in 426386 179888 station_ip 5.119.101.14 179888 port 176 179888 unique_id port 179888 remote_ip 10.8.0.222 179889 username barzegar 179889 mac 179889 bytes_out 2628 179889 bytes_in 4921 179889 station_ip 5.119.195.192 179889 port 176 179889 unique_id port 179889 remote_ip 10.8.0.10 179891 username barzegar 179891 mac 179891 bytes_out 4850 179891 bytes_in 6365 179891 station_ip 5.119.195.192 179891 port 176 179891 unique_id port 179891 remote_ip 10.8.0.10 179893 username shadkam 179893 mac 179893 bytes_out 848302 179893 bytes_in 12563692 179893 station_ip 83.123.45.225 179893 port 188 179893 unique_id port 179893 remote_ip 10.8.0.74 179902 username tahmorsi 179902 mac 179902 bytes_out 0 179902 bytes_in 0 179902 station_ip 86.57.21.237 179902 port 174 179902 unique_id port 179902 remote_ip 10.8.0.6 179903 username barzegar 179903 mac 179903 bytes_out 12922 179903 bytes_in 19153 179903 station_ip 5.119.195.192 179903 port 188 179903 unique_id port 179903 remote_ip 10.8.0.10 179904 username farhad3 179904 mac 179904 bytes_out 3609295 179904 bytes_in 47645373 179904 station_ip 5.119.101.14 179904 port 181 179904 unique_id port 179904 remote_ip 10.8.0.222 179906 username hosseine 179906 kill_reason Another user logged on this global unique id 179906 mac 179906 bytes_out 0 179906 bytes_in 0 179906 station_ip 83.123.92.83 179906 port 179 179906 unique_id port 179906 remote_ip 10.8.0.54 179907 username sedighe 179907 mac 179907 bytes_out 35846 179907 bytes_in 41989 179907 station_ip 83.123.53.214 179907 port 187 179907 unique_id port 179907 remote_ip 10.8.0.46 179912 username barzegar 179912 mac 179912 bytes_out 467276 179912 bytes_in 1183568 179912 station_ip 5.119.195.192 179912 port 181 179912 unique_id port 179912 remote_ip 10.8.0.10 179913 username barzegar 179913 mac 179913 bytes_out 0 179913 bytes_in 0 179913 station_ip 5.119.195.192 179913 port 181 179913 unique_id port 179913 remote_ip 10.8.0.10 179914 username barzegar 179914 mac 179914 bytes_out 0 179914 bytes_in 0 179914 station_ip 5.119.195.192 179914 port 187 179914 unique_id port 179914 remote_ip 10.8.0.10 179868 unique_id port 179868 remote_ip 10.8.0.10 179870 username alihosseini1 179870 mac 179870 bytes_out 304861 179870 bytes_in 3333909 179870 station_ip 5.120.89.39 179870 port 178 179870 unique_id port 179870 remote_ip 10.8.0.234 179872 username Mahin 179872 kill_reason Relative expiration date has reached 179872 mac 179872 bytes_out 0 179872 bytes_in 0 179872 station_ip 5.119.59.152 179872 port 178 179872 unique_id port 179878 username barzegar 179878 mac 179878 bytes_out 0 179878 bytes_in 0 179878 station_ip 5.119.195.192 179878 port 189 179878 unique_id port 179878 remote_ip 10.8.0.10 179880 username saeeddamghani 179880 unique_id port 179880 terminate_cause User-Request 179880 bytes_out 339388 179880 bytes_in 5595068 179880 station_ip 83.123.68.116 179880 port 15728773 179880 nas_port_type Virtual 179880 remote_ip 5.5.5.214 179885 username shadkam 179885 mac 179885 bytes_out 216988 179885 bytes_in 1261389 179885 station_ip 83.123.51.26 179885 port 176 179885 unique_id port 179885 remote_ip 10.8.0.74 179886 username barzegar 179886 mac 179886 bytes_out 0 179886 bytes_in 0 179886 station_ip 5.119.195.192 179886 port 176 179886 unique_id port 179886 remote_ip 10.8.0.10 179887 username farhad3 179887 mac 179887 bytes_out 0 179887 bytes_in 0 179887 station_ip 5.119.101.14 179887 port 188 179887 unique_id port 179892 username ahmadi1 179892 mac 179892 bytes_out 0 179892 bytes_in 0 179892 station_ip 83.123.114.171 179892 port 190 179892 unique_id port 179892 remote_ip 10.8.0.94 179898 username fezealinaghi 179898 kill_reason Another user logged on this global unique id 179898 mac 179898 bytes_out 0 179898 bytes_in 0 179898 station_ip 83.123.60.108 179898 port 185 179898 unique_id port 179898 remote_ip 10.8.0.202 179900 username barzegar 179900 mac 179900 bytes_out 2546 179900 bytes_in 4646 179900 station_ip 5.119.195.192 179900 port 176 179900 unique_id port 179900 remote_ip 10.8.0.10 179909 username kordestani 179909 kill_reason Another user logged on this global unique id 179909 mac 179909 bytes_out 0 179909 bytes_in 0 179909 station_ip 151.235.113.113 179909 port 186 179909 unique_id port 179909 remote_ip 10.8.0.130 179915 username malekpoir 179915 mac 179915 bytes_out 13742 179915 bytes_in 17575 179915 station_ip 5.119.86.125 179915 port 190 179915 unique_id port 179915 remote_ip 10.8.0.18 179918 username kordestani 179918 mac 179918 bytes_out 0 179918 bytes_in 0 179918 station_ip 151.235.113.113 179918 port 186 179918 unique_id port 179924 username aminvpn 179924 unique_id port 179924 terminate_cause Lost-Carrier 179924 bytes_out 1293595 179924 bytes_in 20589634 179924 station_ip 5.119.244.142 179924 port 15728776 179924 nas_port_type Virtual 179924 remote_ip 5.5.5.219 179928 username mansour 179928 mac 179928 bytes_out 1460319 179928 bytes_in 17595770 179928 station_ip 5.202.97.228 179928 port 176 179928 unique_id port 179928 remote_ip 10.8.0.206 179932 username yaghobi 179932 mac 179932 bytes_out 1286822 179932 bytes_in 6701334 179932 station_ip 83.123.70.59 179932 port 187 179932 unique_id port 179932 remote_ip 10.8.0.138 179934 username motamedi9772 179934 mac 179934 bytes_out 167619 179934 bytes_in 975854 179934 station_ip 83.123.35.239 179934 port 185 179934 unique_id port 179934 remote_ip 10.8.0.154 179941 username shadkam 179941 mac 179941 bytes_out 616402 179941 bytes_in 5937224 179941 station_ip 83.123.37.21 179941 port 185 179941 unique_id port 179941 remote_ip 10.8.0.74 179943 username barzegar 179943 mac 179899 unique_id port 179899 remote_ip 10.8.0.94 179901 username malekpoir 179901 mac 179901 bytes_out 31994 179901 bytes_in 40456 179901 station_ip 5.119.86.125 179901 port 191 179901 unique_id port 179901 remote_ip 10.8.0.18 179905 username majidsarmast 179905 kill_reason Another user logged on this global unique id 179905 mac 179905 bytes_out 0 179905 bytes_in 0 179905 station_ip 83.123.5.192 179905 port 74 179905 unique_id port 179905 remote_ip 10.8.0.170 179908 username soleymani5056 179908 mac 179908 bytes_out 142392 179908 bytes_in 412910 179908 station_ip 5.119.166.110 179908 port 174 179908 unique_id port 179908 remote_ip 10.8.0.226 179910 username fezealinaghi 179910 kill_reason Another user logged on this global unique id 179910 mac 179910 bytes_out 0 179910 bytes_in 0 179910 station_ip 83.123.60.108 179910 port 185 179910 unique_id port 179911 username fezealinaghi 179911 mac 179911 bytes_out 0 179911 bytes_in 0 179911 station_ip 83.123.60.108 179911 port 185 179911 unique_id port 179916 username tahmorsi 179916 mac 179916 bytes_out 41113570 179916 bytes_in 4042475 179916 station_ip 86.57.21.237 179916 port 176 179916 unique_id port 179916 remote_ip 10.8.0.238 179917 username barzegar 179917 mac 179917 bytes_out 0 179917 bytes_in 0 179917 station_ip 5.119.195.192 179917 port 187 179917 unique_id port 179917 remote_ip 10.8.0.10 179919 username majidsarmast 179919 kill_reason Another user logged on this global unique id 179919 mac 179919 bytes_out 0 179919 bytes_in 0 179919 station_ip 83.123.5.192 179919 port 74 179919 unique_id port 179920 username kordestani 179920 mac 179920 bytes_out 54260 179920 bytes_in 236850 179920 station_ip 151.235.96.179 179920 port 192 179920 unique_id port 179920 remote_ip 10.8.0.130 179922 username majidsarmast 179922 mac 179922 bytes_out 0 179922 bytes_in 0 179922 station_ip 83.123.5.192 179922 port 74 179922 unique_id port 179926 username mostafa_es78 179926 kill_reason Another user logged on this global unique id 179926 mac 179926 bytes_out 0 179926 bytes_in 0 179926 station_ip 113.203.69.83 179926 port 181 179926 unique_id port 179926 remote_ip 10.8.0.34 179930 username aminvpn 179930 mac 179930 bytes_out 436705 179930 bytes_in 1341590 179930 station_ip 5.120.81.85 179930 port 190 179930 unique_id port 179930 remote_ip 10.8.0.58 179933 username aminvpn 179933 unique_id port 179933 terminate_cause Lost-Carrier 179933 bytes_out 5646326 179933 bytes_in 119258990 179933 station_ip 5.120.29.137 179933 port 15728775 179933 nas_port_type Virtual 179933 remote_ip 5.5.5.221 179935 username hashtadani4 179935 mac 179935 bytes_out 264590 179935 bytes_in 3331671 179935 station_ip 83.123.48.37 179935 port 176 179935 unique_id port 179935 remote_ip 10.8.0.22 179938 username hashtadani4 179938 mac 179938 bytes_out 0 179938 bytes_in 0 179938 station_ip 83.123.48.37 179938 port 74 179938 unique_id port 179938 remote_ip 10.8.0.22 179940 username hashtadani4 179940 mac 179940 bytes_out 0 179940 bytes_in 0 179940 station_ip 83.123.48.37 179940 port 74 179940 unique_id port 179940 remote_ip 10.8.0.22 179944 username hashtadani4 179944 mac 179944 bytes_out 0 179944 bytes_in 0 179944 station_ip 83.123.48.37 179944 port 185 179944 unique_id port 179944 remote_ip 10.8.0.22 179948 username barzegar 179948 mac 179948 bytes_out 0 179948 bytes_in 0 179948 station_ip 5.119.195.192 179948 port 187 179948 unique_id port 179948 remote_ip 10.8.0.10 179949 username hashtadani4 179949 mac 179949 bytes_out 0 179949 bytes_in 0 179921 username fezealinaghi 179921 mac 179921 bytes_out 1120322 179921 bytes_in 16193158 179921 station_ip 83.123.92.108 179921 port 186 179921 unique_id port 179921 remote_ip 10.8.0.202 179923 username shadkam 179923 mac 179923 bytes_out 1503095 179923 bytes_in 1122814 179923 station_ip 83.123.7.51 179923 port 193 179923 unique_id port 179923 remote_ip 10.8.0.74 179925 username rahim 179925 mac 179925 bytes_out 84412 179925 bytes_in 96832 179925 station_ip 5.119.150.61 179925 port 74 179925 unique_id port 179925 remote_ip 10.8.0.134 179927 username sedighe 179927 mac 179927 bytes_out 103534 179927 bytes_in 168808 179927 station_ip 83.123.53.214 179927 port 185 179927 unique_id port 179927 remote_ip 10.8.0.46 179929 username kalantary6037 179929 mac 179929 bytes_out 275233 179929 bytes_in 1279923 179929 station_ip 83.123.50.212 179929 port 74 179929 unique_id port 179929 remote_ip 10.8.0.50 179931 username barzegar 179931 kill_reason Another user logged on this global unique id 179931 mac 179931 bytes_out 0 179931 bytes_in 0 179931 station_ip 5.119.195.192 179931 port 191 179931 unique_id port 179931 remote_ip 10.8.0.10 179936 username ahmadi1 179936 mac 179936 bytes_out 125491 179936 bytes_in 2194117 179936 station_ip 83.123.114.171 179936 port 74 179936 unique_id port 179936 remote_ip 10.8.0.94 179937 username mostafa_es78 179937 mac 179937 bytes_out 0 179937 bytes_in 0 179937 station_ip 113.203.69.83 179937 port 181 179937 unique_id port 179939 username hashtadani4 179939 kill_reason Maximum check online fails reached 179939 mac 179939 bytes_out 0 179939 bytes_in 0 179939 station_ip 83.123.48.37 179939 port 176 179939 unique_id port 179942 username hashtadani4 179942 mac 179942 bytes_out 0 179942 bytes_in 0 179942 station_ip 83.123.48.37 179942 port 181 179942 unique_id port 179942 remote_ip 10.8.0.22 179946 username hashtadani4 179946 kill_reason Maximum check online fails reached 179946 mac 179946 bytes_out 0 179946 bytes_in 0 179946 station_ip 83.123.48.37 179946 port 181 179946 unique_id port 179947 username hashtadani4 179947 mac 179947 bytes_out 0 179947 bytes_in 0 179947 station_ip 83.123.48.37 179947 port 185 179947 unique_id port 179947 remote_ip 10.8.0.22 179953 username hashtadani4 179953 kill_reason Maximum check online fails reached 179953 mac 179953 bytes_out 0 179953 bytes_in 0 179953 station_ip 83.123.48.37 179953 port 185 179953 unique_id port 179957 username hashtadani4 179957 mac 179957 bytes_out 0 179957 bytes_in 0 179957 station_ip 83.123.48.37 179957 port 190 179957 unique_id port 179957 remote_ip 10.8.0.22 179963 username hashtadani4 179963 mac 179963 bytes_out 0 179963 bytes_in 0 179963 station_ip 83.123.48.37 179963 port 186 179963 unique_id port 179963 remote_ip 10.8.0.22 179965 username saeed9658 179965 kill_reason Relative expiration date has reached 179965 mac 179965 bytes_out 0 179965 bytes_in 0 179965 station_ip 5.120.130.240 179965 port 187 179965 unique_id port 179970 username yaghobi 179970 mac 179970 bytes_out 349612 179970 bytes_in 1004164 179970 station_ip 83.123.51.205 179970 port 184 179970 unique_id port 179970 remote_ip 10.8.0.138 179971 username hashtadani4 179971 mac 179971 bytes_out 0 179971 bytes_in 0 179971 station_ip 83.123.48.37 179971 port 194 179971 unique_id port 179971 remote_ip 10.8.0.22 179974 username hashtadani4 179974 kill_reason Maximum check online fails reached 179974 mac 179974 bytes_out 0 179974 bytes_in 0 179974 station_ip 83.123.48.37 179974 port 194 179943 bytes_out 0 179943 bytes_in 0 179943 station_ip 5.119.195.192 179943 port 191 179943 unique_id port 179945 username godarzi 179945 kill_reason Another user logged on this global unique id 179945 mac 179945 bytes_out 0 179945 bytes_in 0 179945 station_ip 5.202.22.5 179945 port 184 179945 unique_id port 179945 remote_ip 10.8.0.38 179950 username yaghobi 179950 mac 179950 bytes_out 769779 179950 bytes_in 2911287 179950 station_ip 83.123.70.59 179950 port 186 179950 unique_id port 179950 remote_ip 10.8.0.138 179955 username hashtadani4 179955 mac 179955 bytes_out 0 179955 bytes_in 0 179955 station_ip 83.123.48.37 179955 port 190 179955 unique_id port 179955 remote_ip 10.8.0.22 179956 username mohammadjavad 179956 mac 179956 bytes_out 378144 179956 bytes_in 3946541 179956 station_ip 83.123.104.111 179956 port 186 179956 unique_id port 179956 remote_ip 10.8.0.110 179958 username hashtadani4 179958 mac 179958 bytes_out 0 179958 bytes_in 0 179958 station_ip 83.123.48.37 179958 port 190 179958 unique_id port 179958 remote_ip 10.8.0.22 179960 username mohammadjavad 179960 mac 179960 bytes_out 23945 179960 bytes_in 29407 179960 station_ip 83.123.104.111 179960 port 186 179960 unique_id port 179960 remote_ip 10.8.0.110 179964 username saeed9658 179964 kill_reason Relative expiration date has reached 179964 mac 179964 bytes_out 0 179964 bytes_in 0 179964 station_ip 5.120.130.240 179964 port 186 179964 unique_id port 179966 username hashtadani4 179966 mac 179966 bytes_out 0 179966 bytes_in 0 179966 station_ip 83.123.48.37 179966 port 186 179966 unique_id port 179966 remote_ip 10.8.0.22 179967 username barzegar 179967 mac 179967 bytes_out 0 179967 bytes_in 0 179967 station_ip 5.119.195.192 179967 port 187 179967 unique_id port 179967 remote_ip 10.8.0.10 179968 username hashtadani4 179968 mac 179968 bytes_out 0 179968 bytes_in 0 179968 station_ip 83.123.48.37 179968 port 191 179968 unique_id port 179968 remote_ip 10.8.0.22 179969 username hashtadani4 179969 mac 179969 bytes_out 0 179969 bytes_in 0 179969 station_ip 83.123.48.37 179969 port 191 179969 unique_id port 179969 remote_ip 10.8.0.22 179975 username nilufarrajaei 179975 kill_reason Another user logged on this global unique id 179975 mac 179975 bytes_out 0 179975 bytes_in 0 179975 station_ip 83.123.73.91 179975 port 174 179975 unique_id port 179975 remote_ip 10.8.0.194 179976 username farhad3 179976 mac 179976 bytes_out 5729816 179976 bytes_in 37825279 179976 station_ip 5.119.101.14 179976 port 192 179976 unique_id port 179976 remote_ip 10.8.0.222 179977 username sedighe 179977 mac 179977 bytes_out 776731 179977 bytes_in 3785374 179977 station_ip 83.123.50.84 179977 port 74 179977 unique_id port 179977 remote_ip 10.8.0.46 179978 username shadkam 179978 mac 179978 bytes_out 75708 179978 bytes_in 509426 179978 station_ip 83.123.117.77 179978 port 192 179978 unique_id port 179978 remote_ip 10.8.0.74 179980 username godarzi 179980 mac 179980 bytes_out 654674 179980 bytes_in 7294927 179980 station_ip 5.202.22.5 179980 port 190 179980 unique_id port 179980 remote_ip 10.8.0.38 179985 username yaghobi 179985 mac 179985 bytes_out 336125 179985 bytes_in 1369990 179985 station_ip 83.123.40.39 179985 port 74 179985 unique_id port 179985 remote_ip 10.8.0.138 179989 username farhad3 179989 mac 179989 bytes_out 2036503 179989 bytes_in 5355725 179989 station_ip 5.119.101.14 179989 port 190 179989 unique_id port 179989 remote_ip 10.8.0.222 179994 username barzegar 179949 station_ip 83.123.48.37 179949 port 185 179949 unique_id port 179949 remote_ip 10.8.0.22 179951 username hashtadani4 179951 mac 179951 bytes_out 0 179951 bytes_in 0 179951 station_ip 83.123.48.37 179951 port 190 179951 unique_id port 179951 remote_ip 10.8.0.22 179952 username godarzi 179952 mac 179952 bytes_out 0 179952 bytes_in 0 179952 station_ip 5.202.22.5 179952 port 184 179952 unique_id port 179954 username hashtadani4 179954 mac 179954 bytes_out 0 179954 bytes_in 0 179954 station_ip 83.123.48.37 179954 port 190 179954 unique_id port 179954 remote_ip 10.8.0.22 179959 username barzegar 179959 mac 179959 bytes_out 2415325 179959 bytes_in 2176079 179959 station_ip 5.119.195.192 179959 port 187 179959 unique_id port 179959 remote_ip 10.8.0.10 179961 username hashtadani4 179961 mac 179961 bytes_out 0 179961 bytes_in 0 179961 station_ip 83.123.48.37 179961 port 186 179961 unique_id port 179961 remote_ip 10.8.0.22 179962 username hashtadani4 179962 mac 179962 bytes_out 0 179962 bytes_in 0 179962 station_ip 83.123.48.37 179962 port 186 179962 unique_id port 179962 remote_ip 10.8.0.22 179972 username hashtadani4 179972 kill_reason Maximum number of concurrent logins reached 179972 mac 179972 bytes_out 0 179972 bytes_in 0 179972 station_ip 83.123.48.37 179972 port 195 179972 unique_id port 179973 username hashtadani4 179973 kill_reason Maximum check online fails reached 179973 mac 179973 bytes_out 0 179973 bytes_in 0 179973 station_ip 83.123.48.37 179973 port 191 179973 unique_id port 179981 username barzegar 179981 mac 179981 bytes_out 725435 179981 bytes_in 420431 179981 station_ip 5.119.195.192 179981 port 186 179981 unique_id port 179981 remote_ip 10.8.0.10 179984 username barzegar 179984 mac 179984 bytes_out 3760 179984 bytes_in 5363 179984 station_ip 5.119.195.192 179984 port 190 179984 unique_id port 179984 remote_ip 10.8.0.10 179986 username malekpoir 179986 mac 179986 bytes_out 4212246 179986 bytes_in 37938023 179986 station_ip 5.119.86.125 179986 port 188 179986 unique_id port 179986 remote_ip 10.8.0.18 179990 username aminvpn 179990 unique_id port 179990 terminate_cause Lost-Carrier 179990 bytes_out 3529676 179990 bytes_in 37775889 179990 station_ip 83.123.108.145 179990 port 15728772 179990 nas_port_type Virtual 179990 remote_ip 5.5.5.215 179992 username jafari 179992 kill_reason Another user logged on this global unique id 179992 mac 179992 bytes_out 0 179992 bytes_in 0 179992 station_ip 89.47.144.160 179992 port 184 179992 unique_id port 179999 username mohammadjavad 179999 mac 179999 bytes_out 1902 179999 bytes_in 3761 179999 station_ip 83.123.104.111 179999 port 196 179999 unique_id port 179999 remote_ip 10.8.0.110 180000 username mohammadjavad 180000 mac 180000 bytes_out 0 180000 bytes_in 0 180000 station_ip 83.123.104.111 180000 port 196 180000 unique_id port 180000 remote_ip 10.8.0.110 180003 username mohammadjavad 180003 mac 180003 bytes_out 1780 180003 bytes_in 4212 180003 station_ip 83.123.104.111 180003 port 196 180003 unique_id port 180003 remote_ip 10.8.0.110 180010 username ahmadi1 180010 mac 180010 bytes_out 0 180010 bytes_in 0 180010 station_ip 83.123.114.171 180010 port 190 180010 unique_id port 180010 remote_ip 10.8.0.94 180011 username pourshad 180011 mac 180011 bytes_out 2818195 180011 bytes_in 34380835 180011 station_ip 5.120.22.67 180011 port 192 180011 unique_id port 180011 remote_ip 10.8.0.42 180012 username farhad3 180012 kill_reason Another user logged on this global unique id 180012 mac 179974 unique_id port 179979 username jafari 179979 kill_reason Another user logged on this global unique id 179979 mac 179979 bytes_out 0 179979 bytes_in 0 179979 station_ip 89.47.144.160 179979 port 184 179979 unique_id port 179979 remote_ip 10.8.0.86 179982 username yaghobi 179982 mac 179982 bytes_out 1195293 179982 bytes_in 8625201 179982 station_ip 83.123.40.39 179982 port 193 179982 unique_id port 179982 remote_ip 10.8.0.138 179983 username sedighe 179983 mac 179983 bytes_out 8378 179983 bytes_in 9317 179983 station_ip 83.123.109.80 179983 port 195 179983 unique_id port 179983 remote_ip 10.8.0.46 179987 username barzegar 179987 mac 179987 bytes_out 11418 179987 bytes_in 21527 179987 station_ip 5.119.195.192 179987 port 193 179987 unique_id port 179987 remote_ip 10.8.0.10 179988 username khalili2 179988 kill_reason Another user logged on this global unique id 179988 mac 179988 bytes_out 0 179988 bytes_in 0 179988 station_ip 5.119.99.166 179988 port 173 179988 unique_id port 179988 remote_ip 10.8.0.118 179991 username sedighe 179991 mac 179991 bytes_out 13372 179991 bytes_in 17064 179991 station_ip 83.123.109.80 179991 port 186 179991 unique_id port 179991 remote_ip 10.8.0.46 179993 username mohammadmahdi 179993 mac 179993 bytes_out 3022683 179993 bytes_in 28077303 179993 station_ip 5.119.127.95 179993 port 187 179993 unique_id port 179993 remote_ip 10.8.0.30 179995 username mostafa_es78 179995 mac 179995 bytes_out 501212 179995 bytes_in 2692189 179995 station_ip 113.203.69.83 179995 port 188 179995 unique_id port 179995 remote_ip 10.8.0.34 179996 username barzegar 179996 mac 179996 bytes_out 3452 179996 bytes_in 5327 179996 station_ip 5.119.195.192 179996 port 188 179996 unique_id port 179996 remote_ip 10.8.0.10 179998 username barzegar 179998 mac 179998 bytes_out 0 179998 bytes_in 0 179998 station_ip 5.119.195.192 179998 port 188 179998 unique_id port 179998 remote_ip 10.8.0.10 180004 username kalantary6037 180004 mac 180004 bytes_out 532791 180004 bytes_in 2207003 180004 station_ip 83.123.87.208 180004 port 193 180004 unique_id port 180004 remote_ip 10.8.0.50 180008 username nilufarrajaei 180008 kill_reason Another user logged on this global unique id 180008 mac 180008 bytes_out 0 180008 bytes_in 0 180008 station_ip 83.123.73.91 180008 port 174 180008 unique_id port 180014 username ahmadi1 180014 mac 180014 bytes_out 0 180014 bytes_in 0 180014 station_ip 83.123.114.171 180014 port 186 180014 unique_id port 180014 remote_ip 10.8.0.94 180015 username alirezazadeh 180015 unique_id port 180015 terminate_cause Lost-Carrier 180015 bytes_out 915010 180015 bytes_in 15729656 180015 station_ip 5.120.8.58 180015 port 15728777 180015 nas_port_type Virtual 180015 remote_ip 5.5.5.212 180021 username barzegar 180021 mac 180021 bytes_out 0 180021 bytes_in 0 180021 station_ip 5.119.195.192 180021 port 186 180021 unique_id port 180021 remote_ip 10.8.0.10 180025 username ahmadi1 180025 kill_reason Maximum check online fails reached 180025 mac 180025 bytes_out 0 180025 bytes_in 0 180025 station_ip 83.123.114.171 180025 port 193 180025 unique_id port 180029 username pourshad 180029 mac 180029 bytes_out 59370 180029 bytes_in 620011 180029 station_ip 5.120.22.67 180029 port 187 180029 unique_id port 180029 remote_ip 10.8.0.42 180030 username sedighe 180030 mac 180030 bytes_out 82945 180030 bytes_in 103609 180030 station_ip 83.123.107.118 180030 port 195 180030 unique_id port 180030 remote_ip 10.8.0.46 180031 username zahra1101 180031 mac 180031 bytes_out 0 179994 mac 179994 bytes_out 2793 179994 bytes_in 4892 179994 station_ip 5.119.195.192 179994 port 186 179994 unique_id port 179994 remote_ip 10.8.0.10 179997 username mohammadjavad 179997 mac 179997 bytes_out 0 179997 bytes_in 0 179997 station_ip 83.123.104.111 179997 port 188 179997 unique_id port 179997 remote_ip 10.8.0.110 180001 username ahmadi1 180001 mac 180001 bytes_out 1561201 180001 bytes_in 16514635 180001 station_ip 83.123.114.171 180001 port 190 180001 unique_id port 180001 remote_ip 10.8.0.94 180002 username ahmadi1 180002 mac 180002 bytes_out 0 180002 bytes_in 0 180002 station_ip 83.123.114.171 180002 port 190 180002 unique_id port 180002 remote_ip 10.8.0.94 180005 username jafari 180005 mac 180005 bytes_out 0 180005 bytes_in 0 180005 station_ip 89.47.144.160 180005 port 184 180005 unique_id port 180006 username kalantary6037 180006 mac 180006 bytes_out 173403 180006 bytes_in 1428031 180006 station_ip 83.123.87.208 180006 port 190 180006 unique_id port 180006 remote_ip 10.8.0.50 180007 username ahmadi1 180007 mac 180007 bytes_out 0 180007 bytes_in 0 180007 station_ip 83.123.114.171 180007 port 184 180007 unique_id port 180007 remote_ip 10.8.0.94 180009 username barzegar 180009 mac 180009 bytes_out 0 180009 bytes_in 0 180009 station_ip 5.119.195.192 180009 port 190 180009 unique_id port 180009 remote_ip 10.8.0.10 180016 username farhad3 180016 mac 180016 bytes_out 0 180016 bytes_in 0 180016 station_ip 5.119.101.14 180016 port 187 180016 unique_id port 180019 username pourshad 180019 mac 180019 bytes_out 289575 180019 bytes_in 1778093 180019 station_ip 5.120.22.67 180019 port 190 180019 unique_id port 180019 remote_ip 10.8.0.42 180024 username mohammadmahdi 180024 mac 180024 bytes_out 3831282 180024 bytes_in 47635481 180024 station_ip 5.119.127.95 180024 port 184 180024 unique_id port 180024 remote_ip 10.8.0.30 180026 username zahra1101 180026 mac 180026 bytes_out 4246663 180026 bytes_in 18162809 180026 station_ip 5.119.116.59 180026 port 180 180026 unique_id port 180026 remote_ip 10.8.0.190 180032 username zahra1101 180032 kill_reason Maximum check online fails reached 180032 mac 180032 bytes_out 0 180032 bytes_in 0 180032 station_ip 5.119.116.59 180032 port 186 180032 unique_id port 180036 username barzegar 180036 mac 180036 bytes_out 0 180036 bytes_in 0 180036 station_ip 5.119.195.192 180036 port 197 180036 unique_id port 180036 remote_ip 10.8.0.10 180038 username zahra1101 180038 mac 180038 bytes_out 4236 180038 bytes_in 4824 180038 station_ip 5.119.116.59 180038 port 198 180038 unique_id port 180038 remote_ip 10.8.0.190 180039 username hosseine 180039 mac 180039 bytes_out 0 180039 bytes_in 0 180039 station_ip 83.123.92.83 180039 port 179 180039 unique_id port 180047 username ahmadi1 180047 mac 180047 bytes_out 0 180047 bytes_in 0 180047 station_ip 83.123.114.171 180047 port 192 180047 unique_id port 180047 remote_ip 10.8.0.94 180049 username jafari 180049 mac 180049 bytes_out 2297591 180049 bytes_in 22584045 180049 station_ip 89.47.144.160 180049 port 197 180049 unique_id port 180049 remote_ip 10.8.0.86 180050 username farhad3 180050 mac 180050 bytes_out 0 180050 bytes_in 0 180050 station_ip 5.119.101.14 180050 port 184 180050 unique_id port 180051 username zahra1101 180051 kill_reason Maximum check online fails reached 180051 mac 180051 bytes_out 0 180051 bytes_in 0 180051 station_ip 5.119.116.59 180051 port 192 180012 bytes_out 0 180012 bytes_in 0 180012 station_ip 5.119.101.14 180012 port 187 180012 unique_id port 180012 remote_ip 10.8.0.222 180013 username mostafa_es78 180013 mac 180013 bytes_out 157620 180013 bytes_in 251212 180013 station_ip 113.203.69.83 180013 port 186 180013 unique_id port 180013 remote_ip 10.8.0.34 180017 username godarzi 180017 mac 180017 bytes_out 176307 180017 bytes_in 608839 180017 station_ip 5.120.82.196 180017 port 186 180017 unique_id port 180017 remote_ip 10.8.0.38 180018 username godarzi 180018 mac 180018 bytes_out 0 180018 bytes_in 0 180018 station_ip 5.120.82.196 180018 port 187 180018 unique_id port 180018 remote_ip 10.8.0.38 180020 username godarzi 180020 mac 180020 bytes_out 45189 180020 bytes_in 77777 180020 station_ip 5.120.82.196 180020 port 186 180020 unique_id port 180020 remote_ip 10.8.0.38 180022 username motamedi9772 180022 mac 180022 bytes_out 0 180022 bytes_in 0 180022 station_ip 83.123.51.155 180022 port 192 180022 unique_id port 180022 remote_ip 10.8.0.154 180023 username farhad3 180023 mac 180023 bytes_out 296986 180023 bytes_in 1074459 180023 station_ip 5.119.101.14 180023 port 190 180023 unique_id port 180023 remote_ip 10.8.0.222 180027 username zahra1101 180027 mac 180027 bytes_out 0 180027 bytes_in 0 180027 station_ip 5.119.116.59 180027 port 180 180027 unique_id port 180027 remote_ip 10.8.0.190 180028 username ahmadi1 180028 mac 180028 bytes_out 0 180028 bytes_in 0 180028 station_ip 83.123.114.171 180028 port 180 180028 unique_id port 180028 remote_ip 10.8.0.94 180033 username ahmadi1 180033 mac 180033 bytes_out 0 180033 bytes_in 0 180033 station_ip 83.123.114.171 180033 port 190 180033 unique_id port 180033 remote_ip 10.8.0.94 180034 username khademi 180034 kill_reason Another user logged on this global unique id 180034 mac 180034 bytes_out 0 180034 bytes_in 0 180034 station_ip 83.123.54.146 180034 port 189 180034 unique_id port 180034 remote_ip 10.8.0.14 180041 username farhad3 180041 kill_reason Another user logged on this global unique id 180041 mac 180041 bytes_out 0 180041 bytes_in 0 180041 station_ip 5.119.101.14 180041 port 184 180041 unique_id port 180041 remote_ip 10.8.0.222 180044 username ahmadi1 180044 mac 180044 bytes_out 0 180044 bytes_in 0 180044 station_ip 83.123.114.171 180044 port 179 180044 unique_id port 180044 remote_ip 10.8.0.94 180046 username alihosseini1 180046 mac 180046 bytes_out 0 180046 bytes_in 0 180046 station_ip 5.119.51.199 180046 port 190 180046 unique_id port 180046 remote_ip 10.8.0.234 180052 username barzegar 180052 mac 180052 bytes_out 0 180052 bytes_in 0 180052 station_ip 5.119.195.192 180052 port 197 180052 unique_id port 180052 remote_ip 10.8.0.10 180053 username zahra1101 180053 mac 180053 bytes_out 0 180053 bytes_in 0 180053 station_ip 5.119.116.59 180053 port 196 180053 unique_id port 180053 remote_ip 10.8.0.190 180054 username yaghobi 180054 mac 180054 bytes_out 187936 180054 bytes_in 121172 180054 station_ip 83.123.125.213 180054 port 179 180054 unique_id port 180054 remote_ip 10.8.0.138 180057 username jafari 180057 mac 180057 bytes_out 1103087 180057 bytes_in 4189711 180057 station_ip 89.47.144.160 180057 port 190 180057 unique_id port 180057 remote_ip 10.8.0.86 180060 username kordestani 180060 mac 180060 bytes_out 1004762 180060 bytes_in 1645420 180060 station_ip 151.235.86.240 180060 port 188 180060 unique_id port 180060 remote_ip 10.8.0.130 180061 username khademi 180031 bytes_in 0 180031 station_ip 5.119.116.59 180031 port 190 180031 unique_id port 180031 remote_ip 10.8.0.190 180035 username zahra1101 180035 mac 180035 bytes_out 0 180035 bytes_in 0 180035 station_ip 5.119.116.59 180035 port 195 180035 unique_id port 180035 remote_ip 10.8.0.190 180037 username ahmadi1 180037 mac 180037 bytes_out 8766 180037 bytes_in 14847 180037 station_ip 83.123.114.171 180037 port 196 180037 unique_id port 180037 remote_ip 10.8.0.94 180040 username zahra1101 180040 mac 180040 bytes_out 0 180040 bytes_in 0 180040 station_ip 5.119.116.59 180040 port 179 180040 unique_id port 180040 remote_ip 10.8.0.190 180042 username saeeddamghani 180042 mac 180042 bytes_out 1049979 180042 bytes_in 8074130 180042 station_ip 5.119.165.92 180042 port 192 180042 unique_id port 180042 remote_ip 10.8.0.122 180043 username alihosseini1 180043 mac 180043 bytes_out 962944 180043 bytes_in 6979511 180043 station_ip 5.119.51.199 180043 port 190 180043 unique_id port 180043 remote_ip 10.8.0.234 180045 username zahra1101 180045 mac 180045 bytes_out 0 180045 bytes_in 0 180045 station_ip 5.119.116.59 180045 port 179 180045 unique_id port 180045 remote_ip 10.8.0.190 180048 username yaghobi 180048 mac 180048 bytes_out 560891 180048 bytes_in 2045562 180048 station_ip 83.123.125.213 180048 port 195 180048 unique_id port 180048 remote_ip 10.8.0.138 180055 username saeeddamghani 180055 mac 180055 bytes_out 0 180055 bytes_in 0 180055 station_ip 5.119.165.92 180055 port 198 180055 unique_id port 180055 remote_ip 10.8.0.122 180058 username alihosseini1 180058 mac 180058 bytes_out 514641 180058 bytes_in 2591669 180058 station_ip 5.119.51.199 180058 port 195 180058 unique_id port 180058 remote_ip 10.8.0.234 180059 username pourshad 180059 mac 180059 bytes_out 411514 180059 bytes_in 2865819 180059 station_ip 5.120.22.67 180059 port 180 180059 unique_id port 180059 remote_ip 10.8.0.42 180065 username shadkam 180065 mac 180065 bytes_out 2262125 180065 bytes_in 23847828 180065 station_ip 83.123.26.125 180065 port 196 180065 unique_id port 180065 remote_ip 10.8.0.74 180067 username houshang 180067 mac 180067 bytes_out 307777 180067 bytes_in 467476 180067 station_ip 5.119.216.181 180067 port 179 180067 unique_id port 180067 remote_ip 10.8.0.82 180078 username zahra1101 180078 mac 180078 bytes_out 0 180078 bytes_in 0 180078 station_ip 5.119.116.59 180078 port 195 180078 unique_id port 180078 remote_ip 10.8.0.190 180079 username soleymani5056 180079 mac 180079 bytes_out 125574 180079 bytes_in 662495 180079 station_ip 5.120.90.128 180079 port 180 180079 unique_id port 180079 remote_ip 10.8.0.226 180082 username saeeddamghani 180082 mac 180082 bytes_out 0 180082 bytes_in 0 180082 station_ip 5.119.165.92 180082 port 200 180082 unique_id port 180082 remote_ip 10.8.0.122 180083 username yaghobi 180083 mac 180083 bytes_out 1253601 180083 bytes_in 9433967 180083 station_ip 83.123.125.213 180083 port 74 180083 unique_id port 180083 remote_ip 10.8.0.138 180094 username zahra1101 180094 mac 180094 bytes_out 0 180094 bytes_in 0 180094 station_ip 5.119.116.59 180094 port 199 180094 unique_id port 180094 remote_ip 10.8.0.190 180096 username yaghobi 180096 mac 180096 bytes_out 366949 180096 bytes_in 1987273 180096 station_ip 83.123.125.213 180096 port 198 180096 unique_id port 180096 remote_ip 10.8.0.138 180102 username shadkam 180102 mac 180102 bytes_out 80921 180102 bytes_in 950798 180051 unique_id port 180056 username saeeddamghani 180056 mac 180056 bytes_out 0 180056 bytes_in 0 180056 station_ip 5.119.165.92 180056 port 198 180056 unique_id port 180056 remote_ip 10.8.0.122 180064 username zahra1101 180064 mac 180064 bytes_out 0 180064 bytes_in 0 180064 station_ip 5.119.116.59 180064 port 74 180064 unique_id port 180064 remote_ip 10.8.0.190 180068 username barzegar 180068 mac 180068 bytes_out 0 180068 bytes_in 0 180068 station_ip 5.119.195.192 180068 port 179 180068 unique_id port 180068 remote_ip 10.8.0.10 180071 username saeeddamghani 180071 mac 180071 bytes_out 197947 180071 bytes_in 1091180 180071 station_ip 5.119.165.92 180071 port 179 180071 unique_id port 180071 remote_ip 10.8.0.122 180072 username shadkam 180072 mac 180072 bytes_out 377207 180072 bytes_in 1651461 180072 station_ip 83.123.26.125 180072 port 195 180072 unique_id port 180072 remote_ip 10.8.0.74 180073 username soleymani5056 180073 mac 180073 bytes_out 196466 180073 bytes_in 283109 180073 station_ip 5.119.93.61 180073 port 180 180073 unique_id port 180073 remote_ip 10.8.0.226 180074 username shadkam 180074 mac 180074 bytes_out 3166 180074 bytes_in 5539 180074 station_ip 83.123.29.189 180074 port 179 180074 unique_id port 180074 remote_ip 10.8.0.74 180075 username barzegar 180075 mac 180075 bytes_out 3064 180075 bytes_in 5072 180075 station_ip 5.119.195.192 180075 port 195 180075 unique_id port 180075 remote_ip 10.8.0.10 180077 username zahra1101 180077 kill_reason Maximum check online fails reached 180077 mac 180077 bytes_out 0 180077 bytes_in 0 180077 station_ip 5.119.116.59 180077 port 179 180077 unique_id port 180080 username zahra1101 180080 mac 180080 bytes_out 5667 180080 bytes_in 7433 180080 station_ip 5.119.116.59 180080 port 180 180080 unique_id port 180080 remote_ip 10.8.0.190 180081 username barzegar 180081 mac 180081 bytes_out 13620 180081 bytes_in 8731 180081 station_ip 5.119.195.192 180081 port 198 180081 unique_id port 180081 remote_ip 10.8.0.10 180084 username saeeddamghani 180084 mac 180084 bytes_out 0 180084 bytes_in 0 180084 station_ip 5.119.165.92 180084 port 74 180084 unique_id port 180084 remote_ip 10.8.0.122 180087 username mohammadjavad 180087 mac 180087 bytes_out 811574 180087 bytes_in 13392724 180087 station_ip 83.123.68.8 180087 port 195 180087 unique_id port 180087 remote_ip 10.8.0.110 180089 username saeeddamghani 180089 mac 180089 bytes_out 0 180089 bytes_in 0 180089 station_ip 5.119.165.92 180089 port 195 180089 unique_id port 180089 remote_ip 10.8.0.122 180090 username soleymani5056 180090 mac 180090 bytes_out 128438 180090 bytes_in 674801 180090 station_ip 5.120.155.245 180090 port 199 180090 unique_id port 180090 remote_ip 10.8.0.226 180092 username zahra1101 180092 mac 180092 bytes_out 0 180092 bytes_in 0 180092 station_ip 5.119.116.59 180092 port 199 180092 unique_id port 180092 remote_ip 10.8.0.190 180098 username zahra1101 180098 mac 180098 bytes_out 0 180098 bytes_in 0 180098 station_ip 5.119.116.59 180098 port 198 180098 unique_id port 180098 remote_ip 10.8.0.190 180101 username mostafa_es78 180101 mac 180101 bytes_out 3006333 180101 bytes_in 32408760 180101 station_ip 113.203.69.83 180101 port 190 180101 unique_id port 180101 remote_ip 10.8.0.34 180103 username zahra1101 180103 mac 180103 bytes_out 0 180103 bytes_in 0 180103 station_ip 5.119.116.59 180103 port 180 180103 unique_id port 180103 remote_ip 10.8.0.190 180061 kill_reason Another user logged on this global unique id 180061 mac 180061 bytes_out 0 180061 bytes_in 0 180061 station_ip 83.123.54.146 180061 port 189 180061 unique_id port 180062 username malekpoir 180062 mac 180062 bytes_out 3998651 180062 bytes_in 37262199 180062 station_ip 5.119.86.125 180062 port 74 180062 unique_id port 180062 remote_ip 10.8.0.18 180063 username yaghobi 180063 mac 180063 bytes_out 29514 180063 bytes_in 54409 180063 station_ip 83.123.125.213 180063 port 179 180063 unique_id port 180063 remote_ip 10.8.0.138 180066 username zahra1101 180066 mac 180066 bytes_out 3048 180066 bytes_in 4779 180066 station_ip 5.119.116.59 180066 port 74 180066 unique_id port 180066 remote_ip 10.8.0.190 180069 username zahra1101 180069 mac 180069 bytes_out 0 180069 bytes_in 0 180069 station_ip 5.119.116.59 180069 port 198 180069 unique_id port 180069 remote_ip 10.8.0.190 180070 username barzegar 180070 mac 180070 bytes_out 0 180070 bytes_in 0 180070 station_ip 5.119.195.192 180070 port 198 180070 unique_id port 180070 remote_ip 10.8.0.10 180076 username amin.saeedi 180076 unique_id port 180076 terminate_cause User-Request 180076 bytes_out 36442029 180076 bytes_in 1220805809 180076 station_ip 31.56.216.239 180076 port 15728774 180076 nas_port_type Virtual 180076 remote_ip 5.5.5.213 180085 username sedighe 180085 mac 180085 bytes_out 126629 180085 bytes_in 241929 180085 station_ip 83.123.105.185 180085 port 187 180085 unique_id port 180085 remote_ip 10.8.0.46 180086 username saeeddamghani 180086 mac 180086 bytes_out 0 180086 bytes_in 0 180086 station_ip 5.119.165.92 180086 port 187 180086 unique_id port 180086 remote_ip 10.8.0.122 180088 username zahra1101 180088 mac 180088 bytes_out 0 180088 bytes_in 0 180088 station_ip 5.119.116.59 180088 port 200 180088 unique_id port 180088 remote_ip 10.8.0.190 180091 username barzegar 180091 mac 180091 bytes_out 3889 180091 bytes_in 5388 180091 station_ip 5.119.195.192 180091 port 195 180091 unique_id port 180091 remote_ip 10.8.0.10 180093 username rahim 180093 kill_reason Another user logged on this global unique id 180093 mac 180093 bytes_out 0 180093 bytes_in 0 180093 station_ip 5.120.18.152 180093 port 197 180093 unique_id port 180093 remote_ip 10.8.0.134 180095 username malekpoir 180095 mac 180095 bytes_out 3940438 180095 bytes_in 43376054 180095 station_ip 5.119.86.125 180095 port 188 180095 unique_id port 180095 remote_ip 10.8.0.18 180097 username saeeddamghani 180097 mac 180097 bytes_out 0 180097 bytes_in 0 180097 station_ip 5.119.165.92 180097 port 199 180097 unique_id port 180097 remote_ip 10.8.0.122 180099 username sedighe 180099 mac 180099 bytes_out 5037 180099 bytes_in 14793 180099 station_ip 83.123.105.185 180099 port 74 180099 unique_id port 180099 remote_ip 10.8.0.46 180100 username zahra1101 180100 mac 180100 bytes_out 0 180100 bytes_in 0 180100 station_ip 5.119.116.59 180100 port 74 180100 unique_id port 180100 remote_ip 10.8.0.190 180111 username yaghobi 180111 mac 180111 bytes_out 195738 180111 bytes_in 984420 180111 station_ip 83.123.25.22 180111 port 188 180111 unique_id port 180111 remote_ip 10.8.0.138 180112 username mostafa_es78 180112 mac 180112 bytes_out 0 180112 bytes_in 0 180112 station_ip 113.203.69.83 180112 port 203 180112 unique_id port 180112 remote_ip 10.8.0.34 180117 username mohammadjavad 180117 mac 180117 bytes_out 0 180117 bytes_in 0 180117 station_ip 83.123.68.8 180117 port 188 180117 unique_id port 180102 station_ip 83.123.111.149 180102 port 180 180102 unique_id port 180102 remote_ip 10.8.0.74 180106 username saeeddamghani 180106 mac 180106 bytes_out 0 180106 bytes_in 0 180106 station_ip 5.119.165.92 180106 port 180 180106 unique_id port 180106 remote_ip 10.8.0.122 180110 username rezaei 180110 mac 180110 bytes_out 760698 180110 bytes_in 6548575 180110 station_ip 5.120.68.177 180110 port 198 180110 unique_id port 180110 remote_ip 10.8.0.198 180113 username rashidi4690 180113 mac 180113 bytes_out 198454 180113 bytes_in 1024812 180113 station_ip 5.119.244.123 180113 port 190 180113 unique_id port 180113 remote_ip 10.8.0.242 180115 username mohammadjavad 180115 mac 180115 bytes_out 1445504 180115 bytes_in 20410010 180115 station_ip 83.123.68.8 180115 port 187 180115 unique_id port 180115 remote_ip 10.8.0.110 180120 username aminvpn 180120 mac 180120 bytes_out 373716 180120 bytes_in 2465244 180120 station_ip 5.120.29.137 180120 port 198 180120 unique_id port 180120 remote_ip 10.8.0.58 180122 username mohammadjavad 180122 mac 180122 bytes_out 2239 180122 bytes_in 6921 180122 station_ip 83.123.68.8 180122 port 180 180122 unique_id port 180122 remote_ip 10.8.0.110 180126 username zahra1101 180126 mac 180126 bytes_out 0 180126 bytes_in 0 180126 station_ip 5.119.116.59 180126 port 187 180126 unique_id port 180126 remote_ip 10.8.0.190 180127 username mostafa_es78 180127 mac 180127 bytes_out 0 180127 bytes_in 0 180127 station_ip 178.236.35.96 180127 port 188 180127 unique_id port 180127 remote_ip 10.8.0.34 180130 username mostafa_es78 180130 mac 180130 bytes_out 0 180130 bytes_in 0 180130 station_ip 178.236.35.96 180130 port 203 180130 unique_id port 180130 remote_ip 10.8.0.34 180131 username aminvpn 180131 kill_reason Maximum check online fails reached 180131 mac 180131 bytes_out 0 180131 bytes_in 0 180131 station_ip 5.120.29.137 180131 port 198 180131 unique_id port 180135 username rahim 180135 kill_reason Another user logged on this global unique id 180135 mac 180135 bytes_out 0 180135 bytes_in 0 180135 station_ip 5.120.18.152 180135 port 197 180135 unique_id port 180137 username saeeddamghani 180137 mac 180137 bytes_out 0 180137 bytes_in 0 180137 station_ip 5.119.165.92 180137 port 206 180137 unique_id port 180137 remote_ip 10.8.0.122 180144 username hosseine 180144 mac 180144 bytes_out 625095 180144 bytes_in 6062548 180144 station_ip 83.123.92.83 180144 port 203 180144 unique_id port 180144 remote_ip 10.8.0.54 180145 username sedighe 180145 mac 180145 bytes_out 5041 180145 bytes_in 7868 180145 station_ip 83.123.105.185 180145 port 202 180145 unique_id port 180145 remote_ip 10.8.0.46 180148 username zahra1101 180148 mac 180148 bytes_out 0 180148 bytes_in 0 180148 station_ip 5.119.116.59 180148 port 202 180148 unique_id port 180148 remote_ip 10.8.0.190 180149 username alihosseini1 180149 mac 180149 bytes_out 3061843 180149 bytes_in 22092113 180149 station_ip 5.119.23.116 180149 port 195 180149 unique_id port 180149 remote_ip 10.8.0.234 180154 username zahra1101 180154 mac 180154 bytes_out 0 180154 bytes_in 0 180154 station_ip 5.119.116.59 180154 port 195 180154 unique_id port 180154 remote_ip 10.8.0.190 180155 username zahra1101 180155 mac 180155 bytes_out 0 180155 bytes_in 0 180155 station_ip 5.119.116.59 180155 port 195 180155 unique_id port 180155 remote_ip 10.8.0.190 180157 username zahra1101 180157 mac 180157 bytes_out 0 180157 bytes_in 0 180157 station_ip 5.119.116.59 180104 username mostafa_es78 180104 mac 180104 bytes_out 0 180104 bytes_in 0 180104 station_ip 83.122.248.61 180104 port 74 180104 unique_id port 180104 remote_ip 10.8.0.34 180105 username farhad3 180105 mac 180105 bytes_out 5168320 180105 bytes_in 30030624 180105 station_ip 5.119.101.14 180105 port 184 180105 unique_id port 180105 remote_ip 10.8.0.222 180107 username mostafa_es78 180107 mac 180107 bytes_out 0 180107 bytes_in 0 180107 station_ip 113.203.69.83 180107 port 190 180107 unique_id port 180107 remote_ip 10.8.0.34 180108 username farhad3 180108 mac 180108 bytes_out 0 180108 bytes_in 0 180108 station_ip 5.119.101.14 180108 port 184 180108 unique_id port 180108 remote_ip 10.8.0.222 180109 username mostafa_es78 180109 mac 180109 bytes_out 0 180109 bytes_in 0 180109 station_ip 83.122.248.61 180109 port 180 180109 unique_id port 180109 remote_ip 10.8.0.34 180114 username zahra1101 180114 kill_reason Maximum check online fails reached 180114 mac 180114 bytes_out 0 180114 bytes_in 0 180114 station_ip 5.119.116.59 180114 port 74 180114 unique_id port 180116 username mostafa_es78 180116 mac 180116 bytes_out 0 180116 bytes_in 0 180116 station_ip 83.122.248.61 180116 port 188 180116 unique_id port 180116 remote_ip 10.8.0.34 180118 username rahim 180118 kill_reason Another user logged on this global unique id 180118 mac 180118 bytes_out 0 180118 bytes_in 0 180118 station_ip 5.120.18.152 180118 port 197 180118 unique_id port 180121 username aminvpn 180121 mac 180121 bytes_out 0 180121 bytes_in 0 180121 station_ip 5.120.29.137 180121 port 188 180121 unique_id port 180121 remote_ip 10.8.0.58 180124 username alirezazadeh 180124 unique_id port 180124 terminate_cause Lost-Carrier 180124 bytes_out 6530408 180124 bytes_in 121686198 180124 station_ip 5.120.190.243 180124 port 15728778 180124 nas_port_type Virtual 180124 remote_ip 5.5.5.211 180128 username mostafa_es78 180128 mac 180128 bytes_out 0 180128 bytes_in 0 180128 station_ip 113.203.69.83 180128 port 187 180128 unique_id port 180128 remote_ip 10.8.0.34 180133 username barzegar 180133 mac 180133 bytes_out 1959873 180133 bytes_in 1341301 180133 station_ip 5.119.195.192 180133 port 190 180133 unique_id port 180133 remote_ip 10.8.0.10 180138 username sedighe 180138 mac 180138 bytes_out 68747 180138 bytes_in 68396 180138 station_ip 83.123.105.185 180138 port 199 180138 unique_id port 180138 remote_ip 10.8.0.46 180141 username fezealinaghi 180141 kill_reason Another user logged on this global unique id 180141 mac 180141 bytes_out 0 180141 bytes_in 0 180141 station_ip 83.123.109.200 180141 port 190 180141 unique_id port 180141 remote_ip 10.8.0.202 180142 username hatami 180142 mac 180142 bytes_out 225145 180142 bytes_in 1339309 180142 station_ip 151.235.112.176 180142 port 205 180142 unique_id port 180142 remote_ip 10.8.0.98 180143 username aminvpn 180143 unique_id port 180143 terminate_cause Lost-Carrier 180143 bytes_out 659001 180143 bytes_in 2377981 180143 station_ip 83.123.108.145 180143 port 15728779 180143 nas_port_type Virtual 180143 remote_ip 5.5.5.215 180146 username aminvpn 180146 mac 180146 bytes_out 0 180146 bytes_in 0 180146 station_ip 5.120.29.137 180146 port 203 180146 unique_id port 180146 remote_ip 10.8.0.58 180147 username barzegar 180147 mac 180147 bytes_out 0 180147 bytes_in 0 180147 station_ip 5.119.195.192 180147 port 203 180147 unique_id port 180147 remote_ip 10.8.0.10 180150 username saeeddamghani 180150 mac 180150 bytes_out 0 180150 bytes_in 0 180117 remote_ip 10.8.0.110 180119 username zahra1101 180119 mac 180119 bytes_out 2562 180119 bytes_in 4834 180119 station_ip 5.119.116.59 180119 port 180 180119 unique_id port 180119 remote_ip 10.8.0.190 180123 username barzegar 180123 mac 180123 bytes_out 0 180123 bytes_in 0 180123 station_ip 5.119.195.192 180123 port 188 180123 unique_id port 180123 remote_ip 10.8.0.10 180125 username mostafa_es78 180125 mac 180125 bytes_out 388994 180125 bytes_in 5116451 180125 station_ip 113.203.69.83 180125 port 187 180125 unique_id port 180125 remote_ip 10.8.0.34 180129 username zahra1101 180129 kill_reason Maximum check online fails reached 180129 mac 180129 bytes_out 0 180129 bytes_in 0 180129 station_ip 5.119.116.59 180129 port 180 180129 unique_id port 180132 username aminvpn 180132 kill_reason Maximum check online fails reached 180132 mac 180132 bytes_out 0 180132 bytes_in 0 180132 station_ip 5.120.29.137 180132 port 188 180132 unique_id port 180134 username saeeddamghani 180134 mac 180134 bytes_out 0 180134 bytes_in 0 180134 station_ip 5.119.165.92 180134 port 204 180134 unique_id port 180134 remote_ip 10.8.0.122 180136 username zahra1101 180136 mac 180136 bytes_out 0 180136 bytes_in 0 180136 station_ip 5.119.116.59 180136 port 204 180136 unique_id port 180136 remote_ip 10.8.0.190 180139 username shadkam 180139 mac 180139 bytes_out 63400 180139 bytes_in 282207 180139 station_ip 83.123.96.63 180139 port 202 180139 unique_id port 180139 remote_ip 10.8.0.74 180140 username sabaghnezhad 180140 mac 180140 bytes_out 114713 180140 bytes_in 456252 180140 station_ip 83.123.20.2 180140 port 184 180140 unique_id port 180140 remote_ip 10.8.0.66 180153 username zahra1101 180153 mac 180153 bytes_out 7825 180153 bytes_in 12261 180153 station_ip 5.119.116.59 180153 port 203 180153 unique_id port 180153 remote_ip 10.8.0.190 180163 username zahra1101 180163 mac 180163 bytes_out 2927 180163 bytes_in 5388 180163 station_ip 5.119.116.59 180163 port 203 180163 unique_id port 180163 remote_ip 10.8.0.190 180165 username aminvpn 180165 unique_id port 180165 terminate_cause Lost-Carrier 180165 bytes_out 1255936 180165 bytes_in 2644136 180165 station_ip 5.119.244.142 180165 port 15728780 180165 nas_port_type Virtual 180165 remote_ip 5.5.5.219 180168 username rahim 180168 kill_reason Another user logged on this global unique id 180168 mac 180168 bytes_out 0 180168 bytes_in 0 180168 station_ip 5.120.18.152 180168 port 197 180168 unique_id port 180170 username saeeddamghani 180170 mac 180170 bytes_out 0 180170 bytes_in 0 180170 station_ip 217.60.218.29 180170 port 184 180170 unique_id port 180170 remote_ip 10.8.0.122 180172 username sedighe 180172 mac 180172 bytes_out 4973 180172 bytes_in 6670 180172 station_ip 83.123.105.185 180172 port 202 180172 unique_id port 180172 remote_ip 10.8.0.46 180174 username zahra1101 180174 kill_reason Maximum check online fails reached 180174 mac 180174 bytes_out 0 180174 bytes_in 0 180174 station_ip 5.119.116.59 180174 port 204 180174 unique_id port 180182 username aminvpn 180182 mac 180182 bytes_out 0 180182 bytes_in 0 180182 station_ip 5.120.29.137 180182 port 203 180182 unique_id port 180182 remote_ip 10.8.0.58 180183 username mohammadjavad 180183 mac 180183 bytes_out 905555 180183 bytes_in 18487505 180183 station_ip 83.123.39.173 180183 port 184 180183 unique_id port 180183 remote_ip 10.8.0.110 180188 username mostafa_es78 180188 mac 180188 bytes_out 0 180188 bytes_in 0 180188 station_ip 113.203.50.244 180188 port 196 180150 station_ip 5.119.165.92 180150 port 195 180150 unique_id port 180150 remote_ip 10.8.0.122 180151 username rahim 180151 kill_reason Another user logged on this global unique id 180151 mac 180151 bytes_out 0 180151 bytes_in 0 180151 station_ip 5.120.18.152 180151 port 197 180151 unique_id port 180152 username aminvpn 180152 mac 180152 bytes_out 0 180152 bytes_in 0 180152 station_ip 5.120.29.137 180152 port 195 180152 unique_id port 180152 remote_ip 10.8.0.58 180156 username aminvpn 180156 mac 180156 bytes_out 0 180156 bytes_in 0 180156 station_ip 5.120.29.137 180156 port 195 180156 unique_id port 180156 remote_ip 10.8.0.58 180159 username barzegar 180159 mac 180159 bytes_out 0 180159 bytes_in 0 180159 station_ip 5.119.195.192 180159 port 203 180159 unique_id port 180159 remote_ip 10.8.0.10 180160 username aminvpn 180160 mac 180160 bytes_out 95567 180160 bytes_in 145463 180160 station_ip 5.120.29.137 180160 port 204 180160 unique_id port 180160 remote_ip 10.8.0.58 180162 username zahra1101 180162 kill_reason Maximum check online fails reached 180162 mac 180162 bytes_out 0 180162 bytes_in 0 180162 station_ip 5.119.116.59 180162 port 199 180162 unique_id port 180164 username farhad3 180164 mac 180164 bytes_out 4512967 180164 bytes_in 25782298 180164 station_ip 5.119.101.14 180164 port 201 180164 unique_id port 180164 remote_ip 10.8.0.222 180166 username zahra1101 180166 mac 180166 bytes_out 0 180166 bytes_in 0 180166 station_ip 5.119.116.59 180166 port 204 180166 unique_id port 180166 remote_ip 10.8.0.190 180173 username rahim 180173 mac 180173 bytes_out 0 180173 bytes_in 0 180173 station_ip 5.120.18.152 180173 port 197 180173 unique_id port 180175 username barzegar 180175 mac 180175 bytes_out 1259554 180175 bytes_in 390212 180175 station_ip 5.119.195.192 180175 port 203 180175 unique_id port 180175 remote_ip 10.8.0.10 180176 username zahra1101 180176 kill_reason Maximum number of concurrent logins reached 180176 mac 180176 bytes_out 0 180176 bytes_in 0 180176 station_ip 5.119.116.59 180176 port 203 180176 unique_id port 180177 username zahra1101 180177 kill_reason Maximum check online fails reached 180177 mac 180177 bytes_out 0 180177 bytes_in 0 180177 station_ip 5.119.116.59 180177 port 206 180177 unique_id port 180181 username godarzi 180181 mac 180181 bytes_out 968098 180181 bytes_in 9767716 180181 station_ip 5.120.0.215 180181 port 205 180181 unique_id port 180181 remote_ip 10.8.0.38 180186 username mostafa_es78 180186 mac 180186 bytes_out 0 180186 bytes_in 0 180186 station_ip 113.203.50.244 180186 port 196 180186 unique_id port 180186 remote_ip 10.8.0.34 180187 username mostafa_es78 180187 mac 180187 bytes_out 0 180187 bytes_in 0 180187 station_ip 113.203.69.83 180187 port 187 180187 unique_id port 180187 remote_ip 10.8.0.34 180191 username mostafa_es78 180191 mac 180191 bytes_out 0 180191 bytes_in 0 180191 station_ip 113.203.69.83 180191 port 187 180191 unique_id port 180191 remote_ip 10.8.0.34 180193 username fezealinaghi 180193 kill_reason Another user logged on this global unique id 180193 mac 180193 bytes_out 0 180193 bytes_in 0 180193 station_ip 83.123.109.200 180193 port 190 180193 unique_id port 180198 username mostafa_es78 180198 mac 180198 bytes_out 0 180198 bytes_in 0 180198 station_ip 113.203.50.244 180198 port 174 180198 unique_id port 180198 remote_ip 10.8.0.34 180199 username mostafa_es78 180199 mac 180199 bytes_out 0 180199 bytes_in 0 180199 station_ip 113.203.69.83 180199 port 187 180157 port 203 180157 unique_id port 180157 remote_ip 10.8.0.190 180158 username godarzi 180158 mac 180158 bytes_out 1569121 180158 bytes_in 16123382 180158 station_ip 5.120.0.215 180158 port 199 180158 unique_id port 180158 remote_ip 10.8.0.38 180161 username sedighe 180161 mac 180161 bytes_out 32186 180161 bytes_in 37702 180161 station_ip 83.123.105.185 180161 port 202 180161 unique_id port 180161 remote_ip 10.8.0.46 180167 username rezaei 180167 mac 180167 bytes_out 2492657 180167 bytes_in 29725653 180167 station_ip 5.120.68.177 180167 port 184 180167 unique_id port 180167 remote_ip 10.8.0.198 180169 username saeeddamghani 180169 mac 180169 bytes_out 0 180169 bytes_in 0 180169 station_ip 5.119.165.92 180169 port 204 180169 unique_id port 180169 remote_ip 10.8.0.122 180171 username aminvpn 180171 mac 180171 bytes_out 0 180171 bytes_in 0 180171 station_ip 5.120.29.137 180171 port 206 180171 unique_id port 180171 remote_ip 10.8.0.58 180178 username farhad3 180178 kill_reason Another user logged on this global unique id 180178 mac 180178 bytes_out 0 180178 bytes_in 0 180178 station_ip 5.119.101.14 180178 port 201 180178 unique_id port 180178 remote_ip 10.8.0.222 180179 username zahra1101 180179 kill_reason Maximum check online fails reached 180179 mac 180179 bytes_out 0 180179 bytes_in 0 180179 station_ip 5.119.116.59 180179 port 197 180179 unique_id port 180180 username aminvpn 180180 mac 180180 bytes_out 0 180180 bytes_in 0 180180 station_ip 5.120.29.137 180180 port 203 180180 unique_id port 180180 remote_ip 10.8.0.58 180184 username jafari 180184 mac 180184 bytes_out 1293385 180184 bytes_in 11981311 180184 station_ip 89.47.144.160 180184 port 196 180184 unique_id port 180184 remote_ip 10.8.0.86 180185 username mostafa_es78 180185 mac 180185 bytes_out 692987 180185 bytes_in 777286 180185 station_ip 113.203.69.83 180185 port 187 180185 unique_id port 180185 remote_ip 10.8.0.34 180189 username nilufarrajaei 180189 mac 180189 bytes_out 0 180189 bytes_in 0 180189 station_ip 83.123.73.91 180189 port 174 180189 unique_id port 180190 username aminvpn 180190 mac 180190 bytes_out 0 180190 bytes_in 0 180190 station_ip 5.120.29.137 180190 port 196 180190 unique_id port 180190 remote_ip 10.8.0.58 180192 username rajaei 180192 kill_reason Another user logged on this global unique id 180192 mac 180192 bytes_out 0 180192 bytes_in 0 180192 station_ip 89.47.70.45 180192 port 195 180192 unique_id port 180192 remote_ip 10.8.0.218 180194 username mostafa_es78 180194 mac 180194 bytes_out 0 180194 bytes_in 0 180194 station_ip 113.203.50.244 180194 port 174 180194 unique_id port 180194 remote_ip 10.8.0.34 180196 username mostafa_es78 180196 mac 180196 bytes_out 0 180196 bytes_in 0 180196 station_ip 113.203.69.83 180196 port 187 180196 unique_id port 180196 remote_ip 10.8.0.34 180197 username farhad3 180197 mac 180197 bytes_out 0 180197 bytes_in 0 180197 station_ip 5.119.101.14 180197 port 187 180197 unique_id port 180197 remote_ip 10.8.0.222 180200 username farhad3 180200 mac 180200 bytes_out 0 180200 bytes_in 0 180200 station_ip 5.119.101.14 180200 port 174 180200 unique_id port 180200 remote_ip 10.8.0.222 180201 username mostafa_es78 180201 mac 180201 bytes_out 0 180201 bytes_in 0 180201 station_ip 113.203.50.244 180201 port 196 180201 unique_id port 180201 remote_ip 10.8.0.34 180202 username mostafa_es78 180202 mac 180202 bytes_out 0 180202 bytes_in 0 180202 station_ip 113.203.69.83 180188 unique_id port 180188 remote_ip 10.8.0.34 180195 username farhad3 180195 mac 180195 bytes_out 0 180195 bytes_in 0 180195 station_ip 5.119.101.14 180195 port 201 180195 unique_id port 180204 username aminvpn 180204 mac 180204 bytes_out 0 180204 bytes_in 0 180204 station_ip 5.120.29.137 180204 port 196 180204 unique_id port 180204 remote_ip 10.8.0.58 180208 username aminvpn 180208 mac 180208 bytes_out 0 180208 bytes_in 0 180208 station_ip 5.120.29.137 180208 port 196 180208 unique_id port 180208 remote_ip 10.8.0.58 180210 username mostafa_es78 180210 mac 180210 bytes_out 0 180210 bytes_in 0 180210 station_ip 113.203.50.244 180210 port 196 180210 unique_id port 180210 remote_ip 10.8.0.34 180212 username houshang 180212 mac 180212 bytes_out 63209 180212 bytes_in 208529 180212 station_ip 5.119.216.181 180212 port 187 180212 unique_id port 180212 remote_ip 10.8.0.82 180213 username mostafa_es78 180213 mac 180213 bytes_out 0 180213 bytes_in 0 180213 station_ip 113.203.69.83 180213 port 201 180213 unique_id port 180213 remote_ip 10.8.0.34 180216 username motamedi9772 180216 mac 180216 bytes_out 0 180216 bytes_in 0 180216 station_ip 83.123.97.215 180216 port 187 180216 unique_id port 180216 remote_ip 10.8.0.154 180218 username mostafa_es78 180218 mac 180218 bytes_out 0 180218 bytes_in 0 180218 station_ip 113.203.50.244 180218 port 202 180218 unique_id port 180218 remote_ip 10.8.0.34 180221 username rajaei 180221 mac 180221 bytes_out 0 180221 bytes_in 0 180221 station_ip 89.47.70.45 180221 port 195 180221 unique_id port 180224 username aminvpn 180224 mac 180224 bytes_out 0 180224 bytes_in 0 180224 station_ip 5.120.29.137 180224 port 187 180224 unique_id port 180224 remote_ip 10.8.0.58 180225 username mostafa_es78 180225 mac 180225 bytes_out 0 180225 bytes_in 0 180225 station_ip 113.203.50.244 180225 port 195 180225 unique_id port 180225 remote_ip 10.8.0.34 180226 username mostafa_es78 180226 mac 180226 bytes_out 0 180226 bytes_in 0 180226 station_ip 113.203.69.83 180226 port 187 180226 unique_id port 180226 remote_ip 10.8.0.34 180229 username mostafa_es78 180229 mac 180229 bytes_out 0 180229 bytes_in 0 180229 station_ip 113.203.69.83 180229 port 187 180229 unique_id port 180229 remote_ip 10.8.0.34 180234 username mostafa_es78 180234 mac 180234 bytes_out 0 180234 bytes_in 0 180234 station_ip 113.203.50.244 180234 port 195 180234 unique_id port 180234 remote_ip 10.8.0.34 180236 username mostafa_es78 180236 mac 180236 bytes_out 0 180236 bytes_in 0 180236 station_ip 113.203.69.83 180236 port 202 180236 unique_id port 180236 remote_ip 10.8.0.34 180237 username mostafa_es78 180237 mac 180237 bytes_out 0 180237 bytes_in 0 180237 station_ip 113.203.50.244 180237 port 195 180237 unique_id port 180237 remote_ip 10.8.0.34 180240 username khalili2 180240 kill_reason Another user logged on this global unique id 180240 mac 180240 bytes_out 0 180240 bytes_in 0 180240 station_ip 5.119.99.166 180240 port 173 180240 unique_id port 180241 username mostafa_es78 180241 mac 180241 bytes_out 0 180241 bytes_in 0 180241 station_ip 113.203.50.244 180241 port 195 180241 unique_id port 180241 remote_ip 10.8.0.34 180242 username mostafa_es78 180242 mac 180242 bytes_out 0 180242 bytes_in 0 180242 station_ip 113.203.69.83 180242 port 200 180242 unique_id port 180242 remote_ip 10.8.0.34 180245 username barzegar 180245 mac 180245 bytes_out 0 180245 bytes_in 0 180199 unique_id port 180199 remote_ip 10.8.0.34 180203 username mostafa_es78 180203 mac 180203 bytes_out 0 180203 bytes_in 0 180203 station_ip 113.203.50.244 180203 port 187 180203 unique_id port 180203 remote_ip 10.8.0.34 180207 username farhad3 180207 mac 180207 bytes_out 0 180207 bytes_in 0 180207 station_ip 5.119.230.85 180207 port 196 180207 unique_id port 180207 remote_ip 10.8.0.222 180215 username mostafa_es78 180215 mac 180215 bytes_out 0 180215 bytes_in 0 180215 station_ip 113.203.69.83 180215 port 201 180215 unique_id port 180215 remote_ip 10.8.0.34 180217 username barzegar 180217 mac 180217 bytes_out 0 180217 bytes_in 0 180217 station_ip 5.119.195.192 180217 port 201 180217 unique_id port 180217 remote_ip 10.8.0.10 180223 username mostafa_es78 180223 mac 180223 bytes_out 0 180223 bytes_in 0 180223 station_ip 113.203.69.83 180223 port 187 180223 unique_id port 180223 remote_ip 10.8.0.34 180228 username mohammadjavad 180228 mac 180228 bytes_out 969816 180228 bytes_in 14923065 180228 station_ip 83.123.15.7 180228 port 201 180228 unique_id port 180228 remote_ip 10.8.0.110 180231 username mostafa_es78 180231 mac 180231 bytes_out 0 180231 bytes_in 0 180231 station_ip 113.203.50.244 180231 port 195 180231 unique_id port 180231 remote_ip 10.8.0.34 180233 username mostafa_es78 180233 mac 180233 bytes_out 0 180233 bytes_in 0 180233 station_ip 113.203.69.83 180233 port 200 180233 unique_id port 180233 remote_ip 10.8.0.34 180235 username mohammadjavad 180235 mac 180235 bytes_out 69073 180235 bytes_in 931154 180235 station_ip 83.123.15.7 180235 port 200 180235 unique_id port 180235 remote_ip 10.8.0.110 180238 username fezealinaghi 180238 kill_reason Another user logged on this global unique id 180238 mac 180238 bytes_out 0 180238 bytes_in 0 180238 station_ip 83.123.109.200 180238 port 190 180238 unique_id port 180247 username mostafa_es78 180247 mac 180247 bytes_out 0 180247 bytes_in 0 180247 station_ip 113.203.69.83 180247 port 202 180247 unique_id port 180247 remote_ip 10.8.0.34 180250 username mohammadjavad 180250 mac 180250 bytes_out 0 180250 bytes_in 0 180250 station_ip 83.123.15.7 180250 port 200 180250 unique_id port 180250 remote_ip 10.8.0.110 180257 username mohammadjavad 180257 mac 180257 bytes_out 0 180257 bytes_in 0 180257 station_ip 83.123.15.7 180257 port 200 180257 unique_id port 180257 remote_ip 10.8.0.110 180262 username aminvpn 180262 unique_id port 180262 terminate_cause Lost-Carrier 180262 bytes_out 2274988 180262 bytes_in 61000156 180262 station_ip 31.57.124.217 180262 port 15728782 180262 nas_port_type Virtual 180262 remote_ip 5.5.5.210 180264 username mostafa_es78 180264 mac 180264 bytes_out 0 180264 bytes_in 0 180264 station_ip 113.203.50.244 180264 port 200 180264 unique_id port 180264 remote_ip 10.8.0.34 180269 username farhad3 180269 mac 180269 bytes_out 4301202 180269 bytes_in 39509093 180269 station_ip 5.119.230.85 180269 port 174 180269 unique_id port 180269 remote_ip 10.8.0.222 180271 username pourshad 180271 mac 180271 bytes_out 56481 180271 bytes_in 76631 180271 station_ip 5.120.22.67 180271 port 187 180271 unique_id port 180271 remote_ip 10.8.0.42 180272 username mostafa_es78 180272 mac 180272 bytes_out 0 180272 bytes_in 0 180272 station_ip 113.203.50.244 180272 port 174 180272 unique_id port 180272 remote_ip 10.8.0.34 180277 username farhad3 180277 mac 180277 bytes_out 6733 180277 bytes_in 12212 180277 station_ip 5.119.230.85 180277 port 202 180202 port 174 180202 unique_id port 180202 remote_ip 10.8.0.34 180205 username mostafa_es78 180205 mac 180205 bytes_out 0 180205 bytes_in 0 180205 station_ip 113.203.69.83 180205 port 174 180205 unique_id port 180205 remote_ip 10.8.0.34 180206 username mostafa_es78 180206 mac 180206 bytes_out 0 180206 bytes_in 0 180206 station_ip 113.203.50.244 180206 port 196 180206 unique_id port 180206 remote_ip 10.8.0.34 180209 username mostafa_es78 180209 mac 180209 bytes_out 0 180209 bytes_in 0 180209 station_ip 113.203.69.83 180209 port 174 180209 unique_id port 180209 remote_ip 10.8.0.34 180211 username sedighe 180211 mac 180211 bytes_out 104313 180211 bytes_in 124573 180211 station_ip 83.123.64.246 180211 port 202 180211 unique_id port 180211 remote_ip 10.8.0.46 180214 username mostafa_es78 180214 mac 180214 bytes_out 0 180214 bytes_in 0 180214 station_ip 113.203.50.244 180214 port 187 180214 unique_id port 180214 remote_ip 10.8.0.34 180219 username mostafa_es78 180219 mac 180219 bytes_out 0 180219 bytes_in 0 180219 station_ip 113.203.69.83 180219 port 187 180219 unique_id port 180219 remote_ip 10.8.0.34 180220 username mostafa_es78 180220 mac 180220 bytes_out 0 180220 bytes_in 0 180220 station_ip 113.203.50.244 180220 port 202 180220 unique_id port 180220 remote_ip 10.8.0.34 180222 username aminvpn 180222 mac 180222 bytes_out 0 180222 bytes_in 0 180222 station_ip 5.120.29.137 180222 port 195 180222 unique_id port 180222 remote_ip 10.8.0.58 180227 username mostafa_es78 180227 mac 180227 bytes_out 0 180227 bytes_in 0 180227 station_ip 113.203.50.244 180227 port 195 180227 unique_id port 180227 remote_ip 10.8.0.34 180230 username pourshad 180230 mac 180230 bytes_out 3456120 180230 bytes_in 54670612 180230 station_ip 5.120.22.67 180230 port 200 180230 unique_id port 180230 remote_ip 10.8.0.42 180232 username aminvpn 180232 mac 180232 bytes_out 0 180232 bytes_in 0 180232 station_ip 5.120.29.137 180232 port 195 180232 unique_id port 180232 remote_ip 10.8.0.58 180239 username mostafa_es78 180239 mac 180239 bytes_out 0 180239 bytes_in 0 180239 station_ip 113.203.69.83 180239 port 200 180239 unique_id port 180239 remote_ip 10.8.0.34 180243 username mostafa_es78 180243 mac 180243 bytes_out 0 180243 bytes_in 0 180243 station_ip 113.203.50.244 180243 port 195 180243 unique_id port 180243 remote_ip 10.8.0.34 180244 username mostafa_es78 180244 mac 180244 bytes_out 0 180244 bytes_in 0 180244 station_ip 113.203.69.83 180244 port 200 180244 unique_id port 180244 remote_ip 10.8.0.34 180246 username mohammadjavad 180246 mac 180246 bytes_out 0 180246 bytes_in 0 180246 station_ip 83.123.15.7 180246 port 195 180246 unique_id port 180246 remote_ip 10.8.0.110 180248 username aminvpn 180248 mac 180248 bytes_out 0 180248 bytes_in 0 180248 station_ip 5.120.29.137 180248 port 200 180248 unique_id port 180248 remote_ip 10.8.0.58 180249 username mostafa_es78 180249 mac 180249 bytes_out 0 180249 bytes_in 0 180249 station_ip 113.203.50.244 180249 port 195 180249 unique_id port 180249 remote_ip 10.8.0.34 180251 username fezealinaghi 180251 kill_reason Another user logged on this global unique id 180251 mac 180251 bytes_out 0 180251 bytes_in 0 180251 station_ip 83.123.109.200 180251 port 190 180251 unique_id port 180252 username mostafa_es78 180252 mac 180252 bytes_out 0 180252 bytes_in 0 180252 station_ip 113.203.69.83 180252 port 202 180252 unique_id port 180252 remote_ip 10.8.0.34 180245 station_ip 5.119.195.192 180245 port 195 180245 unique_id port 180245 remote_ip 10.8.0.10 180258 username mostafa_es78 180258 mac 180258 bytes_out 0 180258 bytes_in 0 180258 station_ip 113.203.50.244 180258 port 202 180258 unique_id port 180258 remote_ip 10.8.0.34 180260 username mostafa_es78 180260 mac 180260 bytes_out 0 180260 bytes_in 0 180260 station_ip 113.203.69.83 180260 port 202 180260 unique_id port 180260 remote_ip 10.8.0.34 180263 username mostafa_es78 180263 mac 180263 bytes_out 0 180263 bytes_in 0 180263 station_ip 113.203.69.83 180263 port 202 180263 unique_id port 180263 remote_ip 10.8.0.34 180266 username fezealinaghi 180266 kill_reason Another user logged on this global unique id 180266 mac 180266 bytes_out 0 180266 bytes_in 0 180266 station_ip 83.123.109.200 180266 port 190 180266 unique_id port 180268 username aminvpn 180268 mac 180268 bytes_out 1644 180268 bytes_in 4105 180268 station_ip 5.120.29.137 180268 port 202 180268 unique_id port 180268 remote_ip 10.8.0.58 180270 username mostafa_es78 180270 mac 180270 bytes_out 657650 180270 bytes_in 4103057 180270 station_ip 113.203.69.83 180270 port 205 180270 unique_id port 180270 remote_ip 10.8.0.34 180274 username fezealinaghi 180274 mac 180274 bytes_out 0 180274 bytes_in 0 180274 station_ip 83.123.109.200 180274 port 190 180274 unique_id port 180275 username mostafa_es78 180275 mac 180275 bytes_out 0 180275 bytes_in 0 180275 station_ip 113.203.69.83 180275 port 203 180275 unique_id port 180275 remote_ip 10.8.0.34 180286 username mostafa_es78 180286 kill_reason Wrong password 180286 unique_id port 180286 bytes_out 0 180286 bytes_in 0 180286 station_ip 113.203.50.244 180286 port 15728784 180286 nas_port_type Virtual 180287 username barzegar 180287 mac 180287 bytes_out 0 180287 bytes_in 0 180287 station_ip 5.119.195.192 180287 port 202 180287 unique_id port 180287 remote_ip 10.8.0.10 180289 username mostafa_es78 180289 mac 180289 bytes_out 64491 180289 bytes_in 311235 180289 station_ip 178.236.35.96 180289 port 202 180289 unique_id port 180289 remote_ip 10.8.0.34 180291 username mohammadjavad 180291 mac 180291 bytes_out 496272 180291 bytes_in 8284055 180291 station_ip 83.123.15.7 180291 port 196 180291 unique_id port 180291 remote_ip 10.8.0.110 180293 username mostafa_es78 180293 mac 180293 bytes_out 0 180293 bytes_in 0 180293 station_ip 178.236.35.96 180293 port 196 180293 unique_id port 180293 remote_ip 10.8.0.34 180295 username aminvpn 180295 mac 180295 bytes_out 0 180295 bytes_in 0 180295 station_ip 5.120.29.137 180295 port 196 180295 unique_id port 180295 remote_ip 10.8.0.58 180299 username soleymani5056 180299 mac 180299 bytes_out 129826 180299 bytes_in 278878 180299 station_ip 5.120.45.129 180299 port 201 180299 unique_id port 180299 remote_ip 10.8.0.226 180304 username mostafa_es78 180304 mac 180304 bytes_out 0 180304 bytes_in 0 180304 station_ip 113.203.69.83 180304 port 208 180304 unique_id port 180304 remote_ip 10.8.0.34 180309 username mohammadjavad 180309 mac 180309 bytes_out 0 180309 bytes_in 0 180309 station_ip 83.123.15.7 180309 port 201 180309 unique_id port 180309 remote_ip 10.8.0.110 180310 username godarzi 180310 kill_reason Another user logged on this global unique id 180310 mac 180310 bytes_out 0 180310 bytes_in 0 180310 station_ip 5.120.0.215 180310 port 184 180310 unique_id port 180310 remote_ip 10.8.0.38 180313 username mostafa_es78 180313 mac 180313 bytes_out 0 180313 bytes_in 0 180253 username mostafa_es78 180253 mac 180253 bytes_out 0 180253 bytes_in 0 180253 station_ip 113.203.50.244 180253 port 195 180253 unique_id port 180253 remote_ip 10.8.0.34 180254 username mostafa_es78 180254 mac 180254 bytes_out 0 180254 bytes_in 0 180254 station_ip 113.203.69.83 180254 port 200 180254 unique_id port 180254 remote_ip 10.8.0.34 180255 username mostafa_es78 180255 mac 180255 bytes_out 0 180255 bytes_in 0 180255 station_ip 113.203.50.244 180255 port 202 180255 unique_id port 180255 remote_ip 10.8.0.34 180256 username mostafa_es78 180256 mac 180256 bytes_out 0 180256 bytes_in 0 180256 station_ip 113.203.69.83 180256 port 200 180256 unique_id port 180256 remote_ip 10.8.0.34 180259 username mostafa_es78 180259 mac 180259 bytes_out 0 180259 bytes_in 0 180259 station_ip 113.203.69.83 180259 port 200 180259 unique_id port 180259 remote_ip 10.8.0.34 180261 username mostafa_es78 180261 mac 180261 bytes_out 0 180261 bytes_in 0 180261 station_ip 113.203.50.244 180261 port 200 180261 unique_id port 180261 remote_ip 10.8.0.34 180265 username mostafa_es78 180265 mac 180265 bytes_out 0 180265 bytes_in 0 180265 station_ip 113.203.69.83 180265 port 203 180265 unique_id port 180265 remote_ip 10.8.0.34 180267 username mohammadjavad 180267 mac 180267 bytes_out 0 180267 bytes_in 0 180267 station_ip 83.123.15.7 180267 port 200 180267 unique_id port 180267 remote_ip 10.8.0.110 180273 username barzegar 180273 mac 180273 bytes_out 0 180273 bytes_in 0 180273 station_ip 5.119.195.192 180273 port 187 180273 unique_id port 180273 remote_ip 10.8.0.10 180276 username mostafa_es78 180276 mac 180276 bytes_out 0 180276 bytes_in 0 180276 station_ip 113.203.50.244 180276 port 174 180276 unique_id port 180276 remote_ip 10.8.0.34 180278 username meysam 180278 mac 180278 bytes_out 2541589 180278 bytes_in 34349950 180278 station_ip 188.159.251.162 180278 port 201 180278 unique_id port 180278 remote_ip 10.8.0.158 180279 username sedighe 180279 mac 180279 bytes_out 230204 180279 bytes_in 684425 180279 station_ip 83.123.64.246 180279 port 196 180279 unique_id port 180279 remote_ip 10.8.0.46 180285 username barzegar 180285 mac 180285 bytes_out 3017 180285 bytes_in 4992 180285 station_ip 5.119.195.192 180285 port 196 180285 unique_id port 180285 remote_ip 10.8.0.10 180288 username mostafa_es78 180288 mac 180288 bytes_out 965657 180288 bytes_in 10656386 180288 station_ip 113.203.69.83 180288 port 201 180288 unique_id port 180288 remote_ip 10.8.0.34 180290 username aminvpn 180290 mac 180290 bytes_out 0 180290 bytes_in 0 180290 station_ip 5.120.29.137 180290 port 202 180290 unique_id port 180290 remote_ip 10.8.0.58 180292 username mostafa_es78 180292 mac 180292 bytes_out 0 180292 bytes_in 0 180292 station_ip 113.203.69.83 180292 port 203 180292 unique_id port 180292 remote_ip 10.8.0.34 180296 username mostafa_es78 180296 mac 180296 bytes_out 318205 180296 bytes_in 5374311 180296 station_ip 113.203.69.83 180296 port 203 180296 unique_id port 180296 remote_ip 10.8.0.34 180297 username mostafa_es78 180297 mac 180297 bytes_out 0 180297 bytes_in 0 180297 station_ip 178.236.35.96 180297 port 207 180297 unique_id port 180297 remote_ip 10.8.0.34 180300 username mostafa_es78 180300 mac 180300 bytes_out 0 180300 bytes_in 0 180300 station_ip 178.236.35.96 180300 port 207 180300 unique_id port 180300 remote_ip 10.8.0.34 180301 username mostafa_es78 180301 mac 180277 unique_id port 180277 remote_ip 10.8.0.222 180280 username mostafa_es78 180280 mac 180280 bytes_out 0 180280 bytes_in 0 180280 station_ip 113.203.69.83 180280 port 187 180280 unique_id port 180280 remote_ip 10.8.0.34 180281 username mostafa_es78 180281 mac 180281 bytes_out 0 180281 bytes_in 0 180281 station_ip 113.203.50.244 180281 port 196 180281 unique_id port 180281 remote_ip 10.8.0.34 180282 username aminvpn 180282 mac 180282 bytes_out 0 180282 bytes_in 0 180282 station_ip 5.120.29.137 180282 port 196 180282 unique_id port 180282 remote_ip 10.8.0.58 180283 username mostafa_es78 180283 mac 180283 bytes_out 0 180283 bytes_in 0 180283 station_ip 113.203.69.83 180283 port 201 180283 unique_id port 180283 remote_ip 10.8.0.34 180284 username mostafa_es78 180284 mac 180284 bytes_out 0 180284 bytes_in 0 180284 station_ip 113.203.50.244 180284 port 202 180284 unique_id port 180284 remote_ip 10.8.0.34 180294 username aminvpn 180294 mac 180294 bytes_out 0 180294 bytes_in 0 180294 station_ip 5.120.29.137 180294 port 202 180294 unique_id port 180294 remote_ip 10.8.0.58 180298 username mostafa_es78 180298 mac 180298 bytes_out 0 180298 bytes_in 0 180298 station_ip 113.203.69.83 180298 port 203 180298 unique_id port 180298 remote_ip 10.8.0.34 180302 username mostafa_es78 180302 mac 180302 bytes_out 0 180302 bytes_in 0 180302 station_ip 178.236.35.96 180302 port 207 180302 unique_id port 180302 remote_ip 10.8.0.34 180303 username mohammadjavad 180303 mac 180303 bytes_out 415323 180303 bytes_in 7085844 180303 station_ip 83.123.15.7 180303 port 202 180303 unique_id port 180303 remote_ip 10.8.0.110 180306 username soleymani5056 180306 mac 180306 bytes_out 46013 180306 bytes_in 74564 180306 station_ip 5.120.45.129 180306 port 203 180306 unique_id port 180306 remote_ip 10.8.0.226 180307 username mostafa_es78 180307 mac 180307 bytes_out 0 180307 bytes_in 0 180307 station_ip 178.236.35.96 180307 port 202 180307 unique_id port 180307 remote_ip 10.8.0.34 180312 username saeed9658 180312 kill_reason Relative expiration date has reached 180312 mac 180312 bytes_out 0 180312 bytes_in 0 180312 station_ip 5.119.20.195 180312 port 202 180312 unique_id port 180315 username mohammadjavad 180315 mac 180315 bytes_out 134346 180315 bytes_in 2108904 180315 station_ip 83.123.15.7 180315 port 187 180315 unique_id port 180315 remote_ip 10.8.0.110 180319 username saeed9658 180319 kill_reason Relative expiration date has reached 180319 mac 180319 bytes_out 0 180319 bytes_in 0 180319 station_ip 46.225.212.179 180319 port 187 180319 unique_id port 180320 username mostafa_es78 180320 mac 180320 bytes_out 0 180320 bytes_in 0 180320 station_ip 113.203.69.83 180320 port 201 180320 unique_id port 180320 remote_ip 10.8.0.34 180322 username mostafa_es78 180322 mac 180322 bytes_out 0 180322 bytes_in 0 180322 station_ip 178.236.35.96 180322 port 203 180322 unique_id port 180322 remote_ip 10.8.0.34 180323 username mostafa_es78 180323 mac 180323 bytes_out 0 180323 bytes_in 0 180323 station_ip 178.236.35.96 180323 port 187 180323 unique_id port 180323 remote_ip 10.8.0.34 180325 username mostafa_es78 180325 mac 180325 bytes_out 0 180325 bytes_in 0 180325 station_ip 113.203.69.83 180325 port 203 180325 unique_id port 180325 remote_ip 10.8.0.34 180327 username barzegar 180327 mac 180327 bytes_out 3256 180327 bytes_in 5300 180327 station_ip 5.119.195.192 180327 port 187 180327 unique_id port 180301 bytes_out 0 180301 bytes_in 0 180301 station_ip 113.203.69.83 180301 port 201 180301 unique_id port 180301 remote_ip 10.8.0.34 180305 username aminvpn 180305 mac 180305 bytes_out 1644 180305 bytes_in 5089 180305 station_ip 5.120.29.137 180305 port 201 180305 unique_id port 180305 remote_ip 10.8.0.58 180308 username yaghobi 180308 mac 180308 bytes_out 1623018 180308 bytes_in 12570110 180308 station_ip 83.123.54.88 180308 port 187 180308 unique_id port 180308 remote_ip 10.8.0.138 180311 username mostafa_es78 180311 mac 180311 bytes_out 0 180311 bytes_in 0 180311 station_ip 113.203.69.83 180311 port 203 180311 unique_id port 180311 remote_ip 10.8.0.34 180314 username saeed9658 180314 kill_reason Relative expiration date has reached 180314 mac 180314 bytes_out 0 180314 bytes_in 0 180314 station_ip 5.119.20.195 180314 port 201 180314 unique_id port 180317 username saeed9658 180317 kill_reason Relative expiration date has reached 180317 mac 180317 bytes_out 0 180317 bytes_in 0 180317 station_ip 5.119.20.195 180317 port 201 180317 unique_id port 180318 username mostafa_es78 180318 mac 180318 bytes_out 0 180318 bytes_in 0 180318 station_ip 178.236.35.96 180318 port 187 180318 unique_id port 180318 remote_ip 10.8.0.34 180321 username mohammadjavad 180321 mac 180321 bytes_out 0 180321 bytes_in 0 180321 station_ip 83.123.15.7 180321 port 187 180321 unique_id port 180321 remote_ip 10.8.0.110 180326 username kalantary6037 180326 mac 180326 bytes_out 125513 180326 bytes_in 232151 180326 station_ip 83.123.92.222 180326 port 202 180326 unique_id port 180326 remote_ip 10.8.0.50 180331 username saeed9658 180331 kill_reason Maximum number of concurrent logins reached 180331 mac 180331 bytes_out 0 180331 bytes_in 0 180331 station_ip 5.119.20.195 180331 port 187 180331 unique_id port 180336 username pourshad 180336 mac 180336 bytes_out 505203 180336 bytes_in 3324361 180336 station_ip 5.120.134.133 180336 port 174 180336 unique_id port 180336 remote_ip 10.8.0.42 180339 username saeed9658 180339 mac 180339 bytes_out 0 180339 bytes_in 0 180339 station_ip 5.119.20.195 180339 port 187 180339 unique_id port 180339 remote_ip 10.8.0.162 180341 username barzegar 180341 mac 180341 bytes_out 3048 180341 bytes_in 5122 180341 station_ip 5.119.195.192 180341 port 174 180341 unique_id port 180341 remote_ip 10.8.0.10 180343 username hajghani 180343 mac 180343 bytes_out 325458 180343 bytes_in 1298365 180343 station_ip 5.200.98.244 180343 port 196 180343 unique_id port 180343 remote_ip 10.8.0.102 180344 username mostafa_es78 180344 mac 180344 bytes_out 0 180344 bytes_in 0 180344 station_ip 113.203.69.83 180344 port 174 180344 unique_id port 180344 remote_ip 10.8.0.34 180346 username aminvpn 180346 mac 180346 bytes_out 0 180346 bytes_in 0 180346 station_ip 5.120.29.137 180346 port 174 180346 unique_id port 180346 remote_ip 10.8.0.58 180348 username yaghobi 180348 mac 180348 bytes_out 81344 180348 bytes_in 363680 180348 station_ip 83.123.38.8 180348 port 196 180348 unique_id port 180348 remote_ip 10.8.0.138 180349 username mostafa_es78 180349 mac 180349 bytes_out 0 180349 bytes_in 0 180349 station_ip 113.203.69.83 180349 port 207 180349 unique_id port 180349 remote_ip 10.8.0.34 180352 username hajghani 180352 mac 180352 bytes_out 14597 180352 bytes_in 18732 180352 station_ip 5.200.98.244 180352 port 187 180352 unique_id port 180352 remote_ip 10.8.0.102 180355 username mostafa_es78 180355 mac 180355 bytes_out 0 180313 station_ip 178.236.35.96 180313 port 201 180313 unique_id port 180313 remote_ip 10.8.0.34 180316 username mostafa_es78 180316 mac 180316 bytes_out 0 180316 bytes_in 0 180316 station_ip 113.203.69.83 180316 port 202 180316 unique_id port 180316 remote_ip 10.8.0.34 180324 username mohammadjavad 180324 mac 180324 bytes_out 0 180324 bytes_in 0 180324 station_ip 83.123.15.7 180324 port 201 180324 unique_id port 180324 remote_ip 10.8.0.110 180328 username mostafa_es78 180328 mac 180328 bytes_out 0 180328 bytes_in 0 180328 station_ip 178.236.35.96 180328 port 201 180328 unique_id port 180328 remote_ip 10.8.0.34 180330 username mostafa_es78 180330 mac 180330 bytes_out 0 180330 bytes_in 0 180330 station_ip 113.203.69.83 180330 port 187 180330 unique_id port 180330 remote_ip 10.8.0.34 180334 username mostafa_es78 180334 mac 180334 bytes_out 0 180334 bytes_in 0 180334 station_ip 178.236.35.96 180334 port 202 180334 unique_id port 180334 remote_ip 10.8.0.34 180337 username mostafa_es78 180337 mac 180337 bytes_out 0 180337 bytes_in 0 180337 station_ip 113.203.69.83 180337 port 187 180337 unique_id port 180337 remote_ip 10.8.0.34 180338 username saeed9658 180338 kill_reason Maximum check online fails reached 180338 mac 180338 bytes_out 0 180338 bytes_in 0 180338 station_ip 5.119.20.195 180338 port 203 180338 unique_id port 180340 username farhad3 180340 kill_reason Another user logged on this global unique id 180340 mac 180340 bytes_out 0 180340 bytes_in 0 180340 station_ip 5.119.230.85 180340 port 190 180340 unique_id port 180340 remote_ip 10.8.0.222 180345 username saeed9658 180345 mac 180345 bytes_out 2106 180345 bytes_in 4770 180345 station_ip 5.119.20.195 180345 port 207 180345 unique_id port 180345 remote_ip 10.8.0.162 180347 username mostafa_es78 180347 mac 180347 bytes_out 230244 180347 bytes_in 1441714 180347 station_ip 178.236.35.96 180347 port 202 180347 unique_id port 180347 remote_ip 10.8.0.34 180351 username morteza 180351 kill_reason Relative expiration date has reached 180351 mac 180351 bytes_out 0 180351 bytes_in 0 180351 station_ip 83.123.95.199 180351 port 196 180351 unique_id port 180353 username godarzi 180353 kill_reason Another user logged on this global unique id 180353 mac 180353 bytes_out 0 180353 bytes_in 0 180353 station_ip 5.120.0.215 180353 port 184 180353 unique_id port 180354 username aminvpn 180377 username aminvpn 180354 kill_reason Maximum check online fails reached 180354 mac 180354 bytes_out 0 180354 bytes_in 0 180354 station_ip 5.120.29.137 180354 port 174 180354 unique_id port 180358 username mostafa_es78 180358 mac 180358 bytes_out 0 180358 bytes_in 0 180358 station_ip 178.236.35.96 180358 port 187 180358 unique_id port 180358 remote_ip 10.8.0.34 180362 username meysam 180362 kill_reason Another user logged on this global unique id 180362 mac 180362 bytes_out 0 180362 bytes_in 0 180362 station_ip 188.159.251.162 180362 port 205 180362 unique_id port 180362 remote_ip 10.8.0.158 180363 username mostafa_es78 180363 mac 180363 bytes_out 0 180363 bytes_in 0 180363 station_ip 113.203.69.83 180363 port 207 180363 unique_id port 180363 remote_ip 10.8.0.34 180365 username hamid.e 180365 unique_id port 180365 terminate_cause User-Request 180365 bytes_out 5586974 180365 bytes_in 103814443 180365 station_ip 37.27.21.111 180365 port 15728781 180365 nas_port_type Virtual 180365 remote_ip 5.5.5.233 180367 username mostafa_es78 180367 mac 180367 bytes_out 0 180367 bytes_in 0 180367 station_ip 113.203.69.83 180367 port 184 180367 unique_id port 180327 remote_ip 10.8.0.10 180329 username mohammadjavad 180329 mac 180329 bytes_out 0 180329 bytes_in 0 180329 station_ip 83.123.15.7 180329 port 202 180329 unique_id port 180329 remote_ip 10.8.0.110 180332 username saeed9658 180332 kill_reason Maximum number of concurrent logins reached 180332 mac 180332 bytes_out 0 180332 bytes_in 0 180332 station_ip 5.119.20.195 180332 port 187 180332 unique_id port 180333 username barzegar 180333 mac 180333 bytes_out 0 180333 bytes_in 0 180333 station_ip 5.119.195.192 180333 port 187 180333 unique_id port 180333 remote_ip 10.8.0.10 180335 username saeed9658 180335 mac 180335 bytes_out 11142 180335 bytes_in 10518 180335 station_ip 46.225.212.179 180335 port 201 180335 unique_id port 180335 remote_ip 10.8.0.162 180342 username mostafa_es78 180342 mac 180342 bytes_out 0 180342 bytes_in 0 180342 station_ip 178.236.35.96 180342 port 202 180342 unique_id port 180342 remote_ip 10.8.0.34 180350 username mostafa_es78 180350 mac 180350 bytes_out 0 180350 bytes_in 0 180350 station_ip 178.236.35.96 180350 port 196 180350 unique_id port 180350 remote_ip 10.8.0.34 180356 username mostafa_es78 180356 mac 180356 bytes_out 0 180356 bytes_in 0 180356 station_ip 178.236.35.96 180356 port 187 180356 unique_id port 180356 remote_ip 10.8.0.34 180357 username mostafa_es78 180357 mac 180357 bytes_out 0 180357 bytes_in 0 180357 station_ip 113.203.69.83 180357 port 207 180357 unique_id port 180357 remote_ip 10.8.0.34 180359 username mostafa_es78 180359 mac 180359 bytes_out 0 180359 bytes_in 0 180359 station_ip 113.203.69.83 180359 port 207 180359 unique_id port 180359 remote_ip 10.8.0.34 180361 username mostafa_es78 180361 mac 180361 bytes_out 0 180361 bytes_in 0 180361 station_ip 178.236.35.96 180361 port 187 180361 unique_id port 180361 remote_ip 10.8.0.34 180366 username mostafa_es78 180366 mac 180366 bytes_out 0 180366 bytes_in 0 180366 station_ip 178.236.35.96 180366 port 187 180366 unique_id port 180366 remote_ip 10.8.0.34 180373 username mostafa_es78 180373 mac 180373 bytes_out 0 180373 bytes_in 0 180373 station_ip 113.203.69.83 180373 port 208 180373 unique_id port 180373 remote_ip 10.8.0.34 180375 username ahmadi1 180375 mac 180375 bytes_out 0 180375 bytes_in 0 180375 station_ip 83.123.114.171 180375 port 187 180375 unique_id port 180375 remote_ip 10.8.0.94 180377 mac 180377 bytes_out 550840 180377 bytes_in 5973977 180377 station_ip 5.120.81.85 180377 port 207 180377 unique_id port 180377 remote_ip 10.8.0.58 180379 username ahmadi1 180379 mac 180379 bytes_out 0 180379 bytes_in 0 180379 station_ip 83.123.114.171 180379 port 202 180379 unique_id port 180379 remote_ip 10.8.0.94 180380 username ahmadi1 180380 mac 180380 bytes_out 0 180380 bytes_in 0 180380 station_ip 83.123.114.171 180380 port 207 180380 unique_id port 180380 remote_ip 10.8.0.94 180382 username aminvpn 180382 mac 180382 bytes_out 0 180382 bytes_in 0 180382 station_ip 5.120.81.85 180382 port 202 180382 unique_id port 180382 remote_ip 10.8.0.58 180385 username hajghani 180385 mac 180385 bytes_out 26177 180385 bytes_in 34204 180385 station_ip 5.200.98.244 180385 port 196 180385 unique_id port 180385 remote_ip 10.8.0.102 180387 username aminvpn 180387 kill_reason Maximum check online fails reached 180387 mac 180387 bytes_out 0 180387 bytes_in 0 180387 station_ip 5.120.29.137 180387 port 211 180387 unique_id port 180390 username mohammadjavad 180355 bytes_in 0 180355 station_ip 113.203.69.83 180355 port 207 180355 unique_id port 180355 remote_ip 10.8.0.34 180360 username aminvpn 180360 unique_id port 180360 terminate_cause Lost-Carrier 180360 bytes_out 1898586 180360 bytes_in 37729657 180360 station_ip 31.57.120.164 180360 port 15728783 180360 nas_port_type Virtual 180360 remote_ip 5.5.5.209 180364 username godarzi 180364 mac 180364 bytes_out 0 180364 bytes_in 0 180364 station_ip 5.120.0.215 180364 port 184 180364 unique_id port 180370 username barzegar 180370 mac 180370 bytes_out 0 180370 bytes_in 0 180370 station_ip 5.119.195.192 180370 port 187 180370 unique_id port 180370 remote_ip 10.8.0.10 180371 username mostafa_es78 180371 mac 180371 bytes_out 0 180371 bytes_in 0 180371 station_ip 113.203.69.83 180371 port 208 180371 unique_id port 180371 remote_ip 10.8.0.34 180372 username mostafa_es78 180372 mac 180372 bytes_out 0 180372 bytes_in 0 180372 station_ip 178.236.35.96 180372 port 187 180372 unique_id port 180372 remote_ip 10.8.0.34 180376 username saeeddamghani 180376 unique_id port 180376 terminate_cause User-Request 180376 bytes_out 352202 180376 bytes_in 6663115 180376 station_ip 83.123.97.127 180376 port 15728787 180376 nas_port_type Virtual 180376 remote_ip 5.5.5.206 180378 username aminvpn 180378 mac 180378 bytes_out 0 180378 bytes_in 0 180378 station_ip 5.120.29.137 180378 port 202 180378 unique_id port 180378 remote_ip 10.8.0.58 180381 username aminvpn 180381 mac 180381 bytes_out 526937 180381 bytes_in 7014819 180381 station_ip 5.120.81.85 180381 port 202 180381 unique_id port 180381 remote_ip 10.8.0.58 180384 username khalili2 180384 mac 180384 bytes_out 0 180384 bytes_in 0 180384 station_ip 5.119.99.166 180384 port 173 180384 unique_id port 180386 username meysam 180386 mac 180386 bytes_out 0 180386 bytes_in 0 180386 station_ip 188.159.251.162 180386 port 205 180386 unique_id port 180388 username aminvpn 180388 mac 180388 bytes_out 404043 180388 bytes_in 2297776 180388 station_ip 5.120.81.85 180388 port 202 180388 unique_id port 180388 remote_ip 10.8.0.58 180395 username yaghobi 180395 mac 180395 bytes_out 1184536 180395 bytes_in 10836326 180395 station_ip 83.123.56.232 180395 port 208 180395 unique_id port 180395 remote_ip 10.8.0.138 180397 username pourshad 180397 mac 180397 bytes_out 379109 180397 bytes_in 4179381 180397 station_ip 5.120.134.133 180397 port 187 180397 unique_id port 180397 remote_ip 10.8.0.42 180400 username farhad3 180400 kill_reason Another user logged on this global unique id 180400 mac 180400 bytes_out 0 180400 bytes_in 0 180400 station_ip 5.119.230.85 180400 port 190 180400 unique_id port 180401 username khademi 180401 kill_reason Another user logged on this global unique id 180401 mac 180401 bytes_out 0 180401 bytes_in 0 180401 station_ip 83.123.54.146 180401 port 189 180401 unique_id port 180402 username mostafa_es78 180402 kill_reason Another user logged on this global unique id 180402 mac 180402 bytes_out 0 180402 bytes_in 0 180402 station_ip 178.236.35.96 180402 port 209 180402 unique_id port 180402 remote_ip 10.8.0.34 180412 username fezealinaghi 180412 mac 180412 bytes_out 1164305 180412 bytes_in 12591350 180412 station_ip 83.123.54.151 180412 port 187 180412 unique_id port 180412 remote_ip 10.8.0.202 180414 username aminvpn 180414 mac 180414 bytes_out 1585 180414 bytes_in 3502 180414 station_ip 5.120.29.137 180414 port 184 180414 unique_id port 180414 remote_ip 10.8.0.58 180415 username nilufarrajaei 180415 mac 180367 remote_ip 10.8.0.34 180368 username godarzi 180368 mac 180368 bytes_out 15263 180368 bytes_in 34470 180368 station_ip 5.120.0.215 180368 port 207 180368 unique_id port 180368 remote_ip 10.8.0.38 180369 username mostafa_es78 180369 mac 180369 bytes_out 0 180369 bytes_in 0 180369 station_ip 178.236.35.96 180369 port 187 180369 unique_id port 180369 remote_ip 10.8.0.34 180374 username yaghobi 180374 mac 180374 bytes_out 1827820 180374 bytes_in 33377226 180374 station_ip 83.123.56.232 180374 port 202 180374 unique_id port 180374 remote_ip 10.8.0.138 180383 username barzegar 180383 mac 180383 bytes_out 0 180383 bytes_in 0 180383 station_ip 5.119.195.192 180383 port 207 180383 unique_id port 180383 remote_ip 10.8.0.10 180389 username kordestani 180389 mac 180389 bytes_out 1301342 180389 bytes_in 2518494 180389 station_ip 151.235.101.180 180389 port 210 180389 unique_id port 180389 remote_ip 10.8.0.130 180393 username ahmadi1 180393 mac 180393 bytes_out 0 180393 bytes_in 0 180393 station_ip 83.123.114.171 180393 port 205 180393 unique_id port 180393 remote_ip 10.8.0.94 180396 username barzegar 180396 mac 180396 bytes_out 3648 180396 bytes_in 5812 180396 station_ip 5.119.195.192 180396 port 196 180396 unique_id port 180396 remote_ip 10.8.0.10 180398 username fezealinaghi 180398 mac 180398 bytes_out 151321 180398 bytes_in 828489 180398 station_ip 83.123.54.151 180398 port 202 180398 unique_id port 180398 remote_ip 10.8.0.202 180404 username sedighe 180404 mac 180404 bytes_out 42884 180404 bytes_in 173667 180404 station_ip 83.123.64.246 180404 port 196 180404 unique_id port 180404 remote_ip 10.8.0.46 180407 username mosi 180407 kill_reason Another user logged on this global unique id 180407 mac 180407 bytes_out 0 180407 bytes_in 0 180407 station_ip 151.235.83.58 180407 port 195 180407 unique_id port 180407 remote_ip 10.8.0.142 180409 username aminvpn 180409 mac 180409 bytes_out 0 180409 bytes_in 0 180409 station_ip 5.120.29.137 180409 port 202 180409 unique_id port 180409 remote_ip 10.8.0.58 180413 username barzegar 180413 mac 180413 bytes_out 0 180413 bytes_in 0 180413 station_ip 5.119.195.192 180413 port 187 180413 unique_id port 180413 remote_ip 10.8.0.10 180419 username barzegar 180419 mac 180419 bytes_out 17941 180419 bytes_in 43561 180419 station_ip 5.119.195.192 180419 port 187 180419 unique_id port 180419 remote_ip 10.8.0.10 180421 username khademi 180421 kill_reason Another user logged on this global unique id 180421 mac 180421 bytes_out 0 180421 bytes_in 0 180421 station_ip 83.123.54.146 180421 port 189 180421 unique_id port 180422 username hajghani 180422 mac 180422 bytes_out 937241 180422 bytes_in 2902193 180422 station_ip 5.200.98.244 180422 port 173 180422 unique_id port 180422 remote_ip 10.8.0.102 180423 username godarzi 180423 mac 180423 bytes_out 6306835 180423 bytes_in 28172641 180423 station_ip 5.120.0.215 180423 port 207 180423 unique_id port 180423 remote_ip 10.8.0.38 180425 username hajghani 180425 mac 180425 bytes_out 12931 180425 bytes_in 12193 180425 station_ip 5.200.98.244 180425 port 205 180425 unique_id port 180425 remote_ip 10.8.0.102 180427 username hajghani 180427 mac 180427 bytes_out 196155 180427 bytes_in 1759119 180427 station_ip 46.225.212.179 180427 port 173 180427 unique_id port 180427 remote_ip 10.8.0.102 180430 username yaghobi 180430 mac 180430 bytes_out 285902 180430 bytes_in 322021 180430 station_ip 83.123.106.207 180430 port 184 180390 mac 180390 bytes_out 1084854 180390 bytes_in 15053971 180390 station_ip 83.123.15.7 180390 port 201 180390 unique_id port 180390 remote_ip 10.8.0.110 180391 username nilufarrajaei 180391 mac 180391 bytes_out 69938 180391 bytes_in 229211 180391 station_ip 83.123.104.175 180391 port 212 180391 unique_id port 180391 remote_ip 10.8.0.194 180392 username ahmadi1 180392 mac 180392 bytes_out 0 180392 bytes_in 0 180392 station_ip 83.123.114.171 180392 port 202 180392 unique_id port 180392 remote_ip 10.8.0.94 180394 username houshang 180394 mac 180394 bytes_out 1595950 180394 bytes_in 20835667 180394 station_ip 5.119.216.181 180394 port 184 180394 unique_id port 180394 remote_ip 10.8.0.82 180399 username ahmadi1 180399 mac 180399 bytes_out 0 180399 bytes_in 0 180399 station_ip 83.123.114.171 180399 port 196 180399 unique_id port 180399 remote_ip 10.8.0.94 180403 username aminvpn 180403 mac 180403 bytes_out 0 180403 bytes_in 0 180403 station_ip 5.120.29.137 180403 port 202 180403 unique_id port 180403 remote_ip 10.8.0.58 180405 username khalili2 180405 mac 180405 bytes_out 34989 180405 bytes_in 58752 180405 station_ip 5.119.99.166 180405 port 213 180405 unique_id port 180405 remote_ip 10.8.0.118 180406 username barzegar 180406 mac 180406 bytes_out 0 180406 bytes_in 0 180406 station_ip 5.119.195.192 180406 port 205 180406 unique_id port 180406 remote_ip 10.8.0.10 180408 username ahmadi1 180408 mac 180408 bytes_out 36807 180408 bytes_in 384152 180408 station_ip 83.123.114.171 180408 port 202 180408 unique_id port 180408 remote_ip 10.8.0.94 180410 username aminvpn 180410 unique_id port 180410 terminate_cause Lost-Carrier 180410 bytes_out 521009 180410 bytes_in 1783722 180410 station_ip 83.123.60.185 180410 port 15728785 180410 nas_port_type Virtual 180410 remote_ip 5.5.5.208 180411 username yaghobi 180411 mac 180411 bytes_out 561575 180411 bytes_in 817849 180411 station_ip 83.123.56.232 180411 port 184 180411 unique_id port 180411 remote_ip 10.8.0.138 180416 username fezealinaghi 180416 mac 180416 bytes_out 25737 180416 bytes_in 32444 180416 station_ip 83.123.54.151 180416 port 184 180416 unique_id port 180416 remote_ip 10.8.0.202 180417 username yaghobi 180417 mac 180417 bytes_out 54569 180417 bytes_in 63172 180417 station_ip 83.123.52.229 180417 port 205 180417 unique_id port 180417 remote_ip 10.8.0.138 180424 username ahmadi1 180424 mac 180424 bytes_out 1695 180424 bytes_in 4586 180424 station_ip 83.123.114.171 180424 port 173 180424 unique_id port 180424 remote_ip 10.8.0.94 180426 username mostafa_es78 180426 mac 180426 bytes_out 0 180426 bytes_in 0 180426 station_ip 178.236.35.96 180426 port 209 180426 unique_id port 180428 username farhad3 180428 kill_reason Another user logged on this global unique id 180428 mac 180428 bytes_out 0 180428 bytes_in 0 180428 station_ip 5.119.230.85 180428 port 190 180428 unique_id port 180429 username meysam 180429 mac 180429 bytes_out 413030 180429 bytes_in 5005637 180429 station_ip 188.158.50.221 180429 port 205 180429 unique_id port 180429 remote_ip 10.8.0.158 180432 username ahmadi1 180432 mac 180432 bytes_out 0 180432 bytes_in 0 180432 station_ip 83.123.114.171 180432 port 184 180432 unique_id port 180432 remote_ip 10.8.0.94 180433 username houshang 180433 mac 180433 bytes_out 690688 180433 bytes_in 3608615 180433 station_ip 5.119.216.181 180433 port 208 180433 unique_id port 180433 remote_ip 10.8.0.82 180439 username barzegar 180415 bytes_out 560144 180415 bytes_in 4655509 180415 station_ip 83.123.104.175 180415 port 201 180415 unique_id port 180415 remote_ip 10.8.0.194 180418 username aminvpn 180418 mac 180418 bytes_out 0 180418 bytes_in 0 180418 station_ip 5.120.29.137 180418 port 205 180418 unique_id port 180418 remote_ip 10.8.0.58 180420 username kalantary6037 180420 mac 180420 bytes_out 462977 180420 bytes_in 4231263 180420 station_ip 83.123.116.185 180420 port 208 180420 unique_id port 180420 remote_ip 10.8.0.50 180431 username godarzi 180431 mac 180431 bytes_out 69408 180431 bytes_in 105286 180431 station_ip 5.120.0.215 180431 port 207 180431 unique_id port 180431 remote_ip 10.8.0.38 180435 username yaghobi 180435 mac 180435 bytes_out 10916 180435 bytes_in 11353 180435 station_ip 83.123.106.207 180435 port 173 180435 unique_id port 180435 remote_ip 10.8.0.138 180437 username ahmadi1 180437 mac 180437 bytes_out 0 180437 bytes_in 0 180437 station_ip 83.123.114.171 180437 port 205 180437 unique_id port 180437 remote_ip 10.8.0.94 180440 username barzegar 180440 mac 180440 bytes_out 0 180440 bytes_in 0 180440 station_ip 5.119.195.192 180440 port 187 180440 unique_id port 180440 remote_ip 10.8.0.10 180441 username sabaghnezhad 180441 mac 180441 bytes_out 692998 180441 bytes_in 6112368 180441 station_ip 83.123.20.2 180441 port 210 180441 unique_id port 180441 remote_ip 10.8.0.66 180442 username aminvpn 180442 mac 180442 bytes_out 0 180442 bytes_in 0 180442 station_ip 5.120.29.137 180442 port 207 180442 unique_id port 180442 remote_ip 10.8.0.58 180451 username aminvpn 180451 mac 180451 bytes_out 0 180451 bytes_in 0 180451 station_ip 5.120.29.137 180451 port 184 180451 unique_id port 180451 remote_ip 10.8.0.58 180453 username barzegar 180453 mac 180453 bytes_out 0 180453 bytes_in 0 180453 station_ip 5.119.195.192 180453 port 184 180453 unique_id port 180453 remote_ip 10.8.0.10 180455 username kalantary6037 180455 kill_reason Maximum check online fails reached 180455 mac 180455 bytes_out 0 180455 bytes_in 0 180455 station_ip 83.123.116.185 180455 port 184 180455 unique_id port 180457 username farhad3 180457 kill_reason Another user logged on this global unique id 180457 mac 180457 bytes_out 0 180457 bytes_in 0 180457 station_ip 5.119.230.85 180457 port 190 180457 unique_id port 180458 username aminvpn 180458 mac 180458 bytes_out 0 180458 bytes_in 0 180458 station_ip 5.120.29.137 180458 port 212 180458 unique_id port 180458 remote_ip 10.8.0.58 180464 username rajaei 180464 mac 180464 bytes_out 3499355 180464 bytes_in 41184623 180464 station_ip 89.47.70.45 180464 port 207 180464 unique_id port 180464 remote_ip 10.8.0.218 180465 username fezealinaghi 180465 kill_reason Another user logged on this global unique id 180465 mac 180465 bytes_out 0 180465 bytes_in 0 180465 station_ip 83.123.54.151 180465 port 201 180465 unique_id port 180470 username meysam 180470 mac 180470 bytes_out 832520 180470 bytes_in 10921100 180470 station_ip 188.158.50.221 180470 port 173 180470 unique_id port 180470 remote_ip 10.8.0.158 180473 username alihosseini1 180473 mac 180473 bytes_out 1332846 180473 bytes_in 11532293 180473 station_ip 5.120.17.42 180473 port 208 180473 unique_id port 180473 remote_ip 10.8.0.234 180477 username farhad3 180477 mac 180477 bytes_out 0 180477 bytes_in 0 180477 station_ip 5.119.230.85 180477 port 205 180477 unique_id port 180477 remote_ip 10.8.0.222 180478 username rajaei 180478 mac 180430 unique_id port 180430 remote_ip 10.8.0.138 180434 username barzegar 180434 mac 180434 bytes_out 0 180434 bytes_in 0 180434 station_ip 5.119.195.192 180434 port 184 180434 unique_id port 180434 remote_ip 10.8.0.10 180436 username barzegar 180436 mac 180436 bytes_out 0 180436 bytes_in 0 180436 station_ip 5.119.195.192 180436 port 173 180436 unique_id port 180436 remote_ip 10.8.0.10 180438 username aminvpn 180438 mac 180438 bytes_out 49599 180438 bytes_in 77105 180438 station_ip 5.120.29.137 180438 port 187 180438 unique_id port 180438 remote_ip 10.8.0.58 180443 username aminvpn 180443 unique_id port 180443 terminate_cause User-Request 180443 bytes_out 4512080 180443 bytes_in 95929998 180443 station_ip 5.160.113.187 180443 port 15728789 180443 nas_port_type Virtual 180443 remote_ip 5.5.5.205 180444 username farhad3 180444 kill_reason Another user logged on this global unique id 180444 mac 180444 bytes_out 0 180444 bytes_in 0 180444 station_ip 5.119.230.85 180444 port 190 180444 unique_id port 180445 username ahmadi1 180445 mac 180445 bytes_out 0 180445 bytes_in 0 180445 station_ip 83.123.114.171 180445 port 208 180445 unique_id port 180445 remote_ip 10.8.0.94 180446 username mohammadjavad 180446 mac 180446 bytes_out 45410 180446 bytes_in 100701 180446 station_ip 83.123.12.171 180446 port 187 180446 unique_id port 180446 remote_ip 10.8.0.110 180450 username fezealinaghi 180450 kill_reason Another user logged on this global unique id 180450 mac 180450 bytes_out 0 180450 bytes_in 0 180450 station_ip 83.123.54.151 180450 port 201 180450 unique_id port 180450 remote_ip 10.8.0.202 180452 username aminvpn 180452 mac 180452 bytes_out 0 180452 bytes_in 0 180452 station_ip 5.120.29.137 180452 port 207 180452 unique_id port 180452 remote_ip 10.8.0.58 180454 username rajaei 180454 mac 180454 bytes_out 0 180454 bytes_in 0 180454 station_ip 89.47.70.45 180454 port 187 180454 unique_id port 180454 remote_ip 10.8.0.218 180456 username ahmadi1 180456 mac 180456 bytes_out 0 180456 bytes_in 0 180456 station_ip 83.123.114.171 180456 port 210 180456 unique_id port 180456 remote_ip 10.8.0.94 180459 username sekonji0496 180459 mac 180459 bytes_out 45919 180459 bytes_in 156199 180459 station_ip 83.123.106.127 180459 port 187 180459 unique_id port 180459 remote_ip 10.8.0.62 180461 username yaghobi 180461 mac 180461 bytes_out 340983 180461 bytes_in 401050 180461 station_ip 83.123.32.93 180461 port 173 180461 unique_id port 180461 remote_ip 10.8.0.138 180463 username pourshad 180463 mac 180463 bytes_out 14384281 180463 bytes_in 30529284 180463 station_ip 5.120.134.133 180463 port 202 180463 unique_id port 180463 remote_ip 10.8.0.42 180468 username aminvpn 180468 mac 180468 bytes_out 0 180468 bytes_in 0 180468 station_ip 5.120.29.137 180468 port 202 180468 unique_id port 180468 remote_ip 10.8.0.58 180471 username pourshad 180471 mac 180471 bytes_out 58148 180471 bytes_in 358996 180471 station_ip 5.120.134.133 180471 port 187 180471 unique_id port 180471 remote_ip 10.8.0.42 180472 username aminvpn 180472 mac 180472 bytes_out 501766 180472 bytes_in 3549337 180472 station_ip 5.120.29.137 180472 port 209 180472 unique_id port 180472 remote_ip 10.8.0.58 180474 username aminvpn 180474 unique_id port 180474 terminate_cause Lost-Carrier 180474 bytes_out 2222145 180474 bytes_in 27307162 180474 station_ip 5.120.29.137 180474 port 15728788 180474 nas_port_type Virtual 180474 remote_ip 5.5.5.221 180475 username farhad3 180475 mac 180475 bytes_out 0 180439 mac 180439 bytes_out 0 180439 bytes_in 0 180439 station_ip 5.119.195.192 180439 port 173 180439 unique_id port 180439 remote_ip 10.8.0.10 180447 username barzegar 180447 mac 180447 bytes_out 4236 180447 bytes_in 5437 180447 station_ip 5.119.195.192 180447 port 207 180447 unique_id port 180447 remote_ip 10.8.0.10 180448 username godarzi 180448 mac 180448 bytes_out 8493836 180448 bytes_in 469040 180448 station_ip 5.120.0.215 180448 port 173 180448 unique_id port 180448 remote_ip 10.8.0.38 180449 username yaghobi 180449 mac 180449 bytes_out 226286 180449 bytes_in 278559 180449 station_ip 83.123.32.93 180449 port 184 180449 unique_id port 180449 remote_ip 10.8.0.138 180460 username barzegar 180460 mac 180460 bytes_out 0 180460 bytes_in 0 180460 station_ip 5.119.195.192 180460 port 209 180460 unique_id port 180460 remote_ip 10.8.0.10 180462 username aminvpn 180462 mac 180462 bytes_out 0 180462 bytes_in 0 180462 station_ip 5.120.29.137 180462 port 187 180462 unique_id port 180462 remote_ip 10.8.0.58 180466 username barzegar 180466 mac 180466 bytes_out 10631 180466 bytes_in 19522 180466 station_ip 5.119.195.192 180466 port 202 180466 unique_id port 180466 remote_ip 10.8.0.10 180467 username yaghobi 180467 mac 180467 bytes_out 43110 180467 bytes_in 53982 180467 station_ip 83.123.32.24 180467 port 209 180467 unique_id port 180467 remote_ip 10.8.0.138 180469 username aminvpn 180469 mac 180469 bytes_out 0 180469 bytes_in 0 180469 station_ip 5.120.29.137 180469 port 207 180469 unique_id port 180469 remote_ip 10.8.0.58 180479 username aminvpn 180479 mac 180479 bytes_out 0 180479 bytes_in 0 180479 station_ip 5.120.29.137 180479 port 207 180479 unique_id port 180479 remote_ip 10.8.0.58 180481 username ahmadi1 180481 mac 180481 bytes_out 0 180481 bytes_in 0 180481 station_ip 83.123.114.171 180481 port 213 180481 unique_id port 180481 remote_ip 10.8.0.94 180483 username soleymani5056 180483 mac 180483 bytes_out 49511 180483 bytes_in 168377 180483 station_ip 5.120.0.134 180483 port 207 180483 unique_id port 180483 remote_ip 10.8.0.226 180490 username ahmadi1 180490 kill_reason Maximum check online fails reached 180490 mac 180490 bytes_out 0 180490 bytes_in 0 180490 station_ip 83.123.114.171 180490 port 173 180490 unique_id port 180493 username fezealinaghi 180493 kill_reason Another user logged on this global unique id 180493 mac 180493 bytes_out 0 180493 bytes_in 0 180493 station_ip 83.123.54.151 180493 port 201 180493 unique_id port 180497 username barzegar 180497 mac 180497 bytes_out 0 180497 bytes_in 0 180497 station_ip 5.119.195.192 180497 port 205 180497 unique_id port 180497 remote_ip 10.8.0.10 180499 username aminvpn 180499 mac 180499 bytes_out 0 180499 bytes_in 0 180499 station_ip 5.120.29.137 180499 port 187 180499 unique_id port 180499 remote_ip 10.8.0.58 180500 username ahmadi1 180500 mac 180500 bytes_out 0 180500 bytes_in 0 180500 station_ip 83.123.114.171 180500 port 207 180500 unique_id port 180500 remote_ip 10.8.0.94 180501 username aminvpn 180501 kill_reason Maximum check online fails reached 180501 mac 180501 bytes_out 0 180501 bytes_in 0 180501 station_ip 5.120.29.137 180501 port 205 180501 unique_id port 180504 username majidsarmast 180504 mac 180504 bytes_out 212072 180504 bytes_in 1759358 180504 station_ip 83.123.50.144 180504 port 187 180504 unique_id port 180504 remote_ip 10.8.0.170 180505 username Mahin 180505 kill_reason Relative expiration date has reached 180475 bytes_in 0 180475 station_ip 5.119.230.85 180475 port 190 180475 unique_id port 180476 username sabaghnezhad 180476 mac 180476 bytes_out 205759 180476 bytes_in 573924 180476 station_ip 83.123.20.2 180476 port 205 180476 unique_id port 180476 remote_ip 10.8.0.66 180480 username soleymani5056 180480 mac 180480 bytes_out 389226 180480 bytes_in 1097855 180480 station_ip 5.119.82.113 180480 port 210 180480 unique_id port 180480 remote_ip 10.8.0.226 180482 username farhad3 180482 mac 180482 bytes_out 202145 180482 bytes_in 1214276 180482 station_ip 5.119.230.85 180482 port 205 180482 unique_id port 180482 remote_ip 10.8.0.222 180484 username ahmadi1 180484 mac 180484 bytes_out 0 180484 bytes_in 0 180484 station_ip 83.123.114.171 180484 port 205 180484 unique_id port 180484 remote_ip 10.8.0.94 180486 username mosi 180486 kill_reason Another user logged on this global unique id 180486 mac 180486 bytes_out 0 180486 bytes_in 0 180486 station_ip 151.235.83.58 180486 port 195 180486 unique_id port 180488 username aminvpn 180488 mac 180488 bytes_out 0 180488 bytes_in 0 180488 station_ip 5.120.29.137 180488 port 173 180488 unique_id port 180488 remote_ip 10.8.0.58 180492 username houshang 180492 mac 180492 bytes_out 24158 180492 bytes_in 39137 180492 station_ip 5.119.197.195 180492 port 187 180492 unique_id port 180492 remote_ip 10.8.0.82 180494 username jafari 180494 mac 180494 bytes_out 1307710 180494 bytes_in 10932311 180494 station_ip 89.47.144.160 180494 port 212 180494 unique_id port 180494 remote_ip 10.8.0.86 180502 username mostafa_es78 180502 kill_reason Another user logged on this global unique id 180502 mac 180502 bytes_out 0 180502 bytes_in 0 180502 station_ip 178.236.35.96 180502 port 190 180502 unique_id port 180502 remote_ip 10.8.0.34 180508 username Mahin 180508 kill_reason Relative expiration date has reached 180508 mac 180508 bytes_out 0 180508 bytes_in 0 180508 station_ip 5.119.59.152 180508 port 187 180508 unique_id port 180510 username mosi 180510 kill_reason Another user logged on this global unique id 180510 mac 180510 bytes_out 0 180510 bytes_in 0 180510 station_ip 151.235.83.58 180510 port 195 180510 unique_id port 180512 username aminvpn 180512 mac 180512 bytes_out 0 180512 bytes_in 0 180512 station_ip 5.120.29.137 180512 port 201 180512 unique_id port 180512 remote_ip 10.8.0.58 180516 username aminvpn 180516 mac 180516 bytes_out 0 180516 bytes_in 0 180516 station_ip 5.120.29.137 180516 port 212 180516 unique_id port 180516 remote_ip 10.8.0.58 180518 username farhad3 180518 mac 180518 bytes_out 780141 180518 bytes_in 4401964 180518 station_ip 5.119.230.85 180518 port 201 180518 unique_id port 180518 remote_ip 10.8.0.222 180520 username barzegar 180520 mac 180520 bytes_out 3737 180520 bytes_in 6057 180520 station_ip 5.119.195.192 180520 port 210 180520 unique_id port 180520 remote_ip 10.8.0.10 180521 username aminvpn 180521 mac 180521 bytes_out 0 180521 bytes_in 0 180521 station_ip 5.120.29.137 180521 port 209 180521 unique_id port 180521 remote_ip 10.8.0.58 180522 username barzegar 180522 mac 180522 bytes_out 0 180522 bytes_in 0 180522 station_ip 5.119.195.192 180522 port 209 180522 unique_id port 180522 remote_ip 10.8.0.10 180523 username aminvpn 180523 mac 180523 bytes_out 0 180523 bytes_in 0 180523 station_ip 5.120.145.6 180523 port 214 180523 unique_id port 180523 remote_ip 10.8.0.58 180528 username aminvpn 180528 mac 180528 bytes_out 0 180528 bytes_in 0 180478 bytes_out 288262 180478 bytes_in 2461003 180478 station_ip 89.47.70.45 180478 port 207 180478 unique_id port 180478 remote_ip 10.8.0.218 180485 username barzegar 180485 mac 180485 bytes_out 15368 180485 bytes_in 32229 180485 station_ip 5.119.195.192 180485 port 187 180485 unique_id port 180485 remote_ip 10.8.0.10 180487 username houshang 180487 mac 180487 bytes_out 2191291 180487 bytes_in 16594278 180487 station_ip 5.119.197.195 180487 port 173 180487 unique_id port 180487 remote_ip 10.8.0.82 180489 username kalantary6037 180489 mac 180489 bytes_out 591441 180489 bytes_in 2961839 180489 station_ip 83.123.116.185 180489 port 208 180489 unique_id port 180489 remote_ip 10.8.0.50 180491 username shadkam 180491 mac 180491 bytes_out 18191089 180491 bytes_in 8842920 180491 station_ip 83.123.64.74 180491 port 209 180491 unique_id port 180491 remote_ip 10.8.0.74 180495 username naeimeh 180495 mac 180495 bytes_out 1459631 180495 bytes_in 761178 180495 station_ip 83.123.62.4 180495 port 205 180495 unique_id port 180495 remote_ip 10.8.0.78 180496 username yaghobi 180496 mac 180496 bytes_out 180715 180496 bytes_in 365544 180496 station_ip 83.123.32.24 180496 port 202 180496 unique_id port 180496 remote_ip 10.8.0.138 180498 username ahmadi1 180498 mac 180498 bytes_out 2050 180498 bytes_in 4380 180498 station_ip 83.123.114.171 180498 port 187 180498 unique_id port 180498 remote_ip 10.8.0.94 180503 username ahmadi1 180503 mac 180503 bytes_out 1636 180503 bytes_in 4511 180503 station_ip 83.123.114.171 180503 port 207 180503 unique_id port 180503 remote_ip 10.8.0.94 180506 username barzegar 180506 mac 180506 bytes_out 1650 180506 bytes_in 5111 180506 station_ip 5.119.195.192 180506 port 208 180506 unique_id port 180506 remote_ip 10.8.0.10 180513 username ahmadi1 180513 mac 180513 bytes_out 22975 180513 bytes_in 48284 180513 station_ip 83.123.114.171 180513 port 187 180513 unique_id port 180513 remote_ip 10.8.0.94 180517 username rahim 180517 mac 180517 bytes_out 99245 180517 bytes_in 103835 180517 station_ip 5.120.18.152 180517 port 209 180517 unique_id port 180517 remote_ip 10.8.0.134 180525 username mostafa_es78 180525 mac 180525 bytes_out 0 180525 bytes_in 0 180525 station_ip 178.236.35.96 180525 port 190 180525 unique_id port 180526 username aminvpn 180526 mac 180526 bytes_out 0 180526 bytes_in 0 180526 station_ip 5.120.145.6 180526 port 190 180526 unique_id port 180526 remote_ip 10.8.0.58 180527 username aminvpn 180527 mac 180527 bytes_out 0 180527 bytes_in 0 180527 station_ip 5.120.29.137 180527 port 214 180527 unique_id port 180527 remote_ip 10.8.0.58 180531 username rezaei 180531 mac 180531 bytes_out 2902391 180531 bytes_in 25816483 180531 station_ip 5.120.68.177 180531 port 212 180531 unique_id port 180531 remote_ip 10.8.0.198 180534 username sekonji0496 180534 mac 180534 bytes_out 487107 180534 bytes_in 8142024 180534 station_ip 83.123.106.127 180534 port 190 180534 unique_id port 180534 remote_ip 10.8.0.62 180540 username aminvpn 180540 mac 180540 bytes_out 1644 180540 bytes_in 4751 180540 station_ip 5.120.29.137 180540 port 190 180540 unique_id port 180540 remote_ip 10.8.0.58 180544 username barzegar 180544 mac 180544 bytes_out 0 180544 bytes_in 0 180544 station_ip 5.119.195.192 180544 port 190 180544 unique_id port 180544 remote_ip 10.8.0.10 180545 username khademi 180545 mac 180545 bytes_out 0 180545 bytes_in 0 180545 station_ip 83.123.54.146 180505 mac 180505 bytes_out 0 180505 bytes_in 0 180505 station_ip 5.119.59.152 180505 port 187 180505 unique_id port 180507 username Mahin 180507 kill_reason Relative expiration date has reached 180507 mac 180507 bytes_out 0 180507 bytes_in 0 180507 station_ip 5.119.59.152 180507 port 187 180507 unique_id port 180509 username ahmadi1 180509 mac 180509 bytes_out 0 180509 bytes_in 0 180509 station_ip 83.123.114.171 180509 port 187 180509 unique_id port 180509 remote_ip 10.8.0.94 180511 username fezealinaghi 180511 mac 180511 bytes_out 0 180511 bytes_in 0 180511 station_ip 83.123.54.151 180511 port 201 180511 unique_id port 180514 username pourshad 180514 mac 180514 bytes_out 251446 180514 bytes_in 3516814 180514 station_ip 5.120.134.133 180514 port 202 180514 unique_id port 180514 remote_ip 10.8.0.42 180515 username barzegar 180515 mac 180515 bytes_out 0 180515 bytes_in 0 180515 station_ip 5.119.195.192 180515 port 202 180515 unique_id port 180515 remote_ip 10.8.0.10 180519 username aminvpn 180519 unique_id port 180519 terminate_cause User-Request 180519 bytes_out 10452040 180519 bytes_in 215258602 180519 station_ip 31.57.140.179 180519 port 15728786 180519 nas_port_type Virtual 180519 remote_ip 5.5.5.207 180524 username aminvpn 180524 mac 180524 bytes_out 0 180524 bytes_in 0 180524 station_ip 5.120.29.137 180524 port 215 180524 unique_id port 180524 remote_ip 10.8.0.58 180529 username motamedi9772 180529 mac 180529 bytes_out 78904 180529 bytes_in 530726 180529 station_ip 83.123.112.207 180529 port 214 180529 unique_id port 180529 remote_ip 10.8.0.154 180533 username saeeddamghani 180533 mac 180533 bytes_out 74264 180533 bytes_in 507941 180533 station_ip 5.119.165.92 180533 port 214 180533 unique_id port 180533 remote_ip 10.8.0.122 180537 username aminvpn 180537 mac 180537 bytes_out 481207 180537 bytes_in 1836956 180537 station_ip 5.120.145.6 180537 port 215 180537 unique_id port 180537 remote_ip 10.8.0.58 180538 username aminvpn 180538 mac 180538 bytes_out 0 180538 bytes_in 0 180538 station_ip 5.120.29.137 180538 port 190 180538 unique_id port 180538 remote_ip 10.8.0.58 180542 username mohammadjavad 180542 mac 180542 bytes_out 0 180542 bytes_in 0 180542 station_ip 83.123.76.30 180542 port 190 180542 unique_id port 180542 remote_ip 10.8.0.110 180546 username malekpoir 180546 kill_reason Another user logged on this global unique id 180546 mac 180546 bytes_out 0 180546 bytes_in 0 180546 station_ip 5.119.86.125 180546 port 200 180546 unique_id port 180546 remote_ip 10.8.0.18 180548 username aminvpn 180548 mac 180548 bytes_out 0 180548 bytes_in 0 180548 station_ip 5.120.29.137 180548 port 213 180548 unique_id port 180548 remote_ip 10.8.0.58 180550 username sabaghnezhad 180550 mac 180550 bytes_out 93929 180550 bytes_in 192962 180550 station_ip 83.123.21.92 180550 port 209 180550 unique_id port 180550 remote_ip 10.8.0.66 180557 username mohammadjavad 180557 mac 180557 bytes_out 0 180557 bytes_in 0 180557 station_ip 83.123.76.30 180557 port 216 180557 unique_id port 180557 remote_ip 10.8.0.110 180560 username alikomsari 180560 mac 180560 bytes_out 579407 180560 bytes_in 1758311 180560 station_ip 5.120.110.118 180560 port 209 180560 unique_id port 180560 remote_ip 10.8.0.214 180562 username fezealinaghi 180562 kill_reason Another user logged on this global unique id 180562 mac 180562 bytes_out 0 180562 bytes_in 0 180562 station_ip 83.123.54.151 180562 port 187 180562 unique_id port 180562 remote_ip 10.8.0.202 180528 station_ip 5.120.145.6 180528 port 190 180528 unique_id port 180528 remote_ip 10.8.0.58 180530 username meysam 180530 kill_reason Another user logged on this global unique id 180530 mac 180530 bytes_out 0 180530 bytes_in 0 180530 station_ip 188.158.50.221 180530 port 213 180530 unique_id port 180530 remote_ip 10.8.0.158 180532 username mohammadjavad 180532 mac 180532 bytes_out 0 180532 bytes_in 0 180532 station_ip 83.123.76.30 180532 port 216 180532 unique_id port 180532 remote_ip 10.8.0.110 180535 username mohammadjavad 180535 mac 180535 bytes_out 0 180535 bytes_in 0 180535 station_ip 83.123.76.30 180535 port 212 180535 unique_id port 180535 remote_ip 10.8.0.110 180536 username mohammadjavad 180536 mac 180536 bytes_out 0 180536 bytes_in 0 180536 station_ip 83.123.76.30 180536 port 190 180536 unique_id port 180536 remote_ip 10.8.0.110 180539 username meysam 180539 mac 180539 bytes_out 0 180539 bytes_in 0 180539 station_ip 188.158.50.221 180539 port 213 180539 unique_id port 180541 username barzegar 180541 mac 180541 bytes_out 757833 180541 bytes_in 969389 180541 station_ip 5.119.195.192 180541 port 209 180541 unique_id port 180541 remote_ip 10.8.0.10 180543 username mosi 180543 kill_reason Another user logged on this global unique id 180543 mac 180543 bytes_out 0 180543 bytes_in 0 180543 station_ip 151.235.83.58 180543 port 195 180543 unique_id port 180547 username aminvpn 180547 mac 180547 bytes_out 0 180547 bytes_in 0 180547 station_ip 5.120.145.6 180547 port 189 180547 unique_id port 180547 remote_ip 10.8.0.58 180551 username pourshad 180551 mac 180551 bytes_out 567242 180551 bytes_in 4970762 180551 station_ip 5.120.134.133 180551 port 201 180551 unique_id port 180551 remote_ip 10.8.0.42 180553 username mirzaei6046 180553 mac 180553 bytes_out 0 180553 bytes_in 0 180553 station_ip 5.119.103.136 180553 port 134 180553 unique_id port 180555 username barzegar 180555 mac 180555 bytes_out 0 180555 bytes_in 0 180555 station_ip 5.119.195.192 180555 port 134 180555 unique_id port 180555 remote_ip 10.8.0.10 180556 username shadkam 180556 mac 180556 bytes_out 1765632 180556 bytes_in 18613898 180556 station_ip 83.123.25.58 180556 port 201 180556 unique_id port 180556 remote_ip 10.8.0.74 180559 username sekonji0496 180559 mac 180559 bytes_out 0 180559 bytes_in 0 180559 station_ip 83.123.106.127 180559 port 134 180559 unique_id port 180559 remote_ip 10.8.0.62 180565 username aminvpn 180565 mac 180565 bytes_out 225848 180565 bytes_in 1574136 180565 station_ip 5.120.145.6 180565 port 213 180565 unique_id port 180565 remote_ip 10.8.0.58 180568 username aminvpn 180568 mac 180568 bytes_out 0 180568 bytes_in 0 180568 station_ip 5.120.29.137 180568 port 201 180568 unique_id port 180568 remote_ip 10.8.0.58 180570 username alihosseini1 180570 mac 180570 bytes_out 5115233 180570 bytes_in 41458956 180570 station_ip 5.119.80.81 180570 port 210 180570 unique_id port 180570 remote_ip 10.8.0.234 180571 username mosi 180571 mac 180571 bytes_out 0 180571 bytes_in 0 180571 station_ip 151.235.83.58 180571 port 195 180571 unique_id port 180572 username mosi 180572 mac 180572 bytes_out 36065 180572 bytes_in 90523 180572 station_ip 89.47.136.79 180572 port 201 180572 unique_id port 180572 remote_ip 10.8.0.142 180581 username godarzi 180581 mac 180581 bytes_out 592675 180581 bytes_in 5990152 180581 station_ip 5.119.175.225 180581 port 213 180581 unique_id port 180545 port 189 180545 unique_id port 180549 username aminvpn 180549 mac 180549 bytes_out 0 180549 bytes_in 0 180549 station_ip 5.120.29.137 180549 port 189 180549 unique_id port 180549 remote_ip 10.8.0.58 180552 username mohammadjavad 180552 mac 180552 bytes_out 1207515 180552 bytes_in 16017361 180552 station_ip 83.123.76.30 180552 port 214 180552 unique_id port 180552 remote_ip 10.8.0.110 180554 username sekonji0496 180554 mac 180554 bytes_out 195307 180554 bytes_in 2591271 180554 station_ip 83.123.106.127 180554 port 189 180554 unique_id port 180554 remote_ip 10.8.0.62 180558 username majidsarmast 180558 mac 180558 bytes_out 253954 180558 bytes_in 239151 180558 station_ip 83.123.50.144 180558 port 207 180558 unique_id port 180558 remote_ip 10.8.0.170 180561 username farhad3 180561 mac 180561 bytes_out 125578 180561 bytes_in 503922 180561 station_ip 5.119.230.85 180561 port 214 180561 unique_id port 180561 remote_ip 10.8.0.222 180563 username barzegar 180563 kill_reason Another user logged on this global unique id 180563 mac 180563 bytes_out 0 180563 bytes_in 0 180563 station_ip 5.119.195.192 180563 port 134 180563 unique_id port 180566 username aminvpn 180566 mac 180566 bytes_out 0 180566 bytes_in 0 180566 station_ip 5.120.29.137 180566 port 201 180566 unique_id port 180566 remote_ip 10.8.0.58 180574 username esmaeilkazemi 180574 mac 180574 bytes_out 0 180574 bytes_in 0 180574 station_ip 83.123.55.233 180574 port 210 180574 unique_id port 180574 remote_ip 10.8.0.26 180575 username esmaeilkazemi 180575 mac 180575 bytes_out 0 180575 bytes_in 0 180575 station_ip 83.123.55.233 180575 port 210 180575 unique_id port 180575 remote_ip 10.8.0.26 180578 username pourshad 180578 kill_reason Another user logged on this global unique id 180578 mac 180578 bytes_out 0 180578 bytes_in 0 180578 station_ip 5.120.134.133 180578 port 207 180578 unique_id port 180578 remote_ip 10.8.0.42 180579 username aminvpn 180579 mac 180579 bytes_out 13826 180579 bytes_in 19182 180579 station_ip 5.120.145.6 180579 port 209 180579 unique_id port 180579 remote_ip 10.8.0.58 180580 username aminvpn 180580 mac 180580 bytes_out 0 180580 bytes_in 0 180580 station_ip 5.120.29.137 180580 port 210 180580 unique_id port 180580 remote_ip 10.8.0.58 180583 username sekonji0496 180583 mac 180583 bytes_out 525764 180583 bytes_in 5709586 180583 station_ip 83.123.106.127 180583 port 134 180583 unique_id port 180583 remote_ip 10.8.0.62 180584 username aminvpn 180584 mac 180584 bytes_out 4655 180584 bytes_in 10820 180584 station_ip 5.120.145.6 180584 port 213 180584 unique_id port 180584 remote_ip 10.8.0.58 180585 username mosi 180585 mac 180585 bytes_out 2132243 180585 bytes_in 21298403 180585 station_ip 151.235.83.58 180585 port 195 180585 unique_id port 180585 remote_ip 10.8.0.142 180586 username aminvpn 180586 mac 180586 bytes_out 0 180586 bytes_in 0 180586 station_ip 5.120.145.6 180586 port 134 180586 unique_id port 180586 remote_ip 10.8.0.58 180588 username farhad3 180588 kill_reason Another user logged on this global unique id 180588 mac 180588 bytes_out 0 180588 bytes_in 0 180588 station_ip 5.119.230.85 180588 port 190 180588 unique_id port 180588 remote_ip 10.8.0.222 180591 username mosi 180591 mac 180591 bytes_out 68087 180591 bytes_in 139472 180591 station_ip 5.134.131.129 180591 port 134 180591 unique_id port 180591 remote_ip 10.8.0.142 180594 username aminvpn 180594 mac 180594 bytes_out 0 180594 bytes_in 0 180564 username barzegar 180564 kill_reason Another user logged on this global unique id 180564 mac 180564 bytes_out 0 180564 bytes_in 0 180564 station_ip 5.119.195.192 180564 port 134 180564 unique_id port 180567 username kalantary6037 180567 mac 180567 bytes_out 1928016 180567 bytes_in 10414757 180567 station_ip 83.123.13.17 180567 port 190 180567 unique_id port 180567 remote_ip 10.8.0.50 180569 username godarzi 180569 mac 180569 bytes_out 260311 180569 bytes_in 2295541 180569 station_ip 5.119.175.225 180569 port 189 180569 unique_id port 180569 remote_ip 10.8.0.38 180573 username fezealinaghi 180573 kill_reason Another user logged on this global unique id 180573 mac 180573 bytes_out 0 180573 bytes_in 0 180573 station_ip 83.123.54.151 180573 port 187 180573 unique_id port 180576 username mohammadjavad 180576 mac 180576 bytes_out 427502 180576 bytes_in 6218143 180576 station_ip 83.123.76.30 180576 port 201 180576 unique_id port 180576 remote_ip 10.8.0.110 180577 username esmaeilkazemi 180577 mac 180577 bytes_out 0 180577 bytes_in 0 180577 station_ip 83.123.55.233 180577 port 210 180577 unique_id port 180577 remote_ip 10.8.0.26 180582 username saeed9658 180582 mac 180582 bytes_out 273146 180582 bytes_in 1217707 180582 station_ip 5.120.14.196 180582 port 210 180582 unique_id port 180582 remote_ip 10.8.0.162 180587 username mosi 180587 mac 180587 bytes_out 11653 180587 bytes_in 44376 180587 station_ip 89.32.104.129 180587 port 210 180587 unique_id port 180587 remote_ip 10.8.0.142 180590 username aminvpn 180590 unique_id port 180590 terminate_cause Lost-Carrier 180590 bytes_out 1763301 180590 bytes_in 20414525 180590 station_ip 5.119.244.142 180590 port 15728803 180590 nas_port_type Virtual 180590 remote_ip 5.5.5.219 180593 username aminvpn 180593 mac 180593 bytes_out 21973 180593 bytes_in 15711 180593 station_ip 5.120.145.6 180593 port 195 180593 unique_id port 180593 remote_ip 10.8.0.58 180596 username yaghobi 180596 mac 180596 bytes_out 0 180596 bytes_in 0 180596 station_ip 83.123.105.18 180596 port 195 180596 unique_id port 180596 remote_ip 10.8.0.138 180599 username saeeddamghani 180599 kill_reason Another user logged on this global unique id 180599 mac 180599 bytes_out 0 180599 bytes_in 0 180599 station_ip 5.119.165.92 180599 port 201 180599 unique_id port 180599 remote_ip 10.8.0.122 180603 username yaghobi 180603 mac 180603 bytes_out 192353 180603 bytes_in 374224 180603 station_ip 83.123.105.18 180603 port 217 180603 unique_id port 180603 remote_ip 10.8.0.138 180606 username pourshad 180606 mac 180606 bytes_out 0 180606 bytes_in 0 180606 station_ip 5.120.134.133 180606 port 207 180606 unique_id port 180607 username farhad3 180607 mac 180607 bytes_out 94838 180607 bytes_in 219051 180607 station_ip 5.119.230.85 180607 port 190 180607 unique_id port 180607 remote_ip 10.8.0.222 180609 username sedighe 180609 mac 180609 bytes_out 119955 180609 bytes_in 674610 180609 station_ip 83.123.116.109 180609 port 218 180609 unique_id port 180609 remote_ip 10.8.0.46 180612 username saeeddamghani 180612 kill_reason Another user logged on this global unique id 180612 mac 180612 bytes_out 0 180612 bytes_in 0 180612 station_ip 5.119.165.92 180612 port 201 180612 unique_id port 180612 remote_ip 10.8.0.122 180614 username shadkam 180614 mac 180614 bytes_out 3012852 180614 bytes_in 43935519 180614 station_ip 83.123.13.96 180614 port 219 180614 unique_id port 180614 remote_ip 10.8.0.74 180616 username aminvpn 180616 unique_id port 180616 terminate_cause Lost-Carrier 180581 remote_ip 10.8.0.38 180589 username esmaeilkazemi 180589 mac 180589 bytes_out 616874 180589 bytes_in 3153666 180589 station_ip 83.123.55.233 180589 port 201 180589 unique_id port 180589 remote_ip 10.8.0.26 180592 username mosi 180592 mac 180592 bytes_out 0 180592 bytes_in 0 180592 station_ip 151.235.83.58 180592 port 201 180592 unique_id port 180592 remote_ip 10.8.0.142 180600 username jafari 180600 kill_reason Another user logged on this global unique id 180600 mac 180600 bytes_out 0 180600 bytes_in 0 180600 station_ip 89.47.144.160 180600 port 202 180600 unique_id port 180600 remote_ip 10.8.0.86 180601 username farhad3 180601 mac 180601 bytes_out 0 180601 bytes_in 0 180601 station_ip 5.119.230.85 180601 port 190 180601 unique_id port 180605 username saeeddamghani 180605 mac 180605 bytes_out 0 180605 bytes_in 0 180605 station_ip 5.119.165.92 180605 port 201 180605 unique_id port 180610 username esmaeilkazemi 180610 mac 180610 bytes_out 99237 180610 bytes_in 801883 180610 station_ip 83.123.55.233 180610 port 220 180610 unique_id port 180610 remote_ip 10.8.0.26 180611 username farhad3 180611 mac 180611 bytes_out 321580 180611 bytes_in 4183218 180611 station_ip 5.119.230.85 180611 port 207 180611 unique_id port 180611 remote_ip 10.8.0.222 180617 username aminvpn 180617 mac 180617 bytes_out 8861 180617 bytes_in 10988 180617 station_ip 5.120.145.6 180617 port 213 180617 unique_id port 180617 remote_ip 10.8.0.58 180621 username mohammadmahdi 180621 kill_reason Another user logged on this global unique id 180621 mac 180621 bytes_out 0 180621 bytes_in 0 180621 station_ip 5.119.127.95 180621 port 134 180621 unique_id port 180621 remote_ip 10.8.0.30 180623 username rashidi4690 180623 kill_reason Another user logged on this global unique id 180623 mac 180623 bytes_out 0 180623 bytes_in 0 180623 station_ip 83.123.50.38 180623 port 214 180623 unique_id port 180623 remote_ip 10.8.0.242 180625 username rezaei 180625 mac 180625 bytes_out 377504 180625 bytes_in 3839020 180625 station_ip 5.120.68.177 180625 port 190 180625 unique_id port 180625 remote_ip 10.8.0.198 180627 username hatami 180627 mac 180627 bytes_out 0 180627 bytes_in 0 180627 station_ip 151.235.92.41 180627 port 201 180627 unique_id port 180627 remote_ip 10.8.0.98 180628 username fezealinaghi 180628 kill_reason Another user logged on this global unique id 180628 mac 180628 bytes_out 0 180628 bytes_in 0 180628 station_ip 83.123.54.151 180628 port 187 180628 unique_id port 180634 username jafari 180634 kill_reason Another user logged on this global unique id 180634 mac 180634 bytes_out 0 180634 bytes_in 0 180634 station_ip 89.47.144.160 180634 port 202 180634 unique_id port 180637 username aminvpn 180637 mac 180637 bytes_out 0 180637 bytes_in 0 180637 station_ip 5.120.29.137 180637 port 217 180637 unique_id port 180637 remote_ip 10.8.0.58 180639 username pourshad 180639 mac 180639 bytes_out 1996 180639 bytes_in 4752 180639 station_ip 5.119.79.225 180639 port 217 180639 unique_id port 180639 remote_ip 10.8.0.42 180640 username esmaeilkazemi 180640 mac 180640 bytes_out 299831 180640 bytes_in 2748410 180640 station_ip 83.123.55.233 180640 port 190 180640 unique_id port 180640 remote_ip 10.8.0.26 180644 username alihosseini1 180644 mac 180644 bytes_out 2436115 180644 bytes_in 11929399 180644 station_ip 5.119.80.81 180644 port 189 180644 unique_id port 180644 remote_ip 10.8.0.234 180645 username mohammadmahdi 180645 kill_reason Another user logged on this global unique id 180645 mac 180645 bytes_out 0 180594 station_ip 5.120.29.137 180594 port 213 180594 unique_id port 180594 remote_ip 10.8.0.58 180595 username aminvpn 180595 mac 180595 bytes_out 0 180595 bytes_in 0 180595 station_ip 5.120.29.137 180595 port 195 180595 unique_id port 180595 remote_ip 10.8.0.58 180597 username ahmadi1 180597 mac 180597 bytes_out 0 180597 bytes_in 0 180597 station_ip 83.123.114.171 180597 port 195 180597 unique_id port 180597 remote_ip 10.8.0.94 180598 username kalantary6037 180598 mac 180598 bytes_out 1471473 180598 bytes_in 9557626 180598 station_ip 83.123.98.17 180598 port 214 180598 unique_id port 180598 remote_ip 10.8.0.50 180602 username esmaeilkazemi 180602 mac 180602 bytes_out 0 180602 bytes_in 0 180602 station_ip 83.123.55.233 180602 port 195 180602 unique_id port 180602 remote_ip 10.8.0.26 180604 username rezaei 180604 mac 180604 bytes_out 2364391 180604 bytes_in 32169578 180604 station_ip 5.120.68.177 180604 port 216 180604 unique_id port 180604 remote_ip 10.8.0.198 180608 username saeeddamghani 180608 mac 180608 bytes_out 0 180608 bytes_in 0 180608 station_ip 5.119.165.92 180608 port 195 180608 unique_id port 180608 remote_ip 10.8.0.122 180613 username esmaeilkazemi 180613 mac 180613 bytes_out 114704 180613 bytes_in 1078910 180613 station_ip 83.123.55.233 180613 port 195 180613 unique_id port 180613 remote_ip 10.8.0.26 180615 username saeeddamghani 180615 mac 180615 bytes_out 0 180615 bytes_in 0 180615 station_ip 5.119.165.92 180615 port 201 180615 unique_id port 180622 username kalantary6037 180622 mac 180622 bytes_out 438906 180622 bytes_in 4877112 180622 station_ip 83.123.98.17 180622 port 216 180622 unique_id port 180622 remote_ip 10.8.0.50 180629 username rashidi4690 180629 kill_reason Another user logged on this global unique id 180629 mac 180629 bytes_out 0 180629 bytes_in 0 180629 station_ip 83.123.50.38 180629 port 214 180629 unique_id port 180632 username malekpoir 180632 kill_reason Another user logged on this global unique id 180632 mac 180632 bytes_out 0 180632 bytes_in 0 180632 station_ip 5.119.86.125 180632 port 200 180632 unique_id port 180635 username rahim 180635 mac 180635 bytes_out 99483 180635 bytes_in 296360 180635 station_ip 5.120.18.152 180635 port 216 180635 unique_id port 180635 remote_ip 10.8.0.134 180643 username sedighe 180643 mac 180643 bytes_out 7195 180643 bytes_in 8032 180643 station_ip 83.123.116.109 180643 port 195 180643 unique_id port 180643 remote_ip 10.8.0.46 180646 username rashidi4690 180646 kill_reason Another user logged on this global unique id 180646 mac 180646 bytes_out 0 180646 bytes_in 0 180646 station_ip 83.123.50.38 180646 port 214 180646 unique_id port 180648 username fezealinaghi 180648 kill_reason Another user logged on this global unique id 180648 mac 180648 bytes_out 0 180648 bytes_in 0 180648 station_ip 83.123.54.151 180648 port 187 180648 unique_id port 180649 username aminvpn 180649 unique_id port 180649 terminate_cause User-Request 180649 bytes_out 671238 180649 bytes_in 4253127 180649 station_ip 5.119.244.142 180649 port 15728806 180649 nas_port_type Virtual 180649 remote_ip 5.5.5.202 180652 username hatami 180652 mac 180652 bytes_out 1216920 180652 bytes_in 9920772 180652 station_ip 151.235.116.65 180652 port 210 180652 unique_id port 180652 remote_ip 10.8.0.98 180662 username rashidi4690 180662 kill_reason Another user logged on this global unique id 180662 mac 180662 bytes_out 0 180662 bytes_in 0 180662 station_ip 83.123.50.38 180662 port 214 180662 unique_id port 180663 username aminvpn 180663 mac 180616 bytes_out 546 180616 bytes_in 9189 180616 station_ip 5.119.244.142 180616 port 15728805 180616 nas_port_type Virtual 180616 remote_ip 5.5.5.219 180618 username sedighe 180618 mac 180618 bytes_out 98048 180618 bytes_in 254850 180618 station_ip 83.123.116.109 180618 port 190 180618 unique_id port 180618 remote_ip 10.8.0.46 180619 username aminvpn 180619 mac 180619 bytes_out 0 180619 bytes_in 0 180619 station_ip 5.120.29.137 180619 port 201 180619 unique_id port 180619 remote_ip 10.8.0.58 180620 username aminvpn 180620 mac 180620 bytes_out 0 180620 bytes_in 0 180620 station_ip 5.120.29.137 180620 port 201 180620 unique_id port 180620 remote_ip 10.8.0.58 180624 username khademi 180624 kill_reason Another user logged on this global unique id 180624 mac 180624 bytes_out 0 180624 bytes_in 0 180624 station_ip 83.123.54.146 180624 port 212 180624 unique_id port 180624 remote_ip 10.8.0.14 180626 username mosi 180626 mac 180626 bytes_out 213491 180626 bytes_in 400527 180626 station_ip 5.200.125.149 180626 port 210 180626 unique_id port 180626 remote_ip 10.8.0.142 180630 username tahmorsi 180630 kill_reason Another user logged on this global unique id 180630 mac 180630 bytes_out 0 180630 bytes_in 0 180630 station_ip 86.57.15.141 180630 port 209 180630 unique_id port 180630 remote_ip 10.8.0.6 180631 username aminvpn 180631 mac 180631 bytes_out 12618 180631 bytes_in 11584 180631 station_ip 5.120.145.6 180631 port 217 180631 unique_id port 180631 remote_ip 10.8.0.58 180633 username aminvpn 180633 mac 180633 bytes_out 0 180633 bytes_in 0 180633 station_ip 5.120.29.137 180633 port 219 180633 unique_id port 180633 remote_ip 10.8.0.58 180636 username kamali3 180636 mac 180636 bytes_out 2730436 180636 bytes_in 31520006 180636 station_ip 83.123.106.112 180636 port 195 180636 unique_id port 180636 remote_ip 10.8.0.106 180638 username kalantary6037 180638 mac 180638 bytes_out 206781 180638 bytes_in 783279 180638 station_ip 83.123.98.17 180638 port 201 180638 unique_id port 180638 remote_ip 10.8.0.50 180641 username farhad3 180641 kill_reason Another user logged on this global unique id 180641 mac 180641 bytes_out 0 180641 bytes_in 0 180641 station_ip 5.119.230.85 180641 port 207 180641 unique_id port 180641 remote_ip 10.8.0.222 180642 username godarzi 180642 kill_reason Another user logged on this global unique id 180642 mac 180642 bytes_out 0 180642 bytes_in 0 180642 station_ip 5.202.22.5 180642 port 213 180642 unique_id port 180642 remote_ip 10.8.0.38 180647 username sedighe 180647 mac 180647 bytes_out 10922 180647 bytes_in 15849 180647 station_ip 83.123.116.109 180647 port 219 180647 unique_id port 180647 remote_ip 10.8.0.46 180655 username godarzi 180655 kill_reason Another user logged on this global unique id 180655 mac 180655 bytes_out 0 180655 bytes_in 0 180655 station_ip 5.202.22.5 180655 port 213 180655 unique_id port 180656 username aminvpn 180656 mac 180656 bytes_out 24832 180656 bytes_in 22758 180656 station_ip 5.120.145.6 180656 port 217 180656 unique_id port 180656 remote_ip 10.8.0.58 180658 username farhad3 180658 kill_reason Another user logged on this global unique id 180658 mac 180658 bytes_out 0 180658 bytes_in 0 180658 station_ip 5.119.230.85 180658 port 207 180658 unique_id port 180659 username aminvpn 180659 mac 180659 bytes_out 23733 180659 bytes_in 53494 180659 station_ip 83.123.101.11 180659 port 209 180659 unique_id port 180659 remote_ip 10.8.0.58 180660 username godarzi 180660 mac 180660 bytes_out 0 180660 bytes_in 0 180645 bytes_in 0 180645 station_ip 5.119.127.95 180645 port 134 180645 unique_id port 180650 username khalili2 180650 kill_reason Another user logged on this global unique id 180650 mac 180650 bytes_out 0 180650 bytes_in 0 180650 station_ip 5.120.161.103 180650 port 196 180650 unique_id port 180650 remote_ip 10.8.0.118 180651 username farhad3 180651 kill_reason Another user logged on this global unique id 180651 mac 180651 bytes_out 0 180651 bytes_in 0 180651 station_ip 5.119.230.85 180651 port 207 180651 unique_id port 180653 username jafari 180653 kill_reason Another user logged on this global unique id 180653 mac 180653 bytes_out 0 180653 bytes_in 0 180653 station_ip 89.47.144.160 180653 port 202 180653 unique_id port 180654 username tahmorsi 180654 mac 180654 bytes_out 0 180654 bytes_in 0 180654 station_ip 86.57.15.141 180654 port 209 180654 unique_id port 180657 username rahim 180657 mac 180657 bytes_out 146149 180657 bytes_in 1143291 180657 station_ip 5.120.18.152 180657 port 195 180657 unique_id port 180657 remote_ip 10.8.0.134 180661 username aminvpn 180661 mac 180661 bytes_out 0 180661 bytes_in 0 180661 station_ip 5.120.145.6 180661 port 195 180661 unique_id port 180661 remote_ip 10.8.0.58 180664 username aminvpn 180664 mac 180664 bytes_out 0 180664 bytes_in 0 180664 station_ip 5.120.29.137 180664 port 195 180664 unique_id port 180664 remote_ip 10.8.0.58 180669 username esmaeilkazemi 180669 mac 180669 bytes_out 67189 180669 bytes_in 304530 180669 station_ip 83.123.55.233 180669 port 219 180669 unique_id port 180669 remote_ip 10.8.0.26 180672 username aminvpn 180672 mac 180672 bytes_out 0 180672 bytes_in 0 180672 station_ip 5.120.29.137 180672 port 195 180672 unique_id port 180672 remote_ip 10.8.0.58 180675 username kamali3 180675 mac 180675 bytes_out 1399641 180675 bytes_in 13434696 180675 station_ip 83.123.106.112 180675 port 216 180675 unique_id port 180675 remote_ip 10.8.0.106 180677 username aminvpn 180677 mac 180677 bytes_out 0 180677 bytes_in 0 180677 station_ip 5.120.29.137 180677 port 216 180677 unique_id port 180677 remote_ip 10.8.0.58 180682 username ahmadi1 180682 mac 180682 bytes_out 7291 180682 bytes_in 23422 180682 station_ip 83.123.1.187 180682 port 213 180682 unique_id port 180682 remote_ip 10.8.0.94 180684 username mohammadmahdi 180684 kill_reason Another user logged on this global unique id 180684 mac 180684 bytes_out 0 180684 bytes_in 0 180684 station_ip 5.119.127.95 180684 port 134 180684 unique_id port 180687 username aminvpn 180687 mac 180687 bytes_out 0 180687 bytes_in 0 180687 station_ip 5.120.29.137 180687 port 210 180687 unique_id port 180687 remote_ip 10.8.0.58 180691 username mohammadmahdi 180691 mac 180691 bytes_out 0 180691 bytes_in 0 180691 station_ip 5.119.127.95 180691 port 134 180691 unique_id port 180693 username sedighe 180693 mac 180693 bytes_out 319833 180693 bytes_in 1160579 180693 station_ip 83.123.116.109 180693 port 189 180693 unique_id port 180693 remote_ip 10.8.0.46 180695 username khalili2 180695 mac 180695 bytes_out 0 180695 bytes_in 0 180695 station_ip 5.120.161.103 180695 port 196 180695 unique_id port 180699 username aminvpn 180699 mac 180699 bytes_out 0 180699 bytes_in 0 180699 station_ip 83.123.101.11 180699 port 134 180699 unique_id port 180699 remote_ip 10.8.0.58 180705 username aminvpn 180705 mac 180705 bytes_out 51271 180705 bytes_in 222202 180705 station_ip 83.123.101.11 180705 port 134 180705 unique_id port 180660 station_ip 5.202.22.5 180660 port 213 180660 unique_id port 180665 username farhad3 180665 mac 180665 bytes_out 0 180665 bytes_in 0 180665 station_ip 5.119.230.85 180665 port 207 180665 unique_id port 180674 username ahmadi1 180674 mac 180674 bytes_out 0 180674 bytes_in 0 180674 station_ip 83.123.1.187 180674 port 207 180674 unique_id port 180674 remote_ip 10.8.0.94 180680 username kalantary6037 180680 mac 180680 bytes_out 538115 180680 bytes_in 2901248 180680 station_ip 83.123.123.225 180680 port 195 180680 unique_id port 180680 remote_ip 10.8.0.50 180686 username aminvpn 180686 mac 180686 bytes_out 61100 180686 bytes_in 336525 180686 station_ip 83.123.101.11 180686 port 195 180686 unique_id port 180686 remote_ip 10.8.0.58 180692 username khalili2 180692 kill_reason Another user logged on this global unique id 180692 mac 180692 bytes_out 0 180692 bytes_in 0 180692 station_ip 5.120.161.103 180692 port 196 180692 unique_id port 180694 username nilufarrajaei 180694 mac 180694 bytes_out 865107 180694 bytes_in 4059738 180694 station_ip 83.123.113.10 180694 port 215 180694 unique_id port 180694 remote_ip 10.8.0.194 180696 username ahmadi1 180696 mac 180696 bytes_out 0 180696 bytes_in 0 180696 station_ip 83.123.1.187 180696 port 134 180696 unique_id port 180696 remote_ip 10.8.0.94 180697 username ahmadi1 180697 mac 180697 bytes_out 0 180697 bytes_in 0 180697 station_ip 83.123.1.187 180697 port 134 180697 unique_id port 180697 remote_ip 10.8.0.94 180700 username motamedi9772 180700 mac 180700 bytes_out 150276 180700 bytes_in 754718 180700 station_ip 83.123.62.27 180700 port 189 180700 unique_id port 180700 remote_ip 10.8.0.154 180702 username ahmadi1 180702 kill_reason Another user logged on this global unique id 180702 mac 180702 bytes_out 0 180702 bytes_in 0 180702 station_ip 83.123.1.187 180702 port 134 180702 unique_id port 180709 username farhad3 180709 mac 180709 bytes_out 0 180709 bytes_in 0 180709 station_ip 5.120.54.220 180709 port 134 180709 unique_id port 180709 remote_ip 10.8.0.222 180713 username mohammadjavad 180713 mac 180713 bytes_out 543656 180713 bytes_in 6801296 180713 station_ip 83.123.122.125 180713 port 190 180713 unique_id port 180713 remote_ip 10.8.0.110 180715 username fezealinaghi 180715 kill_reason Another user logged on this global unique id 180715 mac 180715 bytes_out 0 180715 bytes_in 0 180715 station_ip 83.123.54.151 180715 port 187 180715 unique_id port 180716 username pourshad 180716 mac 180716 bytes_out 35359 180716 bytes_in 48705 180716 station_ip 5.119.80.164 180716 port 207 180716 unique_id port 180716 remote_ip 10.8.0.42 180720 username sabaghnezhad 180720 mac 180720 bytes_out 1072406 180720 bytes_in 9349898 180720 station_ip 83.123.21.92 180720 port 217 180720 unique_id port 180720 remote_ip 10.8.0.66 180723 username aminvpn 180723 mac 180723 bytes_out 0 180723 bytes_in 0 180723 station_ip 5.120.29.137 180723 port 207 180723 unique_id port 180723 remote_ip 10.8.0.58 180725 username yaghobi 180725 mac 180725 bytes_out 848970 180725 bytes_in 4648624 180725 station_ip 83.123.39.110 180725 port 200 180725 unique_id port 180725 remote_ip 10.8.0.138 180726 username aminvpn 180726 mac 180726 bytes_out 24110 180726 bytes_in 21717 180726 station_ip 5.120.145.6 180726 port 196 180726 unique_id port 180726 remote_ip 10.8.0.58 180728 username jafari 180728 kill_reason Another user logged on this global unique id 180728 mac 180728 bytes_out 0 180728 bytes_in 0 180663 bytes_out 0 180663 bytes_in 0 180663 station_ip 83.123.101.11 180663 port 209 180663 unique_id port 180663 remote_ip 10.8.0.58 180666 username fezealinaghi 180666 kill_reason Another user logged on this global unique id 180666 mac 180666 bytes_out 0 180666 bytes_in 0 180666 station_ip 83.123.54.151 180666 port 187 180666 unique_id port 180667 username morteza 180667 kill_reason Relative expiration date has reached 180667 mac 180667 bytes_out 0 180667 bytes_in 0 180667 station_ip 83.123.88.207 180667 port 195 180667 unique_id port 180668 username aminvpn 180668 mac 180668 bytes_out 0 180668 bytes_in 0 180668 station_ip 5.120.29.137 180668 port 195 180668 unique_id port 180668 remote_ip 10.8.0.58 180670 username morteza 180670 kill_reason Relative expiration date has reached 180670 mac 180670 bytes_out 0 180670 bytes_in 0 180670 station_ip 83.123.88.207 180670 port 195 180670 unique_id port 180671 username aminvpn 180671 mac 180671 bytes_out 0 180671 bytes_in 0 180671 station_ip 83.123.101.11 180671 port 207 180671 unique_id port 180671 remote_ip 10.8.0.58 180673 username aminvpn 180673 mac 180673 bytes_out 0 180673 bytes_in 0 180673 station_ip 5.120.145.6 180673 port 209 180673 unique_id port 180673 remote_ip 10.8.0.58 180676 username aminvpn 180676 mac 180676 bytes_out 45971 180676 bytes_in 94720 180676 station_ip 83.123.101.11 180676 port 210 180676 unique_id port 180676 remote_ip 10.8.0.58 180678 username farhad3 180678 mac 180678 bytes_out 96390 180678 bytes_in 621284 180678 station_ip 5.119.230.85 180678 port 207 180678 unique_id port 180678 remote_ip 10.8.0.222 180679 username aminvpn 180679 mac 180679 bytes_out 95411 180679 bytes_in 475317 180679 station_ip 83.123.101.11 180679 port 207 180679 unique_id port 180679 remote_ip 10.8.0.58 180681 username aminvpn 180681 mac 180681 bytes_out 4374 180681 bytes_in 17263 180681 station_ip 5.120.145.6 180681 port 216 180681 unique_id port 180681 remote_ip 10.8.0.58 180683 username farhad3 180683 mac 180683 bytes_out 1268653 180683 bytes_in 19079621 180683 station_ip 5.119.230.85 180683 port 210 180683 unique_id port 180683 remote_ip 10.8.0.222 180685 username ahmadi1 180685 mac 180685 bytes_out 0 180685 bytes_in 0 180685 station_ip 83.123.1.187 180685 port 210 180685 unique_id port 180685 remote_ip 10.8.0.94 180688 username aminvpn 180688 mac 180688 bytes_out 0 180688 bytes_in 0 180688 station_ip 5.120.145.6 180688 port 195 180688 unique_id port 180688 remote_ip 10.8.0.58 180689 username aminvpn 180689 mac 180689 bytes_out 0 180689 bytes_in 0 180689 station_ip 5.120.29.137 180689 port 210 180689 unique_id port 180689 remote_ip 10.8.0.58 180690 username aminvpn 180690 mac 180690 bytes_out 2518 180690 bytes_in 6967 180690 station_ip 83.123.101.11 180690 port 195 180690 unique_id port 180690 remote_ip 10.8.0.58 180698 username aminvpn 180698 mac 180698 bytes_out 40241 180698 bytes_in 346367 180698 station_ip 83.123.101.11 180698 port 210 180698 unique_id port 180698 remote_ip 10.8.0.58 180701 username aminvpn 180701 mac 180701 bytes_out 0 180701 bytes_in 0 180701 station_ip 5.120.29.137 180701 port 196 180701 unique_id port 180701 remote_ip 10.8.0.58 180703 username ahmadi1 180703 kill_reason Another user logged on this global unique id 180703 mac 180703 bytes_out 0 180703 bytes_in 0 180703 station_ip 83.123.1.187 180703 port 134 180703 unique_id port 180704 username farhad3 180704 mac 180704 bytes_out 3350315 180704 bytes_in 46454535 180704 station_ip 5.119.230.85 180704 port 207 180704 unique_id port 180704 remote_ip 10.8.0.222 180708 username jafari 180708 kill_reason Another user logged on this global unique id 180708 mac 180708 bytes_out 0 180708 bytes_in 0 180708 station_ip 89.47.144.160 180708 port 202 180708 unique_id port 180710 username pourshad 180710 mac 180710 bytes_out 2325143 180710 bytes_in 35409310 180710 station_ip 5.119.79.225 180710 port 190 180710 unique_id port 180710 remote_ip 10.8.0.42 180712 username malekpoir 180712 mac 180712 bytes_out 0 180712 bytes_in 0 180712 station_ip 5.119.86.125 180712 port 200 180712 unique_id port 180714 username khademi 180714 kill_reason Another user logged on this global unique id 180714 mac 180714 bytes_out 0 180714 bytes_in 0 180714 station_ip 83.123.54.146 180714 port 212 180714 unique_id port 180717 username shadkam 180717 mac 180717 bytes_out 1348411 180717 bytes_in 14493766 180717 station_ip 83.123.48.218 180717 port 190 180717 unique_id port 180717 remote_ip 10.8.0.74 180718 username fezealinaghi 180718 mac 180718 bytes_out 0 180718 bytes_in 0 180718 station_ip 83.123.54.151 180718 port 187 180718 unique_id port 180719 username farhad3 180719 kill_reason Another user logged on this global unique id 180719 mac 180719 bytes_out 0 180719 bytes_in 0 180719 station_ip 5.120.54.220 180719 port 134 180719 unique_id port 180719 remote_ip 10.8.0.222 180721 username aminvpn 180721 mac 180721 bytes_out 9777 180721 bytes_in 21818 180721 station_ip 5.120.145.6 180721 port 196 180721 unique_id port 180721 remote_ip 10.8.0.58 180727 username aminvpn 180727 mac 180727 bytes_out 0 180727 bytes_in 0 180727 station_ip 5.120.29.137 180727 port 213 180727 unique_id port 180727 remote_ip 10.8.0.58 180731 username godarzi 180731 mac 180731 bytes_out 5115500 180731 bytes_in 40828507 180731 station_ip 5.202.22.5 180731 port 209 180731 unique_id port 180731 remote_ip 10.8.0.38 180733 username mohammadjavad 180733 mac 180733 bytes_out 1716 180733 bytes_in 4441 180733 station_ip 83.123.14.114 180733 port 216 180733 unique_id port 180733 remote_ip 10.8.0.110 180738 username rashidi4690 180738 mac 180738 bytes_out 0 180738 bytes_in 0 180738 station_ip 83.123.50.38 180738 port 214 180738 unique_id port 180743 username mosi 180743 mac 180743 bytes_out 30354 180743 bytes_in 50465 180743 station_ip 5.200.112.91 180743 port 209 180743 unique_id port 180743 remote_ip 10.8.0.142 180745 username khalili2 180745 kill_reason Another user logged on this global unique id 180745 mac 180745 bytes_out 0 180745 bytes_in 0 180745 station_ip 5.120.161.103 180745 port 190 180745 unique_id port 180745 remote_ip 10.8.0.118 180747 username aminvpn 180747 mac 180747 bytes_out 0 180747 bytes_in 0 180747 station_ip 5.120.29.137 180747 port 187 180747 unique_id port 180747 remote_ip 10.8.0.58 180749 username jafari 180749 mac 180749 bytes_out 0 180749 bytes_in 0 180749 station_ip 89.47.144.160 180749 port 202 180749 unique_id port 180752 username rashidi4690 180752 mac 180752 bytes_out 1015728 180752 bytes_in 6789854 180752 station_ip 83.123.27.87 180752 port 214 180752 unique_id port 180752 remote_ip 10.8.0.242 180755 username nilufarrajaei 180755 mac 180755 bytes_out 2898984 180755 bytes_in 28923498 180755 station_ip 83.123.113.10 180755 port 189 180755 unique_id port 180755 remote_ip 10.8.0.194 180761 username pourshad 180761 mac 180761 bytes_out 2055760 180761 bytes_in 37722611 180705 remote_ip 10.8.0.58 180706 username hamid 180706 kill_reason Relative expiration date has reached 180706 mac 180706 bytes_out 0 180706 bytes_in 0 180706 station_ip 83.123.93.123 180706 port 134 180706 unique_id port 180707 username hamid 180707 kill_reason Relative expiration date has reached 180707 mac 180707 bytes_out 0 180707 bytes_in 0 180707 station_ip 83.123.93.123 180707 port 189 180707 unique_id port 180711 username pourshad 180711 mac 180711 bytes_out 18999 180711 bytes_in 25585 180711 station_ip 5.119.79.225 180711 port 196 180711 unique_id port 180711 remote_ip 10.8.0.42 180722 username meysam 180722 mac 180722 bytes_out 77640 180722 bytes_in 773108 180722 station_ip 188.158.48.179 180722 port 187 180722 unique_id port 180722 remote_ip 10.8.0.158 180724 username aminvpn 180724 mac 180724 bytes_out 0 180724 bytes_in 0 180724 station_ip 5.120.29.137 180724 port 187 180724 unique_id port 180724 remote_ip 10.8.0.58 180730 username mohammadjavad 180730 mac 180730 bytes_out 0 180730 bytes_in 0 180730 station_ip 83.123.14.114 180730 port 215 180730 unique_id port 180730 remote_ip 10.8.0.110 180732 username khademi 180732 kill_reason Another user logged on this global unique id 180732 mac 180732 bytes_out 0 180732 bytes_in 0 180732 station_ip 83.123.54.146 180732 port 212 180732 unique_id port 180734 username kalantary6037 180734 mac 180734 bytes_out 499769 180734 bytes_in 2302106 180734 station_ip 83.123.32.229 180734 port 209 180734 unique_id port 180734 remote_ip 10.8.0.50 180736 username aminvpn 180736 mac 180736 bytes_out 77708 180736 bytes_in 257371 180736 station_ip 5.120.145.6 180736 port 213 180736 unique_id port 180736 remote_ip 10.8.0.58 180740 username mosi 180740 mac 180740 bytes_out 675211 180740 bytes_in 1186303 180740 station_ip 151.235.83.58 180740 port 218 180740 unique_id port 180740 remote_ip 10.8.0.142 180741 username farhad3 180741 kill_reason Another user logged on this global unique id 180741 mac 180741 bytes_out 0 180741 bytes_in 0 180741 station_ip 5.120.54.220 180741 port 134 180741 unique_id port 180742 username kordestani 180742 mac 180742 bytes_out 1576938 180742 bytes_in 19869052 180742 station_ip 151.235.114.110 180742 port 215 180742 unique_id port 180742 remote_ip 10.8.0.130 180744 username shadkam 180744 mac 180744 bytes_out 1029708 180744 bytes_in 7278101 180744 station_ip 83.123.121.41 180744 port 187 180744 unique_id port 180744 remote_ip 10.8.0.74 180751 username mohammadmahdi 180751 mac 180751 bytes_out 4112828 180751 bytes_in 32868649 180751 station_ip 5.119.127.95 180751 port 195 180751 unique_id port 180751 remote_ip 10.8.0.30 180753 username jafari 180753 mac 180753 bytes_out 898978 180753 bytes_in 2279085 180753 station_ip 89.47.144.160 180753 port 213 180753 unique_id port 180753 remote_ip 10.8.0.86 180754 username aminvpn 180754 kill_reason Maximum check online fails reached 180754 mac 180754 bytes_out 0 180754 bytes_in 0 180754 station_ip 5.120.29.137 180754 port 216 180754 unique_id port 180759 username aminvpn 180759 mac 180759 bytes_out 0 180759 bytes_in 0 180759 station_ip 5.120.29.137 180759 port 189 180759 unique_id port 180759 remote_ip 10.8.0.58 180760 username aminvpn 180760 mac 180760 bytes_out 1644 180760 bytes_in 4811 180760 station_ip 5.120.29.137 180760 port 189 180760 unique_id port 180760 remote_ip 10.8.0.58 180762 username mohammadjavad 180762 mac 180762 bytes_out 17712 180762 bytes_in 18569 180762 station_ip 83.123.47.53 180762 port 189 180728 station_ip 89.47.144.160 180728 port 202 180728 unique_id port 180729 username mohammadjavad 180729 mac 180729 bytes_out 0 180729 bytes_in 0 180729 station_ip 83.123.14.114 180729 port 196 180729 unique_id port 180729 remote_ip 10.8.0.110 180735 username yaghobi 180735 mac 180735 bytes_out 915950 180735 bytes_in 5099889 180735 station_ip 83.123.39.110 180735 port 207 180735 unique_id port 180735 remote_ip 10.8.0.138 180737 username yaghobi 180737 mac 180737 bytes_out 34502 180737 bytes_in 17080 180737 station_ip 83.123.39.110 180737 port 209 180737 unique_id port 180737 remote_ip 10.8.0.138 180739 username aminvpn 180739 mac 180739 bytes_out 1747 180739 bytes_in 3753 180739 station_ip 5.120.29.137 180739 port 216 180739 unique_id port 180739 remote_ip 10.8.0.58 180746 username aminvpn 180746 mac 180746 bytes_out 14390 180746 bytes_in 17544 180746 station_ip 5.120.145.6 180746 port 213 180746 unique_id port 180746 remote_ip 10.8.0.58 180748 username aminvpn 180748 mac 180748 bytes_out 1644 180748 bytes_in 4679 180748 station_ip 5.120.29.137 180748 port 187 180748 unique_id port 180748 remote_ip 10.8.0.58 180750 username ayobi 180750 kill_reason Another user logged on this global unique id 180750 mac 180750 bytes_out 0 180750 bytes_in 0 180750 station_ip 37.27.15.128 180750 port 196 180750 unique_id port 180750 remote_ip 10.8.0.186 180756 username mosi 180756 mac 180756 bytes_out 280181 180756 bytes_in 495172 180756 station_ip 151.235.83.58 180756 port 215 180756 unique_id port 180756 remote_ip 10.8.0.142 180757 username mosi 180757 mac 180757 bytes_out 0 180757 bytes_in 0 180757 station_ip 89.47.136.45 180757 port 189 180757 unique_id port 180757 remote_ip 10.8.0.142 180758 username aminvpn 180758 mac 180758 bytes_out 12389 180758 bytes_in 12858 180758 station_ip 5.120.145.6 180758 port 202 180758 unique_id port 180758 remote_ip 10.8.0.58 180764 username fezealinaghi 180764 mac 180764 bytes_out 62815 180764 bytes_in 161624 180764 station_ip 83.123.126.59 180764 port 214 180764 unique_id port 180764 remote_ip 10.8.0.202 180768 username farhad3 180768 mac 180768 bytes_out 0 180768 bytes_in 0 180768 station_ip 5.120.54.220 180768 port 134 180768 unique_id port 180768 remote_ip 10.8.0.222 180772 username kalantary6037 180772 mac 180772 bytes_out 1145705 180772 bytes_in 8520991 180772 station_ip 83.123.89.45 180772 port 195 180772 unique_id port 180772 remote_ip 10.8.0.50 180774 username mosi 180774 mac 180774 bytes_out 0 180774 bytes_in 0 180774 station_ip 5.200.121.254 180774 port 215 180774 unique_id port 180774 remote_ip 10.8.0.142 180777 username khalili2 180777 kill_reason Another user logged on this global unique id 180777 mac 180777 bytes_out 0 180777 bytes_in 0 180777 station_ip 5.120.161.103 180777 port 190 180777 unique_id port 180780 username nilufarrajaei 180780 mac 180780 bytes_out 16787 180780 bytes_in 20906 180780 station_ip 151.235.66.226 180780 port 213 180780 unique_id port 180780 remote_ip 10.8.0.194 180785 username aminvpn 180785 mac 180785 bytes_out 1644 180785 bytes_in 5036 180785 station_ip 5.120.29.137 180785 port 195 180785 unique_id port 180785 remote_ip 10.8.0.58 180789 username malekpoir 180789 mac 180789 bytes_out 2993226 180789 bytes_in 22567555 180789 station_ip 5.119.86.125 180789 port 210 180789 unique_id port 180789 remote_ip 10.8.0.18 180790 username yaghobi 180790 mac 180790 bytes_out 139012 180790 bytes_in 1568458 180761 station_ip 5.119.121.30 180761 port 200 180761 unique_id port 180761 remote_ip 10.8.0.42 180763 username farhad3 180763 mac 180763 bytes_out 0 180763 bytes_in 0 180763 station_ip 5.120.54.220 180763 port 134 180763 unique_id port 180765 username aminvpn 180765 mac 180765 bytes_out 0 180765 bytes_in 0 180765 station_ip 5.120.29.137 180765 port 215 180765 unique_id port 180765 remote_ip 10.8.0.58 180766 username farhad3 180766 mac 180766 bytes_out 93956 180766 bytes_in 354562 180766 station_ip 5.120.54.220 180766 port 134 180766 unique_id port 180766 remote_ip 10.8.0.222 180770 username hamid.e 180770 unique_id port 180770 terminate_cause User-Request 180770 bytes_out 46455427 180770 bytes_in 1227800464 180770 station_ip 37.27.17.163 180770 port 15728804 180770 nas_port_type Virtual 180770 remote_ip 5.5.5.203 180771 username mosi 180771 mac 180771 bytes_out 152666 180771 bytes_in 240973 180771 station_ip 151.235.83.58 180771 port 213 180771 unique_id port 180771 remote_ip 10.8.0.142 180773 username farhad3 180773 mac 180773 bytes_out 142490 180773 bytes_in 450027 180773 station_ip 5.120.54.220 180773 port 134 180773 unique_id port 180773 remote_ip 10.8.0.222 180775 username nilufarrajaei 180775 mac 180775 bytes_out 22352 180775 bytes_in 92471 180775 station_ip 151.235.71.87 180775 port 214 180775 unique_id port 180775 remote_ip 10.8.0.194 180779 username aminvpn 180779 mac 180779 bytes_out 3574 180779 bytes_in 8371 180779 station_ip 5.120.145.6 180779 port 200 180779 unique_id port 180779 remote_ip 10.8.0.58 180788 username ayobi 180788 kill_reason Another user logged on this global unique id 180788 mac 180788 bytes_out 0 180788 bytes_in 0 180788 station_ip 37.27.15.128 180788 port 196 180788 unique_id port 180791 username aminvpn 180791 mac 180791 bytes_out 0 180791 bytes_in 0 180791 station_ip 5.120.29.137 180791 port 210 180791 unique_id port 180791 remote_ip 10.8.0.58 180794 username godarzi 180794 mac 180794 bytes_out 2091730 180794 bytes_in 11400859 180794 station_ip 5.202.22.5 180794 port 207 180794 unique_id port 180794 remote_ip 10.8.0.38 180796 username shahruz 180796 mac 180796 bytes_out 0 180796 bytes_in 0 180796 station_ip 83.123.124.80 180796 port 195 180796 unique_id port 180796 remote_ip 10.8.0.230 180808 username shahruz 180808 mac 180808 bytes_out 0 180808 bytes_in 0 180808 station_ip 83.123.124.80 180808 port 217 180808 unique_id port 180808 remote_ip 10.8.0.230 180812 username farhad3 180812 kill_reason Another user logged on this global unique id 180812 mac 180812 bytes_out 0 180812 bytes_in 0 180812 station_ip 5.120.54.220 180812 port 210 180812 unique_id port 180812 remote_ip 10.8.0.222 180814 username farhad3 180814 mac 180814 bytes_out 0 180814 bytes_in 0 180814 station_ip 5.120.54.220 180814 port 210 180814 unique_id port 180819 username sekonji0496 180819 mac 180819 bytes_out 531421 180819 bytes_in 1664984 180819 station_ip 83.123.49.114 180819 port 200 180819 unique_id port 180819 remote_ip 10.8.0.62 180821 username saeed9658 180821 mac 180821 bytes_out 0 180821 bytes_in 0 180821 station_ip 5.120.14.196 180821 port 219 180821 unique_id port 180821 remote_ip 10.8.0.162 180823 username shahruz 180823 mac 180823 bytes_out 4459 180823 bytes_in 6707 180823 station_ip 83.123.124.80 180823 port 210 180823 unique_id port 180823 remote_ip 10.8.0.230 180824 username soleymani5056 180824 mac 180824 bytes_out 102233 180824 bytes_in 388404 180762 unique_id port 180762 remote_ip 10.8.0.110 180767 username ayobi 180767 kill_reason Another user logged on this global unique id 180767 mac 180767 bytes_out 0 180767 bytes_in 0 180767 station_ip 37.27.15.128 180767 port 196 180767 unique_id port 180769 username nilufarrajaei 180769 mac 180769 bytes_out 10538 180769 bytes_in 9579 180769 station_ip 151.235.71.87 180769 port 217 180769 unique_id port 180769 remote_ip 10.8.0.194 180776 username sedighe 180776 mac 180776 bytes_out 132853 180776 bytes_in 239164 180776 station_ip 83.123.93.135 180776 port 200 180776 unique_id port 180776 remote_ip 10.8.0.46 180778 username moslem6940 180778 kill_reason Another user logged on this global unique id 180778 mac 180778 bytes_out 0 180778 bytes_in 0 180778 station_ip 83.123.72.148 180778 port 202 180778 unique_id port 180778 remote_ip 10.8.0.166 180781 username farhad3 180781 mac 180781 bytes_out 642672 180781 bytes_in 1072319 180781 station_ip 5.120.54.220 180781 port 195 180781 unique_id port 180781 remote_ip 10.8.0.222 180782 username rashidi4690 180782 mac 180782 bytes_out 109458 180782 bytes_in 332887 180782 station_ip 83.123.11.89 180782 port 195 180782 unique_id port 180782 remote_ip 10.8.0.242 180783 username sabaghnezhad 180783 kill_reason Maximum check online fails reached 180783 mac 180783 bytes_out 0 180783 bytes_in 0 180783 station_ip 83.123.78.192 180783 port 214 180783 unique_id port 180784 username farhad3 180784 mac 180784 bytes_out 125213 180784 bytes_in 324608 180784 station_ip 5.120.54.220 180784 port 213 180784 unique_id port 180784 remote_ip 10.8.0.222 180786 username mosi 180786 mac 180786 bytes_out 260149 180786 bytes_in 315577 180786 station_ip 151.235.83.58 180786 port 134 180786 unique_id port 180786 remote_ip 10.8.0.142 180787 username mosi 180787 mac 180787 bytes_out 0 180787 bytes_in 0 180787 station_ip 5.200.107.117 180787 port 195 180787 unique_id port 180787 remote_ip 10.8.0.142 180792 username shahruz 180792 mac 180792 bytes_out 0 180792 bytes_in 0 180792 station_ip 83.123.124.80 180792 port 219 180792 unique_id port 180792 remote_ip 10.8.0.230 180795 username shahruz 180795 mac 180795 bytes_out 1997 180795 bytes_in 3739 180795 station_ip 83.123.124.80 180795 port 195 180795 unique_id port 180795 remote_ip 10.8.0.230 180797 username moslem6940 180797 kill_reason Another user logged on this global unique id 180797 mac 180797 bytes_out 0 180797 bytes_in 0 180797 station_ip 83.123.72.148 180797 port 202 180797 unique_id port 180800 username yaghobi 180800 mac 180800 bytes_out 78115 180800 bytes_in 83278 180800 station_ip 83.123.40.33 180800 port 220 180800 unique_id port 180800 remote_ip 10.8.0.138 180803 username rashidi4690 180803 mac 180803 bytes_out 266052 180803 bytes_in 852377 180803 station_ip 83.123.11.89 180803 port 217 180803 unique_id port 180803 remote_ip 10.8.0.242 180804 username shahruz 180804 mac 180804 bytes_out 0 180804 bytes_in 0 180804 station_ip 83.123.124.80 180804 port 217 180804 unique_id port 180804 remote_ip 10.8.0.230 180805 username yaghobi 180805 mac 180805 bytes_out 140762 180805 bytes_in 296396 180805 station_ip 83.123.40.33 180805 port 200 180805 unique_id port 180805 remote_ip 10.8.0.138 180809 username shahruz 180809 mac 180809 bytes_out 0 180809 bytes_in 0 180809 station_ip 83.123.124.80 180809 port 217 180809 unique_id port 180809 remote_ip 10.8.0.230 180811 username aminvpn 180811 mac 180811 bytes_out 1644 180811 bytes_in 3895 180790 station_ip 83.123.40.33 180790 port 217 180790 unique_id port 180790 remote_ip 10.8.0.138 180793 username farhad3 180793 mac 180793 bytes_out 561011 180793 bytes_in 2027729 180793 station_ip 5.120.54.220 180793 port 195 180793 unique_id port 180793 remote_ip 10.8.0.222 180798 username shadkam 180798 mac 180798 bytes_out 2572401 180798 bytes_in 14215340 180798 station_ip 83.123.119.214 180798 port 200 180798 unique_id port 180798 remote_ip 10.8.0.74 180799 username arash 180799 mac 180799 bytes_out 206866 180799 bytes_in 2084334 180799 station_ip 37.27.45.235 180799 port 213 180799 unique_id port 180799 remote_ip 10.8.0.70 180801 username shahruz 180801 mac 180801 bytes_out 0 180801 bytes_in 0 180801 station_ip 83.123.124.80 180801 port 213 180801 unique_id port 180801 remote_ip 10.8.0.230 180802 username shahruz 180802 mac 180802 bytes_out 0 180802 bytes_in 0 180802 station_ip 83.123.124.80 180802 port 213 180802 unique_id port 180802 remote_ip 10.8.0.230 180806 username shahruz 180806 mac 180806 bytes_out 6156 180806 bytes_in 13344 180806 station_ip 83.123.124.80 180806 port 217 180806 unique_id port 180806 remote_ip 10.8.0.230 180807 username shahruz 180807 kill_reason Maximum check online fails reached 180807 mac 180807 bytes_out 0 180807 bytes_in 0 180807 station_ip 83.123.124.80 180807 port 213 180807 unique_id port 180810 username moslem6940 180810 mac 180810 bytes_out 0 180810 bytes_in 0 180810 station_ip 83.123.72.148 180810 port 202 180810 unique_id port 180813 username shahruz 180813 mac 180813 bytes_out 2305 180813 bytes_in 4798 180813 station_ip 83.123.124.80 180813 port 202 180813 unique_id port 180813 remote_ip 10.8.0.230 180815 username saeed9658 180815 mac 180815 bytes_out 3658910 180815 bytes_in 30133838 180815 station_ip 5.120.14.196 180815 port 218 180815 unique_id port 180815 remote_ip 10.8.0.162 180826 username yaghobi 180826 mac 180826 bytes_out 646718 180826 bytes_in 4324330 180826 station_ip 83.123.40.33 180826 port 217 180826 unique_id port 180826 remote_ip 10.8.0.138 180830 username majidsarmast 180830 kill_reason Another user logged on this global unique id 180830 mac 180830 bytes_out 0 180830 bytes_in 0 180830 station_ip 86.57.92.52 180830 port 187 180830 unique_id port 180830 remote_ip 10.8.0.170 180834 username shadkam 180834 mac 180834 bytes_out 816388 180834 bytes_in 11378419 180834 station_ip 83.123.75.2 180834 port 202 180834 unique_id port 180834 remote_ip 10.8.0.74 180836 username mohammadmahdi 180836 kill_reason Another user logged on this global unique id 180836 mac 180836 bytes_out 0 180836 bytes_in 0 180836 station_ip 5.119.127.95 180836 port 195 180836 unique_id port 180836 remote_ip 10.8.0.30 180841 username saeed9658 180841 mac 180841 bytes_out 0 180841 bytes_in 0 180841 station_ip 5.120.14.196 180841 port 217 180841 unique_id port 180841 remote_ip 10.8.0.162 180844 username yaghobi 180844 mac 180844 bytes_out 0 180844 bytes_in 0 180844 station_ip 83.123.40.33 180844 port 217 180844 unique_id port 180844 remote_ip 10.8.0.138 180846 username saeed9658 180846 mac 180846 bytes_out 0 180846 bytes_in 0 180846 station_ip 5.120.14.196 180846 port 195 180846 unique_id port 180846 remote_ip 10.8.0.162 180848 username alikomsari 180848 mac 180848 bytes_out 1040599 180848 bytes_in 5975240 180848 station_ip 5.120.92.208 180848 port 200 180848 unique_id port 180848 remote_ip 10.8.0.214 180850 username kalantary6037 180850 mac 180850 bytes_out 411501 180811 station_ip 5.120.29.137 180811 port 220 180811 unique_id port 180811 remote_ip 10.8.0.58 180816 username nilufarrajaei 180816 mac 180816 bytes_out 130490 180816 bytes_in 597557 180816 station_ip 151.235.66.226 180816 port 217 180816 unique_id port 180816 remote_ip 10.8.0.194 180817 username aminvpn 180817 mac 180817 bytes_out 0 180817 bytes_in 0 180817 station_ip 5.120.29.137 180817 port 217 180817 unique_id port 180817 remote_ip 10.8.0.58 180818 username yaghobi 180818 mac 180818 bytes_out 405443 180818 bytes_in 469525 180818 station_ip 83.123.40.33 180818 port 219 180818 unique_id port 180818 remote_ip 10.8.0.138 180820 username aminvpn 180820 mac 180820 bytes_out 0 180820 bytes_in 0 180820 station_ip 5.120.29.137 180820 port 219 180820 unique_id port 180820 remote_ip 10.8.0.58 180822 username nilufarrajaei 180822 mac 180822 bytes_out 905399 180822 bytes_in 9255277 180822 station_ip 151.235.66.226 180822 port 220 180822 unique_id port 180822 remote_ip 10.8.0.194 180829 username esmaeilkazemi 180829 mac 180829 bytes_out 18562 180829 bytes_in 61485 180829 station_ip 83.123.55.233 180829 port 217 180829 unique_id port 180829 remote_ip 10.8.0.26 180831 username khalili2 180831 kill_reason Another user logged on this global unique id 180831 mac 180831 bytes_out 0 180831 bytes_in 0 180831 station_ip 5.120.161.103 180831 port 190 180831 unique_id port 180837 username rezaei 180837 mac 180837 bytes_out 5148834 180837 bytes_in 43184983 180837 station_ip 5.120.68.177 180837 port 209 180837 unique_id port 180837 remote_ip 10.8.0.198 180839 username shahruz 180839 mac 180839 bytes_out 2363 180839 bytes_in 4664 180839 station_ip 83.123.124.80 180839 port 202 180839 unique_id port 180839 remote_ip 10.8.0.230 180840 username ahmadi1 180840 mac 180840 bytes_out 0 180840 bytes_in 0 180840 station_ip 83.123.94.123 180840 port 217 180840 unique_id port 180840 remote_ip 10.8.0.94 180843 username yaghobi 180843 mac 180843 bytes_out 984770 180843 bytes_in 7281328 180843 station_ip 83.123.40.33 180843 port 219 180843 unique_id port 180843 remote_ip 10.8.0.138 180853 username sedighe 180853 mac 180853 bytes_out 1274080 180853 bytes_in 11038988 180853 station_ip 83.123.93.135 180853 port 210 180853 unique_id port 180853 remote_ip 10.8.0.46 180854 username nilufarrajaei 180854 mac 180854 bytes_out 3474226 180854 bytes_in 42287763 180854 station_ip 151.235.66.226 180854 port 220 180854 unique_id port 180854 remote_ip 10.8.0.194 180855 username sobhan 180855 unique_id port 180855 terminate_cause Lost-Carrier 180855 bytes_out 3034074 180855 bytes_in 38273903 180855 station_ip 5.119.33.88 180855 port 15728813 180855 nas_port_type Virtual 180855 remote_ip 5.5.5.201 180857 username godarzi 180857 kill_reason Another user logged on this global unique id 180857 mac 180857 bytes_out 0 180857 bytes_in 0 180857 station_ip 5.202.22.5 180857 port 207 180857 unique_id port 180857 remote_ip 10.8.0.38 180861 username esmaeilkazemi 180861 mac 180861 bytes_out 303001 180861 bytes_in 2044546 180861 station_ip 83.123.55.233 180861 port 195 180861 unique_id port 180861 remote_ip 10.8.0.26 180864 username shadkam 180864 mac 180864 bytes_out 2612867 180864 bytes_in 23948834 180864 station_ip 83.123.61.176 180864 port 221 180864 unique_id port 180864 remote_ip 10.8.0.74 180870 username saeed9658 180870 mac 180870 bytes_out 1112027 180870 bytes_in 7693428 180870 station_ip 5.120.14.196 180870 port 217 180870 unique_id port 180870 remote_ip 10.8.0.162 180824 station_ip 5.119.70.252 180824 port 219 180824 unique_id port 180824 remote_ip 10.8.0.226 180825 username saeed9658 180825 mac 180825 bytes_out 0 180825 bytes_in 0 180825 station_ip 5.120.14.196 180825 port 219 180825 unique_id port 180825 remote_ip 10.8.0.162 180827 username kalantary6037 180827 mac 180827 bytes_out 491051 180827 bytes_in 4021801 180827 station_ip 83.123.37.213 180827 port 200 180827 unique_id port 180827 remote_ip 10.8.0.50 180828 username farhad3 180828 mac 180828 bytes_out 2648268 180828 bytes_in 32982064 180828 station_ip 5.120.54.220 180828 port 202 180828 unique_id port 180828 remote_ip 10.8.0.222 180832 username shahruz 180832 mac 180832 bytes_out 7235 180832 bytes_in 16406 180832 station_ip 83.123.124.80 180832 port 210 180832 unique_id port 180832 remote_ip 10.8.0.230 180833 username aminvpn 180833 mac 180833 bytes_out 0 180833 bytes_in 0 180833 station_ip 5.120.29.137 180833 port 210 180833 unique_id port 180833 remote_ip 10.8.0.58 180835 username shahruz 180835 mac 180835 bytes_out 0 180835 bytes_in 0 180835 station_ip 83.123.124.80 180835 port 217 180835 unique_id port 180835 remote_ip 10.8.0.230 180838 username nilufarrajaei 180838 mac 180838 bytes_out 2559569 180838 bytes_in 28846745 180838 station_ip 151.235.66.226 180838 port 221 180838 unique_id port 180838 remote_ip 10.8.0.194 180842 username mohammadmahdi 180842 mac 180842 bytes_out 0 180842 bytes_in 0 180842 station_ip 5.119.127.95 180842 port 195 180842 unique_id port 180845 username khalili2 180845 mac 180845 bytes_out 0 180845 bytes_in 0 180845 station_ip 5.120.161.103 180845 port 190 180845 unique_id port 180847 username farhad3 180847 mac 180847 bytes_out 682509 180847 bytes_in 2952602 180847 station_ip 5.120.54.220 180847 port 209 180847 unique_id port 180847 remote_ip 10.8.0.222 180849 username aminvpn 180849 mac 180849 bytes_out 0 180849 bytes_in 0 180849 station_ip 5.120.29.137 180849 port 219 180849 unique_id port 180849 remote_ip 10.8.0.58 180852 username mirzaei6046 180852 kill_reason Another user logged on this global unique id 180852 mac 180852 bytes_out 0 180852 bytes_in 0 180852 station_ip 5.119.103.136 180852 port 201 180852 unique_id port 180852 remote_ip 10.8.0.246 180858 username mostafa_es78 180858 kill_reason Another user logged on this global unique id 180858 mac 180858 bytes_out 0 180858 bytes_in 0 180858 station_ip 113.203.69.83 180858 port 218 180858 unique_id port 180858 remote_ip 10.8.0.34 180860 username shahruz 180860 kill_reason Another user logged on this global unique id 180860 mac 180860 bytes_out 0 180860 bytes_in 0 180860 station_ip 83.123.124.80 180860 port 202 180860 unique_id port 180860 remote_ip 10.8.0.230 180863 username motamedi9772 180863 mac 180863 bytes_out 181568 180863 bytes_in 941098 180863 station_ip 83.123.81.27 180863 port 220 180863 unique_id port 180863 remote_ip 10.8.0.154 180865 username mostafa_es78 180865 mac 180865 bytes_out 0 180865 bytes_in 0 180865 station_ip 113.203.69.83 180865 port 218 180865 unique_id port 180867 username aminvpn 180867 mac 180867 bytes_out 0 180867 bytes_in 0 180867 station_ip 5.120.29.137 180867 port 210 180867 unique_id port 180867 remote_ip 10.8.0.58 180868 username arash 180868 mac 180868 bytes_out 826313 180868 bytes_in 6133711 180868 station_ip 37.27.45.235 180868 port 200 180868 unique_id port 180868 remote_ip 10.8.0.70 180869 username rashidi4690 180869 mac 180869 bytes_out 1437709 180869 bytes_in 5884570 180850 bytes_in 2120944 180850 station_ip 83.123.16.233 180850 port 195 180850 unique_id port 180850 remote_ip 10.8.0.50 180851 username ahmadi1 180851 mac 180851 bytes_out 169478 180851 bytes_in 1350139 180851 station_ip 83.123.94.123 180851 port 200 180851 unique_id port 180851 remote_ip 10.8.0.94 180856 username majidsarmast 180856 mac 180856 bytes_out 0 180856 bytes_in 0 180856 station_ip 86.57.92.52 180856 port 187 180856 unique_id port 180859 username aminvpn 180859 mac 180859 bytes_out 0 180859 bytes_in 0 180859 station_ip 5.120.29.137 180859 port 187 180859 unique_id port 180859 remote_ip 10.8.0.58 180862 username nilufarrajaei 180862 mac 180862 bytes_out 1731504 180862 bytes_in 17267331 180862 station_ip 151.235.66.226 180862 port 210 180862 unique_id port 180862 remote_ip 10.8.0.194 180866 username aminvpn 180866 mac 180866 bytes_out 630862 180866 bytes_in 3219547 180866 station_ip 5.120.145.6 180866 port 187 180866 unique_id port 180866 remote_ip 10.8.0.58 180876 username rashidi4690 180876 mac 180876 bytes_out 328079 180876 bytes_in 897344 180876 station_ip 83.123.37.93 180876 port 200 180876 unique_id port 180876 remote_ip 10.8.0.242 180878 username aminvpn 180878 mac 180878 bytes_out 0 180878 bytes_in 0 180878 station_ip 5.120.145.6 180878 port 187 180878 unique_id port 180878 remote_ip 10.8.0.58 180883 username shahruz 180883 mac 180883 bytes_out 0 180883 bytes_in 0 180883 station_ip 83.123.124.80 180883 port 202 180883 unique_id port 180885 username farhad3 180885 mac 180885 bytes_out 58783 180885 bytes_in 111253 180885 station_ip 5.120.54.220 180885 port 200 180885 unique_id port 180885 remote_ip 10.8.0.222 180887 username aminvpn 180887 unique_id port 180887 terminate_cause User-Request 180887 bytes_out 1084638 180887 bytes_in 909900 180887 station_ip 5.120.29.137 180887 port 15728817 180887 nas_port_type Virtual 180887 remote_ip 5.5.5.198 180894 username shahruz 180894 mac 180894 bytes_out 0 180894 bytes_in 0 180894 station_ip 83.123.124.80 180894 port 202 180894 unique_id port 180894 remote_ip 10.8.0.230 180896 username hashtadani4 180896 mac 180896 bytes_out 0 180896 bytes_in 0 180896 station_ip 83.123.115.81 180896 port 207 180896 unique_id port 180896 remote_ip 10.8.0.22 180900 username hashtadani4 180900 mac 180900 bytes_out 0 180900 bytes_in 0 180900 station_ip 83.123.115.81 180900 port 202 180900 unique_id port 180900 remote_ip 10.8.0.22 180910 username shadkam 180910 mac 180910 bytes_out 0 180910 bytes_in 0 180910 station_ip 83.123.8.236 180910 port 217 180910 unique_id port 180910 remote_ip 10.8.0.74 180911 username shadkam 180911 mac 180911 bytes_out 0 180911 bytes_in 0 180911 station_ip 83.123.8.236 180911 port 209 180911 unique_id port 180911 remote_ip 10.8.0.74 180913 username hashtadani4 180913 mac 180913 bytes_out 0 180913 bytes_in 0 180913 station_ip 83.123.115.81 180913 port 209 180913 unique_id port 180913 remote_ip 10.8.0.22 180915 username khademi 180915 kill_reason Another user logged on this global unique id 180915 mac 180915 bytes_out 0 180915 bytes_in 0 180915 station_ip 83.123.54.146 180915 port 212 180915 unique_id port 180919 username hashtadani4 180919 mac 180919 bytes_out 0 180919 bytes_in 0 180919 station_ip 83.123.115.81 180919 port 209 180919 unique_id port 180919 remote_ip 10.8.0.22 180922 username godarzi 180922 mac 180922 bytes_out 44798 180922 bytes_in 92533 180922 station_ip 5.202.22.5 180869 station_ip 83.123.37.93 180869 port 209 180869 unique_id port 180869 remote_ip 10.8.0.242 180871 username shahruz 180871 kill_reason Another user logged on this global unique id 180871 mac 180871 bytes_out 0 180871 bytes_in 0 180871 station_ip 83.123.124.80 180871 port 202 180871 unique_id port 180875 username aminvpn 180875 mac 180875 bytes_out 802084 180875 bytes_in 7598336 180875 station_ip 5.120.145.6 180875 port 187 180875 unique_id port 180875 remote_ip 10.8.0.58 180877 username aminvpn 180877 mac 180877 bytes_out 0 180877 bytes_in 0 180877 station_ip 5.120.29.137 180877 port 220 180877 unique_id port 180877 remote_ip 10.8.0.58 180880 username khademi 180880 kill_reason Another user logged on this global unique id 180880 mac 180880 bytes_out 0 180880 bytes_in 0 180880 station_ip 83.123.54.146 180880 port 212 180880 unique_id port 180881 username farhad3 180881 mac 180881 bytes_out 567713 180881 bytes_in 6273586 180881 station_ip 5.120.54.220 180881 port 187 180881 unique_id port 180881 remote_ip 10.8.0.222 180882 username mostafa_es78 180882 kill_reason Another user logged on this global unique id 180882 mac 180882 bytes_out 0 180882 bytes_in 0 180882 station_ip 113.203.69.83 180882 port 195 180882 unique_id port 180882 remote_ip 10.8.0.34 180888 username hashtadani4 180888 mac 180888 bytes_out 92547 180888 bytes_in 389370 180888 station_ip 83.123.115.81 180888 port 202 180888 unique_id port 180888 remote_ip 10.8.0.22 180889 username hashtadani4 180889 mac 180889 bytes_out 0 180889 bytes_in 0 180889 station_ip 83.123.115.81 180889 port 200 180889 unique_id port 180889 remote_ip 10.8.0.22 180892 username godarzi 180892 mac 180892 bytes_out 0 180892 bytes_in 0 180892 station_ip 5.202.22.5 180892 port 207 180892 unique_id port 180897 username yaghobi 180897 mac 180897 bytes_out 0 180897 bytes_in 0 180897 station_ip 83.123.47.146 180897 port 202 180897 unique_id port 180897 remote_ip 10.8.0.138 180901 username hashtadani4 180901 mac 180901 bytes_out 0 180901 bytes_in 0 180901 station_ip 83.123.115.81 180901 port 207 180901 unique_id port 180901 remote_ip 10.8.0.22 180903 username shahruz 180903 mac 180903 bytes_out 2329 180903 bytes_in 4622 180903 station_ip 83.123.124.80 180903 port 202 180903 unique_id port 180903 remote_ip 10.8.0.230 180904 username hashtadani4 180904 mac 180904 bytes_out 0 180904 bytes_in 0 180904 station_ip 83.123.115.81 180904 port 202 180904 unique_id port 180904 remote_ip 10.8.0.22 180907 username shadkam 180907 mac 180907 bytes_out 0 180907 bytes_in 0 180907 station_ip 83.123.8.236 180907 port 217 180907 unique_id port 180907 remote_ip 10.8.0.74 180908 username hashtadani4 180908 mac 180908 bytes_out 0 180908 bytes_in 0 180908 station_ip 83.123.115.81 180908 port 209 180908 unique_id port 180908 remote_ip 10.8.0.22 180912 username sekonji0496 180912 mac 180912 bytes_out 403226 180912 bytes_in 6665094 180912 station_ip 83.123.49.114 180912 port 187 180912 unique_id port 180912 remote_ip 10.8.0.62 180914 username shadkam 180914 mac 180914 bytes_out 0 180914 bytes_in 0 180914 station_ip 83.123.8.236 180914 port 187 180914 unique_id port 180914 remote_ip 10.8.0.74 180917 username shadkam 180917 mac 180917 bytes_out 0 180917 bytes_in 0 180917 station_ip 83.123.8.236 180917 port 187 180917 unique_id port 180917 remote_ip 10.8.0.74 180923 username yaghobi 180923 mac 180923 bytes_out 192121 180923 bytes_in 282331 180872 username jafari 180872 kill_reason Another user logged on this global unique id 180872 mac 180872 bytes_out 0 180872 bytes_in 0 180872 station_ip 5.134.166.103 180872 port 219 180872 unique_id port 180872 remote_ip 10.8.0.86 180873 username yaghobi 180873 mac 180873 bytes_out 625685 180873 bytes_in 3606602 180873 station_ip 83.123.86.253 180873 port 217 180873 unique_id port 180873 remote_ip 10.8.0.138 180874 username saeed9658 180874 mac 180874 bytes_out 660627 180874 bytes_in 6072342 180874 station_ip 5.120.14.196 180874 port 220 180874 unique_id port 180874 remote_ip 10.8.0.162 180879 username mosi 180879 kill_reason Another user logged on this global unique id 180879 mac 180879 bytes_out 0 180879 bytes_in 0 180879 station_ip 151.235.83.58 180879 port 134 180879 unique_id port 180879 remote_ip 10.8.0.142 180884 username arash 180884 mac 180884 bytes_out 3567301 180884 bytes_in 36274143 180884 station_ip 37.27.45.235 180884 port 209 180884 unique_id port 180884 remote_ip 10.8.0.70 180886 username aminvpn 180886 unique_id port 180886 terminate_cause Lost-Carrier 180886 bytes_out 5689001 180886 bytes_in 55333609 180886 station_ip 5.120.148.52 180886 port 15728815 180886 nas_port_type Virtual 180886 remote_ip 5.5.5.199 180890 username aminvpn 180890 mac 180890 bytes_out 0 180890 bytes_in 0 180890 station_ip 5.120.29.137 180890 port 202 180890 unique_id port 180890 remote_ip 10.8.0.58 180891 username shahruz 180891 mac 180891 bytes_out 0 180891 bytes_in 0 180891 station_ip 83.123.124.80 180891 port 202 180891 unique_id port 180891 remote_ip 10.8.0.230 180893 username hashtadani4 180893 mac 180893 bytes_out 0 180893 bytes_in 0 180893 station_ip 83.123.115.81 180893 port 209 180893 unique_id port 180893 remote_ip 10.8.0.22 180895 username shahruz 180895 mac 180895 bytes_out 0 180895 bytes_in 0 180895 station_ip 83.123.124.80 180895 port 202 180895 unique_id port 180895 remote_ip 10.8.0.230 180898 username farhad3 180898 mac 180898 bytes_out 53880 180898 bytes_in 280410 180898 station_ip 5.120.54.220 180898 port 200 180898 unique_id port 180898 remote_ip 10.8.0.222 180899 username khademi 180899 kill_reason Another user logged on this global unique id 180899 mac 180899 bytes_out 0 180899 bytes_in 0 180899 station_ip 83.123.54.146 180899 port 212 180899 unique_id port 180902 username shadkam 180902 mac 180902 bytes_out 622605 180902 bytes_in 5049802 180902 station_ip 83.123.8.236 180902 port 217 180902 unique_id port 180902 remote_ip 10.8.0.74 180905 username hashtadani4 180905 mac 180905 bytes_out 0 180905 bytes_in 0 180905 station_ip 83.123.115.81 180905 port 209 180905 unique_id port 180905 remote_ip 10.8.0.22 180906 username shadkam 180906 mac 180906 bytes_out 0 180906 bytes_in 0 180906 station_ip 83.123.8.236 180906 port 217 180906 unique_id port 180906 remote_ip 10.8.0.74 180909 username mostafa_es78 180909 mac 180909 bytes_out 0 180909 bytes_in 0 180909 station_ip 113.203.69.83 180909 port 195 180909 unique_id port 180916 username farhad3 180916 mac 180916 bytes_out 358905 180916 bytes_in 1560068 180916 station_ip 5.120.54.220 180916 port 200 180916 unique_id port 180916 remote_ip 10.8.0.222 180918 username farhad3 180918 mac 180918 bytes_out 0 180918 bytes_in 0 180918 station_ip 5.120.54.220 180918 port 187 180918 unique_id port 180918 remote_ip 10.8.0.222 180920 username shadkam 180920 mac 180920 bytes_out 0 180920 bytes_in 0 180920 station_ip 83.123.8.236 180920 port 187 180920 unique_id port 180920 remote_ip 10.8.0.74 180921 username hashtadani4 180921 mac 180921 bytes_out 0 180921 bytes_in 0 180921 station_ip 83.123.115.81 180921 port 187 180921 unique_id port 180921 remote_ip 10.8.0.22 180929 username hashtadani4 180929 mac 180929 bytes_out 0 180929 bytes_in 0 180929 station_ip 83.123.115.81 180929 port 195 180929 unique_id port 180929 remote_ip 10.8.0.22 180931 username nilufarrajaei 180931 mac 180931 bytes_out 0 180931 bytes_in 0 180931 station_ip 151.235.66.226 180931 port 200 180931 unique_id port 180931 remote_ip 10.8.0.194 180937 username hashtadani4 180937 mac 180937 bytes_out 0 180937 bytes_in 0 180937 station_ip 83.123.115.81 180937 port 200 180937 unique_id port 180937 remote_ip 10.8.0.22 180939 username nilufarrajaei 180939 mac 180939 bytes_out 462145 180939 bytes_in 2611347 180939 station_ip 151.235.66.226 180939 port 195 180939 unique_id port 180939 remote_ip 10.8.0.194 180941 username sekonji0496 180941 mac 180941 bytes_out 0 180941 bytes_in 0 180941 station_ip 83.123.49.114 180941 port 207 180941 unique_id port 180941 remote_ip 10.8.0.62 180947 username hashtadani4 180947 mac 180947 bytes_out 2684 180947 bytes_in 4804 180947 station_ip 83.123.115.81 180947 port 202 180947 unique_id port 180947 remote_ip 10.8.0.22 180949 username godarzi 180949 mac 180949 bytes_out 0 180949 bytes_in 0 180949 station_ip 5.202.22.5 180949 port 217 180949 unique_id port 180949 remote_ip 10.8.0.38 180952 username aminvpn 180952 mac 180952 bytes_out 0 180952 bytes_in 0 180952 station_ip 5.120.29.137 180952 port 218 180952 unique_id port 180952 remote_ip 10.8.0.58 180953 username khademi 180953 kill_reason Another user logged on this global unique id 180953 mac 180953 bytes_out 0 180953 bytes_in 0 180953 station_ip 83.123.54.146 180953 port 212 180953 unique_id port 180955 username shadkam 180955 mac 180955 bytes_out 0 180955 bytes_in 0 180955 station_ip 83.123.8.236 180955 port 218 180955 unique_id port 180955 remote_ip 10.8.0.74 180961 username hashtadani4 180961 mac 180961 bytes_out 0 180961 bytes_in 0 180961 station_ip 83.123.115.81 180961 port 217 180961 unique_id port 180961 remote_ip 10.8.0.22 180965 username yaghobi 180965 mac 180965 bytes_out 378052 180965 bytes_in 1344685 180965 station_ip 83.123.50.127 180965 port 202 180965 unique_id port 180965 remote_ip 10.8.0.138 180967 username shahruz 180967 mac 180967 bytes_out 0 180967 bytes_in 0 180967 station_ip 83.123.124.80 180967 port 202 180967 unique_id port 180967 remote_ip 10.8.0.230 180968 username shadkam 180968 mac 180968 bytes_out 0 180968 bytes_in 0 180968 station_ip 83.123.8.236 180968 port 218 180968 unique_id port 180968 remote_ip 10.8.0.74 180972 username majidsarmast 180972 kill_reason Another user logged on this global unique id 180972 mac 180972 bytes_out 0 180972 bytes_in 0 180972 station_ip 86.57.39.222 180972 port 195 180972 unique_id port 180972 remote_ip 10.8.0.170 180973 username jafari 180973 kill_reason Another user logged on this global unique id 180973 mac 180973 bytes_out 0 180973 bytes_in 0 180973 station_ip 5.134.166.103 180973 port 200 180973 unique_id port 180973 remote_ip 10.8.0.86 180978 username hashtadani4 180978 mac 180978 bytes_out 2364664 180978 bytes_in 23113705 180978 station_ip 83.123.115.81 180978 port 217 180978 unique_id port 180978 remote_ip 10.8.0.22 180982 username hashtadani4 180982 mac 180982 bytes_out 0 180982 bytes_in 0 180922 port 200 180922 unique_id port 180922 remote_ip 10.8.0.38 180926 username mostafa_es78 180926 mac 180926 bytes_out 11677 180926 bytes_in 15766 180926 station_ip 113.203.69.83 180926 port 195 180926 unique_id port 180926 remote_ip 10.8.0.34 180927 username nilufarrajaei 180927 mac 180927 bytes_out 1148725 180927 bytes_in 8641078 180927 station_ip 151.235.66.226 180927 port 218 180927 unique_id port 180927 remote_ip 10.8.0.194 180932 username hashtadani4 180932 mac 180932 bytes_out 0 180932 bytes_in 0 180932 station_ip 83.123.115.81 180932 port 200 180932 unique_id port 180932 remote_ip 10.8.0.22 180933 username jafari 180933 kill_reason Another user logged on this global unique id 180933 mac 180933 bytes_out 0 180933 bytes_in 0 180933 station_ip 5.134.166.103 180933 port 219 180933 unique_id port 180934 username shadkam 180934 mac 180934 bytes_out 0 180934 bytes_in 0 180934 station_ip 83.123.8.236 180934 port 200 180934 unique_id port 180934 remote_ip 10.8.0.74 180942 username hashtadani4 180942 mac 180942 bytes_out 0 180942 bytes_in 0 180942 station_ip 83.123.115.81 180942 port 200 180942 unique_id port 180942 remote_ip 10.8.0.22 180943 username sekonji0496 180943 mac 180943 bytes_out 0 180943 bytes_in 0 180943 station_ip 83.123.49.114 180943 port 200 180943 unique_id port 180943 remote_ip 10.8.0.62 180946 username pourshad 180946 kill_reason Another user logged on this global unique id 180946 mac 180946 bytes_out 0 180946 bytes_in 0 180946 station_ip 5.119.121.30 180946 port 189 180946 unique_id port 180946 remote_ip 10.8.0.42 180948 username shadkam 180948 mac 180948 bytes_out 0 180948 bytes_in 0 180948 station_ip 83.123.8.236 180948 port 209 180948 unique_id port 180948 remote_ip 10.8.0.74 180954 username fezealinaghi 180954 mac 180954 bytes_out 1365519 180954 bytes_in 13524179 180954 station_ip 83.123.126.15 180954 port 195 180954 unique_id port 180954 remote_ip 10.8.0.202 180957 username sekonji0496 180957 mac 180957 bytes_out 91552 180957 bytes_in 1211525 180957 station_ip 83.123.49.114 180957 port 217 180957 unique_id port 180957 remote_ip 10.8.0.62 180958 username hashtadani4 180958 mac 180958 bytes_out 0 180958 bytes_in 0 180958 station_ip 83.123.115.81 180958 port 217 180958 unique_id port 180958 remote_ip 10.8.0.22 180959 username godarzi 180959 mac 180959 bytes_out 0 180959 bytes_in 0 180959 station_ip 5.202.22.5 180959 port 217 180959 unique_id port 180959 remote_ip 10.8.0.38 180960 username shadkam 180960 mac 180960 bytes_out 0 180960 bytes_in 0 180960 station_ip 83.123.8.236 180960 port 218 180960 unique_id port 180960 remote_ip 10.8.0.74 180962 username aminvpn 180962 mac 180962 bytes_out 0 180962 bytes_in 0 180962 station_ip 5.120.29.137 180962 port 218 180962 unique_id port 180962 remote_ip 10.8.0.58 180963 username nilufarrajaei 180963 mac 180963 bytes_out 2711638 180963 bytes_in 8423328 180963 station_ip 151.235.66.226 180963 port 207 180963 unique_id port 180963 remote_ip 10.8.0.194 180966 username shahruz 180966 mac 180966 bytes_out 0 180966 bytes_in 0 180966 station_ip 83.123.124.80 180966 port 209 180966 unique_id port 180966 remote_ip 10.8.0.230 180969 username sobhan 180969 unique_id port 180969 terminate_cause Lost-Carrier 180969 bytes_out 3593821 180969 bytes_in 21762030 180969 station_ip 5.119.33.88 180969 port 15728816 180969 nas_port_type Virtual 180969 remote_ip 5.5.5.201 180971 username shahruz 180971 mac 180971 bytes_out 92962 180923 station_ip 83.123.47.146 180923 port 207 180923 unique_id port 180923 remote_ip 10.8.0.138 180924 username aminvpn 180924 mac 180924 bytes_out 0 180924 bytes_in 0 180924 station_ip 5.120.29.137 180924 port 187 180924 unique_id port 180924 remote_ip 10.8.0.58 180925 username sekonji0496 180925 mac 180925 bytes_out 0 180925 bytes_in 0 180925 station_ip 83.123.49.114 180925 port 187 180925 unique_id port 180925 remote_ip 10.8.0.62 180928 username hashtadani4 180928 mac 180928 bytes_out 0 180928 bytes_in 0 180928 station_ip 83.123.115.81 180928 port 195 180928 unique_id port 180928 remote_ip 10.8.0.22 180930 username mostafa_es78 180930 mac 180930 bytes_out 4547 180930 bytes_in 10663 180930 station_ip 113.203.69.83 180930 port 187 180930 unique_id port 180930 remote_ip 10.8.0.34 180935 username hashtadani4 180935 mac 180935 bytes_out 0 180935 bytes_in 0 180935 station_ip 83.123.115.81 180935 port 207 180935 unique_id port 180935 remote_ip 10.8.0.22 180936 username shahruz 180936 mac 180936 bytes_out 63624 180936 bytes_in 163679 180936 station_ip 83.123.124.80 180936 port 202 180936 unique_id port 180936 remote_ip 10.8.0.230 180938 username khalili2 180938 kill_reason Maximum check online fails reached 180938 mac 180938 bytes_out 4040604 180938 bytes_in 42886574 180938 station_ip 5.120.161.103 180938 port 190 180938 unique_id port 180938 remote_ip 10.8.0.118 180940 username motamedi9772 180940 mac 180940 bytes_out 0 180940 bytes_in 0 180940 station_ip 83.123.81.27 180940 port 202 180940 unique_id port 180940 remote_ip 10.8.0.154 180944 username nilufarrajaei 180944 mac 180944 bytes_out 1695 180944 bytes_in 6817 180944 station_ip 151.235.66.226 180944 port 195 180944 unique_id port 180944 remote_ip 10.8.0.194 180945 username jafari 180945 mac 180945 bytes_out 0 180945 bytes_in 0 180945 station_ip 5.134.166.103 180945 port 219 180945 unique_id port 180950 username sekonji0496 180950 mac 180950 bytes_out 0 180950 bytes_in 0 180950 station_ip 83.123.49.114 180950 port 218 180950 unique_id port 180950 remote_ip 10.8.0.62 180951 username sekonji0496 180951 mac 180951 bytes_out 0 180951 bytes_in 0 180951 station_ip 83.123.49.114 180951 port 217 180951 unique_id port 180951 remote_ip 10.8.0.62 180956 username hashtadani4 180956 mac 180956 bytes_out 13461 180956 bytes_in 46466 180956 station_ip 83.123.115.81 180956 port 202 180956 unique_id port 180956 remote_ip 10.8.0.22 180964 username shahruz 180964 mac 180964 bytes_out 185085 180964 bytes_in 398672 180964 station_ip 83.123.124.80 180964 port 209 180964 unique_id port 180964 remote_ip 10.8.0.230 180970 username shadkam 180970 mac 180970 bytes_out 0 180970 bytes_in 0 180970 station_ip 83.123.8.236 180970 port 218 180970 unique_id port 180970 remote_ip 10.8.0.74 180976 username shadkam 180976 mac 180976 bytes_out 0 180976 bytes_in 0 180976 station_ip 83.123.8.236 180976 port 219 180976 unique_id port 180976 remote_ip 10.8.0.74 180979 username hashtadani4 180979 mac 180979 bytes_out 0 180979 bytes_in 0 180979 station_ip 83.123.115.81 180979 port 209 180979 unique_id port 180979 remote_ip 10.8.0.22 180980 username shadkam 180980 mac 180980 bytes_out 0 180980 bytes_in 0 180980 station_ip 83.123.8.236 180980 port 218 180980 unique_id port 180980 remote_ip 10.8.0.74 180983 username shadkam 180983 mac 180983 bytes_out 0 180983 bytes_in 0 180983 station_ip 83.123.8.236 180983 port 219 180971 bytes_in 95244 180971 station_ip 83.123.124.80 180971 port 209 180971 unique_id port 180971 remote_ip 10.8.0.230 180974 username aminvpn 180974 mac 180974 bytes_out 0 180974 bytes_in 0 180974 station_ip 5.120.29.137 180974 port 218 180974 unique_id port 180974 remote_ip 10.8.0.58 180975 username shahruz 180975 mac 180975 bytes_out 2998 180975 bytes_in 5369 180975 station_ip 5.120.135.90 180975 port 209 180975 unique_id port 180975 remote_ip 10.8.0.230 180977 username shahruz 180977 mac 180977 bytes_out 0 180977 bytes_in 0 180977 station_ip 5.120.135.90 180977 port 209 180977 unique_id port 180977 remote_ip 10.8.0.230 180981 username shahruz 180981 kill_reason Maximum check online fails reached 180981 mac 180981 bytes_out 0 180981 bytes_in 0 180981 station_ip 5.120.135.90 180981 port 209 180981 unique_id port 180992 username hashtadani4 180992 kill_reason Another user logged on this global unique id 180992 mac 180992 bytes_out 0 180992 bytes_in 0 180992 station_ip 83.123.115.81 180992 port 221 180992 unique_id port 180995 username shahruz 180995 mac 180995 bytes_out 0 180995 bytes_in 0 180995 station_ip 83.123.124.80 180995 port 220 180995 unique_id port 180995 remote_ip 10.8.0.230 181008 username shahruz 181008 mac 181008 bytes_out 17204 181008 bytes_in 138262 181008 station_ip 83.123.124.80 181008 port 219 181008 unique_id port 181008 remote_ip 10.8.0.230 181012 username shadkam 181012 mac 181012 bytes_out 43355 181012 bytes_in 632010 181012 station_ip 83.123.8.236 181012 port 219 181012 unique_id port 181012 remote_ip 10.8.0.74 181014 username majidsarmast 181014 kill_reason Another user logged on this global unique id 181014 mac 181014 bytes_out 0 181014 bytes_in 0 181014 station_ip 86.57.39.222 181014 port 195 181014 unique_id port 181015 username yaghobi 181015 mac 181015 bytes_out 0 181015 bytes_in 0 181015 station_ip 83.123.30.250 181015 port 207 181015 unique_id port 181015 remote_ip 10.8.0.138 181022 username majidsarmast 181022 mac 181022 bytes_out 0 181022 bytes_in 0 181022 station_ip 86.57.39.222 181022 port 195 181022 unique_id port 181026 username farhad3 181026 mac 181026 bytes_out 1669204 181026 bytes_in 12040597 181026 station_ip 5.120.54.220 181026 port 196 181026 unique_id port 181026 remote_ip 10.8.0.222 181027 username farhad3 181027 mac 181027 bytes_out 0 181027 bytes_in 0 181027 station_ip 5.120.54.220 181027 port 196 181027 unique_id port 181027 remote_ip 10.8.0.222 181029 username nilufarrajaei 181029 mac 181029 bytes_out 6423 181029 bytes_in 11235 181029 station_ip 83.123.90.146 181029 port 196 181029 unique_id port 181029 remote_ip 10.8.0.194 181032 username sabaghnezhad 181032 mac 181032 bytes_out 1912287 181032 bytes_in 9666158 181032 station_ip 83.123.78.192 181032 port 215 181032 unique_id port 181032 remote_ip 10.8.0.66 181040 username mostafa_es78 181040 kill_reason Another user logged on this global unique id 181040 mac 181040 bytes_out 0 181040 bytes_in 0 181040 station_ip 113.203.69.83 181040 port 187 181040 unique_id port 181040 remote_ip 10.8.0.34 181042 username shahruz 181042 mac 181042 bytes_out 2640 181042 bytes_in 6104 181042 station_ip 83.123.74.20 181042 port 196 181042 unique_id port 181042 remote_ip 10.8.0.230 181043 username nilufarrajaei 181043 mac 181043 bytes_out 365031 181043 bytes_in 694347 181043 station_ip 83.123.90.146 181043 port 195 181043 unique_id port 181043 remote_ip 10.8.0.194 181045 username shahruz 181045 mac 180982 station_ip 83.123.115.81 180982 port 218 180982 unique_id port 180982 remote_ip 10.8.0.22 180984 username hashtadani4 180984 mac 180984 bytes_out 0 180984 bytes_in 0 180984 station_ip 83.123.115.81 180984 port 220 180984 unique_id port 180984 remote_ip 10.8.0.22 180985 username hashtadani4 180985 mac 180985 bytes_out 0 180985 bytes_in 0 180985 station_ip 83.123.115.81 180985 port 220 180985 unique_id port 180985 remote_ip 10.8.0.22 180986 username shahruz 180986 mac 180986 bytes_out 183564 180986 bytes_in 251695 180986 station_ip 5.120.135.90 180986 port 217 180986 unique_id port 180986 remote_ip 10.8.0.230 180988 username shahruz 180988 mac 180988 bytes_out 0 180988 bytes_in 0 180988 station_ip 83.123.124.80 180988 port 220 180988 unique_id port 180988 remote_ip 10.8.0.230 180989 username jafari 180989 kill_reason Another user logged on this global unique id 180989 mac 180989 bytes_out 0 180989 bytes_in 0 180989 station_ip 5.134.166.103 180989 port 200 180989 unique_id port 180990 username hashtadani4 180990 mac 180990 bytes_out 0 180990 bytes_in 0 180990 station_ip 83.123.115.81 180990 port 220 180990 unique_id port 180990 remote_ip 10.8.0.22 180993 username aminvpn 180993 mac 180993 bytes_out 0 180993 bytes_in 0 180993 station_ip 5.120.29.137 180993 port 217 180993 unique_id port 180993 remote_ip 10.8.0.58 180998 username majidsarmast 180998 kill_reason Another user logged on this global unique id 180998 mac 180998 bytes_out 0 180998 bytes_in 0 180998 station_ip 86.57.39.222 180998 port 195 180998 unique_id port 180999 username ayobi 180999 mac 180999 bytes_out 0 180999 bytes_in 0 180999 station_ip 37.27.15.128 180999 port 196 180999 unique_id port 181000 username khalili2 181000 kill_reason Another user logged on this global unique id 181000 mac 181000 bytes_out 0 181000 bytes_in 0 181000 station_ip 5.120.161.103 181000 port 190 181000 unique_id port 181001 username nilufarrajaei 181001 mac 181001 bytes_out 12806196 181001 bytes_in 6180411 181001 station_ip 151.235.66.226 181001 port 207 181001 unique_id port 181001 remote_ip 10.8.0.194 181004 username shahruz 181004 mac 181004 bytes_out 262870 181004 bytes_in 2496089 181004 station_ip 83.123.124.80 181004 port 207 181004 unique_id port 181004 remote_ip 10.8.0.230 181005 username farhad3 181005 kill_reason Another user logged on this global unique id 181005 mac 181005 bytes_out 0 181005 bytes_in 0 181005 station_ip 5.120.54.220 181005 port 202 181005 unique_id port 181005 remote_ip 10.8.0.222 181006 username shahruz 181006 mac 181006 bytes_out 0 181006 bytes_in 0 181006 station_ip 5.120.13.43 181006 port 196 181006 unique_id port 181006 remote_ip 10.8.0.230 181010 username nilufarrajaei 181010 mac 181010 bytes_out 173738 181010 bytes_in 799384 181010 station_ip 151.235.66.226 181010 port 207 181010 unique_id port 181010 remote_ip 10.8.0.194 181013 username kordestani 181013 mac 181013 bytes_out 1915706 181013 bytes_in 19793271 181013 station_ip 151.235.78.12 181013 port 218 181013 unique_id port 181013 remote_ip 10.8.0.130 181017 username farhad3 181017 mac 181017 bytes_out 0 181017 bytes_in 0 181017 station_ip 5.120.54.220 181017 port 202 181017 unique_id port 181018 username jafari 181018 mac 181018 bytes_out 0 181018 bytes_in 0 181018 station_ip 5.134.166.103 181018 port 200 181018 unique_id port 181019 username shahruz 181019 mac 181019 bytes_out 1329738 181019 bytes_in 15827145 181019 station_ip 5.119.165.108 181019 port 196 180983 unique_id port 180983 remote_ip 10.8.0.74 180987 username hashtadani4 180987 mac 180987 bytes_out 0 180987 bytes_in 0 180987 station_ip 83.123.115.81 180987 port 217 180987 unique_id port 180987 remote_ip 10.8.0.22 180991 username shahruz 180991 mac 180991 bytes_out 0 180991 bytes_in 0 180991 station_ip 5.119.76.192 180991 port 217 180991 unique_id port 180991 remote_ip 10.8.0.230 180994 username hashtadani4 180994 kill_reason Another user logged on this global unique id 180994 mac 180994 bytes_out 0 180994 bytes_in 0 180994 station_ip 83.123.115.81 180994 port 221 180994 unique_id port 180996 username shadkam 180996 mac 180996 bytes_out 0 180996 bytes_in 0 180996 station_ip 83.123.8.236 180996 port 221 180996 unique_id port 180996 remote_ip 10.8.0.74 180997 username saeeddamghani 180997 mac 180997 bytes_out 900587 180997 bytes_in 7179240 180997 station_ip 5.119.165.92 180997 port 219 180997 unique_id port 180997 remote_ip 10.8.0.122 181002 username shahruz 181002 mac 181002 bytes_out 260083 181002 bytes_in 1810248 181002 station_ip 5.119.83.121 181002 port 220 181002 unique_id port 181002 remote_ip 10.8.0.230 181003 username hatami 181003 mac 181003 bytes_out 530946 181003 bytes_in 4474820 181003 station_ip 151.235.87.29 181003 port 196 181003 unique_id port 181003 remote_ip 10.8.0.98 181007 username sobhan 181007 unique_id port 181007 terminate_cause User-Request 181007 bytes_out 186059 181007 bytes_in 1943937 181007 station_ip 5.119.33.88 181007 port 15728822 181007 nas_port_type Virtual 181007 remote_ip 5.5.5.201 181009 username jafari 181009 kill_reason Another user logged on this global unique id 181009 mac 181009 bytes_out 0 181009 bytes_in 0 181009 station_ip 5.134.166.103 181009 port 200 181009 unique_id port 181011 username aminvpn 181011 mac 181011 bytes_out 0 181011 bytes_in 0 181011 station_ip 5.120.29.137 181011 port 207 181011 unique_id port 181011 remote_ip 10.8.0.58 181016 username nilufarrajaei 181016 mac 181016 bytes_out 425231 181016 bytes_in 1188222 181016 station_ip 151.235.66.226 181016 port 220 181016 unique_id port 181016 remote_ip 10.8.0.194 181028 username nilufarrajaei 181028 mac 181028 bytes_out 410726 181028 bytes_in 2881334 181028 station_ip 151.235.66.226 181028 port 202 181028 unique_id port 181028 remote_ip 10.8.0.194 181030 username nilufarrajaei 181030 mac 181030 bytes_out 0 181030 bytes_in 0 181030 station_ip 83.123.90.146 181030 port 196 181030 unique_id port 181030 remote_ip 10.8.0.194 181034 username soleymani5056 181034 mac 181034 bytes_out 251791 181034 bytes_in 827673 181034 station_ip 5.120.89.179 181034 port 207 181034 unique_id port 181034 remote_ip 10.8.0.226 181035 username shahruz 181035 mac 181035 bytes_out 2677827 181035 bytes_in 34148888 181035 station_ip 5.119.49.174 181035 port 200 181035 unique_id port 181035 remote_ip 10.8.0.230 181037 username alihosseini1 181037 mac 181037 bytes_out 3699529 181037 bytes_in 31977554 181037 station_ip 5.120.176.252 181037 port 210 181037 unique_id port 181037 remote_ip 10.8.0.234 181041 username shahruz 181041 mac 181041 bytes_out 556973 181041 bytes_in 3932610 181041 station_ip 5.119.224.212 181041 port 202 181041 unique_id port 181041 remote_ip 10.8.0.230 181044 username shahruz 181044 mac 181044 bytes_out 0 181044 bytes_in 0 181044 station_ip 5.119.44.171 181044 port 196 181044 unique_id port 181044 remote_ip 10.8.0.230 181048 username shahruz 181048 mac 181048 bytes_out 544457 181048 bytes_in 8395401 181019 unique_id port 181019 remote_ip 10.8.0.230 181020 username shahruz 181020 mac 181020 bytes_out 0 181020 bytes_in 0 181020 station_ip 83.123.124.80 181020 port 200 181020 unique_id port 181020 remote_ip 10.8.0.230 181021 username arash 181021 mac 181021 bytes_out 496022 181021 bytes_in 6930810 181021 station_ip 37.27.45.235 181021 port 217 181021 unique_id port 181021 remote_ip 10.8.0.70 181023 username yaghobi 181023 mac 181023 bytes_out 321008 181023 bytes_in 757394 181023 station_ip 83.123.30.250 181023 port 218 181023 unique_id port 181023 remote_ip 10.8.0.138 181024 username nilufarrajaei 181024 mac 181024 bytes_out 210317 181024 bytes_in 336546 181024 station_ip 83.123.90.146 181024 port 195 181024 unique_id port 181024 remote_ip 10.8.0.194 181025 username aminvpn 181025 mac 181025 bytes_out 0 181025 bytes_in 0 181025 station_ip 5.120.29.137 181025 port 207 181025 unique_id port 181025 remote_ip 10.8.0.58 181031 username motamedi9772 181031 mac 181031 bytes_out 247357 181031 bytes_in 1302172 181031 station_ip 83.123.81.27 181031 port 195 181031 unique_id port 181031 remote_ip 10.8.0.154 181033 username aminvpn 181033 mac 181033 bytes_out 0 181033 bytes_in 0 181033 station_ip 5.120.29.137 181033 port 196 181033 unique_id port 181033 remote_ip 10.8.0.58 181036 username shahruz 181036 mac 181036 bytes_out 182544 181036 bytes_in 264478 181036 station_ip 83.123.74.20 181036 port 202 181036 unique_id port 181036 remote_ip 10.8.0.230 181038 username aminvpn 181038 unique_id port 181038 terminate_cause User-Request 181038 bytes_out 2116760 181038 bytes_in 39615710 181038 station_ip 5.120.148.52 181038 port 15728828 181038 nas_port_type Virtual 181038 remote_ip 5.5.5.199 181039 username soleymani5056 181039 mac 181039 bytes_out 160575 181039 bytes_in 975052 181039 station_ip 5.120.146.120 181039 port 196 181039 unique_id port 181039 remote_ip 10.8.0.226 181046 username farhad3 181046 mac 181046 bytes_out 2733246 181046 bytes_in 23825164 181046 station_ip 5.120.54.220 181046 port 200 181046 unique_id port 181046 remote_ip 10.8.0.222 181047 username aminvpn 181047 mac 181047 bytes_out 0 181047 bytes_in 0 181047 station_ip 5.120.29.137 181047 port 196 181047 unique_id port 181047 remote_ip 10.8.0.58 181049 username nilufarrajaei 181049 mac 181049 bytes_out 373188 181049 bytes_in 3936413 181049 station_ip 83.123.90.146 181049 port 202 181049 unique_id port 181049 remote_ip 10.8.0.194 181050 username shahruz 181050 mac 181050 bytes_out 0 181050 bytes_in 0 181050 station_ip 83.123.74.20 181050 port 196 181050 unique_id port 181050 remote_ip 10.8.0.230 181052 username shahruz 181052 mac 181052 bytes_out 0 181052 bytes_in 0 181052 station_ip 5.119.94.31 181052 port 196 181052 unique_id port 181052 remote_ip 10.8.0.230 181058 username aminvpn 181058 unique_id port 181058 terminate_cause Lost-Carrier 181058 bytes_out 2960682 181058 bytes_in 48677791 181058 station_ip 5.120.29.137 181058 port 15728823 181058 nas_port_type Virtual 181058 remote_ip 5.5.5.221 181061 username aminvpn 181061 mac 181061 bytes_out 0 181061 bytes_in 0 181061 station_ip 5.120.29.137 181061 port 202 181061 unique_id port 181061 remote_ip 10.8.0.58 181063 username aminvpn 181063 mac 181063 bytes_out 0 181063 bytes_in 0 181063 station_ip 5.120.29.137 181063 port 195 181063 unique_id port 181063 remote_ip 10.8.0.58 181064 username nilufarrajaei 181064 mac 181064 bytes_out 61681 181064 bytes_in 110523 181045 bytes_out 107980 181045 bytes_in 1814916 181045 station_ip 83.123.74.20 181045 port 195 181045 unique_id port 181045 remote_ip 10.8.0.230 181051 username soleymani5056 181051 mac 181051 bytes_out 397467 181051 bytes_in 2579881 181051 station_ip 5.119.35.7 181051 port 207 181051 unique_id port 181051 remote_ip 10.8.0.226 181053 username farhad3 181053 mac 181053 bytes_out 133340 181053 bytes_in 909144 181053 station_ip 5.120.54.220 181053 port 195 181053 unique_id port 181053 remote_ip 10.8.0.222 181055 username soleymani5056 181055 mac 181055 bytes_out 33408 181055 bytes_in 42714 181055 station_ip 5.119.221.109 181055 port 200 181055 unique_id port 181055 remote_ip 10.8.0.226 181056 username shahruz 181056 mac 181056 bytes_out 170691 181056 bytes_in 1338379 181056 station_ip 5.119.146.202 181056 port 196 181056 unique_id port 181056 remote_ip 10.8.0.230 181060 username shahruz 181060 mac 181060 bytes_out 91064 181060 bytes_in 993542 181060 station_ip 83.123.74.20 181060 port 200 181060 unique_id port 181060 remote_ip 10.8.0.230 181062 username farhad3 181062 mac 181062 bytes_out 1016007 181062 bytes_in 8616236 181062 station_ip 5.119.107.13 181062 port 195 181062 unique_id port 181062 remote_ip 10.8.0.222 181070 username shahruz 181070 kill_reason Another user logged on this global unique id 181070 mac 181070 bytes_out 0 181070 bytes_in 0 181070 station_ip 5.119.108.136 181070 port 196 181070 unique_id port 181070 remote_ip 10.8.0.230 181074 username farhad3 181074 kill_reason Another user logged on this global unique id 181074 mac 181074 bytes_out 0 181074 bytes_in 0 181074 station_ip 5.119.107.13 181074 port 195 181074 unique_id port 181074 remote_ip 10.8.0.222 181084 username aminvpn 181084 mac 181084 bytes_out 0 181084 bytes_in 0 181084 station_ip 5.120.29.137 181084 port 210 181084 unique_id port 181084 remote_ip 10.8.0.58 181091 username mahdiyehalizadeh 181091 mac 181091 bytes_out 750551 181091 bytes_in 3499749 181091 station_ip 5.119.240.36 181091 port 196 181091 unique_id port 181091 remote_ip 10.8.0.114 181099 username fezealinaghi 181099 mac 181099 bytes_out 0 181099 bytes_in 0 181099 station_ip 83.123.47.222 181099 port 202 181099 unique_id port 181107 username mirzaei6046 181107 kill_reason Another user logged on this global unique id 181107 mac 181107 bytes_out 0 181107 bytes_in 0 181107 station_ip 5.119.103.136 181107 port 201 181107 unique_id port 181110 username farhad3 181110 mac 181110 bytes_out 4694221 181110 bytes_in 37993029 181110 station_ip 5.119.107.13 181110 port 134 181110 unique_id port 181110 remote_ip 10.8.0.222 181111 username naeimeh 181111 mac 181111 bytes_out 2680508 181111 bytes_in 24500281 181111 station_ip 83.123.98.173 181111 port 196 181111 unique_id port 181111 remote_ip 10.8.0.78 181117 username mirzaei6046 181117 kill_reason Another user logged on this global unique id 181117 mac 181117 bytes_out 0 181117 bytes_in 0 181117 station_ip 5.119.103.136 181117 port 201 181117 unique_id port 181120 username aminvpn 181120 mac 181120 bytes_out 0 181120 bytes_in 0 181120 station_ip 5.120.29.137 181120 port 187 181120 unique_id port 181120 remote_ip 10.8.0.58 181126 username yaghobi 181126 mac 181126 bytes_out 129306 181126 bytes_in 246100 181126 station_ip 83.123.85.21 181126 port 134 181126 unique_id port 181126 remote_ip 10.8.0.138 181127 username aminvpn 181127 mac 181127 bytes_out 0 181127 bytes_in 0 181127 station_ip 5.120.29.137 181127 port 134 181127 unique_id port 181048 station_ip 5.119.167.226 181048 port 195 181048 unique_id port 181048 remote_ip 10.8.0.230 181054 username shahruz 181054 mac 181054 bytes_out 0 181054 bytes_in 0 181054 station_ip 83.123.74.20 181054 port 202 181054 unique_id port 181054 remote_ip 10.8.0.230 181057 username shahruz 181057 mac 181057 bytes_out 123763 181057 bytes_in 1565282 181057 station_ip 83.123.74.20 181057 port 200 181057 unique_id port 181057 remote_ip 10.8.0.230 181059 username shahruz 181059 mac 181059 bytes_out 242496 181059 bytes_in 1695211 181059 station_ip 5.119.237.78 181059 port 196 181059 unique_id port 181059 remote_ip 10.8.0.230 181065 username mosi 181065 kill_reason Another user logged on this global unique id 181065 mac 181065 bytes_out 0 181065 bytes_in 0 181065 station_ip 151.235.83.58 181065 port 134 181065 unique_id port 181067 username aminvpn 181067 kill_reason Maximum check online fails reached 181067 mac 181067 bytes_out 0 181067 bytes_in 0 181067 station_ip 5.120.29.137 181067 port 200 181067 unique_id port 181069 username soleymani5056 181069 mac 181069 bytes_out 247002 181069 bytes_in 554172 181069 station_ip 5.119.221.109 181069 port 202 181069 unique_id port 181069 remote_ip 10.8.0.226 181071 username aminvpn 181071 mac 181071 bytes_out 0 181071 bytes_in 0 181071 station_ip 5.120.29.137 181071 port 202 181071 unique_id port 181071 remote_ip 10.8.0.58 181073 username hosseine 181073 kill_reason Another user logged on this global unique id 181073 mac 181073 bytes_out 0 181073 bytes_in 0 181073 station_ip 83.123.92.83 181073 port 208 181073 unique_id port 181073 remote_ip 10.8.0.54 181075 username motamedi9772 181075 mac 181075 bytes_out 136178 181075 bytes_in 157267 181075 station_ip 83.123.81.27 181075 port 215 181075 unique_id port 181075 remote_ip 10.8.0.154 181076 username shahruz 181076 mac 181076 bytes_out 0 181076 bytes_in 0 181076 station_ip 5.119.108.136 181076 port 196 181076 unique_id port 181077 username aminvpn 181077 mac 181077 bytes_out 0 181077 bytes_in 0 181077 station_ip 5.120.29.137 181077 port 196 181077 unique_id port 181077 remote_ip 10.8.0.58 181079 username farhad3 181079 kill_reason Another user logged on this global unique id 181079 mac 181079 bytes_out 0 181079 bytes_in 0 181079 station_ip 5.119.107.13 181079 port 195 181079 unique_id port 181082 username shahruz 181082 mac 181082 bytes_out 0 181082 bytes_in 0 181082 station_ip 5.119.207.23 181082 port 196 181082 unique_id port 181082 remote_ip 10.8.0.230 181088 username mosi 181088 kill_reason Another user logged on this global unique id 181088 mac 181088 bytes_out 0 181088 bytes_in 0 181088 station_ip 151.235.83.58 181088 port 207 181088 unique_id port 181088 remote_ip 10.8.0.142 181094 username fezealinaghi 181094 kill_reason Another user logged on this global unique id 181094 mac 181094 bytes_out 0 181094 bytes_in 0 181094 station_ip 83.123.47.222 181094 port 202 181094 unique_id port 181094 remote_ip 10.8.0.202 181095 username farhad3 181095 mac 181095 bytes_out 184979 181095 bytes_in 449634 181095 station_ip 5.119.107.13 181095 port 196 181095 unique_id port 181095 remote_ip 10.8.0.222 181096 username mansour 181096 mac 181096 bytes_out 1143311 181096 bytes_in 12580148 181096 station_ip 5.202.97.228 181096 port 134 181096 unique_id port 181096 remote_ip 10.8.0.206 181098 username aminvpn 181098 mac 181098 bytes_out 0 181098 bytes_in 0 181098 station_ip 5.120.29.137 181098 port 134 181098 unique_id port 181098 remote_ip 10.8.0.58 181064 station_ip 151.235.66.226 181064 port 200 181064 unique_id port 181064 remote_ip 10.8.0.194 181066 username farhad3 181066 mac 181066 bytes_out 0 181066 bytes_in 0 181066 station_ip 5.119.107.13 181066 port 195 181066 unique_id port 181066 remote_ip 10.8.0.222 181068 username mosi 181068 mac 181068 bytes_out 0 181068 bytes_in 0 181068 station_ip 151.235.83.58 181068 port 134 181068 unique_id port 181072 username soleymani5056 181072 mac 181072 bytes_out 4504 181072 bytes_in 16978 181072 station_ip 5.119.144.29 181072 port 210 181072 unique_id port 181072 remote_ip 10.8.0.226 181078 username shahruz 181078 mac 181078 bytes_out 181291 181078 bytes_in 1636414 181078 station_ip 83.123.74.20 181078 port 210 181078 unique_id port 181078 remote_ip 10.8.0.230 181080 username shahruz 181080 mac 181080 bytes_out 1381725 181080 bytes_in 23931625 181080 station_ip 5.119.244.23 181080 port 196 181080 unique_id port 181080 remote_ip 10.8.0.230 181081 username shahruz 181081 mac 181081 bytes_out 0 181081 bytes_in 0 181081 station_ip 83.123.74.20 181081 port 215 181081 unique_id port 181081 remote_ip 10.8.0.230 181083 username soleymani5056 181083 mac 181083 bytes_out 47154 181083 bytes_in 92716 181083 station_ip 5.119.144.29 181083 port 210 181083 unique_id port 181083 remote_ip 10.8.0.226 181085 username aminvpn 181085 mac 181085 bytes_out 0 181085 bytes_in 0 181085 station_ip 5.120.29.137 181085 port 210 181085 unique_id port 181085 remote_ip 10.8.0.58 181086 username sabaghnezhad 181086 mac 181086 bytes_out 123350 181086 bytes_in 126520 181086 station_ip 83.123.4.193 181086 port 202 181086 unique_id port 181086 remote_ip 10.8.0.66 181087 username rajaei 181087 mac 181087 bytes_out 425585 181087 bytes_in 1547618 181087 station_ip 5.134.154.95 181087 port 196 181087 unique_id port 181087 remote_ip 10.8.0.218 181089 username farhad3 181089 kill_reason Another user logged on this global unique id 181089 mac 181089 bytes_out 0 181089 bytes_in 0 181089 station_ip 5.119.107.13 181089 port 195 181089 unique_id port 181090 username aminvpn 181090 mac 181090 bytes_out 0 181090 bytes_in 0 181090 station_ip 5.120.29.137 181090 port 210 181090 unique_id port 181090 remote_ip 10.8.0.58 181092 username farhad3 181092 mac 181092 bytes_out 0 181092 bytes_in 0 181092 station_ip 5.119.107.13 181092 port 195 181092 unique_id port 181093 username farhad3 181133 station_ip 5.120.29.137 181093 kill_reason Maximum check online fails reached 181093 mac 181093 bytes_out 0 181093 bytes_in 0 181093 station_ip 5.119.107.13 181093 port 195 181093 unique_id port 181097 username mosi 181097 kill_reason Another user logged on this global unique id 181097 mac 181097 bytes_out 0 181097 bytes_in 0 181097 station_ip 151.235.83.58 181097 port 207 181097 unique_id port 181101 username mirzaei6046 181101 kill_reason Another user logged on this global unique id 181101 mac 181101 bytes_out 0 181101 bytes_in 0 181101 station_ip 5.119.103.136 181101 port 201 181101 unique_id port 181102 username farhad3 181102 mac 181102 bytes_out 107846 181102 bytes_in 363806 181102 station_ip 5.119.107.13 181102 port 134 181102 unique_id port 181102 remote_ip 10.8.0.222 181103 username aminvpn 181103 mac 181103 bytes_out 0 181103 bytes_in 0 181103 station_ip 5.120.29.137 181103 port 196 181103 unique_id port 181103 remote_ip 10.8.0.58 181106 username aminvpn 181106 mac 181106 bytes_out 0 181106 bytes_in 0 181106 station_ip 5.120.29.137 181106 port 202 181106 unique_id port 181100 username farhad3 181100 mac 181100 bytes_out 1371630 181100 bytes_in 8993522 181100 station_ip 5.119.107.13 181100 port 196 181100 unique_id port 181100 remote_ip 10.8.0.222 181104 username motamedi9772 181104 mac 181104 bytes_out 109755 181104 bytes_in 94314 181104 station_ip 83.123.81.27 181104 port 196 181104 unique_id port 181104 remote_ip 10.8.0.154 181105 username khalili2 181105 mac 181105 bytes_out 0 181105 bytes_in 0 181105 station_ip 5.120.161.103 181105 port 190 181105 unique_id port 181115 username aminvpn 181115 mac 181115 bytes_out 0 181115 bytes_in 0 181115 station_ip 5.120.29.137 181115 port 187 181115 unique_id port 181115 remote_ip 10.8.0.58 181116 username farhad3 181116 mac 181116 bytes_out 0 181116 bytes_in 0 181116 station_ip 5.119.107.13 181116 port 134 181116 unique_id port 181119 username farhad3 181119 mac 181119 bytes_out 0 181119 bytes_in 0 181119 station_ip 5.119.107.13 181119 port 134 181119 unique_id port 181119 remote_ip 10.8.0.222 181121 username farhad3 181121 mac 181121 bytes_out 901658 181121 bytes_in 1537539 181121 station_ip 5.119.107.13 181121 port 134 181121 unique_id port 181121 remote_ip 10.8.0.222 181122 username farhad3 181122 mac 181122 bytes_out 73786 181122 bytes_in 235401 181122 station_ip 5.119.107.13 181122 port 134 181122 unique_id port 181122 remote_ip 10.8.0.222 181123 username farhad3 181123 mac 181123 bytes_out 320931 181123 bytes_in 466824 181123 station_ip 5.119.107.13 181123 port 134 181123 unique_id port 181123 remote_ip 10.8.0.222 181124 username aminvpn 181124 mac 181124 bytes_out 0 181124 bytes_in 0 181124 station_ip 5.120.29.137 181124 port 134 181124 unique_id port 181124 remote_ip 10.8.0.58 181129 username yaghobi 181129 mac 181129 bytes_out 432838 181129 bytes_in 2784615 181129 station_ip 83.123.63.164 181129 port 134 181129 unique_id port 181129 remote_ip 10.8.0.138 181130 username aminvpn 181130 mac 181130 bytes_out 0 181130 bytes_in 0 181130 station_ip 5.120.29.137 181130 port 190 181130 unique_id port 181130 remote_ip 10.8.0.58 181132 username yaghobi 181132 mac 181132 bytes_out 991931 181132 bytes_in 13250936 181132 station_ip 83.123.63.164 181132 port 187 181132 unique_id port 181132 remote_ip 10.8.0.138 181133 username aminvpn 181133 kill_reason Maximum check online fails reached 181133 mac 181133 bytes_out 0 181133 bytes_in 0 181133 port 187 181133 unique_id port 181135 username farhad3 181135 mac 181135 bytes_out 2622992 181135 bytes_in 19836162 181135 station_ip 5.119.107.13 181135 port 134 181135 unique_id port 181135 remote_ip 10.8.0.222 181139 username aminvpn 181139 mac 181139 bytes_out 0 181139 bytes_in 0 181139 station_ip 5.120.29.137 181139 port 190 181139 unique_id port 181139 remote_ip 10.8.0.58 181141 username farhad3 181141 mac 181141 bytes_out 3874258 181141 bytes_in 30329810 181141 station_ip 5.119.107.13 181141 port 134 181141 unique_id port 181141 remote_ip 10.8.0.222 181145 username farhad3 181145 mac 181145 bytes_out 41334 181145 bytes_in 104874 181145 station_ip 5.119.107.13 181145 port 134 181145 unique_id port 181145 remote_ip 10.8.0.222 181147 username farhad3 181147 mac 181147 bytes_out 0 181147 bytes_in 0 181147 station_ip 5.119.107.13 181147 port 134 181147 unique_id port 181147 remote_ip 10.8.0.222 181150 username farhad3 181150 kill_reason Another user logged on this global unique id 181150 mac 181106 remote_ip 10.8.0.58 181108 username mostafa_es78 181108 mac 181108 bytes_out 0 181108 bytes_in 0 181108 station_ip 113.203.69.83 181108 port 187 181108 unique_id port 181109 username aminvpn 181109 mac 181109 bytes_out 0 181109 bytes_in 0 181109 station_ip 5.120.29.137 181109 port 187 181109 unique_id port 181109 remote_ip 10.8.0.58 181112 username aminvpn 181112 mac 181112 bytes_out 0 181112 bytes_in 0 181112 station_ip 5.120.29.137 181112 port 187 181112 unique_id port 181112 remote_ip 10.8.0.58 181113 username aminvpn 181113 mac 181113 bytes_out 13091 181113 bytes_in 15935 181113 station_ip 5.120.29.137 181113 port 187 181113 unique_id port 181113 remote_ip 10.8.0.58 181114 username farhad3 181114 kill_reason Another user logged on this global unique id 181114 mac 181114 bytes_out 0 181114 bytes_in 0 181114 station_ip 5.119.107.13 181114 port 134 181114 unique_id port 181114 remote_ip 10.8.0.222 181118 username farhad3 181118 mac 181118 bytes_out 81844 181118 bytes_in 199570 181118 station_ip 5.119.107.13 181118 port 134 181118 unique_id port 181118 remote_ip 10.8.0.222 181125 username farhad3 181125 mac 181125 bytes_out 191814 181125 bytes_in 263255 181125 station_ip 5.119.107.13 181125 port 187 181125 unique_id port 181125 remote_ip 10.8.0.222 181131 username farhad3 181131 mac 181131 bytes_out 116991 181131 bytes_in 208491 181131 station_ip 5.119.107.13 181131 port 134 181131 unique_id port 181131 remote_ip 10.8.0.222 181136 username farhad3 181136 mac 181136 bytes_out 0 181136 bytes_in 0 181136 station_ip 5.119.107.13 181136 port 134 181136 unique_id port 181136 remote_ip 10.8.0.222 181138 username aminvpn 181138 mac 181138 bytes_out 0 181138 bytes_in 0 181138 station_ip 5.120.29.137 181138 port 190 181138 unique_id port 181138 remote_ip 10.8.0.58 181140 username aminvpn 181140 mac 181140 bytes_out 0 181140 bytes_in 0 181140 station_ip 5.120.29.137 181140 port 190 181140 unique_id port 181140 remote_ip 10.8.0.58 181146 username aminvpn 181146 mac 181146 bytes_out 0 181146 bytes_in 0 181146 station_ip 5.120.29.137 181146 port 134 181146 unique_id port 181146 remote_ip 10.8.0.58 181148 username farhad3 181148 kill_reason Another user logged on this global unique id 181148 mac 181148 bytes_out 0 181148 bytes_in 0 181148 station_ip 5.119.107.13 181148 port 134 181148 unique_id port 181148 remote_ip 10.8.0.222 181151 username aminvpn 181151 mac 181151 bytes_out 0 181151 bytes_in 0 181151 station_ip 5.120.29.137 181151 port 190 181151 unique_id port 181151 remote_ip 10.8.0.58 181153 username farhad3 181153 mac 181153 bytes_out 0 181153 bytes_in 0 181153 station_ip 5.119.107.13 181153 port 134 181153 unique_id port 181153 remote_ip 10.8.0.222 181154 username aminvpn 181154 mac 181154 bytes_out 0 181154 bytes_in 0 181154 station_ip 5.120.29.137 181154 port 190 181154 unique_id port 181154 remote_ip 10.8.0.58 181155 username aminvpn 181155 mac 181155 bytes_out 0 181155 bytes_in 0 181155 station_ip 5.120.29.137 181155 port 190 181155 unique_id port 181155 remote_ip 10.8.0.58 181158 username aminvpn 181158 mac 181158 bytes_out 0 181158 bytes_in 0 181158 station_ip 5.120.29.137 181158 port 134 181158 unique_id port 181158 remote_ip 10.8.0.58 181161 username farhad3 181161 kill_reason Another user logged on this global unique id 181161 mac 181161 bytes_out 0 181161 bytes_in 0 181161 station_ip 5.119.107.13 181161 port 190 181161 unique_id port 181127 remote_ip 10.8.0.58 181128 username yaghobi 181128 mac 181128 bytes_out 201477 181128 bytes_in 303367 181128 station_ip 83.123.63.164 181128 port 187 181128 unique_id port 181128 remote_ip 10.8.0.138 181134 username aminvpn 181134 mac 181134 bytes_out 0 181134 bytes_in 0 181134 station_ip 5.120.29.137 181134 port 196 181134 unique_id port 181134 remote_ip 10.8.0.58 181137 username saeeddamghani 181137 mac 181137 bytes_out 1957495 181137 bytes_in 22113617 181137 station_ip 5.119.165.92 181137 port 190 181137 unique_id port 181137 remote_ip 10.8.0.122 181142 username farhad3 181142 mac 181142 bytes_out 0 181142 bytes_in 0 181142 station_ip 5.119.107.13 181142 port 134 181142 unique_id port 181142 remote_ip 10.8.0.222 181143 username farhad3 181143 mac 181143 bytes_out 0 181143 bytes_in 0 181143 station_ip 5.119.107.13 181143 port 134 181143 unique_id port 181143 remote_ip 10.8.0.222 181144 username farhad3 181144 mac 181144 bytes_out 0 181144 bytes_in 0 181144 station_ip 5.119.107.13 181144 port 134 181144 unique_id port 181144 remote_ip 10.8.0.222 181149 username aminvpn 181149 mac 181149 bytes_out 0 181149 bytes_in 0 181149 station_ip 5.120.29.137 181149 port 190 181149 unique_id port 181149 remote_ip 10.8.0.58 181152 username farhad3 181152 mac 181152 bytes_out 0 181152 bytes_in 0 181152 station_ip 5.119.107.13 181152 port 134 181152 unique_id port 181159 username farhad3 181159 kill_reason Another user logged on this global unique id 181159 mac 181159 bytes_out 0 181159 bytes_in 0 181159 station_ip 5.119.107.13 181159 port 190 181159 unique_id port 181160 username aminvpn 181160 mac 181160 bytes_out 0 181160 bytes_in 0 181160 station_ip 5.120.29.137 181160 port 196 181160 unique_id port 181160 remote_ip 10.8.0.58 181162 username aminvpn 181162 mac 181162 bytes_out 0 181162 bytes_in 0 181162 station_ip 5.120.29.137 181162 port 202 181162 unique_id port 181162 remote_ip 10.8.0.58 181164 username fezealinaghi 181164 mac 181164 bytes_out 2725020 181164 bytes_in 41913039 181164 station_ip 83.123.58.170 181164 port 196 181164 unique_id port 181164 remote_ip 10.8.0.202 181165 username sedighe 181165 mac 181165 bytes_out 75207 181165 bytes_in 591677 181165 station_ip 83.123.7.153 181165 port 202 181165 unique_id port 181165 remote_ip 10.8.0.46 181166 username farhad3 181166 mac 181166 bytes_out 0 181166 bytes_in 0 181166 station_ip 5.119.107.13 181166 port 190 181166 unique_id port 181169 username aminvpn 181169 mac 181169 bytes_out 0 181169 bytes_in 0 181169 station_ip 5.120.29.137 181169 port 190 181169 unique_id port 181169 remote_ip 10.8.0.58 181172 username aminvpn 181172 mac 181172 bytes_out 0 181172 bytes_in 0 181172 station_ip 5.120.29.137 181172 port 190 181172 unique_id port 181172 remote_ip 10.8.0.58 181173 username sedighe 181173 mac 181173 bytes_out 27587 181173 bytes_in 44919 181173 station_ip 83.123.7.153 181173 port 134 181173 unique_id port 181173 remote_ip 10.8.0.46 181175 username sedighe 181175 mac 181175 bytes_out 1638 181175 bytes_in 3731 181175 station_ip 83.123.7.153 181175 port 134 181175 unique_id port 181175 remote_ip 10.8.0.46 181178 username nilufarrajaei 181178 mac 181178 bytes_out 844527 181178 bytes_in 5943359 181178 station_ip 151.235.66.226 181178 port 134 181178 unique_id port 181178 remote_ip 10.8.0.194 181179 username sedighe 181179 mac 181179 bytes_out 85400 181179 bytes_in 354434 181150 bytes_out 0 181150 bytes_in 0 181150 station_ip 5.119.107.13 181150 port 134 181150 unique_id port 181156 username farhad3 181156 mac 181156 bytes_out 2535491 181156 bytes_in 17216086 181156 station_ip 5.119.107.13 181156 port 134 181156 unique_id port 181156 remote_ip 10.8.0.222 181157 username farhad3 181157 kill_reason Another user logged on this global unique id 181157 mac 181157 bytes_out 0 181157 bytes_in 0 181157 station_ip 5.119.107.13 181157 port 190 181157 unique_id port 181157 remote_ip 10.8.0.222 181163 username mostafa_es78 181163 mac 181163 bytes_out 2089886 181163 bytes_in 19693439 181163 station_ip 83.122.77.26 181163 port 134 181163 unique_id port 181163 remote_ip 10.8.0.34 181167 username aminvpn 181167 mac 181167 bytes_out 0 181167 bytes_in 0 181167 station_ip 5.120.29.137 181167 port 190 181167 unique_id port 181167 remote_ip 10.8.0.58 181168 username aminvpn 181168 mac 181168 bytes_out 0 181168 bytes_in 0 181168 station_ip 5.120.29.137 181168 port 190 181168 unique_id port 181168 remote_ip 10.8.0.58 181170 username aminvpn 181170 mac 181170 bytes_out 0 181170 bytes_in 0 181170 station_ip 5.120.29.137 181170 port 190 181170 unique_id port 181170 remote_ip 10.8.0.58 181171 username sedighe 181171 mac 181171 bytes_out 294599 181171 bytes_in 596562 181171 station_ip 83.123.7.153 181171 port 134 181171 unique_id port 181171 remote_ip 10.8.0.46 181174 username sedighe 181174 mac 181174 bytes_out 13987 181174 bytes_in 14553 181174 station_ip 83.123.7.153 181174 port 196 181174 unique_id port 181174 remote_ip 10.8.0.46 181176 username aminvpn 181176 mac 181176 bytes_out 0 181176 bytes_in 0 181176 station_ip 5.120.29.137 181176 port 215 181176 unique_id port 181176 remote_ip 10.8.0.58 181177 username aminvpn 181177 mac 181177 bytes_out 1644 181177 bytes_in 4617 181177 station_ip 5.120.29.137 181177 port 215 181177 unique_id port 181177 remote_ip 10.8.0.58 181179 station_ip 83.123.7.153 181179 port 202 181179 unique_id port 181179 remote_ip 10.8.0.46 181180 username aminvpn 181180 mac 181180 bytes_out 0 181180 bytes_in 0 181180 station_ip 5.120.29.137 181180 port 202 181180 unique_id port 181180 remote_ip 10.8.0.58 181181 username milan 181181 kill_reason Another user logged on this global unique id 181181 mac 181181 bytes_out 0 181181 bytes_in 0 181181 station_ip 5.119.97.240 181181 port 196 181181 unique_id port 181181 remote_ip 10.8.0.182 181182 username aminvpn 181182 mac 181182 bytes_out 1644 181182 bytes_in 3731 181182 station_ip 5.120.29.137 181182 port 202 181182 unique_id port 181182 remote_ip 10.8.0.58 181183 username houshang 181183 mac 181183 bytes_out 1279841 181183 bytes_in 11362571 181183 station_ip 5.119.197.195 181183 port 210 181183 unique_id port 181183 remote_ip 10.8.0.82 181184 username aminvpn 181184 mac 181184 bytes_out 0 181184 bytes_in 0 181184 station_ip 5.120.29.137 181184 port 210 181184 unique_id port 181184 remote_ip 10.8.0.58 181185 username mirzaei6046 181185 kill_reason Maximum check online fails reached 181185 mac 181185 bytes_out 0 181185 bytes_in 0 181185 station_ip 5.119.103.136 181185 port 201 181185 unique_id port 181186 username hosseine 181186 kill_reason Maximum check online fails reached 181186 mac 181186 bytes_out 0 181186 bytes_in 0 181186 station_ip 83.123.92.83 181186 port 208 181186 unique_id port 181187 username sedighe 181187 mac 181187 bytes_out 162552 181187 bytes_in 1445521 181187 station_ip 83.123.7.153 181187 port 134 181187 unique_id port 181187 remote_ip 10.8.0.46 181188 username milan 181188 kill_reason Another user logged on this global unique id 181188 mac 181188 bytes_out 0 181188 bytes_in 0 181188 station_ip 5.119.97.240 181188 port 196 181188 unique_id port 181193 username nilufarrajaei 181193 mac 181193 bytes_out 210100 181193 bytes_in 1091104 181193 station_ip 151.235.71.87 181193 port 210 181193 unique_id port 181193 remote_ip 10.8.0.194 181194 username aminvpn 181194 mac 181194 bytes_out 0 181194 bytes_in 0 181194 station_ip 5.120.29.137 181194 port 134 181194 unique_id port 181194 remote_ip 10.8.0.58 181195 username milan 181195 kill_reason Another user logged on this global unique id 181195 mac 181195 bytes_out 0 181195 bytes_in 0 181195 station_ip 5.119.97.240 181195 port 196 181195 unique_id port 181197 username aminvpn 181197 mac 181197 bytes_out 0 181197 bytes_in 0 181197 station_ip 5.120.29.137 181197 port 215 181197 unique_id port 181197 remote_ip 10.8.0.58 181200 username yaghobi 181200 mac 181200 bytes_out 63708 181200 bytes_in 56928 181200 station_ip 83.123.63.138 181200 port 202 181200 unique_id port 181200 remote_ip 10.8.0.138 181204 username aminvpn 181204 mac 181204 bytes_out 0 181204 bytes_in 0 181204 station_ip 5.120.29.137 181204 port 215 181204 unique_id port 181204 remote_ip 10.8.0.58 181206 username kalantary6037 181206 mac 181206 bytes_out 993428 181206 bytes_in 9748365 181206 station_ip 83.123.61.213 181206 port 210 181206 unique_id port 181206 remote_ip 10.8.0.50 181209 username sedighe 181209 mac 181209 bytes_out 83422 181209 bytes_in 292216 181209 station_ip 83.123.54.185 181209 port 215 181209 unique_id port 181209 remote_ip 10.8.0.46 181210 username shadkam 181210 mac 181210 bytes_out 3669047 181210 bytes_in 47090882 181210 station_ip 83.123.54.20 181210 port 210 181210 unique_id port 181210 remote_ip 10.8.0.74 181211 username yaghobi 181211 mac 181211 bytes_out 1616 181211 bytes_in 4058 181211 station_ip 83.123.24.119 181211 port 202 181211 unique_id port 181211 remote_ip 10.8.0.138 181212 username shadkam 181212 mac 181212 bytes_out 0 181212 bytes_in 0 181212 station_ip 83.123.54.20 181212 port 210 181212 unique_id port 181212 remote_ip 10.8.0.74 181217 username jafari 181217 kill_reason Another user logged on this global unique id 181217 mac 181217 bytes_out 0 181217 bytes_in 0 181217 station_ip 5.134.166.211 181217 port 215 181217 unique_id port 181217 remote_ip 10.8.0.86 181219 username aminvpn 181219 mac 181219 bytes_out 0 181219 bytes_in 0 181219 station_ip 5.120.29.137 181219 port 202 181219 unique_id port 181219 remote_ip 10.8.0.58 181226 username nilufarrajaei 181226 mac 181226 bytes_out 3906899 181226 bytes_in 39949045 181226 station_ip 83.123.89.238 181226 port 134 181226 unique_id port 181226 remote_ip 10.8.0.194 181227 username mehdizare 181227 mac 181227 bytes_out 11299 181227 bytes_in 23481 181227 station_ip 83.123.52.141 181227 port 134 181227 unique_id port 181227 remote_ip 10.8.0.210 181228 username yaghobi 181228 mac 181228 bytes_out 25915 181228 bytes_in 15199 181228 station_ip 83.123.83.65 181228 port 210 181228 unique_id port 181228 remote_ip 10.8.0.138 181233 username jafari 181233 mac 181233 bytes_out 0 181233 bytes_in 0 181233 station_ip 5.134.166.211 181233 port 215 181233 unique_id port 181235 username aminvpn 181235 mac 181235 bytes_out 0 181235 bytes_in 0 181235 station_ip 5.120.29.137 181235 port 215 181235 unique_id port 181189 username nilufarrajaei 181189 mac 181189 bytes_out 1610298 181189 bytes_in 11640935 181189 station_ip 151.235.66.226 181189 port 202 181189 unique_id port 181189 remote_ip 10.8.0.194 181190 username aminvpn 181190 mac 181190 bytes_out 0 181190 bytes_in 0 181190 station_ip 5.120.29.137 181190 port 202 181190 unique_id port 181190 remote_ip 10.8.0.58 181192 username nilufarrajaei 181192 mac 181192 bytes_out 156202 181192 bytes_in 1003233 181192 station_ip 151.235.71.87 181192 port 134 181192 unique_id port 181192 remote_ip 10.8.0.194 181196 username aminvpn 181196 mac 181196 bytes_out 0 181196 bytes_in 0 181196 station_ip 5.120.29.137 181196 port 215 181196 unique_id port 181196 remote_ip 10.8.0.58 181202 username milan 181202 kill_reason Another user logged on this global unique id 181202 mac 181202 bytes_out 0 181202 bytes_in 0 181202 station_ip 5.119.97.240 181202 port 196 181202 unique_id port 181203 username yaghobi 181203 mac 181203 bytes_out 50985 181203 bytes_in 36223 181203 station_ip 83.123.63.138 181203 port 215 181203 unique_id port 181203 remote_ip 10.8.0.138 181207 username aminvpn 181207 mac 181207 bytes_out 0 181207 bytes_in 0 181207 station_ip 5.120.29.137 181207 port 217 181207 unique_id port 181207 remote_ip 10.8.0.58 181208 username sabaghnezhad 181208 mac 181208 bytes_out 305959 181208 bytes_in 259879 181208 station_ip 83.123.111.235 181208 port 202 181208 unique_id port 181208 remote_ip 10.8.0.66 181213 username aminvpn 181213 mac 181213 bytes_out 0 181213 bytes_in 0 181213 station_ip 5.120.29.137 181213 port 210 181213 unique_id port 181213 remote_ip 10.8.0.58 181214 username kalantary6037 181214 mac 181214 bytes_out 1138109 181214 bytes_in 6388252 181214 station_ip 83.123.50.225 181214 port 202 181214 unique_id port 181214 remote_ip 10.8.0.50 181218 username shadkam 181218 mac 181218 bytes_out 154432 181218 bytes_in 521099 181218 station_ip 83.123.54.20 181218 port 210 181218 unique_id port 181218 remote_ip 10.8.0.74 181221 username mehdizare 181221 mac 181221 bytes_out 1383189 181221 bytes_in 30301103 181221 station_ip 83.123.52.141 181221 port 190 181221 unique_id port 181221 remote_ip 10.8.0.210 181225 username aminvpn 181225 mac 181225 bytes_out 0 181225 bytes_in 0 181225 station_ip 5.120.29.137 181225 port 202 181225 unique_id port 181225 remote_ip 10.8.0.58 181229 username yaghobi 181229 mac 181229 bytes_out 524255 181229 bytes_in 4391743 181229 station_ip 83.123.101.187 181229 port 134 181229 unique_id port 181229 remote_ip 10.8.0.138 181231 username aminvpn 181231 mac 181231 bytes_out 0 181231 bytes_in 0 181231 station_ip 5.120.29.137 181231 port 134 181231 unique_id port 181231 remote_ip 10.8.0.58 181234 username aminvpn 181234 mac 181234 bytes_out 0 181234 bytes_in 0 181234 station_ip 5.120.29.137 181234 port 215 181234 unique_id port 181234 remote_ip 10.8.0.58 181236 username godarzi 181236 mac 181236 bytes_out 1413891 181236 bytes_in 11448968 181236 station_ip 5.202.5.255 181236 port 134 181236 unique_id port 181236 remote_ip 10.8.0.38 181240 username kalantary6037 181240 mac 181240 bytes_out 649118 181240 bytes_in 3629046 181240 station_ip 83.123.96.169 181240 port 215 181240 unique_id port 181240 remote_ip 10.8.0.50 181242 username aminvpn 181242 mac 181242 bytes_out 0 181242 bytes_in 0 181242 station_ip 5.120.29.137 181242 port 217 181242 unique_id port 181242 remote_ip 10.8.0.58 181251 username aminvpn 181191 username sekonji0496 181191 mac 181191 bytes_out 20088 181191 bytes_in 81479 181191 station_ip 83.123.81.225 181191 port 210 181191 unique_id port 181191 remote_ip 10.8.0.62 181198 username yaghobi 181198 mac 181198 bytes_out 562289 181198 bytes_in 1655674 181198 station_ip 83.123.39.227 181198 port 202 181198 unique_id port 181198 remote_ip 10.8.0.138 181199 username yaghobi 181199 mac 181199 bytes_out 6762 181199 bytes_in 10008 181199 station_ip 83.123.61.193 181199 port 215 181199 unique_id port 181199 remote_ip 10.8.0.138 181201 username houshang 181201 mac 181201 bytes_out 736730 181201 bytes_in 9077424 181201 station_ip 5.119.197.195 181201 port 210 181201 unique_id port 181201 remote_ip 10.8.0.82 181205 username shadkam 181205 mac 181205 bytes_out 0 181205 bytes_in 0 181205 station_ip 83.123.54.20 181205 port 215 181205 unique_id port 181205 remote_ip 10.8.0.74 181215 username alirezazadeh 181215 unique_id port 181215 terminate_cause Lost-Carrier 181215 bytes_out 21206759 181215 bytes_in 49285229 181215 station_ip 5.119.251.66 181215 port 15728814 181215 nas_port_type Virtual 181215 remote_ip 5.5.5.200 181216 username yaghobi 181216 mac 181216 bytes_out 197555 181216 bytes_in 1008137 181216 station_ip 83.123.51.209 181216 port 217 181216 unique_id port 181216 remote_ip 10.8.0.138 181220 username yaghobi 181220 mac 181220 bytes_out 225673 181220 bytes_in 591792 181220 station_ip 83.123.115.159 181220 port 202 181220 unique_id port 181220 remote_ip 10.8.0.138 181222 username jafari 181222 kill_reason Another user logged on this global unique id 181222 mac 181222 bytes_out 0 181222 bytes_in 0 181222 station_ip 5.134.166.211 181222 port 215 181222 unique_id port 181223 username mehdizare 181223 mac 181223 bytes_out 22566 181223 bytes_in 47134 181223 station_ip 83.123.52.141 181223 port 202 181223 unique_id port 181223 remote_ip 10.8.0.210 181224 username mehdizare 181224 kill_reason Maximum check online fails reached 181224 mac 181224 bytes_out 0 181224 bytes_in 0 181224 station_ip 83.123.52.141 181224 port 190 181224 unique_id port 181230 username yaghobi 181230 mac 181230 bytes_out 0 181230 bytes_in 0 181230 station_ip 83.123.101.187 181230 port 217 181230 unique_id port 181230 remote_ip 10.8.0.138 181232 username jafari 181232 kill_reason Another user logged on this global unique id 181232 mac 181232 bytes_out 0 181232 bytes_in 0 181232 station_ip 5.134.166.211 181232 port 215 181232 unique_id port 181237 username aminvpn 181237 mac 181237 bytes_out 0 181237 bytes_in 0 181237 station_ip 5.120.29.137 181237 port 134 181237 unique_id port 181237 remote_ip 10.8.0.58 181238 username aminvpn 181238 kill_reason Maximum check online fails reached 181238 mac 181238 bytes_out 0 181238 bytes_in 0 181238 station_ip 5.120.29.137 181238 port 134 181238 unique_id port 181241 username nilufarrajaei 181241 kill_reason Another user logged on this global unique id 181241 mac 181241 bytes_out 0 181241 bytes_in 0 181241 station_ip 83.123.89.238 181241 port 202 181241 unique_id port 181241 remote_ip 10.8.0.194 181243 username aminvpn 181243 unique_id port 181243 terminate_cause Lost-Carrier 181243 bytes_out 3906734 181243 bytes_in 100619374 181243 station_ip 31.57.123.115 181243 port 15728843 181243 nas_port_type Virtual 181243 remote_ip 5.5.5.197 181247 username nilufarrajaei 181247 mac 181247 bytes_out 0 181247 bytes_in 0 181247 station_ip 83.123.89.238 181247 port 202 181247 unique_id port 181248 username aminvpn 181248 mac 181248 bytes_out 0 181235 remote_ip 10.8.0.58 181239 username pourshad 181239 kill_reason Another user logged on this global unique id 181239 mac 181239 bytes_out 0 181239 bytes_in 0 181239 station_ip 5.119.121.30 181239 port 189 181239 unique_id port 181244 username mehdizare 181244 mac 181244 bytes_out 510355 181244 bytes_in 495130 181244 station_ip 83.123.52.141 181244 port 210 181244 unique_id port 181244 remote_ip 10.8.0.210 181245 username aminvpn 181245 mac 181245 bytes_out 0 181245 bytes_in 0 181245 station_ip 5.120.29.137 181245 port 218 181245 unique_id port 181245 remote_ip 10.8.0.58 181246 username pourshad 181246 kill_reason Another user logged on this global unique id 181246 mac 181246 bytes_out 0 181246 bytes_in 0 181246 station_ip 5.119.121.30 181246 port 189 181246 unique_id port 181250 username aminvpn 181250 unique_id port 181250 terminate_cause Lost-Carrier 181250 bytes_out 232788 181250 bytes_in 257244 181250 station_ip 83.123.124.117 181250 port 15728844 181250 nas_port_type Virtual 181250 remote_ip 5.5.5.196 181261 username aminvpn 181261 mac 181261 bytes_out 0 181261 bytes_in 0 181261 station_ip 5.120.29.137 181261 port 217 181261 unique_id port 181261 remote_ip 10.8.0.58 181263 username pourshad 181263 mac 181263 bytes_out 0 181263 bytes_in 0 181263 station_ip 5.119.121.30 181263 port 189 181263 unique_id port 181265 username godarzi 181265 kill_reason Another user logged on this global unique id 181265 mac 181265 bytes_out 0 181265 bytes_in 0 181265 station_ip 5.202.5.255 181265 port 210 181265 unique_id port 181265 remote_ip 10.8.0.38 181267 username yaghobi 181267 mac 181267 bytes_out 115530 181267 bytes_in 189242 181267 station_ip 83.123.26.129 181267 port 189 181267 unique_id port 181267 remote_ip 10.8.0.138 181268 username kalantary6037 181268 mac 181268 bytes_out 24026 181268 bytes_in 27164 181268 station_ip 83.123.87.137 181268 port 218 181268 unique_id port 181268 remote_ip 10.8.0.50 181271 username pourshad 181271 kill_reason Another user logged on this global unique id 181271 mac 181271 bytes_out 0 181271 bytes_in 0 181271 station_ip 5.119.121.30 181271 port 217 181271 unique_id port 181272 username aminvpn 181272 mac 181272 bytes_out 0 181272 bytes_in 0 181272 station_ip 5.120.29.137 181272 port 218 181272 unique_id port 181272 remote_ip 10.8.0.58 181273 username yaghobi 181273 mac 181273 bytes_out 618043 181273 bytes_in 2892823 181273 station_ip 83.123.26.129 181273 port 219 181273 unique_id port 181273 remote_ip 10.8.0.138 181274 username yaghobi 181274 mac 181274 bytes_out 2787 181274 bytes_in 4086 181274 station_ip 83.123.91.45 181274 port 218 181274 unique_id port 181274 remote_ip 10.8.0.138 181275 username godarzi 181275 kill_reason Another user logged on this global unique id 181275 mac 181275 bytes_out 0 181275 bytes_in 0 181275 station_ip 5.202.5.255 181275 port 210 181275 unique_id port 181277 username pourshad 181277 kill_reason Another user logged on this global unique id 181277 mac 181277 bytes_out 0 181277 bytes_in 0 181277 station_ip 5.119.121.30 181277 port 217 181277 unique_id port 181279 username pourshad 181279 kill_reason Another user logged on this global unique id 181279 mac 181279 bytes_out 0 181279 bytes_in 0 181279 station_ip 5.119.121.30 181279 port 217 181279 unique_id port 181281 username aminvpn 181281 mac 181281 bytes_out 0 181281 bytes_in 0 181281 station_ip 5.120.29.137 181281 port 189 181281 unique_id port 181281 remote_ip 10.8.0.58 181282 username motamedi9772 181282 mac 181282 bytes_out 0 181282 bytes_in 0 181248 bytes_in 0 181248 station_ip 5.120.29.137 181248 port 220 181248 unique_id port 181248 remote_ip 10.8.0.58 181249 username pourshad 181249 kill_reason Another user logged on this global unique id 181249 mac 181249 bytes_out 0 181249 bytes_in 0 181249 station_ip 5.119.121.30 181249 port 189 181249 unique_id port 181252 username pourshad 181252 kill_reason Another user logged on this global unique id 181252 mac 181252 bytes_out 0 181252 bytes_in 0 181252 station_ip 5.119.121.30 181252 port 189 181252 unique_id port 181253 username mehdizare 181253 mac 181253 bytes_out 27041 181253 bytes_in 33747 181253 station_ip 83.123.52.141 181253 port 210 181253 unique_id port 181253 remote_ip 10.8.0.210 181254 username aminvpn 181254 mac 181254 bytes_out 0 181254 bytes_in 0 181254 station_ip 5.120.29.137 181254 port 220 181254 unique_id port 181254 remote_ip 10.8.0.58 181256 username yaghobi 181256 mac 181256 bytes_out 273840 181256 bytes_in 421735 181256 station_ip 83.123.31.100 181256 port 202 181256 unique_id port 181256 remote_ip 10.8.0.138 181257 username mehdizare 181257 mac 181257 bytes_out 21461 181257 bytes_in 28689 181257 station_ip 83.123.52.141 181257 port 210 181257 unique_id port 181257 remote_ip 10.8.0.210 181260 username nilufarrajaei 181260 mac 181260 bytes_out 1025691 181260 bytes_in 2426242 181260 station_ip 83.123.89.238 181260 port 219 181260 unique_id port 181260 remote_ip 10.8.0.194 181264 username yaghobi 181264 mac 181264 bytes_out 407684 181264 bytes_in 565309 181264 station_ip 83.123.26.129 181264 port 218 181264 unique_id port 181264 remote_ip 10.8.0.138 181266 username aminvpn 181266 mac 181266 bytes_out 0 181266 bytes_in 0 181266 station_ip 5.120.29.137 181266 port 218 181266 unique_id port 181266 remote_ip 10.8.0.58 181270 username esmaeilkazemi 181270 mac 181270 bytes_out 29081 181270 bytes_in 74601 181270 station_ip 83.123.89.57 181270 port 189 181270 unique_id port 181270 remote_ip 10.8.0.26 181276 username nilufarrajaei 181276 mac 181276 bytes_out 497890 181276 bytes_in 3332524 181276 station_ip 83.123.48.166 181276 port 189 181276 unique_id port 181276 remote_ip 10.8.0.194 181280 username yaghobi 181280 mac 181280 bytes_out 415856 181280 bytes_in 938964 181280 station_ip 83.123.91.45 181280 port 219 181280 unique_id port 181280 remote_ip 10.8.0.138 181283 username pourshad 181283 kill_reason Another user logged on this global unique id 181283 mac 181283 bytes_out 0 181283 bytes_in 0 181283 station_ip 5.119.121.30 181283 port 217 181283 unique_id port 181290 username alipour1506 181290 mac 181290 bytes_out 678192 181290 bytes_in 6663451 181290 station_ip 83.123.109.22 181290 port 189 181290 unique_id port 181290 remote_ip 10.8.0.126 181292 username soleymani5056 181292 mac 181292 bytes_out 115476 181292 bytes_in 223675 181292 station_ip 5.120.116.243 181292 port 219 181292 unique_id port 181292 remote_ip 10.8.0.226 181294 username mehdizare 181294 kill_reason Another user logged on this global unique id 181294 mac 181294 bytes_out 0 181294 bytes_in 0 181294 station_ip 83.123.52.141 181294 port 202 181294 unique_id port 181294 remote_ip 10.8.0.210 181297 username saeeddamghani 181297 unique_id port 181297 terminate_cause User-Request 181297 bytes_out 94308 181297 bytes_in 1773399 181297 station_ip 83.123.69.253 181297 port 15728850 181297 nas_port_type Virtual 181297 remote_ip 5.5.5.194 181301 username saeeddamghani 181301 unique_id port 181301 terminate_cause User-Request 181301 bytes_out 70965 181301 bytes_in 1478054 181301 station_ip 83.123.69.253 181251 unique_id port 181251 terminate_cause Lost-Carrier 181251 bytes_out 2760136 181251 bytes_in 116920859 181251 station_ip 31.57.123.42 181251 port 15728845 181251 nas_port_type Virtual 181251 remote_ip 5.5.5.195 181255 username godarzi 181255 mac 181255 bytes_out 4379162 181255 bytes_in 40472881 181255 station_ip 5.202.5.255 181255 port 218 181255 unique_id port 181255 remote_ip 10.8.0.38 181258 username sabaghnezhad 181258 mac 181258 bytes_out 212922 181258 bytes_in 191538 181258 station_ip 83.123.111.235 181258 port 217 181258 unique_id port 181258 remote_ip 10.8.0.66 181259 username pourshad 181259 kill_reason Another user logged on this global unique id 181259 mac 181259 bytes_out 0 181259 bytes_in 0 181259 station_ip 5.119.121.30 181259 port 189 181259 unique_id port 181262 username aminvpn 181262 unique_id port 181262 terminate_cause Lost-Carrier 181262 bytes_out 667391 181262 bytes_in 2472236 181262 station_ip 83.123.124.117 181262 port 15728846 181262 nas_port_type Virtual 181262 remote_ip 5.5.5.196 181269 username pourshad 181269 kill_reason Another user logged on this global unique id 181269 mac 181269 bytes_out 0 181269 bytes_in 0 181269 station_ip 5.119.121.30 181269 port 217 181269 unique_id port 181269 remote_ip 10.8.0.42 181278 username alipour 181278 kill_reason Relative expiration date has reached 181278 mac 181278 bytes_out 0 181278 bytes_in 0 181278 station_ip 83.123.109.22 181278 port 189 181278 unique_id port 181286 username yaghobi 181286 mac 181286 bytes_out 994026 181286 bytes_in 993893 181286 station_ip 83.123.79.226 181286 port 219 181286 unique_id port 181286 remote_ip 10.8.0.138 181289 username aminvpn 181289 mac 181289 bytes_out 0 181289 bytes_in 0 181289 station_ip 5.120.29.137 181289 port 224 181289 unique_id port 181289 remote_ip 10.8.0.58 181291 username saeeddamghani 181291 unique_id port 181291 terminate_cause User-Request 181291 bytes_out 210599 181291 bytes_in 1792781 181291 station_ip 83.123.69.253 181291 port 15728849 181291 nas_port_type Virtual 181291 remote_ip 5.5.5.194 181293 username godarzi 181293 mac 181293 bytes_out 0 181293 bytes_in 0 181293 station_ip 5.202.5.255 181293 port 210 181293 unique_id port 181295 username yaghobi 181295 mac 181295 bytes_out 46769 181295 bytes_in 176644 181295 station_ip 83.123.79.226 181295 port 226 181295 unique_id port 181295 remote_ip 10.8.0.138 181296 username alihosseini1 181296 mac 181296 bytes_out 587387 181296 bytes_in 4412293 181296 station_ip 5.120.57.80 181296 port 225 181296 unique_id port 181296 remote_ip 10.8.0.234 181298 username pourshad 181298 kill_reason Another user logged on this global unique id 181298 mac 181298 bytes_out 0 181298 bytes_in 0 181298 station_ip 5.119.121.30 181298 port 217 181298 unique_id port 181307 username alihosseini1 181307 mac 181307 bytes_out 255025 181307 bytes_in 1891512 181307 station_ip 5.120.57.80 181307 port 224 181307 unique_id port 181307 remote_ip 10.8.0.234 181310 username shadkam 181310 mac 181310 bytes_out 874458 181310 bytes_in 6261729 181310 station_ip 83.123.94.64 181310 port 225 181310 unique_id port 181310 remote_ip 10.8.0.74 181311 username kalantary6037 181311 mac 181311 bytes_out 2298702 181311 bytes_in 12039595 181311 station_ip 83.123.84.225 181311 port 220 181311 unique_id port 181311 remote_ip 10.8.0.50 181313 username pourshad 181313 kill_reason Another user logged on this global unique id 181313 mac 181313 bytes_out 0 181313 bytes_in 0 181313 station_ip 5.119.121.30 181313 port 217 181313 unique_id port 181314 username hamid.e 181314 unique_id port 181282 station_ip 83.123.21.231 181282 port 219 181282 unique_id port 181282 remote_ip 10.8.0.154 181284 username pourshad 181284 kill_reason Another user logged on this global unique id 181284 mac 181284 bytes_out 0 181284 bytes_in 0 181284 station_ip 5.119.121.30 181284 port 217 181284 unique_id port 181285 username pourshad 181285 kill_reason Another user logged on this global unique id 181285 mac 181285 bytes_out 0 181285 bytes_in 0 181285 station_ip 5.119.121.30 181285 port 217 181285 unique_id port 181287 username aminvpn 181287 mac 181287 bytes_out 0 181287 bytes_in 0 181287 station_ip 5.120.29.137 181287 port 224 181287 unique_id port 181287 remote_ip 10.8.0.58 181288 username yaghobi 181288 mac 181288 bytes_out 98793 181288 bytes_in 178377 181288 station_ip 83.123.79.226 181288 port 223 181288 unique_id port 181288 remote_ip 10.8.0.138 181299 username meysam 181299 kill_reason Another user logged on this global unique id 181299 mac 181299 bytes_out 0 181299 bytes_in 0 181299 station_ip 188.159.251.16 181299 port 222 181299 unique_id port 181299 remote_ip 10.8.0.158 181300 username saeeddamghani 181300 unique_id port 181300 terminate_cause User-Request 181300 bytes_out 201231 181300 bytes_in 6651457 181300 station_ip 83.123.69.253 181300 port 15728851 181300 nas_port_type Virtual 181300 remote_ip 5.5.5.194 181302 username saeed9658 181302 mac 181302 bytes_out 3916496 181302 bytes_in 35406349 181302 station_ip 5.120.14.196 181302 port 221 181302 unique_id port 181302 remote_ip 10.8.0.162 181305 username aminvpn 181305 mac 181305 bytes_out 0 181305 bytes_in 0 181305 station_ip 5.120.29.137 181305 port 202 181305 unique_id port 181305 remote_ip 10.8.0.58 181306 username yaghobi 181306 mac 181306 bytes_out 199302 181306 bytes_in 400587 181306 station_ip 83.123.99.129 181306 port 219 181306 unique_id port 181306 remote_ip 10.8.0.138 181309 username aminvpn 181309 kill_reason Maximum check online fails reached 181309 mac 181309 bytes_out 0 181309 bytes_in 0 181309 station_ip 5.120.29.137 181309 port 202 181309 unique_id port 181312 username charkhandaz3496 181312 mac 181312 bytes_out 241238 181312 bytes_in 1765229 181312 station_ip 5.120.154.182 181312 port 221 181312 unique_id port 181312 remote_ip 10.8.0.90 181315 username aminvpn 181315 mac 181315 bytes_out 0 181315 bytes_in 0 181315 station_ip 5.120.29.137 181315 port 221 181315 unique_id port 181315 remote_ip 10.8.0.58 181317 username soleymani5056 181317 mac 181317 bytes_out 831332 181317 bytes_in 3515317 181317 station_ip 5.120.116.243 181317 port 189 181317 unique_id port 181317 remote_ip 10.8.0.226 181322 username meysam 181322 mac 181322 bytes_out 0 181322 bytes_in 0 181322 station_ip 188.159.251.16 181322 port 222 181322 unique_id port 181323 username alihosseini1 181323 mac 181323 bytes_out 0 181323 bytes_in 0 181323 station_ip 5.120.57.80 181323 port 189 181323 unique_id port 181323 remote_ip 10.8.0.234 181326 username malekpoir 181326 mac 181326 bytes_out 4272837 181326 bytes_in 43324442 181326 station_ip 5.119.34.114 181326 port 215 181326 unique_id port 181326 remote_ip 10.8.0.18 181330 username alihosseini1 181330 mac 181330 bytes_out 0 181330 bytes_in 0 181330 station_ip 5.120.57.80 181330 port 225 181330 unique_id port 181330 remote_ip 10.8.0.234 181331 username aminvpn 181331 mac 181331 bytes_out 0 181331 bytes_in 0 181331 station_ip 5.120.29.137 181331 port 218 181331 unique_id port 181331 remote_ip 10.8.0.58 181336 username kalantary6037 181336 mac 181301 port 15728852 181301 nas_port_type Virtual 181301 remote_ip 5.5.5.194 181303 username mehdizare 181303 mac 181303 bytes_out 0 181303 bytes_in 0 181303 station_ip 83.123.52.141 181303 port 202 181303 unique_id port 181304 username alipour1506 181304 mac 181304 bytes_out 128778 181304 bytes_in 277154 181304 station_ip 83.123.109.22 181304 port 223 181304 unique_id port 181304 remote_ip 10.8.0.126 181308 username yaghobi 181308 mac 181308 bytes_out 0 181308 bytes_in 0 181308 station_ip 83.123.99.129 181308 port 226 181308 unique_id port 181308 remote_ip 10.8.0.138 181316 username alihosseini1 181316 mac 181316 bytes_out 0 181316 bytes_in 0 181316 station_ip 5.120.57.80 181316 port 221 181316 unique_id port 181316 remote_ip 10.8.0.234 181318 username charkhandaz3496 181318 mac 181318 bytes_out 49720 181318 bytes_in 116533 181318 station_ip 5.120.154.182 181318 port 220 181318 unique_id port 181318 remote_ip 10.8.0.90 181320 username pourshad 181320 kill_reason Another user logged on this global unique id 181320 mac 181320 bytes_out 0 181320 bytes_in 0 181320 station_ip 5.119.121.30 181320 port 217 181320 unique_id port 181321 username soleymani5056 181321 mac 181321 bytes_out 209372 181321 bytes_in 476806 181321 station_ip 5.120.2.205 181321 port 221 181321 unique_id port 181321 remote_ip 10.8.0.226 181328 username nilufarrajaei 181328 mac 181328 bytes_out 1223389 181328 bytes_in 2446276 181328 station_ip 83.123.48.166 181328 port 218 181328 unique_id port 181328 remote_ip 10.8.0.194 181329 username alihosseini1 181329 mac 181329 bytes_out 3772 181329 bytes_in 5015 181329 station_ip 5.120.57.80 181329 port 218 181329 unique_id port 181329 remote_ip 10.8.0.234 181333 username pourshad 181333 kill_reason Another user logged on this global unique id 181333 mac 181333 bytes_out 0 181333 bytes_in 0 181333 station_ip 5.119.121.30 181333 port 217 181333 unique_id port 181334 username fezealinaghi 181334 mac 181334 bytes_out 768642 181334 bytes_in 4836218 181334 station_ip 83.123.92.70 181334 port 221 181334 unique_id port 181334 remote_ip 10.8.0.202 181344 username pourshad 181344 kill_reason Another user logged on this global unique id 181344 mac 181344 bytes_out 0 181344 bytes_in 0 181344 station_ip 5.119.121.30 181344 port 217 181344 unique_id port 181348 username pourshad 181348 mac 181348 bytes_out 0 181348 bytes_in 0 181348 station_ip 5.119.121.30 181348 port 217 181348 unique_id port 181350 username alihosseini1 181350 mac 181350 bytes_out 0 181350 bytes_in 0 181350 station_ip 5.120.57.80 181350 port 224 181350 unique_id port 181350 remote_ip 10.8.0.234 181353 username aminvpn 181353 mac 181353 bytes_out 0 181353 bytes_in 0 181353 station_ip 5.120.29.137 181353 port 224 181353 unique_id port 181353 remote_ip 10.8.0.58 181356 username aminvpn 181356 mac 181356 bytes_out 1644 181356 bytes_in 4930 181356 station_ip 5.120.29.137 181356 port 224 181356 unique_id port 181356 remote_ip 10.8.0.58 181359 username kalantary6037 181359 mac 181359 bytes_out 1622907 181359 bytes_in 17465251 181359 station_ip 83.123.28.1 181359 port 217 181359 unique_id port 181359 remote_ip 10.8.0.50 181361 username godarzi 181361 mac 181361 bytes_out 223699 181361 bytes_in 2474109 181361 station_ip 5.202.5.255 181361 port 217 181361 unique_id port 181361 remote_ip 10.8.0.38 181363 username hamid.e 181363 unique_id port 181363 terminate_cause User-Request 181363 bytes_out 2942093 181363 bytes_in 40382267 181363 station_ip 37.27.7.100 181314 terminate_cause Lost-Carrier 181314 bytes_out 1289546 181314 bytes_in 6118109 181314 station_ip 37.27.17.163 181314 port 15728848 181314 nas_port_type Virtual 181314 remote_ip 5.5.5.203 181319 username alipour1506 181319 mac 181319 bytes_out 110653 181319 bytes_in 604381 181319 station_ip 83.123.109.22 181319 port 219 181319 unique_id port 181319 remote_ip 10.8.0.126 181324 username pourshad 181324 kill_reason Another user logged on this global unique id 181324 mac 181324 bytes_out 0 181324 bytes_in 0 181324 station_ip 5.119.121.30 181324 port 217 181324 unique_id port 181325 username aminvpn 181325 kill_reason Maximum check online fails reached 181325 mac 181325 bytes_out 0 181325 bytes_in 0 181325 station_ip 5.120.29.137 181325 port 189 181325 unique_id port 181327 username alihosseini1 181327 mac 181327 bytes_out 0 181327 bytes_in 0 181327 station_ip 5.120.57.80 181327 port 221 181327 unique_id port 181327 remote_ip 10.8.0.234 181332 username khademi 181332 mac 181332 bytes_out 0 181332 bytes_in 0 181332 station_ip 83.123.54.146 181332 port 212 181332 unique_id port 181335 username nilufarrajaei 181335 mac 181335 bytes_out 38492 181335 bytes_in 124937 181335 station_ip 83.123.48.166 181335 port 222 181335 unique_id port 181335 remote_ip 10.8.0.194 181337 username pourshad 181337 kill_reason Another user logged on this global unique id 181337 mac 181337 bytes_out 0 181337 bytes_in 0 181337 station_ip 5.119.121.30 181337 port 217 181337 unique_id port 181338 username mosi 181338 kill_reason Another user logged on this global unique id 181338 mac 181338 bytes_out 0 181338 bytes_in 0 181338 station_ip 151.235.83.58 181338 port 207 181338 unique_id port 181340 username alihosseini1 181340 mac 181340 bytes_out 0 181340 bytes_in 0 181340 station_ip 5.120.57.80 181340 port 222 181340 unique_id port 181340 remote_ip 10.8.0.234 181345 username aminvpn 181345 kill_reason Maximum check online fails reached 181345 mac 181345 bytes_out 0 181345 bytes_in 0 181345 station_ip 5.120.29.137 181345 port 215 181345 unique_id port 181351 username shadkam 181351 mac 181351 bytes_out 784729 181351 bytes_in 10602846 181351 station_ip 83.123.105.165 181351 port 222 181351 unique_id port 181351 remote_ip 10.8.0.74 181355 username godarzi 181355 mac 181355 bytes_out 16737510 181355 bytes_in 37684684 181355 station_ip 5.202.5.255 181355 port 210 181355 unique_id port 181355 remote_ip 10.8.0.38 181360 username aminvpn 181360 mac 181360 bytes_out 0 181360 bytes_in 0 181360 station_ip 5.120.29.137 181360 port 221 181360 unique_id port 181360 remote_ip 10.8.0.58 181364 username kordestani 181364 mac 181364 bytes_out 1482514 181364 bytes_in 18137246 181364 station_ip 151.235.118.72 181364 port 223 181364 unique_id port 181364 remote_ip 10.8.0.130 181368 username pourshad 181368 kill_reason Another user logged on this global unique id 181368 mac 181368 bytes_out 0 181368 bytes_in 0 181368 station_ip 5.119.121.30 181368 port 226 181368 unique_id port 181377 username soleymani5056 181377 mac 181377 bytes_out 36494 181377 bytes_in 63189 181377 station_ip 5.119.111.178 181377 port 223 181377 unique_id port 181377 remote_ip 10.8.0.226 181378 username yaghobi 181378 mac 181378 bytes_out 475572 181378 bytes_in 649592 181378 station_ip 83.123.98.167 181378 port 221 181378 unique_id port 181378 remote_ip 10.8.0.138 181380 username farhad3 181380 mac 181380 bytes_out 179644 181380 bytes_in 408233 181380 station_ip 5.119.107.13 181380 port 221 181380 unique_id port 181380 remote_ip 10.8.0.222 181336 bytes_out 478522 181336 bytes_in 3168273 181336 station_ip 83.123.28.1 181336 port 215 181336 unique_id port 181336 remote_ip 10.8.0.50 181339 username nilufarrajaei 181339 mac 181339 bytes_out 18969 181339 bytes_in 26200 181339 station_ip 83.123.48.166 181339 port 212 181339 unique_id port 181339 remote_ip 10.8.0.194 181341 username yaghobi 181341 mac 181341 bytes_out 500833 181341 bytes_in 1172254 181341 station_ip 83.123.121.91 181341 port 224 181341 unique_id port 181341 remote_ip 10.8.0.138 181342 username meysam 181342 mac 181342 bytes_out 560415 181342 bytes_in 7971202 181342 station_ip 188.159.251.16 181342 port 215 181342 unique_id port 181342 remote_ip 10.8.0.158 181343 username fezealinaghi 181343 mac 181343 bytes_out 271492 181343 bytes_in 3492552 181343 station_ip 83.123.64.194 181343 port 222 181343 unique_id port 181343 remote_ip 10.8.0.202 181346 username alihosseini1 181346 mac 181346 bytes_out 0 181346 bytes_in 0 181346 station_ip 5.120.57.80 181346 port 222 181346 unique_id port 181346 remote_ip 10.8.0.234 181347 username aminvpn 181347 mac 181347 bytes_out 0 181347 bytes_in 0 181347 station_ip 5.120.29.137 181347 port 224 181347 unique_id port 181347 remote_ip 10.8.0.58 181349 username kalantary6037 181349 mac 181349 bytes_out 1144208 181349 bytes_in 10023081 181349 station_ip 83.123.28.1 181349 port 221 181349 unique_id port 181349 remote_ip 10.8.0.50 181352 username pourshad 181352 kill_reason Another user logged on this global unique id 181352 mac 181352 bytes_out 0 181352 bytes_in 0 181352 station_ip 5.119.121.30 181352 port 226 181352 unique_id port 181352 remote_ip 10.8.0.42 181354 username mosi 181354 kill_reason Another user logged on this global unique id 181354 mac 181354 bytes_out 0 181354 bytes_in 0 181354 station_ip 151.235.83.58 181354 port 207 181354 unique_id port 181357 username mehdizare 181357 mac 181357 bytes_out 534801 181357 bytes_in 17456185 181357 station_ip 83.123.52.141 181357 port 223 181357 unique_id port 181357 remote_ip 10.8.0.210 181358 username yaghobi 181358 mac 181358 bytes_out 394710 181358 bytes_in 948674 181358 station_ip 83.123.98.167 181358 port 221 181358 unique_id port 181358 remote_ip 10.8.0.138 181362 username pourshad 181362 kill_reason Another user logged on this global unique id 181362 mac 181362 bytes_out 0 181362 bytes_in 0 181362 station_ip 5.119.121.30 181362 port 226 181362 unique_id port 181370 username mosi 181370 kill_reason Another user logged on this global unique id 181370 mac 181370 bytes_out 0 181370 bytes_in 0 181370 station_ip 151.235.83.58 181370 port 207 181370 unique_id port 181373 username charkhandaz3496 181373 mac 181373 bytes_out 1438350 181373 bytes_in 13504575 181373 station_ip 5.120.154.182 181373 port 225 181373 unique_id port 181373 remote_ip 10.8.0.90 181374 username pourshad 181374 kill_reason Another user logged on this global unique id 181374 mac 181374 bytes_out 0 181374 bytes_in 0 181374 station_ip 5.119.121.30 181374 port 226 181374 unique_id port 181376 username alihosseini1 181376 mac 181376 bytes_out 0 181376 bytes_in 0 181376 station_ip 5.120.57.80 181376 port 217 181376 unique_id port 181376 remote_ip 10.8.0.234 181381 username pourshad 181381 kill_reason Another user logged on this global unique id 181381 mac 181381 bytes_out 0 181381 bytes_in 0 181381 station_ip 5.119.121.30 181381 port 226 181381 unique_id port 181382 username mosi 181382 kill_reason Another user logged on this global unique id 181382 mac 181382 bytes_out 0 181382 bytes_in 0 181363 port 15728853 181363 nas_port_type Virtual 181363 remote_ip 5.5.5.193 181365 username alihosseini1 181365 mac 181365 bytes_out 1291959 181365 bytes_in 10070713 181365 station_ip 5.120.57.80 181365 port 222 181365 unique_id port 181365 remote_ip 10.8.0.234 181366 username saeed9658 181366 mac 181366 bytes_out 476539 181366 bytes_in 3674430 181366 station_ip 5.120.14.196 181366 port 210 181366 unique_id port 181366 remote_ip 10.8.0.162 181367 username yaghobi 181367 mac 181367 bytes_out 451930 181367 bytes_in 979438 181367 station_ip 83.123.98.167 181367 port 227 181367 unique_id port 181367 remote_ip 10.8.0.138 181369 username alihosseini1 181369 mac 181369 bytes_out 35538 181369 bytes_in 62558 181369 station_ip 5.120.57.80 181369 port 210 181369 unique_id port 181369 remote_ip 10.8.0.234 181371 username aminvpn 181371 mac 181371 bytes_out 0 181371 bytes_in 0 181371 station_ip 5.120.29.137 181371 port 210 181371 unique_id port 181371 remote_ip 10.8.0.58 181372 username kalantary6037 181372 mac 181372 bytes_out 448976 181372 bytes_in 3981074 181372 station_ip 83.123.112.197 181372 port 222 181372 unique_id port 181372 remote_ip 10.8.0.50 181375 username soleymani5056 181375 mac 181375 bytes_out 570968 181375 bytes_in 3111227 181375 station_ip 5.120.17.36 181375 port 217 181375 unique_id port 181375 remote_ip 10.8.0.226 181379 username kordestani 181379 mac 181379 bytes_out 382815 181379 bytes_in 4887075 181379 station_ip 151.235.118.72 181379 port 222 181379 unique_id port 181379 remote_ip 10.8.0.130 181384 username mehdizare 181384 mac 181384 bytes_out 104213 181384 bytes_in 141474 181384 station_ip 83.123.52.141 181384 port 224 181384 unique_id port 181384 remote_ip 10.8.0.210 181389 username mostafa_es78 181389 kill_reason Another user logged on this global unique id 181389 mac 181389 bytes_out 0 181389 bytes_in 0 181389 station_ip 83.122.110.254 181389 port 223 181389 unique_id port 181389 remote_ip 10.8.0.34 181390 username fezealinaghi 181390 kill_reason Another user logged on this global unique id 181390 mac 181390 bytes_out 0 181390 bytes_in 0 181390 station_ip 83.123.106.66 181390 port 210 181390 unique_id port 181390 remote_ip 10.8.0.202 181391 username motamedi9772 181391 mac 181391 bytes_out 175781 181391 bytes_in 562197 181391 station_ip 83.123.2.147 181391 port 228 181391 unique_id port 181391 remote_ip 10.8.0.154 181399 username alihosseini1 181399 mac 181399 bytes_out 333054 181399 bytes_in 421129 181399 station_ip 5.120.57.80 181399 port 227 181399 unique_id port 181399 remote_ip 10.8.0.234 181400 username alihosseini1 181400 mac 181400 bytes_out 0 181400 bytes_in 0 181400 station_ip 5.120.57.80 181400 port 210 181400 unique_id port 181400 remote_ip 10.8.0.234 181403 username pourshad 181403 kill_reason Another user logged on this global unique id 181403 mac 181403 bytes_out 0 181403 bytes_in 0 181403 station_ip 5.119.121.30 181403 port 226 181403 unique_id port 181404 username alihosseini1 181404 mac 181404 bytes_out 0 181404 bytes_in 0 181404 station_ip 5.120.57.80 181404 port 229 181404 unique_id port 181404 remote_ip 10.8.0.234 181406 username aminvpn 181406 mac 181406 bytes_out 0 181406 bytes_in 0 181406 station_ip 5.120.29.137 181406 port 210 181406 unique_id port 181406 remote_ip 10.8.0.58 181409 username pourshad 181409 kill_reason Another user logged on this global unique id 181409 mac 181409 bytes_out 0 181409 bytes_in 0 181409 station_ip 5.119.121.30 181409 port 226 181409 unique_id port 181411 username kalantary6037 181382 station_ip 151.235.83.58 181382 port 207 181382 unique_id port 181385 username pourshad 181385 kill_reason Another user logged on this global unique id 181385 mac 181385 bytes_out 0 181385 bytes_in 0 181385 station_ip 5.119.121.30 181385 port 226 181385 unique_id port 181386 username kalantary6037 181386 mac 181386 bytes_out 545983 181386 bytes_in 5155537 181386 station_ip 83.123.51.145 181386 port 225 181386 unique_id port 181386 remote_ip 10.8.0.50 181388 username mehdizare 181388 mac 181388 bytes_out 25006 181388 bytes_in 38779 181388 station_ip 83.123.52.141 181388 port 224 181388 unique_id port 181388 remote_ip 10.8.0.210 181394 username mehdizare 181394 mac 181394 bytes_out 11184 181394 bytes_in 16957 181394 station_ip 83.123.52.141 181394 port 224 181394 unique_id port 181394 remote_ip 10.8.0.210 181395 username motamedi9772 181395 mac 181395 bytes_out 0 181395 bytes_in 0 181395 station_ip 83.123.2.147 181395 port 224 181395 unique_id port 181395 remote_ip 10.8.0.154 181398 username pourshad 181398 kill_reason Another user logged on this global unique id 181398 mac 181398 bytes_out 0 181398 bytes_in 0 181398 station_ip 5.119.121.30 181398 port 226 181398 unique_id port 181401 username yaghobi 181401 mac 181401 bytes_out 317427 181401 bytes_in 363140 181401 station_ip 83.123.98.167 181401 port 217 181401 unique_id port 181401 remote_ip 10.8.0.138 181402 username mehdizare 181402 mac 181402 bytes_out 12494 181402 bytes_in 18274 181402 station_ip 83.123.52.141 181402 port 224 181402 unique_id port 181402 remote_ip 10.8.0.210 181407 username alihosseini1 181407 mac 181407 bytes_out 0 181407 bytes_in 0 181407 station_ip 5.120.57.80 181407 port 210 181407 unique_id port 181407 remote_ip 10.8.0.234 181408 username morteza 181408 kill_reason Relative expiration date has reached 181408 mac 181408 bytes_out 0 181408 bytes_in 0 181408 station_ip 83.123.118.50 181408 port 210 181408 unique_id port 181412 username alihosseini1 181412 mac 181412 bytes_out 2414 181412 bytes_in 4561 181412 station_ip 5.120.57.80 181412 port 210 181412 unique_id port 181412 remote_ip 10.8.0.234 181413 username kalantary6037 181413 mac 181413 bytes_out 342108 181413 bytes_in 1018654 181413 station_ip 83.123.6.49 181413 port 217 181413 unique_id port 181413 remote_ip 10.8.0.50 181416 username rahim 181416 mac 181416 bytes_out 205452 181416 bytes_in 716363 181416 station_ip 5.120.18.152 181416 port 229 181416 unique_id port 181416 remote_ip 10.8.0.134 181419 username pourshad 181419 kill_reason Another user logged on this global unique id 181419 mac 181419 bytes_out 0 181419 bytes_in 0 181419 station_ip 5.119.121.30 181419 port 226 181419 unique_id port 181423 username mehdizare 181423 mac 181423 bytes_out 64333 181423 bytes_in 155501 181423 station_ip 83.123.52.141 181423 port 227 181423 unique_id port 181423 remote_ip 10.8.0.210 181424 username aminvpn 181424 kill_reason Maximum check online fails reached 181424 mac 181424 bytes_out 0 181424 bytes_in 0 181424 station_ip 5.120.29.137 181424 port 217 181424 unique_id port 181425 username fezealinaghi 181425 mac 181425 bytes_out 0 181425 bytes_in 0 181425 station_ip 83.123.106.66 181425 port 224 181425 unique_id port 181426 username esmaeilkazemi 181426 mac 181426 bytes_out 40454 181426 bytes_in 143689 181426 station_ip 83.123.89.57 181426 port 229 181426 unique_id port 181426 remote_ip 10.8.0.26 181430 username esmaeilkazemi 181430 mac 181430 bytes_out 7947 181430 bytes_in 19210 181430 station_ip 83.123.89.57 181383 username aminvpn 181383 mac 181383 bytes_out 0 181383 bytes_in 0 181383 station_ip 5.120.29.137 181383 port 225 181383 unique_id port 181383 remote_ip 10.8.0.58 181387 username pourshad 181387 kill_reason Another user logged on this global unique id 181387 mac 181387 bytes_out 0 181387 bytes_in 0 181387 station_ip 5.119.121.30 181387 port 226 181387 unique_id port 181392 username motamedi9772 181392 mac 181392 bytes_out 0 181392 bytes_in 0 181392 station_ip 83.123.2.147 181392 port 228 181392 unique_id port 181392 remote_ip 10.8.0.154 181393 username motamedi9772 181393 mac 181393 bytes_out 0 181393 bytes_in 0 181393 station_ip 83.123.2.147 181393 port 228 181393 unique_id port 181393 remote_ip 10.8.0.154 181396 username aminvpn 181396 mac 181396 bytes_out 0 181396 bytes_in 0 181396 station_ip 5.120.29.137 181396 port 224 181396 unique_id port 181396 remote_ip 10.8.0.58 181397 username fezealinaghi 181397 mac 181397 bytes_out 0 181397 bytes_in 0 181397 station_ip 83.123.106.66 181397 port 210 181397 unique_id port 181405 username esmaeilkazemi 181405 mac 181405 bytes_out 101044 181405 bytes_in 617584 181405 station_ip 83.123.89.57 181405 port 210 181405 unique_id port 181405 remote_ip 10.8.0.26 181410 username yaghobi 181410 mac 181410 bytes_out 478182 181410 bytes_in 478759 181410 station_ip 83.123.49.83 181410 port 217 181410 unique_id port 181410 remote_ip 10.8.0.138 181414 username aminvpn 181414 mac 181414 bytes_out 0 181414 bytes_in 0 181414 station_ip 5.120.29.137 181414 port 210 181414 unique_id port 181414 remote_ip 10.8.0.58 181415 username kordestani 181415 mac 181415 bytes_out 516451 181415 bytes_in 5260316 181415 station_ip 151.235.118.72 181415 port 222 181415 unique_id port 181415 remote_ip 10.8.0.130 181417 username nilufarrajaei 181417 mac 181417 bytes_out 1458176 181417 bytes_in 2692146 181417 station_ip 83.123.48.166 181417 port 212 181417 unique_id port 181417 remote_ip 10.8.0.194 181418 username farhad3 181418 mac 181418 bytes_out 5500475 181418 bytes_in 33284356 181418 station_ip 5.119.107.13 181418 port 228 181418 unique_id port 181418 remote_ip 10.8.0.222 181420 username fezealinaghi 181420 kill_reason Another user logged on this global unique id 181420 mac 181420 bytes_out 0 181420 bytes_in 0 181420 station_ip 83.123.106.66 181420 port 224 181420 unique_id port 181420 remote_ip 10.8.0.202 181422 username pourshad 181422 kill_reason Another user logged on this global unique id 181422 mac 181422 bytes_out 0 181422 bytes_in 0 181422 station_ip 5.119.121.30 181422 port 226 181422 unique_id port 181427 username esmaeilkazemi 181427 mac 181427 bytes_out 0 181427 bytes_in 0 181427 station_ip 83.123.89.57 181427 port 224 181427 unique_id port 181427 remote_ip 10.8.0.26 181437 username farhad3 181437 kill_reason Another user logged on this global unique id 181437 mac 181437 bytes_out 0 181437 bytes_in 0 181437 station_ip 5.119.107.13 181437 port 212 181437 unique_id port 181437 remote_ip 10.8.0.222 181438 username khalili2 181438 kill_reason Another user logged on this global unique id 181438 mac 181438 bytes_out 0 181438 bytes_in 0 181438 station_ip 5.120.81.181 181438 port 225 181438 unique_id port 181438 remote_ip 10.8.0.118 181443 username esmaeilkazemi 181443 mac 181443 bytes_out 18713 181443 bytes_in 32653 181443 station_ip 83.123.89.57 181443 port 228 181443 unique_id port 181443 remote_ip 10.8.0.26 181448 username aminvpn 181448 mac 181448 bytes_out 1703 181448 bytes_in 5005 181448 station_ip 5.120.29.137 181411 mac 181411 bytes_out 396412 181411 bytes_in 2090296 181411 station_ip 83.123.6.49 181411 port 230 181411 unique_id port 181411 remote_ip 10.8.0.50 181421 username mostafa_es78 181421 mac 181421 bytes_out 0 181421 bytes_in 0 181421 station_ip 83.122.110.254 181421 port 223 181421 unique_id port 181428 username pourshad 181428 kill_reason Another user logged on this global unique id 181428 mac 181428 bytes_out 0 181428 bytes_in 0 181428 station_ip 5.119.121.30 181428 port 226 181428 unique_id port 181429 username soleymani5056 181429 mac 181429 bytes_out 160630 181429 bytes_in 410635 181429 station_ip 5.119.37.224 181429 port 228 181429 unique_id port 181429 remote_ip 10.8.0.226 181431 username shadkam 181431 mac 181431 bytes_out 901186 181431 bytes_in 7986913 181431 station_ip 83.123.126.23 181431 port 222 181431 unique_id port 181431 remote_ip 10.8.0.74 181432 username aminvpn 181432 mac 181432 bytes_out 0 181432 bytes_in 0 181432 station_ip 5.120.29.137 181432 port 224 181432 unique_id port 181432 remote_ip 10.8.0.58 181435 username sekonji0496 181435 mac 181435 bytes_out 64848 181435 bytes_in 180582 181435 station_ip 83.123.81.225 181435 port 227 181435 unique_id port 181435 remote_ip 10.8.0.62 181440 username fezealinaghi 181440 mac 181440 bytes_out 30369 181440 bytes_in 240450 181440 station_ip 83.123.106.66 181440 port 222 181440 unique_id port 181440 remote_ip 10.8.0.202 181442 username yaghobi 181442 mac 181442 bytes_out 222903 181442 bytes_in 249989 181442 station_ip 83.123.39.103 181442 port 230 181442 unique_id port 181442 remote_ip 10.8.0.138 181446 username yaghobi 181446 mac 181446 bytes_out 321162 181446 bytes_in 2381289 181446 station_ip 83.123.39.103 181446 port 229 181446 unique_id port 181446 remote_ip 10.8.0.138 181452 username pourshad 181452 kill_reason Another user logged on this global unique id 181452 mac 181452 bytes_out 0 181452 bytes_in 0 181452 station_ip 5.119.121.30 181452 port 226 181452 unique_id port 181453 username mehdizare 181453 mac 181453 bytes_out 55679 181453 bytes_in 70254 181453 station_ip 83.123.52.141 181453 port 223 181453 unique_id port 181453 remote_ip 10.8.0.210 181457 username sedighe 181457 mac 181457 bytes_out 30592 181457 bytes_in 67081 181457 station_ip 83.123.17.10 181457 port 227 181457 unique_id port 181457 remote_ip 10.8.0.46 181460 username yaghobi 181460 mac 181460 bytes_out 279312 181460 bytes_in 716333 181460 station_ip 83.123.39.103 181460 port 228 181460 unique_id port 181460 remote_ip 10.8.0.138 181462 username sekonji0496 181462 mac 181462 bytes_out 0 181462 bytes_in 0 181462 station_ip 83.123.81.225 181462 port 228 181462 unique_id port 181462 remote_ip 10.8.0.62 181465 username pourshad 181465 kill_reason Another user logged on this global unique id 181465 mac 181465 bytes_out 0 181465 bytes_in 0 181465 station_ip 5.119.121.30 181465 port 226 181465 unique_id port 181471 username sekonji0496 181471 mac 181471 bytes_out 2495 181471 bytes_in 4205 181471 station_ip 83.123.81.225 181471 port 222 181471 unique_id port 181471 remote_ip 10.8.0.62 181475 username kordestani 181475 mac 181475 bytes_out 9001 181475 bytes_in 13155 181475 station_ip 151.235.118.72 181475 port 212 181475 unique_id port 181475 remote_ip 10.8.0.130 181476 username pourshad 181476 mac 181476 bytes_out 13254226 181476 bytes_in 682456 181476 station_ip 5.119.121.30 181476 port 227 181476 unique_id port 181476 remote_ip 10.8.0.42 181479 username soleymani5056 181430 port 232 181430 unique_id port 181430 remote_ip 10.8.0.26 181433 username houshang 181433 mac 181433 bytes_out 37389 181433 bytes_in 92141 181433 station_ip 5.119.197.195 181433 port 229 181433 unique_id port 181433 remote_ip 10.8.0.82 181434 username aminvpn 181434 unique_id port 181434 terminate_cause User-Request 181434 bytes_out 22382373 181434 bytes_in 846886577 181434 station_ip 31.57.123.42 181434 port 15728847 181434 nas_port_type Virtual 181434 remote_ip 5.5.5.195 181436 username kalantary6037 181436 mac 181436 bytes_out 662862 181436 bytes_in 6938141 181436 station_ip 83.123.26.205 181436 port 231 181436 unique_id port 181436 remote_ip 10.8.0.50 181439 username mosi 181439 kill_reason Another user logged on this global unique id 181439 mac 181439 bytes_out 0 181439 bytes_in 0 181439 station_ip 151.235.83.58 181439 port 207 181439 unique_id port 181441 username pourshad 181441 kill_reason Another user logged on this global unique id 181441 mac 181441 bytes_out 0 181441 bytes_in 0 181441 station_ip 5.119.121.30 181441 port 226 181441 unique_id port 181444 username sekonji0496 181444 mac 181444 bytes_out 5690 181444 bytes_in 6997 181444 station_ip 83.123.81.225 181444 port 224 181444 unique_id port 181444 remote_ip 10.8.0.62 181445 username sekonji0496 181445 mac 181445 bytes_out 0 181445 bytes_in 0 181445 station_ip 83.123.81.225 181445 port 228 181445 unique_id port 181445 remote_ip 10.8.0.62 181447 username pourshad 181447 kill_reason Another user logged on this global unique id 181447 mac 181447 bytes_out 0 181447 bytes_in 0 181447 station_ip 5.119.121.30 181447 port 226 181447 unique_id port 181449 username sedighe 181449 mac 181449 bytes_out 261771 181449 bytes_in 1763642 181449 station_ip 83.123.16.61 181449 port 227 181449 unique_id port 181449 remote_ip 10.8.0.46 181459 username mostafa_es78 181459 mac 181459 bytes_out 1154023 181459 bytes_in 10419393 181459 station_ip 83.122.110.254 181459 port 229 181459 unique_id port 181459 remote_ip 10.8.0.34 181461 username pourshad 181461 kill_reason Another user logged on this global unique id 181461 mac 181461 bytes_out 0 181461 bytes_in 0 181461 station_ip 5.119.121.30 181461 port 226 181461 unique_id port 181464 username aminvpn 181464 mac 181464 bytes_out 92688 181464 bytes_in 716216 181464 station_ip 5.120.29.137 181464 port 229 181464 unique_id port 181464 remote_ip 10.8.0.58 181467 username farhad3 181467 mac 181467 bytes_out 2872579 181467 bytes_in 31109315 181467 station_ip 5.119.107.13 181467 port 212 181467 unique_id port 181467 remote_ip 10.8.0.222 181469 username kordestani 181469 mac 181469 bytes_out 739919 181469 bytes_in 7031390 181469 station_ip 151.235.118.72 181469 port 210 181469 unique_id port 181469 remote_ip 10.8.0.130 181470 username mosi 181470 mac 181470 bytes_out 0 181470 bytes_in 0 181470 station_ip 151.235.83.58 181470 port 207 181470 unique_id port 181472 username sedighe 181472 mac 181472 bytes_out 23981 181472 bytes_in 34967 181472 station_ip 83.123.17.10 181472 port 227 181472 unique_id port 181472 remote_ip 10.8.0.46 181473 username pourshad 181473 mac 181473 bytes_out 0 181473 bytes_in 0 181473 station_ip 5.119.121.30 181473 port 226 181473 unique_id port 181480 username aminvpn 181480 mac 181480 bytes_out 0 181480 bytes_in 0 181480 station_ip 5.120.29.137 181480 port 226 181480 unique_id port 181480 remote_ip 10.8.0.58 181482 username meysam 181482 mac 181482 bytes_out 2639657 181482 bytes_in 35967267 181482 station_ip 188.159.251.16 181448 port 224 181448 unique_id port 181448 remote_ip 10.8.0.58 181450 username sekonji0496 181450 mac 181450 bytes_out 0 181450 bytes_in 0 181450 station_ip 83.123.81.225 181450 port 227 181450 unique_id port 181450 remote_ip 10.8.0.62 181451 username sedighe 181451 mac 181451 bytes_out 33379 181451 bytes_in 46354 181451 station_ip 83.123.51.166 181451 port 224 181451 unique_id port 181451 remote_ip 10.8.0.46 181454 username aminvpn 181454 mac 181454 bytes_out 19297 181454 bytes_in 19354 181454 station_ip 5.120.29.137 181454 port 230 181454 unique_id port 181454 remote_ip 10.8.0.58 181455 username farhad3 181455 mac 181455 bytes_out 0 181455 bytes_in 0 181455 station_ip 5.119.107.13 181455 port 212 181455 unique_id port 181456 username ahmadi1 181456 mac 181456 bytes_out 49084 181456 bytes_in 62082 181456 station_ip 83.123.15.7 181456 port 223 181456 unique_id port 181456 remote_ip 10.8.0.94 181458 username sekonji0496 181458 mac 181458 bytes_out 0 181458 bytes_in 0 181458 station_ip 83.123.81.225 181458 port 223 181458 unique_id port 181458 remote_ip 10.8.0.62 181463 username malekpoir 181463 mac 181463 bytes_out 398177 181463 bytes_in 414014 181463 station_ip 5.119.34.114 181463 port 220 181463 unique_id port 181463 remote_ip 10.8.0.18 181466 username fezealinaghi 181466 mac 181466 bytes_out 3051814 181466 bytes_in 42192754 181466 station_ip 83.123.106.66 181466 port 222 181466 unique_id port 181466 remote_ip 10.8.0.202 181468 username godarzi 181468 kill_reason Another user logged on this global unique id 181468 mac 181468 bytes_out 0 181468 bytes_in 0 181468 station_ip 5.202.5.255 181468 port 221 181468 unique_id port 181468 remote_ip 10.8.0.38 181474 username alikomsari 181474 mac 181474 bytes_out 5449732 181474 bytes_in 27165977 181474 station_ip 5.120.94.93 181474 port 219 181474 unique_id port 181474 remote_ip 10.8.0.214 181477 username fezealinaghi 181477 mac 181477 bytes_out 280797 181477 bytes_in 1140715 181477 station_ip 83.123.106.66 181477 port 226 181477 unique_id port 181477 remote_ip 10.8.0.202 181478 username fezealinaghi 181478 mac 181478 bytes_out 1941 181478 bytes_in 4478 181478 station_ip 83.123.106.66 181478 port 219 181478 unique_id port 181478 remote_ip 10.8.0.202 181481 username pourshad 181481 kill_reason Another user logged on this global unique id 181481 mac 181481 bytes_out 0 181481 bytes_in 0 181481 station_ip 5.119.121.30 181481 port 212 181481 unique_id port 181481 remote_ip 10.8.0.42 181483 username alipour1506 181483 mac 181483 bytes_out 153604 181483 bytes_in 1385607 181483 station_ip 83.123.109.22 181483 port 227 181483 unique_id port 181483 remote_ip 10.8.0.126 181485 username pourshad 181485 kill_reason Another user logged on this global unique id 181485 mac 181485 bytes_out 0 181485 bytes_in 0 181485 station_ip 5.119.121.30 181485 port 212 181485 unique_id port 181487 username aminvpn 181487 mac 181487 bytes_out 0 181487 bytes_in 0 181487 station_ip 5.120.29.137 181487 port 228 181487 unique_id port 181487 remote_ip 10.8.0.58 181497 username motamedi9772 181497 mac 181497 bytes_out 1811 181497 bytes_in 3739 181497 station_ip 83.123.75.151 181497 port 228 181497 unique_id port 181497 remote_ip 10.8.0.154 181502 username pourshad 181502 kill_reason Another user logged on this global unique id 181502 mac 181502 bytes_out 0 181502 bytes_in 0 181502 station_ip 5.119.121.30 181502 port 230 181502 unique_id port 181502 remote_ip 10.8.0.42 181503 username aminvpn 181503 mac 181479 mac 181479 bytes_out 744626 181479 bytes_in 9522523 181479 station_ip 5.119.116.31 181479 port 231 181479 unique_id port 181479 remote_ip 10.8.0.226 181486 username kalantary6037 181486 mac 181486 bytes_out 7652 181486 bytes_in 15863 181486 station_ip 83.123.116.141 181486 port 228 181486 unique_id port 181486 remote_ip 10.8.0.50 181489 username pourshad 181489 mac 181489 bytes_out 0 181489 bytes_in 0 181489 station_ip 5.119.121.30 181489 port 212 181489 unique_id port 181491 username charkhandaz3496 181491 mac 181491 bytes_out 2905432 181491 bytes_in 20816659 181491 station_ip 5.119.207.175 181491 port 230 181491 unique_id port 181491 remote_ip 10.8.0.90 181492 username pourshad 181492 mac 181492 bytes_out 9114409 181492 bytes_in 445716 181492 station_ip 5.119.121.30 181492 port 228 181492 unique_id port 181492 remote_ip 10.8.0.42 181494 username yaghobi 181494 mac 181494 bytes_out 494645 181494 bytes_in 2017995 181494 station_ip 83.123.8.117 181494 port 227 181494 unique_id port 181494 remote_ip 10.8.0.138 181496 username malekpoir 181496 kill_reason Another user logged on this global unique id 181496 mac 181496 bytes_out 0 181496 bytes_in 0 181496 station_ip 5.119.34.114 181496 port 220 181496 unique_id port 181496 remote_ip 10.8.0.18 181498 username rahim 181498 mac 181498 bytes_out 133322 181498 bytes_in 613434 181498 station_ip 5.120.18.152 181498 port 231 181498 unique_id port 181498 remote_ip 10.8.0.134 181499 username aminvpn 181499 unique_id port 181499 terminate_cause User-Request 181499 bytes_out 709492 181499 bytes_in 13169603 181499 station_ip 31.57.123.42 181499 port 15728856 181499 nas_port_type Virtual 181499 remote_ip 5.5.5.195 181500 username ahmadi1 181500 mac 181500 bytes_out 0 181500 bytes_in 0 181500 station_ip 83.123.15.7 181500 port 210 181500 unique_id port 181500 remote_ip 10.8.0.94 181504 username alihosseini1 181504 mac 181504 bytes_out 1021422 181504 bytes_in 7390992 181504 station_ip 5.119.108.47 181504 port 227 181504 unique_id port 181504 remote_ip 10.8.0.234 181508 username mehdizare 181508 mac 181508 bytes_out 80194 181508 bytes_in 92964 181508 station_ip 83.123.52.141 181508 port 224 181508 unique_id port 181508 remote_ip 10.8.0.210 181511 username sedighe 181511 mac 181511 bytes_out 431985 181511 bytes_in 1374240 181511 station_ip 83.123.113.185 181511 port 212 181511 unique_id port 181511 remote_ip 10.8.0.46 181513 username pourshad 181513 kill_reason Another user logged on this global unique id 181513 mac 181513 bytes_out 0 181513 bytes_in 0 181513 station_ip 5.119.121.30 181513 port 230 181513 unique_id port 181520 username aminvpn 181520 mac 181520 bytes_out 830943 181520 bytes_in 3558559 181520 station_ip 5.120.145.6 181520 port 220 181520 unique_id port 181520 remote_ip 10.8.0.58 181522 username pourshad 181522 kill_reason Another user logged on this global unique id 181522 mac 181522 bytes_out 0 181522 bytes_in 0 181522 station_ip 5.119.121.30 181522 port 230 181522 unique_id port 181523 username mosi 181523 mac 181523 bytes_out 2138 181523 bytes_in 5621 181523 station_ip 89.32.100.112 181523 port 221 181523 unique_id port 181523 remote_ip 10.8.0.142 181524 username ahmadi1 181524 mac 181524 bytes_out 0 181524 bytes_in 0 181524 station_ip 83.123.15.7 181524 port 222 181524 unique_id port 181524 remote_ip 10.8.0.94 181525 username alihosseini1 181525 mac 181525 bytes_out 0 181525 bytes_in 0 181525 station_ip 5.119.108.47 181525 port 222 181525 unique_id port 181482 port 207 181482 unique_id port 181482 remote_ip 10.8.0.158 181484 username yaghobi 181484 mac 181484 bytes_out 1221687 181484 bytes_in 6829318 181484 station_ip 83.123.8.117 181484 port 228 181484 unique_id port 181484 remote_ip 10.8.0.138 181488 username shadkam 181488 mac 181488 bytes_out 1340451 181488 bytes_in 7388176 181488 station_ip 83.123.2.143 181488 port 231 181488 unique_id port 181488 remote_ip 10.8.0.74 181490 username sedighe 181490 mac 181490 bytes_out 248941 181490 bytes_in 1017996 181490 station_ip 83.123.113.185 181490 port 222 181490 unique_id port 181490 remote_ip 10.8.0.46 181493 username ahmadi1 181493 mac 181493 bytes_out 25199 181493 bytes_in 36451 181493 station_ip 83.123.15.7 181493 port 222 181493 unique_id port 181493 remote_ip 10.8.0.94 181495 username mosi 181495 mac 181495 bytes_out 293192 181495 bytes_in 438501 181495 station_ip 89.32.100.49 181495 port 210 181495 unique_id port 181495 remote_ip 10.8.0.142 181501 username ahmadi1 181501 mac 181501 bytes_out 0 181501 bytes_in 0 181501 station_ip 83.123.15.7 181501 port 228 181501 unique_id port 181501 remote_ip 10.8.0.94 181506 username mosi 181506 mac 181506 bytes_out 54940 181506 bytes_in 54453 181506 station_ip 89.32.100.112 181506 port 228 181506 unique_id port 181506 remote_ip 10.8.0.142 181512 username malekpoir 181512 mac 181512 bytes_out 0 181512 bytes_in 0 181512 station_ip 5.119.34.114 181512 port 220 181512 unique_id port 181515 username mehdizare 181515 mac 181515 bytes_out 5943 181515 bytes_in 9876 181515 station_ip 83.123.52.141 181515 port 224 181515 unique_id port 181515 remote_ip 10.8.0.210 181516 username alihosseini1 181516 mac 181516 bytes_out 0 181516 bytes_in 0 181516 station_ip 5.119.108.47 181516 port 228 181516 unique_id port 181516 remote_ip 10.8.0.234 181519 username ahmadi1 181519 mac 181519 bytes_out 0 181519 bytes_in 0 181519 station_ip 83.123.15.7 181519 port 221 181519 unique_id port 181519 remote_ip 10.8.0.94 181521 username mosi 181521 mac 181521 bytes_out 93375 181521 bytes_in 158959 181521 station_ip 89.32.100.112 181521 port 222 181521 unique_id port 181521 remote_ip 10.8.0.142 181526 username farhad3 181526 kill_reason Another user logged on this global unique id 181526 mac 181526 bytes_out 0 181526 bytes_in 0 181526 station_ip 5.119.107.13 181526 port 229 181526 unique_id port 181526 remote_ip 10.8.0.222 181527 username ahmadi1 181527 mac 181527 bytes_out 0 181527 bytes_in 0 181527 station_ip 83.123.15.7 181527 port 222 181527 unique_id port 181527 remote_ip 10.8.0.94 181530 username aminvpn 181530 mac 181530 bytes_out 0 181530 bytes_in 0 181530 station_ip 5.120.29.137 181530 port 210 181530 unique_id port 181530 remote_ip 10.8.0.58 181532 username alihosseini1 181532 mac 181532 bytes_out 0 181532 bytes_in 0 181532 station_ip 5.119.108.47 181532 port 228 181532 unique_id port 181532 remote_ip 10.8.0.234 181533 username shadkam 181533 mac 181533 bytes_out 92812 181533 bytes_in 537435 181533 station_ip 83.123.83.216 181533 port 220 181533 unique_id port 181533 remote_ip 10.8.0.74 181536 username alipour1506 181536 mac 181536 bytes_out 493783 181536 bytes_in 4772320 181536 station_ip 83.123.109.22 181536 port 207 181536 unique_id port 181536 remote_ip 10.8.0.126 181538 username alipour1506 181538 mac 181538 bytes_out 6918 181538 bytes_in 7364 181538 station_ip 83.123.109.22 181538 port 221 181538 unique_id port 181503 bytes_out 81508 181503 bytes_in 240290 181503 station_ip 5.120.29.137 181503 port 233 181503 unique_id port 181503 remote_ip 10.8.0.58 181505 username kalantary6037 181505 mac 181505 bytes_out 369081 181505 bytes_in 875774 181505 station_ip 83.123.116.141 181505 port 222 181505 unique_id port 181505 remote_ip 10.8.0.50 181507 username alihosseini1 181507 mac 181507 bytes_out 0 181507 bytes_in 0 181507 station_ip 5.119.108.47 181507 port 227 181507 unique_id port 181507 remote_ip 10.8.0.234 181509 username ahmadi1 181509 mac 181509 bytes_out 0 181509 bytes_in 0 181509 station_ip 83.123.15.7 181509 port 224 181509 unique_id port 181509 remote_ip 10.8.0.94 181510 username ahmadi1 181510 mac 181510 bytes_out 0 181510 bytes_in 0 181510 station_ip 83.123.15.7 181510 port 224 181510 unique_id port 181510 remote_ip 10.8.0.94 181514 username yaghobi 181514 mac 181514 bytes_out 100066 181514 bytes_in 214877 181514 station_ip 83.123.66.4 181514 port 228 181514 unique_id port 181514 remote_ip 10.8.0.138 181517 username godarzi 181517 mac 181517 bytes_out 0 181517 bytes_in 0 181517 station_ip 5.202.5.255 181517 port 221 181517 unique_id port 181518 username alihosseini1 181518 mac 181518 bytes_out 0 181518 bytes_in 0 181518 station_ip 5.119.108.47 181518 port 221 181518 unique_id port 181518 remote_ip 10.8.0.234 181528 username jafari 181528 mac 181528 bytes_out 3963748 181528 bytes_in 33573314 181528 station_ip 5.200.109.163 181528 port 210 181528 unique_id port 181528 remote_ip 10.8.0.86 181529 username aminvpn 181529 mac 181529 bytes_out 0 181529 bytes_in 0 181529 station_ip 5.120.29.137 181529 port 210 181529 unique_id port 181529 remote_ip 10.8.0.58 181537 username alihosseini1 181537 mac 181537 bytes_out 16251 181537 bytes_in 27261 181537 station_ip 5.119.108.47 181537 port 220 181537 unique_id port 181537 remote_ip 10.8.0.234 181540 username hatami 181540 mac 181540 bytes_out 325692 181540 bytes_in 2131145 181540 station_ip 37.27.1.134 181540 port 228 181540 unique_id port 181540 remote_ip 10.8.0.98 181543 username mahdiyehalizadeh 181543 mac 181543 bytes_out 1472575 181543 bytes_in 18886541 181543 station_ip 5.119.94.51 181543 port 226 181543 unique_id port 181543 remote_ip 10.8.0.114 181546 username pourshad 181546 kill_reason Another user logged on this global unique id 181546 mac 181546 bytes_out 0 181546 bytes_in 0 181546 station_ip 5.119.121.30 181546 port 230 181546 unique_id port 181549 username yaghobi 181549 mac 181549 bytes_out 533721 181549 bytes_in 2532546 181549 station_ip 83.123.66.4 181549 port 222 181549 unique_id port 181549 remote_ip 10.8.0.138 181552 username khalili2 181552 mac 181552 bytes_out 0 181552 bytes_in 0 181552 station_ip 5.120.81.181 181552 port 225 181552 unique_id port 181554 username aminvpn 181554 mac 181554 bytes_out 0 181554 bytes_in 0 181554 station_ip 5.120.29.137 181554 port 227 181554 unique_id port 181554 remote_ip 10.8.0.58 181556 username sedighe 181556 mac 181556 bytes_out 16635 181556 bytes_in 20406 181556 station_ip 83.123.113.185 181556 port 222 181556 unique_id port 181556 remote_ip 10.8.0.46 181562 username aminvpn 181562 mac 181562 bytes_out 0 181562 bytes_in 0 181562 station_ip 5.120.29.137 181562 port 208 181562 unique_id port 181562 remote_ip 10.8.0.58 181563 username pourshad 181563 kill_reason Another user logged on this global unique id 181563 mac 181563 bytes_out 0 181563 bytes_in 0 181525 remote_ip 10.8.0.234 181531 username sabaghnezhad 181531 mac 181531 bytes_out 351027 181531 bytes_in 427839 181531 station_ip 83.123.24.28 181531 port 232 181531 unique_id port 181531 remote_ip 10.8.0.66 181534 username pourshad 181534 kill_reason Another user logged on this global unique id 181534 mac 181534 bytes_out 0 181534 bytes_in 0 181534 station_ip 5.119.121.30 181534 port 230 181534 unique_id port 181535 username charkhandaz3496 181535 mac 181535 bytes_out 3566953 181535 bytes_in 1031360 181535 station_ip 5.119.207.175 181535 port 221 181535 unique_id port 181535 remote_ip 10.8.0.90 181545 username hosseine 181545 kill_reason Another user logged on this global unique id 181545 mac 181545 bytes_out 0 181545 bytes_in 0 181545 station_ip 83.123.92.83 181545 port 208 181545 unique_id port 181547 username alipour1506 181547 mac 181547 bytes_out 18626 181547 bytes_in 18364 181547 station_ip 83.123.109.22 181547 port 207 181547 unique_id port 181547 remote_ip 10.8.0.126 181548 username soleymani5056 181548 mac 181548 bytes_out 183873 181548 bytes_in 265215 181548 station_ip 5.119.72.61 181548 port 210 181548 unique_id port 181548 remote_ip 10.8.0.226 181550 username aminvpn 181550 unique_id port 181550 terminate_cause Lost-Carrier 181550 bytes_out 3421044 181550 bytes_in 54546986 181550 station_ip 5.120.5.39 181550 port 15728857 181550 nas_port_type Virtual 181550 remote_ip 5.5.5.191 181551 username sedighe 181551 mac 181551 bytes_out 68226 181551 bytes_in 102561 181551 station_ip 83.123.113.185 181551 port 227 181551 unique_id port 181551 remote_ip 10.8.0.46 181557 username pourshad 181557 kill_reason Another user logged on this global unique id 181557 mac 181557 bytes_out 0 181557 bytes_in 0 181557 station_ip 5.119.121.30 181557 port 230 181557 unique_id port 181558 username mosi 181558 mac 181558 bytes_out 277893 181558 bytes_in 504053 181558 station_ip 94.24.86.146 181558 port 233 181558 unique_id port 181558 remote_ip 10.8.0.142 181559 username hosseine 181559 mac 181559 bytes_out 0 181559 bytes_in 0 181559 station_ip 83.123.92.83 181559 port 208 181559 unique_id port 181564 username esmaeilkazemi 181564 mac 181564 bytes_out 0 181564 bytes_in 0 181564 station_ip 83.123.89.57 181564 port 222 181564 unique_id port 181564 remote_ip 10.8.0.26 181568 username ahmadi1 181568 mac 181568 bytes_out 9189 181568 bytes_in 15190 181568 station_ip 83.123.15.7 181568 port 222 181568 unique_id port 181568 remote_ip 10.8.0.94 181570 username yaghobi 181570 mac 181570 bytes_out 25664 181570 bytes_in 21358 181570 station_ip 83.123.1.142 181570 port 210 181570 unique_id port 181570 remote_ip 10.8.0.138 181572 username pourshad 181572 mac 181572 bytes_out 0 181572 bytes_in 0 181572 station_ip 5.119.121.30 181572 port 230 181572 unique_id port 181577 username yaghobi 181577 mac 181577 bytes_out 125076 181577 bytes_in 165387 181577 station_ip 83.123.98.71 181577 port 231 181577 unique_id port 181577 remote_ip 10.8.0.138 181582 username godarzi 181582 mac 181582 bytes_out 2745873 181582 bytes_in 19590375 181582 station_ip 5.202.5.255 181582 port 232 181582 unique_id port 181582 remote_ip 10.8.0.38 181585 username mahdiyehalizadeh 181585 mac 181585 bytes_out 24076 181585 bytes_in 18850 181585 station_ip 5.119.94.51 181585 port 222 181585 unique_id port 181585 remote_ip 10.8.0.114 181589 username aminvpn 181589 unique_id port 181589 terminate_cause Lost-Carrier 181589 bytes_out 3056374 181589 bytes_in 60780894 181589 station_ip 5.120.29.137 181538 remote_ip 10.8.0.126 181539 username aminvpn 181539 mac 181539 bytes_out 0 181539 bytes_in 0 181539 station_ip 5.120.29.137 181539 port 221 181539 unique_id port 181539 remote_ip 10.8.0.58 181541 username shadkam 181541 mac 181541 bytes_out 44051 181541 bytes_in 536273 181541 station_ip 83.123.70.108 181541 port 207 181541 unique_id port 181541 remote_ip 10.8.0.74 181542 username alipour1506 181542 mac 181542 bytes_out 30260 181542 bytes_in 120762 181542 station_ip 83.123.109.22 181542 port 220 181542 unique_id port 181542 remote_ip 10.8.0.126 181544 username aminvpn 181544 kill_reason Maximum check online fails reached 181544 mac 181544 bytes_out 0 181544 bytes_in 0 181544 station_ip 5.120.29.137 181544 port 221 181544 unique_id port 181553 username ahmadi1 181553 mac 181553 bytes_out 29308 181553 bytes_in 44132 181553 station_ip 83.123.15.7 181553 port 207 181553 unique_id port 181553 remote_ip 10.8.0.94 181555 username majidsarmast 181555 kill_reason Another user logged on this global unique id 181555 mac 181555 bytes_out 0 181555 bytes_in 0 181555 station_ip 83.123.27.128 181555 port 231 181555 unique_id port 181555 remote_ip 10.8.0.170 181560 username mosi 181560 mac 181560 bytes_out 86626 181560 bytes_in 86020 181560 station_ip 2.183.128.145 181560 port 207 181560 unique_id port 181560 remote_ip 10.8.0.142 181561 username majidsarmast 181561 mac 181561 bytes_out 0 181561 bytes_in 0 181561 station_ip 83.123.27.128 181561 port 231 181561 unique_id port 181566 username yaghobi 181566 mac 181566 bytes_out 1175354 181566 bytes_in 4438759 181566 station_ip 83.123.66.4 181566 port 210 181566 unique_id port 181566 remote_ip 10.8.0.138 181569 username yaghobi 181569 mac 181569 bytes_out 114845 181569 bytes_in 173496 181569 station_ip 83.123.111.23 181569 port 228 181569 unique_id port 181569 remote_ip 10.8.0.138 181571 username pourshad 181571 kill_reason Another user logged on this global unique id 181571 mac 181571 bytes_out 0 181571 bytes_in 0 181571 station_ip 5.119.121.30 181571 port 230 181571 unique_id port 181573 username shadkam 181573 mac 181573 bytes_out 457211 181573 bytes_in 2475396 181573 station_ip 83.123.1.111 181573 port 231 181573 unique_id port 181573 remote_ip 10.8.0.74 181575 username farhad3 181575 kill_reason Another user logged on this global unique id 181575 mac 181575 bytes_out 0 181575 bytes_in 0 181575 station_ip 5.119.107.13 181575 port 229 181575 unique_id port 181576 username mahdiyehalizadeh 181576 mac 181576 bytes_out 1450068 181576 bytes_in 14219388 181576 station_ip 5.119.94.51 181576 port 220 181576 unique_id port 181576 remote_ip 10.8.0.114 181583 username mohammadmahdi 181583 mac 181583 bytes_out 0 181583 bytes_in 0 181583 station_ip 5.120.33.195 181583 port 230 181583 unique_id port 181587 username barzegar 181587 kill_reason Another user logged on this global unique id 181587 mac 181587 bytes_out 0 181587 bytes_in 0 181587 station_ip 5.119.195.192 181587 port 225 181587 unique_id port 181587 remote_ip 10.8.0.10 181591 username houshang 181591 mac 181591 bytes_out 41015 181591 bytes_in 91110 181591 station_ip 5.119.197.195 181591 port 233 181591 unique_id port 181591 remote_ip 10.8.0.82 181592 username mehdizare 181592 mac 181592 bytes_out 143094 181592 bytes_in 135610 181592 station_ip 83.123.52.141 181592 port 224 181592 unique_id port 181592 remote_ip 10.8.0.210 181596 username pourshad 181596 kill_reason Another user logged on this global unique id 181596 mac 181596 bytes_out 0 181596 bytes_in 0 181563 station_ip 5.119.121.30 181563 port 230 181563 unique_id port 181565 username aminvpn 181565 kill_reason Maximum check online fails reached 181565 mac 181565 bytes_out 0 181565 bytes_in 0 181565 station_ip 5.120.29.137 181565 port 208 181565 unique_id port 181567 username aminvpn 181567 mac 181567 bytes_out 0 181567 bytes_in 0 181567 station_ip 5.120.29.137 181567 port 210 181567 unique_id port 181567 remote_ip 10.8.0.58 181574 username yaghobi 181574 mac 181574 bytes_out 104507 181574 bytes_in 123205 181574 station_ip 83.123.60.101 181574 port 222 181574 unique_id port 181574 remote_ip 10.8.0.138 181578 username aminvpn 181578 kill_reason Maximum check online fails reached 181578 mac 181578 bytes_out 0 181578 bytes_in 0 181578 station_ip 5.120.29.137 181578 port 220 181578 unique_id port 181579 username mohammadmahdi 181579 kill_reason Another user logged on this global unique id 181579 mac 181579 bytes_out 0 181579 bytes_in 0 181579 station_ip 5.120.33.195 181579 port 230 181579 unique_id port 181579 remote_ip 10.8.0.30 181580 username pourshad 181580 kill_reason Another user logged on this global unique id 181580 mac 181580 bytes_out 0 181580 bytes_in 0 181580 station_ip 5.119.121.30 181580 port 228 181580 unique_id port 181580 remote_ip 10.8.0.42 181581 username sabaghnezhad 181581 mac 181581 bytes_out 2490060 181581 bytes_in 30498832 181581 station_ip 83.123.24.28 181581 port 210 181581 unique_id port 181581 remote_ip 10.8.0.66 181584 username aminvpn 181584 mac 181584 bytes_out 0 181584 bytes_in 0 181584 station_ip 5.120.29.137 181584 port 232 181584 unique_id port 181584 remote_ip 10.8.0.58 181586 username yaghobi 181586 mac 181586 bytes_out 264124 181586 bytes_in 468788 181586 station_ip 83.123.114.216 181586 port 233 181586 unique_id port 181586 remote_ip 10.8.0.138 181588 username farhad3 181588 mac 181588 bytes_out 0 181588 bytes_in 0 181588 station_ip 5.119.107.13 181588 port 229 181588 unique_id port 181590 username farhad3 181590 mac 181590 bytes_out 243911 181590 bytes_in 2747952 181590 station_ip 5.120.45.125 181590 port 234 181590 unique_id port 181590 remote_ip 10.8.0.222 181594 username kalantary6037 181594 mac 181594 bytes_out 999359 181594 bytes_in 6204829 181594 station_ip 83.123.19.149 181594 port 230 181594 unique_id port 181594 remote_ip 10.8.0.50 181598 username pourshad 181598 mac 181598 bytes_out 0 181598 bytes_in 0 181598 station_ip 5.119.121.30 181598 port 228 181598 unique_id port 181600 username charkhandaz3496 181600 mac 181600 bytes_out 1776581 181600 bytes_in 15573282 181600 station_ip 5.119.207.175 181600 port 207 181600 unique_id port 181600 remote_ip 10.8.0.90 181601 username barzegar 181601 mac 181601 bytes_out 0 181601 bytes_in 0 181601 station_ip 5.119.195.192 181601 port 225 181601 unique_id port 181602 username sobhan 181602 unique_id port 181602 terminate_cause Lost-Carrier 181602 bytes_out 1810014 181602 bytes_in 32682354 181602 station_ip 5.119.104.163 181602 port 15728860 181602 nas_port_type Virtual 181602 remote_ip 5.5.5.189 181604 username aminvpn 181604 mac 181604 bytes_out 0 181604 bytes_in 0 181604 station_ip 5.120.29.137 181604 port 222 181604 unique_id port 181604 remote_ip 10.8.0.58 181605 username mohammadmahdi 181605 kill_reason Another user logged on this global unique id 181605 mac 181605 bytes_out 0 181605 bytes_in 0 181605 station_ip 5.120.33.195 181605 port 231 181605 unique_id port 181605 remote_ip 10.8.0.30 181610 username yaghobi 181610 mac 181610 bytes_out 2072 181589 port 15728859 181589 nas_port_type Virtual 181589 remote_ip 5.5.5.221 181593 username ahmadi1 181593 mac 181593 bytes_out 10792 181593 bytes_in 17145 181593 station_ip 83.123.15.7 181593 port 233 181593 unique_id port 181593 remote_ip 10.8.0.94 181595 username sobhan 181595 unique_id port 181595 terminate_cause Lost-Carrier 181595 bytes_out 3056973 181595 bytes_in 71200500 181595 station_ip 5.233.60.20 181595 port 15728858 181595 nas_port_type Virtual 181595 remote_ip 5.5.5.190 181597 username aminvpn 181597 mac 181597 bytes_out 0 181597 bytes_in 0 181597 station_ip 5.120.29.137 181597 port 224 181597 unique_id port 181597 remote_ip 10.8.0.58 181599 username soleymani5056 181599 mac 181599 bytes_out 698231 181599 bytes_in 982604 181599 station_ip 5.119.181.84 181599 port 210 181599 unique_id port 181599 remote_ip 10.8.0.226 181603 username yaghobi 181603 mac 181603 bytes_out 190793 181603 bytes_in 415799 181603 station_ip 83.123.114.216 181603 port 222 181603 unique_id port 181603 remote_ip 10.8.0.138 181607 username saeed9658 181607 mac 181607 bytes_out 765074 181607 bytes_in 9428271 181607 station_ip 5.119.47.37 181607 port 230 181607 unique_id port 181607 remote_ip 10.8.0.162 181608 username aminvpn 181608 kill_reason Maximum check online fails reached 181608 mac 181608 bytes_out 0 181608 bytes_in 0 181608 station_ip 5.120.29.137 181608 port 222 181608 unique_id port 181609 username farhad3 181609 mac 181609 bytes_out 1827666 181609 bytes_in 12069806 181609 station_ip 5.119.129.164 181609 port 207 181609 unique_id port 181609 remote_ip 10.8.0.222 181614 username aminvpn 181614 kill_reason Maximum check online fails reached 181614 mac 181614 bytes_out 0 181614 bytes_in 0 181614 station_ip 5.120.29.137 181614 port 225 181614 unique_id port 181621 username farhad3 181621 mac 181621 bytes_out 1154557 181621 bytes_in 10660723 181621 station_ip 5.119.129.164 181621 port 224 181621 unique_id port 181621 remote_ip 10.8.0.222 181624 username mahdiyehalizadeh 181624 mac 181624 bytes_out 41288 181624 bytes_in 36859 181624 station_ip 5.119.94.51 181624 port 237 181624 unique_id port 181624 remote_ip 10.8.0.114 181627 username pourshad 181627 mac 181627 bytes_out 0 181627 bytes_in 0 181627 station_ip 5.119.121.30 181627 port 228 181627 unique_id port 181629 username soleymani5056 181629 mac 181629 bytes_out 8377 181629 bytes_in 6654 181629 station_ip 5.119.218.192 181629 port 210 181629 unique_id port 181629 remote_ip 10.8.0.226 181631 username shadkam 181631 mac 181631 bytes_out 1343284 181631 bytes_in 14151394 181631 station_ip 83.123.95.204 181631 port 234 181631 unique_id port 181631 remote_ip 10.8.0.74 181632 username malekpoir 181632 mac 181632 bytes_out 3346966 181632 bytes_in 26745033 181632 station_ip 5.119.34.114 181632 port 212 181632 unique_id port 181632 remote_ip 10.8.0.18 181635 username barzegar 181635 kill_reason Another user logged on this global unique id 181635 mac 181635 bytes_out 0 181635 bytes_in 0 181635 station_ip 5.120.158.94 181635 port 233 181635 unique_id port 181635 remote_ip 10.8.0.10 181640 username farhad3 181640 mac 181640 bytes_out 463481 181640 bytes_in 1180570 181640 station_ip 5.119.129.164 181640 port 207 181640 unique_id port 181640 remote_ip 10.8.0.222 181643 username yaghobi 181643 mac 181643 bytes_out 425419 181643 bytes_in 816388 181643 station_ip 83.123.48.99 181643 port 224 181643 unique_id port 181643 remote_ip 10.8.0.138 181645 username mohammadmahdi 181645 kill_reason Another user logged on this global unique id 181596 station_ip 5.119.121.30 181596 port 228 181596 unique_id port 181606 username alirezazadeh 181606 unique_id port 181606 terminate_cause Lost-Carrier 181606 bytes_out 12774340 181606 bytes_in 380051529 181606 station_ip 5.120.47.11 181606 port 15728855 181606 nas_port_type Virtual 181606 remote_ip 5.5.5.192 181615 username ahmadi1 181615 mac 181615 bytes_out 0 181615 bytes_in 0 181615 station_ip 83.123.15.7 181615 port 234 181615 unique_id port 181615 remote_ip 10.8.0.94 181618 username barzegar 181618 mac 181618 bytes_out 1781173 181618 bytes_in 16344316 181618 station_ip 5.119.211.57 181618 port 233 181618 unique_id port 181618 remote_ip 10.8.0.10 181619 username mahdiyehalizadeh 181619 mac 181619 bytes_out 0 181619 bytes_in 0 181619 station_ip 5.119.94.51 181619 port 234 181619 unique_id port 181619 remote_ip 10.8.0.114 181622 username ahmadi1 181622 mac 181622 bytes_out 0 181622 bytes_in 0 181622 station_ip 83.123.15.7 181622 port 234 181622 unique_id port 181622 remote_ip 10.8.0.94 181625 username saeed9658 181625 mac 181625 bytes_out 1469715 181625 bytes_in 13781666 181625 station_ip 5.119.47.37 181625 port 207 181625 unique_id port 181625 remote_ip 10.8.0.162 181626 username fezealinaghi 181626 kill_reason Another user logged on this global unique id 181626 mac 181626 bytes_out 0 181626 bytes_in 0 181626 station_ip 83.123.106.66 181626 port 219 181626 unique_id port 181626 remote_ip 10.8.0.202 181628 username charkhandaz3496 181628 mac 181628 bytes_out 1516397 181628 bytes_in 14402562 181628 station_ip 5.119.207.175 181628 port 210 181628 unique_id port 181628 remote_ip 10.8.0.90 181633 username aminvpn 181633 mac 181633 bytes_out 0 181633 bytes_in 0 181633 station_ip 5.120.29.137 181633 port 210 181633 unique_id port 181633 remote_ip 10.8.0.58 181634 username mohammadmahdi 181634 kill_reason Another user logged on this global unique id 181634 mac 181634 bytes_out 0 181634 bytes_in 0 181634 station_ip 5.120.33.195 181634 port 231 181634 unique_id port 181636 username farhad3 181636 mac 181636 bytes_out 1039012 181636 bytes_in 2282036 181636 station_ip 5.119.129.164 181636 port 207 181636 unique_id port 181636 remote_ip 10.8.0.222 181639 username mahdiyehalizadeh 181639 mac 181639 bytes_out 413832 181639 bytes_in 4754893 181639 station_ip 5.119.94.51 181639 port 228 181639 unique_id port 181639 remote_ip 10.8.0.114 181641 username farhad3 181641 mac 181641 bytes_out 0 181641 bytes_in 0 181641 station_ip 5.119.129.164 181641 port 212 181641 unique_id port 181641 remote_ip 10.8.0.222 181642 username aminvpn 181642 mac 181642 bytes_out 0 181642 bytes_in 0 181642 station_ip 5.120.29.137 181642 port 207 181642 unique_id port 181642 remote_ip 10.8.0.58 181657 username yaghobi 181657 mac 181657 bytes_out 38925 181657 bytes_in 65422 181657 station_ip 83.123.48.99 181657 port 212 181657 unique_id port 181657 remote_ip 10.8.0.138 181659 username barzegar 181659 mac 181659 bytes_out 1063747 181659 bytes_in 1162980 181659 station_ip 5.120.158.94 181659 port 210 181659 unique_id port 181659 remote_ip 10.8.0.10 181661 username aminvpn 181661 mac 181661 bytes_out 0 181661 bytes_in 0 181661 station_ip 5.120.29.137 181661 port 210 181661 unique_id port 181661 remote_ip 10.8.0.58 181667 username pourshad 181667 mac 181667 bytes_out 0 181667 bytes_in 0 181667 station_ip 5.119.121.30 181667 port 224 181667 unique_id port 181668 username sedighe 181668 mac 181668 bytes_out 202840 181668 bytes_in 865982 181610 bytes_in 4809 181610 station_ip 83.123.114.216 181610 port 225 181610 unique_id port 181610 remote_ip 10.8.0.138 181611 username yaghobi 181611 kill_reason Maximum check online fails reached 181611 mac 181611 bytes_out 0 181611 bytes_in 0 181611 station_ip 83.123.114.216 181611 port 230 181611 unique_id port 181612 username pourshad 181612 kill_reason Another user logged on this global unique id 181612 mac 181612 bytes_out 0 181612 bytes_in 0 181612 station_ip 5.119.121.30 181612 port 228 181612 unique_id port 181612 remote_ip 10.8.0.42 181613 username aminvpn 181613 mac 181613 bytes_out 0 181613 bytes_in 0 181613 station_ip 5.120.29.137 181613 port 225 181613 unique_id port 181613 remote_ip 10.8.0.58 181616 username godarzi 181616 mac 181616 bytes_out 1263178 181616 bytes_in 14857143 181616 station_ip 5.202.5.255 181616 port 224 181616 unique_id port 181616 remote_ip 10.8.0.38 181617 username mahdiyehalizadeh 181617 mac 181617 bytes_out 296246 181617 bytes_in 2333092 181617 station_ip 5.119.94.51 181617 port 232 181617 unique_id port 181617 remote_ip 10.8.0.114 181620 username aminvpn 181620 mac 181620 bytes_out 0 181620 bytes_in 0 181620 station_ip 5.120.29.137 181620 port 236 181620 unique_id port 181620 remote_ip 10.8.0.58 181623 username ahmadi1 181623 mac 181623 bytes_out 0 181623 bytes_in 0 181623 station_ip 83.123.15.7 181623 port 224 181623 unique_id port 181623 remote_ip 10.8.0.94 181630 username charkhandaz3496 181630 mac 181630 bytes_out 143552 181630 bytes_in 1608347 181630 station_ip 5.119.207.175 181630 port 207 181630 unique_id port 181630 remote_ip 10.8.0.90 181637 username fezealinaghi 181637 kill_reason Another user logged on this global unique id 181637 mac 181637 bytes_out 0 181637 bytes_in 0 181637 station_ip 83.123.106.66 181637 port 219 181637 unique_id port 181638 username kalantary6037 181638 mac 181638 bytes_out 2586257 181638 bytes_in 20314585 181638 station_ip 83.123.123.225 181638 port 235 181638 unique_id port 181638 remote_ip 10.8.0.50 181644 username aminvpn 181644 mac 181644 bytes_out 0 181644 bytes_in 0 181644 station_ip 5.120.29.137 181644 port 224 181644 unique_id port 181644 remote_ip 10.8.0.58 181646 username barzegar 181646 mac 181646 bytes_out 0 181646 bytes_in 0 181646 station_ip 5.120.158.94 181646 port 233 181646 unique_id port 181647 username pourshad 181647 kill_reason Another user logged on this global unique id 181647 mac 181647 bytes_out 0 181647 bytes_in 0 181647 station_ip 5.119.121.30 181647 port 210 181647 unique_id port 181647 remote_ip 10.8.0.42 181648 username barzegar 181648 mac 181648 bytes_out 0 181648 bytes_in 0 181648 station_ip 5.120.158.94 181648 port 233 181648 unique_id port 181648 remote_ip 10.8.0.10 181650 username aminvpn 181650 kill_reason Maximum check online fails reached 181650 mac 181650 bytes_out 0 181650 bytes_in 0 181650 station_ip 5.120.29.137 181650 port 228 181650 unique_id port 181651 username barzegar 181651 mac 181651 bytes_out 0 181651 bytes_in 0 181651 station_ip 5.120.158.94 181651 port 212 181651 unique_id port 181651 remote_ip 10.8.0.10 181654 username sabaghnezhad 181654 mac 181654 bytes_out 64208 181654 bytes_in 55300 181654 station_ip 83.123.114.182 181654 port 224 181654 unique_id port 181654 remote_ip 10.8.0.66 181655 username aminvpn 181655 mac 181655 bytes_out 0 181655 bytes_in 0 181655 station_ip 5.120.29.137 181655 port 210 181655 unique_id port 181655 remote_ip 10.8.0.58 181660 username barzegar 181660 mac 181645 mac 181645 bytes_out 0 181645 bytes_in 0 181645 station_ip 5.120.33.195 181645 port 231 181645 unique_id port 181649 username kordestani 181649 mac 181649 bytes_out 923519 181649 bytes_in 12009733 181649 station_ip 151.235.121.243 181649 port 212 181649 unique_id port 181649 remote_ip 10.8.0.130 181652 username yaghobi 181652 mac 181652 bytes_out 291307 181652 bytes_in 581628 181652 station_ip 83.123.48.99 181652 port 207 181652 unique_id port 181652 remote_ip 10.8.0.138 181653 username pourshad 181653 mac 181653 bytes_out 0 181653 bytes_in 0 181653 station_ip 5.119.121.30 181653 port 210 181653 unique_id port 181656 username kalantary6037 181656 mac 181656 bytes_out 420359 181656 bytes_in 2179216 181656 station_ip 83.123.123.225 181656 port 234 181656 unique_id port 181656 remote_ip 10.8.0.50 181658 username ahmadi1 181658 mac 181658 bytes_out 324699 181658 bytes_in 523164 181658 station_ip 83.123.15.7 181658 port 224 181658 unique_id port 181658 remote_ip 10.8.0.94 181662 username saeed9658 181662 mac 181662 bytes_out 1859876 181662 bytes_in 19097505 181662 station_ip 5.119.47.37 181662 port 212 181662 unique_id port 181662 remote_ip 10.8.0.162 181666 username barzegar 181666 mac 181666 bytes_out 0 181666 bytes_in 0 181666 station_ip 5.120.158.94 181666 port 212 181666 unique_id port 181666 remote_ip 10.8.0.10 181670 username yaghobi 181670 mac 181670 bytes_out 253803 181670 bytes_in 399695 181670 station_ip 83.123.30.175 181670 port 210 181670 unique_id port 181670 remote_ip 10.8.0.138 181672 username sedighe 181672 mac 181672 bytes_out 63106 181672 bytes_in 106363 181672 station_ip 83.123.52.23 181672 port 224 181672 unique_id port 181672 remote_ip 10.8.0.46 181675 username khalili2 181675 kill_reason Another user logged on this global unique id 181675 mac 181675 bytes_out 0 181675 bytes_in 0 181675 station_ip 5.120.81.181 181675 port 226 181675 unique_id port 181675 remote_ip 10.8.0.118 181676 username mehdizare 181676 mac 181676 bytes_out 155480 181676 bytes_in 170614 181676 station_ip 83.123.52.141 181676 port 229 181676 unique_id port 181676 remote_ip 10.8.0.210 181682 username farhad3 181682 kill_reason Another user logged on this global unique id 181682 mac 181682 bytes_out 0 181682 bytes_in 0 181682 station_ip 5.119.129.164 181682 port 235 181682 unique_id port 181682 remote_ip 10.8.0.222 181683 username aminvpn 181683 mac 181683 bytes_out 0 181683 bytes_in 0 181683 station_ip 5.120.29.137 181683 port 207 181683 unique_id port 181683 remote_ip 10.8.0.58 181691 username tahmorsi 181691 mac 181691 bytes_out 2128080 181691 bytes_in 29404896 181691 station_ip 86.57.54.27 181691 port 232 181691 unique_id port 181691 remote_ip 10.8.0.6 181694 username aminvpn 181694 mac 181694 bytes_out 0 181694 bytes_in 0 181694 station_ip 5.120.29.137 181694 port 207 181694 unique_id port 181694 remote_ip 10.8.0.58 181696 username houshang 181696 mac 181696 bytes_out 0 181696 bytes_in 0 181696 station_ip 5.119.197.195 181696 port 212 181696 unique_id port 181697 username mehdizare 181697 mac 181697 bytes_out 32944 181697 bytes_in 40760 181697 station_ip 83.123.52.141 181697 port 224 181697 unique_id port 181697 remote_ip 10.8.0.210 181698 username yaghobi 181698 mac 181698 bytes_out 177696 181698 bytes_in 305069 181698 station_ip 83.123.98.185 181698 port 229 181698 unique_id port 181698 remote_ip 10.8.0.138 181702 username fezealinaghi 181702 mac 181702 bytes_out 0 181660 bytes_out 5997 181660 bytes_in 10970 181660 station_ip 5.120.158.94 181660 port 210 181660 unique_id port 181660 remote_ip 10.8.0.10 181663 username pourshad 181663 kill_reason Another user logged on this global unique id 181663 mac 181663 bytes_out 0 181663 bytes_in 0 181663 station_ip 5.119.121.30 181663 port 224 181663 unique_id port 181663 remote_ip 10.8.0.42 181664 username shadkam 181664 mac 181664 bytes_out 1543358 181664 bytes_in 16207182 181664 station_ip 83.123.116.244 181664 port 234 181664 unique_id port 181664 remote_ip 10.8.0.74 181665 username malekpoir 181665 mac 181665 bytes_out 1928826 181665 bytes_in 14978830 181665 station_ip 5.119.34.114 181665 port 233 181665 unique_id port 181665 remote_ip 10.8.0.18 181674 username sedighe 181674 mac 181674 bytes_out 16002 181674 bytes_in 30872 181674 station_ip 83.123.69.120 181674 port 233 181674 unique_id port 181674 remote_ip 10.8.0.46 181677 username aminvpn 181677 unique_id port 181677 terminate_cause Lost-Carrier 181677 bytes_out 2000714 181677 bytes_in 6539412 181677 station_ip 5.120.5.39 181677 port 15728863 181677 nas_port_type Virtual 181677 remote_ip 5.5.5.191 181678 username sedighe 181678 mac 181678 bytes_out 50981 181678 bytes_in 90587 181678 station_ip 83.123.10.32 181678 port 207 181678 unique_id port 181678 remote_ip 10.8.0.46 181680 username pourshad 181680 mac 181680 bytes_out 3849 181680 bytes_in 5713 181680 station_ip 5.119.121.30 181680 port 229 181680 unique_id port 181680 remote_ip 10.8.0.42 181684 username farhad3 181684 mac 181684 bytes_out 0 181684 bytes_in 0 181684 station_ip 5.119.129.164 181684 port 235 181684 unique_id port 181686 username houshang 181686 kill_reason Another user logged on this global unique id 181686 mac 181686 bytes_out 0 181686 bytes_in 0 181686 station_ip 5.119.197.195 181686 port 212 181686 unique_id port 181686 remote_ip 10.8.0.82 181689 username yaghobi 181689 mac 181689 bytes_out 76022 181689 bytes_in 150994 181689 station_ip 83.123.123.245 181689 port 207 181689 unique_id port 181689 remote_ip 10.8.0.138 181690 username naeimeh 181690 mac 181690 bytes_out 2935209 181690 bytes_in 16180465 181690 station_ip 83.123.63.155 181690 port 229 181690 unique_id port 181690 remote_ip 10.8.0.78 181693 username aminvpn 181693 unique_id port 181693 terminate_cause Lost-Carrier 181693 bytes_out 6309019 181693 bytes_in 25726676 181693 station_ip 5.160.113.187 181693 port 15728861 181693 nas_port_type Virtual 181693 remote_ip 5.5.5.205 181695 username khademi 181695 kill_reason Another user logged on this global unique id 181695 mac 181695 bytes_out 0 181695 bytes_in 0 181695 station_ip 83.123.54.146 181695 port 218 181695 unique_id port 181695 remote_ip 10.8.0.14 181699 username naeimeh 181699 mac 181699 bytes_out 1076455 181699 bytes_in 5393858 181699 station_ip 83.123.38.117 181699 port 207 181699 unique_id port 181699 remote_ip 10.8.0.78 181709 username shahruz 181709 mac 181709 bytes_out 0 181709 bytes_in 0 181709 station_ip 83.123.111.112 181709 port 224 181709 unique_id port 181709 remote_ip 10.8.0.230 181710 username yaghobi 181710 mac 181710 bytes_out 237811 181710 bytes_in 431371 181710 station_ip 83.123.40.60 181710 port 207 181710 unique_id port 181710 remote_ip 10.8.0.138 181711 username mohammadmahdi 181711 kill_reason Another user logged on this global unique id 181711 mac 181711 bytes_out 0 181711 bytes_in 0 181711 station_ip 5.120.33.195 181711 port 231 181711 unique_id port 181715 username shahruz 181715 mac 181715 bytes_out 0 181715 bytes_in 0 181668 station_ip 83.123.52.23 181668 port 207 181668 unique_id port 181668 remote_ip 10.8.0.46 181669 username aminvpn 181669 mac 181669 bytes_out 0 181669 bytes_in 0 181669 station_ip 5.120.29.137 181669 port 207 181669 unique_id port 181669 remote_ip 10.8.0.58 181671 username mohsenaskari 181671 mac 181671 bytes_out 0 181671 bytes_in 0 181671 station_ip 46.225.214.218 181671 port 207 181671 unique_id port 181671 remote_ip 10.8.0.150 181673 username ahmadi1 181673 mac 181673 bytes_out 0 181673 bytes_in 0 181673 station_ip 83.123.15.7 181673 port 207 181673 unique_id port 181673 remote_ip 10.8.0.94 181679 username barzegar 181679 mac 181679 bytes_out 0 181679 bytes_in 0 181679 station_ip 5.120.158.94 181679 port 233 181679 unique_id port 181679 remote_ip 10.8.0.10 181681 username shadkam 181681 mac 181681 bytes_out 3580 181681 bytes_in 5003 181681 station_ip 83.123.38.153 181681 port 207 181681 unique_id port 181681 remote_ip 10.8.0.74 181685 username farhad3 181685 mac 181685 bytes_out 0 181685 bytes_in 0 181685 station_ip 5.120.28.244 181685 port 207 181685 unique_id port 181685 remote_ip 10.8.0.222 181687 username farhad3 181687 mac 181687 bytes_out 854134 181687 bytes_in 8510878 181687 station_ip 5.120.28.244 181687 port 207 181687 unique_id port 181687 remote_ip 10.8.0.222 181688 username yaghobi 181688 mac 181688 bytes_out 606669 181688 bytes_in 681219 181688 station_ip 83.123.95.223 181688 port 210 181688 unique_id port 181688 remote_ip 10.8.0.138 181692 username yaghobi 181692 mac 181692 bytes_out 63551 181692 bytes_in 141310 181692 station_ip 83.123.85.145 181692 port 210 181692 unique_id port 181692 remote_ip 10.8.0.138 181700 username farhad3 181700 mac 181700 bytes_out 0 181700 bytes_in 0 181700 station_ip 5.119.143.154 181700 port 207 181700 unique_id port 181700 remote_ip 10.8.0.222 181701 username yaghobi 181701 mac 181701 bytes_out 221241 181701 bytes_in 78640 181701 station_ip 83.123.98.185 181701 port 224 181701 unique_id port 181701 remote_ip 10.8.0.138 181704 username milan 181704 kill_reason Another user logged on this global unique id 181704 mac 181704 bytes_out 0 181704 bytes_in 0 181704 station_ip 5.119.97.240 181704 port 196 181704 unique_id port 181706 username shahruz 181706 mac 181706 bytes_out 3143 181706 bytes_in 4705 181706 station_ip 83.123.111.112 181706 port 219 181706 unique_id port 181706 remote_ip 10.8.0.230 181707 username shahruz 181707 mac 181707 bytes_out 2730 181707 bytes_in 4672 181707 station_ip 83.123.111.112 181707 port 224 181707 unique_id port 181707 remote_ip 10.8.0.230 181712 username houshang 181712 kill_reason Another user logged on this global unique id 181712 mac 181712 bytes_out 0 181712 bytes_in 0 181712 station_ip 5.119.197.195 181712 port 210 181712 unique_id port 181712 remote_ip 10.8.0.82 181714 username pourshad 181714 mac 181714 bytes_out 9778421 181714 bytes_in 13298045 181714 station_ip 5.119.121.30 181714 port 233 181714 unique_id port 181714 remote_ip 10.8.0.42 181716 username yaghobi 181716 mac 181716 bytes_out 45787 181716 bytes_in 29613 181716 station_ip 83.123.110.150 181716 port 224 181716 unique_id port 181716 remote_ip 10.8.0.138 181719 username barzegar 181719 mac 181719 bytes_out 0 181719 bytes_in 0 181719 station_ip 5.119.69.200 181719 port 207 181719 unique_id port 181719 remote_ip 10.8.0.10 181723 username shahruz 181723 mac 181723 bytes_out 0 181723 bytes_in 0 181702 bytes_in 0 181702 station_ip 83.123.106.66 181702 port 219 181702 unique_id port 181703 username aminvpn 181703 mac 181703 bytes_out 0 181703 bytes_in 0 181703 station_ip 5.120.29.137 181703 port 219 181703 unique_id port 181703 remote_ip 10.8.0.58 181705 username mehdizare 181705 mac 181705 bytes_out 29823 181705 bytes_in 41438 181705 station_ip 83.123.52.141 181705 port 212 181705 unique_id port 181705 remote_ip 10.8.0.210 181708 username meysam 181708 mac 181708 bytes_out 131598 181708 bytes_in 761664 181708 station_ip 188.159.252.168 181708 port 219 181708 unique_id port 181708 remote_ip 10.8.0.158 181713 username shahruz 181713 mac 181713 bytes_out 2474 181713 bytes_in 4759 181713 station_ip 83.123.111.112 181713 port 219 181713 unique_id port 181713 remote_ip 10.8.0.230 181718 username shahruz 181718 mac 181718 bytes_out 0 181718 bytes_in 0 181718 station_ip 83.123.111.112 181718 port 207 181718 unique_id port 181718 remote_ip 10.8.0.230 181721 username shahruz 181721 mac 181721 bytes_out 0 181721 bytes_in 0 181721 station_ip 83.123.111.112 181721 port 233 181721 unique_id port 181721 remote_ip 10.8.0.230 181724 username shahruz 181724 mac 181724 bytes_out 0 181724 bytes_in 0 181724 station_ip 83.123.111.112 181724 port 207 181724 unique_id port 181724 remote_ip 10.8.0.230 181730 username barzegar 181730 mac 181730 bytes_out 0 181730 bytes_in 0 181730 station_ip 5.119.69.200 181730 port 234 181730 unique_id port 181730 remote_ip 10.8.0.10 181738 username kordestani 181738 mac 181738 bytes_out 371326 181738 bytes_in 2606100 181738 station_ip 151.235.123.66 181738 port 224 181738 unique_id port 181738 remote_ip 10.8.0.130 181739 username houshang 181739 mac 181739 bytes_out 0 181739 bytes_in 0 181739 station_ip 5.119.197.195 181739 port 210 181739 unique_id port 181746 username mostafa_es78 181746 mac 181746 bytes_out 8157 181746 bytes_in 13872 181746 station_ip 83.122.110.254 181746 port 224 181746 unique_id port 181746 remote_ip 10.8.0.34 181748 username barzegar 181748 mac 181748 bytes_out 2416 181748 bytes_in 4709 181748 station_ip 5.119.69.200 181748 port 233 181748 unique_id port 181748 remote_ip 10.8.0.10 181751 username yaghobi 181751 mac 181751 bytes_out 61238 181751 bytes_in 64243 181751 station_ip 83.123.15.155 181751 port 232 181751 unique_id port 181751 remote_ip 10.8.0.138 181753 username khademi 181753 kill_reason Another user logged on this global unique id 181753 mac 181753 bytes_out 0 181753 bytes_in 0 181753 station_ip 83.123.54.146 181753 port 218 181753 unique_id port 181754 username houshang 181754 kill_reason Another user logged on this global unique id 181754 mac 181754 bytes_out 0 181754 bytes_in 0 181754 station_ip 5.119.243.193 181754 port 207 181754 unique_id port 181754 remote_ip 10.8.0.82 181757 username mostafa_es78 181757 mac 181757 bytes_out 3776 181757 bytes_in 9755 181757 station_ip 83.122.110.254 181757 port 233 181757 unique_id port 181757 remote_ip 10.8.0.34 181760 username mostafa_es78 181760 mac 181760 bytes_out 5206 181760 bytes_in 6891 181760 station_ip 83.122.110.254 181760 port 235 181760 unique_id port 181760 remote_ip 10.8.0.34 181763 username farhad3 181763 mac 181763 bytes_out 0 181763 bytes_in 0 181763 station_ip 5.119.143.154 181763 port 229 181763 unique_id port 181765 username yaghobi 181765 mac 181765 bytes_out 84967 181765 bytes_in 106029 181765 station_ip 83.123.36.165 181765 port 224 181715 station_ip 83.123.111.112 181715 port 207 181715 unique_id port 181715 remote_ip 10.8.0.230 181717 username khademi 181717 kill_reason Another user logged on this global unique id 181717 mac 181717 bytes_out 0 181717 bytes_in 0 181717 station_ip 83.123.54.146 181717 port 218 181717 unique_id port 181720 username rahim 181720 mac 181720 bytes_out 227277 181720 bytes_in 796696 181720 station_ip 5.120.18.152 181720 port 232 181720 unique_id port 181720 remote_ip 10.8.0.134 181722 username aminvpn 181722 mac 181722 bytes_out 0 181722 bytes_in 0 181722 station_ip 5.120.29.137 181722 port 232 181722 unique_id port 181722 remote_ip 10.8.0.58 181725 username yaghobi 181725 mac 181725 bytes_out 28239 181725 bytes_in 32942 181725 station_ip 83.123.47.180 181725 port 224 181725 unique_id port 181725 remote_ip 10.8.0.138 181727 username shahruz 181727 mac 181727 bytes_out 0 181727 bytes_in 0 181727 station_ip 83.123.111.112 181727 port 207 181727 unique_id port 181727 remote_ip 10.8.0.230 181729 username shahruz 181729 mac 181729 bytes_out 0 181729 bytes_in 0 181729 station_ip 83.123.111.112 181729 port 207 181729 unique_id port 181729 remote_ip 10.8.0.230 181731 username shahruz 181731 mac 181731 bytes_out 0 181731 bytes_in 0 181731 station_ip 83.123.111.112 181731 port 207 181731 unique_id port 181731 remote_ip 10.8.0.230 181732 username houshang 181732 kill_reason Another user logged on this global unique id 181732 mac 181732 bytes_out 0 181732 bytes_in 0 181732 station_ip 5.119.197.195 181732 port 210 181732 unique_id port 181733 username shahruz 181733 mac 181733 bytes_out 0 181733 bytes_in 0 181733 station_ip 83.123.111.112 181733 port 207 181733 unique_id port 181733 remote_ip 10.8.0.230 181737 username milan 181737 kill_reason Another user logged on this global unique id 181737 mac 181737 bytes_out 0 181737 bytes_in 0 181737 station_ip 5.119.97.240 181737 port 196 181737 unique_id port 181741 username pourshad 181741 kill_reason Another user logged on this global unique id 181741 mac 181741 bytes_out 0 181741 bytes_in 0 181741 station_ip 5.119.121.30 181741 port 219 181741 unique_id port 181741 remote_ip 10.8.0.42 181742 username mostafa_es78 181742 mac 181742 bytes_out 4802241 181742 bytes_in 45675116 181742 station_ip 83.122.110.254 181742 port 223 181742 unique_id port 181742 remote_ip 10.8.0.34 181743 username barzegar 181743 mac 181743 bytes_out 3937 181743 bytes_in 6326 181743 station_ip 5.119.69.200 181743 port 224 181743 unique_id port 181743 remote_ip 10.8.0.10 181747 username pourshad 181747 kill_reason Another user logged on this global unique id 181747 mac 181747 bytes_out 0 181747 bytes_in 0 181747 station_ip 5.119.121.30 181747 port 219 181747 unique_id port 181749 username sabaghnezhad 181749 mac 181749 bytes_out 314939 181749 bytes_in 589364 181749 station_ip 83.123.114.182 181749 port 236 181749 unique_id port 181749 remote_ip 10.8.0.66 181750 username barzegar 181750 mac 181750 bytes_out 0 181750 bytes_in 0 181750 station_ip 5.119.69.200 181750 port 224 181750 unique_id port 181750 remote_ip 10.8.0.10 181755 username saeed9658 181755 mac 181755 bytes_out 1151032 181755 bytes_in 11440283 181755 station_ip 5.119.47.37 181755 port 210 181755 unique_id port 181755 remote_ip 10.8.0.162 181758 username saeed9658 181758 mac 181758 bytes_out 1702 181758 bytes_in 4156 181758 station_ip 5.119.47.37 181758 port 234 181758 unique_id port 181758 remote_ip 10.8.0.162 181759 username mohammadmahdi 181759 mac 181723 station_ip 83.123.111.112 181723 port 207 181723 unique_id port 181723 remote_ip 10.8.0.230 181726 username shahruz 181726 mac 181726 bytes_out 0 181726 bytes_in 0 181726 station_ip 83.123.111.112 181726 port 207 181726 unique_id port 181726 remote_ip 10.8.0.230 181728 username farhad3 181728 kill_reason Another user logged on this global unique id 181728 mac 181728 bytes_out 0 181728 bytes_in 0 181728 station_ip 5.119.143.154 181728 port 229 181728 unique_id port 181728 remote_ip 10.8.0.222 181734 username kalantary6037 181734 mac 181734 bytes_out 7955 181734 bytes_in 6827 181734 station_ip 83.123.3.217 181734 port 233 181734 unique_id port 181734 remote_ip 10.8.0.50 181735 username barzegar 181735 mac 181735 bytes_out 1636 181735 bytes_in 3471 181735 station_ip 5.119.69.200 181735 port 234 181735 unique_id port 181735 remote_ip 10.8.0.10 181736 username aminvpn 181736 mac 181736 bytes_out 0 181736 bytes_in 0 181736 station_ip 5.120.29.137 181736 port 207 181736 unique_id port 181736 remote_ip 10.8.0.58 181740 username barzegar 181740 mac 181740 bytes_out 0 181740 bytes_in 0 181740 station_ip 5.119.69.200 181740 port 210 181740 unique_id port 181740 remote_ip 10.8.0.10 181744 username yaghobi 181744 mac 181744 bytes_out 170412 181744 bytes_in 244843 181744 station_ip 83.123.15.155 181744 port 232 181744 unique_id port 181744 remote_ip 10.8.0.138 181745 username mostafa_es78 181745 mac 181745 bytes_out 3764 181745 bytes_in 7908 181745 station_ip 83.122.110.254 181745 port 233 181745 unique_id port 181745 remote_ip 10.8.0.34 181752 username mostafa_es78 181752 mac 181752 bytes_out 5337 181752 bytes_in 12108 181752 station_ip 83.122.110.254 181752 port 234 181752 unique_id port 181752 remote_ip 10.8.0.34 181756 username houshang 181756 mac 181756 bytes_out 0 181756 bytes_in 0 181756 station_ip 5.119.243.193 181756 port 207 181756 unique_id port 181769 username barzegar 181769 mac 181769 bytes_out 0 181769 bytes_in 0 181769 station_ip 5.119.69.200 181769 port 210 181769 unique_id port 181769 remote_ip 10.8.0.10 181770 username houshang 181770 kill_reason Another user logged on this global unique id 181770 mac 181770 bytes_out 0 181770 bytes_in 0 181770 station_ip 5.119.243.193 181770 port 207 181770 unique_id port 181770 remote_ip 10.8.0.82 181776 username pourshad 181776 kill_reason Another user logged on this global unique id 181776 mac 181776 bytes_out 0 181776 bytes_in 0 181776 station_ip 5.119.121.30 181776 port 219 181776 unique_id port 181779 username khademi 181779 kill_reason Another user logged on this global unique id 181779 mac 181779 bytes_out 0 181779 bytes_in 0 181779 station_ip 83.123.54.146 181779 port 218 181779 unique_id port 181783 username houshang 181783 mac 181783 bytes_out 0 181783 bytes_in 0 181783 station_ip 5.119.243.193 181783 port 207 181783 unique_id port 181784 username pourshad 181784 kill_reason Another user logged on this global unique id 181784 mac 181784 bytes_out 0 181784 bytes_in 0 181784 station_ip 5.119.121.30 181784 port 219 181784 unique_id port 181784 remote_ip 10.8.0.42 181785 username aminvpn 181785 mac 181785 bytes_out 0 181785 bytes_in 0 181785 station_ip 5.120.29.137 181785 port 232 181785 unique_id port 181785 remote_ip 10.8.0.58 181789 username farhad3 181789 mac 181789 bytes_out 0 181789 bytes_in 0 181789 station_ip 5.119.143.154 181789 port 224 181789 unique_id port 181789 remote_ip 10.8.0.222 181790 username kalantary6037 181790 mac 181790 bytes_out 159909 181759 bytes_out 0 181759 bytes_in 0 181759 station_ip 5.120.33.195 181759 port 231 181759 unique_id port 181761 username aminvpn 181761 mac 181761 bytes_out 0 181761 bytes_in 0 181761 station_ip 5.120.29.137 181761 port 233 181761 unique_id port 181761 remote_ip 10.8.0.58 181762 username pourshad 181762 kill_reason Another user logged on this global unique id 181762 mac 181762 bytes_out 0 181762 bytes_in 0 181762 station_ip 5.119.121.30 181762 port 219 181762 unique_id port 181764 username motamedi9772 181764 mac 181764 bytes_out 112026 181764 bytes_in 238854 181764 station_ip 83.123.60.171 181764 port 235 181764 unique_id port 181764 remote_ip 10.8.0.154 181766 username kalantary6037 181766 mac 181766 bytes_out 185321 181766 bytes_in 1017091 181766 station_ip 83.123.123.53 181766 port 233 181766 unique_id port 181766 remote_ip 10.8.0.50 181772 username mirzaei6046 181772 kill_reason Another user logged on this global unique id 181772 mac 181772 bytes_out 0 181772 bytes_in 0 181772 station_ip 5.119.103.136 181772 port 201 181772 unique_id port 181778 username soleymani5056 181778 mac 181778 bytes_out 162786 181778 bytes_in 868415 181778 station_ip 5.120.187.37 181778 port 229 181778 unique_id port 181778 remote_ip 10.8.0.226 181780 username sabaghnezhad 181780 mac 181780 bytes_out 171289 181780 bytes_in 220658 181780 station_ip 83.123.114.182 181780 port 232 181780 unique_id port 181780 remote_ip 10.8.0.66 181782 username barzegar 181782 mac 181782 bytes_out 0 181782 bytes_in 0 181782 station_ip 5.119.69.200 181782 port 232 181782 unique_id port 181782 remote_ip 10.8.0.10 181786 username milan 181786 mac 181786 bytes_out 0 181786 bytes_in 0 181786 station_ip 5.119.97.240 181786 port 196 181786 unique_id port 181787 username farhad3 181787 mac 181787 bytes_out 827063 181787 bytes_in 9437208 181787 station_ip 5.119.143.154 181787 port 229 181787 unique_id port 181787 remote_ip 10.8.0.222 181791 username mostafa_es78 181791 mac 181791 bytes_out 62945 181791 bytes_in 210391 181791 station_ip 83.122.110.254 181791 port 234 181791 unique_id port 181791 remote_ip 10.8.0.34 181793 username mostafa_es78 181793 mac 181793 bytes_out 5457 181793 bytes_in 9135 181793 station_ip 83.122.110.254 181793 port 207 181793 unique_id port 181793 remote_ip 10.8.0.34 181795 username khademi 181795 kill_reason Another user logged on this global unique id 181795 mac 181795 bytes_out 0 181795 bytes_in 0 181795 station_ip 83.123.54.146 181795 port 218 181795 unique_id port 181796 username barzegar 181796 mac 181796 bytes_out 0 181796 bytes_in 0 181796 station_ip 5.119.69.200 181796 port 233 181796 unique_id port 181796 remote_ip 10.8.0.10 181801 username mostafa_es78 181801 mac 181801 bytes_out 9585 181801 bytes_in 14365 181801 station_ip 83.122.110.254 181801 port 219 181801 unique_id port 181801 remote_ip 10.8.0.34 181802 username barzegar 181802 mac 181802 bytes_out 0 181802 bytes_in 0 181802 station_ip 5.119.69.200 181802 port 227 181802 unique_id port 181802 remote_ip 10.8.0.10 181803 username pourshad 181803 kill_reason Another user logged on this global unique id 181803 mac 181803 bytes_out 0 181803 bytes_in 0 181803 station_ip 5.119.217.167 181803 port 207 181803 unique_id port 181804 username mehdizare 181804 mac 181804 bytes_out 1825674 181804 bytes_in 29806970 181804 station_ip 83.123.52.141 181804 port 212 181804 unique_id port 181804 remote_ip 10.8.0.210 181805 username zahra1101 181805 mac 181805 bytes_out 2448973 181765 unique_id port 181765 remote_ip 10.8.0.138 181767 username barzegar 181767 mac 181767 bytes_out 134177 181767 bytes_in 411019 181767 station_ip 5.119.69.200 181767 port 210 181767 unique_id port 181767 remote_ip 10.8.0.10 181768 username barzegar 181768 mac 181768 bytes_out 0 181768 bytes_in 0 181768 station_ip 5.119.69.200 181768 port 210 181768 unique_id port 181768 remote_ip 10.8.0.10 181771 username soleymani5056 181771 mac 181771 bytes_out 355426 181771 bytes_in 737606 181771 station_ip 5.119.46.8 181771 port 223 181771 unique_id port 181771 remote_ip 10.8.0.226 181773 username kalantary6037 181773 mac 181773 bytes_out 115026 181773 bytes_in 74634 181773 station_ip 83.123.123.53 181773 port 224 181773 unique_id port 181773 remote_ip 10.8.0.50 181774 username zahra1101 181774 mac 181774 bytes_out 182020 181774 bytes_in 733618 181774 station_ip 5.119.205.125 181774 port 210 181774 unique_id port 181774 remote_ip 10.8.0.190 181775 username milan 181775 kill_reason Another user logged on this global unique id 181775 mac 181775 bytes_out 0 181775 bytes_in 0 181775 station_ip 5.119.97.240 181775 port 196 181775 unique_id port 181777 username aminvpn 181777 mac 181777 bytes_out 0 181777 bytes_in 0 181777 station_ip 5.120.29.137 181777 port 224 181777 unique_id port 181777 remote_ip 10.8.0.58 181781 username pourshad 181781 mac 181781 bytes_out 0 181781 bytes_in 0 181781 station_ip 5.119.121.30 181781 port 219 181781 unique_id port 181788 username soleymani5056 181788 mac 181788 bytes_out 113761 181788 bytes_in 750266 181788 station_ip 5.120.43.151 181788 port 224 181788 unique_id port 181788 remote_ip 10.8.0.226 181794 username pourshad 181794 mac 181794 bytes_out 0 181794 bytes_in 0 181794 station_ip 5.119.121.30 181794 port 219 181794 unique_id port 181800 username meysam 181800 mac 181800 bytes_out 1997043 181800 bytes_in 23974866 181800 station_ip 188.159.252.168 181800 port 231 181800 unique_id port 181800 remote_ip 10.8.0.158 181808 username kalantary6037 181808 mac 181808 bytes_out 25407 181808 bytes_in 28044 181808 station_ip 83.123.13.133 181808 port 233 181808 unique_id port 181808 remote_ip 10.8.0.50 181812 username saeed9658 181812 mac 181812 bytes_out 3810481 181812 bytes_in 34985336 181812 station_ip 5.119.47.37 181812 port 196 181812 unique_id port 181812 remote_ip 10.8.0.162 181813 username esmaeilkazemi 181813 mac 181813 bytes_out 0 181813 bytes_in 0 181813 station_ip 83.123.89.57 181813 port 233 181813 unique_id port 181813 remote_ip 10.8.0.26 181815 username esmaeilkazemi 181815 mac 181815 bytes_out 0 181815 bytes_in 0 181815 station_ip 83.123.89.57 181815 port 236 181815 unique_id port 181815 remote_ip 10.8.0.26 181817 username esmaeilkazemi 181817 mac 181817 bytes_out 0 181817 bytes_in 0 181817 station_ip 83.123.89.57 181817 port 196 181817 unique_id port 181817 remote_ip 10.8.0.26 181819 username barzegar 181819 mac 181819 bytes_out 613434 181819 bytes_in 424592 181819 station_ip 5.119.69.200 181819 port 212 181819 unique_id port 181819 remote_ip 10.8.0.10 181821 username esmaeilkazemi 181821 mac 181821 bytes_out 9468 181821 bytes_in 44131 181821 station_ip 83.123.89.57 181821 port 236 181821 unique_id port 181821 remote_ip 10.8.0.26 181822 username barzegar 181822 mac 181822 bytes_out 0 181822 bytes_in 0 181822 station_ip 5.119.69.200 181822 port 207 181822 unique_id port 181822 remote_ip 10.8.0.10 181826 username saeed9658 181826 mac 181790 bytes_in 661237 181790 station_ip 83.123.101.149 181790 port 207 181790 unique_id port 181790 remote_ip 10.8.0.50 181792 username kalantary6037 181792 mac 181792 bytes_out 10139 181792 bytes_in 10269 181792 station_ip 83.123.101.149 181792 port 224 181792 unique_id port 181792 remote_ip 10.8.0.50 181797 username esmaeilkazemi 181797 mac 181797 bytes_out 535333 181797 bytes_in 1861518 181797 station_ip 83.123.89.57 181797 port 227 181797 unique_id port 181797 remote_ip 10.8.0.26 181798 username pourshad 181798 kill_reason Another user logged on this global unique id 181798 mac 181798 bytes_out 0 181798 bytes_in 0 181798 station_ip 5.119.217.167 181798 port 207 181798 unique_id port 181798 remote_ip 10.8.0.42 181799 username soleymani5056 181799 mac 181799 bytes_out 109913 181799 bytes_in 424376 181799 station_ip 5.120.20.195 181799 port 229 181799 unique_id port 181799 remote_ip 10.8.0.226 181806 username mehdizare 181806 mac 181806 bytes_out 8713 181806 bytes_in 16275 181806 station_ip 83.123.52.141 181806 port 231 181806 unique_id port 181806 remote_ip 10.8.0.210 181807 username barzegar 181807 mac 181807 bytes_out 6313 181807 bytes_in 8059 181807 station_ip 5.119.69.200 181807 port 212 181807 unique_id port 181807 remote_ip 10.8.0.10 181811 username farhad3 181811 kill_reason Another user logged on this global unique id 181811 mac 181811 bytes_out 0 181811 bytes_in 0 181811 station_ip 5.119.143.154 181811 port 224 181811 unique_id port 181811 remote_ip 10.8.0.222 181816 username pourshad 181816 mac 181816 bytes_out 0 181816 bytes_in 0 181816 station_ip 5.119.217.167 181816 port 207 181816 unique_id port 181823 username barzegar 181823 mac 181823 bytes_out 0 181823 bytes_in 0 181823 station_ip 5.119.69.200 181823 port 207 181823 unique_id port 181823 remote_ip 10.8.0.10 181829 username mostafa_es78 181829 mac 181829 bytes_out 17727 181829 bytes_in 21344 181829 station_ip 83.122.110.254 181829 port 227 181829 unique_id port 181829 remote_ip 10.8.0.34 181830 username barzegar 181830 mac 181830 bytes_out 0 181830 bytes_in 0 181830 station_ip 5.119.69.200 181830 port 233 181830 unique_id port 181830 remote_ip 10.8.0.10 181834 username yaghobi 181834 mac 181834 bytes_out 1047267 181834 bytes_in 9651749 181834 station_ip 83.123.88.187 181834 port 196 181834 unique_id port 181834 remote_ip 10.8.0.138 181837 username kalantary6037 181837 mac 181837 bytes_out 93876 181837 bytes_in 770700 181837 station_ip 83.123.48.145 181837 port 207 181837 unique_id port 181837 remote_ip 10.8.0.50 181839 username saeed9658 181839 mac 181839 bytes_out 0 181839 bytes_in 0 181839 station_ip 5.119.47.37 181839 port 207 181839 unique_id port 181839 remote_ip 10.8.0.162 181850 username rashidi4690 181850 kill_reason Another user logged on this global unique id 181850 mac 181850 bytes_out 0 181850 bytes_in 0 181850 station_ip 5.119.94.163 181850 port 196 181850 unique_id port 181853 username zahra1101 181853 mac 181853 bytes_out 6108 181853 bytes_in 6332 181853 station_ip 5.119.122.242 181853 port 212 181853 unique_id port 181853 remote_ip 10.8.0.190 181854 username saeed9658 181854 kill_reason Another user logged on this global unique id 181854 mac 181854 bytes_out 0 181854 bytes_in 0 181854 station_ip 5.119.47.37 181854 port 212 181854 unique_id port 181860 username zahra1101 181860 kill_reason Another user logged on this global unique id 181860 mac 181860 bytes_out 0 181860 bytes_in 0 181860 station_ip 5.119.122.242 181860 port 212 181860 unique_id port 181805 bytes_in 37070656 181805 station_ip 5.119.122.242 181805 port 223 181805 unique_id port 181805 remote_ip 10.8.0.190 181809 username sabaghnezhad 181809 mac 181809 bytes_out 56734 181809 bytes_in 40815 181809 station_ip 83.123.114.182 181809 port 229 181809 unique_id port 181809 remote_ip 10.8.0.66 181810 username soleymani5056 181810 mac 181810 bytes_out 150509 181810 bytes_in 1355641 181810 station_ip 5.119.34.20 181810 port 223 181810 unique_id port 181810 remote_ip 10.8.0.226 181814 username saeed9658 181814 mac 181814 bytes_out 0 181814 bytes_in 0 181814 station_ip 5.119.47.37 181814 port 196 181814 unique_id port 181814 remote_ip 10.8.0.162 181818 username motamedi9772 181818 mac 181818 bytes_out 109048 181818 bytes_in 411180 181818 station_ip 83.123.60.171 181818 port 223 181818 unique_id port 181818 remote_ip 10.8.0.154 181820 username pourshad 181820 mac 181820 bytes_out 2552 181820 bytes_in 3897 181820 station_ip 5.119.217.167 181820 port 207 181820 unique_id port 181820 remote_ip 10.8.0.42 181824 username pourshad 181824 mac 181824 bytes_out 25922258 181824 bytes_in 4319564 181824 station_ip 5.119.217.167 181824 port 196 181824 unique_id port 181824 remote_ip 10.8.0.42 181825 username esmaeilkazemi 181825 mac 181825 bytes_out 25164 181825 bytes_in 64423 181825 station_ip 83.123.89.57 181825 port 196 181825 unique_id port 181825 remote_ip 10.8.0.26 181832 username pourshad 181832 mac 181832 bytes_out 5681230 181832 bytes_in 2871840 181832 station_ip 5.119.217.167 181832 port 223 181832 unique_id port 181832 remote_ip 10.8.0.42 181836 username mostafa_es78 181836 mac 181836 bytes_out 26738 181836 bytes_in 23349 181836 station_ip 83.122.110.254 181836 port 212 181836 unique_id port 181836 remote_ip 10.8.0.34 181843 username kalantary6037 181843 mac 181843 bytes_out 0 181843 bytes_in 0 181843 station_ip 83.123.48.145 181843 port 212 181843 unique_id port 181843 remote_ip 10.8.0.50 181846 username zahra1101 181846 mac 181846 bytes_out 28822351 181846 bytes_in 40964004 181846 station_ip 5.119.122.242 181846 port 235 181846 unique_id port 181846 remote_ip 10.8.0.190 181848 username mostafa_es78 181848 mac 181848 bytes_out 10264 181848 bytes_in 15376 181848 station_ip 83.122.110.254 181848 port 196 181848 unique_id port 181848 remote_ip 10.8.0.34 181851 username rashidi4690 181851 kill_reason Another user logged on this global unique id 181851 mac 181851 bytes_out 0 181851 bytes_in 0 181851 station_ip 5.119.94.163 181851 port 196 181851 unique_id port 181856 username rashidi4690 181856 mac 181856 bytes_out 6427481 181856 bytes_in 19989693 181856 station_ip 5.119.94.163 181856 port 231 181856 unique_id port 181856 remote_ip 10.8.0.242 181859 username barzegar 181859 kill_reason Another user logged on this global unique id 181859 mac 181859 bytes_out 0 181859 bytes_in 0 181859 station_ip 5.119.69.200 181859 port 212 181859 unique_id port 181862 username barzegar 181862 kill_reason Another user logged on this global unique id 181862 mac 181862 bytes_out 0 181862 bytes_in 0 181862 station_ip 5.119.69.200 181862 port 212 181862 unique_id port 181866 username mehdizare 181866 mac 181866 bytes_out 378620 181866 bytes_in 206980 181866 station_ip 83.123.52.141 181866 port 234 181866 unique_id port 181866 remote_ip 10.8.0.210 181870 username farhad3 181870 mac 181870 bytes_out 0 181870 bytes_in 0 181870 station_ip 5.119.143.154 181870 port 207 181870 unique_id port 181870 remote_ip 10.8.0.222 181874 username fezealinaghi 181826 bytes_out 275542 181826 bytes_in 1316514 181826 station_ip 5.119.47.37 181826 port 233 181826 unique_id port 181826 remote_ip 10.8.0.162 181827 username saeed9658 181827 mac 181827 bytes_out 0 181827 bytes_in 0 181827 station_ip 5.119.47.37 181827 port 196 181827 unique_id port 181827 remote_ip 10.8.0.162 181828 username barzegar 181828 mac 181828 bytes_out 0 181828 bytes_in 0 181828 station_ip 5.119.69.200 181828 port 207 181828 unique_id port 181828 remote_ip 10.8.0.10 181831 username meysam 181831 mac 181831 bytes_out 258003 181831 bytes_in 2593831 181831 station_ip 188.159.252.168 181831 port 207 181831 unique_id port 181831 remote_ip 10.8.0.158 181833 username farhad3 181833 kill_reason Another user logged on this global unique id 181833 mac 181833 bytes_out 0 181833 bytes_in 0 181833 station_ip 5.119.143.154 181833 port 224 181833 unique_id port 181835 username yaghobi 181835 mac 181835 bytes_out 0 181835 bytes_in 0 181835 station_ip 83.123.88.187 181835 port 223 181835 unique_id port 181835 remote_ip 10.8.0.138 181838 username saeed9658 181838 mac 181838 bytes_out 130128 181838 bytes_in 595198 181838 station_ip 5.119.47.37 181838 port 227 181838 unique_id port 181838 remote_ip 10.8.0.162 181840 username saeed9658 181840 mac 181840 bytes_out 0 181840 bytes_in 0 181840 station_ip 5.119.47.37 181840 port 207 181840 unique_id port 181840 remote_ip 10.8.0.162 181841 username kalantary6037 181841 mac 181841 bytes_out 12983 181841 bytes_in 14353 181841 station_ip 83.123.48.145 181841 port 207 181841 unique_id port 181841 remote_ip 10.8.0.50 181842 username soleymani5056 181842 mac 181842 bytes_out 5351 181842 bytes_in 5552 181842 station_ip 5.120.65.90 181842 port 207 181842 unique_id port 181842 remote_ip 10.8.0.226 181844 username barzegar 181844 mac 181844 bytes_out 0 181844 bytes_in 0 181844 station_ip 5.119.69.200 181844 port 223 181844 unique_id port 181844 remote_ip 10.8.0.10 181845 username shadkam 181845 mac 181845 bytes_out 3317925 181845 bytes_in 34248346 181845 station_ip 83.123.46.208 181845 port 229 181845 unique_id port 181845 remote_ip 10.8.0.74 181847 username barzegar 181847 mac 181847 bytes_out 3730 181847 bytes_in 5366 181847 station_ip 5.119.69.200 181847 port 207 181847 unique_id port 181847 remote_ip 10.8.0.10 181849 username barzegar 181849 kill_reason Another user logged on this global unique id 181849 mac 181849 bytes_out 0 181849 bytes_in 0 181849 station_ip 5.119.69.200 181849 port 196 181849 unique_id port 181852 username barzegar 181852 kill_reason Another user logged on this global unique id 181852 mac 181852 bytes_out 0 181852 bytes_in 0 181852 station_ip 5.119.69.200 181852 port 196 181852 unique_id port 181855 username barzegar 181855 kill_reason Another user logged on this global unique id 181855 mac 181855 bytes_out 0 181855 bytes_in 0 181855 station_ip 5.119.69.200 181855 port 212 181855 unique_id port 181857 username saeed9658 181857 kill_reason Another user logged on this global unique id 181857 mac 181857 bytes_out 0 181857 bytes_in 0 181857 station_ip 5.119.47.37 181857 port 212 181857 unique_id port 181858 username barzegar 181858 kill_reason Another user logged on this global unique id 181858 mac 181858 bytes_out 0 181858 bytes_in 0 181858 station_ip 5.119.69.200 181858 port 212 181858 unique_id port 181861 username zahra1101 181861 kill_reason Another user logged on this global unique id 181861 mac 181861 bytes_out 0 181861 bytes_in 0 181861 station_ip 5.119.122.242 181861 port 212 181861 unique_id port 181863 username barzegar 181863 mac 181863 bytes_out 0 181863 bytes_in 0 181863 station_ip 5.119.69.200 181863 port 212 181863 unique_id port 181865 username rashidi4690 181865 mac 181865 bytes_out 2364 181865 bytes_in 11149 181865 station_ip 5.119.94.163 181865 port 212 181865 unique_id port 181865 remote_ip 10.8.0.242 181868 username farhad3 181868 mac 181868 bytes_out 0 181868 bytes_in 0 181868 station_ip 5.119.143.154 181868 port 224 181868 unique_id port 181869 username farhad3 181869 mac 181869 bytes_out 0 181869 bytes_in 0 181869 station_ip 5.119.143.154 181869 port 207 181869 unique_id port 181869 remote_ip 10.8.0.222 181871 username aminvpn 181871 mac 181871 bytes_out 0 181871 bytes_in 0 181871 station_ip 5.233.69.220 181871 port 224 181871 unique_id port 181871 remote_ip 10.8.0.58 181876 username khalili2 181876 kill_reason Another user logged on this global unique id 181876 mac 181876 bytes_out 0 181876 bytes_in 0 181876 station_ip 5.120.81.181 181876 port 226 181876 unique_id port 181881 username motamedi9772 181881 mac 181881 bytes_out 0 181881 bytes_in 0 181881 station_ip 83.123.94.199 181881 port 233 181881 unique_id port 181881 remote_ip 10.8.0.154 181887 username saeed9658 181887 mac 181887 bytes_out 1752163 181887 bytes_in 16565234 181887 station_ip 5.119.47.37 181887 port 229 181887 unique_id port 181887 remote_ip 10.8.0.162 181889 username farhad3 181889 mac 181889 bytes_out 35800 181889 bytes_in 217551 181889 station_ip 5.119.143.154 181889 port 223 181889 unique_id port 181889 remote_ip 10.8.0.222 181897 username sedighe 181897 mac 181897 bytes_out 14919 181897 bytes_in 29359 181897 station_ip 83.123.7.43 181897 port 231 181897 unique_id port 181897 remote_ip 10.8.0.46 181898 username aminvpn 181898 mac 181898 bytes_out 0 181898 bytes_in 0 181898 station_ip 5.233.69.220 181898 port 231 181898 unique_id port 181898 remote_ip 10.8.0.58 181900 username sabaghnezhad 181900 mac 181900 bytes_out 103449 181900 bytes_in 79047 181900 station_ip 83.123.30.115 181900 port 196 181900 unique_id port 181900 remote_ip 10.8.0.66 181901 username jafari 181901 mac 181901 bytes_out 1589753 181901 bytes_in 11476336 181901 station_ip 92.114.74.76 181901 port 233 181901 unique_id port 181901 remote_ip 10.8.0.86 181904 username aminvpn 181904 mac 181904 bytes_out 0 181904 bytes_in 0 181904 station_ip 5.233.69.220 181904 port 196 181904 unique_id port 181904 remote_ip 10.8.0.58 181905 username farhad3 181905 mac 181905 bytes_out 560044 181905 bytes_in 2892695 181905 station_ip 5.119.143.154 181905 port 231 181905 unique_id port 181905 remote_ip 10.8.0.222 181908 username pourshad 181908 kill_reason Another user logged on this global unique id 181908 mac 181908 bytes_out 0 181908 bytes_in 0 181908 station_ip 5.119.217.167 181908 port 236 181908 unique_id port 181913 username aminvpn 181913 mac 181913 bytes_out 0 181913 bytes_in 0 181913 station_ip 5.233.69.220 181913 port 231 181913 unique_id port 181913 remote_ip 10.8.0.58 181914 username charkhandaz3496 181914 kill_reason Another user logged on this global unique id 181914 mac 181914 bytes_out 0 181914 bytes_in 0 181914 station_ip 5.119.199.167 181914 port 207 181914 unique_id port 181914 remote_ip 10.8.0.90 181918 username pourshad 181918 kill_reason Another user logged on this global unique id 181918 mac 181918 bytes_out 0 181918 bytes_in 0 181918 station_ip 5.119.217.167 181918 port 236 181918 unique_id port 181919 username jafari 181864 username fezealinaghi 181864 kill_reason Another user logged on this global unique id 181864 mac 181864 bytes_out 0 181864 bytes_in 0 181864 station_ip 83.123.111.230 181864 port 219 181864 unique_id port 181864 remote_ip 10.8.0.202 181867 username mostafa_es78 181867 mac 181867 bytes_out 9728 181867 bytes_in 12532 181867 station_ip 83.122.110.254 181867 port 207 181867 unique_id port 181867 remote_ip 10.8.0.34 181872 username rashidi4690 181872 mac 181872 bytes_out 9130 181872 bytes_in 10779 181872 station_ip 5.119.94.163 181872 port 207 181872 unique_id port 181872 remote_ip 10.8.0.242 181873 username charkhandaz3496 181873 mac 181873 bytes_out 1267070 181873 bytes_in 6552405 181873 station_ip 5.120.186.26 181873 port 196 181873 unique_id port 181873 remote_ip 10.8.0.90 181877 username soleymani5056 181877 mac 181877 bytes_out 11436 181877 bytes_in 15067 181877 station_ip 5.120.157.116 181877 port 227 181877 unique_id port 181877 remote_ip 10.8.0.226 181878 username rahim 181878 mac 181878 bytes_out 488075 181878 bytes_in 4677422 181878 station_ip 5.120.18.152 181878 port 224 181878 unique_id port 181878 remote_ip 10.8.0.134 181880 username aminvpn 181880 mac 181880 bytes_out 0 181880 bytes_in 0 181880 station_ip 5.233.69.220 181880 port 227 181880 unique_id port 181880 remote_ip 10.8.0.58 181885 username farhad3 181885 mac 181885 bytes_out 0 181885 bytes_in 0 181885 station_ip 5.119.143.154 181885 port 223 181885 unique_id port 181885 remote_ip 10.8.0.222 181886 username shadkam 181886 mac 181886 bytes_out 1212176 181886 bytes_in 12960443 181886 station_ip 83.123.54.139 181886 port 224 181886 unique_id port 181886 remote_ip 10.8.0.74 181888 username saeed9658 181888 mac 181888 bytes_out 0 181888 bytes_in 0 181888 station_ip 5.119.47.37 181888 port 224 181888 unique_id port 181888 remote_ip 10.8.0.162 181893 username yaghobi 181893 mac 181893 bytes_out 1106609 181893 bytes_in 4531015 181893 station_ip 83.123.82.2 181893 port 231 181893 unique_id port 181893 remote_ip 10.8.0.138 181895 username aminvpn 181895 kill_reason Maximum check online fails reached 181895 mac 181895 bytes_out 0 181895 bytes_in 0 181895 station_ip 5.233.69.220 181895 port 224 181895 unique_id port 181902 username pourshad 181902 kill_reason Another user logged on this global unique id 181902 mac 181902 bytes_out 0 181902 bytes_in 0 181902 station_ip 5.119.217.167 181902 port 236 181902 unique_id port 181902 remote_ip 10.8.0.42 181906 username nilufarrajaei 181906 mac 181906 bytes_out 1092524 181906 bytes_in 1715893 181906 station_ip 83.123.76.164 181906 port 227 181906 unique_id port 181906 remote_ip 10.8.0.194 181909 username mohammadjavad 181909 mac 181909 bytes_out 11422 181909 bytes_in 20285 181909 station_ip 83.123.59.215 181909 port 196 181909 unique_id port 181909 remote_ip 10.8.0.110 181912 username pourshad 181912 kill_reason Another user logged on this global unique id 181912 mac 181912 bytes_out 0 181912 bytes_in 0 181912 station_ip 5.119.217.167 181912 port 236 181912 unique_id port 181915 username hamid.e 181915 unique_id port 181915 terminate_cause User-Request 181915 bytes_out 5448874 181915 bytes_in 44135107 181915 station_ip 37.27.7.100 181915 port 15728871 181915 nas_port_type Virtual 181915 remote_ip 5.5.5.193 181920 username mohammadjavad 181920 mac 181920 bytes_out 870973 181920 bytes_in 10738155 181920 station_ip 83.123.59.215 181920 port 223 181920 unique_id port 181920 remote_ip 10.8.0.110 181925 username farhad3 181925 mac 181874 kill_reason Another user logged on this global unique id 181874 mac 181874 bytes_out 0 181874 bytes_in 0 181874 station_ip 83.123.111.230 181874 port 219 181874 unique_id port 181875 username yaghobi 181875 mac 181875 bytes_out 140421 181875 bytes_in 236170 181875 station_ip 83.123.82.2 181875 port 196 181875 unique_id port 181875 remote_ip 10.8.0.138 181879 username farhad3 181879 mac 181879 bytes_out 1493451 181879 bytes_in 11227117 181879 station_ip 5.119.143.154 181879 port 223 181879 unique_id port 181879 remote_ip 10.8.0.222 181882 username farhad3 181882 mac 181882 bytes_out 814170 181882 bytes_in 2539410 181882 station_ip 5.119.143.154 181882 port 223 181882 unique_id port 181882 remote_ip 10.8.0.222 181883 username pourshad 181883 kill_reason Another user logged on this global unique id 181883 mac 181883 bytes_out 0 181883 bytes_in 0 181883 station_ip 5.119.217.167 181883 port 227 181883 unique_id port 181883 remote_ip 10.8.0.42 181884 username farhad3 181884 mac 181884 bytes_out 64233 181884 bytes_in 83075 181884 station_ip 5.119.143.154 181884 port 223 181884 unique_id port 181884 remote_ip 10.8.0.222 181890 username shadkam 181890 mac 181890 bytes_out 0 181890 bytes_in 0 181890 station_ip 83.123.54.139 181890 port 224 181890 unique_id port 181890 remote_ip 10.8.0.74 181891 username aminvpn 181891 mac 181891 bytes_out 0 181891 bytes_in 0 181891 station_ip 5.233.69.220 181891 port 224 181891 unique_id port 181891 remote_ip 10.8.0.58 181892 username pourshad 181892 kill_reason Another user logged on this global unique id 181892 mac 181892 bytes_out 0 181892 bytes_in 0 181892 station_ip 5.119.217.167 181892 port 227 181892 unique_id port 181894 username pourshad 181894 mac 181894 bytes_out 0 181894 bytes_in 0 181894 station_ip 5.119.217.167 181894 port 227 181894 unique_id port 181896 username sedighe 181896 mac 181896 bytes_out 186857 181896 bytes_in 564689 181896 station_ip 83.123.7.43 181896 port 233 181896 unique_id port 181896 remote_ip 10.8.0.46 181899 username shadkam 181899 mac 181899 bytes_out 67049 181899 bytes_in 836565 181899 station_ip 83.123.54.139 181899 port 234 181899 unique_id port 181899 remote_ip 10.8.0.74 181903 username alihosseini1 181903 mac 181903 bytes_out 359236 181903 bytes_in 1330857 181903 station_ip 5.120.126.28 181903 port 223 181903 unique_id port 181903 remote_ip 10.8.0.234 181907 username shadkam 181907 mac 181907 bytes_out 416102 181907 bytes_in 3899553 181907 station_ip 83.123.61.71 181907 port 196 181907 unique_id port 181907 remote_ip 10.8.0.74 181910 username saeeddamghani 181910 unique_id port 181910 terminate_cause User-Request 181910 bytes_out 181412 181910 bytes_in 2999425 181910 station_ip 83.123.66.211 181910 port 15728873 181910 nas_port_type Virtual 181910 remote_ip 5.5.5.187 181911 username fezealinaghi 181911 kill_reason Another user logged on this global unique id 181911 mac 181911 bytes_out 0 181911 bytes_in 0 181911 station_ip 83.123.111.230 181911 port 219 181911 unique_id port 181916 username godarzi 181916 kill_reason Another user logged on this global unique id 181916 mac 181916 bytes_out 0 181916 bytes_in 0 181916 station_ip 5.202.5.255 181916 port 210 181916 unique_id port 181916 remote_ip 10.8.0.38 181917 username sedighe 181917 mac 181917 bytes_out 267702 181917 bytes_in 465431 181917 station_ip 83.123.114.167 181917 port 237 181917 unique_id port 181917 remote_ip 10.8.0.46 181922 username sekonji0496 181922 mac 181922 bytes_out 197527 181922 bytes_in 2137424 181919 mac 181919 bytes_out 2821176 181919 bytes_in 27998310 181919 station_ip 92.114.74.76 181919 port 227 181919 unique_id port 181919 remote_ip 10.8.0.86 181921 username yaghobi 181921 mac 181921 bytes_out 1539086 181921 bytes_in 4655624 181921 station_ip 83.123.82.2 181921 port 235 181921 unique_id port 181921 remote_ip 10.8.0.138 181923 username sedighe 181923 mac 181923 bytes_out 21039 181923 bytes_in 23360 181923 station_ip 83.123.22.210 181923 port 238 181923 unique_id port 181923 remote_ip 10.8.0.46 181924 username aminvpn 181924 mac 181924 bytes_out 0 181924 bytes_in 0 181924 station_ip 5.233.69.220 181924 port 227 181924 unique_id port 181924 remote_ip 10.8.0.58 181927 username charkhandaz3496 181927 mac 181927 bytes_out 0 181927 bytes_in 0 181927 station_ip 5.119.199.167 181927 port 207 181927 unique_id port 181929 username mohammadjavad 181929 mac 181929 bytes_out 0 181929 bytes_in 0 181929 station_ip 83.123.59.215 181929 port 207 181929 unique_id port 181929 remote_ip 10.8.0.110 181931 username charkhandaz3496 181931 mac 181931 bytes_out 111325 181931 bytes_in 738332 181931 station_ip 5.119.199.167 181931 port 231 181931 unique_id port 181931 remote_ip 10.8.0.90 181935 username aminvpn 181935 mac 181935 bytes_out 0 181935 bytes_in 0 181935 station_ip 5.233.69.220 181935 port 231 181935 unique_id port 181935 remote_ip 10.8.0.58 181939 username yaghobi 181939 mac 181939 bytes_out 187771 181939 bytes_in 280666 181939 station_ip 83.123.82.2 181939 port 227 181939 unique_id port 181939 remote_ip 10.8.0.138 181944 username mohammadjavad 181944 mac 181944 bytes_out 0 181944 bytes_in 0 181944 station_ip 83.123.59.215 181944 port 223 181944 unique_id port 181944 remote_ip 10.8.0.110 181946 username aminvpn 181946 mac 181946 bytes_out 0 181946 bytes_in 0 181946 station_ip 5.233.69.220 181946 port 223 181946 unique_id port 181946 remote_ip 10.8.0.58 181949 username mosi 181949 kill_reason Another user logged on this global unique id 181949 mac 181949 bytes_out 0 181949 bytes_in 0 181949 station_ip 2.183.128.22 181949 port 196 181949 unique_id port 181949 remote_ip 10.8.0.142 181950 username malekpoir 181950 mac 181950 bytes_out 2539988 181950 bytes_in 17199171 181950 station_ip 5.119.34.114 181950 port 232 181950 unique_id port 181950 remote_ip 10.8.0.18 181951 username mehdizare 181951 mac 181951 bytes_out 8508 181951 bytes_in 11291 181951 station_ip 83.123.52.141 181951 port 207 181951 unique_id port 181951 remote_ip 10.8.0.210 181952 username mehdizare 181952 mac 181952 bytes_out 2811 181952 bytes_in 7369 181952 station_ip 83.123.4.209 181952 port 223 181952 unique_id port 181952 remote_ip 10.8.0.210 181953 username pourshad 181953 mac 181953 bytes_out 0 181953 bytes_in 0 181953 station_ip 5.119.217.167 181953 port 236 181953 unique_id port 181955 username saeed9658 181955 kill_reason Another user logged on this global unique id 181955 mac 181955 bytes_out 0 181955 bytes_in 0 181955 station_ip 5.119.47.37 181955 port 229 181955 unique_id port 181956 username mehdizare 181956 mac 181956 bytes_out 25336 181956 bytes_in 37709 181956 station_ip 83.123.4.209 181956 port 207 181956 unique_id port 181956 remote_ip 10.8.0.210 181957 username yaghobi 181957 mac 181957 bytes_out 198050 181957 bytes_in 398075 181957 station_ip 83.123.77.218 181957 port 223 181957 unique_id port 181957 remote_ip 10.8.0.138 181963 username shaghayegh2701 181963 mac 181963 bytes_out 0 181922 station_ip 83.123.17.34 181922 port 231 181922 unique_id port 181922 remote_ip 10.8.0.62 181930 username pourshad 181930 kill_reason Another user logged on this global unique id 181930 mac 181930 bytes_out 0 181930 bytes_in 0 181930 station_ip 5.119.217.167 181930 port 236 181930 unique_id port 181933 username sabaghnezhad 181933 mac 181933 bytes_out 1783436 181933 bytes_in 28477925 181933 station_ip 83.123.30.115 181933 port 234 181933 unique_id port 181933 remote_ip 10.8.0.66 181936 username charkhandaz3496 181936 mac 181936 bytes_out 647829 181936 bytes_in 3639174 181936 station_ip 5.119.199.167 181936 port 207 181936 unique_id port 181936 remote_ip 10.8.0.90 181938 username charkhandaz3496 181938 mac 181938 bytes_out 0 181938 bytes_in 0 181938 station_ip 5.119.199.167 181938 port 207 181938 unique_id port 181938 remote_ip 10.8.0.90 181941 username soleymani5056 181941 mac 181941 bytes_out 168393 181941 bytes_in 570846 181941 station_ip 5.120.94.183 181941 port 223 181941 unique_id port 181941 remote_ip 10.8.0.226 181943 username sabaghnezhad 181943 mac 181943 bytes_out 109174 181943 bytes_in 127704 181943 station_ip 83.123.30.115 181943 port 235 181943 unique_id port 181943 remote_ip 10.8.0.66 181948 username fezealinaghi 181948 mac 181948 bytes_out 1068963 181948 bytes_in 6961770 181948 station_ip 83.123.111.230 181948 port 207 181948 unique_id port 181948 remote_ip 10.8.0.202 181954 username meysam 181954 mac 181954 bytes_out 1712766 181954 bytes_in 23761899 181954 station_ip 188.159.252.168 181954 port 231 181954 unique_id port 181954 remote_ip 10.8.0.158 181958 username aminvpn 181958 mac 181958 bytes_out 0 181958 bytes_in 0 181958 station_ip 5.233.69.220 181958 port 234 181958 unique_id port 181958 remote_ip 10.8.0.58 181960 username aminvpn 181960 mac 181960 bytes_out 60588 181960 bytes_in 213138 181960 station_ip 5.233.69.220 181960 port 234 181960 unique_id port 181960 remote_ip 10.8.0.58 181961 username fezealinaghi 181961 mac 181961 bytes_out 859327 181961 bytes_in 7650657 181961 station_ip 83.123.111.230 181961 port 227 181961 unique_id port 181961 remote_ip 10.8.0.202 181965 username shaghayegh2701 181965 mac 181965 bytes_out 0 181965 bytes_in 0 181965 station_ip 83.123.122.73 181965 port 236 181965 unique_id port 181965 remote_ip 10.8.0.146 181966 username shaghayegh2701 181966 mac 181966 bytes_out 0 181966 bytes_in 0 181966 station_ip 46.225.214.179 181966 port 227 181966 unique_id port 181966 remote_ip 10.8.0.146 181967 username shaghayegh2701 181967 mac 181967 bytes_out 0 181967 bytes_in 0 181967 station_ip 46.225.214.179 181967 port 236 181967 unique_id port 181967 remote_ip 10.8.0.146 181970 username khaleghi2406 181970 mac 181970 bytes_out 405913 181970 bytes_in 3697653 181970 station_ip 83.123.44.127 181970 port 234 181970 unique_id port 181970 remote_ip 10.8.0.250 181973 username shaghayegh2701 181973 mac 181973 bytes_out 1624 181973 bytes_in 4217 181973 station_ip 46.225.214.179 181973 port 227 181973 unique_id port 181973 remote_ip 10.8.0.146 181974 username aminvpn 181974 mac 181974 bytes_out 0 181974 bytes_in 0 181974 station_ip 5.233.69.220 181974 port 227 181974 unique_id port 181974 remote_ip 10.8.0.58 181979 username aminvpn 181979 unique_id port 181979 terminate_cause Lost-Carrier 181979 bytes_out 129917 181979 bytes_in 444899 181979 station_ip 5.120.5.39 181979 port 15728877 181979 nas_port_type Virtual 181979 remote_ip 5.5.5.191 181981 username fezealinaghi 181925 bytes_out 314520 181925 bytes_in 1857934 181925 station_ip 5.119.143.154 181925 port 237 181925 unique_id port 181925 remote_ip 10.8.0.222 181926 username saeed9658 181926 kill_reason Another user logged on this global unique id 181926 mac 181926 bytes_out 0 181926 bytes_in 0 181926 station_ip 5.119.47.37 181926 port 229 181926 unique_id port 181926 remote_ip 10.8.0.162 181928 username mohammadjavad 181928 mac 181928 bytes_out 0 181928 bytes_in 0 181928 station_ip 83.123.59.215 181928 port 227 181928 unique_id port 181928 remote_ip 10.8.0.110 181932 username yaghobi 181932 mac 181932 bytes_out 547134 181932 bytes_in 1084775 181932 station_ip 83.123.82.2 181932 port 223 181932 unique_id port 181932 remote_ip 10.8.0.138 181934 username shadkam 181934 mac 181934 bytes_out 2414 181934 bytes_in 4907 181934 station_ip 83.123.3.166 181934 port 231 181934 unique_id port 181934 remote_ip 10.8.0.74 181937 username fezealinaghi 181937 mac 181937 bytes_out 0 181937 bytes_in 0 181937 station_ip 83.123.111.230 181937 port 219 181937 unique_id port 181940 username meysam 181940 mac 181940 bytes_out 2790004 181940 bytes_in 36923429 181940 station_ip 188.159.252.168 181940 port 233 181940 unique_id port 181940 remote_ip 10.8.0.158 181942 username yaghobi 181942 kill_reason Maximum check online fails reached 181942 mac 181942 bytes_out 3957 181942 bytes_in 3937 181942 station_ip 83.123.82.2 181942 port 227 181942 unique_id port 181942 remote_ip 10.8.0.138 181945 username godarzi 181945 kill_reason Another user logged on this global unique id 181945 mac 181945 bytes_out 0 181945 bytes_in 0 181945 station_ip 5.202.5.255 181945 port 210 181945 unique_id port 181947 username mehdizare 181947 mac 181947 bytes_out 117392 181947 bytes_in 159745 181947 station_ip 83.123.52.141 181947 port 212 181947 unique_id port 181947 remote_ip 10.8.0.210 181959 username khalili2 181959 mac 181959 bytes_out 0 181959 bytes_in 0 181959 station_ip 5.120.81.181 181959 port 226 181959 unique_id port 181962 username khaleghi2406 181962 mac 181962 bytes_out 0 181962 bytes_in 0 181962 station_ip 83.123.44.127 181962 port 227 181962 unique_id port 181962 remote_ip 10.8.0.250 181964 username shaghayegh2701 181964 mac 181964 bytes_out 0 181964 bytes_in 0 181964 station_ip 83.123.122.73 181964 port 227 181964 unique_id port 181964 remote_ip 10.8.0.146 181968 username shaghayegh2701 181968 mac 181968 bytes_out 0 181968 bytes_in 0 181968 station_ip 46.225.214.179 181968 port 227 181968 unique_id port 181968 remote_ip 10.8.0.146 181969 username shaghayegh2701 181969 mac 181969 bytes_out 0 181969 bytes_in 0 181969 station_ip 46.225.214.179 181969 port 236 181969 unique_id port 181969 remote_ip 10.8.0.146 181971 username mansour 181971 mac 181971 bytes_out 2481827 181971 bytes_in 32105968 181971 station_ip 5.202.97.228 181971 port 223 181971 unique_id port 181971 remote_ip 10.8.0.206 181975 username aminvpn 181975 mac 181975 bytes_out 0 181975 bytes_in 0 181975 station_ip 5.233.69.220 181975 port 227 181975 unique_id port 181975 remote_ip 10.8.0.58 181977 username aminvpn 181977 mac 181977 bytes_out 0 181977 bytes_in 0 181977 station_ip 5.233.69.220 181977 port 234 181977 unique_id port 181977 remote_ip 10.8.0.58 181984 username shadkam 181984 mac 181984 bytes_out 7204055 181984 bytes_in 7096204 181984 station_ip 83.123.3.166 181984 port 219 181984 unique_id port 181984 remote_ip 10.8.0.74 181987 username shadkam 181987 mac 181963 bytes_in 0 181963 station_ip 83.123.122.73 181963 port 234 181963 unique_id port 181963 remote_ip 10.8.0.146 181972 username shaghayegh2701 181972 mac 181972 bytes_out 1624 181972 bytes_in 3779 181972 station_ip 46.225.214.179 181972 port 227 181972 unique_id port 181972 remote_ip 10.8.0.146 181976 username aminvpn 181976 mac 181976 bytes_out 0 181976 bytes_in 0 181976 station_ip 5.233.69.220 181976 port 227 181976 unique_id port 181976 remote_ip 10.8.0.58 181978 username shaghayegh2701 181978 mac 181978 bytes_out 1624 181978 bytes_in 4111 181978 station_ip 46.225.214.179 181978 port 227 181978 unique_id port 181978 remote_ip 10.8.0.146 181980 username khaleghi2406 181980 mac 181980 bytes_out 81066 181980 bytes_in 121085 181980 station_ip 83.123.44.127 181980 port 223 181980 unique_id port 181980 remote_ip 10.8.0.250 181985 username shaghayegh2701 181985 mac 181985 bytes_out 0 181985 bytes_in 0 181985 station_ip 46.225.214.179 181985 port 234 181985 unique_id port 181985 remote_ip 10.8.0.146 181994 username houshang 181994 mac 181994 bytes_out 142456 181994 bytes_in 2028595 181994 station_ip 5.119.243.193 181994 port 234 181994 unique_id port 181994 remote_ip 10.8.0.82 182001 username mahdiyehalizadeh 182001 mac 182001 bytes_out 342628 182001 bytes_in 397496 182001 station_ip 5.119.94.51 182001 port 235 182001 unique_id port 182001 remote_ip 10.8.0.114 182003 username soleymani5056 182003 mac 182003 bytes_out 303847 182003 bytes_in 161660 182003 station_ip 5.120.103.63 182003 port 238 182003 unique_id port 182003 remote_ip 10.8.0.226 182007 username yaghobi 182007 mac 182007 bytes_out 365680 182007 bytes_in 644791 182007 station_ip 83.123.77.218 182007 port 239 182007 unique_id port 182007 remote_ip 10.8.0.138 182009 username godarzi 182009 kill_reason Another user logged on this global unique id 182009 mac 182009 bytes_out 0 182009 bytes_in 0 182009 station_ip 5.202.5.255 182009 port 210 182009 unique_id port 182010 username aminvpn 182010 mac 182010 bytes_out 0 182010 bytes_in 0 182010 station_ip 5.233.69.220 182010 port 233 182010 unique_id port 182010 remote_ip 10.8.0.58 182011 username shadkam 182011 mac 182011 bytes_out 0 182011 bytes_in 0 182011 station_ip 83.123.3.166 182011 port 233 182011 unique_id port 182011 remote_ip 10.8.0.74 182012 username shadkam 182012 mac 182012 bytes_out 0 182012 bytes_in 0 182012 station_ip 83.123.3.166 182012 port 233 182012 unique_id port 182012 remote_ip 10.8.0.74 182017 username soleymani5056 182017 mac 182017 bytes_out 18991 182017 bytes_in 14647 182017 station_ip 5.120.67.50 182017 port 232 182017 unique_id port 182017 remote_ip 10.8.0.226 182019 username jafari 182019 kill_reason Another user logged on this global unique id 182019 mac 182019 bytes_out 0 182019 bytes_in 0 182019 station_ip 92.114.74.76 182019 port 219 182019 unique_id port 182019 remote_ip 10.8.0.86 182025 username motamedi9772 182025 mac 182025 bytes_out 0 182025 bytes_in 0 182025 station_ip 83.123.6.251 182025 port 223 182025 unique_id port 182025 remote_ip 10.8.0.154 182029 username naeimeh 182029 mac 182029 bytes_out 254288 182029 bytes_in 451248 182029 station_ip 83.123.115.70 182029 port 237 182029 unique_id port 182029 remote_ip 10.8.0.78 182032 username sobhan 182032 unique_id port 182032 terminate_cause Lost-Carrier 182032 bytes_out 1448026 182032 bytes_in 1560939 182032 station_ip 5.119.104.163 182032 port 15728872 182032 nas_port_type Virtual 182032 remote_ip 5.5.5.189 181981 kill_reason Another user logged on this global unique id 181981 mac 181981 bytes_out 0 181981 bytes_in 0 181981 station_ip 83.123.111.230 181981 port 226 181981 unique_id port 181981 remote_ip 10.8.0.202 181982 username shaghayegh2701 181982 mac 181982 bytes_out 0 181982 bytes_in 0 181982 station_ip 46.225.214.179 181982 port 227 181982 unique_id port 181982 remote_ip 10.8.0.146 181983 username shaghayegh2701 181983 mac 181983 bytes_out 0 181983 bytes_in 0 181983 station_ip 46.225.214.179 181983 port 223 181983 unique_id port 181983 remote_ip 10.8.0.146 181986 username shadkam 181986 mac 181986 bytes_out 0 181986 bytes_in 0 181986 station_ip 83.123.3.166 181986 port 223 181986 unique_id port 181986 remote_ip 10.8.0.74 181989 username shadkam 181989 mac 181989 bytes_out 0 181989 bytes_in 0 181989 station_ip 83.123.3.166 181989 port 219 181989 unique_id port 181989 remote_ip 10.8.0.74 181990 username yaghobi 181990 mac 181990 bytes_out 716665 181990 bytes_in 1315335 181990 station_ip 83.123.77.218 181990 port 207 181990 unique_id port 181990 remote_ip 10.8.0.138 181992 username shadkam 181992 mac 181992 bytes_out 0 181992 bytes_in 0 181992 station_ip 83.123.3.166 181992 port 236 181992 unique_id port 181992 remote_ip 10.8.0.74 181998 username yaghobi 181998 mac 181998 bytes_out 195981 181998 bytes_in 343080 181998 station_ip 83.123.77.218 181998 port 219 181998 unique_id port 181998 remote_ip 10.8.0.138 182008 username farhad3 182008 mac 182008 bytes_out 0 182008 bytes_in 0 182008 station_ip 5.119.143.154 182008 port 237 182008 unique_id port 182014 username yaghobi 182014 mac 182014 bytes_out 202550 182014 bytes_in 315331 182014 station_ip 83.123.77.218 182014 port 232 182014 unique_id port 182014 remote_ip 10.8.0.138 182015 username soleymani5056 182015 mac 182015 bytes_out 390348 182015 bytes_in 1941551 182015 station_ip 5.120.36.191 182015 port 229 182015 unique_id port 182015 remote_ip 10.8.0.226 182018 username shadkam 182018 mac 182018 bytes_out 0 182018 bytes_in 0 182018 station_ip 83.123.3.166 182018 port 229 182018 unique_id port 182018 remote_ip 10.8.0.74 182022 username rashidi4690 182022 mac 182022 bytes_out 1736135 182022 bytes_in 7353139 182022 station_ip 5.119.94.163 182022 port 231 182022 unique_id port 182022 remote_ip 10.8.0.242 182024 username sedighe 182024 mac 182024 bytes_out 171700 182024 bytes_in 464377 182024 station_ip 83.123.22.210 182024 port 223 182024 unique_id port 182024 remote_ip 10.8.0.46 182027 username aminvpn 182027 mac 182027 bytes_out 0 182027 bytes_in 0 182027 station_ip 5.233.69.220 182027 port 239 182027 unique_id port 182027 remote_ip 10.8.0.58 182030 username mohammadabadi 182030 mac 182030 bytes_out 1797 182030 bytes_in 3898 182030 station_ip 83.123.116.166 182030 port 231 182030 unique_id port 182030 remote_ip 10.8.0.174 182031 username shadkam 182031 mac 182031 bytes_out 2324308 182031 bytes_in 24351437 182031 station_ip 83.123.78.11 182031 port 229 182031 unique_id port 182031 remote_ip 10.8.0.74 182035 username shadkam 182035 mac 182035 bytes_out 2098 182035 bytes_in 5420 182035 station_ip 83.123.108.197 182035 port 210 182035 unique_id port 182035 remote_ip 10.8.0.74 182038 username yaghobi 182038 mac 182038 bytes_out 1153693 182038 bytes_in 1839899 182038 station_ip 83.123.77.218 182038 port 235 182038 unique_id port 182038 remote_ip 10.8.0.138 182042 username yaghobi 182042 mac 181987 bytes_out 0 181987 bytes_in 0 181987 station_ip 83.123.3.166 181987 port 223 181987 unique_id port 181987 remote_ip 10.8.0.74 181988 username shaghayegh2701 181988 mac 181988 bytes_out 1742 181988 bytes_in 3823 181988 station_ip 46.225.214.179 181988 port 219 181988 unique_id port 181988 remote_ip 10.8.0.146 181991 username saeed9658 181991 mac 181991 bytes_out 0 181991 bytes_in 0 181991 station_ip 5.119.47.37 181991 port 229 181991 unique_id port 181993 username shadkam 181993 kill_reason Maximum check online fails reached 181993 mac 181993 bytes_out 0 181993 bytes_in 0 181993 station_ip 83.123.3.166 181993 port 207 181993 unique_id port 181995 username farhad3 181995 kill_reason Another user logged on this global unique id 181995 mac 181995 bytes_out 0 181995 bytes_in 0 181995 station_ip 5.119.143.154 181995 port 237 181995 unique_id port 181995 remote_ip 10.8.0.222 181996 username aminvpn 181996 mac 181996 bytes_out 0 181996 bytes_in 0 181996 station_ip 5.233.69.220 181996 port 238 181996 unique_id port 181996 remote_ip 10.8.0.58 181997 username farhad3 181997 kill_reason Another user logged on this global unique id 181997 mac 181997 bytes_out 0 181997 bytes_in 0 181997 station_ip 5.119.143.154 181997 port 237 181997 unique_id port 181999 username mehdizare 181999 mac 181999 bytes_out 88879 181999 bytes_in 55687 181999 station_ip 83.123.4.209 181999 port 232 181999 unique_id port 181999 remote_ip 10.8.0.210 182000 username houshang 182000 mac 182000 bytes_out 3056259 182000 bytes_in 43948916 182000 station_ip 5.119.243.193 182000 port 229 182000 unique_id port 182000 remote_ip 10.8.0.82 182002 username farhad3 182002 kill_reason Another user logged on this global unique id 182002 mac 182002 bytes_out 0 182002 bytes_in 0 182002 station_ip 5.119.143.154 182002 port 237 182002 unique_id port 182004 username shadkam 182004 mac 182004 bytes_out 43555 182004 bytes_in 109134 182004 station_ip 83.123.3.166 182004 port 232 182004 unique_id port 182004 remote_ip 10.8.0.74 182005 username mosi 182005 mac 182005 bytes_out 0 182005 bytes_in 0 182005 station_ip 2.183.128.22 182005 port 196 182005 unique_id port 182006 username sabaghnezhad 182006 mac 182006 bytes_out 118434 182006 bytes_in 87054 182006 station_ip 83.123.30.115 182006 port 233 182006 unique_id port 182006 remote_ip 10.8.0.66 182013 username shadkam 182013 mac 182013 bytes_out 0 182013 bytes_in 0 182013 station_ip 83.123.3.166 182013 port 233 182013 unique_id port 182013 remote_ip 10.8.0.74 182016 username houshang 182016 mac 182016 bytes_out 30872 182016 bytes_in 49931 182016 station_ip 5.119.243.193 182016 port 233 182016 unique_id port 182016 remote_ip 10.8.0.82 182020 username aminvpn 182020 mac 182020 bytes_out 0 182020 bytes_in 0 182020 station_ip 5.233.69.220 182020 port 237 182020 unique_id port 182020 remote_ip 10.8.0.58 182021 username naeimeh 182021 mac 182021 bytes_out 500468 182021 bytes_in 4295102 182021 station_ip 83.123.109.117 182021 port 233 182021 unique_id port 182021 remote_ip 10.8.0.78 182023 username shadkam 182023 mac 182023 bytes_out 1436442 182023 bytes_in 12596132 182023 station_ip 83.123.3.166 182023 port 229 182023 unique_id port 182023 remote_ip 10.8.0.74 182026 username aminvpn 182026 mac 182026 bytes_out 171695 182026 bytes_in 1095079 182026 station_ip 5.120.62.121 182026 port 231 182026 unique_id port 182026 remote_ip 10.8.0.58 182028 username aminvpn 182028 mac 182028 bytes_out 118902 182028 bytes_in 539318 182028 station_ip 5.120.62.121 182028 port 231 182028 unique_id port 182028 remote_ip 10.8.0.58 182033 username godarzi 182033 mac 182033 bytes_out 0 182033 bytes_in 0 182033 station_ip 5.202.5.255 182033 port 210 182033 unique_id port 182034 username mohammadabadi 182034 mac 182034 bytes_out 27157 182034 bytes_in 136623 182034 station_ip 83.123.116.166 182034 port 231 182034 unique_id port 182034 remote_ip 10.8.0.174 182036 username mohammadabadi 182036 mac 182036 bytes_out 4553 182036 bytes_in 9650 182036 station_ip 83.123.116.166 182036 port 229 182036 unique_id port 182036 remote_ip 10.8.0.174 182043 username kordestani 182043 mac 182043 bytes_out 2833078 182043 bytes_in 11391862 182043 station_ip 151.235.116.193 182043 port 233 182043 unique_id port 182043 remote_ip 10.8.0.130 182046 username rajaei 182046 mac 182046 bytes_out 2753092 182046 bytes_in 30153565 182046 station_ip 89.34.60.219 182046 port 234 182046 unique_id port 182046 remote_ip 10.8.0.218 182049 username aminvpn 182049 mac 182049 bytes_out 0 182049 bytes_in 0 182049 station_ip 5.233.69.220 182049 port 235 182049 unique_id port 182049 remote_ip 10.8.0.58 182063 username ahmadi1 182063 mac 182063 bytes_out 399735 182063 bytes_in 2797148 182063 station_ip 83.123.41.213 182063 port 239 182063 unique_id port 182063 remote_ip 10.8.0.94 182066 username milan 182066 kill_reason Another user logged on this global unique id 182066 mac 182066 bytes_out 0 182066 bytes_in 0 182066 station_ip 5.119.97.240 182066 port 233 182066 unique_id port 182066 remote_ip 10.8.0.182 182071 username aminvpn 182071 mac 182071 bytes_out 0 182071 bytes_in 0 182071 station_ip 5.233.69.220 182071 port 238 182071 unique_id port 182071 remote_ip 10.8.0.58 182074 username aminvpn 182074 unique_id port 182074 terminate_cause User-Request 182074 bytes_out 13552326 182074 bytes_in 418738427 182074 station_ip 31.57.122.99 182074 port 15728880 182074 nas_port_type Virtual 182074 remote_ip 5.5.5.185 182076 username hadibarzegar 182076 kill_reason Another user logged on this global unique id 182076 mac 182076 bytes_out 0 182076 bytes_in 0 182076 station_ip 83.123.116.89 182076 port 234 182076 unique_id port 182076 remote_ip 10.8.0.178 182078 username mohammadjavad 182078 mac 182078 bytes_out 264186 182078 bytes_in 2923779 182078 station_ip 83.123.12.231 182078 port 238 182078 unique_id port 182078 remote_ip 10.8.0.110 182082 username yaghobi 182082 mac 182082 bytes_out 277962 182082 bytes_in 433446 182082 station_ip 83.123.119.183 182082 port 219 182082 unique_id port 182082 remote_ip 10.8.0.138 182083 username aminvpn 182083 mac 182083 bytes_out 0 182083 bytes_in 0 182083 station_ip 5.233.69.220 182083 port 241 182083 unique_id port 182083 remote_ip 10.8.0.58 182085 username shadkam 182085 mac 182085 bytes_out 974248 182085 bytes_in 10727063 182085 station_ip 83.123.90.233 182085 port 223 182085 unique_id port 182085 remote_ip 10.8.0.74 182087 username yaghobi 182087 mac 182087 bytes_out 135125 182087 bytes_in 210453 182087 station_ip 83.123.65.184 182087 port 238 182087 unique_id port 182087 remote_ip 10.8.0.138 182089 username fezealinaghi 182089 mac 182089 bytes_out 0 182089 bytes_in 0 182089 station_ip 83.123.111.230 182089 port 226 182089 unique_id port 182095 username godarzi 182095 mac 182095 bytes_out 30715 182095 bytes_in 60769 182095 station_ip 5.120.117.84 182095 port 223 182095 unique_id port 182095 remote_ip 10.8.0.38 182097 username aminvpn 182037 username jafari 182037 kill_reason Another user logged on this global unique id 182037 mac 182037 bytes_out 0 182037 bytes_in 0 182037 station_ip 92.114.74.76 182037 port 219 182037 unique_id port 182039 username aminvpn 182039 mac 182039 bytes_out 0 182039 bytes_in 0 182039 station_ip 5.233.69.220 182039 port 235 182039 unique_id port 182039 remote_ip 10.8.0.58 182040 username morteza 182040 kill_reason Relative expiration date has reached 182040 mac 182040 bytes_out 0 182040 bytes_in 0 182040 station_ip 83.123.65.54 182040 port 235 182040 unique_id port 182041 username shadkam 182041 mac 182041 bytes_out 33091 182041 bytes_in 41850 182041 station_ip 83.123.34.229 182041 port 210 182041 unique_id port 182041 remote_ip 10.8.0.74 182045 username yaghobi 182045 mac 182045 bytes_out 26631 182045 bytes_in 81225 182045 station_ip 83.123.77.218 182045 port 210 182045 unique_id port 182045 remote_ip 10.8.0.138 182047 username sedighe 182047 mac 182047 bytes_out 143344 182047 bytes_in 320801 182047 station_ip 83.123.22.210 182047 port 223 182047 unique_id port 182047 remote_ip 10.8.0.46 182048 username shadkam 182048 mac 182048 bytes_out 3317 182048 bytes_in 5610 182048 station_ip 83.123.40.136 182048 port 231 182048 unique_id port 182048 remote_ip 10.8.0.74 182054 username jafari 182054 kill_reason Another user logged on this global unique id 182054 mac 182054 bytes_out 0 182054 bytes_in 0 182054 station_ip 92.114.74.76 182054 port 219 182054 unique_id port 182058 username mohammadjavad 182058 mac 182058 bytes_out 5666572 182058 bytes_in 28136531 182058 station_ip 83.123.71.91 182058 port 234 182058 unique_id port 182058 remote_ip 10.8.0.110 182059 username yaghobi 182059 mac 182059 bytes_out 0 182059 bytes_in 0 182059 station_ip 83.123.114.75 182059 port 240 182059 unique_id port 182059 remote_ip 10.8.0.138 182060 username malekpoir 182060 mac 182060 bytes_out 2452878 182060 bytes_in 17324069 182060 station_ip 5.119.34.114 182060 port 212 182060 unique_id port 182060 remote_ip 10.8.0.18 182061 username yaghobi 182061 mac 182061 bytes_out 1722 182061 bytes_in 3871 182061 station_ip 83.123.114.75 182061 port 210 182061 unique_id port 182061 remote_ip 10.8.0.138 182065 username mohammadjavad 182065 mac 182065 bytes_out 2170 182065 bytes_in 6164 182065 station_ip 83.123.71.91 182065 port 219 182065 unique_id port 182065 remote_ip 10.8.0.110 182067 username fezealinaghi 182067 kill_reason Another user logged on this global unique id 182067 mac 182067 bytes_out 0 182067 bytes_in 0 182067 station_ip 83.123.111.230 182067 port 226 182067 unique_id port 182069 username hosseine 182069 kill_reason Another user logged on this global unique id 182069 mac 182069 bytes_out 0 182069 bytes_in 0 182069 station_ip 83.123.92.231 182069 port 232 182069 unique_id port 182069 remote_ip 10.8.0.54 182072 username godarzi 182072 mac 182072 bytes_out 575486 182072 bytes_in 5851292 182072 station_ip 5.120.117.84 182072 port 210 182072 unique_id port 182072 remote_ip 10.8.0.38 182075 username mehdizare 182075 mac 182075 bytes_out 45225 182075 bytes_in 116835 182075 station_ip 83.123.4.209 182075 port 223 182075 unique_id port 182075 remote_ip 10.8.0.210 182077 username godarzi 182077 mac 182077 bytes_out 246847 182077 bytes_in 2191915 182077 station_ip 5.120.117.84 182077 port 210 182077 unique_id port 182077 remote_ip 10.8.0.38 182079 username tahmorsi 182079 kill_reason Another user logged on this global unique id 182079 mac 182079 bytes_out 0 182079 bytes_in 0 182042 bytes_out 14133 182042 bytes_in 15880 182042 station_ip 83.123.77.218 182042 port 231 182042 unique_id port 182042 remote_ip 10.8.0.138 182044 username mehdizare 182044 mac 182044 bytes_out 1207957 182044 bytes_in 19759361 182044 station_ip 83.123.4.209 182044 port 240 182044 unique_id port 182044 remote_ip 10.8.0.210 182050 username sedighe 182050 mac 182050 bytes_out 46318 182050 bytes_in 57402 182050 station_ip 83.123.78.92 182050 port 210 182050 unique_id port 182050 remote_ip 10.8.0.46 182051 username yaghobi 182051 mac 182051 bytes_out 183922 182051 bytes_in 379833 182051 station_ip 83.123.100.223 182051 port 233 182051 unique_id port 182051 remote_ip 10.8.0.138 182052 username sedighe 182052 mac 182052 bytes_out 17674 182052 bytes_in 24764 182052 station_ip 83.123.78.92 182052 port 210 182052 unique_id port 182052 remote_ip 10.8.0.46 182053 username yaghobi 182053 mac 182053 bytes_out 10646 182053 bytes_in 36712 182053 station_ip 83.123.100.223 182053 port 235 182053 unique_id port 182053 remote_ip 10.8.0.138 182055 username shadkam 182055 mac 182055 bytes_out 2310 182055 bytes_in 4815 182055 station_ip 83.123.25.0 182055 port 235 182055 unique_id port 182055 remote_ip 10.8.0.74 182056 username kalantary6037 182056 mac 182056 bytes_out 539075 182056 bytes_in 3851385 182056 station_ip 83.123.50.249 182056 port 237 182056 unique_id port 182056 remote_ip 10.8.0.50 182057 username yaghobi 182057 mac 182057 bytes_out 168740 182057 bytes_in 310861 182057 station_ip 83.123.114.75 182057 port 210 182057 unique_id port 182057 remote_ip 10.8.0.138 182062 username aminvpn 182062 mac 182062 bytes_out 2869 182062 bytes_in 5336 182062 station_ip 5.233.69.220 182062 port 241 182062 unique_id port 182062 remote_ip 10.8.0.58 182064 username jafari 182064 mac 182064 bytes_out 0 182064 bytes_in 0 182064 station_ip 92.114.74.76 182064 port 219 182064 unique_id port 182068 username rashidi4690 182068 mac 182068 bytes_out 3291412 182068 bytes_in 22036643 182068 station_ip 5.119.94.163 182068 port 238 182068 unique_id port 182068 remote_ip 10.8.0.242 182070 username yaghobi 182070 mac 182070 bytes_out 144692 182070 bytes_in 236447 182070 station_ip 83.123.114.75 182070 port 242 182070 unique_id port 182070 remote_ip 10.8.0.138 182073 username kalantary6037 182073 mac 182073 bytes_out 573593 182073 bytes_in 2612379 182073 station_ip 83.123.50.249 182073 port 237 182073 unique_id port 182073 remote_ip 10.8.0.50 182081 username kalantary6037 182081 mac 182081 bytes_out 256719 182081 bytes_in 889844 182081 station_ip 83.123.50.249 182081 port 241 182081 unique_id port 182081 remote_ip 10.8.0.50 182086 username saeed9658 182086 mac 182086 bytes_out 76729 182086 bytes_in 182691 182086 station_ip 5.120.34.92 182086 port 219 182086 unique_id port 182086 remote_ip 10.8.0.162 182088 username kordestani 182088 mac 182088 bytes_out 1681894 182088 bytes_in 19022814 182088 station_ip 151.235.97.10 182088 port 237 182088 unique_id port 182088 remote_ip 10.8.0.130 182090 username godarzi 182090 mac 182090 bytes_out 303518 182090 bytes_in 2472620 182090 station_ip 5.120.117.84 182090 port 223 182090 unique_id port 182090 remote_ip 10.8.0.38 182092 username fezealinaghi 182092 mac 182092 bytes_out 13115 182092 bytes_in 10763 182092 station_ip 83.123.111.230 182092 port 223 182092 unique_id port 182092 remote_ip 10.8.0.202 182094 username ayobi 182094 kill_reason Another user logged on this global unique id 182094 mac 182079 station_ip 86.57.113.12 182079 port 212 182079 unique_id port 182079 remote_ip 10.8.0.6 182080 username mehdizare 182080 mac 182080 bytes_out 7025 182080 bytes_in 9854 182080 station_ip 83.123.4.209 182080 port 223 182080 unique_id port 182080 remote_ip 10.8.0.210 182084 username farhad3 182084 mac 182084 bytes_out 2583353 182084 bytes_in 17786059 182084 station_ip 5.119.143.154 182084 port 235 182084 unique_id port 182084 remote_ip 10.8.0.222 182091 username jafari 182091 kill_reason Another user logged on this global unique id 182091 mac 182091 bytes_out 0 182091 bytes_in 0 182091 station_ip 92.114.74.76 182091 port 239 182091 unique_id port 182091 remote_ip 10.8.0.86 182093 username yaghobi 182093 mac 182093 bytes_out 129571 182093 bytes_in 213034 182093 station_ip 83.123.7.53 182093 port 219 182093 unique_id port 182093 remote_ip 10.8.0.138 182098 username yaghobi 182098 mac 182098 bytes_out 113450 182098 bytes_in 202044 182098 station_ip 83.123.35.131 182098 port 235 182098 unique_id port 182098 remote_ip 10.8.0.138 182101 username shadkam 182101 mac 182101 bytes_out 242507 182101 bytes_in 2523562 182101 station_ip 83.123.34.177 182101 port 223 182101 unique_id port 182101 remote_ip 10.8.0.74 182103 username saeed9658 182103 mac 182103 bytes_out 1657063 182103 bytes_in 15123080 182103 station_ip 5.120.34.92 182103 port 226 182103 unique_id port 182103 remote_ip 10.8.0.162 182105 username mostafa_es78 182105 mac 182105 bytes_out 1670690 182105 bytes_in 12880713 182105 station_ip 83.122.110.254 182105 port 234 182105 unique_id port 182105 remote_ip 10.8.0.34 182108 username aminvpn 182108 mac 182108 bytes_out 1515653 182108 bytes_in 28248091 182108 station_ip 83.123.0.194 182108 port 212 182108 unique_id port 182108 remote_ip 10.8.0.58 182109 username aminvpn 182109 mac 182109 bytes_out 0 182109 bytes_in 0 182109 station_ip 5.233.69.220 182109 port 219 182109 unique_id port 182109 remote_ip 10.8.0.58 182110 username fezealinaghi 182110 mac 182110 bytes_out 559529 182110 bytes_in 3815677 182110 station_ip 83.123.111.230 182110 port 223 182110 unique_id port 182110 remote_ip 10.8.0.202 182121 username motamedi9772 182121 mac 182121 bytes_out 300626 182121 bytes_in 2175415 182121 station_ip 83.123.17.175 182121 port 237 182121 unique_id port 182121 remote_ip 10.8.0.154 182123 username tahmorsi 182123 kill_reason Another user logged on this global unique id 182123 mac 182123 bytes_out 0 182123 bytes_in 0 182123 station_ip 86.57.113.12 182123 port 226 182123 unique_id port 182123 remote_ip 10.8.0.6 182127 username yaghobi 182127 mac 182127 bytes_out 1691 182127 bytes_in 3792 182127 station_ip 83.123.14.69 182127 port 238 182127 unique_id port 182127 remote_ip 10.8.0.138 182130 username tahmorsi 182130 mac 182130 bytes_out 0 182130 bytes_in 0 182130 station_ip 86.57.113.12 182130 port 226 182130 unique_id port 182134 username aminvpn 182134 mac 182134 bytes_out 0 182134 bytes_in 0 182134 station_ip 83.123.0.194 182134 port 234 182134 unique_id port 182134 remote_ip 10.8.0.58 182135 username aminvpn 182135 mac 182135 bytes_out 0 182135 bytes_in 0 182135 station_ip 5.120.77.224 182135 port 238 182135 unique_id port 182135 remote_ip 10.8.0.58 182137 username aminvpn 182137 mac 182137 bytes_out 0 182137 bytes_in 0 182137 station_ip 83.123.0.194 182137 port 234 182137 unique_id port 182137 remote_ip 10.8.0.58 182138 username aminvpn 182138 mac 182138 bytes_out 0 182094 bytes_out 0 182094 bytes_in 0 182094 station_ip 37.27.33.156 182094 port 231 182094 unique_id port 182094 remote_ip 10.8.0.186 182096 username aminvpn 182096 mac 182096 bytes_out 0 182096 bytes_in 0 182096 station_ip 5.233.69.220 182096 port 219 182096 unique_id port 182096 remote_ip 10.8.0.58 182099 username hadibarzegar 182099 mac 182099 bytes_out 0 182099 bytes_in 0 182099 station_ip 83.123.116.89 182099 port 234 182099 unique_id port 182100 username fezealinaghi 182100 mac 182100 bytes_out 136202 182100 bytes_in 1343684 182100 station_ip 83.123.111.230 182100 port 235 182100 unique_id port 182100 remote_ip 10.8.0.202 182112 username yaghobi 182112 mac 182112 bytes_out 256617 182112 bytes_in 384064 182112 station_ip 83.123.17.170 182112 port 234 182112 unique_id port 182112 remote_ip 10.8.0.138 182119 username yaghobi 182119 mac 182119 bytes_out 142049 182119 bytes_in 246973 182119 station_ip 83.123.46.183 182119 port 238 182119 unique_id port 182119 remote_ip 10.8.0.138 182120 username aminvpn 182120 mac 182120 bytes_out 495739 182120 bytes_in 5565343 182120 station_ip 83.123.0.194 182120 port 234 182120 unique_id port 182120 remote_ip 10.8.0.58 182124 username yaghobi 182124 mac 182124 bytes_out 259810 182124 bytes_in 387907 182124 station_ip 83.123.14.69 182124 port 241 182124 unique_id port 182124 remote_ip 10.8.0.138 182126 username aminvpn 182126 mac 182126 bytes_out 0 182126 bytes_in 0 182126 station_ip 5.233.69.220 182126 port 241 182126 unique_id port 182126 remote_ip 10.8.0.58 182128 username aminvpn 182128 mac 182128 bytes_out 0 182128 bytes_in 0 182128 station_ip 83.123.0.194 182128 port 234 182128 unique_id port 182128 remote_ip 10.8.0.58 182129 username aminvpn 182129 mac 182129 bytes_out 0 182129 bytes_in 0 182129 station_ip 5.120.77.224 182129 port 238 182129 unique_id port 182129 remote_ip 10.8.0.58 182131 username yaghobi 182131 mac 182131 bytes_out 6122 182131 bytes_in 8405 182131 station_ip 83.123.15.23 182131 port 241 182131 unique_id port 182131 remote_ip 10.8.0.138 182143 username yaghobi 182143 mac 182143 bytes_out 124656 182143 bytes_in 202434 182143 station_ip 83.123.8.48 182143 port 226 182143 unique_id port 182143 remote_ip 10.8.0.138 182145 username jafari 182145 kill_reason Another user logged on this global unique id 182145 mac 182145 bytes_out 0 182145 bytes_in 0 182145 station_ip 92.114.74.76 182145 port 239 182145 unique_id port 182147 username aminvpn 182147 mac 182147 bytes_out 127675 182147 bytes_in 484437 182147 station_ip 83.123.0.194 182147 port 219 182147 unique_id port 182147 remote_ip 10.8.0.58 182149 username kalantary6037 182149 mac 182149 bytes_out 272602 182149 bytes_in 2040084 182149 station_ip 83.123.93.136 182149 port 223 182149 unique_id port 182149 remote_ip 10.8.0.50 182152 username aminvpn 182152 mac 182152 bytes_out 0 182152 bytes_in 0 182152 station_ip 5.233.69.220 182152 port 223 182152 unique_id port 182152 remote_ip 10.8.0.58 182153 username saeed9658 182153 mac 182153 bytes_out 0 182153 bytes_in 0 182153 station_ip 5.120.34.92 182153 port 223 182153 unique_id port 182153 remote_ip 10.8.0.162 182155 username aminvpn 182155 mac 182155 bytes_out 0 182155 bytes_in 0 182155 station_ip 5.233.69.220 182155 port 223 182155 unique_id port 182155 remote_ip 10.8.0.58 182161 username ayobi 182161 kill_reason Another user logged on this global unique id 182161 mac 182161 bytes_out 0 182097 unique_id port 182097 terminate_cause User-Request 182097 bytes_out 737283 182097 bytes_in 4799953 182097 station_ip 5.160.113.187 182097 port 15728881 182097 nas_port_type Virtual 182097 remote_ip 5.5.5.205 182102 username yaghobi 182102 mac 182102 bytes_out 93528 182102 bytes_in 141900 182102 station_ip 83.123.7.107 182102 port 219 182102 unique_id port 182102 remote_ip 10.8.0.138 182104 username tahmorsi 182104 mac 182104 bytes_out 0 182104 bytes_in 0 182104 station_ip 86.57.113.12 182104 port 212 182104 unique_id port 182106 username aminvpn 182106 mac 182106 bytes_out 0 182106 bytes_in 0 182106 station_ip 5.233.69.220 182106 port 212 182106 unique_id port 182106 remote_ip 10.8.0.58 182107 username yaghobi 182107 mac 182107 bytes_out 93166 182107 bytes_in 131003 182107 station_ip 83.123.7.107 182107 port 219 182107 unique_id port 182107 remote_ip 10.8.0.138 182111 username jafari 182111 kill_reason Another user logged on this global unique id 182111 mac 182111 bytes_out 0 182111 bytes_in 0 182111 station_ip 92.114.74.76 182111 port 239 182111 unique_id port 182113 username mehdizare 182113 mac 182113 bytes_out 221558 182113 bytes_in 372961 182113 station_ip 83.123.4.209 182113 port 210 182113 unique_id port 182113 remote_ip 10.8.0.210 182114 username aminvpn 182114 mac 182114 bytes_out 412765 182114 bytes_in 3478145 182114 station_ip 83.123.0.194 182114 port 212 182114 unique_id port 182114 remote_ip 10.8.0.58 182115 username aminvpn 182115 mac 182115 bytes_out 0 182115 bytes_in 0 182115 station_ip 5.233.69.220 182115 port 234 182115 unique_id port 182115 remote_ip 10.8.0.58 182116 username yaghobi 182116 mac 182116 bytes_out 164943 182116 bytes_in 153019 182116 station_ip 83.123.17.170 182116 port 219 182116 unique_id port 182116 remote_ip 10.8.0.138 182117 username aminvpn 182117 unique_id port 182117 terminate_cause User-Request 182117 bytes_out 92722 182117 bytes_in 46310 182117 station_ip 5.160.113.187 182117 port 15728883 182117 nas_port_type Virtual 182117 remote_ip 5.5.5.205 182118 username yaghobi 182118 mac 182118 bytes_out 250601 182118 bytes_in 1351022 182118 station_ip 83.123.85.78 182118 port 237 182118 unique_id port 182118 remote_ip 10.8.0.138 182122 username aminvpn 182122 mac 182122 bytes_out 0 182122 bytes_in 0 182122 station_ip 5.233.69.220 182122 port 238 182122 unique_id port 182122 remote_ip 10.8.0.58 182125 username aminvpn 182125 mac 182125 bytes_out 29082 182125 bytes_in 38475 182125 station_ip 83.123.0.194 182125 port 234 182125 unique_id port 182125 remote_ip 10.8.0.58 182132 username aminvpn 182132 mac 182132 bytes_out 0 182132 bytes_in 0 182132 station_ip 83.123.0.194 182132 port 234 182132 unique_id port 182132 remote_ip 10.8.0.58 182133 username aminvpn 182133 mac 182133 bytes_out 0 182133 bytes_in 0 182133 station_ip 5.120.77.224 182133 port 238 182133 unique_id port 182133 remote_ip 10.8.0.58 182136 username sedighe 182136 mac 182136 bytes_out 635430 182136 bytes_in 1119051 182136 station_ip 83.123.92.19 182136 port 235 182136 unique_id port 182136 remote_ip 10.8.0.46 182139 username saeed9658 182139 mac 182139 bytes_out 1923937 182139 bytes_in 13091569 182139 station_ip 5.120.34.92 182139 port 219 182139 unique_id port 182139 remote_ip 10.8.0.162 182140 username kalantary6037 182140 mac 182140 bytes_out 1481420 182140 bytes_in 6025636 182140 station_ip 83.123.93.136 182140 port 237 182140 unique_id port 182140 remote_ip 10.8.0.50 182138 bytes_in 0 182138 station_ip 5.120.77.224 182138 port 235 182138 unique_id port 182138 remote_ip 10.8.0.58 182142 username mehdizare 182142 kill_reason Another user logged on this global unique id 182142 mac 182142 bytes_out 0 182142 bytes_in 0 182142 station_ip 83.123.4.209 182142 port 235 182142 unique_id port 182146 username shadkam 182146 mac 182146 bytes_out 573867 182146 bytes_in 5122552 182146 station_ip 83.123.104.137 182146 port 234 182146 unique_id port 182146 remote_ip 10.8.0.74 182148 username aminvpn 182148 mac 182148 bytes_out 0 182148 bytes_in 0 182148 station_ip 5.233.69.220 182148 port 226 182148 unique_id port 182148 remote_ip 10.8.0.58 182151 username saeed9658 182151 mac 182151 bytes_out 85530 182151 bytes_in 284303 182151 station_ip 5.120.34.92 182151 port 226 182151 unique_id port 182151 remote_ip 10.8.0.162 182156 username aminvpn 182156 mac 182156 bytes_out 0 182156 bytes_in 0 182156 station_ip 5.233.69.220 182156 port 223 182156 unique_id port 182156 remote_ip 10.8.0.58 182158 username aminvpn 182158 mac 182158 bytes_out 50748 182158 bytes_in 116487 182158 station_ip 83.123.0.194 182158 port 226 182158 unique_id port 182158 remote_ip 10.8.0.58 182160 username alihosseini1 182160 mac 182160 bytes_out 383294 182160 bytes_in 1021677 182160 station_ip 5.119.39.249 182160 port 212 182160 unique_id port 182160 remote_ip 10.8.0.234 182167 username arash 182167 mac 182167 bytes_out 226681 182167 bytes_in 894226 182167 station_ip 37.27.35.240 182167 port 219 182167 unique_id port 182167 remote_ip 10.8.0.70 182173 username godarzi 182173 kill_reason Another user logged on this global unique id 182173 mac 182173 bytes_out 0 182173 bytes_in 0 182173 station_ip 5.202.5.255 182173 port 210 182173 unique_id port 182173 remote_ip 10.8.0.38 182181 username motamedi9772 182181 mac 182181 bytes_out 0 182181 bytes_in 0 182181 station_ip 83.123.17.175 182181 port 235 182181 unique_id port 182181 remote_ip 10.8.0.154 182183 username kalantary6037 182183 mac 182183 bytes_out 366706 182183 bytes_in 2018003 182183 station_ip 83.123.1.144 182183 port 226 182183 unique_id port 182183 remote_ip 10.8.0.50 182184 username mosi 182184 mac 182184 bytes_out 7716231 182184 bytes_in 33214710 182184 station_ip 2.183.128.22 182184 port 196 182184 unique_id port 182184 remote_ip 10.8.0.142 182188 username ayobi 182188 kill_reason Another user logged on this global unique id 182188 mac 182188 bytes_out 0 182188 bytes_in 0 182188 station_ip 37.27.33.156 182188 port 231 182188 unique_id port 182192 username mostafa_es78 182192 mac 182192 bytes_out 688534 182192 bytes_in 6049692 182192 station_ip 83.122.110.254 182192 port 212 182192 unique_id port 182192 remote_ip 10.8.0.34 182195 username saeed9658 182195 mac 182195 bytes_out 0 182195 bytes_in 0 182195 station_ip 5.120.34.92 182195 port 226 182195 unique_id port 182195 remote_ip 10.8.0.162 182199 username sabaghnezhad 182199 mac 182199 bytes_out 2258716 182199 bytes_in 2015401 182199 station_ip 83.123.30.115 182199 port 229 182199 unique_id port 182199 remote_ip 10.8.0.66 182203 username mohammadmahdi 182203 mac 182203 bytes_out 0 182203 bytes_in 0 182203 station_ip 5.120.33.195 182203 port 223 182203 unique_id port 182204 username aminvpn 182204 mac 182204 bytes_out 0 182204 bytes_in 0 182204 station_ip 5.233.69.220 182204 port 196 182204 unique_id port 182204 remote_ip 10.8.0.58 182205 username khalili2 182205 kill_reason Another user logged on this global unique id 182205 mac 182141 username mehdizare 182141 kill_reason Another user logged on this global unique id 182141 mac 182141 bytes_out 0 182141 bytes_in 0 182141 station_ip 83.123.4.209 182141 port 235 182141 unique_id port 182144 username mehdizare 182144 mac 182144 bytes_out 39246 182144 bytes_in 52802 182144 station_ip 83.123.4.209 182144 port 223 182144 unique_id port 182144 remote_ip 10.8.0.210 182150 username aminvpn 182150 mac 182150 bytes_out 108518 182150 bytes_in 623369 182150 station_ip 83.123.0.194 182150 port 219 182150 unique_id port 182150 remote_ip 10.8.0.58 182154 username aminvpn 182154 mac 182154 bytes_out 0 182154 bytes_in 0 182154 station_ip 83.123.0.194 182154 port 226 182154 unique_id port 182154 remote_ip 10.8.0.58 182157 username yaghobi 182157 mac 182157 bytes_out 791494 182157 bytes_in 6013481 182157 station_ip 83.123.8.48 182157 port 235 182157 unique_id port 182157 remote_ip 10.8.0.138 182159 username saeed9658 182159 mac 182159 bytes_out 0 182159 bytes_in 0 182159 station_ip 5.120.34.92 182159 port 234 182159 unique_id port 182159 remote_ip 10.8.0.162 182163 username saeed9658 182163 mac 182163 bytes_out 0 182163 bytes_in 0 182163 station_ip 5.120.34.92 182163 port 212 182163 unique_id port 182163 remote_ip 10.8.0.162 182164 username saeed9658 182164 mac 182164 bytes_out 0 182164 bytes_in 0 182164 station_ip 5.120.34.92 182164 port 212 182164 unique_id port 182164 remote_ip 10.8.0.162 182168 username yaghobi 182168 mac 182168 bytes_out 486972 182168 bytes_in 752510 182168 station_ip 83.123.8.48 182168 port 237 182168 unique_id port 182168 remote_ip 10.8.0.138 182169 username saeed9658 182169 mac 182169 bytes_out 0 182169 bytes_in 0 182169 station_ip 5.120.34.92 182169 port 226 182169 unique_id port 182169 remote_ip 10.8.0.162 182175 username saeed9658 182175 mac 182175 bytes_out 0 182175 bytes_in 0 182175 station_ip 5.120.34.92 182175 port 234 182175 unique_id port 182175 remote_ip 10.8.0.162 182176 username mohammadmahdi 182176 kill_reason Another user logged on this global unique id 182176 mac 182176 bytes_out 0 182176 bytes_in 0 182176 station_ip 5.120.33.195 182176 port 223 182176 unique_id port 182176 remote_ip 10.8.0.30 182177 username malekpoir 182177 mac 182177 bytes_out 806525 182177 bytes_in 4438655 182177 station_ip 5.119.34.114 182177 port 240 182177 unique_id port 182177 remote_ip 10.8.0.18 182178 username aminvpn 182178 mac 182178 bytes_out 0 182178 bytes_in 0 182178 station_ip 5.233.69.220 182178 port 237 182178 unique_id port 182178 remote_ip 10.8.0.58 182180 username farhad3 182180 mac 182180 bytes_out 75722 182180 bytes_in 127735 182180 station_ip 5.120.107.93 182180 port 234 182180 unique_id port 182180 remote_ip 10.8.0.222 182182 username saeed9658 182182 mac 182182 bytes_out 0 182182 bytes_in 0 182182 station_ip 5.120.34.92 182182 port 235 182182 unique_id port 182182 remote_ip 10.8.0.162 182185 username kalantary6037 182185 mac 182185 bytes_out 6876 182185 bytes_in 9863 182185 station_ip 83.123.1.144 182185 port 226 182185 unique_id port 182185 remote_ip 10.8.0.50 182189 username hosseine 182189 kill_reason Another user logged on this global unique id 182189 mac 182189 bytes_out 0 182189 bytes_in 0 182189 station_ip 83.123.92.231 182189 port 232 182189 unique_id port 182191 username saeed9658 182191 mac 182191 bytes_out 0 182191 bytes_in 0 182191 station_ip 5.120.34.92 182191 port 226 182191 unique_id port 182191 remote_ip 10.8.0.162 182161 bytes_in 0 182161 station_ip 37.27.33.156 182161 port 231 182161 unique_id port 182162 username jafari 182162 mac 182162 bytes_out 0 182162 bytes_in 0 182162 station_ip 92.114.74.76 182162 port 239 182162 unique_id port 182165 username esmaeilkazemi 182165 mac 182165 bytes_out 324899 182165 bytes_in 3063045 182165 station_ip 83.123.100.253 182165 port 226 182165 unique_id port 182165 remote_ip 10.8.0.26 182166 username saeed9658 182166 mac 182166 bytes_out 0 182166 bytes_in 0 182166 station_ip 5.120.34.92 182166 port 212 182166 unique_id port 182166 remote_ip 10.8.0.162 182170 username motamedi9772 182170 mac 182170 bytes_out 105176 182170 bytes_in 124699 182170 station_ip 83.123.17.175 182170 port 212 182170 unique_id port 182170 remote_ip 10.8.0.154 182171 username saeed9658 182171 mac 182171 bytes_out 0 182171 bytes_in 0 182171 station_ip 5.120.34.92 182171 port 212 182171 unique_id port 182171 remote_ip 10.8.0.162 182172 username farhad3 182172 mac 182172 bytes_out 377300 182172 bytes_in 1962501 182172 station_ip 5.119.127.49 182172 port 212 182172 unique_id port 182172 remote_ip 10.8.0.222 182174 username saeed9658 182174 mac 182174 bytes_out 0 182174 bytes_in 0 182174 station_ip 5.120.34.92 182174 port 234 182174 unique_id port 182174 remote_ip 10.8.0.162 182179 username saeed9658 182179 mac 182179 bytes_out 0 182179 bytes_in 0 182179 station_ip 5.120.34.92 182179 port 235 182179 unique_id port 182179 remote_ip 10.8.0.162 182186 username alikomsari 182186 mac 182186 bytes_out 1069626 182186 bytes_in 4007969 182186 station_ip 5.119.138.121 182186 port 212 182186 unique_id port 182186 remote_ip 10.8.0.214 182187 username saeed9658 182187 mac 182187 bytes_out 0 182187 bytes_in 0 182187 station_ip 5.120.34.92 182187 port 212 182187 unique_id port 182187 remote_ip 10.8.0.162 182190 username saeed9658 182190 mac 182190 bytes_out 0 182190 bytes_in 0 182190 station_ip 5.120.34.92 182190 port 226 182190 unique_id port 182190 remote_ip 10.8.0.162 182194 username kalantary6037 182194 mac 182194 bytes_out 412065 182194 bytes_in 3468868 182194 station_ip 83.123.1.144 182194 port 196 182194 unique_id port 182194 remote_ip 10.8.0.50 182197 username aminvpn 182197 unique_id port 182197 terminate_cause Lost-Carrier 182197 bytes_out 18034694 182197 bytes_in 576967856 182197 station_ip 31.57.122.99 182197 port 15728884 182197 nas_port_type Virtual 182197 remote_ip 5.5.5.185 182200 username sabaghnezhad 182200 mac 182200 bytes_out 0 182200 bytes_in 0 182200 station_ip 83.123.30.115 182200 port 210 182200 unique_id port 182200 remote_ip 10.8.0.66 182202 username saeed9658 182202 mac 182202 bytes_out 0 182202 bytes_in 0 182202 station_ip 5.120.34.92 182202 port 210 182202 unique_id port 182202 remote_ip 10.8.0.162 182212 username khalili2 182212 mac 182212 bytes_out 0 182212 bytes_in 0 182212 station_ip 5.120.81.181 182212 port 236 182212 unique_id port 182220 username saeed9658 182220 mac 182220 bytes_out 0 182220 bytes_in 0 182220 station_ip 5.120.34.92 182220 port 226 182220 unique_id port 182220 remote_ip 10.8.0.162 182222 username yaghobi 182222 mac 182222 bytes_out 120352 182222 bytes_in 188783 182222 station_ip 83.123.63.235 182222 port 236 182222 unique_id port 182222 remote_ip 10.8.0.138 182224 username saeed9658 182224 mac 182224 bytes_out 1658 182224 bytes_in 3853 182224 station_ip 5.120.34.92 182224 port 236 182224 unique_id port 182193 username yaghobi 182193 mac 182193 bytes_out 511343 182193 bytes_in 2278001 182193 station_ip 83.123.8.48 182193 port 219 182193 unique_id port 182193 remote_ip 10.8.0.138 182196 username aminvpn 182196 mac 182196 bytes_out 0 182196 bytes_in 0 182196 station_ip 5.233.69.220 182196 port 212 182196 unique_id port 182198 username godarzi 182198 mac 182198 bytes_out 0 182198 bytes_in 0 182198 station_ip 5.202.5.255 182198 port 210 182198 unique_id port 182201 username shadkam 182201 mac 182201 bytes_out 132268 182201 bytes_in 1088058 182201 station_ip 83.123.24.9 182201 port 196 182201 unique_id port 182201 remote_ip 10.8.0.74 182206 username sabaghnezhad 182206 mac 182206 bytes_out 115508 182206 bytes_in 122877 182206 station_ip 83.123.30.115 182206 port 219 182206 unique_id port 182206 remote_ip 10.8.0.66 182209 username saeed9658 182209 mac 182209 bytes_out 9093 182209 bytes_in 17919 182209 station_ip 5.120.34.92 182209 port 219 182209 unique_id port 182209 remote_ip 10.8.0.162 182211 username yaghobi 182211 mac 182211 bytes_out 538876 182211 bytes_in 744505 182211 station_ip 83.123.8.48 182211 port 235 182211 unique_id port 182211 remote_ip 10.8.0.138 182215 username milan 182215 kill_reason Another user logged on this global unique id 182215 mac 182215 bytes_out 0 182215 bytes_in 0 182215 station_ip 5.119.97.240 182215 port 233 182215 unique_id port 182217 username aminvpn 182217 mac 182217 bytes_out 1644 182217 bytes_in 4930 182217 station_ip 5.233.69.220 182217 port 226 182217 unique_id port 182217 remote_ip 10.8.0.58 182218 username saeed9658 182218 mac 182218 bytes_out 0 182218 bytes_in 0 182218 station_ip 5.120.34.92 182218 port 226 182218 unique_id port 182218 remote_ip 10.8.0.162 182227 username yaghobi 182227 mac 182227 bytes_out 286428 182227 bytes_in 386355 182227 station_ip 83.123.29.119 182227 port 196 182227 unique_id port 182227 remote_ip 10.8.0.138 182228 username sekonji0496 182228 mac 182228 bytes_out 347864 182228 bytes_in 2228878 182228 station_ip 83.123.17.34 182228 port 226 182228 unique_id port 182228 remote_ip 10.8.0.62 182233 username aminvpn 182233 unique_id port 182233 terminate_cause User-Request 182233 bytes_out 6494476 182233 bytes_in 13335959 182233 station_ip 5.120.62.121 182233 port 15728885 182233 nas_port_type Virtual 182233 remote_ip 5.5.5.184 182235 username yaghobi 182235 mac 182235 bytes_out 254811 182235 bytes_in 374081 182235 station_ip 83.123.11.119 182235 port 223 182235 unique_id port 182235 remote_ip 10.8.0.138 182239 username farhad3 182239 kill_reason Another user logged on this global unique id 182239 mac 182239 bytes_out 0 182239 bytes_in 0 182239 station_ip 5.120.107.93 182239 port 234 182239 unique_id port 182239 remote_ip 10.8.0.222 182240 username saeed9658 182240 mac 182240 bytes_out 0 182240 bytes_in 0 182240 station_ip 5.120.34.92 182240 port 241 182240 unique_id port 182240 remote_ip 10.8.0.162 182245 username kalantary6037 182245 mac 182245 bytes_out 1397312 182245 bytes_in 13805884 182245 station_ip 83.123.120.59 182245 port 226 182245 unique_id port 182245 remote_ip 10.8.0.50 182247 username malekpoir 182247 mac 182247 bytes_out 868568 182247 bytes_in 4859717 182247 station_ip 5.119.86.175 182247 port 223 182247 unique_id port 182247 remote_ip 10.8.0.18 182254 username aminvpn 182254 kill_reason Maximum check online fails reached 182254 mac 182254 bytes_out 0 182254 bytes_in 0 182254 station_ip 5.233.69.220 182254 port 219 182205 bytes_out 0 182205 bytes_in 0 182205 station_ip 5.120.81.181 182205 port 236 182205 unique_id port 182205 remote_ip 10.8.0.118 182207 username shadkam 182207 mac 182207 bytes_out 606303 182207 bytes_in 9181705 182207 station_ip 83.123.24.9 182207 port 226 182207 unique_id port 182207 remote_ip 10.8.0.74 182208 username godarzi 182208 mac 182208 bytes_out 0 182208 bytes_in 0 182208 station_ip 5.202.5.255 182208 port 210 182208 unique_id port 182208 remote_ip 10.8.0.38 182210 username alipour1506 182210 kill_reason Another user logged on this global unique id 182210 mac 182210 bytes_out 0 182210 bytes_in 0 182210 station_ip 78.39.25.121 182210 port 227 182210 unique_id port 182210 remote_ip 10.8.0.126 182213 username aminvpn 182213 mac 182213 bytes_out 0 182213 bytes_in 0 182213 station_ip 5.233.69.220 182213 port 226 182213 unique_id port 182213 remote_ip 10.8.0.58 182214 username ayobi 182214 kill_reason Another user logged on this global unique id 182214 mac 182214 bytes_out 0 182214 bytes_in 0 182214 station_ip 37.27.33.156 182214 port 231 182214 unique_id port 182216 username soleymani5056 182216 mac 182216 bytes_out 150952 182216 bytes_in 436620 182216 station_ip 5.120.6.112 182216 port 196 182216 unique_id port 182216 remote_ip 10.8.0.226 182219 username yaghobi 182219 mac 182219 bytes_out 287485 182219 bytes_in 550850 182219 station_ip 83.123.63.235 182219 port 219 182219 unique_id port 182219 remote_ip 10.8.0.138 182221 username godarzi 182221 mac 182221 bytes_out 888982 182221 bytes_in 3722586 182221 station_ip 5.202.5.255 182221 port 196 182221 unique_id port 182221 remote_ip 10.8.0.38 182223 username saeed9658 182223 mac 182223 bytes_out 0 182223 bytes_in 0 182223 station_ip 5.120.34.92 182223 port 236 182223 unique_id port 182223 remote_ip 10.8.0.162 182225 username farhad3 182225 mac 182225 bytes_out 4847315 182225 bytes_in 36571596 182225 station_ip 5.120.107.93 182225 port 234 182225 unique_id port 182225 remote_ip 10.8.0.222 182231 username saeed9658 182231 mac 182231 bytes_out 0 182231 bytes_in 0 182231 station_ip 5.120.34.92 182231 port 223 182231 unique_id port 182231 remote_ip 10.8.0.162 182238 username yaghobi 182238 mac 182238 bytes_out 154976 182238 bytes_in 195230 182238 station_ip 83.123.11.119 182238 port 238 182238 unique_id port 182238 remote_ip 10.8.0.138 182242 username pourshad 182242 kill_reason Another user logged on this global unique id 182242 mac 182242 bytes_out 0 182242 bytes_in 0 182242 station_ip 5.120.176.229 182242 port 236 182242 unique_id port 182242 remote_ip 10.8.0.42 182248 username nilufarrajaei 182248 mac 182248 bytes_out 709819 182248 bytes_in 4765014 182248 station_ip 83.123.47.248 182248 port 239 182248 unique_id port 182248 remote_ip 10.8.0.194 182250 username motamedi9772 182250 mac 182250 bytes_out 104311 182250 bytes_in 124056 182250 station_ip 83.123.17.175 182250 port 219 182250 unique_id port 182250 remote_ip 10.8.0.154 182251 username aminvpn 182251 mac 182251 bytes_out 0 182251 bytes_in 0 182251 station_ip 5.233.69.220 182251 port 219 182251 unique_id port 182251 remote_ip 10.8.0.58 182252 username pourshad 182252 kill_reason Another user logged on this global unique id 182252 mac 182252 bytes_out 0 182252 bytes_in 0 182252 station_ip 5.120.176.229 182252 port 236 182252 unique_id port 182255 username naeimeh 182255 mac 182255 bytes_out 91800 182255 bytes_in 164841 182255 station_ip 83.123.25.109 182255 port 238 182255 unique_id port 182224 remote_ip 10.8.0.162 182226 username hashtadani4 182226 kill_reason Relative expiration date has reached 182226 mac 182226 bytes_out 0 182226 bytes_in 0 182226 station_ip 83.123.87.116 182226 port 234 182226 unique_id port 182229 username rashidi4690 182229 mac 182229 bytes_out 3752659 182229 bytes_in 46497458 182229 station_ip 83.123.109.16 182229 port 223 182229 unique_id port 182229 remote_ip 10.8.0.242 182230 username saeed9658 182230 kill_reason Maximum check online fails reached 182230 mac 182230 bytes_out 0 182230 bytes_in 0 182230 station_ip 5.120.34.92 182230 port 196 182230 unique_id port 182232 username yaghobi 182232 mac 182232 bytes_out 165217 182232 bytes_in 207731 182232 station_ip 83.123.29.119 182232 port 236 182232 unique_id port 182232 remote_ip 10.8.0.138 182234 username sekonji0496 182234 mac 182234 bytes_out 0 182234 bytes_in 0 182234 station_ip 83.123.17.34 182234 port 238 182234 unique_id port 182234 remote_ip 10.8.0.62 182236 username houshang 182236 mac 182236 bytes_out 3755978 182236 bytes_in 48541845 182236 station_ip 5.120.164.154 182236 port 219 182236 unique_id port 182236 remote_ip 10.8.0.82 182237 username amin.saeedi 182237 kill_reason Relative expiration date has reached 182237 unique_id port 182237 bytes_out 0 182237 bytes_in 0 182237 station_ip 31.56.216.239 182237 port 15728893 182237 nas_port_type Virtual 182241 username amin.saeedi 182241 kill_reason Relative expiration date has reached 182241 unique_id port 182241 bytes_out 0 182241 bytes_in 0 182241 station_ip 31.56.216.239 182241 port 15728894 182241 nas_port_type Virtual 182243 username sekonji0496 182243 mac 182243 bytes_out 109778 182243 bytes_in 1544213 182243 station_ip 83.123.17.34 182243 port 219 182243 unique_id port 182243 remote_ip 10.8.0.62 182244 username aminvpn 182244 mac 182244 bytes_out 23259 182244 bytes_in 7450 182244 station_ip 5.120.62.121 182244 port 238 182244 unique_id port 182244 remote_ip 10.8.0.58 182246 username hamid.e 182246 unique_id port 182246 terminate_cause User-Request 182246 bytes_out 593525 182246 bytes_in 7994138 182246 station_ip 31.56.216.239 182246 port 15728895 182246 nas_port_type Virtual 182246 remote_ip 5.5.5.182 182249 username ayobi 182249 mac 182249 bytes_out 0 182249 bytes_in 0 182249 station_ip 37.27.33.156 182249 port 231 182249 unique_id port 182253 username yaghobi 182253 mac 182253 bytes_out 231586 182253 bytes_in 326999 182253 station_ip 83.123.89.174 182253 port 240 182253 unique_id port 182253 remote_ip 10.8.0.138 182259 username houshang 182259 mac 182259 bytes_out 681029 182259 bytes_in 8931211 182259 station_ip 5.120.164.154 182259 port 231 182259 unique_id port 182259 remote_ip 10.8.0.82 182261 username aminvpn 182261 mac 182261 bytes_out 0 182261 bytes_in 0 182261 station_ip 5.120.104.91 182261 port 231 182261 unique_id port 182261 remote_ip 10.8.0.58 182265 username naeimeh 182265 mac 182265 bytes_out 865680 182265 bytes_in 3760439 182265 station_ip 83.123.25.109 182265 port 231 182265 unique_id port 182265 remote_ip 10.8.0.78 182267 username farhad3 182267 mac 182267 bytes_out 0 182267 bytes_in 0 182267 station_ip 5.120.107.93 182267 port 234 182267 unique_id port 182269 username farhad3 182269 mac 182269 bytes_out 0 182269 bytes_in 0 182269 station_ip 5.120.107.93 182269 port 226 182269 unique_id port 182269 remote_ip 10.8.0.222 182271 username farhad3 182271 mac 182271 bytes_out 0 182271 bytes_in 0 182271 station_ip 5.120.107.93 182271 port 231 182254 unique_id port 182256 username naeimeh 182256 mac 182256 bytes_out 112187 182256 bytes_in 654820 182256 station_ip 83.123.25.109 182256 port 239 182256 unique_id port 182256 remote_ip 10.8.0.78 182258 username sabaghnezhad 182258 mac 182258 bytes_out 108886 182258 bytes_in 281263 182258 station_ip 83.123.30.115 182258 port 223 182258 unique_id port 182258 remote_ip 10.8.0.66 182260 username mohammadmahdi 182260 kill_reason Another user logged on this global unique id 182260 mac 182260 bytes_out 0 182260 bytes_in 0 182260 station_ip 5.120.33.195 182260 port 235 182260 unique_id port 182260 remote_ip 10.8.0.30 182263 username yaghobi 182263 mac 182263 bytes_out 1809670 182263 bytes_in 2170218 182263 station_ip 83.123.89.174 182263 port 226 182263 unique_id port 182263 remote_ip 10.8.0.138 182268 username farhad3 182268 mac 182268 bytes_out 0 182268 bytes_in 0 182268 station_ip 5.120.107.93 182268 port 226 182268 unique_id port 182268 remote_ip 10.8.0.222 182272 username rahim 182272 kill_reason Another user logged on this global unique id 182272 mac 182272 bytes_out 0 182272 bytes_in 0 182272 station_ip 5.120.18.152 182272 port 223 182272 unique_id port 182272 remote_ip 10.8.0.134 182285 username motamedi9772 182285 mac 182285 bytes_out 123993 182285 bytes_in 103564 182285 station_ip 83.123.17.175 182285 port 238 182285 unique_id port 182285 remote_ip 10.8.0.154 182290 username rahim 182290 mac 182290 bytes_out 0 182290 bytes_in 0 182290 station_ip 5.120.18.152 182290 port 223 182290 unique_id port 182291 username aminvpn 182291 kill_reason Maximum check online fails reached 182291 mac 182291 bytes_out 0 182291 bytes_in 0 182291 station_ip 5.233.69.220 182291 port 231 182291 unique_id port 182293 username kordestani 182293 kill_reason Another user logged on this global unique id 182293 mac 182293 bytes_out 0 182293 bytes_in 0 182293 station_ip 151.235.97.212 182293 port 237 182293 unique_id port 182294 username aminvpn 182294 unique_id port 182294 terminate_cause Lost-Carrier 182294 bytes_out 6920111 182294 bytes_in 262704373 182294 station_ip 5.120.5.39 182294 port 15728898 182294 nas_port_type Virtual 182294 remote_ip 5.5.5.191 182295 username farhad3 182295 mac 182295 bytes_out 1825696 182295 bytes_in 11490819 182295 station_ip 5.120.107.93 182295 port 235 182295 unique_id port 182295 remote_ip 10.8.0.222 182298 username farhad3 182298 mac 182298 bytes_out 439060 182298 bytes_in 2386190 182298 station_ip 5.120.107.93 182298 port 223 182298 unique_id port 182298 remote_ip 10.8.0.222 182301 username pourshad 182301 kill_reason Another user logged on this global unique id 182301 mac 182301 bytes_out 0 182301 bytes_in 0 182301 station_ip 5.120.176.229 182301 port 236 182301 unique_id port 182302 username farhad3 182302 mac 182302 bytes_out 88093 182302 bytes_in 266685 182302 station_ip 5.120.107.93 182302 port 223 182302 unique_id port 182302 remote_ip 10.8.0.222 182308 username pourshad 182308 kill_reason Another user logged on this global unique id 182308 mac 182308 bytes_out 0 182308 bytes_in 0 182308 station_ip 5.120.176.229 182308 port 236 182308 unique_id port 182309 username khademi 182309 kill_reason Another user logged on this global unique id 182309 mac 182309 bytes_out 0 182309 bytes_in 0 182309 station_ip 83.123.54.146 182309 port 218 182309 unique_id port 182311 username saeed9658 182311 mac 182311 bytes_out 0 182311 bytes_in 0 182311 station_ip 5.120.34.92 182311 port 210 182311 unique_id port 182311 remote_ip 10.8.0.162 182312 username shadkam 182312 mac 182255 remote_ip 10.8.0.78 182257 username pourshad 182257 kill_reason Another user logged on this global unique id 182257 mac 182257 bytes_out 0 182257 bytes_in 0 182257 station_ip 5.120.176.229 182257 port 236 182257 unique_id port 182262 username naeimeh 182262 mac 182262 bytes_out 1773186 182262 bytes_in 19657236 182262 station_ip 83.123.25.109 182262 port 238 182262 unique_id port 182262 remote_ip 10.8.0.78 182264 username aminvpn 182264 unique_id port 182264 terminate_cause User-Request 182264 bytes_out 2915428 182264 bytes_in 42197564 182264 station_ip 5.120.5.39 182264 port 15728896 182264 nas_port_type Virtual 182264 remote_ip 5.5.5.191 182266 username aminvpn 182266 mac 182266 bytes_out 954921 182266 bytes_in 10438237 182266 station_ip 5.120.104.91 182266 port 238 182266 unique_id port 182266 remote_ip 10.8.0.58 182270 username farhad3 182270 mac 182270 bytes_out 0 182270 bytes_in 0 182270 station_ip 5.120.107.93 182270 port 231 182270 unique_id port 182270 remote_ip 10.8.0.222 182273 username aminvpn 182273 mac 182273 bytes_out 84102 182273 bytes_in 129167 182273 station_ip 5.233.69.220 182273 port 226 182273 unique_id port 182273 remote_ip 10.8.0.58 182274 username kordestani 182274 kill_reason Another user logged on this global unique id 182274 mac 182274 bytes_out 0 182274 bytes_in 0 182274 station_ip 151.235.97.212 182274 port 237 182274 unique_id port 182274 remote_ip 10.8.0.130 182277 username yaghobi 182277 mac 182277 bytes_out 695708 182277 bytes_in 1784266 182277 station_ip 83.123.89.174 182277 port 239 182277 unique_id port 182277 remote_ip 10.8.0.138 182278 username khademi 182278 kill_reason Another user logged on this global unique id 182278 mac 182278 bytes_out 0 182278 bytes_in 0 182278 station_ip 83.123.54.146 182278 port 218 182278 unique_id port 182279 username pourshad 182279 kill_reason Another user logged on this global unique id 182279 mac 182279 bytes_out 0 182279 bytes_in 0 182279 station_ip 5.120.176.229 182279 port 236 182279 unique_id port 182280 username mohammadmahdi 182280 mac 182280 bytes_out 0 182280 bytes_in 0 182280 station_ip 5.120.33.195 182280 port 235 182280 unique_id port 182282 username alirezaza 182282 unique_id port 182282 terminate_cause Lost-Carrier 182282 bytes_out 1313567 182282 bytes_in 43500176 182282 station_ip 5.119.93.246 182282 port 15728899 182282 nas_port_type Virtual 182282 remote_ip 5.5.5.180 182283 username shadkam 182283 kill_reason Another user logged on this global unique id 182283 mac 182283 bytes_out 0 182283 bytes_in 0 182283 station_ip 83.123.38.111 182283 port 234 182283 unique_id port 182283 remote_ip 10.8.0.74 182286 username farhad3 182286 mac 182286 bytes_out 490141 182286 bytes_in 2546368 182286 station_ip 5.120.107.93 182286 port 235 182286 unique_id port 182286 remote_ip 10.8.0.222 182287 username pourshad 182287 kill_reason Another user logged on this global unique id 182287 mac 182287 bytes_out 0 182287 bytes_in 0 182287 station_ip 5.120.176.229 182287 port 236 182287 unique_id port 182288 username saeed9658 182288 mac 182288 bytes_out 511161 182288 bytes_in 2514638 182288 station_ip 5.120.34.92 182288 port 231 182288 unique_id port 182288 remote_ip 10.8.0.162 182289 username saeed9658 182289 mac 182289 bytes_out 0 182289 bytes_in 0 182289 station_ip 5.120.34.92 182289 port 238 182289 unique_id port 182289 remote_ip 10.8.0.162 182297 username saeed9658 182297 mac 182297 bytes_out 0 182297 bytes_in 0 182297 station_ip 5.120.34.92 182297 port 235 182297 unique_id port 182297 remote_ip 10.8.0.162 182271 unique_id port 182271 remote_ip 10.8.0.222 182275 username fezealinaghi 182275 mac 182275 bytes_out 5461150 182275 bytes_in 45314433 182275 station_ip 83.123.81.109 182275 port 210 182275 unique_id port 182275 remote_ip 10.8.0.202 182276 username farhad3 182276 mac 182276 bytes_out 353301 182276 bytes_in 799664 182276 station_ip 5.120.107.93 182276 port 231 182276 unique_id port 182276 remote_ip 10.8.0.222 182281 username aminvpn 182281 mac 182281 bytes_out 0 182281 bytes_in 0 182281 station_ip 5.233.69.220 182281 port 238 182281 unique_id port 182281 remote_ip 10.8.0.58 182284 username rahim 182284 kill_reason Another user logged on this global unique id 182284 mac 182284 bytes_out 0 182284 bytes_in 0 182284 station_ip 5.120.18.152 182284 port 223 182284 unique_id port 182292 username saeed9658 182292 mac 182292 bytes_out 0 182292 bytes_in 0 182292 station_ip 5.120.34.92 182292 port 223 182292 unique_id port 182292 remote_ip 10.8.0.162 182296 username shadkam 182296 kill_reason Another user logged on this global unique id 182296 mac 182296 bytes_out 0 182296 bytes_in 0 182296 station_ip 83.123.38.111 182296 port 234 182296 unique_id port 182299 username milan 182299 kill_reason Another user logged on this global unique id 182299 mac 182299 bytes_out 0 182299 bytes_in 0 182299 station_ip 5.119.97.240 182299 port 233 182299 unique_id port 182303 username saeed9658 182303 mac 182303 bytes_out 0 182303 bytes_in 0 182303 station_ip 5.120.34.92 182303 port 238 182303 unique_id port 182303 remote_ip 10.8.0.162 182304 username yaghobi 182304 mac 182304 bytes_out 747042 182304 bytes_in 1940589 182304 station_ip 83.123.112.170 182304 port 226 182304 unique_id port 182304 remote_ip 10.8.0.138 182305 username aminvpn 182305 mac 182305 bytes_out 0 182305 bytes_in 0 182305 station_ip 5.233.69.220 182305 port 226 182305 unique_id port 182305 remote_ip 10.8.0.58 182307 username shadkam 182307 mac 182307 bytes_out 0 182307 bytes_in 0 182307 station_ip 83.123.38.111 182307 port 234 182307 unique_id port 182310 username fezealinaghi 182310 mac 182310 bytes_out 3959366 182310 bytes_in 40807088 182310 station_ip 83.123.81.109 182310 port 210 182310 unique_id port 182310 remote_ip 10.8.0.202 182313 username aminvpn 182313 mac 182313 bytes_out 0 182313 bytes_in 0 182313 station_ip 5.233.69.220 182313 port 226 182313 unique_id port 182313 remote_ip 10.8.0.58 182315 username khademi 182315 kill_reason Another user logged on this global unique id 182315 mac 182315 bytes_out 0 182315 bytes_in 0 182315 station_ip 83.123.54.146 182315 port 218 182315 unique_id port 182317 username saeed9658 182317 mac 182317 bytes_out 1936846 182317 bytes_in 16116300 182317 station_ip 5.120.34.92 182317 port 210 182317 unique_id port 182317 remote_ip 10.8.0.162 182325 username aminvpn 182325 mac 182325 bytes_out 0 182325 bytes_in 0 182325 station_ip 5.233.69.220 182325 port 226 182325 unique_id port 182325 remote_ip 10.8.0.58 182328 username yaghobi 182328 mac 182328 bytes_out 3084 182328 bytes_in 4953 182328 station_ip 83.123.21.106 182328 port 226 182328 unique_id port 182328 remote_ip 10.8.0.138 182332 username aminvpn 182332 mac 182332 bytes_out 1644 182332 bytes_in 4251 182332 station_ip 5.233.69.220 182332 port 210 182332 unique_id port 182332 remote_ip 10.8.0.58 182336 username naeimeh 182336 mac 182336 bytes_out 8133908 182336 bytes_in 43217078 182336 station_ip 83.123.102.206 182336 port 226 182336 unique_id port 182300 username farhad3 182300 mac 182300 bytes_out 0 182300 bytes_in 0 182300 station_ip 5.120.107.93 182300 port 223 182300 unique_id port 182300 remote_ip 10.8.0.222 182306 username kordestani 182306 mac 182306 bytes_out 0 182306 bytes_in 0 182306 station_ip 151.235.97.212 182306 port 237 182306 unique_id port 182316 username pourshad 182316 kill_reason Another user logged on this global unique id 182316 mac 182316 bytes_out 0 182316 bytes_in 0 182316 station_ip 5.120.176.229 182316 port 236 182316 unique_id port 182319 username mostafa_es78 182319 mac 182319 bytes_out 4790074 182319 bytes_in 45693826 182319 station_ip 83.122.110.254 182319 port 235 182319 unique_id port 182319 remote_ip 10.8.0.34 182322 username yaghobi 182322 mac 182322 bytes_out 360663 182322 bytes_in 717778 182322 station_ip 83.123.21.106 182322 port 210 182322 unique_id port 182322 remote_ip 10.8.0.138 182327 username yaghobi 182327 mac 182327 bytes_out 1211633 182327 bytes_in 10375003 182327 station_ip 83.123.21.106 182327 port 210 182327 unique_id port 182327 remote_ip 10.8.0.138 182329 username aminvpn 182329 mac 182329 bytes_out 0 182329 bytes_in 0 182329 station_ip 5.233.69.220 182329 port 210 182329 unique_id port 182329 remote_ip 10.8.0.58 182330 username pourshad 182330 mac 182330 bytes_out 0 182330 bytes_in 0 182330 station_ip 5.120.176.229 182330 port 236 182330 unique_id port 182333 username sabaghnezhad 182333 mac 182333 bytes_out 376550 182333 bytes_in 1245076 182333 station_ip 83.123.24.202 182333 port 239 182333 unique_id port 182333 remote_ip 10.8.0.66 182335 username alipour1506 182335 mac 182335 bytes_out 0 182335 bytes_in 0 182335 station_ip 78.39.25.121 182335 port 227 182335 unique_id port 182341 username aminvpn 182341 mac 182341 bytes_out 0 182341 bytes_in 0 182341 station_ip 5.233.69.220 182341 port 226 182341 unique_id port 182341 remote_ip 10.8.0.58 182343 username aminvpn 182343 mac 182343 bytes_out 0 182343 bytes_in 0 182343 station_ip 5.233.69.220 182343 port 227 182343 unique_id port 182343 remote_ip 10.8.0.58 182347 username aminvpn 182347 mac 182347 bytes_out 0 182347 bytes_in 0 182347 station_ip 5.233.69.220 182347 port 226 182347 unique_id port 182347 remote_ip 10.8.0.58 182349 username aminvpn 182349 mac 182349 bytes_out 1644 182349 bytes_in 4251 182349 station_ip 5.233.69.220 182349 port 227 182349 unique_id port 182349 remote_ip 10.8.0.58 182351 username aminvpn 182351 mac 182351 bytes_out 0 182351 bytes_in 0 182351 station_ip 5.233.69.220 182351 port 226 182351 unique_id port 182351 remote_ip 10.8.0.58 182352 username mirzaei6046 182352 mac 182352 bytes_out 0 182352 bytes_in 0 182352 station_ip 5.119.103.136 182352 port 201 182352 unique_id port 182353 username mirzaei6046 182353 mac 182353 bytes_out 0 182353 bytes_in 0 182353 station_ip 5.119.103.136 182353 port 226 182353 unique_id port 182353 remote_ip 10.8.0.246 182356 username aminvpn 182356 mac 182356 bytes_out 0 182356 bytes_in 0 182356 station_ip 5.233.69.220 182356 port 201 182356 unique_id port 182356 remote_ip 10.8.0.58 182357 username mirzaei6046 182357 mac 182357 bytes_out 5608 182357 bytes_in 10224 182357 station_ip 5.113.23.116 182357 port 201 182357 unique_id port 182357 remote_ip 10.8.0.246 182359 username aminvpn 182359 kill_reason Maximum check online fails reached 182359 mac 182359 bytes_out 0 182359 bytes_in 0 182359 station_ip 5.233.69.220 182312 bytes_out 395105 182312 bytes_in 2348754 182312 station_ip 83.123.38.111 182312 port 226 182312 unique_id port 182312 remote_ip 10.8.0.74 182314 username yaghobi 182314 mac 182314 bytes_out 421690 182314 bytes_in 673419 182314 station_ip 83.123.78.70 182314 port 223 182314 unique_id port 182314 remote_ip 10.8.0.138 182318 username yaghobi 182318 mac 182318 bytes_out 1271017 182318 bytes_in 715725 182318 station_ip 83.123.49.77 182318 port 226 182318 unique_id port 182318 remote_ip 10.8.0.138 182320 username pourshad 182320 kill_reason Another user logged on this global unique id 182320 mac 182320 bytes_out 0 182320 bytes_in 0 182320 station_ip 5.120.176.229 182320 port 236 182320 unique_id port 182321 username aminvpn 182321 kill_reason Maximum check online fails reached 182321 mac 182321 bytes_out 0 182321 bytes_in 0 182321 station_ip 5.233.69.220 182321 port 223 182321 unique_id port 182323 username motamedi9772 182323 mac 182323 bytes_out 182967 182323 bytes_in 921448 182323 station_ip 83.123.17.175 182323 port 226 182323 unique_id port 182323 remote_ip 10.8.0.154 182324 username yaghobi 182324 mac 182324 bytes_out 101622 182324 bytes_in 357738 182324 station_ip 83.123.21.106 182324 port 234 182324 unique_id port 182324 remote_ip 10.8.0.138 182326 username aminvpn 182326 mac 182326 bytes_out 0 182326 bytes_in 0 182326 station_ip 5.233.69.220 182326 port 226 182326 unique_id port 182326 remote_ip 10.8.0.58 182331 username fezealinaghi 182331 mac 182331 bytes_out 818245 182331 bytes_in 4501067 182331 station_ip 83.123.55.113 182331 port 210 182331 unique_id port 182331 remote_ip 10.8.0.202 182334 username motamedi9772 182334 mac 182334 bytes_out 12233 182334 bytes_in 20417 182334 station_ip 83.123.17.175 182334 port 210 182334 unique_id port 182334 remote_ip 10.8.0.154 182337 username aminvpn 182337 mac 182337 bytes_out 0 182337 bytes_in 0 182337 station_ip 5.233.69.220 182337 port 227 182337 unique_id port 182337 remote_ip 10.8.0.58 182338 username naeimeh 182338 mac 182338 bytes_out 1265924 182338 bytes_in 8613946 182338 station_ip 83.123.109.79 182338 port 226 182338 unique_id port 182338 remote_ip 10.8.0.78 182340 username aminvpn 182340 mac 182340 bytes_out 0 182340 bytes_in 0 182340 station_ip 5.233.69.220 182340 port 226 182340 unique_id port 182340 remote_ip 10.8.0.58 182342 username aminvpn 182342 mac 182342 bytes_out 0 182342 bytes_in 0 182342 station_ip 5.233.69.220 182342 port 227 182342 unique_id port 182342 remote_ip 10.8.0.58 182345 username aminvpn 182345 mac 182345 bytes_out 0 182345 bytes_in 0 182345 station_ip 5.233.69.220 182345 port 226 182345 unique_id port 182345 remote_ip 10.8.0.58 182346 username aminvpn 182346 mac 182346 bytes_out 0 182346 bytes_in 0 182346 station_ip 5.233.69.220 182346 port 226 182346 unique_id port 182346 remote_ip 10.8.0.58 182348 username ebrahimpour3 182348 mac 182348 bytes_out 419045 182348 bytes_in 3275635 182348 station_ip 83.123.126.47 182348 port 226 182348 unique_id port 182348 remote_ip 10.8.0.238 182350 username aminvpn 182350 mac 182350 bytes_out 0 182350 bytes_in 0 182350 station_ip 5.233.69.220 182350 port 226 182350 unique_id port 182350 remote_ip 10.8.0.58 182354 username mirzaei6046 182354 mac 182354 bytes_out 32544360 182354 bytes_in 5448064 182354 station_ip 5.119.103.136 182354 port 201 182354 unique_id port 182354 remote_ip 10.8.0.246 182355 username aminvpn 182355 mac 182355 bytes_out 0 182336 remote_ip 10.8.0.78 182339 username aminvpn 182339 mac 182339 bytes_out 0 182339 bytes_in 0 182339 station_ip 5.233.69.220 182339 port 227 182339 unique_id port 182339 remote_ip 10.8.0.58 182344 username shahruz 182344 mac 182344 bytes_out 1897116 182344 bytes_in 7325030 182344 station_ip 83.123.117.49 182344 port 226 182344 unique_id port 182344 remote_ip 10.8.0.230 182355 bytes_in 0 182355 station_ip 5.233.69.220 182355 port 201 182355 unique_id port 182355 remote_ip 10.8.0.58 182358 username mirzaei6046 182358 mac 182358 bytes_out 6390 182358 bytes_in 7920 182358 station_ip 5.113.23.116 182358 port 226 182358 unique_id port 182358 remote_ip 10.8.0.246 182359 port 201 182359 unique_id port 182360 username mirzaei6046 182360 mac 182360 bytes_out 9466 182360 bytes_in 9354 182360 station_ip 5.113.23.116 182360 port 226 182360 unique_id port 182360 remote_ip 10.8.0.246 182361 username mohammadjavad 182361 mac 182361 bytes_out 384990 182361 bytes_in 1648017 182361 station_ip 83.123.46.141 182361 port 226 182361 unique_id port 182361 remote_ip 10.8.0.110 182362 username mirzaei6046 182362 mac 182362 bytes_out 7046 182362 bytes_in 11870 182362 station_ip 5.113.30.118 182362 port 226 182362 unique_id port 182362 remote_ip 10.8.0.246 182363 username mohammadjavad 182363 mac 182363 bytes_out 0 182363 bytes_in 0 182363 station_ip 83.123.46.141 182363 port 226 182363 unique_id port 182363 remote_ip 10.8.0.110 182364 username mohammadjavad 182364 mac 182364 bytes_out 0 182364 bytes_in 0 182364 station_ip 83.123.46.141 182364 port 226 182364 unique_id port 182364 remote_ip 10.8.0.110 182365 username mirzaei6046 182365 mac 182365 bytes_out 6574 182365 bytes_in 9172 182365 station_ip 5.119.191.13 182365 port 234 182365 unique_id port 182365 remote_ip 10.8.0.246 182366 username sedighe 182366 mac 182366 bytes_out 247221 182366 bytes_in 734425 182366 station_ip 83.123.124.170 182366 port 227 182366 unique_id port 182366 remote_ip 10.8.0.46 182367 username mirzaei6046 182367 mac 182367 bytes_out 25219 182367 bytes_in 27985 182367 station_ip 5.113.54.7 182367 port 226 182367 unique_id port 182367 remote_ip 10.8.0.246 182368 username mirzaei6046 182368 mac 182368 bytes_out 14924 182368 bytes_in 18651 182368 station_ip 5.113.54.7 182368 port 227 182368 unique_id port 182368 remote_ip 10.8.0.246 182369 username sedighe 182369 mac 182369 bytes_out 14836 182369 bytes_in 24409 182369 station_ip 83.123.47.54 182369 port 234 182369 unique_id port 182369 remote_ip 10.8.0.46 182370 username sedighe 182370 mac 182370 bytes_out 5223 182370 bytes_in 7523 182370 station_ip 83.123.62.174 182370 port 227 182370 unique_id port 182370 remote_ip 10.8.0.46 182371 username mirzaei6046 182371 mac 182371 bytes_out 12153 182371 bytes_in 12143 182371 station_ip 5.120.65.107 182371 port 234 182371 unique_id port 182371 remote_ip 10.8.0.246 182372 username mohammadjavad 182372 kill_reason Another user logged on this global unique id 182372 mac 182372 bytes_out 0 182372 bytes_in 0 182372 station_ip 83.123.46.141 182372 port 226 182372 unique_id port 182372 remote_ip 10.8.0.110 182373 username mohammadjavad 182373 mac 182373 bytes_out 0 182373 bytes_in 0 182373 station_ip 83.123.46.141 182373 port 226 182373 unique_id port 182374 username nilufarrajaei 182374 mac 182374 bytes_out 979584 182374 bytes_in 2179504 182374 station_ip 83.123.65.160 182374 port 235 182374 unique_id port 182374 remote_ip 10.8.0.194 182375 username aminvpn 182375 mac 182375 bytes_out 0 182375 bytes_in 0 182375 station_ip 5.233.69.220 182375 port 226 182375 unique_id port 182375 remote_ip 10.8.0.58 182377 username sedighe 182377 mac 182377 bytes_out 48787 182377 bytes_in 47416 182377 station_ip 83.123.62.174 182377 port 236 182377 unique_id port 182377 remote_ip 10.8.0.46 182381 username sedighe 182381 mac 182381 bytes_out 72019 182381 bytes_in 119527 182381 station_ip 83.123.83.61 182381 port 234 182381 unique_id port 182381 remote_ip 10.8.0.46 182382 username mohammadjavad 182382 mac 182382 bytes_out 205961 182382 bytes_in 2424142 182382 station_ip 83.123.46.141 182382 port 227 182382 unique_id port 182382 remote_ip 10.8.0.110 182383 username mirzaei6046 182383 mac 182383 bytes_out 71462 182383 bytes_in 115012 182383 station_ip 5.120.65.107 182383 port 235 182383 unique_id port 182383 remote_ip 10.8.0.246 182386 username aminvpn 182386 mac 182386 bytes_out 0 182386 bytes_in 0 182386 station_ip 5.233.69.220 182386 port 234 182386 unique_id port 182386 remote_ip 10.8.0.58 182387 username sedighe 182387 mac 182387 bytes_out 96924 182387 bytes_in 746839 182387 station_ip 83.123.83.61 182387 port 235 182387 unique_id port 182387 remote_ip 10.8.0.46 182388 username mehdizare 182388 mac 182388 bytes_out 1482345 182388 bytes_in 29428863 182388 station_ip 83.123.4.209 182388 port 226 182388 unique_id port 182388 remote_ip 10.8.0.210 182390 username sedighe 182390 mac 182390 bytes_out 103919 182390 bytes_in 156210 182390 station_ip 83.123.83.61 182390 port 234 182390 unique_id port 182390 remote_ip 10.8.0.46 182391 username sedighe 182391 mac 182391 bytes_out 1797 182391 bytes_in 4076 182391 station_ip 83.123.83.61 182391 port 237 182391 unique_id port 182391 remote_ip 10.8.0.46 182396 username jafari 182396 kill_reason Another user logged on this global unique id 182396 mac 182396 bytes_out 0 182396 bytes_in 0 182396 station_ip 37.137.173.200 182396 port 236 182396 unique_id port 182396 remote_ip 10.8.0.86 182398 username aminvpn 182398 mac 182398 bytes_out 0 182398 bytes_in 0 182398 station_ip 5.233.69.220 182398 port 237 182398 unique_id port 182398 remote_ip 10.8.0.58 182403 username kalantary6037 182403 mac 182403 bytes_out 880664 182403 bytes_in 7912285 182403 station_ip 83.123.33.235 182403 port 237 182403 unique_id port 182403 remote_ip 10.8.0.50 182405 username yaghobi 182405 mac 182405 bytes_out 387569 182405 bytes_in 947935 182405 station_ip 83.123.55.167 182405 port 234 182405 unique_id port 182405 remote_ip 10.8.0.138 182407 username yaghobi 182407 mac 182407 bytes_out 23137 182407 bytes_in 12251 182407 station_ip 83.123.124.163 182407 port 234 182407 unique_id port 182407 remote_ip 10.8.0.138 182412 username yaghobi 182412 mac 182412 bytes_out 44461 182412 bytes_in 38007 182412 station_ip 83.123.98.121 182412 port 239 182412 unique_id port 182412 remote_ip 10.8.0.138 182413 username yaghobi 182413 mac 182413 bytes_out 22747 182413 bytes_in 10641 182413 station_ip 83.123.21.139 182413 port 210 182413 unique_id port 182413 remote_ip 10.8.0.138 182415 username yaghobi 182415 mac 182415 bytes_out 40072 182415 bytes_in 34940 182415 station_ip 83.123.33.220 182415 port 239 182415 unique_id port 182415 remote_ip 10.8.0.138 182416 username yaghobi 182416 mac 182416 bytes_out 65725 182416 bytes_in 61729 182416 station_ip 83.123.122.87 182416 port 210 182416 unique_id port 182416 remote_ip 10.8.0.138 182376 username aminvpn 182376 mac 182376 bytes_out 0 182376 bytes_in 0 182376 station_ip 5.233.69.220 182376 port 226 182376 unique_id port 182376 remote_ip 10.8.0.58 182378 username mirzaei6046 182378 mac 182378 bytes_out 72680 182378 bytes_in 71317 182378 station_ip 5.120.65.107 182378 port 227 182378 unique_id port 182378 remote_ip 10.8.0.246 182379 username mohammadjavad 182379 mac 182379 bytes_out 0 182379 bytes_in 0 182379 station_ip 83.123.46.141 182379 port 227 182379 unique_id port 182379 remote_ip 10.8.0.110 182384 username aminvpn 182384 mac 182384 bytes_out 0 182384 bytes_in 0 182384 station_ip 5.233.69.220 182384 port 235 182384 unique_id port 182384 remote_ip 10.8.0.58 182395 username aminvpn 182395 mac 182395 bytes_out 0 182395 bytes_in 0 182395 station_ip 5.233.69.220 182395 port 235 182395 unique_id port 182395 remote_ip 10.8.0.58 182399 username aminvpn 182399 mac 182399 bytes_out 0 182399 bytes_in 0 182399 station_ip 5.233.69.220 182399 port 237 182399 unique_id port 182399 remote_ip 10.8.0.58 182400 username alipour1506 182400 mac 182400 bytes_out 1717435 182400 bytes_in 10556245 182400 station_ip 78.39.25.121 182400 port 210 182400 unique_id port 182400 remote_ip 10.8.0.126 182401 username sedighe 182401 mac 182401 bytes_out 274769 182401 bytes_in 546513 182401 station_ip 83.123.121.48 182401 port 234 182401 unique_id port 182401 remote_ip 10.8.0.46 182414 username mirzaei6046 182414 kill_reason Another user logged on this global unique id 182414 mac 182414 bytes_out 0 182414 bytes_in 0 182414 station_ip 5.120.65.107 182414 port 227 182414 unique_id port 182414 remote_ip 10.8.0.246 182421 username yaghobi 182421 mac 182421 bytes_out 98911 182421 bytes_in 111806 182421 station_ip 83.123.76.186 182421 port 239 182421 unique_id port 182421 remote_ip 10.8.0.138 182423 username alipour1506 182423 mac 182423 bytes_out 65302 182423 bytes_in 119082 182423 station_ip 78.39.25.121 182423 port 234 182423 unique_id port 182423 remote_ip 10.8.0.126 182430 username yaghobi 182430 mac 182430 bytes_out 129708 182430 bytes_in 149950 182430 station_ip 83.123.75.104 182430 port 234 182430 unique_id port 182430 remote_ip 10.8.0.138 182431 username aminvpn 182431 mac 182431 bytes_out 0 182431 bytes_in 0 182431 station_ip 5.233.69.220 182431 port 234 182431 unique_id port 182431 remote_ip 10.8.0.58 182436 username aminvpn 182436 mac 182436 bytes_out 0 182436 bytes_in 0 182436 station_ip 5.233.69.220 182436 port 232 182436 unique_id port 182436 remote_ip 10.8.0.58 182438 username barzegar 182438 mac 182438 bytes_out 0 182438 bytes_in 0 182438 station_ip 5.119.69.200 182438 port 232 182438 unique_id port 182438 remote_ip 10.8.0.10 182440 username aminvpn 182440 mac 182440 bytes_out 0 182440 bytes_in 0 182440 station_ip 5.233.69.220 182440 port 234 182440 unique_id port 182440 remote_ip 10.8.0.58 182441 username khalili2 182441 mac 182441 bytes_out 4447783 182441 bytes_in 40910691 182441 station_ip 5.120.81.181 182441 port 229 182441 unique_id port 182441 remote_ip 10.8.0.118 182451 username barzegar 182451 mac 182451 bytes_out 0 182451 bytes_in 0 182451 station_ip 5.119.69.200 182451 port 210 182451 unique_id port 182451 remote_ip 10.8.0.10 182453 username godarzi 182453 mac 182453 bytes_out 305306 182453 bytes_in 2166817 182453 station_ip 5.119.251.172 182453 port 232 182453 unique_id port 182453 remote_ip 10.8.0.38 182454 username aminvpn 182380 username mirzaei6046 182380 mac 182380 bytes_out 133325 182380 bytes_in 1042216 182380 station_ip 5.120.65.107 182380 port 235 182380 unique_id port 182380 remote_ip 10.8.0.246 182385 username sedighe 182385 mac 182385 bytes_out 120135 182385 bytes_in 142407 182385 station_ip 83.123.83.61 182385 port 234 182385 unique_id port 182385 remote_ip 10.8.0.46 182389 username fezealinaghi 182389 mac 182389 bytes_out 332613 182389 bytes_in 1390603 182389 station_ip 83.123.55.109 182389 port 236 182389 unique_id port 182389 remote_ip 10.8.0.202 182392 username aminvpn 182392 mac 182392 bytes_out 0 182392 bytes_in 0 182392 station_ip 5.233.69.220 182392 port 234 182392 unique_id port 182392 remote_ip 10.8.0.58 182393 username kalantary6037 182393 mac 182393 bytes_out 1718414 182393 bytes_in 16746489 182393 station_ip 83.123.75.235 182393 port 235 182393 unique_id port 182393 remote_ip 10.8.0.50 182394 username sedighe 182394 mac 182394 bytes_out 40466 182394 bytes_in 27087 182394 station_ip 83.123.83.61 182394 port 234 182394 unique_id port 182394 remote_ip 10.8.0.46 182397 username sekonji0496 182397 mac 182397 bytes_out 291936 182397 bytes_in 4722055 182397 station_ip 83.123.89.154 182397 port 237 182397 unique_id port 182397 remote_ip 10.8.0.62 182402 username yaghobi 182402 mac 182402 bytes_out 1922811 182402 bytes_in 19866636 182402 station_ip 83.123.55.167 182402 port 235 182402 unique_id port 182402 remote_ip 10.8.0.138 182404 username aminvpn 182404 kill_reason Maximum check online fails reached 182404 mac 182404 bytes_out 0 182404 bytes_in 0 182404 station_ip 5.233.69.220 182404 port 235 182404 unique_id port 182406 username yaghobi 182406 mac 182406 bytes_out 149193 182406 bytes_in 596842 182406 station_ip 83.123.121.187 182406 port 237 182406 unique_id port 182406 remote_ip 10.8.0.138 182408 username yaghobi 182408 mac 182408 bytes_out 29929 182408 bytes_in 16768 182408 station_ip 83.123.0.197 182408 port 237 182408 unique_id port 182408 remote_ip 10.8.0.138 182409 username yaghobi 182409 mac 182409 bytes_out 51244 182409 bytes_in 103072 182409 station_ip 83.123.67.169 182409 port 234 182409 unique_id port 182409 remote_ip 10.8.0.138 182410 username yaghobi 182410 mac 182410 bytes_out 7923 182410 bytes_in 16911 182410 station_ip 83.123.67.169 182410 port 237 182410 unique_id port 182410 remote_ip 10.8.0.138 182411 username sedighe 182411 mac 182411 bytes_out 2264878 182411 bytes_in 27106798 182411 station_ip 83.123.121.48 182411 port 210 182411 unique_id port 182411 remote_ip 10.8.0.46 182417 username barzegar 182417 kill_reason Another user logged on this global unique id 182417 mac 182417 bytes_out 0 182417 bytes_in 0 182417 station_ip 5.119.69.200 182417 port 237 182417 unique_id port 182417 remote_ip 10.8.0.10 182422 username aminvpn 182422 mac 182422 bytes_out 0 182422 bytes_in 0 182422 station_ip 5.233.69.220 182422 port 237 182422 unique_id port 182422 remote_ip 10.8.0.58 182424 username yaghobi 182424 mac 182424 bytes_out 35580 182424 bytes_in 26638 182424 station_ip 83.123.112.243 182424 port 210 182424 unique_id port 182424 remote_ip 10.8.0.138 182425 username malekpoir 182425 kill_reason Maximum check online fails reached 182425 mac 182425 bytes_out 4192216 182425 bytes_in 39743601 182425 station_ip 5.119.86.175 182425 port 238 182425 unique_id port 182425 remote_ip 10.8.0.18 182427 username jafari 182427 kill_reason Another user logged on this global unique id 182427 mac 182427 bytes_out 0 182418 username sekonji0496 182418 mac 182418 bytes_out 5099 182418 bytes_in 6799 182418 station_ip 83.123.89.154 182418 port 210 182418 unique_id port 182418 remote_ip 10.8.0.62 182419 username barzegar 182419 mac 182419 bytes_out 0 182419 bytes_in 0 182419 station_ip 5.119.69.200 182419 port 237 182419 unique_id port 182420 username aminvpn 182420 mac 182420 bytes_out 0 182420 bytes_in 0 182420 station_ip 5.233.69.220 182420 port 210 182420 unique_id port 182420 remote_ip 10.8.0.58 182426 username barzegar 182426 mac 182426 bytes_out 0 182426 bytes_in 0 182426 station_ip 5.119.69.200 182426 port 210 182426 unique_id port 182426 remote_ip 10.8.0.10 182429 username mirzaei6046 182429 kill_reason Another user logged on this global unique id 182429 mac 182429 bytes_out 0 182429 bytes_in 0 182429 station_ip 5.120.65.107 182429 port 227 182429 unique_id port 182432 username barzegar 182432 mac 182432 bytes_out 2461 182432 bytes_in 4975 182432 station_ip 5.119.69.200 182432 port 210 182432 unique_id port 182432 remote_ip 10.8.0.10 182437 username barzegar 182437 mac 182437 bytes_out 5975 182437 bytes_in 14008 182437 station_ip 5.119.69.200 182437 port 232 182437 unique_id port 182437 remote_ip 10.8.0.10 182439 username barzegar 182439 mac 182439 bytes_out 0 182439 bytes_in 0 182439 station_ip 5.119.69.200 182439 port 232 182439 unique_id port 182439 remote_ip 10.8.0.10 182442 username godarzi 182442 mac 182442 bytes_out 1973005 182442 bytes_in 11642411 182442 station_ip 5.119.251.172 182442 port 210 182442 unique_id port 182442 remote_ip 10.8.0.38 182443 username barzegar 182443 mac 182443 bytes_out 160398 182443 bytes_in 38467 182443 station_ip 5.119.69.200 182443 port 232 182443 unique_id port 182443 remote_ip 10.8.0.10 182444 username barzegar 182444 mac 182444 bytes_out 3315 182444 bytes_in 5198 182444 station_ip 5.119.69.200 182444 port 210 182444 unique_id port 182444 remote_ip 10.8.0.10 182447 username mehdizare 182447 mac 182447 bytes_out 11150 182447 bytes_in 14202 182447 station_ip 83.123.4.209 182447 port 210 182447 unique_id port 182447 remote_ip 10.8.0.210 182448 username barzegar 182448 mac 182448 bytes_out 0 182448 bytes_in 0 182448 station_ip 5.119.69.200 182448 port 210 182448 unique_id port 182448 remote_ip 10.8.0.10 182449 username godarzi 182449 mac 182449 bytes_out 1115885 182449 bytes_in 15466478 182449 station_ip 5.119.251.172 182449 port 232 182449 unique_id port 182449 remote_ip 10.8.0.38 182450 username barzegar 182450 mac 182450 bytes_out 2209 182450 bytes_in 4486 182450 station_ip 5.119.69.200 182450 port 210 182450 unique_id port 182450 remote_ip 10.8.0.10 182455 username alirezazadeh 182455 unique_id port 182455 terminate_cause Lost-Carrier 182455 bytes_out 3832533 182455 bytes_in 45581233 182455 station_ip 5.120.5.104 182455 port 15728892 182455 nas_port_type Virtual 182455 remote_ip 5.5.5.183 182459 username barzegar 182459 mac 182459 bytes_out 566800 182459 bytes_in 4379209 182459 station_ip 5.119.69.200 182459 port 237 182459 unique_id port 182459 remote_ip 10.8.0.10 182463 username meysam 182463 kill_reason Another user logged on this global unique id 182463 mac 182463 bytes_out 0 182463 bytes_in 0 182463 station_ip 188.158.50.253 182463 port 210 182463 unique_id port 182463 remote_ip 10.8.0.158 182466 username meysam 182466 mac 182466 bytes_out 0 182466 bytes_in 0 182466 station_ip 188.158.50.253 182466 port 210 182466 unique_id port 182469 username saeed9658 182427 bytes_in 0 182427 station_ip 37.137.173.200 182427 port 236 182427 unique_id port 182428 username jafari 182428 mac 182428 bytes_out 0 182428 bytes_in 0 182428 station_ip 37.137.173.200 182428 port 236 182428 unique_id port 182433 username barzegar 182433 mac 182433 bytes_out 2628 182433 bytes_in 4921 182433 station_ip 5.119.69.200 182433 port 210 182433 unique_id port 182433 remote_ip 10.8.0.10 182434 username hosseine 182434 mac 182434 bytes_out 0 182434 bytes_in 0 182434 station_ip 83.123.92.231 182434 port 232 182434 unique_id port 182435 username barzegar 182435 mac 182435 bytes_out 0 182435 bytes_in 0 182435 station_ip 5.119.69.200 182435 port 210 182435 unique_id port 182435 remote_ip 10.8.0.10 182445 username mehdizare 182445 mac 182445 bytes_out 2840012 182445 bytes_in 36086184 182445 station_ip 83.123.4.209 182445 port 226 182445 unique_id port 182445 remote_ip 10.8.0.210 182446 username aminvpn 182446 mac 182446 bytes_out 0 182446 bytes_in 0 182446 station_ip 5.233.69.220 182446 port 226 182446 unique_id port 182446 remote_ip 10.8.0.58 182452 username aminvpn 182452 kill_reason Wrong password 182452 mac 182452 bytes_out 0 182452 bytes_in 0 182452 station_ip 5.120.155.168 182452 port 210 182452 unique_id port 182457 username alipour1506 182457 mac 182457 bytes_out 247690 182457 bytes_in 3768112 182457 station_ip 83.123.77.150 182457 port 210 182457 unique_id port 182457 remote_ip 10.8.0.126 182458 username godarzi 182458 mac 182458 bytes_out 344232 182458 bytes_in 1634994 182458 station_ip 5.119.251.172 182458 port 238 182458 unique_id port 182458 remote_ip 10.8.0.38 182460 username yaghobi 182460 mac 182460 bytes_out 247965 182460 bytes_in 262065 182460 station_ip 83.123.95.6 182460 port 239 182460 unique_id port 182460 remote_ip 10.8.0.138 182467 username barzegar 182467 mac 182467 bytes_out 2466 182467 bytes_in 4519 182467 station_ip 5.119.69.200 182467 port 244 182467 unique_id port 182467 remote_ip 10.8.0.10 182473 username malekpoir 182473 kill_reason Another user logged on this global unique id 182473 mac 182473 bytes_out 0 182473 bytes_in 0 182473 station_ip 5.119.171.212 182473 port 234 182473 unique_id port 182473 remote_ip 10.8.0.18 182477 username mehdizare 182477 mac 182477 bytes_out 626572 182477 bytes_in 3578073 182477 station_ip 83.123.4.209 182477 port 226 182477 unique_id port 182477 remote_ip 10.8.0.210 182478 username barzegar 182478 mac 182478 bytes_out 0 182478 bytes_in 0 182478 station_ip 5.119.69.200 182478 port 240 182478 unique_id port 182478 remote_ip 10.8.0.10 182480 username rashidi4690 182480 mac 182480 bytes_out 233478 182480 bytes_in 530977 182480 station_ip 5.120.81.126 182480 port 239 182480 unique_id port 182480 remote_ip 10.8.0.242 182483 username mehdizare 182483 mac 182483 bytes_out 20938 182483 bytes_in 32642 182483 station_ip 83.123.4.209 182483 port 238 182483 unique_id port 182483 remote_ip 10.8.0.210 182487 username shadkam 182487 mac 182487 bytes_out 17541 182487 bytes_in 16399 182487 station_ip 5.202.1.85 182487 port 246 182487 unique_id port 182487 remote_ip 10.8.0.74 182488 username sedighe 182488 mac 182488 bytes_out 598760 182488 bytes_in 3955916 182488 station_ip 83.123.27.65 182488 port 239 182488 unique_id port 182488 remote_ip 10.8.0.46 182491 username aminvpn 182491 mac 182491 bytes_out 3890252 182491 bytes_in 41327270 182491 station_ip 5.120.145.6 182491 port 241 182454 kill_reason Maximum check online fails reached 182454 mac 182454 bytes_out 0 182454 bytes_in 0 182454 station_ip 5.233.69.220 182454 port 232 182454 unique_id port 182456 username milan 182456 kill_reason Another user logged on this global unique id 182456 mac 182456 bytes_out 0 182456 bytes_in 0 182456 station_ip 5.119.97.240 182456 port 233 182456 unique_id port 182461 username barzegar 182461 mac 182461 bytes_out 0 182461 bytes_in 0 182461 station_ip 5.119.69.200 182461 port 237 182461 unique_id port 182461 remote_ip 10.8.0.10 182462 username rashidi4690 182462 mac 182462 bytes_out 46590 182462 bytes_in 62472 182462 station_ip 5.120.81.126 182462 port 239 182462 unique_id port 182462 remote_ip 10.8.0.242 182464 username barzegar 182464 mac 182464 bytes_out 119665 182464 bytes_in 827286 182464 station_ip 5.119.69.200 182464 port 237 182464 unique_id port 182464 remote_ip 10.8.0.10 182465 username yaghobi 182465 mac 182465 bytes_out 536034 182465 bytes_in 2589857 182465 station_ip 83.123.95.6 182465 port 238 182465 unique_id port 182465 remote_ip 10.8.0.138 182468 username alipour1506 182468 mac 182468 bytes_out 67341 182468 bytes_in 339220 182468 station_ip 83.123.77.150 182468 port 240 182468 unique_id port 182468 remote_ip 10.8.0.126 182470 username godarzi 182470 mac 182470 bytes_out 433603 182470 bytes_in 3408322 182470 station_ip 5.119.251.172 182470 port 238 182470 unique_id port 182470 remote_ip 10.8.0.38 182474 username kalantary6037 182474 mac 182474 bytes_out 171329 182474 bytes_in 673709 182474 station_ip 83.123.15.251 182474 port 238 182474 unique_id port 182474 remote_ip 10.8.0.50 182475 username barzegar 182475 mac 182475 bytes_out 0 182475 bytes_in 0 182475 station_ip 5.119.69.200 182475 port 238 182475 unique_id port 182475 remote_ip 10.8.0.10 182476 username meysam 182476 kill_reason Another user logged on this global unique id 182476 mac 182476 bytes_out 0 182476 bytes_in 0 182476 station_ip 188.158.50.253 182476 port 210 182476 unique_id port 182476 remote_ip 10.8.0.158 182479 username mehdizare 182479 mac 182479 bytes_out 11554 182479 bytes_in 14581 182479 station_ip 83.123.4.209 182479 port 238 182479 unique_id port 182479 remote_ip 10.8.0.210 182484 username alipour1506 182484 mac 182484 bytes_out 2099916 182484 bytes_in 35287795 182484 station_ip 83.123.77.150 182484 port 244 182484 unique_id port 182484 remote_ip 10.8.0.126 182485 username barzegar 182485 mac 182485 bytes_out 0 182485 bytes_in 0 182485 station_ip 5.119.69.200 182485 port 242 182485 unique_id port 182485 remote_ip 10.8.0.10 182486 username rashidi4690 182486 mac 182486 bytes_out 54706 182486 bytes_in 117478 182486 station_ip 5.120.81.126 182486 port 244 182486 unique_id port 182486 remote_ip 10.8.0.242 182489 username sabaghnezhad 182489 mac 182489 bytes_out 1062829 182489 bytes_in 5992148 182489 station_ip 83.123.64.23 182489 port 236 182489 unique_id port 182489 remote_ip 10.8.0.66 182498 username rashidi4690 182498 mac 182498 bytes_out 46246 182498 bytes_in 112949 182498 station_ip 5.120.81.126 182498 port 226 182498 unique_id port 182498 remote_ip 10.8.0.242 182501 username aminvpn 182501 mac 182501 bytes_out 38052 182501 bytes_in 45913 182501 station_ip 5.120.145.6 182501 port 236 182501 unique_id port 182501 remote_ip 10.8.0.58 182502 username barzegar 182502 mac 182502 bytes_out 0 182502 bytes_in 0 182502 station_ip 5.119.69.200 182502 port 239 182502 unique_id port 182502 remote_ip 10.8.0.10 182469 mac 182469 bytes_out 162958 182469 bytes_in 406687 182469 station_ip 5.120.34.92 182469 port 242 182469 unique_id port 182469 remote_ip 10.8.0.162 182471 username barzegar 182471 mac 182471 bytes_out 0 182471 bytes_in 0 182471 station_ip 5.119.69.200 182471 port 240 182471 unique_id port 182471 remote_ip 10.8.0.10 182472 username sedighe 182472 mac 182472 bytes_out 568484 182472 bytes_in 6957144 182472 station_ip 83.123.27.65 182472 port 239 182472 unique_id port 182472 remote_ip 10.8.0.46 182481 username yaghobi 182481 mac 182481 bytes_out 634486 182481 bytes_in 1418435 182481 station_ip 83.123.95.6 182481 port 237 182481 unique_id port 182481 remote_ip 10.8.0.138 182482 username rashidi4690 182482 mac 182482 bytes_out 17116 182482 bytes_in 87355 182482 station_ip 5.120.81.126 182482 port 237 182482 unique_id port 182482 remote_ip 10.8.0.242 182490 username mohammadjavad 182490 mac 182490 bytes_out 243771 182490 bytes_in 1477972 182490 station_ip 83.123.71.101 182490 port 245 182490 unique_id port 182490 remote_ip 10.8.0.110 182493 username saeeddamghani 182493 mac 182493 bytes_out 2944570 182493 bytes_in 36029708 182493 station_ip 5.119.217.96 182493 port 226 182493 unique_id port 182493 remote_ip 10.8.0.122 182495 username motamedi9772 182495 mac 182495 bytes_out 0 182495 bytes_in 0 182495 station_ip 83.123.118.235 182495 port 226 182495 unique_id port 182495 remote_ip 10.8.0.154 182496 username godarzi 182496 kill_reason Another user logged on this global unique id 182496 mac 182496 bytes_out 0 182496 bytes_in 0 182496 station_ip 5.202.97.167 182496 port 238 182496 unique_id port 182496 remote_ip 10.8.0.38 182497 username barzegar 182497 mac 182497 bytes_out 0 182497 bytes_in 0 182497 station_ip 5.119.69.200 182497 port 226 182497 unique_id port 182497 remote_ip 10.8.0.10 182505 username kalantary6037 182505 mac 182505 bytes_out 315479 182505 bytes_in 2318184 182505 station_ip 83.123.6.211 182505 port 226 182505 unique_id port 182505 remote_ip 10.8.0.50 182507 username yaghobi 182507 mac 182507 bytes_out 442064 182507 bytes_in 680506 182507 station_ip 83.123.93.23 182507 port 240 182507 unique_id port 182507 remote_ip 10.8.0.138 182509 username barzegar 182509 mac 182509 bytes_out 0 182509 bytes_in 0 182509 station_ip 5.119.69.200 182509 port 240 182509 unique_id port 182509 remote_ip 10.8.0.10 182512 username soleymani5056 182512 mac 182512 bytes_out 48836 182512 bytes_in 67852 182512 station_ip 5.119.199.76 182512 port 210 182512 unique_id port 182512 remote_ip 10.8.0.226 182515 username houshang 182515 mac 182515 bytes_out 141363 182515 bytes_in 378482 182515 station_ip 5.120.164.154 182515 port 234 182515 unique_id port 182515 remote_ip 10.8.0.82 182519 username aminvpn 182519 mac 182519 bytes_out 0 182519 bytes_in 0 182519 station_ip 5.233.69.220 182519 port 237 182519 unique_id port 182519 remote_ip 10.8.0.58 182527 username aminvpn 182527 unique_id port 182527 terminate_cause Lost-Carrier 182527 bytes_out 165995 182527 bytes_in 272451 182527 station_ip 83.123.4.159 182527 port 15728908 182527 nas_port_type Virtual 182527 remote_ip 5.5.5.179 182529 username sedighe 182529 mac 182529 bytes_out 85623 182529 bytes_in 78130 182529 station_ip 83.123.31.159 182529 port 234 182529 unique_id port 182529 remote_ip 10.8.0.46 182531 username godarzi 182531 kill_reason Another user logged on this global unique id 182531 mac 182531 bytes_out 0 182531 bytes_in 0 182531 station_ip 5.202.97.167 182531 port 238 182491 unique_id port 182491 remote_ip 10.8.0.58 182492 username rashidi4690 182492 mac 182492 bytes_out 4007 182492 bytes_in 9018 182492 station_ip 5.120.81.126 182492 port 239 182492 unique_id port 182492 remote_ip 10.8.0.242 182494 username meysam 182494 kill_reason Another user logged on this global unique id 182494 mac 182494 bytes_out 0 182494 bytes_in 0 182494 station_ip 188.158.50.253 182494 port 210 182494 unique_id port 182499 username meysam 182499 mac 182499 bytes_out 0 182499 bytes_in 0 182499 station_ip 188.158.50.253 182499 port 210 182499 unique_id port 182500 username soleymani5056 182500 mac 182500 bytes_out 104221 182500 bytes_in 226155 182500 station_ip 5.119.54.27 182500 port 239 182500 unique_id port 182500 remote_ip 10.8.0.226 182503 username mehdizare 182503 mac 182503 bytes_out 23664 182503 bytes_in 33779 182503 station_ip 83.123.4.209 182503 port 237 182503 unique_id port 182503 remote_ip 10.8.0.210 182506 username sedighe 182506 mac 182506 bytes_out 154770 182506 bytes_in 392202 182506 station_ip 83.123.27.65 182506 port 244 182506 unique_id port 182506 remote_ip 10.8.0.46 182508 username meysam 182508 mac 182508 bytes_out 785819 182508 bytes_in 11035513 182508 station_ip 188.158.49.170 182508 port 245 182508 unique_id port 182508 remote_ip 10.8.0.158 182510 username malekpoir 182510 mac 182510 bytes_out 0 182510 bytes_in 0 182510 station_ip 5.119.171.212 182510 port 234 182510 unique_id port 182513 username aminvpn 182513 mac 182513 bytes_out 938616 182513 bytes_in 5187363 182513 station_ip 5.120.145.6 182513 port 241 182513 unique_id port 182513 remote_ip 10.8.0.58 182514 username mehdizare 182514 mac 182514 bytes_out 14622 182514 bytes_in 16953 182514 station_ip 83.123.4.209 182514 port 239 182514 unique_id port 182514 remote_ip 10.8.0.210 182517 username yaghobi 182517 mac 182517 bytes_out 257656 182517 bytes_in 364152 182517 station_ip 83.123.46.160 182517 port 237 182517 unique_id port 182517 remote_ip 10.8.0.138 182520 username aminvpn 182520 mac 182520 bytes_out 0 182520 bytes_in 0 182520 station_ip 5.233.69.220 182520 port 210 182520 unique_id port 182520 remote_ip 10.8.0.58 182522 username mohammadjavad 182522 mac 182522 bytes_out 637629 182522 bytes_in 9923494 182522 station_ip 83.123.123.193 182522 port 234 182522 unique_id port 182522 remote_ip 10.8.0.110 182523 username yaghobi 182523 mac 182523 bytes_out 119730 182523 bytes_in 181564 182523 station_ip 83.123.46.160 182523 port 239 182523 unique_id port 182523 remote_ip 10.8.0.138 182524 username barzegar 182524 mac 182524 bytes_out 0 182524 bytes_in 0 182524 station_ip 5.119.69.200 182524 port 234 182524 unique_id port 182524 remote_ip 10.8.0.10 182525 username sedighe 182525 mac 182525 bytes_out 241741 182525 bytes_in 357525 182525 station_ip 83.123.56.187 182525 port 226 182525 unique_id port 182525 remote_ip 10.8.0.46 182526 username yaghobi 182526 mac 182526 bytes_out 82258 182526 bytes_in 121243 182526 station_ip 83.123.46.160 182526 port 210 182526 unique_id port 182526 remote_ip 10.8.0.138 182532 username dortaj3792 182532 mac 182532 bytes_out 167376 182532 bytes_in 183737 182532 station_ip 5.120.3.131 182532 port 226 182532 unique_id port 182532 remote_ip 10.8.0.102 182534 username aminvpn 182534 mac 182534 bytes_out 175927 182534 bytes_in 201517 182534 station_ip 5.120.145.6 182534 port 234 182534 unique_id port 182534 remote_ip 10.8.0.58 182536 username yaghobi 182504 username malekpoir 182504 kill_reason Another user logged on this global unique id 182504 mac 182504 bytes_out 0 182504 bytes_in 0 182504 station_ip 5.119.171.212 182504 port 234 182504 unique_id port 182511 username sedighe 182511 mac 182511 bytes_out 44347 182511 bytes_in 164660 182511 station_ip 83.123.56.187 182511 port 226 182511 unique_id port 182511 remote_ip 10.8.0.46 182516 username barzegar 182516 mac 182516 bytes_out 0 182516 bytes_in 0 182516 station_ip 5.119.69.200 182516 port 239 182516 unique_id port 182516 remote_ip 10.8.0.10 182518 username aminvpn 182518 mac 182518 bytes_out 58261 182518 bytes_in 71116 182518 station_ip 5.120.145.6 182518 port 210 182518 unique_id port 182518 remote_ip 10.8.0.58 182521 username dortaj3792 182521 mac 182521 bytes_out 1483998 182521 bytes_in 4333539 182521 station_ip 5.120.3.131 182521 port 243 182521 unique_id port 182521 remote_ip 10.8.0.102 182528 username yaghobi 182528 mac 182528 bytes_out 32440 182528 bytes_in 26081 182528 station_ip 83.123.46.160 182528 port 237 182528 unique_id port 182528 remote_ip 10.8.0.138 182530 username shadkam 182530 mac 182530 bytes_out 13187323 182530 bytes_in 9757745 182530 station_ip 83.123.105.49 182530 port 239 182530 unique_id port 182530 remote_ip 10.8.0.74 182535 username fezealinaghi 182535 kill_reason Another user logged on this global unique id 182535 mac 182535 bytes_out 0 182535 bytes_in 0 182535 station_ip 83.123.97.75 182535 port 226 182535 unique_id port 182535 remote_ip 10.8.0.202 182538 username barzegar 182538 mac 182538 bytes_out 97479 182538 bytes_in 376205 182538 station_ip 5.119.69.200 182538 port 210 182538 unique_id port 182538 remote_ip 10.8.0.10 182539 username motamedi9772 182539 mac 182539 bytes_out 1464535 182539 bytes_in 17435187 182539 station_ip 83.123.123.39 182539 port 243 182539 unique_id port 182539 remote_ip 10.8.0.154 182541 username sedighe 182541 mac 182541 bytes_out 222664 182541 bytes_in 321570 182541 station_ip 83.123.31.159 182541 port 237 182541 unique_id port 182541 remote_ip 10.8.0.46 182543 username alipour1506 182543 mac 182543 bytes_out 209359 182543 bytes_in 427558 182543 station_ip 83.123.77.150 182543 port 242 182543 unique_id port 182543 remote_ip 10.8.0.126 182549 username aminvpn 182549 mac 182549 bytes_out 0 182549 bytes_in 0 182549 station_ip 5.233.69.220 182549 port 234 182549 unique_id port 182549 remote_ip 10.8.0.58 182550 username yaghobi 182550 mac 182550 bytes_out 40455 182550 bytes_in 60331 182550 station_ip 83.123.46.160 182550 port 237 182550 unique_id port 182550 remote_ip 10.8.0.138 182556 username mehdizare 182556 mac 182556 bytes_out 19986 182556 bytes_in 37614 182556 station_ip 83.123.4.209 182556 port 234 182556 unique_id port 182556 remote_ip 10.8.0.210 182558 username barzegar 182558 mac 182558 bytes_out 6609 182558 bytes_in 13086 182558 station_ip 5.119.69.200 182558 port 210 182558 unique_id port 182558 remote_ip 10.8.0.10 182560 username aminvpn 182560 mac 182560 bytes_out 1644 182560 bytes_in 4930 182560 station_ip 5.233.69.220 182560 port 237 182560 unique_id port 182560 remote_ip 10.8.0.58 182561 username barzegar 182561 kill_reason Another user logged on this global unique id 182561 mac 182561 bytes_out 0 182561 bytes_in 0 182561 station_ip 5.119.69.200 182561 port 210 182561 unique_id port 182566 username aminvpn 182566 mac 182566 bytes_out 217553 182566 bytes_in 595344 182566 station_ip 5.120.145.6 182566 port 210 182566 unique_id port 182531 unique_id port 182533 username rashidi4690 182533 kill_reason Another user logged on this global unique id 182533 mac 182533 bytes_out 0 182533 bytes_in 0 182533 station_ip 5.120.81.126 182533 port 236 182533 unique_id port 182533 remote_ip 10.8.0.242 182540 username saeeddamghani 182540 unique_id port 182540 terminate_cause User-Request 182540 bytes_out 172888 182540 bytes_in 4511625 182540 station_ip 83.123.69.87 182540 port 15728911 182540 nas_port_type Virtual 182540 remote_ip 5.5.5.177 182542 username dortaj3792 182542 mac 182542 bytes_out 50354 182542 bytes_in 58533 182542 station_ip 5.120.3.131 182542 port 244 182542 unique_id port 182542 remote_ip 10.8.0.102 182544 username soleymani5056 182544 mac 182544 bytes_out 128006 182544 bytes_in 229030 182544 station_ip 5.119.20.76 182544 port 234 182544 unique_id port 182544 remote_ip 10.8.0.226 182545 username yaghobi 182545 mac 182545 bytes_out 112420 182545 bytes_in 108774 182545 station_ip 83.123.46.160 182545 port 239 182545 unique_id port 182545 remote_ip 10.8.0.138 182546 username mehdizare 182546 mac 182546 bytes_out 249818 182546 bytes_in 458917 182546 station_ip 83.123.4.209 182546 port 241 182546 unique_id port 182546 remote_ip 10.8.0.210 182547 username godarzi 182547 kill_reason Another user logged on this global unique id 182547 mac 182547 bytes_out 0 182547 bytes_in 0 182547 station_ip 5.202.97.167 182547 port 238 182547 unique_id port 182553 username mehdizare 182553 mac 182553 bytes_out 15121 182553 bytes_in 20546 182553 station_ip 83.123.4.209 182553 port 239 182553 unique_id port 182553 remote_ip 10.8.0.210 182554 username yaghobi 182554 mac 182554 bytes_out 80700 182554 bytes_in 85253 182554 station_ip 83.123.46.160 182554 port 210 182554 unique_id port 182554 remote_ip 10.8.0.138 182559 username barzegar 182559 mac 182559 bytes_out 2729 182559 bytes_in 5147 182559 station_ip 5.119.69.200 182559 port 210 182559 unique_id port 182559 remote_ip 10.8.0.10 182562 username fezealinaghi 182562 mac 182562 bytes_out 0 182562 bytes_in 0 182562 station_ip 83.123.97.75 182562 port 226 182562 unique_id port 182570 username aminvpn 182570 mac 182570 bytes_out 0 182570 bytes_in 0 182570 station_ip 5.120.145.6 182570 port 236 182570 unique_id port 182570 remote_ip 10.8.0.58 182573 username aminvpn 182573 mac 182573 bytes_out 0 182573 bytes_in 0 182573 station_ip 5.120.145.6 182573 port 236 182573 unique_id port 182573 remote_ip 10.8.0.58 182576 username aminvpn 182576 mac 182576 bytes_out 0 182576 bytes_in 0 182576 station_ip 5.120.145.6 182576 port 239 182576 unique_id port 182576 remote_ip 10.8.0.58 182577 username aminvpn 182577 mac 182577 bytes_out 0 182577 bytes_in 0 182577 station_ip 5.120.145.6 182577 port 240 182577 unique_id port 182577 remote_ip 10.8.0.58 182585 username aminvpn 182585 mac 182585 bytes_out 0 182585 bytes_in 0 182585 station_ip 5.120.145.6 182585 port 240 182585 unique_id port 182585 remote_ip 10.8.0.58 182591 username mehdizare 182591 mac 182591 bytes_out 32300 182591 bytes_in 45692 182591 station_ip 83.123.4.209 182591 port 234 182591 unique_id port 182591 remote_ip 10.8.0.210 182595 username fezealinaghi 182595 kill_reason Another user logged on this global unique id 182595 mac 182595 bytes_out 0 182595 bytes_in 0 182595 station_ip 83.123.3.35 182595 port 240 182595 unique_id port 182599 username aminvpn 182599 mac 182599 bytes_out 0 182599 bytes_in 0 182599 station_ip 5.233.69.220 182599 port 245 182536 mac 182536 bytes_out 84238 182536 bytes_in 104891 182536 station_ip 83.123.46.160 182536 port 243 182536 unique_id port 182536 remote_ip 10.8.0.138 182537 username saeeddamghani 182537 unique_id port 182537 terminate_cause User-Request 182537 bytes_out 0 182537 bytes_in 0 182537 station_ip 83.123.69.87 182537 port 15728910 182537 nas_port_type Virtual 182537 remote_ip 5.5.5.177 182548 username sedighe 182548 mac 182548 bytes_out 41008 182548 bytes_in 63726 182548 station_ip 83.123.31.159 182548 port 234 182548 unique_id port 182548 remote_ip 10.8.0.46 182551 username barzegar 182551 mac 182551 bytes_out 8827 182551 bytes_in 10837 182551 station_ip 5.119.69.200 182551 port 210 182551 unique_id port 182551 remote_ip 10.8.0.10 182552 username yaghobi 182552 mac 182552 bytes_out 0 182552 bytes_in 0 182552 station_ip 83.123.46.160 182552 port 234 182552 unique_id port 182552 remote_ip 10.8.0.138 182555 username fezealinaghi 182555 kill_reason Another user logged on this global unique id 182555 mac 182555 bytes_out 0 182555 bytes_in 0 182555 station_ip 83.123.97.75 182555 port 226 182555 unique_id port 182557 username rashidi4690 182557 kill_reason Another user logged on this global unique id 182557 mac 182557 bytes_out 0 182557 bytes_in 0 182557 station_ip 5.120.81.126 182557 port 236 182557 unique_id port 182563 username barzegar 182563 kill_reason Maximum check online fails reached 182563 mac 182563 bytes_out 0 182563 bytes_in 0 182563 station_ip 5.119.69.200 182563 port 210 182563 unique_id port 182564 username godarzi 182564 kill_reason Another user logged on this global unique id 182564 mac 182564 bytes_out 0 182564 bytes_in 0 182564 station_ip 5.202.97.167 182564 port 238 182564 unique_id port 182565 username rashidi4690 182565 mac 182565 bytes_out 0 182565 bytes_in 0 182565 station_ip 5.120.81.126 182565 port 236 182565 unique_id port 182568 username malekpoir 182568 kill_reason Another user logged on this global unique id 182568 mac 182568 bytes_out 0 182568 bytes_in 0 182568 station_ip 5.119.94.221 182568 port 240 182568 unique_id port 182568 remote_ip 10.8.0.18 182569 username aminvpn 182569 mac 182569 bytes_out 0 182569 bytes_in 0 182569 station_ip 5.120.145.6 182569 port 210 182569 unique_id port 182569 remote_ip 10.8.0.58 182571 username aminvpn 182571 mac 182571 bytes_out 0 182571 bytes_in 0 182571 station_ip 5.233.69.220 182571 port 237 182571 unique_id port 182571 remote_ip 10.8.0.58 182574 username aminvpn 182574 mac 182574 bytes_out 0 182574 bytes_in 0 182574 station_ip 5.120.145.6 182574 port 239 182574 unique_id port 182574 remote_ip 10.8.0.58 182575 username aminvpn 182575 mac 182575 bytes_out 0 182575 bytes_in 0 182575 station_ip 5.233.69.220 182575 port 236 182575 unique_id port 182575 remote_ip 10.8.0.58 182578 username aminvpn 182578 mac 182578 bytes_out 0 182578 bytes_in 0 182578 station_ip 5.120.145.6 182578 port 239 182578 unique_id port 182578 remote_ip 10.8.0.58 182579 username aminvpn 182579 mac 182579 bytes_out 0 182579 bytes_in 0 182579 station_ip 5.120.145.6 182579 port 240 182579 unique_id port 182579 remote_ip 10.8.0.58 182583 username meysam 182583 kill_reason Another user logged on this global unique id 182583 mac 182583 bytes_out 0 182583 bytes_in 0 182583 station_ip 188.158.51.199 182583 port 226 182583 unique_id port 182583 remote_ip 10.8.0.158 182587 username aminvpn 182587 mac 182587 bytes_out 0 182587 bytes_in 0 182587 station_ip 5.120.145.6 182587 port 239 182587 unique_id port 182566 remote_ip 10.8.0.58 182567 username aminvpn 182567 mac 182567 bytes_out 0 182567 bytes_in 0 182567 station_ip 5.120.145.6 182567 port 236 182567 unique_id port 182567 remote_ip 10.8.0.58 182572 username malekpoir 182572 mac 182572 bytes_out 0 182572 bytes_in 0 182572 station_ip 5.119.94.221 182572 port 240 182572 unique_id port 182580 username aminvpn 182580 mac 182580 bytes_out 0 182580 bytes_in 0 182580 station_ip 5.120.145.6 182580 port 239 182580 unique_id port 182580 remote_ip 10.8.0.58 182581 username aminvpn 182581 mac 182581 bytes_out 0 182581 bytes_in 0 182581 station_ip 5.120.145.6 182581 port 240 182581 unique_id port 182581 remote_ip 10.8.0.58 182582 username aminvpn 182582 mac 182582 bytes_out 0 182582 bytes_in 0 182582 station_ip 5.120.145.6 182582 port 239 182582 unique_id port 182582 remote_ip 10.8.0.58 182584 username shadkam 182584 mac 182584 bytes_out 1054364 182584 bytes_in 11775247 182584 station_ip 83.123.17.179 182584 port 236 182584 unique_id port 182584 remote_ip 10.8.0.74 182586 username aminvpn 182586 mac 182586 bytes_out 0 182586 bytes_in 0 182586 station_ip 5.120.145.6 182586 port 236 182586 unique_id port 182586 remote_ip 10.8.0.58 182588 username aminvpn 182588 mac 182588 bytes_out 726994 182588 bytes_in 2894349 182588 station_ip 5.120.145.6 182588 port 236 182588 unique_id port 182588 remote_ip 10.8.0.58 182589 username aminvpn 182589 mac 182589 bytes_out 0 182589 bytes_in 0 182589 station_ip 5.233.69.220 182589 port 242 182589 unique_id port 182589 remote_ip 10.8.0.58 182592 username fezealinaghi 182592 kill_reason Another user logged on this global unique id 182592 mac 182592 bytes_out 0 182592 bytes_in 0 182592 station_ip 83.123.3.35 182592 port 240 182592 unique_id port 182592 remote_ip 10.8.0.202 182593 username motamedi9772 182593 mac 182593 bytes_out 103637 182593 bytes_in 119920 182593 station_ip 83.123.86.207 182593 port 242 182593 unique_id port 182593 remote_ip 10.8.0.154 182596 username mehdizare 182596 mac 182596 bytes_out 23512 182596 bytes_in 37443 182596 station_ip 83.123.4.209 182596 port 242 182596 unique_id port 182596 remote_ip 10.8.0.210 182597 username aminvpn 182597 mac 182597 bytes_out 692471 182597 bytes_in 2267451 182597 station_ip 5.120.145.6 182597 port 236 182597 unique_id port 182597 remote_ip 10.8.0.58 182598 username charkhandaz3496 182598 mac 182598 bytes_out 273616 182598 bytes_in 1976676 182598 station_ip 5.119.168.212 182598 port 239 182598 unique_id port 182598 remote_ip 10.8.0.90 182600 username mehdizare 182600 mac 182600 bytes_out 21265 182600 bytes_in 23897 182600 station_ip 83.123.4.209 182600 port 242 182600 unique_id port 182600 remote_ip 10.8.0.210 182602 username alipour1506 182602 mac 182602 bytes_out 215678 182602 bytes_in 487275 182602 station_ip 83.123.77.150 182602 port 241 182602 unique_id port 182602 remote_ip 10.8.0.126 182611 username mehdizare 182611 mac 182611 bytes_out 12616 182611 bytes_in 18731 182611 station_ip 83.123.4.209 182611 port 245 182611 unique_id port 182611 remote_ip 10.8.0.210 182614 username yaghobi 182614 mac 182614 bytes_out 2171 182614 bytes_in 4112 182614 station_ip 83.123.17.33 182614 port 245 182614 unique_id port 182614 remote_ip 10.8.0.138 182619 username aminvpn 182619 mac 182619 bytes_out 48939 182619 bytes_in 171170 182619 station_ip 5.120.145.6 182619 port 239 182619 unique_id port 182619 remote_ip 10.8.0.58 182587 remote_ip 10.8.0.58 182590 username mohammadjavad 182590 mac 182590 bytes_out 181712 182590 bytes_in 675324 182590 station_ip 83.123.88.77 182590 port 239 182590 unique_id port 182590 remote_ip 10.8.0.110 182594 username meysam 182594 kill_reason Another user logged on this global unique id 182594 mac 182594 bytes_out 0 182594 bytes_in 0 182594 station_ip 188.158.51.199 182594 port 226 182594 unique_id port 182606 username mehdizare 182606 mac 182606 bytes_out 10109 182606 bytes_in 12670 182606 station_ip 83.123.4.209 182606 port 245 182606 unique_id port 182606 remote_ip 10.8.0.210 182609 username hosseine 182609 kill_reason Another user logged on this global unique id 182609 mac 182609 bytes_out 0 182609 bytes_in 0 182609 station_ip 83.123.62.203 182609 port 234 182609 unique_id port 182610 username kalantary6037 182610 mac 182610 bytes_out 279557 182610 bytes_in 1315775 182610 station_ip 83.123.99.63 182610 port 247 182610 unique_id port 182610 remote_ip 10.8.0.50 182612 username mehdizare 182612 kill_reason Another user logged on this global unique id 182612 mac 182612 bytes_out 0 182612 bytes_in 0 182612 station_ip 83.123.4.209 182612 port 247 182612 unique_id port 182612 remote_ip 10.8.0.210 182615 username fezealinaghi 182615 kill_reason Another user logged on this global unique id 182615 mac 182615 bytes_out 0 182615 bytes_in 0 182615 station_ip 83.123.3.35 182615 port 240 182615 unique_id port 182616 username dortaj3792 182616 mac 182616 bytes_out 612445 182616 bytes_in 1615058 182616 station_ip 5.120.3.131 182616 port 210 182616 unique_id port 182616 remote_ip 10.8.0.102 182618 username alipour1506 182618 mac 182618 bytes_out 120340 182618 bytes_in 154725 182618 station_ip 83.123.77.150 182618 port 242 182618 unique_id port 182618 remote_ip 10.8.0.126 182622 username kordestani 182622 kill_reason Another user logged on this global unique id 182622 mac 182622 bytes_out 0 182622 bytes_in 0 182622 station_ip 151.235.100.231 182622 port 241 182622 unique_id port 182622 remote_ip 10.8.0.130 182623 username yaghobi 182623 mac 182623 bytes_out 102822 182623 bytes_in 116016 182623 station_ip 83.123.17.33 182623 port 248 182623 unique_id port 182623 remote_ip 10.8.0.138 182627 username fezealinaghi 182627 kill_reason Another user logged on this global unique id 182627 mac 182627 bytes_out 0 182627 bytes_in 0 182627 station_ip 83.123.3.35 182627 port 240 182627 unique_id port 182630 username godarzi 182630 kill_reason Another user logged on this global unique id 182630 mac 182630 bytes_out 0 182630 bytes_in 0 182630 station_ip 5.202.97.167 182630 port 238 182630 unique_id port 182631 username alipour1506 182631 mac 182631 bytes_out 53604 182631 bytes_in 75656 182631 station_ip 83.123.77.150 182631 port 226 182631 unique_id port 182631 remote_ip 10.8.0.126 182632 username shadkam 182632 mac 182632 bytes_out 469585 182632 bytes_in 4199382 182632 station_ip 83.123.29.242 182632 port 226 182632 unique_id port 182632 remote_ip 10.8.0.74 182634 username hosseine 182634 kill_reason Another user logged on this global unique id 182634 mac 182634 bytes_out 0 182634 bytes_in 0 182634 station_ip 83.123.62.203 182634 port 234 182634 unique_id port 182638 username mohammadjavad 182638 mac 182638 bytes_out 0 182638 bytes_in 0 182638 station_ip 83.123.51.88 182638 port 236 182638 unique_id port 182638 remote_ip 10.8.0.110 182641 username khademi 182641 mac 182641 bytes_out 0 182641 bytes_in 0 182641 station_ip 83.123.54.146 182641 port 218 182641 unique_id port 182643 username fezealinaghi 182658 port 238 182599 unique_id port 182599 remote_ip 10.8.0.58 182601 username mehdizare 182601 mac 182601 bytes_out 10091 182601 bytes_in 14370 182601 station_ip 83.123.4.209 182601 port 245 182601 unique_id port 182601 remote_ip 10.8.0.210 182603 username hosseine 182603 kill_reason Another user logged on this global unique id 182603 mac 182603 bytes_out 0 182603 bytes_in 0 182603 station_ip 83.123.62.203 182603 port 234 182603 unique_id port 182603 remote_ip 10.8.0.54 182604 username fezealinaghi 182604 kill_reason Another user logged on this global unique id 182604 mac 182604 bytes_out 0 182604 bytes_in 0 182604 station_ip 83.123.3.35 182604 port 240 182604 unique_id port 182605 username yaghobi 182605 mac 182605 bytes_out 413414 182605 bytes_in 574345 182605 station_ip 83.123.48.42 182605 port 243 182605 unique_id port 182605 remote_ip 10.8.0.138 182607 username aminvpn 182607 mac 182607 bytes_out 385262 182607 bytes_in 3542707 182607 station_ip 5.120.145.6 182607 port 239 182607 unique_id port 182607 remote_ip 10.8.0.58 182608 username aminvpn 182608 mac 182608 bytes_out 0 182608 bytes_in 0 182608 station_ip 5.233.69.220 182608 port 247 182608 unique_id port 182608 remote_ip 10.8.0.58 182613 username meysam 182613 kill_reason Another user logged on this global unique id 182613 mac 182613 bytes_out 0 182613 bytes_in 0 182613 station_ip 188.158.51.199 182613 port 226 182613 unique_id port 182617 username meysam 182617 mac 182617 bytes_out 0 182617 bytes_in 0 182617 station_ip 188.158.51.199 182617 port 226 182617 unique_id port 182621 username sabaghnezhad 182621 mac 182621 bytes_out 1700 182621 bytes_in 3863 182621 station_ip 83.123.60.143 182621 port 239 182621 unique_id port 182621 remote_ip 10.8.0.66 182625 username kordestani 182625 mac 182625 bytes_out 0 182625 bytes_in 0 182625 station_ip 151.235.100.231 182625 port 241 182625 unique_id port 182629 username sobhan 182629 unique_id port 182629 terminate_cause Lost-Carrier 182629 bytes_out 61485 182629 bytes_in 157094 182629 station_ip 31.56.216.175 182629 port 15728921 182629 nas_port_type Virtual 182629 remote_ip 5.5.5.176 182637 username mehdizare 182637 mac 182637 bytes_out 0 182637 bytes_in 0 182637 station_ip 83.123.4.209 182637 port 247 182637 unique_id port 182642 username yaghobi 182642 mac 182642 bytes_out 50362 182642 bytes_in 41607 182642 station_ip 83.123.81.208 182642 port 226 182642 unique_id port 182642 remote_ip 10.8.0.138 182644 username kalantary6037 182644 mac 182644 bytes_out 425612 182644 bytes_in 2263290 182644 station_ip 83.123.99.63 182644 port 218 182644 unique_id port 182644 remote_ip 10.8.0.50 182645 username alihosseini1 182645 kill_reason Another user logged on this global unique id 182645 mac 182645 bytes_out 0 182645 bytes_in 0 182645 station_ip 5.119.45.187 182645 port 210 182645 unique_id port 182645 remote_ip 10.8.0.234 182647 username aminvpn 182647 mac 182647 bytes_out 0 182647 bytes_in 0 182647 station_ip 5.233.69.220 182647 port 247 182647 unique_id port 182647 remote_ip 10.8.0.58 182651 username soleymani5056 182651 mac 182651 bytes_out 111278 182651 bytes_in 137740 182651 station_ip 5.120.190.11 182651 port 226 182651 unique_id port 182651 remote_ip 10.8.0.226 182653 username charkhandaz3496 182653 mac 182653 bytes_out 1719351 182653 bytes_in 17440298 182653 station_ip 5.119.168.212 182653 port 246 182653 unique_id port 182653 remote_ip 10.8.0.90 182658 username alipour1506 182658 mac 182658 bytes_out 36198 182658 bytes_in 52954 182658 station_ip 83.123.77.150 182620 username sabaghnezhad 182620 mac 182620 bytes_out 51189 182620 bytes_in 65597 182620 station_ip 83.123.60.143 182620 port 244 182620 unique_id port 182620 remote_ip 10.8.0.66 182624 username aminvpn 182624 kill_reason Maximum check online fails reached 182624 unique_id port 182624 bytes_out 149563 182624 bytes_in 555616 182624 station_ip 83.123.4.159 182624 port 15728922 182624 nas_port_type Virtual 182624 remote_ip 5.5.5.179 182626 username rashidi4690 182626 mac 182626 bytes_out 3415770 182626 bytes_in 29786584 182626 station_ip 5.120.81.126 182626 port 236 182626 unique_id port 182626 remote_ip 10.8.0.242 182628 username hosseine 182628 kill_reason Another user logged on this global unique id 182628 mac 182628 bytes_out 0 182628 bytes_in 0 182628 station_ip 83.123.62.203 182628 port 234 182628 unique_id port 182633 username dortaj3792 182633 mac 182633 bytes_out 187282 182633 bytes_in 271242 182633 station_ip 5.120.3.131 182633 port 245 182633 unique_id port 182633 remote_ip 10.8.0.102 182635 username alipour1506 182635 mac 182635 bytes_out 1650 182635 bytes_in 5166 182635 station_ip 83.123.77.150 182635 port 236 182635 unique_id port 182635 remote_ip 10.8.0.126 182636 username aminvpn 182636 mac 182636 bytes_out 134820 182636 bytes_in 353360 182636 station_ip 5.120.145.6 182636 port 242 182636 unique_id port 182636 remote_ip 10.8.0.58 182639 username hosseine 182639 kill_reason Another user logged on this global unique id 182639 mac 182639 bytes_out 0 182639 bytes_in 0 182639 station_ip 83.123.62.203 182639 port 234 182639 unique_id port 182640 username yaghobi 182640 mac 182640 bytes_out 121131 182640 bytes_in 122852 182640 station_ip 83.123.81.208 182640 port 226 182640 unique_id port 182640 remote_ip 10.8.0.138 182649 username kalantary6037 182649 mac 182649 bytes_out 88146 182649 bytes_in 496015 182649 station_ip 83.123.99.63 182649 port 210 182649 unique_id port 182649 remote_ip 10.8.0.50 182652 username godarzi 182652 mac 182652 bytes_out 0 182652 bytes_in 0 182652 station_ip 5.202.97.167 182652 port 238 182652 unique_id port 182656 username esmaeilkazemi 182656 mac 182656 bytes_out 0 182656 bytes_in 0 182656 station_ip 83.123.61.221 182656 port 236 182656 unique_id port 182656 remote_ip 10.8.0.26 182657 username rashidi4690 182657 kill_reason Another user logged on this global unique id 182657 mac 182657 bytes_out 0 182657 bytes_in 0 182657 station_ip 5.120.81.126 182657 port 241 182657 unique_id port 182657 remote_ip 10.8.0.242 182661 username yaghobi 182661 mac 182661 bytes_out 400355 182661 bytes_in 1011446 182661 station_ip 83.123.22.93 182661 port 218 182661 unique_id port 182661 remote_ip 10.8.0.138 182664 username alikomsari 182664 kill_reason Another user logged on this global unique id 182664 mac 182664 bytes_out 0 182664 bytes_in 0 182664 station_ip 5.119.138.121 182664 port 243 182664 unique_id port 182664 remote_ip 10.8.0.214 182668 username meysam 182668 mac 182668 bytes_out 1146073 182668 bytes_in 14701773 182668 station_ip 188.158.51.199 182668 port 240 182668 unique_id port 182668 remote_ip 10.8.0.158 182677 username barzegar 182677 mac 182677 bytes_out 7715 182677 bytes_in 8195 182677 station_ip 5.119.69.200 182677 port 240 182677 unique_id port 182677 remote_ip 10.8.0.10 182682 username rashidi4690 182682 kill_reason Another user logged on this global unique id 182682 mac 182682 bytes_out 0 182682 bytes_in 0 182682 station_ip 5.120.81.126 182682 port 241 182682 unique_id port 182684 username yaghobi 182684 mac 182684 bytes_out 1240839 182643 kill_reason Another user logged on this global unique id 182643 mac 182643 bytes_out 0 182643 bytes_in 0 182643 station_ip 83.123.3.35 182643 port 240 182643 unique_id port 182646 username alihosseini1 182646 mac 182646 bytes_out 0 182646 bytes_in 0 182646 station_ip 5.119.45.187 182646 port 210 182646 unique_id port 182648 username fezealinaghi 182648 mac 182648 bytes_out 0 182648 bytes_in 0 182648 station_ip 83.123.3.35 182648 port 240 182648 unique_id port 182650 username dortaj3792 182650 mac 182650 bytes_out 211785 182650 bytes_in 396978 182650 station_ip 5.120.3.131 182650 port 242 182650 unique_id port 182650 remote_ip 10.8.0.102 182654 username charkhandaz3496 182654 mac 182654 bytes_out 0 182654 bytes_in 0 182654 station_ip 5.119.168.212 182654 port 238 182654 unique_id port 182654 remote_ip 10.8.0.90 182655 username alipour1506 182655 mac 182655 bytes_out 153912 182655 bytes_in 366070 182655 station_ip 83.123.77.150 182655 port 236 182655 unique_id port 182655 remote_ip 10.8.0.126 182662 username alipour1506 182662 mac 182662 bytes_out 30440 182662 bytes_in 34171 182662 station_ip 83.123.77.150 182662 port 247 182662 unique_id port 182662 remote_ip 10.8.0.126 182670 username barzegar 182670 mac 182670 bytes_out 232550 182670 bytes_in 2539156 182670 station_ip 5.119.69.200 182670 port 249 182670 unique_id port 182670 remote_ip 10.8.0.10 182672 username mirzaei6046 182672 mac 182672 bytes_out 0 182672 bytes_in 0 182672 station_ip 5.120.65.107 182672 port 227 182672 unique_id port 182674 username mehdizare 182674 mac 182674 bytes_out 89203 182674 bytes_in 292215 182674 station_ip 83.123.95.193 182674 port 249 182674 unique_id port 182674 remote_ip 10.8.0.210 182678 username barzegar 182678 mac 182678 bytes_out 0 182678 bytes_in 0 182678 station_ip 5.119.69.200 182678 port 240 182678 unique_id port 182678 remote_ip 10.8.0.10 182680 username barzegar 182680 mac 182680 bytes_out 3161 182680 bytes_in 5008 182680 station_ip 5.119.69.200 182680 port 240 182680 unique_id port 182680 remote_ip 10.8.0.10 182691 username aminvpn 182691 mac 182691 bytes_out 0 182691 bytes_in 0 182691 station_ip 46.100.217.46 182691 port 240 182691 unique_id port 182691 remote_ip 10.8.0.58 182693 username mostafa_es78 182693 kill_reason Another user logged on this global unique id 182693 mac 182693 bytes_out 0 182693 bytes_in 0 182693 station_ip 83.122.122.154 182693 port 218 182693 unique_id port 182693 remote_ip 10.8.0.34 182696 username saeeddamghani 182696 mac 182696 bytes_out 0 182696 bytes_in 0 182696 station_ip 31.56.91.203 182696 port 249 182696 unique_id port 182696 remote_ip 10.8.0.122 182703 username fezealinaghi 182703 mac 182703 bytes_out 4612498 182703 bytes_in 46464271 182703 station_ip 83.123.97.105 182703 port 210 182703 unique_id port 182703 remote_ip 10.8.0.202 182705 username mehdizare 182705 mac 182705 bytes_out 22455 182705 bytes_in 22090 182705 station_ip 83.123.95.193 182705 port 248 182705 unique_id port 182705 remote_ip 10.8.0.210 182707 username dortaj3792 182707 mac 182707 bytes_out 215284 182707 bytes_in 422691 182707 station_ip 5.120.3.131 182707 port 246 182707 unique_id port 182707 remote_ip 10.8.0.102 182708 username aminvpn 182708 mac 182708 bytes_out 0 182708 bytes_in 0 182708 station_ip 46.100.217.46 182708 port 246 182708 unique_id port 182708 remote_ip 10.8.0.58 182709 username shadkam 182709 mac 182709 bytes_out 199064 182709 bytes_in 48077 182658 unique_id port 182658 remote_ip 10.8.0.126 182659 username mosi 182659 mac 182659 bytes_out 128079 182659 bytes_in 301863 182659 station_ip 5.200.114.131 182659 port 240 182659 unique_id port 182659 remote_ip 10.8.0.142 182660 username esmaeilkazemi 182660 mac 182660 bytes_out 435322 182660 bytes_in 6077768 182660 station_ip 83.123.61.221 182660 port 242 182660 unique_id port 182660 remote_ip 10.8.0.26 182663 username kordestani 182663 mac 182663 bytes_out 3121671 182663 bytes_in 13150206 182663 station_ip 151.235.94.199 182663 port 245 182663 unique_id port 182663 remote_ip 10.8.0.130 182665 username mosi 182665 mac 182665 bytes_out 83070 182665 bytes_in 132757 182665 station_ip 5.200.114.131 182665 port 246 182665 unique_id port 182665 remote_ip 10.8.0.142 182666 username yaghobi 182666 mac 182666 bytes_out 45842 182666 bytes_in 41845 182666 station_ip 83.123.104.163 182666 port 248 182666 unique_id port 182666 remote_ip 10.8.0.138 182667 username mostafa_es78 182667 mac 182667 bytes_out 814916 182667 bytes_in 5711316 182667 station_ip 83.122.122.154 182667 port 218 182667 unique_id port 182667 remote_ip 10.8.0.34 182669 username mostafa_es78 182669 mac 182669 bytes_out 0 182669 bytes_in 0 182669 station_ip 83.122.122.154 182669 port 248 182669 unique_id port 182669 remote_ip 10.8.0.34 182671 username yaghobi 182671 mac 182671 bytes_out 55727 182671 bytes_in 108940 182671 station_ip 83.123.19.69 182671 port 250 182671 unique_id port 182671 remote_ip 10.8.0.138 182673 username mohammadjavad 182673 mac 182673 bytes_out 1808 182673 bytes_in 4163 182673 station_ip 83.123.51.88 182673 port 251 182673 unique_id port 182673 remote_ip 10.8.0.110 182675 username saeeddamghani 182675 mac 182675 bytes_out 2086747 182675 bytes_in 19397436 182675 station_ip 31.56.91.203 182675 port 236 182675 unique_id port 182675 remote_ip 10.8.0.122 182676 username aminvpn 182676 mac 182676 bytes_out 107019 182676 bytes_in 155945 182676 station_ip 46.100.217.46 182676 port 250 182676 unique_id port 182676 remote_ip 10.8.0.58 182679 username saeeddamghani 182679 mac 182679 bytes_out 0 182679 bytes_in 0 182679 station_ip 31.56.91.203 182679 port 250 182679 unique_id port 182679 remote_ip 10.8.0.122 182681 username kalantary6037 182681 mac 182681 bytes_out 4322850 182681 bytes_in 40482795 182681 station_ip 83.123.99.63 182681 port 226 182681 unique_id port 182681 remote_ip 10.8.0.50 182683 username barzegar 182683 mac 182683 bytes_out 2762 182683 bytes_in 5111 182683 station_ip 5.119.69.200 182683 port 240 182683 unique_id port 182683 remote_ip 10.8.0.10 182685 username barzegar 182685 mac 182685 bytes_out 2112 182685 bytes_in 4413 182685 station_ip 5.119.69.200 182685 port 250 182685 unique_id port 182685 remote_ip 10.8.0.10 182688 username mosi 182688 mac 182688 bytes_out 543913 182688 bytes_in 2169657 182688 station_ip 5.200.114.131 182688 port 246 182688 unique_id port 182688 remote_ip 10.8.0.142 182692 username yaghobi 182692 mac 182692 bytes_out 442742 182692 bytes_in 5829220 182692 station_ip 83.123.99.180 182692 port 251 182692 unique_id port 182692 remote_ip 10.8.0.138 182694 username mehdizare 182694 mac 182694 bytes_out 41678 182694 bytes_in 69285 182694 station_ip 83.123.95.193 182694 port 226 182694 unique_id port 182694 remote_ip 10.8.0.210 182697 username barzegar 182697 mac 182697 bytes_out 0 182697 bytes_in 0 182697 station_ip 5.119.69.200 182697 port 246 182684 bytes_in 8682745 182684 station_ip 83.123.99.180 182684 port 248 182684 unique_id port 182684 remote_ip 10.8.0.138 182686 username alihosseini1 182686 mac 182686 bytes_out 786496 182686 bytes_in 5515478 182686 station_ip 5.119.95.211 182686 port 227 182686 unique_id port 182686 remote_ip 10.8.0.234 182687 username meysam 182687 mac 182687 bytes_out 3046082 182687 bytes_in 46023873 182687 station_ip 188.158.51.199 182687 port 249 182687 unique_id port 182687 remote_ip 10.8.0.158 182689 username shadkam 182689 mac 182689 bytes_out 582890 182689 bytes_in 8740084 182689 station_ip 83.123.125.88 182689 port 240 182689 unique_id port 182689 remote_ip 10.8.0.74 182690 username barzegar 182690 mac 182690 bytes_out 3548 182690 bytes_in 5533 182690 station_ip 5.119.69.200 182690 port 227 182690 unique_id port 182690 remote_ip 10.8.0.10 182695 username saeed9658 182695 mac 182695 bytes_out 3041058 182695 bytes_in 38225791 182695 station_ip 5.120.34.92 182695 port 236 182695 unique_id port 182695 remote_ip 10.8.0.162 182698 username pourshad 182698 kill_reason Another user logged on this global unique id 182698 mac 182698 bytes_out 0 182698 bytes_in 0 182698 station_ip 5.120.55.140 182698 port 242 182698 unique_id port 182698 remote_ip 10.8.0.42 182699 username godarzi 182699 mac 182699 bytes_out 146562 182699 bytes_in 478614 182699 station_ip 5.202.61.167 182699 port 240 182699 unique_id port 182699 remote_ip 10.8.0.38 182700 username rashidi4690 182700 kill_reason Another user logged on this global unique id 182700 mac 182700 bytes_out 0 182700 bytes_in 0 182700 station_ip 5.120.81.126 182700 port 241 182700 unique_id port 182701 username yaghobi 182701 mac 182701 bytes_out 236342 182701 bytes_in 418668 182701 station_ip 83.123.99.180 182701 port 227 182701 unique_id port 182701 remote_ip 10.8.0.138 182704 username shadkam 182704 mac 182704 bytes_out 29715 182704 bytes_in 27570 182704 station_ip 83.123.90.3 182704 port 240 182704 unique_id port 182704 remote_ip 10.8.0.74 182706 username fezealinaghi 182706 mac 182706 bytes_out 19674 182706 bytes_in 23626 182706 station_ip 83.123.97.105 182706 port 240 182706 unique_id port 182706 remote_ip 10.8.0.202 182710 username yaghobi 182710 mac 182710 bytes_out 1043457 182710 bytes_in 16786549 182710 station_ip 83.123.99.180 182710 port 251 182710 unique_id port 182710 remote_ip 10.8.0.138 182712 username esmaeilkazemi 182712 mac 182712 bytes_out 0 182712 bytes_in 0 182712 station_ip 83.123.61.221 182712 port 246 182712 unique_id port 182712 remote_ip 10.8.0.26 182713 username barzegar 182713 mac 182713 bytes_out 0 182713 bytes_in 0 182713 station_ip 5.119.69.200 182713 port 246 182713 unique_id port 182713 remote_ip 10.8.0.10 182716 username sedighe 182716 mac 182716 bytes_out 176881 182716 bytes_in 1201568 182716 station_ip 83.123.64.103 182716 port 236 182716 unique_id port 182716 remote_ip 10.8.0.46 182719 username soleymani5056 182719 mac 182719 bytes_out 325600 182719 bytes_in 1547704 182719 station_ip 5.119.127.23 182719 port 210 182719 unique_id port 182719 remote_ip 10.8.0.226 182720 username shadkam 182720 mac 182720 bytes_out 39828 182720 bytes_in 177150 182720 station_ip 83.123.78.158 182720 port 236 182720 unique_id port 182720 remote_ip 10.8.0.74 182722 username saeed9658 182722 mac 182722 bytes_out 0 182722 bytes_in 0 182722 station_ip 5.120.34.92 182722 port 210 182722 unique_id port 182722 remote_ip 10.8.0.162 182723 username saeed9658 182697 unique_id port 182697 remote_ip 10.8.0.10 182702 username barzegar 182702 mac 182702 bytes_out 0 182702 bytes_in 0 182702 station_ip 5.119.69.200 182702 port 250 182702 unique_id port 182702 remote_ip 10.8.0.10 182715 username esmaeilkazemi 182715 mac 182715 bytes_out 11702 182715 bytes_in 34300 182715 station_ip 83.123.61.221 182715 port 238 182715 unique_id port 182715 remote_ip 10.8.0.26 182718 username aminvpn 182718 unique_id port 182718 terminate_cause User-Request 182718 bytes_out 4413990 182718 bytes_in 185326226 182718 station_ip 31.57.122.99 182718 port 15728926 182718 nas_port_type Virtual 182718 remote_ip 5.5.5.185 182726 username aminvpn 182726 mac 182726 bytes_out 0 182726 bytes_in 0 182726 station_ip 46.100.217.46 182726 port 226 182726 unique_id port 182726 remote_ip 10.8.0.58 182729 username pourshad 182729 kill_reason Another user logged on this global unique id 182729 mac 182729 bytes_out 0 182729 bytes_in 0 182729 station_ip 5.120.55.140 182729 port 242 182729 unique_id port 182730 username rashidi4690 182730 kill_reason Another user logged on this global unique id 182730 mac 182730 bytes_out 0 182730 bytes_in 0 182730 station_ip 5.120.81.126 182730 port 241 182730 unique_id port 182733 username sedighe 182733 mac 182733 bytes_out 78868 182733 bytes_in 120604 182733 station_ip 83.123.35.137 182733 port 246 182733 unique_id port 182733 remote_ip 10.8.0.46 182735 username fezealinaghi 182735 mac 182735 bytes_out 0 182735 bytes_in 0 182735 station_ip 83.123.28.57 182735 port 210 182735 unique_id port 182738 username aminvpn 182738 mac 182738 bytes_out 0 182738 bytes_in 0 182738 station_ip 46.100.217.46 182738 port 236 182738 unique_id port 182738 remote_ip 10.8.0.58 182740 username saeeddamghani 182740 mac 182740 bytes_out 8305 182740 bytes_in 10657 182740 station_ip 5.213.88.52 182740 port 210 182740 unique_id port 182740 remote_ip 10.8.0.122 182742 username saeeddamghani 182742 mac 182742 bytes_out 0 182742 bytes_in 0 182742 station_ip 5.213.88.52 182742 port 239 182742 unique_id port 182742 remote_ip 10.8.0.122 182743 username saeeddamghani 182743 mac 182743 bytes_out 0 182743 bytes_in 0 182743 station_ip 31.56.91.203 182743 port 236 182743 unique_id port 182743 remote_ip 10.8.0.122 182744 username saeeddamghani 182744 mac 182744 bytes_out 0 182744 bytes_in 0 182744 station_ip 5.213.88.52 182744 port 239 182744 unique_id port 182744 remote_ip 10.8.0.122 182747 username saeeddamghani 182747 mac 182747 bytes_out 0 182747 bytes_in 0 182747 station_ip 31.56.91.203 182747 port 240 182747 unique_id port 182747 remote_ip 10.8.0.122 182756 username saeeddamghani 182756 mac 182756 bytes_out 0 182756 bytes_in 0 182756 station_ip 31.56.91.203 182756 port 241 182756 unique_id port 182756 remote_ip 10.8.0.122 182759 username barzegar 182759 mac 182759 bytes_out 0 182759 bytes_in 0 182759 station_ip 5.119.69.200 182759 port 238 182759 unique_id port 182759 remote_ip 10.8.0.10 182760 username yaghobi 182760 mac 182760 bytes_out 130869 182760 bytes_in 210948 182760 station_ip 83.123.105.113 182760 port 239 182760 unique_id port 182760 remote_ip 10.8.0.138 182764 username aminvpn 182764 mac 182764 bytes_out 0 182764 bytes_in 0 182764 station_ip 46.100.217.46 182764 port 239 182764 unique_id port 182764 remote_ip 10.8.0.58 182767 username saeeddamghani 182767 mac 182767 bytes_out 0 182767 bytes_in 0 182767 station_ip 31.56.91.203 182767 port 241 182767 unique_id port 182709 station_ip 83.123.26.234 182709 port 227 182709 unique_id port 182709 remote_ip 10.8.0.74 182711 username tahmorsi 182711 mac 182711 bytes_out 1348227 182711 bytes_in 10815665 182711 station_ip 86.57.23.225 182711 port 238 182711 unique_id port 182711 remote_ip 10.8.0.6 182714 username kalantary6037 182714 mac 182714 bytes_out 1344189 182714 bytes_in 863426 182714 station_ip 83.123.105.91 182714 port 249 182714 unique_id port 182714 remote_ip 10.8.0.50 182717 username saeeddamghani 182717 mac 182717 bytes_out 0 182717 bytes_in 0 182717 station_ip 31.56.91.203 182717 port 238 182717 unique_id port 182717 remote_ip 10.8.0.122 182721 username saeed9658 182721 mac 182721 bytes_out 513753 182721 bytes_in 2865435 182721 station_ip 5.120.34.92 182721 port 226 182721 unique_id port 182721 remote_ip 10.8.0.162 182725 username mohammadjavad 182725 mac 182725 bytes_out 840817 182725 bytes_in 10700362 182725 station_ip 83.123.51.88 182725 port 248 182725 unique_id port 182725 remote_ip 10.8.0.110 182728 username sabaghnezhad 182728 mac 182728 bytes_out 1253582 182728 bytes_in 2366818 182728 station_ip 83.123.60.143 182728 port 239 182728 unique_id port 182728 remote_ip 10.8.0.66 182731 username fezealinaghi 182731 kill_reason Another user logged on this global unique id 182731 mac 182731 bytes_out 0 182731 bytes_in 0 182731 station_ip 83.123.28.57 182731 port 210 182731 unique_id port 182731 remote_ip 10.8.0.202 182732 username godarzi 182732 mac 182732 bytes_out 1370726 182732 bytes_in 15874108 182732 station_ip 5.202.97.167 182732 port 240 182732 unique_id port 182732 remote_ip 10.8.0.38 182749 username mehdizare 182749 mac 182749 bytes_out 35696 182749 bytes_in 43298 182749 station_ip 83.123.95.193 182749 port 238 182749 unique_id port 182749 remote_ip 10.8.0.210 182754 username rashidi4690 182754 mac 182754 bytes_out 0 182754 bytes_in 0 182754 station_ip 5.120.81.126 182754 port 241 182754 unique_id port 182757 username kalantary6037 182757 mac 182757 bytes_out 639069 182757 bytes_in 5379619 182757 station_ip 83.123.11.43 182757 port 210 182757 unique_id port 182757 remote_ip 10.8.0.50 182761 username aminvpn 182761 mac 182761 bytes_out 0 182761 bytes_in 0 182761 station_ip 46.100.217.46 182761 port 239 182761 unique_id port 182761 remote_ip 10.8.0.58 182762 username saeeddamghani 182762 mac 182762 bytes_out 0 182762 bytes_in 0 182762 station_ip 31.56.91.203 182762 port 210 182762 unique_id port 182762 remote_ip 10.8.0.122 182765 username esmaeilkazemi 182765 mac 182765 bytes_out 14594 182765 bytes_in 53032 182765 station_ip 83.123.61.221 182765 port 241 182765 unique_id port 182765 remote_ip 10.8.0.26 182768 username barzegar 182768 mac 182768 bytes_out 0 182768 bytes_in 0 182768 station_ip 5.119.69.200 182768 port 239 182768 unique_id port 182768 remote_ip 10.8.0.10 182769 username shadkam 182769 mac 182769 bytes_out 921179 182769 bytes_in 10425317 182769 station_ip 83.123.9.67 182769 port 245 182769 unique_id port 182769 remote_ip 10.8.0.74 182778 username saeeddamghani 182778 mac 182778 bytes_out 0 182778 bytes_in 0 182778 station_ip 31.56.91.203 182778 port 245 182778 unique_id port 182778 remote_ip 10.8.0.122 182780 username mohammadmahdi 182780 kill_reason Another user logged on this global unique id 182780 mac 182780 bytes_out 0 182780 bytes_in 0 182780 station_ip 5.119.69.65 182780 port 210 182780 unique_id port 182780 remote_ip 10.8.0.30 182783 username aminvpn 182783 mac 182783 bytes_out 0 182723 mac 182723 bytes_out 609086 182723 bytes_in 2077076 182723 station_ip 5.120.34.92 182723 port 210 182723 unique_id port 182723 remote_ip 10.8.0.162 182724 username barzegar 182724 mac 182724 bytes_out 0 182724 bytes_in 0 182724 station_ip 5.119.69.200 182724 port 226 182724 unique_id port 182724 remote_ip 10.8.0.10 182727 username saeeddamghani 182727 mac 182727 bytes_out 7204 182727 bytes_in 8827 182727 station_ip 31.56.91.203 182727 port 210 182727 unique_id port 182727 remote_ip 10.8.0.122 182734 username kordestani 182734 kill_reason Another user logged on this global unique id 182734 mac 182734 bytes_out 0 182734 bytes_in 0 182734 station_ip 151.235.94.199 182734 port 245 182734 unique_id port 182734 remote_ip 10.8.0.130 182736 username kordestani 182736 mac 182736 bytes_out 0 182736 bytes_in 0 182736 station_ip 151.235.94.199 182736 port 245 182736 unique_id port 182737 username barzegar 182737 mac 182737 bytes_out 0 182737 bytes_in 0 182737 station_ip 5.119.69.200 182737 port 210 182737 unique_id port 182737 remote_ip 10.8.0.10 182739 username barzegar 182739 mac 182739 bytes_out 0 182739 bytes_in 0 182739 station_ip 5.119.69.200 182739 port 236 182739 unique_id port 182739 remote_ip 10.8.0.10 182741 username saeeddamghani 182741 mac 182741 bytes_out 0 182741 bytes_in 0 182741 station_ip 31.56.91.203 182741 port 236 182741 unique_id port 182741 remote_ip 10.8.0.122 182745 username saeeddamghani 182745 mac 182745 bytes_out 0 182745 bytes_in 0 182745 station_ip 31.56.91.203 182745 port 240 182745 unique_id port 182745 remote_ip 10.8.0.122 182746 username saeeddamghani 182746 mac 182746 bytes_out 0 182746 bytes_in 0 182746 station_ip 5.213.88.52 182746 port 239 182746 unique_id port 182746 remote_ip 10.8.0.122 182748 username saeeddamghani 182748 mac 182748 bytes_out 0 182748 bytes_in 0 182748 station_ip 5.213.88.52 182748 port 239 182748 unique_id port 182748 remote_ip 10.8.0.122 182750 username saeeddamghani 182750 mac 182750 bytes_out 0 182750 bytes_in 0 182750 station_ip 31.56.91.203 182750 port 245 182750 unique_id port 182750 remote_ip 10.8.0.122 182751 username yaghobi 182751 mac 182751 bytes_out 1902317 182751 bytes_in 22814535 182751 station_ip 83.123.99.180 182751 port 227 182751 unique_id port 182751 remote_ip 10.8.0.138 182752 username saeeddamghani 182752 mac 182752 bytes_out 0 182752 bytes_in 0 182752 station_ip 5.213.88.52 182752 port 238 182752 unique_id port 182752 remote_ip 10.8.0.122 182753 username saeeddamghani 182753 mac 182753 bytes_out 0 182753 bytes_in 0 182753 station_ip 31.56.91.203 182753 port 245 182753 unique_id port 182753 remote_ip 10.8.0.122 182755 username saeeddamghani 182755 mac 182755 bytes_out 0 182755 bytes_in 0 182755 station_ip 5.213.88.52 182755 port 238 182755 unique_id port 182755 remote_ip 10.8.0.122 182758 username saeeddamghani 182758 mac 182758 bytes_out 0 182758 bytes_in 0 182758 station_ip 5.213.88.52 182758 port 245 182758 unique_id port 182758 remote_ip 10.8.0.122 182763 username aminvpn 182763 mac 182763 bytes_out 0 182763 bytes_in 0 182763 station_ip 46.100.217.46 182763 port 239 182763 unique_id port 182763 remote_ip 10.8.0.58 182766 username saeeddamghani 182766 mac 182766 bytes_out 0 182766 bytes_in 0 182766 station_ip 5.213.88.52 182766 port 246 182766 unique_id port 182766 remote_ip 10.8.0.122 182770 username saeeddamghani 182770 mac 182770 bytes_out 2122 182767 remote_ip 10.8.0.122 182772 username saeeddamghani 182772 mac 182772 bytes_out 0 182772 bytes_in 0 182772 station_ip 5.213.88.52 182772 port 241 182772 unique_id port 182772 remote_ip 10.8.0.122 182776 username saeeddamghani 182776 mac 182776 bytes_out 0 182776 bytes_in 0 182776 station_ip 31.56.91.203 182776 port 245 182776 unique_id port 182776 remote_ip 10.8.0.122 182777 username saeeddamghani 182777 mac 182777 bytes_out 0 182777 bytes_in 0 182777 station_ip 5.213.88.52 182777 port 227 182777 unique_id port 182777 remote_ip 10.8.0.122 182779 username saeeddamghani 182779 mac 182779 bytes_out 0 182779 bytes_in 0 182779 station_ip 5.213.88.52 182779 port 227 182779 unique_id port 182779 remote_ip 10.8.0.122 182781 username saeeddamghani 182781 mac 182781 bytes_out 0 182781 bytes_in 0 182781 station_ip 31.56.91.203 182781 port 245 182781 unique_id port 182781 remote_ip 10.8.0.122 182782 username aminvpn 182782 mac 182782 bytes_out 129072 182782 bytes_in 488665 182782 station_ip 5.120.145.6 182782 port 241 182782 unique_id port 182782 remote_ip 10.8.0.58 182784 username barzegar 182784 mac 182784 bytes_out 2470 182784 bytes_in 4647 182784 station_ip 5.119.69.200 182784 port 227 182784 unique_id port 182784 remote_ip 10.8.0.10 182785 username mohammadmahdi 182785 mac 182785 bytes_out 0 182785 bytes_in 0 182785 station_ip 5.119.69.65 182785 port 210 182785 unique_id port 182790 username yaghobi 182790 mac 182790 bytes_out 230328 182790 bytes_in 332285 182790 station_ip 83.123.36.42 182790 port 238 182790 unique_id port 182790 remote_ip 10.8.0.138 182792 username yaghobi 182792 mac 182792 bytes_out 95672 182792 bytes_in 174510 182792 station_ip 83.123.100.118 182792 port 239 182792 unique_id port 182792 remote_ip 10.8.0.138 182794 username saeed9658 182794 mac 182794 bytes_out 19023 182794 bytes_in 32310 182794 station_ip 5.120.34.92 182794 port 238 182794 unique_id port 182794 remote_ip 10.8.0.162 182796 username alikomsari 182796 kill_reason Another user logged on this global unique id 182796 mac 182796 bytes_out 0 182796 bytes_in 0 182796 station_ip 5.119.138.121 182796 port 243 182796 unique_id port 182798 username shadkam 182798 mac 182798 bytes_out 60035 182798 bytes_in 59112 182798 station_ip 83.123.120.194 182798 port 240 182798 unique_id port 182798 remote_ip 10.8.0.74 182799 username khademi 182799 mac 182799 bytes_out 2739597 182799 bytes_in 31900417 182799 station_ip 83.123.54.146 182799 port 244 182799 unique_id port 182799 remote_ip 10.8.0.14 182808 username barzegar 182808 mac 182808 bytes_out 17796 182808 bytes_in 28570 182808 station_ip 5.119.69.200 182808 port 239 182808 unique_id port 182808 remote_ip 10.8.0.10 182810 username dortaj3792 182810 mac 182810 bytes_out 1754811 182810 bytes_in 4732228 182810 station_ip 5.120.3.131 182810 port 226 182810 unique_id port 182810 remote_ip 10.8.0.102 182814 username saeeddamghani 182814 mac 182814 bytes_out 0 182814 bytes_in 0 182814 station_ip 31.56.91.203 182814 port 248 182814 unique_id port 182814 remote_ip 10.8.0.122 182816 username fezealinaghi 182816 kill_reason Another user logged on this global unique id 182816 mac 182816 bytes_out 0 182816 bytes_in 0 182816 station_ip 83.123.46.69 182816 port 238 182816 unique_id port 182816 remote_ip 10.8.0.202 182820 username soleymani5056 182820 mac 182820 bytes_out 175987 182820 bytes_in 802692 182820 station_ip 5.120.16.114 182820 port 245 182820 unique_id port 182770 bytes_in 3739 182770 station_ip 5.213.88.52 182770 port 241 182770 unique_id port 182770 remote_ip 10.8.0.122 182771 username saeeddamghani 182771 mac 182771 bytes_out 0 182771 bytes_in 0 182771 station_ip 31.56.91.203 182771 port 245 182771 unique_id port 182771 remote_ip 10.8.0.122 182773 username saeeddamghani 182773 mac 182773 bytes_out 0 182773 bytes_in 0 182773 station_ip 31.56.91.203 182773 port 245 182773 unique_id port 182773 remote_ip 10.8.0.122 182774 username saeeddamghani 182774 mac 182774 bytes_out 0 182774 bytes_in 0 182774 station_ip 5.213.88.52 182774 port 241 182774 unique_id port 182774 remote_ip 10.8.0.122 182775 username mehdizare 182775 mac 182775 bytes_out 28603 182775 bytes_in 37942 182775 station_ip 83.123.95.193 182775 port 227 182775 unique_id port 182775 remote_ip 10.8.0.210 182786 username rashidi4690 182786 mac 182786 bytes_out 72456 182786 bytes_in 64500 182786 station_ip 5.119.124.51 182786 port 210 182786 unique_id port 182786 remote_ip 10.8.0.242 182788 username saeed9658 182788 mac 182788 bytes_out 20653 182788 bytes_in 44959 182788 station_ip 5.120.34.92 182788 port 239 182788 unique_id port 182788 remote_ip 10.8.0.162 182789 username fezealinaghi 182789 mac 182789 bytes_out 2938538 182789 bytes_in 43663252 182789 station_ip 83.123.46.69 182789 port 240 182789 unique_id port 182789 remote_ip 10.8.0.202 182793 username mohammadmahdi 182793 kill_reason Another user logged on this global unique id 182793 mac 182793 bytes_out 0 182793 bytes_in 0 182793 station_ip 5.119.69.65 182793 port 241 182793 unique_id port 182793 remote_ip 10.8.0.30 182800 username saeed9658 182800 mac 182800 bytes_out 28552 182800 bytes_in 51295 182800 station_ip 5.120.34.92 182800 port 239 182800 unique_id port 182800 remote_ip 10.8.0.162 182802 username motamedi9772 182802 mac 182802 bytes_out 192493 182802 bytes_in 1113372 182802 station_ip 83.123.45.175 182802 port 238 182802 unique_id port 182802 remote_ip 10.8.0.154 182804 username rashidi4690 182804 mac 182804 bytes_out 269802 182804 bytes_in 1195065 182804 station_ip 5.119.124.51 182804 port 244 182804 unique_id port 182804 remote_ip 10.8.0.242 182809 username charkhandaz3496 182809 mac 182809 bytes_out 0 182809 bytes_in 0 182809 station_ip 5.119.168.212 182809 port 239 182809 unique_id port 182809 remote_ip 10.8.0.90 182811 username milan 182811 kill_reason Another user logged on this global unique id 182811 mac 182811 bytes_out 0 182811 bytes_in 0 182811 station_ip 5.119.97.240 182811 port 233 182811 unique_id port 182812 username aminvpn 182812 mac 182812 bytes_out 7671 182812 bytes_in 14813 182812 station_ip 5.120.145.6 182812 port 240 182812 unique_id port 182812 remote_ip 10.8.0.58 182817 username kalantary6037 182817 mac 182817 bytes_out 611387 182817 bytes_in 3762612 182817 station_ip 83.123.74.199 182817 port 244 182817 unique_id port 182817 remote_ip 10.8.0.50 182818 username barzegar 182818 mac 182818 bytes_out 12440 182818 bytes_in 52917 182818 station_ip 5.119.69.200 182818 port 239 182818 unique_id port 182818 remote_ip 10.8.0.10 182822 username aminvpn 182822 mac 182822 bytes_out 0 182822 bytes_in 0 182822 station_ip 46.100.217.46 182822 port 244 182822 unique_id port 182822 remote_ip 10.8.0.58 182826 username khalili2 182826 mac 182826 bytes_out 2413768 182826 bytes_in 23365471 182826 station_ip 5.120.81.181 182826 port 229 182826 unique_id port 182826 remote_ip 10.8.0.118 182830 username jafari 182783 bytes_in 0 182783 station_ip 46.100.217.46 182783 port 248 182783 unique_id port 182783 remote_ip 10.8.0.58 182787 username mosi 182787 kill_reason Another user logged on this global unique id 182787 mac 182787 bytes_out 0 182787 bytes_in 0 182787 station_ip 151.235.83.58 182787 port 236 182787 unique_id port 182787 remote_ip 10.8.0.142 182791 username barzegar 182791 mac 182791 bytes_out 102574 182791 bytes_in 710142 182791 station_ip 5.119.69.200 182791 port 248 182791 unique_id port 182791 remote_ip 10.8.0.10 182795 username aminvpn 182795 mac 182795 bytes_out 64509 182795 bytes_in 128401 182795 station_ip 5.120.145.6 182795 port 227 182795 unique_id port 182795 remote_ip 10.8.0.58 182797 username aminvpn 182797 mac 182797 bytes_out 0 182797 bytes_in 0 182797 station_ip 46.100.217.46 182797 port 239 182797 unique_id port 182797 remote_ip 10.8.0.58 182801 username fezealinaghi 182801 mac 182801 bytes_out 1020446 182801 bytes_in 15409831 182801 station_ip 83.123.46.69 182801 port 248 182801 unique_id port 182801 remote_ip 10.8.0.202 182803 username saeeddamghani 182803 mac 182803 bytes_out 2019740 182803 bytes_in 29837607 182803 station_ip 31.56.91.203 182803 port 245 182803 unique_id port 182803 remote_ip 10.8.0.122 182805 username mosi 182805 kill_reason Another user logged on this global unique id 182805 mac 182805 bytes_out 0 182805 bytes_in 0 182805 station_ip 151.235.83.58 182805 port 236 182805 unique_id port 182806 username aminvpn 182806 unique_id port 182806 terminate_cause Lost-Carrier 182806 bytes_out 513353 182806 bytes_in 2974221 182806 station_ip 83.123.89.237 182806 port 15728925 182806 nas_port_type Virtual 182806 remote_ip 5.5.5.175 182807 username mostafa_es78 182807 mac 182807 bytes_out 0 182807 bytes_in 0 182807 station_ip 83.122.122.154 182807 port 218 182807 unique_id port 182813 username aminvpn 182813 mac 182813 bytes_out 0 182813 bytes_in 0 182813 station_ip 46.100.217.46 182813 port 248 182813 unique_id port 182813 remote_ip 10.8.0.58 182815 username yaghobi 182815 mac 182815 bytes_out 611543 182815 bytes_in 4488753 182815 station_ip 83.123.42.133 182815 port 250 182815 unique_id port 182815 remote_ip 10.8.0.138 182819 username mohammadmahdi 182819 kill_reason Another user logged on this global unique id 182819 mac 182819 bytes_out 0 182819 bytes_in 0 182819 station_ip 5.119.69.65 182819 port 241 182819 unique_id port 182823 username barzegar 182823 mac 182823 bytes_out 0 182823 bytes_in 0 182823 station_ip 5.119.69.200 182823 port 240 182823 unique_id port 182823 remote_ip 10.8.0.10 182825 username saeeddamghani 182825 mac 182825 bytes_out 0 182825 bytes_in 0 182825 station_ip 31.56.91.203 182825 port 244 182825 unique_id port 182825 remote_ip 10.8.0.122 182827 username mohammadjavad 182827 mac 182827 bytes_out 845289 182827 bytes_in 5249272 182827 station_ip 83.123.71.149 182827 port 226 182827 unique_id port 182827 remote_ip 10.8.0.110 182831 username yaghobi 182831 mac 182831 bytes_out 355247 182831 bytes_in 1183767 182831 station_ip 83.123.50.131 182831 port 240 182831 unique_id port 182831 remote_ip 10.8.0.138 182835 username aminvpn 182835 mac 182835 bytes_out 93828 182835 bytes_in 118866 182835 station_ip 5.120.145.6 182835 port 229 182835 unique_id port 182835 remote_ip 10.8.0.58 182838 username saeeddamghani 182838 mac 182838 bytes_out 0 182838 bytes_in 0 182838 station_ip 31.56.91.203 182838 port 246 182838 unique_id port 182838 remote_ip 10.8.0.122 182841 username shadkam 182820 remote_ip 10.8.0.226 182821 username aminvpn 182821 mac 182821 bytes_out 48177 182821 bytes_in 49230 182821 station_ip 5.120.145.6 182821 port 240 182821 unique_id port 182821 remote_ip 10.8.0.58 182824 username yaghobi 182824 mac 182824 bytes_out 369158 182824 bytes_in 1728302 182824 station_ip 83.123.42.133 182824 port 248 182824 unique_id port 182824 remote_ip 10.8.0.138 182828 username fezealinaghi 182828 kill_reason Another user logged on this global unique id 182828 mac 182828 bytes_out 0 182828 bytes_in 0 182828 station_ip 83.123.46.69 182828 port 238 182828 unique_id port 182829 username khalili2 182829 mac 182829 bytes_out 3080 182829 bytes_in 6253 182829 station_ip 5.120.81.181 182829 port 226 182829 unique_id port 182829 remote_ip 10.8.0.118 182833 username yaghobi 182833 mac 182833 bytes_out 2365 182833 bytes_in 4016 182833 station_ip 83.123.50.131 182833 port 248 182833 unique_id port 182833 remote_ip 10.8.0.138 182839 username mohammadmahdi 182839 kill_reason Another user logged on this global unique id 182839 mac 182839 bytes_out 0 182839 bytes_in 0 182839 station_ip 5.119.69.65 182839 port 241 182839 unique_id port 182845 username jafari 182845 kill_reason Another user logged on this global unique id 182845 mac 182845 bytes_out 0 182845 bytes_in 0 182845 station_ip 5.200.110.219 182845 port 210 182845 unique_id port 182849 username aminvpn 182849 mac 182849 bytes_out 0 182849 bytes_in 0 182849 station_ip 46.100.217.46 182849 port 226 182849 unique_id port 182849 remote_ip 10.8.0.58 182851 username barzegar 182851 mac 182851 bytes_out 0 182851 bytes_in 0 182851 station_ip 5.119.69.200 182851 port 226 182851 unique_id port 182851 remote_ip 10.8.0.10 182854 username fezealinaghi 182854 kill_reason Another user logged on this global unique id 182854 mac 182854 bytes_out 0 182854 bytes_in 0 182854 station_ip 83.123.46.69 182854 port 238 182854 unique_id port 182856 username jafari 182856 kill_reason Another user logged on this global unique id 182856 mac 182856 bytes_out 0 182856 bytes_in 0 182856 station_ip 5.200.110.219 182856 port 210 182856 unique_id port 182857 username alikomsari 182857 mac 182857 bytes_out 0 182857 bytes_in 0 182857 station_ip 5.119.138.121 182857 port 243 182857 unique_id port 182858 username jafari 182858 mac 182858 bytes_out 0 182858 bytes_in 0 182858 station_ip 5.200.110.219 182858 port 210 182858 unique_id port 182860 username shadkam 182860 mac 182860 bytes_out 309010 182860 bytes_in 2081265 182860 station_ip 83.123.34.7 182860 port 229 182860 unique_id port 182860 remote_ip 10.8.0.74 182863 username hosseine 182863 kill_reason Another user logged on this global unique id 182863 mac 182863 bytes_out 0 182863 bytes_in 0 182863 station_ip 83.123.62.203 182863 port 234 182863 unique_id port 182865 username barzegar 182865 mac 182865 bytes_out 0 182865 bytes_in 0 182865 station_ip 5.119.69.200 182865 port 241 182865 unique_id port 182865 remote_ip 10.8.0.10 182867 username yaghobi 182867 mac 182867 bytes_out 167010 182867 bytes_in 272250 182867 station_ip 83.123.50.131 182867 port 210 182867 unique_id port 182867 remote_ip 10.8.0.138 182868 username hajghani 182868 mac 182868 bytes_out 0 182868 bytes_in 0 182868 station_ip 89.32.96.94 182868 port 239 182868 unique_id port 182872 username yaghobi 182872 mac 182872 bytes_out 74283 182872 bytes_in 95857 182872 station_ip 83.123.50.131 182872 port 241 182872 unique_id port 182872 remote_ip 10.8.0.138 182879 username barzegar 182830 kill_reason Another user logged on this global unique id 182830 mac 182830 bytes_out 0 182830 bytes_in 0 182830 station_ip 5.200.110.219 182830 port 210 182830 unique_id port 182830 remote_ip 10.8.0.86 182832 username mehdizare 182832 mac 182832 bytes_out 186413 182832 bytes_in 262630 182832 station_ip 83.123.95.193 182832 port 246 182832 unique_id port 182832 remote_ip 10.8.0.210 182834 username majidsarmast 182834 mac 182834 bytes_out 36910 182834 bytes_in 51363 182834 station_ip 83.123.119.61 182834 port 246 182834 unique_id port 182834 remote_ip 10.8.0.170 182836 username aminvpn 182836 mac 182836 bytes_out 0 182836 bytes_in 0 182836 station_ip 46.100.217.46 182836 port 246 182836 unique_id port 182836 remote_ip 10.8.0.58 182837 username barzegar 182837 mac 182837 bytes_out 0 182837 bytes_in 0 182837 station_ip 5.119.69.200 182837 port 229 182837 unique_id port 182837 remote_ip 10.8.0.10 182840 username fezealinaghi 182840 kill_reason Another user logged on this global unique id 182840 mac 182840 bytes_out 0 182840 bytes_in 0 182840 station_ip 83.123.46.69 182840 port 238 182840 unique_id port 182842 username houshang 182842 mac 182842 bytes_out 77005 182842 bytes_in 191061 182842 station_ip 5.120.164.154 182842 port 246 182842 unique_id port 182842 remote_ip 10.8.0.82 182844 username kordestani 182844 mac 182844 bytes_out 3445517 182844 bytes_in 27950151 182844 station_ip 151.235.124.254 182844 port 249 182844 unique_id port 182844 remote_ip 10.8.0.130 182852 username aminvpn 182852 mac 182852 bytes_out 0 182852 bytes_in 0 182852 station_ip 5.120.145.6 182852 port 229 182852 unique_id port 182852 remote_ip 10.8.0.58 182853 username aminvpn 182853 mac 182853 bytes_out 0 182853 bytes_in 0 182853 station_ip 5.120.145.6 182853 port 226 182853 unique_id port 182853 remote_ip 10.8.0.58 182861 username rashidi4690 182861 mac 182861 bytes_out 2824072 182861 bytes_in 18166821 182861 station_ip 5.120.155.152 182861 port 250 182861 unique_id port 182861 remote_ip 10.8.0.242 182866 username rashidi4690 182866 mac 182866 bytes_out 21846 182866 bytes_in 24402 182866 station_ip 5.120.155.152 182866 port 243 182866 unique_id port 182866 remote_ip 10.8.0.242 182869 username mosi 182869 mac 182869 bytes_out 0 182869 bytes_in 0 182869 station_ip 151.235.83.58 182869 port 236 182869 unique_id port 182871 username kordestani 182871 mac 182871 bytes_out 1542393 182871 bytes_in 18488469 182871 station_ip 151.235.95.125 182871 port 229 182871 unique_id port 182871 remote_ip 10.8.0.130 182873 username mehdizare 182873 mac 182873 bytes_out 69230 182873 bytes_in 136708 182873 station_ip 83.123.95.193 182873 port 240 182873 unique_id port 182873 remote_ip 10.8.0.210 182875 username barzegar 182875 mac 182875 bytes_out 0 182875 bytes_in 0 182875 station_ip 5.119.69.200 182875 port 241 182875 unique_id port 182875 remote_ip 10.8.0.10 182876 username yaghobi 182876 mac 182876 bytes_out 113849 182876 bytes_in 198828 182876 station_ip 83.123.50.131 182876 port 229 182876 unique_id port 182876 remote_ip 10.8.0.138 182880 username alipour1506 182880 mac 182880 bytes_out 1777885 182880 bytes_in 11913760 182880 station_ip 83.123.77.150 182880 port 247 182880 unique_id port 182880 remote_ip 10.8.0.126 182885 username barzegar 182885 mac 182885 bytes_out 9625 182885 bytes_in 14164 182885 station_ip 5.119.69.200 182885 port 226 182885 unique_id port 182885 remote_ip 10.8.0.10 182891 username aminvpn 182841 mac 182841 bytes_out 2582432 182841 bytes_in 24143620 182841 station_ip 83.123.89.65 182841 port 245 182841 unique_id port 182841 remote_ip 10.8.0.74 182843 username kalantary6037 182843 mac 182843 bytes_out 2313757 182843 bytes_in 23916846 182843 station_ip 83.123.74.199 182843 port 226 182843 unique_id port 182843 remote_ip 10.8.0.50 182846 username mosi 182846 kill_reason Another user logged on this global unique id 182846 mac 182846 bytes_out 0 182846 bytes_in 0 182846 station_ip 151.235.83.58 182846 port 236 182846 unique_id port 182847 username hajghani 182847 kill_reason Another user logged on this global unique id 182847 mac 182847 bytes_out 0 182847 bytes_in 0 182847 station_ip 89.32.96.94 182847 port 239 182847 unique_id port 182847 remote_ip 10.8.0.106 182848 username aminvpn 182848 mac 182848 bytes_out 20907 182848 bytes_in 20410 182848 station_ip 5.120.145.6 182848 port 229 182848 unique_id port 182848 remote_ip 10.8.0.58 182850 username saeeddamghani 182850 mac 182850 bytes_out 0 182850 bytes_in 0 182850 station_ip 31.56.91.203 182850 port 245 182850 unique_id port 182850 remote_ip 10.8.0.122 182855 username aminvpn 182855 mac 182855 bytes_out 96208 182855 bytes_in 684543 182855 station_ip 46.100.217.46 182855 port 229 182855 unique_id port 182855 remote_ip 10.8.0.58 182859 username yaghobi 182859 mac 182859 bytes_out 464310 182859 bytes_in 888137 182859 station_ip 83.123.50.131 182859 port 251 182859 unique_id port 182859 remote_ip 10.8.0.138 182862 username mohammadmahdi 182862 mac 182862 bytes_out 0 182862 bytes_in 0 182862 station_ip 5.119.69.65 182862 port 241 182862 unique_id port 182864 username khalili2 182864 kill_reason Another user logged on this global unique id 182864 mac 182864 bytes_out 0 182864 bytes_in 0 182864 station_ip 5.120.81.181 182864 port 244 182864 unique_id port 182864 remote_ip 10.8.0.118 182870 username aminvpn 182870 kill_reason Maximum check online fails reached 182870 mac 182870 bytes_out 0 182870 bytes_in 0 182870 station_ip 46.100.217.46 182870 port 210 182870 unique_id port 182874 username khalili2 182874 kill_reason Another user logged on this global unique id 182874 mac 182874 bytes_out 0 182874 bytes_in 0 182874 station_ip 5.120.81.181 182874 port 244 182874 unique_id port 182877 username barzegar 182877 mac 182877 bytes_out 0 182877 bytes_in 0 182877 station_ip 5.119.69.200 182877 port 240 182877 unique_id port 182877 remote_ip 10.8.0.10 182878 username aminvpn 182878 mac 182878 bytes_out 28305 182878 bytes_in 27993 182878 station_ip 5.120.145.6 182878 port 226 182878 unique_id port 182878 remote_ip 10.8.0.58 182882 username rashidi4690 182882 kill_reason Another user logged on this global unique id 182882 mac 182882 bytes_out 0 182882 bytes_in 0 182882 station_ip 83.123.113.144 182882 port 243 182882 unique_id port 182882 remote_ip 10.8.0.242 182883 username khalili2 182883 kill_reason Another user logged on this global unique id 182883 mac 182883 bytes_out 0 182883 bytes_in 0 182883 station_ip 5.120.81.181 182883 port 244 182883 unique_id port 182884 username barzegar 182884 kill_reason Maximum number of concurrent logins reached 182884 mac 182884 bytes_out 0 182884 bytes_in 0 182884 station_ip 5.120.161.46 182884 port 240 182884 unique_id port 182886 username yaghobi 182886 mac 182886 bytes_out 220250 182886 bytes_in 316471 182886 station_ip 83.123.90.238 182886 port 241 182886 unique_id port 182886 remote_ip 10.8.0.138 182889 username dortaj3792 182889 mac 182889 bytes_out 41502 182889 bytes_in 69450 182879 mac 182879 bytes_out 0 182879 bytes_in 0 182879 station_ip 5.119.69.200 182879 port 229 182879 unique_id port 182879 remote_ip 10.8.0.10 182881 username aminvpn 182881 mac 182881 bytes_out 0 182881 bytes_in 0 182881 station_ip 46.100.217.46 182881 port 240 182881 unique_id port 182881 remote_ip 10.8.0.58 182887 username naeimeh 182887 mac 182887 bytes_out 1384736 182887 bytes_in 17712426 182887 station_ip 83.123.39.189 182887 port 240 182887 unique_id port 182887 remote_ip 10.8.0.78 182888 username rashidi4690 182888 kill_reason Another user logged on this global unique id 182888 mac 182888 bytes_out 0 182888 bytes_in 0 182888 station_ip 83.123.113.144 182888 port 243 182888 unique_id port 182890 username aminvpn 182890 mac 182890 bytes_out 7519 182890 bytes_in 10544 182890 station_ip 5.120.145.6 182890 port 229 182890 unique_id port 182890 remote_ip 10.8.0.58 182892 username aminvpn 182892 mac 182892 bytes_out 0 182892 bytes_in 0 182892 station_ip 46.100.217.46 182892 port 229 182892 unique_id port 182892 remote_ip 10.8.0.58 182902 username saeeddamghani 182902 kill_reason Maximum check online fails reached 182902 mac 182902 bytes_out 0 182902 bytes_in 0 182902 station_ip 31.56.91.203 182902 port 226 182902 unique_id port 182910 username naeimeh 182910 mac 182910 bytes_out 4626926 182910 bytes_in 29120428 182910 station_ip 83.123.39.189 182910 port 241 182910 unique_id port 182910 remote_ip 10.8.0.78 182916 username barzegar 182916 kill_reason Another user logged on this global unique id 182916 mac 182916 bytes_out 0 182916 bytes_in 0 182916 station_ip 5.120.175.75 182916 port 229 182916 unique_id port 182916 remote_ip 10.8.0.10 182918 username malekpoir 182918 kill_reason Another user logged on this global unique id 182918 mac 182918 bytes_out 0 182918 bytes_in 0 182918 station_ip 5.119.84.110 182918 port 237 182918 unique_id port 182918 remote_ip 10.8.0.18 182920 username fezealinaghi 182920 mac 182920 bytes_out 0 182920 bytes_in 0 182920 station_ip 83.123.46.69 182920 port 238 182920 unique_id port 182930 username rashidi4690 182930 mac 182930 bytes_out 745276 182930 bytes_in 6448703 182930 station_ip 5.120.155.152 182930 port 246 182930 unique_id port 182930 remote_ip 10.8.0.242 182931 username yaghobi 182931 mac 182931 bytes_out 424348 182931 bytes_in 641285 182931 station_ip 83.123.29.160 182931 port 240 182931 unique_id port 182931 remote_ip 10.8.0.138 182936 username barzegar 182936 mac 182936 bytes_out 0 182936 bytes_in 0 182936 station_ip 5.120.175.75 182936 port 249 182936 unique_id port 182936 remote_ip 10.8.0.10 182938 username barzegar 182938 mac 182938 bytes_out 0 182938 bytes_in 0 182938 station_ip 5.120.175.75 182938 port 249 182938 unique_id port 182938 remote_ip 10.8.0.10 182939 username saeed9658 182939 kill_reason Another user logged on this global unique id 182939 mac 182939 bytes_out 0 182939 bytes_in 0 182939 station_ip 5.120.34.92 182939 port 247 182939 unique_id port 182939 remote_ip 10.8.0.162 182940 username yaghobi 182940 mac 182940 bytes_out 860898 182940 bytes_in 6102936 182940 station_ip 83.123.29.160 182940 port 246 182940 unique_id port 182940 remote_ip 10.8.0.138 182942 username mahdiyehalizadeh 182942 mac 182942 bytes_out 686838 182942 bytes_in 4901527 182942 station_ip 5.119.153.166 182942 port 240 182942 unique_id port 182942 remote_ip 10.8.0.114 182944 username malekpoir 182944 mac 182944 bytes_out 0 182944 bytes_in 0 182944 station_ip 5.119.84.110 182944 port 237 182889 station_ip 5.120.3.131 182889 port 240 182889 unique_id port 182889 remote_ip 10.8.0.102 182896 username barzegar 182896 kill_reason Another user logged on this global unique id 182896 mac 182896 bytes_out 0 182896 bytes_in 0 182896 station_ip 5.120.161.46 182896 port 226 182896 unique_id port 182896 remote_ip 10.8.0.10 182898 username aminvpn 182898 mac 182898 bytes_out 0 182898 bytes_in 0 182898 station_ip 46.100.217.46 182898 port 236 182898 unique_id port 182898 remote_ip 10.8.0.58 182899 username aminvpn 182899 mac 182899 bytes_out 0 182899 bytes_in 0 182899 station_ip 46.100.217.46 182899 port 229 182899 unique_id port 182899 remote_ip 10.8.0.58 182901 username yaghobi 182901 mac 182901 bytes_out 177440 182901 bytes_in 276832 182901 station_ip 83.123.29.160 182901 port 247 182901 unique_id port 182901 remote_ip 10.8.0.138 182905 username rashidi4690 182905 kill_reason Another user logged on this global unique id 182905 mac 182905 bytes_out 0 182905 bytes_in 0 182905 station_ip 83.123.113.144 182905 port 243 182905 unique_id port 182908 username khalili2 182908 kill_reason Another user logged on this global unique id 182908 mac 182908 bytes_out 0 182908 bytes_in 0 182908 station_ip 5.120.81.181 182908 port 244 182908 unique_id port 182912 username hosseine 182912 mac 182912 bytes_out 0 182912 bytes_in 0 182912 station_ip 83.123.62.203 182912 port 234 182912 unique_id port 182914 username mohammadjavad 182914 mac 182914 bytes_out 1782081 182914 bytes_in 24775106 182914 station_ip 83.123.52.143 182914 port 240 182914 unique_id port 182914 remote_ip 10.8.0.110 182915 username yaghobi 182915 mac 182915 bytes_out 276906 182915 bytes_in 294227 182915 station_ip 83.123.29.160 182915 port 250 182915 unique_id port 182915 remote_ip 10.8.0.138 182917 username naeimeh 182917 mac 182917 bytes_out 1847998 182917 bytes_in 10336121 182917 station_ip 83.123.39.189 182917 port 245 182917 unique_id port 182917 remote_ip 10.8.0.78 182922 username saeeddamghani 182922 mac 182922 bytes_out 0 182922 bytes_in 0 182922 station_ip 31.56.91.203 182922 port 246 182922 unique_id port 182922 remote_ip 10.8.0.122 182923 username rashidi4690 182923 mac 182923 bytes_out 0 182923 bytes_in 0 182923 station_ip 83.123.113.144 182923 port 243 182923 unique_id port 182925 username barzegar 182925 mac 182925 bytes_out 0 182925 bytes_in 0 182925 station_ip 5.120.175.75 182925 port 229 182925 unique_id port 182927 username barzegar 182927 mac 182927 bytes_out 13508 182927 bytes_in 250469 182927 station_ip 5.120.175.75 182927 port 229 182927 unique_id port 182927 remote_ip 10.8.0.10 182928 username alipour1506 182928 mac 182928 bytes_out 194769 182928 bytes_in 804138 182928 station_ip 83.123.77.150 182928 port 241 182928 unique_id port 182928 remote_ip 10.8.0.126 182932 username kalantary6037 182932 mac 182932 bytes_out 359019 182932 bytes_in 1652321 182932 station_ip 83.123.114.63 182932 port 241 182932 unique_id port 182932 remote_ip 10.8.0.50 182934 username mosi 182934 kill_reason Another user logged on this global unique id 182934 mac 182934 bytes_out 0 182934 bytes_in 0 182934 station_ip 151.235.83.58 182934 port 238 182934 unique_id port 182934 remote_ip 10.8.0.142 182937 username khademi 182937 kill_reason Another user logged on this global unique id 182937 mac 182937 bytes_out 0 182937 bytes_in 0 182937 station_ip 83.123.54.146 182937 port 227 182937 unique_id port 182941 username pourshad 182941 mac 182941 bytes_out 223449 182891 mac 182891 bytes_out 0 182891 bytes_in 0 182891 station_ip 46.100.217.46 182891 port 240 182891 unique_id port 182891 remote_ip 10.8.0.58 182893 username mosi 182893 mac 182893 bytes_out 2192307 182893 bytes_in 17179464 182893 station_ip 151.235.83.58 182893 port 236 182893 unique_id port 182893 remote_ip 10.8.0.142 182894 username hosseine 182894 kill_reason Another user logged on this global unique id 182894 mac 182894 bytes_out 0 182894 bytes_in 0 182894 station_ip 83.123.62.203 182894 port 234 182894 unique_id port 182895 username saeeddamghani 182895 mac 182895 bytes_out 272986 182895 bytes_in 2601233 182895 station_ip 5.216.238.48 182895 port 236 182895 unique_id port 182895 remote_ip 10.8.0.122 182897 username aminvpn 182897 mac 182897 bytes_out 15232 182897 bytes_in 17862 182897 station_ip 5.120.145.6 182897 port 229 182897 unique_id port 182897 remote_ip 10.8.0.58 182900 username barzegar 182900 mac 182900 bytes_out 0 182900 bytes_in 0 182900 station_ip 5.120.161.46 182900 port 226 182900 unique_id port 182903 username shadkam 182903 mac 182903 bytes_out 3755242 182903 bytes_in 40313905 182903 station_ip 83.123.51.3 182903 port 248 182903 unique_id port 182903 remote_ip 10.8.0.74 182904 username aminvpn 182904 mac 182904 bytes_out 4766 182904 bytes_in 11151 182904 station_ip 5.120.145.6 182904 port 236 182904 unique_id port 182904 remote_ip 10.8.0.58 182906 username aminvpn 182906 mac 182906 bytes_out 0 182906 bytes_in 0 182906 station_ip 46.100.217.46 182906 port 247 182906 unique_id port 182906 remote_ip 10.8.0.58 182907 username mehdizare 182907 mac 182907 bytes_out 79693 182907 bytes_in 97092 182907 station_ip 83.123.95.193 182907 port 245 182907 unique_id port 182907 remote_ip 10.8.0.210 182909 username alipour1506 182909 mac 182909 bytes_out 109077 182909 bytes_in 181728 182909 station_ip 83.123.77.150 182909 port 246 182909 unique_id port 182909 remote_ip 10.8.0.126 182911 username rajaei 182911 mac 182911 bytes_out 0 182911 bytes_in 0 182911 station_ip 37.156.53.203 182911 port 246 182911 unique_id port 182911 remote_ip 10.8.0.218 182913 username mehdizare 182913 mac 182913 bytes_out 14131 182913 bytes_in 14991 182913 station_ip 83.123.95.193 182913 port 248 182913 unique_id port 182913 remote_ip 10.8.0.210 182919 username rashidi4690 182919 kill_reason Another user logged on this global unique id 182919 mac 182919 bytes_out 0 182919 bytes_in 0 182919 station_ip 83.123.113.144 182919 port 243 182919 unique_id port 182921 username dortaj3792 182921 mac 182921 bytes_out 134305 182921 bytes_in 175136 182921 station_ip 5.120.3.131 182921 port 249 182921 unique_id port 182921 remote_ip 10.8.0.102 182924 username pourshad 182924 mac 182924 bytes_out 0 182924 bytes_in 0 182924 station_ip 5.120.55.140 182924 port 242 182924 unique_id port 182926 username khademi 182926 kill_reason Another user logged on this global unique id 182926 mac 182926 bytes_out 0 182926 bytes_in 0 182926 station_ip 83.123.54.146 182926 port 227 182926 unique_id port 182926 remote_ip 10.8.0.14 182929 username dortaj3792 182929 mac 182929 bytes_out 70546 182929 bytes_in 60563 182929 station_ip 5.120.3.131 182929 port 243 182929 unique_id port 182929 remote_ip 10.8.0.102 182933 username alirezazadeh 182933 unique_id port 182933 terminate_cause Lost-Carrier 182933 bytes_out 88947 182933 bytes_in 966623 182933 station_ip 5.119.80.166 182933 port 15728937 182933 nas_port_type Virtual 182933 remote_ip 5.5.5.171 182935 username hamid.e 182935 unique_id port 182935 terminate_cause User-Request 182935 bytes_out 730200 182935 bytes_in 14398321 182935 station_ip 37.27.5.14 182935 port 15728935 182935 nas_port_type Virtual 182935 remote_ip 5.5.5.173 182943 username saeed9658 182943 mac 182943 bytes_out 0 182943 bytes_in 0 182943 station_ip 5.120.34.92 182943 port 247 182943 unique_id port 182945 username aminvpn 182945 unique_id port 182945 terminate_cause Lost-Carrier 182945 bytes_out 2187098 182945 bytes_in 6842287 182945 station_ip 5.120.132.214 182945 port 15728936 182945 nas_port_type Virtual 182945 remote_ip 5.5.5.172 182947 username rajaei 182947 kill_reason Another user logged on this global unique id 182947 mac 182947 bytes_out 0 182947 bytes_in 0 182947 station_ip 37.156.53.203 182947 port 245 182947 unique_id port 182947 remote_ip 10.8.0.218 182948 username yaghobi 182948 mac 182948 bytes_out 205049 182948 bytes_in 319478 182948 station_ip 83.123.29.160 182948 port 250 182948 unique_id port 182948 remote_ip 10.8.0.138 182950 username mansour 182950 mac 182950 bytes_out 47034 182950 bytes_in 26315 182950 station_ip 5.202.97.228 182950 port 240 182950 unique_id port 182950 remote_ip 10.8.0.206 182952 username afarin1 182952 mac 182952 bytes_out 1041792 182952 bytes_in 4659925 182952 station_ip 83.123.107.125 182952 port 241 182952 unique_id port 182952 remote_ip 10.8.0.166 182962 username alihosseini1 182962 mac 182962 bytes_out 4172135 182962 bytes_in 46755297 182962 station_ip 5.120.24.33 182962 port 243 182962 unique_id port 182962 remote_ip 10.8.0.234 182967 username khalili2 182967 kill_reason Another user logged on this global unique id 182967 mac 182967 bytes_out 0 182967 bytes_in 0 182967 station_ip 5.120.81.181 182967 port 244 182967 unique_id port 182969 username mostafa_es78 182969 kill_reason Another user logged on this global unique id 182969 mac 182969 bytes_out 0 182969 bytes_in 0 182969 station_ip 83.122.122.154 182969 port 218 182969 unique_id port 182969 remote_ip 10.8.0.34 182971 username sedighe 182971 mac 182971 bytes_out 416663 182971 bytes_in 867638 182971 station_ip 83.123.9.186 182971 port 241 182971 unique_id port 182971 remote_ip 10.8.0.46 182974 username hadibarzegar 182974 kill_reason Another user logged on this global unique id 182974 mac 182974 bytes_out 0 182974 bytes_in 0 182974 station_ip 83.123.25.81 182974 port 240 182974 unique_id port 182977 username aminvpn 182977 mac 182977 bytes_out 0 182977 bytes_in 0 182977 station_ip 46.100.217.46 182977 port 247 182977 unique_id port 182977 remote_ip 10.8.0.58 182978 username sedighe 182978 mac 182978 bytes_out 23049 182978 bytes_in 17600 182978 station_ip 83.123.9.186 182978 port 241 182978 unique_id port 182978 remote_ip 10.8.0.46 182980 username afarin1 182980 mac 182980 bytes_out 26155 182980 bytes_in 32857 182980 station_ip 83.123.107.125 182980 port 248 182980 unique_id port 182980 remote_ip 10.8.0.166 182983 username hadibarzegar 182983 mac 182983 bytes_out 0 182983 bytes_in 0 182983 station_ip 83.123.25.81 182983 port 240 182983 unique_id port 182984 username soleymani5056 182984 mac 182984 bytes_out 94395 182984 bytes_in 148283 182984 station_ip 5.119.37.212 182984 port 237 182984 unique_id port 182984 remote_ip 10.8.0.226 182989 username aminvpn 182989 mac 182989 bytes_out 0 182989 bytes_in 0 182989 station_ip 46.100.217.46 182989 port 248 182989 unique_id port 182989 remote_ip 10.8.0.58 182995 username mostafa_es78 182995 kill_reason Another user logged on this global unique id 182995 mac 182941 bytes_in 767610 182941 station_ip 5.120.55.140 182941 port 248 182941 unique_id port 182941 remote_ip 10.8.0.42 182946 username motamedi9772 182946 mac 182946 bytes_out 148539 182946 bytes_in 177879 182946 station_ip 83.123.57.248 182946 port 240 182946 unique_id port 182946 remote_ip 10.8.0.154 182951 username aminvpn 182951 unique_id port 182951 terminate_cause Lost-Carrier 182951 bytes_out 1666522 182951 bytes_in 28428701 182951 station_ip 5.120.132.214 182951 port 15728938 182951 nas_port_type Virtual 182951 remote_ip 5.5.5.170 182954 username barzegar 182954 mac 182954 bytes_out 0 182954 bytes_in 0 182954 station_ip 5.120.175.75 182954 port 250 182954 unique_id port 182954 remote_ip 10.8.0.10 182955 username barzegar 182955 mac 182955 bytes_out 0 182955 bytes_in 0 182955 station_ip 5.120.175.75 182955 port 250 182955 unique_id port 182955 remote_ip 10.8.0.10 182956 username afarin1 182956 mac 182956 bytes_out 5306 182956 bytes_in 12207 182956 station_ip 83.123.107.125 182956 port 251 182956 unique_id port 182956 remote_ip 10.8.0.166 182958 username dortaj3792 182958 mac 182958 bytes_out 104749 182958 bytes_in 218525 182958 station_ip 5.120.3.131 182958 port 237 182958 unique_id port 182958 remote_ip 10.8.0.102 182959 username aminvpn 182959 unique_id port 182959 terminate_cause Lost-Carrier 182959 bytes_out 324447 182959 bytes_in 506214 182959 station_ip 83.123.89.237 182959 port 15728933 182959 nas_port_type Virtual 182959 remote_ip 5.5.5.175 182960 username mehdizare 182960 mac 182960 bytes_out 802262 182960 bytes_in 8527449 182960 station_ip 83.123.95.193 182960 port 248 182960 unique_id port 182960 remote_ip 10.8.0.210 182963 username rashidi4690 182963 mac 182963 bytes_out 1955387 182963 bytes_in 13514600 182963 station_ip 5.120.155.152 182963 port 249 182963 unique_id port 182963 remote_ip 10.8.0.242 182966 username hadibarzegar 182966 kill_reason Another user logged on this global unique id 182966 mac 182966 bytes_out 0 182966 bytes_in 0 182966 station_ip 83.123.25.81 182966 port 240 182966 unique_id port 182966 remote_ip 10.8.0.178 182970 username dortaj3792 182970 mac 182970 bytes_out 213044 182970 bytes_in 199145 182970 station_ip 5.120.3.131 182970 port 237 182970 unique_id port 182970 remote_ip 10.8.0.102 182976 username aminvpn 182976 mac 182976 bytes_out 127456 182976 bytes_in 247154 182976 station_ip 5.120.145.6 182976 port 236 182976 unique_id port 182976 remote_ip 10.8.0.58 182981 username barzegar 182981 mac 182981 bytes_out 15041 182981 bytes_in 13673 182981 station_ip 5.119.202.201 182981 port 241 182981 unique_id port 182981 remote_ip 10.8.0.10 182986 username kalantary6037 182986 mac 182986 bytes_out 325671 182986 bytes_in 3264399 182986 station_ip 83.123.114.63 182986 port 237 182986 unique_id port 182986 remote_ip 10.8.0.50 182987 username aminvpn 182987 mac 182987 bytes_out 11273 182987 bytes_in 12900 182987 station_ip 5.120.145.6 182987 port 240 182987 unique_id port 182987 remote_ip 10.8.0.58 182991 username rashidi4690 182991 kill_reason Another user logged on this global unique id 182991 mac 182991 bytes_out 0 182991 bytes_in 0 182991 station_ip 83.123.16.228 182991 port 246 182991 unique_id port 182991 remote_ip 10.8.0.242 182992 username godarzi 182992 mac 182992 bytes_out 0 182992 bytes_in 0 182992 station_ip 5.202.97.167 182992 port 242 182992 unique_id port 182993 username yaghobi 182993 mac 182993 bytes_out 499723 182993 bytes_in 623499 182993 station_ip 83.123.61.84 182993 port 236 182944 unique_id port 182949 username mehdizare 182949 mac 182949 bytes_out 769255 182949 bytes_in 10903076 182949 station_ip 83.123.95.193 182949 port 234 182949 unique_id port 182949 remote_ip 10.8.0.210 182953 username alipour1506 182953 kill_reason Another user logged on this global unique id 182953 mac 182953 bytes_out 0 182953 bytes_in 0 182953 station_ip 78.39.25.121 182953 port 229 182953 unique_id port 182953 remote_ip 10.8.0.126 182957 username pourshad 182957 mac 182957 bytes_out 70483 182957 bytes_in 567161 182957 station_ip 5.119.255.161 182957 port 234 182957 unique_id port 182957 remote_ip 10.8.0.42 182961 username shadkam 182961 mac 182961 bytes_out 14264176 182961 bytes_in 30584035 182961 station_ip 83.123.109.107 182961 port 246 182961 unique_id port 182961 remote_ip 10.8.0.74 182964 username barzegar 182964 mac 182964 bytes_out 0 182964 bytes_in 0 182964 station_ip 5.120.175.75 182964 port 243 182964 unique_id port 182964 remote_ip 10.8.0.10 182965 username malekpoir 182965 mac 182965 bytes_out 1177249 182965 bytes_in 7342614 182965 station_ip 5.119.217.147 182965 port 247 182965 unique_id port 182965 remote_ip 10.8.0.18 182968 username rajaei 182968 kill_reason Another user logged on this global unique id 182968 mac 182968 bytes_out 0 182968 bytes_in 0 182968 station_ip 37.156.53.203 182968 port 245 182968 unique_id port 182972 username afarin1 182972 mac 182972 bytes_out 323276 182972 bytes_in 734416 182972 station_ip 83.123.107.125 182972 port 250 182972 unique_id port 182972 remote_ip 10.8.0.166 182973 username kalantary6037 182973 mac 182973 bytes_out 279963 182973 bytes_in 593004 182973 station_ip 83.123.114.63 182973 port 237 182973 unique_id port 182973 remote_ip 10.8.0.50 182975 username pourshad 182975 mac 182975 bytes_out 57478 182975 bytes_in 76842 182975 station_ip 5.119.255.161 182975 port 247 182975 unique_id port 182975 remote_ip 10.8.0.42 182979 username godarzi 182979 kill_reason Another user logged on this global unique id 182979 mac 182979 bytes_out 0 182979 bytes_in 0 182979 station_ip 5.202.97.167 182979 port 242 182979 unique_id port 182979 remote_ip 10.8.0.38 182982 username alihosseini1 182982 mac 182982 bytes_out 5628 182982 bytes_in 11721 182982 station_ip 5.120.73.225 182982 port 249 182982 unique_id port 182982 remote_ip 10.8.0.234 182985 username rajaei 182985 kill_reason Another user logged on this global unique id 182985 mac 182985 bytes_out 0 182985 bytes_in 0 182985 station_ip 37.156.53.203 182985 port 245 182985 unique_id port 182988 username sedighe 182988 mac 182988 bytes_out 55424 182988 bytes_in 63636 182988 station_ip 83.123.58.140 182988 port 247 182988 unique_id port 182988 remote_ip 10.8.0.46 182990 username aminvpn 182990 mac 182990 bytes_out 0 182990 bytes_in 0 182990 station_ip 46.100.217.46 182990 port 240 182990 unique_id port 182990 remote_ip 10.8.0.58 182996 username kalantary6037 182996 mac 182996 bytes_out 127860 182996 bytes_in 212067 182996 station_ip 83.123.114.63 182996 port 236 182996 unique_id port 182996 remote_ip 10.8.0.50 182997 username saeed9658 182997 mac 182997 bytes_out 0 182997 bytes_in 0 182997 station_ip 5.120.34.92 182997 port 236 182997 unique_id port 182997 remote_ip 10.8.0.162 183000 username saeed9658 183000 mac 183000 bytes_out 0 183000 bytes_in 0 183000 station_ip 5.120.34.92 183000 port 242 183000 unique_id port 183000 remote_ip 10.8.0.162 183008 username alikomsari 183008 mac 183008 bytes_out 9339086 183008 bytes_in 46715615 182993 unique_id port 182993 remote_ip 10.8.0.138 182994 username saeed9658 182994 mac 182994 bytes_out 2835308 182994 bytes_in 19834337 182994 station_ip 5.120.34.92 182994 port 243 182994 unique_id port 182994 remote_ip 10.8.0.162 182998 username sedighe 182998 mac 182998 bytes_out 143096 182998 bytes_in 448410 182998 station_ip 83.123.43.83 182998 port 237 182998 unique_id port 182998 remote_ip 10.8.0.46 183002 username sedighe 183002 mac 183002 bytes_out 3093 183002 bytes_in 3965 183002 station_ip 83.123.43.83 183002 port 247 183002 unique_id port 183002 remote_ip 10.8.0.46 183003 username yaghobi 183003 mac 183003 bytes_out 29193 183003 bytes_in 38292 183003 station_ip 83.123.6.44 183003 port 237 183003 unique_id port 183003 remote_ip 10.8.0.138 183006 username aminvpn 183006 mac 183006 bytes_out 0 183006 bytes_in 0 183006 station_ip 46.100.217.46 183006 port 237 183006 unique_id port 183006 remote_ip 10.8.0.58 183011 username aminvpn 183011 kill_reason Maximum check online fails reached 183011 mac 183011 bytes_out 0 183011 bytes_in 0 183011 station_ip 46.100.217.46 183011 port 237 183011 unique_id port 183015 username yaghobi 183015 mac 183015 bytes_out 149892 183015 bytes_in 207916 183015 station_ip 83.123.6.44 183015 port 243 183015 unique_id port 183015 remote_ip 10.8.0.138 183021 username sedighe 183021 mac 183021 bytes_out 51650 183021 bytes_in 80408 183021 station_ip 83.123.111.158 183021 port 245 183021 unique_id port 183021 remote_ip 10.8.0.46 183023 username shadkam 183023 mac 183023 bytes_out 39027 183023 bytes_in 112682 183023 station_ip 83.123.76.113 183023 port 249 183023 unique_id port 183023 remote_ip 10.8.0.74 183024 username yaghobi 183024 mac 183024 bytes_out 101797 183024 bytes_in 154455 183024 station_ip 83.123.6.44 183024 port 243 183024 unique_id port 183024 remote_ip 10.8.0.138 183027 username afarin1 183027 mac 183027 bytes_out 21818 183027 bytes_in 21598 183027 station_ip 83.123.107.125 183027 port 239 183027 unique_id port 183027 remote_ip 10.8.0.166 183028 username aminvpn 183028 mac 183028 bytes_out 11724 183028 bytes_in 18935 183028 station_ip 5.120.145.6 183028 port 240 183028 unique_id port 183028 remote_ip 10.8.0.58 183030 username pourshad 183030 mac 183030 bytes_out 2068626 183030 bytes_in 38234648 183030 station_ip 5.119.255.161 183030 port 242 183030 unique_id port 183030 remote_ip 10.8.0.42 183033 username pourshad 183033 mac 183033 bytes_out 36095 183033 bytes_in 34724 183033 station_ip 5.119.255.161 183033 port 227 183033 unique_id port 183033 remote_ip 10.8.0.42 183035 username shadkam 183035 mac 183035 bytes_out 354233 183035 bytes_in 4385401 183035 station_ip 83.123.65.90 183035 port 249 183035 unique_id port 183035 remote_ip 10.8.0.74 183036 username alihosseini1 183036 mac 183036 bytes_out 155659 183036 bytes_in 257118 183036 station_ip 5.120.73.225 183036 port 241 183036 unique_id port 183036 remote_ip 10.8.0.234 183040 username esmaeilkazemi 183040 mac 183040 bytes_out 6679 183040 bytes_in 24262 183040 station_ip 83.123.61.221 183040 port 241 183040 unique_id port 183040 remote_ip 10.8.0.26 183042 username rashidi4690 183042 mac 183042 bytes_out 0 183042 bytes_in 0 183042 station_ip 83.123.16.228 183042 port 246 183042 unique_id port 183047 username motamedi9772 183047 mac 183047 bytes_out 0 183047 bytes_in 0 183047 station_ip 83.123.111.28 183047 port 241 183047 unique_id port 183047 remote_ip 10.8.0.154 182995 bytes_out 0 182995 bytes_in 0 182995 station_ip 83.122.122.154 182995 port 218 182995 unique_id port 182999 username yaghobi 182999 mac 182999 bytes_out 68445 182999 bytes_in 92811 182999 station_ip 83.123.6.44 182999 port 242 182999 unique_id port 182999 remote_ip 10.8.0.138 183001 username pourshad 183001 mac 183001 bytes_out 1845 183001 bytes_in 4086 183001 station_ip 5.119.255.161 183001 port 243 183001 unique_id port 183001 remote_ip 10.8.0.42 183004 username saeed9658 183004 mac 183004 bytes_out 0 183004 bytes_in 0 183004 station_ip 5.120.34.92 183004 port 243 183004 unique_id port 183004 remote_ip 10.8.0.162 183005 username aminvpn 183005 mac 183005 bytes_out 7017 183005 bytes_in 13971 183005 station_ip 5.120.145.6 183005 port 240 183005 unique_id port 183005 remote_ip 10.8.0.58 183007 username yaghobi 183007 mac 183007 bytes_out 100180 183007 bytes_in 181695 183007 station_ip 83.123.6.44 183007 port 247 183007 unique_id port 183007 remote_ip 10.8.0.138 183010 username yaghobi 183010 mac 183010 bytes_out 0 183010 bytes_in 0 183010 station_ip 83.123.6.44 183010 port 239 183010 unique_id port 183010 remote_ip 10.8.0.138 183014 username aminvpn 183014 kill_reason Maximum check online fails reached 183014 unique_id port 183014 bytes_out 900726 183014 bytes_in 14209565 183014 station_ip 5.120.132.214 183014 port 15728939 183014 nas_port_type Virtual 183014 remote_ip 5.5.5.170 183017 username saeed9658 183017 mac 183017 bytes_out 0 183017 bytes_in 0 183017 station_ip 5.120.34.92 183017 port 245 183017 unique_id port 183017 remote_ip 10.8.0.162 183020 username sedighe 183020 mac 183020 bytes_out 2537 183020 bytes_in 4435 183020 station_ip 83.123.43.83 183020 port 247 183020 unique_id port 183020 remote_ip 10.8.0.46 183022 username barzegar 183022 mac 183022 bytes_out 0 183022 bytes_in 0 183022 station_ip 5.120.35.27 183022 port 248 183022 unique_id port 183022 remote_ip 10.8.0.10 183025 username khademi 183025 mac 183025 bytes_out 0 183025 bytes_in 0 183025 station_ip 83.123.54.146 183025 port 227 183025 unique_id port 183031 username sedighe 183031 mac 183031 bytes_out 97550 183031 bytes_in 149806 183031 station_ip 83.123.71.109 183031 port 250 183031 unique_id port 183031 remote_ip 10.8.0.46 183032 username dortaj3792 183032 mac 183032 bytes_out 169908 183032 bytes_in 256187 183032 station_ip 5.120.3.131 183032 port 247 183032 unique_id port 183032 remote_ip 10.8.0.102 183037 username sedighe 183037 mac 183037 bytes_out 2287 183037 bytes_in 5398 183037 station_ip 83.123.71.109 183037 port 251 183037 unique_id port 183037 remote_ip 10.8.0.46 183038 username barzegar 183038 mac 183038 bytes_out 0 183038 bytes_in 0 183038 station_ip 5.120.35.27 183038 port 241 183038 unique_id port 183038 remote_ip 10.8.0.10 183041 username sedighe 183041 mac 183041 bytes_out 40254 183041 bytes_in 53105 183041 station_ip 83.123.71.109 183041 port 227 183041 unique_id port 183041 remote_ip 10.8.0.46 183043 username meysam 183043 kill_reason Another user logged on this global unique id 183043 mac 183043 bytes_out 0 183043 bytes_in 0 183043 station_ip 188.158.48.182 183043 port 248 183043 unique_id port 183043 remote_ip 10.8.0.158 183045 username barzegar 183045 mac 183045 bytes_out 0 183045 bytes_in 0 183045 station_ip 5.120.35.27 183045 port 241 183045 unique_id port 183045 remote_ip 10.8.0.10 183049 username pourshad 183049 mac 183049 bytes_out 166411 183008 station_ip 5.119.138.121 183008 port 239 183008 unique_id port 183008 remote_ip 10.8.0.214 183009 username rajaei 183009 mac 183009 bytes_out 0 183009 bytes_in 0 183009 station_ip 37.156.53.203 183009 port 245 183009 unique_id port 183012 username barzegar 183012 mac 183012 bytes_out 0 183012 bytes_in 0 183012 station_ip 5.120.35.27 183012 port 239 183012 unique_id port 183012 remote_ip 10.8.0.10 183013 username sedighe 183013 mac 183013 bytes_out 58768 183013 bytes_in 88604 183013 station_ip 83.123.43.83 183013 port 242 183013 unique_id port 183013 remote_ip 10.8.0.46 183016 username sedighe 183016 mac 183016 bytes_out 3134 183016 bytes_in 5792 183016 station_ip 83.123.43.83 183016 port 239 183016 unique_id port 183016 remote_ip 10.8.0.46 183018 username shadkam 183018 mac 183018 bytes_out 560788 183018 bytes_in 4544334 183018 station_ip 83.123.89.23 183018 port 236 183018 unique_id port 183018 remote_ip 10.8.0.74 183019 username afarin1 183019 mac 183019 bytes_out 130750 183019 bytes_in 613360 183019 station_ip 83.123.107.125 183019 port 250 183019 unique_id port 183019 remote_ip 10.8.0.166 183026 username mostafa_es78 183026 mac 183026 bytes_out 0 183026 bytes_in 0 183026 station_ip 83.122.122.154 183026 port 218 183026 unique_id port 183029 username yaghobi 183029 mac 183029 bytes_out 37303 183029 bytes_in 62848 183029 station_ip 83.123.6.44 183029 port 227 183029 unique_id port 183029 remote_ip 10.8.0.138 183034 username rashidi4690 183034 kill_reason Another user logged on this global unique id 183034 mac 183034 bytes_out 0 183034 bytes_in 0 183034 station_ip 83.123.16.228 183034 port 246 183034 unique_id port 183039 username saeed9658 183039 mac 183039 bytes_out 2038415 183039 bytes_in 14934001 183039 station_ip 5.120.34.92 183039 port 236 183039 unique_id port 183039 remote_ip 10.8.0.162 183044 username sedighe 183044 mac 183044 bytes_out 45437 183044 bytes_in 25977 183044 station_ip 83.123.71.109 183044 port 227 183044 unique_id port 183044 remote_ip 10.8.0.46 183046 username alipour1506 183046 kill_reason Another user logged on this global unique id 183046 mac 183046 bytes_out 0 183046 bytes_in 0 183046 station_ip 78.39.25.121 183046 port 229 183046 unique_id port 183048 username kordestani 183048 mac 183048 bytes_out 37365 183048 bytes_in 47541 183048 station_ip 151.235.111.31 183048 port 227 183048 unique_id port 183048 remote_ip 10.8.0.130 183050 username sedighe 183050 mac 183050 bytes_out 2172 183050 bytes_in 3996 183050 station_ip 83.123.71.109 183050 port 247 183050 unique_id port 183050 remote_ip 10.8.0.46 183054 username khademi 183054 kill_reason Another user logged on this global unique id 183054 mac 183054 bytes_out 0 183054 bytes_in 0 183054 station_ip 83.123.54.146 183054 port 240 183054 unique_id port 183054 remote_ip 10.8.0.14 183062 username pourshad 183062 mac 183062 bytes_out 0 183062 bytes_in 0 183062 station_ip 5.119.255.161 183062 port 241 183062 unique_id port 183064 username naeimeh 183064 mac 183064 bytes_out 1401297 183064 bytes_in 11091463 183064 station_ip 83.123.12.22 183064 port 246 183064 unique_id port 183064 remote_ip 10.8.0.78 183066 username meysam 183066 mac 183066 bytes_out 0 183066 bytes_in 0 183066 station_ip 188.158.48.182 183066 port 248 183066 unique_id port 183067 username aminvpn 183067 unique_id port 183067 terminate_cause User-Request 183067 bytes_out 1168862 183067 bytes_in 18925870 183067 station_ip 5.120.132.214 183067 port 15728940 183049 bytes_in 1657411 183049 station_ip 5.119.255.161 183049 port 246 183049 unique_id port 183049 remote_ip 10.8.0.42 183058 username aminvpn 183058 mac 183058 bytes_out 14439 183058 bytes_in 21126 183058 station_ip 5.120.46.50 183058 port 242 183058 unique_id port 183058 remote_ip 10.8.0.58 183060 username kalantary6037 183060 mac 183060 bytes_out 107788 183060 bytes_in 673814 183060 station_ip 83.123.23.55 183060 port 249 183060 unique_id port 183060 remote_ip 10.8.0.50 183061 username pourshad 183061 kill_reason Another user logged on this global unique id 183061 mac 183061 bytes_out 0 183061 bytes_in 0 183061 station_ip 5.119.255.161 183061 port 241 183061 unique_id port 183061 remote_ip 10.8.0.42 183063 username sekonji0496 183063 mac 183063 bytes_out 284401 183063 bytes_in 4165570 183063 station_ip 83.123.30.118 183063 port 227 183063 unique_id port 183063 remote_ip 10.8.0.62 183065 username alipour1506 183065 kill_reason Another user logged on this global unique id 183065 mac 183065 bytes_out 0 183065 bytes_in 0 183065 station_ip 78.39.25.121 183065 port 229 183065 unique_id port 183068 username khademi 183068 kill_reason Another user logged on this global unique id 183068 mac 183068 bytes_out 0 183068 bytes_in 0 183068 station_ip 83.123.54.146 183068 port 240 183068 unique_id port 183070 username kalantary6037 183070 mac 183070 bytes_out 301770 183070 bytes_in 845170 183070 station_ip 83.123.23.55 183070 port 248 183070 unique_id port 183070 remote_ip 10.8.0.50 183072 username farhad3 183072 mac 183072 bytes_out 459105 183072 bytes_in 968101 183072 station_ip 5.119.154.15 183072 port 249 183072 unique_id port 183072 remote_ip 10.8.0.222 183078 username rashidi4690 183078 kill_reason Another user logged on this global unique id 183078 mac 183078 bytes_out 0 183078 bytes_in 0 183078 station_ip 83.123.16.228 183078 port 236 183078 unique_id port 183078 remote_ip 10.8.0.242 183080 username fezealinaghi 183080 mac 183080 bytes_out 702322 183080 bytes_in 3721257 183080 station_ip 83.123.18.69 183080 port 242 183080 unique_id port 183080 remote_ip 10.8.0.202 183082 username sedighe 183082 mac 183082 bytes_out 59308 183082 bytes_in 77132 183082 station_ip 83.123.71.109 183082 port 234 183082 unique_id port 183082 remote_ip 10.8.0.46 183084 username barzegar 183084 mac 183084 bytes_out 9220 183084 bytes_in 13424 183084 station_ip 5.120.35.27 183084 port 249 183084 unique_id port 183084 remote_ip 10.8.0.10 183085 username khademi 183085 kill_reason Another user logged on this global unique id 183085 mac 183085 bytes_out 0 183085 bytes_in 0 183085 station_ip 83.123.54.146 183085 port 240 183085 unique_id port 183087 username barzegar 183087 mac 183087 bytes_out 0 183087 bytes_in 0 183087 station_ip 5.120.35.27 183087 port 236 183087 unique_id port 183087 remote_ip 10.8.0.10 183089 username barzegar 183089 mac 183089 bytes_out 0 183089 bytes_in 0 183089 station_ip 5.120.35.27 183089 port 249 183089 unique_id port 183089 remote_ip 10.8.0.10 183095 username farhad3 183095 kill_reason Another user logged on this global unique id 183095 mac 183095 bytes_out 0 183095 bytes_in 0 183095 station_ip 5.119.154.15 183095 port 248 183095 unique_id port 183095 remote_ip 10.8.0.222 183100 username barzegar 183100 mac 183100 bytes_out 0 183100 bytes_in 0 183100 station_ip 5.120.35.27 183100 port 247 183100 unique_id port 183100 remote_ip 10.8.0.10 183101 username farhad3 183101 kill_reason Another user logged on this global unique id 183101 mac 183101 bytes_out 0 183101 bytes_in 0 183051 username mostafa_es78 183051 kill_reason Another user logged on this global unique id 183051 mac 183051 bytes_out 0 183051 bytes_in 0 183051 station_ip 83.122.122.154 183051 port 218 183051 unique_id port 183051 remote_ip 10.8.0.34 183052 username mostafa_es78 183052 mac 183052 bytes_out 0 183052 bytes_in 0 183052 station_ip 83.122.122.154 183052 port 218 183052 unique_id port 183053 username barzegar 183053 mac 183053 bytes_out 0 183053 bytes_in 0 183053 station_ip 5.120.35.27 183053 port 246 183053 unique_id port 183053 remote_ip 10.8.0.10 183055 username mehdizare 183055 mac 183055 bytes_out 193413 183055 bytes_in 160001 183055 station_ip 83.123.95.193 183055 port 234 183055 unique_id port 183055 remote_ip 10.8.0.210 183056 username shadkam 183056 mac 183056 bytes_out 585268 183056 bytes_in 7760322 183056 station_ip 83.123.15.207 183056 port 249 183056 unique_id port 183056 remote_ip 10.8.0.74 183057 username sedighe 183057 mac 183057 bytes_out 12077 183057 bytes_in 17366 183057 station_ip 83.123.71.109 183057 port 227 183057 unique_id port 183057 remote_ip 10.8.0.46 183059 username aminvpn 183059 mac 183059 bytes_out 0 183059 bytes_in 0 183059 station_ip 46.100.217.46 183059 port 250 183059 unique_id port 183059 remote_ip 10.8.0.58 183073 username pourshad 183073 kill_reason Another user logged on this global unique id 183073 mac 183073 bytes_out 0 183073 bytes_in 0 183073 station_ip 5.119.255.161 183073 port 246 183073 unique_id port 183073 remote_ip 10.8.0.42 183074 username farhad3 183074 mac 183074 bytes_out 0 183074 bytes_in 0 183074 station_ip 5.119.154.15 183074 port 248 183074 unique_id port 183074 remote_ip 10.8.0.222 183075 username soleymani5056 183075 mac 183075 bytes_out 82550 183075 bytes_in 266447 183075 station_ip 5.119.177.48 183075 port 250 183075 unique_id port 183075 remote_ip 10.8.0.226 183088 username fezealinaghi 183088 mac 183088 bytes_out 125693 183088 bytes_in 386511 183088 station_ip 83.123.18.69 183088 port 242 183088 unique_id port 183088 remote_ip 10.8.0.202 183090 username rashidi4690 183090 mac 183090 bytes_out 309744 183090 bytes_in 1419853 183090 station_ip 5.120.155.152 183090 port 236 183090 unique_id port 183090 remote_ip 10.8.0.242 183092 username kalantary6037 183092 mac 183092 bytes_out 45196 183092 bytes_in 254262 183092 station_ip 83.123.23.55 183092 port 242 183092 unique_id port 183092 remote_ip 10.8.0.50 183094 username alipour1506 183094 kill_reason Another user logged on this global unique id 183094 mac 183094 bytes_out 0 183094 bytes_in 0 183094 station_ip 78.39.25.121 183094 port 229 183094 unique_id port 183096 username barzegar 183096 mac 183096 bytes_out 4345550 183096 bytes_in 2796406 183096 station_ip 5.120.35.27 183096 port 236 183096 unique_id port 183096 remote_ip 10.8.0.10 183097 username sedighe 183097 mac 183097 bytes_out 60921 183097 bytes_in 108197 183097 station_ip 83.123.71.109 183097 port 234 183097 unique_id port 183097 remote_ip 10.8.0.46 183099 username rashidi4690 183099 mac 183099 bytes_out 11951 183099 bytes_in 35512 183099 station_ip 5.120.155.152 183099 port 247 183099 unique_id port 183099 remote_ip 10.8.0.242 183105 username godarzi 183105 kill_reason Another user logged on this global unique id 183105 mac 183105 bytes_out 0 183105 bytes_in 0 183105 station_ip 5.202.97.167 183105 port 218 183105 unique_id port 183105 remote_ip 10.8.0.38 183114 username barzegar 183114 mac 183114 bytes_out 0 183114 bytes_in 0 183114 station_ip 5.120.35.27 183067 nas_port_type Virtual 183067 remote_ip 5.5.5.170 183069 username soleymani5056 183069 mac 183069 bytes_out 261182 183069 bytes_in 1200869 183069 station_ip 5.120.90.4 183069 port 242 183069 unique_id port 183069 remote_ip 10.8.0.226 183071 username fezealinaghi 183071 mac 183071 bytes_out 615090 183071 bytes_in 2426040 183071 station_ip 83.123.18.69 183071 port 241 183071 unique_id port 183071 remote_ip 10.8.0.202 183076 username kalantary6037 183076 mac 183076 bytes_out 166873 183076 bytes_in 816366 183076 station_ip 83.123.23.55 183076 port 241 183076 unique_id port 183076 remote_ip 10.8.0.50 183077 username barzegar 183077 mac 183077 bytes_out 3250 183077 bytes_in 5315 183077 station_ip 5.120.35.27 183077 port 241 183077 unique_id port 183077 remote_ip 10.8.0.10 183079 username farhad3 183079 mac 183079 bytes_out 1060188 183079 bytes_in 3027127 183079 station_ip 5.119.154.15 183079 port 248 183079 unique_id port 183079 remote_ip 10.8.0.222 183081 username kalantary6037 183081 mac 183081 bytes_out 0 183081 bytes_in 0 183081 station_ip 83.123.23.55 183081 port 242 183081 unique_id port 183081 remote_ip 10.8.0.50 183083 username alipour1506 183083 kill_reason Another user logged on this global unique id 183083 mac 183083 bytes_out 0 183083 bytes_in 0 183083 station_ip 78.39.25.121 183083 port 229 183083 unique_id port 183086 username rashidi4690 183086 mac 183086 bytes_out 0 183086 bytes_in 0 183086 station_ip 83.123.16.228 183086 port 236 183086 unique_id port 183091 username khalili2 183091 mac 183091 bytes_out 0 183091 bytes_in 0 183091 station_ip 5.120.81.181 183091 port 244 183091 unique_id port 183093 username fezealinaghi 183093 mac 183093 bytes_out 520311 183093 bytes_in 5249371 183093 station_ip 83.123.94.183 183093 port 236 183093 unique_id port 183093 remote_ip 10.8.0.202 183098 username mehdizare 183098 mac 183098 bytes_out 114238 183098 bytes_in 208606 183098 station_ip 83.123.95.193 183098 port 247 183098 unique_id port 183098 remote_ip 10.8.0.210 183102 username malekpoir 183102 kill_reason Another user logged on this global unique id 183102 mac 183102 bytes_out 0 183102 bytes_in 0 183102 station_ip 5.119.217.147 183102 port 239 183102 unique_id port 183102 remote_ip 10.8.0.18 183103 username sabaghnezhad 183103 mac 183103 bytes_out 1166265 183103 bytes_in 5393021 183103 station_ip 83.123.60.143 183103 port 243 183103 unique_id port 183103 remote_ip 10.8.0.66 183107 username sekonji0496 183107 mac 183107 bytes_out 14686 183107 bytes_in 17307 183107 station_ip 83.123.30.118 183107 port 247 183107 unique_id port 183107 remote_ip 10.8.0.62 183108 username milan 183108 kill_reason Another user logged on this global unique id 183108 mac 183108 bytes_out 0 183108 bytes_in 0 183108 station_ip 5.119.97.240 183108 port 233 183108 unique_id port 183109 username barzegar 183109 mac 183109 bytes_out 28203 183109 bytes_in 32711 183109 station_ip 5.120.35.27 183109 port 250 183109 unique_id port 183109 remote_ip 10.8.0.10 183110 username houshang 183110 mac 183110 bytes_out 104676 183110 bytes_in 132163 183110 station_ip 5.119.175.153 183110 port 242 183110 unique_id port 183110 remote_ip 10.8.0.82 183112 username farhad3 183112 kill_reason Another user logged on this global unique id 183112 mac 183112 bytes_out 0 183112 bytes_in 0 183112 station_ip 5.119.154.15 183112 port 248 183112 unique_id port 183116 username malekpoir 183116 mac 183116 bytes_out 0 183116 bytes_in 0 183116 station_ip 5.119.217.147 183116 port 239 183101 station_ip 5.119.154.15 183101 port 248 183101 unique_id port 183104 username mehdizare 183104 mac 183104 bytes_out 56067 183104 bytes_in 82229 183104 station_ip 83.123.95.193 183104 port 244 183104 unique_id port 183104 remote_ip 10.8.0.210 183106 username sedighe 183106 mac 183106 bytes_out 33419 183106 bytes_in 27983 183106 station_ip 83.123.71.109 183106 port 242 183106 unique_id port 183106 remote_ip 10.8.0.46 183111 username aminvpn 183111 mac 183111 bytes_out 278802 183111 bytes_in 664225 183111 station_ip 5.120.46.50 183111 port 227 183111 unique_id port 183111 remote_ip 10.8.0.58 183113 username alikomsari 183113 mac 183113 bytes_out 7097622 183113 bytes_in 30531522 183113 station_ip 5.119.138.121 183113 port 245 183113 unique_id port 183113 remote_ip 10.8.0.214 183118 username aminvpn 183118 mac 183118 bytes_out 22987 183118 bytes_in 17569 183118 station_ip 5.120.46.50 183118 port 227 183118 unique_id port 183118 remote_ip 10.8.0.58 183121 username dortaj3792 183121 mac 183121 bytes_out 72337 183121 bytes_in 170048 183121 station_ip 5.120.3.131 183121 port 227 183121 unique_id port 183121 remote_ip 10.8.0.102 183122 username meysam 183122 mac 183122 bytes_out 2707251 183122 bytes_in 35220599 183122 station_ip 188.158.48.182 183122 port 236 183122 unique_id port 183122 remote_ip 10.8.0.158 183128 username aminvpn 183128 mac 183128 bytes_out 15813 183128 bytes_in 14795 183128 station_ip 5.120.46.50 183128 port 250 183128 unique_id port 183128 remote_ip 10.8.0.58 183130 username barzegar 183130 mac 183130 bytes_out 0 183130 bytes_in 0 183130 station_ip 5.120.35.27 183130 port 227 183130 unique_id port 183130 remote_ip 10.8.0.10 183133 username pourshad 183133 mac 183133 bytes_out 0 183133 bytes_in 0 183133 station_ip 5.119.255.161 183133 port 246 183133 unique_id port 183137 username barzegar 183137 mac 183137 bytes_out 0 183137 bytes_in 0 183137 station_ip 5.120.35.27 183137 port 236 183137 unique_id port 183137 remote_ip 10.8.0.10 183139 username aminvpn 183139 mac 183139 bytes_out 0 183139 bytes_in 0 183139 station_ip 5.120.46.50 183139 port 236 183139 unique_id port 183139 remote_ip 10.8.0.58 183141 username mohammadjavad 183141 mac 183141 bytes_out 80700 183141 bytes_in 298208 183141 station_ip 83.123.72.171 183141 port 239 183141 unique_id port 183141 remote_ip 10.8.0.110 183144 username soleymani5056 183144 mac 183144 bytes_out 215599 183144 bytes_in 394161 183144 station_ip 5.120.154.171 183144 port 242 183144 unique_id port 183144 remote_ip 10.8.0.226 183147 username aminvpn 183147 mac 183147 bytes_out 0 183147 bytes_in 0 183147 station_ip 83.123.45.100 183147 port 241 183147 unique_id port 183147 remote_ip 10.8.0.58 183148 username aminvpn 183148 mac 183148 bytes_out 0 183148 bytes_in 0 183148 station_ip 5.120.46.50 183148 port 239 183148 unique_id port 183148 remote_ip 10.8.0.58 183149 username aminvpn 183149 mac 183149 bytes_out 0 183149 bytes_in 0 183149 station_ip 83.123.45.100 183149 port 242 183149 unique_id port 183149 remote_ip 10.8.0.58 183154 username farhad3 183154 mac 183154 bytes_out 0 183154 bytes_in 0 183154 station_ip 5.119.154.15 183154 port 248 183154 unique_id port 183163 username barzegar 183163 mac 183163 bytes_out 0 183163 bytes_in 0 183163 station_ip 5.120.35.27 183163 port 242 183163 unique_id port 183163 remote_ip 10.8.0.10 183164 username aminvpn 183164 mac 183114 port 242 183114 unique_id port 183114 remote_ip 10.8.0.10 183115 username sedighe 183115 mac 183115 bytes_out 4917 183115 bytes_in 8281 183115 station_ip 83.123.71.109 183115 port 251 183115 unique_id port 183115 remote_ip 10.8.0.46 183117 username soleymani5056 183117 mac 183117 bytes_out 424165 183117 bytes_in 977003 183117 station_ip 5.119.60.1 183117 port 249 183117 unique_id port 183117 remote_ip 10.8.0.226 183119 username aminvpn 183119 mac 183119 bytes_out 0 183119 bytes_in 0 183119 station_ip 46.100.217.46 183119 port 249 183119 unique_id port 183119 remote_ip 10.8.0.58 183120 username farhad3 183120 kill_reason Another user logged on this global unique id 183120 mac 183120 bytes_out 0 183120 bytes_in 0 183120 station_ip 5.119.154.15 183120 port 248 183120 unique_id port 183123 username sedighe 183123 mac 183123 bytes_out 5644 183123 bytes_in 7214 183123 station_ip 83.123.71.109 183123 port 242 183123 unique_id port 183123 remote_ip 10.8.0.46 183124 username barzegar 183124 mac 183124 bytes_out 3368 183124 bytes_in 4613 183124 station_ip 5.120.35.27 183124 port 227 183124 unique_id port 183124 remote_ip 10.8.0.10 183125 username sedighe 183125 mac 183125 bytes_out 0 183125 bytes_in 0 183125 station_ip 83.123.71.109 183125 port 227 183125 unique_id port 183125 remote_ip 10.8.0.46 183126 username barzegar 183126 mac 183126 bytes_out 0 183126 bytes_in 0 183126 station_ip 5.120.35.27 183126 port 227 183126 unique_id port 183126 remote_ip 10.8.0.10 183127 username soleymani5056 183127 mac 183127 bytes_out 471689 183127 bytes_in 1745986 183127 station_ip 5.119.56.192 183127 port 239 183127 unique_id port 183127 remote_ip 10.8.0.226 183129 username sedighe 183129 mac 183129 bytes_out 2446 183129 bytes_in 4578 183129 station_ip 83.123.71.109 183129 port 236 183129 unique_id port 183129 remote_ip 10.8.0.46 183134 username aminvpn 183134 mac 183134 bytes_out 167526 183134 bytes_in 749520 183134 station_ip 83.123.45.100 183134 port 239 183134 unique_id port 183134 remote_ip 10.8.0.58 183136 username barzegar 183136 mac 183136 bytes_out 0 183136 bytes_in 0 183136 station_ip 5.120.35.27 183136 port 241 183136 unique_id port 183136 remote_ip 10.8.0.10 183140 username barzegar 183140 mac 183140 bytes_out 0 183140 bytes_in 0 183140 station_ip 5.120.35.27 183140 port 241 183140 unique_id port 183140 remote_ip 10.8.0.10 183150 username kalantary6037 183150 kill_reason Another user logged on this global unique id 183150 mac 183150 bytes_out 0 183150 bytes_in 0 183150 station_ip 83.123.23.55 183150 port 249 183150 unique_id port 183150 remote_ip 10.8.0.50 183151 username shadkam 183151 mac 183151 bytes_out 622281 183151 bytes_in 3301770 183151 station_ip 83.123.116.61 183151 port 236 183151 unique_id port 183151 remote_ip 10.8.0.74 183152 username aminvpn 183152 mac 183152 bytes_out 3812 183152 bytes_in 12147 183152 station_ip 5.120.46.50 183152 port 239 183152 unique_id port 183152 remote_ip 10.8.0.58 183157 username aminvpn 183157 mac 183157 bytes_out 0 183157 bytes_in 0 183157 station_ip 83.123.45.100 183157 port 242 183157 unique_id port 183157 remote_ip 10.8.0.58 183160 username aminvpn 183160 mac 183160 bytes_out 3759 183160 bytes_in 10241 183160 station_ip 5.120.46.50 183160 port 247 183160 unique_id port 183160 remote_ip 10.8.0.58 183161 username aminvpn 183161 mac 183161 bytes_out 0 183161 bytes_in 0 183161 station_ip 83.123.45.100 183116 unique_id port 183131 username alihosseini1 183131 mac 183131 bytes_out 3323694 183131 bytes_in 26212613 183131 station_ip 5.120.73.225 183131 port 241 183131 unique_id port 183131 remote_ip 10.8.0.234 183132 username shadkam 183132 mac 183132 bytes_out 144528 183132 bytes_in 196133 183132 station_ip 83.123.50.207 183132 port 251 183132 unique_id port 183132 remote_ip 10.8.0.74 183135 username aminvpn 183135 mac 183135 bytes_out 0 183135 bytes_in 0 183135 station_ip 5.120.46.50 183135 port 236 183135 unique_id port 183135 remote_ip 10.8.0.58 183138 username aminvpn 183138 mac 183138 bytes_out 0 183138 bytes_in 0 183138 station_ip 83.123.45.100 183138 port 246 183138 unique_id port 183138 remote_ip 10.8.0.58 183142 username aminvpn 183142 mac 183142 bytes_out 0 183142 bytes_in 0 183142 station_ip 83.123.45.100 183142 port 246 183142 unique_id port 183142 remote_ip 10.8.0.58 183143 username aminvpn 183143 mac 183143 bytes_out 0 183143 bytes_in 0 183143 station_ip 5.120.46.50 183143 port 239 183143 unique_id port 183143 remote_ip 10.8.0.58 183145 username aminvpn 183145 mac 183145 bytes_out 0 183145 bytes_in 0 183145 station_ip 83.123.45.100 183145 port 241 183145 unique_id port 183145 remote_ip 10.8.0.58 183146 username aminvpn 183146 mac 183146 bytes_out 0 183146 bytes_in 0 183146 station_ip 5.120.46.50 183146 port 239 183146 unique_id port 183146 remote_ip 10.8.0.58 183153 username aminvpn 183153 mac 183153 bytes_out 0 183153 bytes_in 0 183153 station_ip 83.123.45.100 183153 port 242 183153 unique_id port 183153 remote_ip 10.8.0.58 183155 username aminvpn 183155 mac 183155 bytes_out 0 183155 bytes_in 0 183155 station_ip 5.120.46.50 183155 port 246 183155 unique_id port 183155 remote_ip 10.8.0.58 183156 username saeeddamghani 183156 mac 183156 bytes_out 2827325 183156 bytes_in 23918038 183156 station_ip 31.56.91.203 183156 port 247 183156 unique_id port 183156 remote_ip 10.8.0.122 183158 username aminvpn 183158 unique_id port 183158 terminate_cause Lost-Carrier 183158 bytes_out 236510 183158 bytes_in 1058105 183158 station_ip 83.123.36.112 183158 port 15728941 183158 nas_port_type Virtual 183158 remote_ip 5.5.5.169 183159 username malekpoir 183159 mac 183159 bytes_out 1268737 183159 bytes_in 11572042 183159 station_ip 5.119.217.147 183159 port 245 183159 unique_id port 183159 remote_ip 10.8.0.18 183162 username aminvpn 183162 mac 183162 bytes_out 0 183162 bytes_in 0 183162 station_ip 5.120.46.50 183162 port 247 183162 unique_id port 183162 remote_ip 10.8.0.58 183165 username aminvpn 183165 mac 183165 bytes_out 0 183165 bytes_in 0 183165 station_ip 5.120.46.50 183165 port 242 183165 unique_id port 183165 remote_ip 10.8.0.58 183166 username aminvpn 183166 mac 183166 bytes_out 0 183166 bytes_in 0 183166 station_ip 83.123.45.100 183166 port 247 183166 unique_id port 183166 remote_ip 10.8.0.58 183172 username rashidi4690 183172 mac 183172 bytes_out 748371 183172 bytes_in 3412426 183172 station_ip 5.120.155.152 183172 port 227 183172 unique_id port 183172 remote_ip 10.8.0.242 183174 username barzegar 183174 mac 183174 bytes_out 3227 183174 bytes_in 5352 183174 station_ip 5.120.35.27 183174 port 242 183174 unique_id port 183174 remote_ip 10.8.0.10 183184 username aminvpn 183184 mac 183184 bytes_out 0 183184 bytes_in 0 183184 station_ip 83.123.45.100 183184 port 245 183184 unique_id port 183184 remote_ip 10.8.0.58 183161 port 242 183161 unique_id port 183161 remote_ip 10.8.0.58 183170 username aminvpn 183170 mac 183170 bytes_out 0 183170 bytes_in 0 183170 station_ip 5.120.46.50 183170 port 248 183170 unique_id port 183170 remote_ip 10.8.0.58 183173 username aminvpn 183173 mac 183173 bytes_out 0 183173 bytes_in 0 183173 station_ip 5.120.46.50 183173 port 248 183173 unique_id port 183173 remote_ip 10.8.0.58 183175 username aminvpn 183175 mac 183175 bytes_out 0 183175 bytes_in 0 183175 station_ip 83.123.45.100 183175 port 227 183175 unique_id port 183175 remote_ip 10.8.0.58 183180 username barzegar 183180 mac 183180 bytes_out 3763 183180 bytes_in 6305 183180 station_ip 5.120.35.27 183180 port 236 183180 unique_id port 183180 remote_ip 10.8.0.10 183185 username barzegar 183185 mac 183185 bytes_out 2416 183185 bytes_in 4709 183185 station_ip 5.120.35.27 183185 port 242 183185 unique_id port 183185 remote_ip 10.8.0.10 183187 username farhad3 183187 mac 183187 bytes_out 971892 183187 bytes_in 3315655 183187 station_ip 5.119.154.15 183187 port 246 183187 unique_id port 183187 remote_ip 10.8.0.222 183189 username farhad3 183189 kill_reason Another user logged on this global unique id 183189 mac 183189 bytes_out 0 183189 bytes_in 0 183189 station_ip 5.119.154.15 183189 port 242 183189 unique_id port 183190 username farhad3 183190 kill_reason Another user logged on this global unique id 183190 mac 183190 bytes_out 0 183190 bytes_in 0 183190 station_ip 5.119.154.15 183190 port 242 183190 unique_id port 183192 username barzegar 183192 mac 183192 bytes_out 2493 183192 bytes_in 4594 183192 station_ip 5.120.35.27 183192 port 247 183192 unique_id port 183192 remote_ip 10.8.0.10 183196 username mehdizare 183196 mac 183196 bytes_out 0 183196 bytes_in 0 183196 station_ip 83.123.95.193 183196 port 247 183196 unique_id port 183196 remote_ip 10.8.0.210 183204 username barzegar 183204 mac 183204 bytes_out 0 183204 bytes_in 0 183204 station_ip 5.120.35.27 183204 port 246 183204 unique_id port 183204 remote_ip 10.8.0.10 183211 username aminvpn 183211 mac 183211 bytes_out 0 183211 bytes_in 0 183211 station_ip 5.120.46.50 183211 port 244 183211 unique_id port 183211 remote_ip 10.8.0.58 183216 username yaghobi 183216 mac 183216 bytes_out 0 183216 bytes_in 0 183216 station_ip 83.123.102.97 183216 port 244 183216 unique_id port 183216 remote_ip 10.8.0.138 183217 username aminvpn 183217 mac 183217 bytes_out 10841 183217 bytes_in 16991 183217 station_ip 83.123.45.100 183217 port 241 183217 unique_id port 183217 remote_ip 10.8.0.58 183221 username saeeddamghani 183221 mac 183221 bytes_out 0 183221 bytes_in 0 183221 station_ip 31.56.91.203 183221 port 252 183221 unique_id port 183221 remote_ip 10.8.0.122 183223 username khademi 183223 kill_reason Another user logged on this global unique id 183223 mac 183223 bytes_out 0 183223 bytes_in 0 183223 station_ip 83.123.54.146 183223 port 240 183223 unique_id port 183224 username sedighe 183224 mac 183224 bytes_out 16365 183224 bytes_in 17160 183224 station_ip 83.123.71.109 183224 port 250 183224 unique_id port 183224 remote_ip 10.8.0.46 183228 username jafari 183228 mac 183228 bytes_out 1800795 183228 bytes_in 12496699 183228 station_ip 89.32.106.131 183228 port 247 183228 unique_id port 183228 remote_ip 10.8.0.86 183232 username fezealinaghi 183232 mac 183232 bytes_out 0 183232 bytes_in 0 183232 station_ip 83.123.76.147 183232 port 247 183164 bytes_out 0 183164 bytes_in 0 183164 station_ip 83.123.45.100 183164 port 248 183164 unique_id port 183164 remote_ip 10.8.0.58 183167 username kalantary6037 183167 mac 183167 bytes_out 0 183167 bytes_in 0 183167 station_ip 83.123.23.55 183167 port 249 183167 unique_id port 183168 username aminvpn 183168 mac 183168 bytes_out 0 183168 bytes_in 0 183168 station_ip 5.120.46.50 183168 port 242 183168 unique_id port 183168 remote_ip 10.8.0.58 183169 username aminvpn 183169 mac 183169 bytes_out 0 183169 bytes_in 0 183169 station_ip 83.123.45.100 183169 port 247 183169 unique_id port 183169 remote_ip 10.8.0.58 183171 username aminvpn 183171 mac 183171 bytes_out 0 183171 bytes_in 0 183171 station_ip 83.123.45.100 183171 port 247 183171 unique_id port 183171 remote_ip 10.8.0.58 183176 username shadkam 183176 mac 183176 bytes_out 1062177 183176 bytes_in 3136972 183176 station_ip 83.123.116.61 183176 port 236 183176 unique_id port 183176 remote_ip 10.8.0.74 183177 username saeeddamghani 183177 mac 183177 bytes_out 49050 183177 bytes_in 50673 183177 station_ip 31.56.91.203 183177 port 245 183177 unique_id port 183177 remote_ip 10.8.0.122 183178 username aminvpn 183178 mac 183178 bytes_out 0 183178 bytes_in 0 183178 station_ip 5.120.46.50 183178 port 242 183178 unique_id port 183178 remote_ip 10.8.0.58 183179 username aminvpn 183179 mac 183179 bytes_out 0 183179 bytes_in 0 183179 station_ip 83.123.45.100 183179 port 245 183179 unique_id port 183179 remote_ip 10.8.0.58 183181 username aminvpn 183181 mac 183181 bytes_out 0 183181 bytes_in 0 183181 station_ip 5.120.46.50 183181 port 242 183181 unique_id port 183181 remote_ip 10.8.0.58 183182 username aminvpn 183182 mac 183182 bytes_out 0 183182 bytes_in 0 183182 station_ip 83.123.45.100 183182 port 236 183182 unique_id port 183182 remote_ip 10.8.0.58 183183 username aminvpn 183183 mac 183183 bytes_out 0 183183 bytes_in 0 183183 station_ip 5.120.46.50 183183 port 242 183183 unique_id port 183183 remote_ip 10.8.0.58 183186 username aminvpn 183186 mac 183186 bytes_out 0 183186 bytes_in 0 183186 station_ip 5.120.46.50 183186 port 247 183186 unique_id port 183186 remote_ip 10.8.0.58 183191 username aminvpn 183191 mac 183191 bytes_out 0 183191 bytes_in 0 183191 station_ip 5.120.46.50 183191 port 248 183191 unique_id port 183191 remote_ip 10.8.0.58 183193 username aminvpn 183193 mac 183193 bytes_out 0 183193 bytes_in 0 183193 station_ip 83.123.45.100 183193 port 242 183193 unique_id port 183193 remote_ip 10.8.0.58 183198 username barzegar 183198 mac 183198 bytes_out 0 183198 bytes_in 0 183198 station_ip 5.120.35.27 183198 port 248 183198 unique_id port 183198 remote_ip 10.8.0.10 183199 username aminvpn 183199 mac 183199 bytes_out 51234 183199 bytes_in 84350 183199 station_ip 5.120.46.50 183199 port 246 183199 unique_id port 183199 remote_ip 10.8.0.58 183200 username aminvpn 183200 mac 183200 bytes_out 0 183200 bytes_in 0 183200 station_ip 83.123.45.100 183200 port 250 183200 unique_id port 183200 remote_ip 10.8.0.58 183203 username aminvpn 183203 mac 183203 bytes_out 0 183203 bytes_in 0 183203 station_ip 83.123.45.100 183203 port 241 183203 unique_id port 183203 remote_ip 10.8.0.58 183205 username sedighe 183205 mac 183205 bytes_out 43490 183205 bytes_in 255619 183205 station_ip 83.123.71.109 183205 port 244 183205 unique_id port 183188 username aminvpn 183188 mac 183188 bytes_out 0 183188 bytes_in 0 183188 station_ip 83.123.45.100 183188 port 242 183188 unique_id port 183188 remote_ip 10.8.0.58 183194 username mehdizare 183194 mac 183194 bytes_out 284673 183194 bytes_in 194036 183194 station_ip 83.123.95.193 183194 port 244 183194 unique_id port 183194 remote_ip 10.8.0.210 183195 username sedighe 183195 mac 183195 bytes_out 256744 183195 bytes_in 792716 183195 station_ip 83.123.71.109 183195 port 241 183195 unique_id port 183195 remote_ip 10.8.0.46 183197 username barzegar 183197 mac 183197 bytes_out 0 183197 bytes_in 0 183197 station_ip 5.120.35.27 183197 port 248 183197 unique_id port 183197 remote_ip 10.8.0.10 183201 username mehdizare 183201 mac 183201 bytes_out 14727 183201 bytes_in 51887 183201 station_ip 83.123.95.193 183201 port 241 183201 unique_id port 183201 remote_ip 10.8.0.210 183202 username aminvpn 183202 mac 183202 bytes_out 38690 183202 bytes_in 52232 183202 station_ip 5.120.46.50 183202 port 246 183202 unique_id port 183202 remote_ip 10.8.0.58 183207 username mehdizare 183207 mac 183207 bytes_out 16479 183207 bytes_in 25683 183207 station_ip 83.123.95.193 183207 port 250 183207 unique_id port 183207 remote_ip 10.8.0.210 183209 username aminvpn 183209 mac 183209 bytes_out 9396 183209 bytes_in 9441 183209 station_ip 83.123.45.100 183209 port 244 183209 unique_id port 183209 remote_ip 10.8.0.58 183215 username saeeddamghani 183215 mac 183215 bytes_out 471297 183215 bytes_in 2113525 183215 station_ip 31.56.91.203 183215 port 249 183215 unique_id port 183215 remote_ip 10.8.0.122 183218 username mosi 183218 kill_reason Another user logged on this global unique id 183218 mac 183218 bytes_out 0 183218 bytes_in 0 183218 station_ip 151.235.83.58 183218 port 238 183218 unique_id port 183219 username saeeddamghani 183219 mac 183219 bytes_out 0 183219 bytes_in 0 183219 station_ip 31.56.91.203 183219 port 241 183219 unique_id port 183219 remote_ip 10.8.0.122 183225 username aminvpn 183225 mac 183225 bytes_out 8219 183225 bytes_in 12465 183225 station_ip 83.123.45.100 183225 port 253 183225 unique_id port 183225 remote_ip 10.8.0.58 183227 username mostafa_es78 183227 kill_reason Another user logged on this global unique id 183227 mac 183227 bytes_out 0 183227 bytes_in 0 183227 station_ip 37.129.255.170 183227 port 245 183227 unique_id port 183227 remote_ip 10.8.0.34 183231 username kalantary6037 183231 mac 183231 bytes_out 1821445 183231 bytes_in 14591056 183231 station_ip 83.123.99.43 183231 port 248 183231 unique_id port 183231 remote_ip 10.8.0.50 183233 username aminvpn 183233 unique_id port 183233 terminate_cause Lost-Carrier 183233 bytes_out 4756058 183233 bytes_in 82644713 183233 station_ip 5.119.205.154 183233 port 15728934 183233 nas_port_type Virtual 183233 remote_ip 5.5.5.174 183239 username aminvpn 183239 mac 183239 bytes_out 2973 183239 bytes_in 11166 183239 station_ip 5.120.46.50 183239 port 251 183239 unique_id port 183239 remote_ip 10.8.0.58 183241 username godarzi 183241 kill_reason Another user logged on this global unique id 183241 mac 183241 bytes_out 0 183241 bytes_in 0 183241 station_ip 5.202.97.167 183241 port 218 183241 unique_id port 183243 username motamedi9772 183243 mac 183243 bytes_out 2182709 183243 bytes_in 36903346 183243 station_ip 83.123.90.88 183243 port 241 183243 unique_id port 183243 remote_ip 10.8.0.154 183245 username saeeddamghani 183245 mac 183245 bytes_out 0 183245 bytes_in 0 183245 station_ip 31.56.91.203 183205 remote_ip 10.8.0.46 183206 username aminvpn 183206 mac 183206 bytes_out 50652 183206 bytes_in 47673 183206 station_ip 5.120.46.50 183206 port 251 183206 unique_id port 183206 remote_ip 10.8.0.58 183208 username barzegar 183208 mac 183208 bytes_out 0 183208 bytes_in 0 183208 station_ip 5.120.35.27 183208 port 246 183208 unique_id port 183208 remote_ip 10.8.0.10 183210 username aminvpn 183210 mac 183210 bytes_out 0 183210 bytes_in 0 183210 station_ip 46.100.217.46 183210 port 250 183210 unique_id port 183210 remote_ip 10.8.0.58 183212 username aminvpn 183212 mac 183212 bytes_out 0 183212 bytes_in 0 183212 station_ip 83.123.45.100 183212 port 250 183212 unique_id port 183212 remote_ip 10.8.0.58 183213 username sedighe 183213 mac 183213 bytes_out 16769 183213 bytes_in 17167 183213 station_ip 83.123.71.109 183213 port 241 183213 unique_id port 183213 remote_ip 10.8.0.46 183214 username aminvpn 183214 mac 183214 bytes_out 27031 183214 bytes_in 42332 183214 station_ip 5.120.46.50 183214 port 244 183214 unique_id port 183214 remote_ip 10.8.0.58 183220 username aminvpn 183220 mac 183220 bytes_out 7792 183220 bytes_in 4829 183220 station_ip 5.120.46.50 183220 port 244 183220 unique_id port 183220 remote_ip 10.8.0.58 183222 username barzegar 183222 mac 183222 bytes_out 0 183222 bytes_in 0 183222 station_ip 5.120.35.27 183222 port 251 183222 unique_id port 183222 remote_ip 10.8.0.10 183226 username sedighe 183226 mac 183226 bytes_out 4405 183226 bytes_in 6579 183226 station_ip 83.123.0.255 183226 port 244 183226 unique_id port 183226 remote_ip 10.8.0.46 183229 username sedighe 183229 mac 183229 bytes_out 0 183229 bytes_in 0 183229 station_ip 83.123.104.112 183229 port 250 183229 unique_id port 183229 remote_ip 10.8.0.46 183230 username fezealinaghi 183230 mac 183230 bytes_out 1568014 183230 bytes_in 18911224 183230 station_ip 83.123.76.147 183230 port 234 183230 unique_id port 183230 remote_ip 10.8.0.202 183234 username saeeddamghani 183234 mac 183234 bytes_out 0 183234 bytes_in 0 183234 station_ip 31.56.91.203 183234 port 234 183234 unique_id port 183234 remote_ip 10.8.0.122 183235 username sedighe 183235 mac 183235 bytes_out 3931 183235 bytes_in 5504 183235 station_ip 83.123.34.25 183235 port 244 183235 unique_id port 183235 remote_ip 10.8.0.46 183238 username yaghobi 183238 mac 183238 bytes_out 381669 183238 bytes_in 506640 183238 station_ip 83.123.102.97 183238 port 249 183238 unique_id port 183238 remote_ip 10.8.0.138 183240 username aminvpn 183240 mac 183240 bytes_out 0 183240 bytes_in 0 183240 station_ip 46.100.217.46 183240 port 247 183240 unique_id port 183240 remote_ip 10.8.0.58 183244 username saeeddamghani 183244 mac 183244 bytes_out 0 183244 bytes_in 0 183244 station_ip 31.56.91.203 183244 port 247 183244 unique_id port 183244 remote_ip 10.8.0.122 183249 username saeeddamghani 183249 mac 183249 bytes_out 21159 183249 bytes_in 27850 183249 station_ip 31.56.91.203 183249 port 227 183249 unique_id port 183249 remote_ip 10.8.0.122 183250 username mehdizare 183250 mac 183250 bytes_out 87130 183250 bytes_in 70332 183250 station_ip 83.123.95.193 183250 port 246 183250 unique_id port 183250 remote_ip 10.8.0.210 183251 username saeeddamghani 183251 mac 183251 bytes_out 0 183251 bytes_in 0 183251 station_ip 31.56.91.203 183251 port 227 183251 unique_id port 183251 remote_ip 10.8.0.122 183252 username farhad3 183252 mac 183232 unique_id port 183232 remote_ip 10.8.0.202 183236 username shadkam 183236 mac 183236 bytes_out 2580671 183236 bytes_in 6775555 183236 station_ip 83.123.116.61 183236 port 227 183236 unique_id port 183236 remote_ip 10.8.0.74 183237 username sedighe 183237 mac 183237 bytes_out 0 183237 bytes_in 0 183237 station_ip 83.123.19.191 183237 port 248 183237 unique_id port 183237 remote_ip 10.8.0.46 183242 username sobhan 183242 unique_id port 183242 terminate_cause Lost-Carrier 183242 bytes_out 615068 183242 bytes_in 909448 183242 station_ip 31.56.216.175 183242 port 15728942 183242 nas_port_type Virtual 183242 remote_ip 5.5.5.176 183246 username fezealinaghi 183246 mac 183246 bytes_out 19304 183246 bytes_in 19736 183246 station_ip 83.123.76.147 183246 port 227 183246 unique_id port 183246 remote_ip 10.8.0.202 183253 username saeeddamghani 183253 mac 183253 bytes_out 0 183253 bytes_in 0 183253 station_ip 31.56.91.203 183253 port 227 183253 unique_id port 183253 remote_ip 10.8.0.122 183254 username fezealinaghi 183254 mac 183254 bytes_out 18268 183254 bytes_in 26129 183254 station_ip 83.123.76.147 183254 port 247 183254 unique_id port 183254 remote_ip 10.8.0.202 183258 username fezealinaghi 183258 mac 183258 bytes_out 6155 183258 bytes_in 7949 183258 station_ip 83.123.76.147 183258 port 227 183258 unique_id port 183258 remote_ip 10.8.0.202 183262 username mehdizare 183262 mac 183262 bytes_out 0 183262 bytes_in 0 183262 station_ip 83.123.95.193 183262 port 244 183262 unique_id port 183262 remote_ip 10.8.0.210 183265 username barzegar 183265 mac 183265 bytes_out 0 183265 bytes_in 0 183265 station_ip 5.120.35.27 183265 port 227 183265 unique_id port 183265 remote_ip 10.8.0.10 183266 username sedighe 183266 mac 183266 bytes_out 5734 183266 bytes_in 6784 183266 station_ip 83.123.109.174 183266 port 247 183266 unique_id port 183266 remote_ip 10.8.0.46 183270 username barzegar 183270 mac 183270 bytes_out 0 183270 bytes_in 0 183270 station_ip 5.120.35.27 183270 port 227 183270 unique_id port 183270 remote_ip 10.8.0.10 183271 username sekonji0496 183271 mac 183271 bytes_out 18923 183271 bytes_in 108618 183271 station_ip 83.123.30.118 183271 port 247 183271 unique_id port 183271 remote_ip 10.8.0.62 183274 username yaghobi 183274 mac 183274 bytes_out 7119 183274 bytes_in 5588 183274 station_ip 83.123.58.229 183274 port 249 183274 unique_id port 183274 remote_ip 10.8.0.138 183276 username saeeddamghani 183276 mac 183276 bytes_out 0 183276 bytes_in 0 183276 station_ip 31.56.91.203 183276 port 227 183276 unique_id port 183276 remote_ip 10.8.0.122 183277 username yaghobi 183277 mac 183277 bytes_out 12693 183277 bytes_in 24645 183277 station_ip 83.123.80.171 183277 port 242 183277 unique_id port 183277 remote_ip 10.8.0.138 183279 username saeeddamghani 183279 mac 183279 bytes_out 0 183279 bytes_in 0 183279 station_ip 31.56.91.203 183279 port 227 183279 unique_id port 183279 remote_ip 10.8.0.122 183281 username aminvpn 183281 mac 183281 bytes_out 0 183281 bytes_in 0 183281 station_ip 5.120.46.50 183281 port 247 183281 unique_id port 183281 remote_ip 10.8.0.58 183282 username mostafa_es78 183282 kill_reason Another user logged on this global unique id 183282 mac 183282 bytes_out 0 183282 bytes_in 0 183282 station_ip 37.129.255.170 183282 port 245 183282 unique_id port 183283 username farhad3 183283 mac 183283 bytes_out 986172 183283 bytes_in 2622078 183283 station_ip 5.119.154.15 183245 port 247 183245 unique_id port 183245 remote_ip 10.8.0.122 183247 username barzegar 183247 mac 183247 bytes_out 0 183247 bytes_in 0 183247 station_ip 5.120.35.27 183247 port 248 183247 unique_id port 183247 remote_ip 10.8.0.10 183248 username aminvpn 183248 mac 183248 bytes_out 22275 183248 bytes_in 75013 183248 station_ip 83.123.45.100 183248 port 241 183248 unique_id port 183248 remote_ip 10.8.0.58 183256 username aminvpn 183256 mac 183256 bytes_out 8601 183256 bytes_in 10478 183256 station_ip 5.120.46.50 183256 port 248 183256 unique_id port 183256 remote_ip 10.8.0.58 183257 username barzegar 183257 mac 183257 bytes_out 2310 183257 bytes_in 4815 183257 station_ip 5.120.35.27 183257 port 241 183257 unique_id port 183257 remote_ip 10.8.0.10 183260 username khademi 183260 kill_reason Another user logged on this global unique id 183260 mac 183260 bytes_out 0 183260 bytes_in 0 183260 station_ip 83.123.54.146 183260 port 240 183260 unique_id port 183264 username aminvpn 183264 mac 183264 bytes_out 0 183264 bytes_in 0 183264 station_ip 46.100.217.46 183264 port 244 183264 unique_id port 183264 remote_ip 10.8.0.58 183267 username mehdizare 183267 mac 183267 bytes_out 87870 183267 bytes_in 71763 183267 station_ip 83.123.95.193 183267 port 234 183267 unique_id port 183267 remote_ip 10.8.0.210 183273 username aminvpn 183273 mac 183273 bytes_out 1850 183273 bytes_in 5976 183273 station_ip 5.120.46.50 183273 port 248 183273 unique_id port 183273 remote_ip 10.8.0.58 183275 username aminvpn 183275 mac 183275 bytes_out 9016 183275 bytes_in 15882 183275 station_ip 83.123.45.100 183275 port 227 183275 unique_id port 183275 remote_ip 10.8.0.58 183278 username saeeddamghani 183278 mac 183278 bytes_out 0 183278 bytes_in 0 183278 station_ip 31.56.91.203 183278 port 227 183278 unique_id port 183278 remote_ip 10.8.0.122 183284 username sabaghnezhad 183284 mac 183284 bytes_out 377827 183284 bytes_in 402405 183284 station_ip 83.123.60.143 183284 port 243 183284 unique_id port 183284 remote_ip 10.8.0.66 183293 username mohammadjavad 183293 mac 183293 bytes_out 145345 183293 bytes_in 1836008 183293 station_ip 83.123.112.99 183293 port 242 183293 unique_id port 183293 remote_ip 10.8.0.110 183294 username jafari 183294 mac 183294 bytes_out 483135 183294 bytes_in 4816731 183294 station_ip 89.32.106.131 183294 port 248 183294 unique_id port 183294 remote_ip 10.8.0.86 183295 username meysam 183295 mac 183295 bytes_out 440951 183295 bytes_in 4622518 183295 station_ip 188.159.251.155 183295 port 234 183295 unique_id port 183295 remote_ip 10.8.0.158 183297 username mohammadjavad 183297 mac 183297 bytes_out 16600 183297 bytes_in 86686 183297 station_ip 83.123.112.99 183297 port 249 183297 unique_id port 183297 remote_ip 10.8.0.110 183300 username mohammadjavad 183300 mac 183300 bytes_out 0 183300 bytes_in 0 183300 station_ip 83.123.112.99 183300 port 243 183300 unique_id port 183300 remote_ip 10.8.0.110 183301 username barzegar 183301 mac 183301 bytes_out 0 183301 bytes_in 0 183301 station_ip 5.120.35.27 183301 port 248 183301 unique_id port 183301 remote_ip 10.8.0.10 183307 username aminvpn 183307 mac 183307 bytes_out 0 183307 bytes_in 0 183307 station_ip 46.100.217.46 183307 port 227 183307 unique_id port 183307 remote_ip 10.8.0.58 183311 username mohammadjavad 183311 mac 183311 bytes_out 771516 183311 bytes_in 7769990 183311 station_ip 83.123.112.99 183311 port 247 183252 bytes_out 2682363 183252 bytes_in 13637176 183252 station_ip 5.119.154.15 183252 port 242 183252 unique_id port 183252 remote_ip 10.8.0.222 183255 username yaghobi 183255 mac 183255 bytes_out 219834 183255 bytes_in 458714 183255 station_ip 83.123.102.97 183255 port 244 183255 unique_id port 183255 remote_ip 10.8.0.138 183259 username aminvpn 183259 mac 183259 bytes_out 10770 183259 bytes_in 14849 183259 station_ip 83.123.45.100 183259 port 244 183259 unique_id port 183259 remote_ip 10.8.0.58 183261 username sedighe 183261 mac 183261 bytes_out 16572 183261 bytes_in 13635 183261 station_ip 83.123.109.174 183261 port 234 183261 unique_id port 183261 remote_ip 10.8.0.46 183263 username aminvpn 183263 mac 183263 bytes_out 6939 183263 bytes_in 20893 183263 station_ip 5.120.46.50 183263 port 227 183263 unique_id port 183263 remote_ip 10.8.0.58 183268 username aminvpn 183268 mac 183268 bytes_out 11297 183268 bytes_in 19607 183268 station_ip 83.123.45.100 183268 port 227 183268 unique_id port 183268 remote_ip 10.8.0.58 183269 username yaghobi 183269 mac 183269 bytes_out 148746 183269 bytes_in 265653 183269 station_ip 83.123.58.229 183269 port 242 183269 unique_id port 183269 remote_ip 10.8.0.138 183272 username barzegar 183272 mac 183272 bytes_out 0 183272 bytes_in 0 183272 station_ip 5.120.35.27 183272 port 227 183272 unique_id port 183272 remote_ip 10.8.0.10 183280 username mohammadmahdi 183280 mac 183280 bytes_out 5041675 183280 bytes_in 46155377 183280 station_ip 5.119.69.65 183280 port 236 183280 unique_id port 183280 remote_ip 10.8.0.30 183285 username aminvpn 183285 mac 183285 bytes_out 5317 183285 bytes_in 6423 183285 station_ip 5.120.46.50 183285 port 236 183285 unique_id port 183285 remote_ip 10.8.0.58 183287 username saeeddamghani 183287 mac 183287 bytes_out 0 183287 bytes_in 0 183287 station_ip 31.56.91.203 183287 port 247 183287 unique_id port 183287 remote_ip 10.8.0.122 183290 username aminvpn 183290 mac 183290 bytes_out 13988 183290 bytes_in 20528 183290 station_ip 83.123.45.100 183290 port 246 183290 unique_id port 183290 remote_ip 10.8.0.58 183292 username mohammadjavad 183292 mac 183292 bytes_out 115057 183292 bytes_in 1212658 183292 station_ip 83.123.112.99 183292 port 242 183292 unique_id port 183292 remote_ip 10.8.0.110 183296 username yaghobi 183296 mac 183296 bytes_out 110819 183296 bytes_in 207599 183296 station_ip 83.123.80.171 183296 port 243 183296 unique_id port 183296 remote_ip 10.8.0.138 183303 username barzegar 183303 mac 183303 bytes_out 18849 183303 bytes_in 43638 183303 station_ip 5.120.35.27 183303 port 247 183303 unique_id port 183303 remote_ip 10.8.0.10 183309 username mosi 183309 kill_reason Another user logged on this global unique id 183309 mac 183309 bytes_out 0 183309 bytes_in 0 183309 station_ip 151.235.83.58 183309 port 238 183309 unique_id port 183310 username saeeddamghani 183310 mac 183310 bytes_out 0 183310 bytes_in 0 183310 station_ip 31.56.91.203 183310 port 227 183310 unique_id port 183310 remote_ip 10.8.0.122 183313 username farhad3 183313 kill_reason Another user logged on this global unique id 183313 mac 183313 bytes_out 0 183313 bytes_in 0 183313 station_ip 5.119.154.15 183313 port 236 183313 unique_id port 183313 remote_ip 10.8.0.222 183316 username sedighe 183316 mac 183316 bytes_out 795317 183316 bytes_in 5093071 183316 station_ip 83.123.109.174 183316 port 244 183316 unique_id port 183316 remote_ip 10.8.0.46 183318 username mohammadjavad 183283 port 246 183283 unique_id port 183283 remote_ip 10.8.0.222 183286 username yaghobi 183286 mac 183286 bytes_out 74923 183286 bytes_in 134527 183286 station_ip 83.123.80.171 183286 port 248 183286 unique_id port 183286 remote_ip 10.8.0.138 183288 username barzegar 183288 mac 183288 bytes_out 0 183288 bytes_in 0 183288 station_ip 5.120.35.27 183288 port 242 183288 unique_id port 183288 remote_ip 10.8.0.10 183289 username mehdizare 183289 mac 183289 bytes_out 28264 183289 bytes_in 55139 183289 station_ip 83.123.95.193 183289 port 234 183289 unique_id port 183289 remote_ip 10.8.0.210 183291 username aminvpn 183291 mac 183291 bytes_out 0 183291 bytes_in 0 183291 station_ip 46.100.217.46 183291 port 249 183291 unique_id port 183291 remote_ip 10.8.0.58 183298 username khademi 183298 kill_reason Another user logged on this global unique id 183298 mac 183298 bytes_out 0 183298 bytes_in 0 183298 station_ip 83.123.54.146 183298 port 240 183298 unique_id port 183299 username mehdizare 183299 mac 183299 bytes_out 12543 183299 bytes_in 14702 183299 station_ip 83.123.95.193 183299 port 247 183299 unique_id port 183299 remote_ip 10.8.0.210 183302 username shadkam 183302 mac 183302 bytes_out 485724 183302 bytes_in 3231481 183302 station_ip 83.123.4.182 183302 port 246 183302 unique_id port 183302 remote_ip 10.8.0.74 183304 username saeeddamghani 183304 mac 183304 bytes_out 13964 183304 bytes_in 13559 183304 station_ip 31.56.91.203 183304 port 248 183304 unique_id port 183304 remote_ip 10.8.0.122 183305 username mohammadmahdi 183305 mac 183305 bytes_out 548083 183305 bytes_in 3536783 183305 station_ip 5.119.69.65 183305 port 227 183305 unique_id port 183305 remote_ip 10.8.0.30 183306 username aminvpn 183306 mac 183306 bytes_out 26820 183306 bytes_in 64553 183306 station_ip 83.123.45.100 183306 port 242 183306 unique_id port 183306 remote_ip 10.8.0.58 183308 username aminvpn 183308 mac 183308 bytes_out 0 183308 bytes_in 0 183308 station_ip 46.100.217.46 183308 port 227 183308 unique_id port 183308 remote_ip 10.8.0.58 183315 username farhad3 183315 mac 183315 bytes_out 0 183315 bytes_in 0 183315 station_ip 5.119.154.15 183315 port 236 183315 unique_id port 183317 username barzegar 183317 mac 183317 bytes_out 0 183317 bytes_in 0 183317 station_ip 5.120.35.27 183317 port 236 183317 unique_id port 183317 remote_ip 10.8.0.10 183325 username jafari 183325 kill_reason Another user logged on this global unique id 183325 mac 183325 bytes_out 0 183325 bytes_in 0 183325 station_ip 89.32.106.131 183325 port 243 183325 unique_id port 183325 remote_ip 10.8.0.86 183326 username aminvpn 183326 mac 183326 bytes_out 15440 183326 bytes_in 23720 183326 station_ip 83.123.45.100 183326 port 227 183326 unique_id port 183326 remote_ip 10.8.0.58 183340 username khademi 183340 kill_reason Another user logged on this global unique id 183340 mac 183340 bytes_out 0 183340 bytes_in 0 183340 station_ip 83.123.54.146 183340 port 240 183340 unique_id port 183346 username jafari 183346 mac 183346 bytes_out 0 183346 bytes_in 0 183346 station_ip 89.32.106.131 183346 port 243 183346 unique_id port 183349 username farhad3 183349 mac 183349 bytes_out 1664116 183349 bytes_in 13475991 183349 station_ip 5.120.161.11 183349 port 249 183349 unique_id port 183349 remote_ip 10.8.0.222 183352 username godarzi 183352 kill_reason Another user logged on this global unique id 183352 mac 183352 bytes_out 0 183352 bytes_in 0 183352 station_ip 5.202.97.167 183311 unique_id port 183311 remote_ip 10.8.0.110 183312 username mostafa_es78 183312 kill_reason Another user logged on this global unique id 183312 mac 183312 bytes_out 0 183312 bytes_in 0 183312 station_ip 37.129.255.170 183312 port 245 183312 unique_id port 183314 username mohammadjavad 183314 mac 183314 bytes_out 2853 183314 bytes_in 4418 183314 station_ip 83.123.112.99 183314 port 242 183314 unique_id port 183314 remote_ip 10.8.0.110 183319 username farhad3 183319 mac 183319 bytes_out 87618 183319 bytes_in 1636215 183319 station_ip 5.119.20.102 183319 port 247 183319 unique_id port 183319 remote_ip 10.8.0.222 183321 username mehdizare 183321 mac 183321 bytes_out 24516 183321 bytes_in 29916 183321 station_ip 83.123.95.193 183321 port 249 183321 unique_id port 183321 remote_ip 10.8.0.210 183323 username khademi 183323 kill_reason Another user logged on this global unique id 183323 mac 183323 bytes_out 0 183323 bytes_in 0 183323 station_ip 83.123.54.146 183323 port 240 183323 unique_id port 183324 username mehdizare 183324 mac 183324 bytes_out 11004 183324 bytes_in 13331 183324 station_ip 83.123.95.193 183324 port 242 183324 unique_id port 183324 remote_ip 10.8.0.210 183327 username aminvpn 183327 mac 183327 bytes_out 0 183327 bytes_in 0 183327 station_ip 46.100.217.46 183327 port 242 183327 unique_id port 183327 remote_ip 10.8.0.58 183328 username sedighe 183328 mac 183328 bytes_out 30146 183328 bytes_in 35068 183328 station_ip 83.123.109.174 183328 port 236 183328 unique_id port 183328 remote_ip 10.8.0.46 183329 username saeeddamghani 183329 mac 183329 bytes_out 0 183329 bytes_in 0 183329 station_ip 31.56.91.203 183329 port 236 183329 unique_id port 183329 remote_ip 10.8.0.122 183331 username godarzi 183331 kill_reason Another user logged on this global unique id 183331 mac 183331 bytes_out 0 183331 bytes_in 0 183331 station_ip 5.202.97.167 183331 port 218 183331 unique_id port 183334 username mehdizare 183334 mac 183334 bytes_out 13708 183334 bytes_in 17430 183334 station_ip 83.123.95.193 183334 port 227 183334 unique_id port 183334 remote_ip 10.8.0.210 183339 username jafari 183339 kill_reason Another user logged on this global unique id 183339 mac 183339 bytes_out 0 183339 bytes_in 0 183339 station_ip 89.32.106.131 183339 port 243 183339 unique_id port 183343 username sedighe 183343 mac 183343 bytes_out 108909 183343 bytes_in 135016 183343 station_ip 83.123.109.174 183343 port 245 183343 unique_id port 183343 remote_ip 10.8.0.46 183345 username saeeddamghani 183345 mac 183345 bytes_out 0 183345 bytes_in 0 183345 station_ip 31.56.91.203 183345 port 242 183345 unique_id port 183345 remote_ip 10.8.0.122 183347 username barzegar 183347 mac 183347 bytes_out 0 183347 bytes_in 0 183347 station_ip 5.120.35.27 183347 port 241 183347 unique_id port 183347 remote_ip 10.8.0.10 183350 username aminvpn 183350 mac 183350 bytes_out 79422 183350 bytes_in 78715 183350 station_ip 83.123.45.100 183350 port 227 183350 unique_id port 183350 remote_ip 10.8.0.58 183351 username khademi 183351 kill_reason Another user logged on this global unique id 183351 mac 183351 bytes_out 0 183351 bytes_in 0 183351 station_ip 83.123.54.146 183351 port 240 183351 unique_id port 183353 username aminvpn 183353 mac 183353 bytes_out 49911 183353 bytes_in 69983 183353 station_ip 46.100.217.46 183353 port 250 183353 unique_id port 183353 remote_ip 10.8.0.58 183355 username aminvpn 183355 mac 183355 bytes_out 0 183355 bytes_in 0 183355 station_ip 83.123.45.100 183318 mac 183318 bytes_out 793493 183318 bytes_in 17793070 183318 station_ip 83.123.112.99 183318 port 242 183318 unique_id port 183318 remote_ip 10.8.0.110 183320 username aminvpn 183320 unique_id port 183320 terminate_cause User-Request 183320 bytes_out 9686004 183320 bytes_in 246521440 183320 station_ip 31.57.123.135 183320 port 15728944 183320 nas_port_type Virtual 183320 remote_ip 5.5.5.168 183322 username mosi 183322 kill_reason Another user logged on this global unique id 183322 mac 183322 bytes_out 0 183322 bytes_in 0 183322 station_ip 151.235.83.58 183322 port 238 183322 unique_id port 183330 username kalantary6037 183330 mac 183330 bytes_out 2122995 183330 bytes_in 16024243 183330 station_ip 83.123.50.71 183330 port 246 183330 unique_id port 183330 remote_ip 10.8.0.50 183332 username barzegar 183332 mac 183332 bytes_out 0 183332 bytes_in 0 183332 station_ip 5.120.35.27 183332 port 236 183332 unique_id port 183332 remote_ip 10.8.0.10 183333 username mostafa_es78 183333 mac 183333 bytes_out 0 183333 bytes_in 0 183333 station_ip 37.129.255.170 183333 port 245 183333 unique_id port 183335 username jafari 183335 kill_reason Another user logged on this global unique id 183335 mac 183335 bytes_out 0 183335 bytes_in 0 183335 station_ip 89.32.106.131 183335 port 243 183335 unique_id port 183336 username fezealinaghi 183336 mac 183336 bytes_out 8332228 183336 bytes_in 21826237 183336 station_ip 83.123.76.147 183336 port 241 183336 unique_id port 183336 remote_ip 10.8.0.202 183337 username aminvpn 183337 kill_reason Maximum check online fails reached 183337 mac 183337 bytes_out 0 183337 bytes_in 0 183337 station_ip 83.123.45.100 183337 port 244 183337 unique_id port 183338 username mehdizare 183338 mac 183338 bytes_out 11387 183338 bytes_in 14597 183338 station_ip 83.123.95.193 183338 port 246 183338 unique_id port 183338 remote_ip 10.8.0.210 183341 username mohammadjavad 183341 mac 183341 bytes_out 0 183341 bytes_in 0 183341 station_ip 83.123.112.99 183341 port 247 183341 unique_id port 183341 remote_ip 10.8.0.110 183342 username kordestani 183342 mac 183342 bytes_out 1917240 183342 bytes_in 25987355 183342 station_ip 151.235.117.33 183342 port 242 183342 unique_id port 183342 remote_ip 10.8.0.130 183344 username mehdizare 183344 mac 183344 bytes_out 12513 183344 bytes_in 15790 183344 station_ip 83.123.95.193 183344 port 241 183344 unique_id port 183344 remote_ip 10.8.0.210 183348 username aminvpn 183348 kill_reason Maximum check online fails reached 183348 mac 183348 bytes_out 0 183348 bytes_in 0 183348 station_ip 46.100.217.46 183348 port 247 183348 unique_id port 183354 username barzegar 183354 mac 183354 bytes_out 2626247 183354 bytes_in 2209638 183354 station_ip 5.120.35.27 183354 port 243 183354 unique_id port 183354 remote_ip 10.8.0.10 183356 username aminvpn 183356 mac 183356 bytes_out 0 183356 bytes_in 0 183356 station_ip 46.100.217.46 183356 port 243 183356 unique_id port 183356 remote_ip 10.8.0.58 183359 username mehdizare 183359 mac 183359 bytes_out 32556 183359 bytes_in 41033 183359 station_ip 83.123.95.193 183359 port 241 183359 unique_id port 183359 remote_ip 10.8.0.210 183361 username saeeddamghani 183361 mac 183361 bytes_out 0 183361 bytes_in 0 183361 station_ip 31.56.91.203 183361 port 241 183361 unique_id port 183361 remote_ip 10.8.0.122 183362 username mostafa_es78 183362 mac 183362 bytes_out 5079106 183362 bytes_in 57221204 183362 station_ip 37.129.255.170 183362 port 236 183362 unique_id port 183352 port 218 183352 unique_id port 183357 username mohammadmahdi 183357 mac 183357 bytes_out 3238391 183357 bytes_in 30944149 183357 station_ip 5.119.69.65 183357 port 248 183357 unique_id port 183357 remote_ip 10.8.0.30 183358 username barzegar 183358 mac 183358 bytes_out 0 183358 bytes_in 0 183358 station_ip 5.120.35.27 183358 port 227 183358 unique_id port 183358 remote_ip 10.8.0.10 183360 username kalantary6037 183360 kill_reason Another user logged on this global unique id 183360 mac 183360 bytes_out 0 183360 bytes_in 0 183360 station_ip 83.123.100.215 183360 port 242 183360 unique_id port 183360 remote_ip 10.8.0.50 183365 username kalantary6037 183365 mac 183365 bytes_out 0 183365 bytes_in 0 183365 station_ip 83.123.100.215 183365 port 242 183365 unique_id port 183366 username barzegar 183366 mac 183366 bytes_out 0 183366 bytes_in 0 183366 station_ip 5.120.35.27 183366 port 241 183366 unique_id port 183366 remote_ip 10.8.0.10 183369 username saeeddamghani 183369 mac 183369 bytes_out 0 183369 bytes_in 0 183369 station_ip 31.56.91.203 183369 port 242 183369 unique_id port 183369 remote_ip 10.8.0.122 183370 username aminvpn 183370 mac 183370 bytes_out 14203 183370 bytes_in 29206 183370 station_ip 83.123.45.100 183370 port 243 183370 unique_id port 183370 remote_ip 10.8.0.58 183372 username aminvpn 183372 mac 183372 bytes_out 26616 183372 bytes_in 59844 183372 station_ip 46.100.217.46 183372 port 242 183372 unique_id port 183372 remote_ip 10.8.0.58 183373 username saeeddamghani 183373 mac 183373 bytes_out 0 183373 bytes_in 0 183373 station_ip 31.56.91.203 183373 port 236 183373 unique_id port 183373 remote_ip 10.8.0.122 183375 username mohammadjavad 183375 mac 183375 bytes_out 1610993 183375 bytes_in 26694302 183375 station_ip 83.123.112.99 183375 port 249 183375 unique_id port 183375 remote_ip 10.8.0.110 183379 username barzegar 183379 mac 183379 bytes_out 1813 183379 bytes_in 5858 183379 station_ip 5.120.35.27 183379 port 250 183379 unique_id port 183379 remote_ip 10.8.0.10 183380 username kalantary6037 183380 mac 183380 bytes_out 654219 183380 bytes_in 7233805 183380 station_ip 83.123.6.211 183380 port 249 183380 unique_id port 183380 remote_ip 10.8.0.50 183383 username aminvpn 183383 mac 183383 bytes_out 0 183383 bytes_in 0 183383 station_ip 46.100.217.46 183383 port 245 183383 unique_id port 183383 remote_ip 10.8.0.58 183387 username mohammadmahdi 183387 mac 183387 bytes_out 627104 183387 bytes_in 1561463 183387 station_ip 5.119.69.65 183387 port 241 183387 unique_id port 183387 remote_ip 10.8.0.30 183389 username barzegar 183389 mac 183389 bytes_out 0 183389 bytes_in 0 183389 station_ip 5.120.35.27 183389 port 241 183389 unique_id port 183389 remote_ip 10.8.0.10 183391 username mohammadjavad 183391 mac 183391 bytes_out 286463 183391 bytes_in 3234591 183391 station_ip 83.123.112.99 183391 port 250 183391 unique_id port 183391 remote_ip 10.8.0.110 183394 username motamedi9772 183394 mac 183394 bytes_out 281045 183394 bytes_in 2512218 183394 station_ip 83.123.73.152 183394 port 246 183394 unique_id port 183394 remote_ip 10.8.0.154 183400 username barzegar 183400 mac 183400 bytes_out 0 183400 bytes_in 0 183400 station_ip 5.120.35.27 183400 port 246 183400 unique_id port 183400 remote_ip 10.8.0.10 183401 username mehdizare 183401 mac 183401 bytes_out 26024 183401 bytes_in 27002 183401 station_ip 83.123.95.193 183401 port 236 183401 unique_id port 183355 port 227 183355 unique_id port 183355 remote_ip 10.8.0.58 183363 username saeeddamghani 183363 mac 183363 bytes_out 13290 183363 bytes_in 14405 183363 station_ip 31.56.91.203 183363 port 241 183363 unique_id port 183363 remote_ip 10.8.0.122 183367 username farhad3 183367 mac 183367 bytes_out 641899 183367 bytes_in 5186744 183367 station_ip 5.119.174.33 183367 port 236 183367 unique_id port 183367 remote_ip 10.8.0.222 183368 username mostafa_es78 183368 mac 183368 bytes_out 481461 183368 bytes_in 1089629 183368 station_ip 37.129.255.170 183368 port 248 183368 unique_id port 183368 remote_ip 10.8.0.34 183371 username mostafa_es78 183371 mac 183371 bytes_out 47416 183371 bytes_in 429335 183371 station_ip 37.129.255.170 183371 port 236 183371 unique_id port 183371 remote_ip 10.8.0.34 183385 username saeeddamghani 183385 mac 183385 bytes_out 0 183385 bytes_in 0 183385 station_ip 31.56.91.203 183385 port 227 183385 unique_id port 183385 remote_ip 10.8.0.122 183386 username dortaj3792 183386 mac 183386 bytes_out 1185122 183386 bytes_in 4054868 183386 station_ip 5.120.3.131 183386 port 246 183386 unique_id port 183386 remote_ip 10.8.0.102 183396 username aminvpn 183396 mac 183396 bytes_out 0 183396 bytes_in 0 183396 station_ip 46.100.217.46 183396 port 246 183396 unique_id port 183396 remote_ip 10.8.0.58 183397 username aminvpn 183397 mac 183397 bytes_out 0 183397 bytes_in 0 183397 station_ip 5.120.44.220 183397 port 227 183397 unique_id port 183397 remote_ip 10.8.0.58 183409 username aminvpn 183409 mac 183409 bytes_out 0 183409 bytes_in 0 183409 station_ip 46.100.217.46 183409 port 241 183409 unique_id port 183409 remote_ip 10.8.0.58 183411 username mehdizare 183411 mac 183411 bytes_out 19996 183411 bytes_in 24037 183411 station_ip 83.123.95.193 183411 port 246 183411 unique_id port 183411 remote_ip 10.8.0.210 183413 username pourshad 183413 mac 183413 bytes_out 0 183413 bytes_in 0 183413 station_ip 5.120.103.150 183413 port 227 183413 unique_id port 183415 username hamid.e 183415 unique_id port 183415 terminate_cause User-Request 183415 bytes_out 28642319 183415 bytes_in 674933804 183415 station_ip 37.27.5.14 183415 port 15728943 183415 nas_port_type Virtual 183415 remote_ip 5.5.5.173 183417 username barzegar 183417 kill_reason Maximum check online fails reached 183417 mac 183417 bytes_out 0 183417 bytes_in 0 183417 station_ip 5.120.35.27 183417 port 245 183417 unique_id port 183423 username mosi 183423 kill_reason Another user logged on this global unique id 183423 mac 183423 bytes_out 0 183423 bytes_in 0 183423 station_ip 151.235.83.58 183423 port 238 183423 unique_id port 183424 username mohammadmahdi 183424 mac 183424 bytes_out 2423386 183424 bytes_in 27383346 183424 station_ip 5.119.69.65 183424 port 249 183424 unique_id port 183424 remote_ip 10.8.0.30 183426 username barzegar 183426 mac 183426 bytes_out 1790 183426 bytes_in 5139 183426 station_ip 5.120.35.27 183426 port 251 183426 unique_id port 183426 remote_ip 10.8.0.10 183428 username shadkam 183428 mac 183428 bytes_out 2179074 183428 bytes_in 19834927 183428 station_ip 83.123.86.181 183428 port 246 183428 unique_id port 183428 remote_ip 10.8.0.74 183430 username godarzi 183430 kill_reason Another user logged on this global unique id 183430 mac 183430 bytes_out 0 183430 bytes_in 0 183430 station_ip 5.202.97.167 183430 port 218 183430 unique_id port 183432 username saeeddamghani 183432 mac 183432 bytes_out 14648 183432 bytes_in 17250 183362 remote_ip 10.8.0.34 183364 username farhad3 183364 mac 183364 bytes_out 1598719 183364 bytes_in 18182230 183364 station_ip 5.119.174.33 183364 port 245 183364 unique_id port 183364 remote_ip 10.8.0.222 183374 username mehdizare 183374 mac 183374 bytes_out 15552 183374 bytes_in 19123 183374 station_ip 83.123.95.193 183374 port 227 183374 unique_id port 183374 remote_ip 10.8.0.210 183376 username mohammadjavad 183376 mac 183376 bytes_out 0 183376 bytes_in 0 183376 station_ip 83.123.112.99 183376 port 243 183376 unique_id port 183376 remote_ip 10.8.0.110 183377 username motamedi9772 183377 mac 183377 bytes_out 0 183377 bytes_in 0 183377 station_ip 83.123.90.88 183377 port 248 183377 unique_id port 183377 remote_ip 10.8.0.154 183378 username mostafa_es78 183378 mac 183378 bytes_out 265078 183378 bytes_in 633025 183378 station_ip 37.129.255.170 183378 port 245 183378 unique_id port 183378 remote_ip 10.8.0.34 183381 username barzegar 183381 mac 183381 bytes_out 0 183381 bytes_in 0 183381 station_ip 5.120.35.27 183381 port 245 183381 unique_id port 183381 remote_ip 10.8.0.10 183382 username aminvpn 183382 mac 183382 bytes_out 27884 183382 bytes_in 71024 183382 station_ip 83.123.45.100 183382 port 227 183382 unique_id port 183382 remote_ip 10.8.0.58 183384 username saeeddamghani 183384 mac 183384 bytes_out 36784 183384 bytes_in 56572 183384 station_ip 31.56.91.203 183384 port 242 183384 unique_id port 183384 remote_ip 10.8.0.122 183388 username alikomsari 183388 kill_reason Another user logged on this global unique id 183388 mac 183388 bytes_out 0 183388 bytes_in 0 183388 station_ip 5.119.138.121 183388 port 239 183388 unique_id port 183388 remote_ip 10.8.0.214 183390 username sedighe 183390 mac 183390 bytes_out 100733 183390 bytes_in 137006 183390 station_ip 83.123.109.174 183390 port 243 183390 unique_id port 183390 remote_ip 10.8.0.46 183392 username aminvpn 183392 mac 183392 bytes_out 283778 183392 bytes_in 2758307 183392 station_ip 83.123.45.100 183392 port 227 183392 unique_id port 183392 remote_ip 10.8.0.58 183393 username aminvpn 183393 mac 183393 bytes_out 0 183393 bytes_in 0 183393 station_ip 5.120.44.220 183393 port 250 183393 unique_id port 183393 remote_ip 10.8.0.58 183395 username aminvpn 183395 mac 183395 bytes_out 0 183395 bytes_in 0 183395 station_ip 83.123.45.100 183395 port 227 183395 unique_id port 183395 remote_ip 10.8.0.58 183398 username aminvpn 183398 mac 183398 bytes_out 0 183398 bytes_in 0 183398 station_ip 83.123.45.100 183398 port 246 183398 unique_id port 183398 remote_ip 10.8.0.58 183399 username aminvpn 183399 mac 183399 bytes_out 0 183399 bytes_in 0 183399 station_ip 5.120.44.220 183399 port 250 183399 unique_id port 183399 remote_ip 10.8.0.58 183402 username barzegar 183402 mac 183402 bytes_out 5318 183402 bytes_in 5874 183402 station_ip 5.120.35.27 183402 port 246 183402 unique_id port 183402 remote_ip 10.8.0.10 183403 username barzegar 183403 mac 183403 bytes_out 0 183403 bytes_in 0 183403 station_ip 5.120.35.27 183403 port 250 183403 unique_id port 183403 remote_ip 10.8.0.10 183407 username kalantary6037 183407 mac 183407 bytes_out 728569 183407 bytes_in 10674620 183407 station_ip 83.123.69.39 183407 port 250 183407 unique_id port 183407 remote_ip 10.8.0.50 183412 username barzegar 183412 mac 183412 bytes_out 0 183412 bytes_in 0 183412 station_ip 5.120.35.27 183412 port 241 183412 unique_id port 183412 remote_ip 10.8.0.10 183401 remote_ip 10.8.0.210 183404 username aminvpn 183404 unique_id port 183404 terminate_cause Lost-Carrier 183404 bytes_out 289907 183404 bytes_in 4039583 183404 station_ip 5.119.167.95 183404 port 15728949 183404 nas_port_type Virtual 183404 remote_ip 5.5.5.167 183405 username sedighe 183405 mac 183405 bytes_out 139140 183405 bytes_in 516178 183405 station_ip 83.123.66.50 183405 port 241 183405 unique_id port 183405 remote_ip 10.8.0.46 183406 username aminvpn 183406 mac 183406 bytes_out 569053 183406 bytes_in 6016687 183406 station_ip 83.123.45.100 183406 port 236 183406 unique_id port 183406 remote_ip 10.8.0.58 183408 username barzegar 183408 mac 183408 bytes_out 0 183408 bytes_in 0 183408 station_ip 5.120.35.27 183408 port 236 183408 unique_id port 183408 remote_ip 10.8.0.10 183410 username pourshad 183410 kill_reason Another user logged on this global unique id 183410 mac 183410 bytes_out 0 183410 bytes_in 0 183410 station_ip 5.120.103.150 183410 port 227 183410 unique_id port 183410 remote_ip 10.8.0.42 183416 username saeeddamghani 183416 mac 183416 bytes_out 238786 183416 bytes_in 466031 183416 station_ip 31.56.91.203 183416 port 242 183416 unique_id port 183416 remote_ip 10.8.0.122 183418 username saeeddamghani 183418 mac 183418 bytes_out 0 183418 bytes_in 0 183418 station_ip 31.56.91.203 183418 port 250 183418 unique_id port 183418 remote_ip 10.8.0.122 183421 username aminvpn 183421 mac 183421 bytes_out 0 183421 bytes_in 0 183421 station_ip 46.100.217.46 183421 port 250 183421 unique_id port 183421 remote_ip 10.8.0.58 183422 username sedighe 183422 mac 183422 bytes_out 1125552 183422 bytes_in 11193150 183422 station_ip 83.123.66.50 183422 port 251 183422 unique_id port 183422 remote_ip 10.8.0.46 183425 username motamedi9772 183425 mac 183425 bytes_out 49447 183425 bytes_in 44886 183425 station_ip 83.123.73.152 183425 port 250 183425 unique_id port 183425 remote_ip 10.8.0.154 183427 username saeeddamghani 183427 mac 183427 bytes_out 31728 183427 bytes_in 49253 183427 station_ip 31.56.91.203 183427 port 242 183427 unique_id port 183427 remote_ip 10.8.0.122 183431 username khademi 183431 mac 183431 bytes_out 0 183431 bytes_in 0 183431 station_ip 83.123.54.146 183431 port 240 183431 unique_id port 183434 username aminvpn 183434 mac 183434 bytes_out 324070 183434 bytes_in 2358735 183434 station_ip 83.123.45.100 183434 port 236 183434 unique_id port 183434 remote_ip 10.8.0.58 183436 username barzegar 183436 mac 183436 bytes_out 0 183436 bytes_in 0 183436 station_ip 5.120.35.27 183436 port 246 183436 unique_id port 183436 remote_ip 10.8.0.10 183437 username barzegar 183437 mac 183437 bytes_out 0 183437 bytes_in 0 183437 station_ip 5.120.35.27 183437 port 246 183437 unique_id port 183437 remote_ip 10.8.0.10 183438 username esmaeilkazemi 183438 mac 183438 bytes_out 77220 183438 bytes_in 226497 183438 station_ip 83.123.33.157 183438 port 242 183438 unique_id port 183438 remote_ip 10.8.0.26 183445 username aminvpn 183445 mac 183445 bytes_out 562883 183445 bytes_in 5396851 183445 station_ip 83.123.45.100 183445 port 236 183445 unique_id port 183445 remote_ip 10.8.0.58 183448 username saeeddamghani 183448 mac 183448 bytes_out 0 183448 bytes_in 0 183448 station_ip 31.56.91.203 183448 port 236 183448 unique_id port 183448 remote_ip 10.8.0.122 183453 username soleymani5056 183453 mac 183453 bytes_out 1781 183453 bytes_in 3546 183453 station_ip 5.120.52.61 183453 port 218 183414 username rahim 183414 mac 183414 bytes_out 3090958 183414 bytes_in 26809597 183414 station_ip 5.120.18.152 183414 port 245 183414 unique_id port 183414 remote_ip 10.8.0.134 183419 username pourshad 183419 kill_reason Another user logged on this global unique id 183419 mac 183419 bytes_out 0 183419 bytes_in 0 183419 station_ip 5.120.103.150 183419 port 227 183419 unique_id port 183419 remote_ip 10.8.0.42 183420 username aminvpn 183420 mac 183420 bytes_out 476829 183420 bytes_in 3948506 183420 station_ip 83.123.45.100 183420 port 236 183420 unique_id port 183420 remote_ip 10.8.0.58 183429 username pourshad 183429 kill_reason Another user logged on this global unique id 183429 mac 183429 bytes_out 0 183429 bytes_in 0 183429 station_ip 5.120.103.150 183429 port 227 183429 unique_id port 183439 username mohammadmahdi 183439 mac 183439 bytes_out 87012 183439 bytes_in 356626 183439 station_ip 5.119.69.65 183439 port 250 183439 unique_id port 183439 remote_ip 10.8.0.30 183441 username pourshad 183441 kill_reason Another user logged on this global unique id 183441 mac 183441 bytes_out 0 183441 bytes_in 0 183441 station_ip 5.120.103.150 183441 port 227 183441 unique_id port 183443 username godarzi 183443 mac 183443 bytes_out 0 183443 bytes_in 0 183443 station_ip 5.202.97.167 183443 port 218 183443 unique_id port 183447 username yaghobi 183447 mac 183447 bytes_out 274380 183447 bytes_in 509286 183447 station_ip 83.123.84.40 183447 port 246 183447 unique_id port 183447 remote_ip 10.8.0.138 183451 username sedighe 183451 mac 183451 bytes_out 59543 183451 bytes_in 106885 183451 station_ip 83.123.66.50 183451 port 218 183451 unique_id port 183451 remote_ip 10.8.0.46 183454 username aminvpn 183454 mac 183454 bytes_out 356563 183454 bytes_in 1995896 183454 station_ip 83.123.45.100 183454 port 252 183454 unique_id port 183454 remote_ip 10.8.0.58 183461 username jafari 183461 mac 183461 bytes_out 230058 183461 bytes_in 934514 183461 station_ip 5.200.117.250 183461 port 246 183461 unique_id port 183461 remote_ip 10.8.0.86 183462 username yaghobi 183462 mac 183462 bytes_out 393638 183462 bytes_in 991229 183462 station_ip 83.123.84.40 183462 port 238 183462 unique_id port 183462 remote_ip 10.8.0.138 183465 username saeeddamghani 183465 mac 183465 bytes_out 329986 183465 bytes_in 2494536 183465 station_ip 31.56.91.203 183465 port 242 183465 unique_id port 183465 remote_ip 10.8.0.122 183466 username saeeddamghani 183466 mac 183466 bytes_out 0 183466 bytes_in 0 183466 station_ip 31.56.91.203 183466 port 241 183466 unique_id port 183466 remote_ip 10.8.0.122 183473 username sekonji0496 183473 mac 183473 bytes_out 131801 183473 bytes_in 489999 183473 station_ip 83.123.30.118 183473 port 253 183473 unique_id port 183473 remote_ip 10.8.0.62 183474 username iranmanesh4443 183474 mac 183474 bytes_out 245112 183474 bytes_in 697840 183474 station_ip 5.120.106.131 183474 port 246 183474 unique_id port 183474 remote_ip 10.8.0.22 183475 username sekonji0496 183475 mac 183475 bytes_out 2798 183475 bytes_in 5048 183475 station_ip 83.123.30.118 183475 port 246 183475 unique_id port 183475 remote_ip 10.8.0.62 183479 username alikomsari 183479 kill_reason Another user logged on this global unique id 183479 mac 183479 bytes_out 0 183479 bytes_in 0 183479 station_ip 5.119.138.121 183479 port 239 183479 unique_id port 183483 username aminvpn 183483 mac 183483 bytes_out 0 183483 bytes_in 0 183483 station_ip 83.123.45.100 183483 port 241 183483 unique_id port 183432 station_ip 31.56.91.203 183432 port 242 183432 unique_id port 183432 remote_ip 10.8.0.122 183433 username barzegar 183433 mac 183433 bytes_out 0 183433 bytes_in 0 183433 station_ip 5.120.35.27 183433 port 242 183433 unique_id port 183433 remote_ip 10.8.0.10 183435 username aminvpn 183435 mac 183435 bytes_out 0 183435 bytes_in 0 183435 station_ip 46.100.217.46 183435 port 246 183435 unique_id port 183435 remote_ip 10.8.0.58 183440 username saeed9658 183440 mac 183440 bytes_out 1441431 183440 bytes_in 10322712 183440 station_ip 5.120.18.70 183440 port 249 183440 unique_id port 183440 remote_ip 10.8.0.162 183442 username mehdizare 183442 mac 183442 bytes_out 57189 183442 bytes_in 40719 183442 station_ip 83.123.95.193 183442 port 241 183442 unique_id port 183442 remote_ip 10.8.0.210 183444 username saeed9658 183444 mac 183444 bytes_out 0 183444 bytes_in 0 183444 station_ip 46.225.210.37 183444 port 250 183444 unique_id port 183444 remote_ip 10.8.0.162 183446 username aminvpn 183446 mac 183446 bytes_out 0 183446 bytes_in 0 183446 station_ip 46.100.217.46 183446 port 251 183446 unique_id port 183446 remote_ip 10.8.0.58 183449 username milan 183449 kill_reason Another user logged on this global unique id 183449 mac 183449 bytes_out 0 183449 bytes_in 0 183449 station_ip 5.119.97.240 183449 port 233 183449 unique_id port 183450 username kalantary6037 183450 mac 183450 bytes_out 1128095 183450 bytes_in 9173056 183450 station_ip 83.123.52.79 183450 port 241 183450 unique_id port 183450 remote_ip 10.8.0.50 183452 username mosi 183452 mac 183452 bytes_out 0 183452 bytes_in 0 183452 station_ip 151.235.83.58 183452 port 238 183452 unique_id port 183456 username pourshad 183456 mac 183456 bytes_out 0 183456 bytes_in 0 183456 station_ip 5.120.103.150 183456 port 227 183456 unique_id port 183458 username milan 183458 kill_reason Another user logged on this global unique id 183458 mac 183458 bytes_out 0 183458 bytes_in 0 183458 station_ip 5.119.97.240 183458 port 233 183458 unique_id port 183459 username barzegar 183459 mac 183459 bytes_out 75202 183459 bytes_in 289499 183459 station_ip 5.120.35.27 183459 port 242 183459 unique_id port 183459 remote_ip 10.8.0.10 183460 username shadkam 183460 mac 183460 bytes_out 2364957 183460 bytes_in 21676035 183460 station_ip 83.123.86.81 183460 port 218 183460 unique_id port 183460 remote_ip 10.8.0.74 183463 username saeeddamghani 183463 mac 183463 bytes_out 27115 183463 bytes_in 31692 183463 station_ip 31.56.91.203 183463 port 242 183463 unique_id port 183463 remote_ip 10.8.0.122 183467 username kalantary6037 183467 mac 183467 bytes_out 317926 183467 bytes_in 3208975 183467 station_ip 83.123.114.91 183467 port 252 183467 unique_id port 183467 remote_ip 10.8.0.50 183469 username aminvpn 183469 mac 183469 bytes_out 0 183469 bytes_in 0 183469 station_ip 46.100.217.46 183469 port 241 183469 unique_id port 183469 remote_ip 10.8.0.58 183477 username saeeddamghani 183477 mac 183477 bytes_out 1364424 183477 bytes_in 6244733 183477 station_ip 31.56.91.203 183477 port 251 183477 unique_id port 183477 remote_ip 10.8.0.122 183478 username aminvpn 183478 mac 183478 bytes_out 0 183478 bytes_in 0 183478 station_ip 5.120.46.50 183478 port 246 183478 unique_id port 183478 remote_ip 10.8.0.58 183481 username aminvpn 183481 mac 183481 bytes_out 41628 183481 bytes_in 63796 183481 station_ip 5.120.46.50 183481 port 246 183481 unique_id port 183453 unique_id port 183453 remote_ip 10.8.0.226 183455 username aminvpn 183455 mac 183455 bytes_out 0 183455 bytes_in 0 183455 station_ip 46.100.217.46 183455 port 251 183455 unique_id port 183455 remote_ip 10.8.0.58 183457 username barzegar 183457 kill_reason Maximum number of concurrent logins reached 183457 mac 183457 bytes_out 0 183457 bytes_in 0 183457 station_ip 5.120.35.27 183457 port 227 183457 unique_id port 183464 username saeed9658 183464 mac 183464 bytes_out 2790207 183464 bytes_in 3097896 183464 station_ip 46.225.210.37 183464 port 241 183464 unique_id port 183464 remote_ip 10.8.0.162 183468 username aminvpn 183468 mac 183468 bytes_out 711952 183468 bytes_in 8715404 183468 station_ip 83.123.45.100 183468 port 251 183468 unique_id port 183468 remote_ip 10.8.0.58 183470 username saeed9658 183470 mac 183470 bytes_out 0 183470 bytes_in 0 183470 station_ip 46.225.210.37 183470 port 252 183470 unique_id port 183470 remote_ip 10.8.0.162 183471 username khademi 183471 kill_reason Another user logged on this global unique id 183471 mac 183471 bytes_out 0 183471 bytes_in 0 183471 station_ip 83.123.54.146 183471 port 240 183471 unique_id port 183471 remote_ip 10.8.0.14 183472 username godarzi 183472 kill_reason Another user logged on this global unique id 183472 mac 183472 bytes_out 0 183472 bytes_in 0 183472 station_ip 5.202.97.167 183472 port 218 183472 unique_id port 183472 remote_ip 10.8.0.38 183476 username aminvpn 183476 mac 183476 bytes_out 379744 183476 bytes_in 3806295 183476 station_ip 83.123.45.100 183476 port 241 183476 unique_id port 183476 remote_ip 10.8.0.58 183480 username aminvpn 183480 mac 183480 bytes_out 0 183480 bytes_in 0 183480 station_ip 83.123.45.100 183480 port 241 183480 unique_id port 183480 remote_ip 10.8.0.58 183482 username saeeddamghani 183482 mac 183482 bytes_out 471967 183482 bytes_in 2822712 183482 station_ip 31.56.91.203 183482 port 251 183482 unique_id port 183482 remote_ip 10.8.0.122 183487 username aminvpn 183487 mac 183487 bytes_out 0 183487 bytes_in 0 183487 station_ip 46.100.217.46 183487 port 241 183487 unique_id port 183487 remote_ip 10.8.0.58 183489 username aminvpn 183489 mac 183489 bytes_out 0 183489 bytes_in 0 183489 station_ip 5.120.46.50 183489 port 241 183489 unique_id port 183489 remote_ip 10.8.0.58 183493 username aminvpn 183493 mac 183493 bytes_out 0 183493 bytes_in 0 183493 station_ip 83.123.45.100 183493 port 254 183493 unique_id port 183493 remote_ip 10.8.0.58 183494 username hatami 183494 mac 183494 bytes_out 287173 183494 bytes_in 2297392 183494 station_ip 151.235.99.206 183494 port 246 183494 unique_id port 183494 remote_ip 10.8.0.98 183495 username sekonji0496 183495 mac 183495 bytes_out 0 183495 bytes_in 0 183495 station_ip 83.123.30.118 183495 port 246 183495 unique_id port 183495 remote_ip 10.8.0.62 183497 username majidsarmast 183497 kill_reason Another user logged on this global unique id 183497 mac 183497 bytes_out 0 183497 bytes_in 0 183497 station_ip 86.57.30.139 183497 port 238 183497 unique_id port 183497 remote_ip 10.8.0.170 183498 username mosi 183498 mac 183498 bytes_out 1311018 183498 bytes_in 3798255 183498 station_ip 151.235.78.193 183498 port 236 183498 unique_id port 183498 remote_ip 10.8.0.142 183499 username rashidi4690 183499 mac 183499 bytes_out 27818408 183499 bytes_in 45515751 183499 station_ip 5.120.155.152 183499 port 234 183499 unique_id port 183499 remote_ip 10.8.0.242 183505 username iranmanesh4443 183505 mac 183481 remote_ip 10.8.0.58 183485 username aminvpn 183485 mac 183485 bytes_out 0 183485 bytes_in 0 183485 station_ip 5.120.46.50 183485 port 251 183485 unique_id port 183485 remote_ip 10.8.0.58 183488 username mehdizare 183488 mac 183488 bytes_out 61308 183488 bytes_in 115229 183488 station_ip 83.123.95.193 183488 port 249 183488 unique_id port 183488 remote_ip 10.8.0.210 183492 username aminvpn 183492 mac 183492 bytes_out 36674 183492 bytes_in 49515 183492 station_ip 5.120.46.50 183492 port 241 183492 unique_id port 183492 remote_ip 10.8.0.58 183500 username rezaei 183500 kill_reason Another user logged on this global unique id 183500 mac 183500 bytes_out 0 183500 bytes_in 0 183500 station_ip 5.120.41.150 183500 port 227 183500 unique_id port 183500 remote_ip 10.8.0.198 183502 username aminvpn 183502 mac 183502 bytes_out 0 183502 bytes_in 0 183502 station_ip 5.120.46.50 183502 port 255 183502 unique_id port 183502 remote_ip 10.8.0.58 183503 username aminvpn 183503 mac 183503 bytes_out 0 183503 bytes_in 0 183503 station_ip 83.123.45.100 183503 port 246 183503 unique_id port 183503 remote_ip 10.8.0.58 183504 username aminvpn 183504 mac 183504 bytes_out 0 183504 bytes_in 0 183504 station_ip 5.120.46.50 183504 port 255 183504 unique_id port 183504 remote_ip 10.8.0.58 183508 username aminvpn 183508 mac 183508 bytes_out 0 183508 bytes_in 0 183508 station_ip 46.100.217.46 183508 port 246 183508 unique_id port 183508 remote_ip 10.8.0.58 183511 username houshang 183511 kill_reason Another user logged on this global unique id 183511 mac 183511 bytes_out 0 183511 bytes_in 0 183511 station_ip 5.119.125.186 183511 port 249 183511 unique_id port 183511 remote_ip 10.8.0.82 183514 username mosi 183514 mac 183514 bytes_out 540127 183514 bytes_in 2422835 183514 station_ip 151.235.78.193 183514 port 241 183514 unique_id port 183514 remote_ip 10.8.0.142 183515 username sekonji0496 183515 mac 183515 bytes_out 2344 183515 bytes_in 4453 183515 station_ip 83.123.30.118 183515 port 251 183515 unique_id port 183515 remote_ip 10.8.0.62 183518 username kalantary6037 183518 mac 183518 bytes_out 494767 183518 bytes_in 4281121 183518 station_ip 83.123.76.223 183518 port 234 183518 unique_id port 183518 remote_ip 10.8.0.50 183526 username sedighe 183526 mac 183526 bytes_out 22782 183526 bytes_in 173510 183526 station_ip 83.123.36.107 183526 port 254 183526 unique_id port 183526 remote_ip 10.8.0.46 183531 username khademi 183531 kill_reason Another user logged on this global unique id 183531 mac 183531 bytes_out 0 183531 bytes_in 0 183531 station_ip 83.123.54.146 183531 port 240 183531 unique_id port 183535 username sedighe 183535 mac 183535 bytes_out 568475 183535 bytes_in 6069204 183535 station_ip 83.123.36.107 183535 port 256 183535 unique_id port 183535 remote_ip 10.8.0.46 183537 username aminvpn 183537 kill_reason Maximum check online fails reached 183537 mac 183537 bytes_out 0 183537 bytes_in 0 183537 station_ip 46.100.217.46 183537 port 238 183537 unique_id port 183541 username sekonji0496 183541 mac 183541 bytes_out 47070 183541 bytes_in 387038 183541 station_ip 83.123.48.151 183541 port 258 183541 unique_id port 183541 remote_ip 10.8.0.62 183542 username saeeddamghani 183542 mac 183542 bytes_out 936383 183542 bytes_in 7591907 183542 station_ip 5.119.239.219 183542 port 254 183542 unique_id port 183542 remote_ip 10.8.0.122 183548 username rashidi4690 183548 kill_reason Another user logged on this global unique id 183548 mac 183548 bytes_out 0 183483 remote_ip 10.8.0.58 183484 username sekonji0496 183484 mac 183484 bytes_out 0 183484 bytes_in 0 183484 station_ip 83.123.30.118 183484 port 241 183484 unique_id port 183484 remote_ip 10.8.0.62 183486 username aminvpn 183486 kill_reason Maximum check online fails reached 183486 mac 183486 bytes_out 0 183486 bytes_in 0 183486 station_ip 46.100.217.46 183486 port 253 183486 unique_id port 183490 username aminvpn 183490 mac 183490 bytes_out 0 183490 bytes_in 0 183490 station_ip 83.123.45.100 183490 port 249 183490 unique_id port 183490 remote_ip 10.8.0.58 183491 username houshang 183491 mac 183491 bytes_out 20096 183491 bytes_in 48442 183491 station_ip 5.119.175.153 183491 port 251 183491 unique_id port 183491 remote_ip 10.8.0.82 183496 username aminvpn 183496 mac 183496 bytes_out 34454 183496 bytes_in 48002 183496 station_ip 5.120.46.50 183496 port 241 183496 unique_id port 183496 remote_ip 10.8.0.58 183501 username aminvpn 183501 mac 183501 bytes_out 11918 183501 bytes_in 22464 183501 station_ip 83.123.45.100 183501 port 246 183501 unique_id port 183501 remote_ip 10.8.0.58 183506 username saeeddamghani 183506 mac 183506 bytes_out 649699 183506 bytes_in 1314063 183506 station_ip 31.56.91.203 183506 port 254 183506 unique_id port 183506 remote_ip 10.8.0.122 183509 username saeeddamghani 183509 mac 183509 bytes_out 1644 183509 bytes_in 6294 183509 station_ip 31.56.91.203 183509 port 252 183509 unique_id port 183509 remote_ip 10.8.0.122 183510 username majidsarmast 183510 mac 183510 bytes_out 0 183510 bytes_in 0 183510 station_ip 86.57.30.139 183510 port 238 183510 unique_id port 183512 username mehdizare 183512 mac 183512 bytes_out 17494 183512 bytes_in 21258 183512 station_ip 83.123.95.193 183512 port 251 183512 unique_id port 183512 remote_ip 10.8.0.210 183513 username sekonji0496 183513 mac 183513 bytes_out 9955 183513 bytes_in 10406 183513 station_ip 83.123.30.118 183513 port 234 183513 unique_id port 183513 remote_ip 10.8.0.62 183521 username aminvpn 183521 mac 183521 bytes_out 117997 183521 bytes_in 292876 183521 station_ip 5.120.46.50 183521 port 254 183521 unique_id port 183521 remote_ip 10.8.0.58 183522 username aminvpn 183522 mac 183522 bytes_out 0 183522 bytes_in 0 183522 station_ip 46.100.217.46 183522 port 238 183522 unique_id port 183522 remote_ip 10.8.0.58 183523 username rashidi4690 183523 kill_reason Another user logged on this global unique id 183523 mac 183523 bytes_out 0 183523 bytes_in 0 183523 station_ip 83.123.100.32 183523 port 236 183523 unique_id port 183523 remote_ip 10.8.0.242 183525 username fezealinaghi 183525 mac 183525 bytes_out 7799611 183525 bytes_in 8867807 183525 station_ip 83.123.67.45 183525 port 250 183525 unique_id port 183525 remote_ip 10.8.0.202 183527 username saeeddamghani 183527 kill_reason Maximum check online fails reached 183527 mac 183527 bytes_out 0 183527 bytes_in 0 183527 station_ip 5.119.239.219 183527 port 250 183527 unique_id port 183528 username shadkam 183528 mac 183528 bytes_out 794320 183528 bytes_in 6725766 183528 station_ip 83.123.118.114 183528 port 251 183528 unique_id port 183528 remote_ip 10.8.0.74 183532 username aminvpn 183532 mac 183532 bytes_out 395758 183532 bytes_in 1080248 183532 station_ip 5.120.46.50 183532 port 238 183532 unique_id port 183532 remote_ip 10.8.0.58 183533 username aminvpn 183533 mac 183533 bytes_out 0 183533 bytes_in 0 183533 station_ip 46.100.217.46 183533 port 260 183533 unique_id port 183505 bytes_out 3458240 183505 bytes_in 54168087 183505 station_ip 5.120.106.131 183505 port 252 183505 unique_id port 183505 remote_ip 10.8.0.22 183507 username aminvpn 183507 mac 183507 bytes_out 0 183507 bytes_in 0 183507 station_ip 83.123.45.100 183507 port 246 183507 unique_id port 183507 remote_ip 10.8.0.58 183516 username houshang 183516 mac 183516 bytes_out 0 183516 bytes_in 0 183516 station_ip 5.119.125.186 183516 port 249 183516 unique_id port 183517 username mosi 183517 mac 183517 bytes_out 143895 183517 bytes_in 201896 183517 station_ip 151.235.78.193 183517 port 252 183517 unique_id port 183517 remote_ip 10.8.0.142 183519 username mosi 183519 mac 183519 bytes_out 13572 183519 bytes_in 33877 183519 station_ip 151.235.78.193 183519 port 249 183519 unique_id port 183519 remote_ip 10.8.0.142 183520 username tahmorsi 183520 mac 183520 bytes_out 745168 183520 bytes_in 5339685 183520 station_ip 86.57.36.58 183520 port 238 183520 unique_id port 183520 remote_ip 10.8.0.6 183524 username sedighe 183524 mac 183524 bytes_out 62379 183524 bytes_in 119394 183524 station_ip 83.123.36.107 183524 port 238 183524 unique_id port 183524 remote_ip 10.8.0.46 183529 username sekonji0496 183529 mac 183529 bytes_out 15641 183529 bytes_in 15995 183529 station_ip 83.123.30.118 183529 port 251 183529 unique_id port 183529 remote_ip 10.8.0.62 183530 username saeeddamghani 183530 mac 183530 bytes_out 962890 183530 bytes_in 11618696 183530 station_ip 5.119.239.219 183530 port 254 183530 unique_id port 183530 remote_ip 10.8.0.122 183534 username ahmadi1 183534 mac 183534 bytes_out 2106 183534 bytes_in 4495 183534 station_ip 83.123.41.172 183534 port 259 183534 unique_id port 183534 remote_ip 10.8.0.94 183536 username farhad3 183536 mac 183536 bytes_out 692288 183536 bytes_in 3184118 183536 station_ip 5.119.40.234 183536 port 258 183536 unique_id port 183536 remote_ip 10.8.0.222 183539 username rahim 183539 kill_reason Another user logged on this global unique id 183539 mac 183539 bytes_out 0 183539 bytes_in 0 183539 station_ip 5.120.18.152 183539 port 257 183539 unique_id port 183539 remote_ip 10.8.0.134 183540 username alipour1506 183540 kill_reason Another user logged on this global unique id 183540 mac 183540 bytes_out 0 183540 bytes_in 0 183540 station_ip 78.39.25.121 183540 port 229 183540 unique_id port 183545 username rezaei 183545 kill_reason Another user logged on this global unique id 183545 mac 183545 bytes_out 0 183545 bytes_in 0 183545 station_ip 5.120.41.150 183545 port 227 183545 unique_id port 183546 username barzegar 183546 kill_reason Maximum number of concurrent logins reached 183546 mac 183546 bytes_out 0 183546 bytes_in 0 183546 station_ip 5.120.35.27 183546 port 254 183546 unique_id port 183549 username sekonji0496 183549 mac 183549 bytes_out 2319 183549 bytes_in 4130 183549 station_ip 83.123.48.151 183549 port 218 183549 unique_id port 183549 remote_ip 10.8.0.62 183554 username rahim 183554 kill_reason Another user logged on this global unique id 183554 mac 183554 bytes_out 0 183554 bytes_in 0 183554 station_ip 5.120.18.152 183554 port 257 183554 unique_id port 183556 username motamedi9772 183556 mac 183556 bytes_out 256720 183556 bytes_in 1923527 183556 station_ip 83.123.78.244 183556 port 249 183556 unique_id port 183556 remote_ip 10.8.0.154 183558 username rashidi4690 183558 kill_reason Another user logged on this global unique id 183558 mac 183558 bytes_out 0 183558 bytes_in 0 183558 station_ip 83.123.100.32 183558 port 236 183533 remote_ip 10.8.0.58 183538 username saeeddamghani 183538 mac 183538 bytes_out 1226104 183538 bytes_in 10421912 183538 station_ip 5.119.239.219 183538 port 254 183538 unique_id port 183538 remote_ip 10.8.0.122 183543 username godarzi 183543 mac 183543 bytes_out 0 183543 bytes_in 0 183543 station_ip 5.202.97.167 183543 port 218 183543 unique_id port 183544 username shadkam 183544 mac 183544 bytes_out 30769 183544 bytes_in 35732 183544 station_ip 83.123.26.183 183544 port 258 183544 unique_id port 183544 remote_ip 10.8.0.74 183547 username kalantary6037 183547 mac 183547 bytes_out 2220117 183547 bytes_in 18401427 183547 station_ip 83.123.76.223 183547 port 252 183547 unique_id port 183547 remote_ip 10.8.0.50 183552 username soleymani5056 183552 mac 183552 bytes_out 131571 183552 bytes_in 321672 183552 station_ip 5.119.164.158 183552 port 261 183552 unique_id port 183552 remote_ip 10.8.0.226 183553 username sekonji0496 183553 mac 183553 bytes_out 0 183553 bytes_in 0 183553 station_ip 83.123.48.151 183553 port 252 183553 unique_id port 183553 remote_ip 10.8.0.62 183555 username farhad3 183555 mac 183555 bytes_out 2218671 183555 bytes_in 13164058 183555 station_ip 5.119.121.19 183555 port 256 183555 unique_id port 183555 remote_ip 10.8.0.222 183557 username farhad3 183557 mac 183557 bytes_out 38309 183557 bytes_in 24175 183557 station_ip 5.119.121.19 183557 port 249 183557 unique_id port 183557 remote_ip 10.8.0.222 183560 username aminvpn 183560 mac 183560 bytes_out 2167236 183560 bytes_in 18607718 183560 station_ip 5.120.46.50 183560 port 259 183560 unique_id port 183560 remote_ip 10.8.0.58 183565 username aminvpn 183565 mac 183565 bytes_out 0 183565 bytes_in 0 183565 station_ip 5.120.46.50 183565 port 249 183565 unique_id port 183565 remote_ip 10.8.0.58 183566 username aminvpn 183566 kill_reason Wrong password 183566 mac 183566 bytes_out 0 183566 bytes_in 0 183566 station_ip 83.123.34.218 183566 port 249 183566 unique_id port 183571 username rashidi4690 183571 kill_reason Another user logged on this global unique id 183571 mac 183571 bytes_out 0 183571 bytes_in 0 183571 station_ip 83.123.100.32 183571 port 236 183571 unique_id port 183572 username shadkam 183572 mac 183572 bytes_out 972007 183572 bytes_in 12559640 183572 station_ip 83.123.1.221 183572 port 252 183572 unique_id port 183572 remote_ip 10.8.0.74 183575 username shadkam 183575 kill_reason Maximum check online fails reached 183575 mac 183575 bytes_out 0 183575 bytes_in 0 183575 station_ip 5.202.1.85 183575 port 256 183575 unique_id port 183576 username iranmanesh4443 183576 mac 183576 bytes_out 2885117 183576 bytes_in 34244242 183576 station_ip 5.120.106.131 183576 port 255 183576 unique_id port 183576 remote_ip 10.8.0.22 183578 username sekonji0496 183578 mac 183578 bytes_out 37371 183578 bytes_in 369856 183578 station_ip 83.123.48.151 183578 port 252 183578 unique_id port 183578 remote_ip 10.8.0.62 183580 username rezaei 183580 mac 183580 bytes_out 0 183580 bytes_in 0 183580 station_ip 5.120.41.150 183580 port 227 183580 unique_id port 183581 username farhad3 183581 mac 183581 bytes_out 1954088 183581 bytes_in 16814507 183581 station_ip 5.120.174.48 183581 port 239 183581 unique_id port 183581 remote_ip 10.8.0.222 183584 username fezealinaghi 183584 mac 183584 bytes_out 476360 183584 bytes_in 917533 183584 station_ip 83.123.67.45 183584 port 251 183584 unique_id port 183584 remote_ip 10.8.0.202 183588 username alikomsari 183548 bytes_in 0 183548 station_ip 83.123.100.32 183548 port 236 183548 unique_id port 183550 username barzegar 183550 mac 183550 bytes_out 437068 183550 bytes_in 4597490 183550 station_ip 5.120.35.27 183550 port 249 183550 unique_id port 183550 remote_ip 10.8.0.10 183551 username sekonji0496 183551 mac 183551 bytes_out 0 183551 bytes_in 0 183551 station_ip 83.123.48.151 183551 port 218 183551 unique_id port 183551 remote_ip 10.8.0.62 183559 username sekonji0496 183559 mac 183559 bytes_out 0 183559 bytes_in 0 183559 station_ip 83.123.48.151 183559 port 252 183559 unique_id port 183559 remote_ip 10.8.0.62 183562 username alikomsari 183562 mac 183562 bytes_out 0 183562 bytes_in 0 183562 station_ip 5.119.138.121 183562 port 239 183562 unique_id port 183563 username farhad3 183563 mac 183563 bytes_out 0 183563 bytes_in 0 183563 station_ip 5.120.174.48 183563 port 249 183563 unique_id port 183563 remote_ip 10.8.0.222 183564 username malekpoir 183564 kill_reason Another user logged on this global unique id 183564 mac 183564 bytes_out 0 183564 bytes_in 0 183564 station_ip 5.119.217.147 183564 port 243 183564 unique_id port 183564 remote_ip 10.8.0.18 183568 username sekonji0496 183568 mac 183568 bytes_out 0 183568 bytes_in 0 183568 station_ip 83.123.48.151 183568 port 249 183568 unique_id port 183568 remote_ip 10.8.0.62 183573 username aminvpn 183573 kill_reason Wrong password 183573 mac 183573 bytes_out 0 183573 bytes_in 0 183573 station_ip 83.123.34.218 183573 port 252 183573 unique_id port 183579 username sekonji0496 183579 mac 183579 bytes_out 0 183579 bytes_in 0 183579 station_ip 83.123.48.151 183579 port 252 183579 unique_id port 183579 remote_ip 10.8.0.62 183582 username houshang 183582 kill_reason Another user logged on this global unique id 183582 mac 183582 bytes_out 0 183582 bytes_in 0 183582 station_ip 5.119.125.186 183582 port 249 183582 unique_id port 183582 remote_ip 10.8.0.82 183585 username rashidi4690 183585 kill_reason Another user logged on this global unique id 183585 mac 183585 bytes_out 0 183585 bytes_in 0 183585 station_ip 83.123.100.32 183585 port 236 183585 unique_id port 183589 username alikomsari 183589 kill_reason Maximum number of concurrent logins reached 183589 mac 183589 bytes_out 0 183589 bytes_in 0 183589 station_ip 5.119.138.121 183589 port 249 183589 unique_id port 183591 username alikomsari 183591 kill_reason Maximum number of concurrent logins reached 183591 mac 183591 bytes_out 0 183591 bytes_in 0 183591 station_ip 5.119.138.121 183591 port 249 183591 unique_id port 183592 username alikomsari 183592 kill_reason Maximum number of concurrent logins reached 183592 mac 183592 bytes_out 0 183592 bytes_in 0 183592 station_ip 5.119.138.121 183592 port 252 183592 unique_id port 183595 username mehdizare 183595 mac 183595 bytes_out 128562 183595 bytes_in 110516 183595 station_ip 83.123.95.193 183595 port 246 183595 unique_id port 183595 remote_ip 10.8.0.210 183597 username mosi 183597 mac 183597 bytes_out 1112793 183597 bytes_in 3694165 183597 station_ip 37.137.236.210 183597 port 234 183597 unique_id port 183597 remote_ip 10.8.0.142 183599 username mehdizare 183599 mac 183599 bytes_out 18871 183599 bytes_in 30653 183599 station_ip 83.123.95.193 183599 port 252 183599 unique_id port 183599 remote_ip 10.8.0.210 183605 username farhad3 183605 mac 183605 bytes_out 3073661 183605 bytes_in 23941327 183605 station_ip 5.119.239.142 183605 port 251 183605 unique_id port 183605 remote_ip 10.8.0.222 183607 username hosseine 183558 unique_id port 183561 username farhad3 183561 mac 183561 bytes_out 109866 183561 bytes_in 441568 183561 station_ip 5.120.174.48 183561 port 249 183561 unique_id port 183561 remote_ip 10.8.0.222 183567 username rahim 183567 kill_reason Another user logged on this global unique id 183567 mac 183567 bytes_out 0 183567 bytes_in 0 183567 station_ip 5.120.18.152 183567 port 257 183567 unique_id port 183569 username aminvpn 183569 kill_reason Wrong password 183569 mac 183569 bytes_out 0 183569 bytes_in 0 183569 station_ip 83.123.34.218 183569 port 249 183569 unique_id port 183570 username aminvpn 183570 kill_reason Wrong password 183570 mac 183570 bytes_out 0 183570 bytes_in 0 183570 station_ip 83.123.34.218 183570 port 249 183570 unique_id port 183574 username aminvpn 183574 kill_reason Wrong password 183574 mac 183574 bytes_out 0 183574 bytes_in 0 183574 station_ip 83.123.34.218 183574 port 252 183574 unique_id port 183577 username sekonji0496 183577 mac 183577 bytes_out 0 183577 bytes_in 0 183577 station_ip 83.123.48.151 183577 port 252 183577 unique_id port 183577 remote_ip 10.8.0.62 183583 username sekonji0496 183583 mac 183583 bytes_out 0 183583 bytes_in 0 183583 station_ip 83.123.48.151 183583 port 252 183583 unique_id port 183583 remote_ip 10.8.0.62 183586 username alikomsari 183586 kill_reason Maximum number of concurrent logins reached 183586 mac 183586 bytes_out 0 183586 bytes_in 0 183586 station_ip 5.119.138.121 183586 port 252 183586 unique_id port 183587 username houshang 183587 mac 183587 bytes_out 0 183587 bytes_in 0 183587 station_ip 5.119.125.186 183587 port 249 183587 unique_id port 183594 username sekonji0496 183594 mac 183594 bytes_out 0 183594 bytes_in 0 183594 station_ip 83.123.48.151 183594 port 249 183594 unique_id port 183594 remote_ip 10.8.0.62 183596 username malekpoir 183596 mac 183596 bytes_out 0 183596 bytes_in 0 183596 station_ip 5.119.217.147 183596 port 243 183596 unique_id port 183600 username pourshad 183600 kill_reason Another user logged on this global unique id 183600 mac 183600 bytes_out 0 183600 bytes_in 0 183600 station_ip 5.120.103.150 183600 port 242 183600 unique_id port 183600 remote_ip 10.8.0.42 183601 username rashidi4690 183601 kill_reason Another user logged on this global unique id 183601 mac 183601 bytes_out 0 183601 bytes_in 0 183601 station_ip 83.123.100.32 183601 port 236 183601 unique_id port 183602 username rezaei 183602 mac 183602 bytes_out 703100 183602 bytes_in 4011337 183602 station_ip 5.120.41.150 183602 port 227 183602 unique_id port 183602 remote_ip 10.8.0.198 183604 username milan 183604 kill_reason Another user logged on this global unique id 183604 mac 183604 bytes_out 0 183604 bytes_in 0 183604 station_ip 5.119.97.240 183604 port 233 183604 unique_id port 183608 username rahim 183608 mac 183608 bytes_out 0 183608 bytes_in 0 183608 station_ip 5.120.18.152 183608 port 257 183608 unique_id port 183610 username sobhan 183610 unique_id port 183610 terminate_cause Lost-Carrier 183610 bytes_out 510511 183610 bytes_in 3944143 183610 station_ip 5.119.71.9 183610 port 15728954 183610 nas_port_type Virtual 183610 remote_ip 5.5.5.166 183613 username mehdizare 183613 mac 183613 bytes_out 15682 183613 bytes_in 17306 183613 station_ip 83.123.95.193 183613 port 234 183613 unique_id port 183613 remote_ip 10.8.0.210 183614 username rezaei 183614 mac 183614 bytes_out 40902 183614 bytes_in 28223 183614 station_ip 5.120.41.150 183614 port 259 183614 unique_id port 183588 kill_reason Maximum number of concurrent logins reached 183588 mac 183588 bytes_out 0 183588 bytes_in 0 183588 station_ip 5.119.138.121 183588 port 249 183588 unique_id port 183590 username sekonji0496 183590 mac 183590 bytes_out 0 183590 bytes_in 0 183590 station_ip 83.123.48.151 183590 port 252 183590 unique_id port 183590 remote_ip 10.8.0.62 183593 username alikomsari 183593 mac 183593 bytes_out 1773111 183593 bytes_in 14286883 183593 station_ip 5.119.138.121 183593 port 254 183593 unique_id port 183593 remote_ip 10.8.0.214 183598 username sekonji0496 183598 mac 183598 bytes_out 0 183598 bytes_in 0 183598 station_ip 83.123.48.151 183598 port 246 183598 unique_id port 183598 remote_ip 10.8.0.62 183603 username aminvpn 183603 mac 183603 bytes_out 0 183603 bytes_in 0 183603 station_ip 46.100.217.46 183603 port 258 183603 unique_id port 183603 remote_ip 10.8.0.58 183606 username houshang 183606 mac 183606 bytes_out 789089 183606 bytes_in 9204851 183606 station_ip 5.119.125.186 183606 port 252 183606 unique_id port 183606 remote_ip 10.8.0.82 183609 username godarzi 183609 mac 183609 bytes_out 1649188 183609 bytes_in 3092708 183609 station_ip 5.202.97.167 183609 port 218 183609 unique_id port 183609 remote_ip 10.8.0.38 183612 username farhad3 183612 mac 183612 bytes_out 235400 183612 bytes_in 1326850 183612 station_ip 5.119.239.142 183612 port 251 183612 unique_id port 183612 remote_ip 10.8.0.222 183615 username godarzi 183615 mac 183615 bytes_out 0 183615 bytes_in 0 183615 station_ip 5.202.97.167 183615 port 234 183615 unique_id port 183615 remote_ip 10.8.0.38 183617 username rezaei 183617 mac 183617 bytes_out 106719 183617 bytes_in 918356 183617 station_ip 5.120.41.150 183617 port 252 183617 unique_id port 183617 remote_ip 10.8.0.198 183619 username mostafa_es78 183619 mac 183619 bytes_out 2033319 183619 bytes_in 23754964 183619 station_ip 83.122.36.60 183619 port 243 183619 unique_id port 183619 remote_ip 10.8.0.34 183626 username godarzi 183626 mac 183626 bytes_out 0 183626 bytes_in 0 183626 station_ip 5.202.97.167 183626 port 234 183626 unique_id port 183626 remote_ip 10.8.0.38 183627 username sekonji0496 183627 mac 183627 bytes_out 0 183627 bytes_in 0 183627 station_ip 83.123.48.151 183627 port 243 183627 unique_id port 183627 remote_ip 10.8.0.62 183631 username farhad3 183631 mac 183631 bytes_out 1145971 183631 bytes_in 3435371 183631 station_ip 5.119.239.142 183631 port 246 183631 unique_id port 183631 remote_ip 10.8.0.222 183633 username farhad3 183633 mac 183633 bytes_out 0 183633 bytes_in 0 183633 station_ip 5.119.239.142 183633 port 218 183633 unique_id port 183633 remote_ip 10.8.0.222 183635 username aminvpn 183635 mac 183635 bytes_out 54735 183635 bytes_in 351779 183635 station_ip 46.100.217.46 183635 port 236 183635 unique_id port 183635 remote_ip 10.8.0.58 183637 username saeeddamghani 183637 mac 183637 bytes_out 554776 183637 bytes_in 4066519 183637 station_ip 5.119.239.219 183637 port 234 183637 unique_id port 183637 remote_ip 10.8.0.122 183640 username saeeddamghani 183640 mac 183640 bytes_out 0 183640 bytes_in 0 183640 station_ip 5.119.239.219 183640 port 227 183640 unique_id port 183640 remote_ip 10.8.0.122 183641 username sekonji0496 183641 mac 183641 bytes_out 0 183641 bytes_in 0 183641 station_ip 83.123.48.151 183641 port 227 183641 unique_id port 183641 remote_ip 10.8.0.62 183644 username saeed9658 183644 mac 183607 kill_reason Another user logged on this global unique id 183607 mac 183607 bytes_out 0 183607 bytes_in 0 183607 station_ip 83.123.113.207 183607 port 248 183607 unique_id port 183607 remote_ip 10.8.0.54 183611 username sekonji0496 183611 mac 183611 bytes_out 21960 183611 bytes_in 31253 183611 station_ip 83.123.48.151 183611 port 246 183611 unique_id port 183611 remote_ip 10.8.0.62 183618 username rashidi4690 183618 mac 183618 bytes_out 0 183618 bytes_in 0 183618 station_ip 83.123.100.32 183618 port 236 183618 unique_id port 183621 username sobhan 183621 unique_id port 183621 terminate_cause Lost-Carrier 183621 bytes_out 510606 183621 bytes_in 3152226 183621 station_ip 5.120.186.209 183621 port 15728955 183621 nas_port_type Virtual 183621 remote_ip 5.5.5.165 183622 username sekonji0496 183622 mac 183622 bytes_out 20121 183622 bytes_in 25950 183622 station_ip 83.123.48.151 183622 port 234 183622 unique_id port 183622 remote_ip 10.8.0.62 183624 username saeeddamghani 183624 mac 183624 bytes_out 0 183624 bytes_in 0 183624 station_ip 5.119.239.219 183624 port 234 183624 unique_id port 183624 remote_ip 10.8.0.122 183625 username saeeddamghani 183625 mac 183625 bytes_out 0 183625 bytes_in 0 183625 station_ip 5.119.239.219 183625 port 243 183625 unique_id port 183625 remote_ip 10.8.0.122 183630 username arash 183630 mac 183630 bytes_out 289163 183630 bytes_in 3764234 183630 station_ip 37.27.36.152 183630 port 255 183630 unique_id port 183630 remote_ip 10.8.0.70 183643 username saeeddamghani 183643 mac 183643 bytes_out 0 183643 bytes_in 0 183643 station_ip 5.119.239.219 183643 port 236 183643 unique_id port 183643 remote_ip 10.8.0.122 183654 username saeed9658 183654 mac 183654 bytes_out 0 183654 bytes_in 0 183654 station_ip 5.119.244.120 183654 port 218 183654 unique_id port 183654 remote_ip 10.8.0.162 183655 username saeed9658 183655 mac 183655 bytes_out 0 183655 bytes_in 0 183655 station_ip 5.119.244.120 183655 port 218 183655 unique_id port 183655 remote_ip 10.8.0.162 183657 username farhad3 183657 mac 183657 bytes_out 318330 183657 bytes_in 1057392 183657 station_ip 5.119.239.142 183657 port 236 183657 unique_id port 183657 remote_ip 10.8.0.222 183659 username saeed9658 183659 mac 183659 bytes_out 0 183659 bytes_in 0 183659 station_ip 5.119.244.120 183659 port 258 183659 unique_id port 183659 remote_ip 10.8.0.162 183663 username saeed9658 183648 username saeed9658 183663 kill_reason Maximum check online fails reached 183663 mac 183663 bytes_out 0 183663 bytes_in 0 183663 station_ip 5.119.244.120 183663 port 258 183663 unique_id port 183666 username kordestani 183666 mac 183666 bytes_out 2685901 183666 bytes_in 32606548 183666 station_ip 151.235.123.141 183666 port 255 183666 unique_id port 183666 remote_ip 10.8.0.130 183672 username rajaei 183672 kill_reason Another user logged on this global unique id 183672 mac 183672 bytes_out 0 183672 bytes_in 0 183672 station_ip 93.114.29.68 183672 port 254 183672 unique_id port 183673 username aminvpn 183673 mac 183673 bytes_out 0 183673 bytes_in 0 183673 station_ip 46.100.217.46 183673 port 243 183673 unique_id port 183673 remote_ip 10.8.0.58 183677 username saeed9658 183677 mac 183677 bytes_out 0 183677 bytes_in 0 183677 station_ip 5.119.244.120 183677 port 236 183677 unique_id port 183677 remote_ip 10.8.0.162 183680 username saeed9658 183680 mac 183680 bytes_out 0 183680 bytes_in 0 183680 station_ip 5.119.244.120 183680 port 259 183680 unique_id port 183680 remote_ip 10.8.0.162 183614 remote_ip 10.8.0.198 183616 username alipour1506 183616 kill_reason Another user logged on this global unique id 183616 mac 183616 bytes_out 0 183616 bytes_in 0 183616 station_ip 78.39.25.121 183616 port 229 183616 unique_id port 183620 username fezealinaghi 183620 kill_reason Another user logged on this global unique id 183620 mac 183620 bytes_out 0 183620 bytes_in 0 183620 station_ip 83.123.67.45 183620 port 239 183620 unique_id port 183620 remote_ip 10.8.0.202 183623 username saeeddamghani 183623 mac 183623 bytes_out 955035 183623 bytes_in 9936567 183623 station_ip 5.119.239.219 183623 port 243 183623 unique_id port 183623 remote_ip 10.8.0.122 183628 username shadkam 183628 mac 183628 bytes_out 1037750 183628 bytes_in 5592657 183628 station_ip 83.123.110.34 183628 port 218 183628 unique_id port 183628 remote_ip 10.8.0.74 183629 username sekonji0496 183629 mac 183629 bytes_out 0 183629 bytes_in 0 183629 station_ip 83.123.48.151 183629 port 218 183629 unique_id port 183629 remote_ip 10.8.0.62 183632 username sekonji0496 183632 mac 183632 bytes_out 0 183632 bytes_in 0 183632 station_ip 83.123.48.151 183632 port 218 183632 unique_id port 183632 remote_ip 10.8.0.62 183634 username rajaei 183634 kill_reason Another user logged on this global unique id 183634 mac 183634 bytes_out 0 183634 bytes_in 0 183634 station_ip 93.114.29.68 183634 port 254 183634 unique_id port 183634 remote_ip 10.8.0.218 183636 username hamid.e 183636 unique_id port 183636 terminate_cause User-Request 183636 bytes_out 505922 183636 bytes_in 11256526 183636 station_ip 31.56.216.239 183636 port 15728957 183636 nas_port_type Virtual 183636 remote_ip 5.5.5.182 183638 username saeed9658 183638 mac 183638 bytes_out 2303998 183638 bytes_in 6079701 183638 station_ip 5.119.244.120 183638 port 227 183638 unique_id port 183638 remote_ip 10.8.0.162 183639 username saeed9658 183639 mac 183639 bytes_out 0 183639 bytes_in 0 183639 station_ip 5.119.244.120 183639 port 227 183639 unique_id port 183639 remote_ip 10.8.0.162 183642 username alikomsari 183642 kill_reason Another user logged on this global unique id 183642 mac 183642 bytes_out 0 183642 bytes_in 0 183642 station_ip 5.119.138.121 183642 port 249 183642 unique_id port 183642 remote_ip 10.8.0.214 183646 username saeeddamghani 183646 kill_reason Maximum check online fails reached 183646 mac 183646 bytes_out 0 183646 bytes_in 0 183646 station_ip 5.119.239.219 183646 port 227 183646 unique_id port 183648 mac 183648 bytes_out 0 183648 bytes_in 0 183648 station_ip 5.119.244.120 183648 port 236 183648 unique_id port 183648 remote_ip 10.8.0.162 183651 username farhad3 183651 mac 183651 bytes_out 825396 183651 bytes_in 3495549 183651 station_ip 5.119.239.142 183651 port 218 183651 unique_id port 183651 remote_ip 10.8.0.222 183653 username rajaei 183653 kill_reason Another user logged on this global unique id 183653 mac 183653 bytes_out 0 183653 bytes_in 0 183653 station_ip 93.114.29.68 183653 port 254 183653 unique_id port 183660 username saeed9658 183660 kill_reason Maximum check online fails reached 183660 mac 183660 bytes_out 0 183660 bytes_in 0 183660 station_ip 5.119.244.120 183660 port 257 183660 unique_id port 183662 username aminvpn 183662 mac 183662 bytes_out 0 183662 bytes_in 0 183662 station_ip 46.100.217.46 183662 port 261 183662 unique_id port 183662 remote_ip 10.8.0.58 183664 username saeed9658 183664 mac 183664 bytes_out 0 183664 bytes_in 0 183664 station_ip 5.119.244.120 183664 port 259 183664 unique_id port 183644 bytes_out 0 183644 bytes_in 0 183644 station_ip 5.119.244.120 183644 port 234 183644 unique_id port 183644 remote_ip 10.8.0.162 183645 username farhad3 183645 mac 183645 bytes_out 735963 183645 bytes_in 4148039 183645 station_ip 5.119.239.142 183645 port 218 183645 unique_id port 183645 remote_ip 10.8.0.222 183647 username saeed9658 183647 mac 183647 bytes_out 0 183647 bytes_in 0 183647 station_ip 5.119.244.120 183647 port 234 183647 unique_id port 183647 remote_ip 10.8.0.162 183649 username saeed9658 183649 mac 183649 bytes_out 0 183649 bytes_in 0 183649 station_ip 5.119.244.120 183649 port 236 183649 unique_id port 183649 remote_ip 10.8.0.162 183650 username aminvpn 183650 mac 183650 bytes_out 0 183650 bytes_in 0 183650 station_ip 46.100.217.46 183650 port 236 183650 unique_id port 183650 remote_ip 10.8.0.58 183652 username saeed9658 183652 mac 183652 bytes_out 0 183652 bytes_in 0 183652 station_ip 5.119.244.120 183652 port 218 183652 unique_id port 183652 remote_ip 10.8.0.162 183656 username saeed9658 183656 mac 183656 bytes_out 0 183656 bytes_in 0 183656 station_ip 5.119.244.120 183656 port 218 183656 unique_id port 183656 remote_ip 10.8.0.162 183658 username iranmanesh4443 183658 mac 183658 bytes_out 0 183658 bytes_in 0 183658 station_ip 5.119.181.99 183658 port 218 183658 unique_id port 183658 remote_ip 10.8.0.22 183661 username saeed9658 183661 mac 183661 bytes_out 0 183661 bytes_in 0 183661 station_ip 5.119.244.120 183661 port 259 183661 unique_id port 183661 remote_ip 10.8.0.162 183669 username saeeddamghani 183669 mac 183669 bytes_out 1176921 183669 bytes_in 7509037 183669 station_ip 5.119.239.219 183669 port 246 183669 unique_id port 183669 remote_ip 10.8.0.122 183671 username shadkam 183671 mac 183671 bytes_out 4384293 183671 bytes_in 42639354 183671 station_ip 83.123.110.34 183671 port 243 183671 unique_id port 183671 remote_ip 10.8.0.74 183674 username saeed9658 183674 mac 183674 bytes_out 0 183674 bytes_in 0 183674 station_ip 5.119.244.120 183674 port 255 183674 unique_id port 183674 remote_ip 10.8.0.162 183676 username iranmanesh4443 183676 mac 183676 bytes_out 186897 183676 bytes_in 300392 183676 station_ip 5.119.181.99 183676 port 236 183676 unique_id port 183676 remote_ip 10.8.0.22 183681 username saeed9658 183681 kill_reason Maximum check online fails reached 183681 mac 183681 bytes_out 0 183681 bytes_in 0 183681 station_ip 5.119.244.120 183681 port 254 183681 unique_id port 183685 username khademi 183685 kill_reason Another user logged on this global unique id 183685 mac 183685 bytes_out 0 183685 bytes_in 0 183685 station_ip 83.123.54.146 183685 port 240 183685 unique_id port 183687 username alipour1506 183687 kill_reason Another user logged on this global unique id 183687 mac 183687 bytes_out 0 183687 bytes_in 0 183687 station_ip 78.39.25.121 183687 port 229 183687 unique_id port 183692 username aminvpn 183692 mac 183692 bytes_out 0 183692 bytes_in 0 183692 station_ip 46.100.217.46 183692 port 236 183692 unique_id port 183692 remote_ip 10.8.0.58 183694 username saeed9658 183694 kill_reason Maximum check online fails reached 183694 mac 183694 bytes_out 0 183694 bytes_in 0 183694 station_ip 5.119.244.120 183694 port 243 183694 unique_id port 183696 username fezealinaghi 183696 mac 183696 bytes_out 0 183696 bytes_in 0 183696 station_ip 83.123.67.45 183696 port 239 183696 unique_id port 183701 username farhad3 183701 mac 183701 bytes_out 0 183664 remote_ip 10.8.0.162 183665 username sekonji0496 183665 mac 183665 bytes_out 33454 183665 bytes_in 153330 183665 station_ip 83.123.48.151 183665 port 234 183665 unique_id port 183665 remote_ip 10.8.0.62 183667 username rajaei 183667 kill_reason Another user logged on this global unique id 183667 mac 183667 bytes_out 0 183667 bytes_in 0 183667 station_ip 93.114.29.68 183667 port 254 183667 unique_id port 183668 username saeed9658 183668 mac 183668 bytes_out 0 183668 bytes_in 0 183668 station_ip 5.119.244.120 183668 port 234 183668 unique_id port 183668 remote_ip 10.8.0.162 183670 username saeed9658 183670 mac 183670 bytes_out 0 183670 bytes_in 0 183670 station_ip 5.119.244.120 183670 port 234 183670 unique_id port 183670 remote_ip 10.8.0.162 183675 username rajaei 183675 mac 183675 bytes_out 0 183675 bytes_in 0 183675 station_ip 93.114.29.68 183675 port 254 183675 unique_id port 183678 username farhad3 183678 kill_reason Another user logged on this global unique id 183678 mac 183678 bytes_out 0 183678 bytes_in 0 183678 station_ip 5.119.239.142 183678 port 218 183678 unique_id port 183678 remote_ip 10.8.0.222 183679 username motamedi9772 183679 mac 183679 bytes_out 84694 183679 bytes_in 166770 183679 station_ip 83.123.90.250 183679 port 236 183679 unique_id port 183679 remote_ip 10.8.0.154 183684 username alipour1506 183684 kill_reason Another user logged on this global unique id 183684 mac 183684 bytes_out 0 183684 bytes_in 0 183684 station_ip 78.39.25.121 183684 port 229 183684 unique_id port 183689 username aminvpn 183689 mac 183689 bytes_out 0 183689 bytes_in 0 183689 station_ip 46.100.217.46 183689 port 236 183689 unique_id port 183689 remote_ip 10.8.0.58 183690 username aminvpn 183690 mac 183690 bytes_out 0 183690 bytes_in 0 183690 station_ip 46.100.217.46 183690 port 236 183690 unique_id port 183690 remote_ip 10.8.0.58 183697 username aminvpn 183697 mac 183697 bytes_out 2458589 183697 bytes_in 33443008 183697 station_ip 5.120.46.50 183697 port 261 183697 unique_id port 183697 remote_ip 10.8.0.58 183698 username saeed9658 183698 mac 183698 bytes_out 6021210 183698 bytes_in 563540 183698 station_ip 5.119.244.120 183698 port 259 183698 unique_id port 183698 remote_ip 10.8.0.162 183699 username ayobi 183699 kill_reason Another user logged on this global unique id 183699 mac 183699 bytes_out 0 183699 bytes_in 0 183699 station_ip 37.27.33.156 183699 port 260 183699 unique_id port 183699 remote_ip 10.8.0.186 183700 username saeed9658 183700 mac 183700 bytes_out 0 183700 bytes_in 0 183700 station_ip 5.119.244.120 183700 port 239 183700 unique_id port 183700 remote_ip 10.8.0.162 183706 username arash 183706 mac 183706 bytes_out 0 183706 bytes_in 0 183706 station_ip 37.27.36.152 183706 port 252 183706 unique_id port 183715 username saeed9658 183715 kill_reason Maximum check online fails reached 183715 mac 183715 bytes_out 0 183715 bytes_in 0 183715 station_ip 5.119.244.120 183715 port 252 183715 unique_id port 183716 username mosi 183716 mac 183716 bytes_out 198810 183716 bytes_in 535906 183716 station_ip 37.137.13.161 183716 port 236 183716 unique_id port 183716 remote_ip 10.8.0.142 183719 username saeed9658 183719 mac 183719 bytes_out 0 183719 bytes_in 0 183719 station_ip 5.119.244.120 183719 port 234 183719 unique_id port 183719 remote_ip 10.8.0.162 183720 username motamedi9772 183720 mac 183720 bytes_out 129175 183720 bytes_in 124289 183720 station_ip 83.123.90.250 183720 port 236 183682 username rajaei 183682 kill_reason Another user logged on this global unique id 183682 mac 183682 bytes_out 0 183682 bytes_in 0 183682 station_ip 93.114.29.68 183682 port 255 183682 unique_id port 183682 remote_ip 10.8.0.218 183683 username alipour1506 183683 mac 183683 bytes_out 0 183683 bytes_in 0 183683 station_ip 78.39.25.121 183683 port 229 183683 unique_id port 183686 username rajaei 183686 mac 183686 bytes_out 0 183686 bytes_in 0 183686 station_ip 93.114.29.68 183686 port 255 183686 unique_id port 183688 username soleymani5056 183688 mac 183688 bytes_out 230373 183688 bytes_in 1574171 183688 station_ip 5.120.162.223 183688 port 243 183688 unique_id port 183688 remote_ip 10.8.0.226 183691 username saeed9658 183691 mac 183691 bytes_out 0 183691 bytes_in 0 183691 station_ip 5.119.244.120 183691 port 243 183691 unique_id port 183691 remote_ip 10.8.0.162 183693 username soleymani5056 183693 mac 183693 bytes_out 81611 183693 bytes_in 103835 183693 station_ip 5.120.56.211 183693 port 229 183693 unique_id port 183693 remote_ip 10.8.0.226 183695 username shadkam 183695 mac 183695 bytes_out 0 183695 bytes_in 0 183695 station_ip 83.123.52.91 183695 port 229 183695 unique_id port 183695 remote_ip 10.8.0.74 183703 username mosi 183703 mac 183703 bytes_out 914214 183703 bytes_in 6752480 183703 station_ip 37.137.13.161 183703 port 236 183703 unique_id port 183703 remote_ip 10.8.0.142 183704 username saeed9658 183704 mac 183704 bytes_out 57629 183704 bytes_in 40014 183704 station_ip 5.119.244.120 183704 port 236 183704 unique_id port 183704 remote_ip 10.8.0.162 183705 username aminvpn 183705 kill_reason Another user logged on this global unique id 183705 mac 183705 bytes_out 0 183705 bytes_in 0 183705 station_ip 5.120.46.50 183705 port 218 183705 unique_id port 183705 remote_ip 10.8.0.58 183709 username shadkam 183709 mac 183709 bytes_out 3009332 183709 bytes_in 30728454 183709 station_ip 5.202.1.85 183709 port 262 183709 unique_id port 183709 remote_ip 10.8.0.74 183712 username saeed9658 183712 mac 183712 bytes_out 0 183712 bytes_in 0 183712 station_ip 5.119.244.120 183712 port 252 183712 unique_id port 183712 remote_ip 10.8.0.162 183714 username saeed9658 183714 kill_reason Maximum check online fails reached 183714 mac 183714 bytes_out 0 183714 bytes_in 0 183714 station_ip 5.119.244.120 183714 port 218 183714 unique_id port 183717 username saeed9658 183717 mac 183717 bytes_out 2222 183717 bytes_in 4475 183717 station_ip 5.119.244.120 183717 port 236 183717 unique_id port 183717 remote_ip 10.8.0.162 183721 username saeed9658 183721 mac 183721 bytes_out 0 183721 bytes_in 0 183721 station_ip 5.119.244.120 183721 port 236 183721 unique_id port 183721 remote_ip 10.8.0.162 183727 username aminvpn 183727 unique_id port 183727 terminate_cause Lost-Carrier 183727 bytes_out 2912181 183727 bytes_in 57282696 183727 station_ip 46.100.217.46 183727 port 15728958 183727 nas_port_type Virtual 183727 remote_ip 5.5.5.164 183728 username fezealinaghi 183728 mac 183728 bytes_out 2527023 183728 bytes_in 15611911 183728 station_ip 83.123.67.45 183728 port 229 183728 unique_id port 183728 remote_ip 10.8.0.202 183729 username ayobi 183729 mac 183729 bytes_out 0 183729 bytes_in 0 183729 station_ip 37.27.33.156 183729 port 260 183729 unique_id port 183732 username saeed9658 183732 mac 183732 bytes_out 0 183732 bytes_in 0 183732 station_ip 5.119.244.120 183732 port 229 183732 unique_id port 183732 remote_ip 10.8.0.162 183701 bytes_in 0 183701 station_ip 5.119.239.142 183701 port 218 183701 unique_id port 183702 username arash 183702 kill_reason Another user logged on this global unique id 183702 mac 183702 bytes_out 0 183702 bytes_in 0 183702 station_ip 37.27.36.152 183702 port 252 183702 unique_id port 183702 remote_ip 10.8.0.70 183707 username mosi 183707 mac 183707 bytes_out 172283 183707 bytes_in 338425 183707 station_ip 37.137.13.161 183707 port 261 183707 unique_id port 183707 remote_ip 10.8.0.142 183708 username saeed9658 183708 mac 183708 bytes_out 0 183708 bytes_in 0 183708 station_ip 5.119.244.120 183708 port 252 183708 unique_id port 183708 remote_ip 10.8.0.162 183710 username aminvpn 183710 mac 183710 bytes_out 0 183710 bytes_in 0 183710 station_ip 5.120.46.50 183710 port 218 183710 unique_id port 183711 username ayobi 183711 kill_reason Another user logged on this global unique id 183711 mac 183711 bytes_out 0 183711 bytes_in 0 183711 station_ip 37.27.33.156 183711 port 260 183711 unique_id port 183713 username khademi 183713 kill_reason Another user logged on this global unique id 183713 mac 183713 bytes_out 0 183713 bytes_in 0 183713 station_ip 83.123.54.146 183713 port 240 183713 unique_id port 183718 username saeeddamghani 183718 mac 183718 bytes_out 3642930 183718 bytes_in 23219320 183718 station_ip 5.119.239.219 183718 port 234 183718 unique_id port 183718 remote_ip 10.8.0.122 183723 username jafari 183723 kill_reason Another user logged on this global unique id 183723 mac 183723 bytes_out 0 183723 bytes_in 0 183723 station_ip 94.24.81.17 183723 port 259 183723 unique_id port 183723 remote_ip 10.8.0.86 183724 username saeed9658 183724 mac 183724 bytes_out 0 183724 bytes_in 0 183724 station_ip 5.119.244.120 183724 port 236 183724 unique_id port 183724 remote_ip 10.8.0.162 183725 username saeed9658 183725 mac 183725 bytes_out 0 183725 bytes_in 0 183725 station_ip 5.119.244.120 183725 port 236 183725 unique_id port 183725 remote_ip 10.8.0.162 183730 username saeed9658 183730 mac 183730 bytes_out 0 183730 bytes_in 0 183730 station_ip 5.119.244.120 183730 port 229 183730 unique_id port 183730 remote_ip 10.8.0.162 183735 username jafari 183735 mac 183735 bytes_out 0 183735 bytes_in 0 183735 station_ip 94.24.81.17 183735 port 259 183735 unique_id port 183738 username farhad3 183738 kill_reason Another user logged on this global unique id 183738 mac 183738 bytes_out 0 183738 bytes_in 0 183738 station_ip 5.119.239.142 183738 port 239 183738 unique_id port 183738 remote_ip 10.8.0.222 183740 username saeed9658 183740 mac 183740 bytes_out 0 183740 bytes_in 0 183740 station_ip 5.119.244.120 183740 port 259 183740 unique_id port 183740 remote_ip 10.8.0.162 183744 username saeed9658 183744 mac 183744 bytes_out 1904 183744 bytes_in 4157 183744 station_ip 5.119.244.120 183744 port 233 183744 unique_id port 183744 remote_ip 10.8.0.162 183745 username saeed9658 183745 mac 183745 bytes_out 0 183745 bytes_in 0 183745 station_ip 5.119.244.120 183745 port 233 183745 unique_id port 183745 remote_ip 10.8.0.162 183751 username fezealinaghi 183751 mac 183751 bytes_out 2058381 183751 bytes_in 23440268 183751 station_ip 83.123.67.45 183751 port 261 183751 unique_id port 183751 remote_ip 10.8.0.202 183755 username saeed9658 183755 mac 183755 bytes_out 413951 183755 bytes_in 3028520 183755 station_ip 5.119.244.120 183755 port 233 183755 unique_id port 183755 remote_ip 10.8.0.162 183757 username saeeddamghani 183757 mac 183720 unique_id port 183720 remote_ip 10.8.0.154 183722 username mostafa_es78 183722 kill_reason Another user logged on this global unique id 183722 mac 183722 bytes_out 0 183722 bytes_in 0 183722 station_ip 83.122.41.56 183722 port 246 183722 unique_id port 183722 remote_ip 10.8.0.34 183726 username mosi 183726 mac 183726 bytes_out 1687982 183726 bytes_in 9268869 183726 station_ip 151.235.78.193 183726 port 261 183726 unique_id port 183726 remote_ip 10.8.0.142 183731 username saeed9658 183731 mac 183731 bytes_out 0 183731 bytes_in 0 183731 station_ip 5.119.244.120 183731 port 229 183731 unique_id port 183731 remote_ip 10.8.0.162 183733 username saeed9658 183733 kill_reason Maximum check online fails reached 183733 mac 183733 bytes_out 0 183733 bytes_in 0 183733 station_ip 5.119.244.120 183733 port 260 183733 unique_id port 183736 username mostafa_es78 183736 kill_reason Another user logged on this global unique id 183736 mac 183736 bytes_out 0 183736 bytes_in 0 183736 station_ip 83.122.41.56 183736 port 246 183736 unique_id port 183737 username saeed9658 183737 mac 183737 bytes_out 0 183737 bytes_in 0 183737 station_ip 5.119.244.120 183737 port 259 183737 unique_id port 183737 remote_ip 10.8.0.162 183741 username milan 183741 kill_reason Another user logged on this global unique id 183741 mac 183741 bytes_out 0 183741 bytes_in 0 183741 station_ip 5.119.97.240 183741 port 233 183741 unique_id port 183742 username milan 183742 mac 183742 bytes_out 0 183742 bytes_in 0 183742 station_ip 5.119.97.240 183742 port 233 183742 unique_id port 183743 username saeed9658 183743 mac 183743 bytes_out 0 183743 bytes_in 0 183743 station_ip 5.119.244.120 183743 port 233 183743 unique_id port 183743 remote_ip 10.8.0.162 183748 username mehdizare 183748 kill_reason Another user logged on this global unique id 183748 mac 183748 bytes_out 0 183748 bytes_in 0 183748 station_ip 83.123.95.193 183748 port 251 183748 unique_id port 183748 remote_ip 10.8.0.210 183749 username saeed9658 183749 mac 183749 bytes_out 0 183749 bytes_in 0 183749 station_ip 5.119.244.120 183749 port 233 183749 unique_id port 183749 remote_ip 10.8.0.162 183750 username saeeddamghani 183750 mac 183750 bytes_out 1674052 183750 bytes_in 1483033 183750 station_ip 5.119.239.219 183750 port 234 183750 unique_id port 183750 remote_ip 10.8.0.122 183752 username farhad3 183752 mac 183752 bytes_out 0 183752 bytes_in 0 183752 station_ip 5.119.239.142 183752 port 239 183752 unique_id port 183754 username mehdizare 183754 kill_reason Another user logged on this global unique id 183754 mac 183754 bytes_out 0 183754 bytes_in 0 183754 station_ip 83.123.95.193 183754 port 251 183754 unique_id port 183756 username saeeddamghani 183756 mac 183756 bytes_out 249755 183756 bytes_in 1264445 183756 station_ip 31.56.91.203 183756 port 239 183756 unique_id port 183756 remote_ip 10.8.0.122 183759 username hajghani 183759 kill_reason Another user logged on this global unique id 183759 mac 183759 bytes_out 0 183759 bytes_in 0 183759 station_ip 89.34.58.220 183759 port 233 183759 unique_id port 183759 remote_ip 10.8.0.106 183760 username aminvpn 183760 unique_id port 183760 terminate_cause User-Request 183760 bytes_out 3176369 183760 bytes_in 38421635 183760 station_ip 5.120.153.162 183760 port 15728960 183760 nas_port_type Virtual 183760 remote_ip 5.5.5.163 183761 username alikomsari 183761 mac 183761 bytes_out 0 183761 bytes_in 0 183761 station_ip 5.119.138.121 183761 port 249 183761 unique_id port 183763 username mehdizare 183763 mac 183734 username saeed9658 183734 kill_reason Maximum check online fails reached 183734 mac 183734 bytes_out 0 183734 bytes_in 0 183734 station_ip 5.119.244.120 183734 port 229 183734 unique_id port 183739 username mostafa_es78 183739 mac 183739 bytes_out 0 183739 bytes_in 0 183739 station_ip 83.122.41.56 183739 port 246 183739 unique_id port 183746 username aminvpn 183746 mac 183746 bytes_out 0 183746 bytes_in 0 183746 station_ip 46.100.217.46 183746 port 233 183746 unique_id port 183746 remote_ip 10.8.0.58 183747 username aminvpn 183747 mac 183747 bytes_out 0 183747 bytes_in 0 183747 station_ip 46.100.217.46 183747 port 233 183747 unique_id port 183747 remote_ip 10.8.0.58 183753 username saeeddamghani 183753 mac 183753 bytes_out 343155 183753 bytes_in 2080495 183753 station_ip 31.56.91.203 183753 port 234 183753 unique_id port 183753 remote_ip 10.8.0.122 183762 username hajghani 183762 mac 183762 bytes_out 0 183762 bytes_in 0 183762 station_ip 89.34.58.220 183762 port 233 183762 unique_id port 183765 username naeimeh 183765 kill_reason Another user logged on this global unique id 183765 mac 183765 bytes_out 0 183765 bytes_in 0 183765 station_ip 83.123.79.253 183765 port 239 183765 unique_id port 183765 remote_ip 10.8.0.78 183766 username naeimeh 183766 mac 183766 bytes_out 0 183766 bytes_in 0 183766 station_ip 83.123.79.253 183766 port 239 183766 unique_id port 183769 username farhad3 183769 kill_reason Another user logged on this global unique id 183769 mac 183769 bytes_out 0 183769 bytes_in 0 183769 station_ip 5.119.239.142 183769 port 234 183769 unique_id port 183771 username soleymani5056 183771 mac 183771 bytes_out 75738 183771 bytes_in 108060 183771 station_ip 5.120.113.25 183771 port 239 183771 unique_id port 183771 remote_ip 10.8.0.226 183773 username pourshad 183773 mac 183773 bytes_out 0 183773 bytes_in 0 183773 station_ip 5.120.103.150 183773 port 242 183773 unique_id port 183775 username pourshad 183775 mac 183775 bytes_out 23838 183775 bytes_in 16086 183775 station_ip 5.120.103.150 183775 port 233 183775 unique_id port 183775 remote_ip 10.8.0.42 183777 username farhad3 183777 mac 183777 bytes_out 0 183777 bytes_in 0 183777 station_ip 5.119.239.142 183777 port 234 183777 unique_id port 183778 username aminvpn 183778 mac 183778 bytes_out 0 183778 bytes_in 0 183778 station_ip 46.100.217.46 183778 port 236 183778 unique_id port 183778 remote_ip 10.8.0.58 183781 username farhad3 183781 kill_reason Another user logged on this global unique id 183781 mac 183781 bytes_out 0 183781 bytes_in 0 183781 station_ip 5.119.239.142 183781 port 234 183781 unique_id port 183789 username farhad3 183789 mac 183789 bytes_out 0 183789 bytes_in 0 183789 station_ip 5.119.239.142 183789 port 234 183789 unique_id port 183791 username mosi 183791 kill_reason Another user logged on this global unique id 183791 mac 183791 bytes_out 0 183791 bytes_in 0 183791 station_ip 151.235.78.193 183791 port 239 183791 unique_id port 183791 remote_ip 10.8.0.142 183802 username pourshad 183802 mac 183802 bytes_out 61539 183802 bytes_in 47536 183802 station_ip 5.120.103.150 183802 port 233 183802 unique_id port 183802 remote_ip 10.8.0.42 183803 username mosi 183803 kill_reason Another user logged on this global unique id 183803 mac 183803 bytes_out 0 183803 bytes_in 0 183803 station_ip 151.235.78.193 183803 port 239 183803 unique_id port 183804 username aminvpn 183804 mac 183804 bytes_out 0 183804 bytes_in 0 183757 bytes_out 0 183757 bytes_in 0 183757 station_ip 31.56.91.203 183757 port 239 183757 unique_id port 183757 remote_ip 10.8.0.122 183758 username farhad3 183758 kill_reason Another user logged on this global unique id 183758 mac 183758 bytes_out 0 183758 bytes_in 0 183758 station_ip 5.119.239.142 183758 port 234 183758 unique_id port 183758 remote_ip 10.8.0.222 183764 username sobhan 183764 unique_id port 183764 terminate_cause Lost-Carrier 183764 bytes_out 215975 183764 bytes_in 766805 183764 station_ip 5.120.186.209 183764 port 15728959 183764 nas_port_type Virtual 183764 remote_ip 5.5.5.165 183767 username arash 183767 mac 183767 bytes_out 91170 183767 bytes_in 307000 183767 station_ip 37.27.36.152 183767 port 233 183767 unique_id port 183767 remote_ip 10.8.0.70 183772 username naeimeh 183772 mac 183772 bytes_out 1906809 183772 bytes_in 26636174 183772 station_ip 83.123.13.187 183772 port 249 183772 unique_id port 183772 remote_ip 10.8.0.78 183776 username alikomsari 183776 mac 183776 bytes_out 1833201 183776 bytes_in 9993916 183776 station_ip 5.119.138.121 183776 port 246 183776 unique_id port 183776 remote_ip 10.8.0.214 183779 username farhad3 183779 kill_reason Another user logged on this global unique id 183779 mac 183779 bytes_out 0 183779 bytes_in 0 183779 station_ip 5.119.239.142 183779 port 234 183779 unique_id port 183779 remote_ip 10.8.0.222 183780 username houshang 183780 mac 183780 bytes_out 1315691 183780 bytes_in 15496008 183780 station_ip 5.119.125.186 183780 port 233 183780 unique_id port 183780 remote_ip 10.8.0.82 183782 username aminvpn 183782 mac 183782 bytes_out 0 183782 bytes_in 0 183782 station_ip 46.100.217.46 183782 port 233 183782 unique_id port 183782 remote_ip 10.8.0.58 183785 username mansour 183785 mac 183785 bytes_out 1657751 183785 bytes_in 23810249 183785 station_ip 5.202.97.228 183785 port 236 183785 unique_id port 183785 remote_ip 10.8.0.206 183787 username pourshad 183787 mac 183787 bytes_out 3517416 183787 bytes_in 46526241 183787 station_ip 5.120.103.150 183787 port 233 183787 unique_id port 183787 remote_ip 10.8.0.42 183793 username farhad3 183793 mac 183793 bytes_out 0 183793 bytes_in 0 183793 station_ip 5.119.239.142 183793 port 233 183793 unique_id port 183793 remote_ip 10.8.0.222 183794 username pourshad 183794 mac 183794 bytes_out 6947 183794 bytes_in 9589 183794 station_ip 5.120.103.150 183794 port 234 183794 unique_id port 183794 remote_ip 10.8.0.42 183795 username aminvpn 183795 mac 183795 bytes_out 0 183795 bytes_in 0 183795 station_ip 46.100.217.46 183795 port 234 183795 unique_id port 183795 remote_ip 10.8.0.58 183805 username mosi 183805 kill_reason Another user logged on this global unique id 183805 mac 183805 bytes_out 0 183805 bytes_in 0 183805 station_ip 151.235.78.193 183805 port 239 183805 unique_id port 183807 username mosi 183807 kill_reason Another user logged on this global unique id 183807 mac 183807 bytes_out 0 183807 bytes_in 0 183807 station_ip 151.235.78.193 183807 port 239 183807 unique_id port 183809 username aminvpn 183809 mac 183809 bytes_out 0 183809 bytes_in 0 183809 station_ip 46.100.217.46 183809 port 236 183809 unique_id port 183809 remote_ip 10.8.0.58 183812 station_ip 46.100.217.46 183812 port 236 183812 unique_id port 183812 remote_ip 10.8.0.58 183813 username mosi 183813 mac 183813 bytes_out 0 183813 bytes_in 0 183813 station_ip 151.235.78.193 183813 port 239 183813 unique_id port 183816 username aminvpn 183816 mac 183816 bytes_out 0 183763 bytes_out 0 183763 bytes_in 0 183763 station_ip 83.123.95.193 183763 port 251 183763 unique_id port 183768 username aminvpn 183768 mac 183768 bytes_out 115195 183768 bytes_in 1169204 183768 station_ip 46.100.217.46 183768 port 233 183768 unique_id port 183768 remote_ip 10.8.0.58 183770 username mosi 183770 mac 183770 bytes_out 8164242 183770 bytes_in 39379579 183770 station_ip 151.235.78.193 183770 port 236 183770 unique_id port 183770 remote_ip 10.8.0.142 183774 username aminvpn 183774 mac 183774 bytes_out 0 183774 bytes_in 0 183774 station_ip 46.100.217.46 183774 port 236 183774 unique_id port 183774 remote_ip 10.8.0.58 183783 username aminvpn 183783 mac 183783 bytes_out 0 183783 bytes_in 0 183783 station_ip 46.100.217.46 183783 port 236 183783 unique_id port 183783 remote_ip 10.8.0.58 183784 username aminvpn 183784 mac 183784 bytes_out 0 183784 bytes_in 0 183784 station_ip 46.100.217.46 183784 port 239 183784 unique_id port 183784 remote_ip 10.8.0.58 183786 username farhad3 183786 kill_reason Another user logged on this global unique id 183786 mac 183786 bytes_out 0 183786 bytes_in 0 183786 station_ip 5.119.239.142 183786 port 234 183786 unique_id port 183788 username aminvpn 183788 mac 183788 bytes_out 0 183788 bytes_in 0 183788 station_ip 46.100.217.46 183788 port 233 183788 unique_id port 183788 remote_ip 10.8.0.58 183790 username farhad3 183790 mac 183790 bytes_out 165788 183790 bytes_in 608856 183790 station_ip 5.119.239.142 183790 port 233 183790 unique_id port 183790 remote_ip 10.8.0.222 183792 username farhad3 183792 mac 183792 bytes_out 197398 183792 bytes_in 376081 183792 station_ip 5.119.239.142 183792 port 233 183792 unique_id port 183792 remote_ip 10.8.0.222 183796 username farhad3 183796 mac 183796 bytes_out 1771496 183796 bytes_in 10930360 183796 station_ip 5.119.239.142 183796 port 233 183796 unique_id port 183796 remote_ip 10.8.0.222 183797 username mosi 183797 kill_reason Another user logged on this global unique id 183797 mac 183797 bytes_out 0 183797 bytes_in 0 183797 station_ip 151.235.78.193 183797 port 239 183797 unique_id port 183798 username aminvpn 183798 mac 183798 bytes_out 0 183798 bytes_in 0 183798 station_ip 46.100.217.46 183798 port 234 183798 unique_id port 183798 remote_ip 10.8.0.58 183799 username sabaghnezhad 183799 mac 183799 bytes_out 488552 183799 bytes_in 969229 183799 station_ip 83.123.101.155 183799 port 241 183799 unique_id port 183799 remote_ip 10.8.0.66 183800 username mosi 183800 kill_reason Another user logged on this global unique id 183800 mac 183800 bytes_out 0 183800 bytes_in 0 183800 station_ip 151.235.78.193 183800 port 239 183800 unique_id port 183801 username aminvpn 183801 mac 183801 bytes_out 0 183801 bytes_in 0 183801 station_ip 46.100.217.46 183801 port 236 183801 unique_id port 183801 remote_ip 10.8.0.58 183806 username aminvpn 183806 mac 183806 bytes_out 0 183806 bytes_in 0 183806 station_ip 46.100.217.46 183806 port 236 183806 unique_id port 183806 remote_ip 10.8.0.58 183808 username aminvpn 183808 mac 183808 bytes_out 0 183808 bytes_in 0 183808 station_ip 46.100.217.46 183808 port 236 183808 unique_id port 183808 remote_ip 10.8.0.58 183810 username aminvpn 183810 mac 183810 bytes_out 1644 183810 bytes_in 4983 183810 station_ip 46.100.217.46 183810 port 236 183810 unique_id port 183810 remote_ip 10.8.0.58 183812 username aminvpn 183812 mac 183812 bytes_out 0 183812 bytes_in 0 183804 station_ip 46.100.217.46 183804 port 236 183804 unique_id port 183804 remote_ip 10.8.0.58 183811 username mosi 183811 kill_reason Another user logged on this global unique id 183811 mac 183811 bytes_out 0 183811 bytes_in 0 183811 station_ip 151.235.78.193 183811 port 239 183811 unique_id port 183814 username mosi 183814 mac 183814 bytes_out 0 183814 bytes_in 0 183814 station_ip 92.114.78.231 183814 port 236 183814 unique_id port 183814 remote_ip 10.8.0.142 183815 username mosi 183815 kill_reason Another user logged on this global unique id 183815 mac 183815 bytes_out 0 183815 bytes_in 0 183815 station_ip 151.235.78.193 183815 port 239 183815 unique_id port 183815 remote_ip 10.8.0.142 183816 bytes_in 0 183816 station_ip 46.100.217.46 183816 port 236 183816 unique_id port 183816 remote_ip 10.8.0.58 183817 username mosi 183817 kill_reason Another user logged on this global unique id 183817 mac 183817 bytes_out 0 183817 bytes_in 0 183817 station_ip 151.235.78.193 183817 port 239 183817 unique_id port 183818 username aminvpn 183818 mac 183818 bytes_out 0 183818 bytes_in 0 183818 station_ip 46.100.217.46 183818 port 236 183818 unique_id port 183818 remote_ip 10.8.0.58 183819 username aminvpn 183819 mac 183819 bytes_out 0 183819 bytes_in 0 183819 station_ip 46.100.217.46 183819 port 236 183819 unique_id port 183819 remote_ip 10.8.0.58 183820 username aminvpn 183820 mac 183820 bytes_out 0 183820 bytes_in 0 183820 station_ip 46.100.217.46 183820 port 236 183820 unique_id port 183820 remote_ip 10.8.0.58 183821 username aminvpn 183821 mac 183821 bytes_out 0 183821 bytes_in 0 183821 station_ip 46.100.217.46 183821 port 236 183821 unique_id port 183821 remote_ip 10.8.0.58 183822 username aminvpn 183822 mac 183822 bytes_out 0 183822 bytes_in 0 183822 station_ip 46.100.217.46 183822 port 236 183822 unique_id port 183822 remote_ip 10.8.0.58 183823 username aminvpn 183823 mac 183823 bytes_out 0 183823 bytes_in 0 183823 station_ip 46.100.217.46 183823 port 236 183823 unique_id port 183823 remote_ip 10.8.0.58 183824 username aminvpn 183824 mac 183824 bytes_out 0 183824 bytes_in 0 183824 station_ip 46.100.217.46 183824 port 236 183824 unique_id port 183824 remote_ip 10.8.0.58 183825 username aminvpn 183825 mac 183825 bytes_out 0 183825 bytes_in 0 183825 station_ip 46.100.217.46 183825 port 241 183825 unique_id port 183825 remote_ip 10.8.0.58 183826 username mohammadjavad 183826 mac 183826 bytes_out 275823 183826 bytes_in 980863 183826 station_ip 83.123.21.242 183826 port 236 183826 unique_id port 183826 remote_ip 10.8.0.110 183827 username alipour1506 183827 kill_reason Another user logged on this global unique id 183827 mac 183827 bytes_out 0 183827 bytes_in 0 183827 station_ip 78.39.25.121 183827 port 255 183827 unique_id port 183827 remote_ip 10.8.0.126 183828 username hosseine 183828 mac 183828 bytes_out 0 183828 bytes_in 0 183828 station_ip 83.123.113.207 183828 port 248 183828 unique_id port 183829 username aminvpn 183829 mac 183829 bytes_out 0 183829 bytes_in 0 183829 station_ip 46.100.217.46 183829 port 236 183829 unique_id port 183829 remote_ip 10.8.0.58 183830 username mohammadjavad 183830 mac 183830 bytes_out 18905 183830 bytes_in 28394 183830 station_ip 83.123.21.242 183830 port 236 183830 unique_id port 183830 remote_ip 10.8.0.110 183831 username aminvpn 183831 mac 183831 bytes_out 0 183831 bytes_in 0 183831 station_ip 46.100.217.46 183831 port 236 183831 unique_id port 183831 remote_ip 10.8.0.58 183833 username mosi 183833 mac 183833 bytes_out 0 183833 bytes_in 0 183833 station_ip 151.235.78.193 183833 port 239 183833 unique_id port 183837 username sedighe 183837 mac 183837 bytes_out 13333 183837 bytes_in 28093 183837 station_ip 83.123.76.165 183837 port 236 183837 unique_id port 183837 remote_ip 10.8.0.46 183840 username aminvpn 183840 mac 183840 bytes_out 1644 183840 bytes_in 4617 183840 station_ip 46.100.217.46 183840 port 236 183840 unique_id port 183840 remote_ip 10.8.0.58 183841 username kalantary6037 183841 mac 183841 bytes_out 0 183841 bytes_in 0 183841 station_ip 83.123.22.235 183841 port 241 183841 unique_id port 183845 username aminvpn 183845 mac 183845 bytes_out 0 183845 bytes_in 0 183845 station_ip 46.100.217.46 183845 port 241 183845 unique_id port 183845 remote_ip 10.8.0.58 183846 username aminvpn 183846 mac 183846 bytes_out 0 183846 bytes_in 0 183846 station_ip 46.100.217.46 183846 port 241 183846 unique_id port 183846 remote_ip 10.8.0.58 183848 username mohammadjavad 183848 mac 183848 bytes_out 446688 183848 bytes_in 7156946 183848 station_ip 83.123.21.242 183848 port 236 183848 unique_id port 183848 remote_ip 10.8.0.110 183849 username sedighe 183849 mac 183849 bytes_out 52950 183849 bytes_in 81597 183849 station_ip 83.123.14.69 183849 port 239 183849 unique_id port 183849 remote_ip 10.8.0.46 183850 username aminvpn 183850 mac 183850 bytes_out 0 183850 bytes_in 0 183850 station_ip 46.100.217.46 183850 port 236 183850 unique_id port 183850 remote_ip 10.8.0.58 183855 username aminvpn 183855 mac 183855 bytes_out 0 183855 bytes_in 0 183855 station_ip 46.100.217.46 183855 port 246 183855 unique_id port 183855 remote_ip 10.8.0.58 183857 username aminvpn 183857 mac 183857 bytes_out 0 183857 bytes_in 0 183857 station_ip 46.100.217.46 183857 port 246 183857 unique_id port 183857 remote_ip 10.8.0.58 183860 username yaghobi 183860 mac 183860 bytes_out 0 183860 bytes_in 0 183860 station_ip 83.123.20.82 183860 port 248 183860 unique_id port 183860 remote_ip 10.8.0.138 183862 username sekonji0496 183862 mac 183862 bytes_out 0 183862 bytes_in 0 183862 station_ip 83.123.55.141 183862 port 246 183862 unique_id port 183862 remote_ip 10.8.0.62 183866 username pourshad 183866 kill_reason Another user logged on this global unique id 183866 mac 183866 bytes_out 0 183866 bytes_in 0 183866 station_ip 5.120.103.150 183866 port 233 183866 unique_id port 183869 username sekonji0496 183869 mac 183869 bytes_out 0 183869 bytes_in 0 183869 station_ip 83.123.55.141 183869 port 249 183869 unique_id port 183869 remote_ip 10.8.0.62 183870 username pourshad 183870 kill_reason Another user logged on this global unique id 183870 mac 183870 bytes_out 0 183870 bytes_in 0 183870 station_ip 5.120.103.150 183870 port 233 183870 unique_id port 183875 username sekonji0496 183875 mac 183875 bytes_out 0 183875 bytes_in 0 183875 station_ip 83.123.55.141 183875 port 248 183875 unique_id port 183875 remote_ip 10.8.0.62 183877 username sekonji0496 183877 mac 183877 bytes_out 0 183877 bytes_in 0 183877 station_ip 83.123.55.141 183877 port 248 183877 unique_id port 183877 remote_ip 10.8.0.62 183881 username barzegar 183881 mac 183881 bytes_out 4645 183881 bytes_in 6591 183881 station_ip 5.120.35.27 183881 port 234 183881 unique_id port 183881 remote_ip 10.8.0.10 183882 username alipour1506 183882 mac 183882 bytes_out 1335797 183832 username aminvpn 183832 mac 183832 bytes_out 0 183832 bytes_in 0 183832 station_ip 46.100.217.46 183832 port 242 183832 unique_id port 183832 remote_ip 10.8.0.58 183834 username sedighe 183834 mac 183834 bytes_out 196141 183834 bytes_in 1449382 183834 station_ip 83.123.122.253 183834 port 241 183834 unique_id port 183834 remote_ip 10.8.0.46 183835 username kalantary6037 183835 mac 183835 bytes_out 3085922 183835 bytes_in 28223800 183835 station_ip 83.123.22.235 183835 port 236 183835 unique_id port 183835 remote_ip 10.8.0.50 183836 username sedighe 183836 mac 183836 bytes_out 25075 183836 bytes_in 44456 183836 station_ip 83.123.37.150 183836 port 239 183836 unique_id port 183836 remote_ip 10.8.0.46 183838 username aminvpn 183838 mac 183838 bytes_out 0 183838 bytes_in 0 183838 station_ip 46.100.217.46 183838 port 236 183838 unique_id port 183838 remote_ip 10.8.0.58 183843 username kalantary6037 183843 kill_reason Another user logged on this global unique id 183843 mac 183843 bytes_out 0 183843 bytes_in 0 183843 station_ip 83.123.22.235 183843 port 236 183843 unique_id port 183843 remote_ip 10.8.0.50 183844 username mohammadjavad 183844 mac 183844 bytes_out 256665 183844 bytes_in 3638883 183844 station_ip 83.123.21.242 183844 port 241 183844 unique_id port 183844 remote_ip 10.8.0.110 183851 username alipour1506 183851 mac 183851 bytes_out 0 183851 bytes_in 0 183851 station_ip 78.39.25.121 183851 port 255 183851 unique_id port 183852 username mohammadjavad 183852 mac 183852 bytes_out 0 183852 bytes_in 0 183852 station_ip 83.123.21.242 183852 port 239 183852 unique_id port 183852 remote_ip 10.8.0.110 183853 username sekonji0496 183853 mac 183853 bytes_out 114497 183853 bytes_in 1484080 183853 station_ip 83.123.55.141 183853 port 236 183853 unique_id port 183853 remote_ip 10.8.0.62 183854 username pourshad 183854 kill_reason Another user logged on this global unique id 183854 mac 183854 bytes_out 0 183854 bytes_in 0 183854 station_ip 5.120.103.150 183854 port 233 183854 unique_id port 183854 remote_ip 10.8.0.42 183856 username sekonji0496 183856 mac 183856 bytes_out 3589 183856 bytes_in 5373 183856 station_ip 83.123.55.141 183856 port 236 183856 unique_id port 183856 remote_ip 10.8.0.62 183858 username sekonji0496 183858 mac 183858 bytes_out 0 183858 bytes_in 0 183858 station_ip 83.123.55.141 183858 port 246 183858 unique_id port 183858 remote_ip 10.8.0.62 183863 username kalantary6037 183863 mac 183863 bytes_out 1329908 183863 bytes_in 14493023 183863 station_ip 83.123.7.235 183863 port 236 183863 unique_id port 183863 remote_ip 10.8.0.50 183867 username sekonji0496 183867 mac 183867 bytes_out 0 183867 bytes_in 0 183867 station_ip 83.123.55.141 183867 port 251 183867 unique_id port 183867 remote_ip 10.8.0.62 183868 username yaghobi 183868 mac 183868 bytes_out 1194496 183868 bytes_in 6131206 183868 station_ip 83.123.20.82 183868 port 249 183868 unique_id port 183868 remote_ip 10.8.0.138 183871 username barzegar 183871 mac 183871 bytes_out 2738549 183871 bytes_in 42370756 183871 station_ip 5.120.35.27 183871 port 248 183871 unique_id port 183871 remote_ip 10.8.0.10 183872 username sekonji0496 183872 mac 183872 bytes_out 0 183872 bytes_in 0 183872 station_ip 83.123.55.141 183872 port 248 183872 unique_id port 183872 remote_ip 10.8.0.62 183874 username aminvpn 183874 mac 183874 bytes_out 0 183874 bytes_in 0 183874 station_ip 46.100.217.46 183874 port 248 183874 unique_id port 183839 username kalantary6037 183839 kill_reason Another user logged on this global unique id 183839 mac 183839 bytes_out 0 183839 bytes_in 0 183839 station_ip 83.123.22.235 183839 port 241 183839 unique_id port 183839 remote_ip 10.8.0.50 183842 username sedighe 183842 mac 183842 bytes_out 322037 183842 bytes_in 373585 183842 station_ip 83.123.14.69 183842 port 239 183842 unique_id port 183842 remote_ip 10.8.0.46 183847 username kalantary6037 183847 mac 183847 bytes_out 0 183847 bytes_in 0 183847 station_ip 83.123.22.235 183847 port 236 183847 unique_id port 183859 username pourshad 183859 kill_reason Another user logged on this global unique id 183859 mac 183859 bytes_out 0 183859 bytes_in 0 183859 station_ip 5.120.103.150 183859 port 233 183859 unique_id port 183861 username sekonji0496 183861 mac 183861 bytes_out 2464 183861 bytes_in 4346 183861 station_ip 83.123.55.141 183861 port 246 183861 unique_id port 183861 remote_ip 10.8.0.62 183864 username sekonji0496 183864 mac 183864 bytes_out 0 183864 bytes_in 0 183864 station_ip 83.123.55.141 183864 port 246 183864 unique_id port 183864 remote_ip 10.8.0.62 183865 username aminvpn 183865 mac 183865 bytes_out 0 183865 bytes_in 0 183865 station_ip 46.100.217.46 183865 port 246 183865 unique_id port 183865 remote_ip 10.8.0.58 183873 username aminvpn 183873 mac 183873 bytes_out 0 183873 bytes_in 0 183873 station_ip 46.100.217.46 183873 port 248 183873 unique_id port 183873 remote_ip 10.8.0.58 183878 username barzegar 183878 mac 183878 bytes_out 3434 183878 bytes_in 4900 183878 station_ip 5.120.35.27 183878 port 234 183878 unique_id port 183878 remote_ip 10.8.0.10 183880 username sedighe 183880 mac 183880 bytes_out 201673 183880 bytes_in 448841 183880 station_ip 83.123.111.181 183880 port 249 183880 unique_id port 183880 remote_ip 10.8.0.46 183888 username alikomsari 183888 kill_reason Maximum number of concurrent logins reached 183888 mac 183888 bytes_out 0 183888 bytes_in 0 183888 station_ip 5.119.138.121 183888 port 241 183888 unique_id port 183891 username mohammadjavad 183891 mac 183891 bytes_out 1338460 183891 bytes_in 17239555 183891 station_ip 83.123.28.59 183891 port 246 183891 unique_id port 183891 remote_ip 10.8.0.110 183898 username meysam 183898 mac 183898 bytes_out 3604372 183898 bytes_in 46832112 183898 station_ip 188.158.50.93 183898 port 241 183898 unique_id port 183898 remote_ip 10.8.0.158 183900 username dortaj3792 183900 mac 183900 bytes_out 127368 183900 bytes_in 120580 183900 station_ip 5.120.3.131 183900 port 246 183900 unique_id port 183900 remote_ip 10.8.0.102 183901 username sedighe 183901 mac 183901 bytes_out 233356 183901 bytes_in 289619 183901 station_ip 83.123.52.40 183901 port 234 183901 unique_id port 183901 remote_ip 10.8.0.46 183904 username yaghobi 183904 mac 183904 bytes_out 789959 183904 bytes_in 17660995 183904 station_ip 83.123.101.243 183904 port 241 183904 unique_id port 183904 remote_ip 10.8.0.138 183905 username sedighe 183905 mac 183905 bytes_out 52323 183905 bytes_in 69223 183905 station_ip 83.123.52.40 183905 port 249 183905 unique_id port 183905 remote_ip 10.8.0.46 183906 username farhad3 183906 mac 183906 bytes_out 646347 183906 bytes_in 1654551 183906 station_ip 5.119.239.142 183906 port 251 183906 unique_id port 183906 remote_ip 10.8.0.222 183915 username shadkam 183915 mac 183915 bytes_out 0 183915 bytes_in 0 183915 station_ip 5.202.1.85 183915 port 249 183915 unique_id port 183915 remote_ip 10.8.0.74 183874 remote_ip 10.8.0.58 183876 username sabaghnezhad 183876 mac 183876 bytes_out 2696435 183876 bytes_in 18688326 183876 station_ip 83.123.101.155 183876 port 234 183876 unique_id port 183876 remote_ip 10.8.0.66 183879 username sekonji0496 183879 mac 183879 bytes_out 0 183879 bytes_in 0 183879 station_ip 83.123.55.141 183879 port 248 183879 unique_id port 183879 remote_ip 10.8.0.62 183886 username sekonji0496 183886 mac 183886 bytes_out 0 183886 bytes_in 0 183886 station_ip 83.123.55.141 183886 port 246 183886 unique_id port 183886 remote_ip 10.8.0.62 183887 username dortaj3792 183887 mac 183887 bytes_out 2259988 183887 bytes_in 11325204 183887 station_ip 5.120.3.131 183887 port 241 183887 unique_id port 183887 remote_ip 10.8.0.102 183889 username alikomsari 183889 mac 183889 bytes_out 5164243 183889 bytes_in 32512363 183889 station_ip 5.119.138.121 183889 port 236 183889 unique_id port 183889 remote_ip 10.8.0.214 183892 username shadkam 183892 mac 183892 bytes_out 0 183892 bytes_in 0 183892 station_ip 5.202.1.85 183892 port 241 183892 unique_id port 183892 remote_ip 10.8.0.74 183894 username sobhan 183894 unique_id port 183894 terminate_cause Lost-Carrier 183894 bytes_out 289948 183894 bytes_in 2678933 183894 station_ip 31.56.216.175 183894 port 15728970 183894 nas_port_type Virtual 183894 remote_ip 5.5.5.176 183896 username godarzi 183896 kill_reason Another user logged on this global unique id 183896 mac 183896 bytes_out 0 183896 bytes_in 0 183896 station_ip 5.202.29.254 183896 port 248 183896 unique_id port 183896 remote_ip 10.8.0.38 183897 username barzegar 183897 mac 183897 bytes_out 32061 183897 bytes_in 88078 183897 station_ip 5.120.35.27 183897 port 236 183897 unique_id port 183897 remote_ip 10.8.0.10 183899 username yaghobi 183899 mac 183899 bytes_out 1126926 183899 bytes_in 18583777 183899 station_ip 83.123.101.243 183899 port 249 183899 unique_id port 183899 remote_ip 10.8.0.138 183903 username shadkam 183903 mac 183903 bytes_out 0 183903 bytes_in 0 183903 station_ip 5.202.1.85 183903 port 236 183903 unique_id port 183903 remote_ip 10.8.0.74 183907 username barzegar 183907 mac 183907 bytes_out 0 183907 bytes_in 0 183907 station_ip 5.120.35.27 183907 port 249 183907 unique_id port 183907 remote_ip 10.8.0.10 183909 username barzegar 183909 kill_reason Maximum check online fails reached 183909 mac 183909 bytes_out 0 183909 bytes_in 0 183909 station_ip 5.120.35.27 183909 port 255 183909 unique_id port 183910 username godarzi 183910 kill_reason Another user logged on this global unique id 183910 mac 183910 bytes_out 0 183910 bytes_in 0 183910 station_ip 5.202.29.254 183910 port 248 183910 unique_id port 183911 username houshang 183911 mac 183911 bytes_out 126186 183911 bytes_in 274588 183911 station_ip 5.119.125.186 183911 port 251 183911 unique_id port 183911 remote_ip 10.8.0.82 183913 username barzegar 183913 mac 183913 bytes_out 0 183913 bytes_in 0 183913 station_ip 5.120.35.27 183913 port 236 183913 unique_id port 183913 remote_ip 10.8.0.10 183914 username shadkam 183914 mac 183914 bytes_out 656869 183914 bytes_in 5263904 183914 station_ip 5.202.1.85 183914 port 249 183914 unique_id port 183914 remote_ip 10.8.0.74 183916 username aminvpn 183916 mac 183916 bytes_out 19446 183916 bytes_in 41345 183916 station_ip 46.100.217.46 183916 port 236 183916 unique_id port 183916 remote_ip 10.8.0.58 183920 username barzegar 183920 mac 183920 bytes_out 0 183920 bytes_in 0 183920 station_ip 5.120.35.27 183882 bytes_in 19004412 183882 station_ip 78.39.25.121 183882 port 246 183882 unique_id port 183882 remote_ip 10.8.0.126 183883 username sekonji0496 183883 mac 183883 bytes_out 0 183883 bytes_in 0 183883 station_ip 83.123.55.141 183883 port 246 183883 unique_id port 183883 remote_ip 10.8.0.62 183884 username sekonji0496 183884 mac 183884 bytes_out 0 183884 bytes_in 0 183884 station_ip 83.123.55.141 183884 port 246 183884 unique_id port 183884 remote_ip 10.8.0.62 183885 username barzegar 183885 mac 183885 bytes_out 0 183885 bytes_in 0 183885 station_ip 5.120.35.27 183885 port 246 183885 unique_id port 183885 remote_ip 10.8.0.10 183890 username barzegar 183890 mac 183890 bytes_out 0 183890 bytes_in 0 183890 station_ip 5.120.35.27 183890 port 236 183890 unique_id port 183890 remote_ip 10.8.0.10 183893 username shadkam 183893 mac 183893 bytes_out 0 183893 bytes_in 0 183893 station_ip 5.202.1.85 183893 port 249 183893 unique_id port 183893 remote_ip 10.8.0.74 183895 username shadkam 183895 mac 183895 bytes_out 0 183895 bytes_in 0 183895 station_ip 5.202.1.85 183895 port 249 183895 unique_id port 183895 remote_ip 10.8.0.74 183902 username barzegar 183902 mac 183902 bytes_out 4062 183902 bytes_in 6371 183902 station_ip 5.120.35.27 183902 port 236 183902 unique_id port 183902 remote_ip 10.8.0.10 183908 username sedighe 183908 mac 183908 bytes_out 52829 183908 bytes_in 71022 183908 station_ip 83.123.55.63 183908 port 241 183908 unique_id port 183908 remote_ip 10.8.0.46 183912 username yaghobi 183912 mac 183912 bytes_out 347946 183912 bytes_in 571211 183912 station_ip 83.123.4.51 183912 port 236 183912 unique_id port 183912 remote_ip 10.8.0.138 183918 username farhad3 183918 mac 183918 bytes_out 227830 183918 bytes_in 1366437 183918 station_ip 5.119.239.142 183918 port 249 183918 unique_id port 183918 remote_ip 10.8.0.222 183922 username soleymani5056 183922 mac 183922 bytes_out 14038 183922 bytes_in 53483 183922 station_ip 5.120.105.213 183922 port 262 183922 unique_id port 183922 remote_ip 10.8.0.226 183923 username sedighe 183923 mac 183923 bytes_out 151212 183923 bytes_in 201165 183923 station_ip 83.123.13.17 183923 port 259 183923 unique_id port 183923 remote_ip 10.8.0.46 183929 username meysam 183929 kill_reason Another user logged on this global unique id 183929 mac 183929 bytes_out 0 183929 bytes_in 0 183929 station_ip 188.158.50.93 183929 port 261 183929 unique_id port 183929 remote_ip 10.8.0.158 183931 username barzegar 183931 mac 183931 bytes_out 0 183931 bytes_in 0 183931 station_ip 5.120.35.27 183931 port 236 183931 unique_id port 183931 remote_ip 10.8.0.10 183934 username shadkam 183934 mac 183934 bytes_out 15673 183934 bytes_in 65414 183934 station_ip 83.123.44.60 183934 port 236 183934 unique_id port 183934 remote_ip 10.8.0.74 183935 username esmaeilkazemi 183935 mac 183935 bytes_out 77212 183935 bytes_in 406221 183935 station_ip 83.123.33.157 183935 port 251 183935 unique_id port 183935 remote_ip 10.8.0.26 183936 username rashidi4690 183936 kill_reason Another user logged on this global unique id 183936 mac 183936 bytes_out 0 183936 bytes_in 0 183936 station_ip 5.120.180.164 183936 port 246 183936 unique_id port 183936 remote_ip 10.8.0.242 183942 username sedighe 183942 mac 183942 bytes_out 35874 183942 bytes_in 35870 183942 station_ip 83.123.86.191 183942 port 236 183942 unique_id port 183942 remote_ip 10.8.0.46 183943 username barzegar 183943 mac 183917 username pourshad 183917 mac 183917 bytes_out 0 183917 bytes_in 0 183917 station_ip 5.120.103.150 183917 port 233 183917 unique_id port 183919 username yaghobi 183919 mac 183919 bytes_out 55121 183919 bytes_in 84418 183919 station_ip 83.123.4.51 183919 port 251 183919 unique_id port 183919 remote_ip 10.8.0.138 183925 username barzegar 183925 mac 183925 bytes_out 3742 183925 bytes_in 5358 183925 station_ip 5.120.35.27 183925 port 251 183925 unique_id port 183925 remote_ip 10.8.0.10 183928 username aminvpn 183928 mac 183928 bytes_out 0 183928 bytes_in 0 183928 station_ip 46.100.217.46 183928 port 236 183928 unique_id port 183928 remote_ip 10.8.0.58 183932 username barzegar 183932 mac 183932 bytes_out 0 183932 bytes_in 0 183932 station_ip 5.120.35.27 183932 port 236 183932 unique_id port 183932 remote_ip 10.8.0.10 183938 username aminvpn 183938 mac 183938 bytes_out 392864 183938 bytes_in 1403473 183938 station_ip 5.120.46.50 183938 port 249 183938 unique_id port 183938 remote_ip 10.8.0.58 183944 username aminvpn 183944 mac 183944 bytes_out 57843 183944 bytes_in 84317 183944 station_ip 5.120.46.50 183944 port 259 183944 unique_id port 183944 remote_ip 10.8.0.58 183948 username aminvpn 183948 mac 183948 bytes_out 0 183948 bytes_in 0 183948 station_ip 46.100.217.46 183948 port 246 183948 unique_id port 183948 remote_ip 10.8.0.58 183949 username yaghobi 183949 mac 183949 bytes_out 467711 183949 bytes_in 1973218 183949 station_ip 83.123.80.97 183949 port 236 183949 unique_id port 183949 remote_ip 10.8.0.138 183954 username aminvpn 183954 mac 183954 bytes_out 32582 183954 bytes_in 78814 183954 station_ip 5.120.46.50 183954 port 249 183954 unique_id port 183954 remote_ip 10.8.0.58 183959 username aminvpn 183959 mac 183959 bytes_out 0 183959 bytes_in 0 183959 station_ip 46.100.217.46 183959 port 246 183959 unique_id port 183959 remote_ip 10.8.0.58 183960 username yaghobi 183960 mac 183960 bytes_out 54902 183960 bytes_in 112106 183960 station_ip 83.123.80.97 183960 port 251 183960 unique_id port 183960 remote_ip 10.8.0.138 183967 username aminvpn 183967 mac 183967 bytes_out 0 183967 bytes_in 0 183967 station_ip 46.100.217.46 183967 port 251 183967 unique_id port 183967 remote_ip 10.8.0.58 183975 username yaghobi 183975 mac 183975 bytes_out 515492 183975 bytes_in 846120 183975 station_ip 83.123.110.136 183975 port 259 183975 unique_id port 183975 remote_ip 10.8.0.138 183978 username milan 183978 kill_reason Another user logged on this global unique id 183978 mac 183978 bytes_out 0 183978 bytes_in 0 183978 station_ip 5.119.97.240 183978 port 262 183978 unique_id port 183978 remote_ip 10.8.0.182 183980 username godarzi 183980 kill_reason Another user logged on this global unique id 183980 mac 183980 bytes_out 0 183980 bytes_in 0 183980 station_ip 5.202.29.254 183980 port 248 183980 unique_id port 183988 username aminvpn 183988 mac 183988 bytes_out 0 183988 bytes_in 0 183988 station_ip 46.100.217.46 183988 port 251 183988 unique_id port 183988 remote_ip 10.8.0.58 183990 username soleymani5056 183990 mac 183990 bytes_out 74820 183990 bytes_in 206343 183990 station_ip 5.119.253.144 183990 port 236 183990 unique_id port 183990 remote_ip 10.8.0.226 183998 username kalantary6037 183998 mac 183998 bytes_out 3667474 183998 bytes_in 47314775 183998 station_ip 83.123.74.203 183998 port 249 183998 unique_id port 183998 remote_ip 10.8.0.50 184005 username barzegar 183920 port 262 183920 unique_id port 183920 remote_ip 10.8.0.10 183921 username kalantary6037 183921 mac 183921 bytes_out 336639 183921 bytes_in 2129188 183921 station_ip 83.123.99.43 183921 port 251 183921 unique_id port 183921 remote_ip 10.8.0.50 183924 username shadkam 183924 mac 183924 bytes_out 2309142 183924 bytes_in 24219230 183924 station_ip 5.202.1.85 183924 port 236 183924 unique_id port 183924 remote_ip 10.8.0.74 183926 username naeimeh 183926 mac 183926 bytes_out 80002 183926 bytes_in 674348 183926 station_ip 83.123.68.181 183926 port 259 183926 unique_id port 183926 remote_ip 10.8.0.78 183927 username yaghobi 183927 mac 183927 bytes_out 924940 183927 bytes_in 7937302 183927 station_ip 83.123.31.135 183927 port 249 183927 unique_id port 183927 remote_ip 10.8.0.138 183930 username godarzi 183930 kill_reason Another user logged on this global unique id 183930 mac 183930 bytes_out 0 183930 bytes_in 0 183930 station_ip 5.202.29.254 183930 port 248 183930 unique_id port 183933 username sedighe 183933 mac 183933 bytes_out 66200 183933 bytes_in 97326 183933 station_ip 83.123.86.191 183933 port 262 183933 unique_id port 183933 remote_ip 10.8.0.46 183937 username meysam 183937 mac 183937 bytes_out 0 183937 bytes_in 0 183937 station_ip 188.158.50.93 183937 port 261 183937 unique_id port 183939 username aminvpn 183939 mac 183939 bytes_out 0 183939 bytes_in 0 183939 station_ip 46.100.217.46 183939 port 261 183939 unique_id port 183939 remote_ip 10.8.0.58 183940 username motamedi9772 183940 mac 183940 bytes_out 0 183940 bytes_in 0 183940 station_ip 83.123.108.23 183940 port 259 183940 unique_id port 183940 remote_ip 10.8.0.154 183941 username kalantary6037 183941 mac 183941 bytes_out 415627 183941 bytes_in 2547223 183941 station_ip 83.123.120.87 183941 port 251 183941 unique_id port 183941 remote_ip 10.8.0.50 183946 username rashidi4690 183946 mac 183946 bytes_out 0 183946 bytes_in 0 183946 station_ip 5.120.180.164 183946 port 246 183946 unique_id port 183947 username aminvpn 183947 mac 183947 bytes_out 37608 183947 bytes_in 44497 183947 station_ip 5.120.46.50 183947 port 259 183947 unique_id port 183947 remote_ip 10.8.0.58 183950 username barzegar 183950 mac 183950 bytes_out 489616 183950 bytes_in 3701404 183950 station_ip 5.120.35.27 183950 port 251 183950 unique_id port 183950 remote_ip 10.8.0.10 183951 username yaghobi 183951 mac 183951 bytes_out 21857 183951 bytes_in 46214 183951 station_ip 83.123.80.97 183951 port 246 183951 unique_id port 183951 remote_ip 10.8.0.138 183952 username barzegar 183952 mac 183952 bytes_out 0 183952 bytes_in 0 183952 station_ip 5.120.35.27 183952 port 246 183952 unique_id port 183952 remote_ip 10.8.0.10 183962 username barzegar 183962 mac 183962 bytes_out 0 183962 bytes_in 0 183962 station_ip 5.120.35.27 183962 port 236 183962 unique_id port 183962 remote_ip 10.8.0.10 183964 username naeimeh 183964 mac 183964 bytes_out 0 183964 bytes_in 0 183964 station_ip 83.123.76.251 183964 port 251 183964 unique_id port 183964 remote_ip 10.8.0.78 183966 username aminvpn 183966 mac 183966 bytes_out 277089 183966 bytes_in 642035 183966 station_ip 5.120.46.50 183966 port 249 183966 unique_id port 183966 remote_ip 10.8.0.58 183968 username naeimeh 183968 mac 183968 bytes_out 241527 183968 bytes_in 966408 183968 station_ip 83.123.76.251 183968 port 262 183968 unique_id port 183968 remote_ip 10.8.0.78 183943 bytes_out 0 183943 bytes_in 0 183943 station_ip 5.120.35.27 183943 port 251 183943 unique_id port 183943 remote_ip 10.8.0.10 183945 username esmaeilkazemi 183945 mac 183945 bytes_out 8239 183945 bytes_in 27853 183945 station_ip 83.123.33.157 183945 port 249 183945 unique_id port 183945 remote_ip 10.8.0.26 183953 username meysam 183953 mac 183953 bytes_out 1044061 183953 bytes_in 13058200 183953 station_ip 188.158.50.93 183953 port 236 183953 unique_id port 183953 remote_ip 10.8.0.158 183955 username barzegar 183955 mac 183955 bytes_out 2706 183955 bytes_in 4821 183955 station_ip 5.120.35.27 183955 port 246 183955 unique_id port 183955 remote_ip 10.8.0.10 183956 username barzegar 183956 mac 183956 bytes_out 0 183956 bytes_in 0 183956 station_ip 5.120.35.27 183956 port 246 183956 unique_id port 183956 remote_ip 10.8.0.10 183957 username barzegar 183957 mac 183957 bytes_out 0 183957 bytes_in 0 183957 station_ip 5.120.35.27 183957 port 246 183957 unique_id port 183957 remote_ip 10.8.0.10 183958 username aminvpn 183958 mac 183958 bytes_out 101284 183958 bytes_in 117965 183958 station_ip 5.120.46.50 183958 port 236 183958 unique_id port 183958 remote_ip 10.8.0.58 183961 username yaghobi 183961 mac 183961 bytes_out 19303 183961 bytes_in 24288 183961 station_ip 83.123.80.97 183961 port 236 183961 unique_id port 183961 remote_ip 10.8.0.138 183963 username yaghobi 183963 mac 183963 bytes_out 184232 183963 bytes_in 293584 183963 station_ip 83.123.12.221 183963 port 251 183963 unique_id port 183963 remote_ip 10.8.0.138 183965 username barzegar 183965 mac 183965 bytes_out 3281 183965 bytes_in 5258 183965 station_ip 5.120.35.27 183965 port 251 183965 unique_id port 183965 remote_ip 10.8.0.10 183969 username barzegar 183969 mac 183969 bytes_out 0 183969 bytes_in 0 183969 station_ip 5.120.35.27 183969 port 249 183969 unique_id port 183969 remote_ip 10.8.0.10 183970 username barzegar 183970 mac 183970 bytes_out 0 183970 bytes_in 0 183970 station_ip 5.120.35.27 183970 port 249 183970 unique_id port 183970 remote_ip 10.8.0.10 183972 username khalili2 183972 kill_reason Another user logged on this global unique id 183972 mac 183972 bytes_out 0 183972 bytes_in 0 183972 station_ip 5.119.133.16 183972 port 241 183972 unique_id port 183972 remote_ip 10.8.0.118 183973 username meysam 183973 kill_reason Another user logged on this global unique id 183973 mac 183973 bytes_out 0 183973 bytes_in 0 183973 station_ip 188.158.50.93 183973 port 261 183973 unique_id port 183973 remote_ip 10.8.0.158 183974 username aminvpn 183974 mac 183974 bytes_out 0 183974 bytes_in 0 183974 station_ip 46.100.217.46 183974 port 263 183974 unique_id port 183974 remote_ip 10.8.0.58 183976 username aminvpn 183976 mac 183976 bytes_out 0 183976 bytes_in 0 183976 station_ip 46.100.217.46 183976 port 259 183976 unique_id port 183976 remote_ip 10.8.0.58 183977 username yaghobi 183977 mac 183977 bytes_out 9730 183977 bytes_in 15745 183977 station_ip 83.123.110.136 183977 port 264 183977 unique_id port 183977 remote_ip 10.8.0.138 183979 username barzegar 183979 mac 183979 bytes_out 0 183979 bytes_in 0 183979 station_ip 5.120.35.27 183979 port 265 183979 unique_id port 183979 remote_ip 10.8.0.10 183982 username rashidi4690 183982 mac 183982 bytes_out 1398203 183982 bytes_in 8357282 183982 station_ip 5.120.18.13 183982 port 236 183982 unique_id port 183982 remote_ip 10.8.0.242 183983 username barzegar 183971 username iranmanesh4443 183971 mac 183971 bytes_out 0 183971 bytes_in 0 183971 station_ip 5.119.127.171 183971 port 249 183971 unique_id port 183971 remote_ip 10.8.0.22 183981 username pourshad 183981 mac 183981 bytes_out 1805503 183981 bytes_in 24689201 183981 station_ip 5.120.103.150 183981 port 233 183981 unique_id port 183981 remote_ip 10.8.0.42 183984 username kordestani 183984 kill_reason Another user logged on this global unique id 183984 mac 183984 bytes_out 0 183984 bytes_in 0 183984 station_ip 151.235.82.10 183984 port 263 183984 unique_id port 183984 remote_ip 10.8.0.130 183987 username iranmanesh4443 183987 mac 183987 bytes_out 796539 183987 bytes_in 6700377 183987 station_ip 5.119.127.171 183987 port 251 183987 unique_id port 183987 remote_ip 10.8.0.22 183992 username pourshad 183992 mac 183992 bytes_out 357107 183992 bytes_in 2073907 183992 station_ip 5.120.103.150 183992 port 233 183992 unique_id port 183992 remote_ip 10.8.0.42 183993 username yaghobi 183993 mac 183993 bytes_out 98462 183993 bytes_in 101122 183993 station_ip 83.123.110.136 183993 port 264 183993 unique_id port 183993 remote_ip 10.8.0.138 183994 username barzegar 183994 mac 183994 bytes_out 0 183994 bytes_in 0 183994 station_ip 5.120.35.27 183994 port 251 183994 unique_id port 183994 remote_ip 10.8.0.10 183995 username godarzi 183995 kill_reason Another user logged on this global unique id 183995 mac 183995 bytes_out 0 183995 bytes_in 0 183995 station_ip 5.202.29.254 183995 port 248 183995 unique_id port 183997 username aminvpn 183997 unique_id port 183997 terminate_cause Lost-Carrier 183997 bytes_out 992189 183997 bytes_in 1387481 183997 station_ip 83.123.21.1 183997 port 15728973 183997 nas_port_type Virtual 183997 remote_ip 5.5.5.161 183999 username pourshad 183999 mac 183999 bytes_out 184936 183999 bytes_in 552422 183999 station_ip 5.120.103.150 183999 port 236 183999 unique_id port 183999 remote_ip 10.8.0.42 184001 username meysam 184001 mac 184001 bytes_out 0 184001 bytes_in 0 184001 station_ip 188.158.50.93 184001 port 261 184001 unique_id port 184003 username kordestani 184003 mac 184003 bytes_out 0 184003 bytes_in 0 184003 station_ip 151.235.82.10 184003 port 263 184003 unique_id port 184004 username godarzi 184004 mac 184004 bytes_out 0 184004 bytes_in 0 184004 station_ip 5.202.29.254 184004 port 248 184004 unique_id port 184006 username fezealinaghi 184006 mac 184006 bytes_out 786801 184006 bytes_in 3366611 184006 station_ip 83.123.83.166 184006 port 233 184006 unique_id port 184006 remote_ip 10.8.0.202 184016 username houshang 184016 mac 184016 bytes_out 22333 184016 bytes_in 61509 184016 station_ip 5.119.125.186 184016 port 264 184016 unique_id port 184016 remote_ip 10.8.0.82 184017 username yaghobi 184017 mac 184017 bytes_out 198013 184017 bytes_in 332274 184017 station_ip 83.123.86.219 184017 port 265 184017 unique_id port 184017 remote_ip 10.8.0.138 184021 username godarzi 184021 kill_reason Another user logged on this global unique id 184021 mac 184021 bytes_out 0 184021 bytes_in 0 184021 station_ip 5.202.29.254 184021 port 251 184021 unique_id port 184021 remote_ip 10.8.0.38 184022 username shadkam 184022 mac 184022 bytes_out 945953 184022 bytes_in 9075679 184022 station_ip 83.123.6.90 184022 port 236 184022 unique_id port 184022 remote_ip 10.8.0.74 184026 username dortaj3792 184026 mac 184026 bytes_out 1889753 184026 bytes_in 7351511 184026 station_ip 5.120.3.131 184026 port 246 184026 unique_id port 183983 mac 183983 bytes_out 0 183983 bytes_in 0 183983 station_ip 5.120.35.27 183983 port 236 183983 unique_id port 183983 remote_ip 10.8.0.10 183985 username aminvpn 183985 mac 183985 bytes_out 83553 183985 bytes_in 309228 183985 station_ip 5.120.46.50 183985 port 264 183985 unique_id port 183985 remote_ip 10.8.0.58 183986 username yaghobi 183986 mac 183986 bytes_out 350617 183986 bytes_in 606052 183986 station_ip 83.123.110.136 183986 port 259 183986 unique_id port 183986 remote_ip 10.8.0.138 183989 username aminvpn 183989 mac 183989 bytes_out 0 183989 bytes_in 0 183989 station_ip 46.100.217.46 183989 port 251 183989 unique_id port 183989 remote_ip 10.8.0.58 183991 username milan 183991 kill_reason Another user logged on this global unique id 183991 mac 183991 bytes_out 0 183991 bytes_in 0 183991 station_ip 5.119.97.240 183991 port 262 183991 unique_id port 183996 username aminvpn 183996 mac 183996 bytes_out 126941 183996 bytes_in 218596 183996 station_ip 5.120.46.50 183996 port 251 183996 unique_id port 183996 remote_ip 10.8.0.58 184000 username milan 184000 kill_reason Another user logged on this global unique id 184000 mac 184000 bytes_out 0 184000 bytes_in 0 184000 station_ip 5.119.97.240 184000 port 262 184000 unique_id port 184002 username shadkam 184002 mac 184002 bytes_out 2158357 184002 bytes_in 21810049 184002 station_ip 83.123.122.90 184002 port 233 184002 unique_id port 184002 remote_ip 10.8.0.74 184009 username barzegar 184009 kill_reason Maximum number of concurrent logins reached 184009 mac 184009 bytes_out 0 184009 bytes_in 0 184009 station_ip 5.120.35.27 184009 port 264 184009 unique_id port 184010 username barzegar 184010 mac 184010 bytes_out 16009 184010 bytes_in 33596 184010 station_ip 5.120.35.27 184010 port 249 184010 unique_id port 184010 remote_ip 10.8.0.10 184011 username soleymani5056 184011 mac 184011 bytes_out 154894 184011 bytes_in 229096 184011 station_ip 5.119.163.12 184011 port 236 184011 unique_id port 184011 remote_ip 10.8.0.226 184015 username milan 184015 kill_reason Another user logged on this global unique id 184015 mac 184015 bytes_out 0 184015 bytes_in 0 184015 station_ip 5.119.97.240 184015 port 262 184015 unique_id port 184019 username yaghobi 184019 mac 184019 bytes_out 3448 184019 bytes_in 7860 184019 station_ip 83.123.86.219 184019 port 264 184019 unique_id port 184019 remote_ip 10.8.0.138 184023 username iranmanesh4443 184023 mac 184023 bytes_out 388112 184023 bytes_in 955901 184023 station_ip 5.119.127.171 184023 port 259 184023 unique_id port 184023 remote_ip 10.8.0.22 184024 username mohammadjavad 184024 mac 184024 bytes_out 533751 184024 bytes_in 4941253 184024 station_ip 83.123.111.206 184024 port 248 184024 unique_id port 184024 remote_ip 10.8.0.110 184027 username mosi 184027 kill_reason Another user logged on this global unique id 184027 mac 184027 bytes_out 0 184027 bytes_in 0 184027 station_ip 151.235.78.193 184027 port 242 184027 unique_id port 184027 remote_ip 10.8.0.142 184034 username shadkam 184034 mac 184034 bytes_out 1680 184034 bytes_in 4389 184034 station_ip 83.123.103.206 184034 port 246 184034 unique_id port 184034 remote_ip 10.8.0.74 184036 username hajghani 184036 mac 184036 bytes_out 40675 184036 bytes_in 283300 184036 station_ip 46.225.232.125 184036 port 261 184036 unique_id port 184036 remote_ip 10.8.0.106 184038 username aminvpn 184038 mac 184038 bytes_out 0 184038 bytes_in 0 184038 station_ip 46.100.217.46 184038 port 265 184038 unique_id port 184005 mac 184005 bytes_out 38820 184005 bytes_in 134920 184005 station_ip 5.120.35.27 184005 port 264 184005 unique_id port 184005 remote_ip 10.8.0.10 184007 username pourshad 184007 mac 184007 bytes_out 78819 184007 bytes_in 105599 184007 station_ip 5.120.103.150 184007 port 265 184007 unique_id port 184007 remote_ip 10.8.0.42 184008 username milan 184008 kill_reason Another user logged on this global unique id 184008 mac 184008 bytes_out 0 184008 bytes_in 0 184008 station_ip 5.119.97.240 184008 port 262 184008 unique_id port 184012 username rashidi4690 184012 mac 184012 bytes_out 745652 184012 bytes_in 2450596 184012 station_ip 5.120.18.13 184012 port 251 184012 unique_id port 184012 remote_ip 10.8.0.242 184013 username fezealinaghi 184013 mac 184013 bytes_out 104740 184013 bytes_in 368477 184013 station_ip 83.123.83.166 184013 port 261 184013 unique_id port 184013 remote_ip 10.8.0.202 184014 username yaghobi 184014 mac 184014 bytes_out 381392 184014 bytes_in 1741404 184014 station_ip 83.123.121.19 184014 port 264 184014 unique_id port 184014 remote_ip 10.8.0.138 184018 username saeed9658 184018 mac 184018 bytes_out 14911491 184018 bytes_in 28101542 184018 station_ip 5.119.244.120 184018 port 248 184018 unique_id port 184018 remote_ip 10.8.0.162 184020 username motamedi9772 184020 mac 184020 bytes_out 0 184020 bytes_in 0 184020 station_ip 83.123.9.143 184020 port 248 184020 unique_id port 184020 remote_ip 10.8.0.154 184025 username meysam 184025 mac 184025 bytes_out 2257177 184025 bytes_in 30962210 184025 station_ip 188.158.50.93 184025 port 236 184025 unique_id port 184025 remote_ip 10.8.0.158 184029 username saeed9658 184029 mac 184029 bytes_out 625056 184029 bytes_in 551477 184029 station_ip 5.119.244.120 184029 port 265 184029 unique_id port 184029 remote_ip 10.8.0.162 184030 username kalantary6037 184030 mac 184030 bytes_out 3111366 184030 bytes_in 44441801 184030 station_ip 83.123.100.219 184030 port 266 184030 unique_id port 184030 remote_ip 10.8.0.50 184035 username milan 184035 kill_reason Another user logged on this global unique id 184035 mac 184035 bytes_out 0 184035 bytes_in 0 184035 station_ip 5.119.97.240 184035 port 262 184035 unique_id port 184037 username hajghani 184037 mac 184037 bytes_out 0 184037 bytes_in 0 184037 station_ip 89.32.96.116 184037 port 265 184037 unique_id port 184037 remote_ip 10.8.0.106 184040 username mohammadjavad 184040 mac 184040 bytes_out 39380 184040 bytes_in 37347 184040 station_ip 83.123.48.176 184040 port 263 184040 unique_id port 184040 remote_ip 10.8.0.110 184044 username kalantary6037 184044 mac 184044 bytes_out 0 184044 bytes_in 0 184044 station_ip 83.123.100.219 184044 port 236 184044 unique_id port 184046 username milan 184046 kill_reason Another user logged on this global unique id 184046 mac 184046 bytes_out 0 184046 bytes_in 0 184046 station_ip 5.119.97.240 184046 port 262 184046 unique_id port 184049 username pourshad 184049 mac 184049 bytes_out 1163771 184049 bytes_in 7218768 184049 station_ip 5.120.103.150 184049 port 233 184049 unique_id port 184049 remote_ip 10.8.0.42 184051 username barzegar 184051 mac 184051 bytes_out 0 184051 bytes_in 0 184051 station_ip 5.120.35.27 184051 port 236 184051 unique_id port 184051 remote_ip 10.8.0.10 184053 username pourshad 184053 mac 184053 bytes_out 327324 184053 bytes_in 3975669 184053 station_ip 5.120.103.150 184053 port 233 184053 unique_id port 184053 remote_ip 10.8.0.42 184055 username alipour1506 184026 remote_ip 10.8.0.102 184028 username fezealinaghi 184028 mac 184028 bytes_out 2005078 184028 bytes_in 18690023 184028 station_ip 83.123.83.166 184028 port 261 184028 unique_id port 184028 remote_ip 10.8.0.202 184031 username barzegar 184031 mac 184031 bytes_out 66854 184031 bytes_in 240564 184031 station_ip 5.120.35.27 184031 port 236 184031 unique_id port 184031 remote_ip 10.8.0.10 184032 username saeed9658 184032 mac 184032 bytes_out 3990 184032 bytes_in 12172 184032 station_ip 5.119.244.120 184032 port 246 184032 unique_id port 184032 remote_ip 10.8.0.162 184033 username hatami 184033 mac 184033 bytes_out 677418 184033 bytes_in 5056763 184033 station_ip 37.27.40.151 184033 port 263 184033 unique_id port 184033 remote_ip 10.8.0.98 184039 username fezealinaghi 184039 mac 184039 bytes_out 142879 184039 bytes_in 382369 184039 station_ip 83.123.83.166 184039 port 246 184039 unique_id port 184039 remote_ip 10.8.0.202 184041 username aminvpn 184041 mac 184041 bytes_out 1644 184041 bytes_in 5195 184041 station_ip 46.100.217.46 184041 port 246 184041 unique_id port 184041 remote_ip 10.8.0.58 184042 username barzegar 184042 mac 184042 bytes_out 7477 184042 bytes_in 8062 184042 station_ip 5.120.35.27 184042 port 266 184042 unique_id port 184042 remote_ip 10.8.0.10 184045 username saeed9658 184045 mac 184045 bytes_out 57513 184045 bytes_in 96188 184045 station_ip 5.119.244.120 184045 port 248 184045 unique_id port 184045 remote_ip 10.8.0.162 184047 username barzegar 184047 mac 184047 bytes_out 0 184047 bytes_in 0 184047 station_ip 5.120.35.27 184047 port 236 184047 unique_id port 184047 remote_ip 10.8.0.10 184050 username rashidi4690 184050 mac 184050 bytes_out 490403 184050 bytes_in 2663351 184050 station_ip 5.120.18.13 184050 port 236 184050 unique_id port 184050 remote_ip 10.8.0.242 184054 username milan 184054 kill_reason Another user logged on this global unique id 184054 mac 184054 bytes_out 0 184054 bytes_in 0 184054 station_ip 5.119.97.240 184054 port 262 184054 unique_id port 184059 username meysam 184059 mac 184059 bytes_out 861687 184059 bytes_in 11326168 184059 station_ip 188.159.254.103 184059 port 261 184059 unique_id port 184059 remote_ip 10.8.0.158 184067 username barzegar 184067 mac 184067 bytes_out 5750 184067 bytes_in 6384 184067 station_ip 5.120.35.27 184067 port 264 184067 unique_id port 184067 remote_ip 10.8.0.10 184068 username dortaj3792 184068 mac 184068 bytes_out 1719700 184068 bytes_in 14597195 184068 station_ip 5.120.3.131 184068 port 246 184068 unique_id port 184068 remote_ip 10.8.0.102 184069 username kalantary6037 184069 mac 184069 bytes_out 3512127 184069 bytes_in 39642471 184069 station_ip 83.123.26.47 184069 port 236 184069 unique_id port 184069 remote_ip 10.8.0.50 184071 username pourshad 184071 mac 184071 bytes_out 603443 184071 bytes_in 12751856 184071 station_ip 5.120.103.150 184071 port 249 184071 unique_id port 184071 remote_ip 10.8.0.42 184074 username alipour1506 184074 mac 184074 bytes_out 153468 184074 bytes_in 334481 184074 station_ip 83.123.82.137 184074 port 259 184074 unique_id port 184074 remote_ip 10.8.0.126 184075 username sekonji0496 184075 mac 184075 bytes_out 100158 184075 bytes_in 1156889 184075 station_ip 83.123.78.115 184075 port 263 184075 unique_id port 184075 remote_ip 10.8.0.62 184079 username barzegar 184079 mac 184079 bytes_out 0 184079 bytes_in 0 184079 station_ip 5.120.35.27 184079 port 236 184079 unique_id port 184038 remote_ip 10.8.0.58 184043 username kalantary6037 184043 kill_reason Another user logged on this global unique id 184043 mac 184043 bytes_out 0 184043 bytes_in 0 184043 station_ip 83.123.100.219 184043 port 236 184043 unique_id port 184043 remote_ip 10.8.0.50 184048 username hajghani 184048 mac 184048 bytes_out 1044401 184048 bytes_in 12110014 184048 station_ip 89.32.96.116 184048 port 261 184048 unique_id port 184048 remote_ip 10.8.0.106 184052 username barzegar 184052 mac 184052 bytes_out 0 184052 bytes_in 0 184052 station_ip 5.120.35.27 184052 port 236 184052 unique_id port 184052 remote_ip 10.8.0.10 184058 username pourshad 184058 mac 184058 bytes_out 8818 184058 bytes_in 8244 184058 station_ip 5.120.103.150 184058 port 233 184058 unique_id port 184058 remote_ip 10.8.0.42 184061 username kordestani 184061 mac 184061 bytes_out 1541842 184061 bytes_in 17842537 184061 station_ip 151.235.82.10 184061 port 249 184061 unique_id port 184061 remote_ip 10.8.0.130 184064 username barzegar 184064 mac 184064 bytes_out 3679 184064 bytes_in 5525 184064 station_ip 5.120.35.27 184064 port 249 184064 unique_id port 184064 remote_ip 10.8.0.10 184066 username shadkam 184066 mac 184066 bytes_out 874777 184066 bytes_in 10418921 184066 station_ip 83.123.107.232 184066 port 233 184066 unique_id port 184066 remote_ip 10.8.0.74 184072 username milan 184072 mac 184072 bytes_out 0 184072 bytes_in 0 184072 station_ip 5.119.97.240 184072 port 262 184072 unique_id port 184076 username shadkam 184076 mac 184076 bytes_out 11407 184076 bytes_in 29374 184076 station_ip 83.123.23.25 184076 port 246 184076 unique_id port 184076 remote_ip 10.8.0.74 184078 username rashidi4690 184078 mac 184078 bytes_out 161652 184078 bytes_in 581409 184078 station_ip 5.120.18.13 184078 port 236 184078 unique_id port 184078 remote_ip 10.8.0.242 184080 username aminvpn 184080 mac 184080 bytes_out 0 184080 bytes_in 0 184080 station_ip 46.100.217.46 184080 port 236 184080 unique_id port 184080 remote_ip 10.8.0.58 184081 username barzegar 184081 mac 184081 bytes_out 0 184081 bytes_in 0 184081 station_ip 5.120.35.27 184081 port 236 184081 unique_id port 184081 remote_ip 10.8.0.10 184084 username barzegar 184084 mac 184084 bytes_out 0 184084 bytes_in 0 184084 station_ip 5.120.35.27 184084 port 246 184084 unique_id port 184084 remote_ip 10.8.0.10 184091 username barzegar 184091 mac 184091 bytes_out 0 184091 bytes_in 0 184091 station_ip 5.120.35.27 184091 port 236 184091 unique_id port 184091 remote_ip 10.8.0.10 184094 username fezealinaghi 184094 mac 184094 bytes_out 273533 184094 bytes_in 588772 184094 station_ip 83.123.88.187 184094 port 233 184094 unique_id port 184094 remote_ip 10.8.0.202 184097 username godarzi 184097 kill_reason Another user logged on this global unique id 184097 mac 184097 bytes_out 0 184097 bytes_in 0 184097 station_ip 5.202.29.254 184097 port 251 184097 unique_id port 184098 username yaghobi 184098 mac 184098 bytes_out 453278 184098 bytes_in 2320552 184098 station_ip 83.123.64.62 184098 port 246 184098 unique_id port 184098 remote_ip 10.8.0.138 184099 username iranmanesh4443 184099 mac 184099 bytes_out 583883 184099 bytes_in 3246720 184099 station_ip 5.119.127.171 184099 port 261 184099 unique_id port 184099 remote_ip 10.8.0.22 184101 username saeeddamghani 184101 unique_id port 184101 terminate_cause User-Request 184101 bytes_out 4020993 184101 bytes_in 9196158 184101 station_ip 83.123.120.137 184101 port 15728975 184055 mac 184055 bytes_out 1702013 184055 bytes_in 22038607 184055 station_ip 83.123.82.137 184055 port 264 184055 unique_id port 184055 remote_ip 10.8.0.126 184056 username fezealinaghi 184056 mac 184056 bytes_out 9455598 184056 bytes_in 26827836 184056 station_ip 83.123.83.166 184056 port 265 184056 unique_id port 184056 remote_ip 10.8.0.202 184057 username iranmanesh4443 184057 mac 184057 bytes_out 1510018 184057 bytes_in 17902098 184057 station_ip 5.119.127.171 184057 port 259 184057 unique_id port 184057 remote_ip 10.8.0.22 184060 username soleymani5056 184060 mac 184060 bytes_out 175784 184060 bytes_in 335019 184060 station_ip 5.119.241.252 184060 port 248 184060 unique_id port 184060 remote_ip 10.8.0.226 184062 username barzegar 184062 mac 184062 bytes_out 0 184062 bytes_in 0 184062 station_ip 5.120.35.27 184062 port 233 184062 unique_id port 184062 remote_ip 10.8.0.10 184063 username pourshad 184063 mac 184063 bytes_out 228533 184063 bytes_in 2701195 184063 station_ip 5.120.103.150 184063 port 264 184063 unique_id port 184063 remote_ip 10.8.0.42 184065 username milan 184065 kill_reason Another user logged on this global unique id 184065 mac 184065 bytes_out 0 184065 bytes_in 0 184065 station_ip 5.119.97.240 184065 port 262 184065 unique_id port 184070 username barzegar 184070 mac 184070 bytes_out 4375 184070 bytes_in 6680 184070 station_ip 5.120.35.27 184070 port 265 184070 unique_id port 184070 remote_ip 10.8.0.10 184073 username meysam 184073 mac 184073 bytes_out 677571 184073 bytes_in 9543439 184073 station_ip 188.159.254.103 184073 port 246 184073 unique_id port 184073 remote_ip 10.8.0.158 184077 username barzegar 184077 mac 184077 bytes_out 0 184077 bytes_in 0 184077 station_ip 5.120.35.27 184077 port 249 184077 unique_id port 184077 remote_ip 10.8.0.10 184082 username dortaj3792 184082 mac 184082 bytes_out 627091 184082 bytes_in 5542269 184082 station_ip 5.120.3.131 184082 port 264 184082 unique_id port 184082 remote_ip 10.8.0.102 184083 username barzegar 184083 mac 184083 bytes_out 0 184083 bytes_in 0 184083 station_ip 5.120.35.27 184083 port 246 184083 unique_id port 184083 remote_ip 10.8.0.10 184085 username kalantary6037 184085 mac 184085 bytes_out 1705862 184085 bytes_in 9770612 184085 station_ip 83.123.26.47 184085 port 266 184085 unique_id port 184085 remote_ip 10.8.0.50 184087 username khalili2 184087 kill_reason Another user logged on this global unique id 184087 mac 184087 bytes_out 0 184087 bytes_in 0 184087 station_ip 5.119.133.16 184087 port 241 184087 unique_id port 184088 username mosi 184088 kill_reason Another user logged on this global unique id 184088 mac 184088 bytes_out 0 184088 bytes_in 0 184088 station_ip 151.235.78.193 184088 port 242 184088 unique_id port 184089 username dortaj3792 184089 mac 184089 bytes_out 33951 184089 bytes_in 30921 184089 station_ip 5.120.3.131 184089 port 236 184089 unique_id port 184089 remote_ip 10.8.0.102 184092 username shadkam 184092 mac 184092 bytes_out 337935 184092 bytes_in 460528 184092 station_ip 83.123.15.216 184092 port 246 184092 unique_id port 184092 remote_ip 10.8.0.74 184095 username kalantary6037 184095 mac 184095 bytes_out 697810 184095 bytes_in 7042518 184095 station_ip 83.123.26.47 184095 port 236 184095 unique_id port 184095 remote_ip 10.8.0.50 184096 username barzegar 184096 mac 184096 bytes_out 0 184096 bytes_in 0 184096 station_ip 5.120.35.27 184096 port 249 184096 unique_id port 184096 remote_ip 10.8.0.10 184079 remote_ip 10.8.0.10 184086 username esmaeilkazemi 184086 mac 184086 bytes_out 286654 184086 bytes_in 2785223 184086 station_ip 83.123.33.157 184086 port 236 184086 unique_id port 184086 remote_ip 10.8.0.26 184090 username aminvpn 184090 mac 184090 bytes_out 0 184090 bytes_in 0 184090 station_ip 46.100.217.46 184090 port 236 184090 unique_id port 184090 remote_ip 10.8.0.58 184093 username soleymani5056 184093 mac 184093 bytes_out 71956 184093 bytes_in 74624 184093 station_ip 5.120.150.130 184093 port 249 184093 unique_id port 184093 remote_ip 10.8.0.226 184110 username aminvpn 184110 mac 184110 bytes_out 931328 184110 bytes_in 6739099 184110 station_ip 46.100.217.46 184110 port 246 184110 unique_id port 184110 remote_ip 10.8.0.58 184111 username hajghani 184111 kill_reason Another user logged on this global unique id 184111 mac 184111 bytes_out 0 184111 bytes_in 0 184111 station_ip 5.119.33.176 184111 port 236 184111 unique_id port 184111 remote_ip 10.8.0.106 184112 username dortaj3792 184112 mac 184112 bytes_out 241427 184112 bytes_in 2345271 184112 station_ip 5.120.3.131 184112 port 242 184112 unique_id port 184112 remote_ip 10.8.0.102 184115 username kordestani 184115 mac 184115 bytes_out 134530 184115 bytes_in 316795 184115 station_ip 151.235.82.10 184115 port 248 184115 unique_id port 184115 remote_ip 10.8.0.130 184116 username hajghani 184116 kill_reason Another user logged on this global unique id 184116 mac 184116 bytes_out 0 184116 bytes_in 0 184116 station_ip 5.119.33.176 184116 port 236 184116 unique_id port 184118 username kalantary6037 184118 mac 184118 bytes_out 1514750 184118 bytes_in 18555627 184118 station_ip 83.123.101.247 184118 port 242 184118 unique_id port 184118 remote_ip 10.8.0.50 184121 username hajghani 184121 kill_reason Another user logged on this global unique id 184121 mac 184121 bytes_out 0 184121 bytes_in 0 184121 station_ip 5.119.33.176 184121 port 236 184121 unique_id port 184128 username godarzi 184128 mac 184128 bytes_out 0 184128 bytes_in 0 184128 station_ip 5.202.29.254 184128 port 251 184128 unique_id port 184131 username shadkam 184131 mac 184131 bytes_out 0 184131 bytes_in 0 184131 station_ip 83.123.76.231 184131 port 242 184131 unique_id port 184132 username aminvpn 184132 unique_id port 184132 terminate_cause User-Request 184132 bytes_out 3397208 184132 bytes_in 3374678 184132 station_ip 31.57.143.152 184132 port 15728976 184132 nas_port_type Virtual 184132 remote_ip 5.5.5.159 184134 username arash 184134 mac 184134 bytes_out 186161 184134 bytes_in 1060865 184134 station_ip 89.47.73.130 184134 port 246 184134 unique_id port 184134 remote_ip 10.8.0.70 184139 username tahmorsi 184139 mac 184139 bytes_out 555180 184139 bytes_in 2036953 184139 station_ip 86.57.119.65 184139 port 234 184139 unique_id port 184139 remote_ip 10.8.0.6 184140 username aminvpn 184140 mac 184140 bytes_out 0 184140 bytes_in 0 184140 station_ip 46.100.217.46 184140 port 234 184140 unique_id port 184140 remote_ip 10.8.0.58 184141 username hajghani 184141 kill_reason Another user logged on this global unique id 184141 mac 184141 bytes_out 0 184141 bytes_in 0 184141 station_ip 5.119.33.176 184141 port 236 184141 unique_id port 184142 username barzegar 184142 mac 184142 bytes_out 6136 184142 bytes_in 10411 184142 station_ip 5.120.35.27 184142 port 234 184142 unique_id port 184142 remote_ip 10.8.0.10 184144 username pourshad 184144 kill_reason Another user logged on this global unique id 184144 mac 184144 bytes_out 0 184144 bytes_in 0 184100 username aminvpn 184100 mac 184100 bytes_out 0 184100 bytes_in 0 184100 station_ip 46.100.217.46 184100 port 246 184100 unique_id port 184100 remote_ip 10.8.0.58 184102 username mohammadjavad 184102 mac 184102 bytes_out 409236 184102 bytes_in 3422231 184102 station_ip 83.123.18.243 184102 port 236 184102 unique_id port 184102 remote_ip 10.8.0.110 184103 username kordestani 184103 mac 184103 bytes_out 2682924 184103 bytes_in 31260737 184103 station_ip 151.235.82.10 184103 port 248 184103 unique_id port 184103 remote_ip 10.8.0.130 184104 username alikomsari 184104 mac 184104 bytes_out 7345507 184104 bytes_in 31758509 184104 station_ip 5.119.138.121 184104 port 234 184104 unique_id port 184104 remote_ip 10.8.0.214 184106 username mosi 184106 mac 184106 bytes_out 0 184106 bytes_in 0 184106 station_ip 151.235.78.193 184106 port 242 184106 unique_id port 184107 username barzegar 184107 mac 184107 bytes_out 0 184107 bytes_in 0 184107 station_ip 5.120.35.27 184107 port 242 184107 unique_id port 184107 remote_ip 10.8.0.10 184108 username yaghobi 184108 mac 184108 bytes_out 444628 184108 bytes_in 554918 184108 station_ip 83.123.64.62 184108 port 249 184108 unique_id port 184108 remote_ip 10.8.0.138 184113 username yaghobi 184113 mac 184113 bytes_out 185934 184113 bytes_in 317011 184113 station_ip 83.123.64.62 184113 port 262 184113 unique_id port 184113 remote_ip 10.8.0.138 184119 username barzegar 184119 mac 184119 bytes_out 24465 184119 bytes_in 101403 184119 station_ip 5.120.35.27 184119 port 263 184119 unique_id port 184119 remote_ip 10.8.0.10 184122 username pourshad 184122 mac 184122 bytes_out 561913 184122 bytes_in 4042282 184122 station_ip 5.119.173.23 184122 port 248 184122 unique_id port 184122 remote_ip 10.8.0.42 184126 username nilufarrajaei 184126 kill_reason Another user logged on this global unique id 184126 mac 184126 bytes_out 0 184126 bytes_in 0 184126 station_ip 5.202.26.231 184126 port 262 184126 unique_id port 184126 remote_ip 10.8.0.194 184129 username barzegar 184129 mac 184129 bytes_out 0 184129 bytes_in 0 184129 station_ip 5.120.35.27 184129 port 246 184129 unique_id port 184129 remote_ip 10.8.0.10 184137 username shadkam 184137 mac 184137 bytes_out 264764 184137 bytes_in 1914312 184137 station_ip 83.123.76.231 184137 port 251 184137 unique_id port 184137 remote_ip 10.8.0.74 184138 username barzegar 184138 mac 184138 bytes_out 0 184138 bytes_in 0 184138 station_ip 5.120.35.27 184138 port 246 184138 unique_id port 184138 remote_ip 10.8.0.10 184146 username saeed9658 184146 mac 184146 bytes_out 1817926 184146 bytes_in 16163355 184146 station_ip 5.119.244.120 184146 port 242 184146 unique_id port 184146 remote_ip 10.8.0.162 184148 username meysam 184148 mac 184148 bytes_out 3771412 184148 bytes_in 51411222 184148 station_ip 188.159.254.103 184148 port 248 184148 unique_id port 184148 remote_ip 10.8.0.158 184149 username aminvpn 184149 mac 184149 bytes_out 0 184149 bytes_in 0 184149 station_ip 46.100.217.46 184149 port 234 184149 unique_id port 184149 remote_ip 10.8.0.58 184155 username kalantary6037 184155 mac 184155 bytes_out 3484272 184155 bytes_in 38401200 184155 station_ip 83.123.105.55 184155 port 246 184155 unique_id port 184155 remote_ip 10.8.0.50 184166 username iranmanesh4443 184166 mac 184166 bytes_out 413208 184166 bytes_in 1722378 184166 station_ip 5.119.127.171 184166 port 261 184166 unique_id port 184166 remote_ip 10.8.0.22 184101 nas_port_type Virtual 184101 remote_ip 5.5.5.160 184105 username soleymani5056 184105 mac 184105 bytes_out 120119 184105 bytes_in 188491 184105 station_ip 5.119.29.27 184105 port 236 184105 unique_id port 184105 remote_ip 10.8.0.226 184109 username shadkam 184109 mac 184109 bytes_out 2345163 184109 bytes_in 26964826 184109 station_ip 83.123.15.39 184109 port 234 184109 unique_id port 184109 remote_ip 10.8.0.74 184114 username barzegar 184114 mac 184114 bytes_out 0 184114 bytes_in 0 184114 station_ip 5.120.35.27 184114 port 246 184114 unique_id port 184114 remote_ip 10.8.0.10 184117 username yaghobi 184117 mac 184117 bytes_out 110309 184117 bytes_in 124554 184117 station_ip 83.123.64.62 184117 port 234 184117 unique_id port 184117 remote_ip 10.8.0.138 184120 username yaghobi 184120 mac 184120 bytes_out 46426 184120 bytes_in 43114 184120 station_ip 83.123.82.48 184120 port 264 184120 unique_id port 184120 remote_ip 10.8.0.138 184123 username charkhandaz3496 184123 mac 184123 bytes_out 5114654 184123 bytes_in 47850600 184123 station_ip 5.119.59.111 184123 port 259 184123 unique_id port 184123 remote_ip 10.8.0.90 184124 username aminvpn 184124 mac 184124 bytes_out 2364030 184124 bytes_in 27422277 184124 station_ip 46.100.217.46 184124 port 246 184124 unique_id port 184124 remote_ip 10.8.0.58 184125 username shadkam 184125 kill_reason Maximum check online fails reached 184125 mac 184125 bytes_out 2405551 184125 bytes_in 29237199 184125 station_ip 83.123.76.231 184125 port 242 184125 unique_id port 184125 remote_ip 10.8.0.74 184127 username aminvpn 184127 mac 184127 bytes_out 0 184127 bytes_in 0 184127 station_ip 46.100.217.46 184127 port 246 184127 unique_id port 184127 remote_ip 10.8.0.58 184130 username hajghani 184130 kill_reason Another user logged on this global unique id 184130 mac 184130 bytes_out 0 184130 bytes_in 0 184130 station_ip 5.119.33.176 184130 port 236 184130 unique_id port 184133 username barzegar 184133 mac 184133 bytes_out 0 184133 bytes_in 0 184133 station_ip 5.120.35.27 184133 port 242 184133 unique_id port 184133 remote_ip 10.8.0.10 184135 username saeed9658 184135 mac 184135 bytes_out 1203190 184135 bytes_in 6081328 184135 station_ip 5.119.244.120 184135 port 266 184135 unique_id port 184135 remote_ip 10.8.0.162 184136 username dortaj3792 184136 mac 184136 bytes_out 609315 184136 bytes_in 987391 184136 station_ip 5.120.3.131 184136 port 249 184136 unique_id port 184136 remote_ip 10.8.0.102 184143 username nilufarrajaei 184143 mac 184143 bytes_out 0 184143 bytes_in 0 184143 station_ip 5.202.26.231 184143 port 262 184143 unique_id port 184145 username godarzi 184145 mac 184145 bytes_out 120223 184145 bytes_in 1042579 184145 station_ip 5.120.185.149 184145 port 234 184145 unique_id port 184145 remote_ip 10.8.0.38 184147 username fezealinaghi 184147 mac 184147 bytes_out 1634598 184147 bytes_in 14407093 184147 station_ip 83.123.88.187 184147 port 233 184147 unique_id port 184147 remote_ip 10.8.0.202 184150 username barzegar 184150 mac 184150 bytes_out 0 184150 bytes_in 0 184150 station_ip 5.120.35.27 184150 port 234 184150 unique_id port 184150 remote_ip 10.8.0.10 184151 username barzegar 184151 mac 184151 bytes_out 0 184151 bytes_in 0 184151 station_ip 5.120.35.27 184151 port 234 184151 unique_id port 184151 remote_ip 10.8.0.10 184153 username mosi 184153 mac 184153 bytes_out 863462 184153 bytes_in 3946819 184153 station_ip 89.47.144.168 184153 port 264 184144 station_ip 5.119.173.23 184144 port 259 184144 unique_id port 184144 remote_ip 10.8.0.42 184152 username aminvpn 184152 unique_id port 184152 terminate_cause User-Request 184152 bytes_out 414374 184152 bytes_in 3292782 184152 station_ip 31.57.143.152 184152 port 15728977 184152 nas_port_type Virtual 184152 remote_ip 5.5.5.159 184156 username hajghani 184156 mac 184156 bytes_out 0 184156 bytes_in 0 184156 station_ip 5.119.33.176 184156 port 236 184156 unique_id port 184157 username yaghobi 184157 mac 184157 bytes_out 53991 184157 bytes_in 67964 184157 station_ip 83.123.96.176 184157 port 249 184157 unique_id port 184157 remote_ip 10.8.0.138 184158 username yaghobi 184158 mac 184158 bytes_out 106750 184158 bytes_in 124562 184158 station_ip 83.123.96.176 184158 port 236 184158 unique_id port 184158 remote_ip 10.8.0.138 184161 username mosi 184161 mac 184161 bytes_out 2090 184161 bytes_in 4575 184161 station_ip 89.47.144.168 184161 port 251 184161 unique_id port 184161 remote_ip 10.8.0.142 184162 username aminvpn 184162 mac 184162 bytes_out 0 184162 bytes_in 0 184162 station_ip 46.100.217.46 184162 port 251 184162 unique_id port 184162 remote_ip 10.8.0.58 184163 username fezealinaghi 184163 mac 184163 bytes_out 3106495 184163 bytes_in 37412195 184163 station_ip 83.123.88.187 184163 port 233 184163 unique_id port 184163 remote_ip 10.8.0.202 184165 username barzegar 184165 kill_reason Another user logged on this global unique id 184165 mac 184165 bytes_out 0 184165 bytes_in 0 184165 station_ip 5.120.35.27 184165 port 242 184165 unique_id port 184165 remote_ip 10.8.0.10 184171 username mohammadjavad 184171 mac 184171 bytes_out 5521 184171 bytes_in 5303 184171 station_ip 83.123.92.129 184171 port 246 184171 unique_id port 184171 remote_ip 10.8.0.110 184180 username pourshad 184180 mac 184180 bytes_out 9665 184180 bytes_in 9295 184180 station_ip 5.119.173.23 184180 port 234 184180 unique_id port 184180 remote_ip 10.8.0.42 184181 username barzegar 184181 kill_reason Maximum number of concurrent logins reached 184181 mac 184181 bytes_out 0 184181 bytes_in 0 184181 station_ip 5.119.166.2 184181 port 234 184181 unique_id port 184183 username barzegar 184183 mac 184183 bytes_out 0 184183 bytes_in 0 184183 station_ip 5.120.35.27 184183 port 242 184183 unique_id port 184186 username ahmadi1 184186 mac 184186 bytes_out 0 184186 bytes_in 0 184186 station_ip 83.123.32.63 184186 port 233 184186 unique_id port 184186 remote_ip 10.8.0.94 184187 username mosi 184187 mac 184187 bytes_out 61045 184187 bytes_in 92685 184187 station_ip 94.24.87.250 184187 port 249 184187 unique_id port 184187 remote_ip 10.8.0.142 184188 username mosi 184188 mac 184188 bytes_out 10903 184188 bytes_in 9594 184188 station_ip 94.24.87.250 184188 port 233 184188 unique_id port 184188 remote_ip 10.8.0.142 184192 username aminvpn 184192 mac 184192 bytes_out 0 184192 bytes_in 0 184192 station_ip 46.100.217.46 184192 port 236 184192 unique_id port 184192 remote_ip 10.8.0.58 184199 username aminvpn 184199 unique_id port 184199 terminate_cause User-Request 184199 bytes_out 2202372 184199 bytes_in 40927978 184199 station_ip 5.120.124.46 184199 port 15728979 184199 nas_port_type Virtual 184199 remote_ip 5.5.5.157 184201 username aminvpn 184201 mac 184201 bytes_out 0 184201 bytes_in 0 184201 station_ip 46.100.217.46 184201 port 261 184201 unique_id port 184201 remote_ip 10.8.0.58 184202 username aminvpn 184202 mac 184202 bytes_out 0 184153 unique_id port 184153 remote_ip 10.8.0.142 184154 username yaghobi 184154 mac 184154 bytes_out 658786 184154 bytes_in 959540 184154 station_ip 83.123.5.7 184154 port 265 184154 unique_id port 184154 remote_ip 10.8.0.138 184159 username mosi 184159 mac 184159 bytes_out 23029 184159 bytes_in 43545 184159 station_ip 89.47.144.168 184159 port 248 184159 unique_id port 184159 remote_ip 10.8.0.142 184160 username rashidi4690 184160 kill_reason Another user logged on this global unique id 184160 mac 184160 bytes_out 0 184160 bytes_in 0 184160 station_ip 83.123.13.156 184160 port 263 184160 unique_id port 184160 remote_ip 10.8.0.242 184164 username dortaj3792 184164 mac 184164 bytes_out 78806 184164 bytes_in 141320 184164 station_ip 5.120.3.131 184164 port 248 184164 unique_id port 184164 remote_ip 10.8.0.102 184169 username mohammadjavad 184169 mac 184169 bytes_out 423257 184169 bytes_in 1112538 184169 station_ip 83.123.92.129 184169 port 246 184169 unique_id port 184169 remote_ip 10.8.0.110 184170 username soleymani5056 184170 mac 184170 bytes_out 173556 184170 bytes_in 438629 184170 station_ip 5.119.139.129 184170 port 236 184170 unique_id port 184170 remote_ip 10.8.0.226 184172 username barzegar 184172 kill_reason Another user logged on this global unique id 184172 mac 184172 bytes_out 0 184172 bytes_in 0 184172 station_ip 5.120.35.27 184172 port 242 184172 unique_id port 184173 username yaghobi 184173 mac 184173 bytes_out 132545 184173 bytes_in 226730 184173 station_ip 83.123.53.12 184173 port 251 184173 unique_id port 184173 remote_ip 10.8.0.138 184175 username mahdiyehalizadeh 184175 mac 184175 bytes_out 1169166 184175 bytes_in 6710716 184175 station_ip 5.120.37.7 184175 port 234 184175 unique_id port 184175 remote_ip 10.8.0.114 184176 username kalantary6037 184176 mac 184176 bytes_out 1700944 184176 bytes_in 21696203 184176 station_ip 83.123.105.55 184176 port 233 184176 unique_id port 184176 remote_ip 10.8.0.50 184184 username soleymani5056 184184 mac 184184 bytes_out 45824 184184 bytes_in 63925 184184 station_ip 5.119.177.116 184184 port 233 184184 unique_id port 184184 remote_ip 10.8.0.226 184189 username barzegar 184189 kill_reason Another user logged on this global unique id 184189 mac 184189 bytes_out 0 184189 bytes_in 0 184189 station_ip 5.119.166.2 184189 port 234 184189 unique_id port 184189 remote_ip 10.8.0.10 184190 username mosi 184190 mac 184190 bytes_out 12034 184190 bytes_in 7956 184190 station_ip 89.32.98.85 184190 port 236 184190 unique_id port 184190 remote_ip 10.8.0.142 184193 username pourshad 184193 mac 184193 bytes_out 71356 184193 bytes_in 44325 184193 station_ip 5.119.69.159 184193 port 246 184193 unique_id port 184193 remote_ip 10.8.0.42 184194 username iranmanesh4443 184194 mac 184194 bytes_out 1059572 184194 bytes_in 15933495 184194 station_ip 5.119.127.171 184194 port 248 184194 unique_id port 184194 remote_ip 10.8.0.22 184197 username motamedi9772 184197 mac 184197 bytes_out 75247 184197 bytes_in 708847 184197 station_ip 83.123.53.159 184197 port 248 184197 unique_id port 184197 remote_ip 10.8.0.154 184198 username aminvpn 184198 mac 184198 bytes_out 0 184198 bytes_in 0 184198 station_ip 5.119.205.154 184198 port 249 184198 unique_id port 184198 remote_ip 10.8.0.58 184200 username barzegar 184200 mac 184200 bytes_out 0 184200 bytes_in 0 184200 station_ip 5.119.166.2 184200 port 234 184200 unique_id port 184206 username barzegar 184206 mac 184206 bytes_out 3177 184206 bytes_in 5390 184167 username yaghobi 184167 mac 184167 bytes_out 192164 184167 bytes_in 295078 184167 station_ip 83.123.43.110 184167 port 249 184167 unique_id port 184167 remote_ip 10.8.0.138 184168 username khalili2 184168 kill_reason Another user logged on this global unique id 184168 mac 184168 bytes_out 0 184168 bytes_in 0 184168 station_ip 5.119.133.16 184168 port 241 184168 unique_id port 184174 username pourshad 184174 mac 184174 bytes_out 0 184174 bytes_in 0 184174 station_ip 5.119.173.23 184174 port 259 184174 unique_id port 184177 username rashidi4690 184177 kill_reason Another user logged on this global unique id 184177 mac 184177 bytes_out 0 184177 bytes_in 0 184177 station_ip 83.123.13.156 184177 port 263 184177 unique_id port 184178 username soleymani5056 184178 mac 184178 bytes_out 51836 184178 bytes_in 75456 184178 station_ip 5.120.14.12 184178 port 261 184178 unique_id port 184178 remote_ip 10.8.0.226 184179 username aminvpn 184179 mac 184179 bytes_out 0 184179 bytes_in 0 184179 station_ip 46.100.217.46 184179 port 246 184179 unique_id port 184179 remote_ip 10.8.0.58 184182 username barzegar 184182 kill_reason Maximum number of concurrent logins reached 184182 mac 184182 bytes_out 0 184182 bytes_in 0 184182 station_ip 5.119.166.2 184182 port 234 184182 unique_id port 184185 username mahdiyehalizadeh 184185 mac 184185 bytes_out 23713 184185 bytes_in 162358 184185 station_ip 5.120.37.7 184185 port 236 184185 unique_id port 184185 remote_ip 10.8.0.114 184191 username aminvpn 184191 mac 184191 bytes_out 0 184191 bytes_in 0 184191 station_ip 46.100.217.46 184191 port 236 184191 unique_id port 184191 remote_ip 10.8.0.58 184195 username khademi 184195 kill_reason Another user logged on this global unique id 184195 mac 184195 bytes_out 0 184195 bytes_in 0 184195 station_ip 83.123.54.146 184195 port 240 184195 unique_id port 184196 username kalantary6037 184196 mac 184196 bytes_out 770879 184196 bytes_in 7620251 184196 station_ip 83.123.57.211 184196 port 249 184196 unique_id port 184196 remote_ip 10.8.0.50 184204 username mahdiyehalizadeh 184204 mac 184204 bytes_out 270736 184204 bytes_in 5545250 184204 station_ip 5.120.37.7 184204 port 251 184204 unique_id port 184204 remote_ip 10.8.0.114 184207 username barzegar 184207 mac 184207 bytes_out 0 184207 bytes_in 0 184207 station_ip 5.119.166.2 184207 port 265 184207 unique_id port 184207 remote_ip 10.8.0.10 184208 username sedighe 184208 mac 184208 bytes_out 231333 184208 bytes_in 1352096 184208 station_ip 83.123.56.254 184208 port 262 184208 unique_id port 184208 remote_ip 10.8.0.46 184209 username barzegar 184209 mac 184209 bytes_out 0 184209 bytes_in 0 184209 station_ip 5.119.166.2 184209 port 262 184209 unique_id port 184209 remote_ip 10.8.0.10 184217 username aminvpn 184217 unique_id port 184217 terminate_cause Lost-Carrier 184217 bytes_out 583091 184217 bytes_in 2842779 184217 station_ip 83.123.9.60 184217 port 15728978 184217 nas_port_type Virtual 184217 remote_ip 5.5.5.158 184219 username mahdiyehalizadeh 184219 mac 184219 bytes_out 15428 184219 bytes_in 21257 184219 station_ip 5.120.37.7 184219 port 251 184219 unique_id port 184219 remote_ip 10.8.0.114 184221 username kordestani 184221 mac 184221 bytes_out 1213607 184221 bytes_in 15245709 184221 station_ip 151.235.82.10 184221 port 242 184221 unique_id port 184221 remote_ip 10.8.0.130 184223 username barzegar 184223 mac 184223 bytes_out 22325 184223 bytes_in 70554 184223 station_ip 5.119.166.2 184223 port 246 184202 bytes_in 0 184202 station_ip 5.119.205.154 184202 port 234 184202 unique_id port 184202 remote_ip 10.8.0.58 184203 username aminvpn 184203 mac 184203 bytes_out 0 184203 bytes_in 0 184203 station_ip 46.100.217.46 184203 port 261 184203 unique_id port 184203 remote_ip 10.8.0.58 184205 username aminvpn 184205 mac 184205 bytes_out 0 184205 bytes_in 0 184205 station_ip 5.119.205.154 184205 port 234 184205 unique_id port 184205 remote_ip 10.8.0.58 184210 username shadkam 184210 mac 184210 bytes_out 2574288 184210 bytes_in 29453851 184210 station_ip 83.123.117.58 184210 port 259 184210 unique_id port 184210 remote_ip 10.8.0.74 184211 username barzegar 184211 mac 184211 bytes_out 0 184211 bytes_in 0 184211 station_ip 5.119.166.2 184211 port 262 184211 unique_id port 184211 remote_ip 10.8.0.10 184213 username esmaeilkazemi 184213 mac 184213 bytes_out 370405 184213 bytes_in 4468855 184213 station_ip 83.123.33.157 184213 port 259 184213 unique_id port 184213 remote_ip 10.8.0.26 184214 username arash 184214 mac 184214 bytes_out 129943 184214 bytes_in 707041 184214 station_ip 37.27.0.59 184214 port 262 184214 unique_id port 184214 remote_ip 10.8.0.70 184218 username rahim 184218 kill_reason Another user logged on this global unique id 184218 mac 184218 bytes_out 0 184218 bytes_in 0 184218 station_ip 5.120.18.152 184218 port 248 184218 unique_id port 184218 remote_ip 10.8.0.134 184220 username alikomsari 184220 mac 184220 bytes_out 349358 184220 bytes_in 1168817 184220 station_ip 5.119.138.121 184220 port 234 184220 unique_id port 184220 remote_ip 10.8.0.214 184222 username godarzi 184222 mac 184222 bytes_out 83678 184222 bytes_in 157131 184222 station_ip 5.120.149.8 184222 port 251 184222 unique_id port 184222 remote_ip 10.8.0.38 184224 username rahim 184224 kill_reason Another user logged on this global unique id 184224 mac 184224 bytes_out 0 184224 bytes_in 0 184224 station_ip 5.120.18.152 184224 port 248 184224 unique_id port 184225 username barzegar 184225 mac 184225 bytes_out 0 184225 bytes_in 0 184225 station_ip 5.119.166.2 184225 port 242 184225 unique_id port 184225 remote_ip 10.8.0.10 184229 username rashidi4690 184229 kill_reason Another user logged on this global unique id 184229 mac 184229 bytes_out 0 184229 bytes_in 0 184229 station_ip 83.123.13.156 184229 port 263 184229 unique_id port 184234 username barzegar 184234 mac 184234 bytes_out 2665 184234 bytes_in 4932 184234 station_ip 5.119.166.2 184234 port 249 184234 unique_id port 184234 remote_ip 10.8.0.10 184236 username iranmanesh4443 184236 mac 184236 bytes_out 692731 184236 bytes_in 3491050 184236 station_ip 5.119.127.171 184236 port 236 184236 unique_id port 184236 remote_ip 10.8.0.22 184239 username kalantary6037 184239 mac 184239 bytes_out 3243221 184239 bytes_in 36708750 184239 station_ip 83.123.100.215 184239 port 259 184239 unique_id port 184239 remote_ip 10.8.0.50 184241 username saeed9658 184241 mac 184241 bytes_out 21361 184241 bytes_in 58556 184241 station_ip 5.119.244.120 184241 port 261 184241 unique_id port 184241 remote_ip 10.8.0.162 184244 username mohammadjavad 184244 mac 184244 bytes_out 0 184244 bytes_in 0 184244 station_ip 83.123.122.140 184244 port 249 184244 unique_id port 184244 remote_ip 10.8.0.110 184247 username hajghani 184247 kill_reason Another user logged on this global unique id 184247 mac 184247 bytes_out 0 184247 bytes_in 0 184247 station_ip 5.200.116.246 184247 port 246 184247 unique_id port 184247 remote_ip 10.8.0.106 184206 station_ip 5.119.166.2 184206 port 265 184206 unique_id port 184206 remote_ip 10.8.0.10 184212 username godarzi 184212 mac 184212 bytes_out 966607 184212 bytes_in 6601211 184212 station_ip 5.120.149.8 184212 port 246 184212 unique_id port 184212 remote_ip 10.8.0.38 184215 username soleymani5056 184215 mac 184215 bytes_out 126648 184215 bytes_in 127758 184215 station_ip 5.119.169.201 184215 port 242 184215 unique_id port 184215 remote_ip 10.8.0.226 184216 username arash 184216 mac 184216 bytes_out 38756 184216 bytes_in 120719 184216 station_ip 37.27.0.59 184216 port 259 184216 unique_id port 184216 remote_ip 10.8.0.70 184226 username mosi 184226 mac 184226 bytes_out 838272 184226 bytes_in 1343772 184226 station_ip 5.233.59.136 184226 port 265 184226 unique_id port 184226 remote_ip 10.8.0.142 184230 username fezealinaghi 184230 mac 184230 bytes_out 513483 184230 bytes_in 2630408 184230 station_ip 83.123.124.69 184230 port 249 184230 unique_id port 184230 remote_ip 10.8.0.202 184233 username malekpoir 184233 mac 184233 bytes_out 771588 184233 bytes_in 5796594 184233 station_ip 5.120.90.111 184233 port 261 184233 unique_id port 184233 remote_ip 10.8.0.18 184238 username soleymani5056 184238 mac 184238 bytes_out 322135 184238 bytes_in 160713 184238 station_ip 5.120.164.3 184238 port 262 184238 unique_id port 184238 remote_ip 10.8.0.226 184242 username aminvpn 184242 mac 184242 bytes_out 0 184242 bytes_in 0 184242 station_ip 46.100.217.46 184242 port 259 184242 unique_id port 184242 remote_ip 10.8.0.58 184253 username rahim 184253 mac 184253 bytes_out 0 184253 bytes_in 0 184253 station_ip 5.120.18.152 184253 port 248 184253 unique_id port 184255 username aminvpn 184255 mac 184255 bytes_out 0 184255 bytes_in 0 184255 station_ip 46.100.217.46 184255 port 246 184255 unique_id port 184255 remote_ip 10.8.0.58 184256 username milan 184256 kill_reason Another user logged on this global unique id 184256 mac 184256 bytes_out 0 184256 bytes_in 0 184256 station_ip 5.119.97.240 184256 port 251 184256 unique_id port 184256 remote_ip 10.8.0.182 184257 username mohammadjavad 184257 mac 184257 bytes_out 227075 184257 bytes_in 2137853 184257 station_ip 83.123.122.140 184257 port 246 184257 unique_id port 184257 remote_ip 10.8.0.110 184261 username aminvpn 184261 unique_id port 184261 terminate_cause User-Request 184261 bytes_out 4825466 184261 bytes_in 93559409 184261 station_ip 5.120.124.46 184261 port 15728981 184261 nas_port_type Virtual 184261 remote_ip 5.5.5.157 184263 username mohammadjavad 184263 mac 184263 bytes_out 734101 184263 bytes_in 10632018 184263 station_ip 83.123.122.140 184263 port 246 184263 unique_id port 184263 remote_ip 10.8.0.110 184264 username hajghani 184264 kill_reason Another user logged on this global unique id 184264 mac 184264 bytes_out 0 184264 bytes_in 0 184264 station_ip 5.200.116.246 184264 port 239 184264 unique_id port 184264 remote_ip 10.8.0.106 184265 username aminvpn 184265 mac 184265 bytes_out 916274 184265 bytes_in 4816754 184265 station_ip 5.120.46.50 184265 port 248 184265 unique_id port 184265 remote_ip 10.8.0.58 184266 username aminvpn 184266 mac 184266 bytes_out 0 184266 bytes_in 0 184266 station_ip 46.100.217.46 184266 port 262 184266 unique_id port 184266 remote_ip 10.8.0.58 184267 username hajghani 184267 mac 184267 bytes_out 0 184267 bytes_in 0 184267 station_ip 5.200.116.246 184267 port 239 184267 unique_id port 184269 username barzegar 184269 mac 184223 unique_id port 184223 remote_ip 10.8.0.10 184227 username barzegar 184227 mac 184227 bytes_out 0 184227 bytes_in 0 184227 station_ip 5.119.166.2 184227 port 242 184227 unique_id port 184227 remote_ip 10.8.0.10 184228 username barzegar 184228 mac 184228 bytes_out 0 184228 bytes_in 0 184228 station_ip 5.119.166.2 184228 port 259 184228 unique_id port 184228 remote_ip 10.8.0.10 184231 username mosi 184231 mac 184231 bytes_out 1994778 184231 bytes_in 3904319 184231 station_ip 5.134.149.151 184231 port 246 184231 unique_id port 184231 remote_ip 10.8.0.142 184232 username dortaj3792 184232 mac 184232 bytes_out 1560471 184232 bytes_in 6072880 184232 station_ip 5.120.3.131 184232 port 233 184232 unique_id port 184232 remote_ip 10.8.0.102 184235 username rashidi4690 184235 mac 184235 bytes_out 0 184235 bytes_in 0 184235 station_ip 83.123.13.156 184235 port 263 184235 unique_id port 184237 username rahim 184237 kill_reason Another user logged on this global unique id 184237 mac 184237 bytes_out 0 184237 bytes_in 0 184237 station_ip 5.120.18.152 184237 port 248 184237 unique_id port 184240 username aminvpn 184240 mac 184240 bytes_out 1865153 184240 bytes_in 17190555 184240 station_ip 46.100.217.46 184240 port 264 184240 unique_id port 184240 remote_ip 10.8.0.58 184243 username barzegar 184243 mac 184243 bytes_out 2779653 184243 bytes_in 1021106 184243 station_ip 5.119.166.2 184243 port 249 184243 unique_id port 184243 remote_ip 10.8.0.10 184245 username rahim 184245 kill_reason Another user logged on this global unique id 184245 mac 184245 bytes_out 0 184245 bytes_in 0 184245 station_ip 5.120.18.152 184245 port 248 184245 unique_id port 184246 username mohammadjavad 184246 mac 184246 bytes_out 0 184246 bytes_in 0 184246 station_ip 83.123.122.140 184246 port 249 184246 unique_id port 184246 remote_ip 10.8.0.110 184250 username mohammadjavad 184250 mac 184250 bytes_out 0 184250 bytes_in 0 184250 station_ip 83.123.122.140 184250 port 246 184250 unique_id port 184250 remote_ip 10.8.0.110 184251 username mohammadmahdi 184251 kill_reason Another user logged on this global unique id 184251 mac 184251 bytes_out 0 184251 bytes_in 0 184251 station_ip 5.120.147.59 184251 port 242 184251 unique_id port 184251 remote_ip 10.8.0.30 184252 username barzegar 184252 mac 184252 bytes_out 0 184252 bytes_in 0 184252 station_ip 5.119.166.2 184252 port 246 184252 unique_id port 184252 remote_ip 10.8.0.10 184258 username houshang 184258 mac 184258 bytes_out 558922 184258 bytes_in 5373041 184258 station_ip 5.119.125.186 184258 port 248 184258 unique_id port 184258 remote_ip 10.8.0.82 184262 username milan 184262 kill_reason Another user logged on this global unique id 184262 mac 184262 bytes_out 0 184262 bytes_in 0 184262 station_ip 5.119.97.240 184262 port 251 184262 unique_id port 184270 username mohammadmahdi 184270 kill_reason Another user logged on this global unique id 184270 mac 184270 bytes_out 0 184270 bytes_in 0 184270 station_ip 5.120.147.59 184270 port 242 184270 unique_id port 184271 username barzegar 184271 mac 184271 bytes_out 0 184271 bytes_in 0 184271 station_ip 5.119.166.2 184271 port 264 184271 unique_id port 184271 remote_ip 10.8.0.10 184275 username hosseine 184275 kill_reason Another user logged on this global unique id 184275 mac 184275 bytes_out 0 184275 bytes_in 0 184275 station_ip 83.123.87.213 184275 port 234 184275 unique_id port 184275 remote_ip 10.8.0.54 184277 username rahim 184277 mac 184277 bytes_out 8591988 184277 bytes_in 24755426 184248 username mirzaei6046 184248 mac 184248 bytes_out 4764772 184248 bytes_in 34217459 184248 station_ip 5.120.112.72 184248 port 239 184248 unique_id port 184248 remote_ip 10.8.0.246 184249 username hajghani 184249 mac 184249 bytes_out 0 184249 bytes_in 0 184249 station_ip 5.200.116.246 184249 port 246 184249 unique_id port 184254 username mohammadjavad 184254 mac 184254 bytes_out 0 184254 bytes_in 0 184254 station_ip 83.123.122.140 184254 port 246 184254 unique_id port 184254 remote_ip 10.8.0.110 184259 username aminvpn 184259 mac 184259 bytes_out 0 184259 bytes_in 0 184259 station_ip 46.100.217.46 184259 port 246 184259 unique_id port 184259 remote_ip 10.8.0.58 184260 username barzegar 184260 mac 184260 bytes_out 0 184260 bytes_in 0 184260 station_ip 5.119.166.2 184260 port 248 184260 unique_id port 184260 remote_ip 10.8.0.10 184268 username aminvpn 184268 mac 184268 bytes_out 147516 184268 bytes_in 788045 184268 station_ip 5.120.46.50 184268 port 248 184268 unique_id port 184268 remote_ip 10.8.0.58 184273 username nekheei 184273 mac 184273 bytes_out 487424 184273 bytes_in 4998604 184273 station_ip 5.119.54.223 184273 port 248 184273 unique_id port 184273 remote_ip 10.8.0.150 184283 username fezealinaghi 184283 mac 184283 bytes_out 3537880 184283 bytes_in 35495660 184283 station_ip 83.123.124.69 184283 port 236 184283 unique_id port 184283 remote_ip 10.8.0.202 184284 username hosseine 184284 mac 184284 bytes_out 0 184284 bytes_in 0 184284 station_ip 83.123.87.213 184284 port 234 184284 unique_id port 184286 username motamedi9772 184286 mac 184286 bytes_out 531763 184286 bytes_in 5535462 184286 station_ip 83.123.78.135 184286 port 265 184286 unique_id port 184286 remote_ip 10.8.0.154 184290 username aminvpn 184290 mac 184290 bytes_out 0 184290 bytes_in 0 184290 station_ip 46.100.217.46 184290 port 262 184290 unique_id port 184290 remote_ip 10.8.0.58 184292 username ehsun 184292 mac 184292 bytes_out 158144 184292 bytes_in 1139249 184292 station_ip 5.119.196.44 184292 port 261 184292 unique_id port 184292 remote_ip 10.8.0.190 184294 username farhad3 184294 kill_reason Another user logged on this global unique id 184294 mac 184294 bytes_out 0 184294 bytes_in 0 184294 station_ip 5.120.60.193 184294 port 261 184294 unique_id port 184300 username rashidi4690 184300 mac 184300 bytes_out 0 184300 bytes_in 0 184300 station_ip 5.120.18.13 184300 port 263 184300 unique_id port 184301 username yaghobi 184301 mac 184301 bytes_out 228582 184301 bytes_in 375400 184301 station_ip 83.123.15.36 184301 port 248 184301 unique_id port 184301 remote_ip 10.8.0.138 184304 username kordestani 184304 mac 184304 bytes_out 2372051 184304 bytes_in 30931051 184304 station_ip 151.235.124.18 184304 port 239 184304 unique_id port 184304 remote_ip 10.8.0.130 184309 username barzegar 184309 mac 184309 bytes_out 17521 184309 bytes_in 32062 184309 station_ip 5.119.166.2 184309 port 234 184309 unique_id port 184309 remote_ip 10.8.0.10 184315 username nekheei 184315 mac 184315 bytes_out 1579801 184315 bytes_in 26045488 184315 station_ip 5.119.54.223 184315 port 239 184315 unique_id port 184315 remote_ip 10.8.0.150 184317 username milan 184317 kill_reason Another user logged on this global unique id 184317 mac 184317 bytes_out 0 184317 bytes_in 0 184317 station_ip 5.119.97.240 184317 port 251 184317 unique_id port 184318 username aminvpn 184318 unique_id port 184318 terminate_cause User-Request 184269 bytes_out 0 184269 bytes_in 0 184269 station_ip 5.119.166.2 184269 port 248 184269 unique_id port 184269 remote_ip 10.8.0.10 184272 username farhad3 184272 mac 184272 bytes_out 91234 184272 bytes_in 225846 184272 station_ip 5.120.60.193 184272 port 262 184272 unique_id port 184272 remote_ip 10.8.0.222 184274 username nekheei 184274 mac 184274 bytes_out 79804 184274 bytes_in 25960 184274 station_ip 5.119.54.223 184274 port 262 184274 unique_id port 184274 remote_ip 10.8.0.150 184276 username khalili2 184276 mac 184276 bytes_out 0 184276 bytes_in 0 184276 station_ip 5.119.133.16 184276 port 241 184276 unique_id port 184278 username nekheei 184278 mac 184278 bytes_out 125486 184278 bytes_in 1372220 184278 station_ip 5.119.54.223 184278 port 262 184278 unique_id port 184278 remote_ip 10.8.0.150 184280 username hosseine 184280 kill_reason Another user logged on this global unique id 184280 mac 184280 bytes_out 0 184280 bytes_in 0 184280 station_ip 83.123.87.213 184280 port 234 184280 unique_id port 184287 username aminvpn 184287 mac 184287 bytes_out 614701 184287 bytes_in 3902032 184287 station_ip 5.120.46.50 184287 port 261 184287 unique_id port 184287 remote_ip 10.8.0.58 184289 username aminvpn 184289 mac 184289 bytes_out 0 184289 bytes_in 0 184289 station_ip 46.100.217.46 184289 port 262 184289 unique_id port 184289 remote_ip 10.8.0.58 184291 username rashidi4690 184291 kill_reason Another user logged on this global unique id 184291 mac 184291 bytes_out 0 184291 bytes_in 0 184291 station_ip 5.120.18.13 184291 port 263 184291 unique_id port 184291 remote_ip 10.8.0.242 184296 username barzegar 184296 mac 184296 bytes_out 35678 184296 bytes_in 31579 184296 station_ip 5.119.166.2 184296 port 266 184296 unique_id port 184296 remote_ip 10.8.0.10 184297 username barzegar 184297 mac 184297 bytes_out 0 184297 bytes_in 0 184297 station_ip 5.119.166.2 184297 port 265 184297 unique_id port 184297 remote_ip 10.8.0.10 184302 username barzegar 184302 mac 184302 bytes_out 0 184302 bytes_in 0 184302 station_ip 5.119.166.2 184302 port 263 184302 unique_id port 184302 remote_ip 10.8.0.10 184306 username nekheei 184306 mac 184306 bytes_out 0 184306 bytes_in 0 184306 station_ip 5.119.54.223 184306 port 234 184306 unique_id port 184306 remote_ip 10.8.0.150 184308 username hamid.e 184308 unique_id port 184308 terminate_cause User-Request 184308 bytes_out 2155813 184308 bytes_in 35576395 184308 station_ip 37.27.5.14 184308 port 15728982 184308 nas_port_type Virtual 184308 remote_ip 5.5.5.173 184310 username aminvpn 184310 kill_reason Maximum check online fails reached 184310 mac 184310 bytes_out 0 184310 bytes_in 0 184310 station_ip 46.100.217.46 184310 port 248 184310 unique_id port 184311 username godarzi 184311 mac 184311 bytes_out 527020 184311 bytes_in 1157302 184311 station_ip 5.119.177.41 184311 port 259 184311 unique_id port 184311 remote_ip 10.8.0.38 184313 username mohammadmahdi 184313 mac 184313 bytes_out 0 184313 bytes_in 0 184313 station_ip 5.120.147.59 184313 port 242 184313 unique_id port 184314 username barzegar 184314 mac 184314 bytes_out 0 184314 bytes_in 0 184314 station_ip 5.119.166.2 184314 port 246 184314 unique_id port 184314 remote_ip 10.8.0.10 184320 username barzegar 184320 mac 184320 bytes_out 0 184320 bytes_in 0 184320 station_ip 5.119.166.2 184320 port 233 184320 unique_id port 184320 remote_ip 10.8.0.10 184322 username saeeddamghani 184322 mac 184322 bytes_out 885483 184277 station_ip 5.120.18.152 184277 port 261 184277 unique_id port 184277 remote_ip 10.8.0.134 184279 username nekheei 184279 mac 184279 bytes_out 5742 184279 bytes_in 9011 184279 station_ip 5.119.54.223 184279 port 241 184279 unique_id port 184279 remote_ip 10.8.0.150 184281 username barzegar 184281 mac 184281 bytes_out 0 184281 bytes_in 0 184281 station_ip 5.119.166.2 184281 port 265 184281 unique_id port 184281 remote_ip 10.8.0.10 184282 username godarzi 184282 mac 184282 bytes_out 1105704 184282 bytes_in 3193607 184282 station_ip 5.119.177.41 184282 port 259 184282 unique_id port 184282 remote_ip 10.8.0.38 184285 username nekheei 184285 mac 184285 bytes_out 943787 184285 bytes_in 6902865 184285 station_ip 5.119.54.223 184285 port 262 184285 unique_id port 184285 remote_ip 10.8.0.150 184288 username malekpoir 184288 mac 184288 bytes_out 322447 184288 bytes_in 1694079 184288 station_ip 5.120.90.111 184288 port 233 184288 unique_id port 184288 remote_ip 10.8.0.18 184293 username farhad3 184293 mac 184293 bytes_out 2611643 184293 bytes_in 15009640 184293 station_ip 5.120.60.193 184293 port 248 184293 unique_id port 184293 remote_ip 10.8.0.222 184295 username farhad3 184295 kill_reason Another user logged on this global unique id 184295 mac 184295 bytes_out 0 184295 bytes_in 0 184295 station_ip 5.120.60.193 184295 port 261 184295 unique_id port 184298 username mohammadmahdi 184298 kill_reason Another user logged on this global unique id 184298 mac 184298 bytes_out 0 184298 bytes_in 0 184298 station_ip 5.120.147.59 184298 port 242 184298 unique_id port 184299 username barzegar 184299 mac 184299 bytes_out 0 184299 bytes_in 0 184299 station_ip 5.119.166.2 184299 port 265 184299 unique_id port 184299 remote_ip 10.8.0.10 184303 username nekheei 184303 mac 184303 bytes_out 1819629 184303 bytes_in 28826373 184303 station_ip 5.119.54.223 184303 port 234 184303 unique_id port 184303 remote_ip 10.8.0.150 184305 username barzegar 184305 mac 184305 bytes_out 0 184305 bytes_in 0 184305 station_ip 5.119.166.2 184305 port 248 184305 unique_id port 184305 remote_ip 10.8.0.10 184307 username kalantary6037 184307 mac 184307 bytes_out 874716 184307 bytes_in 8400197 184307 station_ip 83.123.29.59 184307 port 262 184307 unique_id port 184307 remote_ip 10.8.0.50 184312 username pourshad 184312 mac 184312 bytes_out 3560936 184312 bytes_in 9623932 184312 station_ip 5.119.107.197 184312 port 246 184312 unique_id port 184312 remote_ip 10.8.0.42 184316 username barzegar 184316 mac 184316 bytes_out 0 184316 bytes_in 0 184316 station_ip 5.119.166.2 184316 port 242 184316 unique_id port 184316 remote_ip 10.8.0.10 184323 username khalili2 184323 kill_reason Another user logged on this global unique id 184323 mac 184323 bytes_out 0 184323 bytes_in 0 184323 station_ip 5.119.133.16 184323 port 241 184323 unique_id port 184323 remote_ip 10.8.0.118 184324 username saeeddamghani 184324 mac 184324 bytes_out 0 184324 bytes_in 0 184324 station_ip 217.60.175.202 184324 port 233 184324 unique_id port 184324 remote_ip 10.8.0.122 184325 username saeeddamghani 184325 mac 184325 bytes_out 1644 184325 bytes_in 4867 184325 station_ip 217.60.175.202 184325 port 234 184325 unique_id port 184325 remote_ip 10.8.0.122 184330 username farhad3 184330 kill_reason Another user logged on this global unique id 184330 mac 184330 bytes_out 0 184330 bytes_in 0 184330 station_ip 5.120.60.193 184330 port 261 184330 unique_id port 184330 remote_ip 10.8.0.222 184333 username saeeddamghani 184318 bytes_out 1745840 184318 bytes_in 19172848 184318 station_ip 31.57.143.152 184318 port 15728983 184318 nas_port_type Virtual 184318 remote_ip 5.5.5.159 184319 username malekpoir 184319 mac 184319 bytes_out 2458113 184319 bytes_in 20715141 184319 station_ip 5.120.90.111 184319 port 233 184319 unique_id port 184319 remote_ip 10.8.0.18 184321 username kalantary6037 184321 mac 184321 bytes_out 898407 184321 bytes_in 8151268 184321 station_ip 83.123.29.59 184321 port 234 184321 unique_id port 184321 remote_ip 10.8.0.50 184328 username milan 184328 kill_reason Another user logged on this global unique id 184328 mac 184328 bytes_out 0 184328 bytes_in 0 184328 station_ip 5.119.97.240 184328 port 251 184328 unique_id port 184332 username khademi 184332 kill_reason Another user logged on this global unique id 184332 mac 184332 bytes_out 0 184332 bytes_in 0 184332 station_ip 83.123.54.146 184332 port 240 184332 unique_id port 184334 username milan 184334 mac 184334 bytes_out 0 184334 bytes_in 0 184334 station_ip 5.119.97.240 184334 port 251 184334 unique_id port 184336 username khalili2 184336 kill_reason Another user logged on this global unique id 184336 mac 184336 bytes_out 0 184336 bytes_in 0 184336 station_ip 5.119.133.16 184336 port 241 184336 unique_id port 184342 username charkhandaz3496 184342 mac 184342 bytes_out 784611 184342 bytes_in 4110321 184342 station_ip 5.120.109.178 184342 port 239 184342 unique_id port 184342 remote_ip 10.8.0.90 184344 username aminvpn 184344 unique_id port 184344 terminate_cause Lost-Carrier 184344 bytes_out 232273 184344 bytes_in 387941 184344 station_ip 83.123.9.60 184344 port 15728984 184344 nas_port_type Virtual 184344 remote_ip 5.5.5.158 184352 username aminvpn 184352 mac 184352 bytes_out 0 184352 bytes_in 0 184352 station_ip 46.100.217.46 184352 port 259 184352 unique_id port 184352 remote_ip 10.8.0.58 184357 username pourshad 184357 mac 184357 bytes_out 438714 184357 bytes_in 1980128 184357 station_ip 5.119.107.197 184357 port 234 184357 unique_id port 184357 remote_ip 10.8.0.42 184360 username barzegar 184360 mac 184360 bytes_out 0 184360 bytes_in 0 184360 station_ip 5.119.18.211 184360 port 262 184360 unique_id port 184360 remote_ip 10.8.0.10 184361 username rashidi4690 184361 mac 184361 bytes_out 717862 184361 bytes_in 7348933 184361 station_ip 5.120.18.13 184361 port 234 184361 unique_id port 184361 remote_ip 10.8.0.242 184370 username kalantary6037 184370 mac 184370 bytes_out 275438 184370 bytes_in 1849880 184370 station_ip 83.123.120.67 184370 port 261 184370 unique_id port 184370 remote_ip 10.8.0.50 184372 username mohammadjavad 184372 mac 184372 bytes_out 59125 184372 bytes_in 1015296 184372 station_ip 83.123.114.87 184372 port 234 184372 unique_id port 184372 remote_ip 10.8.0.110 184376 username pourshad 184376 mac 184376 bytes_out 164487 184376 bytes_in 1204010 184376 station_ip 5.119.107.197 184376 port 261 184376 unique_id port 184376 remote_ip 10.8.0.42 184380 username kordestani 184380 mac 184380 bytes_out 617441 184380 bytes_in 3018137 184380 station_ip 151.235.120.21 184380 port 251 184380 unique_id port 184380 remote_ip 10.8.0.130 184385 username saeeddamghani 184385 mac 184385 bytes_out 2750 184385 bytes_in 5083 184385 station_ip 5.120.17.180 184385 port 262 184385 unique_id port 184385 remote_ip 10.8.0.122 184387 username mohammadmahdi 184387 mac 184387 bytes_out 2051646 184387 bytes_in 19271752 184387 station_ip 5.120.147.59 184387 port 261 184387 unique_id port 184387 remote_ip 10.8.0.30 184322 bytes_in 8242125 184322 station_ip 217.60.175.202 184322 port 239 184322 unique_id port 184322 remote_ip 10.8.0.122 184326 username pourshad 184326 mac 184326 bytes_out 320211 184326 bytes_in 4140960 184326 station_ip 5.119.107.197 184326 port 233 184326 unique_id port 184326 remote_ip 10.8.0.42 184327 username saeeddamghani 184327 mac 184327 bytes_out 0 184327 bytes_in 0 184327 station_ip 217.60.175.202 184327 port 239 184327 unique_id port 184327 remote_ip 10.8.0.122 184329 username saeeddamghani 184329 mac 184329 bytes_out 0 184329 bytes_in 0 184329 station_ip 217.60.175.202 184329 port 239 184329 unique_id port 184329 remote_ip 10.8.0.122 184331 username aminvpn 184331 mac 184331 bytes_out 0 184331 bytes_in 0 184331 station_ip 46.100.217.46 184331 port 239 184331 unique_id port 184331 remote_ip 10.8.0.58 184345 username hatami 184345 mac 184345 bytes_out 352505 184345 bytes_in 2621281 184345 station_ip 151.235.115.186 184345 port 233 184345 unique_id port 184345 remote_ip 10.8.0.98 184346 username aminvpn 184346 mac 184346 bytes_out 0 184346 bytes_in 0 184346 station_ip 46.100.217.46 184346 port 233 184346 unique_id port 184346 remote_ip 10.8.0.58 184347 username farhad3 184347 kill_reason Another user logged on this global unique id 184347 mac 184347 bytes_out 0 184347 bytes_in 0 184347 station_ip 5.120.60.193 184347 port 261 184347 unique_id port 184348 username mostafa_es78 184348 mac 184348 bytes_out 4459860 184348 bytes_in 37732390 184348 station_ip 83.122.95.216 184348 port 264 184348 unique_id port 184348 remote_ip 10.8.0.34 184349 username kordestani 184349 mac 184349 bytes_out 1447397 184349 bytes_in 17953399 184349 station_ip 151.235.106.92 184349 port 239 184349 unique_id port 184349 remote_ip 10.8.0.130 184350 username shadkam 184350 mac 184350 bytes_out 0 184350 bytes_in 0 184350 station_ip 83.123.50.142 184350 port 239 184350 unique_id port 184350 remote_ip 10.8.0.74 184351 username farhad3 184351 kill_reason Another user logged on this global unique id 184351 mac 184351 bytes_out 0 184351 bytes_in 0 184351 station_ip 5.120.60.193 184351 port 261 184351 unique_id port 184353 username motamedi9772 184353 mac 184353 bytes_out 0 184353 bytes_in 0 184353 station_ip 83.123.78.135 184353 port 259 184353 unique_id port 184353 remote_ip 10.8.0.154 184355 username farhad3 184366 station_ip 5.120.3.131 184355 kill_reason Another user logged on this global unique id 184355 mac 184355 bytes_out 0 184355 bytes_in 0 184355 station_ip 5.120.60.193 184355 port 261 184355 unique_id port 184356 username farhad3 184356 mac 184356 bytes_out 0 184356 bytes_in 0 184356 station_ip 5.120.60.193 184356 port 261 184356 unique_id port 184362 username farhad3 184362 mac 184362 bytes_out 3040926 184362 bytes_in 28747846 184362 station_ip 5.120.60.193 184362 port 259 184362 unique_id port 184362 remote_ip 10.8.0.222 184364 username khademi 184364 kill_reason Another user logged on this global unique id 184364 mac 184364 bytes_out 0 184364 bytes_in 0 184364 station_ip 83.123.54.146 184364 port 240 184364 unique_id port 184365 username yaghobi 184365 mac 184365 bytes_out 415578 184365 bytes_in 936217 184365 station_ip 83.123.60.89 184365 port 261 184365 unique_id port 184365 remote_ip 10.8.0.138 184371 username khalili2 184371 kill_reason Another user logged on this global unique id 184371 mac 184371 bytes_out 0 184371 bytes_in 0 184371 station_ip 5.119.133.16 184371 port 241 184371 unique_id port 184374 username mirzaei6046 184374 mac 184374 bytes_out 0 184333 mac 184333 bytes_out 0 184333 bytes_in 0 184333 station_ip 217.60.175.202 184333 port 239 184333 unique_id port 184333 remote_ip 10.8.0.122 184335 username godarzi 184335 mac 184335 bytes_out 2173 184335 bytes_in 4834 184335 station_ip 5.119.177.41 184335 port 242 184335 unique_id port 184335 remote_ip 10.8.0.38 184337 username sedighe 184337 mac 184337 bytes_out 1160085 184337 bytes_in 13704762 184337 station_ip 83.123.127.105 184337 port 233 184337 unique_id port 184337 remote_ip 10.8.0.46 184338 username aminvpn 184338 mac 184338 bytes_out 0 184338 bytes_in 0 184338 station_ip 46.100.217.46 184338 port 233 184338 unique_id port 184338 remote_ip 10.8.0.58 184339 username aminvpn 184339 unique_id port 184339 terminate_cause User-Request 184339 bytes_out 1259103 184339 bytes_in 21355370 184339 station_ip 5.120.124.46 184339 port 15728985 184339 nas_port_type Virtual 184339 remote_ip 5.5.5.157 184340 username soleymani5056 184340 mac 184340 bytes_out 43981 184340 bytes_in 52155 184340 station_ip 5.119.211.159 184340 port 233 184340 unique_id port 184340 remote_ip 10.8.0.226 184341 username farhad3 184341 kill_reason Another user logged on this global unique id 184341 mac 184341 bytes_out 0 184341 bytes_in 0 184341 station_ip 5.120.60.193 184341 port 261 184341 unique_id port 184343 username farhad3 184343 kill_reason Another user logged on this global unique id 184343 mac 184343 bytes_out 0 184343 bytes_in 0 184343 station_ip 5.120.60.193 184343 port 261 184343 unique_id port 184354 username mirzaei6046 184354 kill_reason Another user logged on this global unique id 184354 mac 184354 bytes_out 0 184354 bytes_in 0 184354 station_ip 5.120.112.72 184354 port 249 184354 unique_id port 184354 remote_ip 10.8.0.246 184358 username aminvpn 184358 mac 184358 bytes_out 0 184358 bytes_in 0 184358 station_ip 46.100.217.46 184358 port 234 184358 unique_id port 184358 remote_ip 10.8.0.58 184359 username barzegar 184359 mac 184359 bytes_out 0 184359 bytes_in 0 184359 station_ip 5.119.18.211 184359 port 234 184359 unique_id port 184359 remote_ip 10.8.0.10 184363 username shadkam 184363 mac 184363 bytes_out 3457211 184363 bytes_in 35805622 184363 station_ip 83.123.50.142 184363 port 251 184363 unique_id port 184363 remote_ip 10.8.0.74 184366 username dortaj3792 184366 mac 184366 bytes_out 4291893 184366 bytes_in 31978285 184366 port 236 184366 unique_id port 184366 remote_ip 10.8.0.102 184367 username barzegar 184367 mac 184367 bytes_out 0 184367 bytes_in 0 184367 station_ip 5.119.18.211 184367 port 251 184367 unique_id port 184367 remote_ip 10.8.0.10 184368 username mohammadjavad 184368 mac 184368 bytes_out 1018543 184368 bytes_in 13945202 184368 station_ip 83.123.114.87 184368 port 234 184368 unique_id port 184368 remote_ip 10.8.0.110 184369 username saeed9658 184369 mac 184369 bytes_out 879787 184369 bytes_in 7665307 184369 station_ip 5.119.244.120 184369 port 246 184369 unique_id port 184369 remote_ip 10.8.0.162 184373 username milan 184373 mac 184373 bytes_out 230746 184373 bytes_in 333069 184373 station_ip 5.119.198.160 184373 port 234 184373 unique_id port 184373 remote_ip 10.8.0.182 184375 username barzegar 184375 mac 184375 bytes_out 0 184375 bytes_in 0 184375 station_ip 5.119.18.211 184375 port 262 184375 unique_id port 184375 remote_ip 10.8.0.10 184378 username saeeddamghani 184378 mac 184378 bytes_out 773685 184378 bytes_in 6121148 184378 station_ip 5.120.17.180 184378 port 234 184374 bytes_in 0 184374 station_ip 5.120.112.72 184374 port 249 184374 unique_id port 184377 username aminvpn 184377 mac 184377 bytes_out 2935005 184377 bytes_in 9182108 184377 station_ip 5.120.73.50 184377 port 246 184377 unique_id port 184377 remote_ip 10.8.0.58 184379 username pourshad 184379 mac 184379 bytes_out 16134 184379 bytes_in 24228 184379 station_ip 5.119.107.197 184379 port 262 184379 unique_id port 184379 remote_ip 10.8.0.42 184381 username barzegar 184381 mac 184381 bytes_out 0 184381 bytes_in 0 184381 station_ip 5.119.18.211 184381 port 262 184381 unique_id port 184381 remote_ip 10.8.0.10 184382 username shadkam 184382 mac 184382 bytes_out 3786533 184382 bytes_in 30866171 184382 station_ip 83.123.70.251 184382 port 259 184382 unique_id port 184382 remote_ip 10.8.0.74 184386 username saeeddamghani 184386 mac 184386 bytes_out 0 184386 bytes_in 0 184386 station_ip 5.120.17.180 184386 port 251 184386 unique_id port 184386 remote_ip 10.8.0.122 184388 username motamedi9772 184388 mac 184388 bytes_out 221251 184388 bytes_in 1787726 184388 station_ip 83.123.84.99 184388 port 246 184388 unique_id port 184388 remote_ip 10.8.0.154 184391 username charkhandaz3496 184391 kill_reason Another user logged on this global unique id 184391 mac 184391 bytes_out 0 184391 bytes_in 0 184391 station_ip 5.120.109.178 184391 port 242 184391 unique_id port 184391 remote_ip 10.8.0.90 184393 username saeeddamghani 184393 mac 184393 bytes_out 2177 184393 bytes_in 4422 184393 station_ip 5.120.17.180 184393 port 259 184393 unique_id port 184393 remote_ip 10.8.0.122 184397 username saeeddamghani 184397 mac 184397 bytes_out 0 184397 bytes_in 0 184397 station_ip 5.120.17.180 184397 port 262 184397 unique_id port 184397 remote_ip 10.8.0.122 184399 username mohammadjavad 184399 mac 184399 bytes_out 27512 184399 bytes_in 48870 184399 station_ip 83.123.38.119 184399 port 251 184399 unique_id port 184399 remote_ip 10.8.0.110 184405 username barzegar 184405 mac 184405 bytes_out 1998 184405 bytes_in 4193 184405 station_ip 5.119.18.211 184405 port 264 184405 unique_id port 184405 remote_ip 10.8.0.10 184406 username aminvpn 184406 mac 184406 bytes_out 0 184406 bytes_in 0 184406 station_ip 5.120.73.50 184406 port 234 184406 unique_id port 184406 remote_ip 10.8.0.58 184408 username rashidi4690 184408 mac 184408 bytes_out 563117 184408 bytes_in 8213959 184408 station_ip 5.120.18.13 184408 port 261 184408 unique_id port 184408 remote_ip 10.8.0.242 184411 username meysam 184411 mac 184411 bytes_out 0 184411 bytes_in 0 184411 station_ip 188.159.254.103 184411 port 249 184411 unique_id port 184418 username aminvpn 184418 mac 184418 bytes_out 46328 184418 bytes_in 53946 184418 station_ip 46.100.217.46 184418 port 249 184418 unique_id port 184418 remote_ip 10.8.0.58 184419 username aminvpn 184419 mac 184419 bytes_out 0 184419 bytes_in 0 184419 station_ip 5.120.73.50 184419 port 261 184419 unique_id port 184419 remote_ip 10.8.0.58 184422 username aminvpn 184422 mac 184422 bytes_out 66216 184422 bytes_in 78218 184422 station_ip 46.100.217.46 184422 port 249 184422 unique_id port 184422 remote_ip 10.8.0.58 184425 username saeeddamghani 184425 mac 184425 bytes_out 185506 184425 bytes_in 947889 184425 station_ip 5.120.17.180 184425 port 262 184425 unique_id port 184425 remote_ip 10.8.0.122 184426 username aminvpn 184426 mac 184426 bytes_out 0 184426 bytes_in 0 184426 station_ip 46.100.217.46 184378 unique_id port 184378 remote_ip 10.8.0.122 184383 username mosi 184383 mac 184383 bytes_out 766662 184383 bytes_in 2114632 184383 station_ip 94.24.22.107 184383 port 239 184383 unique_id port 184383 remote_ip 10.8.0.142 184384 username pourshad 184384 mac 184384 bytes_out 16160 184384 bytes_in 29283 184384 station_ip 5.119.107.197 184384 port 251 184384 unique_id port 184384 remote_ip 10.8.0.42 184389 username meysam 184389 kill_reason Another user logged on this global unique id 184389 mac 184389 bytes_out 0 184389 bytes_in 0 184389 station_ip 188.159.254.103 184389 port 249 184389 unique_id port 184389 remote_ip 10.8.0.158 184392 username mohammadjavad 184392 mac 184392 bytes_out 18303 184392 bytes_in 25764 184392 station_ip 83.123.38.119 184392 port 251 184392 unique_id port 184392 remote_ip 10.8.0.110 184396 username mohammadjavad 184396 mac 184396 bytes_out 0 184396 bytes_in 0 184396 station_ip 83.123.38.119 184396 port 251 184396 unique_id port 184396 remote_ip 10.8.0.110 184400 username mosi 184400 mac 184400 bytes_out 20753 184400 bytes_in 14996 184400 station_ip 94.24.22.107 184400 port 246 184400 unique_id port 184400 remote_ip 10.8.0.142 184402 username aminvpn 184402 mac 184402 bytes_out 0 184402 bytes_in 0 184402 station_ip 5.120.73.50 184402 port 246 184402 unique_id port 184402 remote_ip 10.8.0.58 184403 username saeeddamghani 184403 mac 184403 bytes_out 0 184403 bytes_in 0 184403 station_ip 5.120.17.180 184403 port 234 184403 unique_id port 184403 remote_ip 10.8.0.122 184404 username aminvpn 184404 mac 184404 bytes_out 38565 184404 bytes_in 72396 184404 station_ip 46.100.217.46 184404 port 251 184404 unique_id port 184404 remote_ip 10.8.0.58 184414 username saeeddamghani 184414 mac 184414 bytes_out 0 184414 bytes_in 0 184414 station_ip 5.120.17.180 184414 port 249 184414 unique_id port 184414 remote_ip 10.8.0.122 184420 username charkhandaz3496 184420 mac 184420 bytes_out 3648 184420 bytes_in 4896 184420 station_ip 5.120.109.178 184420 port 234 184420 unique_id port 184420 remote_ip 10.8.0.90 184421 username zahra1101 184421 kill_reason Another user logged on this global unique id 184421 mac 184421 bytes_out 0 184421 bytes_in 0 184421 station_ip 5.120.150.182 184421 port 242 184421 unique_id port 184421 remote_ip 10.8.0.250 184431 username aminvpn 184431 mac 184431 bytes_out 0 184431 bytes_in 0 184431 station_ip 46.100.217.46 184431 port 261 184431 unique_id port 184431 remote_ip 10.8.0.58 184439 username zahra1101 184439 mac 184439 bytes_out 0 184439 bytes_in 0 184439 station_ip 5.120.150.182 184439 port 242 184439 unique_id port 184439 remote_ip 10.8.0.250 184449 username barzegar 184449 mac 184449 bytes_out 7459 184449 bytes_in 12472 184449 station_ip 5.119.18.211 184449 port 261 184449 unique_id port 184449 remote_ip 10.8.0.10 184453 username aminvpn 184453 mac 184453 bytes_out 64275 184453 bytes_in 81324 184453 station_ip 46.100.217.46 184453 port 239 184453 unique_id port 184453 remote_ip 10.8.0.58 184454 username yaghobi 184454 mac 184454 bytes_out 549000 184454 bytes_in 3107826 184454 station_ip 83.123.14.195 184454 port 242 184454 unique_id port 184454 remote_ip 10.8.0.138 184455 username yaghobi 184455 mac 184455 bytes_out 45749 184455 bytes_in 49775 184455 station_ip 83.123.14.195 184455 port 239 184455 unique_id port 184455 remote_ip 10.8.0.138 184456 username sedighe 184456 mac 184456 bytes_out 39612 184456 bytes_in 51717 184390 username shadkam 184390 mac 184390 bytes_out 326024 184390 bytes_in 3454146 184390 station_ip 83.123.83.87 184390 port 259 184390 unique_id port 184390 remote_ip 10.8.0.74 184394 username saeeddamghani 184394 mac 184394 bytes_out 0 184394 bytes_in 0 184394 station_ip 5.120.17.180 184394 port 251 184394 unique_id port 184394 remote_ip 10.8.0.122 184395 username mohammadjavad 184395 mac 184395 bytes_out 0 184395 bytes_in 0 184395 station_ip 83.123.38.119 184395 port 251 184395 unique_id port 184395 remote_ip 10.8.0.110 184398 username aminvpn 184398 mac 184398 bytes_out 221628 184398 bytes_in 271761 184398 station_ip 5.120.73.50 184398 port 234 184398 unique_id port 184398 remote_ip 10.8.0.58 184401 username pourshad 184401 mac 184401 bytes_out 5891916 184401 bytes_in 7556826 184401 station_ip 5.119.107.197 184401 port 264 184401 unique_id port 184401 remote_ip 10.8.0.42 184407 username mostafa_es78 184407 mac 184407 bytes_out 476699 184407 bytes_in 7310040 184407 station_ip 83.122.95.216 184407 port 262 184407 unique_id port 184407 remote_ip 10.8.0.34 184409 username aminvpn 184409 mac 184409 bytes_out 53139 184409 bytes_in 63245 184409 station_ip 46.100.217.46 184409 port 265 184409 unique_id port 184409 remote_ip 10.8.0.58 184410 username kalantary6037 184410 mac 184410 bytes_out 335875 184410 bytes_in 4875004 184410 station_ip 83.123.99.43 184410 port 264 184410 unique_id port 184410 remote_ip 10.8.0.50 184412 username aminvpn 184412 mac 184412 bytes_out 0 184412 bytes_in 0 184412 station_ip 5.120.73.50 184412 port 234 184412 unique_id port 184412 remote_ip 10.8.0.58 184413 username aminvpn 184413 mac 184413 bytes_out 0 184413 bytes_in 0 184413 station_ip 46.100.217.46 184413 port 249 184413 unique_id port 184413 remote_ip 10.8.0.58 184415 username charkhandaz3496 184415 mac 184415 bytes_out 0 184415 bytes_in 0 184415 station_ip 5.120.109.178 184415 port 242 184415 unique_id port 184416 username aminvpn 184416 mac 184416 bytes_out 0 184416 bytes_in 0 184416 station_ip 5.120.73.50 184416 port 234 184416 unique_id port 184416 remote_ip 10.8.0.58 184417 username saeeddamghani 184417 mac 184417 bytes_out 0 184417 bytes_in 0 184417 station_ip 5.120.17.180 184417 port 234 184417 unique_id port 184417 remote_ip 10.8.0.122 184423 username soleymani5056 184423 mac 184423 bytes_out 28986 184423 bytes_in 31028 184423 station_ip 5.120.161.49 184423 port 261 184423 unique_id port 184423 remote_ip 10.8.0.226 184424 username aminvpn 184424 mac 184424 bytes_out 0 184424 bytes_in 0 184424 station_ip 5.120.73.50 184424 port 265 184424 unique_id port 184424 remote_ip 10.8.0.58 184428 username aminvpn 184428 mac 184428 bytes_out 0 184428 bytes_in 0 184428 station_ip 5.120.73.50 184428 port 265 184428 unique_id port 184428 remote_ip 10.8.0.58 184430 username dortaj3792 184430 mac 184430 bytes_out 825539 184430 bytes_in 6052065 184430 station_ip 5.120.3.131 184430 port 259 184430 unique_id port 184430 remote_ip 10.8.0.102 184432 username aminvpn 184432 mac 184432 bytes_out 0 184432 bytes_in 0 184432 station_ip 5.120.73.50 184432 port 259 184432 unique_id port 184432 remote_ip 10.8.0.58 184434 username charkhandaz3496 184434 mac 184434 bytes_out 115825 184434 bytes_in 365368 184434 station_ip 5.119.178.166 184434 port 249 184434 unique_id port 184434 remote_ip 10.8.0.90 184437 username zahra1101 184437 mac 184437 bytes_out 0 184426 port 261 184426 unique_id port 184426 remote_ip 10.8.0.58 184427 username barzegar 184427 mac 184427 bytes_out 0 184427 bytes_in 0 184427 station_ip 5.119.18.211 184427 port 261 184427 unique_id port 184427 remote_ip 10.8.0.10 184429 username saeeddamghani 184429 mac 184429 bytes_out 0 184429 bytes_in 0 184429 station_ip 5.120.17.180 184429 port 262 184429 unique_id port 184429 remote_ip 10.8.0.122 184433 username aminvpn 184433 mac 184433 bytes_out 0 184433 bytes_in 0 184433 station_ip 46.100.217.46 184433 port 265 184433 unique_id port 184433 remote_ip 10.8.0.58 184435 username aminvpn 184435 mac 184435 bytes_out 0 184435 bytes_in 0 184435 station_ip 5.120.73.50 184435 port 259 184435 unique_id port 184435 remote_ip 10.8.0.58 184436 username aminvpn 184436 mac 184436 bytes_out 0 184436 bytes_in 0 184436 station_ip 46.100.217.46 184436 port 265 184436 unique_id port 184436 remote_ip 10.8.0.58 184440 username yaghobi 184440 mac 184440 bytes_out 805066 184440 bytes_in 5467258 184440 station_ip 83.123.14.195 184440 port 264 184440 unique_id port 184440 remote_ip 10.8.0.138 184442 username fezealinaghi 184442 kill_reason Another user logged on this global unique id 184442 mac 184442 bytes_out 0 184442 bytes_in 0 184442 station_ip 83.123.37.152 184442 port 236 184442 unique_id port 184442 remote_ip 10.8.0.202 184443 username saeeddamghani 184443 mac 184443 bytes_out 143730 184443 bytes_in 353426 184443 station_ip 5.120.17.180 184443 port 262 184443 unique_id port 184443 remote_ip 10.8.0.122 184445 username houshang 184445 mac 184445 bytes_out 7412 184445 bytes_in 5053 184445 station_ip 5.119.125.186 184445 port 259 184445 unique_id port 184445 remote_ip 10.8.0.82 184447 username aminvpn 184447 mac 184447 bytes_out 0 184447 bytes_in 0 184447 station_ip 5.120.73.50 184447 port 249 184447 unique_id port 184447 remote_ip 10.8.0.58 184448 username aminvpn 184448 mac 184448 bytes_out 0 184448 bytes_in 0 184448 station_ip 46.100.217.46 184448 port 262 184448 unique_id port 184448 remote_ip 10.8.0.58 184451 username sabaghnezhad 184451 mac 184451 bytes_out 345125 184451 bytes_in 1007994 184451 station_ip 83.123.44.229 184451 port 251 184451 unique_id port 184451 remote_ip 10.8.0.66 184459 username sedighe 184459 mac 184459 bytes_out 39453 184459 bytes_in 40325 184459 station_ip 83.123.30.86 184459 port 239 184459 unique_id port 184459 remote_ip 10.8.0.46 184464 username sedighe 184464 mac 184464 bytes_out 15525 184464 bytes_in 20629 184464 station_ip 83.123.30.86 184464 port 251 184464 unique_id port 184464 remote_ip 10.8.0.46 184468 username rashidi4690 184468 mac 184468 bytes_out 341866 184468 bytes_in 943522 184468 station_ip 5.120.18.13 184468 port 262 184468 unique_id port 184468 remote_ip 10.8.0.242 184470 username aminvpn 184470 mac 184470 bytes_out 110969 184470 bytes_in 850567 184470 station_ip 46.100.217.46 184470 port 234 184470 unique_id port 184470 remote_ip 10.8.0.58 184471 username hosseine 184471 mac 184471 bytes_out 2239418 184471 bytes_in 23118073 184471 station_ip 83.123.47.201 184471 port 263 184471 unique_id port 184471 remote_ip 10.8.0.54 184479 username aminvpn 184479 mac 184479 bytes_out 0 184479 bytes_in 0 184479 station_ip 46.100.217.46 184479 port 234 184479 unique_id port 184479 remote_ip 10.8.0.58 184488 username godarzi 184488 mac 184488 bytes_out 0 184488 bytes_in 0 184488 station_ip 5.119.177.41 184488 port 233 184437 bytes_in 0 184437 station_ip 5.120.150.182 184437 port 242 184437 unique_id port 184438 username aminvpn 184438 mac 184438 bytes_out 0 184438 bytes_in 0 184438 station_ip 5.120.73.50 184438 port 249 184438 unique_id port 184438 remote_ip 10.8.0.58 184441 username aminvpn 184441 mac 184441 bytes_out 0 184441 bytes_in 0 184441 station_ip 46.100.217.46 184441 port 265 184441 unique_id port 184441 remote_ip 10.8.0.58 184444 username aminvpn 184444 mac 184444 bytes_out 0 184444 bytes_in 0 184444 station_ip 5.120.73.50 184444 port 249 184444 unique_id port 184444 remote_ip 10.8.0.58 184446 username aminvpn 184446 mac 184446 bytes_out 0 184446 bytes_in 0 184446 station_ip 46.100.217.46 184446 port 262 184446 unique_id port 184446 remote_ip 10.8.0.58 184450 username sedighe 184450 mac 184450 bytes_out 180810 184450 bytes_in 269206 184450 station_ip 83.123.127.105 184450 port 239 184450 unique_id port 184450 remote_ip 10.8.0.46 184452 username aminvpn 184452 mac 184452 bytes_out 0 184452 bytes_in 0 184452 station_ip 5.120.73.50 184452 port 264 184452 unique_id port 184452 remote_ip 10.8.0.58 184457 username shadkam 184457 mac 184457 bytes_out 143686 184457 bytes_in 1380758 184457 station_ip 83.123.71.119 184457 port 249 184457 unique_id port 184457 remote_ip 10.8.0.74 184460 username fezealinaghi 184460 kill_reason Another user logged on this global unique id 184460 mac 184460 bytes_out 0 184460 bytes_in 0 184460 station_ip 83.123.37.152 184460 port 236 184460 unique_id port 184461 username meysam 184461 mac 184461 bytes_out 2525609 184461 bytes_in 33742883 184461 station_ip 188.159.254.103 184461 port 234 184461 unique_id port 184461 remote_ip 10.8.0.158 184462 username mosi 184462 mac 184462 bytes_out 264264 184462 bytes_in 462314 184462 station_ip 94.24.22.107 184462 port 246 184462 unique_id port 184462 remote_ip 10.8.0.142 184467 username saeeddamghani 184467 mac 184467 bytes_out 321258 184467 bytes_in 2446626 184467 station_ip 5.120.17.180 184467 port 234 184467 unique_id port 184467 remote_ip 10.8.0.122 184472 username kalantary6037 184472 mac 184472 bytes_out 2503960 184472 bytes_in 25300184 184472 station_ip 83.123.21.219 184472 port 261 184472 unique_id port 184472 remote_ip 10.8.0.50 184473 username shadkam 184473 mac 184473 bytes_out 766303 184473 bytes_in 11414883 184473 station_ip 83.123.111.41 184473 port 249 184473 unique_id port 184473 remote_ip 10.8.0.74 184476 username dortaj3792 184476 mac 184476 bytes_out 165831 184476 bytes_in 194611 184476 station_ip 5.120.3.131 184476 port 251 184476 unique_id port 184476 remote_ip 10.8.0.102 184477 username saeeddamghani 184477 mac 184477 bytes_out 0 184477 bytes_in 0 184477 station_ip 5.120.17.180 184477 port 251 184477 unique_id port 184477 remote_ip 10.8.0.122 184478 username kalantary6037 184478 mac 184478 bytes_out 1483015 184478 bytes_in 17070157 184478 station_ip 83.123.21.219 184478 port 234 184478 unique_id port 184478 remote_ip 10.8.0.50 184484 username kalantary6037 184484 mac 184484 bytes_out 514718 184484 bytes_in 3387225 184484 station_ip 83.123.21.219 184484 port 261 184484 unique_id port 184484 remote_ip 10.8.0.50 184486 username houshang 184486 kill_reason Another user logged on this global unique id 184486 mac 184486 bytes_out 0 184486 bytes_in 0 184486 station_ip 5.119.125.186 184486 port 259 184486 unique_id port 184491 username mostafa_es78 184491 mac 184491 bytes_out 1882388 184491 bytes_in 20488316 184456 station_ip 83.123.127.105 184456 port 261 184456 unique_id port 184456 remote_ip 10.8.0.46 184458 username saeeddamghani 184458 mac 184458 bytes_out 0 184458 bytes_in 0 184458 station_ip 5.120.17.180 184458 port 251 184458 unique_id port 184458 remote_ip 10.8.0.122 184463 username houshang 184463 kill_reason Another user logged on this global unique id 184463 mac 184463 bytes_out 0 184463 bytes_in 0 184463 station_ip 5.119.125.186 184463 port 259 184463 unique_id port 184463 remote_ip 10.8.0.82 184465 username shadkam 184465 mac 184465 bytes_out 1273101 184465 bytes_in 15751079 184465 station_ip 83.123.116.201 184465 port 249 184465 unique_id port 184465 remote_ip 10.8.0.74 184466 username sekonji0496 184466 mac 184466 bytes_out 0 184466 bytes_in 0 184466 station_ip 83.123.103.32 184466 port 249 184466 unique_id port 184466 remote_ip 10.8.0.62 184469 username godarzi 184469 kill_reason Another user logged on this global unique id 184469 mac 184469 bytes_out 0 184469 bytes_in 0 184469 station_ip 5.119.177.41 184469 port 233 184469 unique_id port 184469 remote_ip 10.8.0.38 184474 username fezealinaghi 184474 kill_reason Another user logged on this global unique id 184474 mac 184474 bytes_out 0 184474 bytes_in 0 184474 station_ip 83.123.37.152 184474 port 236 184474 unique_id port 184475 username aminvpn 184475 unique_id port 184475 terminate_cause User-Request 184475 bytes_out 21754951 184475 bytes_in 127249571 184475 station_ip 5.160.112.23 184475 port 15728986 184475 nas_port_type Virtual 184475 remote_ip 5.5.5.156 184480 username aminvpn 184480 mac 184480 bytes_out 1644 184480 bytes_in 5142 184480 station_ip 46.100.217.46 184480 port 234 184480 unique_id port 184480 remote_ip 10.8.0.58 184481 username barzegar 184481 mac 184481 bytes_out 788055 184481 bytes_in 1348377 184481 station_ip 5.119.18.211 184481 port 242 184481 unique_id port 184481 remote_ip 10.8.0.10 184482 username fezealinaghi 184482 kill_reason Another user logged on this global unique id 184482 mac 184482 bytes_out 0 184482 bytes_in 0 184482 station_ip 83.123.37.152 184482 port 236 184482 unique_id port 184483 username saeeddamghani 184483 mac 184483 bytes_out 55612 184483 bytes_in 114029 184483 station_ip 5.120.17.180 184483 port 234 184483 unique_id port 184483 remote_ip 10.8.0.122 184485 username pourshad 184485 mac 184485 bytes_out 1661 184485 bytes_in 3566 184485 station_ip 5.119.107.197 184485 port 264 184485 unique_id port 184485 remote_ip 10.8.0.42 184487 username barzegar 184487 mac 184487 bytes_out 9783 184487 bytes_in 18347 184487 station_ip 5.119.18.211 184487 port 262 184487 unique_id port 184487 remote_ip 10.8.0.10 184489 username saeeddamghani 184489 mac 184489 bytes_out 19335 184489 bytes_in 32611 184489 station_ip 5.120.17.180 184489 port 234 184489 unique_id port 184489 remote_ip 10.8.0.122 184493 username saeeddamghani 184493 mac 184493 bytes_out 0 184493 bytes_in 0 184493 station_ip 5.120.17.180 184493 port 249 184493 unique_id port 184493 remote_ip 10.8.0.122 184495 username barzegar 184495 mac 184495 bytes_out 0 184495 bytes_in 0 184495 station_ip 5.119.18.211 184495 port 251 184495 unique_id port 184495 remote_ip 10.8.0.10 184499 username charkhandaz3496 184499 mac 184499 bytes_out 322637 184499 bytes_in 2245034 184499 station_ip 5.119.178.166 184499 port 234 184499 unique_id port 184499 remote_ip 10.8.0.90 184502 username aminvpn 184502 mac 184502 bytes_out 0 184502 bytes_in 0 184502 station_ip 5.120.115.130 184502 port 259 184502 unique_id port 184488 unique_id port 184490 username sedighe 184490 mac 184490 bytes_out 219615 184490 bytes_in 552510 184490 station_ip 83.123.30.86 184490 port 246 184490 unique_id port 184490 remote_ip 10.8.0.46 184492 username meysam 184492 mac 184492 bytes_out 1422810 184492 bytes_in 18036414 184492 station_ip 188.159.254.103 184492 port 251 184492 unique_id port 184492 remote_ip 10.8.0.158 184494 username mostafa_es78 184494 mac 184494 bytes_out 61127 184494 bytes_in 146759 184494 station_ip 83.122.8.56 184494 port 246 184494 unique_id port 184494 remote_ip 10.8.0.34 184498 username houshang 184498 mac 184498 bytes_out 0 184498 bytes_in 0 184498 station_ip 5.119.125.186 184498 port 259 184498 unique_id port 184501 username mohammadjavad 184501 mac 184501 bytes_out 186548 184501 bytes_in 769533 184501 station_ip 83.123.44.177 184501 port 234 184501 unique_id port 184501 remote_ip 10.8.0.110 184506 username barzegar 184506 mac 184506 bytes_out 0 184506 bytes_in 0 184506 station_ip 5.119.18.211 184506 port 236 184506 unique_id port 184506 remote_ip 10.8.0.10 184509 username mohammadjavad 184509 mac 184509 bytes_out 0 184509 bytes_in 0 184509 station_ip 83.123.123.189 184509 port 259 184509 unique_id port 184509 remote_ip 10.8.0.110 184513 username aminvpn 184513 mac 184513 bytes_out 668109 184513 bytes_in 8547406 184513 station_ip 46.100.217.46 184513 port 261 184513 unique_id port 184513 remote_ip 10.8.0.58 184516 username barzegar 184516 mac 184516 bytes_out 0 184516 bytes_in 0 184516 station_ip 5.119.18.211 184516 port 262 184516 unique_id port 184516 remote_ip 10.8.0.10 184517 username pourshad 184517 mac 184517 bytes_out 1661 184517 bytes_in 3460 184517 station_ip 5.119.107.197 184517 port 264 184517 unique_id port 184517 remote_ip 10.8.0.42 184521 username hajghani 184521 mac 184521 bytes_out 135669 184521 bytes_in 633720 184521 station_ip 89.47.137.24 184521 port 234 184521 unique_id port 184521 remote_ip 10.8.0.106 184526 username barzegar 184526 mac 184526 bytes_out 0 184526 bytes_in 0 184526 station_ip 5.119.18.211 184526 port 234 184526 unique_id port 184526 remote_ip 10.8.0.10 184528 username aminvpn 184528 mac 184528 bytes_out 0 184528 bytes_in 0 184528 station_ip 46.100.217.46 184528 port 264 184528 unique_id port 184528 remote_ip 10.8.0.58 184529 username aminvpn 184529 mac 184529 bytes_out 0 184529 bytes_in 0 184529 station_ip 46.100.217.46 184529 port 265 184529 unique_id port 184529 remote_ip 10.8.0.58 184534 username farhad3 184534 mac 184534 bytes_out 532076 184534 bytes_in 2535690 184534 station_ip 5.120.60.193 184534 port 246 184534 unique_id port 184534 remote_ip 10.8.0.222 184535 username dortaj3792 184535 mac 184535 bytes_out 13400309 184535 bytes_in 45677866 184535 station_ip 5.120.3.131 184535 port 242 184535 unique_id port 184535 remote_ip 10.8.0.102 184536 username farhad3 184536 mac 184536 bytes_out 0 184536 bytes_in 0 184536 station_ip 5.120.60.193 184536 port 234 184536 unique_id port 184536 remote_ip 10.8.0.222 184539 username shadkam 184539 mac 184539 bytes_out 1671493 184539 bytes_in 12900180 184539 station_ip 83.123.27.144 184539 port 236 184539 unique_id port 184539 remote_ip 10.8.0.74 184542 username kamali3 184542 mac 184542 bytes_out 3444670 184542 bytes_in 35405705 184542 station_ip 5.202.133.237 184542 port 263 184542 unique_id port 184542 remote_ip 10.8.0.146 184546 username sedighe 184546 mac 184491 station_ip 83.122.8.56 184491 port 249 184491 unique_id port 184491 remote_ip 10.8.0.34 184496 username saeeddamghani 184496 mac 184496 bytes_out 0 184496 bytes_in 0 184496 station_ip 5.120.17.180 184496 port 249 184496 unique_id port 184496 remote_ip 10.8.0.122 184497 username barzegar 184497 mac 184497 bytes_out 4364 184497 bytes_in 6557 184497 station_ip 5.119.18.211 184497 port 246 184497 unique_id port 184497 remote_ip 10.8.0.10 184500 username aminvpn 184500 mac 184500 bytes_out 0 184500 bytes_in 0 184500 station_ip 46.100.217.46 184500 port 259 184500 unique_id port 184500 remote_ip 10.8.0.58 184503 username mohammadjavad 184503 mac 184503 bytes_out 0 184503 bytes_in 0 184503 station_ip 83.123.123.189 184503 port 234 184503 unique_id port 184503 remote_ip 10.8.0.110 184510 username fezealinaghi 184510 mac 184510 bytes_out 1350501 184510 bytes_in 16799134 184510 station_ip 83.123.37.152 184510 port 249 184510 unique_id port 184510 remote_ip 10.8.0.202 184511 username mohammadjavad 184511 mac 184511 bytes_out 0 184511 bytes_in 0 184511 station_ip 83.123.123.189 184511 port 249 184511 unique_id port 184511 remote_ip 10.8.0.110 184512 username yaghobi 184512 mac 184512 bytes_out 280218 184512 bytes_in 615393 184512 station_ip 83.123.86.239 184512 port 234 184512 unique_id port 184512 remote_ip 10.8.0.138 184514 username rashidi4690 184514 mac 184514 bytes_out 1281127 184514 bytes_in 6350518 184514 station_ip 5.120.18.13 184514 port 246 184514 unique_id port 184514 remote_ip 10.8.0.242 184519 username farhad3 184519 mac 184519 bytes_out 499454 184519 bytes_in 2118721 184519 station_ip 5.120.60.193 184519 port 246 184519 unique_id port 184519 remote_ip 10.8.0.222 184520 username barzegar 184520 mac 184520 bytes_out 0 184520 bytes_in 0 184520 station_ip 5.119.18.211 184520 port 236 184520 unique_id port 184520 remote_ip 10.8.0.10 184524 username barzegar 184524 mac 184524 bytes_out 0 184524 bytes_in 0 184524 station_ip 5.119.18.211 184524 port 234 184524 unique_id port 184524 remote_ip 10.8.0.10 184530 username meysam 184530 mac 184530 bytes_out 267240 184530 bytes_in 2678067 184530 station_ip 188.159.254.103 184530 port 249 184530 unique_id port 184530 remote_ip 10.8.0.158 184532 username mohammadjavad 184532 mac 184532 bytes_out 331301 184532 bytes_in 5333427 184532 station_ip 83.123.123.189 184532 port 262 184532 unique_id port 184532 remote_ip 10.8.0.110 184533 username barzegar 184533 mac 184533 bytes_out 0 184533 bytes_in 0 184533 station_ip 5.119.18.211 184533 port 234 184533 unique_id port 184533 remote_ip 10.8.0.10 184538 username sedighe 184538 kill_reason Maximum check online fails reached 184538 mac 184538 bytes_out 0 184538 bytes_in 0 184538 station_ip 83.123.13.241 184538 port 234 184538 unique_id port 184541 username farhad3 184541 mac 184541 bytes_out 94879 184541 bytes_in 266814 184541 station_ip 5.120.60.193 184541 port 262 184541 unique_id port 184541 remote_ip 10.8.0.222 184544 username pourshad 184544 mac 184544 bytes_out 484766 184544 bytes_in 4155626 184544 station_ip 5.119.107.197 184544 port 264 184544 unique_id port 184544 remote_ip 10.8.0.42 184545 username meysam 184545 mac 184545 bytes_out 55040 184545 bytes_in 241459 184545 station_ip 188.159.254.103 184545 port 246 184545 unique_id port 184545 remote_ip 10.8.0.158 184548 username barzegar 184548 mac 184548 bytes_out 0 184548 bytes_in 0 184548 station_ip 5.119.18.211 184502 remote_ip 10.8.0.58 184504 username yaghobi 184504 mac 184504 bytes_out 284277 184504 bytes_in 511485 184504 station_ip 83.123.21.116 184504 port 249 184504 unique_id port 184504 remote_ip 10.8.0.138 184505 username fezealinaghi 184505 mac 184505 bytes_out 0 184505 bytes_in 0 184505 station_ip 83.123.37.152 184505 port 236 184505 unique_id port 184507 username mohammadjavad 184507 mac 184507 bytes_out 0 184507 bytes_in 0 184507 station_ip 83.123.123.189 184507 port 259 184507 unique_id port 184507 remote_ip 10.8.0.110 184508 username mohammadjavad 184508 mac 184508 bytes_out 0 184508 bytes_in 0 184508 station_ip 83.123.123.189 184508 port 259 184508 unique_id port 184508 remote_ip 10.8.0.110 184515 username barzegar 184515 mac 184515 bytes_out 0 184515 bytes_in 0 184515 station_ip 5.119.18.211 184515 port 262 184515 unique_id port 184515 remote_ip 10.8.0.10 184518 username kalantary6037 184518 mac 184518 bytes_out 1240638 184518 bytes_in 12721633 184518 station_ip 83.123.49.55 184518 port 236 184518 unique_id port 184518 remote_ip 10.8.0.50 184522 username shadkam 184522 mac 184522 bytes_out 327090 184522 bytes_in 2811127 184522 station_ip 83.123.27.144 184522 port 263 184522 unique_id port 184522 remote_ip 10.8.0.74 184523 username barzegar 184523 mac 184523 bytes_out 0 184523 bytes_in 0 184523 station_ip 5.119.18.211 184523 port 234 184523 unique_id port 184523 remote_ip 10.8.0.10 184525 username barzegar 184525 mac 184525 bytes_out 0 184525 bytes_in 0 184525 station_ip 5.119.18.211 184525 port 234 184525 unique_id port 184525 remote_ip 10.8.0.10 184527 username aminvpn 184527 mac 184527 bytes_out 0 184527 bytes_in 0 184527 station_ip 46.100.217.46 184527 port 264 184527 unique_id port 184527 remote_ip 10.8.0.58 184531 username kalantary6037 184531 mac 184531 bytes_out 546952 184531 bytes_in 2361988 184531 station_ip 83.123.49.55 184531 port 234 184531 unique_id port 184531 remote_ip 10.8.0.50 184537 username barzegar 184537 mac 184537 bytes_out 0 184537 bytes_in 0 184537 station_ip 5.119.18.211 184537 port 234 184537 unique_id port 184537 remote_ip 10.8.0.10 184540 username mosi 184540 mac 184540 bytes_out 6266977 184540 bytes_in 46339409 184540 station_ip 2.179.191.71 184540 port 239 184540 unique_id port 184540 remote_ip 10.8.0.142 184543 username barzegar 184570 username barzegar 184543 kill_reason Maximum check online fails reached 184543 mac 184543 bytes_out 0 184543 bytes_in 0 184543 station_ip 5.119.18.211 184543 port 249 184543 unique_id port 184547 username barzegar 184547 mac 184547 bytes_out 0 184547 bytes_in 0 184547 station_ip 5.119.18.211 184547 port 242 184547 unique_id port 184547 remote_ip 10.8.0.10 184562 username barzegar 184562 mac 184562 bytes_out 2310 184562 bytes_in 4656 184562 station_ip 5.119.18.211 184562 port 233 184562 unique_id port 184562 remote_ip 10.8.0.10 184566 username barzegar 184566 mac 184566 bytes_out 0 184566 bytes_in 0 184566 station_ip 5.120.116.130 184566 port 242 184566 unique_id port 184566 remote_ip 10.8.0.10 184568 username barzegar 184568 mac 184568 bytes_out 0 184568 bytes_in 0 184568 station_ip 5.120.116.130 184568 port 242 184568 unique_id port 184568 remote_ip 10.8.0.10 184573 username hajghani 184573 mac 184573 bytes_out 37340 184573 bytes_in 128796 184573 station_ip 89.47.137.24 184573 port 264 184573 unique_id port 184573 remote_ip 10.8.0.106 184577 username yaghobi 184577 mac 184546 bytes_out 44261 184546 bytes_in 134292 184546 station_ip 83.123.13.241 184546 port 242 184546 unique_id port 184546 remote_ip 10.8.0.46 184549 username malekpoir 184549 kill_reason Another user logged on this global unique id 184549 mac 184549 bytes_out 0 184549 bytes_in 0 184549 station_ip 5.120.90.111 184549 port 261 184549 unique_id port 184549 remote_ip 10.8.0.18 184552 username mosi 184552 mac 184552 bytes_out 0 184552 bytes_in 0 184552 station_ip 89.47.130.138 184552 port 246 184552 unique_id port 184552 remote_ip 10.8.0.142 184553 username pourshad 184553 mac 184553 bytes_out 34868 184553 bytes_in 56601 184553 station_ip 5.119.107.197 184553 port 242 184553 unique_id port 184553 remote_ip 10.8.0.42 184554 username mostafa_es78 184554 kill_reason Another user logged on this global unique id 184554 mac 184554 bytes_out 0 184554 bytes_in 0 184554 station_ip 83.122.8.56 184554 port 259 184554 unique_id port 184554 remote_ip 10.8.0.34 184555 username barzegar 184555 mac 184555 bytes_out 0 184555 bytes_in 0 184555 station_ip 5.119.18.211 184555 port 263 184555 unique_id port 184555 remote_ip 10.8.0.10 184556 username godarzi 184556 mac 184556 bytes_out 3714116 184556 bytes_in 45999469 184556 station_ip 5.119.177.41 184556 port 233 184556 unique_id port 184556 remote_ip 10.8.0.38 184557 username barzegar 184557 mac 184557 bytes_out 0 184557 bytes_in 0 184557 station_ip 5.119.18.211 184557 port 233 184557 unique_id port 184557 remote_ip 10.8.0.10 184559 username houshang 184559 mac 184559 bytes_out 118212 184559 bytes_in 360087 184559 station_ip 5.119.125.186 184559 port 242 184559 unique_id port 184559 remote_ip 10.8.0.82 184561 username aminvpn 184561 kill_reason Maximum check online fails reached 184561 mac 184561 bytes_out 0 184561 bytes_in 0 184561 station_ip 46.100.217.46 184561 port 263 184561 unique_id port 184563 username shadkam 184563 mac 184563 bytes_out 770516 184563 bytes_in 1383557 184563 station_ip 83.123.43.12 184563 port 246 184563 unique_id port 184563 remote_ip 10.8.0.74 184565 username barzegar 184565 mac 184565 bytes_out 10297 184565 bytes_in 17311 184565 station_ip 5.120.116.130 184565 port 242 184565 unique_id port 184565 remote_ip 10.8.0.10 184569 username mosi 184569 mac 184569 bytes_out 2040479 184569 bytes_in 4611023 184569 station_ip 2.179.191.71 184569 port 236 184569 unique_id port 184569 remote_ip 10.8.0.142 184570 mac 184570 bytes_out 1695 184570 bytes_in 3753 184570 station_ip 5.120.116.130 184570 port 242 184570 unique_id port 184570 remote_ip 10.8.0.10 184571 username hajghani 184571 mac 184571 bytes_out 31268 184571 bytes_in 46047 184571 station_ip 89.47.137.24 184571 port 259 184571 unique_id port 184571 remote_ip 10.8.0.106 184574 username meysam 184574 mac 184574 bytes_out 1933 184574 bytes_in 3739 184574 station_ip 188.159.254.103 184574 port 236 184574 unique_id port 184574 remote_ip 10.8.0.158 184576 username barzegar 184576 mac 184576 bytes_out 0 184576 bytes_in 0 184576 station_ip 5.120.116.130 184576 port 264 184576 unique_id port 184576 remote_ip 10.8.0.10 184581 username barzegar 184581 mac 184581 bytes_out 25855 184581 bytes_in 40853 184581 station_ip 5.120.116.130 184581 port 264 184581 unique_id port 184581 remote_ip 10.8.0.10 184582 username mohammadjavad 184582 mac 184582 bytes_out 977172 184582 bytes_in 14733011 184582 station_ip 83.123.91.6 184582 port 239 184582 unique_id port 184582 remote_ip 10.8.0.110 184548 port 262 184548 unique_id port 184548 remote_ip 10.8.0.10 184550 username shadkam 184550 mac 184550 bytes_out 2469 184550 bytes_in 4762 184550 station_ip 83.123.90.27 184550 port 246 184550 unique_id port 184550 remote_ip 10.8.0.74 184551 username mosi 184551 mac 184551 bytes_out 1014737 184551 bytes_in 8739874 184551 station_ip 2.179.191.71 184551 port 236 184551 unique_id port 184551 remote_ip 10.8.0.142 184558 username khademi 184558 kill_reason Another user logged on this global unique id 184558 mac 184558 bytes_out 0 184558 bytes_in 0 184558 station_ip 83.123.54.146 184558 port 240 184558 unique_id port 184560 username mostafa_es78 184560 mac 184560 bytes_out 0 184560 bytes_in 0 184560 station_ip 83.122.8.56 184560 port 259 184560 unique_id port 184564 username motamedi9772 184564 mac 184564 bytes_out 0 184564 bytes_in 0 184564 station_ip 83.123.114.155 184564 port 242 184564 unique_id port 184564 remote_ip 10.8.0.154 184567 username malekpoir 184567 kill_reason Another user logged on this global unique id 184567 mac 184567 bytes_out 0 184567 bytes_in 0 184567 station_ip 5.120.90.111 184567 port 261 184567 unique_id port 184572 username mosi 184572 mac 184572 bytes_out 38287 184572 bytes_in 70934 184572 station_ip 2.179.191.71 184572 port 236 184572 unique_id port 184572 remote_ip 10.8.0.142 184575 username barzegar 184575 mac 184575 bytes_out 0 184575 bytes_in 0 184575 station_ip 5.120.116.130 184575 port 264 184575 unique_id port 184575 remote_ip 10.8.0.10 184579 username sedighe 184579 mac 184579 bytes_out 188075 184579 bytes_in 834237 184579 station_ip 83.123.13.241 184579 port 246 184579 unique_id port 184579 remote_ip 10.8.0.46 184580 username aminvpn 184580 mac 184580 bytes_out 0 184580 bytes_in 0 184580 station_ip 5.120.100.98 184580 port 267 184580 unique_id port 184580 remote_ip 10.8.0.58 184584 username sedighe 184584 mac 184584 bytes_out 11477 184584 bytes_in 9101 184584 station_ip 83.123.13.241 184584 port 266 184584 unique_id port 184584 remote_ip 10.8.0.46 184585 username charkhandaz3496 184585 mac 184585 bytes_out 370441 184585 bytes_in 2314712 184585 station_ip 5.119.178.166 184585 port 246 184585 unique_id port 184585 remote_ip 10.8.0.90 184588 username soleymani5056 184588 mac 184588 bytes_out 380791 184588 bytes_in 767415 184588 station_ip 5.119.192.36 184588 port 236 184588 unique_id port 184588 remote_ip 10.8.0.226 184595 username fezealinaghi 184595 mac 184595 bytes_out 769373 184595 bytes_in 1725053 184595 station_ip 83.123.107.144 184595 port 242 184595 unique_id port 184595 remote_ip 10.8.0.202 184597 username sedighe 184597 mac 184597 bytes_out 128447 184597 bytes_in 187116 184597 station_ip 83.123.13.241 184597 port 239 184597 unique_id port 184597 remote_ip 10.8.0.46 184599 username shadkam 184599 mac 184599 bytes_out 0 184599 bytes_in 0 184599 station_ip 83.123.73.36 184599 port 264 184599 unique_id port 184599 remote_ip 10.8.0.74 184600 username barzegar 184600 mac 184600 bytes_out 0 184600 bytes_in 0 184600 station_ip 5.120.116.130 184600 port 239 184600 unique_id port 184600 remote_ip 10.8.0.10 184602 username kalantary6037 184602 mac 184602 bytes_out 245316 184602 bytes_in 2261247 184602 station_ip 83.123.40.59 184602 port 239 184602 unique_id port 184602 remote_ip 10.8.0.50 184607 username jafari 184607 kill_reason Another user logged on this global unique id 184607 mac 184607 bytes_out 0 184607 bytes_in 0 184607 station_ip 37.156.59.51 184577 bytes_out 330639 184577 bytes_in 769180 184577 station_ip 83.123.38.88 184577 port 242 184577 unique_id port 184577 remote_ip 10.8.0.138 184578 username farhad3 184578 mac 184578 bytes_out 5213244 184578 bytes_in 23384167 184578 station_ip 5.120.60.193 184578 port 239 184578 unique_id port 184578 remote_ip 10.8.0.222 184586 username aminvpn 184586 unique_id port 184586 terminate_cause Lost-Carrier 184586 bytes_out 364895 184586 bytes_in 5235520 184586 station_ip 83.123.9.60 184586 port 15728987 184586 nas_port_type Virtual 184586 remote_ip 5.5.5.158 184589 username yaghobi 184589 mac 184589 bytes_out 0 184589 bytes_in 0 184589 station_ip 83.123.99.158 184589 port 246 184589 unique_id port 184589 remote_ip 10.8.0.138 184590 username yaghobi 184590 mac 184590 bytes_out 86275 184590 bytes_in 246909 184590 station_ip 83.123.99.158 184590 port 236 184590 unique_id port 184590 remote_ip 10.8.0.138 184591 username barzegar 184591 mac 184591 bytes_out 7030 184591 bytes_in 9401 184591 station_ip 5.120.116.130 184591 port 264 184591 unique_id port 184591 remote_ip 10.8.0.10 184592 username aminvpn 184592 mac 184592 bytes_out 0 184592 bytes_in 0 184592 station_ip 5.120.100.98 184592 port 236 184592 unique_id port 184592 remote_ip 10.8.0.58 184594 username meysam 184594 mac 184594 bytes_out 4510117 184594 bytes_in 28916858 184594 station_ip 188.159.254.103 184594 port 267 184594 unique_id port 184594 remote_ip 10.8.0.158 184596 username motamedi9772 184596 mac 184596 bytes_out 34469 184596 bytes_in 342525 184596 station_ip 83.123.25.139 184596 port 236 184596 unique_id port 184596 remote_ip 10.8.0.154 184601 username shadkam 184601 mac 184601 bytes_out 66407 184601 bytes_in 162521 184601 station_ip 83.123.73.36 184601 port 236 184601 unique_id port 184601 remote_ip 10.8.0.74 184603 username godarzi 184603 mac 184603 bytes_out 2295789 184603 bytes_in 11806058 184603 station_ip 5.119.49.137 184603 port 246 184603 unique_id port 184603 remote_ip 10.8.0.38 184605 username barzegar 184605 mac 184605 bytes_out 0 184605 bytes_in 0 184605 station_ip 5.120.116.130 184605 port 239 184605 unique_id port 184605 remote_ip 10.8.0.10 184608 username aminvpn 184608 mac 184608 bytes_out 0 184608 bytes_in 0 184608 station_ip 5.120.100.98 184608 port 246 184608 unique_id port 184608 remote_ip 10.8.0.58 184610 username barzegar 184610 mac 184610 bytes_out 2841 184610 bytes_in 5058 184610 station_ip 5.120.116.130 184610 port 239 184610 unique_id port 184610 remote_ip 10.8.0.10 184613 username aminvpn 184613 kill_reason Maximum check online fails reached 184613 mac 184613 bytes_out 0 184613 bytes_in 0 184613 station_ip 5.120.100.98 184613 port 246 184613 unique_id port 184616 username yaghobi 184616 mac 184616 bytes_out 226539 184616 bytes_in 319286 184616 station_ip 83.123.99.158 184616 port 236 184616 unique_id port 184616 remote_ip 10.8.0.138 184618 username barzegar 184618 mac 184618 bytes_out 0 184618 bytes_in 0 184618 station_ip 5.120.116.130 184618 port 267 184618 unique_id port 184618 remote_ip 10.8.0.10 184622 username khaleghi2406 184622 mac 184622 bytes_out 554788 184622 bytes_in 7036126 184622 station_ip 83.123.67.106 184622 port 236 184622 unique_id port 184622 remote_ip 10.8.0.174 184624 username mohammadjavad 184624 mac 184624 bytes_out 1702 184624 bytes_in 4004 184624 station_ip 83.123.91.6 184624 port 267 184624 unique_id port 184624 remote_ip 10.8.0.110 184628 username aminvpn 184583 username rezaei 184583 kill_reason Another user logged on this global unique id 184583 mac 184583 bytes_out 0 184583 bytes_in 0 184583 station_ip 5.119.195.114 184583 port 233 184583 unique_id port 184583 remote_ip 10.8.0.198 184587 username jafari 184587 kill_reason Another user logged on this global unique id 184587 mac 184587 bytes_out 0 184587 bytes_in 0 184587 station_ip 37.156.59.51 184587 port 259 184587 unique_id port 184587 remote_ip 10.8.0.86 184593 username rashidi4690 184593 mac 184593 bytes_out 758569 184593 bytes_in 3326953 184593 station_ip 5.120.18.13 184593 port 265 184593 unique_id port 184593 remote_ip 10.8.0.242 184598 username barzegar 184598 mac 184598 bytes_out 2352 184598 bytes_in 4669 184598 station_ip 5.120.116.130 184598 port 242 184598 unique_id port 184598 remote_ip 10.8.0.10 184604 username yaghobi 184604 mac 184604 bytes_out 356222 184604 bytes_in 884565 184604 station_ip 83.123.99.158 184604 port 268 184604 unique_id port 184604 remote_ip 10.8.0.138 184606 username barzegar 184606 mac 184606 bytes_out 0 184606 bytes_in 0 184606 station_ip 5.120.116.130 184606 port 239 184606 unique_id port 184606 remote_ip 10.8.0.10 184609 username pourshad 184609 kill_reason Another user logged on this global unique id 184609 mac 184609 bytes_out 0 184609 bytes_in 0 184609 station_ip 5.119.107.197 184609 port 262 184609 unique_id port 184609 remote_ip 10.8.0.42 184614 username barzegar 184614 mac 184614 bytes_out 0 184614 bytes_in 0 184614 station_ip 5.120.116.130 184614 port 239 184614 unique_id port 184614 remote_ip 10.8.0.10 184617 username mohammadjavad 184617 mac 184617 bytes_out 0 184617 bytes_in 0 184617 station_ip 83.123.91.6 184617 port 268 184617 unique_id port 184617 remote_ip 10.8.0.110 184620 username mohammadjavad 184620 mac 184620 bytes_out 0 184620 bytes_in 0 184620 station_ip 83.123.91.6 184620 port 267 184620 unique_id port 184620 remote_ip 10.8.0.110 184621 username farhad3 184621 kill_reason Another user logged on this global unique id 184621 mac 184621 bytes_out 0 184621 bytes_in 0 184621 station_ip 5.120.60.193 184621 port 266 184621 unique_id port 184630 username godarzi 184630 mac 184630 bytes_out 1035076 184630 bytes_in 11051681 184630 station_ip 5.119.49.137 184630 port 265 184630 unique_id port 184630 remote_ip 10.8.0.38 184631 username soleymani5056 184631 mac 184631 bytes_out 87982 184631 bytes_in 124770 184631 station_ip 5.119.25.207 184631 port 236 184631 unique_id port 184631 remote_ip 10.8.0.226 184632 username soleymani5056 184632 mac 184632 bytes_out 28544 184632 bytes_in 16999 184632 station_ip 5.120.39.160 184632 port 239 184632 unique_id port 184632 remote_ip 10.8.0.226 184643 username barzegar 184643 mac 184643 bytes_out 54670 184643 bytes_in 319108 184643 station_ip 5.120.116.130 184643 port 242 184643 unique_id port 184643 remote_ip 10.8.0.10 184646 username jafari 184646 kill_reason Another user logged on this global unique id 184646 mac 184646 bytes_out 0 184646 bytes_in 0 184646 station_ip 37.156.59.51 184646 port 259 184646 unique_id port 184647 username farhad3 184647 kill_reason Another user logged on this global unique id 184647 mac 184647 bytes_out 0 184647 bytes_in 0 184647 station_ip 5.120.60.193 184647 port 266 184647 unique_id port 184651 username yarmohamadi7916 184651 kill_reason Another user logged on this global unique id 184651 mac 184651 bytes_out 0 184651 bytes_in 0 184651 station_ip 5.120.177.34 184651 port 265 184651 unique_id port 184651 remote_ip 10.8.0.230 184654 username barzegar 184607 port 259 184607 unique_id port 184611 username farhad3 184611 kill_reason Another user logged on this global unique id 184611 mac 184611 bytes_out 0 184611 bytes_in 0 184611 station_ip 5.120.60.193 184611 port 266 184611 unique_id port 184611 remote_ip 10.8.0.222 184612 username sabaghnezhad 184612 mac 184612 bytes_out 74160 184612 bytes_in 272470 184612 station_ip 83.123.23.1 184612 port 242 184612 unique_id port 184612 remote_ip 10.8.0.66 184615 username aminvpn 184615 mac 184615 bytes_out 0 184615 bytes_in 0 184615 station_ip 5.120.100.98 184615 port 242 184615 unique_id port 184615 remote_ip 10.8.0.58 184619 username motamedi9772 184619 mac 184619 bytes_out 10750 184619 bytes_in 19175 184619 station_ip 83.123.63.155 184619 port 264 184619 unique_id port 184619 remote_ip 10.8.0.154 184623 username kalantary6037 184623 mac 184623 bytes_out 361790 184623 bytes_in 1861840 184623 station_ip 83.123.40.59 184623 port 264 184623 unique_id port 184623 remote_ip 10.8.0.50 184625 username jafari 184625 kill_reason Another user logged on this global unique id 184625 mac 184625 bytes_out 0 184625 bytes_in 0 184625 station_ip 37.156.59.51 184625 port 259 184625 unique_id port 184626 username khademi 184626 kill_reason Another user logged on this global unique id 184626 mac 184626 bytes_out 0 184626 bytes_in 0 184626 station_ip 83.123.54.146 184626 port 240 184626 unique_id port 184627 username hajghani 184627 mac 184627 bytes_out 992156 184627 bytes_in 5122735 184627 station_ip 89.47.137.24 184627 port 239 184627 unique_id port 184627 remote_ip 10.8.0.106 184629 username barzegar 184629 mac 184629 bytes_out 0 184629 bytes_in 0 184629 station_ip 5.120.116.130 184629 port 239 184629 unique_id port 184629 remote_ip 10.8.0.10 184634 username pourshad 184634 kill_reason Another user logged on this global unique id 184634 mac 184634 bytes_out 0 184634 bytes_in 0 184634 station_ip 5.119.107.197 184634 port 262 184634 unique_id port 184637 username jafari 184637 kill_reason Another user logged on this global unique id 184637 mac 184637 bytes_out 0 184637 bytes_in 0 184637 station_ip 37.156.59.51 184637 port 259 184637 unique_id port 184638 username aminvpn 184638 mac 184638 bytes_out 0 184638 bytes_in 0 184638 station_ip 5.120.100.98 184638 port 268 184638 unique_id port 184638 remote_ip 10.8.0.58 184640 username yaghobi 184640 mac 184640 bytes_out 818121 184640 bytes_in 1472247 184640 station_ip 83.123.68.111 184640 port 242 184640 unique_id port 184640 remote_ip 10.8.0.138 184644 username rashidi4690 184644 mac 184644 bytes_out 883843 184644 bytes_in 4051466 184644 station_ip 5.120.18.13 184644 port 267 184644 unique_id port 184644 remote_ip 10.8.0.242 184645 username aminvpn 184645 mac 184645 bytes_out 0 184645 bytes_in 0 184645 station_ip 5.120.100.98 184645 port 242 184645 unique_id port 184645 remote_ip 10.8.0.58 184650 username shadkam 184650 mac 184650 bytes_out 1299931 184650 bytes_in 14783897 184650 station_ip 83.123.95.19 184650 port 269 184650 unique_id port 184650 remote_ip 10.8.0.74 184655 username milan 184655 kill_reason Another user logged on this global unique id 184655 mac 184655 bytes_out 0 184655 bytes_in 0 184655 station_ip 5.119.198.160 184655 port 251 184655 unique_id port 184655 remote_ip 10.8.0.182 184657 username nilufarrajaei 184657 mac 184657 bytes_out 1156505 184657 bytes_in 5568948 184657 station_ip 83.123.47.94 184657 port 268 184657 unique_id port 184657 remote_ip 10.8.0.194 184660 username barzegar 184660 mac 184628 mac 184628 bytes_out 0 184628 bytes_in 0 184628 station_ip 5.120.100.98 184628 port 239 184628 unique_id port 184628 remote_ip 10.8.0.58 184633 username khaleghi2406 184633 mac 184633 bytes_out 210170 184633 bytes_in 616276 184633 station_ip 83.123.67.106 184633 port 267 184633 unique_id port 184633 remote_ip 10.8.0.174 184635 username barzegar 184635 mac 184635 bytes_out 2867 184635 bytes_in 5486 184635 station_ip 5.120.116.130 184635 port 265 184635 unique_id port 184635 remote_ip 10.8.0.10 184636 username khademi 184636 kill_reason Another user logged on this global unique id 184636 mac 184636 bytes_out 0 184636 bytes_in 0 184636 station_ip 83.123.54.146 184636 port 240 184636 unique_id port 184639 username barzegar 184639 mac 184639 bytes_out 0 184639 bytes_in 0 184639 station_ip 5.120.116.130 184639 port 269 184639 unique_id port 184639 remote_ip 10.8.0.10 184641 username esmaeilkazemi 184641 mac 184641 bytes_out 61388 184641 bytes_in 124672 184641 station_ip 83.123.33.157 184641 port 268 184641 unique_id port 184641 remote_ip 10.8.0.26 184642 username farhad3 184642 kill_reason Another user logged on this global unique id 184642 mac 184642 bytes_out 0 184642 bytes_in 0 184642 station_ip 5.120.60.193 184642 port 266 184642 unique_id port 184648 username kalantary6037 184648 mac 184648 bytes_out 561184 184648 bytes_in 3416739 184648 station_ip 83.123.40.59 184648 port 236 184648 unique_id port 184648 remote_ip 10.8.0.50 184649 username saeed9658 184649 mac 184649 bytes_out 0 184649 bytes_in 0 184649 station_ip 5.119.117.241 184649 port 267 184649 unique_id port 184649 remote_ip 10.8.0.162 184652 username yaghobi 184652 mac 184652 bytes_out 407057 184652 bytes_in 692569 184652 station_ip 83.123.123.42 184652 port 270 184652 unique_id port 184652 remote_ip 10.8.0.138 184653 username aminvpn 184653 mac 184653 bytes_out 0 184653 bytes_in 0 184653 station_ip 5.120.100.98 184653 port 269 184653 unique_id port 184653 remote_ip 10.8.0.58 184656 username jafari 184656 kill_reason Another user logged on this global unique id 184656 mac 184656 bytes_out 0 184656 bytes_in 0 184656 station_ip 37.156.59.51 184656 port 259 184656 unique_id port 184664 username farhad3 184664 mac 184664 bytes_out 0 184664 bytes_in 0 184664 station_ip 5.120.60.193 184664 port 266 184664 unique_id port 184667 username barzegar 184667 mac 184667 bytes_out 0 184667 bytes_in 0 184667 station_ip 5.120.116.130 184667 port 236 184667 unique_id port 184667 remote_ip 10.8.0.10 184670 username shadkam 184670 mac 184670 bytes_out 207653 184670 bytes_in 2695511 184670 station_ip 83.123.81.202 184670 port 272 184670 unique_id port 184670 remote_ip 10.8.0.74 184671 username barzegar 184671 mac 184671 bytes_out 0 184671 bytes_in 0 184671 station_ip 5.120.116.130 184671 port 272 184671 unique_id port 184671 remote_ip 10.8.0.10 184675 username barzegar 184675 mac 184675 bytes_out 0 184675 bytes_in 0 184675 station_ip 5.120.116.130 184675 port 239 184675 unique_id port 184675 remote_ip 10.8.0.10 184677 username soleymani5056 184677 mac 184677 bytes_out 119444 184677 bytes_in 216228 184677 station_ip 5.120.35.184 184677 port 259 184677 unique_id port 184677 remote_ip 10.8.0.226 184681 username kalantary6037 184681 mac 184681 bytes_out 2048336 184681 bytes_in 23113550 184681 station_ip 83.123.40.59 184681 port 269 184681 unique_id port 184681 remote_ip 10.8.0.50 184682 username aminvpn 184682 mac 184682 bytes_out 0 184654 mac 184654 bytes_out 25054 184654 bytes_in 31474 184654 station_ip 5.120.116.130 184654 port 242 184654 unique_id port 184654 remote_ip 10.8.0.10 184658 username rashidi4690 184658 mac 184658 bytes_out 76566 184658 bytes_in 261528 184658 station_ip 5.120.18.13 184658 port 269 184658 unique_id port 184658 remote_ip 10.8.0.242 184659 username barzegar 184659 mac 184659 bytes_out 0 184659 bytes_in 0 184659 station_ip 5.120.116.130 184659 port 242 184659 unique_id port 184659 remote_ip 10.8.0.10 184661 username fezealinaghi 184661 mac 184661 bytes_out 1389520 184661 bytes_in 12864979 184661 station_ip 83.123.90.120 184661 port 264 184661 unique_id port 184661 remote_ip 10.8.0.202 184662 username khaleghi2406 184662 mac 184662 bytes_out 776482 184662 bytes_in 400056 184662 station_ip 83.123.67.106 184662 port 239 184662 unique_id port 184662 remote_ip 10.8.0.174 184666 username khaleghi2406 184666 mac 184666 bytes_out 25986 184666 bytes_in 20354 184666 station_ip 83.123.67.106 184666 port 271 184666 unique_id port 184666 remote_ip 10.8.0.174 184669 username jafari 184669 mac 184669 bytes_out 0 184669 bytes_in 0 184669 station_ip 37.156.59.51 184669 port 259 184669 unique_id port 184672 username yaghobi 184672 mac 184672 bytes_out 567718 184672 bytes_in 1432259 184672 station_ip 83.123.70.242 184672 port 239 184672 unique_id port 184672 remote_ip 10.8.0.138 184673 username yarmohamadi7916 184673 kill_reason Another user logged on this global unique id 184673 mac 184673 bytes_out 0 184673 bytes_in 0 184673 station_ip 5.120.177.34 184673 port 265 184673 unique_id port 184674 username yaghobi 184674 mac 184674 bytes_out 0 184674 bytes_in 0 184674 station_ip 83.123.87.188 184674 port 272 184674 unique_id port 184674 remote_ip 10.8.0.138 184676 username nilufarrajaei 184676 mac 184676 bytes_out 338888 184676 bytes_in 3854805 184676 station_ip 83.123.47.94 184676 port 270 184676 unique_id port 184676 remote_ip 10.8.0.194 184683 username rezaei 184683 mac 184683 bytes_out 0 184683 bytes_in 0 184683 station_ip 5.119.195.114 184683 port 233 184683 unique_id port 184685 username khaleghi2406 184685 mac 184685 bytes_out 9056 184685 bytes_in 10946 184685 station_ip 83.123.67.106 184685 port 269 184685 unique_id port 184685 remote_ip 10.8.0.174 184689 username barzegar 184689 mac 184689 bytes_out 0 184689 bytes_in 0 184689 station_ip 5.120.116.130 184689 port 233 184689 unique_id port 184689 remote_ip 10.8.0.10 184691 username saeed9658 184691 mac 184691 bytes_out 26237 184691 bytes_in 95049 184691 station_ip 5.119.117.241 184691 port 259 184691 unique_id port 184691 remote_ip 10.8.0.162 184695 username khaleghi2406 184695 mac 184695 bytes_out 13526 184695 bytes_in 17016 184695 station_ip 83.123.67.106 184695 port 233 184695 unique_id port 184695 remote_ip 10.8.0.174 184697 username saeed9658 184697 mac 184697 bytes_out 64988 184697 bytes_in 198648 184697 station_ip 5.119.117.241 184697 port 233 184697 unique_id port 184697 remote_ip 10.8.0.162 184707 username barzegar 184707 mac 184707 bytes_out 0 184707 bytes_in 0 184707 station_ip 5.120.116.130 184707 port 272 184707 unique_id port 184707 remote_ip 10.8.0.10 184709 username mohammadmahdi 184709 kill_reason Relative expiration date has reached 184709 mac 184709 bytes_out 0 184709 bytes_in 0 184709 station_ip 5.120.147.59 184709 port 239 184709 unique_id port 184713 username shadkam 184713 mac 184713 bytes_out 1144323 184660 bytes_out 0 184660 bytes_in 0 184660 station_ip 5.120.116.130 184660 port 269 184660 unique_id port 184660 remote_ip 10.8.0.10 184663 username yaghobi 184663 mac 184663 bytes_out 324262 184663 bytes_in 478381 184663 station_ip 83.123.15.210 184663 port 267 184663 unique_id port 184663 remote_ip 10.8.0.138 184665 username godarzi 184665 mac 184665 bytes_out 1028343 184665 bytes_in 7857757 184665 station_ip 5.119.49.137 184665 port 236 184665 unique_id port 184665 remote_ip 10.8.0.38 184668 username aminvpn 184668 mac 184668 bytes_out 0 184668 bytes_in 0 184668 station_ip 5.120.100.98 184668 port 271 184668 unique_id port 184668 remote_ip 10.8.0.58 184678 username yaghobi 184678 mac 184678 bytes_out 1616 184678 bytes_in 4589 184678 station_ip 83.123.87.188 184678 port 274 184678 unique_id port 184678 remote_ip 10.8.0.138 184679 username khaleghi2406 184679 mac 184679 bytes_out 20467 184679 bytes_in 23647 184679 station_ip 83.123.67.106 184679 port 273 184679 unique_id port 184679 remote_ip 10.8.0.174 184680 username barzegar 184680 mac 184680 bytes_out 0 184680 bytes_in 0 184680 station_ip 5.120.116.130 184680 port 239 184680 unique_id port 184680 remote_ip 10.8.0.10 184687 username godarzi 184687 mac 184687 bytes_out 391381 184687 bytes_in 2202232 184687 station_ip 5.119.49.137 184687 port 271 184687 unique_id port 184687 remote_ip 10.8.0.38 184688 username saeed9658 184688 mac 184688 bytes_out 1663176 184688 bytes_in 15043244 184688 station_ip 5.119.117.241 184688 port 242 184688 unique_id port 184688 remote_ip 10.8.0.162 184690 username kalantary6037 184690 mac 184690 bytes_out 315951 184690 bytes_in 1174034 184690 station_ip 83.123.40.59 184690 port 242 184690 unique_id port 184690 remote_ip 10.8.0.50 184692 username milan 184692 kill_reason Another user logged on this global unique id 184692 mac 184692 bytes_out 0 184692 bytes_in 0 184692 station_ip 5.119.198.160 184692 port 251 184692 unique_id port 184694 username sedighe 184694 mac 184694 bytes_out 190735 184694 bytes_in 252226 184694 station_ip 83.123.13.241 184694 port 236 184694 unique_id port 184694 remote_ip 10.8.0.46 184698 username aminvpn 184698 mac 184698 bytes_out 0 184698 bytes_in 0 184698 station_ip 5.120.100.98 184698 port 259 184698 unique_id port 184698 remote_ip 10.8.0.58 184699 username barzegar 184699 mac 184699 bytes_out 2462 184699 bytes_in 4655 184699 station_ip 5.120.116.130 184699 port 233 184699 unique_id port 184699 remote_ip 10.8.0.10 184701 username meysam 184701 mac 184701 bytes_out 2119964 184701 bytes_in 28407084 184701 station_ip 188.159.254.73 184701 port 271 184701 unique_id port 184701 remote_ip 10.8.0.158 184703 username mohammadjavad 184703 kill_reason Another user logged on this global unique id 184703 mac 184703 bytes_out 0 184703 bytes_in 0 184703 station_ip 83.123.4.141 184703 port 239 184703 unique_id port 184703 remote_ip 10.8.0.110 184704 username yarmohamadi7916 184704 mac 184704 bytes_out 0 184704 bytes_in 0 184704 station_ip 5.120.177.34 184704 port 265 184704 unique_id port 184706 username fezealinaghi 184706 mac 184706 bytes_out 10168 184706 bytes_in 14593 184706 station_ip 83.123.90.120 184706 port 233 184706 unique_id port 184706 remote_ip 10.8.0.202 184710 username farhad3 184710 mac 184710 bytes_out 5535458 184710 bytes_in 45835974 184710 station_ip 5.120.60.193 184710 port 266 184710 unique_id port 184710 remote_ip 10.8.0.222 184712 username saeed9658 184712 mac 184682 bytes_in 0 184682 station_ip 5.120.100.98 184682 port 259 184682 unique_id port 184682 remote_ip 10.8.0.58 184684 username yarmohamadi7916 184684 kill_reason Another user logged on this global unique id 184684 mac 184684 bytes_out 0 184684 bytes_in 0 184684 station_ip 5.120.177.34 184684 port 265 184684 unique_id port 184686 username barzegar 184686 mac 184686 bytes_out 0 184686 bytes_in 0 184686 station_ip 5.120.116.130 184686 port 259 184686 unique_id port 184686 remote_ip 10.8.0.10 184693 username shadkam 184693 mac 184693 bytes_out 309046 184693 bytes_in 3726464 184693 station_ip 83.123.102.4 184693 port 270 184693 unique_id port 184693 remote_ip 10.8.0.74 184696 username barzegar 184696 mac 184696 bytes_out 4827 184696 bytes_in 6888 184696 station_ip 5.120.116.130 184696 port 269 184696 unique_id port 184696 remote_ip 10.8.0.10 184700 username fezealinaghi 184700 mac 184700 bytes_out 111646 184700 bytes_in 1015332 184700 station_ip 83.123.90.120 184700 port 264 184700 unique_id port 184700 remote_ip 10.8.0.202 184702 username yarmohamadi7916 184702 kill_reason Another user logged on this global unique id 184702 mac 184702 bytes_out 0 184702 bytes_in 0 184702 station_ip 5.120.177.34 184702 port 265 184702 unique_id port 184705 username yazdani6029 184705 mac 184705 bytes_out 0 184705 bytes_in 0 184705 station_ip 83.123.45.253 184705 port 264 184705 unique_id port 184705 remote_ip 10.8.0.238 184708 username mohammadjavad 184708 mac 184708 bytes_out 0 184708 bytes_in 0 184708 station_ip 83.123.4.141 184708 port 239 184708 unique_id port 184711 username mohammadmahdi 184711 kill_reason Relative expiration date has reached 184711 mac 184711 bytes_out 0 184711 bytes_in 0 184711 station_ip 5.120.147.59 184711 port 239 184711 unique_id port 184715 username mohammadmahdi 184715 kill_reason Relative expiration date has reached 184715 mac 184715 bytes_out 0 184715 bytes_in 0 184715 station_ip 5.120.147.59 184715 port 242 184715 unique_id port 184717 username aminvpn 184717 mac 184717 bytes_out 0 184717 bytes_in 0 184717 station_ip 5.120.100.98 184717 port 242 184717 unique_id port 184717 remote_ip 10.8.0.58 184721 username kalantary6037 184721 mac 184721 bytes_out 499481 184721 bytes_in 4373020 184721 station_ip 83.123.48.247 184721 port 273 184721 unique_id port 184721 remote_ip 10.8.0.50 184724 username milan 184724 kill_reason Another user logged on this global unique id 184724 mac 184724 bytes_out 0 184724 bytes_in 0 184724 station_ip 5.119.198.160 184724 port 251 184724 unique_id port 184729 username sedighe 184729 mac 184729 bytes_out 43993 184729 bytes_in 122695 184729 station_ip 83.123.117.132 184729 port 239 184729 unique_id port 184729 remote_ip 10.8.0.46 184732 username motamedi9772 184732 mac 184732 bytes_out 124386 184732 bytes_in 152616 184732 station_ip 83.123.35.119 184732 port 266 184732 unique_id port 184732 remote_ip 10.8.0.154 184736 username barzegar 184736 mac 184736 bytes_out 46779 184736 bytes_in 90739 184736 station_ip 5.120.116.130 184736 port 262 184736 unique_id port 184736 remote_ip 10.8.0.10 184739 username shadkam 184739 mac 184739 bytes_out 74774 184739 bytes_in 414022 184739 station_ip 83.123.71.125 184739 port 262 184739 unique_id port 184739 remote_ip 10.8.0.74 184741 username sabaghnezhad 184741 kill_reason Maximum check online fails reached 184741 mac 184741 bytes_out 0 184741 bytes_in 0 184741 station_ip 83.123.41.154 184741 port 266 184741 unique_id port 184743 username sobhan 184743 unique_id port 184712 bytes_out 3090498 184712 bytes_in 32178193 184712 station_ip 5.119.117.241 184712 port 242 184712 unique_id port 184712 remote_ip 10.8.0.162 184714 username pourshad 184714 mac 184714 bytes_out 0 184714 bytes_in 0 184714 station_ip 5.119.107.197 184714 port 262 184714 unique_id port 184718 username rashidi4690 184718 mac 184718 bytes_out 814901 184718 bytes_in 5845436 184718 station_ip 5.120.18.13 184718 port 269 184718 unique_id port 184718 remote_ip 10.8.0.242 184719 username mohammadmahdi 184719 kill_reason Relative expiration date has reached 184719 mac 184719 bytes_out 0 184719 bytes_in 0 184719 station_ip 5.120.147.59 184719 port 242 184719 unique_id port 184722 username barzegar 184722 mac 184722 bytes_out 2064 184722 bytes_in 4349 184722 station_ip 5.120.116.130 184722 port 262 184722 unique_id port 184722 remote_ip 10.8.0.10 184723 username aminvpn 184723 unique_id port 184723 terminate_cause User-Request 184723 bytes_out 1798299 184723 bytes_in 31206466 184723 station_ip 5.119.138.150 184723 port 15728988 184723 nas_port_type Virtual 184723 remote_ip 5.5.5.155 184726 username barzegar 184726 mac 184726 bytes_out 0 184726 bytes_in 0 184726 station_ip 5.120.116.130 184726 port 262 184726 unique_id port 184726 remote_ip 10.8.0.10 184730 username tahmorsi 184730 mac 184730 bytes_out 2617409 184730 bytes_in 31277220 184730 station_ip 86.57.125.209 184730 port 233 184730 unique_id port 184730 remote_ip 10.8.0.6 184731 username khalili2 184731 mac 184731 bytes_out 0 184731 bytes_in 0 184731 station_ip 5.119.133.16 184731 port 241 184731 unique_id port 184734 username khalili2 184734 kill_reason Maximum check online fails reached 184734 mac 184734 bytes_out 0 184734 bytes_in 0 184734 station_ip 5.119.133.16 184734 port 233 184734 unique_id port 184744 username aminvpn 184744 unique_id port 184744 terminate_cause User-Request 184744 bytes_out 128409 184744 bytes_in 354941 184744 station_ip 31.57.123.243 184744 port 15728990 184744 nas_port_type Virtual 184744 remote_ip 5.5.5.153 184747 username aminvpn 184747 mac 184747 bytes_out 0 184747 bytes_in 0 184747 station_ip 5.120.100.98 184747 port 241 184747 unique_id port 184747 remote_ip 10.8.0.58 184749 username nilufarrajaei 184749 mac 184749 bytes_out 67370 184749 bytes_in 306819 184749 station_ip 151.235.66.226 184749 port 240 184749 unique_id port 184749 remote_ip 10.8.0.194 184750 username iranmanesh4443 184750 mac 184750 bytes_out 1441920 184750 bytes_in 10194581 184750 station_ip 5.119.127.171 184750 port 268 184750 unique_id port 184750 remote_ip 10.8.0.22 184755 username aminvpn 184755 mac 184755 bytes_out 0 184755 bytes_in 0 184755 station_ip 5.120.100.98 184755 port 268 184755 unique_id port 184755 remote_ip 10.8.0.58 184756 username aminvpn 184756 mac 184756 bytes_out 0 184756 bytes_in 0 184756 station_ip 5.120.100.98 184756 port 270 184756 unique_id port 184756 remote_ip 10.8.0.58 184757 username khademi 184757 mac 184757 bytes_out 2050072 184757 bytes_in 26621316 184757 station_ip 83.123.54.146 184757 port 264 184757 unique_id port 184757 remote_ip 10.8.0.14 184759 username yazdani6029 184759 mac 184759 bytes_out 611281 184759 bytes_in 1637253 184759 station_ip 83.123.21.77 184759 port 262 184759 unique_id port 184759 remote_ip 10.8.0.238 184764 username saeed9658 184764 mac 184764 bytes_out 1899516 184764 bytes_in 17227579 184764 station_ip 5.119.117.241 184764 port 267 184764 unique_id port 184764 remote_ip 10.8.0.162 184768 username aminvpn 184713 bytes_in 10189237 184713 station_ip 83.123.99.51 184713 port 264 184713 unique_id port 184713 remote_ip 10.8.0.74 184716 username mohammadmahdi 184716 kill_reason Relative expiration date has reached 184716 mac 184716 bytes_out 0 184716 bytes_in 0 184716 station_ip 5.120.147.59 184716 port 262 184716 unique_id port 184720 username pourshad 184720 mac 184720 bytes_out 7687 184720 bytes_in 12974 184720 station_ip 5.119.107.197 184720 port 239 184720 unique_id port 184720 remote_ip 10.8.0.42 184725 username yazdani6029 184725 mac 184725 bytes_out 2190796 184725 bytes_in 26842298 184725 station_ip 46.225.232.125 184725 port 265 184725 unique_id port 184725 remote_ip 10.8.0.238 184727 username nilufarrajaei 184727 mac 184727 bytes_out 629172 184727 bytes_in 2166901 184727 station_ip 83.123.83.242 184727 port 271 184727 unique_id port 184727 remote_ip 10.8.0.194 184728 username shadkam 184728 mac 184728 bytes_out 524023 184728 bytes_in 3983870 184728 station_ip 83.123.70.239 184728 port 239 184728 unique_id port 184728 remote_ip 10.8.0.74 184733 username fezealinaghi 184733 mac 184733 bytes_out 1041741 184733 bytes_in 6964952 184733 station_ip 83.123.90.120 184733 port 270 184733 unique_id port 184733 remote_ip 10.8.0.202 184735 username aminvpn 184735 mac 184735 bytes_out 0 184735 bytes_in 0 184735 station_ip 5.120.100.98 184735 port 266 184735 unique_id port 184735 remote_ip 10.8.0.58 184737 username sabaghnezhad 184737 mac 184737 bytes_out 850691 184737 bytes_in 5196601 184737 station_ip 83.123.41.154 184737 port 267 184737 unique_id port 184737 remote_ip 10.8.0.66 184738 username sedighe 184738 mac 184738 bytes_out 104249 184738 bytes_in 158769 184738 station_ip 83.123.117.132 184738 port 271 184738 unique_id port 184738 remote_ip 10.8.0.46 184740 username rashidi4690 184740 mac 184740 bytes_out 551474 184740 bytes_in 1484801 184740 station_ip 5.120.18.13 184740 port 265 184740 unique_id port 184740 remote_ip 10.8.0.242 184742 username khademi 184742 mac 184742 bytes_out 0 184742 bytes_in 0 184742 station_ip 83.123.54.146 184742 port 240 184742 unique_id port 184746 username yazdani6029 184746 mac 184746 bytes_out 2525396 184746 bytes_in 24336453 184746 station_ip 83.123.21.77 184746 port 241 184746 unique_id port 184746 remote_ip 10.8.0.238 184751 username mohammadjavad 184751 mac 184751 bytes_out 3982 184751 bytes_in 12930 184751 station_ip 83.123.4.141 184751 port 262 184751 unique_id port 184751 remote_ip 10.8.0.110 184752 username milan 184752 kill_reason Another user logged on this global unique id 184752 mac 184752 bytes_out 0 184752 bytes_in 0 184752 station_ip 5.119.198.160 184752 port 251 184752 unique_id port 184758 username saeeddamghani 184758 mac 184758 bytes_out 47311 184758 bytes_in 174741 184758 station_ip 217.60.175.202 184758 port 268 184758 unique_id port 184758 remote_ip 10.8.0.122 184760 username aminvpn 184760 kill_reason Maximum check online fails reached 184760 mac 184760 bytes_out 0 184760 bytes_in 0 184760 station_ip 5.120.100.98 184760 port 264 184760 unique_id port 184761 username rezaei 184761 mac 184761 bytes_out 3513286 184761 bytes_in 39187618 184761 station_ip 5.120.85.152 184761 port 239 184761 unique_id port 184761 remote_ip 10.8.0.198 184763 username teymori5660 184763 mac 184763 bytes_out 1304065 184763 bytes_in 12091249 184763 station_ip 5.120.98.26 184763 port 270 184763 unique_id port 184763 remote_ip 10.8.0.178 184766 username hoorieh 184766 kill_reason Relative expiration date has reached 184743 terminate_cause Lost-Carrier 184743 bytes_out 213646 184743 bytes_in 1253447 184743 station_ip 5.119.52.212 184743 port 15728989 184743 nas_port_type Virtual 184743 remote_ip 5.5.5.154 184745 username nilufarrajaei 184745 mac 184745 bytes_out 136898 184745 bytes_in 493084 184745 station_ip 83.123.83.242 184745 port 264 184745 unique_id port 184745 remote_ip 10.8.0.194 184748 username aminvpn 184748 mac 184748 bytes_out 0 184748 bytes_in 0 184748 station_ip 5.120.100.98 184748 port 241 184748 unique_id port 184748 remote_ip 10.8.0.58 184753 username nilufarrajaei 184753 mac 184753 bytes_out 5415 184753 bytes_in 9511 184753 station_ip 151.235.66.226 184753 port 268 184753 unique_id port 184753 remote_ip 10.8.0.194 184754 username teymori5660 184754 mac 184754 bytes_out 0 184754 bytes_in 0 184754 station_ip 5.120.98.26 184754 port 270 184754 unique_id port 184754 remote_ip 10.8.0.178 184762 username fezealinaghi 184762 mac 184762 bytes_out 43639 184762 bytes_in 56618 184762 station_ip 83.123.95.118 184762 port 265 184762 unique_id port 184762 remote_ip 10.8.0.202 184765 username saeed9658 184765 mac 184765 bytes_out 11332 184765 bytes_in 23462 184765 station_ip 5.119.117.241 184765 port 270 184765 unique_id port 184765 remote_ip 10.8.0.162 184767 username shadkam 184767 mac 184767 bytes_out 548248 184767 bytes_in 7114512 184767 station_ip 83.123.7.191 184767 port 265 184767 unique_id port 184767 remote_ip 10.8.0.74 184769 username hoorieh 184769 kill_reason Relative expiration date has reached 184769 mac 184769 bytes_out 0 184769 bytes_in 0 184769 station_ip 5.120.181.128 184769 port 265 184769 unique_id port 184770 username hoorieh 184770 kill_reason Relative expiration date has reached 184770 mac 184770 bytes_out 0 184770 bytes_in 0 184770 station_ip 5.120.181.128 184770 port 270 184770 unique_id port 184773 username hoorieh 184773 kill_reason Relative expiration date has reached 184773 mac 184773 bytes_out 0 184773 bytes_in 0 184773 station_ip 5.120.181.128 184773 port 265 184773 unique_id port 184777 username aminvpn 184777 mac 184777 bytes_out 268717 184777 bytes_in 953344 184777 station_ip 5.120.117.173 184777 port 270 184777 unique_id port 184777 remote_ip 10.8.0.58 184785 username fezealinaghi 184785 mac 184785 bytes_out 104995 184785 bytes_in 106867 184785 station_ip 83.123.95.118 184785 port 239 184785 unique_id port 184785 remote_ip 10.8.0.202 184787 username barzegar 184787 kill_reason Maximum number of concurrent logins reached 184787 mac 184787 bytes_out 0 184787 bytes_in 0 184787 station_ip 5.120.116.130 184787 port 271 184787 unique_id port 184791 username aminvpn 184791 mac 184791 bytes_out 749505 184791 bytes_in 5728952 184791 station_ip 5.120.117.173 184791 port 270 184791 unique_id port 184791 remote_ip 10.8.0.58 184796 username barzegar 184796 mac 184796 bytes_out 459284 184796 bytes_in 4380216 184796 station_ip 5.120.116.130 184796 port 265 184796 unique_id port 184796 remote_ip 10.8.0.10 184802 username barzegar 184802 kill_reason Maximum number of concurrent logins reached 184802 mac 184802 bytes_out 0 184802 bytes_in 0 184802 station_ip 5.120.116.130 184802 port 270 184802 unique_id port 184803 username barzegar 184803 kill_reason Maximum number of concurrent logins reached 184803 mac 184803 bytes_out 0 184803 bytes_in 0 184803 station_ip 5.120.116.130 184803 port 272 184803 unique_id port 184805 username kalantary6037 184805 mac 184805 bytes_out 1452338 184805 bytes_in 13726712 184805 station_ip 83.123.68.55 184805 port 271 184766 mac 184766 bytes_out 0 184766 bytes_in 0 184766 station_ip 5.120.181.128 184766 port 270 184766 unique_id port 184771 username aminvpn 184771 mac 184771 bytes_out 0 184771 bytes_in 0 184771 station_ip 5.120.100.98 184771 port 265 184771 unique_id port 184771 remote_ip 10.8.0.58 184774 username hoorieh 184774 kill_reason Relative expiration date has reached 184774 mac 184774 bytes_out 0 184774 bytes_in 0 184774 station_ip 5.120.181.128 184774 port 265 184774 unique_id port 184775 username barzegar 184775 mac 184775 bytes_out 3178 184775 bytes_in 5230 184775 station_ip 5.120.116.130 184775 port 265 184775 unique_id port 184775 remote_ip 10.8.0.10 184779 username esmaeilkazemi 184779 mac 184779 bytes_out 90899 184779 bytes_in 135269 184779 station_ip 83.123.33.157 184779 port 268 184779 unique_id port 184779 remote_ip 10.8.0.26 184780 username aminvpn 184780 mac 184780 bytes_out 0 184780 bytes_in 0 184780 station_ip 5.120.100.98 184780 port 268 184780 unique_id port 184780 remote_ip 10.8.0.58 184781 username khaleghi2406 184781 kill_reason Another user logged on this global unique id 184781 mac 184781 bytes_out 0 184781 bytes_in 0 184781 station_ip 83.123.67.106 184781 port 259 184781 unique_id port 184781 remote_ip 10.8.0.174 184783 username shadkam 184783 mac 184783 bytes_out 1081338 184783 bytes_in 11294030 184783 station_ip 83.123.84.37 184783 port 271 184783 unique_id port 184783 remote_ip 10.8.0.74 184793 username kalantary6037 184793 mac 184793 bytes_out 2435302 184793 bytes_in 13558619 184793 station_ip 83.123.68.55 184793 port 269 184793 unique_id port 184793 remote_ip 10.8.0.50 184794 username aminvpn 184794 mac 184794 bytes_out 146044 184794 bytes_in 223827 184794 station_ip 5.120.117.173 184794 port 270 184794 unique_id port 184794 remote_ip 10.8.0.58 184797 username barzegar 184797 mac 184797 bytes_out 0 184797 bytes_in 0 184797 station_ip 5.120.116.130 184797 port 265 184797 unique_id port 184797 remote_ip 10.8.0.10 184801 username akbari0070 184801 mac 184801 bytes_out 514521 184801 bytes_in 5451983 184801 station_ip 83.123.75.3 184801 port 270 184801 unique_id port 184801 remote_ip 10.8.0.166 184804 username barzegar 184804 mac 184804 bytes_out 168941 184804 bytes_in 1159004 184804 station_ip 5.120.116.130 184804 port 265 184804 unique_id port 184804 remote_ip 10.8.0.10 184806 username yazdani6029 184806 mac 184806 bytes_out 3776765 184806 bytes_in 40621465 184806 station_ip 83.123.21.77 184806 port 268 184806 unique_id port 184806 remote_ip 10.8.0.238 184807 username teymori5660 184807 mac 184807 bytes_out 1424539 184807 bytes_in 2560259 184807 station_ip 5.120.98.26 184807 port 239 184807 unique_id port 184807 remote_ip 10.8.0.178 184814 username aminvpn 184814 unique_id port 184814 terminate_cause Lost-Carrier 184814 bytes_out 1043907 184814 bytes_in 17070894 184814 station_ip 5.119.138.150 184814 port 15728992 184814 nas_port_type Virtual 184814 remote_ip 5.5.5.152 184817 username alikomsari 184817 mac 184817 bytes_out 6114920 184817 bytes_in 2441433 184817 station_ip 5.120.64.210 184817 port 239 184817 unique_id port 184817 remote_ip 10.8.0.214 184818 username sekonji0496 184818 mac 184818 bytes_out 450923 184818 bytes_in 7444530 184818 station_ip 83.123.103.32 184818 port 272 184818 unique_id port 184818 remote_ip 10.8.0.62 184827 username godarzi 184827 mac 184827 bytes_out 2561191 184827 bytes_in 11351671 184827 station_ip 5.119.49.137 184827 port 236 184827 unique_id port 184768 mac 184768 bytes_out 0 184768 bytes_in 0 184768 station_ip 5.120.100.98 184768 port 265 184768 unique_id port 184768 remote_ip 10.8.0.58 184772 username akbari0070 184772 mac 184772 bytes_out 1381163 184772 bytes_in 2096461 184772 station_ip 83.123.86.19 184772 port 268 184772 unique_id port 184772 remote_ip 10.8.0.166 184776 username rashidi4690 184776 mac 184776 bytes_out 421838 184776 bytes_in 2459848 184776 station_ip 5.120.18.13 184776 port 271 184776 unique_id port 184776 remote_ip 10.8.0.242 184778 username aminvpn 184778 mac 184778 bytes_out 0 184778 bytes_in 0 184778 station_ip 5.120.100.98 184778 port 272 184778 unique_id port 184778 remote_ip 10.8.0.58 184782 username saeeddamghani 184782 mac 184782 bytes_out 774965 184782 bytes_in 7290968 184782 station_ip 217.60.175.202 184782 port 267 184782 unique_id port 184782 remote_ip 10.8.0.122 184784 username barzegar 184784 kill_reason Maximum number of concurrent logins reached 184784 mac 184784 bytes_out 0 184784 bytes_in 0 184784 station_ip 5.120.116.130 184784 port 267 184784 unique_id port 184786 username barzegar 184786 kill_reason Maximum number of concurrent logins reached 184786 mac 184786 bytes_out 0 184786 bytes_in 0 184786 station_ip 5.120.116.130 184786 port 271 184786 unique_id port 184788 username barzegar 184788 mac 184788 bytes_out 307818 184788 bytes_in 3055114 184788 station_ip 5.120.116.130 184788 port 265 184788 unique_id port 184788 remote_ip 10.8.0.10 184789 username saeeddamghani 184789 mac 184789 bytes_out 7700 184789 bytes_in 9049 184789 station_ip 217.60.175.202 184789 port 239 184789 unique_id port 184789 remote_ip 10.8.0.122 184790 username khaleghi2406 184790 mac 184790 bytes_out 0 184790 bytes_in 0 184790 station_ip 83.123.67.106 184790 port 259 184790 unique_id port 184792 username aminvpn 184792 mac 184792 bytes_out 0 184792 bytes_in 0 184792 station_ip 5.120.100.98 184792 port 239 184792 unique_id port 184792 remote_ip 10.8.0.58 184795 username barzegar 184795 kill_reason Maximum number of concurrent logins reached 184795 mac 184795 bytes_out 0 184795 bytes_in 0 184795 station_ip 5.120.116.130 184795 port 272 184795 unique_id port 184798 username iranmanesh4443 184798 kill_reason Another user logged on this global unique id 184798 mac 184798 bytes_out 0 184798 bytes_in 0 184798 station_ip 5.119.127.171 184798 port 240 184798 unique_id port 184798 remote_ip 10.8.0.22 184799 username aminvpn 184799 mac 184799 bytes_out 582199 184799 bytes_in 2564484 184799 station_ip 5.120.117.173 184799 port 269 184799 unique_id port 184799 remote_ip 10.8.0.58 184800 username aminvpn 184800 mac 184800 bytes_out 0 184800 bytes_in 0 184800 station_ip 5.120.100.98 184800 port 272 184800 unique_id port 184800 remote_ip 10.8.0.58 184808 username teymori5660 184808 mac 184808 bytes_out 0 184808 bytes_in 0 184808 station_ip 5.120.98.26 184808 port 271 184808 unique_id port 184808 remote_ip 10.8.0.178 184809 username aminvpn 184809 mac 184809 bytes_out 489608 184809 bytes_in 2291723 184809 station_ip 5.120.117.173 184809 port 269 184809 unique_id port 184809 remote_ip 10.8.0.58 184811 username sekonji0496 184811 mac 184811 bytes_out 126221 184811 bytes_in 561583 184811 station_ip 83.123.103.32 184811 port 239 184811 unique_id port 184811 remote_ip 10.8.0.62 184816 username esmaeilkazemi 184816 mac 184816 bytes_out 5045 184816 bytes_in 22152 184816 station_ip 83.123.33.157 184816 port 273 184816 unique_id port 184816 remote_ip 10.8.0.26 184805 unique_id port 184805 remote_ip 10.8.0.50 184810 username aminvpn 184810 unique_id port 184810 terminate_cause Lost-Carrier 184810 bytes_out 438332 184810 bytes_in 8420667 184810 station_ip 5.119.138.150 184810 port 15728991 184810 nas_port_type Virtual 184810 remote_ip 5.5.5.155 184812 username farhad3 184812 mac 184812 bytes_out 1521173 184812 bytes_in 7671087 184812 station_ip 5.120.60.193 184812 port 259 184812 unique_id port 184812 remote_ip 10.8.0.222 184813 username aminvpn 184813 mac 184813 bytes_out 0 184813 bytes_in 0 184813 station_ip 5.120.100.98 184813 port 259 184813 unique_id port 184813 remote_ip 10.8.0.58 184815 username kalantary6037 184815 mac 184815 bytes_out 759572 184815 bytes_in 9599486 184815 station_ip 83.123.68.55 184815 port 271 184815 unique_id port 184815 remote_ip 10.8.0.50 184820 username barzegar 184820 mac 184820 bytes_out 1231243 184820 bytes_in 13833033 184820 station_ip 5.120.116.130 184820 port 265 184820 unique_id port 184820 remote_ip 10.8.0.10 184822 username houshang 184822 mac 184822 bytes_out 2337518 184822 bytes_in 15565479 184822 station_ip 5.119.125.186 184822 port 269 184822 unique_id port 184822 remote_ip 10.8.0.82 184823 username sekonji0496 184823 mac 184823 bytes_out 1974 184823 bytes_in 4066 184823 station_ip 83.123.103.32 184823 port 265 184823 unique_id port 184823 remote_ip 10.8.0.62 184824 username fezealinaghi 184824 mac 184824 bytes_out 773961 184824 bytes_in 1908238 184824 station_ip 83.123.95.118 184824 port 267 184824 unique_id port 184824 remote_ip 10.8.0.202 184826 username aminvpn 184826 mac 184826 bytes_out 0 184826 bytes_in 0 184826 station_ip 5.120.100.98 184826 port 265 184826 unique_id port 184826 remote_ip 10.8.0.58 184829 username barzegar 184829 mac 184829 bytes_out 0 184829 bytes_in 0 184829 station_ip 5.120.116.130 184829 port 236 184829 unique_id port 184829 remote_ip 10.8.0.10 184832 username sedighe 184832 mac 184832 bytes_out 477075 184832 bytes_in 1912914 184832 station_ip 83.123.117.132 184832 port 259 184832 unique_id port 184832 remote_ip 10.8.0.46 184833 username shadkam 184833 mac 184833 bytes_out 639531 184833 bytes_in 10096254 184833 station_ip 83.123.117.223 184833 port 265 184833 unique_id port 184833 remote_ip 10.8.0.74 184834 username sekonji0496 184834 mac 184834 bytes_out 21680 184834 bytes_in 41605 184834 station_ip 83.123.103.32 184834 port 236 184834 unique_id port 184834 remote_ip 10.8.0.62 184836 username afarin1 184836 mac 184836 bytes_out 10216 184836 bytes_in 15536 184836 station_ip 151.238.239.145 184836 port 259 184836 unique_id port 184836 remote_ip 10.8.0.234 184838 username akbari0070 184838 mac 184838 bytes_out 0 184838 bytes_in 0 184838 station_ip 83.123.13.115 184838 port 239 184838 unique_id port 184841 username sekonji0496 184841 mac 184841 bytes_out 0 184841 bytes_in 0 184841 station_ip 83.123.103.32 184841 port 236 184841 unique_id port 184841 remote_ip 10.8.0.62 184846 username sekonji0496 184846 mac 184846 bytes_out 0 184846 bytes_in 0 184846 station_ip 83.123.103.32 184846 port 236 184846 unique_id port 184846 remote_ip 10.8.0.62 184850 username soleymani5056 184850 mac 184850 bytes_out 392099 184850 bytes_in 3385337 184850 station_ip 5.119.197.31 184850 port 259 184850 unique_id port 184850 remote_ip 10.8.0.226 184852 username soleymani5056 184852 mac 184852 bytes_out 89089 184852 bytes_in 134499 184852 station_ip 5.119.94.247 184852 port 274 184819 username sekonji0496 184819 mac 184819 bytes_out 0 184819 bytes_in 0 184819 station_ip 83.123.103.32 184819 port 273 184819 unique_id port 184819 remote_ip 10.8.0.62 184821 username sekonji0496 184821 mac 184821 bytes_out 26523 184821 bytes_in 86639 184821 station_ip 83.123.103.32 184821 port 273 184821 unique_id port 184821 remote_ip 10.8.0.62 184825 username aminvpn 184825 mac 184825 bytes_out 0 184825 bytes_in 0 184825 station_ip 5.120.100.98 184825 port 265 184825 unique_id port 184825 remote_ip 10.8.0.58 184828 username akbari0070 184828 kill_reason Another user logged on this global unique id 184828 mac 184828 bytes_out 0 184828 bytes_in 0 184828 station_ip 83.123.13.115 184828 port 239 184828 unique_id port 184828 remote_ip 10.8.0.166 184831 username soleymani5056 184831 mac 184831 bytes_out 242093 184831 bytes_in 872464 184831 station_ip 5.119.84.229 184831 port 274 184831 unique_id port 184831 remote_ip 10.8.0.226 184835 username barzegar 184835 mac 184835 bytes_out 0 184835 bytes_in 0 184835 station_ip 5.120.116.130 184835 port 265 184835 unique_id port 184835 remote_ip 10.8.0.10 184844 username yaghobi 184844 mac 184844 bytes_out 1907957 184844 bytes_in 16625692 184844 station_ip 83.123.39.171 184844 port 273 184844 unique_id port 184844 remote_ip 10.8.0.138 184845 username sekonji0496 184845 mac 184845 bytes_out 0 184845 bytes_in 0 184845 station_ip 83.123.103.32 184845 port 236 184845 unique_id port 184845 remote_ip 10.8.0.62 184851 username milan 184851 kill_reason Another user logged on this global unique id 184851 mac 184851 bytes_out 0 184851 bytes_in 0 184851 station_ip 5.119.198.160 184851 port 251 184851 unique_id port 184854 username barzegar 184854 mac 184854 bytes_out 0 184854 bytes_in 0 184854 station_ip 5.120.116.130 184854 port 259 184854 unique_id port 184854 remote_ip 10.8.0.10 184856 username barzegar 184856 mac 184856 bytes_out 0 184856 bytes_in 0 184856 station_ip 5.120.116.130 184856 port 259 184856 unique_id port 184856 remote_ip 10.8.0.10 184858 username soleymani5056 184858 mac 184858 bytes_out 21189 184858 bytes_in 30577 184858 station_ip 5.120.50.119 184858 port 259 184858 unique_id port 184858 remote_ip 10.8.0.226 184859 username iranmanesh4443 184859 mac 184859 bytes_out 0 184859 bytes_in 0 184859 station_ip 5.119.127.171 184859 port 240 184859 unique_id port 184862 username farhad3 184862 kill_reason Another user logged on this global unique id 184862 mac 184862 bytes_out 0 184862 bytes_in 0 184862 station_ip 5.120.60.193 184862 port 272 184862 unique_id port 184865 username barzegar 184865 mac 184865 bytes_out 0 184865 bytes_in 0 184865 station_ip 5.120.116.130 184865 port 273 184865 unique_id port 184865 remote_ip 10.8.0.10 184866 username komeil 184866 mac 184866 bytes_out 9226 184866 bytes_in 20830 184866 station_ip 83.123.94.233 184866 port 240 184866 unique_id port 184866 remote_ip 10.8.0.218 184868 username milan 184868 mac 184868 bytes_out 0 184868 bytes_in 0 184868 station_ip 5.119.198.160 184868 port 251 184868 unique_id port 184869 username afarin1 184869 mac 184869 bytes_out 595395 184869 bytes_in 3240985 184869 station_ip 83.123.58.47 184869 port 265 184869 unique_id port 184869 remote_ip 10.8.0.234 184870 username sekonji0496 184870 mac 184870 bytes_out 0 184870 bytes_in 0 184870 station_ip 83.123.103.32 184870 port 265 184870 unique_id port 184870 remote_ip 10.8.0.62 184872 username komeil 184872 mac 184827 remote_ip 10.8.0.38 184830 username sekonji0496 184830 mac 184830 bytes_out 85248 184830 bytes_in 1251887 184830 station_ip 83.123.103.32 184830 port 265 184830 unique_id port 184830 remote_ip 10.8.0.62 184837 username hatami 184837 mac 184837 bytes_out 1128740 184837 bytes_in 8685781 184837 station_ip 151.235.115.186 184837 port 272 184837 unique_id port 184837 remote_ip 10.8.0.98 184839 username aminvpn 184839 mac 184839 bytes_out 0 184839 bytes_in 0 184839 station_ip 5.120.100.98 184839 port 239 184839 unique_id port 184839 remote_ip 10.8.0.58 184840 username sekonji0496 184840 mac 184840 bytes_out 16637 184840 bytes_in 59035 184840 station_ip 83.123.103.32 184840 port 236 184840 unique_id port 184840 remote_ip 10.8.0.62 184842 username sekonji0496 184842 mac 184842 bytes_out 0 184842 bytes_in 0 184842 station_ip 83.123.103.32 184842 port 236 184842 unique_id port 184842 remote_ip 10.8.0.62 184843 username rezaei 184843 mac 184843 bytes_out 2836740 184843 bytes_in 27437128 184843 station_ip 5.120.85.152 184843 port 262 184843 unique_id port 184843 remote_ip 10.8.0.198 184847 username barzegar 184847 mac 184847 bytes_out 0 184847 bytes_in 0 184847 station_ip 5.120.116.130 184847 port 236 184847 unique_id port 184847 remote_ip 10.8.0.10 184848 username sekonji0496 184848 mac 184848 bytes_out 0 184848 bytes_in 0 184848 station_ip 83.123.103.32 184848 port 239 184848 unique_id port 184848 remote_ip 10.8.0.62 184849 username malekpoir 184849 kill_reason Another user logged on this global unique id 184849 mac 184849 bytes_out 0 184849 bytes_in 0 184849 station_ip 5.120.90.111 184849 port 261 184849 unique_id port 184857 username barzegar 184857 mac 184857 bytes_out 0 184857 bytes_in 0 184857 station_ip 5.120.116.130 184857 port 274 184857 unique_id port 184857 remote_ip 10.8.0.10 184860 username komeil 184860 mac 184860 bytes_out 722510 184860 bytes_in 8132865 184860 station_ip 83.123.94.233 184860 port 273 184860 unique_id port 184860 remote_ip 10.8.0.218 184861 username farhad3 184861 kill_reason Another user logged on this global unique id 184861 mac 184861 bytes_out 0 184861 bytes_in 0 184861 station_ip 5.120.60.193 184861 port 272 184861 unique_id port 184861 remote_ip 10.8.0.222 184867 username farhad3 184867 kill_reason Maximum check online fails reached 184867 mac 184867 bytes_out 0 184867 bytes_in 0 184867 station_ip 5.120.60.193 184867 port 272 184867 unique_id port 184871 username milan 184871 mac 184871 bytes_out 304924 184871 bytes_in 2476788 184871 station_ip 5.120.139.12 184871 port 272 184871 unique_id port 184871 remote_ip 10.8.0.182 184874 username komeil 184874 mac 184874 bytes_out 0 184874 bytes_in 0 184874 station_ip 83.123.94.233 184874 port 240 184874 unique_id port 184874 remote_ip 10.8.0.218 184876 username komeil 184876 mac 184876 bytes_out 0 184876 bytes_in 0 184876 station_ip 83.123.94.233 184876 port 265 184876 unique_id port 184876 remote_ip 10.8.0.218 184877 username farhad3 184877 kill_reason Another user logged on this global unique id 184877 mac 184877 bytes_out 0 184877 bytes_in 0 184877 station_ip 5.120.60.193 184877 port 239 184877 unique_id port 184877 remote_ip 10.8.0.222 184878 username komeil 184878 mac 184878 bytes_out 0 184878 bytes_in 0 184878 station_ip 83.123.94.233 184878 port 265 184878 unique_id port 184878 remote_ip 10.8.0.218 184881 username mosi 184881 mac 184881 bytes_out 1155929 184881 bytes_in 9343682 184881 station_ip 89.47.77.160 184852 unique_id port 184852 remote_ip 10.8.0.226 184853 username majidsarmast 184853 mac 184853 bytes_out 348499 184853 bytes_in 2041072 184853 station_ip 83.123.110.93 184853 port 236 184853 unique_id port 184853 remote_ip 10.8.0.170 184855 username zahra1101 184855 kill_reason Another user logged on this global unique id 184855 mac 184855 bytes_out 0 184855 bytes_in 0 184855 station_ip 5.120.141.245 184855 port 271 184855 unique_id port 184855 remote_ip 10.8.0.250 184863 username komeil 184863 mac 184863 bytes_out 0 184863 bytes_in 0 184863 station_ip 83.123.94.233 184863 port 240 184863 unique_id port 184863 remote_ip 10.8.0.218 184864 username sekonji0496 184864 mac 184864 bytes_out 455069 184864 bytes_in 1812132 184864 station_ip 83.123.103.32 184864 port 239 184864 unique_id port 184864 remote_ip 10.8.0.62 184873 username sekonji0496 184873 mac 184873 bytes_out 2620 184873 bytes_in 4875 184873 station_ip 83.123.103.32 184873 port 265 184873 unique_id port 184873 remote_ip 10.8.0.62 184879 username komeil 184879 kill_reason Maximum check online fails reached 184879 mac 184879 bytes_out 0 184879 bytes_in 0 184879 station_ip 83.123.94.233 184879 port 240 184879 unique_id port 184880 username shadkam 184880 mac 184880 bytes_out 1502434 184880 bytes_in 18207535 184880 station_ip 83.123.2.90 184880 port 262 184880 unique_id port 184880 remote_ip 10.8.0.74 184893 username komeil 184893 mac 184893 bytes_out 0 184893 bytes_in 0 184893 station_ip 83.123.94.233 184893 port 259 184893 unique_id port 184893 remote_ip 10.8.0.218 184896 username barzegar 184896 mac 184896 bytes_out 0 184896 bytes_in 0 184896 station_ip 5.120.116.130 184896 port 269 184896 unique_id port 184896 remote_ip 10.8.0.10 184901 username yaghobi 184901 mac 184901 bytes_out 316934 184901 bytes_in 330360 184901 station_ip 83.123.26.176 184901 port 262 184901 unique_id port 184901 remote_ip 10.8.0.138 184903 username komeil 184903 mac 184903 bytes_out 1318201 184903 bytes_in 11642162 184903 station_ip 83.123.94.233 184903 port 259 184903 unique_id port 184903 remote_ip 10.8.0.218 184904 username komeil 184904 mac 184904 bytes_out 0 184904 bytes_in 0 184904 station_ip 83.123.94.233 184904 port 259 184904 unique_id port 184904 remote_ip 10.8.0.218 184906 username komeil 184906 mac 184906 bytes_out 0 184906 bytes_in 0 184906 station_ip 83.123.94.233 184906 port 259 184906 unique_id port 184906 remote_ip 10.8.0.218 184908 username barzegar 184908 mac 184908 bytes_out 0 184908 bytes_in 0 184908 station_ip 5.120.116.130 184908 port 262 184908 unique_id port 184908 remote_ip 10.8.0.10 184912 username komeil 184912 mac 184912 bytes_out 0 184912 bytes_in 0 184912 station_ip 83.123.94.233 184912 port 262 184912 unique_id port 184912 remote_ip 10.8.0.218 184914 username komeil 184914 mac 184914 bytes_out 0 184914 bytes_in 0 184914 station_ip 83.123.94.233 184914 port 265 184914 unique_id port 184914 remote_ip 10.8.0.218 184915 username rashidi4690 184915 mac 184915 bytes_out 4421280 184915 bytes_in 21697275 184915 station_ip 5.120.18.13 184915 port 268 184915 unique_id port 184915 remote_ip 10.8.0.242 184917 username houshang 184917 mac 184917 bytes_out 90206 184917 bytes_in 130213 184917 station_ip 5.119.125.186 184917 port 262 184917 unique_id port 184917 remote_ip 10.8.0.82 184919 username milan 184919 mac 184919 bytes_out 137635 184919 bytes_in 777110 184919 station_ip 5.120.23.61 184919 port 265 184872 bytes_out 3680 184872 bytes_in 5942 184872 station_ip 83.123.94.233 184872 port 240 184872 unique_id port 184872 remote_ip 10.8.0.218 184875 username afarin1 184875 mac 184875 bytes_out 19711 184875 bytes_in 31028 184875 station_ip 83.123.58.47 184875 port 251 184875 unique_id port 184875 remote_ip 10.8.0.234 184882 username yaghobi 184882 mac 184882 bytes_out 314242 184882 bytes_in 348580 184882 station_ip 83.123.42.204 184882 port 236 184882 unique_id port 184882 remote_ip 10.8.0.138 184884 username komeil 184884 mac 184884 bytes_out 40994 184884 bytes_in 97702 184884 station_ip 83.123.94.233 184884 port 265 184884 unique_id port 184884 remote_ip 10.8.0.218 184885 username komeil 184885 mac 184885 bytes_out 0 184885 bytes_in 0 184885 station_ip 83.123.94.233 184885 port 236 184885 unique_id port 184885 remote_ip 10.8.0.218 184887 username yaghobi 184887 mac 184887 bytes_out 59814 184887 bytes_in 55367 184887 station_ip 83.123.72.55 184887 port 259 184887 unique_id port 184887 remote_ip 10.8.0.138 184889 username komeil 184889 mac 184889 bytes_out 12380 184889 bytes_in 30365 184889 station_ip 83.123.94.233 184889 port 236 184889 unique_id port 184889 remote_ip 10.8.0.218 184891 username komeil 184891 mac 184891 bytes_out 0 184891 bytes_in 0 184891 station_ip 83.123.94.233 184891 port 236 184891 unique_id port 184891 remote_ip 10.8.0.218 184895 username komeil 184895 mac 184895 bytes_out 0 184895 bytes_in 0 184895 station_ip 83.123.94.233 184895 port 259 184895 unique_id port 184895 remote_ip 10.8.0.218 184900 username khademi 184900 kill_reason Another user logged on this global unique id 184900 mac 184900 bytes_out 0 184900 bytes_in 0 184900 station_ip 83.123.78.246 184900 port 270 184900 unique_id port 184900 remote_ip 10.8.0.14 184902 username ahmadi1 184902 mac 184902 bytes_out 572086 184902 bytes_in 1258763 184902 station_ip 83.123.22.159 184902 port 265 184902 unique_id port 184902 remote_ip 10.8.0.94 184907 username malekpoir 184907 kill_reason Another user logged on this global unique id 184907 mac 184907 bytes_out 0 184907 bytes_in 0 184907 station_ip 5.120.90.111 184907 port 261 184907 unique_id port 184910 username farhad3 184910 kill_reason Another user logged on this global unique id 184910 mac 184910 bytes_out 0 184910 bytes_in 0 184910 station_ip 5.120.60.193 184910 port 239 184910 unique_id port 184911 username komeil 184911 mac 184911 bytes_out 0 184911 bytes_in 0 184911 station_ip 83.123.94.233 184911 port 259 184911 unique_id port 184911 remote_ip 10.8.0.218 184916 username malekpoir 184916 mac 184916 bytes_out 0 184916 bytes_in 0 184916 station_ip 5.120.90.111 184916 port 261 184916 unique_id port 184918 username shadkam 184918 mac 184918 bytes_out 948639 184918 bytes_in 12298145 184918 station_ip 83.123.123.179 184918 port 259 184918 unique_id port 184918 remote_ip 10.8.0.74 184922 username komeil 184922 mac 184922 bytes_out 245683 184922 bytes_in 2616100 184922 station_ip 83.123.94.233 184922 port 259 184922 unique_id port 184922 remote_ip 10.8.0.218 184923 username komeil 184923 mac 184923 bytes_out 0 184923 bytes_in 0 184923 station_ip 83.123.94.233 184923 port 251 184923 unique_id port 184923 remote_ip 10.8.0.218 184927 username sekonji0496 184927 mac 184927 bytes_out 4760 184927 bytes_in 6245 184927 station_ip 83.123.103.32 184927 port 259 184927 unique_id port 184927 remote_ip 10.8.0.62 184928 username mostafa_es78 184928 mac 184881 port 259 184881 unique_id port 184881 remote_ip 10.8.0.142 184883 username barzegar 184883 mac 184883 bytes_out 0 184883 bytes_in 0 184883 station_ip 5.120.116.130 184883 port 236 184883 unique_id port 184883 remote_ip 10.8.0.10 184886 username motamedi9772 184886 mac 184886 bytes_out 179030 184886 bytes_in 597842 184886 station_ip 83.123.14.223 184886 port 262 184886 unique_id port 184886 remote_ip 10.8.0.154 184888 username godarzi 184888 kill_reason Another user logged on this global unique id 184888 mac 184888 bytes_out 0 184888 bytes_in 0 184888 station_ip 5.202.29.254 184888 port 269 184888 unique_id port 184888 remote_ip 10.8.0.38 184890 username farhad3 184890 kill_reason Another user logged on this global unique id 184890 mac 184890 bytes_out 0 184890 bytes_in 0 184890 station_ip 5.120.60.193 184890 port 239 184890 unique_id port 184892 username godarzi 184892 mac 184892 bytes_out 0 184892 bytes_in 0 184892 station_ip 5.202.29.254 184892 port 269 184892 unique_id port 184894 username zahra1101 184894 kill_reason Another user logged on this global unique id 184894 mac 184894 bytes_out 0 184894 bytes_in 0 184894 station_ip 5.120.141.245 184894 port 271 184894 unique_id port 184897 username komeil 184897 mac 184897 bytes_out 0 184897 bytes_in 0 184897 station_ip 83.123.94.233 184897 port 259 184897 unique_id port 184897 remote_ip 10.8.0.218 184898 username komeil 184898 mac 184898 bytes_out 0 184898 bytes_in 0 184898 station_ip 83.123.94.233 184898 port 259 184898 unique_id port 184898 remote_ip 10.8.0.218 184899 username zahra1101 184899 mac 184899 bytes_out 0 184899 bytes_in 0 184899 station_ip 5.120.141.245 184899 port 271 184899 unique_id port 184905 username komeil 184905 mac 184905 bytes_out 0 184905 bytes_in 0 184905 station_ip 83.123.94.233 184905 port 259 184905 unique_id port 184905 remote_ip 10.8.0.218 184909 username komeil 184909 mac 184909 bytes_out 0 184909 bytes_in 0 184909 station_ip 83.123.94.233 184909 port 259 184909 unique_id port 184909 remote_ip 10.8.0.218 184913 username yaghobi 184913 mac 184913 bytes_out 367373 184913 bytes_in 614749 184913 station_ip 83.123.26.176 184913 port 273 184913 unique_id port 184913 remote_ip 10.8.0.138 184920 username sekonji0496 184920 mac 184920 bytes_out 77785 184920 bytes_in 304667 184920 station_ip 83.123.103.32 184920 port 251 184920 unique_id port 184920 remote_ip 10.8.0.62 184921 username sekonji0496 184921 mac 184921 bytes_out 2777 184921 bytes_in 4864 184921 station_ip 83.123.103.32 184921 port 251 184921 unique_id port 184921 remote_ip 10.8.0.62 184924 username khademi 184924 kill_reason Another user logged on this global unique id 184924 mac 184924 bytes_out 0 184924 bytes_in 0 184924 station_ip 83.123.78.246 184924 port 270 184924 unique_id port 184933 username sekonji0496 184933 mac 184933 bytes_out 0 184933 bytes_in 0 184933 station_ip 83.123.103.32 184933 port 239 184933 unique_id port 184933 remote_ip 10.8.0.62 184936 username komeil 184936 mac 184936 bytes_out 3060 184936 bytes_in 5486 184936 station_ip 83.123.94.233 184936 port 251 184936 unique_id port 184936 remote_ip 10.8.0.218 184941 username mostafa_es78 184941 mac 184941 bytes_out 1100497 184941 bytes_in 9726458 184941 station_ip 178.236.35.96 184941 port 259 184941 unique_id port 184941 remote_ip 10.8.0.34 184945 username motamedi9772 184945 kill_reason Another user logged on this global unique id 184945 mac 184945 bytes_out 0 184945 bytes_in 0 184919 unique_id port 184919 remote_ip 10.8.0.182 184925 username barzegar 184925 mac 184925 bytes_out 0 184925 bytes_in 0 184925 station_ip 5.120.116.130 184925 port 265 184925 unique_id port 184925 remote_ip 10.8.0.10 184926 username farhad3 184926 mac 184926 bytes_out 0 184926 bytes_in 0 184926 station_ip 5.120.60.193 184926 port 239 184926 unique_id port 184931 username komeil 184931 mac 184931 bytes_out 481006 184931 bytes_in 3745384 184931 station_ip 83.123.94.233 184931 port 251 184931 unique_id port 184931 remote_ip 10.8.0.218 184937 username sekonji0496 184937 mac 184937 bytes_out 3471 184937 bytes_in 5626 184937 station_ip 83.123.103.32 184937 port 265 184937 unique_id port 184937 remote_ip 10.8.0.62 184938 username komeil 184938 mac 184938 bytes_out 0 184938 bytes_in 0 184938 station_ip 83.123.94.233 184938 port 251 184938 unique_id port 184938 remote_ip 10.8.0.218 184940 username komeil 184940 mac 184940 bytes_out 0 184940 bytes_in 0 184940 station_ip 83.123.94.233 184940 port 251 184940 unique_id port 184940 remote_ip 10.8.0.218 184942 username komeil 184942 mac 184942 bytes_out 0 184942 bytes_in 0 184942 station_ip 83.123.94.233 184942 port 251 184942 unique_id port 184942 remote_ip 10.8.0.218 184951 username khademi 184951 kill_reason Another user logged on this global unique id 184951 mac 184951 bytes_out 0 184951 bytes_in 0 184951 station_ip 83.123.78.246 184951 port 270 184951 unique_id port 184954 username komeil 184954 mac 184954 bytes_out 0 184954 bytes_in 0 184954 station_ip 83.123.94.233 184954 port 236 184954 unique_id port 184954 remote_ip 10.8.0.218 184959 username sekonji0496 184959 mac 184959 bytes_out 0 184959 bytes_in 0 184959 station_ip 83.123.103.32 184959 port 236 184959 unique_id port 184959 remote_ip 10.8.0.62 184966 username khademi 184966 mac 184966 bytes_out 0 184966 bytes_in 0 184966 station_ip 83.123.78.246 184966 port 270 184966 unique_id port 184974 username barzegar 184974 mac 184974 bytes_out 0 184974 bytes_in 0 184974 station_ip 5.120.116.130 184974 port 236 184974 unique_id port 184974 remote_ip 10.8.0.10 184978 username komeil 184978 mac 184978 bytes_out 249686 184978 bytes_in 1889564 184978 station_ip 83.123.94.233 184978 port 251 184978 unique_id port 184978 remote_ip 10.8.0.218 184983 username saeeddamghani 184983 mac 184983 bytes_out 0 184983 bytes_in 0 184983 station_ip 5.119.32.50 184983 port 251 184983 unique_id port 184983 remote_ip 10.8.0.122 184986 username hosseine 184986 kill_reason Another user logged on this global unique id 184986 mac 184986 bytes_out 0 184986 bytes_in 0 184986 station_ip 83.123.47.201 184986 port 241 184986 unique_id port 184988 username hajghani 184988 mac 184988 bytes_out 1450451 184988 bytes_in 5971102 184988 station_ip 37.137.29.136 184988 port 236 184988 unique_id port 184988 remote_ip 10.8.0.106 184993 username komeil 184993 mac 184993 bytes_out 0 184993 bytes_in 0 184993 station_ip 83.123.94.233 184993 port 261 184993 unique_id port 184993 remote_ip 10.8.0.218 184997 username saeeddamghani 184997 mac 184997 bytes_out 0 184997 bytes_in 0 184997 station_ip 5.119.32.50 184997 port 236 184997 unique_id port 184997 remote_ip 10.8.0.122 185002 username mosi 185002 kill_reason Another user logged on this global unique id 185002 mac 185002 bytes_out 0 185002 bytes_in 0 185002 station_ip 89.47.77.160 185002 port 272 185002 unique_id port 185002 remote_ip 10.8.0.142 184928 bytes_out 2211716 184928 bytes_in 20465301 184928 station_ip 83.122.8.56 184928 port 261 184928 unique_id port 184928 remote_ip 10.8.0.34 184929 username aminvpn 184929 kill_reason Another user logged on this global unique id 184929 mac 184929 bytes_out 0 184929 bytes_in 0 184929 station_ip 5.119.193.69 184929 port 269 184929 unique_id port 184929 remote_ip 10.8.0.58 184930 username sekonji0496 184930 mac 184930 bytes_out 4417 184930 bytes_in 5878 184930 station_ip 83.123.103.32 184930 port 239 184930 unique_id port 184930 remote_ip 10.8.0.62 184932 username komeil 184932 mac 184932 bytes_out 6285 184932 bytes_in 8232 184932 station_ip 83.123.94.233 184932 port 239 184932 unique_id port 184932 remote_ip 10.8.0.218 184934 username yaghobi 184934 mac 184934 bytes_out 799877 184934 bytes_in 1646193 184934 station_ip 83.123.26.183 184934 port 274 184934 unique_id port 184934 remote_ip 10.8.0.138 184935 username yazdani6029 184935 kill_reason Another user logged on this global unique id 184935 mac 184935 bytes_out 0 184935 bytes_in 0 184935 station_ip 83.123.84.89 184935 port 236 184935 unique_id port 184935 remote_ip 10.8.0.238 184939 username barzegar 184939 mac 184939 bytes_out 0 184939 bytes_in 0 184939 station_ip 5.120.116.130 184939 port 251 184939 unique_id port 184939 remote_ip 10.8.0.10 184943 username komeil 184943 mac 184943 bytes_out 0 184943 bytes_in 0 184943 station_ip 83.123.94.233 184943 port 259 184943 unique_id port 184943 remote_ip 10.8.0.218 184944 username yaghobi 184944 mac 184944 bytes_out 489090 184944 bytes_in 3104987 184944 station_ip 83.123.26.183 184944 port 239 184944 unique_id port 184944 remote_ip 10.8.0.138 184946 username mostafa_es78 184946 mac 184946 bytes_out 112104 184946 bytes_in 1074234 184946 station_ip 178.236.35.96 184946 port 251 184946 unique_id port 184946 remote_ip 10.8.0.34 184947 username sekonji0496 184947 mac 184947 bytes_out 2698 184947 bytes_in 4990 184947 station_ip 83.123.103.32 184947 port 265 184947 unique_id port 184947 remote_ip 10.8.0.62 184949 username yazdani6029 184949 mac 184949 bytes_out 0 184949 bytes_in 0 184949 station_ip 83.123.84.89 184949 port 236 184949 unique_id port 184952 username fezealinaghi 184952 mac 184952 bytes_out 33506709 184952 bytes_in 5290923 184952 station_ip 83.123.95.118 184952 port 267 184952 unique_id port 184952 remote_ip 10.8.0.202 184953 username yaghobi 184953 mac 184953 bytes_out 134647 184953 bytes_in 289018 184953 station_ip 83.123.35.23 184953 port 259 184953 unique_id port 184953 remote_ip 10.8.0.138 184956 username aminvpn 184956 mac 184956 bytes_out 0 184956 bytes_in 0 184956 station_ip 5.119.193.69 184956 port 269 184956 unique_id port 184957 username komeil 184957 mac 184957 bytes_out 0 184957 bytes_in 0 184957 station_ip 83.123.94.233 184957 port 236 184957 unique_id port 184957 remote_ip 10.8.0.218 184958 username sekonji0496 184958 mac 184958 bytes_out 34123 184958 bytes_in 378018 184958 station_ip 83.123.103.32 184958 port 259 184958 unique_id port 184958 remote_ip 10.8.0.62 184960 username mostafa_es78 184960 mac 184960 bytes_out 581891 184960 bytes_in 5652948 184960 station_ip 178.236.35.96 184960 port 251 184960 unique_id port 184960 remote_ip 10.8.0.34 184965 username komeil 184965 mac 184965 bytes_out 0 184965 bytes_in 0 184965 station_ip 83.123.94.233 184965 port 239 184965 unique_id port 184965 remote_ip 10.8.0.218 184967 username komeil 184967 mac 184945 station_ip 83.123.14.223 184945 port 271 184945 unique_id port 184945 remote_ip 10.8.0.154 184948 username komeil 184948 mac 184948 bytes_out 2361 184948 bytes_in 4327 184948 station_ip 83.123.94.233 184948 port 239 184948 unique_id port 184948 remote_ip 10.8.0.218 184950 username komeil 184950 mac 184950 bytes_out 0 184950 bytes_in 0 184950 station_ip 83.123.94.233 184950 port 239 184950 unique_id port 184950 remote_ip 10.8.0.218 184955 username jafari 184955 kill_reason Another user logged on this global unique id 184955 mac 184955 bytes_out 0 184955 bytes_in 0 184955 station_ip 37.156.59.51 184955 port 262 184955 unique_id port 184955 remote_ip 10.8.0.86 184961 username fezealinaghi 184961 mac 184961 bytes_out 26826 184961 bytes_in 46270 184961 station_ip 83.123.95.118 184961 port 239 184961 unique_id port 184961 remote_ip 10.8.0.202 184962 username barzegar 184962 mac 184962 bytes_out 0 184962 bytes_in 0 184962 station_ip 5.120.116.130 184962 port 239 184962 unique_id port 184962 remote_ip 10.8.0.10 184963 username komeil 184963 mac 184963 bytes_out 0 184963 bytes_in 0 184963 station_ip 83.123.94.233 184963 port 239 184963 unique_id port 184963 remote_ip 10.8.0.218 184964 username farhad3 184964 mac 184964 bytes_out 1884712 184964 bytes_in 9907037 184964 station_ip 5.120.60.193 184964 port 261 184964 unique_id port 184964 remote_ip 10.8.0.222 184968 username fezealinaghi 184968 mac 184968 bytes_out 15916 184968 bytes_in 18082 184968 station_ip 83.123.95.118 184968 port 236 184968 unique_id port 184968 remote_ip 10.8.0.202 184972 username komeil 184972 mac 184972 bytes_out 0 184972 bytes_in 0 184972 station_ip 83.123.94.233 184972 port 236 184972 unique_id port 184972 remote_ip 10.8.0.218 184973 username saeed9658 184973 mac 184973 bytes_out 0 184973 bytes_in 0 184973 station_ip 5.119.117.241 184973 port 236 184973 unique_id port 184973 remote_ip 10.8.0.162 184980 username motamedi9772 184980 kill_reason Another user logged on this global unique id 184980 mac 184980 bytes_out 0 184980 bytes_in 0 184980 station_ip 83.123.14.223 184980 port 271 184980 unique_id port 184982 username saeeddamghani 184982 mac 184982 bytes_out 199127 184982 bytes_in 883560 184982 station_ip 5.119.32.50 184982 port 251 184982 unique_id port 184982 remote_ip 10.8.0.122 184985 username komeil 184985 mac 184985 bytes_out 0 184985 bytes_in 0 184985 station_ip 83.123.94.233 184985 port 261 184985 unique_id port 184985 remote_ip 10.8.0.218 184987 username saeeddamghani 184987 mac 184987 bytes_out 226445 184987 bytes_in 3391026 184987 station_ip 5.119.32.50 184987 port 251 184987 unique_id port 184987 remote_ip 10.8.0.122 184991 username jafari 184991 kill_reason Another user logged on this global unique id 184991 mac 184991 bytes_out 0 184991 bytes_in 0 184991 station_ip 37.156.59.51 184991 port 262 184991 unique_id port 184994 username saeeddamghani 184994 mac 184994 bytes_out 7965 184994 bytes_in 16218 184994 station_ip 5.119.32.50 184994 port 236 184994 unique_id port 184994 remote_ip 10.8.0.122 184995 username komeil 184995 mac 184995 bytes_out 0 184995 bytes_in 0 184995 station_ip 83.123.94.233 184995 port 261 184995 unique_id port 184995 remote_ip 10.8.0.218 184998 username komeil 184998 mac 184998 bytes_out 0 184998 bytes_in 0 184998 station_ip 83.123.94.233 184998 port 236 184998 unique_id port 184998 remote_ip 10.8.0.218 185000 username fezealinaghi 185000 mac 185000 bytes_out 55817 184967 bytes_out 0 184967 bytes_in 0 184967 station_ip 83.123.94.233 184967 port 261 184967 unique_id port 184967 remote_ip 10.8.0.218 184969 username saeed9658 184969 mac 184969 bytes_out 783277 184969 bytes_in 7230038 184969 station_ip 5.119.117.241 184969 port 251 184969 unique_id port 184969 remote_ip 10.8.0.162 184970 username komeil 184970 mac 184970 bytes_out 0 184970 bytes_in 0 184970 station_ip 83.123.94.233 184970 port 236 184970 unique_id port 184970 remote_ip 10.8.0.218 184971 username saeed9658 184971 mac 184971 bytes_out 0 184971 bytes_in 0 184971 station_ip 5.119.117.241 184971 port 251 184971 unique_id port 184971 remote_ip 10.8.0.162 184975 username sekonji0496 184975 mac 184975 bytes_out 187918 184975 bytes_in 355282 184975 station_ip 83.123.103.32 184975 port 239 184975 unique_id port 184975 remote_ip 10.8.0.62 184976 username hosseine 184976 kill_reason Another user logged on this global unique id 184976 mac 184976 bytes_out 0 184976 bytes_in 0 184976 station_ip 83.123.47.201 184976 port 241 184976 unique_id port 184976 remote_ip 10.8.0.54 184977 username farhad3 184977 mac 184977 bytes_out 740645 184977 bytes_in 4328644 184977 station_ip 5.120.60.193 184977 port 259 184977 unique_id port 184977 remote_ip 10.8.0.222 184979 username saeed9658 184979 mac 184979 bytes_out 0 184979 bytes_in 0 184979 station_ip 5.119.117.241 184979 port 259 184979 unique_id port 184979 remote_ip 10.8.0.162 184981 username fezealinaghi 184981 mac 184981 bytes_out 771693 184981 bytes_in 8378466 184981 station_ip 83.123.95.118 184981 port 261 184981 unique_id port 184981 remote_ip 10.8.0.202 184984 username komeil 184984 mac 184984 bytes_out 0 184984 bytes_in 0 184984 station_ip 83.123.94.233 184984 port 261 184984 unique_id port 184984 remote_ip 10.8.0.218 184989 username saeeddamghani 184989 mac 184989 bytes_out 0 184989 bytes_in 0 184989 station_ip 5.119.32.50 184989 port 251 184989 unique_id port 184989 remote_ip 10.8.0.122 184990 username barzegar 184990 mac 184990 bytes_out 0 184990 bytes_in 0 184990 station_ip 5.120.116.130 184990 port 236 184990 unique_id port 184990 remote_ip 10.8.0.10 184992 username komeil 184992 mac 184992 bytes_out 0 184992 bytes_in 0 184992 station_ip 83.123.94.233 184992 port 251 184992 unique_id port 184992 remote_ip 10.8.0.218 184996 username saeeddamghani 184996 mac 184996 bytes_out 34800 184996 bytes_in 389713 184996 station_ip 5.119.32.50 184996 port 236 184996 unique_id port 184996 remote_ip 10.8.0.122 184999 username shadkam 184999 mac 184999 bytes_out 858450 184999 bytes_in 7087159 184999 station_ip 83.123.63.182 184999 port 251 184999 unique_id port 184999 remote_ip 10.8.0.74 185001 username hadibarzegar 185001 kill_reason Another user logged on this global unique id 185001 mac 185001 bytes_out 0 185001 bytes_in 0 185001 station_ip 83.123.77.31 185001 port 239 185001 unique_id port 185001 remote_ip 10.8.0.186 185003 username komeil 185003 mac 185003 bytes_out 0 185003 bytes_in 0 185003 station_ip 83.123.94.233 185003 port 251 185003 unique_id port 185003 remote_ip 10.8.0.218 185006 username barzegar 185006 mac 185006 bytes_out 0 185006 bytes_in 0 185006 station_ip 5.120.116.130 185006 port 251 185006 unique_id port 185006 remote_ip 10.8.0.10 185010 username komeil 185010 kill_reason Maximum check online fails reached 185010 mac 185010 bytes_out 0 185010 bytes_in 0 185010 station_ip 83.123.94.233 185010 port 236 185010 unique_id port 185000 bytes_in 86542 185000 station_ip 83.123.95.118 185000 port 267 185000 unique_id port 185000 remote_ip 10.8.0.202 185004 username fezealinaghi 185004 mac 185004 bytes_out 8078 185004 bytes_in 9274 185004 station_ip 83.123.95.118 185004 port 236 185004 unique_id port 185004 remote_ip 10.8.0.202 185008 username saeeddamghani 185008 mac 185008 bytes_out 0 185008 bytes_in 0 185008 station_ip 5.119.32.50 185008 port 251 185008 unique_id port 185008 remote_ip 10.8.0.122 185011 username hadibarzegar 185011 kill_reason Another user logged on this global unique id 185011 mac 185011 bytes_out 0 185011 bytes_in 0 185011 station_ip 83.123.77.31 185011 port 239 185011 unique_id port 185012 username komeil 185012 mac 185012 bytes_out 0 185012 bytes_in 0 185012 station_ip 83.123.94.233 185012 port 251 185012 unique_id port 185012 remote_ip 10.8.0.218 185014 username komeil 185014 kill_reason Maximum check online fails reached 185014 mac 185014 bytes_out 0 185014 bytes_in 0 185014 station_ip 83.123.94.233 185014 port 251 185014 unique_id port 185015 username saeeddamghani 185015 mac 185015 bytes_out 0 185015 bytes_in 0 185015 station_ip 5.119.32.50 185015 port 267 185015 unique_id port 185015 remote_ip 10.8.0.122 185016 username komeil 185016 mac 185016 bytes_out 0 185016 bytes_in 0 185016 station_ip 83.123.94.233 185016 port 268 185016 unique_id port 185016 remote_ip 10.8.0.218 185026 username saeed9658 185026 mac 185026 bytes_out 1718734 185026 bytes_in 14317352 185026 station_ip 5.119.117.241 185026 port 259 185026 unique_id port 185026 remote_ip 10.8.0.162 185031 username komeil 185031 mac 185031 bytes_out 0 185031 bytes_in 0 185031 station_ip 83.123.94.233 185031 port 241 185031 unique_id port 185031 remote_ip 10.8.0.218 185035 username komeil 185035 mac 185035 bytes_out 0 185035 bytes_in 0 185035 station_ip 83.123.94.233 185035 port 259 185035 unique_id port 185035 remote_ip 10.8.0.218 185043 username hadibarzegar 185043 kill_reason Another user logged on this global unique id 185043 mac 185043 bytes_out 0 185043 bytes_in 0 185043 station_ip 83.123.77.31 185043 port 239 185043 unique_id port 185044 username komeil 185044 mac 185044 bytes_out 0 185044 bytes_in 0 185044 station_ip 83.123.94.233 185044 port 270 185044 unique_id port 185044 remote_ip 10.8.0.218 185050 username komeil 185050 kill_reason Maximum check online fails reached 185050 mac 185050 bytes_out 0 185050 bytes_in 0 185050 station_ip 83.123.94.233 185050 port 242 185050 unique_id port 185052 username komeil 185052 kill_reason Maximum check online fails reached 185052 mac 185052 bytes_out 0 185052 bytes_in 0 185052 station_ip 83.123.94.233 185052 port 270 185052 unique_id port 185058 username komeil 185058 kill_reason Maximum check online fails reached 185058 mac 185058 bytes_out 0 185058 bytes_in 0 185058 station_ip 83.123.94.233 185058 port 275 185058 unique_id port 185064 username komeil 185064 mac 185064 bytes_out 0 185064 bytes_in 0 185064 station_ip 83.123.94.233 185064 port 276 185064 unique_id port 185064 remote_ip 10.8.0.218 185065 username komeil 185065 mac 185065 bytes_out 0 185065 bytes_in 0 185065 station_ip 83.123.94.233 185065 port 276 185065 unique_id port 185065 remote_ip 10.8.0.218 185070 username komeil 185070 mac 185070 bytes_out 0 185070 bytes_in 0 185070 station_ip 83.123.94.233 185070 port 261 185070 unique_id port 185070 remote_ip 10.8.0.218 185072 username komeil 185072 mac 185072 bytes_out 0 185005 username komeil 185005 mac 185005 bytes_out 0 185005 bytes_in 0 185005 station_ip 83.123.94.233 185005 port 236 185005 unique_id port 185005 remote_ip 10.8.0.218 185007 username komeil 185007 mac 185007 bytes_out 0 185007 bytes_in 0 185007 station_ip 83.123.94.233 185007 port 236 185007 unique_id port 185007 remote_ip 10.8.0.218 185009 username farhad3 185009 kill_reason Another user logged on this global unique id 185009 mac 185009 bytes_out 0 185009 bytes_in 0 185009 station_ip 5.120.60.193 185009 port 265 185009 unique_id port 185009 remote_ip 10.8.0.222 185013 username komeil 185013 mac 185013 bytes_out 0 185013 bytes_in 0 185013 station_ip 83.123.94.233 185013 port 251 185013 unique_id port 185013 remote_ip 10.8.0.218 185017 username barzegar 185017 mac 185017 bytes_out 0 185017 bytes_in 0 185017 station_ip 5.120.116.130 185017 port 268 185017 unique_id port 185017 remote_ip 10.8.0.10 185019 username komeil 185019 mac 185019 bytes_out 0 185019 bytes_in 0 185019 station_ip 83.123.94.233 185019 port 268 185019 unique_id port 185019 remote_ip 10.8.0.218 185020 username kordestani 185020 mac 185020 bytes_out 40349 185020 bytes_in 238170 185020 station_ip 151.235.100.92 185020 port 267 185020 unique_id port 185020 remote_ip 10.8.0.130 185023 username komeil 185023 mac 185023 bytes_out 0 185023 bytes_in 0 185023 station_ip 83.123.94.233 185023 port 267 185023 unique_id port 185023 remote_ip 10.8.0.218 185024 username komeil 185024 mac 185024 bytes_out 0 185024 bytes_in 0 185024 station_ip 83.123.94.233 185024 port 267 185024 unique_id port 185024 remote_ip 10.8.0.218 185027 username saeeddamghani 185027 mac 185027 bytes_out 0 185027 bytes_in 0 185027 station_ip 5.119.32.50 185027 port 268 185027 unique_id port 185027 remote_ip 10.8.0.122 185028 username hosseine 185028 mac 185028 bytes_out 0 185028 bytes_in 0 185028 station_ip 83.123.47.201 185028 port 241 185028 unique_id port 185030 username hadibarzegar 185030 kill_reason Another user logged on this global unique id 185030 mac 185030 bytes_out 0 185030 bytes_in 0 185030 station_ip 83.123.77.31 185030 port 239 185030 unique_id port 185032 username komeil 185032 mac 185032 bytes_out 0 185032 bytes_in 0 185032 station_ip 83.123.94.233 185032 port 241 185032 unique_id port 185032 remote_ip 10.8.0.218 185034 username komeil 185034 mac 185034 bytes_out 57494 185034 bytes_in 128321 185034 station_ip 83.123.94.233 185034 port 241 185034 unique_id port 185034 remote_ip 10.8.0.218 185036 username komeil 185036 kill_reason Maximum check online fails reached 185036 mac 185036 bytes_out 0 185036 bytes_in 0 185036 station_ip 83.123.94.233 185036 port 241 185036 unique_id port 185040 username komeil 185040 mac 185040 bytes_out 0 185040 bytes_in 0 185040 station_ip 83.123.94.233 185040 port 242 185040 unique_id port 185040 remote_ip 10.8.0.218 185045 username komeil 185045 kill_reason Maximum check online fails reached 185045 mac 185045 bytes_out 0 185045 bytes_in 0 185045 station_ip 83.123.94.233 185045 port 267 185045 unique_id port 185048 username komeil 185048 mac 185048 bytes_out 0 185048 bytes_in 0 185048 station_ip 83.123.94.233 185048 port 242 185048 unique_id port 185048 remote_ip 10.8.0.218 185049 username komeil 185049 mac 185049 bytes_out 0 185049 bytes_in 0 185049 station_ip 83.123.94.233 185049 port 270 185049 unique_id port 185049 remote_ip 10.8.0.218 185051 username farhad3 185018 username komeil 185018 mac 185018 bytes_out 0 185018 bytes_in 0 185018 station_ip 83.123.94.233 185018 port 269 185018 unique_id port 185018 remote_ip 10.8.0.218 185021 username farhad3 185021 mac 185021 bytes_out 0 185021 bytes_in 0 185021 station_ip 5.120.60.193 185021 port 265 185021 unique_id port 185022 username komeil 185022 mac 185022 bytes_out 0 185022 bytes_in 0 185022 station_ip 83.123.94.233 185022 port 267 185022 unique_id port 185022 remote_ip 10.8.0.218 185025 username komeil 185025 mac 185025 bytes_out 0 185025 bytes_in 0 185025 station_ip 83.123.94.233 185025 port 267 185025 unique_id port 185025 remote_ip 10.8.0.218 185029 username komeil 185029 mac 185029 bytes_out 0 185029 bytes_in 0 185029 station_ip 83.123.94.233 185029 port 259 185029 unique_id port 185029 remote_ip 10.8.0.218 185033 username komeil 185033 mac 185033 bytes_out 0 185033 bytes_in 0 185033 station_ip 83.123.94.233 185033 port 259 185033 unique_id port 185033 remote_ip 10.8.0.218 185037 username barzegar 185037 mac 185037 bytes_out 0 185037 bytes_in 0 185037 station_ip 5.120.116.130 185037 port 267 185037 unique_id port 185037 remote_ip 10.8.0.10 185038 username komeil 185038 mac 185038 bytes_out 0 185038 bytes_in 0 185038 station_ip 83.123.94.233 185038 port 267 185038 unique_id port 185038 remote_ip 10.8.0.218 185039 username pourshad 185039 mac 185039 bytes_out 904780 185039 bytes_in 5395556 185039 station_ip 5.119.107.197 185039 port 242 185039 unique_id port 185039 remote_ip 10.8.0.42 185041 username motamedi9772 185041 kill_reason Another user logged on this global unique id 185041 mac 185041 bytes_out 0 185041 bytes_in 0 185041 station_ip 83.123.14.223 185041 port 271 185041 unique_id port 185042 username komeil 185042 mac 185042 bytes_out 0 185042 bytes_in 0 185042 station_ip 83.123.94.233 185042 port 270 185042 unique_id port 185042 remote_ip 10.8.0.218 185046 username rahim 185046 mac 185046 bytes_out 0 185046 bytes_in 0 185046 station_ip 5.120.18.152 185046 port 242 185046 unique_id port 185046 remote_ip 10.8.0.134 185047 username komeil 185047 mac 185047 bytes_out 0 185047 bytes_in 0 185047 station_ip 83.123.94.233 185047 port 242 185047 unique_id port 185047 remote_ip 10.8.0.218 185059 username komeil 185059 mac 185059 bytes_out 0 185059 bytes_in 0 185059 station_ip 83.123.94.233 185059 port 276 185059 unique_id port 185059 remote_ip 10.8.0.218 185060 username komeil 185060 mac 185060 bytes_out 0 185060 bytes_in 0 185060 station_ip 83.123.94.233 185060 port 276 185060 unique_id port 185060 remote_ip 10.8.0.218 185062 username komeil 185062 mac 185062 bytes_out 0 185062 bytes_in 0 185062 station_ip 83.123.94.233 185062 port 276 185062 unique_id port 185062 remote_ip 10.8.0.218 185066 username akbari0070 185066 mac 185066 bytes_out 0 185066 bytes_in 0 185066 station_ip 83.123.13.115 185066 port 261 185066 unique_id port 185074 username barzegar 185074 mac 185074 bytes_out 0 185074 bytes_in 0 185074 station_ip 5.120.116.130 185074 port 276 185074 unique_id port 185074 remote_ip 10.8.0.10 185077 username komeil 185077 mac 185077 bytes_out 0 185077 bytes_in 0 185077 station_ip 83.123.94.233 185077 port 261 185077 unique_id port 185077 remote_ip 10.8.0.218 185080 username hajghani 185080 kill_reason Another user logged on this global unique id 185080 mac 185080 bytes_out 0 185080 bytes_in 0 185051 kill_reason Another user logged on this global unique id 185051 mac 185051 bytes_out 0 185051 bytes_in 0 185051 station_ip 5.120.60.193 185051 port 265 185051 unique_id port 185051 remote_ip 10.8.0.222 185053 username akbari0070 185053 kill_reason Another user logged on this global unique id 185053 mac 185053 bytes_out 0 185053 bytes_in 0 185053 station_ip 83.123.13.115 185053 port 261 185053 unique_id port 185053 remote_ip 10.8.0.166 185054 username komeil 185054 mac 185054 bytes_out 0 185054 bytes_in 0 185054 station_ip 83.123.94.233 185054 port 274 185054 unique_id port 185054 remote_ip 10.8.0.218 185055 username barzegar 185055 mac 185055 bytes_out 0 185055 bytes_in 0 185055 station_ip 5.120.116.130 185055 port 274 185055 unique_id port 185055 remote_ip 10.8.0.10 185056 username komeil 185056 mac 185056 bytes_out 0 185056 bytes_in 0 185056 station_ip 83.123.94.233 185056 port 274 185056 unique_id port 185056 remote_ip 10.8.0.218 185057 username komeil 185057 mac 185057 bytes_out 0 185057 bytes_in 0 185057 station_ip 83.123.94.233 185057 port 274 185057 unique_id port 185057 remote_ip 10.8.0.218 185061 username komeil 185061 kill_reason Maximum check online fails reached 185061 mac 185061 bytes_out 0 185061 bytes_in 0 185061 station_ip 83.123.94.233 185061 port 274 185061 unique_id port 185063 username hadibarzegar 185063 kill_reason Another user logged on this global unique id 185063 mac 185063 bytes_out 0 185063 bytes_in 0 185063 station_ip 83.123.77.31 185063 port 239 185063 unique_id port 185067 username komeil 185067 mac 185067 bytes_out 0 185067 bytes_in 0 185067 station_ip 83.123.94.233 185067 port 261 185067 unique_id port 185067 remote_ip 10.8.0.218 185068 username farhad3 185068 mac 185068 bytes_out 0 185068 bytes_in 0 185068 station_ip 5.120.60.193 185068 port 265 185068 unique_id port 185069 username komeil 185069 mac 185069 bytes_out 0 185069 bytes_in 0 185069 station_ip 83.123.94.233 185069 port 261 185069 unique_id port 185069 remote_ip 10.8.0.218 185071 username motamedi9772 185071 kill_reason Another user logged on this global unique id 185071 mac 185071 bytes_out 0 185071 bytes_in 0 185071 station_ip 83.123.14.223 185071 port 271 185071 unique_id port 185078 username komeil 185078 mac 185078 bytes_out 0 185078 bytes_in 0 185078 station_ip 83.123.94.233 185078 port 261 185078 unique_id port 185078 remote_ip 10.8.0.218 185079 username komeil 185079 mac 185079 bytes_out 0 185079 bytes_in 0 185079 station_ip 83.123.94.233 185079 port 261 185079 unique_id port 185079 remote_ip 10.8.0.218 185082 username komeil 185082 mac 185082 bytes_out 0 185082 bytes_in 0 185082 station_ip 83.123.94.233 185082 port 261 185082 unique_id port 185082 remote_ip 10.8.0.218 185083 username komeil 185083 mac 185083 bytes_out 1636 185083 bytes_in 5129 185083 station_ip 83.123.94.233 185083 port 276 185083 unique_id port 185083 remote_ip 10.8.0.218 185084 username soleymani5056 185084 mac 185084 bytes_out 134087 185084 bytes_in 175355 185084 station_ip 5.120.191.109 185084 port 278 185084 unique_id port 185084 remote_ip 10.8.0.226 185086 username komeil 185086 mac 185086 bytes_out 0 185086 bytes_in 0 185086 station_ip 83.123.94.233 185086 port 259 185086 unique_id port 185086 remote_ip 10.8.0.218 185087 username komeil 185087 kill_reason Maximum check online fails reached 185087 mac 185087 bytes_out 0 185087 bytes_in 0 185087 station_ip 83.123.94.233 185087 port 277 185087 unique_id port 185072 bytes_in 0 185072 station_ip 83.123.94.233 185072 port 261 185072 unique_id port 185072 remote_ip 10.8.0.218 185073 username farhad3 185073 mac 185073 bytes_out 66801 185073 bytes_in 63805 185073 station_ip 5.120.60.193 185073 port 265 185073 unique_id port 185073 remote_ip 10.8.0.222 185075 username komeil 185075 mac 185075 bytes_out 1904 185075 bytes_in 4157 185075 station_ip 83.123.94.233 185075 port 261 185075 unique_id port 185075 remote_ip 10.8.0.218 185076 username farhad3 185076 mac 185076 bytes_out 54956 185076 bytes_in 99420 185076 station_ip 5.120.60.193 185076 port 277 185076 unique_id port 185076 remote_ip 10.8.0.222 185089 username komeil 185089 mac 185089 bytes_out 0 185089 bytes_in 0 185089 station_ip 83.123.94.233 185089 port 259 185089 unique_id port 185089 remote_ip 10.8.0.218 185091 username barzegar 185091 mac 185091 bytes_out 0 185091 bytes_in 0 185091 station_ip 5.120.116.130 185091 port 279 185091 unique_id port 185091 remote_ip 10.8.0.10 185092 username komeil 185092 mac 185092 bytes_out 0 185092 bytes_in 0 185092 station_ip 83.123.94.233 185092 port 278 185092 unique_id port 185092 remote_ip 10.8.0.218 185094 username komeil 185094 mac 185094 bytes_out 0 185094 bytes_in 0 185094 station_ip 83.123.94.233 185094 port 261 185094 unique_id port 185094 remote_ip 10.8.0.218 185098 username hajghani 185098 kill_reason Another user logged on this global unique id 185098 mac 185098 bytes_out 0 185098 bytes_in 0 185098 station_ip 37.137.29.136 185098 port 273 185098 unique_id port 185099 username komeil 185099 mac 185099 bytes_out 0 185099 bytes_in 0 185099 station_ip 83.123.94.233 185099 port 261 185099 unique_id port 185099 remote_ip 10.8.0.218 185105 username komeil 185105 mac 185105 bytes_out 0 185105 bytes_in 0 185105 station_ip 83.123.94.233 185105 port 261 185105 unique_id port 185105 remote_ip 10.8.0.218 185106 username hadibarzegar 185106 kill_reason Another user logged on this global unique id 185106 mac 185106 bytes_out 0 185106 bytes_in 0 185106 station_ip 83.123.77.31 185106 port 239 185106 unique_id port 185108 username mosi 185108 mac 185108 bytes_out 0 185108 bytes_in 0 185108 station_ip 89.47.77.160 185108 port 272 185108 unique_id port 185109 username komeil 185109 mac 185109 bytes_out 0 185109 bytes_in 0 185109 station_ip 83.123.94.233 185109 port 273 185109 unique_id port 185109 remote_ip 10.8.0.218 185114 username komeil 185114 mac 185114 bytes_out 0 185114 bytes_in 0 185114 station_ip 83.123.94.233 185114 port 273 185114 unique_id port 185114 remote_ip 10.8.0.218 185115 username komeil 185115 mac 185115 bytes_out 0 185115 bytes_in 0 185115 station_ip 83.123.94.233 185115 port 273 185115 unique_id port 185115 remote_ip 10.8.0.218 185116 username komeil 185116 mac 185116 bytes_out 0 185116 bytes_in 0 185116 station_ip 83.123.94.233 185116 port 273 185116 unique_id port 185116 remote_ip 10.8.0.218 185118 username komeil 185118 mac 185118 bytes_out 0 185118 bytes_in 0 185118 station_ip 83.123.94.233 185118 port 273 185118 unique_id port 185118 remote_ip 10.8.0.218 185120 username komeil 185120 mac 185120 bytes_out 0 185120 bytes_in 0 185120 station_ip 83.123.94.233 185120 port 273 185120 unique_id port 185120 remote_ip 10.8.0.218 185121 username barzegar 185121 mac 185121 bytes_out 0 185121 bytes_in 0 185121 station_ip 5.120.116.130 185121 port 273 185121 unique_id port 185080 station_ip 37.137.29.136 185080 port 273 185080 unique_id port 185080 remote_ip 10.8.0.106 185081 username komeil 185081 mac 185081 bytes_out 0 185081 bytes_in 0 185081 station_ip 83.123.94.233 185081 port 261 185081 unique_id port 185081 remote_ip 10.8.0.218 185085 username saeeddamghani 185085 mac 185085 bytes_out 1177737 185085 bytes_in 10142626 185085 station_ip 5.119.32.50 185085 port 259 185085 unique_id port 185085 remote_ip 10.8.0.122 185090 username farhad3 185090 mac 185090 bytes_out 1173119 185090 bytes_in 13418839 185090 station_ip 5.120.60.193 185090 port 261 185090 unique_id port 185090 remote_ip 10.8.0.222 185096 username komeil 185096 mac 185096 bytes_out 0 185096 bytes_in 0 185096 station_ip 83.123.94.233 185096 port 261 185096 unique_id port 185096 remote_ip 10.8.0.218 185101 username motamedi9772 185101 kill_reason Another user logged on this global unique id 185101 mac 185101 bytes_out 0 185101 bytes_in 0 185101 station_ip 83.123.14.223 185101 port 271 185101 unique_id port 185103 username barzegar 185103 mac 185103 bytes_out 0 185103 bytes_in 0 185103 station_ip 5.120.116.130 185103 port 261 185103 unique_id port 185103 remote_ip 10.8.0.10 185107 username hajghani 185107 mac 185107 bytes_out 0 185107 bytes_in 0 185107 station_ip 37.137.29.136 185107 port 273 185107 unique_id port 185111 username hadibarzegar 185111 kill_reason Another user logged on this global unique id 185111 mac 185111 bytes_out 0 185111 bytes_in 0 185111 station_ip 83.123.77.31 185111 port 239 185111 unique_id port 185112 username farhad3 185112 mac 185112 bytes_out 1276651 185112 bytes_in 12991249 185112 station_ip 5.120.48.36 185112 port 272 185112 unique_id port 185112 remote_ip 10.8.0.222 185117 username motamedi9772 185117 kill_reason Another user logged on this global unique id 185117 mac 185117 bytes_out 0 185117 bytes_in 0 185117 station_ip 83.123.14.223 185117 port 271 185117 unique_id port 185119 username komeil 185119 mac 185119 bytes_out 0 185119 bytes_in 0 185119 station_ip 83.123.94.233 185119 port 273 185119 unique_id port 185119 remote_ip 10.8.0.218 185122 username hadibarzegar 185122 kill_reason Another user logged on this global unique id 185122 mac 185122 bytes_out 0 185122 bytes_in 0 185122 station_ip 83.123.77.31 185122 port 239 185122 unique_id port 185125 username farhad3 185125 mac 185125 bytes_out 1537923 185125 bytes_in 9900047 185125 station_ip 5.120.48.36 185125 port 272 185125 unique_id port 185125 remote_ip 10.8.0.222 185132 username hadibarzegar 185132 kill_reason Another user logged on this global unique id 185132 mac 185132 bytes_out 0 185132 bytes_in 0 185132 station_ip 83.123.77.31 185132 port 239 185132 unique_id port 185133 username motamedi9772 185133 kill_reason Another user logged on this global unique id 185133 mac 185133 bytes_out 0 185133 bytes_in 0 185133 station_ip 83.123.14.223 185133 port 271 185133 unique_id port 185134 username komeil 185134 mac 185134 bytes_out 0 185134 bytes_in 0 185134 station_ip 83.123.94.233 185134 port 273 185134 unique_id port 185134 remote_ip 10.8.0.218 185138 username komeil 185138 mac 185138 bytes_out 0 185138 bytes_in 0 185138 station_ip 83.123.94.233 185138 port 273 185138 unique_id port 185138 remote_ip 10.8.0.218 185141 username hadibarzegar 185141 kill_reason Maximum number of concurrent logins reached 185141 mac 185141 bytes_out 0 185141 bytes_in 0 185141 station_ip 83.123.77.31 185141 port 273 185141 unique_id port 185143 username hadibarzegar 185143 mac 185143 bytes_out 0 185088 username komeil 185088 mac 185088 bytes_out 0 185088 bytes_in 0 185088 station_ip 83.123.94.233 185088 port 259 185088 unique_id port 185088 remote_ip 10.8.0.218 185093 username komeil 185093 mac 185093 bytes_out 0 185093 bytes_in 0 185093 station_ip 83.123.94.233 185093 port 261 185093 unique_id port 185093 remote_ip 10.8.0.218 185095 username mosi 185095 kill_reason Another user logged on this global unique id 185095 mac 185095 bytes_out 0 185095 bytes_in 0 185095 station_ip 89.47.77.160 185095 port 272 185095 unique_id port 185097 username soleymani5056 185097 mac 185097 bytes_out 188934 185097 bytes_in 262970 185097 station_ip 5.119.32.120 185097 port 276 185097 unique_id port 185097 remote_ip 10.8.0.226 185100 username hadibarzegar 185100 kill_reason Another user logged on this global unique id 185100 mac 185100 bytes_out 0 185100 bytes_in 0 185100 station_ip 83.123.77.31 185100 port 239 185100 unique_id port 185102 username komeil 185102 mac 185102 bytes_out 0 185102 bytes_in 0 185102 station_ip 83.123.94.233 185102 port 261 185102 unique_id port 185102 remote_ip 10.8.0.218 185104 username komeil 185104 mac 185104 bytes_out 0 185104 bytes_in 0 185104 station_ip 83.123.94.233 185104 port 261 185104 unique_id port 185104 remote_ip 10.8.0.218 185110 username barzegar 185110 mac 185110 bytes_out 0 185110 bytes_in 0 185110 station_ip 5.120.116.130 185110 port 276 185110 unique_id port 185110 remote_ip 10.8.0.10 185113 username komeil 185113 mac 185113 bytes_out 0 185113 bytes_in 0 185113 station_ip 83.123.94.233 185113 port 273 185113 unique_id port 185113 remote_ip 10.8.0.218 185124 username dortaj3792 185124 mac 185124 bytes_out 675877 185124 bytes_in 3416732 185124 station_ip 5.120.3.131 185124 port 259 185124 unique_id port 185124 remote_ip 10.8.0.102 185128 username barzegar 185128 mac 185128 bytes_out 0 185128 bytes_in 0 185128 station_ip 5.120.116.130 185128 port 272 185128 unique_id port 185128 remote_ip 10.8.0.10 185130 username komeil 185130 mac 185130 bytes_out 0 185130 bytes_in 0 185130 station_ip 83.123.94.233 185130 port 259 185130 unique_id port 185130 remote_ip 10.8.0.218 185131 username komeil 185131 mac 185131 bytes_out 0 185131 bytes_in 0 185131 station_ip 83.123.94.233 185131 port 259 185131 unique_id port 185131 remote_ip 10.8.0.218 185142 username mosi 185142 mac 185142 bytes_out 98632 185142 bytes_in 102563 185142 station_ip 89.47.77.160 185142 port 261 185142 unique_id port 185142 remote_ip 10.8.0.142 185146 username komeil 185146 mac 185146 bytes_out 0 185146 bytes_in 0 185146 station_ip 83.123.94.233 185146 port 239 185146 unique_id port 185146 remote_ip 10.8.0.218 185148 username soleymani5056 185148 mac 185148 bytes_out 164208 185148 bytes_in 237541 185148 station_ip 5.120.0.236 185148 port 278 185148 unique_id port 185148 remote_ip 10.8.0.226 185157 username fezealinaghi 185157 mac 185157 bytes_out 2240268 185157 bytes_in 13832328 185157 station_ip 83.123.95.118 185157 port 265 185157 unique_id port 185157 remote_ip 10.8.0.202 185160 username komeil 185160 mac 185160 bytes_out 0 185160 bytes_in 0 185160 station_ip 83.123.94.233 185160 port 265 185160 unique_id port 185160 remote_ip 10.8.0.218 185162 username rahim 185162 mac 185162 bytes_out 0 185162 bytes_in 0 185162 station_ip 5.120.18.152 185162 port 239 185162 unique_id port 185162 remote_ip 10.8.0.134 185163 username mosi 185163 mac 185121 remote_ip 10.8.0.10 185123 username komeil 185123 mac 185123 bytes_out 0 185123 bytes_in 0 185123 station_ip 83.123.94.233 185123 port 273 185123 unique_id port 185123 remote_ip 10.8.0.218 185126 username komeil 185126 mac 185126 bytes_out 0 185126 bytes_in 0 185126 station_ip 83.123.94.233 185126 port 259 185126 unique_id port 185126 remote_ip 10.8.0.218 185127 username naeimeh 185127 mac 185127 bytes_out 383784 185127 bytes_in 2170617 185127 station_ip 83.123.80.52 185127 port 272 185127 unique_id port 185127 remote_ip 10.8.0.78 185129 username naeimeh 185129 mac 185129 bytes_out 6019 185129 bytes_in 8558 185129 station_ip 83.123.80.52 185129 port 259 185129 unique_id port 185129 remote_ip 10.8.0.78 185135 username dortaj3792 185135 mac 185135 bytes_out 38019 185135 bytes_in 53755 185135 station_ip 5.120.3.131 185135 port 273 185135 unique_id port 185135 remote_ip 10.8.0.102 185136 username barzegar 185136 mac 185136 bytes_out 0 185136 bytes_in 0 185136 station_ip 5.120.116.130 185136 port 276 185136 unique_id port 185136 remote_ip 10.8.0.10 185137 username komeil 185137 mac 185137 bytes_out 0 185137 bytes_in 0 185137 station_ip 83.123.94.233 185137 port 273 185137 unique_id port 185137 remote_ip 10.8.0.218 185139 username naeimeh 185139 mac 185139 bytes_out 1402864 185139 bytes_in 13762287 185139 station_ip 83.123.63.215 185139 port 272 185139 unique_id port 185139 remote_ip 10.8.0.78 185140 username komeil 185140 mac 185140 bytes_out 0 185140 bytes_in 0 185140 station_ip 83.123.94.233 185140 port 272 185140 unique_id port 185140 remote_ip 10.8.0.218 185144 username komeil 185144 mac 185144 bytes_out 0 185144 bytes_in 0 185144 station_ip 83.123.94.233 185144 port 239 185144 unique_id port 185144 remote_ip 10.8.0.218 185149 username komeil 185149 mac 185149 bytes_out 0 185149 bytes_in 0 185149 station_ip 83.123.94.233 185149 port 239 185149 unique_id port 185149 remote_ip 10.8.0.218 185150 username farhad3 185150 mac 185150 bytes_out 32078168 185150 bytes_in 16114596 185150 station_ip 5.120.48.36 185150 port 259 185150 unique_id port 185150 remote_ip 10.8.0.222 185151 username barzegar 185151 mac 185151 bytes_out 0 185151 bytes_in 0 185151 station_ip 5.120.116.130 185151 port 239 185151 unique_id port 185151 remote_ip 10.8.0.10 185161 username komeil 185161 mac 185161 bytes_out 0 185161 bytes_in 0 185161 station_ip 83.123.94.233 185161 port 261 185161 unique_id port 185161 remote_ip 10.8.0.218 185165 username motamedi9772 185165 kill_reason Another user logged on this global unique id 185165 mac 185165 bytes_out 0 185165 bytes_in 0 185165 station_ip 83.123.14.223 185165 port 271 185165 unique_id port 185168 username nilufarrajaei 185168 kill_reason Another user logged on this global unique id 185168 mac 185168 bytes_out 0 185168 bytes_in 0 185168 station_ip 83.123.92.182 185168 port 268 185168 unique_id port 185168 remote_ip 10.8.0.194 185170 username komeil 185170 mac 185170 bytes_out 0 185170 bytes_in 0 185170 station_ip 83.123.94.233 185170 port 239 185170 unique_id port 185170 remote_ip 10.8.0.218 185173 username farhad3 185173 mac 185173 bytes_out 20742440 185173 bytes_in 3350556 185173 station_ip 5.120.48.36 185173 port 259 185173 unique_id port 185173 remote_ip 10.8.0.222 185174 username mosi 185174 mac 185174 bytes_out 20918 185174 bytes_in 16685 185174 station_ip 89.47.77.160 185174 port 261 185174 unique_id port 185143 bytes_in 0 185143 station_ip 83.123.77.31 185143 port 239 185143 unique_id port 185145 username hadibarzegar 185145 kill_reason Maximum check online fails reached 185145 mac 185145 bytes_out 0 185145 bytes_in 0 185145 station_ip 83.123.77.31 185145 port 272 185145 unique_id port 185147 username komeil 185147 mac 185147 bytes_out 0 185147 bytes_in 0 185147 station_ip 83.123.94.233 185147 port 239 185147 unique_id port 185147 remote_ip 10.8.0.218 185152 username komeil 185152 mac 185152 bytes_out 0 185152 bytes_in 0 185152 station_ip 83.123.94.233 185152 port 259 185152 unique_id port 185152 remote_ip 10.8.0.218 185153 username komeil 185153 mac 185153 bytes_out 0 185153 bytes_in 0 185153 station_ip 83.123.94.233 185153 port 239 185153 unique_id port 185153 remote_ip 10.8.0.218 185154 username komeil 185154 mac 185154 bytes_out 0 185154 bytes_in 0 185154 station_ip 83.123.94.233 185154 port 239 185154 unique_id port 185154 remote_ip 10.8.0.218 185155 username komeil 185155 mac 185155 bytes_out 0 185155 bytes_in 0 185155 station_ip 83.123.94.233 185155 port 239 185155 unique_id port 185155 remote_ip 10.8.0.218 185156 username aminvpn 185156 unique_id port 185156 terminate_cause Lost-Carrier 185156 bytes_out 227690 185156 bytes_in 3160081 185156 station_ip 5.119.137.224 185156 port 15728994 185156 nas_port_type Virtual 185156 remote_ip 5.5.5.151 185158 username rahim 185158 mac 185158 bytes_out 162982 185158 bytes_in 399849 185158 station_ip 5.120.18.152 185158 port 239 185158 unique_id port 185158 remote_ip 10.8.0.134 185159 username komeil 185159 mac 185159 bytes_out 0 185159 bytes_in 0 185159 station_ip 83.123.94.233 185159 port 261 185159 unique_id port 185159 remote_ip 10.8.0.218 185164 username rahim 185164 mac 185164 bytes_out 0 185164 bytes_in 0 185164 station_ip 5.120.18.152 185164 port 239 185164 unique_id port 185164 remote_ip 10.8.0.134 185166 username komeil 185166 mac 185166 bytes_out 0 185166 bytes_in 0 185166 station_ip 83.123.94.233 185166 port 239 185166 unique_id port 185166 remote_ip 10.8.0.218 185167 username komeil 185167 mac 185167 bytes_out 0 185167 bytes_in 0 185167 station_ip 83.123.94.233 185167 port 239 185167 unique_id port 185167 remote_ip 10.8.0.218 185169 username komeil 185169 mac 185169 bytes_out 0 185169 bytes_in 0 185169 station_ip 83.123.94.233 185169 port 239 185169 unique_id port 185169 remote_ip 10.8.0.218 185175 username motamedi9772 185175 mac 185175 bytes_out 0 185175 bytes_in 0 185175 station_ip 83.123.14.223 185175 port 271 185175 unique_id port 185177 username motamedi9772 185177 mac 185177 bytes_out 0 185177 bytes_in 0 185177 station_ip 83.123.14.223 185177 port 261 185177 unique_id port 185177 remote_ip 10.8.0.154 185179 username nilufarrajaei 185179 mac 185179 bytes_out 0 185179 bytes_in 0 185179 station_ip 83.123.92.182 185179 port 268 185179 unique_id port 185184 username motamedi9772 185184 mac 185184 bytes_out 0 185184 bytes_in 0 185184 station_ip 83.123.14.223 185184 port 261 185184 unique_id port 185184 remote_ip 10.8.0.154 185187 username motamedi9772 185187 mac 185187 bytes_out 0 185187 bytes_in 0 185187 station_ip 83.123.14.223 185187 port 261 185187 unique_id port 185187 remote_ip 10.8.0.154 185195 username komeil 185195 mac 185195 bytes_out 0 185195 bytes_in 0 185195 station_ip 83.123.94.233 185195 port 261 185195 unique_id port 185195 remote_ip 10.8.0.218 185163 bytes_out 99297 185163 bytes_in 229774 185163 station_ip 89.47.77.160 185163 port 273 185163 unique_id port 185163 remote_ip 10.8.0.142 185171 username barzegar 185171 mac 185171 bytes_out 0 185171 bytes_in 0 185171 station_ip 5.120.116.130 185171 port 265 185171 unique_id port 185171 remote_ip 10.8.0.10 185172 username komeil 185172 mac 185172 bytes_out 0 185172 bytes_in 0 185172 station_ip 83.123.94.233 185172 port 239 185172 unique_id port 185172 remote_ip 10.8.0.218 185178 username motamedi9772 185178 mac 185178 bytes_out 0 185178 bytes_in 0 185178 station_ip 83.123.14.223 185178 port 261 185178 unique_id port 185178 remote_ip 10.8.0.154 185181 username komeil 185181 mac 185181 bytes_out 0 185181 bytes_in 0 185181 station_ip 83.123.94.233 185181 port 261 185181 unique_id port 185181 remote_ip 10.8.0.218 185185 username motamedi9772 185185 mac 185185 bytes_out 0 185185 bytes_in 0 185185 station_ip 83.123.14.223 185185 port 261 185185 unique_id port 185185 remote_ip 10.8.0.154 185188 username komeil 185188 mac 185188 bytes_out 0 185188 bytes_in 0 185188 station_ip 83.123.94.233 185188 port 268 185188 unique_id port 185188 remote_ip 10.8.0.218 185191 username komeil 185191 mac 185191 bytes_out 0 185191 bytes_in 0 185191 station_ip 83.123.94.233 185191 port 268 185191 unique_id port 185191 remote_ip 10.8.0.218 185192 username motamedi9772 185192 mac 185192 bytes_out 12375 185192 bytes_in 28761 185192 station_ip 83.123.14.223 185192 port 261 185192 unique_id port 185192 remote_ip 10.8.0.154 185194 username mosi 185194 mac 185194 bytes_out 13792 185194 bytes_in 11672 185194 station_ip 89.47.77.160 185194 port 271 185194 unique_id port 185194 remote_ip 10.8.0.142 185196 username komeil 185196 mac 185196 bytes_out 0 185196 bytes_in 0 185196 station_ip 83.123.94.233 185196 port 261 185196 unique_id port 185196 remote_ip 10.8.0.218 185201 username komeil 185201 mac 185201 bytes_out 0 185201 bytes_in 0 185201 station_ip 83.123.94.233 185201 port 239 185201 unique_id port 185201 remote_ip 10.8.0.218 185202 username komeil 185202 mac 185202 bytes_out 0 185202 bytes_in 0 185202 station_ip 83.123.94.233 185202 port 261 185202 unique_id port 185202 remote_ip 10.8.0.218 185207 username komeil 185207 mac 185207 bytes_out 0 185207 bytes_in 0 185207 station_ip 83.123.94.233 185207 port 268 185207 unique_id port 185207 remote_ip 10.8.0.218 185208 username komeil 185208 mac 185208 bytes_out 0 185208 bytes_in 0 185208 station_ip 83.123.94.233 185208 port 268 185208 unique_id port 185208 remote_ip 10.8.0.218 185210 username farhad3 185210 mac 185210 bytes_out 19945852 185210 bytes_in 7301568 185210 station_ip 5.120.48.36 185210 port 259 185210 unique_id port 185210 remote_ip 10.8.0.222 185211 username komeil 185211 mac 185211 bytes_out 0 185211 bytes_in 0 185211 station_ip 83.123.94.233 185211 port 268 185211 unique_id port 185211 remote_ip 10.8.0.218 185212 username komeil 185212 mac 185212 bytes_out 0 185212 bytes_in 0 185212 station_ip 83.123.94.233 185212 port 268 185212 unique_id port 185212 remote_ip 10.8.0.218 185214 username komeil 185214 mac 185214 bytes_out 0 185214 bytes_in 0 185214 station_ip 83.123.94.233 185214 port 271 185214 unique_id port 185214 remote_ip 10.8.0.218 185216 username komeil 185216 mac 185216 bytes_out 0 185216 bytes_in 0 185216 station_ip 83.123.94.233 185216 port 261 185174 remote_ip 10.8.0.142 185176 username motamedi9772 185176 mac 185176 bytes_out 0 185176 bytes_in 0 185176 station_ip 83.123.14.223 185176 port 261 185176 unique_id port 185176 remote_ip 10.8.0.154 185180 username motamedi9772 185180 mac 185180 bytes_out 0 185180 bytes_in 0 185180 station_ip 83.123.14.223 185180 port 265 185180 unique_id port 185180 remote_ip 10.8.0.154 185182 username motamedi9772 185182 mac 185182 bytes_out 0 185182 bytes_in 0 185182 station_ip 83.123.14.223 185182 port 261 185182 unique_id port 185182 remote_ip 10.8.0.154 185183 username komeil 185183 mac 185183 bytes_out 0 185183 bytes_in 0 185183 station_ip 83.123.94.233 185183 port 265 185183 unique_id port 185183 remote_ip 10.8.0.218 185186 username motamedi9772 185186 mac 185186 bytes_out 0 185186 bytes_in 0 185186 station_ip 83.123.14.223 185186 port 261 185186 unique_id port 185186 remote_ip 10.8.0.154 185189 username komeil 185189 kill_reason Maximum check online fails reached 185189 mac 185189 bytes_out 0 185189 bytes_in 0 185189 station_ip 83.123.94.233 185189 port 265 185189 unique_id port 185190 username mosi 185190 mac 185190 bytes_out 24024 185190 bytes_in 17937 185190 station_ip 89.47.77.160 185190 port 239 185190 unique_id port 185190 remote_ip 10.8.0.142 185193 username komeil 185193 mac 185193 bytes_out 0 185193 bytes_in 0 185193 station_ip 83.123.94.233 185193 port 239 185193 unique_id port 185193 remote_ip 10.8.0.218 185198 username barzegar 185198 mac 185198 bytes_out 0 185198 bytes_in 0 185198 station_ip 5.120.116.130 185198 port 261 185198 unique_id port 185198 remote_ip 10.8.0.10 185204 username komeil 185204 mac 185204 bytes_out 0 185204 bytes_in 0 185204 station_ip 83.123.94.233 185204 port 261 185204 unique_id port 185204 remote_ip 10.8.0.218 185218 username komeil 185218 mac 185218 bytes_out 0 185218 bytes_in 0 185218 station_ip 83.123.94.233 185218 port 268 185218 unique_id port 185218 remote_ip 10.8.0.218 185220 username komeil 185220 mac 185220 bytes_out 0 185220 bytes_in 0 185220 station_ip 83.123.94.233 185220 port 268 185220 unique_id port 185220 remote_ip 10.8.0.218 185221 username komeil 185221 mac 185221 bytes_out 0 185221 bytes_in 0 185221 station_ip 83.123.94.233 185221 port 268 185221 unique_id port 185221 remote_ip 10.8.0.218 185230 username komeil 185230 mac 185230 bytes_out 0 185230 bytes_in 0 185230 station_ip 83.123.94.233 185230 port 261 185230 unique_id port 185230 remote_ip 10.8.0.218 185231 username mosi 185231 mac 185231 bytes_out 4043 185231 bytes_in 5562 185231 station_ip 89.47.77.160 185231 port 268 185231 unique_id port 185231 remote_ip 10.8.0.142 185232 username komeil 185232 mac 185232 bytes_out 0 185232 bytes_in 0 185232 station_ip 83.123.94.233 185232 port 268 185232 unique_id port 185232 remote_ip 10.8.0.218 185233 username mosi 185233 mac 185233 bytes_out 0 185233 bytes_in 0 185233 station_ip 89.47.77.160 185233 port 261 185233 unique_id port 185233 remote_ip 10.8.0.142 185236 username komeil 185236 mac 185236 bytes_out 0 185236 bytes_in 0 185236 station_ip 83.123.94.233 185236 port 261 185236 unique_id port 185236 remote_ip 10.8.0.218 185237 username komeil 185237 mac 185237 bytes_out 0 185237 bytes_in 0 185237 station_ip 83.123.94.233 185237 port 261 185237 unique_id port 185237 remote_ip 10.8.0.218 185238 username komeil 185238 mac 185197 username mosi 185197 mac 185197 bytes_out 7236 185197 bytes_in 7609 185197 station_ip 89.47.77.160 185197 port 239 185197 unique_id port 185197 remote_ip 10.8.0.142 185199 username komeil 185199 mac 185199 bytes_out 0 185199 bytes_in 0 185199 station_ip 83.123.94.233 185199 port 239 185199 unique_id port 185199 remote_ip 10.8.0.218 185200 username komeil 185200 mac 185200 bytes_out 0 185200 bytes_in 0 185200 station_ip 83.123.94.233 185200 port 239 185200 unique_id port 185200 remote_ip 10.8.0.218 185203 username komeil 185203 kill_reason Maximum check online fails reached 185203 mac 185203 bytes_out 0 185203 bytes_in 0 185203 station_ip 83.123.94.233 185203 port 239 185203 unique_id port 185205 username mosi 185205 mac 185205 bytes_out 18046 185205 bytes_in 14814 185205 station_ip 89.47.77.160 185205 port 268 185205 unique_id port 185205 remote_ip 10.8.0.142 185206 username komeil 185206 mac 185206 bytes_out 0 185206 bytes_in 0 185206 station_ip 83.123.94.233 185206 port 268 185206 unique_id port 185206 remote_ip 10.8.0.218 185209 username komeil 185209 mac 185209 bytes_out 0 185209 bytes_in 0 185209 station_ip 83.123.94.233 185209 port 268 185209 unique_id port 185209 remote_ip 10.8.0.218 185213 username barzegar 185213 mac 185213 bytes_out 0 185213 bytes_in 0 185213 station_ip 5.120.116.130 185213 port 268 185213 unique_id port 185213 remote_ip 10.8.0.10 185215 username mosi 185215 mac 185215 bytes_out 24746 185215 bytes_in 17826 185215 station_ip 89.47.77.160 185215 port 261 185215 unique_id port 185215 remote_ip 10.8.0.142 185219 username komeil 185219 mac 185219 bytes_out 0 185219 bytes_in 0 185219 station_ip 83.123.94.233 185219 port 268 185219 unique_id port 185219 remote_ip 10.8.0.218 185222 username komeil 185222 mac 185222 bytes_out 0 185222 bytes_in 0 185222 station_ip 83.123.94.233 185222 port 268 185222 unique_id port 185222 remote_ip 10.8.0.218 185223 username mosi 185223 mac 185223 bytes_out 14384 185223 bytes_in 12395 185223 station_ip 89.47.77.160 185223 port 261 185223 unique_id port 185223 remote_ip 10.8.0.142 185226 username mosi 185226 mac 185226 bytes_out 11726 185226 bytes_in 7199 185226 station_ip 89.47.77.160 185226 port 261 185226 unique_id port 185226 remote_ip 10.8.0.142 185227 username komeil 185227 mac 185227 bytes_out 0 185227 bytes_in 0 185227 station_ip 83.123.94.233 185227 port 268 185227 unique_id port 185227 remote_ip 10.8.0.218 185228 username komeil 185228 mac 185228 bytes_out 0 185228 bytes_in 0 185228 station_ip 83.123.94.233 185228 port 268 185228 unique_id port 185228 remote_ip 10.8.0.218 185235 username farhad3 185235 mac 185235 bytes_out 847995 185235 bytes_in 2683571 185235 station_ip 5.120.48.36 185235 port 259 185235 unique_id port 185235 remote_ip 10.8.0.222 185239 username komeil 185239 mac 185239 bytes_out 0 185239 bytes_in 0 185239 station_ip 83.123.94.233 185239 port 261 185239 unique_id port 185239 remote_ip 10.8.0.218 185243 username komeil 185243 mac 185243 bytes_out 0 185243 bytes_in 0 185243 station_ip 83.123.94.233 185243 port 261 185243 unique_id port 185243 remote_ip 10.8.0.218 185245 username komeil 185245 mac 185245 bytes_out 0 185245 bytes_in 0 185245 station_ip 83.123.94.233 185245 port 261 185245 unique_id port 185245 remote_ip 10.8.0.218 185246 username komeil 185246 mac 185246 bytes_out 0 185246 bytes_in 0 185216 unique_id port 185216 remote_ip 10.8.0.218 185217 username mosi 185217 mac 185217 bytes_out 0 185217 bytes_in 0 185217 station_ip 89.47.77.160 185217 port 268 185217 unique_id port 185217 remote_ip 10.8.0.142 185224 username komeil 185224 mac 185224 bytes_out 0 185224 bytes_in 0 185224 station_ip 83.123.94.233 185224 port 268 185224 unique_id port 185224 remote_ip 10.8.0.218 185225 username komeil 185225 mac 185225 bytes_out 0 185225 bytes_in 0 185225 station_ip 83.123.94.233 185225 port 268 185225 unique_id port 185225 remote_ip 10.8.0.218 185229 username mosi 185229 mac 185229 bytes_out 10006 185229 bytes_in 9272 185229 station_ip 89.47.77.160 185229 port 261 185229 unique_id port 185229 remote_ip 10.8.0.142 185234 username barzegar 185234 mac 185234 bytes_out 0 185234 bytes_in 0 185234 station_ip 5.120.116.130 185234 port 268 185234 unique_id port 185234 remote_ip 10.8.0.10 185240 username komeil 185240 mac 185240 bytes_out 0 185240 bytes_in 0 185240 station_ip 83.123.94.233 185240 port 261 185240 unique_id port 185240 remote_ip 10.8.0.218 185242 username barzegar 185242 mac 185242 bytes_out 0 185242 bytes_in 0 185242 station_ip 5.120.116.130 185242 port 268 185242 unique_id port 185242 remote_ip 10.8.0.10 185248 username komeil 185248 mac 185248 bytes_out 0 185248 bytes_in 0 185248 station_ip 83.123.94.233 185248 port 261 185248 unique_id port 185248 remote_ip 10.8.0.218 185250 username komeil 185250 mac 185250 bytes_out 0 185250 bytes_in 0 185250 station_ip 83.123.94.233 185250 port 268 185250 unique_id port 185250 remote_ip 10.8.0.218 185253 username komeil 185253 mac 185253 bytes_out 0 185253 bytes_in 0 185253 station_ip 83.123.94.233 185253 port 259 185253 unique_id port 185253 remote_ip 10.8.0.218 185256 username komeil 185256 mac 185256 bytes_out 0 185256 bytes_in 0 185256 station_ip 83.123.94.233 185256 port 268 185256 unique_id port 185256 remote_ip 10.8.0.218 185257 username komeil 185257 mac 185257 bytes_out 0 185257 bytes_in 0 185257 station_ip 83.123.94.233 185257 port 268 185257 unique_id port 185257 remote_ip 10.8.0.218 185264 username komeil 185264 mac 185264 bytes_out 0 185264 bytes_in 0 185264 station_ip 83.123.94.233 185264 port 268 185264 unique_id port 185264 remote_ip 10.8.0.218 185265 username komeil 185265 mac 185265 bytes_out 0 185265 bytes_in 0 185265 station_ip 83.123.94.233 185265 port 268 185265 unique_id port 185265 remote_ip 10.8.0.218 185266 username komeil 185266 mac 185266 bytes_out 0 185266 bytes_in 0 185266 station_ip 83.123.94.233 185266 port 268 185266 unique_id port 185266 remote_ip 10.8.0.218 185267 username komeil 185267 mac 185267 bytes_out 0 185267 bytes_in 0 185267 station_ip 83.123.94.233 185267 port 268 185267 unique_id port 185267 remote_ip 10.8.0.218 185270 username komeil 185270 mac 185270 bytes_out 0 185270 bytes_in 0 185270 station_ip 83.123.94.233 185270 port 271 185270 unique_id port 185270 remote_ip 10.8.0.218 185271 username barzegar 185271 mac 185271 bytes_out 0 185271 bytes_in 0 185271 station_ip 5.120.116.130 185271 port 271 185271 unique_id port 185271 remote_ip 10.8.0.10 185272 username mosi 185272 mac 185272 bytes_out 67949 185272 bytes_in 54780 185272 station_ip 89.47.77.160 185272 port 261 185272 unique_id port 185272 remote_ip 10.8.0.142 185273 username komeil 185273 mac 185273 bytes_out 0 185238 bytes_out 2063 185238 bytes_in 4316 185238 station_ip 83.123.94.233 185238 port 261 185238 unique_id port 185238 remote_ip 10.8.0.218 185241 username komeil 185241 mac 185241 bytes_out 0 185241 bytes_in 0 185241 station_ip 83.123.94.233 185241 port 261 185241 unique_id port 185241 remote_ip 10.8.0.218 185244 username komeil 185244 mac 185244 bytes_out 0 185244 bytes_in 0 185244 station_ip 83.123.94.233 185244 port 261 185244 unique_id port 185244 remote_ip 10.8.0.218 185247 username komeil 185247 mac 185247 bytes_out 0 185247 bytes_in 0 185247 station_ip 83.123.94.233 185247 port 261 185247 unique_id port 185247 remote_ip 10.8.0.218 185249 username komeil 185249 mac 185249 bytes_out 0 185249 bytes_in 0 185249 station_ip 83.123.94.233 185249 port 261 185249 unique_id port 185249 remote_ip 10.8.0.218 185251 username komeil 185251 mac 185251 bytes_out 0 185251 bytes_in 0 185251 station_ip 83.123.94.233 185251 port 268 185251 unique_id port 185251 remote_ip 10.8.0.218 185258 username mostafa_es78 185258 mac 185258 bytes_out 251167 185258 bytes_in 1472542 185258 station_ip 83.122.122.32 185258 port 261 185258 unique_id port 185258 remote_ip 10.8.0.34 185261 username komeil 185261 mac 185261 bytes_out 0 185261 bytes_in 0 185261 station_ip 83.123.94.233 185261 port 261 185261 unique_id port 185261 remote_ip 10.8.0.218 185263 username komeil 185263 mac 185263 bytes_out 0 185263 bytes_in 0 185263 station_ip 83.123.94.233 185263 port 268 185263 unique_id port 185263 remote_ip 10.8.0.218 185275 username komeil 185275 mac 185275 bytes_out 0 185275 bytes_in 0 185275 station_ip 83.123.94.233 185275 port 261 185275 unique_id port 185275 remote_ip 10.8.0.218 185281 username komeil 185281 mac 185281 bytes_out 0 185281 bytes_in 0 185281 station_ip 83.123.94.233 185281 port 273 185281 unique_id port 185281 remote_ip 10.8.0.218 185286 username komeil 185286 mac 185286 bytes_out 0 185286 bytes_in 0 185286 station_ip 83.123.94.233 185286 port 259 185286 unique_id port 185286 remote_ip 10.8.0.218 185290 username farhad3 185290 mac 185290 bytes_out 1919842 185290 bytes_in 9179442 185290 station_ip 5.119.66.67 185290 port 261 185290 unique_id port 185290 remote_ip 10.8.0.222 185291 username komeil 185291 mac 185291 bytes_out 0 185291 bytes_in 0 185291 station_ip 83.123.94.233 185291 port 261 185291 unique_id port 185291 remote_ip 10.8.0.218 185293 username komeil 185293 kill_reason Maximum check online fails reached 185293 mac 185293 bytes_out 0 185293 bytes_in 0 185293 station_ip 83.123.94.233 185293 port 261 185293 unique_id port 185295 username mosi 185295 mac 185295 bytes_out 41936 185295 bytes_in 29017 185295 station_ip 89.47.77.160 185295 port 271 185295 unique_id port 185295 remote_ip 10.8.0.142 185296 username komeil 185296 mac 185296 bytes_out 0 185296 bytes_in 0 185296 station_ip 83.123.94.233 185296 port 271 185296 unique_id port 185296 remote_ip 10.8.0.218 185306 username komeil 185306 mac 185306 bytes_out 0 185306 bytes_in 0 185306 station_ip 83.123.94.233 185306 port 278 185306 unique_id port 185306 remote_ip 10.8.0.218 185310 username mosi 185310 mac 185310 bytes_out 35281 185310 bytes_in 24907 185310 station_ip 89.47.77.160 185310 port 273 185310 unique_id port 185310 remote_ip 10.8.0.142 185311 username komeil 185311 mac 185311 bytes_out 0 185311 bytes_in 0 185311 station_ip 83.123.94.233 185246 station_ip 83.123.94.233 185246 port 261 185246 unique_id port 185246 remote_ip 10.8.0.218 185252 username farhad3 185252 mac 185252 bytes_out 2048188 185252 bytes_in 19706649 185252 station_ip 5.120.48.36 185252 port 259 185252 unique_id port 185252 remote_ip 10.8.0.222 185254 username barzegar 185254 mac 185254 bytes_out 0 185254 bytes_in 0 185254 station_ip 5.120.116.130 185254 port 259 185254 unique_id port 185254 remote_ip 10.8.0.10 185255 username komeil 185255 mac 185255 bytes_out 0 185255 bytes_in 0 185255 station_ip 83.123.94.233 185255 port 268 185255 unique_id port 185255 remote_ip 10.8.0.218 185259 username komeil 185259 mac 185259 bytes_out 0 185259 bytes_in 0 185259 station_ip 83.123.94.233 185259 port 261 185259 unique_id port 185259 remote_ip 10.8.0.218 185260 username komeil 185260 mac 185260 bytes_out 0 185260 bytes_in 0 185260 station_ip 83.123.94.233 185260 port 261 185260 unique_id port 185260 remote_ip 10.8.0.218 185262 username mosi 185262 mac 185262 bytes_out 91882 185262 bytes_in 94792 185262 station_ip 89.47.77.160 185262 port 271 185262 unique_id port 185262 remote_ip 10.8.0.142 185268 username komeil 185268 mac 185268 bytes_out 0 185268 bytes_in 0 185268 station_ip 83.123.94.233 185268 port 271 185268 unique_id port 185268 remote_ip 10.8.0.218 185269 username komeil 185269 kill_reason Maximum check online fails reached 185269 mac 185269 bytes_out 0 185269 bytes_in 0 185269 station_ip 83.123.94.233 185269 port 268 185269 unique_id port 185277 username komeil 185277 mac 185277 bytes_out 0 185277 bytes_in 0 185277 station_ip 83.123.94.233 185277 port 259 185277 unique_id port 185277 remote_ip 10.8.0.218 185280 username mosi 185280 mac 185280 bytes_out 22674 185280 bytes_in 16289 185280 station_ip 89.47.77.160 185280 port 259 185280 unique_id port 185280 remote_ip 10.8.0.142 185282 username komeil 185282 mac 185282 bytes_out 0 185282 bytes_in 0 185282 station_ip 83.123.94.233 185282 port 259 185282 unique_id port 185282 remote_ip 10.8.0.218 185287 username komeil 185287 mac 185287 bytes_out 0 185287 bytes_in 0 185287 station_ip 83.123.94.233 185287 port 259 185287 unique_id port 185287 remote_ip 10.8.0.218 185288 username komeil 185288 mac 185288 bytes_out 0 185288 bytes_in 0 185288 station_ip 83.123.94.233 185288 port 259 185288 unique_id port 185288 remote_ip 10.8.0.218 185298 username barzegar 185298 mac 185298 bytes_out 0 185298 bytes_in 0 185298 station_ip 5.120.116.130 185298 port 271 185298 unique_id port 185298 remote_ip 10.8.0.10 185299 username komeil 185299 mac 185299 bytes_out 0 185299 bytes_in 0 185299 station_ip 83.123.94.233 185299 port 271 185299 unique_id port 185299 remote_ip 10.8.0.218 185300 username komeil 185300 mac 185300 bytes_out 0 185300 bytes_in 0 185300 station_ip 83.123.94.233 185300 port 271 185300 unique_id port 185300 remote_ip 10.8.0.218 185301 username komeil 185301 mac 185301 bytes_out 0 185301 bytes_in 0 185301 station_ip 83.123.94.233 185301 port 276 185301 unique_id port 185301 remote_ip 10.8.0.218 185303 username komeil 185303 kill_reason Maximum check online fails reached 185303 mac 185303 bytes_out 0 185303 bytes_in 0 185303 station_ip 83.123.94.233 185303 port 271 185303 unique_id port 185304 username komeil 185304 mac 185304 bytes_out 0 185304 bytes_in 0 185304 station_ip 83.123.94.233 185304 port 276 185304 unique_id port 185273 bytes_in 0 185273 station_ip 83.123.94.233 185273 port 261 185273 unique_id port 185273 remote_ip 10.8.0.218 185274 username komeil 185274 mac 185274 bytes_out 0 185274 bytes_in 0 185274 station_ip 83.123.94.233 185274 port 261 185274 unique_id port 185274 remote_ip 10.8.0.218 185276 username farhad3 185276 mac 185276 bytes_out 2675299 185276 bytes_in 26179262 185276 station_ip 5.120.48.36 185276 port 259 185276 unique_id port 185276 remote_ip 10.8.0.222 185278 username mosi 185278 mac 185278 bytes_out 11532 185278 bytes_in 10025 185278 station_ip 89.47.77.160 185278 port 271 185278 unique_id port 185278 remote_ip 10.8.0.142 185279 username komeil 185279 mac 185279 bytes_out 0 185279 bytes_in 0 185279 station_ip 83.123.94.233 185279 port 271 185279 unique_id port 185279 remote_ip 10.8.0.218 185283 username barzegar 185283 mac 185283 bytes_out 0 185283 bytes_in 0 185283 station_ip 5.120.116.130 185283 port 259 185283 unique_id port 185283 remote_ip 10.8.0.10 185284 username komeil 185284 mac 185284 bytes_out 0 185284 bytes_in 0 185284 station_ip 83.123.94.233 185284 port 259 185284 unique_id port 185284 remote_ip 10.8.0.218 185285 username komeil 185285 mac 185285 bytes_out 0 185285 bytes_in 0 185285 station_ip 83.123.94.233 185285 port 259 185285 unique_id port 185285 remote_ip 10.8.0.218 185289 username komeil 185289 mac 185289 bytes_out 0 185289 bytes_in 0 185289 station_ip 83.123.94.233 185289 port 259 185289 unique_id port 185289 remote_ip 10.8.0.218 185292 username komeil 185292 mac 185292 bytes_out 0 185292 bytes_in 0 185292 station_ip 83.123.94.233 185292 port 273 185292 unique_id port 185292 remote_ip 10.8.0.218 185294 username komeil 185294 mac 185294 bytes_out 0 185294 bytes_in 0 185294 station_ip 83.123.94.233 185294 port 273 185294 unique_id port 185294 remote_ip 10.8.0.218 185297 username komeil 185297 mac 185297 bytes_out 0 185297 bytes_in 0 185297 station_ip 83.123.94.233 185297 port 276 185297 unique_id port 185297 remote_ip 10.8.0.218 185302 username komeil 185302 mac 185302 bytes_out 0 185302 bytes_in 0 185302 station_ip 83.123.94.233 185302 port 276 185302 unique_id port 185302 remote_ip 10.8.0.218 185309 username komeil 185309 mac 185309 bytes_out 0 185309 bytes_in 0 185309 station_ip 83.123.94.233 185309 port 276 185309 unique_id port 185309 remote_ip 10.8.0.218 185312 username komeil 185312 mac 185312 bytes_out 0 185312 bytes_in 0 185312 station_ip 83.123.94.233 185312 port 273 185312 unique_id port 185312 remote_ip 10.8.0.218 185318 username farhad3 185318 mac 185318 bytes_out 2109753 185318 bytes_in 7945166 185318 station_ip 5.119.216.124 185318 port 259 185318 unique_id port 185318 remote_ip 10.8.0.222 185319 username mosi 185319 mac 185319 bytes_out 11078 185319 bytes_in 9658 185319 station_ip 89.47.77.160 185319 port 278 185319 unique_id port 185319 remote_ip 10.8.0.142 185320 username mosi 185320 mac 185320 bytes_out 8707 185320 bytes_in 8693 185320 station_ip 89.47.77.160 185320 port 259 185320 unique_id port 185320 remote_ip 10.8.0.142 185321 username komeil 185321 mac 185321 bytes_out 0 185321 bytes_in 0 185321 station_ip 83.123.94.233 185321 port 259 185321 unique_id port 185321 remote_ip 10.8.0.218 185322 username komeil 185322 mac 185322 bytes_out 0 185322 bytes_in 0 185322 station_ip 83.123.94.233 185322 port 259 185322 unique_id port 185304 remote_ip 10.8.0.218 185305 username komeil 185305 mac 185305 bytes_out 0 185305 bytes_in 0 185305 station_ip 83.123.94.233 185305 port 276 185305 unique_id port 185305 remote_ip 10.8.0.218 185307 username komeil 185307 mac 185307 bytes_out 0 185307 bytes_in 0 185307 station_ip 83.123.94.233 185307 port 276 185307 unique_id port 185307 remote_ip 10.8.0.218 185308 username komeil 185308 mac 185308 bytes_out 0 185308 bytes_in 0 185308 station_ip 83.123.94.233 185308 port 276 185308 unique_id port 185308 remote_ip 10.8.0.218 185313 username mosi 185313 mac 185313 bytes_out 36191 185313 bytes_in 30067 185313 station_ip 89.47.77.160 185313 port 276 185313 unique_id port 185313 remote_ip 10.8.0.142 185316 username mosi 185316 mac 185316 bytes_out 12019 185316 bytes_in 8156 185316 station_ip 89.47.77.160 185316 port 273 185316 unique_id port 185316 remote_ip 10.8.0.142 185322 remote_ip 10.8.0.218 185324 username barzegar 185324 mac 185324 bytes_out 0 185324 bytes_in 0 185324 station_ip 5.120.116.130 185324 port 278 185324 unique_id port 185324 remote_ip 10.8.0.10 185327 username komeil 185327 mac 185327 bytes_out 0 185327 bytes_in 0 185327 station_ip 83.123.94.233 185327 port 259 185327 unique_id port 185327 remote_ip 10.8.0.218 185328 username komeil 185328 mac 185328 bytes_out 0 185328 bytes_in 0 185328 station_ip 83.123.94.233 185328 port 259 185328 unique_id port 185328 remote_ip 10.8.0.218 185329 username komeil 185329 mac 185329 bytes_out 0 185329 bytes_in 0 185329 station_ip 83.123.94.233 185329 port 259 185329 unique_id port 185329 remote_ip 10.8.0.218 185330 username komeil 185330 mac 185330 bytes_out 0 185330 bytes_in 0 185330 station_ip 83.123.94.233 185330 port 259 185330 unique_id port 185330 remote_ip 10.8.0.218 185332 username komeil 185332 mac 185332 bytes_out 0 185332 bytes_in 0 185332 station_ip 83.123.94.233 185332 port 259 185332 unique_id port 185332 remote_ip 10.8.0.218 185334 username pourshad 185334 kill_reason Another user logged on this global unique id 185334 mac 185334 bytes_out 0 185334 bytes_in 0 185334 station_ip 5.119.107.197 185334 port 269 185334 unique_id port 185334 remote_ip 10.8.0.42 185335 username mosi 185335 mac 185335 bytes_out 191490 185335 bytes_in 191102 185335 station_ip 89.47.77.160 185335 port 273 185335 unique_id port 185335 remote_ip 10.8.0.142 185336 username barzegar 185336 mac 185336 bytes_out 0 185336 bytes_in 0 185336 station_ip 5.120.116.130 185336 port 273 185336 unique_id port 185336 remote_ip 10.8.0.10 185337 username komeil 185337 mac 185337 bytes_out 0 185337 bytes_in 0 185337 station_ip 83.123.94.233 185337 port 273 185337 unique_id port 185337 remote_ip 10.8.0.218 185338 username mosi 185338 mac 185338 bytes_out 20996 185338 bytes_in 15924 185338 station_ip 89.47.77.160 185338 port 259 185338 unique_id port 185338 remote_ip 10.8.0.142 185339 username komeil 185339 mac 185339 bytes_out 0 185339 bytes_in 0 185339 station_ip 83.123.94.233 185339 port 259 185339 unique_id port 185339 remote_ip 10.8.0.218 185341 username mosi 185341 mac 185341 bytes_out 17571 185341 bytes_in 18735 185341 station_ip 89.47.77.160 185341 port 273 185341 unique_id port 185341 remote_ip 10.8.0.142 185342 username komeil 185342 mac 185342 bytes_out 0 185342 bytes_in 0 185342 station_ip 83.123.94.233 185342 port 273 185342 unique_id port 185342 remote_ip 10.8.0.218 185311 port 273 185311 unique_id port 185311 remote_ip 10.8.0.218 185314 username barzegar 185314 mac 185314 bytes_out 0 185314 bytes_in 0 185314 station_ip 5.120.116.130 185314 port 276 185314 unique_id port 185314 remote_ip 10.8.0.10 185315 username komeil 185315 mac 185315 bytes_out 0 185315 bytes_in 0 185315 station_ip 83.123.94.233 185315 port 278 185315 unique_id port 185315 remote_ip 10.8.0.218 185317 username komeil 185317 mac 185317 bytes_out 0 185317 bytes_in 0 185317 station_ip 83.123.94.233 185317 port 273 185317 unique_id port 185317 remote_ip 10.8.0.218 185323 username komeil 185323 mac 185323 bytes_out 0 185323 bytes_in 0 185323 station_ip 83.123.94.233 185323 port 259 185323 unique_id port 185323 remote_ip 10.8.0.218 185325 username nilufarrajaei 185325 mac 185325 bytes_out 1787050 185325 bytes_in 18219740 185325 station_ip 83.123.20.114 185325 port 276 185325 unique_id port 185325 remote_ip 10.8.0.194 185326 username komeil 185326 mac 185326 bytes_out 0 185326 bytes_in 0 185326 station_ip 83.123.94.233 185326 port 259 185326 unique_id port 185326 remote_ip 10.8.0.218 185331 username barzegar 185331 mac 185331 bytes_out 0 185331 bytes_in 0 185331 station_ip 5.120.116.130 185331 port 259 185331 unique_id port 185331 remote_ip 10.8.0.10 185333 username komeil 185333 mac 185333 bytes_out 0 185333 bytes_in 0 185333 station_ip 83.123.94.233 185333 port 259 185333 unique_id port 185333 remote_ip 10.8.0.218 185340 username komeil 185340 mac 185340 bytes_out 0 185340 bytes_in 0 185340 station_ip 83.123.94.233 185340 port 259 185340 unique_id port 185340 remote_ip 10.8.0.218 185343 username komeil 185343 mac 185343 bytes_out 0 185343 bytes_in 0 185343 station_ip 83.123.94.233 185343 port 273 185343 unique_id port 185343 remote_ip 10.8.0.218 185344 username mosi 185344 mac 185344 bytes_out 14813 185344 bytes_in 12995 185344 station_ip 89.47.77.160 185344 port 259 185344 unique_id port 185344 remote_ip 10.8.0.142 185345 username komeil 185345 mac 185345 bytes_out 0 185345 bytes_in 0 185345 station_ip 83.123.94.233 185345 port 259 185345 unique_id port 185345 remote_ip 10.8.0.218 185346 username barzegar 185346 mac 185346 bytes_out 0 185346 bytes_in 0 185346 station_ip 5.120.116.130 185346 port 276 185346 unique_id port 185346 remote_ip 10.8.0.10 185347 username komeil 185347 mac 185347 bytes_out 0 185347 bytes_in 0 185347 station_ip 83.123.94.233 185347 port 259 185347 unique_id port 185347 remote_ip 10.8.0.218 185348 username komeil 185348 mac 185348 bytes_out 0 185348 bytes_in 0 185348 station_ip 83.123.94.233 185348 port 259 185348 unique_id port 185348 remote_ip 10.8.0.218 185349 username mosi 185349 mac 185349 bytes_out 30797 185349 bytes_in 21915 185349 station_ip 89.47.77.160 185349 port 273 185349 unique_id port 185349 remote_ip 10.8.0.142 185350 username komeil 185350 mac 185350 bytes_out 0 185350 bytes_in 0 185350 station_ip 83.123.94.233 185350 port 273 185350 unique_id port 185350 remote_ip 10.8.0.218 185351 username mosi 185351 mac 185351 bytes_out 7053 185351 bytes_in 7239 185351 station_ip 89.47.77.160 185351 port 259 185351 unique_id port 185351 remote_ip 10.8.0.142 185352 username komeil 185352 mac 185352 bytes_out 0 185352 bytes_in 0 185352 station_ip 83.123.94.233 185352 port 259 185352 unique_id port 185352 remote_ip 10.8.0.218 185353 username komeil 185353 mac 185353 bytes_out 0 185353 bytes_in 0 185353 station_ip 83.123.94.233 185353 port 259 185353 unique_id port 185353 remote_ip 10.8.0.218 185355 username komeil 185355 mac 185355 bytes_out 0 185355 bytes_in 0 185355 station_ip 83.123.94.233 185355 port 276 185355 unique_id port 185355 remote_ip 10.8.0.218 185358 username mehdizare 185358 kill_reason Relative expiration date has reached 185358 mac 185358 bytes_out 0 185358 bytes_in 0 185358 station_ip 5.120.140.145 185358 port 259 185358 unique_id port 185361 username komeil 185361 mac 185361 bytes_out 0 185361 bytes_in 0 185361 station_ip 83.123.94.233 185361 port 259 185361 unique_id port 185361 remote_ip 10.8.0.218 185362 username komeil 185362 mac 185362 bytes_out 0 185362 bytes_in 0 185362 station_ip 83.123.94.233 185362 port 259 185362 unique_id port 185362 remote_ip 10.8.0.218 185363 username komeil 185363 mac 185363 bytes_out 0 185363 bytes_in 0 185363 station_ip 83.123.94.233 185363 port 259 185363 unique_id port 185363 remote_ip 10.8.0.218 185365 username barzegar 185365 mac 185365 bytes_out 0 185365 bytes_in 0 185365 station_ip 5.120.116.130 185365 port 276 185365 unique_id port 185365 remote_ip 10.8.0.10 185371 username komeil 185371 mac 185371 bytes_out 0 185371 bytes_in 0 185371 station_ip 83.123.94.233 185371 port 276 185371 unique_id port 185371 remote_ip 10.8.0.218 185372 username komeil 185372 mac 185372 bytes_out 0 185372 bytes_in 0 185372 station_ip 83.123.94.233 185372 port 259 185372 unique_id port 185372 remote_ip 10.8.0.218 185373 username komeil 185373 mac 185373 bytes_out 0 185373 bytes_in 0 185373 station_ip 83.123.94.233 185373 port 259 185373 unique_id port 185373 remote_ip 10.8.0.218 185376 username komeil 185376 mac 185376 bytes_out 0 185376 bytes_in 0 185376 station_ip 83.123.94.233 185376 port 259 185376 unique_id port 185376 remote_ip 10.8.0.218 185385 username komeil 185385 mac 185385 bytes_out 0 185385 bytes_in 0 185385 station_ip 83.123.94.233 185385 port 276 185385 unique_id port 185385 remote_ip 10.8.0.218 185386 username komeil 185386 mac 185386 bytes_out 0 185386 bytes_in 0 185386 station_ip 83.123.94.233 185386 port 259 185386 unique_id port 185386 remote_ip 10.8.0.218 185387 username mosi 185387 mac 185387 bytes_out 11715 185387 bytes_in 10253 185387 station_ip 89.47.77.160 185387 port 273 185387 unique_id port 185387 remote_ip 10.8.0.142 185389 username komeil 185389 mac 185389 bytes_out 0 185389 bytes_in 0 185389 station_ip 83.123.94.233 185389 port 273 185389 unique_id port 185389 remote_ip 10.8.0.218 185390 username komeil 185390 mac 185390 bytes_out 0 185390 bytes_in 0 185390 station_ip 83.123.94.233 185390 port 273 185390 unique_id port 185390 remote_ip 10.8.0.218 185391 username mosi 185391 mac 185391 bytes_out 27218 185391 bytes_in 25514 185391 station_ip 89.47.77.160 185391 port 259 185391 unique_id port 185391 remote_ip 10.8.0.142 185394 username barzegar 185394 mac 185394 bytes_out 0 185394 bytes_in 0 185394 station_ip 5.120.116.130 185394 port 276 185394 unique_id port 185394 remote_ip 10.8.0.10 185397 username komeil 185397 mac 185397 bytes_out 0 185397 bytes_in 0 185397 station_ip 83.123.94.233 185397 port 259 185397 unique_id port 185397 remote_ip 10.8.0.218 185402 username komeil 185402 mac 185402 bytes_out 0 185402 bytes_in 0 185402 station_ip 83.123.94.233 185354 username barzegar 185354 mac 185354 bytes_out 0 185354 bytes_in 0 185354 station_ip 5.120.116.130 185354 port 259 185354 unique_id port 185354 remote_ip 10.8.0.10 185356 username komeil 185356 mac 185356 bytes_out 0 185356 bytes_in 0 185356 station_ip 83.123.94.233 185356 port 259 185356 unique_id port 185356 remote_ip 10.8.0.218 185359 username komeil 185359 mac 185359 bytes_out 0 185359 bytes_in 0 185359 station_ip 83.123.94.233 185359 port 259 185359 unique_id port 185359 remote_ip 10.8.0.218 185367 username komeil 185367 mac 185367 bytes_out 0 185367 bytes_in 0 185367 station_ip 83.123.94.233 185367 port 276 185367 unique_id port 185367 remote_ip 10.8.0.218 185370 username komeil 185370 mac 185370 bytes_out 0 185370 bytes_in 0 185370 station_ip 83.123.94.233 185370 port 259 185370 unique_id port 185370 remote_ip 10.8.0.218 185379 username komeil 185379 mac 185379 bytes_out 0 185379 bytes_in 0 185379 station_ip 83.123.94.233 185379 port 259 185379 unique_id port 185379 remote_ip 10.8.0.218 185380 username komeil 185380 mac 185380 bytes_out 0 185380 bytes_in 0 185380 station_ip 83.123.94.233 185380 port 259 185380 unique_id port 185380 remote_ip 10.8.0.218 185382 username komeil 185382 mac 185382 bytes_out 0 185382 bytes_in 0 185382 station_ip 83.123.94.233 185382 port 273 185382 unique_id port 185382 remote_ip 10.8.0.218 185383 username barzegar 185383 mac 185383 bytes_out 0 185383 bytes_in 0 185383 station_ip 5.120.116.130 185383 port 273 185383 unique_id port 185383 remote_ip 10.8.0.10 185384 username mosi 185384 mac 185384 bytes_out 31315 185384 bytes_in 36155 185384 station_ip 89.47.77.160 185384 port 259 185384 unique_id port 185384 remote_ip 10.8.0.142 185392 username komeil 185392 mac 185392 bytes_out 0 185392 bytes_in 0 185392 station_ip 83.123.94.233 185392 port 259 185392 unique_id port 185392 remote_ip 10.8.0.218 185393 username komeil 185393 mac 185393 bytes_out 0 185393 bytes_in 0 185393 station_ip 83.123.94.233 185393 port 259 185393 unique_id port 185393 remote_ip 10.8.0.218 185398 username komeil 185398 mac 185398 bytes_out 0 185398 bytes_in 0 185398 station_ip 83.123.94.233 185398 port 259 185398 unique_id port 185398 remote_ip 10.8.0.218 185399 username komeil 185399 mac 185399 bytes_out 0 185399 bytes_in 0 185399 station_ip 83.123.94.233 185399 port 259 185399 unique_id port 185399 remote_ip 10.8.0.218 185401 username barzegar 185401 mac 185401 bytes_out 0 185401 bytes_in 0 185401 station_ip 5.120.116.130 185401 port 259 185401 unique_id port 185401 remote_ip 10.8.0.10 185405 username sedighe 185405 mac 185405 bytes_out 146325 185405 bytes_in 1327695 185405 station_ip 83.123.94.87 185405 port 259 185405 unique_id port 185405 remote_ip 10.8.0.46 185407 username komeil 185407 mac 185407 bytes_out 0 185407 bytes_in 0 185407 station_ip 83.123.94.233 185407 port 259 185407 unique_id port 185407 remote_ip 10.8.0.218 185410 username komeil 185410 mac 185410 bytes_out 0 185410 bytes_in 0 185410 station_ip 83.123.94.233 185410 port 279 185410 unique_id port 185410 remote_ip 10.8.0.218 185411 username komeil 185411 mac 185411 bytes_out 0 185411 bytes_in 0 185411 station_ip 83.123.94.233 185411 port 279 185411 unique_id port 185411 remote_ip 10.8.0.218 185417 username komeil 185417 mac 185417 bytes_out 0 185417 bytes_in 0 185357 username mehdizare 185357 kill_reason Relative expiration date has reached 185357 mac 185357 bytes_out 0 185357 bytes_in 0 185357 station_ip 5.120.140.145 185357 port 259 185357 unique_id port 185360 username komeil 185360 mac 185360 bytes_out 0 185360 bytes_in 0 185360 station_ip 83.123.94.233 185360 port 259 185360 unique_id port 185360 remote_ip 10.8.0.218 185364 username komeil 185364 mac 185364 bytes_out 0 185364 bytes_in 0 185364 station_ip 83.123.94.233 185364 port 259 185364 unique_id port 185364 remote_ip 10.8.0.218 185366 username komeil 185366 mac 185366 bytes_out 0 185366 bytes_in 0 185366 station_ip 83.123.94.233 185366 port 259 185366 unique_id port 185366 remote_ip 10.8.0.218 185368 username komeil 185368 mac 185368 bytes_out 0 185368 bytes_in 0 185368 station_ip 83.123.94.233 185368 port 259 185368 unique_id port 185368 remote_ip 10.8.0.218 185369 username komeil 185369 mac 185369 bytes_out 0 185369 bytes_in 0 185369 station_ip 83.123.94.233 185369 port 259 185369 unique_id port 185369 remote_ip 10.8.0.218 185374 username komeil 185374 mac 185374 bytes_out 0 185374 bytes_in 0 185374 station_ip 83.123.94.233 185374 port 259 185374 unique_id port 185374 remote_ip 10.8.0.218 185375 username komeil 185375 mac 185375 bytes_out 0 185375 bytes_in 0 185375 station_ip 83.123.94.233 185375 port 259 185375 unique_id port 185375 remote_ip 10.8.0.218 185377 username barzegar 185377 mac 185377 bytes_out 0 185377 bytes_in 0 185377 station_ip 5.120.116.130 185377 port 259 185377 unique_id port 185377 remote_ip 10.8.0.10 185378 username komeil 185378 mac 185378 bytes_out 0 185378 bytes_in 0 185378 station_ip 83.123.94.233 185378 port 259 185378 unique_id port 185378 remote_ip 10.8.0.218 185381 username mosi 185381 mac 185381 bytes_out 164203 185381 bytes_in 112285 185381 station_ip 89.47.77.160 185381 port 273 185381 unique_id port 185381 remote_ip 10.8.0.142 185388 username barzegar 185388 mac 185388 bytes_out 0 185388 bytes_in 0 185388 station_ip 5.120.116.130 185388 port 273 185388 unique_id port 185388 remote_ip 10.8.0.10 185395 username komeil 185395 mac 185395 bytes_out 0 185395 bytes_in 0 185395 station_ip 83.123.94.233 185395 port 259 185395 unique_id port 185395 remote_ip 10.8.0.218 185396 username aminvpn 185396 kill_reason Maximum check online fails reached 185396 unique_id port 185396 bytes_out 157096 185396 bytes_in 1199195 185396 station_ip 83.123.118.53 185396 port 15728995 185396 nas_port_type Virtual 185396 remote_ip 5.5.5.150 185400 username komeil 185400 mac 185400 bytes_out 0 185400 bytes_in 0 185400 station_ip 83.123.94.233 185400 port 259 185400 unique_id port 185400 remote_ip 10.8.0.218 185403 username komeil 185403 mac 185403 bytes_out 0 185403 bytes_in 0 185403 station_ip 83.123.94.233 185403 port 259 185403 unique_id port 185403 remote_ip 10.8.0.218 185404 username komeil 185404 mac 185404 bytes_out 0 185404 bytes_in 0 185404 station_ip 83.123.94.233 185404 port 259 185404 unique_id port 185404 remote_ip 10.8.0.218 185413 username yaghobi 185413 mac 185413 bytes_out 266439 185413 bytes_in 701777 185413 station_ip 83.123.103.70 185413 port 280 185413 unique_id port 185413 remote_ip 10.8.0.138 185414 username sabaghnezhad 185414 mac 185414 bytes_out 160783 185414 bytes_in 734769 185414 station_ip 164.138.160.233 185414 port 259 185414 unique_id port 185414 remote_ip 10.8.0.66 185416 username mohammadjavad 185402 port 276 185402 unique_id port 185402 remote_ip 10.8.0.218 185406 username komeil 185406 mac 185406 bytes_out 0 185406 bytes_in 0 185406 station_ip 83.123.94.233 185406 port 259 185406 unique_id port 185406 remote_ip 10.8.0.218 185408 username barzegar 185408 mac 185408 bytes_out 0 185408 bytes_in 0 185408 station_ip 5.120.116.130 185408 port 278 185408 unique_id port 185408 remote_ip 10.8.0.10 185409 username komeil 185409 mac 185409 bytes_out 0 185409 bytes_in 0 185409 station_ip 83.123.94.233 185409 port 279 185409 unique_id port 185409 remote_ip 10.8.0.218 185412 username komeil 185412 mac 185412 bytes_out 0 185412 bytes_in 0 185412 station_ip 83.123.94.233 185412 port 279 185412 unique_id port 185412 remote_ip 10.8.0.218 185415 username komeil 185415 mac 185415 bytes_out 0 185415 bytes_in 0 185415 station_ip 83.123.94.233 185415 port 279 185415 unique_id port 185415 remote_ip 10.8.0.218 185422 username mosi 185422 mac 185422 bytes_out 164596 185422 bytes_in 353691 185422 station_ip 89.47.77.160 185422 port 273 185422 unique_id port 185422 remote_ip 10.8.0.142 185427 username komeil 185427 mac 185427 bytes_out 0 185427 bytes_in 0 185427 station_ip 83.123.94.233 185427 port 259 185427 unique_id port 185427 remote_ip 10.8.0.218 185430 username komeil 185430 mac 185430 bytes_out 0 185430 bytes_in 0 185430 station_ip 83.123.94.233 185430 port 259 185430 unique_id port 185430 remote_ip 10.8.0.218 185431 username komeil 185431 mac 185431 bytes_out 0 185431 bytes_in 0 185431 station_ip 83.123.94.233 185431 port 273 185431 unique_id port 185431 remote_ip 10.8.0.218 185433 username mosi 185433 mac 185433 bytes_out 70547 185433 bytes_in 75987 185433 station_ip 89.47.77.160 185433 port 278 185433 unique_id port 185433 remote_ip 10.8.0.142 185437 username mohammadjavad 185437 mac 185437 bytes_out 180650 185437 bytes_in 2329690 185437 station_ip 83.123.8.232 185437 port 276 185437 unique_id port 185437 remote_ip 10.8.0.110 185438 username barzegar 185438 mac 185438 bytes_out 0 185438 bytes_in 0 185438 station_ip 5.120.116.130 185438 port 276 185438 unique_id port 185438 remote_ip 10.8.0.10 185439 username jafari 185439 kill_reason Another user logged on this global unique id 185439 mac 185439 bytes_out 0 185439 bytes_in 0 185439 station_ip 37.156.59.51 185439 port 262 185439 unique_id port 185442 username barzegar 185442 mac 185442 bytes_out 0 185442 bytes_in 0 185442 station_ip 5.120.116.130 185442 port 259 185442 unique_id port 185442 remote_ip 10.8.0.10 185446 username barzegar 185446 mac 185446 bytes_out 0 185446 bytes_in 0 185446 station_ip 5.120.116.130 185446 port 276 185446 unique_id port 185446 remote_ip 10.8.0.10 185448 username sedighe 185448 mac 185448 bytes_out 1357529 185448 bytes_in 2059550 185448 station_ip 83.123.94.87 185448 port 278 185448 unique_id port 185448 remote_ip 10.8.0.46 185450 username sekonji0496 185450 mac 185450 bytes_out 0 185450 bytes_in 0 185450 station_ip 83.123.47.86 185450 port 278 185450 unique_id port 185450 remote_ip 10.8.0.62 185453 username mohammadjavad 185453 mac 185453 bytes_out 623071 185453 bytes_in 10190145 185453 station_ip 83.123.8.232 185453 port 278 185453 unique_id port 185453 remote_ip 10.8.0.110 185455 username jafari 185455 kill_reason Another user logged on this global unique id 185455 mac 185455 bytes_out 0 185455 bytes_in 0 185455 station_ip 37.156.59.51 185455 port 262 185416 mac 185416 bytes_out 1537839 185416 bytes_in 22582865 185416 station_ip 83.123.8.232 185416 port 278 185416 unique_id port 185416 remote_ip 10.8.0.110 185418 username komeil 185418 mac 185418 bytes_out 0 185418 bytes_in 0 185418 station_ip 83.123.94.233 185418 port 259 185418 unique_id port 185418 remote_ip 10.8.0.218 185421 username komeil 185421 mac 185421 bytes_out 0 185421 bytes_in 0 185421 station_ip 83.123.94.233 185421 port 259 185421 unique_id port 185421 remote_ip 10.8.0.218 185423 username barzegar 185423 mac 185423 bytes_out 0 185423 bytes_in 0 185423 station_ip 5.120.116.130 185423 port 259 185423 unique_id port 185423 remote_ip 10.8.0.10 185424 username komeil 185424 mac 185424 bytes_out 0 185424 bytes_in 0 185424 station_ip 83.123.94.233 185424 port 259 185424 unique_id port 185424 remote_ip 10.8.0.218 185426 username komeil 185426 mac 185426 bytes_out 0 185426 bytes_in 0 185426 station_ip 83.123.94.233 185426 port 273 185426 unique_id port 185426 remote_ip 10.8.0.218 185434 username komeil 185434 mac 185434 bytes_out 0 185434 bytes_in 0 185434 station_ip 83.123.94.233 185434 port 273 185434 unique_id port 185434 remote_ip 10.8.0.218 185443 username houshang 185443 kill_reason Another user logged on this global unique id 185443 mac 185443 bytes_out 0 185443 bytes_in 0 185443 station_ip 5.119.125.186 185443 port 276 185443 unique_id port 185443 remote_ip 10.8.0.82 185444 username jafari 185444 kill_reason Another user logged on this global unique id 185444 mac 185444 bytes_out 0 185444 bytes_in 0 185444 station_ip 37.156.59.51 185444 port 262 185444 unique_id port 185447 username jafari 185447 kill_reason Another user logged on this global unique id 185447 mac 185447 bytes_out 0 185447 bytes_in 0 185447 station_ip 37.156.59.51 185447 port 262 185447 unique_id port 185449 username sekonji0496 185449 mac 185449 bytes_out 43172 185449 bytes_in 486136 185449 station_ip 83.123.47.86 185449 port 276 185449 unique_id port 185449 remote_ip 10.8.0.62 185452 username sekonji0496 185452 mac 185452 bytes_out 0 185452 bytes_in 0 185452 station_ip 83.123.47.86 185452 port 279 185452 unique_id port 185452 remote_ip 10.8.0.62 185454 username barzegar 185454 mac 185454 bytes_out 0 185454 bytes_in 0 185454 station_ip 5.120.116.130 185454 port 279 185454 unique_id port 185454 remote_ip 10.8.0.10 185456 username sekonji0496 185456 mac 185456 bytes_out 46347 185456 bytes_in 112866 185456 station_ip 83.123.47.86 185456 port 278 185456 unique_id port 185456 remote_ip 10.8.0.62 185457 username sekonji0496 185457 mac 185457 bytes_out 2186 185457 bytes_in 4278 185457 station_ip 83.123.47.86 185457 port 278 185457 unique_id port 185457 remote_ip 10.8.0.62 185458 username jafari 185458 mac 185458 bytes_out 0 185458 bytes_in 0 185458 station_ip 37.156.59.51 185458 port 262 185458 unique_id port 185461 username barzegar 185461 mac 185461 bytes_out 0 185461 bytes_in 0 185461 station_ip 5.120.116.130 185461 port 278 185461 unique_id port 185461 remote_ip 10.8.0.10 185462 username sekonji0496 185462 mac 185462 bytes_out 0 185462 bytes_in 0 185462 station_ip 83.123.47.86 185462 port 262 185462 unique_id port 185462 remote_ip 10.8.0.62 185466 username mohammadjavad 185466 mac 185466 bytes_out 653148 185466 bytes_in 9518678 185466 station_ip 83.123.8.232 185466 port 278 185466 unique_id port 185466 remote_ip 10.8.0.110 185469 username barzegar 185469 mac 185469 bytes_out 0 185417 station_ip 83.123.94.233 185417 port 259 185417 unique_id port 185417 remote_ip 10.8.0.218 185419 username komeil 185419 mac 185419 bytes_out 2331 185419 bytes_in 4600 185419 station_ip 83.123.94.233 185419 port 259 185419 unique_id port 185419 remote_ip 10.8.0.218 185420 username komeil 185420 mac 185420 bytes_out 0 185420 bytes_in 0 185420 station_ip 83.123.94.233 185420 port 259 185420 unique_id port 185420 remote_ip 10.8.0.218 185425 username mohammadjavad 185425 mac 185425 bytes_out 0 185425 bytes_in 0 185425 station_ip 83.123.8.232 185425 port 259 185425 unique_id port 185425 remote_ip 10.8.0.110 185428 username mohammadjavad 185428 mac 185428 bytes_out 0 185428 bytes_in 0 185428 station_ip 83.123.8.232 185428 port 259 185428 unique_id port 185428 remote_ip 10.8.0.110 185429 username komeil 185429 mac 185429 bytes_out 0 185429 bytes_in 0 185429 station_ip 83.123.94.233 185429 port 259 185429 unique_id port 185429 remote_ip 10.8.0.218 185432 username barzegar 185432 mac 185432 bytes_out 0 185432 bytes_in 0 185432 station_ip 5.120.116.130 185432 port 273 185432 unique_id port 185432 remote_ip 10.8.0.10 185435 username mosi 185435 mac 185435 bytes_out 4702 185435 bytes_in 10398 185435 station_ip 89.47.77.160 185435 port 279 185435 unique_id port 185435 remote_ip 10.8.0.142 185436 username sedighe 185436 mac 185436 bytes_out 1082783 185436 bytes_in 1937143 185436 station_ip 83.123.94.87 185436 port 276 185436 unique_id port 185436 remote_ip 10.8.0.46 185440 username aminvpn 185440 mac 185440 bytes_out 3624922 185440 bytes_in 47784369 185440 station_ip 5.120.117.173 185440 port 259 185440 unique_id port 185440 remote_ip 10.8.0.58 185441 username mohammadjavad 185441 mac 185441 bytes_out 0 185441 bytes_in 0 185441 station_ip 83.123.8.232 185441 port 259 185441 unique_id port 185441 remote_ip 10.8.0.110 185445 username houshang 185445 mac 185445 bytes_out 0 185445 bytes_in 0 185445 station_ip 5.119.125.186 185445 port 276 185445 unique_id port 185451 username sedighe 185451 mac 185451 bytes_out 54150 185451 bytes_in 84786 185451 station_ip 83.123.123.176 185451 port 279 185451 unique_id port 185451 remote_ip 10.8.0.46 185459 username sekonji0496 185459 mac 185459 bytes_out 2102 185459 bytes_in 4186 185459 station_ip 83.123.47.86 185459 port 278 185459 unique_id port 185459 remote_ip 10.8.0.62 185463 username rezaei 185463 mac 185463 bytes_out 1702579 185463 bytes_in 12903726 185463 station_ip 5.120.85.152 185463 port 259 185463 unique_id port 185463 remote_ip 10.8.0.198 185465 username barzegar 185465 mac 185465 bytes_out 2490 185465 bytes_in 4599 185465 station_ip 5.120.116.130 185465 port 279 185465 unique_id port 185465 remote_ip 10.8.0.10 185471 username sekonji0496 185471 mac 185471 bytes_out 2369 185471 bytes_in 4281 185471 station_ip 83.123.47.86 185471 port 259 185471 unique_id port 185471 remote_ip 10.8.0.62 185474 username mosi 185474 mac 185474 bytes_out 974189 185474 bytes_in 6193233 185474 station_ip 89.47.77.160 185474 port 273 185474 unique_id port 185474 remote_ip 10.8.0.142 185475 username mosi 185475 mac 185475 bytes_out 6691 185475 bytes_in 6783 185475 station_ip 37.137.2.75 185475 port 278 185475 unique_id port 185475 remote_ip 10.8.0.142 185478 username barzegar 185478 kill_reason Another user logged on this global unique id 185478 mac 185478 bytes_out 0 185478 bytes_in 0 185478 station_ip 5.120.116.130 185455 unique_id port 185460 username sekonji0496 185460 mac 185460 bytes_out 1996 185460 bytes_in 4080 185460 station_ip 83.123.47.86 185460 port 262 185460 unique_id port 185460 remote_ip 10.8.0.62 185464 username mohammadjavad 185464 mac 185464 bytes_out 1071008 185464 bytes_in 16650007 185464 station_ip 83.123.8.232 185464 port 278 185464 unique_id port 185464 remote_ip 10.8.0.110 185467 username sekonji0496 185467 mac 185467 bytes_out 15913 185467 bytes_in 19730 185467 station_ip 83.123.47.86 185467 port 262 185467 unique_id port 185467 remote_ip 10.8.0.62 185468 username yaghobi 185468 mac 185468 bytes_out 381884 185468 bytes_in 433239 185468 station_ip 83.123.70.140 185468 port 259 185468 unique_id port 185468 remote_ip 10.8.0.138 185470 username sekonji0496 185470 mac 185470 bytes_out 1907 185470 bytes_in 3991 185470 station_ip 83.123.47.86 185470 port 262 185470 unique_id port 185470 remote_ip 10.8.0.62 185476 username dortaj3792 185476 mac 185476 bytes_out 0 185476 bytes_in 0 185476 station_ip 5.120.3.131 185476 port 278 185476 unique_id port 185476 remote_ip 10.8.0.102 185480 username sabaghnezhad 185480 mac 185480 bytes_out 149787 185480 bytes_in 1098677 185480 station_ip 164.138.160.233 185480 port 278 185480 unique_id port 185480 remote_ip 10.8.0.66 185481 username godarzi 185481 mac 185481 bytes_out 75134 185481 bytes_in 155854 185481 station_ip 5.120.17.199 185481 port 280 185481 unique_id port 185481 remote_ip 10.8.0.38 185482 username yaghobi 185482 mac 185482 bytes_out 83639 185482 bytes_in 105390 185482 station_ip 83.123.19.62 185482 port 278 185482 unique_id port 185482 remote_ip 10.8.0.138 185484 username barzegar 185484 kill_reason Another user logged on this global unique id 185484 mac 185484 bytes_out 0 185484 bytes_in 0 185484 station_ip 5.120.116.130 185484 port 259 185484 unique_id port 185490 username sekonji0496 185490 mac 185490 bytes_out 0 185490 bytes_in 0 185490 station_ip 83.123.47.86 185490 port 280 185490 unique_id port 185490 remote_ip 10.8.0.62 185493 username sekonji0496 185493 mac 185493 bytes_out 0 185493 bytes_in 0 185493 station_ip 83.123.47.86 185493 port 280 185493 unique_id port 185493 remote_ip 10.8.0.62 185498 username shadkam 185498 mac 185498 bytes_out 1371289 185498 bytes_in 13333638 185498 station_ip 83.123.88.33 185498 port 282 185498 unique_id port 185498 remote_ip 10.8.0.74 185499 username barzegar 185499 kill_reason Another user logged on this global unique id 185499 mac 185499 bytes_out 0 185499 bytes_in 0 185499 station_ip 5.120.116.130 185499 port 259 185499 unique_id port 185503 username sekonji0496 185503 mac 185503 bytes_out 0 185503 bytes_in 0 185503 station_ip 83.123.47.86 185503 port 269 185503 unique_id port 185503 remote_ip 10.8.0.62 185505 username sekonji0496 185505 mac 185505 bytes_out 0 185505 bytes_in 0 185505 station_ip 83.123.47.86 185505 port 276 185505 unique_id port 185505 remote_ip 10.8.0.62 185507 username barzegar 185507 kill_reason Another user logged on this global unique id 185507 mac 185507 bytes_out 0 185507 bytes_in 0 185507 station_ip 5.120.116.130 185507 port 259 185507 unique_id port 185515 username barzegar 185515 mac 185515 bytes_out 0 185515 bytes_in 0 185515 station_ip 5.120.116.130 185515 port 283 185515 unique_id port 185515 remote_ip 10.8.0.10 185517 username mosi 185517 mac 185517 bytes_out 399701 185517 bytes_in 3119673 185517 station_ip 37.137.2.75 185517 port 273 185517 unique_id port 185469 bytes_in 0 185469 station_ip 5.120.116.130 185469 port 278 185469 unique_id port 185469 remote_ip 10.8.0.10 185472 username sekonji0496 185472 mac 185472 bytes_out 0 185472 bytes_in 0 185472 station_ip 83.123.47.86 185472 port 259 185472 unique_id port 185472 remote_ip 10.8.0.62 185473 username yaghobi 185473 mac 185473 bytes_out 280440 185473 bytes_in 585104 185473 station_ip 83.123.70.140 185473 port 279 185473 unique_id port 185473 remote_ip 10.8.0.138 185477 username godarzi 185477 mac 185477 bytes_out 4095600 185477 bytes_in 43924079 185477 station_ip 5.202.29.254 185477 port 276 185477 unique_id port 185477 remote_ip 10.8.0.38 185479 username mosi 185479 mac 185479 bytes_out 1714 185479 bytes_in 4022 185479 station_ip 37.137.2.75 185479 port 281 185479 unique_id port 185479 remote_ip 10.8.0.142 185488 username godarzi 185488 mac 185488 bytes_out 272197 185488 bytes_in 1858294 185488 station_ip 5.120.17.199 185488 port 280 185488 unique_id port 185488 remote_ip 10.8.0.38 185489 username sekonji0496 185489 mac 185489 bytes_out 0 185489 bytes_in 0 185489 station_ip 83.123.47.86 185489 port 280 185489 unique_id port 185489 remote_ip 10.8.0.62 185494 username sekonji0496 185494 mac 185494 bytes_out 0 185494 bytes_in 0 185494 station_ip 83.123.47.86 185494 port 280 185494 unique_id port 185494 remote_ip 10.8.0.62 185495 username sekonji0496 185495 mac 185495 bytes_out 0 185495 bytes_in 0 185495 station_ip 83.123.47.86 185495 port 281 185495 unique_id port 185495 remote_ip 10.8.0.62 185496 username aminvpn 185496 mac 185496 bytes_out 0 185496 bytes_in 0 185496 station_ip 5.119.193.69 185496 port 280 185496 unique_id port 185496 remote_ip 10.8.0.58 185500 username sekonji0496 185500 mac 185500 bytes_out 0 185500 bytes_in 0 185500 station_ip 83.123.47.86 185500 port 281 185500 unique_id port 185500 remote_ip 10.8.0.62 185501 username sedighe 185501 mac 185501 bytes_out 3552379 185501 bytes_in 48043834 185501 station_ip 83.123.15.2 185501 port 276 185501 unique_id port 185501 remote_ip 10.8.0.46 185506 username sekonji0496 185506 mac 185506 bytes_out 0 185506 bytes_in 0 185506 station_ip 83.123.47.86 185506 port 281 185506 unique_id port 185506 remote_ip 10.8.0.62 185508 username aminvpn 185508 mac 185508 bytes_out 0 185508 bytes_in 0 185508 station_ip 5.119.193.69 185508 port 282 185508 unique_id port 185508 remote_ip 10.8.0.58 185510 username sekonji0496 185510 mac 185510 bytes_out 0 185510 bytes_in 0 185510 station_ip 83.123.47.86 185510 port 282 185510 unique_id port 185510 remote_ip 10.8.0.62 185512 username sekonji0496 185512 mac 185512 bytes_out 0 185512 bytes_in 0 185512 station_ip 83.123.47.86 185512 port 283 185512 unique_id port 185512 remote_ip 10.8.0.62 185514 username sekonji0496 185514 mac 185514 bytes_out 0 185514 bytes_in 0 185514 station_ip 83.123.47.86 185514 port 259 185514 unique_id port 185514 remote_ip 10.8.0.62 185516 username mohammadjavad 185516 mac 185516 bytes_out 112066 185516 bytes_in 1119072 185516 station_ip 83.123.43.229 185516 port 284 185516 unique_id port 185516 remote_ip 10.8.0.110 185520 username meysam 185520 mac 185520 bytes_out 444636 185520 bytes_in 4000905 185520 station_ip 188.159.251.171 185520 port 259 185520 unique_id port 185520 remote_ip 10.8.0.158 185522 username barzegar 185522 mac 185522 bytes_out 1916 185522 bytes_in 5042 185522 station_ip 5.120.116.130 185522 port 273 185478 port 259 185478 unique_id port 185478 remote_ip 10.8.0.10 185483 username sabaghnezhad 185483 mac 185483 bytes_out 52075 185483 bytes_in 54387 185483 station_ip 164.138.160.233 185483 port 282 185483 unique_id port 185483 remote_ip 10.8.0.66 185485 username sekonji0496 185485 mac 185485 bytes_out 1909019 185485 bytes_in 25536032 185485 station_ip 83.123.47.86 185485 port 262 185485 unique_id port 185485 remote_ip 10.8.0.62 185486 username sekonji0496 185486 mac 185486 bytes_out 0 185486 bytes_in 0 185486 station_ip 83.123.47.86 185486 port 283 185486 unique_id port 185486 remote_ip 10.8.0.62 185487 username sekonji0496 185487 mac 185487 bytes_out 0 185487 bytes_in 0 185487 station_ip 83.123.47.86 185487 port 283 185487 unique_id port 185487 remote_ip 10.8.0.62 185491 username mosi 185491 mac 185491 bytes_out 49441 185491 bytes_in 100812 185491 station_ip 37.137.2.75 185491 port 281 185491 unique_id port 185491 remote_ip 10.8.0.142 185492 username esmaeilkazemi 185492 mac 185492 bytes_out 2648572 185492 bytes_in 45346246 185492 station_ip 83.123.33.157 185492 port 273 185492 unique_id port 185492 remote_ip 10.8.0.26 185497 username sekonji0496 185497 mac 185497 bytes_out 0 185497 bytes_in 0 185497 station_ip 83.123.47.86 185497 port 281 185497 unique_id port 185497 remote_ip 10.8.0.62 185502 username pourshad 185502 mac 185502 bytes_out 0 185502 bytes_in 0 185502 station_ip 5.119.107.197 185502 port 269 185502 unique_id port 185504 username sekonji0496 185504 mac 185504 bytes_out 0 185504 bytes_in 0 185504 station_ip 83.123.47.86 185504 port 269 185504 unique_id port 185504 remote_ip 10.8.0.62 185509 username barzegar 185509 mac 185509 bytes_out 0 185509 bytes_in 0 185509 station_ip 5.120.116.130 185509 port 259 185509 unique_id port 185511 username sekonji0496 185511 mac 185511 bytes_out 0 185511 bytes_in 0 185511 station_ip 83.123.47.86 185511 port 282 185511 unique_id port 185511 remote_ip 10.8.0.62 185513 username barzegar 185513 mac 185513 bytes_out 7232 185513 bytes_in 8407 185513 station_ip 5.120.116.130 185513 port 259 185513 unique_id port 185513 remote_ip 10.8.0.10 185518 username rashidi4690 185518 mac 185518 bytes_out 4120714 185518 bytes_in 24586392 185518 station_ip 5.119.43.115 185518 port 278 185518 unique_id port 185518 remote_ip 10.8.0.242 185521 username yaghobi 185521 mac 185521 bytes_out 1944441 185521 bytes_in 17995382 185521 station_ip 83.123.109.61 185521 port 269 185521 unique_id port 185521 remote_ip 10.8.0.138 185524 username malekpoir 185524 kill_reason Another user logged on this global unique id 185524 mac 185524 bytes_out 0 185524 bytes_in 0 185524 station_ip 5.120.139.23 185524 port 280 185524 unique_id port 185524 remote_ip 10.8.0.18 185526 username sekonji0496 185526 mac 185526 bytes_out 0 185526 bytes_in 0 185526 station_ip 83.123.47.86 185526 port 278 185526 unique_id port 185526 remote_ip 10.8.0.62 185530 username barzegar 185530 mac 185530 bytes_out 2226 185530 bytes_in 4611 185530 station_ip 5.120.116.130 185530 port 278 185530 unique_id port 185530 remote_ip 10.8.0.10 185531 username pourshad 185531 kill_reason Another user logged on this global unique id 185531 mac 185531 bytes_out 0 185531 bytes_in 0 185531 station_ip 5.119.107.197 185531 port 282 185531 unique_id port 185531 remote_ip 10.8.0.42 185534 username shadkam 185534 mac 185534 bytes_out 0 185534 bytes_in 0 185534 station_ip 83.123.15.172 185534 port 276 185517 remote_ip 10.8.0.142 185519 username sekonji0496 185519 mac 185519 bytes_out 0 185519 bytes_in 0 185519 station_ip 83.123.47.86 185519 port 273 185519 unique_id port 185519 remote_ip 10.8.0.62 185523 username aminvpn 185523 mac 185523 bytes_out 0 185523 bytes_in 0 185523 station_ip 5.119.193.69 185523 port 273 185523 unique_id port 185523 remote_ip 10.8.0.58 185525 username sekonji0496 185525 mac 185525 bytes_out 0 185525 bytes_in 0 185525 station_ip 83.123.47.86 185525 port 273 185525 unique_id port 185525 remote_ip 10.8.0.62 185527 username dortaj3792 185527 mac 185527 bytes_out 9154115 185527 bytes_in 6232129 185527 station_ip 5.120.3.131 185527 port 279 185527 unique_id port 185527 remote_ip 10.8.0.102 185528 username sekonji0496 185528 mac 185528 bytes_out 0 185528 bytes_in 0 185528 station_ip 83.123.47.86 185528 port 273 185528 unique_id port 185528 remote_ip 10.8.0.62 185529 username shadkam 185529 kill_reason Another user logged on this global unique id 185529 mac 185529 bytes_out 0 185529 bytes_in 0 185529 station_ip 83.123.15.172 185529 port 276 185529 unique_id port 185529 remote_ip 10.8.0.74 185539 username rashidi4690 185539 mac 185539 bytes_out 0 185539 bytes_in 0 185539 station_ip 5.119.43.115 185539 port 269 185539 unique_id port 185539 remote_ip 10.8.0.242 185543 username barzegar 185543 mac 185543 bytes_out 0 185543 bytes_in 0 185543 station_ip 5.120.116.130 185543 port 276 185543 unique_id port 185543 remote_ip 10.8.0.10 185545 username mosi 185545 mac 185545 bytes_out 173941 185545 bytes_in 272010 185545 station_ip 37.137.2.75 185545 port 259 185545 unique_id port 185545 remote_ip 10.8.0.142 185546 username sekonji0496 185546 mac 185546 bytes_out 3253 185546 bytes_in 5249 185546 station_ip 83.123.47.86 185546 port 262 185546 unique_id port 185546 remote_ip 10.8.0.62 185547 username rajaei 185547 mac 185547 bytes_out 2791110 185547 bytes_in 29559391 185547 station_ip 37.153.177.219 185547 port 269 185547 unique_id port 185547 remote_ip 10.8.0.210 185550 username barzegar 185550 mac 185550 bytes_out 643068 185550 bytes_in 132843 185550 station_ip 5.120.116.130 185550 port 276 185550 unique_id port 185550 remote_ip 10.8.0.10 185553 username godarzi 185553 mac 185553 bytes_out 1576313 185553 bytes_in 2999546 185553 station_ip 5.120.17.199 185553 port 278 185553 unique_id port 185553 remote_ip 10.8.0.38 185554 username yaghobi 185554 mac 185554 bytes_out 455247 185554 bytes_in 755431 185554 station_ip 83.123.109.61 185554 port 259 185554 unique_id port 185554 remote_ip 10.8.0.138 185556 username barzegar 185556 mac 185556 bytes_out 2747 185556 bytes_in 5369 185556 station_ip 5.120.116.130 185556 port 276 185556 unique_id port 185556 remote_ip 10.8.0.10 185558 username dortaj3792 185558 mac 185558 bytes_out 2353674 185558 bytes_in 23396025 185558 station_ip 5.120.3.131 185558 port 279 185558 unique_id port 185558 remote_ip 10.8.0.102 185560 username hajghani 185560 mac 185560 bytes_out 495059 185560 bytes_in 1240062 185560 station_ip 5.134.175.105 185560 port 283 185560 unique_id port 185560 remote_ip 10.8.0.106 185563 username mohammadjavad 185563 mac 185563 bytes_out 0 185563 bytes_in 0 185563 station_ip 83.123.107.159 185563 port 259 185563 unique_id port 185563 remote_ip 10.8.0.110 185564 username godarzi 185564 mac 185564 bytes_out 67576 185564 bytes_in 127162 185564 station_ip 5.120.17.199 185564 port 276 185564 unique_id port 185522 unique_id port 185522 remote_ip 10.8.0.10 185532 username farhad3 185532 kill_reason Another user logged on this global unique id 185532 mac 185532 bytes_out 0 185532 bytes_in 0 185532 station_ip 5.119.216.124 185532 port 262 185532 unique_id port 185532 remote_ip 10.8.0.222 185533 username yaghobi 185533 mac 185533 bytes_out 265090 185533 bytes_in 313998 185533 station_ip 83.123.109.61 185533 port 269 185533 unique_id port 185533 remote_ip 10.8.0.138 185535 username sekonji0496 185535 mac 185535 bytes_out 0 185535 bytes_in 0 185535 station_ip 83.123.47.86 185535 port 276 185535 unique_id port 185535 remote_ip 10.8.0.62 185536 username rashidi4690 185536 mac 185536 bytes_out 78887 185536 bytes_in 110787 185536 station_ip 5.119.43.115 185536 port 269 185536 unique_id port 185536 remote_ip 10.8.0.242 185538 username barzegar 185538 mac 185538 bytes_out 11263 185538 bytes_in 21493 185538 station_ip 5.120.116.130 185538 port 273 185538 unique_id port 185538 remote_ip 10.8.0.10 185542 username aminvpn 185542 mac 185542 bytes_out 0 185542 bytes_in 0 185542 station_ip 5.119.193.69 185542 port 262 185542 unique_id port 185542 remote_ip 10.8.0.58 185551 username aminvpn 185551 mac 185551 bytes_out 0 185551 bytes_in 0 185551 station_ip 5.119.193.69 185551 port 276 185551 unique_id port 185551 remote_ip 10.8.0.58 185552 username barzegar 185552 mac 185552 bytes_out 0 185552 bytes_in 0 185552 station_ip 5.120.116.130 185552 port 276 185552 unique_id port 185552 remote_ip 10.8.0.10 185555 username farhad3 185555 mac 185555 bytes_out 843028 185555 bytes_in 2866518 185555 station_ip 5.119.216.124 185555 port 262 185555 unique_id port 185555 remote_ip 10.8.0.222 185557 username meysam 185557 mac 185557 bytes_out 3684571 185557 bytes_in 55375929 185557 station_ip 188.159.251.171 185557 port 280 185557 unique_id port 185557 remote_ip 10.8.0.158 185562 username mohammadjavad 185562 mac 185562 bytes_out 1177965 185562 bytes_in 20251210 185562 station_ip 83.123.107.159 185562 port 259 185562 unique_id port 185562 remote_ip 10.8.0.110 185565 username barzegar 185565 mac 185565 bytes_out 0 185565 bytes_in 0 185565 station_ip 5.120.116.130 185565 port 276 185565 unique_id port 185565 remote_ip 10.8.0.10 185567 username aminvpn 185567 mac 185567 bytes_out 0 185567 bytes_in 0 185567 station_ip 5.119.193.69 185567 port 259 185567 unique_id port 185567 remote_ip 10.8.0.58 185568 username aminvpn 185568 mac 185568 bytes_out 0 185568 bytes_in 0 185568 station_ip 5.119.193.69 185568 port 259 185568 unique_id port 185568 remote_ip 10.8.0.58 185570 username nilufarrajaei 185570 mac 185570 bytes_out 12945 185570 bytes_in 47401 185570 station_ip 83.123.35.142 185570 port 276 185570 unique_id port 185570 remote_ip 10.8.0.194 185576 username barzegar 185576 mac 185576 bytes_out 0 185576 bytes_in 0 185576 station_ip 5.120.116.130 185576 port 278 185576 unique_id port 185576 remote_ip 10.8.0.10 185579 username aminvpn 185579 mac 185579 bytes_out 0 185579 bytes_in 0 185579 station_ip 5.119.193.69 185579 port 278 185579 unique_id port 185579 remote_ip 10.8.0.58 185581 username sabaghnezhad 185581 mac 185581 bytes_out 301978 185581 bytes_in 699025 185581 station_ip 5.208.17.168 185581 port 269 185581 unique_id port 185581 remote_ip 10.8.0.66 185586 username barzegar 185586 mac 185586 bytes_out 14462 185586 bytes_in 23169 185586 station_ip 5.120.116.130 185586 port 279 185586 unique_id port 185534 unique_id port 185537 username malekpoir 185537 mac 185537 bytes_out 0 185537 bytes_in 0 185537 station_ip 5.120.139.23 185537 port 280 185537 unique_id port 185540 username farhad3 185540 mac 185540 bytes_out 0 185540 bytes_in 0 185540 station_ip 5.119.216.124 185540 port 262 185540 unique_id port 185541 username barzegar 185541 mac 185541 bytes_out 0 185541 bytes_in 0 185541 station_ip 5.120.116.130 185541 port 276 185541 unique_id port 185541 remote_ip 10.8.0.10 185544 username meysam 185544 mac 185544 bytes_out 1490954 185544 bytes_in 22578119 185544 station_ip 188.159.251.171 185544 port 278 185544 unique_id port 185544 remote_ip 10.8.0.158 185548 username mohammadjavad 185548 mac 185548 bytes_out 1413671 185548 bytes_in 23834198 185548 station_ip 83.123.86.186 185548 port 259 185548 unique_id port 185548 remote_ip 10.8.0.110 185549 username yaghobi 185549 mac 185549 bytes_out 433439 185549 bytes_in 2595466 185549 station_ip 83.123.109.61 185549 port 283 185549 unique_id port 185549 remote_ip 10.8.0.138 185559 username godarzi 185559 mac 185559 bytes_out 744249 185559 bytes_in 139382 185559 station_ip 5.120.17.199 185559 port 278 185559 unique_id port 185559 remote_ip 10.8.0.38 185561 username aminvpn 185561 mac 185561 bytes_out 0 185561 bytes_in 0 185561 station_ip 5.119.193.69 185561 port 278 185561 unique_id port 185561 remote_ip 10.8.0.58 185569 username nilufarrajaei 185569 mac 185569 bytes_out 901273 185569 bytes_in 4703830 185569 station_ip 83.123.35.142 185569 port 281 185569 unique_id port 185569 remote_ip 10.8.0.194 185571 username godarzi 185571 mac 185571 bytes_out 138487 185571 bytes_in 484695 185571 station_ip 5.120.17.199 185571 port 278 185571 unique_id port 185571 remote_ip 10.8.0.38 185573 username barzegar 185573 mac 185573 bytes_out 3691 185573 bytes_in 4795 185573 station_ip 5.120.116.130 185573 port 259 185573 unique_id port 185573 remote_ip 10.8.0.10 185577 username yaghobi 185577 mac 185577 bytes_out 45737 185577 bytes_in 48660 185577 station_ip 83.123.109.61 185577 port 276 185577 unique_id port 185577 remote_ip 10.8.0.138 185578 username barzegar 185578 mac 185578 bytes_out 0 185578 bytes_in 0 185578 station_ip 5.120.116.130 185578 port 278 185578 unique_id port 185578 remote_ip 10.8.0.10 185582 username yaghobi 185582 mac 185582 bytes_out 130689 185582 bytes_in 111750 185582 station_ip 83.123.109.61 185582 port 276 185582 unique_id port 185582 remote_ip 10.8.0.138 185583 username yaghobi 185583 mac 185583 bytes_out 38681 185583 bytes_in 26848 185583 station_ip 83.123.109.61 185583 port 269 185583 unique_id port 185583 remote_ip 10.8.0.138 185585 username yaghobi 185585 mac 185585 bytes_out 38057 185585 bytes_in 34618 185585 station_ip 83.123.109.61 185585 port 269 185585 unique_id port 185585 remote_ip 10.8.0.138 185591 username yaghobi 185591 mac 185591 bytes_out 62440 185591 bytes_in 58728 185591 station_ip 83.123.109.61 185591 port 278 185591 unique_id port 185591 remote_ip 10.8.0.138 185593 username aminvpn 185593 mac 185593 bytes_out 0 185593 bytes_in 0 185593 station_ip 5.119.193.69 185593 port 259 185593 unique_id port 185593 remote_ip 10.8.0.58 185601 username pourshad 185601 kill_reason Another user logged on this global unique id 185601 mac 185601 bytes_out 0 185601 bytes_in 0 185601 station_ip 5.119.107.197 185601 port 282 185601 unique_id port 185608 username aminvpn 185608 unique_id port 185564 remote_ip 10.8.0.38 185566 username mohammadjavad 185566 mac 185566 bytes_out 723752 185566 bytes_in 12415775 185566 station_ip 83.123.107.159 185566 port 259 185566 unique_id port 185566 remote_ip 10.8.0.110 185572 username barzegar 185572 mac 185572 bytes_out 2580 185572 bytes_in 5012 185572 station_ip 5.120.116.130 185572 port 259 185572 unique_id port 185572 remote_ip 10.8.0.10 185574 username yaghobi 185574 mac 185574 bytes_out 1209578 185574 bytes_in 11744975 185574 station_ip 83.123.109.61 185574 port 284 185574 unique_id port 185574 remote_ip 10.8.0.138 185575 username yaghobi 185575 mac 185575 bytes_out 16723 185575 bytes_in 20228 185575 station_ip 83.123.109.61 185575 port 276 185575 unique_id port 185575 remote_ip 10.8.0.138 185580 username pourshad 185580 kill_reason Another user logged on this global unique id 185580 mac 185580 bytes_out 0 185580 bytes_in 0 185580 station_ip 5.119.107.197 185580 port 282 185580 unique_id port 185584 username shadkam 185584 mac 185584 bytes_out 665385 185584 bytes_in 7199812 185584 station_ip 83.123.60.62 185584 port 278 185584 unique_id port 185584 remote_ip 10.8.0.74 185588 username yaghobi 185588 mac 185588 bytes_out 20006 185588 bytes_in 12129 185588 station_ip 83.123.109.61 185588 port 278 185588 unique_id port 185588 remote_ip 10.8.0.138 185589 username barzegar 185589 mac 185589 bytes_out 0 185589 bytes_in 0 185589 station_ip 5.120.116.130 185589 port 269 185589 unique_id port 185589 remote_ip 10.8.0.10 185590 username godarzi 185590 mac 185590 bytes_out 9747385 185590 bytes_in 27631143 185590 station_ip 5.120.17.199 185590 port 259 185590 unique_id port 185590 remote_ip 10.8.0.38 185597 username saeeddamghani 185597 unique_id port 185597 terminate_cause User-Request 185597 bytes_out 96735 185597 bytes_in 1021981 185597 station_ip 83.123.69.67 185597 port 15728998 185597 nas_port_type Virtual 185597 remote_ip 5.5.5.147 185598 username barzegar 185598 mac 185598 bytes_out 0 185598 bytes_in 0 185598 station_ip 5.120.116.130 185598 port 280 185598 unique_id port 185598 remote_ip 10.8.0.10 185603 username saeeddamghani 185603 unique_id port 185603 terminate_cause User-Request 185603 bytes_out 254081 185603 bytes_in 6340708 185603 station_ip 83.123.69.67 185603 port 15728999 185603 nas_port_type Virtual 185603 remote_ip 5.5.5.147 185604 username saeeddamghani 185604 unique_id port 185604 terminate_cause User-Request 185604 bytes_out 53637 185604 bytes_in 605967 185604 station_ip 83.123.69.67 185604 port 15729000 185604 nas_port_type Virtual 185604 remote_ip 5.5.5.147 185605 username aminvpn 185605 mac 185605 bytes_out 0 185605 bytes_in 0 185605 station_ip 5.119.193.69 185605 port 281 185605 unique_id port 185605 remote_ip 10.8.0.58 185607 username barzegar 185607 mac 185607 bytes_out 0 185607 bytes_in 0 185607 station_ip 5.120.116.130 185607 port 283 185607 unique_id port 185607 remote_ip 10.8.0.10 185612 username sedighe 185612 mac 185612 bytes_out 89691 185612 bytes_in 128374 185612 station_ip 83.123.89.198 185612 port 269 185612 unique_id port 185612 remote_ip 10.8.0.46 185617 username aminvpn 185617 mac 185617 bytes_out 1644 185617 bytes_in 4723 185617 station_ip 5.119.193.69 185617 port 269 185617 unique_id port 185617 remote_ip 10.8.0.58 185619 username meysam 185619 mac 185619 bytes_out 0 185619 bytes_in 0 185619 station_ip 188.159.251.171 185619 port 276 185619 unique_id port 185626 username aminvpn 185626 kill_reason Maximum check online fails reached 185626 mac 185626 bytes_out 0 185586 remote_ip 10.8.0.10 185587 username aminvpn 185587 mac 185587 bytes_out 0 185587 bytes_in 0 185587 station_ip 5.119.193.69 185587 port 269 185587 unique_id port 185587 remote_ip 10.8.0.58 185592 username meysam 185592 kill_reason Another user logged on this global unique id 185592 mac 185592 bytes_out 0 185592 bytes_in 0 185592 station_ip 188.159.251.171 185592 port 276 185592 unique_id port 185592 remote_ip 10.8.0.158 185594 username pourshad 185594 kill_reason Another user logged on this global unique id 185594 mac 185594 bytes_out 0 185594 bytes_in 0 185594 station_ip 5.119.107.197 185594 port 282 185594 unique_id port 185595 username yaghobi 185595 mac 185595 bytes_out 24195 185595 bytes_in 23666 185595 station_ip 83.123.109.61 185595 port 278 185595 unique_id port 185595 remote_ip 10.8.0.138 185596 username godarzi 185596 mac 185596 bytes_out 175283 185596 bytes_in 224413 185596 station_ip 5.120.17.199 185596 port 269 185596 unique_id port 185596 remote_ip 10.8.0.38 185599 username godarzi 185599 mac 185599 bytes_out 52348 185599 bytes_in 83291 185599 station_ip 5.120.17.199 185599 port 269 185599 unique_id port 185599 remote_ip 10.8.0.38 185600 username motamedi9772 185600 mac 185600 bytes_out 136465 185600 bytes_in 193724 185600 station_ip 83.123.48.223 185600 port 279 185600 unique_id port 185600 remote_ip 10.8.0.154 185602 username yaghobi 185602 mac 185602 bytes_out 247400 185602 bytes_in 374705 185602 station_ip 83.123.24.4 185602 port 278 185602 unique_id port 185602 remote_ip 10.8.0.138 185606 username aminvpn 185606 mac 185606 bytes_out 0 185606 bytes_in 0 185606 station_ip 5.119.193.69 185606 port 281 185606 unique_id port 185606 remote_ip 10.8.0.58 185609 username dortaj3792 185609 mac 185609 bytes_out 2255541 185609 bytes_in 20968356 185609 station_ip 5.120.3.131 185609 port 262 185609 unique_id port 185609 remote_ip 10.8.0.102 185610 username godarzi 185610 mac 185610 bytes_out 116687 185610 bytes_in 312928 185610 station_ip 5.120.17.199 185610 port 281 185610 unique_id port 185610 remote_ip 10.8.0.38 185611 username mosi 185611 kill_reason Another user logged on this global unique id 185611 mac 185611 bytes_out 0 185611 bytes_in 0 185611 station_ip 5.200.125.152 185611 port 280 185611 unique_id port 185611 remote_ip 10.8.0.142 185615 username hajghani 185615 mac 185615 bytes_out 75645 185615 bytes_in 93550 185615 station_ip 5.134.175.105 185615 port 259 185615 unique_id port 185615 remote_ip 10.8.0.106 185618 username pourshad 185618 mac 185618 bytes_out 0 185618 bytes_in 0 185618 station_ip 5.119.107.197 185618 port 282 185618 unique_id port 185623 username aminvpn 185623 mac 185623 bytes_out 0 185623 bytes_in 0 185623 station_ip 5.119.193.69 185623 port 285 185623 unique_id port 185623 remote_ip 10.8.0.58 185624 username saeed9658 185624 mac 185624 bytes_out 246672 185624 bytes_in 2023068 185624 station_ip 5.119.117.241 185624 port 276 185624 unique_id port 185624 remote_ip 10.8.0.162 185631 username aminvpn 185631 mac 185631 bytes_out 0 185631 bytes_in 0 185631 station_ip 5.119.193.69 185631 port 281 185631 unique_id port 185631 remote_ip 10.8.0.58 185633 username dortaj3792 185633 mac 185633 bytes_out 273962 185633 bytes_in 533340 185633 station_ip 5.120.3.131 185633 port 282 185633 unique_id port 185633 remote_ip 10.8.0.102 185636 username soleymani5056 185636 mac 185636 bytes_out 75674 185636 bytes_in 112770 185636 station_ip 5.119.31.39 185636 port 279 185608 terminate_cause User-Request 185608 bytes_out 14097641 185608 bytes_in 315402562 185608 station_ip 31.57.123.15 185608 port 15728997 185608 nas_port_type Virtual 185608 remote_ip 5.5.5.148 185613 username aminvpn 185613 mac 185613 bytes_out 0 185613 bytes_in 0 185613 station_ip 5.119.193.69 185613 port 269 185613 unique_id port 185613 remote_ip 10.8.0.58 185614 username saeed9658 185614 mac 185614 bytes_out 1415912 185614 bytes_in 11280883 185614 station_ip 5.119.117.241 185614 port 279 185614 unique_id port 185614 remote_ip 10.8.0.162 185616 username yaghobi 185616 mac 185616 bytes_out 903203 185616 bytes_in 10192958 185616 station_ip 83.123.55.136 185616 port 278 185616 unique_id port 185616 remote_ip 10.8.0.138 185620 username barzegar 185620 mac 185620 bytes_out 0 185620 bytes_in 0 185620 station_ip 5.120.116.130 185620 port 278 185620 unique_id port 185620 remote_ip 10.8.0.10 185621 username mosi 185621 kill_reason Another user logged on this global unique id 185621 mac 185621 bytes_out 0 185621 bytes_in 0 185621 station_ip 5.200.125.152 185621 port 280 185621 unique_id port 185622 username godarzi 185622 mac 185622 bytes_out 1081673 185622 bytes_in 8831319 185622 station_ip 5.120.17.199 185622 port 262 185622 unique_id port 185622 remote_ip 10.8.0.38 185625 username yaghobi 185625 mac 185625 bytes_out 272410 185625 bytes_in 370243 185625 station_ip 83.123.55.136 185625 port 259 185625 unique_id port 185625 remote_ip 10.8.0.138 185630 username soleymani5056 185630 mac 185630 bytes_out 188001 185630 bytes_in 638299 185630 station_ip 5.119.197.250 185630 port 284 185630 unique_id port 185630 remote_ip 10.8.0.226 185632 username godarzi 185632 mac 185632 bytes_out 470715 185632 bytes_in 1399229 185632 station_ip 5.120.17.199 185632 port 262 185632 unique_id port 185632 remote_ip 10.8.0.38 185635 username mosi 185635 mac 185635 bytes_out 0 185635 bytes_in 0 185635 station_ip 5.200.125.152 185635 port 280 185635 unique_id port 185637 username akbari0070 185637 mac 185637 bytes_out 1854241 185637 bytes_in 10842069 185637 station_ip 83.123.71.119 185637 port 283 185637 unique_id port 185637 remote_ip 10.8.0.166 185641 username barzegar 185641 mac 185641 bytes_out 2212 185641 bytes_in 4505 185641 station_ip 5.120.116.130 185641 port 279 185641 unique_id port 185641 remote_ip 10.8.0.10 185647 username barzegar 185647 mac 185647 bytes_out 0 185647 bytes_in 0 185647 station_ip 5.120.116.130 185647 port 283 185647 unique_id port 185647 remote_ip 10.8.0.10 185650 username yaghobi 185650 mac 185650 bytes_out 61460 185650 bytes_in 97292 185650 station_ip 83.123.17.7 185650 port 259 185650 unique_id port 185650 remote_ip 10.8.0.138 185651 username zahra1101 185651 mac 185651 bytes_out 574678 185651 bytes_in 1470202 185651 station_ip 5.120.183.42 185651 port 269 185651 unique_id port 185651 remote_ip 10.8.0.250 185656 username mosi 185656 kill_reason Another user logged on this global unique id 185656 mac 185656 bytes_out 0 185656 bytes_in 0 185656 station_ip 5.200.125.152 185656 port 273 185656 unique_id port 185657 username rashidi4690 185657 mac 185657 bytes_out 957001 185657 bytes_in 10269428 185657 station_ip 5.120.159.33 185657 port 259 185657 unique_id port 185657 remote_ip 10.8.0.242 185659 username hajghani 185659 mac 185659 bytes_out 68410 185659 bytes_in 65837 185659 station_ip 5.134.175.105 185659 port 280 185659 unique_id port 185659 remote_ip 10.8.0.106 185666 username saeeddamghani 185626 bytes_in 0 185626 station_ip 5.119.193.69 185626 port 285 185626 unique_id port 185627 username hajghani 185627 mac 185627 bytes_out 322324 185627 bytes_in 1553150 185627 station_ip 5.134.175.105 185627 port 279 185627 unique_id port 185627 remote_ip 10.8.0.106 185628 username sedighe 185628 mac 185628 bytes_out 744470 185628 bytes_in 7566341 185628 station_ip 83.123.89.198 185628 port 281 185628 unique_id port 185628 remote_ip 10.8.0.46 185629 username barzegar 185629 mac 185629 bytes_out 0 185629 bytes_in 0 185629 station_ip 5.120.116.130 185629 port 279 185629 unique_id port 185629 remote_ip 10.8.0.10 185634 username malekpoir 185634 mac 185634 bytes_out 216929 185634 bytes_in 334319 185634 station_ip 5.120.139.23 185634 port 273 185634 unique_id port 185634 remote_ip 10.8.0.18 185639 username soleymani5056 185639 mac 185639 bytes_out 1827 185639 bytes_in 3676 185639 station_ip 5.119.31.39 185639 port 280 185639 unique_id port 185639 remote_ip 10.8.0.226 185645 username yaghobi 185645 mac 185645 bytes_out 116975 185645 bytes_in 331929 185645 station_ip 83.123.55.136 185645 port 280 185645 unique_id port 185645 remote_ip 10.8.0.138 185648 username rashidi4690 185648 mac 185648 bytes_out 41151 185648 bytes_in 60342 185648 station_ip 5.120.159.33 185648 port 279 185648 unique_id port 185648 remote_ip 10.8.0.242 185653 username fezealinaghi 185653 mac 185653 bytes_out 1213367 185653 bytes_in 16521134 185653 station_ip 83.123.25.6 185653 port 259 185653 unique_id port 185653 remote_ip 10.8.0.202 185654 username yaghobi 185654 mac 185654 bytes_out 128787 185654 bytes_in 245949 185654 station_ip 83.123.17.7 185654 port 279 185654 unique_id port 185654 remote_ip 10.8.0.138 185660 username yaghobi 185660 mac 185660 bytes_out 96163 185660 bytes_in 220173 185660 station_ip 83.123.39.164 185660 port 269 185660 unique_id port 185660 remote_ip 10.8.0.138 185663 username yaghobi 185663 mac 185663 bytes_out 11795 185663 bytes_in 15476 185663 station_ip 83.123.83.12 185663 port 284 185663 unique_id port 185663 remote_ip 10.8.0.138 185665 username barzegar 185665 mac 185665 bytes_out 0 185665 bytes_in 0 185665 station_ip 5.120.116.130 185665 port 262 185665 unique_id port 185665 remote_ip 10.8.0.10 185672 username hajghani 185672 mac 185672 bytes_out 440957 185672 bytes_in 4511338 185672 station_ip 5.134.175.105 185672 port 259 185672 unique_id port 185672 remote_ip 10.8.0.106 185674 username aminvpn 185674 mac 185674 bytes_out 0 185674 bytes_in 0 185674 station_ip 5.119.193.69 185674 port 278 185674 unique_id port 185674 remote_ip 10.8.0.58 185676 username sedighe 185676 mac 185676 bytes_out 55418 185676 bytes_in 76115 185676 station_ip 83.123.114.42 185676 port 284 185676 unique_id port 185676 remote_ip 10.8.0.46 185678 username yaghobi 185678 mac 185678 bytes_out 251299 185678 bytes_in 431053 185678 station_ip 83.123.66.144 185678 port 262 185678 unique_id port 185678 remote_ip 10.8.0.138 185679 username saeeddamghani 185679 mac 185679 bytes_out 0 185679 bytes_in 0 185679 station_ip 217.60.175.202 185679 port 262 185679 unique_id port 185679 remote_ip 10.8.0.122 185680 username pourshad 185680 mac 185680 bytes_out 3033 185680 bytes_in 4444 185680 station_ip 5.119.107.197 185680 port 262 185680 unique_id port 185680 remote_ip 10.8.0.42 185682 username mosi 185682 mac 185682 bytes_out 0 185682 bytes_in 0 185682 station_ip 5.200.125.152 185636 unique_id port 185636 remote_ip 10.8.0.226 185638 username meysam 185638 kill_reason Another user logged on this global unique id 185638 mac 185638 bytes_out 0 185638 bytes_in 0 185638 station_ip 188.159.251.171 185638 port 269 185638 unique_id port 185638 remote_ip 10.8.0.158 185640 username yaghobi 185640 mac 185640 bytes_out 330407 185640 bytes_in 644593 185640 station_ip 83.123.55.136 185640 port 286 185640 unique_id port 185640 remote_ip 10.8.0.138 185642 username meysam 185642 mac 185642 bytes_out 0 185642 bytes_in 0 185642 station_ip 188.159.251.171 185642 port 269 185642 unique_id port 185643 username hajghani 185643 mac 185643 bytes_out 63108 185643 bytes_in 112162 185643 station_ip 5.134.175.105 185643 port 259 185643 unique_id port 185643 remote_ip 10.8.0.106 185644 username aminvpn 185644 mac 185644 bytes_out 0 185644 bytes_in 0 185644 station_ip 5.119.193.69 185644 port 259 185644 unique_id port 185644 remote_ip 10.8.0.58 185646 username hajghani 185646 mac 185646 bytes_out 14283 185646 bytes_in 20016 185646 station_ip 5.134.175.105 185646 port 269 185646 unique_id port 185646 remote_ip 10.8.0.106 185649 username mosi 185649 kill_reason Another user logged on this global unique id 185649 mac 185649 bytes_out 0 185649 bytes_in 0 185649 station_ip 5.200.125.152 185649 port 273 185649 unique_id port 185649 remote_ip 10.8.0.142 185652 username sedighe 185652 mac 185652 bytes_out 819380 185652 bytes_in 8715245 185652 station_ip 83.123.89.198 185652 port 276 185652 unique_id port 185652 remote_ip 10.8.0.46 185655 username barzegar 185655 mac 185655 bytes_out 0 185655 bytes_in 0 185655 station_ip 5.120.116.130 185655 port 276 185655 unique_id port 185655 remote_ip 10.8.0.10 185658 username aminvpn 185658 mac 185658 bytes_out 0 185658 bytes_in 0 185658 station_ip 5.119.193.69 185658 port 259 185658 unique_id port 185658 remote_ip 10.8.0.58 185661 username dortaj3792 185661 mac 185661 bytes_out 413970 185661 bytes_in 487295 185661 station_ip 5.120.3.131 185661 port 262 185661 unique_id port 185661 remote_ip 10.8.0.102 185662 username yaghobi 185662 mac 185662 bytes_out 64592 185662 bytes_in 100879 185662 station_ip 83.123.60.149 185662 port 279 185662 unique_id port 185662 remote_ip 10.8.0.138 185664 username saeed9658 185664 mac 185664 bytes_out 65938 185664 bytes_in 262335 185664 station_ip 5.119.117.241 185664 port 262 185664 unique_id port 185664 remote_ip 10.8.0.162 185669 username tahmorsi 185669 mac 185669 bytes_out 347419 185669 bytes_in 1618056 185669 station_ip 86.57.44.102 185669 port 283 185669 unique_id port 185669 remote_ip 10.8.0.6 185671 username charkhandaz3496 185671 kill_reason Another user logged on this global unique id 185671 mac 185671 bytes_out 0 185671 bytes_in 0 185671 station_ip 5.120.93.7 185671 port 280 185671 unique_id port 185671 remote_ip 10.8.0.90 185677 username barzegar 185677 mac 185677 bytes_out 0 185677 bytes_in 0 185677 station_ip 5.120.116.130 185677 port 284 185677 unique_id port 185677 remote_ip 10.8.0.10 185681 username mosi 185681 mac 185681 bytes_out 0 185681 bytes_in 0 185681 station_ip 5.200.125.152 185681 port 273 185681 unique_id port 185683 username khademi 185683 kill_reason Another user logged on this global unique id 185683 mac 185683 bytes_out 0 185683 bytes_in 0 185683 station_ip 83.123.73.154 185683 port 259 185683 unique_id port 185683 remote_ip 10.8.0.14 185687 username sabaghnezhad 185687 mac 185687 bytes_out 129912 185666 mac 185666 bytes_out 1354294 185666 bytes_in 21532854 185666 station_ip 217.60.175.202 185666 port 276 185666 unique_id port 185666 remote_ip 10.8.0.122 185667 username yaghobi 185667 mac 185667 bytes_out 87839 185667 bytes_in 216507 185667 station_ip 83.123.82.185 185667 port 286 185667 unique_id port 185667 remote_ip 10.8.0.138 185668 username aminvpn 185668 mac 185668 bytes_out 0 185668 bytes_in 0 185668 station_ip 5.119.193.69 185668 port 284 185668 unique_id port 185668 remote_ip 10.8.0.58 185670 username barzegar 185670 mac 185670 bytes_out 0 185670 bytes_in 0 185670 station_ip 5.120.116.130 185670 port 283 185670 unique_id port 185670 remote_ip 10.8.0.10 185673 username pourshad 185673 mac 185673 bytes_out 36252240 185673 bytes_in 14231828 185673 station_ip 5.119.107.197 185673 port 278 185673 unique_id port 185673 remote_ip 10.8.0.42 185675 username aminvpn 185675 mac 185675 bytes_out 0 185675 bytes_in 0 185675 station_ip 5.119.193.69 185675 port 278 185675 unique_id port 185675 remote_ip 10.8.0.58 185684 username hajghani 185684 mac 185684 bytes_out 54449 185684 bytes_in 51443 185684 station_ip 5.134.175.105 185684 port 287 185684 unique_id port 185684 remote_ip 10.8.0.106 185688 username aminvpn 185688 mac 185688 bytes_out 0 185688 bytes_in 0 185688 station_ip 5.119.193.69 185688 port 283 185688 unique_id port 185688 remote_ip 10.8.0.58 185690 username tahmorsi 185690 mac 185690 bytes_out 247887 185690 bytes_in 645955 185690 station_ip 86.57.44.102 185690 port 286 185690 unique_id port 185690 remote_ip 10.8.0.6 185693 username aminvpn 185693 mac 185693 bytes_out 1644 185693 bytes_in 3991 185693 station_ip 5.119.193.69 185693 port 283 185693 unique_id port 185693 remote_ip 10.8.0.58 185694 username soleymani5056 185694 mac 185694 bytes_out 211355 185694 bytes_in 225977 185694 station_ip 5.119.31.39 185694 port 269 185694 unique_id port 185694 remote_ip 10.8.0.226 185696 username hajghani 185696 mac 185696 bytes_out 11358 185696 bytes_in 16414 185696 station_ip 5.134.175.105 185696 port 286 185696 unique_id port 185696 remote_ip 10.8.0.106 185701 username motamedi9772 185701 mac 185701 bytes_out 0 185701 bytes_in 0 185701 station_ip 83.123.103.131 185701 port 269 185701 unique_id port 185701 remote_ip 10.8.0.154 185702 username motamedi9772 185702 mac 185702 bytes_out 0 185702 bytes_in 0 185702 station_ip 83.123.103.131 185702 port 269 185702 unique_id port 185702 remote_ip 10.8.0.154 185705 username motamedi9772 185705 mac 185705 bytes_out 0 185705 bytes_in 0 185705 station_ip 83.123.103.131 185705 port 269 185705 unique_id port 185705 remote_ip 10.8.0.154 185713 username motamedi9772 185713 mac 185713 bytes_out 0 185713 bytes_in 0 185713 station_ip 83.123.103.131 185713 port 284 185713 unique_id port 185713 remote_ip 10.8.0.154 185717 username soleymani5056 185717 mac 185717 bytes_out 111906 185717 bytes_in 114308 185717 station_ip 5.120.137.79 185717 port 283 185717 unique_id port 185717 remote_ip 10.8.0.226 185718 username motamedi9772 185718 mac 185718 bytes_out 0 185718 bytes_in 0 185718 station_ip 83.123.103.131 185718 port 262 185718 unique_id port 185718 remote_ip 10.8.0.154 185719 username motamedi9772 185719 mac 185719 bytes_out 0 185719 bytes_in 0 185719 station_ip 83.123.103.131 185719 port 283 185719 unique_id port 185719 remote_ip 10.8.0.154 185720 username charkhandaz3496 185720 mac 185720 bytes_out 0 185682 port 262 185682 unique_id port 185682 remote_ip 10.8.0.142 185685 username saeeddamghani 185685 mac 185685 bytes_out 1644 185685 bytes_in 5922 185685 station_ip 217.60.175.202 185685 port 273 185685 unique_id port 185685 remote_ip 10.8.0.122 185686 username rashidi4690 185686 mac 185686 bytes_out 3868679 185686 bytes_in 38498423 185686 station_ip 5.120.159.33 185686 port 283 185686 unique_id port 185686 remote_ip 10.8.0.242 185692 username hajghani 185692 mac 185692 bytes_out 12271 185692 bytes_in 15977 185692 station_ip 5.134.175.105 185692 port 262 185692 unique_id port 185692 remote_ip 10.8.0.106 185695 username pourshad 185695 mac 185695 bytes_out 40497 185695 bytes_in 44942 185695 station_ip 5.119.107.197 185695 port 273 185695 unique_id port 185695 remote_ip 10.8.0.42 185697 username barzegar 185697 mac 185697 bytes_out 2274 185697 bytes_in 4771 185697 station_ip 5.120.116.130 185697 port 273 185697 unique_id port 185697 remote_ip 10.8.0.10 185698 username malekpoir 185698 mac 185698 bytes_out 622395 185698 bytes_in 3769617 185698 station_ip 5.120.139.23 185698 port 282 185698 unique_id port 185698 remote_ip 10.8.0.18 185700 username motamedi9772 185700 mac 185700 bytes_out 0 185700 bytes_in 0 185700 station_ip 83.123.103.131 185700 port 269 185700 unique_id port 185700 remote_ip 10.8.0.154 185707 username motamedi9772 185707 mac 185707 bytes_out 0 185707 bytes_in 0 185707 station_ip 83.123.103.131 185707 port 269 185707 unique_id port 185707 remote_ip 10.8.0.154 185709 username motamedi9772 185709 mac 185709 bytes_out 0 185709 bytes_in 0 185709 station_ip 83.123.103.131 185709 port 269 185709 unique_id port 185709 remote_ip 10.8.0.154 185710 username motamedi9772 185710 mac 185710 bytes_out 0 185710 bytes_in 0 185710 station_ip 83.123.103.131 185710 port 269 185710 unique_id port 185710 remote_ip 10.8.0.154 185711 username aminvpn 185711 mac 185711 bytes_out 0 185711 bytes_in 0 185711 station_ip 5.119.193.69 185711 port 269 185711 unique_id port 185711 remote_ip 10.8.0.58 185716 username motamedi9772 185716 mac 185716 bytes_out 0 185716 bytes_in 0 185716 station_ip 83.123.103.131 185716 port 262 185716 unique_id port 185716 remote_ip 10.8.0.154 185721 username motamedi9772 185721 mac 185721 bytes_out 0 185721 bytes_in 0 185721 station_ip 83.123.103.131 185721 port 283 185721 unique_id port 185721 remote_ip 10.8.0.154 185723 username yaghobi 185723 mac 185723 bytes_out 121634 185723 bytes_in 213130 185723 station_ip 83.123.38.17 185723 port 282 185723 unique_id port 185723 remote_ip 10.8.0.138 185725 username motamedi9772 185725 mac 185725 bytes_out 0 185725 bytes_in 0 185725 station_ip 83.123.103.131 185725 port 282 185725 unique_id port 185725 remote_ip 10.8.0.154 185728 username barzegar 185728 mac 185728 bytes_out 0 185728 bytes_in 0 185728 station_ip 5.120.116.130 185728 port 283 185728 unique_id port 185728 remote_ip 10.8.0.10 185733 username meysam 185733 mac 185733 bytes_out 3426020 185733 bytes_in 49618914 185733 station_ip 188.159.251.171 185733 port 288 185733 unique_id port 185733 remote_ip 10.8.0.158 185736 username motamedi9772 185736 mac 185736 bytes_out 0 185736 bytes_in 0 185736 station_ip 83.123.103.131 185736 port 282 185736 unique_id port 185736 remote_ip 10.8.0.154 185740 username motamedi9772 185740 mac 185740 bytes_out 0 185740 bytes_in 0 185740 station_ip 83.123.103.131 185740 port 282 185687 bytes_in 117994 185687 station_ip 5.208.17.168 185687 port 276 185687 unique_id port 185687 remote_ip 10.8.0.66 185689 username barzegar 185689 mac 185689 bytes_out 0 185689 bytes_in 0 185689 station_ip 5.120.116.130 185689 port 276 185689 unique_id port 185689 remote_ip 10.8.0.10 185691 username tahmasebi 185691 kill_reason Relative expiration date has reached 185691 mac 185691 bytes_out 0 185691 bytes_in 0 185691 station_ip 5.120.5.204 185691 port 286 185691 unique_id port 185699 username motamedi9772 185699 mac 185699 bytes_out 47815 185699 bytes_in 53392 185699 station_ip 83.123.103.131 185699 port 269 185699 unique_id port 185699 remote_ip 10.8.0.154 185703 username motamedi9772 185703 mac 185703 bytes_out 0 185703 bytes_in 0 185703 station_ip 83.123.103.131 185703 port 269 185703 unique_id port 185703 remote_ip 10.8.0.154 185704 username yaghobi 185704 mac 185704 bytes_out 228216 185704 bytes_in 316445 185704 station_ip 83.123.66.144 185704 port 284 185704 unique_id port 185704 remote_ip 10.8.0.138 185706 username motamedi9772 185706 mac 185706 bytes_out 0 185706 bytes_in 0 185706 station_ip 83.123.103.131 185706 port 269 185706 unique_id port 185706 remote_ip 10.8.0.154 185708 username barzegar 185708 mac 185708 bytes_out 0 185708 bytes_in 0 185708 station_ip 5.120.116.130 185708 port 284 185708 unique_id port 185708 remote_ip 10.8.0.10 185712 username yarmohamadi7916 185712 mac 185712 bytes_out 2324557 185712 bytes_in 14006738 185712 station_ip 5.120.98.87 185712 port 262 185712 unique_id port 185712 remote_ip 10.8.0.230 185714 username motamedi9772 185714 mac 185714 bytes_out 0 185714 bytes_in 0 185714 station_ip 83.123.103.131 185714 port 262 185714 unique_id port 185714 remote_ip 10.8.0.154 185715 username motamedi9772 185715 mac 185715 bytes_out 0 185715 bytes_in 0 185715 station_ip 83.123.103.131 185715 port 262 185715 unique_id port 185715 remote_ip 10.8.0.154 185722 username motamedi9772 185722 mac 185722 bytes_out 0 185722 bytes_in 0 185722 station_ip 83.123.103.131 185722 port 280 185722 unique_id port 185722 remote_ip 10.8.0.154 185724 username barzegar 185724 mac 185724 bytes_out 0 185724 bytes_in 0 185724 station_ip 5.120.116.130 185724 port 283 185724 unique_id port 185724 remote_ip 10.8.0.10 185727 username motamedi9772 185727 mac 185727 bytes_out 0 185727 bytes_in 0 185727 station_ip 83.123.103.131 185727 port 282 185727 unique_id port 185727 remote_ip 10.8.0.154 185729 username motamedi9772 185729 mac 185729 bytes_out 0 185729 bytes_in 0 185729 station_ip 83.123.103.131 185729 port 282 185729 unique_id port 185729 remote_ip 10.8.0.154 185732 username motamedi9772 185732 mac 185732 bytes_out 0 185732 bytes_in 0 185732 station_ip 83.123.103.131 185732 port 282 185732 unique_id port 185732 remote_ip 10.8.0.154 185734 username motamedi9772 185734 mac 185734 bytes_out 0 185734 bytes_in 0 185734 station_ip 83.123.103.131 185734 port 282 185734 unique_id port 185734 remote_ip 10.8.0.154 185735 username motamedi9772 185735 mac 185735 bytes_out 0 185735 bytes_in 0 185735 station_ip 83.123.103.131 185735 port 282 185735 unique_id port 185735 remote_ip 10.8.0.154 185737 username yaghobi 185737 mac 185737 bytes_out 6424 185737 bytes_in 10322 185737 station_ip 83.123.38.17 185737 port 286 185737 unique_id port 185737 remote_ip 10.8.0.138 185739 username motamedi9772 185739 mac 185739 bytes_out 0 185739 bytes_in 0 185720 bytes_in 0 185720 station_ip 5.120.93.7 185720 port 280 185720 unique_id port 185726 username motamedi9772 185726 mac 185726 bytes_out 0 185726 bytes_in 0 185726 station_ip 83.123.103.131 185726 port 282 185726 unique_id port 185726 remote_ip 10.8.0.154 185730 username motamedi9772 185730 mac 185730 bytes_out 0 185730 bytes_in 0 185730 station_ip 83.123.103.131 185730 port 282 185730 unique_id port 185730 remote_ip 10.8.0.154 185731 username yaghobi 185731 mac 185731 bytes_out 1691 185731 bytes_in 4470 185731 station_ip 83.123.38.17 185731 port 280 185731 unique_id port 185731 remote_ip 10.8.0.138 185738 username motamedi9772 185738 mac 185738 bytes_out 0 185738 bytes_in 0 185738 station_ip 83.123.103.131 185738 port 282 185738 unique_id port 185738 remote_ip 10.8.0.154 185744 username yaghobi 185744 mac 185744 bytes_out 52519 185744 bytes_in 60825 185744 station_ip 83.123.38.17 185744 port 288 185744 unique_id port 185744 remote_ip 10.8.0.138 185746 username barzegar 185746 mac 185746 bytes_out 0 185746 bytes_in 0 185746 station_ip 5.120.116.130 185746 port 288 185746 unique_id port 185746 remote_ip 10.8.0.10 185753 username aminvpn 185753 mac 185753 bytes_out 0 185753 bytes_in 0 185753 station_ip 5.119.193.69 185753 port 269 185753 unique_id port 185753 remote_ip 10.8.0.58 185757 username motamedi9772 185757 mac 185757 bytes_out 0 185757 bytes_in 0 185757 station_ip 83.123.103.131 185757 port 269 185757 unique_id port 185757 remote_ip 10.8.0.154 185759 username motamedi9772 185759 mac 185759 bytes_out 0 185759 bytes_in 0 185759 station_ip 83.123.103.131 185759 port 269 185759 unique_id port 185759 remote_ip 10.8.0.154 185761 username motamedi9772 185761 mac 185761 bytes_out 0 185761 bytes_in 0 185761 station_ip 83.123.103.131 185761 port 269 185761 unique_id port 185761 remote_ip 10.8.0.154 185763 username motamedi9772 185763 mac 185763 bytes_out 0 185763 bytes_in 0 185763 station_ip 83.123.103.131 185763 port 269 185763 unique_id port 185763 remote_ip 10.8.0.154 185767 username rashidi4690 185767 mac 185767 bytes_out 1670605 185767 bytes_in 8884522 185767 station_ip 5.120.159.33 185767 port 283 185767 unique_id port 185767 remote_ip 10.8.0.242 185770 username motamedi9772 185770 mac 185770 bytes_out 0 185770 bytes_in 0 185770 station_ip 83.123.103.131 185770 port 269 185770 unique_id port 185770 remote_ip 10.8.0.154 185771 username motamedi9772 185771 mac 185771 bytes_out 0 185771 bytes_in 0 185771 station_ip 83.123.103.131 185771 port 269 185771 unique_id port 185771 remote_ip 10.8.0.154 185777 username motamedi9772 185777 mac 185777 bytes_out 0 185777 bytes_in 0 185777 station_ip 83.123.103.131 185777 port 278 185777 unique_id port 185777 remote_ip 10.8.0.154 185779 username motamedi9772 185779 mac 185779 bytes_out 0 185779 bytes_in 0 185779 station_ip 83.123.103.131 185779 port 278 185779 unique_id port 185779 remote_ip 10.8.0.154 185782 username pourshad 185782 mac 185782 bytes_out 26407 185782 bytes_in 29021 185782 station_ip 5.119.107.197 185782 port 269 185782 unique_id port 185782 remote_ip 10.8.0.42 185785 username aminvpn 185785 mac 185785 bytes_out 0 185785 bytes_in 0 185785 station_ip 5.119.193.69 185785 port 269 185785 unique_id port 185785 remote_ip 10.8.0.58 185789 username charkhandaz3496 185789 mac 185789 bytes_out 2194558 185789 bytes_in 30218727 185789 station_ip 5.120.93.7 185789 port 284 185739 station_ip 83.123.103.131 185739 port 282 185739 unique_id port 185739 remote_ip 10.8.0.154 185742 username motamedi9772 185742 mac 185742 bytes_out 0 185742 bytes_in 0 185742 station_ip 83.123.103.131 185742 port 282 185742 unique_id port 185742 remote_ip 10.8.0.154 185747 username motamedi9772 185747 mac 185747 bytes_out 0 185747 bytes_in 0 185747 station_ip 83.123.103.131 185747 port 286 185747 unique_id port 185747 remote_ip 10.8.0.154 185749 username motamedi9772 185749 mac 185749 bytes_out 0 185749 bytes_in 0 185749 station_ip 83.123.103.131 185749 port 286 185749 unique_id port 185749 remote_ip 10.8.0.154 185750 username saeeddamghani 185750 mac 185750 bytes_out 71030 185750 bytes_in 80260 185750 station_ip 217.60.175.202 185750 port 269 185750 unique_id port 185750 remote_ip 10.8.0.122 185752 username barzegar 185752 mac 185752 bytes_out 0 185752 bytes_in 0 185752 station_ip 5.120.116.130 185752 port 286 185752 unique_id port 185752 remote_ip 10.8.0.10 185760 username meysam 185760 mac 185760 bytes_out 243641 185760 bytes_in 2775370 185760 station_ip 188.159.251.171 185760 port 286 185760 unique_id port 185760 remote_ip 10.8.0.158 185764 username motamedi9772 185764 mac 185764 bytes_out 0 185764 bytes_in 0 185764 station_ip 83.123.103.131 185764 port 269 185764 unique_id port 185764 remote_ip 10.8.0.154 185765 username motamedi9772 185765 mac 185765 bytes_out 0 185765 bytes_in 0 185765 station_ip 83.123.103.131 185765 port 269 185765 unique_id port 185765 remote_ip 10.8.0.154 185772 username motamedi9772 185772 mac 185772 bytes_out 0 185772 bytes_in 0 185772 station_ip 83.123.103.131 185772 port 269 185772 unique_id port 185772 remote_ip 10.8.0.154 185773 username fezealinaghi 185773 mac 185773 bytes_out 372975 185773 bytes_in 4121516 185773 station_ip 83.123.35.222 185773 port 279 185773 unique_id port 185773 remote_ip 10.8.0.202 185775 username motamedi9772 185775 mac 185775 bytes_out 0 185775 bytes_in 0 185775 station_ip 83.123.103.131 185775 port 290 185775 unique_id port 185775 remote_ip 10.8.0.154 185776 username motamedi9772 185776 mac 185776 bytes_out 0 185776 bytes_in 0 185776 station_ip 83.123.103.131 185776 port 278 185776 unique_id port 185776 remote_ip 10.8.0.154 185780 username motamedi9772 185780 mac 185780 bytes_out 0 185780 bytes_in 0 185780 station_ip 83.123.103.131 185780 port 278 185780 unique_id port 185780 remote_ip 10.8.0.154 185781 username motamedi9772 185781 mac 185781 bytes_out 0 185781 bytes_in 0 185781 station_ip 83.123.103.131 185781 port 278 185781 unique_id port 185781 remote_ip 10.8.0.154 185784 username hajghani 185784 mac 185784 bytes_out 502572 185784 bytes_in 4789904 185784 station_ip 5.134.175.105 185784 port 287 185784 unique_id port 185784 remote_ip 10.8.0.106 185786 username pourshad 185786 mac 185786 bytes_out 14040 185786 bytes_in 19884 185786 station_ip 5.119.107.197 185786 port 291 185786 unique_id port 185786 remote_ip 10.8.0.42 185787 username rashidi4690 185787 mac 185787 bytes_out 30673 185787 bytes_in 62436 185787 station_ip 5.120.159.33 185787 port 286 185787 unique_id port 185787 remote_ip 10.8.0.242 185788 username mostafa_es78 185788 mac 185788 bytes_out 2741536 185788 bytes_in 17881751 185788 station_ip 83.122.19.1 185788 port 280 185788 unique_id port 185788 remote_ip 10.8.0.34 185794 username aminvpn 185794 unique_id port 185794 terminate_cause Lost-Carrier 185794 bytes_out 579799 185740 unique_id port 185740 remote_ip 10.8.0.154 185741 username motamedi9772 185741 mac 185741 bytes_out 0 185741 bytes_in 0 185741 station_ip 83.123.103.131 185741 port 282 185741 unique_id port 185741 remote_ip 10.8.0.154 185743 username motamedi9772 185743 mac 185743 bytes_out 0 185743 bytes_in 0 185743 station_ip 83.123.103.131 185743 port 282 185743 unique_id port 185743 remote_ip 10.8.0.154 185745 username motamedi9772 185745 mac 185745 bytes_out 0 185745 bytes_in 0 185745 station_ip 83.123.103.131 185745 port 286 185745 unique_id port 185745 remote_ip 10.8.0.154 185748 username meysam 185748 mac 185748 bytes_out 0 185748 bytes_in 0 185748 station_ip 188.159.251.171 185748 port 290 185748 unique_id port 185748 remote_ip 10.8.0.158 185751 username motamedi9772 185751 mac 185751 bytes_out 0 185751 bytes_in 0 185751 station_ip 83.123.103.131 185751 port 288 185751 unique_id port 185751 remote_ip 10.8.0.154 185754 username motamedi9772 185754 mac 185754 bytes_out 0 185754 bytes_in 0 185754 station_ip 83.123.103.131 185754 port 290 185754 unique_id port 185754 remote_ip 10.8.0.154 185755 username motamedi9772 185755 mac 185755 bytes_out 0 185755 bytes_in 0 185755 station_ip 83.123.103.131 185755 port 269 185755 unique_id port 185755 remote_ip 10.8.0.154 185756 username motamedi9772 185756 mac 185756 bytes_out 0 185756 bytes_in 0 185756 station_ip 83.123.103.131 185756 port 269 185756 unique_id port 185756 remote_ip 10.8.0.154 185758 username motamedi9772 185758 mac 185758 bytes_out 0 185758 bytes_in 0 185758 station_ip 83.123.103.131 185758 port 269 185758 unique_id port 185758 remote_ip 10.8.0.154 185762 username motamedi9772 185762 mac 185762 bytes_out 0 185762 bytes_in 0 185762 station_ip 83.123.103.131 185762 port 269 185762 unique_id port 185762 remote_ip 10.8.0.154 185766 username motamedi9772 185766 mac 185766 bytes_out 0 185766 bytes_in 0 185766 station_ip 83.123.103.131 185766 port 269 185766 unique_id port 185766 remote_ip 10.8.0.154 185768 username motamedi9772 185768 mac 185768 bytes_out 0 185768 bytes_in 0 185768 station_ip 83.123.103.131 185768 port 269 185768 unique_id port 185768 remote_ip 10.8.0.154 185769 username motamedi9772 185769 mac 185769 bytes_out 0 185769 bytes_in 0 185769 station_ip 83.123.103.131 185769 port 269 185769 unique_id port 185769 remote_ip 10.8.0.154 185774 username sedighe 185774 mac 185774 bytes_out 195959 185774 bytes_in 443745 185774 station_ip 83.123.114.42 185774 port 278 185774 unique_id port 185774 remote_ip 10.8.0.46 185778 username meysam 185778 mac 185778 bytes_out 10639 185778 bytes_in 13919 185778 station_ip 188.159.251.171 185778 port 286 185778 unique_id port 185778 remote_ip 10.8.0.158 185783 username barzegar 185783 mac 185783 bytes_out 0 185783 bytes_in 0 185783 station_ip 5.120.116.130 185783 port 286 185783 unique_id port 185783 remote_ip 10.8.0.10 185790 username barzegar 185790 kill_reason Maximum check online fails reached 185790 mac 185790 bytes_out 0 185790 bytes_in 0 185790 station_ip 5.120.116.130 185790 port 287 185790 unique_id port 185791 username mostafa_es78 185791 mac 185791 bytes_out 492477 185791 bytes_in 605017 185791 station_ip 83.122.19.1 185791 port 286 185791 unique_id port 185791 remote_ip 10.8.0.34 185793 username godarzi 185793 mac 185793 bytes_out 4804325 185793 bytes_in 46348243 185793 station_ip 5.120.17.199 185793 port 281 185793 unique_id port 185789 unique_id port 185789 remote_ip 10.8.0.90 185792 username rashidi4690 185792 mac 185792 bytes_out 3815 185792 bytes_in 7864 185792 station_ip 5.120.159.33 185792 port 280 185792 unique_id port 185792 remote_ip 10.8.0.242 185795 username barzegar 185795 mac 185795 bytes_out 0 185795 bytes_in 0 185795 station_ip 5.120.116.130 185795 port 280 185795 unique_id port 185795 remote_ip 10.8.0.10 185796 username aminvpn 185796 mac 185796 bytes_out 0 185796 bytes_in 0 185796 station_ip 5.119.193.69 185796 port 280 185796 unique_id port 185796 remote_ip 10.8.0.58 185799 username yaghobi 185799 mac 185799 bytes_out 629441 185799 bytes_in 1499534 185799 station_ip 83.123.38.17 185799 port 282 185799 unique_id port 185799 remote_ip 10.8.0.138 185801 username sedighe 185801 mac 185801 bytes_out 48095 185801 bytes_in 61841 185801 station_ip 83.123.114.42 185801 port 279 185801 unique_id port 185801 remote_ip 10.8.0.46 185804 username akbari0070 185804 mac 185804 bytes_out 1001069 185804 bytes_in 9031897 185804 station_ip 83.123.3.3 185804 port 288 185804 unique_id port 185804 remote_ip 10.8.0.166 185805 username sedighe 185805 mac 185805 bytes_out 28087 185805 bytes_in 53516 185805 station_ip 83.123.104.243 185805 port 280 185805 unique_id port 185805 remote_ip 10.8.0.46 185807 username saeed9658 185807 mac 185807 bytes_out 1238575 185807 bytes_in 7373121 185807 station_ip 5.119.117.241 185807 port 283 185807 unique_id port 185807 remote_ip 10.8.0.162 185809 username saeed9658 185809 mac 185809 bytes_out 0 185809 bytes_in 0 185809 station_ip 5.119.117.241 185809 port 281 185809 unique_id port 185809 remote_ip 10.8.0.162 185810 username saeeddamghani 185810 mac 185810 bytes_out 205635 185810 bytes_in 779405 185810 station_ip 5.119.52.196 185810 port 262 185810 unique_id port 185810 remote_ip 10.8.0.122 185812 username barzegar 185812 mac 185812 bytes_out 0 185812 bytes_in 0 185812 station_ip 5.120.116.130 185812 port 286 185812 unique_id port 185812 remote_ip 10.8.0.10 185813 username aminvpn 185813 mac 185813 bytes_out 0 185813 bytes_in 0 185813 station_ip 5.119.193.69 185813 port 286 185813 unique_id port 185813 remote_ip 10.8.0.58 185818 username yaghobi 185818 mac 185818 bytes_out 931879 185818 bytes_in 7289747 185818 station_ip 83.123.38.17 185818 port 278 185818 unique_id port 185818 remote_ip 10.8.0.138 185819 username godarzi 185819 mac 185819 bytes_out 101986 185819 bytes_in 322656 185819 station_ip 5.120.134.19 185819 port 290 185819 unique_id port 185819 remote_ip 10.8.0.38 185823 username morteza4424 185823 mac 185823 bytes_out 0 185823 bytes_in 0 185823 station_ip 83.123.103.100 185823 port 286 185823 unique_id port 185823 remote_ip 10.8.0.206 185825 username morteza4424 185825 mac 185825 bytes_out 0 185825 bytes_in 0 185825 station_ip 83.123.103.100 185825 port 278 185825 unique_id port 185825 remote_ip 10.8.0.206 185826 username pourshad 185826 mac 185826 bytes_out 290410 185826 bytes_in 2538527 185826 station_ip 5.119.107.197 185826 port 284 185826 unique_id port 185826 remote_ip 10.8.0.42 185827 username morteza4424 185827 mac 185827 bytes_out 0 185827 bytes_in 0 185827 station_ip 83.123.103.100 185827 port 279 185827 unique_id port 185827 remote_ip 10.8.0.206 185828 username sabaghnezhad 185828 mac 185828 bytes_out 123137 185828 bytes_in 546034 185828 station_ip 5.208.17.168 185828 port 281 185828 unique_id port 185793 remote_ip 10.8.0.38 185797 username dortaj3792 185797 mac 185797 bytes_out 1512111 185797 bytes_in 15074930 185797 station_ip 5.120.3.131 185797 port 262 185797 unique_id port 185797 remote_ip 10.8.0.102 185798 username motamedi9772 185798 mac 185798 bytes_out 2526001 185798 bytes_in 28117244 185798 station_ip 83.123.103.131 185798 port 278 185798 unique_id port 185798 remote_ip 10.8.0.154 185802 username rashidi4690 185802 mac 185802 bytes_out 30442 185802 bytes_in 125921 185802 station_ip 5.120.159.33 185802 port 262 185802 unique_id port 185802 remote_ip 10.8.0.242 185811 username pourshad 185811 mac 185811 bytes_out 39675 185811 bytes_in 33001 185811 station_ip 5.119.107.197 185811 port 279 185811 unique_id port 185811 remote_ip 10.8.0.42 185814 username khorasani9135 185814 mac 185814 bytes_out 0 185814 bytes_in 0 185814 station_ip 83.123.12.190 185814 port 290 185814 unique_id port 185814 remote_ip 10.8.0.126 185816 username morteza4424 185816 mac 185816 bytes_out 0 185816 bytes_in 0 185816 station_ip 83.123.103.100 185816 port 279 185816 unique_id port 185816 remote_ip 10.8.0.206 185817 username khorasani9135 185817 mac 185817 bytes_out 6510 185817 bytes_in 23128 185817 station_ip 83.123.12.190 185817 port 286 185817 unique_id port 185817 remote_ip 10.8.0.126 185820 username morteza4424 185820 mac 185820 bytes_out 0 185820 bytes_in 0 185820 station_ip 83.123.103.100 185820 port 278 185820 unique_id port 185820 remote_ip 10.8.0.206 185821 username meysam 185821 mac 185821 bytes_out 780908 185821 bytes_in 10275229 185821 station_ip 188.159.251.171 185821 port 288 185821 unique_id port 185821 remote_ip 10.8.0.158 185831 username aminvpn 185831 mac 185831 bytes_out 0 185831 bytes_in 0 185831 station_ip 5.119.193.69 185831 port 286 185831 unique_id port 185831 remote_ip 10.8.0.58 185833 username yaghobi 185833 mac 185833 bytes_out 66465 185833 bytes_in 59296 185833 station_ip 83.123.64.1 185833 port 278 185833 unique_id port 185833 remote_ip 10.8.0.138 185836 username morteza4424 185836 mac 185836 bytes_out 77173 185836 bytes_in 37740 185836 station_ip 83.123.103.100 185836 port 288 185836 unique_id port 185836 remote_ip 10.8.0.206 185846 username dortaj3792 185846 mac 185846 bytes_out 227450 185846 bytes_in 820681 185846 station_ip 5.120.3.131 185846 port 286 185846 unique_id port 185846 remote_ip 10.8.0.102 185851 username yaghobi 185851 mac 185851 bytes_out 146862 185851 bytes_in 155844 185851 station_ip 83.123.64.1 185851 port 278 185851 unique_id port 185851 remote_ip 10.8.0.138 185854 username aminvpn 185854 mac 185854 bytes_out 0 185854 bytes_in 0 185854 station_ip 5.119.193.69 185854 port 291 185854 unique_id port 185854 remote_ip 10.8.0.58 185855 username sabaghnezhad 185855 mac 185855 bytes_out 16345 185855 bytes_in 22697 185855 station_ip 5.208.17.168 185855 port 279 185855 unique_id port 185855 remote_ip 10.8.0.66 185859 username meysam 185859 mac 185859 bytes_out 125352 185859 bytes_in 603923 185859 station_ip 188.159.251.171 185859 port 290 185859 unique_id port 185859 remote_ip 10.8.0.158 185860 username morteza4424 185860 mac 185860 bytes_out 8038262 185860 bytes_in 600279 185860 station_ip 83.123.103.100 185860 port 283 185860 unique_id port 185860 remote_ip 10.8.0.206 185865 username pourshad 185865 mac 185865 bytes_out 553955 185865 bytes_in 7521724 185865 station_ip 5.119.107.197 185865 port 281 185865 unique_id port 185794 bytes_in 2294269 185794 station_ip 83.123.71.15 185794 port 15729001 185794 nas_port_type Virtual 185794 remote_ip 5.5.5.146 185800 username motamedi9772 185800 mac 185800 bytes_out 7427 185800 bytes_in 22426 185800 station_ip 83.123.103.131 185800 port 280 185800 unique_id port 185800 remote_ip 10.8.0.154 185803 username pourshad 185803 mac 185803 bytes_out 90774 185803 bytes_in 207360 185803 station_ip 5.119.107.197 185803 port 269 185803 unique_id port 185803 remote_ip 10.8.0.42 185806 username godarzi 185806 mac 185806 bytes_out 500684 185806 bytes_in 3762385 185806 station_ip 5.120.134.19 185806 port 281 185806 unique_id port 185806 remote_ip 10.8.0.38 185808 username fezealinaghi 185808 mac 185808 bytes_out 94132 185808 bytes_in 317171 185808 station_ip 83.123.35.222 185808 port 290 185808 unique_id port 185808 remote_ip 10.8.0.202 185815 username morteza4424 185815 mac 185815 bytes_out 31062 185815 bytes_in 54912 185815 station_ip 83.123.103.100 185815 port 279 185815 unique_id port 185815 remote_ip 10.8.0.206 185822 username godarzi 185822 mac 185822 bytes_out 44382 185822 bytes_in 130808 185822 station_ip 5.120.134.19 185822 port 278 185822 unique_id port 185822 remote_ip 10.8.0.38 185824 username khorasani9135 185824 mac 185824 bytes_out 190399 185824 bytes_in 1000777 185824 station_ip 83.123.12.190 185824 port 279 185824 unique_id port 185824 remote_ip 10.8.0.126 185829 username morteza4424 185829 mac 185829 bytes_out 0 185829 bytes_in 0 185829 station_ip 83.123.103.100 185829 port 281 185829 unique_id port 185829 remote_ip 10.8.0.206 185832 username mostafa_es78 185832 kill_reason Another user logged on this global unique id 185832 mac 185832 bytes_out 0 185832 bytes_in 0 185832 station_ip 83.122.217.167 185832 port 269 185832 unique_id port 185832 remote_ip 10.8.0.34 185834 username morteza4424 185834 mac 185834 bytes_out 1926 185834 bytes_in 4179 185834 station_ip 83.123.103.100 185834 port 281 185834 unique_id port 185834 remote_ip 10.8.0.206 185837 username morteza4424 185837 mac 185837 bytes_out 0 185837 bytes_in 0 185837 station_ip 83.123.103.100 185837 port 281 185837 unique_id port 185837 remote_ip 10.8.0.206 185839 username morteza4424 185839 mac 185839 bytes_out 0 185839 bytes_in 0 185839 station_ip 83.123.103.100 185839 port 281 185839 unique_id port 185839 remote_ip 10.8.0.206 185841 username barzegar 185841 mac 185841 bytes_out 6314 185841 bytes_in 7520 185841 station_ip 5.120.116.130 185841 port 284 185841 unique_id port 185841 remote_ip 10.8.0.10 185845 username morteza4424 185845 mac 185845 bytes_out 0 185845 bytes_in 0 185845 station_ip 83.123.103.100 185845 port 281 185845 unique_id port 185845 remote_ip 10.8.0.206 185847 username barzegar 185847 mac 185847 bytes_out 0 185847 bytes_in 0 185847 station_ip 5.120.116.130 185847 port 281 185847 unique_id port 185847 remote_ip 10.8.0.10 185849 username pourshad 185849 mac 185849 bytes_out 55494 185849 bytes_in 432865 185849 station_ip 5.119.107.197 185849 port 283 185849 unique_id port 185849 remote_ip 10.8.0.42 185856 username aminvpn 185856 mac 185856 bytes_out 206937 185856 bytes_in 2610230 185856 station_ip 5.120.116.94 185856 port 288 185856 unique_id port 185856 remote_ip 10.8.0.58 185857 username zahra1101 185857 mac 185857 bytes_out 0 185857 bytes_in 0 185857 station_ip 5.119.39.79 185857 port 279 185857 unique_id port 185857 remote_ip 10.8.0.250 185862 username mosi 185865 remote_ip 10.8.0.42 185828 remote_ip 10.8.0.66 185830 username zahra1101 185830 mac 185830 bytes_out 157907 185830 bytes_in 292358 185830 station_ip 5.119.39.79 185830 port 291 185830 unique_id port 185830 remote_ip 10.8.0.250 185835 username zahra1101 185835 mac 185835 bytes_out 0 185835 bytes_in 0 185835 station_ip 5.119.39.79 185835 port 281 185835 unique_id port 185835 remote_ip 10.8.0.250 185838 username morteza4424 185838 mac 185838 bytes_out 0 185838 bytes_in 0 185838 station_ip 83.123.103.100 185838 port 281 185838 unique_id port 185838 remote_ip 10.8.0.206 185840 username rashidi4690 185840 mac 185840 bytes_out 492528 185840 bytes_in 1443535 185840 station_ip 5.120.159.33 185840 port 283 185840 unique_id port 185840 remote_ip 10.8.0.242 185842 username morteza4424 185842 mac 185842 bytes_out 0 185842 bytes_in 0 185842 station_ip 83.123.103.100 185842 port 281 185842 unique_id port 185842 remote_ip 10.8.0.206 185843 username morteza4424 185843 mac 185843 bytes_out 0 185843 bytes_in 0 185843 station_ip 83.123.103.100 185843 port 283 185843 unique_id port 185843 remote_ip 10.8.0.206 185844 username pourshad 185844 mac 185844 bytes_out 0 185844 bytes_in 0 185844 station_ip 5.119.107.197 185844 port 281 185844 unique_id port 185844 remote_ip 10.8.0.42 185848 username zahra1101 185848 mac 185848 bytes_out 0 185848 bytes_in 0 185848 station_ip 5.119.39.79 185848 port 284 185848 unique_id port 185848 remote_ip 10.8.0.250 185850 username morteza4424 185850 mac 185850 bytes_out 0 185850 bytes_in 0 185850 station_ip 83.123.103.100 185850 port 286 185850 unique_id port 185850 remote_ip 10.8.0.206 185852 username mosi 185852 mac 185852 bytes_out 2738282 185852 bytes_in 23480677 185852 station_ip 37.137.143.158 185852 port 289 185852 unique_id port 185852 remote_ip 10.8.0.142 185853 username aminvpn 185853 mac 185853 bytes_out 405036 185853 bytes_in 858047 185853 station_ip 5.120.116.94 185853 port 288 185853 unique_id port 185853 remote_ip 10.8.0.58 185858 username barzegar 185858 mac 185858 bytes_out 0 185858 bytes_in 0 185858 station_ip 5.120.116.130 185858 port 279 185858 unique_id port 185858 remote_ip 10.8.0.10 185861 username saeed9658 185861 mac 185861 bytes_out 1191378 185861 bytes_in 4922457 185861 station_ip 5.119.117.241 185861 port 262 185861 unique_id port 185861 remote_ip 10.8.0.162 185866 username zahra1101 185866 mac 185866 bytes_out 0 185866 bytes_in 0 185866 station_ip 5.119.39.79 185866 port 290 185866 unique_id port 185866 remote_ip 10.8.0.250 185868 username aminvpn 185868 mac 185868 bytes_out 0 185868 bytes_in 0 185868 station_ip 5.119.193.69 185868 port 281 185868 unique_id port 185868 remote_ip 10.8.0.58 185870 username morteza4424 185870 mac 185870 bytes_out 22201842 185870 bytes_in 1158958 185870 station_ip 83.123.103.100 185870 port 279 185870 unique_id port 185870 remote_ip 10.8.0.206 185871 username sabaghnezhad 185871 mac 185871 bytes_out 11266 185871 bytes_in 20681 185871 station_ip 5.208.17.168 185871 port 288 185871 unique_id port 185871 remote_ip 10.8.0.66 185873 username morteza4424 185873 mac 185873 bytes_out 1551476 185873 bytes_in 99440 185873 station_ip 83.123.103.100 185873 port 279 185873 unique_id port 185873 remote_ip 10.8.0.206 185874 username aminvpn 185874 unique_id port 185874 terminate_cause Lost-Carrier 185874 bytes_out 150083 185874 bytes_in 111326 185874 station_ip 83.123.123.78 185874 port 15729005 185874 nas_port_type Virtual 185862 kill_reason Another user logged on this global unique id 185862 mac 185862 bytes_out 0 185862 bytes_in 0 185862 station_ip 37.137.143.158 185862 port 286 185862 unique_id port 185862 remote_ip 10.8.0.142 185863 username mostafa_es78 185863 kill_reason Another user logged on this global unique id 185863 mac 185863 bytes_out 0 185863 bytes_in 0 185863 station_ip 83.122.217.167 185863 port 269 185863 unique_id port 185864 username yaghobi 185864 mac 185864 bytes_out 87702 185864 bytes_in 127040 185864 station_ip 83.123.64.1 185864 port 284 185864 unique_id port 185864 remote_ip 10.8.0.138 185867 username pourshad 185867 mac 185867 bytes_out 13647 185867 bytes_in 18588 185867 station_ip 5.119.107.197 185867 port 284 185867 unique_id port 185867 remote_ip 10.8.0.42 185869 username mosi 185869 mac 185869 bytes_out 0 185869 bytes_in 0 185869 station_ip 37.137.143.158 185869 port 286 185869 unique_id port 185872 username yaghobi 185872 mac 185872 bytes_out 120274 185872 bytes_in 178001 185872 station_ip 83.123.9.169 185872 port 283 185872 unique_id port 185872 remote_ip 10.8.0.138 185875 username yaghobi 185875 mac 185875 bytes_out 23405 185875 bytes_in 31226 185875 station_ip 83.123.9.169 185875 port 286 185875 unique_id port 185875 remote_ip 10.8.0.138 185877 username mosi 185877 kill_reason Another user logged on this global unique id 185877 mac 185877 bytes_out 0 185877 bytes_in 0 185877 station_ip 151.235.79.93 185877 port 281 185877 unique_id port 185877 remote_ip 10.8.0.142 185878 username barzegar 185878 mac 185878 bytes_out 0 185878 bytes_in 0 185878 station_ip 5.120.116.130 185878 port 286 185878 unique_id port 185878 remote_ip 10.8.0.10 185879 username morteza4424 185879 mac 185879 bytes_out 567162 185879 bytes_in 51787 185879 station_ip 83.123.103.100 185879 port 279 185879 unique_id port 185879 remote_ip 10.8.0.206 185881 username meysam 185881 mac 185881 bytes_out 693150 185881 bytes_in 7656035 185881 station_ip 188.159.251.171 185881 port 262 185881 unique_id port 185881 remote_ip 10.8.0.158 185884 username yaghobi 185884 mac 185884 bytes_out 131732 185884 bytes_in 216769 185884 station_ip 83.123.109.122 185884 port 283 185884 unique_id port 185884 remote_ip 10.8.0.138 185890 username pourshad 185890 mac 185890 bytes_out 7974 185890 bytes_in 7149 185890 station_ip 5.119.107.197 185890 port 283 185890 unique_id port 185890 remote_ip 10.8.0.42 185893 username rashidi4690 185893 mac 185893 bytes_out 48498 185893 bytes_in 77390 185893 station_ip 5.120.159.33 185893 port 284 185893 unique_id port 185893 remote_ip 10.8.0.242 185894 username mosi 185894 kill_reason Another user logged on this global unique id 185894 mac 185894 bytes_out 0 185894 bytes_in 0 185894 station_ip 151.235.79.93 185894 port 281 185894 unique_id port 185896 username pourshad 185896 mac 185896 bytes_out 612791 185896 bytes_in 4229065 185896 station_ip 5.119.107.197 185896 port 283 185896 unique_id port 185896 remote_ip 10.8.0.42 185903 username barzegar 185903 mac 185903 bytes_out 25233 185903 bytes_in 33721 185903 station_ip 5.120.116.130 185903 port 289 185903 unique_id port 185903 remote_ip 10.8.0.10 185908 username malekpoir 185908 mac 185908 bytes_out 3260274 185908 bytes_in 36640179 185908 station_ip 5.120.139.23 185908 port 273 185908 unique_id port 185908 remote_ip 10.8.0.18 185910 username aminvpn 185910 kill_reason Maximum check online fails reached 185910 mac 185910 bytes_out 0 185910 bytes_in 0 185910 station_ip 5.119.193.69 185874 remote_ip 5.5.5.145 185882 username rashidi4690 185882 mac 185882 bytes_out 722044 185882 bytes_in 2691059 185882 station_ip 5.120.159.33 185882 port 289 185882 unique_id port 185882 remote_ip 10.8.0.242 185885 username soleymani5056 185885 mac 185885 bytes_out 126338 185885 bytes_in 193104 185885 station_ip 5.119.197.122 185885 port 278 185885 unique_id port 185885 remote_ip 10.8.0.226 185891 username zahra1101 185891 mac 185891 bytes_out 0 185891 bytes_in 0 185891 station_ip 5.119.39.79 185891 port 284 185891 unique_id port 185891 remote_ip 10.8.0.250 185898 username sedighe 185898 mac 185898 bytes_out 366349 185898 bytes_in 705685 185898 station_ip 83.123.33.220 185898 port 282 185898 unique_id port 185898 remote_ip 10.8.0.46 185899 username zahra1101 185899 mac 185899 bytes_out 5410 185899 bytes_in 6297 185899 station_ip 5.119.39.79 185899 port 290 185899 unique_id port 185899 remote_ip 10.8.0.250 185901 username barzegar 185901 kill_reason Maximum number of concurrent logins reached 185901 mac 185901 bytes_out 0 185901 bytes_in 0 185901 station_ip 5.120.116.130 185901 port 282 185901 unique_id port 185904 username fezealinaghi 185904 mac 185904 bytes_out 475052 185904 bytes_in 885599 185904 station_ip 83.123.35.222 185904 port 280 185904 unique_id port 185904 remote_ip 10.8.0.202 185909 username morteza4424 185909 kill_reason Another user logged on this global unique id 185909 mac 185909 bytes_out 0 185909 bytes_in 0 185909 station_ip 83.123.103.100 185909 port 262 185909 unique_id port 185909 remote_ip 10.8.0.206 185912 username mosi 185912 kill_reason Another user logged on this global unique id 185912 mac 185912 bytes_out 0 185912 bytes_in 0 185912 station_ip 151.235.79.93 185912 port 281 185912 unique_id port 185915 username soleymani5056 185915 mac 185915 bytes_out 27002 185915 bytes_in 25487 185915 station_ip 5.119.174.153 185915 port 262 185915 unique_id port 185915 remote_ip 10.8.0.226 185921 username esmaeilkazemi 185921 mac 185921 bytes_out 28286 185921 bytes_in 206994 185921 station_ip 83.123.33.157 185921 port 262 185921 unique_id port 185921 remote_ip 10.8.0.26 185923 username sabaghnezhad 185923 mac 185923 bytes_out 237354 185923 bytes_in 286702 185923 station_ip 5.208.17.168 185923 port 280 185923 unique_id port 185923 remote_ip 10.8.0.66 185924 username morteza4424 185924 mac 185924 bytes_out 29545583 185924 bytes_in 8209673 185924 station_ip 83.123.67.147 185924 port 282 185924 unique_id port 185924 remote_ip 10.8.0.206 185925 username pourshad 185925 mac 185925 bytes_out 5374331 185925 bytes_in 13117985 185925 station_ip 5.119.107.197 185925 port 279 185925 unique_id port 185925 remote_ip 10.8.0.42 185929 username zahra1101 185929 mac 185929 bytes_out 0 185929 bytes_in 0 185929 station_ip 5.119.39.79 185929 port 282 185929 unique_id port 185929 remote_ip 10.8.0.250 185933 username sabaghnezhad 185933 mac 185933 bytes_out 9767 185933 bytes_in 15415 185933 station_ip 5.208.17.168 185933 port 280 185933 unique_id port 185933 remote_ip 10.8.0.66 185937 username saeed9658 185937 mac 185937 bytes_out 545332 185937 bytes_in 5572143 185937 station_ip 5.119.251.51 185937 port 288 185937 unique_id port 185937 remote_ip 10.8.0.162 185940 username sabaghnezhad 185940 mac 185940 bytes_out 10567 185940 bytes_in 20043 185940 station_ip 5.208.17.168 185940 port 289 185940 unique_id port 185940 remote_ip 10.8.0.66 185942 username zahra1101 185942 kill_reason Maximum check online fails reached 185942 mac 185942 bytes_out 0 185876 username sabaghnezhad 185876 mac 185876 bytes_out 9576 185876 bytes_in 13315 185876 station_ip 5.208.17.168 185876 port 284 185876 unique_id port 185876 remote_ip 10.8.0.66 185880 username zahra1101 185880 mac 185880 bytes_out 0 185880 bytes_in 0 185880 station_ip 5.119.39.79 185880 port 284 185880 unique_id port 185880 remote_ip 10.8.0.250 185883 username morteza4424 185883 mac 185883 bytes_out 0 185883 bytes_in 0 185883 station_ip 83.123.103.100 185883 port 279 185883 unique_id port 185883 remote_ip 10.8.0.206 185886 username motamedi9772 185886 mac 185886 bytes_out 0 185886 bytes_in 0 185886 station_ip 83.123.80.199 185886 port 284 185886 unique_id port 185886 remote_ip 10.8.0.154 185887 username sabaghnezhad 185887 mac 185887 bytes_out 7497 185887 bytes_in 12406 185887 station_ip 5.208.17.168 185887 port 279 185887 unique_id port 185887 remote_ip 10.8.0.66 185888 username mosi 185888 kill_reason Another user logged on this global unique id 185888 mac 185888 bytes_out 0 185888 bytes_in 0 185888 station_ip 151.235.79.93 185888 port 281 185888 unique_id port 185889 username aminvpn 185889 mac 185889 bytes_out 0 185889 bytes_in 0 185889 station_ip 5.119.193.69 185889 port 284 185889 unique_id port 185889 remote_ip 10.8.0.58 185892 username barzegar 185892 mac 185892 bytes_out 0 185892 bytes_in 0 185892 station_ip 5.120.116.130 185892 port 288 185892 unique_id port 185892 remote_ip 10.8.0.10 185895 username motamedi9772 185895 mac 185895 bytes_out 569303 185895 bytes_in 1470344 185895 station_ip 83.123.80.199 185895 port 278 185895 unique_id port 185895 remote_ip 10.8.0.154 185897 username sabaghnezhad 185897 mac 185897 bytes_out 15207 185897 bytes_in 21110 185897 station_ip 5.208.17.168 185897 port 279 185897 unique_id port 185897 remote_ip 10.8.0.66 185900 username khorasani9135 185900 mac 185900 bytes_out 1266731 185900 bytes_in 14015433 185900 station_ip 83.123.12.190 185900 port 286 185900 unique_id port 185900 remote_ip 10.8.0.126 185902 username motamedi9772 185902 mac 185902 bytes_out 7079648 185902 bytes_in 297153 185902 station_ip 83.123.80.199 185902 port 291 185902 unique_id port 185902 remote_ip 10.8.0.154 185905 username aminvpn 185905 mac 185905 bytes_out 0 185905 bytes_in 0 185905 station_ip 5.119.193.69 185905 port 283 185905 unique_id port 185905 remote_ip 10.8.0.58 185906 username meysam 185906 mac 185906 bytes_out 1355641 185906 bytes_in 15846233 185906 station_ip 188.159.251.171 185906 port 284 185906 unique_id port 185906 remote_ip 10.8.0.158 185907 username zahra1101 185907 kill_reason Maximum check online fails reached 185907 mac 185907 bytes_out 0 185907 bytes_in 0 185907 station_ip 5.119.39.79 185907 port 286 185907 unique_id port 185913 username motamedi9772 185913 mac 185913 bytes_out 105393 185913 bytes_in 1271228 185913 station_ip 83.123.80.199 185913 port 289 185913 unique_id port 185913 remote_ip 10.8.0.154 185914 username morteza4424 185914 mac 185914 bytes_out 0 185914 bytes_in 0 185914 station_ip 83.123.103.100 185914 port 262 185914 unique_id port 185916 username dortaj3792 185916 mac 185916 bytes_out 183371 185916 bytes_in 833979 185916 station_ip 5.120.53.29 185916 port 273 185916 unique_id port 185916 remote_ip 10.8.0.102 185917 username esmaeilkazemi 185917 mac 185917 bytes_out 0 185917 bytes_in 0 185917 station_ip 83.123.33.157 185917 port 262 185917 unique_id port 185917 remote_ip 10.8.0.26 185918 username esmaeilkazemi 185910 port 283 185910 unique_id port 185911 username saeeddamghani 185911 mac 185911 bytes_out 71729 185911 bytes_in 142033 185911 station_ip 217.60.175.202 185911 port 282 185911 unique_id port 185911 remote_ip 10.8.0.122 185919 username zahra1101 185919 mac 185919 bytes_out 635999 185919 bytes_in 4167188 185919 station_ip 5.119.39.79 185919 port 284 185919 unique_id port 185919 remote_ip 10.8.0.250 185922 username zahra1101 185922 mac 185922 bytes_out 4743 185922 bytes_in 10878 185922 station_ip 5.119.39.79 185922 port 262 185922 unique_id port 185922 remote_ip 10.8.0.250 185928 username zahra1101 185928 mac 185928 bytes_out 23420 185928 bytes_in 44513 185928 station_ip 5.119.39.79 185928 port 282 185928 unique_id port 185928 remote_ip 10.8.0.250 185934 username zahra1101 185934 mac 185934 bytes_out 22496 185934 bytes_in 36418 185934 station_ip 5.119.39.79 185934 port 278 185934 unique_id port 185934 remote_ip 10.8.0.250 185935 username pourshad 185935 mac 185935 bytes_out 32937 185935 bytes_in 317234 185935 station_ip 5.119.107.197 185935 port 262 185935 unique_id port 185935 remote_ip 10.8.0.42 185936 username yaghobi 185936 mac 185936 bytes_out 40592 185936 bytes_in 49364 185936 station_ip 83.123.34.173 185936 port 280 185936 unique_id port 185936 remote_ip 10.8.0.138 185941 username aminvpn 185941 mac 185941 bytes_out 0 185941 bytes_in 0 185941 station_ip 5.119.193.69 185941 port 288 185941 unique_id port 185941 remote_ip 10.8.0.58 185943 username yaghobi 185943 mac 185943 bytes_out 49573 185943 bytes_in 65003 185943 station_ip 83.123.34.173 185943 port 262 185943 unique_id port 185943 remote_ip 10.8.0.138 185947 username zahra1101 185947 mac 185947 bytes_out 0 185947 bytes_in 0 185947 station_ip 5.119.39.79 185947 port 280 185947 unique_id port 185947 remote_ip 10.8.0.250 185950 username mosi 185950 kill_reason Another user logged on this global unique id 185950 mac 185950 bytes_out 0 185950 bytes_in 0 185950 station_ip 151.235.79.93 185950 port 281 185950 unique_id port 185955 username aminvpn 185955 mac 185955 bytes_out 0 185955 bytes_in 0 185955 station_ip 5.119.193.69 185955 port 284 185955 unique_id port 185955 remote_ip 10.8.0.58 185956 username zahra1101 185956 mac 185956 bytes_out 0 185956 bytes_in 0 185956 station_ip 5.119.39.79 185956 port 284 185956 unique_id port 185956 remote_ip 10.8.0.250 185958 username sekonji0496 185958 mac 185958 bytes_out 0 185958 bytes_in 0 185958 station_ip 83.123.109.126 185958 port 289 185958 unique_id port 185958 remote_ip 10.8.0.62 185964 username sekonji0496 185964 mac 185964 bytes_out 2779 185964 bytes_in 4767 185964 station_ip 83.123.109.126 185964 port 284 185964 unique_id port 185964 remote_ip 10.8.0.62 185965 username zahra1101 185965 mac 185965 bytes_out 0 185965 bytes_in 0 185965 station_ip 5.119.39.79 185965 port 284 185965 unique_id port 185965 remote_ip 10.8.0.250 185968 username zahra1101 185968 mac 185968 bytes_out 0 185968 bytes_in 0 185968 station_ip 5.119.39.79 185968 port 292 185968 unique_id port 185968 remote_ip 10.8.0.250 185969 username sekonji0496 185969 mac 185969 bytes_out 11032 185969 bytes_in 23820 185969 station_ip 83.123.109.126 185969 port 281 185969 unique_id port 185969 remote_ip 10.8.0.62 185972 username zahra1101 185972 mac 185972 bytes_out 0 185972 bytes_in 0 185972 station_ip 5.119.39.79 185972 port 292 185972 unique_id port 185972 remote_ip 10.8.0.250 185918 mac 185918 bytes_out 0 185918 bytes_in 0 185918 station_ip 83.123.33.157 185918 port 273 185918 unique_id port 185918 remote_ip 10.8.0.26 185920 username rashidi4690 185920 mac 185920 bytes_out 669207 185920 bytes_in 1943923 185920 station_ip 5.120.159.33 185920 port 288 185920 unique_id port 185920 remote_ip 10.8.0.242 185926 username aminvpn 185926 mac 185926 bytes_out 0 185926 bytes_in 0 185926 station_ip 5.119.193.69 185926 port 284 185926 unique_id port 185926 remote_ip 10.8.0.58 185927 username malekpoir 185927 mac 185927 bytes_out 35515 185927 bytes_in 40672 185927 station_ip 5.120.139.23 185927 port 290 185927 unique_id port 185927 remote_ip 10.8.0.18 185930 username sedighe 185930 mac 185930 bytes_out 165536 185930 bytes_in 218970 185930 station_ip 83.123.94.153 185930 port 278 185930 unique_id port 185930 remote_ip 10.8.0.46 185931 username mostafa_es78 185931 kill_reason Another user logged on this global unique id 185931 mac 185931 bytes_out 0 185931 bytes_in 0 185931 station_ip 83.122.217.167 185931 port 269 185931 unique_id port 185932 username khorasani9135 185932 mac 185932 bytes_out 260171 185932 bytes_in 2612722 185932 station_ip 83.123.12.190 185932 port 262 185932 unique_id port 185932 remote_ip 10.8.0.126 185938 username alikomsari 185938 kill_reason Another user logged on this global unique id 185938 mac 185938 bytes_out 0 185938 bytes_in 0 185938 station_ip 5.119.178.208 185938 port 276 185938 unique_id port 185938 remote_ip 10.8.0.214 185939 username khademi 185939 kill_reason Another user logged on this global unique id 185939 mac 185939 bytes_out 0 185939 bytes_in 0 185939 station_ip 83.123.73.154 185939 port 259 185939 unique_id port 185944 username sabaghnezhad 185944 mac 185944 bytes_out 6533 185944 bytes_in 21116 185944 station_ip 5.208.17.168 185944 port 280 185944 unique_id port 185944 remote_ip 10.8.0.66 185948 username sedighe 185948 mac 185948 bytes_out 10446 185948 bytes_in 12766 185948 station_ip 83.123.94.153 185948 port 282 185948 unique_id port 185948 remote_ip 10.8.0.46 185951 username shadkam 185951 mac 185951 bytes_out 0 185951 bytes_in 0 185951 station_ip 5.202.98.211 185951 port 290 185951 unique_id port 185951 remote_ip 10.8.0.74 185954 username zahra1101 185954 kill_reason Maximum check online fails reached 185954 mac 185954 bytes_out 0 185954 bytes_in 0 185954 station_ip 5.119.39.79 185954 port 282 185954 unique_id port 185962 username mosi 185962 mac 185962 bytes_out 0 185962 bytes_in 0 185962 station_ip 151.235.79.93 185962 port 281 185962 unique_id port 185963 username aminvpn 185963 unique_id port 185963 terminate_cause User-Request 185963 bytes_out 1800805 185963 bytes_in 31728909 185963 station_ip 5.119.199.66 185963 port 15729007 185963 nas_port_type Virtual 185963 remote_ip 5.5.5.143 185966 username sedighe 185966 mac 185966 bytes_out 42516 185966 bytes_in 52463 185966 station_ip 83.123.0.146 185966 port 289 185966 unique_id port 185966 remote_ip 10.8.0.46 185967 username soleymani5056 185967 mac 185967 bytes_out 61048 185967 bytes_in 482818 185967 station_ip 5.120.74.151 185967 port 280 185967 unique_id port 185967 remote_ip 10.8.0.226 185970 username sedighe 185970 mac 185970 bytes_out 2683 185970 bytes_in 8124 185970 station_ip 83.123.0.146 185970 port 289 185970 unique_id port 185970 remote_ip 10.8.0.46 185976 username sekonji0496 185976 mac 185976 bytes_out 2347 185976 bytes_in 4354 185976 station_ip 83.123.109.126 185976 port 291 185976 unique_id port 185942 bytes_in 0 185942 station_ip 5.119.39.79 185942 port 278 185942 unique_id port 185945 username zahra1101 185945 mac 185945 bytes_out 0 185945 bytes_in 0 185945 station_ip 5.119.39.79 185945 port 262 185945 unique_id port 185945 remote_ip 10.8.0.250 185946 username yaghobi 185946 kill_reason Maximum check online fails reached 185946 mac 185946 bytes_out 0 185946 bytes_in 0 185946 station_ip 83.123.34.173 185946 port 288 185946 unique_id port 185949 username zahra1101 185949 mac 185949 bytes_out 0 185949 bytes_in 0 185949 station_ip 5.119.39.79 185949 port 280 185949 unique_id port 185949 remote_ip 10.8.0.250 185952 username yaghobi 185952 mac 185952 bytes_out 102755 185952 bytes_in 108567 185952 station_ip 83.123.34.173 185952 port 262 185952 unique_id port 185952 remote_ip 10.8.0.138 185953 username meysam 185953 mac 185953 bytes_out 1808778 185953 bytes_in 11254096 185953 station_ip 188.158.50.240 185953 port 284 185953 unique_id port 185953 remote_ip 10.8.0.158 185957 username sekonji0496 185957 mac 185957 bytes_out 141345 185957 bytes_in 2093836 185957 station_ip 83.123.109.126 185957 port 289 185957 unique_id port 185957 remote_ip 10.8.0.62 185959 username zahra1101 185959 mac 185959 bytes_out 0 185959 bytes_in 0 185959 station_ip 5.119.39.79 185959 port 284 185959 unique_id port 185959 remote_ip 10.8.0.250 185960 username meysam 185960 mac 185960 bytes_out 536096 185960 bytes_in 5220565 185960 station_ip 188.158.50.240 185960 port 262 185960 unique_id port 185960 remote_ip 10.8.0.158 185961 username sedighe 185961 mac 185961 bytes_out 38362 185961 bytes_in 56657 185961 station_ip 83.123.94.153 185961 port 280 185961 unique_id port 185961 remote_ip 10.8.0.46 185971 username mosi 185971 mac 185971 bytes_out 13373 185971 bytes_in 13803 185971 station_ip 89.32.96.128 185971 port 291 185971 unique_id port 185971 remote_ip 10.8.0.142 185973 username yaghobi 185973 mac 185973 bytes_out 166452 185973 bytes_in 153566 185973 station_ip 83.123.34.173 185973 port 290 185973 unique_id port 185973 remote_ip 10.8.0.138 185974 username aminvpn 185974 mac 185974 bytes_out 0 185974 bytes_in 0 185974 station_ip 5.119.193.69 185974 port 290 185974 unique_id port 185974 remote_ip 10.8.0.58 185975 username mosi 185975 mac 185975 bytes_out 280093 185975 bytes_in 578520 185975 station_ip 151.235.79.93 185975 port 289 185975 unique_id port 185975 remote_ip 10.8.0.142 185979 username sekonji0496 185979 mac 185979 bytes_out 2365 185979 bytes_in 4289 185979 station_ip 83.123.109.126 185979 port 289 185979 unique_id port 185979 remote_ip 10.8.0.62 185981 username yaghobi 185981 mac 185981 bytes_out 9567 185981 bytes_in 12967 185981 station_ip 83.123.34.173 185981 port 290 185981 unique_id port 185981 remote_ip 10.8.0.138 185988 username sekonji0496 185988 mac 185988 bytes_out 0 185988 bytes_in 0 185988 station_ip 83.123.109.126 185988 port 281 185988 unique_id port 185988 remote_ip 10.8.0.62 185997 username shadkam 185997 mac 185997 bytes_out 0 185997 bytes_in 0 185997 station_ip 5.202.98.211 185997 port 273 185997 unique_id port 185997 remote_ip 10.8.0.74 186000 username mosi 186000 kill_reason Another user logged on this global unique id 186000 mac 186000 bytes_out 0 186000 bytes_in 0 186000 station_ip 151.235.79.93 186000 port 290 186000 unique_id port 186000 remote_ip 10.8.0.142 186002 username zahra1101 186002 mac 186002 bytes_out 0 186002 bytes_in 0 185976 remote_ip 10.8.0.62 185977 username malekpoir 185977 mac 185977 bytes_out 816998 185977 bytes_in 8049559 185977 station_ip 5.120.139.23 185977 port 279 185977 unique_id port 185977 remote_ip 10.8.0.18 185978 username mosi 185978 mac 185978 bytes_out 0 185978 bytes_in 0 185978 station_ip 89.32.111.147 185978 port 292 185978 unique_id port 185978 remote_ip 10.8.0.142 185983 username mosi 185983 mac 185983 bytes_out 39953 185983 bytes_in 52288 185983 station_ip 151.235.79.93 185983 port 279 185983 unique_id port 185983 remote_ip 10.8.0.142 185985 username zahra1101 185985 mac 185985 bytes_out 0 185985 bytes_in 0 185985 station_ip 5.119.39.79 185985 port 279 185985 unique_id port 185985 remote_ip 10.8.0.250 185989 username rashidi4690 185989 mac 185989 bytes_out 759720 185989 bytes_in 1650437 185989 station_ip 5.120.159.33 185989 port 273 185989 unique_id port 185989 remote_ip 10.8.0.242 185991 username aminvpn 185991 mac 185991 bytes_out 0 185991 bytes_in 0 185991 station_ip 5.119.193.69 185991 port 292 185991 unique_id port 185991 remote_ip 10.8.0.58 185992 username hatami 185992 mac 185992 bytes_out 9433 185992 bytes_in 13933 185992 station_ip 151.235.127.48 185992 port 273 185992 unique_id port 185992 remote_ip 10.8.0.98 185994 username zahra1101 185994 mac 185994 bytes_out 0 185994 bytes_in 0 185994 station_ip 5.119.39.79 185994 port 273 185994 unique_id port 185994 remote_ip 10.8.0.250 186001 username zahra1101 186001 mac 186001 bytes_out 0 186001 bytes_in 0 186001 station_ip 5.119.39.79 186001 port 273 186001 unique_id port 186001 remote_ip 10.8.0.250 186003 username sekonji0496 186003 mac 186003 bytes_out 11368 186003 bytes_in 16734 186003 station_ip 83.123.109.126 186003 port 281 186003 unique_id port 186003 remote_ip 10.8.0.62 186009 username rashidi4690 186009 mac 186009 bytes_out 242303 186009 bytes_in 892629 186009 station_ip 5.120.159.33 186009 port 281 186009 unique_id port 186009 remote_ip 10.8.0.242 186010 username zahra1101 186010 mac 186010 bytes_out 0 186010 bytes_in 0 186010 station_ip 5.119.39.79 186010 port 281 186010 unique_id port 186010 remote_ip 10.8.0.250 186016 username soleymani5056 186016 mac 186016 bytes_out 1979585 186016 bytes_in 2296856 186016 station_ip 5.119.211.68 186016 port 273 186016 unique_id port 186016 remote_ip 10.8.0.226 186022 username zahra1101 186022 mac 186022 bytes_out 0 186022 bytes_in 0 186022 station_ip 5.119.39.79 186022 port 281 186022 unique_id port 186022 remote_ip 10.8.0.250 186023 username mohammadjavad 186023 mac 186023 bytes_out 0 186023 bytes_in 0 186023 station_ip 83.123.1.70 186023 port 281 186023 unique_id port 186023 remote_ip 10.8.0.110 186028 username sekonji0496 186028 mac 186028 bytes_out 34879 186028 bytes_in 225939 186028 station_ip 83.123.109.126 186028 port 279 186028 unique_id port 186028 remote_ip 10.8.0.62 186031 username aminvpn 186031 mac 186031 bytes_out 0 186031 bytes_in 0 186031 station_ip 5.119.193.69 186031 port 292 186031 unique_id port 186031 remote_ip 10.8.0.58 186033 username zahra1101 186033 mac 186033 bytes_out 270278 186033 bytes_in 1823382 186033 station_ip 5.119.39.79 186033 port 281 186033 unique_id port 186033 remote_ip 10.8.0.250 186034 username sedighe 186034 mac 186034 bytes_out 20922 186034 bytes_in 8740 186034 station_ip 83.123.52.70 186034 port 279 186034 unique_id port 186034 remote_ip 10.8.0.46 186040 username khademi 185980 username sedighe 185980 mac 185980 bytes_out 55951 185980 bytes_in 78745 185980 station_ip 83.123.50.23 185980 port 281 185980 unique_id port 185980 remote_ip 10.8.0.46 185982 username sekonji0496 185982 mac 185982 bytes_out 0 185982 bytes_in 0 185982 station_ip 83.123.109.126 185982 port 281 185982 unique_id port 185982 remote_ip 10.8.0.62 185984 username mosi 185984 mac 185984 bytes_out 0 185984 bytes_in 0 185984 station_ip 37.156.159.182 185984 port 281 185984 unique_id port 185984 remote_ip 10.8.0.142 185986 username sekonji0496 185986 mac 185986 bytes_out 0 185986 bytes_in 0 185986 station_ip 83.123.109.126 185986 port 281 185986 unique_id port 185986 remote_ip 10.8.0.62 185987 username hatami 185987 mac 185987 bytes_out 293024 185987 bytes_in 3201653 185987 station_ip 151.235.127.48 185987 port 279 185987 unique_id port 185987 remote_ip 10.8.0.98 185990 username mohammadjavad 185990 kill_reason Another user logged on this global unique id 185990 mac 185990 bytes_out 0 185990 bytes_in 0 185990 station_ip 83.123.1.70 185990 port 262 185990 unique_id port 185990 remote_ip 10.8.0.110 185993 username saeed9658 185993 mac 185993 bytes_out 3331426 185993 bytes_in 31186062 185993 station_ip 5.119.251.51 185993 port 284 185993 unique_id port 185993 remote_ip 10.8.0.162 185995 username shadkam 185995 mac 185995 bytes_out 0 185995 bytes_in 0 185995 station_ip 5.202.98.211 185995 port 273 185995 unique_id port 185995 remote_ip 10.8.0.74 185996 username sekonji0496 185996 mac 185996 bytes_out 0 185996 bytes_in 0 185996 station_ip 83.123.109.126 185996 port 279 185996 unique_id port 185996 remote_ip 10.8.0.62 185998 username khademi 185998 kill_reason Another user logged on this global unique id 185998 mac 185998 bytes_out 0 185998 bytes_in 0 185998 station_ip 83.123.73.154 185998 port 259 185998 unique_id port 185999 username shadkam 185999 mac 185999 bytes_out 0 185999 bytes_in 0 185999 station_ip 5.202.98.211 185999 port 273 185999 unique_id port 185999 remote_ip 10.8.0.74 186004 username sedighe 186004 mac 186004 bytes_out 132972 186004 bytes_in 197964 186004 station_ip 83.123.75.117 186004 port 289 186004 unique_id port 186004 remote_ip 10.8.0.46 186005 username aminvpn 186005 mac 186005 bytes_out 0 186005 bytes_in 0 186005 station_ip 5.119.193.69 186005 port 289 186005 unique_id port 186005 remote_ip 10.8.0.58 186007 username saeed9658 186007 mac 186007 bytes_out 54563 186007 bytes_in 83119 186007 station_ip 5.119.251.51 186007 port 289 186007 unique_id port 186007 remote_ip 10.8.0.162 186011 username mohammadjavad 186011 mac 186011 bytes_out 0 186011 bytes_in 0 186011 station_ip 83.123.1.70 186011 port 262 186011 unique_id port 186013 username zahra1101 186013 mac 186013 bytes_out 0 186013 bytes_in 0 186013 station_ip 5.119.39.79 186013 port 284 186013 unique_id port 186013 remote_ip 10.8.0.250 186015 username mosi 186015 kill_reason Another user logged on this global unique id 186015 mac 186015 bytes_out 0 186015 bytes_in 0 186015 station_ip 151.235.79.93 186015 port 290 186015 unique_id port 186019 username zahra1101 186019 mac 186019 bytes_out 0 186019 bytes_in 0 186019 station_ip 5.119.39.79 186019 port 262 186019 unique_id port 186019 remote_ip 10.8.0.250 186024 username sedighe 186024 mac 186024 bytes_out 92271 186024 bytes_in 163770 186024 station_ip 83.123.52.70 186024 port 273 186024 unique_id port 186024 remote_ip 10.8.0.46 186026 username mohammadjavad 186002 station_ip 5.119.39.79 186002 port 284 186002 unique_id port 186002 remote_ip 10.8.0.250 186006 username mohammadjavad 186006 kill_reason Another user logged on this global unique id 186006 mac 186006 bytes_out 0 186006 bytes_in 0 186006 station_ip 83.123.1.70 186006 port 262 186006 unique_id port 186008 username sedighe 186008 mac 186008 bytes_out 80001 186008 bytes_in 111245 186008 station_ip 83.123.52.70 186008 port 284 186008 unique_id port 186008 remote_ip 10.8.0.46 186012 username saeed9658 186012 mac 186012 bytes_out 5412 186012 bytes_in 11108 186012 station_ip 5.119.251.51 186012 port 289 186012 unique_id port 186012 remote_ip 10.8.0.162 186014 username zahra1101 186014 mac 186014 bytes_out 0 186014 bytes_in 0 186014 station_ip 5.119.39.79 186014 port 262 186014 unique_id port 186014 remote_ip 10.8.0.250 186017 username yaghobi 186017 mac 186017 bytes_out 315108 186017 bytes_in 1071084 186017 station_ip 83.123.34.173 186017 port 279 186017 unique_id port 186017 remote_ip 10.8.0.138 186018 username sedighe 186018 mac 186018 bytes_out 2698 186018 bytes_in 5686 186018 station_ip 83.123.52.70 186018 port 292 186018 unique_id port 186018 remote_ip 10.8.0.46 186020 username aminvpn 186020 mac 186020 bytes_out 0 186020 bytes_in 0 186020 station_ip 5.119.193.69 186020 port 279 186020 unique_id port 186020 remote_ip 10.8.0.58 186021 username khademi 186021 kill_reason Another user logged on this global unique id 186021 mac 186021 bytes_out 0 186021 bytes_in 0 186021 station_ip 83.123.73.154 186021 port 259 186021 unique_id port 186025 username zahra1101 186025 mac 186025 bytes_out 0 186025 bytes_in 0 186025 station_ip 5.119.39.79 186025 port 281 186025 unique_id port 186025 remote_ip 10.8.0.250 186027 username zahra1101 186027 mac 186027 bytes_out 0 186027 bytes_in 0 186027 station_ip 5.119.39.79 186027 port 281 186027 unique_id port 186027 remote_ip 10.8.0.250 186029 username sedighe 186029 mac 186029 bytes_out 1837 186029 bytes_in 4108 186029 station_ip 83.123.52.70 186029 port 273 186029 unique_id port 186029 remote_ip 10.8.0.46 186032 username akbari0070 186032 mac 186032 bytes_out 747822 186032 bytes_in 5363686 186032 station_ip 83.123.18.107 186032 port 273 186032 unique_id port 186032 remote_ip 10.8.0.166 186036 username mosi 186036 kill_reason Another user logged on this global unique id 186036 mac 186036 bytes_out 0 186036 bytes_in 0 186036 station_ip 151.235.79.93 186036 port 290 186036 unique_id port 186039 username zahra1101 186039 mac 186039 bytes_out 0 186039 bytes_in 0 186039 station_ip 5.119.39.79 186039 port 289 186039 unique_id port 186039 remote_ip 10.8.0.250 186041 username aminvpn 186041 mac 186041 bytes_out 1644 186041 bytes_in 4930 186041 station_ip 5.119.193.69 186041 port 281 186041 unique_id port 186041 remote_ip 10.8.0.58 186045 username zahra1101 186045 mac 186045 bytes_out 0 186045 bytes_in 0 186045 station_ip 5.119.39.79 186045 port 296 186045 unique_id port 186045 remote_ip 10.8.0.250 186047 username zahra1101 186047 mac 186047 bytes_out 0 186047 bytes_in 0 186047 station_ip 5.119.39.79 186047 port 296 186047 unique_id port 186047 remote_ip 10.8.0.250 186049 username aminvpn 186049 mac 186049 bytes_out 0 186049 bytes_in 0 186049 station_ip 5.119.193.69 186049 port 295 186049 unique_id port 186049 remote_ip 10.8.0.58 186051 username motamedi9772 186051 mac 186051 bytes_out 120570 186051 bytes_in 385569 186051 station_ip 83.123.106.131 186026 mac 186026 bytes_out 0 186026 bytes_in 0 186026 station_ip 83.123.1.70 186026 port 273 186026 unique_id port 186026 remote_ip 10.8.0.110 186030 username aminvpn 186030 mac 186030 bytes_out 0 186030 bytes_in 0 186030 station_ip 5.119.193.69 186030 port 289 186030 unique_id port 186030 remote_ip 10.8.0.58 186035 username saeeddamghani 186035 mac 186035 bytes_out 132592 186035 bytes_in 1162102 186035 station_ip 217.60.175.202 186035 port 289 186035 unique_id port 186035 remote_ip 10.8.0.122 186037 username zahra1101 186037 mac 186037 bytes_out 0 186037 bytes_in 0 186037 station_ip 5.119.39.79 186037 port 281 186037 unique_id port 186037 remote_ip 10.8.0.250 186038 username pourshad 186038 mac 186038 bytes_out 99224 186038 bytes_in 192014 186038 station_ip 5.120.221.88 186038 port 284 186038 unique_id port 186038 remote_ip 10.8.0.42 186042 username mohammadjavad 186042 mac 186042 bytes_out 0 186042 bytes_in 0 186042 station_ip 83.123.1.70 186042 port 294 186042 unique_id port 186042 remote_ip 10.8.0.110 186044 username zahra1101 186044 mac 186044 bytes_out 0 186044 bytes_in 0 186044 station_ip 5.119.39.79 186044 port 295 186044 unique_id port 186044 remote_ip 10.8.0.250 186046 username mohammadjavad 186046 mac 186046 bytes_out 0 186046 bytes_in 0 186046 station_ip 83.123.1.70 186046 port 295 186046 unique_id port 186046 remote_ip 10.8.0.110 186048 username akbari0070 186048 mac 186048 bytes_out 980169 186048 bytes_in 6797351 186048 station_ip 83.123.18.107 186048 port 292 186048 unique_id port 186048 remote_ip 10.8.0.166 186053 username zahra1101 186053 mac 186053 bytes_out 0 186053 bytes_in 0 186053 station_ip 5.119.39.79 186053 port 294 186053 unique_id port 186053 remote_ip 10.8.0.250 186056 username sedighe 186056 mac 186056 bytes_out 10198 186056 bytes_in 16068 186056 station_ip 83.123.52.70 186056 port 294 186056 unique_id port 186056 remote_ip 10.8.0.46 186058 username houshang 186058 mac 186058 bytes_out 1459098 186058 bytes_in 18960536 186058 station_ip 5.120.54.164 186058 port 289 186058 unique_id port 186058 remote_ip 10.8.0.82 186059 username godarzi 186059 mac 186059 bytes_out 1098156 186059 bytes_in 2623906 186059 station_ip 78.39.127.51 186059 port 279 186059 unique_id port 186059 remote_ip 10.8.0.38 186063 username zahra1101 186063 mac 186063 bytes_out 0 186063 bytes_in 0 186063 station_ip 5.119.39.79 186063 port 279 186063 unique_id port 186063 remote_ip 10.8.0.250 186065 username aminvpn 186065 mac 186065 bytes_out 0 186065 bytes_in 0 186065 station_ip 5.119.193.69 186065 port 279 186065 unique_id port 186065 remote_ip 10.8.0.58 186066 username soleymani5056 186066 mac 186066 bytes_out 60543 186066 bytes_in 39784 186066 station_ip 5.119.153.222 186066 port 269 186066 unique_id port 186066 remote_ip 10.8.0.226 186070 username Mahin 186070 kill_reason Relative expiration date has reached 186070 mac 186070 bytes_out 0 186070 bytes_in 0 186070 station_ip 5.120.166.217 186070 port 279 186070 unique_id port 186072 username akbari0070 186072 mac 186072 bytes_out 0 186072 bytes_in 0 186072 station_ip 83.123.18.107 186072 port 279 186072 unique_id port 186072 remote_ip 10.8.0.166 186076 username zahra1101 186076 mac 186076 bytes_out 0 186076 bytes_in 0 186076 station_ip 5.119.39.79 186076 port 269 186076 unique_id port 186076 remote_ip 10.8.0.250 186079 username mosi 186079 kill_reason Another user logged on this global unique id 186079 mac 186040 kill_reason Another user logged on this global unique id 186040 mac 186040 bytes_out 0 186040 bytes_in 0 186040 station_ip 83.123.73.154 186040 port 259 186040 unique_id port 186043 username motamedi9772 186043 mac 186043 bytes_out 0 186043 bytes_in 0 186043 station_ip 83.123.106.131 186043 port 294 186043 unique_id port 186043 remote_ip 10.8.0.154 186050 username hadibarzegar 186050 kill_reason Another user logged on this global unique id 186050 mac 186050 bytes_out 0 186050 bytes_in 0 186050 station_ip 83.123.66.233 186050 port 262 186050 unique_id port 186050 remote_ip 10.8.0.186 186052 username rezaei 186052 mac 186052 bytes_out 2399330 186052 bytes_in 22041165 186052 station_ip 5.120.153.203 186052 port 279 186052 unique_id port 186052 remote_ip 10.8.0.198 186054 username mohammadjavad 186054 mac 186054 bytes_out 20133 186054 bytes_in 210799 186054 station_ip 83.123.1.70 186054 port 295 186054 unique_id port 186054 remote_ip 10.8.0.110 186057 username pourshad 186057 mac 186057 bytes_out 447208 186057 bytes_in 5577563 186057 station_ip 5.120.221.88 186057 port 292 186057 unique_id port 186057 remote_ip 10.8.0.42 186060 username khademi 186060 kill_reason Another user logged on this global unique id 186060 mac 186060 bytes_out 0 186060 bytes_in 0 186060 station_ip 83.123.73.154 186060 port 259 186060 unique_id port 186061 username mostafa_es78 186061 mac 186061 bytes_out 0 186061 bytes_in 0 186061 station_ip 83.122.217.167 186061 port 269 186061 unique_id port 186068 username hajghani 186068 kill_reason Another user logged on this global unique id 186068 mac 186068 bytes_out 0 186068 bytes_in 0 186068 station_ip 92.114.79.48 186068 port 284 186068 unique_id port 186068 remote_ip 10.8.0.106 186071 username akbari0070 186071 mac 186071 bytes_out 426370 186071 bytes_in 1244767 186071 station_ip 83.123.18.107 186071 port 292 186071 unique_id port 186071 remote_ip 10.8.0.166 186074 username zahra1101 186074 mac 186074 bytes_out 3334 186074 bytes_in 5446 186074 station_ip 5.119.39.79 186074 port 269 186074 unique_id port 186074 remote_ip 10.8.0.250 186075 username alikomsari 186075 mac 186075 bytes_out 0 186075 bytes_in 0 186075 station_ip 5.119.178.208 186075 port 276 186075 unique_id port 186077 username hadibarzegar 186077 kill_reason Another user logged on this global unique id 186077 mac 186077 bytes_out 0 186077 bytes_in 0 186077 station_ip 83.123.66.233 186077 port 262 186077 unique_id port 186080 username aminvpn 186080 mac 186080 bytes_out 0 186080 bytes_in 0 186080 station_ip 5.119.193.69 186080 port 276 186080 unique_id port 186080 remote_ip 10.8.0.58 186084 username yaghobi 186084 mac 186084 bytes_out 11270 186084 bytes_in 5825 186084 station_ip 83.123.102.34 186084 port 276 186084 unique_id port 186084 remote_ip 10.8.0.138 186091 username aminvpn 186091 mac 186091 bytes_out 0 186091 bytes_in 0 186091 station_ip 5.119.193.69 186091 port 276 186091 unique_id port 186091 remote_ip 10.8.0.58 186094 username mosi 186094 kill_reason Another user logged on this global unique id 186094 mac 186094 bytes_out 0 186094 bytes_in 0 186094 station_ip 151.235.79.93 186094 port 290 186094 unique_id port 186102 username kordestani 186102 mac 186102 bytes_out 770401 186102 bytes_in 5522194 186102 station_ip 151.235.110.199 186102 port 292 186102 unique_id port 186102 remote_ip 10.8.0.130 186106 username zahra1101 186106 mac 186106 bytes_out 3665 186106 bytes_in 4747 186106 station_ip 5.119.39.79 186106 port 269 186106 unique_id port 186051 port 294 186051 unique_id port 186051 remote_ip 10.8.0.154 186055 username sedighe 186055 mac 186055 bytes_out 21757 186055 bytes_in 34142 186055 station_ip 83.123.52.70 186055 port 273 186055 unique_id port 186055 remote_ip 10.8.0.46 186062 username mohammadjavad 186062 mac 186062 bytes_out 0 186062 bytes_in 0 186062 station_ip 83.123.1.70 186062 port 269 186062 unique_id port 186062 remote_ip 10.8.0.110 186064 username jafari 186064 kill_reason Another user logged on this global unique id 186064 mac 186064 bytes_out 0 186064 bytes_in 0 186064 station_ip 5.62.205.13 186064 port 281 186064 unique_id port 186064 remote_ip 10.8.0.86 186067 username mohammadjavad 186067 mac 186067 bytes_out 18746 186067 bytes_in 17037 186067 station_ip 83.123.1.70 186067 port 289 186067 unique_id port 186067 remote_ip 10.8.0.110 186069 username aminvpn 186069 unique_id port 186069 terminate_cause Lost-Carrier 186069 bytes_out 152304 186069 bytes_in 365437 186069 station_ip 83.123.122.49 186069 port 15729008 186069 nas_port_type Virtual 186069 remote_ip 5.5.5.142 186073 username Mahin 186073 kill_reason Relative expiration date has reached 186073 mac 186073 bytes_out 0 186073 bytes_in 0 186073 station_ip 5.120.166.217 186073 port 279 186073 unique_id port 186078 username hajghani 186078 mac 186078 bytes_out 0 186078 bytes_in 0 186078 station_ip 92.114.79.48 186078 port 284 186078 unique_id port 186085 username zahra1101 186085 mac 186085 bytes_out 6464 186085 bytes_in 10758 186085 station_ip 5.119.39.79 186085 port 279 186085 unique_id port 186085 remote_ip 10.8.0.250 186086 username jafari 186086 kill_reason Another user logged on this global unique id 186086 mac 186086 bytes_out 0 186086 bytes_in 0 186086 station_ip 5.62.205.13 186086 port 281 186086 unique_id port 186089 username zahra1101 186089 mac 186089 bytes_out 0 186089 bytes_in 0 186089 station_ip 5.119.39.79 186089 port 276 186089 unique_id port 186089 remote_ip 10.8.0.250 186090 username aminvpn 186090 mac 186090 bytes_out 1903539 186090 bytes_in 10446294 186090 station_ip 5.120.116.94 186090 port 269 186090 unique_id port 186090 remote_ip 10.8.0.58 186092 username aminvpn 186092 mac 186092 bytes_out 0 186092 bytes_in 0 186092 station_ip 5.119.193.69 186092 port 269 186092 unique_id port 186092 remote_ip 10.8.0.58 186093 username sabaghnezhad 186093 mac 186093 bytes_out 245045 186093 bytes_in 1161366 186093 station_ip 5.208.17.168 186093 port 284 186093 unique_id port 186093 remote_ip 10.8.0.66 186096 username hadibarzegar 186096 mac 186096 bytes_out 0 186096 bytes_in 0 186096 station_ip 83.123.66.233 186096 port 262 186096 unique_id port 186098 username rashidi4690 186098 mac 186098 bytes_out 1654956 186098 bytes_in 13528616 186098 station_ip 5.119.122.199 186098 port 294 186098 unique_id port 186098 remote_ip 10.8.0.242 186099 username zahra1101 186099 mac 186099 bytes_out 560516 186099 bytes_in 3537015 186099 station_ip 5.119.39.79 186099 port 276 186099 unique_id port 186099 remote_ip 10.8.0.250 186103 username jafari 186103 kill_reason Another user logged on this global unique id 186103 mac 186103 bytes_out 0 186103 bytes_in 0 186103 station_ip 5.62.205.13 186103 port 281 186103 unique_id port 186104 username zahra1101 186104 mac 186104 bytes_out 3184 186104 bytes_in 4660 186104 station_ip 5.119.39.79 186104 port 269 186104 unique_id port 186104 remote_ip 10.8.0.250 186107 username malekpoir 186107 mac 186107 bytes_out 3890214 186107 bytes_in 29857308 186079 bytes_out 0 186079 bytes_in 0 186079 station_ip 151.235.79.93 186079 port 290 186079 unique_id port 186081 username zahra1101 186081 mac 186081 bytes_out 4214 186081 bytes_in 5351 186081 station_ip 5.119.39.79 186081 port 269 186081 unique_id port 186081 remote_ip 10.8.0.250 186082 username zahra1101 186082 mac 186082 bytes_out 3153 186082 bytes_in 5117 186082 station_ip 5.119.39.79 186082 port 276 186082 unique_id port 186082 remote_ip 10.8.0.250 186083 username zahra1101 186083 mac 186083 bytes_out 0 186083 bytes_in 0 186083 station_ip 5.119.39.79 186083 port 279 186083 unique_id port 186083 remote_ip 10.8.0.250 186087 username khademi 186087 kill_reason Another user logged on this global unique id 186087 mac 186087 bytes_out 0 186087 bytes_in 0 186087 station_ip 83.123.73.154 186087 port 259 186087 unique_id port 186088 username zahra1101 186088 mac 186088 bytes_out 3171 186088 bytes_in 6207 186088 station_ip 5.119.39.79 186088 port 276 186088 unique_id port 186088 remote_ip 10.8.0.250 186095 username yaghobi 186095 mac 186095 bytes_out 307102 186095 bytes_in 349770 186095 station_ip 83.123.102.34 186095 port 292 186095 unique_id port 186095 remote_ip 10.8.0.138 186097 username yaghobi 186097 mac 186097 bytes_out 0 186097 bytes_in 0 186097 station_ip 83.123.102.34 186097 port 284 186097 unique_id port 186097 remote_ip 10.8.0.138 186100 username aminvpn 186100 kill_reason Maximum check online fails reached 186100 mac 186100 bytes_out 0 186100 bytes_in 0 186100 station_ip 5.119.193.69 186100 port 276 186100 unique_id port 186101 username aminvpn 186101 mac 186101 bytes_out 1066349 186101 bytes_in 10364905 186101 station_ip 5.120.116.94 186101 port 269 186101 unique_id port 186101 remote_ip 10.8.0.58 186105 username jafari 186105 mac 186105 bytes_out 0 186105 bytes_in 0 186105 station_ip 5.62.205.13 186105 port 281 186105 unique_id port 186109 username aminvpn 186109 mac 186109 bytes_out 0 186109 bytes_in 0 186109 station_ip 5.119.193.69 186109 port 269 186109 unique_id port 186109 remote_ip 10.8.0.58 186115 username aminvpn 186115 unique_id port 186115 terminate_cause Lost-Carrier 186115 bytes_out 78785 186115 bytes_in 99972 186115 station_ip 83.123.91.98 186115 port 15729009 186115 nas_port_type Virtual 186115 remote_ip 5.5.5.141 186117 username akbari0070 186117 mac 186117 bytes_out 0 186117 bytes_in 0 186117 station_ip 83.123.36.223 186117 port 279 186117 unique_id port 186118 username aminvpn 186118 mac 186118 bytes_out 0 186118 bytes_in 0 186118 station_ip 5.119.193.69 186118 port 269 186118 unique_id port 186118 remote_ip 10.8.0.58 186124 username alihosseini1 186124 mac 186124 bytes_out 690590 186124 bytes_in 9191025 186124 station_ip 5.119.194.182 186124 port 269 186124 unique_id port 186124 remote_ip 10.8.0.70 186127 username aminvpn 186127 mac 186127 bytes_out 64071 186127 bytes_in 450580 186127 station_ip 5.119.193.69 186127 port 289 186127 unique_id port 186127 remote_ip 10.8.0.58 186138 username alirezazadeh 186138 unique_id port 186138 terminate_cause Lost-Carrier 186138 bytes_out 280081 186138 bytes_in 1496959 186138 station_ip 31.56.216.175 186138 port 15729019 186138 nas_port_type Virtual 186138 remote_ip 5.5.5.140 186140 username mosi 186140 kill_reason Another user logged on this global unique id 186140 mac 186140 bytes_out 0 186140 bytes_in 0 186140 station_ip 151.235.79.93 186140 port 290 186140 unique_id port 186144 username khorasani9135 186144 mac 186144 bytes_out 1818415 186106 remote_ip 10.8.0.250 186111 username aminvpn 186111 mac 186111 bytes_out 1644 186111 bytes_in 3471 186111 station_ip 5.119.193.69 186111 port 269 186111 unique_id port 186111 remote_ip 10.8.0.58 186113 username majidsarmast 186113 kill_reason Another user logged on this global unique id 186113 mac 186113 bytes_out 0 186113 bytes_in 0 186113 station_ip 86.57.81.208 186113 port 289 186113 unique_id port 186113 remote_ip 10.8.0.170 186120 username mostafa_es78 186120 mac 186120 bytes_out 2869270 186120 bytes_in 13124225 186120 station_ip 83.122.152.207 186120 port 262 186120 unique_id port 186120 remote_ip 10.8.0.34 186123 username sabaghnezhad 186123 mac 186123 bytes_out 161722 186123 bytes_in 169106 186123 station_ip 5.212.246.241 186123 port 291 186123 unique_id port 186123 remote_ip 10.8.0.66 186125 username aminvpn 186125 mac 186125 bytes_out 116926 186125 bytes_in 137840 186125 station_ip 5.120.116.94 186125 port 284 186125 unique_id port 186125 remote_ip 10.8.0.58 186129 username yaghobi 186129 mac 186129 bytes_out 123225 186129 bytes_in 183360 186129 station_ip 83.123.81.107 186129 port 269 186129 unique_id port 186129 remote_ip 10.8.0.138 186132 username hosseine 186132 kill_reason Another user logged on this global unique id 186132 mac 186132 bytes_out 0 186132 bytes_in 0 186132 station_ip 83.123.83.89 186132 port 293 186132 unique_id port 186132 remote_ip 10.8.0.54 186133 username zahra1101 186133 mac 186133 bytes_out 6107742 186133 bytes_in 14569793 186133 station_ip 5.120.91.167 186133 port 279 186133 unique_id port 186133 remote_ip 10.8.0.250 186135 username aminvpn 186135 mac 186135 bytes_out 0 186135 bytes_in 0 186135 station_ip 5.119.193.69 186135 port 279 186135 unique_id port 186135 remote_ip 10.8.0.58 186136 username zahra1101 186136 mac 186136 bytes_out 4467 186136 bytes_in 5247 186136 station_ip 5.120.91.167 186136 port 279 186136 unique_id port 186136 remote_ip 10.8.0.250 186137 username zahra1101 186137 mac 186137 bytes_out 0 186137 bytes_in 0 186137 station_ip 5.120.91.167 186137 port 279 186137 unique_id port 186137 remote_ip 10.8.0.250 186141 username zahra1101 186141 mac 186141 bytes_out 1650 186141 bytes_in 4724 186141 station_ip 5.120.91.167 186141 port 289 186141 unique_id port 186141 remote_ip 10.8.0.250 186142 username zahra1101 186142 mac 186142 bytes_out 0 186142 bytes_in 0 186142 station_ip 5.120.91.167 186142 port 289 186142 unique_id port 186142 remote_ip 10.8.0.250 186150 username sabaghnezhad 186150 kill_reason Maximum check online fails reached 186150 mac 186150 bytes_out 0 186150 bytes_in 0 186150 station_ip 5.212.246.241 186150 port 289 186150 unique_id port 186152 username zahra1101 186152 mac 186152 bytes_out 0 186152 bytes_in 0 186152 station_ip 5.120.91.167 186152 port 280 186152 unique_id port 186152 remote_ip 10.8.0.250 186157 username hosseine 186157 mac 186157 bytes_out 0 186157 bytes_in 0 186157 station_ip 83.123.83.89 186157 port 293 186157 unique_id port 186158 username zahra1101 186158 mac 186158 bytes_out 0 186158 bytes_in 0 186158 station_ip 5.120.91.167 186158 port 291 186158 unique_id port 186158 remote_ip 10.8.0.250 186159 username houshang 186159 mac 186159 bytes_out 879796 186159 bytes_in 4165319 186159 station_ip 5.119.117.59 186159 port 279 186159 unique_id port 186159 remote_ip 10.8.0.82 186160 username alihosseini1 186160 kill_reason Maximum check online fails reached 186160 mac 186160 bytes_out 0 186160 bytes_in 0 186160 station_ip 5.120.108.70 186107 station_ip 5.120.139.23 186107 port 291 186107 unique_id port 186107 remote_ip 10.8.0.18 186108 username zahra1101 186108 mac 186108 bytes_out 2825 186108 bytes_in 5261 186108 station_ip 5.119.39.79 186108 port 269 186108 unique_id port 186108 remote_ip 10.8.0.250 186110 username yaghobi 186110 mac 186110 bytes_out 1510295 186110 bytes_in 9332581 186110 station_ip 83.123.102.34 186110 port 262 186110 unique_id port 186110 remote_ip 10.8.0.138 186112 username aminvpn 186112 mac 186112 bytes_out 0 186112 bytes_in 0 186112 station_ip 5.119.193.69 186112 port 262 186112 unique_id port 186112 remote_ip 10.8.0.58 186114 username akbari0070 186114 kill_reason Another user logged on this global unique id 186114 mac 186114 bytes_out 0 186114 bytes_in 0 186114 station_ip 83.123.36.223 186114 port 279 186114 unique_id port 186114 remote_ip 10.8.0.166 186116 username rajaei 186116 kill_reason Another user logged on this global unique id 186116 mac 186116 bytes_out 0 186116 bytes_in 0 186116 station_ip 37.137.17.114 186116 port 284 186116 unique_id port 186116 remote_ip 10.8.0.210 186119 username rajaei 186119 mac 186119 bytes_out 0 186119 bytes_in 0 186119 station_ip 37.137.17.114 186119 port 284 186119 unique_id port 186121 username majidsarmast 186121 mac 186121 bytes_out 0 186121 bytes_in 0 186121 station_ip 86.57.81.208 186121 port 289 186121 unique_id port 186122 username mosi 186122 kill_reason Another user logged on this global unique id 186122 mac 186122 bytes_out 0 186122 bytes_in 0 186122 station_ip 151.235.79.93 186122 port 290 186122 unique_id port 186126 username alihosseini1 186126 mac 186126 bytes_out 0 186126 bytes_in 0 186126 station_ip 5.119.194.182 186126 port 284 186126 unique_id port 186126 remote_ip 10.8.0.70 186128 username alihosseini1 186128 mac 186128 bytes_out 17337 186128 bytes_in 32676 186128 station_ip 5.119.194.182 186128 port 284 186128 unique_id port 186128 remote_ip 10.8.0.70 186130 username alihosseini1 186130 mac 186130 bytes_out 3671 186130 bytes_in 5645 186130 station_ip 5.119.194.182 186130 port 284 186130 unique_id port 186130 remote_ip 10.8.0.70 186131 username yaghobi 186131 mac 186131 bytes_out 249143 186131 bytes_in 124017 186131 station_ip 83.123.99.167 186131 port 289 186131 unique_id port 186131 remote_ip 10.8.0.138 186134 username alihosseini1 186134 mac 186134 bytes_out 237958 186134 bytes_in 860135 186134 station_ip 5.119.194.182 186134 port 269 186134 unique_id port 186134 remote_ip 10.8.0.70 186139 username zahra1101 186139 mac 186139 bytes_out 0 186139 bytes_in 0 186139 station_ip 5.120.91.167 186139 port 289 186139 unique_id port 186139 remote_ip 10.8.0.250 186143 username mostafa_es78 186143 kill_reason Another user logged on this global unique id 186143 mac 186143 bytes_out 0 186143 bytes_in 0 186143 station_ip 83.122.152.207 186143 port 262 186143 unique_id port 186143 remote_ip 10.8.0.34 186145 username rashidi4690 186145 mac 186145 bytes_out 398039 186145 bytes_in 2213901 186145 station_ip 5.119.122.199 186145 port 291 186145 unique_id port 186145 remote_ip 10.8.0.242 186147 username zahra1101 186147 mac 186147 bytes_out 0 186147 bytes_in 0 186147 station_ip 5.120.91.167 186147 port 280 186147 unique_id port 186147 remote_ip 10.8.0.250 186149 username sabaghnezhad 186149 mac 186149 bytes_out 112018 186149 bytes_in 169214 186149 station_ip 5.212.246.241 186149 port 279 186149 unique_id port 186149 remote_ip 10.8.0.66 186151 username mosi 186160 port 291 186144 bytes_in 28885506 186144 station_ip 83.123.105.22 186144 port 280 186144 unique_id port 186144 remote_ip 10.8.0.126 186146 username yaghobi 186146 mac 186146 bytes_out 221675 186146 bytes_in 344374 186146 station_ip 83.123.74.45 186146 port 284 186146 unique_id port 186146 remote_ip 10.8.0.138 186148 username sabaghnezhad 186148 kill_reason Maximum number of concurrent logins reached 186148 mac 186148 bytes_out 0 186148 bytes_in 0 186148 station_ip 5.212.246.241 186148 port 280 186148 unique_id port 186154 username zahra1101 186154 mac 186154 bytes_out 0 186154 bytes_in 0 186154 station_ip 5.120.91.167 186154 port 280 186154 unique_id port 186154 remote_ip 10.8.0.250 186155 username zahra1101 186155 mac 186155 bytes_out 0 186155 bytes_in 0 186155 station_ip 5.120.91.167 186155 port 280 186155 unique_id port 186155 remote_ip 10.8.0.250 186161 username zahra1101 186161 mac 186161 bytes_out 15238 186161 bytes_in 28391 186161 station_ip 5.120.91.167 186161 port 279 186161 unique_id port 186161 remote_ip 10.8.0.250 186162 username zahra1101 186162 mac 186162 bytes_out 0 186162 bytes_in 0 186162 station_ip 5.120.91.167 186162 port 279 186162 unique_id port 186162 remote_ip 10.8.0.250 186164 username fezealinaghi 186164 mac 186164 bytes_out 5503244 186164 bytes_in 41016405 186164 station_ip 83.123.109.40 186164 port 281 186164 unique_id port 186164 remote_ip 10.8.0.202 186169 username pourshad 186169 mac 186169 bytes_out 829959 186169 bytes_in 1162967 186169 station_ip 5.120.221.88 186169 port 273 186169 unique_id port 186169 remote_ip 10.8.0.42 186173 username mohammadjavad 186173 mac 186173 bytes_out 13707 186173 bytes_in 20204 186173 station_ip 83.123.9.12 186173 port 279 186173 unique_id port 186173 remote_ip 10.8.0.110 186177 username morteza4424 186177 mac 186177 bytes_out 0 186177 bytes_in 0 186177 station_ip 83.123.2.185 186177 port 280 186177 unique_id port 186182 username mostafa_es78 186182 mac 186182 bytes_out 0 186182 bytes_in 0 186182 station_ip 83.122.152.207 186182 port 262 186182 unique_id port 186183 username morteza4424 186183 mac 186183 bytes_out 0 186183 bytes_in 0 186183 station_ip 83.123.2.185 186183 port 262 186183 unique_id port 186183 remote_ip 10.8.0.206 186188 username mohammadjavad 186188 mac 186188 bytes_out 690126 186188 bytes_in 8731898 186188 station_ip 83.123.9.12 186188 port 290 186188 unique_id port 186188 remote_ip 10.8.0.110 186193 username aminvpn 186193 mac 186193 bytes_out 0 186193 bytes_in 0 186193 station_ip 5.119.193.69 186193 port 279 186193 unique_id port 186193 remote_ip 10.8.0.58 186197 username dortaj3792 186197 mac 186197 bytes_out 4509973 186197 bytes_in 5540081 186197 station_ip 5.120.53.29 186197 port 269 186197 unique_id port 186197 remote_ip 10.8.0.102 186198 username yaghobi 186198 mac 186198 bytes_out 737955 186198 bytes_in 5720688 186198 station_ip 83.123.22.120 186198 port 290 186198 unique_id port 186198 remote_ip 10.8.0.138 186199 username shadkam 186199 mac 186199 bytes_out 305215 186199 bytes_in 2549700 186199 station_ip 5.202.98.211 186199 port 279 186199 unique_id port 186199 remote_ip 10.8.0.74 186200 username khademi 186200 kill_reason Another user logged on this global unique id 186200 mac 186200 bytes_out 0 186200 bytes_in 0 186200 station_ip 83.123.73.154 186200 port 259 186200 unique_id port 186203 username alihosseini1 186203 mac 186203 bytes_out 282776 186203 bytes_in 1631311 186203 station_ip 5.119.222.27 186151 kill_reason Another user logged on this global unique id 186151 mac 186151 bytes_out 0 186151 bytes_in 0 186151 station_ip 151.235.79.93 186151 port 290 186151 unique_id port 186153 username aminvpn 186153 mac 186153 bytes_out 0 186153 bytes_in 0 186153 station_ip 5.119.193.69 186153 port 284 186153 unique_id port 186153 remote_ip 10.8.0.58 186156 username yaghobi 186156 mac 186156 bytes_out 0 186156 bytes_in 0 186156 station_ip 83.123.97.187 186156 port 280 186156 unique_id port 186156 remote_ip 10.8.0.138 186163 username zahra1101 186163 mac 186163 bytes_out 0 186163 bytes_in 0 186163 station_ip 5.120.91.167 186163 port 279 186163 unique_id port 186163 remote_ip 10.8.0.250 186165 username aminvpn 186165 mac 186165 bytes_out 0 186165 bytes_in 0 186165 station_ip 5.119.193.69 186165 port 292 186165 unique_id port 186165 remote_ip 10.8.0.58 186166 username zahra1101 186166 mac 186166 bytes_out 16481 186166 bytes_in 30287 186166 station_ip 5.120.91.167 186166 port 281 186166 unique_id port 186166 remote_ip 10.8.0.250 186171 username zahra1101 186171 mac 186171 bytes_out 0 186171 bytes_in 0 186171 station_ip 5.120.91.167 186171 port 273 186171 unique_id port 186171 remote_ip 10.8.0.250 186172 username mostafa_es78 186172 kill_reason Another user logged on this global unique id 186172 mac 186172 bytes_out 0 186172 bytes_in 0 186172 station_ip 83.122.152.207 186172 port 262 186172 unique_id port 186174 username zahra1101 186174 mac 186174 bytes_out 0 186174 bytes_in 0 186174 station_ip 5.120.91.167 186174 port 281 186174 unique_id port 186174 remote_ip 10.8.0.250 186175 username yaghobi 186175 mac 186175 bytes_out 513325 186175 bytes_in 798301 186175 station_ip 83.123.22.120 186175 port 284 186175 unique_id port 186175 remote_ip 10.8.0.138 186178 username mosi 186178 mac 186178 bytes_out 0 186178 bytes_in 0 186178 station_ip 151.235.79.93 186178 port 290 186178 unique_id port 186180 username soleymani5056 186180 mac 186180 bytes_out 158915 186180 bytes_in 346997 186180 station_ip 5.119.21.140 186180 port 279 186180 unique_id port 186180 remote_ip 10.8.0.226 186185 username saeed9658 186185 mac 186185 bytes_out 1413975 186185 bytes_in 12025154 186185 station_ip 5.119.251.51 186185 port 273 186185 unique_id port 186185 remote_ip 10.8.0.162 186186 username yaghobi 186186 mac 186186 bytes_out 75331 186186 bytes_in 109665 186186 station_ip 83.123.22.120 186186 port 292 186186 unique_id port 186186 remote_ip 10.8.0.138 186187 username morteza4424 186187 mac 186187 bytes_out 2215 186187 bytes_in 4500 186187 station_ip 83.123.2.185 186187 port 292 186187 unique_id port 186187 remote_ip 10.8.0.206 186189 username yaghobi 186189 mac 186189 bytes_out 303603 186189 bytes_in 562162 186189 station_ip 83.123.22.120 186189 port 284 186189 unique_id port 186189 remote_ip 10.8.0.138 186192 username mostafa_es78 186192 kill_reason Another user logged on this global unique id 186192 mac 186192 bytes_out 0 186192 bytes_in 0 186192 station_ip 83.122.152.207 186192 port 262 186192 unique_id port 186192 remote_ip 10.8.0.34 186194 username kordestani 186194 mac 186194 bytes_out 3676939 186194 bytes_in 48932807 186194 station_ip 151.235.110.199 186194 port 281 186194 unique_id port 186194 remote_ip 10.8.0.130 186195 username rahim 186195 mac 186195 bytes_out 317942 186195 bytes_in 2771000 186195 station_ip 5.119.57.111 186195 port 273 186195 unique_id port 186195 remote_ip 10.8.0.134 186211 username zahra1101 186160 unique_id port 186167 username morteza4424 186167 kill_reason Another user logged on this global unique id 186167 mac 186167 bytes_out 0 186167 bytes_in 0 186167 station_ip 83.123.2.185 186167 port 280 186167 unique_id port 186167 remote_ip 10.8.0.206 186168 username rashidi4690 186168 mac 186168 bytes_out 205313 186168 bytes_in 812571 186168 station_ip 5.119.122.199 186168 port 279 186168 unique_id port 186168 remote_ip 10.8.0.242 186170 username zahra1101 186170 mac 186170 bytes_out 69957 186170 bytes_in 193098 186170 station_ip 5.120.91.167 186170 port 273 186170 unique_id port 186170 remote_ip 10.8.0.250 186176 username aminvpn 186176 mac 186176 bytes_out 0 186176 bytes_in 0 186176 station_ip 5.119.193.69 186176 port 281 186176 unique_id port 186176 remote_ip 10.8.0.58 186179 username mosi 186179 mac 186179 bytes_out 19096 186179 bytes_in 141876 186179 station_ip 37.137.47.251 186179 port 284 186179 unique_id port 186179 remote_ip 10.8.0.142 186181 username morteza4424 186181 mac 186181 bytes_out 421598 186181 bytes_in 2895809 186181 station_ip 83.123.2.185 186181 port 290 186181 unique_id port 186181 remote_ip 10.8.0.206 186184 username rashidi4690 186184 mac 186184 bytes_out 136639 186184 bytes_in 440858 186184 station_ip 5.119.122.199 186184 port 284 186184 unique_id port 186184 remote_ip 10.8.0.242 186190 username aminvpn 186190 kill_reason Maximum check online fails reached 186190 mac 186190 bytes_out 0 186190 bytes_in 0 186190 station_ip 5.119.193.69 186190 port 292 186190 unique_id port 186191 username meysam 186191 mac 186191 bytes_out 1165933 186191 bytes_in 14104434 186191 station_ip 188.159.251.171 186191 port 279 186191 unique_id port 186191 remote_ip 10.8.0.158 186196 username khademi 186196 kill_reason Another user logged on this global unique id 186196 mac 186196 bytes_out 0 186196 bytes_in 0 186196 station_ip 83.123.73.154 186196 port 259 186196 unique_id port 186201 username zahra1101 186201 mac 186201 bytes_out 2333657 186201 bytes_in 6771505 186201 station_ip 5.120.91.167 186201 port 280 186201 unique_id port 186201 remote_ip 10.8.0.250 186202 username aminvpn 186202 unique_id port 186202 terminate_cause User-Request 186202 bytes_out 1418364 186202 bytes_in 12227089 186202 station_ip 31.57.126.2 186202 port 15729022 186202 nas_port_type Virtual 186202 remote_ip 5.5.5.137 186205 username aminvpn 186205 mac 186205 bytes_out 0 186205 bytes_in 0 186205 station_ip 5.119.193.69 186205 port 281 186205 unique_id port 186205 remote_ip 10.8.0.58 186207 username alirezaza 186207 unique_id port 186207 terminate_cause User-Request 186207 bytes_out 617879 186207 bytes_in 6495395 186207 station_ip 5.119.174.147 186207 port 15729021 186207 nas_port_type Virtual 186207 remote_ip 5.5.5.138 186208 username zahra1101 186208 mac 186208 bytes_out 0 186208 bytes_in 0 186208 station_ip 5.120.91.167 186208 port 281 186208 unique_id port 186208 remote_ip 10.8.0.250 186209 username mostafa_es78 186209 mac 186209 bytes_out 1145038 186209 bytes_in 12392001 186209 station_ip 83.122.152.207 186209 port 262 186209 unique_id port 186209 remote_ip 10.8.0.34 186212 username godarzi 186212 mac 186212 bytes_out 785603 186212 bytes_in 7511819 186212 station_ip 5.202.29.254 186212 port 294 186212 unique_id port 186212 remote_ip 10.8.0.38 186215 username zahra1101 186215 mac 186215 bytes_out 0 186215 bytes_in 0 186215 station_ip 5.120.91.167 186215 port 284 186215 unique_id port 186215 remote_ip 10.8.0.250 186216 username sabaghnezhad 186216 mac 186203 port 281 186203 unique_id port 186203 remote_ip 10.8.0.70 186204 username yaghobi 186204 mac 186204 bytes_out 759109 186204 bytes_in 5873314 186204 station_ip 83.123.22.120 186204 port 269 186204 unique_id port 186204 remote_ip 10.8.0.138 186206 username mostafa_es78 186206 mac 186206 bytes_out 0 186206 bytes_in 0 186206 station_ip 83.122.152.207 186206 port 262 186206 unique_id port 186210 username mahdiyehalizadeh 186210 mac 186210 bytes_out 126878 186210 bytes_in 156699 186210 station_ip 5.119.254.148 186210 port 269 186210 unique_id port 186210 remote_ip 10.8.0.114 186214 username zahra1101 186214 mac 186214 bytes_out 0 186214 bytes_in 0 186214 station_ip 5.120.91.167 186214 port 262 186214 unique_id port 186214 remote_ip 10.8.0.250 186217 username aminvpn 186217 mac 186217 bytes_out 0 186217 bytes_in 0 186217 station_ip 5.119.193.69 186217 port 290 186217 unique_id port 186217 remote_ip 10.8.0.58 186219 username aminvpn 186219 mac 186219 bytes_out 0 186219 bytes_in 0 186219 station_ip 5.119.193.69 186219 port 262 186219 unique_id port 186219 remote_ip 10.8.0.58 186221 username zahra1101 186221 mac 186221 bytes_out 0 186221 bytes_in 0 186221 station_ip 5.120.91.167 186221 port 296 186221 unique_id port 186221 remote_ip 10.8.0.250 186224 username houshang 186224 kill_reason Another user logged on this global unique id 186224 mac 186224 bytes_out 0 186224 bytes_in 0 186224 station_ip 5.119.117.59 186224 port 279 186224 unique_id port 186224 remote_ip 10.8.0.82 186225 username hajghani 186225 mac 186225 bytes_out 1357767 186225 bytes_in 21941954 186225 station_ip 46.225.212.55 186225 port 294 186225 unique_id port 186225 remote_ip 10.8.0.106 186227 username houshang 186227 mac 186227 bytes_out 0 186227 bytes_in 0 186227 station_ip 5.119.117.59 186227 port 279 186227 unique_id port 186231 username rashidi4690 186231 mac 186231 bytes_out 344983 186231 bytes_in 1463998 186231 station_ip 5.119.122.199 186231 port 279 186231 unique_id port 186231 remote_ip 10.8.0.242 186232 username zahra1101 186232 mac 186232 bytes_out 0 186232 bytes_in 0 186232 station_ip 5.120.91.167 186232 port 279 186232 unique_id port 186232 remote_ip 10.8.0.250 186238 username zahra1101 186238 mac 186238 bytes_out 0 186238 bytes_in 0 186238 station_ip 5.120.91.167 186238 port 269 186238 unique_id port 186238 remote_ip 10.8.0.250 186242 username aminvpn 186242 mac 186242 bytes_out 0 186242 bytes_in 0 186242 station_ip 5.119.193.69 186242 port 298 186242 unique_id port 186242 remote_ip 10.8.0.58 186243 username dortaj3792 186243 mac 186243 bytes_out 866468 186243 bytes_in 7252336 186243 station_ip 5.120.53.29 186243 port 290 186243 unique_id port 186243 remote_ip 10.8.0.102 186248 username zahra1101 186248 mac 186248 bytes_out 0 186248 bytes_in 0 186248 station_ip 5.120.91.167 186248 port 290 186248 unique_id port 186248 remote_ip 10.8.0.250 186251 username hosseine 186251 kill_reason Another user logged on this global unique id 186251 mac 186251 bytes_out 0 186251 bytes_in 0 186251 station_ip 83.123.92.73 186251 port 296 186251 unique_id port 186251 remote_ip 10.8.0.54 186252 username zahra1101 186252 mac 186252 bytes_out 0 186252 bytes_in 0 186252 station_ip 5.120.91.167 186252 port 297 186252 unique_id port 186252 remote_ip 10.8.0.250 186254 username zahra1101 186254 kill_reason Maximum check online fails reached 186254 mac 186254 bytes_out 0 186254 bytes_in 0 186254 station_ip 5.120.91.167 186211 mac 186211 bytes_out 0 186211 bytes_in 0 186211 station_ip 5.120.91.167 186211 port 262 186211 unique_id port 186211 remote_ip 10.8.0.250 186213 username khademi 186213 kill_reason Another user logged on this global unique id 186213 mac 186213 bytes_out 0 186213 bytes_in 0 186213 station_ip 83.123.73.154 186213 port 259 186213 unique_id port 186218 username zahra1101 186218 mac 186218 bytes_out 0 186218 bytes_in 0 186218 station_ip 5.120.91.167 186218 port 262 186218 unique_id port 186218 remote_ip 10.8.0.250 186220 username zahra1101 186220 kill_reason Maximum check online fails reached 186220 mac 186220 bytes_out 0 186220 bytes_in 0 186220 station_ip 5.120.91.167 186220 port 262 186220 unique_id port 186223 username sabaghnezhad 186223 mac 186223 bytes_out 481051 186223 bytes_in 6966602 186223 station_ip 86.55.253.221 186223 port 284 186223 unique_id port 186223 remote_ip 10.8.0.66 186226 username zahra1101 186226 mac 186226 bytes_out 3922 186226 bytes_in 4774 186226 station_ip 5.120.91.167 186226 port 296 186226 unique_id port 186226 remote_ip 10.8.0.250 186228 username hamid.e 186228 unique_id port 186228 terminate_cause User-Request 186228 bytes_out 4664831 186228 bytes_in 111459029 186228 station_ip 37.27.0.45 186228 port 15729020 186228 nas_port_type Virtual 186228 remote_ip 5.5.5.139 186229 username zahra1101 186229 mac 186229 bytes_out 0 186229 bytes_in 0 186229 station_ip 5.120.91.167 186229 port 294 186229 unique_id port 186229 remote_ip 10.8.0.250 186233 username soleymani5056 186233 mac 186233 bytes_out 296244 186233 bytes_in 911673 186233 station_ip 5.119.203.136 186233 port 281 186233 unique_id port 186233 remote_ip 10.8.0.226 186234 username mosi 186234 kill_reason Another user logged on this global unique id 186234 mac 186234 bytes_out 0 186234 bytes_in 0 186234 station_ip 151.235.79.93 186234 port 293 186234 unique_id port 186234 remote_ip 10.8.0.142 186237 username akbari0070 186237 mac 186237 bytes_out 3391834 186237 bytes_in 37933779 186237 station_ip 83.123.36.223 186237 port 269 186237 unique_id port 186237 remote_ip 10.8.0.166 186241 username mohammadjavad 186241 mac 186241 bytes_out 11138 186241 bytes_in 24968 186241 station_ip 83.123.42.211 186241 port 269 186241 unique_id port 186241 remote_ip 10.8.0.110 186244 username meysam 186244 mac 186244 bytes_out 1426673 186244 bytes_in 18599063 186244 station_ip 188.159.251.171 186244 port 273 186244 unique_id port 186244 remote_ip 10.8.0.158 186247 username mosi 186247 kill_reason Another user logged on this global unique id 186247 mac 186247 bytes_out 0 186247 bytes_in 0 186247 station_ip 151.235.79.93 186247 port 293 186247 unique_id port 186249 username zahra1101 186249 mac 186249 bytes_out 0 186249 bytes_in 0 186249 station_ip 5.120.91.167 186249 port 290 186249 unique_id port 186249 remote_ip 10.8.0.250 186255 username zahra1101 186255 mac 186255 bytes_out 2096 186255 bytes_in 4974 186255 station_ip 5.120.91.167 186255 port 273 186255 unique_id port 186255 remote_ip 10.8.0.250 186258 username zahra1101 186258 kill_reason Maximum check online fails reached 186258 mac 186258 bytes_out 0 186258 bytes_in 0 186258 station_ip 5.120.91.167 186258 port 300 186258 unique_id port 186259 username sobhan 186259 unique_id port 186259 terminate_cause Lost-Carrier 186259 bytes_out 212129 186259 bytes_in 461021 186259 station_ip 5.119.243.26 186259 port 15729023 186259 nas_port_type Virtual 186259 remote_ip 5.5.5.136 186264 username mohammadjavad 186264 mac 186264 bytes_out 12583 186264 bytes_in 13293 186216 bytes_out 8181 186216 bytes_in 11993 186216 station_ip 86.55.253.221 186216 port 262 186216 unique_id port 186216 remote_ip 10.8.0.66 186222 username zahra1101 186222 kill_reason Maximum check online fails reached 186222 mac 186222 bytes_out 0 186222 bytes_in 0 186222 station_ip 5.120.91.167 186222 port 295 186222 unique_id port 186230 username aminvpn 186230 mac 186230 bytes_out 0 186230 bytes_in 0 186230 station_ip 5.119.193.69 186230 port 296 186230 unique_id port 186230 remote_ip 10.8.0.58 186235 username zahra1101 186235 kill_reason Maximum check online fails reached 186235 mac 186235 bytes_out 0 186235 bytes_in 0 186235 station_ip 5.120.91.167 186235 port 279 186235 unique_id port 186236 username zahra1101 186236 mac 186236 bytes_out 0 186236 bytes_in 0 186236 station_ip 5.120.91.167 186236 port 294 186236 unique_id port 186236 remote_ip 10.8.0.250 186239 username soleymani5056 186239 mac 186239 bytes_out 143779 186239 bytes_in 369615 186239 station_ip 5.119.153.21 186239 port 281 186239 unique_id port 186239 remote_ip 10.8.0.226 186240 username zahra1101 186240 mac 186240 bytes_out 0 186240 bytes_in 0 186240 station_ip 5.120.91.167 186240 port 281 186240 unique_id port 186240 remote_ip 10.8.0.250 186245 username zahra1101 186245 kill_reason Maximum check online fails reached 186245 mac 186245 bytes_out 0 186245 bytes_in 0 186245 station_ip 5.120.91.167 186245 port 281 186245 unique_id port 186246 username zahra1101 186246 kill_reason Maximum check online fails reached 186246 mac 186246 bytes_out 0 186246 bytes_in 0 186246 station_ip 5.120.91.167 186246 port 299 186246 unique_id port 186250 username godarzi 186250 mac 186250 bytes_out 664418 186250 bytes_in 7059227 186250 station_ip 5.120.139.168 186250 port 297 186250 unique_id port 186250 remote_ip 10.8.0.38 186253 username yaghobi 186253 mac 186253 bytes_out 109654 186253 bytes_in 199315 186253 station_ip 83.123.98.4 186253 port 273 186253 unique_id port 186253 remote_ip 10.8.0.138 186256 username aminvpn 186256 mac 186256 bytes_out 0 186256 bytes_in 0 186256 station_ip 5.119.193.69 186256 port 298 186256 unique_id port 186256 remote_ip 10.8.0.58 186260 username sabaghnezhad 186260 mac 186260 bytes_out 95672 186260 bytes_in 199842 186260 station_ip 86.55.253.221 186260 port 284 186260 unique_id port 186260 remote_ip 10.8.0.66 186262 username zahra1101 186262 kill_reason Maximum check online fails reached 186262 mac 186262 bytes_out 0 186262 bytes_in 0 186262 station_ip 5.120.91.167 186262 port 301 186262 unique_id port 186263 username akbari0070 186263 mac 186263 bytes_out 1073810 186263 bytes_in 464259 186263 station_ip 83.123.36.223 186263 port 294 186263 unique_id port 186263 remote_ip 10.8.0.166 186270 username saeed9658 186270 mac 186270 bytes_out 761613 186270 bytes_in 6424455 186270 station_ip 5.119.251.51 186270 port 298 186270 unique_id port 186270 remote_ip 10.8.0.162 186272 username aminvpn 186272 unique_id port 186272 terminate_cause Lost-Carrier 186272 bytes_out 4661459 186272 bytes_in 124940498 186272 station_ip 31.57.140.132 186272 port 15729026 186272 nas_port_type Virtual 186272 remote_ip 5.5.5.134 186275 username motamedi9772 186275 mac 186275 bytes_out 312580 186275 bytes_in 429377 186275 station_ip 83.123.39.107 186275 port 273 186275 unique_id port 186275 remote_ip 10.8.0.154 186277 username saeed9658 186277 mac 186277 bytes_out 47024 186277 bytes_in 282088 186277 station_ip 5.119.251.51 186277 port 284 186277 unique_id port 186277 remote_ip 10.8.0.162 186254 port 290 186254 unique_id port 186257 username zahra1101 186257 kill_reason Maximum number of concurrent logins reached 186257 mac 186257 bytes_out 0 186257 bytes_in 0 186257 station_ip 5.120.91.167 186257 port 302 186257 unique_id port 186261 username mosi 186261 kill_reason Another user logged on this global unique id 186261 mac 186261 bytes_out 0 186261 bytes_in 0 186261 station_ip 151.235.79.93 186261 port 293 186261 unique_id port 186266 username rashidi4690 186266 mac 186266 bytes_out 100610 186266 bytes_in 282897 186266 station_ip 5.119.122.199 186266 port 284 186266 unique_id port 186266 remote_ip 10.8.0.242 186268 username motamedi9772 186268 mac 186268 bytes_out 185353 186268 bytes_in 982029 186268 station_ip 83.123.39.107 186268 port 273 186268 unique_id port 186268 remote_ip 10.8.0.154 186269 username morteza4424 186269 mac 186269 bytes_out 59246 186269 bytes_in 188643 186269 station_ip 83.123.87.1 186269 port 284 186269 unique_id port 186269 remote_ip 10.8.0.206 186271 username mosi 186271 kill_reason Another user logged on this global unique id 186271 mac 186271 bytes_out 0 186271 bytes_in 0 186271 station_ip 151.235.79.93 186271 port 293 186271 unique_id port 186273 username meysam 186273 mac 186273 bytes_out 51987 186273 bytes_in 326818 186273 station_ip 188.159.251.171 186273 port 298 186273 unique_id port 186273 remote_ip 10.8.0.158 186274 username aminvpn 186274 mac 186274 bytes_out 0 186274 bytes_in 0 186274 station_ip 5.119.193.69 186274 port 298 186274 unique_id port 186274 remote_ip 10.8.0.58 186276 username aminvpn 186276 mac 186276 bytes_out 0 186276 bytes_in 0 186276 station_ip 5.119.193.69 186276 port 298 186276 unique_id port 186276 remote_ip 10.8.0.58 186280 username motamedi9772 186280 mac 186280 bytes_out 0 186280 bytes_in 0 186280 station_ip 83.123.39.107 186280 port 273 186280 unique_id port 186280 remote_ip 10.8.0.154 186285 username saeed9658 186285 mac 186285 bytes_out 0 186285 bytes_in 0 186285 station_ip 5.119.251.51 186285 port 304 186285 unique_id port 186285 remote_ip 10.8.0.162 186286 username aminvpn 186286 mac 186286 bytes_out 0 186286 bytes_in 0 186286 station_ip 5.119.193.69 186286 port 304 186286 unique_id port 186286 remote_ip 10.8.0.58 186288 username hosseine 186288 mac 186288 bytes_out 0 186288 bytes_in 0 186288 station_ip 83.123.92.73 186288 port 296 186288 unique_id port 186291 username motamedi9772 186291 mac 186291 bytes_out 0 186291 bytes_in 0 186291 station_ip 83.123.39.107 186291 port 306 186291 unique_id port 186291 remote_ip 10.8.0.154 186293 username shadkam 186293 mac 186293 bytes_out 2349221 186293 bytes_in 25523906 186293 station_ip 5.202.98.211 186293 port 273 186293 unique_id port 186293 remote_ip 10.8.0.74 186296 username meysam 186296 mac 186296 bytes_out 25411 186296 bytes_in 16420 186296 station_ip 188.159.251.171 186296 port 296 186296 unique_id port 186296 remote_ip 10.8.0.158 186298 username yaghobi 186298 mac 186298 bytes_out 0 186298 bytes_in 0 186298 station_ip 83.123.6.244 186298 port 297 186298 unique_id port 186298 remote_ip 10.8.0.138 186301 username saeed9658 186301 mac 186301 bytes_out 209485 186301 bytes_in 1490497 186301 station_ip 5.119.251.51 186301 port 305 186301 unique_id port 186301 remote_ip 10.8.0.162 186306 username meysam 186306 mac 186306 bytes_out 31737 186306 bytes_in 25625 186306 station_ip 188.158.49.255 186306 port 296 186306 unique_id port 186306 remote_ip 10.8.0.158 186264 station_ip 83.123.42.211 186264 port 284 186264 unique_id port 186264 remote_ip 10.8.0.110 186265 username aminvpn 186265 mac 186265 bytes_out 0 186265 bytes_in 0 186265 station_ip 5.119.193.69 186265 port 302 186265 unique_id port 186265 remote_ip 10.8.0.58 186267 username sobhan 186267 unique_id port 186267 terminate_cause Lost-Carrier 186267 bytes_out 427367 186267 bytes_in 1797342 186267 station_ip 5.119.248.97 186267 port 15729027 186267 nas_port_type Virtual 186267 remote_ip 5.5.5.133 186278 username motamedi9772 186278 mac 186278 bytes_out 0 186278 bytes_in 0 186278 station_ip 83.123.39.107 186278 port 273 186278 unique_id port 186278 remote_ip 10.8.0.154 186279 username motamedi9772 186279 mac 186279 bytes_out 0 186279 bytes_in 0 186279 station_ip 83.123.39.107 186279 port 273 186279 unique_id port 186279 remote_ip 10.8.0.154 186283 username motamedi9772 186283 mac 186283 bytes_out 0 186283 bytes_in 0 186283 station_ip 83.123.39.107 186283 port 273 186283 unique_id port 186283 remote_ip 10.8.0.154 186289 username motamedi9772 186289 mac 186289 bytes_out 0 186289 bytes_in 0 186289 station_ip 83.123.39.107 186289 port 303 186289 unique_id port 186289 remote_ip 10.8.0.154 186290 username rashidi4690 186290 mac 186290 bytes_out 29192 186290 bytes_in 30925 186290 station_ip 5.119.122.199 186290 port 296 186290 unique_id port 186290 remote_ip 10.8.0.242 186295 username rezaei 186295 mac 186295 bytes_out 1362396 186295 bytes_in 14687214 186295 station_ip 5.119.174.166 186295 port 298 186295 unique_id port 186295 remote_ip 10.8.0.198 186299 username rezaei 186299 mac 186299 bytes_out 17377 186299 bytes_in 22465 186299 station_ip 5.119.174.166 186299 port 304 186299 unique_id port 186299 remote_ip 10.8.0.198 186302 username rahim 186302 mac 186302 bytes_out 187969 186302 bytes_in 2041134 186302 station_ip 5.119.57.111 186302 port 273 186302 unique_id port 186302 remote_ip 10.8.0.134 186303 username rahim 186303 mac 186303 bytes_out 0 186303 bytes_in 0 186303 station_ip 5.119.57.111 186303 port 273 186303 unique_id port 186303 remote_ip 10.8.0.134 186305 username farhad3 186305 kill_reason Another user logged on this global unique id 186305 mac 186305 bytes_out 0 186305 bytes_in 0 186305 station_ip 5.120.6.157 186305 port 294 186305 unique_id port 186307 username fezealinaghi 186307 mac 186307 bytes_out 232813 186307 bytes_in 309715 186307 station_ip 83.123.109.40 186307 port 306 186307 unique_id port 186307 remote_ip 10.8.0.202 186311 username fezealinaghi 186311 mac 186311 bytes_out 2175 186311 bytes_in 4313 186311 station_ip 83.123.109.40 186311 port 303 186311 unique_id port 186311 remote_ip 10.8.0.202 186313 username mosavi0713 186313 mac 186313 bytes_out 324685 186313 bytes_in 486805 186313 station_ip 83.123.95.8 186313 port 304 186313 unique_id port 186313 remote_ip 10.8.0.150 186314 username jafari 186314 mac 186314 bytes_out 3650583 186314 bytes_in 37794023 186314 station_ip 5.62.205.13 186314 port 284 186314 unique_id port 186314 remote_ip 10.8.0.86 186317 username soleymani5056 186317 mac 186317 bytes_out 212381 186317 bytes_in 414415 186317 station_ip 5.120.30.72 186317 port 296 186317 unique_id port 186317 remote_ip 10.8.0.226 186319 username yaghobi 186319 mac 186319 bytes_out 78184 186319 bytes_in 81867 186319 station_ip 83.123.4.242 186319 port 284 186319 unique_id port 186319 remote_ip 10.8.0.138 186322 username yaghobi 186322 mac 186322 bytes_out 5541 186281 username rashidi4690 186281 mac 186281 bytes_out 3032318 186281 bytes_in 46738877 186281 station_ip 5.119.122.199 186281 port 303 186281 unique_id port 186281 remote_ip 10.8.0.242 186282 username aminvpn 186282 unique_id port 186282 terminate_cause Lost-Carrier 186282 bytes_out 265173 186282 bytes_in 458258 186282 station_ip 83.123.42.204 186282 port 15729025 186282 nas_port_type Virtual 186282 remote_ip 5.5.5.135 186284 username farhad3 186284 kill_reason Another user logged on this global unique id 186284 mac 186284 bytes_out 0 186284 bytes_in 0 186284 station_ip 5.120.6.157 186284 port 294 186284 unique_id port 186284 remote_ip 10.8.0.222 186287 username fezealinaghi 186287 mac 186287 bytes_out 65172 186287 bytes_in 335907 186287 station_ip 83.123.109.40 186287 port 303 186287 unique_id port 186287 remote_ip 10.8.0.202 186292 username fezealinaghi 186292 mac 186292 bytes_out 18379 186292 bytes_in 25946 186292 station_ip 83.123.109.40 186292 port 304 186292 unique_id port 186292 remote_ip 10.8.0.202 186294 username rahim 186294 mac 186294 bytes_out 5405981 186294 bytes_in 46508477 186294 station_ip 5.119.57.111 186294 port 297 186294 unique_id port 186294 remote_ip 10.8.0.134 186297 username sabaghnezhad 186297 mac 186297 bytes_out 192923 186297 bytes_in 1055534 186297 station_ip 86.55.253.221 186297 port 302 186297 unique_id port 186297 remote_ip 10.8.0.66 186300 username motamedi9772 186300 mac 186300 bytes_out 0 186300 bytes_in 0 186300 station_ip 83.123.39.107 186300 port 302 186300 unique_id port 186300 remote_ip 10.8.0.154 186304 username soleymani5056 186304 mac 186304 bytes_out 249351 186304 bytes_in 1311929 186304 station_ip 5.120.30.72 186304 port 303 186304 unique_id port 186304 remote_ip 10.8.0.226 186308 username aminvpn 186308 mac 186308 bytes_out 0 186308 bytes_in 0 186308 station_ip 5.119.193.69 186308 port 303 186308 unique_id port 186308 remote_ip 10.8.0.58 186310 username mosi 186310 kill_reason Another user logged on this global unique id 186310 mac 186310 bytes_out 0 186310 bytes_in 0 186310 station_ip 151.235.79.93 186310 port 293 186310 unique_id port 186312 username rashidi4690 186312 kill_reason Another user logged on this global unique id 186312 mac 186312 bytes_out 0 186312 bytes_in 0 186312 station_ip 5.119.122.199 186312 port 273 186312 unique_id port 186312 remote_ip 10.8.0.242 186316 username yaghobi 186316 mac 186316 bytes_out 6494 186316 bytes_in 17529 186316 station_ip 83.123.6.244 186316 port 306 186316 unique_id port 186316 remote_ip 10.8.0.138 186320 username motamedi9772 186320 mac 186320 bytes_out 1746809 186320 bytes_in 13442444 186320 station_ip 83.123.39.107 186320 port 305 186320 unique_id port 186320 remote_ip 10.8.0.154 186321 username morteza4424 186321 mac 186321 bytes_out 2326964 186321 bytes_in 33384662 186321 station_ip 83.123.112.201 186321 port 302 186321 unique_id port 186321 remote_ip 10.8.0.206 186323 username aminvpn 186323 mac 186323 bytes_out 0 186323 bytes_in 0 186323 station_ip 5.119.193.69 186323 port 304 186323 unique_id port 186323 remote_ip 10.8.0.58 186335 username mosi 186335 mac 186335 bytes_out 0 186335 bytes_in 0 186335 station_ip 151.235.79.93 186335 port 293 186335 unique_id port 186336 username mosi 186336 mac 186336 bytes_out 0 186336 bytes_in 0 186336 station_ip 5.134.157.8 186336 port 284 186336 unique_id port 186336 remote_ip 10.8.0.142 186341 username aminvpn 186341 mac 186341 bytes_out 0 186341 bytes_in 0 186309 username yaghobi 186309 mac 186309 bytes_out 85473 186309 bytes_in 95756 186309 station_ip 83.123.6.244 186309 port 297 186309 unique_id port 186309 remote_ip 10.8.0.138 186315 username mosavi0713 186315 mac 186315 bytes_out 0 186315 bytes_in 0 186315 station_ip 83.123.95.8 186315 port 284 186315 unique_id port 186315 remote_ip 10.8.0.150 186318 username saeed9658 186318 kill_reason Maximum check online fails reached 186318 mac 186318 bytes_out 0 186318 bytes_in 0 186318 station_ip 5.119.251.51 186318 port 296 186318 unique_id port 186324 username farhad3 186324 kill_reason Another user logged on this global unique id 186324 mac 186324 bytes_out 0 186324 bytes_in 0 186324 station_ip 5.120.6.157 186324 port 294 186324 unique_id port 186325 username motamedi9772 186325 mac 186325 bytes_out 37723 186325 bytes_in 58344 186325 station_ip 83.123.39.107 186325 port 305 186325 unique_id port 186325 remote_ip 10.8.0.154 186330 username motamedi9772 186330 mac 186330 bytes_out 0 186330 bytes_in 0 186330 station_ip 83.123.39.107 186330 port 284 186330 unique_id port 186330 remote_ip 10.8.0.154 186331 username motamedi9772 186331 mac 186331 bytes_out 0 186331 bytes_in 0 186331 station_ip 83.123.39.107 186331 port 284 186331 unique_id port 186331 remote_ip 10.8.0.154 186337 username motamedi9772 186337 mac 186337 bytes_out 0 186337 bytes_in 0 186337 station_ip 83.123.39.107 186337 port 305 186337 unique_id port 186337 remote_ip 10.8.0.154 186338 username motamedi9772 186338 mac 186338 bytes_out 0 186338 bytes_in 0 186338 station_ip 83.123.39.107 186338 port 284 186338 unique_id port 186338 remote_ip 10.8.0.154 186340 username farhad3 186340 kill_reason Another user logged on this global unique id 186340 mac 186340 bytes_out 0 186340 bytes_in 0 186340 station_ip 5.120.6.157 186340 port 294 186340 unique_id port 186342 username motamedi9772 186342 mac 186342 bytes_out 9077 186342 bytes_in 17000 186342 station_ip 83.123.39.107 186342 port 284 186342 unique_id port 186342 remote_ip 10.8.0.154 186345 username motamedi9772 186345 mac 186345 bytes_out 0 186345 bytes_in 0 186345 station_ip 83.123.39.107 186345 port 284 186345 unique_id port 186345 remote_ip 10.8.0.154 186350 username malekpoir 186350 mac 186350 bytes_out 2900298 186350 bytes_in 22131325 186350 station_ip 5.120.139.23 186350 port 280 186350 unique_id port 186350 remote_ip 10.8.0.18 186352 username shadkam 186352 mac 186352 bytes_out 0 186352 bytes_in 0 186352 station_ip 5.202.98.211 186352 port 284 186352 unique_id port 186352 remote_ip 10.8.0.74 186357 username pourshad 186357 mac 186357 bytes_out 0 186357 bytes_in 0 186357 station_ip 5.120.244.183 186357 port 303 186357 unique_id port 186369 username kalantary6037 186369 kill_reason Another user logged on this global unique id 186369 mac 186369 bytes_out 0 186369 bytes_in 0 186369 station_ip 83.123.105.91 186369 port 307 186369 unique_id port 186369 remote_ip 10.8.0.50 186374 username shadkam 186374 mac 186374 bytes_out 0 186374 bytes_in 0 186374 station_ip 5.202.98.211 186374 port 302 186374 unique_id port 186374 remote_ip 10.8.0.74 186384 username fezealinaghi 186384 mac 186384 bytes_out 293297 186384 bytes_in 2954835 186384 station_ip 83.123.109.40 186384 port 305 186384 unique_id port 186384 remote_ip 10.8.0.202 186386 username pourshad 186386 mac 186386 bytes_out 1399847 186386 bytes_in 21875843 186386 station_ip 5.120.244.183 186386 port 297 186386 unique_id port 186386 remote_ip 10.8.0.42 186322 bytes_in 7824 186322 station_ip 83.123.4.242 186322 port 304 186322 unique_id port 186322 remote_ip 10.8.0.138 186326 username soleymani5056 186326 mac 186326 bytes_out 44259 186326 bytes_in 40060 186326 station_ip 5.120.30.72 186326 port 284 186326 unique_id port 186326 remote_ip 10.8.0.226 186327 username yaghobi 186327 mac 186327 bytes_out 41828 186327 bytes_in 59380 186327 station_ip 83.123.34.98 186327 port 302 186327 unique_id port 186327 remote_ip 10.8.0.138 186328 username motamedi9772 186328 mac 186328 bytes_out 0 186328 bytes_in 0 186328 station_ip 83.123.39.107 186328 port 284 186328 unique_id port 186328 remote_ip 10.8.0.154 186329 username motamedi9772 186329 mac 186329 bytes_out 0 186329 bytes_in 0 186329 station_ip 83.123.39.107 186329 port 284 186329 unique_id port 186329 remote_ip 10.8.0.154 186332 username fezealinaghi 186332 mac 186332 bytes_out 165144 186332 bytes_in 533604 186332 station_ip 83.123.109.40 186332 port 308 186332 unique_id port 186332 remote_ip 10.8.0.202 186333 username motamedi9772 186333 mac 186333 bytes_out 0 186333 bytes_in 0 186333 station_ip 83.123.39.107 186333 port 284 186333 unique_id port 186333 remote_ip 10.8.0.154 186334 username motamedi9772 186334 mac 186334 bytes_out 0 186334 bytes_in 0 186334 station_ip 83.123.39.107 186334 port 284 186334 unique_id port 186334 remote_ip 10.8.0.154 186339 username saeeddamghani 186339 mac 186339 bytes_out 2425 186339 bytes_in 5369 186339 station_ip 5.213.170.217 186339 port 293 186339 unique_id port 186339 remote_ip 10.8.0.122 186343 username motamedi9772 186343 mac 186343 bytes_out 0 186343 bytes_in 0 186343 station_ip 83.123.39.107 186343 port 284 186343 unique_id port 186343 remote_ip 10.8.0.154 186347 username pourshad 186347 kill_reason Another user logged on this global unique id 186347 mac 186347 bytes_out 0 186347 bytes_in 0 186347 station_ip 5.120.244.183 186347 port 303 186347 unique_id port 186347 remote_ip 10.8.0.42 186348 username saeed9658 186348 mac 186348 bytes_out 4573284 186348 bytes_in 45343776 186348 station_ip 5.119.251.51 186348 port 297 186348 unique_id port 186348 remote_ip 10.8.0.162 186351 username motamedi9772 186351 mac 186351 bytes_out 0 186351 bytes_in 0 186351 station_ip 83.123.39.107 186351 port 280 186351 unique_id port 186351 remote_ip 10.8.0.154 186354 username khademi 186354 kill_reason Another user logged on this global unique id 186354 mac 186354 bytes_out 0 186354 bytes_in 0 186354 station_ip 83.123.73.154 186354 port 259 186354 unique_id port 186355 username motamedi9772 186355 mac 186355 bytes_out 0 186355 bytes_in 0 186355 station_ip 83.123.39.107 186355 port 284 186355 unique_id port 186355 remote_ip 10.8.0.154 186356 username motamedi9772 186356 mac 186356 bytes_out 0 186356 bytes_in 0 186356 station_ip 83.123.39.107 186356 port 284 186356 unique_id port 186356 remote_ip 10.8.0.154 186360 username fezealinaghi 186360 mac 186360 bytes_out 1267277 186360 bytes_in 11571448 186360 station_ip 83.123.109.40 186360 port 302 186360 unique_id port 186360 remote_ip 10.8.0.202 186363 username farhad3 186363 kill_reason Another user logged on this global unique id 186363 mac 186363 bytes_out 0 186363 bytes_in 0 186363 station_ip 5.120.6.157 186363 port 294 186363 unique_id port 186364 username shadkam 186364 mac 186364 bytes_out 0 186364 bytes_in 0 186364 station_ip 5.202.98.211 186364 port 310 186364 unique_id port 186364 remote_ip 10.8.0.74 186366 username shadkam 186341 station_ip 5.119.193.69 186341 port 293 186341 unique_id port 186341 remote_ip 10.8.0.58 186344 username meysam 186344 mac 186344 bytes_out 555422 186344 bytes_in 5884793 186344 station_ip 188.158.49.255 186344 port 304 186344 unique_id port 186344 remote_ip 10.8.0.158 186346 username motamedi9772 186346 mac 186346 bytes_out 0 186346 bytes_in 0 186346 station_ip 83.123.39.107 186346 port 284 186346 unique_id port 186346 remote_ip 10.8.0.154 186349 username motamedi9772 186349 mac 186349 bytes_out 5072 186349 bytes_in 11235 186349 station_ip 83.123.39.107 186349 port 284 186349 unique_id port 186349 remote_ip 10.8.0.154 186353 username motamedi9772 186353 mac 186353 bytes_out 0 186353 bytes_in 0 186353 station_ip 83.123.39.107 186353 port 284 186353 unique_id port 186353 remote_ip 10.8.0.154 186358 username motamedi9772 186358 mac 186358 bytes_out 0 186358 bytes_in 0 186358 station_ip 83.123.39.107 186358 port 284 186358 unique_id port 186358 remote_ip 10.8.0.154 186359 username motamedi9772 186359 mac 186359 bytes_out 0 186359 bytes_in 0 186359 station_ip 83.123.39.107 186359 port 284 186359 unique_id port 186359 remote_ip 10.8.0.154 186361 username aminvpn 186361 mac 186361 bytes_out 0 186361 bytes_in 0 186361 station_ip 5.119.193.69 186361 port 304 186361 unique_id port 186361 remote_ip 10.8.0.58 186362 username motamedi9772 186362 mac 186362 bytes_out 0 186362 bytes_in 0 186362 station_ip 83.123.39.107 186362 port 302 186362 unique_id port 186362 remote_ip 10.8.0.154 186365 username akbari0070 186365 mac 186365 bytes_out 51346 186365 bytes_in 109015 186365 station_ip 83.123.22.3 186365 port 280 186365 unique_id port 186365 remote_ip 10.8.0.166 186367 username motamedi9772 186367 mac 186367 bytes_out 7474 186367 bytes_in 13127 186367 station_ip 83.123.39.107 186367 port 302 186367 unique_id port 186367 remote_ip 10.8.0.154 186370 username mosavi0713 186370 mac 186370 bytes_out 561458 186370 bytes_in 2404050 186370 station_ip 83.123.95.8 186370 port 293 186370 unique_id port 186370 remote_ip 10.8.0.150 186371 username mosi 186371 kill_reason Another user logged on this global unique id 186371 mac 186371 bytes_out 0 186371 bytes_in 0 186371 station_ip 151.235.79.93 186371 port 308 186371 unique_id port 186371 remote_ip 10.8.0.142 186372 username aminvpn 186372 mac 186372 bytes_out 0 186372 bytes_in 0 186372 station_ip 5.119.193.69 186372 port 293 186372 unique_id port 186372 remote_ip 10.8.0.58 186373 username khademi 186409 username hajghani 186373 kill_reason Another user logged on this global unique id 186373 mac 186373 bytes_out 0 186373 bytes_in 0 186373 station_ip 83.123.73.154 186373 port 259 186373 unique_id port 186375 username rahim 186375 mac 186375 bytes_out 5124999 186375 bytes_in 17272956 186375 station_ip 5.119.57.111 186375 port 280 186375 unique_id port 186375 remote_ip 10.8.0.134 186376 username kalantary6037 186376 mac 186376 bytes_out 0 186376 bytes_in 0 186376 station_ip 83.123.105.91 186376 port 307 186376 unique_id port 186377 username rahim 186377 mac 186377 bytes_out 0 186377 bytes_in 0 186377 station_ip 5.119.57.111 186377 port 280 186377 unique_id port 186377 remote_ip 10.8.0.134 186380 username rahim 186380 mac 186380 bytes_out 0 186380 bytes_in 0 186380 station_ip 5.119.57.111 186380 port 280 186380 unique_id port 186380 remote_ip 10.8.0.134 186387 username farhad3 186387 kill_reason Another user logged on this global unique id 186387 mac 186387 bytes_out 0 186366 mac 186366 bytes_out 0 186366 bytes_in 0 186366 station_ip 5.202.98.211 186366 port 280 186366 unique_id port 186366 remote_ip 10.8.0.74 186368 username saeed9658 186368 mac 186368 bytes_out 101834 186368 bytes_in 81130 186368 station_ip 5.119.251.51 186368 port 302 186368 unique_id port 186368 remote_ip 10.8.0.162 186378 username rahim 186378 mac 186378 bytes_out 0 186378 bytes_in 0 186378 station_ip 5.119.57.111 186378 port 302 186378 unique_id port 186378 remote_ip 10.8.0.134 186379 username rashidi4690 186379 mac 186379 bytes_out 0 186379 bytes_in 0 186379 station_ip 5.119.122.199 186379 port 273 186379 unique_id port 186381 username majidsarmast 186381 mac 186381 bytes_out 2766090 186381 bytes_in 31920197 186381 station_ip 86.57.123.23 186381 port 303 186381 unique_id port 186381 remote_ip 10.8.0.170 186382 username rahim 186382 mac 186382 bytes_out 0 186382 bytes_in 0 186382 station_ip 5.119.57.111 186382 port 273 186382 unique_id port 186382 remote_ip 10.8.0.134 186383 username rahim 186383 mac 186383 bytes_out 0 186383 bytes_in 0 186383 station_ip 5.119.57.111 186383 port 273 186383 unique_id port 186383 remote_ip 10.8.0.134 186385 username barzegar8595 186385 mac 186385 bytes_out 3379705 186385 bytes_in 15207788 186385 station_ip 46.225.212.55 186385 port 298 186385 unique_id port 186385 remote_ip 10.8.0.190 186390 username kordestani 186390 mac 186390 bytes_out 2132890 186390 bytes_in 28292670 186390 station_ip 151.235.119.49 186390 port 304 186390 unique_id port 186390 remote_ip 10.8.0.130 186398 username godarzi 186398 mac 186398 bytes_out 3408676 186398 bytes_in 19955187 186398 station_ip 5.120.139.168 186398 port 306 186398 unique_id port 186398 remote_ip 10.8.0.38 186400 username shadkam 186400 mac 186400 bytes_out 0 186400 bytes_in 0 186400 station_ip 5.202.98.211 186400 port 304 186400 unique_id port 186400 remote_ip 10.8.0.74 186401 username rahim 186401 mac 186401 bytes_out 115736 186401 bytes_in 623403 186401 station_ip 5.119.57.111 186401 port 306 186401 unique_id port 186401 remote_ip 10.8.0.134 186405 username rahim 186405 mac 186405 bytes_out 0 186405 bytes_in 0 186405 station_ip 5.119.57.111 186405 port 298 186405 unique_id port 186405 remote_ip 10.8.0.134 186406 username kordestani 186406 kill_reason Another user logged on this global unique id 186406 mac 186406 bytes_out 0 186406 bytes_in 0 186406 station_ip 151.235.119.49 186406 port 305 186406 unique_id port 186406 remote_ip 10.8.0.130 186409 mac 186409 bytes_out 35935 186409 bytes_in 62622 186409 station_ip 46.225.212.55 186409 port 298 186409 unique_id port 186409 remote_ip 10.8.0.106 186410 username rahim 186410 mac 186410 bytes_out 153442 186410 bytes_in 1335805 186410 station_ip 5.119.57.111 186410 port 306 186410 unique_id port 186410 remote_ip 10.8.0.134 186412 username meysam 186412 mac 186412 bytes_out 2034060 186412 bytes_in 24699082 186412 station_ip 188.158.49.255 186412 port 293 186412 unique_id port 186412 remote_ip 10.8.0.158 186415 username mosi 186415 kill_reason Another user logged on this global unique id 186415 mac 186415 bytes_out 0 186415 bytes_in 0 186415 station_ip 151.235.79.93 186415 port 308 186415 unique_id port 186417 username rashidi4690 186417 kill_reason Another user logged on this global unique id 186417 mac 186417 bytes_out 0 186417 bytes_in 0 186417 station_ip 83.123.109.178 186417 port 302 186417 unique_id port 186417 remote_ip 10.8.0.242 186387 bytes_in 0 186387 station_ip 5.120.6.157 186387 port 294 186387 unique_id port 186388 username alihosseini1 186388 mac 186388 bytes_out 3727994 186388 bytes_in 35725911 186388 station_ip 5.119.191.41 186388 port 284 186388 unique_id port 186388 remote_ip 10.8.0.70 186391 username rahim 186391 mac 186391 bytes_out 0 186391 bytes_in 0 186391 station_ip 5.119.57.111 186391 port 298 186391 unique_id port 186391 remote_ip 10.8.0.134 186393 username mosi 186393 kill_reason Another user logged on this global unique id 186393 mac 186393 bytes_out 0 186393 bytes_in 0 186393 station_ip 151.235.79.93 186393 port 308 186393 unique_id port 186394 username rahim 186394 mac 186394 bytes_out 0 186394 bytes_in 0 186394 station_ip 5.119.57.111 186394 port 298 186394 unique_id port 186394 remote_ip 10.8.0.134 186396 username shadkam 186396 kill_reason Maximum check online fails reached 186396 mac 186396 bytes_out 0 186396 bytes_in 0 186396 station_ip 5.202.98.211 186396 port 284 186396 unique_id port 186397 username rahim 186397 mac 186397 bytes_out 0 186397 bytes_in 0 186397 station_ip 5.119.57.111 186397 port 304 186397 unique_id port 186397 remote_ip 10.8.0.134 186399 username rahim 186399 mac 186399 bytes_out 0 186399 bytes_in 0 186399 station_ip 5.119.57.111 186399 port 304 186399 unique_id port 186399 remote_ip 10.8.0.134 186404 username rahim 186404 mac 186404 bytes_out 10798 186404 bytes_in 28489 186404 station_ip 5.119.57.111 186404 port 298 186404 unique_id port 186404 remote_ip 10.8.0.134 186407 username rahim 186407 mac 186407 bytes_out 0 186407 bytes_in 0 186407 station_ip 5.119.57.111 186407 port 306 186407 unique_id port 186407 remote_ip 10.8.0.134 186408 username aminvpn 186408 mac 186408 bytes_out 60353 186408 bytes_in 510876 186408 station_ip 5.119.193.69 186408 port 304 186408 unique_id port 186408 remote_ip 10.8.0.58 186411 username alihosseini1 186411 mac 186411 bytes_out 992469 186411 bytes_in 7912630 186411 station_ip 5.119.46.249 186411 port 303 186411 unique_id port 186411 remote_ip 10.8.0.70 186414 username rahim 186414 mac 186414 bytes_out 1636 186414 bytes_in 5076 186414 station_ip 5.119.57.111 186414 port 293 186414 unique_id port 186414 remote_ip 10.8.0.134 186418 username khorasani9135 186418 mac 186418 bytes_out 174246 186418 bytes_in 235098 186418 station_ip 83.123.105.22 186418 port 269 186418 unique_id port 186418 remote_ip 10.8.0.126 186419 username malekpoir 186419 mac 186419 bytes_out 593200 186419 bytes_in 3919041 186419 station_ip 5.120.139.23 186419 port 309 186419 unique_id port 186419 remote_ip 10.8.0.18 186421 username majidsarmast 186421 mac 186421 bytes_out 1736699 186421 bytes_in 17096023 186421 station_ip 86.57.123.23 186421 port 280 186421 unique_id port 186421 remote_ip 10.8.0.170 186428 username fezealinaghi 186428 mac 186428 bytes_out 358617 186428 bytes_in 1538446 186428 station_ip 83.123.109.40 186428 port 273 186428 unique_id port 186428 remote_ip 10.8.0.202 186432 username rahim 186432 mac 186432 bytes_out 0 186432 bytes_in 0 186432 station_ip 5.119.57.111 186432 port 293 186432 unique_id port 186432 remote_ip 10.8.0.134 186436 username zahra1101 186436 kill_reason Maximum check online fails reached 186436 mac 186436 bytes_out 0 186436 bytes_in 0 186436 station_ip 5.120.47.55 186436 port 297 186436 unique_id port 186439 username rahim 186439 mac 186439 bytes_out 49157 186439 bytes_in 516641 186439 station_ip 5.119.57.111 186389 username rahim 186389 mac 186389 bytes_out 0 186389 bytes_in 0 186389 station_ip 5.119.57.111 186389 port 298 186389 unique_id port 186389 remote_ip 10.8.0.134 186392 username aminvpn 186392 mac 186392 bytes_out 0 186392 bytes_in 0 186392 station_ip 5.119.193.69 186392 port 303 186392 unique_id port 186392 remote_ip 10.8.0.58 186395 username dortaj3792 186395 mac 186395 bytes_out 138271 186395 bytes_in 255171 186395 station_ip 5.119.146.223 186395 port 280 186395 unique_id port 186395 remote_ip 10.8.0.102 186402 username motamedi9772 186402 mac 186402 bytes_out 597526 186402 bytes_in 8066666 186402 station_ip 83.123.77.151 186402 port 298 186402 unique_id port 186402 remote_ip 10.8.0.154 186403 username barzegar8595 186403 mac 186403 bytes_out 17455 186403 bytes_in 78049 186403 station_ip 37.27.46.66 186403 port 304 186403 unique_id port 186403 remote_ip 10.8.0.190 186413 username sedighe 186413 mac 186413 bytes_out 44162 186413 bytes_in 34276 186413 station_ip 83.123.113.242 186413 port 298 186413 unique_id port 186413 remote_ip 10.8.0.46 186416 username rahim 186416 mac 186416 bytes_out 0 186416 bytes_in 0 186416 station_ip 5.119.57.111 186416 port 293 186416 unique_id port 186416 remote_ip 10.8.0.134 186422 username pourshad 186422 mac 186422 bytes_out 916469 186422 bytes_in 13221900 186422 station_ip 5.120.244.183 186422 port 297 186422 unique_id port 186422 remote_ip 10.8.0.42 186425 username aminvpn 186425 mac 186425 bytes_out 0 186425 bytes_in 0 186425 station_ip 5.119.193.69 186425 port 280 186425 unique_id port 186425 remote_ip 10.8.0.58 186426 username majidsarmast 186426 mac 186426 bytes_out 37508 186426 bytes_in 42465 186426 station_ip 86.57.123.23 186426 port 297 186426 unique_id port 186426 remote_ip 10.8.0.170 186433 username zahra1101 186433 mac 186433 bytes_out 4783776 186433 bytes_in 8364303 186433 station_ip 5.120.47.55 186433 port 311 186433 unique_id port 186433 remote_ip 10.8.0.250 186434 username kordestani 186434 mac 186434 bytes_out 0 186434 bytes_in 0 186434 station_ip 151.235.119.49 186434 port 305 186434 unique_id port 186438 username alipour1506 186438 mac 186438 bytes_out 195041 186438 bytes_in 1660145 186438 station_ip 37.156.154.231 186438 port 273 186438 unique_id port 186438 remote_ip 10.8.0.246 186441 username alihosseini1 186441 mac 186441 bytes_out 0 186441 bytes_in 0 186441 station_ip 5.119.46.249 186441 port 293 186441 unique_id port 186441 remote_ip 10.8.0.70 186443 username alipour1506 186443 mac 186443 bytes_out 62990 186443 bytes_in 58456 186443 station_ip 37.156.62.110 186443 port 280 186443 unique_id port 186443 remote_ip 10.8.0.246 186446 username shadkam 186446 mac 186446 bytes_out 0 186446 bytes_in 0 186446 station_ip 5.202.98.211 186446 port 280 186446 unique_id port 186446 remote_ip 10.8.0.74 186447 username aminvpn 186447 mac 186447 bytes_out 0 186447 bytes_in 0 186447 station_ip 5.119.193.69 186447 port 280 186447 unique_id port 186447 remote_ip 10.8.0.58 186449 username alihosseini1 186449 mac 186449 bytes_out 0 186449 bytes_in 0 186449 station_ip 5.119.46.249 186449 port 293 186449 unique_id port 186449 remote_ip 10.8.0.70 186453 username alihosseini1 186453 kill_reason Maximum check online fails reached 186453 mac 186453 bytes_out 0 186453 bytes_in 0 186453 station_ip 5.119.46.249 186453 port 293 186453 unique_id port 186459 username shadkam 186459 mac 186459 bytes_out 0 186420 username rahim 186420 mac 186420 bytes_out 0 186420 bytes_in 0 186420 station_ip 5.119.57.111 186420 port 293 186420 unique_id port 186420 remote_ip 10.8.0.134 186423 username majidsarmast 186423 mac 186423 bytes_out 172419 186423 bytes_in 260323 186423 station_ip 86.57.123.23 186423 port 293 186423 unique_id port 186423 remote_ip 10.8.0.170 186424 username pourshad 186424 mac 186424 bytes_out 77480 186424 bytes_in 95723 186424 station_ip 5.120.244.183 186424 port 280 186424 unique_id port 186424 remote_ip 10.8.0.42 186427 username rahim 186427 mac 186427 bytes_out 1636 186427 bytes_in 4649 186427 station_ip 5.119.57.111 186427 port 293 186427 unique_id port 186427 remote_ip 10.8.0.134 186429 username shadkam 186429 mac 186429 bytes_out 791808 186429 bytes_in 10714755 186429 station_ip 5.202.98.211 186429 port 303 186429 unique_id port 186429 remote_ip 10.8.0.74 186430 username rahim 186430 mac 186430 bytes_out 0 186430 bytes_in 0 186430 station_ip 5.119.57.111 186430 port 293 186430 unique_id port 186430 remote_ip 10.8.0.134 186431 username alihosseini1 186431 mac 186431 bytes_out 0 186431 bytes_in 0 186431 station_ip 5.119.46.249 186431 port 293 186431 unique_id port 186431 remote_ip 10.8.0.70 186435 username alipour1506 186435 mac 186435 bytes_out 404537 186435 bytes_in 2606419 186435 station_ip 37.156.154.231 186435 port 273 186435 unique_id port 186435 remote_ip 10.8.0.246 186437 username majidsarmast 186437 mac 186437 bytes_out 438733 186437 bytes_in 5665855 186437 station_ip 86.57.123.23 186437 port 280 186437 unique_id port 186437 remote_ip 10.8.0.170 186445 username shadkam 186445 mac 186445 bytes_out 0 186445 bytes_in 0 186445 station_ip 5.202.98.211 186445 port 280 186445 unique_id port 186445 remote_ip 10.8.0.74 186450 username kalantary6037 186450 mac 186450 bytes_out 3498155 186450 bytes_in 33442880 186450 station_ip 83.123.91.219 186450 port 269 186450 unique_id port 186450 remote_ip 10.8.0.50 186452 username teymori5660 186452 kill_reason Another user logged on this global unique id 186452 mac 186452 bytes_out 0 186452 bytes_in 0 186452 station_ip 5.120.109.113 186452 port 273 186452 unique_id port 186452 remote_ip 10.8.0.178 186455 username esmaeilkazemi 186455 mac 186455 bytes_out 110057 186455 bytes_in 655241 186455 station_ip 83.123.33.157 186455 port 280 186455 unique_id port 186455 remote_ip 10.8.0.26 186457 username farhad3 186457 mac 186457 bytes_out 0 186457 bytes_in 0 186457 station_ip 5.120.6.157 186457 port 294 186457 unique_id port 186460 username alihosseini1 186460 mac 186460 bytes_out 0 186460 bytes_in 0 186460 station_ip 5.119.66.76 186460 port 294 186460 unique_id port 186460 remote_ip 10.8.0.70 186461 username aminvpn 186461 mac 186461 bytes_out 0 186461 bytes_in 0 186461 station_ip 5.119.193.69 186461 port 294 186461 unique_id port 186461 remote_ip 10.8.0.58 186463 username alihosseini1 186463 kill_reason Maximum check online fails reached 186463 mac 186463 bytes_out 0 186463 bytes_in 0 186463 station_ip 5.119.66.76 186463 port 280 186463 unique_id port 186468 username rashidi4690 186468 kill_reason Another user logged on this global unique id 186468 mac 186468 bytes_out 0 186468 bytes_in 0 186468 station_ip 83.123.109.178 186468 port 302 186468 unique_id port 186469 username aminvpn 186469 unique_id port 186469 terminate_cause Lost-Carrier 186469 bytes_out 123636 186469 bytes_in 346260 186469 station_ip 83.123.82.73 186469 port 15729030 186469 nas_port_type Virtual 186439 port 293 186439 unique_id port 186439 remote_ip 10.8.0.134 186440 username motamedi9772 186440 mac 186440 bytes_out 13093 186440 bytes_in 28445 186440 station_ip 83.123.65.31 186440 port 273 186440 unique_id port 186440 remote_ip 10.8.0.154 186442 username rashidi4690 186442 kill_reason Another user logged on this global unique id 186442 mac 186442 bytes_out 0 186442 bytes_in 0 186442 station_ip 83.123.109.178 186442 port 302 186442 unique_id port 186444 username alihosseini1 186444 mac 186444 bytes_out 0 186444 bytes_in 0 186444 station_ip 5.119.46.249 186444 port 280 186444 unique_id port 186444 remote_ip 10.8.0.70 186448 username shadkam 186448 mac 186448 bytes_out 0 186448 bytes_in 0 186448 station_ip 5.202.98.211 186448 port 293 186448 unique_id port 186448 remote_ip 10.8.0.74 186451 username aminvpn 186451 unique_id port 186451 terminate_cause Lost-Carrier 186451 bytes_out 2671705 186451 bytes_in 51980907 186451 station_ip 5.120.86.144 186451 port 15729029 186451 nas_port_type Virtual 186451 remote_ip 5.5.5.131 186454 username farhad3 186454 kill_reason Another user logged on this global unique id 186454 mac 186454 bytes_out 0 186454 bytes_in 0 186454 station_ip 5.120.6.157 186454 port 294 186454 unique_id port 186456 username rashidi4690 186456 kill_reason Another user logged on this global unique id 186456 mac 186456 bytes_out 0 186456 bytes_in 0 186456 station_ip 83.123.109.178 186456 port 302 186456 unique_id port 186458 username soleymani5056 186458 mac 186458 bytes_out 19012 186458 bytes_in 60671 186458 station_ip 5.120.121.243 186458 port 280 186458 unique_id port 186458 remote_ip 10.8.0.226 186464 username mosi 186464 mac 186464 bytes_out 0 186464 bytes_in 0 186464 station_ip 151.235.79.93 186464 port 308 186464 unique_id port 186465 username aminvpn 186465 unique_id port 186465 terminate_cause Lost-Carrier 186465 bytes_out 11774426 186465 bytes_in 125393808 186465 station_ip 31.57.125.118 186465 port 15729028 186465 nas_port_type Virtual 186465 remote_ip 5.5.5.132 186466 username teymori5660 186466 mac 186466 bytes_out 0 186466 bytes_in 0 186466 station_ip 5.120.109.113 186466 port 273 186466 unique_id port 186475 username aminvpn 186475 mac 186475 bytes_out 90764 186475 bytes_in 190964 186475 station_ip 5.119.36.146 186475 port 273 186475 unique_id port 186475 remote_ip 10.8.0.58 186477 username motamedi9772 186477 mac 186477 bytes_out 104046 186477 bytes_in 289147 186477 station_ip 83.123.14.203 186477 port 294 186477 unique_id port 186477 remote_ip 10.8.0.154 186481 username shadkam 186481 mac 186481 bytes_out 0 186481 bytes_in 0 186481 station_ip 5.202.98.211 186481 port 269 186481 unique_id port 186481 remote_ip 10.8.0.74 186485 username zahra1101 186485 mac 186485 bytes_out 443828 186485 bytes_in 892039 186485 station_ip 5.120.47.55 186485 port 303 186485 unique_id port 186485 remote_ip 10.8.0.250 186486 username barzegar 186486 mac 186486 bytes_out 70321 186486 bytes_in 151808 186486 station_ip 5.120.116.130 186486 port 269 186486 unique_id port 186486 remote_ip 10.8.0.10 186487 username yarmohamadi7916 186487 kill_reason Another user logged on this global unique id 186487 mac 186487 bytes_out 0 186487 bytes_in 0 186487 station_ip 5.119.142.161 186487 port 304 186487 unique_id port 186489 username aminvpn 186489 mac 186489 bytes_out 0 186489 bytes_in 0 186489 station_ip 5.119.193.69 186489 port 305 186489 unique_id port 186489 remote_ip 10.8.0.58 186490 username aminvpn 186490 mac 186490 bytes_out 0 186490 bytes_in 0 186459 bytes_in 0 186459 station_ip 5.202.98.211 186459 port 305 186459 unique_id port 186459 remote_ip 10.8.0.74 186462 username alihosseini1 186462 mac 186462 bytes_out 0 186462 bytes_in 0 186462 station_ip 5.119.66.76 186462 port 305 186462 unique_id port 186462 remote_ip 10.8.0.70 186467 username soleymani5056 186467 mac 186467 bytes_out 39980 186467 bytes_in 53159 186467 station_ip 5.120.121.243 186467 port 306 186467 unique_id port 186467 remote_ip 10.8.0.226 186470 username aminvpn 186470 mac 186470 bytes_out 648424 186470 bytes_in 9405684 186470 station_ip 5.119.36.146 186470 port 294 186470 unique_id port 186470 remote_ip 10.8.0.58 186472 username shadkam 186472 mac 186472 bytes_out 898361 186472 bytes_in 9747892 186472 station_ip 5.202.98.211 186472 port 305 186472 unique_id port 186472 remote_ip 10.8.0.74 186474 username mohammadjavad 186474 kill_reason Another user logged on this global unique id 186474 mac 186474 bytes_out 0 186474 bytes_in 0 186474 station_ip 83.123.58.193 186474 port 269 186474 unique_id port 186474 remote_ip 10.8.0.110 186476 username aminvpn 186476 mac 186476 bytes_out 0 186476 bytes_in 0 186476 station_ip 5.119.193.69 186476 port 306 186476 unique_id port 186476 remote_ip 10.8.0.58 186478 username yarmohamadi7916 186478 kill_reason Another user logged on this global unique id 186478 mac 186478 bytes_out 0 186478 bytes_in 0 186478 station_ip 5.119.142.161 186478 port 304 186478 unique_id port 186478 remote_ip 10.8.0.230 186479 username mohammadjavad 186479 mac 186479 bytes_out 0 186479 bytes_in 0 186479 station_ip 83.123.58.193 186479 port 269 186479 unique_id port 186482 username yarmohamadi7916 186482 kill_reason Another user logged on this global unique id 186482 mac 186482 bytes_out 0 186482 bytes_in 0 186482 station_ip 5.119.142.161 186482 port 304 186482 unique_id port 186483 username yaghobi 186483 mac 186483 bytes_out 105067 186483 bytes_in 158778 186483 station_ip 83.123.95.156 186483 port 269 186483 unique_id port 186483 remote_ip 10.8.0.138 186491 username zahra1101 186491 mac 186491 bytes_out 0 186491 bytes_in 0 186491 station_ip 5.120.47.55 186491 port 273 186491 unique_id port 186491 remote_ip 10.8.0.250 186493 username barzegar 186493 mac 186493 bytes_out 130711 186493 bytes_in 1022246 186493 station_ip 5.120.116.130 186493 port 303 186493 unique_id port 186493 remote_ip 10.8.0.10 186494 username khademi 186494 kill_reason Another user logged on this global unique id 186494 mac 186494 bytes_out 0 186494 bytes_in 0 186494 station_ip 83.123.73.154 186494 port 259 186494 unique_id port 186498 username kalantary6037 186498 mac 186498 bytes_out 522330 186498 bytes_in 6439195 186498 station_ip 83.123.80.67 186498 port 294 186498 unique_id port 186498 remote_ip 10.8.0.50 186500 username hajghani 186500 mac 186500 bytes_out 95080 186500 bytes_in 195816 186500 station_ip 46.225.212.55 186500 port 303 186500 unique_id port 186500 remote_ip 10.8.0.106 186502 username rashidi4690 186502 kill_reason Another user logged on this global unique id 186502 mac 186502 bytes_out 0 186502 bytes_in 0 186502 station_ip 83.123.109.178 186502 port 302 186502 unique_id port 186505 username barzegar 186505 mac 186505 bytes_out 349550 186505 bytes_in 3249490 186505 station_ip 5.120.116.130 186505 port 273 186505 unique_id port 186505 remote_ip 10.8.0.10 186506 username zahra1101 186506 mac 186506 bytes_out 0 186506 bytes_in 0 186506 station_ip 5.120.47.55 186506 port 273 186506 unique_id port 186506 remote_ip 10.8.0.250 186469 remote_ip 5.5.5.130 186471 username esmaeilkazemi 186471 mac 186471 bytes_out 199034 186471 bytes_in 125406 186471 station_ip 83.123.33.157 186471 port 304 186471 unique_id port 186471 remote_ip 10.8.0.26 186473 username rashidi4690 186473 kill_reason Another user logged on this global unique id 186473 mac 186473 bytes_out 0 186473 bytes_in 0 186473 station_ip 83.123.109.178 186473 port 302 186473 unique_id port 186480 username alihosseini1 186480 mac 186480 bytes_out 36689 186480 bytes_in 33453 186480 station_ip 5.119.66.76 186480 port 305 186480 unique_id port 186480 remote_ip 10.8.0.70 186484 username rashidi4690 186484 kill_reason Another user logged on this global unique id 186484 mac 186484 bytes_out 0 186484 bytes_in 0 186484 station_ip 83.123.109.178 186484 port 302 186484 unique_id port 186488 username aminvpn 186488 mac 186488 bytes_out 17548 186488 bytes_in 30720 186488 station_ip 5.119.36.146 186488 port 273 186488 unique_id port 186488 remote_ip 10.8.0.58 186492 username mansour 186492 mac 186492 bytes_out 788188 186492 bytes_in 10753013 186492 station_ip 5.202.97.228 186492 port 269 186492 unique_id port 186492 remote_ip 10.8.0.30 186499 username zahra1101 186499 mac 186499 bytes_out 0 186499 bytes_in 0 186499 station_ip 5.120.47.55 186499 port 294 186499 unique_id port 186499 remote_ip 10.8.0.250 186501 username mohammadjavad 186501 mac 186501 bytes_out 2315 186501 bytes_in 4154 186501 station_ip 83.123.74.181 186501 port 306 186501 unique_id port 186501 remote_ip 10.8.0.110 186503 username aminvpn 186503 mac 186503 bytes_out 0 186503 bytes_in 0 186503 station_ip 5.119.193.69 186503 port 294 186503 unique_id port 186503 remote_ip 10.8.0.58 186511 username rashidi4690 186511 kill_reason Another user logged on this global unique id 186511 mac 186511 bytes_out 0 186511 bytes_in 0 186511 station_ip 83.123.109.178 186511 port 302 186511 unique_id port 186513 username malekpoir 186513 mac 186513 bytes_out 2445276 186513 bytes_in 29440880 186513 station_ip 5.119.238.21 186513 port 298 186513 unique_id port 186513 remote_ip 10.8.0.18 186514 username barzegar 186514 mac 186514 bytes_out 0 186514 bytes_in 0 186514 station_ip 5.120.116.130 186514 port 306 186514 unique_id port 186514 remote_ip 10.8.0.10 186515 username shadkam 186515 mac 186515 bytes_out 0 186515 bytes_in 0 186515 station_ip 5.202.98.211 186515 port 269 186515 unique_id port 186516 username aminvpn 186516 mac 186516 bytes_out 0 186516 bytes_in 0 186516 station_ip 5.119.193.69 186516 port 269 186516 unique_id port 186516 remote_ip 10.8.0.58 186521 username ahmadi1 186521 mac 186521 bytes_out 56072 186521 bytes_in 215498 186521 station_ip 83.123.34.224 186521 port 269 186521 unique_id port 186521 remote_ip 10.8.0.94 186524 username barzegar 186524 mac 186524 bytes_out 59410 186524 bytes_in 278859 186524 station_ip 5.120.116.130 186524 port 306 186524 unique_id port 186524 remote_ip 10.8.0.10 186525 username zahra1101 186525 mac 186525 bytes_out 23783678 186525 bytes_in 17327959 186525 station_ip 5.119.92.247 186525 port 294 186525 unique_id port 186525 remote_ip 10.8.0.250 186526 username barzegar 186526 mac 186526 bytes_out 0 186526 bytes_in 0 186526 station_ip 5.120.116.130 186526 port 294 186526 unique_id port 186526 remote_ip 10.8.0.10 186531 username zahra1101 186531 mac 186531 bytes_out 0 186531 bytes_in 0 186531 station_ip 5.119.92.247 186531 port 294 186531 unique_id port 186531 remote_ip 10.8.0.250 186490 station_ip 5.119.36.146 186490 port 273 186490 unique_id port 186490 remote_ip 10.8.0.58 186495 username mohammadjavad 186495 mac 186495 bytes_out 275938 186495 bytes_in 3197045 186495 station_ip 83.123.74.181 186495 port 294 186495 unique_id port 186495 remote_ip 10.8.0.110 186496 username rashidi4690 186496 kill_reason Another user logged on this global unique id 186496 mac 186496 bytes_out 0 186496 bytes_in 0 186496 station_ip 83.123.109.178 186496 port 302 186496 unique_id port 186497 username zahra1101 186497 mac 186497 bytes_out 0 186497 bytes_in 0 186497 station_ip 5.120.47.55 186497 port 294 186497 unique_id port 186497 remote_ip 10.8.0.250 186504 username khademi 186504 kill_reason Another user logged on this global unique id 186504 mac 186504 bytes_out 0 186504 bytes_in 0 186504 station_ip 83.123.73.154 186504 port 259 186504 unique_id port 186507 username zahra1101 186507 mac 186507 bytes_out 0 186507 bytes_in 0 186507 station_ip 5.120.47.55 186507 port 273 186507 unique_id port 186507 remote_ip 10.8.0.250 186508 username aminvpn 186508 unique_id port 186508 terminate_cause User-Request 186508 bytes_out 148112 186508 bytes_in 412384 186508 station_ip 31.57.126.227 186508 port 15729033 186508 nas_port_type Virtual 186508 remote_ip 5.5.5.128 186517 username soleymani5056 186517 mac 186517 bytes_out 137546 186517 bytes_in 248619 186517 station_ip 5.120.122.222 186517 port 273 186517 unique_id port 186517 remote_ip 10.8.0.226 186518 username barzegar 186518 mac 186518 bytes_out 2961 186518 bytes_in 5289 186518 station_ip 5.120.116.130 186518 port 306 186518 unique_id port 186518 remote_ip 10.8.0.10 186520 username rashidi4690 186520 kill_reason Another user logged on this global unique id 186520 mac 186520 bytes_out 0 186520 bytes_in 0 186520 station_ip 83.123.109.178 186520 port 302 186520 unique_id port 186529 username rashidi4690 186529 mac 186529 bytes_out 0 186529 bytes_in 0 186529 station_ip 83.123.109.178 186529 port 302 186529 unique_id port 186532 username barzegar 186532 mac 186532 bytes_out 0 186532 bytes_in 0 186532 station_ip 5.120.116.130 186532 port 294 186532 unique_id port 186532 remote_ip 10.8.0.10 186534 username yarmohamadi7916 186534 kill_reason Another user logged on this global unique id 186534 mac 186534 bytes_out 0 186534 bytes_in 0 186534 station_ip 5.119.142.161 186534 port 304 186534 unique_id port 186535 username aminvpn 186535 mac 186535 bytes_out 0 186535 bytes_in 0 186535 station_ip 5.119.193.69 186535 port 294 186535 unique_id port 186535 remote_ip 10.8.0.58 186536 username zahra1101 186536 mac 186536 bytes_out 0 186536 bytes_in 0 186536 station_ip 5.119.92.247 186536 port 294 186536 unique_id port 186536 remote_ip 10.8.0.250 186540 username shahruz 186540 mac 186540 bytes_out 0 186540 bytes_in 0 186540 station_ip 89.199.6.77 186540 port 306 186540 unique_id port 186540 remote_ip 10.8.0.146 186547 username shahruz 186547 mac 186547 bytes_out 0 186547 bytes_in 0 186547 station_ip 5.209.56.108 186547 port 305 186547 unique_id port 186547 remote_ip 10.8.0.146 186549 username shahruz 186549 mac 186549 bytes_out 0 186549 bytes_in 0 186549 station_ip 5.209.56.108 186549 port 305 186549 unique_id port 186549 remote_ip 10.8.0.146 186552 username aminvpn 186552 mac 186552 bytes_out 0 186552 bytes_in 0 186552 station_ip 5.119.193.69 186552 port 305 186552 unique_id port 186552 remote_ip 10.8.0.58 186554 username shahruz 186554 mac 186554 bytes_out 0 186554 bytes_in 0 186509 username zahra1101 186509 mac 186509 bytes_out 0 186509 bytes_in 0 186509 station_ip 5.119.92.247 186509 port 294 186509 unique_id port 186509 remote_ip 10.8.0.250 186510 username barzegar 186510 mac 186510 bytes_out 0 186510 bytes_in 0 186510 station_ip 5.120.116.130 186510 port 303 186510 unique_id port 186510 remote_ip 10.8.0.10 186512 username shadkam 186512 kill_reason Another user logged on this global unique id 186512 mac 186512 bytes_out 0 186512 bytes_in 0 186512 station_ip 5.202.98.211 186512 port 269 186512 unique_id port 186512 remote_ip 10.8.0.74 186519 username shahruz 186519 mac 186519 bytes_out 2174 186519 bytes_in 4435 186519 station_ip 89.199.33.81 186519 port 308 186519 unique_id port 186519 remote_ip 10.8.0.146 186522 username shahruz 186522 mac 186522 bytes_out 16101 186522 bytes_in 27662 186522 station_ip 89.199.33.81 186522 port 273 186522 unique_id port 186522 remote_ip 10.8.0.146 186523 username shahruz 186523 mac 186523 bytes_out 0 186523 bytes_in 0 186523 station_ip 89.199.33.81 186523 port 311 186523 unique_id port 186523 remote_ip 10.8.0.146 186527 username yaghobi 186527 mac 186527 bytes_out 508027 186527 bytes_in 1295467 186527 station_ip 83.123.72.10 186527 port 308 186527 unique_id port 186527 remote_ip 10.8.0.138 186528 username barzegar8595 186528 kill_reason Another user logged on this global unique id 186528 mac 186528 bytes_out 0 186528 bytes_in 0 186528 station_ip 46.225.212.55 186528 port 310 186528 unique_id port 186528 remote_ip 10.8.0.190 186530 username shahruz 186530 mac 186530 bytes_out 0 186530 bytes_in 0 186530 station_ip 89.199.33.81 186530 port 306 186530 unique_id port 186530 remote_ip 10.8.0.146 186533 username zahra1101 186533 mac 186533 bytes_out 0 186533 bytes_in 0 186533 station_ip 5.119.92.247 186533 port 302 186533 unique_id port 186533 remote_ip 10.8.0.250 186537 username zahra1101 186537 mac 186537 bytes_out 0 186537 bytes_in 0 186537 station_ip 5.119.92.247 186537 port 294 186537 unique_id port 186537 remote_ip 10.8.0.250 186538 username fezealinaghi 186538 mac 186538 bytes_out 19929 186538 bytes_in 28767 186538 station_ip 83.123.3.182 186538 port 306 186538 unique_id port 186538 remote_ip 10.8.0.202 186544 username barzegar 186544 mac 186544 bytes_out 0 186544 bytes_in 0 186544 station_ip 5.120.116.130 186544 port 305 186544 unique_id port 186544 remote_ip 10.8.0.10 186546 username hadibarzegar 186546 mac 186546 bytes_out 678036 186546 bytes_in 7842895 186546 station_ip 83.123.67.217 186546 port 309 186546 unique_id port 186546 remote_ip 10.8.0.186 186550 username saeed9658 186550 mac 186550 bytes_out 1237990 186550 bytes_in 8538682 186550 station_ip 5.119.79.182 186550 port 303 186550 unique_id port 186550 remote_ip 10.8.0.162 186555 username barzegar 186555 mac 186555 bytes_out 0 186555 bytes_in 0 186555 station_ip 5.120.116.130 186555 port 303 186555 unique_id port 186555 remote_ip 10.8.0.10 186558 username saeed9658 186558 mac 186558 bytes_out 0 186558 bytes_in 0 186558 station_ip 5.119.79.182 186558 port 303 186558 unique_id port 186558 remote_ip 10.8.0.162 186561 username naeimeh 186561 mac 186561 bytes_out 1094438 186561 bytes_in 9540100 186561 station_ip 83.123.38.11 186561 port 306 186561 unique_id port 186561 remote_ip 10.8.0.78 186562 username fezealinaghi 186562 mac 186562 bytes_out 1627438 186562 bytes_in 15294946 186562 station_ip 83.123.3.182 186562 port 311 186562 unique_id port 186539 username zahra1101 186539 mac 186539 bytes_out 0 186539 bytes_in 0 186539 station_ip 5.119.92.247 186539 port 308 186539 unique_id port 186539 remote_ip 10.8.0.250 186541 username zahra1101 186541 mac 186541 bytes_out 0 186541 bytes_in 0 186541 station_ip 5.119.92.247 186541 port 312 186541 unique_id port 186541 remote_ip 10.8.0.250 186542 username saeeddamghani 186542 mac 186542 bytes_out 65938 186542 bytes_in 351300 186542 station_ip 83.123.7.236 186542 port 306 186542 unique_id port 186542 remote_ip 10.8.0.122 186543 username mansour 186543 mac 186543 bytes_out 5547279 186543 bytes_in 85316012 186543 station_ip 5.202.97.228 186543 port 305 186543 unique_id port 186543 remote_ip 10.8.0.30 186545 username kalantary6037 186545 mac 186545 bytes_out 509153 186545 bytes_in 4413728 186545 station_ip 83.123.118.47 186545 port 308 186545 unique_id port 186545 remote_ip 10.8.0.50 186548 username hadibarzegar 186548 mac 186548 bytes_out 0 186548 bytes_in 0 186548 station_ip 83.123.67.217 186548 port 305 186548 unique_id port 186548 remote_ip 10.8.0.186 186551 username zahra1101 186551 mac 186551 bytes_out 0 186551 bytes_in 0 186551 station_ip 5.119.92.247 186551 port 303 186551 unique_id port 186551 remote_ip 10.8.0.250 186553 username saeed9658 186553 mac 186553 bytes_out 0 186553 bytes_in 0 186553 station_ip 5.119.79.182 186553 port 308 186553 unique_id port 186553 remote_ip 10.8.0.162 186557 username godarzi 186557 mac 186557 bytes_out 8805570 186557 bytes_in 36093836 186557 station_ip 5.120.139.168 186557 port 307 186557 unique_id port 186557 remote_ip 10.8.0.38 186559 username aminvpn 186559 unique_id port 186559 terminate_cause Lost-Carrier 186559 bytes_out 6982129 186559 bytes_in 139462598 186559 station_ip 5.120.86.144 186559 port 15729034 186559 nas_port_type Virtual 186559 remote_ip 5.5.5.131 186563 username barzegar 186563 mac 186563 bytes_out 0 186563 bytes_in 0 186563 station_ip 5.120.116.130 186563 port 303 186563 unique_id port 186563 remote_ip 10.8.0.10 186565 username mosavi0713 186565 mac 186565 bytes_out 2719847 186565 bytes_in 44448637 186565 station_ip 83.123.82.24 186565 port 269 186565 unique_id port 186565 remote_ip 10.8.0.150 186566 username zahra1101 186566 mac 186566 bytes_out 0 186566 bytes_in 0 186566 station_ip 5.119.92.247 186566 port 306 186566 unique_id port 186566 remote_ip 10.8.0.250 186568 username saeed9658 186568 mac 186568 bytes_out 0 186568 bytes_in 0 186568 station_ip 5.119.79.182 186568 port 307 186568 unique_id port 186568 remote_ip 10.8.0.162 186570 username shahruz 186570 kill_reason Maximum check online fails reached 186570 mac 186570 bytes_out 0 186570 bytes_in 0 186570 station_ip 5.209.56.108 186570 port 303 186570 unique_id port 186572 username barzegar 186572 mac 186572 bytes_out 0 186572 bytes_in 0 186572 station_ip 5.120.116.130 186572 port 309 186572 unique_id port 186572 remote_ip 10.8.0.10 186573 username shahruz 186573 kill_reason Maximum check online fails reached 186573 mac 186573 bytes_out 0 186573 bytes_in 0 186573 station_ip 5.209.56.108 186573 port 269 186573 unique_id port 186575 username sedighe 186575 mac 186575 bytes_out 816774 186575 bytes_in 3837296 186575 station_ip 83.123.18.134 186575 port 312 186575 unique_id port 186575 remote_ip 10.8.0.46 186577 username aminvpn 186577 unique_id port 186577 terminate_cause User-Request 186577 bytes_out 11750318 186577 bytes_in 336992909 186577 station_ip 31.57.126.227 186577 port 15729035 186554 station_ip 5.209.56.108 186554 port 305 186554 unique_id port 186554 remote_ip 10.8.0.146 186556 username shahruz 186556 mac 186556 bytes_out 0 186556 bytes_in 0 186556 station_ip 5.209.56.108 186556 port 303 186556 unique_id port 186556 remote_ip 10.8.0.146 186560 username shadkam 186560 mac 186560 bytes_out 0 186560 bytes_in 0 186560 station_ip 5.202.98.211 186560 port 307 186560 unique_id port 186560 remote_ip 10.8.0.74 186571 username kordestani 186571 kill_reason Another user logged on this global unique id 186571 mac 186571 bytes_out 0 186571 bytes_in 0 186571 station_ip 151.235.119.49 186571 port 302 186571 unique_id port 186571 remote_ip 10.8.0.130 186574 username barzegar 186574 mac 186574 bytes_out 0 186574 bytes_in 0 186574 station_ip 5.120.116.130 186574 port 306 186574 unique_id port 186574 remote_ip 10.8.0.10 186576 username zahra1101 186576 kill_reason Maximum check online fails reached 186576 mac 186576 bytes_out 0 186576 bytes_in 0 186576 station_ip 5.119.92.247 186576 port 306 186576 unique_id port 186578 username barzegar 186578 mac 186578 bytes_out 3946 186578 bytes_in 4841 186578 station_ip 5.120.116.130 186578 port 307 186578 unique_id port 186578 remote_ip 10.8.0.10 186584 username barzegar 186584 mac 186584 bytes_out 0 186584 bytes_in 0 186584 station_ip 5.120.116.130 186584 port 315 186584 unique_id port 186584 remote_ip 10.8.0.10 186585 username saeed9658 186585 mac 186585 bytes_out 0 186585 bytes_in 0 186585 station_ip 5.119.79.182 186585 port 312 186585 unique_id port 186585 remote_ip 10.8.0.162 186587 username kordestani 186587 mac 186587 bytes_out 0 186587 bytes_in 0 186587 station_ip 151.235.119.49 186587 port 302 186587 unique_id port 186589 username saeed9658 186589 mac 186589 bytes_out 0 186589 bytes_in 0 186589 station_ip 5.119.79.182 186589 port 314 186589 unique_id port 186589 remote_ip 10.8.0.162 186594 username tahmorsi 186594 mac 186594 bytes_out 282589 186594 bytes_in 1953062 186594 station_ip 86.57.95.11 186594 port 309 186594 unique_id port 186594 remote_ip 10.8.0.6 186597 username zahra1101 186597 mac 186597 bytes_out 0 186597 bytes_in 0 186597 station_ip 5.119.92.247 186597 port 309 186597 unique_id port 186597 remote_ip 10.8.0.250 186599 username mohammadjavad 186599 mac 186599 bytes_out 1573046 186599 bytes_in 20800564 186599 station_ip 83.123.116.237 186599 port 311 186599 unique_id port 186599 remote_ip 10.8.0.110 186601 username morteza4424 186601 mac 186601 bytes_out 0 186601 bytes_in 0 186601 station_ip 83.123.16.216 186601 port 309 186601 unique_id port 186601 remote_ip 10.8.0.206 186604 username aminvpn 186604 mac 186604 bytes_out 0 186604 bytes_in 0 186604 station_ip 5.119.193.69 186604 port 294 186604 unique_id port 186604 remote_ip 10.8.0.58 186606 username morteza4424 186606 mac 186606 bytes_out 0 186606 bytes_in 0 186606 station_ip 83.123.16.216 186606 port 309 186606 unique_id port 186606 remote_ip 10.8.0.206 186610 username motamedi9772 186610 kill_reason Another user logged on this global unique id 186610 mac 186610 bytes_out 0 186610 bytes_in 0 186610 station_ip 83.123.108.207 186610 port 302 186610 unique_id port 186610 remote_ip 10.8.0.154 186611 username fezealinaghi 186611 mac 186611 bytes_out 298112 186611 bytes_in 1241982 186611 station_ip 83.123.67.137 186611 port 314 186611 unique_id port 186611 remote_ip 10.8.0.202 186613 username zahra1101 186613 mac 186613 bytes_out 0 186613 bytes_in 0 186562 remote_ip 10.8.0.202 186564 username zahra1101 186564 mac 186564 bytes_out 0 186564 bytes_in 0 186564 station_ip 5.119.92.247 186564 port 306 186564 unique_id port 186564 remote_ip 10.8.0.250 186567 username zahra1101 186567 mac 186567 bytes_out 0 186567 bytes_in 0 186567 station_ip 5.119.92.247 186567 port 306 186567 unique_id port 186567 remote_ip 10.8.0.250 186569 username shahruz 186569 kill_reason Maximum number of concurrent logins reached 186569 mac 186569 bytes_out 0 186569 bytes_in 0 186569 station_ip 5.209.56.108 186569 port 306 186569 unique_id port 186579 username barzegar8595 186579 kill_reason Another user logged on this global unique id 186579 mac 186579 bytes_out 0 186579 bytes_in 0 186579 station_ip 46.225.212.55 186579 port 310 186579 unique_id port 186580 username aminvpn 186580 mac 186580 bytes_out 42956 186580 bytes_in 100319 186580 station_ip 5.119.193.69 186580 port 312 186580 unique_id port 186580 remote_ip 10.8.0.58 186581 username zahra1101 186581 kill_reason Maximum check online fails reached 186581 mac 186581 bytes_out 0 186581 bytes_in 0 186581 station_ip 5.119.92.247 186581 port 307 186581 unique_id port 186582 username zahra1101 186582 mac 186582 bytes_out 3363 186582 bytes_in 5572 186582 station_ip 5.119.92.247 186582 port 314 186582 unique_id port 186582 remote_ip 10.8.0.250 186586 username zahra1101 186586 mac 186586 bytes_out 0 186586 bytes_in 0 186586 station_ip 5.119.92.247 186586 port 314 186586 unique_id port 186586 remote_ip 10.8.0.250 186588 username yazdani6029 186588 kill_reason Another user logged on this global unique id 186588 mac 186588 bytes_out 0 186588 bytes_in 0 186588 station_ip 83.123.36.204 186588 port 305 186588 unique_id port 186588 remote_ip 10.8.0.238 186593 username yarmohamadi7916 186593 kill_reason Another user logged on this global unique id 186593 mac 186593 bytes_out 0 186593 bytes_in 0 186593 station_ip 5.119.142.161 186593 port 304 186593 unique_id port 186595 username morteza4424 186595 mac 186595 bytes_out 2423208 186595 bytes_in 13986722 186595 station_ip 83.123.16.216 186595 port 312 186595 unique_id port 186595 remote_ip 10.8.0.206 186603 username zahra1101 186603 mac 186603 bytes_out 0 186603 bytes_in 0 186603 station_ip 5.119.92.247 186603 port 294 186603 unique_id port 186603 remote_ip 10.8.0.250 186605 username zahra1101 186605 mac 186605 bytes_out 0 186605 bytes_in 0 186605 station_ip 5.119.92.247 186605 port 309 186605 unique_id port 186605 remote_ip 10.8.0.250 186607 username aminvpn 186607 kill_reason Maximum check online fails reached 186607 mac 186607 bytes_out 0 186607 bytes_in 0 186607 station_ip 5.119.193.69 186607 port 294 186607 unique_id port 186608 username zahra1101 186608 mac 186608 bytes_out 0 186608 bytes_in 0 186608 station_ip 5.119.92.247 186608 port 312 186608 unique_id port 186608 remote_ip 10.8.0.250 186612 username mostafa_es78 186612 mac 186612 bytes_out 3275153 186612 bytes_in 31422085 186612 station_ip 83.122.136.171 186612 port 313 186612 unique_id port 186612 remote_ip 10.8.0.34 186614 username barzegar 186614 kill_reason Maximum check online fails reached 186614 mac 186614 bytes_out 0 186614 bytes_in 0 186614 station_ip 5.120.116.130 186614 port 309 186614 unique_id port 186615 username yazdani6029 186615 mac 186615 bytes_out 0 186615 bytes_in 0 186615 station_ip 83.123.36.204 186615 port 305 186615 unique_id port 186619 username saeed9658 186619 mac 186619 bytes_out 0 186619 bytes_in 0 186619 station_ip 5.119.79.182 186619 port 313 186577 nas_port_type Virtual 186577 remote_ip 5.5.5.128 186583 username saeed9658 186583 mac 186583 bytes_out 0 186583 bytes_in 0 186583 station_ip 5.119.79.182 186583 port 312 186583 unique_id port 186583 remote_ip 10.8.0.162 186590 username yaghobi 186590 mac 186590 bytes_out 107115 186590 bytes_in 172277 186590 station_ip 83.123.105.18 186590 port 316 186590 unique_id port 186590 remote_ip 10.8.0.138 186591 username yaghobi 186591 mac 186591 bytes_out 32624 186591 bytes_in 26444 186591 station_ip 83.123.83.97 186591 port 314 186591 unique_id port 186591 remote_ip 10.8.0.138 186592 username saeed9658 186592 mac 186592 bytes_out 0 186592 bytes_in 0 186592 station_ip 5.119.79.182 186592 port 315 186592 unique_id port 186592 remote_ip 10.8.0.162 186596 username zahra1101 186596 mac 186596 bytes_out 1790 186596 bytes_in 3919 186596 station_ip 5.119.92.247 186596 port 309 186596 unique_id port 186596 remote_ip 10.8.0.250 186598 username barzegar 186598 mac 186598 bytes_out 7137 186598 bytes_in 8421 186598 station_ip 5.120.116.130 186598 port 315 186598 unique_id port 186598 remote_ip 10.8.0.10 186600 username zahra1101 186600 mac 186600 bytes_out 0 186600 bytes_in 0 186600 station_ip 5.119.92.247 186600 port 311 186600 unique_id port 186600 remote_ip 10.8.0.250 186602 username alihosseini1 186602 mac 186602 bytes_out 4052355 186602 bytes_in 35953680 186602 station_ip 5.119.253.34 186602 port 294 186602 unique_id port 186602 remote_ip 10.8.0.70 186609 username morteza4424 186609 mac 186609 bytes_out 417732 186609 bytes_in 383943 186609 station_ip 83.123.16.216 186609 port 309 186609 unique_id port 186609 remote_ip 10.8.0.206 186616 username saeed9658 186616 mac 186616 bytes_out 0 186616 bytes_in 0 186616 station_ip 5.119.79.182 186616 port 312 186616 unique_id port 186616 remote_ip 10.8.0.162 186618 username motamedi9772 186618 kill_reason Another user logged on this global unique id 186618 mac 186618 bytes_out 0 186618 bytes_in 0 186618 station_ip 83.123.108.207 186618 port 302 186618 unique_id port 186620 username aminvpn 186620 mac 186620 bytes_out 0 186620 bytes_in 0 186620 station_ip 5.119.193.69 186620 port 314 186620 unique_id port 186620 remote_ip 10.8.0.58 186621 username shadkam 186621 mac 186621 bytes_out 4703 186621 bytes_in 12083 186621 station_ip 5.202.98.211 186621 port 312 186621 unique_id port 186621 remote_ip 10.8.0.74 186622 username motamedi9772 186622 mac 186622 bytes_out 0 186622 bytes_in 0 186622 station_ip 83.123.108.207 186622 port 302 186622 unique_id port 186624 username zahra1101 186624 kill_reason Maximum check online fails reached 186624 mac 186624 bytes_out 0 186624 bytes_in 0 186624 station_ip 5.119.92.247 186624 port 313 186624 unique_id port 186626 username motamedi9772 186626 mac 186626 bytes_out 0 186626 bytes_in 0 186626 station_ip 83.123.108.207 186626 port 315 186626 unique_id port 186626 remote_ip 10.8.0.154 186629 username saeed9658 186629 mac 186629 bytes_out 0 186629 bytes_in 0 186629 station_ip 5.119.79.182 186629 port 315 186629 unique_id port 186629 remote_ip 10.8.0.162 186632 username zahra1101 186632 mac 186632 bytes_out 0 186632 bytes_in 0 186632 station_ip 5.119.92.247 186632 port 302 186632 unique_id port 186632 remote_ip 10.8.0.250 186634 username aminvpn 186634 unique_id port 186634 terminate_cause Lost-Carrier 186634 bytes_out 4317474 186634 bytes_in 107375540 186634 station_ip 31.57.126.227 186634 port 15729037 186634 nas_port_type Virtual 186613 station_ip 5.119.92.247 186613 port 312 186613 unique_id port 186613 remote_ip 10.8.0.250 186617 username barzegar 186617 mac 186617 bytes_out 0 186617 bytes_in 0 186617 station_ip 5.120.116.130 186617 port 312 186617 unique_id port 186617 remote_ip 10.8.0.10 186623 username barzegar 186623 mac 186623 bytes_out 0 186623 bytes_in 0 186623 station_ip 5.120.116.130 186623 port 312 186623 unique_id port 186623 remote_ip 10.8.0.10 186631 username motamedi9772 186631 mac 186631 bytes_out 0 186631 bytes_in 0 186631 station_ip 83.123.108.207 186631 port 315 186631 unique_id port 186631 remote_ip 10.8.0.154 186633 username barzegar 186633 mac 186633 bytes_out 6571 186633 bytes_in 5849 186633 station_ip 5.120.116.130 186633 port 317 186633 unique_id port 186633 remote_ip 10.8.0.10 186636 username shadkam 186636 mac 186636 bytes_out 260525 186636 bytes_in 2890673 186636 station_ip 5.202.98.211 186636 port 318 186636 unique_id port 186636 remote_ip 10.8.0.74 186638 username morteza4424 186638 mac 186638 bytes_out 0 186638 bytes_in 0 186638 station_ip 83.123.16.216 186638 port 305 186638 unique_id port 186640 username rajaei 186640 mac 186640 bytes_out 116583 186640 bytes_in 608306 186640 station_ip 89.32.107.44 186640 port 302 186640 unique_id port 186640 remote_ip 10.8.0.210 186642 username zahra1101 186642 mac 186642 bytes_out 0 186642 bytes_in 0 186642 station_ip 5.119.92.247 186642 port 305 186642 unique_id port 186642 remote_ip 10.8.0.250 186645 username yarmohamadi7916 186645 kill_reason Another user logged on this global unique id 186645 mac 186645 bytes_out 0 186645 bytes_in 0 186645 station_ip 5.119.142.161 186645 port 304 186645 unique_id port 186646 username milan 186646 mac 186646 bytes_out 3196128 186646 bytes_in 29920123 186646 station_ip 5.119.108.114 186646 port 311 186646 unique_id port 186646 remote_ip 10.8.0.182 186648 username zahra1101 186648 mac 186648 bytes_out 0 186648 bytes_in 0 186648 station_ip 5.119.92.247 186648 port 305 186648 unique_id port 186648 remote_ip 10.8.0.250 186649 username zahra1101 186649 mac 186649 bytes_out 0 186649 bytes_in 0 186649 station_ip 5.119.92.247 186649 port 305 186649 unique_id port 186649 remote_ip 10.8.0.250 186652 username akbari0070 186652 kill_reason Another user logged on this global unique id 186652 mac 186652 bytes_out 0 186652 bytes_in 0 186652 station_ip 83.123.127.125 186652 port 314 186652 unique_id port 186652 remote_ip 10.8.0.166 186656 username morteza4424 186656 mac 186656 bytes_out 0 186656 bytes_in 0 186656 station_ip 83.123.16.216 186656 port 318 186656 unique_id port 186656 remote_ip 10.8.0.206 186658 username barzegar 186658 mac 186658 bytes_out 0 186658 bytes_in 0 186658 station_ip 5.120.116.130 186658 port 318 186658 unique_id port 186658 remote_ip 10.8.0.10 186665 username aminvpn 186665 mac 186665 bytes_out 0 186665 bytes_in 0 186665 station_ip 5.119.193.69 186665 port 310 186665 unique_id port 186665 remote_ip 10.8.0.58 186666 username saeed9658 186666 mac 186666 bytes_out 154217 186666 bytes_in 311338 186666 station_ip 5.119.79.182 186666 port 315 186666 unique_id port 186666 remote_ip 10.8.0.162 186668 username saeed9658 186668 mac 186668 bytes_out 0 186668 bytes_in 0 186668 station_ip 5.119.79.182 186668 port 319 186668 unique_id port 186668 remote_ip 10.8.0.162 186671 username barzegar 186671 mac 186671 bytes_out 0 186671 bytes_in 0 186671 station_ip 5.120.116.130 186619 unique_id port 186619 remote_ip 10.8.0.162 186625 username aminvpn 186625 unique_id port 186625 terminate_cause Lost-Carrier 186625 bytes_out 290095 186625 bytes_in 1046726 186625 station_ip 83.123.53.87 186625 port 15729038 186625 nas_port_type Virtual 186625 remote_ip 5.5.5.127 186627 username morteza4424 186627 kill_reason Another user logged on this global unique id 186627 mac 186627 bytes_out 0 186627 bytes_in 0 186627 station_ip 83.123.16.216 186627 port 305 186627 unique_id port 186627 remote_ip 10.8.0.206 186628 username zahra1101 186628 kill_reason Maximum check online fails reached 186628 mac 186628 bytes_out 0 186628 bytes_in 0 186628 station_ip 5.119.92.247 186628 port 316 186628 unique_id port 186630 username charkhandaz3496 186630 mac 186630 bytes_out 329165 186630 bytes_in 2720659 186630 station_ip 5.120.26.225 186630 port 302 186630 unique_id port 186630 remote_ip 10.8.0.90 186637 username zahra1101 186637 mac 186637 bytes_out 1650 186637 bytes_in 5098 186637 station_ip 5.119.92.247 186637 port 315 186637 unique_id port 186637 remote_ip 10.8.0.250 186639 username khademi 186639 kill_reason Another user logged on this global unique id 186639 mac 186639 bytes_out 0 186639 bytes_in 0 186639 station_ip 83.123.73.154 186639 port 259 186639 unique_id port 186647 username motamedi9772 186647 mac 186647 bytes_out 0 186647 bytes_in 0 186647 station_ip 83.123.108.207 186647 port 315 186647 unique_id port 186647 remote_ip 10.8.0.154 186650 username rajaei 186650 mac 186650 bytes_out 246087 186650 bytes_in 1831600 186650 station_ip 37.137.19.23 186650 port 302 186650 unique_id port 186650 remote_ip 10.8.0.210 186651 username motamedi9772 186651 mac 186651 bytes_out 0 186651 bytes_in 0 186651 station_ip 83.123.108.207 186651 port 305 186651 unique_id port 186651 remote_ip 10.8.0.154 186653 username barzegar 186653 kill_reason Maximum check online fails reached 186653 mac 186653 bytes_out 0 186653 bytes_in 0 186653 station_ip 5.120.116.130 186653 port 302 186653 unique_id port 186654 username morteza4424 186654 mac 186654 bytes_out 0 186654 bytes_in 0 186654 station_ip 83.123.16.216 186654 port 317 186654 unique_id port 186654 remote_ip 10.8.0.206 186659 username motamedi9772 186659 mac 186659 bytes_out 14826 186659 bytes_in 97691 186659 station_ip 83.123.108.207 186659 port 311 186659 unique_id port 186659 remote_ip 10.8.0.154 186662 username zahra1101 186662 mac 186662 bytes_out 0 186662 bytes_in 0 186662 station_ip 5.119.92.247 186662 port 310 186662 unique_id port 186662 remote_ip 10.8.0.250 186669 username barzegar 186669 mac 186669 bytes_out 0 186669 bytes_in 0 186669 station_ip 5.120.116.130 186669 port 318 186669 unique_id port 186669 remote_ip 10.8.0.10 186673 username morteza4424 186673 mac 186673 bytes_out 0 186673 bytes_in 0 186673 station_ip 83.123.16.216 186673 port 311 186673 unique_id port 186673 remote_ip 10.8.0.206 186674 username khademi 186674 kill_reason Another user logged on this global unique id 186674 mac 186674 bytes_out 0 186674 bytes_in 0 186674 station_ip 83.123.73.154 186674 port 259 186674 unique_id port 186677 username morteza4424 186677 mac 186677 bytes_out 0 186677 bytes_in 0 186677 station_ip 83.123.16.216 186677 port 315 186677 unique_id port 186677 remote_ip 10.8.0.206 186678 username motamedi9772 186678 mac 186678 bytes_out 0 186678 bytes_in 0 186678 station_ip 83.123.108.207 186678 port 310 186678 unique_id port 186678 remote_ip 10.8.0.154 186680 username zahra1101 186680 mac 186634 remote_ip 5.5.5.128 186635 username barzegar 186635 mac 186635 bytes_out 0 186635 bytes_in 0 186635 station_ip 5.120.116.130 186635 port 302 186635 unique_id port 186635 remote_ip 10.8.0.10 186641 username aminvpn 186641 mac 186641 bytes_out 0 186641 bytes_in 0 186641 station_ip 5.119.193.69 186641 port 317 186641 unique_id port 186641 remote_ip 10.8.0.58 186643 username morteza4424 186643 mac 186643 bytes_out 0 186643 bytes_in 0 186643 station_ip 83.123.16.216 186643 port 315 186643 unique_id port 186643 remote_ip 10.8.0.206 186644 username barzegar 186644 mac 186644 bytes_out 0 186644 bytes_in 0 186644 station_ip 5.120.116.130 186644 port 305 186644 unique_id port 186644 remote_ip 10.8.0.10 186655 username akbari0070 186655 mac 186655 bytes_out 0 186655 bytes_in 0 186655 station_ip 83.123.127.125 186655 port 314 186655 unique_id port 186657 username morteza4424 186657 mac 186657 bytes_out 0 186657 bytes_in 0 186657 station_ip 83.123.16.216 186657 port 314 186657 unique_id port 186657 remote_ip 10.8.0.206 186660 username barzegar8595 186660 mac 186660 bytes_out 0 186660 bytes_in 0 186660 station_ip 46.225.212.55 186660 port 310 186660 unique_id port 186661 username morteza4424 186661 mac 186661 bytes_out 0 186661 bytes_in 0 186661 station_ip 83.123.16.216 186661 port 311 186661 unique_id port 186661 remote_ip 10.8.0.206 186663 username shadkam 186663 mac 186663 bytes_out 0 186663 bytes_in 0 186663 station_ip 5.202.98.211 186663 port 314 186663 unique_id port 186663 remote_ip 10.8.0.74 186664 username houshang 186664 mac 186664 bytes_out 155724 186664 bytes_in 223565 186664 station_ip 5.119.117.59 186664 port 319 186664 unique_id port 186664 remote_ip 10.8.0.82 186667 username morteza4424 186667 mac 186667 bytes_out 0 186667 bytes_in 0 186667 station_ip 83.123.16.216 186667 port 314 186667 unique_id port 186667 remote_ip 10.8.0.206 186670 username zahra1101 186670 mac 186670 bytes_out 0 186670 bytes_in 0 186670 station_ip 5.119.92.247 186670 port 318 186670 unique_id port 186670 remote_ip 10.8.0.250 186672 username dortaj3792 186672 mac 186672 bytes_out 215022 186672 bytes_in 295847 186672 station_ip 5.119.146.223 186672 port 311 186672 unique_id port 186672 remote_ip 10.8.0.102 186676 username houshang 186676 mac 186676 bytes_out 281747 186676 bytes_in 2662107 186676 station_ip 5.119.117.59 186676 port 310 186676 unique_id port 186676 remote_ip 10.8.0.82 186679 username alikomsari 186679 kill_reason Another user logged on this global unique id 186679 mac 186679 bytes_out 0 186679 bytes_in 0 186679 station_ip 5.120.72.86 186679 port 305 186679 unique_id port 186679 remote_ip 10.8.0.214 186681 username yarmohamadi7916 186681 kill_reason Another user logged on this global unique id 186681 mac 186681 bytes_out 0 186681 bytes_in 0 186681 station_ip 5.119.142.161 186681 port 304 186681 unique_id port 186683 username morteza4424 186683 mac 186683 bytes_out 0 186683 bytes_in 0 186683 station_ip 83.123.16.216 186683 port 310 186683 unique_id port 186683 remote_ip 10.8.0.206 186684 username saeed9658 186684 mac 186684 bytes_out 0 186684 bytes_in 0 186684 station_ip 5.119.79.182 186684 port 315 186684 unique_id port 186684 remote_ip 10.8.0.162 186691 username akbari0070 186691 kill_reason Another user logged on this global unique id 186691 mac 186691 bytes_out 0 186691 bytes_in 0 186691 station_ip 83.123.127.125 186691 port 318 186691 unique_id port 186691 remote_ip 10.8.0.166 186671 port 319 186671 unique_id port 186671 remote_ip 10.8.0.10 186675 username motamedi9772 186675 mac 186675 bytes_out 96334 186675 bytes_in 978290 186675 station_ip 83.123.108.207 186675 port 315 186675 unique_id port 186675 remote_ip 10.8.0.154 186686 username morteza4424 186686 kill_reason Maximum check online fails reached 186686 mac 186686 bytes_out 0 186686 bytes_in 0 186686 station_ip 83.123.16.216 186686 port 319 186686 unique_id port 186689 username aminvpn 186689 mac 186689 bytes_out 0 186689 bytes_in 0 186689 station_ip 5.119.193.69 186689 port 320 186689 unique_id port 186689 remote_ip 10.8.0.58 186690 username morteza4424 186690 mac 186690 bytes_out 0 186690 bytes_in 0 186690 station_ip 83.123.16.216 186690 port 320 186690 unique_id port 186690 remote_ip 10.8.0.206 186693 username hamid.e 186693 unique_id port 186693 terminate_cause User-Request 186693 bytes_out 17562426 186693 bytes_in 411400792 186693 station_ip 37.27.0.45 186693 port 15729031 186693 nas_port_type Virtual 186693 remote_ip 5.5.5.139 186700 username houshang 186700 mac 186700 bytes_out 218075 186700 bytes_in 2418386 186700 station_ip 5.119.117.59 186700 port 310 186700 unique_id port 186700 remote_ip 10.8.0.82 186703 username farhad3 186703 mac 186703 bytes_out 3190188 186703 bytes_in 23160597 186703 station_ip 5.120.6.157 186703 port 311 186703 unique_id port 186703 remote_ip 10.8.0.222 186707 username morteza4424 186707 mac 186707 bytes_out 0 186707 bytes_in 0 186707 station_ip 83.123.16.216 186707 port 310 186707 unique_id port 186707 remote_ip 10.8.0.206 186711 username zahra1101 186711 mac 186711 bytes_out 0 186711 bytes_in 0 186711 station_ip 5.119.92.247 186711 port 320 186711 unique_id port 186711 remote_ip 10.8.0.250 186712 username soleymani5056 186712 mac 186712 bytes_out 0 186712 bytes_in 0 186712 station_ip 5.120.3.148 186712 port 310 186712 unique_id port 186712 remote_ip 10.8.0.226 186721 username morteza4424 186721 kill_reason Maximum check online fails reached 186721 mac 186721 bytes_out 0 186721 bytes_in 0 186721 station_ip 83.123.16.216 186721 port 305 186721 unique_id port 186724 username barzegar 186724 mac 186724 bytes_out 0 186724 bytes_in 0 186724 station_ip 5.120.116.130 186724 port 308 186724 unique_id port 186724 remote_ip 10.8.0.10 186729 username morteza4424 186729 mac 186729 bytes_out 0 186729 bytes_in 0 186729 station_ip 83.123.16.216 186729 port 320 186729 unique_id port 186729 remote_ip 10.8.0.206 186739 username morteza4424 186739 mac 186739 bytes_out 0 186739 bytes_in 0 186739 station_ip 83.123.16.216 186739 port 321 186739 unique_id port 186739 remote_ip 10.8.0.206 186741 username zahra1101 186741 mac 186741 bytes_out 0 186741 bytes_in 0 186741 station_ip 5.119.92.247 186741 port 321 186741 unique_id port 186741 remote_ip 10.8.0.250 186752 username yarmohamadi7916 186752 mac 186752 bytes_out 0 186752 bytes_in 0 186752 station_ip 5.119.142.161 186752 port 304 186752 unique_id port 186754 username barzegar 186754 mac 186754 bytes_out 0 186754 bytes_in 0 186754 station_ip 5.120.116.130 186754 port 273 186754 unique_id port 186754 remote_ip 10.8.0.10 186755 username zahra1101 186755 mac 186755 bytes_out 0 186755 bytes_in 0 186755 station_ip 5.119.92.247 186755 port 273 186755 unique_id port 186755 remote_ip 10.8.0.250 186762 username majidsarmast 186762 kill_reason Another user logged on this global unique id 186762 mac 186762 bytes_out 0 186762 bytes_in 0 186680 bytes_out 0 186680 bytes_in 0 186680 station_ip 5.119.92.247 186680 port 315 186680 unique_id port 186680 remote_ip 10.8.0.250 186682 username zahra1101 186682 mac 186682 bytes_out 0 186682 bytes_in 0 186682 station_ip 5.119.92.247 186682 port 315 186682 unique_id port 186682 remote_ip 10.8.0.250 186685 username morteza4424 186685 mac 186685 bytes_out 0 186685 bytes_in 0 186685 station_ip 83.123.16.216 186685 port 320 186685 unique_id port 186685 remote_ip 10.8.0.206 186687 username barzegar 186687 mac 186687 bytes_out 0 186687 bytes_in 0 186687 station_ip 5.120.116.130 186687 port 320 186687 unique_id port 186687 remote_ip 10.8.0.10 186688 username aminvpn 186688 mac 186688 bytes_out 0 186688 bytes_in 0 186688 station_ip 5.119.193.69 186688 port 320 186688 unique_id port 186688 remote_ip 10.8.0.58 186692 username zahra1101 186692 mac 186692 bytes_out 0 186692 bytes_in 0 186692 station_ip 5.119.92.247 186692 port 320 186692 unique_id port 186692 remote_ip 10.8.0.250 186694 username motamedi9772 186694 mac 186694 bytes_out 75438 186694 bytes_in 310014 186694 station_ip 83.123.108.207 186694 port 310 186694 unique_id port 186694 remote_ip 10.8.0.154 186695 username aminvpn 186695 mac 186695 bytes_out 0 186695 bytes_in 0 186695 station_ip 5.119.193.69 186695 port 310 186695 unique_id port 186695 remote_ip 10.8.0.58 186698 username morteza4424 186698 mac 186698 bytes_out 0 186698 bytes_in 0 186698 station_ip 83.123.16.216 186698 port 318 186698 unique_id port 186698 remote_ip 10.8.0.206 186701 username khademi 186701 kill_reason Another user logged on this global unique id 186701 mac 186701 bytes_out 0 186701 bytes_in 0 186701 station_ip 83.123.73.154 186701 port 259 186701 unique_id port 186702 username alikomsari 186702 mac 186702 bytes_out 0 186702 bytes_in 0 186702 station_ip 5.120.72.86 186702 port 305 186702 unique_id port 186704 username zahra1101 186704 mac 186704 bytes_out 0 186704 bytes_in 0 186704 station_ip 5.119.92.247 186704 port 310 186704 unique_id port 186704 remote_ip 10.8.0.250 186706 username morteza4424 186706 mac 186706 bytes_out 0 186706 bytes_in 0 186706 station_ip 83.123.16.216 186706 port 310 186706 unique_id port 186706 remote_ip 10.8.0.206 186708 username zahra1101 186708 mac 186708 bytes_out 0 186708 bytes_in 0 186708 station_ip 5.119.92.247 186708 port 310 186708 unique_id port 186708 remote_ip 10.8.0.250 186710 username zahra1101 186710 mac 186710 bytes_out 0 186710 bytes_in 0 186710 station_ip 5.119.92.247 186710 port 320 186710 unique_id port 186710 remote_ip 10.8.0.250 186713 username morteza4424 186713 mac 186713 bytes_out 0 186713 bytes_in 0 186713 station_ip 83.123.16.216 186713 port 311 186713 unique_id port 186713 remote_ip 10.8.0.206 186716 username morteza4424 186716 mac 186716 bytes_out 0 186716 bytes_in 0 186716 station_ip 83.123.16.216 186716 port 311 186716 unique_id port 186716 remote_ip 10.8.0.206 186718 username soleymani5056 186718 mac 186718 bytes_out 52343 186718 bytes_in 72979 186718 station_ip 5.120.3.148 186718 port 320 186718 unique_id port 186718 remote_ip 10.8.0.226 186719 username morteza4424 186719 mac 186719 bytes_out 0 186719 bytes_in 0 186719 station_ip 83.123.16.216 186719 port 311 186719 unique_id port 186719 remote_ip 10.8.0.206 186722 username barzegar 186722 mac 186722 bytes_out 0 186722 bytes_in 0 186722 station_ip 5.120.116.130 186722 port 320 186696 username akbari0070 186696 mac 186696 bytes_out 0 186696 bytes_in 0 186696 station_ip 83.123.127.125 186696 port 318 186696 unique_id port 186697 username barzegar 186697 mac 186697 bytes_out 0 186697 bytes_in 0 186697 station_ip 5.120.116.130 186697 port 318 186697 unique_id port 186697 remote_ip 10.8.0.10 186699 username mosi 186699 kill_reason Another user logged on this global unique id 186699 mac 186699 bytes_out 0 186699 bytes_in 0 186699 station_ip 151.235.79.93 186699 port 317 186699 unique_id port 186699 remote_ip 10.8.0.142 186705 username morteza4424 186705 mac 186705 bytes_out 0 186705 bytes_in 0 186705 station_ip 83.123.16.216 186705 port 320 186705 unique_id port 186705 remote_ip 10.8.0.206 186709 username morteza4424 186709 mac 186709 bytes_out 0 186709 bytes_in 0 186709 station_ip 83.123.16.216 186709 port 311 186709 unique_id port 186709 remote_ip 10.8.0.206 186714 username alikomsari 186714 mac 186714 bytes_out 631468 186714 bytes_in 3877054 186714 station_ip 5.120.72.86 186714 port 305 186714 unique_id port 186714 remote_ip 10.8.0.214 186715 username aminvpn 186715 mac 186715 bytes_out 0 186715 bytes_in 0 186715 station_ip 5.119.193.69 186715 port 305 186715 unique_id port 186715 remote_ip 10.8.0.58 186717 username zahra1101 186717 mac 186717 bytes_out 0 186717 bytes_in 0 186717 station_ip 5.119.92.247 186717 port 305 186717 unique_id port 186717 remote_ip 10.8.0.250 186720 username godarzi 186720 mac 186720 bytes_out 6681029 186720 bytes_in 42247675 186720 station_ip 5.202.29.254 186720 port 308 186720 unique_id port 186720 remote_ip 10.8.0.38 186723 username zahra1101 186723 mac 186723 bytes_out 0 186723 bytes_in 0 186723 station_ip 5.119.92.247 186723 port 320 186723 unique_id port 186723 remote_ip 10.8.0.250 186725 username yarmohamadi7916 186725 kill_reason Another user logged on this global unique id 186725 mac 186725 bytes_out 0 186725 bytes_in 0 186725 station_ip 5.119.142.161 186725 port 304 186725 unique_id port 186727 username kordestani 186727 mac 186727 bytes_out 1030285 186727 bytes_in 14094316 186727 station_ip 83.123.61.26 186727 port 310 186727 unique_id port 186727 remote_ip 10.8.0.130 186733 username dortaj3792 186733 mac 186733 bytes_out 180603 186733 bytes_in 175973 186733 station_ip 5.119.146.223 186733 port 321 186733 unique_id port 186733 remote_ip 10.8.0.102 186735 username barzegar 186735 mac 186735 bytes_out 0 186735 bytes_in 0 186735 station_ip 5.120.116.130 186735 port 320 186735 unique_id port 186735 remote_ip 10.8.0.10 186737 username aminvpn 186737 mac 186737 bytes_out 0 186737 bytes_in 0 186737 station_ip 5.119.193.69 186737 port 320 186737 unique_id port 186737 remote_ip 10.8.0.58 186738 username morteza4424 186738 mac 186738 bytes_out 0 186738 bytes_in 0 186738 station_ip 83.123.16.216 186738 port 320 186738 unique_id port 186738 remote_ip 10.8.0.206 186740 username morteza4424 186740 mac 186740 bytes_out 0 186740 bytes_in 0 186740 station_ip 83.123.16.216 186740 port 321 186740 unique_id port 186740 remote_ip 10.8.0.206 186745 username zahra1101 186745 mac 186745 bytes_out 0 186745 bytes_in 0 186745 station_ip 5.119.92.247 186745 port 322 186745 unique_id port 186745 remote_ip 10.8.0.250 186746 username morteza4424 186746 mac 186746 bytes_out 0 186746 bytes_in 0 186746 station_ip 83.123.16.216 186746 port 322 186746 unique_id port 186746 remote_ip 10.8.0.206 186749 username morteza4424 186722 unique_id port 186722 remote_ip 10.8.0.10 186726 username zahra1101 186726 mac 186726 bytes_out 0 186726 bytes_in 0 186726 station_ip 5.119.92.247 186726 port 320 186726 unique_id port 186726 remote_ip 10.8.0.250 186728 username morteza4424 186728 kill_reason Maximum check online fails reached 186728 mac 186728 bytes_out 0 186728 bytes_in 0 186728 station_ip 83.123.16.216 186728 port 308 186728 unique_id port 186730 username mosi 186730 kill_reason Another user logged on this global unique id 186730 mac 186730 bytes_out 0 186730 bytes_in 0 186730 station_ip 151.235.79.93 186730 port 317 186730 unique_id port 186731 username zahra1101 186731 mac 186731 bytes_out 0 186731 bytes_in 0 186731 station_ip 5.119.92.247 186731 port 310 186731 unique_id port 186731 remote_ip 10.8.0.250 186732 username zahra1101 186732 mac 186732 bytes_out 0 186732 bytes_in 0 186732 station_ip 5.119.92.247 186732 port 320 186732 unique_id port 186732 remote_ip 10.8.0.250 186734 username morteza4424 186734 mac 186734 bytes_out 0 186734 bytes_in 0 186734 station_ip 83.123.16.216 186734 port 321 186734 unique_id port 186734 remote_ip 10.8.0.206 186736 username morteza4424 186736 mac 186736 bytes_out 0 186736 bytes_in 0 186736 station_ip 83.123.16.216 186736 port 320 186736 unique_id port 186736 remote_ip 10.8.0.206 186742 username morteza4424 186742 mac 186742 bytes_out 0 186742 bytes_in 0 186742 station_ip 83.123.16.216 186742 port 322 186742 unique_id port 186742 remote_ip 10.8.0.206 186743 username morteza4424 186743 mac 186743 bytes_out 0 186743 bytes_in 0 186743 station_ip 83.123.16.216 186743 port 321 186743 unique_id port 186743 remote_ip 10.8.0.206 186744 username morteza4424 186744 mac 186744 bytes_out 0 186744 bytes_in 0 186744 station_ip 83.123.16.216 186744 port 321 186744 unique_id port 186744 remote_ip 10.8.0.206 186747 username morteza4424 186747 kill_reason Maximum check online fails reached 186747 mac 186747 bytes_out 0 186747 bytes_in 0 186747 station_ip 83.123.16.216 186747 port 321 186747 unique_id port 186748 username shadkam 186748 mac 186748 bytes_out 0 186748 bytes_in 0 186748 station_ip 5.202.98.211 186748 port 322 186748 unique_id port 186748 remote_ip 10.8.0.74 186750 username khorasani9135 186750 mac 186750 bytes_out 706758 186750 bytes_in 5185053 186750 station_ip 83.123.105.22 186750 port 273 186750 unique_id port 186750 remote_ip 10.8.0.126 186753 username morteza4424 186753 mac 186753 bytes_out 0 186753 bytes_in 0 186753 station_ip 83.123.16.216 186753 port 322 186753 unique_id port 186753 remote_ip 10.8.0.206 186756 username aminvpn 186756 mac 186756 bytes_out 0 186756 bytes_in 0 186756 station_ip 5.119.193.69 186756 port 322 186756 unique_id port 186756 remote_ip 10.8.0.58 186757 username morteza4424 186757 mac 186757 bytes_out 0 186757 bytes_in 0 186757 station_ip 83.123.16.216 186757 port 322 186757 unique_id port 186757 remote_ip 10.8.0.206 186759 username zahra1101 186759 mac 186759 bytes_out 0 186759 bytes_in 0 186759 station_ip 5.119.92.247 186759 port 324 186759 unique_id port 186759 remote_ip 10.8.0.250 186761 username saeed9658 186761 mac 186761 bytes_out 2359358 186761 bytes_in 19722119 186761 station_ip 5.119.79.182 186761 port 318 186761 unique_id port 186761 remote_ip 10.8.0.162 186765 username aminvpn 186765 mac 186765 bytes_out 0 186765 bytes_in 0 186765 station_ip 5.119.193.69 186765 port 324 186765 unique_id port 186749 mac 186749 bytes_out 0 186749 bytes_in 0 186749 station_ip 83.123.16.216 186749 port 323 186749 unique_id port 186749 remote_ip 10.8.0.206 186751 username zahra1101 186751 mac 186751 bytes_out 0 186751 bytes_in 0 186751 station_ip 5.119.92.247 186751 port 273 186751 unique_id port 186751 remote_ip 10.8.0.250 186758 username morteza4424 186758 mac 186758 bytes_out 0 186758 bytes_in 0 186758 station_ip 83.123.16.216 186758 port 322 186758 unique_id port 186758 remote_ip 10.8.0.206 186760 username barzegar 186760 mac 186760 bytes_out 0 186760 bytes_in 0 186760 station_ip 5.120.116.130 186760 port 324 186760 unique_id port 186760 remote_ip 10.8.0.10 186764 username yaghobi 186764 mac 186764 bytes_out 176758 186764 bytes_in 299798 186764 station_ip 83.123.58.170 186764 port 323 186764 unique_id port 186764 remote_ip 10.8.0.138 186766 username barzegar 186766 mac 186766 bytes_out 0 186766 bytes_in 0 186766 station_ip 5.120.116.130 186766 port 323 186766 unique_id port 186766 remote_ip 10.8.0.10 186767 username shadkam 186767 mac 186767 bytes_out 97954 186767 bytes_in 933488 186767 station_ip 5.202.98.211 186767 port 325 186767 unique_id port 186767 remote_ip 10.8.0.74 186768 username yaghobi 186768 mac 186768 bytes_out 308277 186768 bytes_in 1314823 186768 station_ip 83.123.49.241 186768 port 318 186768 unique_id port 186768 remote_ip 10.8.0.138 186772 username yaghobi 186772 mac 186772 bytes_out 1672 186772 bytes_in 13995 186772 station_ip 83.123.49.241 186772 port 324 186772 unique_id port 186772 remote_ip 10.8.0.138 186774 username esmaeilkazemi 186774 mac 186774 bytes_out 7969 186774 bytes_in 37809 186774 station_ip 83.123.33.157 186774 port 327 186774 unique_id port 186774 remote_ip 10.8.0.26 186776 username aminvpn 186776 mac 186776 bytes_out 0 186776 bytes_in 0 186776 station_ip 5.119.193.69 186776 port 327 186776 unique_id port 186776 remote_ip 10.8.0.58 186778 username soleymani5056 186778 mac 186778 bytes_out 89539 186778 bytes_in 305639 186778 station_ip 5.119.93.177 186778 port 324 186778 unique_id port 186778 remote_ip 10.8.0.226 186779 username mosi 186779 kill_reason Another user logged on this global unique id 186779 mac 186779 bytes_out 0 186779 bytes_in 0 186779 station_ip 151.235.79.93 186779 port 317 186779 unique_id port 186784 username zahra1101 186784 mac 186784 bytes_out 0 186784 bytes_in 0 186784 station_ip 5.119.92.247 186784 port 322 186784 unique_id port 186784 remote_ip 10.8.0.250 186788 username ayobi 186788 kill_reason Another user logged on this global unique id 186788 mac 186788 bytes_out 0 186788 bytes_in 0 186788 station_ip 37.27.11.47 186788 port 315 186788 unique_id port 186788 remote_ip 10.8.0.118 186794 username farhad3 186794 mac 186794 bytes_out 548264 186794 bytes_in 2778675 186794 station_ip 5.120.6.157 186794 port 324 186794 unique_id port 186794 remote_ip 10.8.0.222 186795 username zahra1101 186795 mac 186795 bytes_out 0 186795 bytes_in 0 186795 station_ip 5.119.92.247 186795 port 324 186795 unique_id port 186795 remote_ip 10.8.0.250 186797 username mostafa_es78 186797 mac 186797 bytes_out 0 186797 bytes_in 0 186797 station_ip 83.122.136.171 186797 port 327 186797 unique_id port 186797 remote_ip 10.8.0.34 186799 username shadkam 186799 mac 186799 bytes_out 3568284 186799 bytes_in 35575955 186799 station_ip 5.202.98.211 186799 port 323 186799 unique_id port 186799 remote_ip 10.8.0.74 186802 username motamedi9772 186762 station_ip 86.57.123.23 186762 port 312 186762 unique_id port 186762 remote_ip 10.8.0.170 186763 username barzegar 186763 mac 186763 bytes_out 0 186763 bytes_in 0 186763 station_ip 5.120.116.130 186763 port 318 186763 unique_id port 186763 remote_ip 10.8.0.10 186769 username alirezazadeh 186769 unique_id port 186769 terminate_cause Lost-Carrier 186769 bytes_out 250783 186769 bytes_in 3121040 186769 station_ip 5.119.203.130 186769 port 15729040 186769 nas_port_type Virtual 186769 remote_ip 5.5.5.126 186771 username yazdani6029 186771 mac 186771 bytes_out 2794867 186771 bytes_in 31568015 186771 station_ip 83.123.83.230 186771 port 273 186771 unique_id port 186771 remote_ip 10.8.0.238 186777 username zahra1101 186777 mac 186777 bytes_out 0 186777 bytes_in 0 186777 station_ip 5.119.92.247 186777 port 327 186777 unique_id port 186777 remote_ip 10.8.0.250 186781 username zahra1101 186781 mac 186781 bytes_out 0 186781 bytes_in 0 186781 station_ip 5.119.92.247 186781 port 324 186781 unique_id port 186781 remote_ip 10.8.0.250 186783 username morteza4424 186783 mac 186783 bytes_out 0 186783 bytes_in 0 186783 station_ip 83.123.16.216 186783 port 322 186783 unique_id port 186785 username charkhandaz3496 186785 mac 186785 bytes_out 1297896 186785 bytes_in 8145820 186785 station_ip 5.120.26.225 186785 port 320 186785 unique_id port 186785 remote_ip 10.8.0.90 186789 username hatami 186789 mac 186789 bytes_out 551789 186789 bytes_in 4652062 186789 station_ip 151.235.120.82 186789 port 329 186789 unique_id port 186789 remote_ip 10.8.0.98 186792 username ahmadi1 186792 mac 186792 bytes_out 43529 186792 bytes_in 125892 186792 station_ip 83.123.124.76 186792 port 322 186792 unique_id port 186792 remote_ip 10.8.0.94 186793 username aminvpn 186793 mac 186793 bytes_out 14757 186793 bytes_in 16214 186793 station_ip 5.119.193.69 186793 port 326 186793 unique_id port 186793 remote_ip 10.8.0.58 186796 username aminvpn 186796 kill_reason Maximum check online fails reached 186796 mac 186796 bytes_out 0 186796 bytes_in 0 186796 station_ip 5.119.193.69 186796 port 326 186796 unique_id port 186798 username mosi 186798 kill_reason Another user logged on this global unique id 186798 mac 186798 bytes_out 0 186798 bytes_in 0 186798 station_ip 151.235.79.93 186798 port 317 186798 unique_id port 186801 username aminvpn 186801 mac 186801 bytes_out 0 186801 bytes_in 0 186801 station_ip 5.119.193.69 186801 port 323 186801 unique_id port 186801 remote_ip 10.8.0.58 186804 username iranmanesh4443 186804 kill_reason Maximum check online fails reached 186804 mac 186804 bytes_out 0 186804 bytes_in 0 186804 station_ip 5.119.181.49 186804 port 322 186804 unique_id port 186805 username farhad3 186805 mac 186805 bytes_out 0 186805 bytes_in 0 186805 station_ip 5.120.6.157 186805 port 318 186805 unique_id port 186805 remote_ip 10.8.0.222 186806 username zahra1101 186806 mac 186806 bytes_out 0 186806 bytes_in 0 186806 station_ip 5.119.92.247 186806 port 318 186806 unique_id port 186806 remote_ip 10.8.0.250 186810 username zahra1101 186810 mac 186810 bytes_out 0 186810 bytes_in 0 186810 station_ip 5.119.92.247 186810 port 329 186810 unique_id port 186810 remote_ip 10.8.0.250 186812 username majidsarmast 186812 kill_reason Another user logged on this global unique id 186812 mac 186812 bytes_out 0 186812 bytes_in 0 186812 station_ip 86.57.123.23 186812 port 312 186812 unique_id port 186814 username mohammadmahdi 186814 kill_reason Relative expiration date has reached 186814 mac 186765 remote_ip 10.8.0.58 186770 username yaghobi 186770 mac 186770 bytes_out 4846 186770 bytes_in 8110 186770 station_ip 83.123.49.241 186770 port 323 186770 unique_id port 186770 remote_ip 10.8.0.138 186773 username morteza4424 186773 kill_reason Another user logged on this global unique id 186773 mac 186773 bytes_out 0 186773 bytes_in 0 186773 station_ip 83.123.16.216 186773 port 322 186773 unique_id port 186773 remote_ip 10.8.0.206 186775 username aminvpn 186775 unique_id port 186775 terminate_cause User-Request 186775 bytes_out 927325 186775 bytes_in 13428846 186775 station_ip 5.120.86.144 186775 port 15729041 186775 nas_port_type Virtual 186775 remote_ip 5.5.5.131 186780 username farhad3 186780 mac 186780 bytes_out 1999934 186780 bytes_in 22944266 186780 station_ip 5.120.6.157 186780 port 326 186780 unique_id port 186780 remote_ip 10.8.0.222 186782 username alikomsari 186782 mac 186782 bytes_out 5540194 186782 bytes_in 35431257 186782 station_ip 5.120.72.86 186782 port 311 186782 unique_id port 186782 remote_ip 10.8.0.214 186786 username akbari0070 186786 mac 186786 bytes_out 2305204 186786 bytes_in 16914403 186786 station_ip 83.123.60.113 186786 port 310 186786 unique_id port 186786 remote_ip 10.8.0.166 186787 username aminvpn 186787 mac 186787 bytes_out 1644 186787 bytes_in 3736 186787 station_ip 5.119.193.69 186787 port 320 186787 unique_id port 186787 remote_ip 10.8.0.58 186790 username sabaghnezhad 186790 mac 186790 bytes_out 119274 186790 bytes_in 500466 186790 station_ip 86.55.253.221 186790 port 318 186790 unique_id port 186790 remote_ip 10.8.0.66 186791 username mostafa_es78 186791 mac 186791 bytes_out 234362 186791 bytes_in 784598 186791 station_ip 83.122.136.171 186791 port 311 186791 unique_id port 186791 remote_ip 10.8.0.34 186800 username aminvpn 186800 mac 186800 bytes_out 339389 186800 bytes_in 1763405 186800 station_ip 5.119.36.146 186800 port 322 186800 unique_id port 186800 remote_ip 10.8.0.58 186807 username aminvpn 186807 kill_reason Maximum check online fails reached 186807 mac 186807 bytes_out 0 186807 bytes_in 0 186807 station_ip 5.119.193.69 186807 port 323 186807 unique_id port 186808 username farhad3 186808 mac 186808 bytes_out 0 186808 bytes_in 0 186808 station_ip 5.120.6.157 186808 port 329 186808 unique_id port 186808 remote_ip 10.8.0.222 186811 username farhad3 186811 mac 186811 bytes_out 0 186811 bytes_in 0 186811 station_ip 5.120.6.157 186811 port 318 186811 unique_id port 186811 remote_ip 10.8.0.222 186813 username zahra1101 186813 mac 186813 bytes_out 0 186813 bytes_in 0 186813 station_ip 5.119.92.247 186813 port 318 186813 unique_id port 186813 remote_ip 10.8.0.250 186817 username aminvpn 186817 mac 186817 bytes_out 0 186817 bytes_in 0 186817 station_ip 5.119.193.69 186817 port 327 186817 unique_id port 186817 remote_ip 10.8.0.58 186819 username ayobi 186819 kill_reason Another user logged on this global unique id 186819 mac 186819 bytes_out 0 186819 bytes_in 0 186819 station_ip 37.27.11.47 186819 port 315 186819 unique_id port 186823 username zahra1101 186823 mac 186823 bytes_out 0 186823 bytes_in 0 186823 station_ip 5.119.92.247 186823 port 329 186823 unique_id port 186823 remote_ip 10.8.0.250 186827 username motamedi9772 186827 mac 186827 bytes_out 0 186827 bytes_in 0 186827 station_ip 83.123.92.155 186827 port 325 186827 unique_id port 186829 username aminvpn 186829 mac 186829 bytes_out 0 186829 bytes_in 0 186829 station_ip 5.119.193.69 186829 port 317 186802 kill_reason Another user logged on this global unique id 186802 mac 186802 bytes_out 0 186802 bytes_in 0 186802 station_ip 83.123.92.155 186802 port 325 186802 unique_id port 186802 remote_ip 10.8.0.154 186803 username charkhandaz3496 186803 mac 186803 bytes_out 150715 186803 bytes_in 518307 186803 station_ip 5.120.26.225 186803 port 318 186803 unique_id port 186803 remote_ip 10.8.0.90 186809 username aminvpn 186809 mac 186809 bytes_out 291123 186809 bytes_in 1909854 186809 station_ip 5.119.36.146 186809 port 327 186809 unique_id port 186809 remote_ip 10.8.0.58 186815 username kalantary6037 186815 mac 186815 bytes_out 1598214 186815 bytes_in 13854395 186815 station_ip 83.123.123.211 186815 port 320 186815 unique_id port 186815 remote_ip 10.8.0.50 186818 username godarzi 186818 mac 186818 bytes_out 7985274 186818 bytes_in 12903091 186818 station_ip 5.120.84.169 186818 port 304 186818 unique_id port 186818 remote_ip 10.8.0.38 186824 username alihosseini1 186824 mac 186824 bytes_out 2115804 186824 bytes_in 19457724 186824 station_ip 5.119.26.109 186824 port 311 186824 unique_id port 186824 remote_ip 10.8.0.70 186826 username godarzi 186826 mac 186826 bytes_out 0 186826 bytes_in 0 186826 station_ip 5.120.84.169 186826 port 317 186826 unique_id port 186826 remote_ip 10.8.0.38 186830 username yazdani6029 186830 mac 186830 bytes_out 5162817 186830 bytes_in 56216447 186830 station_ip 83.123.83.230 186830 port 328 186830 unique_id port 186830 remote_ip 10.8.0.238 186834 username shadkam 186834 mac 186834 bytes_out 0 186834 bytes_in 0 186834 station_ip 5.202.98.211 186834 port 273 186834 unique_id port 186834 remote_ip 10.8.0.74 186835 username zahra1101 186835 mac 186835 bytes_out 0 186835 bytes_in 0 186835 station_ip 5.120.182.35 186835 port 273 186835 unique_id port 186835 remote_ip 10.8.0.250 186839 username ayobi 186839 kill_reason Another user logged on this global unique id 186839 mac 186839 bytes_out 0 186839 bytes_in 0 186839 station_ip 37.27.11.47 186839 port 315 186839 unique_id port 186843 username aminvpn 186843 mac 186843 bytes_out 0 186843 bytes_in 0 186843 station_ip 5.119.193.69 186843 port 325 186843 unique_id port 186843 remote_ip 10.8.0.58 186845 username zahra1101 186845 kill_reason Maximum check online fails reached 186845 mac 186845 bytes_out 0 186845 bytes_in 0 186845 station_ip 5.120.182.35 186845 port 324 186845 unique_id port 186847 username zahra1101 186847 mac 186847 bytes_out 0 186847 bytes_in 0 186847 station_ip 5.120.182.35 186847 port 330 186847 unique_id port 186847 remote_ip 10.8.0.250 186850 username alihosseini1 186850 mac 186850 bytes_out 1282802 186850 bytes_in 7675111 186850 station_ip 5.119.26.109 186850 port 311 186850 unique_id port 186850 remote_ip 10.8.0.70 186855 username aminvpn 186855 mac 186855 bytes_out 0 186855 bytes_in 0 186855 station_ip 5.119.193.69 186855 port 333 186855 unique_id port 186855 remote_ip 10.8.0.58 186858 username barzegar 186858 mac 186858 bytes_out 1790 186858 bytes_in 4285 186858 station_ip 5.120.116.130 186858 port 332 186858 unique_id port 186858 remote_ip 10.8.0.10 186859 username zahra1101 186859 mac 186859 bytes_out 2627058 186859 bytes_in 15751928 186859 station_ip 5.120.182.35 186859 port 325 186859 unique_id port 186859 remote_ip 10.8.0.250 186860 username shadkam 186860 kill_reason Maximum check online fails reached 186860 mac 186860 bytes_out 0 186860 bytes_in 0 186860 station_ip 5.202.98.211 186860 port 325 186860 unique_id port 186814 bytes_out 0 186814 bytes_in 0 186814 station_ip 5.119.127.146 186814 port 318 186814 unique_id port 186816 username farhad3 186816 mac 186816 bytes_out 0 186816 bytes_in 0 186816 station_ip 5.120.6.157 186816 port 320 186816 unique_id port 186816 remote_ip 10.8.0.222 186820 username shadkam 186820 mac 186820 bytes_out 0 186820 bytes_in 0 186820 station_ip 5.202.98.211 186820 port 304 186820 unique_id port 186820 remote_ip 10.8.0.74 186821 username aminvpn 186821 kill_reason Maximum check online fails reached 186821 mac 186821 bytes_out 0 186821 bytes_in 0 186821 station_ip 5.119.193.69 186821 port 320 186821 unique_id port 186822 username mosi 186822 mac 186822 bytes_out 0 186822 bytes_in 0 186822 station_ip 151.235.79.93 186822 port 317 186822 unique_id port 186825 username zahra1101 186825 mac 186825 bytes_out 0 186825 bytes_in 0 186825 station_ip 5.119.92.247 186825 port 311 186825 unique_id port 186825 remote_ip 10.8.0.250 186828 username mostafa_es78 186828 mac 186828 bytes_out 1130651 186828 bytes_in 8624187 186828 station_ip 83.122.99.164 186828 port 327 186828 unique_id port 186828 remote_ip 10.8.0.34 186836 username zahra1101 186836 kill_reason Maximum check online fails reached 186836 mac 186836 bytes_out 0 186836 bytes_in 0 186836 station_ip 5.120.182.35 186836 port 318 186836 unique_id port 186837 username zahra1101 186837 mac 186837 bytes_out 0 186837 bytes_in 0 186837 station_ip 5.120.182.35 186837 port 273 186837 unique_id port 186837 remote_ip 10.8.0.250 186838 username majidsarmast 186838 kill_reason Another user logged on this global unique id 186838 mac 186838 bytes_out 0 186838 bytes_in 0 186838 station_ip 86.57.123.23 186838 port 312 186838 unique_id port 186840 username malekpoir 186840 mac 186840 bytes_out 4447649 186840 bytes_in 36250499 186840 station_ip 5.119.238.21 186840 port 298 186840 unique_id port 186840 remote_ip 10.8.0.18 186848 username sabaghnezhad 186848 mac 186848 bytes_out 12717 186848 bytes_in 13595 186848 station_ip 86.55.253.221 186848 port 325 186848 unique_id port 186848 remote_ip 10.8.0.66 186849 username mostafa_es78 186849 mac 186849 bytes_out 535877 186849 bytes_in 6886441 186849 station_ip 83.122.99.164 186849 port 327 186849 unique_id port 186849 remote_ip 10.8.0.34 186851 username zahra1101 186851 kill_reason Maximum check online fails reached 186851 mac 186851 bytes_out 0 186851 bytes_in 0 186851 station_ip 5.120.182.35 186851 port 329 186851 unique_id port 186852 username khademi 186852 kill_reason Another user logged on this global unique id 186852 mac 186852 bytes_out 0 186852 bytes_in 0 186852 station_ip 83.123.73.154 186852 port 259 186852 unique_id port 186853 username barzegar 186853 mac 186853 bytes_out 2390 186853 bytes_in 4828 186853 station_ip 5.120.116.130 186853 port 332 186853 unique_id port 186853 remote_ip 10.8.0.10 186854 username aminvpn 186854 mac 186854 bytes_out 3283610 186854 bytes_in 26544225 186854 station_ip 5.119.36.146 186854 port 328 186854 unique_id port 186854 remote_ip 10.8.0.58 186856 username mostafa_es78 186856 mac 186856 bytes_out 1150607 186856 bytes_in 4716188 186856 station_ip 83.122.99.164 186856 port 330 186856 unique_id port 186856 remote_ip 10.8.0.34 186862 username khademi 186862 kill_reason Another user logged on this global unique id 186862 mac 186862 bytes_out 0 186862 bytes_in 0 186862 station_ip 83.123.73.154 186862 port 259 186862 unique_id port 186863 username aminvpn 186863 mac 186863 bytes_out 898398 186829 unique_id port 186829 remote_ip 10.8.0.58 186831 username barzegar 186831 mac 186831 bytes_out 88417 186831 bytes_in 222845 186831 station_ip 5.120.116.130 186831 port 273 186831 unique_id port 186831 remote_ip 10.8.0.10 186832 username zahra1101 186832 mac 186832 bytes_out 0 186832 bytes_in 0 186832 station_ip 5.120.182.35 186832 port 273 186832 unique_id port 186832 remote_ip 10.8.0.250 186833 username charkhandaz3496 186833 mac 186833 bytes_out 181776 186833 bytes_in 101635 186833 station_ip 5.119.133.139 186833 port 318 186833 unique_id port 186833 remote_ip 10.8.0.90 186841 username akbari0070 186841 kill_reason Another user logged on this global unique id 186841 mac 186841 bytes_out 0 186841 bytes_in 0 186841 station_ip 83.123.60.113 186841 port 310 186841 unique_id port 186841 remote_ip 10.8.0.166 186842 username iranmanesh4443 186842 mac 186842 bytes_out 1552739 186842 bytes_in 14501844 186842 station_ip 5.119.181.49 186842 port 324 186842 unique_id port 186842 remote_ip 10.8.0.22 186844 username zahra1101 186844 mac 186844 bytes_out 0 186844 bytes_in 0 186844 station_ip 5.120.182.35 186844 port 327 186844 unique_id port 186844 remote_ip 10.8.0.250 186846 username zahra1101 186846 mac 186846 bytes_out 0 186846 bytes_in 0 186846 station_ip 5.120.182.35 186846 port 329 186846 unique_id port 186846 remote_ip 10.8.0.250 186857 username esmaeilkazemi 186857 mac 186857 bytes_out 1012353 186857 bytes_in 10197235 186857 station_ip 83.123.33.157 186857 port 331 186857 unique_id port 186857 remote_ip 10.8.0.26 186864 username houshang 186864 mac 186864 bytes_out 320360 186864 bytes_in 3278961 186864 station_ip 5.119.117.59 186864 port 310 186864 unique_id port 186864 remote_ip 10.8.0.82 186868 username barzegar 186868 mac 186868 bytes_out 2356 186868 bytes_in 4583 186868 station_ip 5.120.116.130 186868 port 310 186868 unique_id port 186868 remote_ip 10.8.0.10 186875 username sekonji0496 186875 mac 186875 bytes_out 2174 186875 bytes_in 4110 186875 station_ip 83.123.57.131 186875 port 310 186875 unique_id port 186875 remote_ip 10.8.0.62 186881 username sekonji0496 186881 mac 186881 bytes_out 2116 186881 bytes_in 4208 186881 station_ip 83.123.57.131 186881 port 298 186881 unique_id port 186881 remote_ip 10.8.0.62 186884 username kalantary6037 186884 mac 186884 bytes_out 2384898 186884 bytes_in 20514994 186884 station_ip 83.123.80.87 186884 port 332 186884 unique_id port 186884 remote_ip 10.8.0.50 186887 username aminvpn 186887 mac 186887 bytes_out 0 186887 bytes_in 0 186887 station_ip 5.119.193.69 186887 port 310 186887 unique_id port 186887 remote_ip 10.8.0.58 186890 username sekonji0496 186890 mac 186890 bytes_out 531246 186890 bytes_in 9272488 186890 station_ip 83.123.57.131 186890 port 298 186890 unique_id port 186890 remote_ip 10.8.0.62 186891 username majidsarmast 186891 mac 186891 bytes_out 0 186891 bytes_in 0 186891 station_ip 86.57.123.23 186891 port 312 186891 unique_id port 186893 username aminvpn 186893 mac 186893 bytes_out 0 186893 bytes_in 0 186893 station_ip 5.119.193.69 186893 port 328 186893 unique_id port 186893 remote_ip 10.8.0.58 186894 username aminvpn 186894 mac 186894 bytes_out 0 186894 bytes_in 0 186894 station_ip 5.119.193.69 186894 port 328 186894 unique_id port 186894 remote_ip 10.8.0.58 186899 username alihosseini1 186899 kill_reason Another user logged on this global unique id 186899 mac 186899 bytes_out 0 186899 bytes_in 0 186899 station_ip 5.120.21.143 186861 username akbari0070 186861 mac 186861 bytes_out 0 186861 bytes_in 0 186861 station_ip 83.123.60.113 186861 port 310 186861 unique_id port 186865 username barzegar 186865 mac 186865 bytes_out 0 186865 bytes_in 0 186865 station_ip 5.120.116.130 186865 port 333 186865 unique_id port 186865 remote_ip 10.8.0.10 186869 username sekonji0496 186869 mac 186869 bytes_out 500687 186869 bytes_in 6687967 186869 station_ip 83.123.57.131 186869 port 328 186869 unique_id port 186869 remote_ip 10.8.0.62 186872 username sekonji0496 186872 mac 186872 bytes_out 49100 186872 bytes_in 222452 186872 station_ip 83.123.57.131 186872 port 310 186872 unique_id port 186872 remote_ip 10.8.0.62 186873 username sekonji0496 186873 mac 186873 bytes_out 2080 186873 bytes_in 4196 186873 station_ip 83.123.57.131 186873 port 310 186873 unique_id port 186873 remote_ip 10.8.0.62 186877 username khorasani9135 186877 mac 186877 bytes_out 1973322 186877 bytes_in 20545356 186877 station_ip 83.123.105.22 186877 port 298 186877 unique_id port 186877 remote_ip 10.8.0.126 186879 username aminvpn 186879 kill_reason Maximum check online fails reached 186879 mac 186879 bytes_out 0 186879 bytes_in 0 186879 station_ip 5.119.193.69 186879 port 330 186879 unique_id port 186880 username shadkam 186880 mac 186880 bytes_out 0 186880 bytes_in 0 186880 station_ip 5.202.98.211 186880 port 331 186880 unique_id port 186882 username kordestani 186882 mac 186882 bytes_out 2848563 186882 bytes_in 32833177 186882 station_ip 151.235.92.180 186882 port 311 186882 unique_id port 186882 remote_ip 10.8.0.130 186886 username farhad3 186886 kill_reason Another user logged on this global unique id 186886 mac 186886 bytes_out 0 186886 bytes_in 0 186886 station_ip 5.120.6.157 186886 port 304 186886 unique_id port 186888 username barzegar 186888 mac 186888 bytes_out 0 186888 bytes_in 0 186888 station_ip 5.120.116.130 186888 port 311 186888 unique_id port 186888 remote_ip 10.8.0.10 186892 username majidsarmast 186892 mac 186892 bytes_out 22149 186892 bytes_in 35294 186892 station_ip 86.57.123.23 186892 port 298 186892 unique_id port 186892 remote_ip 10.8.0.170 186896 username aminvpn 186896 mac 186896 bytes_out 1644 186896 bytes_in 3683 186896 station_ip 5.119.193.69 186896 port 328 186896 unique_id port 186896 remote_ip 10.8.0.58 186897 username aminvpn 186897 mac 186897 bytes_out 0 186897 bytes_in 0 186897 station_ip 5.119.193.69 186897 port 328 186897 unique_id port 186897 remote_ip 10.8.0.58 186898 username aminvpn 186898 mac 186898 bytes_out 0 186898 bytes_in 0 186898 station_ip 5.119.193.69 186898 port 328 186898 unique_id port 186898 remote_ip 10.8.0.58 186901 username charkhandaz3496 186901 mac 186901 bytes_out 4966617 186901 bytes_in 47074118 186901 station_ip 5.119.133.139 186901 port 273 186901 unique_id port 186901 remote_ip 10.8.0.90 186903 username sekonji0496 186903 mac 186903 bytes_out 366346 186903 bytes_in 3241327 186903 station_ip 83.123.57.131 186903 port 312 186903 unique_id port 186903 remote_ip 10.8.0.62 186908 username shadkam 186908 mac 186908 bytes_out 1740827 186908 bytes_in 15417767 186908 station_ip 5.202.98.211 186908 port 311 186908 unique_id port 186908 remote_ip 10.8.0.74 186916 username soleymani5056 186916 mac 186916 bytes_out 101428 186916 bytes_in 206434 186916 station_ip 5.119.152.167 186916 port 331 186916 unique_id port 186916 remote_ip 10.8.0.226 186917 username aminvpn 186917 mac 186917 bytes_out 0 186863 bytes_in 2569439 186863 station_ip 5.119.36.146 186863 port 334 186863 unique_id port 186863 remote_ip 10.8.0.58 186866 username majidsarmast 186866 kill_reason Another user logged on this global unique id 186866 mac 186866 bytes_out 0 186866 bytes_in 0 186866 station_ip 86.57.123.23 186866 port 312 186866 unique_id port 186867 username aminvpn 186867 mac 186867 bytes_out 0 186867 bytes_in 0 186867 station_ip 5.119.193.69 186867 port 335 186867 unique_id port 186867 remote_ip 10.8.0.58 186870 username zahra1101 186870 mac 186870 bytes_out 2911119 186870 bytes_in 18354332 186870 station_ip 5.120.77.233 186870 port 330 186870 unique_id port 186870 remote_ip 10.8.0.250 186871 username farhad3 186871 kill_reason Another user logged on this global unique id 186871 mac 186871 bytes_out 0 186871 bytes_in 0 186871 station_ip 5.120.6.157 186871 port 304 186871 unique_id port 186871 remote_ip 10.8.0.222 186874 username shadkam 186874 kill_reason Another user logged on this global unique id 186874 mac 186874 bytes_out 0 186874 bytes_in 0 186874 station_ip 5.202.98.211 186874 port 331 186874 unique_id port 186874 remote_ip 10.8.0.74 186876 username barzegar 186876 mac 186876 bytes_out 7926 186876 bytes_in 10770 186876 station_ip 5.120.116.130 186876 port 328 186876 unique_id port 186876 remote_ip 10.8.0.10 186878 username majidsarmast 186878 kill_reason Another user logged on this global unique id 186878 mac 186878 bytes_out 0 186878 bytes_in 0 186878 station_ip 86.57.123.23 186878 port 312 186878 unique_id port 186883 username aminvpn 186883 mac 186883 bytes_out 3693845 186883 bytes_in 38476693 186883 station_ip 5.119.36.146 186883 port 333 186883 unique_id port 186883 remote_ip 10.8.0.58 186885 username sekonji0496 186885 mac 186885 bytes_out 2116 186885 bytes_in 4131 186885 station_ip 83.123.57.131 186885 port 298 186885 unique_id port 186885 remote_ip 10.8.0.62 186889 username aminvpn 186889 mac 186889 bytes_out 1644 186889 bytes_in 4405 186889 station_ip 5.119.193.69 186889 port 310 186889 unique_id port 186889 remote_ip 10.8.0.58 186895 username barzegar 186895 mac 186895 bytes_out 0 186895 bytes_in 0 186895 station_ip 5.120.116.130 186895 port 328 186895 unique_id port 186895 remote_ip 10.8.0.10 186902 username rahim 186902 kill_reason Another user logged on this global unique id 186902 mac 186902 bytes_out 0 186902 bytes_in 0 186902 station_ip 5.119.57.111 186902 port 298 186902 unique_id port 186902 remote_ip 10.8.0.134 186905 username sekonji0496 186905 mac 186905 bytes_out 0 186905 bytes_in 0 186905 station_ip 83.123.57.131 186905 port 273 186905 unique_id port 186905 remote_ip 10.8.0.62 186907 username aminvpn 186907 unique_id port 186907 terminate_cause Lost-Carrier 186907 bytes_out 201163 186907 bytes_in 634638 186907 station_ip 83.123.82.85 186907 port 15729044 186907 nas_port_type Virtual 186907 remote_ip 5.5.5.124 186910 username farhad3 186910 kill_reason Another user logged on this global unique id 186910 mac 186910 bytes_out 0 186910 bytes_in 0 186910 station_ip 5.120.6.157 186910 port 304 186910 unique_id port 186913 username charkhandaz3496 186913 mac 186913 bytes_out 311987 186913 bytes_in 2380354 186913 station_ip 5.119.133.139 186913 port 311 186913 unique_id port 186913 remote_ip 10.8.0.90 186914 username sekonji0496 186914 mac 186914 bytes_out 119295 186914 bytes_in 397853 186914 station_ip 83.123.57.131 186914 port 312 186914 unique_id port 186914 remote_ip 10.8.0.62 186915 username barzegar 186915 mac 186915 bytes_out 0 186915 bytes_in 0 186899 port 327 186899 unique_id port 186899 remote_ip 10.8.0.70 186900 username kordestani 186900 kill_reason Another user logged on this global unique id 186900 mac 186900 bytes_out 0 186900 bytes_in 0 186900 station_ip 151.235.92.180 186900 port 310 186900 unique_id port 186900 remote_ip 10.8.0.130 186904 username aminvpn 186904 kill_reason Maximum check online fails reached 186904 mac 186904 bytes_out 0 186904 bytes_in 0 186904 station_ip 5.119.193.69 186904 port 328 186904 unique_id port 186906 username barzegar 186906 mac 186906 bytes_out 0 186906 bytes_in 0 186906 station_ip 5.120.116.130 186906 port 312 186906 unique_id port 186906 remote_ip 10.8.0.10 186909 username rahim 186909 kill_reason Another user logged on this global unique id 186909 mac 186909 bytes_out 0 186909 bytes_in 0 186909 station_ip 5.119.57.111 186909 port 298 186909 unique_id port 186911 username aminvpn 186911 mac 186911 bytes_out 0 186911 bytes_in 0 186911 station_ip 5.119.193.69 186911 port 333 186911 unique_id port 186911 remote_ip 10.8.0.58 186912 username aminvpn 186912 mac 186912 bytes_out 1644 186912 bytes_in 4983 186912 station_ip 5.119.193.69 186912 port 333 186912 unique_id port 186912 remote_ip 10.8.0.58 186918 username aminvpn 186918 mac 186918 bytes_out 0 186918 bytes_in 0 186918 station_ip 5.119.193.69 186918 port 331 186918 unique_id port 186918 remote_ip 10.8.0.58 186921 username aminvpn 186921 mac 186921 bytes_out 0 186921 bytes_in 0 186921 station_ip 5.119.193.69 186921 port 333 186921 unique_id port 186921 remote_ip 10.8.0.58 186928 username farhad3 186928 kill_reason Another user logged on this global unique id 186928 mac 186928 bytes_out 0 186928 bytes_in 0 186928 station_ip 5.120.6.157 186928 port 304 186928 unique_id port 186928 remote_ip 10.8.0.222 186934 username motamedi9772 186934 mac 186934 bytes_out 2473335 186934 bytes_in 21675249 186934 station_ip 83.123.48.223 186934 port 273 186934 unique_id port 186934 remote_ip 10.8.0.154 186938 username alihosseini1 186938 kill_reason Another user logged on this global unique id 186938 mac 186938 bytes_out 0 186938 bytes_in 0 186938 station_ip 5.120.21.143 186938 port 327 186938 unique_id port 186948 username charkhandaz3496 186948 mac 186948 bytes_out 396931 186948 bytes_in 2301883 186948 station_ip 5.119.133.139 186948 port 298 186948 unique_id port 186948 remote_ip 10.8.0.90 186950 username aminvpn 186950 mac 186950 bytes_out 0 186950 bytes_in 0 186950 station_ip 5.119.193.69 186950 port 298 186950 unique_id port 186950 remote_ip 10.8.0.58 186954 username alihosseini1 186954 kill_reason Another user logged on this global unique id 186954 mac 186954 bytes_out 0 186954 bytes_in 0 186954 station_ip 5.120.21.143 186954 port 327 186954 unique_id port 186957 username soleymani5056 186957 mac 186957 bytes_out 94865 186957 bytes_in 119109 186957 station_ip 5.120.147.98 186957 port 312 186957 unique_id port 186957 remote_ip 10.8.0.226 186959 username aminvpn 186959 kill_reason Maximum check online fails reached 186959 mac 186959 bytes_out 0 186959 bytes_in 0 186959 station_ip 5.119.193.69 186959 port 331 186959 unique_id port 186961 username alihosseini1 186961 mac 186961 bytes_out 0 186961 bytes_in 0 186961 station_ip 5.120.21.143 186961 port 327 186961 unique_id port 186963 username aminvpn 186963 mac 186963 bytes_out 0 186963 bytes_in 0 186963 station_ip 5.119.193.69 186963 port 312 186963 unique_id port 186963 remote_ip 10.8.0.58 186964 username aminvpn 186964 kill_reason Maximum check online fails reached 186915 station_ip 5.120.116.130 186915 port 311 186915 unique_id port 186915 remote_ip 10.8.0.10 186923 username soleymani5056 186923 mac 186923 bytes_out 105857 186923 bytes_in 136758 186923 station_ip 5.120.181.174 186923 port 311 186923 unique_id port 186923 remote_ip 10.8.0.226 186924 username aminvpn 186924 mac 186924 bytes_out 1644 186924 bytes_in 4983 186924 station_ip 5.119.193.69 186924 port 333 186924 unique_id port 186924 remote_ip 10.8.0.58 186926 username mostafa_es78 186926 mac 186926 bytes_out 0 186926 bytes_in 0 186926 station_ip 83.122.136.171 186926 port 333 186926 unique_id port 186926 remote_ip 10.8.0.34 186927 username rahim 186927 kill_reason Another user logged on this global unique id 186927 mac 186927 bytes_out 0 186927 bytes_in 0 186927 station_ip 5.119.57.111 186927 port 298 186927 unique_id port 186929 username barzegar 186929 mac 186929 bytes_out 0 186929 bytes_in 0 186929 station_ip 5.120.116.130 186929 port 312 186929 unique_id port 186929 remote_ip 10.8.0.10 186931 username hadibarzegar 186931 mac 186931 bytes_out 280534 186931 bytes_in 3084383 186931 station_ip 83.123.67.217 186931 port 331 186931 unique_id port 186931 remote_ip 10.8.0.186 186933 username soleymani5056 186933 mac 186933 bytes_out 276003 186933 bytes_in 1652193 186933 station_ip 5.120.117.30 186933 port 334 186933 unique_id port 186933 remote_ip 10.8.0.226 186935 username aminvpn 186935 mac 186935 bytes_out 0 186935 bytes_in 0 186935 station_ip 5.119.193.69 186935 port 273 186935 unique_id port 186935 remote_ip 10.8.0.58 186936 username farhad3 186936 kill_reason Another user logged on this global unique id 186936 mac 186936 bytes_out 0 186936 bytes_in 0 186936 station_ip 5.120.6.157 186936 port 304 186936 unique_id port 186939 username aminvpn 186939 unique_id port 186939 terminate_cause User-Request 186939 bytes_out 3223418 186939 bytes_in 55061698 186939 station_ip 5.119.193.69 186939 port 15729043 186939 nas_port_type Virtual 186939 remote_ip 5.5.5.125 186940 username barzegar 186940 kill_reason Another user logged on this global unique id 186940 mac 186940 bytes_out 0 186940 bytes_in 0 186940 station_ip 5.120.116.130 186940 port 273 186940 unique_id port 186941 username barzegar 186941 kill_reason Another user logged on this global unique id 186941 mac 186941 bytes_out 0 186941 bytes_in 0 186941 station_ip 5.120.116.130 186941 port 273 186941 unique_id port 186944 username farhad3 186944 kill_reason Another user logged on this global unique id 186944 mac 186944 bytes_out 0 186944 bytes_in 0 186944 station_ip 5.120.6.157 186944 port 304 186944 unique_id port 186945 username yaghobi 186945 mac 186945 bytes_out 607838 186945 bytes_in 2111694 186945 station_ip 83.123.101.152 186945 port 312 186945 unique_id port 186945 remote_ip 10.8.0.138 186946 username aminvpn 186946 mac 186946 bytes_out 0 186946 bytes_in 0 186946 station_ip 5.119.193.69 186946 port 312 186946 unique_id port 186946 remote_ip 10.8.0.58 186947 username aminvpn 186947 mac 186947 bytes_out 1644 186947 bytes_in 4410 186947 station_ip 5.119.193.69 186947 port 312 186947 unique_id port 186947 remote_ip 10.8.0.58 186949 username farhad3 186949 kill_reason Another user logged on this global unique id 186949 mac 186949 bytes_out 0 186949 bytes_in 0 186949 station_ip 5.120.6.157 186949 port 304 186949 unique_id port 186951 username aminvpn 186951 mac 186951 bytes_out 0 186951 bytes_in 0 186951 station_ip 5.119.193.69 186951 port 298 186951 unique_id port 186951 remote_ip 10.8.0.58 186917 bytes_in 0 186917 station_ip 5.119.193.69 186917 port 331 186917 unique_id port 186917 remote_ip 10.8.0.58 186919 username farhad3 186919 mac 186919 bytes_out 0 186919 bytes_in 0 186919 station_ip 5.120.6.157 186919 port 304 186919 unique_id port 186920 username ayobi 186920 mac 186920 bytes_out 0 186920 bytes_in 0 186920 station_ip 37.27.11.47 186920 port 315 186920 unique_id port 186922 username aminvpn 186922 kill_reason Maximum check online fails reached 186922 mac 186922 bytes_out 0 186922 bytes_in 0 186922 station_ip 5.119.193.69 186922 port 315 186922 unique_id port 186925 username mansour 186925 mac 186925 bytes_out 672376 186925 bytes_in 7047347 186925 station_ip 5.202.97.228 186925 port 312 186925 unique_id port 186925 remote_ip 10.8.0.30 186930 username yaghobi 186930 mac 186930 bytes_out 213128 186930 bytes_in 1889665 186930 station_ip 83.123.52.116 186930 port 311 186930 unique_id port 186930 remote_ip 10.8.0.138 186932 username rahim 186932 mac 186932 bytes_out 0 186932 bytes_in 0 186932 station_ip 5.119.57.111 186932 port 298 186932 unique_id port 186937 username aminvpn 186937 mac 186937 bytes_out 1644 186937 bytes_in 5089 186937 station_ip 5.119.193.69 186937 port 273 186937 unique_id port 186937 remote_ip 10.8.0.58 186942 username soleymani5056 186942 mac 186942 bytes_out 140652 186942 bytes_in 289616 186942 station_ip 5.119.27.220 186942 port 298 186942 unique_id port 186942 remote_ip 10.8.0.226 186943 username aminvpn 186943 unique_id port 186943 terminate_cause Lost-Carrier 186943 bytes_out 6673266 186943 bytes_in 113230742 186943 station_ip 5.119.193.69 186943 port 15729045 186943 nas_port_type Virtual 186943 remote_ip 5.5.5.123 186952 username yaghobi 186952 mac 186952 bytes_out 1853141 186952 bytes_in 18003102 186952 station_ip 83.123.101.152 186952 port 331 186952 unique_id port 186952 remote_ip 10.8.0.138 186953 username soleymani5056 186953 mac 186953 bytes_out 312243 186953 bytes_in 312470 186953 station_ip 5.120.11.79 186953 port 273 186953 unique_id port 186953 remote_ip 10.8.0.226 186955 username aminvpn 186955 mac 186955 bytes_out 0 186955 bytes_in 0 186955 station_ip 5.119.193.69 186955 port 273 186955 unique_id port 186955 remote_ip 10.8.0.58 186967 username aminvpn 186967 unique_id port 186967 terminate_cause Lost-Carrier 186967 bytes_out 3523660 186967 bytes_in 20367716 186967 station_ip 5.120.86.144 186967 port 15729046 186967 nas_port_type Virtual 186967 remote_ip 5.5.5.131 186968 username aminvpn 186968 mac 186968 bytes_out 0 186968 bytes_in 0 186968 station_ip 5.119.193.69 186968 port 304 186968 unique_id port 186968 remote_ip 10.8.0.58 186975 username fezealinaghi 186975 mac 186975 bytes_out 196265 186975 bytes_in 758801 186975 station_ip 83.123.34.139 186975 port 273 186975 unique_id port 186975 remote_ip 10.8.0.202 186976 username motamedi9772 186976 kill_reason Another user logged on this global unique id 186976 mac 186976 bytes_out 0 186976 bytes_in 0 186976 station_ip 83.123.48.223 186976 port 311 186976 unique_id port 186981 username aminvpn 186981 mac 186981 bytes_out 0 186981 bytes_in 0 186981 station_ip 5.119.193.69 186981 port 327 186981 unique_id port 186981 remote_ip 10.8.0.58 186982 username yaghobi 186982 mac 186982 bytes_out 870577 186982 bytes_in 2150884 186982 station_ip 83.123.97.142 186982 port 310 186982 unique_id port 186982 remote_ip 10.8.0.138 186985 username motamedi9772 186985 kill_reason Another user logged on this global unique id 186985 mac 186956 username motamedi9772 186956 kill_reason Another user logged on this global unique id 186956 mac 186956 bytes_out 0 186956 bytes_in 0 186956 station_ip 83.123.48.223 186956 port 311 186956 unique_id port 186956 remote_ip 10.8.0.154 186958 username yaghobi 186958 mac 186958 bytes_out 1082867 186958 bytes_in 8702130 186958 station_ip 83.123.97.142 186958 port 298 186958 unique_id port 186958 remote_ip 10.8.0.138 186960 username saeeddamghani 186960 mac 186960 bytes_out 0 186960 bytes_in 0 186960 station_ip 83.123.54.31 186960 port 312 186960 unique_id port 186960 remote_ip 10.8.0.122 186962 username farhad3 186962 mac 186962 bytes_out 0 186962 bytes_in 0 186962 station_ip 5.120.6.157 186962 port 304 186962 unique_id port 186965 username motamedi9772 186965 kill_reason Another user logged on this global unique id 186965 mac 186965 bytes_out 0 186965 bytes_in 0 186965 station_ip 83.123.48.223 186965 port 311 186965 unique_id port 186969 username yaghobi 186969 mac 186969 bytes_out 888957 186969 bytes_in 3942201 186969 station_ip 83.123.97.142 186969 port 298 186969 unique_id port 186969 remote_ip 10.8.0.138 186970 username motamedi9772 186970 kill_reason Another user logged on this global unique id 186970 mac 186970 bytes_out 0 186970 bytes_in 0 186970 station_ip 83.123.48.223 186970 port 311 186970 unique_id port 186972 username aminvpn 186972 mac 186972 bytes_out 0 186972 bytes_in 0 186972 station_ip 5.119.193.69 186972 port 310 186972 unique_id port 186972 remote_ip 10.8.0.58 186973 username yaghobi 186973 mac 186973 bytes_out 238168 186973 bytes_in 388544 186973 station_ip 83.123.97.142 186973 port 304 186973 unique_id port 186973 remote_ip 10.8.0.138 186978 username farhad3 186978 mac 186978 bytes_out 0 186978 bytes_in 0 186978 station_ip 5.120.6.157 186978 port 298 186978 unique_id port 186980 username farhad3 186980 mac 186980 bytes_out 25216 186980 bytes_in 34240 186980 station_ip 5.120.6.157 186980 port 298 186980 unique_id port 186980 remote_ip 10.8.0.222 186983 username mohammadjavad 186983 mac 186983 bytes_out 38071 186983 bytes_in 29789 186983 station_ip 83.123.123.108 186983 port 310 186983 unique_id port 186983 remote_ip 10.8.0.110 186986 username Mahin 186986 kill_reason Relative expiration date has reached 186986 mac 186986 bytes_out 0 186986 bytes_in 0 186986 station_ip 5.120.23.48 186986 port 304 186986 unique_id port 186987 username naeimeh 186987 mac 186987 bytes_out 2972040 186987 bytes_in 29350800 186987 station_ip 83.123.97.33 186987 port 273 186987 unique_id port 186987 remote_ip 10.8.0.78 186988 username mohammadjavad 186988 mac 186988 bytes_out 0 186988 bytes_in 0 186988 station_ip 83.123.123.108 186988 port 273 186988 unique_id port 186988 remote_ip 10.8.0.110 186992 username mosi 186992 kill_reason Another user logged on this global unique id 186992 mac 186992 bytes_out 0 186992 bytes_in 0 186992 station_ip 151.235.79.93 186992 port 332 186992 unique_id port 186992 remote_ip 10.8.0.142 186993 username soleymani5056 186993 mac 186993 bytes_out 15677 186993 bytes_in 39567 186993 station_ip 5.120.67.66 186993 port 333 186993 unique_id port 186993 remote_ip 10.8.0.226 187001 username fezealinaghi 187001 mac 187001 bytes_out 2425723 187001 bytes_in 15135279 187001 station_ip 83.123.97.59 187001 port 298 187001 unique_id port 187001 remote_ip 10.8.0.202 187006 username mohammadjavad 187006 mac 187006 bytes_out 0 187006 bytes_in 0 187006 station_ip 83.123.123.108 187006 port 298 186964 mac 186964 bytes_out 0 186964 bytes_in 0 186964 station_ip 5.119.193.69 186964 port 312 186964 unique_id port 186966 username farhad3 186966 mac 186966 bytes_out 1464731 186966 bytes_in 17057656 186966 station_ip 5.120.6.157 186966 port 304 186966 unique_id port 186966 remote_ip 10.8.0.222 186971 username kordestani 186971 mac 186971 bytes_out 0 186971 bytes_in 0 186971 station_ip 151.235.92.180 186971 port 310 186971 unique_id port 186974 username rezaei 186974 mac 186974 bytes_out 981159 186974 bytes_in 4860625 186974 station_ip 5.119.174.166 186974 port 317 186974 unique_id port 186974 remote_ip 10.8.0.198 186977 username farhad3 186977 kill_reason Another user logged on this global unique id 186977 mac 186977 bytes_out 0 186977 bytes_in 0 186977 station_ip 5.120.6.157 186977 port 298 186977 unique_id port 186977 remote_ip 10.8.0.222 186979 username aminvpn 186979 mac 186979 bytes_out 0 186979 bytes_in 0 186979 station_ip 5.119.193.69 186979 port 304 186979 unique_id port 186979 remote_ip 10.8.0.58 186984 username farhad3 186984 mac 186984 bytes_out 815359 186984 bytes_in 6995971 186984 station_ip 5.120.6.157 186984 port 304 186984 unique_id port 186984 remote_ip 10.8.0.222 186990 username mohammadjavad 186990 mac 186990 bytes_out 0 186990 bytes_in 0 186990 station_ip 83.123.123.108 186990 port 310 186990 unique_id port 186990 remote_ip 10.8.0.110 186991 username aminvpn 186991 mac 186991 bytes_out 0 186991 bytes_in 0 186991 station_ip 5.119.193.69 186991 port 310 186991 unique_id port 186991 remote_ip 10.8.0.58 186994 username yaghobi 186994 mac 186994 bytes_out 592211 186994 bytes_in 1393564 186994 station_ip 83.123.24.91 186994 port 273 186994 unique_id port 186994 remote_ip 10.8.0.138 186996 username aminvpn 186996 mac 186996 bytes_out 1644 186996 bytes_in 4877 186996 station_ip 5.119.193.69 186996 port 335 186996 unique_id port 186996 remote_ip 10.8.0.58 186998 username motamedi9772 186998 kill_reason Another user logged on this global unique id 186998 mac 186998 bytes_out 0 186998 bytes_in 0 186998 station_ip 83.123.48.223 186998 port 311 186998 unique_id port 187000 username yaghobi 187000 mac 187000 bytes_out 272003 187000 bytes_in 307811 187000 station_ip 83.123.24.91 187000 port 333 187000 unique_id port 187000 remote_ip 10.8.0.138 187004 username mohammadjavad 187004 mac 187004 bytes_out 0 187004 bytes_in 0 187004 station_ip 83.123.123.108 187004 port 310 187004 unique_id port 187010 username farhad3 187010 mac 187010 bytes_out 221375 187010 bytes_in 695784 187010 station_ip 5.120.6.157 187010 port 298 187010 unique_id port 187010 remote_ip 10.8.0.222 187013 username mostafa_es78 187013 mac 187013 bytes_out 408341 187013 bytes_in 2544908 187013 station_ip 83.122.141.183 187013 port 298 187013 unique_id port 187013 remote_ip 10.8.0.34 187015 username motamedi9772 187015 mac 187015 bytes_out 95232 187015 bytes_in 78296 187015 station_ip 83.123.22.219 187015 port 310 187015 unique_id port 187015 remote_ip 10.8.0.154 187016 username aminvpn 187016 mac 187016 bytes_out 0 187016 bytes_in 0 187016 station_ip 5.119.193.69 187016 port 310 187016 unique_id port 187016 remote_ip 10.8.0.58 187017 username aminvpn 187017 mac 187017 bytes_out 0 187017 bytes_in 0 187017 station_ip 5.119.193.69 187017 port 310 187017 unique_id port 187017 remote_ip 10.8.0.58 187019 username aminvpn 187019 mac 187019 bytes_out 0 187019 bytes_in 0 186985 bytes_out 0 186985 bytes_in 0 186985 station_ip 83.123.48.223 186985 port 311 186985 unique_id port 186989 username yaghobi 186989 mac 186989 bytes_out 490862 186989 bytes_in 2242455 186989 station_ip 83.123.97.142 186989 port 327 186989 unique_id port 186989 remote_ip 10.8.0.138 186995 username aminvpn 186995 mac 186995 bytes_out 0 186995 bytes_in 0 186995 station_ip 5.119.193.69 186995 port 273 186995 unique_id port 186995 remote_ip 10.8.0.58 186997 username mohammadjavad 186997 kill_reason Another user logged on this global unique id 186997 mac 186997 bytes_out 0 186997 bytes_in 0 186997 station_ip 83.123.123.108 186997 port 310 186997 unique_id port 186997 remote_ip 10.8.0.110 186999 username mahdiyehalizadeh 186999 mac 186999 bytes_out 1893567 186999 bytes_in 16782958 186999 station_ip 5.120.172.110 186999 port 317 186999 unique_id port 186999 remote_ip 10.8.0.114 187002 username aminvpn 187002 mac 187002 bytes_out 0 187002 bytes_in 0 187002 station_ip 5.119.193.69 187002 port 298 187002 unique_id port 187002 remote_ip 10.8.0.58 187003 username motamedi9772 187003 mac 187003 bytes_out 0 187003 bytes_in 0 187003 station_ip 83.123.48.223 187003 port 311 187003 unique_id port 187005 username farhad3 187005 mac 187005 bytes_out 3922787 187005 bytes_in 45454827 187005 station_ip 5.120.6.157 187005 port 304 187005 unique_id port 187005 remote_ip 10.8.0.222 187008 username farhad3 187008 mac 187008 bytes_out 270913 187008 bytes_in 896546 187008 station_ip 5.120.6.157 187008 port 304 187008 unique_id port 187008 remote_ip 10.8.0.222 187012 username aminvpn 187012 mac 187012 bytes_out 0 187012 bytes_in 0 187012 station_ip 5.119.193.69 187012 port 310 187012 unique_id port 187012 remote_ip 10.8.0.58 187014 username milan 187014 kill_reason Another user logged on this global unique id 187014 mac 187014 bytes_out 0 187014 bytes_in 0 187014 station_ip 5.119.108.114 187014 port 334 187014 unique_id port 187020 username milan 187020 kill_reason Another user logged on this global unique id 187020 mac 187020 bytes_out 0 187020 bytes_in 0 187020 station_ip 5.119.108.114 187020 port 334 187020 unique_id port 187025 username yaghobi 187025 mac 187025 bytes_out 2101706 187025 bytes_in 3032767 187025 station_ip 83.123.24.91 187025 port 273 187025 unique_id port 187025 remote_ip 10.8.0.138 187028 username aminvpn 187028 mac 187028 bytes_out 0 187028 bytes_in 0 187028 station_ip 5.119.193.69 187028 port 304 187028 unique_id port 187028 remote_ip 10.8.0.58 187035 username aminvpn 187035 mac 187035 bytes_out 0 187035 bytes_in 0 187035 station_ip 5.119.193.69 187035 port 304 187035 unique_id port 187035 remote_ip 10.8.0.58 187039 username mostafa_es78 187039 kill_reason Another user logged on this global unique id 187039 mac 187039 bytes_out 0 187039 bytes_in 0 187039 station_ip 37.129.243.10 187039 port 273 187039 unique_id port 187039 remote_ip 10.8.0.34 187041 username farhad3 187041 mac 187041 bytes_out 0 187041 bytes_in 0 187041 station_ip 5.120.6.157 187041 port 298 187041 unique_id port 187042 username mohammadjavad 187042 mac 187042 bytes_out 0 187042 bytes_in 0 187042 station_ip 83.123.123.108 187042 port 298 187042 unique_id port 187042 remote_ip 10.8.0.110 187043 username aminvpn 187043 mac 187043 bytes_out 0 187043 bytes_in 0 187043 station_ip 5.119.193.69 187043 port 298 187043 unique_id port 187043 remote_ip 10.8.0.58 187047 username aminvpn 187047 mac 187047 bytes_out 0 187006 unique_id port 187006 remote_ip 10.8.0.110 187007 username hadibarzegar 187007 kill_reason Another user logged on this global unique id 187007 mac 187007 bytes_out 0 187007 bytes_in 0 187007 station_ip 83.123.67.217 187007 port 327 187007 unique_id port 187007 remote_ip 10.8.0.186 187009 username milan 187009 kill_reason Another user logged on this global unique id 187009 mac 187009 bytes_out 0 187009 bytes_in 0 187009 station_ip 5.119.108.114 187009 port 334 187009 unique_id port 187009 remote_ip 10.8.0.182 187011 username mosi 187011 kill_reason Another user logged on this global unique id 187011 mac 187011 bytes_out 0 187011 bytes_in 0 187011 station_ip 151.235.79.93 187011 port 332 187011 unique_id port 187018 username mostafa_es78 187018 mac 187018 bytes_out 3292952 187018 bytes_in 39918786 187018 station_ip 83.122.141.183 187018 port 298 187018 unique_id port 187018 remote_ip 10.8.0.34 187024 username aminvpn 187024 mac 187024 bytes_out 0 187024 bytes_in 0 187024 station_ip 5.119.193.69 187024 port 304 187024 unique_id port 187024 remote_ip 10.8.0.58 187027 username farhad3 187027 kill_reason Another user logged on this global unique id 187027 mac 187027 bytes_out 0 187027 bytes_in 0 187027 station_ip 5.120.6.157 187027 port 298 187027 unique_id port 187027 remote_ip 10.8.0.222 187029 username hadibarzegar 187029 kill_reason Another user logged on this global unique id 187029 mac 187029 bytes_out 0 187029 bytes_in 0 187029 station_ip 83.123.67.217 187029 port 327 187029 unique_id port 187032 username hosseine 187032 mac 187032 bytes_out 8475258 187032 bytes_in 33176417 187032 station_ip 83.123.92.73 187032 port 314 187032 unique_id port 187032 remote_ip 10.8.0.54 187033 username aminvpn 187033 mac 187033 bytes_out 0 187033 bytes_in 0 187033 station_ip 5.119.193.69 187033 port 304 187033 unique_id port 187033 remote_ip 10.8.0.58 187040 username aminvpn 187040 mac 187040 bytes_out 0 187040 bytes_in 0 187040 station_ip 5.119.193.69 187040 port 304 187040 unique_id port 187040 remote_ip 10.8.0.58 187044 username aminvpn 187044 mac 187044 bytes_out 0 187044 bytes_in 0 187044 station_ip 5.119.193.69 187044 port 298 187044 unique_id port 187044 remote_ip 10.8.0.58 187045 username aminvpn 187045 mac 187045 bytes_out 0 187045 bytes_in 0 187045 station_ip 5.119.193.69 187045 port 298 187045 unique_id port 187045 remote_ip 10.8.0.58 187046 username aminvpn 187046 mac 187046 bytes_out 0 187046 bytes_in 0 187046 station_ip 5.119.193.69 187046 port 304 187046 unique_id port 187046 remote_ip 10.8.0.58 187050 username aminvpn 187050 mac 187050 bytes_out 0 187050 bytes_in 0 187050 station_ip 5.119.193.69 187050 port 298 187050 unique_id port 187050 remote_ip 10.8.0.58 187051 username sedighe 187051 mac 187051 bytes_out 671930 187051 bytes_in 7230491 187051 station_ip 83.123.117.130 187051 port 304 187051 unique_id port 187051 remote_ip 10.8.0.46 187052 username aminvpn 187052 mac 187052 bytes_out 0 187052 bytes_in 0 187052 station_ip 5.119.193.69 187052 port 298 187052 unique_id port 187052 remote_ip 10.8.0.58 187053 username aminvpn 187053 mac 187053 bytes_out 0 187053 bytes_in 0 187053 station_ip 5.119.193.69 187053 port 298 187053 unique_id port 187053 remote_ip 10.8.0.58 187055 username zahra1101 187055 mac 187055 bytes_out 892819 187055 bytes_in 2936883 187055 station_ip 5.119.166.160 187055 port 298 187055 unique_id port 187055 remote_ip 10.8.0.250 187056 username aminvpn 187056 mac 187056 bytes_out 0 187019 station_ip 5.119.193.69 187019 port 310 187019 unique_id port 187019 remote_ip 10.8.0.58 187021 username hadibarzegar 187021 kill_reason Another user logged on this global unique id 187021 mac 187021 bytes_out 0 187021 bytes_in 0 187021 station_ip 83.123.67.217 187021 port 327 187021 unique_id port 187022 username farhad3 187022 mac 187022 bytes_out 3593686 187022 bytes_in 21644025 187022 station_ip 5.120.6.157 187022 port 304 187022 unique_id port 187022 remote_ip 10.8.0.222 187023 username hadibarzegar 187023 kill_reason Another user logged on this global unique id 187023 mac 187023 bytes_out 0 187023 bytes_in 0 187023 station_ip 83.123.67.217 187023 port 327 187023 unique_id port 187026 username hadibarzegar 187026 kill_reason Another user logged on this global unique id 187026 mac 187026 bytes_out 0 187026 bytes_in 0 187026 station_ip 83.123.67.217 187026 port 327 187026 unique_id port 187030 username aminvpn 187030 mac 187030 bytes_out 0 187030 bytes_in 0 187030 station_ip 5.119.193.69 187030 port 304 187030 unique_id port 187030 remote_ip 10.8.0.58 187031 username hadibarzegar 187031 kill_reason Another user logged on this global unique id 187031 mac 187031 bytes_out 0 187031 bytes_in 0 187031 station_ip 83.123.67.217 187031 port 327 187031 unique_id port 187034 username hadibarzegar 187034 kill_reason Another user logged on this global unique id 187034 mac 187034 bytes_out 0 187034 bytes_in 0 187034 station_ip 83.123.67.217 187034 port 327 187034 unique_id port 187036 username hadibarzegar 187036 kill_reason Another user logged on this global unique id 187036 mac 187036 bytes_out 0 187036 bytes_in 0 187036 station_ip 83.123.67.217 187036 port 327 187036 unique_id port 187037 username aminvpn 187037 mac 187037 bytes_out 0 187037 bytes_in 0 187037 station_ip 5.119.193.69 187037 port 304 187037 unique_id port 187037 remote_ip 10.8.0.58 187038 username hadibarzegar 187038 mac 187038 bytes_out 0 187038 bytes_in 0 187038 station_ip 83.123.67.217 187038 port 327 187038 unique_id port 187047 bytes_in 0 187047 station_ip 5.119.193.69 187047 port 304 187047 unique_id port 187047 remote_ip 10.8.0.58 187048 username aminvpn 187048 mac 187048 bytes_out 0 187048 bytes_in 0 187048 station_ip 5.119.193.69 187048 port 304 187048 unique_id port 187048 remote_ip 10.8.0.58 187049 username sedighe 187049 mac 187049 bytes_out 818161 187049 bytes_in 1704704 187049 station_ip 83.123.117.130 187049 port 298 187049 unique_id port 187049 remote_ip 10.8.0.46 187054 username aminvpn 187054 unique_id port 187054 terminate_cause Lost-Carrier 187054 bytes_out 115557 187054 bytes_in 1374335 187054 station_ip 83.123.112.164 187054 port 15729047 187054 nas_port_type Virtual 187054 remote_ip 5.5.5.122 187056 bytes_in 0 187056 station_ip 5.119.193.69 187056 port 298 187056 unique_id port 187056 remote_ip 10.8.0.58 187057 username aminvpn 187057 mac 187057 bytes_out 0 187057 bytes_in 0 187057 station_ip 5.119.193.69 187057 port 298 187057 unique_id port 187057 remote_ip 10.8.0.58 187058 username aminvpn 187058 mac 187058 bytes_out 0 187058 bytes_in 0 187058 station_ip 5.119.193.69 187058 port 298 187058 unique_id port 187058 remote_ip 10.8.0.58 187059 username aminvpn 187059 kill_reason Maximum check online fails reached 187059 mac 187059 bytes_out 0 187059 bytes_in 0 187059 station_ip 5.119.193.69 187059 port 298 187059 unique_id port 187060 username aminvpn 187060 mac 187060 bytes_out 0 187060 bytes_in 0 187060 station_ip 5.119.193.69 187060 port 304 187060 unique_id port 187060 remote_ip 10.8.0.58 187061 username aminvpn 187061 mac 187061 bytes_out 0 187061 bytes_in 0 187061 station_ip 5.119.193.69 187061 port 304 187061 unique_id port 187061 remote_ip 10.8.0.58 187062 username aminvpn 187062 mac 187062 bytes_out 0 187062 bytes_in 0 187062 station_ip 5.119.193.69 187062 port 304 187062 unique_id port 187062 remote_ip 10.8.0.58 187067 username aminvpn 187067 mac 187067 bytes_out 0 187067 bytes_in 0 187067 station_ip 5.119.193.69 187067 port 304 187067 unique_id port 187067 remote_ip 10.8.0.58 187068 username aminvpn 187068 mac 187068 bytes_out 0 187068 bytes_in 0 187068 station_ip 5.119.193.69 187068 port 304 187068 unique_id port 187068 remote_ip 10.8.0.58 187071 username aminvpn 187071 mac 187071 bytes_out 0 187071 bytes_in 0 187071 station_ip 5.119.193.69 187071 port 304 187071 unique_id port 187071 remote_ip 10.8.0.58 187078 username aminvpn 187078 kill_reason Maximum check online fails reached 187078 mac 187078 bytes_out 0 187078 bytes_in 0 187078 station_ip 5.119.193.69 187078 port 273 187078 unique_id port 187079 username aminvpn 187079 mac 187079 bytes_out 0 187079 bytes_in 0 187079 station_ip 5.119.193.69 187079 port 304 187079 unique_id port 187079 remote_ip 10.8.0.58 187081 username aminvpn 187081 mac 187081 bytes_out 1644 187081 bytes_in 4930 187081 station_ip 5.119.193.69 187081 port 304 187081 unique_id port 187081 remote_ip 10.8.0.58 187082 username aminvpn 187082 mac 187082 bytes_out 0 187082 bytes_in 0 187082 station_ip 5.119.36.146 187082 port 304 187082 unique_id port 187082 remote_ip 10.8.0.58 187089 username aminvpn 187089 mac 187089 bytes_out 0 187089 bytes_in 0 187089 station_ip 5.119.193.69 187089 port 311 187089 unique_id port 187089 remote_ip 10.8.0.58 187090 username sobhan 187090 unique_id port 187090 terminate_cause Lost-Carrier 187090 bytes_out 688721 187090 bytes_in 10605429 187090 station_ip 5.120.70.42 187090 port 15729048 187090 nas_port_type Virtual 187090 remote_ip 5.5.5.121 187094 username aminvpn 187094 mac 187094 bytes_out 0 187094 bytes_in 0 187094 station_ip 5.119.193.69 187094 port 314 187094 unique_id port 187094 remote_ip 10.8.0.58 187096 username kalantary6037 187096 mac 187096 bytes_out 0 187096 bytes_in 0 187096 station_ip 83.123.123.211 187096 port 310 187096 unique_id port 187100 username aminvpn 187100 mac 187100 bytes_out 0 187100 bytes_in 0 187100 station_ip 5.119.193.69 187100 port 317 187100 unique_id port 187100 remote_ip 10.8.0.58 187107 username sekonji0496 187107 mac 187107 bytes_out 112060 187107 bytes_in 1224972 187107 station_ip 83.123.38.77 187107 port 333 187107 unique_id port 187107 remote_ip 10.8.0.62 187108 username esmaeilkazemi 187108 mac 187108 bytes_out 199922 187108 bytes_in 1932496 187108 station_ip 83.123.33.157 187108 port 335 187108 unique_id port 187108 remote_ip 10.8.0.26 187110 username aminvpn 187110 mac 187110 bytes_out 0 187110 bytes_in 0 187110 station_ip 5.119.193.69 187110 port 333 187110 unique_id port 187110 remote_ip 10.8.0.58 187111 username aminvpn 187111 mac 187111 bytes_out 1644 187111 bytes_in 4564 187111 station_ip 5.119.193.69 187111 port 333 187111 unique_id port 187111 remote_ip 10.8.0.58 187113 username sekonji0496 187113 mac 187113 bytes_out 0 187113 bytes_in 0 187113 station_ip 83.123.38.77 187113 port 335 187113 unique_id port 187113 remote_ip 10.8.0.62 187114 username sekonji0496 187114 mac 187114 bytes_out 0 187063 username aminvpn 187063 mac 187063 bytes_out 0 187063 bytes_in 0 187063 station_ip 5.119.193.69 187063 port 304 187063 unique_id port 187063 remote_ip 10.8.0.58 187069 username mohammadjavad 187069 mac 187069 bytes_out 1031806 187069 bytes_in 20675350 187069 station_ip 83.123.123.108 187069 port 304 187069 unique_id port 187069 remote_ip 10.8.0.110 187080 username aminvpn 187080 mac 187080 bytes_out 0 187080 bytes_in 0 187080 station_ip 5.119.193.69 187080 port 304 187080 unique_id port 187080 remote_ip 10.8.0.58 187084 username mohammadjavad 187084 mac 187084 bytes_out 1912111 187084 bytes_in 35133547 187084 station_ip 83.123.39.186 187084 port 310 187084 unique_id port 187084 remote_ip 10.8.0.110 187085 username aminvpn 187085 mac 187085 bytes_out 0 187085 bytes_in 0 187085 station_ip 5.119.193.69 187085 port 304 187085 unique_id port 187085 remote_ip 10.8.0.58 187088 username aminvpn 187088 mac 187088 bytes_out 0 187088 bytes_in 0 187088 station_ip 5.119.193.69 187088 port 310 187088 unique_id port 187088 remote_ip 10.8.0.58 187093 username yaghobi 187093 mac 187093 bytes_out 0 187093 bytes_in 0 187093 station_ip 83.123.84.5 187093 port 311 187093 unique_id port 187093 remote_ip 10.8.0.138 187095 username kalantary6037 187095 kill_reason Another user logged on this global unique id 187095 mac 187095 bytes_out 0 187095 bytes_in 0 187095 station_ip 83.123.123.211 187095 port 310 187095 unique_id port 187095 remote_ip 10.8.0.50 187098 username zahra1101 187098 mac 187098 bytes_out 146096 187098 bytes_in 616274 187098 station_ip 5.120.88.96 187098 port 310 187098 unique_id port 187098 remote_ip 10.8.0.250 187099 username zahra1101 187099 mac 187099 bytes_out 0 187099 bytes_in 0 187099 station_ip 5.120.88.96 187099 port 310 187099 unique_id port 187099 remote_ip 10.8.0.250 187103 username zahra1101 187103 mac 187103 bytes_out 0 187103 bytes_in 0 187103 station_ip 5.120.88.96 187103 port 317 187103 unique_id port 187103 remote_ip 10.8.0.250 187105 username zahra1101 187105 mac 187105 bytes_out 0 187105 bytes_in 0 187105 station_ip 5.120.88.96 187105 port 327 187105 unique_id port 187105 remote_ip 10.8.0.250 187109 username sekonji0496 187109 mac 187109 bytes_out 0 187109 bytes_in 0 187109 station_ip 83.123.38.77 187109 port 333 187109 unique_id port 187109 remote_ip 10.8.0.62 187115 username hajghani 187115 kill_reason Another user logged on this global unique id 187115 mac 187115 bytes_out 0 187115 bytes_in 0 187115 station_ip 89.32.96.8 187115 port 310 187115 unique_id port 187117 username sekonji0496 187117 mac 187117 bytes_out 0 187117 bytes_in 0 187117 station_ip 83.123.38.77 187117 port 335 187117 unique_id port 187117 remote_ip 10.8.0.62 187120 username sekonji0496 187120 mac 187120 bytes_out 0 187120 bytes_in 0 187120 station_ip 83.123.38.77 187120 port 335 187120 unique_id port 187120 remote_ip 10.8.0.62 187122 username hajghani 187122 kill_reason Another user logged on this global unique id 187122 mac 187122 bytes_out 0 187122 bytes_in 0 187122 station_ip 89.32.96.8 187122 port 310 187122 unique_id port 187125 username zahra1101 187125 mac 187125 bytes_out 0 187125 bytes_in 0 187125 station_ip 5.120.88.96 187125 port 311 187125 unique_id port 187125 remote_ip 10.8.0.250 187127 username aminvpn 187127 mac 187127 bytes_out 1133162 187127 bytes_in 7882640 187127 station_ip 5.119.36.146 187127 port 335 187127 unique_id port 187127 remote_ip 10.8.0.58 187064 username aminvpn 187064 mac 187064 bytes_out 0 187064 bytes_in 0 187064 station_ip 5.119.193.69 187064 port 304 187064 unique_id port 187064 remote_ip 10.8.0.58 187065 username mosi 187065 kill_reason Another user logged on this global unique id 187065 mac 187065 bytes_out 0 187065 bytes_in 0 187065 station_ip 151.235.79.93 187065 port 332 187065 unique_id port 187066 username aminvpn 187066 mac 187066 bytes_out 0 187066 bytes_in 0 187066 station_ip 5.119.193.69 187066 port 304 187066 unique_id port 187066 remote_ip 10.8.0.58 187070 username aminvpn 187070 mac 187070 bytes_out 0 187070 bytes_in 0 187070 station_ip 5.119.193.69 187070 port 304 187070 unique_id port 187070 remote_ip 10.8.0.58 187072 username aminvpn 187072 mac 187072 bytes_out 1644 187072 bytes_in 4219 187072 station_ip 5.119.193.69 187072 port 304 187072 unique_id port 187072 remote_ip 10.8.0.58 187073 username aminvpn 187073 mac 187073 bytes_out 0 187073 bytes_in 0 187073 station_ip 5.119.193.69 187073 port 304 187073 unique_id port 187073 remote_ip 10.8.0.58 187074 username mohammadjavad 187074 mac 187074 bytes_out 1338596 187074 bytes_in 23856414 187074 station_ip 83.123.123.108 187074 port 304 187074 unique_id port 187074 remote_ip 10.8.0.110 187075 username mostafa_es78 187075 mac 187075 bytes_out 0 187075 bytes_in 0 187075 station_ip 37.129.243.10 187075 port 273 187075 unique_id port 187076 username aminvpn 187076 mac 187076 bytes_out 0 187076 bytes_in 0 187076 station_ip 5.119.193.69 187076 port 273 187076 unique_id port 187076 remote_ip 10.8.0.58 187077 username shadkam 187077 mac 187077 bytes_out 132585 187077 bytes_in 1692663 187077 station_ip 5.202.6.36 187077 port 304 187077 unique_id port 187077 remote_ip 10.8.0.74 187083 username aminvpn 187083 mac 187083 bytes_out 699828 187083 bytes_in 17956490 187083 station_ip 5.119.36.146 187083 port 304 187083 unique_id port 187083 remote_ip 10.8.0.58 187086 username aminvpn 187086 mac 187086 bytes_out 0 187086 bytes_in 0 187086 station_ip 5.119.193.69 187086 port 311 187086 unique_id port 187086 remote_ip 10.8.0.58 187087 username kalantary6037 187087 mac 187087 bytes_out 2641437 187087 bytes_in 29188493 187087 station_ip 83.123.123.211 187087 port 310 187087 unique_id port 187087 remote_ip 10.8.0.50 187091 username yaghobi 187091 mac 187091 bytes_out 0 187091 bytes_in 0 187091 station_ip 83.123.84.5 187091 port 311 187091 unique_id port 187091 remote_ip 10.8.0.138 187092 username yaghobi 187092 mac 187092 bytes_out 298754 187092 bytes_in 562341 187092 station_ip 83.123.84.5 187092 port 314 187092 unique_id port 187092 remote_ip 10.8.0.138 187097 username aminvpn 187097 kill_reason Maximum check online fails reached 187097 mac 187097 bytes_out 0 187097 bytes_in 0 187097 station_ip 5.119.193.69 187097 port 314 187097 unique_id port 187101 username zahra1101 187101 mac 187101 bytes_out 10569 187101 bytes_in 30045 187101 station_ip 5.120.88.96 187101 port 310 187101 unique_id port 187101 remote_ip 10.8.0.250 187102 username khademi 187102 kill_reason Another user logged on this global unique id 187102 mac 187102 bytes_out 0 187102 bytes_in 0 187102 station_ip 83.123.73.154 187102 port 259 187102 unique_id port 187104 username hajghani 187104 kill_reason Another user logged on this global unique id 187104 mac 187104 bytes_out 0 187104 bytes_in 0 187104 station_ip 89.32.96.8 187104 port 310 187104 unique_id port 187104 remote_ip 10.8.0.106 187106 username hajghani 187106 kill_reason Another user logged on this global unique id 187106 mac 187106 bytes_out 0 187106 bytes_in 0 187106 station_ip 89.32.96.8 187106 port 310 187106 unique_id port 187112 username sekonji0496 187112 mac 187112 bytes_out 0 187112 bytes_in 0 187112 station_ip 83.123.38.77 187112 port 335 187112 unique_id port 187112 remote_ip 10.8.0.62 187123 username dortaj3792 187123 mac 187123 bytes_out 516375 187123 bytes_in 719287 187123 station_ip 5.119.146.223 187123 port 311 187123 unique_id port 187123 remote_ip 10.8.0.102 187128 username aminvpn 187128 mac 187128 bytes_out 0 187128 bytes_in 0 187128 station_ip 5.119.193.69 187128 port 310 187128 unique_id port 187128 remote_ip 10.8.0.58 187134 username zahra1101 187134 mac 187134 bytes_out 0 187134 bytes_in 0 187134 station_ip 5.120.88.96 187134 port 335 187134 unique_id port 187134 remote_ip 10.8.0.250 187137 username sekonji0496 187137 mac 187137 bytes_out 0 187137 bytes_in 0 187137 station_ip 83.123.38.77 187137 port 336 187137 unique_id port 187137 remote_ip 10.8.0.62 187138 username aminvpn 187138 mac 187138 bytes_out 0 187138 bytes_in 0 187138 station_ip 5.119.36.146 187138 port 336 187138 unique_id port 187138 remote_ip 10.8.0.58 187140 username zahra1101 187140 mac 187140 bytes_out 0 187140 bytes_in 0 187140 station_ip 5.120.88.96 187140 port 337 187140 unique_id port 187140 remote_ip 10.8.0.250 187142 username zahra1101 187142 mac 187142 bytes_out 0 187142 bytes_in 0 187142 station_ip 5.120.88.96 187142 port 310 187142 unique_id port 187142 remote_ip 10.8.0.250 187143 username sekonji0496 187143 mac 187143 bytes_out 0 187143 bytes_in 0 187143 station_ip 83.123.38.77 187143 port 310 187143 unique_id port 187143 remote_ip 10.8.0.62 187144 username sekonji0496 187144 mac 187144 bytes_out 0 187144 bytes_in 0 187144 station_ip 83.123.38.77 187144 port 310 187144 unique_id port 187144 remote_ip 10.8.0.62 187147 username aminvpn 187147 mac 187147 bytes_out 0 187147 bytes_in 0 187147 station_ip 5.119.193.69 187147 port 310 187147 unique_id port 187147 remote_ip 10.8.0.58 187148 username zahra1101 187148 mac 187148 bytes_out 0 187148 bytes_in 0 187148 station_ip 5.120.88.96 187148 port 310 187148 unique_id port 187148 remote_ip 10.8.0.250 187152 username sekonji0496 187152 mac 187152 bytes_out 0 187152 bytes_in 0 187152 station_ip 83.123.38.77 187152 port 333 187152 unique_id port 187152 remote_ip 10.8.0.62 187155 username sekonji0496 187155 mac 187155 bytes_out 2220 187155 bytes_in 3850 187155 station_ip 83.123.38.77 187155 port 333 187155 unique_id port 187155 remote_ip 10.8.0.62 187167 username kordestani 187167 mac 187167 bytes_out 493756 187167 bytes_in 2854895 187167 station_ip 151.235.125.116 187167 port 333 187167 unique_id port 187167 remote_ip 10.8.0.130 187169 username sekonji0496 187169 mac 187169 bytes_out 0 187169 bytes_in 0 187169 station_ip 83.123.38.77 187169 port 310 187169 unique_id port 187169 remote_ip 10.8.0.62 187172 username zahra1101 187172 mac 187172 bytes_out 0 187172 bytes_in 0 187172 station_ip 5.120.88.96 187172 port 338 187172 unique_id port 187172 remote_ip 10.8.0.250 187176 username aminvpn 187176 mac 187176 bytes_out 0 187176 bytes_in 0 187176 station_ip 5.119.193.69 187176 port 341 187176 unique_id port 187176 remote_ip 10.8.0.58 187177 username sekonji0496 187177 mac 187177 bytes_out 0 187177 bytes_in 0 187114 bytes_in 0 187114 station_ip 83.123.38.77 187114 port 335 187114 unique_id port 187114 remote_ip 10.8.0.62 187116 username zahra1101 187116 mac 187116 bytes_out 80710 187116 bytes_in 118567 187116 station_ip 5.120.88.96 187116 port 327 187116 unique_id port 187116 remote_ip 10.8.0.250 187118 username aminvpn 187118 mac 187118 bytes_out 0 187118 bytes_in 0 187118 station_ip 5.119.193.69 187118 port 327 187118 unique_id port 187118 remote_ip 10.8.0.58 187119 username zahra1101 187119 mac 187119 bytes_out 0 187119 bytes_in 0 187119 station_ip 5.120.88.96 187119 port 335 187119 unique_id port 187119 remote_ip 10.8.0.250 187121 username aminvpn 187121 kill_reason Maximum check online fails reached 187121 mac 187121 bytes_out 0 187121 bytes_in 0 187121 station_ip 5.119.193.69 187121 port 327 187121 unique_id port 187124 username kalantary6037 187124 kill_reason Another user logged on this global unique id 187124 mac 187124 bytes_out 0 187124 bytes_in 0 187124 station_ip 83.123.49.59 187124 port 333 187124 unique_id port 187124 remote_ip 10.8.0.50 187126 username hajghani 187126 mac 187126 bytes_out 0 187126 bytes_in 0 187126 station_ip 89.32.96.8 187126 port 310 187126 unique_id port 187131 username zahra1101 187131 mac 187131 bytes_out 0 187131 bytes_in 0 187131 station_ip 5.120.88.96 187131 port 310 187131 unique_id port 187131 remote_ip 10.8.0.250 187133 username aminvpn 187133 mac 187133 bytes_out 0 187133 bytes_in 0 187133 station_ip 5.119.193.69 187133 port 337 187133 unique_id port 187133 remote_ip 10.8.0.58 187136 username zahra1101 187136 mac 187136 bytes_out 0 187136 bytes_in 0 187136 station_ip 5.120.88.96 187136 port 336 187136 unique_id port 187136 remote_ip 10.8.0.250 187145 username sekonji0496 187145 mac 187145 bytes_out 0 187145 bytes_in 0 187145 station_ip 83.123.38.77 187145 port 310 187145 unique_id port 187145 remote_ip 10.8.0.62 187153 username sekonji0496 187153 mac 187153 bytes_out 0 187153 bytes_in 0 187153 station_ip 83.123.38.77 187153 port 333 187153 unique_id port 187153 remote_ip 10.8.0.62 187158 username sekonji0496 187158 mac 187158 bytes_out 0 187158 bytes_in 0 187158 station_ip 83.123.38.77 187158 port 333 187158 unique_id port 187158 remote_ip 10.8.0.62 187159 username sekonji0496 187159 mac 187159 bytes_out 0 187159 bytes_in 0 187159 station_ip 83.123.38.77 187159 port 333 187159 unique_id port 187159 remote_ip 10.8.0.62 187162 username aminvpn 187162 mac 187162 bytes_out 0 187162 bytes_in 0 187162 station_ip 5.119.193.69 187162 port 337 187162 unique_id port 187162 remote_ip 10.8.0.58 187164 username sekonji0496 187164 mac 187164 bytes_out 0 187164 bytes_in 0 187164 station_ip 83.123.38.77 187164 port 310 187164 unique_id port 187164 remote_ip 10.8.0.62 187175 username sekonji0496 187175 mac 187175 bytes_out 0 187175 bytes_in 0 187175 station_ip 83.123.38.77 187175 port 340 187175 unique_id port 187175 remote_ip 10.8.0.62 187181 username fezealinaghi 187181 mac 187181 bytes_out 1802748 187181 bytes_in 14653871 187181 station_ip 83.123.74.67 187181 port 339 187181 unique_id port 187181 remote_ip 10.8.0.202 187183 username kalantary6037 187183 mac 187183 bytes_out 960089 187183 bytes_in 9765161 187183 station_ip 83.123.91.215 187183 port 338 187183 unique_id port 187183 remote_ip 10.8.0.50 187190 username sekonji0496 187190 mac 187190 bytes_out 2159 187190 bytes_in 4063 187190 station_ip 83.123.38.77 187190 port 310 187129 username sekonji0496 187129 mac 187129 bytes_out 0 187129 bytes_in 0 187129 station_ip 83.123.38.77 187129 port 311 187129 unique_id port 187129 remote_ip 10.8.0.62 187130 username aminvpn 187130 mac 187130 bytes_out 0 187130 bytes_in 0 187130 station_ip 5.119.193.69 187130 port 335 187130 unique_id port 187130 remote_ip 10.8.0.58 187132 username aminvpn 187132 mac 187132 bytes_out 13945 187132 bytes_in 24992 187132 station_ip 5.119.36.146 187132 port 336 187132 unique_id port 187132 remote_ip 10.8.0.58 187135 username iranmanesh4443 187135 kill_reason Maximum check online fails reached 187135 mac 187135 bytes_out 0 187135 bytes_in 0 187135 station_ip 5.119.181.49 187135 port 311 187135 unique_id port 187139 username aminvpn 187139 kill_reason Maximum check online fails reached 187139 mac 187139 bytes_out 0 187139 bytes_in 0 187139 station_ip 5.119.193.69 187139 port 335 187139 unique_id port 187141 username iranmanesh4443 187141 mac 187141 bytes_out 51375 187141 bytes_in 64880 187141 station_ip 5.119.181.49 187141 port 310 187141 unique_id port 187141 remote_ip 10.8.0.22 187146 username kalantary6037 187146 kill_reason Another user logged on this global unique id 187146 mac 187146 bytes_out 0 187146 bytes_in 0 187146 station_ip 83.123.49.59 187146 port 333 187146 unique_id port 187149 username kalantary6037 187149 mac 187149 bytes_out 0 187149 bytes_in 0 187149 station_ip 83.123.49.59 187149 port 333 187149 unique_id port 187150 username sekonji0496 187150 mac 187150 bytes_out 0 187150 bytes_in 0 187150 station_ip 83.123.38.77 187150 port 333 187150 unique_id port 187150 remote_ip 10.8.0.62 187151 username sekonji0496 187151 mac 187151 bytes_out 2849 187151 bytes_in 4409 187151 station_ip 83.123.38.77 187151 port 333 187151 unique_id port 187151 remote_ip 10.8.0.62 187154 username zahra1101 187154 mac 187154 bytes_out 1817928 187154 bytes_in 12743914 187154 station_ip 5.120.88.96 187154 port 336 187154 unique_id port 187154 remote_ip 10.8.0.250 187156 username zahra1101 187156 kill_reason Maximum check online fails reached 187156 mac 187156 bytes_out 0 187156 bytes_in 0 187156 station_ip 5.120.88.96 187156 port 336 187156 unique_id port 187157 username kordestani 187157 mac 187157 bytes_out 563499 187157 bytes_in 7408940 187157 station_ip 151.235.125.116 187157 port 337 187157 unique_id port 187157 remote_ip 10.8.0.130 187160 username hajghani 187160 kill_reason Another user logged on this global unique id 187160 mac 187160 bytes_out 0 187160 bytes_in 0 187160 station_ip 89.32.96.8 187160 port 310 187160 unique_id port 187160 remote_ip 10.8.0.106 187161 username hajghani 187161 mac 187161 bytes_out 0 187161 bytes_in 0 187161 station_ip 89.32.96.8 187161 port 310 187161 unique_id port 187163 username zahra1101 187163 mac 187163 bytes_out 13100 187163 bytes_in 20003 187163 station_ip 5.120.88.96 187163 port 338 187163 unique_id port 187163 remote_ip 10.8.0.250 187165 username sekonji0496 187165 mac 187165 bytes_out 0 187165 bytes_in 0 187165 station_ip 83.123.38.77 187165 port 310 187165 unique_id port 187165 remote_ip 10.8.0.62 187166 username pourshad 187166 kill_reason Another user logged on this global unique id 187166 mac 187166 bytes_out 0 187166 bytes_in 0 187166 station_ip 5.120.203.117 187166 port 317 187166 unique_id port 187166 remote_ip 10.8.0.42 187168 username sekonji0496 187168 mac 187168 bytes_out 0 187168 bytes_in 0 187168 station_ip 83.123.38.77 187168 port 310 187168 unique_id port 187168 remote_ip 10.8.0.62 187170 username zahra1101 187170 mac 187170 bytes_out 0 187170 bytes_in 0 187170 station_ip 5.120.88.96 187170 port 310 187170 unique_id port 187170 remote_ip 10.8.0.250 187171 username zahra1101 187171 mac 187171 bytes_out 0 187171 bytes_in 0 187171 station_ip 5.120.88.96 187171 port 337 187171 unique_id port 187171 remote_ip 10.8.0.250 187173 username milan 187173 kill_reason Another user logged on this global unique id 187173 mac 187173 bytes_out 0 187173 bytes_in 0 187173 station_ip 5.119.108.114 187173 port 334 187173 unique_id port 187174 username sekonji0496 187174 mac 187174 bytes_out 5815 187174 bytes_in 12543 187174 station_ip 83.123.38.77 187174 port 310 187174 unique_id port 187174 remote_ip 10.8.0.62 187180 username yaghobi 187180 mac 187180 bytes_out 250190 187180 bytes_in 500132 187180 station_ip 83.123.18.106 187180 port 310 187180 unique_id port 187180 remote_ip 10.8.0.138 187182 username sekonji0496 187182 mac 187182 bytes_out 2148 187182 bytes_in 4007 187182 station_ip 83.123.38.77 187182 port 340 187182 unique_id port 187182 remote_ip 10.8.0.62 187185 username zahra1101 187185 mac 187185 bytes_out 0 187185 bytes_in 0 187185 station_ip 5.120.88.96 187185 port 310 187185 unique_id port 187185 remote_ip 10.8.0.250 187187 username zahra1101 187187 mac 187187 bytes_out 0 187187 bytes_in 0 187187 station_ip 5.120.88.96 187187 port 338 187187 unique_id port 187187 remote_ip 10.8.0.250 187188 username milan 187188 kill_reason Another user logged on this global unique id 187188 mac 187188 bytes_out 0 187188 bytes_in 0 187188 station_ip 5.119.108.114 187188 port 334 187188 unique_id port 187196 username sekonji0496 187196 mac 187196 bytes_out 0 187196 bytes_in 0 187196 station_ip 83.123.38.77 187196 port 310 187196 unique_id port 187196 remote_ip 10.8.0.62 187198 username zahra1101 187198 mac 187198 bytes_out 0 187198 bytes_in 0 187198 station_ip 5.120.88.96 187198 port 341 187198 unique_id port 187198 remote_ip 10.8.0.250 187199 username zahra1101 187199 mac 187199 bytes_out 0 187199 bytes_in 0 187199 station_ip 5.120.88.96 187199 port 340 187199 unique_id port 187199 remote_ip 10.8.0.250 187203 username aminvpn 187203 mac 187203 bytes_out 0 187203 bytes_in 0 187203 station_ip 5.119.193.69 187203 port 310 187203 unique_id port 187203 remote_ip 10.8.0.58 187205 username sekonji0496 187205 mac 187205 bytes_out 0 187205 bytes_in 0 187205 station_ip 83.123.38.77 187205 port 340 187205 unique_id port 187205 remote_ip 10.8.0.62 187208 username zahra1101 187208 mac 187208 bytes_out 0 187208 bytes_in 0 187208 station_ip 5.120.88.96 187208 port 310 187208 unique_id port 187208 remote_ip 10.8.0.250 187209 username zahra1101 187209 mac 187209 bytes_out 0 187209 bytes_in 0 187209 station_ip 5.120.88.96 187209 port 310 187209 unique_id port 187209 remote_ip 10.8.0.250 187211 username rahim 187211 kill_reason Maximum check online fails reached 187211 mac 187211 bytes_out 0 187211 bytes_in 0 187211 station_ip 86.57.100.114 187211 port 341 187211 unique_id port 187212 username zahra1101 187212 mac 187212 bytes_out 101381 187212 bytes_in 716292 187212 station_ip 5.120.88.96 187212 port 340 187212 unique_id port 187212 remote_ip 10.8.0.250 187215 username zahra1101 187215 mac 187215 bytes_out 0 187215 bytes_in 0 187215 station_ip 5.120.88.96 187215 port 344 187215 unique_id port 187215 remote_ip 10.8.0.250 187220 username sekonji0496 187220 mac 187177 station_ip 83.123.38.77 187177 port 340 187177 unique_id port 187177 remote_ip 10.8.0.62 187178 username zahra1101 187178 mac 187178 bytes_out 0 187178 bytes_in 0 187178 station_ip 5.120.88.96 187178 port 340 187178 unique_id port 187178 remote_ip 10.8.0.250 187179 username sekonji0496 187179 mac 187179 bytes_out 0 187179 bytes_in 0 187179 station_ip 83.123.38.77 187179 port 340 187179 unique_id port 187179 remote_ip 10.8.0.62 187184 username hatami 187184 mac 187184 bytes_out 3248 187184 bytes_in 3761 187184 station_ip 151.235.120.82 187184 port 310 187184 unique_id port 187184 remote_ip 10.8.0.98 187186 username sekonji0496 187186 mac 187186 bytes_out 0 187186 bytes_in 0 187186 station_ip 83.123.38.77 187186 port 310 187186 unique_id port 187186 remote_ip 10.8.0.62 187189 username aminvpn 187189 mac 187189 bytes_out 0 187189 bytes_in 0 187189 station_ip 5.119.36.146 187189 port 339 187189 unique_id port 187189 remote_ip 10.8.0.58 187191 username aminvpn 187191 mac 187191 bytes_out 0 187191 bytes_in 0 187191 station_ip 5.119.193.69 187191 port 341 187191 unique_id port 187191 remote_ip 10.8.0.58 187197 username mohammadjavad 187197 mac 187197 bytes_out 755906 187197 bytes_in 9920519 187197 station_ip 83.123.61.1 187197 port 340 187197 unique_id port 187197 remote_ip 10.8.0.110 187201 username hatami 187201 mac 187201 bytes_out 58456 187201 bytes_in 228258 187201 station_ip 151.235.120.82 187201 port 310 187201 unique_id port 187201 remote_ip 10.8.0.98 187202 username aminvpn 187202 mac 187202 bytes_out 17235 187202 bytes_in 20482 187202 station_ip 5.119.36.146 187202 port 339 187202 unique_id port 187202 remote_ip 10.8.0.58 187204 username hatami 187204 mac 187204 bytes_out 92676 187204 bytes_in 799003 187204 station_ip 151.235.120.82 187204 port 310 187204 unique_id port 187204 remote_ip 10.8.0.98 187207 username zahra1101 187207 kill_reason Maximum check online fails reached 187207 mac 187207 bytes_out 0 187207 bytes_in 0 187207 station_ip 5.120.88.96 187207 port 339 187207 unique_id port 187210 username sekonji0496 187210 mac 187210 bytes_out 0 187210 bytes_in 0 187210 station_ip 83.123.38.77 187210 port 344 187210 unique_id port 187210 remote_ip 10.8.0.62 187213 username pourshad 187213 kill_reason Another user logged on this global unique id 187213 mac 187213 bytes_out 0 187213 bytes_in 0 187213 station_ip 5.120.203.117 187213 port 317 187213 unique_id port 187214 username sekonji0496 187214 mac 187214 bytes_out 0 187214 bytes_in 0 187214 station_ip 83.123.38.77 187214 port 340 187214 unique_id port 187214 remote_ip 10.8.0.62 187216 username sabaghnezhad 187216 mac 187216 bytes_out 393342 187216 bytes_in 868764 187216 station_ip 89.196.37.45 187216 port 333 187216 unique_id port 187216 remote_ip 10.8.0.66 187219 username aminvpn 187219 mac 187219 bytes_out 9367 187219 bytes_in 20595 187219 station_ip 5.119.36.146 187219 port 338 187219 unique_id port 187219 remote_ip 10.8.0.58 187223 username aminvpn 187223 mac 187223 bytes_out 404876 187223 bytes_in 4967649 187223 station_ip 5.119.193.69 187223 port 342 187223 unique_id port 187223 remote_ip 10.8.0.58 187229 username aminvpn 187229 mac 187229 bytes_out 0 187229 bytes_in 0 187229 station_ip 5.119.193.69 187229 port 333 187229 unique_id port 187229 remote_ip 10.8.0.58 187232 username aminvpn 187232 mac 187232 bytes_out 0 187232 bytes_in 0 187232 station_ip 5.119.36.146 187232 port 342 187190 unique_id port 187190 remote_ip 10.8.0.62 187192 username sekonji0496 187192 mac 187192 bytes_out 0 187192 bytes_in 0 187192 station_ip 83.123.38.77 187192 port 310 187192 unique_id port 187192 remote_ip 10.8.0.62 187193 username sekonji0496 187193 mac 187193 bytes_out 0 187193 bytes_in 0 187193 station_ip 83.123.38.77 187193 port 310 187193 unique_id port 187193 remote_ip 10.8.0.62 187194 username sekonji0496 187194 mac 187194 bytes_out 0 187194 bytes_in 0 187194 station_ip 83.123.38.77 187194 port 310 187194 unique_id port 187194 remote_ip 10.8.0.62 187195 username zahra1101 187195 mac 187195 bytes_out 0 187195 bytes_in 0 187195 station_ip 5.120.88.96 187195 port 310 187195 unique_id port 187195 remote_ip 10.8.0.250 187200 username sedighe 187200 mac 187200 bytes_out 344460 187200 bytes_in 1510215 187200 station_ip 83.123.109.183 187200 port 338 187200 unique_id port 187200 remote_ip 10.8.0.46 187206 username zahra1101 187206 mac 187206 bytes_out 0 187206 bytes_in 0 187206 station_ip 5.120.88.96 187206 port 310 187206 unique_id port 187206 remote_ip 10.8.0.250 187217 username sekonji0496 187217 mac 187217 bytes_out 0 187217 bytes_in 0 187217 station_ip 83.123.38.77 187217 port 333 187217 unique_id port 187217 remote_ip 10.8.0.62 187218 username yaghobi 187218 mac 187218 bytes_out 74147 187218 bytes_in 207577 187218 station_ip 83.123.127.63 187218 port 342 187218 unique_id port 187218 remote_ip 10.8.0.138 187221 username dortaj3792 187221 mac 187221 bytes_out 192289 187221 bytes_in 991214 187221 station_ip 5.119.146.223 187221 port 340 187221 unique_id port 187221 remote_ip 10.8.0.102 187224 username milan 187224 kill_reason Another user logged on this global unique id 187224 mac 187224 bytes_out 0 187224 bytes_in 0 187224 station_ip 5.119.108.114 187224 port 334 187224 unique_id port 187226 username sekonji0496 187226 mac 187226 bytes_out 0 187226 bytes_in 0 187226 station_ip 83.123.38.77 187226 port 338 187226 unique_id port 187226 remote_ip 10.8.0.62 187227 username yaghobi 187227 mac 187227 bytes_out 469337 187227 bytes_in 842270 187227 station_ip 83.123.52.242 187227 port 333 187227 unique_id port 187227 remote_ip 10.8.0.138 187231 username zahra1101 187231 mac 187231 bytes_out 787829 187231 bytes_in 9028835 187231 station_ip 5.120.88.96 187231 port 344 187231 unique_id port 187231 remote_ip 10.8.0.250 187234 username zahra1101 187234 mac 187234 bytes_out 0 187234 bytes_in 0 187234 station_ip 5.120.88.96 187234 port 333 187234 unique_id port 187234 remote_ip 10.8.0.250 187235 username aminvpn 187235 mac 187235 bytes_out 0 187235 bytes_in 0 187235 station_ip 5.119.193.69 187235 port 344 187235 unique_id port 187235 remote_ip 10.8.0.58 187237 username sekonji0496 187237 mac 187237 bytes_out 2054 187237 bytes_in 4430 187237 station_ip 83.123.38.77 187237 port 338 187237 unique_id port 187237 remote_ip 10.8.0.62 187239 username aminvpn 187239 mac 187239 bytes_out 0 187239 bytes_in 0 187239 station_ip 5.119.36.146 187239 port 338 187239 unique_id port 187239 remote_ip 10.8.0.58 187240 username zahra1101 187240 mac 187240 bytes_out 2262 187240 bytes_in 4547 187240 station_ip 5.120.88.96 187240 port 333 187240 unique_id port 187240 remote_ip 10.8.0.250 187242 username aminvpn 187242 unique_id port 187242 terminate_cause Lost-Carrier 187242 bytes_out 7470789 187242 bytes_in 179685208 187242 station_ip 31.57.121.81 187242 port 15729050 187220 bytes_out 0 187220 bytes_in 0 187220 station_ip 83.123.38.77 187220 port 345 187220 unique_id port 187220 remote_ip 10.8.0.62 187222 username sekonji0496 187222 mac 187222 bytes_out 0 187222 bytes_in 0 187222 station_ip 83.123.38.77 187222 port 340 187222 unique_id port 187222 remote_ip 10.8.0.62 187225 username kalantary6037 187225 mac 187225 bytes_out 289034 187225 bytes_in 909337 187225 station_ip 83.123.49.195 187225 port 338 187225 unique_id port 187225 remote_ip 10.8.0.50 187228 username aminvpn 187228 mac 187228 bytes_out 37257 187228 bytes_in 181140 187228 station_ip 5.119.36.146 187228 port 340 187228 unique_id port 187228 remote_ip 10.8.0.58 187230 username sekonji0496 187230 mac 187230 bytes_out 2401 187230 bytes_in 4358 187230 station_ip 83.123.38.77 187230 port 338 187230 unique_id port 187230 remote_ip 10.8.0.62 187233 username yaghobi 187233 mac 187233 bytes_out 1616 187233 bytes_in 7589 187233 station_ip 83.123.79.197 187233 port 340 187233 unique_id port 187233 remote_ip 10.8.0.138 187236 username aminvpn 187236 mac 187236 bytes_out 0 187236 bytes_in 0 187236 station_ip 5.119.36.146 187236 port 333 187236 unique_id port 187236 remote_ip 10.8.0.58 187241 username aminvpn 187241 mac 187241 bytes_out 0 187241 bytes_in 0 187241 station_ip 5.119.193.69 187241 port 340 187241 unique_id port 187241 remote_ip 10.8.0.58 187247 username sekonji0496 187247 mac 187247 bytes_out 0 187247 bytes_in 0 187247 station_ip 83.123.38.77 187247 port 340 187247 unique_id port 187247 remote_ip 10.8.0.62 187252 username pourshad 187252 kill_reason Another user logged on this global unique id 187252 mac 187252 bytes_out 0 187252 bytes_in 0 187252 station_ip 5.120.203.117 187252 port 317 187252 unique_id port 187253 username sekonji0496 187253 mac 187253 bytes_out 0 187253 bytes_in 0 187253 station_ip 83.123.38.77 187253 port 333 187253 unique_id port 187253 remote_ip 10.8.0.62 187257 username sekonji0496 187257 mac 187257 bytes_out 2088 187257 bytes_in 4286 187257 station_ip 83.123.38.77 187257 port 344 187257 unique_id port 187257 remote_ip 10.8.0.62 187259 username sekonji0496 187259 mac 187259 bytes_out 0 187259 bytes_in 0 187259 station_ip 83.123.38.77 187259 port 344 187259 unique_id port 187259 remote_ip 10.8.0.62 187262 username zahra1101 187262 mac 187262 bytes_out 0 187262 bytes_in 0 187262 station_ip 5.120.88.96 187262 port 344 187262 unique_id port 187262 remote_ip 10.8.0.250 187264 username zahra1101 187264 kill_reason Maximum check online fails reached 187264 mac 187264 bytes_out 0 187264 bytes_in 0 187264 station_ip 5.120.88.96 187264 port 344 187264 unique_id port 187265 username zahra1101 187265 mac 187265 bytes_out 0 187265 bytes_in 0 187265 station_ip 5.120.88.96 187265 port 345 187265 unique_id port 187265 remote_ip 10.8.0.250 187269 username aminvpn 187269 mac 187269 bytes_out 2234761 187269 bytes_in 28581953 187269 station_ip 5.119.36.146 187269 port 342 187269 unique_id port 187269 remote_ip 10.8.0.58 187271 username sekonji0496 187271 mac 187271 bytes_out 0 187271 bytes_in 0 187271 station_ip 83.123.126.80 187271 port 349 187271 unique_id port 187271 remote_ip 10.8.0.62 187276 username kalantary6037 187276 mac 187276 bytes_out 571784 187276 bytes_in 5920913 187276 station_ip 83.123.35.71 187276 port 345 187276 unique_id port 187276 remote_ip 10.8.0.50 187277 username sekonji0496 187277 kill_reason Maximum check online fails reached 187277 mac 187232 unique_id port 187232 remote_ip 10.8.0.58 187238 username aminvpn 187238 mac 187238 bytes_out 0 187238 bytes_in 0 187238 station_ip 5.119.193.69 187238 port 340 187238 unique_id port 187238 remote_ip 10.8.0.58 187245 username zahra1101 187245 mac 187245 bytes_out 0 187245 bytes_in 0 187245 station_ip 5.120.88.96 187245 port 340 187245 unique_id port 187245 remote_ip 10.8.0.250 187246 username aminvpn 187246 mac 187246 bytes_out 0 187246 bytes_in 0 187246 station_ip 5.119.36.146 187246 port 333 187246 unique_id port 187246 remote_ip 10.8.0.58 187248 username aminvpn 187248 mac 187248 bytes_out 0 187248 bytes_in 0 187248 station_ip 5.119.193.69 187248 port 342 187248 unique_id port 187248 remote_ip 10.8.0.58 187249 username sekonji0496 187249 mac 187249 bytes_out 0 187249 bytes_in 0 187249 station_ip 83.123.38.77 187249 port 333 187249 unique_id port 187249 remote_ip 10.8.0.62 187250 username sekonji0496 187250 mac 187250 bytes_out 0 187250 bytes_in 0 187250 station_ip 83.123.38.77 187250 port 333 187250 unique_id port 187250 remote_ip 10.8.0.62 187251 username sekonji0496 187251 mac 187251 bytes_out 0 187251 bytes_in 0 187251 station_ip 83.123.38.77 187251 port 333 187251 unique_id port 187251 remote_ip 10.8.0.62 187255 username aminvpn 187255 mac 187255 bytes_out 0 187255 bytes_in 0 187255 station_ip 5.119.193.69 187255 port 345 187255 unique_id port 187255 remote_ip 10.8.0.58 187263 username zahra1101 187263 mac 187263 bytes_out 0 187263 bytes_in 0 187263 station_ip 5.120.88.96 187263 port 345 187263 unique_id port 187263 remote_ip 10.8.0.250 187267 username aminvpn 187267 unique_id port 187267 terminate_cause User-Request 187267 bytes_out 5996235 187267 bytes_in 171386730 187267 station_ip 31.57.123.113 187267 port 15729051 187267 nas_port_type Virtual 187267 remote_ip 5.5.5.118 187268 username sekonji0496 187268 mac 187268 bytes_out 0 187268 bytes_in 0 187268 station_ip 83.123.126.80 187268 port 345 187268 unique_id port 187268 remote_ip 10.8.0.62 187274 username zahra1101 187274 kill_reason Maximum check online fails reached 187274 mac 187274 bytes_out 0 187274 bytes_in 0 187274 station_ip 5.120.88.96 187274 port 347 187274 unique_id port 187275 username motamedi9772 187275 mac 187275 bytes_out 36814 187275 bytes_in 16467 187275 station_ip 83.123.20.207 187275 port 346 187275 unique_id port 187275 remote_ip 10.8.0.154 187279 username alipour1506 187287 bytes_out 0 187279 kill_reason Another user logged on this global unique id 187279 mac 187279 bytes_out 0 187279 bytes_in 0 187279 station_ip 78.39.25.121 187279 port 304 187279 unique_id port 187279 remote_ip 10.8.0.246 187280 username sekonji0496 187280 mac 187280 bytes_out 0 187280 bytes_in 0 187280 station_ip 83.123.126.80 187280 port 348 187280 unique_id port 187280 remote_ip 10.8.0.62 187284 username aminvpn 187284 mac 187284 bytes_out 1418258 187284 bytes_in 16668403 187284 station_ip 5.119.36.146 187284 port 342 187284 unique_id port 187284 remote_ip 10.8.0.58 187286 username aminvpn 187286 mac 187286 bytes_out 0 187286 bytes_in 0 187286 station_ip 5.119.193.69 187286 port 348 187286 unique_id port 187286 remote_ip 10.8.0.58 187288 username pourshad 187288 mac 187288 bytes_out 0 187288 bytes_in 0 187288 station_ip 5.120.203.117 187288 port 317 187288 unique_id port 187292 username sekonji0496 187292 mac 187292 bytes_out 0 187292 bytes_in 0 187292 station_ip 83.123.126.80 187292 port 317 187292 unique_id port 187242 nas_port_type Virtual 187242 remote_ip 5.5.5.119 187243 username aminvpn 187243 mac 187243 bytes_out 0 187243 bytes_in 0 187243 station_ip 5.119.36.146 187243 port 333 187243 unique_id port 187243 remote_ip 10.8.0.58 187244 username aminvpn 187244 mac 187244 bytes_out 0 187244 bytes_in 0 187244 station_ip 5.119.193.69 187244 port 340 187244 unique_id port 187244 remote_ip 10.8.0.58 187254 username aminvpn 187254 mac 187254 bytes_out 63166 187254 bytes_in 179375 187254 station_ip 5.119.36.146 187254 port 342 187254 unique_id port 187254 remote_ip 10.8.0.58 187256 username zahra1101 187256 mac 187256 bytes_out 0 187256 bytes_in 0 187256 station_ip 5.120.88.96 187256 port 333 187256 unique_id port 187256 remote_ip 10.8.0.250 187258 username zahra1101 187258 mac 187258 bytes_out 0 187258 bytes_in 0 187258 station_ip 5.120.88.96 187258 port 344 187258 unique_id port 187258 remote_ip 10.8.0.250 187260 username kalantary6037 187260 mac 187260 bytes_out 69888 187260 bytes_in 158324 187260 station_ip 83.123.35.71 187260 port 345 187260 unique_id port 187260 remote_ip 10.8.0.50 187261 username rahim 187261 kill_reason Another user logged on this global unique id 187261 mac 187261 bytes_out 0 187261 bytes_in 0 187261 station_ip 5.119.57.111 187261 port 343 187261 unique_id port 187261 remote_ip 10.8.0.134 187266 username zahra1101 187266 mac 187266 bytes_out 0 187266 bytes_in 0 187266 station_ip 5.120.88.96 187266 port 345 187266 unique_id port 187266 remote_ip 10.8.0.250 187270 username aminvpn 187270 mac 187270 bytes_out 0 187270 bytes_in 0 187270 station_ip 5.119.193.69 187270 port 348 187270 unique_id port 187270 remote_ip 10.8.0.58 187272 username zahra1101 187272 mac 187272 bytes_out 0 187272 bytes_in 0 187272 station_ip 5.120.88.96 187272 port 348 187272 unique_id port 187272 remote_ip 10.8.0.250 187273 username sekonji0496 187273 mac 187273 bytes_out 0 187273 bytes_in 0 187273 station_ip 83.123.126.80 187273 port 348 187273 unique_id port 187273 remote_ip 10.8.0.62 187278 username zahra1101 187278 mac 187278 bytes_out 0 187278 bytes_in 0 187278 station_ip 5.120.88.96 187278 port 346 187278 unique_id port 187278 remote_ip 10.8.0.250 187282 username sekonji0496 187282 mac 187282 bytes_out 0 187282 bytes_in 0 187282 station_ip 83.123.126.80 187282 port 348 187282 unique_id port 187282 remote_ip 10.8.0.62 187287 username sekonji0496 187287 mac 187287 bytes_in 0 187287 station_ip 83.123.126.80 187287 port 342 187287 unique_id port 187287 remote_ip 10.8.0.62 187289 username zahra1101 187289 mac 187289 bytes_out 0 187289 bytes_in 0 187289 station_ip 5.120.88.96 187289 port 348 187289 unique_id port 187289 remote_ip 10.8.0.250 187305 username hosseine 187305 mac 187305 bytes_out 9776943 187305 bytes_in 15950998 187305 station_ip 83.123.109.121 187305 port 340 187305 unique_id port 187305 remote_ip 10.8.0.54 187308 username mohammadjavad 187308 mac 187308 bytes_out 0 187308 bytes_in 0 187308 station_ip 83.123.3.48 187308 port 340 187308 unique_id port 187308 remote_ip 10.8.0.110 187309 username dortaj3792 187309 mac 187309 bytes_out 1396735 187309 bytes_in 6668168 187309 station_ip 5.119.146.223 187309 port 333 187309 unique_id port 187309 remote_ip 10.8.0.102 187315 username zahra1101 187315 mac 187315 bytes_out 0 187315 bytes_in 0 187315 station_ip 5.120.88.96 187315 port 343 187315 unique_id port 187315 remote_ip 10.8.0.250 187277 bytes_out 0 187277 bytes_in 0 187277 station_ip 83.123.126.80 187277 port 345 187277 unique_id port 187281 username rahim 187281 kill_reason Another user logged on this global unique id 187281 mac 187281 bytes_out 0 187281 bytes_in 0 187281 station_ip 5.119.57.111 187281 port 343 187281 unique_id port 187283 username sekonji0496 187283 mac 187283 bytes_out 0 187283 bytes_in 0 187283 station_ip 83.123.126.80 187283 port 348 187283 unique_id port 187283 remote_ip 10.8.0.62 187285 username sekonji0496 187285 kill_reason Maximum check online fails reached 187285 mac 187285 bytes_out 0 187285 bytes_in 0 187285 station_ip 83.123.126.80 187285 port 346 187285 unique_id port 187290 username pourshad 187290 mac 187290 bytes_out 9732 187290 bytes_in 24241 187290 station_ip 5.120.203.117 187290 port 317 187290 unique_id port 187290 remote_ip 10.8.0.42 187291 username sekonji0496 187291 mac 187291 bytes_out 0 187291 bytes_in 0 187291 station_ip 83.123.126.80 187291 port 317 187291 unique_id port 187291 remote_ip 10.8.0.62 187295 username aminvpn 187295 mac 187295 bytes_out 1039293 187295 bytes_in 13242456 187295 station_ip 5.119.36.146 187295 port 342 187295 unique_id port 187295 remote_ip 10.8.0.58 187296 username saeeddamghani 187296 kill_reason Another user logged on this global unique id 187296 mac 187296 bytes_out 0 187296 bytes_in 0 187296 station_ip 83.123.81.242 187296 port 349 187296 unique_id port 187296 remote_ip 10.8.0.122 187297 username milan 187297 mac 187297 bytes_out 0 187297 bytes_in 0 187297 station_ip 5.119.108.114 187297 port 334 187297 unique_id port 187298 username zahra1101 187298 mac 187298 bytes_out 4060 187298 bytes_in 5609 187298 station_ip 5.120.88.96 187298 port 317 187298 unique_id port 187298 remote_ip 10.8.0.250 187301 username aminvpn 187301 mac 187301 bytes_out 0 187301 bytes_in 0 187301 station_ip 5.119.193.69 187301 port 334 187301 unique_id port 187301 remote_ip 10.8.0.58 187302 username kalantary6037 187302 mac 187302 bytes_out 906660 187302 bytes_in 4794696 187302 station_ip 83.123.117.215 187302 port 350 187302 unique_id port 187302 remote_ip 10.8.0.50 187306 username zahra1101 187306 mac 187306 bytes_out 0 187306 bytes_in 0 187306 station_ip 5.120.88.96 187306 port 334 187306 unique_id port 187306 remote_ip 10.8.0.250 187310 username sekonji0496 187310 mac 187310 bytes_out 0 187310 bytes_in 0 187310 station_ip 83.123.126.80 187310 port 333 187310 unique_id port 187310 remote_ip 10.8.0.62 187311 username sekonji0496 187311 mac 187311 bytes_out 0 187311 bytes_in 0 187311 station_ip 83.123.126.80 187311 port 333 187311 unique_id port 187311 remote_ip 10.8.0.62 187314 username aminvpn 187314 mac 187314 bytes_out 0 187314 bytes_in 0 187314 station_ip 5.119.193.69 187314 port 342 187314 unique_id port 187314 remote_ip 10.8.0.58 187319 username zahra1101 187319 mac 187319 bytes_out 0 187319 bytes_in 0 187319 station_ip 5.120.88.96 187319 port 334 187319 unique_id port 187319 remote_ip 10.8.0.250 187324 username sekonji0496 187324 mac 187324 bytes_out 0 187324 bytes_in 0 187324 station_ip 83.123.59.173 187324 port 348 187324 unique_id port 187324 remote_ip 10.8.0.62 187326 username mohammadjavad 187326 kill_reason Another user logged on this global unique id 187326 mac 187326 bytes_out 0 187326 bytes_in 0 187326 station_ip 83.123.3.48 187326 port 333 187326 unique_id port 187326 remote_ip 10.8.0.110 187328 username sekonji0496 187328 mac 187328 bytes_out 0 187292 remote_ip 10.8.0.62 187293 username sekonji0496 187293 mac 187293 bytes_out 0 187293 bytes_in 0 187293 station_ip 83.123.126.80 187293 port 317 187293 unique_id port 187293 remote_ip 10.8.0.62 187294 username rahim 187294 mac 187294 bytes_out 0 187294 bytes_in 0 187294 station_ip 5.119.57.111 187294 port 343 187294 unique_id port 187299 username sekonji0496 187299 mac 187299 bytes_out 0 187299 bytes_in 0 187299 station_ip 83.123.126.80 187299 port 334 187299 unique_id port 187299 remote_ip 10.8.0.62 187300 username saeeddamghani 187300 mac 187300 bytes_out 0 187300 bytes_in 0 187300 station_ip 83.123.81.242 187300 port 349 187300 unique_id port 187303 username sekonji0496 187303 mac 187303 bytes_out 2811 187303 bytes_in 4640 187303 station_ip 83.123.126.80 187303 port 317 187303 unique_id port 187303 remote_ip 10.8.0.62 187304 username alipour1506 187304 kill_reason Another user logged on this global unique id 187304 mac 187304 bytes_out 0 187304 bytes_in 0 187304 station_ip 78.39.25.121 187304 port 304 187304 unique_id port 187307 username sekonji0496 187307 mac 187307 bytes_out 3758 187307 bytes_in 5562 187307 station_ip 83.123.126.80 187307 port 334 187307 unique_id port 187307 remote_ip 10.8.0.62 187312 username sekonji0496 187312 mac 187312 bytes_out 0 187312 bytes_in 0 187312 station_ip 83.123.126.80 187312 port 333 187312 unique_id port 187312 remote_ip 10.8.0.62 187313 username alipour1506 187313 kill_reason Another user logged on this global unique id 187313 mac 187313 bytes_out 0 187313 bytes_in 0 187313 station_ip 78.39.25.121 187313 port 304 187313 unique_id port 187320 username zahra1101 187320 mac 187320 bytes_out 0 187320 bytes_in 0 187320 station_ip 5.120.88.96 187320 port 334 187320 unique_id port 187320 remote_ip 10.8.0.250 187321 username sekonji0496 187321 mac 187321 bytes_out 0 187321 bytes_in 0 187321 station_ip 83.123.59.173 187321 port 348 187321 unique_id port 187321 remote_ip 10.8.0.62 187322 username sekonji0496 187322 mac 187322 bytes_out 0 187322 bytes_in 0 187322 station_ip 83.123.59.173 187322 port 348 187322 unique_id port 187322 remote_ip 10.8.0.62 187325 username sekonji0496 187325 mac 187325 bytes_out 0 187325 bytes_in 0 187325 station_ip 83.123.59.173 187325 port 348 187325 unique_id port 187325 remote_ip 10.8.0.62 187331 username aminvpn 187331 mac 187331 bytes_out 0 187331 bytes_in 0 187331 station_ip 5.119.193.69 187331 port 348 187331 unique_id port 187331 remote_ip 10.8.0.58 187333 username kalantary6037 187333 mac 187333 bytes_out 48479 187333 bytes_in 57333 187333 station_ip 83.123.118.83 187333 port 350 187333 unique_id port 187333 remote_ip 10.8.0.50 187334 username rajaei 187334 kill_reason Another user logged on this global unique id 187334 mac 187334 bytes_out 0 187334 bytes_in 0 187334 station_ip 37.137.18.182 187334 port 349 187334 unique_id port 187334 remote_ip 10.8.0.210 187335 username sekonji0496 187335 mac 187335 bytes_out 0 187335 bytes_in 0 187335 station_ip 83.123.59.173 187335 port 350 187335 unique_id port 187335 remote_ip 10.8.0.62 187337 username dortaj3792 187337 mac 187337 bytes_out 308604 187337 bytes_in 1261855 187337 station_ip 5.119.146.223 187337 port 343 187337 unique_id port 187337 remote_ip 10.8.0.102 187339 username sekonji0496 187339 mac 187339 bytes_out 0 187339 bytes_in 0 187339 station_ip 83.123.59.173 187339 port 342 187339 unique_id port 187339 remote_ip 10.8.0.62 187342 username sekonji0496 187316 username sekonji0496 187316 mac 187316 bytes_out 0 187316 bytes_in 0 187316 station_ip 83.123.59.173 187316 port 342 187316 unique_id port 187316 remote_ip 10.8.0.62 187317 username sekonji0496 187317 mac 187317 bytes_out 0 187317 bytes_in 0 187317 station_ip 83.123.59.173 187317 port 342 187317 unique_id port 187317 remote_ip 10.8.0.62 187318 username shadkam 187318 mac 187318 bytes_out 116899 187318 bytes_in 273931 187318 station_ip 5.202.6.36 187318 port 334 187318 unique_id port 187318 remote_ip 10.8.0.74 187323 username sekonji0496 187323 kill_reason Maximum check online fails reached 187323 mac 187323 bytes_out 0 187323 bytes_in 0 187323 station_ip 83.123.59.173 187323 port 334 187323 unique_id port 187327 username zahra1101 187327 mac 187327 bytes_out 14574 187327 bytes_in 181855 187327 station_ip 5.120.88.96 187327 port 342 187327 unique_id port 187327 remote_ip 10.8.0.250 187329 username aminvpn 187329 mac 187329 bytes_out 0 187329 bytes_in 0 187329 station_ip 5.119.193.69 187329 port 348 187329 unique_id port 187329 remote_ip 10.8.0.58 187332 username zahra1101 187332 mac 187332 bytes_out 0 187332 bytes_in 0 187332 station_ip 5.120.88.96 187332 port 342 187332 unique_id port 187332 remote_ip 10.8.0.250 187338 username mohammadjavad 187338 mac 187338 bytes_out 0 187338 bytes_in 0 187338 station_ip 83.123.3.48 187338 port 333 187338 unique_id port 187346 username mosi 187346 kill_reason Another user logged on this global unique id 187346 mac 187346 bytes_out 0 187346 bytes_in 0 187346 station_ip 151.235.79.93 187346 port 332 187346 unique_id port 187348 username aminvpn 187348 mac 187348 bytes_out 0 187348 bytes_in 0 187348 station_ip 5.119.193.69 187348 port 333 187348 unique_id port 187348 remote_ip 10.8.0.58 187350 username sekonji0496 187350 mac 187350 bytes_out 0 187350 bytes_in 0 187350 station_ip 83.123.59.173 187350 port 343 187350 unique_id port 187350 remote_ip 10.8.0.62 187351 username alirezaza 187351 unique_id port 187351 terminate_cause Lost-Carrier 187351 bytes_out 3080680 187351 bytes_in 156263075 187351 station_ip 5.120.106.29 187351 port 15729054 187351 nas_port_type Virtual 187351 remote_ip 5.5.5.117 187352 username mosi 187352 mac 187352 bytes_out 0 187352 bytes_in 0 187352 station_ip 151.235.79.93 187352 port 332 187352 unique_id port 187357 username rajaei 187357 mac 187357 bytes_out 0 187357 bytes_in 0 187357 station_ip 37.137.18.182 187357 port 349 187357 unique_id port 187362 username sekonji0496 187362 mac 187362 bytes_out 0 187362 bytes_in 0 187362 station_ip 83.123.59.173 187362 port 332 187362 unique_id port 187362 remote_ip 10.8.0.62 187369 username godarzi 187369 kill_reason Another user logged on this global unique id 187369 mac 187369 bytes_out 0 187369 bytes_in 0 187369 station_ip 5.120.84.169 187369 port 338 187369 unique_id port 187369 remote_ip 10.8.0.38 187370 username soleymani5056 187370 mac 187370 bytes_out 79664 187370 bytes_in 247880 187370 station_ip 5.119.75.247 187370 port 342 187370 unique_id port 187370 remote_ip 10.8.0.226 187371 username zahra1101 187371 mac 187371 bytes_out 0 187371 bytes_in 0 187371 station_ip 5.120.88.96 187371 port 342 187371 unique_id port 187371 remote_ip 10.8.0.250 187375 username zahra1101 187375 mac 187375 bytes_out 3070 187375 bytes_in 3941 187375 station_ip 5.120.88.96 187375 port 342 187375 unique_id port 187375 remote_ip 10.8.0.250 187380 username zahra1101 187380 mac 187328 bytes_in 0 187328 station_ip 83.123.59.173 187328 port 348 187328 unique_id port 187328 remote_ip 10.8.0.62 187330 username zahra1101 187330 mac 187330 bytes_out 2308 187330 bytes_in 4503 187330 station_ip 5.120.88.96 187330 port 342 187330 unique_id port 187330 remote_ip 10.8.0.250 187336 username saeeddamghani 187336 mac 187336 bytes_out 1228701 187336 bytes_in 18612309 187336 station_ip 217.60.175.202 187336 port 342 187336 unique_id port 187336 remote_ip 10.8.0.122 187340 username saeeddamghani 187340 mac 187340 bytes_out 0 187340 bytes_in 0 187340 station_ip 217.60.175.202 187340 port 343 187340 unique_id port 187340 remote_ip 10.8.0.122 187341 username sekonji0496 187341 mac 187341 bytes_out 0 187341 bytes_in 0 187341 station_ip 83.123.59.173 187341 port 333 187341 unique_id port 187341 remote_ip 10.8.0.62 187345 username sekonji0496 187345 mac 187345 bytes_out 0 187345 bytes_in 0 187345 station_ip 83.123.59.173 187345 port 333 187345 unique_id port 187345 remote_ip 10.8.0.62 187349 username zahra1101 187349 mac 187349 bytes_out 0 187349 bytes_in 0 187349 station_ip 5.120.88.96 187349 port 333 187349 unique_id port 187349 remote_ip 10.8.0.250 187354 username zahra1101 187354 mac 187354 bytes_out 0 187354 bytes_in 0 187354 station_ip 5.120.88.96 187354 port 332 187354 unique_id port 187354 remote_ip 10.8.0.250 187356 username sekonji0496 187356 mac 187356 bytes_out 0 187356 bytes_in 0 187356 station_ip 83.123.59.173 187356 port 342 187356 unique_id port 187356 remote_ip 10.8.0.62 187358 username sekonji0496 187358 mac 187358 bytes_out 0 187358 bytes_in 0 187358 station_ip 83.123.59.173 187358 port 342 187358 unique_id port 187358 remote_ip 10.8.0.62 187361 username milan 187361 mac 187361 bytes_out 3967548 187361 bytes_in 54396758 187361 station_ip 5.119.23.34 187361 port 343 187361 unique_id port 187361 remote_ip 10.8.0.182 187364 username aminvpn 187364 mac 187364 bytes_out 0 187364 bytes_in 0 187364 station_ip 5.119.193.69 187364 port 332 187364 unique_id port 187364 remote_ip 10.8.0.58 187365 username sekonji0496 187365 kill_reason Another user logged on this global unique id 187365 mac 187365 bytes_out 0 187365 bytes_in 0 187365 station_ip 83.123.59.173 187365 port 332 187365 unique_id port 187374 username kalantary6037 187374 mac 187374 bytes_out 150874 187374 bytes_in 598896 187374 station_ip 83.123.29.71 187374 port 343 187374 unique_id port 187374 remote_ip 10.8.0.50 187377 username aminvpn 187377 mac 187377 bytes_out 0 187377 bytes_in 0 187377 station_ip 5.119.193.69 187377 port 343 187377 unique_id port 187377 remote_ip 10.8.0.58 187381 username mohammadjavad 187381 kill_reason Another user logged on this global unique id 187381 mac 187381 bytes_out 0 187381 bytes_in 0 187381 station_ip 83.123.95.159 187381 port 333 187381 unique_id port 187381 remote_ip 10.8.0.110 187385 username zahra1101 187385 mac 187385 bytes_out 0 187385 bytes_in 0 187385 station_ip 5.120.88.96 187385 port 342 187385 unique_id port 187385 remote_ip 10.8.0.250 187386 username mohammadjavad 187386 mac 187386 bytes_out 0 187386 bytes_in 0 187386 station_ip 83.123.95.159 187386 port 333 187386 unique_id port 187389 username akbari0070 187389 kill_reason Another user logged on this global unique id 187389 mac 187389 bytes_out 0 187389 bytes_in 0 187389 station_ip 83.123.85.101 187389 port 349 187389 unique_id port 187389 remote_ip 10.8.0.166 187390 username sabaghnezhad 187390 mac 187342 mac 187342 bytes_out 0 187342 bytes_in 0 187342 station_ip 83.123.59.173 187342 port 333 187342 unique_id port 187342 remote_ip 10.8.0.62 187343 username sekonji0496 187343 mac 187343 bytes_out 0 187343 bytes_in 0 187343 station_ip 83.123.59.173 187343 port 333 187343 unique_id port 187343 remote_ip 10.8.0.62 187344 username sekonji0496 187344 mac 187344 bytes_out 0 187344 bytes_in 0 187344 station_ip 83.123.59.173 187344 port 333 187344 unique_id port 187344 remote_ip 10.8.0.62 187347 username zahra1101 187347 mac 187347 bytes_out 0 187347 bytes_in 0 187347 station_ip 5.120.88.96 187347 port 333 187347 unique_id port 187347 remote_ip 10.8.0.250 187353 username kalantary6037 187353 mac 187353 bytes_out 292467 187353 bytes_in 1946067 187353 station_ip 83.123.118.83 187353 port 342 187353 unique_id port 187353 remote_ip 10.8.0.50 187355 username morteza4424 187355 mac 187355 bytes_out 470209 187355 bytes_in 4211839 187355 station_ip 83.123.78.12 187355 port 333 187355 unique_id port 187355 remote_ip 10.8.0.206 187359 username zahra1101 187359 mac 187359 bytes_out 3328 187359 bytes_in 5595 187359 station_ip 5.120.88.96 187359 port 350 187359 unique_id port 187359 remote_ip 10.8.0.250 187360 username dortaj3792 187360 mac 187360 bytes_out 50942 187360 bytes_in 42387 187360 station_ip 5.119.146.223 187360 port 332 187360 unique_id port 187360 remote_ip 10.8.0.102 187363 username sekonji0496 187363 mac 187363 bytes_out 0 187363 bytes_in 0 187363 station_ip 83.123.59.173 187363 port 342 187363 unique_id port 187363 remote_ip 10.8.0.62 187366 username alipour1506 187366 kill_reason Another user logged on this global unique id 187366 mac 187366 bytes_out 0 187366 bytes_in 0 187366 station_ip 78.39.25.121 187366 port 304 187366 unique_id port 187367 username sekonji0496 187367 kill_reason Another user logged on this global unique id 187367 mac 187367 bytes_out 0 187367 bytes_in 0 187367 station_ip 83.123.59.173 187367 port 332 187367 unique_id port 187368 username zahra1101 187368 mac 187368 bytes_out 0 187368 bytes_in 0 187368 station_ip 5.120.88.96 187368 port 332 187368 unique_id port 187368 remote_ip 10.8.0.250 187372 username saeeddamghani 187372 mac 187372 bytes_out 19049 187372 bytes_in 51392 187372 station_ip 217.60.175.202 187372 port 342 187372 unique_id port 187372 remote_ip 10.8.0.122 187373 username aminvpn 187373 unique_id port 187373 terminate_cause Lost-Carrier 187373 bytes_out 2682830 187373 bytes_in 58454162 187373 station_ip 5.119.193.69 187373 port 15729057 187373 nas_port_type Virtual 187373 remote_ip 5.5.5.123 187376 username zahra1101 187376 mac 187376 bytes_out 0 187376 bytes_in 0 187376 station_ip 5.120.88.96 187376 port 342 187376 unique_id port 187376 remote_ip 10.8.0.250 187378 username majidsarmast 187378 mac 187378 bytes_out 1373027 187378 bytes_in 14574355 187378 station_ip 86.57.102.154 187378 port 340 187378 unique_id port 187378 remote_ip 10.8.0.170 187379 username alikomsari 187379 kill_reason Another user logged on this global unique id 187379 mac 187379 bytes_out 0 187379 bytes_in 0 187379 station_ip 5.119.103.213 187379 port 337 187379 unique_id port 187379 remote_ip 10.8.0.214 187382 username zahra1101 187382 mac 187382 bytes_out 0 187382 bytes_in 0 187382 station_ip 5.120.88.96 187382 port 343 187382 unique_id port 187382 remote_ip 10.8.0.250 187383 username morteza4424 187383 kill_reason Another user logged on this global unique id 187383 mac 187383 bytes_out 0 187383 bytes_in 0 187380 bytes_out 0 187380 bytes_in 0 187380 station_ip 5.120.88.96 187380 port 340 187380 unique_id port 187380 remote_ip 10.8.0.250 187387 username aminvpn 187387 mac 187387 bytes_out 0 187387 bytes_in 0 187387 station_ip 5.119.193.69 187387 port 333 187387 unique_id port 187387 remote_ip 10.8.0.58 187391 username morteza4424 187391 mac 187391 bytes_out 0 187391 bytes_in 0 187391 station_ip 83.123.78.12 187391 port 332 187391 unique_id port 187395 username pourshad 187395 mac 187395 bytes_out 1039324 187395 bytes_in 14949974 187395 station_ip 5.120.203.117 187395 port 317 187395 unique_id port 187395 remote_ip 10.8.0.42 187403 username akbari0070 187403 kill_reason Another user logged on this global unique id 187403 mac 187403 bytes_out 0 187403 bytes_in 0 187403 station_ip 83.123.85.101 187403 port 349 187403 unique_id port 187404 username zahra1101 187404 kill_reason Maximum check online fails reached 187404 mac 187404 bytes_out 0 187404 bytes_in 0 187404 station_ip 5.120.88.96 187404 port 342 187404 unique_id port 187407 username kalantary6037 187407 mac 187407 bytes_out 96038 187407 bytes_in 433263 187407 station_ip 83.123.74.199 187407 port 348 187407 unique_id port 187407 remote_ip 10.8.0.50 187411 username akbari0070 187411 mac 187411 bytes_out 0 187411 bytes_in 0 187411 station_ip 83.123.85.101 187411 port 349 187411 unique_id port 187414 username saeed9658 187414 mac 187414 bytes_out 2083412 187414 bytes_in 17725450 187414 station_ip 5.119.39.130 187414 port 338 187414 unique_id port 187414 remote_ip 10.8.0.162 187415 username yazdani6029 187415 mac 187415 bytes_out 0 187415 bytes_in 0 187415 station_ip 83.123.10.247 187415 port 333 187415 unique_id port 187416 username mosi 187416 kill_reason Another user logged on this global unique id 187416 mac 187416 bytes_out 0 187416 bytes_in 0 187416 station_ip 151.235.79.93 187416 port 332 187416 unique_id port 187416 remote_ip 10.8.0.142 187420 username mohammadjavad 187420 mac 187420 bytes_out 1018778 187420 bytes_in 11697775 187420 station_ip 37.27.45.103 187420 port 340 187420 unique_id port 187420 remote_ip 10.8.0.110 187422 username aminvpn 187422 mac 187422 bytes_out 0 187422 bytes_in 0 187422 station_ip 5.119.193.69 187422 port 333 187422 unique_id port 187422 remote_ip 10.8.0.58 187423 username rashidi4690 187423 mac 187423 bytes_out 7343173 187423 bytes_in 2121150 187423 station_ip 5.120.55.20 187423 port 310 187423 unique_id port 187423 remote_ip 10.8.0.242 187424 username esmaeilkazemi 187424 mac 187424 bytes_out 21578 187424 bytes_in 78624 187424 station_ip 83.123.33.157 187424 port 310 187424 unique_id port 187424 remote_ip 10.8.0.26 187425 username meysam 187425 kill_reason Another user logged on this global unique id 187425 mac 187425 bytes_out 0 187425 bytes_in 0 187425 station_ip 188.159.254.21 187425 port 350 187425 unique_id port 187425 remote_ip 10.8.0.158 187426 username shahruz 187426 mac 187426 bytes_out 70216 187426 bytes_in 164033 187426 station_ip 5.208.127.190 187426 port 333 187426 unique_id port 187426 remote_ip 10.8.0.146 187436 username aminvpn 187436 mac 187436 bytes_out 0 187436 bytes_in 0 187436 station_ip 5.119.193.69 187436 port 317 187436 unique_id port 187436 remote_ip 10.8.0.58 187438 username zahra1101 187438 mac 187438 bytes_out 3070 187438 bytes_in 4203 187438 station_ip 5.120.88.96 187438 port 340 187438 unique_id port 187438 remote_ip 10.8.0.250 187441 username mohammadjavad 187441 mac 187441 bytes_out 0 187383 station_ip 83.123.78.12 187383 port 332 187383 unique_id port 187383 remote_ip 10.8.0.206 187384 username yaghobi 187384 mac 187384 bytes_out 661783 187384 bytes_in 3839480 187384 station_ip 83.123.88.113 187384 port 342 187384 unique_id port 187384 remote_ip 10.8.0.138 187388 username yaghobi 187388 mac 187388 bytes_out 115629 187388 bytes_in 197629 187388 station_ip 83.123.88.113 187388 port 343 187388 unique_id port 187388 remote_ip 10.8.0.138 187392 username kalantary6037 187392 mac 187392 bytes_out 1151563 187392 bytes_in 12046413 187392 station_ip 83.123.91.195 187392 port 342 187392 unique_id port 187392 remote_ip 10.8.0.50 187394 username godarzi 187394 mac 187394 bytes_out 0 187394 bytes_in 0 187394 station_ip 5.120.84.169 187394 port 338 187394 unique_id port 187398 username rashidi4690 187398 mac 187398 bytes_out 27383877 187398 bytes_in 43156008 187398 station_ip 5.120.55.20 187398 port 310 187398 unique_id port 187398 remote_ip 10.8.0.242 187401 username kamali3 187401 mac 187401 bytes_out 14843 187401 bytes_in 20924 187401 station_ip 83.123.106.139 187401 port 342 187401 unique_id port 187401 remote_ip 10.8.0.174 187405 username zahra1101 187405 mac 187405 bytes_out 0 187405 bytes_in 0 187405 station_ip 5.120.88.96 187405 port 350 187405 unique_id port 187405 remote_ip 10.8.0.250 187412 username dortaj3792 187412 mac 187412 bytes_out 838788 187412 bytes_in 2114905 187412 station_ip 5.119.146.223 187412 port 340 187412 unique_id port 187412 remote_ip 10.8.0.102 187413 username zahra1101 187413 mac 187413 bytes_out 0 187413 bytes_in 0 187413 station_ip 5.120.88.96 187413 port 340 187413 unique_id port 187413 remote_ip 10.8.0.250 187419 username pourshad 187419 kill_reason Another user logged on this global unique id 187419 mac 187419 bytes_out 0 187419 bytes_in 0 187419 station_ip 5.120.252.175 187419 port 317 187419 unique_id port 187419 remote_ip 10.8.0.42 187427 username aminvpn 187427 unique_id port 187427 terminate_cause Lost-Carrier 187427 bytes_out 1153945 187427 bytes_in 2243608 187427 station_ip 83.123.99.110 187427 port 15729049 187427 nas_port_type Virtual 187427 remote_ip 5.5.5.120 187428 username zahra1101 187428 mac 187428 bytes_out 0 187428 bytes_in 0 187428 station_ip 5.120.88.96 187428 port 340 187428 unique_id port 187428 remote_ip 10.8.0.250 187430 username akbari0070 187430 mac 187430 bytes_out 0 187430 bytes_in 0 187430 station_ip 83.123.80.225 187430 port 340 187430 unique_id port 187430 remote_ip 10.8.0.166 187433 username pourshad 187433 kill_reason Another user logged on this global unique id 187433 mac 187433 bytes_out 0 187433 bytes_in 0 187433 station_ip 5.120.252.175 187433 port 317 187433 unique_id port 187434 username shahruz 187434 mac 187434 bytes_out 2175 187434 bytes_in 4852 187434 station_ip 5.212.188.242 187434 port 333 187434 unique_id port 187434 remote_ip 10.8.0.146 187439 username shahruz 187439 mac 187439 bytes_out 2262 187439 bytes_in 4865 187439 station_ip 86.55.88.13 187439 port 317 187439 unique_id port 187439 remote_ip 10.8.0.146 187442 username kalantary6037 187442 mac 187442 bytes_out 16257 187442 bytes_in 23211 187442 station_ip 83.123.99.91 187442 port 348 187442 unique_id port 187442 remote_ip 10.8.0.50 187445 username soleymani5056 187445 mac 187445 bytes_out 154911 187445 bytes_in 556439 187445 station_ip 5.119.152.67 187445 port 317 187445 unique_id port 187445 remote_ip 10.8.0.226 187446 username soleymani5056 187446 mac 187390 bytes_out 440847 187390 bytes_in 1738297 187390 station_ip 89.196.37.45 187390 port 348 187390 unique_id port 187390 remote_ip 10.8.0.66 187393 username zahra1101 187393 mac 187393 bytes_out 0 187393 bytes_in 0 187393 station_ip 5.120.88.96 187393 port 332 187393 unique_id port 187393 remote_ip 10.8.0.250 187396 username aminvpn 187396 mac 187396 bytes_out 0 187396 bytes_in 0 187396 station_ip 5.119.193.69 187396 port 317 187396 unique_id port 187396 remote_ip 10.8.0.58 187397 username pourshad 187397 mac 187397 bytes_out 10186 187397 bytes_in 12624 187397 station_ip 5.120.203.117 187397 port 338 187397 unique_id port 187397 remote_ip 10.8.0.42 187399 username zahra1101 187399 mac 187399 bytes_out 0 187399 bytes_in 0 187399 station_ip 5.120.88.96 187399 port 338 187399 unique_id port 187399 remote_ip 10.8.0.250 187400 username sabaghnezhad 187400 mac 187400 bytes_out 200965 187400 bytes_in 77623 187400 station_ip 89.196.37.45 187400 port 343 187400 unique_id port 187400 remote_ip 10.8.0.66 187402 username morteza4424 187402 mac 187402 bytes_out 0 187402 bytes_in 0 187402 station_ip 83.123.96.32 187402 port 342 187402 unique_id port 187402 remote_ip 10.8.0.206 187406 username zahra1101 187406 mac 187406 bytes_out 0 187406 bytes_in 0 187406 station_ip 5.120.88.96 187406 port 351 187406 unique_id port 187406 remote_ip 10.8.0.250 187408 username yazdani6029 187408 kill_reason Another user logged on this global unique id 187408 mac 187408 bytes_out 0 187408 bytes_in 0 187408 station_ip 83.123.10.247 187408 port 333 187408 unique_id port 187408 remote_ip 10.8.0.238 187409 username morteza4424 187409 mac 187409 bytes_out 9368080 187409 bytes_in 478044 187409 station_ip 83.123.96.32 187409 port 343 187409 unique_id port 187409 remote_ip 10.8.0.206 187410 username aminvpn 187410 mac 187410 bytes_out 0 187410 bytes_in 0 187410 station_ip 5.119.193.69 187410 port 343 187410 unique_id port 187410 remote_ip 10.8.0.58 187417 username hamid.e 187417 unique_id port 187417 terminate_cause User-Request 187417 bytes_out 725521 187417 bytes_in 12259125 187417 station_ip 37.27.4.231 187417 port 15729058 187417 nas_port_type Virtual 187417 remote_ip 5.5.5.116 187418 username zahra1101 187418 mac 187418 bytes_out 0 187418 bytes_in 0 187418 station_ip 5.120.88.96 187418 port 333 187418 unique_id port 187418 remote_ip 10.8.0.250 187421 username aminvpn 187421 unique_id port 187421 terminate_cause Lost-Carrier 187421 bytes_out 14841714 187421 bytes_in 281286315 187421 station_ip 31.57.123.113 187421 port 15729055 187421 nas_port_type Virtual 187421 remote_ip 5.5.5.118 187429 username meysam 187429 mac 187429 bytes_out 0 187429 bytes_in 0 187429 station_ip 188.159.254.21 187429 port 350 187429 unique_id port 187431 username kalantary6037 187431 mac 187431 bytes_out 401798 187431 bytes_in 1755595 187431 station_ip 83.123.80.39 187431 port 333 187431 unique_id port 187431 remote_ip 10.8.0.50 187432 username shahruz 187432 mac 187432 bytes_out 59453 187432 bytes_in 145749 187432 station_ip 5.208.127.190 187432 port 310 187432 unique_id port 187432 remote_ip 10.8.0.146 187435 username pourshad 187435 mac 187435 bytes_out 0 187435 bytes_in 0 187435 station_ip 5.120.252.175 187435 port 317 187435 unique_id port 187437 username shahruz 187437 mac 187437 bytes_out 2478 187437 bytes_in 4938 187437 station_ip 86.55.88.13 187437 port 333 187437 unique_id port 187437 remote_ip 10.8.0.146 187440 username shahruz 187440 mac 187440 bytes_out 1040875 187440 bytes_in 14594289 187440 station_ip 86.55.88.13 187440 port 340 187440 unique_id port 187440 remote_ip 10.8.0.146 187444 username mosi 187444 mac 187444 bytes_out 0 187444 bytes_in 0 187444 station_ip 151.235.79.93 187444 port 332 187444 unique_id port 187449 username aminvpn 187449 mac 187449 bytes_out 0 187449 bytes_in 0 187449 station_ip 5.119.193.69 187449 port 348 187449 unique_id port 187449 remote_ip 10.8.0.58 187452 username shahruz 187452 mac 187452 bytes_out 0 187452 bytes_in 0 187452 station_ip 86.55.88.13 187452 port 340 187452 unique_id port 187452 remote_ip 10.8.0.146 187454 username pourshad 187454 kill_reason Another user logged on this global unique id 187454 mac 187454 bytes_out 0 187454 bytes_in 0 187454 station_ip 5.120.252.175 187454 port 332 187454 unique_id port 187454 remote_ip 10.8.0.42 187455 username zahra1101 187455 mac 187455 bytes_out 0 187455 bytes_in 0 187455 station_ip 5.120.88.96 187455 port 340 187455 unique_id port 187455 remote_ip 10.8.0.250 187456 username shahruz 187456 mac 187456 bytes_out 4049 187456 bytes_in 5440 187456 station_ip 86.55.88.13 187456 port 348 187456 unique_id port 187456 remote_ip 10.8.0.146 187457 username pourshad 187457 mac 187457 bytes_out 0 187457 bytes_in 0 187457 station_ip 5.120.252.175 187457 port 332 187457 unique_id port 187459 username alipour1506 187459 kill_reason Another user logged on this global unique id 187459 mac 187459 bytes_out 0 187459 bytes_in 0 187459 station_ip 78.39.25.121 187459 port 304 187459 unique_id port 187460 username soleymani5056 187460 mac 187460 bytes_out 87394 187460 bytes_in 66866 187460 station_ip 5.119.152.67 187460 port 317 187460 unique_id port 187460 remote_ip 10.8.0.226 187466 username shahruz 187466 mac 187466 bytes_out 0 187466 bytes_in 0 187466 station_ip 86.55.88.13 187466 port 317 187466 unique_id port 187466 remote_ip 10.8.0.146 187469 username sekonji0496 187469 mac 187469 bytes_out 37898 187469 bytes_in 93510 187469 station_ip 83.123.106.249 187469 port 349 187469 unique_id port 187469 remote_ip 10.8.0.62 187472 username shahruz 187472 mac 187472 bytes_out 28669 187472 bytes_in 61303 187472 station_ip 86.55.88.13 187472 port 351 187472 unique_id port 187472 remote_ip 10.8.0.146 187474 username aminvpn 187474 mac 187474 bytes_out 0 187474 bytes_in 0 187474 station_ip 5.119.193.69 187474 port 349 187474 unique_id port 187474 remote_ip 10.8.0.58 187475 username mohammadjavad 187475 mac 187475 bytes_out 1119180 187475 bytes_in 15996084 187475 station_ip 83.123.52.47 187475 port 340 187475 unique_id port 187475 remote_ip 10.8.0.110 187478 username mosi 187478 kill_reason Another user logged on this global unique id 187478 mac 187478 bytes_out 0 187478 bytes_in 0 187478 station_ip 151.235.79.93 187478 port 350 187478 unique_id port 187478 remote_ip 10.8.0.142 187483 username alikomsari 187483 mac 187483 bytes_out 0 187483 bytes_in 0 187483 station_ip 5.119.103.213 187483 port 337 187483 unique_id port 187490 username yaghobi 187490 mac 187490 bytes_out 525734 187490 bytes_in 881748 187490 station_ip 83.123.40.156 187490 port 349 187490 unique_id port 187490 remote_ip 10.8.0.138 187494 username soleymani5056 187494 mac 187494 bytes_out 91538 187494 bytes_in 345430 187494 station_ip 5.119.199.84 187494 port 349 187494 unique_id port 187494 remote_ip 10.8.0.226 187498 username aminvpn 187498 mac 187498 bytes_out 401337 187441 bytes_in 0 187441 station_ip 37.27.45.103 187441 port 349 187441 unique_id port 187441 remote_ip 10.8.0.110 187443 username shahruz 187443 mac 187443 bytes_out 2210 187443 bytes_in 5343 187443 station_ip 86.55.88.13 187443 port 350 187443 unique_id port 187443 remote_ip 10.8.0.146 187448 username shahruz 187448 mac 187448 bytes_out 23452 187448 bytes_in 58487 187448 station_ip 86.55.88.13 187448 port 348 187448 unique_id port 187448 remote_ip 10.8.0.146 187453 username zahra1101 187453 mac 187453 bytes_out 0 187453 bytes_in 0 187453 station_ip 5.120.88.96 187453 port 340 187453 unique_id port 187453 remote_ip 10.8.0.250 187458 username shahruz 187458 mac 187458 bytes_out 5377 187458 bytes_in 13093 187458 station_ip 86.55.88.13 187458 port 349 187458 unique_id port 187458 remote_ip 10.8.0.146 187464 username soleymani5056 187464 mac 187464 bytes_out 13519 187464 bytes_in 11505 187464 station_ip 5.119.138.186 187464 port 351 187464 unique_id port 187464 remote_ip 10.8.0.226 187467 username aminvpn 187467 mac 187467 bytes_out 0 187467 bytes_in 0 187467 station_ip 5.119.193.69 187467 port 348 187467 unique_id port 187467 remote_ip 10.8.0.58 187471 username zahra1101 187471 mac 187471 bytes_out 1032141 187471 bytes_in 8118861 187471 station_ip 5.120.88.96 187471 port 340 187471 unique_id port 187471 remote_ip 10.8.0.250 187473 username yaghobi 187473 mac 187473 bytes_out 620271 187473 bytes_in 194971 187473 station_ip 83.123.93.179 187473 port 348 187473 unique_id port 187473 remote_ip 10.8.0.138 187476 username mohammadjavad 187476 mac 187476 bytes_out 0 187476 bytes_in 0 187476 station_ip 83.123.52.47 187476 port 340 187476 unique_id port 187476 remote_ip 10.8.0.110 187481 username alipour1506 187481 kill_reason Another user logged on this global unique id 187481 mac 187481 bytes_out 0 187481 bytes_in 0 187481 station_ip 78.39.25.121 187481 port 304 187481 unique_id port 187482 username rashidi4690 187482 mac 187482 bytes_out 1756870 187482 bytes_in 11561127 187482 station_ip 5.120.55.20 187482 port 310 187482 unique_id port 187482 remote_ip 10.8.0.242 187485 username shahruz 187485 mac 187485 bytes_out 32654 187485 bytes_in 73737 187485 station_ip 86.55.88.13 187485 port 317 187485 unique_id port 187485 remote_ip 10.8.0.146 187487 username shahruz 187487 mac 187487 bytes_out 0 187487 bytes_in 0 187487 station_ip 86.55.88.13 187487 port 317 187487 unique_id port 187487 remote_ip 10.8.0.146 187488 username kalantary6037 187488 mac 187488 bytes_out 633899 187488 bytes_in 7050219 187488 station_ip 83.123.37.79 187488 port 343 187488 unique_id port 187488 remote_ip 10.8.0.50 187491 username aminvpn 187491 unique_id port 187491 terminate_cause Lost-Carrier 187491 bytes_out 167896 187491 bytes_in 442630 187491 station_ip 83.123.99.110 187491 port 15729059 187491 nas_port_type Virtual 187491 remote_ip 5.5.5.120 187497 username sedighe 187497 mac 187497 bytes_out 1027686 187497 bytes_in 2952487 187497 station_ip 83.123.63.70 187497 port 348 187497 unique_id port 187497 remote_ip 10.8.0.46 187501 username rashidi4690 187501 kill_reason Another user logged on this global unique id 187501 mac 187501 bytes_out 0 187501 bytes_in 0 187501 station_ip 83.123.6.220 187501 port 353 187501 unique_id port 187501 remote_ip 10.8.0.242 187506 username sekonji0496 187506 mac 187506 bytes_out 0 187506 bytes_in 0 187506 station_ip 83.123.106.249 187506 port 348 187506 unique_id port 187506 remote_ip 10.8.0.62 187446 bytes_out 0 187446 bytes_in 0 187446 station_ip 5.119.152.67 187446 port 332 187446 unique_id port 187446 remote_ip 10.8.0.226 187447 username mosi 187447 mac 187447 bytes_out 6390 187447 bytes_in 7014 187447 station_ip 89.47.134.60 187447 port 349 187447 unique_id port 187447 remote_ip 10.8.0.142 187450 username zahra1101 187450 mac 187450 bytes_out 36184 187450 bytes_in 56670 187450 station_ip 5.120.88.96 187450 port 340 187450 unique_id port 187450 remote_ip 10.8.0.250 187451 username shahruz 187451 mac 187451 bytes_out 74484 187451 bytes_in 129590 187451 station_ip 86.55.88.13 187451 port 349 187451 unique_id port 187451 remote_ip 10.8.0.146 187461 username shahruz 187461 mac 187461 bytes_out 11287 187461 bytes_in 29831 187461 station_ip 86.55.88.13 187461 port 348 187461 unique_id port 187461 remote_ip 10.8.0.146 187462 username shahruz 187462 mac 187462 bytes_out 0 187462 bytes_in 0 187462 station_ip 86.55.88.13 187462 port 317 187462 unique_id port 187462 remote_ip 10.8.0.146 187463 username shahruz 187463 mac 187463 bytes_out 0 187463 bytes_in 0 187463 station_ip 86.55.88.13 187463 port 353 187463 unique_id port 187463 remote_ip 10.8.0.146 187465 username kalantary6037 187465 mac 187465 bytes_out 163452 187465 bytes_in 774085 187465 station_ip 83.123.81.235 187465 port 348 187465 unique_id port 187465 remote_ip 10.8.0.50 187468 username mohammadjavad 187468 mac 187468 bytes_out 1755 187468 bytes_in 4269 187468 station_ip 37.27.45.103 187468 port 353 187468 unique_id port 187468 remote_ip 10.8.0.110 187470 username pourshad 187470 kill_reason Another user logged on this global unique id 187470 mac 187470 bytes_out 0 187470 bytes_in 0 187470 station_ip 5.120.252.175 187470 port 332 187470 unique_id port 187470 remote_ip 10.8.0.42 187477 username meysam 187477 mac 187477 bytes_out 4017362 187477 bytes_in 46121343 187477 station_ip 188.159.254.21 187477 port 352 187477 unique_id port 187477 remote_ip 10.8.0.158 187479 username pourshad 187479 kill_reason Another user logged on this global unique id 187479 mac 187479 bytes_out 0 187479 bytes_in 0 187479 station_ip 5.120.252.175 187479 port 332 187479 unique_id port 187480 username zahra1101 187480 mac 187480 bytes_out 1388522 187480 bytes_in 7395980 187480 station_ip 5.120.88.96 187480 port 317 187480 unique_id port 187480 remote_ip 10.8.0.250 187484 username fezealinaghi 187484 mac 187484 bytes_out 2077614 187484 bytes_in 19658228 187484 station_ip 83.123.114.123 187484 port 343 187484 unique_id port 187484 remote_ip 10.8.0.202 187486 username aminvpn 187486 mac 187486 bytes_out 0 187486 bytes_in 0 187486 station_ip 5.119.193.69 187486 port 337 187486 unique_id port 187486 remote_ip 10.8.0.58 187489 username shadkam 187489 mac 187489 bytes_out 14209198 187489 bytes_in 18881866 187489 station_ip 5.202.6.36 187489 port 351 187489 unique_id port 187489 remote_ip 10.8.0.74 187492 username shahruz 187492 mac 187492 bytes_out 12047 187492 bytes_in 19829 187492 station_ip 86.55.88.13 187492 port 343 187492 unique_id port 187492 remote_ip 10.8.0.146 187493 username yaghobi 187493 mac 187493 bytes_out 16435 187493 bytes_in 18018 187493 station_ip 83.123.40.156 187493 port 337 187493 unique_id port 187493 remote_ip 10.8.0.138 187495 username meysam 187495 mac 187495 bytes_out 561392 187495 bytes_in 7418072 187495 station_ip 188.159.254.21 187495 port 351 187495 unique_id port 187495 remote_ip 10.8.0.158 187496 username aminvpn 187496 mac 187496 bytes_out 872743 187496 bytes_in 6428473 187496 station_ip 5.119.36.146 187496 port 317 187496 unique_id port 187496 remote_ip 10.8.0.58 187499 username yaghobi 187499 mac 187499 bytes_out 533614 187499 bytes_in 1162131 187499 station_ip 83.123.52.249 187499 port 343 187499 unique_id port 187499 remote_ip 10.8.0.138 187504 username shahruz 187504 mac 187504 bytes_out 70325 187504 bytes_in 289093 187504 station_ip 86.55.88.13 187504 port 348 187504 unique_id port 187504 remote_ip 10.8.0.146 187509 username shahruz 187509 mac 187509 bytes_out 0 187509 bytes_in 0 187509 station_ip 86.55.88.13 187509 port 352 187509 unique_id port 187509 remote_ip 10.8.0.146 187510 username shadkam 187510 mac 187510 bytes_out 0 187510 bytes_in 0 187510 station_ip 5.202.6.36 187510 port 352 187510 unique_id port 187510 remote_ip 10.8.0.74 187512 username zahra1101 187512 mac 187512 bytes_out 1727102 187512 bytes_in 15135499 187512 station_ip 5.120.88.96 187512 port 317 187512 unique_id port 187512 remote_ip 10.8.0.250 187518 username godarzi 187518 mac 187518 bytes_out 4207815 187518 bytes_in 23386380 187518 station_ip 5.120.84.169 187518 port 343 187518 unique_id port 187518 remote_ip 10.8.0.38 187519 username kalantary6037 187519 mac 187519 bytes_out 251295 187519 bytes_in 2358027 187519 station_ip 83.123.69.71 187519 port 343 187519 unique_id port 187519 remote_ip 10.8.0.50 187520 username shahruz 187520 mac 187520 bytes_out 0 187520 bytes_in 0 187520 station_ip 86.55.88.13 187520 port 343 187520 unique_id port 187520 remote_ip 10.8.0.146 187522 username mohammadjavad 187522 mac 187522 bytes_out 1186994 187522 bytes_in 12050949 187522 station_ip 83.123.91.105 187522 port 348 187522 unique_id port 187522 remote_ip 10.8.0.110 187523 username rashidi4690 187523 kill_reason Another user logged on this global unique id 187523 mac 187523 bytes_out 0 187523 bytes_in 0 187523 station_ip 83.123.6.220 187523 port 353 187523 unique_id port 187532 username godarzi 187532 mac 187532 bytes_out 671763 187532 bytes_in 373562 187532 station_ip 5.120.84.169 187532 port 351 187532 unique_id port 187532 remote_ip 10.8.0.38 187534 username fezealinaghi 187534 kill_reason Another user logged on this global unique id 187534 mac 187534 bytes_out 0 187534 bytes_in 0 187534 station_ip 83.123.5.23 187534 port 337 187534 unique_id port 187534 remote_ip 10.8.0.202 187538 username shahruz 187538 mac 187538 bytes_out 0 187538 bytes_in 0 187538 station_ip 86.55.88.13 187538 port 349 187538 unique_id port 187538 remote_ip 10.8.0.146 187541 username mohammadjavad 187541 mac 187541 bytes_out 2456606 187541 bytes_in 37788750 187541 station_ip 83.123.91.105 187541 port 348 187541 unique_id port 187541 remote_ip 10.8.0.110 187542 username godarzi 187542 mac 187542 bytes_out 4678 187542 bytes_in 8985 187542 station_ip 5.120.84.169 187542 port 349 187542 unique_id port 187542 remote_ip 10.8.0.38 187544 username shahruz 187544 mac 187544 bytes_out 0 187544 bytes_in 0 187544 station_ip 86.55.88.13 187544 port 354 187544 unique_id port 187544 remote_ip 10.8.0.146 187548 username shadkam 187548 kill_reason Another user logged on this global unique id 187548 mac 187548 bytes_out 0 187548 bytes_in 0 187548 station_ip 5.202.6.36 187548 port 343 187548 unique_id port 187554 username yaghobi 187554 mac 187554 bytes_out 55342 187554 bytes_in 114704 187554 station_ip 83.123.123.205 187554 port 352 187554 unique_id port 187498 bytes_in 1192877 187498 station_ip 5.119.193.69 187498 port 337 187498 unique_id port 187498 remote_ip 10.8.0.58 187500 username zahra1101 187500 mac 187500 bytes_out 1515888 187500 bytes_in 8469392 187500 station_ip 5.120.88.96 187500 port 352 187500 unique_id port 187500 remote_ip 10.8.0.250 187502 username shahruz 187502 mac 187502 bytes_out 5546 187502 bytes_in 11013 187502 station_ip 86.55.88.13 187502 port 317 187502 unique_id port 187502 remote_ip 10.8.0.146 187503 username shadkam 187503 mac 187503 bytes_out 0 187503 bytes_in 0 187503 station_ip 5.202.6.36 187503 port 349 187503 unique_id port 187503 remote_ip 10.8.0.74 187505 username yaghobi 187505 mac 187505 bytes_out 415296 187505 bytes_in 798704 187505 station_ip 83.123.27.114 187505 port 337 187505 unique_id port 187505 remote_ip 10.8.0.138 187507 username fezealinaghi 187507 mac 187507 bytes_out 610866 187507 bytes_in 7323319 187507 station_ip 83.123.5.23 187507 port 351 187507 unique_id port 187507 remote_ip 10.8.0.202 187511 username mohammadjavad 187511 mac 187511 bytes_out 28835 187511 bytes_in 108378 187511 station_ip 83.123.91.105 187511 port 351 187511 unique_id port 187511 remote_ip 10.8.0.110 187513 username dortaj3792 187513 mac 187513 bytes_out 171793 187513 bytes_in 415306 187513 station_ip 5.119.146.223 187513 port 348 187513 unique_id port 187513 remote_ip 10.8.0.102 187515 username malekpoir 187515 mac 187515 bytes_out 1552308 187515 bytes_in 15471344 187515 station_ip 5.119.203.248 187515 port 340 187515 unique_id port 187515 remote_ip 10.8.0.18 187517 username shahruz 187517 kill_reason Maximum check online fails reached 187517 mac 187517 bytes_out 0 187517 bytes_in 0 187517 station_ip 86.55.88.13 187517 port 340 187517 unique_id port 187525 username shahruz 187525 mac 187525 bytes_out 0 187525 bytes_in 0 187525 station_ip 86.55.88.13 187525 port 356 187525 unique_id port 187525 remote_ip 10.8.0.146 187526 username yaghobi 187526 mac 187526 bytes_out 194158 187526 bytes_in 282181 187526 station_ip 83.123.96.150 187526 port 354 187526 unique_id port 187526 remote_ip 10.8.0.138 187527 username shahruz 187527 mac 187527 bytes_out 0 187527 bytes_in 0 187527 station_ip 86.55.88.13 187527 port 354 187527 unique_id port 187527 remote_ip 10.8.0.146 187529 username shahruz 187529 mac 187529 bytes_out 0 187529 bytes_in 0 187529 station_ip 86.55.88.13 187529 port 354 187529 unique_id port 187529 remote_ip 10.8.0.146 187531 username soleymani5056 187531 mac 187531 bytes_out 116208 187531 bytes_in 265548 187531 station_ip 5.119.251.219 187531 port 352 187531 unique_id port 187531 remote_ip 10.8.0.226 187533 username rajaei 187533 mac 187533 bytes_out 1994402 187533 bytes_in 1089779 187533 station_ip 37.137.18.182 187533 port 349 187533 unique_id port 187533 remote_ip 10.8.0.210 187535 username shahruz 187535 mac 187535 bytes_out 0 187535 bytes_in 0 187535 station_ip 86.55.88.13 187535 port 349 187535 unique_id port 187535 remote_ip 10.8.0.146 187540 username shadkam 187540 kill_reason Another user logged on this global unique id 187540 mac 187540 bytes_out 0 187540 bytes_in 0 187540 station_ip 5.202.6.36 187540 port 343 187540 unique_id port 187540 remote_ip 10.8.0.74 187546 username fezealinaghi 187546 kill_reason Another user logged on this global unique id 187546 mac 187546 bytes_out 0 187546 bytes_in 0 187546 station_ip 83.123.5.23 187546 port 337 187546 unique_id port 187550 username shahruz 187508 username aminvpn 187508 mac 187508 bytes_out 697815 187508 bytes_in 3557239 187508 station_ip 5.119.193.69 187508 port 349 187508 unique_id port 187508 remote_ip 10.8.0.58 187514 username rashidi4690 187514 kill_reason Another user logged on this global unique id 187514 mac 187514 bytes_out 0 187514 bytes_in 0 187514 station_ip 83.123.6.220 187514 port 353 187514 unique_id port 187516 username aminvpn 187516 unique_id port 187516 terminate_cause User-Request 187516 bytes_out 8256286 187516 bytes_in 131315826 187516 station_ip 5.119.193.69 187516 port 15729056 187516 nas_port_type Virtual 187516 remote_ip 5.5.5.125 187521 username shahruz 187521 mac 187521 bytes_out 4588 187521 bytes_in 9578 187521 station_ip 86.55.88.13 187521 port 355 187521 unique_id port 187521 remote_ip 10.8.0.146 187524 username shahruz 187524 mac 187524 bytes_out 0 187524 bytes_in 0 187524 station_ip 86.55.88.13 187524 port 355 187524 unique_id port 187524 remote_ip 10.8.0.146 187528 username shahruz 187528 mac 187528 bytes_out 0 187528 bytes_in 0 187528 station_ip 86.55.88.13 187528 port 354 187528 unique_id port 187528 remote_ip 10.8.0.146 187530 username shahruz 187530 kill_reason Maximum check online fails reached 187530 mac 187530 bytes_out 0 187530 bytes_in 0 187530 station_ip 86.55.88.13 187530 port 356 187530 unique_id port 187536 username shahruz 187536 mac 187536 bytes_out 0 187536 bytes_in 0 187536 station_ip 86.55.88.13 187536 port 349 187536 unique_id port 187536 remote_ip 10.8.0.146 187537 username yaghobi 187537 mac 187537 bytes_out 47940 187537 bytes_in 112032 187537 station_ip 83.123.96.150 187537 port 357 187537 unique_id port 187537 remote_ip 10.8.0.138 187539 username shahruz 187539 mac 187539 bytes_out 0 187539 bytes_in 0 187539 station_ip 86.55.88.13 187539 port 349 187539 unique_id port 187539 remote_ip 10.8.0.146 187543 username yaghobi 187543 mac 187543 bytes_out 684221 187543 bytes_in 1265566 187543 station_ip 83.123.59.67 187543 port 351 187543 unique_id port 187543 remote_ip 10.8.0.138 187545 username rajaei 187545 mac 187545 bytes_out 5926 187545 bytes_in 18604 187545 station_ip 37.137.18.182 187545 port 352 187545 unique_id port 187545 remote_ip 10.8.0.210 187547 username aminvpn 187547 unique_id port 187547 terminate_cause User-Request 187547 bytes_out 4248660 187547 bytes_in 72898482 187547 station_ip 5.119.230.37 187547 port 15729061 187547 nas_port_type Virtual 187547 remote_ip 5.5.5.115 187549 username shahruz 187549 mac 187549 bytes_out 0 187549 bytes_in 0 187549 station_ip 86.55.88.13 187549 port 352 187549 unique_id port 187549 remote_ip 10.8.0.146 187551 username pourshad 187551 kill_reason Another user logged on this global unique id 187551 mac 187551 bytes_out 0 187551 bytes_in 0 187551 station_ip 5.120.252.175 187551 port 332 187551 unique_id port 187555 username shahruz 187555 mac 187555 bytes_out 175021 187555 bytes_in 1012324 187555 station_ip 86.55.88.13 187555 port 349 187555 unique_id port 187555 remote_ip 10.8.0.146 187556 username mosi 187556 kill_reason Another user logged on this global unique id 187556 mac 187556 bytes_out 0 187556 bytes_in 0 187556 station_ip 151.235.79.93 187556 port 350 187556 unique_id port 187560 username mosavi0713 187560 kill_reason Another user logged on this global unique id 187560 mac 187560 bytes_out 0 187560 bytes_in 0 187560 station_ip 83.123.60.28 187560 port 351 187560 unique_id port 187560 remote_ip 10.8.0.150 187564 username mosavi0713 187564 mac 187564 bytes_out 0 187550 mac 187550 bytes_out 0 187550 bytes_in 0 187550 station_ip 86.55.88.13 187550 port 352 187550 unique_id port 187550 remote_ip 10.8.0.146 187552 username yaghobi 187552 mac 187552 bytes_out 303951 187552 bytes_in 376963 187552 station_ip 83.123.123.205 187552 port 349 187552 unique_id port 187552 remote_ip 10.8.0.138 187553 username milan 187553 kill_reason Another user logged on this global unique id 187553 mac 187553 bytes_out 0 187553 bytes_in 0 187553 station_ip 5.119.23.34 187553 port 333 187553 unique_id port 187553 remote_ip 10.8.0.182 187558 username alikomsari 187558 kill_reason Another user logged on this global unique id 187558 mac 187558 bytes_out 0 187558 bytes_in 0 187558 station_ip 5.119.103.213 187558 port 310 187558 unique_id port 187558 remote_ip 10.8.0.214 187559 username yaghobi 187559 mac 187559 bytes_out 954094 187559 bytes_in 7842697 187559 station_ip 83.123.101.253 187559 port 354 187559 unique_id port 187559 remote_ip 10.8.0.138 187561 username farhad3 187561 mac 187561 bytes_out 377000 187561 bytes_in 1247026 187561 station_ip 5.120.6.157 187561 port 349 187561 unique_id port 187561 remote_ip 10.8.0.222 187565 username rashidi4690 187565 kill_reason Another user logged on this global unique id 187565 mac 187565 bytes_out 0 187565 bytes_in 0 187565 station_ip 83.123.6.220 187565 port 353 187565 unique_id port 187566 username farhad3 187566 mac 187566 bytes_out 783855 187566 bytes_in 3147161 187566 station_ip 5.120.6.157 187566 port 349 187566 unique_id port 187566 remote_ip 10.8.0.222 187569 username farhad3 187569 mac 187569 bytes_out 132693 187569 bytes_in 679357 187569 station_ip 5.120.6.157 187569 port 351 187569 unique_id port 187569 remote_ip 10.8.0.222 187570 username aminvpn 187570 mac 187570 bytes_out 903573 187570 bytes_in 4655416 187570 station_ip 5.119.36.146 187570 port 348 187570 unique_id port 187570 remote_ip 10.8.0.58 187572 username aminvpn 187572 mac 187572 bytes_out 0 187572 bytes_in 0 187572 station_ip 5.120.52.76 187572 port 351 187572 unique_id port 187572 remote_ip 10.8.0.58 187574 username aminvpn 187574 mac 187574 bytes_out 0 187574 bytes_in 0 187574 station_ip 5.119.36.146 187574 port 348 187574 unique_id port 187574 remote_ip 10.8.0.58 187578 username farhad3 187578 mac 187578 bytes_out 465213 187578 bytes_in 2503998 187578 station_ip 5.120.6.157 187578 port 352 187578 unique_id port 187578 remote_ip 10.8.0.222 187579 username aminvpn 187579 mac 187579 bytes_out 98947 187579 bytes_in 138190 187579 station_ip 5.119.36.146 187579 port 348 187579 unique_id port 187579 remote_ip 10.8.0.58 187584 username aminvpn 187584 mac 187584 bytes_out 0 187584 bytes_in 0 187584 station_ip 5.119.36.146 187584 port 348 187584 unique_id port 187584 remote_ip 10.8.0.58 187588 username aminvpn 187588 mac 187588 bytes_out 0 187588 bytes_in 0 187588 station_ip 5.120.52.76 187588 port 349 187588 unique_id port 187588 remote_ip 10.8.0.58 187589 username aminvpn 187589 mac 187589 bytes_out 0 187589 bytes_in 0 187589 station_ip 5.119.36.146 187589 port 352 187589 unique_id port 187589 remote_ip 10.8.0.58 187590 username aminvpn 187590 mac 187590 bytes_out 0 187590 bytes_in 0 187590 station_ip 5.120.52.76 187590 port 353 187590 unique_id port 187590 remote_ip 10.8.0.58 187593 username alikomsari 187593 kill_reason Another user logged on this global unique id 187593 mac 187593 bytes_out 0 187593 bytes_in 0 187593 station_ip 5.119.103.213 187593 port 310 187554 remote_ip 10.8.0.138 187557 username hatami 187557 mac 187557 bytes_out 219042 187557 bytes_in 1189021 187557 station_ip 151.235.120.82 187557 port 349 187557 unique_id port 187557 remote_ip 10.8.0.98 187562 username rashidi4690 187562 kill_reason Another user logged on this global unique id 187562 mac 187562 bytes_out 0 187562 bytes_in 0 187562 station_ip 83.123.6.220 187562 port 353 187562 unique_id port 187563 username shadkam 187563 kill_reason Another user logged on this global unique id 187563 mac 187563 bytes_out 0 187563 bytes_in 0 187563 station_ip 5.202.6.36 187563 port 343 187563 unique_id port 187568 username kalantary6037 187568 mac 187568 bytes_out 1281007 187568 bytes_in 8849665 187568 station_ip 83.123.63.95 187568 port 352 187568 unique_id port 187568 remote_ip 10.8.0.50 187573 username rashidi4690 187573 mac 187573 bytes_out 0 187573 bytes_in 0 187573 station_ip 83.123.6.220 187573 port 353 187573 unique_id port 187575 username aminvpn 187575 mac 187575 bytes_out 0 187575 bytes_in 0 187575 station_ip 5.120.52.76 187575 port 353 187575 unique_id port 187575 remote_ip 10.8.0.58 187577 username aminvpn 187577 kill_reason Maximum check online fails reached 187577 unique_id port 187577 bytes_out 997845 187577 bytes_in 3288082 187577 station_ip 5.119.230.37 187577 port 15729064 187577 nas_port_type Virtual 187577 remote_ip 5.5.5.115 187582 username shadkam 187582 mac 187582 bytes_out 0 187582 bytes_in 0 187582 station_ip 5.202.6.36 187582 port 343 187582 unique_id port 187586 username farhad3 187586 mac 187586 bytes_out 924073 187586 bytes_in 9379365 187586 station_ip 5.120.6.157 187586 port 352 187586 unique_id port 187586 remote_ip 10.8.0.222 187587 username aminvpn 187587 mac 187587 bytes_out 0 187587 bytes_in 0 187587 station_ip 5.119.36.146 187587 port 348 187587 unique_id port 187587 remote_ip 10.8.0.58 187591 username houshang 187591 mac 187591 bytes_out 130725 187591 bytes_in 374817 187591 station_ip 5.120.138.17 187591 port 348 187591 unique_id port 187591 remote_ip 10.8.0.82 187592 username shadkam 187592 mac 187592 bytes_out 0 187592 bytes_in 0 187592 station_ip 5.202.6.36 187592 port 348 187592 unique_id port 187592 remote_ip 10.8.0.74 187594 username alirezazadeh 187594 unique_id port 187594 terminate_cause Lost-Carrier 187594 bytes_out 18467075 187594 bytes_in 441853287 187594 station_ip 5.119.241.102 187594 port 15729063 187594 nas_port_type Virtual 187594 remote_ip 5.5.5.113 187595 username pourshad 187595 mac 187595 bytes_out 2657440 187595 bytes_in 28712801 187595 station_ip 5.120.252.175 187595 port 332 187595 unique_id port 187595 remote_ip 10.8.0.42 187600 username naeimeh 187600 mac 187600 bytes_out 94347 187600 bytes_in 129605 187600 station_ip 83.123.123.92 187600 port 351 187600 unique_id port 187600 remote_ip 10.8.0.78 187602 username rashidi4690 187602 mac 187602 bytes_out 24750 187602 bytes_in 40777 187602 station_ip 83.123.6.220 187602 port 348 187602 unique_id port 187602 remote_ip 10.8.0.242 187603 username pourshad 187603 mac 187603 bytes_out 1226234 187603 bytes_in 14666203 187603 station_ip 5.120.252.175 187603 port 357 187603 unique_id port 187603 remote_ip 10.8.0.42 187604 username majidsarmast 187604 kill_reason Another user logged on this global unique id 187604 mac 187604 bytes_out 0 187604 bytes_in 0 187604 station_ip 86.57.100.22 187604 port 338 187604 unique_id port 187604 remote_ip 10.8.0.170 187610 username farhad3 187610 kill_reason Another user logged on this global unique id 187610 mac 187610 bytes_out 0 187564 bytes_in 0 187564 station_ip 83.123.60.28 187564 port 351 187564 unique_id port 187567 username pourshad 187567 mac 187567 bytes_out 0 187567 bytes_in 0 187567 station_ip 5.120.252.175 187567 port 332 187567 unique_id port 187571 username rezaei 187571 mac 187571 bytes_out 205689 187571 bytes_in 2117362 187571 station_ip 5.119.222.93 187571 port 352 187571 unique_id port 187571 remote_ip 10.8.0.198 187576 username houshang 187576 mac 187576 bytes_out 372265 187576 bytes_in 2769947 187576 station_ip 5.119.117.59 187576 port 349 187576 unique_id port 187576 remote_ip 10.8.0.82 187580 username yaghobi 187580 mac 187580 bytes_out 69840 187580 bytes_in 100095 187580 station_ip 83.123.69.186 187580 port 349 187580 unique_id port 187580 remote_ip 10.8.0.138 187581 username aminvpn 187581 mac 187581 bytes_out 0 187581 bytes_in 0 187581 station_ip 5.120.52.76 187581 port 353 187581 unique_id port 187581 remote_ip 10.8.0.58 187583 username shadkam 187583 mac 187583 bytes_out 0 187583 bytes_in 0 187583 station_ip 5.202.6.36 187583 port 343 187583 unique_id port 187583 remote_ip 10.8.0.74 187585 username aminvpn 187585 mac 187585 bytes_out 0 187585 bytes_in 0 187585 station_ip 5.120.52.76 187585 port 343 187585 unique_id port 187585 remote_ip 10.8.0.58 187599 username aminvpn 187599 mac 187599 bytes_out 94080 187599 bytes_in 330507 187599 station_ip 5.119.36.146 187599 port 352 187599 unique_id port 187599 remote_ip 10.8.0.58 187606 username pourshad 187606 mac 187606 bytes_out 134687 187606 bytes_in 560747 187606 station_ip 5.120.252.175 187606 port 351 187606 unique_id port 187606 remote_ip 10.8.0.42 187607 username rashidi4690 187607 mac 187607 bytes_out 113188 187607 bytes_in 284239 187607 station_ip 5.120.168.116 187607 port 332 187607 unique_id port 187607 remote_ip 10.8.0.242 187608 username naeimeh 187608 mac 187608 bytes_out 695155 187608 bytes_in 5201916 187608 station_ip 83.123.123.92 187608 port 358 187608 unique_id port 187608 remote_ip 10.8.0.78 187615 username jamali 187615 kill_reason Relative expiration date has reached 187615 mac 187615 bytes_out 0 187615 bytes_in 0 187615 station_ip 5.119.88.192 187615 port 359 187615 unique_id port 187620 username majidsarmast 187620 mac 187620 bytes_out 0 187620 bytes_in 0 187620 station_ip 86.57.100.22 187620 port 338 187620 unique_id port 187627 username houshang 187627 kill_reason Another user logged on this global unique id 187627 mac 187627 bytes_out 0 187627 bytes_in 0 187627 station_ip 5.119.191.189 187627 port 357 187627 unique_id port 187627 remote_ip 10.8.0.82 187629 username aminvpn 187629 unique_id port 187629 terminate_cause Lost-Carrier 187629 bytes_out 4439075 187629 bytes_in 33320806 187629 station_ip 46.100.217.46 187629 port 15729065 187629 nas_port_type Virtual 187629 remote_ip 5.5.5.164 187630 username farhad3 187630 mac 187630 bytes_out 0 187630 bytes_in 0 187630 station_ip 5.120.6.157 187630 port 343 187630 unique_id port 187631 username farhad3 187631 mac 187631 bytes_out 0 187631 bytes_in 0 187631 station_ip 5.120.6.157 187631 port 343 187631 unique_id port 187631 remote_ip 10.8.0.222 187632 username rashidi4690 187632 mac 187632 bytes_out 72305 187632 bytes_in 164254 187632 station_ip 83.123.6.220 187632 port 352 187632 unique_id port 187632 remote_ip 10.8.0.242 187643 username majidsarmast 187643 mac 187643 bytes_out 34191 187643 bytes_in 134842 187643 station_ip 86.57.100.22 187643 port 351 187593 unique_id port 187596 username rashidi4690 187596 mac 187596 bytes_out 3075276 187596 bytes_in 43368714 187596 station_ip 83.123.6.220 187596 port 351 187596 unique_id port 187596 remote_ip 10.8.0.242 187597 username dortaj3792 187597 mac 187597 bytes_out 2045061 187597 bytes_in 8657301 187597 station_ip 5.119.146.223 187597 port 355 187597 unique_id port 187597 remote_ip 10.8.0.102 187598 username akbari0070 187598 mac 187598 bytes_out 1285571 187598 bytes_in 1759422 187598 station_ip 83.123.70.121 187598 port 348 187598 unique_id port 187598 remote_ip 10.8.0.166 187601 username aminvpn2 187601 mac 187601 bytes_out 197991 187601 bytes_in 1030100 187601 station_ip 5.120.52.76 187601 port 332 187601 unique_id port 187601 remote_ip 10.8.0.234 187605 username kalantary6037 187605 mac 187605 bytes_out 354376 187605 bytes_in 2530134 187605 station_ip 83.123.118.51 187605 port 355 187605 unique_id port 187605 remote_ip 10.8.0.50 187609 username aminvpns6 187609 mac 187609 bytes_out 596101 187609 bytes_in 5020710 187609 station_ip 5.120.52.76 187609 port 348 187609 unique_id port 187609 remote_ip 10.8.0.218 187616 username mohammadjavad 187616 mac 187616 bytes_out 145332 187616 bytes_in 188652 187616 station_ip 83.123.2.251 187616 port 352 187616 unique_id port 187616 remote_ip 10.8.0.110 187617 username mostafa_es78 187617 kill_reason Another user logged on this global unique id 187617 mac 187617 bytes_out 0 187617 bytes_in 0 187617 station_ip 83.122.129.236 187617 port 349 187617 unique_id port 187617 remote_ip 10.8.0.34 187618 username mosi 187618 kill_reason Another user logged on this global unique id 187618 mac 187618 bytes_out 0 187618 bytes_in 0 187618 station_ip 151.235.79.93 187618 port 350 187618 unique_id port 187621 username soleymani5056 187621 mac 187621 bytes_out 49552 187621 bytes_in 60139 187621 station_ip 5.119.203.157 187621 port 352 187621 unique_id port 187621 remote_ip 10.8.0.226 187624 username alipour1506 187624 kill_reason Another user logged on this global unique id 187624 mac 187624 bytes_out 0 187624 bytes_in 0 187624 station_ip 78.39.25.121 187624 port 304 187624 unique_id port 187625 username yaghobi 187625 mac 187625 bytes_out 1153996 187625 bytes_in 1675345 187625 station_ip 83.123.23.159 187625 port 355 187625 unique_id port 187625 remote_ip 10.8.0.138 187628 username saeed9658 187628 mac 187628 bytes_out 73691 187628 bytes_in 316754 187628 station_ip 5.119.39.130 187628 port 351 187628 unique_id port 187628 remote_ip 10.8.0.162 187635 username kalantary6037 187635 mac 187635 bytes_out 12594 187635 bytes_in 24026 187635 station_ip 83.123.29.35 187635 port 351 187635 unique_id port 187635 remote_ip 10.8.0.50 187636 username hosseine 187636 mac 187636 bytes_out 3387225 187636 bytes_in 10872224 187636 station_ip 83.123.54.13 187636 port 354 187636 unique_id port 187636 remote_ip 10.8.0.54 187637 username majidsarmast 187637 mac 187637 bytes_out 92565 187637 bytes_in 706807 187637 station_ip 86.57.100.22 187637 port 351 187637 unique_id port 187637 remote_ip 10.8.0.170 187640 username mostafa_es78 187640 mac 187640 bytes_out 0 187640 bytes_in 0 187640 station_ip 83.122.129.236 187640 port 349 187640 unique_id port 187641 username houshang 187641 kill_reason Another user logged on this global unique id 187641 mac 187641 bytes_out 0 187641 bytes_in 0 187641 station_ip 5.119.191.189 187641 port 357 187641 unique_id port 187642 username shadkam 187642 mac 187642 bytes_out 28866156 187642 bytes_in 29380680 187610 bytes_in 0 187610 station_ip 5.120.6.157 187610 port 343 187610 unique_id port 187610 remote_ip 10.8.0.222 187611 username yaghobi 187611 mac 187611 bytes_out 631568 187611 bytes_in 1453550 187611 station_ip 83.123.23.159 187611 port 352 187611 unique_id port 187611 remote_ip 10.8.0.138 187612 username houshang 187612 mac 187612 bytes_out 3855998 187612 bytes_in 45722146 187612 station_ip 5.120.138.17 187612 port 357 187612 unique_id port 187612 remote_ip 10.8.0.82 187613 username fezealinaghi 187613 kill_reason Another user logged on this global unique id 187613 mac 187613 bytes_out 0 187613 bytes_in 0 187613 station_ip 83.123.5.23 187613 port 337 187613 unique_id port 187614 username jamali 187614 kill_reason Relative expiration date has reached 187614 mac 187614 bytes_out 0 187614 bytes_in 0 187614 station_ip 5.119.88.192 187614 port 359 187614 unique_id port 187619 username rashidi4690 187619 kill_reason Another user logged on this global unique id 187619 mac 187619 bytes_out 0 187619 bytes_in 0 187619 station_ip 83.123.6.220 187619 port 351 187619 unique_id port 187619 remote_ip 10.8.0.242 187622 username saeed9658 187622 mac 187622 bytes_out 955592 187622 bytes_in 5935646 187622 station_ip 5.119.39.130 187622 port 353 187622 unique_id port 187622 remote_ip 10.8.0.162 187623 username rashidi4690 187623 mac 187623 bytes_out 0 187623 bytes_in 0 187623 station_ip 83.123.6.220 187623 port 351 187623 unique_id port 187626 username rashidi4690 187626 mac 187626 bytes_out 144408 187626 bytes_in 769241 187626 station_ip 83.123.6.220 187626 port 338 187626 unique_id port 187626 remote_ip 10.8.0.242 187633 username malekpoir 187633 kill_reason Another user logged on this global unique id 187633 mac 187633 bytes_out 0 187633 bytes_in 0 187633 station_ip 5.119.203.248 187633 port 317 187633 unique_id port 187633 remote_ip 10.8.0.18 187634 username houshang 187634 kill_reason Another user logged on this global unique id 187634 mac 187634 bytes_out 0 187634 bytes_in 0 187634 station_ip 5.119.191.189 187634 port 357 187634 unique_id port 187638 username milan 187638 kill_reason Another user logged on this global unique id 187638 mac 187638 bytes_out 0 187638 bytes_in 0 187638 station_ip 5.119.23.34 187638 port 333 187638 unique_id port 187639 username khademi 187639 kill_reason Another user logged on this global unique id 187639 mac 187639 bytes_out 0 187639 bytes_in 0 187639 station_ip 83.123.73.154 187639 port 259 187639 unique_id port 187645 username houshang 187645 mac 187645 bytes_out 0 187645 bytes_in 0 187645 station_ip 5.119.191.189 187645 port 357 187645 unique_id port 187652 username milan 187652 kill_reason Another user logged on this global unique id 187652 mac 187652 bytes_out 0 187652 bytes_in 0 187652 station_ip 5.119.23.34 187652 port 333 187652 unique_id port 187653 username farhad3 187653 mac 187653 bytes_out 120263 187653 bytes_in 374568 187653 station_ip 5.120.6.157 187653 port 332 187653 unique_id port 187653 remote_ip 10.8.0.222 187655 username pourshad 187655 mac 187655 bytes_out 149404 187655 bytes_in 589129 187655 station_ip 5.120.215.224 187655 port 338 187655 unique_id port 187655 remote_ip 10.8.0.42 187658 username khademi 187658 kill_reason Another user logged on this global unique id 187658 mac 187658 bytes_out 0 187658 bytes_in 0 187658 station_ip 83.123.73.154 187658 port 259 187658 unique_id port 187662 username mostafa_es78 187662 mac 187662 bytes_out 3767525 187662 bytes_in 36526671 187662 station_ip 83.122.129.236 187662 port 351 187662 unique_id port 187642 station_ip 5.202.6.36 187642 port 348 187642 unique_id port 187642 remote_ip 10.8.0.74 187644 username mosi 187644 kill_reason Another user logged on this global unique id 187644 mac 187644 bytes_out 0 187644 bytes_in 0 187644 station_ip 151.235.79.93 187644 port 350 187644 unique_id port 187646 username farhad3 187646 mac 187646 bytes_out 2858450 187646 bytes_in 16014535 187646 station_ip 5.120.6.157 187646 port 343 187646 unique_id port 187646 remote_ip 10.8.0.222 187648 username mostafa_es78 187648 mac 187648 bytes_out 1306511 187648 bytes_in 15828003 187648 station_ip 83.122.129.236 187648 port 349 187648 unique_id port 187648 remote_ip 10.8.0.34 187650 username yaghobi 187650 mac 187650 bytes_out 2918073 187650 bytes_in 1716675 187650 station_ip 83.123.23.159 187650 port 338 187650 unique_id port 187650 remote_ip 10.8.0.138 187657 username milan 187657 kill_reason Another user logged on this global unique id 187657 mac 187657 bytes_out 0 187657 bytes_in 0 187657 station_ip 5.119.23.34 187657 port 333 187657 unique_id port 187660 username hajghani 187660 mac 187660 bytes_out 606369 187660 bytes_in 5623868 187660 station_ip 37.137.41.14 187660 port 352 187660 unique_id port 187660 remote_ip 10.8.0.106 187669 username morteza4424 187669 mac 187669 bytes_out 1644 187669 bytes_in 4970 187669 station_ip 83.123.75.51 187669 port 354 187669 unique_id port 187669 remote_ip 10.8.0.206 187672 username hajghani 187672 kill_reason Another user logged on this global unique id 187672 mac 187672 bytes_out 0 187672 bytes_in 0 187672 station_ip 37.156.153.39 187672 port 349 187672 unique_id port 187672 remote_ip 10.8.0.106 187673 username kalantary6037 187673 mac 187673 bytes_out 1760428 187673 bytes_in 17947859 187673 station_ip 83.123.105.91 187673 port 351 187673 unique_id port 187673 remote_ip 10.8.0.50 187681 username zahra1101 187681 mac 187681 bytes_out 42487 187681 bytes_in 115844 187681 station_ip 5.120.88.150 187681 port 332 187681 unique_id port 187681 remote_ip 10.8.0.250 187683 username yaghobi 187683 mac 187683 bytes_out 114421 187683 bytes_in 277732 187683 station_ip 83.123.52.122 187683 port 352 187683 unique_id port 187683 remote_ip 10.8.0.138 187686 username alikomsari 187686 mac 187686 bytes_out 0 187686 bytes_in 0 187686 station_ip 5.119.103.213 187686 port 310 187686 unique_id port 187688 username milan 187688 kill_reason Another user logged on this global unique id 187688 mac 187688 bytes_out 0 187688 bytes_in 0 187688 station_ip 5.119.23.34 187688 port 333 187688 unique_id port 187692 username rezaei 187692 mac 187692 bytes_out 2202787 187692 bytes_in 16465088 187692 station_ip 5.119.222.93 187692 port 358 187692 unique_id port 187692 remote_ip 10.8.0.198 187695 username shadkam 187695 mac 187695 bytes_out 9886590 187695 bytes_in 1598205 187695 station_ip 5.202.6.36 187695 port 338 187695 unique_id port 187695 remote_ip 10.8.0.74 187696 username aminvpn 187696 unique_id port 187696 terminate_cause Lost-Carrier 187696 bytes_out 7102724 187696 bytes_in 182793529 187696 station_ip 31.57.121.238 187696 port 15729070 187696 nas_port_type Virtual 187696 remote_ip 5.5.5.112 187699 username kalantary6037 187699 mac 187699 bytes_out 49968 187699 bytes_in 72355 187699 station_ip 83.123.116.243 187699 port 353 187699 unique_id port 187699 remote_ip 10.8.0.50 187701 username morteza4424 187701 kill_reason Maximum check online fails reached 187701 mac 187701 bytes_out 0 187701 bytes_in 0 187701 station_ip 83.123.79.210 187701 port 353 187701 unique_id port 187643 unique_id port 187643 remote_ip 10.8.0.170 187647 username aminvpn 187647 unique_id port 187647 terminate_cause Lost-Carrier 187647 bytes_out 285150 187647 bytes_in 1392542 187647 station_ip 31.57.121.238 187647 port 15729067 187647 nas_port_type Virtual 187647 remote_ip 5.5.5.112 187649 username dortaj3792 187649 mac 187649 bytes_out 1146069 187649 bytes_in 4297779 187649 station_ip 5.119.63.91 187649 port 332 187649 unique_id port 187649 remote_ip 10.8.0.102 187651 username farhad3 187651 mac 187651 bytes_out 297355 187651 bytes_in 1495983 187651 station_ip 5.120.6.157 187651 port 343 187651 unique_id port 187651 remote_ip 10.8.0.222 187654 username farhad3 187654 mac 187654 bytes_out 477865 187654 bytes_in 4324843 187654 station_ip 5.120.6.157 187654 port 332 187654 unique_id port 187654 remote_ip 10.8.0.222 187656 username kalantary6037 187656 mac 187656 bytes_out 654459 187656 bytes_in 4437244 187656 station_ip 83.123.0.207 187656 port 349 187656 unique_id port 187656 remote_ip 10.8.0.50 187659 username mohammadjavad 187659 mac 187659 bytes_out 26371 187659 bytes_in 44406 187659 station_ip 37.27.45.103 187659 port 349 187659 unique_id port 187659 remote_ip 10.8.0.110 187661 username hamidsalari 187661 kill_reason Relative expiration date has reached 187661 mac 187661 bytes_out 0 187661 bytes_in 0 187661 station_ip 5.119.239.166 187661 port 352 187661 unique_id port 187663 username majidsarmast 187663 mac 187663 bytes_out 680385 187663 bytes_in 8228101 187663 station_ip 86.57.100.22 187663 port 348 187663 unique_id port 187663 remote_ip 10.8.0.170 187666 username soleymani5056 187666 mac 187666 bytes_out 134411 187666 bytes_in 760910 187666 station_ip 5.119.179.150 187666 port 351 187666 unique_id port 187666 remote_ip 10.8.0.226 187667 username khademi 187667 kill_reason Another user logged on this global unique id 187667 mac 187667 bytes_out 0 187667 bytes_in 0 187667 station_ip 83.123.73.154 187667 port 259 187667 unique_id port 187668 username sedighe 187668 mac 187668 bytes_out 1049491 187668 bytes_in 6437714 187668 station_ip 83.123.25.79 187668 port 353 187668 unique_id port 187668 remote_ip 10.8.0.46 187674 username pourshad 187674 mac 187674 bytes_out 991168 187674 bytes_in 8432560 187674 station_ip 5.120.215.224 187674 port 332 187674 unique_id port 187674 remote_ip 10.8.0.42 187676 username yaghobi 187676 mac 187676 bytes_out 132684 187676 bytes_in 179960 187676 station_ip 83.123.13.212 187676 port 355 187676 unique_id port 187676 remote_ip 10.8.0.138 187677 username shadkam 187677 mac 187677 bytes_out 29355158 187677 bytes_in 4146449 187677 station_ip 5.202.6.36 187677 port 338 187677 unique_id port 187677 remote_ip 10.8.0.74 187680 username dortaj3792 187680 mac 187680 bytes_out 4343262 187680 bytes_in 2148289 187680 station_ip 5.119.63.91 187680 port 343 187680 unique_id port 187680 remote_ip 10.8.0.102 187682 username farhad3 187682 kill_reason Another user logged on this global unique id 187682 mac 187682 bytes_out 0 187682 bytes_in 0 187682 station_ip 5.119.194.76 187682 port 354 187682 unique_id port 187682 remote_ip 10.8.0.222 187684 username zahra1101 187684 mac 187684 bytes_out 0 187684 bytes_in 0 187684 station_ip 5.120.88.150 187684 port 332 187684 unique_id port 187684 remote_ip 10.8.0.250 187687 username majidsarmast 187687 mac 187687 bytes_out 281900 187687 bytes_in 402287 187687 station_ip 86.57.100.22 187687 port 348 187687 unique_id port 187687 remote_ip 10.8.0.170 187689 username khademi 187662 remote_ip 10.8.0.34 187664 username milan 187664 kill_reason Another user logged on this global unique id 187664 mac 187664 bytes_out 0 187664 bytes_in 0 187664 station_ip 5.119.23.34 187664 port 333 187664 unique_id port 187665 username yaghobi 187665 mac 187665 bytes_out 1563959 187665 bytes_in 1254999 187665 station_ip 83.123.13.212 187665 port 343 187665 unique_id port 187665 remote_ip 10.8.0.138 187670 username milan 187670 kill_reason Another user logged on this global unique id 187670 mac 187670 bytes_out 0 187670 bytes_in 0 187670 station_ip 5.119.23.34 187670 port 333 187670 unique_id port 187671 username yaghobi 187671 mac 187671 bytes_out 531930 187671 bytes_in 1083673 187671 station_ip 83.123.13.212 187671 port 352 187671 unique_id port 187671 remote_ip 10.8.0.138 187675 username khademi 187675 kill_reason Another user logged on this global unique id 187675 mac 187675 bytes_out 0 187675 bytes_in 0 187675 station_ip 83.123.73.154 187675 port 259 187675 unique_id port 187678 username milan 187678 kill_reason Another user logged on this global unique id 187678 mac 187678 bytes_out 0 187678 bytes_in 0 187678 station_ip 5.119.23.34 187678 port 333 187678 unique_id port 187679 username nilufarrajaei 187679 mac 187679 bytes_out 24696321 187679 bytes_in 2876690 187679 station_ip 83.123.119.7 187679 port 353 187679 unique_id port 187679 remote_ip 10.8.0.194 187685 username alikomsari 187685 kill_reason Maximum number of concurrent logins reached 187685 mac 187685 bytes_out 0 187685 bytes_in 0 187685 station_ip 5.120.119.89 187685 port 332 187685 unique_id port 187690 username majidsarmast 187690 mac 187690 bytes_out 178301 187690 bytes_in 1798293 187690 station_ip 86.57.100.22 187690 port 332 187690 unique_id port 187690 remote_ip 10.8.0.170 187691 username farhad3 187691 kill_reason Another user logged on this global unique id 187691 mac 187691 bytes_out 0 187691 bytes_in 0 187691 station_ip 5.119.194.76 187691 port 354 187691 unique_id port 187693 username hajghani 187693 kill_reason Another user logged on this global unique id 187693 mac 187693 bytes_out 0 187693 bytes_in 0 187693 station_ip 37.156.153.39 187693 port 349 187693 unique_id port 187694 username morteza4424 187694 mac 187694 bytes_out 49228 187694 bytes_in 132952 187694 station_ip 83.123.53.193 187694 port 353 187694 unique_id port 187694 remote_ip 10.8.0.206 187697 username pourshad 187697 kill_reason Another user logged on this global unique id 187697 mac 187697 bytes_out 0 187697 bytes_in 0 187697 station_ip 5.120.215.224 187697 port 343 187697 unique_id port 187697 remote_ip 10.8.0.42 187700 username farhad3 187700 kill_reason Another user logged on this global unique id 187700 mac 187700 bytes_out 0 187700 bytes_in 0 187700 station_ip 5.119.194.76 187700 port 354 187700 unique_id port 187703 username khademi 187703 kill_reason Another user logged on this global unique id 187703 mac 187703 bytes_out 0 187703 bytes_in 0 187703 station_ip 83.123.73.154 187703 port 259 187703 unique_id port 187704 username fezealinaghi 187704 kill_reason Another user logged on this global unique id 187704 mac 187704 bytes_out 0 187704 bytes_in 0 187704 station_ip 83.123.5.23 187704 port 337 187704 unique_id port 187707 username zahra1101 187707 mac 187707 bytes_out 1337105 187707 bytes_in 4774941 187707 station_ip 5.120.88.150 187707 port 310 187707 unique_id port 187707 remote_ip 10.8.0.250 187711 username fezealinaghi 187711 kill_reason Another user logged on this global unique id 187711 mac 187711 bytes_out 0 187711 bytes_in 0 187711 station_ip 83.123.5.23 187711 port 337 187711 unique_id port 187689 kill_reason Another user logged on this global unique id 187689 mac 187689 bytes_out 0 187689 bytes_in 0 187689 station_ip 83.123.73.154 187689 port 259 187689 unique_id port 187698 username hajghani 187698 mac 187698 bytes_out 0 187698 bytes_in 0 187698 station_ip 37.156.153.39 187698 port 349 187698 unique_id port 187702 username godarzi 187702 mac 187702 bytes_out 704922 187702 bytes_in 8183823 187702 station_ip 5.120.84.169 187702 port 349 187702 unique_id port 187702 remote_ip 10.8.0.38 187705 username farhad3 187705 mac 187705 bytes_out 0 187705 bytes_in 0 187705 station_ip 5.119.194.76 187705 port 354 187705 unique_id port 187706 username majidsarmast 187706 mac 187706 bytes_out 136558 187706 bytes_in 256707 187706 station_ip 86.57.100.22 187706 port 332 187706 unique_id port 187706 remote_ip 10.8.0.170 187708 username zahra1101 187708 mac 187708 bytes_out 0 187708 bytes_in 0 187708 station_ip 5.120.88.150 187708 port 310 187708 unique_id port 187708 remote_ip 10.8.0.250 187709 username malekpoir 187709 kill_reason Another user logged on this global unique id 187709 mac 187709 bytes_out 0 187709 bytes_in 0 187709 station_ip 5.119.203.248 187709 port 317 187709 unique_id port 187712 username khademi 187712 kill_reason Another user logged on this global unique id 187712 mac 187712 bytes_out 0 187712 bytes_in 0 187712 station_ip 83.123.73.154 187712 port 259 187712 unique_id port 187713 username kordestani 187713 mac 187713 bytes_out 408193 187713 bytes_in 3365510 187713 station_ip 151.235.117.68 187713 port 354 187713 unique_id port 187713 remote_ip 10.8.0.130 187716 username mostafa_es78 187716 mac 187716 bytes_out 0 187716 bytes_in 0 187716 station_ip 83.122.182.150 187716 port 359 187716 unique_id port 187716 remote_ip 10.8.0.34 187717 username mostafa_es78 187717 mac 187717 bytes_out 0 187717 bytes_in 0 187717 station_ip 83.122.129.236 187717 port 349 187717 unique_id port 187717 remote_ip 10.8.0.34 187719 username mostafa_es78 187719 mac 187719 bytes_out 0 187719 bytes_in 0 187719 station_ip 83.122.182.150 187719 port 359 187719 unique_id port 187719 remote_ip 10.8.0.34 187723 username kalantary6037 187723 mac 187723 bytes_out 594228 187723 bytes_in 3645188 187723 station_ip 83.123.44.39 187723 port 354 187723 unique_id port 187723 remote_ip 10.8.0.50 187724 username mostafa_es78 187724 mac 187724 bytes_out 0 187724 bytes_in 0 187724 station_ip 83.122.129.236 187724 port 358 187724 unique_id port 187724 remote_ip 10.8.0.34 187725 username zahra1101 187725 mac 187725 bytes_out 7775 187725 bytes_in 14070 187725 station_ip 5.120.88.150 187725 port 349 187725 unique_id port 187725 remote_ip 10.8.0.250 187726 username khademi 187726 kill_reason Another user logged on this global unique id 187726 mac 187726 bytes_out 0 187726 bytes_in 0 187726 station_ip 83.123.73.154 187726 port 259 187726 unique_id port 187728 username rashidi4690 187728 mac 187728 bytes_out 5494839 187728 bytes_in 37934607 187728 station_ip 5.120.168.116 187728 port 351 187728 unique_id port 187728 remote_ip 10.8.0.242 187729 username farhad3 187729 kill_reason Another user logged on this global unique id 187729 mac 187729 bytes_out 0 187729 bytes_in 0 187729 station_ip 5.119.194.76 187729 port 310 187729 unique_id port 187729 remote_ip 10.8.0.222 187733 username pourshad 187733 mac 187733 bytes_out 15288 187733 bytes_in 20513 187733 station_ip 5.120.215.224 187733 port 359 187733 unique_id port 187733 remote_ip 10.8.0.42 187735 username esmaeilkazemi 187710 username sobhan 187710 unique_id port 187710 terminate_cause Lost-Carrier 187710 bytes_out 1722144 187710 bytes_in 13104894 187710 station_ip 5.233.74.139 187710 port 15729072 187710 nas_port_type Virtual 187710 remote_ip 5.5.5.110 187714 username sedighe 187714 mac 187714 bytes_out 103200 187714 bytes_in 303726 187714 station_ip 83.123.98.15 187714 port 355 187714 unique_id port 187714 remote_ip 10.8.0.46 187715 username mostafa_es78 187715 mac 187715 bytes_out 518901 187715 bytes_in 2140483 187715 station_ip 83.122.129.236 187715 port 349 187715 unique_id port 187715 remote_ip 10.8.0.34 187720 username saeed9658 187720 mac 187720 bytes_out 1349061 187720 bytes_in 11560270 187720 station_ip 5.119.39.130 187720 port 358 187720 unique_id port 187720 remote_ip 10.8.0.162 187722 username kordestani 187722 mac 187722 bytes_out 602059 187722 bytes_in 6625101 187722 station_ip 151.235.117.68 187722 port 355 187722 unique_id port 187722 remote_ip 10.8.0.130 187727 username pourshad 187727 mac 187727 bytes_out 0 187727 bytes_in 0 187727 station_ip 5.120.215.224 187727 port 343 187727 unique_id port 187731 username fezealinaghi 187731 kill_reason Another user logged on this global unique id 187731 mac 187731 bytes_out 0 187731 bytes_in 0 187731 station_ip 83.123.5.23 187731 port 337 187731 unique_id port 187734 username sekonji0496 187734 mac 187734 bytes_out 38906 187734 bytes_in 339578 187734 station_ip 83.123.0.241 187734 port 360 187734 unique_id port 187734 remote_ip 10.8.0.62 187736 username saeed9658 187736 mac 187736 bytes_out 154521 187736 bytes_in 1019271 187736 station_ip 5.119.39.130 187736 port 355 187736 unique_id port 187736 remote_ip 10.8.0.162 187738 username yaghobi 187738 mac 187738 bytes_out 684115 187738 bytes_in 1236965 187738 station_ip 83.123.73.127 187738 port 354 187738 unique_id port 187738 remote_ip 10.8.0.138 187741 username aminvpn 187741 unique_id port 187741 terminate_cause Lost-Carrier 187741 bytes_out 5432053 187741 bytes_in 134845914 187741 station_ip 31.57.122.7 187741 port 15729071 187741 nas_port_type Virtual 187741 remote_ip 5.5.5.111 187746 username zahra1101 187746 mac 187746 bytes_out 0 187746 bytes_in 0 187746 station_ip 5.120.88.150 187746 port 332 187746 unique_id port 187746 remote_ip 10.8.0.250 187748 username godarzi 187748 mac 187748 bytes_out 3932712 187748 bytes_in 37084689 187748 station_ip 5.120.84.169 187748 port 343 187748 unique_id port 187748 remote_ip 10.8.0.38 187750 username pourshad 187750 mac 187750 bytes_out 81295 187750 bytes_in 53997 187750 station_ip 5.120.215.224 187750 port 359 187750 unique_id port 187750 remote_ip 10.8.0.42 187753 username saeeddamghani 187753 mac 187753 bytes_out 0 187753 bytes_in 0 187753 station_ip 5.119.93.210 187753 port 354 187753 unique_id port 187753 remote_ip 10.8.0.122 187755 username zahra1101 187755 mac 187755 bytes_out 2342 187755 bytes_in 4508 187755 station_ip 5.120.88.150 187755 port 351 187755 unique_id port 187755 remote_ip 10.8.0.250 187757 username kalantary6037 187757 mac 187757 bytes_out 170337 187757 bytes_in 1052684 187757 station_ip 83.123.8.223 187757 port 354 187757 unique_id port 187757 remote_ip 10.8.0.50 187758 username saeeddamghani 187758 mac 187758 bytes_out 479095 187758 bytes_in 5902871 187758 station_ip 5.119.93.210 187758 port 358 187758 unique_id port 187758 remote_ip 10.8.0.122 187767 username dortaj3792 187767 mac 187767 bytes_out 1057162 187767 bytes_in 11291458 187767 station_ip 5.119.63.91 187767 port 350 187718 username zahra1101 187718 mac 187718 bytes_out 459645 187718 bytes_in 2047111 187718 station_ip 5.120.88.150 187718 port 332 187718 unique_id port 187718 remote_ip 10.8.0.250 187721 username mostafa_es78 187721 mac 187721 bytes_out 0 187721 bytes_in 0 187721 station_ip 83.122.182.150 187721 port 332 187721 unique_id port 187721 remote_ip 10.8.0.34 187730 username rashidi4690 187730 mac 187730 bytes_out 7357 187730 bytes_in 12828 187730 station_ip 5.120.168.116 187730 port 351 187730 unique_id port 187730 remote_ip 10.8.0.242 187732 username mosi 187732 mac 187732 bytes_out 0 187732 bytes_in 0 187732 station_ip 151.235.79.93 187732 port 350 187732 unique_id port 187737 username saeed9658 187737 mac 187737 bytes_out 0 187737 bytes_in 0 187737 station_ip 5.119.39.130 187737 port 355 187737 unique_id port 187737 remote_ip 10.8.0.162 187740 username zahra1101 187740 mac 187740 bytes_out 375815 187740 bytes_in 312654 187740 station_ip 5.120.88.150 187740 port 349 187740 unique_id port 187740 remote_ip 10.8.0.250 187743 username majidsarmast 187743 mac 187743 bytes_out 374003 187743 bytes_in 471387 187743 station_ip 86.57.100.22 187743 port 357 187743 unique_id port 187743 remote_ip 10.8.0.170 187745 username zahra1101 187745 mac 187745 bytes_out 15702 187745 bytes_in 27753 187745 station_ip 5.120.88.150 187745 port 332 187745 unique_id port 187745 remote_ip 10.8.0.250 187751 username saeeddamghani 187751 mac 187751 bytes_out 368949 187751 bytes_in 1780447 187751 station_ip 217.60.175.202 187751 port 351 187751 unique_id port 187751 remote_ip 10.8.0.122 187762 username zahra1101 187762 mac 187762 bytes_out 0 187762 bytes_in 0 187762 station_ip 5.120.88.150 187762 port 358 187762 unique_id port 187762 remote_ip 10.8.0.250 187763 username zahra1101 187763 kill_reason Maximum check online fails reached 187763 mac 187763 bytes_out 0 187763 bytes_in 0 187763 station_ip 5.120.88.150 187763 port 354 187763 unique_id port 187765 username saeeddamghani 187765 mac 187765 bytes_out 306339 187765 bytes_in 2745909 187765 station_ip 217.60.175.202 187765 port 351 187765 unique_id port 187765 remote_ip 10.8.0.122 187770 username saeeddamghani 187770 mac 187770 bytes_out 16225 187770 bytes_in 33594 187770 station_ip 217.60.175.202 187770 port 350 187770 unique_id port 187770 remote_ip 10.8.0.122 187775 username saeeddamghani 187775 mac 187775 bytes_out 813321 187775 bytes_in 5743335 187775 station_ip 217.60.175.202 187775 port 351 187775 unique_id port 187775 remote_ip 10.8.0.122 187776 username zahra1101 187776 mac 187776 bytes_out 0 187776 bytes_in 0 187776 station_ip 5.120.88.150 187776 port 350 187776 unique_id port 187776 remote_ip 10.8.0.250 187779 username rashidi4690 187779 mac 187779 bytes_out 1563228 187779 bytes_in 7023011 187779 station_ip 5.120.168.116 187779 port 361 187779 unique_id port 187779 remote_ip 10.8.0.242 187782 username pourshad 187782 mac 187782 bytes_out 51917 187782 bytes_in 57182 187782 station_ip 5.120.215.224 187782 port 343 187782 unique_id port 187782 remote_ip 10.8.0.42 187787 username zahra1101 187787 mac 187787 bytes_out 0 187787 bytes_in 0 187787 station_ip 5.120.88.150 187787 port 343 187787 unique_id port 187787 remote_ip 10.8.0.250 187788 username yaghobi 187788 mac 187788 bytes_out 250233 187788 bytes_in 317932 187788 station_ip 83.123.121.90 187788 port 351 187788 unique_id port 187788 remote_ip 10.8.0.138 187791 username zahra1101 187735 mac 187735 bytes_out 126326 187735 bytes_in 659562 187735 station_ip 83.123.33.157 187735 port 350 187735 unique_id port 187735 remote_ip 10.8.0.26 187739 username mostafa_es78 187739 mac 187739 bytes_out 2559248 187739 bytes_in 33716955 187739 station_ip 83.122.182.150 187739 port 332 187739 unique_id port 187739 remote_ip 10.8.0.34 187742 username rajaei 187742 mac 187742 bytes_out 881731 187742 bytes_in 8549487 187742 station_ip 93.114.17.191 187742 port 351 187742 unique_id port 187742 remote_ip 10.8.0.210 187744 username sabaghnezhad 187744 mac 187744 bytes_out 235845 187744 bytes_in 1503707 187744 station_ip 89.196.71.181 187744 port 358 187744 unique_id port 187744 remote_ip 10.8.0.66 187747 username zahra1101 187747 mac 187747 bytes_out 0 187747 bytes_in 0 187747 station_ip 5.120.88.150 187747 port 332 187747 unique_id port 187747 remote_ip 10.8.0.250 187749 username zahra1101 187749 mac 187749 bytes_out 0 187749 bytes_in 0 187749 station_ip 5.120.88.150 187749 port 354 187749 unique_id port 187749 remote_ip 10.8.0.250 187752 username zahra1101 187752 kill_reason Maximum check online fails reached 187752 mac 187752 bytes_out 0 187752 bytes_in 0 187752 station_ip 5.120.88.150 187752 port 332 187752 unique_id port 187754 username farhad3 187754 mac 187754 bytes_out 0 187754 bytes_in 0 187754 station_ip 5.119.194.76 187754 port 310 187754 unique_id port 187756 username farhad3 187756 mac 187756 bytes_out 125367 187756 bytes_in 433349 187756 station_ip 5.119.194.76 187756 port 310 187756 unique_id port 187756 remote_ip 10.8.0.222 187759 username zahra1101 187759 mac 187759 bytes_out 0 187759 bytes_in 0 187759 station_ip 5.120.88.150 187759 port 310 187759 unique_id port 187759 remote_ip 10.8.0.250 187760 username yaghobi 187760 mac 187760 bytes_out 1442168 187760 bytes_in 5752632 187760 station_ip 83.123.121.90 187760 port 360 187760 unique_id port 187760 remote_ip 10.8.0.138 187761 username zahra1101 187761 mac 187761 bytes_out 0 187761 bytes_in 0 187761 station_ip 5.120.88.150 187761 port 358 187761 unique_id port 187761 remote_ip 10.8.0.250 187764 username zahra1101 187764 mac 187764 bytes_out 0 187764 bytes_in 0 187764 station_ip 5.120.88.150 187764 port 359 187764 unique_id port 187764 remote_ip 10.8.0.250 187766 username saeed9658 187766 kill_reason Another user logged on this global unique id 187766 mac 187766 bytes_out 0 187766 bytes_in 0 187766 station_ip 5.119.39.130 187766 port 355 187766 unique_id port 187766 remote_ip 10.8.0.162 187768 username shadkam 187768 kill_reason Another user logged on this global unique id 187768 mac 187768 bytes_out 0 187768 bytes_in 0 187768 station_ip 5.202.6.36 187768 port 338 187768 unique_id port 187768 remote_ip 10.8.0.74 187769 username zahra1101 187769 mac 187769 bytes_out 0 187769 bytes_in 0 187769 station_ip 5.120.88.150 187769 port 351 187769 unique_id port 187769 remote_ip 10.8.0.250 187772 username zahra1101 187772 mac 187772 bytes_out 0 187772 bytes_in 0 187772 station_ip 5.120.88.150 187772 port 359 187772 unique_id port 187772 remote_ip 10.8.0.250 187773 username zahra1101 187773 mac 187773 bytes_out 0 187773 bytes_in 0 187773 station_ip 5.120.88.150 187773 port 350 187773 unique_id port 187773 remote_ip 10.8.0.250 187774 username zahra1101 187774 mac 187774 bytes_out 0 187774 bytes_in 0 187774 station_ip 5.120.88.150 187774 port 350 187774 unique_id port 187774 remote_ip 10.8.0.250 187777 username yaghobi 187767 unique_id port 187767 remote_ip 10.8.0.102 187771 username zahra1101 187771 mac 187771 bytes_out 0 187771 bytes_in 0 187771 station_ip 5.120.88.150 187771 port 350 187771 unique_id port 187771 remote_ip 10.8.0.250 187783 username farhad3 187783 kill_reason Another user logged on this global unique id 187783 mac 187783 bytes_out 0 187783 bytes_in 0 187783 station_ip 5.119.194.76 187783 port 358 187783 unique_id port 187783 remote_ip 10.8.0.222 187784 username saeed9658 187784 kill_reason Another user logged on this global unique id 187784 mac 187784 bytes_out 0 187784 bytes_in 0 187784 station_ip 5.119.39.130 187784 port 355 187784 unique_id port 187785 username zahra1101 187785 mac 187785 bytes_out 2255 187785 bytes_in 6104 187785 station_ip 5.120.88.150 187785 port 350 187785 unique_id port 187785 remote_ip 10.8.0.250 187792 username zahra1101 187792 mac 187792 bytes_out 0 187792 bytes_in 0 187792 station_ip 5.120.88.150 187792 port 343 187792 unique_id port 187792 remote_ip 10.8.0.250 187797 username zahra1101 187797 mac 187797 bytes_out 0 187797 bytes_in 0 187797 station_ip 5.120.88.150 187797 port 343 187797 unique_id port 187797 remote_ip 10.8.0.250 187804 username shadkam 187804 mac 187804 bytes_out 0 187804 bytes_in 0 187804 station_ip 5.202.6.36 187804 port 338 187804 unique_id port 187806 username zahra1101 187806 mac 187806 bytes_out 0 187806 bytes_in 0 187806 station_ip 5.120.128.95 187806 port 338 187806 unique_id port 187806 remote_ip 10.8.0.250 187808 username zahra1101 187808 mac 187808 bytes_out 0 187808 bytes_in 0 187808 station_ip 5.120.128.95 187808 port 338 187808 unique_id port 187808 remote_ip 10.8.0.250 187809 username farhad3 187809 kill_reason Another user logged on this global unique id 187809 mac 187809 bytes_out 0 187809 bytes_in 0 187809 station_ip 5.119.194.76 187809 port 358 187809 unique_id port 187811 username kalantary6037 187811 mac 187811 bytes_out 411912 187811 bytes_in 2782877 187811 station_ip 83.123.81.255 187811 port 338 187811 unique_id port 187811 remote_ip 10.8.0.50 187814 username zahra1101 187814 mac 187814 bytes_out 0 187814 bytes_in 0 187814 station_ip 5.120.128.95 187814 port 338 187814 unique_id port 187814 remote_ip 10.8.0.250 187824 username alikomsari 187824 kill_reason Another user logged on this global unique id 187824 mac 187824 bytes_out 0 187824 bytes_in 0 187824 station_ip 5.120.119.89 187824 port 348 187824 unique_id port 187824 remote_ip 10.8.0.214 187829 username akbari0070 187829 kill_reason Another user logged on this global unique id 187829 mac 187829 bytes_out 0 187829 bytes_in 0 187829 station_ip 83.123.124.213 187829 port 351 187829 unique_id port 187829 remote_ip 10.8.0.166 187833 username aminvpn 187833 unique_id port 187833 terminate_cause Lost-Carrier 187833 bytes_out 1995240 187833 bytes_in 24158133 187833 station_ip 46.100.217.46 187833 port 15729078 187833 nas_port_type Virtual 187833 remote_ip 5.5.5.164 187835 username farhad3 187835 mac 187835 bytes_out 0 187835 bytes_in 0 187835 station_ip 5.119.194.76 187835 port 358 187835 unique_id port 187838 username shadkam 187838 mac 187838 bytes_out 34649 187838 bytes_in 78491 187838 station_ip 5.202.6.36 187838 port 359 187838 unique_id port 187838 remote_ip 10.8.0.74 187842 username komeil 187842 mac 187842 bytes_out 286730 187842 bytes_in 2902628 187842 station_ip 83.123.44.165 187842 port 359 187842 unique_id port 187842 remote_ip 10.8.0.86 187847 username motamedi9772 187847 mac 187847 bytes_out 0 187777 mac 187777 bytes_out 871365 187777 bytes_in 3738541 187777 station_ip 83.123.121.90 187777 port 310 187777 unique_id port 187777 remote_ip 10.8.0.138 187778 username zahra1101 187778 mac 187778 bytes_out 201596 187778 bytes_in 1268916 187778 station_ip 5.120.88.150 187778 port 350 187778 unique_id port 187778 remote_ip 10.8.0.250 187780 username zahra1101 187780 mac 187780 bytes_out 0 187780 bytes_in 0 187780 station_ip 5.120.88.150 187780 port 350 187780 unique_id port 187780 remote_ip 10.8.0.250 187781 username saeeddamghani 187781 mac 187781 bytes_out 0 187781 bytes_in 0 187781 station_ip 217.60.175.202 187781 port 359 187781 unique_id port 187781 remote_ip 10.8.0.122 187786 username kalantary6037 187786 mac 187786 bytes_out 253291 187786 bytes_in 1004851 187786 station_ip 83.123.0.43 187786 port 310 187786 unique_id port 187786 remote_ip 10.8.0.50 187789 username zahra1101 187789 kill_reason Maximum check online fails reached 187789 mac 187789 bytes_out 0 187789 bytes_in 0 187789 station_ip 5.120.88.150 187789 port 310 187789 unique_id port 187790 username pourshad 187790 mac 187790 bytes_out 5176 187790 bytes_in 4566 187790 station_ip 5.120.215.224 187790 port 343 187790 unique_id port 187790 remote_ip 10.8.0.42 187793 username pourshad 187793 mac 187793 bytes_out 5857 187793 bytes_in 6653 187793 station_ip 5.120.215.224 187793 port 350 187793 unique_id port 187793 remote_ip 10.8.0.42 187794 username esmaeilkazemi 187794 mac 187794 bytes_out 10712 187794 bytes_in 31507 187794 station_ip 83.123.33.157 187794 port 359 187794 unique_id port 187794 remote_ip 10.8.0.26 187796 username mohammadjavad 187796 mac 187796 bytes_out 250979 187796 bytes_in 1491288 187796 station_ip 83.123.101.95 187796 port 343 187796 unique_id port 187796 remote_ip 10.8.0.110 187799 username yaghobi 187799 mac 187799 bytes_out 173093 187799 bytes_in 284027 187799 station_ip 83.123.121.90 187799 port 351 187799 unique_id port 187799 remote_ip 10.8.0.138 187800 username zahra1101 187800 mac 187800 bytes_out 0 187800 bytes_in 0 187800 station_ip 5.120.88.150 187800 port 343 187800 unique_id port 187800 remote_ip 10.8.0.250 187801 username pourshad 187801 mac 187801 bytes_out 56506 187801 bytes_in 428977 187801 station_ip 5.120.215.224 187801 port 361 187801 unique_id port 187801 remote_ip 10.8.0.42 187803 username fezealinaghi 187803 kill_reason Another user logged on this global unique id 187803 mac 187803 bytes_out 0 187803 bytes_in 0 187803 station_ip 83.123.5.23 187803 port 337 187803 unique_id port 187812 username zahra1101 187812 mac 187812 bytes_out 0 187812 bytes_in 0 187812 station_ip 5.120.128.95 187812 port 351 187812 unique_id port 187812 remote_ip 10.8.0.250 187815 username khademi 187815 kill_reason Another user logged on this global unique id 187815 mac 187815 bytes_out 0 187815 bytes_in 0 187815 station_ip 83.123.73.154 187815 port 259 187815 unique_id port 187816 username zahra1101 187816 mac 187816 bytes_out 0 187816 bytes_in 0 187816 station_ip 5.120.128.95 187816 port 338 187816 unique_id port 187816 remote_ip 10.8.0.250 187817 username zahra1101 187817 mac 187817 bytes_out 0 187817 bytes_in 0 187817 station_ip 5.120.128.95 187817 port 338 187817 unique_id port 187817 remote_ip 10.8.0.250 187818 username majidsarmast 187818 mac 187818 bytes_out 1987633 187818 bytes_in 23548519 187818 station_ip 86.57.100.22 187818 port 349 187818 unique_id port 187818 remote_ip 10.8.0.170 187820 username pourshad 187791 mac 187791 bytes_out 0 187791 bytes_in 0 187791 station_ip 5.120.88.150 187791 port 350 187791 unique_id port 187791 remote_ip 10.8.0.250 187795 username zahra1101 187795 mac 187795 bytes_out 10013 187795 bytes_in 14131 187795 station_ip 5.120.88.150 187795 port 360 187795 unique_id port 187795 remote_ip 10.8.0.250 187798 username farhad3 187798 kill_reason Another user logged on this global unique id 187798 mac 187798 bytes_out 0 187798 bytes_in 0 187798 station_ip 5.119.194.76 187798 port 358 187798 unique_id port 187802 username mohammadjavad 187802 mac 187802 bytes_out 0 187802 bytes_in 0 187802 station_ip 83.123.101.95 187802 port 343 187802 unique_id port 187802 remote_ip 10.8.0.110 187805 username zahra1101 187805 mac 187805 bytes_out 41714 187805 bytes_in 73167 187805 station_ip 5.120.88.150 187805 port 343 187805 unique_id port 187805 remote_ip 10.8.0.250 187807 username alipour1506 187807 mac 187807 bytes_out 0 187807 bytes_in 0 187807 station_ip 78.39.25.121 187807 port 304 187807 unique_id port 187810 username saeed9658 187810 mac 187810 bytes_out 0 187810 bytes_in 0 187810 station_ip 5.119.39.130 187810 port 355 187810 unique_id port 187813 username farhad3 187813 kill_reason Another user logged on this global unique id 187813 mac 187813 bytes_out 0 187813 bytes_in 0 187813 station_ip 5.119.194.76 187813 port 358 187813 unique_id port 187819 username rashidi4690 187819 mac 187819 bytes_out 118190 187819 bytes_in 421169 187819 station_ip 5.120.168.116 187819 port 338 187819 unique_id port 187819 remote_ip 10.8.0.242 187821 username aminvpn 187821 unique_id port 187821 terminate_cause Lost-Carrier 187821 bytes_out 1093257 187821 bytes_in 1994968 187821 station_ip 83.123.49.53 187821 port 15729073 187821 nas_port_type Virtual 187821 remote_ip 5.5.5.109 187822 username zahra1101 187822 mac 187822 bytes_out 0 187822 bytes_in 0 187822 station_ip 5.120.128.95 187822 port 338 187822 unique_id port 187822 remote_ip 10.8.0.250 187825 username zahra1101 187825 mac 187825 bytes_out 0 187825 bytes_in 0 187825 station_ip 5.120.128.95 187825 port 355 187825 unique_id port 187825 remote_ip 10.8.0.250 187828 username aminvpn 187828 unique_id port 187828 terminate_cause Lost-Carrier 187828 bytes_out 12989679 187828 bytes_in 321603459 187828 station_ip 31.57.124.120 187828 port 15729075 187828 nas_port_type Virtual 187828 remote_ip 5.5.5.107 187830 username zahra1101 187830 mac 187830 bytes_out 0 187830 bytes_in 0 187830 station_ip 5.120.128.95 187830 port 355 187830 unique_id port 187830 remote_ip 10.8.0.250 187831 username farhad3 187831 kill_reason Another user logged on this global unique id 187831 mac 187831 bytes_out 0 187831 bytes_in 0 187831 station_ip 5.119.194.76 187831 port 358 187831 unique_id port 187832 username rashidi4690 187832 mac 187832 bytes_out 183854 187832 bytes_in 608236 187832 station_ip 5.120.168.116 187832 port 304 187832 unique_id port 187832 remote_ip 10.8.0.242 187839 username rashidi4690 187839 mac 187839 bytes_out 72604 187839 bytes_in 180848 187839 station_ip 5.120.168.116 187839 port 360 187839 unique_id port 187839 remote_ip 10.8.0.242 187841 username khademi 187841 kill_reason Another user logged on this global unique id 187841 mac 187841 bytes_out 0 187841 bytes_in 0 187841 station_ip 83.123.73.154 187841 port 259 187841 unique_id port 187845 username soleymani5056 187845 mac 187845 bytes_out 123002 187845 bytes_in 684941 187845 station_ip 5.119.194.155 187845 port 355 187845 unique_id port 187820 mac 187820 bytes_out 87973 187820 bytes_in 512367 187820 station_ip 5.120.215.224 187820 port 350 187820 unique_id port 187820 remote_ip 10.8.0.42 187823 username zahra1101 187823 mac 187823 bytes_out 0 187823 bytes_in 0 187823 station_ip 5.120.128.95 187823 port 355 187823 unique_id port 187823 remote_ip 10.8.0.250 187826 username shadkam 187826 mac 187826 bytes_out 18665196 187826 bytes_in 6533204 187826 station_ip 5.202.6.36 187826 port 304 187826 unique_id port 187826 remote_ip 10.8.0.74 187827 username zahra1101 187827 mac 187827 bytes_out 0 187827 bytes_in 0 187827 station_ip 5.120.128.95 187827 port 304 187827 unique_id port 187827 remote_ip 10.8.0.250 187834 username zahra1101 187834 mac 187834 bytes_out 2359 187834 bytes_in 4569 187834 station_ip 5.120.128.95 187834 port 355 187834 unique_id port 187834 remote_ip 10.8.0.250 187836 username zahra1101 187836 mac 187836 bytes_out 0 187836 bytes_in 0 187836 station_ip 5.120.128.95 187836 port 355 187836 unique_id port 187836 remote_ip 10.8.0.250 187837 username zahra1101 187837 kill_reason Maximum check online fails reached 187837 mac 187837 bytes_out 0 187837 bytes_in 0 187837 station_ip 5.120.128.95 187837 port 358 187837 unique_id port 187840 username mohammadjavad 187840 mac 187840 bytes_out 130466 187840 bytes_in 551044 187840 station_ip 83.123.101.95 187840 port 355 187840 unique_id port 187840 remote_ip 10.8.0.110 187843 username motamedi9772 187843 mac 187843 bytes_out 405079 187843 bytes_in 1987712 187843 station_ip 83.123.22.79 187843 port 349 187843 unique_id port 187843 remote_ip 10.8.0.154 187844 username motamedi9772 187844 mac 187844 bytes_out 0 187844 bytes_in 0 187844 station_ip 83.123.22.79 187844 port 349 187844 unique_id port 187844 remote_ip 10.8.0.154 187846 username mohammadjavad 187846 mac 187846 bytes_out 0 187846 bytes_in 0 187846 station_ip 83.123.101.95 187846 port 349 187846 unique_id port 187846 remote_ip 10.8.0.110 187855 username zahra1101 187855 mac 187855 bytes_out 147720 187855 bytes_in 1165297 187855 station_ip 5.120.128.95 187855 port 349 187855 unique_id port 187855 remote_ip 10.8.0.250 187857 username shadkam 187857 mac 187857 bytes_out 0 187857 bytes_in 0 187857 station_ip 5.202.6.36 187857 port 355 187857 unique_id port 187857 remote_ip 10.8.0.74 187859 username pourshad 187859 mac 187859 bytes_out 215734 187859 bytes_in 724646 187859 station_ip 5.120.215.224 187859 port 350 187859 unique_id port 187859 remote_ip 10.8.0.42 187864 username motamedi9772 187864 mac 187864 bytes_out 0 187864 bytes_in 0 187864 station_ip 83.123.22.79 187864 port 337 187864 unique_id port 187864 remote_ip 10.8.0.154 187868 username akbari0070 187868 mac 187868 bytes_out 0 187868 bytes_in 0 187868 station_ip 83.123.124.213 187868 port 351 187868 unique_id port 187875 username motamedi9772 187875 mac 187875 bytes_out 0 187875 bytes_in 0 187875 station_ip 83.123.22.79 187875 port 351 187875 unique_id port 187875 remote_ip 10.8.0.154 187877 username rajaei 187877 mac 187877 bytes_out 0 187877 bytes_in 0 187877 station_ip 93.114.17.191 187877 port 349 187877 unique_id port 187881 username morteza4424 187881 mac 187881 bytes_out 0 187881 bytes_in 0 187881 station_ip 83.123.3.8 187881 port 355 187881 unique_id port 187881 remote_ip 10.8.0.206 187882 username zahra1101 187882 mac 187882 bytes_out 0 187882 bytes_in 0 187882 station_ip 5.120.128.95 187845 remote_ip 10.8.0.226 187848 username fezealinaghi 187848 kill_reason Another user logged on this global unique id 187848 mac 187848 bytes_out 0 187848 bytes_in 0 187848 station_ip 83.123.5.23 187848 port 337 187848 unique_id port 187849 username morteza4424 187849 mac 187849 bytes_out 136126 187849 bytes_in 328643 187849 station_ip 83.123.3.8 187849 port 304 187849 unique_id port 187849 remote_ip 10.8.0.206 187851 username motamedi9772 187851 mac 187851 bytes_out 13174 187851 bytes_in 20254 187851 station_ip 83.123.22.79 187851 port 361 187851 unique_id port 187851 remote_ip 10.8.0.154 187853 username motamedi9772 187853 mac 187853 bytes_out 0 187853 bytes_in 0 187853 station_ip 83.123.22.79 187853 port 355 187853 unique_id port 187853 remote_ip 10.8.0.154 187856 username akbari0070 187856 kill_reason Another user logged on this global unique id 187856 mac 187856 bytes_out 0 187856 bytes_in 0 187856 station_ip 83.123.124.213 187856 port 351 187856 unique_id port 187858 username motamedi9772 187858 mac 187858 bytes_out 0 187858 bytes_in 0 187858 station_ip 83.123.22.79 187858 port 349 187858 unique_id port 187858 remote_ip 10.8.0.154 187863 username mohammadjavad 187863 mac 187863 bytes_out 3002 187863 bytes_in 4699 187863 station_ip 83.123.101.95 187863 port 337 187863 unique_id port 187863 remote_ip 10.8.0.110 187866 username motamedi9772 187866 mac 187866 bytes_out 0 187866 bytes_in 0 187866 station_ip 83.123.22.79 187866 port 363 187866 unique_id port 187866 remote_ip 10.8.0.154 187867 username morteza4424 187867 mac 187867 bytes_out 87167 187867 bytes_in 313694 187867 station_ip 83.123.3.8 187867 port 304 187867 unique_id port 187867 remote_ip 10.8.0.206 187870 username farhad3 187870 mac 187870 bytes_out 181514 187870 bytes_in 574940 187870 station_ip 5.119.194.76 187870 port 355 187870 unique_id port 187870 remote_ip 10.8.0.222 187873 username zahra1101 187873 mac 187873 bytes_out 44572 187873 bytes_in 65754 187873 station_ip 5.120.128.95 187873 port 350 187873 unique_id port 187873 remote_ip 10.8.0.250 187876 username morteza4424 187876 kill_reason Maximum check online fails reached 187876 mac 187876 bytes_out 0 187876 bytes_in 0 187876 station_ip 83.123.3.8 187876 port 304 187876 unique_id port 187878 username milan 187878 kill_reason Another user logged on this global unique id 187878 mac 187878 bytes_out 0 187878 bytes_in 0 187878 station_ip 5.119.23.34 187878 port 333 187878 unique_id port 187879 username zahra1101 187879 mac 187879 bytes_out 0 187879 bytes_in 0 187879 station_ip 5.120.128.95 187879 port 355 187879 unique_id port 187879 remote_ip 10.8.0.250 187880 username zahra1101 187880 mac 187880 bytes_out 0 187880 bytes_in 0 187880 station_ip 5.120.128.95 187880 port 355 187880 unique_id port 187880 remote_ip 10.8.0.250 187885 username zahra1101 187885 mac 187885 bytes_out 0 187885 bytes_in 0 187885 station_ip 5.120.128.95 187885 port 364 187885 unique_id port 187885 remote_ip 10.8.0.250 187895 username zahra1101 187895 kill_reason Maximum check online fails reached 187895 mac 187895 bytes_out 0 187895 bytes_in 0 187895 station_ip 5.120.128.95 187895 port 365 187895 unique_id port 187904 username khademi 187904 kill_reason Another user logged on this global unique id 187904 mac 187904 bytes_out 0 187904 bytes_in 0 187904 station_ip 83.123.73.154 187904 port 259 187904 unique_id port 187907 username zahra1101 187907 kill_reason Maximum check online fails reached 187907 mac 187907 bytes_out 0 187907 bytes_in 0 187847 bytes_in 0 187847 station_ip 83.123.22.79 187847 port 349 187847 unique_id port 187847 remote_ip 10.8.0.154 187850 username fezealinaghi 187850 mac 187850 bytes_out 0 187850 bytes_in 0 187850 station_ip 83.123.5.23 187850 port 337 187850 unique_id port 187852 username yaghobi 187852 mac 187852 bytes_out 135664 187852 bytes_in 531809 187852 station_ip 83.123.7.168 187852 port 355 187852 unique_id port 187852 remote_ip 10.8.0.138 187854 username morteza4424 187854 mac 187854 bytes_out 0 187854 bytes_in 0 187854 station_ip 83.123.3.8 187854 port 304 187854 unique_id port 187854 remote_ip 10.8.0.206 187860 username fezealinaghi 187860 mac 187860 bytes_out 269723 187860 bytes_in 83139 187860 station_ip 83.123.5.23 187860 port 337 187860 unique_id port 187860 remote_ip 10.8.0.202 187861 username saeeddamghani 187861 mac 187861 bytes_out 2086199 187861 bytes_in 16564909 187861 station_ip 5.119.93.210 187861 port 360 187861 unique_id port 187861 remote_ip 10.8.0.122 187862 username motamedi9772 187862 mac 187862 bytes_out 0 187862 bytes_in 0 187862 station_ip 83.123.22.79 187862 port 360 187862 unique_id port 187862 remote_ip 10.8.0.154 187865 username motamedi9772 187865 mac 187865 bytes_out 0 187865 bytes_in 0 187865 station_ip 83.123.22.79 187865 port 363 187865 unique_id port 187865 remote_ip 10.8.0.154 187869 username motamedi9772 187869 mac 187869 bytes_out 0 187869 bytes_in 0 187869 station_ip 83.123.22.79 187869 port 304 187869 unique_id port 187869 remote_ip 10.8.0.154 187871 username morteza4424 187871 mac 187871 bytes_out 0 187871 bytes_in 0 187871 station_ip 83.123.3.8 187871 port 304 187871 unique_id port 187871 remote_ip 10.8.0.206 187872 username rajaei 187872 kill_reason Another user logged on this global unique id 187872 mac 187872 bytes_out 0 187872 bytes_in 0 187872 station_ip 93.114.17.191 187872 port 349 187872 unique_id port 187872 remote_ip 10.8.0.210 187874 username pourshad 187874 mac 187874 bytes_out 49096 187874 bytes_in 386445 187874 station_ip 5.120.215.224 187874 port 360 187874 unique_id port 187874 remote_ip 10.8.0.42 187883 username zahra1101 187883 mac 187883 bytes_out 0 187883 bytes_in 0 187883 station_ip 5.120.128.95 187883 port 364 187883 unique_id port 187883 remote_ip 10.8.0.250 187884 username zahra1101 187884 mac 187884 bytes_out 0 187884 bytes_in 0 187884 station_ip 5.120.128.95 187884 port 364 187884 unique_id port 187884 remote_ip 10.8.0.250 187886 username zahra1101 187886 mac 187886 bytes_out 0 187886 bytes_in 0 187886 station_ip 5.120.128.95 187886 port 364 187886 unique_id port 187886 remote_ip 10.8.0.250 187887 username zahra1101 187887 mac 187887 bytes_out 0 187887 bytes_in 0 187887 station_ip 5.120.128.95 187887 port 366 187887 unique_id port 187887 remote_ip 10.8.0.250 187889 username morteza4424 187889 mac 187889 bytes_out 0 187889 bytes_in 0 187889 station_ip 83.123.3.8 187889 port 367 187889 unique_id port 187889 remote_ip 10.8.0.206 187890 username zahra1101 187890 mac 187890 bytes_out 0 187890 bytes_in 0 187890 station_ip 5.120.128.95 187890 port 366 187890 unique_id port 187890 remote_ip 10.8.0.250 187893 username dortaj3792 187893 mac 187893 bytes_out 1332187 187893 bytes_in 5215976 187893 station_ip 5.119.112.48 187893 port 343 187893 unique_id port 187893 remote_ip 10.8.0.102 187896 username morteza4424 187896 mac 187896 bytes_out 0 187896 bytes_in 0 187896 station_ip 83.123.3.8 187882 port 364 187882 unique_id port 187882 remote_ip 10.8.0.250 187888 username morteza4424 187888 mac 187888 bytes_out 1644 187888 bytes_in 3853 187888 station_ip 83.123.3.8 187888 port 365 187888 unique_id port 187888 remote_ip 10.8.0.206 187891 username morteza4424 187891 mac 187891 bytes_out 0 187891 bytes_in 0 187891 station_ip 83.123.3.8 187891 port 367 187891 unique_id port 187891 remote_ip 10.8.0.206 187892 username godarzi 187892 kill_reason Another user logged on this global unique id 187892 mac 187892 bytes_out 0 187892 bytes_in 0 187892 station_ip 5.202.29.254 187892 port 357 187892 unique_id port 187892 remote_ip 10.8.0.38 187894 username rashidi4690 187894 mac 187894 bytes_out 1339023 187894 bytes_in 7526402 187894 station_ip 5.120.168.116 187894 port 362 187894 unique_id port 187894 remote_ip 10.8.0.242 187897 username zahra1101 187897 mac 187897 bytes_out 5082 187897 bytes_in 11210 187897 station_ip 5.120.128.95 187897 port 367 187897 unique_id port 187897 remote_ip 10.8.0.250 187900 username sabaghnezhad 187900 mac 187900 bytes_out 151802 187900 bytes_in 367403 187900 station_ip 46.51.17.139 187900 port 337 187900 unique_id port 187900 remote_ip 10.8.0.66 187901 username sedighe 187901 mac 187901 bytes_out 321543 187901 bytes_in 1290160 187901 station_ip 83.123.27.225 187901 port 364 187901 unique_id port 187901 remote_ip 10.8.0.46 187903 username zahra1101 187903 mac 187903 bytes_out 0 187903 bytes_in 0 187903 station_ip 5.120.128.95 187903 port 337 187903 unique_id port 187903 remote_ip 10.8.0.250 187906 username houshang 187906 mac 187906 bytes_out 2138244 187906 bytes_in 12926003 187906 station_ip 5.119.191.189 187906 port 360 187906 unique_id port 187906 remote_ip 10.8.0.82 187909 username majidsarmast 187909 kill_reason Another user logged on this global unique id 187909 mac 187909 bytes_out 0 187909 bytes_in 0 187909 station_ip 86.57.70.49 187909 port 338 187909 unique_id port 187909 remote_ip 10.8.0.170 187910 username morteza4424 187910 kill_reason Maximum check online fails reached 187910 mac 187910 bytes_out 0 187910 bytes_in 0 187910 station_ip 83.123.3.8 187910 port 362 187910 unique_id port 187915 username houshang 187915 mac 187915 bytes_out 935116 187915 bytes_in 5044371 187915 station_ip 5.119.191.189 187915 port 360 187915 unique_id port 187915 remote_ip 10.8.0.82 187917 username akbari0070 187917 mac 187917 bytes_out 1616 187917 bytes_in 4528 187917 station_ip 83.123.107.245 187917 port 368 187917 unique_id port 187917 remote_ip 10.8.0.166 187919 username kalantary6037 187919 mac 187919 bytes_out 313861 187919 bytes_in 1476450 187919 station_ip 83.123.109.243 187919 port 366 187919 unique_id port 187919 remote_ip 10.8.0.50 187921 username motamedi9772 187921 kill_reason Another user logged on this global unique id 187921 mac 187921 bytes_out 0 187921 bytes_in 0 187921 station_ip 83.123.22.79 187921 port 351 187921 unique_id port 187921 remote_ip 10.8.0.154 187922 username morteza4424 187922 mac 187922 bytes_out 0 187922 bytes_in 0 187922 station_ip 83.123.3.8 187922 port 361 187922 unique_id port 187922 remote_ip 10.8.0.206 187925 username zahra1101 187925 mac 187925 bytes_out 0 187925 bytes_in 0 187925 station_ip 5.120.128.95 187925 port 361 187925 unique_id port 187925 remote_ip 10.8.0.250 187927 username morteza4424 187927 mac 187927 bytes_out 0 187927 bytes_in 0 187927 station_ip 83.123.3.8 187927 port 366 187927 unique_id port 187927 remote_ip 10.8.0.206 187896 port 366 187896 unique_id port 187896 remote_ip 10.8.0.206 187898 username morteza4424 187898 mac 187898 bytes_out 0 187898 bytes_in 0 187898 station_ip 83.123.3.8 187898 port 362 187898 unique_id port 187898 remote_ip 10.8.0.206 187899 username morteza4424 187899 mac 187899 bytes_out 0 187899 bytes_in 0 187899 station_ip 83.123.3.8 187899 port 362 187899 unique_id port 187899 remote_ip 10.8.0.206 187902 username morteza4424 187902 mac 187902 bytes_out 0 187902 bytes_in 0 187902 station_ip 83.123.3.8 187902 port 362 187902 unique_id port 187902 remote_ip 10.8.0.206 187905 username morteza4424 187905 mac 187905 bytes_out 0 187905 bytes_in 0 187905 station_ip 83.123.3.8 187905 port 366 187905 unique_id port 187905 remote_ip 10.8.0.206 187908 username zahra1101 187908 mac 187908 bytes_out 0 187908 bytes_in 0 187908 station_ip 5.120.128.95 187908 port 366 187908 unique_id port 187908 remote_ip 10.8.0.250 187912 username zahra1101 187912 mac 187912 bytes_out 0 187912 bytes_in 0 187912 station_ip 5.120.128.95 187912 port 366 187912 unique_id port 187912 remote_ip 10.8.0.250 187913 username morteza4424 187913 mac 187913 bytes_out 0 187913 bytes_in 0 187913 station_ip 83.123.3.8 187913 port 367 187913 unique_id port 187913 remote_ip 10.8.0.206 187914 username zahra1101 187914 mac 187914 bytes_out 0 187914 bytes_in 0 187914 station_ip 5.120.128.95 187914 port 367 187914 unique_id port 187914 remote_ip 10.8.0.250 187916 username morteza4424 187916 mac 187916 bytes_out 21860 187916 bytes_in 72801 187916 station_ip 83.123.3.8 187916 port 367 187916 unique_id port 187916 remote_ip 10.8.0.206 187920 username fezealinaghi 187920 mac 187920 bytes_out 4446545 187920 bytes_in 46136585 187920 station_ip 83.123.5.23 187920 port 361 187920 unique_id port 187920 remote_ip 10.8.0.202 187923 username rashidi4690 187923 kill_reason Another user logged on this global unique id 187923 mac 187923 bytes_out 0 187923 bytes_in 0 187923 station_ip 83.123.105.80 187923 port 343 187923 unique_id port 187923 remote_ip 10.8.0.242 187924 username godarzi 187924 mac 187924 bytes_out 0 187924 bytes_in 0 187924 station_ip 5.202.29.254 187924 port 357 187924 unique_id port 187926 username zahra1101 187926 mac 187926 bytes_out 0 187926 bytes_in 0 187926 station_ip 5.120.128.95 187926 port 361 187926 unique_id port 187926 remote_ip 10.8.0.250 187928 username morteza4424 187928 mac 187928 bytes_out 0 187928 bytes_in 0 187928 station_ip 83.123.3.8 187928 port 361 187928 unique_id port 187928 remote_ip 10.8.0.206 187929 username alipour1506 187929 mac 187929 bytes_out 3914070 187929 bytes_in 40033059 187929 station_ip 5.62.220.174 187929 port 359 187929 unique_id port 187929 remote_ip 10.8.0.246 187935 username zahra1101 187935 mac 187935 bytes_out 0 187935 bytes_in 0 187935 station_ip 5.120.128.95 187935 port 338 187935 unique_id port 187935 remote_ip 10.8.0.250 187943 username zahra1101 187943 mac 187943 bytes_out 481220 187943 bytes_in 2705922 187943 station_ip 5.120.128.95 187943 port 366 187943 unique_id port 187943 remote_ip 10.8.0.250 187946 username aminvpn 187946 unique_id port 187946 terminate_cause Lost-Carrier 187946 bytes_out 970556 187946 bytes_in 14583995 187946 station_ip 5.120.189.234 187946 port 15729080 187946 nas_port_type Virtual 187946 remote_ip 5.5.5.105 187949 username morteza4424 187949 mac 187949 bytes_out 979819 187949 bytes_in 8664481 187949 station_ip 83.123.3.8 187907 station_ip 5.120.128.95 187907 port 364 187907 unique_id port 187911 username morteza4424 187911 mac 187911 bytes_out 0 187911 bytes_in 0 187911 station_ip 83.123.3.8 187911 port 367 187911 unique_id port 187911 remote_ip 10.8.0.206 187918 username sedighe 187918 mac 187918 bytes_out 240795 187918 bytes_in 978802 187918 station_ip 83.123.27.225 187918 port 337 187918 unique_id port 187918 remote_ip 10.8.0.46 187934 username khademi 187934 kill_reason Another user logged on this global unique id 187934 mac 187934 bytes_out 0 187934 bytes_in 0 187934 station_ip 83.123.73.154 187934 port 259 187934 unique_id port 187937 username motamedi9772 187937 mac 187937 bytes_out 0 187937 bytes_in 0 187937 station_ip 83.123.22.79 187937 port 351 187937 unique_id port 187939 username morteza4424 187939 mac 187939 bytes_out 1644 187939 bytes_in 4930 187939 station_ip 83.123.3.8 187939 port 351 187939 unique_id port 187939 remote_ip 10.8.0.206 187940 username rashidi4690 187940 kill_reason Another user logged on this global unique id 187940 mac 187940 bytes_out 0 187940 bytes_in 0 187940 station_ip 83.123.105.80 187940 port 343 187940 unique_id port 187948 username alinezhad 187948 kill_reason Absolute expiration date has reached 187948 unique_id port 187948 bytes_out 0 187948 bytes_in 0 187948 station_ip 5.202.25.184 187948 port 15729081 187948 nas_port_type Virtual 187950 username shadkam 187950 mac 187950 bytes_out 36619855 187950 bytes_in 22372637 187950 station_ip 5.202.6.36 187950 port 363 187950 unique_id port 187950 remote_ip 10.8.0.74 187956 username kalantary6037 187956 mac 187956 bytes_out 2058 187956 bytes_in 3832 187956 station_ip 83.123.11.75 187956 port 359 187956 unique_id port 187956 remote_ip 10.8.0.50 187958 username zahra1101 187958 mac 187958 bytes_out 0 187958 bytes_in 0 187958 station_ip 5.120.128.95 187958 port 363 187958 unique_id port 187958 remote_ip 10.8.0.250 187962 username dortaj3792 187962 mac 187962 bytes_out 105832 187962 bytes_in 229437 187962 station_ip 5.119.112.48 187962 port 361 187962 unique_id port 187962 remote_ip 10.8.0.102 187963 username zahra1101 187963 mac 187963 bytes_out 0 187963 bytes_in 0 187963 station_ip 5.120.128.95 187963 port 337 187963 unique_id port 187963 remote_ip 10.8.0.250 187966 username rashidi4690 187966 mac 187966 bytes_out 0 187966 bytes_in 0 187966 station_ip 83.123.105.80 187966 port 343 187966 unique_id port 187967 username houshang 187967 mac 187967 bytes_out 0 187967 bytes_in 0 187967 station_ip 5.119.191.189 187967 port 360 187967 unique_id port 187970 username zahra1101 187970 mac 187970 bytes_out 0 187970 bytes_in 0 187970 station_ip 5.120.128.95 187970 port 343 187970 unique_id port 187970 remote_ip 10.8.0.250 187980 username zahra1101 187980 mac 187980 bytes_out 465082 187980 bytes_in 1631956 187980 station_ip 5.120.128.95 187980 port 343 187980 unique_id port 187980 remote_ip 10.8.0.250 187982 username motamedi9772 187982 mac 187982 bytes_out 0 187982 bytes_in 0 187982 station_ip 83.123.22.79 187982 port 343 187982 unique_id port 187982 remote_ip 10.8.0.154 187989 username godarzi 187989 mac 187989 bytes_out 1577671 187989 bytes_in 11723378 187989 station_ip 5.202.29.254 187989 port 338 187989 unique_id port 187989 remote_ip 10.8.0.38 187993 username khorasani9135 187993 kill_reason Another user logged on this global unique id 187993 mac 187993 bytes_out 0 187993 bytes_in 0 187993 station_ip 83.123.22.174 187993 port 357 187993 unique_id port 187930 username majidsarmast 187930 mac 187930 bytes_out 0 187930 bytes_in 0 187930 station_ip 86.57.70.49 187930 port 338 187930 unique_id port 187931 username aminvpn 187931 unique_id port 187931 terminate_cause Lost-Carrier 187931 bytes_out 6600663 187931 bytes_in 224330109 187931 station_ip 31.57.127.97 187931 port 15729079 187931 nas_port_type Virtual 187931 remote_ip 5.5.5.106 187932 username zahra1101 187932 mac 187932 bytes_out 0 187932 bytes_in 0 187932 station_ip 5.120.128.95 187932 port 338 187932 unique_id port 187932 remote_ip 10.8.0.250 187933 username morteza4424 187933 mac 187933 bytes_out 0 187933 bytes_in 0 187933 station_ip 83.123.3.8 187933 port 338 187933 unique_id port 187933 remote_ip 10.8.0.206 187936 username rezaei 187936 mac 187936 bytes_out 1877579 187936 bytes_in 14298639 187936 station_ip 5.119.222.93 187936 port 352 187936 unique_id port 187936 remote_ip 10.8.0.198 187938 username zahra1101 187938 mac 187938 bytes_out 0 187938 bytes_in 0 187938 station_ip 5.120.128.95 187938 port 366 187938 unique_id port 187938 remote_ip 10.8.0.250 187941 username morteza4424 187941 mac 187941 bytes_out 48338 187941 bytes_in 131530 187941 station_ip 83.123.3.8 187941 port 351 187941 unique_id port 187941 remote_ip 10.8.0.206 187942 username hatami 187942 mac 187942 bytes_out 480484 187942 bytes_in 4443816 187942 station_ip 151.235.97.111 187942 port 361 187942 unique_id port 187942 remote_ip 10.8.0.98 187944 username alikomsari 187944 kill_reason Another user logged on this global unique id 187944 mac 187944 bytes_out 0 187944 bytes_in 0 187944 station_ip 5.120.119.89 187944 port 348 187944 unique_id port 187945 username ahmadi1 187945 mac 187945 bytes_out 68628 187945 bytes_in 282882 187945 station_ip 83.123.32.178 187945 port 351 187945 unique_id port 187945 remote_ip 10.8.0.94 187947 username houshang 187947 kill_reason Another user logged on this global unique id 187947 mac 187947 bytes_out 0 187947 bytes_in 0 187947 station_ip 5.119.191.189 187947 port 360 187947 unique_id port 187947 remote_ip 10.8.0.82 187952 username zahra1101 187952 kill_reason Maximum check online fails reached 187952 mac 187952 bytes_out 0 187952 bytes_in 0 187952 station_ip 5.120.128.95 187952 port 351 187952 unique_id port 187953 username motamedi9772 187953 mac 187953 bytes_out 707776 187953 bytes_in 637434 187953 station_ip 83.123.22.79 187953 port 359 187953 unique_id port 187953 remote_ip 10.8.0.154 187954 username motamedi9772 187954 mac 187954 bytes_out 0 187954 bytes_in 0 187954 station_ip 83.123.22.79 187954 port 363 187954 unique_id port 187954 remote_ip 10.8.0.154 187959 username khademi 187959 mac 187959 bytes_out 0 187959 bytes_in 0 187959 station_ip 83.123.73.154 187959 port 259 187959 unique_id port 187961 username zahra1101 187961 mac 187961 bytes_out 3557 187961 bytes_in 4552 187961 station_ip 5.120.128.95 187961 port 259 187961 unique_id port 187961 remote_ip 10.8.0.250 187965 username khorasani9135 187965 kill_reason Another user logged on this global unique id 187965 mac 187965 bytes_out 0 187965 bytes_in 0 187965 station_ip 83.123.22.174 187965 port 357 187965 unique_id port 187965 remote_ip 10.8.0.126 187969 username motamedi9772 187969 mac 187969 bytes_out 1336751 187969 bytes_in 11194211 187969 station_ip 83.123.22.79 187969 port 359 187969 unique_id port 187969 remote_ip 10.8.0.154 187971 username zahra1101 187971 mac 187971 bytes_out 0 187971 bytes_in 0 187971 station_ip 5.120.128.95 187971 port 359 187949 port 361 187949 unique_id port 187949 remote_ip 10.8.0.206 187951 username rashidi4690 187951 kill_reason Another user logged on this global unique id 187951 mac 187951 bytes_out 0 187951 bytes_in 0 187951 station_ip 83.123.105.80 187951 port 343 187951 unique_id port 187955 username zahra1101 187955 mac 187955 bytes_out 7080 187955 bytes_in 14671 187955 station_ip 5.120.128.95 187955 port 361 187955 unique_id port 187955 remote_ip 10.8.0.250 187957 username motamedi9772 187957 mac 187957 bytes_out 0 187957 bytes_in 0 187957 station_ip 83.123.22.79 187957 port 361 187957 unique_id port 187957 remote_ip 10.8.0.154 187960 username fezealinaghi 187960 mac 187960 bytes_out 2369050 187960 bytes_in 30852507 187960 station_ip 83.123.5.23 187960 port 337 187960 unique_id port 187960 remote_ip 10.8.0.202 187964 username zahra1101 187964 mac 187964 bytes_out 0 187964 bytes_in 0 187964 station_ip 5.120.128.95 187964 port 337 187964 unique_id port 187964 remote_ip 10.8.0.250 187968 username zahra1101 187968 mac 187968 bytes_out 0 187968 bytes_in 0 187968 station_ip 5.120.128.95 187968 port 343 187968 unique_id port 187968 remote_ip 10.8.0.250 187972 username motamedi9772 187972 mac 187972 bytes_out 0 187972 bytes_in 0 187972 station_ip 83.123.22.79 187972 port 343 187972 unique_id port 187972 remote_ip 10.8.0.154 187974 username khorasani9135 187974 kill_reason Another user logged on this global unique id 187974 mac 187974 bytes_out 0 187974 bytes_in 0 187974 station_ip 83.123.22.174 187974 port 357 187974 unique_id port 187975 username soleymani5056 187975 mac 187975 bytes_out 133851 187975 bytes_in 129475 187975 station_ip 5.119.98.13 187975 port 337 187975 unique_id port 187975 remote_ip 10.8.0.226 187976 username motamedi9772 187976 mac 187976 bytes_out 0 187976 bytes_in 0 187976 station_ip 83.123.22.79 187976 port 337 187976 unique_id port 187976 remote_ip 10.8.0.154 187977 username motamedi9772 187977 mac 187977 bytes_out 0 187977 bytes_in 0 187977 station_ip 83.123.22.79 187977 port 337 187977 unique_id port 187977 remote_ip 10.8.0.154 187979 username sabaghnezhad 187979 mac 187979 bytes_out 345696 187979 bytes_in 1102260 187979 station_ip 46.51.17.139 187979 port 352 187979 unique_id port 187979 remote_ip 10.8.0.66 187983 username milan 187983 kill_reason Another user logged on this global unique id 187983 mac 187983 bytes_out 0 187983 bytes_in 0 187983 station_ip 5.119.23.34 187983 port 333 187983 unique_id port 187984 username shadkam 187984 kill_reason Another user logged on this global unique id 187984 mac 187984 bytes_out 0 187984 bytes_in 0 187984 station_ip 5.202.6.36 187984 port 259 187984 unique_id port 187985 username motamedi9772 187985 mac 187985 bytes_out 53708 187985 bytes_in 100097 187985 station_ip 83.123.22.79 187985 port 343 187985 unique_id port 187985 remote_ip 10.8.0.154 187986 username motamedi9772 187986 mac 187986 bytes_out 0 187986 bytes_in 0 187986 station_ip 83.123.22.79 187986 port 343 187986 unique_id port 187986 remote_ip 10.8.0.154 187987 username zahra1101 187987 mac 187987 bytes_out 0 187987 bytes_in 0 187987 station_ip 5.120.128.95 187987 port 343 187987 unique_id port 187987 remote_ip 10.8.0.250 187990 username motamedi9772 187990 mac 187990 bytes_out 0 187990 bytes_in 0 187990 station_ip 83.123.22.79 187990 port 338 187990 unique_id port 187990 remote_ip 10.8.0.154 187992 username motamedi9772 187992 mac 187992 bytes_out 0 187992 bytes_in 0 187992 station_ip 83.123.22.79 187971 unique_id port 187971 remote_ip 10.8.0.250 187973 username motamedi9772 187973 mac 187973 bytes_out 0 187973 bytes_in 0 187973 station_ip 83.123.22.79 187973 port 343 187973 unique_id port 187973 remote_ip 10.8.0.154 187978 username shadkam 187978 kill_reason Another user logged on this global unique id 187978 mac 187978 bytes_out 0 187978 bytes_in 0 187978 station_ip 5.202.6.36 187978 port 259 187978 unique_id port 187978 remote_ip 10.8.0.74 187981 username zahra1101 187981 mac 187981 bytes_out 0 187981 bytes_in 0 187981 station_ip 5.120.128.95 187981 port 343 187981 unique_id port 187981 remote_ip 10.8.0.250 187988 username zahra1101 187988 mac 187988 bytes_out 0 187988 bytes_in 0 187988 station_ip 5.120.128.95 187988 port 343 187988 unique_id port 187988 remote_ip 10.8.0.250 187991 username malekpoir 187991 mac 187991 bytes_out 0 187991 bytes_in 0 187991 station_ip 5.119.203.248 187991 port 317 187991 unique_id port 187996 username zahra1101 187996 mac 187996 bytes_out 0 187996 bytes_in 0 187996 station_ip 5.120.128.95 187996 port 360 187996 unique_id port 187996 remote_ip 10.8.0.250 188004 username motamedi9772 188004 mac 188004 bytes_out 0 188004 bytes_in 0 188004 station_ip 83.123.22.79 188004 port 317 188004 unique_id port 188004 remote_ip 10.8.0.154 188005 username motamedi9772 188005 mac 188005 bytes_out 0 188005 bytes_in 0 188005 station_ip 83.123.22.79 188005 port 317 188005 unique_id port 188005 remote_ip 10.8.0.154 188009 username zahra1101 188009 mac 188009 bytes_out 0 188009 bytes_in 0 188009 station_ip 5.120.128.95 188009 port 317 188009 unique_id port 188009 remote_ip 10.8.0.250 188010 username aminvpn 188010 unique_id port 188010 terminate_cause User-Request 188010 bytes_out 10386119 188010 bytes_in 390382984 188010 station_ip 5.119.116.222 188010 port 15729082 188010 nas_port_type Virtual 188010 remote_ip 5.5.5.104 188011 username zahra1101 188011 mac 188011 bytes_out 0 188011 bytes_in 0 188011 station_ip 5.120.128.95 188011 port 317 188011 unique_id port 188011 remote_ip 10.8.0.250 188012 username farhad3 188012 kill_reason Another user logged on this global unique id 188012 mac 188012 bytes_out 0 188012 bytes_in 0 188012 station_ip 5.119.194.76 188012 port 337 188012 unique_id port 188015 username zahra1101 188015 mac 188015 bytes_out 0 188015 bytes_in 0 188015 station_ip 5.120.128.95 188015 port 361 188015 unique_id port 188015 remote_ip 10.8.0.250 188017 username zahra1101 188017 mac 188017 bytes_out 0 188017 bytes_in 0 188017 station_ip 5.120.128.95 188017 port 361 188017 unique_id port 188017 remote_ip 10.8.0.250 188022 username akbari0070 188022 mac 188022 bytes_out 0 188022 bytes_in 0 188022 station_ip 83.123.107.245 188022 port 359 188022 unique_id port 188027 username zahra1101 188027 mac 188027 bytes_out 0 188027 bytes_in 0 188027 station_ip 5.120.128.95 188027 port 317 188027 unique_id port 188027 remote_ip 10.8.0.250 188029 username saeeddamghani 188029 mac 188029 bytes_out 0 188029 bytes_in 0 188029 station_ip 217.60.175.234 188029 port 317 188029 unique_id port 188029 remote_ip 10.8.0.122 188031 username shadkam 188031 kill_reason Another user logged on this global unique id 188031 mac 188031 bytes_out 0 188031 bytes_in 0 188031 station_ip 5.202.6.36 188031 port 259 188031 unique_id port 188034 username pourshad 188034 mac 188034 bytes_out 51595 188034 bytes_in 231557 188034 station_ip 5.120.215.224 188034 port 359 188034 unique_id port 187992 port 317 187992 unique_id port 187992 remote_ip 10.8.0.154 187994 username zahra1101 187994 mac 187994 bytes_out 0 187994 bytes_in 0 187994 station_ip 5.120.128.95 187994 port 360 187994 unique_id port 187994 remote_ip 10.8.0.250 187995 username kalantary6037 187995 mac 187995 bytes_out 780296 187995 bytes_in 5067269 187995 station_ip 83.123.108.91 187995 port 352 187995 unique_id port 187995 remote_ip 10.8.0.50 187997 username motamedi9772 187997 mac 187997 bytes_out 25213 187997 bytes_in 62231 187997 station_ip 83.123.22.79 187997 port 317 187997 unique_id port 187997 remote_ip 10.8.0.154 187998 username motamedi9772 187998 mac 187998 bytes_out 0 187998 bytes_in 0 187998 station_ip 83.123.22.79 187998 port 352 187998 unique_id port 187998 remote_ip 10.8.0.154 188000 username zahra1101 188000 mac 188000 bytes_out 0 188000 bytes_in 0 188000 station_ip 5.120.128.95 188000 port 317 188000 unique_id port 188000 remote_ip 10.8.0.250 188003 username motamedi9772 188003 mac 188003 bytes_out 0 188003 bytes_in 0 188003 station_ip 83.123.22.79 188003 port 317 188003 unique_id port 188003 remote_ip 10.8.0.154 188006 username akbari0070 188006 kill_reason Another user logged on this global unique id 188006 mac 188006 bytes_out 0 188006 bytes_in 0 188006 station_ip 83.123.107.245 188006 port 359 188006 unique_id port 188006 remote_ip 10.8.0.166 188007 username zahra1101 188007 mac 188007 bytes_out 0 188007 bytes_in 0 188007 station_ip 5.120.128.95 188007 port 352 188007 unique_id port 188007 remote_ip 10.8.0.250 188008 username motamedi9772 188008 mac 188008 bytes_out 313451 188008 bytes_in 1923203 188008 station_ip 83.123.22.79 188008 port 317 188008 unique_id port 188008 remote_ip 10.8.0.154 188016 username akbari0070 188016 kill_reason Another user logged on this global unique id 188016 mac 188016 bytes_out 0 188016 bytes_in 0 188016 station_ip 83.123.107.245 188016 port 359 188016 unique_id port 188018 username saeeddamghani 188018 mac 188018 bytes_out 382880 188018 bytes_in 3000673 188018 station_ip 217.60.175.234 188018 port 360 188018 unique_id port 188018 remote_ip 10.8.0.122 188020 username milan 188020 kill_reason Another user logged on this global unique id 188020 mac 188020 bytes_out 0 188020 bytes_in 0 188020 station_ip 5.119.23.34 188020 port 333 188020 unique_id port 188023 username saeeddamghani 188023 mac 188023 bytes_out 0 188023 bytes_in 0 188023 station_ip 217.60.175.234 188023 port 360 188023 unique_id port 188023 remote_ip 10.8.0.122 188028 username zahra1101 188028 mac 188028 bytes_out 0 188028 bytes_in 0 188028 station_ip 5.120.128.95 188028 port 317 188028 unique_id port 188028 remote_ip 10.8.0.250 188036 username saeeddamghani 188036 mac 188036 bytes_out 798020 188036 bytes_in 7567044 188036 station_ip 217.60.175.234 188036 port 317 188036 unique_id port 188036 remote_ip 10.8.0.122 188041 username motamedi9772 188041 mac 188041 bytes_out 7074 188041 bytes_in 12809 188041 station_ip 83.123.22.79 188041 port 317 188041 unique_id port 188041 remote_ip 10.8.0.154 188042 username sedighe 188042 mac 188042 bytes_out 2079606 188042 bytes_in 17339489 188042 station_ip 83.123.116.59 188042 port 355 188042 unique_id port 188042 remote_ip 10.8.0.46 188043 username aminvpn 188043 mac 188043 bytes_out 5201275 188043 bytes_in 33504527 188043 station_ip 5.119.36.146 188043 port 350 188043 unique_id port 188043 remote_ip 10.8.0.58 188046 username motamedi9772 188046 mac 188046 bytes_out 0 187999 username shadkam 187999 kill_reason Another user logged on this global unique id 187999 mac 187999 bytes_out 0 187999 bytes_in 0 187999 station_ip 5.202.6.36 187999 port 259 187999 unique_id port 188001 username farhad3 188001 kill_reason Another user logged on this global unique id 188001 mac 188001 bytes_out 0 188001 bytes_in 0 188001 station_ip 5.119.194.76 188001 port 337 188001 unique_id port 188001 remote_ip 10.8.0.222 188002 username motamedi9772 188002 mac 188002 bytes_out 0 188002 bytes_in 0 188002 station_ip 83.123.22.79 188002 port 317 188002 unique_id port 188002 remote_ip 10.8.0.154 188013 username saeeddamghani 188013 mac 188013 bytes_out 0 188013 bytes_in 0 188013 station_ip 217.60.175.234 188013 port 317 188013 unique_id port 188013 remote_ip 10.8.0.122 188014 username aminvpn 188014 unique_id port 188014 terminate_cause User-Request 188014 bytes_out 1726901 188014 bytes_in 24870496 188014 station_ip 5.120.189.234 188014 port 15729083 188014 nas_port_type Virtual 188014 remote_ip 5.5.5.105 188019 username zahra1101 188019 mac 188019 bytes_out 8454 188019 bytes_in 13145 188019 station_ip 5.120.128.95 188019 port 361 188019 unique_id port 188019 remote_ip 10.8.0.250 188021 username kalantary6037 188021 mac 188021 bytes_out 810738 188021 bytes_in 8464852 188021 station_ip 83.123.34.223 188021 port 317 188021 unique_id port 188021 remote_ip 10.8.0.50 188024 username malekpoir 188024 kill_reason Another user logged on this global unique id 188024 mac 188024 bytes_out 0 188024 bytes_in 0 188024 station_ip 5.119.203.248 188024 port 338 188024 unique_id port 188024 remote_ip 10.8.0.18 188025 username zahra1101 188025 mac 188025 bytes_out 0 188025 bytes_in 0 188025 station_ip 5.120.128.95 188025 port 317 188025 unique_id port 188025 remote_ip 10.8.0.250 188026 username pourshad 188026 mac 188026 bytes_out 1264032 188026 bytes_in 15869117 188026 station_ip 5.120.215.224 188026 port 355 188026 unique_id port 188026 remote_ip 10.8.0.42 188030 username zahra1101 188030 mac 188030 bytes_out 0 188030 bytes_in 0 188030 station_ip 5.120.128.95 188030 port 317 188030 unique_id port 188030 remote_ip 10.8.0.250 188032 username zahra1101 188032 mac 188032 bytes_out 0 188032 bytes_in 0 188032 station_ip 5.120.128.95 188032 port 360 188032 unique_id port 188032 remote_ip 10.8.0.250 188033 username zahra1101 188033 mac 188033 bytes_out 0 188033 bytes_in 0 188033 station_ip 5.120.128.95 188033 port 360 188033 unique_id port 188033 remote_ip 10.8.0.250 188038 username khorasani9135 188038 kill_reason Another user logged on this global unique id 188038 mac 188038 bytes_out 0 188038 bytes_in 0 188038 station_ip 83.123.22.174 188038 port 357 188038 unique_id port 188039 username motamedi9772 188039 mac 188039 bytes_out 2769842 188039 bytes_in 30813330 188039 station_ip 83.123.22.79 188039 port 352 188039 unique_id port 188039 remote_ip 10.8.0.154 188044 username motamedi9772 188044 mac 188044 bytes_out 2712 188044 bytes_in 4875 188044 station_ip 83.123.22.79 188044 port 317 188044 unique_id port 188044 remote_ip 10.8.0.154 188049 username zahra1101 188049 mac 188049 bytes_out 2155 188049 bytes_in 5309 188049 station_ip 5.120.128.95 188049 port 317 188049 unique_id port 188049 remote_ip 10.8.0.250 188054 username jafari 188054 kill_reason Another user logged on this global unique id 188054 mac 188054 bytes_out 0 188054 bytes_in 0 188054 station_ip 89.47.140.186 188054 port 343 188054 unique_id port 188054 remote_ip 10.8.0.178 188056 username motamedi9772 188056 mac 188034 remote_ip 10.8.0.42 188035 username zahra1101 188035 kill_reason Maximum check online fails reached 188035 mac 188035 bytes_out 0 188035 bytes_in 0 188035 station_ip 5.120.128.95 188035 port 361 188035 unique_id port 188037 username zahra1101 188037 mac 188037 bytes_out 0 188037 bytes_in 0 188037 station_ip 5.120.128.95 188037 port 317 188037 unique_id port 188037 remote_ip 10.8.0.250 188040 username dortaj3792 188040 mac 188040 bytes_out 1066103 188040 bytes_in 2753278 188040 station_ip 5.119.112.48 188040 port 343 188040 unique_id port 188040 remote_ip 10.8.0.102 188045 username zahra1101 188045 mac 188045 bytes_out 0 188045 bytes_in 0 188045 station_ip 5.120.128.95 188045 port 317 188045 unique_id port 188045 remote_ip 10.8.0.250 188050 username khorasani9135 188050 kill_reason Another user logged on this global unique id 188050 mac 188050 bytes_out 0 188050 bytes_in 0 188050 station_ip 83.123.22.174 188050 port 357 188050 unique_id port 188052 username zahra1101 188052 mac 188052 bytes_out 0 188052 bytes_in 0 188052 station_ip 5.120.128.95 188052 port 355 188052 unique_id port 188052 remote_ip 10.8.0.250 188053 username pourshad 188053 mac 188053 bytes_out 87575 188053 bytes_in 566485 188053 station_ip 5.120.215.224 188053 port 317 188053 unique_id port 188053 remote_ip 10.8.0.42 188057 username zahra1101 188057 mac 188057 bytes_out 0 188057 bytes_in 0 188057 station_ip 5.120.128.95 188057 port 317 188057 unique_id port 188057 remote_ip 10.8.0.250 188058 username soleymani5056 188058 mac 188058 bytes_out 220987 188058 bytes_in 1425314 188058 station_ip 5.120.174.129 188058 port 359 188058 unique_id port 188058 remote_ip 10.8.0.226 188061 username zahra1101 188061 mac 188061 bytes_out 0 188061 bytes_in 0 188061 station_ip 5.120.128.95 188061 port 359 188061 unique_id port 188061 remote_ip 10.8.0.250 188064 username kalantary6037 188064 mac 188064 bytes_out 1108100 188064 bytes_in 7141296 188064 station_ip 83.123.103.85 188064 port 360 188064 unique_id port 188064 remote_ip 10.8.0.50 188065 username motamedi9772 188065 mac 188065 bytes_out 0 188065 bytes_in 0 188065 station_ip 83.123.22.79 188065 port 355 188065 unique_id port 188065 remote_ip 10.8.0.154 188067 username zahra1101 188067 kill_reason Maximum check online fails reached 188067 mac 188067 bytes_out 0 188067 bytes_in 0 188067 station_ip 5.120.128.95 188067 port 355 188067 unique_id port 188069 username motamedi9772 188069 mac 188069 bytes_out 0 188069 bytes_in 0 188069 station_ip 83.123.22.79 188069 port 366 188069 unique_id port 188069 remote_ip 10.8.0.154 188072 username alikomsari 188072 kill_reason Another user logged on this global unique id 188072 mac 188072 bytes_out 0 188072 bytes_in 0 188072 station_ip 5.120.119.89 188072 port 348 188072 unique_id port 188073 username jafari 188073 kill_reason Another user logged on this global unique id 188073 mac 188073 bytes_out 0 188073 bytes_in 0 188073 station_ip 89.47.140.186 188073 port 343 188073 unique_id port 188075 username aminvpn 188075 unique_id port 188075 terminate_cause Lost-Carrier 188075 bytes_out 1301715 188075 bytes_in 22521104 188075 station_ip 5.120.189.234 188075 port 15729085 188075 nas_port_type Virtual 188075 remote_ip 5.5.5.105 188078 username pourshad 188078 mac 188078 bytes_out 102662 188078 bytes_in 588068 188078 station_ip 5.120.215.224 188078 port 337 188078 unique_id port 188078 remote_ip 10.8.0.42 188079 username aminvpn 188079 mac 188079 bytes_out 1692730 188079 bytes_in 30155576 188046 bytes_in 0 188046 station_ip 83.123.22.79 188046 port 350 188046 unique_id port 188046 remote_ip 10.8.0.154 188047 username farhad3 188047 mac 188047 bytes_out 0 188047 bytes_in 0 188047 station_ip 5.119.194.76 188047 port 337 188047 unique_id port 188048 username motamedi9772 188048 mac 188048 bytes_out 0 188048 bytes_in 0 188048 station_ip 83.123.22.79 188048 port 317 188048 unique_id port 188048 remote_ip 10.8.0.154 188051 username mohammadjavad 188051 mac 188051 bytes_out 2756056 188051 bytes_in 35264246 188051 station_ip 83.123.59.248 188051 port 360 188051 unique_id port 188051 remote_ip 10.8.0.110 188055 username motamedi9772 188055 mac 188055 bytes_out 22330 188055 bytes_in 57833 188055 station_ip 83.123.22.79 188055 port 337 188055 unique_id port 188055 remote_ip 10.8.0.154 188071 username mohammadjavad 188071 mac 188071 bytes_out 58662 188071 bytes_in 54041 188071 station_ip 83.123.31.29 188071 port 366 188071 unique_id port 188071 remote_ip 10.8.0.110 188074 username zahra1101 188074 mac 188074 bytes_out 399121 188074 bytes_in 1575477 188074 station_ip 5.120.128.95 188074 port 360 188074 unique_id port 188074 remote_ip 10.8.0.250 188082 username mostafa_es78 188082 mac 188082 bytes_out 586861 188082 bytes_in 3429383 188082 station_ip 83.122.251.187 188082 port 366 188082 unique_id port 188082 remote_ip 10.8.0.34 188088 username aminvpn 188088 unique_id port 188088 terminate_cause User-Request 188088 bytes_out 519761 188088 bytes_in 7539862 188088 station_ip 5.120.189.234 188088 port 15729086 188088 nas_port_type Virtual 188088 remote_ip 5.5.5.105 188091 username motamedi9772 188091 mac 188091 bytes_out 0 188091 bytes_in 0 188091 station_ip 83.123.22.79 188091 port 366 188091 unique_id port 188091 remote_ip 10.8.0.154 188092 username motamedi9772 188092 mac 188092 bytes_out 0 188092 bytes_in 0 188092 station_ip 83.123.22.79 188092 port 366 188092 unique_id port 188092 remote_ip 10.8.0.154 188095 username jafari 188095 mac 188095 bytes_out 0 188095 bytes_in 0 188095 station_ip 89.47.140.186 188095 port 343 188095 unique_id port 188096 username motamedi9772 188096 mac 188096 bytes_out 0 188096 bytes_in 0 188096 station_ip 83.123.22.79 188096 port 343 188096 unique_id port 188096 remote_ip 10.8.0.154 188098 username motamedi9772 188098 mac 188098 bytes_out 0 188098 bytes_in 0 188098 station_ip 83.123.22.79 188098 port 343 188098 unique_id port 188098 remote_ip 10.8.0.154 188102 username motamedi9772 188102 mac 188102 bytes_out 0 188102 bytes_in 0 188102 station_ip 83.123.22.79 188102 port 366 188102 unique_id port 188102 remote_ip 10.8.0.154 188104 username motamedi9772 188104 mac 188104 bytes_out 0 188104 bytes_in 0 188104 station_ip 83.123.22.79 188104 port 368 188104 unique_id port 188104 remote_ip 10.8.0.154 188105 username shahruz 188105 mac 188105 bytes_out 278983 188105 bytes_in 2175511 188105 station_ip 5.208.36.11 188105 port 367 188105 unique_id port 188105 remote_ip 10.8.0.146 188107 username motamedi9772 188107 mac 188107 bytes_out 79172 188107 bytes_in 375830 188107 station_ip 83.123.22.79 188107 port 368 188107 unique_id port 188107 remote_ip 10.8.0.154 188111 username aminvpn 188111 kill_reason Another user logged on this global unique id 188111 mac 188111 bytes_out 0 188111 bytes_in 0 188111 station_ip 5.119.36.146 188111 port 337 188111 unique_id port 188111 remote_ip 10.8.0.58 188116 username nilufarrajaei 188116 kill_reason Another user logged on this global unique id 188056 bytes_out 0 188056 bytes_in 0 188056 station_ip 83.123.22.79 188056 port 317 188056 unique_id port 188056 remote_ip 10.8.0.154 188059 username pourshad 188059 mac 188059 bytes_out 20627 188059 bytes_in 17142 188059 station_ip 5.120.215.224 188059 port 355 188059 unique_id port 188059 remote_ip 10.8.0.42 188060 username motamedi9772 188060 mac 188060 bytes_out 0 188060 bytes_in 0 188060 station_ip 83.123.22.79 188060 port 355 188060 unique_id port 188060 remote_ip 10.8.0.154 188062 username zahra1101 188062 kill_reason Maximum check online fails reached 188062 mac 188062 bytes_out 0 188062 bytes_in 0 188062 station_ip 5.120.128.95 188062 port 317 188062 unique_id port 188063 username motamedi9772 188063 mac 188063 bytes_out 0 188063 bytes_in 0 188063 station_ip 83.123.22.79 188063 port 355 188063 unique_id port 188063 remote_ip 10.8.0.154 188066 username milan 188066 kill_reason Another user logged on this global unique id 188066 mac 188066 bytes_out 0 188066 bytes_in 0 188066 station_ip 5.119.23.34 188066 port 333 188066 unique_id port 188068 username motamedi9772 188068 mac 188068 bytes_out 0 188068 bytes_in 0 188068 station_ip 83.123.22.79 188068 port 366 188068 unique_id port 188068 remote_ip 10.8.0.154 188070 username motamedi9772 188070 mac 188070 bytes_out 0 188070 bytes_in 0 188070 station_ip 83.123.22.79 188070 port 366 188070 unique_id port 188070 remote_ip 10.8.0.154 188076 username saeed9658 188076 mac 188076 bytes_out 504610 188076 bytes_in 1442358 188076 station_ip 5.120.176.154 188076 port 352 188076 unique_id port 188076 remote_ip 10.8.0.162 188077 username zahra1101 188077 mac 188077 bytes_out 0 188077 bytes_in 0 188077 station_ip 5.120.128.95 188077 port 352 188077 unique_id port 188077 remote_ip 10.8.0.250 188080 username milan 188080 kill_reason Another user logged on this global unique id 188080 mac 188080 bytes_out 0 188080 bytes_in 0 188080 station_ip 5.119.23.34 188080 port 333 188080 unique_id port 188083 username alikomsari 188083 kill_reason Another user logged on this global unique id 188083 mac 188083 bytes_out 0 188083 bytes_in 0 188083 station_ip 5.120.119.89 188083 port 348 188083 unique_id port 188084 username shadkam 188084 kill_reason Another user logged on this global unique id 188084 mac 188084 bytes_out 0 188084 bytes_in 0 188084 station_ip 5.202.6.36 188084 port 259 188084 unique_id port 188085 username zahra1101 188085 kill_reason Maximum check online fails reached 188085 mac 188085 bytes_out 0 188085 bytes_in 0 188085 station_ip 5.120.128.95 188085 port 352 188085 unique_id port 188086 username tahmorsi 188086 mac 188086 bytes_out 86383 188086 bytes_in 221719 188086 station_ip 86.57.65.236 188086 port 366 188086 unique_id port 188086 remote_ip 10.8.0.6 188090 username motamedi9772 188090 mac 188090 bytes_out 308381 188090 bytes_in 162402 188090 station_ip 83.123.22.79 188090 port 368 188090 unique_id port 188090 remote_ip 10.8.0.154 188093 username alikomsari 188093 kill_reason Another user logged on this global unique id 188093 mac 188093 bytes_out 0 188093 bytes_in 0 188093 station_ip 5.120.119.89 188093 port 348 188093 unique_id port 188094 username shahruz 188094 mac 188094 bytes_out 0 188094 bytes_in 0 188094 station_ip 5.208.36.11 188094 port 366 188094 unique_id port 188094 remote_ip 10.8.0.146 188097 username shahruz 188097 mac 188097 bytes_out 0 188097 bytes_in 0 188097 station_ip 5.208.36.11 188097 port 367 188097 unique_id port 188097 remote_ip 10.8.0.146 188099 username sedighe 188079 station_ip 5.119.36.146 188079 port 367 188079 unique_id port 188079 remote_ip 10.8.0.58 188081 username zahra1101 188081 mac 188081 bytes_out 79459 188081 bytes_in 340423 188081 station_ip 5.120.128.95 188081 port 352 188081 unique_id port 188081 remote_ip 10.8.0.250 188087 username shahruz 188087 mac 188087 bytes_out 36864 188087 bytes_in 162997 188087 station_ip 5.208.36.11 188087 port 367 188087 unique_id port 188087 remote_ip 10.8.0.146 188089 username shahruz 188089 mac 188089 bytes_out 0 188089 bytes_in 0 188089 station_ip 5.208.36.11 188089 port 366 188089 unique_id port 188089 remote_ip 10.8.0.146 188100 username shahruz 188100 mac 188100 bytes_out 0 188100 bytes_in 0 188100 station_ip 5.208.36.11 188100 port 343 188100 unique_id port 188100 remote_ip 10.8.0.146 188101 username tahmorsi 188101 mac 188101 bytes_out 1008204 188101 bytes_in 13313749 188101 station_ip 86.57.113.63 188101 port 370 188101 unique_id port 188101 remote_ip 10.8.0.6 188103 username motamedi9772 188103 mac 188103 bytes_out 0 188103 bytes_in 0 188103 station_ip 83.123.22.79 188103 port 368 188103 unique_id port 188103 remote_ip 10.8.0.154 188108 username kalantary6037 188108 mac 188108 bytes_out 399780 188108 bytes_in 3557817 188108 station_ip 83.123.11.81 188108 port 367 188108 unique_id port 188108 remote_ip 10.8.0.50 188114 username zahra1101 188114 mac 188114 bytes_out 982539 188114 bytes_in 2747041 188114 station_ip 5.120.128.95 188114 port 369 188114 unique_id port 188114 remote_ip 10.8.0.250 188115 username zahra1101 188115 mac 188115 bytes_out 0 188115 bytes_in 0 188115 station_ip 5.120.128.95 188115 port 259 188115 unique_id port 188115 remote_ip 10.8.0.250 188121 username soleymani5056 188121 mac 188121 bytes_out 9136 188121 bytes_in 10316 188121 station_ip 5.119.27.207 188121 port 371 188121 unique_id port 188121 remote_ip 10.8.0.226 188124 username kalantary6037 188124 mac 188124 bytes_out 225441 188124 bytes_in 963154 188124 station_ip 83.123.50.77 188124 port 373 188124 unique_id port 188124 remote_ip 10.8.0.50 188126 username khademi 188126 kill_reason Another user logged on this global unique id 188126 mac 188126 bytes_out 0 188126 bytes_in 0 188126 station_ip 83.123.73.154 188126 port 363 188126 unique_id port 188130 username aminvpn 188130 unique_id port 188130 terminate_cause Lost-Carrier 188130 bytes_out 319897 188130 bytes_in 2543245 188130 station_ip 5.120.189.234 188130 port 15729089 188130 nas_port_type Virtual 188130 remote_ip 5.5.5.105 188131 username sekonji0496 188131 mac 188131 bytes_out 2116 188131 bytes_in 4208 188131 station_ip 83.123.0.241 188131 port 372 188131 unique_id port 188131 remote_ip 10.8.0.62 188132 username sekonji0496 188132 mac 188132 bytes_out 0 188132 bytes_in 0 188132 station_ip 83.123.0.241 188132 port 372 188132 unique_id port 188132 remote_ip 10.8.0.62 188133 username shahruz 188133 mac 188133 bytes_out 0 188133 bytes_in 0 188133 station_ip 5.210.15.31 188133 port 373 188133 unique_id port 188133 remote_ip 10.8.0.146 188142 username sekonji0496 188142 mac 188142 bytes_out 0 188142 bytes_in 0 188142 station_ip 83.123.0.241 188142 port 375 188142 unique_id port 188142 remote_ip 10.8.0.62 188147 username aminvpn 188147 kill_reason Another user logged on this global unique id 188147 mac 188147 bytes_out 0 188147 bytes_in 0 188147 station_ip 5.119.36.146 188147 port 337 188147 unique_id port 188149 username nilufarrajaei 188149 kill_reason Another user logged on this global unique id 188099 mac 188099 bytes_out 27907 188099 bytes_in 70101 188099 station_ip 83.123.55.191 188099 port 366 188099 unique_id port 188099 remote_ip 10.8.0.46 188106 username alikomsari 188106 kill_reason Another user logged on this global unique id 188106 mac 188106 bytes_out 0 188106 bytes_in 0 188106 station_ip 5.120.119.89 188106 port 348 188106 unique_id port 188109 username alirezaza 188109 unique_id port 188109 terminate_cause Lost-Carrier 188109 bytes_out 1444998 188109 bytes_in 23209621 188109 station_ip 5.119.26.39 188109 port 15729087 188109 nas_port_type Virtual 188109 remote_ip 5.5.5.102 188110 username sedighe 188110 mac 188110 bytes_out 184240 188110 bytes_in 1154097 188110 station_ip 83.123.55.191 188110 port 366 188110 unique_id port 188110 remote_ip 10.8.0.46 188112 username sedighe 188112 mac 188112 bytes_out 1691 188112 bytes_in 3784 188112 station_ip 83.123.55.191 188112 port 367 188112 unique_id port 188112 remote_ip 10.8.0.46 188113 username shadkam 188113 mac 188113 bytes_out 0 188113 bytes_in 0 188113 station_ip 5.202.6.36 188113 port 259 188113 unique_id port 188118 username rezaei 188118 mac 188118 bytes_out 413700 188118 bytes_in 2418915 188118 station_ip 5.119.222.93 188118 port 371 188118 unique_id port 188118 remote_ip 10.8.0.198 188119 username khademi 188119 kill_reason Another user logged on this global unique id 188119 mac 188119 bytes_out 0 188119 bytes_in 0 188119 station_ip 83.123.73.154 188119 port 363 188119 unique_id port 188119 remote_ip 10.8.0.14 188120 username aminvpn 188120 unique_id port 188120 terminate_cause User-Request 188120 bytes_out 505706 188120 bytes_in 2329756 188120 station_ip 5.120.189.234 188120 port 15729088 188120 nas_port_type Virtual 188120 remote_ip 5.5.5.105 188122 username hosseine 188122 kill_reason Another user logged on this global unique id 188122 mac 188122 bytes_out 0 188122 bytes_in 0 188122 station_ip 83.123.54.13 188122 port 349 188122 unique_id port 188122 remote_ip 10.8.0.54 188123 username zahra1101 188123 mac 188123 bytes_out 111034 188123 bytes_in 159869 188123 station_ip 5.120.128.95 188123 port 259 188123 unique_id port 188123 remote_ip 10.8.0.250 188127 username sekonji0496 188127 mac 188127 bytes_out 197571 188127 bytes_in 2823097 188127 station_ip 83.123.0.241 188127 port 372 188127 unique_id port 188127 remote_ip 10.8.0.62 188128 username shahruz 188128 mac 188128 bytes_out 1997 188128 bytes_in 4600 188128 station_ip 5.210.15.31 188128 port 370 188128 unique_id port 188128 remote_ip 10.8.0.146 188129 username pourshad 188129 mac 188129 bytes_out 293388 188129 bytes_in 1266090 188129 station_ip 5.120.215.224 188129 port 360 188129 unique_id port 188129 remote_ip 10.8.0.42 188134 username sekonji0496 188134 mac 188134 bytes_out 3030 188134 bytes_in 4652 188134 station_ip 83.123.0.241 188134 port 372 188134 unique_id port 188134 remote_ip 10.8.0.62 188135 username sekonji0496 188135 mac 188135 bytes_out 2314 188135 bytes_in 4412 188135 station_ip 83.123.0.241 188135 port 372 188135 unique_id port 188135 remote_ip 10.8.0.62 188136 username shahruz 188136 mac 188136 bytes_out 0 188136 bytes_in 0 188136 station_ip 5.210.15.31 188136 port 372 188136 unique_id port 188136 remote_ip 10.8.0.146 188138 username sekonji0496 188138 mac 188138 bytes_out 2252 188138 bytes_in 4350 188138 station_ip 83.123.0.241 188138 port 343 188138 unique_id port 188138 remote_ip 10.8.0.62 188140 username tahmorsi 188140 mac 188140 bytes_out 29583 188140 bytes_in 23273 188116 mac 188116 bytes_out 0 188116 bytes_in 0 188116 station_ip 83.123.56.30 188116 port 359 188116 unique_id port 188116 remote_ip 10.8.0.194 188117 username mohammadjavad 188117 mac 188117 bytes_out 450446 188117 bytes_in 4201052 188117 station_ip 83.123.95.222 188117 port 372 188117 unique_id port 188117 remote_ip 10.8.0.110 188125 username shahruz 188125 mac 188125 bytes_out 4312274 188125 bytes_in 43712038 188125 station_ip 5.210.15.31 188125 port 370 188125 unique_id port 188125 remote_ip 10.8.0.146 188137 username tahmorsi 188137 mac 188137 bytes_out 2321293 188137 bytes_in 32167088 188137 station_ip 86.57.102.36 188137 port 343 188137 unique_id port 188137 remote_ip 10.8.0.6 188139 username shahruz 188139 mac 188139 bytes_out 6831 188139 bytes_in 8663 188139 station_ip 5.210.15.31 188139 port 373 188139 unique_id port 188139 remote_ip 10.8.0.146 188141 username sekonji0496 188141 mac 188141 bytes_out 18650 188141 bytes_in 85644 188141 station_ip 83.123.0.241 188141 port 372 188141 unique_id port 188141 remote_ip 10.8.0.62 188145 username sekonji0496 188145 mac 188145 bytes_out 2172 188145 bytes_in 4333 188145 station_ip 83.123.0.241 188145 port 372 188145 unique_id port 188145 remote_ip 10.8.0.62 188146 username khalili2 188146 kill_reason Another user logged on this global unique id 188146 mac 188146 bytes_out 0 188146 bytes_in 0 188146 station_ip 5.120.26.238 188146 port 360 188146 unique_id port 188146 remote_ip 10.8.0.190 188151 username zahra1101 188151 mac 188151 bytes_out 1191989 188151 bytes_in 9094282 188151 station_ip 5.120.128.95 188151 port 259 188151 unique_id port 188151 remote_ip 10.8.0.250 188161 username yaghobi 188161 kill_reason Maximum check online fails reached 188161 mac 188161 bytes_out 0 188161 bytes_in 0 188161 station_ip 83.123.105.241 188161 port 259 188161 unique_id port 188165 username khalili2 188165 kill_reason Another user logged on this global unique id 188165 mac 188165 bytes_out 0 188165 bytes_in 0 188165 station_ip 5.120.26.238 188165 port 360 188165 unique_id port 188170 username sekonji0496 188170 mac 188170 bytes_out 0 188170 bytes_in 0 188170 station_ip 83.123.0.241 188170 port 371 188170 unique_id port 188170 remote_ip 10.8.0.62 188172 username sekonji0496 188172 mac 188172 bytes_out 0 188172 bytes_in 0 188172 station_ip 83.123.0.241 188172 port 371 188172 unique_id port 188172 remote_ip 10.8.0.62 188175 username sekonji0496 188175 mac 188175 bytes_out 0 188175 bytes_in 0 188175 station_ip 83.123.0.241 188175 port 363 188175 unique_id port 188175 remote_ip 10.8.0.62 188176 username sekonji0496 188176 mac 188176 bytes_out 0 188176 bytes_in 0 188176 station_ip 83.123.0.241 188176 port 363 188176 unique_id port 188176 remote_ip 10.8.0.62 188178 username zahra1101 188178 mac 188178 bytes_out 976651 188178 bytes_in 4763140 188178 station_ip 5.120.128.95 188178 port 343 188178 unique_id port 188178 remote_ip 10.8.0.250 188186 username rezaei 188186 mac 188186 bytes_out 523889 188186 bytes_in 5822420 188186 station_ip 5.119.222.93 188186 port 363 188186 unique_id port 188186 remote_ip 10.8.0.198 188189 username sekonji0496 188189 kill_reason Maximum check online fails reached 188189 mac 188189 bytes_out 0 188189 bytes_in 0 188189 station_ip 83.123.0.241 188189 port 372 188189 unique_id port 188191 username sekonji0496 188191 mac 188191 bytes_out 0 188191 bytes_in 0 188191 station_ip 83.123.0.241 188191 port 343 188191 unique_id port 188191 remote_ip 10.8.0.62 188140 station_ip 86.57.113.219 188140 port 372 188140 unique_id port 188140 remote_ip 10.8.0.6 188143 username pourshad 188143 mac 188143 bytes_out 103947 188143 bytes_in 749199 188143 station_ip 5.120.215.224 188143 port 370 188143 unique_id port 188143 remote_ip 10.8.0.42 188144 username tahmorsi 188144 mac 188144 bytes_out 272739 188144 bytes_in 3534575 188144 station_ip 86.57.86.73 188144 port 343 188144 unique_id port 188144 remote_ip 10.8.0.6 188148 username sekonji0496 188148 mac 188148 bytes_out 2842 188148 bytes_in 4674 188148 station_ip 83.123.0.241 188148 port 343 188148 unique_id port 188148 remote_ip 10.8.0.62 188150 username khademi 188150 kill_reason Another user logged on this global unique id 188150 mac 188150 bytes_out 0 188150 bytes_in 0 188150 station_ip 83.123.73.154 188150 port 363 188150 unique_id port 188152 username sekonji0496 188152 mac 188152 bytes_out 3373 188152 bytes_in 4929 188152 station_ip 83.123.0.241 188152 port 343 188152 unique_id port 188152 remote_ip 10.8.0.62 188153 username khademi 188153 mac 188153 bytes_out 0 188153 bytes_in 0 188153 station_ip 83.123.73.154 188153 port 363 188153 unique_id port 188155 username shahruz 188155 mac 188155 bytes_out 108640 188155 bytes_in 182755 188155 station_ip 5.210.15.31 188155 port 372 188155 unique_id port 188155 remote_ip 10.8.0.146 188157 username sekonji0496 188157 mac 188157 bytes_out 341410 188157 bytes_in 2253164 188157 station_ip 83.123.0.241 188157 port 259 188157 unique_id port 188157 remote_ip 10.8.0.62 188158 username yaghobi 188158 mac 188158 bytes_out 148882 188158 bytes_in 544182 188158 station_ip 83.123.105.241 188158 port 376 188158 unique_id port 188158 remote_ip 10.8.0.138 188160 username aminvpn 188160 mac 188160 bytes_out 0 188160 bytes_in 0 188160 station_ip 5.119.36.146 188160 port 337 188160 unique_id port 188162 username aminvpn 188162 mac 188162 bytes_out 0 188162 bytes_in 0 188162 station_ip 5.119.109.57 188162 port 376 188162 unique_id port 188162 remote_ip 10.8.0.58 188163 username jafari 188163 mac 188163 bytes_out 5259139 188163 bytes_in 43197046 188163 station_ip 89.47.140.186 188163 port 371 188163 unique_id port 188163 remote_ip 10.8.0.178 188167 username soleymani5056 188167 mac 188167 bytes_out 334513 188167 bytes_in 215024 188167 station_ip 5.119.190.129 188167 port 363 188167 unique_id port 188167 remote_ip 10.8.0.226 188168 username saeeddamghani 188168 mac 188168 bytes_out 0 188168 bytes_in 0 188168 station_ip 217.60.175.234 188168 port 371 188168 unique_id port 188168 remote_ip 10.8.0.122 188171 username sedighe 188171 mac 188171 bytes_out 673840 188171 bytes_in 1971062 188171 station_ip 83.123.28.125 188171 port 374 188171 unique_id port 188171 remote_ip 10.8.0.46 188174 username yaghobi 188174 mac 188174 bytes_out 405034 188174 bytes_in 2687562 188174 station_ip 83.123.105.241 188174 port 363 188174 unique_id port 188174 remote_ip 10.8.0.138 188179 username sekonji0496 188179 mac 188179 bytes_out 0 188179 bytes_in 0 188179 station_ip 83.123.0.241 188179 port 343 188179 unique_id port 188179 remote_ip 10.8.0.62 188181 username yaghobi 188181 mac 188181 bytes_out 3952 188181 bytes_in 6702 188181 station_ip 83.123.105.241 188181 port 371 188181 unique_id port 188181 remote_ip 10.8.0.138 188185 username shahruz 188185 mac 188185 bytes_out 0 188185 bytes_in 0 188185 station_ip 5.210.15.31 188185 port 343 188185 unique_id port 188149 mac 188149 bytes_out 0 188149 bytes_in 0 188149 station_ip 83.123.56.30 188149 port 359 188149 unique_id port 188154 username alikomsari 188154 kill_reason Another user logged on this global unique id 188154 mac 188154 bytes_out 0 188154 bytes_in 0 188154 station_ip 5.120.119.89 188154 port 348 188154 unique_id port 188156 username motamedi9772 188156 mac 188156 bytes_out 2954402 188156 bytes_in 26745048 188156 station_ip 83.123.22.79 188156 port 373 188156 unique_id port 188156 remote_ip 10.8.0.154 188159 username alirezaza 188159 unique_id port 188159 terminate_cause Lost-Carrier 188159 bytes_out 889442 188159 bytes_in 19364298 188159 station_ip 5.120.170.62 188159 port 15729090 188159 nas_port_type Virtual 188159 remote_ip 5.5.5.101 188164 username sekonji0496 188164 mac 188164 bytes_out 0 188164 bytes_in 0 188164 station_ip 83.123.0.241 188164 port 371 188164 unique_id port 188164 remote_ip 10.8.0.62 188166 username mosi 188166 kill_reason Another user logged on this global unique id 188166 mac 188166 bytes_out 0 188166 bytes_in 0 188166 station_ip 151.235.79.93 188166 port 368 188166 unique_id port 188166 remote_ip 10.8.0.142 188169 username saeeddamghani 188169 mac 188169 bytes_out 0 188169 bytes_in 0 188169 station_ip 5.119.93.210 188169 port 377 188169 unique_id port 188169 remote_ip 10.8.0.122 188173 username sekonji0496 188173 mac 188173 bytes_out 0 188173 bytes_in 0 188173 station_ip 83.123.0.241 188173 port 371 188173 unique_id port 188173 remote_ip 10.8.0.62 188177 username sekonji0496 188177 mac 188177 bytes_out 0 188177 bytes_in 0 188177 station_ip 83.123.0.241 188177 port 363 188177 unique_id port 188177 remote_ip 10.8.0.62 188180 username zahra1101 188180 mac 188180 bytes_out 0 188180 bytes_in 0 188180 station_ip 5.120.128.95 188180 port 363 188180 unique_id port 188180 remote_ip 10.8.0.250 188182 username sekonji0496 188182 mac 188182 bytes_out 2740 188182 bytes_in 4467 188182 station_ip 83.123.0.241 188182 port 343 188182 unique_id port 188182 remote_ip 10.8.0.62 188183 username shahruz 188183 mac 188183 bytes_out 1338045 188183 bytes_in 8266452 188183 station_ip 5.210.15.31 188183 port 372 188183 unique_id port 188183 remote_ip 10.8.0.146 188184 username sekonji0496 188184 mac 188184 bytes_out 0 188184 bytes_in 0 188184 station_ip 83.123.0.241 188184 port 377 188184 unique_id port 188184 remote_ip 10.8.0.62 188194 username shahruz 188194 mac 188194 bytes_out 2123 188194 bytes_in 4586 188194 station_ip 5.210.15.31 188194 port 363 188194 unique_id port 188194 remote_ip 10.8.0.146 188196 username sekonji0496 188196 mac 188196 bytes_out 0 188196 bytes_in 0 188196 station_ip 83.123.0.241 188196 port 343 188196 unique_id port 188196 remote_ip 10.8.0.62 188197 username aminvpnipad 188197 kill_reason Another user logged on this global unique id 188197 mac 188197 bytes_out 0 188197 bytes_in 0 188197 station_ip 5.119.109.57 188197 port 376 188197 unique_id port 188197 remote_ip 10.8.0.230 188198 username sekonji0496 188198 mac 188198 bytes_out 2000 188198 bytes_in 4090 188198 station_ip 83.123.0.241 188198 port 343 188198 unique_id port 188198 remote_ip 10.8.0.62 188200 username shahruz 188200 mac 188200 bytes_out 2050 188200 bytes_in 4600 188200 station_ip 5.210.15.31 188200 port 378 188200 unique_id port 188200 remote_ip 10.8.0.146 188201 username kalantary6037 188201 mac 188201 bytes_out 757608 188201 bytes_in 4625963 188201 station_ip 83.123.97.119 188201 port 374 188201 unique_id port 188185 remote_ip 10.8.0.146 188187 username sekonji0496 188187 mac 188187 bytes_out 0 188187 bytes_in 0 188187 station_ip 83.123.0.241 188187 port 343 188187 unique_id port 188187 remote_ip 10.8.0.62 188188 username shahruz 188188 mac 188188 bytes_out 7010 188188 bytes_in 8145 188188 station_ip 5.210.15.31 188188 port 377 188188 unique_id port 188188 remote_ip 10.8.0.146 188190 username sekonji0496 188190 mac 188190 bytes_out 0 188190 bytes_in 0 188190 station_ip 83.123.0.241 188190 port 343 188190 unique_id port 188190 remote_ip 10.8.0.62 188203 username shahruz 188203 mac 188203 bytes_out 2025 188203 bytes_in 4697 188203 station_ip 5.210.15.31 188203 port 343 188203 unique_id port 188203 remote_ip 10.8.0.146 188204 username aminvpn 188204 kill_reason Another user logged on this global unique id 188204 mac 188204 bytes_out 0 188204 bytes_in 0 188204 station_ip 5.119.36.146 188204 port 337 188204 unique_id port 188204 remote_ip 10.8.0.58 188209 username farhad3 188209 mac 188209 bytes_out 6263082 188209 bytes_in 48489974 188209 station_ip 5.119.194.76 188209 port 369 188209 unique_id port 188209 remote_ip 10.8.0.222 188211 username nilufarrajaei 188211 kill_reason Another user logged on this global unique id 188211 mac 188211 bytes_out 0 188211 bytes_in 0 188211 station_ip 83.123.56.30 188211 port 359 188211 unique_id port 188215 username rezaei 188215 mac 188215 bytes_out 36307 188215 bytes_in 92867 188215 station_ip 5.119.222.93 188215 port 377 188215 unique_id port 188215 remote_ip 10.8.0.198 188218 username rashidi4690 188218 mac 188218 bytes_out 6677953 188218 bytes_in 23399633 188218 station_ip 5.120.131.138 188218 port 350 188218 unique_id port 188218 remote_ip 10.8.0.242 188219 username sekonji0496 188219 mac 188219 bytes_out 0 188219 bytes_in 0 188219 station_ip 83.123.0.241 188219 port 377 188219 unique_id port 188219 remote_ip 10.8.0.62 188221 username rashidi4690 188221 mac 188221 bytes_out 63543 188221 bytes_in 203994 188221 station_ip 5.120.131.138 188221 port 379 188221 unique_id port 188221 remote_ip 10.8.0.242 188223 username hosseine 188223 mac 188223 bytes_out 0 188223 bytes_in 0 188223 station_ip 83.123.54.13 188223 port 349 188223 unique_id port 188224 username shahruz 188224 mac 188224 bytes_out 0 188224 bytes_in 0 188224 station_ip 5.210.15.31 188224 port 338 188224 unique_id port 188224 remote_ip 10.8.0.146 188227 username shahruz 188227 mac 188227 bytes_out 0 188227 bytes_in 0 188227 station_ip 5.210.15.31 188227 port 338 188227 unique_id port 188227 remote_ip 10.8.0.146 188230 username sekonji0496 188230 mac 188230 bytes_out 0 188230 bytes_in 0 188230 station_ip 83.123.0.241 188230 port 338 188230 unique_id port 188230 remote_ip 10.8.0.62 188234 username milan 188234 kill_reason Another user logged on this global unique id 188234 mac 188234 bytes_out 0 188234 bytes_in 0 188234 station_ip 5.119.23.34 188234 port 333 188234 unique_id port 188239 username nilufarrajaei 188239 mac 188239 bytes_out 0 188239 bytes_in 0 188239 station_ip 83.123.56.30 188239 port 359 188239 unique_id port 188243 username motamedi9772 188243 mac 188243 bytes_out 0 188243 bytes_in 0 188243 station_ip 83.123.51.251 188243 port 359 188243 unique_id port 188243 remote_ip 10.8.0.154 188245 username motamedi9772 188245 mac 188245 bytes_out 0 188245 bytes_in 0 188245 station_ip 83.123.51.251 188245 port 359 188245 unique_id port 188245 remote_ip 10.8.0.154 188251 username nilufarrajaei 188192 username sekonji0496 188192 mac 188192 bytes_out 0 188192 bytes_in 0 188192 station_ip 83.123.0.241 188192 port 343 188192 unique_id port 188192 remote_ip 10.8.0.62 188193 username yaghobi 188193 mac 188193 bytes_out 73034 188193 bytes_in 88439 188193 station_ip 83.123.121.209 188193 port 378 188193 unique_id port 188193 remote_ip 10.8.0.138 188195 username sekonji0496 188195 mac 188195 bytes_out 0 188195 bytes_in 0 188195 station_ip 83.123.0.241 188195 port 343 188195 unique_id port 188195 remote_ip 10.8.0.62 188199 username hosseine 188199 kill_reason Another user logged on this global unique id 188199 mac 188199 bytes_out 0 188199 bytes_in 0 188199 station_ip 83.123.54.13 188199 port 349 188199 unique_id port 188202 username malekpoir 188202 kill_reason Another user logged on this global unique id 188202 mac 188202 bytes_out 0 188202 bytes_in 0 188202 station_ip 5.119.203.248 188202 port 338 188202 unique_id port 188205 username sekonji0496 188205 mac 188205 bytes_out 0 188205 bytes_in 0 188205 station_ip 83.123.0.241 188205 port 379 188205 unique_id port 188205 remote_ip 10.8.0.62 188208 username fezealinaghi 188208 mac 188208 bytes_out 3161083 188208 bytes_in 33650465 188208 station_ip 83.123.36.126 188208 port 367 188208 unique_id port 188208 remote_ip 10.8.0.202 188210 username shahruz 188210 mac 188210 bytes_out 2056 188210 bytes_in 4516 188210 station_ip 5.210.15.31 188210 port 379 188210 unique_id port 188210 remote_ip 10.8.0.146 188214 username shahruz 188214 mac 188214 bytes_out 2292 188214 bytes_in 4600 188214 station_ip 5.210.15.31 188214 port 367 188214 unique_id port 188214 remote_ip 10.8.0.146 188220 username malekpoir 188220 mac 188220 bytes_out 0 188220 bytes_in 0 188220 station_ip 5.119.203.248 188220 port 338 188220 unique_id port 188222 username shahruz 188222 mac 188222 bytes_out 2050 188222 bytes_in 4441 188222 station_ip 5.210.15.31 188222 port 380 188222 unique_id port 188222 remote_ip 10.8.0.146 188226 username shahruz 188226 mac 188226 bytes_out 0 188226 bytes_in 0 188226 station_ip 5.210.15.31 188226 port 349 188226 unique_id port 188226 remote_ip 10.8.0.146 188232 username motamedi9772 188232 mac 188232 bytes_out 324221 188232 bytes_in 3608753 188232 station_ip 83.123.51.251 188232 port 369 188232 unique_id port 188232 remote_ip 10.8.0.154 188236 username sekonji0496 188236 mac 188236 bytes_out 1918 188236 bytes_in 3877 188236 station_ip 83.123.0.241 188236 port 338 188236 unique_id port 188236 remote_ip 10.8.0.62 188237 username akbari0070 188237 kill_reason Another user logged on this global unique id 188237 mac 188237 bytes_out 0 188237 bytes_in 0 188237 station_ip 83.123.101.191 188237 port 374 188237 unique_id port 188237 remote_ip 10.8.0.166 188240 username motamedi9772 188240 mac 188240 bytes_out 15218 188240 bytes_in 38100 188240 station_ip 83.123.51.251 188240 port 367 188240 unique_id port 188240 remote_ip 10.8.0.154 188241 username motamedi9772 188241 mac 188241 bytes_out 0 188241 bytes_in 0 188241 station_ip 83.123.51.251 188241 port 359 188241 unique_id port 188241 remote_ip 10.8.0.154 188244 username motamedi9772 188244 mac 188244 bytes_out 0 188244 bytes_in 0 188244 station_ip 83.123.51.251 188244 port 359 188244 unique_id port 188244 remote_ip 10.8.0.154 188246 username rahim 188246 mac 188246 bytes_out 842833 188246 bytes_in 3988549 188246 station_ip 5.119.57.111 188246 port 349 188246 unique_id port 188246 remote_ip 10.8.0.134 188201 remote_ip 10.8.0.50 188206 username shahruz 188206 mac 188206 bytes_out 1997 188206 bytes_in 4282 188206 station_ip 5.210.15.31 188206 port 363 188206 unique_id port 188206 remote_ip 10.8.0.146 188207 username yaghobi 188207 mac 188207 bytes_out 516133 188207 bytes_in 857152 188207 station_ip 83.123.78.188 188207 port 377 188207 unique_id port 188207 remote_ip 10.8.0.138 188212 username alipour1506 188212 kill_reason Another user logged on this global unique id 188212 mac 188212 bytes_out 0 188212 bytes_in 0 188212 station_ip 78.39.25.121 188212 port 366 188212 unique_id port 188212 remote_ip 10.8.0.246 188213 username rezaei 188213 mac 188213 bytes_out 408093 188213 bytes_in 3860495 188213 station_ip 5.119.222.93 188213 port 378 188213 unique_id port 188213 remote_ip 10.8.0.198 188216 username sekonji0496 188216 mac 188216 bytes_out 0 188216 bytes_in 0 188216 station_ip 83.123.0.241 188216 port 377 188216 unique_id port 188216 remote_ip 10.8.0.62 188217 username shahruz 188217 mac 188217 bytes_out 2191 188217 bytes_in 4282 188217 station_ip 5.210.15.31 188217 port 379 188217 unique_id port 188217 remote_ip 10.8.0.146 188225 username rezaei 188225 mac 188225 bytes_out 637636 188225 bytes_in 5451680 188225 station_ip 5.119.222.93 188225 port 367 188225 unique_id port 188225 remote_ip 10.8.0.198 188228 username shahruz 188228 mac 188228 bytes_out 0 188228 bytes_in 0 188228 station_ip 5.210.15.31 188228 port 338 188228 unique_id port 188228 remote_ip 10.8.0.146 188229 username sekonji0496 188229 mac 188229 bytes_out 0 188229 bytes_in 0 188229 station_ip 83.123.0.241 188229 port 350 188229 unique_id port 188229 remote_ip 10.8.0.62 188231 username shahruz 188231 mac 188231 bytes_out 0 188231 bytes_in 0 188231 station_ip 5.210.15.31 188231 port 350 188231 unique_id port 188231 remote_ip 10.8.0.146 188233 username motamedi9772 188233 mac 188233 bytes_out 0 188233 bytes_in 0 188233 station_ip 83.123.51.251 188233 port 350 188233 unique_id port 188233 remote_ip 10.8.0.154 188235 username motamedi9772 188235 mac 188235 bytes_out 0 188235 bytes_in 0 188235 station_ip 83.123.51.251 188235 port 367 188235 unique_id port 188235 remote_ip 10.8.0.154 188238 username sekonji0496 188238 mac 188238 bytes_out 0 188238 bytes_in 0 188238 station_ip 83.123.0.241 188238 port 338 188238 unique_id port 188238 remote_ip 10.8.0.62 188242 username motamedi9772 188242 mac 188242 bytes_out 0 188242 bytes_in 0 188242 station_ip 83.123.51.251 188242 port 359 188242 unique_id port 188242 remote_ip 10.8.0.154 188247 username motamedi9772 188247 mac 188247 bytes_out 0 188247 bytes_in 0 188247 station_ip 83.123.51.251 188247 port 349 188247 unique_id port 188247 remote_ip 10.8.0.154 188249 username motamedi9772 188249 mac 188249 bytes_out 0 188249 bytes_in 0 188249 station_ip 83.123.51.251 188249 port 349 188249 unique_id port 188249 remote_ip 10.8.0.154 188250 username nilufarrajaei 188250 kill_reason Another user logged on this global unique id 188250 mac 188250 bytes_out 0 188250 bytes_in 0 188250 station_ip 83.123.56.30 188250 port 349 188250 unique_id port 188258 username motamedi9772 188258 mac 188258 bytes_out 0 188258 bytes_in 0 188258 station_ip 83.123.51.251 188258 port 349 188258 unique_id port 188258 remote_ip 10.8.0.154 188260 username sekonji0496 188260 mac 188260 bytes_out 0 188260 bytes_in 0 188260 station_ip 83.123.0.241 188260 port 349 188260 unique_id port 188248 username sekonji0496 188248 mac 188248 bytes_out 0 188248 bytes_in 0 188248 station_ip 83.123.0.241 188248 port 359 188248 unique_id port 188248 remote_ip 10.8.0.62 188253 username motamedi9772 188253 mac 188253 bytes_out 0 188253 bytes_in 0 188253 station_ip 83.123.51.251 188253 port 349 188253 unique_id port 188253 remote_ip 10.8.0.154 188254 username motamedi9772 188254 mac 188254 bytes_out 0 188254 bytes_in 0 188254 station_ip 83.123.51.251 188254 port 349 188254 unique_id port 188254 remote_ip 10.8.0.154 188255 username motamedi9772 188255 mac 188255 bytes_out 0 188255 bytes_in 0 188255 station_ip 83.123.51.251 188255 port 349 188255 unique_id port 188255 remote_ip 10.8.0.154 188257 username motamedi9772 188257 mac 188257 bytes_out 0 188257 bytes_in 0 188257 station_ip 83.123.51.251 188257 port 349 188257 unique_id port 188257 remote_ip 10.8.0.154 188259 username motamedi9772 188259 mac 188259 bytes_out 0 188259 bytes_in 0 188259 station_ip 83.123.51.251 188259 port 349 188259 unique_id port 188259 remote_ip 10.8.0.154 188261 username pourshad 188261 mac 188261 bytes_out 9528805 188261 bytes_in 47108278 188261 station_ip 5.120.215.224 188261 port 375 188261 unique_id port 188261 remote_ip 10.8.0.42 188264 username sabaghnezhad 188264 mac 188264 bytes_out 6729281 188264 bytes_in 5391231 188264 station_ip 46.51.17.139 188264 port 370 188264 unique_id port 188264 remote_ip 10.8.0.66 188266 username aminvpnipad 188266 kill_reason Another user logged on this global unique id 188266 mac 188266 bytes_out 0 188266 bytes_in 0 188266 station_ip 5.119.109.57 188266 port 376 188266 unique_id port 188267 username motamedi9772 188267 mac 188267 bytes_out 0 188267 bytes_in 0 188267 station_ip 83.123.51.251 188267 port 369 188267 unique_id port 188267 remote_ip 10.8.0.154 188269 username rezaei 188269 mac 188269 bytes_out 19343 188269 bytes_in 42653 188269 station_ip 5.119.222.93 188269 port 359 188269 unique_id port 188269 remote_ip 10.8.0.198 188270 username yaghobi 188270 mac 188270 bytes_out 423037 188270 bytes_in 1378288 188270 station_ip 83.123.105.51 188270 port 338 188270 unique_id port 188270 remote_ip 10.8.0.138 188276 username aminvpn 188276 mac 188276 bytes_out 0 188276 bytes_in 0 188276 station_ip 5.119.36.146 188276 port 337 188276 unique_id port 188277 username farhad3 188277 mac 188277 bytes_out 1159382 188277 bytes_in 7037968 188277 station_ip 5.119.194.76 188277 port 363 188277 unique_id port 188277 remote_ip 10.8.0.222 188283 username aminvpnipad 188283 mac 188283 bytes_out 0 188283 bytes_in 0 188283 station_ip 5.119.109.57 188283 port 376 188283 unique_id port 188290 username rahim 188290 mac 188290 bytes_out 0 188290 bytes_in 0 188290 station_ip 5.119.57.111 188290 port 363 188290 unique_id port 188290 remote_ip 10.8.0.134 188291 username sekonji0496 188291 mac 188291 bytes_out 0 188291 bytes_in 0 188291 station_ip 83.123.0.241 188291 port 363 188291 unique_id port 188291 remote_ip 10.8.0.62 188298 username shahruz 188298 mac 188298 bytes_out 2293283 188298 bytes_in 10783580 188298 station_ip 5.210.15.31 188298 port 350 188298 unique_id port 188298 remote_ip 10.8.0.146 188300 username akbari0070 188300 kill_reason Another user logged on this global unique id 188300 mac 188300 bytes_out 0 188300 bytes_in 0 188300 station_ip 83.123.101.191 188300 port 374 188300 unique_id port 188301 username sekonji0496 188301 mac 188301 bytes_out 0 188251 mac 188251 bytes_out 15714 188251 bytes_in 16852 188251 station_ip 83.123.56.30 188251 port 338 188251 unique_id port 188251 remote_ip 10.8.0.194 188252 username nilufarrajaei 188252 kill_reason Another user logged on this global unique id 188252 mac 188252 bytes_out 0 188252 bytes_in 0 188252 station_ip 83.123.56.30 188252 port 349 188252 unique_id port 188256 username motamedi9772 188256 mac 188256 bytes_out 0 188256 bytes_in 0 188256 station_ip 83.123.51.251 188256 port 349 188256 unique_id port 188256 remote_ip 10.8.0.154 188262 username motamedi9772 188262 mac 188262 bytes_out 0 188262 bytes_in 0 188262 station_ip 83.123.51.251 188262 port 369 188262 unique_id port 188262 remote_ip 10.8.0.154 188268 username zahra1101 188268 kill_reason Another user logged on this global unique id 188268 mac 188268 bytes_out 0 188268 bytes_in 0 188268 station_ip 5.120.128.95 188268 port 371 188268 unique_id port 188268 remote_ip 10.8.0.250 188271 username sekonji0496 188271 mac 188271 bytes_out 0 188271 bytes_in 0 188271 station_ip 83.123.0.241 188271 port 338 188271 unique_id port 188271 remote_ip 10.8.0.62 188275 username akbari0070 188275 kill_reason Another user logged on this global unique id 188275 mac 188275 bytes_out 0 188275 bytes_in 0 188275 station_ip 83.123.101.191 188275 port 374 188275 unique_id port 188279 username mosi 188279 mac 188279 bytes_out 0 188279 bytes_in 0 188279 station_ip 151.235.79.93 188279 port 368 188279 unique_id port 188282 username yaghobi 188282 mac 188282 bytes_out 974416 188282 bytes_in 1897351 188282 station_ip 83.123.105.51 188282 port 359 188282 unique_id port 188282 remote_ip 10.8.0.138 188286 username sekonji0496 188286 mac 188286 bytes_out 0 188286 bytes_in 0 188286 station_ip 83.123.0.241 188286 port 359 188286 unique_id port 188286 remote_ip 10.8.0.62 188288 username yaghobi 188288 mac 188288 bytes_out 438153 188288 bytes_in 679489 188288 station_ip 83.123.105.51 188288 port 363 188288 unique_id port 188288 remote_ip 10.8.0.138 188289 username khalili2 188289 kill_reason Another user logged on this global unique id 188289 mac 188289 bytes_out 0 188289 bytes_in 0 188289 station_ip 5.120.26.238 188289 port 360 188289 unique_id port 188292 username godarzi 188292 mac 188292 bytes_out 0 188292 bytes_in 0 188292 station_ip 5.202.29.254 188292 port 367 188292 unique_id port 188296 username naeimeh 188296 mac 188296 bytes_out 363550 188296 bytes_in 1965474 188296 station_ip 83.123.64.29 188296 port 367 188296 unique_id port 188296 remote_ip 10.8.0.78 188297 username sabaghnezhad 188297 mac 188297 bytes_out 124411 188297 bytes_in 97312 188297 station_ip 46.51.17.139 188297 port 368 188297 unique_id port 188297 remote_ip 10.8.0.66 188299 username naeimeh 188299 mac 188299 bytes_out 51446 188299 bytes_in 262777 188299 station_ip 83.123.64.29 188299 port 370 188299 unique_id port 188299 remote_ip 10.8.0.78 188303 username sekonji0496 188303 mac 188303 bytes_out 0 188303 bytes_in 0 188303 station_ip 83.123.0.241 188303 port 350 188303 unique_id port 188303 remote_ip 10.8.0.62 188305 username mosi 188305 mac 188305 bytes_out 439836 188305 bytes_in 535526 188305 station_ip 89.47.67.246 188305 port 357 188305 unique_id port 188305 remote_ip 10.8.0.142 188306 username fezealinaghi 188306 mac 188306 bytes_out 778679 188306 bytes_in 8962421 188306 station_ip 83.123.9.114 188306 port 350 188306 unique_id port 188306 remote_ip 10.8.0.202 188309 username zahra1101 188260 remote_ip 10.8.0.62 188263 username kalantary6037 188263 mac 188263 bytes_out 261003 188263 bytes_in 1225783 188263 station_ip 83.123.91.135 188263 port 359 188263 unique_id port 188263 remote_ip 10.8.0.50 188265 username motamedi9772 188265 mac 188265 bytes_out 0 188265 bytes_in 0 188265 station_ip 83.123.51.251 188265 port 359 188265 unique_id port 188265 remote_ip 10.8.0.154 188272 username mostafa_es78 188272 mac 188272 bytes_out 477011 188272 bytes_in 2377626 188272 station_ip 83.122.203.204 188272 port 378 188272 unique_id port 188272 remote_ip 10.8.0.34 188273 username sekonji0496 188273 mac 188273 bytes_out 0 188273 bytes_in 0 188273 station_ip 83.123.0.241 188273 port 338 188273 unique_id port 188273 remote_ip 10.8.0.62 188274 username sekonji0496 188274 mac 188274 bytes_out 0 188274 bytes_in 0 188274 station_ip 83.123.0.241 188274 port 338 188274 unique_id port 188274 remote_ip 10.8.0.62 188278 username khorasani9135 188278 mac 188278 bytes_out 0 188278 bytes_in 0 188278 station_ip 83.123.22.174 188278 port 357 188278 unique_id port 188280 username sekonji0496 188280 mac 188280 bytes_out 0 188280 bytes_in 0 188280 station_ip 83.123.0.241 188280 port 338 188280 unique_id port 188280 remote_ip 10.8.0.62 188281 username sekonji0496 188281 mac 188281 bytes_out 0 188281 bytes_in 0 188281 station_ip 83.123.0.241 188281 port 338 188281 unique_id port 188281 remote_ip 10.8.0.62 188284 username teymori5660 188284 mac 188284 bytes_out 167091 188284 bytes_in 1328721 188284 station_ip 5.119.120.78 188284 port 359 188284 unique_id port 188284 remote_ip 10.8.0.30 188285 username sekonji0496 188285 mac 188285 bytes_out 0 188285 bytes_in 0 188285 station_ip 83.123.0.241 188285 port 359 188285 unique_id port 188285 remote_ip 10.8.0.62 188287 username godarzi 188287 kill_reason Another user logged on this global unique id 188287 mac 188287 bytes_out 0 188287 bytes_in 0 188287 station_ip 5.202.29.254 188287 port 367 188287 unique_id port 188287 remote_ip 10.8.0.38 188293 username akbari0070 188293 kill_reason Another user logged on this global unique id 188293 mac 188293 bytes_out 0 188293 bytes_in 0 188293 station_ip 83.123.101.191 188293 port 374 188293 unique_id port 188294 username sekonji0496 188294 mac 188294 bytes_out 0 188294 bytes_in 0 188294 station_ip 83.123.0.241 188294 port 363 188294 unique_id port 188294 remote_ip 10.8.0.62 188295 username yaghobi 188295 mac 188295 bytes_out 637941 188295 bytes_in 1207821 188295 station_ip 83.123.105.51 188295 port 370 188295 unique_id port 188295 remote_ip 10.8.0.138 188302 username saeed9658 188302 mac 188302 bytes_out 4896933 188302 bytes_in 41721419 188302 station_ip 5.120.176.154 188302 port 373 188302 unique_id port 188302 remote_ip 10.8.0.162 188307 username sekonji0496 188307 mac 188307 bytes_out 0 188307 bytes_in 0 188307 station_ip 83.123.0.241 188307 port 357 188307 unique_id port 188307 remote_ip 10.8.0.62 188311 username ahmadi1 188311 mac 188311 bytes_out 38271 188311 bytes_in 185118 188311 station_ip 83.123.6.182 188311 port 350 188311 unique_id port 188311 remote_ip 10.8.0.94 188313 username sekonji0496 188313 mac 188313 bytes_out 0 188313 bytes_in 0 188313 station_ip 83.123.0.241 188313 port 350 188313 unique_id port 188313 remote_ip 10.8.0.62 188314 username sekonji0496 188314 mac 188314 bytes_out 0 188314 bytes_in 0 188314 station_ip 83.123.0.241 188314 port 350 188314 unique_id port 188314 remote_ip 10.8.0.62 188301 bytes_in 0 188301 station_ip 83.123.0.241 188301 port 350 188301 unique_id port 188301 remote_ip 10.8.0.62 188304 username yaghobi 188304 mac 188304 bytes_out 1083286 188304 bytes_in 5055956 188304 station_ip 83.123.105.51 188304 port 363 188304 unique_id port 188304 remote_ip 10.8.0.138 188308 username aminvpn 188308 unique_id port 188308 terminate_cause Lost-Carrier 188308 bytes_out 16897312 188308 bytes_in 416786466 188308 station_ip 31.57.127.97 188308 port 15729091 188308 nas_port_type Virtual 188308 remote_ip 5.5.5.106 188310 username aminvpn 188310 kill_reason Another user logged on this global unique id 188310 mac 188310 bytes_out 0 188310 bytes_in 0 188310 station_ip 5.119.36.146 188310 port 337 188310 unique_id port 188310 remote_ip 10.8.0.58 188316 username mosi 188316 mac 188316 bytes_out 384269 188316 bytes_in 667324 188316 station_ip 89.47.132.54 188316 port 363 188316 unique_id port 188316 remote_ip 10.8.0.142 188318 username soleymani5056 188318 mac 188318 bytes_out 554812 188318 bytes_in 1125701 188318 station_ip 5.120.79.109 188318 port 359 188318 unique_id port 188318 remote_ip 10.8.0.226 188320 username akbari0070 188320 kill_reason Another user logged on this global unique id 188320 mac 188320 bytes_out 0 188320 bytes_in 0 188320 station_ip 83.123.101.191 188320 port 374 188320 unique_id port 188321 username motamedi9772 188321 mac 188321 bytes_out 1725091 188321 bytes_in 16070323 188321 station_ip 83.123.51.251 188321 port 369 188321 unique_id port 188321 remote_ip 10.8.0.154 188322 username motamedi9772 188322 mac 188322 bytes_out 0 188322 bytes_in 0 188322 station_ip 83.123.51.251 188322 port 350 188322 unique_id port 188322 remote_ip 10.8.0.154 188326 username sekonji0496 188326 mac 188326 bytes_out 0 188326 bytes_in 0 188326 station_ip 83.123.0.241 188326 port 350 188326 unique_id port 188326 remote_ip 10.8.0.62 188327 username motamedi9772 188327 mac 188327 bytes_out 0 188327 bytes_in 0 188327 station_ip 83.123.51.251 188327 port 350 188327 unique_id port 188327 remote_ip 10.8.0.154 188332 username Mahin 188332 kill_reason Relative expiration date has reached 188332 mac 188332 bytes_out 0 188332 bytes_in 0 188332 station_ip 5.119.218.49 188332 port 357 188332 unique_id port 188336 username motamedi9772 188336 mac 188336 bytes_out 0 188336 bytes_in 0 188336 station_ip 83.123.51.251 188336 port 357 188336 unique_id port 188336 remote_ip 10.8.0.154 188338 username soleymani5056 188338 mac 188338 bytes_out 93778 188338 bytes_in 847687 188338 station_ip 5.119.98.185 188338 port 363 188338 unique_id port 188338 remote_ip 10.8.0.226 188343 username akbari0070 188343 mac 188343 bytes_out 0 188343 bytes_in 0 188343 station_ip 83.123.101.191 188343 port 374 188343 unique_id port 188344 username saeed9658 188344 mac 188344 bytes_out 465407 188344 bytes_in 2635938 188344 station_ip 5.120.176.154 188344 port 350 188344 unique_id port 188344 remote_ip 10.8.0.162 188346 username shadkam 188346 kill_reason Another user logged on this global unique id 188346 mac 188346 bytes_out 0 188346 bytes_in 0 188346 station_ip 5.202.6.36 188346 port 338 188346 unique_id port 188348 username sekonji0496 188348 mac 188348 bytes_out 0 188348 bytes_in 0 188348 station_ip 83.123.0.241 188348 port 350 188348 unique_id port 188348 remote_ip 10.8.0.62 188354 username shahruz 188354 kill_reason Another user logged on this global unique id 188354 mac 188354 bytes_out 0 188354 bytes_in 0 188354 station_ip 5.210.15.31 188354 port 367 188354 unique_id port 188309 kill_reason Another user logged on this global unique id 188309 mac 188309 bytes_out 0 188309 bytes_in 0 188309 station_ip 5.120.128.95 188309 port 371 188309 unique_id port 188312 username shadkam 188312 kill_reason Another user logged on this global unique id 188312 mac 188312 bytes_out 0 188312 bytes_in 0 188312 station_ip 5.202.6.36 188312 port 338 188312 unique_id port 188312 remote_ip 10.8.0.74 188315 username sekonji0496 188315 mac 188315 bytes_out 0 188315 bytes_in 0 188315 station_ip 83.123.0.241 188315 port 350 188315 unique_id port 188315 remote_ip 10.8.0.62 188317 username shahruz 188317 kill_reason Another user logged on this global unique id 188317 mac 188317 bytes_out 0 188317 bytes_in 0 188317 station_ip 5.210.15.31 188317 port 367 188317 unique_id port 188317 remote_ip 10.8.0.146 188323 username sekonji0496 188323 mac 188323 bytes_out 0 188323 bytes_in 0 188323 station_ip 83.123.0.241 188323 port 359 188323 unique_id port 188323 remote_ip 10.8.0.62 188328 username akbari0070 188328 kill_reason Another user logged on this global unique id 188328 mac 188328 bytes_out 0 188328 bytes_in 0 188328 station_ip 83.123.101.191 188328 port 374 188328 unique_id port 188330 username ehsun 188330 unique_id port 188330 terminate_cause Lost-Carrier 188330 bytes_out 2891970 188330 bytes_in 43842769 188330 station_ip 83.123.82.80 188330 port 15729094 188330 nas_port_type Virtual 188330 remote_ip 5.5.5.99 188331 username soleymani5056 188331 mac 188331 bytes_out 194282 188331 bytes_in 184749 188331 station_ip 5.119.249.154 188331 port 357 188331 unique_id port 188331 remote_ip 10.8.0.226 188333 username sekonji0496 188333 mac 188333 bytes_out 0 188333 bytes_in 0 188333 station_ip 83.123.0.241 188333 port 359 188333 unique_id port 188333 remote_ip 10.8.0.62 188334 username sekonji0496 188334 mac 188334 bytes_out 0 188334 bytes_in 0 188334 station_ip 83.123.0.241 188334 port 357 188334 unique_id port 188334 remote_ip 10.8.0.62 188335 username shahruz 188335 kill_reason Another user logged on this global unique id 188335 mac 188335 bytes_out 0 188335 bytes_in 0 188335 station_ip 5.210.15.31 188335 port 367 188335 unique_id port 188337 username aminvpn 188337 unique_id port 188337 terminate_cause Lost-Carrier 188337 bytes_out 3976455 188337 bytes_in 67810639 188337 station_ip 5.119.109.57 188337 port 15729092 188337 nas_port_type Virtual 188337 remote_ip 5.5.5.100 188339 username motamedi9772 188339 mac 188339 bytes_out 0 188339 bytes_in 0 188339 station_ip 83.123.51.251 188339 port 357 188339 unique_id port 188339 remote_ip 10.8.0.154 188340 username motamedi9772 188340 mac 188340 bytes_out 0 188340 bytes_in 0 188340 station_ip 83.123.51.251 188340 port 357 188340 unique_id port 188340 remote_ip 10.8.0.154 188342 username sekonji0496 188342 mac 188342 bytes_out 0 188342 bytes_in 0 188342 station_ip 83.123.0.241 188342 port 363 188342 unique_id port 188342 remote_ip 10.8.0.62 188345 username farhad3 188345 mac 188345 bytes_out 152904 188345 bytes_in 585581 188345 station_ip 5.119.194.76 188345 port 368 188345 unique_id port 188345 remote_ip 10.8.0.222 188347 username aminvpn 188347 mac 188347 bytes_out 0 188347 bytes_in 0 188347 station_ip 5.119.36.146 188347 port 337 188347 unique_id port 188350 username alikomsari 188350 kill_reason Another user logged on this global unique id 188350 mac 188350 bytes_out 0 188350 bytes_in 0 188350 station_ip 5.120.119.89 188350 port 348 188350 unique_id port 188351 username zahra1101 188351 mac 188351 bytes_out 556295 188351 bytes_in 2170193 188319 username sekonji0496 188319 mac 188319 bytes_out 0 188319 bytes_in 0 188319 station_ip 83.123.0.241 188319 port 350 188319 unique_id port 188319 remote_ip 10.8.0.62 188324 username motamedi9772 188324 mac 188324 bytes_out 0 188324 bytes_in 0 188324 station_ip 83.123.51.251 188324 port 350 188324 unique_id port 188324 remote_ip 10.8.0.154 188325 username motamedi9772 188325 mac 188325 bytes_out 0 188325 bytes_in 0 188325 station_ip 83.123.51.251 188325 port 359 188325 unique_id port 188325 remote_ip 10.8.0.154 188329 username zahra1101 188329 mac 188329 bytes_out 0 188329 bytes_in 0 188329 station_ip 5.120.128.95 188329 port 371 188329 unique_id port 188341 username alipour1506 188341 kill_reason Another user logged on this global unique id 188341 mac 188341 bytes_out 0 188341 bytes_in 0 188341 station_ip 78.39.25.121 188341 port 366 188341 unique_id port 188349 username akbari0070 188349 mac 188349 bytes_out 1732972 188349 bytes_in 14087162 188349 station_ip 83.123.101.191 188349 port 363 188349 unique_id port 188349 remote_ip 10.8.0.166 188352 username zahra1101 188352 mac 188352 bytes_out 0 188352 bytes_in 0 188352 station_ip 5.120.128.95 188352 port 350 188352 unique_id port 188352 remote_ip 10.8.0.250 188353 username ayobi 188353 mac 188353 bytes_out 3669529 188353 bytes_in 39144873 188353 station_ip 37.27.52.24 188353 port 343 188353 unique_id port 188353 remote_ip 10.8.0.118 188359 username sekonji0496 188359 mac 188359 bytes_out 0 188359 bytes_in 0 188359 station_ip 83.123.0.241 188359 port 343 188359 unique_id port 188359 remote_ip 10.8.0.62 188363 username alikomsari 188363 kill_reason Another user logged on this global unique id 188363 mac 188363 bytes_out 0 188363 bytes_in 0 188363 station_ip 5.120.119.89 188363 port 348 188363 unique_id port 188364 username zahra1101 188364 kill_reason Maximum check online fails reached 188364 mac 188364 bytes_out 0 188364 bytes_in 0 188364 station_ip 5.120.128.95 188364 port 343 188364 unique_id port 188369 username sekonji0496 188369 mac 188369 bytes_out 2715 188369 bytes_in 4314 188369 station_ip 83.123.0.241 188369 port 363 188369 unique_id port 188369 remote_ip 10.8.0.62 188380 username zahra1101 188380 mac 188380 bytes_out 0 188380 bytes_in 0 188380 station_ip 5.120.128.95 188380 port 338 188380 unique_id port 188380 remote_ip 10.8.0.250 188392 username zahra1101 188392 mac 188392 bytes_out 0 188392 bytes_in 0 188392 station_ip 5.120.128.95 188392 port 350 188392 unique_id port 188392 remote_ip 10.8.0.250 188395 username sekonji0496 188395 mac 188395 bytes_out 0 188395 bytes_in 0 188395 station_ip 83.123.0.241 188395 port 363 188395 unique_id port 188395 remote_ip 10.8.0.62 188396 username sekonji0496 188396 mac 188396 bytes_out 0 188396 bytes_in 0 188396 station_ip 83.123.0.241 188396 port 350 188396 unique_id port 188396 remote_ip 10.8.0.62 188401 username aminvpn 188401 kill_reason Another user logged on this global unique id 188401 mac 188401 bytes_out 0 188401 bytes_in 0 188401 station_ip 5.119.36.146 188401 port 338 188401 unique_id port 188401 remote_ip 10.8.0.58 188403 username zahra1101 188403 mac 188403 bytes_out 0 188403 bytes_in 0 188403 station_ip 5.120.128.95 188403 port 368 188403 unique_id port 188403 remote_ip 10.8.0.250 188407 username mansour 188407 mac 188407 bytes_out 1717076 188407 bytes_in 22931551 188407 station_ip 5.202.97.228 188407 port 350 188407 unique_id port 188407 remote_ip 10.8.0.10 188411 username farhad3 188351 station_ip 5.120.128.95 188351 port 359 188351 unique_id port 188351 remote_ip 10.8.0.250 188356 username sekonji0496 188356 mac 188356 bytes_out 0 188356 bytes_in 0 188356 station_ip 83.123.0.241 188356 port 350 188356 unique_id port 188356 remote_ip 10.8.0.62 188361 username farhad3 188361 kill_reason Another user logged on this global unique id 188361 mac 188361 bytes_out 0 188361 bytes_in 0 188361 station_ip 5.119.194.76 188361 port 337 188361 unique_id port 188361 remote_ip 10.8.0.222 188362 username zahra1101 188362 mac 188362 bytes_out 0 188362 bytes_in 0 188362 station_ip 5.120.128.95 188362 port 350 188362 unique_id port 188362 remote_ip 10.8.0.250 188365 username zahra1101 188365 mac 188365 bytes_out 0 188365 bytes_in 0 188365 station_ip 5.120.128.95 188365 port 350 188365 unique_id port 188365 remote_ip 10.8.0.250 188368 username zahra1101 188368 mac 188368 bytes_out 0 188368 bytes_in 0 188368 station_ip 5.120.128.95 188368 port 350 188368 unique_id port 188368 remote_ip 10.8.0.250 188372 username sekonji0496 188372 mac 188372 bytes_out 0 188372 bytes_in 0 188372 station_ip 83.123.0.241 188372 port 350 188372 unique_id port 188372 remote_ip 10.8.0.62 188373 username zahra1101 188373 mac 188373 bytes_out 0 188373 bytes_in 0 188373 station_ip 5.120.128.95 188373 port 350 188373 unique_id port 188373 remote_ip 10.8.0.250 188374 username shadkam 188374 mac 188374 bytes_out 0 188374 bytes_in 0 188374 station_ip 5.202.6.36 188374 port 338 188374 unique_id port 188375 username shahruz 188375 kill_reason Another user logged on this global unique id 188375 mac 188375 bytes_out 0 188375 bytes_in 0 188375 station_ip 5.210.15.31 188375 port 367 188375 unique_id port 188377 username sekonji0496 188377 mac 188377 bytes_out 0 188377 bytes_in 0 188377 station_ip 83.123.0.241 188377 port 338 188377 unique_id port 188377 remote_ip 10.8.0.62 188379 username zahra1101 188379 mac 188379 bytes_out 0 188379 bytes_in 0 188379 station_ip 5.120.128.95 188379 port 338 188379 unique_id port 188379 remote_ip 10.8.0.250 188381 username rezaei 188381 mac 188381 bytes_out 1988914 188381 bytes_in 21412043 188381 station_ip 5.119.222.93 188381 port 359 188381 unique_id port 188381 remote_ip 10.8.0.198 188383 username sekonji0496 188383 mac 188383 bytes_out 0 188383 bytes_in 0 188383 station_ip 83.123.0.241 188383 port 359 188383 unique_id port 188383 remote_ip 10.8.0.62 188384 username sekonji0496 188384 mac 188384 bytes_out 0 188384 bytes_in 0 188384 station_ip 83.123.0.241 188384 port 350 188384 unique_id port 188384 remote_ip 10.8.0.62 188387 username zahra1101 188387 mac 188387 bytes_out 0 188387 bytes_in 0 188387 station_ip 5.120.128.95 188387 port 338 188387 unique_id port 188387 remote_ip 10.8.0.250 188390 username zahra1101 188390 mac 188390 bytes_out 0 188390 bytes_in 0 188390 station_ip 5.120.128.95 188390 port 350 188390 unique_id port 188390 remote_ip 10.8.0.250 188394 username zahra1101 188394 mac 188394 bytes_out 0 188394 bytes_in 0 188394 station_ip 5.120.128.95 188394 port 350 188394 unique_id port 188394 remote_ip 10.8.0.250 188398 username shahruz 188398 mac 188398 bytes_out 0 188398 bytes_in 0 188398 station_ip 5.210.15.31 188398 port 367 188398 unique_id port 188406 username milan 188406 kill_reason Another user logged on this global unique id 188406 mac 188406 bytes_out 0 188406 bytes_in 0 188406 station_ip 5.119.23.34 188406 port 333 188355 username zahra1101 188355 mac 188355 bytes_out 0 188355 bytes_in 0 188355 station_ip 5.120.128.95 188355 port 359 188355 unique_id port 188355 remote_ip 10.8.0.250 188357 username zahra1101 188357 mac 188357 bytes_out 0 188357 bytes_in 0 188357 station_ip 5.120.128.95 188357 port 343 188357 unique_id port 188357 remote_ip 10.8.0.250 188358 username sekonji0496 188358 mac 188358 bytes_out 0 188358 bytes_in 0 188358 station_ip 83.123.0.241 188358 port 343 188358 unique_id port 188358 remote_ip 10.8.0.62 188360 username zahra1101 188360 mac 188360 bytes_out 0 188360 bytes_in 0 188360 station_ip 5.120.128.95 188360 port 343 188360 unique_id port 188360 remote_ip 10.8.0.250 188366 username sekonji0496 188366 mac 188366 bytes_out 0 188366 bytes_in 0 188366 station_ip 83.123.0.241 188366 port 350 188366 unique_id port 188366 remote_ip 10.8.0.62 188367 username sekonji0496 188367 mac 188367 bytes_out 0 188367 bytes_in 0 188367 station_ip 83.123.0.241 188367 port 350 188367 unique_id port 188367 remote_ip 10.8.0.62 188370 username zahra1101 188370 mac 188370 bytes_out 0 188370 bytes_in 0 188370 station_ip 5.120.128.95 188370 port 350 188370 unique_id port 188370 remote_ip 10.8.0.250 188371 username zahra1101 188371 mac 188371 bytes_out 0 188371 bytes_in 0 188371 station_ip 5.120.128.95 188371 port 350 188371 unique_id port 188371 remote_ip 10.8.0.250 188376 username motamedi9772 188376 kill_reason Another user logged on this global unique id 188376 mac 188376 bytes_out 0 188376 bytes_in 0 188376 station_ip 83.123.51.251 188376 port 357 188376 unique_id port 188376 remote_ip 10.8.0.154 188378 username zahra1101 188378 mac 188378 bytes_out 0 188378 bytes_in 0 188378 station_ip 5.120.128.95 188378 port 338 188378 unique_id port 188378 remote_ip 10.8.0.250 188382 username shadkam 188382 mac 188382 bytes_out 18405 188382 bytes_in 63259 188382 station_ip 5.202.6.36 188382 port 350 188382 unique_id port 188382 remote_ip 10.8.0.74 188385 username zahra1101 188385 mac 188385 bytes_out 61731 188385 bytes_in 1289843 188385 station_ip 5.120.128.95 188385 port 338 188385 unique_id port 188385 remote_ip 10.8.0.250 188386 username alikomsari 188386 kill_reason Another user logged on this global unique id 188386 mac 188386 bytes_out 0 188386 bytes_in 0 188386 station_ip 5.120.119.89 188386 port 348 188386 unique_id port 188388 username sekonji0496 188388 mac 188388 bytes_out 0 188388 bytes_in 0 188388 station_ip 83.123.0.241 188388 port 338 188388 unique_id port 188388 remote_ip 10.8.0.62 188389 username zahra1101 188389 mac 188389 bytes_out 3210 188389 bytes_in 4724 188389 station_ip 5.120.128.95 188389 port 350 188389 unique_id port 188389 remote_ip 10.8.0.250 188391 username motamedi9772 188391 kill_reason Another user logged on this global unique id 188391 mac 188391 bytes_out 0 188391 bytes_in 0 188391 station_ip 83.123.51.251 188391 port 357 188391 unique_id port 188393 username alikomsari 188393 kill_reason Another user logged on this global unique id 188393 mac 188393 bytes_out 0 188393 bytes_in 0 188393 station_ip 5.120.119.89 188393 port 348 188393 unique_id port 188397 username shahruz 188397 kill_reason Another user logged on this global unique id 188397 mac 188397 bytes_out 0 188397 bytes_in 0 188397 station_ip 5.210.15.31 188397 port 367 188397 unique_id port 188399 username zahra1101 188399 mac 188399 bytes_out 0 188399 bytes_in 0 188399 station_ip 5.120.128.95 188399 port 367 188399 unique_id port 188399 remote_ip 10.8.0.250 188400 username zahra1101 188400 kill_reason Maximum check online fails reached 188400 mac 188400 bytes_out 0 188400 bytes_in 0 188400 station_ip 5.120.128.95 188400 port 363 188400 unique_id port 188402 username sekonji0496 188402 mac 188402 bytes_out 0 188402 bytes_in 0 188402 station_ip 83.123.0.241 188402 port 368 188402 unique_id port 188402 remote_ip 10.8.0.62 188404 username mostafa_es78 188404 mac 188404 bytes_out 591372 188404 bytes_in 973799 188404 station_ip 83.122.203.204 188404 port 359 188404 unique_id port 188404 remote_ip 10.8.0.34 188405 username zahra1101 188405 kill_reason Maximum check online fails reached 188405 mac 188405 bytes_out 0 188405 bytes_in 0 188405 station_ip 5.120.128.95 188405 port 367 188405 unique_id port 188408 username zahra1101 188408 mac 188408 bytes_out 0 188408 bytes_in 0 188408 station_ip 5.120.128.95 188408 port 368 188408 unique_id port 188408 remote_ip 10.8.0.250 188409 username sekonji0496 188409 mac 188409 bytes_out 0 188409 bytes_in 0 188409 station_ip 83.123.0.241 188409 port 350 188409 unique_id port 188409 remote_ip 10.8.0.62 188412 username zahra1101 188412 mac 188412 bytes_out 0 188412 bytes_in 0 188412 station_ip 5.120.128.95 188412 port 350 188412 unique_id port 188412 remote_ip 10.8.0.250 188415 username mostafa_es78 188415 mac 188415 bytes_out 792903 188415 bytes_in 4760462 188415 station_ip 83.122.203.204 188415 port 359 188415 unique_id port 188415 remote_ip 10.8.0.34 188417 username motamedi9772 188417 kill_reason Another user logged on this global unique id 188417 mac 188417 bytes_out 0 188417 bytes_in 0 188417 station_ip 83.123.51.251 188417 port 357 188417 unique_id port 188419 username zahra1101 188419 mac 188419 bytes_out 0 188419 bytes_in 0 188419 station_ip 5.120.128.95 188419 port 369 188419 unique_id port 188419 remote_ip 10.8.0.250 188425 username zahra1101 188425 mac 188425 bytes_out 3092 188425 bytes_in 5398 188425 station_ip 5.120.128.95 188425 port 369 188425 unique_id port 188425 remote_ip 10.8.0.250 188426 username zahra1101 188426 mac 188426 bytes_out 0 188426 bytes_in 0 188426 station_ip 5.120.128.95 188426 port 369 188426 unique_id port 188426 remote_ip 10.8.0.250 188427 username zahra1101 188427 mac 188427 bytes_out 0 188427 bytes_in 0 188427 station_ip 5.120.128.95 188427 port 369 188427 unique_id port 188427 remote_ip 10.8.0.250 188429 username sekonji0496 188429 mac 188429 bytes_out 0 188429 bytes_in 0 188429 station_ip 83.123.0.241 188429 port 370 188429 unique_id port 188429 remote_ip 10.8.0.62 188432 username zahra1101 188432 kill_reason Maximum check online fails reached 188432 mac 188432 bytes_out 0 188432 bytes_in 0 188432 station_ip 5.120.128.95 188432 port 369 188432 unique_id port 188440 username aminvpn 188440 kill_reason Another user logged on this global unique id 188440 mac 188440 bytes_out 0 188440 bytes_in 0 188440 station_ip 5.119.36.146 188440 port 359 188440 unique_id port 188445 username sekonji0496 188445 mac 188445 bytes_out 0 188445 bytes_in 0 188445 station_ip 83.123.0.241 188445 port 371 188445 unique_id port 188445 remote_ip 10.8.0.62 188447 username akbari0070 188447 mac 188447 bytes_out 2020308 188447 bytes_in 16417865 188447 station_ip 83.123.101.191 188447 port 338 188447 unique_id port 188447 remote_ip 10.8.0.166 188450 username motamedi9772 188450 mac 188450 bytes_out 12157 188450 bytes_in 18258 188450 station_ip 83.123.67.243 188450 port 373 188450 unique_id port 188406 unique_id port 188410 username aminvpn 188410 mac 188410 bytes_out 0 188410 bytes_in 0 188410 station_ip 5.119.36.146 188410 port 338 188410 unique_id port 188414 username zahra1101 188414 mac 188414 bytes_out 0 188414 bytes_in 0 188414 station_ip 5.120.128.95 188414 port 368 188414 unique_id port 188414 remote_ip 10.8.0.250 188421 username zahra1101 188421 mac 188421 bytes_out 0 188421 bytes_in 0 188421 station_ip 5.120.128.95 188421 port 368 188421 unique_id port 188421 remote_ip 10.8.0.250 188424 username sekonji0496 188424 mac 188424 bytes_out 0 188424 bytes_in 0 188424 station_ip 83.123.0.241 188424 port 369 188424 unique_id port 188424 remote_ip 10.8.0.62 188428 username aminvpn 188428 kill_reason Another user logged on this global unique id 188428 mac 188428 bytes_out 0 188428 bytes_in 0 188428 station_ip 5.119.36.146 188428 port 359 188428 unique_id port 188428 remote_ip 10.8.0.58 188430 username zahra1101 188430 mac 188430 bytes_out 0 188430 bytes_in 0 188430 station_ip 5.120.128.95 188430 port 369 188430 unique_id port 188430 remote_ip 10.8.0.250 188431 username zahra1101 188431 mac 188431 bytes_out 0 188431 bytes_in 0 188431 station_ip 5.120.128.95 188431 port 370 188431 unique_id port 188431 remote_ip 10.8.0.250 188433 username motamedi9772 188433 mac 188433 bytes_out 0 188433 bytes_in 0 188433 station_ip 83.123.51.251 188433 port 357 188433 unique_id port 188435 username zahra1101 188435 mac 188435 bytes_out 0 188435 bytes_in 0 188435 station_ip 5.120.128.95 188435 port 370 188435 unique_id port 188435 remote_ip 10.8.0.250 188436 username zahra1101 188436 kill_reason Maximum check online fails reached 188436 mac 188436 bytes_out 0 188436 bytes_in 0 188436 station_ip 5.120.128.95 188436 port 357 188436 unique_id port 188438 username sekonji0496 188438 mac 188438 bytes_out 0 188438 bytes_in 0 188438 station_ip 83.123.0.241 188438 port 370 188438 unique_id port 188438 remote_ip 10.8.0.62 188442 username zahra1101 188442 kill_reason Maximum check online fails reached 188442 mac 188442 bytes_out 0 188442 bytes_in 0 188442 station_ip 5.120.128.95 188442 port 370 188442 unique_id port 188443 username zahra1101 188443 mac 188443 bytes_out 0 188443 bytes_in 0 188443 station_ip 5.120.128.95 188443 port 371 188443 unique_id port 188443 remote_ip 10.8.0.250 188444 username zahra1101 188444 mac 188444 bytes_out 0 188444 bytes_in 0 188444 station_ip 5.120.128.95 188444 port 371 188444 unique_id port 188444 remote_ip 10.8.0.250 188446 username milan 188446 kill_reason Another user logged on this global unique id 188446 mac 188446 bytes_out 0 188446 bytes_in 0 188446 station_ip 5.119.23.34 188446 port 333 188446 unique_id port 188449 username zahra1101 188449 kill_reason Maximum check online fails reached 188449 mac 188449 bytes_out 0 188449 bytes_in 0 188449 station_ip 5.120.128.95 188449 port 371 188449 unique_id port 188454 username aminvpn 188454 kill_reason Another user logged on this global unique id 188454 mac 188454 bytes_out 0 188454 bytes_in 0 188454 station_ip 5.119.36.146 188454 port 359 188454 unique_id port 188456 username zahra1101 188456 mac 188456 bytes_out 0 188456 bytes_in 0 188456 station_ip 5.120.128.95 188456 port 373 188456 unique_id port 188456 remote_ip 10.8.0.250 188457 username zahra1101 188457 mac 188457 bytes_out 0 188457 bytes_in 0 188457 station_ip 5.120.128.95 188457 port 373 188457 unique_id port 188457 remote_ip 10.8.0.250 188458 username zahra1101 188411 mac 188411 bytes_out 0 188411 bytes_in 0 188411 station_ip 5.119.194.76 188411 port 337 188411 unique_id port 188413 username sekonji0496 188413 mac 188413 bytes_out 0 188413 bytes_in 0 188413 station_ip 83.123.0.241 188413 port 350 188413 unique_id port 188413 remote_ip 10.8.0.62 188416 username zahra1101 188416 mac 188416 bytes_out 0 188416 bytes_in 0 188416 station_ip 5.120.128.95 188416 port 359 188416 unique_id port 188416 remote_ip 10.8.0.250 188418 username sekonji0496 188418 mac 188418 bytes_out 0 188418 bytes_in 0 188418 station_ip 83.123.0.241 188418 port 368 188418 unique_id port 188418 remote_ip 10.8.0.62 188420 username zahra1101 188420 mac 188420 bytes_out 0 188420 bytes_in 0 188420 station_ip 5.120.128.95 188420 port 368 188420 unique_id port 188420 remote_ip 10.8.0.250 188422 username zahra1101 188422 mac 188422 bytes_out 0 188422 bytes_in 0 188422 station_ip 5.120.128.95 188422 port 369 188422 unique_id port 188422 remote_ip 10.8.0.250 188423 username zahra1101 188423 kill_reason Maximum check online fails reached 188423 mac 188423 bytes_out 0 188423 bytes_in 0 188423 station_ip 5.120.128.95 188423 port 368 188423 unique_id port 188434 username zahra1101 188434 mac 188434 bytes_out 0 188434 bytes_in 0 188434 station_ip 5.120.128.95 188434 port 370 188434 unique_id port 188434 remote_ip 10.8.0.250 188437 username zahra1101 188437 mac 188437 bytes_out 0 188437 bytes_in 0 188437 station_ip 5.120.128.95 188437 port 370 188437 unique_id port 188437 remote_ip 10.8.0.250 188439 username zahra1101 188439 mac 188439 bytes_out 0 188439 bytes_in 0 188439 station_ip 5.120.128.95 188439 port 370 188439 unique_id port 188439 remote_ip 10.8.0.250 188441 username zahra1101 188441 mac 188441 bytes_out 0 188441 bytes_in 0 188441 station_ip 5.120.128.95 188441 port 371 188441 unique_id port 188441 remote_ip 10.8.0.250 188448 username sekonji0496 188448 mac 188448 bytes_out 0 188448 bytes_in 0 188448 station_ip 83.123.0.241 188448 port 338 188448 unique_id port 188448 remote_ip 10.8.0.62 188451 username zahra1101 188451 kill_reason Maximum check online fails reached 188451 mac 188451 bytes_out 0 188451 bytes_in 0 188451 station_ip 5.120.128.95 188451 port 338 188451 unique_id port 188453 username sekonji0496 188453 mac 188453 bytes_out 0 188453 bytes_in 0 188453 station_ip 83.123.0.241 188453 port 373 188453 unique_id port 188453 remote_ip 10.8.0.62 188461 username sekonji0496 188461 mac 188461 bytes_out 0 188461 bytes_in 0 188461 station_ip 83.123.0.241 188461 port 350 188461 unique_id port 188461 remote_ip 10.8.0.62 188471 username zahra1101 188471 mac 188471 bytes_out 0 188471 bytes_in 0 188471 station_ip 5.120.128.95 188471 port 348 188471 unique_id port 188471 remote_ip 10.8.0.250 188473 username farhad3 188473 kill_reason Another user logged on this global unique id 188473 mac 188473 bytes_out 0 188473 bytes_in 0 188473 station_ip 5.119.194.76 188473 port 337 188473 unique_id port 188473 remote_ip 10.8.0.222 188475 username sekonji0496 188475 mac 188475 bytes_out 0 188475 bytes_in 0 188475 station_ip 83.123.0.241 188475 port 348 188475 unique_id port 188475 remote_ip 10.8.0.62 188477 username aminvpn 188477 kill_reason Another user logged on this global unique id 188477 mac 188477 bytes_out 0 188477 bytes_in 0 188477 station_ip 5.119.36.146 188477 port 359 188477 unique_id port 188478 username sekonji0496 188478 mac 188478 bytes_out 0 188478 bytes_in 0 188450 remote_ip 10.8.0.154 188452 username zahra1101 188452 mac 188452 bytes_out 0 188452 bytes_in 0 188452 station_ip 5.120.128.95 188452 port 374 188452 unique_id port 188452 remote_ip 10.8.0.250 188455 username sekonji0496 188455 mac 188455 bytes_out 0 188455 bytes_in 0 188455 station_ip 83.123.0.241 188455 port 373 188455 unique_id port 188455 remote_ip 10.8.0.62 188459 username sabaghnezhad 188459 mac 188459 bytes_out 422978 188459 bytes_in 2182505 188459 station_ip 46.51.17.139 188459 port 350 188459 unique_id port 188459 remote_ip 10.8.0.66 188460 username sabaghnezhad 188460 kill_reason Maximum check online fails reached 188460 mac 188460 bytes_out 0 188460 bytes_in 0 188460 station_ip 46.51.17.139 188460 port 373 188460 unique_id port 188462 username sekonji0496 188462 mac 188462 bytes_out 0 188462 bytes_in 0 188462 station_ip 83.123.0.241 188462 port 350 188462 unique_id port 188462 remote_ip 10.8.0.62 188464 username sekonji0496 188464 mac 188464 bytes_out 0 188464 bytes_in 0 188464 station_ip 83.123.0.241 188464 port 374 188464 unique_id port 188464 remote_ip 10.8.0.62 188465 username zahra1101 188465 kill_reason Maximum check online fails reached 188465 mac 188465 bytes_out 0 188465 bytes_in 0 188465 station_ip 5.120.128.95 188465 port 350 188465 unique_id port 188467 username alikomsari 188467 mac 188467 bytes_out 0 188467 bytes_in 0 188467 station_ip 5.120.119.89 188467 port 348 188467 unique_id port 188470 username sekonji0496 188470 mac 188470 bytes_out 0 188470 bytes_in 0 188470 station_ip 83.123.0.241 188470 port 374 188470 unique_id port 188470 remote_ip 10.8.0.62 188472 username aminvpn 188472 kill_reason Another user logged on this global unique id 188472 mac 188472 bytes_out 0 188472 bytes_in 0 188472 station_ip 5.119.36.146 188472 port 359 188472 unique_id port 188480 username zahra1101 188480 mac 188480 bytes_out 0 188480 bytes_in 0 188480 station_ip 5.120.128.95 188480 port 374 188480 unique_id port 188480 remote_ip 10.8.0.250 188484 username zahra1101 188484 kill_reason Maximum check online fails reached 188484 mac 188484 bytes_out 0 188484 bytes_in 0 188484 station_ip 5.120.128.95 188484 port 374 188484 unique_id port 188493 username zahra1101 188493 kill_reason Maximum check online fails reached 188493 mac 188493 bytes_out 0 188493 bytes_in 0 188493 station_ip 5.120.128.95 188493 port 375 188493 unique_id port 188495 username sekonji0496 188495 mac 188495 bytes_out 0 188495 bytes_in 0 188495 station_ip 83.123.0.241 188495 port 376 188495 unique_id port 188495 remote_ip 10.8.0.62 188498 username zahra1101 188498 mac 188498 bytes_out 0 188498 bytes_in 0 188498 station_ip 5.120.128.95 188498 port 377 188498 unique_id port 188498 remote_ip 10.8.0.250 188499 username zahra1101 188499 kill_reason Maximum check online fails reached 188499 mac 188499 bytes_out 0 188499 bytes_in 0 188499 station_ip 5.120.128.95 188499 port 376 188499 unique_id port 188507 username sekonji0496 188507 mac 188507 bytes_out 2070 188507 bytes_in 4531 188507 station_ip 83.123.0.241 188507 port 378 188507 unique_id port 188507 remote_ip 10.8.0.62 188509 username aminvpn 188509 kill_reason Another user logged on this global unique id 188509 mac 188509 bytes_out 0 188509 bytes_in 0 188509 station_ip 5.119.36.146 188509 port 377 188509 unique_id port 188509 remote_ip 10.8.0.58 188510 username farhad3 188510 mac 188510 bytes_out 0 188510 bytes_in 0 188510 station_ip 5.119.194.76 188510 port 337 188510 unique_id port 188458 mac 188458 bytes_out 0 188458 bytes_in 0 188458 station_ip 5.120.128.95 188458 port 374 188458 unique_id port 188458 remote_ip 10.8.0.250 188463 username shadkam 188463 mac 188463 bytes_out 0 188463 bytes_in 0 188463 station_ip 5.202.6.36 188463 port 374 188463 unique_id port 188463 remote_ip 10.8.0.74 188466 username sekonji0496 188466 mac 188466 bytes_out 0 188466 bytes_in 0 188466 station_ip 83.123.0.241 188466 port 374 188466 unique_id port 188466 remote_ip 10.8.0.62 188468 username sekonji0496 188468 mac 188468 bytes_out 0 188468 bytes_in 0 188468 station_ip 83.123.0.241 188468 port 374 188468 unique_id port 188468 remote_ip 10.8.0.62 188469 username zahra1101 188469 mac 188469 bytes_out 0 188469 bytes_in 0 188469 station_ip 5.120.128.95 188469 port 348 188469 unique_id port 188469 remote_ip 10.8.0.250 188474 username zahra1101 188474 mac 188474 bytes_out 0 188474 bytes_in 0 188474 station_ip 5.120.128.95 188474 port 348 188474 unique_id port 188474 remote_ip 10.8.0.250 188476 username zahra1101 188476 kill_reason Maximum check online fails reached 188476 mac 188476 bytes_out 0 188476 bytes_in 0 188476 station_ip 5.120.128.95 188476 port 348 188476 unique_id port 188491 username zahra1101 188491 mac 188491 bytes_out 0 188491 bytes_in 0 188491 station_ip 5.120.128.95 188491 port 359 188491 unique_id port 188491 remote_ip 10.8.0.250 188494 username zahra1101 188494 kill_reason Maximum check online fails reached 188494 mac 188494 bytes_out 0 188494 bytes_in 0 188494 station_ip 5.120.128.95 188494 port 359 188494 unique_id port 188500 username zahra1101 188500 mac 188500 bytes_out 0 188500 bytes_in 0 188500 station_ip 5.120.128.95 188500 port 377 188500 unique_id port 188500 remote_ip 10.8.0.250 188502 username zahra1101 188502 mac 188502 bytes_out 0 188502 bytes_in 0 188502 station_ip 5.120.128.95 188502 port 377 188502 unique_id port 188502 remote_ip 10.8.0.250 188505 username zahra1101 188505 mac 188505 bytes_out 0 188505 bytes_in 0 188505 station_ip 5.120.128.95 188505 port 378 188505 unique_id port 188505 remote_ip 10.8.0.250 188506 username farhad3 188506 kill_reason Another user logged on this global unique id 188506 mac 188506 bytes_out 0 188506 bytes_in 0 188506 station_ip 5.119.194.76 188506 port 337 188506 unique_id port 188508 username soleymani5056 188508 mac 188508 bytes_out 499211 188508 bytes_in 4361161 188508 station_ip 5.119.199.81 188508 port 333 188508 unique_id port 188508 remote_ip 10.8.0.226 188511 username zahra1101 188511 mac 188511 bytes_out 0 188511 bytes_in 0 188511 station_ip 5.120.128.95 188511 port 333 188511 unique_id port 188511 remote_ip 10.8.0.250 188512 username soleymani5056 188512 mac 188512 bytes_out 308019 188512 bytes_in 301030 188512 station_ip 5.120.93.105 188512 port 379 188512 unique_id port 188512 remote_ip 10.8.0.226 188513 username zahra1101 188513 kill_reason Maximum check online fails reached 188513 mac 188513 bytes_out 0 188513 bytes_in 0 188513 station_ip 5.120.128.95 188513 port 333 188513 unique_id port 188515 username aminvpn 188515 kill_reason Another user logged on this global unique id 188515 mac 188515 bytes_out 0 188515 bytes_in 0 188515 station_ip 5.119.36.146 188515 port 377 188515 unique_id port 188522 username farhad3 188522 mac 188522 bytes_out 1602007 188522 bytes_in 19545285 188522 station_ip 5.119.194.76 188522 port 337 188522 unique_id port 188522 remote_ip 10.8.0.222 188523 username zahra1101 188574 port 384 188478 station_ip 83.123.0.241 188478 port 374 188478 unique_id port 188478 remote_ip 10.8.0.62 188479 username sekonji0496 188479 mac 188479 bytes_out 0 188479 bytes_in 0 188479 station_ip 83.123.0.241 188479 port 374 188479 unique_id port 188479 remote_ip 10.8.0.62 188481 username sekonji0496 188481 mac 188481 bytes_out 0 188481 bytes_in 0 188481 station_ip 83.123.0.241 188481 port 374 188481 unique_id port 188481 remote_ip 10.8.0.62 188482 username sekonji0496 188482 mac 188482 bytes_out 0 188482 bytes_in 0 188482 station_ip 83.123.0.241 188482 port 374 188482 unique_id port 188482 remote_ip 10.8.0.62 188483 username aminvpn 188483 kill_reason Another user logged on this global unique id 188483 mac 188483 bytes_out 0 188483 bytes_in 0 188483 station_ip 5.119.36.146 188483 port 359 188483 unique_id port 188485 username sekonji0496 188485 mac 188485 bytes_out 0 188485 bytes_in 0 188485 station_ip 83.123.0.241 188485 port 375 188485 unique_id port 188485 remote_ip 10.8.0.62 188486 username zahra1101 188486 mac 188486 bytes_out 0 188486 bytes_in 0 188486 station_ip 5.120.128.95 188486 port 375 188486 unique_id port 188486 remote_ip 10.8.0.250 188487 username zahra1101 188487 mac 188487 bytes_out 0 188487 bytes_in 0 188487 station_ip 5.120.128.95 188487 port 375 188487 unique_id port 188487 remote_ip 10.8.0.250 188488 username zahra1101 188488 mac 188488 bytes_out 0 188488 bytes_in 0 188488 station_ip 5.120.128.95 188488 port 375 188488 unique_id port 188488 remote_ip 10.8.0.250 188489 username aminvpn 188489 mac 188489 bytes_out 0 188489 bytes_in 0 188489 station_ip 5.119.36.146 188489 port 359 188489 unique_id port 188490 username sekonji0496 188490 mac 188490 bytes_out 0 188490 bytes_in 0 188490 station_ip 83.123.0.241 188490 port 359 188490 unique_id port 188490 remote_ip 10.8.0.62 188492 username zahra1101 188492 mac 188492 bytes_out 0 188492 bytes_in 0 188492 station_ip 5.120.128.95 188492 port 359 188492 unique_id port 188492 remote_ip 10.8.0.250 188496 username zahra1101 188496 mac 188496 bytes_out 0 188496 bytes_in 0 188496 station_ip 5.120.128.95 188496 port 376 188496 unique_id port 188496 remote_ip 10.8.0.250 188497 username milan 188497 kill_reason Another user logged on this global unique id 188497 mac 188497 bytes_out 0 188497 bytes_in 0 188497 station_ip 5.119.23.34 188497 port 333 188497 unique_id port 188501 username milan 188501 mac 188501 bytes_out 0 188501 bytes_in 0 188501 station_ip 5.119.23.34 188501 port 333 188501 unique_id port 188503 username sekonji0496 188503 mac 188503 bytes_out 0 188503 bytes_in 0 188503 station_ip 83.123.0.241 188503 port 378 188503 unique_id port 188503 remote_ip 10.8.0.62 188504 username sekonji0496 188504 mac 188504 bytes_out 0 188504 bytes_in 0 188504 station_ip 83.123.0.241 188504 port 378 188504 unique_id port 188504 remote_ip 10.8.0.62 188514 username sekonji0496 188514 mac 188514 bytes_out 0 188514 bytes_in 0 188514 station_ip 83.123.0.241 188514 port 337 188514 unique_id port 188514 remote_ip 10.8.0.62 188516 username zahra1101 188516 mac 188516 bytes_out 0 188516 bytes_in 0 188516 station_ip 5.120.128.95 188516 port 337 188516 unique_id port 188516 remote_ip 10.8.0.250 188517 username zahra1101 188517 kill_reason Maximum check online fails reached 188517 mac 188517 bytes_out 0 188517 bytes_in 0 188517 station_ip 5.120.128.95 188517 port 378 188517 unique_id port 188519 username sekonji0496 188518 username zahra1101 188518 mac 188518 bytes_out 0 188518 bytes_in 0 188518 station_ip 5.120.128.95 188518 port 380 188518 unique_id port 188518 remote_ip 10.8.0.250 188520 username aminvpn 188520 kill_reason Another user logged on this global unique id 188520 mac 188520 bytes_out 0 188520 bytes_in 0 188520 station_ip 5.119.36.146 188520 port 377 188520 unique_id port 188521 username zahra1101 188521 mac 188521 bytes_out 0 188521 bytes_in 0 188521 station_ip 5.120.128.95 188521 port 381 188521 unique_id port 188521 remote_ip 10.8.0.250 188529 username zahra1101 188529 mac 188529 bytes_out 0 188529 bytes_in 0 188529 station_ip 5.120.128.95 188529 port 383 188529 unique_id port 188529 remote_ip 10.8.0.250 188530 username zahra1101 188530 mac 188530 bytes_out 0 188530 bytes_in 0 188530 station_ip 5.120.128.95 188530 port 383 188530 unique_id port 188530 remote_ip 10.8.0.250 188531 username sekonji0496 188531 mac 188531 bytes_out 0 188531 bytes_in 0 188531 station_ip 83.123.0.241 188531 port 383 188531 unique_id port 188531 remote_ip 10.8.0.62 188532 username sekonji0496 188532 mac 188532 bytes_out 0 188532 bytes_in 0 188532 station_ip 83.123.0.241 188532 port 383 188532 unique_id port 188532 remote_ip 10.8.0.62 188533 username zahra1101 188533 mac 188533 bytes_out 0 188533 bytes_in 0 188533 station_ip 5.120.128.95 188533 port 384 188533 unique_id port 188533 remote_ip 10.8.0.250 188537 username zahra1101 188537 mac 188537 bytes_out 0 188537 bytes_in 0 188537 station_ip 5.120.128.95 188537 port 383 188537 unique_id port 188537 remote_ip 10.8.0.250 188539 username farhad3 188539 kill_reason Another user logged on this global unique id 188539 mac 188539 bytes_out 0 188539 bytes_in 0 188539 station_ip 5.119.194.76 188539 port 337 188539 unique_id port 188539 remote_ip 10.8.0.222 188540 username sekonji0496 188540 mac 188540 bytes_out 0 188540 bytes_in 0 188540 station_ip 83.123.0.241 188540 port 383 188540 unique_id port 188540 remote_ip 10.8.0.62 188552 username zahra1101 188552 kill_reason Another user logged on this global unique id 188552 mac 188552 bytes_out 0 188552 bytes_in 0 188552 station_ip 5.120.128.95 188552 port 377 188552 unique_id port 188557 username farhad3 188557 mac 188557 bytes_out 60600 188557 bytes_in 103270 188557 station_ip 5.119.194.76 188557 port 337 188557 unique_id port 188557 remote_ip 10.8.0.222 188561 username zahra1101 188561 kill_reason Maximum check online fails reached 188561 mac 188561 bytes_out 0 188561 bytes_in 0 188561 station_ip 5.120.128.95 188561 port 377 188561 unique_id port 188571 username mirzaei6046 188571 kill_reason Another user logged on this global unique id 188571 mac 188571 bytes_out 0 188571 bytes_in 0 188571 station_ip 5.119.205.40 188571 port 379 188571 unique_id port 188572 username zahra1101 188572 mac 188572 bytes_out 0 188572 bytes_in 0 188572 station_ip 5.120.128.95 188572 port 337 188572 unique_id port 188572 remote_ip 10.8.0.250 188573 username zahra1101 188573 mac 188573 bytes_out 0 188573 bytes_in 0 188573 station_ip 5.120.128.95 188573 port 337 188573 unique_id port 188573 remote_ip 10.8.0.250 188581 username zahra1101 188581 kill_reason Maximum check online fails reached 188581 mac 188581 bytes_out 0 188581 bytes_in 0 188581 station_ip 5.120.128.95 188581 port 384 188581 unique_id port 188582 username zahra1101 188582 kill_reason Maximum check online fails reached 188582 mac 188582 bytes_out 0 188582 bytes_in 0 188582 station_ip 5.120.128.95 188582 port 385 188519 mac 188519 bytes_out 0 188519 bytes_in 0 188519 station_ip 83.123.0.241 188519 port 380 188519 unique_id port 188519 remote_ip 10.8.0.62 188525 username zahra1101 188525 kill_reason Maximum check online fails reached 188525 mac 188525 bytes_out 0 188525 bytes_in 0 188525 station_ip 5.120.128.95 188525 port 381 188525 unique_id port 188527 username sekonji0496 188527 mac 188527 bytes_out 0 188527 bytes_in 0 188527 station_ip 83.123.0.241 188527 port 383 188527 unique_id port 188527 remote_ip 10.8.0.62 188535 username sekonji0496 188535 mac 188535 bytes_out 0 188535 bytes_in 0 188535 station_ip 83.123.0.241 188535 port 383 188535 unique_id port 188535 remote_ip 10.8.0.62 188536 username zahra1101 188536 mac 188536 bytes_out 0 188536 bytes_in 0 188536 station_ip 5.120.128.95 188536 port 383 188536 unique_id port 188536 remote_ip 10.8.0.250 188538 username sekonji0496 188538 mac 188538 bytes_out 0 188538 bytes_in 0 188538 station_ip 83.123.0.241 188538 port 383 188538 unique_id port 188538 remote_ip 10.8.0.62 188541 username sekonji0496 188541 mac 188541 bytes_out 0 188541 bytes_in 0 188541 station_ip 83.123.0.241 188541 port 383 188541 unique_id port 188541 remote_ip 10.8.0.62 188542 username sekonji0496 188542 mac 188542 bytes_out 0 188542 bytes_in 0 188542 station_ip 83.123.0.241 188542 port 383 188542 unique_id port 188542 remote_ip 10.8.0.62 188544 username sekonji0496 188544 mac 188544 bytes_out 0 188544 bytes_in 0 188544 station_ip 83.123.0.241 188544 port 383 188544 unique_id port 188544 remote_ip 10.8.0.62 188546 username zahra1101 188546 mac 188546 bytes_out 0 188546 bytes_in 0 188546 station_ip 5.120.128.95 188546 port 383 188546 unique_id port 188546 remote_ip 10.8.0.250 188549 username aminvpn 188549 mac 188549 bytes_out 0 188549 bytes_in 0 188549 station_ip 5.119.36.146 188549 port 377 188549 unique_id port 188553 username zahra1101 188553 kill_reason Maximum check online fails reached 188553 mac 188553 bytes_out 0 188553 bytes_in 0 188553 station_ip 5.120.128.95 188553 port 377 188553 unique_id port 188558 username zahra1101 188558 mac 188558 bytes_out 0 188558 bytes_in 0 188558 station_ip 5.120.128.95 188558 port 337 188558 unique_id port 188558 remote_ip 10.8.0.250 188560 username mirzaei6046 188560 kill_reason Another user logged on this global unique id 188560 mac 188560 bytes_out 0 188560 bytes_in 0 188560 station_ip 5.119.205.40 188560 port 379 188560 unique_id port 188562 username zahra1101 188562 mac 188562 bytes_out 0 188562 bytes_in 0 188562 station_ip 5.120.128.95 188562 port 384 188562 unique_id port 188562 remote_ip 10.8.0.250 188563 username sekonji0496 188563 mac 188563 bytes_out 0 188563 bytes_in 0 188563 station_ip 83.123.0.241 188563 port 384 188563 unique_id port 188563 remote_ip 10.8.0.62 188566 username zahra1101 188566 mac 188566 bytes_out 0 188566 bytes_in 0 188566 station_ip 5.120.128.95 188566 port 384 188566 unique_id port 188566 remote_ip 10.8.0.250 188569 username farhad3 188569 mac 188569 bytes_out 82784 188569 bytes_in 240897 188569 station_ip 5.119.194.76 188569 port 337 188569 unique_id port 188569 remote_ip 10.8.0.222 188570 username zahra1101 188570 mac 188570 bytes_out 1993 188570 bytes_in 3849 188570 station_ip 5.120.128.95 188570 port 384 188570 unique_id port 188570 remote_ip 10.8.0.250 188574 username sekonji0496 188574 mac 188574 bytes_out 0 188574 bytes_in 0 188574 station_ip 83.123.0.241 188523 kill_reason Maximum check online fails reached 188523 mac 188523 bytes_out 0 188523 bytes_in 0 188523 station_ip 5.120.128.95 188523 port 380 188523 unique_id port 188524 username zahra1101 188524 mac 188524 bytes_out 0 188524 bytes_in 0 188524 station_ip 5.120.128.95 188524 port 381 188524 unique_id port 188524 remote_ip 10.8.0.250 188526 username zahra1101 188526 mac 188526 bytes_out 0 188526 bytes_in 0 188526 station_ip 5.120.128.95 188526 port 384 188526 unique_id port 188526 remote_ip 10.8.0.250 188528 username zahra1101 188528 kill_reason Maximum check online fails reached 188528 mac 188528 bytes_out 0 188528 bytes_in 0 188528 station_ip 5.120.128.95 188528 port 382 188528 unique_id port 188534 username sekonji0496 188534 mac 188534 bytes_out 0 188534 bytes_in 0 188534 station_ip 83.123.0.241 188534 port 383 188534 unique_id port 188534 remote_ip 10.8.0.62 188543 username sekonji0496 188543 mac 188543 bytes_out 0 188543 bytes_in 0 188543 station_ip 83.123.0.241 188543 port 383 188543 unique_id port 188543 remote_ip 10.8.0.62 188545 username sekonji0496 188545 mac 188545 bytes_out 0 188545 bytes_in 0 188545 station_ip 83.123.0.241 188545 port 383 188545 unique_id port 188545 remote_ip 10.8.0.62 188547 username zahra1101 188547 mac 188547 bytes_out 0 188547 bytes_in 0 188547 station_ip 5.120.128.95 188547 port 383 188547 unique_id port 188547 remote_ip 10.8.0.250 188548 username zahra1101 188548 mac 188548 bytes_out 0 188548 bytes_in 0 188548 station_ip 5.120.128.95 188548 port 383 188548 unique_id port 188548 remote_ip 10.8.0.250 188550 username sekonji0496 188550 mac 188550 bytes_out 0 188550 bytes_in 0 188550 station_ip 83.123.0.241 188550 port 377 188550 unique_id port 188550 remote_ip 10.8.0.62 188551 username zahra1101 188551 mac 188551 bytes_out 0 188551 bytes_in 0 188551 station_ip 5.120.128.95 188551 port 377 188551 unique_id port 188551 remote_ip 10.8.0.250 188554 username farhad3 188554 mac 188554 bytes_out 0 188554 bytes_in 0 188554 station_ip 5.119.194.76 188554 port 337 188554 unique_id port 188555 username mirzaei6046 188555 kill_reason Another user logged on this global unique id 188555 mac 188555 bytes_out 0 188555 bytes_in 0 188555 station_ip 5.119.205.40 188555 port 379 188555 unique_id port 188555 remote_ip 10.8.0.90 188556 username sekonji0496 188556 mac 188556 bytes_out 0 188556 bytes_in 0 188556 station_ip 83.123.0.241 188556 port 377 188556 unique_id port 188556 remote_ip 10.8.0.62 188559 username zahra1101 188559 mac 188559 bytes_out 0 188559 bytes_in 0 188559 station_ip 5.120.128.95 188559 port 383 188559 unique_id port 188559 remote_ip 10.8.0.250 188564 username sekonji0496 188564 mac 188564 bytes_out 0 188564 bytes_in 0 188564 station_ip 83.123.0.241 188564 port 384 188564 unique_id port 188564 remote_ip 10.8.0.62 188565 username sekonji0496 188565 mac 188565 bytes_out 0 188565 bytes_in 0 188565 station_ip 83.123.0.241 188565 port 385 188565 unique_id port 188565 remote_ip 10.8.0.62 188567 username sekonji0496 188567 mac 188567 bytes_out 0 188567 bytes_in 0 188567 station_ip 83.123.0.241 188567 port 384 188567 unique_id port 188567 remote_ip 10.8.0.62 188568 username farhad3 188568 mac 188568 bytes_out 314623 188568 bytes_in 658611 188568 station_ip 5.119.194.76 188568 port 337 188568 unique_id port 188568 remote_ip 10.8.0.222 188575 username zahra1101 188575 mac 188575 bytes_out 0 188575 bytes_in 0 188574 unique_id port 188574 remote_ip 10.8.0.62 188589 username hajghani 188589 kill_reason Another user logged on this global unique id 188589 mac 188589 bytes_out 0 188589 bytes_in 0 188589 station_ip 5.62.198.97 188589 port 383 188589 unique_id port 188589 remote_ip 10.8.0.106 188590 username zahra1101 188590 kill_reason Another user logged on this global unique id 188590 mac 188590 bytes_out 0 188590 bytes_in 0 188590 station_ip 5.120.128.95 188590 port 386 188590 unique_id port 188595 username mirzaei6046 188595 kill_reason Another user logged on this global unique id 188595 mac 188595 bytes_out 0 188595 bytes_in 0 188595 station_ip 5.119.205.40 188595 port 379 188595 unique_id port 188597 username zahra1101 188597 mac 188597 bytes_out 0 188597 bytes_in 0 188597 station_ip 5.120.128.95 188597 port 383 188597 unique_id port 188597 remote_ip 10.8.0.250 188602 username zahra1101 188602 mac 188602 bytes_out 0 188602 bytes_in 0 188602 station_ip 5.120.128.95 188602 port 383 188602 unique_id port 188602 remote_ip 10.8.0.250 188609 username sekonji0496 188609 mac 188609 bytes_out 0 188609 bytes_in 0 188609 station_ip 83.123.0.241 188609 port 387 188609 unique_id port 188609 remote_ip 10.8.0.62 188622 username zahra1101 188622 kill_reason Maximum check online fails reached 188622 mac 188622 bytes_out 0 188622 bytes_in 0 188622 station_ip 5.120.128.95 188622 port 386 188622 unique_id port 188629 username kalantary6037 188629 mac 188629 bytes_out 1369919 188629 bytes_in 9948612 188629 station_ip 83.123.112.75 188629 port 383 188629 unique_id port 188629 remote_ip 10.8.0.50 188634 username khalili2 188634 mac 188634 bytes_out 0 188634 bytes_in 0 188634 station_ip 5.120.26.238 188634 port 360 188634 unique_id port 188639 username sekonji0496 188639 mac 188639 bytes_out 0 188639 bytes_in 0 188639 station_ip 83.123.0.241 188639 port 360 188639 unique_id port 188639 remote_ip 10.8.0.62 188718 port 396 188718 unique_id port 188718 remote_ip 10.8.0.62 188719 username zahra1101 188719 mac 188719 bytes_out 0 188719 bytes_in 0 188719 station_ip 5.120.128.95 188719 port 396 188719 unique_id port 188719 remote_ip 10.8.0.250 188723 username zahra1101 188723 mac 188723 bytes_out 0 188723 bytes_in 0 188723 station_ip 5.120.128.95 188723 port 396 188723 unique_id port 188723 remote_ip 10.8.0.250 188725 username zahra1101 188725 mac 188725 bytes_out 0 188725 bytes_in 0 188725 station_ip 5.120.128.95 188725 port 396 188725 unique_id port 188725 remote_ip 10.8.0.250 188729 username zahra1101 188729 kill_reason Maximum check online fails reached 188729 mac 188729 bytes_out 0 188729 bytes_in 0 188729 station_ip 5.120.128.95 188729 port 397 188729 unique_id port 188731 username sekonji0496 188731 mac 188731 bytes_out 0 188731 bytes_in 0 188731 station_ip 83.123.0.241 188731 port 396 188731 unique_id port 188731 remote_ip 10.8.0.62 188732 bytes_out 0 188732 bytes_in 0 188732 station_ip 5.120.128.95 188732 port 398 188732 unique_id port 188732 remote_ip 10.8.0.250 188733 username sekonji0496 188733 mac 188733 bytes_out 0 188733 bytes_in 0 188733 station_ip 83.123.0.241 188733 port 396 188733 unique_id port 188733 remote_ip 10.8.0.62 188734 username zahra1101 188734 mac 188734 bytes_out 0 188734 bytes_in 0 188734 station_ip 5.120.128.95 188734 port 396 188734 unique_id port 188734 remote_ip 10.8.0.250 188735 username zahra1101 188735 mac 188735 bytes_out 0 188735 bytes_in 0 188735 station_ip 5.120.128.95 188735 port 396 188575 station_ip 5.120.128.95 188575 port 337 188575 unique_id port 188575 remote_ip 10.8.0.250 188576 username mirzaei6046 188576 kill_reason Another user logged on this global unique id 188576 mac 188576 bytes_out 0 188576 bytes_in 0 188576 station_ip 5.119.205.40 188576 port 379 188576 unique_id port 188577 username zahra1101 188577 mac 188577 bytes_out 0 188577 bytes_in 0 188577 station_ip 5.120.128.95 188577 port 384 188577 unique_id port 188577 remote_ip 10.8.0.250 188578 username zahra1101 188578 mac 188578 bytes_out 0 188578 bytes_in 0 188578 station_ip 5.120.128.95 188578 port 384 188578 unique_id port 188578 remote_ip 10.8.0.250 188579 username sekonji0496 188579 mac 188579 bytes_out 0 188579 bytes_in 0 188579 station_ip 83.123.0.241 188579 port 384 188579 unique_id port 188579 remote_ip 10.8.0.62 188580 username zahra1101 188580 kill_reason Maximum number of concurrent logins reached 188580 mac 188580 bytes_out 0 188580 bytes_in 0 188580 station_ip 5.120.128.95 188580 port 386 188580 unique_id port 188583 username zahra1101 188583 mac 188583 bytes_out 0 188583 bytes_in 0 188583 station_ip 5.120.128.95 188583 port 386 188583 unique_id port 188583 remote_ip 10.8.0.250 188584 username zahra1101 188584 mac 188584 bytes_out 0 188584 bytes_in 0 188584 station_ip 5.120.128.95 188584 port 386 188584 unique_id port 188584 remote_ip 10.8.0.250 188585 username sekonji0496 188585 mac 188585 bytes_out 0 188585 bytes_in 0 188585 station_ip 83.123.0.241 188585 port 386 188585 unique_id port 188585 remote_ip 10.8.0.62 188587 username mirzaei6046 188587 kill_reason Another user logged on this global unique id 188587 mac 188587 bytes_out 0 188587 bytes_in 0 188587 station_ip 5.119.205.40 188587 port 379 188587 unique_id port 188591 username zahra1101 188591 mac 188591 bytes_out 0 188591 bytes_in 0 188591 station_ip 5.120.128.95 188591 port 386 188591 unique_id port 188591 remote_ip 10.8.0.250 188593 username hajghani 188593 mac 188593 bytes_out 0 188593 bytes_in 0 188593 station_ip 5.62.198.97 188593 port 383 188593 unique_id port 188594 username zahra1101 188594 mac 188594 bytes_out 0 188594 bytes_in 0 188594 station_ip 5.120.128.95 188594 port 383 188594 unique_id port 188594 remote_ip 10.8.0.250 188596 username zahra1101 188596 mac 188596 bytes_out 0 188596 bytes_in 0 188596 station_ip 5.120.128.95 188596 port 383 188596 unique_id port 188596 remote_ip 10.8.0.250 188599 username kalantary6037 188599 mac 188599 bytes_out 604411 188599 bytes_in 6545091 188599 station_ip 83.123.112.75 188599 port 386 188599 unique_id port 188599 remote_ip 10.8.0.50 188600 username zahra1101 188600 mac 188600 bytes_out 0 188600 bytes_in 0 188600 station_ip 5.120.128.95 188600 port 383 188600 unique_id port 188600 remote_ip 10.8.0.250 188603 username mirzaei6046 188603 kill_reason Another user logged on this global unique id 188603 mac 188603 bytes_out 0 188603 bytes_in 0 188603 station_ip 5.119.205.40 188603 port 379 188603 unique_id port 188604 username zahra1101 188604 mac 188604 bytes_out 0 188604 bytes_in 0 188604 station_ip 5.120.128.95 188604 port 383 188604 unique_id port 188604 remote_ip 10.8.0.250 188605 username sekonji0496 188605 mac 188605 bytes_out 0 188605 bytes_in 0 188605 station_ip 83.123.0.241 188605 port 383 188605 unique_id port 188605 remote_ip 10.8.0.62 188606 username zahra1101 188606 mac 188606 bytes_out 0 188606 bytes_in 0 188606 station_ip 5.120.128.95 188606 port 386 188582 unique_id port 188586 username sekonji0496 188586 mac 188586 bytes_out 0 188586 bytes_in 0 188586 station_ip 83.123.0.241 188586 port 386 188586 unique_id port 188586 remote_ip 10.8.0.62 188588 username zahra1101 188588 kill_reason Another user logged on this global unique id 188588 mac 188588 bytes_out 0 188588 bytes_in 0 188588 station_ip 5.120.128.95 188588 port 386 188588 unique_id port 188592 username zahra1101 188592 mac 188592 bytes_out 0 188592 bytes_in 0 188592 station_ip 5.120.128.95 188592 port 386 188592 unique_id port 188592 remote_ip 10.8.0.250 188598 username sekonji0496 188598 mac 188598 bytes_out 0 188598 bytes_in 0 188598 station_ip 83.123.0.241 188598 port 387 188598 unique_id port 188598 remote_ip 10.8.0.62 188601 username zahra1101 188601 mac 188601 bytes_out 0 188601 bytes_in 0 188601 station_ip 5.120.128.95 188601 port 383 188601 unique_id port 188601 remote_ip 10.8.0.250 188610 username zahra1101 188610 mac 188610 bytes_out 0 188610 bytes_in 0 188610 station_ip 5.120.128.95 188610 port 386 188610 unique_id port 188610 remote_ip 10.8.0.250 188613 username mirzaei6046 188613 kill_reason Another user logged on this global unique id 188613 mac 188613 bytes_out 0 188613 bytes_in 0 188613 station_ip 5.119.205.40 188613 port 379 188613 unique_id port 188615 username zahra1101 188615 mac 188615 bytes_out 0 188615 bytes_in 0 188615 station_ip 5.120.128.95 188615 port 386 188615 unique_id port 188615 remote_ip 10.8.0.250 188616 username zahra1101 188616 mac 188616 bytes_out 0 188616 bytes_in 0 188616 station_ip 5.120.128.95 188616 port 387 188616 unique_id port 188616 remote_ip 10.8.0.250 188620 username farhad3 188620 mac 188620 bytes_out 4233537 188620 bytes_in 30602815 188620 station_ip 5.120.61.225 188620 port 337 188620 unique_id port 188620 remote_ip 10.8.0.222 188621 username zahra1101 188621 mac 188621 bytes_out 0 188621 bytes_in 0 188621 station_ip 5.120.128.95 188621 port 387 188621 unique_id port 188621 remote_ip 10.8.0.250 188624 username sekonji0496 188624 mac 188624 bytes_out 0 188624 bytes_in 0 188624 station_ip 83.123.0.241 188624 port 337 188624 unique_id port 188624 remote_ip 10.8.0.62 188627 username zahra1101 188627 mac 188627 bytes_out 0 188627 bytes_in 0 188627 station_ip 5.120.128.95 188627 port 337 188627 unique_id port 188627 remote_ip 10.8.0.250 188628 username zahra1101 188628 mac 188628 bytes_out 0 188628 bytes_in 0 188628 station_ip 5.120.128.95 188628 port 337 188628 unique_id port 188628 remote_ip 10.8.0.250 188720 username zahra1101 188720 mac 188720 bytes_out 0 188720 bytes_in 0 188720 station_ip 5.120.128.95 188720 port 396 188720 unique_id port 188720 remote_ip 10.8.0.250 188721 username zahra1101 188721 mac 188721 bytes_out 0 188721 bytes_in 0 188721 station_ip 5.120.128.95 188721 port 396 188721 unique_id port 188721 remote_ip 10.8.0.250 188722 username sekonji0496 188722 mac 188722 bytes_out 0 188722 bytes_in 0 188722 station_ip 83.123.0.241 188722 port 396 188722 unique_id port 188722 remote_ip 10.8.0.62 188726 username zahra1101 188726 mac 188726 bytes_out 0 188726 bytes_in 0 188726 station_ip 5.120.128.95 188726 port 397 188726 unique_id port 188726 remote_ip 10.8.0.250 188728 username mohammadjavad 188728 mac 188728 bytes_out 0 188728 bytes_in 0 188728 station_ip 83.123.107.107 188728 port 396 188728 unique_id port 188728 remote_ip 10.8.0.110 188732 username zahra1101 188732 mac 188606 unique_id port 188606 remote_ip 10.8.0.250 188607 username mirzaei6046 188607 kill_reason Another user logged on this global unique id 188607 mac 188607 bytes_out 0 188607 bytes_in 0 188607 station_ip 5.119.205.40 188607 port 379 188607 unique_id port 188608 username zahra1101 188608 mac 188608 bytes_out 0 188608 bytes_in 0 188608 station_ip 5.120.128.95 188608 port 386 188608 unique_id port 188608 remote_ip 10.8.0.250 188611 username zahra1101 188611 mac 188611 bytes_out 0 188611 bytes_in 0 188611 station_ip 5.120.128.95 188611 port 386 188611 unique_id port 188611 remote_ip 10.8.0.250 188612 username zahra1101 188612 mac 188612 bytes_out 0 188612 bytes_in 0 188612 station_ip 5.120.128.95 188612 port 386 188612 unique_id port 188612 remote_ip 10.8.0.250 188614 username zahra1101 188614 mac 188614 bytes_out 0 188614 bytes_in 0 188614 station_ip 5.120.128.95 188614 port 386 188614 unique_id port 188614 remote_ip 10.8.0.250 188617 username sekonji0496 188617 mac 188617 bytes_out 2315 188617 bytes_in 4386 188617 station_ip 83.123.0.241 188617 port 386 188617 unique_id port 188617 remote_ip 10.8.0.62 188618 username zahra1101 188618 mac 188618 bytes_out 0 188618 bytes_in 0 188618 station_ip 5.120.128.95 188618 port 386 188618 unique_id port 188618 remote_ip 10.8.0.250 188619 username sekonji0496 188619 mac 188619 bytes_out 0 188619 bytes_in 0 188619 station_ip 83.123.0.241 188619 port 387 188619 unique_id port 188619 remote_ip 10.8.0.62 188623 username zahra1101 188623 mac 188623 bytes_out 0 188623 bytes_in 0 188623 station_ip 5.120.128.95 188623 port 337 188623 unique_id port 188623 remote_ip 10.8.0.250 188625 username sekonji0496 188625 mac 188625 bytes_out 0 188625 bytes_in 0 188625 station_ip 83.123.0.241 188625 port 337 188625 unique_id port 188625 remote_ip 10.8.0.62 188626 username zahra1101 188626 mac 188626 bytes_out 0 188626 bytes_in 0 188626 station_ip 5.120.128.95 188626 port 337 188626 unique_id port 188626 remote_ip 10.8.0.250 188630 username zahra1101 188630 mac 188630 bytes_out 0 188630 bytes_in 0 188630 station_ip 5.120.128.95 188630 port 337 188630 unique_id port 188630 remote_ip 10.8.0.250 188631 username sekonji0496 188631 mac 188631 bytes_out 0 188631 bytes_in 0 188631 station_ip 83.123.0.241 188631 port 337 188631 unique_id port 188631 remote_ip 10.8.0.62 188632 username alipour1506 188632 kill_reason Maximum check online fails reached 188632 mac 188632 bytes_out 0 188632 bytes_in 0 188632 station_ip 78.39.25.121 188632 port 366 188632 unique_id port 188633 username zahra1101 188633 mac 188633 bytes_out 0 188633 bytes_in 0 188633 station_ip 5.120.128.95 188633 port 337 188633 unique_id port 188633 remote_ip 10.8.0.250 188635 username zahra1101 188635 mac 188635 bytes_out 0 188635 bytes_in 0 188635 station_ip 5.120.128.95 188635 port 337 188635 unique_id port 188635 remote_ip 10.8.0.250 188636 username zahra1101 188636 mac 188636 bytes_out 0 188636 bytes_in 0 188636 station_ip 5.120.128.95 188636 port 337 188636 unique_id port 188636 remote_ip 10.8.0.250 188637 username sekonji0496 188637 mac 188637 bytes_out 0 188637 bytes_in 0 188637 station_ip 83.123.0.241 188637 port 337 188637 unique_id port 188637 remote_ip 10.8.0.62 188638 username zahra1101 188638 kill_reason Maximum check online fails reached 188638 mac 188638 bytes_out 0 188638 bytes_in 0 188638 station_ip 5.120.128.95 188638 port 337 188638 unique_id port 188640 username zahra1101 188640 mac 188640 bytes_out 0 188640 bytes_in 0 188640 station_ip 5.120.128.95 188640 port 360 188640 unique_id port 188640 remote_ip 10.8.0.250 188724 username sekonji0496 188724 mac 188724 bytes_out 0 188724 bytes_in 0 188724 station_ip 83.123.0.241 188724 port 397 188724 unique_id port 188724 remote_ip 10.8.0.62 188727 username mohammadjavad 188727 mac 188727 bytes_out 171486 188727 bytes_in 402037 188727 station_ip 83.123.107.107 188727 port 396 188727 unique_id port 188727 remote_ip 10.8.0.110 188730 username sekonji0496 188730 mac 188730 bytes_out 0 188730 bytes_in 0 188730 station_ip 83.123.0.241 188730 port 396 188730 unique_id port 188730 remote_ip 10.8.0.62 188735 unique_id port 188735 remote_ip 10.8.0.250 188736 username shadkam 188736 mac 188736 bytes_out 0 188736 bytes_in 0 188736 station_ip 5.202.6.36 188736 port 398 188736 unique_id port 188736 remote_ip 10.8.0.74 188737 username sekonji0496 188737 mac 188737 bytes_out 0 188737 bytes_in 0 188737 station_ip 83.123.0.241 188737 port 396 188737 unique_id port 188737 remote_ip 10.8.0.62 188738 username sekonji0496 188738 mac 188738 bytes_out 0 188738 bytes_in 0 188738 station_ip 83.123.0.241 188738 port 396 188738 unique_id port 188738 remote_ip 10.8.0.62 188739 username kalantary6037 188739 mac 188739 bytes_out 2572456 188739 bytes_in 26049788 188739 station_ip 83.123.59.219 188739 port 393 188739 unique_id port 188739 remote_ip 10.8.0.50 188740 username zahra1101 188740 mac 188740 bytes_out 0 188740 bytes_in 0 188740 station_ip 5.120.128.95 188740 port 393 188740 unique_id port 188740 remote_ip 10.8.0.250 188741 username zahra1101 188741 mac 188741 bytes_out 0 188741 bytes_in 0 188741 station_ip 5.120.128.95 188741 port 393 188741 unique_id port 188741 remote_ip 10.8.0.250 188742 username zahra1101 188742 mac 188742 bytes_out 0 188742 bytes_in 0 188742 station_ip 5.120.128.95 188742 port 393 188742 unique_id port 188742 remote_ip 10.8.0.250 188743 username zahra1101 188743 mac 188743 bytes_out 3165 188743 bytes_in 5316 188743 station_ip 5.120.128.95 188743 port 393 188743 unique_id port 188743 remote_ip 10.8.0.250 188744 username sekonji0496 188744 mac 188744 bytes_out 0 188744 bytes_in 0 188744 station_ip 83.123.0.241 188744 port 393 188744 unique_id port 188744 remote_ip 10.8.0.62 188745 username zahra1101 188745 mac 188745 bytes_out 0 188745 bytes_in 0 188745 station_ip 5.120.128.95 188745 port 393 188745 unique_id port 188745 remote_ip 10.8.0.250 188746 username zahra1101 188746 mac 188746 bytes_out 0 188746 bytes_in 0 188746 station_ip 5.120.128.95 188746 port 393 188746 unique_id port 188746 remote_ip 10.8.0.250 188747 username sekonji0496 188747 mac 188747 bytes_out 0 188747 bytes_in 0 188747 station_ip 83.123.0.241 188747 port 393 188747 unique_id port 188747 remote_ip 10.8.0.62 188748 username zahra1101 188748 mac 188748 bytes_out 0 188748 bytes_in 0 188748 station_ip 5.120.128.95 188748 port 393 188748 unique_id port 188748 remote_ip 10.8.0.250 188749 username zahra1101 188749 mac 188749 bytes_out 0 188749 bytes_in 0 188749 station_ip 5.120.128.95 188749 port 393 188749 unique_id port 188749 remote_ip 10.8.0.250 188750 username zahra1101 188750 mac 188750 bytes_out 0 188750 bytes_in 0 188750 station_ip 5.120.128.95 188750 port 396 188750 unique_id port 188750 remote_ip 10.8.0.250 188751 username mohammadjavad 188751 mac 188751 bytes_out 0 188751 bytes_in 0 188751 station_ip 83.123.107.107 188751 port 393 188751 unique_id port 188751 remote_ip 10.8.0.110 188753 username sekonji0496 188753 mac 188753 bytes_out 0 188753 bytes_in 0 188753 station_ip 83.123.0.241 188753 port 393 188753 unique_id port 188753 remote_ip 10.8.0.62 188757 username sekonji0496 188757 mac 188757 bytes_out 0 188757 bytes_in 0 188757 station_ip 83.123.0.241 188757 port 396 188757 unique_id port 188757 remote_ip 10.8.0.62 188760 username sekonji0496 188760 mac 188760 bytes_out 0 188760 bytes_in 0 188760 station_ip 83.123.0.241 188760 port 396 188760 unique_id port 188760 remote_ip 10.8.0.62 188762 username zahra1101 188762 mac 188762 bytes_out 0 188762 bytes_in 0 188762 station_ip 5.120.128.95 188762 port 393 188762 unique_id port 188762 remote_ip 10.8.0.250 188766 username zahra1101 188766 mac 188766 bytes_out 0 188766 bytes_in 0 188766 station_ip 5.120.128.95 188766 port 396 188766 unique_id port 188766 remote_ip 10.8.0.250 188770 username sekonji0496 188770 mac 188770 bytes_out 0 188770 bytes_in 0 188770 station_ip 83.123.0.241 188770 port 396 188770 unique_id port 188770 remote_ip 10.8.0.62 188771 username zahra1101 188771 mac 188771 bytes_out 0 188771 bytes_in 0 188771 station_ip 5.120.128.95 188771 port 398 188771 unique_id port 188771 remote_ip 10.8.0.250 188774 username zahra1101 188774 mac 188774 bytes_out 0 188774 bytes_in 0 188774 station_ip 5.120.128.95 188774 port 398 188774 unique_id port 188774 remote_ip 10.8.0.250 188775 username sekonji0496 188775 mac 188775 bytes_out 0 188775 bytes_in 0 188775 station_ip 83.123.0.241 188775 port 398 188775 unique_id port 188775 remote_ip 10.8.0.62 188776 username yaghobi 188776 mac 188776 bytes_out 98930 188776 bytes_in 160199 188776 station_ip 83.123.2.90 188776 port 396 188776 unique_id port 188776 remote_ip 10.8.0.138 188778 username zahra1101 188778 mac 188778 bytes_out 0 188778 bytes_in 0 188778 station_ip 5.120.128.95 188778 port 366 188778 unique_id port 188778 remote_ip 10.8.0.250 188780 username zahra1101 188780 mac 188780 bytes_out 0 188780 bytes_in 0 188780 station_ip 5.120.128.95 188780 port 396 188780 unique_id port 188780 remote_ip 10.8.0.250 188782 username sekonji0496 188782 mac 188782 bytes_out 0 188782 bytes_in 0 188782 station_ip 83.123.0.241 188782 port 396 188782 unique_id port 188782 remote_ip 10.8.0.62 188783 username sekonji0496 188783 mac 188783 bytes_out 0 188783 bytes_in 0 188783 station_ip 83.123.0.241 188783 port 396 188783 unique_id port 188783 remote_ip 10.8.0.62 188785 username zahra1101 188785 mac 188785 bytes_out 0 188785 bytes_in 0 188785 station_ip 5.120.128.95 188785 port 399 188785 unique_id port 188785 remote_ip 10.8.0.250 188790 username sekonji0496 188790 mac 188790 bytes_out 0 188790 bytes_in 0 188790 station_ip 83.123.0.241 188790 port 366 188790 unique_id port 188790 remote_ip 10.8.0.62 188791 username sekonji0496 188791 mac 188791 bytes_out 0 188791 bytes_in 0 188791 station_ip 83.123.0.241 188791 port 366 188791 unique_id port 188791 remote_ip 10.8.0.62 188793 username shadkam 188793 kill_reason Another user logged on this global unique id 188793 mac 188793 bytes_out 0 188793 bytes_in 0 188793 station_ip 5.202.19.10 188793 port 363 188793 unique_id port 188794 username zahra1101 188794 mac 188794 bytes_out 0 188794 bytes_in 0 188794 station_ip 5.120.128.95 188794 port 338 188752 username mohammadjavad 188752 mac 188752 bytes_out 0 188752 bytes_in 0 188752 station_ip 83.123.107.107 188752 port 393 188752 unique_id port 188752 remote_ip 10.8.0.110 188754 username zahra1101 188754 mac 188754 bytes_out 0 188754 bytes_in 0 188754 station_ip 5.120.128.95 188754 port 393 188754 unique_id port 188754 remote_ip 10.8.0.250 188755 username zahra1101 188755 mac 188755 bytes_out 0 188755 bytes_in 0 188755 station_ip 5.120.128.95 188755 port 393 188755 unique_id port 188755 remote_ip 10.8.0.250 188759 username mohammadjavad 188759 mac 188759 bytes_out 48363 188759 bytes_in 152408 188759 station_ip 83.123.107.107 188759 port 396 188759 unique_id port 188759 remote_ip 10.8.0.110 188761 username zahra1101 188761 mac 188761 bytes_out 279398 188761 bytes_in 917377 188761 station_ip 5.120.128.95 188761 port 393 188761 unique_id port 188761 remote_ip 10.8.0.250 188763 username zahra1101 188763 mac 188763 bytes_out 0 188763 bytes_in 0 188763 station_ip 5.120.128.95 188763 port 393 188763 unique_id port 188763 remote_ip 10.8.0.250 188764 username zahra1101 188764 mac 188764 bytes_out 0 188764 bytes_in 0 188764 station_ip 5.120.128.95 188764 port 396 188764 unique_id port 188764 remote_ip 10.8.0.250 188767 username zahra1101 188767 mac 188767 bytes_out 0 188767 bytes_in 0 188767 station_ip 5.120.128.95 188767 port 363 188767 unique_id port 188767 remote_ip 10.8.0.250 188769 username zahra1101 188769 mac 188769 bytes_out 0 188769 bytes_in 0 188769 station_ip 5.120.128.95 188769 port 363 188769 unique_id port 188769 remote_ip 10.8.0.250 188781 username shadkam 188781 kill_reason Another user logged on this global unique id 188781 mac 188781 bytes_out 0 188781 bytes_in 0 188781 station_ip 5.202.19.10 188781 port 363 188781 unique_id port 188784 username zahra1101 188784 mac 188784 bytes_out 0 188784 bytes_in 0 188784 station_ip 5.120.128.95 188784 port 396 188784 unique_id port 188784 remote_ip 10.8.0.250 188788 username sedighe 188788 mac 188788 bytes_out 289871 188788 bytes_in 1532371 188788 station_ip 83.123.38.169 188788 port 366 188788 unique_id port 188788 remote_ip 10.8.0.46 188789 username kalantary6037 188789 mac 188789 bytes_out 206657 188789 bytes_in 595300 188789 station_ip 83.123.100.71 188789 port 396 188789 unique_id port 188789 remote_ip 10.8.0.50 188792 username sekonji0496 188792 mac 188792 bytes_out 0 188792 bytes_in 0 188792 station_ip 83.123.0.241 188792 port 366 188792 unique_id port 188792 remote_ip 10.8.0.62 188795 username sekonji0496 188795 mac 188795 bytes_out 0 188795 bytes_in 0 188795 station_ip 83.123.0.241 188795 port 366 188795 unique_id port 188795 remote_ip 10.8.0.62 188803 username zahra1101 188803 mac 188803 bytes_out 0 188803 bytes_in 0 188803 station_ip 5.120.128.95 188803 port 396 188803 unique_id port 188803 remote_ip 10.8.0.250 188805 username rezaei 188805 mac 188805 bytes_out 389526 188805 bytes_in 3272927 188805 station_ip 5.119.222.93 188805 port 338 188805 unique_id port 188805 remote_ip 10.8.0.198 188806 username sekonji0496 188806 mac 188806 bytes_out 0 188806 bytes_in 0 188806 station_ip 83.123.0.241 188806 port 338 188806 unique_id port 188806 remote_ip 10.8.0.62 188811 username zahra1101 188811 mac 188811 bytes_out 0 188811 bytes_in 0 188811 station_ip 5.120.128.95 188811 port 338 188811 unique_id port 188811 remote_ip 10.8.0.250 188813 username zahra1101 188813 mac 188813 bytes_out 0 188756 username sekonji0496 188756 mac 188756 bytes_out 0 188756 bytes_in 0 188756 station_ip 83.123.0.241 188756 port 396 188756 unique_id port 188756 remote_ip 10.8.0.62 188758 username zahra1101 188758 mac 188758 bytes_out 501362 188758 bytes_in 1471733 188758 station_ip 5.120.128.95 188758 port 393 188758 unique_id port 188758 remote_ip 10.8.0.250 188765 username sekonji0496 188765 mac 188765 bytes_out 0 188765 bytes_in 0 188765 station_ip 83.123.0.241 188765 port 396 188765 unique_id port 188765 remote_ip 10.8.0.62 188768 username sekonji0496 188768 mac 188768 bytes_out 0 188768 bytes_in 0 188768 station_ip 83.123.0.241 188768 port 363 188768 unique_id port 188768 remote_ip 10.8.0.62 188772 username saeeddamghani 188772 mac 188772 bytes_out 44846 188772 bytes_in 239668 188772 station_ip 5.119.26.88 188772 port 396 188772 unique_id port 188772 remote_ip 10.8.0.122 188773 username sekonji0496 188773 mac 188773 bytes_out 0 188773 bytes_in 0 188773 station_ip 83.123.0.241 188773 port 396 188773 unique_id port 188773 remote_ip 10.8.0.62 188777 username shadkam 188777 kill_reason Another user logged on this global unique id 188777 mac 188777 bytes_out 0 188777 bytes_in 0 188777 station_ip 5.202.19.10 188777 port 363 188777 unique_id port 188777 remote_ip 10.8.0.74 188779 username sekonji0496 188779 mac 188779 bytes_out 0 188779 bytes_in 0 188779 station_ip 83.123.0.241 188779 port 396 188779 unique_id port 188779 remote_ip 10.8.0.62 188786 username sekonji0496 188786 mac 188786 bytes_out 0 188786 bytes_in 0 188786 station_ip 83.123.0.241 188786 port 396 188786 unique_id port 188786 remote_ip 10.8.0.62 188787 username zahra1101 188787 kill_reason Maximum check online fails reached 188787 mac 188787 bytes_out 0 188787 bytes_in 0 188787 station_ip 5.120.128.95 188787 port 398 188787 unique_id port 188797 username shadkam 188797 kill_reason Another user logged on this global unique id 188797 mac 188797 bytes_out 0 188797 bytes_in 0 188797 station_ip 5.202.19.10 188797 port 363 188797 unique_id port 188799 username zahra1101 188799 mac 188799 bytes_out 0 188799 bytes_in 0 188799 station_ip 5.120.128.95 188799 port 338 188799 unique_id port 188799 remote_ip 10.8.0.250 188800 username sekonji0496 188800 mac 188800 bytes_out 0 188800 bytes_in 0 188800 station_ip 83.123.0.241 188800 port 338 188800 unique_id port 188800 remote_ip 10.8.0.62 188801 username zahra1101 188801 mac 188801 bytes_out 0 188801 bytes_in 0 188801 station_ip 5.120.128.95 188801 port 338 188801 unique_id port 188801 remote_ip 10.8.0.250 188804 username sekonji0496 188804 mac 188804 bytes_out 0 188804 bytes_in 0 188804 station_ip 83.123.0.241 188804 port 396 188804 unique_id port 188804 remote_ip 10.8.0.62 188808 username shadkam 188808 kill_reason Another user logged on this global unique id 188808 mac 188808 bytes_out 0 188808 bytes_in 0 188808 station_ip 5.202.19.10 188808 port 363 188808 unique_id port 188809 username sekonji0496 188809 mac 188809 bytes_out 0 188809 bytes_in 0 188809 station_ip 83.123.0.241 188809 port 338 188809 unique_id port 188809 remote_ip 10.8.0.62 188810 username zahra1101 188810 mac 188810 bytes_out 0 188810 bytes_in 0 188810 station_ip 5.120.128.95 188810 port 338 188810 unique_id port 188810 remote_ip 10.8.0.250 188812 username alikomsari 188812 kill_reason Another user logged on this global unique id 188812 mac 188812 bytes_out 0 188812 bytes_in 0 188812 station_ip 5.120.119.89 188812 port 393 188812 unique_id port 188794 unique_id port 188794 remote_ip 10.8.0.250 188796 username zahra1101 188796 mac 188796 bytes_out 0 188796 bytes_in 0 188796 station_ip 5.120.128.95 188796 port 338 188796 unique_id port 188796 remote_ip 10.8.0.250 188798 username sekonji0496 188798 mac 188798 bytes_out 0 188798 bytes_in 0 188798 station_ip 83.123.0.241 188798 port 338 188798 unique_id port 188798 remote_ip 10.8.0.62 188802 username zahra1101 188802 mac 188802 bytes_out 0 188802 bytes_in 0 188802 station_ip 5.120.128.95 188802 port 338 188802 unique_id port 188802 remote_ip 10.8.0.250 188807 username zahra1101 188807 mac 188807 bytes_out 0 188807 bytes_in 0 188807 station_ip 5.120.128.95 188807 port 338 188807 unique_id port 188807 remote_ip 10.8.0.250 188814 username sekonji0496 188814 mac 188814 bytes_out 0 188814 bytes_in 0 188814 station_ip 83.123.0.241 188814 port 396 188814 unique_id port 188814 remote_ip 10.8.0.62 188817 username dortaj3792 188817 mac 188817 bytes_out 0 188817 bytes_in 0 188817 station_ip 5.119.112.48 188817 port 399 188817 unique_id port 188817 remote_ip 10.8.0.102 188819 username shadkam 188819 kill_reason Another user logged on this global unique id 188819 mac 188819 bytes_out 0 188819 bytes_in 0 188819 station_ip 5.202.19.10 188819 port 363 188819 unique_id port 188820 username zahra1101 188820 mac 188820 bytes_out 0 188820 bytes_in 0 188820 station_ip 5.120.128.95 188820 port 396 188820 unique_id port 188820 remote_ip 10.8.0.250 188822 username yaghobi 188822 mac 188822 bytes_out 299293 188822 bytes_in 608511 188822 station_ip 83.123.97.155 188822 port 338 188822 unique_id port 188822 remote_ip 10.8.0.138 188827 username shadkam 188827 kill_reason Another user logged on this global unique id 188827 mac 188827 bytes_out 0 188827 bytes_in 0 188827 station_ip 5.202.19.10 188827 port 363 188827 unique_id port 188828 username zahra1101 188828 mac 188828 bytes_out 0 188828 bytes_in 0 188828 station_ip 5.120.128.95 188828 port 350 188828 unique_id port 188828 remote_ip 10.8.0.250 188831 username pourshad 188831 kill_reason Another user logged on this global unique id 188831 mac 188831 bytes_out 0 188831 bytes_in 0 188831 station_ip 5.120.215.224 188831 port 349 188831 unique_id port 188833 username zahra1101 188833 mac 188833 bytes_out 1650 188833 bytes_in 3989 188833 station_ip 5.120.128.95 188833 port 350 188833 unique_id port 188833 remote_ip 10.8.0.250 188840 username pourshad 188840 mac 188840 bytes_out 0 188840 bytes_in 0 188840 station_ip 5.120.215.224 188840 port 349 188840 unique_id port 188841 username godarzi 188841 kill_reason Another user logged on this global unique id 188841 mac 188841 bytes_out 0 188841 bytes_in 0 188841 station_ip 5.120.167.53 188841 port 338 188841 unique_id port 188841 remote_ip 10.8.0.38 188843 username zahra1101 188843 mac 188843 bytes_out 0 188843 bytes_in 0 188843 station_ip 5.120.128.95 188843 port 350 188843 unique_id port 188843 remote_ip 10.8.0.250 188845 username kalantary6037 188845 mac 188845 bytes_out 43134 188845 bytes_in 56122 188845 station_ip 83.123.6.156 188845 port 350 188845 unique_id port 188845 remote_ip 10.8.0.50 188848 username aminvpn 188848 unique_id port 188848 terminate_cause User-Request 188848 bytes_out 387608 188848 bytes_in 3631357 188848 station_ip 5.120.23.7 188848 port 15729109 188848 nas_port_type Virtual 188848 remote_ip 5.5.5.97 188849 username zahra1101 188849 mac 188849 bytes_out 0 188849 bytes_in 0 188849 station_ip 5.120.128.95 188812 remote_ip 10.8.0.214 188816 username sekonji0496 188816 mac 188816 bytes_out 0 188816 bytes_in 0 188816 station_ip 83.123.0.241 188816 port 399 188816 unique_id port 188816 remote_ip 10.8.0.62 188821 username sekonji0496 188821 mac 188821 bytes_out 101313 188821 bytes_in 1280648 188821 station_ip 83.123.0.241 188821 port 399 188821 unique_id port 188821 remote_ip 10.8.0.62 188826 username zahra1101 188826 mac 188826 bytes_out 0 188826 bytes_in 0 188826 station_ip 5.120.128.95 188826 port 338 188826 unique_id port 188826 remote_ip 10.8.0.250 188829 username zahra1101 188829 mac 188829 bytes_out 0 188829 bytes_in 0 188829 station_ip 5.120.128.95 188829 port 338 188829 unique_id port 188829 remote_ip 10.8.0.250 188832 username dortaj3792 188832 mac 188832 bytes_out 936039 188832 bytes_in 2335280 188832 station_ip 5.119.112.48 188832 port 400 188832 unique_id port 188832 remote_ip 10.8.0.102 188835 username mirzaei6046 188835 kill_reason Another user logged on this global unique id 188835 mac 188835 bytes_out 0 188835 bytes_in 0 188835 station_ip 5.119.205.40 188835 port 379 188835 unique_id port 188838 username zahra1101 188838 mac 188838 bytes_out 0 188838 bytes_in 0 188838 station_ip 5.120.128.95 188838 port 366 188838 unique_id port 188838 remote_ip 10.8.0.250 188844 username pourshad 188844 mac 188844 bytes_out 17651 188844 bytes_in 24751 188844 station_ip 5.120.215.224 188844 port 349 188844 unique_id port 188844 remote_ip 10.8.0.42 188847 username alikomsari 188847 mac 188847 bytes_out 0 188847 bytes_in 0 188847 station_ip 5.120.119.89 188847 port 393 188847 unique_id port 188851 username shahruz 188851 mac 188851 bytes_out 0 188851 bytes_in 0 188851 station_ip 5.210.15.31 188851 port 349 188851 unique_id port 188851 remote_ip 10.8.0.146 188853 username pourshad 188853 mac 188853 bytes_out 52657 188853 bytes_in 109547 188853 station_ip 5.120.215.224 188853 port 350 188853 unique_id port 188853 remote_ip 10.8.0.42 188856 username shahruz 188856 mac 188856 bytes_out 2067 188856 bytes_in 4392 188856 station_ip 5.210.15.31 188856 port 399 188856 unique_id port 188856 remote_ip 10.8.0.146 188857 username shadkam 188857 mac 188857 bytes_out 0 188857 bytes_in 0 188857 station_ip 5.202.19.10 188857 port 363 188857 unique_id port 188858 username zahra1101 188858 mac 188858 bytes_out 2059 188858 bytes_in 4720 188858 station_ip 5.120.128.95 188858 port 350 188858 unique_id port 188858 remote_ip 10.8.0.250 188860 username aminvpn 188860 mac 188860 bytes_out 0 188860 bytes_in 0 188860 station_ip 5.119.36.146 188860 port 350 188860 unique_id port 188860 remote_ip 10.8.0.58 188863 username zahra1101 188863 mac 188863 bytes_out 0 188863 bytes_in 0 188863 station_ip 5.120.128.95 188863 port 363 188863 unique_id port 188863 remote_ip 10.8.0.250 188869 username aminvpn 188869 mac 188869 bytes_out 0 188869 bytes_in 0 188869 station_ip 83.123.48.149 188869 port 399 188869 unique_id port 188869 remote_ip 10.8.0.58 188871 username shadkam 188871 mac 188871 bytes_out 0 188871 bytes_in 0 188871 station_ip 5.202.19.10 188871 port 399 188871 unique_id port 188871 remote_ip 10.8.0.74 188872 username aminvpn 188872 mac 188872 bytes_out 0 188872 bytes_in 0 188872 station_ip 5.119.36.146 188872 port 363 188872 unique_id port 188872 remote_ip 10.8.0.58 188876 username aminvpn 188876 mac 188876 bytes_out 0 188876 bytes_in 0 188813 bytes_in 0 188813 station_ip 5.120.128.95 188813 port 338 188813 unique_id port 188813 remote_ip 10.8.0.250 188815 username sekonji0496 188815 mac 188815 bytes_out 0 188815 bytes_in 0 188815 station_ip 83.123.0.241 188815 port 399 188815 unique_id port 188815 remote_ip 10.8.0.62 188818 username mohammadjavad 188818 mac 188818 bytes_out 578626 188818 bytes_in 4912807 188818 station_ip 83.123.73.161 188818 port 396 188818 unique_id port 188818 remote_ip 10.8.0.110 188823 username hosseine 188823 mac 188823 bytes_out 1100420 188823 bytes_in 6732698 188823 station_ip 83.123.6.157 188823 port 366 188823 unique_id port 188823 remote_ip 10.8.0.54 188824 username pourshad 188824 kill_reason Another user logged on this global unique id 188824 mac 188824 bytes_out 0 188824 bytes_in 0 188824 station_ip 5.120.215.224 188824 port 349 188824 unique_id port 188824 remote_ip 10.8.0.42 188825 username zahra1101 188825 mac 188825 bytes_out 0 188825 bytes_in 0 188825 station_ip 5.120.128.95 188825 port 338 188825 unique_id port 188825 remote_ip 10.8.0.250 188830 username zahra1101 188830 mac 188830 bytes_out 0 188830 bytes_in 0 188830 station_ip 5.120.128.95 188830 port 350 188830 unique_id port 188830 remote_ip 10.8.0.250 188834 username zahra1101 188834 mac 188834 bytes_out 0 188834 bytes_in 0 188834 station_ip 5.120.128.95 188834 port 366 188834 unique_id port 188834 remote_ip 10.8.0.250 188836 username shadkam 188836 kill_reason Another user logged on this global unique id 188836 mac 188836 bytes_out 0 188836 bytes_in 0 188836 station_ip 5.202.19.10 188836 port 363 188836 unique_id port 188837 username hamid.e 188837 unique_id port 188837 terminate_cause User-Request 188837 bytes_out 1136934 188837 bytes_in 16804601 188837 station_ip 37.27.13.127 188837 port 15729108 188837 nas_port_type Virtual 188837 remote_ip 5.5.5.98 188839 username yaghobi 188839 mac 188839 bytes_out 887735 188839 bytes_in 4950250 188839 station_ip 83.123.47.213 188839 port 350 188839 unique_id port 188839 remote_ip 10.8.0.138 188842 username zahra1101 188842 mac 188842 bytes_out 0 188842 bytes_in 0 188842 station_ip 5.120.128.95 188842 port 350 188842 unique_id port 188842 remote_ip 10.8.0.250 188846 username pourshad 188846 mac 188846 bytes_out 22731 188846 bytes_in 27835 188846 station_ip 5.120.215.224 188846 port 349 188846 unique_id port 188846 remote_ip 10.8.0.42 188850 username shahruz 188850 mac 188850 bytes_out 0 188850 bytes_in 0 188850 station_ip 5.210.15.31 188850 port 349 188850 unique_id port 188850 remote_ip 10.8.0.146 188859 username aminvpn 188859 mac 188859 bytes_out 1214276 188859 bytes_in 8250840 188859 station_ip 83.123.48.149 188859 port 396 188859 unique_id port 188859 remote_ip 10.8.0.58 188861 username aminvpn 188861 mac 188861 bytes_out 0 188861 bytes_in 0 188861 station_ip 83.123.48.149 188861 port 363 188861 unique_id port 188861 remote_ip 10.8.0.58 188873 username godarzi 188873 kill_reason Another user logged on this global unique id 188873 mac 188873 bytes_out 0 188873 bytes_in 0 188873 station_ip 5.120.167.53 188873 port 338 188873 unique_id port 188875 username aminvpn 188875 mac 188875 bytes_out 0 188875 bytes_in 0 188875 station_ip 5.119.36.146 188875 port 363 188875 unique_id port 188875 remote_ip 10.8.0.58 188877 username zahra1101 188877 mac 188877 bytes_out 0 188877 bytes_in 0 188877 station_ip 5.120.128.95 188877 port 363 188877 unique_id port 188877 remote_ip 10.8.0.250 188879 username aminvpn 188849 port 393 188849 unique_id port 188849 remote_ip 10.8.0.250 188852 username shahruz 188852 mac 188852 bytes_out 1997 188852 bytes_in 4494 188852 station_ip 5.210.15.31 188852 port 393 188852 unique_id port 188852 remote_ip 10.8.0.146 188854 username shahruz 188854 kill_reason Maximum number of concurrent logins reached 188854 mac 188854 bytes_out 0 188854 bytes_in 0 188854 station_ip 5.210.15.31 188854 port 350 188854 unique_id port 188855 username shahruz 188855 kill_reason Maximum check online fails reached 188855 mac 188855 bytes_out 0 188855 bytes_in 0 188855 station_ip 5.210.15.31 188855 port 349 188855 unique_id port 188862 username aminvpn 188862 mac 188862 bytes_out 0 188862 bytes_in 0 188862 station_ip 5.119.36.146 188862 port 396 188862 unique_id port 188862 remote_ip 10.8.0.58 188864 username aminvpn 188864 mac 188864 bytes_out 0 188864 bytes_in 0 188864 station_ip 83.123.48.149 188864 port 399 188864 unique_id port 188864 remote_ip 10.8.0.58 188865 username rashidi4690 188865 kill_reason Another user logged on this global unique id 188865 mac 188865 bytes_out 0 188865 bytes_in 0 188865 station_ip 5.119.103.146 188865 port 393 188865 unique_id port 188865 remote_ip 10.8.0.242 188866 username aminvpn 188866 mac 188866 bytes_out 34402 188866 bytes_in 36352 188866 station_ip 5.119.36.146 188866 port 363 188866 unique_id port 188866 remote_ip 10.8.0.58 188867 username aminvpn 188867 mac 188867 bytes_out 0 188867 bytes_in 0 188867 station_ip 83.123.48.149 188867 port 396 188867 unique_id port 188867 remote_ip 10.8.0.58 188868 username aminvpn 188868 mac 188868 bytes_out 0 188868 bytes_in 0 188868 station_ip 5.119.36.146 188868 port 363 188868 unique_id port 188868 remote_ip 10.8.0.58 188870 username mostafa_es78 188870 mac 188870 bytes_out 528159 188870 bytes_in 5978517 188870 station_ip 83.122.68.78 188870 port 350 188870 unique_id port 188870 remote_ip 10.8.0.34 188874 username aminvpn 188874 mac 188874 bytes_out 0 188874 bytes_in 0 188874 station_ip 83.123.48.149 188874 port 350 188874 unique_id port 188874 remote_ip 10.8.0.58 188885 username aminvpn 188885 mac 188885 bytes_out 0 188885 bytes_in 0 188885 station_ip 83.123.48.149 188885 port 399 188885 unique_id port 188885 remote_ip 10.8.0.58 188889 username shadkam 188889 mac 188889 bytes_out 311876 188889 bytes_in 1622573 188889 station_ip 5.202.19.10 188889 port 363 188889 unique_id port 188889 remote_ip 10.8.0.74 188890 username rashidi4690 188890 kill_reason Another user logged on this global unique id 188890 mac 188890 bytes_out 0 188890 bytes_in 0 188890 station_ip 5.119.103.146 188890 port 393 188890 unique_id port 188891 username aminvpn 188891 mac 188891 bytes_out 0 188891 bytes_in 0 188891 station_ip 83.123.48.149 188891 port 350 188891 unique_id port 188891 remote_ip 10.8.0.58 188894 username zahra1101 188894 mac 188894 bytes_out 0 188894 bytes_in 0 188894 station_ip 5.120.128.95 188894 port 363 188894 unique_id port 188894 remote_ip 10.8.0.250 188903 username kalantary6037 188903 mac 188903 bytes_out 358313 188903 bytes_in 1362448 188903 station_ip 83.123.70.157 188903 port 363 188903 unique_id port 188903 remote_ip 10.8.0.50 188906 username rahim 188906 mac 188906 bytes_out 0 188906 bytes_in 0 188906 station_ip 5.119.57.111 188906 port 396 188906 unique_id port 188906 remote_ip 10.8.0.134 188911 username zahra1101 188911 mac 188911 bytes_out 0 188911 bytes_in 0 188911 station_ip 5.120.128.95 188876 station_ip 83.123.48.149 188876 port 350 188876 unique_id port 188876 remote_ip 10.8.0.58 188878 username aminvpn 188878 mac 188878 bytes_out 0 188878 bytes_in 0 188878 station_ip 5.119.36.146 188878 port 399 188878 unique_id port 188878 remote_ip 10.8.0.58 188883 username rahim 188883 kill_reason Another user logged on this global unique id 188883 mac 188883 bytes_out 0 188883 bytes_in 0 188883 station_ip 5.119.57.111 188883 port 401 188883 unique_id port 188884 username rahim 188884 kill_reason Another user logged on this global unique id 188884 mac 188884 bytes_out 0 188884 bytes_in 0 188884 station_ip 5.119.57.111 188884 port 401 188884 unique_id port 188886 username rahim 188886 mac 188886 bytes_out 147703 188886 bytes_in 1399845 188886 station_ip 83.123.59.212 188886 port 350 188886 unique_id port 188886 remote_ip 10.8.0.134 188888 username aminvpn 188888 mac 188888 bytes_out 0 188888 bytes_in 0 188888 station_ip 5.119.36.146 188888 port 401 188888 unique_id port 188888 remote_ip 10.8.0.58 188896 username aminvpn 188896 mac 188896 bytes_out 0 188896 bytes_in 0 188896 station_ip 5.119.36.146 188896 port 402 188896 unique_id port 188896 remote_ip 10.8.0.58 188897 username aminvpn 188897 mac 188897 bytes_out 12199 188897 bytes_in 16948 188897 station_ip 83.123.48.149 188897 port 363 188897 unique_id port 188897 remote_ip 10.8.0.58 188898 username aminvpn 188898 mac 188898 bytes_out 0 188898 bytes_in 0 188898 station_ip 5.119.36.146 188898 port 396 188898 unique_id port 188898 remote_ip 10.8.0.58 188899 username aminvpn 188899 mac 188899 bytes_out 0 188899 bytes_in 0 188899 station_ip 83.123.48.149 188899 port 402 188899 unique_id port 188899 remote_ip 10.8.0.58 188901 username aminvpn 188901 mac 188901 bytes_out 0 188901 bytes_in 0 188901 station_ip 5.119.36.146 188901 port 396 188901 unique_id port 188901 remote_ip 10.8.0.58 188905 username rahim 188905 kill_reason Maximum check online fails reached 188905 mac 188905 bytes_out 0 188905 bytes_in 0 188905 station_ip 5.119.57.111 188905 port 363 188905 unique_id port 188908 username aminvpn 188908 unique_id port 188908 terminate_cause Lost-Carrier 188908 bytes_out 373286 188908 bytes_in 1552025 188908 station_ip 83.123.24.150 188908 port 15729112 188908 nas_port_type Virtual 188908 remote_ip 5.5.5.96 188909 username rahim 188909 mac 188909 bytes_out 0 188909 bytes_in 0 188909 station_ip 5.119.57.111 188909 port 404 188909 unique_id port 188909 remote_ip 10.8.0.134 188914 username shahruz 188914 mac 188914 bytes_out 121943 188914 bytes_in 376939 188914 station_ip 89.198.146.152 188914 port 404 188914 unique_id port 188914 remote_ip 10.8.0.146 188916 username shahruz 188916 mac 188916 bytes_out 0 188916 bytes_in 0 188916 station_ip 89.198.146.152 188916 port 407 188916 unique_id port 188916 remote_ip 10.8.0.146 188918 username rahim 188918 mac 188918 bytes_out 0 188918 bytes_in 0 188918 station_ip 5.119.57.111 188918 port 396 188918 unique_id port 188918 remote_ip 10.8.0.134 188924 username yaghobi 188924 mac 188924 bytes_out 901824 188924 bytes_in 2100938 188924 station_ip 83.123.29.98 188924 port 350 188924 unique_id port 188924 remote_ip 10.8.0.138 188927 username yaghobi 188927 mac 188927 bytes_out 7213 188927 bytes_in 10672 188927 station_ip 83.123.29.98 188927 port 338 188927 unique_id port 188927 remote_ip 10.8.0.138 188929 username shahruz 188929 mac 188929 bytes_out 0 188929 bytes_in 0 188879 mac 188879 bytes_out 0 188879 bytes_in 0 188879 station_ip 83.123.48.149 188879 port 350 188879 unique_id port 188879 remote_ip 10.8.0.58 188880 username rahim 188880 mac 188880 bytes_out 0 188880 bytes_in 0 188880 station_ip 5.119.57.111 188880 port 350 188880 unique_id port 188880 remote_ip 10.8.0.134 188881 username aminvpn 188881 mac 188881 bytes_out 41468 188881 bytes_in 62065 188881 station_ip 5.119.36.146 188881 port 399 188881 unique_id port 188881 remote_ip 10.8.0.58 188882 username aminvpn 188882 mac 188882 bytes_out 0 188882 bytes_in 0 188882 station_ip 5.119.36.146 188882 port 401 188882 unique_id port 188882 remote_ip 10.8.0.58 188887 username aminvpn 188887 unique_id port 188887 terminate_cause Lost-Carrier 188887 bytes_out 291003 188887 bytes_in 1088436 188887 station_ip 5.120.23.7 188887 port 15729110 188887 nas_port_type Virtual 188887 remote_ip 5.5.5.97 188892 username aminvpn 188892 mac 188892 bytes_out 0 188892 bytes_in 0 188892 station_ip 5.119.36.146 188892 port 363 188892 unique_id port 188892 remote_ip 10.8.0.58 188893 username aminvpn 188893 mac 188893 bytes_out 0 188893 bytes_in 0 188893 station_ip 83.123.48.149 188893 port 350 188893 unique_id port 188893 remote_ip 10.8.0.58 188895 username yaghobi 188895 mac 188895 bytes_out 384209 188895 bytes_in 669809 188895 station_ip 83.123.86.153 188895 port 396 188895 unique_id port 188895 remote_ip 10.8.0.138 188900 username zahra1101 188900 mac 188900 bytes_out 0 188900 bytes_in 0 188900 station_ip 5.120.128.95 188900 port 402 188900 unique_id port 188900 remote_ip 10.8.0.250 188902 username rahim 188902 mac 188902 bytes_out 555696 188902 bytes_in 4840763 188902 station_ip 5.119.57.111 188902 port 401 188902 unique_id port 188902 remote_ip 10.8.0.134 188904 username zahra1101 188904 mac 188904 bytes_out 0 188904 bytes_in 0 188904 station_ip 5.120.128.95 188904 port 396 188904 unique_id port 188904 remote_ip 10.8.0.250 188907 username rahim 188907 mac 188907 bytes_out 0 188907 bytes_in 0 188907 station_ip 5.119.57.111 188907 port 396 188907 unique_id port 188907 remote_ip 10.8.0.134 188910 username barzegar 188910 mac 188910 bytes_out 153339 188910 bytes_in 601911 188910 station_ip 5.119.72.132 188910 port 396 188910 unique_id port 188910 remote_ip 10.8.0.70 188912 username rashidi4690 188912 mac 188912 bytes_out 0 188912 bytes_in 0 188912 station_ip 5.119.103.146 188912 port 393 188912 unique_id port 188913 username rahim 188913 mac 188913 bytes_out 0 188913 bytes_in 0 188913 station_ip 5.119.57.111 188913 port 407 188913 unique_id port 188913 remote_ip 10.8.0.134 188917 username barzegar 188917 mac 188917 bytes_out 215418 188917 bytes_in 1203106 188917 station_ip 5.119.72.132 188917 port 396 188917 unique_id port 188917 remote_ip 10.8.0.70 188919 username shahruz 188919 mac 188919 bytes_out 2156 188919 bytes_in 4457 188919 station_ip 89.198.146.152 188919 port 338 188919 unique_id port 188919 remote_ip 10.8.0.146 188921 username meysam 188921 kill_reason Another user logged on this global unique id 188921 mac 188921 bytes_out 0 188921 bytes_in 0 188921 station_ip 188.159.254.127 188921 port 401 188921 unique_id port 188921 remote_ip 10.8.0.158 188923 username aminvpn 188923 unique_id port 188923 terminate_cause Lost-Carrier 188923 bytes_out 450733 188923 bytes_in 3147887 188923 station_ip 5.120.23.7 188923 port 15729111 188923 nas_port_type Virtual 188923 remote_ip 5.5.5.97 188911 port 404 188911 unique_id port 188911 remote_ip 10.8.0.250 188915 username godarzi 188915 mac 188915 bytes_out 0 188915 bytes_in 0 188915 station_ip 5.120.167.53 188915 port 338 188915 unique_id port 188920 username rahim 188920 mac 188920 bytes_out 0 188920 bytes_in 0 188920 station_ip 5.119.57.111 188920 port 407 188920 unique_id port 188920 remote_ip 10.8.0.134 188922 username zahra1101 188922 mac 188922 bytes_out 0 188922 bytes_in 0 188922 station_ip 5.120.128.95 188922 port 338 188922 unique_id port 188922 remote_ip 10.8.0.250 188928 username shahruz 188928 mac 188928 bytes_out 2262 188928 bytes_in 4812 188928 station_ip 89.198.146.152 188928 port 396 188928 unique_id port 188928 remote_ip 10.8.0.146 188931 username shahruz 188931 mac 188931 bytes_out 0 188931 bytes_in 0 188931 station_ip 89.198.146.152 188931 port 407 188931 unique_id port 188931 remote_ip 10.8.0.146 188934 username zahra1101 188934 mac 188934 bytes_out 2454 188934 bytes_in 6053 188934 station_ip 5.120.128.95 188934 port 407 188934 unique_id port 188934 remote_ip 10.8.0.250 188937 username meysam 188937 kill_reason Another user logged on this global unique id 188937 mac 188937 bytes_out 0 188937 bytes_in 0 188937 station_ip 188.159.254.127 188937 port 401 188937 unique_id port 188944 username moslem6940 188944 mac 188944 bytes_out 2013030 188944 bytes_in 28851433 188944 station_ip 83.123.72.89 188944 port 338 188944 unique_id port 188944 remote_ip 10.8.0.186 188947 username motamedi9772 188947 mac 188947 bytes_out 82720 188947 bytes_in 111022 188947 station_ip 83.123.7.75 188947 port 338 188947 unique_id port 188947 remote_ip 10.8.0.154 188948 username aminvpn 188948 mac 188948 bytes_out 0 188948 bytes_in 0 188948 station_ip 83.123.48.149 188948 port 411 188948 unique_id port 188948 remote_ip 10.8.0.58 188951 username dortaj3792 188951 mac 188951 bytes_out 820325 188951 bytes_in 1806125 188951 station_ip 5.119.112.48 188951 port 399 188951 unique_id port 188951 remote_ip 10.8.0.102 188953 username aminvpn 188953 mac 188953 bytes_out 27689 188953 bytes_in 44566 188953 station_ip 5.119.36.146 188953 port 338 188953 unique_id port 188953 remote_ip 10.8.0.58 188955 username aminvpn 188955 mac 188955 bytes_out 7422 188955 bytes_in 16446 188955 station_ip 83.123.48.149 188955 port 350 188955 unique_id port 188955 remote_ip 10.8.0.58 188958 username shahruz 188958 mac 188958 bytes_out 0 188958 bytes_in 0 188958 station_ip 89.198.146.152 188958 port 350 188958 unique_id port 188958 remote_ip 10.8.0.146 188960 username akbari0070 188960 mac 188960 bytes_out 1126692 188960 bytes_in 13577593 188960 station_ip 83.123.22.179 188960 port 399 188960 unique_id port 188960 remote_ip 10.8.0.166 188962 username fezealinaghi 188962 mac 188962 bytes_out 629891 188962 bytes_in 3757608 188962 station_ip 83.123.100.22 188962 port 409 188962 unique_id port 188962 remote_ip 10.8.0.202 188967 username saeeddamghani 188967 mac 188967 bytes_out 517841 188967 bytes_in 5164913 188967 station_ip 217.60.175.234 188967 port 408 188967 unique_id port 188967 remote_ip 10.8.0.122 188969 username shahruz 188969 mac 188969 bytes_out 0 188969 bytes_in 0 188969 station_ip 89.198.146.152 188969 port 350 188969 unique_id port 188969 remote_ip 10.8.0.146 188973 username shahruz 188973 mac 188973 bytes_out 0 188973 bytes_in 0 188973 station_ip 89.198.146.152 188973 port 405 188973 unique_id port 188925 username rashidi4690 188925 mac 188925 bytes_out 1745233 188925 bytes_in 15197308 188925 station_ip 5.119.59.31 188925 port 406 188925 unique_id port 188925 remote_ip 10.8.0.242 188926 username shahruz 188926 mac 188926 bytes_out 9511 188926 bytes_in 20085 188926 station_ip 89.198.146.152 188926 port 408 188926 unique_id port 188926 remote_ip 10.8.0.146 188930 username shahruz 188930 mac 188930 bytes_out 0 188930 bytes_in 0 188930 station_ip 89.198.146.152 188930 port 396 188930 unique_id port 188930 remote_ip 10.8.0.146 188933 username zahra1101 188933 mac 188933 bytes_out 0 188933 bytes_in 0 188933 station_ip 5.120.128.95 188933 port 407 188933 unique_id port 188933 remote_ip 10.8.0.250 188939 username shahruz 188939 mac 188939 bytes_out 5221 188939 bytes_in 13328 188939 station_ip 89.198.146.152 188939 port 409 188939 unique_id port 188939 remote_ip 10.8.0.146 188942 username zahra1101 188942 mac 188942 bytes_out 148458 188942 bytes_in 1053809 188942 station_ip 5.120.128.95 188942 port 410 188942 unique_id port 188942 remote_ip 10.8.0.250 188945 username barzegar8595 188945 mac 188945 bytes_out 781776 188945 bytes_in 5313696 188945 station_ip 46.225.211.163 188945 port 393 188945 unique_id port 188945 remote_ip 10.8.0.114 188946 username aminvpn 188946 mac 188946 bytes_out 97738 188946 bytes_in 280459 188946 station_ip 5.119.36.146 188946 port 406 188946 unique_id port 188946 remote_ip 10.8.0.58 188950 username barzegar 188950 mac 188950 bytes_out 0 188950 bytes_in 0 188950 station_ip 5.119.72.132 188950 port 350 188950 unique_id port 188954 username rashidi4690 188954 mac 188954 bytes_out 248085 188954 bytes_in 1175956 188954 station_ip 5.119.59.31 188954 port 393 188954 unique_id port 188954 remote_ip 10.8.0.242 188957 username yaghobi 188957 mac 188957 bytes_out 1324921 188957 bytes_in 15155735 188957 station_ip 83.123.29.98 188957 port 409 188957 unique_id port 188957 remote_ip 10.8.0.138 188959 username motamedi9772 188959 mac 188959 bytes_out 5755 188959 bytes_in 11844 188959 station_ip 83.123.7.75 188959 port 405 188959 unique_id port 188959 remote_ip 10.8.0.154 188961 username moslem6940 188961 kill_reason Another user logged on this global unique id 188961 mac 188961 bytes_out 0 188961 bytes_in 0 188961 station_ip 83.123.72.89 188961 port 402 188961 unique_id port 188961 remote_ip 10.8.0.186 188964 username yaghobi 188964 mac 188964 bytes_out 439688 188964 bytes_in 4024137 188964 station_ip 83.123.29.98 188964 port 393 188964 unique_id port 188964 remote_ip 10.8.0.138 188965 username shahruz 188965 mac 188965 bytes_out 221353 188965 bytes_in 1620718 188965 station_ip 89.198.146.152 188965 port 350 188965 unique_id port 188965 remote_ip 10.8.0.146 188970 username moslem6940 188970 kill_reason Another user logged on this global unique id 188970 mac 188970 bytes_out 0 188970 bytes_in 0 188970 station_ip 83.123.72.89 188970 port 402 188970 unique_id port 188971 username shahruz 188971 mac 188971 bytes_out 0 188971 bytes_in 0 188971 station_ip 89.198.146.152 188971 port 393 188971 unique_id port 188971 remote_ip 10.8.0.146 188972 username meysam 188972 mac 188972 bytes_out 0 188972 bytes_in 0 188972 station_ip 188.159.254.127 188972 port 401 188972 unique_id port 188979 username moslem6940 188979 kill_reason Another user logged on this global unique id 188979 mac 188979 bytes_out 0 188979 bytes_in 0 188979 station_ip 83.123.72.89 188979 port 402 188979 unique_id port 188929 station_ip 89.198.146.152 188929 port 407 188929 unique_id port 188929 remote_ip 10.8.0.146 188932 username yaghobi 188932 mac 188932 bytes_out 2219 188932 bytes_in 7174 188932 station_ip 83.123.29.98 188932 port 406 188932 unique_id port 188932 remote_ip 10.8.0.138 188935 username shahruz 188935 mac 188935 bytes_out 1702 188935 bytes_in 3739 188935 station_ip 89.198.146.152 188935 port 409 188935 unique_id port 188935 remote_ip 10.8.0.146 188936 username shahruz 188936 kill_reason Maximum check online fails reached 188936 mac 188936 bytes_out 0 188936 bytes_in 0 188936 station_ip 89.198.146.152 188936 port 407 188936 unique_id port 188938 username sabaghnezhad 188938 mac 188938 bytes_out 105872 188938 bytes_in 53840 188938 station_ip 188.229.55.56 188938 port 396 188938 unique_id port 188938 remote_ip 10.8.0.66 188940 username barzegar 188940 kill_reason Another user logged on this global unique id 188940 mac 188940 bytes_out 0 188940 bytes_in 0 188940 station_ip 5.119.72.132 188940 port 350 188940 unique_id port 188940 remote_ip 10.8.0.70 188941 username yaghobi 188941 mac 188941 bytes_out 92668 188941 bytes_in 677645 188941 station_ip 83.123.29.98 188941 port 406 188941 unique_id port 188941 remote_ip 10.8.0.138 188943 username aminvpn 188943 mac 188943 bytes_out 78183 188943 bytes_in 140536 188943 station_ip 83.123.48.149 188943 port 402 188943 unique_id port 188943 remote_ip 10.8.0.58 188949 username mostafa_es78 188949 mac 188949 bytes_out 1445681 188949 bytes_in 8428529 188949 station_ip 83.122.71.117 188949 port 405 188949 unique_id port 188949 remote_ip 10.8.0.34 188952 username barzegar 188952 mac 188952 bytes_out 0 188952 bytes_in 0 188952 station_ip 5.119.72.132 188952 port 350 188952 unique_id port 188952 remote_ip 10.8.0.70 188956 username aminvpn 188956 mac 188956 bytes_out 0 188956 bytes_in 0 188956 station_ip 5.119.36.146 188956 port 393 188956 unique_id port 188956 remote_ip 10.8.0.58 188963 username mostafa_es78 188963 mac 188963 bytes_out 629719 188963 bytes_in 5474750 188963 station_ip 83.123.90.169 188963 port 338 188963 unique_id port 188963 remote_ip 10.8.0.34 188966 username barzegar 188966 mac 188966 bytes_out 5120 188966 bytes_in 7150 188966 station_ip 5.119.72.132 188966 port 338 188966 unique_id port 188966 remote_ip 10.8.0.70 188968 username shahruz 188968 mac 188968 bytes_out 295723 188968 bytes_in 2739114 188968 station_ip 89.198.146.152 188968 port 350 188968 unique_id port 188968 remote_ip 10.8.0.146 188976 username mostafa_es78 188976 mac 188976 bytes_out 832060 188976 bytes_in 6428946 188976 station_ip 83.123.90.169 188976 port 338 188976 unique_id port 188976 remote_ip 10.8.0.34 188978 username aminvpn 188978 mac 188978 bytes_out 28291 188978 bytes_in 50958 188978 station_ip 83.123.48.149 188978 port 406 188978 unique_id port 188978 remote_ip 10.8.0.58 188983 username aminvpn 188983 mac 188983 bytes_out 0 188983 bytes_in 0 188983 station_ip 5.119.36.146 188983 port 350 188983 unique_id port 188983 remote_ip 10.8.0.58 188985 username aminvpn 188985 mac 188985 bytes_out 0 188985 bytes_in 0 188985 station_ip 83.123.48.149 188985 port 396 188985 unique_id port 188985 remote_ip 10.8.0.58 188986 username aminvpn 188986 mac 188986 bytes_out 0 188986 bytes_in 0 188986 station_ip 5.119.36.146 188986 port 338 188986 unique_id port 188986 remote_ip 10.8.0.58 188991 username moslem6940 188991 mac 188991 bytes_out 0 188991 bytes_in 0 188973 remote_ip 10.8.0.146 188974 username soleymani5056 188974 mac 188974 bytes_out 487355 188974 bytes_in 2484001 188974 station_ip 5.119.120.171 188974 port 350 188974 unique_id port 188974 remote_ip 10.8.0.226 188975 username shahruz 188975 mac 188975 bytes_out 4304 188975 bytes_in 6619 188975 station_ip 89.198.146.152 188975 port 401 188975 unique_id port 188975 remote_ip 10.8.0.146 188977 username sabaghnezhad 188977 mac 188977 bytes_out 59418 188977 bytes_in 60444 188977 station_ip 188.229.55.56 188977 port 396 188977 unique_id port 188977 remote_ip 10.8.0.66 188980 username aminvpn 188980 mac 188980 bytes_out 0 188980 bytes_in 0 188980 station_ip 5.119.36.146 188980 port 350 188980 unique_id port 188980 remote_ip 10.8.0.58 188987 username shahruz 188987 mac 188987 bytes_out 0 188987 bytes_in 0 188987 station_ip 89.198.146.152 188987 port 338 188987 unique_id port 188987 remote_ip 10.8.0.146 188988 username yaghobi 188988 mac 188988 bytes_out 298948 188988 bytes_in 512925 188988 station_ip 83.123.88.83 188988 port 393 188988 unique_id port 188988 remote_ip 10.8.0.138 188990 username moslem6940 188990 mac 188990 bytes_out 0 188990 bytes_in 0 188990 station_ip 83.123.72.89 188990 port 402 188990 unique_id port 189004 username shahruz 189004 mac 189004 bytes_out 8525 189004 bytes_in 21420 189004 station_ip 89.198.146.152 189004 port 401 189004 unique_id port 189004 remote_ip 10.8.0.146 189006 username barzegar 189006 mac 189006 bytes_out 0 189006 bytes_in 0 189006 station_ip 5.119.72.132 189006 port 405 189006 unique_id port 189006 remote_ip 10.8.0.70 189008 username yaghobi 189008 mac 189008 bytes_out 426016 189008 bytes_in 981633 189008 station_ip 83.123.88.83 189008 port 396 189008 unique_id port 189008 remote_ip 10.8.0.138 189012 username barzegar 189012 mac 189012 bytes_out 0 189012 bytes_in 0 189012 station_ip 5.119.72.132 189012 port 396 189012 unique_id port 189012 remote_ip 10.8.0.70 189017 username pourshad 189017 mac 189017 bytes_out 278018 189017 bytes_in 1186869 189017 station_ip 5.120.215.224 189017 port 400 189017 unique_id port 189017 remote_ip 10.8.0.42 189021 username zahra1101 189021 mac 189021 bytes_out 1938 189021 bytes_in 4207 189021 station_ip 5.120.128.95 189021 port 396 189021 unique_id port 189021 remote_ip 10.8.0.250 189022 username zahra1101 189022 mac 189022 bytes_out 2025 189022 bytes_in 4538 189022 station_ip 5.120.128.95 189022 port 400 189022 unique_id port 189022 remote_ip 10.8.0.250 189027 username kalantary6037 189027 mac 189027 bytes_out 184023 189027 bytes_in 973289 189027 station_ip 83.123.27.191 189027 port 393 189027 unique_id port 189027 remote_ip 10.8.0.50 189044 username zahra1101 189044 mac 189044 bytes_out 0 189044 bytes_in 0 189044 station_ip 5.120.128.95 189044 port 338 189044 unique_id port 189044 remote_ip 10.8.0.250 189046 username shahruz 189046 mac 189046 bytes_out 9668 189046 bytes_in 30936 189046 station_ip 89.199.166.234 189046 port 412 189046 unique_id port 189046 remote_ip 10.8.0.146 189047 username shahruz 189047 mac 189047 bytes_out 2209 189047 bytes_in 4547 189047 station_ip 89.199.166.234 189047 port 338 189047 unique_id port 189047 remote_ip 10.8.0.146 189048 username zahra1101 189048 mac 189048 bytes_out 2415 189048 bytes_in 4717 189048 station_ip 5.120.128.95 189048 port 338 189048 unique_id port 189048 remote_ip 10.8.0.250 189050 username zahra1101 189050 mac 188981 username aminvpn 188981 mac 188981 bytes_out 0 188981 bytes_in 0 188981 station_ip 83.123.48.149 188981 port 396 188981 unique_id port 188981 remote_ip 10.8.0.58 188982 username barzegar 188982 mac 188982 bytes_out 0 188982 bytes_in 0 188982 station_ip 5.119.72.132 188982 port 396 188982 unique_id port 188982 remote_ip 10.8.0.70 188984 username sabaghnezhad 188984 mac 188984 bytes_out 18769 188984 bytes_in 18594 188984 station_ip 188.229.55.56 188984 port 338 188984 unique_id port 188984 remote_ip 10.8.0.66 188989 username shahruz 188989 mac 188989 bytes_out 1997 188989 bytes_in 4600 188989 station_ip 89.198.146.152 188989 port 338 188989 unique_id port 188989 remote_ip 10.8.0.146 188992 username zahra1101 188992 mac 188992 bytes_out 127610 188992 bytes_in 290173 188992 station_ip 5.120.128.95 188992 port 410 188992 unique_id port 188992 remote_ip 10.8.0.250 188996 username moslem6940 188996 mac 188996 bytes_out 1912 188996 bytes_in 4157 188996 station_ip 83.123.72.89 188996 port 338 188996 unique_id port 188996 remote_ip 10.8.0.186 188997 username moslem6940 188997 mac 188997 bytes_out 0 188997 bytes_in 0 188997 station_ip 83.123.72.89 188997 port 338 188997 unique_id port 188997 remote_ip 10.8.0.186 188998 username shahruz 188998 mac 188998 bytes_out 19613 188998 bytes_in 48914 188998 station_ip 89.198.146.152 188998 port 401 188998 unique_id port 188998 remote_ip 10.8.0.146 189000 username moslem6940 189000 mac 189000 bytes_out 0 189000 bytes_in 0 189000 station_ip 83.123.72.89 189000 port 338 189000 unique_id port 189000 remote_ip 10.8.0.186 189001 username zahra1101 189001 mac 189001 bytes_out 0 189001 bytes_in 0 189001 station_ip 5.120.128.95 189001 port 401 189001 unique_id port 189001 remote_ip 10.8.0.250 189005 username rajaei 189005 mac 189005 bytes_out 2185269 189005 bytes_in 23390581 189005 station_ip 37.137.22.64 189005 port 393 189005 unique_id port 189005 remote_ip 10.8.0.210 189009 username zahra1101 189009 mac 189009 bytes_out 1782 189009 bytes_in 4737 189009 station_ip 5.120.128.95 189009 port 393 189009 unique_id port 189009 remote_ip 10.8.0.250 189010 username shahruz 189010 mac 189010 bytes_out 5576 189010 bytes_in 11227 189010 station_ip 89.198.146.152 189010 port 396 189010 unique_id port 189010 remote_ip 10.8.0.146 189014 username zahra1101 189014 mac 189014 bytes_out 0 189014 bytes_in 0 189014 station_ip 5.120.128.95 189014 port 396 189014 unique_id port 189014 remote_ip 10.8.0.250 189016 username yaghobi 189016 mac 189016 bytes_out 838000 189016 bytes_in 10510735 189016 station_ip 83.123.88.83 189016 port 401 189016 unique_id port 189016 remote_ip 10.8.0.138 189019 username aminvpn 189019 unique_id port 189019 terminate_cause User-Request 189019 bytes_out 3812818 189019 bytes_in 67752116 189019 station_ip 5.120.23.7 189019 port 15729116 189019 nas_port_type Virtual 189019 remote_ip 5.5.5.97 189023 username soleymani5056 189023 mac 189023 bytes_out 80515 189023 bytes_in 118519 189023 station_ip 5.120.45.80 189023 port 393 189023 unique_id port 189023 remote_ip 10.8.0.226 189025 username yaghobi 189025 mac 189025 bytes_out 820676 189025 bytes_in 11582396 189025 station_ip 83.123.88.83 189025 port 405 189025 unique_id port 189025 remote_ip 10.8.0.138 189031 username mostafa_es78 189031 mac 189031 bytes_out 1301208 189031 bytes_in 16030000 189031 station_ip 83.123.90.169 189031 port 401 189031 unique_id port 189031 remote_ip 10.8.0.34 188991 station_ip 83.123.72.89 188991 port 338 188991 unique_id port 188991 remote_ip 10.8.0.186 188993 username barzegar 188993 mac 188993 bytes_out 0 188993 bytes_in 0 188993 station_ip 5.119.72.132 188993 port 401 188993 unique_id port 188993 remote_ip 10.8.0.70 188994 username shahruz 188994 mac 188994 bytes_out 0 188994 bytes_in 0 188994 station_ip 89.198.146.152 188994 port 338 188994 unique_id port 188994 remote_ip 10.8.0.146 188995 username zahra1101 188995 kill_reason Maximum check online fails reached 188995 mac 188995 bytes_out 0 188995 bytes_in 0 188995 station_ip 5.120.128.95 188995 port 402 188995 unique_id port 188999 username moslem6940 188999 mac 188999 bytes_out 3765 188999 bytes_in 4612 188999 station_ip 83.123.72.89 188999 port 338 188999 unique_id port 188999 remote_ip 10.8.0.186 189002 username shahruz 189002 mac 189002 bytes_out 15988 189002 bytes_in 38733 189002 station_ip 89.198.146.152 189002 port 405 189002 unique_id port 189002 remote_ip 10.8.0.146 189003 username zahra1101 189003 mac 189003 bytes_out 0 189003 bytes_in 0 189003 station_ip 5.120.128.95 189003 port 401 189003 unique_id port 189003 remote_ip 10.8.0.250 189007 username rashidi4690 189007 kill_reason Another user logged on this global unique id 189007 mac 189007 bytes_out 0 189007 bytes_in 0 189007 station_ip 5.119.59.31 189007 port 399 189007 unique_id port 189007 remote_ip 10.8.0.242 189011 username zahra1101 189011 mac 189011 bytes_out 0 189011 bytes_in 0 189011 station_ip 5.120.128.95 189011 port 393 189011 unique_id port 189011 remote_ip 10.8.0.250 189013 username meysam 189013 mac 189013 bytes_out 16636 189013 bytes_in 17840 189013 station_ip 188.159.254.127 189013 port 405 189013 unique_id port 189013 remote_ip 10.8.0.158 189015 username shahruz 189015 mac 189015 bytes_out 2067 189015 bytes_in 4604 189015 station_ip 89.198.146.152 189015 port 406 189015 unique_id port 189015 remote_ip 10.8.0.146 189018 username shahruz 189018 mac 189018 bytes_out 7893 189018 bytes_in 15936 189018 station_ip 89.198.146.152 189018 port 396 189018 unique_id port 189018 remote_ip 10.8.0.146 189020 username shahruz 189020 mac 189020 bytes_out 2126 189020 bytes_in 4679 189020 station_ip 89.198.146.152 189020 port 400 189020 unique_id port 189020 remote_ip 10.8.0.146 189024 username soleymani5056 189024 mac 189024 bytes_out 16016 189024 bytes_in 21566 189024 station_ip 5.120.45.80 189024 port 396 189024 unique_id port 189024 remote_ip 10.8.0.226 189026 username godarzi 189026 kill_reason Another user logged on this global unique id 189026 mac 189026 bytes_out 0 189026 bytes_in 0 189026 station_ip 5.202.29.254 189026 port 404 189026 unique_id port 189026 remote_ip 10.8.0.38 189028 username shahruz 189028 mac 189028 bytes_out 24334 189028 bytes_in 57933 189028 station_ip 89.199.166.234 189028 port 408 189028 unique_id port 189028 remote_ip 10.8.0.146 189029 username pourshad 189029 mac 189029 bytes_out 22675 189029 bytes_in 26474 189029 station_ip 5.120.215.224 189029 port 406 189029 unique_id port 189029 remote_ip 10.8.0.42 189030 username zahra1101 189030 mac 189030 bytes_out 0 189030 bytes_in 0 189030 station_ip 5.120.128.95 189030 port 396 189030 unique_id port 189030 remote_ip 10.8.0.250 189035 username shahruz 189035 kill_reason Maximum check online fails reached 189035 mac 189035 bytes_out 0 189035 bytes_in 0 189035 station_ip 89.199.166.234 189035 port 401 189035 unique_id port 189040 username barzegar 189040 mac 189032 username barzegar 189032 mac 189032 bytes_out 0 189032 bytes_in 0 189032 station_ip 5.119.72.132 189032 port 396 189032 unique_id port 189032 remote_ip 10.8.0.70 189033 username sabaghnezhad 189033 mac 189033 bytes_out 0 189033 bytes_in 0 189033 station_ip 188.229.55.56 189033 port 401 189033 unique_id port 189033 remote_ip 10.8.0.66 189034 username soleymani5056 189034 mac 189034 bytes_out 2039669 189034 bytes_in 653898 189034 station_ip 5.120.71.64 189034 port 400 189034 unique_id port 189034 remote_ip 10.8.0.226 189036 username godarzi 189036 kill_reason Another user logged on this global unique id 189036 mac 189036 bytes_out 0 189036 bytes_in 0 189036 station_ip 5.202.29.254 189036 port 404 189036 unique_id port 189037 username rezaei 189037 mac 189037 bytes_out 0 189037 bytes_in 0 189037 station_ip 5.119.222.93 189037 port 400 189037 unique_id port 189037 remote_ip 10.8.0.198 189038 username rezaei 189038 mac 189038 bytes_out 252323 189038 bytes_in 1494686 189038 station_ip 5.119.222.93 189038 port 406 189038 unique_id port 189038 remote_ip 10.8.0.198 189039 username zahra1101 189039 kill_reason Maximum check online fails reached 189039 mac 189039 bytes_out 0 189039 bytes_in 0 189039 station_ip 5.120.128.95 189039 port 408 189039 unique_id port 189042 username zahra1101 189042 mac 189042 bytes_out 0 189042 bytes_in 0 189042 station_ip 5.120.128.95 189042 port 411 189042 unique_id port 189042 remote_ip 10.8.0.250 189045 username barzegar 189045 mac 189045 bytes_out 0 189045 bytes_in 0 189045 station_ip 5.119.72.132 189045 port 338 189045 unique_id port 189045 remote_ip 10.8.0.70 189051 username meysam 189051 kill_reason Another user logged on this global unique id 189051 mac 189051 bytes_out 0 189051 bytes_in 0 189051 station_ip 188.159.254.127 189051 port 400 189051 unique_id port 189051 remote_ip 10.8.0.158 189055 username motamedi9772 189055 mac 189055 bytes_out 0 189055 bytes_in 0 189055 station_ip 83.123.93.231 189055 port 409 189055 unique_id port 189055 remote_ip 10.8.0.154 189056 username rezaei 189056 mac 189056 bytes_out 1710019 189056 bytes_in 15091941 189056 station_ip 5.119.222.93 189056 port 406 189056 unique_id port 189056 remote_ip 10.8.0.198 189062 username sabaghnezhad 189062 mac 189062 bytes_out 14391 189062 bytes_in 21316 189062 station_ip 188.229.55.56 189062 port 338 189062 unique_id port 189062 remote_ip 10.8.0.66 189066 username dortaj3792 189066 mac 189066 bytes_out 1025321 189066 bytes_in 8338997 189066 station_ip 5.119.112.48 189066 port 410 189066 unique_id port 189066 remote_ip 10.8.0.102 189067 username yaghobi 189067 mac 189067 bytes_out 505021 189067 bytes_in 943434 189067 station_ip 83.123.116.93 189067 port 400 189067 unique_id port 189067 remote_ip 10.8.0.138 189068 username yaghobi 189068 mac 189068 bytes_out 78485 189068 bytes_in 767510 189068 station_ip 83.123.116.93 189068 port 399 189068 unique_id port 189068 remote_ip 10.8.0.138 189071 username barzegar 189071 mac 189071 bytes_out 0 189071 bytes_in 0 189071 station_ip 5.119.72.132 189071 port 399 189071 unique_id port 189071 remote_ip 10.8.0.70 189073 username barzegar 189073 mac 189073 bytes_out 0 189073 bytes_in 0 189073 station_ip 5.119.72.132 189073 port 399 189073 unique_id port 189073 remote_ip 10.8.0.70 189074 username sabaghnezhad 189074 mac 189074 bytes_out 16439 189074 bytes_in 21713 189074 station_ip 188.229.55.56 189074 port 338 189074 unique_id port 189074 remote_ip 10.8.0.66 189040 bytes_out 0 189040 bytes_in 0 189040 station_ip 5.119.72.132 189040 port 411 189040 unique_id port 189040 remote_ip 10.8.0.70 189041 username shahruz 189041 mac 189041 bytes_out 2067 189041 bytes_in 3849 189041 station_ip 89.199.166.234 189041 port 409 189041 unique_id port 189041 remote_ip 10.8.0.146 189043 username barzegar8595 189043 mac 189043 bytes_out 607936 189043 bytes_in 1783461 189043 station_ip 46.225.211.163 189043 port 338 189043 unique_id port 189043 remote_ip 10.8.0.114 189049 username sabaghnezhad 189049 mac 189049 bytes_out 819881 189049 bytes_in 3201521 189049 station_ip 188.229.55.56 189049 port 405 189049 unique_id port 189049 remote_ip 10.8.0.66 189057 username sabaghnezhad 189057 mac 189057 bytes_out 366989 189057 bytes_in 57281 189057 station_ip 188.229.55.56 189057 port 338 189057 unique_id port 189057 remote_ip 10.8.0.66 189059 username godarzi 189059 kill_reason Another user logged on this global unique id 189059 mac 189059 bytes_out 0 189059 bytes_in 0 189059 station_ip 5.202.29.254 189059 port 404 189059 unique_id port 189061 username zahra1101 189061 mac 189061 bytes_out 37006 189061 bytes_in 44657 189061 station_ip 5.119.77.251 189061 port 405 189061 unique_id port 189061 remote_ip 10.8.0.250 189064 username meysam 189064 mac 189064 bytes_out 1226103 189064 bytes_in 18179026 189064 station_ip 188.159.254.127 189064 port 406 189064 unique_id port 189064 remote_ip 10.8.0.158 189070 username yaghobi 189070 mac 189070 bytes_out 273624 189070 bytes_in 2431311 189070 station_ip 83.123.116.93 189070 port 405 189070 unique_id port 189070 remote_ip 10.8.0.138 189075 username barzegar 189075 mac 189075 bytes_out 0 189075 bytes_in 0 189075 station_ip 5.119.72.132 189075 port 399 189075 unique_id port 189075 remote_ip 10.8.0.70 189077 username meysam 189077 mac 189077 bytes_out 461227 189077 bytes_in 5472730 189077 station_ip 188.159.254.127 189077 port 338 189077 unique_id port 189077 remote_ip 10.8.0.158 189082 username yaghobi 189082 mac 189082 bytes_out 0 189082 bytes_in 0 189082 station_ip 83.123.116.93 189082 port 410 189082 unique_id port 189082 remote_ip 10.8.0.138 189083 username barzegar 189083 kill_reason Maximum check online fails reached 189083 mac 189083 bytes_out 0 189083 bytes_in 0 189083 station_ip 5.119.72.132 189083 port 406 189083 unique_id port 189084 username saeed9658 189084 mac 189084 bytes_out 255993 189084 bytes_in 756674 189084 station_ip 5.120.176.154 189084 port 409 189084 unique_id port 189084 remote_ip 10.8.0.162 189085 username pourshad 189085 mac 189085 bytes_out 232220 189085 bytes_in 1921503 189085 station_ip 5.120.215.224 189085 port 393 189085 unique_id port 189085 remote_ip 10.8.0.42 189086 username hamid.e 189086 unique_id port 189086 terminate_cause User-Request 189086 bytes_out 8468558 189086 bytes_in 18589053 189086 station_ip 37.27.13.127 189086 port 15729117 189086 nas_port_type Virtual 189086 remote_ip 5.5.5.98 189088 username sabaghnezhad 189088 mac 189088 bytes_out 25897 189088 bytes_in 40409 189088 station_ip 188.229.55.56 189088 port 409 189088 unique_id port 189088 remote_ip 10.8.0.66 189092 username pourshad 189092 mac 189092 bytes_out 16141 189092 bytes_in 26379 189092 station_ip 5.120.215.224 189092 port 393 189092 unique_id port 189092 remote_ip 10.8.0.42 189095 username yaghobi 189095 mac 189095 bytes_out 315068 189095 bytes_in 405148 189095 station_ip 83.123.11.194 189095 port 410 189095 unique_id port 189095 remote_ip 10.8.0.138 189050 bytes_out 0 189050 bytes_in 0 189050 station_ip 5.120.94.254 189050 port 338 189050 unique_id port 189050 remote_ip 10.8.0.250 189052 username motamedi9772 189052 mac 189052 bytes_out 150074 189052 bytes_in 428724 189052 station_ip 83.123.93.231 189052 port 405 189052 unique_id port 189052 remote_ip 10.8.0.154 189053 username yaghobi 189053 mac 189053 bytes_out 118822 189053 bytes_in 284405 189053 station_ip 83.123.116.93 189053 port 409 189053 unique_id port 189053 remote_ip 10.8.0.138 189054 username motamedi9772 189054 mac 189054 bytes_out 0 189054 bytes_in 0 189054 station_ip 83.123.93.231 189054 port 409 189054 unique_id port 189054 remote_ip 10.8.0.154 189058 username meysam 189058 mac 189058 bytes_out 0 189058 bytes_in 0 189058 station_ip 188.159.254.127 189058 port 400 189058 unique_id port 189060 username motamedi9772 189060 mac 189060 bytes_out 110416 189060 bytes_in 743190 189060 station_ip 83.123.93.231 189060 port 409 189060 unique_id port 189060 remote_ip 10.8.0.154 189063 username rashidi4690 189063 mac 189063 bytes_out 0 189063 bytes_in 0 189063 station_ip 5.119.59.31 189063 port 399 189063 unique_id port 189065 username zahra1101 189065 mac 189065 bytes_out 0 189065 bytes_in 0 189065 station_ip 5.119.77.251 189065 port 399 189065 unique_id port 189065 remote_ip 10.8.0.250 189069 username zahra1101 189069 mac 189069 bytes_out 1650 189069 bytes_in 3761 189069 station_ip 5.120.40.189 189069 port 399 189069 unique_id port 189069 remote_ip 10.8.0.250 189072 username zahra1101 189072 mac 189072 bytes_out 0 189072 bytes_in 0 189072 station_ip 5.119.195.124 189072 port 406 189072 unique_id port 189072 remote_ip 10.8.0.250 189076 username rashidi4690 189076 mac 189076 bytes_out 0 189076 bytes_in 0 189076 station_ip 5.119.59.31 189076 port 405 189076 unique_id port 189076 remote_ip 10.8.0.242 189079 username fezealinaghi 189079 mac 189079 bytes_out 3318742 189079 bytes_in 46209472 189079 station_ip 83.123.39.230 189079 port 400 189079 unique_id port 189079 remote_ip 10.8.0.202 189080 username zahra1101 189080 mac 189080 bytes_out 2988 189080 bytes_in 4945 189080 station_ip 5.119.195.124 189080 port 338 189080 unique_id port 189080 remote_ip 10.8.0.250 189087 username barzegar 189087 mac 189087 bytes_out 0 189087 bytes_in 0 189087 station_ip 5.119.72.132 189087 port 410 189087 unique_id port 189087 remote_ip 10.8.0.70 189089 username hatami 189089 mac 189089 bytes_out 146585 189089 bytes_in 997385 189089 station_ip 37.27.46.194 189089 port 400 189089 unique_id port 189089 remote_ip 10.8.0.98 189091 username pourshad 189091 mac 189091 bytes_out 25728 189091 bytes_in 30074 189091 station_ip 5.120.215.224 189091 port 393 189091 unique_id port 189091 remote_ip 10.8.0.42 189094 username dortaj3792 189094 mac 189094 bytes_out 160691 189094 bytes_in 233290 189094 station_ip 5.119.122.44 189094 port 411 189094 unique_id port 189094 remote_ip 10.8.0.102 189100 username pourshad 189100 mac 189100 bytes_out 77617 189100 bytes_in 663428 189100 station_ip 5.120.215.224 189100 port 393 189100 unique_id port 189100 remote_ip 10.8.0.42 189101 username pourshad 189101 mac 189101 bytes_out 46657 189101 bytes_in 167812 189101 station_ip 5.120.215.224 189101 port 400 189101 unique_id port 189101 remote_ip 10.8.0.42 189106 username mosi 189106 mac 189106 bytes_out 1843138 189106 bytes_in 4803899 189106 station_ip 89.47.152.200 189106 port 396 189078 username barzegar 189078 mac 189078 bytes_out 0 189078 bytes_in 0 189078 station_ip 5.119.72.132 189078 port 406 189078 unique_id port 189078 remote_ip 10.8.0.70 189081 username yaghobi 189081 mac 189081 bytes_out 967422 189081 bytes_in 11487622 189081 station_ip 83.123.116.93 189081 port 399 189081 unique_id port 189081 remote_ip 10.8.0.138 189090 username fezealinaghi 189090 kill_reason Another user logged on this global unique id 189090 mac 189090 bytes_out 0 189090 bytes_in 0 189090 station_ip 83.123.39.230 189090 port 338 189090 unique_id port 189090 remote_ip 10.8.0.202 189093 username malekpoir 189093 kill_reason Another user logged on this global unique id 189093 mac 189093 bytes_out 0 189093 bytes_in 0 189093 station_ip 5.119.203.248 189093 port 366 189093 unique_id port 189093 remote_ip 10.8.0.18 189096 username soleymani5056 189096 mac 189096 bytes_out 272332 189096 bytes_in 748020 189096 station_ip 5.119.233.32 189096 port 399 189096 unique_id port 189096 remote_ip 10.8.0.226 189097 username motamedi9772 189097 mac 189097 bytes_out 4193229 189097 bytes_in 42373981 189097 station_ip 83.123.101.107 189097 port 405 189097 unique_id port 189097 remote_ip 10.8.0.154 189102 username barzegar 189102 mac 189102 bytes_out 0 189102 bytes_in 0 189102 station_ip 5.119.72.132 189102 port 405 189102 unique_id port 189102 remote_ip 10.8.0.70 189104 username shahruz 189104 mac 189104 bytes_out 6939 189104 bytes_in 19255 189104 station_ip 5.209.145.47 189104 port 410 189104 unique_id port 189104 remote_ip 10.8.0.146 189105 username shahruz 189105 mac 189105 bytes_out 2449 189105 bytes_in 4909 189105 station_ip 5.209.145.47 189105 port 411 189105 unique_id port 189105 remote_ip 10.8.0.146 189107 username alikomsari 189107 kill_reason Maximum number of concurrent logins reached 189107 mac 189107 bytes_out 0 189107 bytes_in 0 189107 station_ip 5.119.36.240 189107 port 396 189107 unique_id port 189108 username shahruz 189108 mac 189108 bytes_out 0 189108 bytes_in 0 189108 station_ip 5.209.37.121 189108 port 410 189108 unique_id port 189108 remote_ip 10.8.0.146 189112 username shahruz 189112 mac 189112 bytes_out 4988 189112 bytes_in 23130 189112 station_ip 188.229.29.218 189112 port 403 189112 unique_id port 189112 remote_ip 10.8.0.146 189114 username sabaghnezhad 189114 mac 189114 bytes_out 43404 189114 bytes_in 33979 189114 station_ip 188.229.55.56 189114 port 400 189114 unique_id port 189114 remote_ip 10.8.0.66 189118 username sabaghnezhad 189118 mac 189118 bytes_out 10221 189118 bytes_in 13803 189118 station_ip 188.229.55.56 189118 port 405 189118 unique_id port 189118 remote_ip 10.8.0.66 189121 username dortaj3792 189121 mac 189121 bytes_out 526268 189121 bytes_in 932657 189121 station_ip 5.119.122.44 189121 port 399 189121 unique_id port 189121 remote_ip 10.8.0.102 189123 username yaghobi 189123 mac 189123 bytes_out 357459 189123 bytes_in 441330 189123 station_ip 83.123.45.164 189123 port 396 189123 unique_id port 189123 remote_ip 10.8.0.138 189125 username mirzaei6046 189125 mac 189125 bytes_out 0 189125 bytes_in 0 189125 station_ip 5.119.205.40 189125 port 379 189125 unique_id port 189126 username mirzaei6046 189126 mac 189126 bytes_out 148569 189126 bytes_in 2028164 189126 station_ip 5.119.45.84 189126 port 396 189126 unique_id port 189126 remote_ip 10.8.0.90 189129 username nilufarrajaei 189129 mac 189129 bytes_out 21407 189129 bytes_in 25156 189129 station_ip 83.123.109.168 189129 port 400 189098 username barzegar 189098 mac 189098 bytes_out 0 189098 bytes_in 0 189098 station_ip 5.119.72.132 189098 port 400 189098 unique_id port 189098 remote_ip 10.8.0.70 189099 username motamedi9772 189099 mac 189099 bytes_out 21857 189099 bytes_in 159234 189099 station_ip 83.123.101.107 189099 port 405 189099 unique_id port 189099 remote_ip 10.8.0.154 189103 username mohammadjavad 189103 mac 189103 bytes_out 69648 189103 bytes_in 545494 189103 station_ip 83.123.23.115 189103 port 400 189103 unique_id port 189103 remote_ip 10.8.0.110 189110 username nilufarrajaei 189110 mac 189110 bytes_out 169698 189110 bytes_in 1869232 189110 station_ip 83.123.109.168 189110 port 405 189110 unique_id port 189110 remote_ip 10.8.0.194 189111 username shahruz 189111 mac 189111 bytes_out 0 189111 bytes_in 0 189111 station_ip 5.209.37.121 189111 port 396 189111 unique_id port 189111 remote_ip 10.8.0.146 189115 username shahruz 189115 mac 189115 bytes_out 77029 189115 bytes_in 210904 189115 station_ip 188.210.66.191 189115 port 403 189115 unique_id port 189115 remote_ip 10.8.0.146 189119 username yaghobi 189119 mac 189119 bytes_out 317331 189119 bytes_in 589277 189119 station_ip 83.123.45.164 189119 port 409 189119 unique_id port 189119 remote_ip 10.8.0.138 189122 username fezealinaghi 189122 kill_reason Another user logged on this global unique id 189122 mac 189122 bytes_out 0 189122 bytes_in 0 189122 station_ip 83.123.39.230 189122 port 338 189122 unique_id port 189128 username mirzaei6046 189128 mac 189128 bytes_out 2569 189128 bytes_in 6617 189128 station_ip 5.119.230.83 189128 port 399 189128 unique_id port 189128 remote_ip 10.8.0.90 189133 username kalantary6037 189133 mac 189133 bytes_out 39203 189133 bytes_in 116051 189133 station_ip 83.123.121.23 189133 port 400 189133 unique_id port 189133 remote_ip 10.8.0.50 189135 username nilufarrajaei 189135 mac 189135 bytes_out 461147 189135 bytes_in 164807 189135 station_ip 83.123.109.168 189135 port 399 189135 unique_id port 189135 remote_ip 10.8.0.194 189136 username motamedi9772 189136 mac 189136 bytes_out 86689 189136 bytes_in 97512 189136 station_ip 83.123.17.251 189136 port 400 189136 unique_id port 189136 remote_ip 10.8.0.154 189141 username aminvpn 189141 mac 189141 bytes_out 1528 189141 bytes_in 5496 189141 station_ip 5.119.36.146 189141 port 409 189141 unique_id port 189141 remote_ip 10.8.0.58 189143 username aminvpn 189143 mac 189143 bytes_out 222112 189143 bytes_in 1751369 189143 station_ip 5.119.36.146 189143 port 350 189143 unique_id port 189143 remote_ip 10.8.0.58 189144 username aminvpn 189144 mac 189144 bytes_out 0 189144 bytes_in 0 189144 station_ip 83.123.48.149 189144 port 405 189144 unique_id port 189144 remote_ip 10.8.0.58 189146 username rashidi4690 189146 mac 189146 bytes_out 415087 189146 bytes_in 1897088 189146 station_ip 5.119.59.31 189146 port 396 189146 unique_id port 189146 remote_ip 10.8.0.242 189149 username pourshad 189149 mac 189149 bytes_out 6061 189149 bytes_in 11850 189149 station_ip 5.120.215.224 189149 port 405 189149 unique_id port 189149 remote_ip 10.8.0.42 189150 username meysam 189150 mac 189150 bytes_out 1622216 189150 bytes_in 21593390 189150 station_ip 188.159.254.127 189150 port 399 189150 unique_id port 189150 remote_ip 10.8.0.158 189152 username soleymani5056 189152 mac 189152 bytes_out 55287 189152 bytes_in 60627 189152 station_ip 5.119.246.142 189152 port 405 189152 unique_id port 189152 remote_ip 10.8.0.226 189106 unique_id port 189106 remote_ip 10.8.0.142 189109 username alikomsari 189109 mac 189109 bytes_out 3477341 189109 bytes_in 6524841 189109 station_ip 5.119.36.240 189109 port 403 189109 unique_id port 189109 remote_ip 10.8.0.214 189113 username shahruz 189113 mac 189113 bytes_out 0 189113 bytes_in 0 189113 station_ip 188.210.66.191 189113 port 405 189113 unique_id port 189113 remote_ip 10.8.0.146 189116 username barzegar 189116 mac 189116 bytes_out 0 189116 bytes_in 0 189116 station_ip 5.119.72.132 189116 port 400 189116 unique_id port 189116 remote_ip 10.8.0.70 189117 username nilufarrajaei 189117 mac 189117 bytes_out 20532 189117 bytes_in 22594 189117 station_ip 83.123.109.168 189117 port 396 189117 unique_id port 189117 remote_ip 10.8.0.194 189120 username pourshad 189120 kill_reason Another user logged on this global unique id 189120 mac 189120 bytes_out 0 189120 bytes_in 0 189120 station_ip 5.120.215.224 189120 port 393 189120 unique_id port 189120 remote_ip 10.8.0.42 189124 username aminvpn 189124 unique_id port 189124 terminate_cause Lost-Carrier 189124 bytes_out 489174 189124 bytes_in 3822063 189124 station_ip 83.123.53.36 189124 port 15729119 189124 nas_port_type Virtual 189124 remote_ip 5.5.5.94 189127 username barzegar 189127 mac 189127 bytes_out 0 189127 bytes_in 0 189127 station_ip 5.119.72.132 189127 port 396 189127 unique_id port 189127 remote_ip 10.8.0.70 189130 username fezealinaghi 189130 kill_reason Another user logged on this global unique id 189130 mac 189130 bytes_out 0 189130 bytes_in 0 189130 station_ip 83.123.39.230 189130 port 338 189130 unique_id port 189134 username barzegar 189134 mac 189134 bytes_out 0 189134 bytes_in 0 189134 station_ip 5.119.72.132 189134 port 400 189134 unique_id port 189134 remote_ip 10.8.0.70 189137 username yaghobi 189137 mac 189137 bytes_out 1770 189137 bytes_in 4960 189137 station_ip 83.123.116.179 189137 port 405 189137 unique_id port 189137 remote_ip 10.8.0.138 189145 username pourshad 189145 mac 189145 bytes_out 0 189145 bytes_in 0 189145 station_ip 5.120.215.224 189145 port 393 189145 unique_id port 189147 username aminvpn 189147 mac 189147 bytes_out 10509 189147 bytes_in 12819 189147 station_ip 5.119.36.146 189147 port 350 189147 unique_id port 189147 remote_ip 10.8.0.58 189155 username motamedi9772 189155 mac 189155 bytes_out 1162469 189155 bytes_in 10862818 189155 station_ip 83.123.17.251 189155 port 400 189155 unique_id port 189155 remote_ip 10.8.0.154 189156 username motamedi9772 189156 mac 189156 bytes_out 0 189156 bytes_in 0 189156 station_ip 83.123.17.251 189156 port 400 189156 unique_id port 189156 remote_ip 10.8.0.154 189158 username ahmadi1 189158 mac 189158 bytes_out 0 189158 bytes_in 0 189158 station_ip 83.123.67.6 189158 port 411 189158 unique_id port 189158 remote_ip 10.8.0.94 189161 username mostafa_es78 189161 kill_reason Another user logged on this global unique id 189161 mac 189161 bytes_out 0 189161 bytes_in 0 189161 station_ip 83.123.64.17 189161 port 379 189161 unique_id port 189161 remote_ip 10.8.0.34 189163 username motamedi9772 189163 mac 189163 bytes_out 0 189163 bytes_in 0 189163 station_ip 83.123.17.251 189163 port 409 189163 unique_id port 189163 remote_ip 10.8.0.154 189165 username kalantary6037 189165 mac 189165 bytes_out 775528 189165 bytes_in 4126050 189165 station_ip 83.123.15.117 189165 port 393 189165 unique_id port 189165 remote_ip 10.8.0.50 189174 username yaghobi 189174 mac 189174 bytes_out 0 189129 unique_id port 189129 remote_ip 10.8.0.194 189131 username yaghobi 189131 mac 189131 bytes_out 135687 189131 bytes_in 149896 189131 station_ip 83.123.66.105 189131 port 396 189131 unique_id port 189131 remote_ip 10.8.0.138 189132 username soleymani5056 189132 mac 189132 bytes_out 21451 189132 bytes_in 56116 189132 station_ip 5.120.127.21 189132 port 396 189132 unique_id port 189132 remote_ip 10.8.0.226 189138 username motamedi9772 189138 mac 189138 bytes_out 0 189138 bytes_in 0 189138 station_ip 83.123.17.251 189138 port 409 189138 unique_id port 189138 remote_ip 10.8.0.154 189139 username fezealinaghi 189139 kill_reason Another user logged on this global unique id 189139 mac 189139 bytes_out 0 189139 bytes_in 0 189139 station_ip 83.123.39.230 189139 port 338 189139 unique_id port 189140 username aminvpn 189140 mac 189140 bytes_out 2184652 189140 bytes_in 12375980 189140 station_ip 83.123.48.149 189140 port 350 189140 unique_id port 189140 remote_ip 10.8.0.58 189142 username yaghobi 189142 mac 189142 bytes_out 49400 189142 bytes_in 65120 189142 station_ip 83.123.116.179 189142 port 405 189142 unique_id port 189142 remote_ip 10.8.0.138 189148 username barzegar 189148 mac 189148 bytes_out 0 189148 bytes_in 0 189148 station_ip 5.119.72.132 189148 port 350 189148 unique_id port 189148 remote_ip 10.8.0.70 189151 username saeed9658 189151 mac 189151 bytes_out 243253 189151 bytes_in 1257142 189151 station_ip 5.120.90.208 189151 port 396 189151 unique_id port 189151 remote_ip 10.8.0.162 189153 username yaghobi 189153 mac 189153 bytes_out 96030 189153 bytes_in 141087 189153 station_ip 83.123.116.179 189153 port 409 189153 unique_id port 189153 remote_ip 10.8.0.138 189154 username pourshad 189154 mac 189154 bytes_out 71180 189154 bytes_in 34637 189154 station_ip 5.120.215.224 189154 port 350 189154 unique_id port 189154 remote_ip 10.8.0.42 189157 username pourshad 189157 mac 189157 bytes_out 8562 189157 bytes_in 10809 189157 station_ip 5.120.215.224 189157 port 409 189157 unique_id port 189157 remote_ip 10.8.0.42 189159 username motamedi9772 189159 mac 189159 bytes_out 0 189159 bytes_in 0 189159 station_ip 83.123.17.251 189159 port 409 189159 unique_id port 189159 remote_ip 10.8.0.154 189167 username motamedi9772 189167 mac 189167 bytes_out 0 189167 bytes_in 0 189167 station_ip 83.123.17.251 189167 port 393 189167 unique_id port 189167 remote_ip 10.8.0.154 189169 username godarzi 189169 kill_reason Another user logged on this global unique id 189169 mac 189169 bytes_out 0 189169 bytes_in 0 189169 station_ip 5.202.29.254 189169 port 404 189169 unique_id port 189172 username yaghobi 189172 mac 189172 bytes_out 412032 189172 bytes_in 791226 189172 station_ip 83.123.116.179 189172 port 405 189172 unique_id port 189172 remote_ip 10.8.0.138 189175 username shahruz 189175 mac 189175 bytes_out 0 189175 bytes_in 0 189175 station_ip 31.2.213.33 189175 port 405 189175 unique_id port 189175 remote_ip 10.8.0.146 189177 username shahruz 189177 mac 189177 bytes_out 0 189177 bytes_in 0 189177 station_ip 5.209.82.9 189177 port 393 189177 unique_id port 189177 remote_ip 10.8.0.146 189180 username fezealinaghi 189180 kill_reason Another user logged on this global unique id 189180 mac 189180 bytes_out 0 189180 bytes_in 0 189180 station_ip 83.123.39.230 189180 port 338 189180 unique_id port 189182 username barzegar 189182 mac 189182 bytes_out 0 189182 bytes_in 0 189182 station_ip 5.119.72.132 189182 port 405 189160 username fezealinaghi 189160 kill_reason Another user logged on this global unique id 189160 mac 189160 bytes_out 0 189160 bytes_in 0 189160 station_ip 83.123.39.230 189160 port 338 189160 unique_id port 189162 username pourshad 189162 mac 189162 bytes_out 10439 189162 bytes_in 14733 189162 station_ip 5.120.215.224 189162 port 400 189162 unique_id port 189162 remote_ip 10.8.0.42 189164 username mostafa_es78 189164 mac 189164 bytes_out 0 189164 bytes_in 0 189164 station_ip 83.123.64.17 189164 port 379 189164 unique_id port 189166 username pourshad 189166 mac 189166 bytes_out 8068 189166 bytes_in 7241 189166 station_ip 5.120.215.224 189166 port 411 189166 unique_id port 189166 remote_ip 10.8.0.42 189168 username barzegar 189168 mac 189168 bytes_out 0 189168 bytes_in 0 189168 station_ip 5.119.72.132 189168 port 393 189168 unique_id port 189168 remote_ip 10.8.0.70 189170 username motamedi9772 189170 mac 189170 bytes_out 7216 189170 bytes_in 13827 189170 station_ip 83.123.17.251 189170 port 393 189170 unique_id port 189170 remote_ip 10.8.0.154 189171 username esmaeilkazemi 189171 mac 189171 bytes_out 5452 189171 bytes_in 26559 189171 station_ip 83.123.106.126 189171 port 393 189171 unique_id port 189171 remote_ip 10.8.0.26 189173 username shahruz 189173 mac 189173 bytes_out 6006 189173 bytes_in 11081 189173 station_ip 5.209.154.41 189173 port 409 189173 unique_id port 189173 remote_ip 10.8.0.146 189178 username motamedi9772 189178 mac 189178 bytes_out 25880 189178 bytes_in 70007 189178 station_ip 83.123.17.251 189178 port 400 189178 unique_id port 189178 remote_ip 10.8.0.154 189181 username kalantary6037 189181 mac 189181 bytes_out 45679 189181 bytes_in 104394 189181 station_ip 83.123.15.117 189181 port 405 189181 unique_id port 189181 remote_ip 10.8.0.50 189184 username shahruz 189184 mac 189184 bytes_out 0 189184 bytes_in 0 189184 station_ip 89.198.99.144 189184 port 413 189184 unique_id port 189184 remote_ip 10.8.0.146 189188 username shahruz 189188 mac 189188 bytes_out 0 189188 bytes_in 0 189188 station_ip 89.199.55.17 189188 port 413 189188 unique_id port 189188 remote_ip 10.8.0.146 189191 username esmaeilkazemi 189191 mac 189191 bytes_out 0 189191 bytes_in 0 189191 station_ip 83.123.106.126 189191 port 409 189191 unique_id port 189191 remote_ip 10.8.0.26 189194 username shahruz 189194 mac 189194 bytes_out 0 189194 bytes_in 0 189194 station_ip 89.199.55.17 189194 port 409 189194 unique_id port 189194 remote_ip 10.8.0.146 189195 username shahruz 189195 mac 189195 bytes_out 0 189195 bytes_in 0 189195 station_ip 89.199.55.17 189195 port 409 189195 unique_id port 189195 remote_ip 10.8.0.146 189197 username esmaeilkazemi 189197 mac 189197 bytes_out 13648 189197 bytes_in 42661 189197 station_ip 83.123.106.126 189197 port 413 189197 unique_id port 189197 remote_ip 10.8.0.26 189201 username pourshad 189201 mac 189201 bytes_out 298093 189201 bytes_in 699344 189201 station_ip 5.120.215.224 189201 port 379 189201 unique_id port 189201 remote_ip 10.8.0.42 189205 username pourshad 189205 mac 189205 bytes_out 0 189205 bytes_in 0 189205 station_ip 5.120.215.224 189205 port 379 189205 unique_id port 189205 remote_ip 10.8.0.42 189206 username akbari0070 189206 mac 189206 bytes_out 833886 189206 bytes_in 8601749 189206 station_ip 83.123.0.105 189206 port 393 189206 unique_id port 189206 remote_ip 10.8.0.166 189211 username naeimeh 189211 mac 189174 bytes_in 0 189174 station_ip 83.123.114.95 189174 port 393 189174 unique_id port 189174 remote_ip 10.8.0.138 189176 username shahruz 189176 mac 189176 bytes_out 0 189176 bytes_in 0 189176 station_ip 5.209.82.9 189176 port 393 189176 unique_id port 189176 remote_ip 10.8.0.146 189179 username motamedi9772 189179 mac 189179 bytes_out 0 189179 bytes_in 0 189179 station_ip 83.123.17.251 189179 port 400 189179 unique_id port 189179 remote_ip 10.8.0.154 189183 username shahruz 189183 mac 189183 bytes_out 0 189183 bytes_in 0 189183 station_ip 5.209.82.9 189183 port 405 189183 unique_id port 189183 remote_ip 10.8.0.146 189186 username motamedi9772 189186 mac 189186 bytes_out 12858 189186 bytes_in 35497 189186 station_ip 83.123.17.251 189186 port 412 189186 unique_id port 189186 remote_ip 10.8.0.154 189187 username motamedi9772 189187 mac 189187 bytes_out 0 189187 bytes_in 0 189187 station_ip 83.123.17.251 189187 port 405 189187 unique_id port 189187 remote_ip 10.8.0.154 189190 username kharazmi2920 189190 mac 189190 bytes_out 698681 189190 bytes_in 2425508 189190 station_ip 83.123.19.50 189190 port 393 189190 unique_id port 189190 remote_ip 10.8.0.22 189193 username esmaeilkazemi 189193 mac 189193 bytes_out 0 189193 bytes_in 0 189193 station_ip 83.123.106.126 189193 port 412 189193 unique_id port 189193 remote_ip 10.8.0.26 189196 username shahruz 189196 mac 189196 bytes_out 0 189196 bytes_in 0 189196 station_ip 89.199.55.17 189196 port 409 189196 unique_id port 189196 remote_ip 10.8.0.146 189199 username saeed9658 189199 mac 189199 bytes_out 3450482 189199 bytes_in 30998996 189199 station_ip 5.120.90.208 189199 port 350 189199 unique_id port 189199 remote_ip 10.8.0.162 189202 username barzegar 189202 mac 189202 bytes_out 0 189202 bytes_in 0 189202 station_ip 5.119.72.132 189202 port 379 189202 unique_id port 189202 remote_ip 10.8.0.70 189207 username fezealinaghi 189207 mac 189207 bytes_out 0 189207 bytes_in 0 189207 station_ip 83.123.39.230 189207 port 338 189207 unique_id port 189209 username motamedi9772 189209 mac 189209 bytes_out 169226 189209 bytes_in 2265300 189209 station_ip 83.123.101.127 189209 port 379 189209 unique_id port 189209 remote_ip 10.8.0.154 189212 username naeimeh 189212 mac 189212 bytes_out 0 189212 bytes_in 0 189212 station_ip 83.123.27.79 189212 port 338 189212 unique_id port 189212 remote_ip 10.8.0.78 189214 username naeimeh 189214 mac 189214 bytes_out 24163 189214 bytes_in 106062 189214 station_ip 83.123.44.223 189214 port 350 189214 unique_id port 189214 remote_ip 10.8.0.78 189216 username pourshad 189216 mac 189216 bytes_out 112368 189216 bytes_in 1427062 189216 station_ip 5.120.215.224 189216 port 409 189216 unique_id port 189216 remote_ip 10.8.0.42 189219 username milan 189219 kill_reason Another user logged on this global unique id 189219 mac 189219 bytes_out 0 189219 bytes_in 0 189219 station_ip 5.119.23.34 189219 port 410 189219 unique_id port 189219 remote_ip 10.8.0.182 189223 username barzegar 189223 mac 189223 bytes_out 2123 189223 bytes_in 4493 189223 station_ip 5.119.72.132 189223 port 393 189223 unique_id port 189223 remote_ip 10.8.0.70 189225 username shahruz 189225 mac 189225 bytes_out 0 189225 bytes_in 0 189225 station_ip 89.199.55.17 189225 port 400 189225 unique_id port 189225 remote_ip 10.8.0.146 189228 username shahruz 189228 mac 189228 bytes_out 0 189228 bytes_in 0 189228 station_ip 89.199.55.17 189182 unique_id port 189182 remote_ip 10.8.0.70 189185 username shahruz 189185 mac 189185 bytes_out 0 189185 bytes_in 0 189185 station_ip 89.198.99.144 189185 port 405 189185 unique_id port 189185 remote_ip 10.8.0.146 189189 username yaghobi 189189 mac 189189 bytes_out 264846 189189 bytes_in 414323 189189 station_ip 83.123.114.95 189189 port 409 189189 unique_id port 189189 remote_ip 10.8.0.138 189192 username motamedi9772 189192 mac 189192 bytes_out 5497 189192 bytes_in 11524 189192 station_ip 83.123.17.251 189192 port 393 189192 unique_id port 189192 remote_ip 10.8.0.154 189198 username mahdiyehalizadeh 189198 kill_reason Relative expiration date has reached 189198 mac 189198 bytes_out 0 189198 bytes_in 0 189198 station_ip 5.120.126.71 189198 port 409 189198 unique_id port 189200 username mahdiyehalizadeh 189200 kill_reason Relative expiration date has reached 189200 mac 189200 bytes_out 0 189200 bytes_in 0 189200 station_ip 5.120.126.71 189200 port 412 189200 unique_id port 189203 username shahruz 189203 mac 189203 bytes_out 8660 189203 bytes_in 20868 189203 station_ip 89.199.55.17 189203 port 409 189203 unique_id port 189203 remote_ip 10.8.0.146 189204 username barzegar 189204 mac 189204 bytes_out 0 189204 bytes_in 0 189204 station_ip 5.119.72.132 189204 port 409 189204 unique_id port 189204 remote_ip 10.8.0.70 189208 username barzegar8595 189208 mac 189208 bytes_out 105636 189208 bytes_in 439872 189208 station_ip 185.128.137.111 189208 port 350 189208 unique_id port 189208 remote_ip 10.8.0.114 189210 username shahruz 189210 mac 189210 bytes_out 20653 189210 bytes_in 58612 189210 station_ip 89.199.55.17 189210 port 412 189210 unique_id port 189210 remote_ip 10.8.0.146 189217 username yaghobi 189217 mac 189217 bytes_out 7044 189217 bytes_in 7323 189217 station_ip 83.123.25.108 189217 port 338 189217 unique_id port 189217 remote_ip 10.8.0.138 189220 username hosseine 189220 kill_reason Another user logged on this global unique id 189220 mac 189220 bytes_out 0 189220 bytes_in 0 189220 station_ip 83.123.62.81 189220 port 396 189220 unique_id port 189220 remote_ip 10.8.0.54 189221 username shahruz 189221 mac 189221 bytes_out 5120 189221 bytes_in 12799 189221 station_ip 89.199.55.17 189221 port 350 189221 unique_id port 189221 remote_ip 10.8.0.146 189222 username naeimeh 189222 mac 189222 bytes_out 471296 189222 bytes_in 5200897 189222 station_ip 83.123.66.33 189222 port 379 189222 unique_id port 189222 remote_ip 10.8.0.78 189224 username barzegar 189224 mac 189224 bytes_out 0 189224 bytes_in 0 189224 station_ip 5.119.72.132 189224 port 379 189224 unique_id port 189224 remote_ip 10.8.0.70 189226 username shahruz 189226 mac 189226 bytes_out 0 189226 bytes_in 0 189226 station_ip 89.199.55.17 189226 port 379 189226 unique_id port 189226 remote_ip 10.8.0.146 189232 username hadibarzegar 189232 kill_reason Another user logged on this global unique id 189232 mac 189232 bytes_out 0 189232 bytes_in 0 189232 station_ip 83.123.105.65 189232 port 413 189232 unique_id port 189232 remote_ip 10.8.0.174 189234 username sabaghnezhad 189234 mac 189234 bytes_out 83331 189234 bytes_in 464823 189234 station_ip 188.229.55.56 189234 port 393 189234 unique_id port 189234 remote_ip 10.8.0.66 189240 username aminvpn 189240 unique_id port 189240 terminate_cause Lost-Carrier 189240 bytes_out 16142 189240 bytes_in 36372 189240 station_ip 5.120.23.7 189240 port 15729123 189240 nas_port_type Virtual 189240 remote_ip 5.5.5.97 189250 username hadibarzegar 189211 bytes_out 2605241 189211 bytes_in 29849083 189211 station_ip 83.123.27.79 189211 port 400 189211 unique_id port 189211 remote_ip 10.8.0.78 189213 username hamid.e 189213 unique_id port 189213 terminate_cause User-Request 189213 bytes_out 205941 189213 bytes_in 2776274 189213 station_ip 37.27.13.127 189213 port 15729122 189213 nas_port_type Virtual 189213 remote_ip 5.5.5.98 189215 username dortaj3792 189215 mac 189215 bytes_out 342624 189215 bytes_in 686999 189215 station_ip 5.119.122.44 189215 port 411 189215 unique_id port 189215 remote_ip 10.8.0.102 189218 username shahruz 189218 mac 189218 bytes_out 0 189218 bytes_in 0 189218 station_ip 89.199.55.17 189218 port 338 189218 unique_id port 189218 remote_ip 10.8.0.146 189227 username aminvpn 189227 unique_id port 189227 terminate_cause User-Request 189227 bytes_out 2090130 189227 bytes_in 6920138 189227 station_ip 5.120.23.7 189227 port 15729121 189227 nas_port_type Virtual 189227 remote_ip 5.5.5.97 189231 username shahruz 189231 mac 189231 bytes_out 2599 189231 bytes_in 4825 189231 station_ip 89.199.55.17 189231 port 393 189231 unique_id port 189231 remote_ip 10.8.0.146 189238 username naeimeh 189238 mac 189238 bytes_out 2302962 189238 bytes_in 26065452 189238 station_ip 83.123.66.33 189238 port 350 189238 unique_id port 189238 remote_ip 10.8.0.78 189241 username milan 189241 kill_reason Another user logged on this global unique id 189241 mac 189241 bytes_out 0 189241 bytes_in 0 189241 station_ip 5.119.23.34 189241 port 410 189241 unique_id port 189243 username sabaghnezhad 189243 mac 189243 bytes_out 49935 189243 bytes_in 47155 189243 station_ip 188.229.55.56 189243 port 412 189243 unique_id port 189243 remote_ip 10.8.0.66 189244 username soleymani5056 189244 mac 189244 bytes_out 103128 189244 bytes_in 395159 189244 station_ip 5.120.139.15 189244 port 400 189244 unique_id port 189244 remote_ip 10.8.0.226 189245 username kharazmi2920 189245 mac 189245 bytes_out 0 189245 bytes_in 0 189245 station_ip 5.120.42.62 189245 port 411 189245 unique_id port 189247 username zahra1101 189247 mac 189247 bytes_out 263226 189247 bytes_in 1634968 189247 station_ip 5.120.177.205 189247 port 414 189247 unique_id port 189247 remote_ip 10.8.0.250 189248 username barzegar 189248 mac 189248 bytes_out 0 189248 bytes_in 0 189248 station_ip 5.119.72.132 189248 port 400 189248 unique_id port 189248 remote_ip 10.8.0.70 189252 username zahra1101 189252 mac 189252 bytes_out 381262 189252 bytes_in 1767952 189252 station_ip 5.120.177.205 189252 port 404 189252 unique_id port 189252 remote_ip 10.8.0.250 189254 username zahra1101 189254 mac 189254 bytes_out 15396 189254 bytes_in 19424 189254 station_ip 5.120.177.205 189254 port 414 189254 unique_id port 189254 remote_ip 10.8.0.250 189256 username zahra1101 189256 mac 189256 bytes_out 0 189256 bytes_in 0 189256 station_ip 5.120.177.205 189256 port 412 189256 unique_id port 189256 remote_ip 10.8.0.250 189257 username mosi 189257 mac 189257 bytes_out 743928 189257 bytes_in 3170749 189257 station_ip 5.62.220.176 189257 port 400 189257 unique_id port 189257 remote_ip 10.8.0.142 189260 username yaghobi 189260 mac 189260 bytes_out 510837 189260 bytes_in 517140 189260 station_ip 83.123.60.37 189260 port 411 189260 unique_id port 189260 remote_ip 10.8.0.138 189264 username godarzi 189264 mac 189264 bytes_out 222578 189264 bytes_in 1719478 189264 station_ip 5.202.29.254 189264 port 400 189264 unique_id port 189264 remote_ip 10.8.0.38 189228 port 379 189228 unique_id port 189228 remote_ip 10.8.0.146 189229 username shahruz 189229 kill_reason Maximum number of concurrent logins reached 189229 mac 189229 bytes_out 0 189229 bytes_in 0 189229 station_ip 89.199.55.17 189229 port 400 189229 unique_id port 189230 username shahruz 189230 kill_reason Maximum check online fails reached 189230 mac 189230 bytes_out 0 189230 bytes_in 0 189230 station_ip 89.199.55.17 189230 port 379 189230 unique_id port 189233 username pourshad 189233 mac 189233 bytes_out 11648344 189233 bytes_in 6794873 189233 station_ip 5.120.215.224 189233 port 338 189233 unique_id port 189233 remote_ip 10.8.0.42 189235 username barzegar 189235 mac 189235 bytes_out 0 189235 bytes_in 0 189235 station_ip 5.119.72.132 189235 port 393 189235 unique_id port 189235 remote_ip 10.8.0.70 189236 username barzegar 189236 mac 189236 bytes_out 0 189236 bytes_in 0 189236 station_ip 5.119.72.132 189236 port 393 189236 unique_id port 189236 remote_ip 10.8.0.70 189237 username pourshad 189237 mac 189237 bytes_out 5461200 189237 bytes_in 9169400 189237 station_ip 5.120.215.224 189237 port 400 189237 unique_id port 189237 remote_ip 10.8.0.42 189239 username pourshad 189239 mac 189239 bytes_out 629813 189239 bytes_in 11677156 189239 station_ip 5.120.215.224 189239 port 393 189239 unique_id port 189239 remote_ip 10.8.0.42 189242 username kharazmi2920 189242 kill_reason Another user logged on this global unique id 189242 mac 189242 bytes_out 0 189242 bytes_in 0 189242 station_ip 5.120.42.62 189242 port 411 189242 unique_id port 189242 remote_ip 10.8.0.22 189246 username godarzi 189246 mac 189246 bytes_out 0 189246 bytes_in 0 189246 station_ip 5.202.29.254 189246 port 404 189246 unique_id port 189249 username pourshad 189249 mac 189249 bytes_out 459440 189249 bytes_in 6973049 189249 station_ip 5.120.215.224 189249 port 393 189249 unique_id port 189249 remote_ip 10.8.0.42 189253 username zahra1101 189253 kill_reason Maximum check online fails reached 189253 mac 189253 bytes_out 0 189253 bytes_in 0 189253 station_ip 5.120.177.205 189253 port 404 189253 unique_id port 189258 username naeimeh 189258 mac 189258 bytes_out 63872 189258 bytes_in 180135 189258 station_ip 83.123.42.19 189258 port 415 189258 unique_id port 189258 remote_ip 10.8.0.78 189259 username milan 189259 kill_reason Another user logged on this global unique id 189259 mac 189259 bytes_out 0 189259 bytes_in 0 189259 station_ip 5.119.23.34 189259 port 410 189259 unique_id port 189261 username barzegar 189261 mac 189261 bytes_out 0 189261 bytes_in 0 189261 station_ip 5.119.72.132 189261 port 411 189261 unique_id port 189261 remote_ip 10.8.0.70 189263 username barzegar8595 189263 mac 189263 bytes_out 1538663 189263 bytes_in 14052870 189263 station_ip 46.225.211.163 189263 port 409 189263 unique_id port 189263 remote_ip 10.8.0.114 189265 username motamedi9772 189265 mac 189265 bytes_out 161283 189265 bytes_in 3100143 189265 station_ip 83.123.10.235 189265 port 411 189265 unique_id port 189265 remote_ip 10.8.0.154 189268 username zahra1101 189268 mac 189268 bytes_out 0 189268 bytes_in 0 189268 station_ip 5.120.177.205 189268 port 400 189268 unique_id port 189268 remote_ip 10.8.0.250 189272 username aminvpn 189272 mac 189272 bytes_out 0 189272 bytes_in 0 189272 station_ip 5.119.36.146 189272 port 411 189272 unique_id port 189272 remote_ip 10.8.0.58 189274 username pourshad 189274 mac 189274 bytes_out 820671 189274 bytes_in 11698834 189250 kill_reason Another user logged on this global unique id 189250 mac 189250 bytes_out 0 189250 bytes_in 0 189250 station_ip 83.123.105.65 189250 port 413 189250 unique_id port 189251 username morteza4424 189251 kill_reason Another user logged on this global unique id 189251 mac 189251 bytes_out 0 189251 bytes_in 0 189251 station_ip 83.123.106.187 189251 port 350 189251 unique_id port 189251 remote_ip 10.8.0.206 189255 username rezaei 189255 mac 189255 bytes_out 714930 189255 bytes_in 5852043 189255 station_ip 5.119.222.93 189255 port 412 189255 unique_id port 189255 remote_ip 10.8.0.198 189262 username yaghobi 189262 mac 189262 bytes_out 12420 189262 bytes_in 23936 189262 station_ip 83.123.83.77 189262 port 414 189262 unique_id port 189262 remote_ip 10.8.0.138 189266 username morteza4424 189266 kill_reason Another user logged on this global unique id 189266 mac 189266 bytes_out 0 189266 bytes_in 0 189266 station_ip 83.123.106.187 189266 port 350 189266 unique_id port 189267 username yaghobi 189267 mac 189267 bytes_out 120586 189267 bytes_in 175264 189267 station_ip 83.123.83.77 189267 port 415 189267 unique_id port 189267 remote_ip 10.8.0.138 189269 username aminvpn 189269 mac 189269 bytes_out 2075586 189269 bytes_in 14357049 189269 station_ip 83.123.48.149 189269 port 399 189269 unique_id port 189269 remote_ip 10.8.0.58 189273 username aminvpn 189273 mac 189273 bytes_out 0 189273 bytes_in 0 189273 station_ip 83.123.48.149 189273 port 400 189273 unique_id port 189273 remote_ip 10.8.0.58 189276 username aminvpn 189276 mac 189276 bytes_out 0 189276 bytes_in 0 189276 station_ip 83.123.48.149 189276 port 393 189276 unique_id port 189276 remote_ip 10.8.0.58 189277 username morteza4424 189277 mac 189277 bytes_out 0 189277 bytes_in 0 189277 station_ip 83.123.106.187 189277 port 350 189277 unique_id port 189280 username esmaeilkazemi 189280 mac 189280 bytes_out 46223 189280 bytes_in 207922 189280 station_ip 83.123.106.126 189280 port 414 189280 unique_id port 189280 remote_ip 10.8.0.26 189282 username esmaeilkazemi 189282 mac 189282 bytes_out 0 189282 bytes_in 0 189282 station_ip 83.123.106.126 189282 port 350 189282 unique_id port 189282 remote_ip 10.8.0.26 189284 username hadibarzegar 189284 kill_reason Another user logged on this global unique id 189284 mac 189284 bytes_out 0 189284 bytes_in 0 189284 station_ip 83.123.105.65 189284 port 413 189284 unique_id port 189285 username aminvpn 189285 mac 189285 bytes_out 0 189285 bytes_in 0 189285 station_ip 5.119.36.146 189285 port 350 189285 unique_id port 189285 remote_ip 10.8.0.58 189288 username pourshad 189288 mac 189288 bytes_out 62994 189288 bytes_in 399851 189288 station_ip 5.120.215.224 189288 port 393 189288 unique_id port 189288 remote_ip 10.8.0.42 189291 username esmaeilkazemi 189291 mac 189291 bytes_out 0 189291 bytes_in 0 189291 station_ip 83.123.106.126 189291 port 393 189291 unique_id port 189291 remote_ip 10.8.0.26 189292 username aminvpn 189292 mac 189292 bytes_out 0 189292 bytes_in 0 189292 station_ip 5.119.36.146 189292 port 350 189292 unique_id port 189292 remote_ip 10.8.0.58 189296 username milan 189296 kill_reason Another user logged on this global unique id 189296 mac 189296 bytes_out 0 189296 bytes_in 0 189296 station_ip 5.119.23.34 189296 port 410 189296 unique_id port 189298 username aminvpn 189298 mac 189298 bytes_out 0 189298 bytes_in 0 189298 station_ip 5.119.32.211 189298 port 350 189298 unique_id port 189298 remote_ip 10.8.0.58 189270 username aminvpn 189270 mac 189270 bytes_out 0 189270 bytes_in 0 189270 station_ip 5.119.36.146 189270 port 400 189270 unique_id port 189270 remote_ip 10.8.0.58 189271 username zahra1101 189271 mac 189271 bytes_out 0 189271 bytes_in 0 189271 station_ip 5.120.177.205 189271 port 400 189271 unique_id port 189271 remote_ip 10.8.0.250 189278 username aminvpn 189278 mac 189278 bytes_out 0 189278 bytes_in 0 189278 station_ip 5.119.36.146 189278 port 400 189278 unique_id port 189278 remote_ip 10.8.0.58 189283 username aminvpn 189283 mac 189283 bytes_out 0 189283 bytes_in 0 189283 station_ip 83.123.48.149 189283 port 400 189283 unique_id port 189283 remote_ip 10.8.0.58 189286 username esmaeilkazemi 189286 mac 189286 bytes_out 0 189286 bytes_in 0 189286 station_ip 83.123.106.126 189286 port 396 189286 unique_id port 189286 remote_ip 10.8.0.26 189289 username esmaeilkazemi 189289 mac 189289 bytes_out 0 189289 bytes_in 0 189289 station_ip 83.123.106.126 189289 port 350 189289 unique_id port 189289 remote_ip 10.8.0.26 189293 username esmaeilkazemi 189293 mac 189293 bytes_out 2258 189293 bytes_in 3973 189293 station_ip 83.123.106.126 189293 port 396 189293 unique_id port 189293 remote_ip 10.8.0.26 189295 username barzegar 189295 mac 189295 bytes_out 0 189295 bytes_in 0 189295 station_ip 5.119.72.132 189295 port 396 189295 unique_id port 189295 remote_ip 10.8.0.70 189300 username aminvpn 189300 mac 189300 bytes_out 0 189300 bytes_in 0 189300 station_ip 5.119.32.211 189300 port 350 189300 unique_id port 189300 remote_ip 10.8.0.58 189301 username morteza4424 189301 mac 189301 bytes_out 7794725 189301 bytes_in 1118280 189301 station_ip 83.123.106.187 189301 port 411 189301 unique_id port 189301 remote_ip 10.8.0.206 189304 username aminvpn 189304 mac 189304 bytes_out 0 189304 bytes_in 0 189304 station_ip 5.119.36.146 189304 port 396 189304 unique_id port 189304 remote_ip 10.8.0.58 189306 username yaghobi 189306 mac 189306 bytes_out 207887 189306 bytes_in 330893 189306 station_ip 83.123.60.167 189306 port 409 189306 unique_id port 189306 remote_ip 10.8.0.138 189307 username aminvpn 189307 mac 189307 bytes_out 0 189307 bytes_in 0 189307 station_ip 5.119.32.211 189307 port 400 189307 unique_id port 189307 remote_ip 10.8.0.58 189311 username morteza4424 189311 mac 189311 bytes_out 0 189311 bytes_in 0 189311 station_ip 83.123.106.187 189311 port 338 189311 unique_id port 189311 remote_ip 10.8.0.206 189313 username aminvpn 189313 mac 189313 bytes_out 0 189313 bytes_in 0 189313 station_ip 5.119.32.211 189313 port 396 189313 unique_id port 189313 remote_ip 10.8.0.58 189322 username zahra1101 189322 mac 189322 bytes_out 19872 189322 bytes_in 32023 189322 station_ip 5.120.177.205 189322 port 338 189322 unique_id port 189322 remote_ip 10.8.0.250 189324 username aminvpn 189324 mac 189324 bytes_out 0 189324 bytes_in 0 189324 station_ip 5.119.32.211 189324 port 338 189324 unique_id port 189324 remote_ip 10.8.0.58 189328 username milan 189328 kill_reason Another user logged on this global unique id 189328 mac 189328 bytes_out 0 189328 bytes_in 0 189328 station_ip 5.119.23.34 189328 port 410 189328 unique_id port 189330 username pourshad 189330 mac 189330 bytes_out 302563 189330 bytes_in 4484514 189330 station_ip 5.120.215.224 189330 port 393 189330 unique_id port 189330 remote_ip 10.8.0.42 189332 username aminvpn 189332 mac 189332 bytes_out 0 189274 station_ip 5.120.215.224 189274 port 393 189274 unique_id port 189274 remote_ip 10.8.0.42 189275 username aminvpn 189275 mac 189275 bytes_out 0 189275 bytes_in 0 189275 station_ip 5.119.36.146 189275 port 411 189275 unique_id port 189275 remote_ip 10.8.0.58 189279 username aminvpn 189279 mac 189279 bytes_out 0 189279 bytes_in 0 189279 station_ip 5.119.36.146 189279 port 350 189279 unique_id port 189279 remote_ip 10.8.0.58 189281 username hosseine 189281 mac 189281 bytes_out 0 189281 bytes_in 0 189281 station_ip 83.123.62.81 189281 port 396 189281 unique_id port 189287 username aminvpn 189287 mac 189287 bytes_out 0 189287 bytes_in 0 189287 station_ip 5.119.36.146 189287 port 400 189287 unique_id port 189287 remote_ip 10.8.0.58 189290 username aminvpn 189290 mac 189290 bytes_out 0 189290 bytes_in 0 189290 station_ip 83.123.48.149 189290 port 396 189290 unique_id port 189290 remote_ip 10.8.0.58 189294 username zahra1101 189294 mac 189294 bytes_out 0 189294 bytes_in 0 189294 station_ip 5.120.177.205 189294 port 350 189294 unique_id port 189294 remote_ip 10.8.0.250 189297 username aminvpn 189297 mac 189297 bytes_out 47290 189297 bytes_in 50431 189297 station_ip 5.119.36.146 189297 port 400 189297 unique_id port 189297 remote_ip 10.8.0.58 189302 username mosi 189302 mac 189302 bytes_out 857777 189302 bytes_in 2021517 189302 station_ip 89.34.47.31 189302 port 412 189302 unique_id port 189302 remote_ip 10.8.0.142 189309 username fezealinaghi 189309 mac 189309 bytes_out 1990332 189309 bytes_in 21140974 189309 station_ip 83.123.51.118 189309 port 338 189309 unique_id port 189309 remote_ip 10.8.0.202 189310 username aminvpn 189310 mac 189310 bytes_out 0 189310 bytes_in 0 189310 station_ip 5.119.36.146 189310 port 409 189310 unique_id port 189310 remote_ip 10.8.0.58 189315 username morteza4424 189315 mac 189315 bytes_out 0 189315 bytes_in 0 189315 station_ip 83.123.106.187 189315 port 396 189315 unique_id port 189315 remote_ip 10.8.0.206 189320 username morteza4424 189320 mac 189320 bytes_out 2066 189320 bytes_in 4311 189320 station_ip 83.123.106.187 189320 port 400 189320 unique_id port 189320 remote_ip 10.8.0.206 189323 username aminvpn 189323 mac 189323 bytes_out 0 189323 bytes_in 0 189323 station_ip 5.119.36.146 189323 port 400 189323 unique_id port 189323 remote_ip 10.8.0.58 189326 username barzegar 189326 mac 189326 bytes_out 0 189326 bytes_in 0 189326 station_ip 5.119.72.132 189326 port 400 189326 unique_id port 189326 remote_ip 10.8.0.70 189327 username aminvpn 189327 mac 189327 bytes_out 0 189327 bytes_in 0 189327 station_ip 5.119.32.211 189327 port 409 189327 unique_id port 189327 remote_ip 10.8.0.58 189329 username zahra1101 189329 mac 189329 bytes_out 2167 189329 bytes_in 4407 189329 station_ip 5.120.177.205 189329 port 338 189329 unique_id port 189329 remote_ip 10.8.0.250 189331 username aminvpn 189331 mac 189331 bytes_out 0 189331 bytes_in 0 189331 station_ip 5.119.36.146 189331 port 396 189331 unique_id port 189331 remote_ip 10.8.0.58 189336 username aminvpn 189336 mac 189336 bytes_out 0 189336 bytes_in 0 189336 station_ip 5.119.32.211 189336 port 338 189336 unique_id port 189336 remote_ip 10.8.0.58 189337 username motamedi9772 189337 mac 189337 bytes_out 2632050 189337 bytes_in 26904803 189337 station_ip 83.123.10.235 189337 port 399 189337 unique_id port 189337 remote_ip 10.8.0.154 189299 username aminvpn 189299 mac 189299 bytes_out 0 189299 bytes_in 0 189299 station_ip 5.119.36.146 189299 port 396 189299 unique_id port 189299 remote_ip 10.8.0.58 189303 username morteza4424 189303 mac 189303 bytes_out 0 189303 bytes_in 0 189303 station_ip 83.123.106.187 189303 port 400 189303 unique_id port 189303 remote_ip 10.8.0.206 189305 username zahra1101 189305 mac 189305 bytes_out 0 189305 bytes_in 0 189305 station_ip 5.120.177.205 189305 port 411 189305 unique_id port 189305 remote_ip 10.8.0.250 189308 username morteza4424 189308 mac 189308 bytes_out 0 189308 bytes_in 0 189308 station_ip 83.123.106.187 189308 port 396 189308 unique_id port 189308 remote_ip 10.8.0.206 189312 username yaghobi 189312 kill_reason Maximum check online fails reached 189312 mac 189312 bytes_out 0 189312 bytes_in 0 189312 station_ip 83.123.60.167 189312 port 350 189312 unique_id port 189314 username morteza4424 189314 mac 189314 bytes_out 0 189314 bytes_in 0 189314 station_ip 83.123.106.187 189314 port 338 189314 unique_id port 189314 remote_ip 10.8.0.206 189316 username morteza4424 189316 mac 189316 bytes_out 0 189316 bytes_in 0 189316 station_ip 83.123.106.187 189316 port 396 189316 unique_id port 189316 remote_ip 10.8.0.206 189317 username aminvpn 189317 mac 189317 bytes_out 23455 189317 bytes_in 22354 189317 station_ip 5.119.36.146 189317 port 400 189317 unique_id port 189317 remote_ip 10.8.0.58 189318 username aminvpn 189318 mac 189318 bytes_out 0 189318 bytes_in 0 189318 station_ip 5.119.32.211 189318 port 396 189318 unique_id port 189318 remote_ip 10.8.0.58 189319 username aminvpn 189319 mac 189319 bytes_out 0 189319 bytes_in 0 189319 station_ip 5.119.36.146 189319 port 409 189319 unique_id port 189319 remote_ip 10.8.0.58 189321 username aminvpn 189321 mac 189321 bytes_out 0 189321 bytes_in 0 189321 station_ip 5.119.32.211 189321 port 396 189321 unique_id port 189321 remote_ip 10.8.0.58 189325 username aminvpn 189325 mac 189325 bytes_out 0 189325 bytes_in 0 189325 station_ip 5.119.36.146 189325 port 396 189325 unique_id port 189325 remote_ip 10.8.0.58 189338 username motamedi9772 189338 mac 189338 bytes_out 0 189338 bytes_in 0 189338 station_ip 83.123.10.235 189338 port 338 189338 unique_id port 189338 remote_ip 10.8.0.154 189344 username zahra1101 189344 mac 189344 bytes_out 0 189344 bytes_in 0 189344 station_ip 5.120.177.205 189344 port 411 189344 unique_id port 189344 remote_ip 10.8.0.250 189346 username aminvpn 189346 unique_id port 189346 terminate_cause Lost-Carrier 189346 bytes_out 30637032 189346 bytes_in 1081402102 189346 station_ip 31.57.143.200 189346 port 15729115 189346 nas_port_type Virtual 189346 remote_ip 5.5.5.95 189349 username zahra1101 189349 mac 189349 bytes_out 0 189349 bytes_in 0 189349 station_ip 5.120.177.205 189349 port 338 189349 unique_id port 189349 remote_ip 10.8.0.250 189351 username barzegar 189351 mac 189351 bytes_out 0 189351 bytes_in 0 189351 station_ip 5.119.72.132 189351 port 412 189351 unique_id port 189351 remote_ip 10.8.0.70 189352 username zahra1101 189352 mac 189352 bytes_out 18475 189352 bytes_in 28262 189352 station_ip 5.120.177.205 189352 port 416 189352 unique_id port 189352 remote_ip 10.8.0.250 189353 username pourshad 189353 mac 189353 bytes_out 197982 189353 bytes_in 188570 189353 station_ip 5.120.215.224 189353 port 393 189353 unique_id port 189353 remote_ip 10.8.0.42 189356 username kharazmi2920 189332 bytes_in 0 189332 station_ip 5.119.32.211 189332 port 338 189332 unique_id port 189332 remote_ip 10.8.0.58 189333 username aminvpn 189333 mac 189333 bytes_out 0 189333 bytes_in 0 189333 station_ip 5.119.36.146 189333 port 396 189333 unique_id port 189333 remote_ip 10.8.0.58 189334 username aminvpn 189334 mac 189334 bytes_out 0 189334 bytes_in 0 189334 station_ip 5.119.32.211 189334 port 338 189334 unique_id port 189334 remote_ip 10.8.0.58 189335 username aminvpn 189335 mac 189335 bytes_out 0 189335 bytes_in 0 189335 station_ip 5.119.36.146 189335 port 400 189335 unique_id port 189335 remote_ip 10.8.0.58 189339 username motamedi9772 189339 mac 189339 bytes_out 0 189339 bytes_in 0 189339 station_ip 83.123.10.235 189339 port 338 189339 unique_id port 189339 remote_ip 10.8.0.154 189342 username aminvpn 189342 mac 189342 bytes_out 171674 189342 bytes_in 2789014 189342 station_ip 5.119.32.211 189342 port 338 189342 unique_id port 189342 remote_ip 10.8.0.58 189343 username aminvpn 189343 mac 189343 bytes_out 0 189343 bytes_in 0 189343 station_ip 5.119.36.146 189343 port 409 189343 unique_id port 189343 remote_ip 10.8.0.58 189345 username aminvpn 189345 mac 189345 bytes_out 0 189345 bytes_in 0 189345 station_ip 5.119.32.211 189345 port 338 189345 unique_id port 189345 remote_ip 10.8.0.58 189347 username zahra1101 189347 kill_reason Maximum check online fails reached 189347 mac 189347 bytes_out 0 189347 bytes_in 0 189347 station_ip 5.120.177.205 189347 port 409 189347 unique_id port 189348 username milan 189348 kill_reason Another user logged on this global unique id 189348 mac 189348 bytes_out 0 189348 bytes_in 0 189348 station_ip 5.119.23.34 189348 port 410 189348 unique_id port 189350 username yaghobi 189350 mac 189350 bytes_out 239741 189350 bytes_in 252824 189350 station_ip 83.123.72.171 189350 port 400 189350 unique_id port 189350 remote_ip 10.8.0.138 189354 username esmaeilkazemi 189354 mac 189354 bytes_out 3307 189354 bytes_in 22552 189354 station_ip 83.123.106.126 189354 port 393 189354 unique_id port 189354 remote_ip 10.8.0.26 189358 username barzegar 189358 mac 189358 bytes_out 0 189358 bytes_in 0 189358 station_ip 5.119.72.132 189358 port 417 189358 unique_id port 189358 remote_ip 10.8.0.70 189362 username barzegar 189362 kill_reason Maximum check online fails reached 189362 mac 189362 bytes_out 0 189362 bytes_in 0 189362 station_ip 5.119.72.132 189362 port 396 189362 unique_id port 189365 username shahruz 189365 mac 189365 bytes_out 5835 189365 bytes_in 9922 189365 station_ip 5.209.165.65 189365 port 417 189365 unique_id port 189365 remote_ip 10.8.0.146 189367 username pourshad 189367 mac 189367 bytes_out 100358 189367 bytes_in 854650 189367 station_ip 5.120.215.224 189367 port 412 189367 unique_id port 189367 remote_ip 10.8.0.42 189370 username zahra1101 189370 kill_reason Maximum check online fails reached 189370 mac 189370 bytes_out 0 189370 bytes_in 0 189370 station_ip 5.120.177.205 189370 port 393 189370 unique_id port 189375 username godarzi 189375 mac 189375 bytes_out 3482212 189375 bytes_in 22195853 189375 station_ip 5.202.29.254 189375 port 414 189375 unique_id port 189375 remote_ip 10.8.0.38 189377 username barzegar 189377 mac 189377 bytes_out 0 189377 bytes_in 0 189377 station_ip 5.119.72.132 189377 port 338 189377 unique_id port 189377 remote_ip 10.8.0.70 189379 username shahruz 189379 mac 189379 bytes_out 0 189379 bytes_in 0 189340 username aminvpn 189340 mac 189340 bytes_out 0 189340 bytes_in 0 189340 station_ip 5.119.36.146 189340 port 400 189340 unique_id port 189340 remote_ip 10.8.0.58 189341 username motamedi9772 189341 mac 189341 bytes_out 0 189341 bytes_in 0 189341 station_ip 83.123.10.235 189341 port 399 189341 unique_id port 189341 remote_ip 10.8.0.154 189355 username zahra1101 189355 mac 189355 bytes_out 5324 189355 bytes_in 11592 189355 station_ip 5.120.177.205 189355 port 417 189355 unique_id port 189355 remote_ip 10.8.0.250 189359 username shahruz 189359 mac 189359 bytes_out 325893 189359 bytes_in 683555 189359 station_ip 5.209.165.65 189359 port 396 189359 unique_id port 189359 remote_ip 10.8.0.146 189361 username zahra1101 189361 mac 189361 bytes_out 0 189361 bytes_in 0 189361 station_ip 5.120.177.205 189361 port 417 189361 unique_id port 189361 remote_ip 10.8.0.250 189364 username zahra1101 189364 mac 189364 bytes_out 0 189364 bytes_in 0 189364 station_ip 5.120.177.205 189364 port 418 189364 unique_id port 189364 remote_ip 10.8.0.250 189369 username malekpoir 189369 kill_reason Maximum check online fails reached 189369 mac 189369 bytes_out 0 189369 bytes_in 0 189369 station_ip 5.119.203.248 189369 port 366 189369 unique_id port 189372 username shahruz 189372 mac 189372 bytes_out 0 189372 bytes_in 0 189372 station_ip 5.209.165.65 189372 port 338 189372 unique_id port 189372 remote_ip 10.8.0.146 189374 username shahruz 189374 mac 189374 bytes_out 2505 189374 bytes_in 4838 189374 station_ip 5.209.165.65 189374 port 417 189374 unique_id port 189374 remote_ip 10.8.0.146 189381 username zahra1101 189381 mac 189381 bytes_out 2096 189381 bytes_in 3629 189381 station_ip 5.120.177.205 189381 port 399 189381 unique_id port 189381 remote_ip 10.8.0.250 189384 username shahruz 189384 kill_reason Maximum check online fails reached 189384 mac 189384 bytes_out 0 189384 bytes_in 0 189384 station_ip 5.209.165.65 189384 port 412 189384 unique_id port 189390 username shahruz 189390 mac 189390 bytes_out 0 189390 bytes_in 0 189390 station_ip 5.209.165.65 189390 port 419 189390 unique_id port 189390 remote_ip 10.8.0.146 189395 username rashidi4690 189395 mac 189395 bytes_out 442853 189395 bytes_in 1391404 189395 station_ip 5.119.68.32 189395 port 399 189395 unique_id port 189395 remote_ip 10.8.0.242 189397 username vanila 189397 kill_reason Relative expiration date has reached 189397 mac 189397 bytes_out 0 189397 bytes_in 0 189397 station_ip 83.123.102.129 189397 port 414 189397 unique_id port 189404 username khademi 189404 kill_reason Another user logged on this global unique id 189404 mac 189404 bytes_out 0 189404 bytes_in 0 189404 station_ip 83.123.96.238 189404 port 403 189404 unique_id port 189408 username zahra1101 189408 mac 189408 bytes_out 0 189408 bytes_in 0 189408 station_ip 5.120.177.205 189408 port 414 189408 unique_id port 189408 remote_ip 10.8.0.250 189409 username barzegar 189409 mac 189409 bytes_out 0 189409 bytes_in 0 189409 station_ip 5.119.72.132 189409 port 414 189409 unique_id port 189409 remote_ip 10.8.0.70 189411 username shahruz 189411 mac 189411 bytes_out 784928 189411 bytes_in 7485591 189411 station_ip 5.209.165.65 189411 port 417 189411 unique_id port 189411 remote_ip 10.8.0.146 189413 username yaghobi 189413 mac 189413 bytes_out 23084 189413 bytes_in 40158 189413 station_ip 83.123.67.87 189413 port 420 189413 unique_id port 189413 remote_ip 10.8.0.138 189356 mac 189356 bytes_out 315576 189356 bytes_in 2270645 189356 station_ip 5.120.42.62 189356 port 416 189356 unique_id port 189356 remote_ip 10.8.0.22 189357 username motamedi9772 189357 kill_reason Another user logged on this global unique id 189357 mac 189357 bytes_out 0 189357 bytes_in 0 189357 station_ip 83.123.10.235 189357 port 399 189357 unique_id port 189357 remote_ip 10.8.0.154 189360 username motamedi9772 189360 mac 189360 bytes_out 0 189360 bytes_in 0 189360 station_ip 83.123.10.235 189360 port 399 189360 unique_id port 189363 username farhad3 189363 mac 189363 bytes_out 987884 189363 bytes_in 3398791 189363 station_ip 5.120.61.225 189363 port 393 189363 unique_id port 189363 remote_ip 10.8.0.222 189366 username milan 189366 kill_reason Another user logged on this global unique id 189366 mac 189366 bytes_out 0 189366 bytes_in 0 189366 station_ip 5.119.23.34 189366 port 410 189366 unique_id port 189368 username yaghobi 189368 mac 189368 bytes_out 2086832 189368 bytes_in 15038659 189368 station_ip 83.123.23.126 189368 port 338 189368 unique_id port 189368 remote_ip 10.8.0.138 189371 username khademi 189371 kill_reason Another user logged on this global unique id 189371 mac 189371 bytes_out 0 189371 bytes_in 0 189371 station_ip 83.123.96.238 189371 port 403 189371 unique_id port 189371 remote_ip 10.8.0.14 189373 username pourshad 189373 mac 189373 bytes_out 1661 189373 bytes_in 3248 189373 station_ip 5.120.215.224 189373 port 412 189373 unique_id port 189373 remote_ip 10.8.0.42 189376 username rashidi4690 189376 mac 189376 bytes_out 909922 189376 bytes_in 5440188 189376 station_ip 5.119.68.32 189376 port 399 189376 unique_id port 189376 remote_ip 10.8.0.242 189378 username zahra1101 189378 mac 189378 bytes_out 0 189378 bytes_in 0 189378 station_ip 5.120.177.205 189378 port 412 189378 unique_id port 189378 remote_ip 10.8.0.250 189380 username aminvpn 189380 unique_id port 189380 terminate_cause Lost-Carrier 189380 bytes_out 8522179 189380 bytes_in 145731964 189380 station_ip 5.119.109.57 189380 port 15729113 189380 nas_port_type Virtual 189380 remote_ip 5.5.5.100 189382 username shahruz 189382 mac 189382 bytes_out 0 189382 bytes_in 0 189382 station_ip 5.209.165.65 189382 port 399 189382 unique_id port 189382 remote_ip 10.8.0.146 189385 username zahra1101 189385 mac 189385 bytes_out 0 189385 bytes_in 0 189385 station_ip 5.120.177.205 189385 port 417 189385 unique_id port 189385 remote_ip 10.8.0.250 189387 username zahra1101 189387 mac 189387 bytes_out 0 189387 bytes_in 0 189387 station_ip 5.120.177.205 189387 port 417 189387 unique_id port 189387 remote_ip 10.8.0.250 189388 username zahra1101 189388 mac 189388 bytes_out 0 189388 bytes_in 0 189388 station_ip 5.120.177.205 189388 port 417 189388 unique_id port 189388 remote_ip 10.8.0.250 189389 username shahruz 189389 mac 189389 bytes_out 0 189389 bytes_in 0 189389 station_ip 5.209.165.65 189389 port 417 189389 unique_id port 189389 remote_ip 10.8.0.146 189391 username khademi 189391 kill_reason Another user logged on this global unique id 189391 mac 189391 bytes_out 0 189391 bytes_in 0 189391 station_ip 83.123.96.238 189391 port 403 189391 unique_id port 189393 username pourshad 189393 mac 189393 bytes_out 16657 189393 bytes_in 32746 189393 station_ip 5.120.215.224 189393 port 414 189393 unique_id port 189393 remote_ip 10.8.0.42 189396 username milan 189396 kill_reason Another user logged on this global unique id 189396 mac 189396 bytes_out 0 189396 bytes_in 0 189379 station_ip 5.209.165.65 189379 port 412 189379 unique_id port 189379 remote_ip 10.8.0.146 189383 username milan 189383 kill_reason Another user logged on this global unique id 189383 mac 189383 bytes_out 0 189383 bytes_in 0 189383 station_ip 5.119.23.34 189383 port 410 189383 unique_id port 189386 username zahra1101 189386 mac 189386 bytes_out 0 189386 bytes_in 0 189386 station_ip 5.120.177.205 189386 port 417 189386 unique_id port 189386 remote_ip 10.8.0.250 189392 username barzegar 189392 mac 189392 bytes_out 0 189392 bytes_in 0 189392 station_ip 5.119.72.132 189392 port 419 189392 unique_id port 189392 remote_ip 10.8.0.70 189394 username yaghobi 189394 mac 189394 bytes_out 94360 189394 bytes_in 118957 189394 station_ip 83.123.72.190 189394 port 414 189394 unique_id port 189394 remote_ip 10.8.0.138 189398 username yaghobi 189398 mac 189398 bytes_out 55685 189398 bytes_in 113040 189398 station_ip 83.123.72.190 189398 port 421 189398 unique_id port 189398 remote_ip 10.8.0.138 189399 username zahra1101 189399 mac 189399 bytes_out 614361 189399 bytes_in 3764685 189399 station_ip 5.120.177.205 189399 port 417 189399 unique_id port 189399 remote_ip 10.8.0.250 189402 username pourshad 189402 mac 189402 bytes_out 4564 189402 bytes_in 10305 189402 station_ip 5.120.215.224 189402 port 414 189402 unique_id port 189402 remote_ip 10.8.0.42 189405 username akbari0070 189405 mac 189405 bytes_out 1478041 189405 bytes_in 15130788 189405 station_ip 83.123.75.45 189405 port 420 189405 unique_id port 189405 remote_ip 10.8.0.166 189407 username yaghobi 189407 mac 189407 bytes_out 210041 189407 bytes_in 266404 189407 station_ip 83.123.67.87 189407 port 414 189407 unique_id port 189407 remote_ip 10.8.0.138 189412 username shahruz 189412 mac 189412 bytes_out 0 189412 bytes_in 0 189412 station_ip 5.209.165.65 189412 port 417 189412 unique_id port 189412 remote_ip 10.8.0.146 189414 username kalantary6037 189414 mac 189414 bytes_out 2329574 189414 bytes_in 14841835 189414 station_ip 83.123.124.113 189414 port 338 189414 unique_id port 189414 remote_ip 10.8.0.50 189417 username zahra1101 189417 kill_reason Maximum check online fails reached 189417 mac 189417 bytes_out 0 189417 bytes_in 0 189417 station_ip 5.120.177.205 189417 port 418 189417 unique_id port 189420 username milan 189420 kill_reason Another user logged on this global unique id 189420 mac 189420 bytes_out 0 189420 bytes_in 0 189420 station_ip 5.119.23.34 189420 port 410 189420 unique_id port 189422 username hamid.e 189422 unique_id port 189422 terminate_cause Lost-Carrier 189422 bytes_out 696819 189422 bytes_in 15231762 189422 station_ip 151.238.255.171 189422 port 15729125 189422 nas_port_type Virtual 189422 remote_ip 5.5.5.91 189425 username soleymani5056 189425 mac 189425 bytes_out 118947 189425 bytes_in 105311 189425 station_ip 5.119.120.47 189425 port 414 189425 unique_id port 189425 remote_ip 10.8.0.226 189430 username aminvpn 189430 unique_id port 189430 terminate_cause User-Request 189430 bytes_out 1549643 189430 bytes_in 16785469 189430 station_ip 31.57.142.180 189430 port 15729124 189430 nas_port_type Virtual 189430 remote_ip 5.5.5.92 189433 username hadibarzegar 189433 mac 189433 bytes_out 0 189433 bytes_in 0 189433 station_ip 83.123.105.65 189433 port 413 189433 unique_id port 189434 username shahruz 189434 mac 189434 bytes_out 3900 189434 bytes_in 5011 189434 station_ip 5.209.165.65 189434 port 411 189434 unique_id port 189434 remote_ip 10.8.0.146 189435 username nilufarrajaei 189396 station_ip 5.119.23.34 189396 port 410 189396 unique_id port 189400 username shahruz 189400 mac 189400 bytes_out 12489 189400 bytes_in 27876 189400 station_ip 5.209.165.65 189400 port 419 189400 unique_id port 189400 remote_ip 10.8.0.146 189401 username shahruz 189401 mac 189401 bytes_out 0 189401 bytes_in 0 189401 station_ip 5.209.165.65 189401 port 366 189401 unique_id port 189401 remote_ip 10.8.0.146 189403 username zahra1101 189403 mac 189403 bytes_out 0 189403 bytes_in 0 189403 station_ip 5.120.177.205 189403 port 419 189403 unique_id port 189403 remote_ip 10.8.0.250 189406 username zahra1101 189406 mac 189406 bytes_out 2999 189406 bytes_in 6257 189406 station_ip 5.120.177.205 189406 port 419 189406 unique_id port 189406 remote_ip 10.8.0.250 189410 username soleymani5056 189410 mac 189410 bytes_out 221085 189410 bytes_in 296351 189410 station_ip 5.120.79.234 189410 port 418 189410 unique_id port 189410 remote_ip 10.8.0.226 189415 username zahra1101 189415 mac 189415 bytes_out 0 189415 bytes_in 0 189415 station_ip 5.120.177.205 189415 port 420 189415 unique_id port 189415 remote_ip 10.8.0.250 189416 username yaghobi 189416 mac 189416 bytes_out 38988 189416 bytes_in 48050 189416 station_ip 83.123.67.87 189416 port 417 189416 unique_id port 189416 remote_ip 10.8.0.138 189418 username zahra1101 189418 kill_reason Maximum number of concurrent logins reached 189418 mac 189418 bytes_out 0 189418 bytes_in 0 189418 station_ip 5.120.177.205 189418 port 421 189418 unique_id port 189421 username yaghobi 189421 mac 189421 bytes_out 87988 189421 bytes_in 154897 189421 station_ip 83.123.67.87 189421 port 420 189421 unique_id port 189421 remote_ip 10.8.0.138 189423 username zahra1101 189423 kill_reason Maximum check online fails reached 189423 mac 189423 bytes_out 0 189423 bytes_in 0 189423 station_ip 5.120.177.205 189423 port 417 189423 unique_id port 189424 username pourshad 189424 mac 189424 bytes_out 2480 189424 bytes_in 4956 189424 station_ip 5.120.215.224 189424 port 422 189424 unique_id port 189424 remote_ip 10.8.0.42 189426 username aminvpnipad 189426 mac 189426 bytes_out 1542671 189426 bytes_in 13957757 189426 station_ip 5.119.109.57 189426 port 419 189426 unique_id port 189426 remote_ip 10.8.0.230 189427 username barzegar 189427 mac 189427 bytes_out 0 189427 bytes_in 0 189427 station_ip 5.119.72.132 189427 port 420 189427 unique_id port 189427 remote_ip 10.8.0.70 189429 username aminvpn 189429 mac 189429 bytes_out 263142 189429 bytes_in 892880 189429 station_ip 5.119.36.146 189429 port 411 189429 unique_id port 189429 remote_ip 10.8.0.58 189432 username aminvpn 189432 unique_id port 189432 terminate_cause User-Request 189432 bytes_out 0 189432 bytes_in 0 189432 station_ip 31.57.142.180 189432 port 15729127 189432 nas_port_type Virtual 189432 remote_ip 5.5.5.92 189436 username barzegar 189436 mac 189436 bytes_out 0 189436 bytes_in 0 189436 station_ip 5.119.72.132 189436 port 411 189436 unique_id port 189436 remote_ip 10.8.0.70 189438 username pourshad 189438 mac 189438 bytes_out 158424 189438 bytes_in 230355 189438 station_ip 5.120.215.224 189438 port 419 189438 unique_id port 189438 remote_ip 10.8.0.42 189439 username rezaei 189439 mac 189439 bytes_out 2187884 189439 bytes_in 23522001 189439 station_ip 5.119.222.93 189439 port 414 189439 unique_id port 189439 remote_ip 10.8.0.198 189443 username mostafa_es78 189443 mac 189443 bytes_out 765633 189443 bytes_in 4040147 189419 username zahra1101 189419 kill_reason Maximum check online fails reached 189419 mac 189419 bytes_out 0 189419 bytes_in 0 189419 station_ip 5.120.177.205 189419 port 338 189419 unique_id port 189428 username shahruz 189428 mac 189428 bytes_out 0 189428 bytes_in 0 189428 station_ip 5.209.165.65 189428 port 420 189428 unique_id port 189428 remote_ip 10.8.0.146 189431 username barzegar 189431 mac 189431 bytes_out 0 189431 bytes_in 0 189431 station_ip 5.119.72.132 189431 port 411 189431 unique_id port 189431 remote_ip 10.8.0.70 189437 username milan 189437 kill_reason Another user logged on this global unique id 189437 mac 189437 bytes_out 0 189437 bytes_in 0 189437 station_ip 5.119.23.34 189437 port 410 189437 unique_id port 189441 username soleymani5056 189441 mac 189441 bytes_out 64328 189441 bytes_in 133043 189441 station_ip 5.119.129.159 189441 port 422 189441 unique_id port 189441 remote_ip 10.8.0.226 189446 username shahruz 189446 mac 189446 bytes_out 1132971 189446 bytes_in 13369130 189446 station_ip 5.209.165.65 189446 port 411 189446 unique_id port 189446 remote_ip 10.8.0.146 189448 username motamedi9772 189448 mac 189448 bytes_out 12582 189448 bytes_in 48014 189448 station_ip 83.123.7.115 189448 port 420 189448 unique_id port 189448 remote_ip 10.8.0.154 189449 username rezaei 189449 mac 189449 bytes_out 44012 189449 bytes_in 34839 189449 station_ip 5.119.222.93 189449 port 414 189449 unique_id port 189449 remote_ip 10.8.0.198 189450 username barzegar 189450 mac 189450 bytes_out 4236 189450 bytes_in 5801 189450 station_ip 5.119.72.132 189450 port 419 189450 unique_id port 189450 remote_ip 10.8.0.70 189456 username shahruz 189456 mac 189456 bytes_out 0 189456 bytes_in 0 189456 station_ip 5.209.165.65 189456 port 411 189456 unique_id port 189456 remote_ip 10.8.0.146 189458 username milan 189458 kill_reason Another user logged on this global unique id 189458 mac 189458 bytes_out 0 189458 bytes_in 0 189458 station_ip 5.119.23.34 189458 port 410 189458 unique_id port 189465 username pourshad 189465 mac 189465 bytes_out 393744 189465 bytes_in 1766238 189465 station_ip 5.120.215.224 189465 port 405 189465 unique_id port 189465 remote_ip 10.8.0.42 189467 username mohammadjavad 189467 mac 189467 bytes_out 26566 189467 bytes_in 71718 189467 station_ip 83.123.68.157 189467 port 423 189467 unique_id port 189467 remote_ip 10.8.0.110 189469 username hosseine 189469 mac 189469 bytes_out 52423 189469 bytes_in 95417 189469 station_ip 83.123.62.81 189469 port 424 189469 unique_id port 189469 remote_ip 10.8.0.54 189470 username pourshad 189470 kill_reason Another user logged on this global unique id 189470 mac 189470 bytes_out 0 189470 bytes_in 0 189470 station_ip 5.120.215.224 189470 port 413 189470 unique_id port 189476 username milan 189476 kill_reason Another user logged on this global unique id 189476 mac 189476 bytes_out 0 189476 bytes_in 0 189476 station_ip 5.119.23.34 189476 port 410 189476 unique_id port 189480 username dortaj3792 189480 mac 189480 bytes_out 5294815 189480 bytes_in 27775724 189480 station_ip 5.119.122.44 189480 port 416 189480 unique_id port 189480 remote_ip 10.8.0.102 189485 username mansour 189485 mac 189485 bytes_out 863738 189485 bytes_in 8035511 189485 station_ip 5.202.97.228 189485 port 400 189485 unique_id port 189485 remote_ip 10.8.0.10 189486 username barzegar 189486 mac 189486 bytes_out 0 189486 bytes_in 0 189486 station_ip 5.119.72.132 189486 port 400 189486 unique_id port 189435 mac 189435 bytes_out 6567414 189435 bytes_in 36726802 189435 station_ip 83.123.70.52 189435 port 405 189435 unique_id port 189435 remote_ip 10.8.0.194 189440 username fezealinaghi 189440 mac 189440 bytes_out 1924820 189440 bytes_in 11915072 189440 station_ip 83.123.117.126 189440 port 399 189440 unique_id port 189440 remote_ip 10.8.0.202 189442 username fezealinaghi 189442 mac 189442 bytes_out 9722 189442 bytes_in 20884 189442 station_ip 83.123.117.126 189442 port 423 189442 unique_id port 189442 remote_ip 10.8.0.202 189445 username barzegar 189445 mac 189445 bytes_out 0 189445 bytes_in 0 189445 station_ip 5.119.72.132 189445 port 399 189445 unique_id port 189445 remote_ip 10.8.0.70 189451 username rezaei 189451 mac 189451 bytes_out 5209 189451 bytes_in 14307 189451 station_ip 5.119.222.93 189451 port 420 189451 unique_id port 189451 remote_ip 10.8.0.198 189452 username godarzi 189452 mac 189452 bytes_out 255494 189452 bytes_in 972972 189452 station_ip 5.119.61.27 189452 port 399 189452 unique_id port 189452 remote_ip 10.8.0.38 189453 username barzegar 189453 mac 189453 bytes_out 13283 189453 bytes_in 40614 189453 station_ip 5.119.72.132 189453 port 419 189453 unique_id port 189453 remote_ip 10.8.0.70 189457 username hosseine 189457 mac 189457 bytes_out 4416014 189457 bytes_in 47244638 189457 station_ip 83.123.62.81 189457 port 415 189457 unique_id port 189457 remote_ip 10.8.0.54 189460 username rashidi4690 189460 mac 189460 bytes_out 4560926 189460 bytes_in 34039336 189460 station_ip 5.119.68.32 189460 port 421 189460 unique_id port 189460 remote_ip 10.8.0.242 189463 username shahruz 189463 mac 189463 bytes_out 72491 189463 bytes_in 117563 189463 station_ip 5.209.165.65 189463 port 411 189463 unique_id port 189463 remote_ip 10.8.0.146 189466 username farhad3 189466 mac 189466 bytes_out 2490973 189466 bytes_in 17884034 189466 station_ip 5.120.61.225 189466 port 413 189466 unique_id port 189466 remote_ip 10.8.0.222 189472 username motamedi9772 189472 mac 189472 bytes_out 134511 189472 bytes_in 262126 189472 station_ip 83.123.17.227 189472 port 420 189472 unique_id port 189472 remote_ip 10.8.0.154 189475 username mohammadjavad 189475 mac 189475 bytes_out 0 189475 bytes_in 0 189475 station_ip 83.123.68.157 189475 port 411 189475 unique_id port 189475 remote_ip 10.8.0.110 189478 username barzegar 189478 mac 189478 bytes_out 2539 189478 bytes_in 4569 189478 station_ip 5.119.72.132 189478 port 411 189478 unique_id port 189478 remote_ip 10.8.0.70 189479 username malekpoir 189479 mac 189479 bytes_out 50666 189479 bytes_in 65904 189479 station_ip 5.119.203.248 189479 port 366 189479 unique_id port 189479 remote_ip 10.8.0.18 189483 username saeed9658 189483 mac 189483 bytes_out 2120987 189483 bytes_in 17305514 189483 station_ip 5.119.206.111 189483 port 413 189483 unique_id port 189483 remote_ip 10.8.0.162 189484 username milan 189484 kill_reason Another user logged on this global unique id 189484 mac 189484 bytes_out 0 189484 bytes_in 0 189484 station_ip 5.119.23.34 189484 port 410 189484 unique_id port 189488 username aminvpn 189488 mac 189488 bytes_out 2572409 189488 bytes_in 22188914 189488 station_ip 5.119.150.175 189488 port 415 189488 unique_id port 189488 remote_ip 10.8.0.58 189492 username malekpoir 189492 mac 189492 bytes_out 1700978 189492 bytes_in 12993665 189492 station_ip 5.120.41.184 189492 port 411 189492 unique_id port 189492 remote_ip 10.8.0.18 189495 username dortaj3792 189443 station_ip 83.123.87.1 189443 port 420 189443 unique_id port 189443 remote_ip 10.8.0.34 189444 username barzegar 189444 mac 189444 bytes_out 0 189444 bytes_in 0 189444 station_ip 5.119.72.132 189444 port 399 189444 unique_id port 189444 remote_ip 10.8.0.70 189447 username afarin1 189447 mac 189447 bytes_out 3584072 189447 bytes_in 47664406 189447 station_ip 83.123.55.205 189447 port 419 189447 unique_id port 189447 remote_ip 10.8.0.238 189454 username shahruz 189454 mac 189454 bytes_out 1943645 189454 bytes_in 25612358 189454 station_ip 5.209.165.65 189454 port 411 189454 unique_id port 189454 remote_ip 10.8.0.146 189455 username barzegar 189455 mac 189455 bytes_out 0 189455 bytes_in 0 189455 station_ip 5.119.72.132 189455 port 399 189455 unique_id port 189455 remote_ip 10.8.0.70 189459 username khalili2 189459 kill_reason Another user logged on this global unique id 189459 mac 189459 bytes_out 0 189459 bytes_in 0 189459 station_ip 5.119.41.36 189459 port 414 189459 unique_id port 189459 remote_ip 10.8.0.190 189461 username godarzi 189461 mac 189461 bytes_out 121549 189461 bytes_in 342664 189461 station_ip 5.119.61.27 189461 port 399 189461 unique_id port 189461 remote_ip 10.8.0.38 189462 username barzegar 189462 mac 189462 bytes_out 0 189462 bytes_in 0 189462 station_ip 5.119.72.132 189462 port 399 189462 unique_id port 189462 remote_ip 10.8.0.70 189464 username barzegar 189464 mac 189464 bytes_out 0 189464 bytes_in 0 189464 station_ip 5.119.72.132 189464 port 421 189464 unique_id port 189464 remote_ip 10.8.0.70 189468 username shahruz 189468 mac 189468 bytes_out 0 189468 bytes_in 0 189468 station_ip 5.209.165.65 189468 port 405 189468 unique_id port 189468 remote_ip 10.8.0.146 189471 username pourshad 189471 kill_reason Another user logged on this global unique id 189471 mac 189471 bytes_out 0 189471 bytes_in 0 189471 station_ip 5.120.215.224 189471 port 413 189471 unique_id port 189473 username shahruz 189473 mac 189473 bytes_out 1636 189473 bytes_in 5076 189473 station_ip 5.209.165.65 189473 port 411 189473 unique_id port 189473 remote_ip 10.8.0.146 189474 username shahruz 189474 mac 189474 bytes_out 0 189474 bytes_in 0 189474 station_ip 5.209.165.65 189474 port 411 189474 unique_id port 189474 remote_ip 10.8.0.146 189477 username barzegar 189477 mac 189477 bytes_out 509199 189477 bytes_in 55932 189477 station_ip 5.119.72.132 189477 port 405 189477 unique_id port 189477 remote_ip 10.8.0.70 189481 username shahruz 189481 mac 189481 bytes_out 489225 189481 bytes_in 3620782 189481 station_ip 5.209.165.65 189481 port 405 189481 unique_id port 189481 remote_ip 10.8.0.146 189482 username barzegar 189482 mac 189482 bytes_out 4549 189482 bytes_in 11190 189482 station_ip 5.119.72.132 189482 port 366 189482 unique_id port 189482 remote_ip 10.8.0.70 189489 username farhad3 189489 mac 189489 bytes_out 467568 189489 bytes_in 3572724 189489 station_ip 5.120.61.225 189489 port 400 189489 unique_id port 189489 remote_ip 10.8.0.222 189490 username shahruz 189490 mac 189490 bytes_out 1895754 189490 bytes_in 16931372 189490 station_ip 5.209.165.65 189490 port 366 189490 unique_id port 189490 remote_ip 10.8.0.146 189491 username shahruz 189491 mac 189491 bytes_out 0 189491 bytes_in 0 189491 station_ip 5.209.165.65 189491 port 366 189491 unique_id port 189491 remote_ip 10.8.0.146 189493 username shahruz 189493 mac 189493 bytes_out 0 189493 bytes_in 0 189486 remote_ip 10.8.0.70 189487 username mohammadjavad 189487 mac 189487 bytes_out 0 189487 bytes_in 0 189487 station_ip 83.123.68.157 189487 port 400 189487 unique_id port 189487 remote_ip 10.8.0.110 189494 username barzegar 189494 mac 189494 bytes_out 0 189494 bytes_in 0 189494 station_ip 5.119.72.132 189494 port 411 189494 unique_id port 189494 remote_ip 10.8.0.70 189496 username hadibarzegar 189496 kill_reason Another user logged on this global unique id 189496 mac 189496 bytes_out 0 189496 bytes_in 0 189496 station_ip 83.123.49.33 189496 port 405 189496 unique_id port 189496 remote_ip 10.8.0.174 189498 username shahruz 189498 kill_reason Maximum check online fails reached 189498 mac 189498 bytes_out 0 189498 bytes_in 0 189498 station_ip 5.209.165.65 189498 port 366 189498 unique_id port 189499 username barzegar 189499 mac 189499 bytes_out 0 189499 bytes_in 0 189499 station_ip 5.119.72.132 189499 port 420 189499 unique_id port 189499 remote_ip 10.8.0.70 189502 username nilufarrajaei 189502 mac 189502 bytes_out 34094 189502 bytes_in 202379 189502 station_ip 83.123.70.52 189502 port 415 189502 unique_id port 189502 remote_ip 10.8.0.194 189506 username hadibarzegar 189506 mac 189506 bytes_out 0 189506 bytes_in 0 189506 station_ip 83.123.49.33 189506 port 405 189506 unique_id port 189513 username mahdiyehalizadeh 189513 kill_reason Relative expiration date has reached 189513 mac 189513 bytes_out 0 189513 bytes_in 0 189513 station_ip 5.119.78.209 189513 port 419 189513 unique_id port 189515 username motamedi9772 189515 mac 189515 bytes_out 0 189515 bytes_in 0 189515 station_ip 83.123.45.75 189515 port 405 189515 unique_id port 189515 remote_ip 10.8.0.154 189516 username motamedi9772 189516 mac 189516 bytes_out 0 189516 bytes_in 0 189516 station_ip 83.123.45.75 189516 port 405 189516 unique_id port 189516 remote_ip 10.8.0.154 189519 username kalantary6037 189519 mac 189519 bytes_out 1572 189519 bytes_in 4524 189519 station_ip 83.123.123.141 189519 port 399 189519 unique_id port 189519 remote_ip 10.8.0.50 189523 username afarin1 189523 mac 189523 bytes_out 11524 189523 bytes_in 17874 189523 station_ip 83.123.55.205 189523 port 399 189523 unique_id port 189523 remote_ip 10.8.0.238 189528 username mohammadjavad 189528 mac 189528 bytes_out 219781 189528 bytes_in 2330402 189528 station_ip 83.123.68.157 189528 port 399 189528 unique_id port 189528 remote_ip 10.8.0.110 189530 username hamid.e 189530 unique_id port 189530 terminate_cause User-Request 189530 bytes_out 1966742 189530 bytes_in 62950924 189530 station_ip 151.238.246.91 189530 port 15729131 189530 nas_port_type Virtual 189530 remote_ip 5.5.5.89 189536 username rashidi4690 189536 mac 189536 bytes_out 10065 189536 bytes_in 16987 189536 station_ip 5.120.133.15 189536 port 422 189536 unique_id port 189536 remote_ip 10.8.0.242 189538 username aminvpn 189538 unique_id port 189538 terminate_cause User-Request 189538 bytes_out 10878166 189538 bytes_in 314190015 189538 station_ip 31.57.142.180 189538 port 15729129 189538 nas_port_type Virtual 189538 remote_ip 5.5.5.92 189539 username rahim 189539 mac 189539 bytes_out 1383861 189539 bytes_in 17343257 189539 station_ip 5.119.57.111 189539 port 419 189539 unique_id port 189539 remote_ip 10.8.0.134 189542 username nilufarrajaei 189542 mac 189542 bytes_out 13142961 189542 bytes_in 31158557 189542 station_ip 83.123.70.52 189542 port 413 189542 unique_id port 189542 remote_ip 10.8.0.194 189551 username mohammadjavad 189551 mac 189551 bytes_out 0 189551 bytes_in 0 189493 station_ip 5.209.165.65 189493 port 416 189493 unique_id port 189493 remote_ip 10.8.0.146 189504 username barzegar 189504 mac 189504 bytes_out 1803 189504 bytes_in 3731 189504 station_ip 5.119.72.132 189504 port 421 189504 unique_id port 189504 remote_ip 10.8.0.70 189510 username motamedi9772 189510 mac 189510 bytes_out 563801 189510 bytes_in 350644 189510 station_ip 83.123.45.75 189510 port 413 189510 unique_id port 189510 remote_ip 10.8.0.154 189511 username nilufarrajaei 189511 mac 189511 bytes_out 107628 189511 bytes_in 311422 189511 station_ip 83.123.70.52 189511 port 420 189511 unique_id port 189511 remote_ip 10.8.0.194 189517 username milan 189517 kill_reason Another user logged on this global unique id 189517 mac 189517 bytes_out 0 189517 bytes_in 0 189517 station_ip 5.119.23.34 189517 port 410 189517 unique_id port 189518 username motamedi9772 189518 mac 189518 bytes_out 0 189518 bytes_in 0 189518 station_ip 83.123.45.75 189518 port 405 189518 unique_id port 189518 remote_ip 10.8.0.154 189520 username motamedi9772 189520 mac 189520 bytes_out 0 189520 bytes_in 0 189520 station_ip 83.123.45.75 189520 port 399 189520 unique_id port 189520 remote_ip 10.8.0.154 189529 username barzegar 189529 mac 189529 bytes_out 0 189529 bytes_in 0 189529 station_ip 5.119.72.132 189529 port 419 189529 unique_id port 189529 remote_ip 10.8.0.70 189531 username soleymani5056 189531 mac 189531 bytes_out 1127816 189531 bytes_in 3190057 189531 station_ip 5.120.136.16 189531 port 416 189531 unique_id port 189531 remote_ip 10.8.0.226 189532 username barzegar 189532 mac 189532 bytes_out 11864 189532 bytes_in 86672 189532 station_ip 5.119.72.132 189532 port 416 189532 unique_id port 189532 remote_ip 10.8.0.70 189535 username motamedi9772 189535 mac 189535 bytes_out 4011509 189535 bytes_in 41855364 189535 station_ip 83.123.45.75 189535 port 405 189535 unique_id port 189535 remote_ip 10.8.0.154 189541 username morteza4424 189541 kill_reason Another user logged on this global unique id 189541 mac 189541 bytes_out 0 189541 bytes_in 0 189541 station_ip 83.123.52.215 189541 port 400 189541 unique_id port 189541 remote_ip 10.8.0.206 189545 username yaghobi 189545 mac 189545 bytes_out 342690 189545 bytes_in 823334 189545 station_ip 83.123.24.142 189545 port 421 189545 unique_id port 189545 remote_ip 10.8.0.138 189547 username farhad3 189547 mac 189547 bytes_out 1209284 189547 bytes_in 5522534 189547 station_ip 5.120.61.225 189547 port 410 189547 unique_id port 189547 remote_ip 10.8.0.222 189548 username sabaghnezhad 189548 mac 189548 bytes_out 607443 189548 bytes_in 5388804 189548 station_ip 188.229.55.56 189548 port 405 189548 unique_id port 189548 remote_ip 10.8.0.66 189549 username saeed9658 189549 mac 189549 bytes_out 1192217 189549 bytes_in 8835123 189549 station_ip 5.119.206.111 189549 port 419 189549 unique_id port 189549 remote_ip 10.8.0.162 189552 username sabaghnezhad 189552 mac 189552 bytes_out 8845 189552 bytes_in 12874 189552 station_ip 188.229.55.56 189552 port 405 189552 unique_id port 189552 remote_ip 10.8.0.66 189555 username mohammadjavad 189555 mac 189555 bytes_out 0 189555 bytes_in 0 189555 station_ip 83.123.13.250 189555 port 413 189555 unique_id port 189555 remote_ip 10.8.0.110 189556 username aminvpn 189556 unique_id port 189556 terminate_cause User-Request 189556 bytes_out 96323 189556 bytes_in 1040144 189556 station_ip 31.57.142.180 189556 port 15729135 189556 nas_port_type Virtual 189556 remote_ip 5.5.5.92 189495 mac 189495 bytes_out 159563 189495 bytes_in 345223 189495 station_ip 5.119.122.44 189495 port 415 189495 unique_id port 189495 remote_ip 10.8.0.102 189497 username shahruz 189497 kill_reason Maximum number of concurrent logins reached 189497 mac 189497 bytes_out 0 189497 bytes_in 0 189497 station_ip 5.209.165.65 189497 port 415 189497 unique_id port 189500 username milan 189500 kill_reason Another user logged on this global unique id 189500 mac 189500 bytes_out 0 189500 bytes_in 0 189500 station_ip 5.119.23.34 189500 port 410 189500 unique_id port 189501 username shahruz 189501 kill_reason Maximum check online fails reached 189501 mac 189501 bytes_out 0 189501 bytes_in 0 189501 station_ip 5.209.165.65 189501 port 411 189501 unique_id port 189503 username barzegar 189503 mac 189503 bytes_out 11476 189503 bytes_in 14450 189503 station_ip 5.119.72.132 189503 port 421 189503 unique_id port 189503 remote_ip 10.8.0.70 189505 username godarzi 189505 mac 189505 bytes_out 1100730 189505 bytes_in 6363439 189505 station_ip 5.119.61.27 189505 port 399 189505 unique_id port 189505 remote_ip 10.8.0.38 189507 username rashidi4690 189507 mac 189507 bytes_out 4629106 189507 bytes_in 30260951 189507 station_ip 5.120.133.15 189507 port 419 189507 unique_id port 189507 remote_ip 10.8.0.242 189508 username naeimeh 189508 mac 189508 bytes_out 1734255 189508 bytes_in 21745042 189508 station_ip 83.123.74.241 189508 port 416 189508 unique_id port 189508 remote_ip 10.8.0.78 189509 username mahdiyehalizadeh 189509 kill_reason Relative expiration date has reached 189509 mac 189509 bytes_out 0 189509 bytes_in 0 189509 station_ip 5.119.78.209 189509 port 405 189509 unique_id port 189512 username afarin1 189512 mac 189512 bytes_out 1137465 189512 bytes_in 11169352 189512 station_ip 83.123.55.205 189512 port 422 189512 unique_id port 189512 remote_ip 10.8.0.238 189514 username barzegar 189514 mac 189514 bytes_out 0 189514 bytes_in 0 189514 station_ip 5.119.72.132 189514 port 399 189514 unique_id port 189514 remote_ip 10.8.0.70 189521 username afarin1 189521 mac 189521 bytes_out 10786 189521 bytes_in 11116 189521 station_ip 83.123.55.205 189521 port 416 189521 unique_id port 189521 remote_ip 10.8.0.238 189522 username motamedi9772 189522 mac 189522 bytes_out 0 189522 bytes_in 0 189522 station_ip 83.123.45.75 189522 port 405 189522 unique_id port 189522 remote_ip 10.8.0.154 189524 username mohammadjavad 189524 mac 189524 bytes_out 1559362 189524 bytes_in 24179932 189524 station_ip 83.123.68.157 189524 port 423 189524 unique_id port 189524 remote_ip 10.8.0.110 189525 username farhad3 189525 mac 189525 bytes_out 2351080 189525 bytes_in 11518008 189525 station_ip 5.120.61.225 189525 port 400 189525 unique_id port 189525 remote_ip 10.8.0.222 189526 username milan 189526 mac 189526 bytes_out 0 189526 bytes_in 0 189526 station_ip 5.119.23.34 189526 port 410 189526 unique_id port 189527 username afarin1 189527 mac 189527 bytes_out 23441 189527 bytes_in 40606 189527 station_ip 83.123.55.205 189527 port 419 189527 unique_id port 189527 remote_ip 10.8.0.238 189533 username meysam 189533 kill_reason Another user logged on this global unique id 189533 mac 189533 bytes_out 0 189533 bytes_in 0 189533 station_ip 188.159.254.127 189533 port 415 189533 unique_id port 189533 remote_ip 10.8.0.158 189534 username afarin1 189534 mac 189534 bytes_out 439082 189534 bytes_in 3540024 189534 station_ip 83.123.55.205 189534 port 420 189534 unique_id port 189534 remote_ip 10.8.0.238 189537 username hosseine 189537 mac 189537 bytes_out 421296 189537 bytes_in 873455 189537 station_ip 83.123.92.189 189537 port 416 189537 unique_id port 189537 remote_ip 10.8.0.54 189540 username aminvpn 189540 unique_id port 189540 terminate_cause User-Request 189540 bytes_out 76708 189540 bytes_in 192025 189540 station_ip 31.57.142.180 189540 port 15729132 189540 nas_port_type Virtual 189540 remote_ip 5.5.5.92 189543 username aminvpn 189543 unique_id port 189543 terminate_cause User-Request 189543 bytes_out 765081 189543 bytes_in 4775489 189543 station_ip 31.57.142.180 189543 port 15729133 189543 nas_port_type Virtual 189543 remote_ip 5.5.5.92 189544 username barzegar 189544 mac 189544 bytes_out 0 189544 bytes_in 0 189544 station_ip 5.119.72.132 189544 port 413 189544 unique_id port 189544 remote_ip 10.8.0.70 189546 username kalantary6037 189546 mac 189546 bytes_out 634704 189546 bytes_in 3633344 189546 station_ip 83.123.123.141 189546 port 416 189546 unique_id port 189546 remote_ip 10.8.0.50 189550 username mohammadjavad 189550 mac 189550 bytes_out 217400 189550 bytes_in 2179766 189550 station_ip 83.123.13.250 189550 port 413 189550 unique_id port 189550 remote_ip 10.8.0.110 189562 username kalantary6037 189562 mac 189562 bytes_out 91179 189562 bytes_in 96996 189562 station_ip 83.123.123.141 189562 port 405 189562 unique_id port 189562 remote_ip 10.8.0.50 189568 username meysam 189568 mac 189568 bytes_out 0 189568 bytes_in 0 189568 station_ip 188.159.254.127 189568 port 415 189568 unique_id port 189576 username yaghobi 189576 mac 189576 bytes_out 327705 189576 bytes_in 672327 189576 station_ip 83.123.13.177 189576 port 419 189576 unique_id port 189576 remote_ip 10.8.0.138 189579 username sabaghnezhad 189579 mac 189579 bytes_out 127743 189579 bytes_in 501261 189579 station_ip 188.229.55.56 189579 port 416 189579 unique_id port 189579 remote_ip 10.8.0.66 189582 username mohammadjavad 189582 mac 189582 bytes_out 0 189582 bytes_in 0 189582 station_ip 83.123.13.250 189582 port 416 189582 unique_id port 189582 remote_ip 10.8.0.110 189584 username aminvpn 189584 unique_id port 189584 terminate_cause Lost-Carrier 189584 bytes_out 780958 189584 bytes_in 2874274 189584 station_ip 5.120.23.7 189584 port 15729137 189584 nas_port_type Virtual 189584 remote_ip 5.5.5.97 189588 username meysam 189588 mac 189588 bytes_out 3426150 189588 bytes_in 46665700 189588 station_ip 188.159.254.127 189588 port 415 189588 unique_id port 189588 remote_ip 10.8.0.158 189590 username saeed9658 189590 mac 189590 bytes_out 149263 189590 bytes_in 707656 189590 station_ip 5.119.206.111 189590 port 422 189590 unique_id port 189590 remote_ip 10.8.0.162 189596 username soleymani5056 189596 mac 189596 bytes_out 62639 189596 bytes_in 140872 189596 station_ip 5.119.223.38 189596 port 422 189596 unique_id port 189596 remote_ip 10.8.0.226 189600 username motamedi9772 189600 mac 189600 bytes_out 82705 189600 bytes_in 341033 189600 station_ip 83.123.9.55 189600 port 415 189600 unique_id port 189600 remote_ip 10.8.0.154 189601 username motamedi9772 189601 mac 189601 bytes_out 0 189601 bytes_in 0 189601 station_ip 83.123.9.55 189601 port 415 189601 unique_id port 189601 remote_ip 10.8.0.154 189602 username seyedmostafa 189602 kill_reason Relative expiration date has reached 189602 mac 189602 bytes_out 0 189602 bytes_in 0 189602 station_ip 5.119.209.171 189602 port 428 189602 unique_id port 189604 username seyedmostafa 189604 kill_reason Relative expiration date has reached 189551 station_ip 83.123.13.250 189551 port 410 189551 unique_id port 189551 remote_ip 10.8.0.110 189553 username mohammadjavad 189553 mac 189553 bytes_out 0 189553 bytes_in 0 189553 station_ip 83.123.13.250 189553 port 413 189553 unique_id port 189553 remote_ip 10.8.0.110 189554 username aminvpn 189554 unique_id port 189554 terminate_cause User-Request 189554 bytes_out 148971 189554 bytes_in 848897 189554 station_ip 31.57.142.180 189554 port 15729134 189554 nas_port_type Virtual 189554 remote_ip 5.5.5.92 189557 username mohammadjavad 189557 mac 189557 bytes_out 0 189557 bytes_in 0 189557 station_ip 83.123.13.250 189557 port 413 189557 unique_id port 189557 remote_ip 10.8.0.110 189560 username morteza4424 189560 mac 189560 bytes_out 0 189560 bytes_in 0 189560 station_ip 83.123.52.215 189560 port 400 189560 unique_id port 189561 username nilufarrajaei 189561 mac 189561 bytes_out 29658852 189561 bytes_in 34254671 189561 station_ip 83.123.70.52 189561 port 420 189561 unique_id port 189561 remote_ip 10.8.0.194 189566 username aminvpn 189566 mac 189566 bytes_out 207868 189566 bytes_in 1344396 189566 station_ip 5.119.150.175 189566 port 413 189566 unique_id port 189566 remote_ip 10.8.0.58 189571 username godarzi 189571 mac 189571 bytes_out 1468099 189571 bytes_in 1920781 189571 station_ip 5.119.61.27 189571 port 399 189571 unique_id port 189571 remote_ip 10.8.0.38 189572 username barzegar 189572 mac 189572 bytes_out 0 189572 bytes_in 0 189572 station_ip 5.119.72.132 189572 port 413 189572 unique_id port 189572 remote_ip 10.8.0.70 189574 username fezealinaghi 189574 kill_reason Another user logged on this global unique id 189574 mac 189574 bytes_out 0 189574 bytes_in 0 189574 station_ip 83.123.10.98 189574 port 405 189574 unique_id port 189574 remote_ip 10.8.0.202 189577 username barzegar 189577 mac 189577 bytes_out 0 189577 bytes_in 0 189577 station_ip 5.119.72.132 189577 port 423 189577 unique_id port 189577 remote_ip 10.8.0.70 189580 username saeeddamghani 189580 mac 189580 bytes_out 356721 189580 bytes_in 3892301 189580 station_ip 217.60.175.234 189580 port 419 189580 unique_id port 189580 remote_ip 10.8.0.122 189585 username barzegar 189585 mac 189585 bytes_out 2994 189585 bytes_in 4059 189585 station_ip 5.119.72.132 189585 port 424 189585 unique_id port 189585 remote_ip 10.8.0.70 189586 username nilufarrajaei 189586 mac 189586 bytes_out 547647 189586 bytes_in 2696896 189586 station_ip 83.123.78.20 189586 port 410 189586 unique_id port 189586 remote_ip 10.8.0.194 189589 username kalantary6037 189589 mac 189589 bytes_out 65994 189589 bytes_in 71613 189589 station_ip 83.123.99.125 189589 port 425 189589 unique_id port 189589 remote_ip 10.8.0.50 189592 username farhad3 189592 kill_reason Another user logged on this global unique id 189592 mac 189592 bytes_out 0 189592 bytes_in 0 189592 station_ip 5.120.61.225 189592 port 416 189592 unique_id port 189592 remote_ip 10.8.0.222 189595 username akbari0070 189595 kill_reason Another user logged on this global unique id 189595 mac 189595 bytes_out 0 189595 bytes_in 0 189595 station_ip 83.123.109.93 189595 port 413 189595 unique_id port 189595 remote_ip 10.8.0.166 189597 username aminvpn 189597 unique_id port 189597 terminate_cause User-Request 189597 bytes_out 11597149 189597 bytes_in 303716708 189597 station_ip 31.57.142.180 189597 port 15729136 189597 nas_port_type Virtual 189597 remote_ip 5.5.5.92 189615 username sabaghnezhad 189615 mac 189615 bytes_out 128063 189615 bytes_in 512381 189615 station_ip 188.229.55.56 189558 username barzegar 189558 mac 189558 bytes_out 0 189558 bytes_in 0 189558 station_ip 5.119.72.132 189558 port 413 189558 unique_id port 189558 remote_ip 10.8.0.70 189559 username saeed9658 189559 mac 189559 bytes_out 74608 189559 bytes_in 320742 189559 station_ip 5.119.206.111 189559 port 410 189559 unique_id port 189559 remote_ip 10.8.0.162 189563 username dortaj3792 189563 mac 189563 bytes_out 371958 189563 bytes_in 541602 189563 station_ip 5.119.122.44 189563 port 413 189563 unique_id port 189563 remote_ip 10.8.0.102 189564 username khalili2 189564 kill_reason Another user logged on this global unique id 189564 mac 189564 bytes_out 0 189564 bytes_in 0 189564 station_ip 5.119.41.36 189564 port 414 189564 unique_id port 189565 username barzegar 189565 mac 189565 bytes_out 0 189565 bytes_in 0 189565 station_ip 5.119.72.132 189565 port 416 189565 unique_id port 189565 remote_ip 10.8.0.70 189567 username barzegar 189567 mac 189567 bytes_out 3119 189567 bytes_in 5316 189567 station_ip 5.119.72.132 189567 port 413 189567 unique_id port 189567 remote_ip 10.8.0.70 189569 username mohammadjavad 189569 mac 189569 bytes_out 0 189569 bytes_in 0 189569 station_ip 83.123.13.250 189569 port 413 189569 unique_id port 189569 remote_ip 10.8.0.110 189570 username yaghobi 189570 mac 189570 bytes_out 921329 189570 bytes_in 7074989 189570 station_ip 83.123.13.177 189570 port 410 189570 unique_id port 189570 remote_ip 10.8.0.138 189573 username yaghobi 189573 mac 189573 bytes_out 342960 189573 bytes_in 455783 189573 station_ip 83.123.13.177 189573 port 415 189573 unique_id port 189573 remote_ip 10.8.0.138 189575 username kalantary6037 189575 mac 189575 bytes_out 70438 189575 bytes_in 90636 189575 station_ip 83.123.6.117 189575 port 422 189575 unique_id port 189575 remote_ip 10.8.0.50 189578 username mohammadjavad 189578 mac 189578 bytes_out 0 189578 bytes_in 0 189578 station_ip 83.123.13.250 189578 port 424 189578 unique_id port 189578 remote_ip 10.8.0.110 189581 username yaghobi 189581 mac 189581 bytes_out 614575 189581 bytes_in 3239077 189581 station_ip 83.123.13.177 189581 port 422 189581 unique_id port 189581 remote_ip 10.8.0.138 189583 username mohammadjavad 189583 mac 189583 bytes_out 0 189583 bytes_in 0 189583 station_ip 83.123.13.250 189583 port 422 189583 unique_id port 189583 remote_ip 10.8.0.110 189587 username mohammadjavad 189587 mac 189587 bytes_out 717189 189587 bytes_in 9791379 189587 station_ip 83.123.13.250 189587 port 422 189587 unique_id port 189587 remote_ip 10.8.0.110 189591 username khademi 189591 kill_reason Another user logged on this global unique id 189591 mac 189591 bytes_out 0 189591 bytes_in 0 189591 station_ip 83.123.96.238 189591 port 403 189591 unique_id port 189593 username dortaj3792 189593 mac 189593 bytes_out 163608 189593 bytes_in 202646 189593 station_ip 5.119.122.44 189593 port 419 189593 unique_id port 189593 remote_ip 10.8.0.102 189594 username mohammadjavad 189594 mac 189594 bytes_out 82111 189594 bytes_in 201573 189594 station_ip 83.123.13.250 189594 port 426 189594 unique_id port 189594 remote_ip 10.8.0.110 189598 username khademi 189598 kill_reason Another user logged on this global unique id 189598 mac 189598 bytes_out 0 189598 bytes_in 0 189598 station_ip 83.123.96.238 189598 port 403 189598 unique_id port 189599 username sekonji0496 189599 mac 189599 bytes_out 2441 189599 bytes_in 4292 189599 station_ip 83.123.33.49 189599 port 426 189599 unique_id port 189599 remote_ip 10.8.0.62 189603 username motamedi9772 189603 mac 189603 bytes_out 0 189603 bytes_in 0 189603 station_ip 83.123.9.55 189603 port 415 189603 unique_id port 189603 remote_ip 10.8.0.154 189605 username saeed9658 189605 mac 189605 bytes_out 412663 189605 bytes_in 2256060 189605 station_ip 5.119.206.111 189605 port 422 189605 unique_id port 189605 remote_ip 10.8.0.162 189607 username barzegar 189607 mac 189607 bytes_out 105932 189607 bytes_in 235402 189607 station_ip 5.119.72.132 189607 port 410 189607 unique_id port 189607 remote_ip 10.8.0.70 189609 username kalantary6037 189609 mac 189609 bytes_out 29295 189609 bytes_in 58887 189609 station_ip 83.123.95.85 189609 port 426 189609 unique_id port 189609 remote_ip 10.8.0.50 189610 username saeeddamghani 189610 mac 189610 bytes_out 1404849 189610 bytes_in 22954885 189610 station_ip 217.60.175.234 189610 port 419 189610 unique_id port 189610 remote_ip 10.8.0.122 189612 username sekonji0496 189612 mac 189612 bytes_out 0 189612 bytes_in 0 189612 station_ip 83.123.33.49 189612 port 419 189612 unique_id port 189612 remote_ip 10.8.0.62 189614 username houshang 189614 mac 189614 bytes_out 280222 189614 bytes_in 2402779 189614 station_ip 5.120.70.74 189614 port 428 189614 unique_id port 189614 remote_ip 10.8.0.82 189618 username sekonji0496 189618 mac 189618 bytes_out 0 189618 bytes_in 0 189618 station_ip 83.123.33.49 189618 port 426 189618 unique_id port 189618 remote_ip 10.8.0.62 189620 username godarzi 189620 mac 189620 bytes_out 1469612 189620 bytes_in 6499184 189620 station_ip 5.119.61.27 189620 port 423 189620 unique_id port 189620 remote_ip 10.8.0.38 189625 username motamedi9772 189625 mac 189625 bytes_out 0 189625 bytes_in 0 189625 station_ip 83.123.9.55 189625 port 415 189625 unique_id port 189625 remote_ip 10.8.0.154 189632 username motamedi9772 189632 mac 189632 bytes_out 0 189632 bytes_in 0 189632 station_ip 83.123.9.55 189632 port 429 189632 unique_id port 189632 remote_ip 10.8.0.154 189634 username yaghobi 189634 mac 189634 bytes_out 80246 189634 bytes_in 455092 189634 station_ip 83.123.50.152 189634 port 410 189634 unique_id port 189634 remote_ip 10.8.0.138 189638 username sabaghnezhad 189638 mac 189638 bytes_out 313301 189638 bytes_in 103171 189638 station_ip 188.229.55.56 189638 port 424 189638 unique_id port 189638 remote_ip 10.8.0.66 189639 username sekonji0496 189639 mac 189639 bytes_out 0 189639 bytes_in 0 189639 station_ip 83.123.33.49 189639 port 419 189639 unique_id port 189639 remote_ip 10.8.0.62 189640 username aminvpn 189640 unique_id port 189640 terminate_cause Lost-Carrier 189640 bytes_out 5059781 189640 bytes_in 104755430 189640 station_ip 5.119.109.57 189640 port 15729130 189640 nas_port_type Virtual 189640 remote_ip 5.5.5.100 189642 username barzegar 189642 mac 189642 bytes_out 0 189642 bytes_in 0 189642 station_ip 5.119.72.132 189642 port 425 189642 unique_id port 189642 remote_ip 10.8.0.70 189643 username sekonji0496 189643 mac 189643 bytes_out 0 189643 bytes_in 0 189643 station_ip 83.123.33.49 189643 port 425 189643 unique_id port 189643 remote_ip 10.8.0.62 189646 username barzegar 189646 mac 189646 bytes_out 0 189646 bytes_in 0 189646 station_ip 5.119.72.132 189646 port 419 189646 unique_id port 189646 remote_ip 10.8.0.70 189648 username dortaj3792 189648 mac 189648 bytes_out 571952 189648 bytes_in 2771358 189648 station_ip 5.119.122.44 189648 port 422 189648 unique_id port 189604 mac 189604 bytes_out 0 189604 bytes_in 0 189604 station_ip 5.119.209.171 189604 port 429 189604 unique_id port 189606 username seyedmostafa 189606 kill_reason Relative expiration date has reached 189606 mac 189606 bytes_out 0 189606 bytes_in 0 189606 station_ip 5.119.209.171 189606 port 422 189606 unique_id port 189608 username nilufarrajaei 189608 mac 189608 bytes_out 4459618 189608 bytes_in 14139771 189608 station_ip 83.123.78.20 189608 port 424 189608 unique_id port 189608 remote_ip 10.8.0.194 189611 username sekonji0496 189611 mac 189611 bytes_out 0 189611 bytes_in 0 189611 station_ip 83.123.33.49 189611 port 419 189611 unique_id port 189611 remote_ip 10.8.0.62 189613 username sekonji0496 189613 mac 189613 bytes_out 0 189613 bytes_in 0 189613 station_ip 83.123.33.49 189613 port 419 189613 unique_id port 189613 remote_ip 10.8.0.62 189616 username yaghobi 189616 mac 189616 bytes_out 1195699 189616 bytes_in 6214280 189616 station_ip 83.123.66.243 189616 port 427 189616 unique_id port 189616 remote_ip 10.8.0.138 189621 username fezealinaghi 189621 kill_reason Another user logged on this global unique id 189621 mac 189621 bytes_out 0 189621 bytes_in 0 189621 station_ip 83.123.10.98 189621 port 405 189621 unique_id port 189622 username motamedi9772 189622 mac 189622 bytes_out 30027 189622 bytes_in 77419 189622 station_ip 83.123.9.55 189622 port 415 189622 unique_id port 189622 remote_ip 10.8.0.154 189628 username nilufarrajaei 189628 mac 189628 bytes_out 357150 189628 bytes_in 2067334 189628 station_ip 83.123.78.20 189628 port 410 189628 unique_id port 189628 remote_ip 10.8.0.194 189631 username sekonji0496 189631 mac 189631 bytes_out 0 189631 bytes_in 0 189631 station_ip 83.123.33.49 189631 port 415 189631 unique_id port 189631 remote_ip 10.8.0.62 189635 username barzegar 189635 mac 189635 bytes_out 21020 189635 bytes_in 34436 189635 station_ip 5.119.72.132 189635 port 419 189635 unique_id port 189635 remote_ip 10.8.0.70 189637 username farhad3 189637 kill_reason Another user logged on this global unique id 189637 mac 189637 bytes_out 0 189637 bytes_in 0 189637 station_ip 5.120.61.225 189637 port 416 189637 unique_id port 189644 username soleymani5056 189644 mac 189644 bytes_out 40410 189644 bytes_in 43906 189644 station_ip 5.120.25.174 189644 port 419 189644 unique_id port 189644 remote_ip 10.8.0.226 189645 username sekonji0496 189645 mac 189645 bytes_out 0 189645 bytes_in 0 189645 station_ip 83.123.33.49 189645 port 425 189645 unique_id port 189645 remote_ip 10.8.0.62 189650 username kalantary6037 189650 mac 189650 bytes_out 32123 189650 bytes_in 43389 189650 station_ip 83.123.87.209 189650 port 425 189650 unique_id port 189650 remote_ip 10.8.0.50 189653 username sabaghnezhad 189653 mac 189653 bytes_out 50229 189653 bytes_in 52070 189653 station_ip 188.229.55.56 189653 port 415 189653 unique_id port 189653 remote_ip 10.8.0.66 189657 username alipour1506 189657 mac 189657 bytes_out 0 189657 bytes_in 0 189657 station_ip 78.39.25.121 189657 port 424 189657 unique_id port 189658 username sekonji0496 189658 mac 189658 bytes_out 0 189658 bytes_in 0 189658 station_ip 83.123.33.49 189658 port 415 189658 unique_id port 189658 remote_ip 10.8.0.62 189662 username sekonji0496 189662 mac 189662 bytes_out 0 189662 bytes_in 0 189662 station_ip 83.123.33.49 189662 port 419 189662 unique_id port 189662 remote_ip 10.8.0.62 189669 username kalantary6037 189669 mac 189669 bytes_out 199882 189615 port 425 189615 unique_id port 189615 remote_ip 10.8.0.66 189617 username farhad3 189617 kill_reason Another user logged on this global unique id 189617 mac 189617 bytes_out 0 189617 bytes_in 0 189617 station_ip 5.120.61.225 189617 port 416 189617 unique_id port 189619 username akbari0070 189619 kill_reason Another user logged on this global unique id 189619 mac 189619 bytes_out 0 189619 bytes_in 0 189619 station_ip 83.123.109.93 189619 port 413 189619 unique_id port 189623 username motamedi9772 189623 mac 189623 bytes_out 0 189623 bytes_in 0 189623 station_ip 83.123.9.55 189623 port 415 189623 unique_id port 189623 remote_ip 10.8.0.154 189624 username motamedi9772 189624 mac 189624 bytes_out 0 189624 bytes_in 0 189624 station_ip 83.123.9.55 189624 port 415 189624 unique_id port 189624 remote_ip 10.8.0.154 189626 username kalantary6037 189626 mac 189626 bytes_out 238174 189626 bytes_in 2207576 189626 station_ip 83.123.5.5 189626 port 428 189626 unique_id port 189626 remote_ip 10.8.0.50 189627 username akbari0070 189627 mac 189627 bytes_out 0 189627 bytes_in 0 189627 station_ip 83.123.109.93 189627 port 413 189627 unique_id port 189629 username motamedi9772 189629 mac 189629 bytes_out 0 189629 bytes_in 0 189629 station_ip 83.123.9.55 189629 port 415 189629 unique_id port 189629 remote_ip 10.8.0.154 189630 username motamedi9772 189630 mac 189630 bytes_out 0 189630 bytes_in 0 189630 station_ip 83.123.9.55 189630 port 410 189630 unique_id port 189630 remote_ip 10.8.0.154 189633 username soleymani5056 189633 mac 189633 bytes_out 60635 189633 bytes_in 76100 189633 station_ip 5.119.121.101 189633 port 427 189633 unique_id port 189633 remote_ip 10.8.0.226 189636 username motamedi9772 189636 kill_reason Maximum check online fails reached 189636 mac 189636 bytes_out 0 189636 bytes_in 0 189636 station_ip 83.123.9.55 189636 port 415 189636 unique_id port 189636 remote_ip 10.8.0.154 189641 username alipour1506 189641 mac 189641 bytes_out 755333 189641 bytes_in 9003915 189641 station_ip 83.123.107.189 189641 port 425 189641 unique_id port 189641 remote_ip 10.8.0.246 189647 username fezealinaghi 189647 kill_reason Another user logged on this global unique id 189647 mac 189647 bytes_out 0 189647 bytes_in 0 189647 station_ip 83.123.10.98 189647 port 405 189647 unique_id port 189651 username sekonji0496 189651 mac 189651 bytes_out 2968 189651 bytes_in 5010 189651 station_ip 83.123.33.49 189651 port 419 189651 unique_id port 189651 remote_ip 10.8.0.62 189659 username yaghobi 189659 mac 189659 bytes_out 27296 189659 bytes_in 67382 189659 station_ip 83.123.83.223 189659 port 419 189659 unique_id port 189659 remote_ip 10.8.0.138 189665 username barzegar 189665 mac 189665 bytes_out 116564 189665 bytes_in 480168 189665 station_ip 5.119.72.132 189665 port 419 189665 unique_id port 189665 remote_ip 10.8.0.70 189668 username morteza4424 189668 mac 189668 bytes_out 0 189668 bytes_in 0 189668 station_ip 83.123.44.243 189668 port 427 189668 unique_id port 189668 remote_ip 10.8.0.206 189672 username sekonji0496 189672 mac 189672 bytes_out 1803 189672 bytes_in 3855 189672 station_ip 83.123.33.49 189672 port 429 189672 unique_id port 189672 remote_ip 10.8.0.62 189673 username dortaj3792 189673 mac 189673 bytes_out 556114 189673 bytes_in 1347430 189673 station_ip 5.119.122.44 189673 port 422 189673 unique_id port 189673 remote_ip 10.8.0.102 189676 username morteza4424 189676 mac 189676 bytes_out 0 189676 bytes_in 0 189648 remote_ip 10.8.0.102 189649 username alipour1506 189649 kill_reason Another user logged on this global unique id 189649 mac 189649 bytes_out 0 189649 bytes_in 0 189649 station_ip 78.39.25.121 189649 port 424 189649 unique_id port 189649 remote_ip 10.8.0.246 189652 username khalili2 189652 mac 189652 bytes_out 0 189652 bytes_in 0 189652 station_ip 5.119.41.36 189652 port 414 189652 unique_id port 189654 username kharazmi2920 189654 mac 189654 bytes_out 317569 189654 bytes_in 848614 189654 station_ip 83.123.93.194 189654 port 410 189654 unique_id port 189654 remote_ip 10.8.0.22 189655 username khalili2 189655 mac 189655 bytes_out 11417 189655 bytes_in 16768 189655 station_ip 5.119.41.36 189655 port 419 189655 unique_id port 189655 remote_ip 10.8.0.190 189656 username kalantary6037 189656 mac 189656 bytes_out 181064 189656 bytes_in 875215 189656 station_ip 83.123.87.209 189656 port 410 189656 unique_id port 189656 remote_ip 10.8.0.50 189660 username aminvpn 189660 unique_id port 189660 terminate_cause User-Request 189660 bytes_out 4776302 189660 bytes_in 84607316 189660 station_ip 31.57.142.180 189660 port 15729138 189660 nas_port_type Virtual 189660 remote_ip 5.5.5.92 189661 username barzegar 189661 mac 189661 bytes_out 92128 189661 bytes_in 819122 189661 station_ip 5.119.72.132 189661 port 414 189661 unique_id port 189661 remote_ip 10.8.0.70 189663 username nilufarrajaei 189663 mac 189663 bytes_out 185213 189663 bytes_in 244910 189663 station_ip 83.123.78.20 189663 port 413 189663 unique_id port 189663 remote_ip 10.8.0.194 189664 username morteza4424 189664 mac 189664 bytes_out 401310 189664 bytes_in 5866752 189664 station_ip 83.123.44.243 189664 port 415 189664 unique_id port 189664 remote_ip 10.8.0.206 189666 username sekonji0496 189666 mac 189666 bytes_out 0 189666 bytes_in 0 189666 station_ip 83.123.33.49 189666 port 427 189666 unique_id port 189666 remote_ip 10.8.0.62 189667 username farhad3 189667 kill_reason Another user logged on this global unique id 189667 mac 189667 bytes_out 0 189667 bytes_in 0 189667 station_ip 5.120.61.225 189667 port 416 189667 unique_id port 189670 username nilufarrajaei 189670 mac 189670 bytes_out 43079 189670 bytes_in 68193 189670 station_ip 83.123.78.20 189670 port 415 189670 unique_id port 189670 remote_ip 10.8.0.194 189675 username barzegar 189675 mac 189675 bytes_out 20012 189675 bytes_in 82845 189675 station_ip 5.119.72.132 189675 port 419 189675 unique_id port 189675 remote_ip 10.8.0.70 189680 username sekonji0496 189680 mac 189680 bytes_out 0 189680 bytes_in 0 189680 station_ip 83.123.33.49 189680 port 419 189680 unique_id port 189680 remote_ip 10.8.0.62 189681 username aminvpn 189681 mac 189681 bytes_out 1951018 189681 bytes_in 17676444 189681 station_ip 5.119.150.175 189681 port 420 189681 unique_id port 189681 remote_ip 10.8.0.58 189684 username rahim 189684 mac 189684 bytes_out 19946186 189684 bytes_in 7419366 189684 station_ip 86.57.12.249 189684 port 414 189684 unique_id port 189684 remote_ip 10.8.0.134 189686 username malekpoir 189686 kill_reason Another user logged on this global unique id 189686 mac 189686 bytes_out 0 189686 bytes_in 0 189686 station_ip 5.120.41.184 189686 port 400 189686 unique_id port 189686 remote_ip 10.8.0.18 189687 username morteza4424 189687 mac 189687 bytes_out 0 189687 bytes_in 0 189687 station_ip 83.123.44.243 189687 port 414 189687 unique_id port 189687 remote_ip 10.8.0.206 189692 username morteza4424 189692 mac 189692 bytes_out 0 189692 bytes_in 0 189669 bytes_in 611060 189669 station_ip 83.123.6.97 189669 port 425 189669 unique_id port 189669 remote_ip 10.8.0.50 189671 username morteza4424 189671 mac 189671 bytes_out 0 189671 bytes_in 0 189671 station_ip 83.123.44.243 189671 port 415 189671 unique_id port 189671 remote_ip 10.8.0.206 189674 username kharazmi2920 189674 mac 189674 bytes_out 385727 189674 bytes_in 1281190 189674 station_ip 83.123.93.194 189674 port 424 189674 unique_id port 189674 remote_ip 10.8.0.22 189679 username fezealinaghi 189679 mac 189679 bytes_out 0 189679 bytes_in 0 189679 station_ip 83.123.10.98 189679 port 405 189679 unique_id port 189685 username morteza4424 189685 mac 189685 bytes_out 0 189685 bytes_in 0 189685 station_ip 83.123.44.243 189685 port 414 189685 unique_id port 189685 remote_ip 10.8.0.206 189688 username meysam 189688 mac 189688 bytes_out 2310977 189688 bytes_in 32018161 189688 station_ip 188.159.254.148 189688 port 413 189688 unique_id port 189688 remote_ip 10.8.0.158 189691 username morteza4424 189691 mac 189691 bytes_out 0 189691 bytes_in 0 189691 station_ip 83.123.44.243 189691 port 422 189691 unique_id port 189691 remote_ip 10.8.0.206 189694 username barzegar 189694 mac 189694 bytes_out 0 189694 bytes_in 0 189694 station_ip 5.119.72.132 189694 port 422 189694 unique_id port 189694 remote_ip 10.8.0.70 189701 username alipour1506 189701 mac 189701 bytes_out 102865 189701 bytes_in 226186 189701 station_ip 83.123.107.189 189701 port 410 189701 unique_id port 189701 remote_ip 10.8.0.246 189706 username morteza4424 189706 mac 189706 bytes_out 18848 189706 bytes_in 53440 189706 station_ip 83.123.44.243 189706 port 422 189706 unique_id port 189706 remote_ip 10.8.0.206 189709 username farhad3 189709 mac 189709 bytes_out 1485408 189709 bytes_in 14481222 189709 station_ip 5.120.61.225 189709 port 416 189709 unique_id port 189709 remote_ip 10.8.0.222 189713 username akbari0070 189713 mac 189713 bytes_out 0 189713 bytes_in 0 189713 station_ip 83.123.109.93 189713 port 428 189713 unique_id port 189717 username barzegar 189717 mac 189717 bytes_out 0 189717 bytes_in 0 189717 station_ip 5.119.72.132 189717 port 419 189717 unique_id port 189717 remote_ip 10.8.0.70 189719 username yaghobi 189719 mac 189719 bytes_out 156511 189719 bytes_in 244248 189719 station_ip 83.123.41.9 189719 port 415 189719 unique_id port 189719 remote_ip 10.8.0.138 189720 username kharazmi2920 189720 mac 189720 bytes_out 244432 189720 bytes_in 698562 189720 station_ip 83.123.93.194 189720 port 425 189720 unique_id port 189720 remote_ip 10.8.0.22 189728 username akbari0070 189728 kill_reason Another user logged on this global unique id 189728 mac 189728 bytes_out 0 189728 bytes_in 0 189728 station_ip 83.123.109.93 189728 port 422 189728 unique_id port 189728 remote_ip 10.8.0.166 189733 username akbari0070 189733 mac 189733 bytes_out 0 189733 bytes_in 0 189733 station_ip 83.123.109.93 189733 port 422 189733 unique_id port 189736 username fezealinaghi 189736 mac 189736 bytes_out 1362674 189736 bytes_in 9148799 189736 station_ip 83.123.10.98 189736 port 405 189736 unique_id port 189736 remote_ip 10.8.0.202 189739 username barzegar 189739 mac 189739 bytes_out 0 189739 bytes_in 0 189739 station_ip 5.119.72.132 189739 port 424 189739 unique_id port 189739 remote_ip 10.8.0.70 189742 username farhad3 189742 mac 189742 bytes_out 2124098 189742 bytes_in 13085887 189742 station_ip 5.120.61.225 189742 port 400 189676 station_ip 83.123.44.243 189676 port 419 189676 unique_id port 189676 remote_ip 10.8.0.206 189677 username morteza4424 189677 mac 189677 bytes_out 0 189677 bytes_in 0 189677 station_ip 83.123.44.243 189677 port 419 189677 unique_id port 189677 remote_ip 10.8.0.206 189678 username morteza4424 189678 mac 189678 bytes_out 0 189678 bytes_in 0 189678 station_ip 83.123.44.243 189678 port 422 189678 unique_id port 189678 remote_ip 10.8.0.206 189682 username aminvpn 189682 unique_id port 189682 terminate_cause User-Request 189682 bytes_out 4962911 189682 bytes_in 90195822 189682 station_ip 31.57.142.180 189682 port 15729139 189682 nas_port_type Virtual 189682 remote_ip 5.5.5.92 189683 username morteza4424 189683 mac 189683 bytes_out 0 189683 bytes_in 0 189683 station_ip 83.123.44.243 189683 port 419 189683 unique_id port 189683 remote_ip 10.8.0.206 189689 username morteza4424 189689 mac 189689 bytes_out 0 189689 bytes_in 0 189689 station_ip 83.123.44.243 189689 port 422 189689 unique_id port 189689 remote_ip 10.8.0.206 189690 username sekonji0496 189690 mac 189690 bytes_out 0 189690 bytes_in 0 189690 station_ip 83.123.33.49 189690 port 413 189690 unique_id port 189690 remote_ip 10.8.0.62 189693 username farhad3 189693 mac 189693 bytes_out 0 189693 bytes_in 0 189693 station_ip 5.120.61.225 189693 port 416 189693 unique_id port 189696 username morteza4424 189696 kill_reason Maximum check online fails reached 189696 mac 189696 bytes_out 0 189696 bytes_in 0 189696 station_ip 83.123.44.243 189696 port 413 189696 unique_id port 189698 username rezaei 189698 mac 189698 bytes_out 2613741 189698 bytes_in 20133443 189698 station_ip 5.119.222.93 189698 port 426 189698 unique_id port 189698 remote_ip 10.8.0.198 189702 username malekpoir 189702 mac 189702 bytes_out 0 189702 bytes_in 0 189702 station_ip 5.120.41.184 189702 port 400 189702 unique_id port 189703 username barzegar 189703 mac 189703 bytes_out 0 189703 bytes_in 0 189703 station_ip 5.119.72.132 189703 port 400 189703 unique_id port 189703 remote_ip 10.8.0.70 189708 username sekonji0496 189708 mac 189708 bytes_out 0 189708 bytes_in 0 189708 station_ip 83.123.33.49 189708 port 400 189708 unique_id port 189708 remote_ip 10.8.0.62 189711 username nilufarrajaei 189711 mac 189711 bytes_out 279708 189711 bytes_in 477938 189711 station_ip 83.123.78.20 189711 port 415 189711 unique_id port 189711 remote_ip 10.8.0.194 189716 username sekonji0496 189716 mac 189716 bytes_out 33163 189716 bytes_in 415546 189716 station_ip 83.123.33.49 189716 port 400 189716 unique_id port 189716 remote_ip 10.8.0.62 189721 username seyedmostafa 189721 kill_reason Relative expiration date has reached 189721 mac 189721 bytes_out 0 189721 bytes_in 0 189721 station_ip 5.119.53.222 189721 port 419 189721 unique_id port 189723 username yaghobi 189723 mac 189723 bytes_out 0 189723 bytes_in 0 189723 station_ip 83.123.41.9 189723 port 419 189723 unique_id port 189723 remote_ip 10.8.0.138 189724 username saeed9658 189724 mac 189724 bytes_out 198879 189724 bytes_in 1177578 189724 station_ip 5.119.206.111 189724 port 414 189724 unique_id port 189724 remote_ip 10.8.0.162 189726 username barzegar 189726 mac 189726 bytes_out 0 189726 bytes_in 0 189726 station_ip 5.119.72.132 189726 port 416 189726 unique_id port 189726 remote_ip 10.8.0.70 189730 username barzegar 189730 mac 189730 bytes_out 0 189730 bytes_in 0 189730 station_ip 5.119.72.132 189730 port 419 189692 station_ip 83.123.44.243 189692 port 413 189692 unique_id port 189692 remote_ip 10.8.0.206 189695 username kharazmi2920 189695 mac 189695 bytes_out 9291840 189695 bytes_in 1009747 189695 station_ip 83.123.93.194 189695 port 414 189695 unique_id port 189695 remote_ip 10.8.0.22 189697 username sekonji0496 189697 mac 189697 bytes_out 0 189697 bytes_in 0 189697 station_ip 83.123.33.49 189697 port 424 189697 unique_id port 189697 remote_ip 10.8.0.62 189699 username akbari0070 189699 kill_reason Another user logged on this global unique id 189699 mac 189699 bytes_out 0 189699 bytes_in 0 189699 station_ip 83.123.109.93 189699 port 428 189699 unique_id port 189699 remote_ip 10.8.0.166 189700 username sekonji0496 189700 mac 189700 bytes_out 0 189700 bytes_in 0 189700 station_ip 83.123.33.49 189700 port 424 189700 unique_id port 189700 remote_ip 10.8.0.62 189704 username barzegar 189704 mac 189704 bytes_out 0 189704 bytes_in 0 189704 station_ip 5.119.72.132 189704 port 400 189704 unique_id port 189704 remote_ip 10.8.0.70 189705 username sekonji0496 189705 mac 189705 bytes_out 0 189705 bytes_in 0 189705 station_ip 83.123.33.49 189705 port 400 189705 unique_id port 189705 remote_ip 10.8.0.62 189707 username aminvpn 189707 unique_id port 189707 terminate_cause User-Request 189707 bytes_out 2438542 189707 bytes_in 42399702 189707 station_ip 5.120.23.7 189707 port 15729140 189707 nas_port_type Virtual 189707 remote_ip 5.5.5.97 189710 username morteza4424 189710 mac 189710 bytes_out 0 189710 bytes_in 0 189710 station_ip 83.123.44.243 189710 port 424 189710 unique_id port 189710 remote_ip 10.8.0.206 189712 username dortaj3792 189712 mac 189712 bytes_out 130309 189712 bytes_in 485124 189712 station_ip 5.119.122.44 189712 port 414 189712 unique_id port 189712 remote_ip 10.8.0.102 189714 username yaghobi 189714 mac 189714 bytes_out 1910232 189714 bytes_in 20563612 189714 station_ip 83.123.41.9 189714 port 419 189714 unique_id port 189714 remote_ip 10.8.0.138 189715 username akbari0070 189715 mac 189715 bytes_out 43561 189715 bytes_in 37254 189715 station_ip 83.123.109.93 189715 port 414 189715 unique_id port 189715 remote_ip 10.8.0.166 189718 username nilufarrajaei 189718 mac 189718 bytes_out 182645 189718 bytes_in 579872 189718 station_ip 83.123.78.20 189718 port 416 189718 unique_id port 189718 remote_ip 10.8.0.194 189722 username yaghobi 189722 mac 189722 bytes_out 154952 189722 bytes_in 187085 189722 station_ip 83.123.41.9 189722 port 416 189722 unique_id port 189722 remote_ip 10.8.0.138 189725 username nilufarrajaei 189725 mac 189725 bytes_out 235714 189725 bytes_in 827840 189725 station_ip 83.123.78.20 189725 port 415 189725 unique_id port 189725 remote_ip 10.8.0.194 189727 username rahim 189727 mac 189727 bytes_out 8446512 189727 bytes_in 32037300 189727 station_ip 5.119.57.111 189727 port 420 189727 unique_id port 189727 remote_ip 10.8.0.134 189729 username meysam 189729 mac 189729 bytes_out 591293 189729 bytes_in 6338352 189729 station_ip 188.159.254.148 189729 port 414 189729 unique_id port 189729 remote_ip 10.8.0.158 189732 username yaghobi 189732 mac 189732 bytes_out 5925 189732 bytes_in 3933 189732 station_ip 83.123.70.175 189732 port 419 189732 unique_id port 189732 remote_ip 10.8.0.138 189734 username alipour1506 189734 kill_reason Maximum check online fails reached 189734 mac 189734 bytes_out 0 189734 bytes_in 0 189734 station_ip 83.123.107.189 189734 port 420 189734 unique_id port 189740 username barzegar8595 189730 unique_id port 189730 remote_ip 10.8.0.70 189731 username dortaj3792 189731 mac 189731 bytes_out 49253 189731 bytes_in 48723 189731 station_ip 5.119.122.44 189731 port 415 189731 unique_id port 189731 remote_ip 10.8.0.102 189735 username kamali3 189735 mac 189735 bytes_out 0 189735 bytes_in 0 189735 station_ip 83.123.26.69 189735 port 424 189735 unique_id port 189735 remote_ip 10.8.0.150 189737 username aminvpn 189737 unique_id port 189737 terminate_cause Lost-Carrier 189737 bytes_out 965592 189737 bytes_in 2611822 189737 station_ip 5.120.23.7 189737 port 15729141 189737 nas_port_type Virtual 189737 remote_ip 5.5.5.97 189738 username kamali3 189738 mac 189738 bytes_out 17666 189738 bytes_in 21261 189738 station_ip 83.123.26.69 189738 port 425 189738 unique_id port 189738 remote_ip 10.8.0.150 189745 username aminvpn 189745 mac 189745 bytes_out 3290779 189745 bytes_in 19682891 189745 station_ip 5.119.150.175 189745 port 414 189745 unique_id port 189745 remote_ip 10.8.0.58 189747 username kharazmi2920 189747 mac 189747 bytes_out 417743 189747 bytes_in 2378854 189747 station_ip 83.123.93.194 189747 port 422 189747 unique_id port 189747 remote_ip 10.8.0.22 189750 username alirezaza 189750 unique_id port 189750 terminate_cause Lost-Carrier 189750 bytes_out 84520 189750 bytes_in 369885 189750 station_ip 5.119.164.229 189750 port 15729143 189750 nas_port_type Virtual 189750 remote_ip 5.5.5.88 189752 username houshang 189752 mac 189752 bytes_out 1158167 189752 bytes_in 11668996 189752 station_ip 5.120.185.128 189752 port 427 189752 unique_id port 189752 remote_ip 10.8.0.82 189756 username akbari0070 189756 mac 189756 bytes_out 3735062 189756 bytes_in 48307817 189756 station_ip 83.123.109.93 189756 port 419 189756 unique_id port 189756 remote_ip 10.8.0.166 189758 username khademi 189758 kill_reason Another user logged on this global unique id 189758 mac 189758 bytes_out 0 189758 bytes_in 0 189758 station_ip 83.123.96.238 189758 port 403 189758 unique_id port 189759 username khademi 189759 mac 189759 bytes_out 0 189759 bytes_in 0 189759 station_ip 83.123.96.238 189759 port 403 189759 unique_id port 189760 username akbari0070 189760 mac 189760 bytes_out 633080 189760 bytes_in 9574675 189760 station_ip 83.123.109.93 189760 port 425 189760 unique_id port 189760 remote_ip 10.8.0.166 189763 username godarzi 189763 mac 189763 bytes_out 0 189763 bytes_in 0 189763 station_ip 5.119.61.27 189763 port 423 189763 unique_id port 189764 username barzegar 189764 mac 189764 bytes_out 2512 189764 bytes_in 4771 189764 station_ip 5.119.72.132 189764 port 422 189764 unique_id port 189764 remote_ip 10.8.0.70 189765 username houshang 189765 mac 189765 bytes_out 6181 189765 bytes_in 4710 189765 station_ip 5.120.185.128 189765 port 425 189765 unique_id port 189765 remote_ip 10.8.0.82 189768 username fezealinaghi 189768 mac 189768 bytes_out 1421430 189768 bytes_in 12890742 189768 station_ip 83.123.10.98 189768 port 405 189768 unique_id port 189768 remote_ip 10.8.0.202 189770 username godarzi 189770 mac 189770 bytes_out 79291 189770 bytes_in 139057 189770 station_ip 5.119.61.27 189770 port 403 189770 unique_id port 189770 remote_ip 10.8.0.38 189772 username motamedi9772 189772 mac 189772 bytes_out 236863 189772 bytes_in 926880 189772 station_ip 83.123.25.79 189772 port 426 189772 unique_id port 189772 remote_ip 10.8.0.154 189776 username barzegar 189776 mac 189776 bytes_out 0 189776 bytes_in 0 189776 station_ip 5.119.72.132 189740 mac 189740 bytes_out 5223315 189740 bytes_in 27653225 189740 station_ip 46.225.211.163 189740 port 421 189740 unique_id port 189740 remote_ip 10.8.0.114 189741 username malekpoir 189741 mac 189741 bytes_out 4991666 189741 bytes_in 45727428 189741 station_ip 5.120.41.184 189741 port 410 189741 unique_id port 189741 remote_ip 10.8.0.18 189744 username rezaei 189744 mac 189744 bytes_out 1790488 189744 bytes_in 18004288 189744 station_ip 5.119.222.93 189744 port 426 189744 unique_id port 189744 remote_ip 10.8.0.198 189746 username kalantary6037 189746 mac 189746 bytes_out 33842 189746 bytes_in 39358 189746 station_ip 83.123.39.9 189746 port 428 189746 unique_id port 189746 remote_ip 10.8.0.50 189748 username farhad3 189748 mac 189748 bytes_out 714064 189748 bytes_in 4703194 189748 station_ip 5.120.61.225 189748 port 400 189748 unique_id port 189748 remote_ip 10.8.0.222 189749 username barzegar8595 189749 mac 189749 bytes_out 140386 189749 bytes_in 363014 189749 station_ip 46.225.213.39 189749 port 425 189749 unique_id port 189749 remote_ip 10.8.0.114 189751 username godarzi 189751 kill_reason Another user logged on this global unique id 189751 mac 189751 bytes_out 0 189751 bytes_in 0 189751 station_ip 5.119.61.27 189751 port 423 189751 unique_id port 189751 remote_ip 10.8.0.38 189753 username mohammadjavad 189753 mac 189753 bytes_out 0 189753 bytes_in 0 189753 station_ip 83.123.51.9 189753 port 414 189753 unique_id port 189753 remote_ip 10.8.0.110 189754 username alipour1506 189754 kill_reason Another user logged on this global unique id 189754 mac 189754 bytes_out 0 189754 bytes_in 0 189754 station_ip 78.39.25.121 189754 port 424 189754 unique_id port 189754 remote_ip 10.8.0.246 189762 username mohammadjavad 189762 mac 189762 bytes_out 634548 189762 bytes_in 8093278 189762 station_ip 83.123.51.9 189762 port 414 189762 unique_id port 189762 remote_ip 10.8.0.110 189767 username hamid.e 189767 unique_id port 189767 terminate_cause User-Request 189767 bytes_out 1874087 189767 bytes_in 39436400 189767 station_ip 37.27.8.41 189767 port 15729144 189767 nas_port_type Virtual 189767 remote_ip 5.5.5.87 189771 username houshang 189771 mac 189771 bytes_out 90699 189771 bytes_in 257726 189771 station_ip 5.120.185.128 189771 port 405 189771 unique_id port 189771 remote_ip 10.8.0.82 189774 username meysam 189774 mac 189774 bytes_out 1464490 189774 bytes_in 19369994 189774 station_ip 188.159.254.148 189774 port 414 189774 unique_id port 189774 remote_ip 10.8.0.158 189775 username soleymani5056 189775 mac 189775 bytes_out 95842 189775 bytes_in 168471 189775 station_ip 5.120.168.195 189775 port 410 189775 unique_id port 189775 remote_ip 10.8.0.226 189779 username mostafa_es78 189779 kill_reason Another user logged on this global unique id 189779 mac 189779 bytes_out 0 189779 bytes_in 0 189779 station_ip 83.123.87.1 189779 port 415 189779 unique_id port 189779 remote_ip 10.8.0.34 189780 username barzegar 189780 mac 189780 bytes_out 0 189780 bytes_in 0 189780 station_ip 5.119.72.132 189780 port 422 189780 unique_id port 189780 remote_ip 10.8.0.70 189781 username ahmadi1 189781 mac 189781 bytes_out 55120 189781 bytes_in 477692 189781 station_ip 83.123.112.190 189781 port 423 189781 unique_id port 189781 remote_ip 10.8.0.94 189783 username mostafa_es78 189783 mac 189783 bytes_out 0 189783 bytes_in 0 189783 station_ip 83.123.87.1 189783 port 415 189783 unique_id port 189786 username saeed9658 189786 mac 189786 bytes_out 109900 189786 bytes_in 440231 189742 unique_id port 189742 remote_ip 10.8.0.222 189743 username barzegar 189743 mac 189743 bytes_out 0 189743 bytes_in 0 189743 station_ip 5.119.72.132 189743 port 421 189743 unique_id port 189743 remote_ip 10.8.0.70 189755 username mohammadjavad 189755 mac 189755 bytes_out 299251 189755 bytes_in 3165224 189755 station_ip 83.123.51.9 189755 port 414 189755 unique_id port 189755 remote_ip 10.8.0.110 189757 username houshang 189757 mac 189757 bytes_out 244325 189757 bytes_in 2779378 189757 station_ip 5.120.185.128 189757 port 421 189757 unique_id port 189757 remote_ip 10.8.0.82 189761 username meysam 189761 mac 189761 bytes_out 600806 189761 bytes_in 7104300 189761 station_ip 188.159.254.148 189761 port 422 189761 unique_id port 189761 remote_ip 10.8.0.158 189766 username teymori5660 189766 mac 189766 bytes_out 903734 189766 bytes_in 10139152 189766 station_ip 5.119.182.161 189766 port 403 189766 unique_id port 189766 remote_ip 10.8.0.30 189769 username tahmorsi 189769 mac 189769 bytes_out 19921374 189769 bytes_in 5297453 189769 station_ip 86.57.39.147 189769 port 410 189769 unique_id port 189769 remote_ip 10.8.0.6 189773 username barzegar 189773 mac 189773 bytes_out 3950 189773 bytes_in 6212 189773 station_ip 5.119.72.132 189773 port 403 189773 unique_id port 189773 remote_ip 10.8.0.70 189778 username kalantary6037 189778 mac 189778 bytes_out 70063 189778 bytes_in 102927 189778 station_ip 83.123.87.205 189778 port 422 189778 unique_id port 189778 remote_ip 10.8.0.50 189782 username jafari 189782 kill_reason Another user logged on this global unique id 189782 mac 189782 bytes_out 0 189782 bytes_in 0 189782 station_ip 37.156.54.119 189782 port 405 189782 unique_id port 189782 remote_ip 10.8.0.178 189784 username barzegar 189784 mac 189784 bytes_out 0 189784 bytes_in 0 189784 station_ip 5.119.72.132 189784 port 423 189784 unique_id port 189784 remote_ip 10.8.0.70 189787 username alipour1506 189787 mac 189787 bytes_out 22400 189787 bytes_in 46571 189787 station_ip 83.123.76.186 189787 port 410 189787 unique_id port 189787 remote_ip 10.8.0.246 189788 username alirezaza 189788 unique_id port 189788 terminate_cause Lost-Carrier 189788 bytes_out 1207844 189788 bytes_in 34732681 189788 station_ip 5.119.164.229 189788 port 15729145 189788 nas_port_type Virtual 189788 remote_ip 5.5.5.88 189789 username saeed9658 189789 mac 189789 bytes_out 0 189789 bytes_in 0 189789 station_ip 5.119.206.111 189789 port 410 189789 unique_id port 189789 remote_ip 10.8.0.162 189790 username saeed9658 189790 mac 189790 bytes_out 0 189790 bytes_in 0 189790 station_ip 5.119.206.111 189790 port 410 189790 unique_id port 189790 remote_ip 10.8.0.162 189798 username barzegar 189798 mac 189798 bytes_out 0 189798 bytes_in 0 189798 station_ip 5.119.72.132 189798 port 414 189798 unique_id port 189798 remote_ip 10.8.0.70 189801 username barzegar 189801 mac 189801 bytes_out 0 189801 bytes_in 0 189801 station_ip 5.119.72.132 189801 port 425 189801 unique_id port 189801 remote_ip 10.8.0.70 189805 username saeed9658 189805 mac 189805 bytes_out 18089 189805 bytes_in 50055 189805 station_ip 5.119.206.111 189805 port 400 189805 unique_id port 189805 remote_ip 10.8.0.162 189808 username barzegar 189808 mac 189808 bytes_out 0 189808 bytes_in 0 189808 station_ip 5.119.72.132 189808 port 400 189808 unique_id port 189808 remote_ip 10.8.0.70 189809 username aminvpn 189809 unique_id port 189809 terminate_cause Lost-Carrier 189809 bytes_out 3662672 189776 port 410 189776 unique_id port 189776 remote_ip 10.8.0.70 189777 username alipour1506 189777 mac 189777 bytes_out 0 189777 bytes_in 0 189777 station_ip 78.39.25.121 189777 port 424 189777 unique_id port 189785 username nilufarrajaei 189785 kill_reason Another user logged on this global unique id 189785 mac 189785 bytes_out 0 189785 bytes_in 0 189785 station_ip 83.123.78.20 189785 port 416 189785 unique_id port 189785 remote_ip 10.8.0.194 189791 username motamedi9772 189791 mac 189791 bytes_out 441965 189791 bytes_in 1945094 189791 station_ip 83.123.57.231 189791 port 424 189791 unique_id port 189791 remote_ip 10.8.0.154 189793 username saeed9658 189793 mac 189793 bytes_out 5646 189793 bytes_in 11868 189793 station_ip 5.119.206.111 189793 port 410 189793 unique_id port 189793 remote_ip 10.8.0.162 189794 username saeed9658 189794 mac 189794 bytes_out 0 189794 bytes_in 0 189794 station_ip 5.119.206.111 189794 port 410 189794 unique_id port 189794 remote_ip 10.8.0.162 189795 username jafari 189795 kill_reason Another user logged on this global unique id 189795 mac 189795 bytes_out 0 189795 bytes_in 0 189795 station_ip 37.156.54.119 189795 port 405 189795 unique_id port 189796 username nilufarrajaei 189796 mac 189796 bytes_out 0 189796 bytes_in 0 189796 station_ip 83.123.78.20 189796 port 416 189796 unique_id port 189803 username yaghobi 189803 mac 189803 bytes_out 1616 189803 bytes_in 3739 189803 station_ip 83.123.87.130 189803 port 423 189803 unique_id port 189803 remote_ip 10.8.0.138 189804 username barzegar 189804 mac 189804 bytes_out 0 189804 bytes_in 0 189804 station_ip 5.119.72.132 189804 port 415 189804 unique_id port 189804 remote_ip 10.8.0.70 189806 username motamedi9772 189806 kill_reason Another user logged on this global unique id 189806 mac 189806 bytes_out 0 189806 bytes_in 0 189806 station_ip 83.123.77.7 189806 port 414 189806 unique_id port 189806 remote_ip 10.8.0.154 189814 username aminvpn 189814 unique_id port 189814 terminate_cause User-Request 189814 bytes_out 692192 189814 bytes_in 9949426 189814 station_ip 5.120.23.7 189814 port 15729149 189814 nas_port_type Virtual 189814 remote_ip 5.5.5.86 189817 username barzegar 189817 mac 189817 bytes_out 0 189817 bytes_in 0 189817 station_ip 5.119.72.132 189817 port 416 189817 unique_id port 189817 remote_ip 10.8.0.70 189822 username mostafa_es78 189822 mac 189822 bytes_out 2367071 189822 bytes_in 22545533 189822 station_ip 83.123.87.1 189822 port 422 189822 unique_id port 189822 remote_ip 10.8.0.34 189823 username motamedi9772 189823 mac 189823 bytes_out 0 189823 bytes_in 0 189823 station_ip 83.123.77.7 189823 port 414 189823 unique_id port 189827 username jafari 189827 mac 189827 bytes_out 0 189827 bytes_in 0 189827 station_ip 37.156.54.119 189827 port 405 189827 unique_id port 189828 username rezaei 189828 mac 189828 bytes_out 68545 189828 bytes_in 105257 189828 station_ip 5.119.222.93 189828 port 400 189828 unique_id port 189828 remote_ip 10.8.0.198 189832 username farhad3 189832 mac 189832 bytes_out 240291 189832 bytes_in 815549 189832 station_ip 5.120.61.225 189832 port 416 189832 unique_id port 189832 remote_ip 10.8.0.222 189837 username barzegar8595 189837 kill_reason Another user logged on this global unique id 189837 mac 189837 bytes_out 0 189837 bytes_in 0 189837 station_ip 46.225.213.39 189837 port 421 189837 unique_id port 189838 username esmaeilkazemi 189838 mac 189838 bytes_out 25052 189838 bytes_in 53936 189838 station_ip 83.123.33.107 189786 station_ip 5.119.206.111 189786 port 415 189786 unique_id port 189786 remote_ip 10.8.0.162 189792 username dortaj3792 189792 mac 189792 bytes_out 352441 189792 bytes_in 1818612 189792 station_ip 5.119.122.44 189792 port 414 189792 unique_id port 189792 remote_ip 10.8.0.102 189797 username saeed9658 189797 mac 189797 bytes_out 0 189797 bytes_in 0 189797 station_ip 5.119.206.111 189797 port 414 189797 unique_id port 189797 remote_ip 10.8.0.162 189799 username hamid.e 189799 unique_id port 189799 terminate_cause User-Request 189799 bytes_out 729090 189799 bytes_in 13238305 189799 station_ip 37.27.8.41 189799 port 15729146 189799 nas_port_type Virtual 189799 remote_ip 5.5.5.87 189800 username kharazmi2920 189800 mac 189800 bytes_out 142569 189800 bytes_in 224074 189800 station_ip 83.123.93.194 189800 port 400 189800 unique_id port 189800 remote_ip 10.8.0.22 189802 username alipour1506 189802 mac 189802 bytes_out 60533 189802 bytes_in 174804 189802 station_ip 83.123.76.186 189802 port 415 189802 unique_id port 189802 remote_ip 10.8.0.246 189807 username barzegar8595 189807 kill_reason Another user logged on this global unique id 189807 mac 189807 bytes_out 0 189807 bytes_in 0 189807 station_ip 46.225.213.39 189807 port 421 189807 unique_id port 189807 remote_ip 10.8.0.114 189816 username mosavi0713 189816 mac 189816 bytes_out 126450 189816 bytes_in 321375 189816 station_ip 83.123.106.32 189816 port 400 189816 unique_id port 189816 remote_ip 10.8.0.234 189819 username soleymani5056 189819 mac 189819 bytes_out 1995 189819 bytes_in 4111 189819 station_ip 5.120.162.64 189819 port 415 189819 unique_id port 189819 remote_ip 10.8.0.226 189820 username saeed9658 189820 mac 189820 bytes_out 1636 189820 bytes_in 3577 189820 station_ip 5.119.206.111 189820 port 426 189820 unique_id port 189820 remote_ip 10.8.0.162 189825 username barzegar 189825 mac 189825 bytes_out 0 189825 bytes_in 0 189825 station_ip 5.119.72.132 189825 port 415 189825 unique_id port 189825 remote_ip 10.8.0.70 189829 username saeed9658 189829 mac 189829 bytes_out 0 189829 bytes_in 0 189829 station_ip 5.119.206.111 189829 port 400 189829 unique_id port 189829 remote_ip 10.8.0.162 189830 username saeed9658 189830 mac 189830 bytes_out 0 189830 bytes_in 0 189830 station_ip 5.119.206.111 189830 port 400 189830 unique_id port 189830 remote_ip 10.8.0.162 189833 username barzegar 189833 mac 189833 bytes_out 0 189833 bytes_in 0 189833 station_ip 5.119.72.132 189833 port 424 189833 unique_id port 189833 remote_ip 10.8.0.70 189835 username rezaei 189835 mac 189835 bytes_out 346173 189835 bytes_in 1883806 189835 station_ip 5.119.222.93 189835 port 426 189835 unique_id port 189835 remote_ip 10.8.0.198 189839 username kalantary6037 189839 mac 189839 bytes_out 5712676 189839 bytes_in 29248119 189839 station_ip 83.123.81.109 189839 port 425 189839 unique_id port 189839 remote_ip 10.8.0.50 189843 username barzegar 189843 mac 189843 bytes_out 8224 189843 bytes_in 12848 189843 station_ip 5.119.72.132 189843 port 425 189843 unique_id port 189843 remote_ip 10.8.0.70 189845 username yaghobi 189845 mac 189845 bytes_out 568577 189845 bytes_in 2342879 189845 station_ip 83.123.35.120 189845 port 422 189845 unique_id port 189845 remote_ip 10.8.0.138 189847 username ahmadi1 189847 mac 189847 bytes_out 43346 189847 bytes_in 158315 189847 station_ip 83.123.24.238 189847 port 416 189847 unique_id port 189847 remote_ip 10.8.0.94 189848 username khademi 189809 bytes_in 31267082 189809 station_ip 5.120.23.7 189809 port 15729147 189809 nas_port_type Virtual 189809 remote_ip 5.5.5.97 189810 username jafari 189810 kill_reason Another user logged on this global unique id 189810 mac 189810 bytes_out 0 189810 bytes_in 0 189810 station_ip 37.156.54.119 189810 port 405 189810 unique_id port 189811 username rashidi4690 189811 mac 189811 bytes_out 7203027 189811 bytes_in 24699287 189811 station_ip 5.120.133.15 189811 port 399 189811 unique_id port 189811 remote_ip 10.8.0.242 189812 username esmaeilkazemi 189812 mac 189812 bytes_out 423808 189812 bytes_in 6641668 189812 station_ip 83.123.33.107 189812 port 415 189812 unique_id port 189812 remote_ip 10.8.0.26 189813 username soleymani5056 189813 mac 189813 bytes_out 241262 189813 bytes_in 537578 189813 station_ip 5.119.176.92 189813 port 416 189813 unique_id port 189813 remote_ip 10.8.0.226 189815 username barzegar 189815 mac 189815 bytes_out 0 189815 bytes_in 0 189815 station_ip 5.119.72.132 189815 port 416 189815 unique_id port 189815 remote_ip 10.8.0.70 189818 username kharazmi2920 189818 mac 189818 bytes_out 226702 189818 bytes_in 359617 189818 station_ip 83.123.93.194 189818 port 424 189818 unique_id port 189818 remote_ip 10.8.0.22 189821 username saeed9658 189821 mac 189821 bytes_out 0 189821 bytes_in 0 189821 station_ip 5.119.206.111 189821 port 400 189821 unique_id port 189821 remote_ip 10.8.0.162 189824 username saeed9658 189824 mac 189824 bytes_out 0 189824 bytes_in 0 189824 station_ip 5.119.206.111 189824 port 400 189824 unique_id port 189824 remote_ip 10.8.0.162 189826 username saeed9658 189826 mac 189826 bytes_out 0 189826 bytes_in 0 189826 station_ip 5.119.206.111 189826 port 400 189826 unique_id port 189826 remote_ip 10.8.0.162 189831 username barzegar 189831 mac 189831 bytes_out 0 189831 bytes_in 0 189831 station_ip 5.119.72.132 189831 port 405 189831 unique_id port 189831 remote_ip 10.8.0.70 189834 username farhad3 189834 mac 189834 bytes_out 245943 189834 bytes_in 713297 189834 station_ip 5.120.61.225 189834 port 422 189834 unique_id port 189834 remote_ip 10.8.0.222 189836 username soleymani5056 189836 mac 189836 bytes_out 207172 189836 bytes_in 897659 189836 station_ip 5.119.237.89 189836 port 415 189836 unique_id port 189836 remote_ip 10.8.0.226 189844 username khaleghi2406 189844 mac 189844 bytes_out 831679 189844 bytes_in 7233294 189844 station_ip 83.123.92.168 189844 port 405 189844 unique_id port 189844 remote_ip 10.8.0.218 189846 username akbari0070 189846 mac 189846 bytes_out 1718156 189846 bytes_in 18433023 189846 station_ip 83.123.109.93 189846 port 424 189846 unique_id port 189846 remote_ip 10.8.0.166 189849 username godarzi 189849 mac 189849 bytes_out 2336178 189849 bytes_in 32780483 189849 station_ip 5.119.61.27 189849 port 400 189849 unique_id port 189849 remote_ip 10.8.0.38 189851 username barzegar 189851 mac 189851 bytes_out 168980 189851 bytes_in 23011 189851 station_ip 5.119.72.132 189851 port 416 189851 unique_id port 189851 remote_ip 10.8.0.70 189856 username barzegar 189856 mac 189856 bytes_out 0 189856 bytes_in 0 189856 station_ip 5.119.72.132 189856 port 416 189856 unique_id port 189856 remote_ip 10.8.0.70 189863 username farhad3 189863 mac 189863 bytes_out 121970 189863 bytes_in 403643 189863 station_ip 5.120.61.225 189863 port 416 189863 unique_id port 189863 remote_ip 10.8.0.222 189864 username motamedi9772 189864 mac 189864 bytes_out 0 189838 port 422 189838 unique_id port 189838 remote_ip 10.8.0.26 189840 username barzegar 189840 mac 189840 bytes_out 0 189840 bytes_in 0 189840 station_ip 5.119.72.132 189840 port 425 189840 unique_id port 189840 remote_ip 10.8.0.70 189841 username hadibarzegar 189841 mac 189841 bytes_out 2221923 189841 bytes_in 22488953 189841 station_ip 83.123.118.33 189841 port 415 189841 unique_id port 189841 remote_ip 10.8.0.174 189842 username houshang 189842 mac 189842 bytes_out 3164604 189842 bytes_in 44251244 189842 station_ip 5.120.185.128 189842 port 416 189842 unique_id port 189842 remote_ip 10.8.0.82 189850 username motamedi9772 189850 kill_reason Another user logged on this global unique id 189850 mac 189850 bytes_out 0 189850 bytes_in 0 189850 station_ip 83.123.77.7 189850 port 414 189850 unique_id port 189850 remote_ip 10.8.0.154 189853 username hadibarzegar 189853 mac 189853 bytes_out 1011829 189853 bytes_in 11849927 189853 station_ip 83.123.118.33 189853 port 400 189853 unique_id port 189853 remote_ip 10.8.0.174 189855 username alipour1506 189855 kill_reason Another user logged on this global unique id 189855 mac 189855 bytes_out 0 189855 bytes_in 0 189855 station_ip 78.39.25.121 189855 port 423 189855 unique_id port 189855 remote_ip 10.8.0.246 189858 username motamedi9772 189858 mac 189858 bytes_out 0 189858 bytes_in 0 189858 station_ip 83.123.77.7 189858 port 414 189858 unique_id port 189861 username motamedi9772 189861 mac 189861 bytes_out 21253 189861 bytes_in 48189 189861 station_ip 83.123.77.7 189861 port 415 189861 unique_id port 189861 remote_ip 10.8.0.154 189862 username motamedi9772 189862 mac 189862 bytes_out 0 189862 bytes_in 0 189862 station_ip 83.123.77.7 189862 port 400 189862 unique_id port 189862 remote_ip 10.8.0.154 189866 username barzegar 189866 mac 189866 bytes_out 0 189866 bytes_in 0 189866 station_ip 5.119.72.132 189866 port 415 189866 unique_id port 189866 remote_ip 10.8.0.70 189869 username motamedi9772 189869 mac 189869 bytes_out 0 189869 bytes_in 0 189869 station_ip 83.123.77.7 189869 port 428 189869 unique_id port 189869 remote_ip 10.8.0.154 189871 username motamedi9772 189871 mac 189871 bytes_out 0 189871 bytes_in 0 189871 station_ip 83.123.77.7 189871 port 428 189871 unique_id port 189871 remote_ip 10.8.0.154 189874 username aminvpn 189874 unique_id port 189874 terminate_cause Lost-Carrier 189874 bytes_out 1793537 189874 bytes_in 15906270 189874 station_ip 5.120.23.7 189874 port 15729150 189874 nas_port_type Virtual 189874 remote_ip 5.5.5.86 189875 username motamedi9772 189875 mac 189875 bytes_out 0 189875 bytes_in 0 189875 station_ip 83.123.77.7 189875 port 425 189875 unique_id port 189875 remote_ip 10.8.0.154 189878 username nilufarrajaei 189878 mac 189878 bytes_out 3649133 189878 bytes_in 24223062 189878 station_ip 83.123.78.20 189878 port 410 189878 unique_id port 189878 remote_ip 10.8.0.194 189881 username mohammadjavad 189881 mac 189881 bytes_out 660480 189881 bytes_in 4390228 189881 station_ip 83.123.11.16 189881 port 400 189881 unique_id port 189881 remote_ip 10.8.0.110 189882 username khademi 189882 kill_reason Another user logged on this global unique id 189882 mac 189882 bytes_out 0 189882 bytes_in 0 189882 station_ip 83.123.96.238 189882 port 427 189882 unique_id port 189884 username motamedi9772 189884 mac 189884 bytes_out 0 189884 bytes_in 0 189884 station_ip 83.123.77.7 189884 port 410 189884 unique_id port 189884 remote_ip 10.8.0.154 189887 username farhad3 189887 mac 189848 kill_reason Another user logged on this global unique id 189848 mac 189848 bytes_out 0 189848 bytes_in 0 189848 station_ip 83.123.96.238 189848 port 427 189848 unique_id port 189848 remote_ip 10.8.0.14 189852 username soleymani5056 189852 mac 189852 bytes_out 46977 189852 bytes_in 55547 189852 station_ip 5.120.18.215 189852 port 422 189852 unique_id port 189852 remote_ip 10.8.0.226 189854 username ahmadi1 189854 mac 189854 bytes_out 181029 189854 bytes_in 844802 189854 station_ip 83.123.24.238 189854 port 416 189854 unique_id port 189854 remote_ip 10.8.0.94 189857 username kalantary6037 189857 mac 189857 bytes_out 1692362 189857 bytes_in 13369446 189857 station_ip 83.123.81.109 189857 port 415 189857 unique_id port 189857 remote_ip 10.8.0.50 189859 username rashidi4690 189859 mac 189859 bytes_out 1069574 189859 bytes_in 9271185 189859 station_ip 5.120.133.15 189859 port 400 189859 unique_id port 189859 remote_ip 10.8.0.242 189860 username barzegar 189860 mac 189860 bytes_out 0 189860 bytes_in 0 189860 station_ip 5.119.72.132 189860 port 400 189860 unique_id port 189860 remote_ip 10.8.0.70 189867 username motamedi9772 189867 mac 189867 bytes_out 0 189867 bytes_in 0 189867 station_ip 83.123.77.7 189867 port 426 189867 unique_id port 189867 remote_ip 10.8.0.154 189868 username fezealinaghi 189868 kill_reason Another user logged on this global unique id 189868 mac 189868 bytes_out 0 189868 bytes_in 0 189868 station_ip 83.123.74.242 189868 port 405 189868 unique_id port 189868 remote_ip 10.8.0.202 189870 username soleymani5056 189870 mac 189870 bytes_out 4359 189870 bytes_in 4645 189870 station_ip 5.120.169.246 189870 port 426 189870 unique_id port 189870 remote_ip 10.8.0.226 189872 username kalantary6037 189872 mac 189872 bytes_out 958178 189872 bytes_in 7839490 189872 station_ip 83.123.81.109 189872 port 415 189872 unique_id port 189872 remote_ip 10.8.0.50 189873 username farhad3 189873 mac 189873 bytes_out 794033 189873 bytes_in 3692257 189873 station_ip 5.120.61.225 189873 port 425 189873 unique_id port 189873 remote_ip 10.8.0.222 189876 username motamedi9772 189876 mac 189876 bytes_out 0 189876 bytes_in 0 189876 station_ip 83.123.77.7 189876 port 425 189876 unique_id port 189876 remote_ip 10.8.0.154 189879 username motamedi9772 189879 mac 189879 bytes_out 0 189879 bytes_in 0 189879 station_ip 83.123.77.7 189879 port 410 189879 unique_id port 189879 remote_ip 10.8.0.154 189880 username barzegar 189880 mac 189880 bytes_out 0 189880 bytes_in 0 189880 station_ip 5.119.72.132 189880 port 410 189880 unique_id port 189880 remote_ip 10.8.0.70 189885 username mohammadjavad 189885 mac 189885 bytes_out 1938 189885 bytes_in 4067 189885 station_ip 83.123.11.16 189885 port 425 189885 unique_id port 189885 remote_ip 10.8.0.110 189888 username farhad3 189888 mac 189888 bytes_out 3355 189888 bytes_in 5197 189888 station_ip 5.120.61.225 189888 port 410 189888 unique_id port 189888 remote_ip 10.8.0.222 189891 username milan 189891 kill_reason Another user logged on this global unique id 189891 mac 189891 bytes_out 0 189891 bytes_in 0 189891 station_ip 5.119.23.34 189891 port 403 189891 unique_id port 189891 remote_ip 10.8.0.182 189892 username motamedi9772 189892 mac 189892 bytes_out 0 189892 bytes_in 0 189892 station_ip 83.123.77.7 189892 port 416 189892 unique_id port 189892 remote_ip 10.8.0.154 189893 username rashidi4690 189893 mac 189893 bytes_out 625893 189893 bytes_in 2168166 189893 station_ip 5.120.133.15 189864 bytes_in 0 189864 station_ip 83.123.77.7 189864 port 400 189864 unique_id port 189864 remote_ip 10.8.0.154 189865 username farhad3 189865 mac 189865 bytes_out 0 189865 bytes_in 0 189865 station_ip 5.120.61.225 189865 port 415 189865 unique_id port 189865 remote_ip 10.8.0.222 189877 username godarzi 189877 mac 189877 bytes_out 1724933 189877 bytes_in 8460299 189877 station_ip 5.119.61.27 189877 port 422 189877 unique_id port 189877 remote_ip 10.8.0.38 189883 username motamedi9772 189883 mac 189883 bytes_out 0 189883 bytes_in 0 189883 station_ip 83.123.77.7 189883 port 410 189883 unique_id port 189883 remote_ip 10.8.0.154 189886 username motamedi9772 189886 mac 189886 bytes_out 0 189886 bytes_in 0 189886 station_ip 83.123.77.7 189886 port 410 189886 unique_id port 189886 remote_ip 10.8.0.154 189889 username motamedi9772 189889 mac 189889 bytes_out 0 189889 bytes_in 0 189889 station_ip 83.123.77.7 189889 port 426 189889 unique_id port 189889 remote_ip 10.8.0.154 189898 username motamedi9772 189898 mac 189898 bytes_out 0 189898 bytes_in 0 189898 station_ip 83.123.77.7 189898 port 415 189898 unique_id port 189898 remote_ip 10.8.0.154 189907 username sabaghnezhad 189907 mac 189907 bytes_out 27247 189907 bytes_in 27120 189907 station_ip 188.229.55.56 189907 port 416 189907 unique_id port 189907 remote_ip 10.8.0.66 189909 username barzegar 189909 mac 189909 bytes_out 0 189909 bytes_in 0 189909 station_ip 5.119.72.132 189909 port 416 189909 unique_id port 189909 remote_ip 10.8.0.70 189912 username saeed9658 189912 mac 189912 bytes_out 2359264 189912 bytes_in 20938444 189912 station_ip 5.119.206.111 189912 port 428 189912 unique_id port 189912 remote_ip 10.8.0.162 189917 username motamedi9772 189917 mac 189917 bytes_out 0 189917 bytes_in 0 189917 station_ip 83.123.77.7 189917 port 428 189917 unique_id port 189917 remote_ip 10.8.0.154 189919 username motamedi9772 189919 mac 189919 bytes_out 0 189919 bytes_in 0 189919 station_ip 83.123.77.7 189919 port 429 189919 unique_id port 189919 remote_ip 10.8.0.154 189923 username motamedi9772 189923 mac 189923 bytes_out 0 189923 bytes_in 0 189923 station_ip 83.123.77.7 189923 port 421 189923 unique_id port 189923 remote_ip 10.8.0.154 189927 username motamedi9772 189927 mac 189927 bytes_out 0 189927 bytes_in 0 189927 station_ip 83.123.77.7 189927 port 426 189927 unique_id port 189927 remote_ip 10.8.0.154 189934 username barzegar 189934 mac 189934 bytes_out 0 189934 bytes_in 0 189934 station_ip 5.119.72.132 189934 port 429 189934 unique_id port 189934 remote_ip 10.8.0.70 189935 username soleymani5056 189935 mac 189935 bytes_out 100389 189935 bytes_in 258024 189935 station_ip 5.119.142.129 189935 port 416 189935 unique_id port 189935 remote_ip 10.8.0.226 189938 username motamedi9772 189938 mac 189938 bytes_out 6101 189938 bytes_in 11942 189938 station_ip 83.123.77.7 189938 port 426 189938 unique_id port 189938 remote_ip 10.8.0.154 189942 username shahruz 189942 mac 189942 bytes_out 0 189942 bytes_in 0 189942 station_ip 86.55.252.137 189942 port 429 189942 unique_id port 189942 remote_ip 10.8.0.146 189946 username motamedi9772 189946 mac 189946 bytes_out 0 189946 bytes_in 0 189946 station_ip 83.123.77.7 189946 port 429 189946 unique_id port 189946 remote_ip 10.8.0.154 189949 username motamedi9772 189949 mac 189949 bytes_out 0 189949 bytes_in 0 189949 station_ip 83.123.77.7 189887 bytes_out 1355417 189887 bytes_in 14069910 189887 station_ip 5.120.61.225 189887 port 426 189887 unique_id port 189887 remote_ip 10.8.0.222 189890 username akbari0070 189890 mac 189890 bytes_out 236537 189890 bytes_in 571233 189890 station_ip 83.123.58.101 189890 port 416 189890 unique_id port 189890 remote_ip 10.8.0.166 189894 username barzegar 189894 mac 189894 bytes_out 0 189894 bytes_in 0 189894 station_ip 5.119.72.132 189894 port 416 189894 unique_id port 189894 remote_ip 10.8.0.70 189895 username akbari0070 189895 mac 189895 bytes_out 11530 189895 bytes_in 19574 189895 station_ip 83.123.58.101 189895 port 410 189895 unique_id port 189895 remote_ip 10.8.0.166 189896 username sabaghnezhad 189896 mac 189896 bytes_out 26822 189896 bytes_in 35506 189896 station_ip 188.229.55.56 189896 port 410 189896 unique_id port 189896 remote_ip 10.8.0.66 189899 username sabaghnezhad 189899 mac 189899 bytes_out 0 189899 bytes_in 0 189899 station_ip 188.229.55.56 189899 port 416 189899 unique_id port 189899 remote_ip 10.8.0.66 189900 username rashidi4690 189900 mac 189900 bytes_out 284168 189900 bytes_in 789924 189900 station_ip 5.120.133.15 189900 port 426 189900 unique_id port 189900 remote_ip 10.8.0.242 189903 username sabaghnezhad 189903 mac 189903 bytes_out 9553 189903 bytes_in 16775 189903 station_ip 188.229.55.56 189903 port 425 189903 unique_id port 189903 remote_ip 10.8.0.66 189906 username motamedi9772 189906 mac 189906 bytes_out 0 189906 bytes_in 0 189906 station_ip 83.123.77.7 189906 port 415 189906 unique_id port 189906 remote_ip 10.8.0.154 189914 username motamedi9772 189914 mac 189914 bytes_out 0 189914 bytes_in 0 189914 station_ip 83.123.77.7 189914 port 416 189914 unique_id port 189914 remote_ip 10.8.0.154 189916 username barzegar 189916 mac 189916 bytes_out 0 189916 bytes_in 0 189916 station_ip 5.119.72.132 189916 port 400 189916 unique_id port 189916 remote_ip 10.8.0.70 189918 username barzegar8595 189918 mac 189918 bytes_out 0 189918 bytes_in 0 189918 station_ip 46.225.213.39 189918 port 421 189918 unique_id port 189921 username khademi 189921 kill_reason Another user logged on this global unique id 189921 mac 189921 bytes_out 0 189921 bytes_in 0 189921 station_ip 83.123.96.238 189921 port 427 189921 unique_id port 189922 username motamedi9772 189922 mac 189922 bytes_out 0 189922 bytes_in 0 189922 station_ip 83.123.77.7 189922 port 421 189922 unique_id port 189922 remote_ip 10.8.0.154 189925 username saeed9658 189925 mac 189925 bytes_out 0 189925 bytes_in 0 189925 station_ip 5.119.206.111 189925 port 429 189925 unique_id port 189925 remote_ip 10.8.0.162 189926 username motamedi9772 189926 mac 189926 bytes_out 0 189926 bytes_in 0 189926 station_ip 83.123.77.7 189926 port 421 189926 unique_id port 189926 remote_ip 10.8.0.154 189928 username godarzi 189928 mac 189928 bytes_out 794429 189928 bytes_in 5251729 189928 station_ip 5.119.61.27 189928 port 415 189928 unique_id port 189928 remote_ip 10.8.0.38 189929 username shahruz 189929 mac 189929 bytes_out 0 189929 bytes_in 0 189929 station_ip 86.55.252.137 189929 port 415 189929 unique_id port 189929 remote_ip 10.8.0.146 189930 username motamedi9772 189930 mac 189930 bytes_out 0 189930 bytes_in 0 189930 station_ip 83.123.77.7 189930 port 426 189930 unique_id port 189930 remote_ip 10.8.0.154 189932 username milan 189932 kill_reason Another user logged on this global unique id 189932 mac 189932 bytes_out 0 189893 port 415 189893 unique_id port 189893 remote_ip 10.8.0.242 189897 username khalili2 189897 mac 189897 bytes_out 2266246 189897 bytes_in 10893654 189897 station_ip 5.119.41.36 189897 port 425 189897 unique_id port 189897 remote_ip 10.8.0.190 189901 username sabaghnezhad 189901 mac 189901 bytes_out 8700 189901 bytes_in 11690 189901 station_ip 188.229.55.56 189901 port 415 189901 unique_id port 189901 remote_ip 10.8.0.66 189902 username motamedi9772 189902 mac 189902 bytes_out 11268 189902 bytes_in 27221 189902 station_ip 83.123.77.7 189902 port 416 189902 unique_id port 189902 remote_ip 10.8.0.154 189904 username motamedi9772 189904 mac 189904 bytes_out 0 189904 bytes_in 0 189904 station_ip 83.123.77.7 189904 port 425 189904 unique_id port 189904 remote_ip 10.8.0.154 189905 username farhad3 189905 mac 189905 bytes_out 46498 189905 bytes_in 34509 189905 station_ip 5.120.61.225 189905 port 415 189905 unique_id port 189905 remote_ip 10.8.0.222 189908 username motamedi9772 189908 mac 189908 bytes_out 0 189908 bytes_in 0 189908 station_ip 83.123.77.7 189908 port 426 189908 unique_id port 189908 remote_ip 10.8.0.154 189910 username barzegar8595 189910 kill_reason Another user logged on this global unique id 189910 mac 189910 bytes_out 0 189910 bytes_in 0 189910 station_ip 46.225.213.39 189910 port 421 189910 unique_id port 189911 username rezaei 189911 kill_reason Another user logged on this global unique id 189911 mac 189911 bytes_out 0 189911 bytes_in 0 189911 station_ip 5.119.222.93 189911 port 424 189911 unique_id port 189911 remote_ip 10.8.0.198 189913 username kalantary6037 189913 mac 189913 bytes_out 2113206 189913 bytes_in 17747800 189913 station_ip 83.123.32.137 189913 port 429 189913 unique_id port 189913 remote_ip 10.8.0.50 189915 username yaghobi 189915 mac 189915 bytes_out 3889005 189915 bytes_in 38371777 189915 station_ip 83.123.105.151 189915 port 400 189915 unique_id port 189915 remote_ip 10.8.0.138 189920 username motamedi9772 189920 mac 189920 bytes_out 0 189920 bytes_in 0 189920 station_ip 83.123.77.7 189920 port 421 189920 unique_id port 189920 remote_ip 10.8.0.154 189924 username shahruz 189924 mac 189924 bytes_out 3852 189924 bytes_in 6137 189924 station_ip 86.55.252.137 189924 port 426 189924 unique_id port 189924 remote_ip 10.8.0.146 189931 username shahruz 189931 mac 189931 bytes_out 0 189931 bytes_in 0 189931 station_ip 86.55.252.137 189931 port 415 189931 unique_id port 189931 remote_ip 10.8.0.146 189945 username shahruz 189945 mac 189945 bytes_out 0 189945 bytes_in 0 189945 station_ip 86.55.252.137 189945 port 426 189945 unique_id port 189945 remote_ip 10.8.0.146 189947 username sabaghnezhad 189947 mac 189947 bytes_out 72612 189947 bytes_in 61785 189947 station_ip 188.229.55.56 189947 port 430 189947 unique_id port 189947 remote_ip 10.8.0.66 189948 username shahruz 189948 kill_reason Maximum check online fails reached 189948 mac 189948 bytes_out 0 189948 bytes_in 0 189948 station_ip 86.55.252.137 189948 port 428 189948 unique_id port 189950 username yaghobi 189950 mac 189950 bytes_out 508746 189950 bytes_in 6102615 189950 station_ip 83.123.105.151 189950 port 416 189950 unique_id port 189950 remote_ip 10.8.0.138 189952 username mohammadjavad 189952 mac 189952 bytes_out 162382 189952 bytes_in 367938 189952 station_ip 83.123.7.120 189952 port 426 189952 unique_id port 189952 remote_ip 10.8.0.110 189955 username kharazmi2920 189955 mac 189955 bytes_out 34836505 189932 bytes_in 0 189932 station_ip 5.119.23.34 189932 port 403 189932 unique_id port 189933 username shahruz 189933 mac 189933 bytes_out 0 189933 bytes_in 0 189933 station_ip 86.55.252.137 189933 port 415 189933 unique_id port 189933 remote_ip 10.8.0.146 189936 username fezealinaghi 189936 kill_reason Another user logged on this global unique id 189936 mac 189936 bytes_out 0 189936 bytes_in 0 189936 station_ip 83.123.74.242 189936 port 405 189936 unique_id port 189937 username shahruz 189937 mac 189937 bytes_out 0 189937 bytes_in 0 189937 station_ip 86.55.252.137 189937 port 416 189937 unique_id port 189937 remote_ip 10.8.0.146 189939 username yaghobi 189939 mac 189939 bytes_out 753479 189939 bytes_in 6933985 189939 station_ip 83.123.105.151 189939 port 428 189939 unique_id port 189939 remote_ip 10.8.0.138 189940 username motamedi9772 189940 mac 189940 bytes_out 0 189940 bytes_in 0 189940 station_ip 83.123.77.7 189940 port 426 189940 unique_id port 189940 remote_ip 10.8.0.154 189941 username shahruz 189941 mac 189941 bytes_out 0 189941 bytes_in 0 189941 station_ip 86.55.252.137 189941 port 428 189941 unique_id port 189941 remote_ip 10.8.0.146 189943 username motamedi9772 189943 mac 189943 bytes_out 0 189943 bytes_in 0 189943 station_ip 83.123.77.7 189943 port 426 189943 unique_id port 189943 remote_ip 10.8.0.154 189944 username motamedi9772 189944 mac 189944 bytes_out 0 189944 bytes_in 0 189944 station_ip 83.123.77.7 189944 port 426 189944 unique_id port 189944 remote_ip 10.8.0.154 189954 username motamedi9772 189954 mac 189954 bytes_out 0 189954 bytes_in 0 189954 station_ip 83.123.77.7 189954 port 416 189954 unique_id port 189954 remote_ip 10.8.0.154 189957 username kalantary6037 189957 mac 189957 bytes_out 1295595 189957 bytes_in 10617853 189957 station_ip 83.123.32.109 189957 port 415 189957 unique_id port 189957 remote_ip 10.8.0.50 189964 username saeed9658 189964 mac 189964 bytes_out 3347266 189964 bytes_in 34138792 189964 station_ip 5.119.206.111 189964 port 421 189964 unique_id port 189964 remote_ip 10.8.0.162 189968 username khalili2 189968 mac 189968 bytes_out 0 189968 bytes_in 0 189968 station_ip 5.119.41.36 189968 port 410 189968 unique_id port 189969 username farhad3 189969 mac 189969 bytes_out 69286 189969 bytes_in 32416 189969 station_ip 5.120.61.225 189969 port 416 189969 unique_id port 189969 remote_ip 10.8.0.222 189973 username rahim 189973 mac 189973 bytes_out 0 189973 bytes_in 0 189973 station_ip 5.119.57.111 189973 port 400 189973 unique_id port 189973 remote_ip 10.8.0.134 189974 username fezealinaghi 189974 mac 189974 bytes_out 0 189974 bytes_in 0 189974 station_ip 83.123.74.242 189974 port 405 189974 unique_id port 189979 username soleymani5056 189979 mac 189979 bytes_out 8534133 189979 bytes_in 1060999 189979 station_ip 5.120.112.108 189979 port 425 189979 unique_id port 189979 remote_ip 10.8.0.226 189983 username motamedi9772 189983 mac 189983 bytes_out 1479816 189983 bytes_in 15929988 189983 station_ip 83.123.77.7 189983 port 429 189983 unique_id port 189983 remote_ip 10.8.0.154 189995 username shahruz 189995 kill_reason Maximum check online fails reached 189995 mac 189995 bytes_out 0 189995 bytes_in 0 189995 station_ip 86.55.252.137 189995 port 415 189995 unique_id port 189999 username shahruz 189999 mac 189999 bytes_out 22715 189999 bytes_in 53247 189999 station_ip 86.55.252.137 189999 port 431 189999 unique_id port 189949 port 430 189949 unique_id port 189949 remote_ip 10.8.0.154 189951 username shahruz 189951 mac 189951 bytes_out 2103 189951 bytes_in 4730 189951 station_ip 86.55.252.137 189951 port 429 189951 unique_id port 189951 remote_ip 10.8.0.146 189953 username houshang 189953 mac 189953 bytes_out 1767773 189953 bytes_in 14797276 189953 station_ip 5.119.102.72 189953 port 425 189953 unique_id port 189953 remote_ip 10.8.0.82 189958 username motamedi9772 189958 mac 189958 bytes_out 0 189958 bytes_in 0 189958 station_ip 83.123.77.7 189958 port 400 189958 unique_id port 189958 remote_ip 10.8.0.154 189960 username shahruz 189960 mac 189960 bytes_out 0 189960 bytes_in 0 189960 station_ip 86.55.252.137 189960 port 416 189960 unique_id port 189960 remote_ip 10.8.0.146 189961 username barzegar 189961 mac 189961 bytes_out 0 189961 bytes_in 0 189961 station_ip 5.119.72.132 189961 port 416 189961 unique_id port 189961 remote_ip 10.8.0.70 189967 username khademi 189967 kill_reason Another user logged on this global unique id 189967 mac 189967 bytes_out 0 189967 bytes_in 0 189967 station_ip 83.123.96.238 189967 port 427 189967 unique_id port 189971 username nilufarrajaei 189971 mac 189971 bytes_out 254370 189971 bytes_in 1379933 189971 station_ip 83.123.78.20 189971 port 400 189971 unique_id port 189971 remote_ip 10.8.0.194 189972 username shahruz 189972 kill_reason Maximum check online fails reached 189972 mac 189972 bytes_out 0 189972 bytes_in 0 189972 station_ip 86.55.252.137 189972 port 422 189972 unique_id port 189975 username ahmadi1 189975 mac 189975 bytes_out 6609 189975 bytes_in 28638 189975 station_ip 83.123.24.238 189975 port 426 189975 unique_id port 189975 remote_ip 10.8.0.94 189977 username rashidi4690 189977 mac 189977 bytes_out 2710974 189977 bytes_in 24442460 189977 station_ip 5.119.123.88 189977 port 415 189977 unique_id port 189977 remote_ip 10.8.0.242 189981 username khalili2 189981 mac 189981 bytes_out 984334 189981 bytes_in 9335557 189981 station_ip 5.119.41.36 189981 port 410 189981 unique_id port 189981 remote_ip 10.8.0.190 189982 username shahruz 189982 mac 189982 bytes_out 0 189982 bytes_in 0 189982 station_ip 86.55.252.137 189982 port 410 189982 unique_id port 189982 remote_ip 10.8.0.146 189985 username barzegar 189985 mac 189985 bytes_out 0 189985 bytes_in 0 189985 station_ip 5.119.72.132 189985 port 425 189985 unique_id port 189985 remote_ip 10.8.0.70 189986 username khalili2 189986 mac 189986 bytes_out 23306 189986 bytes_in 65611 189986 station_ip 5.119.41.36 189986 port 416 189986 unique_id port 189986 remote_ip 10.8.0.190 189989 username rezaei 189989 kill_reason Another user logged on this global unique id 189989 mac 189989 bytes_out 0 189989 bytes_in 0 189989 station_ip 5.119.222.93 189989 port 424 189989 unique_id port 189990 username rezaei 189990 mac 189990 bytes_out 0 189990 bytes_in 0 189990 station_ip 5.119.222.93 189990 port 424 189990 unique_id port 189994 username barzegar 189994 mac 189994 bytes_out 0 189994 bytes_in 0 189994 station_ip 5.119.72.132 189994 port 432 189994 unique_id port 189994 remote_ip 10.8.0.70 189996 username shahruz 189996 mac 189996 bytes_out 0 189996 bytes_in 0 189996 station_ip 86.55.252.137 189996 port 431 189996 unique_id port 189996 remote_ip 10.8.0.146 190001 username morteza4424 190001 kill_reason Another user logged on this global unique id 190001 mac 190001 bytes_out 0 190001 bytes_in 0 190001 station_ip 83.123.45.94 189955 bytes_in 5157738 189955 station_ip 83.123.93.194 189955 port 400 189955 unique_id port 189955 remote_ip 10.8.0.22 189956 username shahruz 189956 mac 189956 bytes_out 0 189956 bytes_in 0 189956 station_ip 86.55.252.137 189956 port 416 189956 unique_id port 189956 remote_ip 10.8.0.146 189959 username khalili2 189959 kill_reason Another user logged on this global unique id 189959 mac 189959 bytes_out 0 189959 bytes_in 0 189959 station_ip 5.119.41.36 189959 port 410 189959 unique_id port 189959 remote_ip 10.8.0.190 189962 username motamedi9772 189962 mac 189962 bytes_out 26835 189962 bytes_in 75603 189962 station_ip 83.123.77.7 189962 port 400 189962 unique_id port 189962 remote_ip 10.8.0.154 189963 username nilufarrajaei 189963 mac 189963 bytes_out 1889120 189963 bytes_in 10726973 189963 station_ip 83.123.78.20 189963 port 422 189963 unique_id port 189963 remote_ip 10.8.0.194 189965 username alipour1506 189965 kill_reason Another user logged on this global unique id 189965 mac 189965 bytes_out 0 189965 bytes_in 0 189965 station_ip 78.39.25.121 189965 port 423 189965 unique_id port 189966 username fezealinaghi 189966 kill_reason Another user logged on this global unique id 189966 mac 189966 bytes_out 0 189966 bytes_in 0 189966 station_ip 83.123.74.242 189966 port 405 189966 unique_id port 189970 username rahim 189970 mac 189970 bytes_out 88419 189970 bytes_in 105756 189970 station_ip 5.119.57.111 189970 port 421 189970 unique_id port 189970 remote_ip 10.8.0.134 189976 username barzegar 189976 mac 189976 bytes_out 0 189976 bytes_in 0 189976 station_ip 5.119.72.132 189976 port 430 189976 unique_id port 189976 remote_ip 10.8.0.70 189978 username kalantary6037 189978 mac 189978 bytes_out 491313 189978 bytes_in 4408293 189978 station_ip 83.123.83.77 189978 port 416 189978 unique_id port 189978 remote_ip 10.8.0.50 189980 username shahruz 189980 mac 189980 bytes_out 0 189980 bytes_in 0 189980 station_ip 86.55.252.137 189980 port 415 189980 unique_id port 189980 remote_ip 10.8.0.146 189984 username hosseine 189984 kill_reason Another user logged on this global unique id 189984 mac 189984 bytes_out 0 189984 bytes_in 0 189984 station_ip 83.123.92.189 189984 port 419 189984 unique_id port 189984 remote_ip 10.8.0.54 189987 username barzegar 189987 mac 189987 bytes_out 0 189987 bytes_in 0 189987 station_ip 5.119.72.132 189987 port 425 189987 unique_id port 189987 remote_ip 10.8.0.70 189988 username rahim 189988 mac 189988 bytes_out 0 189988 bytes_in 0 189988 station_ip 5.119.57.111 189988 port 430 189988 unique_id port 189988 remote_ip 10.8.0.134 189991 username shahruz 189991 mac 189991 bytes_out 53548 189991 bytes_in 230612 189991 station_ip 86.55.252.137 189991 port 415 189991 unique_id port 189991 remote_ip 10.8.0.146 189992 username shahruz 189992 mac 189992 bytes_out 0 189992 bytes_in 0 189992 station_ip 86.55.252.137 189992 port 415 189992 unique_id port 189992 remote_ip 10.8.0.146 189993 username shahruz 189993 mac 189993 bytes_out 0 189993 bytes_in 0 189993 station_ip 86.55.252.137 189993 port 431 189993 unique_id port 189993 remote_ip 10.8.0.146 189997 username saeed9658 189997 mac 189997 bytes_out 33006 189997 bytes_in 71639 189997 station_ip 5.119.206.111 189997 port 410 189997 unique_id port 189997 remote_ip 10.8.0.162 189998 username farhad3 189998 kill_reason Another user logged on this global unique id 189998 mac 189998 bytes_out 0 189998 bytes_in 0 189998 station_ip 5.120.61.225 189998 port 416 189998 unique_id port 189998 remote_ip 10.8.0.222 190002 username rahim 190002 mac 190002 bytes_out 0 190002 bytes_in 0 190002 station_ip 5.119.57.111 190002 port 429 190002 unique_id port 190002 remote_ip 10.8.0.134 190007 username saeed9658 190007 mac 190007 bytes_out 0 190007 bytes_in 0 190007 station_ip 5.119.206.111 190007 port 429 190007 unique_id port 190007 remote_ip 10.8.0.162 190012 username rahim 190012 mac 190012 bytes_out 0 190012 bytes_in 0 190012 station_ip 5.119.57.111 190012 port 431 190012 unique_id port 190012 remote_ip 10.8.0.134 190017 username shahruz 190017 mac 190017 bytes_out 0 190017 bytes_in 0 190017 station_ip 86.55.252.137 190017 port 431 190017 unique_id port 190017 remote_ip 10.8.0.146 190020 username kharazmi2920 190020 mac 190020 bytes_out 44924 190020 bytes_in 102772 190020 station_ip 83.123.93.194 190020 port 434 190020 unique_id port 190020 remote_ip 10.8.0.22 190025 username malekpoir 190025 kill_reason Another user logged on this global unique id 190025 mac 190025 bytes_out 0 190025 bytes_in 0 190025 station_ip 5.120.94.70 190025 port 399 190025 unique_id port 190025 remote_ip 10.8.0.18 190026 username shahruz 190026 mac 190026 bytes_out 0 190026 bytes_in 0 190026 station_ip 86.55.252.137 190026 port 421 190026 unique_id port 190026 remote_ip 10.8.0.146 190027 username morteza4424 190027 mac 190027 bytes_out 1672718 190027 bytes_in 24858849 190027 station_ip 83.123.45.94 190027 port 433 190027 unique_id port 190027 remote_ip 10.8.0.206 190028 username barzegar 190028 mac 190028 bytes_out 0 190028 bytes_in 0 190028 station_ip 5.119.72.132 190028 port 421 190028 unique_id port 190028 remote_ip 10.8.0.70 190030 username sekonji0496 190030 kill_reason Maximum check online fails reached 190030 mac 190030 bytes_out 0 190030 bytes_in 0 190030 station_ip 83.123.33.49 190030 port 421 190030 unique_id port 190031 username shahruz 190031 mac 190031 bytes_out 2293 190031 bytes_in 4626 190031 station_ip 86.55.252.137 190031 port 431 190031 unique_id port 190031 remote_ip 10.8.0.146 190033 username shahruz 190033 mac 190033 bytes_out 0 190033 bytes_in 0 190033 station_ip 86.55.252.137 190033 port 427 190033 unique_id port 190033 remote_ip 10.8.0.146 190037 username shahruz 190037 kill_reason Maximum check online fails reached 190037 mac 190037 bytes_out 0 190037 bytes_in 0 190037 station_ip 86.55.252.137 190037 port 434 190037 unique_id port 190040 username barzegar 190040 mac 190040 bytes_out 0 190040 bytes_in 0 190040 station_ip 5.119.72.132 190040 port 433 190040 unique_id port 190040 remote_ip 10.8.0.70 190042 username shahruz 190042 mac 190042 bytes_out 0 190042 bytes_in 0 190042 station_ip 86.55.252.137 190042 port 435 190042 unique_id port 190042 remote_ip 10.8.0.146 190043 username shahruz 190043 mac 190043 bytes_out 0 190043 bytes_in 0 190043 station_ip 86.55.252.137 190043 port 435 190043 unique_id port 190043 remote_ip 10.8.0.146 190044 username barzegar 190044 mac 190044 bytes_out 0 190044 bytes_in 0 190044 station_ip 5.119.72.132 190044 port 436 190044 unique_id port 190044 remote_ip 10.8.0.70 190048 username farhad3 190048 kill_reason Another user logged on this global unique id 190048 mac 190048 bytes_out 0 190048 bytes_in 0 190048 station_ip 5.120.61.225 190048 port 416 190048 unique_id port 190051 username khaleghi2406 190051 mac 190051 bytes_out 2558511 190051 bytes_in 34299525 190051 station_ip 83.123.69.211 190051 port 410 190051 unique_id port 189999 remote_ip 10.8.0.146 190000 username soleymani5056 190000 mac 190000 bytes_out 626617 190000 bytes_in 1102777 190000 station_ip 5.120.129.102 190000 port 429 190000 unique_id port 190000 remote_ip 10.8.0.226 190003 username milan 190003 kill_reason Another user logged on this global unique id 190003 mac 190003 bytes_out 0 190003 bytes_in 0 190003 station_ip 5.119.23.34 190003 port 403 190003 unique_id port 190004 username shahruz 190004 mac 190004 bytes_out 370219 190004 bytes_in 66686 190004 station_ip 86.55.252.137 190004 port 433 190004 unique_id port 190004 remote_ip 10.8.0.146 190005 username rahim 190005 mac 190005 bytes_out 0 190005 bytes_in 0 190005 station_ip 5.119.57.111 190005 port 429 190005 unique_id port 190005 remote_ip 10.8.0.134 190008 username barzegar 190008 mac 190008 bytes_out 0 190008 bytes_in 0 190008 station_ip 5.119.72.132 190008 port 431 190008 unique_id port 190008 remote_ip 10.8.0.70 190010 username kharazmi2920 190010 mac 190010 bytes_out 97960 190010 bytes_in 258454 190010 station_ip 83.123.93.194 190010 port 433 190010 unique_id port 190010 remote_ip 10.8.0.22 190011 username rashidi4690 190011 kill_reason Another user logged on this global unique id 190011 mac 190011 bytes_out 0 190011 bytes_in 0 190011 station_ip 83.123.105.11 190011 port 400 190011 unique_id port 190011 remote_ip 10.8.0.242 190013 username shahruz 190013 mac 190013 bytes_out 0 190013 bytes_in 0 190013 station_ip 86.55.252.137 190013 port 433 190013 unique_id port 190013 remote_ip 10.8.0.146 190014 username morteza4424 190014 mac 190014 bytes_out 0 190014 bytes_in 0 190014 station_ip 83.123.45.94 190014 port 421 190014 unique_id port 190016 username soleymani5056 190016 mac 190016 bytes_out 250386 190016 bytes_in 474283 190016 station_ip 5.119.207.149 190016 port 410 190016 unique_id port 190016 remote_ip 10.8.0.226 190018 username sekonji0496 190018 mac 190018 bytes_out 0 190018 bytes_in 0 190018 station_ip 83.123.33.49 190018 port 410 190018 unique_id port 190018 remote_ip 10.8.0.62 190022 username kalantary6037 190022 mac 190022 bytes_out 384082 190022 bytes_in 2955974 190022 station_ip 83.123.55.157 190022 port 421 190022 unique_id port 190022 remote_ip 10.8.0.50 190024 username shahruz 190024 mac 190024 bytes_out 0 190024 bytes_in 0 190024 station_ip 86.55.252.137 190024 port 431 190024 unique_id port 190024 remote_ip 10.8.0.146 190029 username khademi 190029 mac 190029 bytes_out 0 190029 bytes_in 0 190029 station_ip 83.123.96.238 190029 port 427 190029 unique_id port 190032 username rahim 190032 mac 190032 bytes_out 0 190032 bytes_in 0 190032 station_ip 5.119.57.111 190032 port 427 190032 unique_id port 190032 remote_ip 10.8.0.134 190034 username shahruz 190034 mac 190034 bytes_out 0 190034 bytes_in 0 190034 station_ip 86.55.252.137 190034 port 427 190034 unique_id port 190034 remote_ip 10.8.0.146 190036 username esmaeilkazemi 190036 mac 190036 bytes_out 47858 190036 bytes_in 204969 190036 station_ip 83.123.33.107 190036 port 433 190036 unique_id port 190036 remote_ip 10.8.0.26 190041 username shahruz 190041 mac 190041 bytes_out 0 190041 bytes_in 0 190041 station_ip 86.55.252.137 190041 port 435 190041 unique_id port 190041 remote_ip 10.8.0.146 190046 username rahim 190046 mac 190046 bytes_out 0 190046 bytes_in 0 190046 station_ip 5.119.57.111 190046 port 435 190046 unique_id port 190046 remote_ip 10.8.0.134 190047 username hosseine 190001 port 421 190001 unique_id port 190001 remote_ip 10.8.0.206 190006 username sekonji0496 190006 mac 190006 bytes_out 165792 190006 bytes_in 2287784 190006 station_ip 83.123.33.49 190006 port 410 190006 unique_id port 190006 remote_ip 10.8.0.62 190009 username shahruz 190009 mac 190009 bytes_out 0 190009 bytes_in 0 190009 station_ip 86.55.252.137 190009 port 410 190009 unique_id port 190009 remote_ip 10.8.0.146 190015 username shahruz 190015 mac 190015 bytes_out 0 190015 bytes_in 0 190015 station_ip 86.55.252.137 190015 port 431 190015 unique_id port 190015 remote_ip 10.8.0.146 190019 username shahruz 190019 mac 190019 bytes_out 0 190019 bytes_in 0 190019 station_ip 86.55.252.137 190019 port 435 190019 unique_id port 190019 remote_ip 10.8.0.146 190021 username shahruz 190021 mac 190021 bytes_out 0 190021 bytes_in 0 190021 station_ip 86.55.252.137 190021 port 431 190021 unique_id port 190021 remote_ip 10.8.0.146 190023 username motamedi9772 190023 kill_reason Another user logged on this global unique id 190023 mac 190023 bytes_out 0 190023 bytes_in 0 190023 station_ip 83.123.77.7 190023 port 425 190023 unique_id port 190023 remote_ip 10.8.0.154 190035 username esmaeilkazemi 190035 mac 190035 bytes_out 0 190035 bytes_in 0 190035 station_ip 83.123.33.107 190035 port 427 190035 unique_id port 190035 remote_ip 10.8.0.26 190038 username shahruz 190038 mac 190038 bytes_out 0 190038 bytes_in 0 190038 station_ip 86.55.252.137 190038 port 433 190038 unique_id port 190038 remote_ip 10.8.0.146 190039 username nilufarrajaei 190039 kill_reason Maximum check online fails reached 190039 mac 190039 bytes_out 966184 190039 bytes_in 3170391 190039 station_ip 83.123.8.88 190039 port 432 190039 unique_id port 190039 remote_ip 10.8.0.194 190045 username shahruz 190045 mac 190045 bytes_out 0 190045 bytes_in 0 190045 station_ip 86.55.252.137 190045 port 435 190045 unique_id port 190045 remote_ip 10.8.0.146 190049 username motamedi9772 190049 mac 190049 bytes_out 0 190049 bytes_in 0 190049 station_ip 83.123.77.7 190049 port 425 190049 unique_id port 190054 username sekonji0496 190054 mac 190054 bytes_out 0 190054 bytes_in 0 190054 station_ip 83.123.70.105 190054 port 425 190054 unique_id port 190054 remote_ip 10.8.0.62 190057 username sekonji0496 190057 mac 190057 bytes_out 0 190057 bytes_in 0 190057 station_ip 83.123.70.105 190057 port 431 190057 unique_id port 190057 remote_ip 10.8.0.62 190058 username rahim 190058 mac 190058 bytes_out 0 190058 bytes_in 0 190058 station_ip 5.119.57.111 190058 port 414 190058 unique_id port 190058 remote_ip 10.8.0.134 190062 username barzegar 190062 mac 190062 bytes_out 0 190062 bytes_in 0 190062 station_ip 5.119.72.132 190062 port 432 190062 unique_id port 190062 remote_ip 10.8.0.70 190064 username pourshad 190064 mac 190064 bytes_out 0 190064 bytes_in 0 190064 station_ip 5.120.215.224 190064 port 431 190064 unique_id port 190064 remote_ip 10.8.0.42 190066 username mirzaei6046 190066 mac 190066 bytes_out 247514 190066 bytes_in 392023 190066 station_ip 5.119.164.77 190066 port 414 190066 unique_id port 190066 remote_ip 10.8.0.90 190069 username nilufarrajaei 190069 mac 190069 bytes_out 29130 190069 bytes_in 40668 190069 station_ip 83.123.8.88 190069 port 431 190069 unique_id port 190069 remote_ip 10.8.0.194 190070 username milan 190070 kill_reason Another user logged on this global unique id 190070 mac 190070 bytes_out 0 190070 bytes_in 0 190047 kill_reason Another user logged on this global unique id 190047 mac 190047 bytes_out 0 190047 bytes_in 0 190047 station_ip 83.123.92.189 190047 port 419 190047 unique_id port 190050 username shahruz 190050 mac 190050 bytes_out 0 190050 bytes_in 0 190050 station_ip 86.55.252.137 190050 port 425 190050 unique_id port 190050 remote_ip 10.8.0.146 190052 username sekonji0496 190052 mac 190052 bytes_out 0 190052 bytes_in 0 190052 station_ip 83.123.70.105 190052 port 425 190052 unique_id port 190052 remote_ip 10.8.0.62 190053 username shahruz 190053 mac 190053 bytes_out 0 190053 bytes_in 0 190053 station_ip 86.55.252.137 190053 port 435 190053 unique_id port 190053 remote_ip 10.8.0.146 190056 username pourshad 190056 mac 190056 bytes_out 1136788 190056 bytes_in 8548063 190056 station_ip 5.120.215.224 190056 port 414 190056 unique_id port 190056 remote_ip 10.8.0.42 190060 username sekonji0496 190060 mac 190060 bytes_out 2190 190060 bytes_in 4182 190060 station_ip 83.123.70.105 190060 port 431 190060 unique_id port 190060 remote_ip 10.8.0.62 190061 username pourshad 190061 mac 190061 bytes_out 0 190061 bytes_in 0 190061 station_ip 5.120.215.224 190061 port 432 190061 unique_id port 190061 remote_ip 10.8.0.42 190065 username shahruz 190065 mac 190065 bytes_out 0 190065 bytes_in 0 190065 station_ip 86.55.252.137 190065 port 431 190065 unique_id port 190065 remote_ip 10.8.0.146 190068 username sekonji0496 190068 mac 190068 bytes_out 0 190068 bytes_in 0 190068 station_ip 83.123.70.105 190068 port 431 190068 unique_id port 190068 remote_ip 10.8.0.62 190071 username shahruz 190071 mac 190071 bytes_out 35910 190071 bytes_in 93271 190071 station_ip 86.55.252.137 190071 port 414 190071 unique_id port 190071 remote_ip 10.8.0.146 190072 username shahruz 190072 mac 190072 bytes_out 2634 190072 bytes_in 4954 190072 station_ip 86.55.252.137 190072 port 414 190072 unique_id port 190072 remote_ip 10.8.0.146 190073 username hatami 190073 mac 190073 bytes_out 950024 190073 bytes_in 6754851 190073 station_ip 151.235.102.98 190073 port 424 190073 unique_id port 190073 remote_ip 10.8.0.98 190075 username sekonji0496 190075 mac 190075 bytes_out 0 190075 bytes_in 0 190075 station_ip 83.123.70.105 190075 port 424 190075 unique_id port 190075 remote_ip 10.8.0.62 190077 username saeeddamghani 190077 mac 190077 bytes_out 2677399 190077 bytes_in 16677231 190077 station_ip 217.60.218.121 190077 port 432 190077 unique_id port 190077 remote_ip 10.8.0.122 190081 username hosseine 190081 kill_reason Another user logged on this global unique id 190081 mac 190081 bytes_out 0 190081 bytes_in 0 190081 station_ip 83.123.92.189 190081 port 419 190081 unique_id port 190085 username shahruz 190085 mac 190085 bytes_out 0 190085 bytes_in 0 190085 station_ip 86.55.252.137 190085 port 429 190085 unique_id port 190085 remote_ip 10.8.0.146 190088 username sekonji0496 190088 mac 190088 bytes_out 0 190088 bytes_in 0 190088 station_ip 83.123.70.105 190088 port 429 190088 unique_id port 190088 remote_ip 10.8.0.62 190091 username farhad3 190091 mac 190091 bytes_out 0 190091 bytes_in 0 190091 station_ip 5.120.61.225 190091 port 416 190091 unique_id port 190094 username milan 190094 kill_reason Another user logged on this global unique id 190094 mac 190094 bytes_out 0 190094 bytes_in 0 190094 station_ip 5.119.23.34 190094 port 403 190094 unique_id port 190095 username barzegar 190095 mac 190095 bytes_out 0 190051 remote_ip 10.8.0.218 190055 username khalili2 190055 mac 190055 bytes_out 2256200 190055 bytes_in 32094296 190055 station_ip 5.119.41.36 190055 port 431 190055 unique_id port 190055 remote_ip 10.8.0.190 190059 username shahruz 190059 mac 190059 bytes_out 2469 190059 bytes_in 4600 190059 station_ip 86.55.252.137 190059 port 425 190059 unique_id port 190059 remote_ip 10.8.0.146 190063 username rahim 190063 mac 190063 bytes_out 0 190063 bytes_in 0 190063 station_ip 5.119.57.111 190063 port 425 190063 unique_id port 190063 remote_ip 10.8.0.134 190067 username shahruz 190067 mac 190067 bytes_out 0 190067 bytes_in 0 190067 station_ip 86.55.252.137 190067 port 431 190067 unique_id port 190067 remote_ip 10.8.0.146 190082 username malekpoir 190082 mac 190082 bytes_out 0 190082 bytes_in 0 190082 station_ip 5.120.94.70 190082 port 399 190082 unique_id port 190083 username shahruz 190083 mac 190083 bytes_out 6308 190083 bytes_in 16240 190083 station_ip 86.55.252.137 190083 port 429 190083 unique_id port 190083 remote_ip 10.8.0.146 190086 username sekonji0496 190086 mac 190086 bytes_out 0 190086 bytes_in 0 190086 station_ip 83.123.70.105 190086 port 429 190086 unique_id port 190086 remote_ip 10.8.0.62 190089 username shahruz 190089 mac 190089 bytes_out 0 190089 bytes_in 0 190089 station_ip 86.55.252.137 190089 port 414 190089 unique_id port 190089 remote_ip 10.8.0.146 190092 username shahruz 190092 mac 190092 bytes_out 0 190092 bytes_in 0 190092 station_ip 86.55.252.137 190092 port 414 190092 unique_id port 190092 remote_ip 10.8.0.146 190093 username farhad3 190093 mac 190093 bytes_out 0 190093 bytes_in 0 190093 station_ip 5.120.61.225 190093 port 414 190093 unique_id port 190093 remote_ip 10.8.0.222 190099 username shahruz 190099 mac 190099 bytes_out 2633 190099 bytes_in 5498 190099 station_ip 86.55.252.137 190099 port 414 190099 unique_id port 190099 remote_ip 10.8.0.146 190102 username sekonji0496 190102 mac 190102 bytes_out 0 190102 bytes_in 0 190102 station_ip 83.123.70.105 190102 port 399 190102 unique_id port 190102 remote_ip 10.8.0.62 190111 username sekonji0496 190111 mac 190111 bytes_out 0 190111 bytes_in 0 190111 station_ip 83.123.70.105 190111 port 432 190111 unique_id port 190111 remote_ip 10.8.0.62 190115 username rahim 190115 mac 190115 bytes_out 16341 190115 bytes_in 78434 190115 station_ip 5.119.57.111 190115 port 431 190115 unique_id port 190115 remote_ip 10.8.0.134 190118 username kalantary6037 190118 mac 190118 bytes_out 386508 190118 bytes_in 7059397 190118 station_ip 83.123.47.93 190118 port 431 190118 unique_id port 190118 remote_ip 10.8.0.50 190121 username rezaei 190121 mac 190121 bytes_out 1178120 190121 bytes_in 7738811 190121 station_ip 83.123.12.5 190121 port 414 190121 unique_id port 190121 remote_ip 10.8.0.198 190122 username barzegar 190122 mac 190122 bytes_out 0 190122 bytes_in 0 190122 station_ip 5.119.72.132 190122 port 414 190122 unique_id port 190122 remote_ip 10.8.0.70 190123 username godarzi 190123 mac 190123 bytes_out 17312960 190123 bytes_in 39714985 190123 station_ip 5.202.29.254 190123 port 405 190123 unique_id port 190123 remote_ip 10.8.0.38 190125 username sekonji0496 190125 mac 190125 bytes_out 800919 190125 bytes_in 7674492 190125 station_ip 83.123.70.105 190125 port 426 190125 unique_id port 190125 remote_ip 10.8.0.62 190134 username sekonji0496 190134 mac 190070 station_ip 5.119.23.34 190070 port 403 190070 unique_id port 190074 username saeed9658 190074 mac 190074 bytes_out 1177744 190074 bytes_in 6772903 190074 station_ip 5.119.206.111 190074 port 429 190074 unique_id port 190074 remote_ip 10.8.0.162 190076 username sekonji0496 190076 mac 190076 bytes_out 0 190076 bytes_in 0 190076 station_ip 83.123.70.105 190076 port 429 190076 unique_id port 190076 remote_ip 10.8.0.62 190078 username rahim 190078 mac 190078 bytes_out 0 190078 bytes_in 0 190078 station_ip 5.119.57.111 190078 port 429 190078 unique_id port 190078 remote_ip 10.8.0.134 190079 username rahim 190079 mac 190079 bytes_out 0 190079 bytes_in 0 190079 station_ip 5.119.57.111 190079 port 429 190079 unique_id port 190079 remote_ip 10.8.0.134 190080 username barzegar 190080 mac 190080 bytes_out 0 190080 bytes_in 0 190080 station_ip 5.119.72.132 190080 port 431 190080 unique_id port 190080 remote_ip 10.8.0.70 190084 username sekonji0496 190084 mac 190084 bytes_out 0 190084 bytes_in 0 190084 station_ip 83.123.70.105 190084 port 399 190084 unique_id port 190084 remote_ip 10.8.0.62 190087 username houshang 190087 mac 190087 bytes_out 474491 190087 bytes_in 1947145 190087 station_ip 5.119.102.72 190087 port 414 190087 unique_id port 190087 remote_ip 10.8.0.82 190090 username aminvpn 190090 unique_id port 190090 terminate_cause User-Request 190090 bytes_out 33899613 190090 bytes_in 1233216213 190090 station_ip 31.57.143.119 190090 port 15729151 190090 nas_port_type Virtual 190090 remote_ip 5.5.5.85 190096 username sekonji0496 190096 mac 190096 bytes_out 0 190096 bytes_in 0 190096 station_ip 83.123.70.105 190096 port 414 190096 unique_id port 190096 remote_ip 10.8.0.62 190100 username rahim 190100 mac 190100 bytes_out 216087 190100 bytes_in 1578496 190100 station_ip 5.119.57.111 190100 port 399 190100 unique_id port 190100 remote_ip 10.8.0.134 190103 username farhad3 190103 mac 190103 bytes_out 631016 190103 bytes_in 1999447 190103 station_ip 5.120.61.225 190103 port 429 190103 unique_id port 190103 remote_ip 10.8.0.222 190106 username mostafa_es78 190106 mac 190106 bytes_out 13235 190106 bytes_in 13512 190106 station_ip 83.123.87.1 190106 port 431 190106 unique_id port 190106 remote_ip 10.8.0.34 190108 username rahim 190108 mac 190108 bytes_out 0 190108 bytes_in 0 190108 station_ip 5.119.57.111 190108 port 432 190108 unique_id port 190108 remote_ip 10.8.0.134 190110 username sekonji0496 190110 mac 190110 bytes_out 0 190110 bytes_in 0 190110 station_ip 83.123.70.105 190110 port 432 190110 unique_id port 190110 remote_ip 10.8.0.62 190112 username sekonji0496 190112 mac 190112 bytes_out 0 190112 bytes_in 0 190112 station_ip 83.123.70.105 190112 port 432 190112 unique_id port 190112 remote_ip 10.8.0.62 190113 username sekonji0496 190113 mac 190113 bytes_out 0 190113 bytes_in 0 190113 station_ip 83.123.70.105 190113 port 432 190113 unique_id port 190113 remote_ip 10.8.0.62 190116 username kalantary6037 190116 mac 190116 bytes_out 564671 190116 bytes_in 6094506 190116 station_ip 83.123.47.93 190116 port 426 190116 unique_id port 190116 remote_ip 10.8.0.50 190124 username saeeddamghani 190124 mac 190124 bytes_out 222083 190124 bytes_in 1519808 190124 station_ip 217.60.218.121 190124 port 414 190124 unique_id port 190124 remote_ip 10.8.0.122 190128 username rashidi4690 190128 kill_reason Another user logged on this global unique id 190128 mac 190128 bytes_out 0 190128 bytes_in 0 190095 bytes_in 0 190095 station_ip 5.119.72.132 190095 port 416 190095 unique_id port 190095 remote_ip 10.8.0.70 190097 username shahruz 190097 mac 190097 bytes_out 0 190097 bytes_in 0 190097 station_ip 86.55.252.137 190097 port 416 190097 unique_id port 190097 remote_ip 10.8.0.146 190098 username kalantary6037 190098 mac 190098 bytes_out 407276 190098 bytes_in 2105789 190098 station_ip 83.123.47.93 190098 port 399 190098 unique_id port 190098 remote_ip 10.8.0.50 190101 username fezealinaghi 190101 mac 190101 bytes_out 2299394 190101 bytes_in 21013755 190101 station_ip 83.123.74.242 190101 port 426 190101 unique_id port 190101 remote_ip 10.8.0.202 190104 username rahim 190104 mac 190104 bytes_out 2522 190104 bytes_in 4847 190104 station_ip 5.119.57.111 190104 port 399 190104 unique_id port 190104 remote_ip 10.8.0.134 190105 username rahim 190105 mac 190105 bytes_out 0 190105 bytes_in 0 190105 station_ip 5.119.57.111 190105 port 399 190105 unique_id port 190105 remote_ip 10.8.0.134 190107 username barzegar 190107 mac 190107 bytes_out 0 190107 bytes_in 0 190107 station_ip 5.119.72.132 190107 port 431 190107 unique_id port 190107 remote_ip 10.8.0.70 190109 username shahruz 190109 mac 190109 bytes_out 45334 190109 bytes_in 81301 190109 station_ip 86.55.252.137 190109 port 416 190109 unique_id port 190109 remote_ip 10.8.0.146 190114 username sekonji0496 190114 mac 190114 bytes_out 0 190114 bytes_in 0 190114 station_ip 83.123.70.105 190114 port 432 190114 unique_id port 190114 remote_ip 10.8.0.62 190117 username pourshad 190117 mac 190117 bytes_out 21457628 190117 bytes_in 38728485 190117 station_ip 5.120.215.224 190117 port 425 190117 unique_id port 190117 remote_ip 10.8.0.42 190119 username sekonji0496 190119 mac 190119 bytes_out 0 190119 bytes_in 0 190119 station_ip 83.123.70.105 190119 port 425 190119 unique_id port 190119 remote_ip 10.8.0.62 190120 username ahmadi1 190120 mac 190120 bytes_out 0 190120 bytes_in 0 190120 station_ip 83.123.24.238 190120 port 432 190120 unique_id port 190120 remote_ip 10.8.0.94 190126 username rahim 190126 mac 190126 bytes_out 0 190126 bytes_in 0 190126 station_ip 5.119.57.111 190126 port 405 190126 unique_id port 190126 remote_ip 10.8.0.134 190127 username sekonji0496 190127 mac 190127 bytes_out 0 190127 bytes_in 0 190127 station_ip 83.123.70.105 190127 port 405 190127 unique_id port 190127 remote_ip 10.8.0.62 190129 username jafari 190162 bytes_out 7289 190129 kill_reason Another user logged on this global unique id 190129 mac 190129 bytes_out 0 190129 bytes_in 0 190129 station_ip 37.156.54.119 190129 port 424 190129 unique_id port 190129 remote_ip 10.8.0.178 190131 username yaghobi 190131 mac 190131 bytes_out 1890138 190131 bytes_in 19832123 190131 station_ip 83.123.121.163 190131 port 399 190131 unique_id port 190131 remote_ip 10.8.0.138 190137 username mostafa_es78 190137 mac 190137 bytes_out 923033 190137 bytes_in 6691995 190137 station_ip 83.123.87.1 190137 port 435 190137 unique_id port 190137 remote_ip 10.8.0.34 190140 username yaghobi 190140 mac 190140 bytes_out 215913 190140 bytes_in 299561 190140 station_ip 83.123.121.163 190140 port 414 190140 unique_id port 190140 remote_ip 10.8.0.138 190142 username barzegar 190142 mac 190142 bytes_out 0 190142 bytes_in 0 190142 station_ip 5.119.72.132 190142 port 414 190142 unique_id port 190142 remote_ip 10.8.0.70 190144 username sekonji0496 190144 mac 190144 bytes_out 0 190128 station_ip 83.123.105.11 190128 port 400 190128 unique_id port 190130 username pourshad 190130 mac 190130 bytes_out 72150 190130 bytes_in 611631 190130 station_ip 5.120.215.224 190130 port 431 190130 unique_id port 190130 remote_ip 10.8.0.42 190132 username saeeddamghani 190132 mac 190132 bytes_out 0 190132 bytes_in 0 190132 station_ip 217.60.218.121 190132 port 405 190132 unique_id port 190132 remote_ip 10.8.0.122 190133 username rahim 190133 mac 190133 bytes_out 0 190133 bytes_in 0 190133 station_ip 5.119.57.111 190133 port 405 190133 unique_id port 190133 remote_ip 10.8.0.134 190135 username godarzi 190135 mac 190135 bytes_out 0 190135 bytes_in 0 190135 station_ip 5.119.61.27 190135 port 431 190135 unique_id port 190135 remote_ip 10.8.0.38 190139 username godarzi 190139 mac 190139 bytes_out 0 190139 bytes_in 0 190139 station_ip 5.119.61.27 190139 port 431 190139 unique_id port 190139 remote_ip 10.8.0.38 190143 username rashidi4690 190143 mac 190143 bytes_out 0 190143 bytes_in 0 190143 station_ip 83.123.105.11 190143 port 400 190143 unique_id port 190145 username farhad3 190145 mac 190145 bytes_out 3005697 190145 bytes_in 16253929 190145 station_ip 5.120.61.225 190145 port 429 190145 unique_id port 190145 remote_ip 10.8.0.222 190146 username sekonji0496 190146 mac 190146 bytes_out 0 190146 bytes_in 0 190146 station_ip 83.123.70.105 190146 port 400 190146 unique_id port 190146 remote_ip 10.8.0.62 190148 username godarzi 190148 mac 190148 bytes_out 0 190148 bytes_in 0 190148 station_ip 5.119.61.27 190148 port 425 190148 unique_id port 190148 remote_ip 10.8.0.38 190150 username sabaghnezhad 190150 mac 190150 bytes_out 1524586 190150 bytes_in 10457914 190150 station_ip 188.229.55.56 190150 port 427 190150 unique_id port 190150 remote_ip 10.8.0.66 190157 username hosseine 190157 kill_reason Another user logged on this global unique id 190157 mac 190157 bytes_out 0 190157 bytes_in 0 190157 station_ip 83.123.92.189 190157 port 419 190157 unique_id port 190158 username sabaghnezhad 190158 mac 190158 bytes_out 42936 190158 bytes_in 48739 190158 station_ip 188.229.55.56 190158 port 425 190158 unique_id port 190158 remote_ip 10.8.0.66 190159 username rashidi4690 190159 kill_reason Another user logged on this global unique id 190159 mac 190159 bytes_out 0 190159 bytes_in 0 190159 station_ip 5.120.157.10 190159 port 414 190159 unique_id port 190159 remote_ip 10.8.0.242 190162 username barzegar 190162 mac 190162 bytes_in 10044 190162 station_ip 5.119.72.132 190162 port 426 190162 unique_id port 190162 remote_ip 10.8.0.70 190166 username shahruz 190166 mac 190166 bytes_out 2050 190166 bytes_in 4335 190166 station_ip 86.55.252.137 190166 port 427 190166 unique_id port 190166 remote_ip 10.8.0.146 190167 username barzegar 190167 mac 190167 bytes_out 0 190167 bytes_in 0 190167 station_ip 5.119.72.132 190167 port 405 190167 unique_id port 190167 remote_ip 10.8.0.70 190171 username shahruz 190171 mac 190171 bytes_out 58734 190171 bytes_in 17925 190171 station_ip 86.55.252.137 190171 port 426 190171 unique_id port 190171 remote_ip 10.8.0.146 190172 username yazdani6029 190172 mac 190172 bytes_out 1151767 190172 bytes_in 8079865 190172 station_ip 83.123.20.31 190172 port 425 190172 unique_id port 190172 remote_ip 10.8.0.130 190176 username yaghobi 190176 mac 190176 bytes_out 267018 190176 bytes_in 429240 190176 station_ip 83.123.121.163 190176 port 399 190134 bytes_out 0 190134 bytes_in 0 190134 station_ip 83.123.70.105 190134 port 399 190134 unique_id port 190134 remote_ip 10.8.0.62 190136 username kalantary6037 190136 mac 190136 bytes_out 934338 190136 bytes_in 6738199 190136 station_ip 83.123.47.93 190136 port 425 190136 unique_id port 190136 remote_ip 10.8.0.50 190138 username rahim 190138 mac 190138 bytes_out 13647 190138 bytes_in 20079 190138 station_ip 5.119.188.112 190138 port 405 190138 unique_id port 190138 remote_ip 10.8.0.134 190141 username rahim 190141 mac 190141 bytes_out 0 190141 bytes_in 0 190141 station_ip 5.119.57.111 190141 port 425 190141 unique_id port 190141 remote_ip 10.8.0.134 190151 username fezealinaghi 190151 mac 190151 bytes_out 2670716 190151 bytes_in 42455251 190151 station_ip 83.123.74.238 190151 port 426 190151 unique_id port 190151 remote_ip 10.8.0.202 190153 username rezaei 190153 mac 190153 bytes_out 2293040 190153 bytes_in 9054445 190153 station_ip 83.123.78.255 190153 port 399 190153 unique_id port 190153 remote_ip 10.8.0.198 190154 username barzegar 190154 mac 190154 bytes_out 0 190154 bytes_in 0 190154 station_ip 5.119.72.132 190154 port 399 190154 unique_id port 190154 remote_ip 10.8.0.70 190156 username shahruz 190156 mac 190156 bytes_out 0 190156 bytes_in 0 190156 station_ip 86.55.252.137 190156 port 416 190156 unique_id port 190156 remote_ip 10.8.0.146 190161 username jafari 190161 kill_reason Another user logged on this global unique id 190161 mac 190161 bytes_out 0 190161 bytes_in 0 190161 station_ip 37.156.54.119 190161 port 424 190161 unique_id port 190163 username kalantary6037 190163 mac 190163 bytes_out 961248 190163 bytes_in 8751975 190163 station_ip 83.123.66.105 190163 port 399 190163 unique_id port 190163 remote_ip 10.8.0.50 190164 username yaghobi 190164 mac 190164 bytes_out 808835 190164 bytes_in 1372030 190164 station_ip 83.123.121.163 190164 port 405 190164 unique_id port 190164 remote_ip 10.8.0.138 190169 username mostafa_es78 190169 mac 190169 bytes_out 4339 190169 bytes_in 3546 190169 station_ip 83.123.87.1 190169 port 405 190169 unique_id port 190169 remote_ip 10.8.0.34 190174 username barzegar 190174 mac 190174 bytes_out 2493 190174 bytes_in 4618 190174 station_ip 5.119.72.132 190174 port 426 190174 unique_id port 190174 remote_ip 10.8.0.70 190177 username sabaghnezhad 190177 mac 190177 bytes_out 22101 190177 bytes_in 28679 190177 station_ip 46.51.17.68 190177 port 416 190177 unique_id port 190177 remote_ip 10.8.0.66 190180 username mosi 190180 mac 190180 bytes_out 810482 190180 bytes_in 2506432 190180 station_ip 89.32.108.96 190180 port 414 190180 unique_id port 190180 remote_ip 10.8.0.142 190182 username barzegar 190182 mac 190182 bytes_out 0 190182 bytes_in 0 190182 station_ip 5.119.72.132 190182 port 399 190182 unique_id port 190182 remote_ip 10.8.0.70 190186 username farhad3 190186 mac 190186 bytes_out 5984712 190186 bytes_in 38401901 190186 station_ip 5.120.61.225 190186 port 400 190186 unique_id port 190186 remote_ip 10.8.0.222 190188 username hosseine 190188 mac 190188 bytes_out 0 190188 bytes_in 0 190188 station_ip 83.123.92.189 190188 port 419 190188 unique_id port 190189 username sabaghnezhad 190189 mac 190189 bytes_out 9927 190189 bytes_in 14793 190189 station_ip 46.51.17.68 190189 port 399 190189 unique_id port 190189 remote_ip 10.8.0.66 190191 username yaghobi 190191 mac 190191 bytes_out 293260 190191 bytes_in 426749 190144 bytes_in 0 190144 station_ip 83.123.70.105 190144 port 400 190144 unique_id port 190144 remote_ip 10.8.0.62 190147 username sekonji0496 190147 mac 190147 bytes_out 0 190147 bytes_in 0 190147 station_ip 83.123.70.105 190147 port 400 190147 unique_id port 190147 remote_ip 10.8.0.62 190149 username akbari0070 190149 mac 190149 bytes_out 6532929 190149 bytes_in 37258393 190149 station_ip 83.123.90.21 190149 port 430 190149 unique_id port 190149 remote_ip 10.8.0.166 190152 username sekonji0496 190152 mac 190152 bytes_out 0 190152 bytes_in 0 190152 station_ip 83.123.70.105 190152 port 427 190152 unique_id port 190152 remote_ip 10.8.0.62 190155 username shahruz 190155 mac 190155 bytes_out 3534213 190155 bytes_in 29700516 190155 station_ip 86.55.252.137 190155 port 416 190155 unique_id port 190155 remote_ip 10.8.0.146 190160 username rashidi4690 190160 mac 190160 bytes_out 0 190160 bytes_in 0 190160 station_ip 5.120.157.10 190160 port 414 190160 unique_id port 190165 username barzegar 190165 mac 190165 bytes_out 0 190165 bytes_in 0 190165 station_ip 5.119.72.132 190165 port 426 190165 unique_id port 190165 remote_ip 10.8.0.70 190168 username shahruz 190168 mac 190168 bytes_out 0 190168 bytes_in 0 190168 station_ip 86.55.252.137 190168 port 405 190168 unique_id port 190168 remote_ip 10.8.0.146 190170 username barzegar 190170 mac 190170 bytes_out 0 190170 bytes_in 0 190170 station_ip 5.119.72.132 190170 port 427 190170 unique_id port 190170 remote_ip 10.8.0.70 190173 username godarzi 190173 mac 190173 bytes_out 0 190173 bytes_in 0 190173 station_ip 5.119.61.27 190173 port 427 190173 unique_id port 190173 remote_ip 10.8.0.38 190175 username shahruz 190175 kill_reason Maximum check online fails reached 190175 mac 190175 bytes_out 0 190175 bytes_in 0 190175 station_ip 86.55.252.137 190175 port 405 190175 unique_id port 190179 username barzegar 190179 mac 190179 bytes_out 4375 190179 bytes_in 6170 190179 station_ip 5.119.72.132 190179 port 416 190179 unique_id port 190179 remote_ip 10.8.0.70 190185 username mostafa_es78 190185 kill_reason Another user logged on this global unique id 190185 mac 190185 bytes_out 0 190185 bytes_in 0 190185 station_ip 83.123.87.1 190185 port 429 190185 unique_id port 190185 remote_ip 10.8.0.34 190187 username barzegar 190187 mac 190187 bytes_out 4755 190187 bytes_in 5290 190187 station_ip 5.119.72.132 190187 port 425 190187 unique_id port 190187 remote_ip 10.8.0.70 190190 username barzegar 190190 mac 190190 bytes_out 2727 190190 bytes_in 4844 190190 station_ip 5.119.72.132 190190 port 400 190190 unique_id port 190190 remote_ip 10.8.0.70 190196 username milan 190196 kill_reason Another user logged on this global unique id 190196 mac 190196 bytes_out 0 190196 bytes_in 0 190196 station_ip 5.119.23.34 190196 port 403 190196 unique_id port 190197 username barzegar 190197 mac 190197 bytes_out 7387 190197 bytes_in 13597 190197 station_ip 5.119.72.132 190197 port 419 190197 unique_id port 190197 remote_ip 10.8.0.70 190205 username barzegar 190205 mac 190205 bytes_out 45498 190205 bytes_in 70172 190205 station_ip 5.119.72.132 190205 port 419 190205 unique_id port 190205 remote_ip 10.8.0.70 190209 username khaleghi2406 190209 mac 190209 bytes_out 4073448 190209 bytes_in 49805114 190209 station_ip 83.123.69.211 190209 port 410 190209 unique_id port 190209 remote_ip 10.8.0.218 190210 username kalantary6037 190210 mac 190210 bytes_out 62548 190210 bytes_in 139625 190176 unique_id port 190176 remote_ip 10.8.0.138 190178 username kharazmi2920 190178 mac 190178 bytes_out 587432 190178 bytes_in 5303788 190178 station_ip 83.123.93.194 190178 port 425 190178 unique_id port 190178 remote_ip 10.8.0.22 190181 username yaghobi 190181 mac 190181 bytes_out 196591 190181 bytes_in 287191 190181 station_ip 83.123.96.207 190181 port 399 190181 unique_id port 190181 remote_ip 10.8.0.138 190183 username sabaghnezhad 190183 mac 190183 bytes_out 8944 190183 bytes_in 14372 190183 station_ip 46.51.17.68 190183 port 426 190183 unique_id port 190183 remote_ip 10.8.0.66 190184 username barzegar 190184 mac 190184 bytes_out 0 190184 bytes_in 0 190184 station_ip 5.119.72.132 190184 port 425 190184 unique_id port 190184 remote_ip 10.8.0.70 190194 username barzegar 190194 mac 190194 bytes_out 0 190194 bytes_in 0 190194 station_ip 5.119.72.132 190194 port 400 190194 unique_id port 190194 remote_ip 10.8.0.70 190202 username yaghobi 190202 mac 190202 bytes_out 401701 190202 bytes_in 510024 190202 station_ip 83.123.96.207 190202 port 399 190202 unique_id port 190202 remote_ip 10.8.0.138 190204 username barzegar 190204 kill_reason Maximum number of concurrent logins reached 190204 mac 190204 bytes_out 0 190204 bytes_in 0 190204 station_ip 5.119.72.132 190204 port 399 190204 unique_id port 190211 username rezaei 190211 mac 190211 bytes_out 1287918 190211 bytes_in 5842749 190211 station_ip 83.123.79.70 190211 port 400 190211 unique_id port 190211 remote_ip 10.8.0.198 190213 username milan 190213 kill_reason Another user logged on this global unique id 190213 mac 190213 bytes_out 0 190213 bytes_in 0 190213 station_ip 5.119.23.34 190213 port 403 190213 unique_id port 190214 username motamedi9772 190214 mac 190214 bytes_out 5024852 190214 bytes_in 44168877 190214 station_ip 83.123.77.7 190214 port 416 190214 unique_id port 190214 remote_ip 10.8.0.154 190218 username milan 190218 kill_reason Another user logged on this global unique id 190218 mac 190218 bytes_out 0 190218 bytes_in 0 190218 station_ip 5.119.23.34 190218 port 403 190218 unique_id port 190222 username saeed9658 190222 mac 190222 bytes_out 0 190222 bytes_in 0 190222 station_ip 5.119.206.111 190222 port 414 190222 unique_id port 190222 remote_ip 10.8.0.162 190223 username aminvpn 190223 kill_reason Maximum check online fails reached 190223 unique_id port 190223 bytes_out 155346 190223 bytes_in 479452 190223 station_ip 5.120.104.143 190223 port 15729156 190223 nas_port_type Virtual 190223 remote_ip 5.5.5.81 190224 username milan 190224 mac 190224 bytes_out 0 190224 bytes_in 0 190224 station_ip 5.119.23.34 190224 port 403 190224 unique_id port 190232 username soleymani5056 190232 mac 190232 bytes_out 21809 190232 bytes_in 23225 190232 station_ip 5.120.44.33 190232 port 410 190232 unique_id port 190232 remote_ip 10.8.0.226 190241 username naeimeh 190241 mac 190241 bytes_out 1327424 190241 bytes_in 12029640 190241 station_ip 83.123.95.68 190241 port 410 190241 unique_id port 190241 remote_ip 10.8.0.78 190242 username dortaj3792 190242 mac 190242 bytes_out 1189983 190242 bytes_in 7166145 190242 station_ip 5.120.131.204 190242 port 400 190242 unique_id port 190242 remote_ip 10.8.0.102 190244 username mosi 190244 mac 190244 bytes_out 55832 190244 bytes_in 44365 190244 station_ip 89.32.108.96 190244 port 414 190244 unique_id port 190244 remote_ip 10.8.0.142 190246 username naeimeh 190246 mac 190246 bytes_out 1222235 190246 bytes_in 15614689 190246 station_ip 83.123.95.68 190191 station_ip 83.123.96.207 190191 port 414 190191 unique_id port 190191 remote_ip 10.8.0.138 190192 username sabaghnezhad 190192 mac 190192 bytes_out 0 190192 bytes_in 0 190192 station_ip 46.51.17.68 190192 port 419 190192 unique_id port 190192 remote_ip 10.8.0.66 190193 username barzegar 190193 mac 190193 bytes_out 0 190193 bytes_in 0 190193 station_ip 5.119.72.132 190193 port 400 190193 unique_id port 190193 remote_ip 10.8.0.70 190195 username jafari 190195 kill_reason Another user logged on this global unique id 190195 mac 190195 bytes_out 0 190195 bytes_in 0 190195 station_ip 37.156.54.119 190195 port 424 190195 unique_id port 190198 username mostafa_es78 190198 kill_reason Another user logged on this global unique id 190198 mac 190198 bytes_out 0 190198 bytes_in 0 190198 station_ip 83.123.87.1 190198 port 429 190198 unique_id port 190199 username hajghani 190199 kill_reason Another user logged on this global unique id 190199 mac 190199 bytes_out 0 190199 bytes_in 0 190199 station_ip 89.47.135.34 190199 port 427 190199 unique_id port 190199 remote_ip 10.8.0.106 190200 username sabaghnezhad 190200 mac 190200 bytes_out 15313 190200 bytes_in 18177 190200 station_ip 46.51.17.68 190200 port 414 190200 unique_id port 190200 remote_ip 10.8.0.66 190201 username aminvpn 190201 unique_id port 190201 terminate_cause Lost-Carrier 190201 bytes_out 11878147 190201 bytes_in 235259807 190201 station_ip 5.119.205.93 190201 port 15729152 190201 nas_port_type Virtual 190201 remote_ip 5.5.5.84 190203 username jafari 190203 mac 190203 bytes_out 0 190203 bytes_in 0 190203 station_ip 37.156.54.119 190203 port 424 190203 unique_id port 190206 username yaghobi 190206 mac 190206 bytes_out 187337 190206 bytes_in 304038 190206 station_ip 83.123.45.255 190206 port 414 190206 unique_id port 190206 remote_ip 10.8.0.138 190207 username yaghobi 190207 mac 190207 bytes_out 165794 190207 bytes_in 248146 190207 station_ip 83.123.69.175 190207 port 399 190207 unique_id port 190207 remote_ip 10.8.0.138 190208 username hajghani 190208 kill_reason Another user logged on this global unique id 190208 mac 190208 bytes_out 0 190208 bytes_in 0 190208 station_ip 89.47.135.34 190208 port 427 190208 unique_id port 190212 username hajghani 190212 mac 190212 bytes_out 0 190212 bytes_in 0 190212 station_ip 89.47.135.34 190212 port 427 190212 unique_id port 190220 username kalantary6037 190220 mac 190220 bytes_out 2012762 190220 bytes_in 18707303 190220 station_ip 83.123.43.225 190220 port 416 190220 unique_id port 190220 remote_ip 10.8.0.50 190221 username saeed9658 190221 mac 190221 bytes_out 3716118 190221 bytes_in 29036270 190221 station_ip 5.119.206.111 190221 port 414 190221 unique_id port 190221 remote_ip 10.8.0.162 190225 username mostafa_es78 190225 kill_reason Another user logged on this global unique id 190225 mac 190225 bytes_out 0 190225 bytes_in 0 190225 station_ip 83.123.87.1 190225 port 429 190225 unique_id port 190226 username saeed9658 190226 mac 190226 bytes_out 1163150 190226 bytes_in 9709155 190226 station_ip 5.119.206.111 190226 port 414 190226 unique_id port 190226 remote_ip 10.8.0.162 190228 username mostafa_es78 190228 kill_reason Another user logged on this global unique id 190228 mac 190228 bytes_out 0 190228 bytes_in 0 190228 station_ip 83.123.87.1 190228 port 429 190228 unique_id port 190234 username farhad3 190234 kill_reason Another user logged on this global unique id 190234 mac 190234 bytes_out 0 190234 bytes_in 0 190234 station_ip 5.120.61.225 190234 port 425 190234 unique_id port 190210 station_ip 83.123.43.225 190210 port 410 190210 unique_id port 190210 remote_ip 10.8.0.50 190215 username yaghobi 190215 mac 190215 bytes_out 557177 190215 bytes_in 2507329 190215 station_ip 83.123.69.175 190215 port 419 190215 unique_id port 190215 remote_ip 10.8.0.138 190216 username yaghobi 190216 mac 190216 bytes_out 1514757 190216 bytes_in 11754145 190216 station_ip 83.123.69.175 190216 port 410 190216 unique_id port 190216 remote_ip 10.8.0.138 190217 username yaghobi 190217 mac 190217 bytes_out 12244 190217 bytes_in 17701 190217 station_ip 83.123.69.175 190217 port 424 190217 unique_id port 190217 remote_ip 10.8.0.138 190219 username hatami 190219 mac 190219 bytes_out 398147 190219 bytes_in 3769570 190219 station_ip 151.235.102.98 190219 port 419 190219 unique_id port 190219 remote_ip 10.8.0.98 190227 username alikomsari 190227 mac 190227 bytes_out 1462745 190227 bytes_in 7273728 190227 station_ip 5.119.159.224 190227 port 410 190227 unique_id port 190227 remote_ip 10.8.0.214 190229 username soleymani5056 190229 mac 190229 bytes_out 177226 190229 bytes_in 585539 190229 station_ip 5.119.175.122 190229 port 403 190229 unique_id port 190229 remote_ip 10.8.0.226 190230 username aminvpn 190230 unique_id port 190230 terminate_cause Lost-Carrier 190230 bytes_out 12468309 190230 bytes_in 314725767 190230 station_ip 46.100.217.46 190230 port 15729154 190230 nas_port_type Virtual 190230 remote_ip 5.5.5.164 190231 username mostafa_es78 190231 kill_reason Another user logged on this global unique id 190231 mac 190231 bytes_out 0 190231 bytes_in 0 190231 station_ip 83.123.87.1 190231 port 429 190231 unique_id port 190233 username mosi 190233 kill_reason Another user logged on this global unique id 190233 mac 190233 bytes_out 0 190233 bytes_in 0 190233 station_ip 89.32.108.96 190233 port 403 190233 unique_id port 190233 remote_ip 10.8.0.142 190235 username sabaghnezhad 190235 mac 190235 bytes_out 670254 190235 bytes_in 3688390 190235 station_ip 46.51.17.68 190235 port 400 190235 unique_id port 190235 remote_ip 10.8.0.66 190237 username mostafa_es78 190237 mac 190237 bytes_out 0 190237 bytes_in 0 190237 station_ip 83.123.87.1 190237 port 429 190237 unique_id port 190238 username farhad3 190238 kill_reason Another user logged on this global unique id 190238 mac 190238 bytes_out 0 190238 bytes_in 0 190238 station_ip 5.120.61.225 190238 port 425 190238 unique_id port 190240 username mosi 190240 mac 190240 bytes_out 0 190240 bytes_in 0 190240 station_ip 89.32.108.96 190240 port 403 190240 unique_id port 190248 username dortaj3792 190248 mac 190248 bytes_out 41843 190248 bytes_in 63026 190248 station_ip 5.120.131.204 190248 port 400 190248 unique_id port 190248 remote_ip 10.8.0.102 190250 username farhad3 190250 mac 190250 bytes_out 0 190250 bytes_in 0 190250 station_ip 5.120.61.225 190250 port 425 190250 unique_id port 190253 username aminvpn 190253 mac 190253 bytes_out 1598296 190253 bytes_in 8816083 190253 station_ip 5.119.150.175 190253 port 433 190253 unique_id port 190253 remote_ip 10.8.0.58 190262 username alipour1506 190262 kill_reason Another user logged on this global unique id 190262 mac 190262 bytes_out 0 190262 bytes_in 0 190262 station_ip 78.39.25.121 190262 port 423 190262 unique_id port 190266 username mosi 190266 mac 190266 bytes_out 37556 190266 bytes_in 31723 190266 station_ip 89.32.108.96 190266 port 414 190266 unique_id port 190266 remote_ip 10.8.0.142 190268 username mosi 190268 mac 190268 bytes_out 7629 190234 remote_ip 10.8.0.222 190236 username dortaj3792 190236 mac 190236 bytes_out 295941 190236 bytes_in 784295 190236 station_ip 5.120.131.204 190236 port 410 190236 unique_id port 190236 remote_ip 10.8.0.102 190239 username fezealinaghi 190239 mac 190239 bytes_out 1977095 190239 bytes_in 12844131 190239 station_ip 83.123.124.14 190239 port 416 190239 unique_id port 190239 remote_ip 10.8.0.202 190243 username naeimeh 190243 mac 190243 bytes_out 271110 190243 bytes_in 2922735 190243 station_ip 83.123.95.68 190243 port 403 190243 unique_id port 190243 remote_ip 10.8.0.78 190245 username farhad3 190245 kill_reason Another user logged on this global unique id 190245 mac 190245 bytes_out 0 190245 bytes_in 0 190245 station_ip 5.120.61.225 190245 port 425 190245 unique_id port 190247 username mosi 190247 mac 190247 bytes_out 474507 190247 bytes_in 58319 190247 station_ip 89.32.108.96 190247 port 403 190247 unique_id port 190247 remote_ip 10.8.0.142 190249 username mosi 190249 mac 190249 bytes_out 18937 190249 bytes_in 17697 190249 station_ip 89.32.108.96 190249 port 410 190249 unique_id port 190249 remote_ip 10.8.0.142 190252 username shahruz 190252 mac 190252 bytes_out 3025179 190252 bytes_in 35264841 190252 station_ip 5.119.136.221 190252 port 403 190252 unique_id port 190252 remote_ip 10.8.0.146 190254 username shahruz 190254 mac 190254 bytes_out 5990 190254 bytes_in 11893 190254 station_ip 83.123.122.47 190254 port 414 190254 unique_id port 190254 remote_ip 10.8.0.146 190257 username shahruz 190257 mac 190257 bytes_out 1106156 190257 bytes_in 11072708 190257 station_ip 5.119.197.93 190257 port 403 190257 unique_id port 190257 remote_ip 10.8.0.146 190261 username mostafa_es78 190261 kill_reason Another user logged on this global unique id 190261 mac 190261 bytes_out 0 190261 bytes_in 0 190261 station_ip 83.122.41.23 190261 port 400 190261 unique_id port 190261 remote_ip 10.8.0.34 190263 username shahruz 190263 kill_reason Another user logged on this global unique id 190263 mac 190263 bytes_out 0 190263 bytes_in 0 190263 station_ip 5.119.209.31 190263 port 403 190263 unique_id port 190263 remote_ip 10.8.0.146 190267 username mosi 190267 mac 190267 bytes_out 15846 190267 bytes_in 18941 190267 station_ip 89.32.108.96 190267 port 410 190267 unique_id port 190267 remote_ip 10.8.0.142 190270 username mosi 190270 mac 190270 bytes_out 9876 190270 bytes_in 9402 190270 station_ip 89.32.108.96 190270 port 410 190270 unique_id port 190270 remote_ip 10.8.0.142 190271 username mosi 190271 mac 190271 bytes_out 0 190271 bytes_in 0 190271 station_ip 89.32.108.96 190271 port 400 190271 unique_id port 190271 remote_ip 10.8.0.142 190281 username mosi 190281 mac 190281 bytes_out 17349 190281 bytes_in 17704 190281 station_ip 89.32.108.96 190281 port 419 190281 unique_id port 190281 remote_ip 10.8.0.142 190285 username shahruz 190285 kill_reason Maximum number of concurrent logins reached 190285 mac 190285 bytes_out 0 190285 bytes_in 0 190285 station_ip 5.119.209.31 190285 port 424 190285 unique_id port 190287 username shahruz 190287 mac 190287 bytes_out 0 190287 bytes_in 0 190287 station_ip 5.119.209.31 190287 port 419 190287 unique_id port 190287 remote_ip 10.8.0.146 190288 username ebrahimpour3 190288 kill_reason Another user logged on this global unique id 190288 mac 190288 bytes_out 0 190288 bytes_in 0 190288 station_ip 83.123.116.207 190288 port 400 190288 unique_id port 190288 remote_ip 10.8.0.86 190289 username mosi 190289 mac 190246 port 400 190246 unique_id port 190246 remote_ip 10.8.0.78 190251 username mosi 190251 mac 190251 bytes_out 17006 190251 bytes_in 13806 190251 station_ip 89.32.108.96 190251 port 400 190251 unique_id port 190251 remote_ip 10.8.0.142 190255 username mosi 190255 mac 190255 bytes_out 127073 190255 bytes_in 113084 190255 station_ip 89.32.108.96 190255 port 410 190255 unique_id port 190255 remote_ip 10.8.0.142 190256 username mosi 190256 mac 190256 bytes_out 12103 190256 bytes_in 10915 190256 station_ip 89.32.108.96 190256 port 414 190256 unique_id port 190256 remote_ip 10.8.0.142 190258 username shahruz 190258 mac 190258 bytes_out 466874 190258 bytes_in 3873245 190258 station_ip 83.123.122.47 190258 port 414 190258 unique_id port 190258 remote_ip 10.8.0.146 190259 username mosi 190259 mac 190259 bytes_out 27325 190259 bytes_in 20525 190259 station_ip 89.32.108.96 190259 port 410 190259 unique_id port 190259 remote_ip 10.8.0.142 190260 username mosi 190260 mac 190260 bytes_out 10143 190260 bytes_in 10186 190260 station_ip 89.32.108.96 190260 port 414 190260 unique_id port 190260 remote_ip 10.8.0.142 190264 username mosi 190264 mac 190264 bytes_out 59358 190264 bytes_in 42560 190264 station_ip 89.32.108.96 190264 port 410 190264 unique_id port 190264 remote_ip 10.8.0.142 190265 username mostafa_es78 190265 kill_reason Another user logged on this global unique id 190265 mac 190265 bytes_out 0 190265 bytes_in 0 190265 station_ip 83.122.41.23 190265 port 400 190265 unique_id port 190272 username shahruz 190272 kill_reason Another user logged on this global unique id 190272 mac 190272 bytes_out 0 190272 bytes_in 0 190272 station_ip 5.119.209.31 190272 port 403 190272 unique_id port 190275 username shahruz 190275 mac 190275 bytes_out 0 190275 bytes_in 0 190275 station_ip 5.119.209.31 190275 port 419 190275 unique_id port 190275 remote_ip 10.8.0.146 190276 username shahruz 190276 mac 190276 bytes_out 0 190276 bytes_in 0 190276 station_ip 5.119.209.31 190276 port 419 190276 unique_id port 190276 remote_ip 10.8.0.146 190278 username shahruz 190278 kill_reason Maximum check online fails reached 190278 mac 190278 bytes_out 0 190278 bytes_in 0 190278 station_ip 5.119.209.31 190278 port 416 190278 unique_id port 190279 username shahruz 190279 mac 190279 bytes_out 0 190279 bytes_in 0 190279 station_ip 5.119.209.31 190279 port 410 190279 unique_id port 190279 remote_ip 10.8.0.146 190280 username shahruz 190280 mac 190280 bytes_out 0 190280 bytes_in 0 190280 station_ip 5.119.209.31 190280 port 416 190280 unique_id port 190280 remote_ip 10.8.0.146 190284 username mansour 190284 mac 190284 bytes_out 1514941 190284 bytes_in 20815509 190284 station_ip 5.202.10.192 190284 port 414 190284 unique_id port 190284 remote_ip 10.8.0.10 190286 username shahruz 190286 kill_reason Maximum check online fails reached 190286 mac 190286 bytes_out 0 190286 bytes_in 0 190286 station_ip 5.119.209.31 190286 port 414 190286 unique_id port 190289 bytes_out 525020 190289 bytes_in 537868 190289 station_ip 89.32.108.96 190289 port 410 190289 unique_id port 190289 remote_ip 10.8.0.142 190290 username ebrahimpour3 190290 kill_reason Another user logged on this global unique id 190290 mac 190290 bytes_out 0 190290 bytes_in 0 190290 station_ip 83.123.116.207 190290 port 400 190290 unique_id port 190293 username ebrahimpour3 190293 kill_reason Another user logged on this global unique id 190293 mac 190293 bytes_out 0 190293 bytes_in 0 190293 station_ip 83.123.116.207 190268 bytes_in 7880 190268 station_ip 89.32.108.96 190268 port 414 190268 unique_id port 190268 remote_ip 10.8.0.142 190269 username mostafa_es78 190269 mac 190269 bytes_out 0 190269 bytes_in 0 190269 station_ip 83.122.41.23 190269 port 400 190269 unique_id port 190273 username shahruz 190273 mac 190273 bytes_out 0 190273 bytes_in 0 190273 station_ip 5.119.209.31 190273 port 403 190273 unique_id port 190274 username shahruz 190274 kill_reason Maximum check online fails reached 190274 mac 190274 bytes_out 0 190274 bytes_in 0 190274 station_ip 5.119.209.31 190274 port 403 190274 unique_id port 190277 username mosi 190277 mac 190277 bytes_out 61668 190277 bytes_in 45175 190277 station_ip 89.32.108.96 190277 port 410 190277 unique_id port 190277 remote_ip 10.8.0.142 190282 username shahruz 190282 kill_reason Maximum check online fails reached 190282 mac 190282 bytes_out 0 190282 bytes_in 0 190282 station_ip 5.119.209.31 190282 port 416 190282 unique_id port 190283 username shahruz 190283 mac 190283 bytes_out 2204 190283 bytes_in 4600 190283 station_ip 5.119.209.31 190283 port 419 190283 unique_id port 190283 remote_ip 10.8.0.146 190291 username mosi 190291 mac 190291 bytes_out 66262 190291 bytes_in 74917 190291 station_ip 89.32.108.96 190291 port 419 190291 unique_id port 190291 remote_ip 10.8.0.142 190292 username mosi 190292 mac 190292 bytes_out 20177 190292 bytes_in 43186 190292 station_ip 89.32.108.96 190292 port 410 190292 unique_id port 190292 remote_ip 10.8.0.142 190293 port 400 190293 unique_id port 190294 username kalantary6037 190294 mac 190294 bytes_out 901681 190294 bytes_in 4074927 190294 station_ip 83.123.62.93 190294 port 410 190294 unique_id port 190294 remote_ip 10.8.0.50 190295 username ebrahimpour3 190295 kill_reason Another user logged on this global unique id 190295 mac 190295 bytes_out 0 190295 bytes_in 0 190295 station_ip 83.123.116.207 190295 port 400 190295 unique_id port 190296 username mosi 190296 mac 190296 bytes_out 55376 190296 bytes_in 88297 190296 station_ip 89.32.108.96 190296 port 419 190296 unique_id port 190296 remote_ip 10.8.0.142 190297 username khaleghi2406 190297 mac 190297 bytes_out 273108 190297 bytes_in 304015 190297 station_ip 83.123.69.211 190297 port 399 190297 unique_id port 190297 remote_ip 10.8.0.218 190298 username mosi 190298 mac 190298 bytes_out 10489 190298 bytes_in 10938 190298 station_ip 89.32.108.96 190298 port 410 190298 unique_id port 190298 remote_ip 10.8.0.142 190299 username ebrahimpour3 190299 kill_reason Another user logged on this global unique id 190299 mac 190299 bytes_out 0 190299 bytes_in 0 190299 station_ip 83.123.116.207 190299 port 400 190299 unique_id port 190300 username ebrahimpour3 190300 kill_reason Another user logged on this global unique id 190300 mac 190300 bytes_out 0 190300 bytes_in 0 190300 station_ip 83.123.116.207 190300 port 400 190300 unique_id port 190301 username ebrahimpour3 190301 mac 190301 bytes_out 0 190301 bytes_in 0 190301 station_ip 83.123.116.207 190301 port 400 190301 unique_id port 190302 username kalantary6037 190302 kill_reason Another user logged on this global unique id 190302 mac 190302 bytes_out 0 190302 bytes_in 0 190302 station_ip 83.123.108.97 190302 port 410 190302 unique_id port 190302 remote_ip 10.8.0.50 190303 username kalantary6037 190303 kill_reason Another user logged on this global unique id 190303 mac 190303 bytes_out 0 190303 bytes_in 0 190303 station_ip 83.123.108.97 190303 port 410 190303 unique_id port 190304 username mosi 190304 mac 190304 bytes_out 105801 190304 bytes_in 119921 190304 station_ip 89.32.108.96 190304 port 399 190304 unique_id port 190304 remote_ip 10.8.0.142 190307 username pourshad 190307 kill_reason Another user logged on this global unique id 190307 mac 190307 bytes_out 0 190307 bytes_in 0 190307 station_ip 5.120.73.74 190307 port 400 190307 unique_id port 190307 remote_ip 10.8.0.42 190308 username mosi 190308 mac 190308 bytes_out 35716 190308 bytes_in 26227 190308 station_ip 89.32.108.96 190308 port 410 190308 unique_id port 190308 remote_ip 10.8.0.142 190309 username pourshad 190309 kill_reason Another user logged on this global unique id 190309 mac 190309 bytes_out 0 190309 bytes_in 0 190309 station_ip 5.120.73.74 190309 port 400 190309 unique_id port 190310 username mosi 190310 mac 190310 bytes_out 39240 190310 bytes_in 29077 190310 station_ip 89.32.108.96 190310 port 419 190310 unique_id port 190310 remote_ip 10.8.0.142 190313 username mosi 190313 mac 190313 bytes_out 98478 190313 bytes_in 78635 190313 station_ip 89.32.108.96 190313 port 410 190313 unique_id port 190313 remote_ip 10.8.0.142 190316 username morteza4424 190316 mac 190316 bytes_out 132387 190316 bytes_in 361102 190316 station_ip 83.123.89.90 190316 port 410 190316 unique_id port 190316 remote_ip 10.8.0.206 190318 username morteza4424 190318 kill_reason Maximum check online fails reached 190318 mac 190318 bytes_out 0 190318 bytes_in 0 190318 station_ip 83.123.89.90 190318 port 410 190318 unique_id port 190320 username mosi 190320 mac 190320 bytes_out 210271 190320 bytes_in 444237 190320 station_ip 89.32.108.96 190320 port 426 190320 unique_id port 190320 remote_ip 10.8.0.142 190321 username pourshad 190321 kill_reason Another user logged on this global unique id 190321 mac 190321 bytes_out 0 190321 bytes_in 0 190321 station_ip 5.120.73.74 190321 port 400 190321 unique_id port 190322 username fezealinaghi 190322 mac 190322 bytes_out 1254598 190322 bytes_in 7751007 190322 station_ip 83.123.7.158 190322 port 425 190322 unique_id port 190322 remote_ip 10.8.0.202 190324 username nilufarrajaei 190324 mac 190324 bytes_out 3170984 190324 bytes_in 33322086 190324 station_ip 83.123.109.148 190324 port 399 190324 unique_id port 190324 remote_ip 10.8.0.194 190325 username houshang 190325 mac 190325 bytes_out 422134 190325 bytes_in 3545236 190325 station_ip 5.119.102.72 190325 port 426 190325 unique_id port 190325 remote_ip 10.8.0.82 190327 username fezealinaghi 190327 kill_reason Another user logged on this global unique id 190327 mac 190327 bytes_out 0 190327 bytes_in 0 190327 station_ip 83.123.7.158 190327 port 425 190327 unique_id port 190327 remote_ip 10.8.0.202 190328 username fezealinaghi 190328 kill_reason Another user logged on this global unique id 190328 mac 190328 bytes_out 0 190328 bytes_in 0 190328 station_ip 83.123.7.158 190328 port 425 190328 unique_id port 190331 username khalili2 190331 mac 190331 bytes_out 102975 190331 bytes_in 277675 190331 station_ip 5.119.41.36 190331 port 425 190331 unique_id port 190331 remote_ip 10.8.0.190 190332 username yaghobi 190332 mac 190332 bytes_out 280408 190332 bytes_in 518812 190332 station_ip 83.123.4.153 190332 port 399 190332 unique_id port 190332 remote_ip 10.8.0.138 190335 username yaghobi 190335 mac 190335 bytes_out 100570 190335 bytes_in 117378 190335 station_ip 83.123.117.94 190335 port 425 190335 unique_id port 190335 remote_ip 10.8.0.138 190337 username pourshad 190337 kill_reason Another user logged on this global unique id 190337 mac 190337 bytes_out 0 190305 username kalantary6037 190305 mac 190305 bytes_out 0 190305 bytes_in 0 190305 station_ip 83.123.108.97 190305 port 410 190305 unique_id port 190306 username mosi 190306 mac 190306 bytes_out 18773 190306 bytes_in 18794 190306 station_ip 89.32.108.96 190306 port 419 190306 unique_id port 190306 remote_ip 10.8.0.142 190312 username pourshad 190312 kill_reason Another user logged on this global unique id 190312 mac 190312 bytes_out 0 190312 bytes_in 0 190312 station_ip 5.120.73.74 190312 port 400 190312 unique_id port 190319 username pourshad 190319 kill_reason Another user logged on this global unique id 190319 mac 190319 bytes_out 0 190319 bytes_in 0 190319 station_ip 5.120.73.74 190319 port 400 190319 unique_id port 190329 username mohammadjavad 190329 mac 190329 bytes_out 479862 190329 bytes_in 2849174 190329 station_ip 83.123.33.14 190329 port 399 190329 unique_id port 190329 remote_ip 10.8.0.110 190333 username pourshad 190333 kill_reason Another user logged on this global unique id 190333 mac 190333 bytes_out 0 190333 bytes_in 0 190333 station_ip 5.120.73.74 190333 port 400 190333 unique_id port 190334 username khaleghi2406 190334 mac 190334 bytes_out 1294843 190334 bytes_in 11443642 190334 station_ip 83.123.73.48 190334 port 419 190334 unique_id port 190334 remote_ip 10.8.0.218 190341 username morteza4424 190341 mac 190341 bytes_out 2796 190341 bytes_in 4629 190341 station_ip 83.123.98.122 190341 port 423 190341 unique_id port 190341 remote_ip 10.8.0.206 190342 username morteza4424 190342 mac 190342 bytes_out 0 190342 bytes_in 0 190342 station_ip 83.123.98.122 190342 port 423 190342 unique_id port 190342 remote_ip 10.8.0.206 190348 username morteza4424 190348 mac 190348 bytes_out 0 190348 bytes_in 0 190348 station_ip 83.123.98.122 190348 port 423 190348 unique_id port 190348 remote_ip 10.8.0.206 190349 username morteza4424 190349 mac 190349 bytes_out 0 190349 bytes_in 0 190349 station_ip 83.123.98.122 190349 port 423 190349 unique_id port 190349 remote_ip 10.8.0.206 190354 username yaghobi 190354 mac 190354 bytes_out 246869 190354 bytes_in 302660 190354 station_ip 83.123.23.121 190354 port 425 190354 unique_id port 190354 remote_ip 10.8.0.138 190356 username pourshad 190356 kill_reason Another user logged on this global unique id 190356 mac 190356 bytes_out 0 190356 bytes_in 0 190356 station_ip 5.120.73.74 190356 port 400 190356 unique_id port 190357 username sekonji0496 190357 mac 190357 bytes_out 178061 190357 bytes_in 2991229 190357 station_ip 83.123.37.180 190357 port 425 190357 unique_id port 190357 remote_ip 10.8.0.62 190360 username pourshad 190360 kill_reason Another user logged on this global unique id 190360 mac 190360 bytes_out 0 190360 bytes_in 0 190360 station_ip 5.120.73.74 190360 port 400 190360 unique_id port 190363 username dortaj3792 190363 mac 190363 bytes_out 963439 190363 bytes_in 3531063 190363 station_ip 5.120.131.204 190363 port 423 190363 unique_id port 190363 remote_ip 10.8.0.102 190366 username hatami 190366 mac 190366 bytes_out 2621 190366 bytes_in 3916 190366 station_ip 151.235.102.98 190366 port 425 190366 unique_id port 190366 remote_ip 10.8.0.98 190368 username mahdiyehalizadeh 190368 kill_reason Relative expiration date has reached 190368 mac 190368 bytes_out 0 190368 bytes_in 0 190368 station_ip 5.119.208.138 190368 port 425 190368 unique_id port 190369 username sekonji0496 190369 mac 190369 bytes_out 0 190369 bytes_in 0 190369 station_ip 83.123.37.180 190369 port 425 190369 unique_id port 190311 username pourshad 190311 kill_reason Another user logged on this global unique id 190311 mac 190311 bytes_out 0 190311 bytes_in 0 190311 station_ip 5.120.73.74 190311 port 400 190311 unique_id port 190314 username pourshad 190314 kill_reason Another user logged on this global unique id 190314 mac 190314 bytes_out 0 190314 bytes_in 0 190314 station_ip 5.120.73.74 190314 port 400 190314 unique_id port 190315 username morteza4424 190315 mac 190315 bytes_out 732859 190315 bytes_in 11177164 190315 station_ip 83.123.89.90 190315 port 424 190315 unique_id port 190315 remote_ip 10.8.0.206 190317 username morteza4424 190317 mac 190317 bytes_out 0 190317 bytes_in 0 190317 station_ip 83.123.89.90 190317 port 410 190317 unique_id port 190317 remote_ip 10.8.0.206 190323 username mosi 190323 mac 190323 bytes_out 63922 190323 bytes_in 47001 190323 station_ip 89.32.108.96 190323 port 424 190323 unique_id port 190323 remote_ip 10.8.0.142 190326 username morteza4424 190326 mac 190326 bytes_out 12555 190326 bytes_in 33478 190326 station_ip 83.123.89.90 190326 port 399 190326 unique_id port 190326 remote_ip 10.8.0.206 190330 username fezealinaghi 190330 mac 190330 bytes_out 0 190330 bytes_in 0 190330 station_ip 83.123.7.158 190330 port 425 190330 unique_id port 190336 username alipour1506 190336 mac 190336 bytes_out 0 190336 bytes_in 0 190336 station_ip 78.39.25.121 190336 port 423 190336 unique_id port 190338 username motamedi9772 190338 mac 190338 bytes_out 88607 190338 bytes_in 69095 190338 station_ip 83.123.9.31 190338 port 423 190338 unique_id port 190338 remote_ip 10.8.0.154 190340 username morteza4424 190340 mac 190340 bytes_out 0 190340 bytes_in 0 190340 station_ip 83.123.98.122 190340 port 423 190340 unique_id port 190340 remote_ip 10.8.0.206 190343 username pourshad 190343 kill_reason Another user logged on this global unique id 190343 mac 190343 bytes_out 0 190343 bytes_in 0 190343 station_ip 5.120.73.74 190343 port 400 190343 unique_id port 190345 username pourshad 190345 mac 190345 bytes_out 0 190345 bytes_in 0 190345 station_ip 5.120.73.74 190345 port 400 190345 unique_id port 190347 username morteza4424 190347 mac 190347 bytes_out 0 190347 bytes_in 0 190347 station_ip 83.123.98.122 190347 port 423 190347 unique_id port 190347 remote_ip 10.8.0.206 190352 username pourshad 190352 kill_reason Another user logged on this global unique id 190352 mac 190352 bytes_out 0 190352 bytes_in 0 190352 station_ip 5.120.73.74 190352 port 400 190352 unique_id port 190352 remote_ip 10.8.0.42 190353 username morteza4424 190353 mac 190353 bytes_out 0 190353 bytes_in 0 190353 station_ip 83.123.98.122 190353 port 423 190353 unique_id port 190353 remote_ip 10.8.0.206 190358 username sekonji0496 190358 mac 190358 bytes_out 0 190358 bytes_in 0 190358 station_ip 83.123.37.180 190358 port 425 190358 unique_id port 190358 remote_ip 10.8.0.62 190364 username sekonji0496 190364 mac 190364 bytes_out 0 190364 bytes_in 0 190364 station_ip 83.123.37.180 190364 port 425 190364 unique_id port 190364 remote_ip 10.8.0.62 190367 username sekonji0496 190367 mac 190367 bytes_out 0 190367 bytes_in 0 190367 station_ip 83.123.37.180 190367 port 425 190367 unique_id port 190367 remote_ip 10.8.0.62 190374 username dortaj3792 190374 mac 190374 bytes_out 799861 190374 bytes_in 9241922 190374 station_ip 5.120.131.204 190374 port 425 190374 unique_id port 190374 remote_ip 10.8.0.102 190375 username khaleghi2406 190375 mac 190337 bytes_in 0 190337 station_ip 5.120.73.74 190337 port 400 190337 unique_id port 190339 username morteza4424 190339 mac 190339 bytes_out 5546 190339 bytes_in 11859 190339 station_ip 83.123.98.122 190339 port 425 190339 unique_id port 190339 remote_ip 10.8.0.206 190344 username khaleghi2406 190344 mac 190344 bytes_out 29030 190344 bytes_in 31148 190344 station_ip 83.123.73.48 190344 port 419 190344 unique_id port 190344 remote_ip 10.8.0.218 190346 username morteza4424 190346 mac 190346 bytes_out 7356 190346 bytes_in 12586 190346 station_ip 83.123.98.122 190346 port 423 190346 unique_id port 190346 remote_ip 10.8.0.206 190350 username morteza4424 190350 mac 190350 bytes_out 0 190350 bytes_in 0 190350 station_ip 83.123.98.122 190350 port 423 190350 unique_id port 190350 remote_ip 10.8.0.206 190351 username alirezaza 190351 unique_id port 190351 terminate_cause Lost-Carrier 190351 bytes_out 84783 190351 bytes_in 235848 190351 station_ip 5.119.160.183 190351 port 15729157 190351 nas_port_type Virtual 190351 remote_ip 5.5.5.80 190355 username morteza4424 190355 mac 190355 bytes_out 0 190355 bytes_in 0 190355 station_ip 83.123.98.122 190355 port 425 190355 unique_id port 190355 remote_ip 10.8.0.206 190359 username morteza4424 190359 mac 190359 bytes_out 6330 190359 bytes_in 20202 190359 station_ip 83.123.98.122 190359 port 430 190359 unique_id port 190359 remote_ip 10.8.0.206 190361 username sekonji0496 190361 mac 190361 bytes_out 20135 190361 bytes_in 65988 190361 station_ip 83.123.37.180 190361 port 425 190361 unique_id port 190361 remote_ip 10.8.0.62 190362 username sekonji0496 190362 mac 190362 bytes_out 0 190362 bytes_in 0 190362 station_ip 83.123.37.180 190362 port 425 190362 unique_id port 190362 remote_ip 10.8.0.62 190365 username mosi 190365 mac 190365 bytes_out 463645 190365 bytes_in 389433 190365 station_ip 89.32.108.96 190365 port 429 190365 unique_id port 190365 remote_ip 10.8.0.142 190372 username yaghobi 190372 mac 190372 bytes_out 305351 190372 bytes_in 411481 190372 station_ip 83.123.46.70 190372 port 426 190372 unique_id port 190372 remote_ip 10.8.0.138 190378 username kalantary6037 190378 kill_reason Another user logged on this global unique id 190378 mac 190378 bytes_out 0 190378 bytes_in 0 190378 station_ip 83.123.107.161 190378 port 426 190378 unique_id port 190378 remote_ip 10.8.0.50 190379 username mosi 190379 mac 190379 bytes_out 118703 190379 bytes_in 119673 190379 station_ip 89.32.108.96 190379 port 423 190379 unique_id port 190379 remote_ip 10.8.0.142 190385 username sekonji0496 190385 mac 190385 bytes_out 0 190385 bytes_in 0 190385 station_ip 83.123.37.180 190385 port 431 190385 unique_id port 190385 remote_ip 10.8.0.62 190386 username sekonji0496 190386 mac 190386 bytes_out 0 190386 bytes_in 0 190386 station_ip 83.123.37.180 190386 port 431 190386 unique_id port 190386 remote_ip 10.8.0.62 190388 username sekonji0496 190388 mac 190388 bytes_out 0 190388 bytes_in 0 190388 station_ip 83.123.37.180 190388 port 431 190388 unique_id port 190388 remote_ip 10.8.0.62 190390 username kharazmi2920 190390 mac 190390 bytes_out 206698 190390 bytes_in 1206669 190390 station_ip 83.123.18.110 190390 port 432 190390 unique_id port 190390 remote_ip 10.8.0.22 190393 username kalantary6037 190393 mac 190393 bytes_out 0 190393 bytes_in 0 190393 station_ip 83.123.107.161 190393 port 426 190393 unique_id port 190395 username khaleghi2406 190395 mac 190395 bytes_out 43863 190369 remote_ip 10.8.0.62 190370 username sekonji0496 190370 mac 190370 bytes_out 0 190370 bytes_in 0 190370 station_ip 83.123.37.180 190370 port 425 190370 unique_id port 190370 remote_ip 10.8.0.62 190371 username sekonji0496 190371 mac 190371 bytes_out 0 190371 bytes_in 0 190371 station_ip 83.123.37.180 190371 port 425 190371 unique_id port 190371 remote_ip 10.8.0.62 190373 username sekonji0496 190373 mac 190373 bytes_out 0 190373 bytes_in 0 190373 station_ip 83.123.37.180 190373 port 431 190373 unique_id port 190373 remote_ip 10.8.0.62 190377 username morteza4424 190377 mac 190377 bytes_out 0 190377 bytes_in 0 190377 station_ip 83.123.102.66 190377 port 419 190377 unique_id port 190377 remote_ip 10.8.0.206 190380 username sekonji0496 190380 mac 190380 bytes_out 0 190380 bytes_in 0 190380 station_ip 83.123.37.180 190380 port 423 190380 unique_id port 190380 remote_ip 10.8.0.62 190381 username sekonji0496 190381 mac 190381 bytes_out 0 190381 bytes_in 0 190381 station_ip 83.123.37.180 190381 port 423 190381 unique_id port 190381 remote_ip 10.8.0.62 190383 username sekonji0496 190383 mac 190383 bytes_out 0 190383 bytes_in 0 190383 station_ip 83.123.37.180 190383 port 431 190383 unique_id port 190383 remote_ip 10.8.0.62 190384 username sekonji0496 190384 mac 190384 bytes_out 0 190384 bytes_in 0 190384 station_ip 83.123.37.180 190384 port 431 190384 unique_id port 190384 remote_ip 10.8.0.62 190391 username alipour1506 190391 kill_reason Another user logged on this global unique id 190391 mac 190391 bytes_out 0 190391 bytes_in 0 190391 station_ip 83.123.13.186 190391 port 399 190391 unique_id port 190391 remote_ip 10.8.0.246 190392 username yaghobi 190392 mac 190392 bytes_out 26765 190392 bytes_in 25273 190392 station_ip 83.123.67.140 190392 port 431 190392 unique_id port 190392 remote_ip 10.8.0.138 190394 username mosi 190394 mac 190394 bytes_out 67685 190394 bytes_in 47879 190394 station_ip 89.32.108.96 190394 port 419 190394 unique_id port 190394 remote_ip 10.8.0.142 190403 username kalantary6037 190403 mac 190403 bytes_out 2643287 190403 bytes_in 6920945 190403 station_ip 83.123.107.161 190403 port 419 190403 unique_id port 190403 remote_ip 10.8.0.50 190405 username saeed9658 190405 mac 190405 bytes_out 72105 190405 bytes_in 140628 190405 station_ip 5.119.206.111 190405 port 433 190405 unique_id port 190405 remote_ip 10.8.0.162 190409 username nilufarrajaei 190409 kill_reason Another user logged on this global unique id 190409 mac 190409 bytes_out 0 190409 bytes_in 0 190409 station_ip 83.123.109.148 190409 port 427 190409 unique_id port 190409 remote_ip 10.8.0.194 190410 username kharazmi2920 190410 mac 190410 bytes_out 153445 190410 bytes_in 497267 190410 station_ip 83.123.18.110 190410 port 425 190410 unique_id port 190410 remote_ip 10.8.0.22 190414 username mosi 190414 mac 190414 bytes_out 7721 190414 bytes_in 11976 190414 station_ip 89.32.108.96 190414 port 435 190414 unique_id port 190414 remote_ip 10.8.0.142 190416 username kalantary6037 190416 kill_reason Another user logged on this global unique id 190416 mac 190416 bytes_out 0 190416 bytes_in 0 190416 station_ip 83.123.107.161 190416 port 433 190416 unique_id port 190416 remote_ip 10.8.0.50 190420 username kalantary6037 190420 mac 190420 bytes_out 0 190420 bytes_in 0 190420 station_ip 83.123.107.161 190420 port 433 190420 unique_id port 190424 username sabaghnezhad 190424 mac 190424 bytes_out 297441 190424 bytes_in 1359690 190375 bytes_out 431600 190375 bytes_in 5683576 190375 station_ip 83.123.73.48 190375 port 419 190375 unique_id port 190375 remote_ip 10.8.0.218 190376 username morteza4424 190376 mac 190376 bytes_out 0 190376 bytes_in 0 190376 station_ip 83.123.102.66 190376 port 419 190376 unique_id port 190376 remote_ip 10.8.0.206 190382 username kalantary6037 190382 kill_reason Another user logged on this global unique id 190382 mac 190382 bytes_out 0 190382 bytes_in 0 190382 station_ip 83.123.107.161 190382 port 426 190382 unique_id port 190387 username yaghobi 190387 mac 190387 bytes_out 189335 190387 bytes_in 226914 190387 station_ip 83.123.46.70 190387 port 429 190387 unique_id port 190387 remote_ip 10.8.0.138 190389 username sekonji0496 190389 mac 190389 bytes_out 0 190389 bytes_in 0 190389 station_ip 83.123.37.180 190389 port 429 190389 unique_id port 190389 remote_ip 10.8.0.62 190396 username sekonji0496 190396 mac 190396 bytes_out 2532 190396 bytes_in 4512 190396 station_ip 83.123.37.180 190396 port 426 190396 unique_id port 190396 remote_ip 10.8.0.62 190398 username sekonji0496 190398 mac 190398 bytes_out 0 190398 bytes_in 0 190398 station_ip 83.123.37.180 190398 port 431 190398 unique_id port 190398 remote_ip 10.8.0.62 190399 username yaghobi 190399 mac 190399 bytes_out 101706 190399 bytes_in 100441 190399 station_ip 83.123.67.140 190399 port 425 190399 unique_id port 190399 remote_ip 10.8.0.138 190400 username kharazmi2920 190400 mac 190400 bytes_out 154307 190400 bytes_in 290853 190400 station_ip 83.123.18.110 190400 port 425 190400 unique_id port 190400 remote_ip 10.8.0.22 190401 username sekonji0496 190401 mac 190401 bytes_out 0 190401 bytes_in 0 190401 station_ip 83.123.37.180 190401 port 425 190401 unique_id port 190401 remote_ip 10.8.0.62 190407 username alipour1506 190407 kill_reason Another user logged on this global unique id 190407 mac 190407 bytes_out 0 190407 bytes_in 0 190407 station_ip 83.123.13.186 190407 port 399 190407 unique_id port 190411 username pourshad 190411 mac 190411 bytes_out 0 190411 bytes_in 0 190411 station_ip 5.120.73.74 190411 port 400 190411 unique_id port 190415 username dortaj3792 190415 mac 190415 bytes_out 6329353 190415 bytes_in 4308435 190415 station_ip 5.120.131.204 190415 port 423 190415 unique_id port 190415 remote_ip 10.8.0.102 190418 username godarzi 190418 mac 190418 bytes_out 599594 190418 bytes_in 5833883 190418 station_ip 5.119.61.27 190418 port 425 190418 unique_id port 190418 remote_ip 10.8.0.38 190421 username khaleghi2406 190421 mac 190421 bytes_out 53984 190421 bytes_in 64505 190421 station_ip 83.123.97.231 190421 port 426 190421 unique_id port 190421 remote_ip 10.8.0.218 190422 username khaleghi2406 190422 mac 190422 bytes_out 10998 190422 bytes_in 13058 190422 station_ip 83.123.97.231 190422 port 431 190422 unique_id port 190422 remote_ip 10.8.0.218 190423 username dortaj3792 190423 mac 190423 bytes_out 39616 190423 bytes_in 42970 190423 station_ip 5.120.131.204 190423 port 426 190423 unique_id port 190423 remote_ip 10.8.0.102 190425 username yaghobi 190425 mac 190425 bytes_out 382366 190425 bytes_in 597458 190425 station_ip 83.123.49.135 190425 port 429 190425 unique_id port 190425 remote_ip 10.8.0.138 190430 username godarzi 190430 mac 190430 bytes_out 2830196 190430 bytes_in 19953909 190430 station_ip 5.119.61.27 190430 port 423 190430 unique_id port 190430 remote_ip 10.8.0.38 190431 username dortaj3792 190431 mac 190395 bytes_in 65167 190395 station_ip 83.123.97.231 190395 port 425 190395 unique_id port 190395 remote_ip 10.8.0.218 190397 username sekonji0496 190397 mac 190397 bytes_out 0 190397 bytes_in 0 190397 station_ip 83.123.37.180 190397 port 431 190397 unique_id port 190397 remote_ip 10.8.0.62 190402 username sekonji0496 190402 mac 190402 bytes_out 0 190402 bytes_in 0 190402 station_ip 83.123.37.180 190402 port 425 190402 unique_id port 190402 remote_ip 10.8.0.62 190404 username sekonji0496 190404 mac 190404 bytes_out 2860 190404 bytes_in 5053 190404 station_ip 83.123.37.180 190404 port 425 190404 unique_id port 190404 remote_ip 10.8.0.62 190406 username sekonji0496 190406 mac 190406 bytes_out 1766 190406 bytes_in 4815 190406 station_ip 83.123.37.180 190406 port 419 190406 unique_id port 190406 remote_ip 10.8.0.62 190408 username hamid.e 190408 unique_id port 190408 terminate_cause User-Request 190408 bytes_out 998057 190408 bytes_in 18580721 190408 station_ip 37.27.10.80 190408 port 15729158 190408 nas_port_type Virtual 190408 remote_ip 5.5.5.79 190412 username mosi 190412 mac 190412 bytes_out 159661 190412 bytes_in 99887 190412 station_ip 89.32.108.96 190412 port 429 190412 unique_id port 190412 remote_ip 10.8.0.142 190413 username yaghobi 190413 mac 190413 bytes_out 1179821 190413 bytes_in 6835560 190413 station_ip 83.123.67.140 190413 port 431 190413 unique_id port 190413 remote_ip 10.8.0.138 190417 username khademi 190417 kill_reason Another user logged on this global unique id 190417 mac 190417 bytes_out 0 190417 bytes_in 0 190417 station_ip 83.123.42.254 190417 port 424 190417 unique_id port 190417 remote_ip 10.8.0.14 190419 username mosi 190419 mac 190419 bytes_out 16670 190419 bytes_in 19413 190419 station_ip 89.32.108.96 190419 port 423 190419 unique_id port 190419 remote_ip 10.8.0.142 190426 username sabaghnezhad 190426 mac 190426 bytes_out 22291 190426 bytes_in 36557 190426 station_ip 5.106.71.148 190426 port 426 190426 unique_id port 190426 remote_ip 10.8.0.66 190427 username kalantary6037 190427 mac 190427 bytes_out 1453396 190427 bytes_in 18188036 190427 station_ip 83.123.114.101 190427 port 419 190427 unique_id port 190427 remote_ip 10.8.0.50 190428 username yaghobi 190428 mac 190428 bytes_out 146144 190428 bytes_in 233737 190428 station_ip 83.123.49.135 190428 port 431 190428 unique_id port 190428 remote_ip 10.8.0.138 190434 username mohsenaskari 190434 mac 190434 bytes_out 206862 190434 bytes_in 2226034 190434 station_ip 46.225.214.226 190434 port 419 190434 unique_id port 190434 remote_ip 10.8.0.170 190439 username aminvpn 190439 mac 190439 bytes_out 0 190439 bytes_in 0 190439 station_ip 5.120.44.188 190439 port 431 190439 unique_id port 190439 remote_ip 10.8.0.58 190447 username kalantary6037 190447 mac 190447 bytes_out 46646 190447 bytes_in 99564 190447 station_ip 83.123.99.125 190447 port 426 190447 unique_id port 190447 remote_ip 10.8.0.50 190448 username barzegar8595 190448 mac 190448 bytes_out 18347 190448 bytes_in 27307 190448 station_ip 46.225.232.165 190448 port 425 190448 unique_id port 190448 remote_ip 10.8.0.114 190451 username meysam 190451 kill_reason Another user logged on this global unique id 190451 mac 190451 bytes_out 0 190451 bytes_in 0 190451 station_ip 188.158.51.139 190451 port 431 190451 unique_id port 190451 remote_ip 10.8.0.158 190452 username barzegar8595 190452 mac 190452 bytes_out 148252 190452 bytes_in 1058711 190452 station_ip 46.225.232.156 190452 port 425 190424 station_ip 5.106.71.148 190424 port 419 190424 unique_id port 190424 remote_ip 10.8.0.66 190429 username yaghobi 190429 mac 190429 bytes_out 56401 190429 bytes_in 188716 190429 station_ip 83.123.123.35 190429 port 419 190429 unique_id port 190429 remote_ip 10.8.0.138 190436 username barzegar8595 190436 mac 190436 bytes_out 13712 190436 bytes_in 32866 190436 station_ip 46.225.213.3 190436 port 419 190436 unique_id port 190436 remote_ip 10.8.0.114 190438 username akbari0070 190438 mac 190438 bytes_out 13009 190438 bytes_in 47604 190438 station_ip 83.123.81.238 190438 port 431 190438 unique_id port 190438 remote_ip 10.8.0.166 190441 username alipour1506 190441 kill_reason Another user logged on this global unique id 190441 mac 190441 bytes_out 0 190441 bytes_in 0 190441 station_ip 83.123.13.186 190441 port 399 190441 unique_id port 190442 username mosi 190442 mac 190442 bytes_out 295364 190442 bytes_in 304166 190442 station_ip 89.32.108.96 190442 port 425 190442 unique_id port 190442 remote_ip 10.8.0.142 190443 username barzegar8595 190443 mac 190443 bytes_out 839295 190443 bytes_in 4467616 190443 station_ip 46.225.213.100 190443 port 433 190443 unique_id port 190443 remote_ip 10.8.0.114 190444 username soleymani5056 190444 mac 190444 bytes_out 68662 190444 bytes_in 76001 190444 station_ip 5.120.42.205 190444 port 431 190444 unique_id port 190444 remote_ip 10.8.0.226 190445 username godarzi 190445 mac 190445 bytes_out 775647 190445 bytes_in 5999537 190445 station_ip 5.119.61.27 190445 port 427 190445 unique_id port 190445 remote_ip 10.8.0.38 190461 username kalantary6037 190461 mac 190461 bytes_out 3440207 190461 bytes_in 38617711 190461 station_ip 83.123.99.125 190461 port 433 190461 unique_id port 190461 remote_ip 10.8.0.50 190463 username kharazmi2920 190463 mac 190463 bytes_out 73057 190463 bytes_in 319900 190463 station_ip 83.123.8.186 190463 port 399 190463 unique_id port 190463 remote_ip 10.8.0.22 190465 username alihosseini1 190465 kill_reason Maximum check online fails reached 190465 mac 190465 bytes_out 0 190465 bytes_in 0 190465 station_ip 5.120.19.86 190465 port 399 190465 unique_id port 190468 username alihosseini1 190468 mac 190468 bytes_out 132743 190468 bytes_in 309850 190468 station_ip 5.120.19.86 190468 port 425 190468 unique_id port 190468 remote_ip 10.8.0.118 190470 username dortaj3792 190470 mac 190470 bytes_out 43359 190470 bytes_in 108285 190470 station_ip 5.120.131.204 190470 port 433 190470 unique_id port 190470 remote_ip 10.8.0.102 190472 username khademi 190472 kill_reason Another user logged on this global unique id 190472 mac 190472 bytes_out 0 190472 bytes_in 0 190472 station_ip 83.123.42.254 190472 port 424 190472 unique_id port 190474 username barzegar8595 190474 mac 190474 bytes_out 1124800 190474 bytes_in 398521 190474 station_ip 37.27.45.3 190474 port 436 190474 unique_id port 190474 remote_ip 10.8.0.114 190479 username pourshad 190479 kill_reason Another user logged on this global unique id 190479 mac 190479 bytes_out 0 190479 bytes_in 0 190479 station_ip 5.120.73.74 190479 port 400 190479 unique_id port 190479 remote_ip 10.8.0.42 190480 username mosi 190480 mac 190480 bytes_out 553805 190480 bytes_in 928658 190480 station_ip 89.32.108.96 190480 port 426 190480 unique_id port 190480 remote_ip 10.8.0.142 190481 username barzegar8595 190481 mac 190481 bytes_out 3279 190481 bytes_in 5722 190481 station_ip 46.225.214.214 190481 port 437 190481 unique_id port 190481 remote_ip 10.8.0.114 190483 username motamedi9772 190431 bytes_out 23896 190431 bytes_in 86398 190431 station_ip 5.120.131.204 190431 port 419 190431 unique_id port 190431 remote_ip 10.8.0.102 190432 username kalantary6037 190432 mac 190432 bytes_out 1334240 190432 bytes_in 14783686 190432 station_ip 83.123.114.101 190432 port 429 190432 unique_id port 190432 remote_ip 10.8.0.50 190433 username alirezaza 190433 unique_id port 190433 terminate_cause Lost-Carrier 190433 bytes_out 396519 190433 bytes_in 3863637 190433 station_ip 5.120.36.209 190433 port 15729160 190433 nas_port_type Virtual 190433 remote_ip 5.5.5.78 190435 username akbari0070 190435 mac 190435 bytes_out 60372 190435 bytes_in 161882 190435 station_ip 83.123.81.238 190435 port 419 190435 unique_id port 190435 remote_ip 10.8.0.166 190437 username nilufarrajaei 190437 mac 190437 bytes_out 0 190437 bytes_in 0 190437 station_ip 83.123.109.148 190437 port 427 190437 unique_id port 190440 username soleymani5056 190440 mac 190440 bytes_out 488634 190440 bytes_in 1892452 190440 station_ip 5.119.22.196 190440 port 426 190440 unique_id port 190440 remote_ip 10.8.0.226 190446 username barzegar8595 190446 mac 190446 bytes_out 13117 190446 bytes_in 19229 190446 station_ip 46.225.232.8 190446 port 425 190446 unique_id port 190446 remote_ip 10.8.0.114 190449 username iranmanesh4443 190449 mac 190449 bytes_out 971382 190449 bytes_in 8897770 190449 station_ip 5.119.195.3 190449 port 419 190449 unique_id port 190449 remote_ip 10.8.0.126 190450 username dortaj3792 190450 mac 190450 bytes_out 253192 190450 bytes_in 467818 190450 station_ip 5.120.131.204 190450 port 423 190450 unique_id port 190450 remote_ip 10.8.0.102 190453 username khademi 190453 kill_reason Another user logged on this global unique id 190453 mac 190453 bytes_out 0 190453 bytes_in 0 190453 station_ip 83.123.42.254 190453 port 424 190453 unique_id port 190455 username saeeddamghani 190455 unique_id port 190455 terminate_cause User-Request 190455 bytes_out 305074 190455 bytes_in 8995497 190455 station_ip 83.123.21.59 190455 port 15729161 190455 nas_port_type Virtual 190455 remote_ip 5.5.5.77 190456 username alipour1506 190456 mac 190456 bytes_out 0 190456 bytes_in 0 190456 station_ip 83.123.13.186 190456 port 399 190456 unique_id port 190457 username sabaghnezhad 190457 mac 190457 bytes_out 222839 190457 bytes_in 175036 190457 station_ip 5.106.71.148 190457 port 429 190457 unique_id port 190457 remote_ip 10.8.0.66 190458 username sabaghnezhad 190458 mac 190458 bytes_out 8126 190458 bytes_in 14214 190458 station_ip 5.106.71.148 190458 port 399 190458 unique_id port 190458 remote_ip 10.8.0.66 190462 username alihosseini1 190462 mac 190462 bytes_out 695939 190462 bytes_in 876911 190462 station_ip 5.119.215.86 190462 port 425 190462 unique_id port 190462 remote_ip 10.8.0.118 190466 username khademi 190466 kill_reason Another user logged on this global unique id 190466 mac 190466 bytes_out 0 190466 bytes_in 0 190466 station_ip 83.123.42.254 190466 port 424 190466 unique_id port 190471 username iranmanesh4443 190471 mac 190471 bytes_out 726822 190471 bytes_in 2240460 190471 station_ip 5.119.195.3 190471 port 419 190471 unique_id port 190471 remote_ip 10.8.0.126 190475 username kalantary6037 190475 mac 190475 bytes_out 32744 190475 bytes_in 39285 190475 station_ip 83.123.73.29 190475 port 435 190475 unique_id port 190475 remote_ip 10.8.0.50 190489 username dortaj3792 190489 mac 190489 bytes_out 747615 190489 bytes_in 2305662 190489 station_ip 5.120.131.204 190489 port 432 190489 unique_id port 190452 unique_id port 190452 remote_ip 10.8.0.114 190454 username rashidi4690 190454 kill_reason Another user logged on this global unique id 190454 mac 190454 bytes_out 0 190454 bytes_in 0 190454 station_ip 5.119.75.193 190454 port 432 190454 unique_id port 190454 remote_ip 10.8.0.242 190459 username saeeddamghani 190459 unique_id port 190459 terminate_cause User-Request 190459 bytes_out 446872 190459 bytes_in 17526088 190459 station_ip 83.123.21.59 190459 port 15729163 190459 nas_port_type Virtual 190459 remote_ip 5.5.5.77 190460 username nilufarrajaei 190460 kill_reason Another user logged on this global unique id 190460 mac 190460 bytes_out 0 190460 bytes_in 0 190460 station_ip 83.123.109.148 190460 port 435 190460 unique_id port 190460 remote_ip 10.8.0.194 190464 username meysam 190464 mac 190464 bytes_out 0 190464 bytes_in 0 190464 station_ip 188.158.51.139 190464 port 431 190464 unique_id port 190467 username saeeddamghani 190467 unique_id port 190467 terminate_cause User-Request 190467 bytes_out 263206 190467 bytes_in 843036 190467 station_ip 83.123.74.95 190467 port 15729164 190467 nas_port_type Virtual 190467 remote_ip 5.5.5.76 190469 username nilufarrajaei 190469 mac 190469 bytes_out 0 190469 bytes_in 0 190469 station_ip 83.123.109.148 190469 port 435 190469 unique_id port 190473 username alipour1506 190473 mac 190473 bytes_out 266892 190473 bytes_in 580788 190473 station_ip 83.123.13.186 190473 port 437 190473 unique_id port 190473 remote_ip 10.8.0.246 190476 username rashidi4690 190476 mac 190476 bytes_out 0 190476 bytes_in 0 190476 station_ip 5.119.75.193 190476 port 432 190476 unique_id port 190477 username mostafa_es78 190477 mac 190477 bytes_out 10013 190477 bytes_in 14650 190477 station_ip 83.122.50.255 190477 port 432 190477 unique_id port 190477 remote_ip 10.8.0.34 190478 username barzegar8595 190478 mac 190478 bytes_out 44774 190478 bytes_in 203085 190478 station_ip 37.27.45.3 190478 port 437 190478 unique_id port 190478 remote_ip 10.8.0.114 190482 username pourshad 190482 mac 190482 bytes_out 0 190482 bytes_in 0 190482 station_ip 5.120.73.74 190482 port 400 190482 unique_id port 190486 username meysam 190486 kill_reason Another user logged on this global unique id 190486 mac 190486 bytes_out 0 190486 bytes_in 0 190486 station_ip 188.158.51.139 190486 port 436 190486 unique_id port 190486 remote_ip 10.8.0.158 190487 username pourshad 190487 mac 190487 bytes_out 49720 190487 bytes_in 41072 190487 station_ip 5.120.73.74 190487 port 437 190487 unique_id port 190487 remote_ip 10.8.0.42 190490 username motamedi9772 190490 mac 190490 bytes_out 0 190490 bytes_in 0 190490 station_ip 83.123.9.59 190490 port 425 190490 unique_id port 190497 username kalantary6037 190497 mac 190497 bytes_out 13851 190497 bytes_in 25877 190497 station_ip 83.123.65.121 190497 port 429 190497 unique_id port 190497 remote_ip 10.8.0.50 190499 username motamedi9772 190499 mac 190499 bytes_out 0 190499 bytes_in 0 190499 station_ip 83.123.20.159 190499 port 429 190499 unique_id port 190499 remote_ip 10.8.0.154 190501 username saeeddamghani 190501 mac 190501 bytes_out 158842 190501 bytes_in 1706698 190501 station_ip 217.60.218.82 190501 port 432 190501 unique_id port 190501 remote_ip 10.8.0.122 190503 username khaleghi2406 190503 mac 190503 bytes_out 23333 190503 bytes_in 33128 190503 station_ip 83.123.49.188 190503 port 400 190503 unique_id port 190503 remote_ip 10.8.0.218 190505 username iranmanesh4443 190505 mac 190505 bytes_out 1064672 190505 bytes_in 11276433 190483 kill_reason Another user logged on this global unique id 190483 mac 190483 bytes_out 0 190483 bytes_in 0 190483 station_ip 83.123.9.59 190483 port 425 190483 unique_id port 190483 remote_ip 10.8.0.154 190484 username pourshad 190484 mac 190484 bytes_out 6254140 190484 bytes_in 26537839 190484 station_ip 5.120.73.74 190484 port 437 190484 unique_id port 190484 remote_ip 10.8.0.42 190485 username godarzi 190485 kill_reason Another user logged on this global unique id 190485 mac 190485 bytes_out 0 190485 bytes_in 0 190485 station_ip 5.202.29.254 190485 port 427 190485 unique_id port 190485 remote_ip 10.8.0.38 190488 username barzegar8595 190488 mac 190488 bytes_out 278327 190488 bytes_in 423764 190488 station_ip 46.225.211.14 190488 port 426 190488 unique_id port 190488 remote_ip 10.8.0.114 190491 username rashidi4690 190491 mac 190491 bytes_out 782380 190491 bytes_in 1593820 190491 station_ip 5.119.75.193 190491 port 400 190491 unique_id port 190491 remote_ip 10.8.0.242 190492 username yaghobi 190492 mac 190492 bytes_out 1827512 190492 bytes_in 6777508 190492 station_ip 83.123.44.174 190492 port 429 190492 unique_id port 190492 remote_ip 10.8.0.138 190494 username soleymani5056 190494 mac 190494 bytes_out 96926 190494 bytes_in 333078 190494 station_ip 5.119.38.88 190494 port 400 190494 unique_id port 190494 remote_ip 10.8.0.226 190496 username pourshad 190496 mac 190496 bytes_out 30319 190496 bytes_in 48571 190496 station_ip 5.120.73.74 190496 port 425 190496 unique_id port 190496 remote_ip 10.8.0.42 190498 username fezealinaghi 190498 mac 190498 bytes_out 4086376 190498 bytes_in 35426967 190498 station_ip 83.123.119.130 190498 port 435 190498 unique_id port 190498 remote_ip 10.8.0.202 190500 username khaleghi2406 190500 mac 190500 bytes_out 1529178 190500 bytes_in 22659867 190500 station_ip 83.123.49.188 190500 port 400 190500 unique_id port 190500 remote_ip 10.8.0.218 190502 username dortaj3792 190502 mac 190502 bytes_out 142262 190502 bytes_in 155200 190502 station_ip 5.120.131.204 190502 port 426 190502 unique_id port 190502 remote_ip 10.8.0.102 190504 username kalantary6037 190504 mac 190504 bytes_out 1625938 190504 bytes_in 19472253 190504 station_ip 83.123.65.121 190504 port 426 190504 unique_id port 190504 remote_ip 10.8.0.50 190506 username godarzi 190506 mac 190506 bytes_out 0 190506 bytes_in 0 190506 station_ip 5.202.29.254 190506 port 427 190506 unique_id port 190507 username rashidi4690 190507 mac 190507 bytes_out 25231 190507 bytes_in 120418 190507 station_ip 5.119.240.108 190507 port 419 190507 unique_id port 190507 remote_ip 10.8.0.242 190515 username saeeddamghani 190515 mac 190515 bytes_out 0 190515 bytes_in 0 190515 station_ip 5.119.96.249 190515 port 419 190515 unique_id port 190515 remote_ip 10.8.0.122 190520 username godarzi 190520 mac 190520 bytes_out 768620 190520 bytes_in 10022187 190520 station_ip 5.119.61.27 190520 port 427 190520 unique_id port 190520 remote_ip 10.8.0.38 190522 username hamid.e 190522 unique_id port 190522 terminate_cause Lost-Carrier 190522 bytes_out 11431951 190522 bytes_in 49300203 190522 station_ip 37.27.10.80 190522 port 15729162 190522 nas_port_type Virtual 190522 remote_ip 5.5.5.79 190524 username khaleghi2406 190524 mac 190524 bytes_out 21204 190524 bytes_in 38644 190524 station_ip 83.123.32.254 190524 port 437 190524 unique_id port 190524 remote_ip 10.8.0.218 190526 username yaghobi 190526 mac 190526 bytes_out 47585 190526 bytes_in 66724 190526 station_ip 83.123.86.136 190489 remote_ip 10.8.0.102 190493 username meysam 190493 mac 190493 bytes_out 0 190493 bytes_in 0 190493 station_ip 188.158.51.139 190493 port 436 190493 unique_id port 190495 username rashidi4690 190495 mac 190495 bytes_out 43243 190495 bytes_in 117745 190495 station_ip 5.119.75.193 190495 port 426 190495 unique_id port 190495 remote_ip 10.8.0.242 190509 username saeeddamghani 190509 mac 190509 bytes_out 3176708 190509 bytes_in 48089987 190509 station_ip 5.119.96.249 190509 port 435 190509 unique_id port 190509 remote_ip 10.8.0.122 190511 username yaghobi 190511 mac 190511 bytes_out 628155 190511 bytes_in 1910351 190511 station_ip 83.123.109.144 190511 port 400 190511 unique_id port 190511 remote_ip 10.8.0.138 190513 username alipour1506 190513 mac 190513 bytes_out 1520215 190513 bytes_in 14580986 190513 station_ip 83.123.13.186 190513 port 433 190513 unique_id port 190513 remote_ip 10.8.0.246 190519 username saeeddamghani 190519 mac 190519 bytes_out 0 190519 bytes_in 0 190519 station_ip 5.119.96.249 190519 port 433 190519 unique_id port 190519 remote_ip 10.8.0.122 190521 username motamedi9772 190521 kill_reason Another user logged on this global unique id 190521 mac 190521 bytes_out 0 190521 bytes_in 0 190521 station_ip 83.123.20.159 190521 port 429 190521 unique_id port 190523 username khalili2 190523 kill_reason Another user logged on this global unique id 190523 mac 190523 bytes_out 0 190523 bytes_in 0 190523 station_ip 5.119.199.49 190523 port 423 190523 unique_id port 190523 remote_ip 10.8.0.190 190538 username saeeddamghani 190538 mac 190538 bytes_out 0 190538 bytes_in 0 190538 station_ip 5.119.96.249 190538 port 400 190538 unique_id port 190538 remote_ip 10.8.0.122 190541 username saeeddamghani 190541 mac 190541 bytes_out 22767 190541 bytes_in 43118 190541 station_ip 217.60.218.82 190541 port 400 190541 unique_id port 190541 remote_ip 10.8.0.122 190543 username nilufarrajaei 190543 mac 190543 bytes_out 778517 190543 bytes_in 2864340 190543 station_ip 83.123.109.148 190543 port 431 190543 unique_id port 190543 remote_ip 10.8.0.194 190545 username meysam 190545 mac 190545 bytes_out 3604452 190545 bytes_in 47050383 190545 station_ip 188.158.51.139 190545 port 433 190545 unique_id port 190545 remote_ip 10.8.0.158 190546 username motamedi9772 190546 kill_reason Another user logged on this global unique id 190546 mac 190546 bytes_out 0 190546 bytes_in 0 190546 station_ip 83.123.20.159 190546 port 429 190546 unique_id port 190555 username saeeddamghani 190555 mac 190555 bytes_out 16633 190555 bytes_in 13957 190555 station_ip 217.60.218.82 190555 port 400 190555 unique_id port 190555 remote_ip 10.8.0.122 190560 username fezealinaghi 190560 kill_reason Another user logged on this global unique id 190560 mac 190560 bytes_out 0 190560 bytes_in 0 190560 station_ip 83.123.123.250 190560 port 419 190560 unique_id port 190566 username khalili2 190566 kill_reason Another user logged on this global unique id 190566 mac 190566 bytes_out 0 190566 bytes_in 0 190566 station_ip 5.119.199.49 190566 port 423 190566 unique_id port 190572 username pourshad 190572 mac 190572 bytes_out 93455 190572 bytes_in 232820 190572 station_ip 5.120.73.74 190572 port 427 190572 unique_id port 190572 remote_ip 10.8.0.42 190574 username mostafa_es78 190574 mac 190574 bytes_out 3052729 190574 bytes_in 31932070 190574 station_ip 83.122.62.3 190574 port 426 190574 unique_id port 190574 remote_ip 10.8.0.34 190578 username dortaj3792 190578 mac 190578 bytes_out 104026 190578 bytes_in 111688 190505 station_ip 5.119.195.3 190505 port 419 190505 unique_id port 190505 remote_ip 10.8.0.126 190508 username pourshad 190508 mac 190508 bytes_out 265525 190508 bytes_in 912620 190508 station_ip 5.120.73.74 190508 port 425 190508 unique_id port 190508 remote_ip 10.8.0.42 190510 username saeeddamghani 190510 mac 190510 bytes_out 0 190510 bytes_in 0 190510 station_ip 5.119.96.249 190510 port 425 190510 unique_id port 190510 remote_ip 10.8.0.122 190512 username pourshad 190512 mac 190512 bytes_out 12961 190512 bytes_in 25642 190512 station_ip 5.120.73.74 190512 port 419 190512 unique_id port 190512 remote_ip 10.8.0.42 190514 username motamedi9772 190514 kill_reason Another user logged on this global unique id 190514 mac 190514 bytes_out 0 190514 bytes_in 0 190514 station_ip 83.123.20.159 190514 port 429 190514 unique_id port 190514 remote_ip 10.8.0.154 190516 username fezealinaghi 190516 kill_reason Another user logged on this global unique id 190516 mac 190516 bytes_out 0 190516 bytes_in 0 190516 station_ip 83.123.123.250 190516 port 432 190516 unique_id port 190516 remote_ip 10.8.0.202 190517 username pourshad 190517 mac 190517 bytes_out 27107 190517 bytes_in 97313 190517 station_ip 5.120.73.74 190517 port 419 190517 unique_id port 190517 remote_ip 10.8.0.42 190518 username pourshad 190518 mac 190518 bytes_out 1661 190518 bytes_in 4079 190518 station_ip 5.120.73.74 190518 port 419 190518 unique_id port 190518 remote_ip 10.8.0.42 190525 username yaghobi 190525 mac 190525 bytes_out 294371 190525 bytes_in 488029 190525 station_ip 83.123.109.144 190525 port 425 190525 unique_id port 190525 remote_ip 10.8.0.138 190527 username rashidi4690 190527 mac 190527 bytes_out 509509 190527 bytes_in 1750414 190527 station_ip 5.119.240.108 190527 port 427 190527 unique_id port 190527 remote_ip 10.8.0.242 190528 username motamedi9772 190528 kill_reason Another user logged on this global unique id 190528 mac 190528 bytes_out 0 190528 bytes_in 0 190528 station_ip 83.123.20.159 190528 port 429 190528 unique_id port 190529 username yaghobi 190529 mac 190529 bytes_out 91608 190529 bytes_in 141111 190529 station_ip 83.123.86.136 190529 port 439 190529 unique_id port 190529 remote_ip 10.8.0.138 190530 username saeeddamghani 190530 mac 190530 bytes_out 0 190530 bytes_in 0 190530 station_ip 5.119.96.249 190530 port 427 190530 unique_id port 190530 remote_ip 10.8.0.122 190534 username rashidi4690 190534 mac 190534 bytes_out 139784 190534 bytes_in 531972 190534 station_ip 5.119.240.108 190534 port 419 190534 unique_id port 190534 remote_ip 10.8.0.242 190536 username aminvpn 190536 unique_id port 190536 terminate_cause Lost-Carrier 190536 bytes_out 510077 190536 bytes_in 2626024 190536 station_ip 83.123.33.5 190536 port 15729166 190536 nas_port_type Virtual 190536 remote_ip 5.5.5.75 190539 username pourshad 190539 mac 190539 bytes_out 22789 190539 bytes_in 31310 190539 station_ip 5.120.73.74 190539 port 427 190539 unique_id port 190539 remote_ip 10.8.0.42 190549 username saeeddamghani 190549 kill_reason Maximum check online fails reached 190549 mac 190549 bytes_out 0 190549 bytes_in 0 190549 station_ip 217.60.218.82 190549 port 437 190549 unique_id port 190551 username saeed9658 190551 mac 190551 bytes_out 2112088 190551 bytes_in 18014298 190551 station_ip 5.119.206.111 190551 port 426 190551 unique_id port 190551 remote_ip 10.8.0.162 190552 username yaghobi 190552 mac 190552 bytes_out 53132 190552 bytes_in 86828 190552 station_ip 83.123.50.118 190552 port 439 190552 unique_id port 190526 port 437 190526 unique_id port 190526 remote_ip 10.8.0.138 190531 username pourshad 190531 mac 190531 bytes_out 164792 190531 bytes_in 1070515 190531 station_ip 5.120.73.74 190531 port 419 190531 unique_id port 190531 remote_ip 10.8.0.42 190532 username motamedi9772 190532 kill_reason Another user logged on this global unique id 190532 mac 190532 bytes_out 0 190532 bytes_in 0 190532 station_ip 83.123.20.159 190532 port 429 190532 unique_id port 190533 username kalantary6037 190533 kill_reason Another user logged on this global unique id 190533 mac 190533 bytes_out 0 190533 bytes_in 0 190533 station_ip 83.123.65.121 190533 port 400 190533 unique_id port 190533 remote_ip 10.8.0.50 190535 username yaghobi 190535 mac 190535 bytes_out 188224 190535 bytes_in 344497 190535 station_ip 83.123.86.136 190535 port 437 190535 unique_id port 190535 remote_ip 10.8.0.138 190537 username kalantary6037 190537 mac 190537 bytes_out 0 190537 bytes_in 0 190537 station_ip 83.123.65.121 190537 port 400 190537 unique_id port 190540 username fezealinaghi 190540 mac 190540 bytes_out 0 190540 bytes_in 0 190540 station_ip 83.123.123.250 190540 port 432 190540 unique_id port 190542 username aminvpn 190542 mac 190542 bytes_out 344299 190542 bytes_in 939107 190542 station_ip 5.120.44.188 190542 port 435 190542 unique_id port 190542 remote_ip 10.8.0.58 190544 username saeeddamghani 190544 mac 190544 bytes_out 0 190544 bytes_in 0 190544 station_ip 217.60.218.82 190544 port 431 190544 unique_id port 190544 remote_ip 10.8.0.122 190547 username saeeddamghani 190547 mac 190547 bytes_out 0 190547 bytes_in 0 190547 station_ip 217.60.218.82 190547 port 433 190547 unique_id port 190547 remote_ip 10.8.0.122 190548 username aminvpn 190548 mac 190548 bytes_out 2320995 190548 bytes_in 11576941 190548 station_ip 5.120.44.188 190548 port 400 190548 unique_id port 190548 remote_ip 10.8.0.58 190550 username rashidi4690 190550 mac 190550 bytes_out 318628 190550 bytes_in 1650656 190550 station_ip 5.119.240.108 190550 port 431 190550 unique_id port 190550 remote_ip 10.8.0.242 190554 username motamedi9772 190554 kill_reason Another user logged on this global unique id 190554 mac 190554 bytes_out 0 190554 bytes_in 0 190554 station_ip 83.123.20.159 190554 port 429 190554 unique_id port 190556 username fezealinaghi 190556 kill_reason Another user logged on this global unique id 190556 mac 190556 bytes_out 0 190556 bytes_in 0 190556 station_ip 83.123.123.250 190556 port 419 190556 unique_id port 190556 remote_ip 10.8.0.202 190558 username godarzi 190558 mac 190558 bytes_out 5044835 190558 bytes_in 49481732 190558 station_ip 5.202.29.254 190558 port 425 190558 unique_id port 190558 remote_ip 10.8.0.38 190561 username saeeddamghani 190561 mac 190561 bytes_out 0 190561 bytes_in 0 190561 station_ip 217.60.218.82 190561 port 426 190561 unique_id port 190561 remote_ip 10.8.0.122 190567 username farhad3 190567 mac 190567 bytes_out 45138 190567 bytes_in 9690 190567 station_ip 5.120.61.225 190567 port 426 190567 unique_id port 190567 remote_ip 10.8.0.222 190576 username motamedi9772 190576 mac 190576 bytes_out 0 190576 bytes_in 0 190576 station_ip 83.123.20.159 190576 port 429 190576 unique_id port 190579 username fezealinaghi 190579 kill_reason Another user logged on this global unique id 190579 mac 190579 bytes_out 0 190579 bytes_in 0 190579 station_ip 83.123.123.250 190579 port 419 190579 unique_id port 190581 username malekpoir 190581 kill_reason Another user logged on this global unique id 190581 mac 190552 remote_ip 10.8.0.138 190553 username soleymani5056 190553 mac 190553 bytes_out 690811 190553 bytes_in 605310 190553 station_ip 5.119.216.129 190553 port 432 190553 unique_id port 190553 remote_ip 10.8.0.226 190557 username yaghobi 190557 mac 190557 bytes_out 105458 190557 bytes_in 184092 190557 station_ip 83.123.50.118 190557 port 426 190557 unique_id port 190557 remote_ip 10.8.0.138 190559 username nilufarrajaei 190559 mac 190559 bytes_out 775898 190559 bytes_in 3625939 190559 station_ip 83.123.109.148 190559 port 435 190559 unique_id port 190559 remote_ip 10.8.0.194 190562 username motamedi9772 190562 kill_reason Another user logged on this global unique id 190562 mac 190562 bytes_out 0 190562 bytes_in 0 190562 station_ip 83.123.20.159 190562 port 429 190562 unique_id port 190563 username rashidi4690 190563 mac 190563 bytes_out 1085470 190563 bytes_in 7200109 190563 station_ip 5.119.240.108 190563 port 431 190563 unique_id port 190563 remote_ip 10.8.0.242 190564 username kalantary6037 190564 mac 190564 bytes_out 211442 190564 bytes_in 712137 190564 station_ip 83.123.113.81 190564 port 426 190564 unique_id port 190564 remote_ip 10.8.0.50 190565 username fezealinaghi 190565 kill_reason Maximum check online fails reached 190565 mac 190565 bytes_out 0 190565 bytes_in 0 190565 station_ip 83.123.123.250 190565 port 419 190565 unique_id port 190568 username dortaj3792 190568 mac 190568 bytes_out 1706495 190568 bytes_in 6080362 190568 station_ip 5.120.131.204 190568 port 436 190568 unique_id port 190568 remote_ip 10.8.0.102 190569 username farhad3 190569 mac 190569 bytes_out 63063 190569 bytes_in 74655 190569 station_ip 5.120.61.225 190569 port 432 190569 unique_id port 190569 remote_ip 10.8.0.222 190570 username barzegar8595 190570 mac 190570 bytes_out 247937 190570 bytes_in 1459799 190570 station_ip 46.225.209.176 190570 port 425 190570 unique_id port 190570 remote_ip 10.8.0.114 190571 username saeeddamghani 190571 mac 190571 bytes_out 19945 190571 bytes_in 51713 190571 station_ip 217.60.218.82 190571 port 432 190571 unique_id port 190571 remote_ip 10.8.0.122 190573 username pourshad 190573 mac 190573 bytes_out 9355 190573 bytes_in 9981 190573 station_ip 5.120.73.74 190573 port 425 190573 unique_id port 190573 remote_ip 10.8.0.42 190575 username nilufarrajaei 190575 mac 190575 bytes_out 88814 190575 bytes_in 544162 190575 station_ip 83.123.109.148 190575 port 400 190575 unique_id port 190575 remote_ip 10.8.0.194 190577 username mosi 190577 kill_reason Another user logged on this global unique id 190577 mac 190577 bytes_out 0 190577 bytes_in 0 190577 station_ip 89.32.108.96 190577 port 438 190577 unique_id port 190577 remote_ip 10.8.0.142 190582 username barzegar 190582 kill_reason Maximum number of concurrent logins reached 190582 mac 190582 bytes_out 0 190582 bytes_in 0 190582 station_ip 5.119.72.132 190582 port 435 190582 unique_id port 190585 username barzegar8595 190585 mac 190585 bytes_out 38060 190585 bytes_in 39100 190585 station_ip 37.27.19.76 190585 port 429 190585 unique_id port 190585 remote_ip 10.8.0.114 190586 username khademi 190586 kill_reason Another user logged on this global unique id 190586 mac 190586 bytes_out 0 190586 bytes_in 0 190586 station_ip 83.123.42.254 190586 port 424 190586 unique_id port 190587 username kalantary6037 190587 mac 190587 bytes_out 7249 190587 bytes_in 13973 190587 station_ip 83.123.43.77 190587 port 426 190587 unique_id port 190587 remote_ip 10.8.0.50 190589 username barzegar8595 190589 mac 190589 bytes_out 49433 190578 station_ip 5.120.131.204 190578 port 400 190578 unique_id port 190578 remote_ip 10.8.0.102 190580 username saeeddamghani 190580 mac 190580 bytes_out 0 190580 bytes_in 0 190580 station_ip 217.60.218.82 190580 port 400 190580 unique_id port 190580 remote_ip 10.8.0.122 190584 username saeeddamghani 190584 mac 190584 bytes_out 0 190584 bytes_in 0 190584 station_ip 217.60.218.82 190584 port 426 190584 unique_id port 190584 remote_ip 10.8.0.122 190588 username pourshad 190588 mac 190588 bytes_out 496258 190588 bytes_in 2506519 190588 station_ip 5.120.73.74 190588 port 427 190588 unique_id port 190588 remote_ip 10.8.0.42 190590 username rashidi4690 190590 mac 190590 bytes_out 105186 190590 bytes_in 346032 190590 station_ip 5.119.240.108 190590 port 435 190590 unique_id port 190590 remote_ip 10.8.0.242 190599 username hamid.e 190599 unique_id port 190599 terminate_cause User-Request 190599 bytes_out 7672488 190599 bytes_in 74383226 190599 station_ip 37.27.16.154 190599 port 15729167 190599 nas_port_type Virtual 190599 remote_ip 5.5.5.74 190602 username saeeddamghani 190602 mac 190602 bytes_out 0 190602 bytes_in 0 190602 station_ip 5.119.255.249 190602 port 441 190602 unique_id port 190602 remote_ip 10.8.0.122 190603 username mohammadjavad 190603 mac 190603 bytes_out 397726 190603 bytes_in 2135812 190603 station_ip 83.123.7.119 190603 port 427 190603 unique_id port 190603 remote_ip 10.8.0.110 190607 username naeimeh 190607 kill_reason Another user logged on this global unique id 190607 mac 190607 bytes_out 0 190607 bytes_in 0 190607 station_ip 83.123.26.0 190607 port 436 190607 unique_id port 190607 remote_ip 10.8.0.78 190610 username sabaghnezhad 190610 mac 190610 bytes_out 172051 190610 bytes_in 231679 190610 station_ip 5.106.71.148 190610 port 432 190610 unique_id port 190610 remote_ip 10.8.0.66 190611 username mostafa_es78 190611 kill_reason Another user logged on this global unique id 190611 mac 190611 bytes_out 0 190611 bytes_in 0 190611 station_ip 83.122.62.3 190611 port 426 190611 unique_id port 190615 username alihosseini1 190615 mac 190615 bytes_out 49023 190615 bytes_in 166735 190615 station_ip 5.119.117.77 190615 port 400 190615 unique_id port 190615 remote_ip 10.8.0.118 190618 username mohammadjavad 190618 mac 190618 bytes_out 166060 190618 bytes_in 572912 190618 station_ip 83.123.30.98 190618 port 427 190618 unique_id port 190618 remote_ip 10.8.0.110 190622 username motamedi9772 190622 mac 190622 bytes_out 0 190622 bytes_in 0 190622 station_ip 83.123.92.35 190622 port 400 190622 unique_id port 190622 remote_ip 10.8.0.154 190627 username esmaeilkazemi 190627 mac 190627 bytes_out 0 190627 bytes_in 0 190627 station_ip 83.123.33.107 190627 port 429 190627 unique_id port 190627 remote_ip 10.8.0.26 190630 username esmaeilkazemi 190630 mac 190630 bytes_out 3405 190630 bytes_in 4569 190630 station_ip 83.123.33.107 190630 port 400 190630 unique_id port 190630 remote_ip 10.8.0.26 190632 username esmaeilkazemi 190632 mac 190632 bytes_out 8880 190632 bytes_in 28567 190632 station_ip 83.123.33.107 190632 port 429 190632 unique_id port 190632 remote_ip 10.8.0.26 190633 username motamedi9772 190633 mac 190633 bytes_out 0 190633 bytes_in 0 190633 station_ip 83.123.92.35 190633 port 429 190633 unique_id port 190633 remote_ip 10.8.0.154 190638 username motamedi9772 190638 mac 190638 bytes_out 0 190638 bytes_in 0 190638 station_ip 83.123.92.35 190638 port 427 190638 unique_id port 190638 remote_ip 10.8.0.154 190639 username motamedi9772 190581 bytes_out 0 190581 bytes_in 0 190581 station_ip 5.119.174.149 190581 port 430 190581 unique_id port 190581 remote_ip 10.8.0.18 190583 username barzegar 190583 mac 190583 bytes_out 341294 190583 bytes_in 2136505 190583 station_ip 5.119.72.132 190583 port 426 190583 unique_id port 190583 remote_ip 10.8.0.70 190592 username yaghobi 190592 mac 190592 bytes_out 298642 190592 bytes_in 869003 190592 station_ip 83.123.12.34 190592 port 429 190592 unique_id port 190592 remote_ip 10.8.0.138 190595 username barzegar8595 190595 mac 190595 bytes_out 1586 190595 bytes_in 4485 190595 station_ip 46.225.215.143 190595 port 429 190595 unique_id port 190595 remote_ip 10.8.0.114 190598 username aminvpn 190598 unique_id port 190598 terminate_cause Lost-Carrier 190598 bytes_out 1722334 190598 bytes_in 33976339 190598 station_ip 31.57.143.242 190598 port 15729168 190598 nas_port_type Virtual 190598 remote_ip 5.5.5.73 190604 username kalantary6037 190604 mac 190604 bytes_out 68934 190604 bytes_in 114732 190604 station_ip 83.123.13.69 190604 port 427 190604 unique_id port 190604 remote_ip 10.8.0.50 190605 username khademi 190605 kill_reason Another user logged on this global unique id 190605 mac 190605 bytes_out 0 190605 bytes_in 0 190605 station_ip 83.123.42.254 190605 port 424 190605 unique_id port 190606 username godarzi 190606 kill_reason Another user logged on this global unique id 190606 mac 190606 bytes_out 0 190606 bytes_in 0 190606 station_ip 5.202.29.254 190606 port 431 190606 unique_id port 190606 remote_ip 10.8.0.38 190608 username kharazmi2920 190608 mac 190608 bytes_out 234084 190608 bytes_in 567267 190608 station_ip 83.123.12.97 190608 port 435 190608 unique_id port 190608 remote_ip 10.8.0.22 190609 username akbari0070 190609 kill_reason Maximum check online fails reached 190609 mac 190609 bytes_out 1440411 190609 bytes_in 12666343 190609 station_ip 83.123.121.144 190609 port 439 190609 unique_id port 190609 remote_ip 10.8.0.166 190612 username naeimeh 190612 mac 190612 bytes_out 0 190612 bytes_in 0 190612 station_ip 83.123.26.0 190612 port 436 190612 unique_id port 190613 username dortaj3792 190613 mac 190613 bytes_out 1322358 190613 bytes_in 6642842 190613 station_ip 5.120.131.204 190613 port 400 190613 unique_id port 190613 remote_ip 10.8.0.102 190617 username alihosseini1 190617 mac 190617 bytes_out 10029 190617 bytes_in 11238 190617 station_ip 5.119.117.77 190617 port 400 190617 unique_id port 190617 remote_ip 10.8.0.118 190619 username motamedi9772 190619 mac 190619 bytes_out 155520 190619 bytes_in 1052514 190619 station_ip 83.123.92.35 190619 port 400 190619 unique_id port 190619 remote_ip 10.8.0.154 190621 username mostafa_es78 190621 mac 190621 bytes_out 0 190621 bytes_in 0 190621 station_ip 83.122.62.3 190621 port 426 190621 unique_id port 190623 username motamedi9772 190623 mac 190623 bytes_out 0 190623 bytes_in 0 190623 station_ip 83.123.92.35 190623 port 400 190623 unique_id port 190623 remote_ip 10.8.0.154 190625 username esmaeilkazemi 190625 mac 190625 bytes_out 0 190625 bytes_in 0 190625 station_ip 83.123.33.107 190625 port 400 190625 unique_id port 190625 remote_ip 10.8.0.26 190628 username dortaj3792 190628 mac 190628 bytes_out 313066 190628 bytes_in 1948987 190628 station_ip 5.120.131.204 190628 port 432 190628 unique_id port 190628 remote_ip 10.8.0.102 190635 username pourshad 190635 mac 190635 bytes_out 1661 190635 bytes_in 3672 190635 station_ip 5.120.73.74 190635 port 432 190635 unique_id port 190589 bytes_in 66154 190589 station_ip 46.225.209.176 190589 port 436 190589 unique_id port 190589 remote_ip 10.8.0.114 190591 username fezealinaghi 190591 kill_reason Another user logged on this global unique id 190591 mac 190591 bytes_out 0 190591 bytes_in 0 190591 station_ip 83.123.123.250 190591 port 419 190591 unique_id port 190593 username barzegar8595 190593 mac 190593 bytes_out 12318 190593 bytes_in 18163 190593 station_ip 46.225.210.154 190593 port 439 190593 unique_id port 190593 remote_ip 10.8.0.114 190594 username akbari0070 190594 mac 190594 bytes_out 537306 190594 bytes_in 6105527 190594 station_ip 83.123.121.144 190594 port 429 190594 unique_id port 190594 remote_ip 10.8.0.166 190596 username pourshad 190596 mac 190596 bytes_out 591608 190596 bytes_in 752102 190596 station_ip 5.120.73.74 190596 port 427 190596 unique_id port 190596 remote_ip 10.8.0.42 190597 username naeimeh 190597 mac 190597 bytes_out 565473 190597 bytes_in 6742266 190597 station_ip 83.123.96.10 190597 port 436 190597 unique_id port 190597 remote_ip 10.8.0.78 190600 username saeeddamghani 190600 mac 190600 bytes_out 118994 190600 bytes_in 495359 190600 station_ip 217.60.218.82 190600 port 435 190600 unique_id port 190600 remote_ip 10.8.0.122 190601 username mostafa_es78 190601 kill_reason Another user logged on this global unique id 190601 mac 190601 bytes_out 0 190601 bytes_in 0 190601 station_ip 83.122.62.3 190601 port 426 190601 unique_id port 190601 remote_ip 10.8.0.34 190614 username mohammadjavad 190614 mac 190614 bytes_out 0 190614 bytes_in 0 190614 station_ip 83.123.30.98 190614 port 427 190614 unique_id port 190614 remote_ip 10.8.0.110 190616 username pourshad 190616 mac 190616 bytes_out 160291 190616 bytes_in 1356601 190616 station_ip 5.120.73.74 190616 port 429 190616 unique_id port 190616 remote_ip 10.8.0.42 190620 username motamedi9772 190620 mac 190620 bytes_out 0 190620 bytes_in 0 190620 station_ip 83.123.92.35 190620 port 400 190620 unique_id port 190620 remote_ip 10.8.0.154 190624 username esmaeilkazemi 190624 mac 190624 bytes_out 0 190624 bytes_in 0 190624 station_ip 83.123.33.107 190624 port 427 190624 unique_id port 190624 remote_ip 10.8.0.26 190626 username motamedi9772 190626 mac 190626 bytes_out 0 190626 bytes_in 0 190626 station_ip 83.123.92.35 190626 port 400 190626 unique_id port 190626 remote_ip 10.8.0.154 190629 username motamedi9772 190629 mac 190629 bytes_out 0 190629 bytes_in 0 190629 station_ip 83.123.92.35 190629 port 429 190629 unique_id port 190629 remote_ip 10.8.0.154 190631 username motamedi9772 190631 mac 190631 bytes_out 0 190631 bytes_in 0 190631 station_ip 83.123.92.35 190631 port 432 190631 unique_id port 190631 remote_ip 10.8.0.154 190634 username mohammadjavad 190634 mac 190634 bytes_out 76470 190634 bytes_in 259204 190634 station_ip 83.123.97.114 190634 port 427 190634 unique_id port 190634 remote_ip 10.8.0.110 190636 username motamedi9772 190636 mac 190636 bytes_out 0 190636 bytes_in 0 190636 station_ip 83.123.92.35 190636 port 429 190636 unique_id port 190636 remote_ip 10.8.0.154 190637 username esmaeilkazemi 190637 mac 190637 bytes_out 4481 190637 bytes_in 24840 190637 station_ip 83.123.33.107 190637 port 427 190637 unique_id port 190637 remote_ip 10.8.0.26 190642 username akbari0070 190642 mac 190642 bytes_out 1336159 190642 bytes_in 9219837 190642 station_ip 83.123.121.144 190642 port 426 190642 unique_id port 190642 remote_ip 10.8.0.166 190643 username motamedi9772 190635 remote_ip 10.8.0.42 190640 username motamedi9772 190640 mac 190640 bytes_out 0 190640 bytes_in 0 190640 station_ip 83.123.92.35 190640 port 427 190640 unique_id port 190640 remote_ip 10.8.0.154 190641 username motamedi9772 190641 mac 190641 bytes_out 0 190641 bytes_in 0 190641 station_ip 83.123.92.35 190641 port 427 190641 unique_id port 190641 remote_ip 10.8.0.154 190644 username motamedi9772 190644 mac 190644 bytes_out 0 190644 bytes_in 0 190644 station_ip 83.123.92.35 190644 port 426 190644 unique_id port 190644 remote_ip 10.8.0.154 190645 username dortaj3792 190645 mac 190645 bytes_out 41739 190645 bytes_in 57321 190645 station_ip 5.120.131.204 190645 port 427 190645 unique_id port 190645 remote_ip 10.8.0.102 190655 username rahim 190655 mac 190655 bytes_out 0 190655 bytes_in 0 190655 station_ip 86.57.124.117 190655 port 436 190655 unique_id port 190655 remote_ip 10.8.0.134 190658 username motamedi9772 190658 mac 190658 bytes_out 7838 190658 bytes_in 15926 190658 station_ip 83.123.92.35 190658 port 429 190658 unique_id port 190658 remote_ip 10.8.0.154 190662 username esmaeilkazemi 190662 mac 190662 bytes_out 3877 190662 bytes_in 12851 190662 station_ip 83.123.33.107 190662 port 429 190662 unique_id port 190662 remote_ip 10.8.0.26 190665 username mosi 190665 mac 190665 bytes_out 0 190665 bytes_in 0 190665 station_ip 89.32.108.96 190665 port 438 190665 unique_id port 190668 username motamedi9772 190668 mac 190668 bytes_out 0 190668 bytes_in 0 190668 station_ip 83.123.92.35 190668 port 427 190668 unique_id port 190668 remote_ip 10.8.0.154 190669 username nilufarrajaei 190669 mac 190669 bytes_out 1553221 190669 bytes_in 9889331 190669 station_ip 83.123.109.148 190669 port 425 190669 unique_id port 190669 remote_ip 10.8.0.194 190673 username motamedi9772 190673 mac 190673 bytes_out 0 190673 bytes_in 0 190673 station_ip 83.123.92.35 190673 port 429 190673 unique_id port 190673 remote_ip 10.8.0.154 190676 username motamedi9772 190676 mac 190676 bytes_out 0 190676 bytes_in 0 190676 station_ip 83.123.92.35 190676 port 429 190676 unique_id port 190676 remote_ip 10.8.0.154 190684 username khademi 190684 kill_reason Another user logged on this global unique id 190684 mac 190684 bytes_out 0 190684 bytes_in 0 190684 station_ip 83.123.42.254 190684 port 424 190684 unique_id port 190685 username motamedi9772 190685 mac 190685 bytes_out 0 190685 bytes_in 0 190685 station_ip 83.123.92.35 190685 port 426 190685 unique_id port 190685 remote_ip 10.8.0.154 190686 username motamedi9772 190686 mac 190686 bytes_out 0 190686 bytes_in 0 190686 station_ip 83.123.92.35 190686 port 426 190686 unique_id port 190686 remote_ip 10.8.0.154 190687 username motamedi9772 190687 mac 190687 bytes_out 0 190687 bytes_in 0 190687 station_ip 83.123.92.35 190687 port 426 190687 unique_id port 190687 remote_ip 10.8.0.154 190688 username pourshad 190688 mac 190688 bytes_out 2396418 190688 bytes_in 33095499 190688 station_ip 5.120.73.74 190688 port 429 190688 unique_id port 190688 remote_ip 10.8.0.42 190690 username fezealinaghi 190690 kill_reason Another user logged on this global unique id 190690 mac 190690 bytes_out 0 190690 bytes_in 0 190690 station_ip 83.123.123.250 190690 port 419 190690 unique_id port 190692 username motamedi9772 190692 mac 190692 bytes_out 19511 190692 bytes_in 47521 190692 station_ip 83.123.92.35 190692 port 429 190692 unique_id port 190692 remote_ip 10.8.0.154 190694 username houshang 190639 mac 190639 bytes_out 0 190639 bytes_in 0 190639 station_ip 83.123.92.35 190639 port 427 190639 unique_id port 190639 remote_ip 10.8.0.154 190646 username soleymani5056 190646 mac 190646 bytes_out 114711 190646 bytes_in 325941 190646 station_ip 5.120.111.219 190646 port 429 190646 unique_id port 190646 remote_ip 10.8.0.226 190649 username malekpoir 190649 kill_reason Another user logged on this global unique id 190649 mac 190649 bytes_out 0 190649 bytes_in 0 190649 station_ip 5.119.174.149 190649 port 430 190649 unique_id port 190650 username motamedi9772 190650 mac 190650 bytes_out 0 190650 bytes_in 0 190650 station_ip 83.123.92.35 190650 port 426 190650 unique_id port 190650 remote_ip 10.8.0.154 190651 username motamedi9772 190651 mac 190651 bytes_out 0 190651 bytes_in 0 190651 station_ip 83.123.92.35 190651 port 426 190651 unique_id port 190651 remote_ip 10.8.0.154 190656 username farhad3 190656 mac 190656 bytes_out 124369 190656 bytes_in 832310 190656 station_ip 5.120.61.225 190656 port 432 190656 unique_id port 190656 remote_ip 10.8.0.222 190659 username hosseine 190659 kill_reason Another user logged on this global unique id 190659 mac 190659 bytes_out 0 190659 bytes_in 0 190659 station_ip 83.123.109.117 190659 port 433 190659 unique_id port 190659 remote_ip 10.8.0.54 190660 username esmaeilkazemi 190660 mac 190660 bytes_out 0 190660 bytes_in 0 190660 station_ip 83.123.33.107 190660 port 436 190660 unique_id port 190660 remote_ip 10.8.0.26 190663 username charkhandaz3496 190663 mac 190663 bytes_out 388989 190663 bytes_in 3690718 190663 station_ip 5.120.24.176 190663 port 435 190663 unique_id port 190663 remote_ip 10.8.0.46 190664 username motamedi9772 190664 mac 190664 bytes_out 0 190664 bytes_in 0 190664 station_ip 83.123.92.35 190664 port 429 190664 unique_id port 190664 remote_ip 10.8.0.154 190666 username rajaei 190666 mac 190666 bytes_out 2614535 190666 bytes_in 35481313 190666 station_ip 5.62.200.5 190666 port 427 190666 unique_id port 190666 remote_ip 10.8.0.210 190667 username motamedi9772 190667 mac 190667 bytes_out 0 190667 bytes_in 0 190667 station_ip 83.123.92.35 190667 port 427 190667 unique_id port 190667 remote_ip 10.8.0.154 190671 username mosi 190671 mac 190671 bytes_out 10655 190671 bytes_in 10582 190671 station_ip 89.32.108.96 190671 port 429 190671 unique_id port 190671 remote_ip 10.8.0.142 190672 username motamedi9772 190672 mac 190672 bytes_out 0 190672 bytes_in 0 190672 station_ip 83.123.92.35 190672 port 429 190672 unique_id port 190672 remote_ip 10.8.0.154 190674 username motamedi9772 190674 mac 190674 bytes_out 0 190674 bytes_in 0 190674 station_ip 83.123.92.35 190674 port 429 190674 unique_id port 190674 remote_ip 10.8.0.154 190675 username motamedi9772 190675 mac 190675 bytes_out 0 190675 bytes_in 0 190675 station_ip 83.123.92.35 190675 port 429 190675 unique_id port 190675 remote_ip 10.8.0.154 190679 username motamedi9772 190679 mac 190679 bytes_out 0 190679 bytes_in 0 190679 station_ip 83.123.92.35 190679 port 426 190679 unique_id port 190679 remote_ip 10.8.0.154 190681 username farhad3 190681 mac 190681 bytes_out 409817 190681 bytes_in 2084275 190681 station_ip 5.120.61.225 190681 port 435 190681 unique_id port 190681 remote_ip 10.8.0.222 190689 username motamedi9772 190689 mac 190689 bytes_out 0 190689 bytes_in 0 190689 station_ip 83.123.92.35 190689 port 426 190689 unique_id port 190689 remote_ip 10.8.0.154 190691 username pourshad 190643 mac 190643 bytes_out 0 190643 bytes_in 0 190643 station_ip 83.123.92.35 190643 port 426 190643 unique_id port 190643 remote_ip 10.8.0.154 190647 username motamedi9772 190647 mac 190647 bytes_out 0 190647 bytes_in 0 190647 station_ip 83.123.92.35 190647 port 426 190647 unique_id port 190647 remote_ip 10.8.0.154 190648 username motamedi9772 190648 mac 190648 bytes_out 0 190648 bytes_in 0 190648 station_ip 83.123.92.35 190648 port 426 190648 unique_id port 190648 remote_ip 10.8.0.154 190652 username motamedi9772 190652 mac 190652 bytes_out 0 190652 bytes_in 0 190652 station_ip 83.123.92.35 190652 port 426 190652 unique_id port 190652 remote_ip 10.8.0.154 190653 username motamedi9772 190653 mac 190653 bytes_out 0 190653 bytes_in 0 190653 station_ip 83.123.92.35 190653 port 426 190653 unique_id port 190653 remote_ip 10.8.0.154 190654 username barzegar8595 190654 mac 190654 bytes_out 4110267 190654 bytes_in 40183109 190654 station_ip 46.225.215.117 190654 port 440 190654 unique_id port 190654 remote_ip 10.8.0.114 190657 username esmaeilkazemi 190657 mac 190657 bytes_out 0 190657 bytes_in 0 190657 station_ip 83.123.33.107 190657 port 432 190657 unique_id port 190657 remote_ip 10.8.0.26 190661 username motamedi9772 190661 mac 190661 bytes_out 0 190661 bytes_in 0 190661 station_ip 83.123.92.35 190661 port 432 190661 unique_id port 190661 remote_ip 10.8.0.154 190670 username motamedi9772 190670 mac 190670 bytes_out 0 190670 bytes_in 0 190670 station_ip 83.123.92.35 190670 port 425 190670 unique_id port 190670 remote_ip 10.8.0.154 190677 username motamedi9772 190677 mac 190677 bytes_out 0 190677 bytes_in 0 190677 station_ip 83.123.92.35 190677 port 429 190677 unique_id port 190677 remote_ip 10.8.0.154 190678 username pourshad 190678 mac 190678 bytes_out 419253 190678 bytes_in 3185713 190678 station_ip 5.120.73.74 190678 port 426 190678 unique_id port 190678 remote_ip 10.8.0.42 190680 username malekpoir 190680 mac 190680 bytes_out 0 190680 bytes_in 0 190680 station_ip 5.119.174.149 190680 port 430 190680 unique_id port 190682 username motamedi9772 190682 mac 190682 bytes_out 0 190682 bytes_in 0 190682 station_ip 83.123.92.35 190682 port 436 190682 unique_id port 190682 remote_ip 10.8.0.154 190683 username ahmadi1 190683 mac 190683 bytes_out 23309 190683 bytes_in 75393 190683 station_ip 83.123.32.255 190683 port 426 190683 unique_id port 190683 remote_ip 10.8.0.94 190693 username saeed9658 190693 mac 190693 bytes_out 362618 190693 bytes_in 2752107 190693 station_ip 5.119.206.111 190693 port 430 190693 unique_id port 190693 remote_ip 10.8.0.162 190695 username fezealinaghi 190695 kill_reason Another user logged on this global unique id 190695 mac 190695 bytes_out 0 190695 bytes_in 0 190695 station_ip 83.123.123.250 190695 port 419 190695 unique_id port 190697 username pourshad 190697 mac 190697 bytes_out 41393 190697 bytes_in 60986 190697 station_ip 5.120.73.74 190697 port 429 190697 unique_id port 190697 remote_ip 10.8.0.42 190698 username mostafa_es78 190698 mac 190698 bytes_out 3490595 190698 bytes_in 5802606 190698 station_ip 83.122.62.3 190698 port 426 190698 unique_id port 190698 remote_ip 10.8.0.34 190700 username godarzi 190700 mac 190700 bytes_out 0 190700 bytes_in 0 190700 station_ip 5.202.29.254 190700 port 431 190700 unique_id port 190701 username mohammadjavad 190701 mac 190701 bytes_out 940619 190701 bytes_in 9919122 190691 mac 190691 bytes_out 505663 190691 bytes_in 4343000 190691 station_ip 5.120.73.74 190691 port 435 190691 unique_id port 190691 remote_ip 10.8.0.42 190699 username fezealinaghi 190699 kill_reason Another user logged on this global unique id 190699 mac 190699 bytes_out 0 190699 bytes_in 0 190699 station_ip 83.123.123.250 190699 port 419 190699 unique_id port 190703 username nilufarrajaei 190703 mac 190703 bytes_out 560618 190703 bytes_in 2436506 190703 station_ip 83.123.109.148 190703 port 427 190703 unique_id port 190703 remote_ip 10.8.0.194 190704 username khaleghi2406 190704 mac 190704 bytes_out 1619624 190704 bytes_in 21407387 190704 station_ip 83.123.26.85 190704 port 432 190704 unique_id port 190704 remote_ip 10.8.0.218 190709 username aminvpn 190709 unique_id port 190709 terminate_cause Lost-Carrier 190709 bytes_out 366090 190709 bytes_in 1846438 190709 station_ip 83.123.16.90 190709 port 15729169 190709 nas_port_type Virtual 190709 remote_ip 5.5.5.72 190711 username rashidi4690 190711 kill_reason Another user logged on this global unique id 190711 mac 190711 bytes_out 0 190711 bytes_in 0 190711 station_ip 83.123.93.30 190711 port 431 190711 unique_id port 190711 remote_ip 10.8.0.242 190716 username nekheei 190716 mac 190716 bytes_out 736665 190716 bytes_in 876629 190716 station_ip 5.120.102.140 190716 port 427 190716 unique_id port 190716 remote_ip 10.8.0.74 190720 username motamedi9772 190720 kill_reason Another user logged on this global unique id 190720 mac 190720 bytes_out 0 190720 bytes_in 0 190720 station_ip 83.123.43.59 190720 port 429 190720 unique_id port 190720 remote_ip 10.8.0.154 190723 username godarzi 190723 mac 190723 bytes_out 582410 190723 bytes_in 6576826 190723 station_ip 5.120.134.207 190723 port 419 190723 unique_id port 190723 remote_ip 10.8.0.38 190724 username nekheei 190724 kill_reason Maximum check online fails reached 190724 mac 190724 bytes_out 0 190724 bytes_in 0 190724 station_ip 5.120.102.140 190724 port 427 190724 unique_id port 190727 username aminvpn 190727 unique_id port 190727 terminate_cause Lost-Carrier 190727 bytes_out 751379 190727 bytes_in 8782125 190727 station_ip 5.119.205.93 190727 port 15729172 190727 nas_port_type Virtual 190727 remote_ip 5.5.5.84 190728 username mohammadjavad 190728 mac 190728 bytes_out 0 190728 bytes_in 0 190728 station_ip 83.123.7.82 190728 port 439 190728 unique_id port 190728 remote_ip 10.8.0.110 190729 username khademi 190729 kill_reason Another user logged on this global unique id 190729 mac 190729 bytes_out 0 190729 bytes_in 0 190729 station_ip 83.123.42.254 190729 port 424 190729 unique_id port 190731 username alikomsari 190731 mac 190731 bytes_out 352301 190731 bytes_in 765187 190731 station_ip 5.119.159.224 190731 port 438 190731 unique_id port 190731 remote_ip 10.8.0.214 190734 username sabaghnezhad 190734 mac 190734 bytes_out 50245 190734 bytes_in 75785 190734 station_ip 5.106.71.148 190734 port 440 190734 unique_id port 190734 remote_ip 10.8.0.66 190736 username nekheei 190736 mac 190736 bytes_out 30866 190736 bytes_in 44776 190736 station_ip 5.120.102.140 190736 port 433 190736 unique_id port 190736 remote_ip 10.8.0.74 190739 username soleymani5056 190739 mac 190739 bytes_out 392733 190739 bytes_in 876146 190739 station_ip 5.119.105.90 190739 port 438 190739 unique_id port 190739 remote_ip 10.8.0.226 190741 username nekheei 190741 mac 190741 bytes_out 184480 190741 bytes_in 491046 190741 station_ip 5.120.102.140 190741 port 430 190741 unique_id port 190741 remote_ip 10.8.0.74 190746 username rashidi4690 190694 mac 190694 bytes_out 1531830 190694 bytes_in 11453643 190694 station_ip 5.119.73.122 190694 port 432 190694 unique_id port 190694 remote_ip 10.8.0.82 190696 username mosi 190696 mac 190696 bytes_out 110223 190696 bytes_in 149461 190696 station_ip 89.32.108.96 190696 port 425 190696 unique_id port 190696 remote_ip 10.8.0.142 190702 username rashidi4690 190702 mac 190702 bytes_out 4164886 190702 bytes_in 22655022 190702 station_ip 5.119.240.108 190702 port 400 190702 unique_id port 190702 remote_ip 10.8.0.242 190706 username khaleghi2406 190706 mac 190706 bytes_out 29138 190706 bytes_in 215520 190706 station_ip 83.123.26.85 190706 port 427 190706 unique_id port 190706 remote_ip 10.8.0.218 190707 username soleymani5056 190707 mac 190707 bytes_out 81146 190707 bytes_in 110908 190707 station_ip 5.120.92.14 190707 port 425 190707 unique_id port 190707 remote_ip 10.8.0.226 190710 username khaleghi2406 190710 mac 190710 bytes_out 404888 190710 bytes_in 4660640 190710 station_ip 83.123.26.85 190710 port 432 190710 unique_id port 190710 remote_ip 10.8.0.218 190712 username hadibarzegar 190712 mac 190712 bytes_out 0 190712 bytes_in 0 190712 station_ip 83.123.48.229 190712 port 427 190712 unique_id port 190712 remote_ip 10.8.0.174 190715 username fezealinaghi 190715 mac 190715 bytes_out 0 190715 bytes_in 0 190715 station_ip 83.123.123.250 190715 port 419 190715 unique_id port 190717 username nekheei 190717 mac 190717 bytes_out 0 190717 bytes_in 0 190717 station_ip 5.120.102.140 190717 port 438 190717 unique_id port 190717 remote_ip 10.8.0.74 190718 username nekheei 190718 mac 190718 bytes_out 14125 190718 bytes_in 31030 190718 station_ip 5.120.102.140 190718 port 427 190718 unique_id port 190718 remote_ip 10.8.0.74 190721 username mosi 190721 mac 190721 bytes_out 490598 190721 bytes_in 905377 190721 station_ip 89.32.108.96 190721 port 430 190721 unique_id port 190721 remote_ip 10.8.0.142 190722 username naeimeh 190722 mac 190722 bytes_out 1240917 190722 bytes_in 13603699 190722 station_ip 83.123.72.62 190722 port 433 190722 unique_id port 190722 remote_ip 10.8.0.78 190725 username rashidi4690 190725 kill_reason Another user logged on this global unique id 190725 mac 190725 bytes_out 0 190725 bytes_in 0 190725 station_ip 83.123.93.30 190725 port 431 190725 unique_id port 190726 username naeimeh 190726 mac 190726 bytes_out 314068 190726 bytes_in 3667483 190726 station_ip 83.123.72.62 190726 port 430 190726 unique_id port 190726 remote_ip 10.8.0.78 190730 username rashidi4690 190730 kill_reason Another user logged on this global unique id 190730 mac 190730 bytes_out 0 190730 bytes_in 0 190730 station_ip 83.123.93.30 190730 port 431 190730 unique_id port 190732 username tahmorsi 190732 mac 190732 bytes_out 1529055 190732 bytes_in 16727383 190732 station_ip 86.57.71.161 190732 port 432 190732 unique_id port 190732 remote_ip 10.8.0.6 190737 username hatami 190737 mac 190737 bytes_out 899420 190737 bytes_in 8213509 190737 station_ip 37.27.43.246 190737 port 436 190737 unique_id port 190737 remote_ip 10.8.0.98 190740 username motamedi9772 190740 mac 190740 bytes_out 0 190740 bytes_in 0 190740 station_ip 83.123.43.59 190740 port 429 190740 unique_id port 190743 username soleymani5056 190743 mac 190743 bytes_out 51548 190743 bytes_in 70021 190743 station_ip 5.119.146.232 190743 port 436 190743 unique_id port 190743 remote_ip 10.8.0.226 190744 username mosi 190744 mac 190744 bytes_out 60939 190701 station_ip 83.123.7.82 190701 port 425 190701 unique_id port 190701 remote_ip 10.8.0.110 190705 username fezealinaghi 190705 kill_reason Another user logged on this global unique id 190705 mac 190705 bytes_out 0 190705 bytes_in 0 190705 station_ip 83.123.123.250 190705 port 419 190705 unique_id port 190708 username mohammadjavad 190708 mac 190708 bytes_out 129070 190708 bytes_in 1799698 190708 station_ip 83.123.7.82 190708 port 425 190708 unique_id port 190708 remote_ip 10.8.0.110 190713 username hosseine 190713 mac 190713 bytes_out 0 190713 bytes_in 0 190713 station_ip 83.123.109.117 190713 port 433 190713 unique_id port 190714 username khademi 190714 kill_reason Another user logged on this global unique id 190714 mac 190714 bytes_out 0 190714 bytes_in 0 190714 station_ip 83.123.42.254 190714 port 424 190714 unique_id port 190719 username fezealinaghi 190719 mac 190719 bytes_out 715977 190719 bytes_in 8149699 190719 station_ip 83.123.123.250 190719 port 436 190719 unique_id port 190719 remote_ip 10.8.0.202 190733 username yaghobi 190733 mac 190733 bytes_out 413472 190733 bytes_in 905702 190733 station_ip 83.123.23.37 190733 port 433 190733 unique_id port 190733 remote_ip 10.8.0.138 190735 username nekheei 190735 mac 190735 bytes_out 463875 190735 bytes_in 827512 190735 station_ip 5.120.102.140 190735 port 430 190735 unique_id port 190735 remote_ip 10.8.0.74 190738 username alirezaza 190738 unique_id port 190738 terminate_cause Lost-Carrier 190738 bytes_out 511521 190738 bytes_in 6592691 190738 station_ip 5.119.53.53 190738 port 15729171 190738 nas_port_type Virtual 190738 remote_ip 5.5.5.71 190742 username rashidi4690 190742 kill_reason Another user logged on this global unique id 190742 mac 190742 bytes_out 0 190742 bytes_in 0 190742 station_ip 83.123.93.30 190742 port 431 190742 unique_id port 190745 username kalantary6037 190745 mac 190745 bytes_out 1874005 190745 bytes_in 20886264 190745 station_ip 83.123.123.145 190745 port 433 190745 unique_id port 190745 remote_ip 10.8.0.50 190748 username yaghobi 190748 mac 190748 bytes_out 656878 190748 bytes_in 1111685 190748 station_ip 83.123.23.37 190748 port 432 190748 unique_id port 190748 remote_ip 10.8.0.138 190750 username khaleghi2406 190750 mac 190750 bytes_out 60819 190750 bytes_in 68104 190750 station_ip 83.123.26.85 190750 port 425 190750 unique_id port 190750 remote_ip 10.8.0.218 190755 username rashidi4690 190755 kill_reason Another user logged on this global unique id 190755 mac 190755 bytes_out 0 190755 bytes_in 0 190755 station_ip 83.123.93.30 190755 port 431 190755 unique_id port 190758 username houshang 190758 mac 190758 bytes_out 167887 190758 bytes_in 158521 190758 station_ip 5.120.151.17 190758 port 430 190758 unique_id port 190758 remote_ip 10.8.0.82 190767 username nekheei 190767 kill_reason Another user logged on this global unique id 190767 mac 190767 bytes_out 0 190767 bytes_in 0 190767 station_ip 5.120.102.140 190767 port 439 190767 unique_id port 190767 remote_ip 10.8.0.74 190769 username rashidi4690 190769 kill_reason Another user logged on this global unique id 190769 mac 190769 bytes_out 0 190769 bytes_in 0 190769 station_ip 83.123.93.30 190769 port 431 190769 unique_id port 190770 username mostafa_es78 190770 kill_reason Another user logged on this global unique id 190770 mac 190770 bytes_out 0 190770 bytes_in 0 190770 station_ip 83.122.62.3 190770 port 426 190770 unique_id port 190770 remote_ip 10.8.0.34 190772 username aminvpn 190772 unique_id port 190772 terminate_cause Lost-Carrier 190772 bytes_out 3529326 190772 bytes_in 70092675 190744 bytes_in 113312 190744 station_ip 89.32.108.96 190744 port 419 190744 unique_id port 190744 remote_ip 10.8.0.142 190747 username mohammadjavad 190747 mac 190747 bytes_out 585928 190747 bytes_in 9166036 190747 station_ip 83.123.7.82 190747 port 429 190747 unique_id port 190747 remote_ip 10.8.0.110 190751 username aminvpn 190751 unique_id port 190751 terminate_cause Lost-Carrier 190751 bytes_out 3415645 190751 bytes_in 62987005 190751 station_ip 46.100.217.46 190751 port 15729174 190751 nas_port_type Virtual 190751 remote_ip 5.5.5.164 190757 username nekheei 190757 mac 190757 bytes_out 1172908 190757 bytes_in 13263280 190757 station_ip 5.120.102.140 190757 port 433 190757 unique_id port 190757 remote_ip 10.8.0.74 190759 username yaghobi 190759 mac 190759 bytes_out 1562530 190759 bytes_in 14202679 190759 station_ip 83.123.66.40 190759 port 425 190759 unique_id port 190759 remote_ip 10.8.0.138 190760 username mosi 190760 mac 190760 bytes_out 185698 190760 bytes_in 199104 190760 station_ip 89.32.108.96 190760 port 419 190760 unique_id port 190760 remote_ip 10.8.0.142 190762 username rashidi4690 190762 kill_reason Another user logged on this global unique id 190762 mac 190762 bytes_out 0 190762 bytes_in 0 190762 station_ip 83.123.93.30 190762 port 431 190762 unique_id port 190765 username shadkam 190765 mac 190765 bytes_out 0 190765 bytes_in 0 190765 station_ip 91.73.62.30 190765 port 425 190765 unique_id port 190765 remote_ip 10.8.0.186 190774 username kamali3 190774 mac 190774 bytes_out 542359 190774 bytes_in 6225151 190774 station_ip 83.123.4.166 190774 port 419 190774 unique_id port 190774 remote_ip 10.8.0.150 190776 username shadkam 190776 mac 190776 bytes_out 39833 190776 bytes_in 62042 190776 station_ip 91.73.62.30 190776 port 430 190776 unique_id port 190776 remote_ip 10.8.0.186 190778 username pourshad 190778 mac 190778 bytes_out 472815 190778 bytes_in 9497392 190778 station_ip 5.120.73.74 190778 port 425 190778 unique_id port 190778 remote_ip 10.8.0.42 190780 username nekheei 190780 mac 190780 bytes_out 2595 190780 bytes_in 4239 190780 station_ip 5.120.102.140 190780 port 400 190780 unique_id port 190780 remote_ip 10.8.0.74 190783 username rashidi4690 190783 kill_reason Another user logged on this global unique id 190783 mac 190783 bytes_out 0 190783 bytes_in 0 190783 station_ip 83.123.90.11 190783 port 419 190783 unique_id port 190783 remote_ip 10.8.0.242 190784 username mosi 190784 mac 190784 bytes_out 94740 190784 bytes_in 81006 190784 station_ip 89.32.108.96 190784 port 429 190784 unique_id port 190784 remote_ip 10.8.0.142 190790 username charkhandaz3496 190790 mac 190790 bytes_out 0 190790 bytes_in 0 190790 station_ip 5.120.24.176 190790 port 435 190790 unique_id port 190790 remote_ip 10.8.0.46 190793 username pourshad 190793 mac 190793 bytes_out 364627 190793 bytes_in 328308 190793 station_ip 5.120.73.74 190793 port 425 190793 unique_id port 190793 remote_ip 10.8.0.42 190795 username nekheei 190795 mac 190795 bytes_out 391888 190795 bytes_in 5292912 190795 station_ip 5.120.102.140 190795 port 435 190795 unique_id port 190795 remote_ip 10.8.0.74 190801 username nekheei 190801 kill_reason Another user logged on this global unique id 190801 mac 190801 bytes_out 0 190801 bytes_in 0 190801 station_ip 5.120.102.140 190801 port 439 190801 unique_id port 190801 remote_ip 10.8.0.74 190802 username mostafa_es78 190802 mac 190802 bytes_out 0 190802 bytes_in 0 190802 station_ip 83.122.62.3 190802 port 426 190746 kill_reason Another user logged on this global unique id 190746 mac 190746 bytes_out 0 190746 bytes_in 0 190746 station_ip 83.123.93.30 190746 port 431 190746 unique_id port 190749 username nilufarrajaei 190749 mac 190749 bytes_out 2532535 190749 bytes_in 14736998 190749 station_ip 83.123.109.148 190749 port 400 190749 unique_id port 190749 remote_ip 10.8.0.194 190752 username khalili2 190752 kill_reason Another user logged on this global unique id 190752 mac 190752 bytes_out 0 190752 bytes_in 0 190752 station_ip 5.119.199.49 190752 port 423 190752 unique_id port 190753 username nekheei 190753 mac 190753 bytes_out 0 190753 bytes_in 0 190753 station_ip 5.120.102.140 190753 port 433 190753 unique_id port 190753 remote_ip 10.8.0.74 190754 username nekheei 190754 mac 190754 bytes_out 0 190754 bytes_in 0 190754 station_ip 5.120.102.140 190754 port 436 190754 unique_id port 190754 remote_ip 10.8.0.74 190756 username mohammadjavad 190756 mac 190756 bytes_out 1694 190756 bytes_in 3987 190756 station_ip 83.123.7.82 190756 port 439 190756 unique_id port 190756 remote_ip 10.8.0.110 190761 username kalantary6037 190761 mac 190761 bytes_out 3654520 190761 bytes_in 48251905 190761 station_ip 83.123.123.145 190761 port 429 190761 unique_id port 190761 remote_ip 10.8.0.50 190763 username shadkam 190763 mac 190763 bytes_out 4162795 190763 bytes_in 1072342 190763 station_ip 91.73.62.30 190763 port 419 190763 unique_id port 190763 remote_ip 10.8.0.186 190764 username pourshad 190764 mac 190764 bytes_out 662455 190764 bytes_in 1268367 190764 station_ip 5.120.73.74 190764 port 435 190764 unique_id port 190764 remote_ip 10.8.0.42 190766 username aminvpn 190766 unique_id port 190766 terminate_cause Lost-Carrier 190766 bytes_out 283081 190766 bytes_in 1547149 190766 station_ip 83.123.16.90 190766 port 15729175 190766 nas_port_type Virtual 190766 remote_ip 5.5.5.72 190768 username shadkam 190768 mac 190768 bytes_out 1680 190768 bytes_in 4018 190768 station_ip 91.73.62.30 190768 port 419 190768 unique_id port 190768 remote_ip 10.8.0.186 190771 username rashidi4690 190771 mac 190771 bytes_out 0 190771 bytes_in 0 190771 station_ip 83.123.93.30 190771 port 431 190771 unique_id port 190773 username shadkam 190773 mac 190773 bytes_out 6482778 190773 bytes_in 261574 190773 station_ip 91.73.62.30 190773 port 430 190773 unique_id port 190773 remote_ip 10.8.0.186 190775 username nekheei 190775 kill_reason Another user logged on this global unique id 190775 mac 190775 bytes_out 0 190775 bytes_in 0 190775 station_ip 5.120.102.140 190775 port 439 190775 unique_id port 190777 username nilufarrajaei 190777 mac 190777 bytes_out 1230994 190777 bytes_in 3485865 190777 station_ip 83.123.109.148 190777 port 400 190777 unique_id port 190777 remote_ip 10.8.0.194 190781 username nekheei 190781 mac 190781 bytes_out 0 190781 bytes_in 0 190781 station_ip 5.120.102.140 190781 port 431 190781 unique_id port 190781 remote_ip 10.8.0.74 190782 username shadkam 190782 mac 190782 bytes_out 6880 190782 bytes_in 39399 190782 station_ip 91.73.36.94 190782 port 400 190782 unique_id port 190782 remote_ip 10.8.0.186 190788 username nekheei 190788 kill_reason Another user logged on this global unique id 190788 mac 190788 bytes_out 0 190788 bytes_in 0 190788 station_ip 5.120.102.140 190788 port 431 190788 unique_id port 190788 remote_ip 10.8.0.74 190789 username shadkam 190789 mac 190789 bytes_out 2098 190789 bytes_in 4688 190789 station_ip 91.73.54.222 190789 port 435 190772 station_ip 5.119.205.93 190772 port 15729176 190772 nas_port_type Virtual 190772 remote_ip 5.5.5.84 190779 username nekheei 190779 mac 190779 bytes_out 0 190779 bytes_in 0 190779 station_ip 5.120.102.140 190779 port 439 190779 unique_id port 190785 username shadkam 190785 mac 190785 bytes_out 2151 190785 bytes_in 4476 190785 station_ip 91.73.36.94 190785 port 435 190785 unique_id port 190785 remote_ip 10.8.0.186 190786 username charkhandaz3496 190786 mac 190786 bytes_out 4341918 190786 bytes_in 40074469 190786 station_ip 5.120.24.176 190786 port 436 190786 unique_id port 190786 remote_ip 10.8.0.46 190787 username shadkam 190787 mac 190787 bytes_out 2151 190787 bytes_in 4741 190787 station_ip 91.73.54.222 190787 port 435 190787 unique_id port 190787 remote_ip 10.8.0.186 190791 username fezealinaghi 190791 kill_reason Another user logged on this global unique id 190791 mac 190791 bytes_out 0 190791 bytes_in 0 190791 station_ip 83.123.16.254 190791 port 433 190791 unique_id port 190791 remote_ip 10.8.0.202 190792 username nekheei 190792 mac 190792 bytes_out 0 190792 bytes_in 0 190792 station_ip 5.120.102.140 190792 port 431 190792 unique_id port 190794 username rashidi4690 190794 kill_reason Another user logged on this global unique id 190794 mac 190794 bytes_out 0 190794 bytes_in 0 190794 station_ip 83.123.90.11 190794 port 419 190794 unique_id port 190797 username shadkam 190797 mac 190797 bytes_out 17734 190797 bytes_in 27042 190797 station_ip 91.73.54.222 190797 port 425 190797 unique_id port 190797 remote_ip 10.8.0.186 190806 username shadkam 190806 mac 190806 bytes_out 2502 190806 bytes_in 6350 190806 station_ip 91.73.54.94 190806 port 426 190806 unique_id port 190806 remote_ip 10.8.0.186 190813 username fezealinaghi 190813 kill_reason Another user logged on this global unique id 190813 mac 190813 bytes_out 0 190813 bytes_in 0 190813 station_ip 83.123.16.254 190813 port 433 190813 unique_id port 190814 username shadkam 190814 mac 190814 bytes_out 7582 190814 bytes_in 14460 190814 station_ip 91.73.7.94 190814 port 439 190814 unique_id port 190814 remote_ip 10.8.0.186 190815 username aminvpn 190815 mac 190815 bytes_out 1978614 190815 bytes_in 13640933 190815 station_ip 5.120.40.203 190815 port 425 190815 unique_id port 190815 remote_ip 10.8.0.58 190819 username pourshad 190819 mac 190819 bytes_out 32163 190819 bytes_in 74758 190819 station_ip 5.120.73.74 190819 port 426 190819 unique_id port 190819 remote_ip 10.8.0.42 190823 username mosi 190823 mac 190823 bytes_out 400826 190823 bytes_in 1110846 190823 station_ip 89.32.108.96 190823 port 429 190823 unique_id port 190823 remote_ip 10.8.0.142 190824 username arash 190824 mac 190824 bytes_out 1322051 190824 bytes_in 10588953 190824 station_ip 37.27.14.252 190824 port 400 190824 unique_id port 190824 remote_ip 10.8.0.250 190826 username akbari0070 190826 mac 190826 bytes_out 84140 190826 bytes_in 161940 190826 station_ip 83.123.40.156 190826 port 441 190826 unique_id port 190826 remote_ip 10.8.0.166 190828 username fezealinaghi 190828 kill_reason Another user logged on this global unique id 190828 mac 190828 bytes_out 0 190828 bytes_in 0 190828 station_ip 83.123.16.254 190828 port 433 190828 unique_id port 190829 username nekheei 190829 mac 190829 bytes_out 820717 190829 bytes_in 11651728 190829 station_ip 5.120.102.140 190829 port 426 190829 unique_id port 190829 remote_ip 10.8.0.74 190830 username houshang 190830 mac 190830 bytes_out 468015 190789 unique_id port 190789 remote_ip 10.8.0.186 190796 username pourshad 190796 mac 190796 bytes_out 3642 190796 bytes_in 7018 190796 station_ip 5.120.73.74 190796 port 436 190796 unique_id port 190796 remote_ip 10.8.0.42 190798 username shadkam 190798 mac 190798 bytes_out 2268 190798 bytes_in 4540 190798 station_ip 91.73.54.222 190798 port 425 190798 unique_id port 190798 remote_ip 10.8.0.186 190799 username fezealinaghi 190799 kill_reason Another user logged on this global unique id 190799 mac 190799 bytes_out 0 190799 bytes_in 0 190799 station_ip 83.123.16.254 190799 port 433 190799 unique_id port 190800 username pourshad 190800 mac 190800 bytes_out 332573 190800 bytes_in 5472961 190800 station_ip 5.120.73.74 190800 port 435 190800 unique_id port 190800 remote_ip 10.8.0.42 190803 username shadkam 190803 mac 190803 bytes_out 14484 190803 bytes_in 89642 190803 station_ip 91.73.54.94 190803 port 440 190803 unique_id port 190803 remote_ip 10.8.0.186 190804 username rashidi4690 190804 kill_reason Another user logged on this global unique id 190804 mac 190804 bytes_out 0 190804 bytes_in 0 190804 station_ip 83.123.90.11 190804 port 419 190804 unique_id port 190805 username pourshad 190805 mac 190805 bytes_out 24383 190805 bytes_in 28009 190805 station_ip 5.120.73.74 190805 port 436 190805 unique_id port 190805 remote_ip 10.8.0.42 190807 username dortaj3792 190807 mac 190807 bytes_out 605535 190807 bytes_in 1910239 190807 station_ip 5.120.131.204 190807 port 431 190807 unique_id port 190807 remote_ip 10.8.0.102 190810 username nekheei 190810 mac 190810 bytes_out 0 190810 bytes_in 0 190810 station_ip 5.120.102.140 190810 port 439 190810 unique_id port 190811 username saeed9658 190811 kill_reason Another user logged on this global unique id 190811 mac 190811 bytes_out 0 190811 bytes_in 0 190811 station_ip 5.119.206.111 190811 port 400 190811 unique_id port 190811 remote_ip 10.8.0.162 190812 username saeed9658 190812 mac 190812 bytes_out 0 190812 bytes_in 0 190812 station_ip 5.119.206.111 190812 port 400 190812 unique_id port 190816 username dortaj3792 190816 mac 190816 bytes_out 140773 190816 bytes_in 132746 190816 station_ip 5.120.131.204 190816 port 431 190816 unique_id port 190816 remote_ip 10.8.0.102 190822 username kalantary6037 190822 mac 190822 bytes_out 596645 190822 bytes_in 5049249 190822 station_ip 83.123.123.145 190822 port 435 190822 unique_id port 190822 remote_ip 10.8.0.50 190832 username sabaghnezhad 190832 mac 190832 bytes_out 44836 190832 bytes_in 31292 190832 station_ip 5.106.71.148 190832 port 429 190832 unique_id port 190832 remote_ip 10.8.0.66 190833 username hatami 190833 mac 190833 bytes_out 352797 190833 bytes_in 2745359 190833 station_ip 151.235.102.98 190833 port 425 190833 unique_id port 190833 remote_ip 10.8.0.98 190835 username nekheei 190835 mac 190835 bytes_out 1779714 190835 bytes_in 13803767 190835 station_ip 5.120.102.140 190835 port 419 190835 unique_id port 190835 remote_ip 10.8.0.74 190836 username soleymani5056 190836 mac 190836 bytes_out 303419 190836 bytes_in 957055 190836 station_ip 5.120.38.235 190836 port 439 190836 unique_id port 190836 remote_ip 10.8.0.226 190838 username saeed9658 190838 mac 190838 bytes_out 0 190838 bytes_in 0 190838 station_ip 5.119.206.111 190838 port 431 190838 unique_id port 190838 remote_ip 10.8.0.162 190839 username dortaj3792 190839 mac 190839 bytes_out 128532 190839 bytes_in 544099 190839 station_ip 5.120.131.204 190839 port 425 190802 unique_id port 190808 username pourshad 190808 mac 190808 bytes_out 6190 190808 bytes_in 4347 190808 station_ip 5.120.73.74 190808 port 440 190808 unique_id port 190808 remote_ip 10.8.0.42 190809 username nilufarrajaei 190809 mac 190809 bytes_out 462471 190809 bytes_in 2018308 190809 station_ip 83.123.67.76 190809 port 435 190809 unique_id port 190809 remote_ip 10.8.0.194 190817 username nekheei 190817 mac 190817 bytes_out 1934899 190817 bytes_in 24294780 190817 station_ip 5.120.102.140 190817 port 435 190817 unique_id port 190817 remote_ip 10.8.0.74 190818 username kalantary6037 190818 mac 190818 bytes_out 433577 190818 bytes_in 2020537 190818 station_ip 83.123.123.145 190818 port 425 190818 unique_id port 190818 remote_ip 10.8.0.50 190820 username godarzi 190820 mac 190820 bytes_out 4450690 190820 bytes_in 30199345 190820 station_ip 5.119.31.248 190820 port 438 190820 unique_id port 190820 remote_ip 10.8.0.38 190821 username nekheei 190821 mac 190821 bytes_out 685884 190821 bytes_in 10130226 190821 station_ip 5.120.102.140 190821 port 440 190821 unique_id port 190821 remote_ip 10.8.0.74 190825 username nilufarrajaei 190825 kill_reason Another user logged on this global unique id 190825 mac 190825 bytes_out 0 190825 bytes_in 0 190825 station_ip 83.123.67.76 190825 port 436 190825 unique_id port 190825 remote_ip 10.8.0.194 190827 username rashidi4690 190827 mac 190827 bytes_out 0 190827 bytes_in 0 190827 station_ip 83.123.90.11 190827 port 419 190827 unique_id port 190834 username kalantary6037 190834 mac 190834 bytes_out 302464 190834 bytes_in 2339966 190834 station_ip 83.123.123.145 190834 port 442 190834 unique_id port 190834 remote_ip 10.8.0.50 190837 username fezealinaghi 190837 kill_reason Another user logged on this global unique id 190837 mac 190837 bytes_out 0 190837 bytes_in 0 190837 station_ip 83.123.16.254 190837 port 433 190837 unique_id port 190840 username alirezaza 190840 unique_id port 190840 terminate_cause Lost-Carrier 190840 bytes_out 573336 190840 bytes_in 22834429 190840 station_ip 5.120.130.192 190840 port 15729179 190840 nas_port_type Virtual 190840 remote_ip 5.5.5.69 190842 username shadkam 190842 mac 190842 bytes_out 7714 190842 bytes_in 13710 190842 station_ip 91.73.7.94 190842 port 425 190842 unique_id port 190842 remote_ip 10.8.0.186 190844 username nekheei 190844 kill_reason Another user logged on this global unique id 190844 mac 190844 bytes_out 0 190844 bytes_in 0 190844 station_ip 5.120.102.140 190844 port 419 190844 unique_id port 190844 remote_ip 10.8.0.74 190846 username fezealinaghi 190846 kill_reason Another user logged on this global unique id 190846 mac 190846 bytes_out 0 190846 bytes_in 0 190846 station_ip 83.123.16.254 190846 port 433 190846 unique_id port 190847 username nekheei 190847 mac 190847 bytes_out 0 190847 bytes_in 0 190847 station_ip 5.120.102.140 190847 port 419 190847 unique_id port 190848 username aminvpn 190848 mac 190848 bytes_out 60641 190848 bytes_in 137368 190848 station_ip 5.120.40.203 190848 port 431 190848 unique_id port 190848 remote_ip 10.8.0.58 190851 username khaleghi2406 190851 mac 190851 bytes_out 0 190851 bytes_in 0 190851 station_ip 83.123.26.85 190851 port 431 190851 unique_id port 190851 remote_ip 10.8.0.218 190852 username nekheei 190852 mac 190852 bytes_out 2613312 190852 bytes_in 27562125 190852 station_ip 5.120.102.140 190852 port 426 190852 unique_id port 190852 remote_ip 10.8.0.74 190853 username khaleghi2406 190853 mac 190853 bytes_out 29935 190853 bytes_in 19681 190830 bytes_in 2009316 190830 station_ip 5.119.175.158 190830 port 431 190830 unique_id port 190830 remote_ip 10.8.0.82 190831 username nilufarrajaei 190831 mac 190831 bytes_out 0 190831 bytes_in 0 190831 station_ip 83.123.67.76 190831 port 436 190831 unique_id port 190843 username nilufarrajaei 190843 mac 190843 bytes_out 214126 190843 bytes_in 568788 190843 station_ip 83.123.67.76 190843 port 426 190843 unique_id port 190843 remote_ip 10.8.0.194 190845 username kalantary6037 190845 mac 190845 bytes_out 946404 190845 bytes_in 6616210 190845 station_ip 83.123.123.145 190845 port 429 190845 unique_id port 190845 remote_ip 10.8.0.50 190856 username rajaei 190856 mac 190856 bytes_out 1468894 190856 bytes_in 12346815 190856 station_ip 94.24.82.192 190856 port 419 190856 unique_id port 190856 remote_ip 10.8.0.210 190858 username shadkam 190858 mac 190858 bytes_out 2971 190858 bytes_in 4616 190858 station_ip 91.73.5.222 190858 port 419 190858 unique_id port 190858 remote_ip 10.8.0.186 190861 username fezealinaghi 190861 mac 190861 bytes_out 0 190861 bytes_in 0 190861 station_ip 83.123.16.254 190861 port 433 190861 unique_id port 190863 username kalantary6037 190863 mac 190863 bytes_out 32737 190863 bytes_in 81600 190863 station_ip 83.123.123.145 190863 port 435 190863 unique_id port 190863 remote_ip 10.8.0.50 190871 username akbari0070 190871 mac 190871 bytes_out 50334 190871 bytes_in 75553 190871 station_ip 83.123.25.140 190871 port 419 190871 unique_id port 190871 remote_ip 10.8.0.166 190877 username mosi 190877 mac 190877 bytes_out 728194 190877 bytes_in 3740749 190877 station_ip 89.32.108.96 190877 port 400 190877 unique_id port 190877 remote_ip 10.8.0.142 190878 username khaleghi2406 190878 mac 190878 bytes_out 76657 190878 bytes_in 44785 190878 station_ip 83.123.26.85 190878 port 432 190878 unique_id port 190878 remote_ip 10.8.0.218 190880 username pourshad 190880 mac 190880 bytes_out 79474 190880 bytes_in 543089 190880 station_ip 5.120.73.74 190880 port 431 190880 unique_id port 190880 remote_ip 10.8.0.42 190883 username yaghobi 190883 mac 190883 bytes_out 313015 190883 bytes_in 596271 190883 station_ip 83.123.116.60 190883 port 438 190883 unique_id port 190883 remote_ip 10.8.0.138 190887 username malekpoir 190887 mac 190887 bytes_out 2793260 190887 bytes_in 19653548 190887 station_ip 5.119.143.18 190887 port 426 190887 unique_id port 190887 remote_ip 10.8.0.18 190890 username khademi 190890 kill_reason Another user logged on this global unique id 190890 mac 190890 bytes_out 0 190890 bytes_in 0 190890 station_ip 83.123.42.254 190890 port 424 190890 unique_id port 190893 username aminvpn 190893 unique_id port 190893 terminate_cause User-Request 190893 bytes_out 39178994 190893 bytes_in 1246010125 190893 station_ip 31.57.124.113 190893 port 15729177 190893 nas_port_type Virtual 190893 remote_ip 5.5.5.70 190895 username shadkam 190895 mac 190895 bytes_out 48082 190895 bytes_in 30557 190895 station_ip 91.73.66.15 190895 port 436 190895 unique_id port 190895 remote_ip 10.8.0.186 190898 username nilufarrajaei 190898 mac 190898 bytes_out 286418 190898 bytes_in 1275031 190898 station_ip 83.123.67.76 190898 port 425 190898 unique_id port 190898 remote_ip 10.8.0.194 190900 username fezealinaghi 190900 mac 190900 bytes_out 3119176 190900 bytes_in 45568579 190900 station_ip 83.123.1.230 190900 port 435 190900 unique_id port 190900 remote_ip 10.8.0.202 190901 username dortaj3792 190901 mac 190901 bytes_out 1033624 190839 unique_id port 190839 remote_ip 10.8.0.102 190841 username godarzi 190841 mac 190841 bytes_out 1160971 190841 bytes_in 9732487 190841 station_ip 5.119.31.248 190841 port 440 190841 unique_id port 190841 remote_ip 10.8.0.38 190849 username khaleghi2406 190849 mac 190849 bytes_out 1040482 190849 bytes_in 8703332 190849 station_ip 83.123.26.85 190849 port 432 190849 unique_id port 190849 remote_ip 10.8.0.218 190850 username kalantary6037 190850 mac 190850 bytes_out 37564 190850 bytes_in 38734 190850 station_ip 83.123.123.145 190850 port 435 190850 unique_id port 190850 remote_ip 10.8.0.50 190854 username aminvpn 190854 mac 190854 bytes_out 0 190854 bytes_in 0 190854 station_ip 5.120.40.203 190854 port 435 190854 unique_id port 190854 remote_ip 10.8.0.58 190855 username pourshad 190855 mac 190855 bytes_out 23539487 190855 bytes_in 16568781 190855 station_ip 5.120.73.74 190855 port 438 190855 unique_id port 190855 remote_ip 10.8.0.42 190857 username nekheei 190857 mac 190857 bytes_out 2234915 190857 bytes_in 23542194 190857 station_ip 5.120.102.140 190857 port 431 190857 unique_id port 190857 remote_ip 10.8.0.74 190864 username shadkam 190864 mac 190864 bytes_out 0 190864 bytes_in 0 190864 station_ip 5.30.11.97 190864 port 439 190864 unique_id port 190864 remote_ip 10.8.0.186 190865 username pourshad 190865 mac 190865 bytes_out 43095 190865 bytes_in 42029 190865 station_ip 5.120.73.74 190865 port 419 190865 unique_id port 190865 remote_ip 10.8.0.42 190869 username fezealinaghi 190869 mac 190869 bytes_out 87733 190869 bytes_in 222115 190869 station_ip 83.123.16.254 190869 port 431 190869 unique_id port 190869 remote_ip 10.8.0.202 190870 username yaghobi 190870 mac 190870 bytes_out 1158432 190870 bytes_in 6939725 190870 station_ip 83.123.14.159 190870 port 440 190870 unique_id port 190870 remote_ip 10.8.0.138 190872 username motamedi9772 190872 kill_reason Another user logged on this global unique id 190872 mac 190872 bytes_out 0 190872 bytes_in 0 190872 station_ip 83.123.93.231 190872 port 429 190872 unique_id port 190872 remote_ip 10.8.0.154 190873 username hosseine 190873 mac 190873 bytes_out 2473455 190873 bytes_in 32435269 190873 station_ip 83.123.109.117 190873 port 438 190873 unique_id port 190873 remote_ip 10.8.0.54 190874 username alirezaza 190874 unique_id port 190874 terminate_cause User-Request 190874 bytes_out 260 190874 bytes_in 222 190874 station_ip 5.120.148.121 190874 port 15729181 190874 nas_port_type Virtual 190874 remote_ip 5.5.5.68 190879 username kalantary6037 190879 mac 190879 bytes_out 12030 190879 bytes_in 23018 190879 station_ip 83.123.80.101 190879 port 400 190879 unique_id port 190879 remote_ip 10.8.0.50 190882 username saeed9658 190882 mac 190882 bytes_out 151698 190882 bytes_in 1122361 190882 station_ip 5.119.206.111 190882 port 435 190882 unique_id port 190882 remote_ip 10.8.0.162 190886 username khalili2 190886 mac 190886 bytes_out 2053 190886 bytes_in 5700 190886 station_ip 5.119.199.49 190886 port 423 190886 unique_id port 190886 remote_ip 10.8.0.190 190889 username fezealinaghi 190889 mac 190889 bytes_out 63495 190889 bytes_in 98464 190889 station_ip 83.123.1.230 190889 port 432 190889 unique_id port 190889 remote_ip 10.8.0.202 190891 username motamedi9772 190891 mac 190891 bytes_out 0 190891 bytes_in 0 190891 station_ip 83.123.93.231 190891 port 429 190891 unique_id port 190892 username alirezaza 190892 unique_id port 190892 terminate_cause Lost-Carrier 190892 bytes_out 299514 190853 station_ip 83.123.26.85 190853 port 432 190853 unique_id port 190853 remote_ip 10.8.0.218 190859 username kalantary6037 190859 mac 190859 bytes_out 298570 190859 bytes_in 1920604 190859 station_ip 83.123.123.145 190859 port 435 190859 unique_id port 190859 remote_ip 10.8.0.50 190860 username godarzi 190860 mac 190860 bytes_out 236938 190860 bytes_in 2278030 190860 station_ip 5.119.31.248 190860 port 431 190860 unique_id port 190860 remote_ip 10.8.0.38 190862 username khademi 190862 kill_reason Another user logged on this global unique id 190862 mac 190862 bytes_out 0 190862 bytes_in 0 190862 station_ip 83.123.42.254 190862 port 424 190862 unique_id port 190866 username kalantary6037 190866 mac 190866 bytes_out 15752 190866 bytes_in 21579 190866 station_ip 83.123.123.145 190866 port 419 190866 unique_id port 190866 remote_ip 10.8.0.50 190867 username pourshad 190867 mac 190867 bytes_out 11729 190867 bytes_in 17531 190867 station_ip 5.120.73.74 190867 port 439 190867 unique_id port 190867 remote_ip 10.8.0.42 190868 username shadkam 190868 mac 190868 bytes_out 30645 190868 bytes_in 51837 190868 station_ip 5.31.176.108 190868 port 441 190868 unique_id port 190868 remote_ip 10.8.0.186 190875 username aminvpn 190875 mac 190875 bytes_out 724944 190875 bytes_in 5084235 190875 station_ip 5.120.40.203 190875 port 435 190875 unique_id port 190875 remote_ip 10.8.0.58 190876 username shadkam 190876 mac 190876 bytes_out 2151 190876 bytes_in 4476 190876 station_ip 94.203.207.162 190876 port 431 190876 unique_id port 190876 remote_ip 10.8.0.186 190881 username khaleghi2406 190881 mac 190881 bytes_out 1929 190881 bytes_in 4545 190881 station_ip 83.123.26.85 190881 port 400 190881 unique_id port 190881 remote_ip 10.8.0.218 190884 username khalili2 190884 mac 190884 bytes_out 0 190884 bytes_in 0 190884 station_ip 5.119.199.49 190884 port 423 190884 unique_id port 190885 username kalantary6037 190885 mac 190885 bytes_out 82484 190885 bytes_in 555163 190885 station_ip 83.123.80.101 190885 port 432 190885 unique_id port 190885 remote_ip 10.8.0.50 190888 username rashidi4690 190888 mac 190888 bytes_out 3988745 190888 bytes_in 27542730 190888 station_ip 5.119.240.108 190888 port 436 190888 unique_id port 190888 remote_ip 10.8.0.242 190902 username khademi 190902 kill_reason Another user logged on this global unique id 190902 mac 190902 bytes_out 0 190902 bytes_in 0 190902 station_ip 83.123.42.254 190902 port 424 190902 unique_id port 190908 username godarzi 190908 mac 190908 bytes_out 4696396 190908 bytes_in 43922491 190908 station_ip 5.119.31.248 190908 port 433 190908 unique_id port 190908 remote_ip 10.8.0.38 190910 username alihosseini1 190910 mac 190910 bytes_out 83713 190910 bytes_in 142520 190910 station_ip 5.120.10.100 190910 port 440 190910 unique_id port 190910 remote_ip 10.8.0.118 190914 username shadkam 190914 mac 190914 bytes_out 16194 190914 bytes_in 32033 190914 station_ip 91.73.126.17 190914 port 435 190914 unique_id port 190914 remote_ip 10.8.0.186 190915 username kalantary6037 190915 mac 190915 bytes_out 710473 190915 bytes_in 1273082 190915 station_ip 83.123.81.109 190915 port 400 190915 unique_id port 190915 remote_ip 10.8.0.50 190920 username mostafa_es78 190920 mac 190920 bytes_out 330261 190920 bytes_in 2437805 190920 station_ip 83.123.101.87 190920 port 400 190920 unique_id port 190920 remote_ip 10.8.0.34 190925 username charkhandaz3496 190925 mac 190925 bytes_out 1708005 190925 bytes_in 207937 190892 bytes_in 4295719 190892 station_ip 5.120.148.121 190892 port 15729182 190892 nas_port_type Virtual 190892 remote_ip 5.5.5.68 190894 username kalantary6037 190894 mac 190894 bytes_out 63564 190894 bytes_in 159845 190894 station_ip 83.123.80.101 190894 port 429 190894 unique_id port 190894 remote_ip 10.8.0.50 190896 username motamedi9772 190896 mac 190896 bytes_out 631314 190896 bytes_in 4672009 190896 station_ip 83.123.93.231 190896 port 429 190896 unique_id port 190896 remote_ip 10.8.0.154 190897 username soleymani5056 190897 mac 190897 bytes_out 16759 190897 bytes_in 69815 190897 station_ip 5.120.172.162 190897 port 439 190897 unique_id port 190897 remote_ip 10.8.0.226 190899 username shadkam 190899 mac 190899 bytes_out 9075 190899 bytes_in 51414 190899 station_ip 91.73.126.17 190899 port 425 190899 unique_id port 190899 remote_ip 10.8.0.186 190904 username sobhan 190904 unique_id port 190904 terminate_cause Lost-Carrier 190904 bytes_out 101345 190904 bytes_in 396454 190904 station_ip 31.59.36.52 190904 port 15729183 190904 nas_port_type Virtual 190904 remote_ip 5.5.5.67 190906 username farhad3 190906 mac 190906 bytes_out 3674117 190906 bytes_in 36051319 190906 station_ip 5.119.16.189 190906 port 438 190906 unique_id port 190906 remote_ip 10.8.0.222 190911 username meysam 190911 kill_reason Another user logged on this global unique id 190911 mac 190911 bytes_out 0 190911 bytes_in 0 190911 station_ip 188.159.252.110 190911 port 431 190911 unique_id port 190911 remote_ip 10.8.0.158 190913 username farhad3 190913 mac 190913 bytes_out 0 190913 bytes_in 0 190913 station_ip 5.120.66.211 190913 port 429 190913 unique_id port 190913 remote_ip 10.8.0.222 190917 username pourshad 190917 mac 190917 bytes_out 11589174 190917 bytes_in 18874150 190917 station_ip 5.120.73.74 190917 port 432 190917 unique_id port 190917 remote_ip 10.8.0.42 190922 username nilufarrajaei 190922 mac 190922 bytes_out 188347 190922 bytes_in 404428 190922 station_ip 83.123.67.76 190922 port 439 190922 unique_id port 190922 remote_ip 10.8.0.194 190923 username meysam 190923 kill_reason Another user logged on this global unique id 190923 mac 190923 bytes_out 0 190923 bytes_in 0 190923 station_ip 188.159.252.110 190923 port 431 190923 unique_id port 190924 username nilufarrajaei 190924 mac 190924 bytes_out 18669 190924 bytes_in 32790 190924 station_ip 83.123.67.76 190924 port 400 190924 unique_id port 190924 remote_ip 10.8.0.194 190928 username meysam 190928 mac 190928 bytes_out 0 190928 bytes_in 0 190928 station_ip 188.159.252.110 190928 port 431 190928 unique_id port 190931 username khademi 190931 kill_reason Another user logged on this global unique id 190931 mac 190931 bytes_out 0 190931 bytes_in 0 190931 station_ip 83.123.42.254 190931 port 424 190931 unique_id port 190932 username kalantary6037 190932 mac 190932 bytes_out 386932 190932 bytes_in 4168541 190932 station_ip 83.123.81.109 190932 port 431 190932 unique_id port 190932 remote_ip 10.8.0.50 190933 username nilufarrajaei 190933 mac 190933 bytes_out 13363 190933 bytes_in 18399 190933 station_ip 83.123.67.76 190933 port 425 190933 unique_id port 190933 remote_ip 10.8.0.194 190937 username fezealinaghi 190937 mac 190937 bytes_out 449405 190937 bytes_in 2358127 190937 station_ip 83.123.90.196 190937 port 438 190937 unique_id port 190937 remote_ip 10.8.0.202 190939 username kharazmi2920 190939 mac 190939 bytes_out 314925 190939 bytes_in 1868818 190939 station_ip 83.123.12.97 190939 port 423 190939 unique_id port 190939 remote_ip 10.8.0.22 190901 bytes_in 2145393 190901 station_ip 5.120.131.204 190901 port 419 190901 unique_id port 190901 remote_ip 10.8.0.102 190903 username rezaei 190903 mac 190903 bytes_out 393694 190903 bytes_in 2508490 190903 station_ip 46.225.215.117 190903 port 441 190903 unique_id port 190903 remote_ip 10.8.0.198 190905 username yaghobi 190905 mac 190905 bytes_out 1234852 190905 bytes_in 7187023 190905 station_ip 83.123.116.60 190905 port 400 190905 unique_id port 190905 remote_ip 10.8.0.138 190907 username motamedi9772 190907 mac 190907 bytes_out 702958 190907 bytes_in 5124252 190907 station_ip 83.123.93.231 190907 port 429 190907 unique_id port 190907 remote_ip 10.8.0.154 190909 username motamedi9772 190909 mac 190909 bytes_out 6791 190909 bytes_in 12427 190909 station_ip 83.123.93.231 190909 port 429 190909 unique_id port 190909 remote_ip 10.8.0.154 190912 username dortaj3792 190912 mac 190912 bytes_out 131753 190912 bytes_in 171763 190912 station_ip 5.120.131.204 190912 port 419 190912 unique_id port 190912 remote_ip 10.8.0.102 190916 username kalantary6037 190916 mac 190916 bytes_out 0 190916 bytes_in 0 190916 station_ip 83.123.81.109 190916 port 435 190916 unique_id port 190916 remote_ip 10.8.0.50 190918 username godarzi 190918 mac 190918 bytes_out 971839 190918 bytes_in 1382733 190918 station_ip 5.119.31.248 190918 port 419 190918 unique_id port 190918 remote_ip 10.8.0.38 190919 username yaghobi 190919 mac 190919 bytes_out 1143903 190919 bytes_in 15286586 190919 station_ip 83.123.70.140 190919 port 433 190919 unique_id port 190919 remote_ip 10.8.0.138 190921 username godarzi 190921 mac 190921 bytes_out 129477 190921 bytes_in 691802 190921 station_ip 5.119.31.248 190921 port 432 190921 unique_id port 190921 remote_ip 10.8.0.38 190929 username nilufarrajaei 190929 mac 190929 bytes_out 70166 190929 bytes_in 164588 190929 station_ip 83.123.67.76 190929 port 439 190929 unique_id port 190929 remote_ip 10.8.0.194 190934 username rashidi4690 190934 mac 190934 bytes_out 32405 190934 bytes_in 54476 190934 station_ip 5.119.240.108 190934 port 439 190934 unique_id port 190934 remote_ip 10.8.0.242 190935 username rezaei 190935 mac 190935 bytes_out 1114545 190935 bytes_in 6624465 190935 station_ip 83.123.112.211 190935 port 435 190935 unique_id port 190935 remote_ip 10.8.0.198 190936 username kalantary6037 190936 mac 190936 bytes_out 1156506 190936 bytes_in 12168706 190936 station_ip 83.123.81.109 190936 port 440 190936 unique_id port 190936 remote_ip 10.8.0.50 190938 username nilufarrajaei 190938 mac 190938 bytes_out 10953 190938 bytes_in 13631 190938 station_ip 83.123.67.76 190938 port 431 190938 unique_id port 190938 remote_ip 10.8.0.194 190940 username yaghobi 190940 mac 190940 bytes_out 361907 190940 bytes_in 475485 190940 station_ip 83.123.89.61 190940 port 419 190940 unique_id port 190940 remote_ip 10.8.0.138 190946 username kalantary6037 190946 mac 190946 bytes_out 133052 190946 bytes_in 1147349 190946 station_ip 83.123.81.109 190946 port 431 190946 unique_id port 190946 remote_ip 10.8.0.50 190948 username meysam 190948 mac 190948 bytes_out 27202 190948 bytes_in 210315 190948 station_ip 5.119.24.109 190948 port 431 190948 unique_id port 190948 remote_ip 10.8.0.158 190950 username morteza4424 190950 mac 190950 bytes_out 1077138 190950 bytes_in 13796383 190950 station_ip 83.123.123.107 190950 port 419 190950 unique_id port 190950 remote_ip 10.8.0.206 190953 username meysam 190953 mac 190925 station_ip 5.120.24.176 190925 port 440 190925 unique_id port 190925 remote_ip 10.8.0.46 190926 username sabaghnezhad 190926 mac 190926 bytes_out 106694 190926 bytes_in 587183 190926 station_ip 5.106.71.148 190926 port 425 190926 unique_id port 190926 remote_ip 10.8.0.66 190927 username yaghobi 190927 mac 190927 bytes_out 442453 190927 bytes_in 1463279 190927 station_ip 83.123.93.15 190927 port 419 190927 unique_id port 190927 remote_ip 10.8.0.138 190930 username farhad3 190930 kill_reason Another user logged on this global unique id 190930 mac 190930 bytes_out 0 190930 bytes_in 0 190930 station_ip 5.120.66.211 190930 port 400 190930 unique_id port 190930 remote_ip 10.8.0.222 190941 username farhad3 190941 kill_reason Another user logged on this global unique id 190941 mac 190941 bytes_out 0 190941 bytes_in 0 190941 station_ip 5.120.66.211 190941 port 400 190941 unique_id port 190942 username rezaei 190942 mac 190942 bytes_out 40989 190942 bytes_in 197456 190942 station_ip 5.120.11.97 190942 port 423 190942 unique_id port 190942 remote_ip 10.8.0.198 190945 username yaghobi 190945 mac 190945 bytes_out 131354 190945 bytes_in 224245 190945 station_ip 83.123.102.254 190945 port 438 190945 unique_id port 190945 remote_ip 10.8.0.138 190949 username malekpoir 190949 mac 190949 bytes_out 3064488 190949 bytes_in 30385929 190949 station_ip 5.119.143.18 190949 port 442 190949 unique_id port 190949 remote_ip 10.8.0.18 190951 username yaghobi 190951 mac 190951 bytes_out 100674 190951 bytes_in 118843 190951 station_ip 83.123.102.254 190951 port 435 190951 unique_id port 190951 remote_ip 10.8.0.138 190955 username hamid.e 190955 kill_reason Maximum check online fails reached 190955 unique_id port 190955 bytes_out 127197 190955 bytes_in 895118 190955 station_ip 37.27.13.50 190955 port 15729185 190955 nas_port_type Virtual 190955 remote_ip 5.5.5.65 190956 username alihosseini1 190956 mac 190956 bytes_out 3298555 190956 bytes_in 29153337 190956 station_ip 5.120.10.100 190956 port 429 190956 unique_id port 190956 remote_ip 10.8.0.118 190961 username motamedi9772 190961 mac 190961 bytes_out 100958 190961 bytes_in 596379 190961 station_ip 83.123.120.147 190961 port 425 190961 unique_id port 190961 remote_ip 10.8.0.154 190967 username alihosseini1 190967 mac 190967 bytes_out 0 190967 bytes_in 0 190967 station_ip 5.120.10.100 190967 port 425 190967 unique_id port 190967 remote_ip 10.8.0.118 190969 username sabaghnezhad 190969 mac 190969 bytes_out 127208 190969 bytes_in 346797 190969 station_ip 5.106.71.148 190969 port 438 190969 unique_id port 190969 remote_ip 10.8.0.66 190970 username mosi 190970 mac 190970 bytes_out 245175 190970 bytes_in 407728 190970 station_ip 89.32.108.96 190970 port 426 190970 unique_id port 190970 remote_ip 10.8.0.142 190972 username morteza4424 190972 mac 190972 bytes_out 837560 190972 bytes_in 12432557 190972 station_ip 83.123.123.107 190972 port 400 190972 unique_id port 190972 remote_ip 10.8.0.206 190974 username barzegar8595 190974 mac 190974 bytes_out 39417 190974 bytes_in 61930 190974 station_ip 37.27.19.76 190974 port 433 190974 unique_id port 190974 remote_ip 10.8.0.114 190976 username sabaghnezhad 190976 mac 190976 bytes_out 48975 190976 bytes_in 133178 190976 station_ip 5.106.71.148 190976 port 426 190976 unique_id port 190976 remote_ip 10.8.0.66 190977 username shadkam 190977 mac 190977 bytes_out 6440 190977 bytes_in 18929 190977 station_ip 91.73.39.91 190977 port 432 190977 unique_id port 190977 remote_ip 10.8.0.186 190943 username rashidi4690 190943 mac 190943 bytes_out 9659 190943 bytes_in 21619 190943 station_ip 5.120.56.45 190943 port 431 190943 unique_id port 190943 remote_ip 10.8.0.242 190944 username fezealinaghi 190944 mac 190944 bytes_out 25276 190944 bytes_in 30599 190944 station_ip 83.123.90.196 190944 port 435 190944 unique_id port 190944 remote_ip 10.8.0.202 190947 username barzegar8595 190947 mac 190947 bytes_out 2280207 190947 bytes_in 30176224 190947 station_ip 5.202.22.2 190947 port 425 190947 unique_id port 190947 remote_ip 10.8.0.114 190952 username mostafa_es78 190952 mac 190952 bytes_out 2091890 190952 bytes_in 24170215 190952 station_ip 83.123.101.87 190952 port 433 190952 unique_id port 190952 remote_ip 10.8.0.34 190957 username mostafa_es78 190957 mac 190957 bytes_out 0 190957 bytes_in 0 190957 station_ip 83.123.101.87 190957 port 425 190957 unique_id port 190957 remote_ip 10.8.0.34 190963 username yaghobi 190963 mac 190963 bytes_out 263431 190963 bytes_in 414178 190963 station_ip 83.123.23.241 190963 port 440 190963 unique_id port 190963 remote_ip 10.8.0.138 190966 username morteza4424 190966 mac 190966 bytes_out 0 190966 bytes_in 0 190966 station_ip 83.123.123.107 190966 port 400 190966 unique_id port 190966 remote_ip 10.8.0.206 190968 username alihosseini1 190968 mac 190968 bytes_out 0 190968 bytes_in 0 190968 station_ip 5.120.10.100 190968 port 425 190968 unique_id port 190968 remote_ip 10.8.0.118 190971 username meysam 190971 mac 190971 bytes_out 1965289 190971 bytes_in 28235367 190971 station_ip 188.158.50.36 190971 port 424 190971 unique_id port 190971 remote_ip 10.8.0.158 190981 username morteza4424 190981 kill_reason Another user logged on this global unique id 190981 mac 190981 bytes_out 0 190981 bytes_in 0 190981 station_ip 83.123.123.107 190981 port 400 190981 unique_id port 190981 remote_ip 10.8.0.206 190986 username alihosseini1 190986 mac 190986 bytes_out 2265 190986 bytes_in 4611 190986 station_ip 5.120.10.100 190986 port 400 190986 unique_id port 190986 remote_ip 10.8.0.118 190989 username morteza4424 190989 mac 190989 bytes_out 50327 190989 bytes_in 923997 190989 station_ip 83.123.123.107 190989 port 431 190989 unique_id port 190989 remote_ip 10.8.0.206 190990 username morteza4424 190990 mac 190990 bytes_out 0 190990 bytes_in 0 190990 station_ip 83.123.123.107 190990 port 400 190990 unique_id port 190990 remote_ip 10.8.0.206 190993 username pourshad 190993 mac 190993 bytes_out 20469 190993 bytes_in 36549 190993 station_ip 5.120.73.74 190993 port 419 190993 unique_id port 190993 remote_ip 10.8.0.42 190995 username afarin1 190995 mac 190995 bytes_out 476691 190995 bytes_in 3032417 190995 station_ip 31.56.112.189 190995 port 430 190995 unique_id port 190995 remote_ip 10.8.0.238 190998 username rahim 190998 mac 190998 bytes_out 0 190998 bytes_in 0 190998 station_ip 86.57.92.47 190998 port 431 190998 unique_id port 190998 remote_ip 10.8.0.134 191000 username nekheei 191000 mac 191000 bytes_out 7311 191000 bytes_in 14493 191000 station_ip 5.120.102.140 191000 port 424 191000 unique_id port 191000 remote_ip 10.8.0.74 191002 username pourshad 191002 mac 191002 bytes_out 697791 191002 bytes_in 12289755 191002 station_ip 5.120.73.74 191002 port 431 191002 unique_id port 191002 remote_ip 10.8.0.42 191004 username fezealinaghi 191004 mac 191004 bytes_out 57960 191004 bytes_in 81669 191004 station_ip 83.123.54.192 191004 port 431 191004 unique_id port 190953 bytes_out 822093 190953 bytes_in 11813030 190953 station_ip 5.119.24.109 190953 port 425 190953 unique_id port 190953 remote_ip 10.8.0.158 190954 username pourshad 190954 mac 190954 bytes_out 233531 190954 bytes_in 1934987 190954 station_ip 5.120.73.74 190954 port 432 190954 unique_id port 190954 remote_ip 10.8.0.42 190958 username nilufarrajaei 190958 mac 190958 bytes_out 47769 190958 bytes_in 151496 190958 station_ip 83.123.67.76 190958 port 419 190958 unique_id port 190958 remote_ip 10.8.0.194 190959 username farhad3 190959 mac 190959 bytes_out 0 190959 bytes_in 0 190959 station_ip 5.120.66.211 190959 port 400 190959 unique_id port 190960 username khademi 190960 mac 190960 bytes_out 0 190960 bytes_in 0 190960 station_ip 83.123.42.254 190960 port 424 190960 unique_id port 190962 username kalantary6037 190962 mac 190962 bytes_out 1246140 190962 bytes_in 8045646 190962 station_ip 83.123.81.109 190962 port 435 190962 unique_id port 190962 remote_ip 10.8.0.50 190964 username morteza4424 190964 kill_reason Another user logged on this global unique id 190964 mac 190964 bytes_out 0 190964 bytes_in 0 190964 station_ip 83.123.123.107 190964 port 431 190964 unique_id port 190964 remote_ip 10.8.0.206 190965 username morteza4424 190965 mac 190965 bytes_out 0 190965 bytes_in 0 190965 station_ip 83.123.123.107 190965 port 431 190965 unique_id port 190973 username nekheei 190973 mac 190973 bytes_out 125022 190973 bytes_in 259721 190973 station_ip 5.120.102.140 190973 port 424 190973 unique_id port 190973 remote_ip 10.8.0.74 190975 username godarzi 190975 mac 190975 bytes_out 1291583 190975 bytes_in 17446055 190975 station_ip 5.119.31.248 190975 port 432 190975 unique_id port 190975 remote_ip 10.8.0.38 190979 username meysam 190979 mac 190979 bytes_out 3057540 190979 bytes_in 42042576 190979 station_ip 188.158.50.36 190979 port 431 190979 unique_id port 190979 remote_ip 10.8.0.158 190984 username morteza4424 190984 mac 190984 bytes_out 10280 190984 bytes_in 18755 190984 station_ip 83.123.123.107 190984 port 400 190984 unique_id port 190984 remote_ip 10.8.0.206 190985 username pourshad 190985 mac 190985 bytes_out 167301 190985 bytes_in 1318374 190985 station_ip 5.120.73.74 190985 port 429 190985 unique_id port 190985 remote_ip 10.8.0.42 190987 username kalantary6037 190987 mac 190987 bytes_out 423244 190987 bytes_in 2014865 190987 station_ip 83.123.111.89 190987 port 424 190987 unique_id port 190987 remote_ip 10.8.0.50 190991 username nilufarrajaei 190991 mac 190991 bytes_out 291640 190991 bytes_in 966002 190991 station_ip 83.123.67.76 190991 port 419 190991 unique_id port 190991 remote_ip 10.8.0.194 190999 username soleymani5056 190999 mac 190999 bytes_out 105892 190999 bytes_in 411173 190999 station_ip 5.120.185.9 190999 port 424 190999 unique_id port 190999 remote_ip 10.8.0.226 191007 username morteza4424 191007 mac 191007 bytes_out 0 191007 bytes_in 0 191007 station_ip 83.123.123.107 191007 port 419 191007 unique_id port 191007 remote_ip 10.8.0.206 191008 username nilufarrajaei 191008 mac 191008 bytes_out 25101 191008 bytes_in 51187 191008 station_ip 83.123.67.76 191008 port 439 191008 unique_id port 191008 remote_ip 10.8.0.194 191011 username kalantary6037 191011 mac 191011 bytes_out 2655511 191011 bytes_in 17458820 191011 station_ip 83.123.111.89 191011 port 429 191011 unique_id port 191011 remote_ip 10.8.0.50 191012 username shadkam 191012 mac 191012 bytes_out 2207 191012 bytes_in 4718 190978 username fezealinaghi 190978 mac 190978 bytes_out 3833067 190978 bytes_in 42093810 190978 station_ip 83.123.90.196 190978 port 423 190978 unique_id port 190978 remote_ip 10.8.0.202 190980 username rezaei 190980 mac 190980 bytes_out 5526646 190980 bytes_in 24239868 190980 station_ip 5.120.11.97 190980 port 439 190980 unique_id port 190980 remote_ip 10.8.0.198 190982 username dortaj3792 190982 mac 190982 bytes_out 290927 190982 bytes_in 2106815 190982 station_ip 5.120.131.204 190982 port 426 190982 unique_id port 190982 remote_ip 10.8.0.102 190983 username morteza4424 190983 mac 190983 bytes_out 0 190983 bytes_in 0 190983 station_ip 83.123.123.107 190983 port 400 190983 unique_id port 190988 username godarzi 190988 mac 190988 bytes_out 1480563 190988 bytes_in 14413361 190988 station_ip 5.119.31.248 190988 port 433 190988 unique_id port 190988 remote_ip 10.8.0.38 190992 username morteza4424 190992 mac 190992 bytes_out 0 190992 bytes_in 0 190992 station_ip 83.123.123.107 190992 port 424 190992 unique_id port 190992 remote_ip 10.8.0.206 190994 username nilufarrajaei 190994 mac 190994 bytes_out 116592 190994 bytes_in 455067 190994 station_ip 83.123.67.76 190994 port 400 190994 unique_id port 190994 remote_ip 10.8.0.194 190996 username morteza4424 190996 mac 190996 bytes_out 322277 190996 bytes_in 5329330 190996 station_ip 83.123.123.107 190996 port 424 190996 unique_id port 190996 remote_ip 10.8.0.206 190997 username akbari0070 190997 mac 190997 bytes_out 3369880 190997 bytes_in 33411703 190997 station_ip 83.123.109.141 190997 port 435 190997 unique_id port 190997 remote_ip 10.8.0.166 191001 username afarin1 191001 mac 191001 bytes_out 170629 191001 bytes_in 639301 191001 station_ip 31.56.112.189 191001 port 400 191001 unique_id port 191001 remote_ip 10.8.0.238 191003 username nilufarrajaei 191003 mac 191003 bytes_out 282802 191003 bytes_in 1282729 191003 station_ip 83.123.67.76 191003 port 419 191003 unique_id port 191003 remote_ip 10.8.0.194 191005 username shadkam 191005 mac 191005 bytes_out 2469 191005 bytes_in 4953 191005 station_ip 87.201.184.74 191005 port 419 191005 unique_id port 191005 remote_ip 10.8.0.186 191009 username esmaeilkazemi 191009 mac 191009 bytes_out 0 191009 bytes_in 0 191009 station_ip 83.123.33.107 191009 port 431 191009 unique_id port 191009 remote_ip 10.8.0.26 191013 username esmaeilkazemi 191013 mac 191013 bytes_out 673971 191013 bytes_in 13407654 191013 station_ip 83.123.33.107 191013 port 439 191013 unique_id port 191013 remote_ip 10.8.0.26 191015 username morteza4424 191015 mac 191015 bytes_out 1709724 191015 bytes_in 34618172 191015 station_ip 83.123.123.107 191015 port 419 191015 unique_id port 191015 remote_ip 10.8.0.206 191020 username khaleghi2406 191020 mac 191020 bytes_out 1719 191020 bytes_in 3836 191020 station_ip 83.123.58.39 191020 port 440 191020 unique_id port 191020 remote_ip 10.8.0.218 191022 username nekheei 191022 mac 191022 bytes_out 1005212 191022 bytes_in 16134865 191022 station_ip 5.120.102.140 191022 port 429 191022 unique_id port 191022 remote_ip 10.8.0.74 191024 username nekheei 191024 mac 191024 bytes_out 79832 191024 bytes_in 57652 191024 station_ip 5.120.102.140 191024 port 429 191024 unique_id port 191024 remote_ip 10.8.0.74 191026 username meghdad1616 191026 mac 191026 bytes_out 2468370 191026 bytes_in 42963207 191026 station_ip 5.120.166.146 191026 port 439 191026 unique_id port 191026 remote_ip 10.8.0.230 191004 remote_ip 10.8.0.202 191006 username morteza4424 191006 mac 191006 bytes_out 2769303 191006 bytes_in 44598294 191006 station_ip 83.123.123.107 191006 port 430 191006 unique_id port 191006 remote_ip 10.8.0.206 191010 username nekheei 191010 mac 191010 bytes_out 2054866 191010 bytes_in 30809811 191010 station_ip 5.120.102.140 191010 port 435 191010 unique_id port 191010 remote_ip 10.8.0.74 191016 username rahim 191016 mac 191016 bytes_out 1729751 191016 bytes_in 12902155 191016 station_ip 5.120.189.127 191016 port 433 191016 unique_id port 191016 remote_ip 10.8.0.134 191018 username aminvpn 191018 mac 191018 bytes_out 1319801 191018 bytes_in 6569791 191018 station_ip 5.120.40.203 191018 port 436 191018 unique_id port 191018 remote_ip 10.8.0.58 191021 username aminvpn 191021 unique_id port 191021 terminate_cause Lost-Carrier 191021 bytes_out 1784900 191021 bytes_in 33276199 191021 station_ip 5.119.205.93 191021 port 15729186 191021 nas_port_type Virtual 191021 remote_ip 5.5.5.84 191027 username alihosseini1 191027 mac 191027 bytes_out 428618 191027 bytes_in 437387 191027 station_ip 5.120.170.81 191027 port 435 191027 unique_id port 191027 remote_ip 10.8.0.118 191030 username yaghobi 191030 mac 191030 bytes_out 319426 191030 bytes_in 1092064 191030 station_ip 83.123.114.61 191030 port 436 191030 unique_id port 191030 remote_ip 10.8.0.138 191034 username meghdad1616 191034 mac 191034 bytes_out 0 191034 bytes_in 0 191034 station_ip 5.120.166.146 191034 port 436 191034 unique_id port 191034 remote_ip 10.8.0.230 191040 username barzegar8595 191040 kill_reason Another user logged on this global unique id 191040 mac 191040 bytes_out 0 191040 bytes_in 0 191040 station_ip 46.225.215.117 191040 port 438 191040 unique_id port 191040 remote_ip 10.8.0.114 191042 username nekheei 191042 mac 191042 bytes_out 0 191042 bytes_in 0 191042 station_ip 5.120.102.140 191042 port 430 191042 unique_id port 191042 remote_ip 10.8.0.74 191047 username sabaghnezhad 191047 mac 191047 bytes_out 162850 191047 bytes_in 157831 191047 station_ip 5.106.71.148 191047 port 431 191047 unique_id port 191047 remote_ip 10.8.0.66 191050 username motamedi9772 191050 mac 191050 bytes_out 1005483 191050 bytes_in 16383008 191050 station_ip 83.123.10.67 191050 port 426 191050 unique_id port 191050 remote_ip 10.8.0.154 191051 username barzegar8595 191051 mac 191051 bytes_out 0 191051 bytes_in 0 191051 station_ip 46.225.215.117 191051 port 438 191051 unique_id port 191055 username shadkam 191055 mac 191055 bytes_out 89636 191055 bytes_in 235037 191055 station_ip 217.165.72.201 191055 port 400 191055 unique_id port 191055 remote_ip 10.8.0.186 191063 username kalantary6037 191063 mac 191063 bytes_out 652733 191063 bytes_in 1463421 191063 station_ip 83.123.27.77 191063 port 431 191063 unique_id port 191063 remote_ip 10.8.0.50 191066 username pourshad 191066 mac 191066 bytes_out 75785 191066 bytes_in 806292 191066 station_ip 5.120.73.74 191066 port 438 191066 unique_id port 191066 remote_ip 10.8.0.42 191069 username yaghobi 191069 mac 191069 bytes_out 321951 191069 bytes_in 772757 191069 station_ip 83.123.110.67 191069 port 419 191069 unique_id port 191069 remote_ip 10.8.0.138 191071 username rahim 191071 mac 191071 bytes_out 1393509 191071 bytes_in 20483535 191071 station_ip 5.120.51.246 191071 port 440 191071 unique_id port 191071 remote_ip 10.8.0.134 191073 username rahim 191073 mac 191073 bytes_out 0 191073 bytes_in 0 191073 station_ip 5.120.51.246 191012 station_ip 91.73.18.149 191012 port 435 191012 unique_id port 191012 remote_ip 10.8.0.186 191014 username kalantary6037 191014 mac 191014 bytes_out 334375 191014 bytes_in 2251009 191014 station_ip 83.123.111.89 191014 port 431 191014 unique_id port 191014 remote_ip 10.8.0.50 191017 username khaleghi2406 191017 mac 191017 bytes_out 699350 191017 bytes_in 6696372 191017 station_ip 83.123.58.39 191017 port 432 191017 unique_id port 191017 remote_ip 10.8.0.218 191019 username yaghobi 191019 mac 191019 bytes_out 27034 191019 bytes_in 17668 191019 station_ip 83.123.114.61 191019 port 432 191019 unique_id port 191019 remote_ip 10.8.0.138 191023 username kalantary6037 191023 mac 191023 bytes_out 903170 191023 bytes_in 6566923 191023 station_ip 83.123.111.89 191023 port 431 191023 unique_id port 191023 remote_ip 10.8.0.50 191025 username nilufarrajaei 191025 mac 191025 bytes_out 574104 191025 bytes_in 4425512 191025 station_ip 83.123.119.241 191025 port 430 191025 unique_id port 191025 remote_ip 10.8.0.194 191028 username meghdad1616 191028 mac 191028 bytes_out 0 191028 bytes_in 0 191028 station_ip 5.120.166.146 191028 port 430 191028 unique_id port 191028 remote_ip 10.8.0.230 191029 username akbari0070 191029 mac 191029 bytes_out 87667 191029 bytes_in 180443 191029 station_ip 83.123.15.165 191029 port 440 191029 unique_id port 191029 remote_ip 10.8.0.166 191032 username meghdad1616 191032 mac 191032 bytes_out 0 191032 bytes_in 0 191032 station_ip 5.120.166.146 191032 port 425 191032 unique_id port 191032 remote_ip 10.8.0.230 191036 username kalantary6037 191036 mac 191036 bytes_out 870320 191036 bytes_in 11472599 191036 station_ip 83.123.111.89 191036 port 430 191036 unique_id port 191036 remote_ip 10.8.0.50 191039 username godarzi 191039 kill_reason Another user logged on this global unique id 191039 mac 191039 bytes_out 0 191039 bytes_in 0 191039 station_ip 5.202.29.254 191039 port 419 191039 unique_id port 191039 remote_ip 10.8.0.38 191045 username farhad3 191045 mac 191045 bytes_out 550998 191045 bytes_in 7582527 191045 station_ip 5.120.170.239 191045 port 430 191045 unique_id port 191045 remote_ip 10.8.0.222 191052 username godarzi 191052 mac 191052 bytes_out 0 191052 bytes_in 0 191052 station_ip 5.202.29.254 191052 port 419 191052 unique_id port 191053 username pourshad 191053 mac 191053 bytes_out 180362 191053 bytes_in 295476 191053 station_ip 5.120.73.74 191053 port 400 191053 unique_id port 191053 remote_ip 10.8.0.42 191054 username sabaghnezhad 191054 mac 191054 bytes_out 450525 191054 bytes_in 3986563 191054 station_ip 5.106.71.148 191054 port 431 191054 unique_id port 191054 remote_ip 10.8.0.66 191057 username rashidi4690 191057 mac 191057 bytes_out 2523958 191057 bytes_in 23472151 191057 station_ip 5.120.56.45 191057 port 425 191057 unique_id port 191057 remote_ip 10.8.0.242 191058 username farhad3 191058 mac 191058 bytes_out 4031841 191058 bytes_in 33024426 191058 station_ip 5.120.170.239 191058 port 430 191058 unique_id port 191058 remote_ip 10.8.0.222 191059 username farhad3 191059 mac 191059 bytes_out 0 191059 bytes_in 0 191059 station_ip 5.120.170.239 191059 port 438 191059 unique_id port 191059 remote_ip 10.8.0.222 191064 username shadkam 191064 mac 191064 bytes_out 1029573 191064 bytes_in 457894 191064 station_ip 217.165.72.201 191064 port 419 191064 unique_id port 191064 remote_ip 10.8.0.186 191065 username farhad3 191065 mac 191065 bytes_out 776449 191031 username mosi 191031 mac 191031 bytes_out 537884 191031 bytes_in 1939391 191031 station_ip 89.32.108.96 191031 port 425 191031 unique_id port 191031 remote_ip 10.8.0.142 191033 username saeed9658 191033 mac 191033 bytes_out 0 191033 bytes_in 0 191033 station_ip 5.119.206.111 191033 port 436 191033 unique_id port 191033 remote_ip 10.8.0.162 191035 username nilufarrajaei 191035 mac 191035 bytes_out 104068 191035 bytes_in 195586 191035 station_ip 83.123.119.241 191035 port 431 191035 unique_id port 191035 remote_ip 10.8.0.194 191037 username nekheei 191037 mac 191037 bytes_out 36856 191037 bytes_in 64154 191037 station_ip 5.120.102.140 191037 port 429 191037 unique_id port 191037 remote_ip 10.8.0.74 191038 username rezaei 191038 kill_reason Another user logged on this global unique id 191038 mac 191038 bytes_out 0 191038 bytes_in 0 191038 station_ip 5.120.11.97 191038 port 433 191038 unique_id port 191038 remote_ip 10.8.0.198 191041 username khaleghi2406 191041 mac 191041 bytes_out 589456 191041 bytes_in 7317071 191041 station_ip 83.123.58.39 191041 port 432 191041 unique_id port 191041 remote_ip 10.8.0.218 191043 username meghdad1616 191043 mac 191043 bytes_out 0 191043 bytes_in 0 191043 station_ip 5.120.166.146 191043 port 430 191043 unique_id port 191043 remote_ip 10.8.0.230 191044 username meghdad1616 191044 mac 191044 bytes_out 0 191044 bytes_in 0 191044 station_ip 5.120.166.146 191044 port 430 191044 unique_id port 191044 remote_ip 10.8.0.230 191046 username mosavi0713 191046 mac 191046 bytes_out 55449 191046 bytes_in 207037 191046 station_ip 83.123.17.60 191046 port 432 191046 unique_id port 191046 remote_ip 10.8.0.234 191048 username meghdad1616 191048 mac 191048 bytes_out 3037 191048 bytes_in 4865 191048 station_ip 5.120.166.146 191048 port 436 191048 unique_id port 191048 remote_ip 10.8.0.230 191049 username meghdad1616 191049 mac 191049 bytes_out 0 191049 bytes_in 0 191049 station_ip 5.120.166.146 191049 port 432 191049 unique_id port 191049 remote_ip 10.8.0.230 191056 username shadkam 191056 kill_reason Maximum check online fails reached 191056 mac 191056 bytes_out 0 191056 bytes_in 0 191056 station_ip 217.165.72.201 191056 port 400 191056 unique_id port 191060 username meghdad1616 191060 kill_reason Another user logged on this global unique id 191060 mac 191060 bytes_out 0 191060 bytes_in 0 191060 station_ip 5.120.166.146 191060 port 432 191060 unique_id port 191060 remote_ip 10.8.0.230 191061 username mohammadjavad 191061 mac 191061 bytes_out 1793213 191061 bytes_in 6938629 191061 station_ip 83.123.29.185 191061 port 436 191061 unique_id port 191061 remote_ip 10.8.0.110 191062 username farhad3 191062 kill_reason Maximum check online fails reached 191062 mac 191062 bytes_out 0 191062 bytes_in 0 191062 station_ip 5.120.170.239 191062 port 436 191062 unique_id port 191067 username soleymani5056 191067 mac 191067 bytes_out 42103 191067 bytes_in 163510 191067 station_ip 5.119.195.38 191067 port 439 191067 unique_id port 191067 remote_ip 10.8.0.226 191072 username mohammadjavad 191072 mac 191072 bytes_out 209060 191072 bytes_in 2495119 191072 station_ip 83.123.22.155 191072 port 442 191072 unique_id port 191072 remote_ip 10.8.0.110 191076 username mohammadjavad 191076 mac 191076 bytes_out 15686 191076 bytes_in 16902 191076 station_ip 83.123.22.155 191076 port 440 191076 unique_id port 191076 remote_ip 10.8.0.110 191081 username kharazmi2920 191081 kill_reason Another user logged on this global unique id 191081 mac 191065 bytes_in 2144404 191065 station_ip 5.120.170.239 191065 port 438 191065 unique_id port 191065 remote_ip 10.8.0.222 191068 username motamedi9772 191068 mac 191068 bytes_out 317974 191068 bytes_in 3698429 191068 station_ip 83.123.58.59 191068 port 425 191068 unique_id port 191068 remote_ip 10.8.0.154 191070 username farhad3 191070 mac 191070 bytes_out 54830 191070 bytes_in 34075 191070 station_ip 5.120.170.239 191070 port 425 191070 unique_id port 191070 remote_ip 10.8.0.222 191074 username motamedi9772 191074 mac 191074 bytes_out 30286 191074 bytes_in 79309 191074 station_ip 83.123.45.75 191074 port 443 191074 unique_id port 191074 remote_ip 10.8.0.154 191075 username motamedi9772 191075 mac 191075 bytes_out 0 191075 bytes_in 0 191075 station_ip 83.123.45.75 191075 port 442 191075 unique_id port 191075 remote_ip 10.8.0.154 191080 username motamedi9772 191080 mac 191080 bytes_out 0 191080 bytes_in 0 191080 station_ip 83.123.45.75 191080 port 440 191080 unique_id port 191080 remote_ip 10.8.0.154 191083 username meghdad1616 191083 mac 191083 bytes_out 0 191083 bytes_in 0 191083 station_ip 5.120.166.146 191083 port 432 191083 unique_id port 191085 username alihosseini1 191085 mac 191085 bytes_out 25654 191085 bytes_in 86463 191085 station_ip 5.120.170.81 191085 port 442 191085 unique_id port 191085 remote_ip 10.8.0.118 191086 username yaghobi 191086 mac 191086 bytes_out 2697865 191086 bytes_in 21607525 191086 station_ip 83.123.110.67 191086 port 441 191086 unique_id port 191086 remote_ip 10.8.0.138 191087 username alihosseini1 191087 mac 191087 bytes_out 3618 191087 bytes_in 6863 191087 station_ip 5.120.170.81 191087 port 429 191087 unique_id port 191087 remote_ip 10.8.0.118 191088 username mohammadjavad 191088 mac 191088 bytes_out 20855 191088 bytes_in 194894 191088 station_ip 83.123.22.155 191088 port 441 191088 unique_id port 191088 remote_ip 10.8.0.110 191090 username meghdad1616 191090 mac 191090 bytes_out 0 191090 bytes_in 0 191090 station_ip 5.120.166.146 191090 port 441 191090 unique_id port 191090 remote_ip 10.8.0.230 191094 username shadkam 191094 mac 191094 bytes_out 1590423 191094 bytes_in 11357454 191094 station_ip 217.165.72.201 191094 port 425 191094 unique_id port 191094 remote_ip 10.8.0.186 191100 username motamedi9772 191100 kill_reason Another user logged on this global unique id 191100 mac 191100 bytes_out 0 191100 bytes_in 0 191100 station_ip 83.123.45.75 191100 port 435 191100 unique_id port 191100 remote_ip 10.8.0.154 191104 username alihosseini1 191104 mac 191104 bytes_out 0 191104 bytes_in 0 191104 station_ip 5.120.170.81 191104 port 430 191104 unique_id port 191104 remote_ip 10.8.0.118 191109 username kharazmi2920 191109 mac 191109 bytes_out 8910126 191109 bytes_in 5068682 191109 station_ip 83.123.12.97 191109 port 432 191109 unique_id port 191109 remote_ip 10.8.0.22 191111 username nilufarrajaei 191111 mac 191111 bytes_out 160824 191111 bytes_in 1022604 191111 station_ip 151.234.20.250 191111 port 438 191111 unique_id port 191111 remote_ip 10.8.0.194 191112 username yaghobi 191112 mac 191112 bytes_out 406853 191112 bytes_in 1308891 191112 station_ip 83.123.72.95 191112 port 429 191112 unique_id port 191112 remote_ip 10.8.0.138 191114 username motamedi9772 191114 kill_reason Another user logged on this global unique id 191114 mac 191114 bytes_out 0 191114 bytes_in 0 191114 station_ip 83.123.45.75 191114 port 435 191114 unique_id port 191117 username alihosseini1 191117 mac 191073 port 442 191073 unique_id port 191073 remote_ip 10.8.0.134 191077 username hamid.e 191077 unique_id port 191077 terminate_cause User-Request 191077 bytes_out 11482469 191077 bytes_in 42898034 191077 station_ip 37.27.13.50 191077 port 15729194 191077 nas_port_type Virtual 191077 remote_ip 5.5.5.65 191078 username motamedi9772 191078 mac 191078 bytes_out 0 191078 bytes_in 0 191078 station_ip 83.123.45.75 191078 port 440 191078 unique_id port 191078 remote_ip 10.8.0.154 191079 username alihosseini1 191079 mac 191079 bytes_out 200882 191079 bytes_in 463902 191079 station_ip 5.120.170.81 191079 port 435 191079 unique_id port 191079 remote_ip 10.8.0.118 191089 username alihosseini1 191089 mac 191089 bytes_out 5733 191089 bytes_in 8220 191089 station_ip 5.120.170.81 191089 port 429 191089 unique_id port 191089 remote_ip 10.8.0.118 191093 username rashidi4690 191093 mac 191093 bytes_out 982759 191093 bytes_in 6339747 191093 station_ip 5.120.56.45 191093 port 440 191093 unique_id port 191093 remote_ip 10.8.0.242 191096 username barzegar8595 191096 kill_reason Maximum check online fails reached 191096 mac 191096 bytes_out 0 191096 bytes_in 0 191096 station_ip 46.225.215.117 191096 port 441 191096 unique_id port 191098 username rezaei 191098 kill_reason Another user logged on this global unique id 191098 mac 191098 bytes_out 0 191098 bytes_in 0 191098 station_ip 5.120.11.97 191098 port 433 191098 unique_id port 191099 username nilufarrajaei 191099 mac 191099 bytes_out 50924 191099 bytes_in 182307 191099 station_ip 83.123.119.241 191099 port 432 191099 unique_id port 191099 remote_ip 10.8.0.194 191102 username meghdad1616 191102 mac 191102 bytes_out 0 191102 bytes_in 0 191102 station_ip 5.120.166.146 191102 port 430 191102 unique_id port 191102 remote_ip 10.8.0.230 191103 username kalantary6037 191103 mac 191103 bytes_out 5069728 191103 bytes_in 44437810 191103 station_ip 83.123.27.77 191103 port 431 191103 unique_id port 191103 remote_ip 10.8.0.50 191105 username soleymani5056 191105 mac 191105 bytes_out 35612 191105 bytes_in 65252 191105 station_ip 5.119.227.192 191105 port 429 191105 unique_id port 191105 remote_ip 10.8.0.226 191106 username godarzi 191106 kill_reason Another user logged on this global unique id 191106 mac 191106 bytes_out 0 191106 bytes_in 0 191106 station_ip 5.202.29.254 191106 port 426 191106 unique_id port 191106 remote_ip 10.8.0.38 191108 username saeed9658 191108 kill_reason Maximum check online fails reached 191108 mac 191108 bytes_out 0 191108 bytes_in 0 191108 station_ip 5.119.206.111 191108 port 440 191108 unique_id port 191110 username alihosseini1 191110 mac 191110 bytes_out 70403 191110 bytes_in 236237 191110 station_ip 5.120.170.81 191110 port 430 191110 unique_id port 191110 remote_ip 10.8.0.118 191113 username kalantary6037 191113 mac 191113 bytes_out 1007707 191113 bytes_in 11416175 191113 station_ip 83.123.27.77 191113 port 431 191113 unique_id port 191113 remote_ip 10.8.0.50 191118 username aminvpn 191118 unique_id port 191118 terminate_cause User-Request 191118 bytes_out 21450370 191118 bytes_in 603851350 191118 station_ip 31.57.124.113 191118 port 15729201 191118 nas_port_type Virtual 191118 remote_ip 5.5.5.70 191120 username alihosseini1 191120 mac 191120 bytes_out 0 191120 bytes_in 0 191120 station_ip 5.120.170.81 191120 port 431 191120 unique_id port 191120 remote_ip 10.8.0.118 191122 username aminvpn 191122 unique_id port 191122 terminate_cause User-Request 191122 bytes_out 335295 191122 bytes_in 4517611 191122 station_ip 31.57.124.113 191122 port 15729205 191081 bytes_out 0 191081 bytes_in 0 191081 station_ip 83.123.12.97 191081 port 438 191081 unique_id port 191081 remote_ip 10.8.0.22 191082 username kharazmi2920 191082 mac 191082 bytes_out 0 191082 bytes_in 0 191082 station_ip 83.123.12.97 191082 port 438 191082 unique_id port 191084 username nilufarrajaei 191084 mac 191084 bytes_out 1296040 191084 bytes_in 6364662 191084 station_ip 83.123.119.241 191084 port 429 191084 unique_id port 191084 remote_ip 10.8.0.194 191091 username zahra1101 191091 mac 191091 bytes_out 2044362 191091 bytes_in 22117360 191091 station_ip 5.120.46.56 191091 port 438 191091 unique_id port 191091 remote_ip 10.8.0.30 191092 username meghdad1616 191092 mac 191092 bytes_out 0 191092 bytes_in 0 191092 station_ip 5.120.166.146 191092 port 438 191092 unique_id port 191092 remote_ip 10.8.0.230 191095 username alihosseini1 191095 mac 191095 bytes_out 42147 191095 bytes_in 44776 191095 station_ip 5.120.170.81 191095 port 429 191095 unique_id port 191095 remote_ip 10.8.0.118 191097 username saeed9658 191097 mac 191097 bytes_out 3465425 191097 bytes_in 26942095 191097 station_ip 5.119.206.111 191097 port 430 191097 unique_id port 191097 remote_ip 10.8.0.162 191101 username rahim 191101 mac 191101 bytes_out 762819 191101 bytes_in 5251282 191101 station_ip 5.120.51.246 191101 port 438 191101 unique_id port 191101 remote_ip 10.8.0.134 191107 username nilufarrajaei 191107 mac 191107 bytes_out 7610 191107 bytes_in 10805 191107 station_ip 151.234.20.250 191107 port 438 191107 unique_id port 191107 remote_ip 10.8.0.194 191115 username fezealinaghi 191115 mac 191115 bytes_out 1340723 191115 bytes_in 13754506 191115 station_ip 83.123.69.132 191115 port 439 191115 unique_id port 191115 remote_ip 10.8.0.202 191116 username motamedi9772 191116 mac 191116 bytes_out 0 191116 bytes_in 0 191116 station_ip 83.123.45.75 191116 port 435 191116 unique_id port 191121 username sabaghnezhad 191121 mac 191121 bytes_out 9166 191121 bytes_in 7320 191121 station_ip 5.209.101.59 191121 port 438 191121 unique_id port 191121 remote_ip 10.8.0.66 191123 username pourshad 191123 mac 191123 bytes_out 554179 191123 bytes_in 4603689 191123 station_ip 5.120.73.74 191123 port 419 191123 unique_id port 191123 remote_ip 10.8.0.42 191125 username meghdad1616 191125 mac 191125 bytes_out 0 191125 bytes_in 0 191125 station_ip 5.120.166.146 191125 port 435 191125 unique_id port 191125 remote_ip 10.8.0.230 191126 username farhad3 191126 mac 191126 bytes_out 2033570 191126 bytes_in 12776441 191126 station_ip 5.120.170.239 191126 port 429 191126 unique_id port 191126 remote_ip 10.8.0.222 191131 username fezealinaghi 191131 mac 191131 bytes_out 1541488 191131 bytes_in 20918886 191131 station_ip 83.123.69.132 191131 port 432 191131 unique_id port 191131 remote_ip 10.8.0.202 191137 username alihosseini1 191137 mac 191137 bytes_out 0 191137 bytes_in 0 191137 station_ip 5.120.1.185 191137 port 438 191137 unique_id port 191137 remote_ip 10.8.0.118 191139 username meghdad1616 191139 mac 191139 bytes_out 26335 191139 bytes_in 30313 191139 station_ip 5.120.166.146 191139 port 432 191139 unique_id port 191139 remote_ip 10.8.0.230 191141 username kalantary6037 191141 mac 191141 bytes_out 471897 191141 bytes_in 2793194 191141 station_ip 83.123.27.77 191141 port 435 191141 unique_id port 191141 remote_ip 10.8.0.50 191148 username motamedi9772 191148 mac 191148 bytes_out 0 191148 bytes_in 0 191117 bytes_out 5594 191117 bytes_in 7851 191117 station_ip 5.120.170.81 191117 port 432 191117 unique_id port 191117 remote_ip 10.8.0.118 191119 username fezealinaghi 191119 mac 191119 bytes_out 140187 191119 bytes_in 277391 191119 station_ip 83.123.69.132 191119 port 429 191119 unique_id port 191119 remote_ip 10.8.0.202 191124 username kalantary6037 191124 mac 191124 bytes_out 973152 191124 bytes_in 10478298 191124 station_ip 83.123.27.77 191124 port 435 191124 unique_id port 191124 remote_ip 10.8.0.50 191127 username zahra1101 191127 kill_reason Another user logged on this global unique id 191127 mac 191127 bytes_out 0 191127 bytes_in 0 191127 station_ip 5.120.26.176 191127 port 430 191127 unique_id port 191127 remote_ip 10.8.0.30 191133 username kalantary6037 191133 mac 191133 bytes_out 355054 191133 bytes_in 1917984 191133 station_ip 83.123.27.77 191133 port 431 191133 unique_id port 191133 remote_ip 10.8.0.50 191134 username kharazmi2920 191134 mac 191134 bytes_out 77534 191134 bytes_in 329369 191134 station_ip 83.123.12.97 191134 port 435 191134 unique_id port 191134 remote_ip 10.8.0.22 191135 username motamedi9772 191135 mac 191135 bytes_out 25524 191135 bytes_in 140062 191135 station_ip 83.123.9.59 191135 port 435 191135 unique_id port 191135 remote_ip 10.8.0.154 191136 username saeed9658 191136 mac 191136 bytes_out 1747646 191136 bytes_in 17838598 191136 station_ip 5.119.206.111 191136 port 439 191136 unique_id port 191136 remote_ip 10.8.0.162 191143 username meghdad1616 191143 mac 191143 bytes_out 13030 191143 bytes_in 20221 191143 station_ip 5.120.166.146 191143 port 429 191143 unique_id port 191143 remote_ip 10.8.0.230 191150 username rezaei 191150 mac 191150 bytes_out 0 191150 bytes_in 0 191150 station_ip 5.120.11.97 191150 port 433 191150 unique_id port 191160 username motamedi9772 191160 mac 191160 bytes_out 0 191160 bytes_in 0 191160 station_ip 83.123.9.59 191160 port 432 191160 unique_id port 191160 remote_ip 10.8.0.154 191164 username motamedi9772 191164 mac 191164 bytes_out 0 191164 bytes_in 0 191164 station_ip 83.123.9.59 191164 port 432 191164 unique_id port 191164 remote_ip 10.8.0.154 191166 username meghdad1616 191166 mac 191166 bytes_out 2058 191166 bytes_in 4335 191166 station_ip 5.120.166.146 191166 port 433 191166 unique_id port 191166 remote_ip 10.8.0.230 191170 username sekonji0496 191170 mac 191170 bytes_out 0 191170 bytes_in 0 191170 station_ip 83.123.36.106 191170 port 429 191170 unique_id port 191170 remote_ip 10.8.0.62 191182 username meghdad1616 191182 mac 191182 bytes_out 0 191182 bytes_in 0 191182 station_ip 5.120.166.146 191182 port 431 191182 unique_id port 191182 remote_ip 10.8.0.230 191187 username alihosseini1 191187 mac 191187 bytes_out 0 191187 bytes_in 0 191187 station_ip 5.120.1.185 191187 port 444 191187 unique_id port 191187 remote_ip 10.8.0.118 191189 username kalantary6037 191189 mac 191189 bytes_out 1335221 191189 bytes_in 18313885 191189 station_ip 83.123.5.169 191189 port 426 191189 unique_id port 191189 remote_ip 10.8.0.50 191193 username aminvpn 191193 mac 191193 bytes_out 3977751 191193 bytes_in 35737627 191193 station_ip 5.119.76.132 191193 port 438 191193 unique_id port 191193 remote_ip 10.8.0.58 191201 username malekpoir 191201 kill_reason Another user logged on this global unique id 191201 mac 191201 bytes_out 0 191201 bytes_in 0 191201 station_ip 5.119.143.18 191201 port 423 191201 unique_id port 191201 remote_ip 10.8.0.18 191202 username sekonji0496 191122 nas_port_type Virtual 191122 remote_ip 5.5.5.70 191128 username meghdad1616 191128 mac 191128 bytes_out 0 191128 bytes_in 0 191128 station_ip 5.120.166.146 191128 port 435 191128 unique_id port 191128 remote_ip 10.8.0.230 191129 username alihosseini1 191129 mac 191129 bytes_out 126094 191129 bytes_in 97013 191129 station_ip 5.120.170.81 191129 port 431 191129 unique_id port 191129 remote_ip 10.8.0.118 191130 username meghdad1616 191130 mac 191130 bytes_out 14797 191130 bytes_in 30352 191130 station_ip 5.120.166.146 191130 port 435 191130 unique_id port 191130 remote_ip 10.8.0.230 191132 username kharazmi2920 191132 mac 191132 bytes_out 5598713 191132 bytes_in 16428797 191132 station_ip 83.123.12.97 191132 port 443 191132 unique_id port 191132 remote_ip 10.8.0.22 191138 username houshang 191138 mac 191138 bytes_out 2162566 191138 bytes_in 26683447 191138 station_ip 5.120.57.236 191138 port 429 191138 unique_id port 191138 remote_ip 10.8.0.82 191140 username alihosseini1 191140 mac 191140 bytes_out 0 191140 bytes_in 0 191140 station_ip 5.120.1.185 191140 port 429 191140 unique_id port 191140 remote_ip 10.8.0.118 191142 username zahra1101 191142 mac 191142 bytes_out 0 191142 bytes_in 0 191142 station_ip 5.120.26.176 191142 port 430 191142 unique_id port 191144 username motamedi9772 191144 kill_reason Another user logged on this global unique id 191144 mac 191144 bytes_out 0 191144 bytes_in 0 191144 station_ip 83.123.9.59 191144 port 438 191144 unique_id port 191144 remote_ip 10.8.0.154 191145 username farhad3 191145 mac 191145 bytes_out 942344 191145 bytes_in 6620652 191145 station_ip 5.120.170.239 191145 port 435 191145 unique_id port 191145 remote_ip 10.8.0.222 191146 username zahra1101 191146 mac 191146 bytes_out 558113 191146 bytes_in 2979376 191146 station_ip 5.120.26.176 191146 port 432 191146 unique_id port 191146 remote_ip 10.8.0.30 191147 username kharazmi2920 191147 kill_reason Another user logged on this global unique id 191147 mac 191147 bytes_out 0 191147 bytes_in 0 191147 station_ip 83.123.12.97 191147 port 443 191147 unique_id port 191147 remote_ip 10.8.0.22 191149 username motamedi9772 191149 mac 191149 bytes_out 0 191149 bytes_in 0 191149 station_ip 83.123.9.59 191149 port 438 191149 unique_id port 191149 remote_ip 10.8.0.154 191153 username motamedi9772 191153 mac 191153 bytes_out 0 191153 bytes_in 0 191153 station_ip 83.123.9.59 191153 port 433 191153 unique_id port 191153 remote_ip 10.8.0.154 191155 username motamedi9772 191155 mac 191155 bytes_out 0 191155 bytes_in 0 191155 station_ip 83.123.9.59 191155 port 438 191155 unique_id port 191155 remote_ip 10.8.0.154 191157 username motamedi9772 191157 mac 191157 bytes_out 0 191157 bytes_in 0 191157 station_ip 83.123.9.59 191157 port 438 191157 unique_id port 191157 remote_ip 10.8.0.154 191159 username motamedi9772 191159 mac 191159 bytes_out 0 191159 bytes_in 0 191159 station_ip 83.123.9.59 191159 port 432 191159 unique_id port 191159 remote_ip 10.8.0.154 191161 username motamedi9772 191161 mac 191161 bytes_out 0 191161 bytes_in 0 191161 station_ip 83.123.9.59 191161 port 432 191161 unique_id port 191161 remote_ip 10.8.0.154 191162 username motamedi9772 191162 mac 191162 bytes_out 0 191162 bytes_in 0 191162 station_ip 83.123.9.59 191162 port 432 191162 unique_id port 191162 remote_ip 10.8.0.154 191165 username motamedi9772 191165 mac 191165 bytes_out 0 191165 bytes_in 0 191165 station_ip 83.123.9.59 191148 station_ip 83.123.9.59 191148 port 438 191148 unique_id port 191151 username motamedi9772 191151 mac 191151 bytes_out 0 191151 bytes_in 0 191151 station_ip 83.123.9.59 191151 port 449 191151 unique_id port 191151 remote_ip 10.8.0.154 191152 username meghdad1616 191152 mac 191152 bytes_out 29592 191152 bytes_in 45963 191152 station_ip 37.156.154.37 191152 port 447 191152 unique_id port 191152 remote_ip 10.8.0.230 191154 username motamedi9772 191154 mac 191154 bytes_out 0 191154 bytes_in 0 191154 station_ip 83.123.9.59 191154 port 433 191154 unique_id port 191154 remote_ip 10.8.0.154 191156 username kalantary6037 191156 mac 191156 bytes_out 408724 191156 bytes_in 2080646 191156 station_ip 83.123.38.85 191156 port 432 191156 unique_id port 191156 remote_ip 10.8.0.50 191158 username barzegar8595 191158 mac 191158 bytes_out 0 191158 bytes_in 0 191158 station_ip 37.156.154.37 191158 port 433 191158 unique_id port 191158 remote_ip 10.8.0.114 191163 username sekonji0496 191163 mac 191163 bytes_out 393013 191163 bytes_in 4871105 191163 station_ip 83.123.36.106 191163 port 444 191163 unique_id port 191163 remote_ip 10.8.0.62 191167 username alirezaza 191167 unique_id port 191167 terminate_cause User-Request 191167 bytes_out 5216473 191167 bytes_in 145106265 191167 station_ip 5.120.87.219 191167 port 15729206 191167 nas_port_type Virtual 191167 remote_ip 5.5.5.64 191171 username shadkam 191171 kill_reason Another user logged on this global unique id 191171 mac 191171 bytes_out 0 191171 bytes_in 0 191171 station_ip 217.165.72.201 191171 port 431 191171 unique_id port 191171 remote_ip 10.8.0.186 191172 username aminvpn 191172 unique_id port 191172 terminate_cause User-Request 191172 bytes_out 21634210 191172 bytes_in 738756548 191172 station_ip 5.119.205.93 191172 port 15729184 191172 nas_port_type Virtual 191172 remote_ip 5.5.5.66 191174 username soleymani5056 191174 mac 191174 bytes_out 187185 191174 bytes_in 802684 191174 station_ip 5.119.67.156 191174 port 445 191174 unique_id port 191174 remote_ip 10.8.0.226 191177 username shadkam 191177 mac 191177 bytes_out 0 191177 bytes_in 0 191177 station_ip 217.165.72.201 191177 port 430 191177 unique_id port 191177 remote_ip 10.8.0.186 191178 username shadkam 191178 mac 191178 bytes_out 0 191178 bytes_in 0 191178 station_ip 217.165.72.201 191178 port 430 191178 unique_id port 191178 remote_ip 10.8.0.186 191179 username aminvpn 191179 unique_id port 191179 terminate_cause Lost-Carrier 191179 bytes_out 14624 191179 bytes_in 43327 191179 station_ip 5.119.205.93 191179 port 15729207 191179 nas_port_type Virtual 191179 remote_ip 5.5.5.84 191183 username shadkam 191183 mac 191183 bytes_out 8679 191183 bytes_in 9351 191183 station_ip 217.165.72.201 191183 port 430 191183 unique_id port 191183 remote_ip 10.8.0.186 191184 username farhad3 191184 mac 191184 bytes_out 0 191184 bytes_in 0 191184 station_ip 5.120.170.239 191184 port 432 191184 unique_id port 191184 remote_ip 10.8.0.222 191185 username alihosseini1 191185 mac 191185 bytes_out 45224 191185 bytes_in 43893 191185 station_ip 5.120.1.185 191185 port 431 191185 unique_id port 191185 remote_ip 10.8.0.118 191188 username aminvpn 191188 unique_id port 191188 terminate_cause Lost-Carrier 191188 bytes_out 1594209 191188 bytes_in 31801032 191188 station_ip 5.119.205.93 191188 port 15729208 191188 nas_port_type Virtual 191188 remote_ip 5.5.5.63 191190 username nilufarrajaei 191190 mac 191190 bytes_out 7081410 191190 bytes_in 7761200 191190 station_ip 2.183.150.254 191165 port 432 191165 unique_id port 191165 remote_ip 10.8.0.154 191168 username fezealinaghi 191168 mac 191168 bytes_out 383135 191168 bytes_in 1601405 191168 station_ip 83.123.107.212 191168 port 429 191168 unique_id port 191168 remote_ip 10.8.0.202 191169 username motamedi9772 191169 mac 191169 bytes_out 11064 191169 bytes_in 14575 191169 station_ip 83.123.9.59 191169 port 432 191169 unique_id port 191169 remote_ip 10.8.0.154 191173 username alihosseini1 191173 mac 191173 bytes_out 317227 191173 bytes_in 299731 191173 station_ip 5.120.1.185 191173 port 430 191173 unique_id port 191173 remote_ip 10.8.0.118 191175 username zahra1101 191175 mac 191175 bytes_out 113406 191175 bytes_in 367361 191175 station_ip 5.120.26.176 191175 port 446 191175 unique_id port 191175 remote_ip 10.8.0.30 191176 username shadkam 191176 mac 191176 bytes_out 0 191176 bytes_in 0 191176 station_ip 217.165.72.201 191176 port 431 191176 unique_id port 191180 username godarzi 191180 mac 191180 bytes_out 0 191180 bytes_in 0 191180 station_ip 5.202.29.254 191180 port 426 191180 unique_id port 191181 username sekonji0496 191181 mac 191181 bytes_out 0 191181 bytes_in 0 191181 station_ip 83.123.36.106 191181 port 430 191181 unique_id port 191181 remote_ip 10.8.0.62 191186 username meghdad1616 191186 mac 191186 bytes_out 0 191186 bytes_in 0 191186 station_ip 5.120.166.146 191186 port 431 191186 unique_id port 191186 remote_ip 10.8.0.230 191192 username meghdad1616 191192 mac 191192 bytes_out 2575 191192 bytes_in 4706 191192 station_ip 5.120.166.146 191192 port 446 191192 unique_id port 191192 remote_ip 10.8.0.230 191195 username shadkam 191195 mac 191195 bytes_out 0 191195 bytes_in 0 191195 station_ip 217.165.72.201 191195 port 447 191195 unique_id port 191195 remote_ip 10.8.0.186 191196 username meghdad1616 191196 mac 191196 bytes_out 0 191196 bytes_in 0 191196 station_ip 5.120.166.146 191196 port 447 191196 unique_id port 191196 remote_ip 10.8.0.230 191200 username hatami 191200 mac 191200 bytes_out 1039355 191200 bytes_in 7854091 191200 station_ip 151.235.102.98 191200 port 431 191200 unique_id port 191200 remote_ip 10.8.0.98 191208 username meghdad1616 191208 mac 191208 bytes_out 0 191208 bytes_in 0 191208 station_ip 5.120.166.146 191208 port 423 191208 unique_id port 191208 remote_ip 10.8.0.230 191210 username shadkam 191210 mac 191210 bytes_out 404712 191210 bytes_in 2548579 191210 station_ip 217.165.72.201 191210 port 447 191210 unique_id port 191210 remote_ip 10.8.0.186 191211 username shadkam 191211 mac 191211 bytes_out 0 191211 bytes_in 0 191211 station_ip 217.165.72.201 191211 port 423 191211 unique_id port 191211 remote_ip 10.8.0.186 191218 username sekonji0496 191218 mac 191218 bytes_out 2392047 191218 bytes_in 26216854 191218 station_ip 83.123.36.106 191218 port 431 191218 unique_id port 191218 remote_ip 10.8.0.62 191220 username motamedi9772 191220 mac 191220 bytes_out 0 191220 bytes_in 0 191220 station_ip 83.123.9.59 191220 port 445 191220 unique_id port 191223 username motamedi9772 191223 mac 191223 bytes_out 0 191223 bytes_in 0 191223 station_ip 83.123.9.59 191223 port 443 191223 unique_id port 191223 remote_ip 10.8.0.154 191226 username motamedi9772 191226 mac 191226 bytes_out 0 191226 bytes_in 0 191226 station_ip 83.123.9.59 191226 port 431 191226 unique_id port 191226 remote_ip 10.8.0.154 191233 username motamedi9772 191233 mac 191190 port 448 191190 unique_id port 191190 remote_ip 10.8.0.194 191191 username shadkam 191191 mac 191191 bytes_out 0 191191 bytes_in 0 191191 station_ip 217.165.72.201 191191 port 446 191191 unique_id port 191191 remote_ip 10.8.0.186 191194 username shadkam 191194 mac 191194 bytes_out 0 191194 bytes_in 0 191194 station_ip 217.165.72.201 191194 port 446 191194 unique_id port 191194 remote_ip 10.8.0.186 191197 username milan 191197 kill_reason Another user logged on this global unique id 191197 mac 191197 bytes_out 0 191197 bytes_in 0 191197 station_ip 5.119.23.34 191197 port 425 191197 unique_id port 191197 remote_ip 10.8.0.182 191198 username aminvpn 191198 mac 191198 bytes_out 393405 191198 bytes_in 646560 191198 station_ip 5.119.76.132 191198 port 438 191198 unique_id port 191198 remote_ip 10.8.0.58 191199 username meghdad1616 191199 mac 191199 bytes_out 0 191199 bytes_in 0 191199 station_ip 5.120.166.146 191199 port 438 191199 unique_id port 191199 remote_ip 10.8.0.230 191204 username kharazmi2920 191204 mac 191204 bytes_out 0 191204 bytes_in 0 191204 station_ip 83.123.12.97 191204 port 443 191204 unique_id port 191209 username meghdad1616 191209 mac 191209 bytes_out 0 191209 bytes_in 0 191209 station_ip 5.120.166.146 191209 port 423 191209 unique_id port 191209 remote_ip 10.8.0.230 191212 username meghdad1616 191212 mac 191212 bytes_out 0 191212 bytes_in 0 191212 station_ip 5.120.166.146 191212 port 438 191212 unique_id port 191212 remote_ip 10.8.0.230 191213 username meghdad1616 191213 mac 191213 bytes_out 18776 191213 bytes_in 25659 191213 station_ip 5.120.166.146 191213 port 438 191213 unique_id port 191213 remote_ip 10.8.0.230 191215 username meghdad1616 191215 mac 191215 bytes_out 82857 191215 bytes_in 290202 191215 station_ip 5.120.166.146 191215 port 443 191215 unique_id port 191215 remote_ip 10.8.0.230 191216 username milan 191216 kill_reason Another user logged on this global unique id 191216 mac 191216 bytes_out 0 191216 bytes_in 0 191216 station_ip 5.119.23.34 191216 port 425 191216 unique_id port 191217 username nilufarrajaei 191217 mac 191217 bytes_out 11633020 191217 bytes_in 24772660 191217 station_ip 2.183.150.254 191217 port 426 191217 unique_id port 191217 remote_ip 10.8.0.194 191221 username khademi 191221 kill_reason Another user logged on this global unique id 191221 mac 191221 bytes_out 0 191221 bytes_in 0 191221 station_ip 83.123.127.82 191221 port 424 191221 unique_id port 191221 remote_ip 10.8.0.14 191222 username meghdad1616 191222 mac 191222 bytes_out 0 191222 bytes_in 0 191222 station_ip 5.120.166.146 191222 port 431 191222 unique_id port 191222 remote_ip 10.8.0.230 191225 username shadkam 191225 mac 191225 bytes_out 238193 191225 bytes_in 1308448 191225 station_ip 217.165.72.201 191225 port 423 191225 unique_id port 191225 remote_ip 10.8.0.186 191237 username arash 191237 mac 191237 bytes_out 2602447 191237 bytes_in 28697771 191237 station_ip 37.27.15.194 191237 port 435 191237 unique_id port 191237 remote_ip 10.8.0.250 191239 username zahra1101 191239 mac 191239 bytes_out 24207079 191239 bytes_in 39498909 191239 station_ip 5.120.26.176 191239 port 429 191239 unique_id port 191239 remote_ip 10.8.0.30 191248 username hosseine 191248 mac 191248 bytes_out 0 191248 bytes_in 0 191248 station_ip 83.123.109.117 191248 port 442 191248 unique_id port 191249 username motamedi9772 191249 mac 191249 bytes_out 3276250 191249 bytes_in 34080188 191202 mac 191202 bytes_out 4051400 191202 bytes_in 49293028 191202 station_ip 83.123.36.106 191202 port 433 191202 unique_id port 191202 remote_ip 10.8.0.62 191203 username malekpoir 191203 mac 191203 bytes_out 0 191203 bytes_in 0 191203 station_ip 5.119.143.18 191203 port 423 191203 unique_id port 191205 username motamedi9772 191205 kill_reason Another user logged on this global unique id 191205 mac 191205 bytes_out 0 191205 bytes_in 0 191205 station_ip 83.123.9.59 191205 port 445 191205 unique_id port 191205 remote_ip 10.8.0.154 191206 username meghdad1616 191206 mac 191206 bytes_out 0 191206 bytes_in 0 191206 station_ip 5.120.166.146 191206 port 433 191206 unique_id port 191206 remote_ip 10.8.0.230 191207 username kalantary6037 191207 mac 191207 bytes_out 167088 191207 bytes_in 1235626 191207 station_ip 83.123.43.225 191207 port 423 191207 unique_id port 191207 remote_ip 10.8.0.50 191214 username rahim 191214 mac 191214 bytes_out 5873920 191214 bytes_in 31365222 191214 station_ip 5.120.51.246 191214 port 439 191214 unique_id port 191214 remote_ip 10.8.0.134 191219 username alihosseini1 191219 mac 191219 bytes_out 6698921 191219 bytes_in 1351028 191219 station_ip 5.120.1.185 191219 port 444 191219 unique_id port 191219 remote_ip 10.8.0.118 191224 username rahim 191224 mac 191224 bytes_out 375013 191224 bytes_in 1055143 191224 station_ip 5.120.51.246 191224 port 426 191224 unique_id port 191224 remote_ip 10.8.0.134 191227 username motamedi9772 191227 mac 191227 bytes_out 0 191227 bytes_in 0 191227 station_ip 83.123.9.59 191227 port 423 191227 unique_id port 191227 remote_ip 10.8.0.154 191228 username motamedi9772 191228 mac 191228 bytes_out 0 191228 bytes_in 0 191228 station_ip 83.123.9.59 191228 port 423 191228 unique_id port 191228 remote_ip 10.8.0.154 191229 username motamedi9772 191229 mac 191229 bytes_out 0 191229 bytes_in 0 191229 station_ip 83.123.9.59 191229 port 423 191229 unique_id port 191229 remote_ip 10.8.0.154 191230 username nilufarrajaei 191230 mac 191230 bytes_out 5805875 191230 bytes_in 8697312 191230 station_ip 2.183.150.254 191230 port 439 191230 unique_id port 191230 remote_ip 10.8.0.194 191231 username motamedi9772 191231 mac 191231 bytes_out 0 191231 bytes_in 0 191231 station_ip 83.123.9.59 191231 port 439 191231 unique_id port 191231 remote_ip 10.8.0.154 191232 username motamedi9772 191232 mac 191232 bytes_out 0 191232 bytes_in 0 191232 station_ip 83.123.9.59 191232 port 439 191232 unique_id port 191232 remote_ip 10.8.0.154 191235 username aminvpn 191235 mac 191235 bytes_out 409832 191235 bytes_in 2714287 191235 station_ip 5.119.76.132 191235 port 423 191235 unique_id port 191235 remote_ip 10.8.0.58 191238 username shadkam 191238 mac 191238 bytes_out 155982 191238 bytes_in 486581 191238 station_ip 217.165.72.201 191238 port 431 191238 unique_id port 191238 remote_ip 10.8.0.186 191241 username khademi 191241 kill_reason Another user logged on this global unique id 191241 mac 191241 bytes_out 0 191241 bytes_in 0 191241 station_ip 83.123.127.82 191241 port 424 191241 unique_id port 191242 username rahim 191242 kill_reason Another user logged on this global unique id 191242 mac 191242 bytes_out 0 191242 bytes_in 0 191242 station_ip 5.120.51.246 191242 port 426 191242 unique_id port 191242 remote_ip 10.8.0.134 191243 username ahmadi1 191243 mac 191243 bytes_out 24860 191243 bytes_in 74430 191243 station_ip 83.123.18.219 191243 port 429 191243 unique_id port 191233 bytes_out 0 191233 bytes_in 0 191233 station_ip 83.123.9.59 191233 port 439 191233 unique_id port 191233 remote_ip 10.8.0.154 191234 username akbari0070 191234 mac 191234 bytes_out 2723896 191234 bytes_in 19019113 191234 station_ip 83.123.71.104 191234 port 430 191234 unique_id port 191234 remote_ip 10.8.0.166 191236 username godarzi 191236 mac 191236 bytes_out 3466623 191236 bytes_in 17600906 191236 station_ip 5.202.29.254 191236 port 446 191236 unique_id port 191236 remote_ip 10.8.0.38 191240 username hosseine 191240 kill_reason Another user logged on this global unique id 191240 mac 191240 bytes_out 0 191240 bytes_in 0 191240 station_ip 83.123.109.117 191240 port 442 191240 unique_id port 191240 remote_ip 10.8.0.54 191244 username pourshad 191244 kill_reason Another user logged on this global unique id 191244 mac 191244 bytes_out 0 191244 bytes_in 0 191244 station_ip 5.120.73.74 191244 port 419 191244 unique_id port 191244 remote_ip 10.8.0.42 191245 username arash 191245 mac 191245 bytes_out 0 191245 bytes_in 0 191245 station_ip 37.27.15.194 191245 port 429 191245 unique_id port 191245 remote_ip 10.8.0.250 191250 username khademi 191250 kill_reason Another user logged on this global unique id 191250 mac 191250 bytes_out 0 191250 bytes_in 0 191250 station_ip 83.123.127.82 191250 port 424 191250 unique_id port 191251 username shadkam 191251 mac 191251 bytes_out 1806816 191251 bytes_in 11852423 191251 station_ip 217.165.72.201 191251 port 423 191251 unique_id port 191251 remote_ip 10.8.0.186 191252 username fezealinaghi 191252 kill_reason Another user logged on this global unique id 191252 mac 191252 bytes_out 0 191252 bytes_in 0 191252 station_ip 83.123.111.128 191252 port 433 191252 unique_id port 191252 remote_ip 10.8.0.202 191254 username khademi 191254 kill_reason Another user logged on this global unique id 191254 mac 191254 bytes_out 0 191254 bytes_in 0 191254 station_ip 83.123.127.82 191254 port 424 191254 unique_id port 191255 username sabaghnezhad 191255 mac 191255 bytes_out 540659 191255 bytes_in 2768389 191255 station_ip 5.209.101.59 191255 port 438 191255 unique_id port 191255 remote_ip 10.8.0.66 191256 username aminvpn 191256 mac 191256 bytes_out 371248 191256 bytes_in 760342 191256 station_ip 5.119.76.132 191256 port 431 191256 unique_id port 191256 remote_ip 10.8.0.58 191257 username barzegar8595 191257 mac 191257 bytes_out 819581 191257 bytes_in 6329270 191257 station_ip 37.156.154.37 191257 port 429 191257 unique_id port 191257 remote_ip 10.8.0.114 191261 username khademi 191291 bytes_in 2788776 191261 kill_reason Another user logged on this global unique id 191261 mac 191261 bytes_out 0 191261 bytes_in 0 191261 station_ip 83.123.127.82 191261 port 424 191261 unique_id port 191271 username nilufarrajaei 191271 mac 191271 bytes_out 0 191271 bytes_in 0 191271 station_ip 83.123.96.241 191271 port 435 191271 unique_id port 191271 remote_ip 10.8.0.194 191272 username aminvpn 191272 mac 191272 bytes_out 2533853 191272 bytes_in 17422799 191272 station_ip 83.123.65.56 191272 port 438 191272 unique_id port 191272 remote_ip 10.8.0.58 191274 username aminvpn 191274 mac 191274 bytes_out 0 191274 bytes_in 0 191274 station_ip 83.123.65.56 191274 port 438 191274 unique_id port 191274 remote_ip 10.8.0.58 191275 username nilufarrajaei 191275 mac 191275 bytes_out 254689 191275 bytes_in 459893 191275 station_ip 83.123.96.241 191275 port 439 191275 unique_id port 191275 remote_ip 10.8.0.194 191285 username khademi 191285 kill_reason Another user logged on this global unique id 191285 mac 191243 remote_ip 10.8.0.94 191246 username rahim 191246 mac 191246 bytes_out 0 191246 bytes_in 0 191246 station_ip 5.120.51.246 191246 port 426 191246 unique_id port 191247 username pourshad 191247 kill_reason Another user logged on this global unique id 191247 mac 191247 bytes_out 0 191247 bytes_in 0 191247 station_ip 5.120.73.74 191247 port 419 191247 unique_id port 191258 username aminvpn 191258 mac 191258 bytes_out 560789 191258 bytes_in 1675893 191258 station_ip 5.119.76.132 191258 port 438 191258 unique_id port 191258 remote_ip 10.8.0.58 191263 username nilufarrajaei 191263 mac 191263 bytes_out 30791714 191263 bytes_in 3789860 191263 station_ip 2.183.150.254 191263 port 435 191263 unique_id port 191263 remote_ip 10.8.0.194 191278 username khademi 191278 kill_reason Another user logged on this global unique id 191278 mac 191278 bytes_out 0 191278 bytes_in 0 191278 station_ip 83.123.127.82 191278 port 424 191278 unique_id port 191280 username farhad3 191280 kill_reason Another user logged on this global unique id 191280 mac 191280 bytes_out 0 191280 bytes_in 0 191280 station_ip 5.120.170.239 191280 port 423 191280 unique_id port 191280 remote_ip 10.8.0.222 191281 username rahim 191281 mac 191281 bytes_out 3491288 191281 bytes_in 22810912 191281 station_ip 5.120.51.246 191281 port 430 191281 unique_id port 191281 remote_ip 10.8.0.134 191282 username motamedi9772 191282 mac 191282 bytes_out 1190606 191282 bytes_in 9837319 191282 station_ip 83.123.48.87 191282 port 432 191282 unique_id port 191282 remote_ip 10.8.0.154 191283 username pourshad 191283 mac 191283 bytes_out 0 191283 bytes_in 0 191283 station_ip 5.120.73.74 191283 port 419 191283 unique_id port 191284 username fezealinaghi 191284 kill_reason Another user logged on this global unique id 191284 mac 191284 bytes_out 0 191284 bytes_in 0 191284 station_ip 83.123.111.128 191284 port 433 191284 unique_id port 191287 username farhad3 191287 mac 191287 bytes_out 0 191287 bytes_in 0 191287 station_ip 5.120.170.239 191287 port 423 191287 unique_id port 191289 username aminvpn 191289 kill_reason Another user logged on this global unique id 191289 mac 191289 bytes_out 0 191289 bytes_in 0 191289 station_ip 5.119.76.132 191289 port 435 191289 unique_id port 191289 remote_ip 10.8.0.58 191290 username khademi 191290 kill_reason Another user logged on this global unique id 191290 mac 191290 bytes_out 0 191290 bytes_in 0 191290 station_ip 83.123.127.82 191290 port 424 191290 unique_id port 191291 username kamali3 191291 mac 191291 bytes_out 460044 191291 station_ip 83.123.35.228 191291 port 423 191291 unique_id port 191291 remote_ip 10.8.0.150 191297 username alikomsari 191297 mac 191297 bytes_out 5019079 191297 bytes_in 30665781 191297 station_ip 5.119.159.224 191297 port 429 191297 unique_id port 191297 remote_ip 10.8.0.214 191300 username farhad3 191300 mac 191300 bytes_out 3671165 191300 bytes_in 34244835 191300 station_ip 5.120.170.239 191300 port 419 191300 unique_id port 191300 remote_ip 10.8.0.222 191302 username milan 191302 kill_reason Another user logged on this global unique id 191302 mac 191302 bytes_out 0 191302 bytes_in 0 191302 station_ip 5.119.23.34 191302 port 425 191302 unique_id port 191303 username alikomsari 191303 mac 191303 bytes_out 184584 191303 bytes_in 187031 191303 station_ip 5.119.159.224 191303 port 419 191303 unique_id port 191303 remote_ip 10.8.0.214 191309 username nilufarrajaei 191309 mac 191309 bytes_out 21201 191309 bytes_in 60240 191309 station_ip 2.183.150.254 191249 station_ip 83.123.9.59 191249 port 439 191249 unique_id port 191249 remote_ip 10.8.0.154 191253 username nilufarrajaei 191253 mac 191253 bytes_out 24224904 191253 bytes_in 33078879 191253 station_ip 2.183.150.254 191253 port 443 191253 unique_id port 191253 remote_ip 10.8.0.194 191259 username aminvpn 191259 mac 191259 bytes_out 0 191259 bytes_in 0 191259 station_ip 83.123.65.56 191259 port 429 191259 unique_id port 191259 remote_ip 10.8.0.58 191260 username aminvpn 191260 mac 191260 bytes_out 0 191260 bytes_in 0 191260 station_ip 5.119.76.132 191260 port 431 191260 unique_id port 191260 remote_ip 10.8.0.58 191262 username motamedi9772 191262 mac 191262 bytes_out 74035 191262 bytes_in 58730 191262 station_ip 83.123.104.71 191262 port 431 191262 unique_id port 191262 remote_ip 10.8.0.154 191264 username farhad3 191264 mac 191264 bytes_out 10535545 191264 bytes_in 49082550 191264 station_ip 5.120.170.239 191264 port 432 191264 unique_id port 191264 remote_ip 10.8.0.222 191265 username farhad3 191265 mac 191265 bytes_out 0 191265 bytes_in 0 191265 station_ip 5.120.170.239 191265 port 432 191265 unique_id port 191265 remote_ip 10.8.0.222 191266 username nilufarrajaei 191266 mac 191266 bytes_out 323203 191266 bytes_in 884870 191266 station_ip 2.183.150.254 191266 port 431 191266 unique_id port 191266 remote_ip 10.8.0.194 191267 username fezealinaghi 191267 kill_reason Another user logged on this global unique id 191267 mac 191267 bytes_out 0 191267 bytes_in 0 191267 station_ip 83.123.111.128 191267 port 433 191267 unique_id port 191268 username shadkam 191268 mac 191268 bytes_out 20355313 191268 bytes_in 44927500 191268 station_ip 217.165.72.201 191268 port 423 191268 unique_id port 191268 remote_ip 10.8.0.186 191269 username alihosseini1 191269 mac 191269 bytes_out 12836 191269 bytes_in 23879 191269 station_ip 5.120.84.193 191269 port 423 191269 unique_id port 191269 remote_ip 10.8.0.118 191270 username nilufarrajaei 191270 mac 191270 bytes_out 454611 191270 bytes_in 2350299 191270 station_ip 83.123.96.241 191270 port 431 191270 unique_id port 191270 remote_ip 10.8.0.194 191273 username aminvpn 191273 mac 191273 bytes_out 0 191273 bytes_in 0 191273 station_ip 5.119.76.132 191273 port 435 191273 unique_id port 191273 remote_ip 10.8.0.58 191276 username nilufarrajaei 191276 mac 191276 bytes_out 53549 191276 bytes_in 86382 191276 station_ip 2.183.150.254 191276 port 438 191276 unique_id port 191276 remote_ip 10.8.0.194 191277 username khademi 191277 kill_reason Another user logged on this global unique id 191277 mac 191277 bytes_out 0 191277 bytes_in 0 191277 station_ip 83.123.127.82 191277 port 424 191277 unique_id port 191279 username soleymani5056 191279 mac 191279 bytes_out 68070 191279 bytes_in 181370 191279 station_ip 5.119.43.35 191279 port 438 191279 unique_id port 191279 remote_ip 10.8.0.226 191286 username mosi 191286 kill_reason Another user logged on this global unique id 191286 mac 191286 bytes_out 0 191286 bytes_in 0 191286 station_ip 5.233.55.100 191286 port 426 191286 unique_id port 191286 remote_ip 10.8.0.142 191294 username fezealinaghi 191294 mac 191294 bytes_out 0 191294 bytes_in 0 191294 station_ip 83.123.111.128 191294 port 433 191294 unique_id port 191298 username pourshad 191298 mac 191298 bytes_out 1880060 191298 bytes_in 37316324 191298 station_ip 5.120.73.74 191298 port 423 191298 unique_id port 191298 remote_ip 10.8.0.42 191301 username farhad3 191301 mac 191301 bytes_out 0 191285 bytes_out 0 191285 bytes_in 0 191285 station_ip 83.123.127.82 191285 port 424 191285 unique_id port 191288 username pourshad 191288 mac 191288 bytes_out 63048 191288 bytes_in 298830 191288 station_ip 5.120.73.74 191288 port 419 191288 unique_id port 191288 remote_ip 10.8.0.42 191292 username aminvpn 191292 kill_reason Another user logged on this global unique id 191292 mac 191292 bytes_out 0 191292 bytes_in 0 191292 station_ip 5.119.76.132 191292 port 435 191292 unique_id port 191293 username naeimeh 191293 mac 191293 bytes_out 909293 191293 bytes_in 6912588 191293 station_ip 83.123.36.74 191293 port 430 191293 unique_id port 191293 remote_ip 10.8.0.78 191295 username pourshad 191295 mac 191295 bytes_out 81279 191295 bytes_in 109078 191295 station_ip 5.120.73.74 191295 port 423 191295 unique_id port 191295 remote_ip 10.8.0.42 191296 username jafari 191296 kill_reason Another user logged on this global unique id 191296 mac 191296 bytes_out 0 191296 bytes_in 0 191296 station_ip 89.32.100.188 191296 port 431 191296 unique_id port 191296 remote_ip 10.8.0.178 191299 username naeimeh 191299 mac 191299 bytes_out 1211403 191299 bytes_in 13468685 191299 station_ip 83.123.36.74 191299 port 432 191299 unique_id port 191299 remote_ip 10.8.0.78 191305 username farhad3 191305 mac 191305 bytes_out 0 191305 bytes_in 0 191305 station_ip 5.120.170.239 191305 port 432 191305 unique_id port 191305 remote_ip 10.8.0.222 191306 username nilufarrajaei 191306 mac 191306 bytes_out 13536 191306 bytes_in 20535 191306 station_ip 2.183.150.254 191306 port 419 191306 unique_id port 191306 remote_ip 10.8.0.194 191307 username mammad 191307 unique_id port 191307 terminate_cause User-Request 191307 bytes_out 17363753 191307 bytes_in 177088330 191307 station_ip 5.233.72.83 191307 port 15729210 191307 nas_port_type Virtual 191307 remote_ip 5.5.5.62 191311 username rezaei 191311 mac 191311 bytes_out 16120 191311 bytes_in 137578 191311 station_ip 5.120.11.97 191311 port 433 191311 unique_id port 191311 remote_ip 10.8.0.198 191317 username hajghani 191317 mac 191317 bytes_out 0 191317 bytes_in 0 191317 station_ip 93.114.28.71 191317 port 429 191317 unique_id port 191322 username mansour 191322 mac 191322 bytes_out 625946 191322 bytes_in 7309339 191322 station_ip 5.202.10.192 191322 port 423 191322 unique_id port 191322 remote_ip 10.8.0.10 191326 username mostafa_es78 191326 kill_reason Another user logged on this global unique id 191326 mac 191326 bytes_out 0 191326 bytes_in 0 191326 station_ip 83.122.122.18 191326 port 430 191326 unique_id port 191326 remote_ip 10.8.0.34 191327 username mostafa_es78 191327 mac 191327 bytes_out 0 191327 bytes_in 0 191327 station_ip 83.122.122.18 191327 port 430 191327 unique_id port 191332 username meghdad1616 191332 kill_reason Another user logged on this global unique id 191332 mac 191332 bytes_out 0 191332 bytes_in 0 191332 station_ip 5.120.166.146 191332 port 423 191332 unique_id port 191332 remote_ip 10.8.0.230 191335 username jafari 191335 mac 191335 bytes_out 0 191335 bytes_in 0 191335 station_ip 89.32.100.188 191335 port 431 191335 unique_id port 191340 username hosseine 191340 kill_reason Another user logged on this global unique id 191340 mac 191340 bytes_out 0 191340 bytes_in 0 191340 station_ip 83.123.109.117 191340 port 419 191340 unique_id port 191340 remote_ip 10.8.0.54 191342 username hosseine 191342 kill_reason Another user logged on this global unique id 191342 mac 191342 bytes_out 0 191342 bytes_in 0 191342 station_ip 83.123.109.117 191342 port 419 191301 bytes_in 0 191301 station_ip 5.120.170.239 191301 port 432 191301 unique_id port 191301 remote_ip 10.8.0.222 191304 username aminvpn 191304 mac 191304 bytes_out 0 191304 bytes_in 0 191304 station_ip 5.119.76.132 191304 port 435 191304 unique_id port 191308 username mammad 191308 unique_id port 191308 terminate_cause User-Request 191308 bytes_out 0 191308 bytes_in 0 191308 station_ip 5.233.72.83 191308 port 15729213 191308 nas_port_type Virtual 191308 remote_ip 5.5.5.62 191312 username hajghani 191312 kill_reason Another user logged on this global unique id 191312 mac 191312 bytes_out 0 191312 bytes_in 0 191312 station_ip 93.114.28.71 191312 port 429 191312 unique_id port 191312 remote_ip 10.8.0.106 191313 username nilufarrajaei 191313 mac 191313 bytes_out 7302 191313 bytes_in 6915 191313 station_ip 2.183.150.254 191313 port 425 191313 unique_id port 191313 remote_ip 10.8.0.194 191318 username farhad3 191318 mac 191318 bytes_out 3702852 191318 bytes_in 40391360 191318 station_ip 5.120.170.239 191318 port 419 191318 unique_id port 191318 remote_ip 10.8.0.222 191319 username naeimeh 191319 mac 191319 bytes_out 732172 191319 bytes_in 7766036 191319 station_ip 83.123.36.74 191319 port 425 191319 unique_id port 191319 remote_ip 10.8.0.78 191320 username farhad3 191320 mac 191320 bytes_out 162716 191320 bytes_in 651902 191320 station_ip 5.120.170.239 191320 port 419 191320 unique_id port 191320 remote_ip 10.8.0.222 191323 username rezaei 191323 mac 191323 bytes_out 317238 191323 bytes_in 2567194 191323 station_ip 5.120.11.97 191323 port 419 191323 unique_id port 191323 remote_ip 10.8.0.198 191324 username farhad3 191324 mac 191324 bytes_out 266701 191324 bytes_in 1040132 191324 station_ip 5.120.51.126 191324 port 423 191324 unique_id port 191324 remote_ip 10.8.0.222 191329 username farhad3 191329 mac 191329 bytes_out 0 191329 bytes_in 0 191329 station_ip 5.120.51.126 191329 port 419 191329 unique_id port 191331 username farhad3 191331 mac 191331 bytes_out 2651426 191331 bytes_in 6193123 191331 station_ip 5.120.51.126 191331 port 419 191331 unique_id port 191331 remote_ip 10.8.0.222 191333 username sabaghnezhad 191333 mac 191333 bytes_out 208428 191333 bytes_in 267339 191333 station_ip 83.123.10.26 191333 port 419 191333 unique_id port 191333 remote_ip 10.8.0.66 191336 username nilufarrajaei 191336 mac 191336 bytes_out 3051 191336 bytes_in 5431 191336 station_ip 2.183.150.254 191336 port 419 191336 unique_id port 191336 remote_ip 10.8.0.194 191337 username mohammadjavad 191337 kill_reason Another user logged on this global unique id 191337 mac 191337 bytes_out 0 191337 bytes_in 0 191337 station_ip 83.123.23.88 191337 port 419 191337 unique_id port 191337 remote_ip 10.8.0.110 191342 unique_id port 191343 username ebrahimpour3 191343 kill_reason Another user logged on this global unique id 191343 mac 191343 bytes_out 0 191343 bytes_in 0 191343 station_ip 83.123.125.41 191343 port 423 191343 unique_id port 191344 username hosseine 191344 mac 191344 bytes_out 0 191344 bytes_in 0 191344 station_ip 83.123.109.117 191344 port 419 191344 unique_id port 191345 username ebrahimpour3 191345 mac 191345 bytes_out 0 191345 bytes_in 0 191345 station_ip 83.123.125.41 191345 port 423 191345 unique_id port 191346 username nilufarrajaei 191346 mac 191346 bytes_out 14141971 191346 bytes_in 14891706 191346 station_ip 2.183.150.254 191346 port 419 191346 unique_id port 191346 remote_ip 10.8.0.194 191347 username nilufarrajaei 191347 mac 191309 port 419 191309 unique_id port 191309 remote_ip 10.8.0.194 191310 username milan 191310 mac 191310 bytes_out 0 191310 bytes_in 0 191310 station_ip 5.119.23.34 191310 port 425 191310 unique_id port 191314 username naeimeh 191314 mac 191314 bytes_out 861021 191314 bytes_in 6708868 191314 station_ip 83.123.36.74 191314 port 423 191314 unique_id port 191314 remote_ip 10.8.0.78 191315 username fezealinaghi 191315 mac 191315 bytes_out 4667160 191315 bytes_in 38027059 191315 station_ip 83.123.111.128 191315 port 430 191315 unique_id port 191315 remote_ip 10.8.0.202 191316 username mansour 191316 mac 191316 bytes_out 0 191316 bytes_in 0 191316 station_ip 5.202.10.192 191316 port 423 191316 unique_id port 191316 remote_ip 10.8.0.10 191321 username mosi 191321 kill_reason Another user logged on this global unique id 191321 mac 191321 bytes_out 0 191321 bytes_in 0 191321 station_ip 5.233.55.100 191321 port 426 191321 unique_id port 191325 username farhad3 191325 mac 191325 bytes_out 346398 191325 bytes_in 1054257 191325 station_ip 5.120.51.126 191325 port 419 191325 unique_id port 191325 remote_ip 10.8.0.222 191328 username farhad3 191328 kill_reason Another user logged on this global unique id 191328 mac 191328 bytes_out 0 191328 bytes_in 0 191328 station_ip 5.120.51.126 191328 port 419 191328 unique_id port 191328 remote_ip 10.8.0.222 191330 username farhad3 191330 mac 191330 bytes_out 1305502 191330 bytes_in 8869890 191330 station_ip 5.120.51.126 191330 port 419 191330 unique_id port 191330 remote_ip 10.8.0.222 191334 username meghdad1616 191334 mac 191334 bytes_out 0 191334 bytes_in 0 191334 station_ip 5.120.166.146 191334 port 423 191334 unique_id port 191338 username mohammadjavad 191338 mac 191338 bytes_out 0 191338 bytes_in 0 191338 station_ip 83.123.23.88 191338 port 419 191338 unique_id port 191339 username mohammadjavad 191339 mac 191339 bytes_out 267531 191339 bytes_in 4000269 191339 station_ip 83.123.108.159 191339 port 425 191339 unique_id port 191339 remote_ip 10.8.0.110 191341 username ebrahimpour3 191341 kill_reason Another user logged on this global unique id 191341 mac 191341 bytes_out 0 191341 bytes_in 0 191341 station_ip 83.123.125.41 191341 port 423 191341 unique_id port 191341 remote_ip 10.8.0.86 191347 bytes_out 1393770 191347 bytes_in 5070929 191347 station_ip 2.183.150.254 191347 port 419 191347 unique_id port 191347 remote_ip 10.8.0.194 191348 username yaghobi 191348 mac 191348 bytes_out 753170 191348 bytes_in 1450808 191348 station_ip 83.123.62.54 191348 port 423 191348 unique_id port 191348 remote_ip 10.8.0.138 191349 username yaghobi 191349 mac 191349 bytes_out 1170102 191349 bytes_in 7193990 191349 station_ip 83.123.62.54 191349 port 419 191349 unique_id port 191349 remote_ip 10.8.0.138 191350 username mohammadjavad 191350 mac 191350 bytes_out 368619 191350 bytes_in 4365269 191350 station_ip 83.123.26.181 191350 port 423 191350 unique_id port 191350 remote_ip 10.8.0.110 191351 username nilufarrajaei 191351 mac 191351 bytes_out 923253 191351 bytes_in 7720014 191351 station_ip 2.183.150.254 191351 port 425 191351 unique_id port 191351 remote_ip 10.8.0.194 191352 username nilufarrajaei 191352 mac 191352 bytes_out 96495 191352 bytes_in 189820 191352 station_ip 2.183.150.254 191352 port 419 191352 unique_id port 191352 remote_ip 10.8.0.194 191353 username mohammadjavad 191353 mac 191353 bytes_out 13043655 191353 bytes_in 819569 191353 station_ip 83.123.54.30 191353 port 423 191353 unique_id port 191353 remote_ip 10.8.0.110 191354 username nilufarrajaei 191354 mac 191354 bytes_out 155149 191354 bytes_in 954171 191354 station_ip 2.183.150.78 191354 port 419 191354 unique_id port 191354 remote_ip 10.8.0.194 191355 username kalantary6037 191355 mac 191355 bytes_out 1676783 191355 bytes_in 12901781 191355 station_ip 83.123.43.249 191355 port 429 191355 unique_id port 191355 remote_ip 10.8.0.50 191356 username fezealinaghi 191356 mac 191356 bytes_out 2088507 191356 bytes_in 28830254 191356 station_ip 83.123.40.24 191356 port 419 191356 unique_id port 191356 remote_ip 10.8.0.202 191357 username yaghobi 191357 mac 191357 bytes_out 1124951 191357 bytes_in 11692942 191357 station_ip 83.123.30.138 191357 port 425 191357 unique_id port 191357 remote_ip 10.8.0.138 191364 username shadkam 191364 mac 191364 bytes_out 0 191364 bytes_in 0 191364 station_ip 217.165.72.201 191364 port 419 191364 unique_id port 191364 remote_ip 10.8.0.186 191366 username kalantary6037 191366 kill_reason Another user logged on this global unique id 191366 mac 191366 bytes_out 0 191366 bytes_in 0 191366 station_ip 83.123.43.249 191366 port 423 191366 unique_id port 191368 username kalantary6037 191368 mac 191368 bytes_out 0 191368 bytes_in 0 191368 station_ip 83.123.43.249 191368 port 423 191368 unique_id port 191370 username yaghobi 191370 mac 191370 bytes_out 270459 191370 bytes_in 499899 191370 station_ip 83.123.55.140 191370 port 423 191370 unique_id port 191370 remote_ip 10.8.0.138 191373 username yaghobi 191373 mac 191373 bytes_out 226334 191373 bytes_in 578474 191373 station_ip 83.123.98.51 191373 port 423 191373 unique_id port 191373 remote_ip 10.8.0.138 191374 username kalantary6037 191374 mac 191374 bytes_out 390073 191374 bytes_in 2300207 191374 station_ip 83.123.43.249 191374 port 430 191374 unique_id port 191374 remote_ip 10.8.0.50 191375 username shadkam 191375 mac 191375 bytes_out 0 191375 bytes_in 0 191375 station_ip 217.165.72.201 191375 port 423 191375 unique_id port 191375 remote_ip 10.8.0.186 191376 username shadkam 191376 mac 191376 bytes_out 0 191376 bytes_in 0 191376 station_ip 217.165.72.201 191376 port 423 191376 unique_id port 191376 remote_ip 10.8.0.186 191388 username shadkam 191388 mac 191388 bytes_out 0 191388 bytes_in 0 191388 station_ip 217.165.72.201 191388 port 431 191388 unique_id port 191388 remote_ip 10.8.0.186 191390 username hatami 191390 mac 191390 bytes_out 632259 191390 bytes_in 6213718 191390 station_ip 151.235.102.98 191390 port 430 191390 unique_id port 191390 remote_ip 10.8.0.98 191391 username kalantary6037 191391 mac 191391 bytes_out 1018114 191391 bytes_in 9019740 191391 station_ip 83.123.43.249 191391 port 419 191391 unique_id port 191391 remote_ip 10.8.0.50 191395 username shadkam 191395 mac 191395 bytes_out 0 191395 bytes_in 0 191395 station_ip 217.165.72.201 191395 port 425 191395 unique_id port 191396 username kalantary6037 191396 mac 191396 bytes_out 1287048 191396 bytes_in 17399511 191396 station_ip 83.123.43.249 191396 port 430 191396 unique_id port 191396 remote_ip 10.8.0.50 191397 username houshang 191397 mac 191397 bytes_out 1888 191397 bytes_in 3944 191397 station_ip 5.119.251.227 191397 port 419 191397 unique_id port 191397 remote_ip 10.8.0.82 191399 username malekpoir 191399 kill_reason Another user logged on this global unique id 191399 mac 191399 bytes_out 0 191399 bytes_in 0 191399 station_ip 5.119.87.128 191399 port 431 191358 username mosi 191358 mac 191358 bytes_out 0 191358 bytes_in 0 191358 station_ip 5.233.55.100 191358 port 426 191358 unique_id port 191360 username kalantary6037 191360 kill_reason Another user logged on this global unique id 191360 mac 191360 bytes_out 0 191360 bytes_in 0 191360 station_ip 83.123.43.249 191360 port 423 191360 unique_id port 191360 remote_ip 10.8.0.50 191361 username mohammadjavad 191361 mac 191361 bytes_out 131888 191361 bytes_in 341131 191361 station_ip 83.123.54.30 191361 port 426 191361 unique_id port 191361 remote_ip 10.8.0.110 191363 username shadkam 191363 mac 191363 bytes_out 0 191363 bytes_in 0 191363 station_ip 217.165.72.201 191363 port 419 191363 unique_id port 191363 remote_ip 10.8.0.186 191367 username yaghobi 191367 mac 191367 bytes_out 224211 191367 bytes_in 437814 191367 station_ip 83.123.97.38 191367 port 419 191367 unique_id port 191367 remote_ip 10.8.0.138 191369 username shadkam 191369 mac 191369 bytes_out 0 191369 bytes_in 0 191369 station_ip 217.165.72.201 191369 port 425 191369 unique_id port 191369 remote_ip 10.8.0.186 191371 username mosi 191371 mac 191371 bytes_out 265999 191371 bytes_in 797041 191371 station_ip 5.233.55.100 191371 port 419 191371 unique_id port 191371 remote_ip 10.8.0.142 191372 username pourshad 191372 kill_reason Another user logged on this global unique id 191372 mac 191372 bytes_out 0 191372 bytes_in 0 191372 station_ip 5.120.73.74 191372 port 432 191372 unique_id port 191372 remote_ip 10.8.0.42 191377 username sekonji0496 191377 mac 191377 bytes_out 134271 191377 bytes_in 2178493 191377 station_ip 83.123.78.143 191377 port 419 191377 unique_id port 191377 remote_ip 10.8.0.62 191378 username shadkam 191378 mac 191378 bytes_out 0 191378 bytes_in 0 191378 station_ip 217.165.72.201 191378 port 423 191378 unique_id port 191378 remote_ip 10.8.0.186 191379 username sekonji0496 191379 mac 191379 bytes_out 0 191379 bytes_in 0 191379 station_ip 83.123.78.143 191379 port 430 191379 unique_id port 191379 remote_ip 10.8.0.62 191380 username shadkam 191380 mac 191380 bytes_out 0 191380 bytes_in 0 191380 station_ip 217.165.72.201 191380 port 430 191380 unique_id port 191380 remote_ip 10.8.0.186 191383 username kharazmi2920 191383 mac 191383 bytes_out 942085 191383 bytes_in 6166540 191383 station_ip 83.123.12.97 191383 port 430 191383 unique_id port 191383 remote_ip 10.8.0.22 191384 username shadkam 191384 mac 191384 bytes_out 0 191384 bytes_in 0 191384 station_ip 217.165.72.201 191384 port 430 191384 unique_id port 191384 remote_ip 10.8.0.186 191385 username dortaj3792 191385 mac 191385 bytes_out 4622417 191385 bytes_in 27215132 191385 station_ip 5.120.131.204 191385 port 425 191385 unique_id port 191385 remote_ip 10.8.0.102 191386 username yaghobi 191386 mac 191386 bytes_out 954942 191386 bytes_in 1839333 191386 station_ip 83.123.8.64 191386 port 423 191386 unique_id port 191386 remote_ip 10.8.0.138 191389 username kalantary6037 191389 mac 191389 bytes_out 3915013 191389 bytes_in 41506847 191389 station_ip 83.123.43.249 191389 port 419 191389 unique_id port 191389 remote_ip 10.8.0.50 191398 username nilufarrajaei 191398 mac 191398 bytes_out 2442290 191398 bytes_in 21420001 191398 station_ip 83.123.7.105 191398 port 426 191398 unique_id port 191398 remote_ip 10.8.0.194 191400 username shadkam 191400 mac 191400 bytes_out 104000 191400 bytes_in 1387417 191400 station_ip 217.165.72.201 191400 port 419 191400 unique_id port 191359 username yaghobi 191359 mac 191359 bytes_out 159225 191359 bytes_in 408767 191359 station_ip 83.123.110.171 191359 port 419 191359 unique_id port 191359 remote_ip 10.8.0.138 191362 username shadkam 191362 mac 191362 bytes_out 15089967 191362 bytes_in 24176560 191362 station_ip 217.165.72.201 191362 port 419 191362 unique_id port 191362 remote_ip 10.8.0.186 191365 username yaghobi 191365 mac 191365 bytes_out 607558 191365 bytes_in 1104213 191365 station_ip 83.123.64.231 191365 port 425 191365 unique_id port 191365 remote_ip 10.8.0.138 191381 username shadkam 191381 mac 191381 bytes_out 0 191381 bytes_in 0 191381 station_ip 217.165.72.201 191381 port 430 191381 unique_id port 191381 remote_ip 10.8.0.186 191382 username sekonji0496 191382 mac 191382 bytes_out 600444 191382 bytes_in 10605161 191382 station_ip 83.123.78.143 191382 port 431 191382 unique_id port 191382 remote_ip 10.8.0.62 191387 username yaghobi 191387 mac 191387 bytes_out 376412 191387 bytes_in 730287 191387 station_ip 83.123.121.150 191387 port 425 191387 unique_id port 191387 remote_ip 10.8.0.138 191392 username godarzi 191392 mac 191392 bytes_out 32225 191392 bytes_in 62340 191392 station_ip 5.120.0.56 191392 port 419 191392 unique_id port 191392 remote_ip 10.8.0.38 191393 username shadkam 191393 kill_reason Another user logged on this global unique id 191393 mac 191393 bytes_out 0 191393 bytes_in 0 191393 station_ip 217.165.72.201 191393 port 425 191393 unique_id port 191393 remote_ip 10.8.0.186 191394 username mohammadjavad 191394 mac 191394 bytes_out 42285 191394 bytes_in 56989 191394 station_ip 83.123.55.250 191394 port 419 191394 unique_id port 191394 remote_ip 10.8.0.110 191401 username shadkam 191401 mac 191401 bytes_out 0 191401 bytes_in 0 191401 station_ip 217.165.72.201 191401 port 435 191401 unique_id port 191401 remote_ip 10.8.0.186 191403 username yaghobi 191403 mac 191403 bytes_out 375693 191403 bytes_in 530801 191403 station_ip 83.123.121.150 191403 port 423 191403 unique_id port 191403 remote_ip 10.8.0.138 191406 username godarzi 191406 mac 191406 bytes_out 239993 191406 bytes_in 378992 191406 station_ip 5.120.0.56 191406 port 430 191406 unique_id port 191406 remote_ip 10.8.0.38 191410 username yaghobi 191410 mac 191410 bytes_out 293598 191410 bytes_in 542120 191410 station_ip 83.123.121.150 191410 port 435 191410 unique_id port 191410 remote_ip 10.8.0.138 191411 username dortaj3792 191411 mac 191411 bytes_out 210716 191411 bytes_in 241532 191411 station_ip 5.120.131.204 191411 port 419 191411 unique_id port 191411 remote_ip 10.8.0.102 191414 username yaghobi 191414 mac 191414 bytes_out 52394 191414 bytes_in 119582 191414 station_ip 83.123.68.216 191414 port 435 191414 unique_id port 191414 remote_ip 10.8.0.138 191416 username kharazmi2920 191416 mac 191416 bytes_out 981010 191416 bytes_in 8047685 191416 station_ip 83.123.12.97 191416 port 425 191416 unique_id port 191416 remote_ip 10.8.0.22 191421 username nilufarrajaei 191421 mac 191421 bytes_out 444563 191421 bytes_in 436735 191421 station_ip 83.123.7.105 191421 port 426 191421 unique_id port 191421 remote_ip 10.8.0.194 191422 username motamedi9772 191422 mac 191422 bytes_out 151566 191422 bytes_in 212090 191422 station_ip 83.123.9.11 191422 port 438 191422 unique_id port 191422 remote_ip 10.8.0.154 191424 username shadkam 191424 mac 191424 bytes_out 1912 191424 bytes_in 4053 191424 station_ip 91.73.22.21 191424 port 439 191399 unique_id port 191399 remote_ip 10.8.0.18 191402 username mohammadjavad 191402 mac 191402 bytes_out 401454 191402 bytes_in 3347958 191402 station_ip 83.123.101.82 191402 port 425 191402 unique_id port 191402 remote_ip 10.8.0.110 191407 username shadkam 191407 mac 191407 bytes_out 1200839 191407 bytes_in 13481542 191407 station_ip 217.165.72.201 191407 port 423 191407 unique_id port 191407 remote_ip 10.8.0.186 191409 username kalantary6037 191409 mac 191409 bytes_out 349065 191409 bytes_in 1473769 191409 station_ip 83.123.43.249 191409 port 423 191409 unique_id port 191409 remote_ip 10.8.0.50 191412 username shadkam 191412 mac 191412 bytes_out 296745 191412 bytes_in 2905158 191412 station_ip 217.165.72.201 191412 port 435 191412 unique_id port 191412 remote_ip 10.8.0.186 191419 username zahra1101 191419 mac 191419 bytes_out 32218 191419 bytes_in 53367 191419 station_ip 5.120.26.216 191419 port 425 191419 unique_id port 191419 remote_ip 10.8.0.30 191423 username meysam 191423 kill_reason Another user logged on this global unique id 191423 mac 191423 bytes_out 0 191423 bytes_in 0 191423 station_ip 188.159.252.43 191423 port 430 191423 unique_id port 191426 username alikomsari 191426 kill_reason Another user logged on this global unique id 191426 mac 191426 bytes_out 0 191426 bytes_in 0 191426 station_ip 5.120.95.120 191426 port 433 191426 unique_id port 191426 remote_ip 10.8.0.214 191428 username akbari0070 191428 mac 191428 bytes_out 2342311 191428 bytes_in 32953778 191428 station_ip 83.123.13.116 191428 port 438 191428 unique_id port 191428 remote_ip 10.8.0.166 191430 username yaghobi 191430 mac 191430 bytes_out 58084 191430 bytes_in 112734 191430 station_ip 83.123.54.196 191430 port 438 191430 unique_id port 191430 remote_ip 10.8.0.138 191435 username sabaghnezhad 191435 mac 191435 bytes_out 13379 191435 bytes_in 21116 191435 station_ip 83.123.26.181 191435 port 419 191435 unique_id port 191435 remote_ip 10.8.0.66 191438 username shadkam 191438 mac 191438 bytes_out 0 191438 bytes_in 0 191438 station_ip 217.165.72.201 191438 port 439 191438 unique_id port 191438 remote_ip 10.8.0.186 191440 username shadkam 191440 mac 191440 bytes_out 13753 191440 bytes_in 13239 191440 station_ip 217.165.72.201 191440 port 439 191440 unique_id port 191440 remote_ip 10.8.0.186 191441 username yaghobi 191441 mac 191441 bytes_out 263246 191441 bytes_in 547169 191441 station_ip 83.123.77.200 191441 port 438 191441 unique_id port 191441 remote_ip 10.8.0.138 191443 username shadkam 191443 mac 191443 bytes_out 2080 191443 bytes_in 5576 191443 station_ip 217.165.72.201 191443 port 439 191443 unique_id port 191443 remote_ip 10.8.0.186 191446 username zahra1101 191446 mac 191446 bytes_out 58777 191446 bytes_in 116135 191446 station_ip 5.120.26.216 191446 port 425 191446 unique_id port 191446 remote_ip 10.8.0.30 191455 username motamedi9772 191455 mac 191455 bytes_out 0 191455 bytes_in 0 191455 station_ip 83.123.88.135 191455 port 419 191455 unique_id port 191455 remote_ip 10.8.0.154 191459 username motamedi9772 191459 mac 191459 bytes_out 0 191459 bytes_in 0 191459 station_ip 83.123.88.135 191459 port 439 191459 unique_id port 191459 remote_ip 10.8.0.154 191460 username motamedi9772 191460 mac 191460 bytes_out 0 191460 bytes_in 0 191460 station_ip 83.123.88.135 191460 port 439 191460 unique_id port 191460 remote_ip 10.8.0.154 191468 username motamedi9772 191468 mac 191468 bytes_out 0 191468 bytes_in 0 191400 remote_ip 10.8.0.186 191404 username kalantary6037 191404 mac 191404 bytes_out 1612533 191404 bytes_in 22245178 191404 station_ip 83.123.43.249 191404 port 430 191404 unique_id port 191404 remote_ip 10.8.0.50 191405 username yaghobi 191405 mac 191405 bytes_out 23915 191405 bytes_in 36812 191405 station_ip 83.123.121.150 191405 port 425 191405 unique_id port 191405 remote_ip 10.8.0.138 191408 username sabaghnezhad 191408 mac 191408 bytes_out 80623 191408 bytes_in 58981 191408 station_ip 83.123.10.26 191408 port 419 191408 unique_id port 191408 remote_ip 10.8.0.66 191413 username meysam 191413 kill_reason Another user logged on this global unique id 191413 mac 191413 bytes_out 0 191413 bytes_in 0 191413 station_ip 188.159.252.43 191413 port 430 191413 unique_id port 191413 remote_ip 10.8.0.158 191415 username shadkam 191415 mac 191415 bytes_out 74453 191415 bytes_in 123953 191415 station_ip 217.165.72.201 191415 port 419 191415 unique_id port 191415 remote_ip 10.8.0.186 191417 username godarzi 191417 kill_reason Another user logged on this global unique id 191417 mac 191417 bytes_out 0 191417 bytes_in 0 191417 station_ip 5.202.29.254 191417 port 423 191417 unique_id port 191417 remote_ip 10.8.0.38 191418 username meysam 191418 kill_reason Another user logged on this global unique id 191418 mac 191418 bytes_out 0 191418 bytes_in 0 191418 station_ip 188.159.252.43 191418 port 430 191418 unique_id port 191420 username pourshad 191420 mac 191420 bytes_out 0 191420 bytes_in 0 191420 station_ip 5.120.73.74 191420 port 432 191420 unique_id port 191429 username kharazmi2920 191429 mac 191429 bytes_out 90116 191429 bytes_in 89219 191429 station_ip 83.123.12.97 191429 port 419 191429 unique_id port 191429 remote_ip 10.8.0.22 191431 username shadkam 191431 mac 191431 bytes_out 197605 191431 bytes_in 41232 191431 station_ip 217.165.72.201 191431 port 425 191431 unique_id port 191431 remote_ip 10.8.0.186 191434 username hashtadani5 191434 mac 191434 bytes_out 0 191434 bytes_in 0 191434 station_ip 83.123.46.51 191434 port 425 191434 unique_id port 191434 remote_ip 10.8.0.90 191436 username hashtadani5 191436 mac 191436 bytes_out 12019 191436 bytes_in 30921 191436 station_ip 83.123.46.51 191436 port 425 191436 unique_id port 191436 remote_ip 10.8.0.90 191439 username hashtadani5 191439 mac 191439 bytes_out 75841 191439 bytes_in 31242 191439 station_ip 83.123.46.51 191439 port 439 191439 unique_id port 191439 remote_ip 10.8.0.90 191442 username motamedi9772 191442 mac 191442 bytes_out 699510 191442 bytes_in 7141815 191442 station_ip 83.123.88.135 191442 port 419 191442 unique_id port 191442 remote_ip 10.8.0.154 191447 username yaghobi 191447 mac 191447 bytes_out 70841 191447 bytes_in 112401 191447 station_ip 83.123.77.200 191447 port 442 191447 unique_id port 191447 remote_ip 10.8.0.138 191448 username motamedi9772 191448 mac 191448 bytes_out 0 191448 bytes_in 0 191448 station_ip 83.123.88.135 191448 port 419 191448 unique_id port 191448 remote_ip 10.8.0.154 191449 username meysam 191449 kill_reason Another user logged on this global unique id 191449 mac 191449 bytes_out 0 191449 bytes_in 0 191449 station_ip 188.159.252.43 191449 port 430 191449 unique_id port 191450 username motamedi9772 191450 mac 191450 bytes_out 0 191450 bytes_in 0 191450 station_ip 83.123.88.135 191450 port 419 191450 unique_id port 191450 remote_ip 10.8.0.154 191452 username pourshad 191452 mac 191452 bytes_out 383694 191452 bytes_in 4014682 191452 station_ip 5.120.73.74 191424 unique_id port 191424 remote_ip 10.8.0.186 191425 username zahra1101 191425 mac 191425 bytes_out 726812 191425 bytes_in 4493440 191425 station_ip 5.120.26.216 191425 port 425 191425 unique_id port 191425 remote_ip 10.8.0.30 191427 username zahra1101 191427 mac 191427 bytes_out 2373 191427 bytes_in 4490 191427 station_ip 5.120.26.216 191427 port 425 191427 unique_id port 191427 remote_ip 10.8.0.30 191432 username meysam 191432 kill_reason Another user logged on this global unique id 191432 mac 191432 bytes_out 0 191432 bytes_in 0 191432 station_ip 188.159.252.43 191432 port 430 191432 unique_id port 191433 username hashtadani5 191433 mac 191433 bytes_out 0 191433 bytes_in 0 191433 station_ip 83.123.46.51 191433 port 425 191433 unique_id port 191433 remote_ip 10.8.0.90 191437 username shadkam 191437 mac 191437 bytes_out 0 191437 bytes_in 0 191437 station_ip 217.165.72.201 191437 port 439 191437 unique_id port 191437 remote_ip 10.8.0.186 191444 username motamedi9772 191444 mac 191444 bytes_out 0 191444 bytes_in 0 191444 station_ip 83.123.88.135 191444 port 419 191444 unique_id port 191444 remote_ip 10.8.0.154 191445 username motamedi9772 191445 mac 191445 bytes_out 0 191445 bytes_in 0 191445 station_ip 83.123.88.135 191445 port 419 191445 unique_id port 191445 remote_ip 10.8.0.154 191451 username motamedi9772 191451 mac 191451 bytes_out 3272 191451 bytes_in 9826 191451 station_ip 83.123.88.135 191451 port 419 191451 unique_id port 191451 remote_ip 10.8.0.154 191453 username motamedi9772 191453 mac 191453 bytes_out 0 191453 bytes_in 0 191453 station_ip 83.123.88.135 191453 port 419 191453 unique_id port 191453 remote_ip 10.8.0.154 191454 username rashidi4690 191454 mac 191454 bytes_out 46746 191454 bytes_in 128582 191454 station_ip 5.119.221.166 191454 port 439 191454 unique_id port 191454 remote_ip 10.8.0.242 191458 username mohsenaskari 191458 mac 191458 bytes_out 28427 191458 bytes_in 59316 191458 station_ip 46.225.232.66 191458 port 425 191458 unique_id port 191458 remote_ip 10.8.0.170 191462 username kalantary6037 191462 mac 191462 bytes_out 2047212 191462 bytes_in 30019538 191462 station_ip 83.123.126.65 191462 port 438 191462 unique_id port 191462 remote_ip 10.8.0.50 191463 username motamedi9772 191463 mac 191463 bytes_out 0 191463 bytes_in 0 191463 station_ip 83.123.88.135 191463 port 438 191463 unique_id port 191463 remote_ip 10.8.0.154 191465 username motamedi9772 191465 mac 191465 bytes_out 0 191465 bytes_in 0 191465 station_ip 83.123.88.135 191465 port 438 191465 unique_id port 191465 remote_ip 10.8.0.154 191467 username motamedi9772 191467 mac 191467 bytes_out 0 191467 bytes_in 0 191467 station_ip 83.123.88.135 191467 port 438 191467 unique_id port 191467 remote_ip 10.8.0.154 191470 username aminvpn 191470 mac 191470 bytes_out 209920 191470 bytes_in 431003 191470 station_ip 5.119.76.132 191470 port 439 191470 unique_id port 191470 remote_ip 10.8.0.58 191471 username pourshad 191471 mac 191471 bytes_out 26068 191471 bytes_in 115477 191471 station_ip 5.120.73.74 191471 port 430 191471 unique_id port 191471 remote_ip 10.8.0.42 191472 username kalantary6037 191472 mac 191472 bytes_out 2173814 191472 bytes_in 29732549 191472 station_ip 83.123.126.65 191472 port 438 191472 unique_id port 191472 remote_ip 10.8.0.50 191475 username pourshad 191475 mac 191475 bytes_out 20300 191475 bytes_in 33474 191475 station_ip 5.120.73.74 191475 port 438 191475 unique_id port 191452 port 425 191452 unique_id port 191452 remote_ip 10.8.0.42 191456 username motamedi9772 191456 mac 191456 bytes_out 0 191456 bytes_in 0 191456 station_ip 83.123.88.135 191456 port 439 191456 unique_id port 191456 remote_ip 10.8.0.154 191457 username motamedi9772 191457 mac 191457 bytes_out 0 191457 bytes_in 0 191457 station_ip 83.123.88.135 191457 port 439 191457 unique_id port 191457 remote_ip 10.8.0.154 191461 username barzegar 191461 kill_reason Maximum check online fails reached 191461 mac 191461 bytes_out 0 191461 bytes_in 0 191461 station_ip 5.119.158.104 191461 port 425 191461 unique_id port 191464 username motamedi9772 191464 mac 191464 bytes_out 0 191464 bytes_in 0 191464 station_ip 83.123.88.135 191464 port 438 191464 unique_id port 191464 remote_ip 10.8.0.154 191466 username aminvpn 191466 mac 191466 bytes_out 1203138 191466 bytes_in 4147155 191466 station_ip 83.123.28.113 191466 port 426 191466 unique_id port 191466 remote_ip 10.8.0.58 191476 username mohammadjavad 191476 mac 191476 bytes_out 1361142 191476 bytes_in 19232806 191476 station_ip 83.123.82.45 191476 port 439 191476 unique_id port 191476 remote_ip 10.8.0.110 191477 username mohammadjavad 191477 mac 191477 bytes_out 0 191477 bytes_in 0 191477 station_ip 83.123.82.45 191477 port 438 191477 unique_id port 191477 remote_ip 10.8.0.110 191478 username hashtadani5 191478 mac 191478 bytes_out 0 191478 bytes_in 0 191478 station_ip 5.202.1.9 191478 port 439 191478 unique_id port 191478 remote_ip 10.8.0.90 191480 username malekpoir 191480 mac 191480 bytes_out 0 191480 bytes_in 0 191480 station_ip 5.119.87.128 191480 port 431 191480 unique_id port 191481 username nilufarrajaei 191481 mac 191481 bytes_out 857722 191481 bytes_in 6003619 191481 station_ip 83.123.7.105 191481 port 435 191481 unique_id port 191481 remote_ip 10.8.0.194 191482 username godarzi 191482 kill_reason Another user logged on this global unique id 191482 mac 191482 bytes_out 0 191482 bytes_in 0 191482 station_ip 5.202.29.254 191482 port 423 191482 unique_id port 191483 username kharazmi2920 191483 mac 191483 bytes_out 157427 191483 bytes_in 403372 191483 station_ip 83.123.12.97 191483 port 438 191483 unique_id port 191483 remote_ip 10.8.0.22 191485 username hashtadani5 191485 mac 191485 bytes_out 23621 191485 bytes_in 29836 191485 station_ip 5.202.1.9 191485 port 435 191485 unique_id port 191485 remote_ip 10.8.0.90 191488 username hashtadani5 191488 mac 191488 bytes_out 0 191488 bytes_in 0 191488 station_ip 5.202.1.9 191488 port 443 191488 unique_id port 191488 remote_ip 10.8.0.90 191495 username hashtadani5 191495 mac 191495 bytes_out 0 191495 bytes_in 0 191495 station_ip 5.202.1.9 191495 port 443 191495 unique_id port 191495 remote_ip 10.8.0.90 191498 username fezealinaghi 191498 mac 191498 bytes_out 911438 191498 bytes_in 9805860 191498 station_ip 83.123.40.24 191498 port 429 191498 unique_id port 191498 remote_ip 10.8.0.202 191499 username rashidi4690 191499 mac 191499 bytes_out 2593959 191499 bytes_in 2613415 191499 station_ip 5.119.221.166 191499 port 419 191499 unique_id port 191499 remote_ip 10.8.0.242 191501 username hashtadani5 191501 mac 191501 bytes_out 0 191501 bytes_in 0 191501 station_ip 5.202.1.9 191501 port 429 191501 unique_id port 191501 remote_ip 10.8.0.90 191503 username motamedi9772 191503 mac 191503 bytes_out 0 191503 bytes_in 0 191503 station_ip 83.123.88.135 191503 port 419 191503 unique_id port 191468 station_ip 83.123.88.135 191468 port 426 191468 unique_id port 191468 remote_ip 10.8.0.154 191469 username meysam 191469 mac 191469 bytes_out 0 191469 bytes_in 0 191469 station_ip 188.159.252.43 191469 port 430 191469 unique_id port 191473 username sobhan 191473 unique_id port 191473 terminate_cause Lost-Carrier 191473 bytes_out 515989 191473 bytes_in 2515547 191473 station_ip 5.120.184.38 191473 port 15729215 191473 nas_port_type Virtual 191473 remote_ip 5.5.5.59 191474 username hashtadani5 191474 mac 191474 bytes_out 556962 191474 bytes_in 4759387 191474 station_ip 5.202.1.9 191474 port 430 191474 unique_id port 191474 remote_ip 10.8.0.90 191479 username mohammadjavad 191479 mac 191479 bytes_out 0 191479 bytes_in 0 191479 station_ip 83.123.82.45 191479 port 438 191479 unique_id port 191479 remote_ip 10.8.0.110 191486 username hashtadani5 191486 mac 191486 bytes_out 0 191486 bytes_in 0 191486 station_ip 5.202.1.9 191486 port 435 191486 unique_id port 191486 remote_ip 10.8.0.90 191489 username shadkam 191489 mac 191489 bytes_out 11307 191489 bytes_in 45988 191489 station_ip 91.73.3.21 191489 port 435 191489 unique_id port 191489 remote_ip 10.8.0.186 191490 username hashtadani5 191490 mac 191490 bytes_out 827288 191490 bytes_in 8726388 191490 station_ip 5.202.1.9 191490 port 444 191490 unique_id port 191490 remote_ip 10.8.0.90 191491 username mohammadjavad 191491 mac 191491 bytes_out 0 191491 bytes_in 0 191491 station_ip 83.123.82.45 191491 port 444 191491 unique_id port 191491 remote_ip 10.8.0.110 191493 username nilufarrajaei 191493 mac 191493 bytes_out 592976 191493 bytes_in 2486162 191493 station_ip 83.123.7.105 191493 port 431 191493 unique_id port 191493 remote_ip 10.8.0.194 191494 username hashtadani5 191494 mac 191494 bytes_out 0 191494 bytes_in 0 191494 station_ip 5.202.1.9 191494 port 431 191494 unique_id port 191494 remote_ip 10.8.0.90 191504 username kharazmi2920 191504 mac 191504 bytes_out 101321 191504 bytes_in 139377 191504 station_ip 83.123.12.97 191504 port 445 191504 unique_id port 191504 remote_ip 10.8.0.22 191505 username kalantary6037 191505 mac 191505 bytes_out 3198725 191505 bytes_in 38825097 191505 station_ip 83.123.126.65 191505 port 430 191505 unique_id port 191505 remote_ip 10.8.0.50 191508 username motamedi9772 191508 mac 191508 bytes_out 24713 191508 bytes_in 67651 191508 station_ip 83.123.88.135 191508 port 419 191508 unique_id port 191508 remote_ip 10.8.0.154 191511 username hashtadani5 191511 mac 191511 bytes_out 0 191511 bytes_in 0 191511 station_ip 5.202.1.9 191511 port 445 191511 unique_id port 191511 remote_ip 10.8.0.90 191513 username yaghobi 191513 mac 191513 bytes_out 213346 191513 bytes_in 504366 191513 station_ip 83.123.61.251 191513 port 444 191513 unique_id port 191513 remote_ip 10.8.0.138 191517 username aminvpn 191517 unique_id port 191517 terminate_cause User-Request 191517 bytes_out 5214 191517 bytes_in 27628 191517 station_ip 83.123.86.141 191517 port 15729217 191517 nas_port_type Virtual 191517 remote_ip 5.5.5.57 191518 username aminvpn 191518 unique_id port 191518 terminate_cause User-Request 191518 bytes_out 396 191518 bytes_in 234 191518 station_ip 83.123.86.141 191518 port 15729218 191518 nas_port_type Virtual 191518 remote_ip 5.5.5.57 191519 username aminvpn 191519 unique_id port 191519 terminate_cause User-Request 191519 bytes_out 17146 191519 bytes_in 55671 191519 station_ip 83.123.86.141 191519 port 15729219 191519 nas_port_type Virtual 191519 remote_ip 5.5.5.57 191475 remote_ip 10.8.0.42 191484 username motamedi9772 191484 kill_reason Another user logged on this global unique id 191484 mac 191484 bytes_out 0 191484 bytes_in 0 191484 station_ip 83.123.88.135 191484 port 426 191484 unique_id port 191484 remote_ip 10.8.0.154 191487 username shadkam 191487 mac 191487 bytes_out 27296 191487 bytes_in 7379 191487 station_ip 91.73.3.21 191487 port 443 191487 unique_id port 191487 remote_ip 10.8.0.186 191492 username soleymani5056 191492 mac 191492 bytes_out 161506 191492 bytes_in 761098 191492 station_ip 5.119.125.52 191492 port 443 191492 unique_id port 191492 remote_ip 10.8.0.226 191496 username mohammadjavad 191496 mac 191496 bytes_out 0 191496 bytes_in 0 191496 station_ip 83.123.82.45 191496 port 431 191496 unique_id port 191496 remote_ip 10.8.0.110 191497 username hashtadani5 191497 mac 191497 bytes_out 0 191497 bytes_in 0 191497 station_ip 5.202.1.9 191497 port 431 191497 unique_id port 191497 remote_ip 10.8.0.90 191500 username fezealinaghi 191500 mac 191500 bytes_out 49291 191500 bytes_in 183752 191500 station_ip 83.123.40.24 191500 port 444 191500 unique_id port 191500 remote_ip 10.8.0.202 191502 username motamedi9772 191502 mac 191502 bytes_out 0 191502 bytes_in 0 191502 station_ip 83.123.88.135 191502 port 426 191502 unique_id port 191506 username kharazmi2920 191506 mac 191506 bytes_out 3316 191506 bytes_in 8625 191506 station_ip 83.123.12.97 191506 port 426 191506 unique_id port 191506 remote_ip 10.8.0.22 191516 username hashtadani5 191516 mac 191516 bytes_out 46565 191516 bytes_in 190567 191516 station_ip 5.202.1.9 191516 port 446 191516 unique_id port 191516 remote_ip 10.8.0.90 191527 username hashtadani5 191527 mac 191527 bytes_out 0 191527 bytes_in 0 191527 station_ip 5.202.1.9 191527 port 429 191527 unique_id port 191527 remote_ip 10.8.0.90 191529 username motamedi9772 191529 mac 191529 bytes_out 0 191529 bytes_in 0 191529 station_ip 83.123.88.135 191529 port 419 191529 unique_id port 191529 remote_ip 10.8.0.154 191531 username motamedi9772 191531 mac 191531 bytes_out 0 191531 bytes_in 0 191531 station_ip 83.123.88.135 191531 port 429 191531 unique_id port 191531 remote_ip 10.8.0.154 191536 username motamedi9772 191536 mac 191536 bytes_out 0 191536 bytes_in 0 191536 station_ip 83.123.88.135 191536 port 431 191536 unique_id port 191536 remote_ip 10.8.0.154 191540 username kalantary6037 191540 mac 191540 bytes_out 3167948 191540 bytes_in 33805783 191540 station_ip 83.123.98.89 191540 port 430 191540 unique_id port 191540 remote_ip 10.8.0.50 191542 username motamedi9772 191542 mac 191542 bytes_out 0 191542 bytes_in 0 191542 station_ip 83.123.88.135 191542 port 429 191542 unique_id port 191542 remote_ip 10.8.0.154 191546 username motamedi9772 191546 mac 191546 bytes_out 0 191546 bytes_in 0 191546 station_ip 83.123.88.135 191546 port 429 191546 unique_id port 191546 remote_ip 10.8.0.154 191548 username motamedi9772 191548 mac 191548 bytes_out 0 191548 bytes_in 0 191548 station_ip 83.123.88.135 191548 port 429 191548 unique_id port 191548 remote_ip 10.8.0.154 191549 username kharazmi2920 191549 mac 191549 bytes_out 613428 191549 bytes_in 1380925 191549 station_ip 83.123.12.97 191549 port 426 191549 unique_id port 191549 remote_ip 10.8.0.22 191551 username motamedi9772 191551 mac 191551 bytes_out 0 191551 bytes_in 0 191551 station_ip 83.123.88.135 191551 port 429 191551 unique_id port 191551 remote_ip 10.8.0.154 191503 remote_ip 10.8.0.154 191507 username hashtadani5 191507 mac 191507 bytes_out 0 191507 bytes_in 0 191507 station_ip 5.202.1.9 191507 port 444 191507 unique_id port 191507 remote_ip 10.8.0.90 191509 username motamedi9772 191509 mac 191509 bytes_out 0 191509 bytes_in 0 191509 station_ip 83.123.88.135 191509 port 419 191509 unique_id port 191509 remote_ip 10.8.0.154 191510 username nilufarrajaei 191510 mac 191510 bytes_out 47064 191510 bytes_in 65986 191510 station_ip 83.123.7.105 191510 port 431 191510 unique_id port 191510 remote_ip 10.8.0.194 191512 username barzegar 191512 mac 191512 bytes_out 347936 191512 bytes_in 3402521 191512 station_ip 5.120.33.150 191512 port 429 191512 unique_id port 191512 remote_ip 10.8.0.70 191514 username zahra1101 191514 mac 191514 bytes_out 2610287 191514 bytes_in 35432969 191514 station_ip 46.225.210.98 191514 port 430 191514 unique_id port 191514 remote_ip 10.8.0.30 191515 username hamid.e 191515 unique_id port 191515 terminate_cause User-Request 191515 bytes_out 19366423 191515 bytes_in 369852981 191515 station_ip 37.27.23.79 191515 port 15729214 191515 nas_port_type Virtual 191515 remote_ip 5.5.5.60 191520 username godarzi 191520 kill_reason Another user logged on this global unique id 191520 mac 191520 bytes_out 0 191520 bytes_in 0 191520 station_ip 5.202.29.254 191520 port 423 191520 unique_id port 191523 username dortaj3792 191523 mac 191523 bytes_out 1697088 191523 bytes_in 17319323 191523 station_ip 5.120.131.204 191523 port 435 191523 unique_id port 191523 remote_ip 10.8.0.102 191524 username hashtadani5 191524 mac 191524 bytes_out 1335491 191524 bytes_in 11903509 191524 station_ip 5.202.1.9 191524 port 429 191524 unique_id port 191524 remote_ip 10.8.0.90 191532 username motamedi9772 191532 mac 191532 bytes_out 0 191532 bytes_in 0 191532 station_ip 83.123.88.135 191532 port 443 191532 unique_id port 191532 remote_ip 10.8.0.154 191534 username motamedi9772 191534 mac 191534 bytes_out 0 191534 bytes_in 0 191534 station_ip 83.123.88.135 191534 port 443 191534 unique_id port 191534 remote_ip 10.8.0.154 191535 username rashidi4690 191535 mac 191535 bytes_out 283962 191535 bytes_in 1112210 191535 station_ip 5.119.221.166 191535 port 429 191535 unique_id port 191535 remote_ip 10.8.0.242 191537 username motamedi9772 191537 mac 191537 bytes_out 0 191537 bytes_in 0 191537 station_ip 83.123.88.135 191537 port 429 191537 unique_id port 191537 remote_ip 10.8.0.154 191538 username motamedi9772 191538 mac 191538 bytes_out 0 191538 bytes_in 0 191538 station_ip 83.123.88.135 191538 port 429 191538 unique_id port 191538 remote_ip 10.8.0.154 191541 username malekpoir 191541 mac 191541 bytes_out 227182 191541 bytes_in 2148332 191541 station_ip 5.119.87.128 191541 port 442 191541 unique_id port 191541 remote_ip 10.8.0.18 191544 username motamedi9772 191544 mac 191544 bytes_out 0 191544 bytes_in 0 191544 station_ip 83.123.88.135 191544 port 429 191544 unique_id port 191544 remote_ip 10.8.0.154 191545 username esmaeilkazemi 191545 mac 191545 bytes_out 0 191545 bytes_in 0 191545 station_ip 83.123.33.107 191545 port 443 191545 unique_id port 191545 remote_ip 10.8.0.26 191547 username esmaeilkazemi 191547 mac 191547 bytes_out 0 191547 bytes_in 0 191547 station_ip 83.123.33.107 191547 port 431 191547 unique_id port 191547 remote_ip 10.8.0.26 191550 username esmaeilkazemi 191550 mac 191550 bytes_out 0 191550 bytes_in 0 191550 station_ip 83.123.33.107 191550 port 443 191521 username hashtadani5 191521 mac 191521 bytes_out 13222 191521 bytes_in 23234 191521 station_ip 5.202.1.9 191521 port 429 191521 unique_id port 191521 remote_ip 10.8.0.90 191522 username rajaei 191522 mac 191522 bytes_out 4538157 191522 bytes_in 41321047 191522 station_ip 5.62.222.179 191522 port 443 191522 unique_id port 191522 remote_ip 10.8.0.210 191525 username yaghobi 191525 mac 191525 bytes_out 18952 191525 bytes_in 34361 191525 station_ip 83.123.58.196 191525 port 429 191525 unique_id port 191525 remote_ip 10.8.0.138 191526 username motamedi9772 191526 mac 191526 bytes_out 147398 191526 bytes_in 284506 191526 station_ip 83.123.88.135 191526 port 419 191526 unique_id port 191526 remote_ip 10.8.0.154 191528 username motamedi9772 191528 mac 191528 bytes_out 0 191528 bytes_in 0 191528 station_ip 83.123.88.135 191528 port 419 191528 unique_id port 191528 remote_ip 10.8.0.154 191530 username motamedi9772 191530 mac 191530 bytes_out 0 191530 bytes_in 0 191530 station_ip 83.123.88.135 191530 port 429 191530 unique_id port 191530 remote_ip 10.8.0.154 191533 username nilufarrajaei 191533 mac 191533 bytes_out 745639 191533 bytes_in 11641116 191533 station_ip 83.123.7.105 191533 port 431 191533 unique_id port 191533 remote_ip 10.8.0.194 191539 username motamedi9772 191539 mac 191539 bytes_out 0 191539 bytes_in 0 191539 station_ip 83.123.88.135 191539 port 429 191539 unique_id port 191539 remote_ip 10.8.0.154 191543 username esmaeilkazemi 191543 mac 191543 bytes_out 0 191543 bytes_in 0 191543 station_ip 83.123.33.107 191543 port 431 191543 unique_id port 191543 remote_ip 10.8.0.26 191552 username barzegar 191552 mac 191552 bytes_out 963465 191552 bytes_in 5933890 191552 station_ip 5.120.33.150 191552 port 444 191552 unique_id port 191552 remote_ip 10.8.0.70 191553 username motamedi9772 191553 mac 191553 bytes_out 0 191553 bytes_in 0 191553 station_ip 83.123.88.135 191553 port 429 191553 unique_id port 191553 remote_ip 10.8.0.154 191555 username fezealinaghi 191555 mac 191555 bytes_out 232089 191555 bytes_in 1154585 191555 station_ip 83.123.109.97 191555 port 445 191555 unique_id port 191555 remote_ip 10.8.0.202 191563 username motamedi9772 191563 mac 191563 bytes_out 0 191563 bytes_in 0 191563 station_ip 83.123.88.135 191563 port 442 191563 unique_id port 191563 remote_ip 10.8.0.154 191565 username motamedi9772 191565 mac 191565 bytes_out 0 191565 bytes_in 0 191565 station_ip 83.123.88.135 191565 port 426 191565 unique_id port 191565 remote_ip 10.8.0.154 191567 username motamedi9772 191567 mac 191567 bytes_out 0 191567 bytes_in 0 191567 station_ip 83.123.88.135 191567 port 426 191567 unique_id port 191567 remote_ip 10.8.0.154 191582 username zahra1101 191582 mac 191582 bytes_out 0 191582 bytes_in 0 191582 station_ip 5.120.116.81 191582 port 431 191582 unique_id port 191582 remote_ip 10.8.0.30 191589 username meysam 191589 kill_reason Another user logged on this global unique id 191589 mac 191589 bytes_out 0 191589 bytes_in 0 191589 station_ip 188.159.252.43 191589 port 419 191589 unique_id port 191589 remote_ip 10.8.0.158 191590 username motamedi9772 191590 mac 191590 bytes_out 0 191590 bytes_in 0 191590 station_ip 83.123.88.135 191590 port 429 191590 unique_id port 191590 remote_ip 10.8.0.154 191595 username mohammadjavad 191595 mac 191595 bytes_out 268996 191595 bytes_in 2252774 191595 station_ip 37.27.14.222 191595 port 435 191595 unique_id port 191550 unique_id port 191550 remote_ip 10.8.0.26 191556 username motamedi9772 191556 mac 191556 bytes_out 0 191556 bytes_in 0 191556 station_ip 83.123.88.135 191556 port 429 191556 unique_id port 191556 remote_ip 10.8.0.154 191558 username motamedi9772 191558 mac 191558 bytes_out 0 191558 bytes_in 0 191558 station_ip 83.123.88.135 191558 port 426 191558 unique_id port 191558 remote_ip 10.8.0.154 191559 username motamedi9772 191559 mac 191559 bytes_out 0 191559 bytes_in 0 191559 station_ip 83.123.88.135 191559 port 426 191559 unique_id port 191559 remote_ip 10.8.0.154 191560 username aminvpn 191560 mac 191560 bytes_out 325014 191560 bytes_in 554117 191560 station_ip 5.119.76.132 191560 port 442 191560 unique_id port 191560 remote_ip 10.8.0.58 191562 username motamedi9772 191562 mac 191562 bytes_out 0 191562 bytes_in 0 191562 station_ip 83.123.88.135 191562 port 443 191562 unique_id port 191562 remote_ip 10.8.0.154 191564 username esmaeilkazemi 191564 mac 191564 bytes_out 10887 191564 bytes_in 37731 191564 station_ip 83.123.33.107 191564 port 426 191564 unique_id port 191564 remote_ip 10.8.0.26 191569 username motamedi9772 191569 mac 191569 bytes_out 13931 191569 bytes_in 30397 191569 station_ip 83.123.88.135 191569 port 426 191569 unique_id port 191569 remote_ip 10.8.0.154 191571 username motamedi9772 191571 mac 191571 bytes_out 0 191571 bytes_in 0 191571 station_ip 83.123.88.135 191571 port 442 191571 unique_id port 191571 remote_ip 10.8.0.154 191572 username motamedi9772 191572 mac 191572 bytes_out 0 191572 bytes_in 0 191572 station_ip 83.123.88.135 191572 port 442 191572 unique_id port 191572 remote_ip 10.8.0.154 191574 username pourshad 191574 mac 191574 bytes_out 929869 191574 bytes_in 8569411 191574 station_ip 5.120.73.74 191574 port 439 191574 unique_id port 191574 remote_ip 10.8.0.42 191576 username motamedi9772 191576 mac 191576 bytes_out 0 191576 bytes_in 0 191576 station_ip 83.123.88.135 191576 port 439 191576 unique_id port 191576 remote_ip 10.8.0.154 191577 username kharazmi2920 191577 mac 191577 bytes_out 1467172 191577 bytes_in 11686140 191577 station_ip 83.123.12.97 191577 port 431 191577 unique_id port 191577 remote_ip 10.8.0.22 191579 username yaghobi 191579 mac 191579 bytes_out 618532 191579 bytes_in 1854336 191579 station_ip 83.123.58.196 191579 port 435 191579 unique_id port 191579 remote_ip 10.8.0.138 191581 username motamedi9772 191581 mac 191581 bytes_out 0 191581 bytes_in 0 191581 station_ip 83.123.88.135 191581 port 444 191581 unique_id port 191581 remote_ip 10.8.0.154 191583 username motamedi9772 191583 mac 191583 bytes_out 0 191583 bytes_in 0 191583 station_ip 83.123.88.135 191583 port 429 191583 unique_id port 191583 remote_ip 10.8.0.154 191584 username kalantary6037 191584 mac 191584 bytes_out 476853 191584 bytes_in 4561977 191584 station_ip 83.123.5.5 191584 port 442 191584 unique_id port 191584 remote_ip 10.8.0.50 191588 username motamedi9772 191588 mac 191588 bytes_out 5300 191588 bytes_in 11181 191588 station_ip 83.123.88.135 191588 port 429 191588 unique_id port 191588 remote_ip 10.8.0.154 191591 username barzegar 191591 mac 191591 bytes_out 0 191591 bytes_in 0 191591 station_ip 5.120.33.150 191591 port 443 191591 unique_id port 191591 remote_ip 10.8.0.70 191593 username zahra1101 191593 mac 191593 bytes_out 12403 191593 bytes_in 27345 191593 station_ip 5.120.116.81 191593 port 442 191593 unique_id port 191554 username esmaeilkazemi 191554 mac 191554 bytes_out 16536 191554 bytes_in 41204 191554 station_ip 83.123.33.107 191554 port 426 191554 unique_id port 191554 remote_ip 10.8.0.26 191557 username motamedi9772 191557 mac 191557 bytes_out 0 191557 bytes_in 0 191557 station_ip 83.123.88.135 191557 port 426 191557 unique_id port 191557 remote_ip 10.8.0.154 191561 username mammad 191561 unique_id port 191561 terminate_cause User-Request 191561 bytes_out 91163132 191561 bytes_in 78347507 191561 station_ip 5.233.63.33 191561 port 15729216 191561 nas_port_type Virtual 191561 remote_ip 5.5.5.58 191566 username motamedi9772 191566 mac 191566 bytes_out 0 191566 bytes_in 0 191566 station_ip 83.123.88.135 191566 port 426 191566 unique_id port 191566 remote_ip 10.8.0.154 191568 username aminvpn 191568 mac 191568 bytes_out 33293 191568 bytes_in 50429 191568 station_ip 5.119.76.132 191568 port 442 191568 unique_id port 191568 remote_ip 10.8.0.58 191570 username motamedi9772 191570 mac 191570 bytes_out 0 191570 bytes_in 0 191570 station_ip 83.123.88.135 191570 port 442 191570 unique_id port 191570 remote_ip 10.8.0.154 191573 username aminvpn 191573 unique_id port 191573 terminate_cause User-Request 191573 bytes_out 105387 191573 bytes_in 454392 191573 station_ip 31.57.126.211 191573 port 15729221 191573 nas_port_type Virtual 191573 remote_ip 5.5.5.56 191575 username motamedi9772 191575 mac 191575 bytes_out 0 191575 bytes_in 0 191575 station_ip 83.123.88.135 191575 port 442 191575 unique_id port 191575 remote_ip 10.8.0.154 191578 username motamedi9772 191578 mac 191578 bytes_out 0 191578 bytes_in 0 191578 station_ip 83.123.88.135 191578 port 439 191578 unique_id port 191578 remote_ip 10.8.0.154 191580 username barzegar 191580 mac 191580 bytes_out 411285 191580 bytes_in 2717669 191580 station_ip 5.120.33.150 191580 port 429 191580 unique_id port 191580 remote_ip 10.8.0.70 191585 username shadkam 191585 mac 191585 bytes_out 374354 191585 bytes_in 65844 191585 station_ip 91.73.41.85 191585 port 426 191585 unique_id port 191585 remote_ip 10.8.0.186 191586 username yaghobi 191586 mac 191586 bytes_out 12797 191586 bytes_in 11232 191586 station_ip 83.123.58.196 191586 port 445 191586 unique_id port 191586 remote_ip 10.8.0.138 191587 username nilufarrajaei 191587 mac 191587 bytes_out 38841 191587 bytes_in 112103 191587 station_ip 83.123.96.93 191587 port 443 191587 unique_id port 191587 remote_ip 10.8.0.194 191592 username motamedi9772 191592 mac 191592 bytes_out 0 191592 bytes_in 0 191592 station_ip 83.123.88.135 191592 port 429 191592 unique_id port 191592 remote_ip 10.8.0.154 191600 username zahra1101 191600 mac 191600 bytes_out 0 191600 bytes_in 0 191600 station_ip 5.120.116.81 191600 port 435 191600 unique_id port 191600 remote_ip 10.8.0.30 191607 username motamedi9772 191607 mac 191607 bytes_out 0 191607 bytes_in 0 191607 station_ip 83.123.88.135 191607 port 429 191607 unique_id port 191607 remote_ip 10.8.0.154 191609 username godarzi 191609 kill_reason Another user logged on this global unique id 191609 mac 191609 bytes_out 0 191609 bytes_in 0 191609 station_ip 5.202.29.254 191609 port 423 191609 unique_id port 191621 username motamedi9772 191621 mac 191621 bytes_out 0 191621 bytes_in 0 191621 station_ip 83.123.88.135 191621 port 426 191621 unique_id port 191621 remote_ip 10.8.0.154 191624 username motamedi9772 191624 mac 191624 bytes_out 0 191624 bytes_in 0 191624 station_ip 83.123.88.135 191624 port 426 191593 remote_ip 10.8.0.30 191594 username motamedi9772 191594 mac 191594 bytes_out 0 191594 bytes_in 0 191594 station_ip 83.123.88.135 191594 port 429 191594 unique_id port 191594 remote_ip 10.8.0.154 191596 username motamedi9772 191596 mac 191596 bytes_out 0 191596 bytes_in 0 191596 station_ip 83.123.88.135 191596 port 429 191596 unique_id port 191596 remote_ip 10.8.0.154 191597 username motamedi9772 191597 mac 191597 bytes_out 0 191597 bytes_in 0 191597 station_ip 83.123.88.135 191597 port 429 191597 unique_id port 191597 remote_ip 10.8.0.154 191601 username motamedi9772 191601 mac 191601 bytes_out 0 191601 bytes_in 0 191601 station_ip 83.123.88.135 191601 port 429 191601 unique_id port 191601 remote_ip 10.8.0.154 191604 username motamedi9772 191604 mac 191604 bytes_out 0 191604 bytes_in 0 191604 station_ip 83.123.88.135 191604 port 429 191604 unique_id port 191604 remote_ip 10.8.0.154 191605 username motamedi9772 191605 mac 191605 bytes_out 0 191605 bytes_in 0 191605 station_ip 83.123.88.135 191605 port 429 191605 unique_id port 191605 remote_ip 10.8.0.154 191606 username motamedi9772 191606 mac 191606 bytes_out 0 191606 bytes_in 0 191606 station_ip 83.123.88.135 191606 port 429 191606 unique_id port 191606 remote_ip 10.8.0.154 191610 username motamedi9772 191610 mac 191610 bytes_out 0 191610 bytes_in 0 191610 station_ip 83.123.88.135 191610 port 426 191610 unique_id port 191610 remote_ip 10.8.0.154 191611 username motamedi9772 191611 mac 191611 bytes_out 0 191611 bytes_in 0 191611 station_ip 83.123.88.135 191611 port 426 191611 unique_id port 191611 remote_ip 10.8.0.154 191614 username motamedi9772 191614 mac 191614 bytes_out 0 191614 bytes_in 0 191614 station_ip 83.123.88.135 191614 port 426 191614 unique_id port 191614 remote_ip 10.8.0.154 191615 username nilufarrajaei 191615 mac 191615 bytes_out 20054 191615 bytes_in 27873 191615 station_ip 83.123.96.93 191615 port 442 191615 unique_id port 191615 remote_ip 10.8.0.194 191619 username motamedi9772 191619 mac 191619 bytes_out 0 191619 bytes_in 0 191619 station_ip 83.123.88.135 191619 port 426 191619 unique_id port 191619 remote_ip 10.8.0.154 191620 username yaghobi 191620 mac 191620 bytes_out 0 191620 bytes_in 0 191620 station_ip 83.123.28.226 191620 port 442 191620 unique_id port 191620 remote_ip 10.8.0.138 191622 username motamedi9772 191622 mac 191622 bytes_out 0 191622 bytes_in 0 191622 station_ip 83.123.88.135 191622 port 426 191622 unique_id port 191622 remote_ip 10.8.0.154 191623 username yaghobi 191623 mac 191623 bytes_out 44968 191623 bytes_in 40795 191623 station_ip 83.123.28.226 191623 port 443 191623 unique_id port 191623 remote_ip 10.8.0.138 191629 username yaghobi 191629 mac 191629 bytes_out 30496 191629 bytes_in 15110 191629 station_ip 83.123.28.226 191629 port 444 191629 unique_id port 191629 remote_ip 10.8.0.138 191631 username motamedi9772 191631 mac 191631 bytes_out 0 191631 bytes_in 0 191631 station_ip 83.123.88.135 191631 port 439 191631 unique_id port 191631 remote_ip 10.8.0.154 191632 username motamedi9772 191632 mac 191632 bytes_out 0 191632 bytes_in 0 191632 station_ip 83.123.88.135 191632 port 439 191632 unique_id port 191632 remote_ip 10.8.0.154 191638 username esmaeilkazemi 191638 mac 191638 bytes_out 210319 191638 bytes_in 2001409 191638 station_ip 83.123.33.107 191638 port 426 191638 unique_id port 191638 remote_ip 10.8.0.26 191595 remote_ip 10.8.0.110 191598 username nilufarrajaei 191598 mac 191598 bytes_out 66088 191598 bytes_in 106538 191598 station_ip 83.123.96.93 191598 port 444 191598 unique_id port 191598 remote_ip 10.8.0.194 191599 username motamedi9772 191599 mac 191599 bytes_out 0 191599 bytes_in 0 191599 station_ip 83.123.88.135 191599 port 429 191599 unique_id port 191599 remote_ip 10.8.0.154 191602 username motamedi9772 191602 mac 191602 bytes_out 0 191602 bytes_in 0 191602 station_ip 83.123.88.135 191602 port 429 191602 unique_id port 191602 remote_ip 10.8.0.154 191603 username kalantary6037 191603 mac 191603 bytes_out 1857388 191603 bytes_in 22236661 191603 station_ip 83.123.5.5 191603 port 431 191603 unique_id port 191603 remote_ip 10.8.0.50 191608 username soleymani5056 191608 mac 191608 bytes_out 678363 191608 bytes_in 8642046 191608 station_ip 5.120.89.65 191608 port 426 191608 unique_id port 191608 remote_ip 10.8.0.226 191612 username motamedi9772 191612 mac 191612 bytes_out 0 191612 bytes_in 0 191612 station_ip 83.123.88.135 191612 port 426 191612 unique_id port 191612 remote_ip 10.8.0.154 191613 username zahra1101 191613 mac 191613 bytes_out 8098 191613 bytes_in 12632 191613 station_ip 5.120.116.81 191613 port 431 191613 unique_id port 191613 remote_ip 10.8.0.30 191616 username motamedi9772 191616 mac 191616 bytes_out 0 191616 bytes_in 0 191616 station_ip 83.123.88.135 191616 port 426 191616 unique_id port 191616 remote_ip 10.8.0.154 191617 username motamedi9772 191617 mac 191617 bytes_out 0 191617 bytes_in 0 191617 station_ip 83.123.88.135 191617 port 426 191617 unique_id port 191617 remote_ip 10.8.0.154 191618 username motamedi9772 191618 mac 191618 bytes_out 0 191618 bytes_in 0 191618 station_ip 83.123.88.135 191618 port 426 191618 unique_id port 191618 remote_ip 10.8.0.154 191627 username meysam 191627 kill_reason Another user logged on this global unique id 191627 mac 191627 bytes_out 0 191627 bytes_in 0 191627 station_ip 188.159.252.43 191627 port 419 191627 unique_id port 191633 username yaghobi 191633 mac 191633 bytes_out 38354 191633 bytes_in 63140 191633 station_ip 83.123.28.226 191633 port 445 191633 unique_id port 191633 remote_ip 10.8.0.138 191634 username motamedi9772 191634 mac 191634 bytes_out 0 191634 bytes_in 0 191634 station_ip 83.123.88.135 191634 port 444 191634 unique_id port 191634 remote_ip 10.8.0.154 191637 username motamedi9772 191637 mac 191637 bytes_out 0 191637 bytes_in 0 191637 station_ip 83.123.88.135 191637 port 444 191637 unique_id port 191637 remote_ip 10.8.0.154 191640 username zahra1101 191640 mac 191640 bytes_out 94386 191640 bytes_in 1144268 191640 station_ip 5.120.116.81 191640 port 445 191640 unique_id port 191640 remote_ip 10.8.0.30 191647 username motamedi9772 191647 mac 191647 bytes_out 0 191647 bytes_in 0 191647 station_ip 83.123.88.135 191647 port 419 191647 unique_id port 191647 remote_ip 10.8.0.154 191653 username khademi 191653 kill_reason Another user logged on this global unique id 191653 mac 191653 bytes_out 0 191653 bytes_in 0 191653 station_ip 83.123.127.82 191653 port 424 191653 unique_id port 191656 username zahra1101 191656 mac 191656 bytes_out 0 191656 bytes_in 0 191656 station_ip 5.120.25.58 191656 port 431 191656 unique_id port 191656 remote_ip 10.8.0.30 191663 username hajghani 191663 mac 191663 bytes_out 0 191663 bytes_in 0 191663 station_ip 5.119.53.31 191663 port 444 191663 unique_id port 191624 unique_id port 191624 remote_ip 10.8.0.154 191625 username motamedi9772 191625 mac 191625 bytes_out 0 191625 bytes_in 0 191625 station_ip 83.123.88.135 191625 port 426 191625 unique_id port 191625 remote_ip 10.8.0.154 191626 username aminvpn 191626 mac 191626 bytes_out 115458 191626 bytes_in 275320 191626 station_ip 5.119.76.132 191626 port 439 191626 unique_id port 191626 remote_ip 10.8.0.58 191628 username motamedi9772 191628 mac 191628 bytes_out 0 191628 bytes_in 0 191628 station_ip 83.123.88.135 191628 port 426 191628 unique_id port 191628 remote_ip 10.8.0.154 191630 username motamedi9772 191630 mac 191630 bytes_out 0 191630 bytes_in 0 191630 station_ip 83.123.88.135 191630 port 439 191630 unique_id port 191630 remote_ip 10.8.0.154 191635 username motamedi9772 191635 mac 191635 bytes_out 0 191635 bytes_in 0 191635 station_ip 83.123.88.135 191635 port 444 191635 unique_id port 191635 remote_ip 10.8.0.154 191636 username meysam 191636 mac 191636 bytes_out 0 191636 bytes_in 0 191636 station_ip 188.159.252.43 191636 port 419 191636 unique_id port 191639 username motamedi9772 191639 mac 191639 bytes_out 0 191639 bytes_in 0 191639 station_ip 83.123.88.135 191639 port 419 191639 unique_id port 191639 remote_ip 10.8.0.154 191641 username motamedi9772 191641 mac 191641 bytes_out 0 191641 bytes_in 0 191641 station_ip 83.123.88.135 191641 port 419 191641 unique_id port 191641 remote_ip 10.8.0.154 191643 username motamedi9772 191643 mac 191643 bytes_out 0 191643 bytes_in 0 191643 station_ip 83.123.88.135 191643 port 419 191643 unique_id port 191643 remote_ip 10.8.0.154 191644 username motamedi9772 191644 mac 191644 bytes_out 0 191644 bytes_in 0 191644 station_ip 83.123.88.135 191644 port 419 191644 unique_id port 191644 remote_ip 10.8.0.154 191645 username Mahin 191645 kill_reason Relative expiration date has reached 191645 mac 191645 bytes_out 0 191645 bytes_in 0 191645 station_ip 5.119.239.54 191645 port 444 191645 unique_id port 191648 username motamedi9772 191648 mac 191648 bytes_out 0 191648 bytes_in 0 191648 station_ip 83.123.88.135 191648 port 419 191648 unique_id port 191648 remote_ip 10.8.0.154 191649 username motamedi9772 191649 mac 191649 bytes_out 0 191649 bytes_in 0 191649 station_ip 83.123.88.135 191649 port 419 191649 unique_id port 191649 remote_ip 10.8.0.154 191650 username motamedi9772 191650 mac 191650 bytes_out 0 191650 bytes_in 0 191650 station_ip 83.123.88.135 191650 port 419 191650 unique_id port 191650 remote_ip 10.8.0.154 191651 username motamedi9772 191651 mac 191651 bytes_out 0 191651 bytes_in 0 191651 station_ip 83.123.88.135 191651 port 419 191651 unique_id port 191651 remote_ip 10.8.0.154 191655 username pourshad 191655 mac 191655 bytes_out 40556 191655 bytes_in 109900 191655 station_ip 5.119.165.65 191655 port 442 191655 unique_id port 191655 remote_ip 10.8.0.42 191657 username nilufarrajaei 191657 mac 191657 bytes_out 71030 191657 bytes_in 190761 191657 station_ip 83.123.96.93 191657 port 429 191657 unique_id port 191657 remote_ip 10.8.0.194 191659 username hajghani 191659 kill_reason Another user logged on this global unique id 191659 mac 191659 bytes_out 0 191659 bytes_in 0 191659 station_ip 5.119.53.31 191659 port 444 191659 unique_id port 191659 remote_ip 10.8.0.106 191667 username motamedi9772 191667 mac 191667 bytes_out 0 191667 bytes_in 0 191667 station_ip 83.123.88.135 191667 port 419 191667 unique_id port 191642 username nilufarrajaei 191642 mac 191642 bytes_out 32760 191642 bytes_in 42516 191642 station_ip 83.123.96.93 191642 port 429 191642 unique_id port 191642 remote_ip 10.8.0.194 191646 username motamedi9772 191646 mac 191646 bytes_out 0 191646 bytes_in 0 191646 station_ip 83.123.88.135 191646 port 419 191646 unique_id port 191646 remote_ip 10.8.0.154 191652 username godarzi 191652 kill_reason Another user logged on this global unique id 191652 mac 191652 bytes_out 0 191652 bytes_in 0 191652 station_ip 5.202.29.254 191652 port 423 191652 unique_id port 191654 username kharazmi2920 191654 mac 191654 bytes_out 1216637 191654 bytes_in 9034588 191654 station_ip 83.123.12.97 191654 port 431 191654 unique_id port 191654 remote_ip 10.8.0.22 191658 username yaghobi 191658 mac 191658 bytes_out 604655 191658 bytes_in 885440 191658 station_ip 83.123.28.226 191658 port 439 191658 unique_id port 191658 remote_ip 10.8.0.138 191660 username kalantary6037 191660 mac 191660 bytes_out 1535776 191660 bytes_in 14222638 191660 station_ip 83.123.19.89 191660 port 426 191660 unique_id port 191660 remote_ip 10.8.0.50 191661 username milan 191661 kill_reason Another user logged on this global unique id 191661 mac 191661 bytes_out 0 191661 bytes_in 0 191661 station_ip 5.119.23.34 191661 port 432 191661 unique_id port 191661 remote_ip 10.8.0.182 191662 username esmaeilkazemi 191662 mac 191662 bytes_out 0 191662 bytes_in 0 191662 station_ip 83.123.33.107 191662 port 426 191662 unique_id port 191662 remote_ip 10.8.0.26 191664 username motamedi9772 191664 mac 191664 bytes_out 1824569 191664 bytes_in 20390561 191664 station_ip 83.123.88.135 191664 port 419 191664 unique_id port 191664 remote_ip 10.8.0.154 191666 username esmaeilkazemi 191666 mac 191666 bytes_out 3514 191666 bytes_in 22533 191666 station_ip 83.123.33.107 191666 port 442 191666 unique_id port 191666 remote_ip 10.8.0.26 191669 username motamedi9772 191669 mac 191669 bytes_out 0 191669 bytes_in 0 191669 station_ip 83.123.88.135 191669 port 419 191669 unique_id port 191669 remote_ip 10.8.0.154 191671 username barzegar 191671 mac 191671 bytes_out 0 191671 bytes_in 0 191671 station_ip 5.120.33.150 191671 port 444 191671 unique_id port 191671 remote_ip 10.8.0.70 191672 username nilufarrajaei 191672 mac 191672 bytes_out 45188 191672 bytes_in 82024 191672 station_ip 83.123.96.93 191672 port 431 191672 unique_id port 191672 remote_ip 10.8.0.194 191677 username alikomsari 191716 bytes_out 1361454 191677 kill_reason Another user logged on this global unique id 191677 mac 191677 bytes_out 0 191677 bytes_in 0 191677 station_ip 5.120.95.120 191677 port 433 191677 unique_id port 191679 username nilufarrajaei 191679 mac 191679 bytes_out 40487 191679 bytes_in 100024 191679 station_ip 83.123.96.93 191679 port 431 191679 unique_id port 191679 remote_ip 10.8.0.194 191683 username soleymani5056 191683 mac 191683 bytes_out 223379 191683 bytes_in 840824 191683 station_ip 5.120.93.237 191683 port 442 191683 unique_id port 191683 remote_ip 10.8.0.226 191685 username meghdad1616 191685 mac 191685 bytes_out 0 191685 bytes_in 0 191685 station_ip 5.120.133.245 191685 port 431 191685 unique_id port 191685 remote_ip 10.8.0.230 191686 username yaghobi 191686 mac 191686 bytes_out 23366 191686 bytes_in 30992 191686 station_ip 83.123.25.83 191686 port 446 191686 unique_id port 191686 remote_ip 10.8.0.138 191688 username shadkam 191688 mac 191688 bytes_out 0 191688 bytes_in 0 191688 station_ip 217.165.72.201 191688 port 419 191665 username motamedi9772 191665 mac 191665 bytes_out 0 191665 bytes_in 0 191665 station_ip 83.123.88.135 191665 port 419 191665 unique_id port 191665 remote_ip 10.8.0.154 191668 username mohammadjavad 191668 mac 191668 bytes_out 0 191668 bytes_in 0 191668 station_ip 37.27.14.222 191668 port 426 191668 unique_id port 191668 remote_ip 10.8.0.110 191673 username mohammadjavad 191673 mac 191673 bytes_out 0 191673 bytes_in 0 191673 station_ip 37.27.14.222 191673 port 431 191673 unique_id port 191673 remote_ip 10.8.0.110 191676 username kalantary6037 191676 mac 191676 bytes_out 2479296 191676 bytes_in 32887292 191676 station_ip 83.123.19.89 191676 port 419 191676 unique_id port 191676 remote_ip 10.8.0.50 191678 username alirezaza 191678 unique_id port 191678 terminate_cause Lost-Carrier 191678 bytes_out 144149 191678 bytes_in 879669 191678 station_ip 5.120.190.183 191678 port 15729225 191678 nas_port_type Virtual 191678 remote_ip 5.5.5.55 191681 username mohammadjavad 191681 mac 191681 bytes_out 0 191681 bytes_in 0 191681 station_ip 37.27.14.222 191681 port 446 191681 unique_id port 191681 remote_ip 10.8.0.110 191682 username barzegar 191682 mac 191682 bytes_out 0 191682 bytes_in 0 191682 station_ip 5.120.33.150 191682 port 447 191682 unique_id port 191682 remote_ip 10.8.0.70 191690 username godarzi 191690 kill_reason Another user logged on this global unique id 191690 mac 191690 bytes_out 0 191690 bytes_in 0 191690 station_ip 5.202.29.254 191690 port 423 191690 unique_id port 191692 username malekpoir 191692 mac 191692 bytes_out 3287100 191692 bytes_in 21643762 191692 station_ip 5.119.87.128 191692 port 430 191692 unique_id port 191692 remote_ip 10.8.0.18 191697 username hatami 191697 mac 191697 bytes_out 1363233 191697 bytes_in 10386164 191697 station_ip 37.27.43.246 191697 port 435 191697 unique_id port 191697 remote_ip 10.8.0.98 191705 username barzegar 191705 mac 191705 bytes_out 0 191705 bytes_in 0 191705 station_ip 5.120.33.150 191705 port 433 191705 unique_id port 191705 remote_ip 10.8.0.70 191706 username zahra1101 191706 mac 191706 bytes_out 0 191706 bytes_in 0 191706 station_ip 5.120.25.58 191706 port 433 191706 unique_id port 191706 remote_ip 10.8.0.30 191708 username dortaj3792 191708 mac 191708 bytes_out 320061 191708 bytes_in 817782 191708 station_ip 5.120.131.204 191708 port 435 191708 unique_id port 191708 remote_ip 10.8.0.102 191716 username aminvpn 191716 mac 191716 bytes_in 2787479 191716 station_ip 5.119.76.132 191716 port 443 191716 unique_id port 191716 remote_ip 10.8.0.58 191717 username shadkam 191717 mac 191717 bytes_out 0 191717 bytes_in 0 191717 station_ip 217.165.72.201 191717 port 429 191717 unique_id port 191717 remote_ip 10.8.0.186 191718 username godarzi 191718 mac 191718 bytes_out 0 191718 bytes_in 0 191718 station_ip 5.202.29.254 191718 port 423 191718 unique_id port 191720 username zahra1101 191720 mac 191720 bytes_out 2716 191720 bytes_in 5012 191720 station_ip 5.120.25.58 191720 port 435 191720 unique_id port 191720 remote_ip 10.8.0.30 191724 username aminvpn 191724 mac 191724 bytes_out 177655 191724 bytes_in 398788 191724 station_ip 5.119.76.132 191724 port 429 191724 unique_id port 191724 remote_ip 10.8.0.58 191725 username kharazmi2920 191725 mac 191725 bytes_out 1204237 191725 bytes_in 12694856 191725 station_ip 83.123.12.97 191725 port 419 191725 unique_id port 191725 remote_ip 10.8.0.22 191728 username kalantary6037 191667 remote_ip 10.8.0.154 191670 username dortaj3792 191670 mac 191670 bytes_out 368103 191670 bytes_in 469775 191670 station_ip 5.120.131.204 191670 port 445 191670 unique_id port 191670 remote_ip 10.8.0.102 191674 username sabaghnezhad 191674 mac 191674 bytes_out 98012 191674 bytes_in 92434 191674 station_ip 83.123.89.19 191674 port 429 191674 unique_id port 191674 remote_ip 10.8.0.66 191675 username motamedi9772 191675 mac 191675 bytes_out 348251 191675 bytes_in 2902360 191675 station_ip 83.123.88.135 191675 port 426 191675 unique_id port 191675 remote_ip 10.8.0.154 191680 username motamedi9772 191680 mac 191680 bytes_out 2728 191680 bytes_in 4684 191680 station_ip 83.123.88.135 191680 port 426 191680 unique_id port 191680 remote_ip 10.8.0.154 191684 username mohammadjavad 191684 mac 191684 bytes_out 139832 191684 bytes_in 2623652 191684 station_ip 37.27.14.222 191684 port 431 191684 unique_id port 191684 remote_ip 10.8.0.110 191687 username shadkam 191687 mac 191687 bytes_out 319505 191687 bytes_in 1948160 191687 station_ip 217.165.72.201 191687 port 419 191687 unique_id port 191687 remote_ip 10.8.0.186 191696 username ghaderpour6649 191696 kill_reason Wrong password 191696 mac 191696 bytes_out 0 191696 bytes_in 0 191696 station_ip 83.123.54.145 191696 port 431 191696 unique_id port 191698 username barzegar 191698 mac 191698 bytes_out 0 191698 bytes_in 0 191698 station_ip 5.120.33.150 191698 port 435 191698 unique_id port 191698 remote_ip 10.8.0.70 191699 username yaghobi 191699 mac 191699 bytes_out 243596 191699 bytes_in 493905 191699 station_ip 83.123.42.218 191699 port 430 191699 unique_id port 191699 remote_ip 10.8.0.138 191700 username alikomsari 191700 mac 191700 bytes_out 0 191700 bytes_in 0 191700 station_ip 5.120.95.120 191700 port 433 191700 unique_id port 191703 username motamedi9772 191703 mac 191703 bytes_out 412993 191703 bytes_in 2980137 191703 station_ip 83.123.45.235 191703 port 433 191703 unique_id port 191703 remote_ip 10.8.0.154 191711 username zahra1101 191711 mac 191711 bytes_out 2123 191711 bytes_in 4493 191711 station_ip 5.120.25.58 191711 port 435 191711 unique_id port 191711 remote_ip 10.8.0.30 191712 username yaghobi 191712 mac 191712 bytes_out 74700 191712 bytes_in 90064 191712 station_ip 83.123.50.144 191712 port 433 191712 unique_id port 191712 remote_ip 10.8.0.138 191714 username shadkam 191714 mac 191714 bytes_out 1772109 191714 bytes_in 13808213 191714 station_ip 217.165.72.201 191714 port 419 191714 unique_id port 191714 remote_ip 10.8.0.186 191719 username shadkam 191719 mac 191719 bytes_out 14970 191719 bytes_in 114502 191719 station_ip 217.165.72.201 191719 port 433 191719 unique_id port 191719 remote_ip 10.8.0.186 191723 username motamedi9772 191723 mac 191723 bytes_out 7554 191723 bytes_in 16566 191723 station_ip 83.123.77.11 191723 port 435 191723 unique_id port 191723 remote_ip 10.8.0.154 191727 username pourshad 191727 mac 191727 bytes_out 34676 191727 bytes_in 112941 191727 station_ip 5.119.165.65 191727 port 443 191727 unique_id port 191727 remote_ip 10.8.0.42 191731 username motamedi9772 191731 mac 191731 bytes_out 355820 191731 bytes_in 3540500 191731 station_ip 83.123.77.11 191731 port 419 191731 unique_id port 191731 remote_ip 10.8.0.154 191732 username zahra1101 191732 mac 191732 bytes_out 0 191732 bytes_in 0 191732 station_ip 5.120.25.58 191732 port 419 191732 unique_id port 191732 remote_ip 10.8.0.30 191688 unique_id port 191688 remote_ip 10.8.0.186 191689 username mosi 191689 mac 191689 bytes_out 5279640 191689 bytes_in 43097000 191689 station_ip 151.235.79.93 191689 port 439 191689 unique_id port 191689 remote_ip 10.8.0.142 191691 username meghdad1616 191691 mac 191691 bytes_out 0 191691 bytes_in 0 191691 station_ip 5.120.133.245 191691 port 439 191691 unique_id port 191691 remote_ip 10.8.0.230 191693 username mosi 191693 mac 191693 bytes_out 98021 191693 bytes_in 475970 191693 station_ip 89.34.38.2 191693 port 419 191693 unique_id port 191693 remote_ip 10.8.0.142 191694 username yaghobi 191694 mac 191694 bytes_out 117295 191694 bytes_in 247999 191694 station_ip 83.123.25.83 191694 port 431 191694 unique_id port 191694 remote_ip 10.8.0.138 191695 username ghaderpour6649 191695 kill_reason Wrong password 191695 mac 191695 bytes_out 0 191695 bytes_in 0 191695 station_ip 83.123.54.145 191695 port 431 191695 unique_id port 191701 username shadkam 191701 mac 191701 bytes_out 983898 191701 bytes_in 13419768 191701 station_ip 217.165.72.201 191701 port 419 191701 unique_id port 191701 remote_ip 10.8.0.186 191702 username zahra1101 191702 mac 191702 bytes_out 2743619 191702 bytes_in 1234195 191702 station_ip 5.120.25.58 191702 port 445 191702 unique_id port 191702 remote_ip 10.8.0.30 191704 username sabaghnezhad 191704 mac 191704 bytes_out 285922 191704 bytes_in 642199 191704 station_ip 83.123.89.19 191704 port 444 191704 unique_id port 191704 remote_ip 10.8.0.66 191707 username pourshad 191707 mac 191707 bytes_out 314805 191707 bytes_in 1593500 191707 station_ip 5.119.165.65 191707 port 429 191707 unique_id port 191707 remote_ip 10.8.0.42 191709 username yaghobi 191709 mac 191709 bytes_out 271173 191709 bytes_in 517923 191709 station_ip 83.123.50.144 191709 port 447 191709 unique_id port 191709 remote_ip 10.8.0.138 191710 username kharazmi2920 191710 mac 191710 bytes_out 18966 191710 bytes_in 30521 191710 station_ip 83.123.12.97 191710 port 429 191710 unique_id port 191710 remote_ip 10.8.0.22 191713 username kalantary6037 191713 mac 191713 bytes_out 4106560 191713 bytes_in 48715469 191713 station_ip 83.123.15.117 191713 port 442 191713 unique_id port 191713 remote_ip 10.8.0.50 191715 username shadkam 191715 mac 191715 bytes_out 0 191715 bytes_in 0 191715 station_ip 217.165.72.201 191715 port 419 191715 unique_id port 191715 remote_ip 10.8.0.186 191721 username yaghobi 191721 mac 191721 bytes_out 25783 191721 bytes_in 31626 191721 station_ip 83.123.93.183 191721 port 443 191721 unique_id port 191721 remote_ip 10.8.0.138 191722 username zahra1101 191722 mac 191722 bytes_out 1650 191722 bytes_in 4273 191722 station_ip 5.120.25.58 191722 port 433 191722 unique_id port 191722 remote_ip 10.8.0.30 191726 username motamedi9772 191726 mac 191726 bytes_out 96530 191726 bytes_in 227345 191726 station_ip 83.123.77.11 191726 port 435 191726 unique_id port 191726 remote_ip 10.8.0.154 191729 username zahra1101 191729 mac 191729 bytes_out 11966 191729 bytes_in 20791 191729 station_ip 5.120.25.58 191729 port 429 191729 unique_id port 191729 remote_ip 10.8.0.30 191738 username zahra1101 191738 mac 191738 bytes_out 0 191738 bytes_in 0 191738 station_ip 5.120.25.58 191738 port 419 191738 unique_id port 191738 remote_ip 10.8.0.30 191739 username nilufarrajaei 191739 mac 191739 bytes_out 312477 191739 bytes_in 643916 191739 station_ip 83.123.96.93 191739 port 426 191739 unique_id port 191728 mac 191728 bytes_out 691852 191728 bytes_in 6971368 191728 station_ip 83.123.15.117 191728 port 433 191728 unique_id port 191728 remote_ip 10.8.0.50 191730 username ghaderpour6649 191730 mac 191730 bytes_out 1722911 191730 bytes_in 10369841 191730 station_ip 83.123.54.145 191730 port 431 191730 unique_id port 191730 remote_ip 10.8.0.130 191733 username zahra1101 191733 kill_reason Maximum check online fails reached 191733 mac 191733 bytes_out 0 191733 bytes_in 0 191733 station_ip 5.120.25.58 191733 port 431 191733 unique_id port 191734 username meghdad1616 191734 mac 191734 bytes_out 0 191734 bytes_in 0 191734 station_ip 5.120.133.245 191734 port 419 191734 unique_id port 191734 remote_ip 10.8.0.230 191737 username yaghobi 191737 mac 191737 bytes_out 466455 191737 bytes_in 694541 191737 station_ip 83.123.49.76 191737 port 429 191737 unique_id port 191737 remote_ip 10.8.0.138 191745 username shadkam 191745 mac 191745 bytes_out 0 191745 bytes_in 0 191745 station_ip 217.165.72.201 191745 port 423 191745 unique_id port 191745 remote_ip 10.8.0.186 191747 username shadkam 191747 mac 191747 bytes_out 0 191747 bytes_in 0 191747 station_ip 217.165.72.201 191747 port 426 191747 unique_id port 191747 remote_ip 10.8.0.186 191750 username soleymani5056 191750 mac 191750 bytes_out 0 191750 bytes_in 0 191750 station_ip 5.120.93.112 191750 port 426 191750 unique_id port 191750 remote_ip 10.8.0.226 191753 username yaghobi 191753 mac 191753 bytes_out 323936 191753 bytes_in 729484 191753 station_ip 83.123.90.107 191753 port 443 191753 unique_id port 191753 remote_ip 10.8.0.138 191757 username aminvpn 191757 unique_id port 191757 terminate_cause User-Request 191757 bytes_out 8526 191757 bytes_in 29775 191757 station_ip 83.123.39.86 191757 port 15729228 191757 nas_port_type Virtual 191757 remote_ip 5.5.5.53 191764 username shadkam 191764 mac 191764 bytes_out 0 191764 bytes_in 0 191764 station_ip 217.165.72.201 191764 port 426 191764 unique_id port 191764 remote_ip 10.8.0.186 191766 username zahra1101 191766 mac 191766 bytes_out 0 191766 bytes_in 0 191766 station_ip 5.120.25.58 191766 port 419 191766 unique_id port 191766 remote_ip 10.8.0.30 191769 username shadkam 191769 mac 191769 bytes_out 0 191769 bytes_in 0 191769 station_ip 217.165.72.201 191769 port 426 191769 unique_id port 191769 remote_ip 10.8.0.186 191773 username meghdad1616 191773 mac 191773 bytes_out 0 191773 bytes_in 0 191773 station_ip 5.120.133.245 191773 port 444 191773 unique_id port 191773 remote_ip 10.8.0.230 191775 username yaghobi 191775 mac 191775 bytes_out 213774 191775 bytes_in 235271 191775 station_ip 83.123.33.191 191775 port 445 191775 unique_id port 191775 remote_ip 10.8.0.138 191779 username mosi 191779 mac 191779 bytes_out 648127 191779 bytes_in 2772329 191779 station_ip 151.235.72.255 191779 port 445 191779 unique_id port 191779 remote_ip 10.8.0.142 191782 username aminvpn 191782 unique_id port 191782 terminate_cause User-Request 191782 bytes_out 108652 191782 bytes_in 2135336 191782 station_ip 31.57.124.242 191782 port 15729230 191782 nas_port_type Virtual 191782 remote_ip 5.5.5.51 191785 username aminvpn 191785 unique_id port 191785 terminate_cause User-Request 191785 bytes_out 826965 191785 bytes_in 26062389 191785 station_ip 31.57.124.242 191785 port 15729232 191785 nas_port_type Virtual 191785 remote_ip 5.5.5.51 191789 username motamedi9772 191789 mac 191789 bytes_out 0 191789 bytes_in 0 191789 station_ip 83.123.51.251 191735 username zahra1101 191735 mac 191735 bytes_out 11578 191735 bytes_in 27451 191735 station_ip 5.120.25.58 191735 port 435 191735 unique_id port 191735 remote_ip 10.8.0.30 191736 username meghdad1616 191736 mac 191736 bytes_out 0 191736 bytes_in 0 191736 station_ip 5.120.133.245 191736 port 419 191736 unique_id port 191736 remote_ip 10.8.0.230 191740 username meghdad1616 191740 mac 191740 bytes_out 0 191740 bytes_in 0 191740 station_ip 5.120.133.245 191740 port 426 191740 unique_id port 191740 remote_ip 10.8.0.230 191741 username meysam 191741 mac 191741 bytes_out 2234637 191741 bytes_in 30165593 191741 station_ip 188.159.252.43 191741 port 443 191741 unique_id port 191741 remote_ip 10.8.0.158 191744 username shadkam 191744 mac 191744 bytes_out 255441 191744 bytes_in 1069140 191744 station_ip 217.165.72.201 191744 port 423 191744 unique_id port 191744 remote_ip 10.8.0.186 191748 username sekonji0496 191748 mac 191748 bytes_out 2055 191748 bytes_in 4035 191748 station_ip 83.123.6.130 191748 port 426 191748 unique_id port 191748 remote_ip 10.8.0.62 191752 username meghdad1616 191752 mac 191752 bytes_out 32802 191752 bytes_in 101232 191752 station_ip 5.120.133.245 191752 port 435 191752 unique_id port 191752 remote_ip 10.8.0.230 191754 username ghaderpour6649 191754 mac 191754 bytes_out 35362 191754 bytes_in 63719 191754 station_ip 83.123.17.141 191754 port 435 191754 unique_id port 191754 remote_ip 10.8.0.130 191756 username barzegar8595 191756 mac 191756 bytes_out 4934969 191756 bytes_in 35108579 191756 station_ip 46.225.210.98 191756 port 438 191756 unique_id port 191756 remote_ip 10.8.0.114 191758 username yaghobi 191758 mac 191758 bytes_out 309441 191758 bytes_in 1652541 191758 station_ip 83.123.99.133 191758 port 445 191758 unique_id port 191758 remote_ip 10.8.0.138 191759 username shadkam 191759 mac 191759 bytes_out 81821 191759 bytes_in 473175 191759 station_ip 217.165.72.201 191759 port 426 191759 unique_id port 191759 remote_ip 10.8.0.186 191761 username shadkam 191761 mac 191761 bytes_out 2769 191761 bytes_in 5158 191761 station_ip 217.165.72.201 191761 port 426 191761 unique_id port 191761 remote_ip 10.8.0.186 191762 username nilufarrajaei 191762 mac 191762 bytes_out 1462943 191762 bytes_in 16052550 191762 station_ip 83.123.96.93 191762 port 419 191762 unique_id port 191762 remote_ip 10.8.0.194 191763 username barzegar 191763 mac 191763 bytes_out 0 191763 bytes_in 0 191763 station_ip 5.120.33.150 191763 port 419 191763 unique_id port 191763 remote_ip 10.8.0.70 191765 username shadkam 191765 mac 191765 bytes_out 0 191765 bytes_in 0 191765 station_ip 217.165.72.201 191765 port 426 191765 unique_id port 191765 remote_ip 10.8.0.186 191767 username shadkam 191767 mac 191767 bytes_out 0 191767 bytes_in 0 191767 station_ip 217.165.72.201 191767 port 426 191767 unique_id port 191767 remote_ip 10.8.0.186 191768 username yaghobi 191768 mac 191768 bytes_out 782670 191768 bytes_in 5571174 191768 station_ip 83.123.33.191 191768 port 435 191768 unique_id port 191768 remote_ip 10.8.0.138 191772 username zahra1101 191772 kill_reason Maximum check online fails reached 191772 mac 191772 bytes_out 0 191772 bytes_in 0 191772 station_ip 5.120.25.58 191772 port 419 191772 unique_id port 191778 username zahra1101 191778 mac 191778 bytes_out 0 191778 bytes_in 0 191778 station_ip 5.120.25.58 191778 port 450 191778 unique_id port 191778 remote_ip 10.8.0.30 191739 remote_ip 10.8.0.194 191742 username dortaj3792 191742 mac 191742 bytes_out 621220 191742 bytes_in 3575540 191742 station_ip 5.120.131.204 191742 port 444 191742 unique_id port 191742 remote_ip 10.8.0.102 191743 username zahra1101 191743 mac 191743 bytes_out 370100 191743 bytes_in 2589605 191743 station_ip 5.120.25.58 191743 port 419 191743 unique_id port 191743 remote_ip 10.8.0.30 191746 username meghdad1616 191746 mac 191746 bytes_out 2626 191746 bytes_in 4962 191746 station_ip 5.120.133.245 191746 port 423 191746 unique_id port 191746 remote_ip 10.8.0.230 191749 username alirezazadeh 191749 unique_id port 191749 terminate_cause Lost-Carrier 191749 bytes_out 604019 191749 bytes_in 2680781 191749 station_ip 31.59.45.122 191749 port 15729227 191749 nas_port_type Virtual 191749 remote_ip 5.5.5.54 191751 username mammad 191751 unique_id port 191751 terminate_cause User-Request 191751 bytes_out 7598180 191751 bytes_in 271304035 191751 station_ip 5.233.63.33 191751 port 15729223 191751 nas_port_type Virtual 191751 remote_ip 5.5.5.58 191755 username hamid.e 191755 unique_id port 191755 terminate_cause User-Request 191755 bytes_out 18768229 191755 bytes_in 305189067 191755 station_ip 37.27.23.79 191755 port 15729220 191755 nas_port_type Virtual 191755 remote_ip 5.5.5.60 191760 username fezealinaghi 191760 kill_reason Another user logged on this global unique id 191760 mac 191760 bytes_out 0 191760 bytes_in 0 191760 station_ip 83.123.100.109 191760 port 446 191760 unique_id port 191760 remote_ip 10.8.0.202 191770 username alikomsari 191770 kill_reason Another user logged on this global unique id 191770 mac 191770 bytes_out 0 191770 bytes_in 0 191770 station_ip 5.120.95.120 191770 port 442 191770 unique_id port 191770 remote_ip 10.8.0.214 191771 username soleymani5056 191771 mac 191771 bytes_out 198009 191771 bytes_in 265087 191771 station_ip 5.120.93.112 191771 port 444 191771 unique_id port 191771 remote_ip 10.8.0.226 191774 username zahra1101 191774 mac 191774 bytes_out 0 191774 bytes_in 0 191774 station_ip 5.120.25.58 191774 port 426 191774 unique_id port 191774 remote_ip 10.8.0.30 191776 username motamedi9772 191776 kill_reason Another user logged on this global unique id 191776 mac 191776 bytes_out 0 191776 bytes_in 0 191776 station_ip 83.123.51.251 191776 port 423 191776 unique_id port 191776 remote_ip 10.8.0.154 191777 username aminvpn 191777 unique_id port 191777 terminate_cause Lost-Carrier 191777 bytes_out 34832363 191777 bytes_in 870291114 191777 station_ip 31.57.126.211 191777 port 15729222 191777 nas_port_type Virtual 191777 remote_ip 5.5.5.56 191787 username motamedi9772 191787 kill_reason Another user logged on this global unique id 191787 mac 191787 bytes_out 0 191787 bytes_in 0 191787 station_ip 83.123.51.251 191787 port 423 191787 unique_id port 191788 username mostafa_es78 191788 mac 191788 bytes_out 1837325 191788 bytes_in 21446349 191788 station_ip 37.129.73.55 191788 port 426 191788 unique_id port 191788 remote_ip 10.8.0.34 191791 username zahra1101 191791 mac 191791 bytes_out 66324 191791 bytes_in 132642 191791 station_ip 5.120.25.58 191791 port 450 191791 unique_id port 191791 remote_ip 10.8.0.30 191795 username mohammadjavad 191795 mac 191795 bytes_out 1601798 191795 bytes_in 22824741 191795 station_ip 83.123.69.79 191795 port 449 191795 unique_id port 191795 remote_ip 10.8.0.110 191799 username godarzi 191799 mac 191799 bytes_out 171230 191799 bytes_in 1276021 191799 station_ip 5.120.177.174 191799 port 451 191799 unique_id port 191799 remote_ip 10.8.0.38 191805 username meghdad1616 191805 mac 191805 bytes_out 0 191780 username kalantary6037 191780 mac 191780 bytes_out 527620 191780 bytes_in 5678115 191780 station_ip 83.123.24.85 191780 port 449 191780 unique_id port 191780 remote_ip 10.8.0.50 191781 username ghaderpour6649 191781 mac 191781 bytes_out 221283 191781 bytes_in 988113 191781 station_ip 83.123.126.38 191781 port 448 191781 unique_id port 191781 remote_ip 10.8.0.130 191783 username aminvpn 191783 unique_id port 191783 terminate_cause User-Request 191783 bytes_out 53185 191783 bytes_in 25319 191783 station_ip 31.57.124.242 191783 port 15729231 191783 nas_port_type Virtual 191783 remote_ip 5.5.5.51 191784 username yaghobi 191784 mac 191784 bytes_out 388630 191784 bytes_in 460634 191784 station_ip 83.123.40.156 191784 port 444 191784 unique_id port 191784 remote_ip 10.8.0.138 191786 username zahra1101 191786 kill_reason Maximum check online fails reached 191786 mac 191786 bytes_out 0 191786 bytes_in 0 191786 station_ip 5.120.25.58 191786 port 444 191786 unique_id port 191796 username meghdad1616 191796 mac 191796 bytes_out 2530 191796 bytes_in 4847 191796 station_ip 5.120.133.245 191796 port 445 191796 unique_id port 191796 remote_ip 10.8.0.230 191797 username shadkam 191797 mac 191797 bytes_out 5116726 191797 bytes_in 42890331 191797 station_ip 217.165.72.201 191797 port 435 191797 unique_id port 191797 remote_ip 10.8.0.186 191801 username mosi 191801 mac 191801 bytes_out 51200 191801 bytes_in 92114 191801 station_ip 151.235.75.28 191801 port 450 191801 unique_id port 191801 remote_ip 10.8.0.142 191803 username yaghobi 191803 mac 191803 bytes_out 240266 191803 bytes_in 382991 191803 station_ip 83.123.40.202 191803 port 423 191803 unique_id port 191803 remote_ip 10.8.0.138 191810 username barzegar 191810 mac 191810 bytes_out 0 191810 bytes_in 0 191810 station_ip 5.120.33.150 191810 port 450 191810 unique_id port 191810 remote_ip 10.8.0.70 191811 username barzegar 191811 mac 191811 bytes_out 2290 191811 bytes_in 4583 191811 station_ip 5.120.33.150 191811 port 446 191811 unique_id port 191811 remote_ip 10.8.0.70 191812 username yaghobi 191812 mac 191812 bytes_out 352058 191812 bytes_in 1662929 191812 station_ip 83.123.40.202 191812 port 445 191812 unique_id port 191812 remote_ip 10.8.0.138 191817 username dortaj3792 191817 mac 191817 bytes_out 731698 191817 bytes_in 2450926 191817 station_ip 5.120.131.204 191817 port 426 191817 unique_id port 191817 remote_ip 10.8.0.102 191819 username shadkam 191819 kill_reason Another user logged on this global unique id 191819 mac 191819 bytes_out 0 191819 bytes_in 0 191819 station_ip 217.165.72.201 191819 port 426 191819 unique_id port 191821 username zahra1101 191821 kill_reason Maximum check online fails reached 191821 mac 191821 bytes_out 0 191821 bytes_in 0 191821 station_ip 5.120.25.58 191821 port 445 191821 unique_id port 191831 username barzegar 191831 mac 191831 bytes_out 0 191831 bytes_in 0 191831 station_ip 5.120.33.150 191831 port 452 191831 unique_id port 191831 remote_ip 10.8.0.70 191833 username rajaei 191833 mac 191833 bytes_out 3873323 191833 bytes_in 30341976 191833 station_ip 89.32.104.180 191833 port 435 191833 unique_id port 191833 remote_ip 10.8.0.210 191836 username aminvpn 191836 unique_id port 191836 terminate_cause User-Request 191836 bytes_out 596106 191836 bytes_in 12780013 191836 station_ip 31.57.124.242 191836 port 15729234 191836 nas_port_type Virtual 191836 remote_ip 5.5.5.51 191838 username zahra1101 191838 mac 191838 bytes_out 472334 191838 bytes_in 1364473 191789 port 423 191789 unique_id port 191790 username motamedi9772 191790 mac 191790 bytes_out 6137 191790 bytes_in 12138 191790 station_ip 83.123.51.251 191790 port 423 191790 unique_id port 191790 remote_ip 10.8.0.154 191792 username meghdad1616 191792 mac 191792 bytes_out 55735 191792 bytes_in 146191 191792 station_ip 5.120.133.245 191792 port 447 191792 unique_id port 191792 remote_ip 10.8.0.230 191793 username yaghobi 191793 mac 191793 bytes_out 246616 191793 bytes_in 435224 191793 station_ip 83.123.23.163 191793 port 445 191793 unique_id port 191793 remote_ip 10.8.0.138 191794 username aminvpn 191794 kill_reason Another user logged on this global unique id 191794 mac 191794 bytes_out 0 191794 bytes_in 0 191794 station_ip 5.119.76.132 191794 port 433 191794 unique_id port 191794 remote_ip 10.8.0.58 191798 username shadkam 191798 mac 191798 bytes_out 0 191798 bytes_in 0 191798 station_ip 217.165.72.201 191798 port 449 191798 unique_id port 191798 remote_ip 10.8.0.186 191800 username khademi 191800 kill_reason Another user logged on this global unique id 191800 mac 191800 bytes_out 0 191800 bytes_in 0 191800 station_ip 83.123.127.82 191800 port 424 191800 unique_id port 191802 username meghdad1616 191802 mac 191802 bytes_out 20351 191802 bytes_in 37162 191802 station_ip 5.120.133.245 191802 port 445 191802 unique_id port 191802 remote_ip 10.8.0.230 191804 username pourshad 191804 mac 191804 bytes_out 24831364 191804 bytes_in 31988951 191804 station_ip 5.119.165.65 191804 port 438 191804 unique_id port 191804 remote_ip 10.8.0.42 191807 username fezealinaghi 191807 mac 191807 bytes_out 0 191807 bytes_in 0 191807 station_ip 83.123.100.109 191807 port 446 191807 unique_id port 191808 username alirezaza 191808 unique_id port 191808 terminate_cause Lost-Carrier 191808 bytes_out 316205 191808 bytes_in 9904758 191808 station_ip 5.120.99.227 191808 port 15729229 191808 nas_port_type Virtual 191808 remote_ip 5.5.5.52 191814 username meghdad1616 191814 mac 191814 bytes_out 0 191814 bytes_in 0 191814 station_ip 5.120.133.245 191814 port 452 191814 unique_id port 191814 remote_ip 10.8.0.230 191816 username mosi 191816 mac 191816 bytes_out 40736 191816 bytes_in 80928 191816 station_ip 5.200.112.214 191816 port 445 191816 unique_id port 191816 remote_ip 10.8.0.142 191818 username shadkam 191818 mac 191818 bytes_out 486279 191818 bytes_in 48294 191818 station_ip 217.165.72.201 191818 port 449 191818 unique_id port 191818 remote_ip 10.8.0.186 191824 username khademi 191824 kill_reason Another user logged on this global unique id 191824 mac 191824 bytes_out 0 191824 bytes_in 0 191824 station_ip 83.123.127.82 191824 port 424 191824 unique_id port 191826 username farhad3 191826 mac 191826 bytes_out 1301034 191826 bytes_in 9178157 191826 station_ip 5.120.51.126 191826 port 426 191826 unique_id port 191826 remote_ip 10.8.0.222 191828 username yarmohamadi7916 191828 kill_reason Another user logged on this global unique id 191828 mac 191828 bytes_out 0 191828 bytes_in 0 191828 station_ip 5.120.189.232 191828 port 447 191828 unique_id port 191828 remote_ip 10.8.0.126 191829 username majidsarmast 191829 kill_reason Another user logged on this global unique id 191829 mac 191829 bytes_out 0 191829 bytes_in 0 191829 station_ip 83.123.41.137 191829 port 448 191829 unique_id port 191829 remote_ip 10.8.0.146 191832 username yarmohamadi7916 191832 mac 191832 bytes_out 0 191832 bytes_in 0 191832 station_ip 5.120.189.232 191832 port 447 191832 unique_id port 191834 username yaghobi 191805 bytes_in 0 191805 station_ip 5.120.133.245 191805 port 449 191805 unique_id port 191805 remote_ip 10.8.0.230 191806 username shadkam 191806 mac 191806 bytes_out 0 191806 bytes_in 0 191806 station_ip 217.165.72.201 191806 port 450 191806 unique_id port 191806 remote_ip 10.8.0.186 191809 username shadkam 191809 mac 191809 bytes_out 0 191809 bytes_in 0 191809 station_ip 217.165.72.201 191809 port 449 191809 unique_id port 191809 remote_ip 10.8.0.186 191813 username aminvpn 191813 kill_reason Another user logged on this global unique id 191813 mac 191813 bytes_out 0 191813 bytes_in 0 191813 station_ip 5.119.76.132 191813 port 433 191813 unique_id port 191815 username alipour1506 191815 kill_reason Another user logged on this global unique id 191815 mac 191815 bytes_out 0 191815 bytes_in 0 191815 station_ip 83.123.67.149 191815 port 429 191815 unique_id port 191815 remote_ip 10.8.0.246 191820 username shadkam 191820 kill_reason Another user logged on this global unique id 191820 mac 191820 bytes_out 0 191820 bytes_in 0 191820 station_ip 217.165.72.201 191820 port 426 191820 unique_id port 191822 username barzegar 191822 mac 191822 bytes_out 3151 191822 bytes_in 4882 191822 station_ip 5.120.33.150 191822 port 426 191822 unique_id port 191822 remote_ip 10.8.0.70 191823 username yaghobi 191823 mac 191823 bytes_out 821470 191823 bytes_in 5913076 191823 station_ip 83.123.62.148 191823 port 446 191823 unique_id port 191823 remote_ip 10.8.0.138 191825 username sobhan 191825 unique_id port 191825 terminate_cause Lost-Carrier 191825 bytes_out 2780789 191825 bytes_in 31747457 191825 station_ip 5.120.184.38 191825 port 15729226 191825 nas_port_type Virtual 191825 remote_ip 5.5.5.59 191827 username aminvpn 191827 kill_reason Another user logged on this global unique id 191827 mac 191827 bytes_out 0 191827 bytes_in 0 191827 station_ip 5.119.76.132 191827 port 433 191827 unique_id port 191830 username barzegar 191830 mac 191830 bytes_out 0 191830 bytes_in 0 191830 station_ip 5.120.33.150 191830 port 452 191830 unique_id port 191830 remote_ip 10.8.0.70 191837 username meghdad1616 191837 mac 191837 bytes_out 0 191837 bytes_in 0 191837 station_ip 5.120.133.245 191837 port 429 191837 unique_id port 191837 remote_ip 10.8.0.230 191839 username fezealinaghi 191839 kill_reason Another user logged on this global unique id 191839 mac 191839 bytes_out 0 191839 bytes_in 0 191839 station_ip 83.123.100.109 191839 port 450 191839 unique_id port 191839 remote_ip 10.8.0.202 191841 username aminvpn 191841 kill_reason Another user logged on this global unique id 191841 mac 191841 bytes_out 0 191841 bytes_in 0 191841 station_ip 5.119.76.132 191841 port 433 191841 unique_id port 191845 username aminvpn 191845 kill_reason Another user logged on this global unique id 191845 mac 191845 bytes_out 0 191845 bytes_in 0 191845 station_ip 5.119.76.132 191845 port 433 191845 unique_id port 191846 username khalili2 191846 kill_reason Another user logged on this global unique id 191846 mac 191846 bytes_out 0 191846 bytes_in 0 191846 station_ip 5.119.100.113 191846 port 423 191846 unique_id port 191846 remote_ip 10.8.0.190 191847 username zahra1101 191847 mac 191847 bytes_out 264266 191847 bytes_in 2110672 191847 station_ip 5.120.25.58 191847 port 438 191847 unique_id port 191847 remote_ip 10.8.0.30 191848 username hosseine 191848 mac 191848 bytes_out 19319940 191848 bytes_in 32595601 191848 station_ip 83.123.109.117 191848 port 430 191848 unique_id port 191848 remote_ip 10.8.0.54 191851 username khalili2 191851 kill_reason Another user logged on this global unique id 191834 mac 191834 bytes_out 615466 191834 bytes_in 2967457 191834 station_ip 83.123.62.148 191834 port 426 191834 unique_id port 191834 remote_ip 10.8.0.138 191835 username alipour1506 191835 mac 191835 bytes_out 0 191835 bytes_in 0 191835 station_ip 83.123.67.149 191835 port 429 191835 unique_id port 191840 username godarzi 191840 mac 191840 bytes_out 1299665 191840 bytes_in 10554532 191840 station_ip 5.120.177.174 191840 port 438 191840 unique_id port 191840 remote_ip 10.8.0.38 191842 username soleymani5056 191842 mac 191842 bytes_out 69927 191842 bytes_in 136259 191842 station_ip 5.119.184.49 191842 port 446 191842 unique_id port 191842 remote_ip 10.8.0.226 191843 username naeimeh 191843 mac 191843 bytes_out 395870 191843 bytes_in 3354822 191843 station_ip 83.123.41.222 191843 port 429 191843 unique_id port 191843 remote_ip 10.8.0.78 191850 username fezealinaghi 191850 kill_reason Another user logged on this global unique id 191850 mac 191850 bytes_out 0 191850 bytes_in 0 191850 station_ip 83.123.100.109 191850 port 450 191850 unique_id port 191852 username sobhan 191852 kill_reason Maximum check online fails reached 191852 unique_id port 191852 bytes_out 1615467 191852 bytes_in 29816039 191852 station_ip 2.183.252.237 191852 port 15729237 191852 nas_port_type Virtual 191852 remote_ip 5.5.5.49 191855 username aminvpn 191855 kill_reason Another user logged on this global unique id 191855 mac 191855 bytes_out 0 191855 bytes_in 0 191855 station_ip 5.119.76.132 191855 port 433 191855 unique_id port 191859 username mohammadjavad 191859 mac 191859 bytes_out 2346720 191859 bytes_in 28274141 191859 station_ip 83.123.3.121 191859 port 446 191859 unique_id port 191859 remote_ip 10.8.0.110 191862 username zahra1101 191862 mac 191862 bytes_out 625448 191862 bytes_in 5777279 191862 station_ip 5.120.25.58 191862 port 430 191862 unique_id port 191862 remote_ip 10.8.0.30 191863 username godarzi 191863 mac 191863 bytes_out 25799 191863 bytes_in 46741 191863 station_ip 5.120.177.174 191863 port 443 191863 unique_id port 191863 remote_ip 10.8.0.38 191866 username meghdad1616 191866 mac 191866 bytes_out 0 191866 bytes_in 0 191866 station_ip 5.120.133.245 191866 port 447 191866 unique_id port 191866 remote_ip 10.8.0.230 191870 username aminvpn 191870 kill_reason Another user logged on this global unique id 191870 mac 191870 bytes_out 0 191870 bytes_in 0 191870 station_ip 5.119.76.132 191870 port 433 191870 unique_id port 191871 username mammad 191871 unique_id port 191871 terminate_cause User-Request 191871 bytes_out 4860941 191871 bytes_in 73875390 191871 station_ip 5.233.63.33 191871 port 15729236 191871 nas_port_type Virtual 191871 remote_ip 5.5.5.58 191874 username aminvpn 191874 kill_reason Another user logged on this global unique id 191874 mac 191874 bytes_out 0 191874 bytes_in 0 191874 station_ip 5.119.76.132 191874 port 433 191874 unique_id port 191875 username soleymani5056 191875 mac 191875 bytes_out 81652 191875 bytes_in 81028 191875 station_ip 5.119.52.85 191875 port 446 191875 unique_id port 191875 remote_ip 10.8.0.226 191877 username sabaghnezhad 191877 mac 191877 bytes_out 42965 191877 bytes_in 50542 191877 station_ip 83.123.89.19 191877 port 453 191877 unique_id port 191877 remote_ip 10.8.0.66 191880 username iranmanesh4443 191880 mac 191880 bytes_out 484102 191880 bytes_in 1163784 191880 station_ip 5.119.180.18 191880 port 429 191880 unique_id port 191880 remote_ip 10.8.0.122 191881 username zahra1101 191881 mac 191881 bytes_out 0 191881 bytes_in 0 191881 station_ip 5.120.25.58 191838 station_ip 5.120.25.58 191838 port 449 191838 unique_id port 191838 remote_ip 10.8.0.30 191844 username naeimeh 191844 mac 191844 bytes_out 617486 191844 bytes_in 4851169 191844 station_ip 83.123.22.84 191844 port 435 191844 unique_id port 191844 remote_ip 10.8.0.78 191849 username saeed9658 191849 mac 191849 bytes_out 5621 191849 bytes_in 44019 191849 station_ip 5.119.206.111 191849 port 438 191849 unique_id port 191849 remote_ip 10.8.0.162 191854 username dortaj3792 191854 mac 191854 bytes_out 226756 191854 bytes_in 903952 191854 station_ip 5.120.131.204 191854 port 449 191854 unique_id port 191854 remote_ip 10.8.0.102 191861 username aminvpn 191861 kill_reason Another user logged on this global unique id 191861 mac 191861 bytes_out 0 191861 bytes_in 0 191861 station_ip 5.119.76.132 191861 port 433 191861 unique_id port 191864 username rashidi4690 191864 mac 191864 bytes_out 1495553 191864 bytes_in 10830456 191864 station_ip 5.119.144.156 191864 port 435 191864 unique_id port 191864 remote_ip 10.8.0.242 191865 username zahra1101 191865 kill_reason Maximum check online fails reached 191865 mac 191865 bytes_out 0 191865 bytes_in 0 191865 station_ip 5.120.25.58 191865 port 430 191865 unique_id port 191868 username aminvpn 191868 kill_reason Another user logged on this global unique id 191868 mac 191868 bytes_out 0 191868 bytes_in 0 191868 station_ip 5.119.76.132 191868 port 433 191868 unique_id port 191869 username zahra1101 191869 mac 191869 bytes_out 44916 191869 bytes_in 78333 191869 station_ip 5.120.25.58 191869 port 447 191869 unique_id port 191869 remote_ip 10.8.0.30 191873 username hajghani 191873 kill_reason Maximum check online fails reached 191873 mac 191873 bytes_out 0 191873 bytes_in 0 191873 station_ip 89.34.37.240 191873 port 447 191873 unique_id port 191876 username kalantary6037 191876 mac 191876 bytes_out 2437165 191876 bytes_in 16339886 191876 station_ip 83.123.19.85 191876 port 423 191876 unique_id port 191876 remote_ip 10.8.0.50 191882 username meghdad1616 191882 mac 191882 bytes_out 0 191882 bytes_in 0 191882 station_ip 5.120.133.245 191882 port 429 191882 unique_id port 191882 remote_ip 10.8.0.230 191883 username ghaderpour6649 191883 mac 191883 bytes_out 0 191883 bytes_in 0 191883 station_ip 83.123.57.239 191883 port 429 191883 unique_id port 191883 remote_ip 10.8.0.130 191886 username aminvpn 191886 mac 191886 bytes_out 0 191886 bytes_in 0 191886 station_ip 5.119.76.132 191886 port 433 191886 unique_id port 191893 username hajghani 191893 mac 191893 bytes_out 3451662 191893 bytes_in 44337986 191893 station_ip 37.156.154.7 191893 port 449 191893 unique_id port 191893 remote_ip 10.8.0.106 191897 username zahra1101 191897 mac 191897 bytes_out 627999 191897 bytes_in 1175143 191897 station_ip 5.120.25.58 191897 port 433 191897 unique_id port 191897 remote_ip 10.8.0.30 191898 username farhad3 191898 mac 191898 bytes_out 4779814 191898 bytes_in 39512643 191898 station_ip 5.120.51.126 191898 port 446 191898 unique_id port 191898 remote_ip 10.8.0.222 191901 username aminvpn 191901 kill_reason Another user logged on this global unique id 191901 mac 191901 bytes_out 0 191901 bytes_in 0 191901 station_ip 5.119.76.132 191901 port 429 191901 unique_id port 191904 username alikomsari 191904 mac 191904 bytes_out 0 191904 bytes_in 0 191904 station_ip 5.120.95.120 191904 port 442 191904 unique_id port 191906 username ghaderpour6649 191906 kill_reason Another user logged on this global unique id 191906 mac 191906 bytes_out 0 191851 mac 191851 bytes_out 0 191851 bytes_in 0 191851 station_ip 5.119.100.113 191851 port 423 191851 unique_id port 191853 username zahra1101 191853 mac 191853 bytes_out 12213 191853 bytes_in 32827 191853 station_ip 5.120.25.58 191853 port 430 191853 unique_id port 191853 remote_ip 10.8.0.30 191856 username khalili2 191856 mac 191856 bytes_out 0 191856 bytes_in 0 191856 station_ip 5.119.100.113 191856 port 423 191856 unique_id port 191857 username meghdad1616 191857 mac 191857 bytes_out 0 191857 bytes_in 0 191857 station_ip 5.120.133.245 191857 port 423 191857 unique_id port 191857 remote_ip 10.8.0.230 191858 username yaghobi 191858 mac 191858 bytes_out 385789 191858 bytes_in 560638 191858 station_ip 83.123.1.115 191858 port 447 191858 unique_id port 191858 remote_ip 10.8.0.138 191860 username nilufarrajaei 191860 mac 191860 bytes_out 969254 191860 bytes_in 8036047 191860 station_ip 83.123.96.93 191860 port 443 191860 unique_id port 191860 remote_ip 10.8.0.194 191867 username zahra1101 191867 mac 191867 bytes_out 0 191867 bytes_in 0 191867 station_ip 5.120.25.58 191867 port 447 191867 unique_id port 191867 remote_ip 10.8.0.30 191872 username rashidi4690 191872 kill_reason Another user logged on this global unique id 191872 mac 191872 bytes_out 0 191872 bytes_in 0 191872 station_ip 83.123.18.127 191872 port 443 191872 unique_id port 191872 remote_ip 10.8.0.242 191878 username zahra1101 191878 mac 191878 bytes_out 46968 191878 bytes_in 119581 191878 station_ip 5.120.25.58 191878 port 454 191878 unique_id port 191878 remote_ip 10.8.0.30 191879 username dortaj3792 191879 mac 191879 bytes_out 2469 191879 bytes_in 4207 191879 station_ip 5.120.131.204 191879 port 423 191879 unique_id port 191879 remote_ip 10.8.0.102 191884 username meghdad1616 191884 mac 191884 bytes_out 0 191884 bytes_in 0 191884 station_ip 5.120.133.245 191884 port 429 191884 unique_id port 191884 remote_ip 10.8.0.230 191891 username motamedi9772 191891 mac 191891 bytes_out 1314370 191891 bytes_in 9082136 191891 station_ip 83.123.85.91 191891 port 454 191891 unique_id port 191891 remote_ip 10.8.0.154 191894 username malekpoir 191894 mac 191894 bytes_out 2150169 191894 bytes_in 16099222 191894 station_ip 5.119.87.128 191894 port 439 191894 unique_id port 191894 remote_ip 10.8.0.18 191895 username aminvpn 191895 kill_reason Another user logged on this global unique id 191895 mac 191895 bytes_out 0 191895 bytes_in 0 191895 station_ip 5.119.76.132 191895 port 429 191895 unique_id port 191895 remote_ip 10.8.0.58 191896 username aminvpn 191896 kill_reason Another user logged on this global unique id 191896 mac 191896 bytes_out 0 191896 bytes_in 0 191896 station_ip 5.119.76.132 191896 port 429 191896 unique_id port 191899 username meghdad1616 191899 mac 191899 bytes_out 0 191899 bytes_in 0 191899 station_ip 5.120.133.245 191899 port 439 191899 unique_id port 191899 remote_ip 10.8.0.230 191902 username motamedi9772 191902 mac 191902 bytes_out 185459 191902 bytes_in 1731720 191902 station_ip 83.123.43.35 191902 port 433 191902 unique_id port 191902 remote_ip 10.8.0.154 191903 username khademi 191903 mac 191903 bytes_out 0 191903 bytes_in 0 191903 station_ip 83.123.127.82 191903 port 424 191903 unique_id port 191905 username kharazmi2920 191905 mac 191905 bytes_out 3005160 191905 bytes_in 29725668 191905 station_ip 83.123.12.97 191905 port 453 191905 unique_id port 191905 remote_ip 10.8.0.22 191910 username zahra1101 191910 mac 191881 port 423 191881 unique_id port 191881 remote_ip 10.8.0.30 191885 username aminvpn 191885 kill_reason Another user logged on this global unique id 191885 mac 191885 bytes_out 0 191885 bytes_in 0 191885 station_ip 5.119.76.132 191885 port 433 191885 unique_id port 191887 username zahra1101 191887 mac 191887 bytes_out 2457 191887 bytes_in 4621 191887 station_ip 5.120.25.58 191887 port 455 191887 unique_id port 191887 remote_ip 10.8.0.30 191888 username zahra1101 191888 mac 191888 bytes_out 0 191888 bytes_in 0 191888 station_ip 5.120.25.58 191888 port 429 191888 unique_id port 191888 remote_ip 10.8.0.30 191889 username kalantary6037 191889 mac 191889 bytes_out 864373 191889 bytes_in 7884101 191889 station_ip 83.123.19.85 191889 port 453 191889 unique_id port 191889 remote_ip 10.8.0.50 191890 username aminvpn 191890 unique_id port 191890 terminate_cause Lost-Carrier 191890 bytes_out 2809929 191890 bytes_in 45952648 191890 station_ip 5.119.205.93 191890 port 15729235 191890 nas_port_type Virtual 191890 remote_ip 5.5.5.63 191892 username soleymani5056 191892 mac 191892 bytes_out 515004 191892 bytes_in 3340957 191892 station_ip 5.119.52.85 191892 port 423 191892 unique_id port 191892 remote_ip 10.8.0.226 191900 username khademi 191900 kill_reason Another user logged on this global unique id 191900 mac 191900 bytes_out 0 191900 bytes_in 0 191900 station_ip 83.123.127.82 191900 port 424 191900 unique_id port 191908 username majidsarmast 191908 mac 191908 bytes_out 0 191908 bytes_in 0 191908 station_ip 83.123.41.137 191908 port 448 191908 unique_id port 191911 username hamid.e 191911 kill_reason Maximum number of concurrent logins reached 191911 unique_id port 191911 bytes_out 0 191911 bytes_in 0 191911 station_ip 37.27.23.79 191911 port 15729238 191911 nas_port_type Virtual 191916 username houshang 191916 mac 191916 bytes_out 171483 191916 bytes_in 452603 191916 station_ip 5.119.45.150 191916 port 439 191916 unique_id port 191916 remote_ip 10.8.0.82 191918 username meghdad1616 191918 mac 191918 bytes_out 0 191918 bytes_in 0 191918 station_ip 5.120.133.245 191918 port 435 191918 unique_id port 191918 remote_ip 10.8.0.230 191925 username zahra1101 191925 mac 191925 bytes_out 31297 191925 bytes_in 44908 191925 station_ip 5.120.114.239 191925 port 424 191925 unique_id port 191925 remote_ip 10.8.0.30 191926 username barzegar 191926 mac 191926 bytes_out 0 191926 bytes_in 0 191926 station_ip 5.120.33.150 191926 port 424 191926 unique_id port 191926 remote_ip 10.8.0.70 191928 username nilufarrajaei 191928 mac 191928 bytes_out 700936 191928 bytes_in 3257977 191928 station_ip 83.123.96.93 191928 port 446 191928 unique_id port 191928 remote_ip 10.8.0.194 191929 username fezealinaghi 191929 mac 191929 bytes_out 0 191929 bytes_in 0 191929 station_ip 83.123.100.109 191929 port 450 191929 unique_id port 191931 username pourshad 191931 mac 191931 bytes_out 2907117 191931 bytes_in 33641942 191931 station_ip 5.119.165.65 191931 port 451 191931 unique_id port 191931 remote_ip 10.8.0.42 191938 username fezealinaghi 191938 mac 191938 bytes_out 885057 191938 bytes_in 8852040 191938 station_ip 83.123.100.109 191938 port 446 191938 unique_id port 191938 remote_ip 10.8.0.202 191944 username motamedi9772 191944 mac 191944 bytes_out 94498 191944 bytes_in 76475 191944 station_ip 83.123.7.71 191944 port 449 191944 unique_id port 191944 remote_ip 10.8.0.154 191948 username charkhandaz3496 191948 kill_reason Another user logged on this global unique id 191948 mac 191948 bytes_out 0 191906 bytes_in 0 191906 station_ip 83.123.8.179 191906 port 457 191906 unique_id port 191906 remote_ip 10.8.0.130 191907 username saeed9658 191907 mac 191907 bytes_out 3914710 191907 bytes_in 35524740 191907 station_ip 5.119.206.111 191907 port 454 191907 unique_id port 191907 remote_ip 10.8.0.162 191909 username barzegar 191909 mac 191909 bytes_out 0 191909 bytes_in 0 191909 station_ip 5.120.33.150 191909 port 446 191909 unique_id port 191909 remote_ip 10.8.0.70 191920 username nilufarrajaei 191920 mac 191920 bytes_out 1192009 191920 bytes_in 10084562 191920 station_ip 83.123.96.93 191920 port 446 191920 unique_id port 191920 remote_ip 10.8.0.194 191922 username nilufarrajaei 191922 mac 191922 bytes_out 363089 191922 bytes_in 2203901 191922 station_ip 83.123.96.93 191922 port 424 191922 unique_id port 191922 remote_ip 10.8.0.194 191932 username farhad3 191932 kill_reason Another user logged on this global unique id 191932 mac 191932 bytes_out 0 191932 bytes_in 0 191932 station_ip 5.120.51.126 191932 port 435 191932 unique_id port 191932 remote_ip 10.8.0.222 191934 username rashidi4690 191934 kill_reason Another user logged on this global unique id 191934 mac 191934 bytes_out 0 191934 bytes_in 0 191934 station_ip 83.123.18.127 191934 port 443 191934 unique_id port 191936 username saeeddamghani 191936 mac 191936 bytes_out 229937 191936 bytes_in 1468648 191936 station_ip 5.119.81.7 191936 port 424 191936 unique_id port 191936 remote_ip 10.8.0.174 191937 username meghdad1616 191937 mac 191937 bytes_out 0 191937 bytes_in 0 191937 station_ip 5.120.133.245 191937 port 424 191937 unique_id port 191937 remote_ip 10.8.0.230 191940 username farhad3 191940 kill_reason Another user logged on this global unique id 191940 mac 191940 bytes_out 0 191940 bytes_in 0 191940 station_ip 5.120.51.126 191940 port 435 191940 unique_id port 191942 username charkhandaz3496 191942 kill_reason Another user logged on this global unique id 191942 mac 191942 bytes_out 0 191942 bytes_in 0 191942 station_ip 5.119.91.79 191942 port 442 191942 unique_id port 191943 username rashidi4690 191943 kill_reason Another user logged on this global unique id 191943 mac 191943 bytes_out 0 191943 bytes_in 0 191943 station_ip 83.123.18.127 191943 port 443 191943 unique_id port 191945 username meysam 191945 mac 191945 bytes_out 3923544 191945 bytes_in 53016395 191945 station_ip 188.159.252.43 191945 port 439 191945 unique_id port 191945 remote_ip 10.8.0.158 191946 username zahra1101 191946 mac 191946 bytes_out 0 191946 bytes_in 0 191946 station_ip 5.120.114.239 191946 port 449 191946 unique_id port 191946 remote_ip 10.8.0.30 191953 username motamedi9772 191953 mac 191953 bytes_out 0 191953 bytes_in 0 191953 station_ip 83.123.7.71 191953 port 439 191953 unique_id port 191953 remote_ip 10.8.0.154 191954 username motamedi9772 191954 mac 191954 bytes_out 5393 191954 bytes_in 11375 191954 station_ip 83.123.7.71 191954 port 439 191954 unique_id port 191954 remote_ip 10.8.0.154 191955 username motamedi9772 191955 mac 191955 bytes_out 0 191955 bytes_in 0 191955 station_ip 83.123.7.71 191955 port 439 191955 unique_id port 191955 remote_ip 10.8.0.154 191957 username motamedi9772 191957 mac 191957 bytes_out 0 191957 bytes_in 0 191957 station_ip 83.123.7.71 191957 port 439 191957 unique_id port 191957 remote_ip 10.8.0.154 191959 username motamedi9772 191959 mac 191959 bytes_out 6144 191959 bytes_in 12498 191959 station_ip 83.123.7.71 191959 port 439 191959 unique_id port 191959 remote_ip 10.8.0.154 191910 bytes_out 963493 191910 bytes_in 4345236 191910 station_ip 5.120.114.239 191910 port 424 191910 unique_id port 191910 remote_ip 10.8.0.30 191912 username ghaderpour6649 191912 mac 191912 bytes_out 0 191912 bytes_in 0 191912 station_ip 83.123.8.179 191912 port 457 191912 unique_id port 191913 username hamid.e 191913 kill_reason Maximum number of concurrent logins reached 191913 unique_id port 191913 bytes_out 0 191913 bytes_in 0 191913 station_ip 37.27.23.79 191913 port 15729239 191913 nas_port_type Virtual 191914 username hamid.e 191914 kill_reason Maximum number of concurrent logins reached 191914 unique_id port 191914 bytes_out 0 191914 bytes_in 0 191914 station_ip 37.27.23.79 191914 port 15729240 191914 nas_port_type Virtual 191915 username nilufarrajaei 191915 mac 191915 bytes_out 5053159 191915 bytes_in 14131258 191915 station_ip 83.123.96.93 191915 port 435 191915 unique_id port 191915 remote_ip 10.8.0.194 191917 username rashidi4690 191917 kill_reason Another user logged on this global unique id 191917 mac 191917 bytes_out 0 191917 bytes_in 0 191917 station_ip 83.123.18.127 191917 port 443 191917 unique_id port 191919 username zahra1101 191919 mac 191919 bytes_out 219838 191919 bytes_in 738583 191919 station_ip 5.120.114.239 191919 port 424 191919 unique_id port 191919 remote_ip 10.8.0.30 191921 username hamid.e 191921 kill_reason Maximum number of concurrent logins reached 191921 unique_id port 191921 bytes_out 0 191921 bytes_in 0 191921 station_ip 37.27.25.63 191921 port 15729241 191921 nas_port_type Virtual 191923 username dortaj3792 191923 mac 191923 bytes_out 1086059 191923 bytes_in 2904602 191923 station_ip 5.120.131.204 191923 port 456 191923 unique_id port 191923 remote_ip 10.8.0.102 191924 username charkhandaz3496 191924 kill_reason Another user logged on this global unique id 191924 mac 191924 bytes_out 0 191924 bytes_in 0 191924 station_ip 5.119.91.79 191924 port 442 191924 unique_id port 191924 remote_ip 10.8.0.46 191927 username zahra1101 191927 mac 191927 bytes_out 0 191927 bytes_in 0 191927 station_ip 5.120.114.239 191927 port 424 191927 unique_id port 191927 remote_ip 10.8.0.30 191930 username zahra1101 191930 mac 191930 bytes_out 0 191930 bytes_in 0 191930 station_ip 5.120.114.239 191930 port 424 191930 unique_id port 191930 remote_ip 10.8.0.30 191933 username meghdad1616 191933 mac 191933 bytes_out 0 191933 bytes_in 0 191933 station_ip 5.120.133.245 191933 port 450 191933 unique_id port 191933 remote_ip 10.8.0.230 191935 username zahra1101 191935 mac 191935 bytes_out 0 191935 bytes_in 0 191935 station_ip 5.120.114.239 191935 port 449 191935 unique_id port 191935 remote_ip 10.8.0.30 191939 username meghdad1616 191939 mac 191939 bytes_out 0 191939 bytes_in 0 191939 station_ip 5.120.133.245 191939 port 450 191939 unique_id port 191939 remote_ip 10.8.0.230 191941 username kalantary6037 191941 mac 191941 bytes_out 344429 191941 bytes_in 2377965 191941 station_ip 83.123.21.113 191941 port 449 191941 unique_id port 191941 remote_ip 10.8.0.50 191947 username mosi 191947 mac 191947 bytes_out 690731 191947 bytes_in 1694389 191947 station_ip 5.72.88.221 191947 port 448 191947 unique_id port 191947 remote_ip 10.8.0.142 191950 username alipour1506 191950 kill_reason Another user logged on this global unique id 191950 mac 191950 bytes_out 0 191950 bytes_in 0 191950 station_ip 78.39.25.121 191950 port 426 191950 unique_id port 191950 remote_ip 10.8.0.246 191952 username motamedi9772 191952 mac 191952 bytes_out 0 191952 bytes_in 0 191952 station_ip 83.123.7.71 191952 port 448 191948 bytes_in 0 191948 station_ip 5.119.91.79 191948 port 442 191948 unique_id port 191949 username motamedi9772 191949 mac 191949 bytes_out 271007 191949 bytes_in 355622 191949 station_ip 83.123.7.71 191949 port 439 191949 unique_id port 191949 remote_ip 10.8.0.154 191951 username meghdad1616 191951 mac 191951 bytes_out 0 191951 bytes_in 0 191951 station_ip 5.120.133.245 191951 port 439 191951 unique_id port 191951 remote_ip 10.8.0.230 191960 username alihosseini1 191960 mac 191960 bytes_out 3076980 191960 bytes_in 32259300 191960 station_ip 5.120.13.57 191960 port 450 191960 unique_id port 191960 remote_ip 10.8.0.118 191971 username kharazmi2920 191971 mac 191971 bytes_out 0 191971 bytes_in 0 191971 station_ip 83.123.12.97 191971 port 442 191971 unique_id port 191971 remote_ip 10.8.0.22 191976 username yaghobi 191976 mac 191976 bytes_out 19263 191976 bytes_in 17083 191976 station_ip 83.123.101.217 191976 port 442 191976 unique_id port 191976 remote_ip 10.8.0.138 191989 username mostafa_es78 191989 mac 191989 bytes_out 602821 191989 bytes_in 4770348 191989 station_ip 37.129.73.55 191989 port 442 191989 unique_id port 191989 remote_ip 10.8.0.34 191994 username zahra1101 191994 mac 191994 bytes_out 2514 191994 bytes_in 4626 191994 station_ip 5.120.114.239 191994 port 442 191994 unique_id port 191994 remote_ip 10.8.0.30 191999 username motamedi9772 191999 mac 191999 bytes_out 0 191999 bytes_in 0 191999 station_ip 83.123.7.71 191999 port 439 191999 unique_id port 191999 remote_ip 10.8.0.154 192002 username motamedi9772 192002 mac 192002 bytes_out 0 192002 bytes_in 0 192002 station_ip 83.123.7.71 192002 port 424 192002 unique_id port 192002 remote_ip 10.8.0.154 192003 username motamedi9772 192003 mac 192003 bytes_out 0 192003 bytes_in 0 192003 station_ip 83.123.7.71 192003 port 424 192003 unique_id port 192003 remote_ip 10.8.0.154 192006 username motamedi9772 192006 kill_reason Another user logged on this global unique id 192006 mac 192006 bytes_out 0 192006 bytes_in 0 192006 station_ip 83.123.7.71 192006 port 424 192006 unique_id port 192014 username meghdad1616 192014 mac 192014 bytes_out 0 192014 bytes_in 0 192014 station_ip 5.120.133.245 192014 port 455 192014 unique_id port 192014 remote_ip 10.8.0.230 192019 username kharazmi2920 192019 mac 192019 bytes_out 1003737 192019 bytes_in 2981136 192019 station_ip 83.123.12.97 192019 port 453 192019 unique_id port 192019 remote_ip 10.8.0.22 192022 username mohammadjavad 192022 mac 192022 bytes_out 52263 192022 bytes_in 222095 192022 station_ip 83.123.82.196 192022 port 453 192022 unique_id port 192022 remote_ip 10.8.0.110 192023 username ghaderpour6649 192023 kill_reason Another user logged on this global unique id 192023 mac 192023 bytes_out 0 192023 bytes_in 0 192023 station_ip 83.123.93.125 192023 port 454 192023 unique_id port 192023 remote_ip 10.8.0.130 192024 username alipour1506 192024 mac 192024 bytes_out 0 192024 bytes_in 0 192024 station_ip 78.39.25.121 192024 port 426 192024 unique_id port 192026 username mohammadjavad 192026 mac 192026 bytes_out 0 192026 bytes_in 0 192026 station_ip 83.123.82.196 192026 port 459 192026 unique_id port 192026 remote_ip 10.8.0.110 192029 username zahra1101 192029 mac 192029 bytes_out 0 192029 bytes_in 0 192029 station_ip 5.120.111.80 192029 port 435 192029 unique_id port 192029 remote_ip 10.8.0.30 192030 username barzegar 192030 mac 192030 bytes_out 0 192030 bytes_in 0 191952 unique_id port 191952 remote_ip 10.8.0.154 191956 username charkhandaz3496 191956 mac 191956 bytes_out 0 191956 bytes_in 0 191956 station_ip 5.119.91.79 191956 port 442 191956 unique_id port 191958 username meghdad1616 191958 mac 191958 bytes_out 0 191958 bytes_in 0 191958 station_ip 5.120.133.245 191958 port 442 191958 unique_id port 191958 remote_ip 10.8.0.230 191961 username motamedi9772 191961 mac 191961 bytes_out 0 191961 bytes_in 0 191961 station_ip 83.123.7.71 191961 port 439 191961 unique_id port 191961 remote_ip 10.8.0.154 191964 username motamedi9772 191964 mac 191964 bytes_out 0 191964 bytes_in 0 191964 station_ip 83.123.7.71 191964 port 442 191964 unique_id port 191964 remote_ip 10.8.0.154 191965 username motamedi9772 191965 mac 191965 bytes_out 0 191965 bytes_in 0 191965 station_ip 83.123.7.71 191965 port 442 191965 unique_id port 191965 remote_ip 10.8.0.154 191966 username motamedi9772 191966 mac 191966 bytes_out 0 191966 bytes_in 0 191966 station_ip 83.123.7.71 191966 port 442 191966 unique_id port 191966 remote_ip 10.8.0.154 191967 username motamedi9772 191967 mac 191967 bytes_out 0 191967 bytes_in 0 191967 station_ip 83.123.7.71 191967 port 442 191967 unique_id port 191967 remote_ip 10.8.0.154 191969 username zahra1101 191969 mac 191969 bytes_out 0 191969 bytes_in 0 191969 station_ip 5.120.114.239 191969 port 450 191969 unique_id port 191969 remote_ip 10.8.0.30 191973 username yaghobi 191973 mac 191973 bytes_out 510444 191973 bytes_in 2183533 191973 station_ip 83.123.101.217 191973 port 439 191973 unique_id port 191973 remote_ip 10.8.0.138 191974 username motamedi9772 191974 mac 191974 bytes_out 5907 191974 bytes_in 12091 191974 station_ip 83.123.7.71 191974 port 450 191974 unique_id port 191974 remote_ip 10.8.0.154 191975 username motamedi9772 191975 mac 191975 bytes_out 0 191975 bytes_in 0 191975 station_ip 83.123.7.71 191975 port 439 191975 unique_id port 191975 remote_ip 10.8.0.154 191981 username meghdad1616 191981 mac 191981 bytes_out 0 191981 bytes_in 0 191981 station_ip 5.120.133.245 191981 port 450 191981 unique_id port 191981 remote_ip 10.8.0.230 191984 username motamedi9772 191984 mac 191984 bytes_out 0 191984 bytes_in 0 191984 station_ip 83.123.7.71 191984 port 439 191984 unique_id port 191984 remote_ip 10.8.0.154 191986 username motamedi9772 191986 mac 191986 bytes_out 0 191986 bytes_in 0 191986 station_ip 83.123.7.71 191986 port 439 191986 unique_id port 191986 remote_ip 10.8.0.154 191987 username motamedi9772 191987 mac 191987 bytes_out 0 191987 bytes_in 0 191987 station_ip 83.123.7.71 191987 port 439 191987 unique_id port 191987 remote_ip 10.8.0.154 191992 username motamedi9772 191992 mac 191992 bytes_out 0 191992 bytes_in 0 191992 station_ip 83.123.7.71 191992 port 439 191992 unique_id port 191992 remote_ip 10.8.0.154 191997 username motamedi9772 191997 mac 191997 bytes_out 0 191997 bytes_in 0 191997 station_ip 83.123.7.71 191997 port 439 191997 unique_id port 191997 remote_ip 10.8.0.154 192000 username motamedi9772 192000 mac 192000 bytes_out 0 192000 bytes_in 0 192000 station_ip 83.123.7.71 192000 port 424 192000 unique_id port 192000 remote_ip 10.8.0.154 192001 username motamedi9772 192001 mac 192001 bytes_out 0 192001 bytes_in 0 192001 station_ip 83.123.7.71 192001 port 424 192001 unique_id port 192001 remote_ip 10.8.0.154 192005 username farhad3 192005 mac 191962 username motamedi9772 191962 mac 191962 bytes_out 0 191962 bytes_in 0 191962 station_ip 83.123.7.71 191962 port 442 191962 unique_id port 191962 remote_ip 10.8.0.154 191963 username farhad3 191963 kill_reason Another user logged on this global unique id 191963 mac 191963 bytes_out 0 191963 bytes_in 0 191963 station_ip 5.120.51.126 191963 port 435 191963 unique_id port 191968 username motamedi9772 191968 mac 191968 bytes_out 0 191968 bytes_in 0 191968 station_ip 83.123.7.71 191968 port 451 191968 unique_id port 191968 remote_ip 10.8.0.154 191970 username motamedi9772 191970 mac 191970 bytes_out 0 191970 bytes_in 0 191970 station_ip 83.123.7.71 191970 port 451 191970 unique_id port 191970 remote_ip 10.8.0.154 191972 username zahra1101 191972 mac 191972 bytes_out 0 191972 bytes_in 0 191972 station_ip 5.120.114.239 191972 port 451 191972 unique_id port 191972 remote_ip 10.8.0.30 191977 username motamedi9772 191977 mac 191977 bytes_out 0 191977 bytes_in 0 191977 station_ip 83.123.7.71 191977 port 439 191977 unique_id port 191977 remote_ip 10.8.0.154 191978 username motamedi9772 191978 mac 191978 bytes_out 0 191978 bytes_in 0 191978 station_ip 83.123.7.71 191978 port 439 191978 unique_id port 191978 remote_ip 10.8.0.154 191979 username rashidi4690 191979 kill_reason Another user logged on this global unique id 191979 mac 191979 bytes_out 0 191979 bytes_in 0 191979 station_ip 83.123.18.127 191979 port 443 191979 unique_id port 191980 username motamedi9772 191980 mac 191980 bytes_out 0 191980 bytes_in 0 191980 station_ip 83.123.7.71 191980 port 439 191980 unique_id port 191980 remote_ip 10.8.0.154 191982 username motamedi9772 191982 mac 191982 bytes_out 0 191982 bytes_in 0 191982 station_ip 83.123.7.71 191982 port 439 191982 unique_id port 191982 remote_ip 10.8.0.154 191983 username motamedi9772 191983 mac 191983 bytes_out 0 191983 bytes_in 0 191983 station_ip 83.123.7.71 191983 port 439 191983 unique_id port 191983 remote_ip 10.8.0.154 191985 username motamedi9772 191985 mac 191985 bytes_out 0 191985 bytes_in 0 191985 station_ip 83.123.7.71 191985 port 439 191985 unique_id port 191985 remote_ip 10.8.0.154 191988 username motamedi9772 191988 mac 191988 bytes_out 0 191988 bytes_in 0 191988 station_ip 83.123.7.71 191988 port 439 191988 unique_id port 191988 remote_ip 10.8.0.154 191990 username hamid.e 191990 unique_id port 191990 terminate_cause User-Request 191990 bytes_out 23863760 191990 bytes_in 867313993 191990 station_ip 151.238.234.71 191990 port 15729233 191990 nas_port_type Virtual 191990 remote_ip 5.5.5.50 191991 username motamedi9772 191991 mac 191991 bytes_out 0 191991 bytes_in 0 191991 station_ip 83.123.7.71 191991 port 439 191991 unique_id port 191991 remote_ip 10.8.0.154 191993 username motamedi9772 191993 mac 191993 bytes_out 0 191993 bytes_in 0 191993 station_ip 83.123.7.71 191993 port 439 191993 unique_id port 191993 remote_ip 10.8.0.154 191995 username motamedi9772 191995 mac 191995 bytes_out 0 191995 bytes_in 0 191995 station_ip 83.123.7.71 191995 port 439 191995 unique_id port 191995 remote_ip 10.8.0.154 191996 username motamedi9772 191996 mac 191996 bytes_out 0 191996 bytes_in 0 191996 station_ip 83.123.7.71 191996 port 439 191996 unique_id port 191996 remote_ip 10.8.0.154 191998 username sabaghnezhad 191998 mac 191998 bytes_out 2827444 191998 bytes_in 26080591 191998 station_ip 83.123.89.19 191998 port 424 191998 unique_id port 191998 remote_ip 10.8.0.66 192004 username motamedi9772 192004 kill_reason Another user logged on this global unique id 192004 mac 192004 bytes_out 0 192004 bytes_in 0 192004 station_ip 83.123.7.71 192004 port 424 192004 unique_id port 192007 username meghdad1616 192007 mac 192007 bytes_out 0 192007 bytes_in 0 192007 station_ip 5.120.133.245 192007 port 424 192007 unique_id port 192007 remote_ip 10.8.0.230 192008 username meghdad1616 192008 mac 192008 bytes_out 0 192008 bytes_in 0 192008 station_ip 5.120.133.245 192008 port 424 192008 unique_id port 192008 remote_ip 10.8.0.230 192009 username yaghobi 192009 mac 192009 bytes_out 415269 192009 bytes_in 714782 192009 station_ip 83.123.101.217 192009 port 451 192009 unique_id port 192009 remote_ip 10.8.0.138 192013 username barzegar 192013 kill_reason Maximum check online fails reached 192013 mac 192013 bytes_out 0 192013 bytes_in 0 192013 station_ip 5.120.33.150 192013 port 451 192013 unique_id port 192018 username khaleghi2406 192018 mac 192018 bytes_out 13496 192018 bytes_in 14563 192018 station_ip 83.123.39.7 192018 port 450 192018 unique_id port 192018 remote_ip 10.8.0.218 192020 username barzegar 192020 mac 192020 bytes_out 0 192020 bytes_in 0 192020 station_ip 5.120.33.150 192020 port 453 192020 unique_id port 192020 remote_ip 10.8.0.70 192021 username rashidi4690 192021 kill_reason Another user logged on this global unique id 192021 mac 192021 bytes_out 0 192021 bytes_in 0 192021 station_ip 83.123.18.127 192021 port 443 192021 unique_id port 192025 username mohammadjavad 192025 mac 192025 bytes_out 4741 192025 bytes_in 6197 192025 station_ip 83.123.82.196 192025 port 456 192025 unique_id port 192025 remote_ip 10.8.0.110 192027 username barzegar8595 192027 mac 192027 bytes_out 619860 192027 bytes_in 10288160 192027 station_ip 46.225.210.44 192027 port 435 192027 unique_id port 192027 remote_ip 10.8.0.114 192032 username farhad3 192032 mac 192032 bytes_out 1883271 192032 bytes_in 12612799 192032 station_ip 5.120.51.126 192032 port 455 192032 unique_id port 192032 remote_ip 10.8.0.222 192033 username esmaeilkazemi 192033 mac 192033 bytes_out 252146 192033 bytes_in 2533461 192033 station_ip 83.123.33.107 192033 port 426 192033 unique_id port 192033 remote_ip 10.8.0.26 192034 username meghdad1616 192034 mac 192034 bytes_out 8552132 192034 bytes_in 479309 192034 station_ip 5.120.133.245 192034 port 453 192034 unique_id port 192034 remote_ip 10.8.0.230 192035 username kharazmi2920 192035 mac 192035 bytes_out 1770022 192035 bytes_in 19175402 192035 station_ip 83.123.12.97 192035 port 450 192035 unique_id port 192035 remote_ip 10.8.0.22 192037 username khalili2 192037 kill_reason Another user logged on this global unique id 192037 mac 192037 bytes_out 0 192037 bytes_in 0 192037 station_ip 5.119.100.113 192037 port 438 192037 unique_id port 192037 remote_ip 10.8.0.190 192038 username ghaderpour6649 192038 mac 192038 bytes_out 0 192038 bytes_in 0 192038 station_ip 83.123.93.125 192038 port 454 192038 unique_id port 192042 username alipour1506 192042 mac 192042 bytes_out 83999 192042 bytes_in 572439 192042 station_ip 83.123.92.34 192042 port 458 192042 unique_id port 192042 remote_ip 10.8.0.246 192043 username mohammadjavad 192043 mac 192043 bytes_out 1471467 192043 bytes_in 18640945 192043 station_ip 83.123.82.196 192043 port 426 192043 unique_id port 192043 remote_ip 10.8.0.110 192044 username meghdad1616 192044 mac 192044 bytes_out 0 192044 bytes_in 0 192044 station_ip 5.120.133.245 192044 port 426 192005 bytes_out 0 192005 bytes_in 0 192005 station_ip 5.120.51.126 192005 port 435 192005 unique_id port 192010 username barzegar 192010 mac 192010 bytes_out 0 192010 bytes_in 0 192010 station_ip 5.120.33.150 192010 port 424 192010 unique_id port 192010 remote_ip 10.8.0.70 192011 username rashidi4690 192011 kill_reason Another user logged on this global unique id 192011 mac 192011 bytes_out 0 192011 bytes_in 0 192011 station_ip 83.123.18.127 192011 port 443 192011 unique_id port 192012 username khademi 192012 kill_reason Another user logged on this global unique id 192012 mac 192012 bytes_out 0 192012 bytes_in 0 192012 station_ip 83.123.127.82 192012 port 433 192012 unique_id port 192012 remote_ip 10.8.0.14 192015 username sabaghnezhad 192015 mac 192015 bytes_out 71037 192015 bytes_in 79598 192015 station_ip 83.123.89.19 192015 port 439 192015 unique_id port 192015 remote_ip 10.8.0.66 192016 username khaleghi2406 192016 mac 192016 bytes_out 1995823 192016 bytes_in 23498489 192016 station_ip 83.123.39.7 192016 port 450 192016 unique_id port 192016 remote_ip 10.8.0.218 192017 username aminvpn 192017 mac 192017 bytes_out 0 192017 bytes_in 0 192017 station_ip 5.119.76.132 192017 port 429 192017 unique_id port 192028 username pourshad 192028 mac 192028 bytes_out 463848 192028 bytes_in 5394055 192028 station_ip 5.119.165.65 192028 port 448 192028 unique_id port 192028 remote_ip 10.8.0.42 192031 username mohammadjavad 192031 mac 192031 bytes_out 0 192031 bytes_in 0 192031 station_ip 83.123.82.196 192031 port 435 192031 unique_id port 192031 remote_ip 10.8.0.110 192036 username kharazmi2920 192036 mac 192036 bytes_out 0 192036 bytes_in 0 192036 station_ip 83.123.12.97 192036 port 453 192036 unique_id port 192036 remote_ip 10.8.0.22 192039 username sobhan 192039 unique_id port 192039 terminate_cause Lost-Carrier 192039 bytes_out 3671542 192039 bytes_in 75292030 192039 station_ip 5.120.184.38 192039 port 15729245 192039 nas_port_type Virtual 192039 remote_ip 5.5.5.59 192040 username zahra1101 192040 mac 192040 bytes_out 17536 192040 bytes_in 25377 192040 station_ip 5.120.111.80 192040 port 455 192040 unique_id port 192040 remote_ip 10.8.0.30 192041 username khaleghi2406 192041 mac 192041 bytes_out 45409 192041 bytes_in 119441 192041 station_ip 83.123.39.7 192041 port 429 192041 unique_id port 192041 remote_ip 10.8.0.218 192047 username alihosseini1 192074 remote_ip 10.8.0.166 192047 kill_reason Maximum check online fails reached 192047 mac 192047 bytes_out 0 192047 bytes_in 0 192047 station_ip 5.119.136.122 192047 port 426 192047 unique_id port 192051 username yarmohamadi7916 192051 kill_reason Another user logged on this global unique id 192051 mac 192051 bytes_out 0 192051 bytes_in 0 192051 station_ip 5.119.25.102 192051 port 442 192051 unique_id port 192051 remote_ip 10.8.0.126 192053 username nilufarrajaei 192053 mac 192053 bytes_out 15961032 192053 bytes_in 27134672 192053 station_ip 83.123.96.93 192053 port 446 192053 unique_id port 192053 remote_ip 10.8.0.194 192054 username kalantary6037 192054 mac 192054 bytes_out 976234 192054 bytes_in 4546561 192054 station_ip 83.123.28.77 192054 port 457 192054 unique_id port 192054 remote_ip 10.8.0.50 192057 username aminvpn 192057 unique_id port 192057 terminate_cause Lost-Carrier 192057 bytes_out 3672542 192057 bytes_in 43202129 192057 station_ip 5.119.205.93 192057 port 15729243 192057 nas_port_type Virtual 192057 remote_ip 5.5.5.63 192058 username farhad3 192058 mac 192058 bytes_out 3212059 192058 bytes_in 30411977 192058 station_ip 5.120.158.144 192058 port 455 192030 station_ip 5.120.33.150 192030 port 435 192030 unique_id port 192030 remote_ip 10.8.0.70 192046 username iranmanesh4443 192046 mac 192046 bytes_out 1039241 192046 bytes_in 10610044 192046 station_ip 5.119.180.18 192046 port 423 192046 unique_id port 192046 remote_ip 10.8.0.122 192048 username khaleghi2406 192048 mac 192048 bytes_out 32523 192048 bytes_in 132911 192048 station_ip 83.123.39.7 192048 port 453 192048 unique_id port 192048 remote_ip 10.8.0.218 192050 username houshang 192050 mac 192050 bytes_out 1672722 192050 bytes_in 18764695 192050 station_ip 5.119.23.201 192050 port 448 192050 unique_id port 192050 remote_ip 10.8.0.82 192056 username mammad 192056 unique_id port 192056 terminate_cause User-Request 192056 bytes_out 9448317 192056 bytes_in 132714449 192056 station_ip 5.233.63.33 192056 port 15729242 192056 nas_port_type Virtual 192056 remote_ip 5.5.5.58 192059 username barzegar 192059 mac 192059 bytes_out 849173 192059 bytes_in 6846645 192059 station_ip 5.119.190.191 192059 port 454 192059 unique_id port 192059 remote_ip 10.8.0.70 192061 username zahra1101 192061 mac 192061 bytes_out 0 192061 bytes_in 0 192061 station_ip 5.119.215.77 192061 port 450 192061 unique_id port 192061 remote_ip 10.8.0.30 192063 username mohammadjavad 192063 mac 192063 bytes_out 316191 192063 bytes_in 4386344 192063 station_ip 83.123.82.196 192063 port 448 192063 unique_id port 192063 remote_ip 10.8.0.110 192064 username meghdad1616 192064 mac 192064 bytes_out 0 192064 bytes_in 0 192064 station_ip 5.120.133.245 192064 port 450 192064 unique_id port 192064 remote_ip 10.8.0.230 192065 username sekonji0496 192065 mac 192065 bytes_out 11679 192065 bytes_in 22296 192065 station_ip 83.123.98.90 192065 port 450 192065 unique_id port 192065 remote_ip 10.8.0.62 192067 username hosseine 192067 kill_reason Another user logged on this global unique id 192067 mac 192067 bytes_out 0 192067 bytes_in 0 192067 station_ip 83.123.109.117 192067 port 452 192067 unique_id port 192067 remote_ip 10.8.0.54 192069 username mammad 192069 unique_id port 192069 terminate_cause Lost-Carrier 192069 bytes_out 2179571 192069 bytes_in 19560015 192069 station_ip 5.233.63.33 192069 port 15729246 192069 nas_port_type Virtual 192069 remote_ip 5.5.5.58 192074 username akbari0070 192074 mac 192074 bytes_out 107166 192074 bytes_in 275928 192074 station_ip 83.123.74.80 192074 port 453 192074 unique_id port 192078 username barzegar 192078 mac 192078 bytes_out 0 192078 bytes_in 0 192078 station_ip 5.119.190.191 192078 port 454 192078 unique_id port 192078 remote_ip 10.8.0.70 192083 username khaleghi2406 192083 mac 192083 bytes_out 12324 192083 bytes_in 13804 192083 station_ip 83.123.14.183 192083 port 446 192083 unique_id port 192083 remote_ip 10.8.0.218 192090 username meysam 192090 kill_reason Another user logged on this global unique id 192090 mac 192090 bytes_out 0 192090 bytes_in 0 192090 station_ip 188.159.252.43 192090 port 443 192090 unique_id port 192092 username meysam 192092 mac 192092 bytes_out 0 192092 bytes_in 0 192092 station_ip 188.159.252.43 192092 port 443 192092 unique_id port 192096 username rahim 192096 mac 192096 bytes_out 0 192096 bytes_in 0 192096 station_ip 5.119.97.228 192096 port 456 192096 unique_id port 192096 remote_ip 10.8.0.134 192106 username mosavi0713 192106 kill_reason Another user logged on this global unique id 192106 mac 192106 bytes_out 0 192106 bytes_in 0 192106 station_ip 83.123.66.180 192106 port 448 192106 unique_id port 192044 unique_id port 192044 remote_ip 10.8.0.230 192045 username alipour1506 192045 mac 192045 bytes_out 28086 192045 bytes_in 39884 192045 station_ip 83.123.92.34 192045 port 454 192045 unique_id port 192045 remote_ip 10.8.0.246 192049 username alihosseini1 192049 kill_reason Maximum check online fails reached 192049 mac 192049 bytes_out 0 192049 bytes_in 0 192049 station_ip 5.119.136.122 192049 port 423 192049 unique_id port 192052 username khalili2 192052 mac 192052 bytes_out 0 192052 bytes_in 0 192052 station_ip 5.119.100.113 192052 port 438 192052 unique_id port 192055 username rashidi4690 192055 mac 192055 bytes_out 0 192055 bytes_in 0 192055 station_ip 83.123.18.127 192055 port 443 192055 unique_id port 192066 username sabaghnezhad 192066 mac 192066 bytes_out 4104506 192066 bytes_in 46871213 192066 station_ip 83.123.89.19 192066 port 439 192066 unique_id port 192066 remote_ip 10.8.0.66 192068 username zahra1101 192068 mac 192068 bytes_out 5689 192068 bytes_in 8348 192068 station_ip 5.119.215.77 192068 port 448 192068 unique_id port 192068 remote_ip 10.8.0.30 192073 username mohammadjavad 192073 mac 192073 bytes_out 13795 192073 bytes_in 15557 192073 station_ip 83.123.82.196 192073 port 450 192073 unique_id port 192073 remote_ip 10.8.0.110 192076 username zahra1101 192076 kill_reason Maximum check online fails reached 192076 mac 192076 bytes_out 0 192076 bytes_in 0 192076 station_ip 5.119.46.59 192076 port 450 192076 unique_id port 192077 username vanila 192077 kill_reason Relative expiration date has reached 192077 mac 192077 bytes_out 0 192077 bytes_in 0 192077 station_ip 83.123.12.50 192077 port 453 192077 unique_id port 192079 username khaleghi2406 192079 mac 192079 bytes_out 204801 192079 bytes_in 36532 192079 station_ip 83.123.14.183 192079 port 446 192079 unique_id port 192079 remote_ip 10.8.0.218 192082 username kalantary6037 192082 mac 192082 bytes_out 189510 192082 bytes_in 570894 192082 station_ip 83.123.77.237 192082 port 453 192082 unique_id port 192082 remote_ip 10.8.0.50 192084 username khaleghi2406 192084 mac 192084 bytes_out 5678 192084 bytes_in 8509 192084 station_ip 83.123.14.183 192084 port 453 192084 unique_id port 192084 remote_ip 10.8.0.218 192085 username meghdad1616 192085 mac 192085 bytes_out 0 192085 bytes_in 0 192085 station_ip 5.120.133.245 192085 port 453 192085 unique_id port 192085 remote_ip 10.8.0.230 192086 username meghdad1616 192086 mac 192086 bytes_out 0 192086 bytes_in 0 192086 station_ip 5.120.133.245 192086 port 453 192086 unique_id port 192086 remote_ip 10.8.0.230 192087 username alikomsari 192087 kill_reason Another user logged on this global unique id 192087 mac 192087 bytes_out 0 192087 bytes_in 0 192087 station_ip 5.120.40.90 192087 port 446 192087 unique_id port 192087 remote_ip 10.8.0.214 192091 username malekpoir 192091 mac 192091 bytes_out 4772585 192091 bytes_in 41795964 192091 station_ip 5.119.87.128 192091 port 435 192091 unique_id port 192091 remote_ip 10.8.0.18 192094 username rahim 192094 mac 192094 bytes_out 395573 192094 bytes_in 2413519 192094 station_ip 5.119.97.228 192094 port 457 192094 unique_id port 192094 remote_ip 10.8.0.134 192095 username kalantary6037 192095 mac 192095 bytes_out 66833 192095 bytes_in 308739 192095 station_ip 83.123.107.181 192095 port 443 192095 unique_id port 192095 remote_ip 10.8.0.50 192098 username barzegar 192098 mac 192098 bytes_out 0 192098 bytes_in 0 192098 station_ip 5.119.190.191 192098 port 443 192058 unique_id port 192058 remote_ip 10.8.0.222 192060 username kharazmi2920 192060 mac 192060 bytes_out 749047 192060 bytes_in 3520064 192060 station_ip 83.123.12.97 192060 port 450 192060 unique_id port 192060 remote_ip 10.8.0.22 192062 username meghdad1616 192062 mac 192062 bytes_out 0 192062 bytes_in 0 192062 station_ip 5.120.133.245 192062 port 450 192062 unique_id port 192062 remote_ip 10.8.0.230 192070 username alihosseini1 192070 kill_reason Another user logged on this global unique id 192070 mac 192070 bytes_out 0 192070 bytes_in 0 192070 station_ip 5.119.136.122 192070 port 456 192070 unique_id port 192070 remote_ip 10.8.0.118 192071 username meysam 192071 kill_reason Another user logged on this global unique id 192071 mac 192071 bytes_out 0 192071 bytes_in 0 192071 station_ip 188.159.252.43 192071 port 443 192071 unique_id port 192071 remote_ip 10.8.0.158 192072 username alikomsari 192072 mac 192072 bytes_out 3320842 192072 bytes_in 30747803 192072 station_ip 5.120.40.90 192072 port 446 192072 unique_id port 192072 remote_ip 10.8.0.214 192075 username zahra1101 192075 mac 192075 bytes_out 17707 192075 bytes_in 34792 192075 station_ip 5.119.46.59 192075 port 453 192075 unique_id port 192075 remote_ip 10.8.0.30 192080 username alihosseini1 192080 mac 192080 bytes_out 0 192080 bytes_in 0 192080 station_ip 5.119.136.122 192080 port 456 192080 unique_id port 192081 username khaleghi2406 192081 mac 192081 bytes_out 10710 192081 bytes_in 9401 192081 station_ip 83.123.14.183 192081 port 454 192081 unique_id port 192081 remote_ip 10.8.0.218 192088 username barzegar 192088 mac 192088 bytes_out 3494 192088 bytes_in 5561 192088 station_ip 5.119.190.191 192088 port 453 192088 unique_id port 192088 remote_ip 10.8.0.70 192089 username meghdad1616 192089 mac 192089 bytes_out 2535 192089 bytes_in 4812 192089 station_ip 5.120.133.245 192089 port 453 192089 unique_id port 192089 remote_ip 10.8.0.230 192093 username barzegar8595 192093 mac 192093 bytes_out 126313 192093 bytes_in 407543 192093 station_ip 92.50.15.52 192093 port 456 192093 unique_id port 192093 remote_ip 10.8.0.114 192097 username meghdad1616 192097 mac 192097 bytes_out 5474 192097 bytes_in 9471 192097 station_ip 5.120.133.245 192097 port 443 192097 unique_id port 192097 remote_ip 10.8.0.230 192101 username farhad3 192101 mac 192101 bytes_out 4887093 192101 bytes_in 24131485 192101 station_ip 5.120.158.144 192101 port 448 192101 unique_id port 192101 remote_ip 10.8.0.222 192103 username kalantary6037 192103 mac 192103 bytes_out 245172 192103 bytes_in 614580 192103 station_ip 83.123.107.181 192103 port 456 192103 unique_id port 192103 remote_ip 10.8.0.50 192105 username ghaderpour6649 192105 mac 192105 bytes_out 630202 192105 bytes_in 7033683 192105 station_ip 83.123.86.38 192105 port 453 192105 unique_id port 192105 remote_ip 10.8.0.130 192109 username mammad 192109 unique_id port 192109 terminate_cause User-Request 192109 bytes_out 5822552 192109 bytes_in 112120406 192109 station_ip 5.233.69.189 192109 port 15729247 192109 nas_port_type Virtual 192109 remote_ip 5.5.5.47 192111 username akbari0070 192111 kill_reason Another user logged on this global unique id 192111 mac 192111 bytes_out 0 192111 bytes_in 0 192111 station_ip 83.123.62.120 192111 port 454 192111 unique_id port 192111 remote_ip 10.8.0.166 192115 username barzegar8595 192115 mac 192115 bytes_out 921565 192115 bytes_in 5463411 192115 station_ip 5.202.60.208 192115 port 457 192115 unique_id port 192115 remote_ip 10.8.0.114 192098 unique_id port 192098 remote_ip 10.8.0.70 192099 username aminvpn 192099 mac 192099 bytes_out 706210 192099 bytes_in 4322883 192099 station_ip 5.119.76.132 192099 port 455 192099 unique_id port 192099 remote_ip 10.8.0.58 192100 username barzegar 192100 mac 192100 bytes_out 0 192100 bytes_in 0 192100 station_ip 5.119.190.191 192100 port 443 192100 unique_id port 192100 remote_ip 10.8.0.70 192102 username rahim 192102 mac 192102 bytes_out 12919 192102 bytes_in 12946 192102 station_ip 5.119.97.228 192102 port 455 192102 unique_id port 192102 remote_ip 10.8.0.134 192104 username khademi 192104 kill_reason Another user logged on this global unique id 192104 mac 192104 bytes_out 0 192104 bytes_in 0 192104 station_ip 83.123.127.82 192104 port 433 192104 unique_id port 192110 username farhad3 192110 mac 192110 bytes_out 0 192110 bytes_in 0 192110 station_ip 5.120.158.144 192110 port 453 192110 unique_id port 192110 remote_ip 10.8.0.222 192112 username kharazmi2920 192112 mac 192112 bytes_out 802074 192112 bytes_in 7472507 192112 station_ip 83.123.12.97 192112 port 439 192112 unique_id port 192112 remote_ip 10.8.0.22 192114 username hamid.e 192114 unique_id port 192114 terminate_cause User-Request 192114 bytes_out 13385046 192114 bytes_in 326216702 192114 station_ip 37.27.25.63 192114 port 15729244 192114 nas_port_type Virtual 192114 remote_ip 5.5.5.48 192116 username barzegar 192116 mac 192116 bytes_out 0 192116 bytes_in 0 192116 station_ip 5.119.190.191 192116 port 439 192116 unique_id port 192116 remote_ip 10.8.0.70 192117 username kharazmi2920 192117 mac 192117 bytes_out 8784 192117 bytes_in 13087 192117 station_ip 83.123.12.97 192117 port 448 192117 unique_id port 192117 remote_ip 10.8.0.22 192120 username barzegar 192120 mac 192120 bytes_out 0 192120 bytes_in 0 192120 station_ip 5.119.190.191 192120 port 453 192120 unique_id port 192120 remote_ip 10.8.0.70 192127 username rahim 192127 mac 192127 bytes_out 0 192127 bytes_in 0 192127 station_ip 5.119.97.228 192127 port 455 192127 unique_id port 192127 remote_ip 10.8.0.134 192129 username zahra1101 192129 mac 192129 bytes_out 0 192129 bytes_in 0 192129 station_ip 5.119.181.180 192129 port 455 192129 unique_id port 192129 remote_ip 10.8.0.30 192132 username meghdad1616 192132 mac 192132 bytes_out 20025 192132 bytes_in 39717 192132 station_ip 5.120.133.245 192132 port 453 192132 unique_id port 192132 remote_ip 10.8.0.230 192138 username meghdad1616 192138 mac 192138 bytes_out 0 192138 bytes_in 0 192138 station_ip 5.120.133.245 192138 port 456 192138 unique_id port 192138 remote_ip 10.8.0.230 192140 username alipour1506 192140 kill_reason Another user logged on this global unique id 192140 mac 192140 bytes_out 0 192140 bytes_in 0 192140 station_ip 78.39.25.121 192140 port 455 192140 unique_id port 192140 remote_ip 10.8.0.246 192146 username zahra1101 192146 mac 192146 bytes_out 3612 192146 bytes_in 4749 192146 station_ip 5.119.181.180 192146 port 448 192146 unique_id port 192146 remote_ip 10.8.0.30 192148 username hosseine 192148 mac 192148 bytes_out 0 192148 bytes_in 0 192148 station_ip 83.123.109.117 192148 port 452 192148 unique_id port 192149 username alikomsari 192149 kill_reason Another user logged on this global unique id 192149 mac 192149 bytes_out 0 192149 bytes_in 0 192149 station_ip 5.120.40.90 192149 port 446 192149 unique_id port 192153 username kharazmi2920 192153 mac 192153 bytes_out 980621 192153 bytes_in 9297477 192153 station_ip 83.123.12.97 192107 username mosavi0713 192107 kill_reason Another user logged on this global unique id 192107 mac 192107 bytes_out 0 192107 bytes_in 0 192107 station_ip 83.123.66.180 192107 port 448 192107 unique_id port 192108 username meghdad1616 192108 mac 192108 bytes_out 0 192108 bytes_in 0 192108 station_ip 5.120.133.245 192108 port 448 192108 unique_id port 192108 remote_ip 10.8.0.230 192113 username rahim 192113 mac 192113 bytes_out 0 192113 bytes_in 0 192113 station_ip 5.119.97.228 192113 port 439 192113 unique_id port 192113 remote_ip 10.8.0.134 192118 username mohammadjavad 192118 mac 192118 bytes_out 401297 192118 bytes_in 4856275 192118 station_ip 83.123.73.116 192118 port 453 192118 unique_id port 192118 remote_ip 10.8.0.110 192122 username meghdad1616 192122 kill_reason Maximum check online fails reached 192122 mac 192122 bytes_out 0 192122 bytes_in 0 192122 station_ip 5.120.133.245 192122 port 439 192122 unique_id port 192123 username meghdad1616 192123 mac 192123 bytes_out 103270 192123 bytes_in 136593 192123 station_ip 5.120.133.245 192123 port 453 192123 unique_id port 192123 remote_ip 10.8.0.230 192125 username meghdad1616 192125 mac 192125 bytes_out 2797 192125 bytes_in 5117 192125 station_ip 5.120.133.245 192125 port 443 192125 unique_id port 192125 remote_ip 10.8.0.230 192126 username akbari0070 192126 kill_reason Another user logged on this global unique id 192126 mac 192126 bytes_out 0 192126 bytes_in 0 192126 station_ip 83.123.62.120 192126 port 454 192126 unique_id port 192128 username yarmohamadi7916 192128 kill_reason Another user logged on this global unique id 192128 mac 192128 bytes_out 0 192128 bytes_in 0 192128 station_ip 5.119.25.102 192128 port 442 192128 unique_id port 192130 username akbari0070 192130 mac 192130 bytes_out 0 192130 bytes_in 0 192130 station_ip 83.123.62.120 192130 port 454 192130 unique_id port 192131 username barzegar 192131 mac 192131 bytes_out 0 192131 bytes_in 0 192131 station_ip 5.119.190.191 192131 port 454 192131 unique_id port 192131 remote_ip 10.8.0.70 192134 username kharazmi2920 192134 mac 192134 bytes_out 1463090 192134 bytes_in 15750834 192134 station_ip 83.123.12.97 192134 port 448 192134 unique_id port 192134 remote_ip 10.8.0.22 192139 username barzegar 192139 mac 192139 bytes_out 0 192139 bytes_in 0 192139 station_ip 5.119.190.191 192139 port 448 192139 unique_id port 192139 remote_ip 10.8.0.70 192142 username fezealinaghi 192142 mac 192142 bytes_out 1887251 192142 bytes_in 15137640 192142 station_ip 83.123.0.230 192142 port 443 192142 unique_id port 192142 remote_ip 10.8.0.202 192143 username malekpoir 192143 mac 192143 bytes_out 862806 192143 bytes_in 8403403 192143 station_ip 5.119.87.128 192143 port 435 192143 unique_id port 192143 remote_ip 10.8.0.18 192144 username zahra1101 192144 mac 192144 bytes_out 0 192144 bytes_in 0 192144 station_ip 5.119.181.180 192144 port 435 192144 unique_id port 192144 remote_ip 10.8.0.30 192145 username barzegar 192145 mac 192145 bytes_out 0 192145 bytes_in 0 192145 station_ip 5.119.190.191 192145 port 448 192145 unique_id port 192145 remote_ip 10.8.0.70 192150 username meghdad1616 192150 mac 192150 bytes_out 0 192150 bytes_in 0 192150 station_ip 5.119.87.96 192150 port 459 192150 unique_id port 192150 remote_ip 10.8.0.230 192151 username motamedi9772 192151 mac 192151 bytes_out 169409 192151 bytes_in 561832 192151 station_ip 83.123.17.87 192151 port 457 192151 unique_id port 192151 remote_ip 10.8.0.154 192119 username rahim 192119 mac 192119 bytes_out 1080458 192119 bytes_in 8814691 192119 station_ip 5.119.97.228 192119 port 439 192119 unique_id port 192119 remote_ip 10.8.0.134 192121 username soleymani5056 192121 mac 192121 bytes_out 315751 192121 bytes_in 1641549 192121 station_ip 5.119.173.84 192121 port 443 192121 unique_id port 192121 remote_ip 10.8.0.226 192124 username saeed9658 192124 mac 192124 bytes_out 1114227 192124 bytes_in 8911020 192124 station_ip 5.119.206.111 192124 port 455 192124 unique_id port 192124 remote_ip 10.8.0.162 192133 username mohammadjavad 192133 mac 192133 bytes_out 0 192133 bytes_in 0 192133 station_ip 83.123.73.116 192133 port 453 192133 unique_id port 192133 remote_ip 10.8.0.110 192135 username zahra1101 192135 mac 192135 bytes_out 0 192135 bytes_in 0 192135 station_ip 5.119.181.180 192135 port 448 192135 unique_id port 192135 remote_ip 10.8.0.30 192136 username meghdad1616 192136 mac 192136 bytes_out 0 192136 bytes_in 0 192136 station_ip 5.120.133.245 192136 port 448 192136 unique_id port 192136 remote_ip 10.8.0.230 192137 username pourshad 192137 kill_reason Another user logged on this global unique id 192137 mac 192137 bytes_out 0 192137 bytes_in 0 192137 station_ip 5.119.165.65 192137 port 429 192137 unique_id port 192137 remote_ip 10.8.0.42 192141 username tahmorsi 192141 mac 192141 bytes_out 425904 192141 bytes_in 1981330 192141 station_ip 86.57.36.167 192141 port 454 192141 unique_id port 192141 remote_ip 10.8.0.6 192147 username mosi 192147 mac 192147 bytes_out 2227707 192147 bytes_in 7651854 192147 station_ip 5.72.88.221 192147 port 449 192147 unique_id port 192147 remote_ip 10.8.0.142 192155 username alihosseini1 192155 mac 192155 bytes_out 3529456 192155 bytes_in 39121681 192155 station_ip 5.120.99.115 192155 port 443 192155 unique_id port 192155 remote_ip 10.8.0.118 192157 username houshang 192157 mac 192157 bytes_out 171664 192157 bytes_in 530768 192157 station_ip 5.119.32.107 192157 port 457 192157 unique_id port 192157 remote_ip 10.8.0.82 192161 username meghdad1616 192161 mac 192161 bytes_out 5421 192161 bytes_in 7241 192161 station_ip 5.119.87.96 192161 port 453 192161 unique_id port 192161 remote_ip 10.8.0.230 192163 username morteza4424 192163 mac 192163 bytes_out 0 192163 bytes_in 0 192163 station_ip 83.123.98.199 192163 port 443 192163 unique_id port 192163 remote_ip 10.8.0.206 192166 username zahra1101 192166 mac 192166 bytes_out 0 192166 bytes_in 0 192166 station_ip 5.119.181.180 192166 port 457 192166 unique_id port 192166 remote_ip 10.8.0.30 192171 username morteza4424 192171 mac 192171 bytes_out 0 192171 bytes_in 0 192171 station_ip 83.123.98.199 192171 port 453 192171 unique_id port 192171 remote_ip 10.8.0.206 192172 username tahmorsi 192172 mac 192172 bytes_out 1614159 192172 bytes_in 21774854 192172 station_ip 86.57.22.13 192172 port 458 192172 unique_id port 192172 remote_ip 10.8.0.6 192173 username barzegar8595 192173 mac 192173 bytes_out 132648 192173 bytes_in 218535 192173 station_ip 46.225.210.44 192173 port 459 192173 unique_id port 192173 remote_ip 10.8.0.114 192174 username meghdad1616 192174 mac 192174 bytes_out 0 192174 bytes_in 0 192174 station_ip 5.119.87.96 192174 port 459 192174 unique_id port 192174 remote_ip 10.8.0.230 192176 username alikomsari 192176 mac 192176 bytes_out 0 192176 bytes_in 0 192176 station_ip 5.120.40.90 192176 port 446 192176 unique_id port 192152 username houshang 192152 mac 192152 bytes_out 56070 192152 bytes_in 174062 192152 station_ip 5.119.32.107 192152 port 458 192152 unique_id port 192152 remote_ip 10.8.0.82 192159 username motamedi9772 192159 mac 192159 bytes_out 173237 192159 bytes_in 2034048 192159 station_ip 83.123.17.87 192159 port 461 192159 unique_id port 192159 remote_ip 10.8.0.154 192164 username barzegar 192164 mac 192164 bytes_out 0 192164 bytes_in 0 192164 station_ip 5.119.190.191 192164 port 453 192164 unique_id port 192164 remote_ip 10.8.0.70 192165 username morteza4424 192165 mac 192165 bytes_out 0 192165 bytes_in 0 192165 station_ip 83.123.98.199 192165 port 443 192165 unique_id port 192165 remote_ip 10.8.0.206 192169 username morteza4424 192169 mac 192169 bytes_out 0 192169 bytes_in 0 192169 station_ip 83.123.98.199 192169 port 453 192169 unique_id port 192169 remote_ip 10.8.0.206 192170 username morteza4424 192170 kill_reason Maximum check online fails reached 192170 mac 192170 bytes_out 0 192170 bytes_in 0 192170 station_ip 83.123.98.199 192170 port 443 192170 unique_id port 192178 username sekonji0496 192178 mac 192178 bytes_out 0 192178 bytes_in 0 192178 station_ip 83.123.98.90 192178 port 458 192178 unique_id port 192178 remote_ip 10.8.0.62 192184 username morteza4424 192184 mac 192184 bytes_out 0 192184 bytes_in 0 192184 station_ip 83.123.98.199 192184 port 457 192184 unique_id port 192184 remote_ip 10.8.0.206 192186 username kalantary6037 192186 mac 192186 bytes_out 38369 192186 bytes_in 71955 192186 station_ip 83.123.87.93 192186 port 459 192186 unique_id port 192186 remote_ip 10.8.0.50 192189 username sekonji0496 192189 mac 192189 bytes_out 3961 192189 bytes_in 5752 192189 station_ip 83.123.98.90 192189 port 458 192189 unique_id port 192189 remote_ip 10.8.0.62 192194 username morteza4424 192194 mac 192194 bytes_out 0 192194 bytes_in 0 192194 station_ip 83.123.98.199 192194 port 459 192194 unique_id port 192194 remote_ip 10.8.0.206 192196 username mohammadjavad 192196 mac 192196 bytes_out 2733441 192196 bytes_in 32182486 192196 station_ip 83.123.73.116 192196 port 452 192196 unique_id port 192196 remote_ip 10.8.0.110 192198 username mosi 192198 mac 192198 bytes_out 1328236 192198 bytes_in 9292155 192198 station_ip 5.233.53.134 192198 port 456 192198 unique_id port 192198 remote_ip 10.8.0.142 192199 username majidsarmast 192199 kill_reason Another user logged on this global unique id 192199 mac 192199 bytes_out 0 192199 bytes_in 0 192199 station_ip 86.57.14.127 192199 port 458 192199 unique_id port 192199 remote_ip 10.8.0.146 192202 username dortaj3792 192202 mac 192202 bytes_out 176967 192202 bytes_in 551729 192202 station_ip 5.119.117.23 192202 port 452 192202 unique_id port 192202 remote_ip 10.8.0.102 192203 username tahmorsi 192203 mac 192203 bytes_out 687664 192203 bytes_in 10696618 192203 station_ip 86.57.41.255 192203 port 459 192203 unique_id port 192203 remote_ip 10.8.0.6 192204 username morteza4424 192204 mac 192204 bytes_out 2539644 192204 bytes_in 40352100 192204 station_ip 83.123.98.199 192204 port 442 192204 unique_id port 192204 remote_ip 10.8.0.206 192208 username akbari0070 192208 mac 192208 bytes_out 3274723 192208 bytes_in 31231666 192208 station_ip 83.123.62.116 192208 port 454 192208 unique_id port 192208 remote_ip 10.8.0.166 192209 username morteza4424 192209 mac 192209 bytes_out 8034 192209 bytes_in 33696 192209 station_ip 83.123.98.199 192209 port 452 192209 unique_id port 192153 port 453 192153 unique_id port 192153 remote_ip 10.8.0.22 192154 username kalantary6037 192154 mac 192154 bytes_out 24051 192154 bytes_in 19608 192154 station_ip 83.123.62.205 192154 port 459 192154 unique_id port 192154 remote_ip 10.8.0.50 192156 username alihosseini1 192156 mac 192156 bytes_out 0 192156 bytes_in 0 192156 station_ip 5.120.99.115 192156 port 462 192156 unique_id port 192156 remote_ip 10.8.0.118 192158 username kalantary6037 192158 mac 192158 bytes_out 89420 192158 bytes_in 329978 192158 station_ip 83.123.62.205 192158 port 443 192158 unique_id port 192158 remote_ip 10.8.0.50 192160 username motamedi9772 192160 mac 192160 bytes_out 0 192160 bytes_in 0 192160 station_ip 83.123.17.87 192160 port 443 192160 unique_id port 192160 remote_ip 10.8.0.154 192162 username morteza4424 192162 mac 192162 bytes_out 1694719 192162 bytes_in 28106352 192162 station_ip 83.123.98.199 192162 port 460 192162 unique_id port 192162 remote_ip 10.8.0.206 192167 username rahim 192167 mac 192167 bytes_out 93672 192167 bytes_in 67558 192167 station_ip 5.119.97.228 192167 port 453 192167 unique_id port 192167 remote_ip 10.8.0.134 192168 username rahim 192168 mac 192168 bytes_out 0 192168 bytes_in 0 192168 station_ip 5.119.97.228 192168 port 457 192168 unique_id port 192168 remote_ip 10.8.0.134 192175 username yarmohamadi7916 192175 kill_reason Another user logged on this global unique id 192175 mac 192175 bytes_out 0 192175 bytes_in 0 192175 station_ip 5.119.25.102 192175 port 442 192175 unique_id port 192177 username sekonji0496 192177 mac 192177 bytes_out 15531 192177 bytes_in 27821 192177 station_ip 83.123.98.90 192177 port 458 192177 unique_id port 192177 remote_ip 10.8.0.62 192181 username rahim 192181 mac 192181 bytes_out 39001 192181 bytes_in 110894 192181 station_ip 5.119.97.228 192181 port 453 192181 unique_id port 192181 remote_ip 10.8.0.134 192188 username meghdad1616 192188 mac 192188 bytes_out 0 192188 bytes_in 0 192188 station_ip 5.119.87.96 192188 port 457 192188 unique_id port 192188 remote_ip 10.8.0.230 192190 username morteza4424 192190 mac 192190 bytes_out 15634 192190 bytes_in 149307 192190 station_ip 83.123.98.199 192190 port 457 192190 unique_id port 192190 remote_ip 10.8.0.206 192200 username rahim 192200 mac 192200 bytes_out 29684 192200 bytes_in 34812 192200 station_ip 5.119.97.228 192200 port 457 192200 unique_id port 192200 remote_ip 10.8.0.134 192201 username alihosseini1 192201 mac 192201 bytes_out 0 192201 bytes_in 0 192201 station_ip 5.120.99.115 192201 port 462 192201 unique_id port 192206 username kalantary6037 192206 mac 192206 bytes_out 383597 192206 bytes_in 2898098 192206 station_ip 83.123.87.93 192206 port 452 192206 unique_id port 192206 remote_ip 10.8.0.50 192207 username morteza4424 192207 mac 192207 bytes_out 0 192207 bytes_in 0 192207 station_ip 83.123.98.199 192207 port 452 192207 unique_id port 192207 remote_ip 10.8.0.206 192213 username barzegar 192213 mac 192213 bytes_out 0 192213 bytes_in 0 192213 station_ip 5.119.190.191 192213 port 459 192213 unique_id port 192213 remote_ip 10.8.0.70 192216 username morteza4424 192216 mac 192216 bytes_out 0 192216 bytes_in 0 192216 station_ip 83.123.98.199 192216 port 457 192216 unique_id port 192216 remote_ip 10.8.0.206 192218 username morteza4424 192218 mac 192218 bytes_out 0 192218 bytes_in 0 192218 station_ip 83.123.98.199 192218 port 457 192218 unique_id port 192179 username godarzi 192179 kill_reason Another user logged on this global unique id 192179 mac 192179 bytes_out 0 192179 bytes_in 0 192179 station_ip 45.84.157.190 192179 port 424 192179 unique_id port 192179 remote_ip 10.8.0.38 192180 username sekonji0496 192180 mac 192180 bytes_out 0 192180 bytes_in 0 192180 station_ip 83.123.98.90 192180 port 458 192180 unique_id port 192180 remote_ip 10.8.0.62 192182 username rahim 192182 mac 192182 bytes_out 0 192182 bytes_in 0 192182 station_ip 5.119.97.228 192182 port 453 192182 unique_id port 192182 remote_ip 10.8.0.134 192183 username morteza4424 192183 mac 192183 bytes_out 667517 192183 bytes_in 9033014 192183 station_ip 83.123.98.199 192183 port 457 192183 unique_id port 192183 remote_ip 10.8.0.206 192185 username alihosseini1 192185 kill_reason Another user logged on this global unique id 192185 mac 192185 bytes_out 0 192185 bytes_in 0 192185 station_ip 5.120.99.115 192185 port 462 192185 unique_id port 192185 remote_ip 10.8.0.118 192187 username rahim 192187 mac 192187 bytes_out 0 192187 bytes_in 0 192187 station_ip 5.119.97.228 192187 port 459 192187 unique_id port 192187 remote_ip 10.8.0.134 192191 username morteza4424 192191 mac 192191 bytes_out 0 192191 bytes_in 0 192191 station_ip 83.123.98.199 192191 port 457 192191 unique_id port 192191 remote_ip 10.8.0.206 192192 username meghdad1616 192192 mac 192192 bytes_out 0 192192 bytes_in 0 192192 station_ip 5.119.87.96 192192 port 459 192192 unique_id port 192192 remote_ip 10.8.0.230 192193 username morteza4424 192193 mac 192193 bytes_out 0 192193 bytes_in 0 192193 station_ip 83.123.98.199 192193 port 459 192193 unique_id port 192193 remote_ip 10.8.0.206 192195 username yarmohamadi7916 192195 mac 192195 bytes_out 0 192195 bytes_in 0 192195 station_ip 5.119.25.102 192195 port 442 192195 unique_id port 192197 username barzegar 192197 mac 192197 bytes_out 0 192197 bytes_in 0 192197 station_ip 5.119.190.191 192197 port 459 192197 unique_id port 192197 remote_ip 10.8.0.70 192205 username morteza4424 192205 mac 192205 bytes_out 0 192205 bytes_in 0 192205 station_ip 83.123.98.199 192205 port 457 192205 unique_id port 192205 remote_ip 10.8.0.206 192211 username morteza4424 192211 mac 192211 bytes_out 0 192211 bytes_in 0 192211 station_ip 83.123.98.199 192211 port 452 192211 unique_id port 192211 remote_ip 10.8.0.206 192215 username majidsarmast 192215 kill_reason Another user logged on this global unique id 192215 mac 192215 bytes_out 0 192215 bytes_in 0 192215 station_ip 86.57.14.127 192215 port 458 192215 unique_id port 192220 username morteza4424 192220 mac 192220 bytes_out 0 192220 bytes_in 0 192220 station_ip 83.123.98.199 192220 port 452 192220 unique_id port 192220 remote_ip 10.8.0.206 192226 username morteza4424 192226 mac 192226 bytes_out 0 192226 bytes_in 0 192226 station_ip 83.123.98.199 192226 port 452 192226 unique_id port 192226 remote_ip 10.8.0.206 192228 username majidsarmast 192228 kill_reason Another user logged on this global unique id 192228 mac 192228 bytes_out 0 192228 bytes_in 0 192228 station_ip 86.57.14.127 192228 port 458 192228 unique_id port 192229 username saeed9658 192229 mac 192229 bytes_out 1347770 192229 bytes_in 11383970 192229 station_ip 5.119.206.111 192229 port 453 192229 unique_id port 192229 remote_ip 10.8.0.162 192234 username rahim 192234 mac 192234 bytes_out 2561912 192234 bytes_in 26678950 192234 station_ip 5.119.97.228 192234 port 442 192234 unique_id port 192209 remote_ip 10.8.0.206 192210 username meghdad1616 192210 mac 192210 bytes_out 0 192210 bytes_in 0 192210 station_ip 5.119.87.96 192210 port 457 192210 unique_id port 192210 remote_ip 10.8.0.230 192212 username morteza4424 192212 mac 192212 bytes_out 0 192212 bytes_in 0 192212 station_ip 83.123.98.199 192212 port 457 192212 unique_id port 192212 remote_ip 10.8.0.206 192214 username morteza4424 192214 mac 192214 bytes_out 0 192214 bytes_in 0 192214 station_ip 83.123.98.199 192214 port 457 192214 unique_id port 192214 remote_ip 10.8.0.206 192217 username morteza4424 192217 mac 192217 bytes_out 0 192217 bytes_in 0 192217 station_ip 83.123.98.199 192217 port 457 192217 unique_id port 192217 remote_ip 10.8.0.206 192219 username dortaj3792 192219 mac 192219 bytes_out 80396 192219 bytes_in 203571 192219 station_ip 5.119.117.23 192219 port 452 192219 unique_id port 192219 remote_ip 10.8.0.102 192222 username morteza4424 192222 mac 192222 bytes_out 0 192222 bytes_in 0 192222 station_ip 83.123.98.199 192222 port 452 192222 unique_id port 192222 remote_ip 10.8.0.206 192224 username meghdad1616 192224 mac 192224 bytes_out 0 192224 bytes_in 0 192224 station_ip 5.119.87.96 192224 port 462 192224 unique_id port 192224 remote_ip 10.8.0.230 192232 username morteza4424 192232 mac 192232 bytes_out 0 192232 bytes_in 0 192232 station_ip 83.123.98.199 192232 port 453 192232 unique_id port 192232 remote_ip 10.8.0.206 192233 username sabaghnezhad 192233 mac 192233 bytes_out 593511 192233 bytes_in 1145705 192233 station_ip 83.123.85.219 192233 port 461 192233 unique_id port 192233 remote_ip 10.8.0.66 192235 username morteza4424 192235 mac 192235 bytes_out 0 192235 bytes_in 0 192235 station_ip 83.123.98.199 192235 port 453 192235 unique_id port 192235 remote_ip 10.8.0.206 192238 username morteza4424 192238 mac 192238 bytes_out 0 192238 bytes_in 0 192238 station_ip 83.123.98.199 192238 port 442 192238 unique_id port 192238 remote_ip 10.8.0.206 192239 username kalantary6037 192239 kill_reason Another user logged on this global unique id 192239 mac 192239 bytes_out 0 192239 bytes_in 0 192239 station_ip 83.123.87.93 192239 port 457 192239 unique_id port 192239 remote_ip 10.8.0.50 192242 username kamali3 192242 mac 192242 bytes_out 3908585 192242 bytes_in 50078377 192242 station_ip 83.123.116.136 192242 port 449 192242 unique_id port 192242 remote_ip 10.8.0.150 192245 username morteza4424 192245 mac 192245 bytes_out 0 192245 bytes_in 0 192245 station_ip 83.123.98.199 192245 port 453 192245 unique_id port 192245 remote_ip 10.8.0.206 192248 username morteza4424 192248 mac 192248 bytes_out 0 192248 bytes_in 0 192248 station_ip 83.123.98.199 192248 port 449 192248 unique_id port 192248 remote_ip 10.8.0.206 192251 username morteza4424 192251 mac 192251 bytes_out 0 192251 bytes_in 0 192251 station_ip 83.123.98.199 192251 port 461 192251 unique_id port 192251 remote_ip 10.8.0.206 192254 username aminvpn 192254 unique_id port 192254 terminate_cause User-Request 192254 bytes_out 266260 192254 bytes_in 1167040 192254 station_ip 83.123.101.136 192254 port 15729250 192254 nas_port_type Virtual 192254 remote_ip 5.5.5.45 192255 username barzegar8595 192255 mac 192255 bytes_out 4110471 192255 bytes_in 32875764 192255 station_ip 46.225.210.44 192255 port 446 192255 unique_id port 192255 remote_ip 10.8.0.114 192258 username barzegar8595 192258 mac 192258 bytes_out 0 192258 bytes_in 0 192218 remote_ip 10.8.0.206 192221 username morteza4424 192221 mac 192221 bytes_out 0 192221 bytes_in 0 192221 station_ip 83.123.98.199 192221 port 452 192221 unique_id port 192221 remote_ip 10.8.0.206 192223 username morteza4424 192223 mac 192223 bytes_out 0 192223 bytes_in 0 192223 station_ip 83.123.98.199 192223 port 452 192223 unique_id port 192223 remote_ip 10.8.0.206 192225 username morteza4424 192225 mac 192225 bytes_out 0 192225 bytes_in 0 192225 station_ip 83.123.98.199 192225 port 452 192225 unique_id port 192225 remote_ip 10.8.0.206 192227 username mosi 192227 mac 192227 bytes_out 1659324 192227 bytes_in 7960535 192227 station_ip 5.233.53.134 192227 port 460 192227 unique_id port 192227 remote_ip 10.8.0.142 192230 username morteza4424 192230 mac 192230 bytes_out 16250 192230 bytes_in 28577 192230 station_ip 83.123.98.199 192230 port 460 192230 unique_id port 192230 remote_ip 10.8.0.206 192231 username akbari0070 192231 mac 192231 bytes_out 154140 192231 bytes_in 540649 192231 station_ip 83.123.62.116 192231 port 454 192231 unique_id port 192231 remote_ip 10.8.0.166 192240 username majidsarmast 192240 kill_reason Another user logged on this global unique id 192240 mac 192240 bytes_out 0 192240 bytes_in 0 192240 station_ip 86.57.14.127 192240 port 458 192240 unique_id port 192243 username aminvpn 192243 unique_id port 192243 terminate_cause Lost-Carrier 192243 bytes_out 210377 192243 bytes_in 1465034 192243 station_ip 83.123.4.151 192243 port 15729249 192243 nas_port_type Virtual 192243 remote_ip 5.5.5.46 192247 username rahim 192247 mac 192247 bytes_out 3029 192247 bytes_in 5453 192247 station_ip 5.119.97.228 192247 port 442 192247 unique_id port 192247 remote_ip 10.8.0.134 192250 username morteza4424 192250 mac 192250 bytes_out 0 192250 bytes_in 0 192250 station_ip 83.123.98.199 192250 port 449 192250 unique_id port 192250 remote_ip 10.8.0.206 192256 username meghdad1616 192256 mac 192256 bytes_out 0 192256 bytes_in 0 192256 station_ip 5.119.87.96 192256 port 464 192256 unique_id port 192256 remote_ip 10.8.0.230 192262 username barzegar8595 192262 mac 192262 bytes_out 0 192262 bytes_in 0 192262 station_ip 46.225.210.44 192262 port 453 192262 unique_id port 192262 remote_ip 10.8.0.114 192263 username morteza4424 192263 mac 192263 bytes_out 0 192263 bytes_in 0 192263 station_ip 83.123.98.199 192263 port 453 192263 unique_id port 192263 remote_ip 10.8.0.206 192265 username barzegar8595 192265 mac 192265 bytes_out 494555 192265 bytes_in 11320044 192265 station_ip 46.225.210.44 192265 port 454 192265 unique_id port 192265 remote_ip 10.8.0.114 192267 username motamedi9772 192267 mac 192267 bytes_out 2075005 192267 bytes_in 14859428 192267 station_ip 83.123.78.71 192267 port 452 192267 unique_id port 192267 remote_ip 10.8.0.154 192268 username soleymani5056 192268 mac 192268 bytes_out 278062 192268 bytes_in 2471294 192268 station_ip 5.120.29.133 192268 port 459 192268 unique_id port 192268 remote_ip 10.8.0.226 192270 username morteza4424 192270 mac 192270 bytes_out 0 192270 bytes_in 0 192270 station_ip 83.123.98.199 192270 port 452 192270 unique_id port 192270 remote_ip 10.8.0.206 192272 username meghdad1616 192272 mac 192272 bytes_out 0 192272 bytes_in 0 192272 station_ip 5.119.87.96 192272 port 452 192272 unique_id port 192272 remote_ip 10.8.0.230 192279 username morteza4424 192279 mac 192279 bytes_out 0 192279 bytes_in 0 192279 station_ip 83.123.98.199 192234 remote_ip 10.8.0.134 192236 username rahim 192236 mac 192236 bytes_out 0 192236 bytes_in 0 192236 station_ip 5.119.97.228 192236 port 442 192236 unique_id port 192236 remote_ip 10.8.0.134 192237 username morteza4424 192237 mac 192237 bytes_out 0 192237 bytes_in 0 192237 station_ip 83.123.98.199 192237 port 442 192237 unique_id port 192237 remote_ip 10.8.0.206 192241 username morteza4424 192241 mac 192241 bytes_out 0 192241 bytes_in 0 192241 station_ip 83.123.98.199 192241 port 453 192241 unique_id port 192241 remote_ip 10.8.0.206 192244 username morteza4424 192244 mac 192244 bytes_out 0 192244 bytes_in 0 192244 station_ip 83.123.98.199 192244 port 453 192244 unique_id port 192244 remote_ip 10.8.0.206 192246 username barzegar 192246 mac 192246 bytes_out 0 192246 bytes_in 0 192246 station_ip 5.119.190.191 192246 port 449 192246 unique_id port 192246 remote_ip 10.8.0.70 192249 username morteza4424 192249 mac 192249 bytes_out 0 192249 bytes_in 0 192249 station_ip 83.123.98.199 192249 port 449 192249 unique_id port 192249 remote_ip 10.8.0.206 192252 username majidsarmast 192252 kill_reason Another user logged on this global unique id 192252 mac 192252 bytes_out 0 192252 bytes_in 0 192252 station_ip 86.57.14.127 192252 port 458 192252 unique_id port 192253 username morteza4424 192253 mac 192253 bytes_out 0 192253 bytes_in 0 192253 station_ip 83.123.98.199 192253 port 461 192253 unique_id port 192253 remote_ip 10.8.0.206 192257 username rahim 192257 mac 192257 bytes_out 20198 192257 bytes_in 80278 192257 station_ip 5.119.97.228 192257 port 453 192257 unique_id port 192257 remote_ip 10.8.0.134 192259 username morteza4424 192259 mac 192259 bytes_out 0 192259 bytes_in 0 192259 station_ip 83.123.98.199 192259 port 464 192259 unique_id port 192259 remote_ip 10.8.0.206 192260 username kamali3 192260 mac 192260 bytes_out 306459 192260 bytes_in 911609 192260 station_ip 83.123.116.136 192260 port 454 192260 unique_id port 192260 remote_ip 10.8.0.150 192269 username mosi 192269 mac 192269 bytes_out 63262 192269 bytes_in 110070 192269 station_ip 5.62.209.179 192269 port 462 192269 unique_id port 192269 remote_ip 10.8.0.142 192271 username morteza4424 192271 kill_reason Maximum check online fails reached 192271 mac 192271 bytes_out 0 192271 bytes_in 0 192271 station_ip 83.123.98.199 192271 port 454 192271 unique_id port 192273 username barzegar 192273 mac 192273 bytes_out 0 192273 bytes_in 0 192273 station_ip 5.119.190.191 192273 port 452 192273 unique_id port 192273 remote_ip 10.8.0.70 192275 username morteza4424 192275 mac 192275 bytes_out 0 192275 bytes_in 0 192275 station_ip 83.123.98.199 192275 port 459 192275 unique_id port 192275 remote_ip 10.8.0.206 192276 username barzegar8595 192276 mac 192276 bytes_out 530399 192276 bytes_in 6151587 192276 station_ip 46.225.210.44 192276 port 453 192276 unique_id port 192276 remote_ip 10.8.0.114 192278 username kharazmi2920 192278 mac 192278 bytes_out 3202235 192278 bytes_in 38573336 192278 station_ip 83.123.12.97 192278 port 442 192278 unique_id port 192278 remote_ip 10.8.0.22 192282 username morteza4424 192282 mac 192282 bytes_out 0 192282 bytes_in 0 192282 station_ip 83.123.98.199 192282 port 453 192282 unique_id port 192282 remote_ip 10.8.0.206 192284 username morteza4424 192284 mac 192284 bytes_out 0 192284 bytes_in 0 192284 station_ip 83.123.98.199 192284 port 453 192284 unique_id port 192284 remote_ip 10.8.0.206 192258 station_ip 46.225.210.44 192258 port 463 192258 unique_id port 192258 remote_ip 10.8.0.114 192261 username morteza4424 192261 mac 192261 bytes_out 0 192261 bytes_in 0 192261 station_ip 83.123.98.199 192261 port 454 192261 unique_id port 192261 remote_ip 10.8.0.206 192264 username mostafa_es78 192264 mac 192264 bytes_out 172288 192264 bytes_in 594123 192264 station_ip 37.129.73.55 192264 port 461 192264 unique_id port 192264 remote_ip 10.8.0.34 192266 username morteza4424 192266 kill_reason Maximum check online fails reached 192266 mac 192266 bytes_out 0 192266 bytes_in 0 192266 station_ip 83.123.98.199 192266 port 446 192266 unique_id port 192274 username morteza4424 192274 mac 192274 bytes_out 0 192274 bytes_in 0 192274 station_ip 83.123.98.199 192274 port 459 192274 unique_id port 192274 remote_ip 10.8.0.206 192277 username kalantary6037 192277 mac 192277 bytes_out 0 192277 bytes_in 0 192277 station_ip 83.123.87.93 192277 port 457 192277 unique_id port 192281 username barzegar8595 192281 mac 192281 bytes_out 21680 192281 bytes_in 65036 192281 station_ip 46.225.210.44 192281 port 464 192281 unique_id port 192281 remote_ip 10.8.0.114 192283 username pourshad 192283 mac 192283 bytes_out 0 192283 bytes_in 0 192283 station_ip 5.119.165.65 192283 port 429 192283 unique_id port 192285 username morteza4424 192285 mac 192285 bytes_out 0 192285 bytes_in 0 192285 station_ip 83.123.98.199 192285 port 429 192285 unique_id port 192285 remote_ip 10.8.0.206 192287 username morteza4424 192287 mac 192287 bytes_out 0 192287 bytes_in 0 192287 station_ip 83.123.98.199 192287 port 429 192287 unique_id port 192287 remote_ip 10.8.0.206 192288 username morteza4424 192288 mac 192288 bytes_out 0 192288 bytes_in 0 192288 station_ip 83.123.98.199 192288 port 429 192288 unique_id port 192288 remote_ip 10.8.0.206 192289 username meghdad1616 192289 mac 192289 bytes_out 0 192289 bytes_in 0 192289 station_ip 5.119.87.96 192289 port 429 192289 unique_id port 192289 remote_ip 10.8.0.230 192294 username morteza4424 192294 mac 192294 bytes_out 0 192294 bytes_in 0 192294 station_ip 83.123.98.199 192294 port 463 192294 unique_id port 192294 remote_ip 10.8.0.206 192296 username meghdad1616 192296 mac 192296 bytes_out 0 192296 bytes_in 0 192296 station_ip 5.119.87.96 192296 port 464 192296 unique_id port 192296 remote_ip 10.8.0.230 192299 username nilufarrajaei 192299 mac 192299 bytes_out 2633875 192299 bytes_in 13437401 192299 station_ip 83.123.96.93 192299 port 438 192299 unique_id port 192299 remote_ip 10.8.0.194 192301 username meghdad1616 192301 mac 192301 bytes_out 0 192301 bytes_in 0 192301 station_ip 5.119.87.96 192301 port 438 192301 unique_id port 192301 remote_ip 10.8.0.230 192302 username kamali3 192302 mac 192302 bytes_out 339723 192302 bytes_in 1490249 192302 station_ip 83.123.116.136 192302 port 429 192302 unique_id port 192302 remote_ip 10.8.0.150 192304 username zahra1101 192304 mac 192304 bytes_out 2421 192304 bytes_in 4461 192304 station_ip 5.119.227.184 192304 port 438 192304 unique_id port 192304 remote_ip 10.8.0.30 192307 username saeed9658 192307 mac 192307 bytes_out 196356 192307 bytes_in 2165824 192307 station_ip 5.119.206.111 192307 port 452 192307 unique_id port 192307 remote_ip 10.8.0.162 192313 username morteza4424 192313 mac 192313 bytes_out 5587 192313 bytes_in 7771 192313 station_ip 83.123.98.199 192313 port 466 192313 unique_id port 192279 port 459 192279 unique_id port 192279 remote_ip 10.8.0.206 192280 username meghdad1616 192280 mac 192280 bytes_out 0 192280 bytes_in 0 192280 station_ip 5.119.87.96 192280 port 442 192280 unique_id port 192280 remote_ip 10.8.0.230 192292 username jafari 192292 kill_reason Another user logged on this global unique id 192292 mac 192292 bytes_out 0 192292 bytes_in 0 192292 station_ip 89.32.100.188 192292 port 449 192292 unique_id port 192292 remote_ip 10.8.0.178 192293 username morteza4424 192293 kill_reason Maximum check online fails reached 192293 mac 192293 bytes_out 0 192293 bytes_in 0 192293 station_ip 83.123.98.199 192293 port 453 192293 unique_id port 192295 username barzegar8595 192295 mac 192295 bytes_out 334183 192295 bytes_in 997064 192295 station_ip 46.225.210.44 192295 port 442 192295 unique_id port 192295 remote_ip 10.8.0.114 192305 username kalantary6037 192305 mac 192305 bytes_out 311043 192305 bytes_in 551120 192305 station_ip 83.123.53.89 192305 port 459 192305 unique_id port 192305 remote_ip 10.8.0.50 192306 username nilufarrajaei 192306 mac 192306 bytes_out 21133 192306 bytes_in 33152 192306 station_ip 83.123.96.93 192306 port 465 192306 unique_id port 192306 remote_ip 10.8.0.194 192308 username mohammadjavad 192308 mac 192308 bytes_out 894538 192308 bytes_in 15481722 192308 station_ip 83.123.32.242 192308 port 442 192308 unique_id port 192308 remote_ip 10.8.0.110 192312 username mohammadjavad 192312 mac 192312 bytes_out 0 192312 bytes_in 0 192312 station_ip 83.123.32.242 192312 port 452 192312 unique_id port 192312 remote_ip 10.8.0.110 192314 username morteza4424 192314 mac 192314 bytes_out 0 192314 bytes_in 0 192314 station_ip 83.123.98.199 192314 port 452 192314 unique_id port 192314 remote_ip 10.8.0.206 192316 username barzegar 192316 mac 192316 bytes_out 0 192316 bytes_in 0 192316 station_ip 5.119.190.191 192316 port 457 192316 unique_id port 192316 remote_ip 10.8.0.70 192318 username majidsarmast 192318 kill_reason Another user logged on this global unique id 192318 mac 192318 bytes_out 0 192318 bytes_in 0 192318 station_ip 86.57.14.127 192318 port 458 192318 unique_id port 192320 username saeeddamghani 192320 mac 192320 bytes_out 605522 192320 bytes_in 8539323 192320 station_ip 5.119.197.132 192320 port 442 192320 unique_id port 192320 remote_ip 10.8.0.174 192322 username jafari 192322 kill_reason Another user logged on this global unique id 192322 mac 192322 bytes_out 0 192322 bytes_in 0 192322 station_ip 89.32.100.188 192322 port 449 192322 unique_id port 192325 username zahra1101 192325 mac 192325 bytes_out 0 192325 bytes_in 0 192325 station_ip 5.119.227.184 192325 port 442 192325 unique_id port 192325 remote_ip 10.8.0.30 192327 username mohammadjavad 192327 mac 192327 bytes_out 0 192327 bytes_in 0 192327 station_ip 83.123.32.242 192327 port 468 192327 unique_id port 192327 remote_ip 10.8.0.110 192335 username meghdad1616 192335 mac 192335 bytes_out 0 192335 bytes_in 0 192335 station_ip 5.119.87.96 192335 port 458 192335 unique_id port 192335 remote_ip 10.8.0.230 192337 username akbari0070 192337 mac 192337 bytes_out 1632190 192337 bytes_in 6160908 192337 station_ip 83.123.117.76 192337 port 452 192337 unique_id port 192337 remote_ip 10.8.0.166 192338 username morteza4424 192338 mac 192338 bytes_out 14750 192338 bytes_in 41191 192338 station_ip 83.123.98.199 192338 port 452 192338 unique_id port 192338 remote_ip 10.8.0.206 192339 username morteza4424 192339 mac 192339 bytes_out 0 192286 username meghdad1616 192286 mac 192286 bytes_out 0 192286 bytes_in 0 192286 station_ip 5.119.87.96 192286 port 429 192286 unique_id port 192286 remote_ip 10.8.0.230 192290 username mosi 192290 mac 192290 bytes_out 1034391 192290 bytes_in 2392795 192290 station_ip 5.62.209.179 192290 port 452 192290 unique_id port 192290 remote_ip 10.8.0.142 192291 username kamali3 192291 mac 192291 bytes_out 565926 192291 bytes_in 6467104 192291 station_ip 83.123.116.136 192291 port 463 192291 unique_id port 192291 remote_ip 10.8.0.150 192297 username mohammadjavad 192297 mac 192297 bytes_out 28955 192297 bytes_in 50696 192297 station_ip 83.123.32.242 192297 port 442 192297 unique_id port 192297 remote_ip 10.8.0.110 192298 username morteza4424 192298 kill_reason Maximum check online fails reached 192298 mac 192298 bytes_out 0 192298 bytes_in 0 192298 station_ip 83.123.98.199 192298 port 463 192298 unique_id port 192300 username godarzi 192300 kill_reason Another user logged on this global unique id 192300 mac 192300 bytes_out 0 192300 bytes_in 0 192300 station_ip 45.84.157.190 192300 port 424 192300 unique_id port 192303 username morteza4424 192303 kill_reason Maximum check online fails reached 192303 mac 192303 bytes_out 0 192303 bytes_in 0 192303 station_ip 83.123.98.199 192303 port 464 192303 unique_id port 192309 username pourshad 192309 mac 192309 bytes_out 103790 192309 bytes_in 78267 192309 station_ip 5.119.165.65 192309 port 457 192309 unique_id port 192309 remote_ip 10.8.0.42 192310 username barzegar 192310 mac 192310 bytes_out 0 192310 bytes_in 0 192310 station_ip 5.119.190.191 192310 port 452 192310 unique_id port 192310 remote_ip 10.8.0.70 192311 username alirezaza 192311 unique_id port 192311 terminate_cause Lost-Carrier 192311 bytes_out 27979 192311 bytes_in 83961 192311 station_ip 5.119.236.221 192311 port 15729253 192311 nas_port_type Virtual 192311 remote_ip 5.5.5.44 192315 username morteza4424 192315 mac 192315 bytes_out 0 192315 bytes_in 0 192315 station_ip 83.123.98.199 192315 port 459 192315 unique_id port 192315 remote_ip 10.8.0.206 192321 username morteza4424 192321 kill_reason Maximum check online fails reached 192321 mac 192321 bytes_out 0 192321 bytes_in 0 192321 station_ip 83.123.98.199 192321 port 457 192321 unique_id port 192326 username majidsarmast 192326 mac 192326 bytes_out 0 192326 bytes_in 0 192326 station_ip 86.57.14.127 192326 port 458 192326 unique_id port 192328 username kamali3 192328 mac 192328 bytes_out 772154 192328 bytes_in 13068423 192328 station_ip 83.123.116.136 192328 port 429 192328 unique_id port 192328 remote_ip 10.8.0.150 192329 username barzegar 192329 kill_reason Maximum number of concurrent logins reached 192329 mac 192329 bytes_out 0 192329 bytes_in 0 192329 station_ip 5.119.190.191 192329 port 458 192329 unique_id port 192332 username meghdad1616 192332 mac 192332 bytes_out 16746 192332 bytes_in 32763 192332 station_ip 5.119.87.96 192332 port 458 192332 unique_id port 192332 remote_ip 10.8.0.230 192344 username morteza4424 192344 mac 192344 bytes_out 0 192344 bytes_in 0 192344 station_ip 83.123.98.199 192344 port 452 192344 unique_id port 192344 remote_ip 10.8.0.206 192346 username fezealinaghi 192346 mac 192346 bytes_out 4826310 192346 bytes_in 43244171 192346 station_ip 83.123.14.125 192346 port 456 192346 unique_id port 192346 remote_ip 10.8.0.202 192348 username meghdad1616 192348 mac 192348 bytes_out 0 192348 bytes_in 0 192348 station_ip 5.119.87.96 192348 port 452 192313 remote_ip 10.8.0.206 192317 username zahra1101 192317 mac 192317 bytes_out 0 192317 bytes_in 0 192317 station_ip 5.119.227.184 192317 port 457 192317 unique_id port 192317 remote_ip 10.8.0.30 192319 username mohammadjavad 192319 mac 192319 bytes_out 0 192319 bytes_in 0 192319 station_ip 83.123.32.242 192319 port 457 192319 unique_id port 192319 remote_ip 10.8.0.110 192323 username mohammadjavad 192323 mac 192323 bytes_out 785053 192323 bytes_in 15073384 192323 station_ip 83.123.32.242 192323 port 465 192323 unique_id port 192323 remote_ip 10.8.0.110 192324 username morteza4424 192324 mac 192324 bytes_out 1644 192324 bytes_in 4816 192324 station_ip 83.123.98.199 192324 port 442 192324 unique_id port 192324 remote_ip 10.8.0.206 192330 username morteza4424 192330 kill_reason Maximum check online fails reached 192330 mac 192330 bytes_out 0 192330 bytes_in 0 192330 station_ip 83.123.98.199 192330 port 442 192330 unique_id port 192331 username barzegar 192331 kill_reason Maximum check online fails reached 192331 mac 192331 bytes_out 0 192331 bytes_in 0 192331 station_ip 5.119.190.191 192331 port 466 192331 unique_id port 192333 username morteza4424 192333 mac 192333 bytes_out 57625 192333 bytes_in 203316 192333 station_ip 83.123.98.199 192333 port 429 192333 unique_id port 192333 remote_ip 10.8.0.206 192334 username morteza4424 192334 mac 192334 bytes_out 0 192334 bytes_in 0 192334 station_ip 83.123.98.199 192334 port 429 192334 unique_id port 192334 remote_ip 10.8.0.206 192336 username kalantary6037 192336 mac 192336 bytes_out 1881235 192336 bytes_in 26308498 192336 station_ip 83.123.87.209 192336 port 465 192336 unique_id port 192336 remote_ip 10.8.0.50 192340 username saeed9658 192340 mac 192340 bytes_out 481298 192340 bytes_in 3006998 192340 station_ip 5.119.206.111 192340 port 459 192340 unique_id port 192340 remote_ip 10.8.0.162 192341 username mohammadjavad 192341 mac 192341 bytes_out 0 192341 bytes_in 0 192341 station_ip 83.123.32.242 192341 port 452 192341 unique_id port 192341 remote_ip 10.8.0.110 192342 username jafari 192342 kill_reason Another user logged on this global unique id 192342 mac 192342 bytes_out 0 192342 bytes_in 0 192342 station_ip 89.32.100.188 192342 port 449 192342 unique_id port 192350 username meghdad1616 192350 mac 192350 bytes_out 0 192350 bytes_in 0 192350 station_ip 5.119.87.96 192350 port 456 192350 unique_id port 192350 remote_ip 10.8.0.230 192351 username kalantary6037 192351 mac 192351 bytes_out 1432347 192351 bytes_in 18937375 192351 station_ip 83.123.58.237 192351 port 458 192351 unique_id port 192351 remote_ip 10.8.0.50 192354 username milan 192354 kill_reason Another user logged on this global unique id 192354 mac 192354 bytes_out 0 192354 bytes_in 0 192354 station_ip 5.119.23.34 192354 port 432 192354 unique_id port 192357 username ghaderpour6649 192357 mac 192357 bytes_out 159995 192357 bytes_in 446394 192357 station_ip 83.123.24.128 192357 port 456 192357 unique_id port 192357 remote_ip 10.8.0.130 192359 username soleymani5056 192359 mac 192359 bytes_out 155803 192359 bytes_in 384497 192359 station_ip 5.119.223.93 192359 port 461 192359 unique_id port 192359 remote_ip 10.8.0.226 192363 username meghdad1616 192363 mac 192363 bytes_out 0 192363 bytes_in 0 192363 station_ip 5.119.87.96 192363 port 456 192363 unique_id port 192363 remote_ip 10.8.0.230 192368 username alipour1506 192368 kill_reason Another user logged on this global unique id 192368 mac 192368 bytes_out 0 192368 bytes_in 0 192339 bytes_in 0 192339 station_ip 83.123.98.199 192339 port 452 192339 unique_id port 192339 remote_ip 10.8.0.206 192343 username alihosseini1 192343 mac 192343 bytes_out 1902 192343 bytes_in 3837 192343 station_ip 5.119.83.112 192343 port 452 192343 unique_id port 192343 remote_ip 10.8.0.118 192345 username akbari0070 192345 mac 192345 bytes_out 646580 192345 bytes_in 1106273 192345 station_ip 83.123.117.76 192345 port 429 192345 unique_id port 192345 remote_ip 10.8.0.166 192347 username motamedi9772 192347 mac 192347 bytes_out 63222 192347 bytes_in 264273 192347 station_ip 83.123.3.251 192347 port 459 192347 unique_id port 192347 remote_ip 10.8.0.154 192349 username akbari0070 192349 mac 192349 bytes_out 0 192349 bytes_in 0 192349 station_ip 83.123.117.76 192349 port 429 192349 unique_id port 192349 remote_ip 10.8.0.166 192356 username morteza4424 192356 mac 192356 bytes_out 0 192356 bytes_in 0 192356 station_ip 83.123.98.199 192356 port 452 192356 unique_id port 192356 remote_ip 10.8.0.206 192362 username morteza4424 192362 mac 192362 bytes_out 72043 192362 bytes_in 165168 192362 station_ip 83.123.98.199 192362 port 456 192362 unique_id port 192362 remote_ip 10.8.0.206 192364 username morteza4424 192364 mac 192364 bytes_out 0 192364 bytes_in 0 192364 station_ip 83.123.98.199 192364 port 456 192364 unique_id port 192364 remote_ip 10.8.0.206 192365 username jafari 192365 kill_reason Another user logged on this global unique id 192365 mac 192365 bytes_out 0 192365 bytes_in 0 192365 station_ip 89.32.100.188 192365 port 449 192365 unique_id port 192371 username morteza4424 192371 mac 192371 bytes_out 0 192371 bytes_in 0 192371 station_ip 83.123.98.199 192371 port 459 192371 unique_id port 192371 remote_ip 10.8.0.206 192372 username yaghobi 192372 mac 192372 bytes_out 550805 192372 bytes_in 1046242 192372 station_ip 83.123.85.156 192372 port 429 192372 unique_id port 192372 remote_ip 10.8.0.138 192379 username saeeddamghani 192379 mac 192379 bytes_out 0 192379 bytes_in 0 192379 station_ip 217.60.175.198 192379 port 462 192379 unique_id port 192379 remote_ip 10.8.0.174 192383 username morteza4424 192383 mac 192383 bytes_out 0 192383 bytes_in 0 192383 station_ip 83.123.98.199 192383 port 458 192383 unique_id port 192383 remote_ip 10.8.0.206 192386 username saeeddamghani 192386 mac 192386 bytes_out 25384 192386 bytes_in 39311 192386 station_ip 217.60.175.198 192386 port 458 192386 unique_id port 192386 remote_ip 10.8.0.174 192394 username akbari0070 192394 mac 192394 bytes_out 879058 192394 bytes_in 683808 192394 station_ip 83.123.117.76 192394 port 424 192394 unique_id port 192394 remote_ip 10.8.0.166 192395 username morteza4424 192395 mac 192395 bytes_out 0 192395 bytes_in 0 192395 station_ip 83.123.98.199 192395 port 424 192395 unique_id port 192395 remote_ip 10.8.0.206 192397 username kalantary6037 192397 mac 192397 bytes_out 429650 192397 bytes_in 4586676 192397 station_ip 83.123.108.97 192397 port 462 192397 unique_id port 192397 remote_ip 10.8.0.50 192402 username jafari 192402 kill_reason Another user logged on this global unique id 192402 mac 192402 bytes_out 0 192402 bytes_in 0 192402 station_ip 89.32.100.188 192402 port 449 192402 unique_id port 192410 username morteza4424 192410 mac 192410 bytes_out 0 192410 bytes_in 0 192410 station_ip 83.123.98.199 192410 port 468 192410 unique_id port 192410 remote_ip 10.8.0.206 192411 username akbari0070 192411 mac 192348 unique_id port 192348 remote_ip 10.8.0.230 192352 username morteza4424 192352 mac 192352 bytes_out 0 192352 bytes_in 0 192352 station_ip 83.123.98.199 192352 port 429 192352 unique_id port 192352 remote_ip 10.8.0.206 192353 username morteza4424 192353 mac 192353 bytes_out 0 192353 bytes_in 0 192353 station_ip 83.123.98.199 192353 port 429 192353 unique_id port 192353 remote_ip 10.8.0.206 192355 username morteza4424 192355 mac 192355 bytes_out 37437 192355 bytes_in 419596 192355 station_ip 83.123.98.199 192355 port 452 192355 unique_id port 192355 remote_ip 10.8.0.206 192358 username alihosseini1 192358 mac 192358 bytes_out 1948 192358 bytes_in 4671 192358 station_ip 5.119.83.112 192358 port 459 192358 unique_id port 192358 remote_ip 10.8.0.118 192360 username mosi 192360 mac 192360 bytes_out 2416724 192360 bytes_in 6175879 192360 station_ip 89.47.149.250 192360 port 458 192360 unique_id port 192360 remote_ip 10.8.0.142 192361 username meghdad1616 192361 kill_reason Maximum check online fails reached 192361 mac 192361 bytes_out 0 192361 bytes_in 0 192361 station_ip 5.119.87.96 192361 port 452 192361 unique_id port 192366 username aminvpn 192366 unique_id port 192366 terminate_cause User-Request 192366 bytes_out 2121308 192366 bytes_in 38534964 192366 station_ip 31.57.126.208 192366 port 15729255 192366 nas_port_type Virtual 192366 remote_ip 5.5.5.43 192367 username sabaghnezhad 192367 mac 192367 bytes_out 672423 192367 bytes_in 825846 192367 station_ip 83.123.85.219 192367 port 462 192367 unique_id port 192367 remote_ip 10.8.0.66 192370 username meghdad1616 192370 mac 192370 bytes_out 0 192370 bytes_in 0 192370 station_ip 5.119.87.96 192370 port 462 192370 unique_id port 192370 remote_ip 10.8.0.230 192374 username khademi 192374 kill_reason Another user logged on this global unique id 192374 mac 192374 bytes_out 0 192374 bytes_in 0 192374 station_ip 83.123.127.82 192374 port 433 192374 unique_id port 192376 username kharazmi2920 192376 mac 192376 bytes_out 78288 192376 bytes_in 97483 192376 station_ip 83.123.12.97 192376 port 458 192376 unique_id port 192376 remote_ip 10.8.0.22 192380 username morteza4424 192380 mac 192380 bytes_out 0 192380 bytes_in 0 192380 station_ip 83.123.98.199 192380 port 462 192380 unique_id port 192380 remote_ip 10.8.0.206 192387 username godarzi 192387 mac 192387 bytes_out 0 192387 bytes_in 0 192387 station_ip 45.84.157.190 192387 port 424 192387 unique_id port 192389 username morteza4424 192389 mac 192389 bytes_out 0 192389 bytes_in 0 192389 station_ip 83.123.98.199 192389 port 424 192389 unique_id port 192389 remote_ip 10.8.0.206 192391 username morteza4424 192391 mac 192391 bytes_out 0 192391 bytes_in 0 192391 station_ip 83.123.98.199 192391 port 429 192391 unique_id port 192391 remote_ip 10.8.0.206 192393 username morteza4424 192393 mac 192393 bytes_out 0 192393 bytes_in 0 192393 station_ip 83.123.98.199 192393 port 429 192393 unique_id port 192393 remote_ip 10.8.0.206 192396 username alihosseini1 192396 mac 192396 bytes_out 243789 192396 bytes_in 981482 192396 station_ip 5.119.83.112 192396 port 458 192396 unique_id port 192396 remote_ip 10.8.0.118 192399 username morteza4424 192399 mac 192399 bytes_out 0 192399 bytes_in 0 192399 station_ip 83.123.98.199 192399 port 468 192399 unique_id port 192399 remote_ip 10.8.0.206 192400 username meghdad1616 192400 mac 192400 bytes_out 3426 192400 bytes_in 5331 192400 station_ip 5.119.209.188 192368 station_ip 78.39.25.121 192368 port 455 192368 unique_id port 192369 username soleymani5056 192369 mac 192369 bytes_out 56880 192369 bytes_in 77924 192369 station_ip 5.120.140.100 192369 port 459 192369 unique_id port 192369 remote_ip 10.8.0.226 192373 username morteza4424 192373 mac 192373 bytes_out 0 192373 bytes_in 0 192373 station_ip 83.123.98.199 192373 port 459 192373 unique_id port 192373 remote_ip 10.8.0.206 192375 username morteza4424 192375 mac 192375 bytes_out 0 192375 bytes_in 0 192375 station_ip 83.123.98.199 192375 port 429 192375 unique_id port 192375 remote_ip 10.8.0.206 192377 username alihosseini1 192377 mac 192377 bytes_out 0 192377 bytes_in 0 192377 station_ip 5.119.83.112 192377 port 458 192377 unique_id port 192377 remote_ip 10.8.0.118 192378 username barzegar8595 192378 mac 192378 bytes_out 2376500 192378 bytes_in 23544911 192378 station_ip 46.225.210.44 192378 port 467 192378 unique_id port 192378 remote_ip 10.8.0.114 192381 username milan 192381 kill_reason Another user logged on this global unique id 192381 mac 192381 bytes_out 0 192381 bytes_in 0 192381 station_ip 5.119.23.34 192381 port 432 192381 unique_id port 192382 username kalantary6037 192382 mac 192382 bytes_out 360845 192382 bytes_in 2098823 192382 station_ip 83.123.108.97 192382 port 458 192382 unique_id port 192382 remote_ip 10.8.0.50 192384 username aminvpn 192384 mac 192384 bytes_out 1150172 192384 bytes_in 9614097 192384 station_ip 5.119.76.132 192384 port 429 192384 unique_id port 192384 remote_ip 10.8.0.58 192385 username alihosseini1 192385 mac 192385 bytes_out 3138 192385 bytes_in 4897 192385 station_ip 5.119.83.112 192385 port 462 192385 unique_id port 192385 remote_ip 10.8.0.118 192388 username meghdad1616 192388 mac 192388 bytes_out 0 192388 bytes_in 0 192388 station_ip 5.119.209.188 192388 port 429 192388 unique_id port 192388 remote_ip 10.8.0.230 192390 username hamid.e 192390 unique_id port 192390 terminate_cause User-Request 192390 bytes_out 4292296 192390 bytes_in 90244179 192390 station_ip 37.27.25.63 192390 port 15729254 192390 nas_port_type Virtual 192390 remote_ip 5.5.5.48 192392 username mammad 192392 unique_id port 192392 terminate_cause Lost-Carrier 192392 bytes_out 451378 192392 bytes_in 3310184 192392 station_ip 46.100.219.129 192392 port 15729257 192392 nas_port_type Virtual 192392 remote_ip 5.5.5.42 192398 username pourshad 192398 mac 192398 bytes_out 2498400 192398 bytes_in 40525098 192398 station_ip 5.119.165.65 192398 port 459 192398 unique_id port 192398 remote_ip 10.8.0.42 192404 username morteza4424 192404 mac 192404 bytes_out 0 192404 bytes_in 0 192404 station_ip 83.123.98.199 192404 port 429 192404 unique_id port 192404 remote_ip 10.8.0.206 192406 username khademi 192406 kill_reason Another user logged on this global unique id 192406 mac 192406 bytes_out 0 192406 bytes_in 0 192406 station_ip 83.123.127.82 192406 port 433 192406 unique_id port 192408 username aminvpn 192408 unique_id port 192408 terminate_cause User-Request 192408 bytes_out 161215 192408 bytes_in 635453 192408 station_ip 31.57.126.208 192408 port 15729258 192408 nas_port_type Virtual 192408 remote_ip 5.5.5.43 192409 username morteza4424 192409 mac 192409 bytes_out 0 192409 bytes_in 0 192409 station_ip 83.123.98.199 192409 port 468 192409 unique_id port 192409 remote_ip 10.8.0.206 192413 username morteza4424 192413 kill_reason Maximum check online fails reached 192413 mac 192413 bytes_out 0 192413 bytes_in 0 192413 station_ip 83.123.98.199 192413 port 459 192400 port 429 192400 unique_id port 192400 remote_ip 10.8.0.230 192401 username meghdad1616 192401 mac 192401 bytes_out 0 192401 bytes_in 0 192401 station_ip 5.119.209.188 192401 port 459 192401 unique_id port 192401 remote_ip 10.8.0.230 192403 username morteza4424 192403 mac 192403 bytes_out 0 192403 bytes_in 0 192403 station_ip 83.123.98.199 192403 port 429 192403 unique_id port 192403 remote_ip 10.8.0.206 192405 username kharazmi2920 192405 mac 192405 bytes_out 625121 192405 bytes_in 4354802 192405 station_ip 83.123.12.97 192405 port 424 192405 unique_id port 192405 remote_ip 10.8.0.22 192407 username morteza4424 192407 mac 192407 bytes_out 46953 192407 bytes_in 609725 192407 station_ip 83.123.98.199 192407 port 459 192407 unique_id port 192407 remote_ip 10.8.0.206 192414 username ayobi 192414 kill_reason Another user logged on this global unique id 192414 mac 192414 bytes_out 0 192414 bytes_in 0 192414 station_ip 37.27.14.88 192414 port 461 192414 unique_id port 192414 remote_ip 10.8.0.238 192422 username morteza4424 192422 mac 192422 bytes_out 611662 192422 bytes_in 9195480 192422 station_ip 83.123.98.199 192422 port 471 192422 unique_id port 192422 remote_ip 10.8.0.206 192424 username morteza4424 192424 mac 192424 bytes_out 0 192424 bytes_in 0 192424 station_ip 83.123.98.199 192424 port 470 192424 unique_id port 192424 remote_ip 10.8.0.206 192430 username milan 192430 mac 192430 bytes_out 0 192430 bytes_in 0 192430 station_ip 5.119.23.34 192430 port 432 192430 unique_id port 192433 username kalantary6037 192433 mac 192433 bytes_out 1418510 192433 bytes_in 14283106 192433 station_ip 83.123.41.97 192433 port 449 192433 unique_id port 192433 remote_ip 10.8.0.50 192437 username morteza4424 192437 mac 192437 bytes_out 0 192437 bytes_in 0 192437 station_ip 83.123.98.199 192437 port 432 192437 unique_id port 192437 remote_ip 10.8.0.206 192438 username morteza4424 192438 mac 192438 bytes_out 0 192438 bytes_in 0 192438 station_ip 83.123.98.199 192438 port 432 192438 unique_id port 192438 remote_ip 10.8.0.206 192442 username saeeddamghani 192442 mac 192442 bytes_out 14204 192442 bytes_in 27971 192442 station_ip 217.60.175.198 192442 port 470 192442 unique_id port 192442 remote_ip 10.8.0.174 192443 username arash 192443 mac 192443 bytes_out 3303967 192443 bytes_in 28543737 192443 station_ip 37.27.11.137 192443 port 469 192443 unique_id port 192443 remote_ip 10.8.0.250 192445 username saeeddamghani 192445 mac 192445 bytes_out 12072 192445 bytes_in 16421 192445 station_ip 217.60.175.198 192445 port 470 192445 unique_id port 192445 remote_ip 10.8.0.174 192447 username alihosseini1 192447 mac 192447 bytes_out 10592 192447 bytes_in 22383 192447 station_ip 5.120.50.48 192447 port 469 192447 unique_id port 192447 remote_ip 10.8.0.118 192448 username mohammadjavad 192448 mac 192448 bytes_out 0 192448 bytes_in 0 192448 station_ip 83.123.32.242 192448 port 470 192448 unique_id port 192448 remote_ip 10.8.0.110 192450 username motamedi9772 192450 mac 192450 bytes_out 544833 192450 bytes_in 7759765 192450 station_ip 83.123.20.139 192450 port 432 192450 unique_id port 192450 remote_ip 10.8.0.154 192451 username yaghobi 192451 mac 192451 bytes_out 1023937 192451 bytes_in 6360234 192451 station_ip 83.123.20.27 192451 port 449 192451 unique_id port 192451 remote_ip 10.8.0.138 192453 username alikomsari 192453 mac 192453 bytes_out 4947213 192453 bytes_in 39672358 192453 station_ip 5.120.40.90 192411 bytes_out 477459 192411 bytes_in 3517194 192411 station_ip 83.123.117.76 192411 port 429 192411 unique_id port 192411 remote_ip 10.8.0.166 192412 username morteza4424 192412 mac 192412 bytes_out 0 192412 bytes_in 0 192412 station_ip 83.123.98.199 192412 port 429 192412 unique_id port 192412 remote_ip 10.8.0.206 192416 username morteza4424 192416 kill_reason Maximum check online fails reached 192416 mac 192416 bytes_out 0 192416 bytes_in 0 192416 station_ip 83.123.98.199 192416 port 429 192416 unique_id port 192419 username saeeddamghani 192419 mac 192419 bytes_out 57036 192419 bytes_in 268175 192419 station_ip 217.60.175.198 192419 port 458 192419 unique_id port 192419 remote_ip 10.8.0.174 192420 username jafari 192420 mac 192420 bytes_out 0 192420 bytes_in 0 192420 station_ip 89.32.100.188 192420 port 449 192420 unique_id port 192421 username yaghobi 192421 mac 192421 bytes_out 210192 192421 bytes_in 505573 192421 station_ip 83.123.84.26 192421 port 470 192421 unique_id port 192421 remote_ip 10.8.0.138 192425 username saeed9658 192425 mac 192425 bytes_out 0 192425 bytes_in 0 192425 station_ip 5.119.62.216 192425 port 424 192425 unique_id port 192425 remote_ip 10.8.0.162 192427 username meghdad1616 192427 mac 192427 bytes_out 0 192427 bytes_in 0 192427 station_ip 5.119.209.188 192427 port 470 192427 unique_id port 192427 remote_ip 10.8.0.230 192429 username aminvpn 192429 unique_id port 192429 terminate_cause User-Request 192429 bytes_out 21961916 192429 bytes_in 80790475 192429 station_ip 5.119.205.93 192429 port 15729251 192429 nas_port_type Virtual 192429 remote_ip 5.5.5.66 192431 username morteza4424 192431 mac 192431 bytes_out 0 192431 bytes_in 0 192431 station_ip 83.123.98.199 192431 port 424 192431 unique_id port 192431 remote_ip 10.8.0.206 192432 username yaghobi 192432 mac 192432 bytes_out 347211 192432 bytes_in 556028 192432 station_ip 83.123.84.26 192432 port 472 192432 unique_id port 192432 remote_ip 10.8.0.138 192435 username godarzi 192435 kill_reason Another user logged on this global unique id 192435 mac 192435 bytes_out 0 192435 bytes_in 0 192435 station_ip 45.84.157.190 192435 port 467 192435 unique_id port 192435 remote_ip 10.8.0.38 192439 username meghdad1616 192439 mac 192439 bytes_out 3736 192439 bytes_in 5955 192439 station_ip 5.119.209.188 192439 port 449 192439 unique_id port 192439 remote_ip 10.8.0.230 192441 username yaghobi 192441 mac 192441 bytes_out 520433 192441 bytes_in 4715031 192441 station_ip 83.123.84.26 192441 port 424 192441 unique_id port 192441 remote_ip 10.8.0.138 192444 username ghaderpour6649 192444 mac 192444 bytes_out 202730 192444 bytes_in 1125771 192444 station_ip 83.123.93.58 192444 port 424 192444 unique_id port 192444 remote_ip 10.8.0.130 192446 username ayobi 192446 kill_reason Another user logged on this global unique id 192446 mac 192446 bytes_out 0 192446 bytes_in 0 192446 station_ip 37.27.14.88 192446 port 461 192446 unique_id port 192449 username saeeddamghani 192449 mac 192449 bytes_out 8807 192449 bytes_in 11168 192449 station_ip 217.60.175.198 192449 port 424 192449 unique_id port 192449 remote_ip 10.8.0.174 192456 username saeed9658 192456 mac 192456 bytes_out 2411060 192456 bytes_in 20293793 192456 station_ip 5.119.176.177 192456 port 471 192456 unique_id port 192456 remote_ip 10.8.0.162 192457 username meghdad1616 192457 mac 192457 bytes_out 0 192457 bytes_in 0 192457 station_ip 5.119.209.188 192457 port 449 192457 unique_id port 192413 unique_id port 192415 username meghdad1616 192415 mac 192415 bytes_out 0 192415 bytes_in 0 192415 station_ip 5.119.209.188 192415 port 470 192415 unique_id port 192415 remote_ip 10.8.0.230 192417 username alihosseini1 192417 mac 192417 bytes_out 544425 192417 bytes_in 3445512 192417 station_ip 5.119.83.112 192417 port 458 192417 unique_id port 192417 remote_ip 10.8.0.118 192418 username milan 192418 kill_reason Another user logged on this global unique id 192418 mac 192418 bytes_out 0 192418 bytes_in 0 192418 station_ip 5.119.23.34 192418 port 432 192418 unique_id port 192423 username majidsarmast 192423 mac 192423 bytes_out 3033740 192423 bytes_in 40992056 192423 station_ip 86.57.14.127 192423 port 424 192423 unique_id port 192423 remote_ip 10.8.0.146 192426 username ayobi 192426 kill_reason Another user logged on this global unique id 192426 mac 192426 bytes_out 0 192426 bytes_in 0 192426 station_ip 37.27.14.88 192426 port 461 192426 unique_id port 192428 username hosseine 192428 kill_reason Another user logged on this global unique id 192428 mac 192428 bytes_out 0 192428 bytes_in 0 192428 station_ip 83.123.109.117 192428 port 448 192428 unique_id port 192428 remote_ip 10.8.0.54 192434 username morteza4424 192434 mac 192434 bytes_out 0 192434 bytes_in 0 192434 station_ip 83.123.98.199 192434 port 449 192434 unique_id port 192434 remote_ip 10.8.0.206 192436 username saeeddamghani 192436 mac 192436 bytes_out 14920 192436 bytes_in 17625 192436 station_ip 217.60.175.198 192436 port 432 192436 unique_id port 192436 remote_ip 10.8.0.174 192440 username alihosseini1 192440 mac 192440 bytes_out 827050 192440 bytes_in 3480245 192440 station_ip 5.120.50.48 192440 port 458 192440 unique_id port 192440 remote_ip 10.8.0.118 192452 username yaghobi 192452 mac 192452 bytes_out 38912 192452 bytes_in 112004 192452 station_ip 83.123.20.27 192452 port 424 192452 unique_id port 192452 remote_ip 10.8.0.138 192455 username meghdad1616 192455 mac 192455 bytes_out 16774 192455 bytes_in 26265 192455 station_ip 5.119.209.188 192455 port 424 192455 unique_id port 192455 remote_ip 10.8.0.230 192459 username meghdad1616 192459 kill_reason Maximum check online fails reached 192459 mac 192459 bytes_out 0 192459 bytes_in 0 192459 station_ip 5.119.209.188 192459 port 424 192459 unique_id port 192461 username fezealinaghi 192461 mac 192461 bytes_out 1587990 192461 bytes_in 14749777 192461 station_ip 83.123.52.73 192461 port 449 192461 unique_id port 192461 remote_ip 10.8.0.202 192464 username fezealinaghi 192464 mac 192464 bytes_out 259921 192464 bytes_in 1821148 192464 station_ip 83.123.52.73 192464 port 469 192464 unique_id port 192464 remote_ip 10.8.0.202 192466 username meghdad1616 192466 kill_reason Maximum check online fails reached 192466 mac 192466 bytes_out 0 192466 bytes_in 0 192466 station_ip 5.119.209.188 192466 port 456 192466 unique_id port 192473 username saeed9658 192473 mac 192473 bytes_out 0 192473 bytes_in 0 192473 station_ip 5.119.176.177 192473 port 471 192473 unique_id port 192473 remote_ip 10.8.0.162 192476 username kalantary6037 192476 mac 192476 bytes_out 277442 192476 bytes_in 2273417 192476 station_ip 83.123.54.181 192476 port 448 192476 unique_id port 192476 remote_ip 10.8.0.50 192478 username mosi 192478 kill_reason Another user logged on this global unique id 192478 mac 192478 bytes_out 0 192478 bytes_in 0 192478 station_ip 151.235.79.93 192478 port 458 192478 unique_id port 192478 remote_ip 10.8.0.142 192480 username shahruz 192480 mac 192453 port 456 192453 unique_id port 192453 remote_ip 10.8.0.214 192454 username kalantary6037 192454 mac 192454 bytes_out 1789066 192454 bytes_in 22817066 192454 station_ip 83.123.100.105 192454 port 469 192454 unique_id port 192454 remote_ip 10.8.0.50 192458 username saeed9658 192458 mac 192458 bytes_out 5421 192458 bytes_in 12990 192458 station_ip 5.119.176.177 192458 port 424 192458 unique_id port 192458 remote_ip 10.8.0.162 192463 username meghdad1616 192463 mac 192463 bytes_out 0 192463 bytes_in 0 192463 station_ip 5.119.209.188 192463 port 456 192463 unique_id port 192463 remote_ip 10.8.0.230 192465 username hosseine 192465 kill_reason Another user logged on this global unique id 192465 mac 192465 bytes_out 0 192465 bytes_in 0 192465 station_ip 83.123.109.117 192465 port 448 192465 unique_id port 192467 username akbari0070 192467 mac 192467 bytes_out 7511481 192467 bytes_in 16259490 192467 station_ip 83.123.117.76 192467 port 468 192467 unique_id port 192467 remote_ip 10.8.0.166 192469 username pourshad 192469 kill_reason Another user logged on this global unique id 192469 mac 192469 bytes_out 0 192469 bytes_in 0 192469 station_ip 5.119.165.65 192469 port 462 192469 unique_id port 192469 remote_ip 10.8.0.42 192470 username saeed9658 192470 kill_reason Maximum check online fails reached 192470 mac 192470 bytes_out 0 192470 bytes_in 0 192470 station_ip 5.119.176.177 192470 port 468 192470 unique_id port 192472 username meghdad1616 192472 mac 192472 bytes_out 0 192472 bytes_in 0 192472 station_ip 5.119.209.188 192472 port 471 192472 unique_id port 192472 remote_ip 10.8.0.230 192474 username hosseine 192474 mac 192474 bytes_out 0 192474 bytes_in 0 192474 station_ip 83.123.109.117 192474 port 448 192474 unique_id port 192481 username farhad3 192481 mac 192481 bytes_out 4376002 192481 bytes_in 28047945 192481 station_ip 5.120.158.144 192481 port 432 192481 unique_id port 192481 remote_ip 10.8.0.222 192485 username shahruz 192485 mac 192485 bytes_out 0 192485 bytes_in 0 192485 station_ip 83.123.73.56 192485 port 473 192485 unique_id port 192485 remote_ip 10.8.0.74 192486 username soleymani5056 192486 mac 192486 bytes_out 44662 192486 bytes_in 156558 192486 station_ip 5.120.4.3 192486 port 472 192486 unique_id port 192486 remote_ip 10.8.0.226 192488 username farhad3 192488 mac 192488 bytes_out 390550 192488 bytes_in 1540510 192488 station_ip 5.120.158.144 192488 port 470 192488 unique_id port 192488 remote_ip 10.8.0.222 192489 username morteza4424 192489 mac 192489 bytes_out 0 192489 bytes_in 0 192489 station_ip 83.123.98.199 192489 port 449 192489 unique_id port 192491 username shahruz 192491 mac 192491 bytes_out 58212 192491 bytes_in 842851 192491 station_ip 83.123.73.56 192491 port 473 192491 unique_id port 192491 remote_ip 10.8.0.74 192499 username shahruz 192499 mac 192499 bytes_out 14831 192499 bytes_in 42221 192499 station_ip 83.123.73.56 192499 port 449 192499 unique_id port 192499 remote_ip 10.8.0.74 192503 username shahruz 192503 kill_reason Maximum check online fails reached 192503 mac 192503 bytes_out 0 192503 bytes_in 0 192503 station_ip 83.123.73.56 192503 port 470 192503 unique_id port 192510 username ahmadi1 192510 mac 192510 bytes_out 113446 192510 bytes_in 876128 192510 station_ip 83.123.21.254 192510 port 473 192510 unique_id port 192510 remote_ip 10.8.0.94 192511 username motamedi9772 192511 mac 192511 bytes_out 23118 192511 bytes_in 35447 192511 station_ip 83.123.17.227 192457 remote_ip 10.8.0.230 192460 username saeed9658 192460 mac 192460 bytes_out 0 192460 bytes_in 0 192460 station_ip 5.119.176.177 192460 port 456 192460 unique_id port 192460 remote_ip 10.8.0.162 192462 username ayobi 192462 kill_reason Another user logged on this global unique id 192462 mac 192462 bytes_out 0 192462 bytes_in 0 192462 station_ip 37.27.14.88 192462 port 461 192462 unique_id port 192468 username saeed9658 192468 mac 192468 bytes_out 0 192468 bytes_in 0 192468 station_ip 5.119.176.177 192468 port 469 192468 unique_id port 192468 remote_ip 10.8.0.162 192471 username khademi 192471 kill_reason Another user logged on this global unique id 192471 mac 192471 bytes_out 0 192471 bytes_in 0 192471 station_ip 83.123.127.82 192471 port 433 192471 unique_id port 192475 username kharazmi2920 192475 mac 192475 bytes_out 1009866 192475 bytes_in 9504707 192475 station_ip 83.123.12.97 192475 port 469 192475 unique_id port 192475 remote_ip 10.8.0.22 192477 username akbari0070 192477 mac 192477 bytes_out 1544251 192477 bytes_in 12913594 192477 station_ip 83.123.117.76 192477 port 470 192477 unique_id port 192477 remote_ip 10.8.0.166 192479 username malekpoir 192479 kill_reason Another user logged on this global unique id 192479 mac 192479 bytes_out 0 192479 bytes_in 0 192479 station_ip 5.119.87.128 192479 port 435 192479 unique_id port 192479 remote_ip 10.8.0.18 192482 username morteza4424 192482 kill_reason Another user logged on this global unique id 192482 mac 192482 bytes_out 0 192482 bytes_in 0 192482 station_ip 83.123.98.199 192482 port 449 192482 unique_id port 192482 remote_ip 10.8.0.206 192483 username saeed9658 192483 mac 192483 bytes_out 4200485 192483 bytes_in 969812 192483 station_ip 5.119.176.177 192483 port 471 192483 unique_id port 192483 remote_ip 10.8.0.162 192484 username soleymani5056 192484 kill_reason Maximum check online fails reached 192484 mac 192484 bytes_out 0 192484 bytes_in 0 192484 station_ip 5.120.4.3 192484 port 432 192484 unique_id port 192487 username aminvpn 192487 unique_id port 192487 terminate_cause Lost-Carrier 192487 bytes_out 10927999 192487 bytes_in 368461376 192487 station_ip 31.57.126.208 192487 port 15729263 192487 nas_port_type Virtual 192487 remote_ip 5.5.5.43 192494 username pourshad 192494 mac 192494 bytes_out 0 192494 bytes_in 0 192494 station_ip 5.119.165.65 192494 port 462 192494 unique_id port 192498 username farhad3 192498 mac 192498 bytes_out 439657 192498 bytes_in 3778201 192498 station_ip 5.120.158.144 192498 port 470 192498 unique_id port 192498 remote_ip 10.8.0.222 192501 username morteza4424 192501 kill_reason Another user logged on this global unique id 192501 mac 192501 bytes_out 0 192501 bytes_in 0 192501 station_ip 83.123.98.199 192501 port 462 192501 unique_id port 192501 remote_ip 10.8.0.206 192504 username shahruz 192504 kill_reason Maximum check online fails reached 192504 mac 192504 bytes_out 0 192504 bytes_in 0 192504 station_ip 83.123.73.56 192504 port 449 192504 unique_id port 192505 username ghaderpour6649 192505 mac 192505 bytes_out 29991 192505 bytes_in 93743 192505 station_ip 83.123.93.96 192505 port 473 192505 unique_id port 192505 remote_ip 10.8.0.130 192507 username godarzi 192507 mac 192507 bytes_out 0 192507 bytes_in 0 192507 station_ip 45.84.157.190 192507 port 467 192507 unique_id port 192509 username yaghobi 192509 mac 192509 bytes_out 2303815 192509 bytes_in 25266931 192509 station_ip 83.123.56.163 192509 port 469 192509 unique_id port 192509 remote_ip 10.8.0.138 192519 username motamedi9772 192480 bytes_out 356298 192480 bytes_in 822865 192480 station_ip 83.123.73.56 192480 port 472 192480 unique_id port 192480 remote_ip 10.8.0.74 192490 username farhad3 192490 mac 192490 bytes_out 0 192490 bytes_in 0 192490 station_ip 5.120.158.144 192490 port 470 192490 unique_id port 192490 remote_ip 10.8.0.222 192492 username morteza4424 192492 mac 192492 bytes_out 0 192492 bytes_in 0 192492 station_ip 83.123.98.199 192492 port 449 192492 unique_id port 192492 remote_ip 10.8.0.206 192493 username morteza4424 192493 mac 192493 bytes_out 0 192493 bytes_in 0 192493 station_ip 83.123.98.199 192493 port 449 192493 unique_id port 192493 remote_ip 10.8.0.206 192495 username mosi 192495 kill_reason Another user logged on this global unique id 192495 mac 192495 bytes_out 0 192495 bytes_in 0 192495 station_ip 151.235.79.93 192495 port 458 192495 unique_id port 192496 username khademi 192496 kill_reason Another user logged on this global unique id 192496 mac 192496 bytes_out 0 192496 bytes_in 0 192496 station_ip 83.123.127.82 192496 port 433 192496 unique_id port 192497 username malekpoir 192497 mac 192497 bytes_out 0 192497 bytes_in 0 192497 station_ip 5.119.87.128 192497 port 435 192497 unique_id port 192500 username shahruz 192500 mac 192500 bytes_out 0 192500 bytes_in 0 192500 station_ip 83.123.73.56 192500 port 449 192500 unique_id port 192500 remote_ip 10.8.0.74 192502 username shahruz 192502 kill_reason Maximum number of concurrent logins reached 192502 mac 192502 bytes_out 0 192502 bytes_in 0 192502 station_ip 83.123.73.56 192502 port 472 192502 unique_id port 192506 username mammad 192506 unique_id port 192506 terminate_cause User-Request 192506 bytes_out 6067005 192506 bytes_in 135488174 192506 station_ip 5.233.64.20 192506 port 15729259 192506 nas_port_type Virtual 192506 remote_ip 5.5.5.41 192508 username motamedi9772 192508 mac 192508 bytes_out 1742504 192508 bytes_in 15285042 192508 station_ip 83.123.17.227 192508 port 448 192508 unique_id port 192508 remote_ip 10.8.0.154 192512 username morteza4424 192512 mac 192512 bytes_out 0 192512 bytes_in 0 192512 station_ip 83.123.98.199 192512 port 462 192512 unique_id port 192513 username motamedi9772 192513 mac 192513 bytes_out 0 192513 bytes_in 0 192513 station_ip 83.123.17.227 192513 port 467 192513 unique_id port 192513 remote_ip 10.8.0.154 192516 username motamedi9772 192516 mac 192516 bytes_out 0 192516 bytes_in 0 192516 station_ip 83.123.17.227 192516 port 467 192516 unique_id port 192516 remote_ip 10.8.0.154 192517 username aminvpn 192517 mac 192517 bytes_out 839976 192517 bytes_in 7135341 192517 station_ip 83.123.49.89 192517 port 471 192517 unique_id port 192517 remote_ip 10.8.0.58 192522 username motamedi9772 192522 mac 192522 bytes_out 0 192522 bytes_in 0 192522 station_ip 83.123.17.227 192522 port 448 192522 unique_id port 192522 remote_ip 10.8.0.154 192528 username motamedi9772 192528 mac 192528 bytes_out 0 192528 bytes_in 0 192528 station_ip 83.123.17.227 192528 port 448 192528 unique_id port 192528 remote_ip 10.8.0.154 192532 username motamedi9772 192532 mac 192532 bytes_out 0 192532 bytes_in 0 192532 station_ip 83.123.17.227 192532 port 433 192532 unique_id port 192532 remote_ip 10.8.0.154 192533 username motamedi9772 192533 mac 192533 bytes_out 0 192533 bytes_in 0 192533 station_ip 83.123.17.227 192533 port 433 192533 unique_id port 192533 remote_ip 10.8.0.154 192537 username motamedi9772 192537 mac 192537 bytes_out 13294 192511 port 467 192511 unique_id port 192511 remote_ip 10.8.0.154 192514 username mosi 192514 kill_reason Another user logged on this global unique id 192514 mac 192514 bytes_out 0 192514 bytes_in 0 192514 station_ip 151.235.79.93 192514 port 458 192514 unique_id port 192515 username motamedi9772 192515 mac 192515 bytes_out 0 192515 bytes_in 0 192515 station_ip 83.123.17.227 192515 port 467 192515 unique_id port 192515 remote_ip 10.8.0.154 192518 username yaghobi 192518 mac 192518 bytes_out 338670 192518 bytes_in 1665955 192518 station_ip 83.123.56.163 192518 port 448 192518 unique_id port 192518 remote_ip 10.8.0.138 192521 username motamedi9772 192521 mac 192521 bytes_out 0 192521 bytes_in 0 192521 station_ip 83.123.17.227 192521 port 448 192521 unique_id port 192521 remote_ip 10.8.0.154 192523 username motamedi9772 192523 mac 192523 bytes_out 0 192523 bytes_in 0 192523 station_ip 83.123.17.227 192523 port 448 192523 unique_id port 192523 remote_ip 10.8.0.154 192524 username saeeddamghani 192524 mac 192524 bytes_out 745173 192524 bytes_in 10282193 192524 station_ip 5.119.174.126 192524 port 462 192524 unique_id port 192524 remote_ip 10.8.0.174 192527 username khademi 192527 mac 192527 bytes_out 0 192527 bytes_in 0 192527 station_ip 83.123.127.82 192527 port 433 192527 unique_id port 192530 username motamedi9772 192530 mac 192530 bytes_out 0 192530 bytes_in 0 192530 station_ip 83.123.17.227 192530 port 433 192530 unique_id port 192530 remote_ip 10.8.0.154 192531 username motamedi9772 192531 mac 192531 bytes_out 0 192531 bytes_in 0 192531 station_ip 83.123.17.227 192531 port 433 192531 unique_id port 192531 remote_ip 10.8.0.154 192534 username ayobi 192534 mac 192534 bytes_out 0 192534 bytes_in 0 192534 station_ip 37.27.14.88 192534 port 461 192534 unique_id port 192535 username motamedi9772 192535 mac 192535 bytes_out 0 192535 bytes_in 0 192535 station_ip 83.123.17.227 192535 port 433 192535 unique_id port 192535 remote_ip 10.8.0.154 192536 username motamedi9772 192536 mac 192536 bytes_out 0 192536 bytes_in 0 192536 station_ip 83.123.17.227 192536 port 433 192536 unique_id port 192536 remote_ip 10.8.0.154 192540 username farhad3 192540 mac 192540 bytes_out 0 192540 bytes_in 0 192540 station_ip 5.120.158.144 192540 port 472 192540 unique_id port 192541 username motamedi9772 192541 mac 192541 bytes_out 0 192541 bytes_in 0 192541 station_ip 83.123.17.227 192541 port 433 192541 unique_id port 192541 remote_ip 10.8.0.154 192547 username motamedi9772 192547 mac 192547 bytes_out 0 192547 bytes_in 0 192547 station_ip 83.123.17.227 192547 port 462 192547 unique_id port 192547 remote_ip 10.8.0.154 192548 username motamedi9772 192548 mac 192548 bytes_out 0 192548 bytes_in 0 192548 station_ip 83.123.17.227 192548 port 435 192548 unique_id port 192548 remote_ip 10.8.0.154 192549 username motamedi9772 192549 mac 192549 bytes_out 0 192549 bytes_in 0 192549 station_ip 83.123.17.227 192549 port 435 192549 unique_id port 192549 remote_ip 10.8.0.154 192551 username farhad3 192551 mac 192551 bytes_out 360918 192551 bytes_in 1200148 192551 station_ip 5.120.158.144 192551 port 433 192551 unique_id port 192551 remote_ip 10.8.0.222 192553 username farhad3 192553 mac 192553 bytes_out 0 192553 bytes_in 0 192553 station_ip 5.120.158.144 192553 port 433 192553 unique_id port 192553 remote_ip 10.8.0.222 192556 username aminvpn 192519 mac 192519 bytes_out 6104 192519 bytes_in 12456 192519 station_ip 83.123.17.227 192519 port 471 192519 unique_id port 192519 remote_ip 10.8.0.154 192520 username motamedi9772 192520 mac 192520 bytes_out 0 192520 bytes_in 0 192520 station_ip 83.123.17.227 192520 port 448 192520 unique_id port 192520 remote_ip 10.8.0.154 192525 username motamedi9772 192525 mac 192525 bytes_out 0 192525 bytes_in 0 192525 station_ip 83.123.17.227 192525 port 448 192525 unique_id port 192525 remote_ip 10.8.0.154 192526 username godarzi 192526 mac 192526 bytes_out 0 192526 bytes_in 0 192526 station_ip 45.84.157.190 192526 port 448 192526 unique_id port 192526 remote_ip 10.8.0.38 192529 username farhad3 192529 kill_reason Another user logged on this global unique id 192529 mac 192529 bytes_out 0 192529 bytes_in 0 192529 station_ip 5.120.158.144 192529 port 472 192529 unique_id port 192529 remote_ip 10.8.0.222 192539 username motamedi9772 192539 mac 192539 bytes_out 0 192539 bytes_in 0 192539 station_ip 83.123.17.227 192539 port 433 192539 unique_id port 192539 remote_ip 10.8.0.154 192544 username motamedi9772 192544 mac 192544 bytes_out 0 192544 bytes_in 0 192544 station_ip 83.123.17.227 192544 port 462 192544 unique_id port 192544 remote_ip 10.8.0.154 192554 username motamedi9772 192554 mac 192554 bytes_out 0 192554 bytes_in 0 192554 station_ip 83.123.17.227 192554 port 433 192554 unique_id port 192554 remote_ip 10.8.0.154 192555 username fezealinaghi 192555 mac 192555 bytes_out 881810 192555 bytes_in 9940184 192555 station_ip 83.123.101.241 192555 port 473 192555 unique_id port 192555 remote_ip 10.8.0.202 192558 username nilufarrajaei 192558 kill_reason Another user logged on this global unique id 192558 mac 192558 bytes_out 0 192558 bytes_in 0 192558 station_ip 83.123.96.93 192558 port 438 192558 unique_id port 192558 remote_ip 10.8.0.194 192559 username kamali3 192559 mac 192559 bytes_out 1416410 192559 bytes_in 16158713 192559 station_ip 83.123.45.140 192559 port 472 192559 unique_id port 192559 remote_ip 10.8.0.150 192561 username yaghobi 192561 mac 192561 bytes_out 853317 192561 bytes_in 1869361 192561 station_ip 83.123.56.163 192561 port 474 192561 unique_id port 192561 remote_ip 10.8.0.138 192562 username naeimeh 192562 mac 192562 bytes_out 2377 192562 bytes_in 3824 192562 station_ip 83.123.73.241 192562 port 476 192562 unique_id port 192562 remote_ip 10.8.0.78 192564 username meghdad1616 192564 mac 192564 bytes_out 0 192564 bytes_in 0 192564 station_ip 5.119.209.188 192564 port 474 192564 unique_id port 192564 remote_ip 10.8.0.230 192566 username naeimeh 192566 mac 192566 bytes_out 237064 192566 bytes_in 1149399 192566 station_ip 83.123.16.246 192566 port 472 192566 unique_id port 192566 remote_ip 10.8.0.78 192569 username aminvpn 192569 unique_id port 192569 terminate_cause Lost-Carrier 192569 bytes_out 530724 192569 bytes_in 3303137 192569 station_ip 5.119.205.93 192569 port 15729266 192569 nas_port_type Virtual 192569 remote_ip 5.5.5.63 192572 username soleymani5056 192572 mac 192572 bytes_out 141748 192572 bytes_in 1819814 192572 station_ip 5.120.146.203 192572 port 433 192572 unique_id port 192572 remote_ip 10.8.0.226 192575 username alipour1506 192575 kill_reason Another user logged on this global unique id 192575 mac 192575 bytes_out 0 192575 bytes_in 0 192575 station_ip 78.39.25.121 192575 port 455 192575 unique_id port 192576 username meghdad1616 192576 mac 192576 bytes_out 0 192576 bytes_in 0 192537 bytes_in 24534 192537 station_ip 83.123.17.227 192537 port 433 192537 unique_id port 192537 remote_ip 10.8.0.154 192538 username motamedi9772 192538 mac 192538 bytes_out 0 192538 bytes_in 0 192538 station_ip 83.123.17.227 192538 port 433 192538 unique_id port 192538 remote_ip 10.8.0.154 192542 username motamedi9772 192542 mac 192542 bytes_out 0 192542 bytes_in 0 192542 station_ip 83.123.17.227 192542 port 433 192542 unique_id port 192542 remote_ip 10.8.0.154 192543 username motamedi9772 192543 mac 192543 bytes_out 0 192543 bytes_in 0 192543 station_ip 83.123.17.227 192543 port 433 192543 unique_id port 192543 remote_ip 10.8.0.154 192545 username motamedi9772 192545 mac 192545 bytes_out 0 192545 bytes_in 0 192545 station_ip 83.123.17.227 192545 port 462 192545 unique_id port 192545 remote_ip 10.8.0.154 192546 username meghdad1616 192546 mac 192546 bytes_out 303877 192546 bytes_in 2843475 192546 station_ip 5.119.209.188 192546 port 435 192546 unique_id port 192546 remote_ip 10.8.0.230 192550 username aminvpn 192550 unique_id port 192550 terminate_cause User-Request 192550 bytes_out 25203313 192550 bytes_in 642013332 192550 station_ip 5.119.205.93 192550 port 15729260 192550 nas_port_type Virtual 192550 remote_ip 5.5.5.66 192552 username motamedi9772 192552 mac 192552 bytes_out 0 192552 bytes_in 0 192552 station_ip 83.123.17.227 192552 port 435 192552 unique_id port 192552 remote_ip 10.8.0.154 192560 username naeimeh 192560 mac 192560 bytes_out 782319 192560 bytes_in 8089929 192560 station_ip 83.123.16.246 192560 port 475 192560 unique_id port 192560 remote_ip 10.8.0.78 192563 username sekonji0496 192563 mac 192563 bytes_out 2016 192563 bytes_in 4244 192563 station_ip 83.123.98.90 192563 port 472 192563 unique_id port 192563 remote_ip 10.8.0.62 192567 username yazdani6029 192567 mac 192567 bytes_out 2478668 192567 bytes_in 25528552 192567 station_ip 83.123.63.55 192567 port 473 192567 unique_id port 192567 remote_ip 10.8.0.234 192568 username motamedi9772 192568 mac 192568 bytes_out 2347275 192568 bytes_in 22514236 192568 station_ip 83.123.17.227 192568 port 433 192568 unique_id port 192568 remote_ip 10.8.0.154 192574 username farhad3 192574 kill_reason Another user logged on this global unique id 192574 mac 192574 bytes_out 0 192574 bytes_in 0 192574 station_ip 5.120.158.144 192574 port 435 192574 unique_id port 192574 remote_ip 10.8.0.222 192577 username akbari0070 192577 kill_reason Another user logged on this global unique id 192577 mac 192577 bytes_out 0 192577 bytes_in 0 192577 station_ip 83.123.64.116 192577 port 469 192577 unique_id port 192577 remote_ip 10.8.0.166 192579 username farhad3 192579 mac 192579 bytes_out 0 192579 bytes_in 0 192579 station_ip 5.120.158.144 192579 port 435 192579 unique_id port 192582 username motamedi9772 192582 kill_reason Another user logged on this global unique id 192582 mac 192582 bytes_out 0 192582 bytes_in 0 192582 station_ip 83.123.17.227 192582 port 472 192582 unique_id port 192582 remote_ip 10.8.0.154 192587 username meghdad1616 192587 mac 192587 bytes_out 0 192587 bytes_in 0 192587 station_ip 5.119.209.188 192587 port 461 192587 unique_id port 192587 remote_ip 10.8.0.230 192588 username nilufarrajaei 192588 mac 192588 bytes_out 0 192588 bytes_in 0 192588 station_ip 83.123.96.93 192588 port 438 192588 unique_id port 192591 username meghdad1616 192591 mac 192591 bytes_out 0 192591 bytes_in 0 192591 station_ip 5.119.209.188 192591 port 438 192591 unique_id port 192556 unique_id port 192556 terminate_cause Lost-Carrier 192556 bytes_out 1060630 192556 bytes_in 15852658 192556 station_ip 5.119.205.93 192556 port 15729264 192556 nas_port_type Virtual 192556 remote_ip 5.5.5.63 192557 username sekonji0496 192557 mac 192557 bytes_out 594243 192557 bytes_in 6005532 192557 station_ip 83.123.98.90 192557 port 461 192557 unique_id port 192557 remote_ip 10.8.0.62 192565 username meghdad1616 192565 mac 192565 bytes_out 0 192565 bytes_in 0 192565 station_ip 5.119.209.188 192565 port 474 192565 unique_id port 192565 remote_ip 10.8.0.230 192570 username naeimeh 192570 mac 192570 bytes_out 298456 192570 bytes_in 3349938 192570 station_ip 83.123.16.246 192570 port 474 192570 unique_id port 192570 remote_ip 10.8.0.78 192571 username meghdad1616 192571 mac 192571 bytes_out 0 192571 bytes_in 0 192571 station_ip 5.119.209.188 192571 port 473 192571 unique_id port 192571 remote_ip 10.8.0.230 192573 username yaghobi 192573 mac 192573 bytes_out 1841681 192573 bytes_in 20122740 192573 station_ip 83.123.56.163 192573 port 475 192573 unique_id port 192573 remote_ip 10.8.0.138 192581 username farhad3 192581 mac 192581 bytes_out 133228 192581 bytes_in 913932 192581 station_ip 5.120.30.237 192581 port 467 192581 unique_id port 192581 remote_ip 10.8.0.222 192584 username mosi 192584 kill_reason Another user logged on this global unique id 192584 mac 192584 bytes_out 0 192584 bytes_in 0 192584 station_ip 151.235.79.93 192584 port 458 192584 unique_id port 192586 username rahim 192586 mac 192586 bytes_out 2947071 192586 bytes_in 14821113 192586 station_ip 5.119.97.228 192586 port 461 192586 unique_id port 192586 remote_ip 10.8.0.134 192589 username zahra1101 192589 mac 192589 bytes_out 527498 192589 bytes_in 3068157 192589 station_ip 5.120.110.30 192589 port 461 192589 unique_id port 192589 remote_ip 10.8.0.30 192592 username khademi 192592 mac 192592 bytes_out 821061 192592 bytes_in 9087734 192592 station_ip 83.123.127.82 192592 port 448 192592 unique_id port 192592 remote_ip 10.8.0.14 192593 username farhad3 192593 kill_reason Another user logged on this global unique id 192593 mac 192593 bytes_out 0 192593 bytes_in 0 192593 station_ip 5.120.30.237 192593 port 467 192593 unique_id port 192594 username alikomsari 192594 mac 192594 bytes_out 2931886 192594 bytes_in 25426823 192594 station_ip 5.120.40.90 192594 port 435 192594 unique_id port 192594 remote_ip 10.8.0.214 192595 username akbari0070 192595 kill_reason Another user logged on this global unique id 192595 mac 192595 bytes_out 0 192595 bytes_in 0 192595 station_ip 83.123.64.116 192595 port 469 192595 unique_id port 192597 username akbari0070 192597 mac 192597 bytes_out 0 192597 bytes_in 0 192597 station_ip 83.123.64.116 192597 port 469 192597 unique_id port 192600 username meghdad1616 192600 mac 192600 bytes_out 0 192600 bytes_in 0 192600 station_ip 5.119.209.188 192600 port 467 192600 unique_id port 192600 remote_ip 10.8.0.230 192602 username motamedi9772 192602 kill_reason Another user logged on this global unique id 192602 mac 192602 bytes_out 0 192602 bytes_in 0 192602 station_ip 83.123.17.227 192602 port 472 192602 unique_id port 192603 username naeimeh 192603 mac 192603 bytes_out 0 192603 bytes_in 0 192603 station_ip 83.123.34.134 192603 port 469 192603 unique_id port 192603 remote_ip 10.8.0.78 192605 username naeimeh 192605 mac 192605 bytes_out 10976 192605 bytes_in 18544 192605 station_ip 83.123.34.134 192605 port 471 192605 unique_id port 192576 station_ip 5.119.209.188 192576 port 473 192576 unique_id port 192576 remote_ip 10.8.0.230 192578 username aminvpn 192578 mac 192578 bytes_out 2102102 192578 bytes_in 22289800 192578 station_ip 83.123.49.89 192578 port 467 192578 unique_id port 192578 remote_ip 10.8.0.58 192580 username meghdad1616 192580 mac 192580 bytes_out 0 192580 bytes_in 0 192580 station_ip 5.119.209.188 192580 port 467 192580 unique_id port 192580 remote_ip 10.8.0.230 192583 username mostafa_es78 192583 kill_reason Another user logged on this global unique id 192583 mac 192583 bytes_out 0 192583 bytes_in 0 192583 station_ip 37.129.73.55 192583 port 433 192583 unique_id port 192583 remote_ip 10.8.0.34 192585 username zahra1101 192585 mac 192585 bytes_out 0 192585 bytes_in 0 192585 station_ip 5.120.110.30 192585 port 473 192585 unique_id port 192585 remote_ip 10.8.0.30 192590 username farhad3 192590 kill_reason Another user logged on this global unique id 192590 mac 192590 bytes_out 0 192590 bytes_in 0 192590 station_ip 5.120.30.237 192590 port 467 192590 unique_id port 192590 remote_ip 10.8.0.222 192598 username motamedi9772 192598 kill_reason Another user logged on this global unique id 192598 mac 192598 bytes_out 0 192598 bytes_in 0 192598 station_ip 83.123.17.227 192598 port 472 192598 unique_id port 192599 username farhad3 192599 mac 192599 bytes_out 0 192599 bytes_in 0 192599 station_ip 5.120.30.237 192599 port 467 192599 unique_id port 192601 username meghdad1616 192601 mac 192601 bytes_out 0 192601 bytes_in 0 192601 station_ip 5.119.209.188 192601 port 467 192601 unique_id port 192601 remote_ip 10.8.0.230 192604 username farhad3 192604 mac 192604 bytes_out 2364923 192604 bytes_in 17141260 192604 station_ip 5.120.30.237 192604 port 461 192604 unique_id port 192604 remote_ip 10.8.0.222 192609 username houshang 192609 mac 192609 bytes_out 140826 192609 bytes_in 206327 192609 station_ip 5.119.184.241 192609 port 467 192609 unique_id port 192609 remote_ip 10.8.0.82 192610 username mosi 192610 kill_reason Another user logged on this global unique id 192610 mac 192610 bytes_out 0 192610 bytes_in 0 192610 station_ip 151.235.79.93 192610 port 458 192610 unique_id port 192612 username zahra1101 192612 mac 192612 bytes_out 24240266 192612 bytes_in 42897622 192612 station_ip 5.120.110.30 192612 port 435 192612 unique_id port 192612 remote_ip 10.8.0.30 192615 username kalantary6037 192615 mac 192615 bytes_out 613896 192615 bytes_in 5952521 192615 station_ip 83.123.114.105 192615 port 461 192615 unique_id port 192615 remote_ip 10.8.0.50 192618 username zahra1101 192618 mac 192618 bytes_out 0 192618 bytes_in 0 192618 station_ip 5.120.110.30 192618 port 469 192618 unique_id port 192618 remote_ip 10.8.0.30 192623 username nilufarrajaei 192623 kill_reason Another user logged on this global unique id 192623 mac 192623 bytes_out 0 192623 bytes_in 0 192623 station_ip 83.123.125.241 192623 port 448 192623 unique_id port 192623 remote_ip 10.8.0.194 192626 username zahra1101 192626 mac 192626 bytes_out 0 192626 bytes_in 0 192626 station_ip 5.120.110.30 192626 port 461 192626 unique_id port 192626 remote_ip 10.8.0.30 192628 username alipour1506 192628 kill_reason Another user logged on this global unique id 192628 mac 192628 bytes_out 0 192628 bytes_in 0 192628 station_ip 78.39.25.121 192628 port 455 192628 unique_id port 192629 username zahra1101 192629 mac 192629 bytes_out 0 192629 bytes_in 0 192629 station_ip 5.120.110.30 192629 port 461 192629 unique_id port 192629 remote_ip 10.8.0.30 192591 remote_ip 10.8.0.230 192596 username fezealinaghi 192596 mac 192596 bytes_out 800824 192596 bytes_in 3820867 192596 station_ip 83.123.101.241 192596 port 471 192596 unique_id port 192596 remote_ip 10.8.0.202 192606 username saeed9658 192606 mac 192606 bytes_out 110391 192606 bytes_in 494661 192606 station_ip 5.119.176.177 192606 port 469 192606 unique_id port 192606 remote_ip 10.8.0.162 192607 username motamedi9772 192607 mac 192607 bytes_out 0 192607 bytes_in 0 192607 station_ip 83.123.17.227 192607 port 472 192607 unique_id port 192619 username mansour 192619 mac 192619 bytes_out 1695416 192619 bytes_in 24285519 192619 station_ip 5.202.61.73 192619 port 461 192619 unique_id port 192619 remote_ip 10.8.0.10 192621 username mostafa_es78 192621 mac 192621 bytes_out 0 192621 bytes_in 0 192621 station_ip 37.129.73.55 192621 port 433 192621 unique_id port 192622 username farhad3 192622 kill_reason Another user logged on this global unique id 192622 mac 192622 bytes_out 0 192622 bytes_in 0 192622 station_ip 5.120.30.237 192622 port 435 192622 unique_id port 192622 remote_ip 10.8.0.222 192625 username mostafa_es78 192625 mac 192625 bytes_out 483756 192625 bytes_in 3488282 192625 station_ip 37.129.73.55 192625 port 461 192625 unique_id port 192625 remote_ip 10.8.0.34 192627 username zahra1101 192627 kill_reason Maximum check online fails reached 192627 mac 192627 bytes_out 0 192627 bytes_in 0 192627 station_ip 5.120.110.30 192627 port 433 192627 unique_id port 192630 username zahra1101 192630 mac 192630 bytes_out 0 192630 bytes_in 0 192630 station_ip 5.120.110.30 192630 port 461 192630 unique_id port 192630 remote_ip 10.8.0.30 192632 username zahra1101 192632 mac 192632 bytes_out 0 192632 bytes_in 0 192632 station_ip 5.120.110.30 192632 port 461 192632 unique_id port 192632 remote_ip 10.8.0.30 192633 username zahra1101 192633 mac 192633 bytes_out 0 192633 bytes_in 0 192633 station_ip 5.120.110.30 192633 port 435 192633 unique_id port 192633 remote_ip 10.8.0.30 192640 username mirzaei6046 192640 kill_reason Another user logged on this global unique id 192640 mac 192640 bytes_out 0 192640 bytes_in 0 192640 station_ip 5.119.164.77 192640 port 435 192640 unique_id port 192646 username zahra1101 192646 mac 192646 bytes_out 0 192646 bytes_in 0 192646 station_ip 5.120.110.30 192646 port 469 192646 unique_id port 192646 remote_ip 10.8.0.30 192647 username zahra1101 192647 mac 192647 bytes_out 0 192647 bytes_in 0 192647 station_ip 5.120.110.30 192647 port 469 192647 unique_id port 192647 remote_ip 10.8.0.30 192651 username zahra1101 192651 kill_reason Maximum check online fails reached 192651 mac 192651 bytes_out 0 192651 bytes_in 0 192651 station_ip 5.120.110.30 192651 port 469 192651 unique_id port 192653 username zahra1101 192653 mac 192653 bytes_out 0 192653 bytes_in 0 192653 station_ip 5.120.110.30 192653 port 471 192653 unique_id port 192653 remote_ip 10.8.0.30 192655 username zahra1101 192655 mac 192655 bytes_out 0 192655 bytes_in 0 192655 station_ip 5.120.110.30 192655 port 471 192655 unique_id port 192655 remote_ip 10.8.0.30 192656 username zahra1101 192656 mac 192656 bytes_out 0 192656 bytes_in 0 192656 station_ip 5.120.110.30 192656 port 471 192656 unique_id port 192656 remote_ip 10.8.0.30 192657 username zahra1101 192657 kill_reason Maximum check online fails reached 192657 mac 192657 bytes_out 0 192657 bytes_in 0 192657 station_ip 5.120.110.30 192657 port 471 192657 unique_id port 192665 username zahra1101 192605 remote_ip 10.8.0.78 192608 username soleymani5056 192608 mac 192608 bytes_out 112871 192608 bytes_in 232260 192608 station_ip 5.119.186.204 192608 port 469 192608 unique_id port 192608 remote_ip 10.8.0.226 192611 username farhad3 192611 mac 192611 bytes_out 2469212 192611 bytes_in 13675958 192611 station_ip 5.120.30.237 192611 port 461 192611 unique_id port 192611 remote_ip 10.8.0.222 192613 username alikomsari 192613 mac 192613 bytes_out 3180295 192613 bytes_in 29364522 192613 station_ip 5.120.40.90 192613 port 471 192613 unique_id port 192613 remote_ip 10.8.0.214 192614 username zahra1101 192614 kill_reason Maximum check online fails reached 192614 mac 192614 bytes_out 0 192614 bytes_in 0 192614 station_ip 5.120.110.30 192614 port 467 192614 unique_id port 192616 username zahra1101 192616 mac 192616 bytes_out 0 192616 bytes_in 0 192616 station_ip 5.120.110.30 192616 port 461 192616 unique_id port 192616 remote_ip 10.8.0.30 192617 username zahra1101 192617 mac 192617 bytes_out 0 192617 bytes_in 0 192617 station_ip 5.120.110.30 192617 port 461 192617 unique_id port 192617 remote_ip 10.8.0.30 192620 username zahra1101 192620 mac 192620 bytes_out 0 192620 bytes_in 0 192620 station_ip 5.120.110.30 192620 port 461 192620 unique_id port 192620 remote_ip 10.8.0.30 192624 username mammad 192624 unique_id port 192624 terminate_cause User-Request 192624 bytes_out 13249531 192624 bytes_in 160458731 192624 station_ip 5.233.63.40 192624 port 15729268 192624 nas_port_type Virtual 192624 remote_ip 5.5.5.40 192638 username mirzaei6046 192638 kill_reason Another user logged on this global unique id 192638 mac 192638 bytes_out 0 192638 bytes_in 0 192638 station_ip 5.119.164.77 192638 port 435 192638 unique_id port 192638 remote_ip 10.8.0.198 192644 username zahra1101 192644 mac 192644 bytes_out 0 192644 bytes_in 0 192644 station_ip 5.120.110.30 192644 port 469 192644 unique_id port 192644 remote_ip 10.8.0.30 192645 username zahra1101 192645 mac 192645 bytes_out 0 192645 bytes_in 0 192645 station_ip 5.120.110.30 192645 port 469 192645 unique_id port 192645 remote_ip 10.8.0.30 192650 username zahra1101 192650 mac 192650 bytes_out 0 192650 bytes_in 0 192650 station_ip 5.120.110.30 192650 port 469 192650 unique_id port 192650 remote_ip 10.8.0.30 192658 username zahra1101 192658 mac 192658 bytes_out 0 192658 bytes_in 0 192658 station_ip 5.120.110.30 192658 port 472 192658 unique_id port 192658 remote_ip 10.8.0.30 192659 username zahra1101 192659 mac 192659 bytes_out 0 192659 bytes_in 0 192659 station_ip 5.120.110.30 192659 port 473 192659 unique_id port 192659 remote_ip 10.8.0.30 192660 username hosseine 192660 mac 192660 bytes_out 3201960 192660 bytes_in 44323748 192660 station_ip 83.123.73.181 192660 port 472 192660 unique_id port 192660 remote_ip 10.8.0.54 192662 username mohammadjavad 192662 mac 192662 bytes_out 6906 192662 bytes_in 10230 192662 station_ip 83.123.32.242 192662 port 472 192662 unique_id port 192662 remote_ip 10.8.0.110 192665 mac 192665 bytes_out 0 192665 bytes_in 0 192665 station_ip 5.120.110.30 192665 port 475 192665 unique_id port 192665 remote_ip 10.8.0.30 192666 username kalantary6037 192666 mac 192666 bytes_out 3655353 192666 bytes_in 47620139 192666 station_ip 83.123.41.117 192666 port 474 192666 unique_id port 192666 remote_ip 10.8.0.50 192667 username zahra1101 192667 mac 192667 bytes_out 0 192667 bytes_in 0 192667 station_ip 5.120.110.30 192667 port 475 192667 unique_id port 192631 username farhad3 192631 mac 192631 bytes_out 0 192631 bytes_in 0 192631 station_ip 5.120.30.237 192631 port 435 192631 unique_id port 192634 username zahra1101 192634 mac 192634 bytes_out 0 192634 bytes_in 0 192634 station_ip 5.120.110.30 192634 port 435 192634 unique_id port 192634 remote_ip 10.8.0.30 192635 username nilufarrajaei 192635 mac 192635 bytes_out 0 192635 bytes_in 0 192635 station_ip 83.123.125.241 192635 port 448 192635 unique_id port 192636 username zahra1101 192636 mac 192636 bytes_out 0 192636 bytes_in 0 192636 station_ip 5.120.110.30 192636 port 435 192636 unique_id port 192636 remote_ip 10.8.0.30 192637 username zahra1101 192637 kill_reason Maximum check online fails reached 192637 mac 192637 bytes_out 0 192637 bytes_in 0 192637 station_ip 5.120.110.30 192637 port 448 192637 unique_id port 192639 username zahra1101 192639 mac 192639 bytes_out 0 192639 bytes_in 0 192639 station_ip 5.120.110.30 192639 port 461 192639 unique_id port 192639 remote_ip 10.8.0.30 192641 username mirzaei6046 192641 kill_reason Another user logged on this global unique id 192641 mac 192641 bytes_out 0 192641 bytes_in 0 192641 station_ip 5.119.164.77 192641 port 435 192641 unique_id port 192642 username zahra1101 192642 kill_reason Maximum check online fails reached 192642 mac 192642 bytes_out 0 192642 bytes_in 0 192642 station_ip 5.120.110.30 192642 port 461 192642 unique_id port 192643 username mirzaei6046 192643 kill_reason Another user logged on this global unique id 192643 mac 192643 bytes_out 0 192643 bytes_in 0 192643 station_ip 5.119.164.77 192643 port 435 192643 unique_id port 192648 username zahra1101 192648 mac 192648 bytes_out 0 192648 bytes_in 0 192648 station_ip 5.120.110.30 192648 port 469 192648 unique_id port 192648 remote_ip 10.8.0.30 192649 username zahra1101 192649 mac 192649 bytes_out 0 192649 bytes_in 0 192649 station_ip 5.120.110.30 192649 port 469 192649 unique_id port 192649 remote_ip 10.8.0.30 192652 username zahra1101 192652 mac 192652 bytes_out 0 192652 bytes_in 0 192652 station_ip 5.120.110.30 192652 port 471 192652 unique_id port 192652 remote_ip 10.8.0.30 192654 username zahra1101 192654 mac 192654 bytes_out 0 192654 bytes_in 0 192654 station_ip 5.120.110.30 192654 port 471 192654 unique_id port 192654 remote_ip 10.8.0.30 192661 username zahra1101 192661 mac 192661 bytes_out 0 192661 bytes_in 0 192661 station_ip 5.120.110.30 192661 port 472 192661 unique_id port 192661 remote_ip 10.8.0.30 192663 username zahra1101 192663 kill_reason Maximum check online fails reached 192663 mac 192663 bytes_out 0 192663 bytes_in 0 192663 station_ip 5.120.110.30 192663 port 472 192663 unique_id port 192664 username zahra1101 192664 mac 192664 bytes_out 0 192664 bytes_in 0 192664 station_ip 5.120.110.30 192664 port 474 192664 unique_id port 192664 remote_ip 10.8.0.30 192667 remote_ip 10.8.0.30 192668 username zahra1101 192668 mac 192668 bytes_out 0 192668 bytes_in 0 192668 station_ip 5.120.110.30 192668 port 475 192668 unique_id port 192668 remote_ip 10.8.0.30 192669 username zahra1101 192669 mac 192669 bytes_out 123496 192669 bytes_in 414522 192669 station_ip 5.120.110.30 192669 port 475 192669 unique_id port 192669 remote_ip 10.8.0.30 192670 username mosi 192670 kill_reason Another user logged on this global unique id 192670 mac 192670 bytes_out 0 192670 bytes_in 0 192670 station_ip 151.235.79.93 192670 port 458 192670 unique_id port 192671 username kalantary6037 192671 mac 192671 bytes_out 1870461 192671 bytes_in 23301846 192671 station_ip 83.123.41.117 192671 port 474 192671 unique_id port 192671 remote_ip 10.8.0.50 192672 username khalili2 192672 mac 192672 bytes_out 3113981 192672 bytes_in 37985638 192672 station_ip 5.119.100.113 192672 port 460 192672 unique_id port 192672 remote_ip 10.8.0.190 192674 username jafari 192674 kill_reason Another user logged on this global unique id 192674 mac 192674 bytes_out 0 192674 bytes_in 0 192674 station_ip 89.32.100.188 192674 port 474 192674 unique_id port 192674 remote_ip 10.8.0.178 192676 username kalantary6037 192676 mac 192676 bytes_out 1928170 192676 bytes_in 28176542 192676 station_ip 83.123.73.5 192676 port 475 192676 unique_id port 192676 remote_ip 10.8.0.50 192677 username fezealinaghi 192677 mac 192677 bytes_out 2928679 192677 bytes_in 35998697 192677 station_ip 83.123.91.37 192677 port 476 192677 unique_id port 192677 remote_ip 10.8.0.202 192681 username jafari 192681 kill_reason Another user logged on this global unique id 192681 mac 192681 bytes_out 0 192681 bytes_in 0 192681 station_ip 89.32.100.188 192681 port 474 192681 unique_id port 192684 username alikomsari 192684 mac 192684 bytes_out 1559844 192684 bytes_in 5284841 192684 station_ip 5.120.40.90 192684 port 460 192684 unique_id port 192684 remote_ip 10.8.0.214 192685 username jafari 192685 mac 192685 bytes_out 0 192685 bytes_in 0 192685 station_ip 89.32.100.188 192685 port 474 192685 unique_id port 192686 username kalantary6037 192686 mac 192686 bytes_out 1696344 192686 bytes_in 25894175 192686 station_ip 83.123.28.81 192686 port 481 192686 unique_id port 192686 remote_ip 10.8.0.50 192687 username milan 192687 kill_reason Another user logged on this global unique id 192687 mac 192687 bytes_out 0 192687 bytes_in 0 192687 station_ip 5.119.23.34 192687 port 462 192687 unique_id port 192688 username zahra1101 192688 mac 192688 bytes_out 0 192688 bytes_in 0 192688 station_ip 5.119.182.197 192688 port 474 192688 unique_id port 192688 remote_ip 10.8.0.30 192690 username alipour1506 192690 mac 192690 bytes_out 0 192690 bytes_in 0 192690 station_ip 78.39.25.121 192690 port 455 192690 unique_id port 192696 username mirzaei6046 192696 kill_reason Another user logged on this global unique id 192696 mac 192696 bytes_out 0 192696 bytes_in 0 192696 station_ip 5.119.164.77 192696 port 435 192696 unique_id port 192701 username yaghobi 192701 mac 192701 bytes_out 119686 192701 bytes_in 138284 192701 station_ip 83.123.32.132 192701 port 475 192701 unique_id port 192701 remote_ip 10.8.0.138 192706 username zahra1101 192706 mac 192706 bytes_out 0 192706 bytes_in 0 192706 station_ip 5.119.182.197 192706 port 478 192706 unique_id port 192706 remote_ip 10.8.0.30 192707 username dortaj3792 192707 mac 192707 bytes_out 58370 192707 bytes_in 164916 192707 station_ip 5.119.117.23 192707 port 477 192707 unique_id port 192707 remote_ip 10.8.0.102 192712 username barzegar 192712 mac 192712 bytes_out 0 192712 bytes_in 0 192712 station_ip 5.119.101.76 192712 port 475 192712 unique_id port 192712 remote_ip 10.8.0.70 192720 username sabaghnezhad 192720 mac 192720 bytes_out 272600 192720 bytes_in 274290 192720 station_ip 83.123.85.219 192720 port 465 192720 unique_id port 192720 remote_ip 10.8.0.66 192721 username godarzi 192721 kill_reason Another user logged on this global unique id 192721 mac 192721 bytes_out 0 192721 bytes_in 0 192721 station_ip 5.120.177.174 192721 port 478 192721 unique_id port 192721 remote_ip 10.8.0.38 192722 username motamedi9772 192673 username kalantary6037 192673 mac 192673 bytes_out 1120810 192673 bytes_in 14636953 192673 station_ip 83.123.41.117 192673 port 460 192673 unique_id port 192673 remote_ip 10.8.0.50 192680 username barzegar 192680 kill_reason Maximum check online fails reached 192680 mac 192680 bytes_out 0 192680 bytes_in 0 192680 station_ip 5.119.101.76 192680 port 476 192680 unique_id port 192682 username yaghobi 192682 mac 192682 bytes_out 1697584 192682 bytes_in 20096371 192682 station_ip 83.123.16.165 192682 port 477 192682 unique_id port 192682 remote_ip 10.8.0.138 192683 username barzegar8595 192683 mac 192683 bytes_out 589744 192683 bytes_in 6477825 192683 station_ip 151.235.89.133 192683 port 478 192683 unique_id port 192683 remote_ip 10.8.0.114 192689 username hamid 192689 kill_reason Relative expiration date has reached 192689 mac 192689 bytes_out 0 192689 bytes_in 0 192689 station_ip 83.123.59.245 192689 port 474 192689 unique_id port 192691 username barzegar 192691 mac 192691 bytes_out 392292 192691 bytes_in 3324644 192691 station_ip 5.119.101.76 192691 port 479 192691 unique_id port 192691 remote_ip 10.8.0.70 192695 username kharazmi2920 192695 mac 192695 bytes_out 1676039 192695 bytes_in 16292234 192695 station_ip 83.123.12.97 192695 port 475 192695 unique_id port 192695 remote_ip 10.8.0.22 192697 username alirezaza 192697 unique_id port 192697 terminate_cause Lost-Carrier 192697 bytes_out 60410 192697 bytes_in 497692 192697 station_ip 5.119.56.177 192697 port 15729273 192697 nas_port_type Virtual 192697 remote_ip 5.5.5.39 192698 username yaghobi 192698 mac 192698 bytes_out 104168 192698 bytes_in 117466 192698 station_ip 83.123.32.132 192698 port 455 192698 unique_id port 192698 remote_ip 10.8.0.138 192699 username motamedi9772 192699 mac 192699 bytes_out 1735302 192699 bytes_in 33374148 192699 station_ip 83.123.51.227 192699 port 474 192699 unique_id port 192699 remote_ip 10.8.0.154 192704 username barzegar 192704 mac 192704 bytes_out 0 192704 bytes_in 0 192704 station_ip 5.119.101.76 192704 port 475 192704 unique_id port 192704 remote_ip 10.8.0.70 192705 username barzegar 192705 mac 192705 bytes_out 0 192705 bytes_in 0 192705 station_ip 5.119.101.76 192705 port 475 192705 unique_id port 192705 remote_ip 10.8.0.70 192708 username mohammadjavad 192708 mac 192708 bytes_out 661314 192708 bytes_in 951826 192708 station_ip 83.123.24.187 192708 port 479 192708 unique_id port 192708 remote_ip 10.8.0.110 192709 username yaghobi 192709 mac 192709 bytes_out 175612 192709 bytes_in 253594 192709 station_ip 83.123.93.112 192709 port 478 192709 unique_id port 192709 remote_ip 10.8.0.138 192716 username alirezaza 192716 unique_id port 192716 terminate_cause Lost-Carrier 192716 bytes_out 737234 192716 bytes_in 16727206 192716 station_ip 5.120.179.144 192716 port 15729274 192716 nas_port_type Virtual 192716 remote_ip 5.5.5.38 192717 username pourshad 192717 mac 192717 bytes_out 0 192717 bytes_in 0 192717 station_ip 5.119.216.65 192717 port 460 192717 unique_id port 192718 username nilufarrajaei 192718 mac 192718 bytes_out 22264921 192718 bytes_in 24238828 192718 station_ip 83.123.31.249 192718 port 473 192718 unique_id port 192718 remote_ip 10.8.0.194 192729 username rashidi4690 192729 mac 192729 bytes_out 47199 192729 bytes_in 125878 192729 station_ip 5.119.234.199 192729 port 473 192729 unique_id port 192729 remote_ip 10.8.0.242 192731 username barzegar 192731 kill_reason Maximum number of concurrent logins reached 192731 mac 192731 bytes_out 0 192731 bytes_in 0 192675 username sabaghnezhad 192675 mac 192675 bytes_out 3428732 192675 bytes_in 3897370 192675 station_ip 83.123.85.219 192675 port 465 192675 unique_id port 192675 remote_ip 10.8.0.66 192678 username milan 192678 kill_reason Another user logged on this global unique id 192678 mac 192678 bytes_out 0 192678 bytes_in 0 192678 station_ip 5.119.23.34 192678 port 462 192678 unique_id port 192678 remote_ip 10.8.0.182 192679 username barzegar 192679 kill_reason Maximum number of concurrent logins reached 192679 mac 192679 bytes_out 0 192679 bytes_in 0 192679 station_ip 5.119.101.76 192679 port 478 192679 unique_id port 192692 username barzegar 192692 mac 192692 bytes_out 13854 192692 bytes_in 61070 192692 station_ip 5.119.101.76 192692 port 455 192692 unique_id port 192692 remote_ip 10.8.0.70 192693 username zahra1101 192693 mac 192693 bytes_out 36302 192693 bytes_in 238140 192693 station_ip 5.119.182.197 192693 port 455 192693 unique_id port 192693 remote_ip 10.8.0.30 192694 username alirezaza 192694 unique_id port 192694 terminate_cause User-Request 192694 bytes_out 1132363 192694 bytes_in 46519071 192694 station_ip 5.119.56.177 192694 port 15729272 192694 nas_port_type Virtual 192694 remote_ip 5.5.5.39 192700 username barzegar 192700 mac 192700 bytes_out 0 192700 bytes_in 0 192700 station_ip 5.119.101.76 192700 port 455 192700 unique_id port 192700 remote_ip 10.8.0.70 192702 username kalantary6037 192702 mac 192702 bytes_out 0 192702 bytes_in 0 192702 station_ip 83.123.29.101 192702 port 475 192702 unique_id port 192702 remote_ip 10.8.0.50 192703 username dortaj3792 192703 mac 192703 bytes_out 3414921 192703 bytes_in 35716728 192703 station_ip 5.119.117.23 192703 port 480 192703 unique_id port 192703 remote_ip 10.8.0.102 192710 username pourshad 192710 kill_reason Another user logged on this global unique id 192710 mac 192710 bytes_out 0 192710 bytes_in 0 192710 station_ip 5.119.216.65 192710 port 460 192710 unique_id port 192710 remote_ip 10.8.0.42 192711 username barzegar 192711 mac 192711 bytes_out 1936999 192711 bytes_in 9134004 192711 station_ip 5.119.101.76 192711 port 475 192711 unique_id port 192711 remote_ip 10.8.0.70 192713 username motamedi9772 192713 mac 192713 bytes_out 5242 192713 bytes_in 11458 192713 station_ip 83.123.119.227 192713 port 479 192713 unique_id port 192713 remote_ip 10.8.0.154 192714 username barzegar 192714 mac 192714 bytes_out 0 192714 bytes_in 0 192714 station_ip 5.119.101.76 192714 port 479 192714 unique_id port 192714 remote_ip 10.8.0.70 192715 username alihosseini1 192715 mac 192715 bytes_out 396982 192715 bytes_in 2091532 192715 station_ip 5.120.39.19 192715 port 475 192715 unique_id port 192715 remote_ip 10.8.0.118 192719 username zahra1101 192719 mac 192719 bytes_out 0 192719 bytes_in 0 192719 station_ip 5.119.182.197 192719 port 473 192719 unique_id port 192719 remote_ip 10.8.0.30 192724 username saeed9658 192724 mac 192724 bytes_out 23309 192724 bytes_in 68934 192724 station_ip 5.119.176.177 192724 port 473 192724 unique_id port 192724 remote_ip 10.8.0.162 192725 username barzegar 192725 mac 192725 bytes_out 3437 192725 bytes_in 5895 192725 station_ip 5.119.101.76 192725 port 455 192725 unique_id port 192725 remote_ip 10.8.0.70 192726 username zahra1101 192726 mac 192726 bytes_out 0 192726 bytes_in 0 192726 station_ip 5.119.182.197 192726 port 455 192726 unique_id port 192726 remote_ip 10.8.0.30 192727 username pourshad 192727 mac 192727 bytes_out 25533 192727 bytes_in 67018 192722 mac 192722 bytes_out 141548 192722 bytes_in 1099873 192722 station_ip 83.123.60.247 192722 port 465 192722 unique_id port 192722 remote_ip 10.8.0.154 192723 username kharazmi2920 192723 mac 192723 bytes_out 1524687 192723 bytes_in 6433723 192723 station_ip 83.123.12.97 192723 port 455 192723 unique_id port 192723 remote_ip 10.8.0.22 192730 username godarzi 192730 mac 192730 bytes_out 0 192730 bytes_in 0 192730 station_ip 5.120.177.174 192730 port 478 192730 unique_id port 192734 username pourshad 192734 mac 192734 bytes_out 18847 192734 bytes_in 33969 192734 station_ip 5.119.216.65 192734 port 455 192734 unique_id port 192734 remote_ip 10.8.0.42 192738 username yaghobi 192738 mac 192738 bytes_out 712401 192738 bytes_in 3287396 192738 station_ip 83.123.122.164 192738 port 479 192738 unique_id port 192738 remote_ip 10.8.0.138 192739 username nilufarrajaei 192739 mac 192739 bytes_out 2473129 192739 bytes_in 22231708 192739 station_ip 83.123.31.249 192739 port 460 192739 unique_id port 192739 remote_ip 10.8.0.194 192741 username motamedi9772 192741 mac 192741 bytes_out 2110914 192741 bytes_in 16642944 192741 station_ip 83.123.126.35 192741 port 455 192741 unique_id port 192741 remote_ip 10.8.0.154 192743 username godarzi 192743 mac 192743 bytes_out 92346 192743 bytes_in 242907 192743 station_ip 45.84.157.190 192743 port 455 192743 unique_id port 192743 remote_ip 10.8.0.38 192746 username alipour1506 192746 mac 192746 bytes_out 43777 192746 bytes_in 61475 192746 station_ip 83.123.110.242 192746 port 473 192746 unique_id port 192746 remote_ip 10.8.0.246 192747 username meysam 192747 kill_reason Another user logged on this global unique id 192747 mac 192747 bytes_out 0 192747 bytes_in 0 192747 station_ip 188.159.252.61 192747 port 460 192747 unique_id port 192747 remote_ip 10.8.0.158 192751 username akbari0070 192751 mac 192751 bytes_out 0 192751 bytes_in 0 192751 station_ip 83.123.93.192 192751 port 455 192751 unique_id port 192752 username milan 192752 kill_reason Another user logged on this global unique id 192752 mac 192752 bytes_out 0 192752 bytes_in 0 192752 station_ip 5.119.23.34 192752 port 462 192752 unique_id port 192758 username yaghobi 192758 mac 192758 bytes_out 0 192758 bytes_in 0 192758 station_ip 83.123.99.52 192758 port 477 192758 unique_id port 192758 remote_ip 10.8.0.138 192762 username yaghobi 192762 mac 192762 bytes_out 147491 192762 bytes_in 251417 192762 station_ip 83.123.99.52 192762 port 479 192762 unique_id port 192762 remote_ip 10.8.0.138 192764 username meysam 192764 kill_reason Another user logged on this global unique id 192764 mac 192764 bytes_out 0 192764 bytes_in 0 192764 station_ip 188.159.252.61 192764 port 460 192764 unique_id port 192768 username rahim 192768 mac 192768 bytes_out 273113 192768 bytes_in 807426 192768 station_ip 5.119.97.228 192768 port 477 192768 unique_id port 192768 remote_ip 10.8.0.134 192771 username kalantary6037 192771 mac 192771 bytes_out 388486 192771 bytes_in 210173 192771 station_ip 83.123.81.109 192771 port 477 192771 unique_id port 192771 remote_ip 10.8.0.50 192779 username morteza4424 192779 mac 192779 bytes_out 381791 192779 bytes_in 5011301 192779 station_ip 83.123.90.14 192779 port 477 192779 unique_id port 192779 remote_ip 10.8.0.206 192781 username iranmanesh4443 192781 mac 192781 bytes_out 496193 192781 bytes_in 8170617 192781 station_ip 5.119.180.18 192781 port 458 192781 unique_id port 192781 remote_ip 10.8.0.122 192786 username kharazmi2920 192727 station_ip 5.119.216.65 192727 port 473 192727 unique_id port 192727 remote_ip 10.8.0.42 192728 username yaghobi 192728 mac 192728 bytes_out 0 192728 bytes_in 0 192728 station_ip 83.123.122.164 192728 port 455 192728 unique_id port 192728 remote_ip 10.8.0.138 192732 username sabaghnezhad 192732 mac 192732 bytes_out 29915 192732 bytes_in 36066 192732 station_ip 83.123.57.12 192732 port 475 192732 unique_id port 192732 remote_ip 10.8.0.66 192735 username zahra1101 192735 mac 192735 bytes_out 0 192735 bytes_in 0 192735 station_ip 5.119.182.197 192735 port 455 192735 unique_id port 192735 remote_ip 10.8.0.30 192736 username saeeddamghani 192736 mac 192736 bytes_out 594145 192736 bytes_in 5030047 192736 station_ip 217.60.218.67 192736 port 473 192736 unique_id port 192736 remote_ip 10.8.0.174 192737 username godarzi 192737 mac 192737 bytes_out 551716 192737 bytes_in 3451209 192737 station_ip 5.120.177.174 192737 port 473 192737 unique_id port 192737 remote_ip 10.8.0.38 192744 username yaghobi 192744 mac 192744 bytes_out 211232 192744 bytes_in 258587 192744 station_ip 83.123.122.164 192744 port 473 192744 unique_id port 192744 remote_ip 10.8.0.138 192753 username meysam 192753 kill_reason Another user logged on this global unique id 192753 mac 192753 bytes_out 0 192753 bytes_in 0 192753 station_ip 188.159.252.61 192753 port 460 192753 unique_id port 192755 username motamedi9772 192755 mac 192755 bytes_out 580181 192755 bytes_in 4928625 192755 station_ip 83.123.59.79 192755 port 475 192755 unique_id port 192755 remote_ip 10.8.0.154 192757 username yaghobi 192757 mac 192757 bytes_out 229827 192757 bytes_in 484247 192757 station_ip 83.123.99.52 192757 port 473 192757 unique_id port 192757 remote_ip 10.8.0.138 192760 username yaghobi 192760 mac 192760 bytes_out 5668 192760 bytes_in 17130 192760 station_ip 83.123.99.52 192760 port 477 192760 unique_id port 192760 remote_ip 10.8.0.138 192761 username rahim 192761 mac 192761 bytes_out 259389 192761 bytes_in 3084100 192761 station_ip 5.119.97.228 192761 port 477 192761 unique_id port 192761 remote_ip 10.8.0.134 192765 username mosi 192765 mac 192765 bytes_out 0 192765 bytes_in 0 192765 station_ip 151.235.79.93 192765 port 458 192765 unique_id port 192769 username yaghobi 192769 mac 192769 bytes_out 0 192769 bytes_in 0 192769 station_ip 83.123.99.52 192769 port 458 192769 unique_id port 192769 remote_ip 10.8.0.138 192772 username meysam 192772 kill_reason Another user logged on this global unique id 192772 mac 192772 bytes_out 0 192772 bytes_in 0 192772 station_ip 188.159.252.61 192772 port 460 192772 unique_id port 192773 username yaghobi 192773 mac 192773 bytes_out 231132 192773 bytes_in 252380 192773 station_ip 83.123.99.52 192773 port 479 192773 unique_id port 192773 remote_ip 10.8.0.138 192774 username pourshad 192774 mac 192774 bytes_out 401235 192774 bytes_in 6392181 192774 station_ip 5.119.216.65 192774 port 473 192774 unique_id port 192774 remote_ip 10.8.0.42 192776 username kharazmi2920 192776 mac 192776 bytes_out 69840 192776 bytes_in 364491 192776 station_ip 83.123.12.97 192776 port 477 192776 unique_id port 192776 remote_ip 10.8.0.22 192777 username soleymani5056 192777 mac 192777 bytes_out 557300 192777 bytes_in 2489496 192777 station_ip 5.120.34.232 192777 port 458 192777 unique_id port 192777 remote_ip 10.8.0.226 192783 username meysam 192783 kill_reason Another user logged on this global unique id 192783 mac 192783 bytes_out 0 192731 station_ip 5.119.101.76 192731 port 478 192731 unique_id port 192733 username barzegar 192733 kill_reason Maximum check online fails reached 192733 mac 192733 bytes_out 0 192733 bytes_in 0 192733 station_ip 5.119.101.76 192733 port 480 192733 unique_id port 192740 username alipour1506 192740 mac 192740 bytes_out 2560757 192740 bytes_in 26797686 192740 station_ip 83.123.110.242 192740 port 477 192740 unique_id port 192740 remote_ip 10.8.0.246 192742 username alipour1506 192742 mac 192742 bytes_out 35468 192742 bytes_in 85260 192742 station_ip 83.123.110.242 192742 port 460 192742 unique_id port 192742 remote_ip 10.8.0.246 192745 username pourshad 192745 mac 192745 bytes_out 111866 192745 bytes_in 189784 192745 station_ip 5.119.216.65 192745 port 478 192745 unique_id port 192745 remote_ip 10.8.0.42 192748 username yaghobi 192748 mac 192748 bytes_out 54471 192748 bytes_in 82486 192748 station_ip 83.123.122.164 192748 port 477 192748 unique_id port 192748 remote_ip 10.8.0.138 192749 username akbari0070 192749 kill_reason Another user logged on this global unique id 192749 mac 192749 bytes_out 0 192749 bytes_in 0 192749 station_ip 83.123.93.192 192749 port 455 192749 unique_id port 192749 remote_ip 10.8.0.166 192750 username dortaj3792 192750 mac 192750 bytes_out 11922006 192750 bytes_in 2781466 192750 station_ip 5.119.117.23 192750 port 475 192750 unique_id port 192750 remote_ip 10.8.0.102 192754 username alipour1506 192754 mac 192754 bytes_out 141567 192754 bytes_in 558008 192754 station_ip 83.123.110.242 192754 port 479 192754 unique_id port 192754 remote_ip 10.8.0.246 192756 username yaghobi 192756 mac 192756 bytes_out 229944 192756 bytes_in 335568 192756 station_ip 83.123.22.163 192756 port 473 192756 unique_id port 192756 remote_ip 10.8.0.138 192759 username yaghobi 192759 mac 192759 bytes_out 3492 192759 bytes_in 6287 192759 station_ip 83.123.99.52 192759 port 473 192759 unique_id port 192759 remote_ip 10.8.0.138 192763 username yaghobi 192763 mac 192763 bytes_out 14845 192763 bytes_in 9270 192763 station_ip 83.123.99.52 192763 port 481 192763 unique_id port 192763 remote_ip 10.8.0.138 192766 username kharazmi2920 192766 mac 192766 bytes_out 782150 192766 bytes_in 5051916 192766 station_ip 83.123.12.97 192766 port 465 192766 unique_id port 192766 remote_ip 10.8.0.22 192767 username yaghobi 192767 mac 192767 bytes_out 11334 192767 bytes_in 21389 192767 station_ip 83.123.99.52 192767 port 479 192767 unique_id port 192767 remote_ip 10.8.0.138 192770 username motamedi9772 192770 mac 192770 bytes_out 349142 192770 bytes_in 3006403 192770 station_ip 83.123.97.243 192770 port 465 192770 unique_id port 192770 remote_ip 10.8.0.154 192775 username aminvpn 192775 unique_id port 192775 terminate_cause Lost-Carrier 192775 bytes_out 4613966 192775 bytes_in 228715010 192775 station_ip 5.119.205.93 192775 port 15729281 192775 nas_port_type Virtual 192775 remote_ip 5.5.5.66 192778 username zahra1101 192778 mac 192778 bytes_out 3935769 192778 bytes_in 32822082 192778 station_ip 5.119.182.197 192778 port 478 192778 unique_id port 192778 remote_ip 10.8.0.30 192780 username rahim 192780 mac 192780 bytes_out 3992639 192780 bytes_in 36883484 192780 station_ip 5.119.97.228 192780 port 465 192780 unique_id port 192780 remote_ip 10.8.0.134 192782 username kalantary6037 192782 mac 192782 bytes_out 43236 192782 bytes_in 98700 192782 station_ip 83.123.24.89 192782 port 482 192782 unique_id port 192782 remote_ip 10.8.0.50 192785 username fezealinaghi 192783 bytes_in 0 192783 station_ip 188.159.252.61 192783 port 460 192783 unique_id port 192784 username soleymani5056 192784 mac 192784 bytes_out 158367 192784 bytes_in 396486 192784 station_ip 5.119.113.249 192784 port 478 192784 unique_id port 192784 remote_ip 10.8.0.226 192790 username barzegar8595 192790 mac 192790 bytes_out 663846 192790 bytes_in 357861 192790 station_ip 46.225.211.30 192790 port 477 192790 unique_id port 192790 remote_ip 10.8.0.114 192795 username milan 192795 kill_reason Another user logged on this global unique id 192795 mac 192795 bytes_out 0 192795 bytes_in 0 192795 station_ip 5.119.23.34 192795 port 462 192795 unique_id port 192798 username kharazmi2920 192798 mac 192798 bytes_out 9439 192798 bytes_in 13364 192798 station_ip 83.123.12.97 192798 port 458 192798 unique_id port 192798 remote_ip 10.8.0.22 192804 username godarzi 192804 mac 192804 bytes_out 0 192804 bytes_in 0 192804 station_ip 45.84.157.190 192804 port 455 192804 unique_id port 192805 username meysam 192805 mac 192805 bytes_out 0 192805 bytes_in 0 192805 station_ip 188.159.252.61 192805 port 460 192805 unique_id port 192806 username sobhan 192806 unique_id port 192806 terminate_cause Lost-Carrier 192806 bytes_out 561002 192806 bytes_in 1073430 192806 station_ip 5.120.126.214 192806 port 15729288 192806 nas_port_type Virtual 192806 remote_ip 5.5.5.37 192810 username motamedi9772 192810 mac 192810 bytes_out 76116 192810 bytes_in 492734 192810 station_ip 83.123.10.91 192810 port 455 192810 unique_id port 192810 remote_ip 10.8.0.154 192813 username zahra1101 192813 mac 192813 bytes_out 0 192813 bytes_in 0 192813 station_ip 5.120.4.121 192813 port 477 192813 unique_id port 192813 remote_ip 10.8.0.30 192814 username zahra1101 192814 mac 192814 bytes_out 184627 192814 bytes_in 1241358 192814 station_ip 5.120.4.121 192814 port 460 192814 unique_id port 192814 remote_ip 10.8.0.30 192817 username fezealinaghi 192817 mac 192817 bytes_out 0 192817 bytes_in 0 192817 station_ip 83.123.50.61 192817 port 473 192817 unique_id port 192818 username akbari0070 192818 mac 192818 bytes_out 0 192818 bytes_in 0 192818 station_ip 83.123.62.120 192818 port 465 192818 unique_id port 192820 username kharazmi2920 192820 mac 192820 bytes_out 479888 192820 bytes_in 4464095 192820 station_ip 83.123.12.97 192820 port 438 192820 unique_id port 192820 remote_ip 10.8.0.22 192823 username motamedi9772 192823 mac 192823 bytes_out 115991 192823 bytes_in 139044 192823 station_ip 83.123.90.75 192823 port 473 192823 unique_id port 192823 remote_ip 10.8.0.154 192824 username mohammadjavad 192824 mac 192824 bytes_out 0 192824 bytes_in 0 192824 station_ip 83.123.4.190 192824 port 473 192824 unique_id port 192824 remote_ip 10.8.0.110 192830 username alipour1506 192830 mac 192830 bytes_out 42516 192830 bytes_in 55204 192830 station_ip 83.123.110.242 192830 port 473 192830 unique_id port 192830 remote_ip 10.8.0.246 192833 username soleymani5056 192833 mac 192833 bytes_out 546406 192833 bytes_in 2381623 192833 station_ip 5.120.25.250 192833 port 460 192833 unique_id port 192833 remote_ip 10.8.0.226 192835 username saeed9658 192835 mac 192835 bytes_out 2164368 192835 bytes_in 18180508 192835 station_ip 5.119.176.177 192835 port 458 192835 unique_id port 192835 remote_ip 10.8.0.162 192837 username zahra1101 192837 mac 192837 bytes_out 76098 192837 bytes_in 429306 192837 station_ip 5.119.31.183 192837 port 475 192837 unique_id port 192785 kill_reason Another user logged on this global unique id 192785 mac 192785 bytes_out 0 192785 bytes_in 0 192785 station_ip 83.123.50.61 192785 port 473 192785 unique_id port 192785 remote_ip 10.8.0.202 192788 username zahra1101 192788 mac 192788 bytes_out 247728 192788 bytes_in 2039104 192788 station_ip 5.120.4.121 192788 port 481 192788 unique_id port 192788 remote_ip 10.8.0.30 192789 username dortaj3792 192789 mac 192789 bytes_out 143616 192789 bytes_in 493761 192789 station_ip 5.119.117.23 192789 port 458 192789 unique_id port 192789 remote_ip 10.8.0.102 192791 username kharazmi2920 192791 mac 192791 bytes_out 110867 192791 bytes_in 783499 192791 station_ip 83.123.12.97 192791 port 465 192791 unique_id port 192791 remote_ip 10.8.0.22 192793 username mohammadjavad 192793 mac 192793 bytes_out 0 192793 bytes_in 0 192793 station_ip 83.123.4.190 192793 port 438 192793 unique_id port 192793 remote_ip 10.8.0.110 192796 username zahra1101 192796 mac 192796 bytes_out 0 192796 bytes_in 0 192796 station_ip 5.120.4.121 192796 port 465 192796 unique_id port 192796 remote_ip 10.8.0.30 192802 username kharazmi2920 192802 mac 192802 bytes_out 22624 192802 bytes_in 25308 192802 station_ip 83.123.12.97 192802 port 477 192802 unique_id port 192802 remote_ip 10.8.0.22 192808 username kalantary6037 192808 mac 192808 bytes_out 243312 192808 bytes_in 1791835 192808 station_ip 83.123.123.113 192808 port 455 192808 unique_id port 192808 remote_ip 10.8.0.50 192811 username fezealinaghi 192811 kill_reason Another user logged on this global unique id 192811 mac 192811 bytes_out 0 192811 bytes_in 0 192811 station_ip 83.123.50.61 192811 port 473 192811 unique_id port 192819 username hosseine 192819 mac 192819 bytes_out 0 192819 bytes_in 0 192819 station_ip 83.123.83.89 192819 port 473 192819 unique_id port 192819 remote_ip 10.8.0.54 192821 username rashidi4690 192821 mac 192821 bytes_out 5265703 192821 bytes_in 40380297 192821 station_ip 5.119.234.199 192821 port 479 192821 unique_id port 192821 remote_ip 10.8.0.242 192829 username motamedi9772 192829 mac 192829 bytes_out 128882 192829 bytes_in 865263 192829 station_ip 83.123.90.75 192829 port 482 192829 unique_id port 192829 remote_ip 10.8.0.154 192832 username alipour1506 192832 mac 192832 bytes_out 0 192832 bytes_in 0 192832 station_ip 83.123.110.242 192832 port 479 192832 unique_id port 192832 remote_ip 10.8.0.246 192834 username aminvpn 192834 mac 192834 bytes_out 166807 192834 bytes_in 791570 192834 station_ip 5.120.105.134 192834 port 479 192834 unique_id port 192834 remote_ip 10.8.0.58 192836 username mammad 192836 unique_id port 192836 terminate_cause Lost-Carrier 192836 bytes_out 7561928 192836 bytes_in 45656384 192836 station_ip 2.183.251.174 192836 port 15729292 192836 nas_port_type Virtual 192836 remote_ip 5.5.5.33 192842 username dortaj3792 192842 mac 192842 bytes_out 605089 192842 bytes_in 791567 192842 station_ip 5.119.205.135 192842 port 481 192842 unique_id port 192842 remote_ip 10.8.0.102 192847 username zahra1101 192847 mac 192847 bytes_out 219200 192847 bytes_in 1043375 192847 station_ip 5.120.32.76 192847 port 460 192847 unique_id port 192847 remote_ip 10.8.0.30 192848 username hosseine 192848 kill_reason Another user logged on this global unique id 192848 mac 192848 bytes_out 0 192848 bytes_in 0 192848 station_ip 83.123.83.89 192848 port 465 192848 unique_id port 192848 remote_ip 10.8.0.54 192853 username soleymani5056 192853 mac 192853 bytes_out 133900 192853 bytes_in 373635 192786 mac 192786 bytes_out 23284 192786 bytes_in 28807 192786 station_ip 83.123.12.97 192786 port 481 192786 unique_id port 192786 remote_ip 10.8.0.22 192787 username pourshad 192787 mac 192787 bytes_out 151178 192787 bytes_in 1936262 192787 station_ip 5.119.216.65 192787 port 478 192787 unique_id port 192787 remote_ip 10.8.0.42 192792 username khademi 192792 mac 192792 bytes_out 1796725 192792 bytes_in 11533244 192792 station_ip 83.123.127.82 192792 port 438 192792 unique_id port 192792 remote_ip 10.8.0.14 192794 username godarzi 192794 kill_reason Another user logged on this global unique id 192794 mac 192794 bytes_out 0 192794 bytes_in 0 192794 station_ip 45.84.157.190 192794 port 455 192794 unique_id port 192794 remote_ip 10.8.0.38 192797 username pourshad 192797 mac 192797 bytes_out 34555 192797 bytes_in 69041 192797 station_ip 5.119.216.65 192797 port 478 192797 unique_id port 192797 remote_ip 10.8.0.42 192799 username zahra1101 192799 mac 192799 bytes_out 2745 192799 bytes_in 5160 192799 station_ip 5.120.4.121 192799 port 465 192799 unique_id port 192799 remote_ip 10.8.0.30 192800 username yaghobi 192800 mac 192800 bytes_out 2244 192800 bytes_in 4227 192800 station_ip 83.123.45.155 192800 port 458 192800 unique_id port 192800 remote_ip 10.8.0.138 192801 username mohammadjavad 192801 mac 192801 bytes_out 1400988 192801 bytes_in 19141986 192801 station_ip 83.123.4.190 192801 port 438 192801 unique_id port 192801 remote_ip 10.8.0.110 192803 username fezealinaghi 192803 kill_reason Another user logged on this global unique id 192803 mac 192803 bytes_out 0 192803 bytes_in 0 192803 station_ip 83.123.50.61 192803 port 473 192803 unique_id port 192807 username akbari0070 192807 kill_reason Another user logged on this global unique id 192807 mac 192807 bytes_out 0 192807 bytes_in 0 192807 station_ip 83.123.62.120 192807 port 465 192807 unique_id port 192807 remote_ip 10.8.0.166 192809 username mohammadjavad 192809 mac 192809 bytes_out 0 192809 bytes_in 0 192809 station_ip 83.123.4.190 192809 port 458 192809 unique_id port 192809 remote_ip 10.8.0.110 192812 username motamedi9772 192812 mac 192812 bytes_out 1644 192812 bytes_in 3524 192812 station_ip 83.123.10.91 192812 port 460 192812 unique_id port 192812 remote_ip 10.8.0.154 192815 username akbari0070 192815 kill_reason Another user logged on this global unique id 192815 mac 192815 bytes_out 0 192815 bytes_in 0 192815 station_ip 83.123.62.120 192815 port 465 192815 unique_id port 192816 username alipour1506 192816 mac 192816 bytes_out 561048 192816 bytes_in 3056814 192816 station_ip 83.123.110.242 192816 port 475 192816 unique_id port 192816 remote_ip 10.8.0.246 192822 username zahra1101 192822 mac 192822 bytes_out 7991 192822 bytes_in 11379 192822 station_ip 5.120.4.121 192822 port 473 192822 unique_id port 192822 remote_ip 10.8.0.30 192825 username alipour1506 192825 mac 192825 bytes_out 209719 192825 bytes_in 682143 192825 station_ip 83.123.110.242 192825 port 477 192825 unique_id port 192825 remote_ip 10.8.0.246 192826 username akbari0070 192826 kill_reason Another user logged on this global unique id 192826 mac 192826 bytes_out 0 192826 bytes_in 0 192826 station_ip 83.123.62.120 192826 port 475 192826 unique_id port 192826 remote_ip 10.8.0.166 192827 username akbari0070 192827 mac 192827 bytes_out 0 192827 bytes_in 0 192827 station_ip 83.123.62.120 192827 port 475 192827 unique_id port 192828 username zahra1101 192828 mac 192828 bytes_out 272408 192828 bytes_in 1547250 192828 station_ip 5.120.4.121 192828 port 479 192828 unique_id port 192828 remote_ip 10.8.0.30 192831 username mohammadjavad 192831 mac 192831 bytes_out 12856 192831 bytes_in 21106 192831 station_ip 83.123.4.190 192831 port 477 192831 unique_id port 192831 remote_ip 10.8.0.110 192839 username sabaghnezhad 192839 mac 192839 bytes_out 179944 192839 bytes_in 149022 192839 station_ip 83.123.4.26 192839 port 438 192839 unique_id port 192839 remote_ip 10.8.0.66 192840 username fezealinaghi 192840 mac 192840 bytes_out 1012965 192840 bytes_in 8590375 192840 station_ip 83.123.50.61 192840 port 478 192840 unique_id port 192840 remote_ip 10.8.0.202 192843 username soleymani5056 192843 mac 192843 bytes_out 146810 192843 bytes_in 142040 192843 station_ip 5.119.202.177 192843 port 477 192843 unique_id port 192843 remote_ip 10.8.0.226 192845 username zahra1101 192845 mac 192845 bytes_out 384119 192845 bytes_in 1500408 192845 station_ip 5.119.63.30 192845 port 458 192845 unique_id port 192845 remote_ip 10.8.0.30 192849 username alipour1506 192849 mac 192849 bytes_out 149263 192849 bytes_in 577972 192849 station_ip 83.123.110.242 192849 port 473 192849 unique_id port 192849 remote_ip 10.8.0.246 192851 username alipour1506 192851 mac 192851 bytes_out 5034 192851 bytes_in 4183 192851 station_ip 83.123.110.242 192851 port 478 192851 unique_id port 192851 remote_ip 10.8.0.246 192854 username nilufarrajaei 192854 mac 192854 bytes_out 5393 192854 bytes_in 11570 192854 station_ip 83.123.31.249 192854 port 438 192854 unique_id port 192854 remote_ip 10.8.0.194 192855 username nilufarrajaei 192855 mac 192855 bytes_out 3490 192855 bytes_in 5816 192855 station_ip 83.123.31.249 192855 port 438 192855 unique_id port 192855 remote_ip 10.8.0.194 192862 username saeeddamghani 192862 kill_reason Maximum check online fails reached 192862 unique_id port 192862 bytes_out 0 192862 bytes_in 0 192862 station_ip 83.123.13.106 192862 port 15729297 192862 nas_port_type Virtual 192864 username kharazmi2920 192864 mac 192864 bytes_out 2019852 192864 bytes_in 18528755 192864 station_ip 83.123.68.179 192864 port 455 192864 unique_id port 192864 remote_ip 10.8.0.22 192871 username soleymani5056 192871 mac 192871 bytes_out 183739 192871 bytes_in 257278 192871 station_ip 5.120.151.176 192871 port 481 192871 unique_id port 192871 remote_ip 10.8.0.226 192872 username kalantary6037 192872 mac 192872 bytes_out 255350 192872 bytes_in 1179044 192872 station_ip 83.123.64.209 192872 port 458 192872 unique_id port 192872 remote_ip 10.8.0.50 192874 username godarzi 192874 mac 192874 bytes_out 758510 192874 bytes_in 4438153 192874 station_ip 5.119.90.40 192874 port 455 192874 unique_id port 192874 remote_ip 10.8.0.38 192879 username farhad3 192879 kill_reason Another user logged on this global unique id 192879 mac 192879 bytes_out 0 192879 bytes_in 0 192879 station_ip 5.120.30.237 192879 port 460 192879 unique_id port 192879 remote_ip 10.8.0.222 192884 username alipour1506 192884 mac 192884 bytes_out 664542 192884 bytes_in 4302968 192884 station_ip 83.123.110.242 192884 port 475 192884 unique_id port 192884 remote_ip 10.8.0.246 192887 username alipour1506 192887 mac 192887 bytes_out 35474 192887 bytes_in 55842 192887 station_ip 83.123.110.242 192887 port 475 192887 unique_id port 192887 remote_ip 10.8.0.246 192892 username kharazmi2920 192892 mac 192892 bytes_out 790931 192892 bytes_in 3468643 192892 station_ip 83.123.68.179 192892 port 479 192892 unique_id port 192892 remote_ip 10.8.0.22 192895 username kalantary6037 192837 remote_ip 10.8.0.30 192838 username kalantary6037 192838 mac 192838 bytes_out 0 192838 bytes_in 0 192838 station_ip 83.123.64.209 192838 port 475 192838 unique_id port 192838 remote_ip 10.8.0.50 192841 username meysam 192841 mac 192841 bytes_out 2590337 192841 bytes_in 36303766 192841 station_ip 188.159.254.207 192841 port 460 192841 unique_id port 192841 remote_ip 10.8.0.158 192844 username saeeddamghani 192844 unique_id port 192844 terminate_cause User-Request 192844 bytes_out 210816 192844 bytes_in 2225865 192844 station_ip 83.123.13.106 192844 port 15729294 192844 nas_port_type Virtual 192844 remote_ip 5.5.5.31 192846 username saeeddamghani 192846 unique_id port 192846 terminate_cause User-Request 192846 bytes_out 227214 192846 bytes_in 5247225 192846 station_ip 83.123.13.106 192846 port 15729295 192846 nas_port_type Virtual 192846 remote_ip 5.5.5.31 192850 username mirzaei6046 192850 kill_reason Another user logged on this global unique id 192850 mac 192850 bytes_out 0 192850 bytes_in 0 192850 station_ip 5.119.164.77 192850 port 435 192850 unique_id port 192852 username nilufarrajaei 192852 mac 192852 bytes_out 342548 192852 bytes_in 820533 192852 station_ip 83.123.31.249 192852 port 438 192852 unique_id port 192852 remote_ip 10.8.0.194 192856 username godarzi 192856 mac 192856 bytes_out 4240262 192856 bytes_in 48609746 192856 station_ip 45.84.157.190 192856 port 455 192856 unique_id port 192856 remote_ip 10.8.0.38 192857 username saeeddamghani 192857 unique_id port 192857 terminate_cause User-Request 192857 bytes_out 97326 192857 bytes_in 2384429 192857 station_ip 83.123.13.106 192857 port 15729296 192857 nas_port_type Virtual 192857 remote_ip 5.5.5.31 192858 username mansour 192858 mac 192858 bytes_out 1004344 192858 bytes_in 11076376 192858 station_ip 5.202.61.73 192858 port 473 192858 unique_id port 192858 remote_ip 10.8.0.10 192860 username mammad 192860 unique_id port 192860 terminate_cause User-Request 192860 bytes_out 18273385 192860 bytes_in 65686541 192860 station_ip 2.183.248.32 192860 port 15729293 192860 nas_port_type Virtual 192860 remote_ip 5.5.5.32 192865 username nilufarrajaei 192865 mac 192865 bytes_out 45120 192865 bytes_in 60818 192865 station_ip 83.123.31.249 192865 port 479 192865 unique_id port 192865 remote_ip 10.8.0.194 192866 username meysam 192866 mac 192866 bytes_out 3762642 192866 bytes_in 52059635 192866 station_ip 188.159.254.207 192866 port 458 192866 unique_id port 192866 remote_ip 10.8.0.158 192867 username fezealinaghi 192867 mac 192867 bytes_out 2488503 192867 bytes_in 31300880 192867 station_ip 83.123.26.41 192867 port 477 192867 unique_id port 192867 remote_ip 10.8.0.202 192868 username nilufarrajaei 192868 mac 192868 bytes_out 28636 192868 bytes_in 50426 192868 station_ip 83.123.31.249 192868 port 455 192868 unique_id port 192868 remote_ip 10.8.0.194 192870 username nilufarrajaei 192870 mac 192870 bytes_out 9885 192870 bytes_in 17429 192870 station_ip 83.123.31.249 192870 port 458 192870 unique_id port 192870 remote_ip 10.8.0.194 192878 username kharazmi2920 192878 mac 192878 bytes_out 379216 192878 bytes_in 1664153 192878 station_ip 83.123.68.179 192878 port 482 192878 unique_id port 192878 remote_ip 10.8.0.22 192880 username rahim 192880 mac 192880 bytes_out 15014463 192880 bytes_in 39823262 192880 station_ip 86.57.72.59 192880 port 478 192880 unique_id port 192880 remote_ip 10.8.0.134 192882 username farhad3 192882 kill_reason Another user logged on this global unique id 192882 mac 192882 bytes_out 0 192882 bytes_in 0 192882 station_ip 5.120.30.237 192882 port 460 192853 station_ip 5.119.36.247 192853 port 475 192853 unique_id port 192853 remote_ip 10.8.0.226 192859 username nilufarrajaei 192859 mac 192859 bytes_out 123393 192859 bytes_in 243463 192859 station_ip 83.123.31.249 192859 port 438 192859 unique_id port 192859 remote_ip 10.8.0.194 192861 username saeeddamghani 192861 unique_id port 192861 terminate_cause User-Request 192861 bytes_out 167372 192861 bytes_in 4797813 192861 station_ip 83.123.13.106 192861 port 15729298 192861 nas_port_type Virtual 192861 remote_ip 5.5.5.31 192863 username soleymani5056 192863 kill_reason Maximum check online fails reached 192863 mac 192863 bytes_out 0 192863 bytes_in 0 192863 station_ip 5.120.151.176 192863 port 438 192863 unique_id port 192869 username zahra1101 192869 mac 192869 bytes_out 0 192869 bytes_in 0 192869 station_ip 5.120.178.60 192869 port 477 192869 unique_id port 192869 remote_ip 10.8.0.30 192873 username meysam 192873 mac 192873 bytes_out 83556 192873 bytes_in 545010 192873 station_ip 188.159.254.207 192873 port 479 192873 unique_id port 192873 remote_ip 10.8.0.158 192875 username hatami 192875 mac 192875 bytes_out 716252 192875 bytes_in 5680842 192875 station_ip 37.27.8.248 192875 port 473 192875 unique_id port 192875 remote_ip 10.8.0.98 192876 username nilufarrajaei 192876 mac 192876 bytes_out 298573 192876 bytes_in 1313674 192876 station_ip 83.123.31.249 192876 port 477 192876 unique_id port 192876 remote_ip 10.8.0.194 192877 username zahra1101 192877 mac 192877 bytes_out 150850 192877 bytes_in 1387346 192877 station_ip 5.120.178.60 192877 port 458 192877 unique_id port 192877 remote_ip 10.8.0.30 192881 username zahra1101 192881 mac 192881 bytes_out 0 192881 bytes_in 0 192881 station_ip 5.120.178.60 192881 port 458 192881 unique_id port 192881 remote_ip 10.8.0.30 192890 username farhad3 192890 kill_reason Another user logged on this global unique id 192890 mac 192890 bytes_out 0 192890 bytes_in 0 192890 station_ip 5.120.30.237 192890 port 460 192890 unique_id port 192891 username alipour1506 192891 mac 192891 bytes_out 40626 192891 bytes_in 60006 192891 station_ip 83.123.110.242 192891 port 455 192891 unique_id port 192891 remote_ip 10.8.0.246 192894 username saeed9658 192894 mac 192894 bytes_out 165439 192894 bytes_in 663222 192894 station_ip 5.119.176.177 192894 port 475 192894 unique_id port 192894 remote_ip 10.8.0.162 192896 username farhad3 192896 kill_reason Another user logged on this global unique id 192896 mac 192896 bytes_out 0 192896 bytes_in 0 192896 station_ip 5.120.30.237 192896 port 460 192896 unique_id port 192898 username kalantary6037 192898 mac 192898 bytes_out 0 192898 bytes_in 0 192898 station_ip 83.123.89.137 192898 port 458 192898 unique_id port 192900 username kharazmi2920 192900 mac 192900 bytes_out 723385 192900 bytes_in 2402475 192900 station_ip 83.123.68.179 192900 port 475 192900 unique_id port 192900 remote_ip 10.8.0.22 192905 username soleymani5056 192905 mac 192905 bytes_out 1948 192905 bytes_in 3687 192905 station_ip 5.120.148.172 192905 port 477 192905 unique_id port 192905 remote_ip 10.8.0.226 192909 username meysam 192909 mac 192909 bytes_out 3212108 192909 bytes_in 46877597 192909 station_ip 188.159.254.207 192909 port 479 192909 unique_id port 192909 remote_ip 10.8.0.158 192910 username nilufarrajaei 192910 mac 192910 bytes_out 2413718 192910 bytes_in 16094510 192910 station_ip 83.123.31.249 192910 port 473 192910 unique_id port 192910 remote_ip 10.8.0.194 192911 username rashidi4690 192911 mac 192882 unique_id port 192883 username mohammadjavad 192883 mac 192883 bytes_out 73578 192883 bytes_in 207563 192883 station_ip 83.123.59.66 192883 port 478 192883 unique_id port 192883 remote_ip 10.8.0.110 192885 username zahra1101 192885 mac 192885 bytes_out 0 192885 bytes_in 0 192885 station_ip 5.120.178.60 192885 port 479 192885 unique_id port 192885 remote_ip 10.8.0.30 192886 username dortaj3792 192886 mac 192886 bytes_out 1416498 192886 bytes_in 4460773 192886 station_ip 5.119.205.135 192886 port 455 192886 unique_id port 192886 remote_ip 10.8.0.102 192888 username malekpoir 192888 mac 192888 bytes_out 4082094 192888 bytes_in 33405220 192888 station_ip 5.120.166.71 192888 port 474 192888 unique_id port 192888 remote_ip 10.8.0.18 192889 username zahra1101 192889 mac 192889 bytes_out 0 192889 bytes_in 0 192889 station_ip 5.120.178.60 192889 port 481 192889 unique_id port 192889 remote_ip 10.8.0.30 192893 username zahra1101 192893 mac 192893 bytes_out 968254 192893 bytes_in 9411745 192893 station_ip 5.120.178.60 192893 port 455 192893 unique_id port 192893 remote_ip 10.8.0.30 192899 username rahim 192899 mac 192899 bytes_out 0 192899 bytes_in 0 192899 station_ip 86.57.72.59 192899 port 458 192899 unique_id port 192899 remote_ip 10.8.0.134 192901 username farhad3 192901 kill_reason Another user logged on this global unique id 192901 mac 192901 bytes_out 0 192901 bytes_in 0 192901 station_ip 5.120.30.237 192901 port 460 192901 unique_id port 192903 username soleymani5056 192903 mac 192903 bytes_out 272445 192903 bytes_in 2043024 192903 station_ip 5.119.95.2 192903 port 455 192903 unique_id port 192903 remote_ip 10.8.0.226 192906 username zahra1101 192906 mac 192906 bytes_out 2790 192906 bytes_in 5277 192906 station_ip 5.120.178.60 192906 port 475 192906 unique_id port 192906 remote_ip 10.8.0.30 192918 username farhad3 192918 mac 192918 bytes_out 0 192918 bytes_in 0 192918 station_ip 5.120.30.237 192918 port 460 192918 unique_id port 192919 username motamedi9772 192919 mac 192919 bytes_out 661977 192919 bytes_in 10123975 192919 station_ip 83.123.77.51 192919 port 482 192919 unique_id port 192919 remote_ip 10.8.0.154 192920 username motamedi9772 192920 mac 192920 bytes_out 0 192920 bytes_in 0 192920 station_ip 83.123.77.51 192920 port 484 192920 unique_id port 192920 remote_ip 10.8.0.154 192925 username meysam 192925 mac 192925 bytes_out 1299937 192925 bytes_in 17764564 192925 station_ip 188.159.254.207 192925 port 473 192925 unique_id port 192925 remote_ip 10.8.0.158 192929 username fezealinaghi 192929 mac 192929 bytes_out 181480 192929 bytes_in 1815189 192929 station_ip 83.123.20.14 192929 port 460 192929 unique_id port 192929 remote_ip 10.8.0.202 192931 username hosseine 192931 kill_reason Another user logged on this global unique id 192931 mac 192931 bytes_out 0 192931 bytes_in 0 192931 station_ip 83.123.83.89 192931 port 465 192931 unique_id port 192935 username esmaeilkazemi 192935 mac 192935 bytes_out 10257 192935 bytes_in 27481 192935 station_ip 83.123.43.47 192935 port 484 192935 unique_id port 192935 remote_ip 10.8.0.26 192940 username farhad3 192940 mac 192940 bytes_out 0 192940 bytes_in 0 192940 station_ip 5.120.30.237 192940 port 482 192940 unique_id port 192941 username soleymani5056 192941 mac 192941 bytes_out 149631 192941 bytes_in 424288 192941 station_ip 5.119.23.182 192941 port 475 192941 unique_id port 192941 remote_ip 10.8.0.226 192942 username barzegar 192895 kill_reason Another user logged on this global unique id 192895 mac 192895 bytes_out 0 192895 bytes_in 0 192895 station_ip 83.123.89.137 192895 port 458 192895 unique_id port 192895 remote_ip 10.8.0.50 192897 username rahim 192897 mac 192897 bytes_out 16275394 192897 bytes_in 18147389 192897 station_ip 86.57.72.59 192897 port 477 192897 unique_id port 192897 remote_ip 10.8.0.134 192902 username rashidi4690 192902 mac 192902 bytes_out 2046865 192902 bytes_in 14180826 192902 station_ip 5.119.234.199 192902 port 482 192902 unique_id port 192902 remote_ip 10.8.0.242 192904 username rahim 192904 mac 192904 bytes_out 47573 192904 bytes_in 153704 192904 station_ip 86.57.72.59 192904 port 458 192904 unique_id port 192904 remote_ip 10.8.0.134 192907 username kharazmi2920 192907 mac 192907 bytes_out 33792 192907 bytes_in 55819 192907 station_ip 83.123.68.179 192907 port 455 192907 unique_id port 192907 remote_ip 10.8.0.22 192908 username barzegar8595 192908 mac 192908 bytes_out 1360293 192908 bytes_in 540198 192908 station_ip 46.225.209.68 192908 port 478 192908 unique_id port 192908 remote_ip 10.8.0.114 192912 username rahim 192912 mac 192912 bytes_out 1842061 192912 bytes_in 17464995 192912 station_ip 86.57.72.59 192912 port 458 192912 unique_id port 192912 remote_ip 10.8.0.134 192913 username rashidi4690 192913 mac 192913 bytes_out 113476 192913 bytes_in 1241235 192913 station_ip 5.120.190.216 192913 port 479 192913 unique_id port 192913 remote_ip 10.8.0.242 192917 username tahmorsi 192917 kill_reason Another user logged on this global unique id 192917 mac 192917 bytes_out 0 192917 bytes_in 0 192917 station_ip 86.57.10.83 192917 port 455 192917 unique_id port 192917 remote_ip 10.8.0.6 192921 username nilufarrajaei 192921 kill_reason Another user logged on this global unique id 192921 mac 192921 bytes_out 0 192921 bytes_in 0 192921 station_ip 83.123.31.249 192921 port 475 192921 unique_id port 192921 remote_ip 10.8.0.194 192922 username rahim 192922 mac 192922 bytes_out 0 192922 bytes_in 0 192922 station_ip 5.119.97.228 192922 port 482 192922 unique_id port 192922 remote_ip 10.8.0.134 192924 username nilufarrajaei 192924 mac 192924 bytes_out 0 192924 bytes_in 0 192924 station_ip 83.123.31.249 192924 port 475 192924 unique_id port 192926 username fezealinaghi 192926 mac 192926 bytes_out 1162267 192926 bytes_in 11491156 192926 station_ip 83.123.20.14 192926 port 460 192926 unique_id port 192926 remote_ip 10.8.0.202 192928 username tahmorsi 192928 mac 192928 bytes_out 0 192928 bytes_in 0 192928 station_ip 86.57.10.83 192928 port 455 192928 unique_id port 192933 username rahim 192933 mac 192933 bytes_out 97682 192933 bytes_in 88725 192933 station_ip 5.119.97.228 192933 port 475 192933 unique_id port 192933 remote_ip 10.8.0.134 192936 username aminvpn 192936 unique_id port 192936 terminate_cause Lost-Carrier 192936 bytes_out 2226499 192936 bytes_in 61106010 192936 station_ip 5.120.162.21 192936 port 15729290 192936 nas_port_type Virtual 192936 remote_ip 5.5.5.35 192937 username kalantary6037 192937 mac 192937 bytes_out 2230334 192937 bytes_in 32576098 192937 station_ip 83.123.9.245 192937 port 455 192937 unique_id port 192937 remote_ip 10.8.0.50 192939 username motamedi9772 192939 mac 192939 bytes_out 9071853 192939 bytes_in 742387 192939 station_ip 83.123.77.51 192939 port 483 192939 unique_id port 192939 remote_ip 10.8.0.154 192943 username motamedi9772 192943 mac 192943 bytes_out 84654 192943 bytes_in 260916 192943 station_ip 83.123.77.51 192911 bytes_out 246871 192911 bytes_in 990670 192911 station_ip 5.119.234.199 192911 port 477 192911 unique_id port 192911 remote_ip 10.8.0.242 192914 username hamid.e 192914 unique_id port 192914 terminate_cause User-Request 192914 bytes_out 9733410 192914 bytes_in 41788849 192914 station_ip 37.27.29.42 192914 port 15729289 192914 nas_port_type Virtual 192914 remote_ip 5.5.5.36 192915 username zahra1101 192915 mac 192915 bytes_out 20474 192915 bytes_in 30257 192915 station_ip 5.120.178.60 192915 port 478 192915 unique_id port 192915 remote_ip 10.8.0.30 192916 username rahim 192916 mac 192916 bytes_out 0 192916 bytes_in 0 192916 station_ip 5.119.97.228 192916 port 482 192916 unique_id port 192916 remote_ip 10.8.0.134 192923 username farhad3 192923 mac 192923 bytes_out 560016 192923 bytes_in 2836105 192923 station_ip 5.120.30.237 192923 port 483 192923 unique_id port 192923 remote_ip 10.8.0.222 192927 username kalantary6037 192927 mac 192927 bytes_out 2343392 192927 bytes_in 25434679 192927 station_ip 83.123.9.245 192927 port 478 192927 unique_id port 192927 remote_ip 10.8.0.50 192930 username barzegar 192930 kill_reason Another user logged on this global unique id 192930 mac 192930 bytes_out 0 192930 bytes_in 0 192930 station_ip 5.119.176.234 192930 port 477 192930 unique_id port 192930 remote_ip 10.8.0.70 192932 username esmaeilkazemi 192932 mac 192932 bytes_out 0 192932 bytes_in 0 192932 station_ip 83.123.43.47 192932 port 478 192932 unique_id port 192932 remote_ip 10.8.0.26 192934 username farhad3 192934 kill_reason Another user logged on this global unique id 192934 mac 192934 bytes_out 0 192934 bytes_in 0 192934 station_ip 5.120.30.237 192934 port 482 192934 unique_id port 192934 remote_ip 10.8.0.222 192938 username houshang 192938 mac 192938 bytes_out 62837 192938 bytes_in 99254 192938 station_ip 5.119.184.241 192938 port 475 192938 unique_id port 192938 remote_ip 10.8.0.82 192945 username barzegar 192945 mac 192945 bytes_out 0 192945 bytes_in 0 192945 station_ip 5.119.176.234 192945 port 477 192945 unique_id port 192951 username milan 192951 mac 192951 bytes_out 0 192951 bytes_in 0 192951 station_ip 5.119.23.34 192951 port 462 192951 unique_id port 192953 username alirezaza 192953 unique_id port 192953 terminate_cause User-Request 192953 bytes_out 283 192953 bytes_in 220 192953 station_ip 5.119.225.217 192953 port 15729300 192953 nas_port_type Virtual 192953 remote_ip 5.5.5.30 192961 username kharazmi2920 192961 mac 192961 bytes_out 956041 192961 bytes_in 4273546 192961 station_ip 83.123.68.179 192961 port 479 192961 unique_id port 192961 remote_ip 10.8.0.22 192966 username yaghobi 192966 mac 192966 bytes_out 420559 192966 bytes_in 1362168 192966 station_ip 83.123.51.252 192966 port 462 192966 unique_id port 192966 remote_ip 10.8.0.138 192969 username kalantary6037 192969 mac 192969 bytes_out 2354219 192969 bytes_in 31659936 192969 station_ip 83.123.95.65 192969 port 474 192969 unique_id port 192969 remote_ip 10.8.0.50 192975 username morteza4424 192975 kill_reason Another user logged on this global unique id 192975 mac 192975 bytes_out 0 192975 bytes_in 0 192975 station_ip 83.123.98.131 192975 port 462 192975 unique_id port 192975 remote_ip 10.8.0.206 192978 username alipour1506 192978 mac 192978 bytes_out 506978 192978 bytes_in 1338056 192978 station_ip 83.123.110.242 192978 port 481 192978 unique_id port 192978 remote_ip 10.8.0.246 192982 username rahim 192982 mac 192982 bytes_out 1729786 192982 bytes_in 16026554 192982 station_ip 5.119.97.228 192942 kill_reason Another user logged on this global unique id 192942 mac 192942 bytes_out 0 192942 bytes_in 0 192942 station_ip 5.119.176.234 192942 port 477 192942 unique_id port 192944 username dortaj3792 192944 mac 192944 bytes_out 1932 192944 bytes_in 4034 192944 station_ip 5.119.17.178 192944 port 455 192944 unique_id port 192944 remote_ip 10.8.0.102 192947 username mohammadjavad 192947 mac 192947 bytes_out 2044009 192947 bytes_in 25905830 192947 station_ip 83.123.56.120 192947 port 460 192947 unique_id port 192947 remote_ip 10.8.0.110 192949 username kalantary6037 192949 mac 192949 bytes_out 267940 192949 bytes_in 4515172 192949 station_ip 83.123.89.105 192949 port 477 192949 unique_id port 192949 remote_ip 10.8.0.50 192952 username alirezaza 192952 unique_id port 192952 terminate_cause User-Request 192952 bytes_out 596 192952 bytes_in 192 192952 station_ip 5.119.225.217 192952 port 15729299 192952 nas_port_type Virtual 192952 remote_ip 5.5.5.30 192954 username alirezaza 192954 unique_id port 192954 terminate_cause User-Request 192954 bytes_out 314 192954 bytes_in 196 192954 station_ip 5.119.225.217 192954 port 15729301 192954 nas_port_type Virtual 192954 remote_ip 5.5.5.30 192960 username fezealinaghi 192960 mac 192960 bytes_out 34427 192960 bytes_in 30694 192960 station_ip 83.123.89.158 192960 port 460 192960 unique_id port 192960 remote_ip 10.8.0.202 192962 username esmaeilkazemi 192962 mac 192962 bytes_out 0 192962 bytes_in 0 192962 station_ip 83.123.43.47 192962 port 474 192962 unique_id port 192962 remote_ip 10.8.0.26 192967 username alirezaza 192967 unique_id port 192967 terminate_cause Lost-Carrier 192967 bytes_out 459166 192967 bytes_in 13321388 192967 station_ip 5.119.225.217 192967 port 15729304 192967 nas_port_type Virtual 192967 remote_ip 5.5.5.30 192968 username yaghobi 192968 mac 192968 bytes_out 18214 192968 bytes_in 71441 192968 station_ip 83.123.51.252 192968 port 477 192968 unique_id port 192968 remote_ip 10.8.0.138 192971 username soleymani5056 192971 mac 192971 bytes_out 180741 192971 bytes_in 909297 192971 station_ip 5.119.86.186 192971 port 475 192971 unique_id port 192971 remote_ip 10.8.0.226 192972 username farhad3 192972 mac 192972 bytes_out 2149197 192972 bytes_in 20553638 192972 station_ip 5.120.30.237 192972 port 460 192972 unique_id port 192972 remote_ip 10.8.0.222 192974 username yaghobi 192974 mac 192974 bytes_out 757004 192974 bytes_in 13816798 192974 station_ip 83.123.51.252 192974 port 478 192974 unique_id port 192974 remote_ip 10.8.0.138 192976 username godarzi 192976 mac 192976 bytes_out 3084413 192976 bytes_in 28205248 192976 station_ip 5.120.142.152 192976 port 473 192976 unique_id port 192976 remote_ip 10.8.0.38 192977 username houshang 192977 mac 192977 bytes_out 20718 192977 bytes_in 68420 192977 station_ip 5.119.184.241 192977 port 478 192977 unique_id port 192977 remote_ip 10.8.0.82 192979 username saeeddamghani 192979 mac 192979 bytes_out 0 192979 bytes_in 0 192979 station_ip 217.60.218.109 192979 port 481 192979 unique_id port 192979 remote_ip 10.8.0.174 192980 username mostafa_es78 192980 mac 192980 bytes_out 240841 192980 bytes_in 646888 192980 station_ip 37.129.80.107 192980 port 474 192980 unique_id port 192980 remote_ip 10.8.0.34 192981 username houshang 192981 mac 192981 bytes_out 998839 192981 bytes_in 10424026 192981 station_ip 5.119.184.241 192981 port 473 192981 unique_id port 192981 remote_ip 10.8.0.82 192986 username farhad3 192986 mac 192986 bytes_out 168866 192943 port 455 192943 unique_id port 192943 remote_ip 10.8.0.154 192946 username malekpoir 192946 mac 192946 bytes_out 1165201 192946 bytes_in 12684243 192946 station_ip 5.120.166.71 192946 port 474 192946 unique_id port 192946 remote_ip 10.8.0.18 192948 username dortaj3792 192948 mac 192948 bytes_out 103455 192948 bytes_in 244662 192948 station_ip 5.119.17.178 192948 port 474 192948 unique_id port 192948 remote_ip 10.8.0.102 192950 username rahim 192950 mac 192950 bytes_out 7483 192950 bytes_in 28062 192950 station_ip 5.119.97.228 192950 port 475 192950 unique_id port 192950 remote_ip 10.8.0.134 192955 username rashidi4690 192955 mac 192955 bytes_out 2415646 192955 bytes_in 18315615 192955 station_ip 5.119.139.164 192955 port 458 192955 unique_id port 192955 remote_ip 10.8.0.242 192956 username alirezaza 192956 unique_id port 192956 terminate_cause User-Request 192956 bytes_out 250 192956 bytes_in 184 192956 station_ip 5.119.225.217 192956 port 15729303 192956 nas_port_type Virtual 192956 remote_ip 5.5.5.30 192957 username hosseine 192957 kill_reason Another user logged on this global unique id 192957 mac 192957 bytes_out 0 192957 bytes_in 0 192957 station_ip 83.123.83.89 192957 port 465 192957 unique_id port 192958 username hosseine 192958 mac 192958 bytes_out 0 192958 bytes_in 0 192958 station_ip 83.123.83.89 192958 port 465 192958 unique_id port 192959 username rahim 192959 mac 192959 bytes_out 0 192959 bytes_in 0 192959 station_ip 5.119.97.228 192959 port 474 192959 unique_id port 192959 remote_ip 10.8.0.134 192963 username esmaeilkazemi 192963 mac 192963 bytes_out 0 192963 bytes_in 0 192963 station_ip 83.123.43.47 192963 port 475 192963 unique_id port 192963 remote_ip 10.8.0.26 192964 username esmaeilkazemi 192964 mac 192964 bytes_out 5521 192964 bytes_in 22985 192964 station_ip 83.123.43.47 192964 port 477 192964 unique_id port 192964 remote_ip 10.8.0.26 192965 username esmaeilkazemi 192965 mac 192965 bytes_out 37816 192965 bytes_in 287805 192965 station_ip 83.123.43.47 192965 port 475 192965 unique_id port 192965 remote_ip 10.8.0.26 192970 username zahra1101 192970 mac 192970 bytes_out 4523 192970 bytes_in 5690 192970 station_ip 5.119.184.97 192970 port 474 192970 unique_id port 192970 remote_ip 10.8.0.30 192973 username aminvpn 192973 unique_id port 192973 terminate_cause User-Request 192973 bytes_out 14474410 192973 bytes_in 345004041 192973 station_ip 5.120.162.21 192973 port 15729291 192973 nas_port_type Virtual 192973 remote_ip 5.5.5.34 192983 username godarzi 192983 mac 192983 bytes_out 590370 192983 bytes_in 3186653 192983 station_ip 45.84.157.190 192983 port 479 192983 unique_id port 192983 remote_ip 10.8.0.38 192984 username farhad3 192984 mac 192984 bytes_out 4218935 192984 bytes_in 39356839 192984 station_ip 5.120.30.237 192984 port 460 192984 unique_id port 192984 remote_ip 10.8.0.222 192988 username yaghobi 192988 mac 192988 bytes_out 537748 192988 bytes_in 1286959 192988 station_ip 83.123.91.8 192988 port 477 192988 unique_id port 192988 remote_ip 10.8.0.138 192990 username alihosseini1 192990 mac 192990 bytes_out 162583 192990 bytes_in 1279204 192990 station_ip 5.119.214.98 192990 port 474 192990 unique_id port 192990 remote_ip 10.8.0.118 192992 username hosseine 192992 kill_reason Another user logged on this global unique id 192992 mac 192992 bytes_out 0 192992 bytes_in 0 192992 station_ip 83.123.62.81 192992 port 473 192992 unique_id port 192992 remote_ip 10.8.0.54 192993 username alipour1506 192993 mac 192982 port 475 192982 unique_id port 192982 remote_ip 10.8.0.134 192985 username soleymani5056 192985 mac 192985 bytes_out 215636 192985 bytes_in 534056 192985 station_ip 5.119.55.120 192985 port 478 192985 unique_id port 192985 remote_ip 10.8.0.226 192987 username godarzi 192987 mac 192987 bytes_out 35954 192987 bytes_in 61233 192987 station_ip 5.202.2.121 192987 port 475 192987 unique_id port 192987 remote_ip 10.8.0.38 192991 username farhad3 192991 mac 192991 bytes_out 93569 192991 bytes_in 461205 192991 station_ip 5.120.62.231 192991 port 477 192991 unique_id port 192991 remote_ip 10.8.0.222 192996 username rahim 192996 kill_reason Another user logged on this global unique id 192996 mac 192996 bytes_out 0 192996 bytes_in 0 192996 station_ip 5.119.97.228 192996 port 460 192996 unique_id port 192996 remote_ip 10.8.0.134 192998 username morteza4424 192998 mac 192998 bytes_out 0 192998 bytes_in 0 192998 station_ip 83.123.98.131 192998 port 462 192998 unique_id port 193002 username morteza4424 193002 mac 193002 bytes_out 0 193002 bytes_in 0 193002 station_ip 83.123.98.131 193002 port 484 193002 unique_id port 193002 remote_ip 10.8.0.206 193003 username morteza4424 193003 mac 193003 bytes_out 0 193003 bytes_in 0 193003 station_ip 83.123.98.131 193003 port 484 193003 unique_id port 193003 remote_ip 10.8.0.206 193005 username morteza4424 193005 mac 193005 bytes_out 0 193005 bytes_in 0 193005 station_ip 83.123.98.131 193005 port 484 193005 unique_id port 193005 remote_ip 10.8.0.206 193007 username morteza4424 193007 mac 193007 bytes_out 0 193007 bytes_in 0 193007 station_ip 83.123.98.131 193007 port 484 193007 unique_id port 193007 remote_ip 10.8.0.206 193009 username arash 193009 mac 193009 bytes_out 27840 193009 bytes_in 77874 193009 station_ip 37.27.24.14 193009 port 474 193009 unique_id port 193009 remote_ip 10.8.0.250 193018 username rashidi4690 193018 kill_reason Another user logged on this global unique id 193018 mac 193018 bytes_out 0 193018 bytes_in 0 193018 station_ip 83.123.37.69 193018 port 483 193018 unique_id port 193018 remote_ip 10.8.0.242 193019 username motamedi9772 193019 mac 193019 bytes_out 0 193019 bytes_in 0 193019 station_ip 83.123.126.19 193019 port 481 193019 unique_id port 193022 username motamedi9772 193022 mac 193022 bytes_out 0 193022 bytes_in 0 193022 station_ip 83.123.126.19 193022 port 481 193022 unique_id port 193022 remote_ip 10.8.0.154 193026 username morteza4424 193026 mac 193026 bytes_out 0 193026 bytes_in 0 193026 station_ip 83.123.98.131 193026 port 485 193026 unique_id port 193026 remote_ip 10.8.0.206 193027 username motamedi9772 193027 mac 193027 bytes_out 0 193027 bytes_in 0 193027 station_ip 83.123.126.19 193027 port 481 193027 unique_id port 193027 remote_ip 10.8.0.154 193031 username motamedi9772 193031 mac 193031 bytes_out 0 193031 bytes_in 0 193031 station_ip 83.123.126.19 193031 port 481 193031 unique_id port 193031 remote_ip 10.8.0.154 193035 username motamedi9772 193035 mac 193035 bytes_out 0 193035 bytes_in 0 193035 station_ip 83.123.126.19 193035 port 481 193035 unique_id port 193035 remote_ip 10.8.0.154 193036 username morteza4424 193036 mac 193036 bytes_out 0 193036 bytes_in 0 193036 station_ip 83.123.98.131 193036 port 484 193036 unique_id port 193036 remote_ip 10.8.0.206 193038 username motamedi9772 193038 mac 193038 bytes_out 0 193038 bytes_in 0 193038 station_ip 83.123.126.19 193038 port 484 192986 bytes_in 1397236 192986 station_ip 5.120.30.237 192986 port 481 192986 unique_id port 192986 remote_ip 10.8.0.222 192989 username alirezazadeh 192989 unique_id port 192989 terminate_cause Lost-Carrier 192989 bytes_out 1667381 192989 bytes_in 22062391 192989 station_ip 5.119.51.55 192989 port 15729305 192989 nas_port_type Virtual 192989 remote_ip 5.5.5.29 192994 username milan 192994 mac 192994 bytes_out 480151 192994 bytes_in 553744 192994 station_ip 5.119.23.34 192994 port 458 192994 unique_id port 192994 remote_ip 10.8.0.182 192995 username yaghobi 192995 mac 192995 bytes_out 132375 192995 bytes_in 202579 192995 station_ip 83.123.91.8 192995 port 475 192995 unique_id port 192995 remote_ip 10.8.0.138 192999 username morteza4424 192999 mac 192999 bytes_out 0 192999 bytes_in 0 192999 station_ip 83.123.98.131 192999 port 462 192999 unique_id port 192999 remote_ip 10.8.0.206 193000 username malekpoir 193000 mac 193000 bytes_out 1795084 193000 bytes_in 15123976 193000 station_ip 5.120.166.71 193000 port 455 193000 unique_id port 193000 remote_ip 10.8.0.18 193004 username morteza4424 193004 kill_reason Maximum check online fails reached 193004 mac 193004 bytes_out 0 193004 bytes_in 0 193004 station_ip 83.123.98.131 193004 port 462 193004 unique_id port 193008 username yaghobi 193008 mac 193008 bytes_out 298896 193008 bytes_in 488224 193008 station_ip 83.123.91.8 193008 port 458 193008 unique_id port 193008 remote_ip 10.8.0.138 193011 username motamedi9772 193011 kill_reason Another user logged on this global unique id 193011 mac 193011 bytes_out 0 193011 bytes_in 0 193011 station_ip 83.123.126.19 193011 port 481 193011 unique_id port 193011 remote_ip 10.8.0.154 193013 username zahra1101 193013 mac 193013 bytes_out 119563 193013 bytes_in 770694 193013 station_ip 5.120.44.9 193013 port 479 193013 unique_id port 193013 remote_ip 10.8.0.30 193014 username morteza4424 193014 mac 193014 bytes_out 0 193014 bytes_in 0 193014 station_ip 83.123.98.131 193014 port 458 193014 unique_id port 193014 remote_ip 10.8.0.206 193025 username motamedi9772 193025 mac 193025 bytes_out 0 193025 bytes_in 0 193025 station_ip 83.123.126.19 193025 port 481 193025 unique_id port 193025 remote_ip 10.8.0.154 193030 username motamedi9772 193030 mac 193030 bytes_out 0 193030 bytes_in 0 193030 station_ip 83.123.126.19 193030 port 481 193030 unique_id port 193030 remote_ip 10.8.0.154 193032 username motamedi9772 193032 mac 193032 bytes_out 0 193032 bytes_in 0 193032 station_ip 83.123.126.19 193032 port 481 193032 unique_id port 193032 remote_ip 10.8.0.154 193034 username motamedi9772 193034 mac 193034 bytes_out 0 193034 bytes_in 0 193034 station_ip 83.123.126.19 193034 port 481 193034 unique_id port 193034 remote_ip 10.8.0.154 193039 username morteza4424 193039 mac 193039 bytes_out 0 193039 bytes_in 0 193039 station_ip 83.123.98.131 193039 port 486 193039 unique_id port 193039 remote_ip 10.8.0.206 193042 username motamedi9772 193042 mac 193042 bytes_out 0 193042 bytes_in 0 193042 station_ip 83.123.126.19 193042 port 486 193042 unique_id port 193042 remote_ip 10.8.0.154 193048 username motamedi9772 193048 mac 193048 bytes_out 0 193048 bytes_in 0 193048 station_ip 83.123.126.19 193048 port 486 193048 unique_id port 193048 remote_ip 10.8.0.154 193050 username motamedi9772 193050 mac 193050 bytes_out 0 193050 bytes_in 0 193050 station_ip 83.123.126.19 193050 port 474 193050 unique_id port 193050 remote_ip 10.8.0.154 192993 bytes_out 91184 192993 bytes_in 240617 192993 station_ip 83.123.110.242 192993 port 482 192993 unique_id port 192993 remote_ip 10.8.0.246 192997 username rashidi4690 192997 mac 192997 bytes_out 1300571 192997 bytes_in 7581074 192997 station_ip 5.119.139.164 192997 port 479 192997 unique_id port 192997 remote_ip 10.8.0.242 193001 username zahra1101 193001 mac 193001 bytes_out 6978 193001 bytes_in 11668 193001 station_ip 5.120.44.9 193001 port 479 193001 unique_id port 193001 remote_ip 10.8.0.30 193006 username rahim 193006 kill_reason Another user logged on this global unique id 193006 mac 193006 bytes_out 0 193006 bytes_in 0 193006 station_ip 5.119.97.228 193006 port 460 193006 unique_id port 193010 username yaghobi 193010 mac 193010 bytes_out 0 193010 bytes_in 0 193010 station_ip 83.123.91.8 193010 port 484 193010 unique_id port 193010 remote_ip 10.8.0.138 193012 username morteza4424 193012 mac 193012 bytes_out 0 193012 bytes_in 0 193012 station_ip 83.123.98.131 193012 port 458 193012 unique_id port 193012 remote_ip 10.8.0.206 193015 username rahim 193015 kill_reason Another user logged on this global unique id 193015 mac 193015 bytes_out 0 193015 bytes_in 0 193015 station_ip 5.119.97.228 193015 port 460 193015 unique_id port 193016 username morteza4424 193016 mac 193016 bytes_out 0 193016 bytes_in 0 193016 station_ip 83.123.98.131 193016 port 458 193016 unique_id port 193016 remote_ip 10.8.0.206 193017 username morteza4424 193017 mac 193017 bytes_out 0 193017 bytes_in 0 193017 station_ip 83.123.98.131 193017 port 458 193017 unique_id port 193017 remote_ip 10.8.0.206 193020 username motamedi9772 193020 mac 193020 bytes_out 0 193020 bytes_in 0 193020 station_ip 83.123.126.19 193020 port 481 193020 unique_id port 193020 remote_ip 10.8.0.154 193021 username motamedi9772 193021 mac 193021 bytes_out 0 193021 bytes_in 0 193021 station_ip 83.123.126.19 193021 port 481 193021 unique_id port 193021 remote_ip 10.8.0.154 193023 username motamedi9772 193023 mac 193023 bytes_out 0 193023 bytes_in 0 193023 station_ip 83.123.126.19 193023 port 481 193023 unique_id port 193023 remote_ip 10.8.0.154 193024 username morteza4424 193024 kill_reason Maximum check online fails reached 193024 mac 193024 bytes_out 0 193024 bytes_in 0 193024 station_ip 83.123.98.131 193024 port 458 193024 unique_id port 193028 username barzegar 193028 mac 193028 bytes_out 3427 193028 bytes_in 4972 193028 station_ip 5.120.36.111 193028 port 484 193028 unique_id port 193028 remote_ip 10.8.0.70 193029 username zahra1101 193029 mac 193029 bytes_out 2294 193029 bytes_in 4463 193029 station_ip 5.120.44.9 193029 port 486 193029 unique_id port 193029 remote_ip 10.8.0.30 193033 username morteza4424 193033 mac 193033 bytes_out 0 193033 bytes_in 0 193033 station_ip 83.123.98.131 193033 port 484 193033 unique_id port 193033 remote_ip 10.8.0.206 193037 username motamedi9772 193037 mac 193037 bytes_out 0 193037 bytes_in 0 193037 station_ip 83.123.126.19 193037 port 486 193037 unique_id port 193037 remote_ip 10.8.0.154 193046 username morteza4424 193046 mac 193046 bytes_out 11391 193046 bytes_in 37768 193046 station_ip 83.123.98.131 193046 port 487 193046 unique_id port 193046 remote_ip 10.8.0.206 193051 username hosseine 193051 mac 193051 bytes_out 0 193051 bytes_in 0 193051 station_ip 83.123.62.81 193051 port 473 193051 unique_id port 193053 username motamedi9772 193053 mac 193053 bytes_out 0 193053 bytes_in 0 193038 unique_id port 193038 remote_ip 10.8.0.154 193040 username motamedi9772 193040 mac 193040 bytes_out 0 193040 bytes_in 0 193040 station_ip 83.123.126.19 193040 port 484 193040 unique_id port 193040 remote_ip 10.8.0.154 193041 username hosseine 193041 kill_reason Another user logged on this global unique id 193041 mac 193041 bytes_out 0 193041 bytes_in 0 193041 station_ip 83.123.62.81 193041 port 473 193041 unique_id port 193043 username motamedi9772 193043 mac 193043 bytes_out 0 193043 bytes_in 0 193043 station_ip 83.123.126.19 193043 port 486 193043 unique_id port 193043 remote_ip 10.8.0.154 193044 username motamedi9772 193044 mac 193044 bytes_out 0 193044 bytes_in 0 193044 station_ip 83.123.126.19 193044 port 486 193044 unique_id port 193044 remote_ip 10.8.0.154 193045 username motamedi9772 193045 mac 193045 bytes_out 0 193045 bytes_in 0 193045 station_ip 83.123.126.19 193045 port 486 193045 unique_id port 193045 remote_ip 10.8.0.154 193047 username yaghobi 193047 mac 193047 bytes_out 1499499 193047 bytes_in 11546705 193047 station_ip 83.123.91.8 193047 port 474 193047 unique_id port 193047 remote_ip 10.8.0.138 193049 username morteza4424 193049 mac 193049 bytes_out 0 193049 bytes_in 0 193049 station_ip 83.123.98.131 193049 port 474 193049 unique_id port 193049 remote_ip 10.8.0.206 193054 username soleymani5056 193054 mac 193054 bytes_out 310508 193054 bytes_in 347103 193054 station_ip 5.119.230.7 193054 port 485 193054 unique_id port 193054 remote_ip 10.8.0.226 193056 username farhad3 193056 kill_reason Another user logged on this global unique id 193056 mac 193056 bytes_out 0 193056 bytes_in 0 193056 station_ip 5.120.62.231 193056 port 482 193056 unique_id port 193056 remote_ip 10.8.0.222 193061 username motamedi9772 193061 mac 193061 bytes_out 0 193061 bytes_in 0 193061 station_ip 83.123.126.19 193061 port 473 193061 unique_id port 193061 remote_ip 10.8.0.154 193062 username soleymani5056 193062 mac 193062 bytes_out 1781 193062 bytes_in 4833 193062 station_ip 5.119.119.110 193062 port 474 193062 unique_id port 193062 remote_ip 10.8.0.226 193063 username motamedi9772 193063 mac 193063 bytes_out 0 193063 bytes_in 0 193063 station_ip 83.123.126.19 193063 port 473 193063 unique_id port 193063 remote_ip 10.8.0.154 193065 username motamedi9772 193065 mac 193065 bytes_out 0 193065 bytes_in 0 193065 station_ip 83.123.126.19 193065 port 473 193065 unique_id port 193065 remote_ip 10.8.0.154 193068 username motamedi9772 193068 mac 193068 bytes_out 0 193068 bytes_in 0 193068 station_ip 83.123.126.19 193068 port 460 193068 unique_id port 193068 remote_ip 10.8.0.154 193070 username motamedi9772 193070 mac 193070 bytes_out 0 193070 bytes_in 0 193070 station_ip 83.123.126.19 193070 port 460 193070 unique_id port 193070 remote_ip 10.8.0.154 193073 username zahra1101 193073 mac 193073 bytes_out 0 193073 bytes_in 0 193073 station_ip 5.120.44.9 193073 port 475 193073 unique_id port 193073 remote_ip 10.8.0.30 193076 username motamedi9772 193076 mac 193076 bytes_out 0 193076 bytes_in 0 193076 station_ip 83.123.126.19 193076 port 460 193076 unique_id port 193076 remote_ip 10.8.0.154 193079 username soleymani5056 193079 mac 193079 bytes_out 204147 193079 bytes_in 330219 193079 station_ip 5.120.134.197 193079 port 474 193079 unique_id port 193079 remote_ip 10.8.0.226 193080 username dortaj3792 193080 mac 193080 bytes_out 1458306 193080 bytes_in 1285810 193080 station_ip 5.119.17.178 193052 username motamedi9772 193052 mac 193052 bytes_out 0 193052 bytes_in 0 193052 station_ip 83.123.126.19 193052 port 474 193052 unique_id port 193052 remote_ip 10.8.0.154 193057 username motamedi9772 193057 mac 193057 bytes_out 0 193057 bytes_in 0 193057 station_ip 83.123.126.19 193057 port 473 193057 unique_id port 193057 remote_ip 10.8.0.154 193059 username motamedi9772 193059 mac 193059 bytes_out 0 193059 bytes_in 0 193059 station_ip 83.123.126.19 193059 port 473 193059 unique_id port 193059 remote_ip 10.8.0.154 193064 username rahim 193064 mac 193064 bytes_out 0 193064 bytes_in 0 193064 station_ip 5.119.97.228 193064 port 460 193064 unique_id port 193069 username soleymani5056 193069 kill_reason Maximum check online fails reached 193069 mac 193069 bytes_out 0 193069 bytes_in 0 193069 station_ip 5.120.134.197 193069 port 485 193069 unique_id port 193072 username aminvpn 193072 unique_id port 193072 terminate_cause Lost-Carrier 193072 bytes_out 290528 193072 bytes_in 1666004 193072 station_ip 83.123.106.209 193072 port 15729308 193072 nas_port_type Virtual 193072 remote_ip 5.5.5.27 193077 username fezealinaghi 193077 kill_reason Another user logged on this global unique id 193077 mac 193077 bytes_out 0 193077 bytes_in 0 193077 station_ip 83.123.81.110 193077 port 481 193077 unique_id port 193077 remote_ip 10.8.0.202 193078 username farhad3 193078 mac 193078 bytes_out 0 193078 bytes_in 0 193078 station_ip 5.120.62.231 193078 port 482 193078 unique_id port 193081 username farhad3 193081 mac 193081 bytes_out 286273 193081 bytes_in 2101596 193081 station_ip 5.120.62.231 193081 port 482 193081 unique_id port 193081 remote_ip 10.8.0.222 193083 username milan 193083 mac 193083 bytes_out 61156 193083 bytes_in 121634 193083 station_ip 5.119.23.34 193083 port 488 193083 unique_id port 193083 remote_ip 10.8.0.182 193084 username farhad3 193084 mac 193084 bytes_out 857920 193084 bytes_in 5575591 193084 station_ip 5.120.62.231 193084 port 465 193084 unique_id port 193084 remote_ip 10.8.0.222 193086 username hatami 193086 mac 193086 bytes_out 469069 193086 bytes_in 2821778 193086 station_ip 37.27.8.248 193086 port 478 193086 unique_id port 193086 remote_ip 10.8.0.98 193087 username motamedi9772 193087 mac 193087 bytes_out 76462 193087 bytes_in 430738 193087 station_ip 83.123.126.19 193087 port 460 193087 unique_id port 193087 remote_ip 10.8.0.154 193092 username rashidi4690 193092 kill_reason Another user logged on this global unique id 193092 mac 193092 bytes_out 0 193092 bytes_in 0 193092 station_ip 83.123.37.69 193092 port 483 193092 unique_id port 193093 username yaghobi 193093 mac 193093 bytes_out 0 193093 bytes_in 0 193093 station_ip 83.123.19.136 193093 port 478 193093 unique_id port 193093 remote_ip 10.8.0.138 193096 username hajghani 193096 mac 193096 bytes_out 0 193096 bytes_in 0 193096 station_ip 95.162.96.194 193096 port 475 193096 unique_id port 193098 username barzegar 193098 mac 193098 bytes_out 726203 193098 bytes_in 2728512 193098 station_ip 5.120.86.178 193098 port 465 193098 unique_id port 193098 remote_ip 10.8.0.70 193100 username shahruz 193100 mac 193100 bytes_out 4474 193100 bytes_in 11674 193100 station_ip 83.123.122.85 193100 port 481 193100 unique_id port 193100 remote_ip 10.8.0.74 193103 username alirezaza 193103 unique_id port 193103 terminate_cause User-Request 193103 bytes_out 249 193103 bytes_in 170 193103 station_ip 5.120.164.10 193103 port 15729313 193103 nas_port_type Virtual 193053 station_ip 83.123.126.19 193053 port 473 193053 unique_id port 193053 remote_ip 10.8.0.154 193055 username morteza4424 193055 mac 193055 bytes_out 0 193055 bytes_in 0 193055 station_ip 83.123.98.131 193055 port 487 193055 unique_id port 193055 remote_ip 10.8.0.206 193058 username majidsarmast 193058 mac 193058 bytes_out 2535282 193058 bytes_in 24033631 193058 station_ip 83.123.0.230 193058 port 478 193058 unique_id port 193058 remote_ip 10.8.0.146 193060 username mammad 193060 unique_id port 193060 terminate_cause User-Request 193060 bytes_out 8432543 193060 bytes_in 115453807 193060 station_ip 2.183.248.32 193060 port 15729306 193060 nas_port_type Virtual 193060 remote_ip 5.5.5.32 193066 username morteza4424 193066 mac 193066 bytes_out 4301 193066 bytes_in 17520 193066 station_ip 83.123.98.131 193066 port 478 193066 unique_id port 193066 remote_ip 10.8.0.206 193067 username yaghobi 193067 mac 193067 bytes_out 111418 193067 bytes_in 198185 193067 station_ip 83.123.91.8 193067 port 486 193067 unique_id port 193067 remote_ip 10.8.0.138 193071 username godarzi 193071 mac 193071 bytes_out 1461421 193071 bytes_in 14053575 193071 station_ip 5.120.142.152 193071 port 475 193071 unique_id port 193071 remote_ip 10.8.0.38 193074 username motamedi9772 193074 mac 193074 bytes_out 4074 193074 bytes_in 13624 193074 station_ip 83.123.126.19 193074 port 460 193074 unique_id port 193074 remote_ip 10.8.0.154 193075 username yaghobi 193075 mac 193075 bytes_out 62182 193075 bytes_in 77019 193075 station_ip 83.123.91.8 193075 port 473 193075 unique_id port 193075 remote_ip 10.8.0.138 193082 username rashidi4690 193082 kill_reason Another user logged on this global unique id 193082 mac 193082 bytes_out 0 193082 bytes_in 0 193082 station_ip 83.123.37.69 193082 port 483 193082 unique_id port 193085 username fezealinaghi 193085 kill_reason Another user logged on this global unique id 193085 mac 193085 bytes_out 0 193085 bytes_in 0 193085 station_ip 83.123.81.110 193085 port 481 193085 unique_id port 193089 username motamedi9772 193089 mac 193089 bytes_out 0 193089 bytes_in 0 193089 station_ip 83.123.126.19 193089 port 460 193089 unique_id port 193089 remote_ip 10.8.0.154 193090 username hajghani 193090 kill_reason Another user logged on this global unique id 193090 mac 193090 bytes_out 0 193090 bytes_in 0 193090 station_ip 95.162.96.194 193090 port 475 193090 unique_id port 193090 remote_ip 10.8.0.106 193091 username barzegar 193091 mac 193091 bytes_out 4805677 193091 bytes_in 46294195 193091 station_ip 5.120.36.111 193091 port 484 193091 unique_id port 193091 remote_ip 10.8.0.70 193094 username rajaei 193094 mac 193094 bytes_out 1306102 193094 bytes_in 14753474 193094 station_ip 5.200.126.251 193094 port 474 193094 unique_id port 193094 remote_ip 10.8.0.210 193097 username fezealinaghi 193097 mac 193097 bytes_out 314274 193097 bytes_in 2817102 193097 station_ip 83.123.81.110 193097 port 474 193097 unique_id port 193097 remote_ip 10.8.0.202 193101 username alirezaza 193101 unique_id port 193101 terminate_cause User-Request 193101 bytes_out 0 193101 bytes_in 0 193101 station_ip 5.120.164.10 193101 port 15729312 193101 nas_port_type Virtual 193101 remote_ip 5.5.5.25 193104 username rashidi4690 193104 mac 193104 bytes_out 0 193104 bytes_in 0 193104 station_ip 83.123.37.69 193104 port 483 193104 unique_id port 193106 username akbari0070 193106 kill_reason Another user logged on this global unique id 193106 mac 193106 bytes_out 0 193106 bytes_in 0 193106 station_ip 83.123.123.72 193106 port 479 193080 port 465 193080 unique_id port 193080 remote_ip 10.8.0.102 193088 username milan 193088 mac 193088 bytes_out 28046 193088 bytes_in 66619 193088 station_ip 5.119.23.34 193088 port 465 193088 unique_id port 193088 remote_ip 10.8.0.182 193095 username fezealinaghi 193095 mac 193095 bytes_out 0 193095 bytes_in 0 193095 station_ip 83.123.81.110 193095 port 481 193095 unique_id port 193099 username yaghobi 193099 mac 193099 bytes_out 580307 193099 bytes_in 5525008 193099 station_ip 83.123.19.136 193099 port 482 193099 unique_id port 193099 remote_ip 10.8.0.138 193102 username shahruz 193102 mac 193102 bytes_out 2739 193102 bytes_in 5440 193102 station_ip 83.123.122.85 193102 port 465 193102 unique_id port 193102 remote_ip 10.8.0.74 193107 username alirezaza 193107 unique_id port 193107 terminate_cause Lost-Carrier 193107 bytes_out 62489 193107 bytes_in 189328 193107 station_ip 5.120.164.10 193107 port 15729315 193107 nas_port_type Virtual 193107 remote_ip 5.5.5.25 193109 username mammad 193109 unique_id port 193109 terminate_cause User-Request 193109 bytes_out 4845511 193109 bytes_in 124227626 193109 station_ip 2.183.248.32 193109 port 15729311 193109 nas_port_type Virtual 193109 remote_ip 5.5.5.32 193113 username yaghobi 193113 mac 193113 bytes_out 0 193113 bytes_in 0 193113 station_ip 83.123.88.47 193113 port 475 193113 unique_id port 193113 remote_ip 10.8.0.138 193114 username shahruz 193114 mac 193114 bytes_out 0 193114 bytes_in 0 193114 station_ip 83.123.122.85 193114 port 475 193114 unique_id port 193114 remote_ip 10.8.0.74 193120 username yaghobi 193120 mac 193120 bytes_out 159102 193120 bytes_in 194741 193120 station_ip 83.123.88.47 193120 port 482 193120 unique_id port 193120 remote_ip 10.8.0.138 193130 username fezealinaghi 193130 mac 193130 bytes_out 0 193130 bytes_in 0 193130 station_ip 83.123.108.118 193130 port 465 193130 unique_id port 193133 username motamedi9772 193133 mac 193133 bytes_out 0 193133 bytes_in 0 193133 station_ip 83.123.126.19 193133 port 460 193133 unique_id port 193133 remote_ip 10.8.0.154 193134 username motamedi9772 193134 mac 193134 bytes_out 0 193134 bytes_in 0 193134 station_ip 83.123.126.19 193134 port 455 193134 unique_id port 193134 remote_ip 10.8.0.154 193135 username motamedi9772 193135 mac 193135 bytes_out 0 193135 bytes_in 0 193135 station_ip 83.123.126.19 193135 port 455 193135 unique_id port 193135 remote_ip 10.8.0.154 193138 username motamedi9772 193138 mac 193138 bytes_out 0 193138 bytes_in 0 193138 station_ip 83.123.126.19 193138 port 455 193138 unique_id port 193138 remote_ip 10.8.0.154 193139 username shahruz 193139 mac 193139 bytes_out 0 193139 bytes_in 0 193139 station_ip 83.123.122.85 193139 port 460 193139 unique_id port 193139 remote_ip 10.8.0.74 193143 username shahruz 193143 mac 193143 bytes_out 0 193143 bytes_in 0 193143 station_ip 83.123.122.85 193143 port 455 193143 unique_id port 193143 remote_ip 10.8.0.74 193147 username motamedi9772 193147 mac 193147 bytes_out 0 193147 bytes_in 0 193147 station_ip 83.123.126.19 193147 port 460 193147 unique_id port 193147 remote_ip 10.8.0.154 193148 username motamedi9772 193148 mac 193148 bytes_out 0 193148 bytes_in 0 193148 station_ip 83.123.126.19 193148 port 460 193148 unique_id port 193148 remote_ip 10.8.0.154 193152 username shahruz 193152 mac 193152 bytes_out 0 193152 bytes_in 0 193152 station_ip 83.123.122.85 193152 port 474 193103 remote_ip 5.5.5.25 193105 username malekpoir 193105 kill_reason Maximum check online fails reached 193105 mac 193105 bytes_out 1226532 193105 bytes_in 13244017 193105 station_ip 5.120.166.71 193105 port 455 193105 unique_id port 193105 remote_ip 10.8.0.18 193110 username yaghobi 193110 mac 193110 bytes_out 155044 193110 bytes_in 258124 193110 station_ip 83.123.88.47 193110 port 481 193110 unique_id port 193110 remote_ip 10.8.0.138 193111 username shahruz 193111 mac 193111 bytes_out 408281 193111 bytes_in 2100302 193111 station_ip 83.123.122.85 193111 port 475 193111 unique_id port 193111 remote_ip 10.8.0.74 193115 username shahruz 193115 mac 193115 bytes_out 2257 193115 bytes_in 4733 193115 station_ip 83.123.122.85 193115 port 475 193115 unique_id port 193115 remote_ip 10.8.0.74 193119 username shahruz 193119 mac 193119 bytes_out 0 193119 bytes_in 0 193119 station_ip 83.123.122.85 193119 port 455 193119 unique_id port 193119 remote_ip 10.8.0.74 193122 username shahruz 193122 mac 193122 bytes_out 0 193122 bytes_in 0 193122 station_ip 83.123.122.85 193122 port 455 193122 unique_id port 193122 remote_ip 10.8.0.74 193123 username motamedi9772 193123 mac 193123 bytes_out 0 193123 bytes_in 0 193123 station_ip 83.123.126.19 193123 port 455 193123 unique_id port 193123 remote_ip 10.8.0.154 193124 username motamedi9772 193124 mac 193124 bytes_out 0 193124 bytes_in 0 193124 station_ip 83.123.126.19 193124 port 455 193124 unique_id port 193124 remote_ip 10.8.0.154 193125 username motamedi9772 193125 mac 193125 bytes_out 0 193125 bytes_in 0 193125 station_ip 83.123.126.19 193125 port 455 193125 unique_id port 193125 remote_ip 10.8.0.154 193127 username motamedi9772 193127 mac 193127 bytes_out 0 193127 bytes_in 0 193127 station_ip 83.123.126.19 193127 port 455 193127 unique_id port 193127 remote_ip 10.8.0.154 193129 username rashidi4690 193129 mac 193129 bytes_out 492160 193129 bytes_in 1137577 193129 station_ip 5.119.105.54 193129 port 481 193129 unique_id port 193129 remote_ip 10.8.0.242 193132 username zahra1101 193132 mac 193132 bytes_out 0 193132 bytes_in 0 193132 station_ip 5.120.44.9 193132 port 455 193132 unique_id port 193132 remote_ip 10.8.0.30 193136 username barzegar 193136 kill_reason Another user logged on this global unique id 193136 mac 193136 bytes_out 0 193136 bytes_in 0 193136 station_ip 5.119.204.241 193136 port 474 193136 unique_id port 193142 username kalantary6037 193142 mac 193142 bytes_out 697406 193142 bytes_in 2896722 193142 station_ip 83.123.9.169 193142 port 465 193142 unique_id port 193142 remote_ip 10.8.0.50 193149 username barzegar 193149 mac 193149 bytes_out 0 193149 bytes_in 0 193149 station_ip 5.119.204.241 193149 port 474 193149 unique_id port 193153 username farhad3 193153 mac 193153 bytes_out 580815 193153 bytes_in 3917498 193153 station_ip 5.120.62.231 193153 port 455 193153 unique_id port 193153 remote_ip 10.8.0.222 193154 username barzegar 193154 kill_reason Maximum number of concurrent logins reached 193154 mac 193154 bytes_out 0 193154 bytes_in 0 193154 station_ip 5.119.204.241 193154 port 482 193154 unique_id port 193158 username barzegar 193158 kill_reason Maximum number of concurrent logins reached 193158 mac 193158 bytes_out 0 193158 bytes_in 0 193158 station_ip 5.119.204.241 193158 port 482 193158 unique_id port 193162 username ebrahimpour3 193162 kill_reason Another user logged on this global unique id 193162 mac 193162 bytes_out 0 193162 bytes_in 0 193162 station_ip 83.123.26.27 193106 unique_id port 193106 remote_ip 10.8.0.166 193108 username aminvpn 193108 unique_id port 193108 terminate_cause Lost-Carrier 193108 bytes_out 51556 193108 bytes_in 143958 193108 station_ip 83.123.106.209 193108 port 15729314 193108 nas_port_type Virtual 193108 remote_ip 5.5.5.27 193112 username yaghobi 193112 mac 193112 bytes_out 58188 193112 bytes_in 95266 193112 station_ip 83.123.88.47 193112 port 482 193112 unique_id port 193112 remote_ip 10.8.0.138 193116 username barzegar 193116 kill_reason Another user logged on this global unique id 193116 mac 193116 bytes_out 0 193116 bytes_in 0 193116 station_ip 5.119.204.241 193116 port 474 193116 unique_id port 193116 remote_ip 10.8.0.70 193117 username fezealinaghi 193117 kill_reason Another user logged on this global unique id 193117 mac 193117 bytes_out 0 193117 bytes_in 0 193117 station_ip 83.123.108.118 193117 port 465 193117 unique_id port 193117 remote_ip 10.8.0.202 193118 username shahruz 193118 mac 193118 bytes_out 0 193118 bytes_in 0 193118 station_ip 83.123.122.85 193118 port 484 193118 unique_id port 193118 remote_ip 10.8.0.74 193121 username motamedi9772 193121 mac 193121 bytes_out 1911042 193121 bytes_in 11994096 193121 station_ip 83.123.126.19 193121 port 460 193121 unique_id port 193121 remote_ip 10.8.0.154 193126 username shahruz 193126 mac 193126 bytes_out 2374 193126 bytes_in 4720 193126 station_ip 83.123.122.85 193126 port 460 193126 unique_id port 193126 remote_ip 10.8.0.74 193128 username motamedi9772 193128 mac 193128 bytes_out 0 193128 bytes_in 0 193128 station_ip 83.123.126.19 193128 port 455 193128 unique_id port 193128 remote_ip 10.8.0.154 193131 username motamedi9772 193131 mac 193131 bytes_out 0 193131 bytes_in 0 193131 station_ip 83.123.126.19 193131 port 455 193131 unique_id port 193131 remote_ip 10.8.0.154 193137 username shahruz 193137 mac 193137 bytes_out 0 193137 bytes_in 0 193137 station_ip 83.123.122.85 193137 port 460 193137 unique_id port 193137 remote_ip 10.8.0.74 193140 username motamedi9772 193140 mac 193140 bytes_out 0 193140 bytes_in 0 193140 station_ip 83.123.126.19 193140 port 455 193140 unique_id port 193140 remote_ip 10.8.0.154 193141 username soleymani5056 193141 kill_reason Maximum check online fails reached 193141 mac 193141 bytes_out 0 193141 bytes_in 0 193141 station_ip 5.119.115.228 193141 port 481 193141 unique_id port 193144 username motamedi9772 193144 mac 193144 bytes_out 0 193144 bytes_in 0 193144 station_ip 83.123.126.19 193144 port 460 193144 unique_id port 193144 remote_ip 10.8.0.154 193145 username motamedi9772 193145 mac 193145 bytes_out 0 193145 bytes_in 0 193145 station_ip 83.123.126.19 193145 port 455 193145 unique_id port 193145 remote_ip 10.8.0.154 193146 username motamedi9772 193146 mac 193146 bytes_out 0 193146 bytes_in 0 193146 station_ip 83.123.126.19 193146 port 460 193146 unique_id port 193146 remote_ip 10.8.0.154 193150 username motamedi9772 193150 mac 193150 bytes_out 0 193150 bytes_in 0 193150 station_ip 83.123.126.19 193150 port 460 193150 unique_id port 193150 remote_ip 10.8.0.154 193151 username motamedi9772 193151 mac 193151 bytes_out 0 193151 bytes_in 0 193151 station_ip 83.123.126.19 193151 port 460 193151 unique_id port 193151 remote_ip 10.8.0.154 193156 username farhad3 193156 mac 193156 bytes_out 0 193156 bytes_in 0 193156 station_ip 5.120.62.231 193156 port 482 193156 unique_id port 193156 remote_ip 10.8.0.222 193161 username barzegar 193162 port 475 193152 unique_id port 193152 remote_ip 10.8.0.74 193155 username barzegar 193155 kill_reason Maximum number of concurrent logins reached 193155 mac 193155 bytes_out 0 193155 bytes_in 0 193155 station_ip 5.119.204.241 193155 port 484 193155 unique_id port 193157 username barzegar 193157 kill_reason Maximum number of concurrent logins reached 193157 mac 193157 bytes_out 0 193157 bytes_in 0 193157 station_ip 5.119.204.241 193157 port 482 193157 unique_id port 193159 username shahruz 193159 mac 193159 bytes_out 2315 193159 bytes_in 4804 193159 station_ip 83.123.122.85 193159 port 474 193159 unique_id port 193159 remote_ip 10.8.0.74 193160 username motamedi9772 193160 mac 193160 bytes_out 8412 193160 bytes_in 13613 193160 station_ip 83.123.126.19 193160 port 460 193160 unique_id port 193160 remote_ip 10.8.0.154 193172 username shahruz 193172 mac 193172 bytes_out 0 193172 bytes_in 0 193172 station_ip 83.123.122.85 193172 port 482 193172 unique_id port 193172 remote_ip 10.8.0.74 193180 username shahruz 193180 mac 193180 bytes_out 3432 193180 bytes_in 10483 193180 station_ip 83.123.122.85 193180 port 460 193180 unique_id port 193180 remote_ip 10.8.0.74 193189 username majidsarmast 193189 mac 193189 bytes_out 2335001 193189 bytes_in 24142569 193189 station_ip 83.123.0.230 193189 port 473 193189 unique_id port 193189 remote_ip 10.8.0.146 193196 username shahruz 193196 mac 193196 bytes_out 0 193196 bytes_in 0 193196 station_ip 83.123.122.85 193196 port 465 193196 unique_id port 193196 remote_ip 10.8.0.74 193197 username yaghobi 193197 mac 193197 bytes_out 1279819 193197 bytes_in 532005 193197 station_ip 83.123.101.166 193197 port 479 193197 unique_id port 193197 remote_ip 10.8.0.138 193199 username alipour1506 193199 mac 193199 bytes_out 133182 193199 bytes_in 1592021 193199 station_ip 83.123.18.226 193199 port 473 193199 unique_id port 193199 remote_ip 10.8.0.246 193208 username shahruz 193208 mac 193208 bytes_out 0 193208 bytes_in 0 193208 station_ip 83.123.122.85 193208 port 473 193208 unique_id port 193208 remote_ip 10.8.0.74 193212 username morteza4424 193212 mac 193212 bytes_out 0 193212 bytes_in 0 193212 station_ip 83.123.70.159 193212 port 475 193212 unique_id port 193212 remote_ip 10.8.0.206 193213 username shahruz 193213 mac 193213 bytes_out 2156 193213 bytes_in 4433 193213 station_ip 83.123.122.85 193213 port 473 193213 unique_id port 193213 remote_ip 10.8.0.74 193215 username morteza4424 193215 mac 193215 bytes_out 0 193215 bytes_in 0 193215 station_ip 83.123.70.159 193215 port 475 193215 unique_id port 193215 remote_ip 10.8.0.206 193217 username ebrahimpour3 193217 mac 193217 bytes_out 2174754 193217 bytes_in 22981445 193217 station_ip 83.123.125.19 193217 port 477 193217 unique_id port 193217 remote_ip 10.8.0.86 193219 username farhad3 193219 mac 193219 bytes_out 0 193219 bytes_in 0 193219 station_ip 5.120.62.231 193219 port 474 193219 unique_id port 193220 username kalantary6037 193220 mac 193220 bytes_out 417519 193220 bytes_in 4610414 193220 station_ip 83.123.9.169 193220 port 473 193220 unique_id port 193220 remote_ip 10.8.0.50 193221 username mohammadjavad 193221 mac 193221 bytes_out 591739 193221 bytes_in 7299741 193221 station_ip 83.123.113.35 193221 port 477 193221 unique_id port 193221 remote_ip 10.8.0.110 193224 username shahruz 193224 mac 193224 bytes_out 0 193224 bytes_in 0 193224 station_ip 83.123.122.85 193224 port 477 193224 unique_id port 193161 kill_reason Maximum check online fails reached 193161 mac 193161 bytes_out 0 193161 bytes_in 0 193161 station_ip 5.119.204.241 193161 port 455 193161 unique_id port 193163 username zahra1101 193163 mac 193163 bytes_out 0 193163 bytes_in 0 193163 station_ip 5.120.44.9 193163 port 484 193163 unique_id port 193163 remote_ip 10.8.0.30 193165 username kalantary6037 193165 mac 193165 bytes_out 0 193165 bytes_in 0 193165 station_ip 83.123.9.169 193165 port 486 193165 unique_id port 193165 remote_ip 10.8.0.50 193171 username godarzi 193171 mac 193171 bytes_out 2165146 193171 bytes_in 3317467 193171 station_ip 5.120.142.152 193171 port 483 193171 unique_id port 193171 remote_ip 10.8.0.38 193175 username akbari0070 193175 mac 193175 bytes_out 0 193175 bytes_in 0 193175 station_ip 83.123.123.72 193175 port 479 193175 unique_id port 193178 username mammad 193178 unique_id port 193178 terminate_cause User-Request 193178 bytes_out 1714635 193178 bytes_in 37473508 193178 station_ip 2.183.248.32 193178 port 15729316 193178 nas_port_type Virtual 193178 remote_ip 5.5.5.32 193179 username ebrahimpour3 193179 mac 193179 bytes_out 0 193179 bytes_in 0 193179 station_ip 83.123.26.27 193179 port 475 193179 unique_id port 193181 username aminvpn 193181 mac 193181 bytes_out 152746 193181 bytes_in 354321 193181 station_ip 5.120.191.46 193181 port 483 193181 unique_id port 193181 remote_ip 10.8.0.58 193182 username milan 193182 mac 193182 bytes_out 258714 193182 bytes_in 754988 193182 station_ip 5.119.23.34 193182 port 478 193182 unique_id port 193182 remote_ip 10.8.0.182 193188 username rashidi4690 193188 mac 193188 bytes_out 27106 193188 bytes_in 50022 193188 station_ip 5.119.105.54 193188 port 465 193188 unique_id port 193188 remote_ip 10.8.0.242 193190 username mohammadjavad 193190 mac 193190 bytes_out 0 193190 bytes_in 0 193190 station_ip 83.123.71.190 193190 port 478 193190 unique_id port 193190 remote_ip 10.8.0.110 193192 username mohammadjavad 193192 mac 193192 bytes_out 0 193192 bytes_in 0 193192 station_ip 83.123.71.190 193192 port 465 193192 unique_id port 193192 remote_ip 10.8.0.110 193194 username shahruz 193194 mac 193194 bytes_out 0 193194 bytes_in 0 193194 station_ip 83.123.122.85 193194 port 473 193194 unique_id port 193194 remote_ip 10.8.0.74 193198 username shahruz 193198 mac 193198 bytes_out 0 193198 bytes_in 0 193198 station_ip 83.123.122.85 193198 port 465 193198 unique_id port 193198 remote_ip 10.8.0.74 193200 username shahruz 193200 mac 193200 bytes_out 2262 193200 bytes_in 4539 193200 station_ip 83.123.122.85 193200 port 475 193200 unique_id port 193200 remote_ip 10.8.0.74 193201 username shahruz 193201 mac 193201 bytes_out 0 193201 bytes_in 0 193201 station_ip 83.123.122.85 193201 port 475 193201 unique_id port 193201 remote_ip 10.8.0.74 193202 username shahruz 193202 mac 193202 bytes_out 0 193202 bytes_in 0 193202 station_ip 83.123.122.85 193202 port 475 193202 unique_id port 193202 remote_ip 10.8.0.74 193205 username zahra1101 193205 mac 193205 bytes_out 30989 193205 bytes_in 33743 193205 station_ip 5.120.44.9 193205 port 473 193205 unique_id port 193205 remote_ip 10.8.0.30 193211 username morteza4424 193211 mac 193211 bytes_out 0 193211 bytes_in 0 193211 station_ip 83.123.70.159 193211 port 475 193211 unique_id port 193211 remote_ip 10.8.0.206 193214 username mohammadjavad 193214 mac 193214 bytes_out 277042 193214 bytes_in 1646489 193162 unique_id port 193162 remote_ip 10.8.0.86 193164 username dortaj3792 193164 mac 193164 bytes_out 89600 193164 bytes_in 135000 193164 station_ip 5.119.17.178 193164 port 482 193164 unique_id port 193164 remote_ip 10.8.0.102 193166 username shahruz 193166 mac 193166 bytes_out 0 193166 bytes_in 0 193166 station_ip 83.123.122.85 193166 port 487 193166 unique_id port 193166 remote_ip 10.8.0.74 193167 username shahruz 193167 mac 193167 bytes_out 0 193167 bytes_in 0 193167 station_ip 83.123.122.85 193167 port 482 193167 unique_id port 193167 remote_ip 10.8.0.74 193168 username shahruz 193168 mac 193168 bytes_out 0 193168 bytes_in 0 193168 station_ip 83.123.122.85 193168 port 482 193168 unique_id port 193168 remote_ip 10.8.0.74 193169 username mostafa_es78 193169 mac 193169 bytes_out 626951 193169 bytes_in 5169675 193169 station_ip 37.129.80.107 193169 port 484 193169 unique_id port 193169 remote_ip 10.8.0.34 193170 username shahruz 193170 mac 193170 bytes_out 2103 193170 bytes_in 4327 193170 station_ip 83.123.122.85 193170 port 482 193170 unique_id port 193170 remote_ip 10.8.0.74 193173 username shahruz 193173 mac 193173 bytes_out 0 193173 bytes_in 0 193173 station_ip 83.123.122.85 193173 port 482 193173 unique_id port 193173 remote_ip 10.8.0.74 193174 username shahruz 193174 mac 193174 bytes_out 0 193174 bytes_in 0 193174 station_ip 83.123.122.85 193174 port 482 193174 unique_id port 193174 remote_ip 10.8.0.74 193176 username farhad3 193176 kill_reason Another user logged on this global unique id 193176 mac 193176 bytes_out 0 193176 bytes_in 0 193176 station_ip 5.120.62.231 193176 port 474 193176 unique_id port 193176 remote_ip 10.8.0.222 193177 username barzegar 193177 mac 193177 bytes_out 3533355 193177 bytes_in 47434022 193177 station_ip 5.119.204.241 193177 port 460 193177 unique_id port 193177 remote_ip 10.8.0.70 193183 username soleymani5056 193183 mac 193183 bytes_out 636305 193183 bytes_in 661312 193183 station_ip 5.119.115.228 193183 port 465 193183 unique_id port 193183 remote_ip 10.8.0.226 193184 username akbari0070 193184 mac 193184 bytes_out 2742022 193184 bytes_in 8418179 193184 station_ip 83.123.123.72 193184 port 482 193184 unique_id port 193184 remote_ip 10.8.0.166 193185 username rashidi4690 193185 mac 193185 bytes_out 199236 193185 bytes_in 369524 193185 station_ip 5.119.105.54 193185 port 484 193185 unique_id port 193185 remote_ip 10.8.0.242 193186 username shahruz 193186 mac 193186 bytes_out 0 193186 bytes_in 0 193186 station_ip 83.123.122.85 193186 port 475 193186 unique_id port 193186 remote_ip 10.8.0.74 193187 username shahruz 193187 mac 193187 bytes_out 0 193187 bytes_in 0 193187 station_ip 83.123.122.85 193187 port 475 193187 unique_id port 193187 remote_ip 10.8.0.74 193191 username shahruz 193191 mac 193191 bytes_out 0 193191 bytes_in 0 193191 station_ip 83.123.122.85 193191 port 475 193191 unique_id port 193191 remote_ip 10.8.0.74 193193 username mohammadjavad 193193 mac 193193 bytes_out 2087 193193 bytes_in 5971 193193 station_ip 83.123.71.190 193193 port 465 193193 unique_id port 193193 remote_ip 10.8.0.110 193195 username alipour1506 193195 mac 193195 bytes_out 2262611 193195 bytes_in 28591845 193195 station_ip 78.39.25.121 193195 port 477 193195 unique_id port 193195 remote_ip 10.8.0.246 193203 username shahruz 193203 mac 193203 bytes_out 0 193203 bytes_in 0 193203 station_ip 83.123.122.85 193203 port 475 193203 unique_id port 193203 remote_ip 10.8.0.74 193204 username shahruz 193204 mac 193204 bytes_out 0 193204 bytes_in 0 193204 station_ip 83.123.122.85 193204 port 475 193204 unique_id port 193204 remote_ip 10.8.0.74 193206 username shahruz 193206 mac 193206 bytes_out 2474 193206 bytes_in 4751 193206 station_ip 83.123.122.85 193206 port 475 193206 unique_id port 193206 remote_ip 10.8.0.74 193207 username mostafa_es78 193207 mac 193207 bytes_out 4202540 193207 bytes_in 44256605 193207 station_ip 37.129.80.107 193207 port 486 193207 unique_id port 193207 remote_ip 10.8.0.34 193209 username morteza4424 193209 mac 193209 bytes_out 6082764 193209 bytes_in 2490103 193209 station_ip 83.123.70.159 193209 port 479 193209 unique_id port 193209 remote_ip 10.8.0.206 193210 username morteza4424 193210 mac 193210 bytes_out 0 193210 bytes_in 0 193210 station_ip 83.123.70.159 193210 port 475 193210 unique_id port 193210 remote_ip 10.8.0.206 193216 username morteza4424 193216 mac 193216 bytes_out 2321 193216 bytes_in 5143 193216 station_ip 83.123.70.159 193216 port 473 193216 unique_id port 193216 remote_ip 10.8.0.206 193222 username shahruz 193222 mac 193222 bytes_out 0 193222 bytes_in 0 193222 station_ip 83.123.122.85 193222 port 477 193222 unique_id port 193222 remote_ip 10.8.0.74 193230 username mohammadjavad 193230 mac 193230 bytes_out 0 193230 bytes_in 0 193230 station_ip 83.123.113.35 193230 port 477 193230 unique_id port 193230 remote_ip 10.8.0.110 193232 username motamedi9772 193232 mac 193232 bytes_out 494290 193232 bytes_in 4890450 193232 station_ip 83.123.92.59 193232 port 474 193232 unique_id port 193232 remote_ip 10.8.0.154 193241 username shahruz 193241 mac 193241 bytes_out 0 193241 bytes_in 0 193241 station_ip 83.123.122.85 193241 port 477 193241 unique_id port 193241 remote_ip 10.8.0.74 193244 username shahruz 193244 mac 193244 bytes_out 0 193244 bytes_in 0 193244 station_ip 83.123.122.85 193244 port 465 193244 unique_id port 193244 remote_ip 10.8.0.74 193248 username morteza4424 193248 mac 193248 bytes_out 0 193248 bytes_in 0 193248 station_ip 83.123.70.159 193248 port 479 193248 unique_id port 193248 remote_ip 10.8.0.206 193249 username soleymani5056 193249 mac 193249 bytes_out 4761 193249 bytes_in 4875 193249 station_ip 5.119.241.66 193249 port 465 193249 unique_id port 193249 remote_ip 10.8.0.226 193253 username alihosseini1 193253 kill_reason Another user logged on this global unique id 193253 mac 193253 bytes_out 0 193253 bytes_in 0 193253 station_ip 5.119.94.68 193253 port 478 193253 unique_id port 193253 remote_ip 10.8.0.118 193256 username morteza4424 193256 mac 193256 bytes_out 0 193256 bytes_in 0 193256 station_ip 83.123.70.159 193256 port 484 193256 unique_id port 193256 remote_ip 10.8.0.206 193271 username houshang 193271 mac 193271 bytes_out 119192 193271 bytes_in 311968 193271 station_ip 5.119.184.241 193271 port 465 193271 unique_id port 193271 remote_ip 10.8.0.82 193274 username hamid.e 193274 kill_reason Maximum number of concurrent logins reached 193274 unique_id port 193274 bytes_out 0 193274 bytes_in 0 193274 station_ip 37.27.29.42 193274 port 15729324 193274 nas_port_type Virtual 193275 username mohammadjavad 193275 mac 193275 bytes_out 0 193275 bytes_in 0 193275 station_ip 83.123.113.35 193275 port 465 193275 unique_id port 193275 remote_ip 10.8.0.110 193276 username shahruz 193276 mac 193276 bytes_out 0 193276 bytes_in 0 193276 station_ip 83.123.122.85 193214 station_ip 83.123.94.62 193214 port 482 193214 unique_id port 193214 remote_ip 10.8.0.110 193218 username shahruz 193218 kill_reason Maximum check online fails reached 193218 mac 193218 bytes_out 0 193218 bytes_in 0 193218 station_ip 83.123.122.85 193218 port 475 193218 unique_id port 193223 username barzegar 193223 mac 193223 bytes_out 0 193223 bytes_in 0 193223 station_ip 5.119.204.241 193223 port 473 193223 unique_id port 193223 remote_ip 10.8.0.70 193225 username shahruz 193225 mac 193225 bytes_out 0 193225 bytes_in 0 193225 station_ip 83.123.122.85 193225 port 473 193225 unique_id port 193225 remote_ip 10.8.0.74 193227 username morteza4424 193227 mac 193227 bytes_out 0 193227 bytes_in 0 193227 station_ip 83.123.70.159 193227 port 479 193227 unique_id port 193227 remote_ip 10.8.0.206 193229 username mohammadjavad 193229 mac 193229 bytes_out 0 193229 bytes_in 0 193229 station_ip 83.123.113.35 193229 port 477 193229 unique_id port 193229 remote_ip 10.8.0.110 193234 username shahruz 193234 mac 193234 bytes_out 0 193234 bytes_in 0 193234 station_ip 83.123.122.85 193234 port 477 193234 unique_id port 193234 remote_ip 10.8.0.74 193235 username fezealinaghi 193235 mac 193235 bytes_out 37195 193235 bytes_in 202592 193235 station_ip 83.123.109.114 193235 port 479 193235 unique_id port 193235 remote_ip 10.8.0.202 193237 username mohammadjavad 193237 mac 193237 bytes_out 0 193237 bytes_in 0 193237 station_ip 83.123.113.35 193237 port 477 193237 unique_id port 193237 remote_ip 10.8.0.110 193238 username alipour1506 193238 mac 193238 bytes_out 412977 193238 bytes_in 2534394 193238 station_ip 83.123.18.226 193238 port 465 193238 unique_id port 193238 remote_ip 10.8.0.246 193240 username mohammadjavad 193240 mac 193240 bytes_out 0 193240 bytes_in 0 193240 station_ip 83.123.113.35 193240 port 479 193240 unique_id port 193240 remote_ip 10.8.0.110 193247 username morteza4424 193247 kill_reason Maximum check online fails reached 193247 mac 193247 bytes_out 0 193247 bytes_in 0 193247 station_ip 83.123.70.159 193247 port 477 193247 unique_id port 193251 username morteza4424 193251 mac 193251 bytes_out 1644 193251 bytes_in 3739 193251 station_ip 83.123.70.159 193251 port 482 193251 unique_id port 193251 remote_ip 10.8.0.206 193254 username farhad3 193254 mac 193254 bytes_out 2859605 193254 bytes_in 34015348 193254 station_ip 5.120.62.231 193254 port 483 193254 unique_id port 193254 remote_ip 10.8.0.222 193255 username shahruz 193255 mac 193255 bytes_out 2098 193255 bytes_in 4415 193255 station_ip 83.123.122.85 193255 port 465 193255 unique_id port 193255 remote_ip 10.8.0.74 193259 username barzegar 193259 mac 193259 bytes_out 0 193259 bytes_in 0 193259 station_ip 5.119.204.241 193259 port 484 193259 unique_id port 193259 remote_ip 10.8.0.70 193260 username mohammadjavad 193260 mac 193260 bytes_out 581838 193260 bytes_in 9048571 193260 station_ip 83.123.113.35 193260 port 465 193260 unique_id port 193260 remote_ip 10.8.0.110 193263 username morteza4424 193263 mac 193263 bytes_out 0 193263 bytes_in 0 193263 station_ip 83.123.70.159 193263 port 487 193263 unique_id port 193263 remote_ip 10.8.0.206 193264 username sabaghnezhad 193264 mac 193264 bytes_out 148882 193264 bytes_in 684913 193264 station_ip 83.123.76.248 193264 port 479 193264 unique_id port 193264 remote_ip 10.8.0.66 193266 username shahruz 193266 mac 193266 bytes_out 0 193266 bytes_in 0 193224 remote_ip 10.8.0.74 193226 username shahruz 193226 mac 193226 bytes_out 0 193226 bytes_in 0 193226 station_ip 83.123.122.85 193226 port 477 193226 unique_id port 193226 remote_ip 10.8.0.74 193228 username shahruz 193228 mac 193228 bytes_out 0 193228 bytes_in 0 193228 station_ip 83.123.122.85 193228 port 477 193228 unique_id port 193228 remote_ip 10.8.0.74 193231 username shahruz 193231 mac 193231 bytes_out 0 193231 bytes_in 0 193231 station_ip 83.123.122.85 193231 port 482 193231 unique_id port 193231 remote_ip 10.8.0.74 193233 username morteza4424 193233 kill_reason Maximum check online fails reached 193233 mac 193233 bytes_out 0 193233 bytes_in 0 193233 station_ip 83.123.70.159 193233 port 473 193233 unique_id port 193236 username shahruz 193236 mac 193236 bytes_out 0 193236 bytes_in 0 193236 station_ip 83.123.122.85 193236 port 474 193236 unique_id port 193236 remote_ip 10.8.0.74 193239 username morteza4424 193239 mac 193239 bytes_out 0 193239 bytes_in 0 193239 station_ip 83.123.70.159 193239 port 465 193239 unique_id port 193239 remote_ip 10.8.0.206 193242 username morteza4424 193242 mac 193242 bytes_out 0 193242 bytes_in 0 193242 station_ip 83.123.70.159 193242 port 482 193242 unique_id port 193242 remote_ip 10.8.0.206 193243 username shahruz 193243 mac 193243 bytes_out 0 193243 bytes_in 0 193243 station_ip 83.123.122.85 193243 port 465 193243 unique_id port 193243 remote_ip 10.8.0.74 193245 username mohammadjavad 193245 mac 193245 bytes_out 0 193245 bytes_in 0 193245 station_ip 83.123.113.35 193245 port 479 193245 unique_id port 193245 remote_ip 10.8.0.110 193246 username shahruz 193246 mac 193246 bytes_out 0 193246 bytes_in 0 193246 station_ip 83.123.122.85 193246 port 465 193246 unique_id port 193246 remote_ip 10.8.0.74 193250 username shahruz 193250 mac 193250 bytes_out 0 193250 bytes_in 0 193250 station_ip 83.123.122.85 193250 port 465 193250 unique_id port 193250 remote_ip 10.8.0.74 193252 username mohammadjavad 193252 mac 193252 bytes_out 0 193252 bytes_in 0 193252 station_ip 83.123.113.35 193252 port 482 193252 unique_id port 193252 remote_ip 10.8.0.110 193257 username alipour1506 193257 mac 193257 bytes_out 324635 193257 bytes_in 3100215 193257 station_ip 83.123.18.226 193257 port 474 193257 unique_id port 193257 remote_ip 10.8.0.246 193258 username shahruz 193258 mac 193258 bytes_out 0 193258 bytes_in 0 193258 station_ip 83.123.122.85 193258 port 487 193258 unique_id port 193258 remote_ip 10.8.0.74 193261 username shahruz 193261 mac 193261 bytes_out 0 193261 bytes_in 0 193261 station_ip 83.123.122.85 193261 port 484 193261 unique_id port 193261 remote_ip 10.8.0.74 193262 username shahruz 193262 mac 193262 bytes_out 0 193262 bytes_in 0 193262 station_ip 83.123.122.85 193262 port 484 193262 unique_id port 193262 remote_ip 10.8.0.74 193265 username morteza4424 193265 mac 193265 bytes_out 0 193265 bytes_in 0 193265 station_ip 83.123.70.159 193265 port 484 193265 unique_id port 193265 remote_ip 10.8.0.206 193268 username shahruz 193268 mac 193268 bytes_out 0 193268 bytes_in 0 193268 station_ip 83.123.122.85 193268 port 484 193268 unique_id port 193268 remote_ip 10.8.0.74 193269 username morteza4424 193269 mac 193269 bytes_out 2122 193269 bytes_in 4561 193269 station_ip 83.123.70.159 193269 port 479 193269 unique_id port 193269 remote_ip 10.8.0.206 193270 username shahruz 193266 station_ip 83.123.122.85 193266 port 487 193266 unique_id port 193266 remote_ip 10.8.0.74 193267 username shahruz 193267 mac 193267 bytes_out 0 193267 bytes_in 0 193267 station_ip 83.123.122.85 193267 port 484 193267 unique_id port 193267 remote_ip 10.8.0.74 193273 username morteza4424 193273 mac 193273 bytes_out 488085 193273 bytes_in 8708010 193273 station_ip 83.123.70.159 193273 port 479 193273 unique_id port 193273 remote_ip 10.8.0.206 193277 username barzegar 193277 mac 193277 bytes_out 0 193277 bytes_in 0 193277 station_ip 5.119.204.241 193277 port 479 193277 unique_id port 193277 remote_ip 10.8.0.70 193278 username soleymani5056 193278 mac 193278 bytes_out 160526 193278 bytes_in 305199 193278 station_ip 5.119.241.66 193278 port 483 193278 unique_id port 193278 remote_ip 10.8.0.226 193280 username alipour1506 193280 mac 193280 bytes_out 125189 193280 bytes_in 267687 193280 station_ip 83.123.18.226 193280 port 486 193280 unique_id port 193280 remote_ip 10.8.0.246 193285 username hamid.e 193285 kill_reason Maximum number of concurrent logins reached 193285 unique_id port 193285 bytes_out 0 193285 bytes_in 0 193285 station_ip 37.27.29.42 193285 port 15729325 193285 nas_port_type Virtual 193286 username kalantary6037 193286 mac 193286 bytes_out 286304 193286 bytes_in 2494234 193286 station_ip 83.123.9.169 193286 port 465 193286 unique_id port 193286 remote_ip 10.8.0.50 193288 username zahra1101 193288 mac 193288 bytes_out 49382 193288 bytes_in 82554 193288 station_ip 5.120.61.24 193288 port 483 193288 unique_id port 193288 remote_ip 10.8.0.30 193292 username mostafa_es78 193292 mac 193292 bytes_out 0 193292 bytes_in 0 193292 station_ip 113.203.9.241 193292 port 478 193292 unique_id port 193292 remote_ip 10.8.0.34 193297 username mostafa_es78 193297 mac 193297 bytes_out 0 193297 bytes_in 0 193297 station_ip 113.203.9.241 193297 port 484 193297 unique_id port 193297 remote_ip 10.8.0.34 193298 username mostafa_es78 193298 mac 193298 bytes_out 0 193298 bytes_in 0 193298 station_ip 37.129.80.107 193298 port 478 193298 unique_id port 193298 remote_ip 10.8.0.34 193301 username mostafa_es78 193301 mac 193301 bytes_out 0 193301 bytes_in 0 193301 station_ip 113.203.9.241 193301 port 479 193301 unique_id port 193301 remote_ip 10.8.0.34 193303 username zahra1101 193303 mac 193303 bytes_out 1880 193303 bytes_in 5034 193303 station_ip 5.120.61.24 193303 port 478 193303 unique_id port 193303 remote_ip 10.8.0.30 193305 username barzegar 193305 mac 193305 bytes_out 16059 193305 bytes_in 51112 193305 station_ip 5.119.204.241 193305 port 483 193305 unique_id port 193305 remote_ip 10.8.0.70 193309 username mostafa_es78 193309 mac 193309 bytes_out 0 193309 bytes_in 0 193309 station_ip 113.203.9.241 193309 port 479 193309 unique_id port 193309 remote_ip 10.8.0.34 193312 username zahra1101 193312 mac 193312 bytes_out 1813 193312 bytes_in 5102 193312 station_ip 5.120.61.24 193312 port 479 193312 unique_id port 193312 remote_ip 10.8.0.30 193313 username zahra1101 193313 mac 193313 bytes_out 0 193313 bytes_in 0 193313 station_ip 5.120.61.24 193313 port 479 193313 unique_id port 193313 remote_ip 10.8.0.30 193316 username kalantary6037 193316 mac 193316 bytes_out 212740 193316 bytes_in 2511715 193316 station_ip 83.123.58.181 193316 port 479 193316 unique_id port 193316 remote_ip 10.8.0.50 193317 username mammad 193317 unique_id port 193317 terminate_cause User-Request 193317 bytes_out 1831833 193270 mac 193270 bytes_out 0 193270 bytes_in 0 193270 station_ip 83.123.122.85 193270 port 484 193270 unique_id port 193270 remote_ip 10.8.0.74 193272 username shahruz 193272 mac 193272 bytes_out 0 193272 bytes_in 0 193272 station_ip 83.123.122.85 193272 port 487 193272 unique_id port 193272 remote_ip 10.8.0.74 193283 username soleymani5056 193283 mac 193283 bytes_out 40343 193283 bytes_in 57706 193283 station_ip 5.120.179.54 193283 port 484 193283 unique_id port 193283 remote_ip 10.8.0.226 193284 username shahruz 193284 mac 193284 bytes_out 2039 193284 bytes_in 4552 193284 station_ip 83.123.122.85 193284 port 479 193284 unique_id port 193284 remote_ip 10.8.0.74 193294 username mostafa_es78 193294 mac 193294 bytes_out 0 193294 bytes_in 0 193294 station_ip 113.203.9.241 193294 port 483 193294 unique_id port 193294 remote_ip 10.8.0.34 193295 username mostafa_es78 193295 mac 193295 bytes_out 0 193295 bytes_in 0 193295 station_ip 37.129.80.107 193295 port 479 193295 unique_id port 193295 remote_ip 10.8.0.34 193299 username mostafa_es78 193299 mac 193299 bytes_out 0 193299 bytes_in 0 193299 station_ip 113.203.9.241 193299 port 479 193299 unique_id port 193299 remote_ip 10.8.0.34 193300 username mostafa_es78 193300 mac 193300 bytes_out 0 193300 bytes_in 0 193300 station_ip 37.129.80.107 193300 port 478 193300 unique_id port 193300 remote_ip 10.8.0.34 193302 username mostafa_es78 193302 mac 193302 bytes_out 0 193302 bytes_in 0 193302 station_ip 37.129.80.107 193302 port 484 193302 unique_id port 193302 remote_ip 10.8.0.34 193304 username mostafa_es78 193304 mac 193304 bytes_out 0 193304 bytes_in 0 193304 station_ip 113.203.9.241 193304 port 479 193304 unique_id port 193304 remote_ip 10.8.0.34 193306 username mostafa_es78 193306 mac 193306 bytes_out 0 193306 bytes_in 0 193306 station_ip 37.129.80.107 193306 port 484 193306 unique_id port 193306 remote_ip 10.8.0.34 193307 username mostafa_es78 193307 mac 193307 bytes_out 0 193307 bytes_in 0 193307 station_ip 113.203.9.241 193307 port 479 193307 unique_id port 193307 remote_ip 10.8.0.34 193308 username mostafa_es78 193308 mac 193308 bytes_out 0 193308 bytes_in 0 193308 station_ip 37.129.80.107 193308 port 483 193308 unique_id port 193308 remote_ip 10.8.0.34 193310 username mohammadjavad 193310 mac 193310 bytes_out 0 193310 bytes_in 0 193310 station_ip 83.123.113.35 193310 port 484 193310 unique_id port 193310 remote_ip 10.8.0.110 193311 username aminvpn 193311 mac 193311 bytes_out 19218 193311 bytes_in 33400 193311 station_ip 5.119.89.159 193311 port 478 193311 unique_id port 193311 remote_ip 10.8.0.58 193315 username mohammadjavad 193315 mac 193315 bytes_out 0 193315 bytes_in 0 193315 station_ip 83.123.113.35 193315 port 489 193315 unique_id port 193315 remote_ip 10.8.0.110 193322 username aminvpn 193322 mac 193322 bytes_out 25549 193322 bytes_in 61786 193322 station_ip 5.119.89.159 193322 port 484 193322 unique_id port 193322 remote_ip 10.8.0.58 193325 username hamid.e 193325 unique_id port 193325 terminate_cause User-Request 193325 bytes_out 11810005 193325 bytes_in 351613729 193325 station_ip 151.238.250.141 193325 port 15729310 193325 nas_port_type Virtual 193325 remote_ip 5.5.5.26 193329 username barzegar 193329 mac 193329 bytes_out 2628 193329 bytes_in 4921 193329 station_ip 5.119.204.241 193329 port 479 193329 unique_id port 193329 remote_ip 10.8.0.70 193331 username alipour1506 193331 mac 193276 port 465 193276 unique_id port 193276 remote_ip 10.8.0.74 193279 username motamedi9772 193279 mac 193279 bytes_out 0 193279 bytes_in 0 193279 station_ip 83.123.12.231 193279 port 479 193279 unique_id port 193279 remote_ip 10.8.0.154 193281 username shahruz 193281 mac 193281 bytes_out 1997 193281 bytes_in 4804 193281 station_ip 83.123.122.85 193281 port 483 193281 unique_id port 193281 remote_ip 10.8.0.74 193282 username motamedi9772 193282 mac 193282 bytes_out 29544 193282 bytes_in 64400 193282 station_ip 83.123.12.231 193282 port 479 193282 unique_id port 193282 remote_ip 10.8.0.154 193287 username alihosseini1 193287 mac 193287 bytes_out 0 193287 bytes_in 0 193287 station_ip 5.119.94.68 193287 port 478 193287 unique_id port 193289 username aminvpn 193289 unique_id port 193289 terminate_cause User-Request 193289 bytes_out 40725 193289 bytes_in 468111 193289 station_ip 83.123.53.100 193289 port 15729327 193289 nas_port_type Virtual 193289 remote_ip 5.5.5.21 193290 username mansour 193290 mac 193290 bytes_out 480940 193290 bytes_in 5434116 193290 station_ip 5.202.61.73 193290 port 478 193290 unique_id port 193290 remote_ip 10.8.0.10 193291 username mostafa_es78 193291 mac 193291 bytes_out 1805363 193291 bytes_in 14294851 193291 station_ip 37.129.80.107 193291 port 479 193291 unique_id port 193291 remote_ip 10.8.0.34 193293 username mostafa_es78 193293 mac 193293 bytes_out 0 193293 bytes_in 0 193293 station_ip 37.129.80.107 193293 port 479 193293 unique_id port 193293 remote_ip 10.8.0.34 193296 username esmaeilkazemi 193296 mac 193296 bytes_out 325807 193296 bytes_in 3199852 193296 station_ip 83.123.17.243 193296 port 478 193296 unique_id port 193296 remote_ip 10.8.0.26 193314 username mohammadjavad 193314 mac 193314 bytes_out 0 193314 bytes_in 0 193314 station_ip 83.123.113.35 193314 port 489 193314 unique_id port 193314 remote_ip 10.8.0.110 193318 username aminvpn 193318 mac 193318 bytes_out 28968 193318 bytes_in 102957 193318 station_ip 5.119.89.159 193318 port 484 193318 unique_id port 193318 remote_ip 10.8.0.58 193319 username zahra1101 193319 mac 193319 bytes_out 0 193319 bytes_in 0 193319 station_ip 5.120.61.24 193319 port 479 193319 unique_id port 193319 remote_ip 10.8.0.30 193321 username mohammadjavad 193321 mac 193321 bytes_out 0 193321 bytes_in 0 193321 station_ip 83.123.113.35 193321 port 489 193321 unique_id port 193321 remote_ip 10.8.0.110 193324 username arash 193324 mac 193324 bytes_out 1694561 193324 bytes_in 12881365 193324 station_ip 37.27.25.55 193324 port 478 193324 unique_id port 193324 remote_ip 10.8.0.250 193332 username zahra1101 193332 mac 193332 bytes_out 0 193332 bytes_in 0 193332 station_ip 5.120.61.24 193332 port 479 193332 unique_id port 193332 remote_ip 10.8.0.30 193333 username mohammadjavad 193333 kill_reason Another user logged on this global unique id 193333 mac 193333 bytes_out 0 193333 bytes_in 0 193333 station_ip 83.123.113.35 193333 port 483 193333 unique_id port 193333 remote_ip 10.8.0.110 193334 username soleymani5056 193334 kill_reason Maximum check online fails reached 193334 mac 193334 bytes_out 0 193334 bytes_in 0 193334 station_ip 5.120.102.216 193334 port 479 193334 unique_id port 193336 username kalantary6037 193336 mac 193336 bytes_out 0 193336 bytes_in 0 193336 station_ip 83.123.87.73 193336 port 489 193336 unique_id port 193336 remote_ip 10.8.0.50 193339 username barzegar 193339 mac 193339 bytes_out 0 193339 bytes_in 0 193317 bytes_in 26000807 193317 station_ip 2.183.248.32 193317 port 15729326 193317 nas_port_type Virtual 193317 remote_ip 5.5.5.32 193320 username barzegar 193320 mac 193320 bytes_out 15750 193320 bytes_in 21802 193320 station_ip 5.119.204.241 193320 port 483 193320 unique_id port 193320 remote_ip 10.8.0.70 193323 username farhad3 193323 mac 193323 bytes_out 801013 193323 bytes_in 3135264 193323 station_ip 5.120.62.231 193323 port 479 193323 unique_id port 193323 remote_ip 10.8.0.222 193326 username zahra1101 193326 mac 193326 bytes_out 0 193326 bytes_in 0 193326 station_ip 5.120.61.24 193326 port 478 193326 unique_id port 193326 remote_ip 10.8.0.30 193327 username esmaeili1522 193327 mac 193327 bytes_out 1151528 193327 bytes_in 18664520 193327 station_ip 5.119.160.97 193327 port 483 193327 unique_id port 193327 remote_ip 10.8.0.170 193328 username zahra1101 193328 mac 193328 bytes_out 0 193328 bytes_in 0 193328 station_ip 5.120.61.24 193328 port 479 193328 unique_id port 193328 remote_ip 10.8.0.30 193330 username barzegar8595 193330 mac 193330 bytes_out 127090 193330 bytes_in 531961 193330 station_ip 45.156.183.78 193330 port 478 193330 unique_id port 193330 remote_ip 10.8.0.114 193335 username zahra1101 193335 mac 193335 bytes_out 0 193335 bytes_in 0 193335 station_ip 5.120.61.24 193335 port 489 193335 unique_id port 193335 remote_ip 10.8.0.30 193337 username aminvpn 193337 unique_id port 193337 terminate_cause Lost-Carrier 193337 bytes_out 409936 193337 bytes_in 2417978 193337 station_ip 83.123.106.209 193337 port 15729331 193337 nas_port_type Virtual 193337 remote_ip 5.5.5.27 193340 username soleymani5056 193340 mac 193340 bytes_out 168798 193340 bytes_in 405134 193340 station_ip 5.120.102.216 193340 port 484 193340 unique_id port 193340 remote_ip 10.8.0.226 193343 username mostafa_es78 193343 kill_reason Another user logged on this global unique id 193343 mac 193343 bytes_out 0 193343 bytes_in 0 193343 station_ip 37.129.80.107 193343 port 486 193343 unique_id port 193343 remote_ip 10.8.0.34 193346 username arash 193346 mac 193346 bytes_out 1135115 193346 bytes_in 6956444 193346 station_ip 37.27.25.55 193346 port 487 193346 unique_id port 193346 remote_ip 10.8.0.250 193349 username hosseine 193349 kill_reason Another user logged on this global unique id 193349 mac 193349 bytes_out 0 193349 bytes_in 0 193349 station_ip 83.123.62.81 193349 port 465 193349 unique_id port 193351 username mostafa_es78 193351 mac 193351 bytes_out 0 193351 bytes_in 0 193351 station_ip 37.129.80.107 193351 port 486 193351 unique_id port 193352 username hosseine 193352 kill_reason Another user logged on this global unique id 193352 mac 193352 bytes_out 0 193352 bytes_in 0 193352 station_ip 83.123.62.81 193352 port 465 193352 unique_id port 193353 username esmaeilkazemi 193353 mac 193353 bytes_out 0 193353 bytes_in 0 193353 station_ip 83.123.17.243 193353 port 487 193353 unique_id port 193353 remote_ip 10.8.0.26 193361 username mohammadjavad 193361 mac 193361 bytes_out 0 193361 bytes_in 0 193361 station_ip 83.123.113.35 193361 port 483 193361 unique_id port 193363 username esmaeilkazemi 193363 mac 193363 bytes_out 0 193363 bytes_in 0 193363 station_ip 83.123.17.243 193363 port 484 193363 unique_id port 193363 remote_ip 10.8.0.26 193364 username barzegar 193364 mac 193364 bytes_out 141345 193364 bytes_in 486653 193364 station_ip 5.119.204.241 193364 port 490 193364 unique_id port 193364 remote_ip 10.8.0.70 193365 username esmaeilkazemi 193365 mac 193331 bytes_out 612267 193331 bytes_in 2155527 193331 station_ip 83.123.18.226 193331 port 487 193331 unique_id port 193331 remote_ip 10.8.0.246 193338 username alipour1506 193338 mac 193338 bytes_out 42516 193338 bytes_in 52216 193338 station_ip 83.123.18.226 193338 port 478 193338 unique_id port 193338 remote_ip 10.8.0.246 193344 username zahra1101 193344 mac 193344 bytes_out 4011 193344 bytes_in 6654 193344 station_ip 5.120.61.24 193344 port 478 193344 unique_id port 193344 remote_ip 10.8.0.30 193347 username soleymani5056 193347 mac 193347 bytes_out 151742 193347 bytes_in 59934 193347 station_ip 5.120.80.36 193347 port 435 193347 unique_id port 193347 remote_ip 10.8.0.226 193354 username zahra1101 193354 kill_reason Maximum check online fails reached 193354 mac 193354 bytes_out 0 193354 bytes_in 0 193354 station_ip 5.120.61.24 193354 port 486 193354 unique_id port 193356 username motamedi9772 193356 mac 193356 bytes_out 158235 193356 bytes_in 790936 193356 station_ip 83.123.127.91 193356 port 435 193356 unique_id port 193356 remote_ip 10.8.0.154 193357 username mostafa_es78 193357 mac 193357 bytes_out 31552 193357 bytes_in 31748 193357 station_ip 37.129.80.107 193357 port 484 193357 unique_id port 193357 remote_ip 10.8.0.34 193359 username esmaeilkazemi 193359 mac 193359 bytes_out 5385 193359 bytes_in 21802 193359 station_ip 83.123.17.243 193359 port 484 193359 unique_id port 193359 remote_ip 10.8.0.26 193371 username iranmanesh4443 193371 mac 193371 bytes_out 9640 193371 bytes_in 11003 193371 station_ip 5.119.255.153 193371 port 487 193371 unique_id port 193371 remote_ip 10.8.0.122 193375 username zahra1101 193375 mac 193375 bytes_out 3618 193375 bytes_in 5599 193375 station_ip 5.120.61.24 193375 port 435 193375 unique_id port 193375 remote_ip 10.8.0.30 193377 username mirzaei6046 193377 mac 193377 bytes_out 4495 193377 bytes_in 7002 193377 station_ip 5.112.213.233 193377 port 490 193377 unique_id port 193377 remote_ip 10.8.0.198 193379 username motamedi9772 193379 mac 193379 bytes_out 0 193379 bytes_in 0 193379 station_ip 83.123.127.91 193379 port 435 193379 unique_id port 193379 remote_ip 10.8.0.154 193383 username motamedi9772 193383 mac 193383 bytes_out 0 193383 bytes_in 0 193383 station_ip 83.123.127.91 193383 port 435 193383 unique_id port 193383 remote_ip 10.8.0.154 193384 username motamedi9772 193384 mac 193384 bytes_out 0 193384 bytes_in 0 193384 station_ip 83.123.127.91 193384 port 435 193384 unique_id port 193384 remote_ip 10.8.0.154 193392 username motamedi9772 193392 mac 193392 bytes_out 0 193392 bytes_in 0 193392 station_ip 83.123.127.91 193392 port 435 193392 unique_id port 193392 remote_ip 10.8.0.154 193394 username barzegar 193394 mac 193394 bytes_out 0 193394 bytes_in 0 193394 station_ip 5.119.204.241 193394 port 490 193394 unique_id port 193394 remote_ip 10.8.0.70 193401 username mirzaei6046 193401 mac 193401 bytes_out 36183 193401 bytes_in 77208 193401 station_ip 5.113.176.122 193401 port 484 193401 unique_id port 193401 remote_ip 10.8.0.198 193403 username soleymani5056 193403 mac 193403 bytes_out 0 193403 bytes_in 0 193403 station_ip 5.120.26.219 193403 port 435 193403 unique_id port 193403 remote_ip 10.8.0.226 193405 username hamid 193405 kill_reason Relative expiration date has reached 193405 mac 193405 bytes_out 0 193405 bytes_in 0 193405 station_ip 83.123.43.17 193405 port 435 193405 unique_id port 193408 username motamedi9772 193408 mac 193339 station_ip 5.119.204.241 193339 port 490 193339 unique_id port 193339 remote_ip 10.8.0.70 193341 username hosseine 193341 kill_reason Another user logged on this global unique id 193341 mac 193341 bytes_out 0 193341 bytes_in 0 193341 station_ip 83.123.62.81 193341 port 465 193341 unique_id port 193341 remote_ip 10.8.0.54 193342 username mirzaei6046 193342 mac 193342 bytes_out 0 193342 bytes_in 0 193342 station_ip 5.119.164.77 193342 port 435 193342 unique_id port 193345 username mirzaei6046 193345 mac 193345 bytes_out 1757 193345 bytes_in 4504 193345 station_ip 5.119.164.77 193345 port 484 193345 unique_id port 193345 remote_ip 10.8.0.198 193348 username mohammadjavad 193348 kill_reason Another user logged on this global unique id 193348 mac 193348 bytes_out 0 193348 bytes_in 0 193348 station_ip 83.123.113.35 193348 port 483 193348 unique_id port 193350 username barzegar 193350 mac 193350 bytes_out 143613 193350 bytes_in 992882 193350 station_ip 5.119.204.241 193350 port 490 193350 unique_id port 193350 remote_ip 10.8.0.70 193355 username esmaeilkazemi 193355 mac 193355 bytes_out 0 193355 bytes_in 0 193355 station_ip 83.123.17.243 193355 port 491 193355 unique_id port 193355 remote_ip 10.8.0.26 193358 username esmaeilkazemi 193358 mac 193358 bytes_out 16312 193358 bytes_in 48321 193358 station_ip 83.123.17.243 193358 port 487 193358 unique_id port 193358 remote_ip 10.8.0.26 193360 username zahra1101 193360 mac 193360 bytes_out 2064 193360 bytes_in 5129 193360 station_ip 5.120.61.24 193360 port 491 193360 unique_id port 193360 remote_ip 10.8.0.30 193362 username motamedi9772 193362 mac 193362 bytes_out 17736 193362 bytes_in 31702 193362 station_ip 83.123.127.91 193362 port 435 193362 unique_id port 193362 remote_ip 10.8.0.154 193366 username zahra1101 193366 mac 193366 bytes_out 0 193366 bytes_in 0 193366 station_ip 5.120.61.24 193366 port 483 193366 unique_id port 193366 remote_ip 10.8.0.30 193368 username esmaeilkazemi 193368 mac 193368 bytes_out 0 193368 bytes_in 0 193368 station_ip 83.123.17.243 193368 port 435 193368 unique_id port 193368 remote_ip 10.8.0.26 193370 username esmaeilkazemi 193370 mac 193370 bytes_out 13963 193370 bytes_in 34720 193370 station_ip 83.123.17.243 193370 port 484 193370 unique_id port 193370 remote_ip 10.8.0.26 193372 username motamedi9772 193372 mac 193372 bytes_out 110506 193372 bytes_in 621863 193372 station_ip 83.123.127.91 193372 port 483 193372 unique_id port 193372 remote_ip 10.8.0.154 193374 username sabaghnezhad 193374 mac 193374 bytes_out 171955 193374 bytes_in 167633 193374 station_ip 83.123.76.248 193374 port 488 193374 unique_id port 193374 remote_ip 10.8.0.66 193380 username barzegar 193380 mac 193380 bytes_out 3529 193380 bytes_in 5875 193380 station_ip 5.119.204.241 193380 port 491 193380 unique_id port 193380 remote_ip 10.8.0.70 193387 username motamedi9772 193387 mac 193387 bytes_out 0 193387 bytes_in 0 193387 station_ip 83.123.127.91 193387 port 435 193387 unique_id port 193387 remote_ip 10.8.0.154 193388 username motamedi9772 193388 mac 193388 bytes_out 0 193388 bytes_in 0 193388 station_ip 83.123.127.91 193388 port 435 193388 unique_id port 193388 remote_ip 10.8.0.154 193389 username motamedi9772 193389 mac 193389 bytes_out 0 193389 bytes_in 0 193389 station_ip 83.123.127.91 193389 port 435 193389 unique_id port 193389 remote_ip 10.8.0.154 193391 username barzegar 193391 mac 193391 bytes_out 0 193391 bytes_in 0 193365 bytes_out 0 193365 bytes_in 0 193365 station_ip 83.123.17.243 193365 port 435 193365 unique_id port 193365 remote_ip 10.8.0.26 193367 username esmaeilkazemi 193367 mac 193367 bytes_out 0 193367 bytes_in 0 193367 station_ip 83.123.17.243 193367 port 484 193367 unique_id port 193367 remote_ip 10.8.0.26 193369 username barzegar8595 193369 mac 193369 bytes_out 62099 193369 bytes_in 90218 193369 station_ip 5.202.135.214 193369 port 478 193369 unique_id port 193369 remote_ip 10.8.0.114 193373 username motamedi9772 193373 mac 193373 bytes_out 0 193373 bytes_in 0 193373 station_ip 83.123.127.91 193373 port 478 193373 unique_id port 193373 remote_ip 10.8.0.154 193376 username motamedi9772 193376 mac 193376 bytes_out 0 193376 bytes_in 0 193376 station_ip 83.123.127.91 193376 port 478 193376 unique_id port 193376 remote_ip 10.8.0.154 193378 username motamedi9772 193378 mac 193378 bytes_out 0 193378 bytes_in 0 193378 station_ip 83.123.127.91 193378 port 435 193378 unique_id port 193378 remote_ip 10.8.0.154 193381 username motamedi9772 193381 mac 193381 bytes_out 0 193381 bytes_in 0 193381 station_ip 83.123.127.91 193381 port 435 193381 unique_id port 193381 remote_ip 10.8.0.154 193382 username godarzi 193382 kill_reason Another user logged on this global unique id 193382 mac 193382 bytes_out 0 193382 bytes_in 0 193382 station_ip 45.84.157.190 193382 port 482 193382 unique_id port 193382 remote_ip 10.8.0.38 193385 username motamedi9772 193385 mac 193385 bytes_out 0 193385 bytes_in 0 193385 station_ip 83.123.127.91 193385 port 435 193385 unique_id port 193385 remote_ip 10.8.0.154 193386 username barzegar 193386 mac 193386 bytes_out 0 193386 bytes_in 0 193386 station_ip 5.119.204.241 193386 port 488 193386 unique_id port 193386 remote_ip 10.8.0.70 193390 username aminvpn 193390 unique_id port 193390 terminate_cause User-Request 193390 bytes_out 28933505 193390 bytes_in 859512273 193390 station_ip 31.57.123.217 193390 port 15729323 193390 nas_port_type Virtual 193390 remote_ip 5.5.5.22 193393 username motamedi9772 193393 mac 193393 bytes_out 0 193393 bytes_in 0 193393 station_ip 83.123.127.91 193393 port 435 193393 unique_id port 193393 remote_ip 10.8.0.154 193396 username motamedi9772 193396 mac 193396 bytes_out 0 193396 bytes_in 0 193396 station_ip 83.123.127.91 193396 port 435 193396 unique_id port 193396 remote_ip 10.8.0.154 193398 username motamedi9772 193398 mac 193398 bytes_out 0 193398 bytes_in 0 193398 station_ip 83.123.127.91 193398 port 435 193398 unique_id port 193398 remote_ip 10.8.0.154 193399 username motamedi9772 193399 mac 193399 bytes_out 0 193399 bytes_in 0 193399 station_ip 83.123.127.91 193399 port 435 193399 unique_id port 193399 remote_ip 10.8.0.154 193402 username barzegar 193402 mac 193402 bytes_out 0 193402 bytes_in 0 193402 station_ip 5.119.204.241 193402 port 492 193402 unique_id port 193402 remote_ip 10.8.0.70 193404 username motamedi9772 193404 mac 193404 bytes_out 0 193404 bytes_in 0 193404 station_ip 83.123.127.91 193404 port 491 193404 unique_id port 193404 remote_ip 10.8.0.154 193407 username hamid 193407 kill_reason Relative expiration date has reached 193407 mac 193407 bytes_out 0 193407 bytes_in 0 193407 station_ip 83.123.43.17 193407 port 491 193407 unique_id port 193412 username akbari0070 193412 kill_reason Another user logged on this global unique id 193412 mac 193412 bytes_out 0 193412 bytes_in 0 193412 station_ip 83.123.74.80 193412 port 478 193412 unique_id port 193391 station_ip 5.119.204.241 193391 port 490 193391 unique_id port 193391 remote_ip 10.8.0.70 193395 username motamedi9772 193395 mac 193395 bytes_out 0 193395 bytes_in 0 193395 station_ip 83.123.127.91 193395 port 435 193395 unique_id port 193395 remote_ip 10.8.0.154 193397 username motamedi9772 193397 mac 193397 bytes_out 0 193397 bytes_in 0 193397 station_ip 83.123.127.91 193397 port 435 193397 unique_id port 193397 remote_ip 10.8.0.154 193400 username motamedi9772 193400 mac 193400 bytes_out 0 193400 bytes_in 0 193400 station_ip 83.123.127.91 193400 port 491 193400 unique_id port 193400 remote_ip 10.8.0.154 193406 username motamedi9772 193406 mac 193406 bytes_out 0 193406 bytes_in 0 193406 station_ip 83.123.127.91 193406 port 435 193406 unique_id port 193406 remote_ip 10.8.0.154 193409 username hamid 193409 kill_reason Relative expiration date has reached 193409 mac 193409 bytes_out 0 193409 bytes_in 0 193409 station_ip 83.123.43.17 193409 port 435 193409 unique_id port 193411 username motamedi9772 193411 mac 193411 bytes_out 0 193411 bytes_in 0 193411 station_ip 83.123.127.91 193411 port 435 193411 unique_id port 193411 remote_ip 10.8.0.154 193414 username motamedi9772 193414 mac 193414 bytes_out 0 193414 bytes_in 0 193414 station_ip 83.123.127.91 193414 port 435 193414 unique_id port 193414 remote_ip 10.8.0.154 193417 username motamedi9772 193417 mac 193417 bytes_out 0 193417 bytes_in 0 193417 station_ip 83.123.127.91 193417 port 435 193417 unique_id port 193417 remote_ip 10.8.0.154 193421 username motamedi9772 193421 mac 193421 bytes_out 0 193421 bytes_in 0 193421 station_ip 83.123.127.91 193421 port 491 193421 unique_id port 193421 remote_ip 10.8.0.154 193423 username barzegar 193423 mac 193423 bytes_out 0 193423 bytes_in 0 193423 station_ip 5.119.204.241 193423 port 494 193423 unique_id port 193423 remote_ip 10.8.0.70 193426 username kalantary6037 193426 mac 193426 bytes_out 921012 193426 bytes_in 8910839 193426 station_ip 83.123.87.73 193426 port 492 193426 unique_id port 193426 remote_ip 10.8.0.50 193429 username motamedi9772 193429 mac 193429 bytes_out 0 193429 bytes_in 0 193429 station_ip 83.123.127.91 193429 port 492 193429 unique_id port 193429 remote_ip 10.8.0.154 193430 username hamid1430 193430 mac 193430 bytes_out 166401 193430 bytes_in 346005 193430 station_ip 83.123.43.17 193430 port 435 193430 unique_id port 193430 remote_ip 10.8.0.90 193433 username motamedi9772 193433 mac 193433 bytes_out 0 193433 bytes_in 0 193433 station_ip 83.123.127.91 193433 port 435 193433 unique_id port 193433 remote_ip 10.8.0.154 193435 username motamedi9772 193435 mac 193435 bytes_out 0 193435 bytes_in 0 193435 station_ip 83.123.127.91 193435 port 435 193435 unique_id port 193435 remote_ip 10.8.0.154 193443 username motamedi9772 193443 mac 193443 bytes_out 0 193443 bytes_in 0 193443 station_ip 83.123.127.91 193443 port 492 193443 unique_id port 193443 remote_ip 10.8.0.154 193452 username motamedi9772 193452 mac 193452 bytes_out 0 193452 bytes_in 0 193452 station_ip 83.123.127.91 193452 port 484 193452 unique_id port 193452 remote_ip 10.8.0.154 193453 username motamedi9772 193453 mac 193453 bytes_out 0 193453 bytes_in 0 193453 station_ip 83.123.127.91 193453 port 484 193453 unique_id port 193453 remote_ip 10.8.0.154 193454 username mirzaei6046 193454 mac 193454 bytes_out 93532 193454 bytes_in 514263 193454 station_ip 5.113.113.187 193408 bytes_out 0 193408 bytes_in 0 193408 station_ip 83.123.127.91 193408 port 435 193408 unique_id port 193408 remote_ip 10.8.0.154 193410 username motamedi9772 193410 mac 193410 bytes_out 0 193410 bytes_in 0 193410 station_ip 83.123.127.91 193410 port 435 193410 unique_id port 193410 remote_ip 10.8.0.154 193415 username motamedi9772 193415 mac 193415 bytes_out 0 193415 bytes_in 0 193415 station_ip 83.123.127.91 193415 port 435 193415 unique_id port 193415 remote_ip 10.8.0.154 193416 username motamedi9772 193416 mac 193416 bytes_out 0 193416 bytes_in 0 193416 station_ip 83.123.127.91 193416 port 435 193416 unique_id port 193416 remote_ip 10.8.0.154 193419 username hamid1430 193419 mac 193419 bytes_out 56390 193419 bytes_in 265302 193419 station_ip 83.123.43.17 193419 port 491 193419 unique_id port 193419 remote_ip 10.8.0.90 193422 username motamedi9772 193422 mac 193422 bytes_out 0 193422 bytes_in 0 193422 station_ip 83.123.127.91 193422 port 493 193422 unique_id port 193422 remote_ip 10.8.0.154 193425 username motamedi9772 193425 mac 193425 bytes_out 0 193425 bytes_in 0 193425 station_ip 83.123.127.91 193425 port 493 193425 unique_id port 193425 remote_ip 10.8.0.154 193427 username dortaj3792 193427 mac 193427 bytes_out 475944 193427 bytes_in 1128025 193427 station_ip 5.120.48.215 193427 port 487 193427 unique_id port 193427 remote_ip 10.8.0.102 193428 username motamedi9772 193428 mac 193428 bytes_out 0 193428 bytes_in 0 193428 station_ip 83.123.127.91 193428 port 493 193428 unique_id port 193428 remote_ip 10.8.0.154 193432 username zahra1101 193432 mac 193432 bytes_out 719873 193432 bytes_in 6920148 193432 station_ip 5.120.61.24 193432 port 488 193432 unique_id port 193432 remote_ip 10.8.0.30 193434 username motamedi9772 193434 mac 193434 bytes_out 0 193434 bytes_in 0 193434 station_ip 83.123.127.91 193434 port 435 193434 unique_id port 193434 remote_ip 10.8.0.154 193437 username motamedi9772 193437 mac 193437 bytes_out 0 193437 bytes_in 0 193437 station_ip 83.123.127.91 193437 port 435 193437 unique_id port 193437 remote_ip 10.8.0.154 193438 username motamedi9772 193438 mac 193438 bytes_out 0 193438 bytes_in 0 193438 station_ip 83.123.127.91 193438 port 435 193438 unique_id port 193438 remote_ip 10.8.0.154 193439 username motamedi9772 193439 mac 193439 bytes_out 0 193439 bytes_in 0 193439 station_ip 83.123.127.91 193439 port 435 193439 unique_id port 193439 remote_ip 10.8.0.154 193441 username motamedi9772 193441 mac 193441 bytes_out 0 193441 bytes_in 0 193441 station_ip 83.123.127.91 193441 port 435 193441 unique_id port 193441 remote_ip 10.8.0.154 193445 username motamedi9772 193445 mac 193445 bytes_out 0 193445 bytes_in 0 193445 station_ip 83.123.127.91 193445 port 484 193445 unique_id port 193445 remote_ip 10.8.0.154 193450 username motamedi9772 193450 mac 193450 bytes_out 0 193450 bytes_in 0 193450 station_ip 83.123.127.91 193450 port 484 193450 unique_id port 193450 remote_ip 10.8.0.154 193451 username motamedi9772 193451 mac 193451 bytes_out 0 193451 bytes_in 0 193451 station_ip 83.123.127.91 193451 port 484 193451 unique_id port 193451 remote_ip 10.8.0.154 193455 username motamedi9772 193455 mac 193455 bytes_out 0 193455 bytes_in 0 193455 station_ip 83.123.127.91 193455 port 484 193455 unique_id port 193455 remote_ip 10.8.0.154 193457 username motamedi9772 193457 mac 193457 bytes_out 0 193457 bytes_in 0 193412 remote_ip 10.8.0.166 193413 username saeeddamghani 193413 unique_id port 193413 terminate_cause User-Request 193413 bytes_out 126459 193413 bytes_in 1562086 193413 station_ip 83.123.114.16 193413 port 15729332 193413 nas_port_type Virtual 193413 remote_ip 5.5.5.20 193418 username motamedi9772 193418 mac 193418 bytes_out 0 193418 bytes_in 0 193418 station_ip 83.123.127.91 193418 port 435 193418 unique_id port 193418 remote_ip 10.8.0.154 193420 username motamedi9772 193420 mac 193420 bytes_out 0 193420 bytes_in 0 193420 station_ip 83.123.127.91 193420 port 435 193420 unique_id port 193420 remote_ip 10.8.0.154 193424 username motamedi9772 193424 mac 193424 bytes_out 0 193424 bytes_in 0 193424 station_ip 83.123.127.91 193424 port 493 193424 unique_id port 193424 remote_ip 10.8.0.154 193431 username motamedi9772 193431 mac 193431 bytes_out 0 193431 bytes_in 0 193431 station_ip 83.123.127.91 193431 port 492 193431 unique_id port 193431 remote_ip 10.8.0.154 193436 username mirzaei6046 193436 mac 193436 bytes_out 126004 193436 bytes_in 1051027 193436 station_ip 5.119.66.13 193436 port 491 193436 unique_id port 193436 remote_ip 10.8.0.198 193440 username motamedi9772 193440 mac 193440 bytes_out 0 193440 bytes_in 0 193440 station_ip 83.123.127.91 193440 port 435 193440 unique_id port 193440 remote_ip 10.8.0.154 193442 username soleymani5056 193442 mac 193442 bytes_out 140708 193442 bytes_in 128793 193442 station_ip 5.120.26.219 193442 port 484 193442 unique_id port 193442 remote_ip 10.8.0.226 193444 username godarzi 193444 kill_reason Another user logged on this global unique id 193444 mac 193444 bytes_out 0 193444 bytes_in 0 193444 station_ip 45.84.157.190 193444 port 482 193444 unique_id port 193446 username motamedi9772 193446 mac 193446 bytes_out 0 193446 bytes_in 0 193446 station_ip 83.123.127.91 193446 port 484 193446 unique_id port 193446 remote_ip 10.8.0.154 193447 username motamedi9772 193447 mac 193447 bytes_out 0 193447 bytes_in 0 193447 station_ip 83.123.127.91 193447 port 484 193447 unique_id port 193447 remote_ip 10.8.0.154 193448 username motamedi9772 193448 mac 193448 bytes_out 0 193448 bytes_in 0 193448 station_ip 83.123.127.91 193448 port 484 193448 unique_id port 193448 remote_ip 10.8.0.154 193449 username motamedi9772 193449 mac 193449 bytes_out 0 193449 bytes_in 0 193449 station_ip 83.123.127.91 193449 port 484 193449 unique_id port 193449 remote_ip 10.8.0.154 193456 username motamedi9772 193456 mac 193456 bytes_out 0 193456 bytes_in 0 193456 station_ip 83.123.127.91 193456 port 484 193456 unique_id port 193456 remote_ip 10.8.0.154 193461 username motamedi9772 193461 mac 193461 bytes_out 0 193461 bytes_in 0 193461 station_ip 83.123.127.91 193461 port 484 193461 unique_id port 193461 remote_ip 10.8.0.154 193462 username motamedi9772 193462 mac 193462 bytes_out 0 193462 bytes_in 0 193462 station_ip 83.123.127.91 193462 port 484 193462 unique_id port 193462 remote_ip 10.8.0.154 193466 username motamedi9772 193466 mac 193466 bytes_out 0 193466 bytes_in 0 193466 station_ip 83.123.127.91 193466 port 484 193466 unique_id port 193466 remote_ip 10.8.0.154 193467 username motamedi9772 193467 mac 193467 bytes_out 0 193467 bytes_in 0 193467 station_ip 83.123.127.91 193467 port 484 193467 unique_id port 193467 remote_ip 10.8.0.154 193474 username meysam 193474 kill_reason Another user logged on this global unique id 193474 mac 193474 bytes_out 0 193474 bytes_in 0 193454 port 491 193454 unique_id port 193454 remote_ip 10.8.0.198 193459 username motamedi9772 193459 mac 193459 bytes_out 0 193459 bytes_in 0 193459 station_ip 83.123.127.91 193459 port 484 193459 unique_id port 193459 remote_ip 10.8.0.154 193460 username motamedi9772 193460 mac 193460 bytes_out 0 193460 bytes_in 0 193460 station_ip 83.123.127.91 193460 port 484 193460 unique_id port 193460 remote_ip 10.8.0.154 193465 username motamedi9772 193465 mac 193465 bytes_out 0 193465 bytes_in 0 193465 station_ip 83.123.127.91 193465 port 484 193465 unique_id port 193465 remote_ip 10.8.0.154 193470 username motamedi9772 193470 mac 193470 bytes_out 0 193470 bytes_in 0 193470 station_ip 83.123.127.91 193470 port 484 193470 unique_id port 193470 remote_ip 10.8.0.154 193471 username kalantary6037 193471 mac 193471 bytes_out 3118994 193471 bytes_in 34118448 193471 station_ip 83.123.87.73 193471 port 492 193471 unique_id port 193471 remote_ip 10.8.0.50 193480 username motamedi9772 193480 mac 193480 bytes_out 0 193480 bytes_in 0 193480 station_ip 83.123.127.91 193480 port 490 193480 unique_id port 193480 remote_ip 10.8.0.154 193481 username motamedi9772 193481 mac 193481 bytes_out 0 193481 bytes_in 0 193481 station_ip 83.123.127.91 193481 port 484 193481 unique_id port 193481 remote_ip 10.8.0.154 193486 username motamedi9772 193486 mac 193486 bytes_out 0 193486 bytes_in 0 193486 station_ip 83.123.127.91 193486 port 490 193486 unique_id port 193486 remote_ip 10.8.0.154 193488 username motamedi9772 193488 mac 193488 bytes_out 0 193488 bytes_in 0 193488 station_ip 83.123.127.91 193488 port 490 193488 unique_id port 193488 remote_ip 10.8.0.154 193491 username motamedi9772 193491 mac 193491 bytes_out 0 193491 bytes_in 0 193491 station_ip 83.123.127.91 193491 port 490 193491 unique_id port 193491 remote_ip 10.8.0.154 193496 username motamedi9772 193496 mac 193496 bytes_out 0 193496 bytes_in 0 193496 station_ip 83.123.127.91 193496 port 478 193496 unique_id port 193496 remote_ip 10.8.0.154 193498 username motamedi9772 193498 mac 193498 bytes_out 0 193498 bytes_in 0 193498 station_ip 83.123.127.91 193498 port 478 193498 unique_id port 193498 remote_ip 10.8.0.154 193501 username motamedi9772 193501 mac 193501 bytes_out 0 193501 bytes_in 0 193501 station_ip 83.123.127.91 193501 port 478 193501 unique_id port 193501 remote_ip 10.8.0.154 193508 username mirzaei6046 193508 mac 193508 bytes_out 24861336 193508 bytes_in 21565119 193508 station_ip 5.119.60.30 193508 port 494 193508 unique_id port 193508 remote_ip 10.8.0.198 193515 username motamedi9772 193515 mac 193515 bytes_out 0 193515 bytes_in 0 193515 station_ip 83.123.127.91 193515 port 484 193515 unique_id port 193515 remote_ip 10.8.0.154 193517 username meysam 193517 mac 193517 bytes_out 0 193517 bytes_in 0 193517 station_ip 188.158.50.27 193517 port 435 193517 unique_id port 193520 username motamedi9772 193520 mac 193520 bytes_out 0 193520 bytes_in 0 193520 station_ip 83.123.127.91 193520 port 435 193520 unique_id port 193520 remote_ip 10.8.0.154 193525 username motamedi9772 193525 mac 193525 bytes_out 16761 193525 bytes_in 26459 193525 station_ip 83.123.127.91 193525 port 435 193525 unique_id port 193525 remote_ip 10.8.0.154 193526 username motamedi9772 193526 mac 193526 bytes_out 0 193526 bytes_in 0 193526 station_ip 83.123.127.91 193526 port 435 193526 unique_id port 193457 station_ip 83.123.127.91 193457 port 484 193457 unique_id port 193457 remote_ip 10.8.0.154 193458 username motamedi9772 193458 mac 193458 bytes_out 0 193458 bytes_in 0 193458 station_ip 83.123.127.91 193458 port 484 193458 unique_id port 193458 remote_ip 10.8.0.154 193463 username motamedi9772 193463 mac 193463 bytes_out 0 193463 bytes_in 0 193463 station_ip 83.123.127.91 193463 port 484 193463 unique_id port 193463 remote_ip 10.8.0.154 193464 username motamedi9772 193464 mac 193464 bytes_out 0 193464 bytes_in 0 193464 station_ip 83.123.127.91 193464 port 484 193464 unique_id port 193464 remote_ip 10.8.0.154 193468 username motamedi9772 193468 mac 193468 bytes_out 0 193468 bytes_in 0 193468 station_ip 83.123.127.91 193468 port 484 193468 unique_id port 193468 remote_ip 10.8.0.154 193469 username motamedi9772 193469 mac 193469 bytes_out 0 193469 bytes_in 0 193469 station_ip 83.123.127.91 193469 port 484 193469 unique_id port 193469 remote_ip 10.8.0.154 193472 username motamedi9772 193472 mac 193472 bytes_out 0 193472 bytes_in 0 193472 station_ip 83.123.127.91 193472 port 484 193472 unique_id port 193472 remote_ip 10.8.0.154 193473 username motamedi9772 193473 mac 193473 bytes_out 0 193473 bytes_in 0 193473 station_ip 83.123.127.91 193473 port 484 193473 unique_id port 193473 remote_ip 10.8.0.154 193475 username godarzi 193475 kill_reason Another user logged on this global unique id 193475 mac 193475 bytes_out 0 193475 bytes_in 0 193475 station_ip 45.84.157.190 193475 port 482 193475 unique_id port 193476 username motamedi9772 193476 mac 193476 bytes_out 6338 193476 bytes_in 11410 193476 station_ip 83.123.127.91 193476 port 484 193476 unique_id port 193476 remote_ip 10.8.0.154 193479 username motamedi9772 193479 mac 193479 bytes_out 0 193479 bytes_in 0 193479 station_ip 83.123.127.91 193479 port 484 193479 unique_id port 193479 remote_ip 10.8.0.154 193484 username motamedi9772 193484 mac 193484 bytes_out 0 193484 bytes_in 0 193484 station_ip 83.123.127.91 193484 port 484 193484 unique_id port 193484 remote_ip 10.8.0.154 193494 username motamedi9772 193494 mac 193494 bytes_out 0 193494 bytes_in 0 193494 station_ip 83.123.127.91 193494 port 478 193494 unique_id port 193494 remote_ip 10.8.0.154 193495 username motamedi9772 193495 mac 193495 bytes_out 0 193495 bytes_in 0 193495 station_ip 83.123.127.91 193495 port 478 193495 unique_id port 193495 remote_ip 10.8.0.154 193497 username motamedi9772 193497 mac 193497 bytes_out 0 193497 bytes_in 0 193497 station_ip 83.123.127.91 193497 port 478 193497 unique_id port 193497 remote_ip 10.8.0.154 193500 username motamedi9772 193500 mac 193500 bytes_out 0 193500 bytes_in 0 193500 station_ip 83.123.127.91 193500 port 478 193500 unique_id port 193500 remote_ip 10.8.0.154 193502 username zahra1101 193502 mac 193502 bytes_out 346942 193502 bytes_in 1380057 193502 station_ip 5.120.61.24 193502 port 488 193502 unique_id port 193502 remote_ip 10.8.0.30 193504 username motamedi9772 193504 mac 193504 bytes_out 0 193504 bytes_in 0 193504 station_ip 83.123.127.91 193504 port 478 193504 unique_id port 193504 remote_ip 10.8.0.154 193506 username motamedi9772 193506 mac 193506 bytes_out 0 193506 bytes_in 0 193506 station_ip 83.123.127.91 193506 port 488 193506 unique_id port 193506 remote_ip 10.8.0.154 193507 username hajghani 193507 mac 193507 bytes_out 22196 193507 bytes_in 31036 193507 station_ip 5.73.18.7 193474 station_ip 188.158.50.27 193474 port 435 193474 unique_id port 193474 remote_ip 10.8.0.158 193477 username motamedi9772 193477 mac 193477 bytes_out 0 193477 bytes_in 0 193477 station_ip 83.123.127.91 193477 port 492 193477 unique_id port 193477 remote_ip 10.8.0.154 193478 username meghdad1616 193478 mac 193478 bytes_out 29820090 193478 bytes_in 17605455 193478 station_ip 5.120.51.79 193478 port 490 193478 unique_id port 193478 remote_ip 10.8.0.230 193482 username motamedi9772 193482 mac 193482 bytes_out 0 193482 bytes_in 0 193482 station_ip 83.123.127.91 193482 port 484 193482 unique_id port 193482 remote_ip 10.8.0.154 193483 username motamedi9772 193483 mac 193483 bytes_out 0 193483 bytes_in 0 193483 station_ip 83.123.127.91 193483 port 484 193483 unique_id port 193483 remote_ip 10.8.0.154 193485 username motamedi9772 193485 mac 193485 bytes_out 0 193485 bytes_in 0 193485 station_ip 83.123.127.91 193485 port 484 193485 unique_id port 193485 remote_ip 10.8.0.154 193487 username malekpoir 193487 kill_reason Maximum check online fails reached 193487 mac 193487 bytes_out 225073 193487 bytes_in 637235 193487 station_ip 5.119.147.43 193487 port 491 193487 unique_id port 193487 remote_ip 10.8.0.18 193489 username akbari0070 193489 mac 193489 bytes_out 0 193489 bytes_in 0 193489 station_ip 83.123.74.80 193489 port 478 193489 unique_id port 193490 username akbari0070 193490 mac 193490 bytes_out 0 193490 bytes_in 0 193490 station_ip 83.123.74.80 193490 port 478 193490 unique_id port 193490 remote_ip 10.8.0.166 193492 username motamedi9772 193492 mac 193492 bytes_out 0 193492 bytes_in 0 193492 station_ip 83.123.127.91 193492 port 478 193492 unique_id port 193492 remote_ip 10.8.0.154 193493 username motamedi9772 193493 mac 193493 bytes_out 0 193493 bytes_in 0 193493 station_ip 83.123.127.91 193493 port 478 193493 unique_id port 193493 remote_ip 10.8.0.154 193499 username barzegar 193499 mac 193499 bytes_out 946107 193499 bytes_in 645362 193499 station_ip 5.119.204.241 193499 port 484 193499 unique_id port 193499 remote_ip 10.8.0.70 193503 username motamedi9772 193503 mac 193503 bytes_out 0 193503 bytes_in 0 193503 station_ip 83.123.127.91 193503 port 478 193503 unique_id port 193503 remote_ip 10.8.0.154 193505 username motamedi9772 193505 mac 193505 bytes_out 0 193505 bytes_in 0 193505 station_ip 83.123.127.91 193505 port 488 193505 unique_id port 193505 remote_ip 10.8.0.154 193511 username motamedi9772 193511 mac 193511 bytes_out 0 193511 bytes_in 0 193511 station_ip 83.123.127.91 193511 port 484 193511 unique_id port 193511 remote_ip 10.8.0.154 193521 username motamedi9772 193521 mac 193521 bytes_out 0 193521 bytes_in 0 193521 station_ip 83.123.127.91 193521 port 435 193521 unique_id port 193521 remote_ip 10.8.0.154 193527 username motamedi9772 193527 mac 193527 bytes_out 0 193527 bytes_in 0 193527 station_ip 83.123.127.91 193527 port 435 193527 unique_id port 193527 remote_ip 10.8.0.154 193528 username motamedi9772 193528 mac 193528 bytes_out 11097 193528 bytes_in 15345 193528 station_ip 83.123.127.91 193528 port 435 193528 unique_id port 193528 remote_ip 10.8.0.154 193530 username motamedi9772 193530 mac 193530 bytes_out 0 193530 bytes_in 0 193530 station_ip 83.123.127.91 193530 port 435 193530 unique_id port 193530 remote_ip 10.8.0.154 193531 username yaghobi 193531 mac 193531 bytes_out 369272 193531 bytes_in 982104 193531 station_ip 83.123.94.120 193507 port 484 193507 unique_id port 193507 remote_ip 10.8.0.106 193509 username motamedi9772 193509 mac 193509 bytes_out 0 193509 bytes_in 0 193509 station_ip 83.123.127.91 193509 port 490 193509 unique_id port 193509 remote_ip 10.8.0.154 193510 username motamedi9772 193510 mac 193510 bytes_out 0 193510 bytes_in 0 193510 station_ip 83.123.127.91 193510 port 484 193510 unique_id port 193510 remote_ip 10.8.0.154 193512 username motamedi9772 193512 mac 193512 bytes_out 0 193512 bytes_in 0 193512 station_ip 83.123.127.91 193512 port 484 193512 unique_id port 193512 remote_ip 10.8.0.154 193513 username motamedi9772 193513 mac 193513 bytes_out 0 193513 bytes_in 0 193513 station_ip 83.123.127.91 193513 port 484 193513 unique_id port 193513 remote_ip 10.8.0.154 193514 username motamedi9772 193514 mac 193514 bytes_out 0 193514 bytes_in 0 193514 station_ip 83.123.127.91 193514 port 484 193514 unique_id port 193514 remote_ip 10.8.0.154 193516 username motamedi9772 193516 mac 193516 bytes_out 0 193516 bytes_in 0 193516 station_ip 83.123.127.91 193516 port 484 193516 unique_id port 193516 remote_ip 10.8.0.154 193518 username motamedi9772 193518 mac 193518 bytes_out 0 193518 bytes_in 0 193518 station_ip 83.123.127.91 193518 port 484 193518 unique_id port 193518 remote_ip 10.8.0.154 193519 username motamedi9772 193519 mac 193519 bytes_out 0 193519 bytes_in 0 193519 station_ip 83.123.127.91 193519 port 435 193519 unique_id port 193519 remote_ip 10.8.0.154 193522 username motamedi9772 193522 mac 193522 bytes_out 0 193522 bytes_in 0 193522 station_ip 83.123.127.91 193522 port 435 193522 unique_id port 193522 remote_ip 10.8.0.154 193523 username motamedi9772 193523 mac 193523 bytes_out 0 193523 bytes_in 0 193523 station_ip 83.123.127.91 193523 port 435 193523 unique_id port 193523 remote_ip 10.8.0.154 193524 username barzegar 193524 mac 193524 bytes_out 0 193524 bytes_in 0 193524 station_ip 5.119.204.241 193524 port 492 193524 unique_id port 193524 remote_ip 10.8.0.70 193532 username motamedi9772 193532 mac 193532 bytes_out 0 193532 bytes_in 0 193532 station_ip 83.123.127.91 193532 port 492 193532 unique_id port 193532 remote_ip 10.8.0.154 193537 username motamedi9772 193537 mac 193537 bytes_out 0 193537 bytes_in 0 193537 station_ip 83.123.127.91 193537 port 490 193537 unique_id port 193537 remote_ip 10.8.0.154 193545 username esmaeilkazemi 193545 mac 193545 bytes_out 555472 193545 bytes_in 6914666 193545 station_ip 83.123.78.227 193545 port 496 193545 unique_id port 193545 remote_ip 10.8.0.26 193546 username fezealinaghi 193546 mac 193546 bytes_out 3507265 193546 bytes_in 34654082 193546 station_ip 83.123.123.114 193546 port 474 193546 unique_id port 193546 remote_ip 10.8.0.202 193548 username kalantary6037 193548 mac 193548 bytes_out 3002988 193548 bytes_in 34596832 193548 station_ip 83.123.39.169 193548 port 494 193548 unique_id port 193548 remote_ip 10.8.0.50 193549 username meysam 193549 mac 193549 bytes_out 2382677 193549 bytes_in 33204513 193549 station_ip 188.158.50.27 193549 port 496 193549 unique_id port 193549 remote_ip 10.8.0.158 193553 username zahra1101 193553 mac 193553 bytes_out 0 193553 bytes_in 0 193553 station_ip 5.120.61.24 193553 port 488 193553 unique_id port 193553 remote_ip 10.8.0.30 193555 username zahra1101 193555 kill_reason Maximum check online fails reached 193555 mac 193555 bytes_out 0 193555 bytes_in 0 193555 station_ip 5.120.61.24 193526 remote_ip 10.8.0.154 193529 username motamedi9772 193529 mac 193529 bytes_out 0 193529 bytes_in 0 193529 station_ip 83.123.127.91 193529 port 435 193529 unique_id port 193529 remote_ip 10.8.0.154 193533 username motamedi9772 193533 mac 193533 bytes_out 0 193533 bytes_in 0 193533 station_ip 83.123.127.91 193533 port 490 193533 unique_id port 193533 remote_ip 10.8.0.154 193534 username motamedi9772 193534 mac 193534 bytes_out 0 193534 bytes_in 0 193534 station_ip 83.123.127.91 193534 port 490 193534 unique_id port 193534 remote_ip 10.8.0.154 193539 username motamedi9772 193539 mac 193539 bytes_out 0 193539 bytes_in 0 193539 station_ip 83.123.127.91 193539 port 490 193539 unique_id port 193539 remote_ip 10.8.0.154 193540 username motamedi9772 193540 mac 193540 bytes_out 0 193540 bytes_in 0 193540 station_ip 83.123.127.91 193540 port 490 193540 unique_id port 193540 remote_ip 10.8.0.154 193541 username mirzaei6046 193541 mac 193541 bytes_out 464223 193541 bytes_in 2236445 193541 station_ip 5.119.60.30 193541 port 435 193541 unique_id port 193541 remote_ip 10.8.0.198 193542 username yaghobi 193542 mac 193542 bytes_out 121489 193542 bytes_in 185997 193542 station_ip 83.123.7.61 193542 port 495 193542 unique_id port 193542 remote_ip 10.8.0.138 193547 username fezealinaghi 193547 mac 193547 bytes_out 0 193547 bytes_in 0 193547 station_ip 83.123.123.114 193547 port 497 193547 unique_id port 193547 remote_ip 10.8.0.202 193552 username barzegar8595 193552 mac 193552 bytes_out 2304648 193552 bytes_in 21631480 193552 station_ip 46.225.208.233 193552 port 487 193552 unique_id port 193552 remote_ip 10.8.0.114 193558 username kharazmi2920 193558 mac 193558 bytes_out 114285 193558 bytes_in 111727 193558 station_ip 83.123.122.251 193558 port 500 193558 unique_id port 193558 remote_ip 10.8.0.22 193562 username akbari0070 193562 mac 193562 bytes_out 620328 193562 bytes_in 8364897 193562 station_ip 83.123.74.80 193562 port 499 193562 unique_id port 193562 remote_ip 10.8.0.166 193566 username soleymani5056 193566 mac 193566 bytes_out 237916 193566 bytes_in 688830 193566 station_ip 5.119.237.187 193566 port 494 193566 unique_id port 193566 remote_ip 10.8.0.226 193573 username godarzi 193573 kill_reason Another user logged on this global unique id 193573 mac 193573 bytes_out 0 193573 bytes_in 0 193573 station_ip 45.84.157.190 193573 port 482 193573 unique_id port 193575 username zahra1101 193575 mac 193575 bytes_out 0 193575 bytes_in 0 193575 station_ip 5.120.61.24 193575 port 496 193575 unique_id port 193575 remote_ip 10.8.0.30 193580 username malekpoir 193580 mac 193580 bytes_out 0 193580 bytes_in 0 193580 station_ip 5.119.147.43 193580 port 491 193580 unique_id port 193583 username jafari 193583 kill_reason Another user logged on this global unique id 193583 mac 193583 bytes_out 0 193583 bytes_in 0 193583 station_ip 5.200.102.60 193583 port 495 193583 unique_id port 193585 username akbari0070 193585 mac 193585 bytes_out 0 193585 bytes_in 0 193585 station_ip 83.123.87.48 193585 port 494 193585 unique_id port 193590 username barzegar 193590 mac 193590 bytes_out 5251 193590 bytes_in 6835 193590 station_ip 5.119.204.241 193590 port 491 193590 unique_id port 193590 remote_ip 10.8.0.70 193591 username alihosseini1 193591 mac 193591 bytes_out 0 193591 bytes_in 0 193591 station_ip 5.120.1.34 193591 port 484 193591 unique_id port 193591 remote_ip 10.8.0.118 193592 username kharazmi2920 193531 port 490 193531 unique_id port 193531 remote_ip 10.8.0.138 193535 username motamedi9772 193535 mac 193535 bytes_out 0 193535 bytes_in 0 193535 station_ip 83.123.127.91 193535 port 490 193535 unique_id port 193535 remote_ip 10.8.0.154 193536 username motamedi9772 193536 mac 193536 bytes_out 0 193536 bytes_in 0 193536 station_ip 83.123.127.91 193536 port 490 193536 unique_id port 193536 remote_ip 10.8.0.154 193538 username barzegar 193538 mac 193538 bytes_out 0 193538 bytes_in 0 193538 station_ip 5.119.204.241 193538 port 492 193538 unique_id port 193538 remote_ip 10.8.0.70 193543 username motamedi9772 193543 mac 193543 bytes_out 108260 193543 bytes_in 505484 193543 station_ip 83.123.127.91 193543 port 490 193543 unique_id port 193543 remote_ip 10.8.0.154 193544 username jafari 193544 mac 193544 bytes_out 2223554 193544 bytes_in 21204697 193544 station_ip 5.200.125.122 193544 port 492 193544 unique_id port 193544 remote_ip 10.8.0.178 193550 username zahra1101 193550 mac 193550 bytes_out 1514711 193550 bytes_in 10617653 193550 station_ip 5.120.61.24 193550 port 488 193550 unique_id port 193550 remote_ip 10.8.0.30 193551 username mostafa_es78 193551 mac 193551 bytes_out 972245 193551 bytes_in 8061571 193551 station_ip 37.129.80.107 193551 port 490 193551 unique_id port 193551 remote_ip 10.8.0.34 193554 username godarzi 193554 kill_reason Another user logged on this global unique id 193554 mac 193554 bytes_out 0 193554 bytes_in 0 193554 station_ip 45.84.157.190 193554 port 482 193554 unique_id port 193557 username yaghobi 193557 mac 193557 bytes_out 67710 193557 bytes_in 91332 193557 station_ip 83.123.123.74 193557 port 484 193557 unique_id port 193557 remote_ip 10.8.0.138 193561 username meghdad1616 193561 mac 193561 bytes_out 0 193561 bytes_in 0 193561 station_ip 5.120.51.79 193561 port 490 193561 unique_id port 193561 remote_ip 10.8.0.230 193563 username mostafa_es78 193563 mac 193563 bytes_out 547257 193563 bytes_in 6400467 193563 station_ip 37.129.80.107 193563 port 488 193563 unique_id port 193563 remote_ip 10.8.0.34 193567 username jafari 193567 kill_reason Another user logged on this global unique id 193567 mac 193567 bytes_out 0 193567 bytes_in 0 193567 station_ip 5.200.102.60 193567 port 495 193567 unique_id port 193567 remote_ip 10.8.0.178 193569 username alihosseini1 193569 mac 193569 bytes_out 0 193569 bytes_in 0 193569 station_ip 5.120.1.34 193569 port 494 193569 unique_id port 193569 remote_ip 10.8.0.118 193571 username dortaj3792 193571 mac 193571 bytes_out 664202 193571 bytes_in 809726 193571 station_ip 5.119.127.229 193571 port 492 193571 unique_id port 193571 remote_ip 10.8.0.102 193574 username alihosseini1 193574 mac 193574 bytes_out 0 193574 bytes_in 0 193574 station_ip 5.120.1.34 193574 port 494 193574 unique_id port 193574 remote_ip 10.8.0.118 193577 username motamedi9772 193577 mac 193577 bytes_out 552531 193577 bytes_in 3176937 193577 station_ip 83.123.36.251 193577 port 490 193577 unique_id port 193577 remote_ip 10.8.0.154 193579 username houshang 193579 mac 193579 bytes_out 20113 193579 bytes_in 61595 193579 station_ip 5.119.242.94 193579 port 496 193579 unique_id port 193579 remote_ip 10.8.0.82 193582 username alihosseini1 193582 mac 193582 bytes_out 0 193582 bytes_in 0 193582 station_ip 5.120.1.34 193582 port 492 193582 unique_id port 193582 remote_ip 10.8.0.118 193584 username kharazmi2920 193584 mac 193584 bytes_out 1032862 193555 port 497 193555 unique_id port 193556 username kharazmi2920 193556 mac 193556 bytes_out 1246823 193556 bytes_in 7617555 193556 station_ip 83.123.122.251 193556 port 484 193556 unique_id port 193556 remote_ip 10.8.0.22 193559 username alikomsari 193559 mac 193559 bytes_out 376079 193559 bytes_in 1507143 193559 station_ip 5.119.141.197 193559 port 490 193559 unique_id port 193559 remote_ip 10.8.0.214 193560 username barzegar 193560 mac 193560 bytes_out 11156 193560 bytes_in 27989 193560 station_ip 5.119.204.241 193560 port 496 193560 unique_id port 193560 remote_ip 10.8.0.70 193564 username hamid.e 193564 unique_id port 193564 terminate_cause Lost-Carrier 193564 bytes_out 402667 193564 bytes_in 6182101 193564 station_ip 37.27.29.42 193564 port 15729335 193564 nas_port_type Virtual 193564 remote_ip 5.5.5.36 193565 username zahra1101 193565 mac 193565 bytes_out 8773 193565 bytes_in 9883 193565 station_ip 5.120.61.24 193565 port 498 193565 unique_id port 193565 remote_ip 10.8.0.30 193568 username barzegar 193568 mac 193568 bytes_out 9792 193568 bytes_in 12045 193568 station_ip 5.119.204.241 193568 port 490 193568 unique_id port 193568 remote_ip 10.8.0.70 193570 username houshang 193570 mac 193570 bytes_out 91029 193570 bytes_in 237082 193570 station_ip 5.120.77.164 193570 port 496 193570 unique_id port 193570 remote_ip 10.8.0.82 193572 username sabaghnezhad 193572 mac 193572 bytes_out 554307 193572 bytes_in 1359156 193572 station_ip 83.123.10.133 193572 port 483 193572 unique_id port 193572 remote_ip 10.8.0.66 193576 username rashidi4690 193576 mac 193576 bytes_out 5970726 193576 bytes_in 41564264 193576 station_ip 5.119.122.142 193576 port 478 193576 unique_id port 193576 remote_ip 10.8.0.242 193578 username akbari0070 193578 kill_reason Another user logged on this global unique id 193578 mac 193578 bytes_out 0 193578 bytes_in 0 193578 station_ip 83.123.87.48 193578 port 494 193578 unique_id port 193578 remote_ip 10.8.0.166 193581 username barzegar 193581 mac 193581 bytes_out 30228 193581 bytes_in 54565 193581 station_ip 5.119.204.241 193581 port 492 193581 unique_id port 193581 remote_ip 10.8.0.70 193586 username khademi 193586 kill_reason Another user logged on this global unique id 193586 mac 193586 bytes_out 0 193586 bytes_in 0 193586 station_ip 83.123.100.96 193586 port 490 193586 unique_id port 193586 remote_ip 10.8.0.14 193587 username kharazmi2920 193587 mac 193587 bytes_out 0 193587 bytes_in 0 193587 station_ip 83.123.122.251 193587 port 484 193587 unique_id port 193587 remote_ip 10.8.0.22 193593 username kalantary6037 193593 mac 193593 bytes_out 2193985 193593 bytes_in 23220947 193593 station_ip 83.123.124.113 193593 port 496 193593 unique_id port 193593 remote_ip 10.8.0.50 193595 username rashidi4690 193595 mac 193595 bytes_out 738218 193595 bytes_in 1254166 193595 station_ip 5.120.79.186 193595 port 478 193595 unique_id port 193595 remote_ip 10.8.0.242 193597 username alihosseini1 193597 mac 193597 bytes_out 0 193597 bytes_in 0 193597 station_ip 5.120.1.34 193597 port 478 193597 unique_id port 193597 remote_ip 10.8.0.118 193598 username jafari 193598 mac 193598 bytes_out 0 193598 bytes_in 0 193598 station_ip 5.200.102.60 193598 port 495 193598 unique_id port 193599 username alihosseini1 193599 mac 193599 bytes_out 39859 193599 bytes_in 36050 193599 station_ip 5.120.1.34 193599 port 478 193599 unique_id port 193599 remote_ip 10.8.0.118 193600 username khademi 193600 kill_reason Another user logged on this global unique id 193584 bytes_in 5254422 193584 station_ip 83.123.122.251 193584 port 484 193584 unique_id port 193584 remote_ip 10.8.0.22 193588 username sabaghnezhad 193588 mac 193588 bytes_out 1027419 193588 bytes_in 4826531 193588 station_ip 83.123.10.133 193588 port 483 193588 unique_id port 193588 remote_ip 10.8.0.66 193589 username kharazmi2920 193589 mac 193589 bytes_out 0 193589 bytes_in 0 193589 station_ip 83.123.122.251 193589 port 492 193589 unique_id port 193589 remote_ip 10.8.0.22 193596 username meghdad1616 193596 mac 193596 bytes_out 2217 193596 bytes_in 4494 193596 station_ip 5.120.51.79 193596 port 483 193596 unique_id port 193596 remote_ip 10.8.0.230 193604 username hosseine 193604 kill_reason Another user logged on this global unique id 193604 mac 193604 bytes_out 0 193604 bytes_in 0 193604 station_ip 83.123.62.81 193604 port 465 193604 unique_id port 193606 username naeimeh 193606 mac 193606 bytes_out 0 193606 bytes_in 0 193606 station_ip 83.123.124.51 193606 port 478 193606 unique_id port 193606 remote_ip 10.8.0.78 193609 username naeimeh 193609 mac 193609 bytes_out 0 193609 bytes_in 0 193609 station_ip 83.123.64.29 193609 port 478 193609 unique_id port 193609 remote_ip 10.8.0.78 193617 username morteza4424 193617 mac 193617 bytes_out 613125 193617 bytes_in 9156180 193617 station_ip 83.123.34.35 193617 port 492 193617 unique_id port 193617 remote_ip 10.8.0.206 193618 username aminvpn 193618 unique_id port 193618 terminate_cause Lost-Carrier 193618 bytes_out 6253970 193618 bytes_in 95822834 193618 station_ip 5.120.162.21 193618 port 15729333 193618 nas_port_type Virtual 193618 remote_ip 5.5.5.35 193622 username morteza4424 193622 mac 193622 bytes_out 1644 193622 bytes_in 4649 193622 station_ip 83.123.34.35 193622 port 490 193622 unique_id port 193622 remote_ip 10.8.0.206 193624 username morteza4424 193624 mac 193624 bytes_out 0 193624 bytes_in 0 193624 station_ip 83.123.34.35 193624 port 490 193624 unique_id port 193624 remote_ip 10.8.0.206 193628 username meghdad1616 193628 mac 193628 bytes_out 4645 193628 bytes_in 12723 193628 station_ip 5.120.51.79 193628 port 494 193628 unique_id port 193628 remote_ip 10.8.0.230 193629 username naeimeh 193629 kill_reason Another user logged on this global unique id 193629 mac 193629 bytes_out 0 193629 bytes_in 0 193629 station_ip 83.123.99.243 193629 port 484 193629 unique_id port 193629 remote_ip 10.8.0.78 193630 username hamid.e 193630 unique_id port 193630 terminate_cause User-Request 193630 bytes_out 6385127 193630 bytes_in 108314630 193630 station_ip 37.27.33.189 193630 port 15729336 193630 nas_port_type Virtual 193630 remote_ip 5.5.5.18 193634 username morteza4424 193634 mac 193634 bytes_out 0 193634 bytes_in 0 193634 station_ip 83.123.34.35 193634 port 492 193634 unique_id port 193634 remote_ip 10.8.0.206 193635 username morteza4424 193635 mac 193635 bytes_out 1644 193635 bytes_in 4824 193635 station_ip 83.123.34.35 193635 port 492 193635 unique_id port 193635 remote_ip 10.8.0.206 193636 username morteza4424 193636 mac 193636 bytes_out 0 193636 bytes_in 0 193636 station_ip 83.123.34.35 193636 port 492 193636 unique_id port 193636 remote_ip 10.8.0.206 193637 username esmaeili1522 193637 mac 193637 bytes_out 1144700 193637 bytes_in 8822007 193637 station_ip 5.119.246.221 193637 port 478 193637 unique_id port 193637 remote_ip 10.8.0.170 193640 username morteza4424 193640 mac 193640 bytes_out 0 193640 bytes_in 0 193640 station_ip 83.123.34.35 193640 port 492 193640 unique_id port 193592 mac 193592 bytes_out 134296 193592 bytes_in 819075 193592 station_ip 83.123.122.251 193592 port 483 193592 unique_id port 193592 remote_ip 10.8.0.22 193594 username zahra1101 193594 mac 193594 bytes_out 0 193594 bytes_in 0 193594 station_ip 5.120.61.24 193594 port 484 193594 unique_id port 193594 remote_ip 10.8.0.30 193601 username alihosseini1 193601 mac 193601 bytes_out 0 193601 bytes_in 0 193601 station_ip 5.120.1.34 193601 port 478 193601 unique_id port 193601 remote_ip 10.8.0.118 193607 username zahra1101 193607 mac 193607 bytes_out 0 193607 bytes_in 0 193607 station_ip 5.120.61.24 193607 port 478 193607 unique_id port 193607 remote_ip 10.8.0.30 193608 username naeimeh 193608 mac 193608 bytes_out 1310317 193608 bytes_in 16848235 193608 station_ip 83.123.64.29 193608 port 483 193608 unique_id port 193608 remote_ip 10.8.0.78 193610 username naeimeh 193610 mac 193610 bytes_out 0 193610 bytes_in 0 193610 station_ip 83.123.64.29 193610 port 483 193610 unique_id port 193610 remote_ip 10.8.0.78 193614 username alihosseini1 193614 mac 193614 bytes_out 410424 193614 bytes_in 3105032 193614 station_ip 5.119.80.130 193614 port 490 193614 unique_id port 193614 remote_ip 10.8.0.118 193619 username esmaeilkazemi 193619 mac 193619 bytes_out 1636 193619 bytes_in 3731 193619 station_ip 83.123.78.227 193619 port 494 193619 unique_id port 193619 remote_ip 10.8.0.26 193623 username esmaeili1522 193623 mac 193623 bytes_out 0 193623 bytes_in 0 193623 station_ip 5.119.246.221 193623 port 478 193623 unique_id port 193623 remote_ip 10.8.0.170 193625 username mohammadjavad 193625 mac 193625 bytes_out 461309 193625 bytes_in 2598589 193625 station_ip 83.123.68.250 193625 port 488 193625 unique_id port 193625 remote_ip 10.8.0.110 193627 username morteza4424 193627 mac 193627 bytes_out 0 193627 bytes_in 0 193627 station_ip 83.123.34.35 193627 port 488 193627 unique_id port 193627 remote_ip 10.8.0.206 193632 username morteza4424 193632 mac 193632 bytes_out 0 193632 bytes_in 0 193632 station_ip 83.123.34.35 193632 port 492 193632 unique_id port 193632 remote_ip 10.8.0.206 193638 username morteza4424 193638 mac 193638 bytes_out 0 193638 bytes_in 0 193638 station_ip 83.123.34.35 193638 port 492 193638 unique_id port 193638 remote_ip 10.8.0.206 193639 username naeimeh 193639 mac 193639 bytes_out 0 193639 bytes_in 0 193639 station_ip 83.123.99.243 193639 port 484 193639 unique_id port 193644 username morteza4424 193644 mac 193644 bytes_out 0 193644 bytes_in 0 193644 station_ip 83.123.34.35 193644 port 478 193644 unique_id port 193644 remote_ip 10.8.0.206 193645 username aminvpn 193645 unique_id port 193645 terminate_cause User-Request 193645 bytes_out 12677998 193645 bytes_in 405322645 193645 station_ip 31.57.125.52 193645 port 15729334 193645 nas_port_type Virtual 193645 remote_ip 5.5.5.19 193650 username soleymani5056 193650 mac 193650 bytes_out 35177 193650 bytes_in 46924 193650 station_ip 5.119.157.99 193650 port 492 193650 unique_id port 193650 remote_ip 10.8.0.226 193652 username yaghobi 193652 mac 193652 bytes_out 449090 193652 bytes_in 1602565 193652 station_ip 83.123.65.122 193652 port 493 193652 unique_id port 193652 remote_ip 10.8.0.138 193653 username meghdad1616 193653 mac 193653 bytes_out 39244 193653 bytes_in 131850 193653 station_ip 5.120.51.79 193653 port 494 193653 unique_id port 193653 remote_ip 10.8.0.230 193655 username yaghobi 193658 terminate_cause Lost-Carrier 193600 mac 193600 bytes_out 0 193600 bytes_in 0 193600 station_ip 83.123.100.96 193600 port 490 193600 unique_id port 193602 username alihosseini1 193602 mac 193602 bytes_out 37676 193602 bytes_in 14867 193602 station_ip 5.120.1.34 193602 port 478 193602 unique_id port 193602 remote_ip 10.8.0.118 193603 username barzegar 193603 mac 193603 bytes_out 0 193603 bytes_in 0 193603 station_ip 151.235.87.42 193603 port 478 193603 unique_id port 193603 remote_ip 10.8.0.70 193605 username meghdad1616 193605 mac 193605 bytes_out 0 193605 bytes_in 0 193605 station_ip 5.120.51.79 193605 port 478 193605 unique_id port 193605 remote_ip 10.8.0.230 193611 username khademi 193611 mac 193611 bytes_out 0 193611 bytes_in 0 193611 station_ip 83.123.100.96 193611 port 490 193611 unique_id port 193612 username meghdad1616 193612 mac 193612 bytes_out 0 193612 bytes_in 0 193612 station_ip 5.120.51.79 193612 port 491 193612 unique_id port 193612 remote_ip 10.8.0.230 193613 username mostafa_es78 193613 mac 193613 bytes_out 184332 193613 bytes_in 776412 193613 station_ip 37.129.80.107 193613 port 488 193613 unique_id port 193613 remote_ip 10.8.0.34 193615 username alipour1506 193615 kill_reason Another user logged on this global unique id 193615 mac 193615 bytes_out 0 193615 bytes_in 0 193615 station_ip 78.39.25.121 193615 port 489 193615 unique_id port 193615 remote_ip 10.8.0.246 193616 username esmaeilkazemi 193616 mac 193616 bytes_out 0 193616 bytes_in 0 193616 station_ip 83.123.78.227 193616 port 490 193616 unique_id port 193616 remote_ip 10.8.0.26 193620 username morteza4424 193620 mac 193620 bytes_out 0 193620 bytes_in 0 193620 station_ip 83.123.34.35 193620 port 490 193620 unique_id port 193620 remote_ip 10.8.0.206 193621 username kalantary6037 193621 mac 193621 bytes_out 2314547 193621 bytes_in 30795609 193621 station_ip 83.123.40.125 193621 port 478 193621 unique_id port 193621 remote_ip 10.8.0.50 193626 username morteza4424 193626 mac 193626 bytes_out 2013 193626 bytes_in 4258 193626 station_ip 83.123.34.35 193626 port 492 193626 unique_id port 193626 remote_ip 10.8.0.206 193631 username morteza4424 193631 kill_reason Maximum check online fails reached 193631 mac 193631 bytes_out 0 193631 bytes_in 0 193631 station_ip 83.123.34.35 193631 port 488 193631 unique_id port 193633 username hamid1430 193633 mac 193633 bytes_out 6311032 193633 bytes_in 27018602 193633 station_ip 83.123.43.17 193633 port 493 193633 unique_id port 193633 remote_ip 10.8.0.90 193641 username alihosseini1 193641 mac 193641 bytes_out 3724 193641 bytes_in 6138 193641 station_ip 5.119.71.245 193641 port 478 193641 unique_id port 193641 remote_ip 10.8.0.118 193642 username morteza4424 193642 mac 193642 bytes_out 0 193642 bytes_in 0 193642 station_ip 83.123.34.35 193642 port 484 193642 unique_id port 193642 remote_ip 10.8.0.206 193643 username morteza4424 193643 mac 193643 bytes_out 0 193643 bytes_in 0 193643 station_ip 83.123.34.35 193643 port 478 193643 unique_id port 193643 remote_ip 10.8.0.206 193647 username iranmanesh4443 193647 mac 193647 bytes_out 554794 193647 bytes_in 9460564 193647 station_ip 5.119.255.153 193647 port 478 193647 unique_id port 193647 remote_ip 10.8.0.122 193649 username hosseine 193649 kill_reason Another user logged on this global unique id 193649 mac 193649 bytes_out 0 193649 bytes_in 0 193649 station_ip 83.123.62.81 193649 port 465 193649 unique_id port 193658 username alirezazadeh 193658 unique_id port 193640 remote_ip 10.8.0.206 193646 username godarzi 193646 kill_reason Another user logged on this global unique id 193646 mac 193646 bytes_out 0 193646 bytes_in 0 193646 station_ip 45.84.157.190 193646 port 482 193646 unique_id port 193648 username iranmanesh4443 193648 kill_reason Maximum check online fails reached 193648 mac 193648 bytes_out 0 193648 bytes_in 0 193648 station_ip 5.119.255.153 193648 port 484 193648 unique_id port 193651 username godarzi 193651 mac 193651 bytes_out 0 193651 bytes_in 0 193651 station_ip 45.84.157.190 193651 port 482 193651 unique_id port 193654 username soleymani5056 193654 mac 193654 bytes_out 146921 193654 bytes_in 659496 193654 station_ip 5.119.157.99 193654 port 492 193654 unique_id port 193654 remote_ip 10.8.0.226 193659 username meghdad1616 193659 mac 193659 bytes_out 0 193659 bytes_in 0 193659 station_ip 5.120.51.79 193659 port 496 193659 unique_id port 193659 remote_ip 10.8.0.230 193660 username soleymani5056 193660 mac 193660 bytes_out 312648 193660 bytes_in 2158765 193660 station_ip 5.120.94.187 193660 port 493 193660 unique_id port 193660 remote_ip 10.8.0.226 193665 username meghdad1616 193665 mac 193665 bytes_out 0 193665 bytes_in 0 193665 station_ip 5.120.51.79 193665 port 491 193665 unique_id port 193665 remote_ip 10.8.0.230 193666 username farhad3 193666 kill_reason Another user logged on this global unique id 193666 mac 193666 bytes_out 0 193666 bytes_in 0 193666 station_ip 5.120.62.231 193666 port 496 193666 unique_id port 193666 remote_ip 10.8.0.222 193667 username yaghobi 193667 mac 193667 bytes_out 52375 193667 bytes_in 65437 193667 station_ip 83.123.29.49 193667 port 499 193667 unique_id port 193667 remote_ip 10.8.0.138 193669 username hamid1430 193669 mac 193669 bytes_out 1443258 193669 bytes_in 12078941 193669 station_ip 83.123.111.61 193669 port 494 193669 unique_id port 193669 remote_ip 10.8.0.90 193671 username alihosseini1 193671 mac 193671 bytes_out 240057 193671 bytes_in 1270997 193671 station_ip 5.120.33.240 193671 port 500 193671 unique_id port 193671 remote_ip 10.8.0.118 193674 username sabaghnezhad 193674 mac 193674 bytes_out 203609 193674 bytes_in 392157 193674 station_ip 83.123.112.165 193674 port 498 193674 unique_id port 193674 remote_ip 10.8.0.66 193677 username rahim 193677 kill_reason Another user logged on this global unique id 193677 mac 193677 bytes_out 0 193677 bytes_in 0 193677 station_ip 5.119.97.228 193677 port 493 193677 unique_id port 193677 remote_ip 10.8.0.134 193678 username moslem6940 193678 mac 193678 bytes_out 1081695 193678 bytes_in 16723252 193678 station_ip 83.123.19.239 193678 port 496 193678 unique_id port 193678 remote_ip 10.8.0.186 193682 username yaghobi 193682 mac 193682 bytes_out 151180 193682 bytes_in 245151 193682 station_ip 83.123.29.49 193682 port 494 193682 unique_id port 193682 remote_ip 10.8.0.138 193685 username khademi 193685 kill_reason Another user logged on this global unique id 193685 mac 193685 bytes_out 0 193685 bytes_in 0 193685 station_ip 83.123.100.96 193685 port 483 193685 unique_id port 193686 username meghdad1616 193686 mac 193686 bytes_out 3274 193686 bytes_in 5559 193686 station_ip 5.120.51.79 193686 port 498 193686 unique_id port 193686 remote_ip 10.8.0.230 193695 username rahim 193695 mac 193695 bytes_out 0 193695 bytes_in 0 193695 station_ip 5.119.97.228 193695 port 493 193695 unique_id port 193696 username ahmadi1 193696 mac 193696 bytes_out 3219278 193696 bytes_in 2982010 193696 station_ip 83.123.54.172 193655 kill_reason Maximum check online fails reached 193655 mac 193655 bytes_out 0 193655 bytes_in 0 193655 station_ip 83.123.66.6 193655 port 482 193655 unique_id port 193656 username saeed9658 193656 mac 193656 bytes_out 58856 193656 bytes_in 211865 193656 station_ip 5.119.69.156 193656 port 495 193656 unique_id port 193656 remote_ip 10.8.0.162 193657 username barzegar8595 193657 mac 193657 bytes_out 840063 193657 bytes_in 5934786 193657 station_ip 46.225.208.158 193657 port 487 193657 unique_id port 193657 remote_ip 10.8.0.114 193661 username soleymani5056 193661 mac 193661 bytes_out 18187 193661 bytes_in 18677 193661 station_ip 5.120.74.43 193661 port 493 193661 unique_id port 193661 remote_ip 10.8.0.226 193662 username motamedi9772 193662 mac 193662 bytes_out 2035359 193662 bytes_in 15476847 193662 station_ip 83.123.60.95 193662 port 496 193662 unique_id port 193662 remote_ip 10.8.0.154 193664 username mostafa_es78 193664 mac 193664 bytes_out 2292609 193664 bytes_in 25257673 193664 station_ip 37.129.80.107 193664 port 491 193664 unique_id port 193664 remote_ip 10.8.0.34 193670 username khademi 193670 kill_reason Another user logged on this global unique id 193670 mac 193670 bytes_out 0 193670 bytes_in 0 193670 station_ip 83.123.100.96 193670 port 483 193670 unique_id port 193670 remote_ip 10.8.0.14 193672 username alihosseini1 193672 mac 193672 bytes_out 70648 193672 bytes_in 56435 193672 station_ip 5.120.33.240 193672 port 494 193672 unique_id port 193672 remote_ip 10.8.0.118 193675 username meghdad1616 193675 mac 193675 bytes_out 36789 193675 bytes_in 60698 193675 station_ip 5.120.51.79 193675 port 494 193675 unique_id port 193675 remote_ip 10.8.0.230 193676 username farhad3 193676 mac 193676 bytes_out 0 193676 bytes_in 0 193676 station_ip 5.120.62.231 193676 port 496 193676 unique_id port 193680 username moslem6940 193680 mac 193680 bytes_out 0 193680 bytes_in 0 193680 station_ip 83.123.19.239 193680 port 502 193680 unique_id port 193680 remote_ip 10.8.0.186 193681 username moslem6940 193681 mac 193681 bytes_out 0 193681 bytes_in 0 193681 station_ip 83.123.19.239 193681 port 502 193681 unique_id port 193681 remote_ip 10.8.0.186 193683 username esmaeili1522 193683 mac 193683 bytes_out 969763 193683 bytes_in 7923191 193683 station_ip 5.119.246.221 193683 port 499 193683 unique_id port 193683 remote_ip 10.8.0.170 193684 username moslem6940 193684 mac 193684 bytes_out 0 193684 bytes_in 0 193684 station_ip 83.123.19.239 193684 port 494 193684 unique_id port 193684 remote_ip 10.8.0.186 193687 username motamedi9772 193687 kill_reason Another user logged on this global unique id 193687 mac 193687 bytes_out 0 193687 bytes_in 0 193687 station_ip 83.123.60.95 193687 port 491 193687 unique_id port 193687 remote_ip 10.8.0.154 193688 username moslem6940 193688 kill_reason Maximum number of concurrent logins reached 193688 mac 193688 bytes_out 0 193688 bytes_in 0 193688 station_ip 83.123.19.239 193688 port 498 193688 unique_id port 193690 username moslem6940 193690 mac 193690 bytes_out 1739 193690 bytes_in 3896 193690 station_ip 83.123.19.239 193690 port 494 193690 unique_id port 193690 remote_ip 10.8.0.186 193693 username sabaghnezhad 193693 mac 193693 bytes_out 128969 193693 bytes_in 412442 193693 station_ip 83.123.112.165 193693 port 501 193693 unique_id port 193693 remote_ip 10.8.0.66 193694 username aminvpn 193694 unique_id port 193694 terminate_cause Lost-Carrier 193694 bytes_out 99027 193694 bytes_in 204795 193694 station_ip 83.123.106.209 193658 bytes_out 142401 193658 bytes_in 1850262 193658 station_ip 5.119.19.136 193658 port 15729337 193658 nas_port_type Virtual 193658 remote_ip 5.5.5.17 193663 username morteza4424 193663 kill_reason Another user logged on this global unique id 193663 mac 193663 bytes_out 0 193663 bytes_in 0 193663 station_ip 83.123.34.35 193663 port 478 193663 unique_id port 193663 remote_ip 10.8.0.206 193668 username akbari0070 193668 kill_reason Another user logged on this global unique id 193668 mac 193668 bytes_out 0 193668 bytes_in 0 193668 station_ip 83.123.115.187 193668 port 495 193668 unique_id port 193668 remote_ip 10.8.0.166 193673 username alihosseini1 193673 mac 193673 bytes_out 0 193673 bytes_in 0 193673 station_ip 5.120.33.240 193673 port 501 193673 unique_id port 193673 remote_ip 10.8.0.118 193679 username sobhan 193679 unique_id port 193679 terminate_cause Lost-Carrier 193679 bytes_out 137428 193679 bytes_in 607436 193679 station_ip 5.119.225.27 193679 port 15729339 193679 nas_port_type Virtual 193679 remote_ip 5.5.5.16 193689 username saeeddamghani 193689 mac 193689 bytes_out 404867 193689 bytes_in 3664054 193689 station_ip 217.60.218.109 193689 port 496 193689 unique_id port 193689 remote_ip 10.8.0.174 193691 username moslem6940 193691 kill_reason Maximum check online fails reached 193691 mac 193691 bytes_out 0 193691 bytes_in 0 193691 station_ip 83.123.19.239 193691 port 502 193691 unique_id port 193692 username fezealinaghi 193692 kill_reason Another user logged on this global unique id 193692 mac 193692 bytes_out 0 193692 bytes_in 0 193692 station_ip 83.123.123.114 193692 port 474 193692 unique_id port 193692 remote_ip 10.8.0.202 193700 username yaghobi 193700 mac 193700 bytes_out 80247 193700 bytes_in 139253 193700 station_ip 83.123.21.10 193700 port 494 193700 unique_id port 193700 remote_ip 10.8.0.138 193702 username yaghobi 193702 mac 193702 bytes_out 25847 193702 bytes_in 33142 193702 station_ip 83.123.21.10 193702 port 487 193702 unique_id port 193702 remote_ip 10.8.0.138 193703 username sekonji0496 193703 mac 193703 bytes_out 216073 193703 bytes_in 2279552 193703 station_ip 83.123.74.26 193703 port 493 193703 unique_id port 193703 remote_ip 10.8.0.62 193706 username morteza4424 193706 mac 193706 bytes_out 0 193706 bytes_in 0 193706 station_ip 83.123.34.35 193706 port 478 193706 unique_id port 193707 username motamedi9772 193707 kill_reason Another user logged on this global unique id 193707 mac 193707 bytes_out 0 193707 bytes_in 0 193707 station_ip 83.123.60.95 193707 port 491 193707 unique_id port 193709 username barzegar 193709 mac 193709 bytes_out 0 193709 bytes_in 0 193709 station_ip 5.119.204.241 193709 port 494 193709 unique_id port 193709 remote_ip 10.8.0.70 193710 username sekonji0496 193710 mac 193710 bytes_out 2831 193710 bytes_in 4836 193710 station_ip 83.123.74.26 193710 port 478 193710 unique_id port 193710 remote_ip 10.8.0.62 193712 username fezealinaghi 193712 kill_reason Another user logged on this global unique id 193712 mac 193712 bytes_out 0 193712 bytes_in 0 193712 station_ip 83.123.123.114 193712 port 474 193712 unique_id port 193713 username alikomsari 193713 mac 193713 bytes_out 483501 193713 bytes_in 4821876 193713 station_ip 5.119.141.197 193713 port 493 193713 unique_id port 193713 remote_ip 10.8.0.214 193714 username alirezaza 193714 unique_id port 193714 terminate_cause User-Request 193714 bytes_out 293 193714 bytes_in 196 193714 station_ip 5.120.34.143 193714 port 15729341 193714 nas_port_type Virtual 193714 remote_ip 5.5.5.15 193715 username sekonji0496 193715 mac 193694 port 15729340 193694 nas_port_type Virtual 193694 remote_ip 5.5.5.27 193705 username meghdad1616 193705 mac 193705 bytes_out 3188 193705 bytes_in 10425 193705 station_ip 5.120.51.79 193705 port 494 193705 unique_id port 193705 remote_ip 10.8.0.230 193717 username sekonji0496 193717 mac 193717 bytes_out 0 193717 bytes_in 0 193717 station_ip 83.123.74.26 193717 port 478 193717 unique_id port 193717 remote_ip 10.8.0.62 193722 username sekonji0496 193722 mac 193722 bytes_out 236850 193722 bytes_in 2269315 193722 station_ip 83.123.74.26 193722 port 478 193722 unique_id port 193722 remote_ip 10.8.0.62 193723 username meghdad1616 193723 mac 193723 bytes_out 57937 193723 bytes_in 102820 193723 station_ip 5.120.51.79 193723 port 494 193723 unique_id port 193723 remote_ip 10.8.0.230 193724 username sekonji0496 193724 mac 193724 bytes_out 19489 193724 bytes_in 399200 193724 station_ip 83.123.74.26 193724 port 478 193724 unique_id port 193724 remote_ip 10.8.0.62 193728 username sekonji0496 193728 mac 193728 bytes_out 7213 193728 bytes_in 63926 193728 station_ip 83.123.74.26 193728 port 478 193728 unique_id port 193728 remote_ip 10.8.0.62 193729 username sekonji0496 193729 mac 193729 bytes_out 0 193729 bytes_in 0 193729 station_ip 83.123.74.26 193729 port 478 193729 unique_id port 193729 remote_ip 10.8.0.62 193732 username houshang 193732 mac 193732 bytes_out 1355642 193732 bytes_in 17127238 193732 station_ip 5.120.50.128 193732 port 493 193732 unique_id port 193732 remote_ip 10.8.0.82 193742 username sekonji0496 193742 mac 193742 bytes_out 0 193742 bytes_in 0 193742 station_ip 83.123.74.26 193742 port 493 193742 unique_id port 193742 remote_ip 10.8.0.62 193746 username soleymani5056 193746 mac 193746 bytes_out 307971 193746 bytes_in 2571881 193746 station_ip 5.120.179.161 193746 port 487 193746 unique_id port 193746 remote_ip 10.8.0.226 193754 username farhad3 193754 kill_reason Another user logged on this global unique id 193754 mac 193754 bytes_out 0 193754 bytes_in 0 193754 station_ip 5.120.62.231 193754 port 498 193754 unique_id port 193759 username hosseine 193759 kill_reason Another user logged on this global unique id 193759 mac 193759 bytes_out 0 193759 bytes_in 0 193759 station_ip 83.123.62.81 193759 port 465 193759 unique_id port 193762 username meghdad1616 193762 mac 193762 bytes_out 3617 193762 bytes_in 5414 193762 station_ip 5.120.51.79 193762 port 483 193762 unique_id port 193762 remote_ip 10.8.0.230 193764 username farhad3 193764 mac 193764 bytes_out 0 193764 bytes_in 0 193764 station_ip 5.120.62.231 193764 port 498 193764 unique_id port 193766 username meghdad1616 193766 mac 193766 bytes_out 0 193766 bytes_in 0 193766 station_ip 5.120.51.79 193766 port 478 193766 unique_id port 193766 remote_ip 10.8.0.230 193769 username barzegar 193769 mac 193769 bytes_out 0 193769 bytes_in 0 193769 station_ip 5.119.204.241 193769 port 487 193769 unique_id port 193769 remote_ip 10.8.0.70 193770 username nilufarrajaei 193770 mac 193770 bytes_out 585919 193770 bytes_in 59471 193770 station_ip 83.123.83.154 193770 port 478 193770 unique_id port 193770 remote_ip 10.8.0.194 193775 username motamedi9772 193775 kill_reason Another user logged on this global unique id 193775 mac 193775 bytes_out 0 193775 bytes_in 0 193775 station_ip 83.123.60.95 193775 port 491 193775 unique_id port 193778 username meghdad1616 193778 mac 193778 bytes_out 21173 193778 bytes_in 318708 193778 station_ip 5.120.168.218 193778 port 490 193696 port 494 193696 unique_id port 193696 remote_ip 10.8.0.94 193697 username saeed9658 193697 mac 193697 bytes_out 3075653 193697 bytes_in 26613267 193697 station_ip 5.119.69.156 193697 port 487 193697 unique_id port 193697 remote_ip 10.8.0.162 193698 username nekheei 193698 mac 193698 bytes_out 1427991 193698 bytes_in 20918728 193698 station_ip 5.120.114.7 193698 port 503 193698 unique_id port 193698 remote_ip 10.8.0.46 193699 username akbari0070 193699 kill_reason Another user logged on this global unique id 193699 mac 193699 bytes_out 0 193699 bytes_in 0 193699 station_ip 83.123.115.187 193699 port 495 193699 unique_id port 193701 username meghdad1616 193701 mac 193701 bytes_out 6256 193701 bytes_in 6575 193701 station_ip 5.120.51.79 193701 port 487 193701 unique_id port 193701 remote_ip 10.8.0.230 193704 username sekonji0496 193704 mac 193704 bytes_out 0 193704 bytes_in 0 193704 station_ip 83.123.74.26 193704 port 493 193704 unique_id port 193704 remote_ip 10.8.0.62 193708 username sekonji0496 193708 mac 193708 bytes_out 0 193708 bytes_in 0 193708 station_ip 83.123.74.26 193708 port 478 193708 unique_id port 193708 remote_ip 10.8.0.62 193711 username farhad3 193711 kill_reason Another user logged on this global unique id 193711 mac 193711 bytes_out 0 193711 bytes_in 0 193711 station_ip 5.120.62.231 193711 port 498 193711 unique_id port 193711 remote_ip 10.8.0.222 193719 username fezealinaghi 193719 mac 193719 bytes_out 0 193719 bytes_in 0 193719 station_ip 83.123.123.114 193719 port 474 193719 unique_id port 193720 username khademi 193720 mac 193720 bytes_out 0 193720 bytes_in 0 193720 station_ip 83.123.100.96 193720 port 483 193720 unique_id port 193721 username akbari0070 193721 mac 193721 bytes_out 0 193721 bytes_in 0 193721 station_ip 83.123.115.187 193721 port 495 193721 unique_id port 193731 username sekonji0496 193731 mac 193731 bytes_out 0 193731 bytes_in 0 193731 station_ip 83.123.74.26 193731 port 478 193731 unique_id port 193731 remote_ip 10.8.0.62 193737 username sekonji0496 193737 mac 193737 bytes_out 0 193737 bytes_in 0 193737 station_ip 83.123.74.26 193737 port 478 193737 unique_id port 193737 remote_ip 10.8.0.62 193738 username sekonji0496 193738 mac 193738 bytes_out 2899 193738 bytes_in 5117 193738 station_ip 83.123.74.26 193738 port 478 193738 unique_id port 193738 remote_ip 10.8.0.62 193739 username sekonji0496 193739 mac 193739 bytes_out 0 193739 bytes_in 0 193739 station_ip 83.123.74.26 193739 port 493 193739 unique_id port 193739 remote_ip 10.8.0.62 193740 username sekonji0496 193740 mac 193740 bytes_out 3013 193740 bytes_in 5136 193740 station_ip 83.123.74.26 193740 port 493 193740 unique_id port 193740 remote_ip 10.8.0.62 193741 username kalantary6037 193741 mac 193741 bytes_out 949415 193741 bytes_in 8341275 193741 station_ip 83.123.124.109 193741 port 492 193741 unique_id port 193741 remote_ip 10.8.0.50 193744 username motamedi9772 193744 kill_reason Another user logged on this global unique id 193744 mac 193744 bytes_out 0 193744 bytes_in 0 193744 station_ip 83.123.60.95 193744 port 491 193744 unique_id port 193745 username sekonji0496 193745 mac 193745 bytes_out 0 193745 bytes_in 0 193745 station_ip 83.123.74.26 193745 port 493 193745 unique_id port 193745 remote_ip 10.8.0.62 193747 username godarzi 193747 mac 193747 bytes_out 0 193747 bytes_in 0 193747 station_ip 5.120.18.72 193747 port 487 193747 unique_id port 193747 remote_ip 10.8.0.38 193715 bytes_out 0 193715 bytes_in 0 193715 station_ip 83.123.74.26 193715 port 478 193715 unique_id port 193715 remote_ip 10.8.0.62 193716 username alirezaza 193716 unique_id port 193716 terminate_cause Lost-Carrier 193716 bytes_out 10413 193716 bytes_in 13035 193716 station_ip 5.120.34.143 193716 port 15729342 193716 nas_port_type Virtual 193716 remote_ip 5.5.5.15 193718 username yaghobi 193718 mac 193718 bytes_out 282956 193718 bytes_in 958256 193718 station_ip 83.123.21.10 193718 port 487 193718 unique_id port 193718 remote_ip 10.8.0.138 193725 username motamedi9772 193725 kill_reason Another user logged on this global unique id 193725 mac 193725 bytes_out 0 193725 bytes_in 0 193725 station_ip 83.123.60.95 193725 port 491 193725 unique_id port 193726 username farhad3 193726 kill_reason Another user logged on this global unique id 193726 mac 193726 bytes_out 0 193726 bytes_in 0 193726 station_ip 5.120.62.231 193726 port 498 193726 unique_id port 193727 username godarzi 193727 kill_reason Another user logged on this global unique id 193727 mac 193727 bytes_out 0 193727 bytes_in 0 193727 station_ip 45.84.157.190 193727 port 492 193727 unique_id port 193727 remote_ip 10.8.0.38 193730 username meghdad1616 193730 mac 193730 bytes_out 0 193730 bytes_in 0 193730 station_ip 5.120.51.79 193730 port 483 193730 unique_id port 193730 remote_ip 10.8.0.230 193733 username godarzi 193733 mac 193733 bytes_out 0 193733 bytes_in 0 193733 station_ip 45.84.157.190 193733 port 492 193733 unique_id port 193734 username sekonji0496 193734 mac 193734 bytes_out 3100 193734 bytes_in 5047 193734 station_ip 83.123.74.26 193734 port 478 193734 unique_id port 193734 remote_ip 10.8.0.62 193735 username sekonji0496 193735 mac 193735 bytes_out 0 193735 bytes_in 0 193735 station_ip 83.123.74.26 193735 port 478 193735 unique_id port 193735 remote_ip 10.8.0.62 193736 username alirezaza 193736 unique_id port 193736 terminate_cause User-Request 193736 bytes_out 2426666 193736 bytes_in 62767624 193736 station_ip 5.119.186.191 193736 port 15729343 193736 nas_port_type Virtual 193736 remote_ip 5.5.5.14 193743 username rashidi4690 193743 mac 193743 bytes_out 7364567 193743 bytes_in 35135043 193743 station_ip 5.120.79.186 193743 port 490 193743 unique_id port 193743 remote_ip 10.8.0.242 193750 username hoorieh 193750 kill_reason Relative expiration date has reached 193750 mac 193750 bytes_out 0 193750 bytes_in 0 193750 station_ip 5.120.30.143 193750 port 487 193750 unique_id port 193751 username sabaghnezhad 193751 mac 193751 bytes_out 251243 193751 bytes_in 1335216 193751 station_ip 83.123.112.165 193751 port 478 193751 unique_id port 193751 remote_ip 10.8.0.66 193755 username shahruz 193755 mac 193755 bytes_out 6425 193755 bytes_in 11733 193755 station_ip 83.123.77.31 193755 port 478 193755 unique_id port 193755 remote_ip 10.8.0.74 193757 username sobhan 193757 unique_id port 193757 terminate_cause Lost-Carrier 193757 bytes_out 1272955 193757 bytes_in 11146804 193757 station_ip 5.119.225.27 193757 port 15729344 193757 nas_port_type Virtual 193757 remote_ip 5.5.5.16 193758 username shahruz 193758 mac 193758 bytes_out 997219 193758 bytes_in 13119392 193758 station_ip 5.120.66.208 193758 port 478 193758 unique_id port 193758 remote_ip 10.8.0.74 193761 username shahruz 193761 mac 193761 bytes_out 0 193761 bytes_in 0 193761 station_ip 83.123.119.71 193761 port 492 193761 unique_id port 193761 remote_ip 10.8.0.74 193763 username shahruz 193763 mac 193763 bytes_out 0 193763 bytes_in 0 193763 station_ip 5.119.67.47 193748 username sekonji0496 193748 mac 193748 bytes_out 27172 193748 bytes_in 33854 193748 station_ip 83.123.74.26 193748 port 490 193748 unique_id port 193748 remote_ip 10.8.0.62 193749 username nekheei 193749 mac 193749 bytes_out 942644 193749 bytes_in 13253535 193749 station_ip 5.120.114.7 193749 port 487 193749 unique_id port 193749 remote_ip 10.8.0.46 193752 username meghdad1616 193752 mac 193752 bytes_out 56085 193752 bytes_in 94800 193752 station_ip 5.120.51.79 193752 port 492 193752 unique_id port 193752 remote_ip 10.8.0.230 193753 username shahruz 193753 mac 193753 bytes_out 3217224 193753 bytes_in 35432622 193753 station_ip 5.120.69.234 193753 port 483 193753 unique_id port 193753 remote_ip 10.8.0.74 193756 username meghdad1616 193756 mac 193756 bytes_out 14620 193756 bytes_in 25286 193756 station_ip 5.120.51.79 193756 port 483 193756 unique_id port 193756 remote_ip 10.8.0.230 193760 username nilufarrajaei 193760 kill_reason Another user logged on this global unique id 193760 mac 193760 bytes_out 0 193760 bytes_in 0 193760 station_ip 83.123.83.154 193760 port 487 193760 unique_id port 193760 remote_ip 10.8.0.194 193765 username hatami 193765 mac 193765 bytes_out 330996 193765 bytes_in 2489497 193765 station_ip 151.235.68.65 193765 port 490 193765 unique_id port 193765 remote_ip 10.8.0.98 193768 username nilufarrajaei 193768 mac 193768 bytes_out 0 193768 bytes_in 0 193768 station_ip 83.123.83.154 193768 port 487 193768 unique_id port 193771 username farhad3 193771 mac 193771 bytes_out 0 193771 bytes_in 0 193771 station_ip 5.120.62.231 193771 port 478 193771 unique_id port 193771 remote_ip 10.8.0.222 193773 username shahruz 193773 mac 193773 bytes_out 34092 193773 bytes_in 67203 193773 station_ip 5.120.148.183 193773 port 483 193773 unique_id port 193773 remote_ip 10.8.0.74 193774 username alirezazadeh 193774 unique_id port 193774 terminate_cause Lost-Carrier 193774 bytes_out 3015838 193774 bytes_in 49899684 193774 station_ip 5.119.19.136 193774 port 15729338 193774 nas_port_type Virtual 193774 remote_ip 5.5.5.17 193776 username shahruz 193776 mac 193776 bytes_out 0 193776 bytes_in 0 193776 station_ip 5.120.148.183 193776 port 490 193776 unique_id port 193776 remote_ip 10.8.0.74 193780 username yaghobi 193780 mac 193780 bytes_out 574783 193780 bytes_in 712549 193780 station_ip 83.123.108.216 193780 port 478 193780 unique_id port 193780 remote_ip 10.8.0.138 193784 username shahruz 193784 mac 193784 bytes_out 0 193784 bytes_in 0 193784 station_ip 5.120.148.183 193784 port 478 193784 unique_id port 193784 remote_ip 10.8.0.74 193787 username barzegar 193787 mac 193787 bytes_out 0 193787 bytes_in 0 193787 station_ip 5.119.204.241 193787 port 492 193787 unique_id port 193787 remote_ip 10.8.0.70 193791 username farhad3 193791 mac 193791 bytes_out 3627050 193791 bytes_in 18822977 193791 station_ip 5.120.62.231 193791 port 483 193791 unique_id port 193791 remote_ip 10.8.0.222 193792 username yaghobi 193792 mac 193792 bytes_out 392959 193792 bytes_in 542363 193792 station_ip 83.123.108.216 193792 port 490 193792 unique_id port 193792 remote_ip 10.8.0.138 193796 username meghdad1616 193796 mac 193796 bytes_out 0 193796 bytes_in 0 193796 station_ip 5.120.168.218 193796 port 490 193796 unique_id port 193796 remote_ip 10.8.0.230 193804 username akbari0070 193804 mac 193804 bytes_out 1849764 193804 bytes_in 23940526 193804 station_ip 83.123.115.187 193804 port 465 193804 unique_id port 193763 port 478 193763 unique_id port 193763 remote_ip 10.8.0.74 193767 username shahruz 193767 mac 193767 bytes_out 5002 193767 bytes_in 9292 193767 station_ip 83.123.119.71 193767 port 483 193767 unique_id port 193767 remote_ip 10.8.0.74 193772 username nilufarrajaei 193772 mac 193772 bytes_out 314757 193772 bytes_in 84534 193772 station_ip 83.123.83.154 193772 port 487 193772 unique_id port 193772 remote_ip 10.8.0.194 193777 username meghdad1616 193777 mac 193777 bytes_out 143813 193777 bytes_in 1999822 193777 station_ip 5.120.51.79 193777 port 478 193777 unique_id port 193777 remote_ip 10.8.0.230 193779 username motamedi9772 193779 kill_reason Another user logged on this global unique id 193779 mac 193779 bytes_out 0 193779 bytes_in 0 193779 station_ip 83.123.60.95 193779 port 491 193779 unique_id port 193782 username mostafa_es78 193782 mac 193782 bytes_out 3251965 193782 bytes_in 22657251 193782 station_ip 37.129.80.107 193782 port 496 193782 unique_id port 193782 remote_ip 10.8.0.34 193785 username meghdad1616 193785 mac 193785 bytes_out 0 193785 bytes_in 0 193785 station_ip 5.120.168.218 193785 port 492 193785 unique_id port 193785 remote_ip 10.8.0.230 193788 username milan 193788 kill_reason Another user logged on this global unique id 193788 mac 193788 bytes_out 0 193788 bytes_in 0 193788 station_ip 5.119.23.34 193788 port 460 193788 unique_id port 193788 remote_ip 10.8.0.182 193789 username nilufarrajaei 193789 mac 193789 bytes_out 1895855 193789 bytes_in 3910339 193789 station_ip 83.123.83.154 193789 port 487 193789 unique_id port 193789 remote_ip 10.8.0.194 193793 username hosseine 193793 mac 193793 bytes_out 0 193793 bytes_in 0 193793 station_ip 83.123.62.81 193793 port 465 193793 unique_id port 193794 username shahruz 193794 mac 193794 bytes_out 0 193794 bytes_in 0 193794 station_ip 5.120.148.183 193794 port 465 193794 unique_id port 193794 remote_ip 10.8.0.74 193800 username alipour1506 193800 kill_reason Another user logged on this global unique id 193800 mac 193800 bytes_out 0 193800 bytes_in 0 193800 station_ip 78.39.25.121 193800 port 489 193800 unique_id port 193802 username mammad 193802 unique_id port 193802 terminate_cause User-Request 193802 bytes_out 0 193802 bytes_in 342 193802 station_ip 2.183.244.83 193802 port 15729350 193802 nas_port_type Virtual 193802 remote_ip 5.5.5.12 193803 username kharazmi2920 193803 mac 193803 bytes_out 934439 193803 bytes_in 8466553 193803 station_ip 83.123.122.251 193803 port 490 193803 unique_id port 193803 remote_ip 10.8.0.22 193805 username kharazmi2920 193805 mac 193805 bytes_out 24465 193805 bytes_in 30172 193805 station_ip 83.123.122.251 193805 port 494 193805 unique_id port 193805 remote_ip 10.8.0.22 193808 username mammad 193808 unique_id port 193808 terminate_cause Lost-Carrier 193808 bytes_out 609025 193808 bytes_in 13539316 193808 station_ip 2.183.244.83 193808 port 15729351 193808 nas_port_type Virtual 193808 remote_ip 5.5.5.12 193813 username nilufarrajaei 193813 mac 193813 bytes_out 66379 193813 bytes_in 182604 193813 station_ip 83.123.83.154 193813 port 465 193813 unique_id port 193813 remote_ip 10.8.0.194 193818 username mirzaei6046 193818 kill_reason Another user logged on this global unique id 193818 mac 193818 bytes_out 0 193818 bytes_in 0 193818 station_ip 5.119.60.30 193818 port 435 193818 unique_id port 193818 remote_ip 10.8.0.198 193819 username mostafa_es78 193819 mac 193819 bytes_out 2738088 193819 bytes_in 31046758 193819 station_ip 37.129.80.107 193819 port 478 193819 unique_id port 193778 unique_id port 193778 remote_ip 10.8.0.230 193781 username shahruz 193781 mac 193781 bytes_out 0 193781 bytes_in 0 193781 station_ip 5.120.148.183 193781 port 478 193781 unique_id port 193781 remote_ip 10.8.0.74 193783 username shahruz 193783 mac 193783 bytes_out 0 193783 bytes_in 0 193783 station_ip 5.120.148.183 193783 port 478 193783 unique_id port 193783 remote_ip 10.8.0.74 193786 username hosseine 193786 kill_reason Another user logged on this global unique id 193786 mac 193786 bytes_out 0 193786 bytes_in 0 193786 station_ip 83.123.62.81 193786 port 465 193786 unique_id port 193790 username shahruz 193790 kill_reason Maximum check online fails reached 193790 mac 193790 bytes_out 0 193790 bytes_in 0 193790 station_ip 5.120.148.183 193790 port 492 193790 unique_id port 193795 username mammad 193795 unique_id port 193795 terminate_cause User-Request 193795 bytes_out 5230406 193795 bytes_in 79673907 193795 station_ip 2.183.240.19 193795 port 15729346 193795 nas_port_type Virtual 193795 remote_ip 5.5.5.13 193797 username motamedi9772 193797 mac 193797 bytes_out 0 193797 bytes_in 0 193797 station_ip 83.123.60.95 193797 port 491 193797 unique_id port 193798 username nilufarrajaei 193798 mac 193798 bytes_out 69319 193798 bytes_in 238653 193798 station_ip 83.123.83.154 193798 port 493 193798 unique_id port 193798 remote_ip 10.8.0.194 193799 username mammad 193799 unique_id port 193799 terminate_cause Lost-Carrier 193799 bytes_out 515947 193799 bytes_in 12450668 193799 station_ip 2.183.240.19 193799 port 15729348 193799 nas_port_type Virtual 193799 remote_ip 5.5.5.13 193801 username shahruz 193801 mac 193801 bytes_out 0 193801 bytes_in 0 193801 station_ip 5.120.148.183 193801 port 494 193801 unique_id port 193801 remote_ip 10.8.0.74 193809 username shahruz 193809 mac 193809 bytes_out 0 193809 bytes_in 0 193809 station_ip 5.120.148.183 193809 port 487 193809 unique_id port 193809 remote_ip 10.8.0.74 193812 username meghdad1616 193812 mac 193812 bytes_out 3490 193812 bytes_in 5143 193812 station_ip 5.120.168.218 193812 port 487 193812 unique_id port 193812 remote_ip 10.8.0.230 193815 username zahra1101 193815 mac 193815 bytes_out 0 193815 bytes_in 0 193815 station_ip 5.120.36.145 193815 port 465 193815 unique_id port 193815 remote_ip 10.8.0.30 193816 username zahra1101 193816 mac 193816 bytes_out 0 193816 bytes_in 0 193816 station_ip 5.120.36.145 193816 port 465 193816 unique_id port 193816 remote_ip 10.8.0.30 193827 username shahruz 193827 mac 193827 bytes_out 0 193827 bytes_in 0 193827 station_ip 5.120.148.183 193827 port 490 193827 unique_id port 193827 remote_ip 10.8.0.74 193829 username farhad3 193829 kill_reason Another user logged on this global unique id 193829 mac 193829 bytes_out 0 193829 bytes_in 0 193829 station_ip 5.120.62.231 193829 port 465 193829 unique_id port 193829 remote_ip 10.8.0.222 193830 username zahra1101 193830 mac 193830 bytes_out 0 193830 bytes_in 0 193830 station_ip 5.120.36.145 193830 port 490 193830 unique_id port 193830 remote_ip 10.8.0.30 193836 username yazdani6029 193836 mac 193836 bytes_out 0 193836 bytes_in 0 193836 station_ip 83.123.10.57 193836 port 483 193836 unique_id port 193840 username zahra1101 193840 mac 193840 bytes_out 0 193840 bytes_in 0 193840 station_ip 5.120.36.145 193840 port 483 193840 unique_id port 193840 remote_ip 10.8.0.30 193842 username meghdad1616 193842 mac 193842 bytes_out 2270 193842 bytes_in 4547 193842 station_ip 5.120.168.218 193804 remote_ip 10.8.0.166 193806 username nilufarrajaei 193806 mac 193806 bytes_out 503995 193806 bytes_in 4326725 193806 station_ip 83.123.83.154 193806 port 491 193806 unique_id port 193806 remote_ip 10.8.0.194 193807 username yaghobi 193807 mac 193807 bytes_out 106321 193807 bytes_in 147193 193807 station_ip 83.123.108.216 193807 port 487 193807 unique_id port 193807 remote_ip 10.8.0.138 193810 username zahra1101 193810 mac 193810 bytes_out 0 193810 bytes_in 0 193810 station_ip 5.120.36.145 193810 port 487 193810 unique_id port 193810 remote_ip 10.8.0.30 193811 username hamid1430 193811 kill_reason Another user logged on this global unique id 193811 mac 193811 bytes_out 0 193811 bytes_in 0 193811 station_ip 83.123.111.61 193811 port 500 193811 unique_id port 193811 remote_ip 10.8.0.90 193814 username yaghobi 193814 mac 193814 bytes_out 112459 193814 bytes_in 178842 193814 station_ip 83.123.108.216 193814 port 490 193814 unique_id port 193814 remote_ip 10.8.0.138 193817 username farhad3 193817 kill_reason Another user logged on this global unique id 193817 mac 193817 bytes_out 0 193817 bytes_in 0 193817 station_ip 5.120.62.231 193817 port 483 193817 unique_id port 193817 remote_ip 10.8.0.222 193823 username farhad3 193823 mac 193823 bytes_out 0 193823 bytes_in 0 193823 station_ip 5.120.62.231 193823 port 483 193823 unique_id port 193825 username zahra1101 193825 mac 193825 bytes_out 0 193825 bytes_in 0 193825 station_ip 5.120.36.145 193825 port 478 193825 unique_id port 193825 remote_ip 10.8.0.30 193826 username aminvpn 193826 unique_id port 193826 terminate_cause Lost-Carrier 193826 bytes_out 34836136 193826 bytes_in 686972214 193826 station_ip 5.120.162.21 193826 port 15729345 193826 nas_port_type Virtual 193826 remote_ip 5.5.5.35 193828 username zahra1101 193828 mac 193828 bytes_out 0 193828 bytes_in 0 193828 station_ip 5.120.36.145 193828 port 491 193828 unique_id port 193828 remote_ip 10.8.0.30 193831 username hashtadani5 193831 mac 193831 bytes_out 3796561 193831 bytes_in 16122904 193831 station_ip 83.123.119.187 193831 port 478 193831 unique_id port 193831 remote_ip 10.8.0.218 193834 username mammad 193834 unique_id port 193834 terminate_cause User-Request 193834 bytes_out 1939877 193834 bytes_in 21070362 193834 station_ip 5.233.68.132 193834 port 15729352 193834 nas_port_type Virtual 193834 remote_ip 5.5.5.11 193839 username alipour1506 193839 kill_reason Maximum check online fails reached 193839 mac 193839 bytes_out 0 193839 bytes_in 0 193839 station_ip 78.39.25.121 193839 port 489 193839 unique_id port 193841 username zahra1101 193841 mac 193841 bytes_out 0 193841 bytes_in 0 193841 station_ip 5.120.36.145 193841 port 483 193841 unique_id port 193841 remote_ip 10.8.0.30 193853 username kharazmi2920 193853 mac 193853 bytes_out 631539 193853 bytes_in 5842132 193853 station_ip 83.123.122.251 193853 port 490 193853 unique_id port 193853 remote_ip 10.8.0.22 193855 username shahruz 193855 mac 193855 bytes_out 0 193855 bytes_in 0 193855 station_ip 5.120.148.183 193855 port 490 193855 unique_id port 193855 remote_ip 10.8.0.74 193856 username meghdad1616 193856 mac 193856 bytes_out 0 193856 bytes_in 0 193856 station_ip 5.120.168.218 193856 port 490 193856 unique_id port 193856 remote_ip 10.8.0.230 193859 username farhad3 193859 kill_reason Another user logged on this global unique id 193859 mac 193859 bytes_out 0 193859 bytes_in 0 193859 station_ip 5.120.62.231 193859 port 465 193859 unique_id port 193859 remote_ip 10.8.0.222 193861 username shahruz 193819 remote_ip 10.8.0.34 193820 username meghdad1616 193820 mac 193820 bytes_out 0 193820 bytes_in 0 193820 station_ip 5.120.168.218 193820 port 465 193820 unique_id port 193820 remote_ip 10.8.0.230 193821 username soleymani5056 193821 mac 193821 bytes_out 447346 193821 bytes_in 232297 193821 station_ip 5.120.167.6 193821 port 493 193821 unique_id port 193821 remote_ip 10.8.0.226 193822 username soleymani5056 193822 mac 193822 bytes_out 30168 193822 bytes_in 38414 193822 station_ip 5.119.96.235 193822 port 465 193822 unique_id port 193822 remote_ip 10.8.0.226 193824 username zahra1101 193824 mac 193824 bytes_out 0 193824 bytes_in 0 193824 station_ip 5.120.36.145 193824 port 478 193824 unique_id port 193824 remote_ip 10.8.0.30 193832 username farhad3 193832 mac 193832 bytes_out 0 193832 bytes_in 0 193832 station_ip 5.120.62.231 193832 port 465 193832 unique_id port 193833 username meghdad1616 193833 mac 193833 bytes_out 0 193833 bytes_in 0 193833 station_ip 5.120.168.218 193833 port 465 193833 unique_id port 193833 remote_ip 10.8.0.230 193835 username yazdani6029 193835 kill_reason Another user logged on this global unique id 193835 mac 193835 bytes_out 0 193835 bytes_in 0 193835 station_ip 83.123.10.57 193835 port 483 193835 unique_id port 193835 remote_ip 10.8.0.234 193837 username farhad3 193837 mac 193837 bytes_out 823848 193837 bytes_in 2925984 193837 station_ip 5.120.62.231 193837 port 465 193837 unique_id port 193837 remote_ip 10.8.0.222 193838 username farhad3 193838 kill_reason Maximum check online fails reached 193838 mac 193838 bytes_out 0 193838 bytes_in 0 193838 station_ip 5.120.62.231 193838 port 465 193838 unique_id port 193838 remote_ip 10.8.0.222 193844 username milan 193844 kill_reason Another user logged on this global unique id 193844 mac 193844 bytes_out 0 193844 bytes_in 0 193844 station_ip 5.119.23.34 193844 port 460 193844 unique_id port 193846 username farhad3 193846 mac 193846 bytes_out 2251879 193846 bytes_in 15013696 193846 station_ip 5.120.62.231 193846 port 465 193846 unique_id port 193846 remote_ip 10.8.0.222 193852 username milan 193852 kill_reason Another user logged on this global unique id 193852 mac 193852 bytes_out 0 193852 bytes_in 0 193852 station_ip 5.119.23.34 193852 port 460 193852 unique_id port 193857 username naeimeh 193857 kill_reason Maximum check online fails reached 193857 mac 193857 bytes_out 598305 193857 bytes_in 2286607 193857 station_ip 83.123.39.27 193857 port 491 193857 unique_id port 193857 remote_ip 10.8.0.78 193858 username meghdad1616 193858 mac 193858 bytes_out 0 193858 bytes_in 0 193858 station_ip 5.120.168.218 193858 port 490 193858 unique_id port 193858 remote_ip 10.8.0.230 193869 username hajghani 193869 mac 193869 bytes_out 0 193869 bytes_in 0 193869 station_ip 89.47.157.74 193869 port 493 193869 unique_id port 193873 username zahra1101 193873 kill_reason Maximum check online fails reached 193873 mac 193873 bytes_out 0 193873 bytes_in 0 193873 station_ip 5.120.36.145 193873 port 493 193873 unique_id port 193875 username nilufarrajaei 193875 kill_reason Another user logged on this global unique id 193875 mac 193875 bytes_out 0 193875 bytes_in 0 193875 station_ip 83.123.83.154 193875 port 487 193875 unique_id port 193875 remote_ip 10.8.0.194 193880 username farhad3 193880 kill_reason Another user logged on this global unique id 193880 mac 193880 bytes_out 0 193880 bytes_in 0 193880 station_ip 5.120.62.231 193880 port 465 193880 unique_id port 193881 username zahra1101 193881 mac 193881 bytes_out 0 193842 port 483 193842 unique_id port 193842 remote_ip 10.8.0.230 193843 username zahra1101 193843 mac 193843 bytes_out 0 193843 bytes_in 0 193843 station_ip 5.120.36.145 193843 port 483 193843 unique_id port 193843 remote_ip 10.8.0.30 193845 username zahra1101 193845 mac 193845 bytes_out 0 193845 bytes_in 0 193845 station_ip 5.120.36.145 193845 port 483 193845 unique_id port 193845 remote_ip 10.8.0.30 193847 username shahruz 193847 mac 193847 bytes_out 0 193847 bytes_in 0 193847 station_ip 5.120.148.183 193847 port 483 193847 unique_id port 193847 remote_ip 10.8.0.74 193848 username meghdad1616 193848 kill_reason Maximum check online fails reached 193848 mac 193848 bytes_out 0 193848 bytes_in 0 193848 station_ip 5.120.168.218 193848 port 483 193848 unique_id port 193849 username mohammadjavad 193849 mac 193849 bytes_out 69486 193849 bytes_in 115139 193849 station_ip 83.123.113.168 193849 port 490 193849 unique_id port 193849 remote_ip 10.8.0.110 193850 username hamid1430 193850 mac 193850 bytes_out 0 193850 bytes_in 0 193850 station_ip 83.123.111.61 193850 port 500 193850 unique_id port 193851 username zahra1101 193851 mac 193851 bytes_out 0 193851 bytes_in 0 193851 station_ip 5.120.36.145 193851 port 494 193851 unique_id port 193851 remote_ip 10.8.0.30 193854 username shahruz 193854 mac 193854 bytes_out 0 193854 bytes_in 0 193854 station_ip 5.120.148.183 193854 port 490 193854 unique_id port 193854 remote_ip 10.8.0.74 193860 username hajghani 193860 kill_reason Another user logged on this global unique id 193860 mac 193860 bytes_out 0 193860 bytes_in 0 193860 station_ip 89.47.157.74 193860 port 493 193860 unique_id port 193860 remote_ip 10.8.0.106 193864 username zahra1101 193864 mac 193864 bytes_out 0 193864 bytes_in 0 193864 station_ip 5.120.36.145 193864 port 495 193864 unique_id port 193864 remote_ip 10.8.0.30 193866 username hajghani 193866 kill_reason Another user logged on this global unique id 193866 mac 193866 bytes_out 0 193866 bytes_in 0 193866 station_ip 89.47.157.74 193866 port 493 193866 unique_id port 193867 username zahra1101 193867 mac 193867 bytes_out 0 193867 bytes_in 0 193867 station_ip 5.120.36.145 193867 port 496 193867 unique_id port 193867 remote_ip 10.8.0.30 193870 username shahruz 193870 mac 193870 bytes_out 0 193870 bytes_in 0 193870 station_ip 5.120.148.183 193870 port 493 193870 unique_id port 193870 remote_ip 10.8.0.74 193872 username yaghobi 193872 mac 193872 bytes_out 409728 193872 bytes_in 432521 193872 station_ip 83.123.15.17 193872 port 490 193872 unique_id port 193872 remote_ip 10.8.0.138 193878 username shahruz 193878 mac 193878 bytes_out 0 193878 bytes_in 0 193878 station_ip 5.120.148.183 193878 port 494 193878 unique_id port 193878 remote_ip 10.8.0.74 193882 username zahra1101 193882 mac 193882 bytes_out 0 193882 bytes_in 0 193882 station_ip 5.120.36.145 193882 port 490 193882 unique_id port 193882 remote_ip 10.8.0.30 193884 username mostafa_es78 193884 mac 193884 bytes_out 2478130 193884 bytes_in 24482623 193884 station_ip 37.129.80.107 193884 port 495 193884 unique_id port 193884 remote_ip 10.8.0.34 193886 username zahra1101 193886 mac 193886 bytes_out 0 193886 bytes_in 0 193886 station_ip 5.120.36.145 193886 port 465 193886 unique_id port 193886 remote_ip 10.8.0.30 193888 username shahruz 193888 kill_reason Maximum check online fails reached 193888 mac 193888 bytes_out 0 193888 bytes_in 0 193888 station_ip 5.120.148.183 193888 port 494 193861 kill_reason Maximum check online fails reached 193861 mac 193861 bytes_out 0 193861 bytes_in 0 193861 station_ip 5.120.148.183 193861 port 491 193861 unique_id port 193862 username meghdad1616 193862 mac 193862 bytes_out 850942 193862 bytes_in 7550554 193862 station_ip 5.120.168.218 193862 port 490 193862 unique_id port 193862 remote_ip 10.8.0.230 193863 username shahruz 193863 mac 193863 bytes_out 0 193863 bytes_in 0 193863 station_ip 5.120.148.183 193863 port 490 193863 unique_id port 193863 remote_ip 10.8.0.74 193865 username milan 193865 kill_reason Another user logged on this global unique id 193865 mac 193865 bytes_out 0 193865 bytes_in 0 193865 station_ip 5.119.23.34 193865 port 460 193865 unique_id port 193868 username barzegar 193868 mac 193868 bytes_out 0 193868 bytes_in 0 193868 station_ip 5.119.204.241 193868 port 496 193868 unique_id port 193868 remote_ip 10.8.0.70 193871 username shahruz 193871 mac 193871 bytes_out 0 193871 bytes_in 0 193871 station_ip 5.120.148.183 193871 port 496 193871 unique_id port 193871 remote_ip 10.8.0.74 193874 username zahra1101 193874 mac 193874 bytes_out 0 193874 bytes_in 0 193874 station_ip 5.120.36.145 193874 port 490 193874 unique_id port 193874 remote_ip 10.8.0.30 193876 username naeimeh 193876 mac 193876 bytes_out 2077557 193876 bytes_in 22358994 193876 station_ip 83.123.39.27 193876 port 494 193876 unique_id port 193876 remote_ip 10.8.0.78 193877 username zahra1101 193877 mac 193877 bytes_out 3166 193877 bytes_in 5378 193877 station_ip 5.120.36.145 193877 port 490 193877 unique_id port 193877 remote_ip 10.8.0.30 193879 username shahruz 193879 mac 193879 bytes_out 0 193879 bytes_in 0 193879 station_ip 5.120.148.183 193879 port 490 193879 unique_id port 193879 remote_ip 10.8.0.74 193887 username jafari 193887 kill_reason Another user logged on this global unique id 193887 mac 193887 bytes_out 0 193887 bytes_in 0 193887 station_ip 5.200.102.60 193887 port 490 193887 unique_id port 193887 remote_ip 10.8.0.178 193889 username nilufarrajaei 193889 kill_reason Another user logged on this global unique id 193889 mac 193889 bytes_out 0 193889 bytes_in 0 193889 station_ip 83.123.83.154 193889 port 487 193889 unique_id port 193897 username jafari 193897 mac 193897 bytes_out 0 193897 bytes_in 0 193897 station_ip 5.200.102.60 193897 port 490 193897 unique_id port 193905 username zahra1101 193905 kill_reason Maximum check online fails reached 193905 mac 193905 bytes_out 0 193905 bytes_in 0 193905 station_ip 5.120.36.145 193905 port 487 193905 unique_id port 193906 username meghdad1616 193906 mac 193906 bytes_out 0 193906 bytes_in 0 193906 station_ip 5.120.168.218 193906 port 496 193906 unique_id port 193906 remote_ip 10.8.0.230 193911 username zahra1101 193911 mac 193911 bytes_out 0 193911 bytes_in 0 193911 station_ip 5.120.36.145 193911 port 499 193911 unique_id port 193911 remote_ip 10.8.0.30 193917 username shahruz 193917 mac 193917 bytes_out 0 193917 bytes_in 0 193917 station_ip 5.120.148.183 193917 port 501 193917 unique_id port 193917 remote_ip 10.8.0.74 193918 username sabaghnezhad 193918 mac 193918 bytes_out 274769 193918 bytes_in 325970 193918 station_ip 83.123.112.165 193918 port 478 193918 unique_id port 193918 remote_ip 10.8.0.66 193919 username shahruz 193919 mac 193919 bytes_out 0 193919 bytes_in 0 193919 station_ip 5.120.148.183 193919 port 478 193919 unique_id port 193919 remote_ip 10.8.0.74 193921 username barzegar 193921 mac 193881 bytes_in 0 193881 station_ip 5.120.36.145 193881 port 490 193881 unique_id port 193881 remote_ip 10.8.0.30 193883 username zahra1101 193883 mac 193883 bytes_out 0 193883 bytes_in 0 193883 station_ip 5.120.36.145 193883 port 490 193883 unique_id port 193883 remote_ip 10.8.0.30 193885 username farhad3 193885 mac 193885 bytes_out 0 193885 bytes_in 0 193885 station_ip 5.120.62.231 193885 port 465 193885 unique_id port 193890 username zahra1101 193890 mac 193890 bytes_out 0 193890 bytes_in 0 193890 station_ip 5.120.36.145 193890 port 495 193890 unique_id port 193890 remote_ip 10.8.0.30 193891 username barzegar 193891 mac 193891 bytes_out 0 193891 bytes_in 0 193891 station_ip 5.119.204.241 193891 port 495 193891 unique_id port 193891 remote_ip 10.8.0.70 193894 username barzegar 193894 mac 193894 bytes_out 0 193894 bytes_in 0 193894 station_ip 5.119.204.241 193894 port 465 193894 unique_id port 193894 remote_ip 10.8.0.70 193898 username zahra1101 193898 kill_reason Maximum check online fails reached 193898 mac 193898 bytes_out 0 193898 bytes_in 0 193898 station_ip 5.120.36.145 193898 port 490 193898 unique_id port 193899 username meghdad1616 193899 mac 193899 bytes_out 0 193899 bytes_in 0 193899 station_ip 5.120.168.218 193899 port 496 193899 unique_id port 193899 remote_ip 10.8.0.230 193900 username zahra1101 193900 kill_reason Maximum check online fails reached 193900 mac 193900 bytes_out 0 193900 bytes_in 0 193900 station_ip 5.120.36.145 193900 port 495 193900 unique_id port 193902 username zahra1101 193902 mac 193902 bytes_out 0 193902 bytes_in 0 193902 station_ip 5.120.36.145 193902 port 496 193902 unique_id port 193902 remote_ip 10.8.0.30 193903 username barzegar 193903 mac 193903 bytes_out 0 193903 bytes_in 0 193903 station_ip 5.119.204.241 193903 port 487 193903 unique_id port 193903 remote_ip 10.8.0.70 193908 username zahra1101 193908 mac 193908 bytes_out 0 193908 bytes_in 0 193908 station_ip 5.120.36.145 193908 port 498 193908 unique_id port 193908 remote_ip 10.8.0.30 193910 username zahra1101 193910 mac 193910 bytes_out 0 193910 bytes_in 0 193910 station_ip 5.120.36.145 193910 port 498 193910 unique_id port 193910 remote_ip 10.8.0.30 193912 username meghdad1616 193912 kill_reason Maximum check online fails reached 193912 mac 193912 bytes_out 0 193912 bytes_in 0 193912 station_ip 5.120.168.218 193912 port 498 193912 unique_id port 193913 username shahruz 193913 mac 193913 bytes_out 0 193913 bytes_in 0 193913 station_ip 5.120.148.183 193913 port 500 193913 unique_id port 193913 remote_ip 10.8.0.74 193914 username zahra1101 193914 kill_reason Maximum check online fails reached 193914 mac 193914 bytes_out 0 193914 bytes_in 0 193914 station_ip 5.120.36.145 193914 port 499 193914 unique_id port 193915 username pourshad 193915 kill_reason Another user logged on this global unique id 193915 mac 193915 bytes_out 0 193915 bytes_in 0 193915 station_ip 5.120.152.46 193915 port 465 193915 unique_id port 193915 remote_ip 10.8.0.42 193920 username pourshad 193920 mac 193920 bytes_out 0 193920 bytes_in 0 193920 station_ip 5.120.152.46 193920 port 465 193920 unique_id port 193922 username shahruz 193922 kill_reason Maximum check online fails reached 193922 mac 193922 bytes_out 0 193922 bytes_in 0 193922 station_ip 5.120.148.183 193922 port 465 193922 unique_id port 193928 username shahruz 193928 kill_reason Maximum check online fails reached 193928 mac 193928 bytes_out 0 193928 bytes_in 0 193888 unique_id port 193892 username farhad3 193892 mac 193892 bytes_out 3380046 193892 bytes_in 30785954 193892 station_ip 5.120.62.231 193892 port 465 193892 unique_id port 193892 remote_ip 10.8.0.222 193893 username shahruz 193893 mac 193893 bytes_out 0 193893 bytes_in 0 193893 station_ip 5.120.148.183 193893 port 465 193893 unique_id port 193893 remote_ip 10.8.0.74 193895 username meghdad1616 193895 mac 193895 bytes_out 0 193895 bytes_in 0 193895 station_ip 5.120.168.218 193895 port 465 193895 unique_id port 193895 remote_ip 10.8.0.230 193896 username meghdad1616 193896 mac 193896 bytes_out 0 193896 bytes_in 0 193896 station_ip 5.120.168.218 193896 port 465 193896 unique_id port 193896 remote_ip 10.8.0.230 193901 username nilufarrajaei 193901 mac 193901 bytes_out 0 193901 bytes_in 0 193901 station_ip 83.123.83.154 193901 port 487 193901 unique_id port 193904 username shahruz 193904 mac 193904 bytes_out 0 193904 bytes_in 0 193904 station_ip 5.120.148.183 193904 port 487 193904 unique_id port 193904 remote_ip 10.8.0.74 193907 username zahra1101 193907 mac 193907 bytes_out 0 193907 bytes_in 0 193907 station_ip 5.120.36.145 193907 port 498 193907 unique_id port 193907 remote_ip 10.8.0.30 193909 username shahruz 193909 kill_reason Maximum check online fails reached 193909 mac 193909 bytes_out 0 193909 bytes_in 0 193909 station_ip 5.120.148.183 193909 port 496 193909 unique_id port 193916 username zahra1101 193916 kill_reason Maximum check online fails reached 193916 mac 193916 bytes_out 0 193916 bytes_in 0 193916 station_ip 5.120.36.145 193916 port 500 193916 unique_id port 193923 username mansour 193923 mac 193923 bytes_out 474451 193923 bytes_in 4633502 193923 station_ip 5.202.61.73 193923 port 478 193923 unique_id port 193923 remote_ip 10.8.0.10 193926 username zahra1101 193926 mac 193926 bytes_out 0 193926 bytes_in 0 193926 station_ip 5.120.36.145 193926 port 501 193926 unique_id port 193926 remote_ip 10.8.0.30 193930 username shahruz 193930 kill_reason Maximum check online fails reached 193930 mac 193930 bytes_out 0 193930 bytes_in 0 193930 station_ip 5.120.148.183 193930 port 501 193930 unique_id port 193934 username meghdad1616 193934 mac 193934 bytes_out 0 193934 bytes_in 0 193934 station_ip 5.120.168.218 193934 port 501 193934 unique_id port 193934 remote_ip 10.8.0.230 193936 username shahruz 193936 mac 193936 bytes_out 0 193936 bytes_in 0 193936 station_ip 5.120.148.183 193936 port 501 193936 unique_id port 193936 remote_ip 10.8.0.74 193941 username shahruz 193941 mac 193941 bytes_out 0 193941 bytes_in 0 193941 station_ip 5.120.148.183 193941 port 501 193941 unique_id port 193941 remote_ip 10.8.0.74 193943 username zahra1101 193943 mac 193943 bytes_out 0 193943 bytes_in 0 193943 station_ip 5.120.36.145 193943 port 501 193943 unique_id port 193943 remote_ip 10.8.0.30 193944 username shahruz 193944 mac 193944 bytes_out 0 193944 bytes_in 0 193944 station_ip 5.120.148.183 193944 port 501 193944 unique_id port 193944 remote_ip 10.8.0.74 193945 username meghdad1616 193945 mac 193945 bytes_out 0 193945 bytes_in 0 193945 station_ip 5.120.168.218 193945 port 501 193945 unique_id port 193945 remote_ip 10.8.0.230 193946 username barzegar 193946 mac 193946 bytes_out 0 193946 bytes_in 0 193946 station_ip 5.119.204.241 193946 port 501 193946 unique_id port 193946 remote_ip 10.8.0.70 193951 username zahra1101 193951 mac 193921 bytes_out 0 193921 bytes_in 0 193921 station_ip 5.119.204.241 193921 port 501 193921 unique_id port 193921 remote_ip 10.8.0.70 193924 username zahra1101 193924 kill_reason Maximum check online fails reached 193924 mac 193924 bytes_out 0 193924 bytes_in 0 193924 station_ip 5.120.36.145 193924 port 478 193924 unique_id port 193925 username shahruz 193925 mac 193925 bytes_out 0 193925 bytes_in 0 193925 station_ip 5.120.148.183 193925 port 501 193925 unique_id port 193925 remote_ip 10.8.0.74 193927 username meghdad1616 193927 mac 193927 bytes_out 0 193927 bytes_in 0 193927 station_ip 5.120.168.218 193927 port 501 193927 unique_id port 193927 remote_ip 10.8.0.230 193929 username meghdad1616 193929 mac 193929 bytes_out 0 193929 bytes_in 0 193929 station_ip 5.120.168.218 193929 port 501 193929 unique_id port 193929 remote_ip 10.8.0.230 193933 username zahra1101 193933 mac 193933 bytes_out 0 193933 bytes_in 0 193933 station_ip 5.120.36.145 193933 port 501 193933 unique_id port 193933 remote_ip 10.8.0.30 193935 username zahra1101 193935 mac 193935 bytes_out 0 193935 bytes_in 0 193935 station_ip 5.120.36.145 193935 port 501 193935 unique_id port 193935 remote_ip 10.8.0.30 193937 username zahra1101 193937 mac 193937 bytes_out 0 193937 bytes_in 0 193937 station_ip 5.120.36.145 193937 port 501 193937 unique_id port 193937 remote_ip 10.8.0.30 193938 username zahra1101 193938 mac 193938 bytes_out 0 193938 bytes_in 0 193938 station_ip 5.120.36.145 193938 port 501 193938 unique_id port 193938 remote_ip 10.8.0.30 193939 username zahra1101 193939 mac 193939 bytes_out 0 193939 bytes_in 0 193939 station_ip 5.120.36.145 193939 port 501 193939 unique_id port 193939 remote_ip 10.8.0.30 193949 username shahruz 193949 mac 193949 bytes_out 0 193949 bytes_in 0 193949 station_ip 5.120.148.183 193949 port 501 193949 unique_id port 193949 remote_ip 10.8.0.74 193950 username zahra1101 193950 mac 193950 bytes_out 0 193950 bytes_in 0 193950 station_ip 5.120.36.145 193950 port 501 193950 unique_id port 193950 remote_ip 10.8.0.30 193951 bytes_out 0 193951 bytes_in 0 193951 station_ip 5.120.36.145 193951 port 501 193951 unique_id port 193951 remote_ip 10.8.0.30 193952 username aminvpn 193952 unique_id port 193952 terminate_cause Lost-Carrier 193952 bytes_out 1322933 193952 bytes_in 21782309 193952 station_ip 83.123.104.73 193952 port 15729353 193952 nas_port_type Virtual 193952 remote_ip 5.5.5.10 193953 username meghdad1616 193953 mac 193953 bytes_out 0 193953 bytes_in 0 193953 station_ip 5.120.168.218 193953 port 501 193953 unique_id port 193953 remote_ip 10.8.0.230 193954 username meghdad1616 193954 mac 193954 bytes_out 0 193954 bytes_in 0 193954 station_ip 5.120.168.218 193954 port 505 193954 unique_id port 193954 remote_ip 10.8.0.230 193955 username morteza4424 193955 mac 193955 bytes_out 1701305 193955 bytes_in 26723159 193955 station_ip 83.123.41.247 193955 port 504 193955 unique_id port 193955 remote_ip 10.8.0.206 193957 username morteza4424 193957 mac 193957 bytes_out 3659 193957 bytes_in 5604 193957 station_ip 83.123.41.247 193957 port 504 193957 unique_id port 193957 remote_ip 10.8.0.206 193958 username shahruz 193958 mac 193958 bytes_out 0 193958 bytes_in 0 193958 station_ip 5.120.148.183 193958 port 504 193958 unique_id port 193958 remote_ip 10.8.0.74 193959 username barzegar 193959 mac 193959 bytes_out 0 193959 bytes_in 0 193959 station_ip 5.119.204.241 193928 station_ip 5.120.148.183 193928 port 503 193928 unique_id port 193931 username shahruz 193931 mac 193931 bytes_out 0 193931 bytes_in 0 193931 station_ip 5.120.148.183 193931 port 501 193931 unique_id port 193931 remote_ip 10.8.0.74 193932 username zahra1101 193932 mac 193932 bytes_out 0 193932 bytes_in 0 193932 station_ip 5.120.36.145 193932 port 501 193932 unique_id port 193932 remote_ip 10.8.0.30 193940 username zahra1101 193940 mac 193940 bytes_out 0 193940 bytes_in 0 193940 station_ip 5.120.36.145 193940 port 501 193940 unique_id port 193940 remote_ip 10.8.0.30 193942 username meghdad1616 193942 mac 193942 bytes_out 0 193942 bytes_in 0 193942 station_ip 5.120.168.218 193942 port 501 193942 unique_id port 193942 remote_ip 10.8.0.230 193947 username zahra1101 193947 mac 193947 bytes_out 0 193947 bytes_in 0 193947 station_ip 5.120.36.145 193947 port 501 193947 unique_id port 193947 remote_ip 10.8.0.30 193948 username shahruz 193948 mac 193948 bytes_out 0 193948 bytes_in 0 193948 station_ip 5.120.148.183 193948 port 501 193948 unique_id port 193948 remote_ip 10.8.0.74 193956 username morteza4424 193956 mac 193956 bytes_out 7165 193956 bytes_in 11754 193956 station_ip 83.123.41.247 193956 port 504 193956 unique_id port 193956 remote_ip 10.8.0.206 193959 port 504 193959 unique_id port 193959 remote_ip 10.8.0.70 193960 username shahruz 193960 mac 193960 bytes_out 0 193960 bytes_in 0 193960 station_ip 5.120.148.183 193960 port 504 193960 unique_id port 193960 remote_ip 10.8.0.74 193961 username zahra1101 193961 mac 193961 bytes_out 0 193961 bytes_in 0 193961 station_ip 5.120.36.145 193961 port 504 193961 unique_id port 193961 remote_ip 10.8.0.30 193962 username zahra1101 193962 mac 193962 bytes_out 1894 193962 bytes_in 3629 193962 station_ip 5.120.36.145 193962 port 504 193962 unique_id port 193962 remote_ip 10.8.0.30 193963 username zahra1101 193963 mac 193963 bytes_out 82129 193963 bytes_in 141478 193963 station_ip 5.120.36.145 193963 port 504 193963 unique_id port 193963 remote_ip 10.8.0.30 193964 username barzegar 193964 mac 193964 bytes_out 0 193964 bytes_in 0 193964 station_ip 5.119.204.241 193964 port 504 193964 unique_id port 193964 remote_ip 10.8.0.70 193965 username shahruz 193965 mac 193965 bytes_out 0 193965 bytes_in 0 193965 station_ip 5.120.148.183 193965 port 504 193965 unique_id port 193965 remote_ip 10.8.0.74 193966 username morteza4424 193966 mac 193966 bytes_out 1500527 193966 bytes_in 1730328 193966 station_ip 94.241.181.181 193966 port 505 193966 unique_id port 193966 remote_ip 10.8.0.206 193967 username barzegar 193967 mac 193967 bytes_out 0 193967 bytes_in 0 193967 station_ip 5.119.204.241 193967 port 505 193967 unique_id port 193967 remote_ip 10.8.0.70 193968 username shahruz 193968 mac 193968 bytes_out 0 193968 bytes_in 0 193968 station_ip 5.120.148.183 193968 port 505 193968 unique_id port 193968 remote_ip 10.8.0.74 193969 username morteza4424 193969 kill_reason Another user logged on this global unique id 193969 mac 193969 bytes_out 0 193969 bytes_in 0 193969 station_ip 83.123.52.79 193969 port 504 193969 unique_id port 193969 remote_ip 10.8.0.206 193970 username morteza4424 193970 mac 193970 bytes_out 0 193970 bytes_in 0 193970 station_ip 83.123.52.79 193970 port 504 193970 unique_id port 193971 username morteza4424 193971 mac 193971 bytes_out 0 193971 bytes_in 0 193971 station_ip 83.123.52.79 193971 port 504 193971 unique_id port 193971 remote_ip 10.8.0.206 193974 username morteza4424 193974 mac 193974 bytes_out 1644 193974 bytes_in 5076 193974 station_ip 83.123.52.79 193974 port 504 193974 unique_id port 193974 remote_ip 10.8.0.206 193976 username shahruz 193976 mac 193976 bytes_out 0 193976 bytes_in 0 193976 station_ip 5.120.148.183 193976 port 508 193976 unique_id port 193976 remote_ip 10.8.0.74 193977 username hosseine 193977 kill_reason Another user logged on this global unique id 193977 mac 193977 bytes_out 0 193977 bytes_in 0 193977 station_ip 83.123.81.97 193977 port 506 193977 unique_id port 193977 remote_ip 10.8.0.54 193979 username mohammadjavad 193979 mac 193979 bytes_out 316682 193979 bytes_in 1989184 193979 station_ip 83.123.123.31 193979 port 507 193979 unique_id port 193979 remote_ip 10.8.0.110 193980 username shahruz 193980 mac 193980 bytes_out 0 193980 bytes_in 0 193980 station_ip 5.120.148.183 193980 port 507 193980 unique_id port 193980 remote_ip 10.8.0.74 193982 username shahruz 193982 mac 193982 bytes_out 0 193982 bytes_in 0 193982 station_ip 5.120.148.183 193982 port 505 193982 unique_id port 193982 remote_ip 10.8.0.74 193986 username kharazmi2920 193986 mac 193986 bytes_out 576844 193986 bytes_in 4311754 193986 station_ip 83.123.122.251 193986 port 505 193986 unique_id port 193986 remote_ip 10.8.0.22 193999 username mohammadjavad 193999 mac 193999 bytes_out 44209 193999 bytes_in 45802 193999 station_ip 83.123.123.31 193999 port 506 193999 unique_id port 193999 remote_ip 10.8.0.110 194004 username kharazmi2920 194004 mac 194004 bytes_out 198338 194004 bytes_in 1021511 194004 station_ip 83.123.122.251 194004 port 504 194004 unique_id port 194004 remote_ip 10.8.0.22 194010 username kalantary6037 194010 kill_reason Another user logged on this global unique id 194010 mac 194010 bytes_out 0 194010 bytes_in 0 194010 station_ip 83.123.40.101 194010 port 506 194010 unique_id port 194010 remote_ip 10.8.0.50 194012 username yaghobi 194012 mac 194012 bytes_out 333937 194012 bytes_in 4705283 194012 station_ip 83.123.66.196 194012 port 508 194012 unique_id port 194012 remote_ip 10.8.0.138 194027 username khalili2 194027 mac 194027 bytes_out 1193880 194027 bytes_in 15040446 194027 station_ip 5.120.158.142 194027 port 507 194027 unique_id port 194027 remote_ip 10.8.0.190 194029 username motamedi9772 194029 mac 194029 bytes_out 3167420 194029 bytes_in 34490760 194029 station_ip 83.123.24.63 194029 port 504 194029 unique_id port 194029 remote_ip 10.8.0.154 194033 username houshang 194033 mac 194033 bytes_out 99751 194033 bytes_in 521381 194033 station_ip 5.120.50.128 194033 port 507 194033 unique_id port 194033 remote_ip 10.8.0.82 194036 username morteza4424 194036 mac 194036 bytes_out 0 194036 bytes_in 0 194036 station_ip 83.123.48.247 194036 port 489 194036 unique_id port 194036 remote_ip 10.8.0.206 194039 username hashtadani5 194039 mac 194039 bytes_out 0 194039 bytes_in 0 194039 station_ip 83.123.51.160 194039 port 501 194039 unique_id port 194039 remote_ip 10.8.0.218 194040 username mohammadjavad 194040 mac 194040 bytes_out 411907 194040 bytes_in 1749548 194040 station_ip 83.123.57.15 194040 port 489 194040 unique_id port 194040 remote_ip 10.8.0.110 194042 username hashtadani5 194042 mac 194042 bytes_out 1277120 194042 bytes_in 15985465 194042 station_ip 83.123.51.160 194042 port 504 194042 unique_id port 194042 remote_ip 10.8.0.218 194045 username hashtadani5 194045 mac 193972 username morteza4424 193972 mac 193972 bytes_out 0 193972 bytes_in 0 193972 station_ip 83.123.52.79 193972 port 504 193972 unique_id port 193972 remote_ip 10.8.0.206 193973 username morteza4424 193973 mac 193973 bytes_out 0 193973 bytes_in 0 193973 station_ip 83.123.52.79 193973 port 504 193973 unique_id port 193973 remote_ip 10.8.0.206 193984 username barzegar 193984 mac 193984 bytes_out 0 193984 bytes_in 0 193984 station_ip 5.119.204.241 193984 port 508 193984 unique_id port 193984 remote_ip 10.8.0.70 193985 username morteza4424 193985 mac 193985 bytes_out 1234372 193985 bytes_in 16694174 193985 station_ip 83.123.52.79 193985 port 504 193985 unique_id port 193985 remote_ip 10.8.0.206 193988 username hosseine 193988 mac 193988 bytes_out 0 193988 bytes_in 0 193988 station_ip 83.123.81.97 193988 port 506 193988 unique_id port 193989 username barzegar 193989 mac 193989 bytes_out 0 193989 bytes_in 0 193989 station_ip 5.119.204.241 193989 port 506 193989 unique_id port 193989 remote_ip 10.8.0.70 193993 username alirezaza 193993 unique_id port 193993 terminate_cause Lost-Carrier 193993 bytes_out 659492 193993 bytes_in 29906941 193993 station_ip 5.120.93.123 193993 port 15729354 193993 nas_port_type Virtual 193993 remote_ip 5.5.5.9 193994 username shahruz 193994 mac 193994 bytes_out 0 193994 bytes_in 0 193994 station_ip 5.120.148.183 193994 port 508 193994 unique_id port 193994 remote_ip 10.8.0.74 193995 username motamedi9772 193995 mac 193995 bytes_out 136585 193995 bytes_in 188878 193995 station_ip 83.123.43.35 193995 port 509 193995 unique_id port 193995 remote_ip 10.8.0.154 193996 username nilufarrajaei 193996 kill_reason Another user logged on this global unique id 193996 mac 193996 bytes_out 0 193996 bytes_in 0 193996 station_ip 83.123.53.158 193996 port 501 193996 unique_id port 193996 remote_ip 10.8.0.194 194002 username hamid1430 194002 mac 194002 bytes_out 554148 194002 bytes_in 5337295 194002 station_ip 83.123.111.61 194002 port 506 194002 unique_id port 194002 remote_ip 10.8.0.90 194005 username saeed9658 194005 kill_reason Another user logged on this global unique id 194005 mac 194005 bytes_out 0 194005 bytes_in 0 194005 station_ip 5.119.69.156 194005 port 507 194005 unique_id port 194005 remote_ip 10.8.0.162 194006 username saeed9658 194006 mac 194006 bytes_out 0 194006 bytes_in 0 194006 station_ip 5.119.69.156 194006 port 507 194006 unique_id port 194007 username dortaj3792 194007 mac 194007 bytes_out 458073 194007 bytes_in 1185775 194007 station_ip 5.119.127.229 194007 port 489 194007 unique_id port 194007 remote_ip 10.8.0.102 194008 username yaghobi 194008 mac 194008 bytes_out 356733 194008 bytes_in 937942 194008 station_ip 83.123.66.196 194008 port 489 194008 unique_id port 194008 remote_ip 10.8.0.138 194011 username kalantary6037 194011 mac 194011 bytes_out 0 194011 bytes_in 0 194011 station_ip 83.123.40.101 194011 port 506 194011 unique_id port 194016 username aminvpn 194016 mac 194016 bytes_out 2079240 194016 bytes_in 10389607 194016 station_ip 5.120.86.194 194016 port 507 194016 unique_id port 194016 remote_ip 10.8.0.58 194018 username pourshad 194018 kill_reason Another user logged on this global unique id 194018 mac 194018 bytes_out 0 194018 bytes_in 0 194018 station_ip 5.120.152.46 194018 port 510 194018 unique_id port 194020 username aminvpn 194020 mac 194020 bytes_out 216120 194020 bytes_in 511435 194020 station_ip 5.120.86.194 194020 port 489 194020 unique_id port 193975 username morteza4424 193975 mac 193975 bytes_out 0 193975 bytes_in 0 193975 station_ip 83.123.52.79 193975 port 504 193975 unique_id port 193975 remote_ip 10.8.0.206 193978 username barzegar 193978 mac 193978 bytes_out 0 193978 bytes_in 0 193978 station_ip 5.119.204.241 193978 port 508 193978 unique_id port 193978 remote_ip 10.8.0.70 193981 username fezealinaghi 193981 mac 193981 bytes_out 1262377 193981 bytes_in 7842312 193981 station_ip 83.123.111.66 193981 port 505 193981 unique_id port 193981 remote_ip 10.8.0.202 193983 username shahruz 193983 mac 193983 bytes_out 0 193983 bytes_in 0 193983 station_ip 5.120.148.183 193983 port 508 193983 unique_id port 193983 remote_ip 10.8.0.74 193987 username meghdad1616 193987 mac 193987 bytes_out 0 193987 bytes_in 0 193987 station_ip 5.120.168.218 193987 port 505 193987 unique_id port 193987 remote_ip 10.8.0.230 193990 username mohammadjavad 193990 mac 193990 bytes_out 0 193990 bytes_in 0 193990 station_ip 83.123.123.31 193990 port 506 193990 unique_id port 193990 remote_ip 10.8.0.110 193991 username mohammadjavad 193991 mac 193991 bytes_out 0 193991 bytes_in 0 193991 station_ip 83.123.123.31 193991 port 506 193991 unique_id port 193991 remote_ip 10.8.0.110 193992 username shahruz 193992 mac 193992 bytes_out 0 193992 bytes_in 0 193992 station_ip 5.120.148.183 193992 port 508 193992 unique_id port 193992 remote_ip 10.8.0.74 193997 username meghdad1616 193997 mac 193997 bytes_out 0 193997 bytes_in 0 193997 station_ip 5.120.168.218 193997 port 508 193997 unique_id port 193997 remote_ip 10.8.0.230 193998 username kalantary6037 193998 mac 193998 bytes_out 1743100 193998 bytes_in 18395708 193998 station_ip 83.123.113.217 193998 port 489 193998 unique_id port 193998 remote_ip 10.8.0.50 194000 username barzegar 194000 mac 194000 bytes_out 0 194000 bytes_in 0 194000 station_ip 5.119.204.241 194000 port 489 194000 unique_id port 194000 remote_ip 10.8.0.70 194001 username meghdad1616 194001 mac 194001 bytes_out 0 194001 bytes_in 0 194001 station_ip 5.120.168.218 194001 port 509 194001 unique_id port 194001 remote_ip 10.8.0.230 194003 username barzegar 194003 mac 194003 bytes_out 2174 194003 bytes_in 4947 194003 station_ip 5.119.204.241 194003 port 508 194003 unique_id port 194003 remote_ip 10.8.0.70 194009 username pourshad 194009 kill_reason Another user logged on this global unique id 194009 mac 194009 bytes_out 0 194009 bytes_in 0 194009 station_ip 5.120.152.46 194009 port 510 194009 unique_id port 194009 remote_ip 10.8.0.42 194013 username sekonji0496 194013 mac 194013 bytes_out 26388 194013 bytes_in 170280 194013 station_ip 83.123.33.236 194013 port 489 194013 unique_id port 194013 remote_ip 10.8.0.62 194014 username pourshad 194014 kill_reason Another user logged on this global unique id 194014 mac 194014 bytes_out 0 194014 bytes_in 0 194014 station_ip 5.120.152.46 194014 port 510 194014 unique_id port 194015 username dortaj3792 194015 mac 194015 bytes_out 187943 194015 bytes_in 540970 194015 station_ip 5.119.127.229 194015 port 506 194015 unique_id port 194015 remote_ip 10.8.0.102 194017 username barzegar 194017 mac 194017 bytes_out 3561357 194017 bytes_in 46855497 194017 station_ip 5.119.204.241 194017 port 504 194017 unique_id port 194017 remote_ip 10.8.0.70 194019 username houshang 194019 mac 194019 bytes_out 168722 194019 bytes_in 1234928 194019 station_ip 5.120.50.128 194019 port 504 194019 unique_id port 194019 remote_ip 10.8.0.82 194024 username rashidi4690 194024 kill_reason Another user logged on this global unique id 194024 mac 194024 bytes_out 0 194024 bytes_in 0 194024 station_ip 5.119.151.171 194024 port 506 194024 unique_id port 194024 remote_ip 10.8.0.242 194025 username kalantary6037 194025 mac 194025 bytes_out 592554 194025 bytes_in 3896136 194025 station_ip 83.123.98.85 194025 port 489 194025 unique_id port 194025 remote_ip 10.8.0.50 194028 username yaghobi 194028 mac 194028 bytes_out 615907 194028 bytes_in 4394971 194028 station_ip 83.123.25.247 194028 port 509 194028 unique_id port 194028 remote_ip 10.8.0.138 194030 username pourshad 194030 mac 194030 bytes_out 0 194030 bytes_in 0 194030 station_ip 5.120.152.46 194030 port 510 194030 unique_id port 194031 username pourshad 194031 kill_reason Another user logged on this global unique id 194031 mac 194031 bytes_out 0 194031 bytes_in 0 194031 station_ip 5.120.152.46 194031 port 504 194031 unique_id port 194031 remote_ip 10.8.0.42 194032 username rashidi4690 194032 mac 194032 bytes_out 0 194032 bytes_in 0 194032 station_ip 5.119.151.171 194032 port 506 194032 unique_id port 194034 username hashtadani5 194034 mac 194034 bytes_out 1103304 194034 bytes_in 13916300 194034 station_ip 83.123.51.160 194034 port 489 194034 unique_id port 194034 remote_ip 10.8.0.218 194035 username hashtadani5 194035 mac 194035 bytes_out 0 194035 bytes_in 0 194035 station_ip 83.123.51.160 194035 port 489 194035 unique_id port 194035 remote_ip 10.8.0.218 194037 username pourshad 194037 mac 194037 bytes_out 0 194037 bytes_in 0 194037 station_ip 5.120.152.46 194037 port 504 194037 unique_id port 194038 username nilufarrajaei 194038 mac 194038 bytes_out 0 194038 bytes_in 0 194038 station_ip 83.123.53.158 194038 port 501 194038 unique_id port 194044 username hashtadani5 194044 mac 194044 bytes_out 87700 194044 bytes_in 79895 194044 station_ip 83.123.51.160 194044 port 504 194044 unique_id port 194044 remote_ip 10.8.0.218 194048 username soleymani5056 194048 mac 194048 bytes_out 101528 194048 bytes_in 232091 194048 station_ip 5.120.114.253 194048 port 508 194048 unique_id port 194048 remote_ip 10.8.0.226 194050 username barzegar 194050 mac 194050 bytes_out 3985 194050 bytes_in 6170 194050 station_ip 5.119.204.241 194050 port 509 194050 unique_id port 194050 remote_ip 10.8.0.70 194051 username hashtadani5 194051 mac 194051 bytes_out 0 194051 bytes_in 0 194051 station_ip 83.123.51.160 194051 port 507 194051 unique_id port 194051 remote_ip 10.8.0.218 194052 username hajghani 194052 mac 194052 bytes_out 368273 194052 bytes_in 2149250 194052 station_ip 89.47.157.74 194052 port 510 194052 unique_id port 194052 remote_ip 10.8.0.106 194056 username meysam 194056 kill_reason Another user logged on this global unique id 194056 mac 194056 bytes_out 0 194056 bytes_in 0 194056 station_ip 188.159.254.252 194056 port 489 194056 unique_id port 194056 remote_ip 10.8.0.158 194057 username alipour1506 194057 mac 194057 bytes_out 1282007 194057 bytes_in 12227441 194057 station_ip 83.123.10.230 194057 port 505 194057 unique_id port 194057 remote_ip 10.8.0.246 194060 username motamedi9772 194060 kill_reason Another user logged on this global unique id 194060 mac 194060 bytes_out 0 194060 bytes_in 0 194060 station_ip 83.123.43.31 194060 port 512 194060 unique_id port 194060 remote_ip 10.8.0.154 194061 username hashtadani5 194061 mac 194061 bytes_out 9384 194061 bytes_in 14431 194061 station_ip 83.123.51.160 194020 remote_ip 10.8.0.58 194021 username barzegar 194021 mac 194021 bytes_out 3224 194021 bytes_in 5202 194021 station_ip 5.119.204.241 194021 port 489 194021 unique_id port 194021 remote_ip 10.8.0.70 194022 username kalantary6037 194022 mac 194022 bytes_out 269661 194022 bytes_in 1772092 194022 station_ip 83.123.98.85 194022 port 507 194022 unique_id port 194022 remote_ip 10.8.0.50 194023 username barzegar 194023 mac 194023 bytes_out 2972 194023 bytes_in 5210 194023 station_ip 5.119.204.241 194023 port 489 194023 unique_id port 194023 remote_ip 10.8.0.70 194026 username pourshad 194026 kill_reason Another user logged on this global unique id 194026 mac 194026 bytes_out 0 194026 bytes_in 0 194026 station_ip 5.120.152.46 194026 port 510 194026 unique_id port 194041 username meghdad1616 194041 mac 194041 bytes_out 2588 194041 bytes_in 4865 194041 station_ip 5.120.168.218 194041 port 489 194041 unique_id port 194041 remote_ip 10.8.0.230 194043 username meghdad1616 194043 mac 194043 bytes_out 0 194043 bytes_in 0 194043 station_ip 5.120.168.218 194043 port 507 194043 unique_id port 194043 remote_ip 10.8.0.230 194055 username barzegar 194055 mac 194055 bytes_out 0 194055 bytes_in 0 194055 station_ip 5.119.204.241 194055 port 509 194055 unique_id port 194055 remote_ip 10.8.0.70 194059 username alipour1506 194059 mac 194059 bytes_out 23321 194059 bytes_in 30433 194059 station_ip 83.123.10.230 194059 port 505 194059 unique_id port 194059 remote_ip 10.8.0.246 194062 username rashidi4690 194062 mac 194062 bytes_out 3143502 194062 bytes_in 25821260 194062 station_ip 5.119.151.171 194062 port 504 194062 unique_id port 194062 remote_ip 10.8.0.242 194065 username hashtadani5 194065 mac 194065 bytes_out 8520 194065 bytes_in 17239 194065 station_ip 83.123.51.160 194065 port 504 194065 unique_id port 194065 remote_ip 10.8.0.218 194066 username hashtadani5 194066 mac 194066 bytes_out 0 194066 bytes_in 0 194066 station_ip 83.123.51.160 194066 port 489 194066 unique_id port 194066 remote_ip 10.8.0.218 194067 username hashtadani5 194067 mac 194067 bytes_out 0 194067 bytes_in 0 194067 station_ip 83.123.51.160 194067 port 489 194067 unique_id port 194067 remote_ip 10.8.0.218 194074 username motamedi9772 194074 mac 194074 bytes_out 0 194074 bytes_in 0 194074 station_ip 83.123.43.31 194074 port 489 194074 unique_id port 194074 remote_ip 10.8.0.154 194075 username hashtadani5 194075 mac 194075 bytes_out 0 194075 bytes_in 0 194075 station_ip 83.123.51.160 194075 port 489 194075 unique_id port 194075 remote_ip 10.8.0.218 194076 username motamedi9772 194076 mac 194076 bytes_out 0 194076 bytes_in 0 194076 station_ip 83.123.43.31 194076 port 489 194076 unique_id port 194076 remote_ip 10.8.0.154 194088 username hashtadani5 194088 mac 194088 bytes_out 0 194088 bytes_in 0 194088 station_ip 83.123.51.160 194088 port 509 194088 unique_id port 194088 remote_ip 10.8.0.218 194089 username motamedi9772 194089 mac 194089 bytes_out 0 194089 bytes_in 0 194089 station_ip 83.123.43.31 194089 port 507 194089 unique_id port 194089 remote_ip 10.8.0.154 194090 username yaghobi 194090 mac 194090 bytes_out 37088 194090 bytes_in 42684 194090 station_ip 83.123.24.39 194090 port 510 194090 unique_id port 194090 remote_ip 10.8.0.138 194093 username yaghobi 194093 mac 194093 bytes_out 0 194093 bytes_in 0 194093 station_ip 83.123.24.39 194093 port 507 194093 unique_id port 194093 remote_ip 10.8.0.138 194045 bytes_out 2482 194045 bytes_in 4759 194045 station_ip 83.123.51.160 194045 port 504 194045 unique_id port 194045 remote_ip 10.8.0.218 194046 username soleymani5056 194046 mac 194046 bytes_out 98264 194046 bytes_in 247130 194046 station_ip 5.119.101.2 194046 port 507 194046 unique_id port 194046 remote_ip 10.8.0.226 194047 username hashtadani5 194047 mac 194047 bytes_out 251844 194047 bytes_in 3931922 194047 station_ip 83.123.51.160 194047 port 507 194047 unique_id port 194047 remote_ip 10.8.0.218 194049 username kalantary6037 194049 mac 194049 bytes_out 66429 194049 bytes_in 132400 194049 station_ip 83.123.54.185 194049 port 511 194049 unique_id port 194049 remote_ip 10.8.0.50 194053 username hashtadani5 194053 mac 194053 bytes_out 0 194053 bytes_in 0 194053 station_ip 83.123.51.160 194053 port 508 194053 unique_id port 194053 remote_ip 10.8.0.218 194054 username hashtadani5 194054 mac 194054 bytes_out 0 194054 bytes_in 0 194054 station_ip 83.123.51.160 194054 port 508 194054 unique_id port 194054 remote_ip 10.8.0.218 194058 username meysam 194058 mac 194058 bytes_out 0 194058 bytes_in 0 194058 station_ip 188.159.254.252 194058 port 489 194058 unique_id port 194064 username houshang 194064 mac 194064 bytes_out 47244 194064 bytes_in 99578 194064 station_ip 5.120.50.128 194064 port 489 194064 unique_id port 194064 remote_ip 10.8.0.82 194070 username yaghobi 194070 mac 194070 bytes_out 288313 194070 bytes_in 183699 194070 station_ip 83.123.105.128 194070 port 509 194070 unique_id port 194070 remote_ip 10.8.0.138 194072 username motamedi9772 194072 mac 194072 bytes_out 0 194072 bytes_in 0 194072 station_ip 83.123.43.31 194072 port 504 194072 unique_id port 194072 remote_ip 10.8.0.154 194073 username nilufarrajaei 194073 mac 194073 bytes_out 2389660 194073 bytes_in 297198 194073 station_ip 83.123.53.158 194073 port 489 194073 unique_id port 194073 remote_ip 10.8.0.194 194077 username yaghobi 194077 mac 194077 bytes_out 42601 194077 bytes_in 45710 194077 station_ip 83.123.105.128 194077 port 501 194077 unique_id port 194077 remote_ip 10.8.0.138 194080 username motamedi9772 194080 mac 194080 bytes_out 0 194080 bytes_in 0 194080 station_ip 83.123.43.31 194080 port 489 194080 unique_id port 194080 remote_ip 10.8.0.154 194082 username motamedi9772 194082 mac 194082 bytes_out 0 194082 bytes_in 0 194082 station_ip 83.123.43.31 194082 port 489 194082 unique_id port 194082 remote_ip 10.8.0.154 194084 username motamedi9772 194084 mac 194084 bytes_out 0 194084 bytes_in 0 194084 station_ip 83.123.43.31 194084 port 501 194084 unique_id port 194084 remote_ip 10.8.0.154 194086 username hajghani 194086 mac 194086 bytes_out 292396 194086 bytes_in 309018 194086 station_ip 5.119.245.157 194086 port 507 194086 unique_id port 194086 remote_ip 10.8.0.106 194091 username hashtadani5 194091 mac 194091 bytes_out 0 194091 bytes_in 0 194091 station_ip 83.123.51.160 194091 port 511 194091 unique_id port 194091 remote_ip 10.8.0.218 194092 username hashtadani5 194092 mac 194092 bytes_out 0 194092 bytes_in 0 194092 station_ip 83.123.51.160 194092 port 511 194092 unique_id port 194092 remote_ip 10.8.0.218 194096 username motamedi9772 194096 mac 194096 bytes_out 35401 194096 bytes_in 168836 194096 station_ip 83.123.43.31 194096 port 510 194096 unique_id port 194096 remote_ip 10.8.0.154 194098 username hashtadani5 194098 mac 194098 bytes_out 0 194098 bytes_in 0 194061 port 509 194061 unique_id port 194061 remote_ip 10.8.0.218 194063 username yaghobi 194063 mac 194063 bytes_out 200667 194063 bytes_in 320359 194063 station_ip 83.123.25.206 194063 port 510 194063 unique_id port 194063 remote_ip 10.8.0.138 194068 username nilufarrajaei 194068 mac 194068 bytes_out 6538448 194068 bytes_in 2114811 194068 station_ip 83.123.53.158 194068 port 501 194068 unique_id port 194068 remote_ip 10.8.0.194 194069 username motamedi9772 194069 mac 194069 bytes_out 0 194069 bytes_in 0 194069 station_ip 83.123.43.31 194069 port 512 194069 unique_id port 194071 username aminvpn 194071 unique_id port 194071 terminate_cause Lost-Carrier 194071 bytes_out 15675533 194071 bytes_in 437645091 194071 station_ip 31.57.123.146 194071 port 15729355 194071 nas_port_type Virtual 194071 remote_ip 5.5.5.8 194078 username motamedi9772 194078 mac 194078 bytes_out 0 194078 bytes_in 0 194078 station_ip 83.123.43.31 194078 port 489 194078 unique_id port 194078 remote_ip 10.8.0.154 194079 username hashtadani5 194079 mac 194079 bytes_out 0 194079 bytes_in 0 194079 station_ip 83.123.51.160 194079 port 489 194079 unique_id port 194079 remote_ip 10.8.0.218 194081 username hashtadani5 194081 mac 194081 bytes_out 0 194081 bytes_in 0 194081 station_ip 83.123.51.160 194081 port 489 194081 unique_id port 194081 remote_ip 10.8.0.218 194083 username barzegar 194083 mac 194083 bytes_out 0 194083 bytes_in 0 194083 station_ip 5.119.204.241 194083 port 501 194083 unique_id port 194083 remote_ip 10.8.0.70 194085 username yaghobi 194085 mac 194085 bytes_out 124842 194085 bytes_in 204612 194085 station_ip 83.123.24.39 194085 port 509 194085 unique_id port 194085 remote_ip 10.8.0.138 194087 username meghdad1616 194087 mac 194087 bytes_out 0 194087 bytes_in 0 194087 station_ip 5.120.168.218 194087 port 501 194087 unique_id port 194087 remote_ip 10.8.0.230 194094 username hashtadani5 194094 mac 194094 bytes_out 0 194094 bytes_in 0 194094 station_ip 83.123.51.160 194094 port 507 194094 unique_id port 194094 remote_ip 10.8.0.218 194097 username nilufarrajaei 194097 mac 194097 bytes_out 4440125 194097 bytes_in 1878723 194097 station_ip 83.123.53.158 194097 port 504 194097 unique_id port 194097 remote_ip 10.8.0.194 194100 username hashtadani5 194100 mac 194100 bytes_out 0 194100 bytes_in 0 194100 station_ip 83.123.51.160 194100 port 510 194100 unique_id port 194100 remote_ip 10.8.0.218 194101 username zahra1101 194101 mac 194101 bytes_out 210356 194101 bytes_in 1937626 194101 station_ip 5.119.154.37 194101 port 504 194101 unique_id port 194101 remote_ip 10.8.0.30 194106 username zahra1101 194106 mac 194106 bytes_out 0 194106 bytes_in 0 194106 station_ip 5.119.154.37 194106 port 505 194106 unique_id port 194106 remote_ip 10.8.0.30 194110 username godarzi 194110 mac 194110 bytes_out 2807731 194110 bytes_in 32284816 194110 station_ip 5.120.18.72 194110 port 489 194110 unique_id port 194110 remote_ip 10.8.0.38 194112 username alipour1506 194112 mac 194112 bytes_out 34854 194112 bytes_in 79456 194112 station_ip 83.123.10.230 194112 port 507 194112 unique_id port 194112 remote_ip 10.8.0.246 194117 username hashtadani5 194117 mac 194117 bytes_out 0 194117 bytes_in 0 194117 station_ip 83.123.51.160 194117 port 506 194117 unique_id port 194117 remote_ip 10.8.0.218 194120 username alipour1506 194120 mac 194120 bytes_out 28005 194120 bytes_in 276270 194120 station_ip 83.123.10.230 194095 username hashtadani5 194095 kill_reason Maximum check online fails reached 194095 mac 194095 bytes_out 0 194095 bytes_in 0 194095 station_ip 83.123.51.160 194095 port 509 194095 unique_id port 194099 username hashtadani5 194099 mac 194099 bytes_out 0 194099 bytes_in 0 194099 station_ip 83.123.51.160 194099 port 504 194099 unique_id port 194099 remote_ip 10.8.0.218 194102 username nilufarrajaei 194102 mac 194102 bytes_out 31943 194102 bytes_in 72608 194102 station_ip 83.123.53.158 194102 port 507 194102 unique_id port 194102 remote_ip 10.8.0.194 194103 username alipour1506 194103 mac 194103 bytes_out 1100827 194103 bytes_in 11952774 194103 station_ip 83.123.10.230 194103 port 505 194103 unique_id port 194103 remote_ip 10.8.0.246 194104 username meghdad1616 194104 mac 194104 bytes_out 2482 194104 bytes_in 4812 194104 station_ip 5.120.168.218 194104 port 507 194104 unique_id port 194104 remote_ip 10.8.0.230 194108 username alipour1506 194108 mac 194108 bytes_out 5619 194108 bytes_in 6999 194108 station_ip 83.123.10.230 194108 port 507 194108 unique_id port 194108 remote_ip 10.8.0.246 194109 username morteza4424 194109 kill_reason Another user logged on this global unique id 194109 mac 194109 bytes_out 0 194109 bytes_in 0 194109 station_ip 83.123.16.59 194109 port 504 194109 unique_id port 194109 remote_ip 10.8.0.206 194111 username yaghobi 194111 mac 194111 bytes_out 82994 194111 bytes_in 143512 194111 station_ip 83.123.121.100 194111 port 505 194111 unique_id port 194111 remote_ip 10.8.0.138 194113 username hashtadani5 194113 mac 194113 bytes_out 824718 194113 bytes_in 13382453 194113 station_ip 83.123.51.160 194113 port 510 194113 unique_id port 194113 remote_ip 10.8.0.218 194114 username hashtadani5 194114 mac 194114 bytes_out 0 194114 bytes_in 0 194114 station_ip 83.123.51.160 194114 port 505 194114 unique_id port 194114 remote_ip 10.8.0.218 194115 username hashtadani5 194115 mac 194115 bytes_out 0 194115 bytes_in 0 194115 station_ip 83.123.51.160 194115 port 505 194115 unique_id port 194115 remote_ip 10.8.0.218 194116 username pourshad 194116 mac 194116 bytes_out 33562909 194116 bytes_in 11384463 194116 station_ip 5.120.152.46 194116 port 506 194116 unique_id port 194116 remote_ip 10.8.0.42 194119 username hashtadani5 194119 mac 194119 bytes_out 0 194119 bytes_in 0 194119 station_ip 83.123.51.160 194119 port 504 194119 unique_id port 194119 remote_ip 10.8.0.218 194121 username hashtadani5 194121 kill_reason Maximum check online fails reached 194121 mac 194121 bytes_out 0 194121 bytes_in 0 194121 station_ip 83.123.51.160 194121 port 505 194121 unique_id port 194123 username morteza4424 194123 mac 194123 bytes_out 0 194123 bytes_in 0 194123 station_ip 83.123.16.59 194123 port 489 194123 unique_id port 194123 remote_ip 10.8.0.206 194127 username morteza4424 194127 kill_reason Maximum check online fails reached 194127 mac 194127 bytes_out 0 194127 bytes_in 0 194127 station_ip 83.123.16.59 194127 port 489 194127 unique_id port 194130 username hashtadani5 194130 mac 194130 bytes_out 0 194130 bytes_in 0 194130 station_ip 83.123.51.160 194130 port 506 194130 unique_id port 194130 remote_ip 10.8.0.218 194131 username morteza4424 194131 mac 194131 bytes_out 0 194131 bytes_in 0 194131 station_ip 83.123.16.59 194131 port 507 194131 unique_id port 194131 remote_ip 10.8.0.206 194133 username morteza4424 194133 mac 194133 bytes_out 0 194133 bytes_in 0 194133 station_ip 83.123.16.59 194133 port 511 194098 station_ip 83.123.51.160 194098 port 504 194098 unique_id port 194098 remote_ip 10.8.0.218 194105 username alipour1506 194105 mac 194105 bytes_out 8934 194105 bytes_in 10175 194105 station_ip 83.123.10.230 194105 port 513 194105 unique_id port 194105 remote_ip 10.8.0.246 194107 username yaghobi 194107 mac 194107 bytes_out 427259 194107 bytes_in 710597 194107 station_ip 83.123.24.39 194107 port 511 194107 unique_id port 194107 remote_ip 10.8.0.138 194118 username morteza4424 194118 mac 194118 bytes_out 0 194118 bytes_in 0 194118 station_ip 83.123.16.59 194118 port 504 194118 unique_id port 194124 username meysam 194124 mac 194124 bytes_out 2378463 194124 bytes_in 34098345 194124 station_ip 188.159.254.208 194124 port 501 194124 unique_id port 194124 remote_ip 10.8.0.158 194125 username hashtadani5 194125 mac 194125 bytes_out 0 194125 bytes_in 0 194125 station_ip 83.123.51.160 194125 port 506 194125 unique_id port 194125 remote_ip 10.8.0.218 194134 username morteza4424 194134 kill_reason Maximum check online fails reached 194134 mac 194134 bytes_out 0 194134 bytes_in 0 194134 station_ip 83.123.16.59 194134 port 507 194134 unique_id port 194143 username hashtadani5 194143 mac 194143 bytes_out 4555 194143 bytes_in 6917 194143 station_ip 83.123.51.160 194143 port 501 194143 unique_id port 194143 remote_ip 10.8.0.218 194144 username morteza4424 194144 mac 194144 bytes_out 0 194144 bytes_in 0 194144 station_ip 83.123.16.59 194144 port 510 194144 unique_id port 194144 remote_ip 10.8.0.206 194145 username hashtadani5 194145 mac 194145 bytes_out 0 194145 bytes_in 0 194145 station_ip 83.123.51.160 194145 port 501 194145 unique_id port 194145 remote_ip 10.8.0.218 194147 username alipour1506 194147 mac 194147 bytes_out 63773 194147 bytes_in 563980 194147 station_ip 83.123.10.230 194147 port 504 194147 unique_id port 194147 remote_ip 10.8.0.246 194148 username godarzi 194148 kill_reason Another user logged on this global unique id 194148 mac 194148 bytes_out 0 194148 bytes_in 0 194148 station_ip 45.84.157.190 194148 port 506 194148 unique_id port 194148 remote_ip 10.8.0.38 194150 username pourshad 194150 mac 194150 bytes_out 4593 194150 bytes_in 19970 194150 station_ip 5.120.152.46 194150 port 501 194150 unique_id port 194150 remote_ip 10.8.0.42 194156 username morteza4424 194156 mac 194156 bytes_out 0 194156 bytes_in 0 194156 station_ip 83.123.16.59 194156 port 513 194156 unique_id port 194156 remote_ip 10.8.0.206 194162 username meysam 194162 kill_reason Another user logged on this global unique id 194162 mac 194162 bytes_out 0 194162 bytes_in 0 194162 station_ip 188.159.254.208 194162 port 515 194162 unique_id port 194162 remote_ip 10.8.0.158 194164 username barzegar 194164 mac 194164 bytes_out 0 194164 bytes_in 0 194164 station_ip 5.119.204.241 194164 port 518 194164 unique_id port 194164 remote_ip 10.8.0.70 194169 username hashtadani5 194169 mac 194169 bytes_out 0 194169 bytes_in 0 194169 station_ip 83.123.51.160 194169 port 501 194169 unique_id port 194169 remote_ip 10.8.0.218 194172 username kharazmi2920 194172 mac 194172 bytes_out 2056148 194172 bytes_in 15366490 194172 station_ip 83.123.122.251 194172 port 504 194172 unique_id port 194172 remote_ip 10.8.0.22 194174 username godarzi 194174 kill_reason Another user logged on this global unique id 194174 mac 194174 bytes_out 0 194174 bytes_in 0 194174 station_ip 45.84.157.190 194174 port 506 194174 unique_id port 194176 username hashtadani5 194176 mac 194120 port 489 194120 unique_id port 194120 remote_ip 10.8.0.246 194122 username hashtadani5 194122 mac 194122 bytes_out 0 194122 bytes_in 0 194122 station_ip 83.123.51.160 194122 port 506 194122 unique_id port 194122 remote_ip 10.8.0.218 194126 username hashtadani5 194126 mac 194126 bytes_out 0 194126 bytes_in 0 194126 station_ip 83.123.51.160 194126 port 501 194126 unique_id port 194126 remote_ip 10.8.0.218 194128 username hashtadani5 194128 mac 194128 bytes_out 0 194128 bytes_in 0 194128 station_ip 83.123.51.160 194128 port 501 194128 unique_id port 194128 remote_ip 10.8.0.218 194129 username hashtadani5 194129 mac 194129 bytes_out 0 194129 bytes_in 0 194129 station_ip 83.123.51.160 194129 port 501 194129 unique_id port 194129 remote_ip 10.8.0.218 194132 username meysam 194132 mac 194132 bytes_out 226511 194132 bytes_in 3319385 194132 station_ip 188.159.254.208 194132 port 501 194132 unique_id port 194132 remote_ip 10.8.0.158 194135 username morteza4424 194135 mac 194135 bytes_out 0 194135 bytes_in 0 194135 station_ip 83.123.16.59 194135 port 511 194135 unique_id port 194135 remote_ip 10.8.0.206 194139 username alihosseini1 194139 kill_reason Maximum check online fails reached 194139 mac 194139 bytes_out 0 194139 bytes_in 0 194139 station_ip 5.120.77.135 194139 port 511 194139 unique_id port 194140 username morteza4424 194140 mac 194140 bytes_out 0 194140 bytes_in 0 194140 station_ip 83.123.16.59 194140 port 513 194140 unique_id port 194140 remote_ip 10.8.0.206 194142 username morteza4424 194142 mac 194142 bytes_out 0 194142 bytes_in 0 194142 station_ip 83.123.16.59 194142 port 510 194142 unique_id port 194142 remote_ip 10.8.0.206 194146 username morteza4424 194146 mac 194146 bytes_out 0 194146 bytes_in 0 194146 station_ip 83.123.16.59 194146 port 510 194146 unique_id port 194146 remote_ip 10.8.0.206 194151 username barzegar 194151 mac 194151 bytes_out 0 194151 bytes_in 0 194151 station_ip 5.119.204.241 194151 port 501 194151 unique_id port 194151 remote_ip 10.8.0.70 194152 username alihosseini1 194152 mac 194152 bytes_out 359125 194152 bytes_in 1584517 194152 station_ip 5.119.209.54 194152 port 513 194152 unique_id port 194152 remote_ip 10.8.0.118 194154 username zahra1101 194154 mac 194154 bytes_out 6501 194154 bytes_in 8792 194154 station_ip 5.119.154.37 194154 port 513 194154 unique_id port 194154 remote_ip 10.8.0.30 194157 username sabaghnezhad 194157 mac 194157 bytes_out 133527 194157 bytes_in 276926 194157 station_ip 83.123.44.69 194157 port 501 194157 unique_id port 194157 remote_ip 10.8.0.66 194159 username zahra1101 194159 mac 194159 bytes_out 22305 194159 bytes_in 93152 194159 station_ip 5.119.154.37 194159 port 513 194159 unique_id port 194159 remote_ip 10.8.0.30 194166 username hashtadani5 194166 mac 194166 bytes_out 2120 194166 bytes_in 4485 194166 station_ip 83.123.51.160 194166 port 518 194166 unique_id port 194166 remote_ip 10.8.0.218 194167 username zahra1101 194167 mac 194167 bytes_out 17200 194167 bytes_in 19401 194167 station_ip 5.119.154.37 194167 port 510 194167 unique_id port 194167 remote_ip 10.8.0.30 194171 username hashtadani5 194171 mac 194171 bytes_out 0 194171 bytes_in 0 194171 station_ip 5.202.30.61 194171 port 501 194171 unique_id port 194171 remote_ip 10.8.0.218 194179 username pourshad 194179 mac 194179 bytes_out 635109 194179 bytes_in 2581114 194179 station_ip 5.120.152.46 194179 port 516 194133 unique_id port 194133 remote_ip 10.8.0.206 194136 username hashtadani5 194136 mac 194136 bytes_out 28082 194136 bytes_in 27435 194136 station_ip 83.123.51.160 194136 port 501 194136 unique_id port 194136 remote_ip 10.8.0.218 194137 username alipour1506 194137 mac 194137 bytes_out 37197 194137 bytes_in 85465 194137 station_ip 83.123.10.230 194137 port 504 194137 unique_id port 194137 remote_ip 10.8.0.246 194138 username zahra1101 194138 mac 194138 bytes_out 0 194138 bytes_in 0 194138 station_ip 5.119.154.37 194138 port 504 194138 unique_id port 194138 remote_ip 10.8.0.30 194141 username soleymani5056 194141 mac 194141 bytes_out 168729 194141 bytes_in 412699 194141 station_ip 5.119.172.161 194141 port 510 194141 unique_id port 194141 remote_ip 10.8.0.226 194149 username morteza4424 194149 mac 194149 bytes_out 8308 194149 bytes_in 29394 194149 station_ip 83.123.16.59 194149 port 501 194149 unique_id port 194149 remote_ip 10.8.0.206 194153 username alihosseini1 194153 mac 194153 bytes_out 0 194153 bytes_in 0 194153 station_ip 5.119.209.54 194153 port 516 194153 unique_id port 194153 remote_ip 10.8.0.118 194155 username khalili2 194155 kill_reason Another user logged on this global unique id 194155 mac 194155 bytes_out 0 194155 bytes_in 0 194155 station_ip 5.120.158.142 194155 port 514 194155 unique_id port 194155 remote_ip 10.8.0.190 194158 username hashtadani5 194158 mac 194158 bytes_out 2110861 194158 bytes_in 34654479 194158 station_ip 83.123.51.160 194158 port 510 194158 unique_id port 194158 remote_ip 10.8.0.218 194160 username alipour1506 194160 mac 194160 bytes_out 318131 194160 bytes_in 1868283 194160 station_ip 83.123.10.230 194160 port 504 194160 unique_id port 194160 remote_ip 10.8.0.246 194161 username nilufarrajaei 194161 kill_reason Another user logged on this global unique id 194161 mac 194161 bytes_out 0 194161 bytes_in 0 194161 station_ip 83.123.53.158 194161 port 512 194161 unique_id port 194161 remote_ip 10.8.0.194 194163 username alihosseini1 194163 mac 194163 bytes_out 0 194163 bytes_in 0 194163 station_ip 5.119.209.54 194163 port 510 194163 unique_id port 194163 remote_ip 10.8.0.118 194165 username hashtadani5 194165 mac 194165 bytes_out 344901 194165 bytes_in 5469448 194165 station_ip 83.123.51.160 194165 port 501 194165 unique_id port 194165 remote_ip 10.8.0.218 194168 username hashtadani5 194168 mac 194168 bytes_out 0 194168 bytes_in 0 194168 station_ip 83.123.51.160 194168 port 501 194168 unique_id port 194168 remote_ip 10.8.0.218 194170 username hashtadani5 194170 mac 194170 bytes_out 0 194170 bytes_in 0 194170 station_ip 83.123.51.160 194170 port 501 194170 unique_id port 194170 remote_ip 10.8.0.218 194173 username hashtadani5 194173 mac 194173 bytes_out 0 194173 bytes_in 0 194173 station_ip 5.202.30.61 194173 port 501 194173 unique_id port 194173 remote_ip 10.8.0.218 194175 username hashtadani5 194175 mac 194175 bytes_out 0 194175 bytes_in 0 194175 station_ip 5.202.30.61 194175 port 501 194175 unique_id port 194175 remote_ip 10.8.0.218 194177 username meghdad1616 194177 mac 194177 bytes_out 0 194177 bytes_in 0 194177 station_ip 5.120.168.218 194177 port 504 194177 unique_id port 194177 remote_ip 10.8.0.230 194180 username barzegar 194180 mac 194180 bytes_out 2789 194180 bytes_in 5127 194180 station_ip 5.119.204.241 194180 port 510 194180 unique_id port 194180 remote_ip 10.8.0.70 194181 username zahra1101 194181 mac 194181 bytes_out 0 194176 bytes_out 0 194176 bytes_in 0 194176 station_ip 5.202.30.61 194176 port 501 194176 unique_id port 194176 remote_ip 10.8.0.218 194178 username barzegar8595 194178 mac 194178 bytes_out 783510 194178 bytes_in 7757344 194178 station_ip 46.225.211.36 194178 port 508 194178 unique_id port 194178 remote_ip 10.8.0.114 194184 username alihosseini1 194184 mac 194184 bytes_out 0 194184 bytes_in 0 194184 station_ip 5.119.209.54 194184 port 508 194184 unique_id port 194184 remote_ip 10.8.0.118 194190 username khademi 194190 mac 194190 bytes_out 4787848 194190 bytes_in 46196414 194190 station_ip 83.123.100.96 194190 port 474 194190 unique_id port 194190 remote_ip 10.8.0.14 194195 username hashtadani5 194195 mac 194195 bytes_out 0 194195 bytes_in 0 194195 station_ip 5.202.30.61 194195 port 508 194195 unique_id port 194195 remote_ip 10.8.0.218 194196 username hashtadani5 194196 mac 194196 bytes_out 0 194196 bytes_in 0 194196 station_ip 5.202.30.61 194196 port 508 194196 unique_id port 194196 remote_ip 10.8.0.218 194199 username zahra1101 194199 mac 194199 bytes_out 0 194199 bytes_in 0 194199 station_ip 5.119.130.230 194199 port 508 194199 unique_id port 194199 remote_ip 10.8.0.30 194201 username nilufarrajaei 194201 mac 194201 bytes_out 301706 194201 bytes_in 605493 194201 station_ip 83.123.53.158 194201 port 510 194201 unique_id port 194201 remote_ip 10.8.0.194 194203 username alipour1506 194203 mac 194203 bytes_out 42526 194203 bytes_in 69375 194203 station_ip 83.123.10.230 194203 port 515 194203 unique_id port 194203 remote_ip 10.8.0.246 194208 username fezealinaghi 194208 kill_reason Another user logged on this global unique id 194208 mac 194208 bytes_out 0 194208 bytes_in 0 194208 station_ip 83.123.1.232 194208 port 501 194208 unique_id port 194208 remote_ip 10.8.0.202 194209 username zahra1101 194209 mac 194209 bytes_out 349884 194209 bytes_in 3052824 194209 station_ip 5.119.130.230 194209 port 513 194209 unique_id port 194209 remote_ip 10.8.0.30 194211 username zahra1101 194211 mac 194211 bytes_out 0 194211 bytes_in 0 194211 station_ip 5.119.130.230 194211 port 508 194211 unique_id port 194211 remote_ip 10.8.0.30 194219 username kalantary6037 194219 mac 194219 bytes_out 0 194219 bytes_in 0 194219 station_ip 83.123.77.77 194219 port 504 194219 unique_id port 194219 remote_ip 10.8.0.50 194222 username zahra1101 194222 mac 194222 bytes_out 5281 194222 bytes_in 6342 194222 station_ip 5.119.130.230 194222 port 519 194222 unique_id port 194222 remote_ip 10.8.0.30 194224 username motamedi9772 194224 mac 194224 bytes_out 161584 194224 bytes_in 1001191 194224 station_ip 83.123.45.75 194224 port 515 194224 unique_id port 194224 remote_ip 10.8.0.154 194225 username nilufarrajaei 194225 mac 194225 bytes_out 10144 194225 bytes_in 15055 194225 station_ip 83.123.53.158 194225 port 516 194225 unique_id port 194225 remote_ip 10.8.0.194 194227 username mammad 194227 unique_id port 194227 terminate_cause Lost-Carrier 194227 bytes_out 2509970 194227 bytes_in 35645241 194227 station_ip 5.233.71.67 194227 port 15729358 194227 nas_port_type Virtual 194227 remote_ip 5.5.5.5 194229 username alihosseini1 194229 mac 194229 bytes_out 2061818 194229 bytes_in 6805878 194229 station_ip 5.119.209.54 194229 port 508 194229 unique_id port 194229 remote_ip 10.8.0.118 194235 username esmaeilkazemi 194235 mac 194235 bytes_out 0 194235 bytes_in 0 194235 station_ip 83.123.90.87 194235 port 474 194235 unique_id port 194235 remote_ip 10.8.0.26 194179 unique_id port 194179 remote_ip 10.8.0.42 194182 username pourshad 194182 mac 194182 bytes_out 17809 194182 bytes_in 27163 194182 station_ip 5.120.152.46 194182 port 508 194182 unique_id port 194182 remote_ip 10.8.0.42 194183 username motamedi9772 194183 mac 194183 bytes_out 50438 194183 bytes_in 401738 194183 station_ip 83.123.48.67 194183 port 516 194183 unique_id port 194183 remote_ip 10.8.0.154 194185 username alipour1506 194185 mac 194185 bytes_out 428128 194185 bytes_in 2883318 194185 station_ip 83.123.10.230 194185 port 513 194185 unique_id port 194185 remote_ip 10.8.0.246 194187 username soleymani5056 194187 mac 194187 bytes_out 149417 194187 bytes_in 146821 194187 station_ip 5.120.42.213 194187 port 518 194187 unique_id port 194187 remote_ip 10.8.0.226 194188 username nilufarrajaei 194188 mac 194188 bytes_out 0 194188 bytes_in 0 194188 station_ip 83.123.53.158 194188 port 512 194188 unique_id port 194189 username zahra1101 194189 mac 194189 bytes_out 0 194189 bytes_in 0 194189 station_ip 5.119.130.230 194189 port 512 194189 unique_id port 194189 remote_ip 10.8.0.30 194191 username hashtadani5 194191 mac 194191 bytes_out 105730 194191 bytes_in 558959 194191 station_ip 5.202.30.61 194191 port 504 194191 unique_id port 194191 remote_ip 10.8.0.218 194193 username alipour1506 194193 mac 194193 bytes_out 58886 194193 bytes_in 112615 194193 station_ip 83.123.10.230 194193 port 508 194193 unique_id port 194193 remote_ip 10.8.0.246 194194 username hashtadani5 194194 mac 194194 bytes_out 0 194194 bytes_in 0 194194 station_ip 5.202.30.61 194194 port 508 194194 unique_id port 194194 remote_ip 10.8.0.218 194197 username alihosseini1 194197 mac 194197 bytes_out 0 194197 bytes_in 0 194197 station_ip 5.119.209.54 194197 port 508 194197 unique_id port 194197 remote_ip 10.8.0.118 194200 username barzegar 194200 mac 194200 bytes_out 0 194200 bytes_in 0 194200 station_ip 5.119.204.241 194200 port 508 194200 unique_id port 194200 remote_ip 10.8.0.70 194202 username alipour1506 194202 mac 194202 bytes_out 41407 194202 bytes_in 87133 194202 station_ip 83.123.10.230 194202 port 504 194202 unique_id port 194202 remote_ip 10.8.0.246 194205 username hashtadani5 194205 mac 194205 bytes_out 497469 194205 bytes_in 4372253 194205 station_ip 5.202.30.61 194205 port 508 194205 unique_id port 194205 remote_ip 10.8.0.218 194206 username alihosseini1 194206 mac 194206 bytes_out 0 194206 bytes_in 0 194206 station_ip 5.119.209.54 194206 port 508 194206 unique_id port 194206 remote_ip 10.8.0.118 194210 username alihosseini1 194210 mac 194210 bytes_out 0 194210 bytes_in 0 194210 station_ip 5.119.209.54 194210 port 508 194210 unique_id port 194210 remote_ip 10.8.0.118 194212 username hashtadani5 194212 mac 194212 bytes_out 0 194212 bytes_in 0 194212 station_ip 5.202.30.61 194212 port 513 194212 unique_id port 194212 remote_ip 10.8.0.218 194213 username mostafa_es78 194213 mac 194213 bytes_out 254504 194213 bytes_in 1333133 194213 station_ip 83.122.42.216 194213 port 510 194213 unique_id port 194213 remote_ip 10.8.0.34 194215 username zahra1101 194215 kill_reason Maximum check online fails reached 194215 mac 194215 bytes_out 0 194215 bytes_in 0 194215 station_ip 5.119.130.230 194215 port 513 194215 unique_id port 194217 username fezealinaghi 194217 kill_reason Another user logged on this global unique id 194217 mac 194217 bytes_out 0 194217 bytes_in 0 194217 station_ip 83.123.1.232 194217 port 501 194181 bytes_in 0 194181 station_ip 5.119.130.230 194181 port 510 194181 unique_id port 194181 remote_ip 10.8.0.30 194186 username meysam 194186 mac 194186 bytes_out 0 194186 bytes_in 0 194186 station_ip 188.159.254.208 194186 port 515 194186 unique_id port 194192 username zahra1101 194192 mac 194192 bytes_out 0 194192 bytes_in 0 194192 station_ip 5.119.130.230 194192 port 504 194192 unique_id port 194192 remote_ip 10.8.0.30 194198 username mammad 194198 unique_id port 194198 terminate_cause Lost-Carrier 194198 bytes_out 587986 194198 bytes_in 5607343 194198 station_ip 5.233.67.118 194198 port 15729357 194198 nas_port_type Virtual 194198 remote_ip 5.5.5.6 194204 username nilufarrajaei 194204 mac 194204 bytes_out 59940 194204 bytes_in 122544 194204 station_ip 83.123.53.158 194204 port 510 194204 unique_id port 194204 remote_ip 10.8.0.194 194207 username barzegar 194207 mac 194207 bytes_out 13052 194207 bytes_in 35046 194207 station_ip 5.119.204.241 194207 port 504 194207 unique_id port 194207 remote_ip 10.8.0.70 194214 username hashtadani5 194214 mac 194214 bytes_out 0 194214 bytes_in 0 194214 station_ip 5.202.30.61 194214 port 510 194214 unique_id port 194214 remote_ip 10.8.0.218 194216 username alipour1506 194216 mac 194216 bytes_out 47285 194216 bytes_in 92016 194216 station_ip 83.123.10.230 194216 port 515 194216 unique_id port 194216 remote_ip 10.8.0.246 194223 username mostafa_es78 194223 mac 194223 bytes_out 45279 194223 bytes_in 131729 194223 station_ip 83.122.42.216 194223 port 515 194223 unique_id port 194223 remote_ip 10.8.0.34 194226 username yaghobi 194226 mac 194226 bytes_out 1746438 194226 bytes_in 22627423 194226 station_ip 83.123.118.117 194226 port 520 194226 unique_id port 194226 remote_ip 10.8.0.138 194228 username fezealinaghi 194228 kill_reason Another user logged on this global unique id 194228 mac 194228 bytes_out 0 194228 bytes_in 0 194228 station_ip 83.123.1.232 194228 port 501 194228 unique_id port 194231 username hashtadani5 194231 mac 194231 bytes_out 1897987 194231 bytes_in 18426550 194231 station_ip 5.202.30.61 194231 port 519 194231 unique_id port 194231 remote_ip 10.8.0.218 194232 username mostafa_es78 194232 mac 194232 bytes_out 13436 194232 bytes_in 19359 194232 station_ip 83.122.42.216 194232 port 510 194232 unique_id port 194232 remote_ip 10.8.0.34 194233 username godarzi 194233 kill_reason Another user logged on this global unique id 194233 mac 194233 bytes_out 0 194233 bytes_in 0 194233 station_ip 45.84.157.190 194233 port 506 194233 unique_id port 194237 username esmaeilkazemi 194237 mac 194237 bytes_out 1811 194237 bytes_in 3731 194237 station_ip 83.123.90.87 194237 port 508 194237 unique_id port 194237 remote_ip 10.8.0.26 194242 username alipour1506 194242 mac 194242 bytes_out 78835 194242 bytes_in 157026 194242 station_ip 83.123.10.230 194242 port 504 194242 unique_id port 194242 remote_ip 10.8.0.246 194248 username saeeddamghani 194248 kill_reason Another user logged on this global unique id 194248 mac 194248 bytes_out 0 194248 bytes_in 0 194248 station_ip 217.60.218.102 194248 port 516 194248 unique_id port 194248 remote_ip 10.8.0.174 194250 username meghdad1616 194250 mac 194250 bytes_out 2111 194250 bytes_in 4388 194250 station_ip 5.120.168.218 194250 port 515 194250 unique_id port 194250 remote_ip 10.8.0.230 194253 username saeeddamghani 194253 mac 194253 bytes_out 0 194253 bytes_in 0 194253 station_ip 217.60.218.102 194253 port 516 194253 unique_id port 194255 username hashtadani5 194217 unique_id port 194218 username yaghobi 194218 mac 194218 bytes_out 1134357 194218 bytes_in 6628235 194218 station_ip 83.123.118.117 194218 port 504 194218 unique_id port 194218 remote_ip 10.8.0.138 194220 username nilufarrajaei 194220 mac 194220 bytes_out 488827 194220 bytes_in 1180896 194220 station_ip 83.123.53.158 194220 port 516 194220 unique_id port 194220 remote_ip 10.8.0.194 194221 username alipour1506 194221 mac 194221 bytes_out 31525 194221 bytes_in 54976 194221 station_ip 83.123.10.230 194221 port 510 194221 unique_id port 194221 remote_ip 10.8.0.246 194230 username pourshad 194230 mac 194230 bytes_out 549374 194230 bytes_in 3527661 194230 station_ip 5.120.152.46 194230 port 474 194230 unique_id port 194230 remote_ip 10.8.0.42 194234 username hashtadani5 194234 mac 194234 bytes_out 0 194234 bytes_in 0 194234 station_ip 5.202.30.61 194234 port 474 194234 unique_id port 194234 remote_ip 10.8.0.218 194239 username yaghobi 194239 mac 194239 bytes_out 600874 194239 bytes_in 3144802 194239 station_ip 83.123.118.117 194239 port 522 194239 unique_id port 194239 remote_ip 10.8.0.138 194246 username zahra1101 194246 mac 194246 bytes_out 38419 194246 bytes_in 48562 194246 station_ip 5.119.130.230 194246 port 515 194246 unique_id port 194246 remote_ip 10.8.0.30 194247 username hashtadani5 194247 mac 194247 bytes_out 0 194247 bytes_in 0 194247 station_ip 5.202.30.61 194247 port 515 194247 unique_id port 194247 remote_ip 10.8.0.218 194251 username hashtadani5 194251 mac 194251 bytes_out 0 194251 bytes_in 0 194251 station_ip 5.202.30.61 194251 port 521 194251 unique_id port 194251 remote_ip 10.8.0.218 194254 username hashtadani5 194254 kill_reason Maximum check online fails reached 194254 mac 194254 bytes_out 0 194254 bytes_in 0 194254 station_ip 5.202.30.61 194254 port 521 194254 unique_id port 194258 username akbari0070 194258 mac 194258 bytes_out 2494994 194258 bytes_in 38470456 194258 station_ip 83.123.127.27 194258 port 504 194258 unique_id port 194258 remote_ip 10.8.0.166 194261 username saeeddamghani 194261 kill_reason Maximum check online fails reached 194261 mac 194261 bytes_out 0 194261 bytes_in 0 194261 station_ip 217.60.218.102 194261 port 516 194261 unique_id port 194265 username mammad 194265 unique_id port 194265 terminate_cause Lost-Carrier 194265 bytes_out 2018951 194265 bytes_in 21889938 194265 station_ip 46.100.221.113 194265 port 15729359 194265 nas_port_type Virtual 194265 remote_ip 5.5.5.4 194269 username yaghobi 194269 mac 194269 bytes_out 113723 194269 bytes_in 234747 194269 station_ip 83.123.27.209 194269 port 474 194269 unique_id port 194269 remote_ip 10.8.0.138 194273 username nilufarrajaei 194273 mac 194273 bytes_out 267935 194273 bytes_in 637451 194273 station_ip 83.123.53.158 194273 port 523 194273 unique_id port 194273 remote_ip 10.8.0.194 194279 username hashtadani5 194279 mac 194279 bytes_out 0 194279 bytes_in 0 194279 station_ip 5.202.30.61 194279 port 524 194279 unique_id port 194279 remote_ip 10.8.0.218 194280 username hashtadani5 194280 mac 194280 bytes_out 1644 194280 bytes_in 5076 194280 station_ip 5.202.30.61 194280 port 524 194280 unique_id port 194280 remote_ip 10.8.0.218 194283 username hashtadani5 194283 mac 194283 bytes_out 0 194283 bytes_in 0 194283 station_ip 5.202.30.61 194283 port 524 194283 unique_id port 194283 remote_ip 10.8.0.218 194285 username mammad 194285 kill_reason Maximum number of concurrent logins reached 194285 unique_id port 194285 bytes_out 0 194236 username hashtadani5 194236 mac 194236 bytes_out 0 194236 bytes_in 0 194236 station_ip 5.202.30.61 194236 port 474 194236 unique_id port 194236 remote_ip 10.8.0.218 194238 username nilufarrajaei 194238 mac 194238 bytes_out 385220 194238 bytes_in 1933546 194238 station_ip 83.123.53.158 194238 port 521 194238 unique_id port 194238 remote_ip 10.8.0.194 194240 username farhad3 194240 mac 194240 bytes_out 0 194240 bytes_in 0 194240 station_ip 5.120.62.231 194240 port 508 194240 unique_id port 194240 remote_ip 10.8.0.222 194241 username hashtadani5 194241 mac 194241 bytes_out 0 194241 bytes_in 0 194241 station_ip 5.202.30.61 194241 port 508 194241 unique_id port 194241 remote_ip 10.8.0.218 194243 username fezealinaghi 194243 kill_reason Another user logged on this global unique id 194243 mac 194243 bytes_out 0 194243 bytes_in 0 194243 station_ip 83.123.1.232 194243 port 501 194243 unique_id port 194244 username akbari0070 194244 mac 194244 bytes_out 0 194244 bytes_in 0 194244 station_ip 83.123.127.27 194244 port 519 194244 unique_id port 194244 remote_ip 10.8.0.166 194245 username soleymani5056 194245 mac 194245 bytes_out 257454 194245 bytes_in 971060 194245 station_ip 5.120.39.52 194245 port 518 194245 unique_id port 194245 remote_ip 10.8.0.226 194249 username nilufarrajaei 194249 mac 194249 bytes_out 285882 194249 bytes_in 3347419 194249 station_ip 83.123.53.158 194249 port 474 194249 unique_id port 194249 remote_ip 10.8.0.194 194252 username yaghobi 194252 mac 194252 bytes_out 203558 194252 bytes_in 301195 194252 station_ip 83.123.125.108 194252 port 510 194252 unique_id port 194252 remote_ip 10.8.0.138 194256 username saeeddamghani 194256 mac 194256 bytes_out 0 194256 bytes_in 0 194256 station_ip 217.60.218.102 194256 port 516 194256 unique_id port 194256 remote_ip 10.8.0.174 194259 username nilufarrajaei 194259 mac 194259 bytes_out 148426 194259 bytes_in 361400 194259 station_ip 83.123.53.158 194259 port 474 194259 unique_id port 194259 remote_ip 10.8.0.194 194260 username yaghobi 194260 mac 194260 bytes_out 291975 194260 bytes_in 1587176 194260 station_ip 83.123.27.209 194260 port 522 194260 unique_id port 194260 remote_ip 10.8.0.138 194263 username zahra1101 194263 kill_reason Maximum check online fails reached 194263 mac 194263 bytes_out 0 194263 bytes_in 0 194263 station_ip 5.119.130.230 194263 port 504 194263 unique_id port 194264 username mohammadjavad 194264 mac 194264 bytes_out 150035 194264 bytes_in 1000952 194264 station_ip 83.123.67.201 194264 port 523 194264 unique_id port 194264 remote_ip 10.8.0.110 194270 username fezealinaghi 194270 kill_reason Another user logged on this global unique id 194270 mac 194270 bytes_out 0 194270 bytes_in 0 194270 station_ip 83.123.1.232 194270 port 501 194270 unique_id port 194271 username hashtadani5 194271 mac 194271 bytes_out 0 194271 bytes_in 0 194271 station_ip 5.202.30.61 194271 port 474 194271 unique_id port 194271 remote_ip 10.8.0.218 194275 username meghdad1616 194275 mac 194275 bytes_out 368464 194275 bytes_in 1221101 194275 station_ip 5.120.168.218 194275 port 526 194275 unique_id port 194275 remote_ip 10.8.0.230 194278 username mostafa_es78 194278 mac 194278 bytes_out 381761 194278 bytes_in 4190462 194278 station_ip 83.122.42.216 194278 port 528 194278 unique_id port 194278 remote_ip 10.8.0.34 194282 username nilufarrajaei 194282 mac 194282 bytes_out 12471 194282 bytes_in 16194 194282 station_ip 83.123.53.158 194282 port 474 194255 mac 194255 bytes_out 0 194255 bytes_in 0 194255 station_ip 5.202.30.61 194255 port 523 194255 unique_id port 194255 remote_ip 10.8.0.218 194257 username zahra1101 194257 mac 194257 bytes_out 2663 194257 bytes_in 4850 194257 station_ip 5.119.130.230 194257 port 510 194257 unique_id port 194257 remote_ip 10.8.0.30 194262 username hashtadani5 194262 kill_reason Maximum check online fails reached 194262 mac 194262 bytes_out 0 194262 bytes_in 0 194262 station_ip 5.202.30.61 194262 port 510 194262 unique_id port 194266 username hashtadani5 194266 mac 194266 bytes_out 0 194266 bytes_in 0 194266 station_ip 5.202.30.61 194266 port 523 194266 unique_id port 194266 remote_ip 10.8.0.218 194267 username barzegar8595 194267 mac 194267 bytes_out 2584632 194267 bytes_in 26520312 194267 station_ip 46.225.211.103 194267 port 512 194267 unique_id port 194267 remote_ip 10.8.0.114 194268 username zahra1101 194268 mac 194268 bytes_out 0 194268 bytes_in 0 194268 station_ip 5.119.130.230 194268 port 524 194268 unique_id port 194268 remote_ip 10.8.0.30 194272 username zahra1101 194272 mac 194272 bytes_out 30991 194272 bytes_in 72868 194272 station_ip 5.119.130.230 194272 port 527 194272 unique_id port 194272 remote_ip 10.8.0.30 194274 username yaghobi 194274 mac 194274 bytes_out 54710 194274 bytes_in 61454 194274 station_ip 83.123.27.209 194274 port 524 194274 unique_id port 194274 remote_ip 10.8.0.138 194276 username hosseine 194276 kill_reason Another user logged on this global unique id 194276 mac 194276 bytes_out 0 194276 bytes_in 0 194276 station_ip 83.123.39.13 194276 port 519 194276 unique_id port 194276 remote_ip 10.8.0.54 194277 username nilufarrajaei 194277 mac 194277 bytes_out 67881 194277 bytes_in 271359 194277 station_ip 83.123.53.158 194277 port 474 194277 unique_id port 194277 remote_ip 10.8.0.194 194281 username meghdad1616 194281 mac 194281 bytes_out 2151 194281 bytes_in 5023 194281 station_ip 5.120.168.218 194281 port 526 194281 unique_id port 194281 remote_ip 10.8.0.230 194284 username barzegar 194284 mac 194284 bytes_out 0 194284 bytes_in 0 194284 station_ip 5.119.204.241 194284 port 526 194284 unique_id port 194284 remote_ip 10.8.0.70 194287 username farhad3 194287 mac 194287 bytes_out 3542929 194287 bytes_in 27021899 194287 station_ip 5.120.62.231 194287 port 522 194287 unique_id port 194287 remote_ip 10.8.0.222 194291 username zahra1101 194291 mac 194291 bytes_out 196712 194291 bytes_in 553102 194291 station_ip 5.119.130.230 194291 port 523 194291 unique_id port 194291 remote_ip 10.8.0.30 194294 username hashtadani5 194294 mac 194294 bytes_out 0 194294 bytes_in 0 194294 station_ip 5.202.30.61 194294 port 474 194294 unique_id port 194294 remote_ip 10.8.0.218 194295 username hashtadani5 194295 mac 194295 bytes_out 0 194295 bytes_in 0 194295 station_ip 5.202.30.61 194295 port 524 194295 unique_id port 194295 remote_ip 10.8.0.218 194297 username kalantary6037 194297 mac 194297 bytes_out 522290 194297 bytes_in 4499524 194297 station_ip 83.123.77.77 194297 port 522 194297 unique_id port 194297 remote_ip 10.8.0.50 194300 username pourshad 194300 mac 194300 bytes_out 177387 194300 bytes_in 1039312 194300 station_ip 5.120.152.46 194300 port 518 194300 unique_id port 194300 remote_ip 10.8.0.42 194303 username hashtadani5 194303 mac 194303 bytes_out 0 194303 bytes_in 0 194303 station_ip 5.202.30.61 194303 port 508 194303 unique_id port 194303 remote_ip 10.8.0.218 194282 unique_id port 194282 remote_ip 10.8.0.194 194286 username mammad 194286 unique_id port 194286 terminate_cause Lost-Carrier 194286 bytes_out 566589 194286 bytes_in 8881587 194286 station_ip 5.233.71.245 194286 port 15729361 194286 nas_port_type Virtual 194286 remote_ip 5.5.5.2 194289 username hashtadani5 194289 mac 194289 bytes_out 1644 194289 bytes_in 4275 194289 station_ip 5.202.30.61 194289 port 474 194289 unique_id port 194289 remote_ip 10.8.0.218 194292 username soleymani5056 194292 mac 194292 bytes_out 39206 194292 bytes_in 77172 194292 station_ip 5.119.129.144 194292 port 527 194292 unique_id port 194292 remote_ip 10.8.0.226 194301 username godarzi 194301 mac 194301 bytes_out 0 194301 bytes_in 0 194301 station_ip 45.84.157.190 194301 port 506 194301 unique_id port 194302 username alipour1506 194302 mac 194302 bytes_out 114664 194302 bytes_in 189498 194302 station_ip 83.123.10.230 194302 port 508 194302 unique_id port 194302 remote_ip 10.8.0.246 194304 username meysam 194304 kill_reason Another user logged on this global unique id 194304 mac 194304 bytes_out 0 194304 bytes_in 0 194304 station_ip 188.159.254.208 194304 port 515 194304 unique_id port 194304 remote_ip 10.8.0.158 194305 username hashtadani5 194305 mac 194305 bytes_out 0 194305 bytes_in 0 194305 station_ip 5.202.30.61 194305 port 522 194305 unique_id port 194305 remote_ip 10.8.0.218 194308 username aminvpn 194308 unique_id port 194308 terminate_cause User-Request 194308 bytes_out 25592977 194308 bytes_in 1135817002 194308 station_ip 31.57.120.168 194308 port 15729356 194308 nas_port_type Virtual 194308 remote_ip 5.5.5.7 194314 username fezealinaghi 194314 kill_reason Another user logged on this global unique id 194314 mac 194314 bytes_out 0 194314 bytes_in 0 194314 station_ip 83.123.1.232 194314 port 501 194314 unique_id port 194317 username mostafa_es78 194317 mac 194317 bytes_out 3437016 194317 bytes_in 40804207 194317 station_ip 83.122.42.216 194317 port 508 194317 unique_id port 194317 remote_ip 10.8.0.34 194321 username yaghobi 194321 mac 194321 bytes_out 293447 194321 bytes_in 1497558 194321 station_ip 83.123.126.26 194321 port 522 194321 unique_id port 194321 remote_ip 10.8.0.138 194324 username hashtadani5 194324 mac 194324 bytes_out 7504 194324 bytes_in 8959 194324 station_ip 5.202.30.61 194324 port 474 194324 unique_id port 194324 remote_ip 10.8.0.218 194326 username hashtadani5 194326 mac 194326 bytes_out 0 194326 bytes_in 0 194326 station_ip 83.123.7.32 194326 port 474 194326 unique_id port 194326 remote_ip 10.8.0.218 194327 username tahmorsi 194327 mac 194327 bytes_out 0 194327 bytes_in 0 194327 station_ip 86.57.91.60 194327 port 512 194327 unique_id port 194329 username kharazmi2920 194329 mac 194329 bytes_out 1101648 194329 bytes_in 8078377 194329 station_ip 83.123.122.251 194329 port 524 194329 unique_id port 194329 remote_ip 10.8.0.22 194332 username dortaj3792 194332 mac 194332 bytes_out 935757 194332 bytes_in 4801436 194332 station_ip 5.120.124.2 194332 port 518 194332 unique_id port 194332 remote_ip 10.8.0.102 194336 username hashtadani5 194336 mac 194336 bytes_out 0 194336 bytes_in 0 194336 station_ip 5.202.30.61 194336 port 524 194336 unique_id port 194336 remote_ip 10.8.0.218 194340 username yaghobi 194340 mac 194340 bytes_out 8045 194340 bytes_in 23622 194340 station_ip 83.123.64.156 194340 port 524 194340 unique_id port 194340 remote_ip 10.8.0.138 194344 username zahra1101 194344 mac 194344 bytes_out 0 194285 bytes_in 0 194285 station_ip 5.233.79.229 194285 port 15729362 194285 nas_port_type Virtual 194288 username mammad 194288 unique_id port 194288 terminate_cause User-Request 194288 bytes_out 2305 194288 bytes_in 116 194288 station_ip 5.233.79.229 194288 port 15729363 194288 nas_port_type Virtual 194288 remote_ip 5.5.5.1 194290 username mammad 194290 unique_id port 194290 terminate_cause User-Request 194290 bytes_out 4420 194290 bytes_in 116 194290 station_ip 5.233.79.229 194290 port 15729364 194290 nas_port_type Virtual 194290 remote_ip 5.5.5.1 194293 username akbari0070 194293 mac 194293 bytes_out 3011914 194293 bytes_in 40286374 194293 station_ip 83.123.127.27 194293 port 525 194293 unique_id port 194293 remote_ip 10.8.0.166 194296 username akbari0070 194296 mac 194296 bytes_out 0 194296 bytes_in 0 194296 station_ip 83.123.127.27 194296 port 523 194296 unique_id port 194296 remote_ip 10.8.0.166 194298 username hosseine 194298 kill_reason Another user logged on this global unique id 194298 mac 194298 bytes_out 0 194298 bytes_in 0 194298 station_ip 83.123.39.13 194298 port 519 194298 unique_id port 194299 username akbari0070 194299 mac 194299 bytes_out 127842 194299 bytes_in 989919 194299 station_ip 83.123.127.27 194299 port 524 194299 unique_id port 194299 remote_ip 10.8.0.166 194309 username hashtadani5 194309 mac 194309 bytes_out 0 194309 bytes_in 0 194309 station_ip 5.202.30.61 194309 port 524 194309 unique_id port 194309 remote_ip 10.8.0.218 194310 username meysam 194310 mac 194310 bytes_out 0 194310 bytes_in 0 194310 station_ip 188.159.254.208 194310 port 515 194310 unique_id port 194311 username yaghobi 194311 mac 194311 bytes_out 203086 194311 bytes_in 1055171 194311 station_ip 83.123.126.26 194311 port 522 194311 unique_id port 194311 remote_ip 10.8.0.138 194312 username yaghobi 194312 mac 194312 bytes_out 0 194312 bytes_in 0 194312 station_ip 83.123.126.26 194312 port 525 194312 unique_id port 194312 remote_ip 10.8.0.138 194316 username tahmorsi 194316 kill_reason Another user logged on this global unique id 194316 mac 194316 bytes_out 0 194316 bytes_in 0 194316 station_ip 86.57.91.60 194316 port 512 194316 unique_id port 194316 remote_ip 10.8.0.6 194318 username alipour1506 194318 mac 194318 bytes_out 58755 194318 bytes_in 70675 194318 station_ip 83.123.10.230 194318 port 506 194318 unique_id port 194318 remote_ip 10.8.0.246 194320 username meghdad1616 194320 mac 194320 bytes_out 0 194320 bytes_in 0 194320 station_ip 5.120.168.218 194320 port 474 194320 unique_id port 194320 remote_ip 10.8.0.230 194322 username aminvpn 194322 unique_id port 194322 terminate_cause User-Request 194322 bytes_out 2232 194322 bytes_in 380 194322 station_ip 31.57.140.159 194322 port 15729366 194322 nas_port_type Virtual 194322 remote_ip 5.5.5.0 194325 username hashtadani5 194325 mac 194325 bytes_out 0 194325 bytes_in 0 194325 station_ip 83.123.7.32 194325 port 522 194325 unique_id port 194325 remote_ip 10.8.0.218 194328 username hashtadani5 194328 mac 194328 bytes_out 0 194328 bytes_in 0 194328 station_ip 83.123.7.32 194328 port 474 194328 unique_id port 194328 remote_ip 10.8.0.218 194330 username yaghobi 194330 mac 194330 bytes_out 9769 194330 bytes_in 21718 194330 station_ip 83.123.126.26 194330 port 527 194330 unique_id port 194330 remote_ip 10.8.0.138 194331 username khalili2 194331 kill_reason Another user logged on this global unique id 194331 mac 194331 bytes_out 0 194331 bytes_in 0 194331 station_ip 5.120.158.142 194331 port 514 194306 username fezealinaghi 194306 kill_reason Another user logged on this global unique id 194306 mac 194306 bytes_out 0 194306 bytes_in 0 194306 station_ip 83.123.1.232 194306 port 501 194306 unique_id port 194307 username zahra1101 194307 mac 194307 bytes_out 9593 194307 bytes_in 14607 194307 station_ip 5.119.130.230 194307 port 474 194307 unique_id port 194307 remote_ip 10.8.0.30 194313 username hashtadani5 194313 mac 194313 bytes_out 7257 194313 bytes_in 9036 194313 station_ip 5.202.30.61 194313 port 515 194313 unique_id port 194313 remote_ip 10.8.0.218 194315 username aminvpn 194315 unique_id port 194315 terminate_cause User-Request 194315 bytes_out 377810 194315 bytes_in 5711748 194315 station_ip 31.57.120.168 194315 port 15729365 194315 nas_port_type Virtual 194315 remote_ip 5.5.5.7 194319 username pourshad 194319 mac 194319 bytes_out 40749 194319 bytes_in 65840 194319 station_ip 5.120.152.46 194319 port 474 194319 unique_id port 194319 remote_ip 10.8.0.42 194323 username fezealinaghi 194323 kill_reason Another user logged on this global unique id 194323 mac 194323 bytes_out 0 194323 bytes_in 0 194323 station_ip 83.123.1.232 194323 port 501 194323 unique_id port 194333 username motamedi9772 194333 mac 194333 bytes_out 217241 194333 bytes_in 959789 194333 station_ip 83.123.127.87 194333 port 525 194333 unique_id port 194333 remote_ip 10.8.0.154 194334 username yaghobi 194334 mac 194334 bytes_out 83868 194334 bytes_in 114414 194334 station_ip 83.123.64.156 194334 port 522 194334 unique_id port 194334 remote_ip 10.8.0.138 194335 username hashtadani5 194335 mac 194335 bytes_out 0 194335 bytes_in 0 194335 station_ip 5.202.30.61 194335 port 522 194335 unique_id port 194335 remote_ip 10.8.0.218 194343 username alipour1506 194343 mac 194343 bytes_out 131572 194343 bytes_in 615212 194343 station_ip 83.123.10.230 194343 port 526 194343 unique_id port 194343 remote_ip 10.8.0.246 194349 username mirzaei6046 194349 kill_reason Another user logged on this global unique id 194349 mac 194349 bytes_out 0 194349 bytes_in 0 194349 station_ip 5.119.60.30 194349 port 435 194349 unique_id port 194350 username hashtadani5 194350 mac 194350 bytes_out 0 194350 bytes_in 0 194350 station_ip 5.202.30.61 194350 port 522 194350 unique_id port 194350 remote_ip 10.8.0.218 194355 username shahruz 194355 mac 194355 bytes_out 1703601 194355 bytes_in 19263017 194355 station_ip 83.123.33.65 194355 port 508 194355 unique_id port 194355 remote_ip 10.8.0.74 194359 username shahruz 194359 mac 194359 bytes_out 0 194359 bytes_in 0 194359 station_ip 83.123.33.65 194359 port 508 194359 unique_id port 194359 remote_ip 10.8.0.74 194360 username shahruz 194360 mac 194360 bytes_out 0 194360 bytes_in 0 194360 station_ip 83.123.33.65 194360 port 515 194360 unique_id port 194360 remote_ip 10.8.0.74 194364 username meghdad1616 194364 mac 194364 bytes_out 0 194364 bytes_in 0 194364 station_ip 5.120.168.218 194364 port 522 194364 unique_id port 194364 remote_ip 10.8.0.230 194366 username shahruz 194366 mac 194366 bytes_out 0 194366 bytes_in 0 194366 station_ip 83.123.33.65 194366 port 525 194366 unique_id port 194366 remote_ip 10.8.0.74 194367 username shahruz 194367 mac 194367 bytes_out 0 194367 bytes_in 0 194367 station_ip 83.123.33.65 194367 port 526 194367 unique_id port 194367 remote_ip 10.8.0.74 194370 username saeeddamghani 194370 unique_id port 194370 terminate_cause User-Request 194370 bytes_out 393245 194370 bytes_in 13326780 194370 station_ip 83.123.115.209 194331 unique_id port 194337 username barzegar 194337 kill_reason Another user logged on this global unique id 194337 mac 194337 bytes_out 0 194337 bytes_in 0 194337 station_ip 5.119.204.241 194337 port 474 194337 unique_id port 194337 remote_ip 10.8.0.70 194338 username yaghobi 194338 mac 194338 bytes_out 18135 194338 bytes_in 33992 194338 station_ip 83.123.64.156 194338 port 518 194338 unique_id port 194338 remote_ip 10.8.0.138 194339 username godarzi 194339 mac 194339 bytes_out 1317403 194339 bytes_in 13374311 194339 station_ip 5.120.124.40 194339 port 522 194339 unique_id port 194339 remote_ip 10.8.0.38 194341 username zahra1101 194341 mac 194341 bytes_out 73175 194341 bytes_in 213564 194341 station_ip 5.119.130.230 194341 port 523 194341 unique_id port 194341 remote_ip 10.8.0.30 194342 username godarzi 194342 mac 194342 bytes_out 46632 194342 bytes_in 65347 194342 station_ip 5.120.124.40 194342 port 524 194342 unique_id port 194342 remote_ip 10.8.0.38 194345 username barzegar 194345 mac 194345 bytes_out 0 194345 bytes_in 0 194345 station_ip 5.119.204.241 194345 port 474 194345 unique_id port 194347 username mostafa_es78 194347 mac 194347 bytes_out 82606 194347 bytes_in 225790 194347 station_ip 83.122.42.216 194347 port 512 194347 unique_id port 194347 remote_ip 10.8.0.34 194352 username hashtadani5 194352 mac 194352 bytes_out 0 194352 bytes_in 0 194352 station_ip 5.202.30.61 194352 port 518 194352 unique_id port 194352 remote_ip 10.8.0.218 194353 username hashtadani5 194353 mac 194353 bytes_out 0 194353 bytes_in 0 194353 station_ip 5.202.30.61 194353 port 518 194353 unique_id port 194353 remote_ip 10.8.0.218 194354 username zahra1101 194354 mac 194354 bytes_out 2686 194354 bytes_in 4963 194354 station_ip 5.119.130.230 194354 port 512 194354 unique_id port 194354 remote_ip 10.8.0.30 194356 username shahruz 194356 mac 194356 bytes_out 0 194356 bytes_in 0 194356 station_ip 83.123.33.65 194356 port 508 194356 unique_id port 194356 remote_ip 10.8.0.74 194358 username aminvpn 194358 mac 194358 bytes_out 589763 194358 bytes_in 868947 194358 station_ip 5.120.4.87 194358 port 515 194358 unique_id port 194358 remote_ip 10.8.0.58 194361 username barzegar 194361 mac 194361 bytes_out 60592 194361 bytes_in 895663 194361 station_ip 5.119.204.241 194361 port 508 194361 unique_id port 194361 remote_ip 10.8.0.70 194363 username shahruz 194363 mac 194363 bytes_out 0 194363 bytes_in 0 194363 station_ip 83.123.33.65 194363 port 508 194363 unique_id port 194363 remote_ip 10.8.0.74 194369 username shahruz 194369 mac 194369 bytes_out 0 194369 bytes_in 0 194369 station_ip 83.123.33.65 194369 port 527 194369 unique_id port 194369 remote_ip 10.8.0.74 194371 username shahruz 194371 kill_reason Maximum check online fails reached 194371 mac 194371 bytes_out 0 194371 bytes_in 0 194371 station_ip 83.123.33.65 194371 port 526 194371 unique_id port 194376 username hashtadani5 194376 mac 194376 bytes_out 0 194376 bytes_in 0 194376 station_ip 5.202.30.61 194376 port 518 194376 unique_id port 194376 remote_ip 10.8.0.218 194378 username farhad3 194378 mac 194378 bytes_out 929817 194378 bytes_in 7591820 194378 station_ip 5.120.62.231 194378 port 508 194378 unique_id port 194378 remote_ip 10.8.0.222 194381 username barzegar 194381 mac 194381 bytes_out 1647173 194381 bytes_in 22760351 194381 station_ip 5.119.204.241 194381 port 522 194381 unique_id port 194381 remote_ip 10.8.0.70 194344 bytes_in 0 194344 station_ip 5.119.130.230 194344 port 523 194344 unique_id port 194344 remote_ip 10.8.0.30 194346 username soleymani5056 194346 mac 194346 bytes_out 52273 194346 bytes_in 53513 194346 station_ip 5.119.153.95 194346 port 522 194346 unique_id port 194346 remote_ip 10.8.0.226 194348 username khalili2 194348 kill_reason Another user logged on this global unique id 194348 mac 194348 bytes_out 0 194348 bytes_in 0 194348 station_ip 5.120.158.142 194348 port 514 194348 unique_id port 194351 username yaghobi 194351 mac 194351 bytes_out 183031 194351 bytes_in 332422 194351 station_ip 83.123.64.156 194351 port 518 194351 unique_id port 194351 remote_ip 10.8.0.138 194357 username shahruz 194357 mac 194357 bytes_out 0 194357 bytes_in 0 194357 station_ip 83.123.33.65 194357 port 508 194357 unique_id port 194357 remote_ip 10.8.0.74 194362 username khalili2 194362 kill_reason Another user logged on this global unique id 194362 mac 194362 bytes_out 0 194362 bytes_in 0 194362 station_ip 5.120.158.142 194362 port 514 194362 unique_id port 194365 username hashtadani5 194365 mac 194365 bytes_out 0 194365 bytes_in 0 194365 station_ip 5.202.30.61 194365 port 522 194365 unique_id port 194365 remote_ip 10.8.0.218 194368 username yaghobi 194368 mac 194368 bytes_out 199221 194368 bytes_in 401335 194368 station_ip 83.123.68.163 194368 port 515 194368 unique_id port 194368 remote_ip 10.8.0.138 194375 username shahruz 194375 mac 194375 bytes_out 0 194375 bytes_in 0 194375 station_ip 83.123.33.65 194375 port 528 194375 unique_id port 194375 remote_ip 10.8.0.74 194380 username shahruz 194380 kill_reason Maximum check online fails reached 194380 mac 194380 bytes_out 0 194380 bytes_in 0 194380 station_ip 83.123.33.65 194380 port 528 194380 unique_id port 194386 username hashtadani5 194386 mac 194386 bytes_out 7452 194386 bytes_in 8993 194386 station_ip 5.202.30.61 194386 port 518 194386 unique_id port 194386 remote_ip 10.8.0.218 194388 username barzegar 194388 mac 194388 bytes_out 0 194388 bytes_in 0 194388 station_ip 5.119.204.241 194388 port 518 194388 unique_id port 194388 remote_ip 10.8.0.70 194394 username shahruz 194394 mac 194394 bytes_out 0 194394 bytes_in 0 194394 station_ip 83.123.33.65 194394 port 527 194394 unique_id port 194394 remote_ip 10.8.0.74 194395 username hashtadani5 194395 mac 194395 bytes_out 16371 194395 bytes_in 18420 194395 station_ip 83.123.27.166 194395 port 518 194395 unique_id port 194395 remote_ip 10.8.0.218 194399 username pourshad 194399 mac 194399 bytes_out 893113 194399 bytes_in 11172718 194399 station_ip 5.120.152.46 194399 port 506 194399 unique_id port 194399 remote_ip 10.8.0.42 194402 username nilufarrajaei 194402 mac 194402 bytes_out 605996 194402 bytes_in 1687484 194402 station_ip 83.123.53.158 194402 port 523 194402 unique_id port 194402 remote_ip 10.8.0.194 194403 username shahruz 194403 mac 194403 bytes_out 0 194403 bytes_in 0 194403 station_ip 83.123.33.65 194403 port 523 194403 unique_id port 194403 remote_ip 10.8.0.74 194405 username naeimeh 194405 mac 194405 bytes_out 1051282 194405 bytes_in 10831116 194405 station_ip 83.123.119.243 194405 port 515 194405 unique_id port 194405 remote_ip 10.8.0.78 194407 username mirzaei6046 194407 mac 194407 bytes_out 0 194407 bytes_in 0 194407 station_ip 5.119.60.30 194407 port 435 194407 unique_id port 194410 username alipour1506 194410 mac 194410 bytes_out 37430 194410 bytes_in 54160 194370 port 15729367 194370 nas_port_type Virtual 194370 remote_ip 5.5.5.255 194372 username shahruz 194372 mac 194372 bytes_out 0 194372 bytes_in 0 194372 station_ip 83.123.33.65 194372 port 527 194372 unique_id port 194372 remote_ip 10.8.0.74 194373 username hashtadani5 194373 mac 194373 bytes_out 0 194373 bytes_in 0 194373 station_ip 5.202.30.61 194373 port 527 194373 unique_id port 194373 remote_ip 10.8.0.218 194374 username zahra1101 194374 mac 194374 bytes_out 28046 194374 bytes_in 48957 194374 station_ip 5.119.80.24 194374 port 518 194374 unique_id port 194374 remote_ip 10.8.0.30 194377 username hashtadani5 194377 mac 194377 bytes_out 0 194377 bytes_in 0 194377 station_ip 5.202.30.61 194377 port 518 194377 unique_id port 194377 remote_ip 10.8.0.218 194379 username saeeddamghani 194379 unique_id port 194379 terminate_cause User-Request 194379 bytes_out 78403 194379 bytes_in 1230902 194379 station_ip 83.123.115.209 194379 port 15729368 194379 nas_port_type Virtual 194379 remote_ip 5.5.5.255 194383 username askarzadeh9013 194383 mac 194383 bytes_out 594922 194383 bytes_in 4179231 194383 station_ip 46.225.209.72 194383 port 515 194383 unique_id port 194383 remote_ip 10.8.0.126 194385 username shahruz 194385 kill_reason Maximum check online fails reached 194385 mac 194385 bytes_out 0 194385 bytes_in 0 194385 station_ip 83.123.33.65 194385 port 522 194385 unique_id port 194390 username shahruz 194390 mac 194390 bytes_out 0 194390 bytes_in 0 194390 station_ip 83.123.33.65 194390 port 527 194390 unique_id port 194390 remote_ip 10.8.0.74 194392 username hashtadani5 194392 mac 194392 bytes_out 0 194392 bytes_in 0 194392 station_ip 83.123.27.166 194392 port 518 194392 unique_id port 194392 remote_ip 10.8.0.218 194393 username shahruz 194393 mac 194393 bytes_out 0 194393 bytes_in 0 194393 station_ip 83.123.33.65 194393 port 515 194393 unique_id port 194393 remote_ip 10.8.0.74 194397 username zahra1101 194397 mac 194397 bytes_out 0 194397 bytes_in 0 194397 station_ip 5.119.80.24 194397 port 518 194397 unique_id port 194397 remote_ip 10.8.0.30 194406 username alipour1506 194406 mac 194406 bytes_out 206449 194406 bytes_in 533409 194406 station_ip 83.123.10.230 194406 port 524 194406 unique_id port 194406 remote_ip 10.8.0.246 194408 username barzegar8595 194408 mac 194408 bytes_out 195956 194408 bytes_in 1574122 194408 station_ip 89.34.128.228 194408 port 518 194408 unique_id port 194408 remote_ip 10.8.0.114 194412 username soleymani5056 194412 mac 194412 bytes_out 1240623 194412 bytes_in 15612121 194412 station_ip 5.120.121.113 194412 port 530 194412 unique_id port 194412 remote_ip 10.8.0.226 194416 username barzegar8595 194416 mac 194416 bytes_out 0 194416 bytes_in 0 194416 station_ip 89.34.128.228 194416 port 515 194416 unique_id port 194416 remote_ip 10.8.0.114 194421 username saeeddamghani 194421 mac 194421 bytes_out 0 194421 bytes_in 0 194421 station_ip 217.60.218.102 194421 port 529 194421 unique_id port 194426 username meghdad1616 194426 mac 194426 bytes_out 0 194426 bytes_in 0 194426 station_ip 5.120.168.218 194426 port 435 194426 unique_id port 194426 remote_ip 10.8.0.230 194428 username saeeddamghani 194428 mac 194428 bytes_out 0 194428 bytes_in 0 194428 station_ip 217.60.218.102 194428 port 525 194428 unique_id port 194428 remote_ip 10.8.0.174 194430 username barzegar 194430 kill_reason Another user logged on this global unique id 194430 mac 194430 bytes_out 0 194430 bytes_in 0 194382 username khalili2 194382 kill_reason Another user logged on this global unique id 194382 mac 194382 bytes_out 0 194382 bytes_in 0 194382 station_ip 5.120.158.142 194382 port 514 194382 unique_id port 194384 username shahruz 194384 mac 194384 bytes_out 0 194384 bytes_in 0 194384 station_ip 83.123.33.65 194384 port 515 194384 unique_id port 194384 remote_ip 10.8.0.74 194387 username alihosseini1 194387 mac 194387 bytes_out 1669134 194387 bytes_in 16135197 194387 station_ip 5.119.31.128 194387 port 527 194387 unique_id port 194387 remote_ip 10.8.0.118 194389 username kalantary6037 194389 mac 194389 bytes_out 334905 194389 bytes_in 2681522 194389 station_ip 83.123.113.193 194389 port 508 194389 unique_id port 194389 remote_ip 10.8.0.50 194391 username meghdad1616 194391 mac 194391 bytes_out 2270 194391 bytes_in 4547 194391 station_ip 5.120.168.218 194391 port 515 194391 unique_id port 194391 remote_ip 10.8.0.230 194396 username shahruz 194396 mac 194396 bytes_out 0 194396 bytes_in 0 194396 station_ip 83.123.33.65 194396 port 515 194396 unique_id port 194396 remote_ip 10.8.0.74 194398 username khalili2 194398 kill_reason Another user logged on this global unique id 194398 mac 194398 bytes_out 0 194398 bytes_in 0 194398 station_ip 5.120.158.142 194398 port 514 194398 unique_id port 194400 username shahruz 194400 mac 194400 bytes_out 0 194400 bytes_in 0 194400 station_ip 83.123.33.65 194400 port 518 194400 unique_id port 194400 remote_ip 10.8.0.74 194401 username shahruz 194401 mac 194401 bytes_out 0 194401 bytes_in 0 194401 station_ip 83.123.33.65 194401 port 506 194401 unique_id port 194401 remote_ip 10.8.0.74 194404 username zahra1101 194404 mac 194404 bytes_out 0 194404 bytes_in 0 194404 station_ip 5.119.80.24 194404 port 518 194404 unique_id port 194404 remote_ip 10.8.0.30 194409 username saeeddamghani 194409 kill_reason Another user logged on this global unique id 194409 mac 194409 bytes_out 0 194409 bytes_in 0 194409 station_ip 217.60.218.102 194409 port 529 194409 unique_id port 194409 remote_ip 10.8.0.174 194411 username shahruz 194411 mac 194411 bytes_out 0 194411 bytes_in 0 194411 station_ip 83.123.33.65 194411 port 524 194411 unique_id port 194411 remote_ip 10.8.0.74 194413 username barzegar8595 194413 mac 194413 bytes_out 89765 194413 bytes_in 115707 194413 station_ip 46.225.209.72 194413 port 435 194413 unique_id port 194413 remote_ip 10.8.0.114 194414 username barzegar 194414 kill_reason Another user logged on this global unique id 194414 mac 194414 bytes_out 0 194414 bytes_in 0 194414 station_ip 5.119.204.241 194414 port 508 194414 unique_id port 194414 remote_ip 10.8.0.70 194417 username alipour1506 194417 mac 194417 bytes_out 42569 194417 bytes_in 89550 194417 station_ip 83.123.10.230 194417 port 531 194417 unique_id port 194417 remote_ip 10.8.0.246 194419 username barzegar8595 194419 mac 194419 bytes_out 0 194419 bytes_in 0 194419 station_ip 89.34.128.228 194419 port 523 194419 unique_id port 194419 remote_ip 10.8.0.114 194420 username shahruz 194420 mac 194420 bytes_out 0 194420 bytes_in 0 194420 station_ip 83.123.33.65 194420 port 435 194420 unique_id port 194420 remote_ip 10.8.0.74 194423 username naeimeh 194423 mac 194423 bytes_out 11421 194423 bytes_in 23774 194423 station_ip 83.123.119.243 194423 port 435 194423 unique_id port 194423 remote_ip 10.8.0.78 194429 username saeeddamghani 194429 mac 194429 bytes_out 0 194429 bytes_in 0 194429 station_ip 217.60.218.102 194429 port 527 194410 station_ip 83.123.10.230 194410 port 515 194410 unique_id port 194410 remote_ip 10.8.0.246 194415 username naeimeh 194415 mac 194415 bytes_out 1057458 194415 bytes_in 13196513 194415 station_ip 83.123.119.243 194415 port 523 194415 unique_id port 194415 remote_ip 10.8.0.78 194418 username barzegar8595 194418 mac 194418 bytes_out 0 194418 bytes_in 0 194418 station_ip 46.225.211.57 194418 port 435 194418 unique_id port 194418 remote_ip 10.8.0.114 194422 username hashtadani5 194422 mac 194422 bytes_out 2395419 194422 bytes_in 15846549 194422 station_ip 5.202.30.61 194422 port 527 194422 unique_id port 194422 remote_ip 10.8.0.218 194424 username kalantary6037 194424 mac 194424 bytes_out 170754 194424 bytes_in 522288 194424 station_ip 83.123.9.81 194424 port 524 194424 unique_id port 194424 remote_ip 10.8.0.50 194425 username shahruz 194425 mac 194425 bytes_out 0 194425 bytes_in 0 194425 station_ip 83.123.33.65 194425 port 435 194425 unique_id port 194425 remote_ip 10.8.0.74 194427 username aminvpn 194427 mac 194427 bytes_out 344445 194427 bytes_in 1636568 194427 station_ip 5.119.84.238 194427 port 525 194427 unique_id port 194427 remote_ip 10.8.0.58 194431 username soleymani5056 194431 mac 194431 bytes_out 94105 194431 bytes_in 106446 194431 station_ip 5.120.188.14 194431 port 529 194431 unique_id port 194431 remote_ip 10.8.0.226 194434 username rahim 194434 mac 194434 bytes_out 542763 194434 bytes_in 1624169 194434 station_ip 31.58.87.241 194434 port 524 194434 unique_id port 194434 remote_ip 10.8.0.134 194440 username nilufarrajaei 194440 kill_reason Another user logged on this global unique id 194440 mac 194440 bytes_out 0 194440 bytes_in 0 194440 station_ip 83.123.53.158 194440 port 506 194440 unique_id port 194440 remote_ip 10.8.0.194 194448 username shahruz 194448 mac 194448 bytes_out 0 194448 bytes_in 0 194448 station_ip 83.123.33.65 194448 port 529 194448 unique_id port 194448 remote_ip 10.8.0.74 194451 username esmaeilkazemi 194451 mac 194451 bytes_out 339099 194451 bytes_in 4158371 194451 station_ip 83.123.90.87 194451 port 532 194451 unique_id port 194451 remote_ip 10.8.0.26 194453 username hamid.e 194453 unique_id port 194453 terminate_cause User-Request 194453 bytes_out 14900778 194453 bytes_in 226899346 194453 station_ip 37.27.21.10 194453 port 15729360 194453 nas_port_type Virtual 194453 remote_ip 5.5.5.3 194456 username shahruz 194456 mac 194456 bytes_out 8437 194456 bytes_in 16831 194456 station_ip 83.123.33.65 194456 port 435 194456 unique_id port 194456 remote_ip 10.8.0.74 194457 username shahruz 194457 mac 194457 bytes_out 0 194457 bytes_in 0 194457 station_ip 83.123.33.65 194457 port 532 194457 unique_id port 194457 remote_ip 10.8.0.74 194460 username pourshad 194460 kill_reason Another user logged on this global unique id 194460 mac 194460 bytes_out 0 194460 bytes_in 0 194460 station_ip 5.120.152.46 194460 port 529 194460 unique_id port 194460 remote_ip 10.8.0.42 194465 username farhad3 194465 mac 194465 bytes_out 0 194465 bytes_in 0 194465 station_ip 5.120.62.231 194465 port 527 194465 unique_id port 194467 username meghdad1616 194467 mac 194467 bytes_out 0 194467 bytes_in 0 194467 station_ip 5.120.168.218 194467 port 529 194467 unique_id port 194467 remote_ip 10.8.0.230 194468 username alipour1506 194468 mac 194468 bytes_out 416825 194468 bytes_in 1138827 194468 station_ip 83.123.10.230 194468 port 515 194468 unique_id port 194468 remote_ip 10.8.0.246 194471 username zahra1101 194429 unique_id port 194429 remote_ip 10.8.0.174 194432 username hashtadani5 194432 mac 194432 bytes_out 0 194432 bytes_in 0 194432 station_ip 5.202.30.61 194432 port 527 194432 unique_id port 194432 remote_ip 10.8.0.218 194435 username barzegar 194435 mac 194435 bytes_out 0 194435 bytes_in 0 194435 station_ip 5.119.204.241 194435 port 508 194435 unique_id port 194436 username shahruz 194436 mac 194436 bytes_out 232186 194436 bytes_in 2027036 194436 station_ip 83.123.33.65 194436 port 524 194436 unique_id port 194436 remote_ip 10.8.0.74 194437 username naeimeh 194437 mac 194437 bytes_out 1211390 194437 bytes_in 13072322 194437 station_ip 83.123.34.163 194437 port 435 194437 unique_id port 194437 remote_ip 10.8.0.78 194438 username pourshad 194438 mac 194438 bytes_out 218067 194438 bytes_in 2772823 194438 station_ip 5.120.152.46 194438 port 508 194438 unique_id port 194438 remote_ip 10.8.0.42 194442 username barzegar 194442 mac 194442 bytes_out 0 194442 bytes_in 0 194442 station_ip 5.119.204.241 194442 port 527 194442 unique_id port 194442 remote_ip 10.8.0.70 194443 username kalantary6037 194443 mac 194443 bytes_out 0 194443 bytes_in 0 194443 station_ip 83.123.126.237 194443 port 527 194443 unique_id port 194443 remote_ip 10.8.0.50 194444 username akbari0070 194444 mac 194444 bytes_out 2577327 194444 bytes_in 33327499 194444 station_ip 83.123.73.67 194444 port 529 194444 unique_id port 194444 remote_ip 10.8.0.166 194449 username shahruz 194449 kill_reason Maximum check online fails reached 194449 mac 194449 bytes_out 0 194449 bytes_in 0 194449 station_ip 83.123.33.65 194449 port 524 194449 unique_id port 194452 username barzegar 194452 mac 194452 bytes_out 0 194452 bytes_in 0 194452 station_ip 5.119.204.241 194452 port 532 194452 unique_id port 194452 remote_ip 10.8.0.70 194454 username esmaeilkazemi 194454 mac 194454 bytes_out 9890 194454 bytes_in 17673 194454 station_ip 83.123.90.87 194454 port 531 194454 unique_id port 194454 remote_ip 10.8.0.26 194455 username hashtadani5 194455 mac 194455 bytes_out 0 194455 bytes_in 0 194455 station_ip 83.123.41.50 194455 port 532 194455 unique_id port 194455 remote_ip 10.8.0.218 194458 username meghdad1616 194458 mac 194458 bytes_out 2482 194458 bytes_in 4759 194458 station_ip 5.120.168.218 194458 port 531 194458 unique_id port 194458 remote_ip 10.8.0.230 194461 username dortaj3792 194461 mac 194461 bytes_out 3857697 194461 bytes_in 33097839 194461 station_ip 5.120.124.2 194461 port 474 194461 unique_id port 194461 remote_ip 10.8.0.102 194464 username pourshad 194464 mac 194464 bytes_out 0 194464 bytes_in 0 194464 station_ip 5.120.152.46 194464 port 529 194464 unique_id port 194469 username khademi 194469 kill_reason Another user logged on this global unique id 194469 mac 194469 bytes_out 0 194469 bytes_in 0 194469 station_ip 83.123.99.220 194469 port 520 194469 unique_id port 194469 remote_ip 10.8.0.14 194470 username shahruz 194470 mac 194470 bytes_out 11499 194470 bytes_in 20967 194470 station_ip 83.123.33.65 194470 port 435 194470 unique_id port 194470 remote_ip 10.8.0.74 194474 username hashtadani5 194474 mac 194474 bytes_out 3022969 194474 bytes_in 35309170 194474 station_ip 83.123.41.50 194474 port 474 194474 unique_id port 194474 remote_ip 10.8.0.218 194476 username hashtadani5 194476 mac 194476 bytes_out 0 194476 bytes_in 0 194476 station_ip 83.123.41.50 194476 port 474 194476 unique_id port 194476 remote_ip 10.8.0.218 194430 station_ip 5.119.204.241 194430 port 508 194430 unique_id port 194433 username shahruz 194433 mac 194433 bytes_out 6004 194433 bytes_in 21220 194433 station_ip 83.123.33.65 194433 port 525 194433 unique_id port 194433 remote_ip 10.8.0.74 194439 username zahra1101 194439 mac 194439 bytes_out 19114 194439 bytes_in 20625 194439 station_ip 5.119.80.24 194439 port 523 194439 unique_id port 194439 remote_ip 10.8.0.30 194441 username meghdad1616 194441 mac 194441 bytes_out 0 194441 bytes_in 0 194441 station_ip 5.120.168.218 194441 port 435 194441 unique_id port 194441 remote_ip 10.8.0.230 194445 username shahruz 194445 mac 194445 bytes_out 10254 194445 bytes_in 22522 194445 station_ip 83.123.33.65 194445 port 524 194445 unique_id port 194445 remote_ip 10.8.0.74 194446 username esmaeilkazemi 194446 mac 194446 bytes_out 0 194446 bytes_in 0 194446 station_ip 83.123.90.87 194446 port 529 194446 unique_id port 194446 remote_ip 10.8.0.26 194447 username esmaeilkazemi 194447 mac 194447 bytes_out 0 194447 bytes_in 0 194447 station_ip 83.123.90.87 194447 port 531 194447 unique_id port 194447 remote_ip 10.8.0.26 194450 username pourshad 194450 mac 194450 bytes_out 10738845 194450 bytes_in 15613084 194450 station_ip 5.120.152.46 194450 port 435 194450 unique_id port 194450 remote_ip 10.8.0.42 194459 username hashtadani5 194459 mac 194459 bytes_out 0 194459 bytes_in 0 194459 station_ip 83.123.41.50 194459 port 435 194459 unique_id port 194459 remote_ip 10.8.0.218 194462 username farhad3 194462 kill_reason Another user logged on this global unique id 194462 mac 194462 bytes_out 0 194462 bytes_in 0 194462 station_ip 5.120.62.231 194462 port 527 194462 unique_id port 194462 remote_ip 10.8.0.222 194463 username hashtadani5 194463 mac 194463 bytes_out 0 194463 bytes_in 0 194463 station_ip 5.202.30.61 194463 port 531 194463 unique_id port 194463 remote_ip 10.8.0.218 194466 username meghdad1616 194466 kill_reason Maximum check online fails reached 194466 mac 194466 bytes_out 0 194466 bytes_in 0 194466 station_ip 5.120.168.218 194466 port 527 194466 unique_id port 194472 username alipour1506 194472 mac 194472 bytes_out 62839 194472 bytes_in 129971 194472 station_ip 83.123.10.230 194472 port 515 194472 unique_id port 194472 remote_ip 10.8.0.246 194473 username yaghobi 194473 mac 194473 bytes_out 649585 194473 bytes_in 2035003 194473 station_ip 83.123.90.159 194473 port 508 194473 unique_id port 194473 remote_ip 10.8.0.138 194480 username hashtadani5 194480 kill_reason Maximum number of concurrent logins reached 194480 mac 194480 bytes_out 0 194480 bytes_in 0 194480 station_ip 83.123.41.50 194480 port 529 194480 unique_id port 194483 username hashtadani5 194483 kill_reason Maximum check online fails reached 194483 mac 194483 bytes_out 0 194483 bytes_in 0 194483 station_ip 83.123.41.50 194483 port 474 194483 unique_id port 194484 username barzegar 194484 mac 194484 bytes_out 0 194484 bytes_in 0 194484 station_ip 5.119.204.241 194484 port 515 194484 unique_id port 194484 remote_ip 10.8.0.70 194486 username hashtadani5 194486 kill_reason Maximum check online fails reached 194486 mac 194486 bytes_out 0 194486 bytes_in 0 194486 station_ip 83.123.41.50 194486 port 532 194486 unique_id port 194490 username shahruz 194490 mac 194490 bytes_out 0 194490 bytes_in 0 194490 station_ip 83.123.33.65 194490 port 435 194490 unique_id port 194490 remote_ip 10.8.0.74 194493 username khademi 194493 kill_reason Another user logged on this global unique id 194493 mac 194471 mac 194471 bytes_out 35984 194471 bytes_in 109144 194471 station_ip 5.119.80.24 194471 port 525 194471 unique_id port 194471 remote_ip 10.8.0.30 194475 username hashtadani5 194475 mac 194475 bytes_out 0 194475 bytes_in 0 194475 station_ip 83.123.41.50 194475 port 474 194475 unique_id port 194475 remote_ip 10.8.0.218 194479 username pourshad 194479 mac 194479 bytes_out 56141131 194479 bytes_in 8485203 194479 station_ip 5.120.152.46 194479 port 529 194479 unique_id port 194479 remote_ip 10.8.0.42 194481 username yaghobi 194481 mac 194481 bytes_out 169697 194481 bytes_in 227456 194481 station_ip 83.123.90.159 194481 port 515 194481 unique_id port 194481 remote_ip 10.8.0.138 194487 username yaghobi 194487 mac 194487 bytes_out 65513 194487 bytes_in 131488 194487 station_ip 83.123.90.159 194487 port 515 194487 unique_id port 194487 remote_ip 10.8.0.138 194489 username shahruz 194489 mac 194489 bytes_out 2251 194489 bytes_in 4605 194489 station_ip 83.123.33.65 194489 port 515 194489 unique_id port 194489 remote_ip 10.8.0.74 194492 username shahruz 194492 mac 194492 bytes_out 0 194492 bytes_in 0 194492 station_ip 83.123.33.65 194492 port 435 194492 unique_id port 194492 remote_ip 10.8.0.74 194495 username shahruz 194495 mac 194495 bytes_out 0 194495 bytes_in 0 194495 station_ip 83.123.33.65 194495 port 531 194495 unique_id port 194495 remote_ip 10.8.0.74 194496 username shahruz 194496 mac 194496 bytes_out 0 194496 bytes_in 0 194496 station_ip 83.123.33.65 194496 port 531 194496 unique_id port 194496 remote_ip 10.8.0.74 194503 username shahruz 194503 mac 194503 bytes_out 3852 194503 bytes_in 6182 194503 station_ip 83.123.33.65 194503 port 534 194503 unique_id port 194503 remote_ip 10.8.0.74 194505 username shahruz 194505 mac 194505 bytes_out 3269 194505 bytes_in 5546 194505 station_ip 83.123.33.65 194505 port 536 194505 unique_id port 194505 remote_ip 10.8.0.74 194507 username esmaeilkazemi 194507 mac 194507 bytes_out 16435 194507 bytes_in 50177 194507 station_ip 83.123.90.87 194507 port 537 194507 unique_id port 194507 remote_ip 10.8.0.26 194508 username zahra1101 194508 mac 194508 bytes_out 9213 194508 bytes_in 11886 194508 station_ip 5.119.80.24 194508 port 533 194508 unique_id port 194508 remote_ip 10.8.0.30 194511 username akbari0070 194511 mac 194511 bytes_out 0 194511 bytes_in 0 194511 station_ip 83.123.78.167 194511 port 508 194511 unique_id port 194516 username hosseine 194516 kill_reason Another user logged on this global unique id 194516 mac 194516 bytes_out 0 194516 bytes_in 0 194516 station_ip 83.123.39.13 194516 port 519 194516 unique_id port 194518 username yaghobi 194518 mac 194518 bytes_out 357651 194518 bytes_in 1468285 194518 station_ip 83.123.90.159 194518 port 523 194518 unique_id port 194518 remote_ip 10.8.0.138 194520 username rashidi4690 194520 kill_reason Another user logged on this global unique id 194520 mac 194520 bytes_out 0 194520 bytes_in 0 194520 station_ip 83.123.89.213 194520 port 508 194520 unique_id port 194520 remote_ip 10.8.0.242 194523 username malekpoir 194523 mac 194523 bytes_out 938738 194523 bytes_in 6340215 194523 station_ip 5.120.168.60 194523 port 517 194523 unique_id port 194523 remote_ip 10.8.0.18 194525 username shahruz 194525 mac 194525 bytes_out 0 194525 bytes_in 0 194525 station_ip 83.123.33.65 194525 port 517 194525 unique_id port 194525 remote_ip 10.8.0.74 194527 username rashidi4690 194533 remote_ip 10.8.0.74 194477 username hashtadani5 194477 mac 194477 bytes_out 0 194477 bytes_in 0 194477 station_ip 83.123.41.50 194477 port 533 194477 unique_id port 194477 remote_ip 10.8.0.218 194478 username zahra1101 194478 mac 194478 bytes_out 5651 194478 bytes_in 7755 194478 station_ip 5.119.80.24 194478 port 532 194478 unique_id port 194478 remote_ip 10.8.0.30 194482 username majidsarmast 194482 mac 194482 bytes_out 3332675 194482 bytes_in 32708051 194482 station_ip 83.123.63.250 194482 port 523 194482 unique_id port 194482 remote_ip 10.8.0.146 194485 username yaghobi 194485 mac 194485 bytes_out 1925 194485 bytes_in 5408 194485 station_ip 83.123.90.159 194485 port 533 194485 unique_id port 194485 remote_ip 10.8.0.138 194488 username shahruz 194488 mac 194488 bytes_out 21296 194488 bytes_in 43745 194488 station_ip 83.123.33.65 194488 port 435 194488 unique_id port 194488 remote_ip 10.8.0.74 194491 username shahruz 194491 mac 194491 bytes_out 0 194491 bytes_in 0 194491 station_ip 83.123.33.65 194491 port 435 194491 unique_id port 194491 remote_ip 10.8.0.74 194494 username askarzadeh9013 194494 mac 194494 bytes_out 2558579 194494 bytes_in 28163500 194494 station_ip 83.123.86.193 194494 port 531 194494 unique_id port 194494 remote_ip 10.8.0.126 194497 username shahruz 194497 kill_reason Maximum check online fails reached 194497 mac 194497 bytes_out 0 194497 bytes_in 0 194497 station_ip 83.123.33.65 194497 port 515 194497 unique_id port 194498 username akbari0070 194498 kill_reason Another user logged on this global unique id 194498 mac 194498 bytes_out 0 194498 bytes_in 0 194498 station_ip 83.123.78.167 194498 port 508 194498 unique_id port 194498 remote_ip 10.8.0.166 194506 username mohammadjavad 194506 mac 194506 bytes_out 453881 194506 bytes_in 4728039 194506 station_ip 83.123.17.169 194506 port 535 194506 unique_id port 194506 remote_ip 10.8.0.110 194509 username alipour1506 194509 mac 194509 bytes_out 481678 194509 bytes_in 3064616 194509 station_ip 83.123.10.230 194509 port 525 194509 unique_id port 194509 remote_ip 10.8.0.246 194510 username barzegar 194510 mac 194510 bytes_out 0 194510 bytes_in 0 194510 station_ip 5.119.204.241 194510 port 525 194510 unique_id port 194510 remote_ip 10.8.0.70 194514 username khademi 194514 kill_reason Another user logged on this global unique id 194514 mac 194514 bytes_out 0 194514 bytes_in 0 194514 station_ip 83.123.99.220 194514 port 520 194514 unique_id port 194517 username alipour1506 194517 mac 194517 bytes_out 255361 194517 bytes_in 1694682 194517 station_ip 83.123.10.230 194517 port 536 194517 unique_id port 194517 remote_ip 10.8.0.246 194524 username shahruz 194524 mac 194524 bytes_out 66541 194524 bytes_in 190503 194524 station_ip 83.123.33.65 194524 port 535 194524 unique_id port 194524 remote_ip 10.8.0.74 194526 username ahmadi1 194526 mac 194526 bytes_out 86076 194526 bytes_in 486455 194526 station_ip 83.123.80.143 194526 port 501 194526 unique_id port 194526 remote_ip 10.8.0.94 194529 username shahruz 194529 mac 194529 bytes_out 0 194529 bytes_in 0 194529 station_ip 83.123.33.65 194529 port 519 194529 unique_id port 194529 remote_ip 10.8.0.74 194530 username shahruz 194530 mac 194530 bytes_out 0 194530 bytes_in 0 194530 station_ip 83.123.33.65 194530 port 519 194530 unique_id port 194530 remote_ip 10.8.0.74 194533 username shahruz 194533 mac 194533 bytes_out 0 194533 bytes_in 0 194533 station_ip 83.123.33.65 194533 port 519 194533 unique_id port 194493 bytes_out 0 194493 bytes_in 0 194493 station_ip 83.123.99.220 194493 port 520 194493 unique_id port 194499 username zahra1101 194499 kill_reason Maximum check online fails reached 194499 mac 194499 bytes_out 0 194499 bytes_in 0 194499 station_ip 5.119.80.24 194499 port 531 194499 unique_id port 194500 username shahruz 194500 mac 194500 bytes_out 2103 194500 bytes_in 4380 194500 station_ip 83.123.33.65 194500 port 533 194500 unique_id port 194500 remote_ip 10.8.0.74 194501 username pourshad 194501 mac 194501 bytes_out 232498 194501 bytes_in 1262755 194501 station_ip 5.120.152.46 194501 port 435 194501 unique_id port 194501 remote_ip 10.8.0.42 194502 username yaghobi 194502 mac 194502 bytes_out 235102 194502 bytes_in 302010 194502 station_ip 83.123.90.159 194502 port 523 194502 unique_id port 194502 remote_ip 10.8.0.138 194504 username fezealinaghi 194504 mac 194504 bytes_out 0 194504 bytes_in 0 194504 station_ip 83.123.1.232 194504 port 501 194504 unique_id port 194512 username rashidi4690 194512 mac 194512 bytes_out 40708 194512 bytes_in 120073 194512 station_ip 5.119.44.17 194512 port 525 194512 unique_id port 194512 remote_ip 10.8.0.242 194513 username barzegar8595 194513 mac 194513 bytes_out 587467 194513 bytes_in 2010107 194513 station_ip 46.225.211.57 194513 port 530 194513 unique_id port 194513 remote_ip 10.8.0.114 194515 username zahra1101 194515 mac 194515 bytes_out 0 194515 bytes_in 0 194515 station_ip 5.119.80.24 194515 port 530 194515 unique_id port 194515 remote_ip 10.8.0.30 194519 username fezealinaghi 194519 mac 194519 bytes_out 631173 194519 bytes_in 6543685 194519 station_ip 83.123.1.232 194519 port 501 194519 unique_id port 194519 remote_ip 10.8.0.202 194521 username soleymani5056 194521 mac 194521 bytes_out 136166 194521 bytes_in 423411 194521 station_ip 5.120.183.164 194521 port 525 194521 unique_id port 194521 remote_ip 10.8.0.226 194522 username barzegar 194522 mac 194522 bytes_out 0 194522 bytes_in 0 194522 station_ip 5.119.204.241 194522 port 525 194522 unique_id port 194522 remote_ip 10.8.0.70 194528 username hosseine 194528 mac 194528 bytes_out 0 194528 bytes_in 0 194528 station_ip 83.123.39.13 194528 port 519 194528 unique_id port 194531 username houshang 194531 mac 194531 bytes_out 34789 194531 bytes_in 55679 194531 station_ip 5.120.50.128 194531 port 501 194531 unique_id port 194531 remote_ip 10.8.0.82 194537 username barzegar 194537 mac 194537 bytes_out 0 194537 bytes_in 0 194537 station_ip 5.119.204.241 194537 port 536 194537 unique_id port 194537 remote_ip 10.8.0.70 194541 username teymori5660 194541 mac 194541 bytes_out 581479 194541 bytes_in 5898834 194541 station_ip 5.120.140.149 194541 port 535 194541 unique_id port 194541 remote_ip 10.8.0.130 194545 username shahruz 194545 mac 194545 bytes_out 0 194545 bytes_in 0 194545 station_ip 83.123.33.65 194545 port 525 194545 unique_id port 194545 remote_ip 10.8.0.74 194546 username khalili2 194546 kill_reason Another user logged on this global unique id 194546 mac 194546 bytes_out 0 194546 bytes_in 0 194546 station_ip 5.120.158.142 194546 port 514 194546 unique_id port 194553 username shahruz 194553 mac 194553 bytes_out 0 194553 bytes_in 0 194553 station_ip 83.123.33.65 194553 port 519 194553 unique_id port 194553 remote_ip 10.8.0.74 194554 username khademi 194554 kill_reason Another user logged on this global unique id 194554 mac 194554 bytes_out 0 194554 bytes_in 0 194527 kill_reason Another user logged on this global unique id 194527 mac 194527 bytes_out 0 194527 bytes_in 0 194527 station_ip 83.123.89.213 194527 port 508 194527 unique_id port 194532 username shahruz 194532 mac 194532 bytes_out 0 194532 bytes_in 0 194532 station_ip 83.123.33.65 194532 port 519 194532 unique_id port 194532 remote_ip 10.8.0.74 194534 username shahruz 194534 mac 194534 bytes_out 0 194534 bytes_in 0 194534 station_ip 83.123.33.65 194534 port 525 194534 unique_id port 194534 remote_ip 10.8.0.74 194536 username shahruz 194536 mac 194536 bytes_out 0 194536 bytes_in 0 194536 station_ip 83.123.33.65 194536 port 525 194536 unique_id port 194536 remote_ip 10.8.0.74 194538 username shahruz 194538 mac 194538 bytes_out 0 194538 bytes_in 0 194538 station_ip 83.123.33.65 194538 port 525 194538 unique_id port 194538 remote_ip 10.8.0.74 194540 username zahra1101 194540 mac 194540 bytes_out 0 194540 bytes_in 0 194540 station_ip 5.119.80.24 194540 port 536 194540 unique_id port 194540 remote_ip 10.8.0.30 194542 username tahmorsi 194542 mac 194542 bytes_out 1295553 194542 bytes_in 17056810 194542 station_ip 86.57.19.222 194542 port 519 194542 unique_id port 194542 remote_ip 10.8.0.6 194544 username yaghobi 194544 mac 194544 bytes_out 220779 194544 bytes_in 319736 194544 station_ip 83.123.90.159 194544 port 533 194544 unique_id port 194544 remote_ip 10.8.0.138 194548 username shahruz 194548 mac 194548 bytes_out 0 194548 bytes_in 0 194548 station_ip 83.123.33.65 194548 port 525 194548 unique_id port 194548 remote_ip 10.8.0.74 194550 username yaghobi 194550 mac 194550 bytes_out 177698 194550 bytes_in 215461 194550 station_ip 83.123.90.159 194550 port 519 194550 unique_id port 194550 remote_ip 10.8.0.138 194557 username motamedi9772 194557 mac 194557 bytes_out 0 194557 bytes_in 0 194557 station_ip 83.123.52.189 194557 port 525 194557 unique_id port 194557 remote_ip 10.8.0.154 194558 username motamedi9772 194558 mac 194558 bytes_out 0 194558 bytes_in 0 194558 station_ip 83.123.52.189 194558 port 519 194558 unique_id port 194558 remote_ip 10.8.0.154 194560 username shahruz 194560 mac 194560 bytes_out 0 194560 bytes_in 0 194560 station_ip 83.123.33.65 194560 port 525 194560 unique_id port 194560 remote_ip 10.8.0.74 194561 username shahruz 194561 mac 194561 bytes_out 0 194561 bytes_in 0 194561 station_ip 83.123.33.65 194561 port 525 194561 unique_id port 194561 remote_ip 10.8.0.74 194566 username godarzi 194566 mac 194566 bytes_out 3751731 194566 bytes_in 24480006 194566 station_ip 5.120.124.40 194566 port 512 194566 unique_id port 194566 remote_ip 10.8.0.38 194577 username shahruz 194577 kill_reason Maximum check online fails reached 194577 mac 194577 bytes_out 0 194577 bytes_in 0 194577 station_ip 83.123.33.65 194577 port 536 194577 unique_id port 194578 username pourshad 194578 mac 194578 bytes_out 991030 194578 bytes_in 11284530 194578 station_ip 5.120.152.46 194578 port 501 194578 unique_id port 194578 remote_ip 10.8.0.42 194581 username mohammadjavad 194581 mac 194581 bytes_out 8483 194581 bytes_in 10091 194581 station_ip 83.123.117.77 194581 port 525 194581 unique_id port 194581 remote_ip 10.8.0.110 194582 username rashidi4690 194582 kill_reason Another user logged on this global unique id 194582 mac 194582 bytes_out 0 194582 bytes_in 0 194582 station_ip 83.123.89.213 194582 port 508 194582 unique_id port 194584 username hajghani 194584 mac 194535 username motamedi9772 194535 mac 194535 bytes_out 2059540 194535 bytes_in 33353443 194535 station_ip 83.123.52.189 194535 port 517 194535 unique_id port 194535 remote_ip 10.8.0.154 194539 username rashidi4690 194539 kill_reason Another user logged on this global unique id 194539 mac 194539 bytes_out 0 194539 bytes_in 0 194539 station_ip 83.123.89.213 194539 port 508 194539 unique_id port 194543 username shahruz 194543 mac 194543 bytes_out 2421 194543 bytes_in 4698 194543 station_ip 83.123.33.65 194543 port 525 194543 unique_id port 194543 remote_ip 10.8.0.74 194547 username shahruz 194547 mac 194547 bytes_out 5265 194547 bytes_in 11685 194547 station_ip 83.123.33.65 194547 port 525 194547 unique_id port 194547 remote_ip 10.8.0.74 194549 username rashidi4690 194549 kill_reason Another user logged on this global unique id 194549 mac 194549 bytes_out 0 194549 bytes_in 0 194549 station_ip 83.123.89.213 194549 port 508 194549 unique_id port 194551 username shahruz 194551 mac 194551 bytes_out 0 194551 bytes_in 0 194551 station_ip 83.123.33.65 194551 port 525 194551 unique_id port 194551 remote_ip 10.8.0.74 194552 username motamedi9772 194552 mac 194552 bytes_out 46407 194552 bytes_in 75492 194552 station_ip 83.123.52.189 194552 port 517 194552 unique_id port 194552 remote_ip 10.8.0.154 194555 username zahra1101 194555 mac 194555 bytes_out 3163 194555 bytes_in 5387 194555 station_ip 5.119.80.24 194555 port 535 194555 unique_id port 194555 remote_ip 10.8.0.30 194556 username shahruz 194556 mac 194556 bytes_out 0 194556 bytes_in 0 194556 station_ip 83.123.33.65 194556 port 519 194556 unique_id port 194556 remote_ip 10.8.0.74 194559 username shahruz 194559 kill_reason Maximum check online fails reached 194559 mac 194559 bytes_out 0 194559 bytes_in 0 194559 station_ip 83.123.33.65 194559 port 517 194559 unique_id port 194562 username rashidi4690 194562 kill_reason Another user logged on this global unique id 194562 mac 194562 bytes_out 0 194562 bytes_in 0 194562 station_ip 83.123.89.213 194562 port 508 194562 unique_id port 194563 username shahruz 194563 mac 194563 bytes_out 2633 194563 bytes_in 5016 194563 station_ip 83.123.33.65 194563 port 525 194563 unique_id port 194563 remote_ip 10.8.0.74 194565 username majidsarmast 194565 kill_reason Another user logged on this global unique id 194565 mac 194565 bytes_out 0 194565 bytes_in 0 194565 station_ip 83.123.63.250 194565 port 529 194565 unique_id port 194565 remote_ip 10.8.0.146 194569 username shahruz 194569 mac 194569 bytes_out 0 194569 bytes_in 0 194569 station_ip 83.123.33.65 194569 port 525 194569 unique_id port 194569 remote_ip 10.8.0.74 194571 username meghdad1616 194571 mac 194571 bytes_out 2602 194571 bytes_in 4967 194571 station_ip 5.120.168.218 194571 port 533 194571 unique_id port 194571 remote_ip 10.8.0.230 194572 username farhad3 194572 kill_reason Another user logged on this global unique id 194572 mac 194572 bytes_out 0 194572 bytes_in 0 194572 station_ip 5.120.62.231 194572 port 435 194572 unique_id port 194572 remote_ip 10.8.0.222 194574 username khademi 194574 kill_reason Another user logged on this global unique id 194574 mac 194574 bytes_out 0 194574 bytes_in 0 194574 station_ip 83.123.99.220 194574 port 520 194574 unique_id port 194576 username shahruz 194576 mac 194576 bytes_out 284094 194576 bytes_in 1584849 194576 station_ip 83.123.33.65 194576 port 525 194576 unique_id port 194576 remote_ip 10.8.0.74 194579 username shahruz 194579 mac 194579 bytes_out 0 194579 bytes_in 0 194554 station_ip 83.123.99.220 194554 port 520 194554 unique_id port 194564 username meghdad1616 194564 mac 194564 bytes_out 96897 194564 bytes_in 489894 194564 station_ip 5.120.168.218 194564 port 533 194564 unique_id port 194564 remote_ip 10.8.0.230 194567 username khademi 194567 kill_reason Another user logged on this global unique id 194567 mac 194567 bytes_out 0 194567 bytes_in 0 194567 station_ip 83.123.99.220 194567 port 520 194567 unique_id port 194568 username shahruz 194568 mac 194568 bytes_out 2199 194568 bytes_in 3909 194568 station_ip 83.123.33.65 194568 port 512 194568 unique_id port 194568 remote_ip 10.8.0.74 194570 username shahruz 194570 mac 194570 bytes_out 0 194570 bytes_in 0 194570 station_ip 83.123.33.65 194570 port 525 194570 unique_id port 194570 remote_ip 10.8.0.74 194573 username zahra1101 194573 mac 194573 bytes_out 0 194573 bytes_in 0 194573 station_ip 5.119.80.24 194573 port 533 194573 unique_id port 194573 remote_ip 10.8.0.30 194575 username alirr 194575 kill_reason Relative expiration date has reached 194575 unique_id port 194575 bytes_out 0 194575 bytes_in 0 194575 station_ip 83.123.56.210 194575 port 15729370 194575 nas_port_type Virtual 194580 username meghdad1616 194580 mac 194580 bytes_out 66891 194580 bytes_in 665418 194580 station_ip 5.120.168.218 194580 port 535 194580 unique_id port 194580 remote_ip 10.8.0.230 194585 username yaghobi 194585 mac 194585 bytes_out 119548 194585 bytes_in 145196 194585 station_ip 83.123.50.29 194585 port 512 194585 unique_id port 194585 remote_ip 10.8.0.138 194593 username alirr 194593 kill_reason Relative expiration date has reached 194593 unique_id port 194593 bytes_out 0 194593 bytes_in 0 194593 station_ip 5.134.176.196 194593 port 15729372 194593 nas_port_type Virtual 194598 username shahruz 194598 mac 194598 bytes_out 0 194598 bytes_in 0 194598 station_ip 83.123.33.65 194598 port 533 194598 unique_id port 194598 remote_ip 10.8.0.74 194599 username motamedi9772 194599 mac 194599 bytes_out 0 194599 bytes_in 0 194599 station_ip 83.123.52.189 194599 port 519 194599 unique_id port 194604 username shahruz 194604 mac 194604 bytes_out 0 194604 bytes_in 0 194604 station_ip 83.123.33.65 194604 port 512 194604 unique_id port 194604 remote_ip 10.8.0.74 194611 username shahruz 194611 mac 194611 bytes_out 0 194611 bytes_in 0 194611 station_ip 83.123.33.65 194611 port 525 194611 unique_id port 194611 remote_ip 10.8.0.74 194613 username shahruz 194613 mac 194613 bytes_out 0 194613 bytes_in 0 194613 station_ip 83.123.33.65 194613 port 512 194613 unique_id port 194613 remote_ip 10.8.0.74 194615 username shahruz 194615 mac 194615 bytes_out 0 194615 bytes_in 0 194615 station_ip 83.123.33.65 194615 port 512 194615 unique_id port 194615 remote_ip 10.8.0.74 194617 username shahruz 194617 mac 194617 bytes_out 0 194617 bytes_in 0 194617 station_ip 83.123.33.65 194617 port 512 194617 unique_id port 194617 remote_ip 10.8.0.74 194620 username mirzaei6046 194620 mac 194620 bytes_out 1625960 194620 bytes_in 9848000 194620 station_ip 5.120.108.183 194620 port 518 194620 unique_id port 194620 remote_ip 10.8.0.198 194622 username shahruz 194622 kill_reason Maximum check online fails reached 194622 mac 194622 bytes_out 0 194622 bytes_in 0 194622 station_ip 83.123.33.65 194622 port 512 194622 unique_id port 194624 username alipour1506 194624 mac 194624 bytes_out 369923 194624 bytes_in 1796363 194624 station_ip 83.123.10.230 194624 port 530 194579 station_ip 83.123.33.65 194579 port 537 194579 unique_id port 194579 remote_ip 10.8.0.74 194583 username majidsarmast 194583 mac 194583 bytes_out 0 194583 bytes_in 0 194583 station_ip 83.123.63.250 194583 port 529 194583 unique_id port 194586 username soleymani5056 194586 mac 194586 bytes_out 179040 194586 bytes_in 1386311 194586 station_ip 5.119.181.212 194586 port 501 194586 unique_id port 194586 remote_ip 10.8.0.226 194588 username khademi 194588 kill_reason Another user logged on this global unique id 194588 mac 194588 bytes_out 0 194588 bytes_in 0 194588 station_ip 83.123.99.220 194588 port 520 194588 unique_id port 194589 username shahruz 194589 mac 194589 bytes_out 0 194589 bytes_in 0 194589 station_ip 83.123.33.65 194589 port 501 194589 unique_id port 194589 remote_ip 10.8.0.74 194591 username motamedi9772 194591 kill_reason Another user logged on this global unique id 194591 mac 194591 bytes_out 0 194591 bytes_in 0 194591 station_ip 83.123.52.189 194591 port 519 194591 unique_id port 194591 remote_ip 10.8.0.154 194597 username barzegar 194597 mac 194597 bytes_out 0 194597 bytes_in 0 194597 station_ip 5.119.204.241 194597 port 512 194597 unique_id port 194597 remote_ip 10.8.0.70 194600 username shahruz 194600 mac 194600 bytes_out 0 194600 bytes_in 0 194600 station_ip 83.123.33.65 194600 port 512 194600 unique_id port 194600 remote_ip 10.8.0.74 194601 username khademi 194601 kill_reason Another user logged on this global unique id 194601 mac 194601 bytes_out 0 194601 bytes_in 0 194601 station_ip 83.123.99.220 194601 port 520 194601 unique_id port 194603 username godarzi 194603 mac 194603 bytes_out 1447 194603 bytes_in 3449 194603 station_ip 5.120.124.40 194603 port 519 194603 unique_id port 194603 remote_ip 10.8.0.38 194605 username shahruz 194605 mac 194605 bytes_out 0 194605 bytes_in 0 194605 station_ip 83.123.33.65 194605 port 512 194605 unique_id port 194605 remote_ip 10.8.0.74 194606 username shahruz 194606 mac 194606 bytes_out 0 194606 bytes_in 0 194606 station_ip 83.123.33.65 194606 port 512 194606 unique_id port 194606 remote_ip 10.8.0.74 194607 username shahruz 194607 mac 194607 bytes_out 0 194607 bytes_in 0 194607 station_ip 83.123.33.65 194607 port 512 194607 unique_id port 194607 remote_ip 10.8.0.74 194608 username teymori5660 194608 kill_reason Another user logged on this global unique id 194608 mac 194608 bytes_out 0 194608 bytes_in 0 194608 station_ip 5.120.140.149 194608 port 501 194608 unique_id port 194608 remote_ip 10.8.0.130 194610 username shahruz 194610 mac 194610 bytes_out 0 194610 bytes_in 0 194610 station_ip 83.123.33.65 194610 port 512 194610 unique_id port 194610 remote_ip 10.8.0.74 194616 username zahra1101 194616 mac 194616 bytes_out 0 194616 bytes_in 0 194616 station_ip 5.119.80.24 194616 port 519 194616 unique_id port 194616 remote_ip 10.8.0.30 194618 username pourshad 194618 mac 194618 bytes_out 138804 194618 bytes_in 462176 194618 station_ip 5.120.152.46 194618 port 529 194618 unique_id port 194618 remote_ip 10.8.0.42 194627 username khademi 194627 kill_reason Another user logged on this global unique id 194627 mac 194627 bytes_out 0 194627 bytes_in 0 194627 station_ip 83.123.99.220 194627 port 520 194627 unique_id port 194628 username hamid.e 194628 unique_id port 194628 terminate_cause User-Request 194628 bytes_out 4953708 194628 bytes_in 140698530 194628 station_ip 151.238.250.141 194628 port 15729371 194628 nas_port_type Virtual 194628 remote_ip 5.5.5.26 194639 username shahruz 194584 bytes_out 561002 194584 bytes_in 3314789 194584 station_ip 37.137.43.79 194584 port 512 194584 unique_id port 194584 remote_ip 10.8.0.106 194587 username shahruz 194587 mac 194587 bytes_out 8511 194587 bytes_in 20112 194587 station_ip 83.123.33.65 194587 port 525 194587 unique_id port 194587 remote_ip 10.8.0.74 194590 username zahra1101 194590 mac 194590 bytes_out 23141 194590 bytes_in 201939 194590 station_ip 5.119.80.24 194590 port 533 194590 unique_id port 194590 remote_ip 10.8.0.30 194592 username shahruz 194592 mac 194592 bytes_out 0 194592 bytes_in 0 194592 station_ip 83.123.33.65 194592 port 512 194592 unique_id port 194592 remote_ip 10.8.0.74 194594 username shahruz 194594 mac 194594 bytes_out 0 194594 bytes_in 0 194594 station_ip 83.123.33.65 194594 port 512 194594 unique_id port 194594 remote_ip 10.8.0.74 194595 username shahruz 194595 mac 194595 bytes_out 0 194595 bytes_in 0 194595 station_ip 83.123.33.65 194595 port 512 194595 unique_id port 194595 remote_ip 10.8.0.74 194596 username meghdad1616 194596 mac 194596 bytes_out 2920 194596 bytes_in 4538 194596 station_ip 5.120.168.218 194596 port 525 194596 unique_id port 194596 remote_ip 10.8.0.230 194602 username shahruz 194602 mac 194602 bytes_out 0 194602 bytes_in 0 194602 station_ip 83.123.33.65 194602 port 512 194602 unique_id port 194602 remote_ip 10.8.0.74 194609 username shahruz 194609 mac 194609 bytes_out 0 194609 bytes_in 0 194609 station_ip 83.123.33.65 194609 port 512 194609 unique_id port 194609 remote_ip 10.8.0.74 194612 username zahra1101 194612 mac 194612 bytes_out 0 194612 bytes_in 0 194612 station_ip 5.119.80.24 194612 port 519 194612 unique_id port 194612 remote_ip 10.8.0.30 194614 username khademi 194614 kill_reason Another user logged on this global unique id 194614 mac 194614 bytes_out 0 194614 bytes_in 0 194614 station_ip 83.123.99.220 194614 port 520 194614 unique_id port 194619 username shahruz 194619 mac 194619 bytes_out 0 194619 bytes_in 0 194619 station_ip 83.123.33.65 194619 port 519 194619 unique_id port 194619 remote_ip 10.8.0.74 194621 username shahruz 194621 mac 194621 bytes_out 0 194621 bytes_in 0 194621 station_ip 83.123.33.65 194621 port 519 194621 unique_id port 194621 remote_ip 10.8.0.74 194623 username shahruz 194623 mac 194623 bytes_out 0 194623 bytes_in 0 194623 station_ip 83.123.33.65 194623 port 519 194623 unique_id port 194623 remote_ip 10.8.0.74 194630 username shahruz 194630 mac 194630 bytes_out 0 194630 bytes_in 0 194630 station_ip 83.123.33.65 194630 port 519 194630 unique_id port 194630 remote_ip 10.8.0.74 194631 username shahruz 194631 mac 194631 bytes_out 0 194631 bytes_in 0 194631 station_ip 83.123.33.65 194631 port 519 194631 unique_id port 194631 remote_ip 10.8.0.74 194632 username shahruz 194632 mac 194632 bytes_out 0 194632 bytes_in 0 194632 station_ip 83.123.33.65 194632 port 519 194632 unique_id port 194632 remote_ip 10.8.0.74 194633 username shahruz 194633 mac 194633 bytes_out 0 194633 bytes_in 0 194633 station_ip 83.123.33.65 194633 port 519 194633 unique_id port 194633 remote_ip 10.8.0.74 194634 username rashidi4690 194634 kill_reason Another user logged on this global unique id 194634 mac 194634 bytes_out 0 194634 bytes_in 0 194634 station_ip 83.123.89.213 194634 port 508 194634 unique_id port 194636 username shahruz 194636 mac 194636 bytes_out 0 194636 bytes_in 0 194636 station_ip 83.123.33.65 194624 unique_id port 194624 remote_ip 10.8.0.246 194625 username shahruz 194625 mac 194625 bytes_out 0 194625 bytes_in 0 194625 station_ip 83.123.33.65 194625 port 519 194625 unique_id port 194625 remote_ip 10.8.0.74 194626 username shahruz 194626 mac 194626 bytes_out 0 194626 bytes_in 0 194626 station_ip 83.123.33.65 194626 port 519 194626 unique_id port 194626 remote_ip 10.8.0.74 194629 username shahruz 194629 mac 194629 bytes_out 2098 194629 bytes_in 4274 194629 station_ip 83.123.33.65 194629 port 519 194629 unique_id port 194629 remote_ip 10.8.0.74 194635 username farhad3 194635 mac 194635 bytes_out 0 194635 bytes_in 0 194635 station_ip 5.120.62.231 194635 port 435 194635 unique_id port 194643 username barzegar 194643 mac 194643 bytes_out 0 194643 bytes_in 0 194643 station_ip 5.119.204.241 194643 port 535 194643 unique_id port 194643 remote_ip 10.8.0.70 194647 username farhad3 194647 mac 194647 bytes_out 240537 194647 bytes_in 1315378 194647 station_ip 5.120.62.231 194647 port 519 194647 unique_id port 194647 remote_ip 10.8.0.222 194659 username aminvpn 194659 unique_id port 194659 terminate_cause User-Request 194659 bytes_out 0 194659 bytes_in 0 194659 station_ip 83.123.80.162 194659 port 15729373 194659 nas_port_type Virtual 194659 remote_ip 5.5.5.255 194660 username shahruz 194660 mac 194660 bytes_out 0 194660 bytes_in 0 194660 station_ip 83.123.33.65 194660 port 535 194660 unique_id port 194660 remote_ip 10.8.0.74 194663 username rashidi4690 194663 kill_reason Another user logged on this global unique id 194663 mac 194663 bytes_out 0 194663 bytes_in 0 194663 station_ip 83.123.89.213 194663 port 508 194663 unique_id port 194670 username nilufarrajaei 194670 kill_reason Another user logged on this global unique id 194670 mac 194670 bytes_out 0 194670 bytes_in 0 194670 station_ip 83.123.53.158 194670 port 506 194670 unique_id port 194673 username nilufarrajaei 194673 kill_reason Another user logged on this global unique id 194673 mac 194673 bytes_out 0 194673 bytes_in 0 194673 station_ip 83.123.53.158 194673 port 506 194673 unique_id port 194675 username zahra1101 194675 mac 194675 bytes_out 0 194675 bytes_in 0 194675 station_ip 5.119.80.24 194675 port 540 194675 unique_id port 194675 remote_ip 10.8.0.30 194677 username shahruz 194677 mac 194677 bytes_out 2845 194677 bytes_in 5122 194677 station_ip 83.123.33.65 194677 port 506 194677 unique_id port 194677 remote_ip 10.8.0.74 194678 username zahra1101 194678 mac 194678 bytes_out 0 194678 bytes_in 0 194678 station_ip 5.119.80.24 194678 port 535 194678 unique_id port 194678 remote_ip 10.8.0.30 194683 username zahra1101 194683 mac 194683 bytes_out 0 194683 bytes_in 0 194683 station_ip 5.119.80.24 194683 port 518 194683 unique_id port 194683 remote_ip 10.8.0.30 194686 username shahruz 194686 mac 194686 bytes_out 0 194686 bytes_in 0 194686 station_ip 83.123.33.65 194686 port 506 194686 unique_id port 194686 remote_ip 10.8.0.74 194689 username rashidi4690 194689 kill_reason Another user logged on this global unique id 194689 mac 194689 bytes_out 0 194689 bytes_in 0 194689 station_ip 83.123.89.213 194689 port 508 194689 unique_id port 194695 username shahruz 194695 mac 194695 bytes_out 0 194695 bytes_in 0 194695 station_ip 83.123.33.65 194695 port 506 194695 unique_id port 194695 remote_ip 10.8.0.74 194697 username alihosseini1 194697 mac 194697 bytes_out 1054351 194697 bytes_in 3486864 194697 station_ip 5.119.174.198 194697 port 525 194636 port 519 194636 unique_id port 194636 remote_ip 10.8.0.74 194637 username khademi 194637 kill_reason Another user logged on this global unique id 194637 mac 194637 bytes_out 0 194637 bytes_in 0 194637 station_ip 83.123.99.220 194637 port 520 194637 unique_id port 194638 username shahruz 194638 mac 194638 bytes_out 0 194638 bytes_in 0 194638 station_ip 83.123.33.65 194638 port 435 194638 unique_id port 194638 remote_ip 10.8.0.74 194640 username teymori5660 194640 kill_reason Another user logged on this global unique id 194640 mac 194640 bytes_out 0 194640 bytes_in 0 194640 station_ip 5.120.140.149 194640 port 501 194640 unique_id port 194641 username shahruz 194641 mac 194641 bytes_out 0 194641 bytes_in 0 194641 station_ip 83.123.33.65 194641 port 435 194641 unique_id port 194641 remote_ip 10.8.0.74 194644 username zahra1101 194644 mac 194644 bytes_out 0 194644 bytes_in 0 194644 station_ip 5.119.80.24 194644 port 537 194644 unique_id port 194644 remote_ip 10.8.0.30 194646 username shahruz 194646 mac 194646 bytes_out 0 194646 bytes_in 0 194646 station_ip 83.123.33.65 194646 port 435 194646 unique_id port 194646 remote_ip 10.8.0.74 194650 username shahruz 194650 mac 194650 bytes_out 0 194650 bytes_in 0 194650 station_ip 83.123.33.65 194650 port 435 194650 unique_id port 194650 remote_ip 10.8.0.74 194652 username teymori5660 194652 kill_reason Another user logged on this global unique id 194652 mac 194652 bytes_out 0 194652 bytes_in 0 194652 station_ip 5.120.140.149 194652 port 501 194652 unique_id port 194654 username barzegar 194654 mac 194654 bytes_out 0 194654 bytes_in 0 194654 station_ip 5.119.204.241 194654 port 535 194654 unique_id port 194654 remote_ip 10.8.0.70 194655 username shahruz 194655 mac 194655 bytes_out 0 194655 bytes_in 0 194655 station_ip 83.123.33.65 194655 port 435 194655 unique_id port 194655 remote_ip 10.8.0.74 194656 username shahruz 194656 mac 194656 bytes_out 0 194656 bytes_in 0 194656 station_ip 83.123.33.65 194656 port 435 194656 unique_id port 194656 remote_ip 10.8.0.74 194658 username shahruz 194658 mac 194658 bytes_out 2156 194658 bytes_in 4433 194658 station_ip 83.123.33.65 194658 port 535 194658 unique_id port 194658 remote_ip 10.8.0.74 194662 username shahruz 194662 mac 194662 bytes_out 0 194662 bytes_in 0 194662 station_ip 83.123.33.65 194662 port 535 194662 unique_id port 194662 remote_ip 10.8.0.74 194665 username shahruz 194665 mac 194665 bytes_out 0 194665 bytes_in 0 194665 station_ip 83.123.33.65 194665 port 537 194665 unique_id port 194665 remote_ip 10.8.0.74 194669 username nilufarrajaei 194669 kill_reason Another user logged on this global unique id 194669 mac 194669 bytes_out 0 194669 bytes_in 0 194669 station_ip 83.123.53.158 194669 port 506 194669 unique_id port 194672 username shahruz 194672 mac 194672 bytes_out 0 194672 bytes_in 0 194672 station_ip 83.123.33.65 194672 port 538 194672 unique_id port 194672 remote_ip 10.8.0.74 194676 username barzegar 194676 mac 194676 bytes_out 6123732 194676 bytes_in 1699733 194676 station_ip 5.119.204.241 194676 port 535 194676 unique_id port 194676 remote_ip 10.8.0.70 194679 username godarzi 194679 mac 194679 bytes_out 179005 194679 bytes_in 1584052 194679 station_ip 5.120.124.40 194679 port 538 194679 unique_id port 194679 remote_ip 10.8.0.38 194682 username askarzadeh9013 194682 kill_reason Another user logged on this global unique id 194682 mac 194682 bytes_out 0 194682 bytes_in 0 194682 station_ip 83.123.116.177 194639 mac 194639 bytes_out 0 194639 bytes_in 0 194639 station_ip 83.123.33.65 194639 port 435 194639 unique_id port 194639 remote_ip 10.8.0.74 194642 username farhad3 194642 mac 194642 bytes_out 139458 194642 bytes_in 679540 194642 station_ip 5.120.62.231 194642 port 519 194642 unique_id port 194642 remote_ip 10.8.0.222 194645 username shahruz 194645 mac 194645 bytes_out 0 194645 bytes_in 0 194645 station_ip 83.123.33.65 194645 port 435 194645 unique_id port 194645 remote_ip 10.8.0.74 194648 username shahruz 194648 mac 194648 bytes_out 2050 194648 bytes_in 4327 194648 station_ip 83.123.33.65 194648 port 435 194648 unique_id port 194648 remote_ip 10.8.0.74 194649 username shahruz 194649 mac 194649 bytes_out 0 194649 bytes_in 0 194649 station_ip 83.123.33.65 194649 port 435 194649 unique_id port 194649 remote_ip 10.8.0.74 194651 username zahra1101 194651 mac 194651 bytes_out 28211 194651 bytes_in 75437 194651 station_ip 5.119.80.24 194651 port 535 194651 unique_id port 194651 remote_ip 10.8.0.30 194653 username shahruz 194653 mac 194653 bytes_out 6460 194653 bytes_in 13744 194653 station_ip 83.123.33.65 194653 port 435 194653 unique_id port 194653 remote_ip 10.8.0.74 194657 username meghdad1616 194657 mac 194657 bytes_out 0 194657 bytes_in 0 194657 station_ip 5.120.168.218 194657 port 537 194657 unique_id port 194657 remote_ip 10.8.0.230 194661 username shahruz 194661 mac 194661 bytes_out 0 194661 bytes_in 0 194661 station_ip 83.123.33.65 194661 port 537 194661 unique_id port 194661 remote_ip 10.8.0.74 194664 username mammad 194664 unique_id port 194664 terminate_cause User-Request 194664 bytes_out 6340 194664 bytes_in 116 194664 station_ip 5.233.79.229 194664 port 15729374 194664 nas_port_type Virtual 194664 remote_ip 5.5.5.1 194666 username mammad 194666 unique_id port 194666 terminate_cause User-Request 194666 bytes_out 10706 194666 bytes_in 116 194666 station_ip 5.233.79.229 194666 port 15729375 194666 nas_port_type Virtual 194666 remote_ip 5.5.5.1 194667 username yaghobi 194667 mac 194667 bytes_out 835134 194667 bytes_in 3556356 194667 station_ip 83.123.17.39 194667 port 533 194667 unique_id port 194667 remote_ip 10.8.0.138 194668 username shahruz 194668 mac 194668 bytes_out 0 194668 bytes_in 0 194668 station_ip 83.123.33.65 194668 port 533 194668 unique_id port 194668 remote_ip 10.8.0.74 194671 username khademi 194671 kill_reason Another user logged on this global unique id 194671 mac 194671 bytes_out 0 194671 bytes_in 0 194671 station_ip 83.123.99.220 194671 port 520 194671 unique_id port 194674 username zahra1101 194674 kill_reason Maximum check online fails reached 194674 mac 194674 bytes_out 0 194674 bytes_in 0 194674 station_ip 5.119.80.24 194674 port 533 194674 unique_id port 194680 username yaghobi 194680 mac 194680 bytes_out 282424 194680 bytes_in 342398 194680 station_ip 83.123.17.39 194680 port 537 194680 unique_id port 194680 remote_ip 10.8.0.138 194681 username pourshad 194681 mac 194681 bytes_out 246306 194681 bytes_in 1099963 194681 station_ip 5.120.152.46 194681 port 518 194681 unique_id port 194681 remote_ip 10.8.0.42 194690 username shahruz 194690 mac 194690 bytes_out 0 194690 bytes_in 0 194690 station_ip 83.123.33.65 194690 port 506 194690 unique_id port 194690 remote_ip 10.8.0.74 194691 username shahruz 194691 mac 194691 bytes_out 0 194691 bytes_in 0 194691 station_ip 83.123.33.65 194691 port 506 194691 unique_id port 194691 remote_ip 10.8.0.74 194682 port 529 194682 unique_id port 194682 remote_ip 10.8.0.126 194684 username alikomsari 194684 mac 194684 bytes_out 1014312 194684 bytes_in 3746892 194684 station_ip 5.119.235.123 194684 port 435 194684 unique_id port 194684 remote_ip 10.8.0.214 194685 username shahruz 194685 mac 194685 bytes_out 5826 194685 bytes_in 21350 194685 station_ip 83.123.33.65 194685 port 506 194685 unique_id port 194685 remote_ip 10.8.0.74 194687 username shahruz 194687 mac 194687 bytes_out 0 194687 bytes_in 0 194687 station_ip 83.123.33.65 194687 port 506 194687 unique_id port 194687 remote_ip 10.8.0.74 194688 username teymori5660 194688 kill_reason Another user logged on this global unique id 194688 mac 194688 bytes_out 0 194688 bytes_in 0 194688 station_ip 5.120.140.149 194688 port 501 194688 unique_id port 194692 username shahruz 194692 mac 194692 bytes_out 0 194692 bytes_in 0 194692 station_ip 83.123.33.65 194692 port 506 194692 unique_id port 194692 remote_ip 10.8.0.74 194694 username shahruz 194694 mac 194694 bytes_out 0 194694 bytes_in 0 194694 station_ip 83.123.33.65 194694 port 506 194694 unique_id port 194694 remote_ip 10.8.0.74 194701 username godarzi 194701 mac 194701 bytes_out 93281 194701 bytes_in 394865 194701 station_ip 5.120.124.40 194701 port 525 194701 unique_id port 194701 remote_ip 10.8.0.38 194703 username teymori5660 194703 mac 194703 bytes_out 0 194703 bytes_in 0 194703 station_ip 5.120.140.149 194703 port 501 194703 unique_id port 194705 username yaghobi 194705 mac 194705 bytes_out 349121 194705 bytes_in 859334 194705 station_ip 83.123.124.198 194705 port 538 194705 unique_id port 194705 remote_ip 10.8.0.138 194709 username shahruz 194709 mac 194709 bytes_out 0 194709 bytes_in 0 194709 station_ip 83.123.33.65 194709 port 534 194709 unique_id port 194709 remote_ip 10.8.0.74 194710 username shahruz 194710 mac 194710 bytes_out 0 194710 bytes_in 0 194710 station_ip 83.123.33.65 194710 port 534 194710 unique_id port 194710 remote_ip 10.8.0.74 194717 username shahruz 194717 mac 194717 bytes_out 0 194717 bytes_in 0 194717 station_ip 83.123.33.65 194717 port 518 194717 unique_id port 194717 remote_ip 10.8.0.74 194721 username motamedi9772 194721 kill_reason Another user logged on this global unique id 194721 mac 194721 bytes_out 0 194721 bytes_in 0 194721 station_ip 83.123.76.189 194721 port 435 194721 unique_id port 194721 remote_ip 10.8.0.154 194722 username shahruz 194722 mac 194722 bytes_out 0 194722 bytes_in 0 194722 station_ip 83.123.33.65 194722 port 508 194722 unique_id port 194722 remote_ip 10.8.0.74 194723 username yaghobi 194723 mac 194723 bytes_out 263567 194723 bytes_in 497747 194723 station_ip 83.123.76.207 194723 port 538 194723 unique_id port 194723 remote_ip 10.8.0.138 194728 username soleymani5056 194728 mac 194728 bytes_out 251120 194728 bytes_in 1109136 194728 station_ip 5.119.214.241 194728 port 501 194728 unique_id port 194728 remote_ip 10.8.0.226 194729 username farhad3 194729 kill_reason Another user logged on this global unique id 194729 mac 194729 bytes_out 8102443 194729 bytes_in 49703181 194729 station_ip 5.120.62.231 194729 port 519 194729 unique_id port 194729 remote_ip 10.8.0.222 194730 username shahruz 194730 mac 194730 bytes_out 0 194730 bytes_in 0 194730 station_ip 83.123.33.65 194730 port 501 194730 unique_id port 194730 remote_ip 10.8.0.74 194734 username shahruz 194734 mac 194734 bytes_out 0 194734 bytes_in 0 194734 station_ip 83.123.33.65 194693 username dortaj3792 194693 mac 194693 bytes_out 3835406 194693 bytes_in 27137683 194693 station_ip 5.120.124.2 194693 port 534 194693 unique_id port 194693 remote_ip 10.8.0.102 194696 username shahruz 194696 mac 194696 bytes_out 0 194696 bytes_in 0 194696 station_ip 83.123.33.65 194696 port 534 194696 unique_id port 194696 remote_ip 10.8.0.74 194704 username shahruz 194704 mac 194704 bytes_out 0 194704 bytes_in 0 194704 station_ip 83.123.33.65 194704 port 540 194704 unique_id port 194704 remote_ip 10.8.0.74 194706 username shahruz 194706 mac 194706 bytes_out 0 194706 bytes_in 0 194706 station_ip 83.123.33.65 194706 port 501 194706 unique_id port 194706 remote_ip 10.8.0.74 194708 username yaghobi 194708 mac 194708 bytes_out 0 194708 bytes_in 0 194708 station_ip 83.123.76.207 194708 port 534 194708 unique_id port 194708 remote_ip 10.8.0.138 194711 username meghdad1616 194711 mac 194711 bytes_out 3055950 194711 bytes_in 28185270 194711 station_ip 5.120.168.218 194711 port 535 194711 unique_id port 194711 remote_ip 10.8.0.230 194712 username shahruz 194712 mac 194712 bytes_out 0 194712 bytes_in 0 194712 station_ip 83.123.33.65 194712 port 534 194712 unique_id port 194712 remote_ip 10.8.0.74 194713 username alipour1506 194713 mac 194713 bytes_out 314511 194713 bytes_in 2327409 194713 station_ip 78.39.25.121 194713 port 530 194713 unique_id port 194713 remote_ip 10.8.0.246 194714 username barzegar 194714 mac 194714 bytes_out 0 194714 bytes_in 0 194714 station_ip 5.119.204.241 194714 port 535 194714 unique_id port 194714 remote_ip 10.8.0.70 194716 username zahra1101 194716 mac 194716 bytes_out 1713932 194716 bytes_in 12959580 194716 station_ip 5.119.80.24 194716 port 518 194716 unique_id port 194716 remote_ip 10.8.0.30 194718 username rashidi4690 194718 mac 194718 bytes_out 0 194718 bytes_in 0 194718 station_ip 83.123.89.213 194718 port 508 194718 unique_id port 194720 username shahruz 194720 mac 194720 bytes_out 0 194720 bytes_in 0 194720 station_ip 83.123.33.65 194720 port 508 194720 unique_id port 194720 remote_ip 10.8.0.74 194724 username pourshad 194724 mac 194724 bytes_out 402402 194724 bytes_in 1011336 194724 station_ip 5.120.152.46 194724 port 537 194724 unique_id port 194724 remote_ip 10.8.0.42 194726 username shahruz 194726 mac 194726 bytes_out 0 194726 bytes_in 0 194726 station_ip 83.123.33.65 194726 port 508 194726 unique_id port 194726 remote_ip 10.8.0.74 194733 username farhad3 194733 mac 194733 bytes_out 0 194733 bytes_in 0 194733 station_ip 5.120.62.231 194733 port 519 194733 unique_id port 194735 username meghdad1616 194735 kill_reason Another user logged on this global unique id 194735 mac 194735 bytes_out 0 194735 bytes_in 0 194735 station_ip 5.120.168.218 194735 port 530 194735 unique_id port 194735 remote_ip 10.8.0.230 194737 username barzegar 194737 mac 194737 bytes_out 0 194737 bytes_in 0 194737 station_ip 5.119.204.241 194737 port 508 194737 unique_id port 194737 remote_ip 10.8.0.70 194739 username meghdad1616 194739 mac 194739 bytes_out 0 194739 bytes_in 0 194739 station_ip 5.120.168.218 194739 port 530 194739 unique_id port 194740 username shahruz 194740 mac 194740 bytes_out 0 194740 bytes_in 0 194740 station_ip 83.123.33.65 194740 port 519 194740 unique_id port 194740 remote_ip 10.8.0.74 194743 username alipour1506 194743 mac 194743 bytes_out 45416 194743 bytes_in 65430 194697 unique_id port 194697 remote_ip 10.8.0.118 194698 username shahruz 194698 kill_reason Maximum check online fails reached 194698 mac 194698 bytes_out 0 194698 bytes_in 0 194698 station_ip 83.123.33.65 194698 port 506 194698 unique_id port 194699 username shahruz 194699 mac 194699 bytes_out 0 194699 bytes_in 0 194699 station_ip 83.123.33.65 194699 port 534 194699 unique_id port 194699 remote_ip 10.8.0.74 194700 username shahruz 194700 mac 194700 bytes_out 0 194700 bytes_in 0 194700 station_ip 83.123.33.65 194700 port 534 194700 unique_id port 194700 remote_ip 10.8.0.74 194702 username barzegar 194702 mac 194702 bytes_out 0 194702 bytes_in 0 194702 station_ip 5.119.204.241 194702 port 534 194702 unique_id port 194702 remote_ip 10.8.0.70 194707 username shahruz 194707 mac 194707 bytes_out 0 194707 bytes_in 0 194707 station_ip 83.123.33.65 194707 port 538 194707 unique_id port 194707 remote_ip 10.8.0.74 194715 username shahruz 194715 mac 194715 bytes_out 0 194715 bytes_in 0 194715 station_ip 83.123.33.65 194715 port 540 194715 unique_id port 194715 remote_ip 10.8.0.74 194719 username shahruz 194719 mac 194719 bytes_out 0 194719 bytes_in 0 194719 station_ip 83.123.33.65 194719 port 518 194719 unique_id port 194719 remote_ip 10.8.0.74 194725 username shahruz 194725 mac 194725 bytes_out 0 194725 bytes_in 0 194725 station_ip 83.123.33.65 194725 port 508 194725 unique_id port 194725 remote_ip 10.8.0.74 194727 username shahruz 194727 mac 194727 bytes_out 0 194727 bytes_in 0 194727 station_ip 83.123.33.65 194727 port 508 194727 unique_id port 194727 remote_ip 10.8.0.74 194731 username shahruz 194731 mac 194731 bytes_out 0 194731 bytes_in 0 194731 station_ip 83.123.33.65 194731 port 501 194731 unique_id port 194731 remote_ip 10.8.0.74 194732 username shahruz 194732 mac 194732 bytes_out 0 194732 bytes_in 0 194732 station_ip 83.123.33.65 194732 port 501 194732 unique_id port 194732 remote_ip 10.8.0.74 194738 username shahruz 194738 mac 194738 bytes_out 0 194738 bytes_in 0 194738 station_ip 83.123.33.65 194738 port 508 194738 unique_id port 194738 remote_ip 10.8.0.74 194746 username pourshad 194746 mac 194746 bytes_out 36664 194746 bytes_in 53390 194746 station_ip 5.120.152.46 194746 port 508 194746 unique_id port 194746 remote_ip 10.8.0.42 194748 username shahruz 194748 mac 194748 bytes_out 0 194748 bytes_in 0 194748 station_ip 83.123.33.65 194748 port 508 194748 unique_id port 194748 remote_ip 10.8.0.74 194750 username motamedi9772 194750 kill_reason Another user logged on this global unique id 194750 mac 194750 bytes_out 0 194750 bytes_in 0 194750 station_ip 83.123.76.189 194750 port 435 194750 unique_id port 194752 username shahruz 194752 mac 194752 bytes_out 0 194752 bytes_in 0 194752 station_ip 83.123.33.65 194752 port 518 194752 unique_id port 194752 remote_ip 10.8.0.74 194754 username yaghobi 194754 mac 194754 bytes_out 39784 194754 bytes_in 44819 194754 station_ip 83.123.52.162 194754 port 537 194754 unique_id port 194754 remote_ip 10.8.0.138 194756 username shahruz 194756 mac 194756 bytes_out 0 194756 bytes_in 0 194756 station_ip 83.123.33.65 194756 port 537 194756 unique_id port 194756 remote_ip 10.8.0.74 194757 username khalili2 194757 mac 194757 bytes_out 0 194757 bytes_in 0 194757 station_ip 5.120.158.142 194757 port 514 194757 unique_id port 194759 username shahruz 194759 mac 194759 bytes_out 0 194734 port 508 194734 unique_id port 194734 remote_ip 10.8.0.74 194736 username shahruz 194736 mac 194736 bytes_out 0 194736 bytes_in 0 194736 station_ip 83.123.33.65 194736 port 518 194736 unique_id port 194736 remote_ip 10.8.0.74 194741 username shahruz 194741 mac 194741 bytes_out 0 194741 bytes_in 0 194741 station_ip 83.123.33.65 194741 port 519 194741 unique_id port 194741 remote_ip 10.8.0.74 194742 username shahruz 194742 mac 194742 bytes_out 0 194742 bytes_in 0 194742 station_ip 83.123.33.65 194742 port 519 194742 unique_id port 194742 remote_ip 10.8.0.74 194745 username shahruz 194745 mac 194745 bytes_out 6477 194745 bytes_in 15539 194745 station_ip 83.123.33.65 194745 port 530 194745 unique_id port 194745 remote_ip 10.8.0.74 194758 username shahruz 194758 mac 194758 bytes_out 0 194758 bytes_in 0 194758 station_ip 83.123.33.65 194758 port 518 194758 unique_id port 194758 remote_ip 10.8.0.74 194760 username barzegar 194760 mac 194760 bytes_out 0 194760 bytes_in 0 194760 station_ip 5.119.204.241 194760 port 514 194760 unique_id port 194760 remote_ip 10.8.0.70 194762 username shahruz 194762 mac 194762 bytes_out 0 194762 bytes_in 0 194762 station_ip 83.123.33.65 194762 port 514 194762 unique_id port 194762 remote_ip 10.8.0.74 194763 username shahruz 194763 mac 194763 bytes_out 0 194763 bytes_in 0 194763 station_ip 83.123.33.65 194763 port 514 194763 unique_id port 194763 remote_ip 10.8.0.74 194766 username teymori5660 194766 mac 194766 bytes_out 0 194766 bytes_in 0 194766 station_ip 5.120.140.149 194766 port 518 194766 unique_id port 194766 remote_ip 10.8.0.130 194770 username barzegar 194770 mac 194770 bytes_out 0 194770 bytes_in 0 194770 station_ip 5.119.204.241 194770 port 518 194770 unique_id port 194770 remote_ip 10.8.0.70 194772 username shahruz 194772 mac 194772 bytes_out 0 194772 bytes_in 0 194772 station_ip 83.123.33.65 194772 port 514 194772 unique_id port 194772 remote_ip 10.8.0.74 194775 username shahruz 194775 mac 194775 bytes_out 0 194775 bytes_in 0 194775 station_ip 83.123.33.65 194775 port 514 194775 unique_id port 194775 remote_ip 10.8.0.74 194776 username shahruz 194776 mac 194776 bytes_out 0 194776 bytes_in 0 194776 station_ip 83.123.33.65 194776 port 514 194776 unique_id port 194776 remote_ip 10.8.0.74 194786 username barzegar 194786 mac 194786 bytes_out 2416 194786 bytes_in 4709 194786 station_ip 5.119.204.241 194786 port 518 194786 unique_id port 194786 remote_ip 10.8.0.70 194788 username shahruz 194788 mac 194788 bytes_out 0 194788 bytes_in 0 194788 station_ip 83.123.33.65 194788 port 435 194788 unique_id port 194788 remote_ip 10.8.0.74 194791 username nilufarrajaei 194791 mac 194791 bytes_out 2250651 194791 bytes_in 17388855 194791 station_ip 83.123.53.158 194791 port 539 194791 unique_id port 194791 remote_ip 10.8.0.194 194793 username shahruz 194793 mac 194793 bytes_out 0 194793 bytes_in 0 194793 station_ip 83.123.33.65 194793 port 435 194793 unique_id port 194793 remote_ip 10.8.0.74 194796 username shahruz 194796 mac 194796 bytes_out 0 194796 bytes_in 0 194796 station_ip 83.123.33.65 194796 port 435 194796 unique_id port 194796 remote_ip 10.8.0.74 194797 username nilufarrajaei 194797 mac 194797 bytes_out 5388 194797 bytes_in 9209 194797 station_ip 83.123.53.158 194797 port 540 194797 unique_id port 194797 remote_ip 10.8.0.194 194799 username shahruz 194743 station_ip 83.123.59.82 194743 port 534 194743 unique_id port 194743 remote_ip 10.8.0.246 194744 username yaghobi 194744 mac 194744 bytes_out 215024 194744 bytes_in 305712 194744 station_ip 83.123.52.162 194744 port 518 194744 unique_id port 194744 remote_ip 10.8.0.138 194747 username shahruz 194747 mac 194747 bytes_out 0 194747 bytes_in 0 194747 station_ip 83.123.33.65 194747 port 518 194747 unique_id port 194747 remote_ip 10.8.0.74 194749 username shahruz 194749 mac 194749 bytes_out 0 194749 bytes_in 0 194749 station_ip 83.123.33.65 194749 port 508 194749 unique_id port 194749 remote_ip 10.8.0.74 194751 username shahruz 194751 mac 194751 bytes_out 0 194751 bytes_in 0 194751 station_ip 83.123.33.65 194751 port 518 194751 unique_id port 194751 remote_ip 10.8.0.74 194753 username shahruz 194753 mac 194753 bytes_out 0 194753 bytes_in 0 194753 station_ip 83.123.33.65 194753 port 518 194753 unique_id port 194753 remote_ip 10.8.0.74 194755 username shahruz 194755 mac 194755 bytes_out 0 194755 bytes_in 0 194755 station_ip 83.123.33.65 194755 port 518 194755 unique_id port 194755 remote_ip 10.8.0.74 194761 username shahruz 194761 mac 194761 bytes_out 0 194761 bytes_in 0 194761 station_ip 83.123.33.65 194761 port 518 194761 unique_id port 194761 remote_ip 10.8.0.74 194764 username teymori5660 194764 mac 194764 bytes_out 3421211 194764 bytes_in 35805637 194764 station_ip 5.120.140.149 194764 port 501 194764 unique_id port 194764 remote_ip 10.8.0.130 194768 username majidsarmast 194768 mac 194768 bytes_out 2600727 194768 bytes_in 24046134 194768 station_ip 83.123.77.102 194768 port 525 194768 unique_id port 194768 remote_ip 10.8.0.146 194771 username shahruz 194771 mac 194771 bytes_out 0 194771 bytes_in 0 194771 station_ip 83.123.33.65 194771 port 514 194771 unique_id port 194771 remote_ip 10.8.0.74 194773 username shahruz 194773 kill_reason Maximum check online fails reached 194773 mac 194773 bytes_out 0 194773 bytes_in 0 194773 station_ip 83.123.33.65 194773 port 501 194773 unique_id port 194774 username shahruz 194774 mac 194774 bytes_out 0 194774 bytes_in 0 194774 station_ip 83.123.33.65 194774 port 514 194774 unique_id port 194774 remote_ip 10.8.0.74 194777 username shahruz 194777 mac 194777 bytes_out 0 194777 bytes_in 0 194777 station_ip 83.123.33.65 194777 port 518 194777 unique_id port 194777 remote_ip 10.8.0.74 194778 username meghdad1616 194778 mac 194778 bytes_out 0 194778 bytes_in 0 194778 station_ip 5.120.168.218 194778 port 525 194778 unique_id port 194778 remote_ip 10.8.0.230 194780 username motamedi9772 194780 mac 194780 bytes_out 0 194780 bytes_in 0 194780 station_ip 83.123.76.189 194780 port 435 194780 unique_id port 194782 username shahruz 194782 mac 194782 bytes_out 2315 194782 bytes_in 4539 194782 station_ip 83.123.33.65 194782 port 518 194782 unique_id port 194782 remote_ip 10.8.0.74 194783 username shahruz 194783 mac 194783 bytes_out 0 194783 bytes_in 0 194783 station_ip 83.123.33.65 194783 port 435 194783 unique_id port 194783 remote_ip 10.8.0.74 194784 username shahruz 194784 mac 194784 bytes_out 0 194784 bytes_in 0 194784 station_ip 83.123.33.65 194784 port 435 194784 unique_id port 194784 remote_ip 10.8.0.74 194785 username shahruz 194785 mac 194785 bytes_out 0 194785 bytes_in 0 194785 station_ip 83.123.33.65 194785 port 435 194785 unique_id port 194785 remote_ip 10.8.0.74 194759 bytes_in 0 194759 station_ip 83.123.33.65 194759 port 514 194759 unique_id port 194759 remote_ip 10.8.0.74 194765 username shahruz 194765 mac 194765 bytes_out 0 194765 bytes_in 0 194765 station_ip 83.123.33.65 194765 port 514 194765 unique_id port 194765 remote_ip 10.8.0.74 194767 username pourshad 194767 mac 194767 bytes_out 85394 194767 bytes_in 1128740 194767 station_ip 5.120.152.46 194767 port 508 194767 unique_id port 194767 remote_ip 10.8.0.42 194769 username shahruz 194769 mac 194769 bytes_out 0 194769 bytes_in 0 194769 station_ip 83.123.33.65 194769 port 514 194769 unique_id port 194769 remote_ip 10.8.0.74 194779 username shahruz 194779 mac 194779 bytes_out 0 194779 bytes_in 0 194779 station_ip 83.123.33.65 194779 port 518 194779 unique_id port 194779 remote_ip 10.8.0.74 194781 username barzegar 194781 mac 194781 bytes_out 0 194781 bytes_in 0 194781 station_ip 5.119.204.241 194781 port 525 194781 unique_id port 194781 remote_ip 10.8.0.70 194790 username shahruz 194790 mac 194790 bytes_out 0 194790 bytes_in 0 194790 station_ip 83.123.33.65 194790 port 435 194790 unique_id port 194790 remote_ip 10.8.0.74 194792 username shahruz 194792 mac 194792 bytes_out 0 194792 bytes_in 0 194792 station_ip 83.123.33.65 194792 port 435 194792 unique_id port 194792 remote_ip 10.8.0.74 194801 username hosseine 194801 mac 194801 bytes_out 242060 194801 bytes_in 781442 194801 station_ip 83.123.87.81 194801 port 539 194801 unique_id port 194801 remote_ip 10.8.0.54 194803 username shahruz 194803 mac 194803 bytes_out 0 194803 bytes_in 0 194803 station_ip 83.123.33.65 194803 port 435 194803 unique_id port 194803 remote_ip 10.8.0.74 194805 username shahruz 194805 mac 194805 bytes_out 2633 194805 bytes_in 4910 194805 station_ip 83.123.33.65 194805 port 435 194805 unique_id port 194805 remote_ip 10.8.0.74 194806 username shahruz 194806 mac 194806 bytes_out 0 194806 bytes_in 0 194806 station_ip 83.123.33.65 194806 port 435 194806 unique_id port 194806 remote_ip 10.8.0.74 194808 username pourshad 194808 mac 194808 bytes_out 336024 194808 bytes_in 5884830 194808 station_ip 5.120.152.46 194808 port 539 194808 unique_id port 194808 remote_ip 10.8.0.42 194812 username alipour1506 194812 kill_reason Another user logged on this global unique id 194812 mac 194812 bytes_out 0 194812 bytes_in 0 194812 station_ip 78.39.25.121 194812 port 519 194812 unique_id port 194812 remote_ip 10.8.0.246 194816 username nilufarrajaei 194816 mac 194816 bytes_out 300884 194816 bytes_in 103569 194816 station_ip 83.123.53.158 194816 port 540 194816 unique_id port 194816 remote_ip 10.8.0.194 194818 username houshang 194818 mac 194818 bytes_out 680170 194818 bytes_in 1397262 194818 station_ip 5.120.97.7 194818 port 525 194818 unique_id port 194818 remote_ip 10.8.0.82 194820 username meghdad1616 194820 mac 194820 bytes_out 0 194820 bytes_in 0 194820 station_ip 5.120.168.218 194820 port 530 194820 unique_id port 194820 remote_ip 10.8.0.230 194823 username fezealinaghi 194823 mac 194823 bytes_out 26444 194823 bytes_in 41284 194823 station_ip 83.123.1.232 194823 port 523 194823 unique_id port 194823 remote_ip 10.8.0.202 194827 username meghdad1616 194827 mac 194827 bytes_out 0 194827 bytes_in 0 194827 station_ip 5.120.168.218 194827 port 537 194827 unique_id port 194827 remote_ip 10.8.0.230 194829 username meghdad1616 194829 mac 194829 bytes_out 0 194829 bytes_in 0 194787 username shahruz 194787 mac 194787 bytes_out 0 194787 bytes_in 0 194787 station_ip 83.123.33.65 194787 port 435 194787 unique_id port 194787 remote_ip 10.8.0.74 194789 username shahruz 194789 mac 194789 bytes_out 0 194789 bytes_in 0 194789 station_ip 83.123.33.65 194789 port 435 194789 unique_id port 194789 remote_ip 10.8.0.74 194794 username teymori5660 194794 mac 194794 bytes_out 156985 194794 bytes_in 1425532 194794 station_ip 5.120.140.149 194794 port 518 194794 unique_id port 194794 remote_ip 10.8.0.130 194795 username shahruz 194795 mac 194795 bytes_out 0 194795 bytes_in 0 194795 station_ip 83.123.33.65 194795 port 435 194795 unique_id port 194795 remote_ip 10.8.0.74 194798 username shahruz 194798 mac 194798 bytes_out 0 194798 bytes_in 0 194798 station_ip 83.123.33.65 194798 port 435 194798 unique_id port 194798 remote_ip 10.8.0.74 194804 username shahruz 194804 mac 194804 bytes_out 0 194804 bytes_in 0 194804 station_ip 83.123.33.65 194804 port 435 194804 unique_id port 194804 remote_ip 10.8.0.74 194813 username meysam 194813 mac 194813 bytes_out 0 194813 bytes_in 0 194813 station_ip 188.159.251.53 194813 port 537 194813 unique_id port 194815 username farhad3 194815 kill_reason Another user logged on this global unique id 194815 mac 194815 bytes_out 0 194815 bytes_in 0 194815 station_ip 5.120.62.231 194815 port 534 194815 unique_id port 194815 remote_ip 10.8.0.222 194822 username houshang 194822 mac 194822 bytes_out 14920 194822 bytes_in 54204 194822 station_ip 5.120.97.7 194822 port 525 194822 unique_id port 194822 remote_ip 10.8.0.82 194824 username nilufarrajaei 194824 mac 194824 bytes_out 70987 194824 bytes_in 141458 194824 station_ip 83.123.53.158 194824 port 518 194824 unique_id port 194824 remote_ip 10.8.0.194 194825 username nilufarrajaei 194825 mac 194825 bytes_out 5587 194825 bytes_in 4650 194825 station_ip 83.123.53.158 194825 port 525 194825 unique_id port 194825 remote_ip 10.8.0.194 194826 username farhad3 194826 kill_reason Another user logged on this global unique id 194826 mac 194826 bytes_out 0 194826 bytes_in 0 194826 station_ip 5.120.62.231 194826 port 534 194826 unique_id port 194832 username zahra1101 194832 mac 194832 bytes_out 0 194832 bytes_in 0 194832 station_ip 5.120.113.34 194832 port 539 194832 unique_id port 194832 remote_ip 10.8.0.30 194835 username soleymani5056 194835 mac 194835 bytes_out 58102 194835 bytes_in 137922 194835 station_ip 5.120.120.207 194835 port 530 194835 unique_id port 194835 remote_ip 10.8.0.226 194837 username fezealinaghi 194837 mac 194837 bytes_out 43311 194837 bytes_in 92662 194837 station_ip 83.123.1.232 194837 port 523 194837 unique_id port 194837 remote_ip 10.8.0.202 194840 username soleymani5056 194840 mac 194840 bytes_out 59980 194840 bytes_in 52363 194840 station_ip 5.120.114.183 194840 port 530 194840 unique_id port 194840 remote_ip 10.8.0.226 194841 username farhad3 194841 kill_reason Another user logged on this global unique id 194841 mac 194841 bytes_out 0 194841 bytes_in 0 194841 station_ip 5.120.62.231 194841 port 534 194841 unique_id port 194844 username meysam 194844 kill_reason Another user logged on this global unique id 194844 mac 194844 bytes_out 0 194844 bytes_in 0 194844 station_ip 188.159.251.53 194844 port 537 194844 unique_id port 194844 remote_ip 10.8.0.158 194848 username zahra1101 194848 mac 194848 bytes_out 2537 194848 bytes_in 4577 194848 station_ip 5.120.113.34 194848 port 530 194848 unique_id port 194799 mac 194799 bytes_out 0 194799 bytes_in 0 194799 station_ip 83.123.33.65 194799 port 435 194799 unique_id port 194799 remote_ip 10.8.0.74 194800 username shahruz 194800 mac 194800 bytes_out 0 194800 bytes_in 0 194800 station_ip 83.123.33.65 194800 port 435 194800 unique_id port 194800 remote_ip 10.8.0.74 194802 username shahruz 194802 mac 194802 bytes_out 0 194802 bytes_in 0 194802 station_ip 83.123.33.65 194802 port 435 194802 unique_id port 194802 remote_ip 10.8.0.74 194807 username shahruz 194807 mac 194807 bytes_out 0 194807 bytes_in 0 194807 station_ip 83.123.33.65 194807 port 435 194807 unique_id port 194807 remote_ip 10.8.0.74 194809 username meysam 194809 kill_reason Another user logged on this global unique id 194809 mac 194809 bytes_out 0 194809 bytes_in 0 194809 station_ip 188.159.251.53 194809 port 537 194809 unique_id port 194809 remote_ip 10.8.0.158 194810 username khademi 194810 kill_reason Another user logged on this global unique id 194810 mac 194810 bytes_out 0 194810 bytes_in 0 194810 station_ip 83.123.99.220 194810 port 520 194810 unique_id port 194811 username zahra1101 194811 mac 194811 bytes_out 2317689 194811 bytes_in 23923071 194811 station_ip 5.120.113.34 194811 port 530 194811 unique_id port 194811 remote_ip 10.8.0.30 194814 username barzegar 194814 mac 194814 bytes_out 260738 194814 bytes_in 1264811 194814 station_ip 5.119.204.241 194814 port 518 194814 unique_id port 194814 remote_ip 10.8.0.70 194817 username meghdad1616 194817 mac 194817 bytes_out 140805 194817 bytes_in 1926130 194817 station_ip 5.120.168.218 194817 port 530 194817 unique_id port 194817 remote_ip 10.8.0.230 194819 username meghdad1616 194819 mac 194819 bytes_out 0 194819 bytes_in 0 194819 station_ip 5.120.168.218 194819 port 530 194819 unique_id port 194819 remote_ip 10.8.0.230 194821 username fezealinaghi 194821 mac 194821 bytes_out 1701567 194821 bytes_in 12117157 194821 station_ip 83.123.1.232 194821 port 523 194821 unique_id port 194821 remote_ip 10.8.0.202 194828 username soleymani5056 194828 mac 194828 bytes_out 176508 194828 bytes_in 512063 194828 station_ip 5.119.109.158 194828 port 530 194828 unique_id port 194828 remote_ip 10.8.0.226 194834 username nilufarrajaei 194834 mac 194834 bytes_out 772767 194834 bytes_in 7794467 194834 station_ip 83.123.53.158 194834 port 525 194834 unique_id port 194834 remote_ip 10.8.0.194 194838 username farhad3 194838 kill_reason Another user logged on this global unique id 194838 mac 194838 bytes_out 0 194838 bytes_in 0 194838 station_ip 5.120.62.231 194838 port 534 194838 unique_id port 194839 username yaghobi 194839 mac 194839 bytes_out 196084 194839 bytes_in 275202 194839 station_ip 83.123.74.2 194839 port 525 194839 unique_id port 194839 remote_ip 10.8.0.138 194843 username majidsarmast 194843 mac 194843 bytes_out 893973 194843 bytes_in 4961425 194843 station_ip 83.123.77.102 194843 port 508 194843 unique_id port 194843 remote_ip 10.8.0.146 194846 username farhad3 194846 kill_reason Another user logged on this global unique id 194846 mac 194846 bytes_out 0 194846 bytes_in 0 194846 station_ip 5.120.62.231 194846 port 534 194846 unique_id port 194847 username meghdad1616 194847 mac 194847 bytes_out 14995 194847 bytes_in 21124 194847 station_ip 5.120.168.218 194847 port 530 194847 unique_id port 194847 remote_ip 10.8.0.230 194856 username farhad3 194856 mac 194856 bytes_out 0 194856 bytes_in 0 194856 station_ip 5.120.62.231 194856 port 534 194856 unique_id port 194829 station_ip 5.120.168.218 194829 port 537 194829 unique_id port 194829 remote_ip 10.8.0.230 194830 username soleymani5056 194830 mac 194830 bytes_out 37121 194830 bytes_in 36959 194830 station_ip 5.119.134.69 194830 port 530 194830 unique_id port 194830 remote_ip 10.8.0.226 194831 username barzegar 194831 mac 194831 bytes_out 0 194831 bytes_in 0 194831 station_ip 5.119.204.241 194831 port 539 194831 unique_id port 194831 remote_ip 10.8.0.70 194833 username yaghobi 194833 mac 194833 bytes_out 749906 194833 bytes_in 2657847 194833 station_ip 83.123.85.124 194833 port 435 194833 unique_id port 194833 remote_ip 10.8.0.138 194836 username meghdad1616 194836 mac 194836 bytes_out 2600 194836 bytes_in 4593 194836 station_ip 5.120.168.218 194836 port 540 194836 unique_id port 194836 remote_ip 10.8.0.230 194842 username zahra1101 194842 mac 194842 bytes_out 9629 194842 bytes_in 16728 194842 station_ip 5.120.113.34 194842 port 523 194842 unique_id port 194842 remote_ip 10.8.0.30 194845 username majidsarmast 194845 mac 194845 bytes_out 8297 194845 bytes_in 13429 194845 station_ip 83.123.77.102 194845 port 523 194845 unique_id port 194845 remote_ip 10.8.0.146 194849 username akbari0070 194849 mac 194849 bytes_out 2125721 194849 bytes_in 24789996 194849 station_ip 83.123.78.7 194849 port 435 194849 unique_id port 194849 remote_ip 10.8.0.166 194851 username barzegar8595 194851 kill_reason Another user logged on this global unique id 194851 mac 194851 bytes_out 0 194851 bytes_in 0 194851 station_ip 46.225.208.11 194851 port 518 194851 unique_id port 194851 remote_ip 10.8.0.114 194852 username farhad3 194852 kill_reason Another user logged on this global unique id 194852 mac 194852 bytes_out 0 194852 bytes_in 0 194852 station_ip 5.120.62.231 194852 port 534 194852 unique_id port 194855 username godarzi 194855 mac 194855 bytes_out 3339275 194855 bytes_in 18509330 194855 station_ip 5.120.124.40 194855 port 538 194855 unique_id port 194855 remote_ip 10.8.0.38 194857 username mammad 194857 unique_id port 194857 terminate_cause User-Request 194857 bytes_out 3778530 194857 bytes_in 74740398 194857 station_ip 5.233.71.82 194857 port 15729377 194857 nas_port_type Virtual 194857 remote_ip 5.5.5.255 194859 username meghdad1616 194859 mac 194859 bytes_out 253714 194859 bytes_in 26654 194859 station_ip 5.120.168.218 194859 port 530 194859 unique_id port 194859 remote_ip 10.8.0.230 194862 username meysam 194862 mac 194862 bytes_out 0 194862 bytes_in 0 194862 station_ip 188.159.251.53 194862 port 537 194862 unique_id port 194863 username barzegar 194863 kill_reason Maximum number of concurrent logins reached 194863 mac 194863 bytes_out 0 194863 bytes_in 0 194863 station_ip 5.119.204.241 194863 port 523 194863 unique_id port 194870 username meghdad1616 194870 mac 194870 bytes_out 0 194870 bytes_in 0 194870 station_ip 5.120.168.218 194870 port 530 194870 unique_id port 194870 remote_ip 10.8.0.230 194873 username mohammadjavad 194873 mac 194873 bytes_out 251872 194873 bytes_in 937178 194873 station_ip 113.203.30.207 194873 port 537 194873 unique_id port 194873 remote_ip 10.8.0.110 194875 username pourshad 194875 kill_reason Another user logged on this global unique id 194875 mac 194875 bytes_out 0 194875 bytes_in 0 194875 station_ip 5.120.152.46 194875 port 525 194875 unique_id port 194875 remote_ip 10.8.0.42 194881 username pourshad 194881 mac 194881 bytes_out 0 194881 bytes_in 0 194881 station_ip 5.120.152.46 194881 port 525 194881 unique_id port 194882 username soleymani5056 194848 remote_ip 10.8.0.30 194850 username barzegar 194850 mac 194850 bytes_out 127899 194850 bytes_in 1092018 194850 station_ip 5.119.204.241 194850 port 523 194850 unique_id port 194850 remote_ip 10.8.0.70 194853 username vanila 194853 kill_reason Relative expiration date has reached 194853 mac 194853 bytes_out 0 194853 bytes_in 0 194853 station_ip 83.123.87.62 194853 port 523 194853 unique_id port 194854 username vanila 194854 kill_reason Relative expiration date has reached 194854 mac 194854 bytes_out 0 194854 bytes_in 0 194854 station_ip 83.123.87.62 194854 port 523 194854 unique_id port 194858 username zahra1101 194858 mac 194858 bytes_out 0 194858 bytes_in 0 194858 station_ip 5.120.113.34 194858 port 534 194858 unique_id port 194858 remote_ip 10.8.0.30 194860 username meghdad1616 194860 mac 194860 bytes_out 0 194860 bytes_in 0 194860 station_ip 5.120.168.218 194860 port 530 194860 unique_id port 194860 remote_ip 10.8.0.230 194861 username godarzi 194861 mac 194861 bytes_out 1623726 194861 bytes_in 195566 194861 station_ip 5.120.124.40 194861 port 523 194861 unique_id port 194861 remote_ip 10.8.0.38 194864 username barzegar 194864 mac 194864 bytes_out 5782 194864 bytes_in 6972 194864 station_ip 5.119.204.241 194864 port 530 194864 unique_id port 194864 remote_ip 10.8.0.70 194868 username zahra1101 194868 mac 194868 bytes_out 2249 194868 bytes_in 4433 194868 station_ip 5.120.113.34 194868 port 530 194868 unique_id port 194868 remote_ip 10.8.0.30 194871 username nilufarrajaei 194871 mac 194871 bytes_out 1355957 194871 bytes_in 5278065 194871 station_ip 83.123.53.158 194871 port 539 194871 unique_id port 194871 remote_ip 10.8.0.194 194872 username alipour1506 194872 mac 194872 bytes_out 0 194872 bytes_in 0 194872 station_ip 78.39.25.121 194872 port 519 194872 unique_id port 194876 username mostafa_es78 194876 mac 194876 bytes_out 3496453 194876 bytes_in 36671185 194876 station_ip 83.122.69.60 194876 port 523 194876 unique_id port 194876 remote_ip 10.8.0.34 194879 username nilufarrajaei 194879 mac 194879 bytes_out 19779 194879 bytes_in 34731 194879 station_ip 113.203.63.50 194879 port 538 194879 unique_id port 194879 remote_ip 10.8.0.194 194880 username sekonji0496 194880 mac 194880 bytes_out 8277 194880 bytes_in 9916 194880 station_ip 83.123.101.228 194880 port 534 194880 unique_id port 194880 remote_ip 10.8.0.62 194883 username alihosseini1 194883 mac 194883 bytes_out 0 194883 bytes_in 0 194883 station_ip 5.119.59.183 194883 port 525 194883 unique_id port 194883 remote_ip 10.8.0.118 194885 username dortaj3792 194885 mac 194885 bytes_out 686350 194885 bytes_in 779502 194885 station_ip 5.119.136.18 194885 port 435 194885 unique_id port 194885 remote_ip 10.8.0.102 194886 username yaghobi 194886 mac 194886 bytes_out 372593 194886 bytes_in 1871333 194886 station_ip 83.123.247.101 194886 port 523 194886 unique_id port 194886 remote_ip 10.8.0.138 194889 username meghdad1616 194889 mac 194889 bytes_out 0 194889 bytes_in 0 194889 station_ip 5.120.168.218 194889 port 540 194889 unique_id port 194889 remote_ip 10.8.0.230 194892 username yaghobi 194892 mac 194892 bytes_out 1868128 194892 bytes_in 17452229 194892 station_ip 83.123.161.33 194892 port 435 194892 unique_id port 194892 remote_ip 10.8.0.138 194893 username kalantary6037 194893 mac 194893 bytes_out 517328 194893 bytes_in 2790258 194893 station_ip 37.129.112.111 194893 port 508 194893 unique_id port 194893 remote_ip 10.8.0.50 194865 username majidsarmast 194865 mac 194865 bytes_out 82852 194865 bytes_in 144088 194865 station_ip 83.123.77.102 194865 port 508 194865 unique_id port 194865 remote_ip 10.8.0.146 194866 username sekonji0496 194866 mac 194866 bytes_out 407599 194866 bytes_in 6993100 194866 station_ip 83.123.101.228 194866 port 534 194866 unique_id port 194866 remote_ip 10.8.0.62 194867 username alihosseini1 194867 mac 194867 bytes_out 2857 194867 bytes_in 5107 194867 station_ip 5.119.59.183 194867 port 523 194867 unique_id port 194867 remote_ip 10.8.0.118 194869 username meghdad1616 194869 mac 194869 bytes_out 2464 194869 bytes_in 4736 194869 station_ip 5.120.168.218 194869 port 534 194869 unique_id port 194869 remote_ip 10.8.0.230 194874 username rashidi4690 194874 mac 194874 bytes_out 7237410 194874 bytes_in 45899184 194874 station_ip 5.119.44.17 194874 port 535 194874 unique_id port 194874 remote_ip 10.8.0.242 194877 username barzegar8595 194877 kill_reason Another user logged on this global unique id 194877 mac 194877 bytes_out 0 194877 bytes_in 0 194877 station_ip 46.225.208.11 194877 port 518 194877 unique_id port 194878 username meghdad1616 194878 mac 194878 bytes_out 7081140 194878 bytes_in 453003 194878 station_ip 5.120.168.218 194878 port 530 194878 unique_id port 194878 remote_ip 10.8.0.230 194884 username nilufarrajaei 194884 mac 194884 bytes_out 9402 194884 bytes_in 11933 194884 station_ip 113.203.91.46 194884 port 523 194884 unique_id port 194884 remote_ip 10.8.0.194 194887 username meysam 194887 mac 194887 bytes_out 364389 194887 bytes_in 4755621 194887 station_ip 188.159.251.53 194887 port 523 194887 unique_id port 194887 remote_ip 10.8.0.158 194888 username meghdad1616 194888 mac 194888 bytes_out 0 194888 bytes_in 0 194888 station_ip 5.120.168.218 194888 port 523 194888 unique_id port 194888 remote_ip 10.8.0.230 194891 username majidsarmast 194891 mac 194891 bytes_out 350914 194891 bytes_in 3027750 194891 station_ip 83.123.77.102 194891 port 508 194891 unique_id port 194891 remote_ip 10.8.0.146 194895 username godarzi 194895 mac 194895 bytes_out 412486 194895 bytes_in 2585149 194895 station_ip 5.120.124.40 194895 port 539 194895 unique_id port 194895 remote_ip 10.8.0.38 194902 username nilufarrajaei 194902 mac 194902 bytes_out 277963 194902 bytes_in 919575 194902 station_ip 113.203.10.186 194902 port 519 194902 unique_id port 194902 remote_ip 10.8.0.194 194905 username nilufarrajaei 194905 mac 194905 bytes_out 5031 194905 bytes_in 12490 194905 station_ip 113.203.63.190 194905 port 537 194905 unique_id port 194905 remote_ip 10.8.0.194 194906 username mostafa_es78 194906 mac 194906 bytes_out 1311939 194906 bytes_in 1081615 194906 station_ip 83.122.69.60 194906 port 538 194906 unique_id port 194906 remote_ip 10.8.0.34 194909 username saeeddamghani 194909 mac 194909 bytes_out 245063 194909 bytes_in 266715 194909 station_ip 5.215.222.162 194909 port 535 194909 unique_id port 194909 remote_ip 10.8.0.174 194911 username kalantary6037 194911 mac 194911 bytes_out 1036790 194911 bytes_in 10700484 194911 station_ip 37.129.37.83 194911 port 539 194911 unique_id port 194911 remote_ip 10.8.0.50 194914 username khademi 194914 kill_reason Another user logged on this global unique id 194914 mac 194914 bytes_out 0 194914 bytes_in 0 194914 station_ip 83.123.99.220 194914 port 520 194914 unique_id port 194916 username saeeddamghani 194916 mac 194916 bytes_out 44444 194916 bytes_in 88419 194916 station_ip 5.215.222.162 194916 port 535 194882 mac 194882 bytes_out 63710 194882 bytes_in 276028 194882 station_ip 5.120.57.154 194882 port 519 194882 unique_id port 194882 remote_ip 10.8.0.226 194890 username motamedi9772 194890 kill_reason Another user logged on this global unique id 194890 mac 194890 bytes_out 0 194890 bytes_in 0 194890 station_ip 83.123.248.97 194890 port 534 194890 unique_id port 194890 remote_ip 10.8.0.154 194894 username yarmohamadi7916 194894 kill_reason Another user logged on this global unique id 194894 mac 194894 bytes_out 0 194894 bytes_in 0 194894 station_ip 5.119.151.207 194894 port 530 194894 unique_id port 194894 remote_ip 10.8.0.238 194896 username sabaghnezhad 194896 mac 194896 bytes_out 137629 194896 bytes_in 855134 194896 station_ip 83.123.107.15 194896 port 535 194896 unique_id port 194896 remote_ip 10.8.0.66 194898 username meghdad1616 194898 mac 194898 bytes_out 0 194898 bytes_in 0 194898 station_ip 5.120.168.218 194898 port 539 194898 unique_id port 194898 remote_ip 10.8.0.230 194899 username meghdad1616 194899 mac 194899 bytes_out 0 194899 bytes_in 0 194899 station_ip 5.120.168.218 194899 port 539 194899 unique_id port 194899 remote_ip 10.8.0.230 194900 username alihosseini1 194900 mac 194900 bytes_out 0 194900 bytes_in 0 194900 station_ip 5.119.59.183 194900 port 541 194900 unique_id port 194900 remote_ip 10.8.0.118 194907 username khalili2 194907 kill_reason Another user logged on this global unique id 194907 mac 194907 bytes_out 0 194907 bytes_in 0 194907 station_ip 5.119.97.65 194907 port 514 194907 unique_id port 194913 username mammad 194913 unique_id port 194913 terminate_cause User-Request 194913 bytes_out 611404 194913 bytes_in 1205107 194913 station_ip 5.233.71.82 194913 port 15729379 194913 nas_port_type Virtual 194913 remote_ip 5.5.5.255 194915 username mostafa_es78 194915 mac 194915 bytes_out 236841 194915 bytes_in 2195362 194915 station_ip 83.122.69.60 194915 port 523 194915 unique_id port 194915 remote_ip 10.8.0.34 194921 username saeeddamghani 194921 mac 194921 bytes_out 0 194921 bytes_in 0 194921 station_ip 5.215.222.162 194921 port 535 194921 unique_id port 194921 remote_ip 10.8.0.174 194923 username saeeddamghani 194923 mac 194923 bytes_out 10921 194923 bytes_in 35690 194923 station_ip 5.215.222.162 194923 port 538 194923 unique_id port 194923 remote_ip 10.8.0.174 194924 username rashidi4690 194924 mac 194924 bytes_out 1401218 194924 bytes_in 6697052 194924 station_ip 5.119.44.17 194924 port 537 194924 unique_id port 194924 remote_ip 10.8.0.242 194925 username aminvpn 194925 unique_id port 194925 terminate_cause Lost-Carrier 194925 bytes_out 659032 194925 bytes_in 3811740 194925 station_ip 37.129.89.80 194925 port 15729380 194925 nas_port_type Virtual 194925 remote_ip 5.5.5.255 194928 username godarzi 194928 mac 194928 bytes_out 764532 194928 bytes_in 9831430 194928 station_ip 5.120.124.40 194928 port 539 194928 unique_id port 194928 remote_ip 10.8.0.38 194929 username mammad 194929 unique_id port 194929 terminate_cause User-Request 194929 bytes_out 431400 194929 bytes_in 2607548 194929 station_ip 5.233.71.82 194929 port 15729381 194929 nas_port_type Virtual 194929 remote_ip 5.5.5.254 194932 username alihosseini1 194932 mac 194932 bytes_out 0 194932 bytes_in 0 194932 station_ip 5.119.175.18 194932 port 435 194932 unique_id port 194932 remote_ip 10.8.0.118 194935 username askarzadeh9013 194935 mac 194935 bytes_out 0 194935 bytes_in 0 194935 station_ip 83.123.116.177 194935 port 529 194935 unique_id port 194939 username teymori5660 194956 station_ip 46.225.208.11 194897 username khalili2 194897 kill_reason Another user logged on this global unique id 194897 mac 194897 bytes_out 0 194897 bytes_in 0 194897 station_ip 5.119.97.65 194897 port 514 194897 unique_id port 194897 remote_ip 10.8.0.190 194901 username zahra1101 194901 mac 194901 bytes_out 1072259 194901 bytes_in 4019859 194901 station_ip 5.120.113.34 194901 port 537 194901 unique_id port 194901 remote_ip 10.8.0.30 194903 username pourshad 194903 mac 194903 bytes_out 100036 194903 bytes_in 646660 194903 station_ip 5.120.152.46 194903 port 523 194903 unique_id port 194903 remote_ip 10.8.0.42 194904 username zahra1101 194904 mac 194904 bytes_out 0 194904 bytes_in 0 194904 station_ip 5.120.113.34 194904 port 519 194904 unique_id port 194904 remote_ip 10.8.0.30 194908 username zahra1101 194908 mac 194908 bytes_out 0 194908 bytes_in 0 194908 station_ip 5.120.113.34 194908 port 537 194908 unique_id port 194908 remote_ip 10.8.0.30 194910 username meysam 194910 mac 194910 bytes_out 1300055 194910 bytes_in 17842625 194910 station_ip 188.159.251.53 194910 port 435 194910 unique_id port 194910 remote_ip 10.8.0.158 194912 username yarmohamadi7916 194912 kill_reason Another user logged on this global unique id 194912 mac 194912 bytes_out 0 194912 bytes_in 0 194912 station_ip 5.119.151.207 194912 port 530 194912 unique_id port 194917 username godarzi 194917 mac 194917 bytes_out 1302005 194917 bytes_in 13433484 194917 station_ip 5.120.124.40 194917 port 508 194917 unique_id port 194917 remote_ip 10.8.0.38 194920 username saeeddamghani 194920 mac 194920 bytes_out 15646 194920 bytes_in 28750 194920 station_ip 5.215.222.162 194920 port 508 194920 unique_id port 194920 remote_ip 10.8.0.174 194922 username meysam 194922 mac 194922 bytes_out 2694164 194922 bytes_in 36450494 194922 station_ip 188.159.251.53 194922 port 538 194922 unique_id port 194922 remote_ip 10.8.0.158 194927 username meghdad1616 194927 mac 194927 bytes_out 0 194927 bytes_in 0 194927 station_ip 5.120.168.218 194927 port 435 194927 unique_id port 194927 remote_ip 10.8.0.230 194930 username yaghobi 194930 mac 194930 bytes_out 115353 194930 bytes_in 149852 194930 station_ip 37.129.144.128 194930 port 541 194930 unique_id port 194930 remote_ip 10.8.0.138 194934 username khalili2 194934 kill_reason Another user logged on this global unique id 194934 mac 194934 bytes_out 0 194934 bytes_in 0 194934 station_ip 5.119.97.65 194934 port 514 194934 unique_id port 194938 username alihosseini1 194938 mac 194938 bytes_out 4015 194938 bytes_in 6718 194938 station_ip 5.119.175.18 194938 port 529 194938 unique_id port 194938 remote_ip 10.8.0.118 194945 username meysam 194945 mac 194945 bytes_out 53588 194945 bytes_in 484289 194945 station_ip 188.159.251.53 194945 port 538 194945 unique_id port 194945 remote_ip 10.8.0.158 194949 username kalantary6037 194949 mac 194949 bytes_out 344159 194949 bytes_in 948409 194949 station_ip 37.129.107.147 194949 port 435 194949 unique_id port 194949 remote_ip 10.8.0.50 194951 username khalili2 194951 kill_reason Another user logged on this global unique id 194951 mac 194951 bytes_out 0 194951 bytes_in 0 194951 station_ip 5.119.97.65 194951 port 514 194951 unique_id port 194954 username kalantary6037 194954 mac 194954 bytes_out 220498 194954 bytes_in 1414872 194954 station_ip 37.129.107.147 194954 port 529 194954 unique_id port 194954 remote_ip 10.8.0.50 194956 username barzegar8595 194956 kill_reason Another user logged on this global unique id 194956 mac 194956 bytes_out 0 194956 bytes_in 0 194916 unique_id port 194916 remote_ip 10.8.0.174 194918 username saeeddamghani 194918 mac 194918 bytes_out 0 194918 bytes_in 0 194918 station_ip 5.215.222.162 194918 port 508 194918 unique_id port 194918 remote_ip 10.8.0.174 194919 username saeeddamghani 194919 mac 194919 bytes_out 0 194919 bytes_in 0 194919 station_ip 5.215.222.162 194919 port 508 194919 unique_id port 194919 remote_ip 10.8.0.174 194926 username yaghobi 194926 mac 194926 bytes_out 1916447 194926 bytes_in 15471726 194926 station_ip 37.129.144.128 194926 port 435 194926 unique_id port 194926 remote_ip 10.8.0.138 194931 username yarmohamadi7916 194931 kill_reason Another user logged on this global unique id 194931 mac 194931 bytes_out 0 194931 bytes_in 0 194931 station_ip 5.119.151.207 194931 port 530 194931 unique_id port 194933 username zahra1101 194933 mac 194933 bytes_out 11186872 194933 bytes_in 6334129 194933 station_ip 5.120.113.34 194933 port 538 194933 unique_id port 194933 remote_ip 10.8.0.30 194936 username motamedi9772 194936 mac 194936 bytes_out 0 194936 bytes_in 0 194936 station_ip 83.123.248.97 194936 port 534 194936 unique_id port 194937 username motamedi9772 194937 mac 194937 bytes_out 0 194937 bytes_in 0 194937 station_ip 83.123.248.97 194937 port 534 194937 unique_id port 194937 remote_ip 10.8.0.154 194942 username alihosseini1 194942 kill_reason Maximum check online fails reached 194942 mac 194942 bytes_out 0 194942 bytes_in 0 194942 station_ip 5.119.175.18 194942 port 534 194942 unique_id port 194943 username meysam 194943 mac 194943 bytes_out 451619 194943 bytes_in 5674171 194943 station_ip 188.159.251.53 194943 port 435 194943 unique_id port 194943 remote_ip 10.8.0.158 194944 username meghdad1616 194944 mac 194944 bytes_out 0 194944 bytes_in 0 194944 station_ip 5.120.168.218 194944 port 435 194944 unique_id port 194944 remote_ip 10.8.0.230 194947 username mohammadjavad 194947 kill_reason Another user logged on this global unique id 194947 mac 194947 bytes_out 0 194947 bytes_in 0 194947 station_ip 83.122.81.97 194947 port 529 194947 unique_id port 194947 remote_ip 10.8.0.110 194948 username mohammadjavad 194948 mac 194948 bytes_out 0 194948 bytes_in 0 194948 station_ip 83.122.81.97 194948 port 529 194948 unique_id port 194952 username nilufarrajaei 194952 mac 194952 bytes_out 378112 194952 bytes_in 1479307 194952 station_ip 113.203.63.190 194952 port 519 194952 unique_id port 194952 remote_ip 10.8.0.194 194953 username mohammadjavad 194953 mac 194953 bytes_out 0 194953 bytes_in 0 194953 station_ip 37.129.0.150 194953 port 519 194953 unique_id port 194953 remote_ip 10.8.0.110 194957 username meghdad1616 194957 mac 194957 bytes_out 0 194957 bytes_in 0 194957 station_ip 5.120.168.218 194957 port 519 194957 unique_id port 194957 remote_ip 10.8.0.230 194960 username zahra1101 194960 mac 194960 bytes_out 0 194960 bytes_in 0 194960 station_ip 5.120.113.34 194960 port 529 194960 unique_id port 194960 remote_ip 10.8.0.30 194962 username dortaj3792 194962 mac 194962 bytes_out 2037786 194962 bytes_in 3897222 194962 station_ip 5.119.136.18 194962 port 540 194962 unique_id port 194962 remote_ip 10.8.0.102 194969 username kalantary6037 194969 mac 194969 bytes_out 0 194969 bytes_in 0 194969 station_ip 37.129.107.147 194969 port 514 194969 unique_id port 194969 remote_ip 10.8.0.50 194970 username teymori5660 194970 kill_reason Another user logged on this global unique id 194970 mac 194970 bytes_out 0 194970 bytes_in 0 194970 station_ip 5.119.224.243 194939 kill_reason Another user logged on this global unique id 194939 mac 194939 bytes_out 0 194939 bytes_in 0 194939 station_ip 5.119.224.243 194939 port 538 194939 unique_id port 194939 remote_ip 10.8.0.130 194940 username teymori5660 194940 mac 194940 bytes_out 0 194940 bytes_in 0 194940 station_ip 5.119.224.243 194940 port 538 194940 unique_id port 194941 username kalantary6037 194941 mac 194941 bytes_out 1979085 194941 bytes_in 18423198 194941 station_ip 37.129.107.147 194941 port 435 194941 unique_id port 194941 remote_ip 10.8.0.50 194946 username alirezaza 194946 unique_id port 194946 terminate_cause Lost-Carrier 194946 bytes_out 191338 194946 bytes_in 813742 194946 station_ip 5.119.84.168 194946 port 15729382 194946 nas_port_type Virtual 194946 remote_ip 5.5.5.255 194950 username hosseine 194950 kill_reason Another user logged on this global unique id 194950 mac 194950 bytes_out 0 194950 bytes_in 0 194950 station_ip 37.129.187.71 194950 port 535 194950 unique_id port 194950 remote_ip 10.8.0.54 194955 username meghdad1616 194955 mac 194955 bytes_out 0 194955 bytes_in 0 194955 station_ip 5.120.168.218 194955 port 519 194955 unique_id port 194955 remote_ip 10.8.0.230 194959 username yarmohamadi7916 194959 kill_reason Another user logged on this global unique id 194959 mac 194959 bytes_out 0 194959 bytes_in 0 194959 station_ip 5.119.151.207 194959 port 530 194959 unique_id port 194965 username alihosseini1 194965 mac 194965 bytes_out 0 194965 bytes_in 0 194965 station_ip 5.119.175.18 194965 port 519 194965 unique_id port 194965 remote_ip 10.8.0.118 194971 username alihosseini1 194971 mac 194971 bytes_out 0 194971 bytes_in 0 194971 station_ip 5.119.175.18 194971 port 514 194971 unique_id port 194971 remote_ip 10.8.0.118 194973 username hamid1430 194973 kill_reason Another user logged on this global unique id 194973 mac 194973 bytes_out 0 194973 bytes_in 0 194973 station_ip 83.122.181.184 194973 port 525 194973 unique_id port 194973 remote_ip 10.8.0.90 194975 username majidsarmast 194975 mac 194975 bytes_out 2059829 194975 bytes_in 6018076 194975 station_ip 37.129.82.132 194975 port 508 194975 unique_id port 194975 remote_ip 10.8.0.146 194976 username motamedi9772 194976 kill_reason Another user logged on this global unique id 194976 mac 194976 bytes_out 0 194976 bytes_in 0 194976 station_ip 83.123.156.225 194976 port 435 194976 unique_id port 194977 username mosavi0713 194977 mac 194977 bytes_out 155681 194977 bytes_in 871434 194977 station_ip 83.123.232.173 194977 port 519 194977 unique_id port 194977 remote_ip 10.8.0.150 194978 username mammad 194978 unique_id port 194978 terminate_cause User-Request 194978 bytes_out 514529 194978 bytes_in 5230578 194978 station_ip 5.233.71.82 194978 port 15729384 194978 nas_port_type Virtual 194978 remote_ip 5.5.5.254 194980 username mohammadjavad 194980 mac 194980 bytes_out 21201 194980 bytes_in 33702 194980 station_ip 37.129.0.150 194980 port 514 194980 unique_id port 194980 remote_ip 10.8.0.110 194984 username motamedi9772 194984 mac 194984 bytes_out 0 194984 bytes_in 0 194984 station_ip 83.123.156.225 194984 port 519 194984 unique_id port 194984 remote_ip 10.8.0.154 194987 username motamedi9772 194987 mac 194987 bytes_out 345162 194987 bytes_in 6428451 194987 station_ip 83.123.156.225 194987 port 519 194987 unique_id port 194987 remote_ip 10.8.0.154 194988 username motamedi9772 194988 mac 194988 bytes_out 0 194988 bytes_in 0 194988 station_ip 83.123.156.225 194988 port 519 194988 unique_id port 194988 remote_ip 10.8.0.154 194990 username meghdad1616 194956 port 518 194956 unique_id port 194958 username soleymani5056 194958 mac 194958 bytes_out 389253 194958 bytes_in 2382545 194958 station_ip 5.120.78.208 194958 port 539 194958 unique_id port 194958 remote_ip 10.8.0.226 194961 username rashidi4690 194961 mac 194961 bytes_out 2292792 194961 bytes_in 7500999 194961 station_ip 5.119.44.17 194961 port 537 194961 unique_id port 194961 remote_ip 10.8.0.242 194963 username kalantary6037 194963 mac 194963 bytes_out 671726 194963 bytes_in 9482833 194963 station_ip 37.129.107.147 194963 port 519 194963 unique_id port 194963 remote_ip 10.8.0.50 194964 username hamid.e 194964 unique_id port 194964 terminate_cause User-Request 194964 bytes_out 24166910 194964 bytes_in 542115076 194964 station_ip 37.27.21.10 194964 port 15729378 194964 nas_port_type Virtual 194964 remote_ip 5.5.5.3 194966 username motamedi9772 194966 kill_reason Another user logged on this global unique id 194966 mac 194966 bytes_out 0 194966 bytes_in 0 194966 station_ip 83.123.156.225 194966 port 435 194966 unique_id port 194966 remote_ip 10.8.0.154 194967 username khalili2 194967 mac 194967 bytes_out 0 194967 bytes_in 0 194967 station_ip 5.119.97.65 194967 port 514 194967 unique_id port 194968 username zahra1101 194968 mac 194968 bytes_out 0 194968 bytes_in 0 194968 station_ip 5.120.113.34 194968 port 519 194968 unique_id port 194968 remote_ip 10.8.0.30 194974 username kalantary6037 194974 mac 194974 bytes_out 58550 194974 bytes_in 63044 194974 station_ip 37.129.107.147 194974 port 514 194974 unique_id port 194974 remote_ip 10.8.0.50 194979 username yarmohamadi7916 194979 kill_reason Another user logged on this global unique id 194979 mac 194979 bytes_out 0 194979 bytes_in 0 194979 station_ip 5.119.151.207 194979 port 530 194979 unique_id port 194981 username kalantary6037 194981 mac 194981 bytes_out 0 194981 bytes_in 0 194981 station_ip 37.129.107.147 194981 port 514 194981 unique_id port 194981 remote_ip 10.8.0.50 194983 username motamedi9772 194983 mac 194983 bytes_out 0 194983 bytes_in 0 194983 station_ip 83.123.156.225 194983 port 435 194983 unique_id port 194983 remote_ip 10.8.0.154 194986 username alihosseini1 194986 mac 194986 bytes_out 0 194986 bytes_in 0 194986 station_ip 5.119.175.18 194986 port 435 194986 unique_id port 194986 remote_ip 10.8.0.118 194992 username majidsarmast 194992 mac 194992 bytes_out 912562 194992 bytes_in 12940844 194992 station_ip 37.129.82.132 194992 port 508 194992 unique_id port 194992 remote_ip 10.8.0.146 194994 username zahra1101 194994 mac 194994 bytes_out 0 194994 bytes_in 0 194994 station_ip 5.120.113.34 194994 port 538 194994 unique_id port 194994 remote_ip 10.8.0.30 194995 username kalantary6037 194995 mac 194995 bytes_out 0 194995 bytes_in 0 194995 station_ip 37.129.107.147 194995 port 508 194995 unique_id port 194995 remote_ip 10.8.0.50 195000 username majidsarmast 195000 mac 195000 bytes_out 318727 195000 bytes_in 4352748 195000 station_ip 86.57.82.36 195000 port 540 195000 unique_id port 195000 remote_ip 10.8.0.146 195001 username saeeddamghani 195001 mac 195001 bytes_out 2853 195001 bytes_in 5285 195001 station_ip 5.215.130.138 195001 port 508 195001 unique_id port 195001 remote_ip 10.8.0.174 195005 username motamedi9772 195005 mac 195005 bytes_out 0 195005 bytes_in 0 195005 station_ip 83.123.156.225 195005 port 530 195005 unique_id port 195005 remote_ip 10.8.0.154 195008 username motamedi9772 195008 mac 195008 bytes_out 0 195008 bytes_in 0 194970 port 538 194970 unique_id port 194970 remote_ip 10.8.0.130 194972 username teymori5660 194972 mac 194972 bytes_out 0 194972 bytes_in 0 194972 station_ip 5.119.224.243 194972 port 538 194972 unique_id port 194982 username motamedi9772 194982 mac 194982 bytes_out 0 194982 bytes_in 0 194982 station_ip 83.123.156.225 194982 port 435 194982 unique_id port 194985 username meghdad1616 194985 mac 194985 bytes_out 20954 194985 bytes_in 29343 194985 station_ip 5.120.168.218 194985 port 435 194985 unique_id port 194985 remote_ip 10.8.0.230 194989 username akbari0070 194989 kill_reason Another user logged on this global unique id 194989 mac 194989 bytes_out 0 194989 bytes_in 0 194989 station_ip 37.129.62.227 194989 port 514 194989 unique_id port 194989 remote_ip 10.8.0.166 194993 username motamedi9772 194993 mac 194993 bytes_out 0 194993 bytes_in 0 194993 station_ip 83.123.156.225 194993 port 537 194993 unique_id port 194993 remote_ip 10.8.0.154 194997 username yarmohamadi7916 194997 mac 194997 bytes_out 0 194997 bytes_in 0 194997 station_ip 5.119.151.207 194997 port 530 194997 unique_id port 195007 username barzegar8595 195007 mac 195007 bytes_out 0 195007 bytes_in 0 195007 station_ip 46.225.208.11 195007 port 518 195007 unique_id port 195011 username akbari0070 195011 mac 195011 bytes_out 0 195011 bytes_in 0 195011 station_ip 37.129.62.227 195011 port 514 195011 unique_id port 195014 username barzegar8595 195014 mac 195014 bytes_out 73160 195014 bytes_in 512059 195014 station_ip 46.225.209.154 195014 port 518 195014 unique_id port 195014 remote_ip 10.8.0.114 195016 username meghdad1616 195016 mac 195016 bytes_out 0 195016 bytes_in 0 195016 station_ip 5.120.168.218 195016 port 530 195016 unique_id port 195016 remote_ip 10.8.0.230 195018 username mosavi0713 195018 mac 195018 bytes_out 606022 195018 bytes_in 109148 195018 station_ip 83.123.232.173 195018 port 514 195018 unique_id port 195018 remote_ip 10.8.0.150 195024 username saeeddamghani 195024 mac 195024 bytes_out 0 195024 bytes_in 0 195024 station_ip 5.215.140.79 195024 port 435 195024 unique_id port 195024 remote_ip 10.8.0.174 195026 username houshang 195026 mac 195026 bytes_out 341774 195026 bytes_in 851636 195026 station_ip 5.119.107.67 195026 port 539 195026 unique_id port 195026 remote_ip 10.8.0.82 195027 username saeeddamghani 195027 mac 195027 bytes_out 0 195027 bytes_in 0 195027 station_ip 5.215.140.79 195027 port 435 195027 unique_id port 195027 remote_ip 10.8.0.174 195031 username saeeddamghani 195031 mac 195031 bytes_out 0 195031 bytes_in 0 195031 station_ip 5.215.140.79 195031 port 514 195031 unique_id port 195031 remote_ip 10.8.0.174 195032 username saeeddamghani 195032 mac 195032 bytes_out 0 195032 bytes_in 0 195032 station_ip 5.215.140.79 195032 port 514 195032 unique_id port 195032 remote_ip 10.8.0.174 195033 username saeeddamghani 195033 mac 195033 bytes_out 0 195033 bytes_in 0 195033 station_ip 5.215.140.79 195033 port 519 195033 unique_id port 195033 remote_ip 10.8.0.174 195039 username saeeddamghani 195039 mac 195039 bytes_out 2167 195039 bytes_in 4850 195039 station_ip 5.215.140.79 195039 port 537 195039 unique_id port 195039 remote_ip 10.8.0.174 195041 username moslem6940 195041 mac 195041 bytes_out 0 195041 bytes_in 0 195041 station_ip 83.122.217.206 195041 port 519 195041 unique_id port 195041 remote_ip 10.8.0.186 195042 username moslem6940 195042 mac 195042 bytes_out 0 194990 mac 194990 bytes_out 30365 194990 bytes_in 73670 194990 station_ip 5.120.168.218 194990 port 537 194990 unique_id port 194990 remote_ip 10.8.0.230 194991 username motamedi9772 194991 mac 194991 bytes_out 0 194991 bytes_in 0 194991 station_ip 83.123.156.225 194991 port 537 194991 unique_id port 194991 remote_ip 10.8.0.154 194996 username motamedi9772 194996 mac 194996 bytes_out 0 194996 bytes_in 0 194996 station_ip 83.123.156.225 194996 port 537 194996 unique_id port 194996 remote_ip 10.8.0.154 194998 username saeeddamghani 194998 mac 194998 bytes_out 1912 194998 bytes_in 4157 194998 station_ip 5.119.254.193 194998 port 539 194998 unique_id port 194998 remote_ip 10.8.0.174 194999 username motamedi9772 194999 mac 194999 bytes_out 0 194999 bytes_in 0 194999 station_ip 83.123.156.225 194999 port 530 194999 unique_id port 194999 remote_ip 10.8.0.154 195002 username motamedi9772 195002 mac 195002 bytes_out 0 195002 bytes_in 0 195002 station_ip 83.123.156.225 195002 port 530 195002 unique_id port 195002 remote_ip 10.8.0.154 195003 username saeeddamghani 195003 mac 195003 bytes_out 0 195003 bytes_in 0 195003 station_ip 5.119.254.193 195003 port 537 195003 unique_id port 195003 remote_ip 10.8.0.174 195004 username saeeddamghani 195004 mac 195004 bytes_out 0 195004 bytes_in 0 195004 station_ip 5.215.130.138 195004 port 530 195004 unique_id port 195004 remote_ip 10.8.0.174 195006 username mostafa_es78 195006 mac 195006 bytes_out 10749 195006 bytes_in 13156 195006 station_ip 83.122.7.228 195006 port 508 195006 unique_id port 195006 remote_ip 10.8.0.34 195009 username kharazmi2920 195009 mac 195009 bytes_out 940831 195009 bytes_in 11272510 195009 station_ip 37.129.9.137 195009 port 435 195009 unique_id port 195009 remote_ip 10.8.0.22 195010 username motamedi9772 195010 mac 195010 bytes_out 0 195010 bytes_in 0 195010 station_ip 83.123.156.225 195010 port 435 195010 unique_id port 195010 remote_ip 10.8.0.154 195015 username hamid1430 195015 kill_reason Another user logged on this global unique id 195015 mac 195015 bytes_out 0 195015 bytes_in 0 195015 station_ip 83.122.181.184 195015 port 525 195015 unique_id port 195020 username godarzi 195020 mac 195020 bytes_out 201866 195020 bytes_in 1925672 195020 station_ip 5.120.124.40 195020 port 537 195020 unique_id port 195020 remote_ip 10.8.0.38 195022 username saeeddamghani 195022 mac 195022 bytes_out 79539 195022 bytes_in 271299 195022 station_ip 5.215.140.79 195022 port 538 195022 unique_id port 195022 remote_ip 10.8.0.174 195023 username motamedi9772 195023 mac 195023 bytes_out 135638 195023 bytes_in 1010586 195023 station_ip 83.123.156.225 195023 port 519 195023 unique_id port 195023 remote_ip 10.8.0.154 195028 username saeeddamghani 195028 mac 195028 bytes_out 0 195028 bytes_in 0 195028 station_ip 5.215.140.79 195028 port 435 195028 unique_id port 195028 remote_ip 10.8.0.174 195029 username saeeddamghani 195029 mac 195029 bytes_out 0 195029 bytes_in 0 195029 station_ip 5.215.140.79 195029 port 514 195029 unique_id port 195029 remote_ip 10.8.0.174 195034 username akbari0070 195034 kill_reason Another user logged on this global unique id 195034 mac 195034 bytes_out 0 195034 bytes_in 0 195034 station_ip 37.129.62.227 195034 port 508 195034 unique_id port 195034 remote_ip 10.8.0.166 195036 username saeeddamghani 195036 mac 195036 bytes_out 0 195036 bytes_in 0 195036 station_ip 5.215.140.79 195036 port 514 195036 unique_id port 195036 remote_ip 10.8.0.174 195008 station_ip 83.123.156.225 195008 port 508 195008 unique_id port 195008 remote_ip 10.8.0.154 195012 username aminvpn 195012 unique_id port 195012 terminate_cause Lost-Carrier 195012 bytes_out 76074 195012 bytes_in 340796 195012 station_ip 37.129.84.76 195012 port 15729385 195012 nas_port_type Virtual 195012 remote_ip 5.5.5.255 195013 username motamedi9772 195013 mac 195013 bytes_out 60540 195013 bytes_in 590913 195013 station_ip 83.123.156.225 195013 port 514 195013 unique_id port 195013 remote_ip 10.8.0.154 195017 username yaghobi 195017 mac 195017 bytes_out 1040869 195017 bytes_in 10964275 195017 station_ip 37.129.73.111 195017 port 519 195017 unique_id port 195017 remote_ip 10.8.0.138 195019 username meghdad1616 195019 mac 195019 bytes_out 0 195019 bytes_in 0 195019 station_ip 5.120.168.218 195019 port 540 195019 unique_id port 195019 remote_ip 10.8.0.230 195021 username soleymani5056 195021 mac 195021 bytes_out 148124 195021 bytes_in 444334 195021 station_ip 5.120.150.38 195021 port 435 195021 unique_id port 195021 remote_ip 10.8.0.226 195025 username khademi 195025 kill_reason Another user logged on this global unique id 195025 mac 195025 bytes_out 0 195025 bytes_in 0 195025 station_ip 83.123.99.220 195025 port 520 195025 unique_id port 195030 username saeeddamghani 195030 mac 195030 bytes_out 0 195030 bytes_in 0 195030 station_ip 5.215.140.79 195030 port 514 195030 unique_id port 195030 remote_ip 10.8.0.174 195035 username motamedi9772 195035 mac 195035 bytes_out 374495 195035 bytes_in 3499502 195035 station_ip 83.123.208.161 195035 port 514 195035 unique_id port 195035 remote_ip 10.8.0.154 195037 username moslem6940 195037 mac 195037 bytes_out 2021 195037 bytes_in 4354 195037 station_ip 83.122.217.206 195037 port 519 195037 unique_id port 195037 remote_ip 10.8.0.186 195038 username moslem6940 195038 mac 195038 bytes_out 0 195038 bytes_in 0 195038 station_ip 83.122.217.206 195038 port 538 195038 unique_id port 195038 remote_ip 10.8.0.186 195040 username moslem6940 195040 mac 195040 bytes_out 10122 195040 bytes_in 24024 195040 station_ip 83.122.217.206 195040 port 519 195040 unique_id port 195040 remote_ip 10.8.0.186 195043 username zahra1101 195043 mac 195043 bytes_out 550580 195043 bytes_in 2924387 195043 station_ip 5.120.113.34 195043 port 514 195043 unique_id port 195043 remote_ip 10.8.0.30 195044 username barzegar8595 195044 mac 195044 bytes_out 2972604 195044 bytes_in 22519280 195044 station_ip 46.225.214.54 195044 port 518 195044 unique_id port 195044 remote_ip 10.8.0.114 195048 username saeeddamghani 195048 mac 195048 bytes_out 16098 195048 bytes_in 27428 195048 station_ip 5.215.140.79 195048 port 518 195048 unique_id port 195048 remote_ip 10.8.0.174 195050 username soleymani5056 195050 mac 195050 bytes_out 213073 195050 bytes_in 92007 195050 station_ip 5.119.218.216 195050 port 538 195050 unique_id port 195050 remote_ip 10.8.0.226 195057 username meghdad1616 195057 mac 195057 bytes_out 0 195057 bytes_in 0 195057 station_ip 5.120.168.218 195057 port 529 195057 unique_id port 195057 remote_ip 10.8.0.230 195061 username yaghobi 195061 mac 195061 bytes_out 241963 195061 bytes_in 1278418 195061 station_ip 37.129.73.111 195061 port 523 195061 unique_id port 195061 remote_ip 10.8.0.138 195065 username aminvpn 195065 unique_id port 195065 terminate_cause Lost-Carrier 195065 bytes_out 302322 195065 bytes_in 1357521 195065 station_ip 31.57.126.135 195065 port 15729386 195065 nas_port_type Virtual 195065 remote_ip 5.5.5.255 195042 bytes_in 0 195042 station_ip 83.122.217.206 195042 port 519 195042 unique_id port 195042 remote_ip 10.8.0.186 195046 username meghdad1616 195046 mac 195046 bytes_out 0 195046 bytes_in 0 195046 station_ip 5.120.168.218 195046 port 514 195046 unique_id port 195046 remote_ip 10.8.0.230 195047 username moslem6940 195047 mac 195047 bytes_out 1644 195047 bytes_in 4649 195047 station_ip 83.122.217.206 195047 port 514 195047 unique_id port 195047 remote_ip 10.8.0.186 195052 username pourshad 195052 mac 195052 bytes_out 1667410 195052 bytes_in 17766308 195052 station_ip 5.120.152.46 195052 port 523 195052 unique_id port 195052 remote_ip 10.8.0.42 195055 username zahra1101 195055 mac 195055 bytes_out 109991 195055 bytes_in 136291 195055 station_ip 5.120.113.34 195055 port 537 195055 unique_id port 195055 remote_ip 10.8.0.30 195056 username nilufarrajaei 195056 mac 195056 bytes_out 3837253 195056 bytes_in 37470348 195056 station_ip 113.203.63.190 195056 port 529 195056 unique_id port 195056 remote_ip 10.8.0.194 195062 username hamid1430 195062 kill_reason Another user logged on this global unique id 195062 mac 195062 bytes_out 0 195062 bytes_in 0 195062 station_ip 83.122.181.184 195062 port 525 195062 unique_id port 195063 username nilufarrajaei 195063 mac 195063 bytes_out 13326 195063 bytes_in 22755 195063 station_ip 113.203.63.190 195063 port 523 195063 unique_id port 195063 remote_ip 10.8.0.194 195068 username saeeddamghani 195068 mac 195068 bytes_out 0 195068 bytes_in 0 195068 station_ip 5.215.140.79 195068 port 530 195068 unique_id port 195068 remote_ip 10.8.0.174 195071 username moslem6940 195071 mac 195071 bytes_out 0 195071 bytes_in 0 195071 station_ip 83.122.217.206 195071 port 514 195071 unique_id port 195072 username moslem6940 195072 mac 195072 bytes_out 0 195072 bytes_in 0 195072 station_ip 83.122.217.206 195072 port 530 195072 unique_id port 195072 remote_ip 10.8.0.186 195074 username moslem6940 195074 kill_reason Maximum number of concurrent logins reached 195074 mac 195074 bytes_out 0 195074 bytes_in 0 195074 station_ip 83.122.217.206 195074 port 541 195074 unique_id port 195076 username moslem6940 195076 kill_reason Maximum number of concurrent logins reached 195076 mac 195076 bytes_out 0 195076 bytes_in 0 195076 station_ip 83.122.217.206 195076 port 540 195076 unique_id port 195078 username esmaeili1522 195078 mac 195078 bytes_out 2618478 195078 bytes_in 5756972 195078 station_ip 5.119.246.221 195078 port 529 195078 unique_id port 195078 remote_ip 10.8.0.170 195085 username saeeddamghani 195085 mac 195085 bytes_out 214503 195085 bytes_in 387523 195085 station_ip 5.215.140.79 195085 port 435 195085 unique_id port 195085 remote_ip 10.8.0.174 195090 username saeeddamghani 195090 mac 195090 bytes_out 0 195090 bytes_in 0 195090 station_ip 5.215.140.79 195090 port 435 195090 unique_id port 195090 remote_ip 10.8.0.174 195091 username zahra1101 195091 mac 195091 bytes_out 0 195091 bytes_in 0 195091 station_ip 5.119.238.142 195091 port 435 195091 unique_id port 195091 remote_ip 10.8.0.30 195093 username meghdad1616 195093 mac 195093 bytes_out 0 195093 bytes_in 0 195093 station_ip 5.120.168.218 195093 port 529 195093 unique_id port 195093 remote_ip 10.8.0.230 195095 username alihosseini1 195095 mac 195095 bytes_out 7666 195095 bytes_in 10207 195095 station_ip 5.120.83.38 195095 port 541 195095 unique_id port 195095 remote_ip 10.8.0.118 195096 username saeeddamghani 195096 mac 195096 bytes_out 0 195096 bytes_in 0 195045 username moslem6940 195045 mac 195045 bytes_out 0 195045 bytes_in 0 195045 station_ip 83.122.217.206 195045 port 518 195045 unique_id port 195045 remote_ip 10.8.0.186 195049 username zahra1101 195049 mac 195049 bytes_out 208967 195049 bytes_in 381219 195049 station_ip 5.120.113.34 195049 port 537 195049 unique_id port 195049 remote_ip 10.8.0.30 195051 username saeeddamghani 195051 mac 195051 bytes_out 0 195051 bytes_in 0 195051 station_ip 5.215.140.79 195051 port 539 195051 unique_id port 195051 remote_ip 10.8.0.174 195053 username mammad 195053 unique_id port 195053 terminate_cause User-Request 195053 bytes_out 1621650 195053 bytes_in 16128663 195053 station_ip 5.233.71.82 195053 port 15729387 195053 nas_port_type Virtual 195053 remote_ip 5.5.5.254 195054 username yaghobi 195054 mac 195054 bytes_out 3805527 195054 bytes_in 29208590 195054 station_ip 37.129.73.111 195054 port 530 195054 unique_id port 195054 remote_ip 10.8.0.138 195058 username nilufarrajaei 195058 mac 195058 bytes_out 17902 195058 bytes_in 25919 195058 station_ip 113.203.63.190 195058 port 537 195058 unique_id port 195058 remote_ip 10.8.0.194 195059 username moslem6940 195059 kill_reason Another user logged on this global unique id 195059 mac 195059 bytes_out 0 195059 bytes_in 0 195059 station_ip 83.122.217.206 195059 port 514 195059 unique_id port 195059 remote_ip 10.8.0.186 195060 username alihosseini1 195060 mac 195060 bytes_out 77501 195060 bytes_in 170992 195060 station_ip 5.119.175.18 195060 port 435 195060 unique_id port 195060 remote_ip 10.8.0.118 195064 username milan 195064 kill_reason Another user logged on this global unique id 195064 mac 195064 bytes_out 0 195064 bytes_in 0 195064 station_ip 5.119.23.34 195064 port 460 195064 unique_id port 195067 username khalili2 195067 mac 195067 bytes_out 1736218 195067 bytes_in 21120107 195067 station_ip 5.119.97.65 195067 port 530 195067 unique_id port 195067 remote_ip 10.8.0.190 195070 username saeeddamghani 195070 mac 195070 bytes_out 0 195070 bytes_in 0 195070 station_ip 5.215.140.79 195070 port 530 195070 unique_id port 195070 remote_ip 10.8.0.174 195080 username yaghobi 195080 mac 195080 bytes_out 813357 195080 bytes_in 5026060 195080 station_ip 37.129.73.111 195080 port 435 195080 unique_id port 195080 remote_ip 10.8.0.138 195083 username saeeddamghani 195083 mac 195083 bytes_out 1644 195083 bytes_in 5023 195083 station_ip 5.215.140.79 195083 port 435 195083 unique_id port 195083 remote_ip 10.8.0.174 195084 username alihosseini1 195084 mac 195084 bytes_out 4404 195084 bytes_in 6858 195084 station_ip 5.120.83.38 195084 port 540 195084 unique_id port 195084 remote_ip 10.8.0.118 195086 username yaghobi 195086 mac 195086 bytes_out 821000 195086 bytes_in 4419580 195086 station_ip 37.129.73.111 195086 port 529 195086 unique_id port 195086 remote_ip 10.8.0.138 195087 username saeeddamghani 195087 mac 195087 bytes_out 0 195087 bytes_in 0 195087 station_ip 5.215.140.79 195087 port 435 195087 unique_id port 195087 remote_ip 10.8.0.174 195088 username zahra1101 195088 mac 195088 bytes_out 5246 195088 bytes_in 10812 195088 station_ip 5.119.238.142 195088 port 537 195088 unique_id port 195088 remote_ip 10.8.0.30 195089 username alirezazadeh 195089 unique_id port 195089 terminate_cause User-Request 195089 bytes_out 0 195089 bytes_in 0 195089 station_ip 5.120.133.22 195089 port 15729391 195089 nas_port_type Virtual 195089 remote_ip 5.5.5.255 195098 username godarzi 195098 kill_reason Another user logged on this global unique id 195098 mac 195066 username nilufarrajaei 195066 mac 195066 bytes_out 29704 195066 bytes_in 44959 195066 station_ip 113.203.63.190 195066 port 538 195066 unique_id port 195066 remote_ip 10.8.0.194 195069 username akbari0070 195069 kill_reason Another user logged on this global unique id 195069 mac 195069 bytes_out 0 195069 bytes_in 0 195069 station_ip 37.129.62.227 195069 port 508 195069 unique_id port 195073 username moslem6940 195073 mac 195073 bytes_out 0 195073 bytes_in 0 195073 station_ip 83.122.217.206 195073 port 538 195073 unique_id port 195073 remote_ip 10.8.0.186 195075 username meghdad1616 195075 mac 195075 bytes_out 0 195075 bytes_in 0 195075 station_ip 5.120.168.218 195075 port 540 195075 unique_id port 195075 remote_ip 10.8.0.230 195077 username moslem6940 195077 kill_reason Maximum check online fails reached 195077 mac 195077 bytes_out 0 195077 bytes_in 0 195077 station_ip 83.122.217.206 195077 port 514 195077 unique_id port 195079 username moslem6940 195079 kill_reason Maximum check online fails reached 195079 mac 195079 bytes_out 0 195079 bytes_in 0 195079 station_ip 83.122.217.206 195079 port 538 195079 unique_id port 195081 username saeeddamghani 195081 mac 195081 bytes_out 0 195081 bytes_in 0 195081 station_ip 5.215.140.79 195081 port 435 195081 unique_id port 195081 remote_ip 10.8.0.174 195082 username alihosseini1 195082 mac 195082 bytes_out 105388 195082 bytes_in 61351 195082 station_ip 5.120.83.38 195082 port 537 195082 unique_id port 195082 remote_ip 10.8.0.118 195092 username khademi 195092 kill_reason Another user logged on this global unique id 195092 mac 195092 bytes_out 0 195092 bytes_in 0 195092 station_ip 83.123.99.220 195092 port 520 195092 unique_id port 195094 username saeeddamghani 195094 mac 195094 bytes_out 8894 195094 bytes_in 18681 195094 station_ip 5.215.140.79 195094 port 529 195094 unique_id port 195094 remote_ip 10.8.0.174 195097 username milan 195097 kill_reason Another user logged on this global unique id 195097 mac 195097 bytes_out 0 195097 bytes_in 0 195097 station_ip 5.119.23.34 195097 port 460 195097 unique_id port 195108 username motamedi9772 195108 mac 195108 bytes_out 0 195108 bytes_in 0 195108 station_ip 83.123.185.181 195108 port 530 195108 unique_id port 195108 remote_ip 10.8.0.154 195110 username soleymani5056 195110 mac 195110 bytes_out 87377 195110 bytes_in 427088 195110 station_ip 5.120.24.79 195110 port 542 195110 unique_id port 195110 remote_ip 10.8.0.226 195114 username motamedi9772 195114 mac 195114 bytes_out 0 195114 bytes_in 0 195114 station_ip 83.123.185.181 195114 port 530 195114 unique_id port 195114 remote_ip 10.8.0.154 195115 username motamedi9772 195115 mac 195115 bytes_out 0 195115 bytes_in 0 195115 station_ip 83.123.185.181 195115 port 530 195115 unique_id port 195115 remote_ip 10.8.0.154 195116 username motamedi9772 195116 mac 195116 bytes_out 0 195116 bytes_in 0 195116 station_ip 83.123.185.181 195116 port 530 195116 unique_id port 195116 remote_ip 10.8.0.154 195119 username sekonji0496 195119 mac 195119 bytes_out 79483 195119 bytes_in 925592 195119 station_ip 37.129.132.190 195119 port 529 195119 unique_id port 195119 remote_ip 10.8.0.62 195133 username akbari0070 195133 mac 195133 bytes_out 75416 195133 bytes_in 86705 195133 station_ip 37.129.62.227 195133 port 541 195133 unique_id port 195133 remote_ip 10.8.0.166 195135 username sekonji0496 195135 mac 195135 bytes_out 0 195135 bytes_in 0 195135 station_ip 37.129.132.190 195135 port 541 195135 unique_id port 195096 station_ip 5.215.140.79 195096 port 537 195096 unique_id port 195096 remote_ip 10.8.0.174 195100 username motamedi9772 195100 mac 195100 bytes_out 0 195100 bytes_in 0 195100 station_ip 83.123.185.181 195100 port 530 195100 unique_id port 195100 remote_ip 10.8.0.154 195103 username motamedi9772 195103 mac 195103 bytes_out 4333 195103 bytes_in 5888 195103 station_ip 83.123.185.181 195103 port 530 195103 unique_id port 195103 remote_ip 10.8.0.154 195105 username akbari0070 195105 kill_reason Another user logged on this global unique id 195105 mac 195105 bytes_out 0 195105 bytes_in 0 195105 station_ip 37.129.62.227 195105 port 508 195105 unique_id port 195109 username alihosseini1 195109 mac 195109 bytes_out 14172 195109 bytes_in 15711 195109 station_ip 5.120.145.113 195109 port 537 195109 unique_id port 195109 remote_ip 10.8.0.118 195113 username alihosseini1 195113 mac 195113 bytes_out 3613 195113 bytes_in 5646 195113 station_ip 5.120.145.113 195113 port 537 195113 unique_id port 195113 remote_ip 10.8.0.118 195117 username saeeddamghani 195117 mac 195117 bytes_out 0 195117 bytes_in 0 195117 station_ip 5.215.140.79 195117 port 530 195117 unique_id port 195117 remote_ip 10.8.0.174 195118 username motamedi9772 195118 mac 195118 bytes_out 0 195118 bytes_in 0 195118 station_ip 83.123.185.181 195118 port 530 195118 unique_id port 195118 remote_ip 10.8.0.154 195121 username motamedi9772 195121 kill_reason Maximum check online fails reached 195121 mac 195121 bytes_out 0 195121 bytes_in 0 195121 station_ip 83.123.185.181 195121 port 529 195121 unique_id port 195122 username motamedi9772 195122 mac 195122 bytes_out 0 195122 bytes_in 0 195122 station_ip 83.123.185.181 195122 port 537 195122 unique_id port 195122 remote_ip 10.8.0.154 195126 username saeeddamghani 195126 mac 195126 bytes_out 0 195126 bytes_in 0 195126 station_ip 5.215.140.79 195126 port 537 195126 unique_id port 195126 remote_ip 10.8.0.174 195128 username saeeddamghani 195128 kill_reason Maximum check online fails reached 195128 mac 195128 bytes_out 0 195128 bytes_in 0 195128 station_ip 5.215.140.79 195128 port 540 195128 unique_id port 195130 username sekonji0496 195130 mac 195130 bytes_out 3996 195130 bytes_in 6022 195130 station_ip 37.129.132.190 195130 port 530 195130 unique_id port 195130 remote_ip 10.8.0.62 195131 username motamedi9772 195131 mac 195131 bytes_out 0 195131 bytes_in 0 195131 station_ip 83.123.185.181 195131 port 530 195131 unique_id port 195131 remote_ip 10.8.0.154 195138 username motamedi9772 195138 mac 195138 bytes_out 0 195138 bytes_in 0 195138 station_ip 83.123.185.181 195138 port 543 195138 unique_id port 195138 remote_ip 10.8.0.154 195144 username sekonji0496 195144 mac 195144 bytes_out 5345 195144 bytes_in 6653 195144 station_ip 37.129.132.190 195144 port 542 195144 unique_id port 195144 remote_ip 10.8.0.62 195149 username meghdad1616 195149 kill_reason Maximum check online fails reached 195149 mac 195149 bytes_out 0 195149 bytes_in 0 195149 station_ip 5.120.168.218 195149 port 545 195149 unique_id port 195150 username saeeddamghani 195150 mac 195150 bytes_out 5076 195150 bytes_in 7448 195150 station_ip 5.215.140.79 195150 port 543 195150 unique_id port 195150 remote_ip 10.8.0.174 195156 username sekonji0496 195156 mac 195156 bytes_out 0 195156 bytes_in 0 195156 station_ip 37.129.132.190 195156 port 545 195156 unique_id port 195156 remote_ip 10.8.0.62 195167 username akbari0070 195167 mac 195167 bytes_out 61683 195098 bytes_out 0 195098 bytes_in 0 195098 station_ip 45.84.157.190 195098 port 519 195098 unique_id port 195098 remote_ip 10.8.0.38 195099 username motamedi9772 195099 mac 195099 bytes_out 3770634 195099 bytes_in 41668887 195099 station_ip 83.123.185.181 195099 port 530 195099 unique_id port 195099 remote_ip 10.8.0.154 195101 username motamedi9772 195101 mac 195101 bytes_out 0 195101 bytes_in 0 195101 station_ip 83.123.185.181 195101 port 530 195101 unique_id port 195101 remote_ip 10.8.0.154 195102 username soleymani5056 195102 mac 195102 bytes_out 126197 195102 bytes_in 867217 195102 station_ip 5.119.156.189 195102 port 529 195102 unique_id port 195102 remote_ip 10.8.0.226 195104 username kalantary6037 195104 mac 195104 bytes_out 666047 195104 bytes_in 6657225 195104 station_ip 37.129.25.71 195104 port 541 195104 unique_id port 195104 remote_ip 10.8.0.50 195106 username motamedi9772 195106 mac 195106 bytes_out 0 195106 bytes_in 0 195106 station_ip 83.123.185.181 195106 port 530 195106 unique_id port 195106 remote_ip 10.8.0.154 195107 username motamedi9772 195107 mac 195107 bytes_out 0 195107 bytes_in 0 195107 station_ip 83.123.185.181 195107 port 530 195107 unique_id port 195107 remote_ip 10.8.0.154 195111 username saeeddamghani 195111 mac 195111 bytes_out 198492 195111 bytes_in 290655 195111 station_ip 5.215.140.79 195111 port 540 195111 unique_id port 195111 remote_ip 10.8.0.174 195112 username motamedi9772 195112 mac 195112 bytes_out 0 195112 bytes_in 0 195112 station_ip 83.123.185.181 195112 port 530 195112 unique_id port 195112 remote_ip 10.8.0.154 195120 username motamedi9772 195120 mac 195120 bytes_out 0 195120 bytes_in 0 195120 station_ip 83.123.185.181 195120 port 530 195120 unique_id port 195120 remote_ip 10.8.0.154 195123 username motamedi9772 195123 mac 195123 bytes_out 0 195123 bytes_in 0 195123 station_ip 83.123.185.181 195123 port 537 195123 unique_id port 195123 remote_ip 10.8.0.154 195124 username motamedi9772 195124 mac 195124 bytes_out 0 195124 bytes_in 0 195124 station_ip 83.123.185.181 195124 port 537 195124 unique_id port 195124 remote_ip 10.8.0.154 195125 username akbari0070 195125 mac 195125 bytes_out 0 195125 bytes_in 0 195125 station_ip 37.129.62.227 195125 port 508 195125 unique_id port 195127 username motamedi9772 195127 mac 195127 bytes_out 0 195127 bytes_in 0 195127 station_ip 83.123.185.181 195127 port 508 195127 unique_id port 195127 remote_ip 10.8.0.154 195129 username motamedi9772 195129 mac 195129 bytes_out 0 195129 bytes_in 0 195129 station_ip 83.123.185.181 195129 port 537 195129 unique_id port 195129 remote_ip 10.8.0.154 195132 username motamedi9772 195132 mac 195132 bytes_out 0 195132 bytes_in 0 195132 station_ip 83.123.185.181 195132 port 530 195132 unique_id port 195132 remote_ip 10.8.0.154 195134 username motamedi9772 195134 mac 195134 bytes_out 0 195134 bytes_in 0 195134 station_ip 83.123.185.181 195134 port 530 195134 unique_id port 195134 remote_ip 10.8.0.154 195136 username motamedi9772 195136 mac 195136 bytes_out 0 195136 bytes_in 0 195136 station_ip 83.123.185.181 195136 port 542 195136 unique_id port 195136 remote_ip 10.8.0.154 195139 username saeeddamghani 195139 mac 195139 bytes_out 1710 195139 bytes_in 4285 195139 station_ip 5.215.140.79 195139 port 541 195139 unique_id port 195139 remote_ip 10.8.0.174 195140 username saeeddamghani 195140 mac 195140 bytes_out 0 195140 bytes_in 0 195135 remote_ip 10.8.0.62 195137 username saeeddamghani 195137 mac 195137 bytes_out 0 195137 bytes_in 0 195137 station_ip 5.215.140.79 195137 port 541 195137 unique_id port 195137 remote_ip 10.8.0.174 195143 username saeeddamghani 195143 mac 195143 bytes_out 0 195143 bytes_in 0 195143 station_ip 5.215.140.79 195143 port 541 195143 unique_id port 195143 remote_ip 10.8.0.174 195147 username kalantary6037 195147 mac 195147 bytes_out 10512 195147 bytes_in 11363 195147 station_ip 37.129.120.151 195147 port 542 195147 unique_id port 195147 remote_ip 10.8.0.50 195154 username sekonji0496 195154 mac 195154 bytes_out 0 195154 bytes_in 0 195154 station_ip 37.129.132.190 195154 port 542 195154 unique_id port 195154 remote_ip 10.8.0.62 195155 username nilufarrajaei 195155 mac 195155 bytes_out 1696791 195155 bytes_in 8492377 195155 station_ip 113.203.63.190 195155 port 539 195155 unique_id port 195155 remote_ip 10.8.0.194 195160 username kalantary6037 195160 mac 195160 bytes_out 960062 195160 bytes_in 4802288 195160 station_ip 37.129.29.247 195160 port 543 195160 unique_id port 195160 remote_ip 10.8.0.50 195161 username sekonji0496 195161 mac 195161 bytes_out 19504 195161 bytes_in 21768 195161 station_ip 37.129.132.190 195161 port 545 195161 unique_id port 195161 remote_ip 10.8.0.62 195165 username akbari0070 195165 mac 195165 bytes_out 420878 195165 bytes_in 516296 195165 station_ip 37.129.62.227 195165 port 530 195165 unique_id port 195165 remote_ip 10.8.0.166 195166 username majidsarmast 195166 kill_reason Another user logged on this global unique id 195166 mac 195166 bytes_out 0 195166 bytes_in 0 195166 station_ip 86.57.82.36 195166 port 537 195166 unique_id port 195172 username nilufarrajaei 195172 mac 195172 bytes_out 39007 195172 bytes_in 188794 195172 station_ip 2.183.150.35 195172 port 547 195172 unique_id port 195172 remote_ip 10.8.0.194 195173 username tahmorsi 195173 kill_reason Another user logged on this global unique id 195173 mac 195173 bytes_out 0 195173 bytes_in 0 195173 station_ip 86.57.37.201 195173 port 539 195173 unique_id port 195173 remote_ip 10.8.0.6 195174 username houshang 195174 mac 195174 bytes_out 14608 195174 bytes_in 55591 195174 station_ip 5.119.107.67 195174 port 543 195174 unique_id port 195174 remote_ip 10.8.0.82 195176 username khademi 195162 station_ip 89.34.44.103 195176 kill_reason Another user logged on this global unique id 195176 mac 195176 bytes_out 0 195176 bytes_in 0 195176 station_ip 83.123.99.220 195176 port 520 195176 unique_id port 195177 username kalantary6037 195177 kill_reason Another user logged on this global unique id 195177 mac 195177 bytes_out 0 195177 bytes_in 0 195177 station_ip 37.129.29.247 195177 port 508 195177 unique_id port 195183 username milan 195183 kill_reason Another user logged on this global unique id 195183 mac 195183 bytes_out 0 195183 bytes_in 0 195183 station_ip 5.119.23.34 195183 port 460 195183 unique_id port 195186 username khademi 195186 kill_reason Another user logged on this global unique id 195186 mac 195186 bytes_out 0 195186 bytes_in 0 195186 station_ip 83.123.99.220 195186 port 520 195186 unique_id port 195187 username aminvpn 195187 mac 195187 bytes_out 2865386 195187 bytes_in 20499711 195187 station_ip 5.119.133.117 195187 port 544 195187 unique_id port 195187 remote_ip 10.8.0.58 195192 username mansur 195192 kill_reason Relative expiration date has reached 195192 mac 195192 bytes_out 0 195192 bytes_in 0 195192 station_ip 5.120.41.164 195192 port 530 195192 unique_id port 195197 username hosseine 195197 kill_reason Another user logged on this global unique id 195140 station_ip 5.215.140.79 195140 port 541 195140 unique_id port 195140 remote_ip 10.8.0.174 195141 username saeeddamghani 195141 mac 195141 bytes_out 0 195141 bytes_in 0 195141 station_ip 5.215.140.79 195141 port 541 195141 unique_id port 195141 remote_ip 10.8.0.174 195142 username alirezazadeh 195142 unique_id port 195142 terminate_cause Lost-Carrier 195142 bytes_out 3464151 195142 bytes_in 134806348 195142 station_ip 5.120.133.22 195142 port 15729392 195142 nas_port_type Virtual 195142 remote_ip 5.5.5.255 195145 username motamedi9772 195145 mac 195145 bytes_out 19546 195145 bytes_in 37824 195145 station_ip 83.123.185.181 195145 port 543 195145 unique_id port 195145 remote_ip 10.8.0.154 195146 username sekonji0496 195146 mac 195146 bytes_out 0 195146 bytes_in 0 195146 station_ip 37.129.132.190 195146 port 544 195146 unique_id port 195146 remote_ip 10.8.0.62 195148 username meghdad1616 195148 kill_reason Another user logged on this global unique id 195148 mac 195148 bytes_out 0 195148 bytes_in 0 195148 station_ip 5.120.168.218 195148 port 545 195148 unique_id port 195151 username majidsarmast 195151 kill_reason Another user logged on this global unique id 195151 mac 195151 bytes_out 0 195151 bytes_in 0 195151 station_ip 86.57.82.36 195151 port 537 195151 unique_id port 195151 remote_ip 10.8.0.146 195152 username zahra1101 195152 mac 195152 bytes_out 1914811 195152 bytes_in 24291928 195152 station_ip 5.119.238.142 195152 port 542 195152 unique_id port 195152 remote_ip 10.8.0.30 195153 username sekonji0496 195153 mac 195153 bytes_out 190828 195153 bytes_in 1160820 195153 station_ip 37.129.132.190 195153 port 544 195153 unique_id port 195153 remote_ip 10.8.0.62 195157 username khademi 195157 kill_reason Another user logged on this global unique id 195157 mac 195157 bytes_out 0 195157 bytes_in 0 195157 station_ip 83.123.99.220 195157 port 520 195157 unique_id port 195158 username mosi 195158 mac 195158 bytes_out 3687027 195158 bytes_in 22010236 195158 station_ip 5.233.50.12 195158 port 518 195158 unique_id port 195158 remote_ip 10.8.0.142 195159 username hatami 195159 mac 195159 bytes_out 930259 195159 bytes_in 8666824 195159 station_ip 151.235.68.65 195159 port 508 195159 unique_id port 195159 remote_ip 10.8.0.98 195162 username mosi 195162 mac 195162 bytes_out 174295 195162 bytes_in 1250928 195162 port 546 195162 unique_id port 195162 remote_ip 10.8.0.142 195163 username zahra1101 195163 mac 195163 bytes_out 0 195163 bytes_in 0 195163 station_ip 5.119.238.142 195163 port 508 195163 unique_id port 195163 remote_ip 10.8.0.30 195164 username saeeddamghani 195164 mac 195164 bytes_out 920642 195164 bytes_in 3315232 195164 station_ip 5.119.254.193 195164 port 518 195164 unique_id port 195164 remote_ip 10.8.0.174 195168 username zahra1101 195168 kill_reason Maximum check online fails reached 195168 mac 195168 bytes_out 0 195168 bytes_in 0 195168 station_ip 5.119.238.142 195168 port 518 195168 unique_id port 195171 username akbari0070 195171 mac 195171 bytes_out 861560 195171 bytes_in 8089516 195171 station_ip 37.129.62.227 195171 port 543 195171 unique_id port 195171 remote_ip 10.8.0.166 195175 username sekonji0496 195175 mac 195175 bytes_out 252627 195175 bytes_in 3659152 195175 station_ip 37.129.132.190 195175 port 508 195175 unique_id port 195175 remote_ip 10.8.0.62 195179 username zahra1101 195179 mac 195179 bytes_out 5063 195179 bytes_in 7394 195179 station_ip 5.119.238.142 195179 port 542 195179 unique_id port 195167 bytes_in 56954 195167 station_ip 37.129.62.227 195167 port 518 195167 unique_id port 195167 remote_ip 10.8.0.166 195169 username nilufarrajaei 195169 mac 195169 bytes_out 49685770 195169 bytes_in 9214177 195169 station_ip 113.203.63.190 195169 port 542 195169 unique_id port 195169 remote_ip 10.8.0.194 195170 username mohammadjavad 195170 mac 195170 bytes_out 94130 195170 bytes_in 171769 195170 station_ip 37.129.22.10 195170 port 545 195170 unique_id port 195170 remote_ip 10.8.0.110 195178 username kalantary6037 195178 kill_reason Another user logged on this global unique id 195178 mac 195178 bytes_out 0 195178 bytes_in 0 195178 station_ip 37.129.29.247 195178 port 508 195178 unique_id port 195180 username zahra1101 195180 mac 195180 bytes_out 2307 195180 bytes_in 5428 195180 station_ip 5.119.238.142 195180 port 542 195180 unique_id port 195180 remote_ip 10.8.0.30 195181 username tahmorsi 195181 mac 195181 bytes_out 0 195181 bytes_in 0 195181 station_ip 86.57.37.201 195181 port 539 195181 unique_id port 195182 username soleymani5056 195182 mac 195182 bytes_out 81877 195182 bytes_in 353724 195182 station_ip 5.119.94.219 195182 port 543 195182 unique_id port 195182 remote_ip 10.8.0.226 195184 username zahra1101 195184 mac 195184 bytes_out 1852 195184 bytes_in 4153 195184 station_ip 5.119.238.142 195184 port 539 195184 unique_id port 195184 remote_ip 10.8.0.30 195188 username aminvpn 195188 unique_id port 195188 terminate_cause Lost-Carrier 195188 bytes_out 114039 195188 bytes_in 229065 195188 station_ip 37.129.84.76 195188 port 15729395 195188 nas_port_type Virtual 195188 remote_ip 5.5.5.255 195189 username zahra1101 195189 mac 195189 bytes_out 0 195189 bytes_in 0 195189 station_ip 5.119.238.142 195189 port 542 195189 unique_id port 195189 remote_ip 10.8.0.30 195190 username majidsarmast 195190 mac 195190 bytes_out 0 195190 bytes_in 0 195190 station_ip 86.57.82.36 195190 port 537 195190 unique_id port 195194 username malekpoir 195194 mac 195194 bytes_out 788988 195194 bytes_in 12461682 195194 station_ip 5.120.140.129 195194 port 541 195194 unique_id port 195194 remote_ip 10.8.0.18 195196 username saeeddamghani 195196 mac 195196 bytes_out 0 195196 bytes_in 0 195196 station_ip 217.60.175.206 195196 port 542 195196 unique_id port 195196 remote_ip 10.8.0.174 195198 username malekpoir 195198 mac 195198 bytes_out 2105 195198 bytes_in 7649 195198 station_ip 5.120.140.129 195198 port 541 195198 unique_id port 195198 remote_ip 10.8.0.18 195207 username motamedi9772 195207 kill_reason Another user logged on this global unique id 195207 mac 195207 bytes_out 0 195207 bytes_in 0 195207 station_ip 83.123.195.173 195207 port 539 195207 unique_id port 195207 remote_ip 10.8.0.154 195214 username saeeddamghani 195214 mac 195214 bytes_out 48056 195214 bytes_in 116331 195214 station_ip 217.60.175.206 195214 port 508 195214 unique_id port 195214 remote_ip 10.8.0.174 195215 username morteza4424 195215 mac 195215 bytes_out 51705 195215 bytes_in 203636 195215 station_ip 83.122.94.46 195215 port 508 195215 unique_id port 195215 remote_ip 10.8.0.206 195217 username nilufarrajaei 195217 mac 195217 bytes_out 18749553 195217 bytes_in 1877177 195217 station_ip 66.79.113.28 195217 port 542 195217 unique_id port 195217 remote_ip 10.8.0.194 195221 username zahra1101 195221 mac 195221 bytes_out 5125 195221 bytes_in 7122 195221 station_ip 5.119.238.142 195221 port 525 195221 unique_id port 195221 remote_ip 10.8.0.30 195223 username saeeddamghani 195223 mac 195179 remote_ip 10.8.0.30 195185 username farhad3 195185 mac 195185 bytes_out 4462190 195185 bytes_in 43851378 195185 station_ip 5.119.232.249 195185 port 546 195185 unique_id port 195185 remote_ip 10.8.0.222 195191 username saeeddamghani 195191 mac 195191 bytes_out 3130658 195191 bytes_in 21392395 195191 station_ip 217.60.175.206 195191 port 530 195191 unique_id port 195191 remote_ip 10.8.0.174 195193 username sekonji0496 195193 mac 195193 bytes_out 9434 195193 bytes_in 10353 195193 station_ip 37.129.132.190 195193 port 542 195193 unique_id port 195193 remote_ip 10.8.0.62 195195 username khademi 195195 kill_reason Another user logged on this global unique id 195195 mac 195195 bytes_out 0 195195 bytes_in 0 195195 station_ip 83.123.99.220 195195 port 520 195195 unique_id port 195201 username zahra1101 195201 mac 195201 bytes_out 4935 195201 bytes_in 5342 195201 station_ip 5.119.238.142 195201 port 541 195201 unique_id port 195201 remote_ip 10.8.0.30 195205 username saeeddamghani 195205 mac 195205 bytes_out 0 195205 bytes_in 0 195205 station_ip 217.60.175.206 195205 port 544 195205 unique_id port 195205 remote_ip 10.8.0.174 195209 username khademi 195209 kill_reason Another user logged on this global unique id 195209 mac 195209 bytes_out 0 195209 bytes_in 0 195209 station_ip 83.123.99.220 195209 port 520 195209 unique_id port 195211 username farhad3 195211 mac 195211 bytes_out 221153 195211 bytes_in 661088 195211 station_ip 5.119.232.249 195211 port 544 195211 unique_id port 195211 remote_ip 10.8.0.222 195212 username meghdad1616 195212 mac 195212 bytes_out 188192 195212 bytes_in 639506 195212 station_ip 5.120.168.218 195212 port 530 195212 unique_id port 195212 remote_ip 10.8.0.230 195216 username motamedi9772 195216 mac 195216 bytes_out 0 195216 bytes_in 0 195216 station_ip 83.123.195.173 195216 port 539 195216 unique_id port 195219 username zahra1101 195219 mac 195219 bytes_out 10486 195219 bytes_in 11089 195219 station_ip 5.119.238.142 195219 port 543 195219 unique_id port 195219 remote_ip 10.8.0.30 195225 username khademi 195225 mac 195225 bytes_out 0 195225 bytes_in 0 195225 station_ip 83.123.99.220 195225 port 520 195225 unique_id port 195226 username hosseine 195226 mac 195226 bytes_out 0 195226 bytes_in 0 195226 station_ip 37.129.187.71 195226 port 535 195226 unique_id port 195230 username saeeddamghani 195230 mac 195230 bytes_out 64144 195230 bytes_in 384162 195230 station_ip 217.60.175.206 195230 port 530 195230 unique_id port 195230 remote_ip 10.8.0.174 195235 username kalantary6037 195235 mac 195235 bytes_out 950396 195235 bytes_in 9930617 195235 station_ip 37.129.25.163 195235 port 542 195235 unique_id port 195235 remote_ip 10.8.0.50 195238 username meghdad1616 195238 mac 195238 bytes_out 429556 195238 bytes_in 4868831 195238 station_ip 5.120.168.218 195238 port 539 195238 unique_id port 195238 remote_ip 10.8.0.230 195239 username soleymani5056 195239 mac 195239 bytes_out 112325 195239 bytes_in 829543 195239 station_ip 5.119.206.121 195239 port 530 195239 unique_id port 195239 remote_ip 10.8.0.226 195241 username meghdad1616 195241 mac 195241 bytes_out 2819 195241 bytes_in 5181 195241 station_ip 5.120.168.218 195241 port 520 195241 unique_id port 195241 remote_ip 10.8.0.230 195245 username nilufarrajaei 195245 mac 195245 bytes_out 246350 195245 bytes_in 881658 195245 station_ip 113.203.99.186 195245 port 530 195245 unique_id port 195245 remote_ip 10.8.0.194 195250 username mammad 195197 mac 195197 bytes_out 0 195197 bytes_in 0 195197 station_ip 37.129.187.71 195197 port 535 195197 unique_id port 195199 username kalantary6037 195199 kill_reason Another user logged on this global unique id 195199 mac 195199 bytes_out 0 195199 bytes_in 0 195199 station_ip 37.129.29.247 195199 port 508 195199 unique_id port 195199 remote_ip 10.8.0.50 195200 username farhad3 195200 mac 195200 bytes_out 495776 195200 bytes_in 1151941 195200 station_ip 5.119.232.249 195200 port 530 195200 unique_id port 195200 remote_ip 10.8.0.222 195202 username saeeddamghani 195202 mac 195202 bytes_out 0 195202 bytes_in 0 195202 station_ip 217.60.175.206 195202 port 543 195202 unique_id port 195202 remote_ip 10.8.0.174 195203 username kalantary6037 195203 mac 195203 bytes_out 0 195203 bytes_in 0 195203 station_ip 37.129.29.247 195203 port 508 195203 unique_id port 195204 username teymori5660 195204 mac 195204 bytes_out 277821 195204 bytes_in 3238214 195204 station_ip 5.119.218.233 195204 port 543 195204 unique_id port 195204 remote_ip 10.8.0.130 195206 username zahra1101 195206 mac 195206 bytes_out 13348 195206 bytes_in 16379 195206 station_ip 5.119.238.142 195206 port 542 195206 unique_id port 195206 remote_ip 10.8.0.30 195208 username alirezazadeh 195208 unique_id port 195208 terminate_cause Lost-Carrier 195208 bytes_out 1113817 195208 bytes_in 21061436 195208 station_ip 5.120.52.178 195208 port 15729397 195208 nas_port_type Virtual 195208 remote_ip 5.5.5.247 195210 username nekheei 195210 mac 195210 bytes_out 0 195210 bytes_in 0 195210 station_ip 5.119.135.26 195210 port 543 195210 unique_id port 195210 remote_ip 10.8.0.46 195213 username mansour 195213 mac 195213 bytes_out 1352865 195213 bytes_in 16449561 195213 station_ip 5.202.61.73 195213 port 508 195213 unique_id port 195213 remote_ip 10.8.0.10 195218 username godarzi 195218 mac 195218 bytes_out 0 195218 bytes_in 0 195218 station_ip 45.84.157.190 195218 port 519 195218 unique_id port 195220 username hamid1430 195220 mac 195220 bytes_out 0 195220 bytes_in 0 195220 station_ip 83.122.181.184 195220 port 525 195220 unique_id port 195222 username godarzi 195222 mac 195222 bytes_out 52281 195222 bytes_in 142344 195222 station_ip 45.84.157.190 195222 port 530 195222 unique_id port 195222 remote_ip 10.8.0.38 195224 username mostafa_es78 195224 kill_reason Another user logged on this global unique id 195224 mac 195224 bytes_out 0 195224 bytes_in 0 195224 station_ip 83.122.7.228 195224 port 541 195224 unique_id port 195224 remote_ip 10.8.0.34 195227 username zahra1101 195227 mac 195227 bytes_out 0 195227 bytes_in 0 195227 station_ip 5.119.238.142 195227 port 535 195227 unique_id port 195227 remote_ip 10.8.0.30 195231 username morteza4424 195231 mac 195231 bytes_out 390604 195231 bytes_in 2095088 195231 station_ip 83.122.94.46 195231 port 542 195231 unique_id port 195231 remote_ip 10.8.0.206 195232 username milan 195232 kill_reason Another user logged on this global unique id 195232 mac 195232 bytes_out 0 195232 bytes_in 0 195232 station_ip 5.119.23.34 195232 port 460 195232 unique_id port 195233 username saeeddamghani 195233 mac 195233 bytes_out 133035 195233 bytes_in 104368 195233 station_ip 5.215.24.17 195233 port 530 195233 unique_id port 195233 remote_ip 10.8.0.174 195234 username khademi 195234 mac 195234 bytes_out 136731 195234 bytes_in 872933 195234 station_ip 37.129.119.126 195234 port 520 195234 unique_id port 195234 remote_ip 10.8.0.14 195236 username zahra1101 195223 bytes_out 0 195223 bytes_in 0 195223 station_ip 217.60.175.206 195223 port 525 195223 unique_id port 195223 remote_ip 10.8.0.174 195228 username kalantary6037 195228 mac 195228 bytes_out 850342 195228 bytes_in 8706048 195228 station_ip 37.129.25.163 195228 port 530 195228 unique_id port 195228 remote_ip 10.8.0.50 195229 username meghdad1616 195229 mac 195229 bytes_out 57100 195229 bytes_in 129329 195229 station_ip 5.120.168.218 195229 port 539 195229 unique_id port 195229 remote_ip 10.8.0.230 195237 username nilufarrajaei 195237 mac 195237 bytes_out 2831948 195237 bytes_in 664671 195237 station_ip 66.79.113.28 195237 port 520 195237 unique_id port 195237 remote_ip 10.8.0.194 195242 username zahra1101 195242 mac 195242 bytes_out 0 195242 bytes_in 0 195242 station_ip 5.119.238.142 195242 port 460 195242 unique_id port 195242 remote_ip 10.8.0.30 195243 username motamedi9772 195243 kill_reason Another user logged on this global unique id 195243 mac 195243 bytes_out 0 195243 bytes_in 0 195243 station_ip 83.123.195.173 195243 port 535 195243 unique_id port 195243 remote_ip 10.8.0.154 195246 username farhad3 195246 mac 195246 bytes_out 5390287 195246 bytes_in 30927110 195246 station_ip 5.119.232.249 195246 port 544 195246 unique_id port 195246 remote_ip 10.8.0.222 195247 username meghdad1616 195247 mac 195247 bytes_out 12285 195247 bytes_in 28240 195247 station_ip 5.120.168.218 195247 port 520 195247 unique_id port 195247 remote_ip 10.8.0.230 195248 username rashidi4690 195248 mac 195248 bytes_out 5226316 195248 bytes_in 36716340 195248 station_ip 5.119.44.17 195248 port 545 195248 unique_id port 195248 remote_ip 10.8.0.242 195249 username khalili2 195249 mac 195249 bytes_out 470905 195249 bytes_in 4958301 195249 station_ip 5.119.97.65 195249 port 520 195249 unique_id port 195249 remote_ip 10.8.0.190 195255 username kharazmi2920 195255 mac 195255 bytes_out 7482 195255 bytes_in 16679 195255 station_ip 37.129.27.53 195255 port 520 195255 unique_id port 195255 remote_ip 10.8.0.22 195256 username saeeddamghani 195256 mac 195256 bytes_out 0 195256 bytes_in 0 195256 station_ip 217.60.175.206 195256 port 520 195256 unique_id port 195256 remote_ip 10.8.0.174 195257 username saeeddamghani 195257 mac 195257 bytes_out 0 195257 bytes_in 0 195257 station_ip 217.60.175.206 195257 port 520 195257 unique_id port 195257 remote_ip 10.8.0.174 195262 username meghdad1616 195262 mac 195262 bytes_out 13285 195262 bytes_in 18281 195262 station_ip 5.120.168.218 195262 port 530 195262 unique_id port 195262 remote_ip 10.8.0.230 195264 username aminvpn 195264 unique_id port 195264 terminate_cause User-Request 195264 bytes_out 140293 195264 bytes_in 1150933 195264 station_ip 5.120.181.124 195264 port 15729407 195264 nas_port_type Virtual 195264 remote_ip 5.5.5.248 195272 username zahra1101 195272 mac 195272 bytes_out 0 195272 bytes_in 0 195272 station_ip 5.119.238.142 195272 port 520 195272 unique_id port 195272 remote_ip 10.8.0.30 195277 username saeeddamghani 195277 mac 195277 bytes_out 0 195277 bytes_in 0 195277 station_ip 217.60.175.206 195277 port 530 195277 unique_id port 195277 remote_ip 10.8.0.174 195281 username kharazmi2920 195281 mac 195281 bytes_out 572159 195281 bytes_in 1853562 195281 station_ip 37.129.27.53 195281 port 541 195281 unique_id port 195281 remote_ip 10.8.0.22 195286 username zahra1101 195286 mac 195286 bytes_out 0 195286 bytes_in 0 195286 station_ip 5.119.238.142 195286 port 535 195286 unique_id port 195236 mac 195236 bytes_out 0 195236 bytes_in 0 195236 station_ip 5.119.238.142 195236 port 530 195236 unique_id port 195236 remote_ip 10.8.0.30 195240 username milan 195240 mac 195240 bytes_out 0 195240 bytes_in 0 195240 station_ip 5.119.23.34 195240 port 460 195240 unique_id port 195244 username zahra1101 195244 mac 195244 bytes_out 0 195244 bytes_in 0 195244 station_ip 5.119.238.142 195244 port 460 195244 unique_id port 195244 remote_ip 10.8.0.30 195251 username mammad 195251 unique_id port 195251 terminate_cause User-Request 195251 bytes_out 6042 195251 bytes_in 116 195251 station_ip 5.233.79.229 195251 port 15729405 195251 nas_port_type Virtual 195251 remote_ip 5.5.5.1 195253 username kharazmi2920 195253 mac 195253 bytes_out 3480374 195253 bytes_in 38197837 195253 station_ip 37.129.27.53 195253 port 525 195253 unique_id port 195253 remote_ip 10.8.0.22 195258 username mostafa_es78 195258 mac 195258 bytes_out 2194447 195258 bytes_in 1830131 195258 station_ip 83.122.7.228 195258 port 525 195258 unique_id port 195258 remote_ip 10.8.0.34 195260 username rashidi4690 195260 mac 195260 bytes_out 49014 195260 bytes_in 69909 195260 station_ip 5.119.44.17 195260 port 520 195260 unique_id port 195260 remote_ip 10.8.0.242 195263 username nilufarrajaei 195263 mac 195263 bytes_out 2441201 195263 bytes_in 5936727 195263 station_ip 66.79.113.28 195263 port 460 195263 unique_id port 195263 remote_ip 10.8.0.194 195265 username jafari 195265 mac 195265 bytes_out 389482 195265 bytes_in 2808296 195265 station_ip 5.200.103.63 195265 port 543 195265 unique_id port 195265 remote_ip 10.8.0.178 195266 username saeeddamghani 195266 mac 195266 bytes_out 0 195266 bytes_in 0 195266 station_ip 217.60.175.206 195266 port 460 195266 unique_id port 195266 remote_ip 10.8.0.174 195268 username farhad3 195268 mac 195268 bytes_out 400554 195268 bytes_in 1357034 195268 station_ip 5.119.232.249 195268 port 520 195268 unique_id port 195268 remote_ip 10.8.0.222 195274 username ahmadi1 195274 mac 195274 bytes_out 71658 195274 bytes_in 283780 195274 station_ip 37.129.120.0 195274 port 525 195274 unique_id port 195274 remote_ip 10.8.0.94 195279 username saeeddamghani 195279 mac 195279 bytes_out 0 195279 bytes_in 0 195279 station_ip 217.60.175.206 195279 port 525 195279 unique_id port 195279 remote_ip 10.8.0.174 195283 username mammad 195283 unique_id port 195283 terminate_cause User-Request 195283 bytes_out 12276 195283 bytes_in 116 195283 station_ip 5.233.79.229 195283 port 15729414 195283 nas_port_type Virtual 195283 remote_ip 5.5.5.1 195284 username farhad3 195284 mac 195284 bytes_out 2914800 195284 bytes_in 22010069 195284 station_ip 5.119.232.249 195284 port 460 195284 unique_id port 195284 remote_ip 10.8.0.222 195285 username farhad3 195285 mac 195285 bytes_out 218814 195285 bytes_in 882348 195285 station_ip 5.119.232.249 195285 port 460 195285 unique_id port 195285 remote_ip 10.8.0.222 195288 username nekheei 195288 kill_reason Another user logged on this global unique id 195288 mac 195288 bytes_out 0 195288 bytes_in 0 195288 station_ip 5.119.135.26 195288 port 460 195288 unique_id port 195293 username jafari 195293 mac 195293 bytes_out 6508734 195293 bytes_in 48027014 195293 station_ip 5.200.103.63 195293 port 520 195293 unique_id port 195293 remote_ip 10.8.0.178 195294 username meghdad1616 195294 mac 195294 bytes_out 7655 195294 bytes_in 11842 195294 station_ip 5.120.168.218 195294 port 520 195294 unique_id port 195250 unique_id port 195250 terminate_cause User-Request 195250 bytes_out 20766 195250 bytes_in 116 195250 station_ip 5.233.79.229 195250 port 15729404 195250 nas_port_type Virtual 195250 remote_ip 5.5.5.1 195252 username mammad 195252 unique_id port 195252 terminate_cause User-Request 195252 bytes_out 13404 195252 bytes_in 116 195252 station_ip 5.233.79.229 195252 port 15729406 195252 nas_port_type Virtual 195252 remote_ip 5.5.5.1 195254 username mostafa_es78 195254 mac 195254 bytes_out 0 195254 bytes_in 0 195254 station_ip 83.122.7.228 195254 port 541 195254 unique_id port 195259 username farhad3 195259 mac 195259 bytes_out 833979 195259 bytes_in 2754797 195259 station_ip 5.119.232.249 195259 port 539 195259 unique_id port 195259 remote_ip 10.8.0.222 195261 username motamedi9772 195261 kill_reason Another user logged on this global unique id 195261 mac 195261 bytes_out 0 195261 bytes_in 0 195261 station_ip 83.123.195.173 195261 port 535 195261 unique_id port 195267 username saeeddamghani 195267 mac 195267 bytes_out 0 195267 bytes_in 0 195267 station_ip 217.60.175.206 195267 port 460 195267 unique_id port 195267 remote_ip 10.8.0.174 195269 username zahra1101 195269 mac 195269 bytes_out 0 195269 bytes_in 0 195269 station_ip 5.119.238.142 195269 port 460 195269 unique_id port 195269 remote_ip 10.8.0.30 195270 username khalili2 195270 kill_reason Another user logged on this global unique id 195270 mac 195270 bytes_out 0 195270 bytes_in 0 195270 station_ip 5.119.97.65 195270 port 542 195270 unique_id port 195270 remote_ip 10.8.0.190 195271 username saeeddamghani 195271 mac 195271 bytes_out 0 195271 bytes_in 0 195271 station_ip 217.60.175.206 195271 port 525 195271 unique_id port 195271 remote_ip 10.8.0.174 195273 username hatami 195273 mac 195273 bytes_out 1068505 195273 bytes_in 9898832 195273 station_ip 151.235.68.65 195273 port 537 195273 unique_id port 195273 remote_ip 10.8.0.98 195275 username saeeddamghani 195275 mac 195275 bytes_out 0 195275 bytes_in 0 195275 station_ip 217.60.175.206 195275 port 530 195275 unique_id port 195275 remote_ip 10.8.0.174 195276 username zahra1101 195276 mac 195276 bytes_out 0 195276 bytes_in 0 195276 station_ip 5.119.238.142 195276 port 525 195276 unique_id port 195276 remote_ip 10.8.0.30 195278 username hajghani 195278 mac 195278 bytes_out 1656 195278 bytes_in 4811 195278 station_ip 37.137.238.186 195278 port 525 195278 unique_id port 195278 remote_ip 10.8.0.106 195280 username hajghani 195280 kill_reason Maximum check online fails reached 195280 mac 195280 bytes_out 0 195280 bytes_in 0 195280 station_ip 37.137.238.186 195280 port 530 195280 unique_id port 195282 username motamedi9772 195282 mac 195282 bytes_out 0 195282 bytes_in 0 195282 station_ip 83.123.195.173 195282 port 535 195282 unique_id port 195287 username nekheei 195287 kill_reason Another user logged on this global unique id 195287 mac 195287 bytes_out 0 195287 bytes_in 0 195287 station_ip 5.119.135.26 195287 port 460 195287 unique_id port 195290 username farhad3 195290 mac 195290 bytes_out 518086 195290 bytes_in 2219942 195290 station_ip 5.119.232.249 195290 port 460 195290 unique_id port 195290 remote_ip 10.8.0.222 195295 username zahra1101 195295 mac 195295 bytes_out 0 195295 bytes_in 0 195295 station_ip 5.119.238.142 195295 port 541 195295 unique_id port 195295 remote_ip 10.8.0.30 195297 username yazdani6029 195297 mac 195297 bytes_out 543287 195297 bytes_in 2151376 195297 station_ip 83.123.37.98 195297 port 539 195286 remote_ip 10.8.0.30 195289 username mansour 195289 mac 195289 bytes_out 0 195289 bytes_in 0 195289 station_ip 5.202.61.73 195289 port 460 195289 unique_id port 195289 remote_ip 10.8.0.10 195291 username akbari0070 195291 kill_reason Another user logged on this global unique id 195291 mac 195291 bytes_out 0 195291 bytes_in 0 195291 station_ip 37.129.79.219 195291 port 525 195291 unique_id port 195291 remote_ip 10.8.0.166 195292 username zahra1101 195292 mac 195292 bytes_out 0 195292 bytes_in 0 195292 station_ip 5.119.238.142 195292 port 539 195292 unique_id port 195292 remote_ip 10.8.0.30 195299 username farhad3 195299 kill_reason Another user logged on this global unique id 195299 mac 195299 bytes_out 0 195299 bytes_in 0 195299 station_ip 5.119.232.249 195299 port 535 195299 unique_id port 195299 remote_ip 10.8.0.222 195300 username hadibarzegar 195300 kill_reason Another user logged on this global unique id 195300 mac 195300 bytes_out 0 195300 bytes_in 0 195300 station_ip 83.123.103.237 195300 port 460 195300 unique_id port 195300 remote_ip 10.8.0.210 195305 username zahra1101 195305 mac 195305 bytes_out 0 195305 bytes_in 0 195305 station_ip 5.119.238.142 195305 port 525 195305 unique_id port 195305 remote_ip 10.8.0.30 195306 username hamid1430 195306 kill_reason Another user logged on this global unique id 195306 mac 195306 bytes_out 0 195306 bytes_in 0 195306 station_ip 83.122.181.184 195306 port 508 195306 unique_id port 195306 remote_ip 10.8.0.90 195310 username saeeddamghani 195310 mac 195310 bytes_out 2383358 195310 bytes_in 27108355 195310 station_ip 217.60.175.206 195310 port 523 195310 unique_id port 195310 remote_ip 10.8.0.174 195314 username hadibarzegar 195314 kill_reason Another user logged on this global unique id 195314 mac 195314 bytes_out 0 195314 bytes_in 0 195314 station_ip 83.123.103.237 195314 port 460 195314 unique_id port 195318 username zahra1101 195318 mac 195318 bytes_out 0 195318 bytes_in 0 195318 station_ip 5.119.238.142 195318 port 539 195318 unique_id port 195318 remote_ip 10.8.0.30 195319 username mammad 195319 unique_id port 195319 terminate_cause User-Request 195319 bytes_out 4275 195319 bytes_in 116 195319 station_ip 5.233.79.229 195319 port 15729415 195319 nas_port_type Virtual 195319 remote_ip 5.5.5.1 195322 username hashtadani5 195322 mac 195322 bytes_out 0 195322 bytes_in 0 195322 station_ip 37.129.127.216 195322 port 520 195322 unique_id port 195322 remote_ip 10.8.0.218 195324 username hashtadani5 195324 mac 195324 bytes_out 0 195324 bytes_in 0 195324 station_ip 37.129.127.216 195324 port 520 195324 unique_id port 195324 remote_ip 10.8.0.218 195328 username zahra1101 195328 kill_reason Maximum check online fails reached 195328 mac 195328 bytes_out 0 195328 bytes_in 0 195328 station_ip 5.119.238.142 195328 port 435 195328 unique_id port 195331 username meghdad1616 195331 kill_reason Maximum number of concurrent logins reached 195331 mac 195331 bytes_out 0 195331 bytes_in 0 195331 station_ip 5.120.168.218 195331 port 543 195331 unique_id port 195333 username meghdad1616 195333 mac 195333 bytes_out 0 195333 bytes_in 0 195333 station_ip 5.120.168.218 195333 port 541 195333 unique_id port 195333 remote_ip 10.8.0.230 195337 username shahruz 195337 mac 195337 bytes_out 17984 195337 bytes_in 52027 195337 station_ip 83.123.95.59 195337 port 460 195337 unique_id port 195337 remote_ip 10.8.0.74 195338 username houshang 195338 mac 195338 bytes_out 274330 195338 bytes_in 968351 195338 station_ip 5.119.107.67 195338 port 535 195338 unique_id port 195294 remote_ip 10.8.0.230 195296 username meghdad1616 195296 mac 195296 bytes_out 0 195296 bytes_in 0 195296 station_ip 5.120.168.218 195296 port 520 195296 unique_id port 195296 remote_ip 10.8.0.230 195302 username zahra1101 195302 mac 195302 bytes_out 0 195302 bytes_in 0 195302 station_ip 5.119.238.142 195302 port 523 195302 unique_id port 195302 remote_ip 10.8.0.30 195303 username akbari0070 195303 mac 195303 bytes_out 0 195303 bytes_in 0 195303 station_ip 37.129.79.219 195303 port 525 195303 unique_id port 195308 username zahra1101 195308 mac 195308 bytes_out 0 195308 bytes_in 0 195308 station_ip 5.119.238.142 195308 port 525 195308 unique_id port 195308 remote_ip 10.8.0.30 195309 username meghdad1616 195309 kill_reason Another user logged on this global unique id 195309 mac 195309 bytes_out 0 195309 bytes_in 0 195309 station_ip 5.120.168.218 195309 port 520 195309 unique_id port 195309 remote_ip 10.8.0.230 195316 username hadibarzegar 195316 kill_reason Another user logged on this global unique id 195316 mac 195316 bytes_out 0 195316 bytes_in 0 195316 station_ip 83.123.103.237 195316 port 460 195316 unique_id port 195321 username hashtadani5 195321 mac 195321 bytes_out 1974352 195321 bytes_in 19263187 195321 station_ip 37.129.127.216 195321 port 535 195321 unique_id port 195321 remote_ip 10.8.0.218 195323 username hadibarzegar 195323 kill_reason Another user logged on this global unique id 195323 mac 195323 bytes_out 0 195323 bytes_in 0 195323 station_ip 83.123.103.237 195323 port 460 195323 unique_id port 195325 username sabaghnezhad 195325 mac 195325 bytes_out 4158038 195325 bytes_in 30038569 195325 station_ip 83.123.107.15 195325 port 435 195325 unique_id port 195325 remote_ip 10.8.0.66 195329 username meghdad1616 195329 mac 195329 bytes_out 0 195329 bytes_in 0 195329 station_ip 5.120.168.218 195329 port 535 195329 unique_id port 195329 remote_ip 10.8.0.230 195334 username meghdad1616 195334 kill_reason Maximum check online fails reached 195334 mac 195334 bytes_out 0 195334 bytes_in 0 195334 station_ip 5.120.168.218 195334 port 539 195334 unique_id port 195335 username hadibarzegar 195335 mac 195335 bytes_out 0 195335 bytes_in 0 195335 station_ip 83.123.103.237 195335 port 460 195335 unique_id port 195336 username shahruz 195336 mac 195336 bytes_out 2879847 195336 bytes_in 26526677 195336 station_ip 5.120.93.94 195336 port 537 195336 unique_id port 195336 remote_ip 10.8.0.74 195349 username hashtadani5 195349 mac 195349 bytes_out 0 195349 bytes_in 0 195349 station_ip 37.129.127.216 195349 port 460 195349 unique_id port 195349 remote_ip 10.8.0.218 195351 username hashtadani5 195351 mac 195351 bytes_out 0 195351 bytes_in 0 195351 station_ip 37.129.127.216 195351 port 460 195351 unique_id port 195351 remote_ip 10.8.0.218 195355 username hashtadani5 195355 mac 195355 bytes_out 0 195355 bytes_in 0 195355 station_ip 37.129.127.216 195355 port 460 195355 unique_id port 195355 remote_ip 10.8.0.218 195356 username hashtadani5 195356 mac 195356 bytes_out 0 195356 bytes_in 0 195356 station_ip 37.129.127.216 195356 port 460 195356 unique_id port 195356 remote_ip 10.8.0.218 195357 username hashtadani5 195357 mac 195357 bytes_out 0 195357 bytes_in 0 195357 station_ip 37.129.127.216 195357 port 460 195357 unique_id port 195357 remote_ip 10.8.0.218 195365 username zahra1101 195365 mac 195365 bytes_out 0 195365 bytes_in 0 195365 station_ip 5.119.238.142 195365 port 460 195365 unique_id port 195297 unique_id port 195297 remote_ip 10.8.0.234 195298 username dortaj3792 195298 mac 195298 bytes_out 7778806 195298 bytes_in 30672912 195298 station_ip 5.119.136.18 195298 port 523 195298 unique_id port 195298 remote_ip 10.8.0.102 195301 username akbari0070 195301 kill_reason Another user logged on this global unique id 195301 mac 195301 bytes_out 0 195301 bytes_in 0 195301 station_ip 37.129.79.219 195301 port 525 195301 unique_id port 195304 username farhad3 195304 kill_reason Another user logged on this global unique id 195304 mac 195304 bytes_out 0 195304 bytes_in 0 195304 station_ip 5.119.232.249 195304 port 535 195304 unique_id port 195307 username hajghani 195307 mac 195307 bytes_out 3645795 195307 bytes_in 41440354 195307 station_ip 37.137.238.186 195307 port 537 195307 unique_id port 195307 remote_ip 10.8.0.106 195311 username hadibarzegar 195311 kill_reason Another user logged on this global unique id 195311 mac 195311 bytes_out 0 195311 bytes_in 0 195311 station_ip 83.123.103.237 195311 port 460 195311 unique_id port 195312 username farhad3 195312 kill_reason Another user logged on this global unique id 195312 mac 195312 bytes_out 0 195312 bytes_in 0 195312 station_ip 5.119.232.249 195312 port 535 195312 unique_id port 195313 username farhad3 195313 mac 195313 bytes_out 0 195313 bytes_in 0 195313 station_ip 5.119.232.249 195313 port 535 195313 unique_id port 195315 username meghdad1616 195315 kill_reason Another user logged on this global unique id 195315 mac 195315 bytes_out 0 195315 bytes_in 0 195315 station_ip 5.120.168.218 195315 port 520 195315 unique_id port 195317 username meghdad1616 195317 kill_reason Another user logged on this global unique id 195317 mac 195317 bytes_out 0 195317 bytes_in 0 195317 station_ip 5.120.168.218 195317 port 520 195317 unique_id port 195320 username meghdad1616 195320 mac 195320 bytes_out 0 195320 bytes_in 0 195320 station_ip 5.120.168.218 195320 port 520 195320 unique_id port 195326 username meghdad1616 195326 mac 195326 bytes_out 0 195326 bytes_in 0 195326 station_ip 5.120.168.218 195326 port 435 195326 unique_id port 195326 remote_ip 10.8.0.230 195327 username zahra1101 195327 mac 195327 bytes_out 0 195327 bytes_in 0 195327 station_ip 5.119.238.142 195327 port 435 195327 unique_id port 195327 remote_ip 10.8.0.30 195330 username hashtadani5 195330 kill_reason Another user logged on this global unique id 195330 mac 195330 bytes_out 0 195330 bytes_in 0 195330 station_ip 37.129.127.216 195330 port 520 195330 unique_id port 195330 remote_ip 10.8.0.218 195332 username zahra1101 195332 mac 195332 bytes_out 0 195332 bytes_in 0 195332 station_ip 5.119.238.142 195332 port 543 195332 unique_id port 195332 remote_ip 10.8.0.30 195339 username hashtadani5 195339 kill_reason Another user logged on this global unique id 195339 mac 195339 bytes_out 0 195339 bytes_in 0 195339 station_ip 37.129.127.216 195339 port 520 195339 unique_id port 195344 username hashtadani5 195344 mac 195344 bytes_out 0 195344 bytes_in 0 195344 station_ip 37.129.127.216 195344 port 460 195344 unique_id port 195344 remote_ip 10.8.0.218 195345 username hashtadani5 195345 mac 195345 bytes_out 0 195345 bytes_in 0 195345 station_ip 37.129.127.216 195345 port 460 195345 unique_id port 195345 remote_ip 10.8.0.218 195346 username hashtadani5 195346 mac 195346 bytes_out 0 195346 bytes_in 0 195346 station_ip 37.129.127.216 195346 port 460 195346 unique_id port 195346 remote_ip 10.8.0.218 195348 username hashtadani5 195348 mac 195348 bytes_out 0 195348 bytes_in 0 195338 remote_ip 10.8.0.82 195340 username farhad3 195340 mac 195340 bytes_out 6282064 195340 bytes_in 40748412 195340 station_ip 5.119.232.249 195340 port 523 195340 unique_id port 195340 remote_ip 10.8.0.222 195341 username shahruz 195341 mac 195341 bytes_out 2570731 195341 bytes_in 21113345 195341 station_ip 5.120.61.13 195341 port 460 195341 unique_id port 195341 remote_ip 10.8.0.74 195342 username zahra1101 195342 mac 195342 bytes_out 2273 195342 bytes_in 5487 195342 station_ip 5.119.238.142 195342 port 460 195342 unique_id port 195342 remote_ip 10.8.0.30 195343 username hashtadani5 195343 mac 195343 bytes_out 0 195343 bytes_in 0 195343 station_ip 37.129.127.216 195343 port 520 195343 unique_id port 195347 username hashtadani5 195347 mac 195347 bytes_out 0 195347 bytes_in 0 195347 station_ip 37.129.127.216 195347 port 460 195347 unique_id port 195347 remote_ip 10.8.0.218 195350 username hashtadani5 195350 mac 195350 bytes_out 0 195350 bytes_in 0 195350 station_ip 37.129.127.216 195350 port 460 195350 unique_id port 195350 remote_ip 10.8.0.218 195352 username hashtadani5 195352 mac 195352 bytes_out 0 195352 bytes_in 0 195352 station_ip 37.129.127.216 195352 port 460 195352 unique_id port 195352 remote_ip 10.8.0.218 195353 username hashtadani5 195353 mac 195353 bytes_out 0 195353 bytes_in 0 195353 station_ip 37.129.127.216 195353 port 460 195353 unique_id port 195353 remote_ip 10.8.0.218 195354 username hashtadani5 195354 mac 195354 bytes_out 0 195354 bytes_in 0 195354 station_ip 37.129.127.216 195354 port 460 195354 unique_id port 195354 remote_ip 10.8.0.218 195358 username hashtadani5 195358 mac 195358 bytes_out 0 195358 bytes_in 0 195358 station_ip 37.129.127.216 195358 port 460 195358 unique_id port 195358 remote_ip 10.8.0.218 195359 username hashtadani5 195359 mac 195359 bytes_out 0 195359 bytes_in 0 195359 station_ip 37.129.127.216 195359 port 460 195359 unique_id port 195359 remote_ip 10.8.0.218 195362 username hashtadani5 195362 mac 195362 bytes_out 0 195362 bytes_in 0 195362 station_ip 37.129.127.216 195362 port 460 195362 unique_id port 195362 remote_ip 10.8.0.218 195363 username hashtadani5 195363 mac 195363 bytes_out 0 195363 bytes_in 0 195363 station_ip 37.129.127.216 195363 port 460 195363 unique_id port 195363 remote_ip 10.8.0.218 195367 username hashtadani5 195367 kill_reason Maximum check online fails reached 195367 mac 195367 bytes_out 0 195367 bytes_in 0 195367 station_ip 37.129.127.216 195367 port 460 195367 unique_id port 195368 username khalili2 195368 kill_reason Another user logged on this global unique id 195368 mac 195368 bytes_out 0 195368 bytes_in 0 195368 station_ip 5.119.97.65 195368 port 542 195368 unique_id port 195370 username mosi 195370 mac 195370 bytes_out 2583324 195370 bytes_in 22761740 195370 station_ip 2.184.6.78 195370 port 525 195370 unique_id port 195370 remote_ip 10.8.0.142 195373 username hamid1430 195373 mac 195373 bytes_out 0 195373 bytes_in 0 195373 station_ip 83.122.181.184 195373 port 508 195373 unique_id port 195382 username hashtadani5 195382 mac 195382 bytes_out 0 195382 bytes_in 0 195382 station_ip 37.129.127.216 195382 port 520 195382 unique_id port 195382 remote_ip 10.8.0.218 195383 username zahra1101 195383 mac 195383 bytes_out 0 195383 bytes_in 0 195383 station_ip 5.119.238.142 195383 port 520 195383 unique_id port 195383 remote_ip 10.8.0.30 195384 username hashtadani5 195384 mac 195348 station_ip 37.129.127.216 195348 port 460 195348 unique_id port 195348 remote_ip 10.8.0.218 195360 username hashtadani5 195360 mac 195360 bytes_out 0 195360 bytes_in 0 195360 station_ip 37.129.127.216 195360 port 460 195360 unique_id port 195360 remote_ip 10.8.0.218 195361 username hashtadani5 195361 mac 195361 bytes_out 0 195361 bytes_in 0 195361 station_ip 37.129.127.216 195361 port 460 195361 unique_id port 195361 remote_ip 10.8.0.218 195364 username hashtadani5 195364 mac 195364 bytes_out 0 195364 bytes_in 0 195364 station_ip 37.129.127.216 195364 port 460 195364 unique_id port 195364 remote_ip 10.8.0.218 195377 username zahra1101 195377 mac 195377 bytes_out 0 195377 bytes_in 0 195377 station_ip 5.119.238.142 195377 port 520 195377 unique_id port 195377 remote_ip 10.8.0.30 195378 username hashtadani5 195378 mac 195378 bytes_out 0 195378 bytes_in 0 195378 station_ip 37.129.127.216 195378 port 520 195378 unique_id port 195378 remote_ip 10.8.0.218 195379 username hashtadani5 195379 mac 195379 bytes_out 0 195379 bytes_in 0 195379 station_ip 37.129.127.216 195379 port 523 195379 unique_id port 195379 remote_ip 10.8.0.218 195380 username motamedi9772 195380 mac 195380 bytes_out 172364 195380 bytes_in 2886515 195380 station_ip 83.123.144.173 195380 port 520 195380 unique_id port 195380 remote_ip 10.8.0.154 195381 username hashtadani5 195381 mac 195381 bytes_out 0 195381 bytes_in 0 195381 station_ip 37.129.127.216 195381 port 520 195381 unique_id port 195381 remote_ip 10.8.0.218 195386 username hashtadani5 195386 mac 195386 bytes_out 0 195386 bytes_in 0 195386 station_ip 37.129.127.216 195386 port 520 195386 unique_id port 195386 remote_ip 10.8.0.218 195387 username hashtadani5 195387 mac 195387 bytes_out 0 195387 bytes_in 0 195387 station_ip 37.129.127.216 195387 port 520 195387 unique_id port 195387 remote_ip 10.8.0.218 195389 username hashtadani5 195389 mac 195389 bytes_out 0 195389 bytes_in 0 195389 station_ip 37.129.127.216 195389 port 520 195389 unique_id port 195389 remote_ip 10.8.0.218 195390 username hashtadani5 195390 mac 195390 bytes_out 0 195390 bytes_in 0 195390 station_ip 37.129.127.216 195390 port 520 195390 unique_id port 195390 remote_ip 10.8.0.218 195401 username hashtadani5 195401 mac 195401 bytes_out 0 195401 bytes_in 0 195401 station_ip 37.129.127.216 195401 port 523 195401 unique_id port 195401 remote_ip 10.8.0.218 195404 username hashtadani5 195404 mac 195404 bytes_out 0 195404 bytes_in 0 195404 station_ip 37.129.127.216 195404 port 523 195404 unique_id port 195404 remote_ip 10.8.0.218 195405 username zahra1101 195405 mac 195405 bytes_out 0 195405 bytes_in 0 195405 station_ip 5.119.238.142 195405 port 523 195405 unique_id port 195405 remote_ip 10.8.0.30 195407 username hashtadani5 195407 mac 195407 bytes_out 0 195407 bytes_in 0 195407 station_ip 37.129.127.216 195407 port 523 195407 unique_id port 195407 remote_ip 10.8.0.218 195409 username mostafa_es78 195409 kill_reason Another user logged on this global unique id 195409 mac 195409 bytes_out 0 195409 bytes_in 0 195409 station_ip 83.122.125.204 195409 port 520 195409 unique_id port 195410 username hashtadani5 195410 mac 195410 bytes_out 0 195410 bytes_in 0 195410 station_ip 37.129.127.216 195410 port 523 195410 unique_id port 195410 remote_ip 10.8.0.218 195415 username hosseine 195415 kill_reason Another user logged on this global unique id 195415 mac 195415 bytes_out 0 195365 remote_ip 10.8.0.30 195366 username hashtadani5 195366 mac 195366 bytes_out 0 195366 bytes_in 0 195366 station_ip 37.129.127.216 195366 port 460 195366 unique_id port 195366 remote_ip 10.8.0.218 195369 username hashtadani5 195369 mac 195369 bytes_out 0 195369 bytes_in 0 195369 station_ip 37.129.127.216 195369 port 520 195369 unique_id port 195369 remote_ip 10.8.0.218 195371 username hashtadani5 195371 mac 195371 bytes_out 0 195371 bytes_in 0 195371 station_ip 37.129.127.216 195371 port 520 195371 unique_id port 195371 remote_ip 10.8.0.218 195372 username hashtadani5 195372 mac 195372 bytes_out 0 195372 bytes_in 0 195372 station_ip 37.129.127.216 195372 port 520 195372 unique_id port 195372 remote_ip 10.8.0.218 195374 username hashtadani5 195374 mac 195374 bytes_out 0 195374 bytes_in 0 195374 station_ip 37.129.127.216 195374 port 508 195374 unique_id port 195374 remote_ip 10.8.0.218 195375 username hashtadani5 195375 mac 195375 bytes_out 0 195375 bytes_in 0 195375 station_ip 37.129.127.216 195375 port 520 195375 unique_id port 195375 remote_ip 10.8.0.218 195376 username hashtadani5 195376 mac 195376 bytes_out 0 195376 bytes_in 0 195376 station_ip 37.129.127.216 195376 port 523 195376 unique_id port 195376 remote_ip 10.8.0.218 195391 username hashtadani5 195391 mac 195391 bytes_out 0 195391 bytes_in 0 195391 station_ip 37.129.127.216 195391 port 520 195391 unique_id port 195391 remote_ip 10.8.0.218 195392 username hashtadani5 195392 mac 195392 bytes_out 0 195392 bytes_in 0 195392 station_ip 37.129.127.216 195392 port 520 195392 unique_id port 195392 remote_ip 10.8.0.218 195395 username hashtadani5 195395 mac 195395 bytes_out 0 195395 bytes_in 0 195395 station_ip 37.129.127.216 195395 port 523 195395 unique_id port 195395 remote_ip 10.8.0.218 195396 username hashtadani5 195396 mac 195396 bytes_out 0 195396 bytes_in 0 195396 station_ip 37.129.127.216 195396 port 523 195396 unique_id port 195396 remote_ip 10.8.0.218 195398 username mostafa_es78 195398 kill_reason Another user logged on this global unique id 195398 mac 195398 bytes_out 0 195398 bytes_in 0 195398 station_ip 83.122.125.204 195398 port 520 195398 unique_id port 195398 remote_ip 10.8.0.34 195402 username mostafa_es78 195402 kill_reason Another user logged on this global unique id 195402 mac 195402 bytes_out 0 195402 bytes_in 0 195402 station_ip 83.122.125.204 195402 port 520 195402 unique_id port 195403 username zahra1101 195403 mac 195403 bytes_out 0 195403 bytes_in 0 195403 station_ip 5.119.238.142 195403 port 523 195403 unique_id port 195403 remote_ip 10.8.0.30 195406 username hashtadani5 195406 mac 195406 bytes_out 0 195406 bytes_in 0 195406 station_ip 37.129.127.216 195406 port 523 195406 unique_id port 195406 remote_ip 10.8.0.218 195412 username hashtadani5 195412 mac 195412 bytes_out 0 195412 bytes_in 0 195412 station_ip 37.129.127.216 195412 port 523 195412 unique_id port 195412 remote_ip 10.8.0.218 195413 username hashtadani5 195413 mac 195413 bytes_out 0 195413 bytes_in 0 195413 station_ip 37.129.127.216 195413 port 525 195413 unique_id port 195413 remote_ip 10.8.0.218 195415 bytes_in 0 195415 station_ip 37.129.187.71 195415 port 523 195415 unique_id port 195415 remote_ip 10.8.0.54 195417 username hashtadani5 195417 mac 195417 bytes_out 0 195417 bytes_in 0 195417 station_ip 37.129.127.216 195417 port 535 195417 unique_id port 195417 remote_ip 10.8.0.218 195418 username hashtadani5 195384 bytes_out 0 195384 bytes_in 0 195384 station_ip 37.129.127.216 195384 port 520 195384 unique_id port 195384 remote_ip 10.8.0.218 195385 username hashtadani5 195385 mac 195385 bytes_out 0 195385 bytes_in 0 195385 station_ip 37.129.127.216 195385 port 520 195385 unique_id port 195385 remote_ip 10.8.0.218 195388 username hashtadani5 195388 mac 195388 bytes_out 0 195388 bytes_in 0 195388 station_ip 37.129.127.216 195388 port 520 195388 unique_id port 195388 remote_ip 10.8.0.218 195393 username hashtadani5 195393 mac 195393 bytes_out 0 195393 bytes_in 0 195393 station_ip 37.129.127.216 195393 port 520 195393 unique_id port 195393 remote_ip 10.8.0.218 195394 username hashtadani5 195394 mac 195394 bytes_out 0 195394 bytes_in 0 195394 station_ip 37.129.127.216 195394 port 523 195394 unique_id port 195394 remote_ip 10.8.0.218 195397 username hashtadani5 195397 mac 195397 bytes_out 0 195397 bytes_in 0 195397 station_ip 37.129.127.216 195397 port 523 195397 unique_id port 195397 remote_ip 10.8.0.218 195399 username hashtadani5 195399 mac 195399 bytes_out 0 195399 bytes_in 0 195399 station_ip 37.129.127.216 195399 port 523 195399 unique_id port 195399 remote_ip 10.8.0.218 195400 username hashtadani5 195400 mac 195400 bytes_out 0 195400 bytes_in 0 195400 station_ip 37.129.127.216 195400 port 523 195400 unique_id port 195400 remote_ip 10.8.0.218 195408 username hashtadani5 195408 mac 195408 bytes_out 0 195408 bytes_in 0 195408 station_ip 37.129.127.216 195408 port 523 195408 unique_id port 195408 remote_ip 10.8.0.218 195411 username hashtadani5 195411 mac 195411 bytes_out 0 195411 bytes_in 0 195411 station_ip 37.129.127.216 195411 port 523 195411 unique_id port 195411 remote_ip 10.8.0.218 195414 username hashtadani5 195414 mac 195414 bytes_out 1644 195414 bytes_in 4235 195414 station_ip 37.129.127.216 195414 port 535 195414 unique_id port 195414 remote_ip 10.8.0.218 195416 username hosseine 195416 kill_reason Another user logged on this global unique id 195416 mac 195416 bytes_out 0 195416 bytes_in 0 195416 station_ip 37.129.187.71 195416 port 523 195416 unique_id port 195418 mac 195418 bytes_out 0 195418 bytes_in 0 195418 station_ip 37.129.127.216 195418 port 535 195418 unique_id port 195418 remote_ip 10.8.0.218 195419 username hosseine 195419 kill_reason Another user logged on this global unique id 195419 mac 195419 bytes_out 0 195419 bytes_in 0 195419 station_ip 37.129.187.71 195419 port 523 195419 unique_id port 195420 username hashtadani5 195420 mac 195420 bytes_out 0 195420 bytes_in 0 195420 station_ip 37.129.127.216 195420 port 535 195420 unique_id port 195420 remote_ip 10.8.0.218 195421 username mostafa_es78 195421 mac 195421 bytes_out 0 195421 bytes_in 0 195421 station_ip 83.122.125.204 195421 port 520 195421 unique_id port 195422 username hosseine 195422 kill_reason Another user logged on this global unique id 195422 mac 195422 bytes_out 0 195422 bytes_in 0 195422 station_ip 37.129.187.71 195422 port 523 195422 unique_id port 195423 username hashtadani5 195423 mac 195423 bytes_out 0 195423 bytes_in 0 195423 station_ip 37.129.127.216 195423 port 520 195423 unique_id port 195423 remote_ip 10.8.0.218 195424 username hashtadani5 195424 mac 195424 bytes_out 0 195424 bytes_in 0 195424 station_ip 37.129.127.216 195424 port 520 195424 unique_id port 195424 remote_ip 10.8.0.218 195425 username hashtadani5 195425 mac 195425 bytes_out 0 195425 bytes_in 0 195425 station_ip 37.129.127.216 195425 port 520 195425 unique_id port 195425 remote_ip 10.8.0.218 195426 username hosseine 195426 kill_reason Another user logged on this global unique id 195426 mac 195426 bytes_out 0 195426 bytes_in 0 195426 station_ip 37.129.187.71 195426 port 523 195426 unique_id port 195437 username kalantary6037 195437 mac 195437 bytes_out 1707312 195437 bytes_in 19242437 195437 station_ip 37.129.8.67 195437 port 520 195437 unique_id port 195437 remote_ip 10.8.0.50 195442 username hashtadani5 195442 mac 195442 bytes_out 0 195442 bytes_in 0 195442 station_ip 37.129.127.216 195442 port 535 195442 unique_id port 195442 remote_ip 10.8.0.218 195445 username kalantary6037 195445 mac 195445 bytes_out 329403 195445 bytes_in 2498142 195445 station_ip 37.129.8.67 195445 port 520 195445 unique_id port 195445 remote_ip 10.8.0.50 195449 username hashtadani5 195449 mac 195449 bytes_out 0 195449 bytes_in 0 195449 station_ip 37.129.127.216 195449 port 535 195449 unique_id port 195449 remote_ip 10.8.0.218 195452 username hashtadani5 195452 mac 195452 bytes_out 0 195452 bytes_in 0 195452 station_ip 37.129.127.216 195452 port 535 195452 unique_id port 195452 remote_ip 10.8.0.218 195454 username hashtadani5 195454 mac 195454 bytes_out 0 195454 bytes_in 0 195454 station_ip 37.129.127.216 195454 port 535 195454 unique_id port 195454 remote_ip 10.8.0.218 195460 username hashtadani5 195460 mac 195460 bytes_out 2005 195460 bytes_in 4282 195460 station_ip 37.129.127.216 195460 port 520 195460 unique_id port 195460 remote_ip 10.8.0.218 195462 username mohammadjavad 195462 mac 195462 bytes_out 0 195462 bytes_in 0 195462 station_ip 83.122.45.177 195462 port 535 195462 unique_id port 195462 remote_ip 10.8.0.110 195465 username hashtadani5 195465 mac 195465 bytes_out 0 195465 bytes_in 0 195465 station_ip 37.129.127.216 195465 port 535 195465 unique_id port 195465 remote_ip 10.8.0.218 195468 username hashtadani5 195468 mac 195468 bytes_out 0 195468 bytes_in 0 195468 station_ip 37.129.127.216 195468 port 520 195468 unique_id port 195468 remote_ip 10.8.0.218 195469 username morteza4424 195469 mac 195469 bytes_out 1537221 195469 bytes_in 27090142 195469 station_ip 83.122.52.46 195469 port 535 195469 unique_id port 195469 remote_ip 10.8.0.206 195471 username mohammadjavad 195471 mac 195471 bytes_out 17237 195471 bytes_in 26587 195471 station_ip 83.122.45.177 195471 port 520 195471 unique_id port 195471 remote_ip 10.8.0.110 195475 username morteza4424 195475 mac 195475 bytes_out 0 195475 bytes_in 0 195475 station_ip 83.122.52.46 195475 port 520 195475 unique_id port 195475 remote_ip 10.8.0.206 195477 username hashtadani5 195477 mac 195477 bytes_out 0 195477 bytes_in 0 195477 station_ip 37.129.127.216 195477 port 535 195477 unique_id port 195477 remote_ip 10.8.0.218 195482 username hashtadani5 195482 mac 195482 bytes_out 0 195482 bytes_in 0 195482 station_ip 37.129.127.216 195482 port 535 195482 unique_id port 195482 remote_ip 10.8.0.218 195487 username morteza4424 195487 mac 195487 bytes_out 0 195487 bytes_in 0 195487 station_ip 83.122.52.46 195487 port 525 195487 unique_id port 195487 remote_ip 10.8.0.206 195489 username hamid.e 195489 unique_id port 195489 terminate_cause User-Request 195489 bytes_out 7932928 195489 bytes_in 190594400 195489 station_ip 37.27.26.78 195489 port 15729416 195489 nas_port_type Virtual 195489 remote_ip 5.5.5.249 195491 username hashtadani5 195491 mac 195491 bytes_out 0 195427 username hosseine 195427 mac 195427 bytes_out 0 195427 bytes_in 0 195427 station_ip 37.129.187.71 195427 port 523 195427 unique_id port 195433 username hashtadani5 195433 mac 195433 bytes_out 0 195433 bytes_in 0 195433 station_ip 37.129.127.216 195433 port 523 195433 unique_id port 195433 remote_ip 10.8.0.218 195434 username hashtadani5 195434 mac 195434 bytes_out 0 195434 bytes_in 0 195434 station_ip 37.129.127.216 195434 port 523 195434 unique_id port 195434 remote_ip 10.8.0.218 195435 username hashtadani5 195435 mac 195435 bytes_out 0 195435 bytes_in 0 195435 station_ip 37.129.127.216 195435 port 523 195435 unique_id port 195435 remote_ip 10.8.0.218 195440 username kalantary6037 195440 mac 195440 bytes_out 143748 195440 bytes_in 272441 195440 station_ip 37.129.8.67 195440 port 520 195440 unique_id port 195440 remote_ip 10.8.0.50 195444 username hashtadani5 195444 mac 195444 bytes_out 0 195444 bytes_in 0 195444 station_ip 37.129.127.216 195444 port 535 195444 unique_id port 195444 remote_ip 10.8.0.218 195446 username hashtadani5 195446 mac 195446 bytes_out 0 195446 bytes_in 0 195446 station_ip 37.129.127.216 195446 port 520 195446 unique_id port 195446 remote_ip 10.8.0.218 195450 username kalantary6037 195450 mac 195450 bytes_out 85569 195450 bytes_in 284487 195450 station_ip 37.129.8.67 195450 port 520 195450 unique_id port 195450 remote_ip 10.8.0.50 195457 username zahra1101 195457 mac 195457 bytes_out 0 195457 bytes_in 0 195457 station_ip 5.120.124.134 195457 port 520 195457 unique_id port 195457 remote_ip 10.8.0.30 195459 username mohammadjavad 195459 mac 195459 bytes_out 0 195459 bytes_in 0 195459 station_ip 83.122.45.177 195459 port 535 195459 unique_id port 195459 remote_ip 10.8.0.110 195461 username hashtadani5 195461 mac 195461 bytes_out 0 195461 bytes_in 0 195461 station_ip 37.129.127.216 195461 port 535 195461 unique_id port 195461 remote_ip 10.8.0.218 195470 username morteza4424 195470 mac 195470 bytes_out 0 195470 bytes_in 0 195470 station_ip 83.122.52.46 195470 port 520 195470 unique_id port 195470 remote_ip 10.8.0.206 195472 username morteza4424 195472 mac 195472 bytes_out 0 195472 bytes_in 0 195472 station_ip 83.122.52.46 195472 port 520 195472 unique_id port 195472 remote_ip 10.8.0.206 195474 username hashtadani5 195474 mac 195474 bytes_out 0 195474 bytes_in 0 195474 station_ip 37.129.127.216 195474 port 520 195474 unique_id port 195474 remote_ip 10.8.0.218 195476 username hashtadani5 195476 mac 195476 bytes_out 0 195476 bytes_in 0 195476 station_ip 37.129.127.216 195476 port 520 195476 unique_id port 195476 remote_ip 10.8.0.218 195478 username morteza4424 195478 kill_reason Maximum check online fails reached 195478 mac 195478 bytes_out 0 195478 bytes_in 0 195478 station_ip 83.122.52.46 195478 port 520 195478 unique_id port 195479 username morteza4424 195479 mac 195479 bytes_out 0 195479 bytes_in 0 195479 station_ip 83.122.52.46 195479 port 535 195479 unique_id port 195479 remote_ip 10.8.0.206 195484 username morteza4424 195484 mac 195484 bytes_out 0 195484 bytes_in 0 195484 station_ip 83.122.52.46 195484 port 535 195484 unique_id port 195484 remote_ip 10.8.0.206 195488 username morteza4424 195488 mac 195488 bytes_out 1115656 195488 bytes_in 803774 195488 station_ip 94.241.177.70 195488 port 525 195488 unique_id port 195488 remote_ip 10.8.0.206 195494 username hashtadani5 195494 mac 195494 bytes_out 0 195428 username hashtadani5 195428 mac 195428 bytes_out 2482 195428 bytes_in 4759 195428 station_ip 37.129.127.216 195428 port 520 195428 unique_id port 195428 remote_ip 10.8.0.218 195429 username hashtadani5 195429 mac 195429 bytes_out 0 195429 bytes_in 0 195429 station_ip 37.129.127.216 195429 port 520 195429 unique_id port 195429 remote_ip 10.8.0.218 195430 username hashtadani5 195430 mac 195430 bytes_out 0 195430 bytes_in 0 195430 station_ip 37.129.127.216 195430 port 520 195430 unique_id port 195430 remote_ip 10.8.0.218 195431 username hashtadani5 195431 mac 195431 bytes_out 0 195431 bytes_in 0 195431 station_ip 37.129.127.216 195431 port 523 195431 unique_id port 195431 remote_ip 10.8.0.218 195432 username hashtadani5 195432 mac 195432 bytes_out 0 195432 bytes_in 0 195432 station_ip 37.129.127.216 195432 port 523 195432 unique_id port 195432 remote_ip 10.8.0.218 195436 username hashtadani5 195436 mac 195436 bytes_out 0 195436 bytes_in 0 195436 station_ip 37.129.127.216 195436 port 523 195436 unique_id port 195436 remote_ip 10.8.0.218 195438 username pourshad 195438 kill_reason Another user logged on this global unique id 195438 mac 195438 bytes_out 0 195438 bytes_in 0 195438 station_ip 5.120.152.46 195438 port 519 195438 unique_id port 195438 remote_ip 10.8.0.42 195439 username hashtadani5 195439 mac 195439 bytes_out 0 195439 bytes_in 0 195439 station_ip 37.129.127.216 195439 port 523 195439 unique_id port 195439 remote_ip 10.8.0.218 195441 username hashtadani5 195441 mac 195441 bytes_out 0 195441 bytes_in 0 195441 station_ip 37.129.127.216 195441 port 523 195441 unique_id port 195441 remote_ip 10.8.0.218 195443 username hashtadani5 195443 kill_reason Maximum check online fails reached 195443 mac 195443 bytes_out 0 195443 bytes_in 0 195443 station_ip 37.129.127.216 195443 port 523 195443 unique_id port 195447 username hashtadani5 195447 mac 195447 bytes_out 0 195447 bytes_in 0 195447 station_ip 37.129.127.216 195447 port 520 195447 unique_id port 195447 remote_ip 10.8.0.218 195448 username hashtadani5 195448 mac 195448 bytes_out 0 195448 bytes_in 0 195448 station_ip 37.129.127.216 195448 port 520 195448 unique_id port 195448 remote_ip 10.8.0.218 195451 username hashtadani5 195451 mac 195451 bytes_out 0 195451 bytes_in 0 195451 station_ip 37.129.127.216 195451 port 520 195451 unique_id port 195451 remote_ip 10.8.0.218 195453 username mohammadjavad 195453 mac 195453 bytes_out 57027 195453 bytes_in 45881 195453 station_ip 83.122.45.177 195453 port 520 195453 unique_id port 195453 remote_ip 10.8.0.110 195455 username mohammadjavad 195455 mac 195455 bytes_out 108126 195455 bytes_in 277301 195455 station_ip 83.122.45.177 195455 port 520 195455 unique_id port 195455 remote_ip 10.8.0.110 195456 username hashtadani5 195456 mac 195456 bytes_out 0 195456 bytes_in 0 195456 station_ip 37.129.127.216 195456 port 537 195456 unique_id port 195456 remote_ip 10.8.0.218 195458 username mohammadjavad 195458 mac 195458 bytes_out 401265 195458 bytes_in 4999314 195458 station_ip 83.122.45.177 195458 port 535 195458 unique_id port 195458 remote_ip 10.8.0.110 195463 username zahra1101 195463 mac 195463 bytes_out 9204 195463 bytes_in 16917 195463 station_ip 5.120.124.134 195463 port 520 195463 unique_id port 195463 remote_ip 10.8.0.30 195464 username khalili2 195464 mac 195464 bytes_out 0 195464 bytes_in 0 195464 station_ip 5.119.97.65 195464 port 542 195464 unique_id port 195466 username mohammadjavad 195466 mac 195466 bytes_out 0 195466 bytes_in 0 195466 station_ip 83.122.45.177 195466 port 535 195466 unique_id port 195466 remote_ip 10.8.0.110 195467 username kalantary6037 195467 mac 195467 bytes_out 1806293 195467 bytes_in 26493277 195467 station_ip 37.129.76.183 195467 port 520 195467 unique_id port 195467 remote_ip 10.8.0.50 195473 username morteza4424 195473 mac 195473 bytes_out 0 195473 bytes_in 0 195473 station_ip 83.122.52.46 195473 port 520 195473 unique_id port 195473 remote_ip 10.8.0.206 195480 username morteza4424 195480 mac 195480 bytes_out 0 195480 bytes_in 0 195480 station_ip 83.122.52.46 195480 port 535 195480 unique_id port 195480 remote_ip 10.8.0.206 195481 username morteza4424 195481 mac 195481 bytes_out 0 195481 bytes_in 0 195481 station_ip 83.122.52.46 195481 port 535 195481 unique_id port 195481 remote_ip 10.8.0.206 195483 username hashtadani5 195483 mac 195483 bytes_out 0 195483 bytes_in 0 195483 station_ip 37.129.127.216 195483 port 535 195483 unique_id port 195483 remote_ip 10.8.0.218 195485 username hashtadani5 195485 mac 195485 bytes_out 0 195485 bytes_in 0 195485 station_ip 37.129.127.216 195485 port 535 195485 unique_id port 195485 remote_ip 10.8.0.218 195486 username mosi 195486 mac 195486 bytes_out 794811 195486 bytes_in 1257987 195486 station_ip 2.184.6.48 195486 port 525 195486 unique_id port 195486 remote_ip 10.8.0.142 195490 username hashtadani5 195490 mac 195490 bytes_out 0 195490 bytes_in 0 195490 station_ip 37.129.127.216 195490 port 525 195490 unique_id port 195490 remote_ip 10.8.0.218 195492 username hashtadani5 195492 mac 195492 bytes_out 0 195492 bytes_in 0 195492 station_ip 37.129.127.216 195492 port 525 195492 unique_id port 195492 remote_ip 10.8.0.218 195493 username pourshad 195493 kill_reason Another user logged on this global unique id 195493 mac 195493 bytes_out 0 195493 bytes_in 0 195493 station_ip 5.120.152.46 195493 port 519 195493 unique_id port 195497 username hashtadani5 195497 mac 195497 bytes_out 0 195497 bytes_in 0 195497 station_ip 37.129.127.216 195497 port 537 195497 unique_id port 195497 remote_ip 10.8.0.218 195500 username hashtadani5 195500 mac 195500 bytes_out 0 195500 bytes_in 0 195500 station_ip 37.129.127.216 195500 port 541 195500 unique_id port 195500 remote_ip 10.8.0.218 195502 username hashtadani5 195502 mac 195502 bytes_out 0 195502 bytes_in 0 195502 station_ip 37.129.127.216 195502 port 541 195502 unique_id port 195502 remote_ip 10.8.0.218 195506 username hashtadani5 195506 mac 195506 bytes_out 0 195506 bytes_in 0 195506 station_ip 37.129.127.216 195506 port 537 195506 unique_id port 195506 remote_ip 10.8.0.218 195510 username kharazmi2920 195510 mac 195510 bytes_out 1957 195510 bytes_in 3731 195510 station_ip 37.129.27.53 195510 port 519 195510 unique_id port 195510 remote_ip 10.8.0.22 195511 username hashtadani5 195511 mac 195511 bytes_out 0 195511 bytes_in 0 195511 station_ip 37.129.127.216 195511 port 519 195511 unique_id port 195511 remote_ip 10.8.0.218 195514 username pourshad 195514 kill_reason Another user logged on this global unique id 195514 mac 195514 bytes_out 0 195514 bytes_in 0 195514 station_ip 5.120.152.46 195514 port 537 195514 unique_id port 195514 remote_ip 10.8.0.42 195521 username hashtadani5 195521 mac 195521 bytes_out 0 195521 bytes_in 0 195521 station_ip 37.129.127.216 195521 port 508 195521 unique_id port 195491 bytes_in 0 195491 station_ip 37.129.127.216 195491 port 525 195491 unique_id port 195491 remote_ip 10.8.0.218 195495 username hashtadani5 195495 mac 195495 bytes_out 0 195495 bytes_in 0 195495 station_ip 37.129.127.216 195495 port 541 195495 unique_id port 195495 remote_ip 10.8.0.218 195498 username alirezaza 195498 unique_id port 195498 terminate_cause Lost-Carrier 195498 bytes_out 220689 195498 bytes_in 3039959 195498 station_ip 5.119.228.134 195498 port 15729417 195498 nas_port_type Virtual 195498 remote_ip 5.5.5.250 195503 username mosi 195503 mac 195503 bytes_out 333242 195503 bytes_in 457914 195503 station_ip 2.184.6.48 195503 port 535 195503 unique_id port 195503 remote_ip 10.8.0.142 195504 username majidsarmast 195504 mac 195504 bytes_out 1651226 195504 bytes_in 18659790 195504 station_ip 37.129.27.60 195504 port 537 195504 unique_id port 195504 remote_ip 10.8.0.146 195505 username esmaeili1522 195505 mac 195505 bytes_out 2562045 195505 bytes_in 37567307 195505 station_ip 5.119.246.221 195505 port 541 195505 unique_id port 195505 remote_ip 10.8.0.170 195517 username hashtadani5 195517 mac 195517 bytes_out 0 195517 bytes_in 0 195517 station_ip 37.129.127.216 195517 port 519 195517 unique_id port 195517 remote_ip 10.8.0.218 195524 username hashtadani5 195524 mac 195524 bytes_out 5583 195524 bytes_in 19748 195524 station_ip 37.129.127.216 195524 port 541 195524 unique_id port 195524 remote_ip 10.8.0.218 195529 username jafari 195529 mac 195529 bytes_out 995626 195529 bytes_in 8204386 195529 station_ip 5.200.103.63 195529 port 544 195529 unique_id port 195529 remote_ip 10.8.0.178 195530 username hashtadani5 195530 mac 195530 bytes_out 0 195530 bytes_in 0 195530 station_ip 37.129.127.216 195530 port 541 195530 unique_id port 195530 remote_ip 10.8.0.218 195534 username nilufarrajaei 195534 mac 195534 bytes_out 1110597 195534 bytes_in 17419267 195534 station_ip 113.203.63.162 195534 port 542 195534 unique_id port 195534 remote_ip 10.8.0.194 195535 username pourshad 195535 mac 195535 bytes_out 0 195535 bytes_in 0 195535 station_ip 5.120.152.46 195535 port 537 195535 unique_id port 195536 username hashtadani5 195536 mac 195536 bytes_out 457134 195536 bytes_in 5400069 195536 station_ip 37.129.127.216 195536 port 544 195536 unique_id port 195536 remote_ip 10.8.0.218 195538 username meghdad1616 195538 mac 195538 bytes_out 2934 195538 bytes_in 5320 195538 station_ip 5.120.182.197 195538 port 544 195538 unique_id port 195538 remote_ip 10.8.0.230 195539 username hashtadani5 195539 mac 195539 bytes_out 0 195539 bytes_in 0 195539 station_ip 37.129.127.216 195539 port 547 195539 unique_id port 195539 remote_ip 10.8.0.218 195540 username zahra1101 195540 mac 195540 bytes_out 30674 195540 bytes_in 129968 195540 station_ip 5.119.37.148 195540 port 546 195540 unique_id port 195540 remote_ip 10.8.0.30 195543 username meysam 195543 kill_reason Another user logged on this global unique id 195543 mac 195543 bytes_out 0 195543 bytes_in 0 195543 station_ip 188.158.50.252 195543 port 545 195543 unique_id port 195546 username zahra1101 195546 mac 195546 bytes_out 0 195546 bytes_in 0 195546 station_ip 5.119.37.148 195546 port 547 195546 unique_id port 195546 remote_ip 10.8.0.30 195547 username barzegar 195547 kill_reason Maximum number of concurrent logins reached 195547 mac 195547 bytes_out 0 195547 bytes_in 0 195547 station_ip 5.119.204.241 195547 port 547 195547 unique_id port 195551 username barzegar 195494 bytes_in 0 195494 station_ip 37.129.127.216 195494 port 525 195494 unique_id port 195494 remote_ip 10.8.0.218 195496 username morteza4424 195496 mac 195496 bytes_out 2696 195496 bytes_in 5090 195496 station_ip 83.122.48.250 195496 port 537 195496 unique_id port 195496 remote_ip 10.8.0.206 195499 username hashtadani5 195499 mac 195499 bytes_out 0 195499 bytes_in 0 195499 station_ip 37.129.127.216 195499 port 541 195499 unique_id port 195499 remote_ip 10.8.0.218 195501 username hashtadani5 195501 mac 195501 bytes_out 0 195501 bytes_in 0 195501 station_ip 37.129.127.216 195501 port 541 195501 unique_id port 195501 remote_ip 10.8.0.218 195507 username hashtadani5 195507 mac 195507 bytes_out 0 195507 bytes_in 0 195507 station_ip 37.129.127.216 195507 port 537 195507 unique_id port 195507 remote_ip 10.8.0.218 195508 username pourshad 195508 mac 195508 bytes_out 0 195508 bytes_in 0 195508 station_ip 5.120.152.46 195508 port 519 195508 unique_id port 195509 username hashtadani5 195509 mac 195509 bytes_out 0 195509 bytes_in 0 195509 station_ip 37.129.127.216 195509 port 519 195509 unique_id port 195509 remote_ip 10.8.0.218 195512 username hashtadani5 195512 mac 195512 bytes_out 0 195512 bytes_in 0 195512 station_ip 37.129.127.216 195512 port 519 195512 unique_id port 195512 remote_ip 10.8.0.218 195513 username hashtadani5 195513 mac 195513 bytes_out 0 195513 bytes_in 0 195513 station_ip 37.129.127.216 195513 port 519 195513 unique_id port 195513 remote_ip 10.8.0.218 195515 username hashtadani5 195515 mac 195515 bytes_out 0 195515 bytes_in 0 195515 station_ip 37.129.127.216 195515 port 519 195515 unique_id port 195515 remote_ip 10.8.0.218 195516 username sobhan 195516 unique_id port 195516 terminate_cause Lost-Carrier 195516 bytes_out 241494 195516 bytes_in 553302 195516 station_ip 5.233.66.185 195516 port 15729418 195516 nas_port_type Virtual 195516 remote_ip 5.5.5.251 195518 username hashtadani5 195518 mac 195518 bytes_out 0 195518 bytes_in 0 195518 station_ip 37.129.127.216 195518 port 519 195518 unique_id port 195518 remote_ip 10.8.0.218 195519 username hashtadani5 195519 mac 195519 bytes_out 0 195519 bytes_in 0 195519 station_ip 37.129.127.216 195519 port 519 195519 unique_id port 195519 remote_ip 10.8.0.218 195520 username hamid1430 195520 mac 195520 bytes_out 2668107 195520 bytes_in 13445706 195520 station_ip 83.122.181.184 195520 port 508 195520 unique_id port 195520 remote_ip 10.8.0.90 195522 username morteza4424 195522 mac 195522 bytes_out 0 195522 bytes_in 0 195522 station_ip 37.129.228.32 195522 port 519 195522 unique_id port 195522 remote_ip 10.8.0.206 195523 username hashtadani5 195523 mac 195523 bytes_out 0 195523 bytes_in 0 195523 station_ip 37.129.127.216 195523 port 541 195523 unique_id port 195523 remote_ip 10.8.0.218 195526 username hashtadani5 195526 mac 195526 bytes_out 0 195526 bytes_in 0 195526 station_ip 37.129.127.216 195526 port 545 195526 unique_id port 195526 remote_ip 10.8.0.218 195528 username sekonji0496 195528 mac 195528 bytes_out 769307 195528 bytes_in 10750827 195528 station_ip 37.129.219.17 195528 port 541 195528 unique_id port 195528 remote_ip 10.8.0.62 195531 username hashtadani5 195531 mac 195531 bytes_out 0 195531 bytes_in 0 195531 station_ip 37.129.127.216 195531 port 541 195531 unique_id port 195531 remote_ip 10.8.0.218 195532 username meysam 195532 kill_reason Another user logged on this global unique id 195532 mac 195521 remote_ip 10.8.0.218 195525 username hashtadani5 195525 mac 195525 bytes_out 0 195525 bytes_in 0 195525 station_ip 37.129.127.216 195525 port 542 195525 unique_id port 195525 remote_ip 10.8.0.218 195527 username mohammadjavad 195527 mac 195527 bytes_out 639607 195527 bytes_in 8339789 195527 station_ip 37.129.133.201 195527 port 543 195527 unique_id port 195527 remote_ip 10.8.0.110 195542 username zahra1101 195542 mac 195542 bytes_out 0 195542 bytes_in 0 195542 station_ip 5.119.37.148 195542 port 541 195542 unique_id port 195542 remote_ip 10.8.0.30 195549 username barzegar 195549 kill_reason Maximum number of concurrent logins reached 195549 mac 195549 bytes_out 0 195549 bytes_in 0 195549 station_ip 5.119.204.241 195549 port 548 195549 unique_id port 195559 username yaghobi 195559 mac 195559 bytes_out 943965 195559 bytes_in 3642866 195559 station_ip 37.129.252.233 195559 port 546 195559 unique_id port 195559 remote_ip 10.8.0.138 195561 username barzegar 195561 kill_reason Another user logged on this global unique id 195561 mac 195561 bytes_out 0 195561 bytes_in 0 195561 station_ip 5.119.204.241 195561 port 547 195561 unique_id port 195561 remote_ip 10.8.0.70 195563 username hashtadani5 195563 mac 195563 bytes_out 0 195563 bytes_in 0 195563 station_ip 37.129.127.216 195563 port 535 195563 unique_id port 195563 remote_ip 10.8.0.218 195565 username hashtadani5 195565 mac 195565 bytes_out 0 195565 bytes_in 0 195565 station_ip 37.129.127.216 195565 port 542 195565 unique_id port 195565 remote_ip 10.8.0.218 195568 username hashtadani5 195568 mac 195568 bytes_out 0 195568 bytes_in 0 195568 station_ip 37.129.127.216 195568 port 542 195568 unique_id port 195568 remote_ip 10.8.0.218 195571 username saeeddamghani 195571 mac 195571 bytes_out 482242 195571 bytes_in 5326920 195571 station_ip 217.60.175.206 195571 port 549 195571 unique_id port 195571 remote_ip 10.8.0.174 195574 username aminvpn 195574 unique_id port 195574 terminate_cause Lost-Carrier 195574 bytes_out 5403211 195574 bytes_in 240029999 195574 station_ip 31.57.140.233 195574 port 15729420 195574 nas_port_type Virtual 195574 remote_ip 5.5.5.253 195578 username hashtadani5 195578 mac 195578 bytes_out 93772 195578 bytes_in 273485 195578 station_ip 37.129.127.216 195578 port 544 195578 unique_id port 195578 remote_ip 10.8.0.218 195582 username hashtadani5 195582 mac 195582 bytes_out 0 195582 bytes_in 0 195582 station_ip 37.129.127.216 195582 port 519 195582 unique_id port 195582 remote_ip 10.8.0.218 195586 username meghdad1616 195586 mac 195586 bytes_out 3140 195586 bytes_in 5339 195586 station_ip 5.120.182.197 195586 port 535 195586 unique_id port 195586 remote_ip 10.8.0.230 195587 username barzegar 195587 mac 195587 bytes_out 0 195587 bytes_in 0 195587 station_ip 5.119.204.241 195587 port 547 195587 unique_id port 195592 username hashtadani5 195592 mac 195592 bytes_out 559651 195592 bytes_in 8717011 195592 station_ip 37.129.127.216 195592 port 535 195592 unique_id port 195592 remote_ip 10.8.0.218 195598 username barzegar 195598 mac 195598 bytes_out 85397 195598 bytes_in 20006 195598 station_ip 5.119.204.241 195598 port 542 195598 unique_id port 195598 remote_ip 10.8.0.70 195603 username barzegar 195603 mac 195603 bytes_out 21278 195603 bytes_in 22531 195603 station_ip 5.119.204.241 195603 port 546 195603 unique_id port 195603 remote_ip 10.8.0.70 195605 username saeeddamghani 195605 kill_reason Another user logged on this global unique id 195605 mac 195605 bytes_out 0 195532 bytes_out 0 195532 bytes_in 0 195532 station_ip 188.158.50.252 195532 port 545 195532 unique_id port 195532 remote_ip 10.8.0.158 195533 username motamedi9772 195533 mac 195533 bytes_out 15629 195533 bytes_in 31780 195533 station_ip 83.123.226.245 195533 port 543 195533 unique_id port 195533 remote_ip 10.8.0.154 195537 username hashtadani5 195537 mac 195537 bytes_out 0 195537 bytes_in 0 195537 station_ip 37.129.127.216 195537 port 542 195537 unique_id port 195537 remote_ip 10.8.0.218 195541 username yaghobi 195541 mac 195541 bytes_out 1258157 195541 bytes_in 10389238 195541 station_ip 37.129.252.233 195541 port 541 195541 unique_id port 195541 remote_ip 10.8.0.138 195544 username hashtadani5 195544 mac 195544 bytes_out 0 195544 bytes_in 0 195544 station_ip 37.129.127.216 195544 port 547 195544 unique_id port 195544 remote_ip 10.8.0.218 195545 username ahmadi1 195545 mac 195545 bytes_out 13464 195545 bytes_in 11597 195545 station_ip 83.123.115.117 195545 port 541 195545 unique_id port 195545 remote_ip 10.8.0.94 195548 username barzegar 195548 kill_reason Maximum number of concurrent logins reached 195548 mac 195548 bytes_out 0 195548 bytes_in 0 195548 station_ip 5.119.204.241 195548 port 548 195548 unique_id port 195550 username zahra1101 195550 mac 195550 bytes_out 0 195550 bytes_in 0 195550 station_ip 5.119.37.148 195550 port 547 195550 unique_id port 195550 remote_ip 10.8.0.30 195552 username hashtadani5 195552 mac 195552 bytes_out 0 195552 bytes_in 0 195552 station_ip 37.129.127.216 195552 port 548 195552 unique_id port 195552 remote_ip 10.8.0.218 195555 username hashtadani5 195555 mac 195555 bytes_out 0 195555 bytes_in 0 195555 station_ip 37.129.127.216 195555 port 549 195555 unique_id port 195555 remote_ip 10.8.0.218 195556 username hashtadani5 195556 mac 195556 bytes_out 0 195556 bytes_in 0 195556 station_ip 37.129.127.216 195556 port 550 195556 unique_id port 195556 remote_ip 10.8.0.218 195557 username alirezaza 195557 unique_id port 195557 terminate_cause User-Request 195557 bytes_out 95331 195557 bytes_in 310798 195557 station_ip 5.119.39.118 195557 port 15729419 195557 nas_port_type Virtual 195557 remote_ip 5.5.5.252 195562 username hashtadani5 195562 mac 195562 bytes_out 0 195562 bytes_in 0 195562 station_ip 37.129.127.216 195562 port 535 195562 unique_id port 195562 remote_ip 10.8.0.218 195564 username meghdad1616 195564 mac 195564 bytes_out 2615922 195564 bytes_in 35289521 195564 station_ip 5.120.182.197 195564 port 544 195564 unique_id port 195564 remote_ip 10.8.0.230 195566 username rashidi4690 195566 kill_reason Another user logged on this global unique id 195566 mac 195566 bytes_out 0 195566 bytes_in 0 195566 station_ip 5.120.69.17 195566 port 537 195566 unique_id port 195566 remote_ip 10.8.0.242 195567 username hashtadani5 195567 mac 195567 bytes_out 0 195567 bytes_in 0 195567 station_ip 37.129.127.216 195567 port 542 195567 unique_id port 195567 remote_ip 10.8.0.218 195569 username mohammadjavad 195569 mac 195569 bytes_out 137412 195569 bytes_in 487168 195569 station_ip 37.27.18.39 195569 port 535 195569 unique_id port 195569 remote_ip 10.8.0.110 195570 username meysam 195570 kill_reason Another user logged on this global unique id 195570 mac 195570 bytes_out 0 195570 bytes_in 0 195570 station_ip 188.158.50.252 195570 port 545 195570 unique_id port 195576 username barzegar 195576 kill_reason Another user logged on this global unique id 195576 mac 195576 bytes_out 0 195576 bytes_in 0 195576 station_ip 5.119.204.241 195551 kill_reason Maximum check online fails reached 195551 mac 195551 bytes_out 0 195551 bytes_in 0 195551 station_ip 5.119.204.241 195551 port 541 195551 unique_id port 195553 username hashtadani5 195553 mac 195553 bytes_out 0 195553 bytes_in 0 195553 station_ip 37.129.127.216 195553 port 549 195553 unique_id port 195553 remote_ip 10.8.0.218 195554 username hashtadani5 195554 mac 195554 bytes_out 0 195554 bytes_in 0 195554 station_ip 37.129.127.216 195554 port 549 195554 unique_id port 195554 remote_ip 10.8.0.218 195558 username dortaj3792 195558 mac 195558 bytes_out 3778194 195558 bytes_in 26444499 195558 station_ip 5.119.136.18 195558 port 535 195558 unique_id port 195558 remote_ip 10.8.0.102 195560 username pourshad 195560 mac 195560 bytes_out 468533 195560 bytes_in 4443698 195560 station_ip 5.120.152.46 195560 port 542 195560 unique_id port 195560 remote_ip 10.8.0.42 195572 username hashtadani5 195572 mac 195572 bytes_out 8248 195572 bytes_in 15750 195572 station_ip 37.129.127.216 195572 port 542 195572 unique_id port 195572 remote_ip 10.8.0.218 195573 username mosi 195573 mac 195573 bytes_out 0 195573 bytes_in 0 195573 station_ip 89.34.49.96 195573 port 544 195573 unique_id port 195573 remote_ip 10.8.0.142 195575 username mansour 195575 mac 195575 bytes_out 36220 195575 bytes_in 87278 195575 station_ip 5.202.61.73 195575 port 535 195575 unique_id port 195575 remote_ip 10.8.0.10 195579 username hashtadani5 195579 mac 195579 bytes_out 0 195579 bytes_in 0 195579 station_ip 37.129.127.216 195579 port 519 195579 unique_id port 195579 remote_ip 10.8.0.218 195583 username hashtadani5 195583 mac 195583 bytes_out 0 195583 bytes_in 0 195583 station_ip 37.129.127.216 195583 port 519 195583 unique_id port 195583 remote_ip 10.8.0.218 195584 username hashtadani5 195584 mac 195584 bytes_out 0 195584 bytes_in 0 195584 station_ip 37.129.127.216 195584 port 519 195584 unique_id port 195584 remote_ip 10.8.0.218 195588 username jafari 195588 mac 195588 bytes_out 2437821 195588 bytes_in 15050613 195588 station_ip 5.200.103.63 195588 port 543 195588 unique_id port 195588 remote_ip 10.8.0.178 195589 username meysam 195589 mac 195589 bytes_out 0 195589 bytes_in 0 195589 station_ip 188.158.50.252 195589 port 545 195589 unique_id port 195593 username godarzi 195593 mac 195593 bytes_out 33117 195593 bytes_in 55923 195593 station_ip 5.119.149.125 195593 port 544 195593 unique_id port 195593 remote_ip 10.8.0.38 195596 username kalantary6037 195596 mac 195596 bytes_out 395265 195596 bytes_in 2086100 195596 station_ip 37.129.123.35 195596 port 546 195596 unique_id port 195596 remote_ip 10.8.0.50 195599 username motamedi9772 195599 mac 195599 bytes_out 1442890 195599 bytes_in 19725360 195599 station_ip 83.123.222.109 195599 port 545 195599 unique_id port 195599 remote_ip 10.8.0.154 195601 username hashtadani5 195601 mac 195601 bytes_out 0 195601 bytes_in 0 195601 station_ip 37.129.127.216 195601 port 547 195601 unique_id port 195601 remote_ip 10.8.0.218 195602 username hashtadani5 195602 mac 195602 bytes_out 0 195602 bytes_in 0 195602 station_ip 37.129.127.216 195602 port 535 195602 unique_id port 195602 remote_ip 10.8.0.218 195604 username rashidi4690 195604 kill_reason Another user logged on this global unique id 195604 mac 195604 bytes_out 0 195604 bytes_in 0 195604 station_ip 5.120.69.17 195604 port 537 195604 unique_id port 195611 username hashtadani5 195611 mac 195576 port 547 195576 unique_id port 195577 username godarzi 195577 mac 195577 bytes_out 4032696 195577 bytes_in 25139735 195577 station_ip 5.119.149.125 195577 port 519 195577 unique_id port 195577 remote_ip 10.8.0.38 195580 username hashtadani5 195580 mac 195580 bytes_out 1644 195580 bytes_in 3739 195580 station_ip 37.129.127.216 195580 port 519 195580 unique_id port 195580 remote_ip 10.8.0.218 195581 username hashtadani5 195581 mac 195581 bytes_out 0 195581 bytes_in 0 195581 station_ip 37.129.127.216 195581 port 519 195581 unique_id port 195581 remote_ip 10.8.0.218 195585 username hashtadani5 195585 mac 195585 bytes_out 0 195585 bytes_in 0 195585 station_ip 37.129.127.216 195585 port 519 195585 unique_id port 195585 remote_ip 10.8.0.218 195590 username hashtadani5 195590 mac 195590 bytes_out 23816 195590 bytes_in 41065 195590 station_ip 37.129.127.216 195590 port 535 195590 unique_id port 195590 remote_ip 10.8.0.218 195591 username zahra1101 195591 mac 195591 bytes_out 0 195591 bytes_in 0 195591 station_ip 5.119.37.148 195591 port 543 195591 unique_id port 195591 remote_ip 10.8.0.30 195594 username mosi 195594 mac 195594 bytes_out 168546 195594 bytes_in 230887 195594 station_ip 5.233.55.100 195594 port 542 195594 unique_id port 195594 remote_ip 10.8.0.142 195595 username saeeddamghani 195595 mac 195595 bytes_out 742804 195595 bytes_in 5560556 195595 station_ip 217.60.175.206 195595 port 519 195595 unique_id port 195595 remote_ip 10.8.0.174 195597 username hashtadani5 195597 mac 195597 bytes_out 6953 195597 bytes_in 15068 195597 station_ip 37.129.127.216 195597 port 535 195597 unique_id port 195597 remote_ip 10.8.0.218 195600 username hashtadani5 195600 mac 195600 bytes_out 0 195600 bytes_in 0 195600 station_ip 37.129.127.216 195600 port 535 195600 unique_id port 195600 remote_ip 10.8.0.218 195607 username barzegar 195607 mac 195607 bytes_out 0 195607 bytes_in 0 195607 station_ip 5.119.204.241 195607 port 547 195607 unique_id port 195607 remote_ip 10.8.0.70 195608 username motamedi9772 195608 mac 195608 bytes_out 1155687 195608 bytes_in 13273606 195608 station_ip 83.123.222.109 195608 port 542 195608 unique_id port 195608 remote_ip 10.8.0.154 195613 username daryaei1233 195613 mac 195613 bytes_out 0 195613 bytes_in 0 195613 station_ip 113.203.70.15 195613 port 542 195613 unique_id port 195613 remote_ip 10.8.0.86 195616 username hashtadani5 195616 mac 195616 bytes_out 0 195616 bytes_in 0 195616 station_ip 37.129.127.216 195616 port 535 195616 unique_id port 195616 remote_ip 10.8.0.218 195619 username daryaei1233 195619 mac 195619 bytes_out 32600 195619 bytes_in 65455 195619 station_ip 113.203.70.15 195619 port 519 195619 unique_id port 195619 remote_ip 10.8.0.86 195627 username meghdad1616 195627 mac 195627 bytes_out 0 195627 bytes_in 0 195627 station_ip 5.120.182.197 195627 port 547 195627 unique_id port 195627 remote_ip 10.8.0.230 195629 username daryaei1233 195629 mac 195629 bytes_out 7515 195629 bytes_in 11689 195629 station_ip 113.203.70.15 195629 port 544 195629 unique_id port 195629 remote_ip 10.8.0.86 195630 username daryaei1233 195630 mac 195630 bytes_out 0 195630 bytes_in 0 195630 station_ip 113.203.70.15 195630 port 544 195630 unique_id port 195630 remote_ip 10.8.0.86 195631 username daryaei1233 195631 mac 195631 bytes_out 0 195631 bytes_in 0 195631 station_ip 113.203.70.15 195631 port 544 195631 unique_id port 195605 bytes_in 0 195605 station_ip 217.60.175.206 195605 port 519 195605 unique_id port 195605 remote_ip 10.8.0.174 195606 username godarzi 195606 mac 195606 bytes_out 1455094 195606 bytes_in 17846463 195606 station_ip 5.120.102.72 195606 port 546 195606 unique_id port 195606 remote_ip 10.8.0.38 195609 username mosi 195609 mac 195609 bytes_out 2102648 195609 bytes_in 15127922 195609 station_ip 5.233.55.100 195609 port 544 195609 unique_id port 195609 remote_ip 10.8.0.142 195610 username daryaei1233 195610 mac 195610 bytes_out 161953 195610 bytes_in 587746 195610 station_ip 113.203.70.15 195610 port 542 195610 unique_id port 195610 remote_ip 10.8.0.86 195612 username saeeddamghani 195612 mac 195612 bytes_out 0 195612 bytes_in 0 195612 station_ip 217.60.175.206 195612 port 519 195612 unique_id port 195617 username hashtadani5 195617 mac 195617 bytes_out 0 195617 bytes_in 0 195617 station_ip 37.129.127.216 195617 port 535 195617 unique_id port 195617 remote_ip 10.8.0.218 195620 username hashtadani5 195620 mac 195620 bytes_out 0 195620 bytes_in 0 195620 station_ip 37.129.127.216 195620 port 519 195620 unique_id port 195620 remote_ip 10.8.0.218 195623 username daryaei1233 195623 mac 195623 bytes_out 0 195623 bytes_in 0 195623 station_ip 113.203.70.15 195623 port 544 195623 unique_id port 195623 remote_ip 10.8.0.86 195625 username hashtadani5 195625 kill_reason Maximum check online fails reached 195625 mac 195625 bytes_out 0 195625 bytes_in 0 195625 station_ip 37.129.127.216 195625 port 535 195625 unique_id port 195626 username hashtadani5 195626 kill_reason Maximum check online fails reached 195626 mac 195626 bytes_out 0 195626 bytes_in 0 195626 station_ip 37.129.127.216 195626 port 519 195626 unique_id port 195632 username pourshad 195632 mac 195632 bytes_out 572547 195632 bytes_in 4844678 195632 station_ip 5.120.152.46 195632 port 545 195632 unique_id port 195632 remote_ip 10.8.0.42 195635 username daryaei1233 195635 mac 195635 bytes_out 5661 195635 bytes_in 11993 195635 station_ip 113.203.70.15 195635 port 544 195635 unique_id port 195635 remote_ip 10.8.0.86 195636 username meghdad1616 195636 mac 195636 bytes_out 451017 195636 bytes_in 3803629 195636 station_ip 5.120.182.197 195636 port 549 195636 unique_id port 195636 remote_ip 10.8.0.230 195637 username daryaei1233 195637 mac 195637 bytes_out 3166 195637 bytes_in 5451 195637 station_ip 113.203.70.15 195637 port 544 195637 unique_id port 195637 remote_ip 10.8.0.86 195641 username rashidi4690 195641 mac 195641 bytes_out 0 195641 bytes_in 0 195641 station_ip 5.120.69.17 195641 port 537 195641 unique_id port 195644 username meghdad1616 195644 mac 195644 bytes_out 27987 195644 bytes_in 38949 195644 station_ip 5.120.182.197 195644 port 545 195644 unique_id port 195644 remote_ip 10.8.0.230 195645 username pourshad 195645 mac 195645 bytes_out 22140 195645 bytes_in 36860 195645 station_ip 5.120.152.46 195645 port 543 195645 unique_id port 195645 remote_ip 10.8.0.42 195646 username barzegar8595 195646 kill_reason Another user logged on this global unique id 195646 mac 195646 bytes_out 0 195646 bytes_in 0 195646 station_ip 46.225.232.106 195646 port 548 195646 unique_id port 195646 remote_ip 10.8.0.114 195647 username daryaei1233 195647 mac 195647 bytes_out 6121 195647 bytes_in 7755 195647 station_ip 113.203.70.15 195647 port 545 195647 unique_id port 195647 remote_ip 10.8.0.86 195648 username daryaei1233 195648 mac 195648 bytes_out 0 195611 bytes_out 1322068 195611 bytes_in 22249093 195611 station_ip 37.129.127.216 195611 port 535 195611 unique_id port 195611 remote_ip 10.8.0.218 195614 username hashtadani5 195614 mac 195614 bytes_out 0 195614 bytes_in 0 195614 station_ip 37.129.127.216 195614 port 535 195614 unique_id port 195614 remote_ip 10.8.0.218 195615 username hashtadani5 195615 mac 195615 bytes_out 0 195615 bytes_in 0 195615 station_ip 37.129.127.216 195615 port 535 195615 unique_id port 195615 remote_ip 10.8.0.218 195618 username hashtadani5 195618 mac 195618 bytes_out 0 195618 bytes_in 0 195618 station_ip 37.129.127.216 195618 port 535 195618 unique_id port 195618 remote_ip 10.8.0.218 195621 username hashtadani5 195621 kill_reason Maximum number of concurrent logins reached 195621 mac 195621 bytes_out 0 195621 bytes_in 0 195621 station_ip 37.129.127.216 195621 port 544 195621 unique_id port 195622 username hashtadani5 195622 kill_reason Maximum number of concurrent logins reached 195622 mac 195622 bytes_out 0 195622 bytes_in 0 195622 station_ip 37.129.127.216 195622 port 546 195622 unique_id port 195624 username hashtadani5 195624 kill_reason Maximum number of concurrent logins reached 195624 mac 195624 bytes_out 0 195624 bytes_in 0 195624 station_ip 37.129.127.216 195624 port 544 195624 unique_id port 195628 username saeeddamghani 195628 kill_reason Maximum check online fails reached 195628 mac 195628 bytes_out 0 195628 bytes_in 0 195628 station_ip 217.60.175.206 195628 port 546 195628 unique_id port 195642 username daryaei1233 195642 mac 195642 bytes_out 0 195642 bytes_in 0 195642 station_ip 113.203.70.15 195642 port 537 195642 unique_id port 195642 remote_ip 10.8.0.86 195643 username daryaei1233 195643 mac 195643 bytes_out 0 195643 bytes_in 0 195643 station_ip 113.203.70.15 195643 port 537 195643 unique_id port 195643 remote_ip 10.8.0.86 195650 username kalantary6037 195650 mac 195650 bytes_out 3245808 195650 bytes_in 43414961 195650 station_ip 37.129.33.43 195650 port 549 195650 unique_id port 195650 remote_ip 10.8.0.50 195656 username daryaei1233 195656 mac 195656 bytes_out 5632 195656 bytes_in 7829 195656 station_ip 113.203.70.15 195656 port 537 195656 unique_id port 195656 remote_ip 10.8.0.86 195657 username motamedi9772 195657 mac 195657 bytes_out 4775 195657 bytes_in 11180 195657 station_ip 83.123.198.135 195657 port 551 195657 unique_id port 195657 remote_ip 10.8.0.154 195660 username daryaei1233 195660 mac 195660 bytes_out 6668 195660 bytes_in 18157 195660 station_ip 113.203.70.15 195660 port 537 195660 unique_id port 195660 remote_ip 10.8.0.86 195661 username soleymani5056 195661 mac 195661 bytes_out 258098 195661 bytes_in 2096700 195661 station_ip 5.119.56.136 195661 port 549 195661 unique_id port 195661 remote_ip 10.8.0.226 195663 username iranmanesh4443 195663 mac 195663 bytes_out 2259 195663 bytes_in 4534 195663 station_ip 5.120.29.192 195663 port 544 195663 unique_id port 195663 remote_ip 10.8.0.122 195666 username kalantary6037 195666 kill_reason Another user logged on this global unique id 195666 mac 195666 bytes_out 0 195666 bytes_in 0 195666 station_ip 37.129.33.43 195666 port 548 195666 unique_id port 195666 remote_ip 10.8.0.50 195667 username daryaei1233 195667 mac 195667 bytes_out 0 195667 bytes_in 0 195667 station_ip 113.203.70.15 195667 port 537 195667 unique_id port 195667 remote_ip 10.8.0.86 195670 username hamid.e 195670 unique_id port 195670 terminate_cause User-Request 195670 bytes_out 7881717 195670 bytes_in 80296168 195670 station_ip 37.27.26.78 195631 remote_ip 10.8.0.86 195633 username daryaei1233 195633 mac 195633 bytes_out 2376 195633 bytes_in 4645 195633 station_ip 113.203.70.15 195633 port 544 195633 unique_id port 195633 remote_ip 10.8.0.86 195634 username kalantary6037 195634 mac 195634 bytes_out 152550 195634 bytes_in 321145 195634 station_ip 37.129.33.43 195634 port 550 195634 unique_id port 195634 remote_ip 10.8.0.50 195638 username zahra1101 195638 mac 195638 bytes_out 33756736 195638 bytes_in 18551276 195638 station_ip 5.119.37.148 195638 port 543 195638 unique_id port 195638 remote_ip 10.8.0.30 195639 username daryaei1233 195639 mac 195639 bytes_out 0 195639 bytes_in 0 195639 station_ip 113.203.70.15 195639 port 543 195639 unique_id port 195639 remote_ip 10.8.0.86 195640 username daryaei1233 195640 mac 195640 bytes_out 0 195640 bytes_in 0 195640 station_ip 113.203.70.15 195640 port 543 195640 unique_id port 195640 remote_ip 10.8.0.86 195653 username daryaei1233 195653 mac 195653 bytes_out 0 195653 bytes_in 0 195653 station_ip 113.203.70.15 195653 port 549 195653 unique_id port 195653 remote_ip 10.8.0.86 195659 username iranmanesh4443 195659 mac 195659 bytes_out 748042 195659 bytes_in 8952935 195659 station_ip 5.120.29.192 195659 port 544 195659 unique_id port 195659 remote_ip 10.8.0.122 195665 username soleymani5056 195665 mac 195665 bytes_out 2685 195665 bytes_in 4730 195665 station_ip 5.119.56.136 195665 port 551 195665 unique_id port 195665 remote_ip 10.8.0.226 195668 username meghdad1616 195668 mac 195668 bytes_out 6816 195668 bytes_in 11636 195668 station_ip 5.120.182.197 195668 port 544 195668 unique_id port 195668 remote_ip 10.8.0.230 195669 username daryaei1233 195669 mac 195669 bytes_out 0 195669 bytes_in 0 195669 station_ip 113.203.70.15 195669 port 537 195669 unique_id port 195669 remote_ip 10.8.0.86 195673 username milan 195673 mac 195673 bytes_out 5255664 195673 bytes_in 53517959 195673 station_ip 5.119.177.28 195673 port 547 195673 unique_id port 195673 remote_ip 10.8.0.182 195683 username mohammadjavad 195683 mac 195683 bytes_out 0 195683 bytes_in 0 195683 station_ip 37.129.67.196 195683 port 550 195683 unique_id port 195683 remote_ip 10.8.0.110 195684 username daryaei1233 195684 mac 195684 bytes_out 0 195684 bytes_in 0 195684 station_ip 113.203.70.15 195684 port 550 195684 unique_id port 195684 remote_ip 10.8.0.86 195685 username meghdad1616 195685 mac 195685 bytes_out 0 195685 bytes_in 0 195685 station_ip 5.120.182.197 195685 port 551 195685 unique_id port 195685 remote_ip 10.8.0.230 195687 username daryaei1233 195687 mac 195687 bytes_out 1644 195687 bytes_in 4898 195687 station_ip 113.203.70.15 195687 port 550 195687 unique_id port 195687 remote_ip 10.8.0.86 195689 username meghdad1616 195689 mac 195689 bytes_out 0 195689 bytes_in 0 195689 station_ip 5.120.182.197 195689 port 551 195689 unique_id port 195689 remote_ip 10.8.0.230 195690 username daryaei1233 195690 mac 195690 bytes_out 0 195690 bytes_in 0 195690 station_ip 113.203.70.15 195690 port 547 195690 unique_id port 195690 remote_ip 10.8.0.86 195691 username daryaei1233 195691 mac 195691 bytes_out 0 195691 bytes_in 0 195691 station_ip 113.203.70.15 195691 port 547 195691 unique_id port 195691 remote_ip 10.8.0.86 195696 username meghdad1616 195696 mac 195696 bytes_out 3455 195696 bytes_in 6709 195696 station_ip 5.120.166.61 195696 port 551 195696 unique_id port 195696 remote_ip 10.8.0.230 195648 bytes_in 0 195648 station_ip 113.203.70.15 195648 port 545 195648 unique_id port 195648 remote_ip 10.8.0.86 195649 username daryaei1233 195649 mac 195649 bytes_out 0 195649 bytes_in 0 195649 station_ip 113.203.70.15 195649 port 551 195649 unique_id port 195649 remote_ip 10.8.0.86 195651 username barzegar8595 195651 mac 195651 bytes_out 0 195651 bytes_in 0 195651 station_ip 46.225.232.106 195651 port 548 195651 unique_id port 195652 username daryaei1233 195652 mac 195652 bytes_out 0 195652 bytes_in 0 195652 station_ip 113.203.70.15 195652 port 548 195652 unique_id port 195652 remote_ip 10.8.0.86 195654 username meghdad1616 195654 mac 195654 bytes_out 62619 195654 bytes_in 119592 195654 station_ip 5.120.182.197 195654 port 537 195654 unique_id port 195654 remote_ip 10.8.0.230 195655 username barzegar 195655 mac 195655 bytes_out 0 195655 bytes_in 0 195655 station_ip 5.119.204.241 195655 port 537 195655 unique_id port 195655 remote_ip 10.8.0.70 195658 username rashidi4690 195658 mac 195658 bytes_out 1063137 195658 bytes_in 5933774 195658 station_ip 5.120.69.17 195658 port 550 195658 unique_id port 195658 remote_ip 10.8.0.242 195662 username daryaei1233 195662 mac 195662 bytes_out 0 195662 bytes_in 0 195662 station_ip 113.203.70.15 195662 port 537 195662 unique_id port 195662 remote_ip 10.8.0.86 195664 username barzegar 195664 mac 195664 bytes_out 785079 195664 bytes_in 451369 195664 station_ip 5.119.204.241 195664 port 550 195664 unique_id port 195664 remote_ip 10.8.0.70 195671 username daryaei1233 195671 mac 195671 bytes_out 0 195671 bytes_in 0 195671 station_ip 113.203.70.15 195671 port 537 195671 unique_id port 195671 remote_ip 10.8.0.86 195675 username daryaei1233 195675 kill_reason Maximum check online fails reached 195675 mac 195675 bytes_out 0 195675 bytes_in 0 195675 station_ip 113.203.70.15 195675 port 537 195675 unique_id port 195677 username daryaei1233 195677 mac 195677 bytes_out 0 195677 bytes_in 0 195677 station_ip 113.203.70.15 195677 port 550 195677 unique_id port 195677 remote_ip 10.8.0.86 195681 username daryaei1233 195681 mac 195681 bytes_out 0 195681 bytes_in 0 195681 station_ip 113.203.70.15 195681 port 550 195681 unique_id port 195681 remote_ip 10.8.0.86 195688 username yaghobi 195688 mac 195688 bytes_out 445540 195688 bytes_in 906809 195688 station_ip 83.123.178.202 195688 port 547 195688 unique_id port 195688 remote_ip 10.8.0.138 195693 username yaghobi 195693 mac 195693 bytes_out 19430 195693 bytes_in 35123 195693 station_ip 83.123.225.198 195693 port 552 195693 unique_id port 195693 remote_ip 10.8.0.138 195694 username soleymani5056 195694 mac 195694 bytes_out 62678 195694 bytes_in 101609 195694 station_ip 5.119.185.147 195694 port 550 195694 unique_id port 195694 remote_ip 10.8.0.226 195698 username daryaei1233 195698 mac 195698 bytes_out 0 195698 bytes_in 0 195698 station_ip 113.203.70.15 195698 port 550 195698 unique_id port 195698 remote_ip 10.8.0.86 195701 username majidsarmast 195701 mac 195701 bytes_out 310776 195701 bytes_in 3001759 195701 station_ip 37.129.5.168 195701 port 551 195701 unique_id port 195701 remote_ip 10.8.0.146 195704 username daryaei1233 195704 mac 195704 bytes_out 0 195704 bytes_in 0 195704 station_ip 113.203.70.15 195704 port 551 195704 unique_id port 195704 remote_ip 10.8.0.86 195705 username daryaei1233 195705 mac 195705 bytes_out 0 195705 bytes_in 0 195705 station_ip 113.203.70.15 195670 port 15729421 195670 nas_port_type Virtual 195670 remote_ip 5.5.5.249 195672 username daryaei1233 195672 mac 195672 bytes_out 0 195672 bytes_in 0 195672 station_ip 113.203.70.15 195672 port 537 195672 unique_id port 195672 remote_ip 10.8.0.86 195674 username aminvpn 195674 mac 195674 bytes_out 454423 195674 bytes_in 896861 195674 station_ip 5.119.189.227 195674 port 549 195674 unique_id port 195674 remote_ip 10.8.0.58 195676 username kalantary6037 195676 mac 195676 bytes_out 0 195676 bytes_in 0 195676 station_ip 37.129.33.43 195676 port 548 195676 unique_id port 195678 username dortaj3792 195678 mac 195678 bytes_out 910202 195678 bytes_in 1837231 195678 station_ip 5.119.136.18 195678 port 545 195678 unique_id port 195678 remote_ip 10.8.0.102 195679 username meghdad1616 195679 mac 195679 bytes_out 0 195679 bytes_in 0 195679 station_ip 5.120.182.197 195679 port 545 195679 unique_id port 195679 remote_ip 10.8.0.230 195680 username mohammadjavad 195680 mac 195680 bytes_out 1019381 195680 bytes_in 14146977 195680 station_ip 37.129.67.196 195680 port 549 195680 unique_id port 195680 remote_ip 10.8.0.110 195682 username meghdad1616 195682 mac 195682 bytes_out 0 195682 bytes_in 0 195682 station_ip 5.120.182.197 195682 port 551 195682 unique_id port 195682 remote_ip 10.8.0.230 195686 username daryaei1233 195686 kill_reason Maximum check online fails reached 195686 mac 195686 bytes_out 0 195686 bytes_in 0 195686 station_ip 113.203.70.15 195686 port 545 195686 unique_id port 195692 username saeeddamghani 195692 unique_id port 195692 terminate_cause User-Request 195692 bytes_out 455972 195692 bytes_in 16125620 195692 station_ip 37.129.141.255 195692 port 15729423 195692 nas_port_type Virtual 195692 remote_ip 5.5.5.237 195695 username mosi 195695 mac 195695 bytes_out 2991080 195695 bytes_in 35168378 195695 station_ip 2.179.191.88 195695 port 544 195695 unique_id port 195695 remote_ip 10.8.0.142 195697 username majidsarmast 195697 mac 195697 bytes_out 1538702 195697 bytes_in 20599777 195697 station_ip 37.129.5.168 195697 port 549 195697 unique_id port 195697 remote_ip 10.8.0.146 195699 username daryaei1233 195699 mac 195699 bytes_out 0 195699 bytes_in 0 195699 station_ip 113.203.70.15 195699 port 549 195699 unique_id port 195699 remote_ip 10.8.0.86 195702 username daryaei1233 195702 mac 195702 bytes_out 0 195702 bytes_in 0 195702 station_ip 113.203.70.15 195702 port 550 195702 unique_id port 195702 remote_ip 10.8.0.86 195707 username daryaei1233 195707 kill_reason Maximum number of concurrent logins reached 195707 mac 195707 bytes_out 0 195707 bytes_in 0 195707 station_ip 113.203.70.15 195707 port 550 195707 unique_id port 195712 username aminvpn 195712 mac 195712 bytes_out 0 195712 bytes_in 0 195712 station_ip 5.119.189.227 195712 port 548 195712 unique_id port 195712 remote_ip 10.8.0.58 195713 username mohammadjavad 195713 mac 195713 bytes_out 0 195713 bytes_in 0 195713 station_ip 37.129.67.196 195713 port 553 195713 unique_id port 195713 remote_ip 10.8.0.110 195715 username meghdad1616 195715 mac 195715 bytes_out 0 195715 bytes_in 0 195715 station_ip 5.120.166.61 195715 port 552 195715 unique_id port 195715 remote_ip 10.8.0.230 195716 username godarzi 195716 mac 195716 bytes_out 6303645 195716 bytes_in 49332833 195716 station_ip 5.120.102.72 195716 port 542 195716 unique_id port 195716 remote_ip 10.8.0.38 195717 username mohammadjavad 195717 mac 195717 bytes_out 0 195717 bytes_in 0 195700 username dortaj3792 195700 mac 195700 bytes_out 77889 195700 bytes_in 115471 195700 station_ip 5.119.136.18 195700 port 547 195700 unique_id port 195700 remote_ip 10.8.0.102 195703 username daryaei1233 195703 mac 195703 bytes_out 0 195703 bytes_in 0 195703 station_ip 113.203.70.15 195703 port 551 195703 unique_id port 195703 remote_ip 10.8.0.86 195706 username meysam 195706 mac 195706 bytes_out 1082939 195706 bytes_in 13115637 195706 station_ip 188.158.51.227 195706 port 550 195706 unique_id port 195706 remote_ip 10.8.0.158 195709 username daryaei1233 195709 kill_reason Maximum check online fails reached 195709 mac 195709 bytes_out 0 195709 bytes_in 0 195709 station_ip 113.203.70.15 195709 port 551 195709 unique_id port 195718 username meysam 195718 kill_reason Another user logged on this global unique id 195718 mac 195718 bytes_out 0 195718 bytes_in 0 195718 station_ip 188.158.51.227 195718 port 549 195718 unique_id port 195718 remote_ip 10.8.0.158 195722 username aminvpn 195722 mac 195722 bytes_out 415085 195722 bytes_in 1734411 195722 station_ip 5.119.189.227 195722 port 550 195722 unique_id port 195722 remote_ip 10.8.0.58 195724 username majidsarmast 195724 mac 195724 bytes_out 2829527 195724 bytes_in 32757732 195724 station_ip 37.129.5.168 195724 port 547 195724 unique_id port 195724 remote_ip 10.8.0.146 195731 username sabaghnezhad 195731 mac 195731 bytes_out 29769 195731 bytes_in 37447 195731 station_ip 37.129.85.207 195731 port 549 195731 unique_id port 195731 remote_ip 10.8.0.66 195732 username sabaghnezhad 195732 mac 195732 bytes_out 0 195732 bytes_in 0 195732 station_ip 37.129.85.207 195732 port 549 195732 unique_id port 195732 remote_ip 10.8.0.66 195737 username mosi 195737 mac 195737 bytes_out 0 195737 bytes_in 0 195737 station_ip 78.39.28.131 195737 port 544 195737 unique_id port 195740 username motamedi9772 195740 mac 195740 bytes_out 211546 195740 bytes_in 1772556 195740 station_ip 83.123.228.47 195740 port 544 195740 unique_id port 195740 remote_ip 10.8.0.154 195741 username aminvpn 195741 mac 195741 bytes_out 508425 195741 bytes_in 309909 195741 station_ip 5.119.189.227 195741 port 548 195741 unique_id port 195741 remote_ip 10.8.0.58 195743 username soleymani5056 195743 mac 195743 bytes_out 125810 195743 bytes_in 296116 195743 station_ip 5.120.134.56 195743 port 544 195743 unique_id port 195743 remote_ip 10.8.0.226 195752 username hamid1430 195752 mac 195752 bytes_out 1622015 195752 bytes_in 5192180 195752 station_ip 83.122.181.184 195752 port 508 195752 unique_id port 195752 remote_ip 10.8.0.90 195757 username sabaghnezhad 195757 mac 195757 bytes_out 125487 195757 bytes_in 344345 195757 station_ip 37.129.85.207 195757 port 550 195757 unique_id port 195757 remote_ip 10.8.0.66 195762 username kalantary6037 195762 mac 195762 bytes_out 96611 195762 bytes_in 242337 195762 station_ip 37.129.18.159 195762 port 555 195762 unique_id port 195762 remote_ip 10.8.0.50 195765 username teymori5660 195765 mac 195765 bytes_out 290937 195765 bytes_in 2658541 195765 station_ip 5.120.73.6 195765 port 547 195765 unique_id port 195765 remote_ip 10.8.0.130 195766 username fezealinaghi 195766 mac 195766 bytes_out 697264 195766 bytes_in 2671030 195766 station_ip 113.203.16.151 195766 port 544 195766 unique_id port 195766 remote_ip 10.8.0.202 195767 username zahra1101 195767 mac 195767 bytes_out 0 195767 bytes_in 0 195767 station_ip 5.120.148.193 195767 port 544 195767 unique_id port 195705 port 551 195705 unique_id port 195705 remote_ip 10.8.0.86 195708 username daryaei1233 195708 mac 195708 bytes_out 1644 195708 bytes_in 3731 195708 station_ip 113.203.70.15 195708 port 552 195708 unique_id port 195708 remote_ip 10.8.0.86 195710 username farhad3 195710 mac 195710 bytes_out 877819 195710 bytes_in 6076315 195710 station_ip 5.119.232.249 195710 port 549 195710 unique_id port 195710 remote_ip 10.8.0.222 195711 username iranmanesh4443 195711 mac 195711 bytes_out 87002 195711 bytes_in 122852 195711 station_ip 5.120.29.192 195711 port 548 195711 unique_id port 195711 remote_ip 10.8.0.122 195714 username iranmanesh4443 195714 mac 195714 bytes_out 14386 195714 bytes_in 21080 195714 station_ip 5.120.29.192 195714 port 550 195714 unique_id port 195714 remote_ip 10.8.0.122 195721 username saeeddamghani 195721 unique_id port 195721 terminate_cause User-Request 195721 bytes_out 251304 195721 bytes_in 9500180 195721 station_ip 113.203.84.83 195721 port 15729424 195721 nas_port_type Virtual 195721 remote_ip 5.5.5.238 195723 username pourshad 195723 mac 195723 bytes_out 998011 195723 bytes_in 8315314 195723 station_ip 5.120.152.46 195723 port 543 195723 unique_id port 195723 remote_ip 10.8.0.42 195725 username meysam 195725 mac 195725 bytes_out 0 195725 bytes_in 0 195725 station_ip 188.158.51.227 195725 port 549 195725 unique_id port 195726 username mosi 195726 kill_reason Another user logged on this global unique id 195726 mac 195726 bytes_out 0 195726 bytes_in 0 195726 station_ip 78.39.28.131 195726 port 544 195726 unique_id port 195726 remote_ip 10.8.0.142 195727 username zahra1101 195727 kill_reason Another user logged on this global unique id 195727 mac 195727 bytes_out 0 195727 bytes_in 0 195727 station_ip 5.120.148.193 195727 port 548 195727 unique_id port 195727 remote_ip 10.8.0.30 195729 username barzegar 195729 mac 195729 bytes_out 0 195729 bytes_in 0 195729 station_ip 5.119.204.241 195729 port 554 195729 unique_id port 195729 remote_ip 10.8.0.70 195733 username saeeddamghani 195733 mac 195733 bytes_out 0 195733 bytes_in 0 195733 station_ip 217.60.175.206 195733 port 549 195733 unique_id port 195733 remote_ip 10.8.0.174 195734 username sabaghnezhad 195734 mac 195734 bytes_out 0 195734 bytes_in 0 195734 station_ip 37.129.85.207 195734 port 550 195734 unique_id port 195734 remote_ip 10.8.0.66 195738 username motamedi9772 195738 mac 195738 bytes_out 2875470 195738 bytes_in 30793247 195738 station_ip 83.123.228.47 195738 port 547 195738 unique_id port 195738 remote_ip 10.8.0.154 195739 username yaghobi 195739 mac 195739 bytes_out 433864 195739 bytes_in 539977 195739 station_ip 37.129.70.129 195739 port 555 195739 unique_id port 195739 remote_ip 10.8.0.138 195742 username meghdad1616 195742 mac 195742 bytes_out 0 195742 bytes_in 0 195742 station_ip 5.120.166.61 195742 port 544 195742 unique_id port 195742 remote_ip 10.8.0.230 195744 username fezealinaghi 195744 mac 195744 bytes_out 3391053 195744 bytes_in 28475933 195744 station_ip 37.129.206.102 195744 port 552 195744 unique_id port 195744 remote_ip 10.8.0.202 195746 username meghdad1616 195746 mac 195746 bytes_out 0 195746 bytes_in 0 195746 station_ip 5.120.166.61 195746 port 552 195746 unique_id port 195746 remote_ip 10.8.0.230 195747 username yaghobi 195747 mac 195747 bytes_out 73666 195747 bytes_in 95541 195747 station_ip 37.129.70.129 195747 port 556 195747 unique_id port 195747 remote_ip 10.8.0.138 195748 username mosi 195748 mac 195717 station_ip 37.129.67.196 195717 port 542 195717 unique_id port 195717 remote_ip 10.8.0.110 195719 username motamedi9772 195719 mac 195719 bytes_out 21569 195719 bytes_in 194966 195719 station_ip 83.123.228.47 195719 port 542 195719 unique_id port 195719 remote_ip 10.8.0.154 195720 username dortaj3792 195720 mac 195720 bytes_out 3993 195720 bytes_in 8697 195720 station_ip 5.119.136.18 195720 port 553 195720 unique_id port 195720 remote_ip 10.8.0.102 195728 username yaghobi 195728 mac 195728 bytes_out 41247 195728 bytes_in 51731 195728 station_ip 37.129.70.129 195728 port 550 195728 unique_id port 195728 remote_ip 10.8.0.138 195730 username mohammadjavad 195730 mac 195730 bytes_out 11211 195730 bytes_in 18006 195730 station_ip 37.129.67.196 195730 port 553 195730 unique_id port 195730 remote_ip 10.8.0.110 195735 username zahra1101 195735 mac 195735 bytes_out 0 195735 bytes_in 0 195735 station_ip 5.120.148.193 195735 port 548 195735 unique_id port 195736 username saeeddamghani 195736 kill_reason Maximum check online fails reached 195736 mac 195736 bytes_out 0 195736 bytes_in 0 195736 station_ip 217.60.175.206 195736 port 549 195736 unique_id port 195745 username yaghobi 195745 mac 195745 bytes_out 127299 195745 bytes_in 197250 195745 station_ip 37.129.70.129 195745 port 553 195745 unique_id port 195745 remote_ip 10.8.0.138 195749 username barzegar 195749 mac 195749 bytes_out 0 195749 bytes_in 0 195749 station_ip 5.119.251.17 195749 port 548 195749 unique_id port 195749 remote_ip 10.8.0.70 195750 username meysam 195750 mac 195750 bytes_out 2097213 195750 bytes_in 28076477 195750 station_ip 188.158.51.227 195750 port 555 195750 unique_id port 195750 remote_ip 10.8.0.158 195754 username zahra1101 195754 mac 195754 bytes_out 1761567 195754 bytes_in 18768552 195754 station_ip 5.120.148.193 195754 port 547 195754 unique_id port 195754 remote_ip 10.8.0.30 195755 username zahra1101 195755 mac 195755 bytes_out 0 195755 bytes_in 0 195755 station_ip 5.120.148.193 195755 port 547 195755 unique_id port 195755 remote_ip 10.8.0.30 195756 username aminvpn 195756 mac 195756 bytes_out 47824 195756 bytes_in 76514 195756 station_ip 5.119.189.227 195756 port 508 195756 unique_id port 195756 remote_ip 10.8.0.58 195758 username aminvpn 195758 mac 195758 bytes_out 0 195758 bytes_in 0 195758 station_ip 5.119.189.227 195758 port 554 195758 unique_id port 195758 remote_ip 10.8.0.58 195759 username sabaghnezhad 195759 mac 195759 bytes_out 7081 195759 bytes_in 10882 195759 station_ip 37.129.85.207 195759 port 508 195759 unique_id port 195759 remote_ip 10.8.0.66 195761 username aminvpn 195761 mac 195761 bytes_out 64939 195761 bytes_in 75663 195761 station_ip 5.119.189.227 195761 port 550 195761 unique_id port 195761 remote_ip 10.8.0.58 195763 username sabaghnezhad 195763 mac 195763 bytes_out 1656 195763 bytes_in 5745 195763 station_ip 37.129.85.207 195763 port 556 195763 unique_id port 195763 remote_ip 10.8.0.66 195769 username zahra1101 195769 kill_reason Maximum check online fails reached 195769 mac 195769 bytes_out 0 195769 bytes_in 0 195769 station_ip 5.120.148.193 195769 port 544 195769 unique_id port 195773 username aminvpn 195773 unique_id port 195773 terminate_cause Lost-Carrier 195773 bytes_out 6381867 195773 bytes_in 120755001 195773 station_ip 31.57.124.99 195773 port 15729425 195773 nas_port_type Virtual 195773 remote_ip 5.5.5.241 195780 username saeeddamghani 195780 mac 195780 bytes_out 345202 195780 bytes_in 3072316 195748 bytes_out 388095 195748 bytes_in 4359934 195748 station_ip 2.183.130.172 195748 port 548 195748 unique_id port 195748 remote_ip 10.8.0.142 195751 username aminvpn 195751 kill_reason Another user logged on this global unique id 195751 mac 195751 bytes_out 0 195751 bytes_in 0 195751 station_ip 5.119.189.227 195751 port 554 195751 unique_id port 195751 remote_ip 10.8.0.58 195753 username aminvpn 195753 mac 195753 bytes_out 0 195753 bytes_in 0 195753 station_ip 5.119.189.227 195753 port 554 195753 unique_id port 195760 username zahra1101 195760 mac 195760 bytes_out 13367 195760 bytes_in 187147 195760 station_ip 5.120.148.193 195760 port 554 195760 unique_id port 195760 remote_ip 10.8.0.30 195764 username akbari0070 195764 mac 195764 bytes_out 1711743 195764 bytes_in 1531631 195764 station_ip 37.129.109.239 195764 port 547 195764 unique_id port 195764 remote_ip 10.8.0.166 195768 username esmaeili1522 195768 mac 195768 bytes_out 1384065 195768 bytes_in 17934588 195768 station_ip 5.119.219.245 195768 port 552 195768 unique_id port 195768 remote_ip 10.8.0.170 195772 username barzegar 195772 mac 195772 bytes_out 0 195772 bytes_in 0 195772 station_ip 5.119.251.17 195772 port 508 195772 unique_id port 195772 remote_ip 10.8.0.70 195775 username motamedi9772 195775 kill_reason Another user logged on this global unique id 195775 mac 195775 bytes_out 0 195775 bytes_in 0 195775 station_ip 83.123.176.163 195775 port 547 195775 unique_id port 195775 remote_ip 10.8.0.154 195777 username akbari0070 195777 mac 195777 bytes_out 3122426 195777 bytes_in 44040242 195777 station_ip 37.129.109.239 195777 port 550 195777 unique_id port 195777 remote_ip 10.8.0.166 195779 username mohammadjavad 195779 mac 195779 bytes_out 0 195779 bytes_in 0 195779 station_ip 37.27.48.133 195779 port 550 195779 unique_id port 195779 remote_ip 10.8.0.110 195786 username motamedi9772 195786 mac 195786 bytes_out 1327917 195786 bytes_in 16701417 195786 station_ip 83.123.176.163 195786 port 547 195786 unique_id port 195786 remote_ip 10.8.0.154 195787 username zahra1101 195787 mac 195787 bytes_out 4056 195787 bytes_in 6284 195787 station_ip 5.120.148.193 195787 port 552 195787 unique_id port 195787 remote_ip 10.8.0.30 195789 username sabaghnezhad 195789 mac 195789 bytes_out 13444 195789 bytes_in 15390 195789 station_ip 37.129.85.207 195789 port 547 195789 unique_id port 195789 remote_ip 10.8.0.66 195791 username saeeddamghani 195791 kill_reason Another user logged on this global unique id 195791 mac 195791 bytes_out 0 195791 bytes_in 0 195791 station_ip 217.60.175.206 195791 port 508 195791 unique_id port 195791 remote_ip 10.8.0.174 195794 username yaghobi 195794 mac 195794 bytes_out 598410 195794 bytes_in 685216 195794 station_ip 37.129.19.199 195794 port 554 195794 unique_id port 195794 remote_ip 10.8.0.138 195795 username meysam 195795 mac 195795 bytes_out 332649 195795 bytes_in 3926883 195795 station_ip 188.158.51.227 195795 port 547 195795 unique_id port 195795 remote_ip 10.8.0.158 195796 username zahra1101 195796 mac 195796 bytes_out 0 195796 bytes_in 0 195796 station_ip 5.120.148.193 195796 port 547 195796 unique_id port 195796 remote_ip 10.8.0.30 195799 username zahra1101 195799 kill_reason Maximum check online fails reached 195799 mac 195799 bytes_out 0 195799 bytes_in 0 195799 station_ip 5.120.148.193 195799 port 552 195799 unique_id port 195801 username sekonji0496 195801 mac 195801 bytes_out 1806 195801 bytes_in 3874 195801 station_ip 83.123.135.59 195801 port 508 195767 remote_ip 10.8.0.30 195770 username yaghobi 195770 mac 195770 bytes_out 1166442 195770 bytes_in 1805926 195770 station_ip 83.122.81.199 195770 port 553 195770 unique_id port 195770 remote_ip 10.8.0.138 195771 username aminvpn 195771 mac 195771 bytes_out 503581 195771 bytes_in 1858476 195771 station_ip 5.119.189.227 195771 port 508 195771 unique_id port 195771 remote_ip 10.8.0.58 195774 username zahra1101 195774 mac 195774 bytes_out 0 195774 bytes_in 0 195774 station_ip 5.120.148.193 195774 port 553 195774 unique_id port 195774 remote_ip 10.8.0.30 195776 username mohammadjavad 195776 mac 195776 bytes_out 0 195776 bytes_in 0 195776 station_ip 37.27.48.133 195776 port 555 195776 unique_id port 195776 remote_ip 10.8.0.110 195778 username zahra1101 195778 mac 195778 bytes_out 0 195778 bytes_in 0 195778 station_ip 5.120.148.193 195778 port 550 195778 unique_id port 195778 remote_ip 10.8.0.30 195785 username malekpoir 195785 mac 195785 bytes_out 23541 195785 bytes_in 37350 195785 station_ip 5.119.50.96 195785 port 508 195785 unique_id port 195785 remote_ip 10.8.0.18 195788 username meysam 195788 mac 195788 bytes_out 124592 195788 bytes_in 1577671 195788 station_ip 188.158.51.227 195788 port 550 195788 unique_id port 195788 remote_ip 10.8.0.158 195790 username malekpoir 195790 mac 195790 bytes_out 7101 195790 bytes_in 9327 195790 station_ip 5.119.50.96 195790 port 555 195790 unique_id port 195790 remote_ip 10.8.0.18 195792 username mammad 195792 unique_id port 195792 terminate_cause User-Request 195792 bytes_out 13413555 195792 bytes_in 220545928 195792 station_ip 2.183.246.246 195792 port 15729422 195792 nas_port_type Virtual 195792 remote_ip 5.5.5.255 195797 username saeeddamghani 195797 mac 195797 bytes_out 0 195797 bytes_in 0 195797 station_ip 217.60.175.206 195797 port 508 195797 unique_id port 195803 username godarzi 195803 mac 195803 bytes_out 3938219 195803 bytes_in 45564100 195803 station_ip 5.120.66.4 195803 port 553 195803 unique_id port 195803 remote_ip 10.8.0.38 195805 username kalantary6037 195805 mac 195805 bytes_out 482102 195805 bytes_in 1067468 195805 station_ip 37.129.123.47 195805 port 550 195805 unique_id port 195805 remote_ip 10.8.0.50 195812 username malekpoir 195812 kill_reason Another user logged on this global unique id 195812 mac 195812 bytes_out 0 195812 bytes_in 0 195812 station_ip 5.119.50.96 195812 port 554 195812 unique_id port 195812 remote_ip 10.8.0.18 195813 username yaghobi 195813 kill_reason Maximum check online fails reached 195813 mac 195813 bytes_out 441951 195813 bytes_in 553389 195813 station_ip 113.203.85.226 195813 port 555 195813 unique_id port 195813 remote_ip 10.8.0.138 195816 username soleymani5056 195816 mac 195816 bytes_out 180087 195816 bytes_in 911620 195816 station_ip 5.120.186.33 195816 port 558 195816 unique_id port 195816 remote_ip 10.8.0.226 195819 username soleymani5056 195819 mac 195819 bytes_out 233974 195819 bytes_in 416990 195819 station_ip 5.119.209.231 195819 port 547 195819 unique_id port 195819 remote_ip 10.8.0.226 195821 username godarzi 195821 mac 195821 bytes_out 839592 195821 bytes_in 5545132 195821 station_ip 5.120.66.4 195821 port 553 195821 unique_id port 195821 remote_ip 10.8.0.38 195823 username soleymani5056 195823 mac 195823 bytes_out 80353 195823 bytes_in 124834 195823 station_ip 5.120.57.53 195823 port 555 195823 unique_id port 195823 remote_ip 10.8.0.226 195828 username saeeddamghani 195828 kill_reason Another user logged on this global unique id 195828 mac 195780 station_ip 217.60.175.206 195780 port 552 195780 unique_id port 195780 remote_ip 10.8.0.174 195781 username mohammadjavad 195781 mac 195781 bytes_out 0 195781 bytes_in 0 195781 station_ip 37.27.48.133 195781 port 550 195781 unique_id port 195781 remote_ip 10.8.0.110 195782 username motamedi9772 195782 mac 195782 bytes_out 0 195782 bytes_in 0 195782 station_ip 83.123.176.163 195782 port 547 195782 unique_id port 195783 username barzegar 195783 mac 195783 bytes_out 0 195783 bytes_in 0 195783 station_ip 5.119.251.17 195783 port 550 195783 unique_id port 195783 remote_ip 10.8.0.70 195784 username meysam 195784 mac 195784 bytes_out 1801010 195784 bytes_in 24904920 195784 station_ip 188.158.51.227 195784 port 555 195784 unique_id port 195784 remote_ip 10.8.0.158 195793 username barzegar 195793 mac 195793 bytes_out 0 195793 bytes_in 0 195793 station_ip 5.119.251.17 195793 port 550 195793 unique_id port 195793 remote_ip 10.8.0.70 195798 username mosi 195798 mac 195798 bytes_out 907819 195798 bytes_in 2944605 195798 station_ip 87.251.148.180 195798 port 548 195798 unique_id port 195798 remote_ip 10.8.0.142 195800 username meysam 195800 mac 195800 bytes_out 864362 195800 bytes_in 12080775 195800 station_ip 188.158.51.255 195800 port 550 195800 unique_id port 195800 remote_ip 10.8.0.158 195802 username meysam 195802 mac 195802 bytes_out 211768 195802 bytes_in 2499198 195802 station_ip 188.158.51.255 195802 port 550 195802 unique_id port 195802 remote_ip 10.8.0.158 195804 username yaghobi 195804 mac 195804 bytes_out 1716486 195804 bytes_in 11035267 195804 station_ip 83.123.56.31 195804 port 547 195804 unique_id port 195804 remote_ip 10.8.0.138 195806 username majidsarmast 195806 mac 195806 bytes_out 616587 195806 bytes_in 3929635 195806 station_ip 37.129.5.168 195806 port 543 195806 unique_id port 195806 remote_ip 10.8.0.146 195810 username barzegar 195810 mac 195810 bytes_out 6294 195810 bytes_in 7620 195810 station_ip 5.119.251.17 195810 port 548 195810 unique_id port 195810 remote_ip 10.8.0.70 195815 username rajaei 195815 mac 195815 bytes_out 3408813 195815 bytes_in 44411933 195815 station_ip 37.156.63.215 195815 port 547 195815 unique_id port 195815 remote_ip 10.8.0.250 195824 username barzegar 195824 mac 195824 bytes_out 0 195824 bytes_in 0 195824 station_ip 5.119.251.17 195824 port 508 195824 unique_id port 195829 username soleymani5056 195829 mac 195829 bytes_out 60350 195829 bytes_in 159404 195829 station_ip 5.119.90.131 195829 port 547 195829 unique_id port 195829 remote_ip 10.8.0.226 195830 username barzegar 195830 mac 195830 bytes_out 0 195830 bytes_in 0 195830 station_ip 5.119.251.17 195830 port 547 195830 unique_id port 195830 remote_ip 10.8.0.70 195831 username kharazmi2920 195831 mac 195831 bytes_out 383250 195831 bytes_in 4051814 195831 station_ip 83.123.18.69 195831 port 548 195831 unique_id port 195831 remote_ip 10.8.0.22 195833 username barzegar 195833 mac 195833 bytes_out 0 195833 bytes_in 0 195833 station_ip 5.119.251.17 195833 port 548 195833 unique_id port 195833 remote_ip 10.8.0.70 195835 username saeeddamghani 195835 mac 195835 bytes_out 0 195835 bytes_in 0 195835 station_ip 217.60.175.206 195835 port 554 195835 unique_id port 195835 remote_ip 10.8.0.174 195883 bytes_in 0 195883 station_ip 83.123.81.211 195883 port 4 195883 unique_id port 195883 remote_ip 10.8.0.18 195884 username aminvpnpc 195884 kill_reason Another user logged on this global unique id 195801 unique_id port 195801 remote_ip 10.8.0.62 195807 username saeeddamghani 195807 mac 195807 bytes_out 0 195807 bytes_in 0 195807 station_ip 217.60.175.206 195807 port 547 195807 unique_id port 195807 remote_ip 10.8.0.174 195808 username zahra1101 195808 mac 195808 bytes_out 0 195808 bytes_in 0 195808 station_ip 5.120.148.193 195808 port 557 195808 unique_id port 195808 remote_ip 10.8.0.30 195809 username barzegar 195809 mac 195809 bytes_out 637723 195809 bytes_in 5850578 195809 station_ip 5.119.251.17 195809 port 548 195809 unique_id port 195809 remote_ip 10.8.0.70 195811 username pourshad 195811 mac 195811 bytes_out 151982 195811 bytes_in 660466 195811 station_ip 5.120.152.46 195811 port 508 195811 unique_id port 195811 remote_ip 10.8.0.42 195814 username pourshad 195814 mac 195814 bytes_out 40090 195814 bytes_in 83625 195814 station_ip 5.120.152.46 195814 port 508 195814 unique_id port 195814 remote_ip 10.8.0.42 195817 username mahdixz 195817 kill_reason Relative expiration date has reached 195817 unique_id port 195817 bytes_out 0 195817 bytes_in 0 195817 station_ip 94.176.11.167 195817 port 15729426 195817 nas_port_type Virtual 195818 username barzegar 195818 kill_reason Another user logged on this global unique id 195818 mac 195818 bytes_out 0 195818 bytes_in 0 195818 station_ip 5.119.251.17 195818 port 508 195818 unique_id port 195818 remote_ip 10.8.0.70 195820 username aminvpn 195820 mac 195820 bytes_out 4081578 195820 bytes_in 26487476 195820 station_ip 5.119.189.227 195820 port 556 195820 unique_id port 195820 remote_ip 10.8.0.58 195822 username barzegar8595 195822 mac 195822 bytes_out 1340368 195822 bytes_in 14252892 195822 station_ip 46.225.232.106 195822 port 543 195822 unique_id port 195822 remote_ip 10.8.0.114 195825 username yaghobi 195825 mac 195825 bytes_out 42817 195825 bytes_in 55453 195825 station_ip 113.203.85.226 195825 port 558 195825 unique_id port 195825 remote_ip 10.8.0.138 195826 username malekpoir 195826 mac 195826 bytes_out 0 195826 bytes_in 0 195826 station_ip 5.119.50.96 195826 port 554 195826 unique_id port 195827 username kalantary6037 195827 mac 195827 bytes_out 2584678 195827 bytes_in 23063826 195827 station_ip 37.129.76.67 195827 port 548 195827 unique_id port 195827 remote_ip 10.8.0.50 196842 username hashtadani5 196842 mac 196842 bytes_out 0 196842 bytes_in 0 196842 station_ip 37.129.77.168 196842 port 13 196842 unique_id port 196842 remote_ip 10.8.1.106 196843 username hashtadani5 196843 mac 196843 bytes_out 0 196843 bytes_in 0 196843 station_ip 37.129.77.168 196843 port 9 196843 unique_id port 196843 remote_ip 10.8.0.74 196845 username shahruz 196845 mac 196845 bytes_out 0 196845 bytes_in 0 196845 station_ip 37.129.49.183 196845 port 10 196845 unique_id port 196845 remote_ip 10.8.1.150 196846 username shahruz 196846 mac 196846 bytes_out 0 196846 bytes_in 0 196846 station_ip 37.129.49.183 196846 port 9 196846 unique_id port 196846 remote_ip 10.8.0.178 196847 username barzegar 196847 mac 196847 bytes_out 0 196847 bytes_in 0 196847 station_ip 5.119.251.17 196847 port 10 196847 unique_id port 196847 remote_ip 10.8.1.138 196854 mac 196854 bytes_out 0 196854 bytes_in 0 196854 station_ip 37.129.77.168 196854 port 9 196854 unique_id port 196854 remote_ip 10.8.0.74 196856 username shahruz 196856 mac 196856 bytes_out 0 196856 bytes_in 0 196856 station_ip 37.129.49.183 196856 port 9 196856 unique_id port 196856 remote_ip 10.8.0.178 195828 bytes_out 0 195828 bytes_in 0 195828 station_ip 217.60.175.206 195828 port 557 195828 unique_id port 195828 remote_ip 10.8.0.174 195832 username saeeddamghani 195832 mac 195832 bytes_out 0 195832 bytes_in 0 195832 station_ip 217.60.175.206 195832 port 557 195832 unique_id port 195834 username saeeddamghani 195834 mac 195834 bytes_out 0 195834 bytes_in 0 195834 station_ip 217.60.175.206 195834 port 554 195834 unique_id port 195834 remote_ip 10.8.0.174 195868 username majidsarmast 195868 kill_reason Another user logged on this global unique id 195868 mac 195868 bytes_out 0 195868 bytes_in 0 195868 station_ip 37.129.5.168 195868 port 1 195868 unique_id port 195868 remote_ip 10.8.0.6 195869 username yaghobi 195869 kill_reason Another user logged on this global unique id 195869 mac 195869 bytes_out 0 195869 bytes_in 0 195869 station_ip 37.129.173.107 195869 port 2 195869 unique_id port 195869 remote_ip 10.8.0.10 195870 username barzegar8595 195870 mac 195870 bytes_out 11893 195870 bytes_in 12866 195870 station_ip 46.225.232.106 195870 port 1 195870 unique_id port 195870 remote_ip 10.8.1.6 195871 username zahra1101 195871 mac 195871 bytes_out 0 195871 bytes_in 0 195871 station_ip 5.120.148.193 195871 port 2 195871 unique_id port 195871 remote_ip 10.8.1.10 195872 username barzegar 195872 mac 195872 bytes_out 0 195872 bytes_in 0 195872 station_ip 5.119.251.17 195872 port 4 195872 unique_id port 195872 remote_ip 10.8.0.18 195873 username motamedi9772 195873 mac 195873 bytes_out 0 195873 bytes_in 0 195873 station_ip 83.123.202.35 195873 port 3 195873 unique_id port 195873 remote_ip 10.8.0.14 195874 username motamedi9772 195874 mac 195874 bytes_out 0 195874 bytes_in 0 195874 station_ip 83.123.202.35 195874 port 1 195874 unique_id port 195874 remote_ip 10.8.0.6 195875 username malekpoir 195875 kill_reason Another user logged on this global unique id 195875 mac 195875 bytes_out 0 195875 bytes_in 0 195875 station_ip 5.119.50.96 195875 port 1 195875 unique_id port 195875 remote_ip 10.8.1.6 195876 username aminvpn 195876 kill_reason Another user logged on this global unique id 195876 mac 195876 bytes_out 0 195876 bytes_in 0 195876 station_ip 5.120.181.124 195876 port 1 195876 unique_id port 195877 username saeeddamghani 195877 kill_reason Another user logged on this global unique id 195877 mac 195877 bytes_out 0 195877 bytes_in 0 195877 station_ip 217.60.175.206 195877 port 2 195877 unique_id port 195877 remote_ip 10.8.1.10 195878 username hosseine 195878 kill_reason Another user logged on this global unique id 195878 mac 195878 bytes_out 0 195878 bytes_in 0 195878 station_ip 83.123.81.211 195878 port 2 195878 unique_id port 195879 username yaghobi 195879 kill_reason Another user logged on this global unique id 195879 mac 195879 bytes_out 0 195879 bytes_in 0 195879 station_ip 37.129.173.107 195879 port 2 195879 unique_id port 195880 username aminvpn 195880 kill_reason Another user logged on this global unique id 195880 mac 195880 bytes_out 0 195880 bytes_in 0 195880 station_ip 5.119.189.227 195880 port 3 195880 unique_id port 195880 remote_ip 10.8.1.14 195881 username zahra1101 195881 mac 195881 bytes_out 0 195881 bytes_in 0 195881 station_ip 5.120.148.193 195881 port 4 195881 unique_id port 195881 remote_ip 10.8.1.18 195882 username aminvpn 195882 mac 195882 bytes_out 0 195882 bytes_in 0 195882 station_ip 5.120.181.124 195882 port 1 195882 unique_id port 195882 remote_ip 10.8.0.6 195883 username hosseine 195883 kill_reason Another user logged on this global unique id 195883 mac 195883 bytes_out 0 195884 mac 195884 bytes_out 0 195884 bytes_in 0 195884 station_ip 5.120.181.124 195884 port 5 195884 unique_id port 195884 remote_ip 10.8.0.22 195887 username zahra1101 195887 mac 195887 bytes_out 0 195887 bytes_in 0 195887 station_ip 5.120.148.193 195887 port 2 195887 unique_id port 195887 remote_ip 10.8.1.18 195888 username soleymani5056 195888 mac 195888 bytes_out 0 195888 bytes_in 0 195888 station_ip 5.119.190.204 195888 port 1 195888 unique_id port 195888 remote_ip 10.8.0.30 195889 username zahra1101 195889 mac 195889 bytes_out 0 195889 bytes_in 0 195889 station_ip 5.120.148.193 195889 port 2 195889 unique_id port 195889 remote_ip 10.8.1.18 195890 username zahra1101 195890 mac 195890 bytes_out 0 195890 bytes_in 0 195890 station_ip 5.120.148.193 195890 port 2 195890 unique_id port 195890 remote_ip 10.8.1.18 195892 username yaghobi 195892 mac 195892 bytes_out 0 195892 bytes_in 0 195892 station_ip 37.129.173.107 195892 port 7 195892 unique_id port 195892 remote_ip 10.8.0.14 195893 username esmaeilkazemi 195893 mac 195893 bytes_out 0 195893 bytes_in 0 195893 station_ip 83.122.79.138 195893 port 1 195893 unique_id port 195893 remote_ip 10.8.0.34 195900 username saeeddamghani 195900 mac 195900 bytes_out 0 195900 bytes_in 0 195900 station_ip 217.60.175.206 195900 port 2 195900 unique_id port 195900 remote_ip 10.8.0.38 195904 username akbari0070 195904 mac 195904 bytes_out 40059 195904 bytes_in 331197 195904 station_ip 37.129.81.203 195904 port 2 195904 unique_id port 195904 remote_ip 10.8.0.10 195905 username yaghobi 195905 mac 195905 bytes_out 2020783 195905 bytes_in 2819219 195905 station_ip 37.129.173.107 195905 port 1 195905 unique_id port 195905 remote_ip 10.8.0.14 195909 username yaghobi 195909 kill_reason Maximum check online fails reached, Maximum check online fails reached, Maximum check online fails reached 195909 mac 195909 bytes_out 231140 195909 bytes_in 337602 195909 station_ip 37.129.173.107 195909 port 2 195909 unique_id port 195909 remote_ip 10.8.0.14 195910 username zahra1101 195910 mac 195910 bytes_out 0 195910 bytes_in 0 195910 station_ip 5.120.148.193 195910 port 2 195910 unique_id port 195910 remote_ip 10.8.1.18 195912 username aminvpn 195912 kill_reason Another user logged on this global unique id 195912 mac 195912 bytes_out 0 195912 bytes_in 0 195912 station_ip 5.119.189.227 195912 port 3 195912 unique_id port 195914 username hajghani 195914 mac 195914 bytes_out 398179 195914 bytes_in 814635 195914 station_ip 89.47.69.210 195914 port 6 195914 unique_id port 195914 remote_ip 10.8.1.30 195915 username hajghani 195915 mac 195915 bytes_out 0 195915 bytes_in 0 195915 station_ip 89.47.69.210 195915 port 2 195915 unique_id port 195915 remote_ip 10.8.1.30 195920 username yaghobi 195920 mac 195920 bytes_out 10949896 195920 bytes_in 149795674 195920 station_ip 37.129.10.18 195920 port 3 195920 unique_id port 195920 remote_ip 10.8.0.14 195921 username zahra1101 195921 mac 195921 bytes_out 0 195921 bytes_in 0 195921 station_ip 5.120.148.193 195921 port 6 195921 unique_id port 195921 remote_ip 10.8.1.18 195922 username aminvpn 195922 unique_id port 195922 terminate_cause User-Request 195922 bytes_out 204107 195922 bytes_in 1320092 195922 station_ip 31.57.124.99 195922 port 15729433 195922 nas_port_type Virtual 195922 remote_ip 5.5.5.241 195925 username zahra1101 195925 mac 195925 bytes_out 0 195925 bytes_in 0 195925 station_ip 5.120.148.193 195925 port 6 195925 unique_id port 195925 remote_ip 10.8.1.18 195885 username yaghobi 195885 mac 195885 bytes_out 57052 195885 bytes_in 154738 195885 station_ip 37.129.173.107 195885 port 2 195885 unique_id port 195885 remote_ip 10.8.0.14 195886 username zahra1101 195886 mac 195886 bytes_out 2807 195886 bytes_in 5264 195886 station_ip 5.120.148.193 195886 port 5 195886 unique_id port 195886 remote_ip 10.8.1.18 195894 username esmaeilkazemi 195894 mac 195894 bytes_out 0 195894 bytes_in 0 195894 station_ip 83.122.79.138 195894 port 2 195894 unique_id port 195894 remote_ip 10.8.0.34 195897 username akbari0070 195897 kill_reason Another user logged on this global unique id 195897 mac 195897 bytes_out 0 195897 bytes_in 0 195897 station_ip 37.129.81.203 195897 port 3 195897 unique_id port 195897 remote_ip 10.8.0.10 195898 username hamid.e 195898 unique_id port 195898 terminate_cause User-Request 195898 bytes_out 5661559 195898 bytes_in 204676999 195898 station_ip 31.56.157.219 195898 port 15729431 195898 nas_port_type Virtual 195898 remote_ip 5.5.5.243 195902 username saeeddamghani 195902 mac 195902 bytes_out 0 195902 bytes_in 0 195902 station_ip 217.60.175.206 195902 port 2 195902 unique_id port 195902 remote_ip 10.8.0.38 195907 username malekpoir 195907 mac 195907 bytes_out 8799 195907 bytes_in 13183 195907 station_ip 5.119.50.96 195907 port 1 195907 unique_id port 195907 remote_ip 10.8.1.6 195908 username sabaghnezhad 195908 kill_reason Another user logged on this global unique id 195908 mac 195908 bytes_out 0 195908 bytes_in 0 195908 station_ip 37.129.85.207 195908 port 6 195908 unique_id port 195908 remote_ip 10.8.0.26 195913 username aminvpn 195913 kill_reason Another user logged on this global unique id 195913 mac 195913 bytes_out 0 195913 bytes_in 0 195913 station_ip 5.119.189.227 195913 port 3 195913 unique_id port 195916 username hajghani 195916 kill_reason Another user logged on this global unique id 195916 mac 195916 bytes_out 0 195916 bytes_in 0 195916 station_ip 89.34.32.23 195916 port 2 195916 unique_id port 195916 remote_ip 10.8.1.30 195923 username houshang 195923 kill_reason Another user logged on this global unique id 195923 mac 195923 bytes_out 0 195923 bytes_in 0 195923 station_ip 5.119.107.129 195923 port 3 195923 unique_id port 195923 remote_ip 10.8.0.46 195930 username zahra1101 195930 mac 195930 bytes_out 0 195930 bytes_in 0 195930 station_ip 5.120.148.193 195930 port 5 195930 unique_id port 195938 username malekpoir 195938 mac 195938 bytes_out 0 195938 bytes_in 0 195938 station_ip 5.119.182.62 195938 port 8 195938 unique_id port 195938 remote_ip 10.8.1.6 195939 username aminvpn 195939 mac 195939 bytes_out 2849916 195939 bytes_in 38075595 195939 station_ip 5.119.189.227 195939 port 1 195939 unique_id port 195939 remote_ip 10.8.1.14 195941 username zahra1101 195941 mac 195941 bytes_out 0 195941 bytes_in 0 195941 station_ip 5.120.148.193 195941 port 6 195941 unique_id port 195941 remote_ip 10.8.1.18 195946 username saeeddamghani 195946 mac 195946 bytes_out 0 195946 bytes_in 0 195946 station_ip 217.60.175.206 195946 port 2 195946 unique_id port 195946 remote_ip 10.8.1.10 195951 username aminvpn 195951 unique_id port 195951 terminate_cause User-Request 195951 bytes_out 966893 195951 bytes_in 22925684 195951 station_ip 31.57.124.99 195951 port 15729436 195951 nas_port_type Virtual 195951 remote_ip 5.5.5.241 195952 username dortaj3792 195952 kill_reason Another user logged on this global unique id 195952 mac 195952 bytes_out 0 195952 bytes_in 0 195952 station_ip 5.119.222.122 195952 port 3 195952 unique_id port 195955 username zahra1101 195891 username yaghobi 195891 kill_reason Maximum number of concurrent logins reached 195891 mac 195891 bytes_out 0 195891 bytes_in 0 195891 station_ip 37.129.173.107 195891 port 1 195891 unique_id port 195895 username esmaeilkazemi 195895 mac 195895 bytes_out 20106 195895 bytes_in 99189 195895 station_ip 83.122.79.138 195895 port 1 195895 unique_id port 195895 remote_ip 10.8.0.34 195896 username saeeddamghani 195896 mac 195896 bytes_out 0 195896 bytes_in 0 195896 station_ip 217.60.175.206 195896 port 2 195896 unique_id port 195896 remote_ip 10.8.1.10 195899 username kalantary6037 195899 kill_reason Another user logged on this global unique id 195899 mac 195899 bytes_out 0 195899 bytes_in 0 195899 station_ip 37.129.12.75 195899 port 2 195899 unique_id port 195899 remote_ip 10.8.1.26 195901 username aminvpn 195901 unique_id port 195901 terminate_cause User-Request 195901 bytes_out 168691 195901 bytes_in 1238890 195901 station_ip 31.57.124.99 195901 port 15729432 195901 nas_port_type Virtual 195901 remote_ip 5.5.5.241 195903 username akbari0070 195903 mac 195903 bytes_out 0 195903 bytes_in 0 195903 station_ip 37.129.81.203 195903 port 3 195903 unique_id port 195906 username zahra1101 195906 mac 195906 bytes_out 0 195906 bytes_in 0 195906 station_ip 5.120.148.193 195906 port 1 195906 unique_id port 195906 remote_ip 10.8.1.18 195911 username godarzi 195911 mac 195911 bytes_out 0 195911 bytes_in 0 195911 station_ip 45.84.157.190 195911 port 4 195911 unique_id port 195911 remote_ip 10.8.1.22 195917 username soleymani5056 195917 mac 195917 bytes_out 379661 195917 bytes_in 3305995 195917 station_ip 5.119.140.191 195917 port 2 195917 unique_id port 195917 remote_ip 10.8.0.30 195918 username yaghobi 195918 kill_reason Maximum number of concurrent logins reached 195918 mac 195918 bytes_out 0 195918 bytes_in 0 195918 station_ip 37.129.10.18 195918 port 2 195918 unique_id port 195919 username yaghobi 195919 kill_reason Maximum number of concurrent logins reached 195919 mac 195919 bytes_out 0 195919 bytes_in 0 195919 station_ip 37.129.10.18 195919 port 2 195919 unique_id port 195924 username yaghobi 195924 kill_reason Another user logged on this global unique id 195924 mac 195924 bytes_out 0 195924 bytes_in 0 195924 station_ip 37.129.107.132 195924 port 2 195924 unique_id port 195924 remote_ip 10.8.0.14 195927 username aminvpn 195927 mac 195927 bytes_out 0 195927 bytes_in 0 195927 station_ip 5.119.189.227 195927 port 3 195927 unique_id port 195928 username hamid1430 195928 mac 195928 bytes_out 0 195928 bytes_in 0 195928 station_ip 83.122.107.116 195928 port 1 195928 unique_id port 195928 remote_ip 10.8.0.42 195931 username farhad3 195931 mac 195931 bytes_out 0 195931 bytes_in 0 195931 station_ip 5.119.232.249 195931 port 3 195931 unique_id port 195931 remote_ip 10.8.1.34 195932 username saeeddamghani 195932 mac 195932 bytes_out 1777449 195932 bytes_in 17440819 195932 station_ip 217.60.175.206 195932 port 4 195932 unique_id port 195932 remote_ip 10.8.1.10 195933 username sabaghnezhad 195933 mac 195933 bytes_out 7272 195933 bytes_in 9830 195933 station_ip 37.129.85.207 195933 port 6 195933 unique_id port 195933 remote_ip 10.8.0.26 195936 username yaghobi 195936 kill_reason Another user logged on this global unique id 195936 mac 195936 bytes_out 0 195936 bytes_in 0 195936 station_ip 37.129.10.18 195936 port 3 195936 unique_id port 195936 remote_ip 10.8.0.14 195937 username zahra1101 195937 mac 195937 bytes_out 0 195937 bytes_in 0 195937 station_ip 5.120.148.193 195937 port 4 195926 username akbari0070 195926 kill_reason Another user logged on this global unique id 195926 mac 195926 bytes_out 0 195926 bytes_in 0 195926 station_ip 37.129.28.227 195926 port 7 195926 unique_id port 195926 remote_ip 10.8.0.10 195929 username kalantary6037 195929 mac 195929 bytes_out 797282 195929 bytes_in 7603239 195929 station_ip 37.129.95.131 195929 port 7 195929 unique_id port 195929 remote_ip 10.8.1.26 195934 username farhad3 195934 mac 195934 bytes_out 128456 195934 bytes_in 147489 195934 station_ip 5.119.232.249 195934 port 3 195934 unique_id port 195934 remote_ip 10.8.1.34 195935 username hajghani 195935 mac 195935 bytes_out 0 195935 bytes_in 0 195935 station_ip 89.34.32.23 195935 port 2 195935 unique_id port 195942 username dortaj3792 195942 kill_reason Another user logged on this global unique id 195942 mac 195942 bytes_out 0 195942 bytes_in 0 195942 station_ip 5.119.222.122 195942 port 3 195942 unique_id port 195942 remote_ip 10.8.1.38 195944 username dortaj3792 195944 mac 195944 bytes_out 0 195944 bytes_in 0 195944 station_ip 5.119.222.122 195944 port 3 195944 unique_id port 195947 username zahra1101 195947 kill_reason Another user logged on this global unique id 195947 mac 195947 bytes_out 0 195947 bytes_in 0 195947 station_ip 5.120.148.193 195947 port 2 195947 unique_id port 195947 remote_ip 10.8.1.18 195948 username saeeddamghani 195948 mac 195948 bytes_out 0 195948 bytes_in 0 195948 station_ip 217.60.175.206 195948 port 2 195948 unique_id port 195948 remote_ip 10.8.0.38 195950 username yaghobi 195950 kill_reason Maximum check online fails reached 195950 mac 195950 bytes_out 757410 195950 bytes_in 7612010 195950 station_ip 37.129.10.18 195950 port 2 195950 unique_id port 195950 remote_ip 10.8.0.14 195956 username saeeddamghani 195956 mac 195956 bytes_out 0 195956 bytes_in 0 195956 station_ip 217.60.175.206 195956 port 5 195956 unique_id port 195956 remote_ip 10.8.0.38 195959 username kalantary6037 195959 mac 195959 bytes_out 585926 195959 bytes_in 2233014 195959 station_ip 37.129.72.179 195959 port 3 195959 unique_id port 195959 remote_ip 10.8.1.26 195962 username aminvpn 195962 mac 195962 bytes_out 0 195962 bytes_in 0 195962 station_ip 5.119.189.227 195962 port 1 195962 unique_id port 195966 username aminvpn 195966 kill_reason Another user logged on this global unique id 195966 mac 195966 bytes_out 0 195966 bytes_in 0 195966 station_ip 5.119.189.227 195966 port 1 195966 unique_id port 195970 username mansour 195970 mac 195970 bytes_out 55765 195970 bytes_in 76963 195970 station_ip 5.202.61.73 195970 port 2 195970 unique_id port 195970 remote_ip 10.8.1.50 195971 username akbari0070 195971 kill_reason Another user logged on this global unique id 195971 mac 195971 bytes_out 0 195971 bytes_in 0 195971 station_ip 37.129.28.227 195971 port 3 195971 unique_id port 195973 username hosseine 195973 kill_reason Another user logged on this global unique id 195973 mac 195973 bytes_out 0 195973 bytes_in 0 195973 station_ip 83.123.81.211 195973 port 4 195973 unique_id port 195974 username farhad3 195974 kill_reason Another user logged on this global unique id 195974 mac 195974 bytes_out 0 195974 bytes_in 0 195974 station_ip 5.119.152.203 195974 port 2 195974 unique_id port 195974 remote_ip 10.8.1.34 195981 username zahra1101 195981 mac 195981 bytes_out 2393 195981 bytes_in 4872 195981 station_ip 5.119.50.116 195981 port 7 195981 unique_id port 195981 remote_ip 10.8.1.18 195984 username farhad3 195984 mac 195984 bytes_out 0 195984 bytes_in 0 195937 unique_id port 195937 remote_ip 10.8.1.18 195940 username hajghani 195940 mac 195940 bytes_out 0 195940 bytes_in 0 195940 station_ip 89.34.32.23 195940 port 2 195940 unique_id port 195943 username kalantary6037 195943 mac 195943 bytes_out 337375 195943 bytes_in 2207057 195943 station_ip 37.129.72.179 195943 port 2 195943 unique_id port 195943 remote_ip 10.8.1.26 195945 username hamid1430 195945 kill_reason Another user logged on this global unique id 195945 mac 195945 bytes_out 0 195945 bytes_in 0 195945 station_ip 83.122.107.116 195945 port 1 195945 unique_id port 195945 remote_ip 10.8.0.42 195949 username kalantary6037 195949 kill_reason Another user logged on this global unique id 195949 mac 195949 bytes_out 0 195949 bytes_in 0 195949 station_ip 37.129.72.179 195949 port 2 195949 unique_id port 195949 remote_ip 10.8.1.26 195953 username aminvpn 195953 kill_reason Another user logged on this global unique id 195953 mac 195953 bytes_out 0 195953 bytes_in 0 195953 station_ip 5.119.189.227 195953 port 1 195953 unique_id port 195954 username akbari0070 195954 mac 195954 bytes_out 8137936 195954 bytes_in 195868936 195954 station_ip 37.129.28.227 195954 port 3 195954 unique_id port 195954 remote_ip 10.8.0.10 195960 username zahra1101 195960 mac 195960 bytes_out 6043 195960 bytes_in 8502 195960 station_ip 5.120.148.193 195960 port 7 195960 unique_id port 195960 remote_ip 10.8.1.18 195961 username zahra1101 195961 mac 195961 bytes_out 0 195961 bytes_in 0 195961 station_ip 5.120.148.193 195961 port 2 195961 unique_id port 195961 remote_ip 10.8.1.18 195964 username zahra1101 195964 mac 195964 bytes_out 4337 195964 bytes_in 6837 195964 station_ip 5.120.148.193 195964 port 2 195964 unique_id port 195964 remote_ip 10.8.1.18 195969 username akbari0070 195969 kill_reason Another user logged on this global unique id 195969 mac 195969 bytes_out 0 195969 bytes_in 0 195969 station_ip 37.129.28.227 195969 port 3 195969 unique_id port 195972 username rahim 195972 mac 195972 bytes_out 144122 195972 bytes_in 293165 195972 station_ip 5.119.153.111 195972 port 3 195972 unique_id port 195972 remote_ip 10.8.1.54 195975 username mostafa_es78 195975 kill_reason Another user logged on this global unique id 195975 mac 195975 bytes_out 0 195975 bytes_in 0 195975 station_ip 83.122.222.78 195975 port 1 195975 unique_id port 195975 remote_ip 10.8.0.50 195976 username zahra1101 195976 mac 195976 bytes_out 0 195976 bytes_in 0 195976 station_ip 5.120.148.193 195976 port 4 195976 unique_id port 195976 remote_ip 10.8.1.18 195978 username kalantary6037 195978 kill_reason Another user logged on this global unique id 195978 mac 195978 bytes_out 0 195978 bytes_in 0 195978 station_ip 37.129.47.127 195978 port 4 195978 unique_id port 195978 remote_ip 10.8.1.26 195979 username motamedi9772 195979 mac 195979 bytes_out 0 195979 bytes_in 0 195979 station_ip 37.129.166.216 195979 port 2 195979 unique_id port 195979 remote_ip 10.8.0.54 195986 username zahra1101 195986 mac 195986 bytes_out 0 195986 bytes_in 0 195986 station_ip 5.119.50.116 195986 port 2 195986 unique_id port 195986 remote_ip 10.8.1.18 195988 username farhad3 195988 mac 195988 bytes_out 405576 195988 bytes_in 7463403 195988 station_ip 5.119.152.203 195988 port 4 195988 unique_id port 195988 remote_ip 10.8.1.34 195990 username pourshad 195990 kill_reason Another user logged on this global unique id 195990 mac 195990 bytes_out 0 195990 bytes_in 0 195990 station_ip 5.119.98.224 195990 port 6 195990 unique_id port 195990 remote_ip 10.8.1.46 195955 mac 195955 bytes_out 0 195955 bytes_in 0 195955 station_ip 5.120.148.193 195955 port 7 195955 unique_id port 195955 remote_ip 10.8.1.18 195957 username dortaj3792 195957 mac 195957 bytes_out 963513 195957 bytes_in 5745957 195957 station_ip 5.119.119.78 195957 port 2 195957 unique_id port 195957 remote_ip 10.8.1.38 195958 username dortaj3792 195958 mac 195958 bytes_out 0 195958 bytes_in 0 195958 station_ip 5.120.85.13 195958 port 8 195958 unique_id port 195958 remote_ip 10.8.1.38 195963 username alirezaza 195963 unique_id port 195963 terminate_cause User-Request 195963 bytes_out 250 195963 bytes_in 184 195963 station_ip 5.119.109.166 195963 port 15729438 195963 nas_port_type Virtual 195963 remote_ip 5.5.5.245 195965 username tahmorsi 195965 mac 195965 bytes_out 0 195965 bytes_in 0 195965 station_ip 86.57.104.30 195965 port 4 195965 unique_id port 195965 remote_ip 10.8.1.42 195967 username zahra1101 195967 mac 195967 bytes_out 0 195967 bytes_in 0 195967 station_ip 5.120.148.193 195967 port 2 195967 unique_id port 195967 remote_ip 10.8.1.18 195968 username mostafa_es78 195968 mac 195968 bytes_out 0 195968 bytes_in 0 195968 station_ip 83.122.222.78 195968 port 1 195968 unique_id port 195968 remote_ip 10.8.0.50 195977 username zahra1101 195977 mac 195977 bytes_out 0 195977 bytes_in 0 195977 station_ip 5.120.148.193 195977 port 4 195977 unique_id port 195977 remote_ip 10.8.1.18 195980 username aminvpn 195980 mac 195980 bytes_out 0 195980 bytes_in 0 195980 station_ip 5.119.189.227 195980 port 1 195980 unique_id port 195982 username farhad3 195982 mac 195982 bytes_out 56887 195982 bytes_in 121647 195982 station_ip 5.119.152.203 195982 port 8 195982 unique_id port 195982 remote_ip 10.8.1.34 195983 username hosseine 195983 mac 195983 bytes_out 0 195983 bytes_in 0 195983 station_ip 83.123.81.211 195983 port 4 195983 unique_id port 195985 username mostafa_es78 195985 mac 195985 bytes_out 16114883 195985 bytes_in 247094680 195985 station_ip 83.122.222.78 195985 port 1 195985 unique_id port 195985 remote_ip 10.8.0.50 195991 username zahra1101 195991 mac 195991 bytes_out 0 195991 bytes_in 0 195991 station_ip 5.119.50.116 195991 port 6 195991 unique_id port 195991 remote_ip 10.8.0.70 195994 username zahra1101 195994 mac 195994 bytes_out 0 195994 bytes_in 0 195994 station_ip 5.119.50.116 195994 port 2 195994 unique_id port 195994 remote_ip 10.8.1.18 196001 username kalantary6037 196001 mac 196001 bytes_out 0 196001 bytes_in 0 196001 station_ip 37.129.47.127 196001 port 3 196001 unique_id port 196001 remote_ip 10.8.1.26 196003 username yaghobi 196003 mac 196003 bytes_out 340021 196003 bytes_in 3280583 196003 station_ip 37.129.81.3 196003 port 8 196003 unique_id port 196003 remote_ip 10.8.1.62 196005 username aminvpn 196005 kill_reason Another user logged on this global unique id 196005 mac 196005 bytes_out 0 196005 bytes_in 0 196005 station_ip 5.119.189.227 196005 port 1 196005 unique_id port 196007 username aminvpn 196007 mac 196007 bytes_out 0 196007 bytes_in 0 196007 station_ip 5.119.189.227 196007 port 1 196007 unique_id port 196011 username pourshad 196011 mac 196011 bytes_out 5826 196011 bytes_in 12575 196011 station_ip 5.119.98.224 196011 port 8 196011 unique_id port 196011 remote_ip 10.8.1.46 196012 username milan 196012 kill_reason Another user logged on this global unique id 196012 mac 196012 bytes_out 0 196012 bytes_in 0 196012 station_ip 5.119.177.28 195984 station_ip 5.119.152.203 195984 port 2 195984 unique_id port 195984 remote_ip 10.8.1.34 195987 username dortaj3792 195987 mac 195987 bytes_out 648388 195987 bytes_in 8230579 195987 station_ip 5.119.97.79 195987 port 3 195987 unique_id port 195987 remote_ip 10.8.0.58 195989 username zahra1101 195989 mac 195989 bytes_out 712073 195989 bytes_in 8042303 195989 station_ip 5.119.50.116 195989 port 2 195989 unique_id port 195989 remote_ip 10.8.1.18 195992 username teymori5660 195992 kill_reason Another user logged on this global unique id 195992 mac 195992 bytes_out 0 195992 bytes_in 0 195992 station_ip 5.120.73.6 195992 port 1 195992 unique_id port 195992 remote_ip 10.8.0.66 195995 username aminvpn 195995 mac 195995 bytes_out 0 195995 bytes_in 0 195995 station_ip 5.119.189.227 195995 port 1 195995 unique_id port 195997 username zahra1101 195997 mac 195997 bytes_out 0 195997 bytes_in 0 195997 station_ip 5.119.50.116 195997 port 2 195997 unique_id port 195997 remote_ip 10.8.1.18 195999 username farhad3 195999 mac 195999 bytes_out 0 195999 bytes_in 0 195999 station_ip 5.119.152.203 195999 port 4 195999 unique_id port 195999 remote_ip 10.8.1.34 196000 username jafari 196000 kill_reason Maximum check online fails reached 196000 mac 196000 bytes_out 0 196000 bytes_in 0 196000 station_ip 5.200.103.63 196000 port 2 196000 unique_id port 196002 username pourshad 196002 mac 196002 bytes_out 0 196002 bytes_in 0 196002 station_ip 5.119.98.224 196002 port 6 196002 unique_id port 196004 username zahra1101 196004 mac 196004 bytes_out 0 196004 bytes_in 0 196004 station_ip 5.119.50.116 196004 port 9 196004 unique_id port 196004 remote_ip 10.8.1.18 196008 username charkhandaz3496 196008 mac 196008 bytes_out 385435 196008 bytes_in 1474657 196008 station_ip 5.119.208.197 196008 port 3 196008 unique_id port 196008 remote_ip 10.8.1.66 196013 username aminvpn 196013 kill_reason Another user logged on this global unique id 196013 mac 196013 bytes_out 0 196013 bytes_in 0 196013 station_ip 5.119.189.227 196013 port 1 196013 unique_id port 196014 username arash 196014 mac 196014 bytes_out 1343933 196014 bytes_in 29246184 196014 station_ip 37.27.28.57 196014 port 6 196014 unique_id port 196014 remote_ip 10.8.1.70 196021 username pourshad 196021 mac 196021 bytes_out 0 196021 bytes_in 0 196021 station_ip 5.119.98.224 196021 port 5 196021 unique_id port 196021 remote_ip 10.8.0.86 196023 username arash 196023 kill_reason Another user logged on this global unique id 196023 mac 196023 bytes_out 0 196023 bytes_in 0 196023 station_ip 37.27.28.57 196023 port 4 196023 unique_id port 196023 remote_ip 10.8.0.82 196031 username farhad3 196031 mac 196031 bytes_out 0 196031 bytes_in 0 196031 station_ip 5.119.152.203 196031 port 4 196031 unique_id port 196032 username kalantary6037 196032 mac 196032 bytes_out 0 196032 bytes_in 0 196032 station_ip 37.129.80.187 196032 port 8 196032 unique_id port 196032 remote_ip 10.8.1.26 196034 username pourshad 196034 mac 196034 bytes_out 126355 196034 bytes_in 491150 196034 station_ip 5.119.98.224 196034 port 6 196034 unique_id port 196034 remote_ip 10.8.1.46 196039 username yaghobi 196039 mac 196039 bytes_out 2511151 196039 bytes_in 6253567 196039 station_ip 37.129.146.161 196039 port 9 196039 unique_id port 196039 remote_ip 10.8.1.62 196042 username aminvpn 196042 kill_reason Another user logged on this global unique id 196042 mac 196042 bytes_out 0 196042 bytes_in 0 196042 station_ip 5.119.189.227 195993 username charkhandaz3496 195993 mac 195993 bytes_out 0 195993 bytes_in 0 195993 station_ip 37.129.102.89 195993 port 5 195993 unique_id port 195993 remote_ip 10.8.0.62 195996 username zahra1101 195996 mac 195996 bytes_out 0 195996 bytes_in 0 195996 station_ip 5.119.50.116 195996 port 2 195996 unique_id port 195996 remote_ip 10.8.1.18 195998 username zahra1101 195998 mac 195998 bytes_out 0 195998 bytes_in 0 195998 station_ip 5.119.50.116 195998 port 2 195998 unique_id port 195998 remote_ip 10.8.1.18 196006 username hashtadani5 196006 kill_reason Another user logged on this global unique id 196006 mac 196006 bytes_out 0 196006 bytes_in 0 196006 station_ip 37.129.69.24 196006 port 1 196006 unique_id port 196006 remote_ip 10.8.0.74 196009 username yaghobi 196009 mac 196009 bytes_out 247945 196009 bytes_in 500006 196009 station_ip 37.129.100.33 196009 port 8 196009 unique_id port 196009 remote_ip 10.8.1.62 196010 username zahra1101 196010 mac 196010 bytes_out 6345 196010 bytes_in 11227 196010 station_ip 5.119.50.116 196010 port 9 196010 unique_id port 196010 remote_ip 10.8.1.18 196017 username pourshad 196017 mac 196017 bytes_out 0 196017 bytes_in 0 196017 station_ip 5.119.98.224 196017 port 6 196017 unique_id port 196017 remote_ip 10.8.1.46 196018 username soleymani5056 196018 mac 196018 bytes_out 0 196018 bytes_in 0 196018 station_ip 5.119.45.132 196018 port 5 196018 unique_id port 196018 remote_ip 10.8.0.30 196020 username milan 196020 kill_reason Another user logged on this global unique id 196020 mac 196020 bytes_out 0 196020 bytes_in 0 196020 station_ip 5.119.177.28 196020 port 1 196020 unique_id port 196024 username farhad3 196024 mac 196024 bytes_out 0 196024 bytes_in 0 196024 station_ip 5.119.152.203 196024 port 4 196024 unique_id port 196025 username meysam 196025 mac 196025 bytes_out 1040698 196025 bytes_in 16123608 196025 station_ip 188.158.51.255 196025 port 8 196025 unique_id port 196025 remote_ip 10.8.1.74 196030 username farhad3 196030 kill_reason Another user logged on this global unique id 196030 mac 196030 bytes_out 0 196030 bytes_in 0 196030 station_ip 5.119.152.203 196030 port 4 196030 unique_id port 196035 username rahim 196035 mac 196035 bytes_out 0 196035 bytes_in 0 196035 station_ip 5.119.153.111 196035 port 3 196035 unique_id port 196037 username zahra1101 196037 mac 196037 bytes_out 336837 196037 bytes_in 3291438 196037 station_ip 5.119.151.151 196037 port 7 196037 unique_id port 196037 remote_ip 10.8.1.18 196038 username yaghobi 196038 kill_reason Maximum number of concurrent logins reached 196038 mac 196038 bytes_out 0 196038 bytes_in 0 196038 station_ip 37.129.154.47 196038 port 7 196038 unique_id port 196041 username aminvpn 196041 kill_reason Another user logged on this global unique id 196041 mac 196041 bytes_out 0 196041 bytes_in 0 196041 station_ip 5.119.189.227 196041 port 1 196041 unique_id port 196045 username rahim 196045 kill_reason Another user logged on this global unique id 196045 mac 196045 bytes_out 0 196045 bytes_in 0 196045 station_ip 5.119.153.111 196045 port 3 196045 unique_id port 196050 username zahra1101 196050 mac 196050 bytes_out 117210 196050 bytes_in 880404 196050 station_ip 5.120.54.229 196050 port 8 196050 unique_id port 196050 remote_ip 10.8.1.18 196052 username aminvpn 196052 kill_reason Another user logged on this global unique id 196052 mac 196052 bytes_out 0 196052 bytes_in 0 196052 station_ip 5.119.189.227 196052 port 1 196052 unique_id port 196053 username barzegar8595 196012 port 1 196012 unique_id port 196012 remote_ip 10.8.0.78 196015 username farhad3 196015 kill_reason Another user logged on this global unique id 196015 mac 196015 bytes_out 0 196015 bytes_in 0 196015 station_ip 5.119.152.203 196015 port 4 196015 unique_id port 196016 username farhad3 196016 kill_reason Another user logged on this global unique id 196016 mac 196016 bytes_out 0 196016 bytes_in 0 196016 station_ip 5.119.152.203 196016 port 4 196016 unique_id port 196019 username rahim 196019 mac 196019 bytes_out 1450524 196019 bytes_in 14513539 196019 station_ip 5.119.153.111 196019 port 3 196019 unique_id port 196019 remote_ip 10.8.1.54 196022 username charkhandaz3496 196022 mac 196022 bytes_out 232670 196022 bytes_in 2261848 196022 station_ip 5.119.208.197 196022 port 6 196022 unique_id port 196022 remote_ip 10.8.1.66 196026 username milan 196026 kill_reason Another user logged on this global unique id 196026 mac 196026 bytes_out 0 196026 bytes_in 0 196026 station_ip 5.119.177.28 196026 port 1 196026 unique_id port 196027 username charkhandaz3496 196027 mac 196027 bytes_out 204317 196027 bytes_in 1536627 196027 station_ip 5.119.208.197 196027 port 6 196027 unique_id port 196027 remote_ip 10.8.1.66 196028 username mosi 196028 kill_reason Another user logged on this global unique id 196028 mac 196028 bytes_out 0 196028 bytes_in 0 196028 station_ip 2.183.130.85 196028 port 3 196028 unique_id port 196028 remote_ip 10.8.0.90 196029 username jafari 196029 mac 196029 bytes_out 1360168 196029 bytes_in 2685735 196029 station_ip 5.200.103.63 196029 port 7 196029 unique_id port 196029 remote_ip 10.8.1.58 196033 username saeeddamghani 196033 mac 196033 bytes_out 0 196033 bytes_in 0 196033 station_ip 5.119.205.224 196033 port 10 196033 unique_id port 196033 remote_ip 10.8.1.10 196036 username saeeddamghani 196036 mac 196036 bytes_out 2451 196036 bytes_in 6310 196036 station_ip 5.119.205.224 196036 port 10 196036 unique_id port 196036 remote_ip 10.8.1.10 196040 username akbari0070 196040 mac 196040 bytes_out 0 196040 bytes_in 0 196040 station_ip 37.129.28.227 196040 port 2 196040 unique_id port 196040 remote_ip 10.8.0.10 196043 username godarzi 196043 mac 196043 bytes_out 1223789 196043 bytes_in 17652613 196043 station_ip 5.119.129.54 196043 port 11 196043 unique_id port 196043 remote_ip 10.8.1.22 196044 username mosi 196044 mac 196044 bytes_out 527443 196044 bytes_in 1328599 196044 station_ip 94.24.84.229 196044 port 8 196044 unique_id port 196044 remote_ip 10.8.1.78 196046 username motamedi9772 196046 mac 196046 bytes_out 0 196046 bytes_in 0 196046 station_ip 37.129.128.208 196046 port 3 196046 unique_id port 196046 remote_ip 10.8.0.54 196047 username mosi 196047 mac 196047 bytes_out 0 196047 bytes_in 0 196047 station_ip 94.24.84.229 196047 port 3 196047 unique_id port 196047 remote_ip 10.8.1.78 196048 username kalantary6037 196048 mac 196048 bytes_out 244903 196048 bytes_in 388829 196048 station_ip 37.129.80.187 196048 port 7 196048 unique_id port 196048 remote_ip 10.8.1.26 196055 username farhad3 196055 mac 196055 bytes_out 0 196055 bytes_in 0 196055 station_ip 5.119.152.203 196055 port 4 196055 unique_id port 196055 remote_ip 10.8.1.34 196057 username milan 196057 kill_reason Another user logged on this global unique id 196057 mac 196057 bytes_out 0 196057 bytes_in 0 196057 station_ip 5.119.177.28 196057 port 1 196057 unique_id port 196063 username sabaghnezhad 196063 kill_reason Another user logged on this global unique id 196063 mac 196063 bytes_out 0 196042 port 1 196042 unique_id port 196049 username mammad 196049 unique_id port 196049 terminate_cause User-Request 196049 bytes_out 10152923 196049 bytes_in 224062570 196049 station_ip 2.183.246.246 196049 port 15729440 196049 nas_port_type Virtual 196049 remote_ip 5.5.5.255 196051 username milan 196051 kill_reason Another user logged on this global unique id 196051 mac 196051 bytes_out 0 196051 bytes_in 0 196051 station_ip 5.119.177.28 196051 port 1 196051 unique_id port 196054 username zahra1101 196054 mac 196054 bytes_out 3278 196054 bytes_in 6761 196054 station_ip 5.120.54.229 196054 port 9 196054 unique_id port 196054 remote_ip 10.8.1.18 196058 username kalantary6037 196058 mac 196058 bytes_out 202021 196058 bytes_in 1538367 196058 station_ip 37.129.80.187 196058 port 3 196058 unique_id port 196058 remote_ip 10.8.1.26 196059 username milan 196059 kill_reason Another user logged on this global unique id 196059 mac 196059 bytes_out 0 196059 bytes_in 0 196059 station_ip 5.119.177.28 196059 port 1 196059 unique_id port 196062 username zahra1101 196062 mac 196062 bytes_out 0 196062 bytes_in 0 196062 station_ip 5.120.54.229 196062 port 3 196062 unique_id port 196062 remote_ip 10.8.1.18 196066 username aminvpn 196066 mac 196066 bytes_out 0 196066 bytes_in 0 196066 station_ip 5.119.189.227 196066 port 1 196066 unique_id port 196067 username meghdad1616 196067 kill_reason Another user logged on this global unique id 196067 mac 196067 bytes_out 0 196067 bytes_in 0 196067 station_ip 5.119.156.67 196067 port 1 196067 unique_id port 196067 remote_ip 10.8.1.86 196070 username pourshad 196070 mac 196070 bytes_out 132138 196070 bytes_in 148710 196070 station_ip 5.119.98.224 196070 port 6 196070 unique_id port 196070 remote_ip 10.8.1.46 196071 username farhad3 196071 mac 196071 bytes_out 0 196071 bytes_in 0 196071 station_ip 5.119.152.203 196071 port 4 196071 unique_id port 196071 remote_ip 10.8.1.34 196073 username sekonji0496 196073 kill_reason Another user logged on this global unique id 196073 mac 196073 bytes_out 0 196073 bytes_in 0 196073 station_ip 83.123.135.59 196073 port 4 196073 unique_id port 196073 remote_ip 10.8.0.98 196076 username meghdad1616 196076 mac 196076 bytes_out 0 196076 bytes_in 0 196076 station_ip 5.119.156.67 196076 port 1 196076 unique_id port 196077 username hamid.e 196077 unique_id port 196077 terminate_cause Lost-Carrier 196077 bytes_out 6368971 196077 bytes_in 78469120 196077 station_ip 37.27.26.78 196077 port 15729439 196077 nas_port_type Virtual 196077 remote_ip 5.5.5.249 196078 username farhad3 196078 mac 196078 bytes_out 621867 196078 bytes_in 5383667 196078 station_ip 5.119.152.203 196078 port 4 196078 unique_id port 196078 remote_ip 10.8.1.34 196084 username pourshad 196084 mac 196084 bytes_out 21811 196084 bytes_in 122074 196084 station_ip 5.119.98.224 196084 port 6 196084 unique_id port 196084 remote_ip 10.8.1.46 196088 username sekonji0496 196088 mac 196088 bytes_out 0 196088 bytes_in 0 196088 station_ip 83.123.135.59 196088 port 6 196088 unique_id port 196088 remote_ip 10.8.0.98 196091 username meghdad1616 196091 mac 196091 bytes_out 1434144 196091 bytes_in 11584773 196091 station_ip 5.119.156.67 196091 port 7 196091 unique_id port 196091 remote_ip 10.8.0.102 196095 username yaghobi 196095 kill_reason Maximum number of concurrent logins reached 196095 mac 196095 bytes_out 0 196095 bytes_in 0 196095 station_ip 37.129.154.47 196095 port 8 196095 unique_id port 196102 username motamedi9772 196102 kill_reason Another user logged on this global unique id 196053 mac 196053 bytes_out 386671 196053 bytes_in 1147787 196053 station_ip 37.27.52.97 196053 port 3 196053 unique_id port 196053 remote_ip 10.8.1.82 196056 username mosi 196056 mac 196056 bytes_out 89322 196056 bytes_in 158693 196056 station_ip 94.24.84.229 196056 port 10 196056 unique_id port 196056 remote_ip 10.8.1.78 196060 username zahra1101 196060 mac 196060 bytes_out 0 196060 bytes_in 0 196060 station_ip 5.120.54.229 196060 port 10 196060 unique_id port 196060 remote_ip 10.8.1.18 196061 username farhad3 196061 mac 196061 bytes_out 780197 196061 bytes_in 14047654 196061 station_ip 5.119.152.203 196061 port 4 196061 unique_id port 196061 remote_ip 10.8.1.34 196065 username meysam 196065 mac 196065 bytes_out 2151000 196065 bytes_in 46719038 196065 station_ip 188.158.51.255 196065 port 8 196065 unique_id port 196065 remote_ip 10.8.1.74 196068 username zahra1101 196068 mac 196068 bytes_out 3087 196068 bytes_in 5578 196068 station_ip 5.120.54.229 196068 port 3 196068 unique_id port 196068 remote_ip 10.8.1.18 196069 username zahra1101 196069 mac 196069 bytes_out 0 196069 bytes_in 0 196069 station_ip 5.120.54.229 196069 port 3 196069 unique_id port 196069 remote_ip 10.8.1.18 196074 username milan 196074 kill_reason Another user logged on this global unique id 196074 mac 196074 bytes_out 0 196074 bytes_in 0 196074 station_ip 5.119.177.28 196074 port 1 196074 unique_id port 196079 username milan 196079 kill_reason Another user logged on this global unique id 196079 mac 196079 bytes_out 0 196079 bytes_in 0 196079 station_ip 5.119.177.28 196079 port 1 196079 unique_id port 196080 username meghdad1616 196080 mac 196080 bytes_out 0 196080 bytes_in 0 196080 station_ip 5.119.156.67 196080 port 12 196080 unique_id port 196080 remote_ip 10.8.1.86 196083 username meysam 196083 mac 196083 bytes_out 95185 196083 bytes_in 642919 196083 station_ip 188.158.51.255 196083 port 9 196083 unique_id port 196083 remote_ip 10.8.1.74 196086 username sabaghnezhad 196086 kill_reason Another user logged on this global unique id 196086 mac 196086 bytes_out 0 196086 bytes_in 0 196086 station_ip 37.129.85.207 196086 port 3 196086 unique_id port 196086 remote_ip 10.8.0.26 196092 username soleymani5056 196092 mac 196092 bytes_out 2942580 196092 bytes_in 48635118 196092 station_ip 5.119.118.129 196092 port 4 196092 unique_id port 196092 remote_ip 10.8.0.30 196096 username yaghobi 196096 mac 196096 bytes_out 0 196096 bytes_in 0 196096 station_ip 37.129.154.47 196096 port 5 196096 unique_id port 196096 remote_ip 10.8.0.14 196097 username mosi 196097 kill_reason Another user logged on this global unique id 196097 mac 196097 bytes_out 0 196097 bytes_in 0 196097 station_ip 95.162.21.8 196097 port 4 196097 unique_id port 196097 remote_ip 10.8.1.78 196099 username meghdad1616 196099 mac 196099 bytes_out 0 196099 bytes_in 0 196099 station_ip 5.119.156.67 196099 port 8 196099 unique_id port 196099 remote_ip 10.8.1.86 196101 username milan 196101 mac 196101 bytes_out 0 196101 bytes_in 0 196101 station_ip 5.119.177.28 196101 port 1 196101 unique_id port 196103 username meghdad1616 196103 mac 196103 bytes_out 2490 196103 bytes_in 4857 196103 station_ip 5.119.156.67 196103 port 8 196103 unique_id port 196103 remote_ip 10.8.1.86 196104 username kalantary6037 196104 mac 196104 bytes_out 489976 196104 bytes_in 4667583 196104 station_ip 37.129.110.71 196104 port 1 196104 unique_id port 196104 remote_ip 10.8.1.26 196105 username yaghobi 196063 bytes_in 0 196063 station_ip 37.129.85.207 196063 port 3 196063 unique_id port 196063 remote_ip 10.8.0.26 196064 username zahra1101 196064 mac 196064 bytes_out 0 196064 bytes_in 0 196064 station_ip 5.120.54.229 196064 port 3 196064 unique_id port 196064 remote_ip 10.8.1.18 196072 username farhad3 196072 mac 196072 bytes_out 0 196072 bytes_in 0 196072 station_ip 5.119.152.203 196072 port 4 196072 unique_id port 196072 remote_ip 10.8.1.34 196075 username mosi 196075 mac 196075 bytes_out 82545 196075 bytes_in 114970 196075 station_ip 89.32.102.105 196075 port 9 196075 unique_id port 196075 remote_ip 10.8.1.78 196081 username pourshad 196081 mac 196081 bytes_out 42329 196081 bytes_in 94686 196081 station_ip 5.119.98.224 196081 port 6 196081 unique_id port 196081 remote_ip 10.8.1.46 196082 username zahra1101 196082 mac 196082 bytes_out 0 196082 bytes_in 0 196082 station_ip 5.120.54.229 196082 port 3 196082 unique_id port 196082 remote_ip 10.8.1.18 196085 username esmaeili1522 196085 mac 196085 bytes_out 0 196085 bytes_in 0 196085 station_ip 5.120.26.239 196085 port 3 196085 unique_id port 196085 remote_ip 10.8.1.94 196087 username zahra1101 196087 kill_reason Another user logged on this global unique id 196087 mac 196087 bytes_out 0 196087 bytes_in 0 196087 station_ip 5.120.54.229 196087 port 6 196087 unique_id port 196087 remote_ip 10.8.1.18 196089 username malekpoir 196089 kill_reason Another user logged on this global unique id 196089 mac 196089 bytes_out 0 196089 bytes_in 0 196089 station_ip 5.119.182.62 196089 port 7 196089 unique_id port 196089 remote_ip 10.8.1.6 196090 username zahra1101 196090 mac 196090 bytes_out 0 196090 bytes_in 0 196090 station_ip 5.120.54.229 196090 port 6 196090 unique_id port 196093 username zahra1101 196093 mac 196093 bytes_out 0 196093 bytes_in 0 196093 station_ip 5.120.54.229 196093 port 4 196093 unique_id port 196093 remote_ip 10.8.1.18 196094 username mosi 196094 mac 196094 bytes_out 110179 196094 bytes_in 226770 196094 station_ip 89.32.102.105 196094 port 8 196094 unique_id port 196094 remote_ip 10.8.1.78 196098 username kalantary6037 196098 kill_reason Another user logged on this global unique id 196098 mac 196098 bytes_out 0 196098 bytes_in 0 196098 station_ip 37.129.110.71 196098 port 1 196098 unique_id port 196098 remote_ip 10.8.1.26 196100 username soleymani5056 196100 mac 196100 bytes_out 49694 196100 bytes_in 60263 196100 station_ip 5.119.106.162 196100 port 6 196100 unique_id port 196100 remote_ip 10.8.1.98 196110 username pourshad 196110 mac 196110 bytes_out 339787 196110 bytes_in 3362359 196110 station_ip 5.119.98.224 196110 port 3 196110 unique_id port 196110 remote_ip 10.8.1.46 196112 username farhad3 196112 mac 196112 bytes_out 1613240 196112 bytes_in 6420576 196112 station_ip 5.119.152.203 196112 port 6 196112 unique_id port 196112 remote_ip 10.8.1.34 196113 username esmaeili1522 196113 mac 196113 bytes_out 0 196113 bytes_in 0 196113 station_ip 5.120.26.239 196113 port 3 196113 unique_id port 196113 remote_ip 10.8.0.106 196119 username meghdad1616 196119 mac 196119 bytes_out 0 196119 bytes_in 0 196119 station_ip 5.119.156.67 196119 port 6 196119 unique_id port 196119 remote_ip 10.8.1.86 196121 username kalantary6037 196121 mac 196121 bytes_out 2204856 196121 bytes_in 30655711 196121 station_ip 37.129.20.187 196121 port 8 196121 unique_id port 196121 remote_ip 10.8.1.26 196122 username farhad3 196122 mac 196122 bytes_out 0 196122 bytes_in 0 196102 mac 196102 bytes_out 0 196102 bytes_in 0 196102 station_ip 37.129.193.40 196102 port 6 196102 unique_id port 196102 remote_ip 10.8.0.54 196106 username yaghobi 196106 mac 196106 bytes_out 64559 196106 bytes_in 161175 196106 station_ip 37.129.154.47 196106 port 4 196106 unique_id port 196106 remote_ip 10.8.0.14 196107 username meysam 196107 mac 196107 bytes_out 341084 196107 bytes_in 5912705 196107 station_ip 188.158.51.255 196107 port 8 196107 unique_id port 196107 remote_ip 10.8.1.74 196109 username yaghobi 196109 mac 196109 bytes_out 84545 196109 bytes_in 172026 196109 station_ip 37.129.154.47 196109 port 4 196109 unique_id port 196109 remote_ip 10.8.0.14 196115 username meghdad1616 196115 mac 196115 bytes_out 0 196115 bytes_in 0 196115 station_ip 5.119.156.67 196115 port 1 196115 unique_id port 196115 remote_ip 10.8.1.86 196116 username mosi 196116 mac 196116 bytes_out 0 196116 bytes_in 0 196116 station_ip 2.183.130.85 196116 port 4 196116 unique_id port 196116 remote_ip 10.8.1.78 196120 username jafari 196120 mac 196120 bytes_out 0 196120 bytes_in 0 196120 station_ip 5.200.103.63 196120 port 1 196120 unique_id port 196120 remote_ip 10.8.1.58 196126 username meghdad1616 196126 mac 196126 bytes_out 0 196126 bytes_in 0 196126 station_ip 5.119.156.67 196126 port 8 196126 unique_id port 196126 remote_ip 10.8.1.86 196129 username hamid1430 196129 mac 196129 bytes_out 0 196129 bytes_in 0 196129 station_ip 83.123.51.226 196129 port 6 196129 unique_id port 196129 remote_ip 10.8.0.42 196132 username rezaei 196132 mac 196132 bytes_out 3531233 196132 bytes_in 43653515 196132 station_ip 5.120.170.254 196132 port 10 196132 unique_id port 196132 remote_ip 10.8.1.90 196136 username milan 196136 kill_reason Another user logged on this global unique id 196136 mac 196136 bytes_out 0 196136 bytes_in 0 196136 station_ip 5.119.177.28 196136 port 1 196136 unique_id port 196137 username soleymani5056 196137 mac 196137 bytes_out 657740 196137 bytes_in 2118533 196137 station_ip 5.119.99.252 196137 port 6 196137 unique_id port 196137 remote_ip 10.8.0.30 196140 username farhad3 196140 mac 196140 bytes_out 24124695 196140 bytes_in 19916710 196140 station_ip 5.119.152.203 196140 port 12 196140 unique_id port 196140 remote_ip 10.8.1.34 196143 username meghdad1616 196143 mac 196143 bytes_out 0 196143 bytes_in 0 196143 station_ip 5.119.156.67 196143 port 10 196143 unique_id port 196143 remote_ip 10.8.1.86 196145 username yaghobi 196145 mac 196145 bytes_out 0 196145 bytes_in 0 196145 station_ip 37.129.175.140 196145 port 8 196145 unique_id port 196145 remote_ip 10.8.0.14 196157 username dortaj3792 196157 mac 196157 bytes_out 0 196157 bytes_in 0 196157 station_ip 5.119.97.79 196157 port 3 196157 unique_id port 196157 remote_ip 10.8.1.38 196160 username mosi 196160 mac 196160 bytes_out 0 196160 bytes_in 0 196160 station_ip 2.183.130.85 196160 port 4 196160 unique_id port 196161 username malekpoir 196161 mac 196161 bytes_out 0 196161 bytes_in 0 196161 station_ip 5.119.182.62 196161 port 7 196161 unique_id port 196163 username meghdad1616 196163 mac 196163 bytes_out 0 196163 bytes_in 0 196163 station_ip 5.119.156.67 196163 port 7 196163 unique_id port 196163 remote_ip 10.8.1.86 196166 username mammad 196166 unique_id port 196166 terminate_cause User-Request 196166 bytes_out 6053822 196166 bytes_in 37515105 196166 station_ip 2.183.246.246 196166 port 15729441 196105 kill_reason Maximum number of concurrent logins reached 196105 mac 196105 bytes_out 0 196105 bytes_in 0 196105 station_ip 37.129.154.47 196105 port 7 196105 unique_id port 196108 username meysam 196108 mac 196108 bytes_out 0 196108 bytes_in 0 196108 station_ip 188.158.51.255 196108 port 1 196108 unique_id port 196108 remote_ip 10.8.1.74 196111 username mosi 196111 mac 196111 bytes_out 215222 196111 bytes_in 739513 196111 station_ip 94.24.88.39 196111 port 1 196111 unique_id port 196111 remote_ip 10.8.1.78 196114 username meghdad1616 196114 mac 196114 bytes_out 0 196114 bytes_in 0 196114 station_ip 5.119.156.67 196114 port 1 196114 unique_id port 196114 remote_ip 10.8.1.86 196117 username milan 196117 kill_reason Another user logged on this global unique id 196117 mac 196117 bytes_out 0 196117 bytes_in 0 196117 station_ip 5.119.177.28 196117 port 1 196117 unique_id port 196118 username meysam 196118 mac 196118 bytes_out 0 196118 bytes_in 0 196118 station_ip 188.158.51.255 196118 port 1 196118 unique_id port 196118 remote_ip 10.8.1.74 196124 username meghdad1616 196124 mac 196124 bytes_out 1595940 196124 bytes_in 15688826 196124 station_ip 5.119.156.67 196124 port 4 196124 unique_id port 196124 remote_ip 10.8.0.102 196127 username meysam 196127 kill_reason Another user logged on this global unique id 196127 mac 196127 bytes_out 0 196127 bytes_in 0 196127 station_ip 188.158.51.255 196127 port 1 196127 unique_id port 196127 remote_ip 10.8.1.74 196128 username jafari 196128 kill_reason Another user logged on this global unique id 196128 mac 196128 bytes_out 0 196128 bytes_in 0 196128 station_ip 5.200.103.63 196128 port 6 196128 unique_id port 196128 remote_ip 10.8.1.58 196130 username meysam 196130 kill_reason Another user logged on this global unique id 196130 mac 196130 bytes_out 0 196130 bytes_in 0 196130 station_ip 188.158.51.255 196130 port 1 196130 unique_id port 196135 username motamedi9772 196135 mac 196135 bytes_out 651572 196135 bytes_in 2108905 196135 station_ip 37.129.179.216 196135 port 6 196135 unique_id port 196135 remote_ip 10.8.0.54 196142 username iranmanesh4443 196142 mac 196142 bytes_out 0 196142 bytes_in 0 196142 station_ip 5.120.69.71 196142 port 3 196142 unique_id port 196142 remote_ip 10.8.0.110 196147 username pourshad 196147 mac 196147 bytes_out 37299 196147 bytes_in 56206 196147 station_ip 5.119.98.224 196147 port 10 196147 unique_id port 196147 remote_ip 10.8.1.46 196151 username meysam 196151 mac 196151 bytes_out 0 196151 bytes_in 0 196151 station_ip 188.158.51.255 196151 port 1 196151 unique_id port 196153 username mosi 196153 kill_reason Another user logged on this global unique id 196153 mac 196153 bytes_out 0 196153 bytes_in 0 196153 station_ip 2.183.130.85 196153 port 4 196153 unique_id port 196156 username hosseine 196156 mac 196156 bytes_out 0 196156 bytes_in 0 196156 station_ip 37.129.181.76 196156 port 9 196156 unique_id port 196156 remote_ip 10.8.0.18 196165 username meysam 196165 mac 196165 bytes_out 25214 196165 bytes_in 249799 196165 station_ip 188.158.51.255 196165 port 9 196165 unique_id port 196165 remote_ip 10.8.1.74 196170 username esmaeili1522 196170 mac 196170 bytes_out 954574 196170 bytes_in 10527012 196170 station_ip 5.120.108.168 196170 port 1 196170 unique_id port 196170 remote_ip 10.8.1.94 196171 username farhad3 196171 mac 196171 bytes_out 0 196171 bytes_in 0 196171 station_ip 5.119.152.203 196171 port 1 196171 unique_id port 196171 remote_ip 10.8.1.34 196177 username jafari 196122 station_ip 5.119.152.203 196122 port 1 196122 unique_id port 196122 remote_ip 10.8.1.34 196123 username milan 196123 kill_reason Another user logged on this global unique id 196123 mac 196123 bytes_out 0 196123 bytes_in 0 196123 station_ip 5.119.177.28 196123 port 1 196123 unique_id port 196125 username mirzaei6046 196125 mac 196125 bytes_out 0 196125 bytes_in 0 196125 station_ip 5.119.252.160 196125 port 2 196125 unique_id port 196125 remote_ip 10.8.0.94 196131 username kalantary6037 196131 kill_reason Another user logged on this global unique id 196131 mac 196131 bytes_out 0 196131 bytes_in 0 196131 station_ip 37.129.33.191 196131 port 8 196131 unique_id port 196131 remote_ip 10.8.1.26 196133 username aminvpn 196133 kill_reason Another user logged on this global unique id 196133 mac 196133 bytes_out 0 196133 bytes_in 0 196133 station_ip 5.119.189.227 196133 port 9 196133 unique_id port 196133 remote_ip 10.8.1.14 196134 username meghdad1616 196134 mac 196134 bytes_out 0 196134 bytes_in 0 196134 station_ip 5.119.156.67 196134 port 9 196134 unique_id port 196134 remote_ip 10.8.0.102 196138 username motamedi9772 196138 mac 196138 bytes_out 0 196138 bytes_in 0 196138 station_ip 37.129.179.216 196138 port 9 196138 unique_id port 196138 remote_ip 10.8.0.54 196139 username sabaghnezhad 196139 kill_reason Another user logged on this global unique id 196139 mac 196139 bytes_out 0 196139 bytes_in 0 196139 station_ip 37.129.85.207 196139 port 4 196139 unique_id port 196139 remote_ip 10.8.0.26 196141 username charkhandaz3496 196141 mac 196141 bytes_out 54937 196141 bytes_in 127296 196141 station_ip 5.119.208.197 196141 port 9 196141 unique_id port 196141 remote_ip 10.8.1.66 196144 username godarzi 196144 mac 196144 bytes_out 15320328 196144 bytes_in 27479673 196144 station_ip 45.84.157.190 196144 port 11 196144 unique_id port 196144 remote_ip 10.8.1.22 196146 username farhad3 196146 kill_reason Another user logged on this global unique id 196146 mac 196146 bytes_out 0 196146 bytes_in 0 196146 station_ip 5.119.152.203 196146 port 9 196146 unique_id port 196146 remote_ip 10.8.1.34 196148 username pourshad 196148 kill_reason Another user logged on this global unique id 196148 mac 196148 bytes_out 0 196148 bytes_in 0 196148 station_ip 5.119.98.224 196148 port 10 196148 unique_id port 196148 remote_ip 10.8.1.46 196149 username meghdad1616 196149 mac 196149 bytes_out 0 196149 bytes_in 0 196149 station_ip 5.119.156.67 196149 port 9 196149 unique_id port 196149 remote_ip 10.8.0.102 196150 username motamedi9772 196150 mac 196150 bytes_out 0 196150 bytes_in 0 196150 station_ip 37.129.179.216 196150 port 10 196150 unique_id port 196150 remote_ip 10.8.0.54 196152 username meghdad1616 196152 mac 196152 bytes_out 320060 196152 bytes_in 240933 196152 station_ip 5.119.156.67 196152 port 11 196152 unique_id port 196152 remote_ip 10.8.1.86 196154 username esmaeili1522 196154 mac 196154 bytes_out 0 196154 bytes_in 0 196154 station_ip 5.120.108.168 196154 port 1 196154 unique_id port 196154 remote_ip 10.8.1.94 196155 username hamid1430 196155 kill_reason Another user logged on this global unique id 196155 mac 196155 bytes_out 0 196155 bytes_in 0 196155 station_ip 83.123.51.226 196155 port 7 196155 unique_id port 196155 remote_ip 10.8.0.42 196158 username mostafa_es78 196158 kill_reason Another user logged on this global unique id 196158 mac 196158 bytes_out 0 196158 bytes_in 0 196158 station_ip 83.122.222.78 196158 port 6 196158 unique_id port 196158 remote_ip 10.8.0.50 196159 username meghdad1616 196159 mac 196159 bytes_out 2066 196159 bytes_in 4417 196159 station_ip 5.119.156.67 196159 port 9 196159 unique_id port 196159 remote_ip 10.8.1.86 196162 username meghdad1616 196162 mac 196162 bytes_out 0 196162 bytes_in 0 196162 station_ip 5.119.156.67 196162 port 7 196162 unique_id port 196162 remote_ip 10.8.1.86 196164 username farhad3 196164 mac 196164 bytes_out 122297 196164 bytes_in 312065 196164 station_ip 5.119.152.203 196164 port 11 196164 unique_id port 196164 remote_ip 10.8.1.34 196167 username barzegar8595 196167 mac 196167 bytes_out 256790 196167 bytes_in 647339 196167 station_ip 46.225.209.162 196167 port 8 196167 unique_id port 196167 remote_ip 10.8.1.82 196174 username meghdad1616 196174 mac 196174 bytes_out 0 196174 bytes_in 0 196174 station_ip 5.119.156.67 196174 port 1 196174 unique_id port 196174 remote_ip 10.8.1.86 196175 username jafari 196175 mac 196175 bytes_out 23519 196175 bytes_in 42851 196175 station_ip 5.200.103.63 196175 port 6 196175 unique_id port 196175 remote_ip 10.8.1.58 196182 username milan 196182 kill_reason Another user logged on this global unique id 196182 mac 196182 bytes_out 0 196182 bytes_in 0 196182 station_ip 5.119.177.28 196182 port 1 196182 unique_id port 196183 username milan 196183 kill_reason Another user logged on this global unique id 196183 mac 196183 bytes_out 0 196183 bytes_in 0 196183 station_ip 5.119.177.28 196183 port 1 196183 unique_id port 196185 username milan 196185 mac 196185 bytes_out 0 196185 bytes_in 0 196185 station_ip 5.119.177.28 196185 port 1 196185 unique_id port 196186 username zahra1101 196186 mac 196186 bytes_out 0 196186 bytes_in 0 196186 station_ip 5.119.109.60 196186 port 1 196186 unique_id port 196186 remote_ip 10.8.1.18 196187 username zahra1101 196187 mac 196187 bytes_out 0 196187 bytes_in 0 196187 station_ip 5.119.109.60 196187 port 1 196187 unique_id port 196187 remote_ip 10.8.1.18 196188 username alipour1506 196188 mac 196188 bytes_out 0 196188 bytes_in 0 196188 station_ip 83.122.169.55 196188 port 4 196188 unique_id port 196188 remote_ip 10.8.0.114 196190 username zahra1101 196190 mac 196190 bytes_out 0 196190 bytes_in 0 196190 station_ip 5.119.109.60 196190 port 1 196190 unique_id port 196190 remote_ip 10.8.1.18 196196 username yaghobi 196196 kill_reason Maximum number of concurrent logins reached 196196 mac 196196 bytes_out 0 196196 bytes_in 0 196196 station_ip 37.129.193.41 196196 port 10 196196 unique_id port 196197 username yaghobi 196197 mac 196197 bytes_out 0 196197 bytes_in 0 196197 station_ip 37.129.193.41 196197 port 8 196197 unique_id port 196197 remote_ip 10.8.0.14 196199 username zahra1101 196199 mac 196199 bytes_out 0 196199 bytes_in 0 196199 station_ip 5.119.109.60 196199 port 10 196199 unique_id port 196199 remote_ip 10.8.0.70 196202 username farhad3 196202 mac 196202 bytes_out 0 196202 bytes_in 0 196202 station_ip 5.119.152.203 196202 port 10 196202 unique_id port 196202 remote_ip 10.8.0.122 196209 username sabaghnezhad 196209 mac 196209 bytes_out 5248323 196209 bytes_in 28046393 196209 station_ip 37.129.85.207 196209 port 3 196209 unique_id port 196209 remote_ip 10.8.0.26 196212 username seyedrezaei2572 196212 mac 196212 bytes_out 0 196212 bytes_in 0 196212 station_ip 37.129.50.231 196212 port 4 196212 unique_id port 196212 remote_ip 10.8.0.126 196219 username mostafa_es78 196219 mac 196219 bytes_out 0 196219 bytes_in 0 196219 station_ip 83.122.222.78 196219 port 6 196219 unique_id port 196166 nas_port_type Virtual 196166 remote_ip 5.5.5.255 196168 username mostafa_es78 196168 mac 196168 bytes_out 0 196168 bytes_in 0 196168 station_ip 83.122.222.78 196168 port 6 196168 unique_id port 196169 username farhad3 196169 mac 196169 bytes_out 4646165 196169 bytes_in 1350040 196169 station_ip 5.119.152.203 196169 port 7 196169 unique_id port 196169 remote_ip 10.8.1.34 196172 username meghdad1616 196172 mac 196172 bytes_out 0 196172 bytes_in 0 196172 station_ip 5.119.156.67 196172 port 1 196172 unique_id port 196172 remote_ip 10.8.1.86 196173 username akbari0070 196173 mac 196173 bytes_out 0 196173 bytes_in 0 196173 station_ip 37.129.80.235 196173 port 5 196173 unique_id port 196173 remote_ip 10.8.0.10 196176 username meghdad1616 196176 kill_reason Another user logged on this global unique id 196176 mac 196176 bytes_out 0 196176 bytes_in 0 196176 station_ip 5.119.156.67 196176 port 4 196176 unique_id port 196176 remote_ip 10.8.0.102 196179 username godarzi 196179 kill_reason Another user logged on this global unique id 196179 mac 196179 bytes_out 0 196179 bytes_in 0 196179 station_ip 45.84.157.190 196179 port 1 196179 unique_id port 196179 remote_ip 10.8.1.22 196180 username meghdad1616 196180 mac 196180 bytes_out 0 196180 bytes_in 0 196180 station_ip 5.119.156.67 196180 port 6 196180 unique_id port 196180 remote_ip 10.8.1.86 196181 username meghdad1616 196181 mac 196181 bytes_out 0 196181 bytes_in 0 196181 station_ip 5.119.156.67 196181 port 7 196181 unique_id port 196181 remote_ip 10.8.1.86 196191 username malekpoir 196191 mac 196191 bytes_out 193410 196191 bytes_in 298992 196191 station_ip 5.119.182.62 196191 port 12 196191 unique_id port 196191 remote_ip 10.8.1.6 196193 username zahra1101 196193 mac 196193 bytes_out 96390 196193 bytes_in 80387 196193 station_ip 5.119.109.60 196193 port 4 196193 unique_id port 196193 remote_ip 10.8.0.70 196195 username milan 196195 kill_reason Another user logged on this global unique id 196195 mac 196195 bytes_out 0 196195 bytes_in 0 196195 station_ip 5.119.177.28 196195 port 1 196195 unique_id port 196203 username milan 196203 kill_reason Another user logged on this global unique id 196203 mac 196203 bytes_out 0 196203 bytes_in 0 196203 station_ip 5.119.177.28 196203 port 1 196203 unique_id port 196206 username godarzi 196206 kill_reason Another user logged on this global unique id 196206 mac 196206 bytes_out 0 196206 bytes_in 0 196206 station_ip 45.84.157.190 196206 port 1 196206 unique_id port 196206 remote_ip 10.8.1.22 196213 username seyedrezaei2572 196213 mac 196213 bytes_out 0 196213 bytes_in 0 196213 station_ip 37.129.50.231 196213 port 4 196213 unique_id port 196213 remote_ip 10.8.0.126 196215 username seyedrezaei2572 196215 kill_reason Another user logged on this global unique id 196215 mac 196215 bytes_out 0 196215 bytes_in 0 196215 station_ip 37.129.50.231 196215 port 4 196215 unique_id port 196215 remote_ip 10.8.0.126 196216 username mostafa_es78 196216 kill_reason Another user logged on this global unique id 196216 mac 196216 bytes_out 0 196216 bytes_in 0 196216 station_ip 83.122.222.78 196216 port 6 196216 unique_id port 196217 username milan 196217 kill_reason Another user logged on this global unique id 196217 mac 196217 bytes_out 0 196217 bytes_in 0 196217 station_ip 5.119.177.28 196217 port 1 196217 unique_id port 196218 username pourshad 196218 mac 196218 bytes_out 0 196218 bytes_in 0 196218 station_ip 5.119.98.224 196218 port 4 196218 unique_id port 196218 remote_ip 10.8.1.46 196220 username pourshad 196220 mac 196177 mac 196177 bytes_out 0 196177 bytes_in 0 196177 station_ip 5.200.103.63 196177 port 4 196177 unique_id port 196177 remote_ip 10.8.1.58 196178 username meghdad1616 196178 mac 196178 bytes_out 0 196178 bytes_in 0 196178 station_ip 5.119.156.67 196178 port 6 196178 unique_id port 196178 remote_ip 10.8.1.86 196184 username zahra1101 196184 mac 196184 bytes_out 59684 196184 bytes_in 169044 196184 station_ip 5.119.109.60 196184 port 7 196184 unique_id port 196184 remote_ip 10.8.1.18 196189 username milan 196189 kill_reason Another user logged on this global unique id 196189 mac 196189 bytes_out 0 196189 bytes_in 0 196189 station_ip 5.119.177.28 196189 port 1 196189 unique_id port 196192 username zahra1101 196192 mac 196192 bytes_out 0 196192 bytes_in 0 196192 station_ip 5.119.109.60 196192 port 1 196192 unique_id port 196192 remote_ip 10.8.1.18 196194 username farhad3 196194 mac 196194 bytes_out 0 196194 bytes_in 0 196194 station_ip 5.119.152.203 196194 port 6 196194 unique_id port 196194 remote_ip 10.8.1.34 196198 username esmaeili1522 196198 mac 196198 bytes_out 0 196198 bytes_in 0 196198 station_ip 5.120.108.168 196198 port 1 196198 unique_id port 196198 remote_ip 10.8.1.94 196200 username akbari0070 196200 mac 196200 bytes_out 2171580 196200 bytes_in 18593715 196200 station_ip 37.129.67.51 196200 port 8 196200 unique_id port 196200 remote_ip 10.8.0.118 196201 username akbari0070 196201 mac 196201 bytes_out 0 196201 bytes_in 0 196201 station_ip 37.129.67.51 196201 port 4 196201 unique_id port 196201 remote_ip 10.8.0.10 196204 username kalantary6037 196204 kill_reason Another user logged on this global unique id 196204 mac 196204 bytes_out 0 196204 bytes_in 0 196204 station_ip 37.129.33.191 196204 port 8 196204 unique_id port 196204 remote_ip 10.8.1.26 196205 username akbari0070 196205 mac 196205 bytes_out 0 196205 bytes_in 0 196205 station_ip 37.129.67.51 196205 port 8 196205 unique_id port 196207 username zahra1101 196207 kill_reason Another user logged on this global unique id 196207 mac 196207 bytes_out 0 196207 bytes_in 0 196207 station_ip 5.119.109.60 196207 port 6 196207 unique_id port 196208 username mammad 196208 unique_id port 196208 terminate_cause Lost-Carrier 196208 bytes_out 1709687 196208 bytes_in 111133626 196208 station_ip 2.183.246.246 196208 port 15729445 196208 nas_port_type Virtual 196208 remote_ip 5.5.5.255 196210 username milan 196210 kill_reason Another user logged on this global unique id 196210 mac 196210 bytes_out 0 196210 bytes_in 0 196210 station_ip 5.119.177.28 196210 port 1 196210 unique_id port 196211 username mostafa_es78 196211 kill_reason Another user logged on this global unique id 196211 mac 196211 bytes_out 0 196211 bytes_in 0 196211 station_ip 83.122.222.78 196211 port 6 196211 unique_id port 196214 username pourshad 196214 mac 196214 bytes_out 0 196214 bytes_in 0 196214 station_ip 5.119.98.224 196214 port 7 196214 unique_id port 196214 remote_ip 10.8.1.46 196224 username milan 196224 kill_reason Another user logged on this global unique id 196224 mac 196224 bytes_out 0 196224 bytes_in 0 196224 station_ip 5.119.177.28 196224 port 1 196224 unique_id port 196228 username milan 196228 mac 196228 bytes_out 0 196228 bytes_in 0 196228 station_ip 5.119.177.28 196228 port 1 196228 unique_id port 196231 username hashtadani5 196231 mac 196231 bytes_out 0 196231 bytes_in 0 196231 station_ip 5.202.30.98 196231 port 7 196231 unique_id port 196231 remote_ip 10.8.1.106 196232 username mostafa_es78 196273 mac 196220 bytes_out 0 196220 bytes_in 0 196220 station_ip 5.119.98.224 196220 port 7 196220 unique_id port 196220 remote_ip 10.8.1.46 196225 username alipour1506 196225 kill_reason Another user logged on this global unique id 196225 mac 196225 bytes_out 0 196225 bytes_in 0 196225 station_ip 151.234.23.177 196225 port 5 196225 unique_id port 196227 username milan 196227 kill_reason Another user logged on this global unique id 196227 mac 196227 bytes_out 0 196227 bytes_in 0 196227 station_ip 5.119.177.28 196227 port 1 196227 unique_id port 196229 username hashtadani5 196229 mac 196229 bytes_out 0 196229 bytes_in 0 196229 station_ip 5.202.30.98 196229 port 8 196229 unique_id port 196229 remote_ip 10.8.1.106 196233 username saeed9658 196233 kill_reason Another user logged on this global unique id 196233 mac 196233 bytes_out 343445 196233 bytes_in 4487756 196233 station_ip 5.119.17.155 196233 port 1 196233 unique_id port 196233 remote_ip 10.8.1.110 196235 username milan 196235 mac 196235 bytes_out 0 196235 bytes_in 0 196235 station_ip 5.119.177.28 196235 port 1 196235 unique_id port 196237 username zahra1101 196237 mac 196237 bytes_out 0 196237 bytes_in 0 196237 station_ip 5.119.42.14 196237 port 1 196237 unique_id port 196237 remote_ip 10.8.1.18 196241 username hashtadani5 196241 mac 196241 bytes_out 0 196241 bytes_in 0 196241 station_ip 37.129.22.12 196241 port 7 196241 unique_id port 196241 remote_ip 10.8.0.74 196248 username zahra1101 196248 mac 196248 bytes_out 0 196248 bytes_in 0 196248 station_ip 5.119.42.14 196248 port 1 196248 unique_id port 196248 remote_ip 10.8.1.18 196250 username kharazmi2920 196250 mac 196250 bytes_out 0 196250 bytes_in 0 196250 station_ip 37.129.197.158 196250 port 11 196250 unique_id port 196250 remote_ip 10.8.0.134 196257 username alirezazadeh 196257 unique_id port 196257 terminate_cause Lost-Carrier 196257 bytes_out 6267968 196257 bytes_in 159291954 196257 station_ip 5.119.143.157 196257 port 15729447 196257 nas_port_type Virtual 196257 remote_ip 5.5.5.255 196258 username charkhandaz3496 196258 mac 196258 bytes_out 0 196258 bytes_in 0 196258 station_ip 5.119.208.187 196258 port 9 196258 unique_id port 196258 remote_ip 10.8.1.66 196262 username alipour1506 196262 kill_reason Another user logged on this global unique id 196262 mac 196262 bytes_out 0 196262 bytes_in 0 196262 station_ip 151.234.23.177 196262 port 5 196262 unique_id port 196263 username zahra1101 196263 mac 196263 bytes_out 0 196263 bytes_in 0 196263 station_ip 5.119.42.14 196263 port 8 196263 unique_id port 196263 remote_ip 10.8.1.18 196265 username morteza4424 196265 kill_reason Another user logged on this global unique id 196265 mac 196265 bytes_out 0 196265 bytes_in 0 196265 station_ip 83.122.76.223 196265 port 3 196265 unique_id port 196266 username motamedi9772 196266 mac 196266 bytes_out 5608 196266 bytes_in 11813 196266 station_ip 37.129.207.60 196266 port 1 196266 unique_id port 196266 remote_ip 10.8.1.118 196267 username motamedi9772 196267 mac 196267 bytes_out 0 196267 bytes_in 0 196267 station_ip 37.129.207.60 196267 port 1 196267 unique_id port 196267 remote_ip 10.8.1.118 196270 username morteza4424 196270 mac 196270 bytes_out 0 196270 bytes_in 0 196270 station_ip 83.122.76.223 196270 port 3 196270 unique_id port 196272 username motamedi9772 196272 mac 196272 bytes_out 0 196272 bytes_in 0 196272 station_ip 37.129.207.60 196272 port 3 196272 unique_id port 196272 remote_ip 10.8.0.54 196278 username esmaeili1522 196278 mac 196221 username mostafa_es78 196221 mac 196221 bytes_out 2034 196221 bytes_in 4041 196221 station_ip 83.122.222.78 196221 port 4 196221 unique_id port 196221 remote_ip 10.8.1.102 196222 username askarzadeh9013 196222 kill_reason Another user logged on this global unique id 196222 mac 196222 bytes_out 0 196222 bytes_in 0 196222 station_ip 83.122.54.221 196222 port 10 196222 unique_id port 196222 remote_ip 10.8.0.130 196223 username alipour1506 196223 kill_reason Another user logged on this global unique id 196223 mac 196223 bytes_out 0 196223 bytes_in 0 196223 station_ip 151.234.23.177 196223 port 5 196223 unique_id port 196223 remote_ip 10.8.0.114 196226 username akbari0070 196226 kill_reason Another user logged on this global unique id 196226 mac 196226 bytes_out 0 196226 bytes_in 0 196226 station_ip 37.129.67.51 196226 port 8 196226 unique_id port 196230 username pourshad 196230 mac 196230 bytes_out 59508 196230 bytes_in 76731 196230 station_ip 5.119.98.224 196230 port 7 196230 unique_id port 196230 remote_ip 10.8.1.46 196236 username zahra1101 196236 mac 196236 bytes_out 16300 196236 bytes_in 25471 196236 station_ip 5.119.181.168 196236 port 8 196236 unique_id port 196236 remote_ip 10.8.1.18 196238 username pourshad 196238 kill_reason Another user logged on this global unique id 196238 mac 196238 bytes_out 0 196238 bytes_in 0 196238 station_ip 5.119.98.224 196238 port 7 196238 unique_id port 196238 remote_ip 10.8.1.46 196239 username zahra1101 196239 mac 196239 bytes_out 0 196239 bytes_in 0 196239 station_ip 5.119.42.14 196239 port 1 196239 unique_id port 196239 remote_ip 10.8.1.18 196242 username milan 196242 kill_reason Another user logged on this global unique id 196242 mac 196242 bytes_out 0 196242 bytes_in 0 196242 station_ip 5.119.177.28 196242 port 1 196242 unique_id port 196243 username askarzadeh9013 196243 kill_reason Another user logged on this global unique id 196243 mac 196243 bytes_out 0 196243 bytes_in 0 196243 station_ip 83.122.54.221 196243 port 10 196243 unique_id port 196244 username hashtadani5 196244 mac 196244 bytes_out 0 196244 bytes_in 0 196244 station_ip 37.129.22.12 196244 port 7 196244 unique_id port 196244 remote_ip 10.8.0.74 196253 username tahmorsi 196253 kill_reason Another user logged on this global unique id 196253 mac 196253 bytes_out 0 196253 bytes_in 0 196253 station_ip 86.57.90.86 196253 port 1 196253 unique_id port 196254 username hamid1430 196254 mac 196254 bytes_out 0 196254 bytes_in 0 196254 station_ip 83.123.51.226 196254 port 7 196254 unique_id port 196254 remote_ip 10.8.0.42 196255 username askarzadeh9013 196255 kill_reason Another user logged on this global unique id 196255 mac 196255 bytes_out 0 196255 bytes_in 0 196255 station_ip 83.122.54.221 196255 port 10 196255 unique_id port 196259 username kharazmi2920 196259 mac 196259 bytes_out 0 196259 bytes_in 0 196259 station_ip 37.129.197.158 196259 port 6 196259 unique_id port 196259 remote_ip 10.8.0.134 196261 username morteza4424 196261 kill_reason Another user logged on this global unique id 196261 mac 196261 bytes_out 0 196261 bytes_in 0 196261 station_ip 83.122.76.223 196261 port 3 196261 unique_id port 196261 remote_ip 10.8.0.138 196264 username motamedi9772 196264 mac 196264 bytes_out 0 196264 bytes_in 0 196264 station_ip 37.129.207.60 196264 port 7 196264 unique_id port 196264 remote_ip 10.8.0.54 196269 username motamedi9772 196269 mac 196269 bytes_out 661983 196269 bytes_in 6378987 196269 station_ip 37.129.207.60 196269 port 7 196269 unique_id port 196269 remote_ip 10.8.0.54 196273 username esmaeili1522 196232 kill_reason Another user logged on this global unique id 196232 mac 196232 bytes_out 0 196232 bytes_in 0 196232 station_ip 83.122.222.78 196232 port 4 196232 unique_id port 196232 remote_ip 10.8.1.102 196234 username pourshad 196234 mac 196234 bytes_out 24985 196234 bytes_in 34947 196234 station_ip 5.119.98.224 196234 port 7 196234 unique_id port 196234 remote_ip 10.8.1.46 196240 username mostafa_es78 196240 mac 196240 bytes_out 0 196240 bytes_in 0 196240 station_ip 83.122.222.78 196240 port 4 196240 unique_id port 196245 username hashtadani5 196245 mac 196245 bytes_out 0 196245 bytes_in 0 196245 station_ip 37.129.22.12 196245 port 7 196245 unique_id port 196245 remote_ip 10.8.0.74 196246 username farhad3 196246 mac 196246 bytes_out 292248 196246 bytes_in 2848607 196246 station_ip 5.119.152.203 196246 port 4 196246 unique_id port 196246 remote_ip 10.8.1.34 196247 username hamid1430 196247 mac 196247 bytes_out 0 196247 bytes_in 0 196247 station_ip 83.123.51.226 196247 port 6 196247 unique_id port 196247 remote_ip 10.8.0.42 196249 username dortaj3792 196249 mac 196249 bytes_out 0 196249 bytes_in 0 196249 station_ip 5.119.97.79 196249 port 3 196249 unique_id port 196249 remote_ip 10.8.1.38 196251 username zahra1101 196251 mac 196251 bytes_out 99871 196251 bytes_in 141222 196251 station_ip 5.119.42.14 196251 port 1 196251 unique_id port 196251 remote_ip 10.8.1.18 196252 username tahmorsi 196252 kill_reason Another user logged on this global unique id 196252 mac 196252 bytes_out 0 196252 bytes_in 0 196252 station_ip 86.57.90.86 196252 port 1 196252 unique_id port 196256 username tahmorsi 196256 mac 196256 bytes_out 130336 196256 bytes_in 677571 196256 station_ip 86.57.90.86 196256 port 4 196256 unique_id port 196256 remote_ip 10.8.1.42 196260 username saeed9658 196260 mac 196260 bytes_out 977162 196260 bytes_in 9463487 196260 station_ip 5.119.17.155 196260 port 1 196260 unique_id port 196260 remote_ip 10.8.1.110 196268 username saeed9658 196268 mac 196268 bytes_out 0 196268 bytes_in 0 196268 station_ip 5.119.17.155 196268 port 6 196268 unique_id port 196268 remote_ip 10.8.0.142 196271 username morteza4424 196271 mac 196271 bytes_out 0 196271 bytes_in 0 196271 station_ip 83.122.76.223 196271 port 4 196271 unique_id port 196271 remote_ip 10.8.1.122 196274 username motamedi9772 196274 mac 196274 bytes_out 0 196274 bytes_in 0 196274 station_ip 37.129.207.60 196274 port 3 196274 unique_id port 196274 remote_ip 10.8.0.54 196275 username morteza4424 196275 mac 196275 bytes_out 3678 196275 bytes_in 8440 196275 station_ip 83.122.76.223 196275 port 8 196275 unique_id port 196275 remote_ip 10.8.1.122 196276 username yaghobi 196276 kill_reason Another user logged on this global unique id 196276 mac 196276 bytes_out 0 196276 bytes_in 0 196276 station_ip 83.123.97.227 196276 port 3 196276 unique_id port 196276 remote_ip 10.8.0.14 196277 username saeed9658 196277 mac 196277 bytes_out 0 196277 bytes_in 0 196277 station_ip 5.119.17.155 196277 port 3 196277 unique_id port 196277 remote_ip 10.8.1.110 196281 username saeed9658 196281 mac 196281 bytes_out 0 196281 bytes_in 0 196281 station_ip 5.119.17.155 196281 port 1 196281 unique_id port 196281 remote_ip 10.8.1.110 196284 username seyedrezaei2572 196284 mac 196284 bytes_out 0 196284 bytes_in 0 196284 station_ip 37.129.50.231 196284 port 4 196284 unique_id port 196285 username barzegar8595 196285 mac 196285 bytes_out 0 196273 bytes_out 0 196273 bytes_in 0 196273 station_ip 5.120.108.168 196273 port 8 196273 unique_id port 196273 remote_ip 10.8.1.94 196279 username barzegar8595 196279 mac 196279 bytes_out 186786 196279 bytes_in 215998 196279 station_ip 37.27.52.97 196279 port 7 196279 unique_id port 196279 remote_ip 10.8.1.82 196283 username pourshad 196283 kill_reason Another user logged on this global unique id 196283 mac 196283 bytes_out 0 196283 bytes_in 0 196283 station_ip 5.119.98.224 196283 port 4 196283 unique_id port 196283 remote_ip 10.8.1.46 196289 username yaghobi 196289 mac 196289 bytes_out 13876 196289 bytes_in 25233 196289 station_ip 83.123.97.227 196289 port 7 196289 unique_id port 196289 remote_ip 10.8.1.62 196292 username zahra1101 196292 mac 196292 bytes_out 0 196292 bytes_in 0 196292 station_ip 5.119.40.196 196292 port 8 196292 unique_id port 196292 remote_ip 10.8.1.18 196295 username saeed9658 196295 mac 196295 bytes_out 0 196295 bytes_in 0 196295 station_ip 5.119.17.155 196295 port 7 196295 unique_id port 196295 remote_ip 10.8.1.110 196297 username akbari0070 196297 kill_reason Another user logged on this global unique id 196297 mac 196297 bytes_out 0 196297 bytes_in 0 196297 station_ip 37.129.67.51 196297 port 8 196297 unique_id port 196301 username barzegar8595 196301 mac 196301 bytes_out 79543 196301 bytes_in 212360 196301 station_ip 46.225.209.162 196301 port 3 196301 unique_id port 196301 remote_ip 10.8.1.82 196304 username barzegar8595 196304 kill_reason Another user logged on this global unique id 196304 mac 196304 bytes_out 0 196304 bytes_in 0 196304 station_ip 37.27.52.97 196304 port 3 196304 unique_id port 196304 remote_ip 10.8.1.82 196307 username akbari0070 196307 kill_reason Another user logged on this global unique id 196307 mac 196307 bytes_out 0 196307 bytes_in 0 196307 station_ip 37.129.67.51 196307 port 8 196307 unique_id port 196309 username seyedrezaei2572 196309 mac 196309 bytes_out 2908656 196309 bytes_in 12811528 196309 station_ip 37.129.50.231 196309 port 4 196309 unique_id port 196309 remote_ip 10.8.0.126 196310 username dortaj3792 196310 kill_reason Another user logged on this global unique id 196310 mac 196310 bytes_out 0 196310 bytes_in 0 196310 station_ip 5.119.97.79 196310 port 7 196310 unique_id port 196310 remote_ip 10.8.1.38 196315 username mostafa_es78 196315 mac 196315 bytes_out 0 196315 bytes_in 0 196315 station_ip 83.122.222.78 196315 port 7 196315 unique_id port 196315 remote_ip 10.8.0.50 196319 username pourshad 196319 mac 196319 bytes_out 461906 196319 bytes_in 6017835 196319 station_ip 5.119.98.224 196319 port 1 196319 unique_id port 196319 remote_ip 10.8.1.46 196327 username mirzaei6046 196327 mac 196327 bytes_out 0 196327 bytes_in 0 196327 station_ip 5.119.252.160 196327 port 2 196327 unique_id port 196330 username hamid1430 196330 mac 196330 bytes_out 0 196330 bytes_in 0 196330 station_ip 83.123.51.226 196330 port 10 196330 unique_id port 196330 remote_ip 10.8.1.114 196332 username motamedi9772 196332 mac 196332 bytes_out 0 196332 bytes_in 0 196332 station_ip 37.129.218.188 196332 port 7 196332 unique_id port 196332 remote_ip 10.8.0.54 196334 username mirzaei6046 196334 mac 196334 bytes_out 1534088 196334 bytes_in 5543220 196334 station_ip 5.119.252.160 196334 port 3 196334 unique_id port 196334 remote_ip 10.8.0.94 196335 username hatami 196335 mac 196335 bytes_out 0 196335 bytes_in 0 196335 station_ip 151.235.113.109 196335 port 2 196335 unique_id port 196335 remote_ip 10.8.0.150 196278 bytes_out 0 196278 bytes_in 0 196278 station_ip 5.120.108.168 196278 port 8 196278 unique_id port 196278 remote_ip 10.8.1.94 196280 username zahra1101 196280 mac 196280 bytes_out 0 196280 bytes_in 0 196280 station_ip 5.119.40.196 196280 port 1 196280 unique_id port 196280 remote_ip 10.8.1.18 196282 username saeed9658 196282 mac 196282 bytes_out 0 196282 bytes_in 0 196282 station_ip 5.119.17.155 196282 port 1 196282 unique_id port 196282 remote_ip 10.8.1.110 196286 username akbari0070 196286 kill_reason Another user logged on this global unique id 196286 mac 196286 bytes_out 0 196286 bytes_in 0 196286 station_ip 37.129.67.51 196286 port 8 196286 unique_id port 196288 username zahra1101 196288 mac 196288 bytes_out 0 196288 bytes_in 0 196288 station_ip 5.119.40.196 196288 port 3 196288 unique_id port 196288 remote_ip 10.8.1.18 196291 username aminvpn 196291 unique_id port 196291 terminate_cause Lost-Carrier 196291 bytes_out 561427 196291 bytes_in 2314764 196291 station_ip 83.122.93.97 196291 port 15729448 196291 nas_port_type Virtual 196291 remote_ip 5.5.5.255 196293 username zahra1101 196293 mac 196293 bytes_out 0 196293 bytes_in 0 196293 station_ip 5.119.40.196 196293 port 7 196293 unique_id port 196293 remote_ip 10.8.1.18 196298 username yaghobi 196298 mac 196298 bytes_out 11536 196298 bytes_in 10347 196298 station_ip 37.129.85.190 196298 port 8 196298 unique_id port 196298 remote_ip 10.8.1.62 196299 username godarzi 196299 mac 196299 bytes_out 0 196299 bytes_in 0 196299 station_ip 5.120.57.95 196299 port 4 196299 unique_id port 196299 remote_ip 10.8.1.22 196303 username godarzi 196303 mac 196303 bytes_out 0 196303 bytes_in 0 196303 station_ip 5.120.57.95 196303 port 4 196303 unique_id port 196303 remote_ip 10.8.1.22 196306 username barzegar8595 196306 mac 196306 bytes_out 5145 196306 bytes_in 8712 196306 station_ip 37.27.52.97 196306 port 3 196306 unique_id port 196306 remote_ip 10.8.1.82 196308 username yaghobi 196308 mac 196308 bytes_out 0 196308 bytes_in 0 196308 station_ip 113.203.48.33 196308 port 4 196308 unique_id port 196308 remote_ip 10.8.1.62 196311 username zahra1101 196311 mac 196311 bytes_out 3102414 196311 bytes_in 13327081 196311 station_ip 5.119.252.255 196311 port 4 196311 unique_id port 196311 remote_ip 10.8.1.18 196313 username godarzi 196313 kill_reason Another user logged on this global unique id 196313 mac 196313 bytes_out 0 196313 bytes_in 0 196313 station_ip 5.120.57.95 196313 port 11 196313 unique_id port 196313 remote_ip 10.8.1.22 196314 username charkhandaz3496 196314 mac 196314 bytes_out 1266029 196314 bytes_in 94609 196314 station_ip 5.119.208.187 196314 port 4 196314 unique_id port 196314 remote_ip 10.8.1.66 196318 username teymori5660 196318 mac 196318 bytes_out 0 196318 bytes_in 0 196318 station_ip 5.119.151.64 196318 port 8 196318 unique_id port 196318 remote_ip 10.8.1.130 196323 username zahra1101 196323 mac 196323 bytes_out 0 196323 bytes_in 0 196323 station_ip 5.119.252.255 196323 port 6 196323 unique_id port 196323 remote_ip 10.8.0.70 196325 username majidsarmast 196325 mac 196325 bytes_out 243221 196325 bytes_in 920544 196325 station_ip 86.57.46.192 196325 port 3 196325 unique_id port 196325 remote_ip 10.8.1.126 196329 username saeeddamghani 196329 mac 196329 bytes_out 0 196329 bytes_in 0 196329 station_ip 217.60.175.206 196329 port 4 196329 unique_id port 196329 remote_ip 10.8.1.10 196333 username sabaghnezhad 196333 mac 196333 bytes_out 0 196285 bytes_in 0 196285 station_ip 37.27.52.97 196285 port 3 196285 unique_id port 196285 remote_ip 10.8.1.82 196287 username saeed9658 196287 mac 196287 bytes_out 0 196287 bytes_in 0 196287 station_ip 5.119.17.155 196287 port 8 196287 unique_id port 196287 remote_ip 10.8.1.110 196290 username yaghobi 196290 mac 196290 bytes_out 6736 196290 bytes_in 7986 196290 station_ip 83.123.97.227 196290 port 7 196290 unique_id port 196290 remote_ip 10.8.1.62 196294 username zahra1101 196294 mac 196294 bytes_out 0 196294 bytes_in 0 196294 station_ip 5.119.40.196 196294 port 7 196294 unique_id port 196294 remote_ip 10.8.1.18 196296 username zahra1101 196296 mac 196296 bytes_out 0 196296 bytes_in 0 196296 station_ip 5.119.40.196 196296 port 7 196296 unique_id port 196296 remote_ip 10.8.1.18 196300 username zahra1101 196300 mac 196300 bytes_out 2702573 196300 bytes_in 2595135 196300 station_ip 5.119.40.196 196300 port 7 196300 unique_id port 196300 remote_ip 10.8.1.18 196302 username yarmohamadi7916 196302 kill_reason Another user logged on this global unique id 196302 mac 196302 bytes_out 0 196302 bytes_in 0 196302 station_ip 5.120.117.247 196302 port 6 196302 unique_id port 196302 remote_ip 10.8.0.146 196305 username kharazmi2920 196305 mac 196305 bytes_out 0 196305 bytes_in 0 196305 station_ip 37.129.197.158 196305 port 3 196305 unique_id port 196305 remote_ip 10.8.0.134 196312 username yarmohamadi7916 196312 kill_reason Another user logged on this global unique id 196312 mac 196312 bytes_out 0 196312 bytes_in 0 196312 station_ip 5.120.117.247 196312 port 6 196312 unique_id port 196316 username charkhandaz3496 196316 mac 196316 bytes_out 0 196316 bytes_in 0 196316 station_ip 5.119.208.187 196316 port 12 196316 unique_id port 196316 remote_ip 10.8.1.66 196317 username sekonji0496 196317 mac 196317 bytes_out 0 196317 bytes_in 0 196317 station_ip 83.123.135.59 196317 port 11 196317 unique_id port 196317 remote_ip 10.8.0.98 196320 username zahra1101 196320 mac 196320 bytes_out 3377327 196320 bytes_in 13798997 196320 station_ip 5.119.252.255 196320 port 4 196320 unique_id port 196320 remote_ip 10.8.1.18 196321 username yarmohamadi7916 196321 mac 196321 bytes_out 0 196321 bytes_in 0 196321 station_ip 5.120.117.247 196321 port 6 196321 unique_id port 196322 username saeed9658 196322 mac 196322 bytes_out 0 196322 bytes_in 0 196322 station_ip 5.119.17.155 196322 port 9 196322 unique_id port 196322 remote_ip 10.8.1.110 196324 username saeeddamghani 196324 mac 196324 bytes_out 0 196324 bytes_in 0 196324 station_ip 217.60.175.206 196324 port 4 196324 unique_id port 196324 remote_ip 10.8.1.10 196326 username zahra1101 196326 mac 196326 bytes_out 0 196326 bytes_in 0 196326 station_ip 5.119.252.255 196326 port 4 196326 unique_id port 196326 remote_ip 10.8.1.18 196328 username pourshad 196328 mac 196328 bytes_out 0 196328 bytes_in 0 196328 station_ip 5.119.98.224 196328 port 1 196328 unique_id port 196328 remote_ip 10.8.1.46 196331 username zahra1101 196331 mac 196331 bytes_out 4259186 196331 bytes_in 24879326 196331 station_ip 5.119.252.255 196331 port 4 196331 unique_id port 196331 remote_ip 10.8.1.18 196339 username mostafa_es78 196339 mac 196339 bytes_out 50407 196339 bytes_in 89824 196339 station_ip 83.122.197.90 196339 port 2 196339 unique_id port 196339 remote_ip 10.8.0.50 196340 username mirzaei6046 196340 mac 196340 bytes_out 0 196340 bytes_in 0 196340 station_ip 5.119.252.160 196340 port 8 196333 bytes_in 0 196333 station_ip 83.123.114.158 196333 port 11 196333 unique_id port 196333 remote_ip 10.8.0.26 196341 username mirzaei6046 196341 mac 196341 bytes_out 0 196341 bytes_in 0 196341 station_ip 5.119.252.160 196341 port 8 196341 unique_id port 196341 remote_ip 10.8.1.134 196343 username zahra1101 196343 mac 196343 bytes_out 0 196343 bytes_in 0 196343 station_ip 5.119.252.255 196343 port 9 196343 unique_id port 196343 remote_ip 10.8.1.18 196345 username saeeddamghani 196345 mac 196345 bytes_out 0 196345 bytes_in 0 196345 station_ip 217.60.175.206 196345 port 12 196345 unique_id port 196345 remote_ip 10.8.0.38 196346 username kharazmi2920 196346 mac 196346 bytes_out 0 196346 bytes_in 0 196346 station_ip 37.129.197.158 196346 port 2 196346 unique_id port 196346 remote_ip 10.8.0.134 196352 username zahra1101 196352 mac 196352 bytes_out 0 196352 bytes_in 0 196352 station_ip 5.119.252.255 196352 port 1 196352 unique_id port 196352 remote_ip 10.8.1.18 196354 username aminvpn 196354 unique_id port 196354 terminate_cause Lost-Carrier 196354 bytes_out 10212593 196354 bytes_in 143743169 196354 station_ip 83.122.108.183 196354 port 15729449 196354 nas_port_type Virtual 196354 remote_ip 5.5.5.255 196355 username sekonji0496 196355 mac 196355 bytes_out 0 196355 bytes_in 0 196355 station_ip 83.123.135.59 196355 port 2 196355 unique_id port 196355 remote_ip 10.8.0.98 196361 username farhad3 196361 kill_reason Another user logged on this global unique id 196361 mac 196361 bytes_out 0 196361 bytes_in 0 196361 station_ip 5.119.158.18 196361 port 7 196361 unique_id port 196361 remote_ip 10.8.1.34 196366 username saeed9658 196366 mac 196366 bytes_out 1460390 196366 bytes_in 11776605 196366 station_ip 5.119.17.155 196366 port 14 196366 unique_id port 196366 remote_ip 10.8.1.110 196368 username mirzaei6046 196368 mac 196368 bytes_out 349559 196368 bytes_in 5509786 196368 station_ip 5.114.4.50 196368 port 7 196368 unique_id port 196368 remote_ip 10.8.0.94 196373 username mostafa_es78 196373 mac 196373 bytes_out 5100552 196373 bytes_in 35542801 196373 station_ip 83.122.197.90 196373 port 4 196373 unique_id port 196373 remote_ip 10.8.1.102 196376 username esmaeilkazemi 196376 mac 196376 bytes_out 680480 196376 bytes_in 9405768 196376 station_ip 83.122.36.78 196376 port 12 196376 unique_id port 196376 remote_ip 10.8.0.34 196377 username akbari0070 196377 kill_reason Another user logged on this global unique id 196377 mac 196377 bytes_out 0 196377 bytes_in 0 196377 station_ip 37.129.67.51 196377 port 8 196377 unique_id port 196381 username motamedi9772 196381 mac 196381 bytes_out 21082 196381 bytes_in 165065 196381 station_ip 37.129.149.180 196381 port 12 196381 unique_id port 196381 remote_ip 10.8.1.118 196384 username morteza4424 196384 mac 196384 bytes_out 0 196384 bytes_in 0 196384 station_ip 83.122.100.215 196384 port 8 196384 unique_id port 196385 username sekonji0496 196385 mac 196385 bytes_out 763673 196385 bytes_in 4991297 196385 station_ip 83.123.135.59 196385 port 2 196385 unique_id port 196385 remote_ip 10.8.0.98 196387 username barzegar 196387 kill_reason Maximum check online fails reached 196387 mac 196387 bytes_out 0 196387 bytes_in 0 196387 station_ip 5.119.251.17 196387 port 16 196387 unique_id port 196390 username godarzi 196390 mac 196390 bytes_out 3312470 196390 bytes_in 22399348 196390 station_ip 45.84.157.190 196390 port 9 196390 unique_id port 196390 remote_ip 10.8.1.22 196392 username hajghani 196392 mac 196336 username zahra1101 196336 mac 196336 bytes_out 0 196336 bytes_in 0 196336 station_ip 5.119.252.255 196336 port 3 196336 unique_id port 196336 remote_ip 10.8.1.18 196337 username akbari0070 196337 kill_reason Another user logged on this global unique id 196337 mac 196337 bytes_out 0 196337 bytes_in 0 196337 station_ip 37.129.67.51 196337 port 8 196337 unique_id port 196338 username zahra1101 196338 kill_reason Maximum check online fails reached 196338 mac 196338 bytes_out 0 196338 bytes_in 0 196338 station_ip 5.119.252.255 196338 port 3 196338 unique_id port 196344 username morteza4424 196344 kill_reason Another user logged on this global unique id 196344 mac 196344 bytes_out 0 196344 bytes_in 0 196344 station_ip 83.122.100.215 196344 port 8 196344 unique_id port 196344 remote_ip 10.8.1.122 196347 username pourshad 196347 kill_reason Another user logged on this global unique id 196347 mac 196347 bytes_out 0 196347 bytes_in 0 196347 station_ip 5.119.98.224 196347 port 1 196347 unique_id port 196347 remote_ip 10.8.1.46 196348 username askarzadeh9013 196348 mac 196348 bytes_out 0 196348 bytes_in 0 196348 station_ip 83.122.84.145 196348 port 3 196348 unique_id port 196348 remote_ip 10.8.0.130 196349 username milan 196349 mac 196349 bytes_out 0 196349 bytes_in 0 196349 station_ip 5.119.177.28 196349 port 1 196349 unique_id port 196351 username sekonji0496 196351 mac 196351 bytes_out 0 196351 bytes_in 0 196351 station_ip 83.123.135.59 196351 port 6 196351 unique_id port 196351 remote_ip 10.8.0.98 196353 username houshang 196353 mac 196353 bytes_out 0 196353 bytes_in 0 196353 station_ip 5.120.129.62 196353 port 7 196353 unique_id port 196353 remote_ip 10.8.0.46 196356 username mirzaei6046 196356 mac 196356 bytes_out 16690331 196356 bytes_in 17111133 196356 station_ip 5.119.252.160 196356 port 12 196356 unique_id port 196356 remote_ip 10.8.1.134 196358 username sekonji0496 196358 mac 196358 bytes_out 0 196358 bytes_in 0 196358 station_ip 83.123.135.59 196358 port 2 196358 unique_id port 196358 remote_ip 10.8.0.98 196363 username mosi 196363 mac 196363 bytes_out 0 196363 bytes_in 0 196363 station_ip 2.183.128.239 196363 port 11 196363 unique_id port 196363 remote_ip 10.8.1.78 196365 username esmaeilkazemi 196365 mac 196365 bytes_out 0 196365 bytes_in 0 196365 station_ip 83.122.36.78 196365 port 6 196365 unique_id port 196365 remote_ip 10.8.0.34 196367 username alirezaza 196367 unique_id port 196367 terminate_cause Lost-Carrier 196367 bytes_out 78668 196367 bytes_in 540997 196367 station_ip 5.119.175.159 196367 port 15729451 196367 nas_port_type Virtual 196367 remote_ip 5.5.5.223 196371 username kharazmi2920 196371 kill_reason Another user logged on this global unique id 196371 mac 196371 bytes_out 0 196371 bytes_in 0 196371 station_ip 37.129.197.158 196371 port 13 196371 unique_id port 196371 remote_ip 10.8.0.134 196372 username mirzaei6046 196372 mac 196372 bytes_out 0 196372 bytes_in 0 196372 station_ip 5.120.144.43 196372 port 7 196372 unique_id port 196372 remote_ip 10.8.0.94 196374 username barzegar8595 196374 mac 196374 bytes_out 0 196374 bytes_in 0 196374 station_ip 89.32.107.134 196374 port 15 196374 unique_id port 196374 remote_ip 10.8.1.82 196383 username fezealinaghi 196383 mac 196383 bytes_out 0 196383 bytes_in 0 196383 station_ip 83.122.241.49 196383 port 10 196383 unique_id port 196383 remote_ip 10.8.0.154 196386 username hajghani 196386 mac 196386 bytes_out 0 196386 bytes_in 0 196386 station_ip 37.137.12.38 196386 port 4 196340 unique_id port 196340 remote_ip 10.8.1.134 196342 username hosseine 196342 kill_reason Another user logged on this global unique id 196342 mac 196342 bytes_out 0 196342 bytes_in 0 196342 station_ip 37.129.181.76 196342 port 9 196342 unique_id port 196350 username akbari0070 196350 kill_reason Another user logged on this global unique id 196350 mac 196350 bytes_out 0 196350 bytes_in 0 196350 station_ip 37.129.67.51 196350 port 8 196350 unique_id port 196357 username morteza4424 196357 kill_reason Another user logged on this global unique id 196357 mac 196357 bytes_out 0 196357 bytes_in 0 196357 station_ip 83.122.100.215 196357 port 8 196357 unique_id port 196359 username farhad3 196359 mac 196359 bytes_out 539528 196359 bytes_in 5334130 196359 station_ip 5.119.158.18 196359 port 7 196359 unique_id port 196359 remote_ip 10.8.1.34 196360 username zahra1101 196360 mac 196360 bytes_out 0 196360 bytes_in 0 196360 station_ip 5.119.252.255 196360 port 7 196360 unique_id port 196360 remote_ip 10.8.1.18 196362 username pourshad 196362 mac 196362 bytes_out 0 196362 bytes_in 0 196362 station_ip 5.119.98.224 196362 port 1 196362 unique_id port 196362 remote_ip 10.8.1.46 196364 username saeeddamghani 196364 kill_reason Another user logged on this global unique id 196364 mac 196364 bytes_out 0 196364 bytes_in 0 196364 station_ip 217.60.175.206 196364 port 12 196364 unique_id port 196364 remote_ip 10.8.1.10 196369 username jafari 196369 kill_reason Another user logged on this global unique id 196369 mac 196369 bytes_out 0 196369 bytes_in 0 196369 station_ip 188.208.253.41 196369 port 13 196369 unique_id port 196369 remote_ip 10.8.1.58 196370 username hajghani 196370 mac 196370 bytes_out 395042 196370 bytes_in 1221068 196370 station_ip 37.137.12.38 196370 port 15 196370 unique_id port 196370 remote_ip 10.8.1.30 196375 username mosi 196375 mac 196375 bytes_out 43574 196375 bytes_in 121644 196375 station_ip 5.233.55.186 196375 port 4 196375 unique_id port 196375 remote_ip 10.8.1.78 196378 username jafari 196378 mac 196378 bytes_out 0 196378 bytes_in 0 196378 station_ip 188.208.253.41 196378 port 13 196378 unique_id port 196379 username yaghobi 196379 mac 196379 bytes_out 0 196379 bytes_in 0 196379 station_ip 83.123.173.104 196379 port 6 196379 unique_id port 196379 remote_ip 10.8.0.14 196380 username kalantary6037 196380 mac 196380 bytes_out 0 196380 bytes_in 0 196380 station_ip 37.129.60.127 196380 port 3 196380 unique_id port 196380 remote_ip 10.8.0.158 196382 username hajghani 196382 mac 196382 bytes_out 5113490 196382 bytes_in 35556723 196382 station_ip 37.137.12.38 196382 port 4 196382 unique_id port 196382 remote_ip 10.8.1.30 196394 username zahra1101 196394 mac 196394 bytes_out 0 196394 bytes_in 0 196394 station_ip 5.119.252.255 196394 port 4 196394 unique_id port 196394 remote_ip 10.8.1.18 196396 username sekonji0496 196396 mac 196396 bytes_out 0 196396 bytes_in 0 196396 station_ip 83.123.135.59 196396 port 8 196396 unique_id port 196396 remote_ip 10.8.0.98 196399 username hashtadani5 196399 mac 196399 bytes_out 0 196399 bytes_in 0 196399 station_ip 37.129.77.168 196399 port 9 196399 unique_id port 196399 remote_ip 10.8.1.106 196402 username hamid1430 196402 kill_reason Another user logged on this global unique id 196402 mac 196402 bytes_out 0 196402 bytes_in 0 196402 station_ip 83.123.51.226 196402 port 12 196402 unique_id port 196402 remote_ip 10.8.1.114 196404 username zahra1101 196404 mac 196404 bytes_out 0 196404 bytes_in 0 196386 unique_id port 196386 remote_ip 10.8.1.30 196388 username ahmadi1 196388 mac 196388 bytes_out 0 196388 bytes_in 0 196388 station_ip 83.123.74.137 196388 port 6 196388 unique_id port 196388 remote_ip 10.8.0.162 196389 username teymori5660 196389 mac 196389 bytes_out 1048041 196389 bytes_in 18624200 196389 station_ip 5.119.151.64 196389 port 10 196389 unique_id port 196389 remote_ip 10.8.1.130 196391 username sekonji0496 196391 mac 196391 bytes_out 0 196391 bytes_in 0 196391 station_ip 83.123.135.59 196391 port 6 196391 unique_id port 196391 remote_ip 10.8.0.98 196395 username sekonji0496 196395 mac 196395 bytes_out 0 196395 bytes_in 0 196395 station_ip 83.123.135.59 196395 port 8 196395 unique_id port 196395 remote_ip 10.8.0.98 196397 username hashtadani5 196397 mac 196397 bytes_out 0 196397 bytes_in 0 196397 station_ip 37.129.77.168 196397 port 9 196397 unique_id port 196397 remote_ip 10.8.1.106 196403 username hashtadani5 196403 mac 196403 bytes_out 0 196403 bytes_in 0 196403 station_ip 37.129.77.168 196403 port 12 196403 unique_id port 196403 remote_ip 10.8.0.74 196413 username hashtadani5 196413 mac 196413 bytes_out 0 196413 bytes_in 0 196413 station_ip 37.129.77.168 196413 port 12 196413 unique_id port 196413 remote_ip 10.8.0.74 196414 username hashtadani5 196414 mac 196414 bytes_out 0 196414 bytes_in 0 196414 station_ip 37.129.77.168 196414 port 9 196414 unique_id port 196414 remote_ip 10.8.1.106 196416 username sekonji0496 196416 mac 196416 bytes_out 0 196416 bytes_in 0 196416 station_ip 83.123.135.59 196416 port 8 196416 unique_id port 196416 remote_ip 10.8.0.98 196418 username hashtadani5 196418 mac 196418 bytes_out 0 196418 bytes_in 0 196418 station_ip 37.129.77.168 196418 port 9 196418 unique_id port 196418 remote_ip 10.8.1.106 196419 username hashtadani5 196419 mac 196419 bytes_out 0 196419 bytes_in 0 196419 station_ip 37.129.77.168 196419 port 8 196419 unique_id port 196419 remote_ip 10.8.1.106 196424 username hashtadani5 196424 mac 196424 bytes_out 0 196424 bytes_in 0 196424 station_ip 37.129.77.168 196424 port 12 196424 unique_id port 196424 remote_ip 10.8.0.74 196427 username rashidi4690 196427 mac 196427 bytes_out 802216 196427 bytes_in 2237666 196427 station_ip 5.119.105.220 196427 port 12 196427 unique_id port 196427 remote_ip 10.8.0.174 196429 username hashtadani5 196429 mac 196429 bytes_out 11193400 196429 bytes_in 101095384 196429 station_ip 37.129.77.168 196429 port 13 196429 unique_id port 196429 remote_ip 10.8.0.74 196430 username teymori5660 196430 kill_reason Another user logged on this global unique id 196430 mac 196430 bytes_out 0 196430 bytes_in 0 196430 station_ip 5.119.151.64 196430 port 12 196430 unique_id port 196430 remote_ip 10.8.0.66 196431 username hashtadani5 196431 mac 196431 bytes_out 0 196431 bytes_in 0 196431 station_ip 37.129.77.168 196431 port 13 196431 unique_id port 196431 remote_ip 10.8.0.74 196432 username zahra1101 196432 mac 196432 bytes_out 0 196432 bytes_in 0 196432 station_ip 5.119.101.167 196432 port 12 196432 unique_id port 196432 remote_ip 10.8.1.18 196434 username mostafa_es78 196434 mac 196434 bytes_out 0 196434 bytes_in 0 196434 station_ip 83.122.229.238 196434 port 8 196434 unique_id port 196434 remote_ip 10.8.1.102 196437 username hashtadani5 196437 mac 196437 bytes_out 0 196437 bytes_in 0 196437 station_ip 37.129.77.168 196437 port 8 196437 unique_id port 196392 bytes_out 5538920 196392 bytes_in 38442333 196392 station_ip 37.137.12.38 196392 port 4 196392 unique_id port 196392 remote_ip 10.8.1.30 196393 username hashtadani5 196393 mac 196393 bytes_out 0 196393 bytes_in 0 196393 station_ip 37.129.77.168 196393 port 8 196393 unique_id port 196393 remote_ip 10.8.0.74 196398 username hashtadani5 196398 mac 196398 bytes_out 0 196398 bytes_in 0 196398 station_ip 37.129.77.168 196398 port 9 196398 unique_id port 196398 remote_ip 10.8.1.106 196400 username morteza4424 196400 kill_reason Another user logged on this global unique id 196400 mac 196400 bytes_out 0 196400 bytes_in 0 196400 station_ip 83.122.100.215 196400 port 8 196400 unique_id port 196401 username hashtadani5 196401 mac 196401 bytes_out 0 196401 bytes_in 0 196401 station_ip 37.129.77.168 196401 port 9 196401 unique_id port 196401 remote_ip 10.8.1.106 196406 username hashtadani5 196406 mac 196406 bytes_out 0 196406 bytes_in 0 196406 station_ip 37.129.77.168 196406 port 9 196406 unique_id port 196406 remote_ip 10.8.1.106 196408 username hashtadani5 196408 mac 196408 bytes_out 0 196408 bytes_in 0 196408 station_ip 37.129.77.168 196408 port 9 196408 unique_id port 196408 remote_ip 10.8.1.106 196410 username hashtadani5 196410 mac 196410 bytes_out 0 196410 bytes_in 0 196410 station_ip 37.129.77.168 196410 port 2 196410 unique_id port 196410 remote_ip 10.8.0.74 196415 username yaghobi 196415 mac 196415 bytes_out 0 196415 bytes_in 0 196415 station_ip 83.122.240.142 196415 port 6 196415 unique_id port 196415 remote_ip 10.8.0.14 196417 username morteza4424 196417 mac 196417 bytes_out 0 196417 bytes_in 0 196417 station_ip 83.122.100.215 196417 port 8 196417 unique_id port 196417 remote_ip 10.8.1.122 196420 username mostafa_es78 196420 mac 196420 bytes_out 192291 196420 bytes_in 241058 196420 station_ip 83.122.229.238 196420 port 15 196420 unique_id port 196420 remote_ip 10.8.1.102 196421 username hashtadani5 196421 mac 196421 bytes_out 0 196421 bytes_in 0 196421 station_ip 37.129.77.168 196421 port 9 196421 unique_id port 196421 remote_ip 10.8.1.106 196422 username hashtadani5 196422 mac 196422 bytes_out 0 196422 bytes_in 0 196422 station_ip 37.129.77.168 196422 port 12 196422 unique_id port 196422 remote_ip 10.8.0.74 196425 username hajghani 196425 mac 196425 bytes_out 5634302 196425 bytes_in 38573848 196425 station_ip 37.137.12.38 196425 port 4 196425 unique_id port 196425 remote_ip 10.8.1.30 196426 username hashtadani5 196426 mac 196426 bytes_out 0 196426 bytes_in 0 196426 station_ip 37.129.77.168 196426 port 12 196426 unique_id port 196426 remote_ip 10.8.0.74 196436 username barzegar 196436 mac 196436 bytes_out 0 196436 bytes_in 0 196436 station_ip 5.119.251.17 196436 port 10 196436 unique_id port 196436 remote_ip 10.8.1.138 196439 username zahra1101 196439 mac 196439 bytes_out 0 196439 bytes_in 0 196439 station_ip 5.119.101.167 196439 port 10 196439 unique_id port 196439 remote_ip 10.8.1.18 196441 username hashtadani5 196441 mac 196441 bytes_out 0 196441 bytes_in 0 196441 station_ip 37.129.77.168 196441 port 8 196441 unique_id port 196441 remote_ip 10.8.0.74 196442 username nilufarrajaei 196442 mac 196442 bytes_out 0 196442 bytes_in 0 196442 station_ip 37.129.45.111 196442 port 3 196442 unique_id port 196442 remote_ip 10.8.0.170 196443 username morteza4424 196443 mac 196443 bytes_out 0 196443 bytes_in 0 196443 station_ip 83.122.100.215 196404 station_ip 5.119.252.255 196404 port 10 196404 unique_id port 196404 remote_ip 10.8.1.18 196405 username hashtadani5 196405 mac 196405 bytes_out 0 196405 bytes_in 0 196405 station_ip 37.129.77.168 196405 port 12 196405 unique_id port 196405 remote_ip 10.8.0.74 196407 username barzegar 196407 mac 196407 bytes_out 0 196407 bytes_in 0 196407 station_ip 5.119.251.17 196407 port 2 196407 unique_id port 196407 remote_ip 10.8.0.166 196409 username hashtadani5 196409 mac 196409 bytes_out 598041 196409 bytes_in 1927251 196409 station_ip 37.129.77.168 196409 port 12 196409 unique_id port 196409 remote_ip 10.8.0.74 196411 username yaghobi 196411 mac 196411 bytes_out 0 196411 bytes_in 0 196411 station_ip 83.122.240.142 196411 port 6 196411 unique_id port 196411 remote_ip 10.8.0.14 196412 username barzegar 196412 mac 196412 bytes_out 0 196412 bytes_in 0 196412 station_ip 5.119.251.17 196412 port 9 196412 unique_id port 196412 remote_ip 10.8.1.138 196423 username hashtadani5 196423 mac 196423 bytes_out 0 196423 bytes_in 0 196423 station_ip 37.129.77.168 196423 port 9 196423 unique_id port 196423 remote_ip 10.8.1.106 196428 username barzegar 196428 mac 196428 bytes_out 1754 196428 bytes_in 4228 196428 station_ip 5.119.251.17 196428 port 4 196428 unique_id port 196428 remote_ip 10.8.1.138 196433 username morteza4424 196433 kill_reason Another user logged on this global unique id 196433 mac 196433 bytes_out 0 196433 bytes_in 0 196433 station_ip 83.122.100.215 196433 port 6 196433 unique_id port 196433 remote_ip 10.8.0.138 196435 username jafari 196435 mac 196435 bytes_out 0 196435 bytes_in 0 196435 station_ip 188.208.253.41 196435 port 13 196435 unique_id port 196435 remote_ip 10.8.1.58 196438 username hajghani 196438 mac 196438 bytes_out 0 196438 bytes_in 0 196438 station_ip 37.137.12.38 196438 port 9 196438 unique_id port 196438 remote_ip 10.8.1.30 196448 username hashtadani5 196448 mac 196448 bytes_out 0 196448 bytes_in 0 196448 station_ip 37.129.77.168 196448 port 6 196448 unique_id port 196448 remote_ip 10.8.0.74 196450 username zahra1101 196450 mac 196450 bytes_out 0 196450 bytes_in 0 196450 station_ip 5.119.101.167 196450 port 12 196450 unique_id port 196450 remote_ip 10.8.1.18 196451 username hashtadani5 196451 mac 196451 bytes_out 0 196451 bytes_in 0 196451 station_ip 37.129.77.168 196451 port 6 196451 unique_id port 196451 remote_ip 10.8.0.74 196452 username jafari 196452 kill_reason Maximum check online fails reached 196452 mac 196452 bytes_out 0 196452 bytes_in 0 196452 station_ip 188.208.253.41 196452 port 12 196452 unique_id port 196454 username zahra1101 196454 mac 196454 bytes_out 0 196454 bytes_in 0 196454 station_ip 5.119.101.167 196454 port 15 196454 unique_id port 196454 remote_ip 10.8.1.18 196458 username hashtadani5 196458 mac 196458 bytes_out 0 196458 bytes_in 0 196458 station_ip 37.129.77.168 196458 port 6 196458 unique_id port 196458 remote_ip 10.8.0.74 196460 username zahra1101 196460 mac 196460 bytes_out 0 196460 bytes_in 0 196460 station_ip 5.119.101.167 196460 port 4 196460 unique_id port 196460 remote_ip 10.8.1.18 196464 username nilufarrajaei 196464 mac 196464 bytes_out 0 196464 bytes_in 0 196464 station_ip 37.129.45.111 196464 port 8 196464 unique_id port 196466 username teymori5660 196466 kill_reason Another user logged on this global unique id 196466 mac 196466 bytes_out 0 196466 bytes_in 0 196466 station_ip 5.119.151.64 196466 port 3 196437 remote_ip 10.8.0.74 196440 username aminvpn 196440 mac 196440 bytes_out 3467772 196440 bytes_in 20424060 196440 station_ip 5.119.217.235 196440 port 7 196440 unique_id port 196440 remote_ip 10.8.1.14 196444 username hajghani 196444 mac 196444 bytes_out 0 196444 bytes_in 0 196444 station_ip 37.137.12.38 196444 port 9 196444 unique_id port 196444 remote_ip 10.8.1.30 196446 username barzegar 196446 mac 196446 bytes_out 0 196446 bytes_in 0 196446 station_ip 5.119.251.17 196446 port 9 196446 unique_id port 196446 remote_ip 10.8.1.138 196447 username farhad3 196447 mac 196447 bytes_out 0 196447 bytes_in 0 196447 station_ip 5.119.158.18 196447 port 10 196447 unique_id port 196447 remote_ip 10.8.1.34 196453 username yaghobi 196453 mac 196453 bytes_out 1101274 196453 bytes_in 6541372 196453 station_ip 83.122.240.142 196453 port 4 196453 unique_id port 196453 remote_ip 10.8.1.62 196461 username zahra1101 196461 mac 196461 bytes_out 5789792 196461 bytes_in 38765623 196461 station_ip 5.119.101.167 196461 port 4 196461 unique_id port 196461 remote_ip 10.8.1.18 196463 username hashtadani5 196463 mac 196463 bytes_out 0 196463 bytes_in 0 196463 station_ip 37.129.77.168 196463 port 6 196463 unique_id port 196463 remote_ip 10.8.0.74 196467 username zahra1101 196467 mac 196467 bytes_out 5870775 196467 bytes_in 39036853 196467 station_ip 5.119.101.167 196467 port 4 196467 unique_id port 196467 remote_ip 10.8.1.18 196475 username motamedi9772 196475 kill_reason Another user logged on this global unique id 196475 mac 196475 bytes_out 0 196475 bytes_in 0 196475 station_ip 37.129.133.4 196475 port 13 196475 unique_id port 196481 username kharazmi2920 196481 mac 196481 bytes_out 173316 196481 bytes_in 1047672 196481 station_ip 37.129.197.158 196481 port 10 196481 unique_id port 196481 remote_ip 10.8.0.134 196484 username esmaeilkazemi 196484 mac 196484 bytes_out 0 196484 bytes_in 0 196484 station_ip 83.122.36.78 196484 port 14 196484 unique_id port 196484 remote_ip 10.8.0.34 196490 username pourshad 196490 kill_reason Another user logged on this global unique id 196490 mac 196490 bytes_out 0 196490 bytes_in 0 196490 station_ip 5.119.98.224 196490 port 1 196490 unique_id port 196490 remote_ip 10.8.1.46 196491 username yaghobi 196491 mac 196491 bytes_out 2149051 196491 bytes_in 22599364 196491 station_ip 83.123.147.176 196491 port 8 196491 unique_id port 196491 remote_ip 10.8.0.14 196497 username hashtadani5 196497 mac 196497 bytes_out 0 196497 bytes_in 0 196497 station_ip 37.129.77.168 196497 port 8 196497 unique_id port 196497 remote_ip 10.8.0.74 196502 username pourshad 196502 mac 196502 bytes_out 167152 196502 bytes_in 2322200 196502 station_ip 5.119.84.188 196502 port 14 196502 unique_id port 196502 remote_ip 10.8.1.46 196505 username motamedi9772 196505 kill_reason Another user logged on this global unique id 196505 mac 196505 bytes_out 0 196505 bytes_in 0 196505 station_ip 37.129.133.4 196505 port 13 196505 unique_id port 196510 username mostafa_es78 196510 kill_reason Another user logged on this global unique id 196510 mac 196510 bytes_out 0 196510 bytes_in 0 196510 station_ip 83.122.229.238 196510 port 8 196510 unique_id port 196512 username hashtadani5 196512 mac 196512 bytes_out 0 196512 bytes_in 0 196512 station_ip 37.129.77.168 196512 port 2 196512 unique_id port 196512 remote_ip 10.8.0.74 196514 username nilufarrajaei 196514 kill_reason Another user logged on this global unique id 196514 mac 196514 bytes_out 0 196514 bytes_in 0 196514 station_ip 37.129.45.111 196443 port 6 196443 unique_id port 196445 username zahra1101 196445 mac 196445 bytes_out 0 196445 bytes_in 0 196445 station_ip 5.119.101.167 196445 port 3 196445 unique_id port 196445 remote_ip 10.8.0.70 196449 username jafari 196449 mac 196449 bytes_out 174109 196449 bytes_in 483998 196449 station_ip 188.208.253.41 196449 port 12 196449 unique_id port 196449 remote_ip 10.8.1.58 196455 username nilufarrajaei 196455 kill_reason Another user logged on this global unique id 196455 mac 196455 bytes_out 0 196455 bytes_in 0 196455 station_ip 37.129.45.111 196455 port 8 196455 unique_id port 196455 remote_ip 10.8.0.170 196456 username barzegar 196456 mac 196456 bytes_out 4599 196456 bytes_in 12112 196456 station_ip 5.119.251.17 196456 port 13 196456 unique_id port 196456 remote_ip 10.8.1.138 196457 username hashtadani5 196457 mac 196457 bytes_out 0 196457 bytes_in 0 196457 station_ip 37.129.77.168 196457 port 6 196457 unique_id port 196457 remote_ip 10.8.0.74 196459 username zahra1101 196459 mac 196459 bytes_out 0 196459 bytes_in 0 196459 station_ip 5.119.101.167 196459 port 4 196459 unique_id port 196459 remote_ip 10.8.1.18 196462 username barzegar 196462 mac 196462 bytes_out 0 196462 bytes_in 0 196462 station_ip 5.119.251.17 196462 port 15 196462 unique_id port 196462 remote_ip 10.8.1.138 196465 username barzegar 196465 mac 196465 bytes_out 0 196465 bytes_in 0 196465 station_ip 5.119.251.17 196465 port 4 196465 unique_id port 196465 remote_ip 10.8.1.138 196469 username farhad3 196469 kill_reason Another user logged on this global unique id 196469 mac 196469 bytes_out 0 196469 bytes_in 0 196469 station_ip 5.119.158.18 196469 port 10 196469 unique_id port 196469 remote_ip 10.8.1.34 196470 username saeed9658 196470 mac 196470 bytes_out 0 196470 bytes_in 0 196470 station_ip 5.119.17.155 196470 port 2 196470 unique_id port 196470 remote_ip 10.8.0.142 196471 username hashtadani5 196471 mac 196471 bytes_out 0 196471 bytes_in 0 196471 station_ip 37.129.77.168 196471 port 15 196471 unique_id port 196471 remote_ip 10.8.1.106 196479 username motamedi9772 196479 kill_reason Another user logged on this global unique id 196479 mac 196479 bytes_out 0 196479 bytes_in 0 196479 station_ip 37.129.133.4 196479 port 13 196479 unique_id port 196482 username dortaj3792 196482 kill_reason Another user logged on this global unique id 196482 mac 196482 bytes_out 0 196482 bytes_in 0 196482 station_ip 5.119.97.79 196482 port 14 196482 unique_id port 196482 remote_ip 10.8.1.38 196487 username fezealinaghi 196487 mac 196487 bytes_out 0 196487 bytes_in 0 196487 station_ip 83.122.214.97 196487 port 12 196487 unique_id port 196487 remote_ip 10.8.0.154 196493 username hashtadani5 196493 mac 196493 bytes_out 2433531 196493 bytes_in 25914108 196493 station_ip 37.129.77.168 196493 port 8 196493 unique_id port 196493 remote_ip 10.8.0.74 196495 username hashtadani5 196495 mac 196495 bytes_out 0 196495 bytes_in 0 196495 station_ip 37.129.77.168 196495 port 14 196495 unique_id port 196495 remote_ip 10.8.1.106 196499 username teymori5660 196499 mac 196499 bytes_out 0 196499 bytes_in 0 196499 station_ip 5.119.151.64 196499 port 3 196499 unique_id port 196500 username saeed9658 196500 mac 196500 bytes_out 1574958 196500 bytes_in 12150549 196500 station_ip 5.119.17.155 196500 port 15 196500 unique_id port 196500 remote_ip 10.8.1.110 196503 username pourshad 196503 mac 196503 bytes_out 0 196503 bytes_in 0 196503 station_ip 5.119.84.188 196503 port 1 196466 unique_id port 196466 remote_ip 10.8.0.66 196468 username motamedi9772 196468 kill_reason Another user logged on this global unique id 196468 mac 196468 bytes_out 0 196468 bytes_in 0 196468 station_ip 37.129.133.4 196468 port 13 196468 unique_id port 196468 remote_ip 10.8.1.118 196472 username hashtadani5 196472 mac 196472 bytes_out 0 196472 bytes_in 0 196472 station_ip 37.129.77.168 196472 port 15 196472 unique_id port 196472 remote_ip 10.8.1.106 196473 username hashtadani5 196473 mac 196473 bytes_out 0 196473 bytes_in 0 196473 station_ip 37.129.77.168 196473 port 15 196473 unique_id port 196473 remote_ip 10.8.1.106 196474 username hashtadani5 196474 mac 196474 bytes_out 0 196474 bytes_in 0 196474 station_ip 37.129.77.168 196474 port 12 196474 unique_id port 196474 remote_ip 10.8.0.74 196476 username barzegar 196476 mac 196476 bytes_out 0 196476 bytes_in 0 196476 station_ip 5.119.251.17 196476 port 15 196476 unique_id port 196476 remote_ip 10.8.1.138 196477 username zahra1101 196477 mac 196477 bytes_out 0 196477 bytes_in 0 196477 station_ip 5.119.101.167 196477 port 12 196477 unique_id port 196477 remote_ip 10.8.0.70 196478 username zahra1101 196478 mac 196478 bytes_out 0 196478 bytes_in 0 196478 station_ip 5.119.101.167 196478 port 12 196478 unique_id port 196478 remote_ip 10.8.0.70 196480 username hashtadani5 196480 mac 196480 bytes_out 8335500 196480 bytes_in 127149509 196480 station_ip 37.129.77.168 196480 port 13 196480 unique_id port 196480 remote_ip 10.8.0.74 196483 username esmaeilkazemi 196483 mac 196483 bytes_out 8911232 196483 bytes_in 133836446 196483 station_ip 83.122.36.78 196483 port 13 196483 unique_id port 196483 remote_ip 10.8.0.34 196485 username zahra1101 196485 mac 196485 bytes_out 0 196485 bytes_in 0 196485 station_ip 5.119.101.167 196485 port 17 196485 unique_id port 196485 remote_ip 10.8.1.18 196486 username esmaeilkazemi 196486 mac 196486 bytes_out 0 196486 bytes_in 0 196486 station_ip 83.122.36.78 196486 port 13 196486 unique_id port 196486 remote_ip 10.8.0.34 196488 username hashtadani5 196488 mac 196488 bytes_out 0 196488 bytes_in 0 196488 station_ip 37.129.77.168 196488 port 12 196488 unique_id port 196488 remote_ip 10.8.0.74 196489 username barzegar 196489 mac 196489 bytes_out 0 196489 bytes_in 0 196489 station_ip 5.119.251.17 196489 port 14 196489 unique_id port 196489 remote_ip 10.8.1.138 196492 username morteza4424 196492 mac 196492 bytes_out 0 196492 bytes_in 0 196492 station_ip 83.123.12.207 196492 port 12 196492 unique_id port 196492 remote_ip 10.8.0.138 196494 username zahra1101 196494 mac 196494 bytes_out 0 196494 bytes_in 0 196494 station_ip 5.119.101.167 196494 port 14 196494 unique_id port 196494 remote_ip 10.8.1.18 196496 username milan 196496 mac 196496 bytes_out 0 196496 bytes_in 0 196496 station_ip 5.119.177.28 196496 port 1 196496 unique_id port 196498 username rashidi4690 196498 mac 196498 bytes_out 0 196498 bytes_in 0 196498 station_ip 5.119.105.220 196498 port 2 196498 unique_id port 196498 remote_ip 10.8.0.174 196501 username hashtadani5 196501 mac 196501 bytes_out 0 196501 bytes_in 0 196501 station_ip 37.129.77.168 196501 port 2 196501 unique_id port 196501 remote_ip 10.8.0.74 196504 username barzegar 196504 mac 196504 bytes_out 0 196504 bytes_in 0 196504 station_ip 5.119.251.17 196504 port 1 196504 unique_id port 196504 remote_ip 10.8.1.138 196507 username hashtadani5 196507 mac 196503 unique_id port 196503 remote_ip 10.8.1.46 196506 username zahra1101 196506 mac 196506 bytes_out 0 196506 bytes_in 0 196506 station_ip 5.119.101.167 196506 port 7 196506 unique_id port 196516 username hajghani 196516 mac 196516 bytes_out 1711080 196516 bytes_in 5994967 196516 station_ip 93.114.31.201 196516 port 4 196516 unique_id port 196516 remote_ip 10.8.1.30 196520 username hashtadani5 196520 mac 196520 bytes_out 0 196520 bytes_in 0 196520 station_ip 37.129.77.168 196520 port 17 196520 unique_id port 196520 remote_ip 10.8.1.106 196521 username hashtadani5 196521 mac 196521 bytes_out 0 196521 bytes_in 0 196521 station_ip 37.129.77.168 196521 port 17 196521 unique_id port 196521 remote_ip 10.8.1.106 196523 username hashtadani5 196523 mac 196523 bytes_out 0 196523 bytes_in 0 196523 station_ip 37.129.77.168 196523 port 7 196523 unique_id port 196523 remote_ip 10.8.0.74 196531 username motamedi9772 196531 mac 196531 bytes_out 0 196531 bytes_in 0 196531 station_ip 37.129.133.4 196531 port 13 196531 unique_id port 196533 username hashtadani5 196533 mac 196533 bytes_out 0 196533 bytes_in 0 196533 station_ip 37.129.77.168 196533 port 1 196533 unique_id port 196533 remote_ip 10.8.1.106 196535 username mammad 196535 unique_id port 196535 terminate_cause User-Request 196535 bytes_out 20797778 196535 bytes_in 174601929 196535 station_ip 5.233.67.115 196535 port 15729450 196535 nas_port_type Virtual 196535 remote_ip 5.5.5.222 196536 username teymori5660 196536 mac 196536 bytes_out 3690789 196536 bytes_in 49052486 196536 station_ip 5.119.151.64 196536 port 14 196536 unique_id port 196536 remote_ip 10.8.1.130 196539 username mostafa_es78 196539 mac 196539 bytes_out 0 196539 bytes_in 0 196539 station_ip 83.122.229.238 196539 port 8 196539 unique_id port 196540 username barzegar 196540 mac 196540 bytes_out 0 196540 bytes_in 0 196540 station_ip 5.119.251.17 196540 port 8 196540 unique_id port 196540 remote_ip 10.8.1.138 196546 username hashtadani5 196546 mac 196546 bytes_out 0 196546 bytes_in 0 196546 station_ip 37.129.77.168 196546 port 8 196546 unique_id port 196546 remote_ip 10.8.0.74 196547 username hashtadani5 196547 kill_reason Another user logged on this global unique id 196547 mac 196547 bytes_out 0 196547 bytes_in 0 196547 station_ip 37.129.77.168 196547 port 9 196547 unique_id port 196548 username teymori5660 196548 mac 196548 bytes_out 0 196548 bytes_in 0 196548 station_ip 5.119.151.64 196548 port 1 196548 unique_id port 196548 remote_ip 10.8.1.130 196551 username hashtadani5 196551 mac 196551 bytes_out 0 196551 bytes_in 0 196551 station_ip 37.129.77.168 196551 port 7 196551 unique_id port 196551 remote_ip 10.8.0.74 196554 username jafari 196554 mac 196554 bytes_out 70154 196554 bytes_in 225035 196554 station_ip 5.134.157.168 196554 port 1 196554 unique_id port 196554 remote_ip 10.8.1.58 196557 username hashtadani5 196557 mac 196557 bytes_out 0 196557 bytes_in 0 196557 station_ip 37.129.77.168 196557 port 10 196557 unique_id port 196557 remote_ip 10.8.0.74 196558 username hashtadani5 196558 mac 196558 bytes_out 0 196558 bytes_in 0 196558 station_ip 37.129.77.168 196558 port 8 196558 unique_id port 196561 username milan 196561 kill_reason Another user logged on this global unique id 196561 mac 196561 bytes_out 0 196561 bytes_in 0 196561 station_ip 5.119.177.28 196561 port 1 196561 unique_id port 196562 username charkhandaz3496 196562 mac 196562 bytes_out 0 196507 bytes_out 0 196507 bytes_in 0 196507 station_ip 37.129.77.168 196507 port 1 196507 unique_id port 196507 remote_ip 10.8.1.106 196508 username hashtadani5 196508 mac 196508 bytes_out 0 196508 bytes_in 0 196508 station_ip 37.129.77.168 196508 port 2 196508 unique_id port 196508 remote_ip 10.8.0.74 196509 username zahra1101 196509 mac 196509 bytes_out 0 196509 bytes_in 0 196509 station_ip 5.119.101.167 196509 port 14 196509 unique_id port 196509 remote_ip 10.8.1.18 196511 username hashtadani5 196511 mac 196511 bytes_out 0 196511 bytes_in 0 196511 station_ip 37.129.77.168 196511 port 17 196511 unique_id port 196511 remote_ip 10.8.1.106 196513 username malekpoir 196513 mac 196513 bytes_out 487722 196513 bytes_in 2710180 196513 station_ip 5.119.174.30 196513 port 1 196513 unique_id port 196513 remote_ip 10.8.1.6 196522 username hashtadani5 196522 mac 196522 bytes_out 0 196522 bytes_in 0 196522 station_ip 37.129.77.168 196522 port 7 196522 unique_id port 196522 remote_ip 10.8.0.74 196525 username zahra1101 196525 mac 196525 bytes_out 24702495 196525 bytes_in 1491140 196525 station_ip 5.119.101.167 196525 port 15 196525 unique_id port 196525 remote_ip 10.8.1.18 196527 username seyedrezaei2572 196527 mac 196527 bytes_out 0 196527 bytes_in 0 196527 station_ip 37.129.50.231 196527 port 3 196527 unique_id port 196527 remote_ip 10.8.0.126 196528 username malekpoir 196528 mac 196528 bytes_out 1284242 196528 bytes_in 7941499 196528 station_ip 5.119.174.30 196528 port 1 196528 unique_id port 196528 remote_ip 10.8.1.6 196534 username hashtadani5 196534 mac 196534 bytes_out 0 196534 bytes_in 0 196534 station_ip 37.129.77.168 196534 port 7 196534 unique_id port 196534 remote_ip 10.8.0.74 196537 username seyedrezaei2572 196537 mac 196537 bytes_out 0 196537 bytes_in 0 196537 station_ip 37.129.50.231 196537 port 3 196537 unique_id port 196537 remote_ip 10.8.0.126 196538 username kharazmi2920 196538 mac 196538 bytes_out 0 196538 bytes_in 0 196538 station_ip 37.129.197.158 196538 port 10 196538 unique_id port 196538 remote_ip 10.8.0.134 196541 username hashtadani5 196541 mac 196541 bytes_out 0 196541 bytes_in 0 196541 station_ip 37.129.77.168 196541 port 7 196541 unique_id port 196541 remote_ip 10.8.0.74 196542 username barzegar 196542 mac 196542 bytes_out 0 196542 bytes_in 0 196542 station_ip 5.119.251.17 196542 port 8 196542 unique_id port 196542 remote_ip 10.8.1.138 196543 username farhad3 196543 mac 196543 bytes_out 0 196543 bytes_in 0 196543 station_ip 5.119.158.18 196543 port 1 196543 unique_id port 196543 remote_ip 10.8.1.34 196544 username zahra1101 196544 mac 196544 bytes_out 14485 196544 bytes_in 21160 196544 station_ip 5.119.101.167 196544 port 4 196544 unique_id port 196544 remote_ip 10.8.1.18 196552 username barzegar 196552 mac 196552 bytes_out 0 196552 bytes_in 0 196552 station_ip 5.119.251.17 196552 port 8 196552 unique_id port 196552 remote_ip 10.8.1.138 196553 username jafari 196553 mac 196553 bytes_out 46318 196553 bytes_in 169460 196553 station_ip 5.134.157.168 196553 port 1 196553 unique_id port 196553 remote_ip 10.8.1.58 196555 username zahra1101 196555 kill_reason Another user logged on this global unique id 196555 mac 196555 bytes_out 0 196555 bytes_in 0 196555 station_ip 5.119.101.167 196555 port 8 196555 unique_id port 196555 remote_ip 10.8.1.18 196560 username hosseine 196560 mac 196560 bytes_out 0 196560 bytes_in 0 196514 port 6 196514 unique_id port 196514 remote_ip 10.8.0.170 196515 username barzegar 196515 mac 196515 bytes_out 0 196515 bytes_in 0 196515 station_ip 5.119.251.17 196515 port 17 196515 unique_id port 196515 remote_ip 10.8.1.138 196517 username esmaeilkazemi 196517 mac 196517 bytes_out 0 196517 bytes_in 0 196517 station_ip 83.122.36.78 196517 port 2 196517 unique_id port 196517 remote_ip 10.8.0.34 196518 username hashtadani5 196518 mac 196518 bytes_out 0 196518 bytes_in 0 196518 station_ip 37.129.77.168 196518 port 2 196518 unique_id port 196518 remote_ip 10.8.0.74 196519 username barzegar 196519 mac 196519 bytes_out 0 196519 bytes_in 0 196519 station_ip 5.119.251.17 196519 port 7 196519 unique_id port 196519 remote_ip 10.8.0.166 196524 username rashidi4690 196524 mac 196524 bytes_out 0 196524 bytes_in 0 196524 station_ip 5.119.105.220 196524 port 4 196524 unique_id port 196526 username hashtadani5 196526 mac 196526 bytes_out 0 196526 bytes_in 0 196526 station_ip 37.129.77.168 196526 port 7 196526 unique_id port 196526 remote_ip 10.8.0.74 196529 username hashtadani5 196529 mac 196529 bytes_out 0 196529 bytes_in 0 196529 station_ip 37.129.77.168 196529 port 7 196529 unique_id port 196529 remote_ip 10.8.0.74 196530 username hashtadani5 196530 mac 196530 bytes_out 0 196530 bytes_in 0 196530 station_ip 37.129.77.168 196530 port 7 196530 unique_id port 196530 remote_ip 10.8.0.74 196532 username barzegar 196532 mac 196532 bytes_out 0 196532 bytes_in 0 196532 station_ip 5.119.251.17 196532 port 1 196532 unique_id port 196532 remote_ip 10.8.1.138 196545 username zahra1101 196545 kill_reason Another user logged on this global unique id 196545 mac 196545 bytes_out 0 196545 bytes_in 0 196545 station_ip 5.119.101.167 196545 port 8 196545 unique_id port 196545 remote_ip 10.8.1.18 196549 username nilufarrajaei 196549 kill_reason Another user logged on this global unique id 196549 mac 196549 bytes_out 0 196549 bytes_in 0 196549 station_ip 37.129.45.111 196549 port 6 196549 unique_id port 196550 username kharazmi2920 196550 mac 196550 bytes_out 0 196550 bytes_in 0 196550 station_ip 37.129.197.158 196550 port 7 196550 unique_id port 196550 remote_ip 10.8.0.134 196556 username rashidi4690 196556 kill_reason Another user logged on this global unique id 196556 mac 196556 bytes_out 0 196556 bytes_in 0 196556 station_ip 5.119.105.220 196556 port 10 196556 unique_id port 196556 remote_ip 10.8.1.142 196559 username hashtadani5 196559 mac 196559 bytes_out 0 196559 bytes_in 0 196559 station_ip 37.129.77.168 196559 port 10 196559 unique_id port 196559 remote_ip 10.8.0.74 196564 username barzegar 196564 mac 196564 bytes_out 0 196564 bytes_in 0 196564 station_ip 5.119.251.17 196564 port 7 196564 unique_id port 196564 remote_ip 10.8.0.166 196568 username farhad3 196568 mac 196568 bytes_out 87609 196568 bytes_in 321047 196568 station_ip 5.119.158.18 196568 port 4 196568 unique_id port 196568 remote_ip 10.8.1.34 196569 username hashtadani5 196569 mac 196569 bytes_out 0 196569 bytes_in 0 196569 station_ip 37.129.77.168 196569 port 4 196569 unique_id port 196569 remote_ip 10.8.1.106 196572 username hashtadani5 196572 kill_reason Maximum check online fails reached 196572 mac 196572 bytes_out 0 196572 bytes_in 0 196572 station_ip 37.129.77.168 196572 port 3 196572 unique_id port 196577 username kharazmi2920 196577 kill_reason Another user logged on this global unique id 196577 mac 196577 bytes_out 0 196577 bytes_in 0 196560 station_ip 37.129.181.76 196560 port 9 196560 unique_id port 196573 username zahra1101 196573 mac 196573 bytes_out 0 196573 bytes_in 0 196573 station_ip 5.119.101.167 196573 port 1 196573 unique_id port 196573 remote_ip 10.8.1.18 196575 username hashtadani5 196575 mac 196575 bytes_out 0 196575 bytes_in 0 196575 station_ip 37.129.77.168 196575 port 7 196575 unique_id port 196575 remote_ip 10.8.0.74 196578 username barzegar 196578 mac 196578 bytes_out 0 196578 bytes_in 0 196578 station_ip 5.119.251.17 196578 port 8 196578 unique_id port 196578 remote_ip 10.8.1.138 196582 username zahra1101 196582 mac 196582 bytes_out 0 196582 bytes_in 0 196582 station_ip 5.119.101.167 196582 port 1 196582 unique_id port 196582 remote_ip 10.8.1.18 196583 username hashtadani5 196583 mac 196583 bytes_out 0 196583 bytes_in 0 196583 station_ip 37.129.77.168 196583 port 9 196583 unique_id port 196583 remote_ip 10.8.0.74 196585 username hashtadani5 196585 kill_reason Another user logged on this global unique id 196585 mac 196585 bytes_out 0 196585 bytes_in 0 196585 station_ip 37.129.77.168 196585 port 1 196585 unique_id port 196588 username barzegar 196588 mac 196588 bytes_out 0 196588 bytes_in 0 196588 station_ip 5.119.251.17 196588 port 8 196588 unique_id port 196588 remote_ip 10.8.1.138 196590 username hashtadani5 196590 mac 196590 bytes_out 0 196590 bytes_in 0 196590 station_ip 37.129.77.168 196590 port 1 196590 unique_id port 196590 remote_ip 10.8.0.74 196598 username hashtadani5 196598 mac 196598 bytes_out 0 196598 bytes_in 0 196598 station_ip 37.129.77.168 196598 port 1 196598 unique_id port 196598 remote_ip 10.8.0.74 196599 username hashtadani5 196599 mac 196599 bytes_out 0 196599 bytes_in 0 196599 station_ip 37.129.77.168 196599 port 1 196599 unique_id port 196599 remote_ip 10.8.0.74 196600 username barzegar 196600 mac 196600 bytes_out 0 196600 bytes_in 0 196600 station_ip 5.119.251.17 196600 port 4 196600 unique_id port 196600 remote_ip 10.8.1.138 196608 username hashtadani5 196608 mac 196608 bytes_out 0 196608 bytes_in 0 196608 station_ip 37.129.77.168 196608 port 4 196608 unique_id port 196608 remote_ip 10.8.1.106 196611 username hashtadani5 196611 mac 196611 bytes_out 0 196611 bytes_in 0 196611 station_ip 37.129.77.168 196611 port 1 196611 unique_id port 196611 remote_ip 10.8.0.74 196612 username farhad3 196612 kill_reason Another user logged on this global unique id 196612 mac 196612 bytes_out 0 196612 bytes_in 0 196612 station_ip 5.119.158.18 196612 port 10 196612 unique_id port 196612 remote_ip 10.8.1.34 196613 username motamedi9772 196613 mac 196613 bytes_out 0 196613 bytes_in 0 196613 station_ip 37.129.213.172 196613 port 8 196613 unique_id port 196614 username motamedi9772 196614 mac 196614 bytes_out 0 196614 bytes_in 0 196614 station_ip 37.129.213.172 196614 port 1 196614 unique_id port 196614 remote_ip 10.8.0.54 196616 username hashtadani5 196616 mac 196616 bytes_out 0 196616 bytes_in 0 196616 station_ip 37.129.77.168 196616 port 2 196616 unique_id port 196616 remote_ip 10.8.0.74 196617 username hashtadani5 196617 mac 196617 bytes_out 0 196617 bytes_in 0 196617 station_ip 37.129.77.168 196617 port 4 196617 unique_id port 196617 remote_ip 10.8.1.106 196622 username hashtadani5 196622 mac 196622 bytes_out 0 196622 bytes_in 0 196622 station_ip 37.129.77.168 196622 port 2 196622 unique_id port 196622 remote_ip 10.8.0.74 196562 bytes_in 0 196562 station_ip 37.129.55.63 196562 port 7 196562 unique_id port 196562 remote_ip 10.8.0.62 196563 username mostafa_es78 196563 mac 196563 bytes_out 0 196563 bytes_in 0 196563 station_ip 37.129.68.156 196563 port 9 196563 unique_id port 196563 remote_ip 10.8.0.50 196565 username farhad3 196565 mac 196565 bytes_out 2285691 196565 bytes_in 19787017 196565 station_ip 5.119.158.18 196565 port 4 196565 unique_id port 196565 remote_ip 10.8.1.34 196566 username motamedi9772 196566 mac 196566 bytes_out 0 196566 bytes_in 0 196566 station_ip 37.129.254.56 196566 port 8 196566 unique_id port 196566 remote_ip 10.8.1.118 196567 username seyedrezaei2572 196567 mac 196567 bytes_out 0 196567 bytes_in 0 196567 station_ip 37.129.50.231 196567 port 3 196567 unique_id port 196567 remote_ip 10.8.0.126 196570 username hashtadani5 196570 mac 196570 bytes_out 0 196570 bytes_in 0 196570 station_ip 37.129.77.168 196570 port 4 196570 unique_id port 196570 remote_ip 10.8.1.106 196571 username hashtadani5 196571 mac 196571 bytes_out 0 196571 bytes_in 0 196571 station_ip 37.129.77.168 196571 port 7 196571 unique_id port 196571 remote_ip 10.8.0.74 196574 username hashtadani5 196574 mac 196574 bytes_out 0 196574 bytes_in 0 196574 station_ip 37.129.77.168 196574 port 1 196574 unique_id port 196574 remote_ip 10.8.0.74 196576 username nilufarrajaei 196576 kill_reason Another user logged on this global unique id 196576 mac 196576 bytes_out 0 196576 bytes_in 0 196576 station_ip 37.129.45.111 196576 port 6 196576 unique_id port 196580 username zahra1101 196580 mac 196580 bytes_out 0 196580 bytes_in 0 196580 station_ip 5.119.101.167 196580 port 1 196580 unique_id port 196580 remote_ip 10.8.1.18 196581 username milan 196581 mac 196581 bytes_out 0 196581 bytes_in 0 196581 station_ip 5.119.177.28 196581 port 1 196581 unique_id port 196581 remote_ip 10.8.1.146 196587 username hashtadani5 196587 mac 196587 bytes_out 0 196587 bytes_in 0 196587 station_ip 37.129.77.168 196587 port 1 196587 unique_id port 196587 remote_ip 10.8.0.74 196589 username meghdad1616 196589 mac 196589 bytes_out 2455222 196589 bytes_in 30388159 196589 station_ip 5.119.156.67 196589 port 4 196589 unique_id port 196589 remote_ip 10.8.1.86 196592 username zahra1101 196592 mac 196592 bytes_out 0 196592 bytes_in 0 196592 station_ip 5.119.101.167 196592 port 7 196592 unique_id port 196592 remote_ip 10.8.0.70 196596 username barzegar 196596 mac 196596 bytes_out 0 196596 bytes_in 0 196596 station_ip 5.119.251.17 196596 port 4 196596 unique_id port 196596 remote_ip 10.8.1.138 196597 username hashtadani5 196597 mac 196597 bytes_out 0 196597 bytes_in 0 196597 station_ip 37.129.77.168 196597 port 1 196597 unique_id port 196597 remote_ip 10.8.0.74 196601 username motamedi9772 196601 kill_reason Another user logged on this global unique id 196601 mac 196601 bytes_out 0 196601 bytes_in 0 196601 station_ip 37.129.213.172 196601 port 8 196601 unique_id port 196601 remote_ip 10.8.1.118 196603 username hamid1430 196603 mac 196603 bytes_out 0 196603 bytes_in 0 196603 station_ip 83.123.109.115 196603 port 2 196603 unique_id port 196603 remote_ip 10.8.0.42 196604 username hashtadani5 196604 mac 196604 bytes_out 0 196604 bytes_in 0 196604 station_ip 37.129.77.168 196604 port 1 196604 unique_id port 196604 remote_ip 10.8.0.74 196606 username hashtadani5 196606 mac 196606 bytes_out 0 196606 bytes_in 0 196606 station_ip 37.129.77.168 196577 station_ip 37.129.197.158 196577 port 1 196577 unique_id port 196577 remote_ip 10.8.0.134 196579 username hashtadani5 196579 mac 196579 bytes_out 0 196579 bytes_in 0 196579 station_ip 37.129.77.168 196579 port 7 196579 unique_id port 196579 remote_ip 10.8.0.74 196584 username milan 196584 mac 196584 bytes_out 0 196584 bytes_in 0 196584 station_ip 5.119.177.28 196584 port 1 196584 unique_id port 196584 remote_ip 10.8.0.78 196586 username hashtadani5 196586 mac 196586 bytes_out 0 196586 bytes_in 0 196586 station_ip 37.129.77.168 196586 port 1 196586 unique_id port 196586 remote_ip 10.8.0.74 196591 username hashtadani5 196591 mac 196591 bytes_out 0 196591 bytes_in 0 196591 station_ip 37.129.77.168 196591 port 1 196591 unique_id port 196591 remote_ip 10.8.0.74 196593 username nilufarrajaei 196593 mac 196593 bytes_out 0 196593 bytes_in 0 196593 station_ip 37.129.45.111 196593 port 6 196593 unique_id port 196594 username meghdad1616 196594 mac 196594 bytes_out 40006 196594 bytes_in 122930 196594 station_ip 5.119.156.67 196594 port 4 196594 unique_id port 196594 remote_ip 10.8.1.86 196595 username hashtadani5 196595 mac 196595 bytes_out 0 196595 bytes_in 0 196595 station_ip 37.129.77.168 196595 port 1 196595 unique_id port 196595 remote_ip 10.8.0.74 196602 username hashtadani5 196602 mac 196602 bytes_out 0 196602 bytes_in 0 196602 station_ip 37.129.77.168 196602 port 1 196602 unique_id port 196602 remote_ip 10.8.0.74 196605 username barzegar 196605 mac 196605 bytes_out 0 196605 bytes_in 0 196605 station_ip 5.119.251.17 196605 port 4 196605 unique_id port 196605 remote_ip 10.8.1.138 196609 username barzegar 196609 mac 196609 bytes_out 0 196609 bytes_in 0 196609 station_ip 5.119.251.17 196609 port 4 196609 unique_id port 196609 remote_ip 10.8.1.138 196610 username hashtadani5 196610 mac 196610 bytes_out 0 196610 bytes_in 0 196610 station_ip 37.129.77.168 196610 port 1 196610 unique_id port 196610 remote_ip 10.8.0.74 196619 username hashtadani5 196619 mac 196619 bytes_out 0 196619 bytes_in 0 196619 station_ip 37.129.77.168 196619 port 2 196619 unique_id port 196619 remote_ip 10.8.0.74 196620 username hashtadani5 196620 mac 196620 bytes_out 0 196620 bytes_in 0 196620 station_ip 37.129.77.168 196620 port 4 196620 unique_id port 196620 remote_ip 10.8.1.106 196623 username hashtadani5 196623 mac 196623 bytes_out 0 196623 bytes_in 0 196623 station_ip 37.129.77.168 196623 port 2 196623 unique_id port 196623 remote_ip 10.8.0.74 196626 username hashtadani5 196626 mac 196626 bytes_out 0 196626 bytes_in 0 196626 station_ip 37.129.77.168 196626 port 2 196626 unique_id port 196626 remote_ip 10.8.0.74 196627 username hashtadani5 196627 mac 196627 bytes_out 0 196627 bytes_in 0 196627 station_ip 37.129.77.168 196627 port 4 196627 unique_id port 196627 remote_ip 10.8.1.106 196633 username hashtadani5 196633 mac 196633 bytes_out 0 196633 bytes_in 0 196633 station_ip 37.129.77.168 196633 port 2 196633 unique_id port 196633 remote_ip 10.8.0.74 196634 username hashtadani5 196634 mac 196634 bytes_out 0 196634 bytes_in 0 196634 station_ip 37.129.77.168 196634 port 2 196634 unique_id port 196634 remote_ip 10.8.0.74 196637 username hashtadani5 196637 mac 196637 bytes_out 0 196637 bytes_in 0 196637 station_ip 37.129.77.168 196637 port 6 196637 unique_id port 196637 remote_ip 10.8.0.74 196640 username hashtadani5 196640 mac 196606 port 1 196606 unique_id port 196606 remote_ip 10.8.0.74 196607 username motamedi9772 196607 kill_reason Another user logged on this global unique id 196607 mac 196607 bytes_out 0 196607 bytes_in 0 196607 station_ip 37.129.213.172 196607 port 8 196607 unique_id port 196615 username hashtadani5 196615 mac 196615 bytes_out 0 196615 bytes_in 0 196615 station_ip 37.129.77.168 196615 port 2 196615 unique_id port 196615 remote_ip 10.8.0.74 196618 username barzegar 196618 mac 196618 bytes_out 0 196618 bytes_in 0 196618 station_ip 5.119.251.17 196618 port 4 196618 unique_id port 196618 remote_ip 10.8.1.138 196621 username farhad3 196621 mac 196621 bytes_out 0 196621 bytes_in 0 196621 station_ip 5.119.158.18 196621 port 10 196621 unique_id port 196630 username hashtadani5 196630 mac 196630 bytes_out 0 196630 bytes_in 0 196630 station_ip 37.129.77.168 196630 port 2 196630 unique_id port 196630 remote_ip 10.8.0.74 196632 username farhad3 196632 mac 196632 bytes_out 336500 196632 bytes_in 1473032 196632 station_ip 5.119.169.90 196632 port 4 196632 unique_id port 196632 remote_ip 10.8.1.34 196635 username hashtadani5 196635 mac 196635 bytes_out 0 196635 bytes_in 0 196635 station_ip 37.129.77.168 196635 port 6 196635 unique_id port 196635 remote_ip 10.8.0.74 196638 username hashtadani5 196638 mac 196638 bytes_out 0 196638 bytes_in 0 196638 station_ip 37.129.77.168 196638 port 6 196638 unique_id port 196638 remote_ip 10.8.0.74 196639 username hashtadani5 196639 kill_reason Maximum check online fails reached 196639 mac 196639 bytes_out 0 196639 bytes_in 0 196639 station_ip 37.129.77.168 196639 port 2 196639 unique_id port 196643 username hashtadani5 196643 mac 196643 bytes_out 0 196643 bytes_in 0 196643 station_ip 37.129.77.168 196643 port 8 196643 unique_id port 196643 remote_ip 10.8.1.106 196648 username seyedrezaei2572 196648 mac 196648 bytes_out 82498 196648 bytes_in 104624 196648 station_ip 83.122.118.116 196648 port 7 196648 unique_id port 196648 remote_ip 10.8.0.126 196651 username hashtadani5 196651 mac 196651 bytes_out 0 196651 bytes_in 0 196651 station_ip 37.129.77.168 196651 port 1 196651 unique_id port 196651 remote_ip 10.8.0.74 196653 username hashtadani5 196653 mac 196653 bytes_out 0 196653 bytes_in 0 196653 station_ip 37.129.77.168 196653 port 1 196653 unique_id port 196653 remote_ip 10.8.0.74 196654 username hashtadani5 196654 mac 196654 bytes_out 0 196654 bytes_in 0 196654 station_ip 37.129.77.168 196654 port 8 196654 unique_id port 196654 remote_ip 10.8.1.106 196655 username hashtadani5 196655 mac 196655 bytes_out 0 196655 bytes_in 0 196655 station_ip 37.129.77.168 196655 port 1 196655 unique_id port 196655 remote_ip 10.8.0.74 196657 username hashtadani5 196657 mac 196657 bytes_out 0 196657 bytes_in 0 196657 station_ip 37.129.77.168 196657 port 1 196657 unique_id port 196657 remote_ip 10.8.0.74 196658 username hashtadani5 196658 mac 196658 bytes_out 0 196658 bytes_in 0 196658 station_ip 37.129.77.168 196658 port 7 196658 unique_id port 196658 remote_ip 10.8.0.74 196661 username hashtadani5 196661 mac 196661 bytes_out 0 196661 bytes_in 0 196661 station_ip 37.129.77.168 196661 port 7 196661 unique_id port 196661 remote_ip 10.8.0.74 196662 username shahruz 196662 mac 196662 bytes_out 0 196662 bytes_in 0 196662 station_ip 37.129.49.183 196662 port 6 196662 unique_id port 196662 remote_ip 10.8.0.178 196664 username hashtadani5 196624 username hashtadani5 196624 mac 196624 bytes_out 0 196624 bytes_in 0 196624 station_ip 37.129.77.168 196624 port 2 196624 unique_id port 196624 remote_ip 10.8.0.74 196625 username hashtadani5 196625 mac 196625 bytes_out 0 196625 bytes_in 0 196625 station_ip 37.129.77.168 196625 port 2 196625 unique_id port 196625 remote_ip 10.8.0.74 196628 username hashtadani5 196628 mac 196628 bytes_out 0 196628 bytes_in 0 196628 station_ip 37.129.77.168 196628 port 2 196628 unique_id port 196628 remote_ip 10.8.0.74 196629 username hashtadani5 196629 mac 196629 bytes_out 0 196629 bytes_in 0 196629 station_ip 37.129.77.168 196629 port 8 196629 unique_id port 196629 remote_ip 10.8.1.106 196631 username hashtadani5 196631 mac 196631 bytes_out 0 196631 bytes_in 0 196631 station_ip 37.129.77.168 196631 port 8 196631 unique_id port 196631 remote_ip 10.8.1.106 196636 username barzegar 196636 mac 196636 bytes_out 0 196636 bytes_in 0 196636 station_ip 5.119.251.17 196636 port 8 196636 unique_id port 196636 remote_ip 10.8.1.138 196652 username hashtadani5 196652 mac 196652 bytes_out 0 196652 bytes_in 0 196652 station_ip 37.129.77.168 196652 port 1 196652 unique_id port 196652 remote_ip 10.8.0.74 196656 username hashtadani5 196656 mac 196656 bytes_out 0 196656 bytes_in 0 196656 station_ip 37.129.77.168 196656 port 1 196656 unique_id port 196656 remote_ip 10.8.0.74 196660 username hashtadani5 196660 mac 196660 bytes_out 0 196660 bytes_in 0 196660 station_ip 37.129.77.168 196660 port 1 196660 unique_id port 196660 remote_ip 10.8.0.74 196672 username shahruz 196672 mac 196672 bytes_out 0 196672 bytes_in 0 196672 station_ip 37.129.49.183 196672 port 6 196672 unique_id port 196672 remote_ip 10.8.0.178 196676 username hashtadani5 196676 mac 196676 bytes_out 0 196676 bytes_in 0 196676 station_ip 37.129.77.168 196676 port 8 196676 unique_id port 196676 remote_ip 10.8.1.106 196678 username hashtadani5 196678 mac 196678 bytes_out 0 196678 bytes_in 0 196678 station_ip 37.129.77.168 196678 port 1 196678 unique_id port 196678 remote_ip 10.8.0.74 196684 username hashtadani5 196684 mac 196684 bytes_out 0 196684 bytes_in 0 196684 station_ip 37.129.77.168 196684 port 6 196684 unique_id port 196684 remote_ip 10.8.0.74 196687 username hashtadani5 196687 mac 196687 bytes_out 0 196687 bytes_in 0 196687 station_ip 37.129.77.168 196687 port 1 196687 unique_id port 196687 remote_ip 10.8.0.74 196688 username farhad3 196688 mac 196688 bytes_out 0 196688 bytes_in 0 196688 station_ip 5.119.169.90 196688 port 4 196688 unique_id port 196688 remote_ip 10.8.1.34 196691 username barzegar 196691 mac 196691 bytes_out 0 196691 bytes_in 0 196691 station_ip 5.119.251.17 196691 port 10 196691 unique_id port 196691 remote_ip 10.8.1.138 196697 username shahruz 196697 mac 196697 bytes_out 0 196697 bytes_in 0 196697 station_ip 37.129.49.183 196697 port 1 196697 unique_id port 196697 remote_ip 10.8.0.178 196702 username hashtadani5 196702 mac 196702 bytes_out 0 196702 bytes_in 0 196702 station_ip 37.129.77.168 196702 port 8 196702 unique_id port 196702 remote_ip 10.8.1.106 196703 username hashtadani5 196703 mac 196703 bytes_out 0 196703 bytes_in 0 196703 station_ip 37.129.77.168 196703 port 1 196703 unique_id port 196703 remote_ip 10.8.0.74 196704 username hashtadani5 196704 mac 196704 bytes_out 0 196704 bytes_in 0 196704 station_ip 37.129.77.168 196640 bytes_out 0 196640 bytes_in 0 196640 station_ip 37.129.77.168 196640 port 6 196640 unique_id port 196640 remote_ip 10.8.0.74 196641 username hashtadani5 196641 mac 196641 bytes_out 0 196641 bytes_in 0 196641 station_ip 37.129.77.168 196641 port 6 196641 unique_id port 196641 remote_ip 10.8.0.74 196642 username hashtadani5 196642 mac 196642 bytes_out 0 196642 bytes_in 0 196642 station_ip 37.129.77.168 196642 port 9 196642 unique_id port 196642 remote_ip 10.8.0.74 196644 username motamedi9772 196644 mac 196644 bytes_out 2105252 196644 bytes_in 20329942 196644 station_ip 37.129.213.172 196644 port 1 196644 unique_id port 196644 remote_ip 10.8.0.54 196645 username hashtadani5 196645 mac 196645 bytes_out 0 196645 bytes_in 0 196645 station_ip 37.129.77.168 196645 port 1 196645 unique_id port 196645 remote_ip 10.8.0.74 196646 username hashtadani5 196646 mac 196646 bytes_out 0 196646 bytes_in 0 196646 station_ip 37.129.77.168 196646 port 8 196646 unique_id port 196646 remote_ip 10.8.1.106 196647 username hashtadani5 196647 mac 196647 bytes_out 0 196647 bytes_in 0 196647 station_ip 37.129.77.168 196647 port 8 196647 unique_id port 196647 remote_ip 10.8.1.106 196649 username hashtadani5 196649 mac 196649 bytes_out 0 196649 bytes_in 0 196649 station_ip 37.129.77.168 196649 port 1 196649 unique_id port 196649 remote_ip 10.8.0.74 196650 username hashtadani5 196650 mac 196650 bytes_out 0 196650 bytes_in 0 196650 station_ip 37.129.77.168 196650 port 1 196650 unique_id port 196650 remote_ip 10.8.0.74 196659 username barzegar 196659 mac 196659 bytes_out 0 196659 bytes_in 0 196659 station_ip 5.119.251.17 196659 port 1 196659 unique_id port 196659 remote_ip 10.8.0.166 196663 username hashtadani5 196663 mac 196663 bytes_out 0 196663 bytes_in 0 196663 station_ip 37.129.77.168 196663 port 1 196663 unique_id port 196663 remote_ip 10.8.0.74 196667 username hashtadani5 196667 mac 196667 bytes_out 0 196667 bytes_in 0 196667 station_ip 37.129.77.168 196667 port 1 196667 unique_id port 196667 remote_ip 10.8.0.74 196670 username hashtadani5 196670 mac 196670 bytes_out 0 196670 bytes_in 0 196670 station_ip 37.129.77.168 196670 port 1 196670 unique_id port 196670 remote_ip 10.8.0.74 196673 username hashtadani5 196673 mac 196673 bytes_out 0 196673 bytes_in 0 196673 station_ip 37.129.77.168 196673 port 1 196673 unique_id port 196673 remote_ip 10.8.0.74 196675 username barzegar 196675 mac 196675 bytes_out 0 196675 bytes_in 0 196675 station_ip 5.119.251.17 196675 port 10 196675 unique_id port 196675 remote_ip 10.8.1.138 196680 username hashtadani5 196680 mac 196680 bytes_out 0 196680 bytes_in 0 196680 station_ip 37.129.77.168 196680 port 1 196680 unique_id port 196680 remote_ip 10.8.0.74 196682 username hashtadani5 196682 mac 196682 bytes_out 0 196682 bytes_in 0 196682 station_ip 37.129.77.168 196682 port 8 196682 unique_id port 196682 remote_ip 10.8.1.106 196685 username shahruz 196685 mac 196685 bytes_out 0 196685 bytes_in 0 196685 station_ip 37.129.49.183 196685 port 1 196685 unique_id port 196685 remote_ip 10.8.0.178 196695 username hashtadani5 196695 mac 196695 bytes_out 0 196695 bytes_in 0 196695 station_ip 37.129.77.168 196695 port 8 196695 unique_id port 196695 remote_ip 10.8.1.106 196701 username hashtadani5 196701 mac 196701 bytes_out 0 196701 bytes_in 0 196701 station_ip 37.129.77.168 196701 port 8 196664 mac 196664 bytes_out 0 196664 bytes_in 0 196664 station_ip 37.129.77.168 196664 port 1 196664 unique_id port 196664 remote_ip 10.8.0.74 196665 username hashtadani5 196665 mac 196665 bytes_out 0 196665 bytes_in 0 196665 station_ip 37.129.77.168 196665 port 1 196665 unique_id port 196665 remote_ip 10.8.0.74 196666 username hashtadani5 196666 mac 196666 bytes_out 0 196666 bytes_in 0 196666 station_ip 37.129.77.168 196666 port 1 196666 unique_id port 196666 remote_ip 10.8.0.74 196668 username hashtadani5 196668 mac 196668 bytes_out 0 196668 bytes_in 0 196668 station_ip 37.129.77.168 196668 port 1 196668 unique_id port 196668 remote_ip 10.8.0.74 196669 username hashtadani5 196669 mac 196669 bytes_out 0 196669 bytes_in 0 196669 station_ip 37.129.77.168 196669 port 8 196669 unique_id port 196669 remote_ip 10.8.1.106 196671 username shahruz 196671 mac 196671 bytes_out 0 196671 bytes_in 0 196671 station_ip 37.129.49.183 196671 port 6 196671 unique_id port 196671 remote_ip 10.8.0.178 196674 username hashtadani5 196674 mac 196674 bytes_out 0 196674 bytes_in 0 196674 station_ip 37.129.77.168 196674 port 8 196674 unique_id port 196674 remote_ip 10.8.1.106 196677 username hashtadani5 196677 mac 196677 bytes_out 0 196677 bytes_in 0 196677 station_ip 37.129.77.168 196677 port 8 196677 unique_id port 196677 remote_ip 10.8.1.106 196679 username shahruz 196679 mac 196679 bytes_out 0 196679 bytes_in 0 196679 station_ip 37.129.49.183 196679 port 1 196679 unique_id port 196679 remote_ip 10.8.0.178 196681 username hashtadani5 196681 mac 196681 bytes_out 0 196681 bytes_in 0 196681 station_ip 37.129.77.168 196681 port 1 196681 unique_id port 196681 remote_ip 10.8.0.74 196683 username hashtadani5 196683 mac 196683 bytes_out 0 196683 bytes_in 0 196683 station_ip 37.129.77.168 196683 port 8 196683 unique_id port 196683 remote_ip 10.8.1.106 196686 username shahruz 196686 mac 196686 bytes_out 0 196686 bytes_in 0 196686 station_ip 37.129.49.183 196686 port 1 196686 unique_id port 196686 remote_ip 10.8.0.178 196689 username hashtadani5 196689 mac 196689 bytes_out 0 196689 bytes_in 0 196689 station_ip 37.129.77.168 196689 port 8 196689 unique_id port 196689 remote_ip 10.8.1.106 196690 username farhad3 196690 mac 196690 bytes_out 0 196690 bytes_in 0 196690 station_ip 5.119.169.90 196690 port 4 196690 unique_id port 196690 remote_ip 10.8.1.34 196692 username hashtadani5 196692 mac 196692 bytes_out 0 196692 bytes_in 0 196692 station_ip 37.129.77.168 196692 port 8 196692 unique_id port 196692 remote_ip 10.8.1.106 196693 username hashtadani5 196693 mac 196693 bytes_out 0 196693 bytes_in 0 196693 station_ip 37.129.77.168 196693 port 8 196693 unique_id port 196693 remote_ip 10.8.1.106 196694 username hashtadani5 196694 mac 196694 bytes_out 0 196694 bytes_in 0 196694 station_ip 37.129.77.168 196694 port 8 196694 unique_id port 196694 remote_ip 10.8.1.106 196696 username hashtadani5 196696 mac 196696 bytes_out 0 196696 bytes_in 0 196696 station_ip 37.129.77.168 196696 port 8 196696 unique_id port 196696 remote_ip 10.8.1.106 196698 username hashtadani5 196698 mac 196698 bytes_out 0 196698 bytes_in 0 196698 station_ip 37.129.77.168 196698 port 6 196698 unique_id port 196698 remote_ip 10.8.0.74 196699 username shahruz 196699 mac 196699 bytes_out 0 196699 bytes_in 0 196699 station_ip 37.129.49.183 196699 port 1 196699 unique_id port 196699 remote_ip 10.8.0.178 196700 username shahruz 196700 mac 196700 bytes_out 0 196700 bytes_in 0 196700 station_ip 37.129.49.183 196700 port 1 196700 unique_id port 196700 remote_ip 10.8.0.178 196706 username hashtadani5 196706 mac 196706 bytes_out 0 196706 bytes_in 0 196706 station_ip 37.129.77.168 196706 port 1 196706 unique_id port 196706 remote_ip 10.8.0.74 196707 username shahruz 196707 mac 196707 bytes_out 0 196707 bytes_in 0 196707 station_ip 37.129.49.183 196707 port 1 196707 unique_id port 196707 remote_ip 10.8.0.178 196708 username barzegar 196708 mac 196708 bytes_out 0 196708 bytes_in 0 196708 station_ip 5.119.251.17 196708 port 8 196708 unique_id port 196708 remote_ip 10.8.1.138 196709 username hashtadani5 196709 mac 196709 bytes_out 0 196709 bytes_in 0 196709 station_ip 37.129.77.168 196709 port 1 196709 unique_id port 196709 remote_ip 10.8.0.74 196712 username hashtadani5 196712 mac 196712 bytes_out 0 196712 bytes_in 0 196712 station_ip 37.129.77.168 196712 port 1 196712 unique_id port 196712 remote_ip 10.8.0.74 196715 username shahruz 196715 mac 196715 bytes_out 1702 196715 bytes_in 4216 196715 station_ip 37.129.49.183 196715 port 1 196715 unique_id port 196715 remote_ip 10.8.0.178 196717 username hashtadani5 196717 mac 196717 bytes_out 0 196717 bytes_in 0 196717 station_ip 37.129.77.168 196717 port 1 196717 unique_id port 196717 remote_ip 10.8.0.74 196719 username hashtadani5 196719 mac 196719 bytes_out 0 196719 bytes_in 0 196719 station_ip 37.129.77.168 196719 port 8 196719 unique_id port 196719 remote_ip 10.8.1.106 196720 username hashtadani5 196720 mac 196720 bytes_out 0 196720 bytes_in 0 196720 station_ip 37.129.77.168 196720 port 7 196720 unique_id port 196720 remote_ip 10.8.0.74 196724 username shahruz 196724 mac 196724 bytes_out 0 196724 bytes_in 0 196724 station_ip 37.129.49.183 196724 port 7 196724 unique_id port 196724 remote_ip 10.8.0.178 196726 username hashtadani5 196726 mac 196726 bytes_out 0 196726 bytes_in 0 196726 station_ip 37.129.77.168 196726 port 6 196726 unique_id port 196726 remote_ip 10.8.0.74 196727 username hashtadani5 196727 mac 196727 bytes_out 0 196727 bytes_in 0 196727 station_ip 37.129.77.168 196727 port 6 196727 unique_id port 196727 remote_ip 10.8.0.74 196732 username farhad3 196732 mac 196732 bytes_out 79643 196732 bytes_in 244444 196732 station_ip 5.119.169.90 196732 port 4 196732 unique_id port 196732 remote_ip 10.8.1.34 196733 username motamedi9772 196733 mac 196733 bytes_out 0 196733 bytes_in 0 196733 station_ip 37.129.213.172 196733 port 1 196733 unique_id port 196733 remote_ip 10.8.0.54 196736 username shahruz 196736 mac 196736 bytes_out 0 196736 bytes_in 0 196736 station_ip 37.129.49.183 196736 port 7 196736 unique_id port 196736 remote_ip 10.8.0.178 196740 username hashtadani5 196740 mac 196740 bytes_out 0 196740 bytes_in 0 196740 station_ip 37.129.77.168 196740 port 7 196740 unique_id port 196740 remote_ip 10.8.0.74 196753 username hashtadani5 196753 mac 196753 bytes_out 0 196753 bytes_in 0 196753 station_ip 37.129.77.168 196753 port 7 196753 unique_id port 196753 remote_ip 10.8.0.74 196754 username hashtadani5 196754 mac 196754 bytes_out 0 196754 bytes_in 0 196754 station_ip 37.129.77.168 196754 port 4 196754 unique_id port 196754 remote_ip 10.8.1.106 196756 username hashtadani5 196701 unique_id port 196701 remote_ip 10.8.1.106 196705 username hashtadani5 196705 mac 196705 bytes_out 0 196705 bytes_in 0 196705 station_ip 37.129.77.168 196705 port 1 196705 unique_id port 196705 remote_ip 10.8.0.74 196710 username hashtadani5 196710 mac 196710 bytes_out 0 196710 bytes_in 0 196710 station_ip 37.129.77.168 196710 port 6 196710 unique_id port 196710 remote_ip 10.8.0.74 196711 username shahruz 196711 mac 196711 bytes_out 0 196711 bytes_in 0 196711 station_ip 37.129.49.183 196711 port 1 196711 unique_id port 196711 remote_ip 10.8.0.178 196714 username shahruz 196714 mac 196714 bytes_out 0 196714 bytes_in 0 196714 station_ip 37.129.49.183 196714 port 1 196714 unique_id port 196714 remote_ip 10.8.0.178 196718 username hashtadani5 196718 mac 196718 bytes_out 0 196718 bytes_in 0 196718 station_ip 37.129.77.168 196718 port 1 196718 unique_id port 196718 remote_ip 10.8.0.74 196721 username barzegar 196721 mac 196721 bytes_out 0 196721 bytes_in 0 196721 station_ip 5.119.251.17 196721 port 6 196721 unique_id port 196721 remote_ip 10.8.0.166 196723 username shahruz 196723 mac 196723 bytes_out 0 196723 bytes_in 0 196723 station_ip 37.129.49.183 196723 port 7 196723 unique_id port 196723 remote_ip 10.8.0.178 196728 username farhad3 196728 mac 196728 bytes_out 0 196728 bytes_in 0 196728 station_ip 5.119.169.90 196728 port 4 196728 unique_id port 196728 remote_ip 10.8.1.34 196729 username hashtadani5 196729 mac 196729 bytes_out 0 196729 bytes_in 0 196729 station_ip 37.129.77.168 196729 port 6 196729 unique_id port 196729 remote_ip 10.8.0.74 196735 username hashtadani5 196735 mac 196735 bytes_out 0 196735 bytes_in 0 196735 station_ip 37.129.77.168 196735 port 4 196735 unique_id port 196735 remote_ip 10.8.1.106 196737 username hashtadani5 196737 mac 196737 bytes_out 0 196737 bytes_in 0 196737 station_ip 37.129.77.168 196737 port 8 196737 unique_id port 196737 remote_ip 10.8.1.106 196738 username hashtadani5 196738 mac 196738 bytes_out 0 196738 bytes_in 0 196738 station_ip 37.129.77.168 196738 port 7 196738 unique_id port 196738 remote_ip 10.8.0.74 196741 username hashtadani5 196741 mac 196741 bytes_out 0 196741 bytes_in 0 196741 station_ip 37.129.77.168 196741 port 4 196741 unique_id port 196741 remote_ip 10.8.1.106 196743 username barzegar 196743 mac 196743 bytes_out 0 196743 bytes_in 0 196743 station_ip 5.119.251.17 196743 port 4 196743 unique_id port 196743 remote_ip 10.8.1.138 196744 username motamedi9772 196744 mac 196744 bytes_out 805200 196744 bytes_in 8380251 196744 station_ip 37.129.213.172 196744 port 1 196744 unique_id port 196744 remote_ip 10.8.0.54 196746 username hashtadani5 196746 mac 196746 bytes_out 0 196746 bytes_in 0 196746 station_ip 37.129.77.168 196746 port 4 196746 unique_id port 196746 remote_ip 10.8.1.106 196748 username hashtadani5 196748 mac 196748 bytes_out 0 196748 bytes_in 0 196748 station_ip 37.129.77.168 196748 port 7 196748 unique_id port 196748 remote_ip 10.8.0.74 196751 username hashtadani5 196751 mac 196751 bytes_out 0 196751 bytes_in 0 196751 station_ip 37.129.77.168 196751 port 4 196751 unique_id port 196751 remote_ip 10.8.1.106 196752 username hashtadani5 196752 mac 196752 bytes_out 0 196752 bytes_in 0 196752 station_ip 37.129.77.168 196752 port 4 196752 unique_id port 196752 remote_ip 10.8.1.106 196755 username hashtadani5 196755 mac 196704 port 1 196704 unique_id port 196704 remote_ip 10.8.0.74 196713 username shahruz 196713 mac 196713 bytes_out 0 196713 bytes_in 0 196713 station_ip 37.129.49.183 196713 port 1 196713 unique_id port 196713 remote_ip 10.8.0.178 196716 username hashtadani5 196716 mac 196716 bytes_out 0 196716 bytes_in 0 196716 station_ip 37.129.77.168 196716 port 6 196716 unique_id port 196716 remote_ip 10.8.0.74 196722 username hashtadani5 196722 mac 196722 bytes_out 0 196722 bytes_in 0 196722 station_ip 37.129.77.168 196722 port 6 196722 unique_id port 196722 remote_ip 10.8.0.74 196725 username shahruz 196725 mac 196725 bytes_out 0 196725 bytes_in 0 196725 station_ip 37.129.49.183 196725 port 7 196725 unique_id port 196725 remote_ip 10.8.0.178 196730 username mosi 196730 mac 196730 bytes_out 0 196730 bytes_in 0 196730 station_ip 5.233.55.186 196730 port 11 196730 unique_id port 196731 username motamedi9772 196731 mac 196731 bytes_out 1615355 196731 bytes_in 17409476 196731 station_ip 37.129.213.172 196731 port 1 196731 unique_id port 196731 remote_ip 10.8.0.54 196734 username hashtadani5 196734 mac 196734 bytes_out 0 196734 bytes_in 0 196734 station_ip 37.129.77.168 196734 port 7 196734 unique_id port 196734 remote_ip 10.8.0.74 196739 username farhad3 196739 mac 196739 bytes_out 0 196739 bytes_in 0 196739 station_ip 5.119.169.90 196739 port 4 196739 unique_id port 196739 remote_ip 10.8.1.34 196742 username hashtadani5 196742 mac 196742 bytes_out 0 196742 bytes_in 0 196742 station_ip 37.129.77.168 196742 port 7 196742 unique_id port 196742 remote_ip 10.8.0.74 196745 username hashtadani5 196745 mac 196745 bytes_out 0 196745 bytes_in 0 196745 station_ip 37.129.77.168 196745 port 7 196745 unique_id port 196745 remote_ip 10.8.0.74 196747 username motamedi9772 196747 mac 196747 bytes_out 5117 196747 bytes_in 11741 196747 station_ip 37.129.213.172 196747 port 9 196747 unique_id port 196747 remote_ip 10.8.0.54 196749 username hashtadani5 196749 mac 196749 bytes_out 0 196749 bytes_in 0 196749 station_ip 37.129.77.168 196749 port 9 196749 unique_id port 196749 remote_ip 10.8.0.74 196750 username shahruz 196750 kill_reason Maximum check online fails reached 196750 mac 196750 bytes_out 0 196750 bytes_in 0 196750 station_ip 37.129.49.183 196750 port 1 196750 unique_id port 196758 username hashtadani5 196758 mac 196758 bytes_out 0 196758 bytes_in 0 196758 station_ip 37.129.77.168 196758 port 4 196758 unique_id port 196758 remote_ip 10.8.1.106 196768 username shahruz 196768 mac 196768 bytes_out 2265 196768 bytes_in 5033 196768 station_ip 37.129.49.183 196768 port 6 196768 unique_id port 196768 remote_ip 10.8.0.178 196777 username shahruz 196777 mac 196777 bytes_out 0 196777 bytes_in 0 196777 station_ip 37.129.49.183 196777 port 6 196777 unique_id port 196777 remote_ip 10.8.0.178 196778 username hashtadani5 196778 mac 196778 bytes_out 0 196778 bytes_in 0 196778 station_ip 37.129.77.168 196778 port 7 196778 unique_id port 196778 remote_ip 10.8.0.74 196780 username hashtadani5 196780 mac 196780 bytes_out 0 196780 bytes_in 0 196780 station_ip 37.129.77.168 196780 port 4 196780 unique_id port 196780 remote_ip 10.8.1.106 196784 username hashtadani5 196784 mac 196784 bytes_out 0 196784 bytes_in 0 196784 station_ip 37.129.77.168 196784 port 8 196784 unique_id port 196784 remote_ip 10.8.1.106 196786 username barzegar 196786 mac 196755 bytes_out 0 196755 bytes_in 0 196755 station_ip 37.129.77.168 196755 port 7 196755 unique_id port 196755 remote_ip 10.8.0.74 196757 username shahruz 196757 mac 196757 bytes_out 0 196757 bytes_in 0 196757 station_ip 37.129.49.183 196757 port 4 196757 unique_id port 196757 remote_ip 10.8.1.150 196760 username hashtadani5 196760 mac 196760 bytes_out 0 196760 bytes_in 0 196760 station_ip 37.129.77.168 196760 port 9 196760 unique_id port 196760 remote_ip 10.8.0.74 196763 username hashtadani5 196763 mac 196763 bytes_out 0 196763 bytes_in 0 196763 station_ip 37.129.77.168 196763 port 4 196763 unique_id port 196763 remote_ip 10.8.1.106 196764 username hashtadani5 196764 mac 196764 bytes_out 0 196764 bytes_in 0 196764 station_ip 37.129.77.168 196764 port 6 196764 unique_id port 196764 remote_ip 10.8.0.74 196767 username hashtadani5 196767 mac 196767 bytes_out 0 196767 bytes_in 0 196767 station_ip 37.129.77.168 196767 port 7 196767 unique_id port 196767 remote_ip 10.8.0.74 196771 username hashtadani5 196771 mac 196771 bytes_out 0 196771 bytes_in 0 196771 station_ip 37.129.77.168 196771 port 4 196771 unique_id port 196771 remote_ip 10.8.1.106 196772 username hashtadani5 196772 mac 196772 bytes_out 0 196772 bytes_in 0 196772 station_ip 37.129.77.168 196772 port 4 196772 unique_id port 196772 remote_ip 10.8.1.106 196773 username hashtadani5 196773 mac 196773 bytes_out 0 196773 bytes_in 0 196773 station_ip 37.129.77.168 196773 port 6 196773 unique_id port 196773 remote_ip 10.8.0.74 196774 username hashtadani5 196774 mac 196774 bytes_out 0 196774 bytes_in 0 196774 station_ip 37.129.77.168 196774 port 4 196774 unique_id port 196774 remote_ip 10.8.1.106 196779 username hashtadani5 196779 mac 196779 bytes_out 0 196779 bytes_in 0 196779 station_ip 37.129.77.168 196779 port 6 196779 unique_id port 196779 remote_ip 10.8.0.74 196785 username hashtadani5 196785 kill_reason Maximum check online fails reached 196785 mac 196785 bytes_out 0 196785 bytes_in 0 196785 station_ip 37.129.77.168 196785 port 4 196785 unique_id port 196788 username shahruz 196788 mac 196788 bytes_out 0 196788 bytes_in 0 196788 station_ip 37.129.49.183 196788 port 7 196788 unique_id port 196788 remote_ip 10.8.0.178 196791 username shahruz 196791 mac 196791 bytes_out 0 196791 bytes_in 0 196791 station_ip 37.129.49.183 196791 port 6 196791 unique_id port 196791 remote_ip 10.8.0.178 196792 username hashtadani5 196792 mac 196792 bytes_out 0 196792 bytes_in 0 196792 station_ip 37.129.77.168 196792 port 10 196792 unique_id port 196792 remote_ip 10.8.1.106 196802 username shahruz 196802 mac 196802 bytes_out 0 196802 bytes_in 0 196802 station_ip 37.129.49.183 196802 port 6 196802 unique_id port 196802 remote_ip 10.8.0.178 196804 username hashtadani5 196804 mac 196804 bytes_out 0 196804 bytes_in 0 196804 station_ip 37.129.77.168 196804 port 10 196804 unique_id port 196804 remote_ip 10.8.1.106 196808 username shahruz 196808 mac 196808 bytes_out 0 196808 bytes_in 0 196808 station_ip 37.129.49.183 196808 port 10 196808 unique_id port 196808 remote_ip 10.8.1.150 196809 username shahruz 196809 mac 196809 bytes_out 0 196809 bytes_in 0 196809 station_ip 37.129.49.183 196809 port 9 196809 unique_id port 196809 remote_ip 10.8.0.178 196821 username yaghobi 196821 kill_reason Maximum number of concurrent logins reached 196821 mac 196821 bytes_out 0 196821 bytes_in 0 196756 mac 196756 bytes_out 0 196756 bytes_in 0 196756 station_ip 37.129.77.168 196756 port 7 196756 unique_id port 196756 remote_ip 10.8.0.74 196759 username shahruz 196759 mac 196759 bytes_out 1702 196759 bytes_in 4163 196759 station_ip 37.129.49.183 196759 port 7 196759 unique_id port 196759 remote_ip 10.8.0.178 196761 username hashtadani5 196761 mac 196761 bytes_out 0 196761 bytes_in 0 196761 station_ip 37.129.77.168 196761 port 7 196761 unique_id port 196761 remote_ip 10.8.0.74 196762 username sabaghnezhad 196762 mac 196762 bytes_out 0 196762 bytes_in 0 196762 station_ip 83.123.114.158 196762 port 6 196762 unique_id port 196762 remote_ip 10.8.0.26 196765 username hashtadani5 196765 mac 196765 bytes_out 0 196765 bytes_in 0 196765 station_ip 37.129.77.168 196765 port 6 196765 unique_id port 196765 remote_ip 10.8.0.74 196766 username barzegar 196766 mac 196766 bytes_out 0 196766 bytes_in 0 196766 station_ip 5.119.251.17 196766 port 4 196766 unique_id port 196766 remote_ip 10.8.1.138 196769 username hashtadani5 196769 mac 196769 bytes_out 0 196769 bytes_in 0 196769 station_ip 37.129.77.168 196769 port 4 196769 unique_id port 196769 remote_ip 10.8.1.106 196770 username farhad3 196770 mac 196770 bytes_out 0 196770 bytes_in 0 196770 station_ip 5.119.169.90 196770 port 8 196770 unique_id port 196770 remote_ip 10.8.1.34 196775 username hashtadani5 196775 mac 196775 bytes_out 0 196775 bytes_in 0 196775 station_ip 37.129.77.168 196775 port 4 196775 unique_id port 196775 remote_ip 10.8.1.106 196776 username shahruz 196776 mac 196776 bytes_out 0 196776 bytes_in 0 196776 station_ip 37.129.49.183 196776 port 6 196776 unique_id port 196776 remote_ip 10.8.0.178 196781 username shahruz 196781 mac 196781 bytes_out 0 196781 bytes_in 0 196781 station_ip 37.129.49.183 196781 port 6 196781 unique_id port 196781 remote_ip 10.8.0.178 196782 username hashtadani5 196782 mac 196782 bytes_out 0 196782 bytes_in 0 196782 station_ip 37.129.77.168 196782 port 6 196782 unique_id port 196782 remote_ip 10.8.0.74 196783 username hashtadani5 196783 mac 196783 bytes_out 0 196783 bytes_in 0 196783 station_ip 37.129.77.168 196783 port 8 196783 unique_id port 196783 remote_ip 10.8.1.106 196787 username hashtadani5 196787 mac 196787 bytes_out 0 196787 bytes_in 0 196787 station_ip 37.129.77.168 196787 port 6 196787 unique_id port 196787 remote_ip 10.8.0.74 196789 username shahruz 196789 mac 196789 bytes_out 0 196789 bytes_in 0 196789 station_ip 37.129.49.183 196789 port 6 196789 unique_id port 196789 remote_ip 10.8.0.178 196794 username shahruz 196794 mac 196794 bytes_out 0 196794 bytes_in 0 196794 station_ip 37.129.49.183 196794 port 10 196794 unique_id port 196794 remote_ip 10.8.1.150 196797 username shahruz 196797 mac 196797 bytes_out 0 196797 bytes_in 0 196797 station_ip 37.129.49.183 196797 port 7 196797 unique_id port 196797 remote_ip 10.8.0.178 196799 username shahruz 196799 mac 196799 bytes_out 0 196799 bytes_in 0 196799 station_ip 37.129.49.183 196799 port 7 196799 unique_id port 196799 remote_ip 10.8.0.178 196801 username hashtadani5 196801 mac 196801 bytes_out 0 196801 bytes_in 0 196801 station_ip 37.129.77.168 196801 port 6 196801 unique_id port 196801 remote_ip 10.8.0.74 196803 username shahruz 196803 mac 196803 bytes_out 0 196803 bytes_in 0 196803 station_ip 37.129.49.183 196803 port 6 196786 bytes_out 0 196786 bytes_in 0 196786 station_ip 5.119.251.17 196786 port 8 196786 unique_id port 196786 remote_ip 10.8.1.138 196790 username hashtadani5 196790 mac 196790 bytes_out 0 196790 bytes_in 0 196790 station_ip 37.129.77.168 196790 port 7 196790 unique_id port 196790 remote_ip 10.8.0.74 196793 username hashtadani5 196793 mac 196793 bytes_out 0 196793 bytes_in 0 196793 station_ip 37.129.77.168 196793 port 7 196793 unique_id port 196793 remote_ip 10.8.0.74 196795 username hashtadani5 196795 mac 196795 bytes_out 0 196795 bytes_in 0 196795 station_ip 37.129.77.168 196795 port 7 196795 unique_id port 196795 remote_ip 10.8.0.74 196796 username shahruz 196796 mac 196796 bytes_out 0 196796 bytes_in 0 196796 station_ip 37.129.49.183 196796 port 6 196796 unique_id port 196796 remote_ip 10.8.0.178 196798 username hashtadani5 196798 mac 196798 bytes_out 0 196798 bytes_in 0 196798 station_ip 37.129.77.168 196798 port 10 196798 unique_id port 196798 remote_ip 10.8.1.106 196800 username shahruz 196800 mac 196800 bytes_out 0 196800 bytes_in 0 196800 station_ip 37.129.49.183 196800 port 7 196800 unique_id port 196800 remote_ip 10.8.0.178 196805 username shahruz 196805 mac 196805 bytes_out 0 196805 bytes_in 0 196805 station_ip 37.129.49.183 196805 port 7 196805 unique_id port 196805 remote_ip 10.8.0.178 196810 username hashtadani5 196810 mac 196810 bytes_out 0 196810 bytes_in 0 196810 station_ip 37.129.77.168 196810 port 7 196810 unique_id port 196810 remote_ip 10.8.0.74 196811 username shahruz 196811 kill_reason Maximum check online fails reached 196811 mac 196811 bytes_out 0 196811 bytes_in 0 196811 station_ip 37.129.49.183 196811 port 6 196811 unique_id port 196815 username hashtadani5 196815 mac 196815 bytes_out 0 196815 bytes_in 0 196815 station_ip 37.129.77.168 196815 port 7 196815 unique_id port 196815 remote_ip 10.8.0.74 196817 username yaghobi 196817 kill_reason Maximum number of concurrent logins reached 196817 mac 196817 bytes_out 0 196817 bytes_in 0 196817 station_ip 83.122.254.65 196817 port 10 196817 unique_id port 196818 username yaghobi 196818 kill_reason Maximum number of concurrent logins reached 196818 mac 196818 bytes_out 0 196818 bytes_in 0 196818 station_ip 83.122.254.65 196818 port 10 196818 unique_id port 196820 username yaghobi 196820 kill_reason Maximum number of concurrent logins reached 196820 mac 196820 bytes_out 0 196820 bytes_in 0 196820 station_ip 83.122.254.65 196820 port 7 196820 unique_id port 196823 username yaghobi 196823 mac 196823 bytes_out 0 196823 bytes_in 0 196823 station_ip 83.122.254.65 196823 port 9 196823 unique_id port 196823 remote_ip 10.8.0.14 196826 username yaghobi 196826 kill_reason Maximum number of concurrent logins reached 196826 mac 196826 bytes_out 0 196826 bytes_in 0 196826 station_ip 83.122.254.65 196826 port 10 196826 unique_id port 196829 username shahruz 196829 mac 196829 bytes_out 0 196829 bytes_in 0 196829 station_ip 37.129.49.183 196829 port 9 196829 unique_id port 196829 remote_ip 10.8.0.178 196836 username hashtadani5 196836 mac 196836 bytes_out 0 196836 bytes_in 0 196836 station_ip 37.129.77.168 196836 port 10 196836 unique_id port 196836 remote_ip 10.8.1.106 196841 username hashtadani5 196841 mac 196841 bytes_out 0 196841 bytes_in 0 196841 station_ip 37.129.77.168 196841 port 13 196841 unique_id port 196841 remote_ip 10.8.1.106 196844 username hashtadani5 196844 mac 196844 bytes_out 0 196844 bytes_in 0 196803 unique_id port 196803 remote_ip 10.8.0.178 196806 username hashtadani5 196806 mac 196806 bytes_out 0 196806 bytes_in 0 196806 station_ip 37.129.77.168 196806 port 6 196806 unique_id port 196806 remote_ip 10.8.0.74 196807 username hashtadani5 196807 mac 196807 bytes_out 0 196807 bytes_in 0 196807 station_ip 37.129.77.168 196807 port 7 196807 unique_id port 196807 remote_ip 10.8.0.74 196812 username hashtadani5 196812 mac 196812 bytes_out 0 196812 bytes_in 0 196812 station_ip 37.129.77.168 196812 port 10 196812 unique_id port 196812 remote_ip 10.8.1.106 196813 username hashtadani5 196813 mac 196813 bytes_out 0 196813 bytes_in 0 196813 station_ip 37.129.77.168 196813 port 7 196813 unique_id port 196813 remote_ip 10.8.0.74 196814 username hashtadani5 196814 mac 196814 bytes_out 0 196814 bytes_in 0 196814 station_ip 37.129.77.168 196814 port 7 196814 unique_id port 196814 remote_ip 10.8.0.74 196816 username barzegar 196816 kill_reason Another user logged on this global unique id 196816 mac 196816 bytes_out 0 196816 bytes_in 0 196816 station_ip 5.119.251.17 196816 port 10 196816 unique_id port 196816 remote_ip 10.8.1.138 196819 username hashtadani5 196819 mac 196819 bytes_out 0 196819 bytes_in 0 196819 station_ip 37.129.77.168 196819 port 7 196819 unique_id port 196819 remote_ip 10.8.0.74 196825 username hashtadani5 196825 kill_reason Another user logged on this global unique id 196825 mac 196825 bytes_out 0 196825 bytes_in 0 196825 station_ip 37.129.77.168 196825 port 10 196825 unique_id port 196825 remote_ip 10.8.1.106 196828 username yaghobi 196828 kill_reason Maximum number of concurrent logins reached 196828 mac 196828 bytes_out 0 196828 bytes_in 0 196828 station_ip 83.122.254.65 196828 port 10 196828 unique_id port 196831 username yaghobi 196831 kill_reason Maximum number of concurrent logins reached 196831 mac 196831 bytes_out 0 196831 bytes_in 0 196831 station_ip 83.122.254.65 196831 port 9 196831 unique_id port 196833 username hashtadani5 196833 mac 196833 bytes_out 0 196833 bytes_in 0 196833 station_ip 37.129.77.168 196833 port 10 196833 unique_id port 196833 remote_ip 10.8.0.74 196835 username hashtadani5 196835 mac 196835 bytes_out 0 196835 bytes_in 0 196835 station_ip 37.129.77.168 196835 port 10 196835 unique_id port 196835 remote_ip 10.8.1.106 196837 username hashtadani5 196837 mac 196837 bytes_out 0 196837 bytes_in 0 196837 station_ip 37.129.77.168 196837 port 9 196837 unique_id port 196837 remote_ip 10.8.0.74 196840 username hashtadani5 196840 mac 196840 bytes_out 0 196840 bytes_in 0 196840 station_ip 37.129.77.168 196840 port 13 196840 unique_id port 196840 remote_ip 10.8.1.106 196844 station_ip 37.129.77.168 196844 port 9 196844 unique_id port 196844 remote_ip 10.8.0.74 196848 username shahruz 196848 mac 196848 bytes_out 0 196848 bytes_in 0 196848 station_ip 37.129.49.183 196848 port 9 196848 unique_id port 196848 remote_ip 10.8.0.178 196851 username hashtadani5 196851 mac 196851 bytes_out 0 196851 bytes_in 0 196851 station_ip 37.129.77.168 196851 port 10 196851 unique_id port 196851 remote_ip 10.8.0.74 196852 username hashtadani5 196852 mac 196852 bytes_out 0 196852 bytes_in 0 196852 station_ip 37.129.77.168 196852 port 9 196852 unique_id port 196852 remote_ip 10.8.0.74 196853 username hashtadani5 196853 mac 196853 bytes_out 0 196853 bytes_in 0 196853 station_ip 37.129.77.168 196853 port 10 196853 unique_id port 196853 remote_ip 10.8.1.106 196854 username hashtadani5 196821 station_ip 83.122.254.65 196821 port 7 196821 unique_id port 196822 username yaghobi 196822 kill_reason Maximum number of concurrent logins reached 196822 mac 196822 bytes_out 0 196822 bytes_in 0 196822 station_ip 83.122.254.65 196822 port 7 196822 unique_id port 196824 username yaghobi 196824 kill_reason Maximum number of concurrent logins reached 196824 mac 196824 bytes_out 0 196824 bytes_in 0 196824 station_ip 83.122.254.65 196824 port 9 196824 unique_id port 196827 username yaghobi 196827 kill_reason Maximum number of concurrent logins reached 196827 mac 196827 bytes_out 0 196827 bytes_in 0 196827 station_ip 83.122.254.65 196827 port 10 196827 unique_id port 196830 username yaghobi 196830 kill_reason Maximum number of concurrent logins reached 196830 mac 196830 bytes_out 0 196830 bytes_in 0 196830 station_ip 83.122.254.65 196830 port 9 196830 unique_id port 196832 username yaghobi 196832 mac 196832 bytes_out 0 196832 bytes_in 0 196832 station_ip 83.122.254.65 196832 port 7 196832 unique_id port 196832 remote_ip 10.8.0.14 196834 username hashtadani5 196834 mac 196834 bytes_out 0 196834 bytes_in 0 196834 station_ip 37.129.77.168 196834 port 9 196834 unique_id port 196834 remote_ip 10.8.0.74 196838 username hashtadani5 196838 mac 196838 bytes_out 0 196838 bytes_in 0 196838 station_ip 37.129.77.168 196838 port 9 196838 unique_id port 196838 remote_ip 10.8.0.74 196839 username shahruz 196839 mac 196839 bytes_out 0 196839 bytes_in 0 196839 station_ip 37.129.49.183 196839 port 10 196839 unique_id port 196839 remote_ip 10.8.1.150 196849 username shahruz 196849 mac 196849 bytes_out 0 196849 bytes_in 0 196849 station_ip 37.129.49.183 196849 port 9 196849 unique_id port 196849 remote_ip 10.8.0.178 196850 username shahruz 196850 mac 196850 bytes_out 0 196850 bytes_in 0 196850 station_ip 37.129.49.183 196850 port 9 196850 unique_id port 196850 remote_ip 10.8.0.178 196855 username hashtadani5 196855 mac 196855 bytes_out 0 196855 bytes_in 0 196855 station_ip 37.129.77.168 196855 port 9 196855 unique_id port 196855 remote_ip 10.8.0.74 196857 username shahruz 196857 mac 196857 bytes_out 0 196857 bytes_in 0 196857 station_ip 37.129.49.183 196857 port 9 196857 unique_id port 196857 remote_ip 10.8.0.178 196858 username shahruz 196858 mac 196858 bytes_out 0 196858 bytes_in 0 196858 station_ip 37.129.49.183 196858 port 9 196858 unique_id port 196858 remote_ip 10.8.0.178 196859 username hashtadani5 196859 mac 196859 bytes_out 0 196859 bytes_in 0 196859 station_ip 37.129.77.168 196859 port 10 196859 unique_id port 196859 remote_ip 10.8.1.106 196860 username shahruz 196860 mac 196860 bytes_out 0 196860 bytes_in 0 196860 station_ip 37.129.49.183 196860 port 9 196860 unique_id port 196860 remote_ip 10.8.0.178 196861 username shahruz 196861 mac 196861 bytes_out 0 196861 bytes_in 0 196861 station_ip 37.129.49.183 196861 port 10 196861 unique_id port 196861 remote_ip 10.8.0.178 196862 username shahruz 196862 mac 196862 bytes_out 0 196862 bytes_in 0 196862 station_ip 37.129.49.183 196862 port 10 196862 unique_id port 196862 remote_ip 10.8.0.178 196863 username hashtadani5 196863 mac 196863 bytes_out 0 196863 bytes_in 0 196863 station_ip 37.129.77.168 196863 port 9 196863 unique_id port 196863 remote_ip 10.8.0.74 196864 username farhad3 196864 mac 196864 bytes_out 0 196864 bytes_in 0 196864 station_ip 5.119.169.90 196864 port 8 196864 unique_id port 196864 remote_ip 10.8.1.34 196865 username farhad3 196865 mac 196865 bytes_out 0 196865 bytes_in 0 196865 station_ip 5.119.169.90 196865 port 8 196865 unique_id port 196865 remote_ip 10.8.1.34 196872 username hashtadani5 196872 mac 196872 bytes_out 0 196872 bytes_in 0 196872 station_ip 37.129.77.168 196872 port 10 196872 unique_id port 196872 remote_ip 10.8.0.74 196873 username farhad3 196873 mac 196873 bytes_out 0 196873 bytes_in 0 196873 station_ip 5.119.169.90 196873 port 8 196873 unique_id port 196873 remote_ip 10.8.1.34 196879 username shahruz 196879 mac 196879 bytes_out 0 196879 bytes_in 0 196879 station_ip 37.129.49.183 196879 port 7 196879 unique_id port 196879 remote_ip 10.8.0.178 196881 username hashtadani5 196881 mac 196881 bytes_out 0 196881 bytes_in 0 196881 station_ip 37.129.77.168 196881 port 8 196881 unique_id port 196881 remote_ip 10.8.1.106 196882 username hashtadani5 196882 mac 196882 bytes_out 0 196882 bytes_in 0 196882 station_ip 37.129.77.168 196882 port 7 196882 unique_id port 196882 remote_ip 10.8.0.74 196884 username shahruz 196884 mac 196884 bytes_out 0 196884 bytes_in 0 196884 station_ip 37.129.49.183 196884 port 7 196884 unique_id port 196884 remote_ip 10.8.0.178 196886 username hashtadani5 196886 mac 196886 bytes_out 0 196886 bytes_in 0 196886 station_ip 37.129.77.168 196886 port 9 196886 unique_id port 196886 remote_ip 10.8.0.74 196888 username shahruz 196888 mac 196888 bytes_out 0 196888 bytes_in 0 196888 station_ip 37.129.49.183 196888 port 7 196888 unique_id port 196888 remote_ip 10.8.0.178 196889 username hashtadani5 196889 mac 196889 bytes_out 0 196889 bytes_in 0 196889 station_ip 37.129.77.168 196889 port 7 196889 unique_id port 196889 remote_ip 10.8.0.74 196890 username shahruz 196890 mac 196890 bytes_out 0 196890 bytes_in 0 196890 station_ip 37.129.49.183 196890 port 7 196890 unique_id port 196890 remote_ip 10.8.0.178 196892 username hashtadani5 196892 mac 196892 bytes_out 0 196892 bytes_in 0 196892 station_ip 37.129.77.168 196892 port 8 196892 unique_id port 196892 remote_ip 10.8.1.106 196893 username hashtadani5 196893 mac 196893 bytes_out 0 196893 bytes_in 0 196893 station_ip 37.129.77.168 196893 port 8 196893 unique_id port 196893 remote_ip 10.8.1.106 196897 username yaghobi 196897 mac 196897 bytes_out 106332 196897 bytes_in 286917 196897 station_ip 83.122.240.225 196897 port 7 196897 unique_id port 196897 remote_ip 10.8.0.14 196901 username shahruz 196901 mac 196901 bytes_out 0 196901 bytes_in 0 196901 station_ip 37.129.49.183 196901 port 7 196901 unique_id port 196901 remote_ip 10.8.0.178 196906 username hashtadani5 196906 mac 196906 bytes_out 0 196906 bytes_in 0 196906 station_ip 37.129.77.168 196906 port 10 196906 unique_id port 196906 remote_ip 10.8.1.106 196908 username shahruz 196908 mac 196908 bytes_out 0 196908 bytes_in 0 196908 station_ip 37.129.49.183 196908 port 7 196908 unique_id port 196908 remote_ip 10.8.0.178 196910 username hashtadani5 196910 mac 196910 bytes_out 0 196910 bytes_in 0 196910 station_ip 37.129.77.168 196910 port 10 196910 unique_id port 196910 remote_ip 10.8.1.106 196913 username hashtadani5 196913 mac 196913 bytes_out 0 196913 bytes_in 0 196913 station_ip 37.129.77.168 196913 port 7 196913 unique_id port 196913 remote_ip 10.8.0.74 196914 username hashtadani5 196914 mac 196914 bytes_out 0 196866 username hashtadani5 196866 mac 196866 bytes_out 0 196866 bytes_in 0 196866 station_ip 37.129.77.168 196866 port 10 196866 unique_id port 196866 remote_ip 10.8.1.106 196869 username hashtadani5 196869 mac 196869 bytes_out 0 196869 bytes_in 0 196869 station_ip 37.129.77.168 196869 port 9 196869 unique_id port 196869 remote_ip 10.8.0.74 196870 username shahruz 196870 mac 196870 bytes_out 0 196870 bytes_in 0 196870 station_ip 37.129.49.183 196870 port 9 196870 unique_id port 196870 remote_ip 10.8.0.178 196874 username shahruz 196874 mac 196874 bytes_out 0 196874 bytes_in 0 196874 station_ip 37.129.49.183 196874 port 9 196874 unique_id port 196874 remote_ip 10.8.0.178 196878 username hashtadani5 196878 mac 196878 bytes_out 0 196878 bytes_in 0 196878 station_ip 37.129.77.168 196878 port 7 196878 unique_id port 196878 remote_ip 10.8.0.74 196880 username hashtadani5 196880 mac 196880 bytes_out 0 196880 bytes_in 0 196880 station_ip 37.129.77.168 196880 port 7 196880 unique_id port 196880 remote_ip 10.8.0.74 196885 username shahruz 196885 mac 196885 bytes_out 0 196885 bytes_in 0 196885 station_ip 37.129.49.183 196885 port 7 196885 unique_id port 196885 remote_ip 10.8.0.178 196887 username barzegar 196887 mac 196887 bytes_out 0 196887 bytes_in 0 196887 station_ip 5.119.251.17 196887 port 8 196887 unique_id port 196887 remote_ip 10.8.1.138 196891 username hashtadani5 196891 mac 196891 bytes_out 0 196891 bytes_in 0 196891 station_ip 37.129.77.168 196891 port 8 196891 unique_id port 196891 remote_ip 10.8.1.106 196894 username hashtadani5 196894 mac 196894 bytes_out 0 196894 bytes_in 0 196894 station_ip 37.129.77.168 196894 port 8 196894 unique_id port 196894 remote_ip 10.8.1.106 196900 username shahruz 196900 mac 196900 bytes_out 0 196900 bytes_in 0 196900 station_ip 37.129.49.183 196900 port 7 196900 unique_id port 196900 remote_ip 10.8.0.178 196905 username hashtadani5 196905 mac 196905 bytes_out 0 196905 bytes_in 0 196905 station_ip 37.129.77.168 196905 port 8 196905 unique_id port 196905 remote_ip 10.8.1.106 196907 username shahruz 196907 mac 196907 bytes_out 0 196907 bytes_in 0 196907 station_ip 37.129.49.183 196907 port 7 196907 unique_id port 196907 remote_ip 10.8.0.178 196911 username barzegar 196911 mac 196911 bytes_out 0 196911 bytes_in 0 196911 station_ip 5.119.251.17 196911 port 10 196911 unique_id port 196911 remote_ip 10.8.1.138 196915 username hashtadani5 196915 mac 196915 bytes_out 0 196915 bytes_in 0 196915 station_ip 37.129.77.168 196915 port 10 196915 unique_id port 196915 remote_ip 10.8.1.106 196916 username hashtadani5 196916 mac 196916 bytes_out 0 196916 bytes_in 0 196916 station_ip 37.129.77.168 196916 port 9 196916 unique_id port 196916 remote_ip 10.8.0.74 196918 username hashtadani5 196918 mac 196918 bytes_out 0 196918 bytes_in 0 196918 station_ip 37.129.77.168 196918 port 10 196918 unique_id port 196918 remote_ip 10.8.1.106 196927 username hashtadani5 196927 mac 196927 bytes_out 0 196927 bytes_in 0 196927 station_ip 37.129.77.168 196927 port 9 196927 unique_id port 196927 remote_ip 10.8.0.74 196928 username hashtadani5 196928 mac 196928 bytes_out 0 196928 bytes_in 0 196928 station_ip 37.129.77.168 196928 port 9 196928 unique_id port 196928 remote_ip 10.8.0.74 196929 username shahruz 196929 mac 196929 bytes_out 0 196929 bytes_in 0 196867 username shahruz 196867 mac 196867 bytes_out 3273 196867 bytes_in 10613 196867 station_ip 37.129.49.183 196867 port 11 196867 unique_id port 196867 remote_ip 10.8.0.178 196868 username hashtadani5 196868 mac 196868 bytes_out 0 196868 bytes_in 0 196868 station_ip 37.129.77.168 196868 port 9 196868 unique_id port 196868 remote_ip 10.8.0.74 196871 username barzegar 196871 mac 196871 bytes_out 0 196871 bytes_in 0 196871 station_ip 5.119.251.17 196871 port 8 196871 unique_id port 196871 remote_ip 10.8.1.138 196875 username yaghobi 196875 mac 196875 bytes_out 0 196875 bytes_in 0 196875 station_ip 83.122.254.65 196875 port 7 196875 unique_id port 196875 remote_ip 10.8.0.14 196876 username shahruz 196876 mac 196876 bytes_out 1636 196876 bytes_in 5129 196876 station_ip 37.129.49.183 196876 port 9 196876 unique_id port 196876 remote_ip 10.8.0.178 196877 username shahruz 196877 mac 196877 bytes_out 0 196877 bytes_in 0 196877 station_ip 37.129.49.183 196877 port 7 196877 unique_id port 196877 remote_ip 10.8.0.178 196883 username hashtadani5 196883 mac 196883 bytes_out 0 196883 bytes_in 0 196883 station_ip 37.129.77.168 196883 port 8 196883 unique_id port 196883 remote_ip 10.8.1.106 196895 username hashtadani5 196895 mac 196895 bytes_out 0 196895 bytes_in 0 196895 station_ip 37.129.77.168 196895 port 8 196895 unique_id port 196895 remote_ip 10.8.1.106 196896 username shahruz 196896 mac 196896 bytes_out 0 196896 bytes_in 0 196896 station_ip 37.129.49.183 196896 port 9 196896 unique_id port 196896 remote_ip 10.8.0.178 196898 username hashtadani5 196898 mac 196898 bytes_out 0 196898 bytes_in 0 196898 station_ip 37.129.77.168 196898 port 8 196898 unique_id port 196898 remote_ip 10.8.1.106 196899 username hashtadani5 196899 mac 196899 bytes_out 0 196899 bytes_in 0 196899 station_ip 37.129.77.168 196899 port 8 196899 unique_id port 196899 remote_ip 10.8.1.106 196902 username shahruz 196902 mac 196902 bytes_out 0 196902 bytes_in 0 196902 station_ip 37.129.49.183 196902 port 7 196902 unique_id port 196902 remote_ip 10.8.0.178 196903 username hashtadani5 196903 mac 196903 bytes_out 0 196903 bytes_in 0 196903 station_ip 37.129.77.168 196903 port 7 196903 unique_id port 196903 remote_ip 10.8.0.74 196904 username hashtadani5 196904 mac 196904 bytes_out 0 196904 bytes_in 0 196904 station_ip 37.129.77.168 196904 port 8 196904 unique_id port 196904 remote_ip 10.8.1.106 196909 username shahruz 196909 mac 196909 bytes_out 0 196909 bytes_in 0 196909 station_ip 37.129.49.183 196909 port 7 196909 unique_id port 196909 remote_ip 10.8.0.178 196912 username hashtadani5 196912 kill_reason Maximum check online fails reached 196912 mac 196912 bytes_out 0 196912 bytes_in 0 196912 station_ip 37.129.77.168 196912 port 8 196912 unique_id port 196917 username hashtadani5 196917 mac 196917 bytes_out 0 196917 bytes_in 0 196917 station_ip 37.129.77.168 196917 port 9 196917 unique_id port 196917 remote_ip 10.8.0.74 196919 username shahruz 196919 mac 196919 bytes_out 0 196919 bytes_in 0 196919 station_ip 37.129.49.183 196919 port 9 196919 unique_id port 196919 remote_ip 10.8.0.178 196923 username shahruz 196923 mac 196923 bytes_out 0 196923 bytes_in 0 196923 station_ip 37.129.49.183 196923 port 10 196923 unique_id port 196923 remote_ip 10.8.0.178 196925 username shahruz 196925 mac 196925 bytes_out 0 196925 bytes_in 0 196914 bytes_in 0 196914 station_ip 37.129.77.168 196914 port 7 196914 unique_id port 196914 remote_ip 10.8.0.74 196920 username hashtadani5 196920 mac 196920 bytes_out 0 196920 bytes_in 0 196920 station_ip 37.129.77.168 196920 port 10 196920 unique_id port 196920 remote_ip 10.8.1.106 196921 username hashtadani5 196921 mac 196921 bytes_out 0 196921 bytes_in 0 196921 station_ip 37.129.77.168 196921 port 9 196921 unique_id port 196921 remote_ip 10.8.0.74 196922 username hashtadani5 196922 mac 196922 bytes_out 0 196922 bytes_in 0 196922 station_ip 37.129.77.168 196922 port 10 196922 unique_id port 196922 remote_ip 10.8.1.106 196924 username hashtadani5 196924 mac 196924 bytes_out 0 196924 bytes_in 0 196924 station_ip 37.129.77.168 196924 port 9 196924 unique_id port 196924 remote_ip 10.8.0.74 196926 username shahruz 196926 mac 196926 bytes_out 0 196926 bytes_in 0 196926 station_ip 37.129.49.183 196926 port 9 196926 unique_id port 196926 remote_ip 10.8.0.178 196930 username hashtadani5 196930 mac 196930 bytes_out 0 196930 bytes_in 0 196930 station_ip 37.129.77.168 196930 port 9 196930 unique_id port 196930 remote_ip 10.8.0.74 196931 username shahruz 196931 mac 196931 bytes_out 0 196931 bytes_in 0 196931 station_ip 37.129.49.183 196931 port 11 196931 unique_id port 196931 remote_ip 10.8.0.178 196934 username hashtadani5 196934 kill_reason Another user logged on this global unique id 196934 mac 196934 bytes_out 0 196934 bytes_in 0 196934 station_ip 37.129.77.168 196934 port 10 196934 unique_id port 196934 remote_ip 10.8.0.74 196937 username yaghobi 196937 mac 196937 bytes_out 0 196937 bytes_in 0 196937 station_ip 37.129.175.64 196937 port 13 196937 unique_id port 196937 remote_ip 10.8.1.62 196939 username hashtadani5 196939 mac 196939 bytes_out 0 196939 bytes_in 0 196939 station_ip 37.129.77.168 196939 port 10 196939 unique_id port 196939 remote_ip 10.8.0.74 196945 username shahruz 196945 mac 196945 bytes_out 7708 196945 bytes_in 13485 196945 station_ip 37.129.49.183 196945 port 11 196945 unique_id port 196945 remote_ip 10.8.0.178 196948 username hashtadani5 196948 mac 196948 bytes_out 0 196948 bytes_in 0 196948 station_ip 37.129.77.168 196948 port 11 196948 unique_id port 196948 remote_ip 10.8.0.74 196953 username hashtadani5 196953 mac 196953 bytes_out 0 196953 bytes_in 0 196953 station_ip 37.129.77.168 196953 port 10 196953 unique_id port 196953 remote_ip 10.8.0.74 196958 username shahruz 196958 mac 196958 bytes_out 0 196958 bytes_in 0 196958 station_ip 37.129.49.183 196958 port 10 196958 unique_id port 196958 remote_ip 10.8.0.178 196959 username shahruz 196959 mac 196959 bytes_out 0 196959 bytes_in 0 196959 station_ip 37.129.49.183 196959 port 10 196959 unique_id port 196959 remote_ip 10.8.0.178 196961 username shahruz 196961 mac 196961 bytes_out 0 196961 bytes_in 0 196961 station_ip 37.129.49.183 196961 port 10 196961 unique_id port 196961 remote_ip 10.8.0.178 196962 username shahruz 196962 mac 196962 bytes_out 0 196962 bytes_in 0 196962 station_ip 37.129.49.183 196962 port 10 196962 unique_id port 196962 remote_ip 10.8.0.178 196964 username sabaghnezhad 196964 mac 196964 bytes_out 157416 196964 bytes_in 508228 196964 station_ip 37.129.93.27 196964 port 7 196964 unique_id port 196964 remote_ip 10.8.0.26 196971 username hashtadani5 196971 mac 196971 bytes_out 0 196971 bytes_in 0 196971 station_ip 37.129.77.168 196925 station_ip 37.129.49.183 196925 port 11 196925 unique_id port 196925 remote_ip 10.8.0.178 196932 username hashtadani5 196932 mac 196932 bytes_out 0 196932 bytes_in 0 196932 station_ip 37.129.77.168 196932 port 10 196932 unique_id port 196932 remote_ip 10.8.0.74 196935 username barzegar 196935 mac 196935 bytes_out 0 196935 bytes_in 0 196935 station_ip 5.119.251.17 196935 port 10 196935 unique_id port 196935 remote_ip 10.8.1.138 196936 username saeed9658 196936 mac 196936 bytes_out 0 196936 bytes_in 0 196936 station_ip 5.119.62.58 196936 port 10 196936 unique_id port 196936 remote_ip 10.8.1.110 196941 username hashtadani5 196941 mac 196941 bytes_out 0 196941 bytes_in 0 196941 station_ip 37.129.77.168 196941 port 10 196941 unique_id port 196941 remote_ip 10.8.0.74 196943 username hashtadani5 196943 mac 196943 bytes_out 0 196943 bytes_in 0 196943 station_ip 37.129.77.168 196943 port 10 196943 unique_id port 196943 remote_ip 10.8.0.74 196947 username shahruz 196947 mac 196947 bytes_out 1997 196947 bytes_in 4759 196947 station_ip 37.129.49.183 196947 port 10 196947 unique_id port 196947 remote_ip 10.8.0.178 196949 username shahruz 196949 mac 196949 bytes_out 0 196949 bytes_in 0 196949 station_ip 37.129.49.183 196949 port 10 196949 unique_id port 196949 remote_ip 10.8.0.178 196950 username hashtadani5 196950 mac 196950 bytes_out 0 196950 bytes_in 0 196950 station_ip 37.129.77.168 196950 port 10 196950 unique_id port 196950 remote_ip 10.8.0.74 196952 username shahruz 196952 mac 196952 bytes_out 0 196952 bytes_in 0 196952 station_ip 37.129.49.183 196952 port 13 196952 unique_id port 196952 remote_ip 10.8.1.150 196954 username shahruz 196954 mac 196954 bytes_out 0 196954 bytes_in 0 196954 station_ip 37.129.49.183 196954 port 10 196954 unique_id port 196954 remote_ip 10.8.0.178 196955 username hashtadani5 196955 mac 196955 bytes_out 0 196955 bytes_in 0 196955 station_ip 37.129.77.168 196955 port 10 196955 unique_id port 196955 remote_ip 10.8.0.74 196956 username hashtadani5 196956 mac 196956 bytes_out 0 196956 bytes_in 0 196956 station_ip 37.129.77.168 196956 port 10 196956 unique_id port 196956 remote_ip 10.8.0.74 196963 username shahruz 196963 mac 196963 bytes_out 0 196963 bytes_in 0 196963 station_ip 37.129.49.183 196963 port 10 196963 unique_id port 196963 remote_ip 10.8.0.178 196965 username shahruz 196965 mac 196965 bytes_out 0 196965 bytes_in 0 196965 station_ip 37.129.49.183 196965 port 7 196965 unique_id port 196965 remote_ip 10.8.0.178 196966 username hashtadani5 196966 mac 196966 bytes_out 0 196966 bytes_in 0 196966 station_ip 37.129.77.168 196966 port 11 196966 unique_id port 196966 remote_ip 10.8.0.74 196970 username hashtadani5 196970 mac 196970 bytes_out 0 196970 bytes_in 0 196970 station_ip 37.129.77.168 196970 port 7 196970 unique_id port 196970 remote_ip 10.8.0.74 196974 username shahruz 196974 mac 196974 bytes_out 0 196974 bytes_in 0 196974 station_ip 37.129.49.183 196974 port 7 196974 unique_id port 196974 remote_ip 10.8.0.178 196975 username hashtadani5 196975 mac 196975 bytes_out 0 196975 bytes_in 0 196975 station_ip 37.129.77.168 196975 port 7 196975 unique_id port 196975 remote_ip 10.8.0.74 196976 username hashtadani5 196976 mac 196976 bytes_out 0 196976 bytes_in 0 196976 station_ip 37.129.77.168 196976 port 10 196976 unique_id port 196976 remote_ip 10.8.1.106 196929 station_ip 37.129.49.183 196929 port 10 196929 unique_id port 196929 remote_ip 10.8.0.178 196933 username hashtadani5 196933 mac 196933 bytes_out 0 196933 bytes_in 0 196933 station_ip 37.129.77.168 196933 port 10 196933 unique_id port 196933 remote_ip 10.8.0.74 196938 username shahruz 196938 mac 196938 bytes_out 0 196938 bytes_in 0 196938 station_ip 37.129.49.183 196938 port 11 196938 unique_id port 196938 remote_ip 10.8.0.178 196940 username shahruz 196940 kill_reason Maximum check online fails reached 196940 mac 196940 bytes_out 0 196940 bytes_in 0 196940 station_ip 37.129.49.183 196940 port 9 196940 unique_id port 196942 username hashtadani5 196942 mac 196942 bytes_out 0 196942 bytes_in 0 196942 station_ip 37.129.77.168 196942 port 14 196942 unique_id port 196942 remote_ip 10.8.1.106 196944 username hashtadani5 196944 mac 196944 bytes_out 0 196944 bytes_in 0 196944 station_ip 37.129.77.168 196944 port 10 196944 unique_id port 196944 remote_ip 10.8.0.74 196946 username yaghobi 196946 mac 196946 bytes_out 0 196946 bytes_in 0 196946 station_ip 37.129.175.64 196946 port 13 196946 unique_id port 196946 remote_ip 10.8.1.62 196951 username hashtadani5 196951 mac 196951 bytes_out 0 196951 bytes_in 0 196951 station_ip 37.129.77.168 196951 port 10 196951 unique_id port 196951 remote_ip 10.8.0.74 196957 username barzegar 196957 mac 196957 bytes_out 0 196957 bytes_in 0 196957 station_ip 5.119.251.17 196957 port 13 196957 unique_id port 196957 remote_ip 10.8.1.138 196960 username hashtadani5 196960 mac 196960 bytes_out 0 196960 bytes_in 0 196960 station_ip 37.129.77.168 196960 port 11 196960 unique_id port 196960 remote_ip 10.8.0.74 196967 username shahruz 196967 mac 196967 bytes_out 0 196967 bytes_in 0 196967 station_ip 37.129.49.183 196967 port 7 196967 unique_id port 196967 remote_ip 10.8.0.178 196968 username hashtadani5 196968 mac 196968 bytes_out 0 196968 bytes_in 0 196968 station_ip 37.129.77.168 196968 port 7 196968 unique_id port 196968 remote_ip 10.8.0.74 196969 username shahruz 196969 mac 196969 bytes_out 1636 196969 bytes_in 5023 196969 station_ip 37.129.49.183 196969 port 10 196969 unique_id port 196969 remote_ip 10.8.0.178 196972 username shahruz 196972 mac 196972 bytes_out 0 196972 bytes_in 0 196972 station_ip 37.129.49.183 196972 port 10 196972 unique_id port 196972 remote_ip 10.8.0.178 196979 username shahruz 196979 mac 196979 bytes_out 0 196979 bytes_in 0 196979 station_ip 37.129.49.183 196979 port 7 196979 unique_id port 196979 remote_ip 10.8.0.178 196986 username hashtadani5 196986 mac 196986 bytes_out 0 196986 bytes_in 0 196986 station_ip 37.129.77.168 196986 port 7 196986 unique_id port 196986 remote_ip 10.8.0.74 196988 username shahruz 196988 mac 196988 bytes_out 0 196988 bytes_in 0 196988 station_ip 37.129.49.183 196988 port 10 196988 unique_id port 196988 remote_ip 10.8.0.178 196989 username shahruz 196989 mac 196989 bytes_out 0 196989 bytes_in 0 196989 station_ip 37.129.49.183 196989 port 10 196989 unique_id port 196989 remote_ip 10.8.0.178 196992 username shahruz 196992 mac 196992 bytes_out 0 196992 bytes_in 0 196992 station_ip 37.129.49.183 196992 port 11 196992 unique_id port 196992 remote_ip 10.8.0.178 196994 username hashtadani5 196994 kill_reason Another user logged on this global unique id 196994 mac 196994 bytes_out 0 196994 bytes_in 0 196994 station_ip 37.129.77.168 196994 port 7 196971 port 7 196971 unique_id port 196971 remote_ip 10.8.0.74 196973 username hashtadani5 196973 mac 196973 bytes_out 0 196973 bytes_in 0 196973 station_ip 37.129.77.168 196973 port 7 196973 unique_id port 196973 remote_ip 10.8.0.74 196980 username shahruz 196980 mac 196980 bytes_out 0 196980 bytes_in 0 196980 station_ip 37.129.49.183 196980 port 10 196980 unique_id port 196980 remote_ip 10.8.0.178 196981 username barzegar 196981 mac 196981 bytes_out 0 196981 bytes_in 0 196981 station_ip 5.119.251.17 196981 port 10 196981 unique_id port 196981 remote_ip 10.8.1.138 196983 username hashtadani5 196983 mac 196983 bytes_out 0 196983 bytes_in 0 196983 station_ip 37.129.77.168 196983 port 10 196983 unique_id port 196983 remote_ip 10.8.1.106 196991 username shahruz 196991 mac 196991 bytes_out 0 196991 bytes_in 0 196991 station_ip 37.129.49.183 196991 port 10 196991 unique_id port 196991 remote_ip 10.8.0.178 196993 username barzegar 196993 mac 196993 bytes_out 0 196993 bytes_in 0 196993 station_ip 5.119.251.17 196993 port 10 196993 unique_id port 196993 remote_ip 10.8.1.138 196996 username shahruz 196996 mac 196996 bytes_out 0 196996 bytes_in 0 196996 station_ip 37.129.49.183 196996 port 10 196996 unique_id port 196996 remote_ip 10.8.0.178 196997 username hashtadani5 196997 mac 196997 bytes_out 0 196997 bytes_in 0 196997 station_ip 37.129.77.168 196997 port 7 196997 unique_id port 196998 username hashtadani5 196998 mac 196998 bytes_out 0 196998 bytes_in 0 196998 station_ip 37.129.77.168 196998 port 7 196998 unique_id port 196998 remote_ip 10.8.0.74 196999 username hashtadani5 196999 mac 196999 bytes_out 0 196999 bytes_in 0 196999 station_ip 37.129.77.168 196999 port 7 196999 unique_id port 196999 remote_ip 10.8.0.74 197001 username mostafa_es78 197001 unique_id port 197001 terminate_cause User-Request 197001 bytes_out 51484 197001 bytes_in 40827 197001 station_ip 37.129.201.250 197001 port 15729455 197001 nas_port_type Virtual 197001 remote_ip 5.5.5.224 197003 username shahruz 197003 mac 197003 bytes_out 0 197003 bytes_in 0 197003 station_ip 37.129.49.183 197003 port 7 197003 unique_id port 197003 remote_ip 10.8.0.178 197007 username hashtadani5 197007 kill_reason Maximum check online fails reached 197007 mac 197007 bytes_out 0 197007 bytes_in 0 197007 station_ip 37.129.77.168 197007 port 10 197007 unique_id port 197009 username hashtadani5 197009 mac 197009 bytes_out 0 197009 bytes_in 0 197009 station_ip 37.129.77.168 197009 port 7 197009 unique_id port 197009 remote_ip 10.8.0.74 197011 username hashtadani5 197011 kill_reason Maximum number of concurrent logins reached 197011 mac 197011 bytes_out 0 197011 bytes_in 0 197011 station_ip 37.129.77.168 197011 port 7 197011 unique_id port 197013 username hashtadani5 197013 kill_reason Maximum check online fails reached 197013 mac 197013 bytes_out 0 197013 bytes_in 0 197013 station_ip 37.129.77.168 197013 port 13 197013 unique_id port 197017 username shahruz 197017 mac 197017 bytes_out 0 197017 bytes_in 0 197017 station_ip 37.129.49.183 197017 port 17 197017 unique_id port 197017 remote_ip 10.8.1.150 197021 username barzegar 197021 mac 197021 bytes_out 0 197021 bytes_in 0 197021 station_ip 5.119.251.17 197021 port 17 197021 unique_id port 197021 remote_ip 10.8.1.138 197022 username saeed9658 197022 kill_reason Another user logged on this global unique id 197022 mac 197022 bytes_out 0 197022 bytes_in 0 197022 station_ip 5.119.62.58 197022 port 15 196977 username hashtadani5 196977 mac 196977 bytes_out 0 196977 bytes_in 0 196977 station_ip 37.129.77.168 196977 port 7 196977 unique_id port 196977 remote_ip 10.8.0.74 196978 username hashtadani5 196978 mac 196978 bytes_out 0 196978 bytes_in 0 196978 station_ip 37.129.77.168 196978 port 10 196978 unique_id port 196978 remote_ip 10.8.0.74 196982 username hashtadani5 196982 mac 196982 bytes_out 0 196982 bytes_in 0 196982 station_ip 37.129.77.168 196982 port 7 196982 unique_id port 196982 remote_ip 10.8.0.74 196984 username hashtadani5 196984 mac 196984 bytes_out 0 196984 bytes_in 0 196984 station_ip 37.129.77.168 196984 port 10 196984 unique_id port 196984 remote_ip 10.8.1.106 196985 username hashtadani5 196985 mac 196985 bytes_out 0 196985 bytes_in 0 196985 station_ip 37.129.77.168 196985 port 7 196985 unique_id port 196985 remote_ip 10.8.0.74 196987 username shahruz 196987 mac 196987 bytes_out 0 196987 bytes_in 0 196987 station_ip 37.129.49.183 196987 port 10 196987 unique_id port 196987 remote_ip 10.8.1.150 196990 username shahruz 196990 mac 196990 bytes_out 0 196990 bytes_in 0 196990 station_ip 37.129.49.183 196990 port 10 196990 unique_id port 196990 remote_ip 10.8.0.178 197000 username hashtadani5 197000 mac 197000 bytes_out 0 197000 bytes_in 0 197000 station_ip 37.129.77.168 197000 port 7 197000 unique_id port 197000 remote_ip 10.8.0.74 197004 username hashtadani5 197004 mac 197004 bytes_out 0 197004 bytes_in 0 197004 station_ip 37.129.77.168 197004 port 13 197004 unique_id port 197004 remote_ip 10.8.1.106 197010 username hashtadani5 197010 mac 197010 bytes_out 0 197010 bytes_in 0 197010 station_ip 37.129.77.168 197010 port 7 197010 unique_id port 197010 remote_ip 10.8.0.74 197014 username hashtadani5 197014 kill_reason Maximum check online fails reached 197014 mac 197014 bytes_out 0 197014 bytes_in 0 197014 station_ip 37.129.77.168 197014 port 14 197014 unique_id port 197015 username shahruz 197015 kill_reason Maximum check online fails reached 197015 mac 197015 bytes_out 0 197015 bytes_in 0 197015 station_ip 37.129.49.183 197015 port 7 197015 unique_id port 197018 username shahruz 197018 mac 197018 bytes_out 0 197018 bytes_in 0 197018 station_ip 37.129.49.183 197018 port 10 197018 unique_id port 197018 remote_ip 10.8.0.178 197034 username shahruz 197034 mac 197034 bytes_out 0 197034 bytes_in 0 197034 station_ip 37.129.49.183 197034 port 10 197034 unique_id port 197034 remote_ip 10.8.0.178 197036 username barzegar 197036 mac 197036 bytes_out 0 197036 bytes_in 0 197036 station_ip 5.119.251.17 197036 port 18 197036 unique_id port 197036 remote_ip 10.8.1.138 197038 username shahruz 197038 mac 197038 bytes_out 0 197038 bytes_in 0 197038 station_ip 37.129.49.183 197038 port 10 197038 unique_id port 197038 remote_ip 10.8.0.178 197040 username shahruz 197040 mac 197040 bytes_out 0 197040 bytes_in 0 197040 station_ip 37.129.49.183 197040 port 10 197040 unique_id port 197040 remote_ip 10.8.0.178 197042 username shahruz 197042 mac 197042 bytes_out 0 197042 bytes_in 0 197042 station_ip 37.129.49.183 197042 port 10 197042 unique_id port 197042 remote_ip 10.8.0.178 197045 username shahruz 197045 mac 197045 bytes_out 0 197045 bytes_in 0 197045 station_ip 37.129.49.183 197045 port 10 197045 unique_id port 197045 remote_ip 10.8.0.178 197047 username shahruz 197047 mac 197047 bytes_out 0 197047 bytes_in 0 196994 unique_id port 196994 remote_ip 10.8.0.74 196995 username shahruz 196995 mac 196995 bytes_out 0 196995 bytes_in 0 196995 station_ip 37.129.49.183 196995 port 10 196995 unique_id port 196995 remote_ip 10.8.0.178 197002 username hashtadani5 197002 mac 197002 bytes_out 0 197002 bytes_in 0 197002 station_ip 37.129.77.168 197002 port 7 197002 unique_id port 197002 remote_ip 10.8.0.74 197005 username hashtadani5 197005 mac 197005 bytes_out 0 197005 bytes_in 0 197005 station_ip 37.129.77.168 197005 port 7 197005 unique_id port 197005 remote_ip 10.8.0.74 197006 username hashtadani5 197006 mac 197006 bytes_out 0 197006 bytes_in 0 197006 station_ip 37.129.77.168 197006 port 13 197006 unique_id port 197006 remote_ip 10.8.1.106 197008 username hashtadani5 197008 mac 197008 bytes_out 0 197008 bytes_in 0 197008 station_ip 37.129.77.168 197008 port 7 197008 unique_id port 197008 remote_ip 10.8.0.74 197012 username barzegar 197012 mac 197012 bytes_out 0 197012 bytes_in 0 197012 station_ip 5.119.251.17 197012 port 15 197012 unique_id port 197012 remote_ip 10.8.1.138 197016 username mostafa_es78 197016 unique_id port 197016 terminate_cause User-Request 197016 bytes_out 933265 197016 bytes_in 1340697 197016 station_ip 5.202.219.65 197016 port 15729457 197016 nas_port_type Virtual 197016 remote_ip 5.5.5.225 197019 username shahruz 197019 mac 197019 bytes_out 0 197019 bytes_in 0 197019 station_ip 37.129.49.183 197019 port 10 197019 unique_id port 197019 remote_ip 10.8.0.178 197020 username shahruz 197020 mac 197020 bytes_out 0 197020 bytes_in 0 197020 station_ip 37.129.49.183 197020 port 10 197020 unique_id port 197020 remote_ip 10.8.0.178 197024 username saeed9658 197024 kill_reason Another user logged on this global unique id 197024 mac 197024 bytes_out 0 197024 bytes_in 0 197024 station_ip 5.119.62.58 197024 port 15 197024 unique_id port 197025 username shahruz 197025 mac 197025 bytes_out 0 197025 bytes_in 0 197025 station_ip 37.129.49.183 197025 port 10 197025 unique_id port 197025 remote_ip 10.8.0.178 197026 username shahruz 197026 mac 197026 bytes_out 0 197026 bytes_in 0 197026 station_ip 37.129.49.183 197026 port 10 197026 unique_id port 197026 remote_ip 10.8.0.178 197027 username barzegar 197027 mac 197027 bytes_out 0 197027 bytes_in 0 197027 station_ip 5.119.251.17 197027 port 17 197027 unique_id port 197027 remote_ip 10.8.1.138 197028 username shahruz 197028 mac 197028 bytes_out 0 197028 bytes_in 0 197028 station_ip 37.129.49.183 197028 port 10 197028 unique_id port 197028 remote_ip 10.8.0.178 197029 username shahruz 197029 mac 197029 bytes_out 0 197029 bytes_in 0 197029 station_ip 37.129.49.183 197029 port 10 197029 unique_id port 197029 remote_ip 10.8.0.178 197035 username shahruz 197035 mac 197035 bytes_out 0 197035 bytes_in 0 197035 station_ip 37.129.49.183 197035 port 10 197035 unique_id port 197035 remote_ip 10.8.0.178 197043 username barzegar 197043 mac 197043 bytes_out 0 197043 bytes_in 0 197043 station_ip 5.119.251.17 197043 port 17 197043 unique_id port 197043 remote_ip 10.8.1.138 197046 username houshang 197046 mac 197046 bytes_out 892283 197046 bytes_in 13952185 197046 station_ip 5.120.129.62 197046 port 15 197046 unique_id port 197046 remote_ip 10.8.1.154 197049 username barzegar 197049 mac 197049 bytes_out 0 197049 bytes_in 0 197049 station_ip 5.119.251.17 197049 port 15 197049 unique_id port 197049 remote_ip 10.8.1.138 197022 unique_id port 197022 remote_ip 10.8.1.110 197023 username shahruz 197023 mac 197023 bytes_out 0 197023 bytes_in 0 197023 station_ip 37.129.49.183 197023 port 10 197023 unique_id port 197023 remote_ip 10.8.0.178 197030 username saeed9658 197030 mac 197030 bytes_out 0 197030 bytes_in 0 197030 station_ip 5.119.62.58 197030 port 15 197030 unique_id port 197031 username shahruz 197031 mac 197031 bytes_out 0 197031 bytes_in 0 197031 station_ip 37.129.49.183 197031 port 10 197031 unique_id port 197031 remote_ip 10.8.0.178 197032 username barzegar 197032 mac 197032 bytes_out 0 197032 bytes_in 0 197032 station_ip 5.119.251.17 197032 port 17 197032 unique_id port 197032 remote_ip 10.8.1.138 197033 username shahruz 197033 mac 197033 bytes_out 0 197033 bytes_in 0 197033 station_ip 37.129.49.183 197033 port 10 197033 unique_id port 197033 remote_ip 10.8.0.178 197037 username shahruz 197037 mac 197037 bytes_out 0 197037 bytes_in 0 197037 station_ip 37.129.49.183 197037 port 10 197037 unique_id port 197037 remote_ip 10.8.0.178 197039 username aminvpn 197039 mac 197039 bytes_out 0 197039 bytes_in 0 197039 station_ip 5.119.217.235 197039 port 17 197039 unique_id port 197039 remote_ip 10.8.1.14 197041 username shahruz 197041 mac 197041 bytes_out 0 197041 bytes_in 0 197041 station_ip 37.129.49.183 197041 port 17 197041 unique_id port 197041 remote_ip 10.8.1.150 197044 username shahruz 197044 mac 197044 bytes_out 0 197044 bytes_in 0 197044 station_ip 37.129.49.183 197044 port 10 197044 unique_id port 197044 remote_ip 10.8.0.178 197048 username houshang 197048 mac 197048 bytes_out 14345 197048 bytes_in 34140 197048 station_ip 5.120.129.62 197048 port 15 197048 unique_id port 197048 remote_ip 10.8.1.154 197050 username shahruz 197050 mac 197050 bytes_out 0 197050 bytes_in 0 197050 station_ip 37.129.49.183 197050 port 10 197050 unique_id port 197050 remote_ip 10.8.0.178 197054 username houshang 197054 mac 197054 bytes_out 301215 197054 bytes_in 2393637 197054 station_ip 5.120.129.62 197054 port 10 197054 unique_id port 197054 remote_ip 10.8.0.46 197057 username shahruz 197057 kill_reason Maximum check online fails reached 197057 mac 197057 bytes_out 0 197057 bytes_in 0 197057 station_ip 37.129.49.183 197057 port 15 197057 unique_id port 197060 username shahruz 197060 mac 197060 bytes_out 0 197060 bytes_in 0 197060 station_ip 37.129.49.183 197060 port 10 197060 unique_id port 197060 remote_ip 10.8.0.178 197061 username houshang 197061 mac 197061 bytes_out 0 197061 bytes_in 0 197061 station_ip 5.120.129.62 197061 port 18 197061 unique_id port 197061 remote_ip 10.8.1.154 197062 username shahruz 197062 mac 197062 bytes_out 0 197062 bytes_in 0 197062 station_ip 37.129.49.183 197062 port 18 197062 unique_id port 197062 remote_ip 10.8.1.150 197064 username shahruz 197064 mac 197064 bytes_out 0 197064 bytes_in 0 197064 station_ip 37.129.49.183 197064 port 10 197064 unique_id port 197064 remote_ip 10.8.0.178 197065 username shahruz 197065 mac 197065 bytes_out 0 197065 bytes_in 0 197065 station_ip 37.129.49.183 197065 port 11 197065 unique_id port 197065 remote_ip 10.8.0.178 197067 username mosavi0713 197067 mac 197067 bytes_out 0 197067 bytes_in 0 197067 station_ip 83.123.65.230 197067 port 10 197067 unique_id port 197067 remote_ip 10.8.0.182 197073 username barzegar 197073 mac 197073 bytes_out 0 197047 station_ip 37.129.49.183 197047 port 10 197047 unique_id port 197047 remote_ip 10.8.0.178 197058 username barzegar 197058 mac 197058 bytes_out 0 197058 bytes_in 0 197058 station_ip 5.119.251.17 197058 port 17 197058 unique_id port 197058 remote_ip 10.8.1.138 197071 username aminvpn 197071 unique_id port 197071 terminate_cause Lost-Carrier 197071 bytes_out 717221 197071 bytes_in 7682717 197071 station_ip 37.129.241.35 197071 port 15729458 197071 nas_port_type Virtual 197071 remote_ip 5.5.5.226 197072 username shahruz 197072 mac 197072 bytes_out 0 197072 bytes_in 0 197072 station_ip 37.129.49.183 197072 port 10 197072 unique_id port 197072 remote_ip 10.8.0.178 197076 username shahruz 197076 mac 197076 bytes_out 0 197076 bytes_in 0 197076 station_ip 37.129.49.183 197076 port 10 197076 unique_id port 197076 remote_ip 10.8.0.178 197080 username shahruz 197080 mac 197080 bytes_out 0 197080 bytes_in 0 197080 station_ip 37.129.49.183 197080 port 11 197080 unique_id port 197080 remote_ip 10.8.0.178 197081 username shahruz 197081 mac 197081 bytes_out 0 197081 bytes_in 0 197081 station_ip 37.129.49.183 197081 port 11 197081 unique_id port 197081 remote_ip 10.8.0.178 197082 username yaghobi 197082 mac 197082 bytes_out 0 197082 bytes_in 0 197082 station_ip 37.129.74.109 197082 port 10 197082 unique_id port 197082 remote_ip 10.8.0.14 197085 username houshang 197085 mac 197085 bytes_out 616796 197085 bytes_in 3006343 197085 station_ip 5.120.129.62 197085 port 10 197085 unique_id port 197085 remote_ip 10.8.0.46 197088 username shahruz 197088 mac 197088 bytes_out 0 197088 bytes_in 0 197088 station_ip 37.129.49.183 197088 port 13 197088 unique_id port 197088 remote_ip 10.8.0.178 197089 username shahruz 197089 kill_reason Maximum check online fails reached 197089 mac 197089 bytes_out 0 197089 bytes_in 0 197089 station_ip 37.129.49.183 197089 port 12 197089 unique_id port 197091 username barzegar 197091 mac 197091 bytes_out 0 197091 bytes_in 0 197091 station_ip 5.119.251.17 197091 port 19 197091 unique_id port 197091 remote_ip 10.8.1.138 197097 username shahruz 197097 mac 197097 bytes_out 0 197097 bytes_in 0 197097 station_ip 37.129.49.183 197097 port 13 197097 unique_id port 197097 remote_ip 10.8.0.178 197100 username barzegar 197100 mac 197100 bytes_out 0 197100 bytes_in 0 197100 station_ip 5.119.251.17 197100 port 21 197100 unique_id port 197100 remote_ip 10.8.1.138 197103 username kalantary6037 197103 mac 197103 bytes_out 2367367 197103 bytes_in 23480313 197103 station_ip 37.129.37.95 197103 port 14 197103 unique_id port 197103 remote_ip 10.8.0.158 197106 username esmaeili1522 197106 mac 197106 bytes_out 0 197106 bytes_in 0 197106 station_ip 5.120.108.168 197106 port 18 197106 unique_id port 197109 username shahruz 197109 mac 197109 bytes_out 2382 197109 bytes_in 5169 197109 station_ip 37.129.49.183 197109 port 5 197109 unique_id port 197109 remote_ip 10.8.0.178 197111 username barzegar 197111 mac 197111 bytes_out 0 197111 bytes_in 0 197111 station_ip 5.119.251.17 197111 port 18 197111 unique_id port 197111 remote_ip 10.8.1.138 197113 username shahruz 197113 mac 197113 bytes_out 0 197113 bytes_in 0 197113 station_ip 37.129.49.183 197113 port 5 197113 unique_id port 197113 remote_ip 10.8.0.178 197117 username pourshad 197117 mac 197117 bytes_out 0 197117 bytes_in 0 197117 station_ip 5.120.152.228 197117 port 18 197117 unique_id port 197051 username aminvpn 197051 mac 197051 bytes_out 0 197051 bytes_in 0 197051 station_ip 5.119.242.92 197051 port 15 197051 unique_id port 197051 remote_ip 10.8.1.14 197052 username barzegar 197052 mac 197052 bytes_out 0 197052 bytes_in 0 197052 station_ip 5.119.251.17 197052 port 15 197052 unique_id port 197052 remote_ip 10.8.1.138 197053 username zahra1101 197053 mac 197053 bytes_out 159371 197053 bytes_in 720652 197053 station_ip 5.120.92.96 197053 port 15 197053 unique_id port 197053 remote_ip 10.8.1.18 197055 username shahruz 197055 mac 197055 bytes_out 0 197055 bytes_in 0 197055 station_ip 37.129.49.183 197055 port 11 197055 unique_id port 197055 remote_ip 10.8.0.178 197056 username shahruz 197056 mac 197056 bytes_out 1997 197056 bytes_in 4759 197056 station_ip 37.129.49.183 197056 port 10 197056 unique_id port 197056 remote_ip 10.8.0.178 197059 username shahruz 197059 mac 197059 bytes_out 0 197059 bytes_in 0 197059 station_ip 37.129.49.183 197059 port 10 197059 unique_id port 197059 remote_ip 10.8.0.178 197063 username zahra1101 197063 mac 197063 bytes_out 0 197063 bytes_in 0 197063 station_ip 5.119.205.43 197063 port 19 197063 unique_id port 197063 remote_ip 10.8.1.18 197066 username barzegar 197066 mac 197066 bytes_out 0 197066 bytes_in 0 197066 station_ip 5.119.251.17 197066 port 18 197066 unique_id port 197066 remote_ip 10.8.1.138 197068 username shahruz 197068 mac 197068 bytes_out 0 197068 bytes_in 0 197068 station_ip 37.129.49.183 197068 port 10 197068 unique_id port 197068 remote_ip 10.8.0.178 197069 username houshang 197069 mac 197069 bytes_out 0 197069 bytes_in 0 197069 station_ip 5.120.129.62 197069 port 18 197069 unique_id port 197069 remote_ip 10.8.1.154 197070 username shahruz 197070 mac 197070 bytes_out 0 197070 bytes_in 0 197070 station_ip 37.129.49.183 197070 port 18 197070 unique_id port 197070 remote_ip 10.8.1.150 197074 username shahruz 197074 mac 197074 bytes_out 0 197074 bytes_in 0 197074 station_ip 37.129.49.183 197074 port 20 197074 unique_id port 197074 remote_ip 10.8.1.150 197077 username zahra1101 197077 mac 197077 bytes_out 0 197077 bytes_in 0 197077 station_ip 5.119.139.136 197077 port 18 197077 unique_id port 197077 remote_ip 10.8.1.18 197086 username shahruz 197086 kill_reason Maximum check online fails reached 197086 mac 197086 bytes_out 0 197086 bytes_in 0 197086 station_ip 37.129.49.183 197086 port 10 197086 unique_id port 197094 username shahruz 197094 mac 197094 bytes_out 0 197094 bytes_in 0 197094 station_ip 37.129.49.183 197094 port 13 197094 unique_id port 197094 remote_ip 10.8.0.178 197099 username shahruz 197099 mac 197099 bytes_out 0 197099 bytes_in 0 197099 station_ip 37.129.49.183 197099 port 15 197099 unique_id port 197099 remote_ip 10.8.0.178 197101 username esmaeili1522 197101 kill_reason Another user logged on this global unique id 197101 mac 197101 bytes_out 0 197101 bytes_in 0 197101 station_ip 5.120.108.168 197101 port 18 197101 unique_id port 197101 remote_ip 10.8.1.94 197102 username shahruz 197102 mac 197102 bytes_out 0 197102 bytes_in 0 197102 station_ip 37.129.49.183 197102 port 13 197102 unique_id port 197102 remote_ip 10.8.0.178 197107 username barzegar 197107 mac 197107 bytes_out 0 197107 bytes_in 0 197107 station_ip 5.119.251.17 197107 port 13 197107 unique_id port 197107 remote_ip 10.8.0.166 197110 username barzegar 197110 mac 197110 bytes_out 0 197073 bytes_in 0 197073 station_ip 5.119.251.17 197073 port 18 197073 unique_id port 197073 remote_ip 10.8.1.138 197075 username shahruz 197075 mac 197075 bytes_out 0 197075 bytes_in 0 197075 station_ip 37.129.49.183 197075 port 10 197075 unique_id port 197075 remote_ip 10.8.0.178 197078 username dortaj3792 197078 mac 197078 bytes_out 0 197078 bytes_in 0 197078 station_ip 5.119.97.79 197078 port 19 197078 unique_id port 197078 remote_ip 10.8.1.38 197079 username yaghobi 197079 mac 197079 bytes_out 0 197079 bytes_in 0 197079 station_ip 83.123.41.30 197079 port 17 197079 unique_id port 197079 remote_ip 10.8.1.62 197083 username barzegar 197083 mac 197083 bytes_out 0 197083 bytes_in 0 197083 station_ip 5.119.251.17 197083 port 17 197083 unique_id port 197083 remote_ip 10.8.1.138 197084 username shahruz 197084 mac 197084 bytes_out 0 197084 bytes_in 0 197084 station_ip 37.129.49.183 197084 port 10 197084 unique_id port 197084 remote_ip 10.8.0.178 197087 username barzegar 197087 mac 197087 bytes_out 0 197087 bytes_in 0 197087 station_ip 5.119.251.17 197087 port 18 197087 unique_id port 197087 remote_ip 10.8.1.138 197090 username shahruz 197090 mac 197090 bytes_out 2330 197090 bytes_in 5039 197090 station_ip 37.129.49.183 197090 port 13 197090 unique_id port 197090 remote_ip 10.8.0.178 197092 username sobhan 197092 unique_id port 197092 terminate_cause Lost-Carrier 197092 bytes_out 57717 197092 bytes_in 86917 197092 station_ip 5.119.235.86 197092 port 15729459 197092 nas_port_type Virtual 197092 remote_ip 5.5.5.227 197093 username shahruz 197093 mac 197093 bytes_out 2300 197093 bytes_in 4724 197093 station_ip 37.129.49.183 197093 port 13 197093 unique_id port 197093 remote_ip 10.8.0.178 197095 username shahruz 197095 mac 197095 bytes_out 0 197095 bytes_in 0 197095 station_ip 37.129.49.183 197095 port 13 197095 unique_id port 197095 remote_ip 10.8.0.178 197096 username shahruz 197096 kill_reason Maximum check online fails reached 197096 mac 197096 bytes_out 0 197096 bytes_in 0 197096 station_ip 37.129.49.183 197096 port 20 197096 unique_id port 197098 username shahruz 197098 mac 197098 bytes_out 0 197098 bytes_in 0 197098 station_ip 37.129.49.183 197098 port 13 197098 unique_id port 197098 remote_ip 10.8.0.178 197104 username shahruz 197104 mac 197104 bytes_out 2212 197104 bytes_in 4609 197104 station_ip 37.129.49.183 197104 port 13 197104 unique_id port 197104 remote_ip 10.8.0.178 197105 username pourshad 197105 mac 197105 bytes_out 0 197105 bytes_in 0 197105 station_ip 5.120.152.228 197105 port 19 197105 unique_id port 197105 remote_ip 10.8.1.46 197108 username alipour1506 197108 mac 197108 bytes_out 0 197108 bytes_in 0 197108 station_ip 151.234.23.177 197108 port 5 197108 unique_id port 197112 username pourshad 197112 mac 197112 bytes_out 0 197112 bytes_in 0 197112 station_ip 5.120.152.228 197112 port 19 197112 unique_id port 197112 remote_ip 10.8.1.46 197114 username rashidi4690 197114 mac 197114 bytes_out 0 197114 bytes_in 0 197114 station_ip 5.120.100.183 197114 port 21 197114 unique_id port 197114 remote_ip 10.8.1.142 197115 username pourshad 197115 mac 197115 bytes_out 0 197115 bytes_in 0 197115 station_ip 5.120.152.228 197115 port 18 197115 unique_id port 197115 remote_ip 10.8.1.46 197116 username shahruz 197116 mac 197116 bytes_out 0 197116 bytes_in 0 197116 station_ip 37.129.49.183 197116 port 14 197116 unique_id port 197110 bytes_in 0 197110 station_ip 5.119.251.17 197110 port 18 197110 unique_id port 197110 remote_ip 10.8.1.138 197122 username barzegar 197122 mac 197122 bytes_out 96404 197122 bytes_in 156700 197122 station_ip 5.119.251.17 197122 port 19 197122 unique_id port 197122 remote_ip 10.8.1.138 197126 username shahruz 197126 kill_reason Maximum check online fails reached 197126 mac 197126 bytes_out 0 197126 bytes_in 0 197126 station_ip 37.129.49.183 197126 port 14 197126 unique_id port 197132 username sekonji0496 197132 mac 197132 bytes_out 393896 197132 bytes_in 5170600 197132 station_ip 83.123.1.31 197132 port 16 197132 unique_id port 197132 remote_ip 10.8.0.98 197134 username hamid.e 197134 unique_id port 197134 terminate_cause User-Request 197134 bytes_out 1804013 197134 bytes_in 48168629 197134 station_ip 37.27.30.52 197134 port 15729461 197134 nas_port_type Virtual 197134 remote_ip 5.5.5.229 197135 username pourshad 197135 mac 197135 bytes_out 0 197135 bytes_in 0 197135 station_ip 5.120.152.228 197135 port 22 197135 unique_id port 197135 remote_ip 10.8.1.46 197136 username shahruz 197136 mac 197136 bytes_out 0 197136 bytes_in 0 197136 station_ip 37.129.49.183 197136 port 16 197136 unique_id port 197136 remote_ip 10.8.0.178 197137 username shahruz 197137 mac 197137 bytes_out 0 197137 bytes_in 0 197137 station_ip 37.129.49.183 197137 port 16 197137 unique_id port 197137 remote_ip 10.8.0.178 197141 username shahruz 197141 kill_reason Maximum check online fails reached 197141 mac 197141 bytes_out 0 197141 bytes_in 0 197141 station_ip 37.129.49.183 197141 port 15 197141 unique_id port 197145 username shahruz 197145 mac 197145 bytes_out 0 197145 bytes_in 0 197145 station_ip 37.129.49.183 197145 port 23 197145 unique_id port 197145 remote_ip 10.8.1.150 197147 username shahruz 197147 mac 197147 bytes_out 0 197147 bytes_in 0 197147 station_ip 37.129.49.183 197147 port 19 197147 unique_id port 197147 remote_ip 10.8.0.178 197150 username barzegar 197150 mac 197150 bytes_out 0 197150 bytes_in 0 197150 station_ip 5.119.251.17 197150 port 18 197150 unique_id port 197150 remote_ip 10.8.1.138 197151 username rashidi4690 197151 mac 197151 bytes_out 0 197151 bytes_in 0 197151 station_ip 5.120.100.183 197151 port 22 197151 unique_id port 197151 remote_ip 10.8.1.142 197155 username shahruz 197155 mac 197155 bytes_out 0 197155 bytes_in 0 197155 station_ip 37.129.49.183 197155 port 17 197155 unique_id port 197155 remote_ip 10.8.0.178 197160 username sekonji0496 197160 mac 197160 bytes_out 4581583 197160 bytes_in 28067419 197160 station_ip 83.123.1.31 197160 port 17 197160 unique_id port 197160 remote_ip 10.8.0.98 197165 username shahruz 197165 mac 197165 bytes_out 5000129 197165 bytes_in 31601275 197165 station_ip 37.129.49.183 197165 port 17 197165 unique_id port 197165 remote_ip 10.8.0.178 197166 username barzegar 197166 mac 197166 bytes_out 5053576 197166 bytes_in 31710774 197166 station_ip 5.119.251.17 197166 port 17 197166 unique_id port 197166 remote_ip 10.8.0.166 197167 username nilufarrajaei 197167 mac 197167 bytes_out 0 197167 bytes_in 0 197167 station_ip 37.129.97.171 197167 port 19 197167 unique_id port 197167 remote_ip 10.8.0.170 197168 username sekonji0496 197168 mac 197168 bytes_out 2454 197168 bytes_in 4597 197168 station_ip 83.123.1.31 197168 port 17 197168 unique_id port 197168 remote_ip 10.8.0.98 197172 username shahruz 197172 mac 197172 bytes_out 0 197172 bytes_in 0 197116 remote_ip 10.8.0.178 197118 username shahruz 197118 mac 197118 bytes_out 0 197118 bytes_in 0 197118 station_ip 37.129.49.183 197118 port 14 197118 unique_id port 197118 remote_ip 10.8.0.178 197120 username pourshad 197120 mac 197120 bytes_out 0 197120 bytes_in 0 197120 station_ip 5.120.152.228 197120 port 21 197120 unique_id port 197120 remote_ip 10.8.1.46 197124 username dortaj3792 197124 mac 197124 bytes_out 0 197124 bytes_in 0 197124 station_ip 5.119.97.79 197124 port 17 197124 unique_id port 197124 remote_ip 10.8.1.38 197125 username barzegar 197125 mac 197125 bytes_out 0 197125 bytes_in 0 197125 station_ip 5.119.251.17 197125 port 17 197125 unique_id port 197125 remote_ip 10.8.1.138 197129 username shahruz 197129 mac 197129 bytes_out 0 197129 bytes_in 0 197129 station_ip 37.129.49.183 197129 port 17 197129 unique_id port 197129 remote_ip 10.8.1.150 197130 username shahruz 197130 mac 197130 bytes_out 0 197130 bytes_in 0 197130 station_ip 37.129.49.183 197130 port 17 197130 unique_id port 197130 remote_ip 10.8.0.178 197133 username sekonji0496 197133 mac 197133 bytes_out 0 197133 bytes_in 0 197133 station_ip 83.123.1.31 197133 port 16 197133 unique_id port 197133 remote_ip 10.8.0.98 197140 username barzegar 197140 mac 197140 bytes_out 585094 197140 bytes_in 4731201 197140 station_ip 5.119.251.17 197140 port 15 197140 unique_id port 197140 remote_ip 10.8.0.166 197142 username godarzi 197142 kill_reason Another user logged on this global unique id 197142 mac 197142 bytes_out 0 197142 bytes_in 0 197142 station_ip 45.84.157.190 197142 port 17 197142 unique_id port 197142 remote_ip 10.8.1.22 197144 username hatami 197144 kill_reason Another user logged on this global unique id 197144 mac 197144 bytes_out 0 197144 bytes_in 0 197144 station_ip 151.235.113.109 197144 port 18 197144 unique_id port 197144 remote_ip 10.8.1.158 197154 username barzegar 197154 mac 197154 bytes_out 1637138 197154 bytes_in 11272431 197154 station_ip 5.119.251.17 197154 port 18 197154 unique_id port 197154 remote_ip 10.8.1.138 197159 username sekonji0496 197159 mac 197159 bytes_out 0 197159 bytes_in 0 197159 station_ip 83.123.1.31 197159 port 17 197159 unique_id port 197159 remote_ip 10.8.0.98 197161 username sekonji0496 197161 mac 197161 bytes_out 2202 197161 bytes_in 4350 197161 station_ip 83.123.1.31 197161 port 17 197161 unique_id port 197161 remote_ip 10.8.0.98 197169 username aminvpn 197169 unique_id port 197169 terminate_cause Lost-Carrier 197169 bytes_out 765555 197169 bytes_in 2332523 197169 station_ip 37.129.236.63 197169 port 15729460 197169 nas_port_type Virtual 197169 remote_ip 5.5.5.228 197170 username shahruz 197170 mac 197170 bytes_out 0 197170 bytes_in 0 197170 station_ip 37.129.49.183 197170 port 17 197170 unique_id port 197170 remote_ip 10.8.0.178 197175 username sekonji0496 197175 mac 197175 bytes_out 0 197175 bytes_in 0 197175 station_ip 83.123.1.31 197175 port 16 197175 unique_id port 197175 remote_ip 10.8.0.98 197178 username rashidi4690 197178 kill_reason Another user logged on this global unique id 197178 mac 197178 bytes_out 0 197178 bytes_in 0 197178 station_ip 113.203.63.241 197178 port 19 197178 unique_id port 197178 remote_ip 10.8.1.142 197180 username shahruz 197180 mac 197180 bytes_out 0 197180 bytes_in 0 197180 station_ip 37.129.49.183 197180 port 19 197180 unique_id port 197180 remote_ip 10.8.0.178 197181 username shahruz 197181 mac 197181 bytes_out 0 197181 bytes_in 0 197117 remote_ip 10.8.1.46 197119 username shahruz 197119 mac 197119 bytes_out 0 197119 bytes_in 0 197119 station_ip 37.129.49.183 197119 port 14 197119 unique_id port 197119 remote_ip 10.8.0.178 197121 username pourshad 197121 mac 197121 bytes_out 15731 197121 bytes_in 24391 197121 station_ip 5.120.152.228 197121 port 21 197121 unique_id port 197121 remote_ip 10.8.1.46 197123 username shahruz 197123 mac 197123 bytes_out 0 197123 bytes_in 0 197123 station_ip 37.129.49.183 197123 port 14 197123 unique_id port 197123 remote_ip 10.8.0.178 197127 username nilufarrajaei 197127 kill_reason Another user logged on this global unique id 197127 mac 197127 bytes_out 0 197127 bytes_in 0 197127 station_ip 37.129.97.171 197127 port 11 197127 unique_id port 197127 remote_ip 10.8.0.170 197128 username kalantary6037 197128 kill_reason Another user logged on this global unique id 197128 mac 197128 bytes_out 0 197128 bytes_in 0 197128 station_ip 37.129.25.15 197128 port 5 197128 unique_id port 197128 remote_ip 10.8.0.158 197131 username kalantary6037 197131 mac 197131 bytes_out 0 197131 bytes_in 0 197131 station_ip 37.129.25.15 197131 port 5 197131 unique_id port 197138 username nilufarrajaei 197138 kill_reason Another user logged on this global unique id 197138 mac 197138 bytes_out 0 197138 bytes_in 0 197138 station_ip 37.129.97.171 197138 port 11 197138 unique_id port 197139 username dortaj3792 197139 mac 197139 bytes_out 0 197139 bytes_in 0 197139 station_ip 5.119.97.79 197139 port 17 197139 unique_id port 197139 remote_ip 10.8.1.38 197143 username nilufarrajaei 197143 mac 197143 bytes_out 0 197143 bytes_in 0 197143 station_ip 37.129.97.171 197143 port 11 197143 unique_id port 197146 username pourshad 197146 kill_reason Another user logged on this global unique id 197146 mac 197146 bytes_out 0 197146 bytes_in 0 197146 station_ip 5.120.1.82 197146 port 19 197146 unique_id port 197146 remote_ip 10.8.1.46 197148 username kharazmi2920 197148 mac 197148 bytes_out 262648 197148 bytes_in 1392484 197148 station_ip 83.122.84.141 197148 port 18 197148 unique_id port 197148 remote_ip 10.8.0.134 197149 username shahruz 197149 mac 197149 bytes_out 0 197149 bytes_in 0 197149 station_ip 37.129.49.183 197149 port 19 197149 unique_id port 197149 remote_ip 10.8.0.178 197152 username barzegar 197152 mac 197152 bytes_out 0 197152 bytes_in 0 197152 station_ip 5.119.251.17 197152 port 18 197152 unique_id port 197152 remote_ip 10.8.1.138 197153 username nilufarrajaei 197153 mac 197153 bytes_out 2062620 197153 bytes_in 19952637 197153 station_ip 37.129.97.171 197153 port 17 197153 unique_id port 197153 remote_ip 10.8.0.170 197156 username shahruz 197156 mac 197156 bytes_out 0 197156 bytes_in 0 197156 station_ip 37.129.49.183 197156 port 20 197156 unique_id port 197156 remote_ip 10.8.0.178 197157 username shahruz 197157 mac 197157 bytes_out 0 197157 bytes_in 0 197157 station_ip 37.129.49.183 197157 port 17 197157 unique_id port 197157 remote_ip 10.8.0.178 197158 username sekonji0496 197158 mac 197158 bytes_out 1806403 197158 bytes_in 15817984 197158 station_ip 83.123.1.31 197158 port 16 197158 unique_id port 197158 remote_ip 10.8.0.98 197162 username shahruz 197162 mac 197162 bytes_out 10567 197162 bytes_in 31862 197162 station_ip 37.129.49.183 197162 port 20 197162 unique_id port 197162 remote_ip 10.8.0.178 197163 username sekonji0496 197163 mac 197163 bytes_out 0 197163 bytes_in 0 197163 station_ip 83.123.1.31 197163 port 17 197163 unique_id port 197163 remote_ip 10.8.0.98 197164 username barzegar 197164 mac 197164 bytes_out 3645619 197164 bytes_in 38191053 197164 station_ip 5.119.251.17 197164 port 18 197164 unique_id port 197164 remote_ip 10.8.1.138 197171 username shahruz 197171 mac 197171 bytes_out 0 197171 bytes_in 0 197171 station_ip 37.129.49.183 197171 port 17 197171 unique_id port 197171 remote_ip 10.8.0.178 197174 username barzegar 197174 mac 197174 bytes_out 3745947 197174 bytes_in 39403035 197174 station_ip 5.119.251.17 197174 port 18 197174 unique_id port 197174 remote_ip 10.8.1.138 197176 username rashidi4690 197176 mac 197176 bytes_out 707604 197176 bytes_in 5138320 197176 station_ip 5.120.100.183 197176 port 22 197176 unique_id port 197176 remote_ip 10.8.1.142 197179 username barzegar 197179 mac 197179 bytes_out 0 197179 bytes_in 0 197179 station_ip 5.119.251.17 197179 port 22 197179 unique_id port 197179 remote_ip 10.8.1.138 197183 username alipour1506 197183 mac 197183 bytes_out 6137628 197183 bytes_in 42407630 197183 station_ip 83.122.201.20 197183 port 17 197183 unique_id port 197183 remote_ip 10.8.0.114 197188 username hamid1430 197188 mac 197188 bytes_out 1404292 197188 bytes_in 6744350 197188 station_ip 37.129.214.190 197188 port 11 197188 unique_id port 197188 remote_ip 10.8.0.42 197191 username shahruz 197191 mac 197191 bytes_out 0 197191 bytes_in 0 197191 station_ip 37.129.49.183 197191 port 11 197191 unique_id port 197191 remote_ip 10.8.0.178 197196 username nilufarrajaei 197196 mac 197196 bytes_out 54258 197196 bytes_in 102093 197196 station_ip 37.129.97.171 197196 port 16 197196 unique_id port 197196 remote_ip 10.8.0.170 197197 username sekonji0496 197197 mac 197197 bytes_out 1934 197197 bytes_in 4066 197197 station_ip 83.123.1.31 197197 port 11 197197 unique_id port 197197 remote_ip 10.8.0.98 197200 username shahruz 197200 mac 197200 bytes_out 2265 197200 bytes_in 4927 197200 station_ip 37.129.49.183 197200 port 11 197200 unique_id port 197200 remote_ip 10.8.0.178 197201 username sekonji0496 197201 mac 197201 bytes_out 0 197201 bytes_in 0 197201 station_ip 83.123.1.31 197201 port 11 197201 unique_id port 197201 remote_ip 10.8.0.98 197206 username rashidi4690 197206 kill_reason Another user logged on this global unique id 197206 mac 197206 bytes_out 0 197206 bytes_in 0 197206 station_ip 113.203.63.241 197206 port 19 197206 unique_id port 197212 username shahruz 197212 kill_reason Maximum check online fails reached 197212 mac 197212 bytes_out 0 197212 bytes_in 0 197212 station_ip 37.129.49.183 197212 port 24 197212 unique_id port 197214 username shahruz 197214 mac 197214 bytes_out 0 197214 bytes_in 0 197214 station_ip 37.129.49.183 197214 port 25 197214 unique_id port 197214 remote_ip 10.8.1.150 197216 username barzegar 197216 mac 197216 bytes_out 4367 197216 bytes_in 6934 197216 station_ip 5.119.251.17 197216 port 22 197216 unique_id port 197216 remote_ip 10.8.1.138 197222 username shahruz 197222 mac 197222 bytes_out 0 197222 bytes_in 0 197222 station_ip 37.129.49.183 197222 port 5 197222 unique_id port 197222 remote_ip 10.8.0.178 197234 username rajaei 197234 kill_reason Another user logged on this global unique id 197234 mac 197234 bytes_out 0 197234 bytes_in 0 197234 station_ip 89.34.56.7 197234 port 18 197234 unique_id port 197240 username shahruz 197240 mac 197240 bytes_out 0 197240 bytes_in 0 197240 station_ip 37.129.49.183 197240 port 13 197240 unique_id port 197240 remote_ip 10.8.0.178 197172 station_ip 37.129.49.183 197172 port 17 197172 unique_id port 197172 remote_ip 10.8.0.178 197173 username yaghobi 197173 mac 197173 bytes_out 0 197173 bytes_in 0 197173 station_ip 37.129.6.124 197173 port 16 197173 unique_id port 197173 remote_ip 10.8.0.14 197177 username alipour1506 197177 mac 197177 bytes_out 327054 197177 bytes_in 1011147 197177 station_ip 83.122.201.20 197177 port 13 197177 unique_id port 197177 remote_ip 10.8.0.114 197184 username sekonji0496 197184 mac 197184 bytes_out 0 197184 bytes_in 0 197184 station_ip 83.123.1.31 197184 port 13 197184 unique_id port 197184 remote_ip 10.8.0.98 197186 username yaghobi 197186 mac 197186 bytes_out 0 197186 bytes_in 0 197186 station_ip 37.129.40.59 197186 port 18 197186 unique_id port 197186 remote_ip 10.8.1.62 197189 username shahruz 197189 mac 197189 bytes_out 0 197189 bytes_in 0 197189 station_ip 37.129.49.183 197189 port 18 197189 unique_id port 197189 remote_ip 10.8.1.150 197193 username sekonji0496 197193 mac 197193 bytes_out 0 197193 bytes_in 0 197193 station_ip 83.123.1.31 197193 port 11 197193 unique_id port 197193 remote_ip 10.8.0.98 197198 username sekonji0496 197198 mac 197198 bytes_out 0 197198 bytes_in 0 197198 station_ip 83.123.1.31 197198 port 11 197198 unique_id port 197198 remote_ip 10.8.0.98 197199 username shahruz 197199 mac 197199 bytes_out 0 197199 bytes_in 0 197199 station_ip 37.129.49.183 197199 port 11 197199 unique_id port 197199 remote_ip 10.8.0.178 197202 username rajaei 197202 kill_reason Another user logged on this global unique id 197202 mac 197202 bytes_out 0 197202 bytes_in 0 197202 station_ip 89.34.56.7 197202 port 18 197202 unique_id port 197202 remote_ip 10.8.1.162 197203 username alipour1506 197203 mac 197203 bytes_out 93475 197203 bytes_in 567120 197203 station_ip 83.122.201.20 197203 port 16 197203 unique_id port 197203 remote_ip 10.8.0.114 197204 username motamedi9772 197204 mac 197204 bytes_out 0 197204 bytes_in 0 197204 station_ip 37.129.248.188 197204 port 17 197204 unique_id port 197204 remote_ip 10.8.0.54 197207 username barzegar 197207 mac 197207 bytes_out 13569 197207 bytes_in 26883 197207 station_ip 5.119.251.17 197207 port 22 197207 unique_id port 197207 remote_ip 10.8.1.138 197208 username shahruz 197208 mac 197208 bytes_out 2265 197208 bytes_in 4662 197208 station_ip 37.129.49.183 197208 port 16 197208 unique_id port 197208 remote_ip 10.8.0.178 197210 username motamedi9772 197210 mac 197210 bytes_out 126157 197210 bytes_in 323181 197210 station_ip 37.129.248.188 197210 port 17 197210 unique_id port 197210 remote_ip 10.8.0.54 197211 username shahruz 197211 mac 197211 bytes_out 1636 197211 bytes_in 5076 197211 station_ip 37.129.49.183 197211 port 16 197211 unique_id port 197211 remote_ip 10.8.0.178 197213 username kharazmi2920 197213 kill_reason Another user logged on this global unique id 197213 mac 197213 bytes_out 0 197213 bytes_in 0 197213 station_ip 83.122.84.141 197213 port 18 197213 unique_id port 197217 username shahruz 197217 mac 197217 bytes_out 0 197217 bytes_in 0 197217 station_ip 37.129.49.183 197217 port 16 197217 unique_id port 197217 remote_ip 10.8.0.178 197227 username shahruz 197227 mac 197227 bytes_out 1997 197227 bytes_in 4547 197227 station_ip 37.129.49.183 197227 port 5 197227 unique_id port 197227 remote_ip 10.8.0.178 197229 username godarzi 197229 kill_reason Another user logged on this global unique id 197229 mac 197229 bytes_out 0 197181 station_ip 37.129.49.183 197181 port 19 197181 unique_id port 197181 remote_ip 10.8.0.178 197182 username barzegar 197182 mac 197182 bytes_out 0 197182 bytes_in 0 197182 station_ip 5.119.251.17 197182 port 22 197182 unique_id port 197182 remote_ip 10.8.1.138 197185 username yaghobi 197185 kill_reason Maximum number of concurrent logins reached 197185 mac 197185 bytes_out 0 197185 bytes_in 0 197185 station_ip 37.129.191.161 197185 port 22 197185 unique_id port 197187 username sekonji0496 197187 mac 197187 bytes_out 2986 197187 bytes_in 4598 197187 station_ip 83.123.1.31 197187 port 17 197187 unique_id port 197187 remote_ip 10.8.0.98 197190 username shahruz 197190 mac 197190 bytes_out 0 197190 bytes_in 0 197190 station_ip 37.129.49.183 197190 port 11 197190 unique_id port 197190 remote_ip 10.8.0.178 197192 username barzegar 197192 mac 197192 bytes_out 0 197192 bytes_in 0 197192 station_ip 5.119.251.17 197192 port 18 197192 unique_id port 197192 remote_ip 10.8.1.138 197194 username alipour1506 197194 mac 197194 bytes_out 0 197194 bytes_in 0 197194 station_ip 83.122.201.20 197194 port 19 197194 unique_id port 197194 remote_ip 10.8.0.114 197195 username alipour1506 197195 mac 197195 bytes_out 1764 197195 bytes_in 5194 197195 station_ip 83.122.201.20 197195 port 11 197195 unique_id port 197195 remote_ip 10.8.0.114 197205 username alipour1506 197205 mac 197205 bytes_out 0 197205 bytes_in 0 197205 station_ip 83.122.201.20 197205 port 11 197205 unique_id port 197205 remote_ip 10.8.0.114 197209 username shahruz 197209 mac 197209 bytes_out 0 197209 bytes_in 0 197209 station_ip 37.129.49.183 197209 port 16 197209 unique_id port 197209 remote_ip 10.8.0.178 197215 username kalantary6037 197215 kill_reason Another user logged on this global unique id 197215 mac 197215 bytes_out 0 197215 bytes_in 0 197215 station_ip 37.129.25.175 197215 port 19 197215 unique_id port 197215 remote_ip 10.8.0.158 197218 username shahruz 197218 mac 197218 bytes_out 0 197218 bytes_in 0 197218 station_ip 37.129.49.183 197218 port 16 197218 unique_id port 197218 remote_ip 10.8.0.178 197219 username mostafa_es78 197219 mac 197219 bytes_out 2020192 197219 bytes_in 23266848 197219 station_ip 37.129.0.132 197219 port 5 197219 unique_id port 197219 remote_ip 10.8.0.50 197220 username barzegar 197220 mac 197220 bytes_out 0 197220 bytes_in 0 197220 station_ip 5.119.251.17 197220 port 22 197220 unique_id port 197220 remote_ip 10.8.1.138 197221 username shahruz 197221 mac 197221 bytes_out 0 197221 bytes_in 0 197221 station_ip 37.129.49.183 197221 port 5 197221 unique_id port 197221 remote_ip 10.8.0.178 197223 username nilufarrajaei 197223 mac 197223 bytes_out 81445 197223 bytes_in 121371 197223 station_ip 37.129.97.171 197223 port 13 197223 unique_id port 197223 remote_ip 10.8.0.170 197224 username rashidi4690 197224 mac 197224 bytes_out 0 197224 bytes_in 0 197224 station_ip 113.203.63.241 197224 port 19 197224 unique_id port 197225 username nilufarrajaei 197225 mac 197225 bytes_out 18047 197225 bytes_in 73994 197225 station_ip 37.129.97.171 197225 port 5 197225 unique_id port 197225 remote_ip 10.8.0.170 197226 username malekpoir 197226 mac 197226 bytes_out 3631789 197226 bytes_in 36894119 197226 station_ip 5.120.129.238 197226 port 23 197226 unique_id port 197226 remote_ip 10.8.1.6 197228 username barzegar 197228 mac 197228 bytes_out 0 197228 bytes_in 0 197228 station_ip 5.119.251.17 197228 port 22 197228 unique_id port 197228 remote_ip 10.8.1.138 197230 username nilufarrajaei 197230 mac 197230 bytes_out 19281 197230 bytes_in 37987 197230 station_ip 37.129.97.171 197230 port 13 197230 unique_id port 197230 remote_ip 10.8.0.170 197233 username shahruz 197233 mac 197233 bytes_out 0 197233 bytes_in 0 197233 station_ip 37.129.49.183 197233 port 13 197233 unique_id port 197233 remote_ip 10.8.0.178 197236 username shahruz 197236 mac 197236 bytes_out 0 197236 bytes_in 0 197236 station_ip 37.129.49.183 197236 port 13 197236 unique_id port 197236 remote_ip 10.8.0.178 197237 username nilufarrajaei 197237 mac 197237 bytes_out 48301 197237 bytes_in 202866 197237 station_ip 37.129.97.171 197237 port 17 197237 unique_id port 197237 remote_ip 10.8.0.170 197241 username rajaei 197241 mac 197241 bytes_out 0 197241 bytes_in 0 197241 station_ip 89.34.56.7 197241 port 18 197241 unique_id port 197248 username kalantary6037 197248 mac 197248 bytes_out 659311 197248 bytes_in 6267599 197248 station_ip 37.129.86.115 197248 port 13 197248 unique_id port 197248 remote_ip 10.8.0.158 197250 username barzegar 197250 mac 197250 bytes_out 0 197250 bytes_in 0 197250 station_ip 5.119.251.17 197250 port 23 197250 unique_id port 197250 remote_ip 10.8.1.138 197251 username meysam 197251 kill_reason Another user logged on this global unique id 197251 mac 197251 bytes_out 0 197251 bytes_in 0 197251 station_ip 188.159.252.14 197251 port 22 197251 unique_id port 197251 remote_ip 10.8.1.74 197257 username yaghobi 197257 mac 197257 bytes_out 8809617 197257 bytes_in 61172475 197257 station_ip 83.123.246.84 197257 port 17 197257 unique_id port 197257 remote_ip 10.8.0.14 197259 username barzegar 197259 mac 197259 bytes_out 0 197259 bytes_in 0 197259 station_ip 5.119.251.17 197259 port 23 197259 unique_id port 197259 remote_ip 10.8.1.138 197260 username fezealinaghi 197260 kill_reason Another user logged on this global unique id 197260 mac 197260 bytes_out 0 197260 bytes_in 0 197260 station_ip 37.129.28.134 197260 port 5 197260 unique_id port 197260 remote_ip 10.8.0.154 197264 username meysam 197264 mac 197264 bytes_out 0 197264 bytes_in 0 197264 station_ip 188.159.252.14 197264 port 22 197264 unique_id port 197269 username shahruz 197269 mac 197269 bytes_out 0 197269 bytes_in 0 197269 station_ip 37.129.49.183 197269 port 19 197269 unique_id port 197269 remote_ip 10.8.1.150 197271 username shahruz 197271 mac 197271 bytes_out 0 197271 bytes_in 0 197271 station_ip 37.129.49.183 197271 port 11 197271 unique_id port 197271 remote_ip 10.8.0.178 197273 username shahruz 197273 kill_reason Maximum number of concurrent logins reached 197273 mac 197273 bytes_out 0 197273 bytes_in 0 197273 station_ip 37.129.49.183 197273 port 18 197273 unique_id port 197278 username alirezazadeh 197278 unique_id port 197278 terminate_cause Lost-Carrier 197278 bytes_out 548 197278 bytes_in 188 197278 station_ip 5.120.151.39 197278 port 15729464 197278 nas_port_type Virtual 197278 remote_ip 5.5.5.231 197279 username barzegar 197279 mac 197279 bytes_out 825260 197279 bytes_in 8228571 197279 station_ip 5.119.251.17 197279 port 18 197279 unique_id port 197279 remote_ip 10.8.1.138 197283 username mosi 197283 mac 197283 bytes_out 1196174 197283 bytes_in 5414359 197283 station_ip 5.233.55.78 197283 port 25 197283 unique_id port 197283 remote_ip 10.8.1.78 197287 username soleymani5056 197287 mac 197287 bytes_out 353174 197287 bytes_in 691046 197287 station_ip 5.119.190.194 197287 port 23 197229 bytes_in 0 197229 station_ip 45.84.157.190 197229 port 17 197229 unique_id port 197231 username barzegar 197231 mac 197231 bytes_out 0 197231 bytes_in 0 197231 station_ip 5.119.251.17 197231 port 22 197231 unique_id port 197231 remote_ip 10.8.1.138 197232 username shahruz 197232 mac 197232 bytes_out 0 197232 bytes_in 0 197232 station_ip 37.129.49.183 197232 port 13 197232 unique_id port 197232 remote_ip 10.8.0.178 197235 username rashidi4690 197235 kill_reason Another user logged on this global unique id 197235 mac 197235 bytes_out 0 197235 bytes_in 0 197235 station_ip 113.203.63.241 197235 port 19 197235 unique_id port 197238 username shahruz 197238 mac 197238 bytes_out 0 197238 bytes_in 0 197238 station_ip 37.129.49.183 197238 port 19 197238 unique_id port 197238 remote_ip 10.8.0.178 197239 username barzegar 197239 mac 197239 bytes_out 0 197239 bytes_in 0 197239 station_ip 5.119.251.17 197239 port 23 197239 unique_id port 197239 remote_ip 10.8.1.138 197242 username barzegar 197242 mac 197242 bytes_out 0 197242 bytes_in 0 197242 station_ip 5.119.251.17 197242 port 23 197242 unique_id port 197242 remote_ip 10.8.1.138 197243 username barzegar 197243 mac 197243 bytes_out 0 197243 bytes_in 0 197243 station_ip 5.119.251.17 197243 port 13 197243 unique_id port 197243 remote_ip 10.8.0.166 197244 username shahruz 197244 mac 197244 bytes_out 0 197244 bytes_in 0 197244 station_ip 37.129.49.183 197244 port 23 197244 unique_id port 197244 remote_ip 10.8.1.150 197246 username shahruz 197246 mac 197246 bytes_out 0 197246 bytes_in 0 197246 station_ip 37.129.49.183 197246 port 19 197246 unique_id port 197246 remote_ip 10.8.0.178 197247 username shahruz 197247 mac 197247 bytes_out 0 197247 bytes_in 0 197247 station_ip 37.129.49.183 197247 port 19 197247 unique_id port 197247 remote_ip 10.8.0.178 197253 username shahruz 197253 kill_reason Maximum check online fails reached 197253 mac 197253 bytes_out 0 197253 bytes_in 0 197253 station_ip 37.129.49.183 197253 port 20 197253 unique_id port 197255 username kalantary6037 197255 mac 197255 bytes_out 310288 197255 bytes_in 4007293 197255 station_ip 37.129.86.115 197255 port 19 197255 unique_id port 197255 remote_ip 10.8.0.158 197256 username yaghobi 197256 kill_reason Maximum number of concurrent logins reached 197256 mac 197256 bytes_out 0 197256 bytes_in 0 197256 station_ip 83.122.185.107 197256 port 13 197256 unique_id port 197261 username shahruz 197261 mac 197261 bytes_out 1636 197261 bytes_in 5023 197261 station_ip 37.129.49.183 197261 port 13 197261 unique_id port 197261 remote_ip 10.8.0.178 197263 username sekonji0496 197263 mac 197263 bytes_out 2202 197263 bytes_in 4350 197263 station_ip 83.123.1.31 197263 port 13 197263 unique_id port 197263 remote_ip 10.8.0.98 197270 username barzegar 197270 mac 197270 bytes_out 0 197270 bytes_in 0 197270 station_ip 5.119.251.17 197270 port 18 197270 unique_id port 197270 remote_ip 10.8.1.138 197274 username shahruz 197274 mac 197274 bytes_out 1636 197274 bytes_in 4970 197274 station_ip 37.129.49.183 197274 port 22 197274 unique_id port 197274 remote_ip 10.8.0.178 197276 username shahruz 197276 kill_reason Maximum check online fails reached 197276 mac 197276 bytes_out 0 197276 bytes_in 0 197276 station_ip 37.129.49.183 197276 port 19 197276 unique_id port 197280 username nilufarrajaei 197280 mac 197280 bytes_out 264132 197280 bytes_in 541665 197280 station_ip 83.123.103.213 197280 port 17 197245 username rashidi4690 197245 kill_reason Another user logged on this global unique id 197245 mac 197245 bytes_out 0 197245 bytes_in 0 197245 station_ip 113.203.63.241 197245 port 19 197245 unique_id port 197249 username shahruz 197249 mac 197249 bytes_out 0 197249 bytes_in 0 197249 station_ip 37.129.49.183 197249 port 19 197249 unique_id port 197249 remote_ip 10.8.0.178 197252 username rajaei 197252 mac 197252 bytes_out 7422978 197252 bytes_in 78552585 197252 station_ip 89.34.56.7 197252 port 18 197252 unique_id port 197252 remote_ip 10.8.1.162 197254 username sekonji0496 197254 mac 197254 bytes_out 0 197254 bytes_in 0 197254 station_ip 83.123.1.31 197254 port 13 197254 unique_id port 197254 remote_ip 10.8.0.98 197258 username alirezazadeh 197258 unique_id port 197258 terminate_cause User-Request 197258 bytes_out 334 197258 bytes_in 166 197258 station_ip 5.120.151.39 197258 port 15729463 197258 nas_port_type Virtual 197258 remote_ip 5.5.5.231 197262 username barzegar 197262 mac 197262 bytes_out 0 197262 bytes_in 0 197262 station_ip 5.119.251.17 197262 port 18 197262 unique_id port 197262 remote_ip 10.8.1.138 197265 username barzegar 197265 mac 197265 bytes_out 0 197265 bytes_in 0 197265 station_ip 5.119.251.17 197265 port 13 197265 unique_id port 197265 remote_ip 10.8.0.166 197266 username rashidi4690 197266 mac 197266 bytes_out 0 197266 bytes_in 0 197266 station_ip 113.203.63.241 197266 port 19 197266 unique_id port 197267 username kalantary6037 197267 kill_reason Another user logged on this global unique id 197267 mac 197267 bytes_out 0 197267 bytes_in 0 197267 station_ip 37.129.86.115 197267 port 18 197267 unique_id port 197267 remote_ip 10.8.0.158 197268 username alipour1506 197268 mac 197268 bytes_out 224646 197268 bytes_in 1395226 197268 station_ip 83.122.201.20 197268 port 11 197268 unique_id port 197268 remote_ip 10.8.0.114 197272 username dortaj3792 197272 kill_reason Another user logged on this global unique id 197272 mac 197272 bytes_out 0 197272 bytes_in 0 197272 station_ip 5.119.97.79 197272 port 21 197272 unique_id port 197272 remote_ip 10.8.1.38 197275 username sekonji0496 197275 mac 197275 bytes_out 0 197275 bytes_in 0 197275 station_ip 83.123.1.31 197275 port 21 197275 unique_id port 197275 remote_ip 10.8.0.98 197277 username yaghobi 197277 mac 197277 bytes_out 0 197277 bytes_in 0 197277 station_ip 83.122.172.75 197277 port 11 197277 unique_id port 197277 remote_ip 10.8.0.14 197281 username fezealinaghi 197281 kill_reason Another user logged on this global unique id 197281 mac 197281 bytes_out 0 197281 bytes_in 0 197281 station_ip 37.129.28.134 197281 port 5 197281 unique_id port 197282 username barzegar 197282 mac 197282 bytes_out 855544 197282 bytes_in 8361543 197282 station_ip 5.119.251.17 197282 port 18 197282 unique_id port 197282 remote_ip 10.8.1.138 197288 username soleymani5056 197288 mac 197288 bytes_out 0 197288 bytes_in 0 197288 station_ip 5.119.203.76 197288 port 18 197288 unique_id port 197288 remote_ip 10.8.0.30 197290 username saeed9658 197290 mac 197290 bytes_out 0 197290 bytes_in 0 197290 station_ip 5.119.93.68 197290 port 19 197290 unique_id port 197290 remote_ip 10.8.1.110 197291 username pourshad 197291 mac 197291 bytes_out 0 197291 bytes_in 0 197291 station_ip 5.120.96.55 197291 port 21 197291 unique_id port 197291 remote_ip 10.8.0.86 197293 username saeed9658 197293 mac 197293 bytes_out 0 197293 bytes_in 0 197293 station_ip 5.119.93.68 197293 port 19 197293 unique_id port 197280 unique_id port 197280 remote_ip 10.8.0.170 197284 username barzegar 197284 mac 197284 bytes_out 0 197284 bytes_in 0 197284 station_ip 5.119.251.17 197284 port 18 197284 unique_id port 197284 remote_ip 10.8.1.138 197285 username alipour1506 197285 mac 197285 bytes_out 292898 197285 bytes_in 3557131 197285 station_ip 83.122.201.20 197285 port 11 197285 unique_id port 197285 remote_ip 10.8.0.114 197286 username barzegar 197286 kill_reason Another user logged on this global unique id 197286 mac 197286 bytes_out 0 197286 bytes_in 0 197286 station_ip 5.119.251.17 197286 port 18 197286 unique_id port 197286 remote_ip 10.8.1.138 197295 username pourshad 197295 mac 197295 bytes_out 76365 197295 bytes_in 235879 197295 station_ip 5.120.96.55 197295 port 19 197295 unique_id port 197295 remote_ip 10.8.1.46 197301 username seyedrezaei2572 197301 kill_reason Another user logged on this global unique id 197301 mac 197301 bytes_out 0 197301 bytes_in 0 197301 station_ip 83.122.1.140 197301 port 13 197301 unique_id port 197301 remote_ip 10.8.0.126 197304 username saeed9658 197304 mac 197304 bytes_out 0 197304 bytes_in 0 197304 station_ip 5.119.93.68 197304 port 23 197304 unique_id port 197304 remote_ip 10.8.1.110 197308 username pourshad 197308 mac 197308 bytes_out 0 197308 bytes_in 0 197308 station_ip 5.120.96.55 197308 port 19 197308 unique_id port 197308 remote_ip 10.8.1.46 197311 username barzegar 197311 mac 197311 bytes_out 0 197311 bytes_in 0 197311 station_ip 5.119.251.17 197311 port 19 197311 unique_id port 197311 remote_ip 10.8.1.138 197312 username seyedrezaei2572 197312 mac 197312 bytes_out 0 197312 bytes_in 0 197312 station_ip 83.122.1.140 197312 port 13 197312 unique_id port 197314 username kalantary6037 197314 mac 197314 bytes_out 1109723 197314 bytes_in 13139088 197314 station_ip 37.129.81.95 197314 port 5 197314 unique_id port 197314 remote_ip 10.8.0.158 197319 username motamedi9772 197319 mac 197319 bytes_out 33214 197319 bytes_in 58876 197319 station_ip 37.129.236.220 197319 port 5 197319 unique_id port 197319 remote_ip 10.8.0.54 197320 username motamedi9772 197320 mac 197320 bytes_out 17434 197320 bytes_in 172786 197320 station_ip 37.129.236.220 197320 port 5 197320 unique_id port 197320 remote_ip 10.8.0.54 197322 username rashidi4690 197322 mac 197322 bytes_out 0 197322 bytes_in 0 197322 station_ip 5.120.100.183 197322 port 19 197322 unique_id port 197322 remote_ip 10.8.1.142 197323 username teymori5660 197323 mac 197323 bytes_out 0 197323 bytes_in 0 197323 station_ip 5.119.151.64 197323 port 18 197323 unique_id port 197323 remote_ip 10.8.1.130 197327 username esmaeili1522 197327 mac 197327 bytes_out 0 197327 bytes_in 0 197327 station_ip 5.120.108.168 197327 port 19 197327 unique_id port 197327 remote_ip 10.8.1.94 197329 username pourshad 197329 mac 197329 bytes_out 0 197329 bytes_in 0 197329 station_ip 5.120.96.55 197329 port 18 197329 unique_id port 197329 remote_ip 10.8.1.46 197330 username barzegar 197330 mac 197330 bytes_out 10653 197330 bytes_in 26714 197330 station_ip 5.119.251.17 197330 port 19 197330 unique_id port 197330 remote_ip 10.8.1.138 197331 username rashidi4690 197331 mac 197331 bytes_out 0 197331 bytes_in 0 197331 station_ip 5.120.100.183 197331 port 25 197331 unique_id port 197331 remote_ip 10.8.1.142 197333 username mammad 197333 unique_id port 197333 terminate_cause User-Request 197333 bytes_out 13425152 197333 bytes_in 157161834 197333 station_ip 5.233.67.27 197333 port 15729462 197287 unique_id port 197287 remote_ip 10.8.0.30 197289 username saeed9658 197289 mac 197289 bytes_out 0 197289 bytes_in 0 197289 station_ip 5.119.93.68 197289 port 19 197289 unique_id port 197289 remote_ip 10.8.1.110 197292 username saeed9658 197292 mac 197292 bytes_out 0 197292 bytes_in 0 197292 station_ip 5.119.93.68 197292 port 19 197292 unique_id port 197292 remote_ip 10.8.1.110 197294 username meysam 197294 mac 197294 bytes_out 87672 197294 bytes_in 143896 197294 station_ip 188.159.252.14 197294 port 18 197294 unique_id port 197294 remote_ip 10.8.1.74 197297 username morteza4424 197297 kill_reason Another user logged on this global unique id 197297 mac 197297 bytes_out 0 197297 bytes_in 0 197297 station_ip 83.123.28.159 197297 port 18 197297 unique_id port 197297 remote_ip 10.8.0.138 197298 username fezealinaghi 197298 mac 197298 bytes_out 0 197298 bytes_in 0 197298 station_ip 37.129.28.134 197298 port 5 197298 unique_id port 197300 username meysam 197300 mac 197300 bytes_out 0 197300 bytes_in 0 197300 station_ip 188.159.252.14 197300 port 18 197300 unique_id port 197302 username pourshad 197302 mac 197302 bytes_out 0 197302 bytes_in 0 197302 station_ip 5.120.96.55 197302 port 23 197302 unique_id port 197302 remote_ip 10.8.1.46 197303 username kalantary6037 197303 mac 197303 bytes_out 579869 197303 bytes_in 7195385 197303 station_ip 37.129.81.95 197303 port 5 197303 unique_id port 197303 remote_ip 10.8.0.158 197306 username pourshad 197306 mac 197306 bytes_out 14930 197306 bytes_in 13977 197306 station_ip 5.120.96.55 197306 port 26 197306 unique_id port 197306 remote_ip 10.8.1.46 197307 username barzegar 197307 mac 197307 bytes_out 0 197307 bytes_in 0 197307 station_ip 5.119.251.17 197307 port 19 197307 unique_id port 197307 remote_ip 10.8.1.138 197309 username fezealinaghi 197309 mac 197309 bytes_out 0 197309 bytes_in 0 197309 station_ip 37.129.28.134 197309 port 23 197309 unique_id port 197309 remote_ip 10.8.1.166 197317 username seyedrezaei2572 197317 mac 197317 bytes_out 0 197317 bytes_in 0 197317 station_ip 83.122.1.140 197317 port 21 197317 unique_id port 197317 remote_ip 10.8.0.126 197324 username pourshad 197324 mac 197324 bytes_out 0 197324 bytes_in 0 197324 station_ip 5.120.96.55 197324 port 25 197324 unique_id port 197324 remote_ip 10.8.1.46 197325 username yaghobi 197325 kill_reason Maximum number of concurrent logins reached 197325 mac 197325 bytes_out 0 197325 bytes_in 0 197325 station_ip 37.129.223.30 197325 port 13 197325 unique_id port 197332 username pourshad 197332 mac 197332 bytes_out 0 197332 bytes_in 0 197332 station_ip 5.120.96.55 197332 port 18 197332 unique_id port 197332 remote_ip 10.8.1.46 197342 username khalili2 197342 kill_reason Another user logged on this global unique id 197342 mac 197342 bytes_out 0 197342 bytes_in 0 197342 station_ip 5.119.158.183 197342 port 25 197342 unique_id port 197342 remote_ip 10.8.1.170 197345 username yaghobi 197345 mac 197345 bytes_out 0 197345 bytes_in 0 197345 station_ip 37.129.24.80 197345 port 13 197345 unique_id port 197345 remote_ip 10.8.0.14 197350 username meysam 197350 mac 197350 bytes_out 81983 197350 bytes_in 853885 197350 station_ip 188.159.252.14 197350 port 27 197350 unique_id port 197350 remote_ip 10.8.1.74 197353 username kalantary6037 197353 mac 197353 bytes_out 0 197353 bytes_in 0 197353 station_ip 37.129.20.163 197353 port 11 197353 unique_id port 197353 remote_ip 10.8.0.158 197354 username meysam 197293 remote_ip 10.8.1.110 197296 username kalantary6037 197296 mac 197296 bytes_out 0 197296 bytes_in 0 197296 station_ip 37.129.81.95 197296 port 21 197296 unique_id port 197296 remote_ip 10.8.0.158 197299 username rashidi4690 197299 mac 197299 bytes_out 0 197299 bytes_in 0 197299 station_ip 5.120.100.183 197299 port 22 197299 unique_id port 197299 remote_ip 10.8.1.142 197305 username saeed9658 197305 mac 197305 bytes_out 0 197305 bytes_in 0 197305 station_ip 5.119.93.68 197305 port 25 197305 unique_id port 197305 remote_ip 10.8.1.110 197310 username pourshad 197310 mac 197310 bytes_out 0 197310 bytes_in 0 197310 station_ip 5.120.96.55 197310 port 19 197310 unique_id port 197310 remote_ip 10.8.1.46 197313 username saeeddamghani 197313 mac 197313 bytes_out 0 197313 bytes_in 0 197313 station_ip 217.60.175.206 197313 port 18 197313 unique_id port 197313 remote_ip 10.8.0.38 197315 username milan 197315 kill_reason Another user logged on this global unique id 197315 mac 197315 bytes_out 0 197315 bytes_in 0 197315 station_ip 5.119.177.28 197315 port 22 197315 unique_id port 197315 remote_ip 10.8.1.146 197316 username alirezazadeh 197316 unique_id port 197316 terminate_cause Lost-Carrier 197316 bytes_out 1050617 197316 bytes_in 15705939 197316 station_ip 5.119.121.150 197316 port 15729465 197316 nas_port_type Virtual 197316 remote_ip 5.5.5.232 197318 username pourshad 197318 mac 197318 bytes_out 44682 197318 bytes_in 137141 197318 station_ip 5.120.96.55 197318 port 5 197318 unique_id port 197318 remote_ip 10.8.0.86 197321 username meysam 197321 mac 197321 bytes_out 0 197321 bytes_in 0 197321 station_ip 188.159.252.14 197321 port 18 197321 unique_id port 197326 username yaghobi 197326 mac 197326 bytes_out 161118 197326 bytes_in 778647 197326 station_ip 83.123.120.224 197326 port 5 197326 unique_id port 197326 remote_ip 10.8.0.14 197328 username alipour1506 197328 mac 197328 bytes_out 171623 197328 bytes_in 1188267 197328 station_ip 83.122.201.20 197328 port 11 197328 unique_id port 197328 remote_ip 10.8.0.114 197334 username aminvpn 197334 unique_id port 197334 terminate_cause User-Request 197334 bytes_out 5461161 197334 bytes_in 160148572 197334 station_ip 5.160.114.51 197334 port 15729466 197334 nas_port_type Virtual 197334 remote_ip 5.5.5.234 197335 username barzegar 197335 mac 197335 bytes_out 0 197335 bytes_in 0 197335 station_ip 5.119.251.17 197335 port 18 197335 unique_id port 197335 remote_ip 10.8.1.138 197337 username barzegar 197337 mac 197337 bytes_out 0 197337 bytes_in 0 197337 station_ip 5.119.251.17 197337 port 25 197337 unique_id port 197337 remote_ip 10.8.1.138 197339 username nilufarrajaei 197339 kill_reason Another user logged on this global unique id 197339 mac 197339 bytes_out 0 197339 bytes_in 0 197339 station_ip 83.123.103.213 197339 port 17 197339 unique_id port 197339 remote_ip 10.8.0.170 197344 username meysam 197344 mac 197344 bytes_out 0 197344 bytes_in 0 197344 station_ip 188.159.252.14 197344 port 19 197344 unique_id port 197344 remote_ip 10.8.1.74 197346 username meysam 197346 mac 197346 bytes_out 31273 197346 bytes_in 243815 197346 station_ip 188.159.252.14 197346 port 19 197346 unique_id port 197346 remote_ip 10.8.1.74 197348 username khalili2 197348 kill_reason Another user logged on this global unique id 197348 mac 197348 bytes_out 0 197348 bytes_in 0 197348 station_ip 5.119.158.183 197348 port 25 197348 unique_id port 197349 username rashidi4690 197349 mac 197349 bytes_out 1562937 197349 bytes_in 7887837 197333 nas_port_type Virtual 197333 remote_ip 5.5.5.230 197336 username alipour1506 197336 mac 197336 bytes_out 0 197336 bytes_in 0 197336 station_ip 83.122.201.20 197336 port 5 197336 unique_id port 197336 remote_ip 10.8.0.114 197338 username kalantary6037 197338 mac 197338 bytes_out 0 197338 bytes_in 0 197338 station_ip 37.129.98.71 197338 port 5 197338 unique_id port 197338 remote_ip 10.8.0.158 197340 username godarzi 197340 mac 197340 bytes_out 0 197340 bytes_in 0 197340 station_ip 45.84.157.190 197340 port 17 197340 unique_id port 197341 username barzegar 197341 mac 197341 bytes_out 0 197341 bytes_in 0 197341 station_ip 5.119.251.17 197341 port 26 197341 unique_id port 197341 remote_ip 10.8.1.138 197343 username barzegar 197343 mac 197343 bytes_out 0 197343 bytes_in 0 197343 station_ip 5.119.251.17 197343 port 26 197343 unique_id port 197343 remote_ip 10.8.1.138 197347 username seyedrezaei2572 197347 mac 197347 bytes_out 2686519 197347 bytes_in 25337039 197347 station_ip 83.122.95.148 197347 port 11 197347 unique_id port 197347 remote_ip 10.8.0.126 197351 username saeed9658 197351 mac 197351 bytes_out 0 197351 bytes_in 0 197351 station_ip 5.119.93.68 197351 port 26 197351 unique_id port 197351 remote_ip 10.8.1.110 197356 username yaghobi 197356 mac 197356 bytes_out 150121 197356 bytes_in 706307 197356 station_ip 83.123.19.175 197356 port 11 197356 unique_id port 197356 remote_ip 10.8.0.14 197359 username barzegar 197359 mac 197359 bytes_out 0 197359 bytes_in 0 197359 station_ip 5.119.251.17 197359 port 26 197359 unique_id port 197359 remote_ip 10.8.1.138 197368 username malekpoir 197368 mac 197368 bytes_out 1755154 197368 bytes_in 18374842 197368 station_ip 5.120.22.60 197368 port 16 197368 unique_id port 197368 remote_ip 10.8.0.186 197370 username kalantary6037 197370 mac 197370 bytes_out 0 197370 bytes_in 0 197370 station_ip 37.129.123.47 197370 port 16 197370 unique_id port 197370 remote_ip 10.8.0.158 197371 username malekpoir 197371 mac 197371 bytes_out 0 197371 bytes_in 0 197371 station_ip 5.120.22.60 197371 port 18 197371 unique_id port 197371 remote_ip 10.8.1.6 197374 username malekpoir 197374 kill_reason Another user logged on this global unique id 197374 mac 197374 bytes_out 0 197374 bytes_in 0 197374 station_ip 5.120.22.60 197374 port 17 197374 unique_id port 197374 remote_ip 10.8.1.6 197377 username houshang 197377 mac 197377 bytes_out 0 197377 bytes_in 0 197377 station_ip 5.120.129.62 197377 port 27 197377 unique_id port 197377 remote_ip 10.8.1.154 197384 username pourshad 197384 mac 197384 bytes_out 0 197384 bytes_in 0 197384 station_ip 5.119.122.138 197384 port 25 197384 unique_id port 197384 remote_ip 10.8.1.46 197389 username barzegar 197389 mac 197389 bytes_out 0 197389 bytes_in 0 197389 station_ip 5.119.251.17 197389 port 16 197389 unique_id port 197389 remote_ip 10.8.0.166 197392 username pourshad 197392 mac 197392 bytes_out 124897 197392 bytes_in 1956452 197392 station_ip 5.119.122.138 197392 port 25 197392 unique_id port 197392 remote_ip 10.8.1.46 197393 username khalili2 197393 mac 197393 bytes_out 0 197393 bytes_in 0 197393 station_ip 5.119.158.183 197393 port 19 197393 unique_id port 197398 username pourshad 197398 mac 197398 bytes_out 374580 197398 bytes_in 3569796 197398 station_ip 5.119.122.138 197398 port 19 197398 unique_id port 197398 remote_ip 10.8.1.46 197399 username kalantary6037 197399 mac 197349 station_ip 5.120.100.183 197349 port 18 197349 unique_id port 197349 remote_ip 10.8.1.142 197352 username nilufarrajaei 197352 mac 197352 bytes_out 0 197352 bytes_in 0 197352 station_ip 83.123.103.213 197352 port 5 197352 unique_id port 197352 remote_ip 10.8.0.170 197355 username barzegar 197355 mac 197355 bytes_out 4785 197355 bytes_in 7403 197355 station_ip 5.119.251.17 197355 port 18 197355 unique_id port 197355 remote_ip 10.8.1.138 197357 username seyedrezaei2572 197357 mac 197357 bytes_out 3297600 197357 bytes_in 20802805 197357 station_ip 83.122.95.148 197357 port 19 197357 unique_id port 197357 remote_ip 10.8.1.174 197358 username hatami 197358 mac 197358 bytes_out 2256521 197358 bytes_in 18349473 197358 station_ip 151.235.113.109 197358 port 17 197358 unique_id port 197358 remote_ip 10.8.0.150 197360 username khalili2 197360 kill_reason Another user logged on this global unique id 197360 mac 197360 bytes_out 0 197360 bytes_in 0 197360 station_ip 5.119.158.183 197360 port 25 197360 unique_id port 197361 username khalili2 197361 mac 197361 bytes_out 0 197361 bytes_in 0 197361 station_ip 5.119.158.183 197361 port 25 197361 unique_id port 197363 username yaghobi 197363 kill_reason Maximum number of concurrent logins reached 197363 mac 197363 bytes_out 0 197363 bytes_in 0 197363 station_ip 37.129.122.212 197363 port 25 197363 unique_id port 197365 username barzegar 197365 mac 197365 bytes_out 4279 197365 bytes_in 6909 197365 station_ip 5.119.251.17 197365 port 26 197365 unique_id port 197365 remote_ip 10.8.1.138 197372 username barzegar 197372 mac 197372 bytes_out 0 197372 bytes_in 0 197372 station_ip 5.119.251.17 197372 port 25 197372 unique_id port 197379 username soleymani5056 197379 mac 197379 bytes_out 421596 197379 bytes_in 617238 197379 station_ip 5.119.116.194 197379 port 16 197379 unique_id port 197379 remote_ip 10.8.0.30 197385 username pourshad 197385 mac 197385 bytes_out 0 197385 bytes_in 0 197385 station_ip 5.119.122.138 197385 port 25 197385 unique_id port 197385 remote_ip 10.8.1.46 197387 username ahmadi1 197387 mac 197387 bytes_out 0 197387 bytes_in 0 197387 station_ip 83.123.240.118 197387 port 16 197387 unique_id port 197387 remote_ip 10.8.0.162 197390 username yaghobi 197390 mac 197390 bytes_out 804453 197390 bytes_in 432916 197390 station_ip 83.122.128.12 197390 port 11 197390 unique_id port 197390 remote_ip 10.8.0.14 197394 username akbari0070 197394 mac 197394 bytes_out 0 197394 bytes_in 0 197394 station_ip 83.122.80.59 197394 port 16 197394 unique_id port 197394 remote_ip 10.8.0.10 197396 username pourshad 197396 mac 197396 bytes_out 0 197396 bytes_in 0 197396 station_ip 5.119.122.138 197396 port 19 197396 unique_id port 197396 remote_ip 10.8.1.46 197401 username dortaj3792 197401 mac 197401 bytes_out 2663997 197401 bytes_in 30313374 197401 station_ip 5.119.97.79 197401 port 21 197401 unique_id port 197401 remote_ip 10.8.1.38 197406 username barzegar 197406 mac 197406 bytes_out 0 197406 bytes_in 0 197406 station_ip 5.119.251.17 197406 port 19 197406 unique_id port 197406 remote_ip 10.8.1.138 197407 username barzegar 197407 mac 197407 bytes_out 0 197407 bytes_in 0 197407 station_ip 5.119.251.17 197407 port 11 197407 unique_id port 197407 remote_ip 10.8.0.166 197413 username pourshad 197413 kill_reason Another user logged on this global unique id 197413 mac 197413 bytes_out 0 197413 bytes_in 0 197413 station_ip 5.120.24.121 197413 port 16 197413 unique_id port 197354 mac 197354 bytes_out 239358 197354 bytes_in 3170893 197354 station_ip 188.159.252.14 197354 port 18 197354 unique_id port 197354 remote_ip 10.8.1.74 197362 username yaghobi 197362 mac 197362 bytes_out 0 197362 bytes_in 0 197362 station_ip 83.123.19.175 197362 port 18 197362 unique_id port 197362 remote_ip 10.8.1.62 197364 username yaghobi 197364 mac 197364 bytes_out 3062 197364 bytes_in 10137 197364 station_ip 83.123.19.175 197364 port 18 197364 unique_id port 197364 remote_ip 10.8.1.62 197366 username rashidi4690 197366 mac 197366 bytes_out 441391 197366 bytes_in 1318927 197366 station_ip 5.120.100.183 197366 port 18 197366 unique_id port 197366 remote_ip 10.8.1.142 197367 username rashidi4690 197367 mac 197367 bytes_out 367740 197367 bytes_in 3273498 197367 station_ip 5.120.100.183 197367 port 18 197367 unique_id port 197367 remote_ip 10.8.1.142 197369 username barzegar 197369 kill_reason Another user logged on this global unique id 197369 mac 197369 bytes_out 0 197369 bytes_in 0 197369 station_ip 5.119.251.17 197369 port 25 197369 unique_id port 197369 remote_ip 10.8.1.138 197373 username seyedrezaei2572 197373 mac 197373 bytes_out 0 197373 bytes_in 0 197373 station_ip 83.122.95.148 197373 port 19 197373 unique_id port 197373 remote_ip 10.8.1.174 197375 username yaghobi 197375 kill_reason Maximum number of concurrent logins reached 197375 mac 197375 bytes_out 0 197375 bytes_in 0 197375 station_ip 37.129.122.212 197375 port 17 197375 unique_id port 197376 username yaghobi 197376 mac 197376 bytes_out 895600 197376 bytes_in 5546549 197376 station_ip 37.129.122.212 197376 port 11 197376 unique_id port 197376 remote_ip 10.8.0.14 197378 username kamali3 197378 mac 197378 bytes_out 0 197378 bytes_in 0 197378 station_ip 5.120.93.133 197378 port 26 197378 unique_id port 197378 remote_ip 10.8.1.178 197380 username barzegar 197380 mac 197380 bytes_out 0 197380 bytes_in 0 197380 station_ip 5.119.251.17 197380 port 19 197380 unique_id port 197380 remote_ip 10.8.1.138 197381 username motamedi9772 197381 mac 197381 bytes_out 102598 197381 bytes_in 914174 197381 station_ip 37.129.235.172 197381 port 11 197381 unique_id port 197381 remote_ip 10.8.0.54 197382 username pourshad 197382 mac 197382 bytes_out 0 197382 bytes_in 0 197382 station_ip 5.119.122.138 197382 port 25 197382 unique_id port 197382 remote_ip 10.8.1.46 197383 username akbari0070 197383 mac 197383 bytes_out 310977 197383 bytes_in 2618985 197383 station_ip 83.122.40.83 197383 port 11 197383 unique_id port 197383 remote_ip 10.8.0.10 197386 username barzegar 197386 mac 197386 bytes_out 0 197386 bytes_in 0 197386 station_ip 5.119.251.17 197386 port 26 197386 unique_id port 197386 remote_ip 10.8.1.138 197388 username yaghobi 197388 kill_reason Maximum number of concurrent logins reached 197388 mac 197388 bytes_out 0 197388 bytes_in 0 197388 station_ip 83.123.74.227 197388 port 17 197388 unique_id port 197391 username khalili2 197391 kill_reason Another user logged on this global unique id 197391 mac 197391 bytes_out 0 197391 bytes_in 0 197391 station_ip 5.119.158.183 197391 port 19 197391 unique_id port 197391 remote_ip 10.8.1.170 197395 username pourshad 197395 mac 197395 bytes_out 0 197395 bytes_in 0 197395 station_ip 5.119.122.138 197395 port 25 197395 unique_id port 197395 remote_ip 10.8.1.46 197397 username barzegar 197397 mac 197397 bytes_out 0 197397 bytes_in 0 197397 station_ip 5.119.251.17 197397 port 25 197397 unique_id port 197397 remote_ip 10.8.1.138 197399 bytes_out 0 197399 bytes_in 0 197399 station_ip 37.129.89.179 197399 port 11 197399 unique_id port 197399 remote_ip 10.8.0.158 197400 username pourshad 197400 mac 197400 bytes_out 0 197400 bytes_in 0 197400 station_ip 5.119.122.138 197400 port 19 197400 unique_id port 197400 remote_ip 10.8.1.46 197410 username barzegar 197410 mac 197410 bytes_out 0 197410 bytes_in 0 197410 station_ip 5.119.251.17 197410 port 21 197410 unique_id port 197410 remote_ip 10.8.1.138 197412 username seyedrezaei2572 197412 mac 197412 bytes_out 10195 197412 bytes_in 12825 197412 station_ip 83.122.95.148 197412 port 11 197412 unique_id port 197412 remote_ip 10.8.0.126 197418 username barzegar 197418 kill_reason Another user logged on this global unique id 197418 mac 197418 bytes_out 0 197418 bytes_in 0 197418 station_ip 5.119.251.17 197418 port 18 197418 unique_id port 197418 remote_ip 10.8.1.138 197420 username akbari0070 197420 mac 197420 bytes_out 143157 197420 bytes_in 1142466 197420 station_ip 83.122.80.59 197420 port 18 197420 unique_id port 197420 remote_ip 10.8.0.10 197423 username sobhan 197423 unique_id port 197423 terminate_cause User-Request 197423 bytes_out 1627034 197423 bytes_in 36093895 197423 station_ip 31.56.113.125 197423 port 15729476 197423 nas_port_type Virtual 197423 remote_ip 5.5.5.239 197425 username aminvpns6 197425 mac 197425 bytes_out 0 197425 bytes_in 0 197425 station_ip 5.119.48.80 197425 port 11 197425 unique_id port 197425 remote_ip 10.8.0.190 197426 username farhad3 197426 mac 197426 bytes_out 1880286 197426 bytes_in 21783985 197426 station_ip 5.119.169.90 197426 port 19 197426 unique_id port 197426 remote_ip 10.8.1.34 197428 username seyedrezaei2572 197428 kill_reason Another user logged on this global unique id 197428 mac 197428 bytes_out 0 197428 bytes_in 0 197428 station_ip 83.122.95.148 197428 port 18 197428 unique_id port 197428 remote_ip 10.8.1.174 197431 username yaghobi 197431 mac 197431 bytes_out 0 197431 bytes_in 0 197431 station_ip 83.122.120.191 197431 port 11 197431 unique_id port 197431 remote_ip 10.8.0.14 197434 username farhad3 197434 mac 197434 bytes_out 0 197434 bytes_in 0 197434 station_ip 5.119.169.90 197434 port 21 197434 unique_id port 197434 remote_ip 10.8.1.34 197435 username alirezaza 197435 unique_id port 197435 terminate_cause Lost-Carrier 197435 bytes_out 319214 197435 bytes_in 11466271 197435 station_ip 5.120.57.125 197435 port 15729477 197435 nas_port_type Virtual 197435 remote_ip 5.5.5.240 197438 username tahmorsi 197438 mac 197438 bytes_out 0 197438 bytes_in 0 197438 station_ip 86.57.71.205 197438 port 26 197438 unique_id port 197442 username barzegar 197442 mac 197442 bytes_out 0 197442 bytes_in 0 197442 station_ip 5.119.251.17 197442 port 26 197442 unique_id port 197442 remote_ip 10.8.1.138 197443 username houshang 197443 kill_reason Another user logged on this global unique id 197443 mac 197443 bytes_out 0 197443 bytes_in 0 197443 station_ip 5.120.129.62 197443 port 17 197443 unique_id port 197443 remote_ip 10.8.0.46 197453 username rashidi4690 197453 kill_reason Another user logged on this global unique id 197453 mac 197453 bytes_out 0 197453 bytes_in 0 197453 station_ip 113.203.14.133 197453 port 19 197453 unique_id port 197455 username akbari0070 197455 kill_reason Another user logged on this global unique id 197455 mac 197455 bytes_out 0 197455 bytes_in 0 197455 station_ip 83.122.80.59 197455 port 18 197455 unique_id port 197462 username barzegar 197462 mac 197462 bytes_out 0 197462 bytes_in 0 197462 station_ip 5.119.251.17 197402 username yaghobi 197402 mac 197402 bytes_out 0 197402 bytes_in 0 197402 station_ip 83.123.90.239 197402 port 25 197402 unique_id port 197402 remote_ip 10.8.1.62 197403 username barzegar 197403 mac 197403 bytes_out 2362 197403 bytes_in 4996 197403 station_ip 5.119.251.17 197403 port 19 197403 unique_id port 197403 remote_ip 10.8.1.138 197404 username seyedrezaei2572 197404 mac 197404 bytes_out 3023341 197404 bytes_in 40517613 197404 station_ip 83.122.95.148 197404 port 18 197404 unique_id port 197404 remote_ip 10.8.1.174 197405 username pourshad 197405 mac 197405 bytes_out 0 197405 bytes_in 0 197405 station_ip 5.120.24.121 197405 port 21 197405 unique_id port 197405 remote_ip 10.8.1.46 197408 username milan 197408 kill_reason Another user logged on this global unique id 197408 mac 197408 bytes_out 0 197408 bytes_in 0 197408 station_ip 5.119.177.28 197408 port 22 197408 unique_id port 197409 username kalantary6037 197409 mac 197409 bytes_out 0 197409 bytes_in 0 197409 station_ip 37.129.89.179 197409 port 11 197409 unique_id port 197409 remote_ip 10.8.0.158 197411 username seyedrezaei2572 197411 mac 197411 bytes_out 0 197411 bytes_in 0 197411 station_ip 83.122.95.148 197411 port 18 197411 unique_id port 197411 remote_ip 10.8.1.174 197414 username barzegar 197414 mac 197414 bytes_out 0 197414 bytes_in 0 197414 station_ip 5.119.251.17 197414 port 18 197414 unique_id port 197414 remote_ip 10.8.1.138 197417 username soleymani5056 197417 mac 197417 bytes_out 118815 197417 bytes_in 255515 197417 station_ip 5.120.1.250 197417 port 18 197417 unique_id port 197417 remote_ip 10.8.1.98 197419 username tahmorsi 197419 kill_reason Another user logged on this global unique id 197419 mac 197419 bytes_out 0 197419 bytes_in 0 197419 station_ip 86.57.71.205 197419 port 26 197419 unique_id port 197419 remote_ip 10.8.1.42 197421 username seyedrezaei2572 197421 mac 197421 bytes_out 485709 197421 bytes_in 9252514 197421 station_ip 83.122.95.148 197421 port 17 197421 unique_id port 197421 remote_ip 10.8.0.126 197429 username mostafa_es78 197429 mac 197429 bytes_out 0 197429 bytes_in 0 197429 station_ip 83.122.36.146 197429 port 11 197429 unique_id port 197429 remote_ip 10.8.0.50 197432 username barzegar 197432 mac 197432 bytes_out 0 197432 bytes_in 0 197432 station_ip 5.119.251.17 197432 port 21 197432 unique_id port 197432 remote_ip 10.8.1.138 197433 username nilufarrajaei 197433 mac 197433 bytes_out 0 197433 bytes_in 0 197433 station_ip 83.123.103.213 197433 port 5 197433 unique_id port 197433 remote_ip 10.8.0.170 197436 username farhad3 197436 mac 197436 bytes_out 1580 197436 bytes_in 7505 197436 station_ip 5.119.169.90 197436 port 21 197436 unique_id port 197436 remote_ip 10.8.1.34 197437 username akbari0070 197437 kill_reason Another user logged on this global unique id 197437 mac 197437 bytes_out 0 197437 bytes_in 0 197437 station_ip 83.122.80.59 197437 port 18 197437 unique_id port 197440 username kalantary6037 197440 mac 197440 bytes_out 0 197440 bytes_in 0 197440 station_ip 37.129.26.131 197440 port 11 197440 unique_id port 197440 remote_ip 10.8.0.158 197444 username farhad3 197444 mac 197444 bytes_out 192433 197444 bytes_in 749311 197444 station_ip 5.119.169.90 197444 port 21 197444 unique_id port 197444 remote_ip 10.8.1.34 197445 username aminvpn 197445 unique_id port 197445 terminate_cause Lost-Carrier 197445 bytes_out 508612 197445 bytes_in 343107 197445 station_ip 37.129.90.188 197445 port 15729468 197445 nas_port_type Virtual 197413 remote_ip 10.8.0.86 197415 username milan 197415 kill_reason Another user logged on this global unique id 197415 mac 197415 bytes_out 0 197415 bytes_in 0 197415 station_ip 5.119.177.28 197415 port 22 197415 unique_id port 197416 username sabaghnezhad 197416 mac 197416 bytes_out 4448871 197416 bytes_in 46112307 197416 station_ip 83.123.216.157 197416 port 13 197416 unique_id port 197416 remote_ip 10.8.0.26 197422 username kalantary6037 197422 mac 197422 bytes_out 0 197422 bytes_in 0 197422 station_ip 37.129.26.131 197422 port 17 197422 unique_id port 197422 remote_ip 10.8.0.158 197424 username houshang 197424 mac 197424 bytes_out 632372 197424 bytes_in 12630555 197424 station_ip 5.120.129.62 197424 port 21 197424 unique_id port 197424 remote_ip 10.8.1.154 197427 username mostafa_es78 197427 mac 197427 bytes_out 0 197427 bytes_in 0 197427 station_ip 5.202.220.181 197427 port 19 197427 unique_id port 197427 remote_ip 10.8.1.102 197430 username rashidi4690 197430 mac 197430 bytes_out 0 197430 bytes_in 0 197430 station_ip 5.120.100.183 197430 port 21 197430 unique_id port 197430 remote_ip 10.8.1.142 197439 username farhad3 197439 mac 197439 bytes_out 132217 197439 bytes_in 433464 197439 station_ip 5.119.169.90 197439 port 21 197439 unique_id port 197439 remote_ip 10.8.1.34 197441 username rashidi4690 197441 kill_reason Another user logged on this global unique id 197441 mac 197441 bytes_out 0 197441 bytes_in 0 197441 station_ip 113.203.14.133 197441 port 19 197441 unique_id port 197441 remote_ip 10.8.1.142 197446 username sabaghnezhad 197446 mac 197446 bytes_out 0 197446 bytes_in 0 197446 station_ip 83.123.216.157 197446 port 13 197446 unique_id port 197446 remote_ip 10.8.0.26 197448 username fezealinaghi 197448 kill_reason Another user logged on this global unique id 197448 mac 197448 bytes_out 0 197448 bytes_in 0 197448 station_ip 37.129.28.134 197448 port 23 197448 unique_id port 197448 remote_ip 10.8.1.166 197451 username pourshad 197451 mac 197451 bytes_out 29684 197451 bytes_in 35566 197451 station_ip 5.120.24.121 197451 port 21 197451 unique_id port 197451 remote_ip 10.8.1.46 197452 username barzegar 197452 mac 197452 bytes_out 0 197452 bytes_in 0 197452 station_ip 5.119.251.17 197452 port 23 197452 unique_id port 197452 remote_ip 10.8.1.138 197454 username malekpoir 197454 kill_reason Another user logged on this global unique id 197454 mac 197454 bytes_out 0 197454 bytes_in 0 197454 station_ip 5.120.22.60 197454 port 17 197454 unique_id port 197458 username farhad3 197458 mac 197458 bytes_out 0 197458 bytes_in 0 197458 station_ip 5.119.169.90 197458 port 23 197458 unique_id port 197458 remote_ip 10.8.1.34 197460 username sabaghnezhad 197460 mac 197460 bytes_out 8718 197460 bytes_in 15017 197460 station_ip 83.123.216.157 197460 port 16 197460 unique_id port 197460 remote_ip 10.8.0.26 197463 username akbari0070 197463 mac 197463 bytes_out 0 197463 bytes_in 0 197463 station_ip 83.122.80.59 197463 port 18 197463 unique_id port 197468 username houshang 197468 kill_reason Another user logged on this global unique id 197468 mac 197468 bytes_out 0 197468 bytes_in 0 197468 station_ip 5.120.129.62 197468 port 17 197468 unique_id port 197469 username aminvpns6 197469 mac 197469 bytes_out 0 197469 bytes_in 0 197469 station_ip 5.119.48.80 197469 port 18 197469 unique_id port 197469 remote_ip 10.8.0.190 197473 username milan 197473 kill_reason Another user logged on this global unique id 197473 mac 197473 bytes_out 0 197473 bytes_in 0 197473 station_ip 5.119.177.28 197445 remote_ip 5.5.5.236 197447 username akbari0070 197447 kill_reason Another user logged on this global unique id 197447 mac 197447 bytes_out 0 197447 bytes_in 0 197447 station_ip 83.122.80.59 197447 port 18 197447 unique_id port 197449 username pourshad 197449 mac 197449 bytes_out 0 197449 bytes_in 0 197449 station_ip 5.120.24.121 197449 port 16 197449 unique_id port 197450 username fezealinaghi 197450 mac 197450 bytes_out 0 197450 bytes_in 0 197450 station_ip 37.129.28.134 197450 port 23 197450 unique_id port 197456 username aminvpn 197456 unique_id port 197456 terminate_cause Lost-Carrier 197456 bytes_out 26736 197456 bytes_in 23911 197456 station_ip 37.129.90.188 197456 port 15729484 197456 nas_port_type Virtual 197456 remote_ip 5.5.5.236 197457 username tahmorsi 197457 mac 197457 bytes_out 0 197457 bytes_in 0 197457 station_ip 86.57.71.205 197457 port 23 197457 unique_id port 197457 remote_ip 10.8.1.42 197459 username farhad3 197459 mac 197459 bytes_out 0 197459 bytes_in 0 197459 station_ip 5.119.169.90 197459 port 23 197459 unique_id port 197459 remote_ip 10.8.1.34 197461 username seyedrezaei2572 197461 kill_reason Another user logged on this global unique id 197461 mac 197461 bytes_out 0 197461 bytes_in 0 197461 station_ip 83.122.95.148 197461 port 18 197461 unique_id port 197465 username farhad3 197465 mac 197465 bytes_out 1069969 197465 bytes_in 15781542 197465 station_ip 5.119.169.90 197465 port 23 197465 unique_id port 197465 remote_ip 10.8.1.34 197466 username yaghobi 197466 kill_reason Maximum number of concurrent logins reached 197466 mac 197466 bytes_out 0 197466 bytes_in 0 197466 station_ip 113.203.95.65 197466 port 23 197466 unique_id port 197471 username farhad3 197471 mac 197471 bytes_out 0 197471 bytes_in 0 197471 station_ip 5.119.169.90 197471 port 23 197471 unique_id port 197471 remote_ip 10.8.1.34 197475 username khalili2 197475 kill_reason Another user logged on this global unique id 197475 mac 197475 bytes_out 0 197475 bytes_in 0 197475 station_ip 5.119.158.183 197475 port 26 197475 unique_id port 197475 remote_ip 10.8.1.170 197476 username houshang 197476 mac 197476 bytes_out 0 197476 bytes_in 0 197476 station_ip 5.120.129.62 197476 port 17 197476 unique_id port 197477 username rashidi4690 197477 kill_reason Another user logged on this global unique id 197477 mac 197477 bytes_out 0 197477 bytes_in 0 197477 station_ip 113.203.14.133 197477 port 19 197477 unique_id port 197479 username pourshad 197479 mac 197479 bytes_out 0 197479 bytes_in 0 197479 station_ip 5.120.24.121 197479 port 21 197479 unique_id port 197479 remote_ip 10.8.1.46 197485 username hadibarzegar 197485 mac 197485 bytes_out 0 197485 bytes_in 0 197485 station_ip 5.119.215.192 197485 port 11 197485 unique_id port 197485 remote_ip 10.8.0.198 197487 username ahmadi1 197487 mac 197487 bytes_out 0 197487 bytes_in 0 197487 station_ip 83.123.151.66 197487 port 11 197487 unique_id port 197487 remote_ip 10.8.0.162 197488 username milan 197488 kill_reason Another user logged on this global unique id 197488 mac 197488 bytes_out 0 197488 bytes_in 0 197488 station_ip 5.119.177.28 197488 port 22 197488 unique_id port 197490 username rezaei 197490 mac 197490 bytes_out 0 197490 bytes_in 0 197490 station_ip 83.123.245.165 197490 port 16 197490 unique_id port 197490 remote_ip 10.8.0.194 197492 username yaghobi 197492 mac 197492 bytes_out 0 197492 bytes_in 0 197492 station_ip 83.123.151.172 197492 port 25 197492 unique_id port 197492 remote_ip 10.8.1.62 197462 port 27 197462 unique_id port 197462 remote_ip 10.8.1.138 197464 username meysam 197464 mac 197464 bytes_out 114180 197464 bytes_in 265092 197464 station_ip 188.159.252.14 197464 port 27 197464 unique_id port 197464 remote_ip 10.8.1.74 197467 username yaghobi 197467 mac 197467 bytes_out 0 197467 bytes_in 0 197467 station_ip 37.129.123.156 197467 port 13 197467 unique_id port 197467 remote_ip 10.8.0.14 197470 username nilufarrajaei 197470 mac 197470 bytes_out 0 197470 bytes_in 0 197470 station_ip 83.123.103.213 197470 port 5 197470 unique_id port 197470 remote_ip 10.8.0.170 197472 username rashidi4690 197472 kill_reason Another user logged on this global unique id 197472 mac 197472 bytes_out 0 197472 bytes_in 0 197472 station_ip 113.203.14.133 197472 port 19 197472 unique_id port 197480 username ahmadi1 197480 mac 197480 bytes_out 0 197480 bytes_in 0 197480 station_ip 83.123.151.66 197480 port 5 197480 unique_id port 197480 remote_ip 10.8.0.162 197481 username pourshad 197481 mac 197481 bytes_out 0 197481 bytes_in 0 197481 station_ip 5.120.24.121 197481 port 13 197481 unique_id port 197481 remote_ip 10.8.0.86 197483 username kharazmi2920 197483 mac 197483 bytes_out 2799957 197483 bytes_in 30153396 197483 station_ip 83.122.84.141 197483 port 11 197483 unique_id port 197483 remote_ip 10.8.0.134 197484 username hadibarzegar 197484 mac 197484 bytes_out 791171 197484 bytes_in 8137320 197484 station_ip 5.119.215.192 197484 port 25 197484 unique_id port 197484 remote_ip 10.8.1.182 197500 username milan 197500 kill_reason Another user logged on this global unique id 197500 mac 197500 bytes_out 0 197500 bytes_in 0 197500 station_ip 5.119.177.28 197500 port 22 197500 unique_id port 197505 username farhad3 197505 kill_reason Another user logged on this global unique id 197505 mac 197505 bytes_out 0 197505 bytes_in 0 197505 station_ip 5.119.169.90 197505 port 23 197505 unique_id port 197505 remote_ip 10.8.1.34 197511 username farhad3 197511 mac 197511 bytes_out 0 197511 bytes_in 0 197511 station_ip 5.119.169.90 197511 port 23 197511 unique_id port 197513 username hadibarzegar 197513 kill_reason Another user logged on this global unique id 197513 mac 197513 bytes_out 0 197513 bytes_in 0 197513 station_ip 37.129.234.138 197513 port 18 197513 unique_id port 197513 remote_ip 10.8.1.182 197519 username morteza4424 197519 kill_reason Another user logged on this global unique id 197519 mac 197519 bytes_out 0 197519 bytes_in 0 197519 station_ip 83.123.185.150 197519 port 17 197519 unique_id port 197524 username milan 197524 kill_reason Another user logged on this global unique id 197524 mac 197524 bytes_out 0 197524 bytes_in 0 197524 station_ip 5.119.177.28 197524 port 22 197524 unique_id port 197525 username fezealinaghi 197525 kill_reason Another user logged on this global unique id 197525 mac 197525 bytes_out 0 197525 bytes_in 0 197525 station_ip 37.129.24.166 197525 port 23 197525 unique_id port 197525 remote_ip 10.8.1.166 197527 username pourshad 197527 mac 197527 bytes_out 0 197527 bytes_in 0 197527 station_ip 5.120.24.121 197527 port 18 197527 unique_id port 197527 remote_ip 10.8.1.46 197529 username barzegar 197529 mac 197529 bytes_out 0 197529 bytes_in 0 197529 station_ip 5.119.251.17 197529 port 18 197529 unique_id port 197529 remote_ip 10.8.1.138 197531 username rashidi4690 197531 mac 197531 bytes_out 0 197531 bytes_in 0 197531 station_ip 5.120.100.183 197531 port 11 197531 unique_id port 197531 remote_ip 10.8.0.174 197532 username yaghobi 197533 username hamid1430 197473 port 22 197473 unique_id port 197474 username barzegar 197474 mac 197474 bytes_out 0 197474 bytes_in 0 197474 station_ip 5.119.251.17 197474 port 5 197474 unique_id port 197474 remote_ip 10.8.0.166 197478 username aminvpns6 197478 mac 197478 bytes_out 409554 197478 bytes_in 4204453 197478 station_ip 5.119.48.80 197478 port 27 197478 unique_id port 197478 remote_ip 10.8.1.186 197482 username barzegar 197482 mac 197482 bytes_out 0 197482 bytes_in 0 197482 station_ip 5.119.251.17 197482 port 21 197482 unique_id port 197482 remote_ip 10.8.1.138 197486 username barzegar 197486 mac 197486 bytes_out 0 197486 bytes_in 0 197486 station_ip 5.119.251.17 197486 port 25 197486 unique_id port 197486 remote_ip 10.8.1.138 197489 username esmaeilkazemi 197489 mac 197489 bytes_out 19470 197489 bytes_in 69290 197489 station_ip 83.122.36.78 197489 port 11 197489 unique_id port 197489 remote_ip 10.8.0.34 197491 username khalili2 197491 mac 197491 bytes_out 0 197491 bytes_in 0 197491 station_ip 5.119.158.183 197491 port 26 197491 unique_id port 197496 username yaghobi 197496 kill_reason Maximum check online fails reached 197496 mac 197496 bytes_out 0 197496 bytes_in 0 197496 station_ip 83.123.151.172 197496 port 25 197496 unique_id port 197498 username barzegar 197498 mac 197498 bytes_out 0 197498 bytes_in 0 197498 station_ip 5.119.251.17 197498 port 27 197498 unique_id port 197498 remote_ip 10.8.1.138 197499 username seyedrezaei2572 197499 mac 197499 bytes_out 902580 197499 bytes_in 27387106 197499 station_ip 83.122.95.148 197499 port 21 197499 unique_id port 197499 remote_ip 10.8.1.174 197502 username houshang 197502 kill_reason Another user logged on this global unique id 197502 mac 197502 bytes_out 0 197502 bytes_in 0 197502 station_ip 5.120.129.62 197502 port 11 197502 unique_id port 197502 remote_ip 10.8.0.46 197503 username morteza4424 197503 kill_reason Another user logged on this global unique id 197503 mac 197503 bytes_out 0 197503 bytes_in 0 197503 station_ip 83.123.185.150 197503 port 17 197503 unique_id port 197506 username kharazmi2920 197506 mac 197506 bytes_out 0 197506 bytes_in 0 197506 station_ip 83.122.84.141 197506 port 13 197506 unique_id port 197506 remote_ip 10.8.0.134 197509 username pourshad 197509 mac 197509 bytes_out 0 197509 bytes_in 0 197509 station_ip 5.120.24.121 197509 port 19 197509 unique_id port 197509 remote_ip 10.8.1.46 197514 username barzegar 197514 mac 197514 bytes_out 3162 197514 bytes_in 5066 197514 station_ip 5.119.251.17 197514 port 21 197514 unique_id port 197514 remote_ip 10.8.0.166 197517 username yaghobi 197517 kill_reason Maximum number of concurrent logins reached 197517 mac 197517 bytes_out 0 197517 bytes_in 0 197517 station_ip 37.129.208.203 197517 port 21 197517 unique_id port 197520 username barzegar 197520 mac 197520 bytes_out 2797 197520 bytes_in 4898 197520 station_ip 5.119.251.17 197520 port 16 197520 unique_id port 197520 remote_ip 10.8.0.166 197522 username hadibarzegar 197522 mac 197522 bytes_out 0 197522 bytes_in 0 197522 station_ip 5.119.215.192 197522 port 23 197522 unique_id port 197522 remote_ip 10.8.1.182 197526 username houshang 197526 mac 197526 bytes_out 0 197526 bytes_in 0 197526 station_ip 5.120.129.62 197526 port 11 197526 unique_id port 197530 username morteza4424 197530 kill_reason Another user logged on this global unique id 197530 mac 197530 bytes_out 0 197530 bytes_in 0 197530 station_ip 83.123.185.150 197530 port 17 197530 unique_id port 197493 username pourshad 197493 mac 197493 bytes_out 75649 197493 bytes_in 99922 197493 station_ip 5.120.24.121 197493 port 5 197493 unique_id port 197493 remote_ip 10.8.0.86 197494 username yaghobi 197494 kill_reason Maximum number of concurrent logins reached 197494 mac 197494 bytes_out 0 197494 bytes_in 0 197494 station_ip 83.123.151.172 197494 port 5 197494 unique_id port 197495 username yaghobi 197495 kill_reason Maximum number of concurrent logins reached 197495 mac 197495 bytes_out 0 197495 bytes_in 0 197495 station_ip 83.123.151.172 197495 port 27 197495 unique_id port 197497 username morteza4424 197497 kill_reason Another user logged on this global unique id 197497 mac 197497 bytes_out 0 197497 bytes_in 0 197497 station_ip 83.123.185.150 197497 port 17 197497 unique_id port 197497 remote_ip 10.8.0.138 197501 username rashidi4690 197501 mac 197501 bytes_out 0 197501 bytes_in 0 197501 station_ip 113.203.14.133 197501 port 19 197501 unique_id port 197504 username pourshad 197504 mac 197504 bytes_out 0 197504 bytes_in 0 197504 station_ip 5.120.24.121 197504 port 26 197504 unique_id port 197504 remote_ip 10.8.1.46 197507 username alirezaza 197507 unique_id port 197507 terminate_cause User-Request 197507 bytes_out 2496364 197507 bytes_in 12610479 197507 station_ip 5.202.133.213 197507 port 15729485 197507 nas_port_type Virtual 197507 remote_ip 5.5.5.255 197508 username pourshad 197508 mac 197508 bytes_out 19413 197508 bytes_in 39279 197508 station_ip 5.120.24.121 197508 port 19 197508 unique_id port 197508 remote_ip 10.8.1.46 197510 username barzegar 197510 kill_reason Maximum check online fails reached 197510 mac 197510 bytes_out 0 197510 bytes_in 0 197510 station_ip 5.119.251.17 197510 port 21 197510 unique_id port 197512 username morteza4424 197512 kill_reason Another user logged on this global unique id 197512 mac 197512 bytes_out 0 197512 bytes_in 0 197512 station_ip 83.123.185.150 197512 port 17 197512 unique_id port 197515 username houshang 197515 kill_reason Another user logged on this global unique id 197515 mac 197515 bytes_out 0 197515 bytes_in 0 197515 station_ip 5.120.129.62 197515 port 11 197515 unique_id port 197516 username rezaei 197516 mac 197516 bytes_out 0 197516 bytes_in 0 197516 station_ip 5.120.128.254 197516 port 18 197516 unique_id port 197516 remote_ip 10.8.0.194 197518 username yaghobi 197518 mac 197518 bytes_out 0 197518 bytes_in 0 197518 station_ip 37.129.95.45 197518 port 16 197518 unique_id port 197518 remote_ip 10.8.0.14 197521 username pourshad 197521 mac 197521 bytes_out 0 197521 bytes_in 0 197521 station_ip 5.120.24.121 197521 port 18 197521 unique_id port 197521 remote_ip 10.8.1.46 197523 username milan 197523 kill_reason Another user logged on this global unique id 197523 mac 197523 bytes_out 0 197523 bytes_in 0 197523 station_ip 5.119.177.28 197523 port 22 197523 unique_id port 197528 username aminvpns6 197528 mac 197528 bytes_out 383701 197528 bytes_in 2073235 197528 station_ip 5.119.199.132 197528 port 26 197528 unique_id port 197528 remote_ip 10.8.1.186 197538 username farhad3 197538 kill_reason Another user logged on this global unique id 197538 mac 197538 bytes_out 0 197538 bytes_in 0 197538 station_ip 5.119.169.90 197538 port 19 197538 unique_id port 197538 remote_ip 10.8.1.34 197540 username morteza4424 197540 mac 197540 bytes_out 0 197540 bytes_in 0 197540 station_ip 83.123.185.150 197540 port 17 197540 unique_id port 197543 username pourshad 197543 mac 197543 bytes_out 9869 197543 bytes_in 11261 197543 station_ip 5.120.24.121 197543 port 26 197532 kill_reason Maximum number of concurrent logins reached 197532 mac 197532 bytes_out 0 197532 bytes_in 0 197532 station_ip 83.122.51.71 197532 port 28 197532 unique_id port 197534 username yaghobi 197534 mac 197534 bytes_out 0 197534 bytes_in 0 197534 station_ip 83.123.46.85 197534 port 26 197534 unique_id port 197534 remote_ip 10.8.1.62 197536 username khademi 197536 kill_reason Another user logged on this global unique id 197536 mac 197536 bytes_out 0 197536 bytes_in 0 197536 station_ip 83.123.72.132 197536 port 16 197536 unique_id port 197536 remote_ip 10.8.0.202 197537 username yaghobi 197537 kill_reason Another user logged on this global unique id 197537 mac 197537 bytes_out 0 197537 bytes_in 0 197537 station_ip 83.122.51.71 197537 port 18 197537 unique_id port 197537 remote_ip 10.8.0.14 197541 username pourshad 197541 mac 197541 bytes_out 150687 197541 bytes_in 944266 197541 station_ip 5.120.24.121 197541 port 27 197541 unique_id port 197541 remote_ip 10.8.1.46 197548 username farhad3 197548 mac 197548 bytes_out 0 197548 bytes_in 0 197548 station_ip 5.119.169.90 197548 port 19 197548 unique_id port 197551 username barzegar 197551 mac 197551 bytes_out 77143 197551 bytes_in 353841 197551 station_ip 5.119.251.17 197551 port 19 197551 unique_id port 197551 remote_ip 10.8.1.138 197555 username houshang 197555 kill_reason Another user logged on this global unique id 197555 mac 197555 bytes_out 0 197555 bytes_in 0 197555 station_ip 5.120.129.62 197555 port 26 197555 unique_id port 197555 remote_ip 10.8.1.154 197557 username hamid.e 197557 unique_id port 197557 terminate_cause Lost-Carrier 197557 bytes_out 7255177 197557 bytes_in 216204837 197557 station_ip 31.56.157.219 197557 port 15729487 197557 nas_port_type Virtual 197557 remote_ip 5.5.5.243 197558 username pourshad 197558 mac 197558 bytes_out 0 197558 bytes_in 0 197558 station_ip 5.120.24.121 197558 port 27 197558 unique_id port 197558 remote_ip 10.8.1.46 197562 username aminvpn 197562 unique_id port 197562 terminate_cause Lost-Carrier 197562 bytes_out 1776447 197562 bytes_in 35939013 197562 station_ip 2.183.242.153 197562 port 15729486 197562 nas_port_type Virtual 197562 remote_ip 5.5.5.255 197564 username alipour1506 197564 kill_reason Another user logged on this global unique id 197564 mac 197564 bytes_out 0 197564 bytes_in 0 197564 station_ip 83.122.220.218 197564 port 22 197564 unique_id port 197564 remote_ip 10.8.0.114 197566 username akbari0070 197566 mac 197566 bytes_out 0 197566 bytes_in 0 197566 station_ip 83.122.109.235 197566 port 27 197566 unique_id port 197566 remote_ip 10.8.1.190 197571 username askarzadeh9013 197571 mac 197571 bytes_out 2689338 197571 bytes_in 38411105 197571 station_ip 83.122.108.205 197571 port 23 197571 unique_id port 197571 remote_ip 10.8.0.130 197577 username esmaeilkazemi 197577 mac 197577 bytes_out 0 197577 bytes_in 0 197577 station_ip 83.122.36.78 197577 port 11 197577 unique_id port 197577 remote_ip 10.8.0.34 197578 username yaghobi 197578 kill_reason Maximum number of concurrent logins reached 197578 mac 197578 bytes_out 0 197578 bytes_in 0 197578 station_ip 113.203.12.224 197578 port 11 197578 unique_id port 197584 username yaghobi 197584 mac 197584 bytes_out 0 197584 bytes_in 0 197584 station_ip 113.203.12.224 197584 port 11 197584 unique_id port 197584 remote_ip 10.8.0.14 197586 username barzegar 197586 mac 197586 bytes_out 94405 197586 bytes_in 141379 197586 station_ip 5.119.251.17 197586 port 22 197586 unique_id port 197586 remote_ip 10.8.1.138 197588 username barzegar 197588 mac 197533 kill_reason Another user logged on this global unique id 197533 mac 197533 bytes_out 0 197533 bytes_in 0 197533 station_ip 37.129.98.57 197533 port 22 197533 unique_id port 197533 remote_ip 10.8.0.42 197535 username barzegar 197535 mac 197535 bytes_out 0 197535 bytes_in 0 197535 station_ip 5.119.251.17 197535 port 18 197535 unique_id port 197535 remote_ip 10.8.1.138 197539 username rezaei 197539 mac 197539 bytes_out 0 197539 bytes_in 0 197539 station_ip 5.120.128.254 197539 port 11 197539 unique_id port 197539 remote_ip 10.8.0.194 197542 username rezaei 197542 mac 197542 bytes_out 803284 197542 bytes_in 9666482 197542 station_ip 5.120.128.254 197542 port 18 197542 unique_id port 197542 remote_ip 10.8.1.90 197545 username yaghobi 197545 mac 197545 bytes_out 0 197545 bytes_in 0 197545 station_ip 83.122.51.71 197545 port 11 197545 unique_id port 197545 remote_ip 10.8.0.14 197546 username milan 197546 kill_reason Another user logged on this global unique id 197546 mac 197546 bytes_out 0 197546 bytes_in 0 197546 station_ip 5.119.177.28 197546 port 22 197546 unique_id port 197553 username milan 197553 mac 197553 bytes_out 0 197553 bytes_in 0 197553 station_ip 5.119.177.28 197553 port 22 197553 unique_id port 197559 username alipour1506 197559 mac 197559 bytes_out 0 197559 bytes_in 0 197559 station_ip 83.122.220.218 197559 port 23 197559 unique_id port 197559 remote_ip 10.8.0.114 197561 username barzegar 197561 mac 197561 bytes_out 0 197561 bytes_in 0 197561 station_ip 5.119.251.17 197561 port 21 197561 unique_id port 197561 remote_ip 10.8.0.166 197565 username barzegar 197565 mac 197565 bytes_out 0 197565 bytes_in 0 197565 station_ip 5.119.251.17 197565 port 27 197565 unique_id port 197565 remote_ip 10.8.1.138 197567 username teymori5660 197567 mac 197567 bytes_out 0 197567 bytes_in 0 197567 station_ip 5.119.59.143 197567 port 19 197567 unique_id port 197570 username houshang 197570 mac 197570 bytes_out 0 197570 bytes_in 0 197570 station_ip 5.120.129.62 197570 port 26 197570 unique_id port 197573 username houshang 197573 mac 197573 bytes_out 0 197573 bytes_in 0 197573 station_ip 5.120.129.62 197573 port 11 197573 unique_id port 197573 remote_ip 10.8.0.46 197574 username barzegar 197574 mac 197574 bytes_out 0 197574 bytes_in 0 197574 station_ip 5.119.251.17 197574 port 18 197574 unique_id port 197574 remote_ip 10.8.1.138 197575 username houshang 197575 kill_reason Another user logged on this global unique id 197575 mac 197575 bytes_out 0 197575 bytes_in 0 197575 station_ip 5.120.129.62 197575 port 18 197575 unique_id port 197575 remote_ip 10.8.1.154 197579 username pourshad 197579 mac 197579 bytes_out 174353 197579 bytes_in 369986 197579 station_ip 5.120.24.121 197579 port 22 197579 unique_id port 197579 remote_ip 10.8.1.46 197580 username yaghobi 197580 mac 197580 bytes_out 385744 197580 bytes_in 601645 197580 station_ip 113.203.12.224 197580 port 17 197580 unique_id port 197580 remote_ip 10.8.0.14 197581 username seyedrezaei2572 197581 kill_reason Another user logged on this global unique id 197581 mac 197581 bytes_out 0 197581 bytes_in 0 197581 station_ip 83.122.95.148 197581 port 5 197581 unique_id port 197581 remote_ip 10.8.0.126 197585 username pourshad 197585 mac 197585 bytes_out 18662 197585 bytes_in 27148 197585 station_ip 5.120.24.121 197585 port 22 197585 unique_id port 197585 remote_ip 10.8.1.46 197587 username pourshad 197587 mac 197587 bytes_out 20417 197587 bytes_in 29140 197543 unique_id port 197543 remote_ip 10.8.1.46 197544 username barzegar 197544 mac 197544 bytes_out 0 197544 bytes_in 0 197544 station_ip 5.119.251.17 197544 port 26 197544 unique_id port 197544 remote_ip 10.8.1.138 197547 username yaghobi 197547 mac 197547 bytes_out 0 197547 bytes_in 0 197547 station_ip 113.203.12.224 197547 port 27 197547 unique_id port 197547 remote_ip 10.8.1.62 197549 username pourshad 197549 mac 197549 bytes_out 0 197549 bytes_in 0 197549 station_ip 5.120.24.121 197549 port 26 197549 unique_id port 197549 remote_ip 10.8.1.46 197550 username soleymani5056 197550 mac 197550 bytes_out 58461 197550 bytes_in 162042 197550 station_ip 5.120.32.87 197550 port 28 197550 unique_id port 197550 remote_ip 10.8.1.98 197552 username askarzadeh9013 197552 mac 197552 bytes_out 4273839 197552 bytes_in 45305621 197552 station_ip 83.122.108.205 197552 port 21 197552 unique_id port 197552 remote_ip 10.8.0.130 197554 username akbari0070 197554 kill_reason Another user logged on this global unique id 197554 mac 197554 bytes_out 0 197554 bytes_in 0 197554 station_ip 83.122.109.235 197554 port 11 197554 unique_id port 197554 remote_ip 10.8.0.10 197556 username barzegar 197556 mac 197556 bytes_out 0 197556 bytes_in 0 197556 station_ip 5.119.251.17 197556 port 21 197556 unique_id port 197556 remote_ip 10.8.0.166 197560 username teymori5660 197560 kill_reason Another user logged on this global unique id 197560 mac 197560 bytes_out 0 197560 bytes_in 0 197560 station_ip 5.119.59.143 197560 port 19 197560 unique_id port 197560 remote_ip 10.8.1.130 197563 username akbari0070 197563 mac 197563 bytes_out 0 197563 bytes_in 0 197563 station_ip 83.122.109.235 197563 port 11 197563 unique_id port 197568 username askarzadeh9013 197568 mac 197568 bytes_out 3229827 197568 bytes_in 22824465 197568 station_ip 83.122.108.205 197568 port 18 197568 unique_id port 197568 remote_ip 10.8.0.130 197569 username kalantary6037 197569 mac 197569 bytes_out 0 197569 bytes_in 0 197569 station_ip 37.129.65.103 197569 port 11 197569 unique_id port 197569 remote_ip 10.8.0.158 197572 username khalili2 197572 kill_reason Another user logged on this global unique id 197572 mac 197572 bytes_out 0 197572 bytes_in 0 197572 station_ip 5.119.158.183 197572 port 27 197572 unique_id port 197572 remote_ip 10.8.1.170 197576 username barzegar 197576 mac 197576 bytes_out 0 197576 bytes_in 0 197576 station_ip 5.119.251.17 197576 port 18 197576 unique_id port 197576 remote_ip 10.8.0.166 197582 username pourshad 197582 mac 197582 bytes_out 0 197582 bytes_in 0 197582 station_ip 5.120.24.121 197582 port 19 197582 unique_id port 197582 remote_ip 10.8.1.46 197583 username yaghobi 197583 kill_reason Maximum number of concurrent logins reached 197583 mac 197583 bytes_out 0 197583 bytes_in 0 197583 station_ip 113.203.12.224 197583 port 17 197583 unique_id port 197589 username houshang 197589 kill_reason Another user logged on this global unique id 197589 mac 197589 bytes_out 0 197589 bytes_in 0 197589 station_ip 5.120.129.62 197589 port 18 197589 unique_id port 197591 username yaghobi 197591 mac 197591 bytes_out 0 197591 bytes_in 0 197591 station_ip 113.203.12.224 197591 port 11 197591 unique_id port 197591 remote_ip 10.8.0.14 197593 username seyedrezaei2572 197593 kill_reason Another user logged on this global unique id 197593 mac 197593 bytes_out 0 197593 bytes_in 0 197593 station_ip 83.122.95.148 197593 port 5 197593 unique_id port 197597 username yaghobi 197597 mac 197597 bytes_out 234764 197597 bytes_in 316173 197587 station_ip 5.120.24.121 197587 port 19 197587 unique_id port 197587 remote_ip 10.8.1.46 197590 username yaghobi 197590 kill_reason Maximum number of concurrent logins reached 197590 mac 197590 bytes_out 0 197590 bytes_in 0 197590 station_ip 37.129.218.72 197590 port 18 197590 unique_id port 197592 username pourshad 197592 mac 197592 bytes_out 38713 197592 bytes_in 51518 197592 station_ip 5.120.24.121 197592 port 19 197592 unique_id port 197592 remote_ip 10.8.1.46 197594 username khalili2 197594 kill_reason Another user logged on this global unique id 197594 mac 197594 bytes_out 0 197594 bytes_in 0 197594 station_ip 5.119.158.183 197594 port 27 197594 unique_id port 197600 username seyedrezaei2572 197600 kill_reason Another user logged on this global unique id 197600 mac 197600 bytes_out 0 197600 bytes_in 0 197600 station_ip 83.122.95.148 197600 port 5 197600 unique_id port 197605 username alihosseini1 197605 mac 197605 bytes_out 0 197605 bytes_in 0 197605 station_ip 5.119.139.58 197605 port 28 197605 unique_id port 197605 remote_ip 10.8.1.194 197607 username kalantary6037 197607 kill_reason Another user logged on this global unique id 197607 mac 197607 bytes_out 0 197607 bytes_in 0 197607 station_ip 37.129.37.11 197607 port 18 197607 unique_id port 197607 remote_ip 10.8.0.158 197609 username sabaghnezhad 197609 mac 197609 bytes_out 0 197609 bytes_in 0 197609 station_ip 83.123.216.157 197609 port 11 197609 unique_id port 197609 remote_ip 10.8.0.26 197611 username farhad3 197611 mac 197611 bytes_out 0 197611 bytes_in 0 197611 station_ip 5.119.169.90 197611 port 26 197611 unique_id port 197611 remote_ip 10.8.1.34 197614 username seyedrezaei2572 197614 kill_reason Another user logged on this global unique id 197614 mac 197614 bytes_out 0 197614 bytes_in 0 197614 station_ip 83.122.95.148 197614 port 5 197614 unique_id port 197615 username khalili2 197615 mac 197615 bytes_out 0 197615 bytes_in 0 197615 station_ip 5.119.158.183 197615 port 27 197615 unique_id port 197616 username barzegar 197616 mac 197616 bytes_out 4350 197616 bytes_in 6720 197616 station_ip 5.119.251.17 197616 port 11 197616 unique_id port 197616 remote_ip 10.8.0.166 197617 username farhad3 197617 mac 197617 bytes_out 0 197617 bytes_in 0 197617 station_ip 5.119.169.90 197617 port 23 197617 unique_id port 197617 remote_ip 10.8.1.34 197620 username saeed9658 197620 kill_reason Another user logged on this global unique id 197620 mac 197620 bytes_out 0 197620 bytes_in 0 197620 station_ip 5.120.81.250 197620 port 28 197620 unique_id port 197623 username farhad3 197623 mac 197623 bytes_out 0 197623 bytes_in 0 197623 station_ip 5.119.169.90 197623 port 13 197623 unique_id port 197623 remote_ip 10.8.0.122 197625 username farhad3 197625 mac 197625 bytes_out 0 197625 bytes_in 0 197625 station_ip 5.119.169.90 197625 port 11 197625 unique_id port 197625 remote_ip 10.8.0.122 197626 username barzegar 197626 mac 197626 bytes_out 3963 197626 bytes_in 11413 197626 station_ip 5.119.251.17 197626 port 23 197626 unique_id port 197626 remote_ip 10.8.1.138 197628 username farhad3 197628 mac 197628 bytes_out 20489 197628 bytes_in 154639 197628 station_ip 5.119.169.90 197628 port 26 197628 unique_id port 197628 remote_ip 10.8.1.34 197630 username alipour1506 197630 mac 197630 bytes_out 0 197630 bytes_in 0 197630 station_ip 83.122.220.218 197630 port 23 197630 unique_id port 197630 remote_ip 10.8.1.198 197633 username houshang 197633 kill_reason Another user logged on this global unique id 197633 mac 197633 bytes_out 0 197588 bytes_out 125518 197588 bytes_in 715338 197588 station_ip 5.119.251.17 197588 port 22 197588 unique_id port 197588 remote_ip 10.8.1.138 197595 username sabaghnezhad 197595 mac 197595 bytes_out 156134 197595 bytes_in 970813 197595 station_ip 83.123.216.157 197595 port 17 197595 unique_id port 197595 remote_ip 10.8.0.26 197596 username houshang 197596 kill_reason Another user logged on this global unique id 197596 mac 197596 bytes_out 0 197596 bytes_in 0 197596 station_ip 5.120.129.62 197596 port 18 197596 unique_id port 197598 username kalantary6037 197598 mac 197598 bytes_out 7208641 197598 bytes_in 79938195 197598 station_ip 37.129.37.11 197598 port 17 197598 unique_id port 197598 remote_ip 10.8.0.158 197599 username saeeddamghani 197599 mac 197599 bytes_out 0 197599 bytes_in 0 197599 station_ip 5.214.34.21 197599 port 21 197599 unique_id port 197599 remote_ip 10.8.0.38 197601 username pourshad 197601 mac 197601 bytes_out 339094 197601 bytes_in 1257947 197601 station_ip 5.120.24.121 197601 port 19 197601 unique_id port 197601 remote_ip 10.8.1.46 197603 username houshang 197603 kill_reason Another user logged on this global unique id 197603 mac 197603 bytes_out 0 197603 bytes_in 0 197603 station_ip 5.120.129.62 197603 port 18 197603 unique_id port 197608 username houshang 197608 mac 197608 bytes_out 0 197608 bytes_in 0 197608 station_ip 5.120.129.62 197608 port 18 197608 unique_id port 197610 username barzegar 197610 mac 197610 bytes_out 3063632 197610 bytes_in 560171 197610 station_ip 5.119.251.17 197610 port 23 197610 unique_id port 197610 remote_ip 10.8.1.138 197621 username kharazmi2920 197621 mac 197621 bytes_out 0 197621 bytes_in 0 197621 station_ip 83.122.84.141 197621 port 13 197621 unique_id port 197621 remote_ip 10.8.0.134 197629 username saeed9658 197629 kill_reason Another user logged on this global unique id 197629 mac 197629 bytes_out 0 197629 bytes_in 0 197629 station_ip 5.120.81.250 197629 port 28 197629 unique_id port 197631 username rashidi4690 197631 mac 197631 bytes_out 2808595 197631 bytes_in 29489671 197631 station_ip 5.120.100.183 197631 port 29 197631 unique_id port 197631 remote_ip 10.8.1.142 197634 username alipour1506 197634 mac 197634 bytes_out 58485 197634 bytes_in 59624 197634 station_ip 83.123.149.97 197634 port 13 197634 unique_id port 197634 remote_ip 10.8.0.114 197635 username barzegar 197635 mac 197635 bytes_out 0 197635 bytes_in 0 197635 station_ip 5.119.251.17 197635 port 23 197635 unique_id port 197635 remote_ip 10.8.1.138 197640 username khademi 197640 kill_reason Another user logged on this global unique id 197640 mac 197640 bytes_out 0 197640 bytes_in 0 197640 station_ip 83.123.72.132 197640 port 16 197640 unique_id port 197644 username farhad3 197644 kill_reason Another user logged on this global unique id 197644 mac 197644 bytes_out 0 197644 bytes_in 0 197644 station_ip 5.119.169.90 197644 port 26 197644 unique_id port 197644 remote_ip 10.8.1.34 197647 username houshang 197647 mac 197647 bytes_out 0 197647 bytes_in 0 197647 station_ip 5.120.129.62 197647 port 18 197647 unique_id port 197649 username saeed9658 197649 mac 197649 bytes_out 0 197649 bytes_in 0 197649 station_ip 5.120.81.250 197649 port 29 197649 unique_id port 197649 remote_ip 10.8.1.110 197654 username shahruz 197654 mac 197654 bytes_out 0 197654 bytes_in 0 197654 station_ip 83.122.2.53 197654 port 5 197654 unique_id port 197654 remote_ip 10.8.0.178 197655 username tahmorsi 197655 mac 197655 bytes_out 2254066 197597 station_ip 37.129.218.72 197597 port 11 197597 unique_id port 197597 remote_ip 10.8.0.14 197602 username aminvpn 197602 unique_id port 197602 terminate_cause User-Request 197602 bytes_out 19211706 197602 bytes_in 575617094 197602 station_ip 5.160.115.120 197602 port 15729488 197602 nas_port_type Virtual 197602 remote_ip 5.5.5.255 197604 username pourshad 197604 mac 197604 bytes_out 15944 197604 bytes_in 36652 197604 station_ip 5.120.24.121 197604 port 17 197604 unique_id port 197604 remote_ip 10.8.0.86 197606 username fezealinaghi 197606 mac 197606 bytes_out 2435296 197606 bytes_in 30552185 197606 station_ip 37.129.24.166 197606 port 22 197606 unique_id port 197606 remote_ip 10.8.1.166 197612 username alinezhad 197612 kill_reason Absolute expiration date has reached 197612 unique_id port 197612 bytes_out 0 197612 bytes_in 0 197612 station_ip 5.202.17.48 197612 port 15729489 197612 nas_port_type Virtual 197613 username saeed9658 197613 kill_reason Another user logged on this global unique id 197613 mac 197613 bytes_out 0 197613 bytes_in 0 197613 station_ip 5.120.81.250 197613 port 28 197613 unique_id port 197613 remote_ip 10.8.1.110 197618 username alirezaza 197618 unique_id port 197618 terminate_cause Lost-Carrier 197618 bytes_out 532949 197618 bytes_in 15794090 197618 station_ip 5.202.11.37 197618 port 15729490 197618 nas_port_type Virtual 197618 remote_ip 5.5.5.255 197619 username barzegar 197619 mac 197619 bytes_out 6286 197619 bytes_in 7423 197619 station_ip 5.119.251.17 197619 port 26 197619 unique_id port 197619 remote_ip 10.8.1.138 197622 username kalantary6037 197622 mac 197622 bytes_out 577215 197622 bytes_in 4344300 197622 station_ip 37.129.60.155 197622 port 11 197622 unique_id port 197622 remote_ip 10.8.0.158 197624 username houshang 197624 kill_reason Another user logged on this global unique id 197624 mac 197624 bytes_out 0 197624 bytes_in 0 197624 station_ip 5.120.129.62 197624 port 18 197624 unique_id port 197627 username pourshad 197627 mac 197627 bytes_out 195725 197627 bytes_in 1280002 197627 station_ip 5.120.24.121 197627 port 22 197627 unique_id port 197627 remote_ip 10.8.1.46 197632 username sekonji0496 197632 mac 197632 bytes_out 0 197632 bytes_in 0 197632 station_ip 83.123.202.216 197632 port 11 197632 unique_id port 197632 remote_ip 10.8.0.98 197638 username yaghobi 197638 mac 197638 bytes_out 66582 197638 bytes_in 72265 197638 station_ip 37.129.122.109 197638 port 11 197638 unique_id port 197638 remote_ip 10.8.0.14 197652 username farhad3 197652 kill_reason Another user logged on this global unique id 197652 mac 197652 bytes_out 0 197652 bytes_in 0 197652 station_ip 5.119.169.90 197652 port 26 197652 unique_id port 197657 username saeed9658 197657 mac 197657 bytes_out 0 197657 bytes_in 0 197657 station_ip 5.120.81.250 197657 port 18 197657 unique_id port 197657 remote_ip 10.8.1.110 197659 username morteza4424 197659 mac 197659 bytes_out 0 197659 bytes_in 0 197659 station_ip 37.129.175.110 197659 port 11 197659 unique_id port 197659 remote_ip 10.8.0.138 197661 username barzegar 197661 mac 197661 bytes_out 0 197661 bytes_in 0 197661 station_ip 5.119.251.17 197661 port 32 197661 unique_id port 197661 remote_ip 10.8.1.138 197669 username ahmadi1 197669 mac 197669 bytes_out 0 197669 bytes_in 0 197669 station_ip 83.122.72.16 197669 port 11 197669 unique_id port 197669 remote_ip 10.8.0.162 197672 username saeed9658 197672 mac 197672 bytes_out 0 197672 bytes_in 0 197672 station_ip 5.120.81.250 197672 port 29 197672 unique_id port 197672 remote_ip 10.8.1.110 197633 bytes_in 0 197633 station_ip 5.120.129.62 197633 port 18 197633 unique_id port 197636 username saeed9658 197636 kill_reason Another user logged on this global unique id 197636 mac 197636 bytes_out 0 197636 bytes_in 0 197636 station_ip 5.120.81.250 197636 port 28 197636 unique_id port 197637 username barzegar 197637 mac 197637 bytes_out 0 197637 bytes_in 0 197637 station_ip 5.119.251.17 197637 port 23 197637 unique_id port 197637 remote_ip 10.8.1.138 197639 username kalantary6037 197639 mac 197639 bytes_out 0 197639 bytes_in 0 197639 station_ip 37.129.54.187 197639 port 13 197639 unique_id port 197639 remote_ip 10.8.0.158 197641 username saeed9658 197641 mac 197641 bytes_out 0 197641 bytes_in 0 197641 station_ip 5.120.81.250 197641 port 28 197641 unique_id port 197642 username houshang 197642 kill_reason Another user logged on this global unique id 197642 mac 197642 bytes_out 0 197642 bytes_in 0 197642 station_ip 5.120.129.62 197642 port 18 197642 unique_id port 197643 username sabaghnezhad 197643 mac 197643 bytes_out 0 197643 bytes_in 0 197643 station_ip 83.123.216.157 197643 port 13 197643 unique_id port 197643 remote_ip 10.8.0.26 197645 username saeed9658 197645 kill_reason Maximum check online fails reached 197645 mac 197645 bytes_out 0 197645 bytes_in 0 197645 station_ip 5.120.81.250 197645 port 28 197645 unique_id port 197646 username barzegar 197646 mac 197646 bytes_out 0 197646 bytes_in 0 197646 station_ip 5.119.251.17 197646 port 13 197646 unique_id port 197646 remote_ip 10.8.0.166 197648 username saeed9658 197648 mac 197648 bytes_out 11039 197648 bytes_in 15245 197648 station_ip 5.120.81.250 197648 port 29 197648 unique_id port 197648 remote_ip 10.8.1.110 197650 username seyedrezaei2572 197650 mac 197650 bytes_out 0 197650 bytes_in 0 197650 station_ip 83.122.95.148 197650 port 5 197650 unique_id port 197651 username aminvpns6 197651 mac 197651 bytes_out 140482 197651 bytes_in 340044 197651 station_ip 5.119.39.87 197651 port 18 197651 unique_id port 197651 remote_ip 10.8.1.186 197653 username kalantary6037 197653 mac 197653 bytes_out 0 197653 bytes_in 0 197653 station_ip 37.129.60.131 197653 port 5 197653 unique_id port 197653 remote_ip 10.8.0.158 197656 username saeed9658 197656 mac 197656 bytes_out 2395 197656 bytes_in 4813 197656 station_ip 5.120.81.250 197656 port 18 197656 unique_id port 197656 remote_ip 10.8.1.110 197658 username sabaghnezhad 197658 mac 197658 bytes_out 0 197658 bytes_in 0 197658 station_ip 83.123.216.157 197658 port 5 197658 unique_id port 197658 remote_ip 10.8.0.26 197660 username nilufarrajaei 197660 mac 197660 bytes_out 0 197660 bytes_in 0 197660 station_ip 37.129.200.59 197660 port 13 197660 unique_id port 197660 remote_ip 10.8.0.170 197662 username saeed9658 197662 mac 197662 bytes_out 29884 197662 bytes_in 100532 197662 station_ip 5.120.81.250 197662 port 32 197662 unique_id port 197662 remote_ip 10.8.1.110 197663 username yaghobi 197663 mac 197663 bytes_out 0 197663 bytes_in 0 197663 station_ip 113.203.7.94 197663 port 11 197663 unique_id port 197663 remote_ip 10.8.0.14 197666 username khalili2 197666 mac 197666 bytes_out 1134410 197666 bytes_in 13715516 197666 station_ip 5.119.158.183 197666 port 29 197666 unique_id port 197666 remote_ip 10.8.1.170 197667 username rashidi4690 197667 kill_reason Another user logged on this global unique id 197667 mac 197667 bytes_out 0 197667 bytes_in 0 197667 station_ip 5.119.173.124 197667 port 18 197667 unique_id port 197655 bytes_in 34278636 197655 station_ip 86.57.63.254 197655 port 30 197655 unique_id port 197655 remote_ip 10.8.1.42 197664 username farhad3 197664 kill_reason Another user logged on this global unique id 197664 mac 197664 bytes_out 0 197664 bytes_in 0 197664 station_ip 5.119.169.90 197664 port 26 197664 unique_id port 197665 username farhad3 197665 mac 197665 bytes_out 0 197665 bytes_in 0 197665 station_ip 5.119.169.90 197665 port 26 197665 unique_id port 197674 username aminvpnpc 197674 mac 197674 bytes_out 2083990 197674 bytes_in 14770087 197674 station_ip 5.119.39.87 197674 port 30 197674 unique_id port 197674 remote_ip 10.8.1.202 197676 username shahruz 197676 mac 197676 bytes_out 0 197676 bytes_in 0 197676 station_ip 5.120.93.41 197676 port 29 197676 unique_id port 197676 remote_ip 10.8.1.150 197679 username motamedi9772 197679 mac 197679 bytes_out 0 197679 bytes_in 0 197679 station_ip 83.123.39.216 197679 port 18 197679 unique_id port 197680 username yaghobi 197680 kill_reason Maximum number of concurrent logins reached 197680 mac 197680 bytes_out 0 197680 bytes_in 0 197680 station_ip 113.203.67.51 197680 port 18 197680 unique_id port 197687 username nilufarrajaei 197687 mac 197687 bytes_out 0 197687 bytes_in 0 197687 station_ip 37.129.200.59 197687 port 21 197687 unique_id port 197687 remote_ip 10.8.0.170 197688 username nilufarrajaei 197688 mac 197688 bytes_out 104796 197688 bytes_in 850314 197688 station_ip 37.129.200.59 197688 port 18 197688 unique_id port 197688 remote_ip 10.8.0.170 197690 username farhad3 197690 kill_reason Another user logged on this global unique id 197690 mac 197690 bytes_out 0 197690 bytes_in 0 197690 station_ip 5.119.169.90 197690 port 22 197690 unique_id port 197690 remote_ip 10.8.1.34 197691 username barzegar 197691 mac 197691 bytes_out 4043 197691 bytes_in 7216 197691 station_ip 5.119.251.17 197691 port 26 197691 unique_id port 197691 remote_ip 10.8.1.138 197694 username morteza4424 197694 mac 197694 bytes_out 0 197694 bytes_in 0 197694 station_ip 37.129.157.242 197694 port 11 197694 unique_id port 197694 remote_ip 10.8.0.138 197698 username aminvpnpc 197698 mac 197698 bytes_out 0 197698 bytes_in 0 197698 station_ip 138.201.2.124 197698 port 11 197698 unique_id port 197698 remote_ip 10.8.0.22 197700 username barzegar 197700 mac 197700 bytes_out 2477 197700 bytes_in 4874 197700 station_ip 5.119.251.17 197700 port 26 197700 unique_id port 197700 remote_ip 10.8.1.138 197702 username farhad3 197702 mac 197702 bytes_out 0 197702 bytes_in 0 197702 station_ip 5.119.169.90 197702 port 22 197702 unique_id port 197703 username hosseine 197703 kill_reason Another user logged on this global unique id 197703 mac 197703 bytes_out 0 197703 bytes_in 0 197703 station_ip 37.129.255.60 197703 port 17 197703 unique_id port 197703 remote_ip 10.8.0.18 197704 username pourshad 197704 mac 197704 bytes_out 77705 197704 bytes_in 101720 197704 station_ip 5.120.24.121 197704 port 18 197704 unique_id port 197704 remote_ip 10.8.1.46 197706 username rezaei 197706 mac 197706 bytes_out 28872 197706 bytes_in 64106 197706 station_ip 5.120.128.254 197706 port 23 197706 unique_id port 197706 remote_ip 10.8.1.90 197713 username aminvpn 197713 unique_id port 197713 terminate_cause User-Request 197713 bytes_out 1488350 197713 bytes_in 10415256 197713 station_ip 5.119.39.87 197713 port 15729495 197713 nas_port_type Virtual 197713 remote_ip 5.5.5.214 197719 username motamedi9772 197719 mac 197719 bytes_out 0 197719 bytes_in 0 197667 remote_ip 10.8.1.142 197668 username nilufarrajaei 197668 mac 197668 bytes_out 0 197668 bytes_in 0 197668 station_ip 37.129.200.59 197668 port 17 197668 unique_id port 197668 remote_ip 10.8.0.170 197670 username ahmadi1 197670 mac 197670 bytes_out 0 197670 bytes_in 0 197670 station_ip 83.122.72.16 197670 port 11 197670 unique_id port 197670 remote_ip 10.8.0.162 197671 username yaghobi 197671 mac 197671 bytes_out 197745 197671 bytes_in 332945 197671 station_ip 83.122.33.88 197671 port 32 197671 unique_id port 197671 remote_ip 10.8.1.62 197673 username motamedi9772 197673 kill_reason Another user logged on this global unique id 197673 mac 197673 bytes_out 0 197673 bytes_in 0 197673 station_ip 83.123.39.216 197673 port 18 197673 unique_id port 197673 remote_ip 10.8.0.54 197677 username teymori5660 197677 kill_reason Another user logged on this global unique id 197677 mac 197677 bytes_out 0 197677 bytes_in 0 197677 station_ip 5.119.59.143 197677 port 23 197677 unique_id port 197677 remote_ip 10.8.1.130 197678 username ebrahimpour3 197678 kill_reason Another user logged on this global unique id 197678 mac 197678 bytes_out 0 197678 bytes_in 0 197678 station_ip 83.123.171.150 197678 port 13 197678 unique_id port 197678 remote_ip 10.8.0.206 197682 username saeed9658 197682 mac 197682 bytes_out 0 197682 bytes_in 0 197682 station_ip 5.120.81.250 197682 port 29 197682 unique_id port 197682 remote_ip 10.8.1.110 197683 username yaghobi 197683 mac 197683 bytes_out 214260 197683 bytes_in 291219 197683 station_ip 83.122.33.88 197683 port 26 197683 unique_id port 197683 remote_ip 10.8.1.62 197684 username soleymani5056 197684 mac 197684 bytes_out 0 197684 bytes_in 0 197684 station_ip 5.120.171.7 197684 port 11 197684 unique_id port 197684 remote_ip 10.8.0.30 197685 username pourshad 197685 mac 197685 bytes_out 6276 197685 bytes_in 21163 197685 station_ip 5.120.24.121 197685 port 18 197685 unique_id port 197685 remote_ip 10.8.1.46 197693 username nilufarrajaei 197693 mac 197693 bytes_out 4844 197693 bytes_in 11757 197693 station_ip 37.129.200.59 197693 port 21 197693 unique_id port 197693 remote_ip 10.8.0.170 197695 username ebrahimpour3 197695 mac 197695 bytes_out 0 197695 bytes_in 0 197695 station_ip 83.123.171.150 197695 port 13 197695 unique_id port 197696 username yaghobi 197696 kill_reason Another user logged on this global unique id 197696 mac 197696 bytes_out 0 197696 bytes_in 0 197696 station_ip 37.129.240.189 197696 port 18 197696 unique_id port 197696 remote_ip 10.8.0.14 197697 username rezaei 197697 mac 197697 bytes_out 508066 197697 bytes_in 3640087 197697 station_ip 5.120.128.254 197697 port 23 197697 unique_id port 197697 remote_ip 10.8.1.90 197699 username rezaei 197699 mac 197699 bytes_out 0 197699 bytes_in 0 197699 station_ip 5.120.128.254 197699 port 23 197699 unique_id port 197699 remote_ip 10.8.1.90 197705 username motamedi9772 197705 mac 197705 bytes_out 0 197705 bytes_in 0 197705 station_ip 83.123.1.100 197705 port 13 197705 unique_id port 197705 remote_ip 10.8.0.54 197707 username yaghobi 197707 mac 197707 bytes_out 33939 197707 bytes_in 107285 197707 station_ip 37.129.240.189 197707 port 22 197707 unique_id port 197707 remote_ip 10.8.1.62 197710 username rashidi4690 197710 mac 197710 bytes_out 121413 197710 bytes_in 364371 197710 station_ip 5.119.173.124 197710 port 26 197710 unique_id port 197710 remote_ip 10.8.1.142 197711 username farhad3 197711 mac 197711 bytes_out 0 197711 bytes_in 0 197711 station_ip 5.119.169.90 197675 username shahruz 197675 mac 197675 bytes_out 1888025 197675 bytes_in 22746415 197675 station_ip 5.120.93.41 197675 port 31 197675 unique_id port 197675 remote_ip 10.8.1.150 197681 username saeed9658 197681 mac 197681 bytes_out 0 197681 bytes_in 0 197681 station_ip 5.120.81.250 197681 port 29 197681 unique_id port 197681 remote_ip 10.8.1.110 197686 username teymori5660 197686 mac 197686 bytes_out 0 197686 bytes_in 0 197686 station_ip 5.119.59.143 197686 port 23 197686 unique_id port 197689 username yaghobi 197689 mac 197689 bytes_out 0 197689 bytes_in 0 197689 station_ip 113.203.67.51 197689 port 17 197689 unique_id port 197689 remote_ip 10.8.0.14 197692 username barzegar 197692 mac 197692 bytes_out 0 197692 bytes_in 0 197692 station_ip 5.119.251.17 197692 port 18 197692 unique_id port 197692 remote_ip 10.8.1.138 197701 username saeed9658 197701 mac 197701 bytes_out 0 197701 bytes_in 0 197701 station_ip 5.120.81.250 197701 port 30 197701 unique_id port 197701 remote_ip 10.8.1.110 197708 username motamedi9772 197708 kill_reason Another user logged on this global unique id 197708 mac 197708 bytes_out 0 197708 bytes_in 0 197708 station_ip 83.123.1.100 197708 port 18 197708 unique_id port 197708 remote_ip 10.8.0.54 197709 username barzegar 197709 mac 197709 bytes_out 0 197709 bytes_in 0 197709 station_ip 5.119.251.17 197709 port 18 197709 unique_id port 197709 remote_ip 10.8.1.138 197712 username rezaei 197712 kill_reason Another user logged on this global unique id 197712 mac 197712 bytes_out 0 197712 bytes_in 0 197712 station_ip 5.120.128.254 197712 port 22 197712 unique_id port 197712 remote_ip 10.8.1.90 197715 username houshang 197715 mac 197715 bytes_out 0 197715 bytes_in 0 197715 station_ip 5.120.129.62 197715 port 18 197715 unique_id port 197715 remote_ip 10.8.1.154 197718 username barzegar 197718 mac 197718 bytes_out 0 197718 bytes_in 0 197718 station_ip 5.119.251.17 197718 port 26 197718 unique_id port 197718 remote_ip 10.8.1.138 197724 username alihosseini1 197724 kill_reason Another user logged on this global unique id 197724 mac 197724 bytes_out 0 197724 bytes_in 0 197724 station_ip 5.119.80.59 197724 port 18 197724 unique_id port 197724 remote_ip 10.8.1.194 197725 username mostafa_es78 197725 kill_reason Another user logged on this global unique id 197725 mac 197725 bytes_out 0 197725 bytes_in 0 197725 station_ip 178.236.35.96 197725 port 21 197725 unique_id port 197725 remote_ip 10.8.0.50 197728 username ebrahimpour3 197728 kill_reason Another user logged on this global unique id 197728 mac 197728 bytes_out 0 197728 bytes_in 0 197728 station_ip 83.123.171.150 197728 port 11 197728 unique_id port 197728 remote_ip 10.8.0.206 197731 username kalantary6037 197731 mac 197731 bytes_out 0 197731 bytes_in 0 197731 station_ip 37.129.76.91 197731 port 24 197731 unique_id port 197731 remote_ip 10.8.0.158 197738 username rashidi4690 197738 mac 197738 bytes_out 215789 197738 bytes_in 494326 197738 station_ip 5.119.173.124 197738 port 18 197738 unique_id port 197738 remote_ip 10.8.1.142 197739 username motamedi9772 197739 mac 197739 bytes_out 0 197739 bytes_in 0 197739 station_ip 83.123.1.100 197739 port 18 197739 unique_id port 197739 remote_ip 10.8.1.118 197746 username motamedi9772 197746 mac 197746 bytes_out 0 197746 bytes_in 0 197746 station_ip 83.123.1.100 197746 port 29 197746 unique_id port 197746 remote_ip 10.8.1.118 197711 port 18 197711 unique_id port 197711 remote_ip 10.8.1.34 197714 username kalantary6037 197714 mac 197714 bytes_out 0 197714 bytes_in 0 197714 station_ip 37.129.76.91 197714 port 22 197714 unique_id port 197714 remote_ip 10.8.0.158 197716 username kharazmi2920 197716 kill_reason Another user logged on this global unique id 197716 mac 197716 bytes_out 0 197716 bytes_in 0 197716 station_ip 83.122.84.141 197716 port 23 197716 unique_id port 197716 remote_ip 10.8.0.134 197717 username motamedi9772 197717 mac 197717 bytes_out 0 197717 bytes_in 0 197717 station_ip 83.123.1.100 197717 port 23 197717 unique_id port 197717 remote_ip 10.8.1.118 197720 username hamid.e 197720 unique_id port 197720 terminate_cause User-Request 197720 bytes_out 2284176 197720 bytes_in 34909532 197720 station_ip 37.27.8.60 197720 port 15729494 197720 nas_port_type Virtual 197720 remote_ip 5.5.5.255 197722 username barzegar 197722 mac 197722 bytes_out 0 197722 bytes_in 0 197722 station_ip 5.119.251.17 197722 port 23 197722 unique_id port 197722 remote_ip 10.8.1.138 197723 username rezaei 197723 mac 197723 bytes_out 0 197723 bytes_in 0 197723 station_ip 5.120.128.254 197723 port 23 197723 unique_id port 197723 remote_ip 10.8.1.90 197727 username seyedrezaei2572 197727 kill_reason Another user logged on this global unique id 197727 mac 197727 bytes_out 0 197727 bytes_in 0 197727 station_ip 37.129.188.199 197727 port 22 197727 unique_id port 197727 remote_ip 10.8.0.126 197729 username mostafa_es78 197729 kill_reason Another user logged on this global unique id 197729 mac 197729 bytes_out 0 197729 bytes_in 0 197729 station_ip 178.236.35.96 197729 port 21 197729 unique_id port 197730 username motamedi9772 197730 mac 197730 bytes_out 0 197730 bytes_in 0 197730 station_ip 83.123.1.100 197730 port 26 197730 unique_id port 197730 remote_ip 10.8.0.54 197733 username nilufarrajaei 197733 mac 197733 bytes_out 0 197733 bytes_in 0 197733 station_ip 37.129.238.179 197733 port 18 197733 unique_id port 197733 remote_ip 10.8.0.170 197734 username teymori5660 197734 mac 197734 bytes_out 0 197734 bytes_in 0 197734 station_ip 5.119.59.143 197734 port 25 197734 unique_id port 197734 remote_ip 10.8.0.66 197736 username mostafa_es78 197736 kill_reason Another user logged on this global unique id 197736 mac 197736 bytes_out 0 197736 bytes_in 0 197736 station_ip 178.236.35.96 197736 port 21 197736 unique_id port 197737 username motamedi9772 197737 mac 197737 bytes_out 0 197737 bytes_in 0 197737 station_ip 83.123.1.100 197737 port 23 197737 unique_id port 197737 remote_ip 10.8.0.54 197740 username farhad3 197740 mac 197740 bytes_out 0 197740 bytes_in 0 197740 station_ip 5.119.169.90 197740 port 22 197740 unique_id port 197740 remote_ip 10.8.1.34 197745 username shahruz 197745 mac 197745 bytes_out 4003600 197745 bytes_in 41537257 197745 station_ip 5.120.93.41 197745 port 29 197745 unique_id port 197745 remote_ip 10.8.1.150 197747 username mostafa_es78 197747 kill_reason Another user logged on this global unique id 197747 mac 197747 bytes_out 0 197747 bytes_in 0 197747 station_ip 178.236.35.96 197747 port 21 197747 unique_id port 197719 station_ip 83.123.1.100 197719 port 26 197719 unique_id port 197719 remote_ip 10.8.1.118 197721 username motamedi9772 197721 mac 197721 bytes_out 0 197721 bytes_in 0 197721 station_ip 83.123.1.100 197721 port 26 197721 unique_id port 197721 remote_ip 10.8.1.118 197726 username motamedi9772 197726 mac 197726 bytes_out 0 197726 bytes_in 0 197726 station_ip 83.123.1.100 197726 port 24 197726 unique_id port 197726 remote_ip 10.8.0.54 197732 username barzegar 197732 mac 197732 bytes_out 0 197732 bytes_in 0 197732 station_ip 5.119.251.17 197732 port 22 197732 unique_id port 197732 remote_ip 10.8.1.138 197735 username motamedi9772 197735 mac 197735 bytes_out 0 197735 bytes_in 0 197735 station_ip 83.123.1.100 197735 port 23 197735 unique_id port 197735 remote_ip 10.8.1.118 197741 username pourshad 197741 mac 197741 bytes_out 0 197741 bytes_in 0 197741 station_ip 5.120.24.121 197741 port 13 197741 unique_id port 197741 remote_ip 10.8.0.86 197742 username motamedi9772 197742 mac 197742 bytes_out 0 197742 bytes_in 0 197742 station_ip 83.123.1.100 197742 port 26 197742 unique_id port 197742 remote_ip 10.8.1.118 197743 username motamedi9772 197743 mac 197743 bytes_out 0 197743 bytes_in 0 197743 station_ip 83.123.1.100 197743 port 13 197743 unique_id port 197743 remote_ip 10.8.0.54 197744 username motamedi9772 197744 mac 197744 bytes_out 0 197744 bytes_in 0 197744 station_ip 83.123.1.100 197744 port 30 197744 unique_id port 197744 remote_ip 10.8.1.118 197748 username motamedi9772 197748 mac 197748 bytes_out 0 197748 bytes_in 0 197748 station_ip 83.123.1.100 197748 port 13 197748 unique_id port 197748 remote_ip 10.8.0.54 197749 username motamedi9772 197749 mac 197749 bytes_out 0 197749 bytes_in 0 197749 station_ip 83.123.1.100 197749 port 13 197749 unique_id port 197749 remote_ip 10.8.0.54 197750 username barzegar 197750 kill_reason Another user logged on this global unique id 197750 mac 197750 bytes_out 0 197750 bytes_in 0 197750 station_ip 5.119.146.12 197750 port 3 197750 unique_id port 197750 remote_ip 10.8.0.14 197751 username kalantary6037 197751 mac 197751 bytes_out 0 197751 bytes_in 0 197751 station_ip 83.122.91.126 197751 port 2 197751 unique_id port 197751 remote_ip 10.8.0.10 197752 username teymori5660 197752 mac 197752 bytes_out 380717 197752 bytes_in 5386869 197752 station_ip 5.119.180.12 197752 port 2 197752 unique_id port 197752 remote_ip 10.8.1.14 197753 username kalantary6037 197753 kill_reason Another user logged on this global unique id 197753 mac 197753 bytes_out 0 197753 bytes_in 0 197753 station_ip 83.122.91.126 197753 port 2 197753 unique_id port 197753 remote_ip 10.8.0.10 197754 username barzegar 197754 kill_reason Another user logged on this global unique id 197754 mac 197754 bytes_out 0 197754 bytes_in 0 197754 station_ip 5.119.146.12 197754 port 3 197754 unique_id port 197755 username khalili2 197755 mac 197755 bytes_out 0 197755 bytes_in 0 197755 station_ip 5.119.158.183 197755 port 2 197755 unique_id port 197755 remote_ip 10.8.1.18 197756 username shahruz 197756 mac 197756 bytes_out 0 197756 bytes_in 0 197756 station_ip 5.119.190.235 197756 port 3 197756 unique_id port 197756 remote_ip 10.8.1.22 197758 username shahruz 197758 mac 197758 bytes_out 0 197758 bytes_in 0 197758 station_ip 5.119.190.235 197758 port 3 197758 unique_id port 197758 remote_ip 10.8.1.22 197759 username kalantary6037 197759 kill_reason Another user logged on this global unique id 197759 mac 197759 bytes_out 0 197759 bytes_in 0 197759 station_ip 83.122.91.126 197759 port 2 197759 unique_id port 197759 remote_ip 10.8.0.10 197760 username barzegar 197760 mac 197760 bytes_out 0 197760 bytes_in 0 197760 station_ip 5.119.146.12 197760 port 3 197760 unique_id port 197760 remote_ip 10.8.1.6 197762 username aminvpnpc 197762 mac 197762 bytes_out 154716 197762 bytes_in 231248 197762 station_ip 5.119.44.128 197762 port 1 197762 unique_id port 197762 remote_ip 10.8.1.10 197763 username barzegar 197763 mac 197763 bytes_out 0 197763 bytes_in 0 197763 station_ip 5.119.146.12 197763 port 3 197763 unique_id port 197763 remote_ip 10.8.1.6 197767 username barzegar 197767 mac 197767 bytes_out 3141 197767 bytes_in 5363 197767 station_ip 5.119.146.12 197767 port 4 197767 unique_id port 197767 remote_ip 10.8.0.14 197769 username barzegar 197769 mac 197769 bytes_out 0 197769 bytes_in 0 197769 station_ip 5.119.146.12 197769 port 3 197769 unique_id port 197769 remote_ip 10.8.1.6 197774 username barzegar 197774 mac 197774 bytes_out 0 197774 bytes_in 0 197774 station_ip 5.119.146.12 197774 port 3 197774 unique_id port 197774 remote_ip 10.8.1.6 197776 username shahruz 197776 mac 197776 bytes_out 1636 197776 bytes_in 4617 197776 station_ip 5.119.190.235 197776 port 2 197776 unique_id port 197776 remote_ip 10.8.0.22 197777 username shahruz 197777 mac 197777 bytes_out 0 197777 bytes_in 0 197777 station_ip 5.119.190.235 197777 port 2 197777 unique_id port 197777 remote_ip 10.8.0.22 197779 username kalantary6037 197779 kill_reason Another user logged on this global unique id 197779 mac 197779 bytes_out 0 197779 bytes_in 0 197779 station_ip 83.122.23.106 197779 port 2 197779 unique_id port 197779 remote_ip 10.8.0.10 197780 username barzegar 197780 mac 197780 bytes_out 0 197780 bytes_in 0 197780 station_ip 5.119.146.12 197780 port 2 197780 unique_id port 197780 remote_ip 10.8.1.6 197782 username barzegar 197782 kill_reason Another user logged on this global unique id 197782 mac 197782 bytes_out 0 197782 bytes_in 0 197782 station_ip 5.119.146.12 197782 port 2 197782 unique_id port 197782 remote_ip 10.8.1.6 197783 username kalantary6037 197783 mac 197783 bytes_out 2747 197783 bytes_in 5187 197783 station_ip 83.122.23.106 197783 port 2 197783 unique_id port 197783 remote_ip 10.8.0.10 197784 username shahruz 197784 mac 197784 bytes_out 0 197784 bytes_in 0 197784 station_ip 5.119.190.235 197784 port 2 197784 unique_id port 197784 remote_ip 10.8.1.22 197785 username shahruz 197785 mac 197785 bytes_out 0 197785 bytes_in 0 197785 station_ip 5.119.190.235 197785 port 2 197785 unique_id port 197785 remote_ip 10.8.1.22 197786 username shahruz 197786 mac 197786 bytes_out 0 197786 bytes_in 0 197757 username aminvpn 197757 unique_id port 197757 terminate_cause Lost-Carrier 197757 bytes_out 18636 197757 bytes_in 53898 197757 station_ip 83.122.52.204 197757 port 15729572 197757 nas_port_type Virtual 197757 remote_ip 5.5.5.219 197761 username khalili2 197761 mac 197761 bytes_out 0 197761 bytes_in 0 197761 station_ip 5.119.158.183 197761 port 2 197761 unique_id port 197764 username barzegar 197764 mac 197764 bytes_out 0 197764 bytes_in 0 197764 station_ip 5.119.146.12 197764 port 3 197764 unique_id port 197764 remote_ip 10.8.1.6 197765 username barzegar 197765 mac 197765 bytes_out 0 197765 bytes_in 0 197765 station_ip 5.119.146.12 197765 port 3 197765 unique_id port 197765 remote_ip 10.8.1.6 197766 username kalantary6037 197766 mac 197766 bytes_out 46445 197766 bytes_in 44029 197766 station_ip 83.122.91.126 197766 port 2 197766 unique_id port 197766 remote_ip 10.8.0.10 197768 username sabaghnezhad 197768 kill_reason Another user logged on this global unique id 197768 mac 197768 bytes_out 0 197768 bytes_in 0 197768 station_ip 83.123.172.46 197768 port 3 197768 unique_id port 197768 remote_ip 10.8.0.18 197770 username shahruz 197770 mac 197770 bytes_out 0 197770 bytes_in 0 197770 station_ip 5.119.190.235 197770 port 3 197770 unique_id port 197770 remote_ip 10.8.1.22 197771 username shahruz 197771 mac 197771 bytes_out 247764 197771 bytes_in 1100060 197771 station_ip 5.119.190.235 197771 port 3 197771 unique_id port 197771 remote_ip 10.8.1.22 197772 username shahruz 197772 mac 197772 bytes_out 0 197772 bytes_in 0 197772 station_ip 5.119.190.235 197772 port 3 197772 unique_id port 197772 remote_ip 10.8.1.22 197773 username majidsarmast 197773 mac 197773 bytes_out 0 197773 bytes_in 0 197773 station_ip 37.129.1.58 197773 port 1 197773 unique_id port 197773 remote_ip 10.8.0.6 197775 username khalili2 197775 kill_reason Another user logged on this global unique id 197775 mac 197775 bytes_out 0 197775 bytes_in 0 197775 station_ip 5.119.158.183 197775 port 2 197775 unique_id port 197778 username shahruz 197778 mac 197778 bytes_out 0 197778 bytes_in 0 197778 station_ip 5.119.190.235 197778 port 2 197778 unique_id port 197778 remote_ip 10.8.0.22 197781 username barzegar 197781 mac 197781 bytes_out 0 197781 bytes_in 0 197781 station_ip 5.119.146.12 197781 port 2 197781 unique_id port 197781 remote_ip 10.8.1.6 197787 username saeeddamghani 197787 kill_reason Another user logged on this global unique id 197787 mac 197787 bytes_out 0 197787 bytes_in 0 197787 station_ip 217.60.175.206 197787 port 4 197787 unique_id port 197787 remote_ip 10.8.0.26 197788 username barzegar 197788 mac 197788 bytes_out 2799 197788 bytes_in 5027 197788 station_ip 5.119.146.12 197788 port 2 197788 unique_id port 197788 remote_ip 10.8.0.14 197799 username barzegar 197799 mac 197799 bytes_out 0 197799 bytes_in 0 197799 station_ip 5.119.146.12 197799 port 5 197799 unique_id port 197799 remote_ip 10.8.1.6 197801 username barzegar 197801 mac 197801 bytes_out 0 197801 bytes_in 0 197801 station_ip 5.119.146.12 197801 port 4 197801 unique_id port 197801 remote_ip 10.8.1.6 197802 username mammad 197802 unique_id port 197802 terminate_cause User-Request 197802 bytes_out 7604162 197802 bytes_in 70370739 197802 station_ip 2.183.249.208 197802 port 15729573 197802 nas_port_type Virtual 197802 remote_ip 5.5.5.255 197805 username barzegar 197805 mac 197805 bytes_out 0 197805 bytes_in 0 197805 station_ip 5.119.146.12 197805 port 4 197805 unique_id port 197786 station_ip 5.119.190.235 197786 port 2 197786 unique_id port 197786 remote_ip 10.8.1.22 197789 username saeeddamghani 197789 mac 197789 bytes_out 0 197789 bytes_in 0 197789 station_ip 217.60.175.206 197789 port 4 197789 unique_id port 197791 username meysam 197791 kill_reason Another user logged on this global unique id 197791 mac 197791 bytes_out 0 197791 bytes_in 0 197791 station_ip 188.158.50.126 197791 port 3 197791 unique_id port 197791 remote_ip 10.8.1.30 197792 username hatami 197792 kill_reason Another user logged on this global unique id 197792 mac 197792 bytes_out 0 197792 bytes_in 0 197792 station_ip 151.235.89.244 197792 port 2 197792 unique_id port 197792 remote_ip 10.8.1.26 197794 username barzegar 197794 mac 197794 bytes_out 0 197794 bytes_in 0 197794 station_ip 5.119.146.12 197794 port 4 197794 unique_id port 197794 remote_ip 10.8.1.6 197796 username dortaj3792 197796 mac 197796 bytes_out 706212 197796 bytes_in 3721320 197796 station_ip 5.119.203.99 197796 port 5 197796 unique_id port 197796 remote_ip 10.8.0.30 197798 username meysam 197798 mac 197798 bytes_out 0 197798 bytes_in 0 197798 station_ip 188.158.50.126 197798 port 3 197798 unique_id port 197800 username dortaj3792 197800 mac 197800 bytes_out 220876 197800 bytes_in 1193643 197800 station_ip 5.119.115.92 197800 port 4 197800 unique_id port 197800 remote_ip 10.8.1.34 197807 username shahruz 197807 mac 197807 bytes_out 0 197807 bytes_in 0 197807 station_ip 5.119.190.235 197807 port 4 197807 unique_id port 197807 remote_ip 10.8.1.22 197809 username kharazmi2920 197809 kill_reason Another user logged on this global unique id 197809 mac 197809 bytes_out 0 197809 bytes_in 0 197809 station_ip 83.122.27.145 197809 port 1 197809 unique_id port 197809 remote_ip 10.8.0.34 197810 username ahmadi1 197810 mac 197810 bytes_out 0 197810 bytes_in 0 197810 station_ip 37.129.41.232 197810 port 3 197810 unique_id port 197810 remote_ip 10.8.0.42 197814 username farhad3 197814 kill_reason Another user logged on this global unique id 197814 mac 197814 bytes_out 0 197814 bytes_in 0 197814 station_ip 5.119.30.132 197814 port 3 197814 unique_id port 197814 remote_ip 10.8.1.38 197816 username alihosseini1 197816 mac 197816 bytes_out 0 197816 bytes_in 0 197816 station_ip 5.120.164.89 197816 port 2 197816 unique_id port 197816 remote_ip 10.8.0.38 197819 username farhad3 197819 mac 197819 bytes_out 0 197819 bytes_in 0 197819 station_ip 5.119.30.132 197819 port 3 197819 unique_id port 197819 remote_ip 10.8.1.38 197821 username farhad3 197821 mac 197821 bytes_out 0 197821 bytes_in 0 197821 station_ip 5.119.30.132 197821 port 3 197821 unique_id port 197821 remote_ip 10.8.1.38 197823 username shahruz 197823 mac 197823 bytes_out 0 197823 bytes_in 0 197823 station_ip 5.119.190.235 197823 port 3 197823 unique_id port 197823 remote_ip 10.8.1.22 197825 username barzegar 197825 mac 197825 bytes_out 0 197825 bytes_in 0 197825 station_ip 5.119.146.12 197825 port 8 197825 unique_id port 197825 remote_ip 10.8.1.6 197826 username shahruz 197826 mac 197826 bytes_out 0 197826 bytes_in 0 197826 station_ip 5.119.190.235 197826 port 8 197826 unique_id port 197826 remote_ip 10.8.1.22 197827 username shahruz 197827 mac 197827 bytes_out 0 197827 bytes_in 0 197827 station_ip 5.119.190.235 197827 port 8 197827 unique_id port 197827 remote_ip 10.8.1.22 197831 username kalantary6037 197831 mac 197831 bytes_out 0 197831 bytes_in 0 197831 station_ip 83.122.124.78 197790 username barzegar 197790 mac 197790 bytes_out 0 197790 bytes_in 0 197790 station_ip 5.119.146.12 197790 port 4 197790 unique_id port 197790 remote_ip 10.8.1.6 197793 username shahruz 197793 mac 197793 bytes_out 0 197793 bytes_in 0 197793 station_ip 5.119.190.235 197793 port 2 197793 unique_id port 197793 remote_ip 10.8.0.22 197795 username barzegar 197795 mac 197795 bytes_out 0 197795 bytes_in 0 197795 station_ip 5.119.146.12 197795 port 1 197795 unique_id port 197797 username meysam 197797 kill_reason Another user logged on this global unique id 197797 mac 197797 bytes_out 0 197797 bytes_in 0 197797 station_ip 188.158.50.126 197797 port 3 197797 unique_id port 197803 username shahruz 197803 mac 197803 bytes_out 0 197803 bytes_in 0 197803 station_ip 5.119.190.235 197803 port 4 197803 unique_id port 197803 remote_ip 10.8.1.22 197804 username shahruz 197804 mac 197804 bytes_out 0 197804 bytes_in 0 197804 station_ip 5.119.190.235 197804 port 4 197804 unique_id port 197804 remote_ip 10.8.1.22 197806 username farhad3 197806 mac 197806 bytes_out 2363225 197806 bytes_in 21198678 197806 station_ip 5.119.30.132 197806 port 3 197806 unique_id port 197806 remote_ip 10.8.1.38 197815 username kalantary6037 197815 mac 197815 bytes_out 0 197815 bytes_in 0 197815 station_ip 83.122.124.78 197815 port 3 197815 unique_id port 197815 remote_ip 10.8.0.10 197818 username shahruz 197818 mac 197818 bytes_out 0 197818 bytes_in 0 197818 station_ip 5.119.190.235 197818 port 7 197818 unique_id port 197818 remote_ip 10.8.1.22 197822 username farhad3 197822 mac 197822 bytes_out 0 197822 bytes_in 0 197822 station_ip 5.119.30.132 197822 port 3 197822 unique_id port 197822 remote_ip 10.8.0.46 197824 username shahruz 197824 mac 197824 bytes_out 0 197824 bytes_in 0 197824 station_ip 5.119.190.235 197824 port 3 197824 unique_id port 197824 remote_ip 10.8.1.22 197828 username shahruz 197828 mac 197828 bytes_out 0 197828 bytes_in 0 197828 station_ip 5.119.190.235 197828 port 8 197828 unique_id port 197828 remote_ip 10.8.1.22 197829 username jamali 197829 kill_reason Relative expiration date has reached 197829 mac 197829 bytes_out 0 197829 bytes_in 0 197829 station_ip 5.120.149.19 197829 port 8 197829 unique_id port 197838 username houshang 197838 mac 197838 bytes_out 0 197838 bytes_in 0 197838 station_ip 5.119.182.25 197838 port 1 197838 unique_id port 197838 remote_ip 10.8.0.50 197845 username pourshad 197845 mac 197845 bytes_out 9979164 197845 bytes_in 9433629 197845 station_ip 5.120.24.121 197845 port 1 197845 unique_id port 197845 remote_ip 10.8.0.54 197848 username pourshad 197848 mac 197848 bytes_out 8930 197848 bytes_in 19957 197848 station_ip 5.120.24.121 197848 port 9 197848 unique_id port 197848 remote_ip 10.8.1.58 197851 username shahruz 197851 mac 197851 bytes_out 0 197851 bytes_in 0 197851 station_ip 5.119.190.235 197851 port 9 197851 unique_id port 197851 remote_ip 10.8.1.22 197853 username aminvpn 197853 unique_id port 197853 terminate_cause Lost-Carrier 197853 bytes_out 452446 197853 bytes_in 3704727 197853 station_ip 83.122.52.204 197853 port 15729580 197853 nas_port_type Virtual 197853 remote_ip 5.5.5.219 197855 username farhad3 197855 kill_reason Another user logged on this global unique id 197855 mac 197855 bytes_out 0 197855 bytes_in 0 197855 station_ip 5.119.30.132 197855 port 7 197855 unique_id port 197856 username shahruz 197856 mac 197856 bytes_out 0 197805 remote_ip 10.8.1.6 197808 username farhad3 197808 mac 197808 bytes_out 0 197808 bytes_in 0 197808 station_ip 5.119.30.132 197808 port 3 197808 unique_id port 197808 remote_ip 10.8.1.38 197811 username shahruz 197811 mac 197811 bytes_out 0 197811 bytes_in 0 197811 station_ip 5.119.190.235 197811 port 7 197811 unique_id port 197811 remote_ip 10.8.1.22 197812 username shahruz 197812 mac 197812 bytes_out 0 197812 bytes_in 0 197812 station_ip 5.119.190.235 197812 port 3 197812 unique_id port 197812 remote_ip 10.8.1.22 197813 username barzegar 197813 mac 197813 bytes_out 0 197813 bytes_in 0 197813 station_ip 5.119.146.12 197813 port 3 197813 unique_id port 197813 remote_ip 10.8.1.6 197817 username shahruz 197817 mac 197817 bytes_out 0 197817 bytes_in 0 197817 station_ip 5.119.190.235 197817 port 7 197817 unique_id port 197817 remote_ip 10.8.1.22 197820 username shahruz 197820 kill_reason Another user logged on this global unique id 197820 mac 197820 bytes_out 0 197820 bytes_in 0 197820 station_ip 5.119.190.235 197820 port 3 197820 unique_id port 197820 remote_ip 10.8.0.22 197830 username kharazmi2920 197830 mac 197830 bytes_out 0 197830 bytes_in 0 197830 station_ip 83.122.27.145 197830 port 1 197830 unique_id port 197832 username farhad3 197832 kill_reason Another user logged on this global unique id 197832 mac 197832 bytes_out 0 197832 bytes_in 0 197832 station_ip 5.119.30.132 197832 port 7 197832 unique_id port 197832 remote_ip 10.8.1.38 197835 username shahruz 197835 mac 197835 bytes_out 0 197835 bytes_in 0 197835 station_ip 5.119.190.235 197835 port 9 197835 unique_id port 197835 remote_ip 10.8.1.22 197837 username shahruz 197837 mac 197837 bytes_out 0 197837 bytes_in 0 197837 station_ip 5.119.190.235 197837 port 8 197837 unique_id port 197837 remote_ip 10.8.1.22 197840 username shahruz 197840 mac 197840 bytes_out 2676 197840 bytes_in 5080 197840 station_ip 5.119.190.235 197840 port 8 197840 unique_id port 197840 remote_ip 10.8.1.22 197841 username charkhandaz3496 197841 kill_reason Another user logged on this global unique id 197841 mac 197841 bytes_out 0 197841 bytes_in 0 197841 station_ip 5.119.21.144 197841 port 4 197841 unique_id port 197841 remote_ip 10.8.1.46 197843 username charkhandaz3496 197843 kill_reason Another user logged on this global unique id 197843 mac 197843 bytes_out 0 197843 bytes_in 0 197843 station_ip 5.119.21.144 197843 port 4 197843 unique_id port 197850 username shahruz 197850 mac 197850 bytes_out 0 197850 bytes_in 0 197850 station_ip 5.119.190.235 197850 port 9 197850 unique_id port 197850 remote_ip 10.8.1.22 197854 username barzegar 197854 mac 197854 bytes_out 0 197854 bytes_in 0 197854 station_ip 5.119.146.12 197854 port 9 197854 unique_id port 197854 remote_ip 10.8.1.6 197859 username shahruz 197859 mac 197859 bytes_out 4902092 197859 bytes_in 67587542 197859 station_ip 113.203.58.245 197859 port 3 197859 unique_id port 197859 remote_ip 10.8.0.22 197862 username pourshad 197862 mac 197862 bytes_out 1732137 197862 bytes_in 40206805 197862 station_ip 5.120.24.121 197862 port 8 197862 unique_id port 197862 remote_ip 10.8.1.58 197871 username alihosseini1 197871 mac 197871 bytes_out 0 197871 bytes_in 0 197871 station_ip 5.120.162.55 197871 port 13 197871 unique_id port 197871 remote_ip 10.8.1.74 197873 username aminvpns6 197873 mac 197873 bytes_out 617317 197873 bytes_in 4902468 197873 station_ip 5.119.165.173 197873 port 10 197873 unique_id port 197831 port 1 197831 unique_id port 197831 remote_ip 10.8.0.10 197833 username arash 197833 kill_reason Another user logged on this global unique id 197833 mac 197833 bytes_out 0 197833 bytes_in 0 197833 station_ip 37.27.7.223 197833 port 3 197833 unique_id port 197833 remote_ip 10.8.1.54 197834 username barzegar 197834 mac 197834 bytes_out 0 197834 bytes_in 0 197834 station_ip 5.119.146.12 197834 port 8 197834 unique_id port 197834 remote_ip 10.8.1.6 197836 username shahruz 197836 mac 197836 bytes_out 0 197836 bytes_in 0 197836 station_ip 5.119.190.235 197836 port 8 197836 unique_id port 197836 remote_ip 10.8.1.22 197839 username shahruz 197839 mac 197839 bytes_out 0 197839 bytes_in 0 197839 station_ip 5.119.190.235 197839 port 8 197839 unique_id port 197839 remote_ip 10.8.1.22 197842 username arash 197842 kill_reason Another user logged on this global unique id 197842 mac 197842 bytes_out 0 197842 bytes_in 0 197842 station_ip 37.27.7.223 197842 port 3 197842 unique_id port 197844 username mohammadjavad 197844 mac 197844 bytes_out 0 197844 bytes_in 0 197844 station_ip 83.122.214.81 197844 port 4 197844 unique_id port 197844 remote_ip 10.8.0.58 197846 username kalantary6037 197846 mac 197846 bytes_out 3751829 197846 bytes_in 60188284 197846 station_ip 83.122.77.102 197846 port 3 197846 unique_id port 197846 remote_ip 10.8.0.10 197847 username shahruz 197847 mac 197847 bytes_out 0 197847 bytes_in 0 197847 station_ip 5.119.190.235 197847 port 8 197847 unique_id port 197847 remote_ip 10.8.1.22 197849 username barzegar 197849 mac 197849 bytes_out 0 197849 bytes_in 0 197849 station_ip 5.119.146.12 197849 port 9 197849 unique_id port 197849 remote_ip 10.8.1.6 197852 username shahruz 197852 mac 197852 bytes_out 3160 197852 bytes_in 6279 197852 station_ip 5.119.190.235 197852 port 9 197852 unique_id port 197852 remote_ip 10.8.1.22 197857 username shahruz 197857 mac 197857 bytes_out 1997 197857 bytes_in 4804 197857 station_ip 113.203.58.245 197857 port 3 197857 unique_id port 197857 remote_ip 10.8.0.22 197861 username barzegar 197861 mac 197861 bytes_out 0 197861 bytes_in 0 197861 station_ip 5.119.146.12 197861 port 9 197861 unique_id port 197861 remote_ip 10.8.1.6 197866 username pourshad 197866 mac 197866 bytes_out 217566 197866 bytes_in 3279160 197866 station_ip 5.120.24.121 197866 port 8 197866 unique_id port 197866 remote_ip 10.8.1.58 197867 username barzegar 197867 mac 197867 bytes_out 14649 197867 bytes_in 22233 197867 station_ip 5.119.146.12 197867 port 9 197867 unique_id port 197867 remote_ip 10.8.1.6 197868 username pourshad 197868 mac 197868 bytes_out 0 197868 bytes_in 0 197868 station_ip 5.120.24.121 197868 port 12 197868 unique_id port 197868 remote_ip 10.8.1.58 197870 username barzegar8595 197870 mac 197870 bytes_out 3315537 197870 bytes_in 18939347 197870 station_ip 46.225.211.232 197870 port 6 197870 unique_id port 197870 remote_ip 10.8.1.50 197872 username alihosseini1 197872 mac 197872 bytes_out 0 197872 bytes_in 0 197872 station_ip 5.120.162.55 197872 port 2 197872 unique_id port 197872 remote_ip 10.8.0.38 197874 username farhad3 197874 mac 197874 bytes_out 0 197874 bytes_in 0 197874 station_ip 5.119.30.132 197874 port 7 197874 unique_id port 197876 username saeeddamghani 197876 kill_reason Another user logged on this global unique id 197876 mac 197876 bytes_out 0 197876 bytes_in 0 197876 station_ip 217.60.175.206 197876 port 11 197876 unique_id port 197856 bytes_in 0 197856 station_ip 113.203.58.245 197856 port 3 197856 unique_id port 197856 remote_ip 10.8.0.22 197858 username barzegar 197858 mac 197858 bytes_out 6732237 197858 bytes_in 73933997 197858 station_ip 5.119.146.12 197858 port 4 197858 unique_id port 197858 remote_ip 10.8.0.14 197860 username barzegar 197860 mac 197860 bytes_out 0 197860 bytes_in 0 197860 station_ip 5.119.146.12 197860 port 9 197860 unique_id port 197860 remote_ip 10.8.1.6 197863 username charkhandaz3496 197863 kill_reason Another user logged on this global unique id 197863 mac 197863 bytes_out 0 197863 bytes_in 0 197863 station_ip 5.119.21.144 197863 port 4 197863 unique_id port 197864 username meysam 197864 mac 197864 bytes_out 612898 197864 bytes_in 9197763 197864 station_ip 188.159.252.34 197864 port 11 197864 unique_id port 197864 remote_ip 10.8.1.30 197865 username kalantary6037 197865 mac 197865 bytes_out 0 197865 bytes_in 0 197865 station_ip 83.122.124.214 197865 port 4 197865 unique_id port 197865 remote_ip 10.8.0.10 197869 username shahruz 197869 mac 197869 bytes_out 0 197869 bytes_in 0 197869 station_ip 113.203.58.245 197869 port 3 197869 unique_id port 197869 remote_ip 10.8.0.22 197877 username shahruz 197877 mac 197877 bytes_out 0 197877 bytes_in 0 197877 station_ip 113.203.58.245 197877 port 2 197877 unique_id port 197877 remote_ip 10.8.0.22 197878 username motamedi9772 197878 mac 197878 bytes_out 0 197878 bytes_in 0 197878 station_ip 83.123.186.181 197878 port 2 197878 unique_id port 197878 remote_ip 10.8.0.62 197879 username saeeddamghani 197879 mac 197879 bytes_out 0 197879 bytes_in 0 197879 station_ip 217.60.175.206 197879 port 11 197879 unique_id port 197882 username shahruz 197882 mac 197882 bytes_out 11169 197882 bytes_in 20464 197882 station_ip 113.203.58.245 197882 port 13 197882 unique_id port 197882 remote_ip 10.8.1.22 197886 username shahruz 197886 mac 197886 bytes_out 0 197886 bytes_in 0 197886 station_ip 113.203.58.245 197886 port 4 197886 unique_id port 197886 remote_ip 10.8.0.22 197890 username shahruz 197890 mac 197890 bytes_out 0 197890 bytes_in 0 197890 station_ip 113.203.58.245 197890 port 2 197890 unique_id port 197890 remote_ip 10.8.0.22 197894 username shahruz 197894 mac 197894 bytes_out 0 197894 bytes_in 0 197894 station_ip 113.203.58.245 197894 port 11 197894 unique_id port 197894 remote_ip 10.8.1.22 197897 username kalantary6037 197897 mac 197897 bytes_out 0 197897 bytes_in 0 197897 station_ip 83.122.116.54 197897 port 2 197897 unique_id port 197897 remote_ip 10.8.0.10 197898 username pourshad 197898 mac 197898 bytes_out 187253 197898 bytes_in 194876 197898 station_ip 5.120.24.121 197898 port 9 197898 unique_id port 197898 remote_ip 10.8.1.58 197901 username kalantary6037 197901 mac 197901 bytes_out 0 197901 bytes_in 0 197901 station_ip 83.122.116.54 197901 port 4 197901 unique_id port 197901 remote_ip 10.8.0.10 197906 username pourshad 197906 mac 197906 bytes_out 626568 197906 bytes_in 4759931 197906 station_ip 5.120.24.121 197906 port 9 197906 unique_id port 197906 remote_ip 10.8.1.58 197908 username pourshad 197908 mac 197908 bytes_out 80515 197908 bytes_in 104690 197908 station_ip 5.120.24.121 197908 port 9 197908 unique_id port 197908 remote_ip 10.8.1.58 197909 username shahruz 197909 mac 197909 bytes_out 0 197909 bytes_in 0 197909 station_ip 113.203.58.245 197909 port 1 197909 unique_id port 197909 remote_ip 10.8.0.22 197873 remote_ip 10.8.1.62 197875 username shahruz 197875 mac 197875 bytes_out 0 197875 bytes_in 0 197875 station_ip 113.203.58.245 197875 port 2 197875 unique_id port 197875 remote_ip 10.8.0.22 197880 username charkhandaz3496 197880 kill_reason Another user logged on this global unique id 197880 mac 197880 bytes_out 0 197880 bytes_in 0 197880 station_ip 5.119.21.144 197880 port 4 197880 unique_id port 197883 username shahruz 197883 mac 197883 bytes_out 0 197883 bytes_in 0 197883 station_ip 113.203.58.245 197883 port 6 197883 unique_id port 197883 remote_ip 10.8.1.22 197887 username sekonji0496 197887 mac 197887 bytes_out 0 197887 bytes_in 0 197887 station_ip 37.129.21.103 197887 port 2 197887 unique_id port 197887 remote_ip 10.8.0.66 197889 username barzegar 197889 mac 197889 bytes_out 0 197889 bytes_in 0 197889 station_ip 5.119.146.12 197889 port 11 197889 unique_id port 197889 remote_ip 10.8.1.6 197891 username barzegar 197891 mac 197891 bytes_out 0 197891 bytes_in 0 197891 station_ip 5.119.146.12 197891 port 11 197891 unique_id port 197891 remote_ip 10.8.1.6 197895 username charkhandaz3496 197895 kill_reason Another user logged on this global unique id 197895 mac 197895 bytes_out 0 197895 bytes_in 0 197895 station_ip 5.119.21.144 197895 port 4 197895 unique_id port 197896 username shahruz 197896 mac 197896 bytes_out 0 197896 bytes_in 0 197896 station_ip 113.203.58.245 197896 port 4 197896 unique_id port 197896 remote_ip 10.8.0.22 197900 username alihosseini1 197900 kill_reason Another user logged on this global unique id 197900 mac 197900 bytes_out 0 197900 bytes_in 0 197900 station_ip 5.120.162.55 197900 port 3 197900 unique_id port 197900 remote_ip 10.8.0.38 197905 username shahruz 197905 mac 197905 bytes_out 0 197905 bytes_in 0 197905 station_ip 113.203.58.245 197905 port 2 197905 unique_id port 197905 remote_ip 10.8.0.22 197907 username barzegar 197907 mac 197907 bytes_out 67055 197907 bytes_in 673503 197907 station_ip 5.119.146.12 197907 port 4 197907 unique_id port 197907 remote_ip 10.8.1.6 197913 username barzegar8595 197913 mac 197913 bytes_out 2298472 197913 bytes_in 32231312 197913 station_ip 46.225.211.232 197913 port 12 197913 unique_id port 197913 remote_ip 10.8.1.50 197917 username shahruz 197917 mac 197917 bytes_out 0 197917 bytes_in 0 197917 station_ip 113.203.58.245 197917 port 1 197917 unique_id port 197917 remote_ip 10.8.0.22 197923 username sabaghnezhad 197923 mac 197923 bytes_out 0 197923 bytes_in 0 197923 station_ip 83.123.172.46 197923 port 2 197923 unique_id port 197923 remote_ip 10.8.1.42 197933 username barzegar 197933 mac 197933 bytes_out 0 197933 bytes_in 0 197933 station_ip 5.119.146.12 197933 port 2 197933 unique_id port 197933 remote_ip 10.8.1.6 197935 username meysam 197935 kill_reason Another user logged on this global unique id 197935 mac 197935 bytes_out 0 197935 bytes_in 0 197935 station_ip 188.159.252.34 197935 port 10 197935 unique_id port 197937 username shahruz 197937 mac 197937 bytes_out 0 197937 bytes_in 0 197937 station_ip 113.203.58.245 197937 port 1 197937 unique_id port 197937 remote_ip 10.8.0.22 197939 username malekpoir 197939 mac 197939 bytes_out 2091779 197939 bytes_in 21843550 197939 station_ip 5.120.53.60 197939 port 8 197939 unique_id port 197939 remote_ip 10.8.1.70 197941 username barzegar 197941 mac 197941 bytes_out 0 197941 bytes_in 0 197941 station_ip 5.119.146.12 197941 port 4 197941 unique_id port 197941 remote_ip 10.8.1.6 197876 remote_ip 10.8.1.66 197881 username barzegar 197881 mac 197881 bytes_out 17515 197881 bytes_in 27338 197881 station_ip 5.119.146.12 197881 port 6 197881 unique_id port 197881 remote_ip 10.8.1.6 197884 username charkhandaz3496 197884 kill_reason Another user logged on this global unique id 197884 mac 197884 bytes_out 0 197884 bytes_in 0 197884 station_ip 5.119.21.144 197884 port 4 197884 unique_id port 197885 username meysam 197885 kill_reason Another user logged on this global unique id 197885 mac 197885 bytes_out 0 197885 bytes_in 0 197885 station_ip 188.159.252.34 197885 port 10 197885 unique_id port 197885 remote_ip 10.8.1.30 197888 username shahruz 197888 kill_reason Maximum check online fails reached 197888 mac 197888 bytes_out 0 197888 bytes_in 0 197888 station_ip 113.203.58.245 197888 port 6 197888 unique_id port 197892 username shahruz 197892 mac 197892 bytes_out 0 197892 bytes_in 0 197892 station_ip 113.203.58.245 197892 port 11 197892 unique_id port 197892 remote_ip 10.8.1.22 197893 username shahruz 197893 mac 197893 bytes_out 0 197893 bytes_in 0 197893 station_ip 113.203.58.245 197893 port 11 197893 unique_id port 197893 remote_ip 10.8.1.22 197899 username mohammadjavad 197899 mac 197899 bytes_out 0 197899 bytes_in 0 197899 station_ip 83.122.214.81 197899 port 1 197899 unique_id port 197899 remote_ip 10.8.0.58 197902 username meysam 197902 kill_reason Another user logged on this global unique id 197902 mac 197902 bytes_out 0 197902 bytes_in 0 197902 station_ip 188.159.252.34 197902 port 10 197902 unique_id port 197903 username barzegar 197903 mac 197903 bytes_out 6074 197903 bytes_in 8784 197903 station_ip 5.119.146.12 197903 port 13 197903 unique_id port 197903 remote_ip 10.8.1.6 197904 username mohammadjavad 197904 mac 197904 bytes_out 1989975 197904 bytes_in 26285883 197904 station_ip 37.27.3.33 197904 port 11 197904 unique_id port 197904 remote_ip 10.8.1.82 197910 username shahruz 197910 mac 197910 bytes_out 0 197910 bytes_in 0 197910 station_ip 113.203.58.245 197910 port 1 197910 unique_id port 197910 remote_ip 10.8.0.22 197911 username shahruz 197911 mac 197911 bytes_out 8950 197911 bytes_in 21949 197911 station_ip 113.203.58.245 197911 port 11 197911 unique_id port 197911 remote_ip 10.8.1.22 197915 username pourshad 197915 mac 197915 bytes_out 94370 197915 bytes_in 117199 197915 station_ip 5.120.24.121 197915 port 9 197915 unique_id port 197915 remote_ip 10.8.1.58 197920 username barzegar 197920 mac 197920 bytes_out 534463 197920 bytes_in 5313264 197920 station_ip 5.119.146.12 197920 port 4 197920 unique_id port 197920 remote_ip 10.8.1.6 197921 username sabaghnezhad 197921 mac 197921 bytes_out 1502180 197921 bytes_in 3579621 197921 station_ip 83.123.172.46 197921 port 5 197921 unique_id port 197921 remote_ip 10.8.1.42 197924 username shahruz 197924 mac 197924 bytes_out 0 197924 bytes_in 0 197924 station_ip 113.203.58.245 197924 port 4 197924 unique_id port 197924 remote_ip 10.8.1.22 197926 username pourshad 197926 mac 197926 bytes_out 20400 197926 bytes_in 22332 197926 station_ip 5.120.24.121 197926 port 9 197926 unique_id port 197926 remote_ip 10.8.1.58 197928 username alirezaza 197928 unique_id port 197928 terminate_cause Lost-Carrier 197928 bytes_out 141050 197928 bytes_in 412291 197928 station_ip 5.119.177.41 197928 port 15729586 197928 nas_port_type Virtual 197928 remote_ip 5.5.5.200 197932 username shahruz 197932 mac 197932 bytes_out 0 197932 bytes_in 0 197932 station_ip 113.203.58.245 197932 port 1 197912 username shahruz 197912 mac 197912 bytes_out 0 197912 bytes_in 0 197912 station_ip 113.203.58.245 197912 port 1 197912 unique_id port 197912 remote_ip 10.8.0.22 197914 username shahruz 197914 mac 197914 bytes_out 0 197914 bytes_in 0 197914 station_ip 113.203.58.245 197914 port 1 197914 unique_id port 197914 remote_ip 10.8.0.22 197916 username shahruz 197916 mac 197916 bytes_out 0 197916 bytes_in 0 197916 station_ip 113.203.58.245 197916 port 1 197916 unique_id port 197916 remote_ip 10.8.0.22 197918 username meysam 197918 kill_reason Another user logged on this global unique id 197918 mac 197918 bytes_out 0 197918 bytes_in 0 197918 station_ip 188.159.252.34 197918 port 10 197918 unique_id port 197919 username morteza4424 197919 mac 197919 bytes_out 0 197919 bytes_in 0 197919 station_ip 37.129.131.126 197919 port 2 197919 unique_id port 197919 remote_ip 10.8.0.70 197922 username shahruz 197922 mac 197922 bytes_out 0 197922 bytes_in 0 197922 station_ip 113.203.58.245 197922 port 1 197922 unique_id port 197922 remote_ip 10.8.0.22 197925 username shahruz 197925 mac 197925 bytes_out 0 197925 bytes_in 0 197925 station_ip 113.203.58.245 197925 port 1 197925 unique_id port 197925 remote_ip 10.8.0.22 197927 username shahruz 197927 mac 197927 bytes_out 0 197927 bytes_in 0 197927 station_ip 113.203.58.245 197927 port 1 197927 unique_id port 197927 remote_ip 10.8.0.22 197929 username shahruz 197929 mac 197929 bytes_out 0 197929 bytes_in 0 197929 station_ip 113.203.58.245 197929 port 2 197929 unique_id port 197929 remote_ip 10.8.1.22 197930 username pourshad 197930 mac 197930 bytes_out 11845 197930 bytes_in 18942 197930 station_ip 5.120.24.121 197930 port 4 197930 unique_id port 197930 remote_ip 10.8.1.58 197931 username shahruz 197931 mac 197931 bytes_out 2694 197931 bytes_in 5077 197931 station_ip 113.203.58.245 197931 port 2 197931 unique_id port 197931 remote_ip 10.8.1.22 197936 username arash 197936 kill_reason Another user logged on this global unique id 197936 mac 197936 bytes_out 0 197936 bytes_in 0 197936 station_ip 37.27.7.223 197936 port 3 197936 unique_id port 197940 username barzegar 197940 mac 197940 bytes_out 0 197940 bytes_in 0 197940 station_ip 5.119.146.12 197940 port 4 197940 unique_id port 197940 remote_ip 10.8.1.6 197943 username shahruz 197943 mac 197943 bytes_out 5046 197943 bytes_in 7631 197943 station_ip 113.203.58.245 197943 port 1 197943 unique_id port 197943 remote_ip 10.8.0.22 197944 username arash 197944 mac 197944 bytes_out 0 197944 bytes_in 0 197944 station_ip 37.27.7.223 197944 port 3 197944 unique_id port 197945 username shahruz 197945 mac 197945 bytes_out 0 197945 bytes_in 0 197945 station_ip 113.203.58.245 197945 port 8 197945 unique_id port 197945 remote_ip 10.8.1.22 197946 username shahruz 197946 mac 197946 bytes_out 0 197946 bytes_in 0 197946 station_ip 113.203.58.245 197946 port 8 197946 unique_id port 197946 remote_ip 10.8.1.22 197951 username godarzi 197951 mac 197951 bytes_out 0 197951 bytes_in 0 197951 station_ip 45.84.157.190 197951 port 14 197951 unique_id port 197951 remote_ip 10.8.1.78 197952 username barzegar 197952 mac 197952 bytes_out 0 197952 bytes_in 0 197952 station_ip 5.119.146.12 197952 port 9 197952 unique_id port 197952 remote_ip 10.8.1.6 197956 username shahruz 197956 mac 197956 bytes_out 476380 197956 bytes_in 4249617 197956 station_ip 113.203.58.245 197956 port 1 197932 unique_id port 197932 remote_ip 10.8.0.22 197934 username shahruz 197934 mac 197934 bytes_out 0 197934 bytes_in 0 197934 station_ip 113.203.58.245 197934 port 1 197934 unique_id port 197934 remote_ip 10.8.0.22 197938 username shahruz 197938 mac 197938 bytes_out 0 197938 bytes_in 0 197938 station_ip 113.203.58.245 197938 port 1 197938 unique_id port 197938 remote_ip 10.8.0.22 197948 username shahruz 197948 mac 197948 bytes_out 0 197948 bytes_in 0 197948 station_ip 113.203.58.245 197948 port 1 197948 unique_id port 197948 remote_ip 10.8.0.22 197949 username shahruz 197949 mac 197949 bytes_out 0 197949 bytes_in 0 197949 station_ip 113.203.58.245 197949 port 1 197949 unique_id port 197949 remote_ip 10.8.0.22 197950 username meysam 197950 kill_reason Another user logged on this global unique id 197950 mac 197950 bytes_out 0 197950 bytes_in 0 197950 station_ip 188.159.252.34 197950 port 10 197950 unique_id port 197953 username malekpoir 197953 kill_reason Another user logged on this global unique id 197953 mac 197953 bytes_out 0 197953 bytes_in 0 197953 station_ip 5.120.53.60 197953 port 2 197953 unique_id port 197953 remote_ip 10.8.1.70 197954 username aminvpns6 197954 mac 197954 bytes_out 0 197954 bytes_in 0 197954 station_ip 5.119.165.173 197954 port 4 197954 unique_id port 197954 remote_ip 10.8.1.62 197964 username shahruz 197964 mac 197964 bytes_out 0 197964 bytes_in 0 197964 station_ip 113.203.58.245 197964 port 1 197964 unique_id port 197964 remote_ip 10.8.0.22 197969 username barzegar 197969 mac 197969 bytes_out 0 197969 bytes_in 0 197969 station_ip 5.119.146.12 197969 port 3 197969 unique_id port 197969 remote_ip 10.8.1.6 197970 username kharazmi2920 197970 kill_reason Another user logged on this global unique id 197970 mac 197970 bytes_out 0 197970 bytes_in 0 197970 station_ip 83.122.27.145 197970 port 2 197970 unique_id port 197970 remote_ip 10.8.0.34 197972 username shahruz 197972 kill_reason Another user logged on this global unique id 197972 mac 197972 bytes_out 0 197972 bytes_in 0 197972 station_ip 113.203.58.245 197972 port 3 197972 unique_id port 197972 remote_ip 10.8.0.22 197973 username barzegar 197973 mac 197973 bytes_out 0 197973 bytes_in 0 197973 station_ip 5.119.146.12 197973 port 3 197973 unique_id port 197973 remote_ip 10.8.1.6 197975 username shahruz 197975 mac 197975 bytes_out 0 197975 bytes_in 0 197975 station_ip 113.203.58.245 197975 port 9 197975 unique_id port 197975 remote_ip 10.8.1.22 197976 username shahruz 197976 mac 197976 bytes_out 0 197976 bytes_in 0 197976 station_ip 113.203.58.245 197976 port 9 197976 unique_id port 197976 remote_ip 10.8.1.22 197977 username shahruz 197977 mac 197977 bytes_out 0 197977 bytes_in 0 197977 station_ip 113.203.58.245 197977 port 1 197977 unique_id port 197977 remote_ip 10.8.0.22 197987 username pourshad 197987 mac 197987 bytes_out 0 197987 bytes_in 0 197987 station_ip 5.120.24.121 197987 port 4 197987 unique_id port 197987 remote_ip 10.8.1.58 197990 username shahruz 197990 mac 197990 bytes_out 0 197990 bytes_in 0 197990 station_ip 113.203.58.245 197990 port 1 197990 unique_id port 197990 remote_ip 10.8.0.22 197992 username pourshad 197992 mac 197992 bytes_out 24717 197992 bytes_in 29810 197992 station_ip 5.120.24.121 197992 port 3 197992 unique_id port 197992 remote_ip 10.8.1.58 197994 username shahruz 197994 mac 197994 bytes_out 0 197994 bytes_in 0 197994 station_ip 113.203.58.245 197994 port 1 197942 username alihosseini1 197942 mac 197942 bytes_out 0 197942 bytes_in 0 197942 station_ip 5.120.162.55 197942 port 4 197942 unique_id port 197942 remote_ip 10.8.1.74 197947 username shahruz 197947 mac 197947 bytes_out 0 197947 bytes_in 0 197947 station_ip 113.203.58.245 197947 port 8 197947 unique_id port 197947 remote_ip 10.8.1.22 197955 username meysam 197955 mac 197955 bytes_out 0 197955 bytes_in 0 197955 station_ip 188.159.252.34 197955 port 10 197955 unique_id port 197957 username barzegar 197957 mac 197957 bytes_out 0 197957 bytes_in 0 197957 station_ip 5.119.146.12 197957 port 4 197957 unique_id port 197957 remote_ip 10.8.1.6 197958 username barzegar 197958 mac 197958 bytes_out 0 197958 bytes_in 0 197958 station_ip 5.119.146.12 197958 port 4 197958 unique_id port 197958 remote_ip 10.8.1.6 197960 username shahruz 197960 mac 197960 bytes_out 0 197960 bytes_in 0 197960 station_ip 113.203.58.245 197960 port 1 197960 unique_id port 197960 remote_ip 10.8.0.22 197962 username aminvpns6 197962 mac 197962 bytes_out 0 197962 bytes_in 0 197962 station_ip 5.119.165.173 197962 port 10 197962 unique_id port 197962 remote_ip 10.8.1.62 197963 username pourshad 197963 mac 197963 bytes_out 0 197963 bytes_in 0 197963 station_ip 5.120.24.121 197963 port 4 197963 unique_id port 197963 remote_ip 10.8.1.58 197966 username shahruz 197966 mac 197966 bytes_out 0 197966 bytes_in 0 197966 station_ip 113.203.58.245 197966 port 1 197966 unique_id port 197966 remote_ip 10.8.0.22 197967 username arash 197967 mac 197967 bytes_out 0 197967 bytes_in 0 197967 station_ip 37.27.7.223 197967 port 3 197967 unique_id port 197971 username kalantary6037 197971 mac 197971 bytes_out 171729 197971 bytes_in 497963 197971 station_ip 83.122.119.110 197971 port 1 197971 unique_id port 197971 remote_ip 10.8.0.10 197974 username pourshad 197974 mac 197974 bytes_out 94388 197974 bytes_in 959605 197974 station_ip 5.120.24.121 197974 port 4 197974 unique_id port 197974 remote_ip 10.8.1.58 197978 username shahruz 197978 kill_reason Maximum check online fails reached 197978 mac 197978 bytes_out 0 197978 bytes_in 0 197978 station_ip 113.203.58.245 197978 port 9 197978 unique_id port 197981 username shahruz 197981 mac 197981 bytes_out 0 197981 bytes_in 0 197981 station_ip 113.203.58.245 197981 port 1 197981 unique_id port 197981 remote_ip 10.8.0.22 197984 username shahruz 197984 mac 197984 bytes_out 0 197984 bytes_in 0 197984 station_ip 113.203.58.245 197984 port 1 197984 unique_id port 197984 remote_ip 10.8.0.22 197988 username shahruz 197988 mac 197988 bytes_out 0 197988 bytes_in 0 197988 station_ip 113.203.58.245 197988 port 1 197988 unique_id port 197988 remote_ip 10.8.0.22 197989 username shahruz 197989 mac 197989 bytes_out 0 197989 bytes_in 0 197989 station_ip 113.203.58.245 197989 port 1 197989 unique_id port 197989 remote_ip 10.8.0.22 197993 username shahruz 197993 mac 197993 bytes_out 0 197993 bytes_in 0 197993 station_ip 113.203.58.245 197993 port 3 197993 unique_id port 197993 remote_ip 10.8.1.22 197997 username pourshad 197997 mac 197997 bytes_out 0 197997 bytes_in 0 197997 station_ip 5.120.24.121 197997 port 10 197997 unique_id port 197997 remote_ip 10.8.1.58 198000 username shahruz 198000 mac 198000 bytes_out 0 198000 bytes_in 0 198000 station_ip 113.203.58.245 198000 port 1 198000 unique_id port 198000 remote_ip 10.8.0.22 197956 unique_id port 197956 remote_ip 10.8.0.22 197959 username shahruz 197959 mac 197959 bytes_out 0 197959 bytes_in 0 197959 station_ip 113.203.58.245 197959 port 1 197959 unique_id port 197959 remote_ip 10.8.0.22 197961 username pourshad 197961 mac 197961 bytes_out 0 197961 bytes_in 0 197961 station_ip 5.120.24.121 197961 port 9 197961 unique_id port 197961 remote_ip 10.8.1.58 197965 username farhad3 197965 kill_reason Another user logged on this global unique id 197965 mac 197965 bytes_out 0 197965 bytes_in 0 197965 station_ip 5.119.30.132 197965 port 7 197965 unique_id port 197965 remote_ip 10.8.1.38 197968 username shahruz 197968 mac 197968 bytes_out 0 197968 bytes_in 0 197968 station_ip 113.203.58.245 197968 port 3 197968 unique_id port 197968 remote_ip 10.8.1.22 197979 username shahruz 197979 mac 197979 bytes_out 2421 197979 bytes_in 4698 197979 station_ip 113.203.58.245 197979 port 1 197979 unique_id port 197979 remote_ip 10.8.0.22 197980 username barzegar 197980 mac 197980 bytes_out 0 197980 bytes_in 0 197980 station_ip 5.119.146.12 197980 port 3 197980 unique_id port 197980 remote_ip 10.8.1.6 197982 username shahruz 197982 mac 197982 bytes_out 0 197982 bytes_in 0 197982 station_ip 113.203.58.245 197982 port 1 197982 unique_id port 197982 remote_ip 10.8.0.22 197983 username shahruz 197983 mac 197983 bytes_out 0 197983 bytes_in 0 197983 station_ip 113.203.58.245 197983 port 3 197983 unique_id port 197983 remote_ip 10.8.1.22 197985 username kharazmi2920 197985 kill_reason Another user logged on this global unique id 197985 mac 197985 bytes_out 0 197985 bytes_in 0 197985 station_ip 83.122.27.145 197985 port 2 197985 unique_id port 197986 username shahruz 197986 mac 197986 bytes_out 0 197986 bytes_in 0 197986 station_ip 113.203.58.245 197986 port 3 197986 unique_id port 197986 remote_ip 10.8.0.22 197991 username shahruz 197991 kill_reason Maximum check online fails reached 197991 mac 197991 bytes_out 0 197991 bytes_in 0 197991 station_ip 113.203.58.245 197991 port 4 197991 unique_id port 197995 username shahruz 197995 mac 197995 bytes_out 0 197995 bytes_in 0 197995 station_ip 113.203.58.245 197995 port 3 197995 unique_id port 197995 remote_ip 10.8.0.22 197996 username kalantary6037 197996 mac 197996 bytes_out 283997 197996 bytes_in 2943559 197996 station_ip 83.122.101.34 197996 port 1 197996 unique_id port 197996 remote_ip 10.8.0.10 197998 username godarzi 197998 mac 197998 bytes_out 0 197998 bytes_in 0 197998 station_ip 45.84.157.190 197998 port 8 197998 unique_id port 197998 remote_ip 10.8.1.78 197999 username barzegar 197999 mac 197999 bytes_out 0 197999 bytes_in 0 197999 station_ip 5.119.146.12 197999 port 3 197999 unique_id port 197999 remote_ip 10.8.1.6 198001 username charkhandaz3496 198001 kill_reason Another user logged on this global unique id 198001 mac 198001 bytes_out 0 198001 bytes_in 0 198001 station_ip 5.119.21.144 198001 port 3 198001 unique_id port 198001 remote_ip 10.8.1.46 198004 username iranmanesh4443 198004 mac 198004 bytes_out 257286 198004 bytes_in 1405530 198004 station_ip 5.119.24.59 198004 port 1 198004 unique_id port 198004 remote_ip 10.8.0.74 198006 username iranmanesh4443 198006 mac 198006 bytes_out 661161 198006 bytes_in 9763513 198006 station_ip 5.119.24.59 198006 port 4 198006 unique_id port 198006 remote_ip 10.8.0.74 198007 username shahruz 198007 mac 198007 bytes_out 64572 198007 bytes_in 793451 198007 station_ip 113.203.58.245 198007 port 3 197994 unique_id port 197994 remote_ip 10.8.0.22 198003 username pourshad 198003 mac 198003 bytes_out 0 198003 bytes_in 0 198003 station_ip 5.120.24.121 198003 port 10 198003 unique_id port 198003 remote_ip 10.8.1.58 198008 username shahruz 198008 mac 198008 bytes_out 0 198008 bytes_in 0 198008 station_ip 113.203.58.245 198008 port 8 198008 unique_id port 198008 remote_ip 10.8.1.22 198009 username iranmanesh4443 198009 mac 198009 bytes_out 8341 198009 bytes_in 9432 198009 station_ip 5.119.24.59 198009 port 1 198009 unique_id port 198009 remote_ip 10.8.0.74 198010 username farhad3 198010 mac 198010 bytes_out 0 198010 bytes_in 0 198010 station_ip 5.119.30.132 198010 port 7 198010 unique_id port 198014 username pourshad 198014 mac 198014 bytes_out 99146 198014 bytes_in 205914 198014 station_ip 5.120.24.121 198014 port 10 198014 unique_id port 198014 remote_ip 10.8.1.58 198016 username aminvpns6 198016 mac 198016 bytes_out 0 198016 bytes_in 0 198016 station_ip 5.119.165.173 198016 port 11 198016 unique_id port 198016 remote_ip 10.8.1.62 198023 username shahruz 198023 mac 198023 bytes_out 0 198023 bytes_in 0 198023 station_ip 113.203.58.245 198023 port 1 198023 unique_id port 198023 remote_ip 10.8.0.22 198024 username shahruz 198024 mac 198024 bytes_out 0 198024 bytes_in 0 198024 station_ip 113.203.58.245 198024 port 3 198024 unique_id port 198024 remote_ip 10.8.0.22 198025 username barzegar 198025 mac 198025 bytes_out 0 198025 bytes_in 0 198025 station_ip 5.119.146.12 198025 port 1 198025 unique_id port 198025 remote_ip 10.8.0.14 198027 username shahruz 198027 mac 198027 bytes_out 0 198027 bytes_in 0 198027 station_ip 113.203.58.245 198027 port 1 198027 unique_id port 198027 remote_ip 10.8.0.22 198035 username shahruz 198035 kill_reason Maximum check online fails reached 198035 mac 198035 bytes_out 0 198035 bytes_in 0 198035 station_ip 113.203.58.245 198035 port 10 198035 unique_id port 198038 username pourshad 198038 mac 198038 bytes_out 0 198038 bytes_in 0 198038 station_ip 5.120.24.121 198038 port 7 198038 unique_id port 198038 remote_ip 10.8.1.58 198039 username barzegar 198039 mac 198039 bytes_out 0 198039 bytes_in 0 198039 station_ip 5.119.146.12 198039 port 7 198039 unique_id port 198039 remote_ip 10.8.1.6 198049 username kalantary6037 198049 mac 198049 bytes_out 0 198049 bytes_in 0 198049 station_ip 37.129.104.181 198049 port 1 198049 unique_id port 198049 remote_ip 10.8.0.10 198054 username barzegar 198054 mac 198054 bytes_out 0 198054 bytes_in 0 198054 station_ip 5.119.146.12 198054 port 7 198054 unique_id port 198054 remote_ip 10.8.1.6 198055 username alihosseini1 198055 mac 198055 bytes_out 30759 198055 bytes_in 58860 198055 station_ip 5.120.187.232 198055 port 7 198055 unique_id port 198055 remote_ip 10.8.1.74 198056 username pourshad 198056 kill_reason Another user logged on this global unique id 198056 mac 198056 bytes_out 0 198056 bytes_in 0 198056 station_ip 5.120.24.121 198056 port 3 198056 unique_id port 198056 remote_ip 10.8.1.58 198058 username alihosseini1 198058 mac 198058 bytes_out 0 198058 bytes_in 0 198058 station_ip 5.120.187.232 198058 port 7 198058 unique_id port 198058 remote_ip 10.8.1.74 198059 username barzegar 198059 mac 198059 bytes_out 0 198059 bytes_in 0 198059 station_ip 5.119.146.12 198059 port 7 198059 unique_id port 198059 remote_ip 10.8.1.6 198062 username godarzi 198062 mac 198062 bytes_out 0 198002 username barzegar8595 198002 mac 198002 bytes_out 3543105 198002 bytes_in 8736032 198002 station_ip 46.225.211.232 198002 port 11 198002 unique_id port 198002 remote_ip 10.8.1.50 198005 username barzegar 198005 mac 198005 bytes_out 0 198005 bytes_in 0 198005 station_ip 5.119.146.12 198005 port 8 198005 unique_id port 198005 remote_ip 10.8.1.6 198012 username iranmanesh4443 198012 mac 198012 bytes_out 71050 198012 bytes_in 133962 198012 station_ip 5.119.24.59 198012 port 1 198012 unique_id port 198012 remote_ip 10.8.0.74 198015 username shahruz 198015 mac 198015 bytes_out 0 198015 bytes_in 0 198015 station_ip 113.203.58.245 198015 port 8 198015 unique_id port 198015 remote_ip 10.8.1.22 198018 username shahruz 198018 mac 198018 bytes_out 0 198018 bytes_in 0 198018 station_ip 113.203.58.245 198018 port 10 198018 unique_id port 198018 remote_ip 10.8.1.22 198022 username shahruz 198022 mac 198022 bytes_out 0 198022 bytes_in 0 198022 station_ip 113.203.58.245 198022 port 1 198022 unique_id port 198022 remote_ip 10.8.0.22 198026 username alihosseini1 198026 mac 198026 bytes_out 0 198026 bytes_in 0 198026 station_ip 5.120.162.55 198026 port 5 198026 unique_id port 198026 remote_ip 10.8.1.74 198029 username alihosseini1 198029 mac 198029 bytes_out 0 198029 bytes_in 0 198029 station_ip 5.120.162.55 198029 port 1 198029 unique_id port 198029 remote_ip 10.8.0.38 198030 username barzegar 198030 mac 198030 bytes_out 0 198030 bytes_in 0 198030 station_ip 5.119.146.12 198030 port 3 198030 unique_id port 198030 remote_ip 10.8.0.14 198031 username alihosseini1 198031 mac 198031 bytes_out 0 198031 bytes_in 0 198031 station_ip 5.120.162.55 198031 port 10 198031 unique_id port 198031 remote_ip 10.8.1.74 198033 username shahruz 198033 kill_reason Maximum number of concurrent logins reached 198033 mac 198033 bytes_out 0 198033 bytes_in 0 198033 station_ip 113.203.58.245 198033 port 3 198033 unique_id port 198036 username alihosseini1 198036 mac 198036 bytes_out 0 198036 bytes_in 0 198036 station_ip 5.120.187.232 198036 port 3 198036 unique_id port 198036 remote_ip 10.8.1.74 198040 username barzegar 198040 mac 198040 bytes_out 0 198040 bytes_in 0 198040 station_ip 5.119.146.12 198040 port 7 198040 unique_id port 198040 remote_ip 10.8.1.6 198042 username barzegar 198042 mac 198042 bytes_out 0 198042 bytes_in 0 198042 station_ip 5.119.146.12 198042 port 7 198042 unique_id port 198042 remote_ip 10.8.1.6 198043 username barzegar 198043 mac 198043 bytes_out 0 198043 bytes_in 0 198043 station_ip 5.119.146.12 198043 port 7 198043 unique_id port 198043 remote_ip 10.8.1.6 198045 username kalantary6037 198045 mac 198045 bytes_out 0 198045 bytes_in 0 198045 station_ip 83.122.48.38 198045 port 1 198045 unique_id port 198045 remote_ip 10.8.0.10 198046 username alihosseini1 198046 mac 198046 bytes_out 0 198046 bytes_in 0 198046 station_ip 5.120.187.232 198046 port 7 198046 unique_id port 198046 remote_ip 10.8.1.74 198047 username barzegar 198047 mac 198047 bytes_out 0 198047 bytes_in 0 198047 station_ip 5.119.146.12 198047 port 7 198047 unique_id port 198047 remote_ip 10.8.1.6 198050 username barzegar 198050 mac 198050 bytes_out 0 198050 bytes_in 0 198050 station_ip 5.119.146.12 198050 port 12 198050 unique_id port 198050 remote_ip 10.8.1.6 198052 username alihosseini1 198052 mac 198052 bytes_out 0 198052 bytes_in 0 198052 station_ip 5.120.187.232 198007 unique_id port 198007 remote_ip 10.8.0.22 198011 username shahruz 198011 mac 198011 bytes_out 0 198011 bytes_in 0 198011 station_ip 113.203.58.245 198011 port 7 198011 unique_id port 198011 remote_ip 10.8.1.22 198013 username shahruz 198013 mac 198013 bytes_out 0 198013 bytes_in 0 198013 station_ip 113.203.58.245 198013 port 3 198013 unique_id port 198013 remote_ip 10.8.0.22 198017 username shahruz 198017 mac 198017 bytes_out 0 198017 bytes_in 0 198017 station_ip 113.203.58.245 198017 port 1 198017 unique_id port 198017 remote_ip 10.8.0.22 198019 username barzegar 198019 mac 198019 bytes_out 0 198019 bytes_in 0 198019 station_ip 5.119.146.12 198019 port 8 198019 unique_id port 198019 remote_ip 10.8.1.6 198020 username shahruz 198020 mac 198020 bytes_out 0 198020 bytes_in 0 198020 station_ip 113.203.58.245 198020 port 1 198020 unique_id port 198020 remote_ip 10.8.0.22 198021 username shahruz 198021 mac 198021 bytes_out 0 198021 bytes_in 0 198021 station_ip 113.203.58.245 198021 port 1 198021 unique_id port 198021 remote_ip 10.8.0.22 198028 username morteza4424 198028 mac 198028 bytes_out 0 198028 bytes_in 0 198028 station_ip 83.123.96.76 198028 port 3 198028 unique_id port 198028 remote_ip 10.8.0.70 198032 username shahruz 198032 mac 198032 bytes_out 0 198032 bytes_in 0 198032 station_ip 113.203.58.245 198032 port 10 198032 unique_id port 198032 remote_ip 10.8.1.22 198034 username shahruz 198034 mac 198034 bytes_out 1636 198034 bytes_in 5089 198034 station_ip 113.203.58.245 198034 port 1 198034 unique_id port 198034 remote_ip 10.8.0.22 198037 username charkhandaz3496 198037 mac 198037 bytes_out 0 198037 bytes_in 0 198037 station_ip 5.119.21.144 198037 port 12 198037 unique_id port 198037 remote_ip 10.8.1.46 198041 username barzegar 198041 mac 198041 bytes_out 0 198041 bytes_in 0 198041 station_ip 5.119.146.12 198041 port 7 198041 unique_id port 198041 remote_ip 10.8.1.6 198044 username barzegar 198044 mac 198044 bytes_out 0 198044 bytes_in 0 198044 station_ip 5.119.146.12 198044 port 7 198044 unique_id port 198044 remote_ip 10.8.1.6 198048 username barzegar 198048 mac 198048 bytes_out 0 198048 bytes_in 0 198048 station_ip 5.119.146.12 198048 port 7 198048 unique_id port 198048 remote_ip 10.8.1.6 198051 username alihosseini1 198051 mac 198051 bytes_out 0 198051 bytes_in 0 198051 station_ip 5.120.187.232 198051 port 7 198051 unique_id port 198051 remote_ip 10.8.1.74 198053 username kalantary6037 198053 mac 198053 bytes_out 54828 198053 bytes_in 81611 198053 station_ip 37.129.104.181 198053 port 1 198053 unique_id port 198053 remote_ip 10.8.0.10 198057 username barzegar 198057 mac 198057 bytes_out 0 198057 bytes_in 0 198057 station_ip 5.119.146.12 198057 port 12 198057 unique_id port 198057 remote_ip 10.8.1.6 198060 username alihosseini1 198060 mac 198060 bytes_out 0 198060 bytes_in 0 198060 station_ip 5.120.187.232 198060 port 7 198060 unique_id port 198060 remote_ip 10.8.1.74 198064 username kalantary6037 198064 mac 198064 bytes_out 0 198064 bytes_in 0 198064 station_ip 37.129.104.181 198064 port 3 198064 unique_id port 198064 remote_ip 10.8.0.10 198068 username alihosseini1 198068 mac 198068 bytes_out 0 198068 bytes_in 0 198068 station_ip 5.120.187.232 198068 port 11 198068 unique_id port 198068 remote_ip 10.8.1.74 198069 username alihosseini1 198069 mac 198069 bytes_out 39631 198069 bytes_in 38230 198052 port 12 198052 unique_id port 198052 remote_ip 10.8.1.74 198061 username barzegar8595 198061 kill_reason Another user logged on this global unique id 198061 mac 198061 bytes_out 0 198061 bytes_in 0 198061 station_ip 46.225.211.232 198061 port 5 198061 unique_id port 198061 remote_ip 10.8.1.50 198063 username alihosseini1 198063 mac 198063 bytes_out 0 198063 bytes_in 0 198063 station_ip 5.120.187.232 198063 port 11 198063 unique_id port 198063 remote_ip 10.8.1.74 198066 username alipour1506 198066 kill_reason Another user logged on this global unique id 198066 mac 198066 bytes_out 0 198066 bytes_in 0 198066 station_ip 151.234.23.177 198066 port 13 198066 unique_id port 198066 remote_ip 10.8.1.86 198070 username kalantary6037 198070 mac 198070 bytes_out 0 198070 bytes_in 0 198070 station_ip 37.129.104.181 198070 port 1 198070 unique_id port 198070 remote_ip 10.8.0.10 198078 username alihosseini1 198078 mac 198078 bytes_out 0 198078 bytes_in 0 198078 station_ip 5.120.187.232 198078 port 15 198078 unique_id port 198078 remote_ip 10.8.1.74 198087 username barzegar 198087 mac 198087 bytes_out 0 198087 bytes_in 0 198087 station_ip 5.119.146.12 198087 port 3 198087 unique_id port 198087 remote_ip 10.8.1.6 198091 username alihosseini1 198091 mac 198091 bytes_out 0 198091 bytes_in 0 198091 station_ip 5.120.187.232 198091 port 12 198091 unique_id port 198091 remote_ip 10.8.1.74 198098 username barzegar 198098 mac 198098 bytes_out 0 198098 bytes_in 0 198098 station_ip 5.119.146.12 198098 port 12 198098 unique_id port 198098 remote_ip 10.8.1.6 198109 username kharazmi2920 198109 mac 198109 bytes_out 0 198109 bytes_in 0 198109 station_ip 83.122.27.145 198109 port 1 198109 unique_id port 198109 remote_ip 10.8.0.34 198112 username esmaeilkazemi 198112 mac 198112 bytes_out 0 198112 bytes_in 0 198112 station_ip 83.123.55.220 198112 port 6 198112 unique_id port 198112 remote_ip 10.8.0.86 198115 username aminvpns6 198115 mac 198115 bytes_out 0 198115 bytes_in 0 198115 station_ip 5.119.160.197 198115 port 12 198115 unique_id port 198115 remote_ip 10.8.1.62 198118 username morteza4424 198118 kill_reason Another user logged on this global unique id 198118 mac 198118 bytes_out 0 198118 bytes_in 0 198118 station_ip 83.123.75.108 198118 port 3 198118 unique_id port 198118 remote_ip 10.8.0.70 198121 username godarzi 198121 kill_reason Another user logged on this global unique id 198121 mac 198121 bytes_out 0 198121 bytes_in 0 198121 station_ip 45.84.157.190 198121 port 7 198121 unique_id port 198121 remote_ip 10.8.1.78 198123 username alihosseini1 198123 mac 198123 bytes_out 0 198123 bytes_in 0 198123 station_ip 5.120.187.232 198123 port 8 198123 unique_id port 198123 remote_ip 10.8.1.74 198128 username esmaeilkazemi 198128 mac 198128 bytes_out 0 198128 bytes_in 0 198128 station_ip 83.123.55.220 198128 port 7 198128 unique_id port 198128 remote_ip 10.8.0.86 198129 username pourshad 198129 mac 198129 bytes_out 0 198129 bytes_in 0 198129 station_ip 5.120.24.121 198129 port 4 198129 unique_id port 198129 remote_ip 10.8.0.54 198134 username akbari0070 198134 mac 198134 bytes_out 0 198134 bytes_in 0 198134 station_ip 93.114.23.213 198134 port 1 198134 unique_id port 198134 remote_ip 10.8.0.90 198137 username sabaghnezhad 198137 mac 198137 bytes_out 0 198137 bytes_in 0 198137 station_ip 83.122.98.225 198137 port 1 198137 unique_id port 198137 remote_ip 10.8.0.18 198142 username alihosseini1 198142 mac 198142 bytes_out 0 198062 bytes_in 0 198062 station_ip 45.84.157.190 198062 port 11 198062 unique_id port 198062 remote_ip 10.8.1.78 198065 username majidsarmast 198065 mac 198065 bytes_out 3255429 198065 bytes_in 41350917 198065 station_ip 86.57.110.70 198065 port 1 198065 unique_id port 198065 remote_ip 10.8.0.6 198067 username hatami 198067 mac 198067 bytes_out 1422233 198067 bytes_in 2282403 198067 station_ip 151.235.89.244 198067 port 5 198067 unique_id port 198067 remote_ip 10.8.0.78 198075 username barzegar 198075 mac 198075 bytes_out 0 198075 bytes_in 0 198075 station_ip 5.119.146.12 198075 port 4 198075 unique_id port 198075 remote_ip 10.8.0.14 198077 username farhad3 198077 mac 198077 bytes_out 0 198077 bytes_in 0 198077 station_ip 5.119.30.132 198077 port 12 198077 unique_id port 198077 remote_ip 10.8.1.38 198080 username barzegar8595 198080 mac 198080 bytes_out 0 198080 bytes_in 0 198080 station_ip 46.225.211.232 198080 port 3 198080 unique_id port 198080 remote_ip 10.8.0.82 198082 username alihosseini1 198082 kill_reason Maximum check online fails reached 198082 mac 198082 bytes_out 0 198082 bytes_in 0 198082 station_ip 5.120.187.232 198082 port 5 198082 unique_id port 198085 username pourshad 198085 mac 198085 bytes_out 407951 198085 bytes_in 2818267 198085 station_ip 5.120.24.121 198085 port 3 198085 unique_id port 198085 remote_ip 10.8.1.58 198089 username pourshad 198089 mac 198089 bytes_out 76666 198089 bytes_in 569577 198089 station_ip 5.120.24.121 198089 port 15 198089 unique_id port 198089 remote_ip 10.8.1.58 198094 username alihosseini1 198094 mac 198094 bytes_out 0 198094 bytes_in 0 198094 station_ip 5.120.187.232 198094 port 3 198094 unique_id port 198094 remote_ip 10.8.1.74 198099 username alihosseini1 198099 mac 198099 bytes_out 0 198099 bytes_in 0 198099 station_ip 5.120.187.232 198099 port 12 198099 unique_id port 198099 remote_ip 10.8.1.74 198102 username mohammadjavad 198102 mac 198102 bytes_out 0 198102 bytes_in 0 198102 station_ip 83.122.49.155 198102 port 1 198102 unique_id port 198102 remote_ip 10.8.0.58 198103 username kharazmi2920 198103 mac 198103 bytes_out 0 198103 bytes_in 0 198103 station_ip 83.122.27.145 198103 port 2 198103 unique_id port 198105 username alihosseini1 198105 mac 198105 bytes_out 0 198105 bytes_in 0 198105 station_ip 5.120.187.232 198105 port 15 198105 unique_id port 198105 remote_ip 10.8.1.74 198108 username esmaeilkazemi 198108 mac 198108 bytes_out 0 198108 bytes_in 0 198108 station_ip 83.123.55.220 198108 port 2 198108 unique_id port 198108 remote_ip 10.8.0.86 198114 username aminvpns6 198114 mac 198114 bytes_out 926062 198114 bytes_in 4598618 198114 station_ip 5.119.44.128 198114 port 3 198114 unique_id port 198114 remote_ip 10.8.1.62 198116 username alihosseini1 198116 mac 198116 bytes_out 0 198116 bytes_in 0 198116 station_ip 5.120.187.232 198116 port 3 198116 unique_id port 198116 remote_ip 10.8.1.74 198120 username alihosseini1 198120 mac 198120 bytes_out 0 198120 bytes_in 0 198120 station_ip 5.120.187.232 198120 port 3 198120 unique_id port 198120 remote_ip 10.8.1.74 198122 username alihosseini1 198122 mac 198122 bytes_out 4935047 198122 bytes_in 34836708 198122 station_ip 5.120.187.232 198122 port 7 198122 unique_id port 198122 remote_ip 10.8.0.38 198125 username kalantary6037 198125 mac 198125 bytes_out 0 198125 bytes_in 0 198125 station_ip 37.129.52.177 198125 port 2 198125 unique_id port 198069 station_ip 5.120.187.232 198069 port 11 198069 unique_id port 198069 remote_ip 10.8.1.74 198071 username alihosseini1 198071 mac 198071 bytes_out 972723 198071 bytes_in 5774122 198071 station_ip 5.120.187.232 198071 port 11 198071 unique_id port 198071 remote_ip 10.8.1.74 198072 username alihosseini1 198072 mac 198072 bytes_out 28223 198072 bytes_in 54139 198072 station_ip 5.120.187.232 198072 port 5 198072 unique_id port 198072 remote_ip 10.8.1.74 198073 username barzegar8595 198073 kill_reason Maximum check online fails reached 198073 mac 198073 bytes_out 0 198073 bytes_in 0 198073 station_ip 46.225.211.232 198073 port 11 198073 unique_id port 198074 username alihosseini1 198074 kill_reason Maximum check online fails reached 198074 mac 198074 bytes_out 0 198074 bytes_in 0 198074 station_ip 5.120.187.232 198074 port 14 198074 unique_id port 198076 username rahim 198076 mac 198076 bytes_out 0 198076 bytes_in 0 198076 station_ip 5.120.180.41 198076 port 5 198076 unique_id port 198076 remote_ip 10.8.1.90 198079 username barzegar 198079 mac 198079 bytes_out 0 198079 bytes_in 0 198079 station_ip 5.119.146.12 198079 port 5 198079 unique_id port 198079 remote_ip 10.8.1.6 198081 username alihosseini1 198081 mac 198081 bytes_out 0 198081 bytes_in 0 198081 station_ip 5.120.187.232 198081 port 4 198081 unique_id port 198081 remote_ip 10.8.0.38 198083 username kalantary6037 198083 mac 198083 bytes_out 1913664 198083 bytes_in 24423343 198083 station_ip 37.129.118.141 198083 port 1 198083 unique_id port 198083 remote_ip 10.8.0.10 198084 username alihosseini1 198084 mac 198084 bytes_out 0 198084 bytes_in 0 198084 station_ip 5.120.187.232 198084 port 12 198084 unique_id port 198084 remote_ip 10.8.1.74 198086 username alihosseini1 198086 mac 198086 bytes_out 0 198086 bytes_in 0 198086 station_ip 5.120.187.232 198086 port 12 198086 unique_id port 198086 remote_ip 10.8.1.74 198088 username alihosseini1 198088 mac 198088 bytes_out 0 198088 bytes_in 0 198088 station_ip 5.120.187.232 198088 port 3 198088 unique_id port 198088 remote_ip 10.8.1.74 198090 username barzegar 198090 mac 198090 bytes_out 0 198090 bytes_in 0 198090 station_ip 5.119.146.12 198090 port 1 198090 unique_id port 198090 remote_ip 10.8.0.14 198092 username barzegar 198092 mac 198092 bytes_out 0 198092 bytes_in 0 198092 station_ip 5.119.146.12 198092 port 1 198092 unique_id port 198092 remote_ip 10.8.0.14 198093 username pourshad 198093 mac 198093 bytes_out 0 198093 bytes_in 0 198093 station_ip 5.120.24.121 198093 port 3 198093 unique_id port 198093 remote_ip 10.8.1.58 198095 username barzegar 198095 mac 198095 bytes_out 0 198095 bytes_in 0 198095 station_ip 5.119.146.12 198095 port 4 198095 unique_id port 198095 remote_ip 10.8.0.14 198096 username pourshad 198096 mac 198096 bytes_out 30084 198096 bytes_in 41265 198096 station_ip 5.120.24.121 198096 port 12 198096 unique_id port 198096 remote_ip 10.8.1.58 198097 username alihosseini1 198097 mac 198097 bytes_out 0 198097 bytes_in 0 198097 station_ip 5.120.187.232 198097 port 12 198097 unique_id port 198097 remote_ip 10.8.1.74 198100 username esmaeilkazemi 198100 mac 198100 bytes_out 65535 198100 bytes_in 378173 198100 station_ip 83.123.55.220 198100 port 5 198100 unique_id port 198100 remote_ip 10.8.0.86 198101 username alihosseini1 198101 mac 198101 bytes_out 0 198101 bytes_in 0 198101 station_ip 5.120.187.232 198101 port 12 198101 unique_id port 198101 remote_ip 10.8.1.74 198104 username sabaghnezhad 198104 mac 198104 bytes_out 0 198104 bytes_in 0 198104 station_ip 83.123.172.46 198104 port 6 198104 unique_id port 198104 remote_ip 10.8.0.18 198106 username sabaghnezhad 198106 mac 198106 bytes_out 0 198106 bytes_in 0 198106 station_ip 83.123.172.46 198106 port 12 198106 unique_id port 198106 remote_ip 10.8.1.42 198107 username sabaghnezhad 198107 mac 198107 bytes_out 0 198107 bytes_in 0 198107 station_ip 37.129.143.24 198107 port 15 198107 unique_id port 198107 remote_ip 10.8.1.42 198110 username sabaghnezhad 198110 mac 198110 bytes_out 63466 198110 bytes_in 72576 198110 station_ip 83.122.98.225 198110 port 12 198110 unique_id port 198110 remote_ip 10.8.1.42 198111 username kharazmi2920 198111 kill_reason Maximum check online fails reached 198111 mac 198111 bytes_out 0 198111 bytes_in 0 198111 station_ip 83.122.27.145 198111 port 5 198111 unique_id port 198113 username alihosseini1 198113 mac 198113 bytes_out 0 198113 bytes_in 0 198113 station_ip 5.120.187.232 198113 port 12 198113 unique_id port 198113 remote_ip 10.8.1.74 198117 username dortaj3792 198117 mac 198117 bytes_out 0 198117 bytes_in 0 198117 station_ip 5.119.132.67 198117 port 8 198117 unique_id port 198117 remote_ip 10.8.1.34 198119 username barzegar 198119 mac 198119 bytes_out 0 198119 bytes_in 0 198119 station_ip 5.119.146.12 198119 port 8 198119 unique_id port 198119 remote_ip 10.8.1.6 198124 username dortaj3792 198124 kill_reason Another user logged on this global unique id 198124 mac 198124 bytes_out 0 198124 bytes_in 0 198124 station_ip 5.119.132.67 198124 port 3 198124 unique_id port 198124 remote_ip 10.8.1.34 198130 username esmaeilkazemi 198130 mac 198130 bytes_out 14927 198130 bytes_in 28591 198130 station_ip 83.123.55.220 198130 port 8 198130 unique_id port 198130 remote_ip 10.8.0.86 198132 username barzegar 198132 mac 198132 bytes_out 0 198132 bytes_in 0 198132 station_ip 5.119.146.12 198132 port 3 198132 unique_id port 198132 remote_ip 10.8.0.14 198135 username sabaghnezhad 198135 mac 198135 bytes_out 0 198135 bytes_in 0 198135 station_ip 83.122.98.225 198135 port 12 198135 unique_id port 198135 remote_ip 10.8.1.42 198143 username iranmanesh4443 198143 kill_reason Another user logged on this global unique id 198143 mac 198143 bytes_out 0 198143 bytes_in 0 198143 station_ip 5.119.24.59 198143 port 2 198143 unique_id port 198143 remote_ip 10.8.0.74 198147 username morteza4424 198147 mac 198147 bytes_out 5980702 198147 bytes_in 8784655 198147 station_ip 83.123.51.64 198147 port 1 198147 unique_id port 198147 remote_ip 10.8.0.70 198148 username sekonji0496 198148 kill_reason Maximum check online fails reached 198148 mac 198148 bytes_out 0 198148 bytes_in 0 198148 station_ip 37.129.73.247 198148 port 1 198148 unique_id port 198150 username sekonji0496 198150 mac 198150 bytes_out 17103 198150 bytes_in 14342 198150 station_ip 37.129.73.247 198150 port 15 198150 unique_id port 198150 remote_ip 10.8.1.98 198152 username barzegar 198152 mac 198152 bytes_out 0 198152 bytes_in 0 198152 station_ip 5.119.146.12 198152 port 18 198152 unique_id port 198152 remote_ip 10.8.1.6 198156 username pourshad 198156 mac 198156 bytes_out 0 198156 bytes_in 0 198156 station_ip 5.120.24.121 198156 port 8 198156 unique_id port 198156 remote_ip 10.8.1.58 198158 username barzegar 198158 mac 198158 bytes_out 0 198158 bytes_in 0 198158 station_ip 5.119.146.12 198158 port 8 198158 unique_id port 198125 remote_ip 10.8.0.10 198126 username morteza4424 198126 mac 198126 bytes_out 0 198126 bytes_in 0 198126 station_ip 83.123.75.108 198126 port 3 198126 unique_id port 198127 username esmaeilkazemi 198127 mac 198127 bytes_out 0 198127 bytes_in 0 198127 station_ip 83.123.55.220 198127 port 3 198127 unique_id port 198127 remote_ip 10.8.0.86 198131 username barzegar8595 198131 mac 198131 bytes_out 0 198131 bytes_in 0 198131 station_ip 46.225.211.232 198131 port 2 198131 unique_id port 198131 remote_ip 10.8.0.82 198133 username sabaghnezhad 198133 mac 198133 bytes_out 250183 198133 bytes_in 1090996 198133 station_ip 83.122.98.225 198133 port 1 198133 unique_id port 198133 remote_ip 10.8.0.18 198136 username alihosseini1 198136 mac 198136 bytes_out 0 198136 bytes_in 0 198136 station_ip 5.120.187.232 198136 port 12 198136 unique_id port 198136 remote_ip 10.8.1.74 198138 username kalantary6037 198138 mac 198138 bytes_out 5712683 198138 bytes_in 40853864 198138 station_ip 37.129.52.177 198138 port 7 198138 unique_id port 198138 remote_ip 10.8.0.10 198139 username barzegar 198139 mac 198139 bytes_out 0 198139 bytes_in 0 198139 station_ip 5.119.146.12 198139 port 12 198139 unique_id port 198139 remote_ip 10.8.1.6 198140 username alihosseini1 198140 mac 198140 bytes_out 0 198140 bytes_in 0 198140 station_ip 5.120.187.232 198140 port 12 198140 unique_id port 198140 remote_ip 10.8.1.74 198141 username alihosseini1 198141 mac 198141 bytes_out 0 198141 bytes_in 0 198141 station_ip 5.120.187.232 198141 port 12 198141 unique_id port 198141 remote_ip 10.8.1.74 198145 username sekonji0496 198145 mac 198145 bytes_out 0 198145 bytes_in 0 198145 station_ip 37.129.73.247 198145 port 4 198145 unique_id port 198145 remote_ip 10.8.0.66 198149 username alihosseini1 198149 mac 198149 bytes_out 0 198149 bytes_in 0 198149 station_ip 5.120.187.232 198149 port 16 198149 unique_id port 198149 remote_ip 10.8.1.74 198153 username sekonji0496 198153 mac 198153 bytes_out 0 198153 bytes_in 0 198153 station_ip 37.129.73.247 198153 port 6 198153 unique_id port 198153 remote_ip 10.8.0.66 198154 username barzegar 198154 kill_reason Maximum check online fails reached 198154 mac 198154 bytes_out 0 198154 bytes_in 0 198154 station_ip 5.119.146.12 198154 port 15 198154 unique_id port 198157 username houshang 198157 mac 198157 bytes_out 155837 198157 bytes_in 260640 198157 station_ip 5.119.209.44 198157 port 4 198157 unique_id port 198157 remote_ip 10.8.0.50 198162 username morteza4424 198162 mac 198162 bytes_out 0 198162 bytes_in 0 198162 station_ip 83.123.51.64 198162 port 7 198162 unique_id port 198162 remote_ip 10.8.0.70 198165 username iranmanesh4443 198165 mac 198165 bytes_out 0 198165 bytes_in 0 198165 station_ip 5.119.24.59 198165 port 2 198165 unique_id port 198170 username alihosseini1 198170 mac 198170 bytes_out 0 198170 bytes_in 0 198170 station_ip 5.120.187.232 198170 port 16 198170 unique_id port 198170 remote_ip 10.8.1.74 198179 username morteza4424 198179 mac 198179 bytes_out 0 198179 bytes_in 0 198179 station_ip 83.123.51.64 198179 port 2 198179 unique_id port 198179 remote_ip 10.8.0.70 198185 username barzegar 198185 mac 198185 bytes_out 25229 198185 bytes_in 33183 198185 station_ip 5.119.146.12 198185 port 12 198185 unique_id port 198185 remote_ip 10.8.1.6 198190 username barzegar 198190 mac 198190 bytes_out 2998 198190 bytes_in 5593 198190 station_ip 5.119.146.12 198142 bytes_in 0 198142 station_ip 5.120.187.232 198142 port 12 198142 unique_id port 198142 remote_ip 10.8.1.74 198144 username sekonji0496 198144 mac 198144 bytes_out 0 198144 bytes_in 0 198144 station_ip 37.129.73.247 198144 port 6 198144 unique_id port 198144 remote_ip 10.8.0.66 198146 username alihosseini1 198146 mac 198146 bytes_out 0 198146 bytes_in 0 198146 station_ip 5.120.187.232 198146 port 12 198146 unique_id port 198146 remote_ip 10.8.1.74 198151 username sekonji0496 198151 mac 198151 bytes_out 0 198151 bytes_in 0 198151 station_ip 37.129.73.247 198151 port 15 198151 unique_id port 198151 remote_ip 10.8.1.98 198155 username morteza4424 198155 kill_reason Another user logged on this global unique id 198155 mac 198155 bytes_out 0 198155 bytes_in 0 198155 station_ip 83.123.51.64 198155 port 12 198155 unique_id port 198155 remote_ip 10.8.1.94 198161 username hatami 198161 kill_reason Another user logged on this global unique id 198161 mac 198161 bytes_out 0 198161 bytes_in 0 198161 station_ip 151.235.89.244 198161 port 7 198161 unique_id port 198161 remote_ip 10.8.1.26 198164 username kalantary6037 198164 kill_reason Another user logged on this global unique id 198164 mac 198164 bytes_out 0 198164 bytes_in 0 198164 station_ip 37.129.70.201 198164 port 8 198164 unique_id port 198164 remote_ip 10.8.0.10 198168 username barzegar 198168 kill_reason Maximum check online fails reached 198168 mac 198168 bytes_out 0 198168 bytes_in 0 198168 station_ip 5.119.146.12 198168 port 19 198168 unique_id port 198171 username pourshad 198171 mac 198171 bytes_out 86153 198171 bytes_in 90248 198171 station_ip 5.120.24.121 198171 port 12 198171 unique_id port 198171 remote_ip 10.8.1.58 198173 username morteza4424 198173 mac 198173 bytes_out 0 198173 bytes_in 0 198173 station_ip 83.123.51.64 198173 port 2 198173 unique_id port 198173 remote_ip 10.8.0.70 198174 username pourshad 198174 mac 198174 bytes_out 28223 198174 bytes_in 30273 198174 station_ip 5.120.24.121 198174 port 16 198174 unique_id port 198174 remote_ip 10.8.1.58 198176 username morteza4424 198176 mac 198176 bytes_out 0 198176 bytes_in 0 198176 station_ip 83.123.51.64 198176 port 2 198176 unique_id port 198176 remote_ip 10.8.0.70 198177 username rahim 198177 kill_reason Another user logged on this global unique id 198177 mac 198177 bytes_out 0 198177 bytes_in 0 198177 station_ip 5.119.240.152 198177 port 17 198177 unique_id port 198177 remote_ip 10.8.1.90 198178 username alihosseini1 198178 mac 198178 bytes_out 0 198178 bytes_in 0 198178 station_ip 5.120.187.232 198178 port 16 198178 unique_id port 198178 remote_ip 10.8.1.74 198181 username morteza4424 198181 mac 198181 bytes_out 0 198181 bytes_in 0 198181 station_ip 83.123.51.64 198181 port 2 198181 unique_id port 198181 remote_ip 10.8.0.70 198182 username pourshad 198182 mac 198182 bytes_out 316056 198182 bytes_in 7065225 198182 station_ip 5.120.24.121 198182 port 22 198182 unique_id port 198182 remote_ip 10.8.1.58 198183 username fezealinaghi 198183 kill_reason Another user logged on this global unique id 198183 mac 198183 bytes_out 0 198183 bytes_in 0 198183 station_ip 37.129.188.69 198183 port 9 198183 unique_id port 198183 remote_ip 10.8.0.98 198187 username barzegar 198187 mac 198187 bytes_out 3046 198187 bytes_in 5999 198187 station_ip 5.119.146.12 198187 port 12 198187 unique_id port 198187 remote_ip 10.8.1.6 198194 username alihosseini1 198194 mac 198194 bytes_out 0 198194 bytes_in 0 198194 station_ip 5.120.187.232 198194 port 12 198158 remote_ip 10.8.1.6 198159 username morteza4424 198159 mac 198159 bytes_out 0 198159 bytes_in 0 198159 station_ip 83.123.51.64 198159 port 12 198159 unique_id port 198160 username morteza4424 198160 mac 198160 bytes_out 0 198160 bytes_in 0 198160 station_ip 83.123.51.64 198160 port 7 198160 unique_id port 198160 remote_ip 10.8.1.94 198163 username sekonji0496 198163 mac 198163 bytes_out 5035 198163 bytes_in 12672 198163 station_ip 37.129.73.247 198163 port 6 198163 unique_id port 198163 remote_ip 10.8.0.66 198166 username barzegar 198166 mac 198166 bytes_out 2638 198166 bytes_in 5349 198166 station_ip 5.119.146.12 198166 port 8 198166 unique_id port 198166 remote_ip 10.8.1.6 198167 username sabaghnezhad 198167 mac 198167 bytes_out 285945 198167 bytes_in 903763 198167 station_ip 83.122.98.225 198167 port 3 198167 unique_id port 198167 remote_ip 10.8.0.18 198169 username arash 198169 mac 198169 bytes_out 1629399 198169 bytes_in 18692722 198169 station_ip 37.27.7.223 198169 port 8 198169 unique_id port 198169 remote_ip 10.8.1.54 198172 username morteza4424 198172 mac 198172 bytes_out 89461 198172 bytes_in 366344 198172 station_ip 83.123.51.64 198172 port 7 198172 unique_id port 198172 remote_ip 10.8.0.70 198175 username morteza4424 198175 mac 198175 bytes_out 0 198175 bytes_in 0 198175 station_ip 83.123.51.64 198175 port 2 198175 unique_id port 198175 remote_ip 10.8.0.70 198180 username morteza4424 198180 mac 198180 bytes_out 0 198180 bytes_in 0 198180 station_ip 83.123.51.64 198180 port 2 198180 unique_id port 198180 remote_ip 10.8.0.70 198184 username nilufarrajaei 198184 mac 198184 bytes_out 1374750 198184 bytes_in 10157492 198184 station_ip 83.123.161.182 198184 port 4 198184 unique_id port 198184 remote_ip 10.8.0.94 198186 username alihosseini1 198186 mac 198186 bytes_out 0 198186 bytes_in 0 198186 station_ip 5.120.187.232 198186 port 23 198186 unique_id port 198186 remote_ip 10.8.1.74 198188 username morteza4424 198188 kill_reason Another user logged on this global unique id 198188 mac 198188 bytes_out 0 198188 bytes_in 0 198188 station_ip 83.123.51.64 198188 port 2 198188 unique_id port 198188 remote_ip 10.8.0.70 198189 username alihosseini1 198189 kill_reason Maximum check online fails reached 198189 mac 198189 bytes_out 0 198189 bytes_in 0 198189 station_ip 5.120.187.232 198189 port 24 198189 unique_id port 198191 username rahim 198191 kill_reason Another user logged on this global unique id 198191 mac 198191 bytes_out 0 198191 bytes_in 0 198191 station_ip 5.119.240.152 198191 port 17 198191 unique_id port 198192 username alihosseini1 198192 mac 198192 bytes_out 0 198192 bytes_in 0 198192 station_ip 5.120.187.232 198192 port 12 198192 unique_id port 198192 remote_ip 10.8.1.74 198193 username esmaeili1522 198193 mac 198193 bytes_out 95291 198193 bytes_in 181962 198193 station_ip 5.119.120.69 198193 port 25 198193 unique_id port 198193 remote_ip 10.8.1.106 198198 username fezealinaghi 198198 kill_reason Another user logged on this global unique id 198198 mac 198198 bytes_out 0 198198 bytes_in 0 198198 station_ip 37.129.188.69 198198 port 9 198198 unique_id port 198200 username alihosseini1 198200 mac 198200 bytes_out 0 198200 bytes_in 0 198200 station_ip 5.120.187.232 198200 port 25 198200 unique_id port 198200 remote_ip 10.8.1.74 198202 username barzegar 198202 mac 198202 bytes_out 0 198202 bytes_in 0 198202 station_ip 5.119.146.12 198202 port 12 198202 unique_id port 198202 remote_ip 10.8.1.6 198190 port 12 198190 unique_id port 198190 remote_ip 10.8.1.6 198196 username mostafa_es78 198196 mac 198196 bytes_out 0 198196 bytes_in 0 198196 station_ip 113.203.41.242 198196 port 4 198196 unique_id port 198196 remote_ip 10.8.0.102 198197 username morteza4424 198197 kill_reason Another user logged on this global unique id 198197 mac 198197 bytes_out 0 198197 bytes_in 0 198197 station_ip 83.123.51.64 198197 port 2 198197 unique_id port 198203 username alihosseini1 198203 mac 198203 bytes_out 0 198203 bytes_in 0 198203 station_ip 5.120.187.232 198203 port 27 198203 unique_id port 198203 remote_ip 10.8.1.74 198205 username barzegar 198205 mac 198205 bytes_out 0 198205 bytes_in 0 198205 station_ip 5.119.146.12 198205 port 20 198205 unique_id port 198205 remote_ip 10.8.1.6 198207 username rahim 198207 mac 198207 bytes_out 0 198207 bytes_in 0 198207 station_ip 5.119.240.152 198207 port 17 198207 unique_id port 198208 username sobhan 198208 unique_id port 198208 terminate_cause Lost-Carrier 198208 bytes_out 909339 198208 bytes_in 4168475 198208 station_ip 2.183.246.179 198208 port 15729594 198208 nas_port_type Virtual 198208 remote_ip 5.5.5.204 198210 username khalili2 198210 kill_reason Another user logged on this global unique id 198210 mac 198210 bytes_out 0 198210 bytes_in 0 198210 station_ip 5.120.184.114 198210 port 21 198210 unique_id port 198210 remote_ip 10.8.1.18 198212 username godarzi 198212 kill_reason Another user logged on this global unique id 198212 mac 198212 bytes_out 0 198212 bytes_in 0 198212 station_ip 45.84.157.190 198212 port 8 198212 unique_id port 198212 remote_ip 10.8.1.78 198213 username morteza4424 198213 kill_reason Another user logged on this global unique id 198213 mac 198213 bytes_out 0 198213 bytes_in 0 198213 station_ip 83.123.51.64 198213 port 2 198213 unique_id port 198222 username morteza4424 198222 mac 198222 bytes_out 0 198222 bytes_in 0 198222 station_ip 83.123.51.64 198222 port 2 198222 unique_id port 198222 remote_ip 10.8.0.70 198225 username morteza4424 198225 mac 198225 bytes_out 1703 198225 bytes_in 5811 198225 station_ip 83.123.51.64 198225 port 2 198225 unique_id port 198225 remote_ip 10.8.0.70 198226 username sekonji0496 198226 mac 198226 bytes_out 0 198226 bytes_in 0 198226 station_ip 37.129.73.247 198226 port 25 198226 unique_id port 198226 remote_ip 10.8.1.98 198229 username mostafa_es78 198229 kill_reason Another user logged on this global unique id 198229 mac 198229 bytes_out 0 198229 bytes_in 0 198229 station_ip 83.122.208.246 198229 port 8 198229 unique_id port 198229 remote_ip 10.8.0.102 198231 username morteza4424 198231 mac 198231 bytes_out 0 198231 bytes_in 0 198231 station_ip 83.123.51.64 198231 port 7 198231 unique_id port 198231 remote_ip 10.8.1.94 198232 username morteza4424 198232 mac 198232 bytes_out 0 198232 bytes_in 0 198232 station_ip 83.123.51.64 198232 port 4 198232 unique_id port 198232 remote_ip 10.8.0.70 198235 username mosi 198235 mac 198235 bytes_out 362869 198235 bytes_in 991419 198235 station_ip 5.72.224.117 198235 port 17 198235 unique_id port 198235 remote_ip 10.8.1.118 198237 username barzegar 198237 mac 198237 bytes_out 0 198237 bytes_in 0 198237 station_ip 5.119.146.12 198237 port 7 198237 unique_id port 198237 remote_ip 10.8.1.6 198239 username barzegar 198239 mac 198239 bytes_out 0 198239 bytes_in 0 198239 station_ip 5.119.146.12 198239 port 12 198239 unique_id port 198239 remote_ip 10.8.1.6 198241 username morteza4424 198241 mac 198241 bytes_out 0 198194 unique_id port 198194 remote_ip 10.8.1.74 198195 username alihosseini1 198195 mac 198195 bytes_out 0 198195 bytes_in 0 198195 station_ip 5.120.187.232 198195 port 12 198195 unique_id port 198195 remote_ip 10.8.1.74 198199 username alihosseini1 198199 mac 198199 bytes_out 0 198199 bytes_in 0 198199 station_ip 5.120.187.232 198199 port 25 198199 unique_id port 198199 remote_ip 10.8.1.74 198201 username sekonji0496 198201 mac 198201 bytes_out 0 198201 bytes_in 0 198201 station_ip 37.129.73.247 198201 port 6 198201 unique_id port 198201 remote_ip 10.8.0.66 198204 username farhad3 198204 mac 198204 bytes_out 0 198204 bytes_in 0 198204 station_ip 5.119.30.132 198204 port 20 198204 unique_id port 198204 remote_ip 10.8.1.38 198206 username morteza4424 198206 kill_reason Another user logged on this global unique id 198206 mac 198206 bytes_out 0 198206 bytes_in 0 198206 station_ip 83.123.51.64 198206 port 2 198206 unique_id port 198209 username fezealinaghi 198209 kill_reason Another user logged on this global unique id 198209 mac 198209 bytes_out 0 198209 bytes_in 0 198209 station_ip 37.129.188.69 198209 port 9 198209 unique_id port 198211 username charkhandaz3496 198211 mac 198211 bytes_out 2624378 198211 bytes_in 16663130 198211 station_ip 5.119.21.144 198211 port 25 198211 unique_id port 198211 remote_ip 10.8.1.46 198214 username motamedi9772 198214 kill_reason Another user logged on this global unique id 198214 mac 198214 bytes_out 0 198214 bytes_in 0 198214 station_ip 83.123.152.85 198214 port 7 198214 unique_id port 198214 remote_ip 10.8.0.62 198215 username barzegar 198215 mac 198215 bytes_out 0 198215 bytes_in 0 198215 station_ip 5.119.146.12 198215 port 7 198215 unique_id port 198215 remote_ip 10.8.1.6 198218 username fezealinaghi 198218 kill_reason Another user logged on this global unique id 198218 mac 198218 bytes_out 0 198218 bytes_in 0 198218 station_ip 37.129.188.69 198218 port 9 198218 unique_id port 198223 username morteza4424 198223 kill_reason Maximum check online fails reached 198223 mac 198223 bytes_out 0 198223 bytes_in 0 198223 station_ip 83.123.51.64 198223 port 6 198223 unique_id port 198227 username majidsarmast 198227 mac 198227 bytes_out 659830 198227 bytes_in 3692241 198227 station_ip 86.57.125.228 198227 port 7 198227 unique_id port 198227 remote_ip 10.8.1.114 198233 username khalili2 198233 kill_reason Another user logged on this global unique id 198233 mac 198233 bytes_out 0 198233 bytes_in 0 198233 station_ip 5.120.184.114 198233 port 21 198233 unique_id port 198234 username fezealinaghi 198234 kill_reason Another user logged on this global unique id 198234 mac 198234 bytes_out 0 198234 bytes_in 0 198234 station_ip 37.129.188.69 198234 port 9 198234 unique_id port 198238 username alihosseini1 198238 mac 198238 bytes_out 0 198238 bytes_in 0 198238 station_ip 5.120.187.232 198238 port 12 198238 unique_id port 198238 remote_ip 10.8.1.74 198240 username morteza4424 198240 mac 198240 bytes_out 0 198240 bytes_in 0 198240 station_ip 83.123.51.64 198240 port 7 198240 unique_id port 198240 remote_ip 10.8.1.94 198244 username khalili2 198244 mac 198244 bytes_out 0 198244 bytes_in 0 198244 station_ip 5.120.184.114 198244 port 21 198244 unique_id port 198247 username morteza4424 198247 mac 198247 bytes_out 0 198247 bytes_in 0 198247 station_ip 83.123.51.64 198247 port 4 198247 unique_id port 198247 remote_ip 10.8.0.70 198248 username sekonji0496 198248 mac 198248 bytes_out 0 198248 bytes_in 0 198248 station_ip 37.129.73.247 198248 port 25 198216 username kalantary6037 198216 mac 198216 bytes_out 0 198216 bytes_in 0 198216 station_ip 37.129.124.141 198216 port 6 198216 unique_id port 198216 remote_ip 10.8.0.10 198217 username morteza4424 198217 mac 198217 bytes_out 0 198217 bytes_in 0 198217 station_ip 83.123.51.64 198217 port 2 198217 unique_id port 198219 username mosi 198219 mac 198219 bytes_out 0 198219 bytes_in 0 198219 station_ip 78.39.29.40 198219 port 10 198219 unique_id port 198219 remote_ip 10.8.0.106 198220 username morteza4424 198220 mac 198220 bytes_out 0 198220 bytes_in 0 198220 station_ip 83.123.51.64 198220 port 2 198220 unique_id port 198220 remote_ip 10.8.0.70 198221 username sekonji0496 198221 mac 198221 bytes_out 0 198221 bytes_in 0 198221 station_ip 37.129.73.247 198221 port 4 198221 unique_id port 198221 remote_ip 10.8.0.66 198224 username sekonji0496 198224 mac 198224 bytes_out 0 198224 bytes_in 0 198224 station_ip 37.129.73.247 198224 port 25 198224 unique_id port 198224 remote_ip 10.8.1.98 198228 username aminvpns6 198228 mac 198228 bytes_out 1338496 198228 bytes_in 9613845 198228 station_ip 5.119.160.197 198228 port 18 198228 unique_id port 198228 remote_ip 10.8.1.62 198230 username morteza4424 198230 mac 198230 bytes_out 0 198230 bytes_in 0 198230 station_ip 83.123.51.64 198230 port 2 198230 unique_id port 198230 remote_ip 10.8.0.70 198236 username majidsarmast 198236 mac 198236 bytes_out 365916 198236 bytes_in 4631528 198236 station_ip 83.123.214.7 198236 port 27 198236 unique_id port 198236 remote_ip 10.8.1.114 198245 username morteza4424 198245 mac 198245 bytes_out 0 198245 bytes_in 0 198245 station_ip 83.123.51.64 198245 port 4 198245 unique_id port 198245 remote_ip 10.8.0.70 198250 username sekonji0496 198250 mac 198250 bytes_out 0 198250 bytes_in 0 198250 station_ip 37.129.73.247 198250 port 18 198250 unique_id port 198250 remote_ip 10.8.1.98 198253 username esmaeilkazemi 198253 mac 198253 bytes_out 0 198253 bytes_in 0 198253 station_ip 83.123.55.220 198253 port 7 198253 unique_id port 198253 remote_ip 10.8.0.86 198255 username esmaeilkazemi 198255 mac 198255 bytes_out 0 198255 bytes_in 0 198255 station_ip 83.123.55.220 198255 port 4 198255 unique_id port 198255 remote_ip 10.8.0.86 198257 username barzegar 198257 mac 198257 bytes_out 0 198257 bytes_in 0 198257 station_ip 5.119.146.12 198257 port 21 198257 unique_id port 198257 remote_ip 10.8.1.6 198258 username esmaeilkazemi 198258 mac 198258 bytes_out 0 198258 bytes_in 0 198258 station_ip 83.123.55.220 198258 port 4 198258 unique_id port 198258 remote_ip 10.8.0.86 198261 username morteza4424 198261 mac 198261 bytes_out 0 198261 bytes_in 0 198261 station_ip 83.123.51.64 198261 port 21 198261 unique_id port 198261 remote_ip 10.8.1.94 198263 username esmaeilkazemi 198263 mac 198263 bytes_out 0 198263 bytes_in 0 198263 station_ip 83.123.55.220 198263 port 4 198263 unique_id port 198263 remote_ip 10.8.0.86 198264 username morteza4424 198264 mac 198264 bytes_out 0 198264 bytes_in 0 198264 station_ip 83.123.51.64 198264 port 12 198264 unique_id port 198264 remote_ip 10.8.1.94 198268 username iranmanesh4443 198268 mac 198268 bytes_out 0 198268 bytes_in 0 198268 station_ip 5.119.24.59 198268 port 12 198268 unique_id port 198268 remote_ip 10.8.1.122 198271 username esmaeilkazemi 198271 mac 198271 bytes_out 6501 198271 bytes_in 27531 198271 station_ip 83.123.55.220 198271 port 10 198241 bytes_in 0 198241 station_ip 83.123.51.64 198241 port 7 198241 unique_id port 198241 remote_ip 10.8.1.94 198242 username morteza4424 198242 mac 198242 bytes_out 0 198242 bytes_in 0 198242 station_ip 83.123.51.64 198242 port 7 198242 unique_id port 198242 remote_ip 10.8.1.94 198243 username morteza4424 198243 mac 198243 bytes_out 0 198243 bytes_in 0 198243 station_ip 83.123.51.64 198243 port 4 198243 unique_id port 198243 remote_ip 10.8.0.70 198246 username alihosseini1 198246 kill_reason Maximum check online fails reached 198246 mac 198246 bytes_out 0 198246 bytes_in 0 198246 station_ip 5.120.191.231 198246 port 7 198246 unique_id port 198251 username morteza4424 198251 mac 198251 bytes_out 0 198251 bytes_in 0 198251 station_ip 83.123.51.64 198251 port 4 198251 unique_id port 198251 remote_ip 10.8.0.70 198252 username morteza4424 198252 mac 198252 bytes_out 0 198252 bytes_in 0 198252 station_ip 83.123.51.64 198252 port 4 198252 unique_id port 198252 remote_ip 10.8.0.70 198254 username morteza4424 198254 kill_reason Maximum check online fails reached 198254 mac 198254 bytes_out 0 198254 bytes_in 0 198254 station_ip 83.123.51.64 198254 port 18 198254 unique_id port 198262 username alihosseini1 198262 mac 198262 bytes_out 6591742 198262 bytes_in 468536 198262 station_ip 5.120.70.15 198262 port 12 198262 unique_id port 198262 remote_ip 10.8.1.74 198265 username esmaeilkazemi 198265 mac 198265 bytes_out 13605 198265 bytes_in 32906 198265 station_ip 83.123.55.220 198265 port 7 198265 unique_id port 198265 remote_ip 10.8.0.86 198269 username mammad 198269 unique_id port 198269 terminate_cause User-Request 198269 bytes_out 17981077 198269 bytes_in 246026160 198269 station_ip 2.183.249.208 198269 port 15729591 198269 nas_port_type Virtual 198269 remote_ip 5.5.5.255 198270 username mostafa_es78 198270 kill_reason Another user logged on this global unique id 198270 mac 198270 bytes_out 0 198270 bytes_in 0 198270 station_ip 83.122.208.246 198270 port 8 198270 unique_id port 198272 username barzegar8595 198272 kill_reason Another user logged on this global unique id 198272 mac 198272 bytes_out 0 198272 bytes_in 0 198272 station_ip 37.156.62.221 198272 port 22 198272 unique_id port 198272 remote_ip 10.8.1.50 198274 username alihosseini1 198274 mac 198274 bytes_out 0 198274 bytes_in 0 198274 station_ip 5.120.70.15 198274 port 12 198274 unique_id port 198274 remote_ip 10.8.1.74 198277 username khalili2 198277 kill_reason Another user logged on this global unique id 198277 mac 198277 bytes_out 0 198277 bytes_in 0 198277 station_ip 5.120.184.114 198277 port 17 198277 unique_id port 198277 remote_ip 10.8.1.18 198278 username kalantary6037 198278 mac 198278 bytes_out 0 198278 bytes_in 0 198278 station_ip 37.129.69.153 198278 port 4 198278 unique_id port 198278 remote_ip 10.8.0.10 198280 username jafari 198280 kill_reason Another user logged on this global unique id 198280 mac 198280 bytes_out 0 198280 bytes_in 0 198280 station_ip 89.32.110.242 198280 port 8 198280 unique_id port 198280 remote_ip 10.8.1.126 198284 username alihosseini1 198284 mac 198284 bytes_out 0 198284 bytes_in 0 198284 station_ip 5.120.70.15 198284 port 12 198284 unique_id port 198284 remote_ip 10.8.1.74 198285 username motamedi9772 198285 mac 198285 bytes_out 0 198285 bytes_in 0 198285 station_ip 83.123.160.133 198285 port 4 198285 unique_id port 198285 remote_ip 10.8.0.62 198287 username morteza4424 198287 mac 198287 bytes_out 0 198287 bytes_in 0 198287 station_ip 83.123.51.64 198287 port 7 198287 unique_id port 198248 unique_id port 198248 remote_ip 10.8.1.98 198249 username tahmorsi 198249 mac 198249 bytes_out 1727352 198249 bytes_in 24847578 198249 station_ip 86.57.83.248 198249 port 23 198249 unique_id port 198249 remote_ip 10.8.1.102 198256 username esmaeilkazemi 198256 mac 198256 bytes_out 0 198256 bytes_in 0 198256 station_ip 83.123.55.220 198256 port 7 198256 unique_id port 198256 remote_ip 10.8.0.86 198259 username fezealinaghi 198259 mac 198259 bytes_out 0 198259 bytes_in 0 198259 station_ip 37.129.188.69 198259 port 9 198259 unique_id port 198260 username esmaeilkazemi 198260 mac 198260 bytes_out 0 198260 bytes_in 0 198260 station_ip 83.123.55.220 198260 port 7 198260 unique_id port 198260 remote_ip 10.8.0.86 198266 username alihosseini1 198266 mac 198266 bytes_out 0 198266 bytes_in 0 198266 station_ip 5.120.70.15 198266 port 9 198266 unique_id port 198266 remote_ip 10.8.0.38 198267 username esmaeilkazemi 198267 mac 198267 bytes_out 0 198267 bytes_in 0 198267 station_ip 83.123.55.220 198267 port 9 198267 unique_id port 198267 remote_ip 10.8.0.86 198279 username alihosseini1 198279 mac 198279 bytes_out 0 198279 bytes_in 0 198279 station_ip 5.120.70.15 198279 port 8 198279 unique_id port 198279 remote_ip 10.8.1.74 198281 username barzegar 198281 mac 198281 bytes_out 0 198281 bytes_in 0 198281 station_ip 5.119.146.12 198281 port 12 198281 unique_id port 198281 remote_ip 10.8.1.6 198286 username mostafa_es78 198286 kill_reason Another user logged on this global unique id 198286 mac 198286 bytes_out 0 198286 bytes_in 0 198286 station_ip 83.122.208.246 198286 port 8 198286 unique_id port 198292 username khalili2 198292 mac 198292 bytes_out 96996 198292 bytes_in 1004589 198292 station_ip 5.120.184.114 198292 port 3 198292 unique_id port 198292 remote_ip 10.8.1.18 198293 username mostafa_es78 198293 mac 198293 bytes_out 0 198293 bytes_in 0 198293 station_ip 83.122.208.246 198293 port 8 198293 unique_id port 198295 username fezealinaghi 198295 mac 198295 bytes_out 0 198295 bytes_in 0 198295 station_ip 37.129.235.69 198295 port 7 198295 unique_id port 198295 remote_ip 10.8.0.98 198297 username jafari 198297 mac 198297 bytes_out 14908212 198297 bytes_in 24335774 198297 station_ip 5.62.223.104 198297 port 3 198297 unique_id port 198297 remote_ip 10.8.1.126 198298 username jafari 198298 kill_reason Another user logged on this global unique id 198298 mac 198298 bytes_out 0 198298 bytes_in 0 198298 station_ip 5.62.223.104 198298 port 8 198298 unique_id port 198298 remote_ip 10.8.1.126 198299 username mostafa_es78 198299 kill_reason Another user logged on this global unique id 198299 mac 198299 bytes_out 0 198299 bytes_in 0 198299 station_ip 83.122.208.246 198299 port 8 198299 unique_id port 198300 username mostafa_es78 198300 mac 198300 bytes_out 0 198300 bytes_in 0 198300 station_ip 83.122.208.246 198300 port 8 198300 unique_id port 198301 username barzegar 198301 mac 198301 bytes_out 15567808 198301 bytes_in 29879753 198301 station_ip 5.119.146.12 198301 port 3 198301 unique_id port 198301 remote_ip 10.8.1.6 198302 username akbari0070 198302 mac 198302 bytes_out 0 198302 bytes_in 0 198302 station_ip 37.129.7.45 198302 port 9 198302 unique_id port 198302 remote_ip 10.8.0.90 198303 username motamedi9772 198303 kill_reason Another user logged on this global unique id 198303 mac 198303 bytes_out 0 198303 bytes_in 0 198303 station_ip 83.123.160.133 198303 port 4 198303 unique_id port 198303 remote_ip 10.8.0.62 198271 unique_id port 198271 remote_ip 10.8.0.86 198273 username mostafa_es78 198273 mac 198273 bytes_out 0 198273 bytes_in 0 198273 station_ip 83.122.208.246 198273 port 8 198273 unique_id port 198275 username teymori5660 198275 mac 198275 bytes_out 0 198275 bytes_in 0 198275 station_ip 5.119.180.12 198275 port 9 198275 unique_id port 198275 remote_ip 10.8.0.114 198276 username alihosseini1 198276 mac 198276 bytes_out 0 198276 bytes_in 0 198276 station_ip 5.120.70.15 198276 port 8 198276 unique_id port 198276 remote_ip 10.8.1.74 198282 username alipour1506 198282 mac 198282 bytes_out 0 198282 bytes_in 0 198282 station_ip 151.234.23.177 198282 port 13 198282 unique_id port 198283 username alihosseini1 198283 mac 198283 bytes_out 0 198283 bytes_in 0 198283 station_ip 5.120.70.15 198283 port 12 198283 unique_id port 198283 remote_ip 10.8.1.74 198289 username sekonji0496 198289 mac 198289 bytes_out 492047 198289 bytes_in 2291692 198289 station_ip 37.129.73.247 198289 port 23 198289 unique_id port 198289 remote_ip 10.8.1.98 198291 username ahmadi1 198291 mac 198291 bytes_out 0 198291 bytes_in 0 198291 station_ip 37.129.79.196 198291 port 7 198291 unique_id port 198291 remote_ip 10.8.0.42 198294 username barzegar 198294 mac 198294 bytes_out 0 198294 bytes_in 0 198294 station_ip 5.119.146.12 198294 port 3 198294 unique_id port 198294 remote_ip 10.8.1.6 198296 username mostafa_es78 198296 kill_reason Another user logged on this global unique id 198296 mac 198296 bytes_out 0 198296 bytes_in 0 198296 station_ip 83.122.208.246 198296 port 8 198296 unique_id port 198304 username aminvpn 198304 kill_reason Another user logged on this global unique id 198304 mac 198304 bytes_out 0 198304 bytes_in 0 198304 station_ip 5.120.19.68 198304 port 8 198304 unique_id port 198304 remote_ip 10.8.1.130 198305 username mostafa_es78 198305 mac 198305 bytes_out 0 198305 bytes_in 0 198305 station_ip 83.122.208.246 198305 port 8 198305 unique_id port 198308 username barzegar 198308 mac 198308 bytes_out 0 198308 bytes_in 0 198308 station_ip 5.119.146.12 198308 port 8 198308 unique_id port 198308 remote_ip 10.8.1.6 198314 username motamedi9772 198314 mac 198314 bytes_out 0 198314 bytes_in 0 198314 station_ip 83.123.160.133 198314 port 4 198314 unique_id port 198319 username barzegar 198319 mac 198319 bytes_out 0 198319 bytes_in 0 198319 station_ip 5.119.146.12 198319 port 8 198319 unique_id port 198319 remote_ip 10.8.1.6 198327 username pourshad 198327 kill_reason Another user logged on this global unique id 198327 mac 198327 bytes_out 0 198327 bytes_in 0 198327 station_ip 5.120.24.121 198327 port 8 198327 unique_id port 198327 remote_ip 10.8.1.58 198330 username jafari 198330 mac 198330 bytes_out 0 198330 bytes_in 0 198330 station_ip 5.73.61.80 198330 port 3 198330 unique_id port 198331 username farhad3 198331 mac 198331 bytes_out 0 198331 bytes_in 0 198331 station_ip 5.119.30.132 198331 port 2 198331 unique_id port 198331 remote_ip 10.8.1.38 198334 username barzegar 198334 mac 198334 bytes_out 0 198334 bytes_in 0 198334 station_ip 5.119.146.12 198334 port 17 198334 unique_id port 198334 remote_ip 10.8.1.6 198337 username fezealinaghi 198337 kill_reason Another user logged on this global unique id 198337 mac 198337 bytes_out 0 198337 bytes_in 0 198337 station_ip 37.129.182.93 198337 port 7 198337 unique_id port 198351 username kharazmi2920 198351 mac 198351 bytes_out 150973 198351 bytes_in 663196 198287 remote_ip 10.8.0.70 198288 username nilufarrajaei 198288 mac 198288 bytes_out 14081531 198288 bytes_in 16739299 198288 station_ip 83.123.161.182 198288 port 3 198288 unique_id port 198288 remote_ip 10.8.0.94 198290 username khalili2 198290 mac 198290 bytes_out 0 198290 bytes_in 0 198290 station_ip 5.120.184.114 198290 port 17 198290 unique_id port 198306 username barzegar8595 198306 kill_reason Another user logged on this global unique id 198306 mac 198306 bytes_out 0 198306 bytes_in 0 198306 station_ip 37.156.62.221 198306 port 22 198306 unique_id port 198307 username mostafa_es78 198307 kill_reason Another user logged on this global unique id 198307 mac 198307 bytes_out 0 198307 bytes_in 0 198307 station_ip 83.122.208.246 198307 port 8 198307 unique_id port 198313 username hatami 198313 kill_reason Another user logged on this global unique id 198313 mac 198313 bytes_out 0 198313 bytes_in 0 198313 station_ip 151.235.89.244 198313 port 3 198313 unique_id port 198313 remote_ip 10.8.0.78 198316 username hamid1430 198316 mac 198316 bytes_out 7865916 198316 bytes_in 6471736 198316 station_ip 83.122.41.113 198316 port 2 198316 unique_id port 198316 remote_ip 10.8.0.110 198318 username fezealinaghi 198318 kill_reason Another user logged on this global unique id 198318 mac 198318 bytes_out 0 198318 bytes_in 0 198318 station_ip 37.129.182.93 198318 port 7 198318 unique_id port 198320 username barzegar8595 198320 mac 198320 bytes_out 0 198320 bytes_in 0 198320 station_ip 37.156.62.221 198320 port 22 198320 unique_id port 198322 username jafari 198322 kill_reason Another user logged on this global unique id 198322 mac 198322 bytes_out 0 198322 bytes_in 0 198322 station_ip 5.73.61.80 198322 port 3 198322 unique_id port 198323 username ayobi 198323 kill_reason Another user logged on this global unique id 198323 mac 198323 bytes_out 0 198323 bytes_in 0 198323 station_ip 37.27.1.83 198323 port 26 198323 unique_id port 198326 username jafari 198326 mac 198326 bytes_out 0 198326 bytes_in 0 198326 station_ip 5.73.61.80 198326 port 3 198326 unique_id port 198328 username farhad3 198328 kill_reason Another user logged on this global unique id 198328 mac 198328 bytes_out 0 198328 bytes_in 0 198328 station_ip 5.119.30.132 198328 port 3 198328 unique_id port 198328 remote_ip 10.8.0.46 198329 username barzegar 198329 mac 198329 bytes_out 0 198329 bytes_in 0 198329 station_ip 5.119.146.12 198329 port 9 198329 unique_id port 198329 remote_ip 10.8.0.14 198335 username rezaei 198335 kill_reason Another user logged on this global unique id 198335 mac 198335 bytes_out 0 198335 bytes_in 0 198335 station_ip 5.119.154.139 198335 port 3 198335 unique_id port 198335 remote_ip 10.8.0.122 198336 username motamedi9772 198336 mac 198336 bytes_out 0 198336 bytes_in 0 198336 station_ip 83.123.160.133 198336 port 9 198336 unique_id port 198336 remote_ip 10.8.0.62 198338 username jafari 198338 mac 198338 bytes_out 0 198338 bytes_in 0 198338 station_ip 5.73.61.80 198338 port 3 198338 unique_id port 198339 username farhad3 198339 mac 198339 bytes_out 9489919 198339 bytes_in 2328638 198339 station_ip 5.119.30.132 198339 port 2 198339 unique_id port 198339 remote_ip 10.8.1.38 198341 username fezealinaghi 198341 kill_reason Another user logged on this global unique id 198341 mac 198341 bytes_out 0 198341 bytes_in 0 198341 station_ip 37.129.182.93 198341 port 7 198341 unique_id port 198342 username motamedi9772 198342 mac 198342 bytes_out 0 198342 bytes_in 0 198342 station_ip 83.123.137.189 198342 port 3 198342 unique_id port 198309 username ayobi 198309 kill_reason Another user logged on this global unique id 198309 mac 198309 bytes_out 0 198309 bytes_in 0 198309 station_ip 37.27.1.83 198309 port 26 198309 unique_id port 198309 remote_ip 10.8.1.110 198310 username fezealinaghi 198310 kill_reason Another user logged on this global unique id 198310 mac 198310 bytes_out 0 198310 bytes_in 0 198310 station_ip 37.129.182.93 198310 port 7 198310 unique_id port 198310 remote_ip 10.8.0.98 198311 username jafari 198311 kill_reason Another user logged on this global unique id 198311 mac 198311 bytes_out 0 198311 bytes_in 0 198311 station_ip 5.73.61.80 198311 port 3 198311 unique_id port 198311 remote_ip 10.8.1.126 198312 username vanila 198312 kill_reason Relative expiration date has reached 198312 mac 198312 bytes_out 0 198312 bytes_in 0 198312 station_ip 113.203.116.213 198312 port 9 198312 unique_id port 198315 username ayobi 198315 kill_reason Another user logged on this global unique id 198315 mac 198315 bytes_out 0 198315 bytes_in 0 198315 station_ip 37.27.1.83 198315 port 26 198315 unique_id port 198317 username farhad3 198317 mac 198317 bytes_out 8284789 198317 bytes_in 41772195 198317 station_ip 5.119.30.132 198317 port 20 198317 unique_id port 198317 remote_ip 10.8.1.38 198321 username pourshad 198321 mac 198321 bytes_out 6327230 198321 bytes_in 47294696 198321 station_ip 5.120.24.121 198321 port 16 198321 unique_id port 198321 remote_ip 10.8.1.58 198324 username barzegar 198324 mac 198324 bytes_out 0 198324 bytes_in 0 198324 station_ip 5.119.146.12 198324 port 16 198324 unique_id port 198324 remote_ip 10.8.1.6 198325 username farhad3 198325 mac 198325 bytes_out 1736200 198325 bytes_in 9783832 198325 station_ip 5.119.30.132 198325 port 2 198325 unique_id port 198325 remote_ip 10.8.1.38 198332 username fezealinaghi 198332 kill_reason Another user logged on this global unique id 198332 mac 198332 bytes_out 0 198332 bytes_in 0 198332 station_ip 37.129.182.93 198332 port 7 198332 unique_id port 198333 username ayobi 198333 mac 198333 bytes_out 0 198333 bytes_in 0 198333 station_ip 37.27.1.83 198333 port 26 198333 unique_id port 198340 username jafari 198340 kill_reason Another user logged on this global unique id 198340 mac 198340 bytes_out 0 198340 bytes_in 0 198340 station_ip 5.73.61.80 198340 port 3 198340 unique_id port 198343 username barzegar8595 198343 kill_reason Another user logged on this global unique id 198343 mac 198343 bytes_out 0 198343 bytes_in 0 198343 station_ip 37.156.62.221 198343 port 16 198343 unique_id port 198343 remote_ip 10.8.1.50 198348 username hosseine 198348 mac 198348 bytes_out 0 198348 bytes_in 0 198348 station_ip 37.129.111.189 198348 port 4 198348 unique_id port 198348 remote_ip 10.8.0.118 198352 username barzegar 198352 mac 198352 bytes_out 0 198352 bytes_in 0 198352 station_ip 5.119.146.12 198352 port 12 198352 unique_id port 198352 remote_ip 10.8.1.6 198355 username farhad3 198355 kill_reason Another user logged on this global unique id 198355 mac 198355 bytes_out 0 198355 bytes_in 0 198355 station_ip 5.119.30.132 198355 port 17 198355 unique_id port 198356 username jafari 198356 kill_reason Another user logged on this global unique id 198356 mac 198356 bytes_out 0 198356 bytes_in 0 198356 station_ip 5.73.61.80 198356 port 3 198356 unique_id port 198361 username fezealinaghi 198361 mac 198361 bytes_out 0 198361 bytes_in 0 198361 station_ip 37.129.182.93 198361 port 7 198361 unique_id port 198370 username fezealinaghi 198370 mac 198370 bytes_out 3321376 198370 bytes_in 26284497 198342 remote_ip 10.8.0.62 198344 username barzegar8595 198344 mac 198344 bytes_out 0 198344 bytes_in 0 198344 station_ip 37.156.62.221 198344 port 16 198344 unique_id port 198345 username fezealinaghi 198345 kill_reason Another user logged on this global unique id 198345 mac 198345 bytes_out 0 198345 bytes_in 0 198345 station_ip 37.129.182.93 198345 port 7 198345 unique_id port 198346 username meghdad1616 198346 kill_reason Another user logged on this global unique id 198346 mac 198346 bytes_out 0 198346 bytes_in 0 198346 station_ip 5.119.79.249 198346 port 3 198346 unique_id port 198346 remote_ip 10.8.0.126 198347 username dortaj3792 198347 mac 198347 bytes_out 2033322 198347 bytes_in 6435503 198347 station_ip 5.119.24.233 198347 port 12 198347 unique_id port 198347 remote_ip 10.8.1.34 198349 username farhad3 198349 kill_reason Another user logged on this global unique id 198349 mac 198349 bytes_out 0 198349 bytes_in 0 198349 station_ip 5.119.30.132 198349 port 17 198349 unique_id port 198349 remote_ip 10.8.1.38 198350 username fezealinaghi 198350 kill_reason Another user logged on this global unique id 198350 mac 198350 bytes_out 0 198350 bytes_in 0 198350 station_ip 37.129.182.93 198350 port 7 198350 unique_id port 198353 username sabaghnezhad 198353 mac 198353 bytes_out 0 198353 bytes_in 0 198353 station_ip 83.122.98.225 198353 port 8 198353 unique_id port 198353 remote_ip 10.8.0.18 198357 username jafari 198357 mac 198357 bytes_out 0 198357 bytes_in 0 198357 station_ip 5.73.61.80 198357 port 3 198357 unique_id port 198360 username pourshad 198360 mac 198360 bytes_out 0 198360 bytes_in 0 198360 station_ip 5.120.24.121 198360 port 8 198360 unique_id port 198360 remote_ip 10.8.1.58 198363 username meghdad1616 198363 kill_reason Another user logged on this global unique id 198363 mac 198363 bytes_out 0 198363 bytes_in 0 198363 station_ip 5.119.79.249 198363 port 3 198363 unique_id port 198365 username pourshad 198365 kill_reason Another user logged on this global unique id 198365 mac 198365 bytes_out 0 198365 bytes_in 0 198365 station_ip 5.120.24.121 198365 port 3 198365 unique_id port 198365 remote_ip 10.8.1.58 198368 username pourshad 198368 kill_reason Another user logged on this global unique id 198368 mac 198368 bytes_out 0 198368 bytes_in 0 198368 station_ip 5.120.24.121 198368 port 3 198368 unique_id port 198368 remote_ip 10.8.1.58 198372 username meghdad1616 198372 mac 198372 bytes_out 0 198372 bytes_in 0 198372 station_ip 5.119.79.249 198372 port 2 198372 unique_id port 198372 remote_ip 10.8.0.126 198377 username shahruz 198377 mac 198377 bytes_out 0 198377 bytes_in 0 198377 station_ip 113.203.77.1 198377 port 2 198377 unique_id port 198377 remote_ip 10.8.0.22 198378 username barzegar 198378 mac 198378 bytes_out 0 198378 bytes_in 0 198378 station_ip 5.119.146.12 198378 port 12 198378 unique_id port 198378 remote_ip 10.8.1.6 198380 username barzegar 198380 mac 198380 bytes_out 0 198380 bytes_in 0 198380 station_ip 5.119.146.12 198380 port 16 198380 unique_id port 198380 remote_ip 10.8.1.6 198387 username barzegar 198387 mac 198387 bytes_out 0 198387 bytes_in 0 198387 station_ip 5.119.146.12 198387 port 12 198387 unique_id port 198387 remote_ip 10.8.1.6 198389 username barzegar 198389 mac 198389 bytes_out 0 198389 bytes_in 0 198389 station_ip 5.119.146.12 198389 port 12 198389 unique_id port 198389 remote_ip 10.8.1.6 198392 username shahruz 198392 mac 198392 bytes_out 0 198392 bytes_in 0 198392 station_ip 113.203.77.1 198392 port 3 198351 station_ip 83.122.27.145 198351 port 4 198351 unique_id port 198351 remote_ip 10.8.0.34 198354 username fezealinaghi 198354 kill_reason Another user logged on this global unique id 198354 mac 198354 bytes_out 0 198354 bytes_in 0 198354 station_ip 37.129.182.93 198354 port 7 198354 unique_id port 198358 username barzegar 198358 mac 198358 bytes_out 0 198358 bytes_in 0 198358 station_ip 5.119.146.12 198358 port 2 198358 unique_id port 198359 username barzegar 198359 mac 198359 bytes_out 0 198359 bytes_in 0 198359 station_ip 5.119.146.12 198359 port 3 198359 unique_id port 198359 remote_ip 10.8.1.6 198362 username farhad3 198362 mac 198362 bytes_out 0 198362 bytes_in 0 198362 station_ip 5.119.30.132 198362 port 17 198362 unique_id port 198364 username barzegar 198364 mac 198364 bytes_out 0 198364 bytes_in 0 198364 station_ip 5.119.146.12 198364 port 8 198364 unique_id port 198364 remote_ip 10.8.1.6 198366 username meghdad1616 198366 mac 198366 bytes_out 0 198366 bytes_in 0 198366 station_ip 5.119.79.249 198366 port 3 198366 unique_id port 198367 username sabaghnezhad 198367 mac 198367 bytes_out 0 198367 bytes_in 0 198367 station_ip 83.122.98.225 198367 port 7 198367 unique_id port 198367 remote_ip 10.8.0.18 198369 username meghdad1616 198369 mac 198369 bytes_out 0 198369 bytes_in 0 198369 station_ip 5.119.79.249 198369 port 3 198369 unique_id port 198379 username shahruz 198379 mac 198379 bytes_out 0 198379 bytes_in 0 198379 station_ip 113.203.77.1 198379 port 12 198379 unique_id port 198379 remote_ip 10.8.1.22 198381 username farhad3 198381 mac 198381 bytes_out 32352404 198381 bytes_in 42690034 198381 station_ip 5.119.30.132 198381 port 8 198381 unique_id port 198381 remote_ip 10.8.1.38 198383 username farhad3 198383 mac 198383 bytes_out 0 198383 bytes_in 0 198383 station_ip 5.119.30.132 198383 port 8 198383 unique_id port 198383 remote_ip 10.8.1.38 198384 username barzegar 198384 mac 198384 bytes_out 0 198384 bytes_in 0 198384 station_ip 5.119.146.12 198384 port 8 198384 unique_id port 198384 remote_ip 10.8.1.6 198386 username shahruz 198386 mac 198386 bytes_out 1375655 198386 bytes_in 13691696 198386 station_ip 113.203.77.1 198386 port 12 198386 unique_id port 198386 remote_ip 10.8.1.22 198390 username barzegar 198390 mac 198390 bytes_out 0 198390 bytes_in 0 198390 station_ip 5.119.146.12 198390 port 12 198390 unique_id port 198390 remote_ip 10.8.1.6 198393 username shahruz 198393 mac 198393 bytes_out 237151 198393 bytes_in 359977 198393 station_ip 113.203.77.1 198393 port 3 198393 unique_id port 198393 remote_ip 10.8.0.22 198395 username kalantary6037 198395 mac 198395 bytes_out 994957 198395 bytes_in 6325699 198395 station_ip 37.129.19.221 198395 port 2 198395 unique_id port 198395 remote_ip 10.8.0.10 198398 username shahruz 198398 mac 198398 bytes_out 0 198398 bytes_in 0 198398 station_ip 113.203.77.1 198398 port 3 198398 unique_id port 198398 remote_ip 10.8.1.22 198399 username shahruz 198399 mac 198399 bytes_out 0 198399 bytes_in 0 198399 station_ip 113.203.77.1 198399 port 2 198399 unique_id port 198399 remote_ip 10.8.0.22 198402 username kalantary6037 198402 mac 198402 bytes_out 0 198402 bytes_in 0 198402 station_ip 37.129.71.149 198402 port 3 198402 unique_id port 198402 remote_ip 10.8.0.10 198406 username shahruz 198406 mac 198406 bytes_out 0 198406 bytes_in 0 198406 station_ip 113.203.77.1 198370 station_ip 37.129.82.50 198370 port 2 198370 unique_id port 198370 remote_ip 10.8.0.98 198371 username pourshad 198371 mac 198371 bytes_out 14073193 198371 bytes_in 211935448 198371 station_ip 5.120.24.121 198371 port 3 198371 unique_id port 198371 remote_ip 10.8.1.58 198373 username barzegar 198373 mac 198373 bytes_out 0 198373 bytes_in 0 198373 station_ip 5.119.146.12 198373 port 8 198373 unique_id port 198373 remote_ip 10.8.1.6 198374 username meghdad1616 198374 mac 198374 bytes_out 0 198374 bytes_in 0 198374 station_ip 5.119.79.249 198374 port 2 198374 unique_id port 198374 remote_ip 10.8.0.126 198375 username farhad3 198375 mac 198375 bytes_out 0 198375 bytes_in 0 198375 station_ip 5.119.30.132 198375 port 4 198375 unique_id port 198375 remote_ip 10.8.0.46 198376 username farhad3 198376 mac 198376 bytes_out 346390 198376 bytes_in 1978470 198376 station_ip 5.119.30.132 198376 port 8 198376 unique_id port 198376 remote_ip 10.8.1.38 198382 username barzegar 198382 mac 198382 bytes_out 0 198382 bytes_in 0 198382 station_ip 5.119.146.12 198382 port 16 198382 unique_id port 198382 remote_ip 10.8.1.6 198385 username barzegar 198385 mac 198385 bytes_out 0 198385 bytes_in 0 198385 station_ip 5.119.146.12 198385 port 8 198385 unique_id port 198385 remote_ip 10.8.1.6 198388 username shahruz 198388 kill_reason Another user logged on this global unique id 198388 mac 198388 bytes_out 0 198388 bytes_in 0 198388 station_ip 113.203.77.1 198388 port 8 198388 unique_id port 198388 remote_ip 10.8.1.22 198391 username shahruz 198391 mac 198391 bytes_out 0 198391 bytes_in 0 198391 station_ip 113.203.77.1 198391 port 8 198391 unique_id port 198394 username barzegar 198394 mac 198394 bytes_out 0 198394 bytes_in 0 198394 station_ip 5.119.146.12 198394 port 12 198394 unique_id port 198394 remote_ip 10.8.1.6 198396 username pourshad 198396 mac 198396 bytes_out 4270 198396 bytes_in 6283 198396 station_ip 5.120.24.121 198396 port 3 198396 unique_id port 198396 remote_ip 10.8.1.58 198400 username shahruz 198400 mac 198400 bytes_out 0 198400 bytes_in 0 198400 station_ip 113.203.77.1 198400 port 2 198400 unique_id port 198400 remote_ip 10.8.0.22 198403 username barzegar 198403 mac 198403 bytes_out 0 198403 bytes_in 0 198403 station_ip 5.119.146.12 198403 port 3 198403 unique_id port 198403 remote_ip 10.8.1.6 198404 username sobhan 198404 unique_id port 198404 terminate_cause Lost-Carrier 198404 bytes_out 6322187 198404 bytes_in 109090753 198404 station_ip 5.119.163.253 198404 port 15729601 198404 nas_port_type Virtual 198404 remote_ip 5.5.5.255 198405 username shahruz 198405 mac 198405 bytes_out 0 198405 bytes_in 0 198405 station_ip 113.203.77.1 198405 port 2 198405 unique_id port 198405 remote_ip 10.8.0.22 198407 username barzegar 198407 mac 198407 bytes_out 0 198407 bytes_in 0 198407 station_ip 5.119.146.12 198407 port 4 198407 unique_id port 198407 remote_ip 10.8.0.14 198409 username shahruz 198409 mac 198409 bytes_out 0 198409 bytes_in 0 198409 station_ip 113.203.77.1 198409 port 3 198409 unique_id port 198409 remote_ip 10.8.0.22 198414 username shahruz 198414 mac 198414 bytes_out 0 198414 bytes_in 0 198414 station_ip 113.203.77.1 198414 port 3 198414 unique_id port 198414 remote_ip 10.8.0.22 198417 username shahruz 198417 mac 198417 bytes_out 0 198417 bytes_in 0 198417 station_ip 113.203.77.1 198417 port 3 198417 unique_id port 198417 remote_ip 10.8.0.22 198392 unique_id port 198392 remote_ip 10.8.0.22 198397 username shahruz 198397 mac 198397 bytes_out 1350885 198397 bytes_in 17900473 198397 station_ip 113.203.77.1 198397 port 8 198397 unique_id port 198397 remote_ip 10.8.1.22 198401 username barzegar 198401 mac 198401 bytes_out 0 198401 bytes_in 0 198401 station_ip 5.119.146.12 198401 port 3 198401 unique_id port 198401 remote_ip 10.8.1.6 198411 username shahruz 198411 kill_reason Another user logged on this global unique id 198411 mac 198411 bytes_out 0 198411 bytes_in 0 198411 station_ip 113.203.77.1 198411 port 3 198411 unique_id port 198411 remote_ip 10.8.0.22 198413 username kalantary6037 198413 mac 198413 bytes_out 0 198413 bytes_in 0 198413 station_ip 37.129.107.29 198413 port 2 198413 unique_id port 198415 username barzegar 198415 mac 198415 bytes_out 0 198415 bytes_in 0 198415 station_ip 5.119.146.12 198415 port 4 198415 unique_id port 198415 remote_ip 10.8.0.14 198429 username kalantary6037 198429 mac 198429 bytes_out 2328035 198429 bytes_in 24936163 198429 station_ip 37.129.107.29 198429 port 7 198429 unique_id port 198429 remote_ip 10.8.0.10 198433 username shahruz 198433 mac 198433 bytes_out 0 198433 bytes_in 0 198433 station_ip 113.203.77.1 198433 port 2 198433 unique_id port 198433 remote_ip 10.8.0.22 198436 username shahruz 198436 mac 198436 bytes_out 0 198436 bytes_in 0 198436 station_ip 113.203.77.1 198436 port 8 198436 unique_id port 198436 remote_ip 10.8.1.22 198438 username shahruz 198438 mac 198438 bytes_out 0 198438 bytes_in 0 198438 station_ip 113.203.77.1 198438 port 11 198438 unique_id port 198438 remote_ip 10.8.0.22 198440 username shahruz 198440 kill_reason Maximum check online fails reached 198440 mac 198440 bytes_out 0 198440 bytes_in 0 198440 station_ip 113.203.77.1 198440 port 7 198440 unique_id port 198451 username barzegar 198451 mac 198451 bytes_out 0 198451 bytes_in 0 198451 station_ip 5.119.146.12 198451 port 12 198451 unique_id port 198451 remote_ip 10.8.1.6 198453 username barzegar 198453 mac 198453 bytes_out 0 198453 bytes_in 0 198453 station_ip 5.119.146.12 198453 port 12 198453 unique_id port 198453 remote_ip 10.8.1.6 198455 station_ip 5.120.34.94 198455 port 8 198455 unique_id port 198455 remote_ip 10.8.1.58 198456 username nilufarrajaei 198456 kill_reason Another user logged on this global unique id 198456 mac 198456 bytes_out 0 198456 bytes_in 0 198456 station_ip 83.123.161.182 198456 port 10 198456 unique_id port 198456 remote_ip 10.8.0.94 198457 username mohammadjavad 198457 kill_reason Another user logged on this global unique id 198457 mac 198457 bytes_out 0 198457 bytes_in 0 198457 station_ip 83.122.241.137 198457 port 2 198457 unique_id port 198457 remote_ip 10.8.0.58 198458 username mohammadjavad 198458 mac 198458 bytes_out 0 198458 bytes_in 0 198458 station_ip 83.122.241.137 198458 port 2 198458 unique_id port 198459 username pourshad 198459 mac 198459 bytes_out 9434 198459 bytes_in 12236 198459 station_ip 5.120.34.94 198459 port 8 198459 unique_id port 198459 remote_ip 10.8.1.58 198460 username barzegar 198460 mac 198460 bytes_out 0 198460 bytes_in 0 198460 station_ip 5.119.146.12 198460 port 2 198460 unique_id port 198460 remote_ip 10.8.0.14 198462 username mohammadjavad 198462 mac 198462 bytes_out 0 198462 bytes_in 0 198462 station_ip 83.122.176.185 198462 port 2 198462 unique_id port 198462 remote_ip 10.8.0.58 198464 username pourshad 198464 mac 198464 bytes_out 14131 198464 bytes_in 26733 198406 port 4 198406 unique_id port 198406 remote_ip 10.8.0.22 198408 username pourshad 198408 mac 198408 bytes_out 29214 198408 bytes_in 31603 198408 station_ip 5.120.24.121 198408 port 3 198408 unique_id port 198408 remote_ip 10.8.0.54 198410 username kalantary6037 198410 kill_reason Another user logged on this global unique id 198410 mac 198410 bytes_out 0 198410 bytes_in 0 198410 station_ip 37.129.107.29 198410 port 2 198410 unique_id port 198410 remote_ip 10.8.0.10 198412 username barzegar 198412 mac 198412 bytes_out 0 198412 bytes_in 0 198412 station_ip 5.119.146.12 198412 port 3 198412 unique_id port 198412 remote_ip 10.8.1.6 198416 username shahruz 198416 mac 198416 bytes_out 0 198416 bytes_in 0 198416 station_ip 113.203.77.1 198416 port 3 198416 unique_id port 198416 remote_ip 10.8.1.22 198423 username shahruz 198423 kill_reason Maximum check online fails reached 198423 mac 198423 bytes_out 0 198423 bytes_in 0 198423 station_ip 113.203.77.1 198423 port 3 198423 unique_id port 198430 username pourshad 198430 mac 198430 bytes_out 41037 198430 bytes_in 42655 198430 station_ip 5.120.24.121 198430 port 2 198430 unique_id port 198430 remote_ip 10.8.0.54 198431 username shahruz 198431 kill_reason Maximum check online fails reached 198431 mac 198431 bytes_out 0 198431 bytes_in 0 198431 station_ip 113.203.77.1 198431 port 8 198431 unique_id port 198437 username shahruz 198437 mac 198437 bytes_out 1680 198437 bytes_in 4505 198437 station_ip 113.203.77.1 198437 port 7 198437 unique_id port 198437 remote_ip 10.8.0.22 198439 username shahruz 198439 kill_reason Maximum number of concurrent logins reached 198439 mac 198439 bytes_out 0 198439 bytes_in 0 198439 station_ip 113.203.77.1 198439 port 12 198439 unique_id port 198445 username pourshad 198445 mac 198445 bytes_out 7403 198445 bytes_in 11180 198445 station_ip 5.120.24.121 198445 port 2 198445 unique_id port 198445 remote_ip 10.8.0.54 198446 username barzegar 198446 mac 198446 bytes_out 0 198446 bytes_in 0 198446 station_ip 5.119.146.12 198446 port 8 198446 unique_id port 198446 remote_ip 10.8.1.6 198447 username barzegar 198447 mac 198447 bytes_out 0 198447 bytes_in 0 198447 station_ip 5.119.146.12 198447 port 2 198447 unique_id port 198447 remote_ip 10.8.0.14 198449 username barzegar 198449 mac 198449 bytes_out 0 198449 bytes_in 0 198449 station_ip 5.119.146.12 198449 port 12 198449 unique_id port 198449 remote_ip 10.8.1.6 198452 username barzegar 198452 mac 198452 bytes_out 0 198452 bytes_in 0 198452 station_ip 5.119.146.12 198452 port 2 198452 unique_id port 198452 remote_ip 10.8.0.14 198454 username barzegar 198454 mac 198454 bytes_out 0 198454 bytes_in 0 198454 station_ip 5.119.146.12 198454 port 12 198454 unique_id port 198454 remote_ip 10.8.1.6 198461 username pourshad 198461 mac 198461 bytes_out 42216 198461 bytes_in 493590 198461 station_ip 5.120.34.94 198461 port 8 198461 unique_id port 198461 remote_ip 10.8.1.58 198463 username barzegar 198463 mac 198463 bytes_out 0 198463 bytes_in 0 198463 station_ip 5.119.146.12 198463 port 12 198463 unique_id port 198463 remote_ip 10.8.1.6 198464 station_ip 5.120.215.55 198464 port 8 198464 unique_id port 198464 remote_ip 10.8.1.58 198465 username barzegar 198465 mac 198465 bytes_out 0 198465 bytes_in 0 198465 station_ip 5.119.146.12 198465 port 12 198465 unique_id port 198465 remote_ip 10.8.1.6 198466 username barzegar 198466 mac 198466 bytes_out 0 198466 bytes_in 0 198418 username shahruz 198418 kill_reason Another user logged on this global unique id 198418 mac 198418 bytes_out 0 198418 bytes_in 0 198418 station_ip 113.203.77.1 198418 port 3 198418 unique_id port 198419 username shahruz 198419 mac 198419 bytes_out 0 198419 bytes_in 0 198419 station_ip 113.203.77.1 198419 port 4 198419 unique_id port 198419 remote_ip 10.8.0.22 198420 username shahruz 198420 mac 198420 bytes_out 0 198420 bytes_in 0 198420 station_ip 113.203.77.1 198420 port 4 198420 unique_id port 198420 remote_ip 10.8.0.22 198421 username shahruz 198421 kill_reason Maximum number of concurrent logins reached 198421 mac 198421 bytes_out 0 198421 bytes_in 0 198421 station_ip 113.203.77.1 198421 port 8 198421 unique_id port 198422 username shahruz 198422 kill_reason Maximum number of concurrent logins reached 198422 mac 198422 bytes_out 0 198422 bytes_in 0 198422 station_ip 113.203.77.1 198422 port 8 198422 unique_id port 198424 username shahruz 198424 mac 198424 bytes_out 0 198424 bytes_in 0 198424 station_ip 113.203.77.1 198424 port 8 198424 unique_id port 198424 remote_ip 10.8.0.22 198425 username shahruz 198425 kill_reason Maximum check online fails reached 198425 mac 198425 bytes_out 0 198425 bytes_in 0 198425 station_ip 113.203.77.1 198425 port 4 198425 unique_id port 198426 username shahruz 198426 mac 198426 bytes_out 0 198426 bytes_in 0 198426 station_ip 113.203.77.1 198426 port 8 198426 unique_id port 198426 remote_ip 10.8.0.22 198427 username shahruz 198427 mac 198427 bytes_out 0 198427 bytes_in 0 198427 station_ip 113.203.77.1 198427 port 8 198427 unique_id port 198427 remote_ip 10.8.0.22 198428 username shahruz 198428 mac 198428 bytes_out 1695 198428 bytes_in 4639 198428 station_ip 113.203.77.1 198428 port 8 198428 unique_id port 198428 remote_ip 10.8.0.22 198432 username barzegar 198432 mac 198432 bytes_out 0 198432 bytes_in 0 198432 station_ip 5.119.146.12 198432 port 8 198432 unique_id port 198432 remote_ip 10.8.1.6 198434 username shahruz 198434 mac 198434 bytes_out 0 198434 bytes_in 0 198434 station_ip 113.203.77.1 198434 port 8 198434 unique_id port 198434 remote_ip 10.8.1.22 198435 username shahruz 198435 mac 198435 bytes_out 0 198435 bytes_in 0 198435 station_ip 113.203.77.1 198435 port 7 198435 unique_id port 198435 remote_ip 10.8.0.22 198441 username shahruz 198441 kill_reason Maximum check online fails reached 198441 mac 198441 bytes_out 0 198441 bytes_in 0 198441 station_ip 113.203.77.1 198441 port 11 198441 unique_id port 198442 username fezealinaghi 198442 mac 198442 bytes_out 0 198442 bytes_in 0 198442 station_ip 37.129.32.98 198442 port 9 198442 unique_id port 198442 remote_ip 10.8.0.98 198443 username barzegar 198443 mac 198443 bytes_out 0 198443 bytes_in 0 198443 station_ip 5.119.146.12 198443 port 8 198443 unique_id port 198443 remote_ip 10.8.1.6 198444 username pourshad 198444 mac 198444 bytes_out 13717 198444 bytes_in 15356 198444 station_ip 5.120.24.121 198444 port 2 198444 unique_id port 198444 remote_ip 10.8.0.54 198448 username barzegar 198448 mac 198448 bytes_out 0 198448 bytes_in 0 198448 station_ip 5.119.146.12 198448 port 12 198448 unique_id port 198448 remote_ip 10.8.1.6 198450 username pourshad 198450 mac 198450 bytes_out 47221 198450 bytes_in 44634 198450 station_ip 5.120.34.94 198450 port 8 198450 unique_id port 198450 remote_ip 10.8.1.58 198455 username pourshad 198455 mac 198455 bytes_out 36948 198455 bytes_in 41399 198466 station_ip 5.119.146.12 198466 port 12 198466 unique_id port 198466 remote_ip 10.8.1.6 198471 username morteza4424 198471 mac 198471 bytes_out 0 198471 bytes_in 0 198471 station_ip 83.123.104.92 198471 port 2 198471 unique_id port 198471 remote_ip 10.8.0.70 198472 username barzegar 198472 mac 198472 bytes_out 0 198472 bytes_in 0 198472 station_ip 5.119.146.12 198472 port 12 198472 unique_id port 198472 remote_ip 10.8.1.6 198473 username morteza4424 198473 mac 198473 bytes_out 0 198473 bytes_in 0 198473 station_ip 83.123.104.92 198473 port 2 198473 unique_id port 198473 remote_ip 10.8.0.70 198474 username morteza4424 198474 mac 198474 bytes_out 0 198474 bytes_in 0 198474 station_ip 83.123.104.92 198474 port 2 198474 unique_id port 198474 remote_ip 10.8.0.70 198480 username motamedi9772 198480 mac 198480 bytes_out 0 198480 bytes_in 0 198480 station_ip 83.123.236.121 198480 port 12 198480 unique_id port 198480 remote_ip 10.8.0.62 198483 username pourshad 198483 kill_reason Another user logged on this global unique id 198483 mac 198483 bytes_out 0 198483 bytes_in 0 198483 station_ip 5.120.215.55 198483 port 8 198483 unique_id port 198484 username mohammadjavad 198484 kill_reason Another user logged on this global unique id 198484 mac 198484 bytes_out 0 198484 bytes_in 0 198484 station_ip 83.122.149.241 198484 port 9 198484 unique_id port 198484 remote_ip 10.8.0.58 198486 username pourshad 198486 mac 198486 bytes_out 0 198486 bytes_in 0 198486 station_ip 5.120.215.55 198486 port 8 198486 unique_id port 198487 username houshang 198487 mac 198487 bytes_out 527994 198487 bytes_in 1842921 198487 station_ip 5.119.224.56 198487 port 12 198487 unique_id port 198487 remote_ip 10.8.0.50 198493 username kalantary6037 198493 mac 198493 bytes_out 0 198493 bytes_in 0 198493 station_ip 37.129.52.57 198493 port 12 198493 unique_id port 198493 remote_ip 10.8.0.10 198497 username barzegar 198497 mac 198497 bytes_out 3181 198497 bytes_in 5650 198497 station_ip 5.119.146.12 198497 port 14 198497 unique_id port 198497 remote_ip 10.8.0.14 198499 username houshang 198499 mac 198499 bytes_out 388610 198499 bytes_in 5582440 198499 station_ip 5.119.224.56 198499 port 12 198499 unique_id port 198499 remote_ip 10.8.1.134 198500 username sekonji0496 198500 mac 198500 bytes_out 34820 198500 bytes_in 286543 198500 station_ip 83.123.180.214 198500 port 14 198500 unique_id port 198500 remote_ip 10.8.0.66 198503 username kharazmi2920 198503 kill_reason Another user logged on this global unique id 198503 mac 198503 bytes_out 0 198503 bytes_in 0 198503 station_ip 83.122.27.145 198503 port 13 198503 unique_id port 198503 remote_ip 10.8.0.34 198507 username hamid1430 198507 mac 198507 bytes_out 1109464 198507 bytes_in 7346842 198507 station_ip 83.122.230.249 198507 port 9 198507 unique_id port 198507 remote_ip 10.8.0.110 198509 username hamid1430 198509 mac 198509 bytes_out 335262 198509 bytes_in 4325710 198509 station_ip 83.122.230.249 198509 port 14 198509 unique_id port 198509 remote_ip 10.8.0.110 198510 username nilufarrajaei 198510 mac 198510 bytes_out 0 198510 bytes_in 0 198510 station_ip 83.123.161.182 198510 port 10 198510 unique_id port 198510 remote_ip 10.8.0.94 198512 username barzegar 198512 mac 198512 bytes_out 0 198512 bytes_in 0 198512 station_ip 5.119.146.12 198512 port 17 198512 unique_id port 198512 remote_ip 10.8.1.6 198515 username barzegar 198515 mac 198515 bytes_out 0 198515 bytes_in 0 198515 station_ip 5.119.146.12 198467 username barzegar 198467 mac 198467 bytes_out 0 198467 bytes_in 0 198467 station_ip 5.119.146.12 198467 port 12 198467 unique_id port 198467 remote_ip 10.8.1.6 198469 username morteza4424 198469 mac 198469 bytes_out 0 198469 bytes_in 0 198469 station_ip 83.123.104.92 198469 port 2 198469 unique_id port 198469 remote_ip 10.8.0.70 198475 username morteza4424 198475 kill_reason Maximum number of concurrent logins reached 198475 mac 198475 bytes_out 0 198475 bytes_in 0 198475 station_ip 83.123.104.92 198475 port 12 198475 unique_id port 198476 username morteza4424 198476 mac 198476 bytes_out 0 198476 bytes_in 0 198476 station_ip 83.123.104.92 198476 port 9 198476 unique_id port 198476 remote_ip 10.8.0.70 198478 username pourshad 198478 kill_reason Another user logged on this global unique id 198478 mac 198478 bytes_out 0 198478 bytes_in 0 198478 station_ip 5.120.215.55 198478 port 8 198478 unique_id port 198481 username motamedi9772 198481 mac 198481 bytes_out 0 198481 bytes_in 0 198481 station_ip 83.123.236.121 198481 port 12 198481 unique_id port 198481 remote_ip 10.8.0.62 198482 username motamedi9772 198482 mac 198482 bytes_out 112204 198482 bytes_in 135988 198482 station_ip 83.123.236.121 198482 port 12 198482 unique_id port 198482 remote_ip 10.8.0.62 198485 username mohammadjavad 198485 mac 198485 bytes_out 0 198485 bytes_in 0 198485 station_ip 83.122.149.241 198485 port 9 198485 unique_id port 198490 username mohammadjavad 198490 mac 198490 bytes_out 187653 198490 bytes_in 1725968 198490 station_ip 83.122.217.253 198490 port 9 198490 unique_id port 198490 remote_ip 10.8.0.58 198492 username khalili2 198492 mac 198492 bytes_out 1946127 198492 bytes_in 24998334 198492 station_ip 5.120.184.114 198492 port 12 198492 unique_id port 198492 remote_ip 10.8.0.130 198494 username barzegar 198494 mac 198494 bytes_out 0 198494 bytes_in 0 198494 station_ip 5.119.146.12 198494 port 12 198494 unique_id port 198494 remote_ip 10.8.1.6 198495 username alipour1506 198495 mac 198495 bytes_out 0 198495 bytes_in 0 198495 station_ip 151.234.23.177 198495 port 9 198495 unique_id port 198495 remote_ip 10.8.0.134 198496 username alipour1506 198496 kill_reason Another user logged on this global unique id 198496 mac 198496 bytes_out 0 198496 bytes_in 0 198496 station_ip 83.123.181.93 198496 port 12 198496 unique_id port 198496 remote_ip 10.8.0.134 198498 username kalantary6037 198498 mac 198498 bytes_out 0 198498 bytes_in 0 198498 station_ip 37.129.52.57 198498 port 14 198498 unique_id port 198498 remote_ip 10.8.0.10 198502 username alipour1506 198502 mac 198502 bytes_out 0 198502 bytes_in 0 198502 station_ip 151.234.23.177 198502 port 12 198502 unique_id port 198502 remote_ip 10.8.1.86 198504 username barzegar 198504 mac 198504 bytes_out 0 198504 bytes_in 0 198504 station_ip 5.119.146.12 198504 port 13 198504 unique_id port 198504 remote_ip 10.8.1.6 198505 username nilufarrajaei 198505 mac 198505 bytes_out 0 198505 bytes_in 0 198505 station_ip 83.123.161.182 198505 port 10 198505 unique_id port 198508 username barzegar 198508 mac 198508 bytes_out 979720 198508 bytes_in 5239393 198508 station_ip 5.119.146.12 198508 port 13 198508 unique_id port 198508 remote_ip 10.8.1.6 198514 username pourshad 198514 mac 198514 bytes_out 0 198514 bytes_in 0 198514 station_ip 5.120.215.55 198514 port 8 198514 unique_id port 198514 remote_ip 10.8.1.58 198521 username barzegar 198521 mac 198521 bytes_out 0 198468 username pourshad 198468 kill_reason Another user logged on this global unique id 198468 mac 198468 bytes_out 0 198468 bytes_in 0 198468 station_ip 5.120.215.55 198468 port 8 198468 unique_id port 198468 remote_ip 10.8.1.58 198470 username morteza4424 198470 mac 198470 bytes_out 0 198470 bytes_in 0 198470 station_ip 83.123.104.92 198470 port 2 198470 unique_id port 198470 remote_ip 10.8.0.70 198477 username morteza4424 198477 kill_reason Maximum check online fails reached 198477 mac 198477 bytes_out 0 198477 bytes_in 0 198477 station_ip 83.123.104.92 198477 port 2 198477 unique_id port 198479 username barzegar 198479 mac 198479 bytes_out 0 198479 bytes_in 0 198479 station_ip 5.119.146.12 198479 port 12 198479 unique_id port 198479 remote_ip 10.8.1.6 198488 username mohammadjavad 198488 mac 198488 bytes_out 14755 198488 bytes_in 19770 198488 station_ip 83.122.217.253 198488 port 9 198488 unique_id port 198488 remote_ip 10.8.0.58 198489 username barzegar 198489 mac 198489 bytes_out 0 198489 bytes_in 0 198489 station_ip 5.119.146.12 198489 port 8 198489 unique_id port 198489 remote_ip 10.8.1.6 198491 username alipour1506 198491 mac 198491 bytes_out 2250757 198491 bytes_in 49183416 198491 station_ip 151.234.23.177 198491 port 13 198491 unique_id port 198491 remote_ip 10.8.1.86 198501 username barzegar 198501 mac 198501 bytes_out 0 198501 bytes_in 0 198501 station_ip 5.119.146.12 198501 port 12 198501 unique_id port 198501 remote_ip 10.8.1.6 198506 username barzegar 198506 mac 198506 bytes_out 0 198506 bytes_in 0 198506 station_ip 5.119.146.12 198506 port 13 198506 unique_id port 198506 remote_ip 10.8.1.6 198511 username pourshad 198511 mac 198511 bytes_out 5693363 198511 bytes_in 13016408 198511 station_ip 5.120.215.55 198511 port 8 198511 unique_id port 198511 remote_ip 10.8.1.58 198513 username dortaj3792 198513 mac 198513 bytes_out 0 198513 bytes_in 0 198513 station_ip 5.120.176.199 198513 port 12 198513 unique_id port 198513 remote_ip 10.8.0.30 198519 username aminvpn 198519 unique_id port 198519 terminate_cause Lost-Carrier 198519 bytes_out 544725 198519 bytes_in 4232436 198519 station_ip 83.122.191.48 198519 port 15729614 198519 nas_port_type Virtual 198519 remote_ip 5.5.5.255 198520 username barzegar 198520 mac 198520 bytes_out 0 198520 bytes_in 0 198520 station_ip 5.119.146.12 198520 port 21 198520 unique_id port 198520 remote_ip 10.8.1.6 198522 username pourshad 198522 mac 198522 bytes_out 90354 198522 bytes_in 235373 198522 station_ip 5.120.247.222 198522 port 17 198522 unique_id port 198522 remote_ip 10.8.1.58 198530 username pourshad 198530 mac 198530 bytes_out 0 198530 bytes_in 0 198530 station_ip 5.120.247.222 198530 port 10 198530 unique_id port 198530 remote_ip 10.8.0.54 198532 username barzegar8595 198532 mac 198532 bytes_out 722062 198532 bytes_in 7573007 198532 station_ip 37.137.18.199 198532 port 16 198532 unique_id port 198532 remote_ip 10.8.1.50 198534 username pourshad 198534 mac 198534 bytes_out 91711 198534 bytes_in 844061 198534 station_ip 5.120.252.247 198534 port 16 198534 unique_id port 198534 remote_ip 10.8.1.58 198535 username meysam 198535 kill_reason Another user logged on this global unique id 198535 mac 198535 bytes_out 0 198535 bytes_in 0 198535 station_ip 188.158.48.134 198535 port 17 198535 unique_id port 198535 remote_ip 10.8.1.30 198539 username pourshad 198539 mac 198539 bytes_out 0 198539 bytes_in 0 198539 station_ip 5.120.252.247 198539 port 21 198539 unique_id port 198515 port 20 198515 unique_id port 198515 remote_ip 10.8.1.6 198516 username barzegar 198516 kill_reason Maximum check online fails reached 198516 mac 198516 bytes_out 0 198516 bytes_in 0 198516 station_ip 5.119.146.12 198516 port 8 198516 unique_id port 198517 username barzegar 198517 mac 198517 bytes_out 0 198517 bytes_in 0 198517 station_ip 5.119.146.12 198517 port 21 198517 unique_id port 198517 remote_ip 10.8.1.6 198518 username barzegar 198518 kill_reason Maximum check online fails reached 198518 mac 198518 bytes_out 0 198518 bytes_in 0 198518 station_ip 5.119.146.12 198518 port 20 198518 unique_id port 198525 username pourshad 198525 mac 198525 bytes_out 48486 198525 bytes_in 65851 198525 station_ip 5.120.247.222 198525 port 17 198525 unique_id port 198525 remote_ip 10.8.1.58 198526 username alipour1506 198526 mac 198526 bytes_out 156432 198526 bytes_in 763700 198526 station_ip 83.123.200.65 198526 port 12 198526 unique_id port 198526 remote_ip 10.8.1.86 198527 username nilufarrajaei 198527 mac 198527 bytes_out 4363865 198527 bytes_in 8609657 198527 station_ip 83.123.161.182 198527 port 13 198527 unique_id port 198527 remote_ip 10.8.1.138 198528 username barzegar8595 198528 mac 198528 bytes_out 0 198528 bytes_in 0 198528 station_ip 5.134.179.174 198528 port 9 198528 unique_id port 198528 remote_ip 10.8.0.82 198531 username kharazmi2920 198531 mac 198531 bytes_out 0 198531 bytes_in 0 198531 station_ip 83.122.27.145 198531 port 14 198531 unique_id port 198531 remote_ip 10.8.0.34 198536 username barzegar 198536 mac 198536 bytes_out 0 198536 bytes_in 0 198536 station_ip 5.119.146.12 198536 port 10 198536 unique_id port 198536 remote_ip 10.8.0.14 198537 username meysam 198537 mac 198537 bytes_out 0 198537 bytes_in 0 198537 station_ip 188.158.48.134 198537 port 17 198537 unique_id port 198538 username godarzi 198538 mac 198538 bytes_out 603692 198538 bytes_in 5399317 198538 station_ip 5.202.62.43 198538 port 16 198538 unique_id port 198538 remote_ip 10.8.1.78 198540 username pourshad 198540 mac 198540 bytes_out 11254 198540 bytes_in 18937 198540 station_ip 5.120.252.247 198540 port 17 198540 unique_id port 198540 remote_ip 10.8.1.58 198541 username barzegar 198541 mac 198541 bytes_out 0 198541 bytes_in 0 198541 station_ip 5.119.146.12 198541 port 17 198541 unique_id port 198541 remote_ip 10.8.1.6 198542 username alipour1506 198542 mac 198542 bytes_out 0 198542 bytes_in 0 198542 station_ip 83.123.200.65 198542 port 12 198542 unique_id port 198542 remote_ip 10.8.1.86 198543 username mammad 198543 unique_id port 198543 terminate_cause User-Request 198543 bytes_out 3449264 198543 bytes_in 57191480 198543 station_ip 2.183.250.161 198543 port 15729615 198543 nas_port_type Virtual 198543 remote_ip 5.5.5.255 198548 username mosi 198548 mac 198548 bytes_out 0 198548 bytes_in 0 198548 station_ip 5.134.155.34 198548 port 23 198548 unique_id port 198548 remote_ip 10.8.1.118 198555 username barzegar8595 198555 mac 198555 bytes_out 0 198555 bytes_in 0 198555 station_ip 46.225.209.56 198555 port 22 198555 unique_id port 198555 remote_ip 10.8.1.50 198559 username barzegar8595 198559 mac 198559 bytes_out 0 198559 bytes_in 0 198559 station_ip 46.225.209.56 198559 port 22 198559 unique_id port 198559 remote_ip 10.8.1.50 198560 username barzegar8595 198560 mac 198560 bytes_out 0 198560 bytes_in 0 198560 station_ip 5.119.78.4 198560 port 25 198560 unique_id port 198560 remote_ip 10.8.1.50 198521 bytes_in 0 198521 station_ip 5.119.146.12 198521 port 21 198521 unique_id port 198521 remote_ip 10.8.1.6 198523 username malekpoir 198523 mac 198523 bytes_out 3437134 198523 bytes_in 29252719 198523 station_ip 5.119.225.153 198523 port 16 198523 unique_id port 198523 remote_ip 10.8.1.70 198524 username barzegar 198524 mac 198524 bytes_out 0 198524 bytes_in 0 198524 station_ip 5.119.146.12 198524 port 16 198524 unique_id port 198524 remote_ip 10.8.1.6 198529 username barzegar 198529 mac 198529 bytes_out 0 198529 bytes_in 0 198529 station_ip 5.119.146.12 198529 port 17 198529 unique_id port 198529 remote_ip 10.8.1.6 198533 username barzegar 198533 mac 198533 bytes_out 0 198533 bytes_in 0 198533 station_ip 5.119.146.12 198533 port 17 198533 unique_id port 198533 remote_ip 10.8.1.6 198544 username alirezazadeh 198544 unique_id port 198544 terminate_cause User-Request 198544 bytes_out 479921 198544 bytes_in 2399101 198544 station_ip 31.56.159.145 198544 port 15729616 198544 nas_port_type Virtual 198544 remote_ip 5.5.5.180 198545 username barzegar 198545 mac 198545 bytes_out 0 198545 bytes_in 0 198545 station_ip 5.119.146.12 198545 port 23 198545 unique_id port 198545 remote_ip 10.8.1.6 198546 username mosi 198546 mac 198546 bytes_out 0 198546 bytes_in 0 198546 station_ip 5.134.155.34 198546 port 23 198546 unique_id port 198546 remote_ip 10.8.1.118 198549 username barzegar 198549 kill_reason Maximum check online fails reached 198549 mac 198549 bytes_out 0 198549 bytes_in 0 198549 station_ip 5.119.146.12 198549 port 17 198549 unique_id port 198550 username godarzi 198550 kill_reason Another user logged on this global unique id 198550 mac 198550 bytes_out 0 198550 bytes_in 0 198550 station_ip 5.202.62.43 198550 port 21 198550 unique_id port 198550 remote_ip 10.8.1.78 198551 username dortaj3792 198551 mac 198551 bytes_out 107118 198551 bytes_in 288333 198551 station_ip 5.120.176.199 198551 port 10 198551 unique_id port 198551 remote_ip 10.8.0.30 198553 username barzegar8595 198553 mac 198553 bytes_out 2600629 198553 bytes_in 22804765 198553 station_ip 46.225.209.56 198553 port 22 198553 unique_id port 198553 remote_ip 10.8.1.50 198556 username barzegar8595 198556 mac 198556 bytes_out 0 198556 bytes_in 0 198556 station_ip 5.119.78.4 198556 port 25 198556 unique_id port 198556 remote_ip 10.8.1.50 198557 username barzegar8595 198557 mac 198557 bytes_out 0 198557 bytes_in 0 198557 station_ip 46.225.209.56 198557 port 22 198557 unique_id port 198557 remote_ip 10.8.1.50 198562 username barzegar8595 198562 mac 198562 bytes_out 0 198562 bytes_in 0 198562 station_ip 5.119.78.4 198562 port 25 198562 unique_id port 198562 remote_ip 10.8.1.50 198563 username barzegar8595 198563 mac 198563 bytes_out 0 198563 bytes_in 0 198563 station_ip 46.225.209.56 198563 port 22 198563 unique_id port 198563 remote_ip 10.8.1.50 198564 username barzegar 198564 mac 198564 bytes_out 0 198564 bytes_in 0 198564 station_ip 5.119.146.12 198564 port 25 198564 unique_id port 198564 remote_ip 10.8.1.6 198566 username barzegar8595 198566 mac 198566 bytes_out 0 198566 bytes_in 0 198566 station_ip 46.225.209.56 198566 port 22 198566 unique_id port 198566 remote_ip 10.8.1.50 198568 username barzegar8595 198568 mac 198568 bytes_out 0 198568 bytes_in 0 198568 station_ip 46.225.209.56 198568 port 22 198568 unique_id port 198568 remote_ip 10.8.1.50 198575 username barzegar8595 198575 mac 198575 bytes_out 0 198575 bytes_in 0 198539 remote_ip 10.8.1.58 198547 username pourshad 198547 mac 198547 bytes_out 175297 198547 bytes_in 1321002 198547 station_ip 5.120.252.247 198547 port 17 198547 unique_id port 198547 remote_ip 10.8.1.58 198552 username sabaghnezhad 198552 mac 198552 bytes_out 0 198552 bytes_in 0 198552 station_ip 83.122.98.225 198552 port 9 198552 unique_id port 198552 remote_ip 10.8.0.18 198554 username barzegar8595 198554 mac 198554 bytes_out 0 198554 bytes_in 0 198554 station_ip 5.119.78.4 198554 port 25 198554 unique_id port 198554 remote_ip 10.8.1.50 198558 username barzegar8595 198558 mac 198558 bytes_out 0 198558 bytes_in 0 198558 station_ip 5.119.78.4 198558 port 25 198558 unique_id port 198558 remote_ip 10.8.1.50 198569 username barzegar8595 198569 mac 198569 bytes_out 0 198569 bytes_in 0 198569 station_ip 5.119.78.4 198569 port 25 198569 unique_id port 198569 remote_ip 10.8.1.50 198570 username barzegar8595 198570 mac 198570 bytes_out 0 198570 bytes_in 0 198570 station_ip 46.225.209.56 198570 port 22 198570 unique_id port 198570 remote_ip 10.8.1.50 198572 username barzegar8595 198572 mac 198572 bytes_out 172281 198572 bytes_in 1904303 198572 station_ip 46.225.209.56 198572 port 22 198572 unique_id port 198572 remote_ip 10.8.1.50 198574 username barzegar8595 198574 mac 198574 bytes_out 0 198574 bytes_in 0 198574 station_ip 46.225.209.56 198574 port 22 198574 unique_id port 198574 remote_ip 10.8.1.50 198576 username nilufarrajaei 198576 mac 198576 bytes_out 0 198576 bytes_in 0 198576 station_ip 83.123.161.182 198576 port 13 198576 unique_id port 198576 remote_ip 10.8.1.138 198577 username pourshad 198577 mac 198577 bytes_out 332349 198577 bytes_in 1184418 198577 station_ip 5.120.207.182 198577 port 23 198577 unique_id port 198577 remote_ip 10.8.1.58 198579 username sekonji0496 198579 mac 198579 bytes_out 0 198579 bytes_in 0 198579 station_ip 37.129.12.100 198579 port 12 198579 unique_id port 198579 remote_ip 10.8.0.66 198580 username barzegar 198580 mac 198580 bytes_out 0 198580 bytes_in 0 198580 station_ip 5.119.146.12 198580 port 13 198580 unique_id port 198580 remote_ip 10.8.1.6 198581 username godarzi 198581 mac 198581 bytes_out 0 198581 bytes_in 0 198581 station_ip 5.202.62.43 198581 port 21 198581 unique_id port 198582 username barzegar8595 198582 mac 198582 bytes_out 0 198582 bytes_in 0 198582 station_ip 46.225.209.56 198582 port 22 198582 unique_id port 198582 remote_ip 10.8.1.50 198595 username barzegar 198595 mac 198595 bytes_out 24942 198595 bytes_in 7876 198595 station_ip 5.119.146.12 198595 port 26 198595 unique_id port 198595 remote_ip 10.8.1.6 198597 username meysam 198597 mac 198597 bytes_out 0 198597 bytes_in 0 198597 station_ip 188.158.48.134 198597 port 25 198597 unique_id port 198597 remote_ip 10.8.1.30 198604 username nilufarrajaei 198604 mac 198604 bytes_out 11784707 198604 bytes_in 36055749 198604 station_ip 83.123.217.34 198604 port 21 198604 unique_id port 198604 remote_ip 10.8.1.138 198605 username meysam 198605 mac 198605 bytes_out 0 198605 bytes_in 0 198605 station_ip 188.158.48.134 198605 port 25 198605 unique_id port 198605 remote_ip 10.8.1.30 198606 username pourshad 198606 mac 198606 bytes_out 0 198606 bytes_in 0 198606 station_ip 5.120.207.182 198606 port 13 198606 unique_id port 198606 remote_ip 10.8.0.54 198611 username barzegar 198611 mac 198611 bytes_out 554738 198611 bytes_in 245590 198561 username barzegar8595 198561 mac 198561 bytes_out 0 198561 bytes_in 0 198561 station_ip 46.225.209.56 198561 port 22 198561 unique_id port 198561 remote_ip 10.8.1.50 198565 username barzegar8595 198565 mac 198565 bytes_out 0 198565 bytes_in 0 198565 station_ip 5.119.78.4 198565 port 26 198565 unique_id port 198565 remote_ip 10.8.1.50 198567 username barzegar8595 198567 mac 198567 bytes_out 0 198567 bytes_in 0 198567 station_ip 5.119.78.4 198567 port 25 198567 unique_id port 198567 remote_ip 10.8.1.50 198571 username barzegar8595 198571 mac 198571 bytes_out 0 198571 bytes_in 0 198571 station_ip 5.119.78.4 198571 port 25 198571 unique_id port 198571 remote_ip 10.8.1.50 198573 username barzegar8595 198573 mac 198573 bytes_out 0 198573 bytes_in 0 198573 station_ip 5.119.78.4 198573 port 25 198573 unique_id port 198573 remote_ip 10.8.1.50 198583 username barzegar8595 198583 mac 198583 bytes_out 0 198583 bytes_in 0 198583 station_ip 46.225.209.56 198583 port 13 198583 unique_id port 198583 remote_ip 10.8.1.50 198584 username barzegar 198584 mac 198584 bytes_out 0 198584 bytes_in 0 198584 station_ip 5.119.146.12 198584 port 22 198584 unique_id port 198584 remote_ip 10.8.1.6 198585 username barzegar8595 198585 mac 198585 bytes_out 0 198585 bytes_in 0 198585 station_ip 46.225.209.56 198585 port 13 198585 unique_id port 198585 remote_ip 10.8.1.50 198587 username barzegar 198587 mac 198587 bytes_out 0 198587 bytes_in 0 198587 station_ip 5.119.146.12 198587 port 25 198587 unique_id port 198587 remote_ip 10.8.1.6 198589 username barzegar 198589 mac 198589 bytes_out 8556 198589 bytes_in 7636 198589 station_ip 5.119.146.12 198589 port 25 198589 unique_id port 198589 remote_ip 10.8.1.6 198593 username barzegar 198593 mac 198593 bytes_out 0 198593 bytes_in 0 198593 station_ip 5.119.146.12 198593 port 25 198593 unique_id port 198593 remote_ip 10.8.1.6 198594 username motamedi9772 198594 mac 198594 bytes_out 36265 198594 bytes_in 326223 198594 station_ip 83.123.147.85 198594 port 12 198594 unique_id port 198594 remote_ip 10.8.0.62 198599 username barzegar 198599 mac 198599 bytes_out 0 198599 bytes_in 0 198599 station_ip 5.119.146.12 198599 port 13 198599 unique_id port 198599 remote_ip 10.8.0.14 198600 username sabaghnezhad 198600 mac 198600 bytes_out 1322685 198600 bytes_in 3689378 198600 station_ip 83.122.98.225 198600 port 10 198600 unique_id port 198600 remote_ip 10.8.0.18 198601 username barzegar 198601 mac 198601 bytes_out 0 198601 bytes_in 0 198601 station_ip 5.119.146.12 198601 port 25 198601 unique_id port 198601 remote_ip 10.8.1.6 198602 username sabaghnezhad 198602 mac 198602 bytes_out 0 198602 bytes_in 0 198602 station_ip 83.122.98.225 198602 port 12 198602 unique_id port 198602 remote_ip 10.8.0.18 198603 username pourshad 198603 mac 198603 bytes_out 0 198603 bytes_in 0 198603 station_ip 5.120.207.182 198603 port 26 198603 unique_id port 198603 remote_ip 10.8.1.58 198608 username pourshad 198608 mac 198608 bytes_out 0 198608 bytes_in 0 198608 station_ip 5.120.207.182 198608 port 13 198608 unique_id port 198608 remote_ip 10.8.0.54 198613 username pourshad 198613 mac 198613 bytes_out 1374850 198613 bytes_in 7305876 198613 station_ip 5.120.207.182 198613 port 29 198613 unique_id port 198613 remote_ip 10.8.1.58 198615 username meghdad1616 198615 kill_reason Another user logged on this global unique id 198615 mac 198615 bytes_out 0 198575 station_ip 5.119.78.4 198575 port 25 198575 unique_id port 198575 remote_ip 10.8.1.50 198578 username motamedi9772 198578 kill_reason Another user logged on this global unique id 198578 mac 198578 bytes_out 0 198578 bytes_in 0 198578 station_ip 83.123.133.189 198578 port 13 198578 unique_id port 198578 remote_ip 10.8.0.62 198586 username barzegar 198586 mac 198586 bytes_out 8583 198586 bytes_in 55601 198586 station_ip 5.119.146.12 198586 port 13 198586 unique_id port 198586 remote_ip 10.8.1.6 198588 username esmaeili1522 198588 mac 198588 bytes_out 3062460 198588 bytes_in 34767379 198588 station_ip 5.120.134.35 198588 port 12 198588 unique_id port 198588 remote_ip 10.8.0.138 198590 username pourshad 198590 mac 198590 bytes_out 288366 198590 bytes_in 2686689 198590 station_ip 5.120.207.182 198590 port 13 198590 unique_id port 198590 remote_ip 10.8.1.58 198591 username pourshad 198591 kill_reason Maximum check online fails reached 198591 mac 198591 bytes_out 0 198591 bytes_in 0 198591 station_ip 5.120.207.182 198591 port 13 198591 unique_id port 198592 username pourshad 198592 mac 198592 bytes_out 3488474 198592 bytes_in 40700843 198592 station_ip 5.120.207.182 198592 port 12 198592 unique_id port 198592 remote_ip 10.8.0.54 198596 username pourshad 198596 mac 198596 bytes_out 116234 198596 bytes_in 862261 198596 station_ip 5.120.207.182 198596 port 25 198596 unique_id port 198596 remote_ip 10.8.1.58 198598 username kalantary6037 198598 mac 198598 bytes_out 3766896 198598 bytes_in 45635153 198598 station_ip 37.129.142.139 198598 port 12 198598 unique_id port 198598 remote_ip 10.8.0.10 198607 username barzegar 198607 mac 198607 bytes_out 0 198607 bytes_in 0 198607 station_ip 5.119.146.12 198607 port 21 198607 unique_id port 198607 remote_ip 10.8.1.6 198609 username saeeddamghani 198609 unique_id port 198609 terminate_cause User-Request 198609 bytes_out 233763 198609 bytes_in 6588443 198609 station_ip 37.129.210.20 198609 port 15729620 198609 nas_port_type Virtual 198609 remote_ip 5.5.5.186 198610 username pourshad 198610 mac 198610 bytes_out 0 198610 bytes_in 0 198610 station_ip 5.120.207.182 198610 port 28 198610 unique_id port 198610 remote_ip 10.8.1.58 198612 username barzegar 198612 mac 198612 bytes_out 0 198612 bytes_in 0 198612 station_ip 5.119.146.12 198612 port 27 198612 unique_id port 198612 remote_ip 10.8.1.6 198619 username barzegar 198619 mac 198619 bytes_out 0 198619 bytes_in 0 198619 station_ip 5.119.146.12 198619 port 27 198619 unique_id port 198619 remote_ip 10.8.1.6 198622 username pourshad 198622 mac 198622 bytes_out 0 198622 bytes_in 0 198622 station_ip 5.120.207.182 198622 port 14 198622 unique_id port 198622 remote_ip 10.8.0.54 198625 username saeeddamghani 198625 unique_id port 198625 terminate_cause User-Request 198625 bytes_out 54733 198625 bytes_in 168932 198625 station_ip 37.129.210.20 198625 port 15729624 198625 nas_port_type Virtual 198625 remote_ip 5.5.5.186 198628 username pourshad 198628 mac 198628 bytes_out 0 198628 bytes_in 0 198628 station_ip 5.120.207.182 198628 port 14 198628 unique_id port 198628 remote_ip 10.8.0.54 198631 username saeeddamghani 198631 unique_id port 198631 terminate_cause User-Request 198631 bytes_out 239432 198631 bytes_in 5449975 198631 station_ip 37.129.210.20 198631 port 15729626 198631 nas_port_type Virtual 198631 remote_ip 5.5.5.186 198633 username rajaei 198633 mac 198633 bytes_out 0 198633 bytes_in 0 198633 station_ip 5.134.180.191 198633 port 27 198633 unique_id port 198633 remote_ip 10.8.1.146 198611 station_ip 5.119.146.12 198611 port 27 198611 unique_id port 198611 remote_ip 10.8.1.6 198614 username barzegar 198614 mac 198614 bytes_out 0 198614 bytes_in 0 198614 station_ip 5.119.146.12 198614 port 27 198614 unique_id port 198614 remote_ip 10.8.1.6 198616 username saeeddamghani 198616 unique_id port 198616 terminate_cause User-Request 198616 bytes_out 275628 198616 bytes_in 9488750 198616 station_ip 37.129.210.20 198616 port 15729621 198616 nas_port_type Virtual 198616 remote_ip 5.5.5.186 198618 username saeeddamghani 198618 unique_id port 198618 terminate_cause User-Request 198618 bytes_out 175346 198618 bytes_in 1319506 198618 station_ip 37.129.210.20 198618 port 15729623 198618 nas_port_type Virtual 198618 remote_ip 5.5.5.186 198620 username motamedi9772 198620 mac 198620 bytes_out 810450 198620 bytes_in 13084924 198620 station_ip 83.123.184.97 198620 port 13 198620 unique_id port 198620 remote_ip 10.8.0.62 198621 username aminvpn 198621 mac 198621 bytes_out 0 198621 bytes_in 0 198621 station_ip 5.119.200.87 198621 port 21 198621 unique_id port 198621 remote_ip 10.8.1.130 198623 username kalantary6037 198623 mac 198623 bytes_out 0 198623 bytes_in 0 198623 station_ip 37.129.161.19 198623 port 15 198623 unique_id port 198623 remote_ip 10.8.0.10 198626 username pourshad 198626 mac 198626 bytes_out 0 198626 bytes_in 0 198626 station_ip 5.120.207.182 198626 port 27 198626 unique_id port 198626 remote_ip 10.8.1.58 198629 username barzegar 198629 mac 198629 bytes_out 2954 198629 bytes_in 5361 198629 station_ip 5.119.146.12 198629 port 25 198629 unique_id port 198629 remote_ip 10.8.1.6 198630 username alipour1506 198630 mac 198630 bytes_out 0 198630 bytes_in 0 198630 station_ip 83.123.200.65 198630 port 12 198630 unique_id port 198630 remote_ip 10.8.1.86 198634 username barzegar8595 198634 mac 198634 bytes_out 0 198634 bytes_in 0 198634 station_ip 46.225.232.229 198634 port 22 198634 unique_id port 198634 remote_ip 10.8.1.50 198642 username sekonji0496 198642 mac 198642 bytes_out 0 198642 bytes_in 0 198642 station_ip 37.129.12.100 198642 port 12 198642 unique_id port 198642 remote_ip 10.8.0.66 198643 username barzegar8595 198643 mac 198643 bytes_out 0 198643 bytes_in 0 198643 station_ip 37.27.7.234 198643 port 12 198643 unique_id port 198643 remote_ip 10.8.1.50 198644 username barzegar 198644 mac 198644 bytes_out 0 198644 bytes_in 0 198644 station_ip 5.119.146.12 198644 port 25 198644 unique_id port 198644 remote_ip 10.8.1.6 198645 username meysam 198645 mac 198645 bytes_out 0 198645 bytes_in 0 198645 station_ip 188.159.251.33 198645 port 14 198645 unique_id port 198645 remote_ip 10.8.0.142 198647 username kharazmi2920 198647 mac 198647 bytes_out 0 198647 bytes_in 0 198647 station_ip 83.123.28.86 198647 port 12 198647 unique_id port 198647 remote_ip 10.8.0.34 198648 username sekonji0496 198648 mac 198648 bytes_out 0 198648 bytes_in 0 198648 station_ip 37.129.12.100 198648 port 10 198648 unique_id port 198648 remote_ip 10.8.0.66 198650 username sekonji0496 198650 mac 198650 bytes_out 0 198650 bytes_in 0 198650 station_ip 37.129.12.100 198650 port 10 198650 unique_id port 198650 remote_ip 10.8.0.66 198652 username rajaei 198652 mac 198652 bytes_out 0 198652 bytes_in 0 198652 station_ip 5.134.180.191 198652 port 27 198652 unique_id port 198652 remote_ip 10.8.1.146 198653 username barzegar 198653 mac 198653 bytes_out 0 198653 bytes_in 0 198653 station_ip 5.119.146.12 198615 bytes_in 0 198615 station_ip 5.119.79.249 198615 port 25 198615 unique_id port 198615 remote_ip 10.8.1.142 198617 username saeeddamghani 198617 unique_id port 198617 terminate_cause User-Request 198617 bytes_out 72139 198617 bytes_in 268895 198617 station_ip 37.129.210.20 198617 port 15729622 198617 nas_port_type Virtual 198617 remote_ip 5.5.5.186 198624 username meghdad1616 198624 mac 198624 bytes_out 0 198624 bytes_in 0 198624 station_ip 5.119.79.249 198624 port 25 198624 unique_id port 198627 username barzegar 198627 mac 198627 bytes_out 6065 198627 bytes_in 6722 198627 station_ip 5.119.146.12 198627 port 13 198627 unique_id port 198627 remote_ip 10.8.0.14 198632 username rajaei 198632 mac 198632 bytes_out 0 198632 bytes_in 0 198632 station_ip 5.134.180.191 198632 port 27 198632 unique_id port 198632 remote_ip 10.8.1.146 198637 username kalantary6037 198637 mac 198637 bytes_out 0 198637 bytes_in 0 198637 station_ip 37.129.211.155 198637 port 12 198637 unique_id port 198637 remote_ip 10.8.0.10 198646 username dortaj3792 198646 mac 198646 bytes_out 0 198646 bytes_in 0 198646 station_ip 5.120.176.199 198646 port 10 198646 unique_id port 198646 remote_ip 10.8.0.30 198649 username sekonji0496 198649 mac 198649 bytes_out 0 198649 bytes_in 0 198649 station_ip 37.129.12.100 198649 port 10 198649 unique_id port 198649 remote_ip 10.8.0.66 198651 username iranmanesh4443 198651 mac 198651 bytes_out 77525 198651 bytes_in 151591 198651 station_ip 5.119.24.59 198651 port 12 198651 unique_id port 198651 remote_ip 10.8.1.122 198656 username barzegar 198656 mac 198656 bytes_out 0 198656 bytes_in 0 198656 station_ip 5.119.146.12 198656 port 23 198656 unique_id port 198656 remote_ip 10.8.1.6 198657 username barzegar 198657 mac 198657 bytes_out 0 198657 bytes_in 0 198657 station_ip 5.119.146.12 198657 port 23 198657 unique_id port 198657 remote_ip 10.8.1.6 198659 username sekonji0496 198659 mac 198659 bytes_out 3457 198659 bytes_in 5050 198659 station_ip 37.129.12.100 198659 port 10 198659 unique_id port 198659 remote_ip 10.8.0.66 198660 username sekonji0496 198660 mac 198660 bytes_out 0 198660 bytes_in 0 198660 station_ip 37.129.12.100 198660 port 10 198660 unique_id port 198660 remote_ip 10.8.0.66 198661 username sekonji0496 198661 mac 198661 bytes_out 0 198661 bytes_in 0 198661 station_ip 37.129.12.100 198661 port 15 198661 unique_id port 198661 remote_ip 10.8.0.66 198665 username sekonji0496 198665 mac 198665 bytes_out 0 198665 bytes_in 0 198665 station_ip 37.129.12.100 198665 port 15 198665 unique_id port 198665 remote_ip 10.8.0.66 198666 username sekonji0496 198666 mac 198666 bytes_out 0 198666 bytes_in 0 198666 station_ip 37.129.12.100 198666 port 15 198666 unique_id port 198666 remote_ip 10.8.0.66 198669 username sekonji0496 198669 mac 198669 bytes_out 0 198669 bytes_in 0 198669 station_ip 37.129.12.100 198669 port 15 198669 unique_id port 198669 remote_ip 10.8.0.66 198671 username fezealinaghi 198671 mac 198671 bytes_out 0 198671 bytes_in 0 198671 station_ip 37.129.72.194 198671 port 13 198671 unique_id port 198673 username alipour1506 198673 kill_reason Another user logged on this global unique id 198673 mac 198673 bytes_out 0 198673 bytes_in 0 198673 station_ip 37.129.190.253 198673 port 23 198673 unique_id port 198673 remote_ip 10.8.1.86 198674 username pourshad 198674 mac 198674 bytes_out 186067 198674 bytes_in 944572 198674 station_ip 5.120.207.182 198674 port 27 198635 username barzegar 198635 mac 198635 bytes_out 0 198635 bytes_in 0 198635 station_ip 5.119.146.12 198635 port 25 198635 unique_id port 198635 remote_ip 10.8.1.6 198636 username sekonji0496 198636 mac 198636 bytes_out 0 198636 bytes_in 0 198636 station_ip 37.129.12.100 198636 port 14 198636 unique_id port 198636 remote_ip 10.8.0.66 198638 username barzegar 198638 mac 198638 bytes_out 0 198638 bytes_in 0 198638 station_ip 5.119.146.12 198638 port 12 198638 unique_id port 198638 remote_ip 10.8.0.14 198639 username pourshad 198639 mac 198639 bytes_out 0 198639 bytes_in 0 198639 station_ip 5.120.207.182 198639 port 28 198639 unique_id port 198639 remote_ip 10.8.1.58 198640 username barzegar 198640 mac 198640 bytes_out 0 198640 bytes_in 0 198640 station_ip 5.119.146.12 198640 port 22 198640 unique_id port 198640 remote_ip 10.8.1.6 198641 username godarzi 198641 kill_reason Another user logged on this global unique id 198641 mac 198641 bytes_out 0 198641 bytes_in 0 198641 station_ip 5.202.62.43 198641 port 23 198641 unique_id port 198641 remote_ip 10.8.1.78 198655 username godarzi 198655 mac 198655 bytes_out 0 198655 bytes_in 0 198655 station_ip 5.202.62.43 198655 port 23 198655 unique_id port 198663 username barzegar 198663 mac 198663 bytes_out 0 198663 bytes_in 0 198663 station_ip 5.119.146.12 198663 port 12 198663 unique_id port 198663 remote_ip 10.8.1.6 198668 username fezealinaghi 198668 kill_reason Another user logged on this global unique id 198668 mac 198668 bytes_out 0 198668 bytes_in 0 198668 station_ip 37.129.72.194 198668 port 13 198668 unique_id port 198668 remote_ip 10.8.0.98 198680 username sekonji0496 198680 mac 198680 bytes_out 0 198680 bytes_in 0 198680 station_ip 37.129.12.100 198680 port 15 198680 unique_id port 198680 remote_ip 10.8.0.66 198687 username sekonji0496 198687 mac 198687 bytes_out 0 198687 bytes_in 0 198687 station_ip 37.129.12.100 198687 port 13 198687 unique_id port 198687 remote_ip 10.8.0.66 198692 username nilufarrajaei 198692 mac 198692 bytes_out 0 198692 bytes_in 0 198692 station_ip 83.123.217.34 198692 port 26 198692 unique_id port 198692 remote_ip 10.8.1.138 198696 username nilufarrajaei 198696 kill_reason Maximum check online fails reached 198696 mac 198696 bytes_out 0 198696 bytes_in 0 198696 station_ip 83.123.217.34 198696 port 26 198696 unique_id port 198701 username kalantary6037 198701 mac 198701 bytes_out 532406 198701 bytes_in 5142350 198701 station_ip 37.129.255.55 198701 port 12 198701 unique_id port 198701 remote_ip 10.8.1.150 198705 username barzegar 198705 mac 198705 bytes_out 2041 198705 bytes_in 4490 198705 station_ip 5.119.146.12 198705 port 12 198705 unique_id port 198705 remote_ip 10.8.1.6 198708 username hashtadani5 198708 mac 198708 bytes_out 0 198708 bytes_in 0 198708 station_ip 83.123.164.189 198708 port 10 198708 unique_id port 198708 remote_ip 10.8.0.150 198710 username hashtadani5 198710 mac 198710 bytes_out 0 198710 bytes_in 0 198710 station_ip 83.123.164.189 198710 port 12 198710 unique_id port 198710 remote_ip 10.8.0.150 198720 username hatami 198720 mac 198720 bytes_out 1426854 198720 bytes_in 9350109 198720 station_ip 37.27.47.189 198720 port 16 198720 unique_id port 198720 remote_ip 10.8.1.26 198726 username barzegar 198726 mac 198726 bytes_out 0 198726 bytes_in 0 198726 station_ip 5.119.146.12 198726 port 16 198726 unique_id port 198726 remote_ip 10.8.1.6 198729 username barzegar 198729 mac 198653 port 12 198653 unique_id port 198653 remote_ip 10.8.1.6 198654 username barzegar8595 198654 mac 198654 bytes_out 41433 198654 bytes_in 40995 198654 station_ip 37.27.7.234 198654 port 28 198654 unique_id port 198654 remote_ip 10.8.1.50 198658 username alipour1506 198658 mac 198658 bytes_out 35614 198658 bytes_in 54244 198658 station_ip 37.129.190.253 198658 port 22 198658 unique_id port 198658 remote_ip 10.8.1.86 198662 username barzegar8595 198662 mac 198662 bytes_out 0 198662 bytes_in 0 198662 station_ip 37.27.7.234 198662 port 12 198662 unique_id port 198662 remote_ip 10.8.1.50 198664 username sekonji0496 198664 mac 198664 bytes_out 0 198664 bytes_in 0 198664 station_ip 37.129.12.100 198664 port 15 198664 unique_id port 198664 remote_ip 10.8.0.66 198667 username meysam 198667 mac 198667 bytes_out 28572 198667 bytes_in 373527 198667 station_ip 188.159.251.33 198667 port 29 198667 unique_id port 198667 remote_ip 10.8.1.30 198670 username barzegar 198670 mac 198670 bytes_out 0 198670 bytes_in 0 198670 station_ip 5.119.146.12 198670 port 29 198670 unique_id port 198670 remote_ip 10.8.1.6 198672 username sekonji0496 198672 mac 198672 bytes_out 0 198672 bytes_in 0 198672 station_ip 37.129.12.100 198672 port 15 198672 unique_id port 198672 remote_ip 10.8.0.66 198675 username barzegar 198675 mac 198675 bytes_out 0 198675 bytes_in 0 198675 station_ip 5.119.146.12 198675 port 29 198675 unique_id port 198675 remote_ip 10.8.1.6 198676 username aminvpn 198676 mac 198676 bytes_out 1016770 198676 bytes_in 5529447 198676 station_ip 5.119.200.87 198676 port 21 198676 unique_id port 198676 remote_ip 10.8.1.130 198677 username fezealinaghi 198677 mac 198677 bytes_out 0 198677 bytes_in 0 198677 station_ip 37.129.72.194 198677 port 13 198677 unique_id port 198677 remote_ip 10.8.0.98 198679 username barzegar8595 198679 mac 198679 bytes_out 0 198679 bytes_in 0 198679 station_ip 93.114.23.77 198679 port 21 198679 unique_id port 198679 remote_ip 10.8.1.50 198682 username motamedi9772 198682 mac 198682 bytes_out 0 198682 bytes_in 0 198682 station_ip 83.123.141.93 198682 port 10 198682 unique_id port 198682 remote_ip 10.8.0.62 198683 username alipour1506 198683 mac 198683 bytes_out 0 198683 bytes_in 0 198683 station_ip 37.129.190.253 198683 port 23 198683 unique_id port 198684 username sekonji0496 198684 mac 198684 bytes_out 0 198684 bytes_in 0 198684 station_ip 37.129.12.100 198684 port 10 198684 unique_id port 198684 remote_ip 10.8.0.66 198685 username alipour1506 198685 mac 198685 bytes_out 57507 198685 bytes_in 167355 198685 station_ip 37.129.190.253 198685 port 23 198685 unique_id port 198685 remote_ip 10.8.1.86 198686 username barzegar 198686 mac 198686 bytes_out 0 198686 bytes_in 0 198686 station_ip 5.119.146.12 198686 port 25 198686 unique_id port 198686 remote_ip 10.8.1.6 198689 username sekonji0496 198689 mac 198689 bytes_out 0 198689 bytes_in 0 198689 station_ip 37.129.12.100 198689 port 10 198689 unique_id port 198689 remote_ip 10.8.0.66 198691 username sekonji0496 198691 mac 198691 bytes_out 0 198691 bytes_in 0 198691 station_ip 37.129.12.100 198691 port 10 198691 unique_id port 198691 remote_ip 10.8.0.66 198693 username kalantary6037 198693 mac 198693 bytes_out 0 198693 bytes_in 0 198693 station_ip 37.129.255.55 198693 port 12 198693 unique_id port 198693 remote_ip 10.8.1.150 198694 username nilufarrajaei 198694 kill_reason Another user logged on this global unique id 198674 unique_id port 198674 remote_ip 10.8.1.58 198678 username barzegar8595 198678 mac 198678 bytes_out 59165 198678 bytes_in 47551 198678 station_ip 46.225.232.50 198678 port 28 198678 unique_id port 198678 remote_ip 10.8.1.50 198681 username malekpoir 198681 mac 198681 bytes_out 4383406 198681 bytes_in 47345397 198681 station_ip 5.119.172.54 198681 port 25 198681 unique_id port 198681 remote_ip 10.8.1.70 198688 username pourshad 198688 mac 198688 bytes_out 110982 198688 bytes_in 112511 198688 station_ip 5.120.207.182 198688 port 10 198688 unique_id port 198688 remote_ip 10.8.0.54 198690 username barzegar 198690 mac 198690 bytes_out 0 198690 bytes_in 0 198690 station_ip 5.119.146.12 198690 port 28 198690 unique_id port 198690 remote_ip 10.8.1.6 198695 username meysam 198695 kill_reason Another user logged on this global unique id 198695 mac 198695 bytes_out 0 198695 bytes_in 0 198695 station_ip 188.159.251.33 198695 port 15 198695 unique_id port 198695 remote_ip 10.8.0.142 198698 username sekonji0496 198698 mac 198698 bytes_out 0 198698 bytes_in 0 198698 station_ip 37.129.12.100 198698 port 10 198698 unique_id port 198698 remote_ip 10.8.0.66 198700 username barzegar 198700 mac 198700 bytes_out 1390275 198700 bytes_in 20365427 198700 station_ip 5.119.146.12 198700 port 28 198700 unique_id port 198700 remote_ip 10.8.1.6 198702 username sekonji0496 198702 mac 198702 bytes_out 0 198702 bytes_in 0 198702 station_ip 37.129.12.100 198702 port 10 198702 unique_id port 198702 remote_ip 10.8.0.66 198704 username sekonji0496 198704 kill_reason Another user logged on this global unique id 198704 mac 198704 bytes_out 0 198704 bytes_in 0 198704 station_ip 37.129.12.100 198704 port 12 198704 unique_id port 198704 remote_ip 10.8.0.66 198712 username esmaeilkazemi 198712 mac 198712 bytes_out 0 198712 bytes_in 0 198712 station_ip 83.123.49.36 198712 port 12 198712 unique_id port 198712 remote_ip 10.8.0.86 198713 username barzegar8595 198713 mac 198713 bytes_out 178654 198713 bytes_in 534342 198713 station_ip 46.225.232.50 198713 port 28 198713 unique_id port 198713 remote_ip 10.8.1.50 198714 username hashtadani5 198714 mac 198714 bytes_out 0 198714 bytes_in 0 198714 station_ip 83.123.164.189 198714 port 27 198714 unique_id port 198714 remote_ip 10.8.1.162 198715 username esmaeilkazemi 198715 mac 198715 bytes_out 43430 198715 bytes_in 151856 198715 station_ip 83.123.49.36 198715 port 10 198715 unique_id port 198715 remote_ip 10.8.0.86 198717 username hashtadani5 198717 kill_reason Maximum check online fails reached 198717 mac 198717 bytes_out 0 198717 bytes_in 0 198717 station_ip 83.123.164.189 198717 port 13 198717 unique_id port 198719 username hashtadani5 198719 kill_reason Another user logged on this global unique id 198719 mac 198719 bytes_out 0 198719 bytes_in 0 198719 station_ip 83.123.164.189 198719 port 12 198719 unique_id port 198722 username barzegar 198722 mac 198722 bytes_out 0 198722 bytes_in 0 198722 station_ip 5.119.146.12 198722 port 12 198722 unique_id port 198724 username barzegar 198724 mac 198724 bytes_out 0 198724 bytes_in 0 198724 station_ip 5.119.146.12 198724 port 12 198724 unique_id port 198724 remote_ip 10.8.1.6 198727 username motamedi9772 198727 kill_reason Another user logged on this global unique id 198727 mac 198727 bytes_out 0 198727 bytes_in 0 198727 station_ip 83.123.155.77 198727 port 10 198727 unique_id port 198727 remote_ip 10.8.0.62 198734 username rashidi4690 198734 mac 198734 bytes_out 5194286 198734 bytes_in 41711486 198694 mac 198694 bytes_out 0 198694 bytes_in 0 198694 station_ip 83.123.217.34 198694 port 26 198694 unique_id port 198697 username meysam 198697 mac 198697 bytes_out 0 198697 bytes_in 0 198697 station_ip 188.159.251.33 198697 port 15 198697 unique_id port 198699 username sekonji0496 198699 mac 198699 bytes_out 0 198699 bytes_in 0 198699 station_ip 37.129.12.100 198699 port 10 198699 unique_id port 198699 remote_ip 10.8.0.66 198703 username pourshad 198703 mac 198703 bytes_out 295302 198703 bytes_in 1058910 198703 station_ip 5.120.207.182 198703 port 25 198703 unique_id port 198703 remote_ip 10.8.1.58 198706 username sekonji0496 198706 mac 198706 bytes_out 0 198706 bytes_in 0 198706 station_ip 37.129.12.100 198706 port 12 198706 unique_id port 198706 remote_ip 10.8.0.66 198707 username barzegar8595 198707 mac 198707 bytes_out 0 198707 bytes_in 0 198707 station_ip 46.225.232.50 198707 port 27 198707 unique_id port 198707 remote_ip 10.8.1.50 198709 username hashtadani5 198709 mac 198709 bytes_out 0 198709 bytes_in 0 198709 station_ip 83.123.164.189 198709 port 10 198709 unique_id port 198709 remote_ip 10.8.0.150 198711 username esmaeilkazemi 198711 mac 198711 bytes_out 0 198711 bytes_in 0 198711 station_ip 83.123.49.36 198711 port 10 198711 unique_id port 198711 remote_ip 10.8.0.86 198716 username hashtadani5 198716 kill_reason Maximum number of concurrent logins reached 198716 mac 198716 bytes_out 0 198716 bytes_in 0 198716 station_ip 83.123.164.189 198716 port 28 198716 unique_id port 198718 username pourshad 198718 mac 198718 bytes_out 79853 198718 bytes_in 495603 198718 station_ip 5.120.207.182 198718 port 27 198718 unique_id port 198718 remote_ip 10.8.1.58 198721 username malekpoir 198721 mac 198721 bytes_out 2493192 198721 bytes_in 18333040 198721 station_ip 5.119.172.54 198721 port 21 198721 unique_id port 198721 remote_ip 10.8.1.70 198723 username farhad3 198723 mac 198723 bytes_out 640431 198723 bytes_in 1462638 198723 station_ip 5.119.30.132 198723 port 16 198723 unique_id port 198723 remote_ip 10.8.1.38 198725 username godarzi 198725 mac 198725 bytes_out 0 198725 bytes_in 0 198725 station_ip 5.202.62.43 198725 port 14 198725 unique_id port 198725 remote_ip 10.8.0.146 198728 username barzegar 198728 mac 198728 bytes_out 0 198728 bytes_in 0 198728 station_ip 5.119.146.12 198728 port 28 198728 unique_id port 198728 remote_ip 10.8.1.6 198731 username alipour1506 198731 mac 198731 bytes_out 292846 198731 bytes_in 915444 198731 station_ip 37.129.190.253 198731 port 23 198731 unique_id port 198731 remote_ip 10.8.1.86 198733 username motamedi9772 198733 kill_reason Another user logged on this global unique id 198733 mac 198733 bytes_out 0 198733 bytes_in 0 198733 station_ip 83.123.155.77 198733 port 10 198733 unique_id port 198736 username kalantary6037 198736 mac 198736 bytes_out 1544472 198736 bytes_in 14928249 198736 station_ip 37.129.234.11 198736 port 12 198736 unique_id port 198736 remote_ip 10.8.1.150 198741 username malekpoir 198741 mac 198741 bytes_out 887833 198741 bytes_in 4820491 198741 station_ip 5.119.172.54 198741 port 21 198741 unique_id port 198741 remote_ip 10.8.1.70 198743 username kalantary6037 198743 mac 198743 bytes_out 253629 198743 bytes_in 787957 198743 station_ip 37.129.234.11 198743 port 27 198743 unique_id port 198743 remote_ip 10.8.1.150 198746 username tahmorsi 198746 mac 198746 bytes_out 797789 198746 bytes_in 10046166 198746 station_ip 86.57.3.25 198729 bytes_out 0 198729 bytes_in 0 198729 station_ip 5.119.146.12 198729 port 28 198729 unique_id port 198729 remote_ip 10.8.1.6 198730 username farhad3 198730 mac 198730 bytes_out 838785 198730 bytes_in 1195316 198730 station_ip 5.119.30.132 198730 port 27 198730 unique_id port 198730 remote_ip 10.8.1.38 198732 username yarmohamadi7916 198732 kill_reason Another user logged on this global unique id 198732 mac 198732 bytes_out 0 198732 bytes_in 0 198732 station_ip 5.119.108.238 198732 port 26 198732 unique_id port 198732 remote_ip 10.8.1.154 198739 username godarzi 198739 kill_reason Another user logged on this global unique id 198739 mac 198739 bytes_out 0 198739 bytes_in 0 198739 station_ip 5.202.62.43 198739 port 16 198739 unique_id port 198739 remote_ip 10.8.1.78 198744 username ebrahimpour3 198744 mac 198744 bytes_out 0 198744 bytes_in 0 198744 station_ip 83.123.242.193 198744 port 14 198744 unique_id port 198745 username motamedi9772 198745 mac 198745 bytes_out 0 198745 bytes_in 0 198745 station_ip 83.123.155.77 198745 port 10 198745 unique_id port 198747 username kharazmi2920 198747 mac 198747 bytes_out 0 198747 bytes_in 0 198747 station_ip 83.123.28.86 198747 port 15 198747 unique_id port 198747 remote_ip 10.8.0.34 198752 username alipour1506 198752 mac 198752 bytes_out 0 198752 bytes_in 0 198752 station_ip 37.129.190.253 198752 port 23 198752 unique_id port 198752 remote_ip 10.8.1.86 198754 username aminvpns6 198754 mac 198754 bytes_out 778740 198754 bytes_in 1884681 198754 station_ip 5.119.44.128 198754 port 25 198754 unique_id port 198754 remote_ip 10.8.1.62 198764 username motamedi9772 198764 kill_reason Another user logged on this global unique id 198764 mac 198764 bytes_out 0 198764 bytes_in 0 198764 station_ip 83.123.209.113 198764 port 14 198764 unique_id port 198766 username motamedi9772 198766 kill_reason Another user logged on this global unique id 198766 mac 198766 bytes_out 0 198766 bytes_in 0 198766 station_ip 83.123.209.113 198766 port 14 198766 unique_id port 198769 username barzegar8595 198769 kill_reason Another user logged on this global unique id 198769 mac 198769 bytes_out 0 198769 bytes_in 0 198769 station_ip 93.114.23.77 198769 port 22 198769 unique_id port 198772 username esmaeilkazemi 198772 kill_reason Another user logged on this global unique id 198772 mac 198772 bytes_out 0 198772 bytes_in 0 198772 station_ip 83.123.49.36 198772 port 16 198772 unique_id port 198774 username motamedi9772 198774 mac 198774 bytes_out 0 198774 bytes_in 0 198774 station_ip 83.123.209.113 198774 port 14 198774 unique_id port 198774 remote_ip 10.8.0.62 198777 username hosseine 198777 mac 198777 bytes_out 0 198777 bytes_in 0 198777 station_ip 37.129.2.169 198777 port 9 198777 unique_id port 198777 remote_ip 10.8.0.118 198781 username mosi 198781 kill_reason Another user logged on this global unique id 198781 mac 198781 bytes_out 0 198781 bytes_in 0 198781 station_ip 95.162.41.189 198781 port 23 198781 unique_id port 198782 username mosi 198782 kill_reason Another user logged on this global unique id 198782 mac 198782 bytes_out 0 198782 bytes_in 0 198782 station_ip 95.162.41.189 198782 port 23 198782 unique_id port 198787 username arash 198787 kill_reason Another user logged on this global unique id 198787 mac 198787 bytes_out 0 198787 bytes_in 0 198787 station_ip 37.27.7.223 198787 port 9 198787 unique_id port 198790 username mosi 198790 kill_reason Another user logged on this global unique id 198790 mac 198790 bytes_out 0 198790 bytes_in 0 198790 station_ip 95.162.41.189 198790 port 23 198790 unique_id port 198734 station_ip 5.119.128.109 198734 port 25 198734 unique_id port 198734 remote_ip 10.8.1.158 198735 username farhad3 198735 mac 198735 bytes_out 39530 198735 bytes_in 305310 198735 station_ip 5.119.30.132 198735 port 27 198735 unique_id port 198735 remote_ip 10.8.1.38 198737 username ebrahimpour3 198737 kill_reason Another user logged on this global unique id 198737 mac 198737 bytes_out 0 198737 bytes_in 0 198737 station_ip 83.123.242.193 198737 port 14 198737 unique_id port 198737 remote_ip 10.8.0.154 198738 username barzegar 198738 kill_reason Maximum check online fails reached 198738 mac 198738 bytes_out 0 198738 bytes_in 0 198738 station_ip 5.119.146.12 198738 port 12 198738 unique_id port 198740 username yarmohamadi7916 198740 mac 198740 bytes_out 0 198740 bytes_in 0 198740 station_ip 5.119.108.238 198740 port 26 198740 unique_id port 198742 username sekonji0496 198742 mac 198742 bytes_out 0 198742 bytes_in 0 198742 station_ip 37.129.12.100 198742 port 16 198742 unique_id port 198742 remote_ip 10.8.0.66 198750 username hamid.e 198750 unique_id port 198750 terminate_cause Lost-Carrier 198750 bytes_out 24522991 198750 bytes_in 828862757 198750 station_ip 31.56.156.136 198750 port 15729632 198750 nas_port_type Virtual 198750 remote_ip 5.5.5.190 198755 username alipour1506 198755 kill_reason Maximum check online fails reached 198755 mac 198755 bytes_out 0 198755 bytes_in 0 198755 station_ip 37.129.190.253 198755 port 23 198755 unique_id port 198756 username dortaj3792 198756 mac 198756 bytes_out 3628732 198756 bytes_in 20464773 198756 station_ip 5.120.176.199 198756 port 22 198756 unique_id port 198756 remote_ip 10.8.1.34 198758 username kamali3 198758 kill_reason Another user logged on this global unique id 198758 mac 198758 bytes_out 0 198758 bytes_in 0 198758 station_ip 5.120.111.131 198758 port 22 198758 unique_id port 198759 username kamali3 198759 kill_reason Another user logged on this global unique id 198759 mac 198759 bytes_out 0 198759 bytes_in 0 198759 station_ip 5.120.111.131 198759 port 22 198759 unique_id port 198760 username sekonji0496 198760 mac 198760 bytes_out 0 198760 bytes_in 0 198760 station_ip 37.129.12.100 198760 port 14 198760 unique_id port 198760 remote_ip 10.8.0.66 198761 username alipour1506 198761 kill_reason Another user logged on this global unique id 198761 mac 198761 bytes_out 0 198761 bytes_in 0 198761 station_ip 37.129.190.253 198761 port 23 198761 unique_id port 198763 username alipour1506 198763 kill_reason Maximum check online fails reached 198763 mac 198763 bytes_out 0 198763 bytes_in 0 198763 station_ip 37.129.190.253 198763 port 23 198763 unique_id port 198765 username barzegar8595 198765 kill_reason Another user logged on this global unique id 198765 mac 198765 bytes_out 0 198765 bytes_in 0 198765 station_ip 93.114.23.77 198765 port 22 198765 unique_id port 198768 username barzegar8595 198768 kill_reason Another user logged on this global unique id 198768 mac 198768 bytes_out 0 198768 bytes_in 0 198768 station_ip 93.114.23.77 198768 port 14 198768 unique_id port 198770 username alirezaza 198770 unique_id port 198770 terminate_cause Lost-Carrier 198770 bytes_out 233406 198770 bytes_in 9703891 198770 station_ip 5.119.78.207 198770 port 15729640 198770 nas_port_type Virtual 198770 remote_ip 5.5.5.192 198771 username esmaeilkazemi 198771 kill_reason Another user logged on this global unique id 198771 mac 198771 bytes_out 0 198771 bytes_in 0 198771 station_ip 83.123.49.36 198771 port 16 198771 unique_id port 198775 username houshang 198775 mac 198775 bytes_out 46243 198775 bytes_in 81922 198775 station_ip 5.119.224.56 198775 port 23 198746 port 25 198746 unique_id port 198746 remote_ip 10.8.1.102 198748 username hosseine 198748 mac 198748 bytes_out 0 198748 bytes_in 0 198748 station_ip 37.129.2.169 198748 port 9 198748 unique_id port 198748 remote_ip 10.8.0.118 198749 username kalantary6037 198749 mac 198749 bytes_out 77272 198749 bytes_in 248229 198749 station_ip 37.129.234.11 198749 port 25 198749 unique_id port 198749 remote_ip 10.8.1.150 198751 username khalili2 198751 kill_reason Maximum check online fails reached 198751 mac 198751 bytes_out 0 198751 bytes_in 0 198751 station_ip 5.120.50.102 198751 port 27 198751 unique_id port 198753 username alipour1506 198753 kill_reason Another user logged on this global unique id 198753 mac 198753 bytes_out 0 198753 bytes_in 0 198753 station_ip 37.129.190.253 198753 port 23 198753 unique_id port 198757 username alirezaza 198757 unique_id port 198757 terminate_cause User-Request 198757 bytes_out 250 198757 bytes_in 214 198757 station_ip 5.119.78.207 198757 port 15729639 198757 nas_port_type Virtual 198757 remote_ip 5.5.5.192 198762 username kamali3 198762 mac 198762 bytes_out 342701 198762 bytes_in 1420552 198762 station_ip 5.120.111.131 198762 port 22 198762 unique_id port 198762 remote_ip 10.8.1.166 198767 username barzegar8595 198767 kill_reason Another user logged on this global unique id 198767 mac 198767 bytes_out 0 198767 bytes_in 0 198767 station_ip 93.114.23.77 198767 port 14 198767 unique_id port 198773 username esmaeilkazemi 198773 mac 198773 bytes_out 0 198773 bytes_in 0 198773 station_ip 83.123.49.36 198773 port 15 198773 unique_id port 198773 remote_ip 10.8.0.86 198779 username mosi 198779 kill_reason Another user logged on this global unique id 198779 mac 198779 bytes_out 0 198779 bytes_in 0 198779 station_ip 95.162.41.189 198779 port 9 198779 unique_id port 198783 username mosi 198783 kill_reason Another user logged on this global unique id 198783 mac 198783 bytes_out 0 198783 bytes_in 0 198783 station_ip 95.162.41.189 198783 port 23 198783 unique_id port 198785 username mosi 198785 kill_reason Another user logged on this global unique id 198785 mac 198785 bytes_out 0 198785 bytes_in 0 198785 station_ip 95.162.41.189 198785 port 23 198785 unique_id port 198788 username mosi 198788 kill_reason Another user logged on this global unique id 198788 mac 198788 bytes_out 0 198788 bytes_in 0 198788 station_ip 95.162.41.189 198788 port 23 198788 unique_id port 198791 username farhad3 198791 kill_reason Another user logged on this global unique id 198791 mac 198791 bytes_out 0 198791 bytes_in 0 198791 station_ip 5.119.30.132 198791 port 23 198791 unique_id port 198795 username khalili2 198795 kill_reason Another user logged on this global unique id 198795 mac 198795 bytes_out 0 198795 bytes_in 0 198795 station_ip 5.120.50.102 198795 port 29 198795 unique_id port 198795 remote_ip 10.8.1.18 198808 username alihosseini1 198808 kill_reason Another user logged on this global unique id 198808 mac 198808 bytes_out 0 198808 bytes_in 0 198808 station_ip 5.119.63.41 198808 port 22 198808 unique_id port 198811 username malekpoir 198811 mac 198811 bytes_out 235520 198811 bytes_in 558596 198811 station_ip 5.119.172.54 198811 port 26 198811 unique_id port 198811 remote_ip 10.8.1.70 198812 username malekpoir 198812 kill_reason Another user logged on this global unique id 198812 mac 198812 bytes_out 0 198812 bytes_in 0 198812 station_ip 5.119.172.54 198812 port 22 198812 unique_id port 198819 username godarzi 198819 mac 198819 bytes_out 0 198819 bytes_in 0 198819 station_ip 5.202.62.43 198819 port 16 198819 unique_id port 198823 username khalili2 198775 unique_id port 198775 remote_ip 10.8.1.134 198776 username esmaeilkazemi 198776 mac 198776 bytes_out 0 198776 bytes_in 0 198776 station_ip 83.123.49.36 198776 port 16 198776 unique_id port 198776 remote_ip 10.8.0.86 198778 username mosi 198778 kill_reason Another user logged on this global unique id 198778 mac 198778 bytes_out 0 198778 bytes_in 0 198778 station_ip 95.162.41.189 198778 port 23 198778 unique_id port 198780 username mosi 198780 kill_reason Another user logged on this global unique id 198780 mac 198780 bytes_out 0 198780 bytes_in 0 198780 station_ip 95.162.41.189 198780 port 23 198780 unique_id port 198784 username mosi 198784 kill_reason Maximum check online fails reached 198784 mac 198784 bytes_out 0 198784 bytes_in 0 198784 station_ip 95.162.41.189 198784 port 9 198784 unique_id port 198786 username mosi 198786 kill_reason Another user logged on this global unique id 198786 mac 198786 bytes_out 0 198786 bytes_in 0 198786 station_ip 95.162.41.189 198786 port 23 198786 unique_id port 198789 username mosi 198789 kill_reason Another user logged on this global unique id 198789 mac 198789 bytes_out 0 198789 bytes_in 0 198789 station_ip 95.162.41.189 198789 port 23 198789 unique_id port 198794 username mammad 198794 unique_id port 198794 terminate_cause User-Request 198794 bytes_out 15069981 198794 bytes_in 307817365 198794 station_ip 2.183.250.161 198794 port 15729630 198794 nas_port_type Virtual 198794 remote_ip 5.5.5.255 198796 username farhad3 198796 mac 198796 bytes_out 0 198796 bytes_in 0 198796 station_ip 5.119.30.132 198796 port 9 198796 unique_id port 198796 remote_ip 10.8.0.46 198798 username rashidi4690 198798 mac 198798 bytes_out 0 198798 bytes_in 0 198798 station_ip 5.119.128.109 198798 port 10 198798 unique_id port 198798 remote_ip 10.8.0.158 198799 username barzegar8595 198799 mac 198799 bytes_out 0 198799 bytes_in 0 198799 station_ip 93.114.23.77 198799 port 22 198799 unique_id port 198799 remote_ip 10.8.1.50 198800 username barzegar 198800 kill_reason Another user logged on this global unique id 198800 mac 198800 bytes_out 0 198800 bytes_in 0 198800 station_ip 5.119.146.12 198800 port 9 198800 unique_id port 198802 username barzegar 198802 kill_reason Maximum check online fails reached 198802 mac 198802 bytes_out 0 198802 bytes_in 0 198802 station_ip 5.119.146.12 198802 port 9 198802 unique_id port 198804 username alihosseini1 198804 kill_reason Maximum check online fails reached 198804 mac 198804 bytes_out 0 198804 bytes_in 0 198804 station_ip 5.119.63.41 198804 port 9 198804 unique_id port 198810 username alihosseini1 198810 kill_reason Maximum check online fails reached 198810 mac 198810 bytes_out 0 198810 bytes_in 0 198810 station_ip 5.119.63.41 198810 port 9 198810 unique_id port 198813 username malekpoir 198813 kill_reason Another user logged on this global unique id 198813 mac 198813 bytes_out 0 198813 bytes_in 0 198813 station_ip 5.119.172.54 198813 port 22 198813 unique_id port 198815 username teymori5660 198815 kill_reason Maximum check online fails reached 198815 mac 198815 bytes_out 0 198815 bytes_in 0 198815 station_ip 5.119.180.12 198815 port 22 198815 unique_id port 198821 username rashidi4690 198821 kill_reason Another user logged on this global unique id 198821 mac 198821 bytes_out 0 198821 bytes_in 0 198821 station_ip 5.119.128.109 198821 port 16 198821 unique_id port 198824 username khalili2 198824 kill_reason Another user logged on this global unique id 198824 mac 198824 bytes_out 0 198824 bytes_in 0 198824 station_ip 5.120.50.102 198824 port 16 198824 unique_id port 198830 username khalili2 198792 username arash 198792 kill_reason Maximum check online fails reached 198792 mac 198792 bytes_out 0 198792 bytes_in 0 198792 station_ip 37.27.7.223 198792 port 9 198792 unique_id port 198793 username farhad3 198793 kill_reason Maximum check online fails reached 198793 mac 198793 bytes_out 0 198793 bytes_in 0 198793 station_ip 5.119.30.132 198793 port 23 198793 unique_id port 198797 username hamid.e 198797 kill_reason Maximum number of concurrent logins reached 198797 unique_id port 198797 bytes_out 0 198797 bytes_in 0 198797 station_ip 37.27.29.192 198797 port 15729642 198797 nas_port_type Virtual 198801 username arash 198801 mac 198801 bytes_out 1169507 198801 bytes_in 7233746 198801 station_ip 37.27.7.223 198801 port 15 198801 unique_id port 198801 remote_ip 10.8.0.162 198803 username alihosseini1 198803 kill_reason Another user logged on this global unique id 198803 mac 198803 bytes_out 0 198803 bytes_in 0 198803 station_ip 5.119.63.41 198803 port 9 198803 unique_id port 198805 username alihosseini1 198805 kill_reason Another user logged on this global unique id 198805 mac 198805 bytes_out 0 198805 bytes_in 0 198805 station_ip 5.119.63.41 198805 port 9 198805 unique_id port 198806 username barzegar 198806 kill_reason Another user logged on this global unique id 198806 mac 198806 bytes_out 0 198806 bytes_in 0 198806 station_ip 5.119.146.12 198806 port 22 198806 unique_id port 198807 username barzegar 198807 kill_reason Another user logged on this global unique id 198807 mac 198807 bytes_out 0 198807 bytes_in 0 198807 station_ip 5.119.146.12 198807 port 22 198807 unique_id port 198809 username alihosseini1 198809 kill_reason Maximum check online fails reached 198809 mac 198809 bytes_out 0 198809 bytes_in 0 198809 station_ip 5.119.63.41 198809 port 22 198809 unique_id port 198814 username teymori5660 198814 kill_reason Another user logged on this global unique id 198814 mac 198814 bytes_out 0 198814 bytes_in 0 198814 station_ip 5.119.180.12 198814 port 22 198814 unique_id port 198816 username kalantary6037 198816 kill_reason Another user logged on this global unique id 198816 mac 198816 bytes_out 0 198816 bytes_in 0 198816 station_ip 37.129.234.11 198816 port 9 198816 unique_id port 198817 username yarmohamadi7916 198817 mac 198817 bytes_out 0 198817 bytes_in 0 198817 station_ip 5.119.108.238 198817 port 21 198817 unique_id port 198817 remote_ip 10.8.1.154 198818 username kalantary6037 198818 kill_reason Maximum check online fails reached 198818 mac 198818 bytes_out 0 198818 bytes_in 0 198818 station_ip 37.129.234.11 198818 port 9 198818 unique_id port 198820 username hamid.e 198820 unique_id port 198820 terminate_cause Lost-Carrier 198820 bytes_out 6200482 198820 bytes_in 222782221 198820 station_ip 31.56.156.136 198820 port 15729637 198820 nas_port_type Virtual 198820 remote_ip 5.5.5.190 198822 username rashidi4690 198822 kill_reason Maximum check online fails reached 198822 mac 198822 bytes_out 0 198822 bytes_in 0 198822 station_ip 5.119.128.109 198822 port 16 198822 unique_id port 198825 username aminvpn 198825 mac 198825 bytes_out 1264094 198825 bytes_in 5076741 198825 station_ip 5.119.200.87 198825 port 23 198825 unique_id port 198825 remote_ip 10.8.1.130 198826 username sekonji0496 198826 kill_reason Another user logged on this global unique id 198826 mac 198826 bytes_out 0 198826 bytes_in 0 198826 station_ip 37.129.12.100 198826 port 9 198826 unique_id port 198828 username sekonji0496 198828 kill_reason Another user logged on this global unique id 198828 mac 198828 bytes_out 0 198828 bytes_in 0 198828 station_ip 37.129.12.100 198828 port 9 198828 unique_id port 198831 username majidsarmast 198823 mac 198823 bytes_out 0 198823 bytes_in 0 198823 station_ip 5.120.50.102 198823 port 29 198823 unique_id port 198827 username majidsarmast 198827 mac 198827 bytes_out 0 198827 bytes_in 0 198827 station_ip 83.123.174.159 198827 port 28 198827 unique_id port 198827 remote_ip 10.8.1.114 198829 username morteza4424 198829 kill_reason Another user logged on this global unique id 198829 mac 198829 bytes_out 0 198829 bytes_in 0 198829 station_ip 113.203.99.15 198829 port 9 198829 unique_id port 198834 username morteza4424 198834 kill_reason Maximum check online fails reached 198834 mac 198834 bytes_out 0 198834 bytes_in 0 198834 station_ip 113.203.99.15 198834 port 9 198834 unique_id port 198835 username yarmohamadi7916 198835 kill_reason Maximum check online fails reached 198835 mac 198835 bytes_out 0 198835 bytes_in 0 198835 station_ip 5.119.108.238 198835 port 16 198835 unique_id port 198842 username godarzi 198842 kill_reason Another user logged on this global unique id 198842 mac 198842 bytes_out 0 198842 bytes_in 0 198842 station_ip 5.119.26.194 198842 port 16 198842 unique_id port 198844 username godarzi 198844 kill_reason Another user logged on this global unique id 198844 mac 198844 bytes_out 0 198844 bytes_in 0 198844 station_ip 5.119.26.194 198844 port 16 198844 unique_id port 198848 username godarzi 198848 kill_reason Another user logged on this global unique id 198848 mac 198848 bytes_out 0 198848 bytes_in 0 198848 station_ip 5.119.26.194 198848 port 16 198848 unique_id port 198853 username motamedi9772 198853 kill_reason Another user logged on this global unique id 198853 mac 198853 bytes_out 0 198853 bytes_in 0 198853 station_ip 83.123.250.17 198853 port 9 198853 unique_id port 198854 username teymori5660 198854 kill_reason Another user logged on this global unique id 198854 mac 198854 bytes_out 0 198854 bytes_in 0 198854 station_ip 5.119.180.12 198854 port 16 198854 unique_id port 198862 username nilufarrajaei 198862 kill_reason Another user logged on this global unique id 198862 mac 198862 bytes_out 0 198862 bytes_in 0 198862 station_ip 83.123.217.34 198862 port 9 198862 unique_id port 198865 username nilufarrajaei 198865 kill_reason Another user logged on this global unique id 198865 mac 198865 bytes_out 0 198865 bytes_in 0 198865 station_ip 83.123.217.34 198865 port 9 198865 unique_id port 198867 username farhad3 198867 kill_reason Another user logged on this global unique id 198867 mac 198867 bytes_out 0 198867 bytes_in 0 198867 station_ip 5.119.30.132 198867 port 16 198867 unique_id port 198868 username ahmadi1 198868 kill_reason Another user logged on this global unique id 198868 mac 198868 bytes_out 0 198868 bytes_in 0 198868 station_ip 83.122.121.181 198868 port 9 198868 unique_id port 198871 username ahmadi1 198871 kill_reason Another user logged on this global unique id 198871 mac 198871 bytes_out 0 198871 bytes_in 0 198871 station_ip 83.122.121.181 198871 port 9 198871 unique_id port 198885 username barzegar8595 198885 kill_reason Another user logged on this global unique id 198885 mac 198885 bytes_out 0 198885 bytes_in 0 198885 station_ip 89.34.32.247 198885 port 16 198885 unique_id port 198886 username barzegar8595 198886 kill_reason Another user logged on this global unique id 198886 mac 198886 bytes_out 0 198886 bytes_in 0 198886 station_ip 89.34.32.247 198886 port 16 198886 unique_id port 198889 username barzegar8595 198889 kill_reason Another user logged on this global unique id 198889 mac 198889 bytes_out 0 198889 bytes_in 0 198889 station_ip 89.34.32.247 198889 port 9 198889 unique_id port 198890 username dortaj3792 198890 kill_reason Maximum check online fails reached 198890 mac 198890 bytes_out 0 198830 kill_reason Another user logged on this global unique id 198830 mac 198830 bytes_out 0 198830 bytes_in 0 198830 station_ip 5.120.50.102 198830 port 16 198830 unique_id port 198832 username majidsarmast 198832 kill_reason Another user logged on this global unique id 198832 mac 198832 bytes_out 0 198832 bytes_in 0 198832 station_ip 83.123.174.159 198832 port 16 198832 unique_id port 198838 username motamedi9772 198838 kill_reason Another user logged on this global unique id 198838 mac 198838 bytes_out 0 198838 bytes_in 0 198838 station_ip 83.123.250.17 198838 port 9 198838 unique_id port 198845 username kalantary6037 198845 kill_reason Another user logged on this global unique id 198845 mac 198845 bytes_out 0 198845 bytes_in 0 198845 station_ip 37.129.234.11 198845 port 9 198845 unique_id port 198849 username kalantary6037 198849 kill_reason Maximum check online fails reached 198849 mac 198849 bytes_out 0 198849 bytes_in 0 198849 station_ip 37.129.234.11 198849 port 9 198849 unique_id port 198851 username motamedi9772 198851 kill_reason Another user logged on this global unique id 198851 mac 198851 bytes_out 0 198851 bytes_in 0 198851 station_ip 83.123.250.17 198851 port 9 198851 unique_id port 198856 username motamedi9772 198856 kill_reason Maximum check online fails reached 198856 mac 198856 bytes_out 0 198856 bytes_in 0 198856 station_ip 83.123.250.17 198856 port 9 198856 unique_id port 198857 username motamedi9772 198857 kill_reason Another user logged on this global unique id 198857 mac 198857 bytes_out 0 198857 bytes_in 0 198857 station_ip 83.123.250.17 198857 port 9 198857 unique_id port 198858 username barzegar 198858 kill_reason Another user logged on this global unique id 198858 mac 198858 bytes_out 0 198858 bytes_in 0 198858 station_ip 5.119.146.12 198858 port 16 198858 unique_id port 198859 username motamedi9772 198859 kill_reason Maximum check online fails reached 198859 mac 198859 bytes_out 0 198859 bytes_in 0 198859 station_ip 83.123.250.17 198859 port 9 198859 unique_id port 198863 username nilufarrajaei 198863 kill_reason Another user logged on this global unique id 198863 mac 198863 bytes_out 0 198863 bytes_in 0 198863 station_ip 83.123.217.34 198863 port 9 198863 unique_id port 198869 username farhad3 198869 kill_reason Another user logged on this global unique id 198869 mac 198869 bytes_out 0 198869 bytes_in 0 198869 station_ip 5.119.30.132 198869 port 16 198869 unique_id port 198872 username ahmadi1 198872 kill_reason Another user logged on this global unique id 198872 mac 198872 bytes_out 0 198872 bytes_in 0 198872 station_ip 83.122.121.181 198872 port 9 198872 unique_id port 198873 username ahmadi1 198873 kill_reason Another user logged on this global unique id 198873 mac 198873 bytes_out 0 198873 bytes_in 0 198873 station_ip 83.122.121.181 198873 port 9 198873 unique_id port 198877 username bcboard 198877 kill_reason Relative expiration date has reached 198877 unique_id port 198877 bytes_out 0 198877 bytes_in 0 198877 station_ip 83.123.200.88 198877 port 15729645 198877 nas_port_type Virtual 198878 username barzegar8595 198878 kill_reason Another user logged on this global unique id 198878 mac 198878 bytes_out 0 198878 bytes_in 0 198878 station_ip 89.34.32.77 198878 port 9 198878 unique_id port 198879 username barzegar8595 198879 kill_reason Maximum check online fails reached 198879 mac 198879 bytes_out 0 198879 bytes_in 0 198879 station_ip 89.34.32.77 198879 port 9 198879 unique_id port 198883 username barzegar8595 198883 kill_reason Another user logged on this global unique id 198883 mac 198883 bytes_out 0 198883 bytes_in 0 198883 station_ip 89.34.32.77 198883 port 16 198883 unique_id port 198887 username dortaj3792 198831 kill_reason Another user logged on this global unique id 198831 mac 198831 bytes_out 0 198831 bytes_in 0 198831 station_ip 83.123.174.159 198831 port 16 198831 unique_id port 198833 username yarmohamadi7916 198833 kill_reason Another user logged on this global unique id 198833 mac 198833 bytes_out 0 198833 bytes_in 0 198833 station_ip 5.119.108.238 198833 port 16 198833 unique_id port 198836 username motamedi9772 198836 kill_reason Another user logged on this global unique id 198836 mac 198836 bytes_out 0 198836 bytes_in 0 198836 station_ip 83.123.250.17 198836 port 9 198836 unique_id port 198837 username aminvpn 198837 unique_id port 198837 terminate_cause User-Request 198837 bytes_out 9410625 198837 bytes_in 133345327 198837 station_ip 83.122.140.191 198837 port 15729641 198837 nas_port_type Virtual 198837 remote_ip 5.5.5.193 198839 username kalantary6037 198839 kill_reason Another user logged on this global unique id 198839 mac 198839 bytes_out 0 198839 bytes_in 0 198839 station_ip 37.129.234.11 198839 port 9 198839 unique_id port 198840 username godarzi 198840 kill_reason Another user logged on this global unique id 198840 mac 198840 bytes_out 0 198840 bytes_in 0 198840 station_ip 5.119.26.194 198840 port 16 198840 unique_id port 198841 username godarzi 198841 kill_reason Another user logged on this global unique id 198841 mac 198841 bytes_out 0 198841 bytes_in 0 198841 station_ip 5.119.26.194 198841 port 16 198841 unique_id port 198843 username godarzi 198843 kill_reason Another user logged on this global unique id 198843 mac 198843 bytes_out 0 198843 bytes_in 0 198843 station_ip 5.119.26.194 198843 port 16 198843 unique_id port 198846 username kalantary6037 198846 kill_reason Another user logged on this global unique id 198846 mac 198846 bytes_out 0 198846 bytes_in 0 198846 station_ip 37.129.234.11 198846 port 9 198846 unique_id port 198847 username godarzi 198847 kill_reason Another user logged on this global unique id 198847 mac 198847 bytes_out 0 198847 bytes_in 0 198847 station_ip 5.119.26.194 198847 port 16 198847 unique_id port 198850 username godarzi 198850 kill_reason Maximum check online fails reached 198850 mac 198850 bytes_out 0 198850 bytes_in 0 198850 station_ip 5.119.26.194 198850 port 16 198850 unique_id port 198852 username motamedi9772 198852 kill_reason Another user logged on this global unique id 198852 mac 198852 bytes_out 0 198852 bytes_in 0 198852 station_ip 83.123.250.17 198852 port 9 198852 unique_id port 198855 username teymori5660 198855 kill_reason Maximum check online fails reached 198855 mac 198855 bytes_out 0 198855 bytes_in 0 198855 station_ip 5.119.180.12 198855 port 16 198855 unique_id port 198860 username barzegar 198860 kill_reason Maximum check online fails reached 198860 mac 198860 bytes_out 0 198860 bytes_in 0 198860 station_ip 5.119.146.12 198860 port 16 198860 unique_id port 198861 username nilufarrajaei 198861 kill_reason Another user logged on this global unique id 198861 mac 198861 bytes_out 0 198861 bytes_in 0 198861 station_ip 83.123.217.34 198861 port 9 198861 unique_id port 198864 username nilufarrajaei 198864 kill_reason Another user logged on this global unique id 198864 mac 198864 bytes_out 0 198864 bytes_in 0 198864 station_ip 83.123.217.34 198864 port 9 198864 unique_id port 198866 username nilufarrajaei 198866 kill_reason Maximum check online fails reached 198866 mac 198866 bytes_out 0 198866 bytes_in 0 198866 station_ip 83.123.217.34 198866 port 9 198866 unique_id port 198870 username farhad3 198870 kill_reason Another user logged on this global unique id 198870 mac 198870 bytes_out 0 198870 bytes_in 0 198870 station_ip 5.119.30.132 198870 port 16 198870 unique_id port 198874 username aminvpn 198874 kill_reason Another user logged on this global unique id 198874 mac 198874 bytes_out 0 198874 bytes_in 0 198874 station_ip 5.119.200.87 198874 port 9 198874 unique_id port 198875 username farhad3 198875 kill_reason Maximum check online fails reached 198875 mac 198875 bytes_out 0 198875 bytes_in 0 198875 station_ip 5.119.30.132 198875 port 16 198875 unique_id port 198876 username aminvpn 198876 kill_reason Maximum check online fails reached 198876 mac 198876 bytes_out 0 198876 bytes_in 0 198876 station_ip 5.119.200.87 198876 port 9 198876 unique_id port 198880 username hatami 198880 kill_reason Another user logged on this global unique id 198880 mac 198880 bytes_out 0 198880 bytes_in 0 198880 station_ip 37.27.24.189 198880 port 16 198880 unique_id port 198881 username hatami 198881 kill_reason Maximum check online fails reached 198881 mac 198881 bytes_out 0 198881 bytes_in 0 198881 station_ip 37.27.24.189 198881 port 16 198881 unique_id port 198882 username barzegar8595 198882 kill_reason Another user logged on this global unique id 198882 mac 198882 bytes_out 0 198882 bytes_in 0 198882 station_ip 89.34.32.77 198882 port 9 198882 unique_id port 198884 username barzegar8595 198884 kill_reason Another user logged on this global unique id 198884 mac 198884 bytes_out 0 198884 bytes_in 0 198884 station_ip 89.34.32.77 198884 port 16 198884 unique_id port 198888 username barzegar8595 198888 kill_reason Another user logged on this global unique id 198888 mac 198888 bytes_out 0 198888 bytes_in 0 198888 station_ip 89.34.32.77 198888 port 9 198888 unique_id port 198891 username barzegar8595 198891 kill_reason Maximum check online fails reached 198891 mac 198891 bytes_out 0 198891 bytes_in 0 198891 station_ip 89.34.32.247 198891 port 9 198891 unique_id port 198894 username barzegar8595 198894 kill_reason Another user logged on this global unique id 198894 mac 198894 bytes_out 0 198894 bytes_in 0 198894 station_ip 89.34.32.247 198894 port 9 198894 unique_id port 198896 username dortaj3792 198896 kill_reason Another user logged on this global unique id 198896 mac 198896 bytes_out 0 198896 bytes_in 0 198896 station_ip 5.120.176.199 198896 port 10 198896 unique_id port 198898 username dortaj3792 198898 kill_reason Maximum check online fails reached 198898 mac 198898 bytes_out 0 198898 bytes_in 0 198898 station_ip 5.120.176.199 198898 port 10 198898 unique_id port 198901 username dortaj3792 198901 kill_reason Another user logged on this global unique id 198901 mac 198901 bytes_out 0 198901 bytes_in 0 198901 station_ip 5.120.176.199 198901 port 9 198901 unique_id port 198905 username dortaj3792 198905 kill_reason Another user logged on this global unique id 198905 mac 198905 bytes_out 0 198905 bytes_in 0 198905 station_ip 5.120.176.199 198905 port 21 198905 unique_id port 198906 username kalantary6037 198906 kill_reason Another user logged on this global unique id 198906 mac 198906 bytes_out 0 198906 bytes_in 0 198906 station_ip 37.129.185.67 198906 port 9 198906 unique_id port 198907 username dortaj3792 198907 kill_reason Another user logged on this global unique id 198907 mac 198907 bytes_out 0 198907 bytes_in 0 198907 station_ip 5.120.176.199 198907 port 21 198907 unique_id port 198908 username kalantary6037 198908 kill_reason Maximum check online fails reached 198908 mac 198908 bytes_out 0 198908 bytes_in 0 198908 station_ip 37.129.185.67 198908 port 9 198908 unique_id port 198911 username pourshad 198911 kill_reason Another user logged on this global unique id 198911 mac 198911 bytes_out 0 198911 bytes_in 0 198911 station_ip 5.120.240.173 198911 port 22 198911 unique_id port 198912 username mammad 198912 unique_id port 198912 terminate_cause User-Request 198887 kill_reason Another user logged on this global unique id 198887 mac 198887 bytes_out 0 198887 bytes_in 0 198887 station_ip 5.120.176.199 198887 port 16 198887 unique_id port 198893 username barzegar8595 198893 kill_reason Another user logged on this global unique id 198893 mac 198893 bytes_out 0 198893 bytes_in 0 198893 station_ip 89.34.32.247 198893 port 9 198893 unique_id port 198900 username dortaj3792 198900 kill_reason Another user logged on this global unique id 198900 mac 198900 bytes_out 0 198900 bytes_in 0 198900 station_ip 5.120.176.199 198900 port 9 198900 unique_id port 198903 username dortaj3792 198903 kill_reason Another user logged on this global unique id 198903 mac 198903 bytes_out 0 198903 bytes_in 0 198903 station_ip 5.120.176.199 198903 port 9 198903 unique_id port 198904 username dortaj3792 198904 kill_reason Maximum check online fails reached 198904 mac 198904 bytes_out 0 198904 bytes_in 0 198904 station_ip 5.120.176.199 198904 port 9 198904 unique_id port 198909 username nilufarrajaei 198909 kill_reason Another user logged on this global unique id 198909 mac 198909 bytes_out 0 198909 bytes_in 0 198909 station_ip 83.123.217.34 198909 port 9 198909 unique_id port 198910 username nilufarrajaei 198910 kill_reason Maximum check online fails reached 198910 mac 198910 bytes_out 0 198910 bytes_in 0 198910 station_ip 83.123.217.34 198910 port 9 198910 unique_id port 198913 username pourshad 198913 kill_reason Another user logged on this global unique id 198913 mac 198913 bytes_out 0 198913 bytes_in 0 198913 station_ip 5.120.240.173 198913 port 9 198913 unique_id port 198914 username pourshad 198914 kill_reason Maximum check online fails reached 198914 mac 198914 bytes_out 0 198914 bytes_in 0 198914 station_ip 5.120.240.173 198914 port 9 198914 unique_id port 198916 username shahruz 198916 kill_reason Another user logged on this global unique id 198916 mac 198916 bytes_out 0 198916 bytes_in 0 198916 station_ip 113.203.36.213 198916 port 9 198916 unique_id port 198918 username barzegar8595 198918 mac 198918 bytes_out 2201950 198918 bytes_in 20497687 198918 station_ip 89.34.32.247 198918 port 16 198918 unique_id port 198918 remote_ip 10.8.1.50 198920 username saeeddamghani 198920 kill_reason Another user logged on this global unique id 198920 mac 198920 bytes_out 0 198920 bytes_in 0 198920 station_ip 5.119.26.188 198920 port 16 198920 unique_id port 198921 username saeeddamghani 198921 kill_reason Maximum check online fails reached 198921 mac 198921 bytes_out 0 198921 bytes_in 0 198921 station_ip 5.119.26.188 198921 port 16 198921 unique_id port 198926 username shahruz 198926 kill_reason Maximum number of concurrent logins reached 198926 mac 198926 bytes_out 0 198926 bytes_in 0 198926 station_ip 113.203.36.213 198926 port 16 198926 unique_id port 198928 username shahruz 198928 kill_reason Maximum check online fails reached 198928 mac 198928 bytes_out 0 198928 bytes_in 0 198928 station_ip 113.203.36.213 198928 port 9 198928 unique_id port 198929 username saeeddamghani 198929 kill_reason Another user logged on this global unique id 198929 mac 198929 bytes_out 0 198929 bytes_in 0 198929 station_ip 5.215.167.229 198929 port 10 198929 unique_id port 198932 username dortaj3792 198932 mac 198932 bytes_out 479785 198932 bytes_in 1349859 198932 station_ip 5.120.176.199 198932 port 21 198932 unique_id port 198932 remote_ip 10.8.1.34 198933 username mosi 198933 mac 198933 bytes_out 0 198933 bytes_in 0 198933 station_ip 151.235.110.198 198933 port 16 198933 unique_id port 198933 remote_ip 10.8.1.118 198940 username sabaghnezhad 198940 kill_reason Another user logged on this global unique id 198940 mac 198890 bytes_in 0 198890 station_ip 5.120.176.199 198890 port 16 198890 unique_id port 198892 username barzegar8595 198892 kill_reason Another user logged on this global unique id 198892 mac 198892 bytes_out 0 198892 bytes_in 0 198892 station_ip 89.34.32.247 198892 port 9 198892 unique_id port 198895 username barzegar8595 198895 kill_reason Another user logged on this global unique id 198895 mac 198895 bytes_out 0 198895 bytes_in 0 198895 station_ip 89.34.32.247 198895 port 9 198895 unique_id port 198897 username dortaj3792 198897 mac 198897 bytes_out 1765 198897 bytes_in 4480 198897 station_ip 5.120.176.199 198897 port 9 198897 unique_id port 198897 remote_ip 10.8.0.30 198899 username dortaj3792 198899 kill_reason Another user logged on this global unique id 198899 mac 198899 bytes_out 0 198899 bytes_in 0 198899 station_ip 5.120.176.199 198899 port 9 198899 unique_id port 198902 username dortaj3792 198902 kill_reason Another user logged on this global unique id 198902 mac 198902 bytes_out 0 198902 bytes_in 0 198902 station_ip 5.120.176.199 198902 port 9 198902 unique_id port 198917 username shahruz 198917 kill_reason Another user logged on this global unique id 198917 mac 198917 bytes_out 0 198917 bytes_in 0 198917 station_ip 113.203.36.213 198917 port 9 198917 unique_id port 198923 username houshang 198923 mac 198923 bytes_out 1361402 198923 bytes_in 3229749 198923 station_ip 5.120.84.175 198923 port 22 198923 unique_id port 198923 remote_ip 10.8.1.134 198927 username shahruz 198927 kill_reason Maximum check online fails reached 198927 mac 198927 bytes_out 0 198927 bytes_in 0 198927 station_ip 113.203.36.213 198927 port 10 198927 unique_id port 198930 username saeeddamghani 198930 kill_reason Another user logged on this global unique id 198930 mac 198930 bytes_out 0 198930 bytes_in 0 198930 station_ip 5.215.167.229 198930 port 10 198930 unique_id port 198936 username sabaghnezhad 198936 mac 198936 bytes_out 1396942 198936 bytes_in 3413056 198936 station_ip 83.122.98.225 198936 port 14 198936 unique_id port 198936 remote_ip 10.8.0.18 198938 username sabaghnezhad 198938 kill_reason Another user logged on this global unique id 198938 mac 198938 bytes_out 0 198938 bytes_in 0 198938 station_ip 83.122.98.225 198938 port 10 198938 unique_id port 198941 username sabaghnezhad 198941 kill_reason Another user logged on this global unique id 198941 mac 198941 bytes_out 0 198941 bytes_in 0 198941 station_ip 83.122.98.225 198941 port 10 198941 unique_id port 198943 username sabaghnezhad 198943 kill_reason Maximum check online fails reached 198943 mac 198943 bytes_out 0 198943 bytes_in 0 198943 station_ip 83.122.98.225 198943 port 21 198943 unique_id port 198944 username mosi 198944 mac 198944 bytes_out 1311897 198944 bytes_in 8808222 198944 station_ip 151.235.110.198 198944 port 15 198944 unique_id port 198944 remote_ip 10.8.0.106 198949 username mosi 198949 mac 198949 bytes_out 16007 198949 bytes_in 36416 198949 station_ip 89.47.150.136 198949 port 23 198949 unique_id port 198949 remote_ip 10.8.1.118 198950 username mosi 198950 kill_reason Another user logged on this global unique id 198950 mac 198950 bytes_out 0 198950 bytes_in 0 198950 station_ip 89.47.150.136 198950 port 23 198950 unique_id port 198953 username meysam 198953 kill_reason Another user logged on this global unique id 198953 mac 198953 bytes_out 0 198953 bytes_in 0 198953 station_ip 188.158.50.76 198953 port 22 198953 unique_id port 198954 username meysam 198954 kill_reason Another user logged on this global unique id 198954 mac 198954 bytes_out 0 198954 bytes_in 0 198954 station_ip 188.158.50.76 198954 port 22 198912 bytes_out 4127939 198912 bytes_in 84236263 198912 station_ip 2.183.251.211 198912 port 15729644 198912 nas_port_type Virtual 198912 remote_ip 5.5.5.255 198915 username pourshad 198915 kill_reason Maximum check online fails reached 198915 mac 198915 bytes_out 0 198915 bytes_in 0 198915 station_ip 5.120.240.173 198915 port 22 198915 unique_id port 198919 username aminvpn 198919 unique_id port 198919 terminate_cause User-Request 198919 bytes_out 1807073 198919 bytes_in 43810072 198919 station_ip 83.122.140.191 198919 port 15729648 198919 nas_port_type Virtual 198919 remote_ip 5.5.5.193 198922 username shahruz 198922 mac 198922 bytes_out 0 198922 bytes_in 0 198922 station_ip 113.203.36.213 198922 port 9 198922 unique_id port 198922 remote_ip 10.8.0.22 198924 username shahruz 198924 kill_reason Another user logged on this global unique id 198924 mac 198924 bytes_out 0 198924 bytes_in 0 198924 station_ip 113.203.36.213 198924 port 10 198924 unique_id port 198925 username shahruz 198925 kill_reason Maximum number of concurrent logins reached 198925 mac 198925 bytes_out 0 198925 bytes_in 0 198925 station_ip 113.203.36.213 198925 port 16 198925 unique_id port 198931 username saeeddamghani 198931 mac 198931 bytes_out 0 198931 bytes_in 0 198931 station_ip 5.215.167.229 198931 port 10 198931 unique_id port 198931 remote_ip 10.8.0.26 198934 username dortaj3792 198934 kill_reason Another user logged on this global unique id 198934 mac 198934 bytes_out 0 198934 bytes_in 0 198934 station_ip 5.120.176.199 198934 port 16 198934 unique_id port 198934 remote_ip 10.8.1.34 198935 username kharazmi2920 198935 mac 198935 bytes_out 860756 198935 bytes_in 7258093 198935 station_ip 83.123.28.86 198935 port 10 198935 unique_id port 198935 remote_ip 10.8.0.34 198937 username sabaghnezhad 198937 kill_reason Another user logged on this global unique id 198937 mac 198937 bytes_out 0 198937 bytes_in 0 198937 station_ip 83.122.98.225 198937 port 10 198937 unique_id port 198939 username sabaghnezhad 198939 kill_reason Another user logged on this global unique id 198939 mac 198939 bytes_out 0 198939 bytes_in 0 198939 station_ip 83.122.98.225 198939 port 10 198939 unique_id port 198945 username aminvpn 198945 unique_id port 198945 terminate_cause User-Request 198945 bytes_out 2966830 198945 bytes_in 83722401 198945 station_ip 83.122.140.191 198945 port 15729649 198945 nas_port_type Virtual 198945 remote_ip 5.5.5.193 198947 username kalantary6037 198947 kill_reason Another user logged on this global unique id 198947 mac 198947 bytes_out 0 198947 bytes_in 0 198947 station_ip 37.129.236.79 198947 port 14 198947 unique_id port 198948 username kalantary6037 198948 kill_reason Maximum check online fails reached 198948 mac 198948 bytes_out 0 198948 bytes_in 0 198948 station_ip 37.129.236.79 198948 port 14 198948 unique_id port 198951 username mosi 198951 kill_reason Maximum check online fails reached 198951 mac 198951 bytes_out 0 198951 bytes_in 0 198951 station_ip 89.47.150.136 198951 port 23 198951 unique_id port 198955 username meysam 198955 kill_reason Another user logged on this global unique id 198955 mac 198955 bytes_out 0 198955 bytes_in 0 198955 station_ip 188.158.50.76 198955 port 22 198955 unique_id port 198956 username meysam 198956 kill_reason Another user logged on this global unique id 198956 mac 198956 bytes_out 0 198956 bytes_in 0 198956 station_ip 188.158.50.76 198956 port 14 198956 unique_id port 198960 username meysam 198960 kill_reason Another user logged on this global unique id 198960 mac 198960 bytes_out 0 198960 bytes_in 0 198960 station_ip 188.158.50.76 198960 port 14 198960 unique_id port 198963 username meysam 198940 bytes_out 0 198940 bytes_in 0 198940 station_ip 83.122.98.225 198940 port 10 198940 unique_id port 198942 username sabaghnezhad 198942 kill_reason Maximum check online fails reached 198942 mac 198942 bytes_out 0 198942 bytes_in 0 198942 station_ip 83.122.98.225 198942 port 10 198942 unique_id port 198946 username mohammadjavad 198946 mac 198946 bytes_out 1237223 198946 bytes_in 15025478 198946 station_ip 83.123.27.44 198946 port 16 198946 unique_id port 198946 remote_ip 10.8.0.58 198952 username meysam 198952 mac 198952 bytes_out 1488142 198952 bytes_in 29935539 198952 station_ip 188.158.50.76 198952 port 22 198952 unique_id port 198952 remote_ip 10.8.1.30 198957 username meysam 198957 kill_reason Another user logged on this global unique id 198957 mac 198957 bytes_out 0 198957 bytes_in 0 198957 station_ip 188.158.50.76 198957 port 14 198957 unique_id port 198961 username meysam 198961 kill_reason Another user logged on this global unique id 198961 mac 198961 bytes_out 0 198961 bytes_in 0 198961 station_ip 188.158.50.76 198961 port 22 198961 unique_id port 198964 username meysam 198964 kill_reason Another user logged on this global unique id 198964 mac 198964 bytes_out 0 198964 bytes_in 0 198964 station_ip 188.158.50.76 198964 port 22 198964 unique_id port 198967 username meysam 198967 kill_reason Maximum check online fails reached 198967 mac 198967 bytes_out 0 198967 bytes_in 0 198967 station_ip 188.158.50.76 198967 port 22 198967 unique_id port 198969 username kharazmi2920 198969 kill_reason Another user logged on this global unique id 198969 mac 198969 bytes_out 0 198969 bytes_in 0 198969 station_ip 83.123.28.86 198969 port 14 198969 unique_id port 198977 username barzegar8595 198977 kill_reason Another user logged on this global unique id 198977 mac 198977 bytes_out 0 198977 bytes_in 0 198977 station_ip 89.32.96.50 198977 port 16 198977 unique_id port 198980 username barzegar8595 198980 kill_reason Another user logged on this global unique id 198980 mac 198980 bytes_out 0 198980 bytes_in 0 198980 station_ip 89.32.96.50 198980 port 14 198980 unique_id port 198982 username barzegar8595 198982 kill_reason Another user logged on this global unique id 198982 mac 198982 bytes_out 0 198982 bytes_in 0 198982 station_ip 89.32.96.50 198982 port 16 198982 unique_id port 198983 username barzegar8595 198983 kill_reason Another user logged on this global unique id 198983 mac 198983 bytes_out 0 198983 bytes_in 0 198983 station_ip 89.32.96.50 198983 port 16 198983 unique_id port 198986 username barzegar8595 198986 kill_reason Another user logged on this global unique id 198986 mac 198986 bytes_out 0 198986 bytes_in 0 198986 station_ip 89.32.96.50 198986 port 16 198986 unique_id port 198990 username esmaeilkazemi 198990 kill_reason Another user logged on this global unique id 198990 mac 198990 bytes_out 0 198990 bytes_in 0 198990 station_ip 83.123.49.36 198990 port 14 198990 unique_id port 198995 username rajaei 198995 kill_reason Another user logged on this global unique id 198995 mac 198995 bytes_out 0 198995 bytes_in 0 198995 station_ip 89.47.73.88 198995 port 16 198995 unique_id port 198996 username rajaei 198996 kill_reason Another user logged on this global unique id 198996 mac 198996 bytes_out 0 198996 bytes_in 0 198996 station_ip 89.47.73.88 198996 port 16 198996 unique_id port 198999 username esmaeilkazemi 198999 kill_reason Another user logged on this global unique id 198999 mac 198999 bytes_out 0 198999 bytes_in 0 198999 station_ip 83.123.49.36 198999 port 14 198999 unique_id port 199003 username esmaeilkazemi 199003 kill_reason Another user logged on this global unique id 199003 mac 199003 bytes_out 0 199003 bytes_in 0 198954 unique_id port 198958 username meysam 198958 kill_reason Another user logged on this global unique id 198958 mac 198958 bytes_out 0 198958 bytes_in 0 198958 station_ip 188.158.50.76 198958 port 14 198958 unique_id port 198959 username meysam 198959 kill_reason Another user logged on this global unique id 198959 mac 198959 bytes_out 0 198959 bytes_in 0 198959 station_ip 188.158.50.76 198959 port 14 198959 unique_id port 198962 username meysam 198962 kill_reason Another user logged on this global unique id 198962 mac 198962 bytes_out 0 198962 bytes_in 0 198962 station_ip 188.158.50.76 198962 port 22 198962 unique_id port 198971 username meysam 198971 kill_reason Another user logged on this global unique id 198971 mac 198971 bytes_out 0 198971 bytes_in 0 198971 station_ip 188.158.50.76 198971 port 22 198971 unique_id port 198972 username meysam 198972 kill_reason Maximum check online fails reached 198972 mac 198972 bytes_out 0 198972 bytes_in 0 198972 station_ip 188.158.50.76 198972 port 22 198972 unique_id port 198975 username pourshad 198975 kill_reason Another user logged on this global unique id 198975 mac 198975 bytes_out 0 198975 bytes_in 0 198975 station_ip 5.120.240.173 198975 port 16 198975 unique_id port 198978 username barzegar8595 198978 kill_reason Another user logged on this global unique id 198978 mac 198978 bytes_out 0 198978 bytes_in 0 198978 station_ip 89.32.96.50 198978 port 16 198978 unique_id port 198984 username barzegar8595 198984 kill_reason Another user logged on this global unique id 198984 mac 198984 bytes_out 0 198984 bytes_in 0 198984 station_ip 89.32.96.50 198984 port 16 198984 unique_id port 198987 username esmaeilkazemi 198987 kill_reason Another user logged on this global unique id 198987 mac 198987 bytes_out 0 198987 bytes_in 0 198987 station_ip 83.123.49.36 198987 port 14 198987 unique_id port 198991 username esmaeilkazemi 198991 kill_reason Another user logged on this global unique id 198991 mac 198991 bytes_out 0 198991 bytes_in 0 198991 station_ip 83.123.49.36 198991 port 14 198991 unique_id port 198993 username esmaeilkazemi 198993 kill_reason Another user logged on this global unique id 198993 mac 198993 bytes_out 0 198993 bytes_in 0 198993 station_ip 83.123.49.36 198993 port 14 198993 unique_id port 198997 username barzegar8595 198997 kill_reason Another user logged on this global unique id 198997 mac 198997 bytes_out 0 198997 bytes_in 0 198997 station_ip 94.24.83.126 198997 port 16 198997 unique_id port 199000 username esmaeilkazemi 199000 kill_reason Another user logged on this global unique id 199000 mac 199000 bytes_out 0 199000 bytes_in 0 199000 station_ip 83.123.49.36 199000 port 14 199000 unique_id port 199004 username barzegar8595 199004 kill_reason Another user logged on this global unique id 199004 mac 199004 bytes_out 0 199004 bytes_in 0 199004 station_ip 94.24.83.126 199004 port 16 199004 unique_id port 199007 username barzegar8595 199007 kill_reason Another user logged on this global unique id 199007 mac 199007 bytes_out 0 199007 bytes_in 0 199007 station_ip 94.24.83.126 199007 port 14 199007 unique_id port 199011 username barzegar8595 199011 kill_reason Maximum check online fails reached 199011 mac 199011 bytes_out 0 199011 bytes_in 0 199011 station_ip 94.24.83.126 199011 port 14 199011 unique_id port 199013 username meysam 199013 kill_reason Another user logged on this global unique id 199013 mac 199013 bytes_out 0 199013 bytes_in 0 199013 station_ip 188.158.50.76 199013 port 16 199013 unique_id port 199016 username rajaei 199016 kill_reason Another user logged on this global unique id 199016 mac 199016 bytes_out 0 199016 bytes_in 0 199016 station_ip 89.47.73.88 199016 port 16 199016 unique_id port 198963 kill_reason Another user logged on this global unique id 198963 mac 198963 bytes_out 0 198963 bytes_in 0 198963 station_ip 188.158.50.76 198963 port 22 198963 unique_id port 198965 username meysam 198965 kill_reason Maximum check online fails reached 198965 mac 198965 bytes_out 0 198965 bytes_in 0 198965 station_ip 188.158.50.76 198965 port 14 198965 unique_id port 198966 username kharazmi2920 198966 kill_reason Another user logged on this global unique id 198966 mac 198966 bytes_out 0 198966 bytes_in 0 198966 station_ip 83.123.28.86 198966 port 14 198966 unique_id port 198968 username kharazmi2920 198968 kill_reason Another user logged on this global unique id 198968 mac 198968 bytes_out 0 198968 bytes_in 0 198968 station_ip 83.123.28.86 198968 port 14 198968 unique_id port 198970 username kharazmi2920 198970 kill_reason Maximum check online fails reached 198970 mac 198970 bytes_out 0 198970 bytes_in 0 198970 station_ip 83.123.28.86 198970 port 14 198970 unique_id port 198973 username pourshad 198973 kill_reason Another user logged on this global unique id 198973 mac 198973 bytes_out 0 198973 bytes_in 0 198973 station_ip 5.120.240.173 198973 port 16 198973 unique_id port 198974 username pourshad 198974 kill_reason Another user logged on this global unique id 198974 mac 198974 bytes_out 0 198974 bytes_in 0 198974 station_ip 5.120.240.173 198974 port 14 198974 unique_id port 198976 username barzegar8595 198976 kill_reason Another user logged on this global unique id 198976 mac 198976 bytes_out 0 198976 bytes_in 0 198976 station_ip 89.32.96.50 198976 port 16 198976 unique_id port 198979 username pourshad 198979 kill_reason Maximum check online fails reached 198979 mac 198979 bytes_out 0 198979 bytes_in 0 198979 station_ip 5.120.240.173 198979 port 14 198979 unique_id port 198981 username barzegar8595 198981 kill_reason Maximum check online fails reached 198981 mac 198981 bytes_out 0 198981 bytes_in 0 198981 station_ip 89.32.96.50 198981 port 16 198981 unique_id port 198985 username barzegar8595 198985 kill_reason Maximum check online fails reached 198985 mac 198985 bytes_out 0 198985 bytes_in 0 198985 station_ip 89.32.96.50 198985 port 14 198985 unique_id port 198988 username barzegar8595 198988 kill_reason Another user logged on this global unique id 198988 mac 198988 bytes_out 0 198988 bytes_in 0 198988 station_ip 89.32.96.50 198988 port 16 198988 unique_id port 198989 username esmaeilkazemi 198989 kill_reason Another user logged on this global unique id 198989 mac 198989 bytes_out 0 198989 bytes_in 0 198989 station_ip 83.123.49.36 198989 port 14 198989 unique_id port 198992 username mammad 198992 unique_id port 198992 terminate_cause Lost-Carrier 198992 bytes_out 1099688 198992 bytes_in 11476085 198992 station_ip 5.233.76.85 198992 port 15729651 198992 nas_port_type Virtual 198992 remote_ip 5.5.5.169 198994 username barzegar8595 198994 kill_reason Another user logged on this global unique id 198994 mac 198994 bytes_out 0 198994 bytes_in 0 198994 station_ip 89.32.96.50 198994 port 16 198994 unique_id port 198998 username esmaeilkazemi 198998 kill_reason Another user logged on this global unique id 198998 mac 198998 bytes_out 0 198998 bytes_in 0 198998 station_ip 83.123.49.36 198998 port 14 198998 unique_id port 199001 username rajaei 199001 kill_reason Another user logged on this global unique id 199001 mac 199001 bytes_out 0 199001 bytes_in 0 199001 station_ip 89.47.73.88 199001 port 14 199001 unique_id port 199002 username rajaei 199002 kill_reason Another user logged on this global unique id 199002 mac 199002 bytes_out 0 199002 bytes_in 0 199002 station_ip 89.47.73.88 199002 port 14 199002 unique_id port 199005 username barzegar8595 199003 station_ip 83.123.49.36 199003 port 14 199003 unique_id port 199006 username esmaeilkazemi 199006 kill_reason Another user logged on this global unique id 199006 mac 199006 bytes_out 0 199006 bytes_in 0 199006 station_ip 83.123.49.36 199006 port 14 199006 unique_id port 199009 username meysam 199009 kill_reason Another user logged on this global unique id 199009 mac 199009 bytes_out 0 199009 bytes_in 0 199009 station_ip 188.158.50.76 199009 port 16 199009 unique_id port 199010 username meysam 199010 kill_reason Another user logged on this global unique id 199010 mac 199010 bytes_out 0 199010 bytes_in 0 199010 station_ip 188.158.50.76 199010 port 16 199010 unique_id port 199012 username meysam 199012 kill_reason Another user logged on this global unique id 199012 mac 199012 bytes_out 0 199012 bytes_in 0 199012 station_ip 188.158.50.76 199012 port 16 199012 unique_id port 199015 username meysam 199015 kill_reason Another user logged on this global unique id 199015 mac 199015 bytes_out 0 199015 bytes_in 0 199015 station_ip 188.158.50.76 199015 port 14 199015 unique_id port 199018 username meysam 199018 kill_reason Another user logged on this global unique id 199018 mac 199018 bytes_out 0 199018 bytes_in 0 199018 station_ip 188.158.50.76 199018 port 16 199018 unique_id port 199021 username meysam 199021 kill_reason Another user logged on this global unique id 199021 mac 199021 bytes_out 0 199021 bytes_in 0 199021 station_ip 188.158.50.76 199021 port 16 199021 unique_id port 199022 username meysam 199022 kill_reason Another user logged on this global unique id 199022 mac 199022 bytes_out 0 199022 bytes_in 0 199022 station_ip 188.158.50.76 199022 port 16 199022 unique_id port 199025 username meysam 199025 kill_reason Another user logged on this global unique id 199025 mac 199025 bytes_out 0 199025 bytes_in 0 199025 station_ip 188.158.50.76 199025 port 16 199025 unique_id port 199028 username meysam 199028 kill_reason Maximum check online fails reached 199028 mac 199028 bytes_out 0 199028 bytes_in 0 199028 station_ip 188.158.50.76 199028 port 14 199028 unique_id port 199031 username meysam 199031 kill_reason Another user logged on this global unique id 199031 mac 199031 bytes_out 0 199031 bytes_in 0 199031 station_ip 188.158.50.76 199031 port 16 199031 unique_id port 199036 username shahruz 199036 kill_reason Another user logged on this global unique id 199036 mac 199036 bytes_out 0 199036 bytes_in 0 199036 station_ip 113.203.36.213 199036 port 14 199036 unique_id port 199039 username shahruz 199039 kill_reason Another user logged on this global unique id 199039 mac 199039 bytes_out 0 199039 bytes_in 0 199039 station_ip 113.203.36.213 199039 port 14 199039 unique_id port 199042 username shahruz 199042 kill_reason Another user logged on this global unique id 199042 mac 199042 bytes_out 0 199042 bytes_in 0 199042 station_ip 113.203.36.213 199042 port 14 199042 unique_id port 199045 username shahruz 199045 kill_reason Maximum check online fails reached 199045 mac 199045 bytes_out 0 199045 bytes_in 0 199045 station_ip 113.203.36.213 199045 port 14 199045 unique_id port 199047 username barzegar8595 199047 kill_reason Maximum check online fails reached 199047 mac 199047 bytes_out 0 199047 bytes_in 0 199047 station_ip 46.225.215.43 199047 port 16 199047 unique_id port 199048 username sekonji0496 199048 kill_reason Another user logged on this global unique id 199048 mac 199048 bytes_out 0 199048 bytes_in 0 199048 station_ip 83.122.201.145 199048 port 14 199048 unique_id port 199049 username sekonji0496 199049 kill_reason Another user logged on this global unique id 199049 mac 199049 bytes_out 0 199049 bytes_in 0 199049 station_ip 83.122.201.145 199005 kill_reason Another user logged on this global unique id 199005 mac 199005 bytes_out 0 199005 bytes_in 0 199005 station_ip 94.24.83.126 199005 port 16 199005 unique_id port 199008 username barzegar8595 199008 kill_reason Another user logged on this global unique id 199008 mac 199008 bytes_out 0 199008 bytes_in 0 199008 station_ip 94.24.83.126 199008 port 16 199008 unique_id port 199014 username rajaei 199014 kill_reason Another user logged on this global unique id 199014 mac 199014 bytes_out 0 199014 bytes_in 0 199014 station_ip 89.47.73.88 199014 port 16 199014 unique_id port 199017 username meysam 199017 kill_reason Another user logged on this global unique id 199017 mac 199017 bytes_out 0 199017 bytes_in 0 199017 station_ip 188.158.50.76 199017 port 16 199017 unique_id port 199020 username rajaei 199020 kill_reason Another user logged on this global unique id 199020 mac 199020 bytes_out 0 199020 bytes_in 0 199020 station_ip 89.47.73.88 199020 port 16 199020 unique_id port 199024 username barzegar8595 199024 kill_reason Another user logged on this global unique id 199024 mac 199024 bytes_out 0 199024 bytes_in 0 199024 station_ip 94.24.83.126 199024 port 16 199024 unique_id port 199027 username barzegar8595 199027 kill_reason Another user logged on this global unique id 199027 mac 199027 bytes_out 0 199027 bytes_in 0 199027 station_ip 94.24.83.126 199027 port 16 199027 unique_id port 199029 username barzegar8595 199029 kill_reason Another user logged on this global unique id 199029 mac 199029 bytes_out 0 199029 bytes_in 0 199029 station_ip 94.24.83.126 199029 port 16 199029 unique_id port 199032 username meysam 199032 kill_reason Another user logged on this global unique id 199032 mac 199032 bytes_out 0 199032 bytes_in 0 199032 station_ip 188.158.50.76 199032 port 16 199032 unique_id port 199033 username arash 199033 kill_reason Another user logged on this global unique id 199033 mac 199033 bytes_out 0 199033 bytes_in 0 199033 station_ip 37.27.7.223 199033 port 14 199033 unique_id port 199034 username arash 199034 kill_reason Another user logged on this global unique id 199034 mac 199034 bytes_out 0 199034 bytes_in 0 199034 station_ip 37.27.7.223 199034 port 14 199034 unique_id port 199037 username shahruz 199037 kill_reason Another user logged on this global unique id 199037 mac 199037 bytes_out 0 199037 bytes_in 0 199037 station_ip 113.203.36.213 199037 port 14 199037 unique_id port 199040 username shahruz 199040 kill_reason Another user logged on this global unique id 199040 mac 199040 bytes_out 0 199040 bytes_in 0 199040 station_ip 113.203.36.213 199040 port 14 199040 unique_id port 199043 username shahruz 199043 kill_reason Another user logged on this global unique id 199043 mac 199043 bytes_out 0 199043 bytes_in 0 199043 station_ip 113.203.36.213 199043 port 14 199043 unique_id port 199052 username sekonji0496 199052 kill_reason Another user logged on this global unique id 199052 mac 199052 bytes_out 0 199052 bytes_in 0 199052 station_ip 83.122.201.145 199052 port 14 199052 unique_id port 199057 username meysam 199057 kill_reason Another user logged on this global unique id 199057 mac 199057 bytes_out 0 199057 bytes_in 0 199057 station_ip 188.158.50.76 199057 port 14 199057 unique_id port 199059 username meysam 199059 kill_reason Another user logged on this global unique id 199059 mac 199059 bytes_out 0 199059 bytes_in 0 199059 station_ip 188.158.50.76 199059 port 14 199059 unique_id port 199063 username meysam 199063 kill_reason Another user logged on this global unique id 199063 mac 199063 bytes_out 0 199063 bytes_in 0 199063 station_ip 188.158.50.76 199063 port 14 199063 unique_id port 199064 username meysam 199064 kill_reason Maximum check online fails reached 199019 username rajaei 199019 kill_reason Another user logged on this global unique id 199019 mac 199019 bytes_out 0 199019 bytes_in 0 199019 station_ip 89.47.73.88 199019 port 16 199019 unique_id port 199023 username barzegar8595 199023 kill_reason Another user logged on this global unique id 199023 mac 199023 bytes_out 0 199023 bytes_in 0 199023 station_ip 94.24.83.126 199023 port 16 199023 unique_id port 199026 username meysam 199026 kill_reason Another user logged on this global unique id 199026 mac 199026 bytes_out 0 199026 bytes_in 0 199026 station_ip 188.158.50.76 199026 port 16 199026 unique_id port 199030 username meysam 199030 kill_reason Another user logged on this global unique id 199030 mac 199030 bytes_out 0 199030 bytes_in 0 199030 station_ip 188.158.50.76 199030 port 16 199030 unique_id port 199035 username shahruz 199035 kill_reason Another user logged on this global unique id 199035 mac 199035 bytes_out 0 199035 bytes_in 0 199035 station_ip 113.203.36.213 199035 port 14 199035 unique_id port 199038 username meysam 199038 kill_reason Maximum check online fails reached 199038 mac 199038 bytes_out 0 199038 bytes_in 0 199038 station_ip 188.158.50.76 199038 port 16 199038 unique_id port 199041 username shahruz 199041 kill_reason Another user logged on this global unique id 199041 mac 199041 bytes_out 0 199041 bytes_in 0 199041 station_ip 113.203.36.213 199041 port 14 199041 unique_id port 199044 username shahruz 199044 kill_reason Another user logged on this global unique id 199044 mac 199044 bytes_out 0 199044 bytes_in 0 199044 station_ip 113.203.36.213 199044 port 14 199044 unique_id port 199046 username barzegar8595 199046 kill_reason Another user logged on this global unique id 199046 mac 199046 bytes_out 0 199046 bytes_in 0 199046 station_ip 46.225.215.43 199046 port 16 199046 unique_id port 199050 username sekonji0496 199050 kill_reason Another user logged on this global unique id 199050 mac 199050 bytes_out 0 199050 bytes_in 0 199050 station_ip 83.122.201.145 199050 port 14 199050 unique_id port 199051 username sekonji0496 199051 kill_reason Another user logged on this global unique id 199051 mac 199051 bytes_out 0 199051 bytes_in 0 199051 station_ip 83.122.201.145 199051 port 14 199051 unique_id port 199054 username sekonji0496 199054 kill_reason Another user logged on this global unique id 199054 mac 199054 bytes_out 0 199054 bytes_in 0 199054 station_ip 83.122.201.145 199054 port 14 199054 unique_id port 199056 username sekonji0496 199056 kill_reason Another user logged on this global unique id 199056 mac 199056 bytes_out 0 199056 bytes_in 0 199056 station_ip 83.122.201.145 199056 port 14 199056 unique_id port 199058 username meysam 199058 kill_reason Another user logged on this global unique id 199058 mac 199058 bytes_out 0 199058 bytes_in 0 199058 station_ip 188.158.50.76 199058 port 14 199058 unique_id port 199061 username meysam 199061 kill_reason Another user logged on this global unique id 199061 mac 199061 bytes_out 0 199061 bytes_in 0 199061 station_ip 188.158.50.76 199061 port 16 199061 unique_id port 199062 username meysam 199062 kill_reason Another user logged on this global unique id 199062 mac 199062 bytes_out 0 199062 bytes_in 0 199062 station_ip 188.158.50.76 199062 port 14 199062 unique_id port 199065 username meysam 199065 kill_reason Maximum check online fails reached 199065 mac 199065 bytes_out 0 199065 bytes_in 0 199065 station_ip 188.158.50.76 199065 port 16 199065 unique_id port 199069 username morteza4424 199069 kill_reason Another user logged on this global unique id 199069 mac 199069 bytes_out 0 199069 bytes_in 0 199069 station_ip 113.203.9.123 199069 port 14 199069 unique_id port 199074 username malekpoir 199049 port 14 199049 unique_id port 199053 username sekonji0496 199053 kill_reason Another user logged on this global unique id 199053 mac 199053 bytes_out 0 199053 bytes_in 0 199053 station_ip 83.122.201.145 199053 port 14 199053 unique_id port 199055 username meysam 199055 kill_reason Another user logged on this global unique id 199055 mac 199055 bytes_out 0 199055 bytes_in 0 199055 station_ip 188.158.50.76 199055 port 16 199055 unique_id port 199060 username meysam 199060 kill_reason Maximum check online fails reached 199060 mac 199060 bytes_out 0 199060 bytes_in 0 199060 station_ip 188.158.50.76 199060 port 16 199060 unique_id port 199066 username morteza4424 199066 kill_reason Another user logged on this global unique id 199066 mac 199066 bytes_out 0 199066 bytes_in 0 199066 station_ip 113.203.9.123 199066 port 14 199066 unique_id port 199068 username morteza4424 199068 kill_reason Another user logged on this global unique id 199068 mac 199068 bytes_out 0 199068 bytes_in 0 199068 station_ip 113.203.9.123 199068 port 14 199068 unique_id port 199076 username meysam 199076 kill_reason Another user logged on this global unique id 199076 mac 199076 bytes_out 0 199076 bytes_in 0 199076 station_ip 188.158.50.76 199076 port 16 199076 unique_id port 199079 username arash 199079 kill_reason Maximum check online fails reached 199079 mac 199079 bytes_out 0 199079 bytes_in 0 199079 station_ip 37.27.7.223 199079 port 14 199079 unique_id port 199080 username meysam 199080 kill_reason Another user logged on this global unique id 199080 mac 199080 bytes_out 0 199080 bytes_in 0 199080 station_ip 188.158.50.76 199080 port 16 199080 unique_id port 199085 username meysam 199085 kill_reason Another user logged on this global unique id 199085 mac 199085 bytes_out 0 199085 bytes_in 0 199085 station_ip 188.158.50.76 199085 port 16 199085 unique_id port 199089 username meysam 199089 kill_reason Another user logged on this global unique id 199089 mac 199089 bytes_out 0 199089 bytes_in 0 199089 station_ip 188.158.50.76 199089 port 16 199089 unique_id port 199092 username meysam 199092 kill_reason Another user logged on this global unique id 199092 mac 199092 bytes_out 0 199092 bytes_in 0 199092 station_ip 188.158.50.76 199092 port 16 199092 unique_id port 199095 username meysam 199095 kill_reason Another user logged on this global unique id 199095 mac 199095 bytes_out 0 199095 bytes_in 0 199095 station_ip 188.158.50.76 199095 port 16 199095 unique_id port 199098 username meysam 199098 kill_reason Another user logged on this global unique id 199098 mac 199098 bytes_out 0 199098 bytes_in 0 199098 station_ip 188.158.50.76 199098 port 16 199098 unique_id port 199102 username meysam 199102 kill_reason Another user logged on this global unique id 199102 mac 199102 bytes_out 0 199102 bytes_in 0 199102 station_ip 188.158.50.76 199102 port 16 199102 unique_id port 199105 username meysam 199105 kill_reason Another user logged on this global unique id 199105 mac 199105 bytes_out 0 199105 bytes_in 0 199105 station_ip 188.158.50.76 199105 port 14 199105 unique_id port 199108 username meysam 199108 kill_reason Another user logged on this global unique id 199108 mac 199108 bytes_out 0 199108 bytes_in 0 199108 station_ip 188.158.50.76 199108 port 16 199108 unique_id port 199112 username meysam 199112 kill_reason Maximum check online fails reached 199112 mac 199112 bytes_out 0 199112 bytes_in 0 199112 station_ip 188.158.50.76 199112 port 14 199112 unique_id port 199115 username meysam 199115 kill_reason Another user logged on this global unique id 199115 mac 199115 bytes_out 0 199115 bytes_in 0 199115 station_ip 188.158.50.76 199115 port 16 199115 unique_id port 199064 mac 199064 bytes_out 0 199064 bytes_in 0 199064 station_ip 188.158.50.76 199064 port 14 199064 unique_id port 199067 username morteza4424 199067 kill_reason Another user logged on this global unique id 199067 mac 199067 bytes_out 0 199067 bytes_in 0 199067 station_ip 113.203.9.123 199067 port 14 199067 unique_id port 199070 username morteza4424 199070 kill_reason Another user logged on this global unique id 199070 mac 199070 bytes_out 0 199070 bytes_in 0 199070 station_ip 113.203.9.123 199070 port 14 199070 unique_id port 199071 username morteza4424 199071 kill_reason Maximum check online fails reached 199071 mac 199071 bytes_out 0 199071 bytes_in 0 199071 station_ip 113.203.9.123 199071 port 14 199071 unique_id port 199072 username malekpoir 199072 kill_reason Another user logged on this global unique id 199072 mac 199072 bytes_out 0 199072 bytes_in 0 199072 station_ip 5.119.172.54 199072 port 16 199072 unique_id port 199073 username mammad 199073 kill_reason Maximum check online fails reached 199073 unique_id port 199073 bytes_out 2297336 199073 bytes_in 64697305 199073 station_ip 2.183.251.246 199073 port 15729652 199073 nas_port_type Virtual 199073 remote_ip 5.5.5.170 199078 username meysam 199078 kill_reason Another user logged on this global unique id 199078 mac 199078 bytes_out 0 199078 bytes_in 0 199078 station_ip 188.158.50.76 199078 port 16 199078 unique_id port 199084 username meysam 199084 kill_reason Another user logged on this global unique id 199084 mac 199084 bytes_out 0 199084 bytes_in 0 199084 station_ip 188.158.50.76 199084 port 14 199084 unique_id port 199088 username meysam 199088 kill_reason Another user logged on this global unique id 199088 mac 199088 bytes_out 0 199088 bytes_in 0 199088 station_ip 188.158.50.76 199088 port 16 199088 unique_id port 199091 username meysam 199091 kill_reason Another user logged on this global unique id 199091 mac 199091 bytes_out 0 199091 bytes_in 0 199091 station_ip 188.158.50.76 199091 port 16 199091 unique_id port 199094 username meysam 199094 kill_reason Another user logged on this global unique id 199094 mac 199094 bytes_out 0 199094 bytes_in 0 199094 station_ip 188.158.50.76 199094 port 16 199094 unique_id port 199097 username meysam 199097 kill_reason Another user logged on this global unique id 199097 mac 199097 bytes_out 0 199097 bytes_in 0 199097 station_ip 188.158.50.76 199097 port 16 199097 unique_id port 199101 username meysam 199101 kill_reason Another user logged on this global unique id 199101 mac 199101 bytes_out 0 199101 bytes_in 0 199101 station_ip 188.158.50.76 199101 port 16 199101 unique_id port 199107 username meysam 199107 kill_reason Another user logged on this global unique id 199107 mac 199107 bytes_out 0 199107 bytes_in 0 199107 station_ip 188.158.50.76 199107 port 16 199107 unique_id port 199110 username meysam 199110 kill_reason Another user logged on this global unique id 199110 mac 199110 bytes_out 0 199110 bytes_in 0 199110 station_ip 188.158.50.76 199110 port 14 199110 unique_id port 199113 username meysam 199113 kill_reason Maximum check online fails reached 199113 mac 199113 bytes_out 0 199113 bytes_in 0 199113 station_ip 188.158.50.76 199113 port 16 199113 unique_id port 199121 username meysam 199121 kill_reason Maximum check online fails reached 199121 mac 199121 bytes_out 0 199121 bytes_in 0 199121 station_ip 188.158.50.76 199121 port 14 199121 unique_id port 199125 username hatami 199125 kill_reason Maximum check online fails reached 199125 mac 199125 bytes_out 0 199125 bytes_in 0 199125 station_ip 151.235.77.244 199125 port 16 199125 unique_id port 199126 username hatami 199126 kill_reason Another user logged on this global unique id 199126 mac 199074 kill_reason Maximum check online fails reached 199074 mac 199074 bytes_out 0 199074 bytes_in 0 199074 station_ip 5.119.172.54 199074 port 16 199074 unique_id port 199075 username arash 199075 kill_reason Another user logged on this global unique id 199075 mac 199075 bytes_out 0 199075 bytes_in 0 199075 station_ip 37.27.7.223 199075 port 14 199075 unique_id port 199077 username meysam 199077 kill_reason Another user logged on this global unique id 199077 mac 199077 bytes_out 0 199077 bytes_in 0 199077 station_ip 188.158.50.76 199077 port 16 199077 unique_id port 199081 username meysam 199081 kill_reason Another user logged on this global unique id 199081 mac 199081 bytes_out 0 199081 bytes_in 0 199081 station_ip 188.158.50.76 199081 port 16 199081 unique_id port 199082 username nilufarrajaei 199082 kill_reason Another user logged on this global unique id 199082 mac 199082 bytes_out 0 199082 bytes_in 0 199082 station_ip 83.123.147.2 199082 port 14 199082 unique_id port 199083 username nilufarrajaei 199083 kill_reason Another user logged on this global unique id 199083 mac 199083 bytes_out 0 199083 bytes_in 0 199083 station_ip 83.123.147.2 199083 port 14 199083 unique_id port 199086 username nilufarrajaei 199086 kill_reason Another user logged on this global unique id 199086 mac 199086 bytes_out 0 199086 bytes_in 0 199086 station_ip 83.123.147.2 199086 port 16 199086 unique_id port 199087 username nilufarrajaei 199087 kill_reason Another user logged on this global unique id 199087 mac 199087 bytes_out 0 199087 bytes_in 0 199087 station_ip 83.123.147.2 199087 port 16 199087 unique_id port 199090 username meysam 199090 kill_reason Another user logged on this global unique id 199090 mac 199090 bytes_out 0 199090 bytes_in 0 199090 station_ip 188.158.50.76 199090 port 16 199090 unique_id port 199093 username meysam 199093 kill_reason Maximum check online fails reached 199093 mac 199093 bytes_out 0 199093 bytes_in 0 199093 station_ip 188.158.50.76 199093 port 14 199093 unique_id port 199096 username meysam 199096 kill_reason Another user logged on this global unique id 199096 mac 199096 bytes_out 0 199096 bytes_in 0 199096 station_ip 188.158.50.76 199096 port 16 199096 unique_id port 199099 username meysam 199099 kill_reason Another user logged on this global unique id 199099 mac 199099 bytes_out 0 199099 bytes_in 0 199099 station_ip 188.158.50.76 199099 port 16 199099 unique_id port 199100 username meysam 199100 kill_reason Another user logged on this global unique id 199100 mac 199100 bytes_out 0 199100 bytes_in 0 199100 station_ip 188.158.50.76 199100 port 16 199100 unique_id port 199103 username meysam 199103 kill_reason Another user logged on this global unique id 199103 mac 199103 bytes_out 0 199103 bytes_in 0 199103 station_ip 188.158.50.76 199103 port 16 199103 unique_id port 199104 username meysam 199104 kill_reason Another user logged on this global unique id 199104 mac 199104 bytes_out 0 199104 bytes_in 0 199104 station_ip 188.158.50.76 199104 port 14 199104 unique_id port 199106 username meysam 199106 kill_reason Another user logged on this global unique id 199106 mac 199106 bytes_out 0 199106 bytes_in 0 199106 station_ip 188.158.50.76 199106 port 14 199106 unique_id port 199109 username meysam 199109 kill_reason Another user logged on this global unique id 199109 mac 199109 bytes_out 0 199109 bytes_in 0 199109 station_ip 188.158.50.76 199109 port 14 199109 unique_id port 199111 username mostafa_es78 199111 unique_id port 199111 terminate_cause User-Request 199111 bytes_out 0 199111 bytes_in 0 199111 station_ip 83.122.228.8 199111 port 15729656 199111 nas_port_type Virtual 199111 remote_ip 5.5.5.175 199114 username meysam 199114 kill_reason Another user logged on this global unique id 199114 mac 199114 bytes_out 0 199114 bytes_in 0 199114 station_ip 188.158.50.76 199114 port 14 199114 unique_id port 199116 username meysam 199116 kill_reason Maximum check online fails reached 199116 mac 199116 bytes_out 0 199116 bytes_in 0 199116 station_ip 188.158.50.76 199116 port 14 199116 unique_id port 199117 username meysam 199117 kill_reason Maximum check online fails reached 199117 mac 199117 bytes_out 0 199117 bytes_in 0 199117 station_ip 188.158.50.76 199117 port 16 199117 unique_id port 199118 username meysam 199118 kill_reason Another user logged on this global unique id 199118 mac 199118 bytes_out 0 199118 bytes_in 0 199118 station_ip 188.158.50.76 199118 port 16 199118 unique_id port 199120 username aminvpn 199120 kill_reason Maximum check online fails reached 199120 unique_id port 199120 bytes_out 439588 199120 bytes_in 1994212 199120 station_ip 83.123.186.104 199120 port 15729655 199120 nas_port_type Virtual 199120 remote_ip 5.5.5.174 199122 username meysam 199122 kill_reason Maximum check online fails reached 199122 mac 199122 bytes_out 0 199122 bytes_in 0 199122 station_ip 188.158.50.76 199122 port 16 199122 unique_id port 199123 username hatami 199123 kill_reason Another user logged on this global unique id 199123 mac 199123 bytes_out 0 199123 bytes_in 0 199123 station_ip 151.235.77.244 199123 port 16 199123 unique_id port 199124 username farhad3 199124 kill_reason Another user logged on this global unique id 199124 mac 199124 bytes_out 0 199124 bytes_in 0 199124 station_ip 5.119.78.149 199124 port 15 199124 unique_id port 199128 username farhad3 199128 kill_reason Another user logged on this global unique id 199128 mac 199128 bytes_out 0 199128 bytes_in 0 199128 station_ip 5.119.78.149 199128 port 16 199128 unique_id port 199131 username farhad3 199131 kill_reason Another user logged on this global unique id 199131 mac 199131 bytes_out 0 199131 bytes_in 0 199131 station_ip 5.119.78.149 199131 port 16 199131 unique_id port 199136 username barzegar8595 199136 kill_reason Another user logged on this global unique id 199136 mac 199136 bytes_out 0 199136 bytes_in 0 199136 station_ip 5.202.7.31 199136 port 15 199136 unique_id port 199140 username barzegar8595 199140 kill_reason Another user logged on this global unique id 199140 mac 199140 bytes_out 0 199140 bytes_in 0 199140 station_ip 5.202.7.31 199140 port 15 199140 unique_id port 199143 username kamali3 199143 kill_reason Another user logged on this global unique id 199143 mac 199143 bytes_out 0 199143 bytes_in 0 199143 station_ip 5.202.3.60 199143 port 15 199143 unique_id port 199145 username barzegar8595 199145 kill_reason Another user logged on this global unique id 199145 mac 199145 bytes_out 0 199145 bytes_in 0 199145 station_ip 5.202.7.31 199145 port 16 199145 unique_id port 199148 username barzegar8595 199148 kill_reason Another user logged on this global unique id 199148 mac 199148 bytes_out 0 199148 bytes_in 0 199148 station_ip 5.202.7.31 199148 port 16 199148 unique_id port 199155 username morteza4424 199155 kill_reason Another user logged on this global unique id 199155 mac 199155 bytes_out 0 199155 bytes_in 0 199155 station_ip 113.203.10.15 199155 port 15 199155 unique_id port 199158 username morteza4424 199158 kill_reason Another user logged on this global unique id 199158 mac 199158 bytes_out 0 199158 bytes_in 0 199158 station_ip 113.203.10.15 199158 port 15 199158 unique_id port 199162 username meysam 199162 kill_reason Another user logged on this global unique id 199162 mac 199162 bytes_out 0 199162 bytes_in 0 199162 station_ip 188.158.50.76 199162 port 16 199162 unique_id port 199165 username meysam 199119 username meysam 199119 kill_reason Another user logged on this global unique id 199119 mac 199119 bytes_out 0 199119 bytes_in 0 199119 station_ip 188.158.50.76 199119 port 14 199119 unique_id port 199127 username hatami 199127 kill_reason Another user logged on this global unique id 199127 mac 199127 bytes_out 0 199127 bytes_in 0 199127 station_ip 151.235.77.244 199127 port 16 199127 unique_id port 199130 username farhad3 199130 kill_reason Another user logged on this global unique id 199130 mac 199130 bytes_out 0 199130 bytes_in 0 199130 station_ip 5.119.78.149 199130 port 16 199130 unique_id port 199132 username farhad3 199132 kill_reason Maximum check online fails reached 199132 mac 199132 bytes_out 0 199132 bytes_in 0 199132 station_ip 5.119.78.149 199132 port 16 199132 unique_id port 199134 username kamali3 199134 kill_reason Another user logged on this global unique id 199134 mac 199134 bytes_out 0 199134 bytes_in 0 199134 station_ip 5.202.3.60 199134 port 15 199134 unique_id port 199135 username barzegar8595 199135 kill_reason Another user logged on this global unique id 199135 mac 199135 bytes_out 0 199135 bytes_in 0 199135 station_ip 5.202.7.31 199135 port 15 199135 unique_id port 199139 username barzegar8595 199139 kill_reason Another user logged on this global unique id 199139 mac 199139 bytes_out 0 199139 bytes_in 0 199139 station_ip 5.202.7.31 199139 port 15 199139 unique_id port 199142 username kamali3 199142 kill_reason Another user logged on this global unique id 199142 mac 199142 bytes_out 0 199142 bytes_in 0 199142 station_ip 5.202.3.60 199142 port 16 199142 unique_id port 199147 username kamali3 199147 kill_reason Maximum check online fails reached 199147 mac 199147 bytes_out 0 199147 bytes_in 0 199147 station_ip 5.202.3.60 199147 port 15 199147 unique_id port 199153 username morteza4424 199153 kill_reason Another user logged on this global unique id 199153 mac 199153 bytes_out 0 199153 bytes_in 0 199153 station_ip 113.203.10.15 199153 port 15 199153 unique_id port 199154 username arash 199154 kill_reason Another user logged on this global unique id 199154 mac 199154 bytes_out 0 199154 bytes_in 0 199154 station_ip 37.27.7.223 199154 port 16 199154 unique_id port 199157 username morteza4424 199157 kill_reason Another user logged on this global unique id 199157 mac 199157 bytes_out 0 199157 bytes_in 0 199157 station_ip 113.203.10.15 199157 port 15 199157 unique_id port 199160 username farhad3 199160 kill_reason Another user logged on this global unique id 199160 mac 199160 bytes_out 0 199160 bytes_in 0 199160 station_ip 5.119.43.40 199160 port 15 199160 unique_id port 199161 username arash 199161 kill_reason Another user logged on this global unique id 199161 mac 199161 bytes_out 0 199161 bytes_in 0 199161 station_ip 37.27.7.223 199161 port 16 199161 unique_id port 199164 username farhad3 199164 kill_reason Another user logged on this global unique id 199164 mac 199164 bytes_out 0 199164 bytes_in 0 199164 station_ip 5.119.43.40 199164 port 16 199164 unique_id port 199167 username farhad3 199167 kill_reason Another user logged on this global unique id 199167 mac 199167 bytes_out 0 199167 bytes_in 0 199167 station_ip 5.119.43.40 199167 port 15 199167 unique_id port 199171 username meysam 199171 kill_reason Another user logged on this global unique id 199171 mac 199171 bytes_out 0 199171 bytes_in 0 199171 station_ip 188.158.50.76 199171 port 16 199171 unique_id port 199175 username malekpoir 199175 mac 199175 bytes_out 223347 199175 bytes_in 1592065 199175 station_ip 5.119.172.54 199175 port 14 199175 unique_id port 199175 remote_ip 10.8.0.166 199176 username kamali3 199177 station_ip 5.202.3.60 199126 bytes_out 0 199126 bytes_in 0 199126 station_ip 151.235.77.244 199126 port 16 199126 unique_id port 199129 username farhad3 199129 kill_reason Maximum check online fails reached 199129 mac 199129 bytes_out 0 199129 bytes_in 0 199129 station_ip 5.119.78.149 199129 port 15 199129 unique_id port 199133 username kamali3 199133 kill_reason Another user logged on this global unique id 199133 mac 199133 bytes_out 0 199133 bytes_in 0 199133 station_ip 5.202.3.60 199133 port 15 199133 unique_id port 199137 username barzegar8595 199137 kill_reason Another user logged on this global unique id 199137 mac 199137 bytes_out 0 199137 bytes_in 0 199137 station_ip 5.202.7.31 199137 port 15 199137 unique_id port 199138 username kamali3 199138 kill_reason Another user logged on this global unique id 199138 mac 199138 bytes_out 0 199138 bytes_in 0 199138 station_ip 5.202.3.60 199138 port 16 199138 unique_id port 199141 username barzegar8595 199141 kill_reason Another user logged on this global unique id 199141 mac 199141 bytes_out 0 199141 bytes_in 0 199141 station_ip 5.202.7.31 199141 port 15 199141 unique_id port 199144 username barzegar8595 199144 kill_reason Another user logged on this global unique id 199144 mac 199144 bytes_out 0 199144 bytes_in 0 199144 station_ip 5.202.7.31 199144 port 16 199144 unique_id port 199146 username barzegar8595 199146 kill_reason Another user logged on this global unique id 199146 mac 199146 bytes_out 0 199146 bytes_in 0 199146 station_ip 5.202.7.31 199146 port 16 199146 unique_id port 199149 username farhad3 199149 kill_reason Another user logged on this global unique id 199149 mac 199149 bytes_out 0 199149 bytes_in 0 199149 station_ip 5.119.78.149 199149 port 16 199149 unique_id port 199150 username farhad3 199150 kill_reason Maximum check online fails reached 199150 mac 199150 bytes_out 0 199150 bytes_in 0 199150 station_ip 5.119.78.149 199150 port 16 199150 unique_id port 199151 username morteza4424 199151 kill_reason Another user logged on this global unique id 199151 mac 199151 bytes_out 0 199151 bytes_in 0 199151 station_ip 113.203.10.15 199151 port 15 199151 unique_id port 199152 username morteza4424 199152 kill_reason Another user logged on this global unique id 199152 mac 199152 bytes_out 0 199152 bytes_in 0 199152 station_ip 113.203.10.15 199152 port 15 199152 unique_id port 199156 username morteza4424 199156 kill_reason Another user logged on this global unique id 199156 mac 199156 bytes_out 0 199156 bytes_in 0 199156 station_ip 113.203.10.15 199156 port 15 199156 unique_id port 199159 username morteza4424 199159 kill_reason Another user logged on this global unique id 199159 mac 199159 bytes_out 0 199159 bytes_in 0 199159 station_ip 113.203.10.15 199159 port 15 199159 unique_id port 199163 username meysam 199163 kill_reason Another user logged on this global unique id 199163 mac 199163 bytes_out 0 199163 bytes_in 0 199163 station_ip 188.158.50.76 199163 port 16 199163 unique_id port 199166 username farhad3 199166 kill_reason Another user logged on this global unique id 199166 mac 199166 bytes_out 0 199166 bytes_in 0 199166 station_ip 5.119.43.40 199166 port 16 199166 unique_id port 199170 username meysam 199170 kill_reason Another user logged on this global unique id 199170 mac 199170 bytes_out 0 199170 bytes_in 0 199170 station_ip 188.158.50.76 199170 port 15 199170 unique_id port 199174 username meysam 199174 kill_reason Maximum check online fails reached 199174 mac 199174 bytes_out 0 199174 bytes_in 0 199174 station_ip 188.158.50.76 199174 port 15 199174 unique_id port 199177 username kamali3 199177 kill_reason Maximum check online fails reached 199177 mac 199177 bytes_out 0 199177 bytes_in 0 199165 kill_reason Another user logged on this global unique id 199165 mac 199165 bytes_out 0 199165 bytes_in 0 199165 station_ip 188.158.50.76 199165 port 16 199165 unique_id port 199168 username meysam 199168 kill_reason Another user logged on this global unique id 199168 mac 199168 bytes_out 0 199168 bytes_in 0 199168 station_ip 188.158.50.76 199168 port 15 199168 unique_id port 199169 username meysam 199169 kill_reason Another user logged on this global unique id 199169 mac 199169 bytes_out 0 199169 bytes_in 0 199169 station_ip 188.158.50.76 199169 port 15 199169 unique_id port 199172 username meysam 199172 kill_reason Another user logged on this global unique id 199172 mac 199172 bytes_out 0 199172 bytes_in 0 199172 station_ip 188.158.50.76 199172 port 16 199172 unique_id port 199173 username meysam 199173 kill_reason Another user logged on this global unique id 199173 mac 199173 bytes_out 0 199173 bytes_in 0 199173 station_ip 188.158.50.76 199173 port 16 199173 unique_id port 199178 username meysam 199178 kill_reason Another user logged on this global unique id 199178 mac 199178 bytes_out 0 199178 bytes_in 0 199178 station_ip 188.158.50.76 199178 port 16 199178 unique_id port 199178 remote_ip 10.8.1.30 199180 username nilufarrajaei 199180 mac 199180 bytes_out 241339 199180 bytes_in 526505 199180 station_ip 83.123.147.2 199180 port 14 199180 unique_id port 199180 remote_ip 10.8.0.94 199181 username nilufarrajaei 199181 kill_reason Another user logged on this global unique id 199181 mac 199181 bytes_out 0 199181 bytes_in 0 199181 station_ip 83.123.147.2 199181 port 14 199181 unique_id port 199183 username arash 199183 mac 199183 bytes_out 0 199183 bytes_in 0 199183 station_ip 37.27.7.223 199183 port 16 199183 unique_id port 199183 remote_ip 10.8.0.162 199188 username morteza4424 199188 mac 199188 bytes_out 42889 199188 bytes_in 306911 199188 station_ip 113.203.10.15 199188 port 10 199188 unique_id port 199188 remote_ip 10.8.0.70 199190 username arash 199190 kill_reason Another user logged on this global unique id 199190 mac 199190 bytes_out 0 199190 bytes_in 0 199190 station_ip 37.27.7.223 199190 port 25 199190 unique_id port 199191 username arash 199191 kill_reason Another user logged on this global unique id 199191 mac 199191 bytes_out 0 199191 bytes_in 0 199191 station_ip 37.27.7.223 199191 port 25 199191 unique_id port 199195 username arash 199195 mac 199195 bytes_out 0 199195 bytes_in 0 199195 station_ip 37.27.7.223 199195 port 28 199195 unique_id port 199195 remote_ip 10.8.1.54 199201 username malekpoir 199201 mac 199201 bytes_out 183298 199201 bytes_in 517053 199201 station_ip 5.119.172.54 199201 port 22 199201 unique_id port 199201 remote_ip 10.8.1.70 199202 username nilufarrajaei 199202 mac 199202 bytes_out 72758 199202 bytes_in 187028 199202 station_ip 83.123.147.2 199202 port 16 199202 unique_id port 199202 remote_ip 10.8.1.138 199208 username farhad3 199208 kill_reason Another user logged on this global unique id 199208 mac 199208 bytes_out 0 199208 bytes_in 0 199208 station_ip 5.119.43.40 199208 port 16 199208 unique_id port 199210 username mohammadjavad 199210 kill_reason Another user logged on this global unique id 199210 mac 199210 bytes_out 0 199210 bytes_in 0 199210 station_ip 37.129.174.25 199210 port 10 199210 unique_id port 199214 username saeeddamghani 199214 kill_reason Another user logged on this global unique id 199214 mac 199214 bytes_out 0 199214 bytes_in 0 199214 station_ip 5.119.192.68 199214 port 25 199214 unique_id port 199215 username hadibarzegar 199215 mac 199215 bytes_out 0 199215 bytes_in 0 199215 station_ip 5.119.215.192 199176 kill_reason Another user logged on this global unique id 199176 mac 199176 bytes_out 0 199176 bytes_in 0 199176 station_ip 5.202.3.60 199176 port 15 199176 unique_id port 199182 username nilufarrajaei 199182 kill_reason Another user logged on this global unique id 199182 mac 199182 bytes_out 0 199182 bytes_in 0 199182 station_ip 83.123.147.2 199182 port 14 199182 unique_id port 199184 username hadibarzegar 199184 kill_reason Another user logged on this global unique id 199184 mac 199184 bytes_out 0 199184 bytes_in 0 199184 station_ip 5.119.215.192 199184 port 16 199184 unique_id port 199185 username sabaghnezhad 199185 mac 199185 bytes_out 4820317 199185 bytes_in 29285394 199185 station_ip 83.122.98.225 199185 port 10 199185 unique_id port 199185 remote_ip 10.8.0.18 199187 username morteza4424 199187 mac 199187 bytes_out 3014660 199187 bytes_in 8276548 199187 station_ip 113.203.10.15 199187 port 15 199187 unique_id port 199187 remote_ip 10.8.0.70 199189 username nilufarrajaei 199189 mac 199189 bytes_out 482795 199189 bytes_in 1334590 199189 station_ip 83.123.147.2 199189 port 14 199189 unique_id port 199189 remote_ip 10.8.0.94 199193 username dortaj3792 199193 mac 199193 bytes_out 0 199193 bytes_in 0 199193 station_ip 5.119.175.11 199193 port 16 199193 unique_id port 199193 remote_ip 10.8.1.34 199198 username esmaeilkazemi 199198 mac 199198 bytes_out 0 199198 bytes_in 0 199198 station_ip 83.123.49.36 199198 port 14 199198 unique_id port 199198 remote_ip 10.8.0.86 199200 username farhad3 199200 mac 199200 bytes_out 972119 199200 bytes_in 6307244 199200 station_ip 5.119.43.40 199200 port 26 199200 unique_id port 199200 remote_ip 10.8.1.38 199204 username alirezaza 199204 unique_id port 199204 terminate_cause User-Request 199204 bytes_out 340 199204 bytes_in 268 199204 station_ip 5.120.52.91 199204 port 15729659 199204 nas_port_type Virtual 199204 remote_ip 5.5.5.178 199206 username aminvpns6 199206 kill_reason Another user logged on this global unique id 199206 mac 199206 bytes_out 0 199206 bytes_in 0 199206 station_ip 5.119.218.108 199206 port 16 199206 unique_id port 199207 username aminvpns6 199207 kill_reason Another user logged on this global unique id 199207 mac 199207 bytes_out 0 199207 bytes_in 0 199207 station_ip 5.119.218.108 199207 port 16 199207 unique_id port 199212 username mohammadjavad 199212 kill_reason Maximum check online fails reached 199212 mac 199212 bytes_out 0 199212 bytes_in 0 199212 station_ip 37.129.174.25 199212 port 10 199212 unique_id port 199213 username saeeddamghani 199213 kill_reason Another user logged on this global unique id 199213 mac 199213 bytes_out 0 199213 bytes_in 0 199213 station_ip 5.119.192.68 199213 port 25 199213 unique_id port 199220 username hadibarzegar 199220 kill_reason Another user logged on this global unique id 199220 mac 199220 bytes_out 0 199220 bytes_in 0 199220 station_ip 5.119.215.192 199220 port 16 199220 unique_id port 199225 username hadibarzegar 199225 kill_reason Maximum check online fails reached 199225 mac 199225 bytes_out 0 199225 bytes_in 0 199225 station_ip 5.119.215.192 199225 port 14 199225 unique_id port 199226 username farhad3 199226 kill_reason Another user logged on this global unique id 199226 mac 199226 bytes_out 0 199226 bytes_in 0 199226 station_ip 5.119.43.40 199226 port 14 199226 unique_id port 199243 username charkhandaz3496 199243 kill_reason Another user logged on this global unique id 199243 mac 199243 bytes_out 0 199243 bytes_in 0 199243 station_ip 5.119.241.6 199243 port 15 199243 unique_id port 199248 username yaghobi 199248 kill_reason Another user logged on this global unique id 199248 mac 199177 port 15 199177 unique_id port 199179 username kamali3 199179 mac 199179 bytes_out 0 199179 bytes_in 0 199179 station_ip 5.202.3.60 199179 port 23 199179 unique_id port 199179 remote_ip 10.8.1.166 199186 username hadibarzegar 199186 kill_reason Another user logged on this global unique id 199186 mac 199186 bytes_out 0 199186 bytes_in 0 199186 station_ip 5.119.215.192 199186 port 16 199186 unique_id port 199192 username aminvpns6 199192 kill_reason Another user logged on this global unique id 199192 mac 199192 bytes_out 0 199192 bytes_in 0 199192 station_ip 5.119.218.108 199192 port 25 199192 unique_id port 199194 username aminvpns6 199194 kill_reason Another user logged on this global unique id 199194 mac 199194 bytes_out 0 199194 bytes_in 0 199194 station_ip 5.119.218.108 199194 port 25 199194 unique_id port 199196 username aminvpns6 199196 mac 199196 bytes_out 0 199196 bytes_in 0 199196 station_ip 5.119.218.108 199196 port 25 199196 unique_id port 199196 remote_ip 10.8.1.62 199197 username esmaeilkazemi 199197 mac 199197 bytes_out 0 199197 bytes_in 0 199197 station_ip 83.123.49.36 199197 port 10 199197 unique_id port 199197 remote_ip 10.8.0.86 199199 username esmaeilkazemi 199199 mac 199199 bytes_out 11348 199199 bytes_in 56925 199199 station_ip 83.123.49.36 199199 port 10 199199 unique_id port 199199 remote_ip 10.8.0.86 199203 username nilufarrajaei 199203 kill_reason Another user logged on this global unique id 199203 mac 199203 bytes_out 0 199203 bytes_in 0 199203 station_ip 83.123.147.2 199203 port 16 199203 unique_id port 199205 username nilufarrajaei 199205 kill_reason Another user logged on this global unique id 199205 mac 199205 bytes_out 0 199205 bytes_in 0 199205 station_ip 83.123.147.2 199205 port 16 199205 unique_id port 199209 username meysam 199209 kill_reason Another user logged on this global unique id 199209 mac 199209 bytes_out 0 199209 bytes_in 0 199209 station_ip 188.158.50.76 199209 port 23 199209 unique_id port 199209 remote_ip 10.8.1.30 199211 username farhad3 199211 kill_reason Maximum check online fails reached 199211 mac 199211 bytes_out 0 199211 bytes_in 0 199211 station_ip 5.119.43.40 199211 port 16 199211 unique_id port 199216 username hadibarzegar 199216 kill_reason Another user logged on this global unique id 199216 mac 199216 bytes_out 0 199216 bytes_in 0 199216 station_ip 5.119.215.192 199216 port 18 199216 unique_id port 199217 username nilufarrajaei 199217 mac 199217 bytes_out 11081 199217 bytes_in 14405 199217 station_ip 83.123.147.2 199217 port 16 199217 unique_id port 199217 remote_ip 10.8.1.138 199218 username hadibarzegar 199218 kill_reason Maximum check online fails reached 199218 mac 199218 bytes_out 0 199218 bytes_in 0 199218 station_ip 5.119.215.192 199218 port 18 199218 unique_id port 199219 username hadibarzegar 199219 kill_reason Another user logged on this global unique id 199219 mac 199219 bytes_out 0 199219 bytes_in 0 199219 station_ip 5.119.215.192 199219 port 16 199219 unique_id port 199224 username farhad3 199224 kill_reason Another user logged on this global unique id 199224 mac 199224 bytes_out 0 199224 bytes_in 0 199224 station_ip 5.119.43.40 199224 port 16 199224 unique_id port 199229 username farhad3 199229 kill_reason Maximum check online fails reached 199229 mac 199229 bytes_out 0 199229 bytes_in 0 199229 station_ip 5.119.43.40 199229 port 14 199229 unique_id port 199230 username dortaj3792 199230 mac 199230 bytes_out 0 199230 bytes_in 0 199230 station_ip 5.119.175.11 199230 port 25 199230 unique_id port 199230 remote_ip 10.8.1.34 199232 username dortaj3792 199248 bytes_out 0 199215 port 18 199215 unique_id port 199215 remote_ip 10.8.0.170 199221 username hadibarzegar 199221 kill_reason Another user logged on this global unique id 199221 mac 199221 bytes_out 0 199221 bytes_in 0 199221 station_ip 5.119.215.192 199221 port 16 199221 unique_id port 199222 username hadibarzegar 199222 kill_reason Another user logged on this global unique id 199222 mac 199222 bytes_out 0 199222 bytes_in 0 199222 station_ip 5.119.215.192 199222 port 14 199222 unique_id port 199223 username hadibarzegar 199223 kill_reason Another user logged on this global unique id 199223 mac 199223 bytes_out 0 199223 bytes_in 0 199223 station_ip 5.119.215.192 199223 port 16 199223 unique_id port 199227 username farhad3 199227 kill_reason Maximum check online fails reached 199227 mac 199227 bytes_out 0 199227 bytes_in 0 199227 station_ip 5.119.43.40 199227 port 16 199227 unique_id port 199228 username farhad3 199228 kill_reason Another user logged on this global unique id 199228 mac 199228 bytes_out 0 199228 bytes_in 0 199228 station_ip 5.119.43.40 199228 port 16 199228 unique_id port 199231 username farhad3 199231 kill_reason Another user logged on this global unique id 199231 mac 199231 bytes_out 0 199231 bytes_in 0 199231 station_ip 5.119.43.40 199231 port 16 199231 unique_id port 199234 username meysam 199234 kill_reason Another user logged on this global unique id 199234 mac 199234 bytes_out 0 199234 bytes_in 0 199234 station_ip 188.158.50.76 199234 port 23 199234 unique_id port 199236 username hosseine 199236 kill_reason Another user logged on this global unique id 199236 mac 199236 bytes_out 0 199236 bytes_in 0 199236 station_ip 37.129.24.5 199236 port 14 199236 unique_id port 199237 username nilufarrajaei 199237 mac 199237 bytes_out 0 199237 bytes_in 0 199237 station_ip 83.123.147.2 199237 port 16 199237 unique_id port 199237 remote_ip 10.8.1.138 199239 username hosseine 199239 kill_reason Maximum check online fails reached 199239 mac 199239 bytes_out 0 199239 bytes_in 0 199239 station_ip 37.129.24.5 199239 port 14 199239 unique_id port 199242 username charkhandaz3496 199242 kill_reason Another user logged on this global unique id 199242 mac 199242 bytes_out 0 199242 bytes_in 0 199242 station_ip 5.119.241.6 199242 port 15 199242 unique_id port 199244 username charkhandaz3496 199244 kill_reason Another user logged on this global unique id 199244 mac 199244 bytes_out 0 199244 bytes_in 0 199244 station_ip 5.119.241.6 199244 port 15 199244 unique_id port 199245 username charkhandaz3496 199245 kill_reason Another user logged on this global unique id 199245 mac 199245 bytes_out 0 199245 bytes_in 0 199245 station_ip 5.119.241.6 199245 port 15 199245 unique_id port 199246 username farhad3 199246 kill_reason Another user logged on this global unique id 199246 mac 199246 bytes_out 0 199246 bytes_in 0 199246 station_ip 5.119.43.40 199246 port 16 199246 unique_id port 199246 remote_ip 10.8.1.38 199249 username yaghobi 199249 kill_reason Another user logged on this global unique id 199249 mac 199249 bytes_out 0 199249 bytes_in 0 199249 station_ip 83.123.95.19 199249 port 16 199249 unique_id port 199253 username nilufarrajaei 199253 kill_reason Another user logged on this global unique id 199253 mac 199253 bytes_out 0 199253 bytes_in 0 199253 station_ip 83.123.147.2 199253 port 16 199253 unique_id port 199255 username hatami 199255 mac 199255 bytes_out 0 199255 bytes_in 0 199255 station_ip 151.235.77.244 199255 port 15 199255 unique_id port 199255 remote_ip 10.8.0.78 199261 username aminvpn 199261 unique_id port 199261 terminate_cause Lost-Carrier 199261 bytes_out 111942 199261 bytes_in 430551 199261 station_ip 83.122.214.65 199232 kill_reason Another user logged on this global unique id 199232 mac 199232 bytes_out 0 199232 bytes_in 0 199232 station_ip 5.119.175.11 199232 port 16 199232 unique_id port 199233 username dortaj3792 199233 kill_reason Maximum check online fails reached 199233 mac 199233 bytes_out 0 199233 bytes_in 0 199233 station_ip 5.119.175.11 199233 port 16 199233 unique_id port 199235 username hosseine 199235 mac 199235 bytes_out 1712218 199235 bytes_in 3680337 199235 station_ip 37.129.24.5 199235 port 17 199235 unique_id port 199235 remote_ip 10.8.0.118 199238 username mohammadjavad 199238 mac 199238 bytes_out 1374277 199238 bytes_in 10852097 199238 station_ip 37.129.174.25 199238 port 10 199238 unique_id port 199238 remote_ip 10.8.0.58 199240 username hadibarzegar 199240 kill_reason Another user logged on this global unique id 199240 mac 199240 bytes_out 0 199240 bytes_in 0 199240 station_ip 83.123.235.255 199240 port 10 199240 unique_id port 199241 username hadibarzegar 199241 kill_reason Another user logged on this global unique id 199241 mac 199241 bytes_out 0 199241 bytes_in 0 199241 station_ip 83.123.235.255 199241 port 10 199241 unique_id port 199247 username yaghobi 199247 kill_reason Another user logged on this global unique id 199247 mac 199247 bytes_out 0 199247 bytes_in 0 199247 station_ip 83.123.95.19 199247 port 16 199247 unique_id port 199250 username yaghobi 199250 kill_reason Another user logged on this global unique id 199250 mac 199250 bytes_out 0 199250 bytes_in 0 199250 station_ip 83.123.95.19 199250 port 16 199250 unique_id port 199251 username yaghobi 199251 mac 199251 bytes_out 526681 199251 bytes_in 4490718 199251 station_ip 83.123.95.19 199251 port 16 199251 unique_id port 199251 remote_ip 10.8.0.174 199256 username dortaj3792 199256 kill_reason Another user logged on this global unique id 199256 mac 199256 bytes_out 0 199256 bytes_in 0 199256 station_ip 5.119.175.11 199256 port 25 199256 unique_id port 199259 username meysam 199259 kill_reason Another user logged on this global unique id 199259 mac 199259 bytes_out 0 199259 bytes_in 0 199259 station_ip 188.158.50.76 199259 port 23 199259 unique_id port 199262 username meysam 199262 kill_reason Maximum check online fails reached 199262 mac 199262 bytes_out 0 199262 bytes_in 0 199262 station_ip 188.158.50.76 199262 port 23 199262 unique_id port 199263 username charkhandaz3496 199263 kill_reason Another user logged on this global unique id 199263 mac 199263 bytes_out 0 199263 bytes_in 0 199263 station_ip 5.119.241.6 199263 port 23 199263 unique_id port 199264 username charkhandaz3496 199264 kill_reason Another user logged on this global unique id 199264 mac 199264 bytes_out 0 199264 bytes_in 0 199264 station_ip 5.119.241.6 199264 port 23 199264 unique_id port 199270 username nilufarrajaei 199270 kill_reason Another user logged on this global unique id 199270 mac 199270 bytes_out 0 199270 bytes_in 0 199270 station_ip 83.123.147.2 199270 port 16 199270 unique_id port 199275 username charkhandaz3496 199275 kill_reason Another user logged on this global unique id 199275 mac 199275 bytes_out 0 199275 bytes_in 0 199275 station_ip 5.119.241.6 199275 port 22 199275 unique_id port 199276 username charkhandaz3496 199276 kill_reason Another user logged on this global unique id 199276 mac 199276 bytes_out 0 199276 bytes_in 0 199276 station_ip 5.119.241.6 199276 port 16 199276 unique_id port 199279 username charkhandaz3496 199279 kill_reason Maximum check online fails reached 199279 mac 199279 bytes_out 0 199279 bytes_in 0 199279 station_ip 5.119.241.6 199279 port 23 199279 unique_id port 199284 username farhad3 199284 mac 199284 bytes_out 0 199248 bytes_in 0 199248 station_ip 83.123.95.19 199248 port 16 199248 unique_id port 199252 username nilufarrajaei 199252 mac 199252 bytes_out 0 199252 bytes_in 0 199252 station_ip 83.123.147.2 199252 port 25 199252 unique_id port 199252 remote_ip 10.8.1.138 199254 username dortaj3792 199254 kill_reason Another user logged on this global unique id 199254 mac 199254 bytes_out 0 199254 bytes_in 0 199254 station_ip 5.119.175.11 199254 port 25 199254 unique_id port 199257 username tahmorsi 199257 kill_reason Another user logged on this global unique id 199257 mac 199257 bytes_out 0 199257 bytes_in 0 199257 station_ip 86.57.71.63 199257 port 25 199257 unique_id port 199258 username tahmorsi 199258 kill_reason Maximum check online fails reached 199258 mac 199258 bytes_out 0 199258 bytes_in 0 199258 station_ip 86.57.71.63 199258 port 25 199258 unique_id port 199260 username meysam 199260 mac 199260 bytes_out 0 199260 bytes_in 0 199260 station_ip 188.158.50.76 199260 port 23 199260 unique_id port 199265 username malekpoir 199265 mac 199265 bytes_out 531502 199265 bytes_in 1288275 199265 station_ip 5.119.172.54 199265 port 22 199265 unique_id port 199265 remote_ip 10.8.1.70 199266 username malekpoir 199266 kill_reason Another user logged on this global unique id 199266 mac 199266 bytes_out 0 199266 bytes_in 0 199266 station_ip 5.119.172.54 199266 port 22 199266 unique_id port 199268 username malekpoir 199268 kill_reason Another user logged on this global unique id 199268 mac 199268 bytes_out 0 199268 bytes_in 0 199268 station_ip 5.119.172.54 199268 port 22 199268 unique_id port 199271 username charkhandaz3496 199271 kill_reason Another user logged on this global unique id 199271 mac 199271 bytes_out 0 199271 bytes_in 0 199271 station_ip 5.119.241.6 199271 port 16 199271 unique_id port 199273 username charkhandaz3496 199273 kill_reason Another user logged on this global unique id 199273 mac 199273 bytes_out 0 199273 bytes_in 0 199273 station_ip 5.119.241.6 199273 port 16 199273 unique_id port 199277 username charkhandaz3496 199277 kill_reason Another user logged on this global unique id 199277 mac 199277 bytes_out 0 199277 bytes_in 0 199277 station_ip 5.119.241.6 199277 port 16 199277 unique_id port 199278 username charkhandaz3496 199278 kill_reason Another user logged on this global unique id 199278 mac 199278 bytes_out 0 199278 bytes_in 0 199278 station_ip 5.119.241.6 199278 port 23 199278 unique_id port 199280 username kalantary6037 199280 mac 199280 bytes_out 1798353 199280 bytes_in 10082654 199280 station_ip 37.129.142.95 199280 port 17 199280 unique_id port 199280 remote_ip 10.8.0.10 199282 username charkhandaz3496 199282 kill_reason Another user logged on this global unique id 199282 mac 199282 bytes_out 0 199282 bytes_in 0 199282 station_ip 5.119.241.6 199282 port 16 199282 unique_id port 199283 username charkhandaz3496 199283 kill_reason Another user logged on this global unique id 199283 mac 199283 bytes_out 0 199283 bytes_in 0 199283 station_ip 5.119.241.6 199283 port 16 199283 unique_id port 199283 remote_ip 10.8.0.178 199289 username esmaeilkazemi 199289 kill_reason Another user logged on this global unique id 199289 mac 199289 bytes_out 0 199289 bytes_in 0 199289 station_ip 83.123.90.236 199289 port 17 199289 unique_id port 199292 username esmaeilkazemi 199292 mac 199292 bytes_out 2569 199292 bytes_in 4173 199292 station_ip 83.123.90.236 199292 port 19 199292 unique_id port 199292 remote_ip 10.8.0.86 199297 username tahmorsi 199297 kill_reason Another user logged on this global unique id 199297 mac 199297 bytes_out 0 199297 bytes_in 0 199297 station_ip 86.57.71.63 199297 port 26 199261 port 15729663 199261 nas_port_type Virtual 199261 remote_ip 5.5.5.255 199267 username charkhandaz3496 199267 mac 199267 bytes_out 267842 199267 bytes_in 1658912 199267 station_ip 5.119.241.6 199267 port 25 199267 unique_id port 199267 remote_ip 10.8.1.46 199269 username charkhandaz3496 199269 kill_reason Another user logged on this global unique id 199269 mac 199269 bytes_out 0 199269 bytes_in 0 199269 station_ip 5.119.241.6 199269 port 22 199269 unique_id port 199272 username meysam 199272 mac 199272 bytes_out 248521 199272 bytes_in 3004230 199272 station_ip 188.158.50.76 199272 port 23 199272 unique_id port 199272 remote_ip 10.8.1.30 199274 username charkhandaz3496 199274 kill_reason Another user logged on this global unique id 199274 mac 199274 bytes_out 0 199274 bytes_in 0 199274 station_ip 5.119.241.6 199274 port 16 199274 unique_id port 199281 username meysam 199281 mac 199281 bytes_out 124736 199281 bytes_in 1536601 199281 station_ip 188.158.50.76 199281 port 22 199281 unique_id port 199281 remote_ip 10.8.1.30 199285 username farhad3 199285 kill_reason Another user logged on this global unique id 199285 mac 199285 bytes_out 0 199285 bytes_in 0 199285 station_ip 5.119.43.40 199285 port 16 199285 unique_id port 199288 username esmaeilkazemi 199288 kill_reason Another user logged on this global unique id 199288 mac 199288 bytes_out 0 199288 bytes_in 0 199288 station_ip 83.123.90.236 199288 port 17 199288 unique_id port 199291 username barzegar8595 199291 mac 199291 bytes_out 0 199291 bytes_in 0 199291 station_ip 5.200.102.96 199291 port 22 199291 unique_id port 199291 remote_ip 10.8.1.50 199294 username hadibarzegar 199294 mac 199294 bytes_out 4539476 199294 bytes_in 24416849 199294 station_ip 83.123.235.255 199294 port 10 199294 unique_id port 199294 remote_ip 10.8.0.170 199296 username farhad3 199296 kill_reason Another user logged on this global unique id 199296 mac 199296 bytes_out 0 199296 bytes_in 0 199296 station_ip 5.119.43.40 199296 port 16 199296 unique_id port 199301 username esmaeilkazemi 199301 kill_reason Another user logged on this global unique id 199301 mac 199301 bytes_out 0 199301 bytes_in 0 199301 station_ip 83.123.90.236 199301 port 17 199301 unique_id port 199302 username farhad3 199302 mac 199302 bytes_out 0 199302 bytes_in 0 199302 station_ip 5.119.43.40 199302 port 16 199302 unique_id port 199304 username hadibarzegar 199304 mac 199304 bytes_out 70318 199304 bytes_in 135785 199304 station_ip 83.123.235.255 199304 port 10 199304 unique_id port 199304 remote_ip 10.8.0.170 199308 username esmaeilkazemi 199308 mac 199308 bytes_out 0 199308 bytes_in 0 199308 station_ip 83.123.90.236 199308 port 10 199308 unique_id port 199308 remote_ip 10.8.0.86 199310 username nilufarrajaei 199310 kill_reason Another user logged on this global unique id 199310 mac 199310 bytes_out 0 199310 bytes_in 0 199310 station_ip 83.123.147.2 199310 port 10 199310 unique_id port 199312 username hadibarzegar 199312 mac 199312 bytes_out 941685 199312 bytes_in 5039403 199312 station_ip 83.123.235.255 199312 port 22 199312 unique_id port 199312 remote_ip 10.8.1.170 199313 username kalantary6037 199313 mac 199313 bytes_out 299726 199313 bytes_in 2442569 199313 station_ip 37.129.253.131 199313 port 10 199313 unique_id port 199313 remote_ip 10.8.0.10 199317 username esmaeilkazemi 199317 kill_reason Another user logged on this global unique id 199317 mac 199317 bytes_out 0 199317 bytes_in 0 199317 station_ip 83.123.90.236 199317 port 10 199317 unique_id port 199326 username farhad3 199326 kill_reason Maximum check online fails reached 199284 bytes_in 0 199284 station_ip 5.119.43.40 199284 port 16 199284 unique_id port 199286 username esmaeili1522 199286 mac 199286 bytes_out 0 199286 bytes_in 0 199286 station_ip 5.120.189.85 199286 port 23 199286 unique_id port 199286 remote_ip 10.8.1.106 199287 username kalantary6037 199287 mac 199287 bytes_out 0 199287 bytes_in 0 199287 station_ip 37.129.142.95 199287 port 17 199287 unique_id port 199287 remote_ip 10.8.0.10 199290 username esmaeilkazemi 199290 kill_reason Another user logged on this global unique id 199290 mac 199290 bytes_out 0 199290 bytes_in 0 199290 station_ip 83.123.90.236 199290 port 17 199290 unique_id port 199293 username esmaeilkazemi 199293 kill_reason Maximum check online fails reached 199293 mac 199293 bytes_out 0 199293 bytes_in 0 199293 station_ip 83.123.90.236 199293 port 17 199293 unique_id port 199295 username saeeddamghani 199295 mac 199295 bytes_out 0 199295 bytes_in 0 199295 station_ip 5.119.192.68 199295 port 18 199295 unique_id port 199295 remote_ip 10.8.0.26 199298 username farhad3 199298 kill_reason Another user logged on this global unique id 199298 mac 199298 bytes_out 0 199298 bytes_in 0 199298 station_ip 5.119.43.40 199298 port 16 199298 unique_id port 199300 username esmaeilkazemi 199300 kill_reason Another user logged on this global unique id 199300 mac 199300 bytes_out 0 199300 bytes_in 0 199300 station_ip 83.123.90.236 199300 port 17 199300 unique_id port 199306 username kalantary6037 199306 kill_reason Maximum check online fails reached 199306 mac 199306 bytes_out 0 199306 bytes_in 0 199306 station_ip 37.129.253.131 199306 port 10 199306 unique_id port 199307 username saeeddamghani 199307 kill_reason Another user logged on this global unique id 199307 mac 199307 bytes_out 0 199307 bytes_in 0 199307 station_ip 5.119.192.68 199307 port 16 199307 unique_id port 199307 remote_ip 10.8.1.66 199309 username esmaeilkazemi 199309 mac 199309 bytes_out 0 199309 bytes_in 0 199309 station_ip 83.123.90.236 199309 port 16 199309 unique_id port 199309 remote_ip 10.8.0.86 199316 username esmaeilkazemi 199316 kill_reason Another user logged on this global unique id 199316 mac 199316 bytes_out 0 199316 bytes_in 0 199316 station_ip 83.123.90.236 199316 port 10 199316 unique_id port 199319 username hosseine 199319 mac 199319 bytes_out 0 199319 bytes_in 0 199319 station_ip 37.129.24.5 199319 port 14 199319 unique_id port 199319 remote_ip 10.8.0.118 199320 username yarmohamadi7916 199320 mac 199320 bytes_out 1354967 199320 bytes_in 4512632 199320 station_ip 5.119.108.238 199320 port 22 199320 unique_id port 199320 remote_ip 10.8.1.154 199321 username tahmorsi 199321 mac 199321 bytes_out 0 199321 bytes_in 0 199321 station_ip 86.57.71.63 199321 port 26 199321 unique_id port 199324 username farhad3 199324 kill_reason Another user logged on this global unique id 199324 mac 199324 bytes_out 0 199324 bytes_in 0 199324 station_ip 5.119.43.40 199324 port 16 199324 unique_id port 199324 remote_ip 10.8.1.38 199327 username kalantary6037 199327 kill_reason Another user logged on this global unique id 199327 mac 199327 bytes_out 0 199327 bytes_in 0 199327 station_ip 37.129.188.83 199327 port 10 199327 unique_id port 199329 username kalantary6037 199329 kill_reason Another user logged on this global unique id 199329 mac 199329 bytes_out 0 199329 bytes_in 0 199329 station_ip 37.129.188.83 199329 port 10 199329 unique_id port 199332 username yarmohamadi7916 199332 kill_reason Another user logged on this global unique id 199332 mac 199332 bytes_out 0 199332 bytes_in 0 199332 station_ip 5.120.84.74 199332 port 22 199332 unique_id port 199297 unique_id port 199297 remote_ip 10.8.1.102 199299 username esmaeilkazemi 199299 kill_reason Another user logged on this global unique id 199299 mac 199299 bytes_out 0 199299 bytes_in 0 199299 station_ip 83.123.90.236 199299 port 17 199299 unique_id port 199303 username esmaeilkazemi 199303 kill_reason Maximum check online fails reached 199303 mac 199303 bytes_out 0 199303 bytes_in 0 199303 station_ip 83.123.90.236 199303 port 17 199303 unique_id port 199305 username kalantary6037 199305 kill_reason Another user logged on this global unique id 199305 mac 199305 bytes_out 0 199305 bytes_in 0 199305 station_ip 37.129.253.131 199305 port 10 199305 unique_id port 199311 username nilufarrajaei 199311 kill_reason Maximum check online fails reached 199311 mac 199311 bytes_out 0 199311 bytes_in 0 199311 station_ip 83.123.147.2 199311 port 10 199311 unique_id port 199314 username rezaei 199314 mac 199314 bytes_out 0 199314 bytes_in 0 199314 station_ip 5.120.87.16 199314 port 23 199314 unique_id port 199314 remote_ip 10.8.1.174 199315 username esmaeilkazemi 199315 kill_reason Another user logged on this global unique id 199315 mac 199315 bytes_out 0 199315 bytes_in 0 199315 station_ip 83.123.90.236 199315 port 10 199315 unique_id port 199318 username esmaeilkazemi 199318 kill_reason Another user logged on this global unique id 199318 mac 199318 bytes_out 0 199318 bytes_in 0 199318 station_ip 83.123.90.236 199318 port 10 199318 unique_id port 199322 username hamid1430 199322 mac 199322 bytes_out 0 199322 bytes_in 0 199322 station_ip 83.122.173.228 199322 port 10 199322 unique_id port 199322 remote_ip 10.8.0.110 199323 username mohammadjavad 199323 mac 199323 bytes_out 0 199323 bytes_in 0 199323 station_ip 37.129.178.17 199323 port 14 199323 unique_id port 199323 remote_ip 10.8.0.58 199325 username farhad3 199325 kill_reason Another user logged on this global unique id 199325 mac 199325 bytes_out 0 199325 bytes_in 0 199325 station_ip 5.119.43.40 199325 port 16 199325 unique_id port 199328 username kalantary6037 199328 kill_reason Maximum check online fails reached 199328 mac 199328 bytes_out 0 199328 bytes_in 0 199328 station_ip 37.129.188.83 199328 port 10 199328 unique_id port 199330 username kalantary6037 199330 kill_reason Maximum check online fails reached 199330 mac 199330 bytes_out 0 199330 bytes_in 0 199330 station_ip 37.129.188.83 199330 port 10 199330 unique_id port 199331 username yarmohamadi7916 199331 mac 199331 bytes_out 0 199331 bytes_in 0 199331 station_ip 5.120.84.74 199331 port 22 199331 unique_id port 199331 remote_ip 10.8.1.154 199334 username yarmohamadi7916 199334 kill_reason Another user logged on this global unique id 199334 mac 199334 bytes_out 0 199334 bytes_in 0 199334 station_ip 5.120.84.74 199334 port 22 199334 unique_id port 199336 username esmaeili1522 199336 kill_reason Another user logged on this global unique id 199336 mac 199336 bytes_out 0 199336 bytes_in 0 199336 station_ip 5.120.189.85 199336 port 22 199336 unique_id port 199337 username esmaeili1522 199337 mac 199337 bytes_out 0 199337 bytes_in 0 199337 station_ip 5.120.189.85 199337 port 25 199337 unique_id port 199337 remote_ip 10.8.1.106 199340 username hadibarzegar 199340 kill_reason Another user logged on this global unique id 199340 mac 199340 bytes_out 0 199340 bytes_in 0 199340 station_ip 83.123.235.255 199340 port 14 199340 unique_id port 199341 username hadibarzegar 199341 kill_reason Another user logged on this global unique id 199341 mac 199341 bytes_out 0 199341 bytes_in 0 199341 station_ip 5.119.215.192 199341 port 25 199341 unique_id port 199344 username malekpoir 199344 mac 199326 mac 199326 bytes_out 0 199326 bytes_in 0 199326 station_ip 5.119.43.40 199326 port 16 199326 unique_id port 199339 username hadibarzegar 199339 kill_reason Maximum check online fails reached 199339 mac 199339 bytes_out 0 199339 bytes_in 0 199339 station_ip 83.123.235.255 199339 port 14 199339 unique_id port 199343 username hadibarzegar 199343 kill_reason Another user logged on this global unique id 199343 mac 199343 bytes_out 0 199343 bytes_in 0 199343 station_ip 5.119.215.192 199343 port 25 199343 unique_id port 199345 username hadibarzegar 199345 kill_reason Another user logged on this global unique id 199345 mac 199345 bytes_out 0 199345 bytes_in 0 199345 station_ip 83.123.235.255 199345 port 14 199345 unique_id port 199350 username farhad3 199350 kill_reason Another user logged on this global unique id 199350 mac 199350 bytes_out 0 199350 bytes_in 0 199350 station_ip 5.119.43.40 199350 port 16 199350 unique_id port 199352 username barzegar8595 199352 mac 199352 bytes_out 0 199352 bytes_in 0 199352 station_ip 5.72.78.177 199352 port 14 199352 unique_id port 199352 remote_ip 10.8.0.82 199357 username kalantary6037 199357 kill_reason Another user logged on this global unique id 199357 mac 199357 bytes_out 0 199357 bytes_in 0 199357 station_ip 37.129.188.83 199357 port 14 199357 unique_id port 199359 username hosseine 199359 kill_reason Another user logged on this global unique id 199359 mac 199359 bytes_out 0 199359 bytes_in 0 199359 station_ip 37.129.138.98 199359 port 17 199359 unique_id port 199363 username ayobi 199363 kill_reason Another user logged on this global unique id 199363 mac 199363 bytes_out 0 199363 bytes_in 0 199363 station_ip 37.27.25.184 199363 port 17 199363 unique_id port 199365 username esmaeili1522 199365 kill_reason Another user logged on this global unique id 199365 mac 199365 bytes_out 0 199365 bytes_in 0 199365 station_ip 5.120.189.85 199365 port 25 199365 unique_id port 199366 username esmaeili1522 199366 kill_reason Another user logged on this global unique id 199366 mac 199366 bytes_out 0 199366 bytes_in 0 199366 station_ip 5.120.189.85 199366 port 18 199366 unique_id port 199367 username esmaeili1522 199367 kill_reason Another user logged on this global unique id 199367 mac 199367 bytes_out 0 199367 bytes_in 0 199367 station_ip 5.120.189.85 199367 port 25 199367 unique_id port 199370 username barzegar8595 199370 kill_reason Another user logged on this global unique id 199370 mac 199370 bytes_out 0 199370 bytes_in 0 199370 station_ip 89.47.76.215 199370 port 25 199370 unique_id port 199374 username barzegar8595 199374 mac 199374 bytes_out 0 199374 bytes_in 0 199374 station_ip 89.47.76.215 199374 port 25 199374 unique_id port 199374 remote_ip 10.8.1.50 199375 username rajaei 199375 kill_reason Another user logged on this global unique id 199375 mac 199375 bytes_out 0 199375 bytes_in 0 199375 station_ip 89.32.97.162 199375 port 25 199375 unique_id port 199378 username barzegar8595 199378 mac 199378 bytes_out 0 199378 bytes_in 0 199378 station_ip 89.47.76.215 199378 port 25 199378 unique_id port 199378 remote_ip 10.8.1.50 199383 username barzegar8595 199383 mac 199383 bytes_out 55820 199383 bytes_in 237004 199383 station_ip 89.47.76.215 199383 port 25 199383 unique_id port 199383 remote_ip 10.8.1.50 199387 username aminvpn 199387 kill_reason Another user logged on this global unique id 199387 mac 199387 bytes_out 0 199387 bytes_in 0 199387 station_ip 37.129.92.248 199387 port 20 199387 unique_id port 199388 username hadibarzegar 199388 mac 199388 bytes_out 0 199388 bytes_in 0 199388 station_ip 5.119.215.192 199388 port 16 199333 username hashtadani5 199333 mac 199333 bytes_out 0 199333 bytes_in 0 199333 station_ip 83.123.210.73 199333 port 14 199333 unique_id port 199333 remote_ip 10.8.0.150 199335 username esmaeili1522 199335 kill_reason Another user logged on this global unique id 199335 mac 199335 bytes_out 0 199335 bytes_in 0 199335 station_ip 5.120.189.85 199335 port 22 199335 unique_id port 199338 username hadibarzegar 199338 kill_reason Another user logged on this global unique id 199338 mac 199338 bytes_out 0 199338 bytes_in 0 199338 station_ip 83.123.235.255 199338 port 14 199338 unique_id port 199342 username hadibarzegar 199342 kill_reason Another user logged on this global unique id 199342 mac 199342 bytes_out 0 199342 bytes_in 0 199342 station_ip 5.119.215.192 199342 port 25 199342 unique_id port 199347 username malekpoir 199347 kill_reason Maximum check online fails reached 199347 mac 199347 bytes_out 0 199347 bytes_in 0 199347 station_ip 5.119.172.54 199347 port 14 199347 unique_id port 199349 username farhad3 199349 kill_reason Another user logged on this global unique id 199349 mac 199349 bytes_out 0 199349 bytes_in 0 199349 station_ip 5.119.43.40 199349 port 16 199349 unique_id port 199349 remote_ip 10.8.1.38 199355 username hosseine 199355 mac 199355 bytes_out 0 199355 bytes_in 0 199355 station_ip 37.129.24.5 199355 port 17 199355 unique_id port 199355 remote_ip 10.8.0.118 199356 username barzegar8595 199356 kill_reason Maximum check online fails reached 199356 mac 199356 bytes_out 0 199356 bytes_in 0 199356 station_ip 5.72.78.177 199356 port 25 199356 unique_id port 199361 username hosseine 199361 kill_reason Another user logged on this global unique id 199361 mac 199361 bytes_out 0 199361 bytes_in 0 199361 station_ip 37.129.138.98 199361 port 17 199361 unique_id port 199362 username hosseine 199362 kill_reason Another user logged on this global unique id 199362 mac 199362 bytes_out 0 199362 bytes_in 0 199362 station_ip 37.129.138.98 199362 port 17 199362 unique_id port 199369 username esmaeili1522 199369 kill_reason Another user logged on this global unique id 199369 mac 199369 bytes_out 0 199369 bytes_in 0 199369 station_ip 5.120.189.85 199369 port 25 199369 unique_id port 199371 username esmaeili1522 199371 kill_reason Maximum check online fails reached 199371 mac 199371 bytes_out 0 199371 bytes_in 0 199371 station_ip 5.120.189.85 199371 port 18 199371 unique_id port 199373 username barzegar8595 199373 mac 199373 bytes_out 0 199373 bytes_in 0 199373 station_ip 46.225.215.43 199373 port 22 199373 unique_id port 199373 remote_ip 10.8.1.50 199377 username barzegar8595 199377 mac 199377 bytes_out 0 199377 bytes_in 0 199377 station_ip 46.225.215.43 199377 port 22 199377 unique_id port 199377 remote_ip 10.8.1.50 199381 username barzegar8595 199381 kill_reason Another user logged on this global unique id 199381 mac 199381 bytes_out 0 199381 bytes_in 0 199381 station_ip 46.225.215.43 199381 port 22 199381 unique_id port 199382 username barzegar8595 199382 kill_reason Another user logged on this global unique id 199382 mac 199382 bytes_out 0 199382 bytes_in 0 199382 station_ip 46.225.215.43 199382 port 22 199382 unique_id port 199384 username barzegar8595 199384 mac 199384 bytes_out 0 199384 bytes_in 0 199384 station_ip 46.225.215.43 199384 port 22 199384 unique_id port 199384 remote_ip 10.8.1.50 199385 username barzegar8595 199385 kill_reason Another user logged on this global unique id 199385 mac 199385 bytes_out 0 199385 bytes_in 0 199385 station_ip 89.47.76.215 199385 port 22 199385 unique_id port 199386 username barzegar8595 199386 kill_reason Maximum check online fails reached 199344 bytes_out 0 199344 bytes_in 0 199344 station_ip 5.119.172.54 199344 port 23 199344 unique_id port 199344 remote_ip 10.8.1.70 199346 username malekpoir 199346 kill_reason Another user logged on this global unique id 199346 mac 199346 bytes_out 0 199346 bytes_in 0 199346 station_ip 5.119.172.54 199346 port 14 199346 unique_id port 199348 username hadibarzegar 199348 kill_reason Maximum check online fails reached 199348 mac 199348 bytes_out 0 199348 bytes_in 0 199348 station_ip 5.119.215.192 199348 port 25 199348 unique_id port 199351 username barzegar8595 199351 kill_reason Maximum number of concurrent logins reached 199351 mac 199351 bytes_out 0 199351 bytes_in 0 199351 station_ip 5.72.78.177 199351 port 25 199351 unique_id port 199353 username barzegar8595 199353 kill_reason Another user logged on this global unique id 199353 mac 199353 bytes_out 0 199353 bytes_in 0 199353 station_ip 5.72.78.177 199353 port 25 199353 unique_id port 199354 username barzegar8595 199354 kill_reason Another user logged on this global unique id 199354 mac 199354 bytes_out 0 199354 bytes_in 0 199354 station_ip 5.72.78.177 199354 port 25 199354 unique_id port 199358 username kalantary6037 199358 kill_reason Another user logged on this global unique id 199358 mac 199358 bytes_out 0 199358 bytes_in 0 199358 station_ip 37.129.188.83 199358 port 14 199358 unique_id port 199360 username hosseine 199360 kill_reason Another user logged on this global unique id 199360 mac 199360 bytes_out 0 199360 bytes_in 0 199360 station_ip 37.129.138.98 199360 port 17 199360 unique_id port 199364 username ayobi 199364 kill_reason Another user logged on this global unique id 199364 mac 199364 bytes_out 0 199364 bytes_in 0 199364 station_ip 37.27.25.184 199364 port 17 199364 unique_id port 199368 username esmaeili1522 199368 kill_reason Another user logged on this global unique id 199368 mac 199368 bytes_out 0 199368 bytes_in 0 199368 station_ip 5.120.189.85 199368 port 25 199368 unique_id port 199372 username barzegar8595 199372 kill_reason Another user logged on this global unique id 199372 mac 199372 bytes_out 0 199372 bytes_in 0 199372 station_ip 89.47.76.215 199372 port 25 199372 unique_id port 199376 username rajaei 199376 kill_reason Another user logged on this global unique id 199376 mac 199376 bytes_out 0 199376 bytes_in 0 199376 station_ip 89.32.97.162 199376 port 25 199376 unique_id port 199379 username rajaei 199379 mac 199379 bytes_out 0 199379 bytes_in 0 199379 station_ip 89.32.97.162 199379 port 25 199379 unique_id port 199379 remote_ip 10.8.1.146 199380 username barzegar8595 199380 mac 199380 bytes_out 0 199380 bytes_in 0 199380 station_ip 46.225.215.43 199380 port 22 199380 unique_id port 199380 remote_ip 10.8.1.50 199391 username barzegar8595 199391 kill_reason Another user logged on this global unique id 199391 mac 199391 bytes_out 0 199391 bytes_in 0 199391 station_ip 46.225.215.43 199391 port 16 199391 unique_id port 199392 username barzegar8595 199392 mac 199392 bytes_out 481819 199392 bytes_in 2358735 199392 station_ip 46.225.215.43 199392 port 18 199392 unique_id port 199392 remote_ip 10.8.0.82 199394 username godarzi 199394 kill_reason Another user logged on this global unique id 199394 mac 199394 bytes_out 0 199394 bytes_in 0 199394 station_ip 5.202.62.43 199394 port 23 199394 unique_id port 199394 remote_ip 10.8.1.78 199401 username hamid.e 199401 unique_id port 199401 terminate_cause User-Request 199401 bytes_out 2452145 199401 bytes_in 57618815 199401 station_ip 31.56.156.136 199401 port 15729669 199401 nas_port_type Virtual 199401 remote_ip 5.5.5.190 199402 username arash 199402 kill_reason Another user logged on this global unique id 199386 mac 199386 bytes_out 0 199386 bytes_in 0 199386 station_ip 89.47.76.215 199386 port 22 199386 unique_id port 199390 username saeeddamghani 199390 mac 199390 bytes_out 0 199390 bytes_in 0 199390 station_ip 217.60.218.61 199390 port 16 199390 unique_id port 199390 remote_ip 10.8.1.66 199393 username barzegar8595 199393 kill_reason Maximum check online fails reached 199393 mac 199393 bytes_out 0 199393 bytes_in 0 199393 station_ip 46.225.215.43 199393 port 16 199393 unique_id port 199396 username saeeddamghani 199396 mac 199396 bytes_out 0 199396 bytes_in 0 199396 station_ip 217.60.218.61 199396 port 19 199396 unique_id port 199396 remote_ip 10.8.0.26 199400 username kalantary6037 199400 kill_reason Maximum check online fails reached 199400 mac 199400 bytes_out 0 199400 bytes_in 0 199400 station_ip 37.129.188.83 199400 port 16 199400 unique_id port 199404 username mammad 199404 unique_id port 199404 terminate_cause User-Request 199404 bytes_out 12353908 199404 bytes_in 193090190 199404 station_ip 5.233.70.13 199404 port 15729667 199404 nas_port_type Virtual 199404 remote_ip 5.5.5.255 199408 username rezaei 199408 kill_reason Another user logged on this global unique id 199408 mac 199408 bytes_out 0 199408 bytes_in 0 199408 station_ip 5.120.87.16 199408 port 16 199408 unique_id port 199408 remote_ip 10.8.1.174 199411 username barzegar8595 199411 mac 199411 bytes_out 0 199411 bytes_in 0 199411 station_ip 5.200.108.227 199411 port 16 199411 unique_id port 199411 remote_ip 10.8.0.82 199413 username teymori5660 199413 kill_reason Maximum check online fails reached 199413 mac 199413 bytes_out 0 199413 bytes_in 0 199413 station_ip 5.120.61.189 199413 port 22 199413 unique_id port 199414 username malekpoir 199414 kill_reason Another user logged on this global unique id 199414 mac 199414 bytes_out 0 199414 bytes_in 0 199414 station_ip 5.119.172.54 199414 port 16 199414 unique_id port 199416 username malekpoir 199416 kill_reason Another user logged on this global unique id 199416 mac 199416 bytes_out 0 199416 bytes_in 0 199416 station_ip 5.119.172.54 199416 port 16 199416 unique_id port 199417 username malekpoir 199417 kill_reason Another user logged on this global unique id 199417 mac 199417 bytes_out 0 199417 bytes_in 0 199417 station_ip 5.119.172.54 199417 port 16 199417 unique_id port 199418 username sekonji0496 199418 kill_reason Another user logged on this global unique id 199418 mac 199418 bytes_out 0 199418 bytes_in 0 199418 station_ip 83.122.196.20 199418 port 19 199418 unique_id port 199419 username ayobi 199419 mac 199419 bytes_out 6603363 199419 bytes_in 49777110 199419 station_ip 37.27.25.184 199419 port 17 199419 unique_id port 199419 remote_ip 10.8.0.182 199421 username sekonji0496 199421 kill_reason Maximum check online fails reached 199421 mac 199421 bytes_out 0 199421 bytes_in 0 199421 station_ip 83.122.196.20 199421 port 19 199421 unique_id port 199423 username kharazmi2920 199423 kill_reason Another user logged on this global unique id 199423 mac 199423 bytes_out 0 199423 bytes_in 0 199423 station_ip 83.123.28.86 199423 port 17 199423 unique_id port 199424 username kalantary6037 199424 kill_reason Another user logged on this global unique id 199424 mac 199424 bytes_out 0 199424 bytes_in 0 199424 station_ip 37.129.178.235 199424 port 25 199424 unique_id port 199428 username barzegar8595 199428 mac 199428 bytes_out 0 199428 bytes_in 0 199428 station_ip 5.200.108.227 199428 port 22 199428 unique_id port 199428 remote_ip 10.8.1.50 199435 username shahruz 199435 kill_reason Another user logged on this global unique id 199435 mac 199435 bytes_out 0 199388 unique_id port 199388 remote_ip 10.8.0.170 199389 username aminvpn 199389 kill_reason Maximum check online fails reached 199389 mac 199389 bytes_out 0 199389 bytes_in 0 199389 station_ip 37.129.92.248 199389 port 20 199389 unique_id port 199395 username seyedrezaei2572 199395 mac 199395 bytes_out 313589 199395 bytes_in 487440 199395 station_ip 5.217.226.7 199395 port 19 199395 unique_id port 199395 remote_ip 10.8.0.186 199397 username saeeddamghani 199397 mac 199397 bytes_out 0 199397 bytes_in 0 199397 station_ip 5.119.245.68 199397 port 20 199397 unique_id port 199397 remote_ip 10.8.0.26 199398 username mosavi0713 199398 mac 199398 bytes_out 0 199398 bytes_in 0 199398 station_ip 37.129.237.94 199398 port 16 199398 unique_id port 199398 remote_ip 10.8.0.190 199399 username kalantary6037 199399 kill_reason Another user logged on this global unique id 199399 mac 199399 bytes_out 0 199399 bytes_in 0 199399 station_ip 37.129.188.83 199399 port 16 199399 unique_id port 199407 username meysam 199407 mac 199407 bytes_out 0 199407 bytes_in 0 199407 station_ip 188.159.251.192 199407 port 22 199407 unique_id port 199407 remote_ip 10.8.1.30 199409 username teymori5660 199409 kill_reason Another user logged on this global unique id 199409 mac 199409 bytes_out 0 199409 bytes_in 0 199409 station_ip 5.120.61.189 199409 port 16 199409 unique_id port 199412 username teymori5660 199412 kill_reason Another user logged on this global unique id 199412 mac 199412 bytes_out 0 199412 bytes_in 0 199412 station_ip 5.120.61.189 199412 port 22 199412 unique_id port 199426 username kalantary6037 199426 kill_reason Maximum check online fails reached 199426 mac 199426 bytes_out 0 199426 bytes_in 0 199426 station_ip 37.129.178.235 199426 port 25 199426 unique_id port 199432 username hatami 199432 kill_reason Maximum check online fails reached 199432 mac 199432 bytes_out 0 199432 bytes_in 0 199432 station_ip 151.235.77.244 199432 port 17 199432 unique_id port 199433 username motamedi9772 199433 kill_reason Another user logged on this global unique id 199433 mac 199433 bytes_out 0 199433 bytes_in 0 199433 station_ip 83.123.239.189 199433 port 17 199433 unique_id port 199437 username sekonji0496 199437 kill_reason Another user logged on this global unique id 199437 mac 199437 bytes_out 0 199437 bytes_in 0 199437 station_ip 83.122.196.20 199437 port 17 199437 unique_id port 199443 username hatami 199443 kill_reason Another user logged on this global unique id 199443 mac 199443 bytes_out 0 199443 bytes_in 0 199443 station_ip 151.235.77.244 199443 port 16 199443 unique_id port 199447 username godarzi 199447 kill_reason Maximum check online fails reached 199447 mac 199447 bytes_out 0 199447 bytes_in 0 199447 station_ip 5.202.62.43 199447 port 23 199447 unique_id port 199451 username esmaeilkazemi 199451 kill_reason Another user logged on this global unique id 199451 mac 199451 bytes_out 0 199451 bytes_in 0 199451 station_ip 83.123.90.236 199451 port 17 199451 unique_id port 199452 username godarzi 199452 kill_reason Maximum check online fails reached 199452 mac 199452 bytes_out 0 199452 bytes_in 0 199452 station_ip 5.202.62.43 199452 port 22 199452 unique_id port 199454 username esmaeilkazemi 199454 kill_reason Maximum check online fails reached 199454 mac 199454 bytes_out 0 199454 bytes_in 0 199454 station_ip 83.123.90.236 199454 port 17 199454 unique_id port 199456 username esmaeili1522 199456 kill_reason Another user logged on this global unique id 199456 mac 199456 bytes_out 0 199456 bytes_in 0 199456 station_ip 5.120.189.85 199456 port 22 199456 unique_id port 199457 username farhad3 199504 remote_ip 10.8.0.170 199402 mac 199402 bytes_out 0 199402 bytes_in 0 199402 station_ip 37.27.7.223 199402 port 16 199402 unique_id port 199402 remote_ip 10.8.1.54 199403 username hamid.e 199403 kill_reason Maximum check online fails reached 199403 unique_id port 199403 bytes_out 0 199403 bytes_in 0 199403 station_ip 31.56.156.136 199403 port 15729670 199403 nas_port_type Virtual 199405 username barzegar8595 199405 mac 199405 bytes_out 0 199405 bytes_in 0 199405 station_ip 5.200.108.227 199405 port 16 199405 unique_id port 199405 remote_ip 10.8.0.82 199406 username kalantary6037 199406 mac 199406 bytes_out 976401 199406 bytes_in 1441065 199406 station_ip 37.129.188.83 199406 port 22 199406 unique_id port 199406 remote_ip 10.8.1.150 199410 username teymori5660 199410 kill_reason Another user logged on this global unique id 199410 mac 199410 bytes_out 0 199410 bytes_in 0 199410 station_ip 5.120.61.189 199410 port 16 199410 unique_id port 199415 username malekpoir 199415 kill_reason Another user logged on this global unique id 199415 mac 199415 bytes_out 0 199415 bytes_in 0 199415 station_ip 5.119.172.54 199415 port 16 199415 unique_id port 199420 username esmaeilkazemi 199420 kill_reason Another user logged on this global unique id 199420 mac 199420 bytes_out 0 199420 bytes_in 0 199420 station_ip 83.123.90.236 199420 port 17 199420 unique_id port 199422 username esmaeilkazemi 199422 kill_reason Another user logged on this global unique id 199422 mac 199422 bytes_out 0 199422 bytes_in 0 199422 station_ip 83.123.90.236 199422 port 17 199422 unique_id port 199425 username kharazmi2920 199425 kill_reason Maximum check online fails reached 199425 mac 199425 bytes_out 0 199425 bytes_in 0 199425 station_ip 83.123.28.86 199425 port 17 199425 unique_id port 199427 username aminvpn 199427 unique_id port 199427 terminate_cause User-Request 199427 bytes_out 647 199427 bytes_in 92 199427 station_ip 83.122.204.245 199427 port 15729672 199427 nas_port_type Virtual 199427 remote_ip 5.5.5.162 199429 username malekpoir 199429 mac 199429 bytes_out 0 199429 bytes_in 0 199429 station_ip 5.119.172.54 199429 port 16 199429 unique_id port 199429 remote_ip 10.8.0.166 199430 username hatami 199430 kill_reason Another user logged on this global unique id 199430 mac 199430 bytes_out 0 199430 bytes_in 0 199430 station_ip 151.235.77.244 199430 port 16 199430 unique_id port 199431 username hatami 199431 kill_reason Another user logged on this global unique id 199431 mac 199431 bytes_out 0 199431 bytes_in 0 199431 station_ip 151.235.77.244 199431 port 17 199431 unique_id port 199434 username motamedi9772 199434 kill_reason Maximum check online fails reached 199434 mac 199434 bytes_out 0 199434 bytes_in 0 199434 station_ip 83.123.239.189 199434 port 17 199434 unique_id port 199438 username sekonji0496 199438 kill_reason Maximum check online fails reached 199438 mac 199438 bytes_out 0 199438 bytes_in 0 199438 station_ip 83.122.196.20 199438 port 17 199438 unique_id port 199441 username godarzi 199441 kill_reason Another user logged on this global unique id 199441 mac 199441 bytes_out 0 199441 bytes_in 0 199441 station_ip 5.202.62.43 199441 port 23 199441 unique_id port 199444 username barzegar8595 199444 kill_reason Another user logged on this global unique id 199444 mac 199444 bytes_out 0 199444 bytes_in 0 199444 station_ip 89.34.55.254 199444 port 16 199444 unique_id port 199445 username barzegar8595 199445 kill_reason Another user logged on this global unique id 199445 mac 199445 bytes_out 0 199445 bytes_in 0 199445 station_ip 89.34.55.254 199445 port 16 199445 unique_id port 199449 username godarzi 199449 kill_reason Another user logged on this global unique id 199435 bytes_in 0 199435 station_ip 113.203.113.241 199435 port 17 199435 unique_id port 199436 username shahruz 199436 kill_reason Another user logged on this global unique id 199436 mac 199436 bytes_out 0 199436 bytes_in 0 199436 station_ip 113.203.113.241 199436 port 17 199436 unique_id port 199439 username sekonji0496 199439 mac 199439 bytes_out 0 199439 bytes_in 0 199439 station_ip 83.122.196.20 199439 port 17 199439 unique_id port 199439 remote_ip 10.8.0.66 199440 username hamid1430 199440 mac 199440 bytes_out 4440286 199440 bytes_in 16073723 199440 station_ip 83.123.144.241 199440 port 14 199440 unique_id port 199440 remote_ip 10.8.0.110 199442 username godarzi 199442 kill_reason Another user logged on this global unique id 199442 mac 199442 bytes_out 0 199442 bytes_in 0 199442 station_ip 5.202.62.43 199442 port 23 199442 unique_id port 199446 username godarzi 199446 kill_reason Another user logged on this global unique id 199446 mac 199446 bytes_out 0 199446 bytes_in 0 199446 station_ip 5.202.62.43 199446 port 16 199446 unique_id port 199448 username barzegar8595 199448 mac 199448 bytes_out 113764 199448 bytes_in 404694 199448 station_ip 37.156.49.123 199448 port 17 199448 unique_id port 199448 remote_ip 10.8.0.82 199453 username farhad3 199453 kill_reason Another user logged on this global unique id 199453 mac 199453 bytes_out 0 199453 bytes_in 0 199453 station_ip 5.119.43.40 199453 port 22 199453 unique_id port 199455 username farhad3 199455 kill_reason Another user logged on this global unique id 199455 mac 199455 bytes_out 0 199455 bytes_in 0 199455 station_ip 5.119.43.40 199455 port 22 199455 unique_id port 199458 username barzegar8595 199458 mac 199458 bytes_out 0 199458 bytes_in 0 199458 station_ip 89.34.55.254 199458 port 16 199458 unique_id port 199458 remote_ip 10.8.1.50 199460 username farhad3 199460 kill_reason Maximum check online fails reached 199460 mac 199460 bytes_out 0 199460 bytes_in 0 199460 station_ip 5.119.43.40 199460 port 17 199460 unique_id port 199463 username seyedrezaei2572 199463 kill_reason Another user logged on this global unique id 199463 mac 199463 bytes_out 0 199463 bytes_in 0 199463 station_ip 5.217.226.7 199463 port 16 199463 unique_id port 199465 username kalantary6037 199465 mac 199465 bytes_out 0 199465 bytes_in 0 199465 station_ip 37.129.178.235 199465 port 17 199465 unique_id port 199465 remote_ip 10.8.0.10 199470 username nilufarrajaei 199470 mac 199470 bytes_out 3107471 199470 bytes_in 9656764 199470 station_ip 83.123.147.2 199470 port 10 199470 unique_id port 199470 remote_ip 10.8.0.94 199472 username sabaghnezhad 199472 kill_reason Another user logged on this global unique id 199472 mac 199472 bytes_out 0 199472 bytes_in 0 199472 station_ip 83.122.98.225 199472 port 10 199472 unique_id port 199479 username houshang 199479 mac 199479 bytes_out 1079160 199479 bytes_in 17308707 199479 station_ip 5.120.10.112 199479 port 16 199479 unique_id port 199479 remote_ip 10.8.1.134 199482 username farhad3 199482 mac 199482 bytes_out 0 199482 bytes_in 0 199482 station_ip 5.119.43.40 199482 port 17 199482 unique_id port 199482 remote_ip 10.8.0.46 199483 username farhad3 199483 kill_reason Another user logged on this global unique id 199483 mac 199483 bytes_out 0 199483 bytes_in 0 199483 station_ip 5.119.43.40 199483 port 16 199483 unique_id port 199483 remote_ip 10.8.1.38 199485 username fezealinaghi 199485 mac 199485 bytes_out 284110 199485 bytes_in 907893 199485 station_ip 113.203.13.82 199485 port 17 199485 unique_id port 199485 remote_ip 10.8.0.98 199488 username farhad3 199449 mac 199449 bytes_out 0 199449 bytes_in 0 199449 station_ip 5.202.62.43 199449 port 16 199449 unique_id port 199450 username godarzi 199450 kill_reason Another user logged on this global unique id 199450 mac 199450 bytes_out 0 199450 bytes_in 0 199450 station_ip 5.202.62.43 199450 port 22 199450 unique_id port 199464 username farhad3 199464 mac 199464 bytes_out 0 199464 bytes_in 0 199464 station_ip 5.119.43.40 199464 port 16 199464 unique_id port 199464 remote_ip 10.8.1.38 199466 username farhad3 199466 kill_reason Another user logged on this global unique id 199466 mac 199466 bytes_out 0 199466 bytes_in 0 199466 station_ip 5.119.43.40 199466 port 16 199466 unique_id port 199467 username farhad3 199467 kill_reason Another user logged on this global unique id 199467 mac 199467 bytes_out 0 199467 bytes_in 0 199467 station_ip 5.119.43.40 199467 port 16 199467 unique_id port 199469 username farhad3 199469 kill_reason Another user logged on this global unique id 199469 mac 199469 bytes_out 0 199469 bytes_in 0 199469 station_ip 5.119.43.40 199469 port 16 199469 unique_id port 199471 username farhad3 199471 mac 199471 bytes_out 0 199471 bytes_in 0 199471 station_ip 5.119.43.40 199471 port 16 199471 unique_id port 199474 username sabaghnezhad 199474 kill_reason Another user logged on this global unique id 199474 mac 199474 bytes_out 0 199474 bytes_in 0 199474 station_ip 83.122.98.225 199474 port 10 199474 unique_id port 199476 username sabaghnezhad 199476 kill_reason Another user logged on this global unique id 199476 mac 199476 bytes_out 0 199476 bytes_in 0 199476 station_ip 83.122.98.225 199476 port 10 199476 unique_id port 199478 username sabaghnezhad 199478 kill_reason Another user logged on this global unique id 199478 mac 199478 bytes_out 0 199478 bytes_in 0 199478 station_ip 83.122.98.225 199478 port 10 199478 unique_id port 199480 username sabaghnezhad 199480 kill_reason Another user logged on this global unique id 199480 mac 199480 bytes_out 0 199480 bytes_in 0 199480 station_ip 83.122.98.225 199480 port 10 199480 unique_id port 199481 username mammad 199481 unique_id port 199481 terminate_cause User-Request 199481 bytes_out 13130506 199481 bytes_in 130815868 199481 station_ip 5.233.70.13 199481 port 15729673 199481 nas_port_type Virtual 199481 remote_ip 5.5.5.255 199486 username farhad3 199486 mac 199486 bytes_out 243430 199486 bytes_in 903396 199486 station_ip 5.119.43.40 199486 port 16 199486 unique_id port 199486 remote_ip 10.8.1.38 199491 username hatami 199491 kill_reason Another user logged on this global unique id 199491 mac 199491 bytes_out 0 199491 bytes_in 0 199491 station_ip 151.235.77.244 199491 port 16 199491 unique_id port 199492 username hatami 199492 kill_reason Another user logged on this global unique id 199492 mac 199492 bytes_out 0 199492 bytes_in 0 199492 station_ip 151.235.77.244 199492 port 18 199492 unique_id port 199494 username hatami 199494 kill_reason Maximum check online fails reached 199494 mac 199494 bytes_out 0 199494 bytes_in 0 199494 station_ip 151.235.77.244 199494 port 16 199494 unique_id port 199502 username kharazmi2920 199502 mac 199502 bytes_out 40176 199502 bytes_in 35011 199502 station_ip 83.123.28.86 199502 port 22 199502 unique_id port 199502 remote_ip 10.8.1.178 199503 username houshang 199503 kill_reason Another user logged on this global unique id 199503 mac 199503 bytes_out 0 199503 bytes_in 0 199503 station_ip 5.120.10.112 199503 port 23 199503 unique_id port 199504 username hadibarzegar 199504 mac 199504 bytes_out 0 199504 bytes_in 0 199504 station_ip 83.123.163.95 199504 port 17 199504 unique_id port 199457 kill_reason Another user logged on this global unique id 199457 mac 199457 bytes_out 0 199457 bytes_in 0 199457 station_ip 5.119.43.40 199457 port 17 199457 unique_id port 199459 username esmaeili1522 199459 kill_reason Maximum check online fails reached 199459 mac 199459 bytes_out 0 199459 bytes_in 0 199459 station_ip 5.120.189.85 199459 port 22 199459 unique_id port 199461 username seyedrezaei2572 199461 kill_reason Another user logged on this global unique id 199461 mac 199461 bytes_out 0 199461 bytes_in 0 199461 station_ip 5.217.226.7 199461 port 16 199461 unique_id port 199462 username seyedrezaei2572 199462 mac 199462 bytes_out 837578 199462 bytes_in 2190455 199462 station_ip 5.217.226.7 199462 port 18 199462 unique_id port 199462 remote_ip 10.8.0.186 199468 username farhad3 199468 mac 199468 bytes_out 0 199468 bytes_in 0 199468 station_ip 5.119.43.40 199468 port 16 199468 unique_id port 199468 remote_ip 10.8.1.38 199473 username sabaghnezhad 199473 kill_reason Another user logged on this global unique id 199473 mac 199473 bytes_out 0 199473 bytes_in 0 199473 station_ip 83.122.98.225 199473 port 10 199473 unique_id port 199475 username sabaghnezhad 199475 kill_reason Maximum check online fails reached 199475 mac 199475 bytes_out 0 199475 bytes_in 0 199475 station_ip 83.122.98.225 199475 port 10 199475 unique_id port 199477 username sabaghnezhad 199477 kill_reason Maximum check online fails reached 199477 mac 199477 bytes_out 0 199477 bytes_in 0 199477 station_ip 83.122.98.225 199477 port 10 199477 unique_id port 199484 username saeeddamghani 199484 mac 199484 bytes_out 0 199484 bytes_in 0 199484 station_ip 5.119.245.68 199484 port 16 199484 unique_id port 199487 username farhad3 199487 kill_reason Another user logged on this global unique id 199487 mac 199487 bytes_out 0 199487 bytes_in 0 199487 station_ip 5.119.43.40 199487 port 16 199487 unique_id port 199489 username hatami 199489 kill_reason Another user logged on this global unique id 199489 mac 199489 bytes_out 0 199489 bytes_in 0 199489 station_ip 151.235.77.244 199489 port 16 199489 unique_id port 199490 username hatami 199490 kill_reason Maximum check online fails reached 199490 mac 199490 bytes_out 0 199490 bytes_in 0 199490 station_ip 151.235.77.244 199490 port 16 199490 unique_id port 199495 username morteza4424 199495 kill_reason Another user logged on this global unique id 199495 mac 199495 bytes_out 0 199495 bytes_in 0 199495 station_ip 37.129.99.253 199495 port 18 199495 unique_id port 199496 username morteza4424 199496 kill_reason Another user logged on this global unique id 199496 mac 199496 bytes_out 0 199496 bytes_in 0 199496 station_ip 37.129.99.253 199496 port 18 199496 unique_id port 199497 username saeeddamghani 199497 kill_reason Another user logged on this global unique id 199497 mac 199497 bytes_out 0 199497 bytes_in 0 199497 station_ip 5.119.245.68 199497 port 19 199497 unique_id port 199500 username hadibarzegar 199500 mac 199500 bytes_out 0 199500 bytes_in 0 199500 station_ip 5.119.215.192 199500 port 17 199500 unique_id port 199500 remote_ip 10.8.0.170 199505 username houshang 199505 kill_reason Another user logged on this global unique id 199505 mac 199505 bytes_out 0 199505 bytes_in 0 199505 station_ip 5.120.10.112 199505 port 23 199505 unique_id port 199507 username hadibarzegar 199507 kill_reason Maximum check online fails reached 199507 mac 199507 bytes_out 0 199507 bytes_in 0 199507 station_ip 83.123.163.95 199507 port 17 199507 unique_id port 199509 username farhad3 199509 mac 199509 bytes_out 0 199509 bytes_in 0 199509 station_ip 5.119.43.40 199509 port 19 199488 kill_reason Maximum check online fails reached 199488 mac 199488 bytes_out 0 199488 bytes_in 0 199488 station_ip 5.119.43.40 199488 port 16 199488 unique_id port 199493 username hatami 199493 kill_reason Maximum check online fails reached 199493 mac 199493 bytes_out 0 199493 bytes_in 0 199493 station_ip 151.235.77.244 199493 port 18 199493 unique_id port 199498 username saeeddamghani 199498 kill_reason Maximum check online fails reached 199498 mac 199498 bytes_out 0 199498 bytes_in 0 199498 station_ip 5.119.245.68 199498 port 19 199498 unique_id port 199499 username kharazmi2920 199499 mac 199499 bytes_out 579318 199499 bytes_in 4129181 199499 station_ip 83.123.28.86 199499 port 17 199499 unique_id port 199499 remote_ip 10.8.0.34 199501 username morteza4424 199501 mac 199501 bytes_out 0 199501 bytes_in 0 199501 station_ip 37.129.99.253 199501 port 18 199501 unique_id port 199501 remote_ip 10.8.0.70 199515 username farhad3 199515 kill_reason Another user logged on this global unique id 199515 mac 199515 bytes_out 0 199515 bytes_in 0 199515 station_ip 5.119.43.40 199515 port 23 199515 unique_id port 199516 username farhad3 199516 kill_reason Maximum check online fails reached 199516 mac 199516 bytes_out 0 199516 bytes_in 0 199516 station_ip 5.119.43.40 199516 port 23 199516 unique_id port 199518 username rajaei 199518 kill_reason Maximum check online fails reached 199518 mac 199518 bytes_out 0 199518 bytes_in 0 199518 station_ip 89.34.49.87 199518 port 23 199518 unique_id port 199519 username mosi 199519 mac 199519 bytes_out 0 199519 bytes_in 0 199519 station_ip 151.235.106.19 199519 port 16 199519 unique_id port 199519 remote_ip 10.8.1.118 199521 username hamid.e 199521 unique_id port 199521 terminate_cause User-Request 199521 bytes_out 11862396 199521 bytes_in 377677831 199521 station_ip 31.56.156.136 199521 port 15729674 199521 nas_port_type Virtual 199521 remote_ip 5.5.5.190 199522 username farhad3 199522 kill_reason Another user logged on this global unique id 199522 mac 199522 bytes_out 0 199522 bytes_in 0 199522 station_ip 5.119.43.40 199522 port 16 199522 unique_id port 199526 username dortaj3792 199526 mac 199526 bytes_out 0 199526 bytes_in 0 199526 station_ip 5.119.175.11 199526 port 15 199526 unique_id port 199526 remote_ip 10.8.0.30 199528 username farhad3 199528 kill_reason Maximum check online fails reached 199528 mac 199528 bytes_out 0 199528 bytes_in 0 199528 station_ip 5.119.43.40 199528 port 16 199528 unique_id port 199530 username sabaghnezhad 199530 kill_reason Another user logged on this global unique id 199530 mac 199530 bytes_out 0 199530 bytes_in 0 199530 station_ip 37.129.250.150 199530 port 10 199530 unique_id port 199531 username sabaghnezhad 199531 kill_reason Maximum check online fails reached 199531 mac 199531 bytes_out 0 199531 bytes_in 0 199531 station_ip 37.129.250.150 199531 port 10 199531 unique_id port 199533 username sabaghnezhad 199533 mac 199533 bytes_out 0 199533 bytes_in 0 199533 station_ip 37.129.250.150 199533 port 10 199533 unique_id port 199533 remote_ip 10.8.0.18 199535 username rajaei 199535 kill_reason Another user logged on this global unique id 199535 mac 199535 bytes_out 0 199535 bytes_in 0 199535 station_ip 89.34.49.87 199535 port 17 199535 unique_id port 199537 username rajaei 199537 kill_reason Maximum check online fails reached 199537 mac 199537 bytes_out 0 199537 bytes_in 0 199537 station_ip 89.34.49.87 199537 port 17 199537 unique_id port 199541 username rajaei 199541 kill_reason Maximum check online fails reached 199541 mac 199541 bytes_out 0 199541 bytes_in 0 199541 station_ip 89.34.49.87 199506 username hadibarzegar 199506 kill_reason Another user logged on this global unique id 199506 mac 199506 bytes_out 0 199506 bytes_in 0 199506 station_ip 83.123.163.95 199506 port 17 199506 unique_id port 199508 username sabaghnezhad 199508 mac 199508 bytes_out 694309 199508 bytes_in 2027331 199508 station_ip 83.122.98.225 199508 port 10 199508 unique_id port 199508 remote_ip 10.8.0.18 199511 username sabaghnezhad 199511 kill_reason Another user logged on this global unique id 199511 mac 199511 bytes_out 0 199511 bytes_in 0 199511 station_ip 83.122.98.225 199511 port 10 199511 unique_id port 199512 username houshang 199512 mac 199512 bytes_out 0 199512 bytes_in 0 199512 station_ip 5.120.10.112 199512 port 23 199512 unique_id port 199512 remote_ip 10.8.1.134 199513 username farhad3 199513 kill_reason Another user logged on this global unique id 199513 mac 199513 bytes_out 0 199513 bytes_in 0 199513 station_ip 5.119.43.40 199513 port 23 199513 unique_id port 199514 username farhad3 199514 kill_reason Maximum check online fails reached 199514 mac 199514 bytes_out 0 199514 bytes_in 0 199514 station_ip 5.119.43.40 199514 port 23 199514 unique_id port 199524 username farhad3 199524 kill_reason Another user logged on this global unique id 199524 mac 199524 bytes_out 0 199524 bytes_in 0 199524 station_ip 5.119.43.40 199524 port 16 199524 unique_id port 199532 username kharazmi2920 199532 mac 199532 bytes_out 275962 199532 bytes_in 573803 199532 station_ip 83.123.28.86 199532 port 22 199532 unique_id port 199532 remote_ip 10.8.1.178 199534 username rajaei 199534 mac 199534 bytes_out 0 199534 bytes_in 0 199534 station_ip 89.34.49.87 199534 port 17 199534 unique_id port 199534 remote_ip 10.8.0.194 199536 username rajaei 199536 kill_reason Another user logged on this global unique id 199536 mac 199536 bytes_out 0 199536 bytes_in 0 199536 station_ip 89.34.49.87 199536 port 16 199536 unique_id port 199540 username mohammadjavad 199540 kill_reason Another user logged on this global unique id 199540 mac 199540 bytes_out 0 199540 bytes_in 0 199540 station_ip 37.129.174.25 199540 port 10 199540 unique_id port 199542 username mohammadjavad 199542 kill_reason Another user logged on this global unique id 199542 mac 199542 bytes_out 0 199542 bytes_in 0 199542 station_ip 37.129.174.25 199542 port 10 199542 unique_id port 199546 username mohammadjavad 199546 kill_reason Another user logged on this global unique id 199546 mac 199546 bytes_out 0 199546 bytes_in 0 199546 station_ip 37.129.174.25 199546 port 10 199546 unique_id port 199548 username rajaei 199548 mac 199548 bytes_out 319717 199548 bytes_in 6215435 199548 station_ip 89.34.49.87 199548 port 16 199548 unique_id port 199548 remote_ip 10.8.1.146 199549 username kharazmi2920 199549 kill_reason Another user logged on this global unique id 199549 mac 199549 bytes_out 0 199549 bytes_in 0 199549 station_ip 83.123.28.86 199549 port 14 199549 unique_id port 199551 username mosi 199551 kill_reason Another user logged on this global unique id 199551 mac 199551 bytes_out 0 199551 bytes_in 0 199551 station_ip 151.235.106.19 199551 port 16 199551 unique_id port 199554 username hadibarzegar 199554 kill_reason Another user logged on this global unique id 199554 mac 199554 bytes_out 0 199554 bytes_in 0 199554 station_ip 83.123.207.83 199554 port 15 199554 unique_id port 199557 username hadibarzegar 199557 kill_reason Another user logged on this global unique id 199557 mac 199557 bytes_out 0 199557 bytes_in 0 199557 station_ip 83.123.207.83 199557 port 15 199557 unique_id port 199562 username farhad3 199562 kill_reason Another user logged on this global unique id 199562 mac 199509 unique_id port 199509 remote_ip 10.8.0.46 199510 username sabaghnezhad 199510 kill_reason Another user logged on this global unique id 199510 mac 199510 bytes_out 0 199510 bytes_in 0 199510 station_ip 83.122.98.225 199510 port 10 199510 unique_id port 199517 username rajaei 199517 kill_reason Another user logged on this global unique id 199517 mac 199517 bytes_out 0 199517 bytes_in 0 199517 station_ip 89.34.49.87 199517 port 23 199517 unique_id port 199520 username hamid1430 199520 mac 199520 bytes_out 4546435 199520 bytes_in 16328376 199520 station_ip 83.123.144.241 199520 port 14 199520 unique_id port 199520 remote_ip 10.8.0.110 199523 username farhad3 199523 kill_reason Another user logged on this global unique id 199523 mac 199523 bytes_out 0 199523 bytes_in 0 199523 station_ip 5.119.43.40 199523 port 16 199523 unique_id port 199525 username farhad3 199525 kill_reason Maximum check online fails reached 199525 mac 199525 bytes_out 0 199525 bytes_in 0 199525 station_ip 5.119.43.40 199525 port 16 199525 unique_id port 199527 username farhad3 199527 kill_reason Another user logged on this global unique id 199527 mac 199527 bytes_out 0 199527 bytes_in 0 199527 station_ip 5.119.43.40 199527 port 16 199527 unique_id port 199529 username sabaghnezhad 199529 mac 199529 bytes_out 0 199529 bytes_in 0 199529 station_ip 83.122.98.225 199529 port 10 199529 unique_id port 199529 remote_ip 10.8.0.18 199538 username mohammadjavad 199538 kill_reason Another user logged on this global unique id 199538 mac 199538 bytes_out 0 199538 bytes_in 0 199538 station_ip 37.129.174.25 199538 port 10 199538 unique_id port 199539 username mohammadjavad 199539 kill_reason Another user logged on this global unique id 199539 mac 199539 bytes_out 0 199539 bytes_in 0 199539 station_ip 37.129.174.25 199539 port 10 199539 unique_id port 199544 username aminvpn 199544 unique_id port 199544 terminate_cause User-Request 199544 bytes_out 0 199544 bytes_in 210 199544 station_ip 83.122.237.47 199544 port 15729677 199544 nas_port_type Virtual 199544 remote_ip 5.5.5.163 199545 username mohammadjavad 199545 kill_reason Another user logged on this global unique id 199545 mac 199545 bytes_out 0 199545 bytes_in 0 199545 station_ip 37.129.174.25 199545 port 10 199545 unique_id port 199553 username hadibarzegar 199553 kill_reason Another user logged on this global unique id 199553 mac 199553 bytes_out 0 199553 bytes_in 0 199553 station_ip 83.123.207.83 199553 port 15 199553 unique_id port 199556 username hadibarzegar 199556 kill_reason Another user logged on this global unique id 199556 mac 199556 bytes_out 0 199556 bytes_in 0 199556 station_ip 83.123.207.83 199556 port 15 199556 unique_id port 199560 username mosi 199560 kill_reason Maximum check online fails reached 199560 mac 199560 bytes_out 0 199560 bytes_in 0 199560 station_ip 151.235.106.19 199560 port 16 199560 unique_id port 199561 username sabaghnezhad 199561 mac 199561 bytes_out 329541 199561 bytes_in 684200 199561 station_ip 37.129.250.150 199561 port 14 199561 unique_id port 199561 remote_ip 10.8.0.18 199564 username farhad3 199564 kill_reason Another user logged on this global unique id 199564 mac 199564 bytes_out 0 199564 bytes_in 0 199564 station_ip 5.119.43.40 199564 port 14 199564 unique_id port 199567 username mohammadjavad 199567 mac 199567 bytes_out 2024398 199567 bytes_in 16578562 199567 station_ip 37.129.174.25 199567 port 10 199567 unique_id port 199567 remote_ip 10.8.0.58 199570 username farhad3 199570 kill_reason Maximum check online fails reached 199570 mac 199570 bytes_out 0 199570 bytes_in 0 199570 station_ip 5.119.251.92 199570 port 16 199570 unique_id port 199541 port 16 199541 unique_id port 199543 username mohammadjavad 199543 kill_reason Another user logged on this global unique id 199543 mac 199543 bytes_out 0 199543 bytes_in 0 199543 station_ip 37.129.174.25 199543 port 10 199543 unique_id port 199547 username mohammadjavad 199547 kill_reason Another user logged on this global unique id 199547 mac 199547 bytes_out 0 199547 bytes_in 0 199547 station_ip 37.129.174.25 199547 port 10 199547 unique_id port 199550 username kharazmi2920 199550 kill_reason Another user logged on this global unique id 199550 mac 199550 bytes_out 0 199550 bytes_in 0 199550 station_ip 83.123.28.86 199550 port 14 199550 unique_id port 199552 username hadibarzegar 199552 kill_reason Another user logged on this global unique id 199552 mac 199552 bytes_out 0 199552 bytes_in 0 199552 station_ip 83.123.207.83 199552 port 15 199552 unique_id port 199555 username hadibarzegar 199555 kill_reason Another user logged on this global unique id 199555 mac 199555 bytes_out 0 199555 bytes_in 0 199555 station_ip 83.123.207.83 199555 port 15 199555 unique_id port 199558 username hadibarzegar 199558 kill_reason Another user logged on this global unique id 199558 mac 199558 bytes_out 0 199558 bytes_in 0 199558 station_ip 83.123.207.83 199558 port 15 199558 unique_id port 199559 username hadibarzegar 199559 kill_reason Another user logged on this global unique id 199559 mac 199559 bytes_out 0 199559 bytes_in 0 199559 station_ip 83.123.207.83 199559 port 15 199559 unique_id port 199563 username farhad3 199563 kill_reason Maximum check online fails reached 199563 mac 199563 bytes_out 0 199563 bytes_in 0 199563 station_ip 5.119.43.40 199563 port 16 199563 unique_id port 199565 username farhad3 199565 kill_reason Another user logged on this global unique id 199565 mac 199565 bytes_out 0 199565 bytes_in 0 199565 station_ip 5.119.43.40 199565 port 16 199565 unique_id port 199566 username farhad3 199566 kill_reason Maximum check online fails reached 199566 mac 199566 bytes_out 0 199566 bytes_in 0 199566 station_ip 5.119.43.40 199566 port 14 199566 unique_id port 199568 username farhad3 199568 kill_reason Maximum check online fails reached 199568 mac 199568 bytes_out 0 199568 bytes_in 0 199568 station_ip 5.119.43.40 199568 port 16 199568 unique_id port 199569 username farhad3 199569 kill_reason Another user logged on this global unique id 199569 mac 199569 bytes_out 0 199569 bytes_in 0 199569 station_ip 5.119.251.92 199569 port 16 199569 unique_id port 199571 username farhad3 199571 mac 199571 bytes_out 744977 199571 bytes_in 4198398 199571 station_ip 5.119.251.92 199571 port 16 199571 unique_id port 199571 remote_ip 10.8.1.38 199572 username farhad3 199572 mac 199572 bytes_out 812514 199572 bytes_in 2351293 199572 station_ip 5.119.251.92 199572 port 16 199572 unique_id port 199572 remote_ip 10.8.1.38 199580 username farhad3 199580 kill_reason Maximum check online fails reached 199580 mac 199580 bytes_out 0 199580 bytes_in 0 199580 station_ip 5.119.251.92 199580 port 16 199580 unique_id port 199584 username milan 199584 kill_reason Maximum check online fails reached 199584 mac 199584 bytes_out 0 199584 bytes_in 0 199584 station_ip 5.119.208.126 199584 port 10 199584 unique_id port 199585 username milan 199585 kill_reason Maximum check online fails reached 199585 mac 199585 bytes_out 0 199585 bytes_in 0 199585 station_ip 5.119.208.126 199585 port 16 199585 unique_id port 199587 username milan 199587 kill_reason Another user logged on this global unique id 199587 mac 199587 bytes_out 0 199587 bytes_in 0 199587 station_ip 5.119.208.126 199587 port 10 199587 unique_id port 199589 username milan 199562 bytes_out 0 199562 bytes_in 0 199562 station_ip 5.119.43.40 199562 port 16 199562 unique_id port 199574 username farhad3 199574 kill_reason Maximum check online fails reached 199574 mac 199574 bytes_out 0 199574 bytes_in 0 199574 station_ip 5.119.251.92 199574 port 16 199574 unique_id port 199575 username hadibarzegar 199575 kill_reason Another user logged on this global unique id 199575 mac 199575 bytes_out 0 199575 bytes_in 0 199575 station_ip 83.123.207.83 199575 port 15 199575 unique_id port 199575 remote_ip 10.8.0.170 199579 username farhad3 199579 kill_reason Another user logged on this global unique id 199579 mac 199579 bytes_out 0 199579 bytes_in 0 199579 station_ip 5.119.251.92 199579 port 16 199579 unique_id port 199583 username milan 199583 kill_reason Another user logged on this global unique id 199583 mac 199583 bytes_out 0 199583 bytes_in 0 199583 station_ip 5.119.208.126 199583 port 16 199583 unique_id port 199586 username milan 199586 kill_reason Another user logged on this global unique id 199586 mac 199586 bytes_out 0 199586 bytes_in 0 199586 station_ip 5.119.208.126 199586 port 10 199586 unique_id port 199586 remote_ip 10.8.0.198 199591 username milan 199591 kill_reason Another user logged on this global unique id 199591 mac 199591 bytes_out 0 199591 bytes_in 0 199591 station_ip 5.119.208.126 199591 port 10 199591 unique_id port 199593 username kalantary6037 199593 mac 199593 bytes_out 0 199593 bytes_in 0 199593 station_ip 37.129.139.71 199593 port 10 199593 unique_id port 199593 remote_ip 10.8.0.10 199596 username kalantary6037 199596 mac 199596 bytes_out 0 199596 bytes_in 0 199596 station_ip 37.129.179.67 199596 port 10 199596 unique_id port 199598 username kalantary6037 199598 mac 199598 bytes_out 1543375 199598 bytes_in 17750760 199598 station_ip 37.129.179.67 199598 port 10 199598 unique_id port 199598 remote_ip 10.8.0.10 199600 username pourshad 199600 kill_reason Another user logged on this global unique id 199600 mac 199600 bytes_out 0 199600 bytes_in 0 199600 station_ip 5.120.240.173 199600 port 23 199600 unique_id port 199600 remote_ip 10.8.1.58 199604 username pourshad 199604 kill_reason Another user logged on this global unique id 199604 mac 199604 bytes_out 0 199604 bytes_in 0 199604 station_ip 5.120.240.173 199604 port 23 199604 unique_id port 199611 username nilufarrajaei 199611 mac 199611 bytes_out 0 199611 bytes_in 0 199611 station_ip 83.122.184.53 199611 port 17 199611 unique_id port 199611 remote_ip 10.8.0.94 199612 username pourshad 199612 kill_reason Another user logged on this global unique id 199612 mac 199612 bytes_out 0 199612 bytes_in 0 199612 station_ip 5.120.240.173 199612 port 23 199612 unique_id port 199613 username nilufarrajaei 199613 mac 199613 bytes_out 0 199613 bytes_in 0 199613 station_ip 83.122.184.53 199613 port 10 199613 unique_id port 199613 remote_ip 10.8.0.94 199615 username sekonji0496 199615 mac 199615 bytes_out 0 199615 bytes_in 0 199615 station_ip 83.122.165.172 199615 port 14 199615 unique_id port 199615 remote_ip 10.8.0.66 199616 username pourshad 199616 kill_reason Another user logged on this global unique id 199616 mac 199616 bytes_out 0 199616 bytes_in 0 199616 station_ip 5.120.240.173 199616 port 23 199616 unique_id port 199617 username pourshad 199617 kill_reason Another user logged on this global unique id 199617 mac 199617 bytes_out 0 199617 bytes_in 0 199617 station_ip 5.120.240.173 199617 port 23 199617 unique_id port 199618 username houshang 199618 mac 199618 bytes_out 176917 199618 bytes_in 312709 199618 station_ip 5.120.37.214 199618 port 25 199573 username farhad3 199573 kill_reason Another user logged on this global unique id 199573 mac 199573 bytes_out 0 199573 bytes_in 0 199573 station_ip 5.119.251.92 199573 port 16 199573 unique_id port 199576 username farhad3 199576 mac 199576 bytes_out 0 199576 bytes_in 0 199576 station_ip 5.119.251.92 199576 port 16 199576 unique_id port 199576 remote_ip 10.8.1.38 199577 username farhad3 199577 kill_reason Another user logged on this global unique id 199577 mac 199577 bytes_out 0 199577 bytes_in 0 199577 station_ip 5.119.251.92 199577 port 16 199577 unique_id port 199578 username farhad3 199578 kill_reason Another user logged on this global unique id 199578 mac 199578 bytes_out 0 199578 bytes_in 0 199578 station_ip 5.119.251.92 199578 port 16 199578 unique_id port 199581 username hadibarzegar 199581 mac 199581 bytes_out 0 199581 bytes_in 0 199581 station_ip 83.123.207.83 199581 port 15 199581 unique_id port 199582 username milan 199582 kill_reason Another user logged on this global unique id 199582 mac 199582 bytes_out 0 199582 bytes_in 0 199582 station_ip 5.119.208.126 199582 port 10 199582 unique_id port 199588 username milan 199588 kill_reason Another user logged on this global unique id 199588 mac 199588 bytes_out 0 199588 bytes_in 0 199588 station_ip 5.119.208.126 199588 port 10 199588 unique_id port 199590 username milan 199590 kill_reason Another user logged on this global unique id 199590 mac 199590 bytes_out 0 199590 bytes_in 0 199590 station_ip 5.119.208.126 199590 port 10 199590 unique_id port 199592 username milan 199592 mac 199592 bytes_out 0 199592 bytes_in 0 199592 station_ip 5.119.208.126 199592 port 10 199592 unique_id port 199594 username kalantary6037 199594 mac 199594 bytes_out 992922 199594 bytes_in 11322459 199594 station_ip 37.129.139.71 199594 port 10 199594 unique_id port 199594 remote_ip 10.8.0.10 199595 username kalantary6037 199595 kill_reason Another user logged on this global unique id 199595 mac 199595 bytes_out 0 199595 bytes_in 0 199595 station_ip 37.129.179.67 199595 port 10 199595 unique_id port 199595 remote_ip 10.8.0.10 199597 username kalantary6037 199597 mac 199597 bytes_out 0 199597 bytes_in 0 199597 station_ip 37.129.179.67 199597 port 14 199597 unique_id port 199597 remote_ip 10.8.0.10 199601 username alipour1506 199601 mac 199601 bytes_out 553186 199601 bytes_in 4708275 199601 station_ip 151.234.23.177 199601 port 14 199601 unique_id port 199601 remote_ip 10.8.0.134 199602 username pourshad 199602 kill_reason Another user logged on this global unique id 199602 mac 199602 bytes_out 0 199602 bytes_in 0 199602 station_ip 5.120.240.173 199602 port 23 199602 unique_id port 199605 username sekonji0496 199605 mac 199605 bytes_out 0 199605 bytes_in 0 199605 station_ip 83.122.165.172 199605 port 15 199605 unique_id port 199605 remote_ip 10.8.0.66 199606 username mohammadjavad 199606 mac 199606 bytes_out 0 199606 bytes_in 0 199606 station_ip 37.129.128.245 199606 port 14 199606 unique_id port 199606 remote_ip 10.8.0.58 199607 username kharazmi2920 199607 mac 199607 bytes_out 0 199607 bytes_in 0 199607 station_ip 83.123.28.86 199607 port 10 199607 unique_id port 199607 remote_ip 10.8.0.34 199608 username nilufarrajaei 199608 mac 199608 bytes_out 0 199608 bytes_in 0 199608 station_ip 83.122.184.53 199608 port 10 199608 unique_id port 199608 remote_ip 10.8.0.94 199609 username mohammadjavad 199609 mac 199609 bytes_out 0 199609 bytes_in 0 199609 station_ip 37.129.128.245 199609 port 15 199609 unique_id port 199609 remote_ip 10.8.0.58 199589 kill_reason Another user logged on this global unique id 199589 mac 199589 bytes_out 0 199589 bytes_in 0 199589 station_ip 5.119.208.126 199589 port 10 199589 unique_id port 199599 username aminvpn 199599 unique_id port 199599 terminate_cause Lost-Carrier 199599 bytes_out 351415 199599 bytes_in 2102722 199599 station_ip 37.129.38.63 199599 port 15729682 199599 nas_port_type Virtual 199599 remote_ip 5.5.5.165 199603 username fezealinaghi 199603 mac 199603 bytes_out 0 199603 bytes_in 0 199603 station_ip 113.203.109.218 199603 port 17 199603 unique_id port 199603 remote_ip 10.8.0.98 199610 username iranmanesh4443 199610 mac 199610 bytes_out 125950 199610 bytes_in 609391 199610 station_ip 5.119.24.59 199610 port 25 199610 unique_id port 199610 remote_ip 10.8.1.122 199614 username hadibarzegar 199614 mac 199614 bytes_out 0 199614 bytes_in 0 199614 station_ip 83.123.159.215 199614 port 10 199614 unique_id port 199614 remote_ip 10.8.0.170 199618 unique_id port 199618 remote_ip 10.8.1.134 199619 username meysam 199619 kill_reason Another user logged on this global unique id 199619 mac 199619 bytes_out 0 199619 bytes_in 0 199619 station_ip 188.158.50.242 199619 port 10 199619 unique_id port 199619 remote_ip 10.8.0.142 199620 username meysam 199620 kill_reason Another user logged on this global unique id 199620 mac 199620 bytes_out 0 199620 bytes_in 0 199620 station_ip 188.158.50.242 199620 port 10 199620 unique_id port 199621 username meysam 199621 mac 199621 bytes_out 0 199621 bytes_in 0 199621 station_ip 188.158.50.242 199621 port 10 199621 unique_id port 199622 username sekonji0496 199622 mac 199622 bytes_out 0 199622 bytes_in 0 199622 station_ip 83.122.165.172 199622 port 10 199622 unique_id port 199622 remote_ip 10.8.0.66 199623 username nilufarrajaei 199623 mac 199623 bytes_out 0 199623 bytes_in 0 199623 station_ip 83.122.184.53 199623 port 15 199623 unique_id port 199623 remote_ip 10.8.0.94 199624 username sekonji0496 199624 mac 199624 bytes_out 0 199624 bytes_in 0 199624 station_ip 83.122.165.172 199624 port 10 199624 unique_id port 199624 remote_ip 10.8.0.66 199625 username sekonji0496 199625 mac 199625 bytes_out 0 199625 bytes_in 0 199625 station_ip 83.122.165.172 199625 port 10 199625 unique_id port 199625 remote_ip 10.8.0.66 199626 username nilufarrajaei 199626 mac 199626 bytes_out 0 199626 bytes_in 0 199626 station_ip 83.122.184.53 199626 port 25 199626 unique_id port 199626 remote_ip 10.8.1.138 199627 username sekonji0496 199627 mac 199627 bytes_out 0 199627 bytes_in 0 199627 station_ip 83.122.165.172 199627 port 10 199627 unique_id port 199627 remote_ip 10.8.0.66 199628 username farhad3 199628 mac 199628 bytes_out 0 199628 bytes_in 0 199628 station_ip 5.119.251.92 199628 port 15 199628 unique_id port 199628 remote_ip 10.8.0.46 199629 username nilufarrajaei 199629 kill_reason Maximum number of concurrent logins reached 199629 mac 199629 bytes_out 0 199629 bytes_in 0 199629 station_ip 83.122.184.53 199629 port 26 199629 unique_id port 199630 username nilufarrajaei 199630 mac 199630 bytes_out 0 199630 bytes_in 0 199630 station_ip 83.122.184.53 199630 port 15 199630 unique_id port 199630 remote_ip 10.8.0.94 199631 username meysam 199631 kill_reason Another user logged on this global unique id 199631 mac 199631 bytes_out 0 199631 bytes_in 0 199631 station_ip 188.159.252.93 199631 port 10 199631 unique_id port 199631 remote_ip 10.8.0.142 199632 username nilufarrajaei 199632 kill_reason Maximum check online fails reached 199632 mac 199632 bytes_out 0 199632 bytes_in 0 199632 station_ip 83.122.184.53 199632 port 17 199632 unique_id port 199635 username seyedrezaei2572 199635 mac 199635 bytes_out 1667523 199635 bytes_in 6733384 199635 station_ip 83.121.50.237 199635 port 14 199635 unique_id port 199635 remote_ip 10.8.0.186 199637 username sekonji0496 199637 mac 199637 bytes_out 0 199637 bytes_in 0 199637 station_ip 83.122.165.172 199637 port 14 199637 unique_id port 199637 remote_ip 10.8.0.66 199638 username meysam 199638 kill_reason Another user logged on this global unique id 199638 mac 199638 bytes_out 0 199638 bytes_in 0 199638 station_ip 188.159.252.93 199638 port 10 199638 unique_id port 199641 username sekonji0496 199641 mac 199641 bytes_out 0 199641 bytes_in 0 199641 station_ip 83.122.165.172 199641 port 14 199641 unique_id port 199641 remote_ip 10.8.0.66 199645 username pourshad 199645 mac 199645 bytes_out 0 199645 bytes_in 0 199645 station_ip 5.120.240.173 199645 port 23 199645 unique_id port 199647 username sekonji0496 199647 mac 199647 bytes_out 0 199647 bytes_in 0 199647 station_ip 83.122.165.172 199647 port 15 199647 unique_id port 199647 remote_ip 10.8.0.66 199653 username dortaj3792 199653 mac 199653 bytes_out 0 199653 bytes_in 0 199653 station_ip 5.119.175.11 199653 port 22 199653 unique_id port 199653 remote_ip 10.8.1.34 199655 username pourshad 199655 kill_reason Another user logged on this global unique id 199655 mac 199655 bytes_out 0 199655 bytes_in 0 199655 station_ip 5.120.240.173 199655 port 23 199655 unique_id port 199661 username sekonji0496 199661 mac 199661 bytes_out 0 199661 bytes_in 0 199661 station_ip 83.122.165.172 199661 port 25 199661 unique_id port 199661 remote_ip 10.8.1.98 199662 username sekonji0496 199662 mac 199662 bytes_out 0 199662 bytes_in 0 199662 station_ip 83.122.165.172 199662 port 25 199662 unique_id port 199662 remote_ip 10.8.1.98 199666 username sekonji0496 199666 mac 199666 bytes_out 0 199666 bytes_in 0 199666 station_ip 83.122.165.172 199666 port 25 199666 unique_id port 199666 remote_ip 10.8.1.98 199667 username sekonji0496 199667 mac 199667 bytes_out 0 199667 bytes_in 0 199667 station_ip 83.122.165.172 199667 port 25 199667 unique_id port 199667 remote_ip 10.8.1.98 199670 username sekonji0496 199670 mac 199670 bytes_out 0 199670 bytes_in 0 199670 station_ip 83.122.165.172 199670 port 25 199670 unique_id port 199670 remote_ip 10.8.1.98 199671 username pourshad 199671 kill_reason Another user logged on this global unique id 199671 mac 199671 bytes_out 0 199671 bytes_in 0 199671 station_ip 5.120.240.173 199671 port 23 199671 unique_id port 199672 username mammad 199672 unique_id port 199672 terminate_cause Lost-Carrier 199672 bytes_out 804856 199672 bytes_in 7004008 199672 station_ip 46.100.216.120 199672 port 15729684 199672 nas_port_type Virtual 199672 remote_ip 5.5.5.173 199674 username kalantary6037 199674 mac 199674 bytes_out 11491127 199674 bytes_in 5020082 199674 station_ip 37.129.199.83 199674 port 15 199674 unique_id port 199674 remote_ip 10.8.0.10 199675 username dortaj3792 199675 mac 199675 bytes_out 0 199675 bytes_in 0 199675 station_ip 5.119.175.11 199675 port 28 199675 unique_id port 199675 remote_ip 10.8.1.34 199676 username saeeddamghani 199676 kill_reason Another user logged on this global unique id 199676 mac 199676 bytes_out 0 199676 bytes_in 0 199676 station_ip 217.60.218.61 199676 port 25 199676 unique_id port 199676 remote_ip 10.8.1.66 199682 username alirezaza 199682 unique_id port 199682 terminate_cause Lost-Carrier 199682 bytes_out 99920 199633 username sekonji0496 199633 mac 199633 bytes_out 0 199633 bytes_in 0 199633 station_ip 83.122.165.172 199633 port 19 199633 unique_id port 199633 remote_ip 10.8.0.66 199644 username sekonji0496 199644 mac 199644 bytes_out 0 199644 bytes_in 0 199644 station_ip 83.122.165.172 199644 port 15 199644 unique_id port 199644 remote_ip 10.8.0.66 199646 username meysam 199646 kill_reason Another user logged on this global unique id 199646 mac 199646 bytes_out 0 199646 bytes_in 0 199646 station_ip 188.159.252.93 199646 port 10 199646 unique_id port 199649 username meysam 199649 mac 199649 bytes_out 0 199649 bytes_in 0 199649 station_ip 188.159.252.93 199649 port 10 199649 unique_id port 199651 username pourshad 199651 kill_reason Another user logged on this global unique id 199651 mac 199651 bytes_out 0 199651 bytes_in 0 199651 station_ip 5.120.240.173 199651 port 23 199651 unique_id port 199651 remote_ip 10.8.1.58 199654 username sekonji0496 199654 mac 199654 bytes_out 0 199654 bytes_in 0 199654 station_ip 83.122.165.172 199654 port 22 199654 unique_id port 199654 remote_ip 10.8.1.98 199656 username hatami 199656 mac 199656 bytes_out 0 199656 bytes_in 0 199656 station_ip 37.27.24.189 199656 port 25 199656 unique_id port 199656 remote_ip 10.8.1.26 199658 username sekonji0496 199658 mac 199658 bytes_out 0 199658 bytes_in 0 199658 station_ip 83.122.165.172 199658 port 22 199658 unique_id port 199658 remote_ip 10.8.1.98 199660 username meysam 199660 kill_reason Another user logged on this global unique id 199660 mac 199660 bytes_out 0 199660 bytes_in 0 199660 station_ip 188.159.252.93 199660 port 15 199660 unique_id port 199660 remote_ip 10.8.0.142 199668 username meysam 199668 mac 199668 bytes_out 0 199668 bytes_in 0 199668 station_ip 188.159.252.93 199668 port 15 199668 unique_id port 199669 username pourshad 199669 kill_reason Another user logged on this global unique id 199669 mac 199669 bytes_out 0 199669 bytes_in 0 199669 station_ip 5.120.240.173 199669 port 23 199669 unique_id port 199673 username pourshad 199673 kill_reason Another user logged on this global unique id 199673 mac 199673 bytes_out 0 199673 bytes_in 0 199673 station_ip 5.120.240.173 199673 port 23 199673 unique_id port 199678 username pourshad 199678 kill_reason Another user logged on this global unique id 199678 mac 199678 bytes_out 0 199678 bytes_in 0 199678 station_ip 5.120.240.173 199678 port 23 199678 unique_id port 199681 username saeeddamghani 199681 mac 199681 bytes_out 0 199681 bytes_in 0 199681 station_ip 217.60.218.61 199681 port 25 199681 unique_id port 199681 remote_ip 10.8.1.66 199683 username saeeddamghani 199683 mac 199683 bytes_out 0 199683 bytes_in 0 199683 station_ip 217.60.218.61 199683 port 15 199683 unique_id port 199683 remote_ip 10.8.0.26 199685 username alipour1506 199685 mac 199685 bytes_out 423451 199685 bytes_in 2449677 199685 station_ip 37.129.242.93 199685 port 10 199685 unique_id port 199685 remote_ip 10.8.0.134 199686 username meysam 199686 kill_reason Another user logged on this global unique id 199686 mac 199686 bytes_out 0 199686 bytes_in 0 199686 station_ip 188.159.252.93 199686 port 20 199686 unique_id port 199686 remote_ip 10.8.0.142 199692 username alipour1506 199692 mac 199692 bytes_out 189502 199692 bytes_in 840304 199692 station_ip 37.129.242.93 199692 port 10 199692 unique_id port 199692 remote_ip 10.8.0.134 199694 username kharazmi2920 199694 mac 199694 bytes_out 0 199694 bytes_in 0 199694 station_ip 83.123.28.86 199694 port 28 199694 unique_id port 199634 username meysam 199634 kill_reason Another user logged on this global unique id 199634 mac 199634 bytes_out 0 199634 bytes_in 0 199634 station_ip 188.159.252.93 199634 port 10 199634 unique_id port 199636 username sekonji0496 199636 mac 199636 bytes_out 0 199636 bytes_in 0 199636 station_ip 83.122.165.172 199636 port 14 199636 unique_id port 199636 remote_ip 10.8.0.66 199639 username barzegar8595 199639 mac 199639 bytes_out 1137437 199639 bytes_in 15048581 199639 station_ip 89.32.108.104 199639 port 25 199639 unique_id port 199639 remote_ip 10.8.1.50 199640 username nilufarrajaei 199640 kill_reason Another user logged on this global unique id 199640 mac 199640 bytes_out 0 199640 bytes_in 0 199640 station_ip 83.122.184.53 199640 port 15 199640 unique_id port 199640 remote_ip 10.8.0.94 199642 username sekonji0496 199642 mac 199642 bytes_out 0 199642 bytes_in 0 199642 station_ip 83.122.165.172 199642 port 14 199642 unique_id port 199642 remote_ip 10.8.0.66 199643 username nilufarrajaei 199643 mac 199643 bytes_out 0 199643 bytes_in 0 199643 station_ip 83.122.184.53 199643 port 15 199643 unique_id port 199648 username sekonji0496 199648 mac 199648 bytes_out 0 199648 bytes_in 0 199648 station_ip 83.122.165.172 199648 port 15 199648 unique_id port 199648 remote_ip 10.8.0.66 199650 username sekonji0496 199650 mac 199650 bytes_out 0 199650 bytes_in 0 199650 station_ip 83.122.165.172 199650 port 26 199650 unique_id port 199650 remote_ip 10.8.1.98 199652 username sekonji0496 199652 mac 199652 bytes_out 0 199652 bytes_in 0 199652 station_ip 83.122.165.172 199652 port 28 199652 unique_id port 199652 remote_ip 10.8.1.98 199657 username sekonji0496 199657 mac 199657 bytes_out 0 199657 bytes_in 0 199657 station_ip 83.122.165.172 199657 port 22 199657 unique_id port 199657 remote_ip 10.8.1.98 199659 username sekonji0496 199659 mac 199659 bytes_out 0 199659 bytes_in 0 199659 station_ip 83.122.165.172 199659 port 25 199659 unique_id port 199659 remote_ip 10.8.1.98 199663 username mammad 199663 unique_id port 199663 terminate_cause Lost-Carrier 199663 bytes_out 410945 199663 bytes_in 6211817 199663 station_ip 2.183.241.123 199663 port 15729683 199663 nas_port_type Virtual 199663 remote_ip 5.5.5.166 199664 username sekonji0496 199664 mac 199664 bytes_out 0 199664 bytes_in 0 199664 station_ip 83.122.165.172 199664 port 25 199664 unique_id port 199664 remote_ip 10.8.1.98 199665 username sabaghnezhad 199665 mac 199665 bytes_out 0 199665 bytes_in 0 199665 station_ip 83.123.130.115 199665 port 28 199665 unique_id port 199665 remote_ip 10.8.1.42 199677 username pourshad 199677 kill_reason Another user logged on this global unique id 199677 mac 199677 bytes_out 0 199677 bytes_in 0 199677 station_ip 5.120.240.173 199677 port 23 199677 unique_id port 199679 username saeeddamghani 199679 mac 199679 bytes_out 0 199679 bytes_in 0 199679 station_ip 217.60.218.61 199679 port 25 199679 unique_id port 199680 username kharazmi2920 199680 mac 199680 bytes_out 1135461 199680 bytes_in 15201865 199680 station_ip 83.123.28.86 199680 port 15 199680 unique_id port 199680 remote_ip 10.8.0.34 199687 username alipour1506 199687 mac 199687 bytes_out 215759 199687 bytes_in 1378642 199687 station_ip 37.129.242.93 199687 port 10 199687 unique_id port 199687 remote_ip 10.8.0.134 199691 username saeeddamghani 199691 mac 199691 bytes_out 0 199691 bytes_in 0 199691 station_ip 217.60.218.61 199691 port 29 199691 unique_id port 199691 remote_ip 10.8.1.66 199698 username nilufarrajaei 199682 bytes_in 487664 199682 station_ip 5.119.145.220 199682 port 15729685 199682 nas_port_type Virtual 199682 remote_ip 5.5.5.176 199684 username pourshad 199684 kill_reason Another user logged on this global unique id 199684 mac 199684 bytes_out 0 199684 bytes_in 0 199684 station_ip 5.120.240.173 199684 port 23 199684 unique_id port 199688 username pourshad 199688 kill_reason Another user logged on this global unique id 199688 mac 199688 bytes_out 0 199688 bytes_in 0 199688 station_ip 5.120.240.173 199688 port 23 199688 unique_id port 199689 username sabaghnezhad 199689 mac 199689 bytes_out 435934 199689 bytes_in 1578078 199689 station_ip 83.123.130.115 199689 port 19 199689 unique_id port 199689 remote_ip 10.8.0.18 199690 username meysam 199690 mac 199690 bytes_out 0 199690 bytes_in 0 199690 station_ip 188.159.252.93 199690 port 20 199690 unique_id port 199693 username pourshad 199693 mac 199693 bytes_out 0 199693 bytes_in 0 199693 station_ip 5.120.240.173 199693 port 23 199693 unique_id port 199695 username pourshad 199695 mac 199695 bytes_out 0 199695 bytes_in 0 199695 station_ip 5.120.240.173 199695 port 23 199695 unique_id port 199695 remote_ip 10.8.1.58 199697 username pourshad 199697 mac 199697 bytes_out 0 199697 bytes_in 0 199697 station_ip 5.120.240.173 199697 port 23 199697 unique_id port 199697 remote_ip 10.8.1.58 199704 username hatami 199704 kill_reason Another user logged on this global unique id 199704 mac 199704 bytes_out 0 199704 bytes_in 0 199704 station_ip 37.27.24.189 199704 port 22 199704 unique_id port 199704 remote_ip 10.8.1.26 199707 username fezealinaghi 199707 kill_reason Another user logged on this global unique id 199707 mac 199707 bytes_out 0 199707 bytes_in 0 199707 station_ip 113.203.109.218 199707 port 18 199707 unique_id port 199708 username ahmadi1 199708 mac 199708 bytes_out 0 199708 bytes_in 0 199708 station_ip 83.122.75.204 199708 port 22 199708 unique_id port 199708 remote_ip 10.8.0.42 199709 username pourshad 199709 kill_reason Another user logged on this global unique id 199709 mac 199709 bytes_out 0 199709 bytes_in 0 199709 station_ip 5.120.240.173 199709 port 23 199709 unique_id port 199709 remote_ip 10.8.1.58 199711 username kalantary6037 199711 mac 199711 bytes_out 166050 199711 bytes_in 341987 199711 station_ip 37.129.207.99 199711 port 20 199711 unique_id port 199711 remote_ip 10.8.0.10 199714 username alipour1506 199714 mac 199714 bytes_out 252176 199714 bytes_in 1053681 199714 station_ip 37.129.242.93 199714 port 19 199714 unique_id port 199714 remote_ip 10.8.0.134 199717 username pourshad 199717 mac 199717 bytes_out 0 199717 bytes_in 0 199717 station_ip 5.120.240.173 199717 port 23 199717 unique_id port 199717 remote_ip 10.8.1.58 199720 username yarmohamadi7916 199720 kill_reason Another user logged on this global unique id 199720 mac 199720 bytes_out 0 199720 bytes_in 0 199720 station_ip 5.120.51.79 199720 port 26 199720 unique_id port 199720 remote_ip 10.8.1.154 199723 username pourshad 199723 kill_reason Maximum check online fails reached 199723 mac 199723 bytes_out 0 199723 bytes_in 0 199723 station_ip 5.120.240.173 199723 port 23 199723 unique_id port 199729 username pourshad 199729 mac 199729 bytes_out 8184874 199729 bytes_in 634433 199729 station_ip 5.120.240.173 199729 port 31 199729 unique_id port 199729 remote_ip 10.8.1.58 199731 username alipour1506 199731 mac 199731 bytes_out 0 199731 bytes_in 0 199731 station_ip 37.129.242.93 199731 port 28 199731 unique_id port 199731 remote_ip 10.8.1.86 199741 username pourshad 199694 remote_ip 10.8.1.178 199696 username saeeddamghani 199696 mac 199696 bytes_out 0 199696 bytes_in 0 199696 station_ip 217.60.218.61 199696 port 28 199696 unique_id port 199696 remote_ip 10.8.1.66 199713 username saeeddamghani 199713 mac 199713 bytes_out 0 199713 bytes_in 0 199713 station_ip 217.60.218.61 199713 port 28 199713 unique_id port 199713 remote_ip 10.8.1.66 199715 username pourshad 199715 mac 199715 bytes_out 0 199715 bytes_in 0 199715 station_ip 5.120.240.173 199715 port 23 199715 unique_id port 199718 username nilufarrajaei 199718 kill_reason Another user logged on this global unique id 199718 mac 199718 bytes_out 0 199718 bytes_in 0 199718 station_ip 83.122.184.53 199718 port 14 199718 unique_id port 199721 username kalantary6037 199721 mac 199721 bytes_out 142159 199721 bytes_in 264899 199721 station_ip 37.129.12.214 199721 port 10 199721 unique_id port 199721 remote_ip 10.8.0.10 199722 username pourshad 199722 mac 199722 bytes_out 0 199722 bytes_in 0 199722 station_ip 5.120.240.173 199722 port 23 199722 unique_id port 199722 remote_ip 10.8.1.58 199725 username meysam 199725 mac 199725 bytes_out 2775394 199725 bytes_in 43159711 199725 station_ip 188.159.252.93 199725 port 19 199725 unique_id port 199725 remote_ip 10.8.0.142 199728 username godarzi 199728 kill_reason Another user logged on this global unique id 199728 mac 199728 bytes_out 0 199728 bytes_in 0 199728 station_ip 5.202.62.43 199728 port 25 199728 unique_id port 199730 username pourshad 199730 mac 199730 bytes_out 0 199730 bytes_in 0 199730 station_ip 5.120.240.173 199730 port 31 199730 unique_id port 199730 remote_ip 10.8.1.58 199732 username barzegar8595 199732 mac 199732 bytes_out 0 199732 bytes_in 0 199732 station_ip 46.225.215.43 199732 port 29 199732 unique_id port 199732 remote_ip 10.8.1.50 199734 username meysam 199734 kill_reason Another user logged on this global unique id 199734 mac 199734 bytes_out 0 199734 bytes_in 0 199734 station_ip 188.159.252.93 199734 port 18 199734 unique_id port 199734 remote_ip 10.8.0.142 199742 username nilufarrajaei 199742 kill_reason Another user logged on this global unique id 199742 mac 199742 bytes_out 0 199742 bytes_in 0 199742 station_ip 83.122.184.53 199742 port 14 199742 unique_id port 199745 username nilufarrajaei 199745 mac 199745 bytes_out 0 199745 bytes_in 0 199745 station_ip 83.122.184.53 199745 port 28 199745 unique_id port 199745 remote_ip 10.8.1.138 199749 username kharazmi2920 199749 mac 199749 bytes_out 566939 199749 bytes_in 4248480 199749 station_ip 83.123.28.86 199749 port 15 199749 unique_id port 199749 remote_ip 10.8.0.34 199755 username yarmohamadi7916 199755 mac 199755 bytes_out 0 199755 bytes_in 0 199755 station_ip 5.120.51.79 199755 port 26 199755 unique_id port 199755 remote_ip 10.8.1.154 199756 username barzegar8595 199756 mac 199756 bytes_out 1128829 199756 bytes_in 12171408 199756 station_ip 46.225.215.43 199756 port 14 199756 unique_id port 199756 remote_ip 10.8.0.82 199761 username mammad 199761 unique_id port 199761 terminate_cause User-Request 199761 bytes_out 454780 199761 bytes_in 7104635 199761 station_ip 5.233.66.59 199761 port 15729694 199761 nas_port_type Virtual 199761 remote_ip 5.5.5.148 199763 username houshang 199763 mac 199763 bytes_out 267836 199763 bytes_in 1108170 199763 station_ip 5.119.45.53 199763 port 20 199763 unique_id port 199763 remote_ip 10.8.0.50 199764 username seyedrezaei2572 199764 kill_reason Another user logged on this global unique id 199764 mac 199764 bytes_out 0 199764 bytes_in 0 199698 kill_reason Another user logged on this global unique id 199698 mac 199698 bytes_out 0 199698 bytes_in 0 199698 station_ip 83.122.184.53 199698 port 14 199698 unique_id port 199698 remote_ip 10.8.0.94 199699 username pourshad 199699 mac 199699 bytes_out 0 199699 bytes_in 0 199699 station_ip 5.120.240.173 199699 port 23 199699 unique_id port 199699 remote_ip 10.8.1.58 199700 username aminvpn 199700 unique_id port 199700 terminate_cause Lost-Carrier 199700 bytes_out 9076078 199700 bytes_in 1127949 199700 station_ip 83.122.39.149 199700 port 15729687 199700 nas_port_type Virtual 199700 remote_ip 5.5.5.255 199701 username fezealinaghi 199701 kill_reason Another user logged on this global unique id 199701 mac 199701 bytes_out 0 199701 bytes_in 0 199701 station_ip 113.203.109.218 199701 port 18 199701 unique_id port 199701 remote_ip 10.8.0.98 199702 username kalantary6037 199702 mac 199702 bytes_out 246094 199702 bytes_in 2471091 199702 station_ip 37.129.207.99 199702 port 20 199702 unique_id port 199702 remote_ip 10.8.0.10 199703 username saeeddamghani 199703 mac 199703 bytes_out 0 199703 bytes_in 0 199703 station_ip 217.60.218.61 199703 port 28 199703 unique_id port 199703 remote_ip 10.8.1.66 199705 username godarzi 199705 kill_reason Another user logged on this global unique id 199705 mac 199705 bytes_out 0 199705 bytes_in 0 199705 station_ip 5.202.62.43 199705 port 25 199705 unique_id port 199705 remote_ip 10.8.1.78 199706 username meysam 199706 mac 199706 bytes_out 0 199706 bytes_in 0 199706 station_ip 188.159.252.93 199706 port 21 199706 unique_id port 199706 remote_ip 10.8.0.142 199710 username sabaghnezhad 199710 mac 199710 bytes_out 63791 199710 bytes_in 84901 199710 station_ip 83.123.130.115 199710 port 15 199710 unique_id port 199710 remote_ip 10.8.0.18 199712 username fezealinaghi 199712 kill_reason Another user logged on this global unique id 199712 mac 199712 bytes_out 0 199712 bytes_in 0 199712 station_ip 113.203.109.218 199712 port 18 199712 unique_id port 199716 username pourshad 199716 mac 199716 bytes_out 0 199716 bytes_in 0 199716 station_ip 5.120.240.173 199716 port 23 199716 unique_id port 199716 remote_ip 10.8.1.58 199719 username dortaj3792 199719 mac 199719 bytes_out 1355146 199719 bytes_in 7869882 199719 station_ip 5.119.175.11 199719 port 10 199719 unique_id port 199719 remote_ip 10.8.0.30 199724 username fezealinaghi 199724 mac 199724 bytes_out 0 199724 bytes_in 0 199724 station_ip 113.203.109.218 199724 port 18 199724 unique_id port 199726 username pourshad 199726 mac 199726 bytes_out 5340795 199726 bytes_in 431060 199726 station_ip 5.120.240.173 199726 port 10 199726 unique_id port 199726 remote_ip 10.8.0.54 199727 username kalantary6037 199727 mac 199727 bytes_out 423803 199727 bytes_in 4479984 199727 station_ip 37.129.98.210 199727 port 10 199727 unique_id port 199727 remote_ip 10.8.0.10 199733 username dortaj3792 199733 mac 199733 bytes_out 0 199733 bytes_in 0 199733 station_ip 5.119.175.11 199733 port 10 199733 unique_id port 199733 remote_ip 10.8.0.30 199735 username yarmohamadi7916 199735 mac 199735 bytes_out 0 199735 bytes_in 0 199735 station_ip 5.120.51.79 199735 port 26 199735 unique_id port 199736 username pourshad 199736 mac 199736 bytes_out 0 199736 bytes_in 0 199736 station_ip 5.120.240.173 199736 port 32 199736 unique_id port 199736 remote_ip 10.8.1.58 199737 username meysam 199737 kill_reason Another user logged on this global unique id 199737 mac 199737 bytes_out 0 199737 bytes_in 0 199737 station_ip 188.159.252.93 199737 port 18 199737 unique_id port 199738 username meysam 199738 mac 199738 bytes_out 0 199738 bytes_in 0 199738 station_ip 188.159.252.93 199738 port 18 199738 unique_id port 199739 username barzegar8595 199739 mac 199739 bytes_out 0 199739 bytes_in 0 199739 station_ip 37.27.7.234 199739 port 31 199739 unique_id port 199739 remote_ip 10.8.1.50 199740 username alipour1506 199740 mac 199740 bytes_out 0 199740 bytes_in 0 199740 station_ip 37.129.242.93 199740 port 28 199740 unique_id port 199740 remote_ip 10.8.1.86 199743 username alipour1506 199743 mac 199743 bytes_out 36355 199743 bytes_in 53512 199743 station_ip 37.129.242.93 199743 port 10 199743 unique_id port 199743 remote_ip 10.8.0.134 199744 username nilufarrajaei 199744 mac 199744 bytes_out 0 199744 bytes_in 0 199744 station_ip 83.122.184.53 199744 port 14 199744 unique_id port 199746 username pourshad 199746 mac 199746 bytes_out 0 199746 bytes_in 0 199746 station_ip 5.120.240.173 199746 port 31 199746 unique_id port 199746 remote_ip 10.8.1.58 199747 username sabaghnezhad 199747 mac 199747 bytes_out 172399 199747 bytes_in 215743 199747 station_ip 83.123.130.115 199747 port 15 199747 unique_id port 199747 remote_ip 10.8.0.18 199748 username pourshad 199748 mac 199748 bytes_out 0 199748 bytes_in 0 199748 station_ip 5.120.240.173 199748 port 28 199748 unique_id port 199748 remote_ip 10.8.1.58 199751 username sabaghnezhad 199751 mac 199751 bytes_out 0 199751 bytes_in 0 199751 station_ip 83.123.130.115 199751 port 28 199751 unique_id port 199751 remote_ip 10.8.1.42 199753 username milan 199753 mac 199753 bytes_out 0 199753 bytes_in 0 199753 station_ip 5.120.188.74 199753 port 16 199753 unique_id port 199753 remote_ip 10.8.1.182 199754 username kharazmi2920 199754 mac 199754 bytes_out 78553 199754 bytes_in 245328 199754 station_ip 83.123.28.86 199754 port 19 199754 unique_id port 199754 remote_ip 10.8.0.34 199757 username godarzi 199757 kill_reason Another user logged on this global unique id 199757 mac 199757 bytes_out 0 199757 bytes_in 0 199757 station_ip 5.202.62.43 199757 port 25 199757 unique_id port 199760 username kalantary6037 199760 mac 199760 bytes_out 1646738 199760 bytes_in 26466216 199760 station_ip 37.129.36.146 199760 port 14 199760 unique_id port 199760 remote_ip 10.8.0.10 199766 username sabaghnezhad 199766 mac 199766 bytes_out 43795 199766 bytes_in 58232 199766 station_ip 83.123.130.115 199766 port 14 199766 unique_id port 199766 remote_ip 10.8.0.18 199770 username dortaj3792 199770 mac 199770 bytes_out 0 199770 bytes_in 0 199770 station_ip 5.119.175.11 199770 port 29 199770 unique_id port 199770 remote_ip 10.8.1.34 199774 username arash 199774 mac 199774 bytes_out 0 199774 bytes_in 0 199774 station_ip 37.27.7.223 199774 port 26 199774 unique_id port 199774 remote_ip 10.8.1.54 199777 username seyedrezaei2572 199777 kill_reason Another user logged on this global unique id 199777 mac 199777 bytes_out 0 199777 bytes_in 0 199777 station_ip 83.121.44.209 199777 port 15 199777 unique_id port 199783 username naeimeh 199783 kill_reason Another user logged on this global unique id 199783 mac 199783 bytes_out 0 199783 bytes_in 0 199783 station_ip 37.129.254.226 199783 port 21 199783 unique_id port 199783 remote_ip 10.8.0.202 199785 username naeimeh 199785 mac 199785 bytes_out 0 199785 bytes_in 0 199785 station_ip 37.129.254.226 199785 port 24 199785 unique_id port 199785 remote_ip 10.8.0.202 199787 username sabaghnezhad 199787 mac 199741 mac 199741 bytes_out 0 199741 bytes_in 0 199741 station_ip 5.120.240.173 199741 port 32 199741 unique_id port 199741 remote_ip 10.8.1.58 199750 username kalantary6037 199750 mac 199750 bytes_out 546374 199750 bytes_in 1954527 199750 station_ip 37.129.74.234 199750 port 14 199750 unique_id port 199750 remote_ip 10.8.0.10 199752 username pourshad 199752 mac 199752 bytes_out 0 199752 bytes_in 0 199752 station_ip 5.120.240.173 199752 port 14 199752 unique_id port 199752 remote_ip 10.8.0.54 199758 username pourshad 199758 mac 199758 bytes_out 3666210 199758 bytes_in 628658 199758 station_ip 5.120.240.173 199758 port 19 199758 unique_id port 199758 remote_ip 10.8.0.54 199759 username sabaghnezhad 199759 mac 199759 bytes_out 0 199759 bytes_in 0 199759 station_ip 83.123.130.115 199759 port 28 199759 unique_id port 199759 remote_ip 10.8.1.42 199762 username meysam 199762 mac 199762 bytes_out 2791468 199762 bytes_in 43503232 199762 station_ip 188.159.252.93 199762 port 19 199762 unique_id port 199762 remote_ip 10.8.0.142 199765 username houshang 199765 mac 199765 bytes_out 0 199765 bytes_in 0 199765 station_ip 5.119.45.53 199765 port 16 199765 unique_id port 199765 remote_ip 10.8.1.134 199767 username kalantary6037 199767 mac 199767 bytes_out 303231 199767 bytes_in 6233270 199767 station_ip 37.129.36.242 199767 port 19 199767 unique_id port 199767 remote_ip 10.8.0.10 199771 username godarzi 199771 kill_reason Another user logged on this global unique id 199771 mac 199771 bytes_out 0 199771 bytes_in 0 199771 station_ip 5.202.62.43 199771 port 25 199771 unique_id port 199776 username meysam 199776 mac 199776 bytes_out 1061568 199776 bytes_in 16179081 199776 station_ip 188.159.252.93 199776 port 21 199776 unique_id port 199776 remote_ip 10.8.0.142 199779 username fezealinaghi 199779 mac 199779 bytes_out 1385651 199779 bytes_in 26391549 199779 station_ip 83.123.178.47 199779 port 18 199779 unique_id port 199779 remote_ip 10.8.0.98 199781 username alipour1506 199781 mac 199781 bytes_out 24496 199781 bytes_in 30796 199781 station_ip 37.129.199.3 199781 port 22 199781 unique_id port 199781 remote_ip 10.8.0.134 199782 username meysam 199782 kill_reason Another user logged on this global unique id 199782 mac 199782 bytes_out 0 199782 bytes_in 0 199782 station_ip 188.159.252.93 199782 port 19 199782 unique_id port 199782 remote_ip 10.8.0.142 199784 username naeimeh 199784 mac 199784 bytes_out 0 199784 bytes_in 0 199784 station_ip 37.129.254.226 199784 port 21 199784 unique_id port 199786 username ahmadi1 199786 mac 199786 bytes_out 47448 199786 bytes_in 371264 199786 station_ip 83.122.75.204 199786 port 24 199786 unique_id port 199786 remote_ip 10.8.0.42 199789 username barzegar8595 199789 mac 199789 bytes_out 0 199789 bytes_in 0 199789 station_ip 46.225.232.240 199789 port 28 199789 unique_id port 199789 remote_ip 10.8.1.50 199790 username fezealinaghi 199790 kill_reason Another user logged on this global unique id 199790 mac 199790 bytes_out 0 199790 bytes_in 0 199790 station_ip 83.123.178.47 199790 port 10 199790 unique_id port 199790 remote_ip 10.8.0.98 199791 username ebrahimpour3 199791 mac 199791 bytes_out 1542025 199791 bytes_in 12416668 199791 station_ip 83.123.15.218 199791 port 23 199791 unique_id port 199791 remote_ip 10.8.0.154 199795 username ebrahimpour3 199795 kill_reason Another user logged on this global unique id 199795 mac 199795 bytes_out 0 199795 bytes_in 0 199795 station_ip 83.123.15.218 199795 port 23 199795 unique_id port 199764 station_ip 83.121.44.209 199764 port 15 199764 unique_id port 199764 remote_ip 10.8.0.186 199768 username barzegar8595 199768 mac 199768 bytes_out 0 199768 bytes_in 0 199768 station_ip 46.225.232.240 199768 port 16 199768 unique_id port 199768 remote_ip 10.8.1.50 199769 username sabaghnezhad 199769 mac 199769 bytes_out 9580 199769 bytes_in 15789 199769 station_ip 83.123.130.115 199769 port 21 199769 unique_id port 199769 remote_ip 10.8.0.18 199772 username seyedrezaei2572 199772 kill_reason Another user logged on this global unique id 199772 mac 199772 bytes_out 0 199772 bytes_in 0 199772 station_ip 83.121.44.209 199772 port 15 199772 unique_id port 199773 username farhad3 199773 mac 199773 bytes_out 322582 199773 bytes_in 1511846 199773 station_ip 5.119.251.92 199773 port 19 199773 unique_id port 199773 remote_ip 10.8.0.46 199775 username godarzi 199775 mac 199775 bytes_out 0 199775 bytes_in 0 199775 station_ip 5.202.62.43 199775 port 25 199775 unique_id port 199778 username alipour1506 199778 mac 199778 bytes_out 391039 199778 bytes_in 833835 199778 station_ip 37.129.242.93 199778 port 10 199778 unique_id port 199778 remote_ip 10.8.0.134 199780 username godarzi 199780 mac 199780 bytes_out 1634021 199780 bytes_in 18504006 199780 station_ip 5.202.62.43 199780 port 16 199780 unique_id port 199780 remote_ip 10.8.1.78 199788 username naeimeh 199788 mac 199788 bytes_out 283904 199788 bytes_in 3350316 199788 station_ip 37.129.254.226 199788 port 21 199788 unique_id port 199788 remote_ip 10.8.0.202 199792 username barzegar8595 199792 mac 199792 bytes_out 424732 199792 bytes_in 5935841 199792 station_ip 46.225.232.240 199792 port 22 199792 unique_id port 199792 remote_ip 10.8.1.50 199793 username kalantary6037 199793 mac 199793 bytes_out 0 199793 bytes_in 0 199793 station_ip 37.129.28.54 199793 port 21 199793 unique_id port 199793 remote_ip 10.8.0.10 199794 username fezealinaghi 199794 kill_reason Another user logged on this global unique id 199794 mac 199794 bytes_out 0 199794 bytes_in 0 199794 station_ip 83.123.178.47 199794 port 10 199794 unique_id port 199798 username meysam 199798 mac 199798 bytes_out 0 199798 bytes_in 0 199798 station_ip 188.159.252.93 199798 port 19 199798 unique_id port 199799 username sabaghnezhad 199799 mac 199799 bytes_out 23211 199799 bytes_in 19379 199799 station_ip 83.123.130.115 199799 port 21 199799 unique_id port 199799 remote_ip 10.8.0.18 199800 username sabaghnezhad 199800 mac 199800 bytes_out 6848 199800 bytes_in 10905 199800 station_ip 83.123.130.115 199800 port 19 199800 unique_id port 199800 remote_ip 10.8.0.18 199802 username fezealinaghi 199802 kill_reason Another user logged on this global unique id 199802 mac 199802 bytes_out 0 199802 bytes_in 0 199802 station_ip 83.123.178.47 199802 port 10 199802 unique_id port 199809 username meysam 199809 mac 199809 bytes_out 0 199809 bytes_in 0 199809 station_ip 188.159.251.88 199809 port 26 199809 unique_id port 199809 remote_ip 10.8.1.30 199815 username morteza4424 199815 mac 199815 bytes_out 0 199815 bytes_in 0 199815 station_ip 37.129.99.253 199815 port 19 199815 unique_id port 199815 remote_ip 10.8.0.70 199818 username morteza4424 199818 mac 199818 bytes_out 0 199818 bytes_in 0 199818 station_ip 37.129.99.253 199818 port 19 199818 unique_id port 199818 remote_ip 10.8.0.70 199821 username morteza4424 199821 mac 199821 bytes_out 0 199821 bytes_in 0 199821 station_ip 37.129.99.253 199821 port 29 199821 unique_id port 199787 bytes_out 58333 199787 bytes_in 197275 199787 station_ip 83.123.130.115 199787 port 14 199787 unique_id port 199787 remote_ip 10.8.0.18 199796 username seyedrezaei2572 199796 mac 199796 bytes_out 0 199796 bytes_in 0 199796 station_ip 83.121.44.209 199796 port 15 199796 unique_id port 199797 username nilufarrajaei 199797 mac 199797 bytes_out 1998137 199797 bytes_in 14891223 199797 station_ip 83.122.184.53 199797 port 20 199797 unique_id port 199797 remote_ip 10.8.0.94 199801 username aminvpn 199801 unique_id port 199801 terminate_cause Lost-Carrier 199801 bytes_out 10667972 199801 bytes_in 350445889 199801 station_ip 31.57.122.150 199801 port 15729692 199801 nas_port_type Virtual 199801 remote_ip 5.5.5.255 199806 username khalili2 199806 kill_reason Another user logged on this global unique id 199806 mac 199806 bytes_out 0 199806 bytes_in 0 199806 station_ip 5.120.50.102 199806 port 30 199806 unique_id port 199806 remote_ip 10.8.1.18 199807 username morteza4424 199807 kill_reason Another user logged on this global unique id 199807 mac 199807 bytes_out 0 199807 bytes_in 0 199807 station_ip 37.129.99.253 199807 port 19 199807 unique_id port 199807 remote_ip 10.8.0.70 199812 username morteza4424 199812 mac 199812 bytes_out 0 199812 bytes_in 0 199812 station_ip 37.129.99.253 199812 port 19 199812 unique_id port 199812 remote_ip 10.8.0.70 199814 username ebrahimpour3 199814 kill_reason Relative expiration date has reached 199814 mac 199814 bytes_out 0 199814 bytes_in 0 199814 station_ip 83.123.15.218 199814 port 23 199814 unique_id port 199817 username hashtadani5 199817 kill_reason Another user logged on this global unique id 199817 mac 199817 bytes_out 0 199817 bytes_in 0 199817 station_ip 5.202.3.108 199817 port 20 199817 unique_id port 199817 remote_ip 10.8.0.150 199819 username hashtadani5 199819 mac 199819 bytes_out 0 199819 bytes_in 0 199819 station_ip 5.202.3.108 199819 port 20 199819 unique_id port 199824 username morteza4424 199824 mac 199824 bytes_out 0 199824 bytes_in 0 199824 station_ip 37.129.99.253 199824 port 26 199824 unique_id port 199824 remote_ip 10.8.1.94 199828 username barzegar 199828 mac 199828 bytes_out 0 199828 bytes_in 0 199828 station_ip 5.119.146.12 199828 port 29 199828 unique_id port 199828 remote_ip 10.8.1.6 199830 username morteza4424 199830 mac 199830 bytes_out 1644 199830 bytes_in 4930 199830 station_ip 37.129.99.253 199830 port 21 199830 unique_id port 199830 remote_ip 10.8.0.70 199832 username morteza4424 199832 mac 199832 bytes_out 1644 199832 bytes_in 4564 199832 station_ip 37.129.99.253 199832 port 21 199832 unique_id port 199832 remote_ip 10.8.0.70 199837 username hashtadani5 199837 mac 199837 bytes_out 0 199837 bytes_in 0 199837 station_ip 5.202.3.108 199837 port 32 199837 unique_id port 199837 remote_ip 10.8.1.162 199839 username morteza4424 199839 mac 199839 bytes_out 0 199839 bytes_in 0 199839 station_ip 37.129.99.253 199839 port 32 199839 unique_id port 199839 remote_ip 10.8.1.94 199841 username morteza4424 199841 mac 199841 bytes_out 0 199841 bytes_in 0 199841 station_ip 37.129.99.253 199841 port 32 199841 unique_id port 199841 remote_ip 10.8.1.94 199846 username morteza4424 199846 mac 199846 bytes_out 0 199846 bytes_in 0 199846 station_ip 37.129.99.253 199846 port 33 199846 unique_id port 199846 remote_ip 10.8.1.94 199848 username morteza4424 199848 mac 199848 bytes_out 0 199848 bytes_in 0 199848 station_ip 37.129.99.253 199848 port 32 199848 unique_id port 199848 remote_ip 10.8.1.94 199795 remote_ip 10.8.0.154 199803 username naeimeh 199803 mac 199803 bytes_out 1776071 199803 bytes_in 26104683 199803 station_ip 37.129.254.226 199803 port 14 199803 unique_id port 199803 remote_ip 10.8.0.202 199804 username kalantary6037 199804 mac 199804 bytes_out 0 199804 bytes_in 0 199804 station_ip 37.129.28.54 199804 port 21 199804 unique_id port 199804 remote_ip 10.8.0.10 199805 username ebrahimpour3 199805 kill_reason Another user logged on this global unique id 199805 mac 199805 bytes_out 0 199805 bytes_in 0 199805 station_ip 83.123.15.218 199805 port 23 199805 unique_id port 199808 username yaghobi 199808 mac 199808 bytes_out 0 199808 bytes_in 0 199808 station_ip 46.225.232.240 199808 port 21 199808 unique_id port 199808 remote_ip 10.8.0.174 199810 username alirezazadeh 199810 unique_id port 199810 terminate_cause Lost-Carrier 199810 bytes_out 793767 199810 bytes_in 25030269 199810 station_ip 31.56.153.21 199810 port 15729699 199810 nas_port_type Virtual 199810 remote_ip 5.5.5.152 199811 username morteza4424 199811 mac 199811 bytes_out 0 199811 bytes_in 0 199811 station_ip 37.129.99.253 199811 port 19 199811 unique_id port 199813 username ebrahimpour3 199813 kill_reason Another user logged on this global unique id 199813 mac 199813 bytes_out 0 199813 bytes_in 0 199813 station_ip 83.123.15.218 199813 port 23 199813 unique_id port 199816 username barzegar 199816 mac 199816 bytes_out 0 199816 bytes_in 0 199816 station_ip 5.119.146.12 199816 port 29 199816 unique_id port 199816 remote_ip 10.8.1.6 199820 username barzegar 199820 mac 199820 bytes_out 0 199820 bytes_in 0 199820 station_ip 5.119.146.12 199820 port 26 199820 unique_id port 199820 remote_ip 10.8.1.6 199822 username ebrahimpour3 199822 kill_reason Relative expiration date has reached 199822 mac 199822 bytes_out 0 199822 bytes_in 0 199822 station_ip 83.123.15.218 199822 port 19 199822 unique_id port 199825 username morteza4424 199825 mac 199825 bytes_out 0 199825 bytes_in 0 199825 station_ip 37.129.99.253 199825 port 26 199825 unique_id port 199825 remote_ip 10.8.1.94 199826 username arash 199826 mac 199826 bytes_out 0 199826 bytes_in 0 199826 station_ip 37.27.7.223 199826 port 31 199826 unique_id port 199826 remote_ip 10.8.1.54 199827 username morteza4424 199827 mac 199827 bytes_out 0 199827 bytes_in 0 199827 station_ip 37.129.99.253 199827 port 19 199827 unique_id port 199827 remote_ip 10.8.0.70 199829 username morteza4424 199829 mac 199829 bytes_out 0 199829 bytes_in 0 199829 station_ip 37.129.99.253 199829 port 31 199829 unique_id port 199829 remote_ip 10.8.1.94 199831 username barzegar 199831 mac 199831 bytes_out 0 199831 bytes_in 0 199831 station_ip 5.119.146.12 199831 port 29 199831 unique_id port 199831 remote_ip 10.8.1.6 199833 username morteza4424 199833 mac 199833 bytes_out 0 199833 bytes_in 0 199833 station_ip 37.129.99.253 199833 port 32 199833 unique_id port 199833 remote_ip 10.8.1.94 199834 username yaghobi 199834 mac 199834 bytes_out 1234065 199834 bytes_in 16773651 199834 station_ip 83.123.226.201 199834 port 20 199834 unique_id port 199834 remote_ip 10.8.0.174 199838 username fezealinaghi 199838 kill_reason Another user logged on this global unique id 199838 mac 199838 bytes_out 0 199838 bytes_in 0 199838 station_ip 83.123.178.47 199838 port 10 199838 unique_id port 199842 username morteza4424 199842 mac 199842 bytes_out 0 199842 bytes_in 0 199842 station_ip 37.129.99.253 199842 port 32 199842 unique_id port 199842 remote_ip 10.8.1.94 199821 remote_ip 10.8.1.94 199823 username hashtadani5 199823 mac 199823 bytes_out 0 199823 bytes_in 0 199823 station_ip 5.202.3.108 199823 port 19 199823 unique_id port 199823 remote_ip 10.8.0.150 199835 username morteza4424 199835 mac 199835 bytes_out 0 199835 bytes_in 0 199835 station_ip 37.129.99.253 199835 port 21 199835 unique_id port 199835 remote_ip 10.8.0.70 199836 username hashtadani5 199836 mac 199836 bytes_out 0 199836 bytes_in 0 199836 station_ip 5.202.3.108 199836 port 32 199836 unique_id port 199836 remote_ip 10.8.1.162 199840 username mohammadjavad 199840 mac 199840 bytes_out 0 199840 bytes_in 0 199840 station_ip 83.122.155.110 199840 port 19 199840 unique_id port 199840 remote_ip 10.8.0.58 199843 username sekonji0496 199843 mac 199843 bytes_out 62975 199843 bytes_in 500810 199843 station_ip 83.122.80.115 199843 port 20 199843 unique_id port 199843 remote_ip 10.8.0.66 199845 username hashtadani5 199845 mac 199845 bytes_out 0 199845 bytes_in 0 199845 station_ip 5.202.3.108 199845 port 32 199845 unique_id port 199845 remote_ip 10.8.1.162 199849 username morteza4424 199849 mac 199849 bytes_out 0 199849 bytes_in 0 199849 station_ip 37.129.99.253 199849 port 32 199849 unique_id port 199849 remote_ip 10.8.1.94 199850 username kharazmi2920 199850 mac 199850 bytes_out 1562617 199850 bytes_in 14182395 199850 station_ip 83.123.28.86 199850 port 18 199850 unique_id port 199850 remote_ip 10.8.0.34 199852 username hashtadani5 199852 mac 199852 bytes_out 0 199852 bytes_in 0 199852 station_ip 5.202.3.108 199852 port 32 199852 unique_id port 199852 remote_ip 10.8.1.162 199860 username hashtadani5 199860 mac 199860 bytes_out 14548 199860 bytes_in 134856 199860 station_ip 83.123.16.109 199860 port 18 199860 unique_id port 199860 remote_ip 10.8.0.150 199873 username esmaeilkazemi 199873 mac 199873 bytes_out 0 199873 bytes_in 0 199873 station_ip 83.123.26.64 199873 port 18 199873 unique_id port 199873 remote_ip 10.8.0.86 199878 username esmaeilkazemi 199878 mac 199878 bytes_out 0 199878 bytes_in 0 199878 station_ip 83.123.26.64 199878 port 18 199878 unique_id port 199878 remote_ip 10.8.0.86 199881 username godarzi 199881 mac 199881 bytes_out 648445 199881 bytes_in 6512611 199881 station_ip 5.202.62.43 199881 port 22 199881 unique_id port 199881 remote_ip 10.8.1.78 199888 username barzegar 199888 mac 199888 bytes_out 0 199888 bytes_in 0 199888 station_ip 5.119.146.12 199888 port 29 199888 unique_id port 199888 remote_ip 10.8.1.6 199889 username esmaeilkazemi 199889 mac 199889 bytes_out 0 199889 bytes_in 0 199889 station_ip 83.123.26.64 199889 port 18 199889 unique_id port 199889 remote_ip 10.8.0.86 199891 username esmaeilkazemi 199891 mac 199891 bytes_out 0 199891 bytes_in 0 199891 station_ip 83.123.26.64 199891 port 21 199891 unique_id port 199891 remote_ip 10.8.0.86 199893 username barzegar 199893 mac 199893 bytes_out 0 199893 bytes_in 0 199893 station_ip 5.119.146.12 199893 port 29 199893 unique_id port 199893 remote_ip 10.8.1.6 199896 username dortaj3792 199896 mac 199896 bytes_out 0 199896 bytes_in 0 199896 station_ip 5.119.114.199 199896 port 28 199896 unique_id port 199896 remote_ip 10.8.1.34 199897 username khalili2 199897 kill_reason Another user logged on this global unique id 199897 mac 199897 bytes_out 0 199897 bytes_in 0 199897 station_ip 5.120.50.102 199897 port 30 199897 unique_id port 199899 username sabaghnezhad 199899 mac 199899 bytes_out 0 199844 username hashtadani5 199844 mac 199844 bytes_out 0 199844 bytes_in 0 199844 station_ip 5.202.3.108 199844 port 32 199844 unique_id port 199844 remote_ip 10.8.1.162 199847 username barzegar 199847 kill_reason Another user logged on this global unique id 199847 mac 199847 bytes_out 0 199847 bytes_in 0 199847 station_ip 5.119.146.12 199847 port 29 199847 unique_id port 199847 remote_ip 10.8.1.6 199851 username barzegar8595 199851 mac 199851 bytes_out 0 199851 bytes_in 0 199851 station_ip 46.225.232.240 199851 port 28 199851 unique_id port 199851 remote_ip 10.8.1.50 199853 username barzegar8595 199853 mac 199853 bytes_out 0 199853 bytes_in 0 199853 station_ip 37.137.142.181 199853 port 33 199853 unique_id port 199853 remote_ip 10.8.1.50 199855 username fezealinaghi 199855 kill_reason Another user logged on this global unique id 199855 mac 199855 bytes_out 0 199855 bytes_in 0 199855 station_ip 83.123.178.47 199855 port 10 199855 unique_id port 199856 username morteza4424 199856 mac 199856 bytes_out 0 199856 bytes_in 0 199856 station_ip 37.129.99.253 199856 port 28 199856 unique_id port 199856 remote_ip 10.8.1.94 199857 username morteza4424 199857 mac 199857 bytes_out 0 199857 bytes_in 0 199857 station_ip 37.129.99.253 199857 port 33 199857 unique_id port 199857 remote_ip 10.8.1.94 199858 username morteza4424 199858 mac 199858 bytes_out 0 199858 bytes_in 0 199858 station_ip 37.129.99.253 199858 port 33 199858 unique_id port 199858 remote_ip 10.8.1.94 199859 username morteza4424 199859 mac 199859 bytes_out 0 199859 bytes_in 0 199859 station_ip 37.129.99.253 199859 port 33 199859 unique_id port 199859 remote_ip 10.8.1.94 199862 username arash 199862 mac 199862 bytes_out 897823 199862 bytes_in 5159924 199862 station_ip 37.27.7.223 199862 port 19 199862 unique_id port 199862 remote_ip 10.8.0.162 199864 username barzegar 199864 kill_reason Another user logged on this global unique id 199864 mac 199864 bytes_out 0 199864 bytes_in 0 199864 station_ip 5.119.146.12 199864 port 29 199864 unique_id port 199867 username farhad3 199867 mac 199867 bytes_out 0 199867 bytes_in 0 199867 station_ip 5.119.251.92 199867 port 31 199867 unique_id port 199867 remote_ip 10.8.1.38 199868 username nilufarrajaei 199868 mac 199868 bytes_out 0 199868 bytes_in 0 199868 station_ip 83.122.184.53 199868 port 25 199868 unique_id port 199868 remote_ip 10.8.1.138 199871 username esmaeilkazemi 199871 mac 199871 bytes_out 0 199871 bytes_in 0 199871 station_ip 83.123.26.64 199871 port 18 199871 unique_id port 199871 remote_ip 10.8.0.86 199875 username barzegar 199875 mac 199875 bytes_out 0 199875 bytes_in 0 199875 station_ip 5.119.146.12 199875 port 29 199875 unique_id port 199876 username esmaeilkazemi 199876 mac 199876 bytes_out 0 199876 bytes_in 0 199876 station_ip 83.123.26.64 199876 port 19 199876 unique_id port 199876 remote_ip 10.8.0.86 199880 username yaghobi 199880 mac 199880 bytes_out 1828047 199880 bytes_in 19067310 199880 station_ip 83.123.226.201 199880 port 23 199880 unique_id port 199880 remote_ip 10.8.0.174 199882 username esmaeilkazemi 199882 mac 199882 bytes_out 129761 199882 bytes_in 1126894 199882 station_ip 83.123.26.64 199882 port 19 199882 unique_id port 199882 remote_ip 10.8.0.86 199884 username mammad 199884 unique_id port 199884 terminate_cause User-Request 199884 bytes_out 0 199884 bytes_in 0 199884 station_ip 5.233.67.11 199884 port 15729702 199884 nas_port_type Virtual 199884 remote_ip 5.5.5.154 199885 username esmaeilkazemi 199854 username barzegar8595 199854 mac 199854 bytes_out 0 199854 bytes_in 0 199854 station_ip 46.225.232.240 199854 port 28 199854 unique_id port 199854 remote_ip 10.8.1.50 199861 username kalantary6037 199861 mac 199861 bytes_out 2122380 199861 bytes_in 18424469 199861 station_ip 37.129.24.222 199861 port 21 199861 unique_id port 199861 remote_ip 10.8.0.10 199863 username dortaj3792 199863 mac 199863 bytes_out 0 199863 bytes_in 0 199863 station_ip 5.119.114.199 199863 port 31 199863 unique_id port 199863 remote_ip 10.8.1.34 199865 username fezealinaghi 199865 kill_reason Another user logged on this global unique id 199865 mac 199865 bytes_out 0 199865 bytes_in 0 199865 station_ip 83.123.178.47 199865 port 10 199865 unique_id port 199866 username farhad3 199866 mac 199866 bytes_out 0 199866 bytes_in 0 199866 station_ip 5.119.251.92 199866 port 28 199866 unique_id port 199866 remote_ip 10.8.1.38 199869 username morteza4424 199869 mac 199869 bytes_out 490531 199869 bytes_in 5971690 199869 station_ip 37.129.99.253 199869 port 33 199869 unique_id port 199869 remote_ip 10.8.1.94 199870 username fezealinaghi 199870 kill_reason Another user logged on this global unique id 199870 mac 199870 bytes_out 0 199870 bytes_in 0 199870 station_ip 83.123.178.47 199870 port 10 199870 unique_id port 199872 username esmaeilkazemi 199872 mac 199872 bytes_out 0 199872 bytes_in 0 199872 station_ip 83.123.26.64 199872 port 19 199872 unique_id port 199872 remote_ip 10.8.0.86 199874 username naeimeh 199874 mac 199874 bytes_out 1912434 199874 bytes_in 12385921 199874 station_ip 83.122.137.58 199874 port 24 199874 unique_id port 199874 remote_ip 10.8.0.202 199877 username barzegar 199877 mac 199877 bytes_out 0 199877 bytes_in 0 199877 station_ip 5.119.146.12 199877 port 29 199877 unique_id port 199877 remote_ip 10.8.1.6 199879 username barzegar8595 199879 mac 199879 bytes_out 0 199879 bytes_in 0 199879 station_ip 37.137.142.181 199879 port 32 199879 unique_id port 199879 remote_ip 10.8.1.50 199883 username esmaeilkazemi 199883 mac 199883 bytes_out 0 199883 bytes_in 0 199883 station_ip 83.123.26.64 199883 port 18 199883 unique_id port 199883 remote_ip 10.8.0.86 199886 username esmaeilkazemi 199886 mac 199886 bytes_out 0 199886 bytes_in 0 199886 station_ip 83.123.26.64 199886 port 18 199886 unique_id port 199886 remote_ip 10.8.0.86 199890 username rahim 199890 mac 199890 bytes_out 0 199890 bytes_in 0 199890 station_ip 5.119.184.64 199890 port 31 199890 unique_id port 199890 remote_ip 10.8.1.90 199894 username esmaeilkazemi 199894 mac 199894 bytes_out 11941 199894 bytes_in 31335 199894 station_ip 83.123.26.64 199894 port 21 199894 unique_id port 199894 remote_ip 10.8.0.86 199895 username sekonji0496 199895 mac 199895 bytes_out 0 199895 bytes_in 0 199895 station_ip 83.122.80.115 199895 port 20 199895 unique_id port 199895 remote_ip 10.8.0.66 199898 username fezealinaghi 199898 kill_reason Another user logged on this global unique id 199898 mac 199898 bytes_out 0 199898 bytes_in 0 199898 station_ip 83.123.178.47 199898 port 10 199898 unique_id port 199900 username seyedrezaei2572 199900 mac 199900 bytes_out 1423112 199900 bytes_in 5559201 199900 station_ip 83.121.44.209 199900 port 15 199900 unique_id port 199900 remote_ip 10.8.0.186 199902 username fezealinaghi 199902 kill_reason Another user logged on this global unique id 199902 mac 199902 bytes_out 0 199902 bytes_in 0 199902 station_ip 83.123.178.47 199902 port 10 199902 unique_id port 199903 username barzegar 199885 mac 199885 bytes_out 0 199885 bytes_in 0 199885 station_ip 83.123.26.64 199885 port 21 199885 unique_id port 199885 remote_ip 10.8.0.86 199887 username esmaeilkazemi 199887 mac 199887 bytes_out 0 199887 bytes_in 0 199887 station_ip 83.123.26.64 199887 port 21 199887 unique_id port 199887 remote_ip 10.8.0.86 199892 username esmaeilkazemi 199892 mac 199892 bytes_out 0 199892 bytes_in 0 199892 station_ip 83.123.26.64 199892 port 18 199892 unique_id port 199892 remote_ip 10.8.0.86 199901 username barzegar 199901 mac 199901 bytes_out 0 199901 bytes_in 0 199901 station_ip 5.119.146.12 199901 port 28 199901 unique_id port 199901 remote_ip 10.8.1.6 199906 username fezealinaghi 199906 kill_reason Another user logged on this global unique id 199906 mac 199906 bytes_out 0 199906 bytes_in 0 199906 station_ip 83.123.178.47 199906 port 10 199906 unique_id port 199907 username khalili2 199907 kill_reason Another user logged on this global unique id 199907 mac 199907 bytes_out 0 199907 bytes_in 0 199907 station_ip 5.120.50.102 199907 port 30 199907 unique_id port 199908 username fezealinaghi 199908 kill_reason Another user logged on this global unique id 199908 mac 199908 bytes_out 0 199908 bytes_in 0 199908 station_ip 83.123.178.47 199908 port 10 199908 unique_id port 199915 username tahmorsi 199915 mac 199915 bytes_out 1813361 199915 bytes_in 30035756 199915 station_ip 86.57.109.118 199915 port 28 199915 unique_id port 199915 remote_ip 10.8.1.102 199918 username khalili2 199918 kill_reason Another user logged on this global unique id 199918 mac 199918 bytes_out 0 199918 bytes_in 0 199918 station_ip 5.120.50.102 199918 port 30 199918 unique_id port 199919 username alipour1506 199919 mac 199919 bytes_out 0 199919 bytes_in 0 199919 station_ip 37.129.199.3 199919 port 19 199919 unique_id port 199919 remote_ip 10.8.0.134 199920 username nilufarrajaei 199920 mac 199920 bytes_out 0 199920 bytes_in 0 199920 station_ip 83.122.184.53 199920 port 22 199920 unique_id port 199920 remote_ip 10.8.1.138 199923 username kalantary6037 199923 mac 199923 bytes_out 502229 199923 bytes_in 2868882 199923 station_ip 37.129.14.254 199923 port 18 199923 unique_id port 199923 remote_ip 10.8.0.10 199926 username iranmanesh4443 199926 mac 199926 bytes_out 0 199926 bytes_in 0 199926 station_ip 5.119.24.59 199926 port 26 199926 unique_id port 199926 remote_ip 10.8.1.122 199929 username rajaei 199929 mac 199929 bytes_out 0 199929 bytes_in 0 199929 station_ip 89.34.53.153 199929 port 29 199929 unique_id port 199929 remote_ip 10.8.1.146 199936 username mosi 199936 kill_reason Another user logged on this global unique id 199936 mac 199936 bytes_out 0 199936 bytes_in 0 199936 station_ip 151.235.106.19 199936 port 10 199936 unique_id port 199938 username barzegar 199938 mac 199938 bytes_out 0 199938 bytes_in 0 199938 station_ip 5.119.146.12 199938 port 28 199938 unique_id port 199938 remote_ip 10.8.1.6 199939 username barzegar 199939 mac 199939 bytes_out 0 199939 bytes_in 0 199939 station_ip 5.119.146.12 199939 port 29 199939 unique_id port 199939 remote_ip 10.8.1.6 199941 username alipour1506 199941 mac 199941 bytes_out 0 199941 bytes_in 0 199941 station_ip 83.123.214.19 199941 port 25 199941 unique_id port 199941 remote_ip 10.8.1.86 199944 username hatami 199944 mac 199944 bytes_out 0 199944 bytes_in 0 199944 station_ip 37.27.24.189 199944 port 16 199944 unique_id port 199944 remote_ip 10.8.1.26 199945 username yaghobi 199945 mac 199945 bytes_out 0 199899 bytes_in 0 199899 station_ip 83.123.130.115 199899 port 14 199899 unique_id port 199899 remote_ip 10.8.0.18 199909 username dortaj3792 199909 mac 199909 bytes_out 0 199909 bytes_in 0 199909 station_ip 5.119.114.199 199909 port 29 199909 unique_id port 199909 remote_ip 10.8.1.34 199912 username nilufarrajaei 199912 mac 199912 bytes_out 0 199912 bytes_in 0 199912 station_ip 83.122.184.53 199912 port 31 199912 unique_id port 199912 remote_ip 10.8.1.138 199914 username fezealinaghi 199914 kill_reason Another user logged on this global unique id 199914 mac 199914 bytes_out 0 199914 bytes_in 0 199914 station_ip 83.123.178.47 199914 port 10 199914 unique_id port 199917 username barzegar 199917 mac 199917 bytes_out 0 199917 bytes_in 0 199917 station_ip 5.119.146.12 199917 port 14 199917 unique_id port 199917 remote_ip 10.8.0.14 199921 username seyedrezaei2572 199921 mac 199921 bytes_out 140066 199921 bytes_in 228312 199921 station_ip 83.121.35.197 199921 port 14 199921 unique_id port 199921 remote_ip 10.8.0.186 199924 username khalili2 199924 kill_reason Another user logged on this global unique id 199924 mac 199924 bytes_out 0 199924 bytes_in 0 199924 station_ip 5.120.50.102 199924 port 30 199924 unique_id port 199925 username mammad 199925 unique_id port 199925 terminate_cause User-Request 199925 bytes_out 5096966 199925 bytes_in 86268401 199925 station_ip 5.233.67.11 199925 port 15729703 199925 nas_port_type Virtual 199925 remote_ip 5.5.5.154 199930 username hatami 199930 mac 199930 bytes_out 0 199930 bytes_in 0 199930 station_ip 37.27.24.189 199930 port 16 199930 unique_id port 199930 remote_ip 10.8.1.26 199931 username alipour1506 199931 mac 199931 bytes_out 156790 199931 bytes_in 770895 199931 station_ip 151.234.23.177 199931 port 28 199931 unique_id port 199931 remote_ip 10.8.1.86 199932 username mosi 199932 kill_reason Another user logged on this global unique id 199932 mac 199932 bytes_out 0 199932 bytes_in 0 199932 station_ip 151.235.106.19 199932 port 10 199932 unique_id port 199932 remote_ip 10.8.0.106 199934 username alipour1506 199934 mac 199934 bytes_out 27277 199934 bytes_in 37088 199934 station_ip 83.123.214.19 199934 port 14 199934 unique_id port 199934 remote_ip 10.8.0.134 199940 username ghaderpour6649 199940 mac 199940 bytes_out 2297 199940 bytes_in 4091 199940 station_ip 83.123.184.248 199940 port 18 199940 unique_id port 199940 remote_ip 10.8.0.206 199943 username barzegar 199943 mac 199943 bytes_out 0 199943 bytes_in 0 199943 station_ip 5.119.146.12 199943 port 29 199943 unique_id port 199943 remote_ip 10.8.1.6 199948 username meysam 199948 mac 199948 bytes_out 0 199948 bytes_in 0 199948 station_ip 5.119.19.0 199948 port 16 199948 unique_id port 199948 remote_ip 10.8.1.30 199956 username farhad3 199956 mac 199956 bytes_out 2288988 199956 bytes_in 22276831 199956 station_ip 5.119.251.92 199956 port 19 199956 unique_id port 199956 remote_ip 10.8.0.46 199958 username alipour1506 199958 mac 199958 bytes_out 73996 199958 bytes_in 123004 199958 station_ip 83.123.214.19 199958 port 25 199958 unique_id port 199958 remote_ip 10.8.1.86 199961 username alipour1506 199961 mac 199961 bytes_out 0 199961 bytes_in 0 199961 station_ip 83.123.93.249 199961 port 30 199961 unique_id port 199961 remote_ip 10.8.1.86 199964 username barzegar8595 199964 mac 199964 bytes_out 0 199964 bytes_in 0 199964 station_ip 5.62.199.77 199964 port 26 199964 unique_id port 199968 username malekpoir 199968 mac 199968 bytes_out 0 199903 mac 199903 bytes_out 0 199903 bytes_in 0 199903 station_ip 5.119.146.12 199903 port 31 199903 unique_id port 199903 remote_ip 10.8.1.6 199904 username nilufarrajaei 199904 mac 199904 bytes_out 0 199904 bytes_in 0 199904 station_ip 83.122.184.53 199904 port 25 199904 unique_id port 199904 remote_ip 10.8.1.138 199905 username barzegar 199905 mac 199905 bytes_out 0 199905 bytes_in 0 199905 station_ip 5.119.146.12 199905 port 25 199905 unique_id port 199905 remote_ip 10.8.1.6 199910 username kalantary6037 199910 kill_reason Another user logged on this global unique id 199910 mac 199910 bytes_out 0 199910 bytes_in 0 199910 station_ip 37.129.53.154 199910 port 14 199910 unique_id port 199910 remote_ip 10.8.0.10 199911 username barzegar 199911 mac 199911 bytes_out 0 199911 bytes_in 0 199911 station_ip 5.119.146.12 199911 port 18 199911 unique_id port 199911 remote_ip 10.8.0.14 199913 username kalantary6037 199913 mac 199913 bytes_out 0 199913 bytes_in 0 199913 station_ip 37.129.53.154 199913 port 14 199913 unique_id port 199916 username fezealinaghi 199916 mac 199916 bytes_out 0 199916 bytes_in 0 199916 station_ip 83.123.178.47 199916 port 10 199916 unique_id port 199922 username malekpoir 199922 mac 199922 bytes_out 0 199922 bytes_in 0 199922 station_ip 5.119.172.167 199922 port 26 199922 unique_id port 199922 remote_ip 10.8.1.70 199927 username barzegar 199927 mac 199927 bytes_out 0 199927 bytes_in 0 199927 station_ip 5.119.146.12 199927 port 25 199927 unique_id port 199927 remote_ip 10.8.1.6 199928 username barzegar 199928 mac 199928 bytes_out 0 199928 bytes_in 0 199928 station_ip 5.119.146.12 199928 port 14 199928 unique_id port 199928 remote_ip 10.8.0.14 199933 username barzegar 199933 mac 199933 bytes_out 0 199933 bytes_in 0 199933 station_ip 5.119.146.12 199933 port 25 199933 unique_id port 199933 remote_ip 10.8.1.6 199935 username kalantary6037 199935 mac 199935 bytes_out 0 199935 bytes_in 0 199935 station_ip 37.129.79.198 199935 port 18 199935 unique_id port 199935 remote_ip 10.8.0.10 199937 username barzegar 199937 mac 199937 bytes_out 0 199937 bytes_in 0 199937 station_ip 5.119.146.12 199937 port 14 199937 unique_id port 199937 remote_ip 10.8.0.14 199942 username malekpoir 199942 mac 199942 bytes_out 0 199942 bytes_in 0 199942 station_ip 5.119.172.167 199942 port 22 199942 unique_id port 199942 remote_ip 10.8.1.70 199949 username barzegar 199949 kill_reason Maximum check online fails reached 199949 mac 199949 bytes_out 0 199949 bytes_in 0 199949 station_ip 5.119.146.12 199949 port 22 199949 unique_id port 199950 username khalili2 199950 mac 199950 bytes_out 0 199950 bytes_in 0 199950 station_ip 5.120.50.102 199950 port 30 199950 unique_id port 199952 username houshang 199952 mac 199952 bytes_out 0 199952 bytes_in 0 199952 station_ip 5.119.232.158 199952 port 28 199952 unique_id port 199952 remote_ip 10.8.1.134 199954 username barzegar 199954 mac 199954 bytes_out 0 199954 bytes_in 0 199954 station_ip 5.119.146.12 199954 port 28 199954 unique_id port 199954 remote_ip 10.8.1.6 199959 username hosseine 199959 mac 199959 bytes_out 0 199959 bytes_in 0 199959 station_ip 37.129.249.118 199959 port 15 199959 unique_id port 199959 remote_ip 10.8.0.118 199965 username alipour1506 199965 mac 199965 bytes_out 0 199965 bytes_in 0 199965 station_ip 83.123.93.249 199965 port 25 199965 unique_id port 199965 remote_ip 10.8.1.86 199945 bytes_in 0 199945 station_ip 37.129.173.20 199945 port 18 199945 unique_id port 199945 remote_ip 10.8.0.174 199946 username mosi 199946 kill_reason Another user logged on this global unique id 199946 mac 199946 bytes_out 0 199946 bytes_in 0 199946 station_ip 151.235.106.19 199946 port 10 199946 unique_id port 199947 username barzegar8595 199947 kill_reason Another user logged on this global unique id 199947 mac 199947 bytes_out 0 199947 bytes_in 0 199947 station_ip 5.62.199.77 199947 port 26 199947 unique_id port 199947 remote_ip 10.8.1.50 199951 username kalantary6037 199951 mac 199951 bytes_out 1692560 199951 bytes_in 30691468 199951 station_ip 37.129.36.158 199951 port 18 199951 unique_id port 199951 remote_ip 10.8.0.10 199953 username mammad 199953 unique_id port 199953 terminate_cause User-Request 199953 bytes_out 1828284 199953 bytes_in 25876835 199953 station_ip 5.233.67.11 199953 port 15729709 199953 nas_port_type Virtual 199953 remote_ip 5.5.5.154 199955 username nilufarrajaei 199955 mac 199955 bytes_out 0 199955 bytes_in 0 199955 station_ip 37.129.78.5 199955 port 14 199955 unique_id port 199955 remote_ip 10.8.0.94 199957 username barzegar 199957 mac 199957 bytes_out 0 199957 bytes_in 0 199957 station_ip 5.119.146.12 199957 port 14 199957 unique_id port 199957 remote_ip 10.8.0.14 199960 username houshang 199960 mac 199960 bytes_out 22666 199960 bytes_in 51496 199960 station_ip 5.119.232.158 199960 port 29 199960 unique_id port 199960 remote_ip 10.8.1.134 199962 username mosi 199962 kill_reason Another user logged on this global unique id 199962 mac 199962 bytes_out 0 199962 bytes_in 0 199962 station_ip 151.235.106.19 199962 port 10 199962 unique_id port 199963 username alipour1506 199963 mac 199963 bytes_out 0 199963 bytes_in 0 199963 station_ip 83.123.93.249 199963 port 25 199963 unique_id port 199963 remote_ip 10.8.1.86 199966 username barzegar 199966 mac 199966 bytes_out 0 199966 bytes_in 0 199966 station_ip 5.119.146.12 199966 port 25 199966 unique_id port 199966 remote_ip 10.8.1.6 199970 username mosi 199970 kill_reason Another user logged on this global unique id 199970 mac 199970 bytes_out 0 199970 bytes_in 0 199970 station_ip 151.235.106.19 199970 port 10 199970 unique_id port 199972 username barzegar 199972 mac 199972 bytes_out 0 199972 bytes_in 0 199972 station_ip 5.119.146.12 199972 port 26 199972 unique_id port 199972 remote_ip 10.8.1.6 199981 username seyedrezaei2572 199981 mac 199981 bytes_out 0 199981 bytes_in 0 199981 station_ip 83.121.32.225 199981 port 21 199981 unique_id port 199981 remote_ip 10.8.0.186 199984 username kharazmi2920 199984 mac 199984 bytes_out 0 199984 bytes_in 0 199984 station_ip 83.123.28.86 199984 port 15 199984 unique_id port 199984 remote_ip 10.8.0.34 199986 username nilufarrajaei 199986 kill_reason Another user logged on this global unique id 199986 mac 199986 bytes_out 0 199986 bytes_in 0 199986 station_ip 37.129.78.5 199986 port 18 199986 unique_id port 199988 username mosi 199988 kill_reason Another user logged on this global unique id 199988 mac 199988 bytes_out 0 199988 bytes_in 0 199988 station_ip 151.235.106.19 199988 port 10 199988 unique_id port 199989 username aminvpn 199989 unique_id port 199989 terminate_cause Lost-Carrier 199989 bytes_out 4251372 199989 bytes_in 105038644 199989 station_ip 83.123.4.244 199989 port 15729710 199989 nas_port_type Virtual 199989 remote_ip 5.5.5.157 199993 username meysam 199993 kill_reason Another user logged on this global unique id 199993 mac 199993 bytes_out 0 199993 bytes_in 0 199993 station_ip 188.159.252.93 199967 username hatami 199967 mac 199967 bytes_out 0 199967 bytes_in 0 199967 station_ip 151.235.77.244 199967 port 28 199967 unique_id port 199967 remote_ip 10.8.1.26 199974 username nilufarrajaei 199974 kill_reason Another user logged on this global unique id 199974 mac 199974 bytes_out 0 199974 bytes_in 0 199974 station_ip 37.129.78.5 199974 port 18 199974 unique_id port 199974 remote_ip 10.8.0.94 199976 username sekonji0496 199976 mac 199976 bytes_out 32970 199976 bytes_in 228596 199976 station_ip 83.122.80.115 199976 port 20 199976 unique_id port 199976 remote_ip 10.8.0.66 199978 username hamid1430 199978 mac 199978 bytes_out 407818 199978 bytes_in 1723097 199978 station_ip 83.122.204.140 199978 port 22 199978 unique_id port 199978 remote_ip 10.8.0.110 199980 username barzegar 199980 mac 199980 bytes_out 0 199980 bytes_in 0 199980 station_ip 5.119.146.12 199980 port 25 199980 unique_id port 199980 remote_ip 10.8.1.6 199982 username farhad3 199982 mac 199982 bytes_out 652150 199982 bytes_in 7208077 199982 station_ip 5.119.251.92 199982 port 16 199982 unique_id port 199982 remote_ip 10.8.1.38 199983 username nilufarrajaei 199983 kill_reason Another user logged on this global unique id 199983 mac 199983 bytes_out 0 199983 bytes_in 0 199983 station_ip 37.129.78.5 199983 port 18 199983 unique_id port 199990 username farhad3 199990 mac 199990 bytes_out 0 199990 bytes_in 0 199990 station_ip 5.119.251.92 199990 port 16 199990 unique_id port 199990 remote_ip 10.8.1.38 199999 username fezealinaghi 199999 kill_reason Another user logged on this global unique id 199999 mac 199999 bytes_out 0 199999 bytes_in 0 199999 station_ip 83.123.230.35 199999 port 20 199999 unique_id port 200000 username mosi 200000 kill_reason Another user logged on this global unique id 200000 mac 200000 bytes_out 0 200000 bytes_in 0 200000 station_ip 151.235.106.19 200000 port 10 200000 unique_id port 200002 username meysam 200002 mac 200002 bytes_out 0 200002 bytes_in 0 200002 station_ip 188.159.252.93 200002 port 14 200002 unique_id port 200008 username barzegar8595 200008 mac 200008 bytes_out 0 200008 bytes_in 0 200008 station_ip 46.225.232.240 200008 port 29 200008 unique_id port 200008 remote_ip 10.8.1.50 200009 username barzegar8595 200009 mac 200009 bytes_out 0 200009 bytes_in 0 200009 station_ip 5.62.199.77 200009 port 28 200009 unique_id port 200009 remote_ip 10.8.1.50 200012 username barzegar8595 200012 mac 200012 bytes_out 0 200012 bytes_in 0 200012 station_ip 46.225.232.240 200012 port 29 200012 unique_id port 200012 remote_ip 10.8.1.50 200014 username barzegar8595 200014 mac 200014 bytes_out 0 200014 bytes_in 0 200014 station_ip 46.225.232.240 200014 port 29 200014 unique_id port 200014 remote_ip 10.8.1.50 200021 username barzegar8595 200021 mac 200021 bytes_out 0 200021 bytes_in 0 200021 station_ip 46.225.232.240 200021 port 29 200021 unique_id port 200021 remote_ip 10.8.1.50 200025 username barzegar8595 200025 mac 200025 bytes_out 0 200025 bytes_in 0 200025 station_ip 46.225.232.240 200025 port 29 200025 unique_id port 200025 remote_ip 10.8.1.50 200027 username mohammadjavad 200027 kill_reason Another user logged on this global unique id 200027 mac 200027 bytes_out 0 200027 bytes_in 0 200027 station_ip 83.122.247.62 200027 port 19 200027 unique_id port 200027 remote_ip 10.8.0.58 200028 username barzegar8595 200028 mac 200028 bytes_out 0 200028 bytes_in 0 200028 station_ip 46.225.232.240 200028 port 29 200028 unique_id port 200028 remote_ip 10.8.1.50 199968 bytes_in 0 199968 station_ip 5.119.211.199 199968 port 16 199968 unique_id port 199968 remote_ip 10.8.1.70 199969 username alipour1506 199969 mac 199969 bytes_out 0 199969 bytes_in 0 199969 station_ip 83.122.112.12 199969 port 26 199969 unique_id port 199969 remote_ip 10.8.1.86 199971 username kalantary6037 199971 mac 199971 bytes_out 354172 199971 bytes_in 1733618 199971 station_ip 37.129.15.90 199971 port 20 199971 unique_id port 199971 remote_ip 10.8.0.10 199973 username barzegar 199973 mac 199973 bytes_out 0 199973 bytes_in 0 199973 station_ip 5.119.146.12 199973 port 26 199973 unique_id port 199973 remote_ip 10.8.1.6 199975 username morteza4424 199975 mac 199975 bytes_out 0 199975 bytes_in 0 199975 station_ip 37.129.121.41 199975 port 25 199975 unique_id port 199975 remote_ip 10.8.1.94 199977 username barzegar 199977 mac 199977 bytes_out 0 199977 bytes_in 0 199977 station_ip 5.119.146.12 199977 port 25 199977 unique_id port 199977 remote_ip 10.8.1.6 199979 username alipour1506 199979 mac 199979 bytes_out 0 199979 bytes_in 0 199979 station_ip 83.122.112.12 199979 port 16 199979 unique_id port 199979 remote_ip 10.8.1.86 199985 username dortaj3792 199985 mac 199985 bytes_out 0 199985 bytes_in 0 199985 station_ip 5.119.114.199 199985 port 14 199985 unique_id port 199985 remote_ip 10.8.0.30 199987 username barzegar 199987 mac 199987 bytes_out 386325 199987 bytes_in 44934 199987 station_ip 5.119.146.12 199987 port 16 199987 unique_id port 199987 remote_ip 10.8.1.6 199991 username fezealinaghi 199991 mac 199991 bytes_out 0 199991 bytes_in 0 199991 station_ip 83.123.230.35 199991 port 20 199991 unique_id port 199991 remote_ip 10.8.0.98 199992 username yaghobi 199992 kill_reason Another user logged on this global unique id 199992 mac 199992 bytes_out 0 199992 bytes_in 0 199992 station_ip 37.129.178.24 199992 port 19 199992 unique_id port 199992 remote_ip 10.8.0.174 200001 username barzegar 200001 mac 200001 bytes_out 2477 200001 bytes_in 4866 200001 station_ip 5.119.146.12 200001 port 16 200001 unique_id port 200001 remote_ip 10.8.1.6 200010 username barzegar8595 200010 mac 200010 bytes_out 0 200010 bytes_in 0 200010 station_ip 46.225.232.240 200010 port 29 200010 unique_id port 200010 remote_ip 10.8.1.50 200015 username barzegar8595 200015 mac 200015 bytes_out 0 200015 bytes_in 0 200015 station_ip 5.62.199.77 200015 port 28 200015 unique_id port 200015 remote_ip 10.8.1.50 200017 username mosi 200017 kill_reason Another user logged on this global unique id 200017 mac 200017 bytes_out 0 200017 bytes_in 0 200017 station_ip 151.235.106.19 200017 port 10 200017 unique_id port 200018 username barzegar8595 200018 mac 200018 bytes_out 0 200018 bytes_in 0 200018 station_ip 5.62.199.77 200018 port 28 200018 unique_id port 200018 remote_ip 10.8.1.50 200019 username barzegar8595 200019 mac 200019 bytes_out 0 200019 bytes_in 0 200019 station_ip 46.225.232.240 200019 port 29 200019 unique_id port 200019 remote_ip 10.8.1.50 200022 username barzegar8595 200022 mac 200022 bytes_out 0 200022 bytes_in 0 200022 station_ip 5.62.199.77 200022 port 28 200022 unique_id port 200022 remote_ip 10.8.1.50 200023 username barzegar8595 200023 mac 200023 bytes_out 0 200023 bytes_in 0 200023 station_ip 46.225.232.240 200023 port 29 200023 unique_id port 200023 remote_ip 10.8.1.50 200026 username barzegar8595 200026 mac 200026 bytes_out 0 200026 bytes_in 0 200026 station_ip 5.62.199.77 200026 port 28 199993 port 14 199993 unique_id port 199993 remote_ip 10.8.0.142 199994 username nilufarrajaei 199994 kill_reason Another user logged on this global unique id 199994 mac 199994 bytes_out 0 199994 bytes_in 0 199994 station_ip 37.129.78.5 199994 port 18 199994 unique_id port 199995 username mohammadjavad 199995 mac 199995 bytes_out 0 199995 bytes_in 0 199995 station_ip 83.122.188.206 199995 port 15 199995 unique_id port 199995 remote_ip 10.8.0.58 199996 username fezealinaghi 199996 kill_reason Another user logged on this global unique id 199996 mac 199996 bytes_out 0 199996 bytes_in 0 199996 station_ip 83.123.230.35 199996 port 20 199996 unique_id port 199996 remote_ip 10.8.0.98 199997 username morteza4424 199997 kill_reason Another user logged on this global unique id 199997 mac 199997 bytes_out 0 199997 bytes_in 0 199997 station_ip 37.129.121.41 199997 port 25 199997 unique_id port 199997 remote_ip 10.8.1.94 199998 username barzegar 199998 mac 199998 bytes_out 0 199998 bytes_in 0 199998 station_ip 5.119.146.12 199998 port 16 199998 unique_id port 199998 remote_ip 10.8.1.6 200003 username kharazmi2920 200003 mac 200003 bytes_out 0 200003 bytes_in 0 200003 station_ip 83.123.28.86 200003 port 15 200003 unique_id port 200003 remote_ip 10.8.0.34 200004 username morteza4424 200004 kill_reason Another user logged on this global unique id 200004 mac 200004 bytes_out 0 200004 bytes_in 0 200004 station_ip 37.129.121.41 200004 port 25 200004 unique_id port 200005 username fezealinaghi 200005 mac 200005 bytes_out 0 200005 bytes_in 0 200005 station_ip 83.123.230.35 200005 port 20 200005 unique_id port 200006 username yaghobi 200006 mac 200006 bytes_out 0 200006 bytes_in 0 200006 station_ip 37.129.178.24 200006 port 19 200006 unique_id port 200007 username barzegar8595 200007 mac 200007 bytes_out 0 200007 bytes_in 0 200007 station_ip 5.62.199.77 200007 port 28 200007 unique_id port 200007 remote_ip 10.8.1.50 200011 username barzegar8595 200011 mac 200011 bytes_out 0 200011 bytes_in 0 200011 station_ip 5.62.199.77 200011 port 28 200011 unique_id port 200011 remote_ip 10.8.1.50 200013 username barzegar8595 200013 mac 200013 bytes_out 0 200013 bytes_in 0 200013 station_ip 5.62.199.77 200013 port 28 200013 unique_id port 200013 remote_ip 10.8.1.50 200016 username barzegar8595 200016 mac 200016 bytes_out 0 200016 bytes_in 0 200016 station_ip 46.225.232.240 200016 port 29 200016 unique_id port 200016 remote_ip 10.8.1.50 200020 username barzegar8595 200020 mac 200020 bytes_out 0 200020 bytes_in 0 200020 station_ip 5.62.199.77 200020 port 28 200020 unique_id port 200020 remote_ip 10.8.1.50 200024 username barzegar8595 200024 mac 200024 bytes_out 0 200024 bytes_in 0 200024 station_ip 5.62.199.77 200024 port 28 200024 unique_id port 200024 remote_ip 10.8.1.50 200037 username barzegar8595 200037 mac 200037 bytes_out 0 200037 bytes_in 0 200037 station_ip 5.62.199.77 200037 port 28 200037 unique_id port 200037 remote_ip 10.8.1.50 200042 username barzegar8595 200042 mac 200042 bytes_out 0 200042 bytes_in 0 200042 station_ip 46.225.232.240 200042 port 29 200042 unique_id port 200042 remote_ip 10.8.1.50 200046 username barzegar8595 200046 mac 200046 bytes_out 0 200046 bytes_in 0 200046 station_ip 46.225.232.240 200046 port 29 200046 unique_id port 200046 remote_ip 10.8.1.50 200048 username barzegar8595 200048 mac 200048 bytes_out 0 200048 bytes_in 0 200048 station_ip 5.62.199.77 200048 port 28 200048 unique_id port 200026 unique_id port 200026 remote_ip 10.8.1.50 200030 username barzegar8595 200030 mac 200030 bytes_out 0 200030 bytes_in 0 200030 station_ip 46.225.232.240 200030 port 29 200030 unique_id port 200030 remote_ip 10.8.1.50 200031 username barzegar8595 200031 mac 200031 bytes_out 0 200031 bytes_in 0 200031 station_ip 5.62.199.77 200031 port 28 200031 unique_id port 200031 remote_ip 10.8.1.50 200033 username barzegar8595 200033 mac 200033 bytes_out 0 200033 bytes_in 0 200033 station_ip 46.225.232.240 200033 port 29 200033 unique_id port 200033 remote_ip 10.8.1.50 200035 username barzegar8595 200035 mac 200035 bytes_out 0 200035 bytes_in 0 200035 station_ip 5.62.199.77 200035 port 28 200035 unique_id port 200035 remote_ip 10.8.1.50 200036 username barzegar8595 200036 mac 200036 bytes_out 0 200036 bytes_in 0 200036 station_ip 46.225.232.240 200036 port 29 200036 unique_id port 200036 remote_ip 10.8.1.50 200039 username barzegar8595 200039 mac 200039 bytes_out 0 200039 bytes_in 0 200039 station_ip 5.62.199.77 200039 port 28 200039 unique_id port 200039 remote_ip 10.8.1.50 200041 username barzegar8595 200041 mac 200041 bytes_out 0 200041 bytes_in 0 200041 station_ip 5.62.199.77 200041 port 28 200041 unique_id port 200041 remote_ip 10.8.1.50 200044 username barzegar8595 200044 mac 200044 bytes_out 0 200044 bytes_in 0 200044 station_ip 46.225.232.240 200044 port 29 200044 unique_id port 200044 remote_ip 10.8.1.50 200045 username barzegar8595 200045 mac 200045 bytes_out 0 200045 bytes_in 0 200045 station_ip 5.62.199.77 200045 port 28 200045 unique_id port 200045 remote_ip 10.8.1.50 200047 username aminvpn 200047 unique_id port 200047 terminate_cause Lost-Carrier 200047 bytes_out 237072 200047 bytes_in 1046956 200047 station_ip 37.129.18.12 200047 port 15729711 200047 nas_port_type Virtual 200047 remote_ip 5.5.5.158 200050 username barzegar8595 200050 mac 200050 bytes_out 0 200050 bytes_in 0 200050 station_ip 5.62.199.77 200050 port 28 200050 unique_id port 200050 remote_ip 10.8.1.50 200051 username barzegar8595 200051 mac 200051 bytes_out 0 200051 bytes_in 0 200051 station_ip 46.225.232.240 200051 port 29 200051 unique_id port 200051 remote_ip 10.8.1.50 200056 username barzegar8595 200056 mac 200056 bytes_out 0 200056 bytes_in 0 200056 station_ip 46.225.232.240 200056 port 29 200056 unique_id port 200056 remote_ip 10.8.1.50 200058 username fezealinaghi 200058 mac 200058 bytes_out 0 200058 bytes_in 0 200058 station_ip 83.123.230.35 200058 port 20 200058 unique_id port 200058 remote_ip 10.8.0.98 200060 username barzegar8595 200060 mac 200060 bytes_out 0 200060 bytes_in 0 200060 station_ip 5.62.199.77 200060 port 28 200060 unique_id port 200060 remote_ip 10.8.1.50 200062 username barzegar 200062 mac 200062 bytes_out 0 200062 bytes_in 0 200062 station_ip 5.119.146.12 200062 port 16 200062 unique_id port 200062 remote_ip 10.8.1.6 200065 username seyedrezaei2572 200065 kill_reason Another user logged on this global unique id 200065 mac 200065 bytes_out 0 200065 bytes_in 0 200065 station_ip 83.121.32.225 200065 port 22 200065 unique_id port 200065 remote_ip 10.8.0.186 200067 username barzegar 200067 mac 200067 bytes_out 0 200067 bytes_in 0 200067 station_ip 5.119.146.12 200067 port 25 200067 unique_id port 200067 remote_ip 10.8.1.6 200075 username barzegar8595 200075 mac 200075 bytes_out 0 200075 bytes_in 0 200075 station_ip 46.225.232.240 200075 port 28 200075 unique_id port 200029 username barzegar8595 200029 mac 200029 bytes_out 0 200029 bytes_in 0 200029 station_ip 5.62.199.77 200029 port 28 200029 unique_id port 200029 remote_ip 10.8.1.50 200032 username fezealinaghi 200032 mac 200032 bytes_out 0 200032 bytes_in 0 200032 station_ip 83.123.230.35 200032 port 15 200032 unique_id port 200032 remote_ip 10.8.0.98 200034 username mohammadjavad 200034 mac 200034 bytes_out 0 200034 bytes_in 0 200034 station_ip 83.122.247.62 200034 port 19 200034 unique_id port 200038 username barzegar8595 200038 mac 200038 bytes_out 0 200038 bytes_in 0 200038 station_ip 46.225.232.240 200038 port 29 200038 unique_id port 200038 remote_ip 10.8.1.50 200040 username barzegar8595 200040 mac 200040 bytes_out 0 200040 bytes_in 0 200040 station_ip 46.225.232.240 200040 port 29 200040 unique_id port 200040 remote_ip 10.8.1.50 200043 username barzegar8595 200043 mac 200043 bytes_out 0 200043 bytes_in 0 200043 station_ip 5.62.199.77 200043 port 28 200043 unique_id port 200043 remote_ip 10.8.1.50 200049 username barzegar8595 200049 mac 200049 bytes_out 0 200049 bytes_in 0 200049 station_ip 46.225.232.240 200049 port 29 200049 unique_id port 200049 remote_ip 10.8.1.50 200053 username barzegar8595 200053 mac 200053 bytes_out 0 200053 bytes_in 0 200053 station_ip 46.225.232.240 200053 port 29 200053 unique_id port 200053 remote_ip 10.8.1.50 200055 username barzegar8595 200055 mac 200055 bytes_out 0 200055 bytes_in 0 200055 station_ip 5.62.199.77 200055 port 28 200055 unique_id port 200055 remote_ip 10.8.1.50 200059 username nilufarrajaei 200059 mac 200059 bytes_out 0 200059 bytes_in 0 200059 station_ip 37.129.78.5 200059 port 18 200059 unique_id port 200063 username barzegar8595 200063 mac 200063 bytes_out 0 200063 bytes_in 0 200063 station_ip 5.62.199.77 200063 port 28 200063 unique_id port 200063 remote_ip 10.8.1.50 200068 username barzegar8595 200068 mac 200068 bytes_out 191314 200068 bytes_in 349160 200068 station_ip 46.225.232.240 200068 port 16 200068 unique_id port 200068 remote_ip 10.8.1.50 200071 username barzegar8595 200071 mac 200071 bytes_out 0 200071 bytes_in 0 200071 station_ip 46.225.232.240 200071 port 16 200071 unique_id port 200071 remote_ip 10.8.1.50 200072 username barzegar8595 200072 mac 200072 bytes_out 0 200072 bytes_in 0 200072 station_ip 5.62.199.77 200072 port 25 200072 unique_id port 200072 remote_ip 10.8.1.50 200074 username barzegar8595 200074 mac 200074 bytes_out 0 200074 bytes_in 0 200074 station_ip 5.62.199.77 200074 port 25 200074 unique_id port 200074 remote_ip 10.8.1.50 200078 username barzegar8595 200078 mac 200078 bytes_out 0 200078 bytes_in 0 200078 station_ip 5.62.199.77 200078 port 25 200078 unique_id port 200078 remote_ip 10.8.1.50 200081 username seyedrezaei2572 200081 kill_reason Another user logged on this global unique id 200081 mac 200081 bytes_out 0 200081 bytes_in 0 200081 station_ip 83.121.32.225 200081 port 22 200081 unique_id port 200082 username barzegar8595 200082 mac 200082 bytes_out 0 200082 bytes_in 0 200082 station_ip 46.225.232.240 200082 port 28 200082 unique_id port 200082 remote_ip 10.8.1.50 200086 username barzegar8595 200086 mac 200086 bytes_out 0 200086 bytes_in 0 200086 station_ip 46.225.232.240 200086 port 28 200086 unique_id port 200086 remote_ip 10.8.1.50 200089 username barzegar8595 200089 mac 200089 bytes_out 0 200089 bytes_in 0 200089 station_ip 5.62.199.77 200089 port 25 200048 remote_ip 10.8.1.50 200052 username barzegar8595 200052 mac 200052 bytes_out 0 200052 bytes_in 0 200052 station_ip 5.62.199.77 200052 port 28 200052 unique_id port 200052 remote_ip 10.8.1.50 200054 username alipour1506 200054 mac 200054 bytes_out 0 200054 bytes_in 0 200054 station_ip 113.203.100.14 200054 port 14 200054 unique_id port 200054 remote_ip 10.8.0.134 200057 username morteza4424 200057 mac 200057 bytes_out 0 200057 bytes_in 0 200057 station_ip 37.129.121.41 200057 port 25 200057 unique_id port 200061 username barzegar8595 200061 mac 200061 bytes_out 0 200061 bytes_in 0 200061 station_ip 46.225.232.240 200061 port 25 200061 unique_id port 200061 remote_ip 10.8.1.50 200064 username saeeddamghani 200064 mac 200064 bytes_out 0 200064 bytes_in 0 200064 station_ip 5.119.136.131 200064 port 14 200064 unique_id port 200064 remote_ip 10.8.0.26 200066 username barzegar 200066 mac 200066 bytes_out 457939 200066 bytes_in 7262513 200066 station_ip 5.119.146.12 200066 port 25 200066 unique_id port 200066 remote_ip 10.8.1.6 200069 username barzegar 200069 mac 200069 bytes_out 0 200069 bytes_in 0 200069 station_ip 5.119.146.12 200069 port 14 200069 unique_id port 200069 remote_ip 10.8.0.14 200070 username barzegar8595 200070 mac 200070 bytes_out 0 200070 bytes_in 0 200070 station_ip 5.62.199.77 200070 port 25 200070 unique_id port 200070 remote_ip 10.8.1.50 200073 username barzegar8595 200073 mac 200073 bytes_out 0 200073 bytes_in 0 200073 station_ip 46.225.232.240 200073 port 28 200073 unique_id port 200073 remote_ip 10.8.1.50 200077 username barzegar8595 200077 mac 200077 bytes_out 0 200077 bytes_in 0 200077 station_ip 46.225.232.240 200077 port 28 200077 unique_id port 200077 remote_ip 10.8.1.50 200084 username barzegar8595 200084 mac 200084 bytes_out 0 200084 bytes_in 0 200084 station_ip 46.225.232.240 200084 port 28 200084 unique_id port 200084 remote_ip 10.8.1.50 200085 username barzegar8595 200085 mac 200085 bytes_out 0 200085 bytes_in 0 200085 station_ip 5.62.199.77 200085 port 25 200085 unique_id port 200085 remote_ip 10.8.1.50 200088 username barzegar8595 200088 mac 200088 bytes_out 0 200088 bytes_in 0 200088 station_ip 46.225.232.240 200088 port 28 200088 unique_id port 200088 remote_ip 10.8.1.50 200090 username seyedrezaei2572 200090 kill_reason Another user logged on this global unique id 200090 mac 200090 bytes_out 0 200090 bytes_in 0 200090 station_ip 83.121.32.225 200090 port 22 200090 unique_id port 200092 username barzegar8595 200092 mac 200092 bytes_out 0 200092 bytes_in 0 200092 station_ip 5.62.199.77 200092 port 25 200092 unique_id port 200092 remote_ip 10.8.1.50 200095 username barzegar8595 200095 mac 200095 bytes_out 0 200095 bytes_in 0 200095 station_ip 46.225.232.240 200095 port 28 200095 unique_id port 200095 remote_ip 10.8.1.50 200097 username barzegar8595 200097 mac 200097 bytes_out 0 200097 bytes_in 0 200097 station_ip 5.62.199.77 200097 port 25 200097 unique_id port 200097 remote_ip 10.8.1.50 200099 username seyedrezaei2572 200099 kill_reason Another user logged on this global unique id 200099 mac 200099 bytes_out 0 200099 bytes_in 0 200099 station_ip 83.121.32.225 200099 port 22 200099 unique_id port 200102 username barzegar8595 200102 mac 200102 bytes_out 0 200102 bytes_in 0 200102 station_ip 5.62.199.77 200102 port 25 200102 unique_id port 200102 remote_ip 10.8.1.50 200106 username barzegar8595 200106 mac 200106 bytes_out 0 200075 remote_ip 10.8.1.50 200076 username barzegar8595 200076 mac 200076 bytes_out 0 200076 bytes_in 0 200076 station_ip 5.62.199.77 200076 port 25 200076 unique_id port 200076 remote_ip 10.8.1.50 200079 username barzegar8595 200079 mac 200079 bytes_out 0 200079 bytes_in 0 200079 station_ip 46.225.232.240 200079 port 28 200079 unique_id port 200079 remote_ip 10.8.1.50 200080 username barzegar8595 200080 mac 200080 bytes_out 0 200080 bytes_in 0 200080 station_ip 5.62.199.77 200080 port 25 200080 unique_id port 200080 remote_ip 10.8.1.50 200083 username barzegar8595 200083 mac 200083 bytes_out 0 200083 bytes_in 0 200083 station_ip 5.62.199.77 200083 port 25 200083 unique_id port 200083 remote_ip 10.8.1.50 200087 username barzegar8595 200087 mac 200087 bytes_out 0 200087 bytes_in 0 200087 station_ip 5.62.199.77 200087 port 25 200087 unique_id port 200087 remote_ip 10.8.1.50 200091 username barzegar8595 200091 mac 200091 bytes_out 0 200091 bytes_in 0 200091 station_ip 46.225.232.240 200091 port 28 200091 unique_id port 200091 remote_ip 10.8.1.50 200094 username barzegar8595 200094 mac 200094 bytes_out 0 200094 bytes_in 0 200094 station_ip 5.62.199.77 200094 port 25 200094 unique_id port 200094 remote_ip 10.8.1.50 200096 username morteza4424 200096 mac 200096 bytes_out 0 200096 bytes_in 0 200096 station_ip 83.123.245.101 200096 port 14 200096 unique_id port 200096 remote_ip 10.8.0.70 200100 username barzegar8595 200100 mac 200100 bytes_out 0 200100 bytes_in 0 200100 station_ip 5.62.199.77 200100 port 25 200100 unique_id port 200100 remote_ip 10.8.1.50 200101 username barzegar8595 200101 mac 200101 bytes_out 0 200101 bytes_in 0 200101 station_ip 46.225.232.240 200101 port 28 200101 unique_id port 200101 remote_ip 10.8.1.50 200105 username barzegar8595 200105 mac 200105 bytes_out 0 200105 bytes_in 0 200105 station_ip 5.62.199.77 200105 port 25 200105 unique_id port 200105 remote_ip 10.8.1.50 200108 username mosi 200108 mac 200108 bytes_out 0 200108 bytes_in 0 200108 station_ip 151.235.106.19 200108 port 10 200108 unique_id port 200111 username barzegar8595 200111 mac 200111 bytes_out 0 200111 bytes_in 0 200111 station_ip 46.225.232.240 200111 port 28 200111 unique_id port 200111 remote_ip 10.8.1.50 200113 username seyedrezaei2572 200113 kill_reason Another user logged on this global unique id 200113 mac 200113 bytes_out 0 200113 bytes_in 0 200113 station_ip 83.121.32.225 200113 port 22 200113 unique_id port 200114 username barzegar8595 200114 mac 200114 bytes_out 0 200114 bytes_in 0 200114 station_ip 5.62.199.77 200114 port 25 200114 unique_id port 200114 remote_ip 10.8.1.50 200120 username barzegar8595 200120 mac 200120 bytes_out 0 200120 bytes_in 0 200120 station_ip 5.62.199.77 200120 port 28 200120 unique_id port 200120 remote_ip 10.8.1.50 200121 username barzegar8595 200121 mac 200121 bytes_out 0 200121 bytes_in 0 200121 station_ip 46.225.232.240 200121 port 16 200121 unique_id port 200121 remote_ip 10.8.1.50 200124 username barzegar8595 200124 mac 200124 bytes_out 0 200124 bytes_in 0 200124 station_ip 46.225.232.240 200124 port 16 200124 unique_id port 200124 remote_ip 10.8.1.50 200128 username barzegar8595 200128 mac 200128 bytes_out 0 200128 bytes_in 0 200128 station_ip 46.225.232.240 200128 port 16 200128 unique_id port 200128 remote_ip 10.8.1.50 200131 username meysam 200131 mac 200131 bytes_out 890546 200131 bytes_in 16031771 200089 unique_id port 200089 remote_ip 10.8.1.50 200093 username barzegar8595 200093 mac 200093 bytes_out 0 200093 bytes_in 0 200093 station_ip 46.225.232.240 200093 port 28 200093 unique_id port 200093 remote_ip 10.8.1.50 200098 username barzegar8595 200098 mac 200098 bytes_out 0 200098 bytes_in 0 200098 station_ip 46.225.232.240 200098 port 28 200098 unique_id port 200098 remote_ip 10.8.1.50 200103 username barzegar8595 200103 mac 200103 bytes_out 0 200103 bytes_in 0 200103 station_ip 46.225.232.240 200103 port 28 200103 unique_id port 200103 remote_ip 10.8.1.50 200104 username seyedrezaei2572 200104 kill_reason Another user logged on this global unique id 200104 mac 200104 bytes_out 0 200104 bytes_in 0 200104 station_ip 83.121.32.225 200104 port 22 200104 unique_id port 200110 username barzegar8595 200110 mac 200110 bytes_out 0 200110 bytes_in 0 200110 station_ip 5.62.199.77 200110 port 25 200110 unique_id port 200110 remote_ip 10.8.1.50 200112 username barzegar 200112 mac 200112 bytes_out 463057 200112 bytes_in 6542212 200112 station_ip 5.119.146.12 200112 port 16 200112 unique_id port 200112 remote_ip 10.8.1.6 200116 username barzegar8595 200116 mac 200116 bytes_out 0 200116 bytes_in 0 200116 station_ip 5.62.199.77 200116 port 25 200116 unique_id port 200116 remote_ip 10.8.1.50 200117 username barzegar8595 200117 mac 200117 bytes_out 0 200117 bytes_in 0 200117 station_ip 46.225.232.240 200117 port 16 200117 unique_id port 200117 remote_ip 10.8.1.50 200119 username barzegar8595 200119 mac 200119 bytes_out 0 200119 bytes_in 0 200119 station_ip 46.225.232.240 200119 port 16 200119 unique_id port 200119 remote_ip 10.8.1.50 200122 username seyedrezaei2572 200122 kill_reason Another user logged on this global unique id 200122 mac 200122 bytes_out 0 200122 bytes_in 0 200122 station_ip 83.121.32.225 200122 port 22 200122 unique_id port 200123 username barzegar8595 200123 mac 200123 bytes_out 0 200123 bytes_in 0 200123 station_ip 5.62.199.77 200123 port 28 200123 unique_id port 200123 remote_ip 10.8.1.50 200126 username barzegar8595 200126 mac 200126 bytes_out 0 200126 bytes_in 0 200126 station_ip 46.225.232.240 200126 port 16 200126 unique_id port 200126 remote_ip 10.8.1.50 200127 username barzegar8595 200127 mac 200127 bytes_out 0 200127 bytes_in 0 200127 station_ip 5.62.199.77 200127 port 28 200127 unique_id port 200127 remote_ip 10.8.1.50 200130 username barzegar8595 200130 mac 200130 bytes_out 0 200130 bytes_in 0 200130 station_ip 46.225.232.240 200130 port 16 200130 unique_id port 200130 remote_ip 10.8.1.50 200133 username barzegar8595 200133 mac 200133 bytes_out 0 200133 bytes_in 0 200133 station_ip 46.225.232.240 200133 port 16 200133 unique_id port 200133 remote_ip 10.8.1.50 200134 username barzegar8595 200134 mac 200134 bytes_out 0 200134 bytes_in 0 200134 station_ip 5.62.199.77 200134 port 25 200134 unique_id port 200134 remote_ip 10.8.1.50 200136 username barzegar 200136 mac 200136 bytes_out 0 200136 bytes_in 0 200136 station_ip 5.119.146.12 200136 port 16 200136 unique_id port 200136 remote_ip 10.8.1.6 200138 username barzegar8595 200138 mac 200138 bytes_out 0 200138 bytes_in 0 200138 station_ip 46.225.232.240 200138 port 16 200138 unique_id port 200138 remote_ip 10.8.1.50 200142 username barzegar8595 200142 mac 200142 bytes_out 0 200142 bytes_in 0 200142 station_ip 46.225.232.240 200142 port 16 200142 unique_id port 200142 remote_ip 10.8.1.50 200146 username barzegar8595 200106 bytes_in 0 200106 station_ip 46.225.232.240 200106 port 28 200106 unique_id port 200106 remote_ip 10.8.1.50 200107 username barzegar8595 200107 mac 200107 bytes_out 0 200107 bytes_in 0 200107 station_ip 5.62.199.77 200107 port 25 200107 unique_id port 200107 remote_ip 10.8.1.50 200109 username barzegar8595 200109 mac 200109 bytes_out 0 200109 bytes_in 0 200109 station_ip 46.225.232.240 200109 port 28 200109 unique_id port 200109 remote_ip 10.8.1.50 200115 username barzegar8595 200115 mac 200115 bytes_out 0 200115 bytes_in 0 200115 station_ip 46.225.232.240 200115 port 16 200115 unique_id port 200115 remote_ip 10.8.1.50 200118 username barzegar8595 200118 mac 200118 bytes_out 0 200118 bytes_in 0 200118 station_ip 5.62.199.77 200118 port 28 200118 unique_id port 200118 remote_ip 10.8.1.50 200125 username barzegar8595 200125 mac 200125 bytes_out 0 200125 bytes_in 0 200125 station_ip 5.62.199.77 200125 port 28 200125 unique_id port 200125 remote_ip 10.8.1.50 200129 username barzegar8595 200129 mac 200129 bytes_out 0 200129 bytes_in 0 200129 station_ip 5.62.199.77 200129 port 28 200129 unique_id port 200129 remote_ip 10.8.1.50 200132 username barzegar8595 200132 mac 200132 bytes_out 0 200132 bytes_in 0 200132 station_ip 5.62.199.77 200132 port 28 200132 unique_id port 200132 remote_ip 10.8.1.50 200141 username barzegar8595 200141 mac 200141 bytes_out 0 200141 bytes_in 0 200141 station_ip 5.62.199.77 200141 port 25 200141 unique_id port 200141 remote_ip 10.8.1.50 200144 username barzegar8595 200144 mac 200144 bytes_out 0 200144 bytes_in 0 200144 station_ip 46.225.232.240 200144 port 16 200144 unique_id port 200144 remote_ip 10.8.1.50 200145 username barzegar8595 200145 mac 200145 bytes_out 0 200145 bytes_in 0 200145 station_ip 5.62.199.77 200145 port 25 200145 unique_id port 200145 remote_ip 10.8.1.50 200148 username barzegar8595 200148 mac 200148 bytes_out 0 200148 bytes_in 0 200148 station_ip 46.225.232.240 200148 port 16 200148 unique_id port 200148 remote_ip 10.8.1.50 200149 username seyedrezaei2572 200149 mac 200149 bytes_out 0 200149 bytes_in 0 200149 station_ip 83.121.32.225 200149 port 22 200149 unique_id port 200151 username barzegar 200151 mac 200151 bytes_out 0 200151 bytes_in 0 200151 station_ip 5.119.146.12 200151 port 16 200151 unique_id port 200151 remote_ip 10.8.1.6 200154 username barzegar8595 200154 mac 200154 bytes_out 0 200154 bytes_in 0 200154 station_ip 5.62.199.77 200154 port 16 200154 unique_id port 200154 remote_ip 10.8.1.50 200156 username farhad3 200156 mac 200156 bytes_out 754897 200156 bytes_in 4857353 200156 station_ip 5.119.251.92 200156 port 30 200156 unique_id port 200156 remote_ip 10.8.1.38 200162 username barzegar8595 200162 mac 200162 bytes_out 0 200162 bytes_in 0 200162 station_ip 46.225.232.240 200162 port 25 200162 unique_id port 200162 remote_ip 10.8.1.50 200166 username barzegar8595 200166 mac 200166 bytes_out 0 200166 bytes_in 0 200166 station_ip 46.225.232.240 200166 port 25 200166 unique_id port 200166 remote_ip 10.8.1.50 200168 username barzegar8595 200168 mac 200168 bytes_out 0 200168 bytes_in 0 200168 station_ip 46.225.232.240 200168 port 29 200168 unique_id port 200168 remote_ip 10.8.1.50 200170 username barzegar8595 200170 mac 200170 bytes_out 0 200170 bytes_in 0 200170 station_ip 5.62.199.77 200170 port 28 200170 unique_id port 200170 remote_ip 10.8.1.50 200174 username barzegar8595 200131 station_ip 188.158.48.232 200131 port 25 200131 unique_id port 200131 remote_ip 10.8.1.30 200135 username barzegar8595 200135 mac 200135 bytes_out 0 200135 bytes_in 0 200135 station_ip 46.225.232.240 200135 port 29 200135 unique_id port 200135 remote_ip 10.8.1.50 200137 username barzegar8595 200137 mac 200137 bytes_out 0 200137 bytes_in 0 200137 station_ip 5.62.199.77 200137 port 25 200137 unique_id port 200137 remote_ip 10.8.1.50 200139 username barzegar8595 200139 mac 200139 bytes_out 0 200139 bytes_in 0 200139 station_ip 5.62.199.77 200139 port 25 200139 unique_id port 200139 remote_ip 10.8.1.50 200140 username barzegar8595 200140 mac 200140 bytes_out 0 200140 bytes_in 0 200140 station_ip 46.225.232.240 200140 port 16 200140 unique_id port 200140 remote_ip 10.8.1.50 200143 username barzegar8595 200143 mac 200143 bytes_out 0 200143 bytes_in 0 200143 station_ip 5.62.199.77 200143 port 25 200143 unique_id port 200143 remote_ip 10.8.1.50 200147 username barzegar8595 200147 mac 200147 bytes_out 0 200147 bytes_in 0 200147 station_ip 5.62.199.77 200147 port 25 200147 unique_id port 200147 remote_ip 10.8.1.50 200153 username yaghobi 200153 mac 200153 bytes_out 421678 200153 bytes_in 1069177 200153 station_ip 37.129.175.228 200153 port 28 200153 unique_id port 200153 remote_ip 10.8.1.186 200159 username barzegar8595 200159 mac 200159 bytes_out 0 200159 bytes_in 0 200159 station_ip 5.62.199.77 200159 port 28 200159 unique_id port 200159 remote_ip 10.8.1.50 200161 username barzegar8595 200161 mac 200161 bytes_out 0 200161 bytes_in 0 200161 station_ip 5.62.199.77 200161 port 28 200161 unique_id port 200161 remote_ip 10.8.1.50 200165 username barzegar8595 200165 mac 200165 bytes_out 0 200165 bytes_in 0 200165 station_ip 5.62.199.77 200165 port 28 200165 unique_id port 200165 remote_ip 10.8.1.50 200167 username barzegar8595 200167 mac 200167 bytes_out 0 200167 bytes_in 0 200167 station_ip 5.62.199.77 200167 port 28 200167 unique_id port 200167 remote_ip 10.8.1.50 200173 username barzegar8595 200173 mac 200173 bytes_out 0 200173 bytes_in 0 200173 station_ip 5.62.199.77 200173 port 28 200173 unique_id port 200173 remote_ip 10.8.1.50 200180 username barzegar8595 200180 mac 200180 bytes_out 0 200180 bytes_in 0 200180 station_ip 46.225.232.240 200180 port 25 200180 unique_id port 200180 remote_ip 10.8.1.50 200181 username barzegar 200181 mac 200181 bytes_out 0 200181 bytes_in 0 200181 station_ip 5.119.146.12 200181 port 25 200181 unique_id port 200181 remote_ip 10.8.1.6 200183 username morteza4424 200183 kill_reason Another user logged on this global unique id 200183 mac 200183 bytes_out 0 200183 bytes_in 0 200183 station_ip 83.123.245.101 200183 port 14 200183 unique_id port 200183 remote_ip 10.8.0.70 200184 username kalantary6037 200184 mac 200184 bytes_out 243881 200184 bytes_in 2553554 200184 station_ip 37.129.213.201 200184 port 10 200184 unique_id port 200184 remote_ip 10.8.0.10 200186 username yaghobi 200186 mac 200186 bytes_out 0 200186 bytes_in 0 200186 station_ip 37.129.175.228 200186 port 29 200186 unique_id port 200186 remote_ip 10.8.1.186 200189 username barzegar8595 200189 mac 200189 bytes_out 0 200189 bytes_in 0 200189 station_ip 46.225.232.240 200189 port 25 200189 unique_id port 200189 remote_ip 10.8.1.50 200193 username barzegar8595 200193 mac 200193 bytes_out 0 200193 bytes_in 0 200193 station_ip 5.62.199.77 200193 port 29 200193 unique_id port 200146 mac 200146 bytes_out 0 200146 bytes_in 0 200146 station_ip 46.225.232.240 200146 port 16 200146 unique_id port 200146 remote_ip 10.8.1.50 200150 username barzegar8595 200150 mac 200150 bytes_out 0 200150 bytes_in 0 200150 station_ip 5.62.199.77 200150 port 25 200150 unique_id port 200150 remote_ip 10.8.1.50 200152 username barzegar8595 200152 mac 200152 bytes_out 0 200152 bytes_in 0 200152 station_ip 46.225.232.240 200152 port 29 200152 unique_id port 200152 remote_ip 10.8.1.50 200155 username barzegar8595 200155 mac 200155 bytes_out 0 200155 bytes_in 0 200155 station_ip 46.225.232.240 200155 port 25 200155 unique_id port 200155 remote_ip 10.8.1.50 200157 username barzegar8595 200157 mac 200157 bytes_out 0 200157 bytes_in 0 200157 station_ip 5.62.199.77 200157 port 16 200157 unique_id port 200157 remote_ip 10.8.1.50 200158 username barzegar8595 200158 mac 200158 bytes_out 0 200158 bytes_in 0 200158 station_ip 46.225.232.240 200158 port 25 200158 unique_id port 200158 remote_ip 10.8.1.50 200160 username barzegar8595 200160 mac 200160 bytes_out 0 200160 bytes_in 0 200160 station_ip 46.225.232.240 200160 port 25 200160 unique_id port 200160 remote_ip 10.8.1.50 200163 username barzegar8595 200163 mac 200163 bytes_out 0 200163 bytes_in 0 200163 station_ip 5.62.199.77 200163 port 28 200163 unique_id port 200163 remote_ip 10.8.1.50 200164 username barzegar8595 200164 mac 200164 bytes_out 0 200164 bytes_in 0 200164 station_ip 46.225.232.240 200164 port 25 200164 unique_id port 200164 remote_ip 10.8.1.50 200169 username mosi 200169 mac 200169 bytes_out 2199 200169 bytes_in 4551 200169 station_ip 151.235.106.19 200169 port 10 200169 unique_id port 200169 remote_ip 10.8.0.106 200171 username barzegar8595 200171 mac 200171 bytes_out 0 200171 bytes_in 0 200171 station_ip 46.225.232.240 200171 port 31 200171 unique_id port 200171 remote_ip 10.8.1.50 200172 username barzegar 200172 mac 200172 bytes_out 0 200172 bytes_in 0 200172 station_ip 5.119.146.12 200172 port 25 200172 unique_id port 200172 remote_ip 10.8.1.6 200179 username barzegar8595 200179 mac 200179 bytes_out 0 200179 bytes_in 0 200179 station_ip 5.62.199.77 200179 port 31 200179 unique_id port 200179 remote_ip 10.8.1.50 200182 username mosi 200182 kill_reason Another user logged on this global unique id 200182 mac 200182 bytes_out 0 200182 bytes_in 0 200182 station_ip 151.235.106.19 200182 port 30 200182 unique_id port 200182 remote_ip 10.8.1.118 200187 username barzegar8595 200187 mac 200187 bytes_out 0 200187 bytes_in 0 200187 station_ip 46.225.232.240 200187 port 25 200187 unique_id port 200187 remote_ip 10.8.1.50 200188 username barzegar8595 200188 mac 200188 bytes_out 0 200188 bytes_in 0 200188 station_ip 5.62.199.77 200188 port 29 200188 unique_id port 200188 remote_ip 10.8.1.50 200191 username barzegar8595 200191 mac 200191 bytes_out 0 200191 bytes_in 0 200191 station_ip 5.62.199.77 200191 port 29 200191 unique_id port 200191 remote_ip 10.8.1.50 200192 username barzegar8595 200192 mac 200192 bytes_out 0 200192 bytes_in 0 200192 station_ip 46.225.232.240 200192 port 25 200192 unique_id port 200192 remote_ip 10.8.1.50 200196 username barzegar 200196 mac 200196 bytes_out 0 200196 bytes_in 0 200196 station_ip 5.119.146.12 200196 port 10 200196 unique_id port 200196 remote_ip 10.8.0.14 200198 username barzegar8595 200198 mac 200198 bytes_out 0 200198 bytes_in 0 200198 station_ip 46.225.232.240 200174 mac 200174 bytes_out 0 200174 bytes_in 0 200174 station_ip 46.225.232.240 200174 port 25 200174 unique_id port 200174 remote_ip 10.8.1.50 200175 username barzegar8595 200175 mac 200175 bytes_out 0 200175 bytes_in 0 200175 station_ip 5.62.199.77 200175 port 28 200175 unique_id port 200175 remote_ip 10.8.1.50 200176 username barzegar8595 200176 mac 200176 bytes_out 0 200176 bytes_in 0 200176 station_ip 46.225.232.240 200176 port 25 200176 unique_id port 200176 remote_ip 10.8.1.50 200177 username barzegar8595 200177 mac 200177 bytes_out 0 200177 bytes_in 0 200177 station_ip 5.62.199.77 200177 port 28 200177 unique_id port 200177 remote_ip 10.8.1.50 200178 username barzegar8595 200178 mac 200178 bytes_out 0 200178 bytes_in 0 200178 station_ip 46.225.232.240 200178 port 25 200178 unique_id port 200178 remote_ip 10.8.1.50 200185 username barzegar8595 200185 mac 200185 bytes_out 0 200185 bytes_in 0 200185 station_ip 5.62.199.77 200185 port 31 200185 unique_id port 200185 remote_ip 10.8.1.50 200190 username esmaeilkazemi 200190 mac 200190 bytes_out 0 200190 bytes_in 0 200190 station_ip 83.123.26.64 200190 port 10 200190 unique_id port 200190 remote_ip 10.8.0.86 200194 username barzegar8595 200194 mac 200194 bytes_out 0 200194 bytes_in 0 200194 station_ip 46.225.232.240 200194 port 25 200194 unique_id port 200194 remote_ip 10.8.1.50 200195 username barzegar8595 200195 mac 200195 bytes_out 0 200195 bytes_in 0 200195 station_ip 5.62.199.77 200195 port 29 200195 unique_id port 200195 remote_ip 10.8.1.50 200197 username esmaeilkazemi 200197 mac 200197 bytes_out 26347 200197 bytes_in 103428 200197 station_ip 83.123.26.64 200197 port 15 200197 unique_id port 200197 remote_ip 10.8.0.86 200200 username morteza4424 200200 kill_reason Another user logged on this global unique id 200200 mac 200200 bytes_out 0 200200 bytes_in 0 200200 station_ip 83.123.245.101 200200 port 14 200200 unique_id port 200201 username barzegar8595 200201 mac 200201 bytes_out 0 200201 bytes_in 0 200201 station_ip 46.225.232.240 200201 port 25 200201 unique_id port 200201 remote_ip 10.8.1.50 200203 username barzegar8595 200203 mac 200203 bytes_out 0 200203 bytes_in 0 200203 station_ip 5.62.199.77 200203 port 29 200203 unique_id port 200203 remote_ip 10.8.1.50 200204 username barzegar8595 200204 mac 200204 bytes_out 0 200204 bytes_in 0 200204 station_ip 46.225.232.240 200204 port 25 200204 unique_id port 200204 remote_ip 10.8.1.50 200211 username morteza4424 200211 mac 200211 bytes_out 0 200211 bytes_in 0 200211 station_ip 83.123.245.101 200211 port 14 200211 unique_id port 200215 username barzegar 200215 mac 200215 bytes_out 36731 200215 bytes_in 64618 200215 station_ip 5.119.146.12 200215 port 15 200215 unique_id port 200215 remote_ip 10.8.0.14 200219 username barzegar8595 200219 mac 200219 bytes_out 0 200219 bytes_in 0 200219 station_ip 46.225.232.240 200219 port 25 200219 unique_id port 200219 remote_ip 10.8.1.50 200224 username barzegar8595 200224 mac 200224 bytes_out 0 200224 bytes_in 0 200224 station_ip 46.225.232.240 200224 port 33 200224 unique_id port 200224 remote_ip 10.8.1.50 200227 username barzegar8595 200227 mac 200227 bytes_out 0 200227 bytes_in 0 200227 station_ip 46.225.232.240 200227 port 26 200227 unique_id port 200227 remote_ip 10.8.1.50 200229 username farhad3 200229 kill_reason Another user logged on this global unique id 200229 mac 200229 bytes_out 0 200229 bytes_in 0 200229 station_ip 5.119.251.92 200193 remote_ip 10.8.1.50 200207 username barzegar8595 200207 mac 200207 bytes_out 0 200207 bytes_in 0 200207 station_ip 46.225.232.240 200207 port 25 200207 unique_id port 200207 remote_ip 10.8.1.50 200209 username barzegar8595 200209 mac 200209 bytes_out 0 200209 bytes_in 0 200209 station_ip 46.225.232.240 200209 port 25 200209 unique_id port 200209 remote_ip 10.8.1.50 200213 username aminvpns6 200213 mac 200213 bytes_out 522171 200213 bytes_in 2381543 200213 station_ip 5.120.100.138 200213 port 18 200213 unique_id port 200213 remote_ip 10.8.0.210 200217 username barzegar8595 200217 mac 200217 bytes_out 0 200217 bytes_in 0 200217 station_ip 46.225.232.240 200217 port 25 200217 unique_id port 200217 remote_ip 10.8.1.50 200218 username barzegar8595 200218 mac 200218 bytes_out 0 200218 bytes_in 0 200218 station_ip 5.62.199.77 200218 port 32 200218 unique_id port 200218 remote_ip 10.8.1.50 200221 username mammad 200221 unique_id port 200221 terminate_cause User-Request 200221 bytes_out 5913103 200221 bytes_in 156449713 200221 station_ip 5.233.67.11 200221 port 15729712 200221 nas_port_type Virtual 200221 remote_ip 5.5.5.154 200222 username barzegar8595 200222 mac 200222 bytes_out 0 200222 bytes_in 0 200222 station_ip 5.62.199.77 200222 port 32 200222 unique_id port 200222 remote_ip 10.8.1.50 200223 username yaghobi 200223 mac 200223 bytes_out 0 200223 bytes_in 0 200223 station_ip 37.129.170.136 200223 port 25 200223 unique_id port 200223 remote_ip 10.8.1.186 200225 username godarzi 200225 mac 200225 bytes_out 5970108 200225 bytes_in 49603521 200225 station_ip 5.202.62.43 200225 port 26 200225 unique_id port 200225 remote_ip 10.8.1.78 200226 username barzegar8595 200226 mac 200226 bytes_out 0 200226 bytes_in 0 200226 station_ip 5.62.199.77 200226 port 25 200226 unique_id port 200226 remote_ip 10.8.1.50 200233 username barzegar8595 200233 mac 200233 bytes_out 0 200233 bytes_in 0 200233 station_ip 5.62.199.77 200233 port 25 200233 unique_id port 200233 remote_ip 10.8.1.50 200238 username barzegar8595 200238 mac 200238 bytes_out 0 200238 bytes_in 0 200238 station_ip 46.225.232.240 200238 port 32 200238 unique_id port 200238 remote_ip 10.8.1.50 200240 username barzegar8595 200240 mac 200240 bytes_out 0 200240 bytes_in 0 200240 station_ip 46.225.232.240 200240 port 33 200240 unique_id port 200240 remote_ip 10.8.1.50 200242 username houshang 200242 mac 200242 bytes_out 550614 200242 bytes_in 4647544 200242 station_ip 5.120.121.25 200242 port 14 200242 unique_id port 200242 remote_ip 10.8.0.50 200246 username barzegar8595 200246 mac 200246 bytes_out 0 200246 bytes_in 0 200246 station_ip 5.62.199.77 200246 port 25 200246 unique_id port 200246 remote_ip 10.8.1.50 200248 username kharazmi2920 200248 mac 200248 bytes_out 1848763 200248 bytes_in 17793452 200248 station_ip 83.123.28.86 200248 port 10 200248 unique_id port 200248 remote_ip 10.8.0.34 200249 username barzegar8595 200249 mac 200249 bytes_out 0 200249 bytes_in 0 200249 station_ip 5.62.199.77 200249 port 25 200249 unique_id port 200249 remote_ip 10.8.1.50 200253 username barzegar8595 200253 mac 200253 bytes_out 0 200253 bytes_in 0 200253 station_ip 5.62.199.77 200253 port 25 200253 unique_id port 200253 remote_ip 10.8.1.50 200254 username barzegar8595 200254 mac 200254 bytes_out 0 200254 bytes_in 0 200254 station_ip 46.225.232.240 200254 port 28 200254 unique_id port 200254 remote_ip 10.8.1.50 200257 username barzegar8595 200198 port 25 200198 unique_id port 200198 remote_ip 10.8.1.50 200199 username barzegar8595 200199 mac 200199 bytes_out 0 200199 bytes_in 0 200199 station_ip 5.62.199.77 200199 port 29 200199 unique_id port 200199 remote_ip 10.8.1.50 200202 username mosi 200202 kill_reason Another user logged on this global unique id 200202 mac 200202 bytes_out 0 200202 bytes_in 0 200202 station_ip 151.235.106.19 200202 port 30 200202 unique_id port 200205 username morteza4424 200205 kill_reason Another user logged on this global unique id 200205 mac 200205 bytes_out 0 200205 bytes_in 0 200205 station_ip 83.123.245.101 200205 port 14 200205 unique_id port 200206 username barzegar8595 200206 mac 200206 bytes_out 0 200206 bytes_in 0 200206 station_ip 5.62.199.77 200206 port 29 200206 unique_id port 200206 remote_ip 10.8.1.50 200208 username barzegar8595 200208 mac 200208 bytes_out 0 200208 bytes_in 0 200208 station_ip 5.62.199.77 200208 port 29 200208 unique_id port 200208 remote_ip 10.8.1.50 200210 username dortaj3792 200210 mac 200210 bytes_out 84801 200210 bytes_in 304706 200210 station_ip 5.119.114.199 200210 port 10 200210 unique_id port 200210 remote_ip 10.8.0.30 200212 username farhad3 200212 kill_reason Another user logged on this global unique id 200212 mac 200212 bytes_out 0 200212 bytes_in 0 200212 station_ip 5.119.251.92 200212 port 16 200212 unique_id port 200212 remote_ip 10.8.1.38 200214 username barzegar8595 200214 mac 200214 bytes_out 0 200214 bytes_in 0 200214 station_ip 5.62.199.77 200214 port 29 200214 unique_id port 200214 remote_ip 10.8.1.50 200216 username barzegar 200216 mac 200216 bytes_out 0 200216 bytes_in 0 200216 station_ip 5.119.146.12 200216 port 32 200216 unique_id port 200216 remote_ip 10.8.1.6 200220 username meghdad1616 200220 kill_reason Another user logged on this global unique id 200220 mac 200220 bytes_out 0 200220 bytes_in 0 200220 station_ip 5.120.118.50 200220 port 28 200220 unique_id port 200220 remote_ip 10.8.1.142 200228 username barzegar8595 200228 mac 200228 bytes_out 0 200228 bytes_in 0 200228 station_ip 5.62.199.77 200228 port 25 200228 unique_id port 200228 remote_ip 10.8.1.50 200232 username barzegar8595 200232 mac 200232 bytes_out 0 200232 bytes_in 0 200232 station_ip 46.225.232.240 200232 port 26 200232 unique_id port 200232 remote_ip 10.8.1.50 200236 username barzegar8595 200236 mac 200236 bytes_out 0 200236 bytes_in 0 200236 station_ip 46.225.232.240 200236 port 26 200236 unique_id port 200236 remote_ip 10.8.1.50 200237 username barzegar8595 200237 mac 200237 bytes_out 0 200237 bytes_in 0 200237 station_ip 5.62.199.77 200237 port 25 200237 unique_id port 200237 remote_ip 10.8.1.50 200239 username barzegar8595 200239 mac 200239 bytes_out 0 200239 bytes_in 0 200239 station_ip 5.62.199.77 200239 port 25 200239 unique_id port 200239 remote_ip 10.8.1.50 200245 username barzegar8595 200245 mac 200245 bytes_out 0 200245 bytes_in 0 200245 station_ip 46.225.232.240 200245 port 33 200245 unique_id port 200245 remote_ip 10.8.1.50 200250 username meghdad1616 200250 mac 200250 bytes_out 0 200250 bytes_in 0 200250 station_ip 5.120.118.50 200250 port 28 200250 unique_id port 200252 username barzegar8595 200252 mac 200252 bytes_out 0 200252 bytes_in 0 200252 station_ip 46.225.232.240 200252 port 33 200252 unique_id port 200252 remote_ip 10.8.1.50 200256 username barzegar8595 200256 mac 200256 bytes_out 0 200256 bytes_in 0 200256 station_ip 46.225.232.240 200256 port 28 200256 unique_id port 200229 port 16 200229 unique_id port 200230 username barzegar8595 200230 mac 200230 bytes_out 0 200230 bytes_in 0 200230 station_ip 46.225.232.240 200230 port 26 200230 unique_id port 200230 remote_ip 10.8.1.50 200231 username barzegar8595 200231 mac 200231 bytes_out 0 200231 bytes_in 0 200231 station_ip 5.62.199.77 200231 port 25 200231 unique_id port 200231 remote_ip 10.8.1.50 200234 username barzegar8595 200234 mac 200234 bytes_out 0 200234 bytes_in 0 200234 station_ip 46.225.232.240 200234 port 26 200234 unique_id port 200234 remote_ip 10.8.1.50 200235 username barzegar8595 200235 mac 200235 bytes_out 0 200235 bytes_in 0 200235 station_ip 5.62.199.77 200235 port 25 200235 unique_id port 200235 remote_ip 10.8.1.50 200241 username barzegar8595 200241 mac 200241 bytes_out 0 200241 bytes_in 0 200241 station_ip 5.62.199.77 200241 port 25 200241 unique_id port 200241 remote_ip 10.8.1.50 200243 username barzegar8595 200243 mac 200243 bytes_out 0 200243 bytes_in 0 200243 station_ip 46.225.232.240 200243 port 33 200243 unique_id port 200243 remote_ip 10.8.1.50 200244 username barzegar8595 200244 mac 200244 bytes_out 0 200244 bytes_in 0 200244 station_ip 5.62.199.77 200244 port 25 200244 unique_id port 200244 remote_ip 10.8.1.50 200247 username barzegar8595 200247 mac 200247 bytes_out 0 200247 bytes_in 0 200247 station_ip 46.225.232.240 200247 port 33 200247 unique_id port 200247 remote_ip 10.8.1.50 200251 username hashtadani5 200251 mac 200251 bytes_out 0 200251 bytes_in 0 200251 station_ip 5.202.3.72 200251 port 31 200251 unique_id port 200251 remote_ip 10.8.1.162 200255 username barzegar8595 200255 mac 200255 bytes_out 0 200255 bytes_in 0 200255 station_ip 5.62.199.77 200255 port 25 200255 unique_id port 200255 remote_ip 10.8.1.50 200261 username farhad3 200261 kill_reason Another user logged on this global unique id 200261 mac 200261 bytes_out 0 200261 bytes_in 0 200261 station_ip 5.119.251.92 200261 port 16 200261 unique_id port 200265 username hashtadani5 200265 mac 200265 bytes_out 0 200265 bytes_in 0 200265 station_ip 5.202.3.72 200265 port 29 200265 unique_id port 200265 remote_ip 10.8.1.162 200269 username barzegar 200269 mac 200269 bytes_out 0 200269 bytes_in 0 200269 station_ip 5.119.146.12 200269 port 29 200269 unique_id port 200269 remote_ip 10.8.1.6 200272 username alipour1506 200272 mac 200272 bytes_out 0 200272 bytes_in 0 200272 station_ip 113.203.100.14 200272 port 25 200272 unique_id port 200272 remote_ip 10.8.1.86 200273 username dortaj3792 200273 mac 200273 bytes_out 147554 200273 bytes_in 528375 200273 station_ip 5.119.114.199 200273 port 10 200273 unique_id port 200273 remote_ip 10.8.0.30 200276 username barzegar 200276 kill_reason Maximum check online fails reached 200276 mac 200276 bytes_out 0 200276 bytes_in 0 200276 station_ip 5.119.146.12 200276 port 28 200276 unique_id port 200277 username mohammadjavad 200277 mac 200277 bytes_out 787000 200277 bytes_in 2503459 200277 station_ip 83.122.169.190 200277 port 14 200277 unique_id port 200277 remote_ip 10.8.0.58 200282 username alipour1506 200282 mac 200282 bytes_out 91917 200282 bytes_in 80646 200282 station_ip 113.203.100.14 200282 port 25 200282 unique_id port 200282 remote_ip 10.8.1.86 200283 username morteza4424 200283 mac 200283 bytes_out 5694140 200283 bytes_in 3129660 200283 station_ip 83.123.37.94 200283 port 18 200283 unique_id port 200283 remote_ip 10.8.0.70 200289 username morteza4424 200256 remote_ip 10.8.1.50 200259 username barzegar8595 200259 mac 200259 bytes_out 0 200259 bytes_in 0 200259 station_ip 5.62.199.77 200259 port 25 200259 unique_id port 200259 remote_ip 10.8.1.50 200260 username hashtadani5 200260 mac 200260 bytes_out 0 200260 bytes_in 0 200260 station_ip 5.202.3.72 200260 port 25 200260 unique_id port 200260 remote_ip 10.8.1.162 200262 username mosi 200262 kill_reason Another user logged on this global unique id 200262 mac 200262 bytes_out 0 200262 bytes_in 0 200262 station_ip 151.235.106.19 200262 port 30 200262 unique_id port 200263 username alipour1506 200263 mac 200263 bytes_out 69498 200263 bytes_in 202265 200263 station_ip 113.203.100.14 200263 port 29 200263 unique_id port 200263 remote_ip 10.8.1.86 200268 username meysam 200268 mac 200268 bytes_out 1093619 200268 bytes_in 22020527 200268 station_ip 188.158.49.214 200268 port 32 200268 unique_id port 200268 remote_ip 10.8.1.30 200271 username barzegar8595 200271 mac 200271 bytes_out 0 200271 bytes_in 0 200271 station_ip 46.225.232.240 200271 port 28 200271 unique_id port 200271 remote_ip 10.8.1.50 200275 username hashtadani5 200275 mac 200275 bytes_out 0 200275 bytes_in 0 200275 station_ip 5.202.3.72 200275 port 31 200275 unique_id port 200275 remote_ip 10.8.1.162 200279 username hashtadani5 200279 mac 200279 bytes_out 0 200279 bytes_in 0 200279 station_ip 5.202.3.72 200279 port 20 200279 unique_id port 200279 remote_ip 10.8.0.150 200284 username morteza4424 200284 mac 200284 bytes_out 0 200284 bytes_in 0 200284 station_ip 83.123.37.94 200284 port 18 200284 unique_id port 200284 remote_ip 10.8.0.70 200286 username barzegar 200286 mac 200286 bytes_out 0 200286 bytes_in 0 200286 station_ip 5.119.146.12 200286 port 18 200286 unique_id port 200286 remote_ip 10.8.0.14 200288 username hashtadani5 200288 mac 200288 bytes_out 0 200288 bytes_in 0 200288 station_ip 5.202.3.72 200288 port 34 200288 unique_id port 200288 remote_ip 10.8.1.162 200290 username morteza4424 200290 kill_reason Maximum check online fails reached 200290 mac 200290 bytes_out 0 200290 bytes_in 0 200290 station_ip 83.123.37.94 200290 port 33 200290 unique_id port 200292 username barzegar 200292 mac 200292 bytes_out 0 200292 bytes_in 0 200292 station_ip 5.119.146.12 200292 port 35 200292 unique_id port 200292 remote_ip 10.8.1.6 200296 username meysam 200296 mac 200296 bytes_out 0 200296 bytes_in 0 200296 station_ip 188.158.49.214 200296 port 36 200296 unique_id port 200296 remote_ip 10.8.1.30 200298 username farhad3 200298 kill_reason Another user logged on this global unique id 200298 mac 200298 bytes_out 0 200298 bytes_in 0 200298 station_ip 5.119.251.92 200298 port 16 200298 unique_id port 200300 username aminvpns6 200300 mac 200300 bytes_out 0 200300 bytes_in 0 200300 station_ip 5.120.100.138 200300 port 18 200300 unique_id port 200300 remote_ip 10.8.0.210 200301 username yaghobi 200301 mac 200301 bytes_out 0 200301 bytes_in 0 200301 station_ip 37.129.170.136 200301 port 26 200301 unique_id port 200301 remote_ip 10.8.1.186 200302 username morteza4424 200302 mac 200302 bytes_out 0 200302 bytes_in 0 200302 station_ip 83.123.37.94 200302 port 26 200302 unique_id port 200302 remote_ip 10.8.1.94 200305 username barzegar 200305 mac 200305 bytes_out 0 200305 bytes_in 0 200305 station_ip 5.119.146.12 200305 port 26 200305 unique_id port 200305 remote_ip 10.8.1.6 200307 username farhad3 200307 mac 200307 bytes_out 0 200257 mac 200257 bytes_out 0 200257 bytes_in 0 200257 station_ip 5.62.199.77 200257 port 25 200257 unique_id port 200257 remote_ip 10.8.1.50 200258 username barzegar8595 200258 mac 200258 bytes_out 0 200258 bytes_in 0 200258 station_ip 46.225.232.240 200258 port 28 200258 unique_id port 200258 remote_ip 10.8.1.50 200264 username barzegar 200264 mac 200264 bytes_out 0 200264 bytes_in 0 200264 station_ip 5.119.146.12 200264 port 29 200264 unique_id port 200264 remote_ip 10.8.1.6 200266 username alipour1506 200266 mac 200266 bytes_out 5969 200266 bytes_in 13645 200266 station_ip 113.203.100.14 200266 port 25 200266 unique_id port 200266 remote_ip 10.8.1.86 200267 username hashtadani5 200267 mac 200267 bytes_out 0 200267 bytes_in 0 200267 station_ip 5.202.3.72 200267 port 31 200267 unique_id port 200267 remote_ip 10.8.1.162 200270 username hashtadani5 200270 mac 200270 bytes_out 0 200270 bytes_in 0 200270 station_ip 5.202.3.72 200270 port 31 200270 unique_id port 200270 remote_ip 10.8.1.162 200274 username barzegar 200274 kill_reason Maximum check online fails reached 200274 mac 200274 bytes_out 0 200274 bytes_in 0 200274 station_ip 5.119.146.12 200274 port 19 200274 unique_id port 200278 username barzegar 200278 mac 200278 bytes_out 0 200278 bytes_in 0 200278 station_ip 5.119.146.12 200278 port 31 200278 unique_id port 200278 remote_ip 10.8.1.6 200280 username barzegar 200280 mac 200280 bytes_out 0 200280 bytes_in 0 200280 station_ip 5.119.146.12 200280 port 31 200280 unique_id port 200280 remote_ip 10.8.1.6 200281 username hashtadani5 200281 mac 200281 bytes_out 0 200281 bytes_in 0 200281 station_ip 5.202.3.72 200281 port 31 200281 unique_id port 200281 remote_ip 10.8.1.162 200285 username barzegar 200285 mac 200285 bytes_out 0 200285 bytes_in 0 200285 station_ip 5.119.146.12 200285 port 20 200285 unique_id port 200285 remote_ip 10.8.0.14 200287 username hashtadani5 200287 kill_reason Maximum check online fails reached 200287 mac 200287 bytes_out 0 200287 bytes_in 0 200287 station_ip 5.202.3.72 200287 port 31 200287 unique_id port 200291 username kalantary6037 200291 mac 200291 bytes_out 0 200291 bytes_in 0 200291 station_ip 37.129.199.217 200291 port 18 200291 unique_id port 200291 remote_ip 10.8.0.10 200294 username hashtadani5 200294 mac 200294 bytes_out 0 200294 bytes_in 0 200294 station_ip 5.202.3.72 200294 port 20 200294 unique_id port 200294 remote_ip 10.8.0.150 200295 username morteza4424 200295 mac 200295 bytes_out 0 200295 bytes_in 0 200295 station_ip 83.123.37.94 200295 port 20 200295 unique_id port 200295 remote_ip 10.8.0.70 200299 username barzegar 200299 mac 200299 bytes_out 0 200299 bytes_in 0 200299 station_ip 5.119.146.12 200299 port 35 200299 unique_id port 200299 remote_ip 10.8.1.6 200304 username morteza4424 200304 mac 200304 bytes_out 0 200304 bytes_in 0 200304 station_ip 83.123.37.94 200304 port 35 200304 unique_id port 200304 remote_ip 10.8.1.94 200308 username morteza4424 200308 mac 200308 bytes_out 0 200308 bytes_in 0 200308 station_ip 83.123.37.94 200308 port 21 200308 unique_id port 200308 remote_ip 10.8.0.70 200310 username aminvpns6 200310 mac 200310 bytes_out 1426887 200310 bytes_in 18644983 200310 station_ip 5.120.100.138 200310 port 18 200310 unique_id port 200310 remote_ip 10.8.0.210 200316 username morteza4424 200316 mac 200316 bytes_out 108815 200316 bytes_in 648742 200316 station_ip 83.123.37.94 200289 mac 200289 bytes_out 0 200289 bytes_in 0 200289 station_ip 83.123.37.94 200289 port 20 200289 unique_id port 200289 remote_ip 10.8.0.70 200293 username morteza4424 200293 mac 200293 bytes_out 0 200293 bytes_in 0 200293 station_ip 83.123.37.94 200293 port 18 200293 unique_id port 200293 remote_ip 10.8.0.70 200297 username morteza4424 200297 mac 200297 bytes_out 0 200297 bytes_in 0 200297 station_ip 83.123.37.94 200297 port 37 200297 unique_id port 200297 remote_ip 10.8.1.94 200303 username morteza4424 200303 mac 200303 bytes_out 0 200303 bytes_in 0 200303 station_ip 83.123.37.94 200303 port 20 200303 unique_id port 200303 remote_ip 10.8.0.70 200306 username morteza4424 200306 kill_reason Maximum check online fails reached 200306 mac 200306 bytes_out 0 200306 bytes_in 0 200306 station_ip 83.123.37.94 200306 port 20 200306 unique_id port 200311 username morteza4424 200311 mac 200311 bytes_out 0 200311 bytes_in 0 200311 station_ip 83.123.37.94 200311 port 18 200311 unique_id port 200311 remote_ip 10.8.0.70 200312 username alipour1506 200312 mac 200312 bytes_out 0 200312 bytes_in 0 200312 station_ip 113.203.100.14 200312 port 25 200312 unique_id port 200312 remote_ip 10.8.1.86 200313 username barzegar 200313 mac 200313 bytes_out 8925 200313 bytes_in 88872 200313 station_ip 5.119.146.12 200313 port 22 200313 unique_id port 200313 remote_ip 10.8.0.14 200314 username mohammadjavad 200314 mac 200314 bytes_out 6068498 200314 bytes_in 26551082 200314 station_ip 83.122.169.190 200314 port 10 200314 unique_id port 200314 remote_ip 10.8.0.58 200315 username hashtadani5 200315 mac 200315 bytes_out 0 200315 bytes_in 0 200315 station_ip 5.202.3.72 200315 port 35 200315 unique_id port 200315 remote_ip 10.8.1.162 200319 username mohammadjavad 200319 mac 200319 bytes_out 11941 200319 bytes_in 16187 200319 station_ip 83.122.169.190 200319 port 22 200319 unique_id port 200319 remote_ip 10.8.0.58 200321 username meysam 200321 kill_reason Another user logged on this global unique id 200321 mac 200321 bytes_out 0 200321 bytes_in 0 200321 station_ip 188.158.49.214 200321 port 25 200321 unique_id port 200321 remote_ip 10.8.1.30 200324 username farhad3 200324 kill_reason Another user logged on this global unique id 200324 mac 200324 bytes_out 0 200324 bytes_in 0 200324 station_ip 5.119.251.92 200324 port 16 200324 unique_id port 200324 remote_ip 10.8.1.38 200326 username mohammadjavad 200326 mac 200326 bytes_out 1236730 200326 bytes_in 15529092 200326 station_ip 83.122.169.190 200326 port 22 200326 unique_id port 200326 remote_ip 10.8.0.58 200328 username barzegar 200328 mac 200328 bytes_out 61034 200328 bytes_in 106941 200328 station_ip 5.119.146.12 200328 port 18 200328 unique_id port 200328 remote_ip 10.8.0.14 200329 username barzegar 200329 mac 200329 bytes_out 0 200329 bytes_in 0 200329 station_ip 5.119.146.12 200329 port 40 200329 unique_id port 200329 remote_ip 10.8.1.6 200333 username hashtadani5 200333 mac 200333 bytes_out 0 200333 bytes_in 0 200333 station_ip 5.202.3.72 200333 port 40 200333 unique_id port 200333 remote_ip 10.8.1.162 200343 username dortaj3792 200343 mac 200343 bytes_out 0 200343 bytes_in 0 200343 station_ip 5.119.114.199 200343 port 34 200343 unique_id port 200343 remote_ip 10.8.1.34 200346 username mosavi0713 200346 mac 200346 bytes_out 0 200346 bytes_in 0 200346 station_ip 37.129.169.70 200346 port 21 200346 unique_id port 200349 username arash 200349 kill_reason Another user logged on this global unique id 200307 bytes_in 0 200307 station_ip 5.119.251.92 200307 port 16 200307 unique_id port 200309 username barzegar 200309 mac 200309 bytes_out 0 200309 bytes_in 0 200309 station_ip 5.119.146.12 200309 port 26 200309 unique_id port 200309 remote_ip 10.8.1.6 200317 username barzegar 200317 mac 200317 bytes_out 0 200317 bytes_in 0 200317 station_ip 5.119.146.12 200317 port 37 200317 unique_id port 200317 remote_ip 10.8.1.6 200322 username esmaeilkazemi 200322 mac 200322 bytes_out 0 200322 bytes_in 0 200322 station_ip 83.123.26.64 200322 port 24 200322 unique_id port 200322 remote_ip 10.8.0.86 200323 username saeeddamghani 200323 mac 200323 bytes_out 0 200323 bytes_in 0 200323 station_ip 5.119.243.36 200323 port 24 200323 unique_id port 200323 remote_ip 10.8.0.26 200327 username hashtadani5 200327 mac 200327 bytes_out 0 200327 bytes_in 0 200327 station_ip 5.202.3.72 200327 port 39 200327 unique_id port 200327 remote_ip 10.8.1.162 200330 username houshang 200330 mac 200330 bytes_out 0 200330 bytes_in 0 200330 station_ip 5.120.121.25 200330 port 25 200330 unique_id port 200330 remote_ip 10.8.1.134 200331 username hashtadani5 200331 kill_reason Maximum check online fails reached 200331 mac 200331 bytes_out 0 200331 bytes_in 0 200331 station_ip 5.202.3.72 200331 port 18 200331 unique_id port 200332 username iranmanesh4443 200332 mac 200332 bytes_out 0 200332 bytes_in 0 200332 station_ip 5.119.24.59 200332 port 38 200332 unique_id port 200332 remote_ip 10.8.1.122 200334 username farhad3 200334 mac 200334 bytes_out 0 200334 bytes_in 0 200334 station_ip 5.119.251.92 200334 port 16 200334 unique_id port 200335 username morteza4424 200335 kill_reason Another user logged on this global unique id 200335 mac 200335 bytes_out 0 200335 bytes_in 0 200335 station_ip 83.123.37.94 200335 port 10 200335 unique_id port 200335 remote_ip 10.8.0.70 200337 username mosavi0713 200337 kill_reason Another user logged on this global unique id 200337 mac 200337 bytes_out 0 200337 bytes_in 0 200337 station_ip 37.129.169.70 200337 port 21 200337 unique_id port 200337 remote_ip 10.8.0.190 200339 username barzegar 200339 mac 200339 bytes_out 0 200339 bytes_in 0 200339 station_ip 5.119.146.12 200339 port 25 200339 unique_id port 200339 remote_ip 10.8.1.6 200341 username esmaeili1522 200341 kill_reason Another user logged on this global unique id 200341 mac 200341 bytes_out 0 200341 bytes_in 0 200341 station_ip 5.119.68.190 200341 port 37 200341 unique_id port 200341 remote_ip 10.8.1.106 200342 username barzegar8595 200342 mac 200342 bytes_out 803542 200342 bytes_in 3014158 200342 station_ip 46.225.232.240 200342 port 29 200342 unique_id port 200342 remote_ip 10.8.1.50 200344 username yaghobi 200344 mac 200344 bytes_out 112907 200344 bytes_in 157846 200344 station_ip 37.129.170.136 200344 port 24 200344 unique_id port 200344 remote_ip 10.8.0.174 200347 username hashtadani5 200347 kill_reason Maximum check online fails reached 200347 mac 200347 bytes_out 0 200347 bytes_in 0 200347 station_ip 5.202.3.72 200347 port 29 200347 unique_id port 200348 username houshang 200348 mac 200348 bytes_out 0 200348 bytes_in 0 200348 station_ip 5.120.121.25 200348 port 41 200348 unique_id port 200348 remote_ip 10.8.1.134 200350 username mosi 200350 kill_reason Another user logged on this global unique id 200350 mac 200350 bytes_out 0 200350 bytes_in 0 200350 station_ip 151.235.106.19 200350 port 30 200350 unique_id port 200358 username arash 200358 mac 200358 bytes_out 0 200316 port 18 200316 unique_id port 200316 remote_ip 10.8.0.70 200318 username morteza4424 200318 mac 200318 bytes_out 0 200318 bytes_in 0 200318 station_ip 83.123.37.94 200318 port 10 200318 unique_id port 200318 remote_ip 10.8.0.70 200320 username hashtadani5 200320 mac 200320 bytes_out 0 200320 bytes_in 0 200320 station_ip 5.202.3.72 200320 port 35 200320 unique_id port 200320 remote_ip 10.8.1.162 200325 username esmaeilkazemi 200325 mac 200325 bytes_out 138921 200325 bytes_in 831311 200325 station_ip 83.123.26.64 200325 port 25 200325 unique_id port 200325 remote_ip 10.8.0.86 200336 username hashtadani5 200336 mac 200336 bytes_out 0 200336 bytes_in 0 200336 station_ip 5.202.3.72 200336 port 16 200336 unique_id port 200336 remote_ip 10.8.1.162 200338 username ghaderpour6649 200338 mac 200338 bytes_out 12256 200338 bytes_in 90169 200338 station_ip 83.123.155.20 200338 port 22 200338 unique_id port 200338 remote_ip 10.8.0.206 200340 username morteza4424 200340 mac 200340 bytes_out 0 200340 bytes_in 0 200340 station_ip 83.123.37.94 200340 port 10 200340 unique_id port 200345 username abdolahi0311 200345 mac 200345 bytes_out 0 200345 bytes_in 0 200345 station_ip 46.225.232.240 200345 port 35 200345 unique_id port 200345 remote_ip 10.8.1.190 200352 username barzegar 200352 mac 200352 bytes_out 0 200352 bytes_in 0 200352 station_ip 5.119.146.12 200352 port 16 200352 unique_id port 200352 remote_ip 10.8.1.6 200353 username hosseine 200353 kill_reason Another user logged on this global unique id 200353 mac 200353 bytes_out 0 200353 bytes_in 0 200353 station_ip 37.129.249.118 200353 port 23 200353 unique_id port 200353 remote_ip 10.8.0.118 200357 username yaghobi 200357 mac 200357 bytes_out 422784 200357 bytes_in 2145391 200357 station_ip 37.129.170.136 200357 port 10 200357 unique_id port 200357 remote_ip 10.8.0.174 200364 username mosi 200364 mac 200364 bytes_out 0 200364 bytes_in 0 200364 station_ip 151.235.106.19 200364 port 30 200364 unique_id port 200364 remote_ip 10.8.1.118 200368 username hashtadani5 200368 mac 200368 bytes_out 0 200368 bytes_in 0 200368 station_ip 5.202.3.72 200368 port 30 200368 unique_id port 200368 remote_ip 10.8.1.162 200372 username alihosseini1 200372 kill_reason Maximum check online fails reached 200372 mac 200372 bytes_out 0 200372 bytes_in 0 200372 station_ip 5.119.149.117 200372 port 30 200372 unique_id port 200378 username yaghobi 200378 mac 200378 bytes_out 186675 200378 bytes_in 342628 200378 station_ip 37.129.155.48 200378 port 10 200378 unique_id port 200378 remote_ip 10.8.0.174 200380 username hashtadani5 200380 kill_reason Maximum check online fails reached 200380 mac 200380 bytes_out 0 200380 bytes_in 0 200380 station_ip 5.202.3.72 200380 port 10 200380 unique_id port 200382 username barzegar 200382 mac 200382 bytes_out 131914 200382 bytes_in 138796 200382 station_ip 5.119.146.12 200382 port 38 200382 unique_id port 200382 remote_ip 10.8.1.6 200384 username alihosseini1 200384 mac 200384 bytes_out 0 200384 bytes_in 0 200384 station_ip 5.119.149.117 200384 port 38 200384 unique_id port 200384 remote_ip 10.8.1.74 200386 username barzegar 200386 mac 200386 bytes_out 0 200386 bytes_in 0 200386 station_ip 5.119.146.12 200386 port 22 200386 unique_id port 200386 remote_ip 10.8.0.14 200388 username hashtadani5 200388 kill_reason Maximum check online fails reached 200388 mac 200388 bytes_out 0 200388 bytes_in 0 200388 station_ip 5.202.3.72 200388 port 21 200349 mac 200349 bytes_out 0 200349 bytes_in 0 200349 station_ip 37.27.13.229 200349 port 39 200349 unique_id port 200349 remote_ip 10.8.1.54 200351 username hashtadani5 200351 mac 200351 bytes_out 840120 200351 bytes_in 8838230 200351 station_ip 5.202.3.72 200351 port 24 200351 unique_id port 200351 remote_ip 10.8.0.150 200354 username hashtadani5 200354 mac 200354 bytes_out 0 200354 bytes_in 0 200354 station_ip 5.202.3.72 200354 port 24 200354 unique_id port 200354 remote_ip 10.8.0.150 200355 username esmaeili1522 200355 kill_reason Another user logged on this global unique id 200355 mac 200355 bytes_out 0 200355 bytes_in 0 200355 station_ip 5.119.68.190 200355 port 37 200355 unique_id port 200356 username barzegar 200356 mac 200356 bytes_out 0 200356 bytes_in 0 200356 station_ip 5.119.146.12 200356 port 16 200356 unique_id port 200356 remote_ip 10.8.1.6 200359 username alihosseini1 200359 mac 200359 bytes_out 217550 200359 bytes_in 1491466 200359 station_ip 5.119.149.117 200359 port 21 200359 unique_id port 200359 remote_ip 10.8.0.38 200361 username alihosseini1 200361 mac 200361 bytes_out 0 200361 bytes_in 0 200361 station_ip 5.119.149.117 200361 port 39 200361 unique_id port 200361 remote_ip 10.8.1.74 200362 username alihosseini1 200362 mac 200362 bytes_out 0 200362 bytes_in 0 200362 station_ip 5.119.149.117 200362 port 39 200362 unique_id port 200362 remote_ip 10.8.1.74 200363 username mosi 200363 mac 200363 bytes_out 0 200363 bytes_in 0 200363 station_ip 151.235.106.19 200363 port 30 200363 unique_id port 200367 username alihosseini1 200367 mac 200367 bytes_out 0 200367 bytes_in 0 200367 station_ip 5.119.149.117 200367 port 39 200367 unique_id port 200367 remote_ip 10.8.1.74 200369 username kalantary6037 200369 mac 200369 bytes_out 0 200369 bytes_in 0 200369 station_ip 37.129.218.181 200369 port 21 200369 unique_id port 200369 remote_ip 10.8.0.10 200370 username hashtadani5 200370 mac 200370 bytes_out 0 200370 bytes_in 0 200370 station_ip 5.202.3.72 200370 port 30 200370 unique_id port 200370 remote_ip 10.8.1.162 200371 username esmaeili1522 200371 kill_reason Another user logged on this global unique id 200371 mac 200371 bytes_out 0 200371 bytes_in 0 200371 station_ip 5.119.68.190 200371 port 37 200371 unique_id port 200375 username hashtadani5 200375 mac 200375 bytes_out 0 200375 bytes_in 0 200375 station_ip 5.202.3.72 200375 port 39 200375 unique_id port 200375 remote_ip 10.8.1.162 200376 username esmaeili1522 200376 kill_reason Another user logged on this global unique id 200376 mac 200376 bytes_out 0 200376 bytes_in 0 200376 station_ip 5.119.68.190 200376 port 37 200376 unique_id port 200377 username hashtadani5 200377 kill_reason Maximum check online fails reached 200377 mac 200377 bytes_out 0 200377 bytes_in 0 200377 station_ip 5.202.3.72 200377 port 39 200377 unique_id port 200381 username yaghobi 200381 mac 200381 bytes_out 0 200381 bytes_in 0 200381 station_ip 37.129.155.48 200381 port 40 200381 unique_id port 200381 remote_ip 10.8.1.186 200389 username alihosseini1 200389 mac 200389 bytes_out 0 200389 bytes_in 0 200389 station_ip 5.119.149.117 200389 port 40 200389 unique_id port 200389 remote_ip 10.8.1.74 200392 username barzegar 200392 mac 200392 bytes_out 0 200392 bytes_in 0 200392 station_ip 5.119.146.12 200392 port 38 200392 unique_id port 200392 remote_ip 10.8.1.6 200395 username farhad3 200395 mac 200395 bytes_out 0 200395 bytes_in 0 200358 bytes_in 0 200358 station_ip 37.27.13.229 200358 port 39 200358 unique_id port 200360 username godarzi 200360 kill_reason Another user logged on this global unique id 200360 mac 200360 bytes_out 0 200360 bytes_in 0 200360 station_ip 5.202.62.43 200360 port 15 200360 unique_id port 200360 remote_ip 10.8.0.146 200365 username kalantary6037 200365 mac 200365 bytes_out 200941 200365 bytes_in 1413227 200365 station_ip 37.129.218.181 200365 port 10 200365 unique_id port 200365 remote_ip 10.8.0.10 200366 username mosi 200366 mac 200366 bytes_out 0 200366 bytes_in 0 200366 station_ip 37.137.10.24 200366 port 39 200366 unique_id port 200366 remote_ip 10.8.1.118 200373 username hamid1430 200373 mac 200373 bytes_out 0 200373 bytes_in 0 200373 station_ip 83.122.168.172 200373 port 22 200373 unique_id port 200373 remote_ip 10.8.0.110 200374 username alihosseini1 200374 mac 200374 bytes_out 0 200374 bytes_in 0 200374 station_ip 5.119.149.117 200374 port 39 200374 unique_id port 200374 remote_ip 10.8.1.74 200379 username farhad3 200379 mac 200379 bytes_out 0 200379 bytes_in 0 200379 station_ip 5.119.251.92 200379 port 25 200379 unique_id port 200379 remote_ip 10.8.1.38 200383 username esmaeili1522 200383 kill_reason Another user logged on this global unique id 200383 mac 200383 bytes_out 0 200383 bytes_in 0 200383 station_ip 5.119.68.190 200383 port 37 200383 unique_id port 200385 username ahmadi1 200385 mac 200385 bytes_out 34528 200385 bytes_in 266710 200385 station_ip 37.129.10.107 200385 port 21 200385 unique_id port 200385 remote_ip 10.8.0.42 200387 username hashtadani5 200387 mac 200387 bytes_out 0 200387 bytes_in 0 200387 station_ip 5.202.3.72 200387 port 38 200387 unique_id port 200387 remote_ip 10.8.1.162 200390 username barzegar 200390 mac 200390 bytes_out 0 200390 bytes_in 0 200390 station_ip 5.119.146.12 200390 port 38 200390 unique_id port 200390 remote_ip 10.8.1.6 200391 username hashtadani5 200391 mac 200391 bytes_out 0 200391 bytes_in 0 200391 station_ip 5.202.3.72 200391 port 41 200391 unique_id port 200391 remote_ip 10.8.1.162 200393 username farhad3 200393 mac 200393 bytes_out 0 200393 bytes_in 0 200393 station_ip 5.119.251.92 200393 port 25 200393 unique_id port 200393 remote_ip 10.8.1.38 200396 username farhad3 200396 mac 200396 bytes_out 0 200396 bytes_in 0 200396 station_ip 5.119.251.92 200396 port 25 200396 unique_id port 200396 remote_ip 10.8.1.38 200398 username hashtadani5 200398 mac 200398 bytes_out 0 200398 bytes_in 0 200398 station_ip 5.202.3.72 200398 port 38 200398 unique_id port 200398 remote_ip 10.8.1.162 200401 username alipour1506 200401 kill_reason Another user logged on this global unique id 200401 mac 200401 bytes_out 0 200401 bytes_in 0 200401 station_ip 151.234.23.177 200401 port 26 200401 unique_id port 200401 remote_ip 10.8.1.86 200402 username farhad3 200402 kill_reason Another user logged on this global unique id 200402 mac 200402 bytes_out 0 200402 bytes_in 0 200402 station_ip 5.119.251.92 200402 port 25 200402 unique_id port 200402 remote_ip 10.8.1.38 200403 username barzegar 200403 mac 200403 bytes_out 342389 200403 bytes_in 1111016 200403 station_ip 5.119.146.12 200403 port 25 200403 unique_id port 200403 remote_ip 10.8.0.14 200405 username sabaghnezhad 200405 mac 200405 bytes_out 37294 200405 bytes_in 40368 200405 station_ip 37.129.183.37 200405 port 24 200405 unique_id port 200405 remote_ip 10.8.0.18 200406 username yaghobi 200406 mac 200406 bytes_out 0 200388 unique_id port 200394 username farhad3 200394 mac 200394 bytes_out 0 200394 bytes_in 0 200394 station_ip 5.119.251.92 200394 port 25 200394 unique_id port 200394 remote_ip 10.8.1.38 200397 username yarmohamadi7916 200397 kill_reason Another user logged on this global unique id 200397 mac 200397 bytes_out 0 200397 bytes_in 0 200397 station_ip 5.120.190.14 200397 port 16 200397 unique_id port 200397 remote_ip 10.8.1.154 200399 username sabaghnezhad 200399 mac 200399 bytes_out 2113567 200399 bytes_in 12400576 200399 station_ip 37.129.183.37 200399 port 36 200399 unique_id port 200399 remote_ip 10.8.1.42 200400 username barzegar8595 200400 mac 200400 bytes_out 0 200400 bytes_in 0 200400 station_ip 46.225.232.240 200400 port 34 200400 unique_id port 200400 remote_ip 10.8.1.50 200409 username alipour1506 200409 kill_reason Another user logged on this global unique id 200409 mac 200409 bytes_out 0 200409 bytes_in 0 200409 station_ip 151.234.23.177 200409 port 26 200409 unique_id port 200411 username arash 200411 mac 200411 bytes_out 0 200411 bytes_in 0 200411 station_ip 37.27.13.229 200411 port 36 200411 unique_id port 200411 remote_ip 10.8.1.54 200413 username esmaeili1522 200413 kill_reason Another user logged on this global unique id 200413 mac 200413 bytes_out 0 200413 bytes_in 0 200413 station_ip 5.119.68.190 200413 port 37 200413 unique_id port 200415 username sabaghnezhad 200415 mac 200415 bytes_out 100716 200415 bytes_in 336774 200415 station_ip 37.129.183.37 200415 port 25 200415 unique_id port 200415 remote_ip 10.8.0.18 200418 username yarmohamadi7916 200418 kill_reason Another user logged on this global unique id 200418 mac 200418 bytes_out 0 200418 bytes_in 0 200418 station_ip 5.120.190.14 200418 port 16 200418 unique_id port 200419 username esmaeili1522 200419 kill_reason Another user logged on this global unique id 200419 mac 200419 bytes_out 0 200419 bytes_in 0 200419 station_ip 5.119.68.190 200419 port 37 200419 unique_id port 200421 username barzegar8595 200421 mac 200421 bytes_out 0 200421 bytes_in 0 200421 station_ip 46.225.232.240 200421 port 34 200421 unique_id port 200421 remote_ip 10.8.1.50 200423 username hashtadani5 200423 kill_reason Another user logged on this global unique id 200423 mac 200423 bytes_out 0 200423 bytes_in 0 200423 station_ip 5.202.3.72 200423 port 26 200423 unique_id port 200423 remote_ip 10.8.0.150 200424 username barzegar 200424 mac 200424 bytes_out 0 200424 bytes_in 0 200424 station_ip 5.119.146.12 200424 port 32 200424 unique_id port 200424 remote_ip 10.8.1.6 200428 username alihosseini1 200428 mac 200428 bytes_out 0 200428 bytes_in 0 200428 station_ip 5.119.149.117 200428 port 38 200428 unique_id port 200428 remote_ip 10.8.1.74 200431 username kharazmi2920 200431 mac 200431 bytes_out 0 200431 bytes_in 0 200431 station_ip 83.123.28.86 200431 port 22 200431 unique_id port 200431 remote_ip 10.8.0.34 200432 username barzegar8595 200432 mac 200432 bytes_out 2443815 200432 bytes_in 14794317 200432 station_ip 46.225.232.240 200432 port 26 200432 unique_id port 200432 remote_ip 10.8.1.50 200434 username yarmohamadi7916 200434 kill_reason Another user logged on this global unique id 200434 mac 200434 bytes_out 0 200434 bytes_in 0 200434 station_ip 5.120.190.14 200434 port 16 200434 unique_id port 200437 username hashtadani5 200437 mac 200437 bytes_out 0 200437 bytes_in 0 200437 station_ip 5.202.3.72 200437 port 34 200437 unique_id port 200437 remote_ip 10.8.1.162 200439 username godarzi 200439 kill_reason Another user logged on this global unique id 200439 mac 200395 station_ip 5.119.251.92 200395 port 25 200395 unique_id port 200395 remote_ip 10.8.1.38 200404 username alihosseini1 200404 mac 200404 bytes_out 0 200404 bytes_in 0 200404 station_ip 5.119.149.117 200404 port 38 200404 unique_id port 200404 remote_ip 10.8.1.74 200407 username barzegar8595 200407 mac 200407 bytes_out 0 200407 bytes_in 0 200407 station_ip 46.225.232.240 200407 port 34 200407 unique_id port 200407 remote_ip 10.8.1.50 200408 username aminvpns6 200408 mac 200408 bytes_out 467849 200408 bytes_in 2618069 200408 station_ip 5.120.100.138 200408 port 40 200408 unique_id port 200408 remote_ip 10.8.1.62 200410 username hashtadani5 200410 kill_reason Maximum check online fails reached 200410 mac 200410 bytes_out 0 200410 bytes_in 0 200410 station_ip 5.202.3.72 200410 port 24 200410 unique_id port 200416 username barzegar 200416 mac 200416 bytes_out 12270 200416 bytes_in 24794 200416 station_ip 5.119.146.12 200416 port 26 200416 unique_id port 200416 remote_ip 10.8.0.14 200430 username barzegar 200430 mac 200430 bytes_out 0 200430 bytes_in 0 200430 station_ip 5.119.146.12 200430 port 34 200430 unique_id port 200430 remote_ip 10.8.1.6 200435 username barzegar 200435 mac 200435 bytes_out 0 200435 bytes_in 0 200435 station_ip 5.119.146.12 200435 port 34 200435 unique_id port 200435 remote_ip 10.8.1.6 200441 username alirezaza 200441 unique_id port 200441 terminate_cause Lost-Carrier 200441 bytes_out 365745 200441 bytes_in 10401268 200441 station_ip 5.119.172.51 200441 port 15729723 200441 nas_port_type Virtual 200441 remote_ip 5.5.5.255 200443 username hashtadani5 200443 mac 200443 bytes_out 0 200443 bytes_in 0 200443 station_ip 5.202.3.72 200443 port 26 200443 unique_id port 200443 remote_ip 10.8.1.162 200444 username alihosseini1 200444 mac 200444 bytes_out 2051059 200444 bytes_in 19362183 200444 station_ip 5.119.149.117 200444 port 32 200444 unique_id port 200444 remote_ip 10.8.1.74 200447 username barzegar 200447 mac 200447 bytes_out 0 200447 bytes_in 0 200447 station_ip 5.119.146.12 200447 port 35 200447 unique_id port 200447 remote_ip 10.8.1.6 200448 username barzegar 200448 mac 200448 bytes_out 0 200448 bytes_in 0 200448 station_ip 5.119.146.12 200448 port 26 200448 unique_id port 200448 remote_ip 10.8.1.6 200451 username milan 200451 kill_reason Another user logged on this global unique id 200451 mac 200451 bytes_out 0 200451 bytes_in 0 200451 station_ip 5.120.188.74 200451 port 16 200451 unique_id port 200451 remote_ip 10.8.1.182 200457 username hashtadani5 200457 kill_reason Maximum check online fails reached 200457 mac 200457 bytes_out 0 200457 bytes_in 0 200457 station_ip 83.123.98.213 200457 port 32 200457 unique_id port 200461 username barzegar 200461 mac 200461 bytes_out 0 200461 bytes_in 0 200461 station_ip 5.119.146.12 200461 port 35 200461 unique_id port 200461 remote_ip 10.8.1.6 200464 username hashtadani5 200464 mac 200464 bytes_out 0 200464 bytes_in 0 200464 station_ip 83.123.98.213 200464 port 38 200464 unique_id port 200464 remote_ip 10.8.1.162 200465 username hashtadani5 200465 mac 200465 bytes_out 0 200465 bytes_in 0 200465 station_ip 83.123.98.213 200465 port 14 200465 unique_id port 200465 remote_ip 10.8.0.150 200469 username milan 200469 kill_reason Another user logged on this global unique id 200469 mac 200469 bytes_out 0 200469 bytes_in 0 200469 station_ip 5.120.188.74 200469 port 16 200469 unique_id port 200471 username hamid1430 200471 mac 200471 bytes_out 747427 200406 bytes_in 0 200406 station_ip 37.129.155.48 200406 port 40 200406 unique_id port 200406 remote_ip 10.8.1.186 200412 username hashtadani5 200412 mac 200412 bytes_out 0 200412 bytes_in 0 200412 station_ip 5.202.3.72 200412 port 26 200412 unique_id port 200412 remote_ip 10.8.0.150 200414 username barzegar 200414 mac 200414 bytes_out 0 200414 bytes_in 0 200414 station_ip 5.119.146.12 200414 port 26 200414 unique_id port 200414 remote_ip 10.8.0.14 200417 username barzegar 200417 mac 200417 bytes_out 0 200417 bytes_in 0 200417 station_ip 5.119.146.12 200417 port 25 200417 unique_id port 200417 remote_ip 10.8.1.6 200420 username malekpoir 200420 mac 200420 bytes_out 0 200420 bytes_in 0 200420 station_ip 5.120.117.55 200420 port 32 200420 unique_id port 200420 remote_ip 10.8.1.70 200422 username dortaj3792 200422 mac 200422 bytes_out 0 200422 bytes_in 0 200422 station_ip 5.119.114.199 200422 port 35 200422 unique_id port 200422 remote_ip 10.8.1.34 200425 username esmaeili1522 200425 kill_reason Another user logged on this global unique id 200425 mac 200425 bytes_out 0 200425 bytes_in 0 200425 station_ip 5.119.68.190 200425 port 37 200425 unique_id port 200426 username barzegar 200426 mac 200426 bytes_out 0 200426 bytes_in 0 200426 station_ip 5.119.146.12 200426 port 32 200426 unique_id port 200426 remote_ip 10.8.1.6 200427 username esmaeili1522 200427 kill_reason Another user logged on this global unique id 200427 mac 200427 bytes_out 0 200427 bytes_in 0 200427 station_ip 5.119.68.190 200427 port 37 200427 unique_id port 200429 username aminvpns6 200429 mac 200429 bytes_out 0 200429 bytes_in 0 200429 station_ip 5.120.100.138 200429 port 32 200429 unique_id port 200429 remote_ip 10.8.1.62 200433 username barzegar 200433 mac 200433 bytes_out 0 200433 bytes_in 0 200433 station_ip 5.119.146.12 200433 port 34 200433 unique_id port 200433 remote_ip 10.8.1.6 200436 username esmaeili1522 200436 kill_reason Another user logged on this global unique id 200436 mac 200436 bytes_out 0 200436 bytes_in 0 200436 station_ip 5.119.68.190 200436 port 37 200436 unique_id port 200438 username mohammadjavad 200438 mac 200438 bytes_out 744413 200438 bytes_in 9533325 200438 station_ip 83.122.195.180 200438 port 22 200438 unique_id port 200438 remote_ip 10.8.0.58 200442 username esmaeili1522 200442 kill_reason Another user logged on this global unique id 200442 mac 200442 bytes_out 0 200442 bytes_in 0 200442 station_ip 5.119.68.190 200442 port 37 200442 unique_id port 200446 username yarmohamadi7916 200446 mac 200446 bytes_out 0 200446 bytes_in 0 200446 station_ip 5.120.190.14 200446 port 16 200446 unique_id port 200454 username yaghobi 200454 kill_reason Another user logged on this global unique id 200454 mac 200454 bytes_out 0 200454 bytes_in 0 200454 station_ip 37.129.187.156 200454 port 26 200454 unique_id port 200454 remote_ip 10.8.1.186 200456 username hashtadani5 200456 mac 200456 bytes_out 1644 200456 bytes_in 5076 200456 station_ip 83.123.98.213 200456 port 26 200456 unique_id port 200456 remote_ip 10.8.0.150 200460 username hashtadani5 200460 mac 200460 bytes_out 0 200460 bytes_in 0 200460 station_ip 83.123.98.213 200460 port 38 200460 unique_id port 200460 remote_ip 10.8.1.162 200463 username esmaeili1522 200463 mac 200463 bytes_out 0 200463 bytes_in 0 200463 station_ip 5.119.68.190 200463 port 37 200463 unique_id port 200467 username hashtadani5 200467 mac 200467 bytes_out 0 200467 bytes_in 0 200467 station_ip 83.123.98.213 200439 bytes_out 0 200439 bytes_in 0 200439 station_ip 5.202.62.43 200439 port 15 200439 unique_id port 200440 username kalantary6037 200440 mac 200440 bytes_out 0 200440 bytes_in 0 200440 station_ip 37.129.152.49 200440 port 26 200440 unique_id port 200440 remote_ip 10.8.0.10 200445 username hashtadani5 200445 mac 200445 bytes_out 0 200445 bytes_in 0 200445 station_ip 5.202.3.72 200445 port 26 200445 unique_id port 200445 remote_ip 10.8.1.162 200449 username esmaeili1522 200449 kill_reason Another user logged on this global unique id 200449 mac 200449 bytes_out 0 200449 bytes_in 0 200449 station_ip 5.119.68.190 200449 port 37 200449 unique_id port 200450 username hashtadani5 200450 mac 200450 bytes_out 89516 200450 bytes_in 745949 200450 station_ip 5.202.3.72 200450 port 22 200450 unique_id port 200450 remote_ip 10.8.0.150 200452 username barzegar 200452 mac 200452 bytes_out 0 200452 bytes_in 0 200452 station_ip 5.119.146.12 200452 port 32 200452 unique_id port 200452 remote_ip 10.8.1.6 200453 username hashtadani5 200453 mac 200453 bytes_out 0 200453 bytes_in 0 200453 station_ip 5.202.3.72 200453 port 32 200453 unique_id port 200453 remote_ip 10.8.1.162 200455 username hashtadani5 200455 mac 200455 bytes_out 0 200455 bytes_in 0 200455 station_ip 83.123.98.213 200455 port 26 200455 unique_id port 200455 remote_ip 10.8.0.150 200458 username esmaeili1522 200458 kill_reason Another user logged on this global unique id 200458 mac 200458 bytes_out 0 200458 bytes_in 0 200458 station_ip 5.119.68.190 200458 port 37 200458 unique_id port 200459 username seyedrezaei2572 200459 mac 200459 bytes_out 6658875 200459 bytes_in 19172590 200459 station_ip 5.218.250.109 200459 port 14 200459 unique_id port 200459 remote_ip 10.8.0.186 200462 username hashtadani5 200462 mac 200462 bytes_out 0 200462 bytes_in 0 200462 station_ip 83.123.98.213 200462 port 38 200462 unique_id port 200462 remote_ip 10.8.1.162 200466 username alihosseini1 200466 mac 200466 bytes_out 0 200466 bytes_in 0 200466 station_ip 5.119.196.132 200466 port 36 200466 unique_id port 200466 remote_ip 10.8.1.74 200470 username alihosseini1 200470 mac 200470 bytes_out 0 200470 bytes_in 0 200470 station_ip 5.119.196.132 200470 port 36 200470 unique_id port 200470 remote_ip 10.8.1.74 200475 username barzegar 200475 mac 200475 bytes_out 17918 200475 bytes_in 33440 200475 station_ip 5.119.146.12 200475 port 35 200475 unique_id port 200475 remote_ip 10.8.1.6 200478 username hamid1430 200478 mac 200478 bytes_out 372457 200478 bytes_in 1040448 200478 station_ip 37.129.228.134 200478 port 26 200478 unique_id port 200478 remote_ip 10.8.0.110 200480 username milan 200480 kill_reason Another user logged on this global unique id 200480 mac 200480 bytes_out 0 200480 bytes_in 0 200480 station_ip 5.120.188.74 200480 port 16 200480 unique_id port 200483 username alihosseini1 200483 mac 200483 bytes_out 0 200483 bytes_in 0 200483 station_ip 5.119.196.132 200483 port 35 200483 unique_id port 200483 remote_ip 10.8.1.74 200486 username iranmanesh4443 200486 mac 200486 bytes_out 0 200486 bytes_in 0 200486 station_ip 5.119.24.59 200486 port 36 200486 unique_id port 200486 remote_ip 10.8.1.122 200488 username milan 200488 kill_reason Another user logged on this global unique id 200488 mac 200488 bytes_out 0 200488 bytes_in 0 200488 station_ip 5.120.188.74 200488 port 16 200488 unique_id port 200495 username milan 200495 kill_reason Another user logged on this global unique id 200495 mac 200495 bytes_out 0 200467 port 14 200467 unique_id port 200467 remote_ip 10.8.0.150 200468 username hashtadani5 200468 mac 200468 bytes_out 0 200468 bytes_in 0 200468 station_ip 83.123.98.213 200468 port 14 200468 unique_id port 200468 remote_ip 10.8.0.150 200472 username hashtadani5 200472 mac 200472 bytes_out 0 200472 bytes_in 0 200472 station_ip 83.123.98.213 200472 port 14 200472 unique_id port 200472 remote_ip 10.8.0.150 200474 username hatami 200474 mac 200474 bytes_out 0 200474 bytes_in 0 200474 station_ip 151.235.77.244 200474 port 37 200474 unique_id port 200474 remote_ip 10.8.1.26 200479 username barzegar 200479 mac 200479 bytes_out 0 200479 bytes_in 0 200479 station_ip 5.119.146.12 200479 port 35 200479 unique_id port 200479 remote_ip 10.8.1.6 200481 username houshang 200481 mac 200481 bytes_out 0 200481 bytes_in 0 200481 station_ip 5.120.105.86 200481 port 36 200481 unique_id port 200481 remote_ip 10.8.1.134 200484 username kalantary6037 200484 mac 200484 bytes_out 318197 200484 bytes_in 1910680 200484 station_ip 37.129.132.197 200484 port 14 200484 unique_id port 200484 remote_ip 10.8.0.10 200485 username alihosseini1 200485 mac 200485 bytes_out 0 200485 bytes_in 0 200485 station_ip 5.119.196.132 200485 port 35 200485 unique_id port 200485 remote_ip 10.8.1.74 200487 username alihosseini1 200487 mac 200487 bytes_out 0 200487 bytes_in 0 200487 station_ip 5.119.196.132 200487 port 35 200487 unique_id port 200487 remote_ip 10.8.1.74 200489 username barzegar 200489 mac 200489 bytes_out 0 200489 bytes_in 0 200489 station_ip 5.119.146.12 200489 port 35 200489 unique_id port 200489 remote_ip 10.8.1.6 200491 username alihosseini1 200491 mac 200491 bytes_out 0 200491 bytes_in 0 200491 station_ip 5.119.196.132 200491 port 35 200491 unique_id port 200491 remote_ip 10.8.1.74 200494 username farhad3 200494 mac 200494 bytes_out 0 200494 bytes_in 0 200494 station_ip 5.119.251.92 200494 port 35 200494 unique_id port 200494 remote_ip 10.8.1.38 200496 username barzegar 200496 mac 200496 bytes_out 0 200496 bytes_in 0 200496 station_ip 5.119.146.12 200496 port 35 200496 unique_id port 200496 remote_ip 10.8.1.6 200497 username hosseine 200497 kill_reason Another user logged on this global unique id 200497 mac 200497 bytes_out 0 200497 bytes_in 0 200497 station_ip 37.129.249.118 200497 port 23 200497 unique_id port 200498 username arash 200498 mac 200498 bytes_out 0 200498 bytes_in 0 200498 station_ip 37.27.13.229 200498 port 14 200498 unique_id port 200498 remote_ip 10.8.0.162 200499 username milan 200499 kill_reason Another user logged on this global unique id 200499 mac 200499 bytes_out 0 200499 bytes_in 0 200499 station_ip 5.120.188.74 200499 port 16 200499 unique_id port 200503 username alirezazadeh 200503 unique_id port 200503 terminate_cause Lost-Carrier 200503 bytes_out 1208601 200503 bytes_in 20416626 200503 station_ip 5.120.165.143 200503 port 15729726 200503 nas_port_type Virtual 200503 remote_ip 5.5.5.132 200506 username khalili2 200506 mac 200506 bytes_out 0 200506 bytes_in 0 200506 station_ip 5.119.245.233 200506 port 22 200506 unique_id port 200510 username esmaeilkazemi 200510 mac 200510 bytes_out 0 200510 bytes_in 0 200510 station_ip 83.123.26.64 200510 port 26 200510 unique_id port 200510 remote_ip 10.8.0.86 200514 username hamid1430 200514 mac 200514 bytes_out 821306 200514 bytes_in 5168653 200514 station_ip 37.129.171.54 200514 port 14 200514 unique_id port 200514 remote_ip 10.8.0.110 200471 bytes_in 1962587 200471 station_ip 37.129.228.134 200471 port 22 200471 unique_id port 200471 remote_ip 10.8.0.110 200473 username kalantary6037 200473 mac 200473 bytes_out 0 200473 bytes_in 0 200473 station_ip 37.129.175.49 200473 port 14 200473 unique_id port 200473 remote_ip 10.8.0.10 200476 username farhad3 200476 mac 200476 bytes_out 0 200476 bytes_in 0 200476 station_ip 5.119.251.92 200476 port 37 200476 unique_id port 200476 remote_ip 10.8.1.38 200477 username mosi 200477 mac 200477 bytes_out 0 200477 bytes_in 0 200477 station_ip 151.235.106.19 200477 port 36 200477 unique_id port 200477 remote_ip 10.8.1.118 200482 username alihosseini1 200482 mac 200482 bytes_out 975296 200482 bytes_in 8172306 200482 station_ip 5.119.196.132 200482 port 38 200482 unique_id port 200482 remote_ip 10.8.1.74 200490 username alihosseini1 200490 mac 200490 bytes_out 0 200490 bytes_in 0 200490 station_ip 5.119.196.132 200490 port 35 200490 unique_id port 200490 remote_ip 10.8.1.74 200492 username seyedrezaei2572 200492 mac 200492 bytes_out 0 200492 bytes_in 0 200492 station_ip 5.218.174.69 200492 port 14 200492 unique_id port 200492 remote_ip 10.8.0.186 200493 username majidsarmast 200493 mac 200493 bytes_out 1017913 200493 bytes_in 2336153 200493 station_ip 86.57.110.152 200493 port 26 200493 unique_id port 200493 remote_ip 10.8.1.114 200500 username barzegar 200500 mac 200500 bytes_out 0 200500 bytes_in 0 200500 station_ip 5.119.146.12 200500 port 35 200500 unique_id port 200500 remote_ip 10.8.1.6 200501 username khalili2 200501 kill_reason Another user logged on this global unique id 200501 mac 200501 bytes_out 0 200501 bytes_in 0 200501 station_ip 5.119.245.233 200501 port 22 200501 unique_id port 200501 remote_ip 10.8.0.130 200504 username kalantary6037 200504 mac 200504 bytes_out 1119809 200504 bytes_in 10099278 200504 station_ip 37.129.173.213 200504 port 26 200504 unique_id port 200504 remote_ip 10.8.0.10 200513 username milan 200513 kill_reason Another user logged on this global unique id 200513 mac 200513 bytes_out 0 200513 bytes_in 0 200513 station_ip 5.120.188.74 200513 port 16 200513 unique_id port 200515 username barzegar 200515 mac 200515 bytes_out 0 200515 bytes_in 0 200515 station_ip 5.119.146.12 200515 port 35 200515 unique_id port 200515 remote_ip 10.8.1.6 200516 username barzegar 200516 mac 200516 bytes_out 0 200516 bytes_in 0 200516 station_ip 5.119.146.12 200516 port 35 200516 unique_id port 200516 remote_ip 10.8.1.6 200521 username barzegar 200521 mac 200521 bytes_out 3134 200521 bytes_in 5293 200521 station_ip 5.119.146.12 200521 port 22 200521 unique_id port 200521 remote_ip 10.8.0.14 200527 username sekonji0496 200527 mac 200527 bytes_out 0 200527 bytes_in 0 200527 station_ip 83.123.223.251 200527 port 22 200527 unique_id port 200527 remote_ip 10.8.0.66 200530 username barzegar 200530 mac 200530 bytes_out 0 200530 bytes_in 0 200530 station_ip 5.119.146.12 200530 port 35 200530 unique_id port 200530 remote_ip 10.8.1.6 200532 username tahmorsi 200532 mac 200532 bytes_out 0 200532 bytes_in 0 200532 station_ip 86.57.61.94 200532 port 36 200532 unique_id port 200532 remote_ip 10.8.1.102 200534 username tahmorsi 200534 mac 200534 bytes_out 0 200534 bytes_in 0 200534 station_ip 86.57.61.94 200534 port 35 200534 unique_id port 200534 remote_ip 10.8.1.102 200539 username sekonji0496 200539 mac 200539 bytes_out 106399 200539 bytes_in 196060 200539 station_ip 83.123.223.251 200495 bytes_in 0 200495 station_ip 5.120.188.74 200495 port 16 200495 unique_id port 200502 username farhad3 200502 mac 200502 bytes_out 251617 200502 bytes_in 1840491 200502 station_ip 5.119.251.92 200502 port 35 200502 unique_id port 200502 remote_ip 10.8.1.38 200505 username hamid1430 200505 mac 200505 bytes_out 0 200505 bytes_in 0 200505 station_ip 37.129.171.54 200505 port 14 200505 unique_id port 200505 remote_ip 10.8.0.110 200507 username milan 200507 kill_reason Another user logged on this global unique id 200507 mac 200507 bytes_out 0 200507 bytes_in 0 200507 station_ip 5.120.188.74 200507 port 16 200507 unique_id port 200508 username godarzi 200508 kill_reason Another user logged on this global unique id 200508 mac 200508 bytes_out 0 200508 bytes_in 0 200508 station_ip 5.202.62.43 200508 port 15 200508 unique_id port 200509 username esmaeilkazemi 200509 mac 200509 bytes_out 0 200509 bytes_in 0 200509 station_ip 83.123.26.64 200509 port 22 200509 unique_id port 200509 remote_ip 10.8.0.86 200511 username esmaeilkazemi 200511 mac 200511 bytes_out 22019 200511 bytes_in 54468 200511 station_ip 83.123.26.64 200511 port 22 200511 unique_id port 200511 remote_ip 10.8.0.86 200512 username barzegar 200512 mac 200512 bytes_out 3054347 200512 bytes_in 1354342 200512 station_ip 5.119.146.12 200512 port 35 200512 unique_id port 200512 remote_ip 10.8.1.6 200520 username milan 200520 kill_reason Another user logged on this global unique id 200520 mac 200520 bytes_out 0 200520 bytes_in 0 200520 station_ip 5.120.188.74 200520 port 16 200520 unique_id port 200523 username esmaeilkazemi 200523 mac 200523 bytes_out 4877 200523 bytes_in 20374 200523 station_ip 83.123.26.64 200523 port 29 200523 unique_id port 200523 remote_ip 10.8.0.86 200529 username farhad3 200529 mac 200529 bytes_out 0 200529 bytes_in 0 200529 station_ip 5.119.251.92 200529 port 25 200529 unique_id port 200529 remote_ip 10.8.1.38 200533 username morteza4424 200533 kill_reason Another user logged on this global unique id 200533 mac 200533 bytes_out 0 200533 bytes_in 0 200533 station_ip 83.123.115.234 200533 port 27 200533 unique_id port 200535 username sekonji0496 200535 mac 200535 bytes_out 1268510 200535 bytes_in 16456156 200535 station_ip 83.123.223.251 200535 port 22 200535 unique_id port 200535 remote_ip 10.8.0.66 200537 username farhad3 200537 kill_reason Another user logged on this global unique id 200537 mac 200537 bytes_out 0 200537 bytes_in 0 200537 station_ip 5.119.251.92 200537 port 25 200537 unique_id port 200537 remote_ip 10.8.1.38 200540 username hamid1430 200540 kill_reason Another user logged on this global unique id 200540 mac 200540 bytes_out 0 200540 bytes_in 0 200540 station_ip 37.129.171.54 200540 port 28 200540 unique_id port 200540 remote_ip 10.8.0.110 200543 username tahmorsi 200543 mac 200543 bytes_out 73585 200543 bytes_in 124625 200543 station_ip 86.57.61.94 200543 port 35 200543 unique_id port 200543 remote_ip 10.8.1.102 200546 username alirezaza 200546 unique_id port 200546 terminate_cause Lost-Carrier 200546 bytes_out 239622 200546 bytes_in 4750083 200546 station_ip 5.119.191.80 200546 port 15729730 200546 nas_port_type Virtual 200546 remote_ip 5.5.5.135 200552 username alihosseini1 200552 mac 200552 bytes_out 0 200552 bytes_in 0 200552 station_ip 5.119.177.233 200552 port 35 200552 unique_id port 200552 remote_ip 10.8.1.74 200555 username hamid1430 200555 kill_reason Another user logged on this global unique id 200555 mac 200555 bytes_out 0 200555 bytes_in 0 200555 station_ip 37.129.171.54 200555 port 28 200517 username kalantary6037 200517 mac 200517 bytes_out 1637320 200517 bytes_in 28526443 200517 station_ip 37.129.247.213 200517 port 22 200517 unique_id port 200517 remote_ip 10.8.0.10 200518 username barzegar 200518 mac 200518 bytes_out 0 200518 bytes_in 0 200518 station_ip 5.119.146.12 200518 port 35 200518 unique_id port 200518 remote_ip 10.8.1.6 200519 username morteza4424 200519 kill_reason Another user logged on this global unique id 200519 mac 200519 bytes_out 0 200519 bytes_in 0 200519 station_ip 83.123.115.234 200519 port 27 200519 unique_id port 200519 remote_ip 10.8.0.70 200522 username barzegar 200522 mac 200522 bytes_out 0 200522 bytes_in 0 200522 station_ip 5.119.146.12 200522 port 35 200522 unique_id port 200522 remote_ip 10.8.1.6 200524 username malekpoir 200524 mac 200524 bytes_out 5767586 200524 bytes_in 48879006 200524 station_ip 5.120.117.55 200524 port 25 200524 unique_id port 200524 remote_ip 10.8.1.70 200525 username esmaeilkazemi 200525 mac 200525 bytes_out 5827 200525 bytes_in 27482 200525 station_ip 83.123.26.64 200525 port 22 200525 unique_id port 200525 remote_ip 10.8.0.86 200526 username sekonji0496 200526 mac 200526 bytes_out 0 200526 bytes_in 0 200526 station_ip 83.123.223.251 200526 port 26 200526 unique_id port 200526 remote_ip 10.8.0.66 200528 username farhad3 200528 mac 200528 bytes_out 0 200528 bytes_in 0 200528 station_ip 5.119.251.92 200528 port 25 200528 unique_id port 200528 remote_ip 10.8.1.38 200531 username alirezaza 200531 unique_id port 200531 terminate_cause User-Request 200531 bytes_out 250 200531 bytes_in 214 200531 station_ip 5.119.191.80 200531 port 15729729 200531 nas_port_type Virtual 200531 remote_ip 5.5.5.135 200536 username barzegar 200536 mac 200536 bytes_out 4323 200536 bytes_in 11740 200536 station_ip 5.119.146.12 200536 port 36 200536 unique_id port 200536 remote_ip 10.8.1.6 200538 username esmaeilkazemi 200538 mac 200538 bytes_out 0 200538 bytes_in 0 200538 station_ip 83.123.26.64 200538 port 25 200538 unique_id port 200538 remote_ip 10.8.0.86 200541 username esmaeilkazemi 200541 mac 200541 bytes_out 14083 200541 bytes_in 36692 200541 station_ip 83.123.26.64 200541 port 22 200541 unique_id port 200541 remote_ip 10.8.0.86 200542 username alihosseini1 200542 mac 200542 bytes_out 0 200542 bytes_in 0 200542 station_ip 5.119.177.233 200542 port 38 200542 unique_id port 200542 remote_ip 10.8.1.74 200548 username morteza4424 200548 mac 200548 bytes_out 0 200548 bytes_in 0 200548 station_ip 83.123.115.234 200548 port 27 200548 unique_id port 200550 username houshang 200550 mac 200550 bytes_out 0 200550 bytes_in 0 200550 station_ip 5.120.105.86 200550 port 37 200550 unique_id port 200550 remote_ip 10.8.1.134 200551 username barzegar 200551 mac 200551 bytes_out 0 200551 bytes_in 0 200551 station_ip 5.119.146.12 200551 port 36 200551 unique_id port 200551 remote_ip 10.8.1.6 200553 username majidsarmast 200553 kill_reason Another user logged on this global unique id 200553 mac 200553 bytes_out 0 200553 bytes_in 0 200553 station_ip 86.57.110.152 200553 port 26 200553 unique_id port 200554 username mosi 200554 mac 200554 bytes_out 244000 200554 bytes_in 2134298 200554 station_ip 37.137.31.16 200554 port 35 200554 unique_id port 200554 remote_ip 10.8.1.118 200560 username alihosseini1 200560 mac 200560 bytes_out 0 200560 bytes_in 0 200560 station_ip 5.119.177.233 200560 port 35 200560 unique_id port 200560 remote_ip 10.8.1.74 200561 username majidsarmast 200539 port 22 200539 unique_id port 200539 remote_ip 10.8.0.66 200544 username milan 200544 kill_reason Another user logged on this global unique id 200544 mac 200544 bytes_out 0 200544 bytes_in 0 200544 station_ip 5.120.188.74 200544 port 16 200544 unique_id port 200545 username morteza4424 200545 kill_reason Another user logged on this global unique id 200545 mac 200545 bytes_out 0 200545 bytes_in 0 200545 station_ip 83.123.115.234 200545 port 27 200545 unique_id port 200547 username aminvpn 200547 unique_id port 200547 terminate_cause Lost-Carrier 200547 bytes_out 203321 200547 bytes_in 2101625 200547 station_ip 31.57.125.19 200547 port 15729731 200547 nas_port_type Virtual 200547 remote_ip 5.5.5.136 200549 username barzegar 200549 mac 200549 bytes_out 0 200549 bytes_in 0 200549 station_ip 5.119.146.12 200549 port 36 200549 unique_id port 200549 remote_ip 10.8.1.6 200556 username sekonji0496 200556 mac 200556 bytes_out 1342372 200556 bytes_in 14665616 200556 station_ip 83.123.223.251 200556 port 25 200556 unique_id port 200556 remote_ip 10.8.0.66 200557 username farhad3 200557 kill_reason Another user logged on this global unique id 200557 mac 200557 bytes_out 0 200557 bytes_in 0 200557 station_ip 5.119.251.92 200557 port 25 200557 unique_id port 200558 username alihosseini1 200558 mac 200558 bytes_out 0 200558 bytes_in 0 200558 station_ip 5.119.177.233 200558 port 36 200558 unique_id port 200558 remote_ip 10.8.1.74 200562 username godarzi 200562 mac 200562 bytes_out 0 200562 bytes_in 0 200562 station_ip 5.202.62.43 200562 port 15 200562 unique_id port 200563 username hamid1430 200563 kill_reason Another user logged on this global unique id 200563 mac 200563 bytes_out 0 200563 bytes_in 0 200563 station_ip 37.129.171.54 200563 port 28 200563 unique_id port 200569 username alihosseini1 200569 mac 200569 bytes_out 0 200569 bytes_in 0 200569 station_ip 5.119.177.233 200569 port 36 200569 unique_id port 200569 remote_ip 10.8.1.74 200571 username godarzi 200571 mac 200571 bytes_out 0 200571 bytes_in 0 200571 station_ip 5.202.62.43 200571 port 35 200571 unique_id port 200571 remote_ip 10.8.1.78 200575 username mammad 200575 unique_id port 200575 terminate_cause User-Request 200575 bytes_out 7766712 200575 bytes_in 97667834 200575 station_ip 5.233.65.206 200575 port 15729727 200575 nas_port_type Virtual 200575 remote_ip 5.5.5.133 200578 username alihosseini1 200578 mac 200578 bytes_out 0 200578 bytes_in 0 200578 station_ip 5.119.177.233 200578 port 26 200578 unique_id port 200578 remote_ip 10.8.1.74 200579 username alihosseini1 200579 mac 200579 bytes_out 0 200579 bytes_in 0 200579 station_ip 5.119.177.233 200579 port 26 200579 unique_id port 200579 remote_ip 10.8.1.74 200584 username khalili2 200584 mac 200584 bytes_out 0 200584 bytes_in 0 200584 station_ip 5.119.245.233 200584 port 37 200584 unique_id port 200584 remote_ip 10.8.1.18 200585 username barzegar 200585 mac 200585 bytes_out 0 200585 bytes_in 0 200585 station_ip 5.120.91.37 200585 port 23 200585 unique_id port 200585 remote_ip 10.8.0.14 200591 username hamid1430 200591 kill_reason Another user logged on this global unique id 200591 mac 200591 bytes_out 0 200591 bytes_in 0 200591 station_ip 37.129.171.54 200591 port 28 200591 unique_id port 200600 username alihosseini1 200600 mac 200600 bytes_out 0 200600 bytes_in 0 200600 station_ip 5.119.177.233 200600 port 25 200600 unique_id port 200600 remote_ip 10.8.0.38 200601 username kalantary6037 200601 mac 200601 bytes_out 464125 200601 bytes_in 5511082 200555 unique_id port 200559 username barzegar 200559 mac 200559 bytes_out 0 200559 bytes_in 0 200559 station_ip 5.119.146.12 200559 port 35 200559 unique_id port 200559 remote_ip 10.8.1.6 200564 username kalantary6037 200564 mac 200564 bytes_out 0 200564 bytes_in 0 200564 station_ip 37.129.159.205 200564 port 26 200564 unique_id port 200564 remote_ip 10.8.0.10 200565 username hosseine 200565 mac 200565 bytes_out 0 200565 bytes_in 0 200565 station_ip 37.129.249.118 200565 port 23 200565 unique_id port 200576 username farhad3 200576 mac 200576 bytes_out 0 200576 bytes_in 0 200576 station_ip 5.119.251.92 200576 port 25 200576 unique_id port 200576 remote_ip 10.8.1.38 200582 username alihosseini1 200582 mac 200582 bytes_out 0 200582 bytes_in 0 200582 station_ip 5.119.177.233 200582 port 26 200582 unique_id port 200582 remote_ip 10.8.1.74 200587 username milan 200587 kill_reason Another user logged on this global unique id 200587 mac 200587 bytes_out 0 200587 bytes_in 0 200587 station_ip 5.120.188.74 200587 port 16 200587 unique_id port 200592 username alihosseini1 200592 mac 200592 bytes_out 0 200592 bytes_in 0 200592 station_ip 5.119.177.233 200592 port 35 200592 unique_id port 200592 remote_ip 10.8.1.74 200593 username alihosseini1 200593 mac 200593 bytes_out 0 200593 bytes_in 0 200593 station_ip 5.119.177.233 200593 port 35 200593 unique_id port 200593 remote_ip 10.8.1.74 200595 username alihosseini1 200595 mac 200595 bytes_out 0 200595 bytes_in 0 200595 station_ip 5.119.177.233 200595 port 35 200595 unique_id port 200595 remote_ip 10.8.1.74 200596 username alihosseini1 200596 mac 200596 bytes_out 0 200596 bytes_in 0 200596 station_ip 5.119.177.233 200596 port 35 200596 unique_id port 200596 remote_ip 10.8.1.74 200598 username barzegar 200598 mac 200598 bytes_out 0 200598 bytes_in 0 200598 station_ip 5.120.91.37 200598 port 37 200598 unique_id port 200598 remote_ip 10.8.1.6 200599 username barzegar 200599 mac 200599 bytes_out 0 200599 bytes_in 0 200599 station_ip 5.120.91.37 200599 port 25 200599 unique_id port 200599 remote_ip 10.8.0.14 200606 username hamid1430 200606 kill_reason Another user logged on this global unique id 200606 mac 200606 bytes_out 0 200606 bytes_in 0 200606 station_ip 37.129.171.54 200606 port 28 200606 unique_id port 200608 username alihosseini1 200608 kill_reason Maximum check online fails reached 200608 mac 200608 bytes_out 0 200608 bytes_in 0 200608 station_ip 5.119.177.233 200608 port 25 200608 unique_id port 200612 username saeed9658 200612 kill_reason Another user logged on this global unique id 200612 mac 200612 bytes_out 0 200612 bytes_in 0 200612 station_ip 5.119.36.126 200612 port 26 200612 unique_id port 200612 remote_ip 10.8.1.194 200613 username godarzi 200613 mac 200613 bytes_out 0 200613 bytes_in 0 200613 station_ip 5.202.62.43 200613 port 25 200613 unique_id port 200613 remote_ip 10.8.0.146 200616 username milan 200616 kill_reason Another user logged on this global unique id 200616 mac 200616 bytes_out 0 200616 bytes_in 0 200616 station_ip 5.120.188.74 200616 port 16 200616 unique_id port 200618 username dortaj3792 200618 mac 200618 bytes_out 0 200618 bytes_in 0 200618 station_ip 5.119.114.199 200618 port 34 200618 unique_id port 200618 remote_ip 10.8.1.34 200624 username alihosseini1 200624 mac 200624 bytes_out 0 200624 bytes_in 0 200624 station_ip 5.119.177.233 200624 port 37 200624 unique_id port 200624 remote_ip 10.8.1.74 200626 username alihosseini1 200561 kill_reason Another user logged on this global unique id 200561 mac 200561 bytes_out 0 200561 bytes_in 0 200561 station_ip 86.57.110.152 200561 port 26 200561 unique_id port 200566 username hamid1430 200566 kill_reason Another user logged on this global unique id 200566 mac 200566 bytes_out 0 200566 bytes_in 0 200566 station_ip 37.129.171.54 200566 port 28 200566 unique_id port 200567 username khalili2 200567 mac 200567 bytes_out 0 200567 bytes_in 0 200567 station_ip 5.119.245.233 200567 port 35 200567 unique_id port 200567 remote_ip 10.8.1.18 200568 username barzegar 200568 kill_reason Maximum check online fails reached 200568 mac 200568 bytes_out 0 200568 bytes_in 0 200568 station_ip 5.119.146.12 200568 port 15 200568 unique_id port 200570 username majidsarmast 200570 mac 200570 bytes_out 0 200570 bytes_in 0 200570 station_ip 86.57.110.152 200570 port 26 200570 unique_id port 200572 username sekonji0496 200572 kill_reason Another user logged on this global unique id 200572 mac 200572 bytes_out 0 200572 bytes_in 0 200572 station_ip 83.123.223.251 200572 port 25 200572 unique_id port 200572 remote_ip 10.8.0.66 200573 username farhad3 200573 kill_reason Another user logged on this global unique id 200573 mac 200573 bytes_out 0 200573 bytes_in 0 200573 station_ip 5.119.251.92 200573 port 25 200573 unique_id port 200574 username sekonji0496 200574 mac 200574 bytes_out 0 200574 bytes_in 0 200574 station_ip 83.123.223.251 200574 port 25 200574 unique_id port 200577 username kalantary6037 200577 mac 200577 bytes_out 0 200577 bytes_in 0 200577 station_ip 37.129.180.5 200577 port 25 200577 unique_id port 200577 remote_ip 10.8.0.10 200580 username hamid1430 200580 kill_reason Another user logged on this global unique id 200580 mac 200580 bytes_out 0 200580 bytes_in 0 200580 station_ip 37.129.171.54 200580 port 28 200580 unique_id port 200581 username sekonji0496 200581 mac 200581 bytes_out 24109 200581 bytes_in 136546 200581 station_ip 83.123.223.251 200581 port 23 200581 unique_id port 200581 remote_ip 10.8.0.66 200583 username alihosseini1 200583 mac 200583 bytes_out 0 200583 bytes_in 0 200583 station_ip 5.119.177.233 200583 port 23 200583 unique_id port 200583 remote_ip 10.8.0.38 200586 username arash 200586 mac 200586 bytes_out 1121329 200586 bytes_in 9638787 200586 station_ip 37.27.13.229 200586 port 35 200586 unique_id port 200586 remote_ip 10.8.1.54 200588 username kharazmi2920 200588 kill_reason Another user logged on this global unique id 200588 mac 200588 bytes_out 0 200588 bytes_in 0 200588 station_ip 83.123.28.86 200588 port 14 200588 unique_id port 200588 remote_ip 10.8.0.34 200589 username kharazmi2920 200589 mac 200589 bytes_out 0 200589 bytes_in 0 200589 station_ip 83.123.28.86 200589 port 14 200589 unique_id port 200590 username farhad3 200590 mac 200590 bytes_out 1618276 200590 bytes_in 11642175 200590 station_ip 5.119.251.92 200590 port 25 200590 unique_id port 200590 remote_ip 10.8.1.38 200594 username alihosseini1 200594 mac 200594 bytes_out 0 200594 bytes_in 0 200594 station_ip 5.119.177.233 200594 port 35 200594 unique_id port 200594 remote_ip 10.8.1.74 200597 username alihosseini1 200597 mac 200597 bytes_out 0 200597 bytes_in 0 200597 station_ip 5.119.177.233 200597 port 36 200597 unique_id port 200597 remote_ip 10.8.1.74 200603 username sekonji0496 200603 mac 200603 bytes_out 0 200603 bytes_in 0 200603 station_ip 83.123.223.251 200603 port 26 200603 unique_id port 200603 remote_ip 10.8.1.98 200605 username alihosseini1 200605 mac 200601 station_ip 37.129.180.5 200601 port 14 200601 unique_id port 200601 remote_ip 10.8.0.10 200602 username alihosseini1 200602 mac 200602 bytes_out 0 200602 bytes_in 0 200602 station_ip 5.119.177.233 200602 port 25 200602 unique_id port 200602 remote_ip 10.8.0.38 200604 username alihosseini1 200604 mac 200604 bytes_out 0 200604 bytes_in 0 200604 station_ip 5.119.177.233 200604 port 25 200604 unique_id port 200604 remote_ip 10.8.1.74 200607 username barzegar 200607 mac 200607 bytes_out 0 200607 bytes_in 0 200607 station_ip 5.120.91.37 200607 port 36 200607 unique_id port 200607 remote_ip 10.8.1.6 200609 username alihosseini1 200609 kill_reason Maximum check online fails reached 200609 mac 200609 bytes_out 0 200609 bytes_in 0 200609 station_ip 5.119.177.233 200609 port 36 200609 unique_id port 200614 username sekonji0496 200614 mac 200614 bytes_out 33408 200614 bytes_in 209913 200614 station_ip 83.123.223.251 200614 port 14 200614 unique_id port 200614 remote_ip 10.8.0.66 200617 username barzegar 200617 mac 200617 bytes_out 0 200617 bytes_in 0 200617 station_ip 5.120.91.37 200617 port 26 200617 unique_id port 200617 remote_ip 10.8.1.6 200621 username milan 200621 kill_reason Another user logged on this global unique id 200621 mac 200621 bytes_out 0 200621 bytes_in 0 200621 station_ip 5.120.188.74 200621 port 16 200621 unique_id port 200625 username barzegar 200625 mac 200625 bytes_out 0 200625 bytes_in 0 200625 station_ip 5.120.91.37 200625 port 26 200625 unique_id port 200625 remote_ip 10.8.1.6 200627 username barzegar8595 200627 mac 200627 bytes_out 0 200627 bytes_in 0 200627 station_ip 5.62.212.176 200627 port 35 200627 unique_id port 200627 remote_ip 10.8.1.50 200628 username kharazmi2920 200628 mac 200628 bytes_out 1123759 200628 bytes_in 10665466 200628 station_ip 83.123.28.86 200628 port 23 200628 unique_id port 200628 remote_ip 10.8.0.34 200629 username hamid.e 200629 unique_id port 200629 terminate_cause User-Request 200629 bytes_out 11867638 200629 bytes_in 151634509 200629 station_ip 31.56.156.136 200629 port 15729733 200629 nas_port_type Virtual 200629 remote_ip 5.5.5.190 200631 username barzegar 200631 mac 200631 bytes_out 0 200631 bytes_in 0 200631 station_ip 5.120.91.37 200631 port 22 200631 unique_id port 200631 remote_ip 10.8.0.14 200633 username alihosseini1 200633 mac 200633 bytes_out 0 200633 bytes_in 0 200633 station_ip 5.119.177.233 200633 port 37 200633 unique_id port 200633 remote_ip 10.8.1.74 200637 username alihosseini1 200637 mac 200637 bytes_out 0 200637 bytes_in 0 200637 station_ip 5.119.177.233 200637 port 37 200637 unique_id port 200637 remote_ip 10.8.1.74 200640 username motamedi9772 200640 mac 200640 bytes_out 0 200640 bytes_in 0 200640 station_ip 83.123.148.189 200640 port 14 200640 unique_id port 200640 remote_ip 10.8.0.62 200641 username alihosseini1 200641 mac 200641 bytes_out 0 200641 bytes_in 0 200641 station_ip 5.119.177.233 200641 port 37 200641 unique_id port 200641 remote_ip 10.8.1.74 200644 username dortaj3792 200644 mac 200644 bytes_out 1051772 200644 bytes_in 1768807 200644 station_ip 5.119.114.199 200644 port 34 200644 unique_id port 200644 remote_ip 10.8.1.34 200646 username alihosseini1 200646 mac 200646 bytes_out 0 200646 bytes_in 0 200646 station_ip 5.119.177.233 200646 port 34 200646 unique_id port 200646 remote_ip 10.8.1.74 200649 username kharazmi2920 200649 mac 200649 bytes_out 1885413 200649 bytes_in 527803 200649 station_ip 83.123.28.86 200605 bytes_out 0 200605 bytes_in 0 200605 station_ip 5.119.177.233 200605 port 25 200605 unique_id port 200605 remote_ip 10.8.1.74 200610 username mammad 200610 unique_id port 200610 terminate_cause User-Request 200610 bytes_out 1722913 200610 bytes_in 27955149 200610 station_ip 5.233.65.206 200610 port 15729732 200610 nas_port_type Virtual 200610 remote_ip 5.5.5.133 200611 username hamid1430 200611 mac 200611 bytes_out 0 200611 bytes_in 0 200611 station_ip 37.129.171.54 200611 port 28 200611 unique_id port 200615 username kalantary6037 200615 mac 200615 bytes_out 634772 200615 bytes_in 6532165 200615 station_ip 37.129.146.57 200615 port 26 200615 unique_id port 200615 remote_ip 10.8.0.10 200619 username alihosseini1 200619 mac 200619 bytes_out 0 200619 bytes_in 0 200619 station_ip 5.119.177.233 200619 port 37 200619 unique_id port 200619 remote_ip 10.8.1.74 200620 username saeed9658 200620 mac 200620 bytes_out 0 200620 bytes_in 0 200620 station_ip 5.119.36.126 200620 port 26 200620 unique_id port 200620 remote_ip 10.8.1.194 200622 username alihosseini1 200622 mac 200622 bytes_out 0 200622 bytes_in 0 200622 station_ip 5.119.177.233 200622 port 26 200622 unique_id port 200622 remote_ip 10.8.1.74 200623 username barzegar 200623 mac 200623 bytes_out 0 200623 bytes_in 0 200623 station_ip 5.120.91.37 200623 port 26 200623 unique_id port 200623 remote_ip 10.8.1.6 200635 username milan 200635 kill_reason Another user logged on this global unique id 200635 mac 200635 bytes_out 0 200635 bytes_in 0 200635 station_ip 5.120.188.74 200635 port 16 200635 unique_id port 200645 username farhad3 200645 kill_reason Another user logged on this global unique id 200645 mac 200645 bytes_out 0 200645 bytes_in 0 200645 station_ip 5.119.251.92 200645 port 35 200645 unique_id port 200645 remote_ip 10.8.1.38 200648 username alihosseini1 200648 mac 200648 bytes_out 0 200648 bytes_in 0 200648 station_ip 5.119.177.233 200648 port 23 200648 unique_id port 200648 remote_ip 10.8.0.38 200652 username moslem6940 200652 kill_reason Another user logged on this global unique id 200652 mac 200652 bytes_out 0 200652 bytes_in 0 200652 station_ip 83.123.25.6 200652 port 23 200652 unique_id port 200652 remote_ip 10.8.0.214 200655 username motamedi9772 200655 kill_reason Another user logged on this global unique id 200655 mac 200655 bytes_out 0 200655 bytes_in 0 200655 station_ip 83.123.148.189 200655 port 14 200655 unique_id port 200655 remote_ip 10.8.0.62 200657 username moslem6940 200657 mac 200657 bytes_out 2479 200657 bytes_in 6084 200657 station_ip 83.122.126.91 200657 port 25 200657 unique_id port 200657 remote_ip 10.8.0.214 200664 username kharazmi2920 200664 kill_reason Another user logged on this global unique id 200664 mac 200664 bytes_out 0 200664 bytes_in 0 200664 station_ip 83.123.28.86 200664 port 22 200664 unique_id port 200664 remote_ip 10.8.0.34 200666 username alihosseini1 200666 kill_reason Another user logged on this global unique id 200666 mac 200666 bytes_out 0 200666 bytes_in 0 200666 station_ip 5.119.177.233 200666 port 26 200666 unique_id port 200666 remote_ip 10.8.1.74 200668 username barzegar 200668 mac 200668 bytes_out 0 200668 bytes_in 0 200668 station_ip 5.120.91.37 200668 port 37 200668 unique_id port 200668 remote_ip 10.8.1.6 200671 username barzegar 200671 mac 200671 bytes_out 0 200671 bytes_in 0 200671 station_ip 5.120.91.37 200671 port 25 200671 unique_id port 200671 remote_ip 10.8.0.14 200672 username naeimeh 200672 mac 200672 bytes_out 2028470 200672 bytes_in 23054192 200626 mac 200626 bytes_out 0 200626 bytes_in 0 200626 station_ip 5.119.177.233 200626 port 26 200626 unique_id port 200626 remote_ip 10.8.1.74 200630 username sabaghnezhad 200630 mac 200630 bytes_out 1060705 200630 bytes_in 3158808 200630 station_ip 83.123.201.177 200630 port 22 200630 unique_id port 200630 remote_ip 10.8.0.18 200632 username alihosseini1 200632 mac 200632 bytes_out 0 200632 bytes_in 0 200632 station_ip 5.119.177.233 200632 port 37 200632 unique_id port 200632 remote_ip 10.8.1.74 200634 username alihosseini1 200634 mac 200634 bytes_out 0 200634 bytes_in 0 200634 station_ip 5.119.177.233 200634 port 37 200634 unique_id port 200634 remote_ip 10.8.1.74 200636 username barzegar 200636 mac 200636 bytes_out 0 200636 bytes_in 0 200636 station_ip 5.120.91.37 200636 port 22 200636 unique_id port 200636 remote_ip 10.8.0.14 200638 username motamedi9772 200638 mac 200638 bytes_out 401681 200638 bytes_in 3705640 200638 station_ip 83.123.148.189 200638 port 14 200638 unique_id port 200638 remote_ip 10.8.0.62 200639 username motamedi9772 200639 mac 200639 bytes_out 0 200639 bytes_in 0 200639 station_ip 83.123.148.189 200639 port 37 200639 unique_id port 200639 remote_ip 10.8.1.198 200642 username motamedi9772 200642 mac 200642 bytes_out 0 200642 bytes_in 0 200642 station_ip 83.123.148.189 200642 port 14 200642 unique_id port 200642 remote_ip 10.8.0.62 200643 username kharazmi2920 200643 mac 200643 bytes_out 476156 200643 bytes_in 1927586 200643 station_ip 83.123.28.86 200643 port 25 200643 unique_id port 200643 remote_ip 10.8.0.34 200647 username alihosseini1 200647 mac 200647 bytes_out 0 200647 bytes_in 0 200647 station_ip 5.119.177.233 200647 port 23 200647 unique_id port 200647 remote_ip 10.8.0.38 200656 username moslem6940 200656 mac 200656 bytes_out 0 200656 bytes_in 0 200656 station_ip 83.123.25.6 200656 port 23 200656 unique_id port 200660 username barzegar 200660 mac 200660 bytes_out 0 200660 bytes_in 0 200660 station_ip 5.120.91.37 200660 port 38 200660 unique_id port 200660 remote_ip 10.8.1.6 200662 username naeimeh 200662 mac 200662 bytes_out 1311935 200662 bytes_in 15332897 200662 station_ip 37.129.137.83 200662 port 23 200662 unique_id port 200662 remote_ip 10.8.0.202 200669 username motamedi9772 200669 kill_reason Another user logged on this global unique id 200669 mac 200669 bytes_out 0 200669 bytes_in 0 200669 station_ip 83.123.148.189 200669 port 14 200669 unique_id port 200676 username milan 200676 mac 200676 bytes_out 0 200676 bytes_in 0 200676 station_ip 5.120.188.74 200676 port 16 200676 unique_id port 200678 username motamedi9772 200678 kill_reason Another user logged on this global unique id 200678 mac 200678 bytes_out 0 200678 bytes_in 0 200678 station_ip 83.123.148.189 200678 port 14 200678 unique_id port 200680 username kharazmi2920 200680 mac 200680 bytes_out 0 200680 bytes_in 0 200680 station_ip 83.123.28.86 200680 port 22 200680 unique_id port 200685 username motamedi9772 200685 kill_reason Another user logged on this global unique id 200685 mac 200685 bytes_out 0 200685 bytes_in 0 200685 station_ip 83.123.148.189 200685 port 14 200685 unique_id port 200694 username farhad3 200694 mac 200694 bytes_out 31764 200694 bytes_in 78553 200694 station_ip 5.119.251.92 200694 port 26 200694 unique_id port 200694 remote_ip 10.8.1.38 200699 username barzegar 200699 mac 200699 bytes_out 0 200699 bytes_in 0 200699 station_ip 5.120.91.37 200699 port 26 200649 port 22 200649 unique_id port 200649 remote_ip 10.8.0.34 200650 username alihosseini1 200650 mac 200650 bytes_out 0 200650 bytes_in 0 200650 station_ip 5.119.177.233 200650 port 37 200650 unique_id port 200650 remote_ip 10.8.1.74 200651 username alihosseini1 200651 mac 200651 bytes_out 0 200651 bytes_in 0 200651 station_ip 5.119.177.233 200651 port 37 200651 unique_id port 200651 remote_ip 10.8.1.74 200653 username barzegar 200653 mac 200653 bytes_out 0 200653 bytes_in 0 200653 station_ip 5.120.91.37 200653 port 37 200653 unique_id port 200653 remote_ip 10.8.1.6 200654 username alihosseini1 200654 mac 200654 bytes_out 0 200654 bytes_in 0 200654 station_ip 5.119.177.233 200654 port 37 200654 unique_id port 200654 remote_ip 10.8.1.74 200658 username moslem6940 200658 mac 200658 bytes_out 0 200658 bytes_in 0 200658 station_ip 83.122.126.91 200658 port 25 200658 unique_id port 200658 remote_ip 10.8.0.214 200659 username alihosseini1 200659 mac 200659 bytes_out 0 200659 bytes_in 0 200659 station_ip 5.119.177.233 200659 port 37 200659 unique_id port 200659 remote_ip 10.8.1.74 200661 username sabaghnezhad 200661 kill_reason Another user logged on this global unique id 200661 mac 200661 bytes_out 0 200661 bytes_in 0 200661 station_ip 83.123.201.177 200661 port 26 200661 unique_id port 200661 remote_ip 10.8.1.42 200663 username naeimeh 200663 mac 200663 bytes_out 0 200663 bytes_in 0 200663 station_ip 83.122.246.157 200663 port 26 200663 unique_id port 200663 remote_ip 10.8.0.202 200665 username moslem6940 200665 mac 200665 bytes_out 2004639 200665 bytes_in 32553935 200665 station_ip 83.122.126.91 200665 port 25 200665 unique_id port 200665 remote_ip 10.8.0.214 200667 username naeimeh 200667 mac 200667 bytes_out 0 200667 bytes_in 0 200667 station_ip 83.123.222.143 200667 port 25 200667 unique_id port 200667 remote_ip 10.8.0.202 200670 username farhad3 200670 mac 200670 bytes_out 0 200670 bytes_in 0 200670 station_ip 5.119.251.92 200670 port 35 200670 unique_id port 200677 username barzegar 200677 mac 200677 bytes_out 0 200677 bytes_in 0 200677 station_ip 5.120.91.37 200677 port 35 200677 unique_id port 200677 remote_ip 10.8.1.6 200683 username motamedi9772 200683 kill_reason Another user logged on this global unique id 200683 mac 200683 bytes_out 0 200683 bytes_in 0 200683 station_ip 83.123.148.189 200683 port 14 200683 unique_id port 200684 username barzegar 200684 mac 200684 bytes_out 0 200684 bytes_in 0 200684 station_ip 5.120.91.37 200684 port 35 200684 unique_id port 200684 remote_ip 10.8.1.6 200688 username barzegar 200688 mac 200688 bytes_out 0 200688 bytes_in 0 200688 station_ip 5.120.91.37 200688 port 35 200688 unique_id port 200688 remote_ip 10.8.1.6 200691 username farhad3 200691 mac 200691 bytes_out 257780 200691 bytes_in 2485496 200691 station_ip 5.119.251.92 200691 port 26 200691 unique_id port 200691 remote_ip 10.8.1.38 200704 username milan 200704 mac 200704 bytes_out 1289440 200704 bytes_in 4305626 200704 station_ip 5.120.188.74 200704 port 16 200704 unique_id port 200704 remote_ip 10.8.1.182 200706 username motamedi9772 200706 mac 200706 bytes_out 716493 200706 bytes_in 5117017 200706 station_ip 83.123.148.189 200706 port 14 200706 unique_id port 200706 remote_ip 10.8.0.62 200707 username motamedi9772 200707 mac 200707 bytes_out 0 200707 bytes_in 0 200707 station_ip 83.123.148.189 200707 port 26 200707 unique_id port 200707 remote_ip 10.8.1.198 200672 station_ip 83.123.222.143 200672 port 26 200672 unique_id port 200672 remote_ip 10.8.0.202 200673 username motamedi9772 200673 kill_reason Another user logged on this global unique id 200673 mac 200673 bytes_out 0 200673 bytes_in 0 200673 station_ip 83.123.148.189 200673 port 14 200673 unique_id port 200674 username barzegar 200674 mac 200674 bytes_out 0 200674 bytes_in 0 200674 station_ip 5.120.91.37 200674 port 26 200674 unique_id port 200674 remote_ip 10.8.1.6 200675 username farhad3 200675 mac 200675 bytes_out 0 200675 bytes_in 0 200675 station_ip 5.119.251.92 200675 port 35 200675 unique_id port 200675 remote_ip 10.8.1.38 200679 username barzegar 200679 mac 200679 bytes_out 0 200679 bytes_in 0 200679 station_ip 5.120.91.37 200679 port 35 200679 unique_id port 200679 remote_ip 10.8.1.6 200681 username farhad3 200681 mac 200681 bytes_out 0 200681 bytes_in 0 200681 station_ip 5.119.251.92 200681 port 26 200681 unique_id port 200681 remote_ip 10.8.1.38 200682 username barzegar 200682 mac 200682 bytes_out 0 200682 bytes_in 0 200682 station_ip 5.120.91.37 200682 port 35 200682 unique_id port 200682 remote_ip 10.8.1.6 200686 username farhad3 200686 kill_reason Another user logged on this global unique id 200686 mac 200686 bytes_out 0 200686 bytes_in 0 200686 station_ip 5.119.251.92 200686 port 26 200686 unique_id port 200686 remote_ip 10.8.1.38 200687 username milan 200687 mac 200687 bytes_out 1434036 200687 bytes_in 3670158 200687 station_ip 5.120.188.74 200687 port 16 200687 unique_id port 200687 remote_ip 10.8.1.182 200689 username ebrahimpour3 200689 kill_reason Relative expiration date has reached 200689 mac 200689 bytes_out 0 200689 bytes_in 0 200689 station_ip 83.123.174.165 200689 port 22 200689 unique_id port 200690 username farhad3 200690 mac 200690 bytes_out 0 200690 bytes_in 0 200690 station_ip 5.119.251.92 200690 port 26 200690 unique_id port 200692 username farhad3 200692 mac 200692 bytes_out 0 200692 bytes_in 0 200692 station_ip 5.119.251.92 200692 port 26 200692 unique_id port 200692 remote_ip 10.8.1.38 200693 username barzegar 200693 mac 200693 bytes_out 0 200693 bytes_in 0 200693 station_ip 5.120.91.37 200693 port 35 200693 unique_id port 200693 remote_ip 10.8.1.6 200695 username motamedi9772 200695 kill_reason Another user logged on this global unique id 200695 mac 200695 bytes_out 0 200695 bytes_in 0 200695 station_ip 83.123.148.189 200695 port 14 200695 unique_id port 200696 username mostafa_es78 200696 unique_id port 200696 terminate_cause User-Request 200696 bytes_out 45062 200696 bytes_in 69433 200696 station_ip 5.126.104.245 200696 port 15729744 200696 nas_port_type Virtual 200696 remote_ip 5.5.5.143 200697 username mostafa_es78 200697 mac 200697 bytes_out 0 200697 bytes_in 0 200697 station_ip 5.126.104.245 200697 port 26 200697 unique_id port 200697 remote_ip 10.8.1.202 200698 username mostafa_es78 200698 unique_id port 200698 terminate_cause User-Request 200698 bytes_out 3054 200698 bytes_in 8426 200698 station_ip 5.126.104.245 200698 port 15729745 200698 nas_port_type Virtual 200698 remote_ip 5.5.5.143 200701 username motamedi9772 200701 mac 200701 bytes_out 0 200701 bytes_in 0 200701 station_ip 83.123.148.189 200701 port 14 200701 unique_id port 200702 username barzegar 200702 mac 200702 bytes_out 0 200702 bytes_in 0 200702 station_ip 5.120.91.37 200702 port 26 200702 unique_id port 200702 remote_ip 10.8.1.6 200711 username motamedi9772 200711 kill_reason Another user logged on this global unique id 200711 mac 200699 unique_id port 200699 remote_ip 10.8.1.6 200700 username mostafa_es78 200700 unique_id port 200700 terminate_cause Lost-Carrier 200700 bytes_out 1090440 200700 bytes_in 16817409 200700 station_ip 5.126.104.245 200700 port 15729747 200700 nas_port_type Virtual 200700 remote_ip 5.5.5.143 200703 username barzegar 200703 mac 200703 bytes_out 0 200703 bytes_in 0 200703 station_ip 5.120.91.37 200703 port 26 200703 unique_id port 200703 remote_ip 10.8.1.6 200705 username sabaghnezhad 200705 mac 200705 bytes_out 540718 200705 bytes_in 506205 200705 station_ip 83.123.201.177 200705 port 23 200705 unique_id port 200705 remote_ip 10.8.0.18 200708 username barzegar 200708 mac 200708 bytes_out 0 200708 bytes_in 0 200708 station_ip 5.120.91.37 200708 port 26 200708 unique_id port 200708 remote_ip 10.8.1.6 200713 username meghdad1616 200713 mac 200713 bytes_out 0 200713 bytes_in 0 200713 station_ip 5.120.118.50 200713 port 16 200713 unique_id port 200717 username barzegar 200717 mac 200717 bytes_out 0 200717 bytes_in 0 200717 station_ip 5.120.91.37 200717 port 16 200717 unique_id port 200717 remote_ip 10.8.1.6 200720 username seyedrezaei2572 200720 mac 200720 bytes_out 1576634 200720 bytes_in 25019760 200720 station_ip 5.218.245.89 200720 port 23 200720 unique_id port 200720 remote_ip 10.8.0.186 200721 username kalantary6037 200721 mac 200721 bytes_out 1624961 200721 bytes_in 14540341 200721 station_ip 37.129.183.181 200721 port 14 200721 unique_id port 200721 remote_ip 10.8.0.10 200723 username barzegar 200723 mac 200723 bytes_out 0 200723 bytes_in 0 200723 station_ip 5.120.91.37 200723 port 16 200723 unique_id port 200723 remote_ip 10.8.1.6 200724 username barzegar 200724 mac 200724 bytes_out 0 200724 bytes_in 0 200724 station_ip 5.120.91.37 200724 port 23 200724 unique_id port 200724 remote_ip 10.8.0.14 200725 username motamedi9772 200725 mac 200725 bytes_out 190269 200725 bytes_in 512374 200725 station_ip 83.123.183.157 200725 port 14 200725 unique_id port 200725 remote_ip 10.8.0.62 200726 username barzegar 200726 mac 200726 bytes_out 0 200726 bytes_in 0 200726 station_ip 5.120.91.37 200726 port 16 200726 unique_id port 200726 remote_ip 10.8.1.6 200732 username barzegar 200732 mac 200732 bytes_out 0 200732 bytes_in 0 200732 station_ip 5.120.91.37 200732 port 16 200732 unique_id port 200732 remote_ip 10.8.1.6 200740 username mohammadjavad 200740 mac 200740 bytes_out 724553 200740 bytes_in 8742176 200740 station_ip 37.129.53.181 200740 port 14 200740 unique_id port 200740 remote_ip 10.8.0.58 200742 username barzegar 200742 mac 200742 bytes_out 0 200742 bytes_in 0 200742 station_ip 5.120.91.37 200742 port 26 200742 unique_id port 200742 remote_ip 10.8.1.6 200747 username barzegar 200747 mac 200747 bytes_out 0 200747 bytes_in 0 200747 station_ip 5.120.91.37 200747 port 16 200747 unique_id port 200747 remote_ip 10.8.1.6 200748 username barzegar 200748 mac 200748 bytes_out 0 200748 bytes_in 0 200748 station_ip 5.120.91.37 200748 port 34 200748 unique_id port 200748 remote_ip 10.8.1.6 200749 username dortaj3792 200749 kill_reason Another user logged on this global unique id 200749 mac 200749 bytes_out 0 200749 bytes_in 0 200749 station_ip 5.119.114.199 200749 port 26 200749 unique_id port 200749 remote_ip 10.8.1.34 200750 username hosseine 200750 kill_reason Another user logged on this global unique id 200750 mac 200750 bytes_out 0 200750 bytes_in 0 200750 station_ip 37.129.249.118 200750 port 14 200709 username barzegar 200709 mac 200709 bytes_out 0 200709 bytes_in 0 200709 station_ip 5.120.91.37 200709 port 26 200709 unique_id port 200709 remote_ip 10.8.1.6 200710 username meghdad1616 200710 kill_reason Another user logged on this global unique id 200710 mac 200710 bytes_out 0 200710 bytes_in 0 200710 station_ip 5.120.118.50 200710 port 16 200710 unique_id port 200710 remote_ip 10.8.1.142 200715 username barzegar 200715 mac 200715 bytes_out 0 200715 bytes_in 0 200715 station_ip 5.120.91.37 200715 port 16 200715 unique_id port 200715 remote_ip 10.8.1.6 200716 username saeeddamghani 200716 mac 200716 bytes_out 819538 200716 bytes_in 8277979 200716 station_ip 5.119.39.160 200716 port 16 200716 unique_id port 200716 remote_ip 10.8.1.66 200722 username barzegar 200722 mac 200722 bytes_out 0 200722 bytes_in 0 200722 station_ip 5.120.91.37 200722 port 16 200722 unique_id port 200722 remote_ip 10.8.1.6 200727 username barzegar 200727 mac 200727 bytes_out 0 200727 bytes_in 0 200727 station_ip 5.120.91.37 200727 port 16 200727 unique_id port 200727 remote_ip 10.8.1.6 200728 username barzegar 200728 mac 200728 bytes_out 0 200728 bytes_in 0 200728 station_ip 5.120.91.37 200728 port 16 200728 unique_id port 200728 remote_ip 10.8.1.6 200729 username barzegar 200729 mac 200729 bytes_out 0 200729 bytes_in 0 200729 station_ip 5.120.91.37 200729 port 14 200729 unique_id port 200729 remote_ip 10.8.0.14 200730 username barzegar 200730 mac 200730 bytes_out 0 200730 bytes_in 0 200730 station_ip 5.120.91.37 200730 port 16 200730 unique_id port 200730 remote_ip 10.8.1.6 200731 username barzegar 200731 mac 200731 bytes_out 0 200731 bytes_in 0 200731 station_ip 5.120.91.37 200731 port 16 200731 unique_id port 200731 remote_ip 10.8.1.6 200733 username barzegar 200733 mac 200733 bytes_out 0 200733 bytes_in 0 200733 station_ip 5.120.91.37 200733 port 14 200733 unique_id port 200733 remote_ip 10.8.0.14 200734 username barzegar 200734 mac 200734 bytes_out 0 200734 bytes_in 0 200734 station_ip 5.120.91.37 200734 port 16 200734 unique_id port 200734 remote_ip 10.8.1.6 200735 username barzegar 200735 mac 200735 bytes_out 0 200735 bytes_in 0 200735 station_ip 5.120.91.37 200735 port 16 200735 unique_id port 200735 remote_ip 10.8.1.6 200736 username barzegar 200736 mac 200736 bytes_out 0 200736 bytes_in 0 200736 station_ip 5.120.91.37 200736 port 16 200736 unique_id port 200736 remote_ip 10.8.1.6 200737 username barzegar 200737 mac 200737 bytes_out 0 200737 bytes_in 0 200737 station_ip 5.120.91.37 200737 port 16 200737 unique_id port 200737 remote_ip 10.8.1.6 200739 username barzegar 200739 mac 200739 bytes_out 0 200739 bytes_in 0 200739 station_ip 5.120.91.37 200739 port 16 200739 unique_id port 200739 remote_ip 10.8.1.6 200741 username barzegar 200741 mac 200741 bytes_out 0 200741 bytes_in 0 200741 station_ip 5.120.91.37 200741 port 26 200741 unique_id port 200741 remote_ip 10.8.1.6 200743 username aminvpn 200743 unique_id port 200743 terminate_cause Lost-Carrier 200743 bytes_out 167374 200743 bytes_in 1693733 200743 station_ip 37.129.222.134 200743 port 15729748 200743 nas_port_type Virtual 200743 remote_ip 5.5.5.144 200744 username yaghobi 200744 mac 200744 bytes_out 0 200744 bytes_in 0 200744 station_ip 37.129.212.24 200744 port 14 200744 unique_id port 200744 remote_ip 10.8.0.174 200750 unique_id port 200750 remote_ip 10.8.0.118 200752 username barzegar 200711 bytes_out 0 200711 bytes_in 0 200711 station_ip 83.123.148.189 200711 port 14 200711 unique_id port 200711 remote_ip 10.8.0.62 200712 username khalili2 200712 mac 200712 bytes_out 0 200712 bytes_in 0 200712 station_ip 5.119.245.233 200712 port 34 200712 unique_id port 200712 remote_ip 10.8.1.18 200714 username saeeddamghani 200714 mac 200714 bytes_out 0 200714 bytes_in 0 200714 station_ip 5.119.39.160 200714 port 23 200714 unique_id port 200714 remote_ip 10.8.0.26 200718 username motamedi9772 200718 mac 200718 bytes_out 0 200718 bytes_in 0 200718 station_ip 83.123.148.189 200718 port 14 200718 unique_id port 200719 username barzegar 200719 mac 200719 bytes_out 0 200719 bytes_in 0 200719 station_ip 5.120.91.37 200719 port 16 200719 unique_id port 200719 remote_ip 10.8.1.6 200738 username barzegar 200738 mac 200738 bytes_out 0 200738 bytes_in 0 200738 station_ip 5.120.91.37 200738 port 16 200738 unique_id port 200738 remote_ip 10.8.1.6 200745 username barzegar 200745 mac 200745 bytes_out 0 200745 bytes_in 0 200745 station_ip 5.120.91.37 200745 port 14 200745 unique_id port 200745 remote_ip 10.8.0.14 200746 username malekpoir 200746 mac 200746 bytes_out 0 200746 bytes_in 0 200746 station_ip 5.120.117.55 200746 port 16 200746 unique_id port 200746 remote_ip 10.8.1.70 200751 username hosseine 200751 mac 200751 bytes_out 0 200751 bytes_in 0 200751 station_ip 37.129.249.118 200751 port 14 200751 unique_id port 200752 mac 200752 bytes_out 0 200752 bytes_in 0 200752 station_ip 5.120.91.37 200752 port 34 200752 unique_id port 200752 remote_ip 10.8.1.6 200753 username yaghobi 200753 mac 200753 bytes_out 0 200753 bytes_in 0 200753 station_ip 37.129.212.24 200753 port 23 200753 unique_id port 200753 remote_ip 10.8.0.174 200754 username saeeddamghani 200754 kill_reason Another user logged on this global unique id 200754 mac 200754 bytes_out 0 200754 bytes_in 0 200754 station_ip 217.60.218.61 200754 port 26 200754 unique_id port 200754 remote_ip 10.8.0.26 200755 username barzegar 200755 mac 200755 bytes_out 0 200755 bytes_in 0 200755 station_ip 5.120.91.37 200755 port 34 200755 unique_id port 200755 remote_ip 10.8.1.6 200756 username kalantary6037 200756 mac 200756 bytes_out 914126 200756 bytes_in 6610716 200756 station_ip 37.129.198.1 200756 port 14 200756 unique_id port 200756 remote_ip 10.8.0.10 200757 username barzegar 200757 mac 200757 bytes_out 0 200757 bytes_in 0 200757 station_ip 5.120.91.37 200757 port 34 200757 unique_id port 200757 remote_ip 10.8.1.6 200758 username yaghobi 200758 mac 200758 bytes_out 582462 200758 bytes_in 3569950 200758 station_ip 37.129.133.56 200758 port 14 200758 unique_id port 200758 remote_ip 10.8.0.174 200759 username aminvpn 200759 unique_id port 200759 terminate_cause User-Request 200759 bytes_out 823230 200759 bytes_in 13667957 200759 station_ip 37.129.222.134 200759 port 15729749 200759 nas_port_type Virtual 200759 remote_ip 5.5.5.144 200760 username barzegar 200760 mac 200760 bytes_out 0 200760 bytes_in 0 200760 station_ip 5.120.91.37 200760 port 27 200760 unique_id port 200760 remote_ip 10.8.0.14 200761 username saeeddamghani 200761 mac 200761 bytes_out 0 200761 bytes_in 0 200761 station_ip 217.60.218.61 200761 port 26 200761 unique_id port 200762 username kalantary6037 200762 mac 200762 bytes_out 0 200762 bytes_in 0 200762 station_ip 37.129.198.1 200762 port 23 200762 unique_id port 200762 remote_ip 10.8.0.10 200763 username barzegar 200763 mac 200763 bytes_out 0 200763 bytes_in 0 200763 station_ip 5.120.91.37 200763 port 35 200763 unique_id port 200763 remote_ip 10.8.1.6 200768 username kalantary6037 200768 mac 200768 bytes_out 1093847 200768 bytes_in 12510550 200768 station_ip 37.129.155.21 200768 port 23 200768 unique_id port 200768 remote_ip 10.8.0.10 200773 username malekpoir 200773 kill_reason Another user logged on this global unique id 200773 mac 200773 bytes_out 0 200773 bytes_in 0 200773 station_ip 5.120.117.55 200773 port 16 200773 unique_id port 200773 remote_ip 10.8.1.70 200774 username sekonji0496 200774 mac 200774 bytes_out 2005 200774 bytes_in 4182 200774 station_ip 83.123.22.81 200774 port 14 200774 unique_id port 200774 remote_ip 10.8.0.66 200778 username sekonji0496 200778 mac 200778 bytes_out 0 200778 bytes_in 0 200778 station_ip 83.123.22.81 200778 port 38 200778 unique_id port 200778 remote_ip 10.8.1.98 200783 username barzegar 200783 mac 200783 bytes_out 21117 200783 bytes_in 27086 200783 station_ip 5.120.91.37 200783 port 38 200783 unique_id port 200783 remote_ip 10.8.1.6 200784 username sabaghnezhad 200784 mac 200784 bytes_out 1827573 200784 bytes_in 13187516 200784 station_ip 83.123.201.177 200784 port 22 200784 unique_id port 200784 remote_ip 10.8.0.18 200787 username iranmanesh4443 200787 mac 200787 bytes_out 289685 200787 bytes_in 1079725 200787 station_ip 5.119.177.251 200787 port 34 200787 unique_id port 200787 remote_ip 10.8.1.122 200788 username mohammadjavad 200788 kill_reason Another user logged on this global unique id 200788 mac 200788 bytes_out 0 200788 bytes_in 0 200788 station_ip 37.27.55.220 200788 port 26 200788 unique_id port 200788 remote_ip 10.8.1.82 200790 username barzegar8595 200790 mac 200790 bytes_out 3916690 200790 bytes_in 47621830 200790 station_ip 5.62.212.176 200790 port 14 200790 unique_id port 200790 remote_ip 10.8.0.82 200794 username farhad3 200794 mac 200794 bytes_out 0 200794 bytes_in 0 200794 station_ip 5.119.251.92 200794 port 37 200794 unique_id port 200794 remote_ip 10.8.1.38 200795 username barzegar 200795 kill_reason Maximum check online fails reached 200795 mac 200795 bytes_out 0 200795 bytes_in 0 200795 station_ip 5.120.91.37 200795 port 34 200795 unique_id port 200797 username kalantary6037 200797 mac 200797 bytes_out 89673 200797 bytes_in 180530 200797 station_ip 37.129.131.33 200797 port 14 200797 unique_id port 200797 remote_ip 10.8.0.10 200799 username saeed9658 200799 mac 200799 bytes_out 240946 200799 bytes_in 1263050 200799 station_ip 5.119.36.126 200799 port 37 200799 unique_id port 200799 remote_ip 10.8.1.194 200800 username mohammadjavad 200800 mac 200800 bytes_out 461240 200800 bytes_in 2789667 200800 station_ip 37.27.55.220 200800 port 26 200800 unique_id port 200800 remote_ip 10.8.1.82 200804 username barzegar 200804 mac 200804 bytes_out 0 200804 bytes_in 0 200804 station_ip 5.120.91.37 200804 port 35 200804 unique_id port 200804 remote_ip 10.8.1.6 200806 username pourshad 200806 mac 200806 bytes_out 236849 200806 bytes_in 844744 200806 station_ip 5.120.245.255 200806 port 26 200806 unique_id port 200806 remote_ip 10.8.1.58 200808 username mammad 200808 unique_id port 200808 terminate_cause User-Request 200808 bytes_out 124880 200808 bytes_in 688256 200808 station_ip 83.123.211.150 200808 port 15729751 200808 nas_port_type Virtual 200808 remote_ip 5.5.5.145 200810 username dortaj3792 200810 mac 200810 bytes_out 113134 200810 bytes_in 173785 200810 station_ip 5.119.114.199 200764 username barzegar 200764 mac 200764 bytes_out 0 200764 bytes_in 0 200764 station_ip 5.120.91.37 200764 port 23 200764 unique_id port 200764 remote_ip 10.8.0.14 200765 username sekonji0496 200765 mac 200765 bytes_out 31303 200765 bytes_in 55158 200765 station_ip 83.123.22.81 200765 port 14 200765 unique_id port 200765 remote_ip 10.8.0.66 200771 username sekonji0496 200771 mac 200771 bytes_out 191370 200771 bytes_in 1651076 200771 station_ip 83.123.22.81 200771 port 14 200771 unique_id port 200771 remote_ip 10.8.0.66 200772 username kalantary6037 200772 mac 200772 bytes_out 177435 200772 bytes_in 553171 200772 station_ip 37.129.155.21 200772 port 23 200772 unique_id port 200772 remote_ip 10.8.0.10 200775 username houshang 200775 mac 200775 bytes_out 0 200775 bytes_in 0 200775 station_ip 5.120.105.86 200775 port 38 200775 unique_id port 200775 remote_ip 10.8.1.134 200776 username sekonji0496 200776 mac 200776 bytes_out 0 200776 bytes_in 0 200776 station_ip 83.123.22.81 200776 port 14 200776 unique_id port 200776 remote_ip 10.8.0.66 200779 username seyedrezaei2572 200779 mac 200779 bytes_out 1102070 200779 bytes_in 3443322 200779 station_ip 5.218.194.165 200779 port 23 200779 unique_id port 200779 remote_ip 10.8.0.186 200780 username barzegar 200780 mac 200780 bytes_out 0 200780 bytes_in 0 200780 station_ip 5.120.91.37 200780 port 40 200780 unique_id port 200780 remote_ip 10.8.1.6 200782 username kalantary6037 200782 mac 200782 bytes_out 0 200782 bytes_in 0 200782 station_ip 37.129.199.45 200782 port 23 200782 unique_id port 200782 remote_ip 10.8.0.10 200789 username motamedi9772 200789 mac 200789 bytes_out 0 200789 bytes_in 0 200789 station_ip 83.123.141.93 200789 port 26 200789 unique_id port 200789 remote_ip 10.8.0.62 200796 username mohammadjavad 200796 mac 200796 bytes_out 44267 200796 bytes_in 66633 200796 station_ip 37.27.55.220 200796 port 26 200796 unique_id port 200796 remote_ip 10.8.1.82 200798 username barzegar 200798 mac 200798 bytes_out 0 200798 bytes_in 0 200798 station_ip 5.120.91.37 200798 port 26 200798 unique_id port 200798 remote_ip 10.8.1.6 200801 username pourshad 200801 mac 200801 bytes_out 19464239 200801 bytes_in 16047850 200801 station_ip 5.120.245.255 200801 port 35 200801 unique_id port 200801 remote_ip 10.8.1.58 200802 username kalantary6037 200802 kill_reason Another user logged on this global unique id 200802 mac 200802 bytes_out 0 200802 bytes_in 0 200802 station_ip 37.129.201.205 200802 port 26 200802 unique_id port 200802 remote_ip 10.8.0.10 200817 username mohammadjavad 200817 mac 200817 bytes_out 0 200817 bytes_in 0 200817 station_ip 37.27.55.220 200817 port 37 200817 unique_id port 200817 remote_ip 10.8.1.82 200823 username saeed9658 200823 mac 200823 bytes_out 0 200823 bytes_in 0 200823 station_ip 5.119.36.126 200823 port 38 200823 unique_id port 200823 remote_ip 10.8.1.194 200824 username saeed9658 200824 mac 200824 bytes_out 0 200824 bytes_in 0 200824 station_ip 5.119.36.126 200824 port 38 200824 unique_id port 200824 remote_ip 10.8.1.194 200827 username saeed9658 200827 mac 200827 bytes_out 0 200827 bytes_in 0 200827 station_ip 5.119.36.126 200827 port 37 200827 unique_id port 200827 remote_ip 10.8.1.194 200828 username morteza4424 200828 mac 200828 bytes_out 0 200828 bytes_in 0 200828 station_ip 83.123.120.46 200828 port 14 200828 unique_id port 200828 remote_ip 10.8.0.70 200830 username barzegar 200830 mac 200830 bytes_out 0 200766 username kharazmi2920 200766 mac 200766 bytes_out 1769455 200766 bytes_in 9848997 200766 station_ip 83.123.28.86 200766 port 25 200766 unique_id port 200766 remote_ip 10.8.0.34 200767 username barzegar 200767 mac 200767 bytes_out 0 200767 bytes_in 0 200767 station_ip 5.120.91.37 200767 port 40 200767 unique_id port 200767 remote_ip 10.8.1.6 200769 username sekonji0496 200769 mac 200769 bytes_out 4278 200769 bytes_in 5593 200769 station_ip 83.123.22.81 200769 port 14 200769 unique_id port 200769 remote_ip 10.8.0.66 200770 username pourshad 200770 kill_reason Another user logged on this global unique id 200770 mac 200770 bytes_out 0 200770 bytes_in 0 200770 station_ip 5.120.245.255 200770 port 35 200770 unique_id port 200770 remote_ip 10.8.1.58 200777 username sekonji0496 200777 mac 200777 bytes_out 0 200777 bytes_in 0 200777 station_ip 83.123.22.81 200777 port 38 200777 unique_id port 200777 remote_ip 10.8.1.98 200781 username pourshad 200781 mac 200781 bytes_out 0 200781 bytes_in 0 200781 station_ip 5.120.245.255 200781 port 35 200781 unique_id port 200785 username barzegar 200785 mac 200785 bytes_out 0 200785 bytes_in 0 200785 station_ip 5.120.91.37 200785 port 38 200785 unique_id port 200785 remote_ip 10.8.1.6 200786 username mohammadjavad 200786 mac 200786 bytes_out 1067560 200786 bytes_in 6454897 200786 station_ip 37.27.43.55 200786 port 26 200786 unique_id port 200786 remote_ip 10.8.1.82 200791 username barzegar 200791 mac 200791 bytes_out 0 200791 bytes_in 0 200791 station_ip 5.120.91.37 200791 port 26 200791 unique_id port 200791 remote_ip 10.8.1.6 200792 username mohammadjavad 200792 mac 200792 bytes_out 18751 200792 bytes_in 28801 200792 station_ip 37.27.55.220 200792 port 34 200792 unique_id port 200792 remote_ip 10.8.1.82 200793 username dortaj3792 200793 mac 200793 bytes_out 718676 200793 bytes_in 2666320 200793 station_ip 5.119.114.199 200793 port 40 200793 unique_id port 200793 remote_ip 10.8.1.34 200803 username sabaghnezhad 200803 mac 200803 bytes_out 618132 200803 bytes_in 3309688 200803 station_ip 83.123.201.177 200803 port 25 200803 unique_id port 200803 remote_ip 10.8.0.18 200805 username barzegar 200805 mac 200805 bytes_out 0 200805 bytes_in 0 200805 station_ip 5.120.91.37 200805 port 35 200805 unique_id port 200805 remote_ip 10.8.1.6 200807 username mammad 200807 unique_id port 200807 terminate_cause User-Request 200807 bytes_out 232587 200807 bytes_in 1846033 200807 station_ip 83.123.211.150 200807 port 15729750 200807 nas_port_type Virtual 200807 remote_ip 5.5.5.145 200809 username pourshad 200809 mac 200809 bytes_out 0 200809 bytes_in 0 200809 station_ip 5.120.245.255 200809 port 26 200809 unique_id port 200809 remote_ip 10.8.0.54 200811 username saeed9658 200811 mac 200811 bytes_out 0 200811 bytes_in 0 200811 station_ip 5.119.36.126 200811 port 40 200811 unique_id port 200811 remote_ip 10.8.1.194 200818 username barzegar 200818 mac 200818 bytes_out 0 200818 bytes_in 0 200818 station_ip 5.120.91.37 200818 port 29 200818 unique_id port 200818 remote_ip 10.8.0.14 200819 username barzegar 200819 mac 200819 bytes_out 0 200819 bytes_in 0 200819 station_ip 5.120.91.37 200819 port 26 200819 unique_id port 200819 remote_ip 10.8.1.6 200820 username iranmanesh4443 200820 mac 200820 bytes_out 0 200820 bytes_in 0 200820 station_ip 5.119.177.251 200820 port 38 200820 unique_id port 200820 remote_ip 10.8.1.122 200825 username pourshad 200825 mac 200810 port 25 200810 unique_id port 200810 remote_ip 10.8.0.30 200812 username saeeddamghani 200812 kill_reason Another user logged on this global unique id 200812 mac 200812 bytes_out 0 200812 bytes_in 0 200812 station_ip 217.60.218.61 200812 port 25 200812 unique_id port 200812 remote_ip 10.8.0.26 200813 username mohsenaskari 200813 mac 200813 bytes_out 0 200813 bytes_in 0 200813 station_ip 46.225.208.251 200813 port 35 200813 unique_id port 200813 remote_ip 10.8.1.206 200814 username barzegar 200814 mac 200814 bytes_out 0 200814 bytes_in 0 200814 station_ip 5.120.91.37 200814 port 26 200814 unique_id port 200814 remote_ip 10.8.1.6 200815 username saeed9658 200815 kill_reason Maximum check online fails reached 200815 mac 200815 bytes_out 0 200815 bytes_in 0 200815 station_ip 5.119.36.126 200815 port 35 200815 unique_id port 200816 username saeeddamghani 200816 mac 200816 bytes_out 0 200816 bytes_in 0 200816 station_ip 217.60.218.61 200816 port 25 200816 unique_id port 200821 username barzegar 200821 mac 200821 bytes_out 0 200821 bytes_in 0 200821 station_ip 5.120.91.37 200821 port 37 200821 unique_id port 200821 remote_ip 10.8.1.6 200822 username seyedrezaei2572 200822 mac 200822 bytes_out 0 200822 bytes_in 0 200822 station_ip 5.218.183.169 200822 port 14 200822 unique_id port 200822 remote_ip 10.8.0.186 200826 username morteza4424 200826 mac 200826 bytes_out 256459 200826 bytes_in 972009 200826 station_ip 83.123.120.46 200826 port 25 200826 unique_id port 200826 remote_ip 10.8.0.70 200829 username dortaj3792 200829 mac 200829 bytes_out 636977 200829 bytes_in 1647979 200829 station_ip 5.119.114.199 200829 port 27 200829 unique_id port 200829 remote_ip 10.8.0.30 200833 username saeed9658 200833 kill_reason Maximum check online fails reached 200833 mac 200833 bytes_out 0 200833 bytes_in 0 200833 station_ip 5.119.36.126 200833 port 14 200833 unique_id port 200834 username iranmanesh4443 200834 kill_reason Another user logged on this global unique id 200834 mac 200834 bytes_out 0 200834 bytes_in 0 200834 station_ip 5.119.177.251 200834 port 26 200834 unique_id port 200834 remote_ip 10.8.1.122 200836 username meysam 200836 kill_reason Another user logged on this global unique id 200836 mac 200836 bytes_out 0 200836 bytes_in 0 200836 station_ip 188.159.254.35 200836 port 38 200836 unique_id port 200836 remote_ip 10.8.1.30 200841 username kalantary6037 200841 mac 200841 bytes_out 2317023 200841 bytes_in 16694590 200841 station_ip 37.129.180.29 200841 port 28 200841 unique_id port 200841 remote_ip 10.8.0.10 200844 username barzegar 200844 mac 200844 bytes_out 0 200844 bytes_in 0 200844 station_ip 5.120.91.37 200844 port 40 200844 unique_id port 200844 remote_ip 10.8.1.6 200848 username moslem6940 200848 mac 200848 bytes_out 0 200848 bytes_in 0 200848 station_ip 37.129.129.64 200848 port 40 200848 unique_id port 200848 remote_ip 10.8.1.210 200849 username moslem6940 200849 mac 200849 bytes_out 0 200849 bytes_in 0 200849 station_ip 37.129.129.64 200849 port 25 200849 unique_id port 200849 remote_ip 10.8.0.214 200851 username moslem6940 200851 mac 200851 bytes_out 0 200851 bytes_in 0 200851 station_ip 37.129.129.64 200851 port 25 200851 unique_id port 200851 remote_ip 10.8.0.214 200853 username saeed9658 200853 kill_reason Maximum check online fails reached 200853 mac 200853 bytes_out 0 200853 bytes_in 0 200853 station_ip 5.119.36.126 200853 port 41 200853 unique_id port 200854 username moslem6940 200854 mac 200854 bytes_out 16346 200854 bytes_in 39717 200825 bytes_out 5677 200825 bytes_in 11312 200825 station_ip 5.120.245.255 200825 port 37 200825 unique_id port 200825 remote_ip 10.8.1.58 200831 username moslem6940 200831 mac 200831 bytes_out 0 200831 bytes_in 0 200831 station_ip 37.129.129.64 200831 port 25 200831 unique_id port 200831 remote_ip 10.8.0.214 200832 username motamedi9772 200832 mac 200832 bytes_out 0 200832 bytes_in 0 200832 station_ip 83.123.227.125 200832 port 14 200832 unique_id port 200832 remote_ip 10.8.0.62 200835 username nilufarrajaei 200835 mac 200835 bytes_out 0 200835 bytes_in 0 200835 station_ip 37.129.78.5 200835 port 22 200835 unique_id port 200835 remote_ip 10.8.0.94 200837 username moslem6940 200837 mac 200837 bytes_out 0 200837 bytes_in 0 200837 station_ip 37.129.129.64 200837 port 25 200837 unique_id port 200837 remote_ip 10.8.0.214 200838 username moslem6940 200838 mac 200838 bytes_out 0 200838 bytes_in 0 200838 station_ip 37.129.129.64 200838 port 22 200838 unique_id port 200838 remote_ip 10.8.0.214 200842 username moslem6940 200842 mac 200842 bytes_out 0 200842 bytes_in 0 200842 station_ip 37.129.129.64 200842 port 40 200842 unique_id port 200842 remote_ip 10.8.1.210 200843 username moslem6940 200843 mac 200843 bytes_out 0 200843 bytes_in 0 200843 station_ip 37.129.129.64 200843 port 22 200843 unique_id port 200843 remote_ip 10.8.0.214 200846 username moslem6940 200846 mac 200846 bytes_out 0 200846 bytes_in 0 200846 station_ip 37.129.129.64 200846 port 25 200846 unique_id port 200846 remote_ip 10.8.0.214 200852 username nilufarrajaei 200852 mac 200852 bytes_out 0 200852 bytes_in 0 200852 station_ip 37.129.78.5 200852 port 26 200852 unique_id port 200852 remote_ip 10.8.0.94 200857 username barzegar 200857 mac 200857 bytes_out 0 200857 bytes_in 0 200857 station_ip 5.120.91.37 200857 port 42 200857 unique_id port 200857 remote_ip 10.8.1.6 200861 username moslem6940 200861 mac 200861 bytes_out 0 200861 bytes_in 0 200861 station_ip 37.129.129.64 200861 port 25 200861 unique_id port 200861 remote_ip 10.8.0.214 200862 username moslem6940 200862 mac 200862 bytes_out 0 200862 bytes_in 0 200862 station_ip 37.129.129.64 200862 port 25 200862 unique_id port 200862 remote_ip 10.8.0.214 200863 username morteza4424 200863 mac 200863 bytes_out 0 200863 bytes_in 0 200863 station_ip 83.123.0.222 200863 port 25 200863 unique_id port 200863 remote_ip 10.8.0.70 200866 username moslem6940 200866 mac 200866 bytes_out 0 200866 bytes_in 0 200866 station_ip 37.129.129.64 200866 port 25 200866 unique_id port 200866 remote_ip 10.8.0.214 200869 username saeed9658 200869 kill_reason Maximum check online fails reached 200869 mac 200869 bytes_out 0 200869 bytes_in 0 200869 station_ip 5.120.121.202 200869 port 43 200869 unique_id port 200871 username barzegar 200871 mac 200871 bytes_out 0 200871 bytes_in 0 200871 station_ip 5.120.91.37 200871 port 42 200871 unique_id port 200871 remote_ip 10.8.1.6 200874 username saeed9658 200874 mac 200874 bytes_out 0 200874 bytes_in 0 200874 station_ip 5.120.121.202 200874 port 42 200874 unique_id port 200874 remote_ip 10.8.1.194 200879 username moslem6940 200879 mac 200879 bytes_out 0 200879 bytes_in 0 200879 station_ip 37.129.129.64 200879 port 42 200879 unique_id port 200879 remote_ip 10.8.1.210 200881 username moslem6940 200881 mac 200881 bytes_out 0 200881 bytes_in 0 200881 station_ip 37.129.129.64 200881 port 42 200881 unique_id port 200830 bytes_in 0 200830 station_ip 5.120.91.37 200830 port 40 200830 unique_id port 200830 remote_ip 10.8.1.6 200839 username moslem6940 200839 mac 200839 bytes_out 0 200839 bytes_in 0 200839 station_ip 37.129.129.64 200839 port 22 200839 unique_id port 200839 remote_ip 10.8.0.214 200840 username godarzi 200840 kill_reason Another user logged on this global unique id 200840 mac 200840 bytes_out 0 200840 bytes_in 0 200840 station_ip 5.202.2.157 200840 port 37 200840 unique_id port 200840 remote_ip 10.8.1.78 200845 username moslem6940 200845 mac 200845 bytes_out 0 200845 bytes_in 0 200845 station_ip 37.129.129.64 200845 port 25 200845 unique_id port 200845 remote_ip 10.8.0.214 200847 username moslem6940 200847 mac 200847 bytes_out 1644 200847 bytes_in 5076 200847 station_ip 37.129.129.64 200847 port 25 200847 unique_id port 200847 remote_ip 10.8.0.214 200850 username moslem6940 200850 kill_reason Maximum check online fails reached 200850 mac 200850 bytes_out 0 200850 bytes_in 0 200850 station_ip 37.129.129.64 200850 port 40 200850 unique_id port 200855 username moslem6940 200855 mac 200855 bytes_out 2162 200855 bytes_in 4784 200855 station_ip 37.129.129.64 200855 port 26 200855 unique_id port 200855 remote_ip 10.8.0.214 200858 username sekonji0496 200858 mac 200858 bytes_out 0 200858 bytes_in 0 200858 station_ip 83.123.225.255 200858 port 25 200858 unique_id port 200858 remote_ip 10.8.0.66 200860 username pourshad 200860 mac 200860 bytes_out 0 200860 bytes_in 0 200860 station_ip 5.120.245.255 200860 port 43 200860 unique_id port 200860 remote_ip 10.8.1.58 200865 username saeed9658 200865 mac 200865 bytes_out 0 200865 bytes_in 0 200865 station_ip 5.120.121.202 200865 port 43 200865 unique_id port 200865 remote_ip 10.8.1.194 200868 username iranmanesh4443 200868 kill_reason Another user logged on this global unique id 200868 mac 200868 bytes_out 0 200868 bytes_in 0 200868 station_ip 5.119.177.251 200868 port 26 200868 unique_id port 200868 remote_ip 10.8.1.122 200872 username saeed9658 200872 mac 200872 bytes_out 0 200872 bytes_in 0 200872 station_ip 5.120.121.202 200872 port 44 200872 unique_id port 200872 remote_ip 10.8.1.194 200873 username moslem6940 200873 mac 200873 bytes_out 0 200873 bytes_in 0 200873 station_ip 37.129.129.64 200873 port 26 200873 unique_id port 200873 remote_ip 10.8.0.214 200876 username saeed9658 200876 mac 200876 bytes_out 0 200876 bytes_in 0 200876 station_ip 5.120.121.202 200876 port 42 200876 unique_id port 200876 remote_ip 10.8.1.194 200877 username moslem6940 200877 mac 200877 bytes_out 0 200877 bytes_in 0 200877 station_ip 37.129.129.64 200877 port 26 200877 unique_id port 200883 username kalantary6037 200883 mac 200883 bytes_out 2894758 200883 bytes_in 22492572 200883 station_ip 37.129.180.29 200883 port 22 200883 unique_id port 200883 remote_ip 10.8.0.10 200885 username saeed9658 200885 mac 200885 bytes_out 0 200885 bytes_in 0 200885 station_ip 5.120.121.202 200885 port 45 200885 unique_id port 200885 remote_ip 10.8.1.194 200887 username naeimeh 200887 mac 200887 bytes_out 1568488 200887 bytes_in 5761936 200887 station_ip 113.203.10.126 200887 port 25 200887 unique_id port 200887 remote_ip 10.8.0.202 200891 username saeed9658 200891 mac 200891 bytes_out 0 200891 bytes_in 0 200891 station_ip 5.120.121.202 200891 port 45 200891 unique_id port 200891 remote_ip 10.8.1.194 200902 username pourshad 200902 mac 200902 bytes_out 1005706 200902 bytes_in 3704193 200854 station_ip 37.129.129.64 200854 port 29 200854 unique_id port 200854 remote_ip 10.8.0.214 200856 username moslem6940 200856 mac 200856 bytes_out 0 200856 bytes_in 0 200856 station_ip 37.129.129.64 200856 port 29 200856 unique_id port 200856 remote_ip 10.8.0.214 200859 username pourshad 200859 mac 200859 bytes_out 220810 200859 bytes_in 427978 200859 station_ip 5.120.245.255 200859 port 28 200859 unique_id port 200859 remote_ip 10.8.0.54 200864 username saeed9658 200864 mac 200864 bytes_out 0 200864 bytes_in 0 200864 station_ip 5.120.121.202 200864 port 43 200864 unique_id port 200864 remote_ip 10.8.1.194 200867 username mammad 200867 unique_id port 200867 terminate_cause User-Request 200867 bytes_out 137554 200867 bytes_in 1655455 200867 station_ip 83.123.178.122 200867 port 15729760 200867 nas_port_type Virtual 200867 remote_ip 5.5.5.112 200870 username moslem6940 200870 mac 200870 bytes_out 89721 200870 bytes_in 480920 200870 station_ip 37.129.129.64 200870 port 26 200870 unique_id port 200870 remote_ip 10.8.0.214 200875 username saeed9658 200875 mac 200875 bytes_out 0 200875 bytes_in 0 200875 station_ip 5.120.121.202 200875 port 42 200875 unique_id port 200875 remote_ip 10.8.1.194 200878 username moslem6940 200878 mac 200878 bytes_out 0 200878 bytes_in 0 200878 station_ip 37.129.129.64 200878 port 29 200878 unique_id port 200878 remote_ip 10.8.0.214 200880 username barzegar 200880 mac 200880 bytes_out 6837 200880 bytes_in 11897 200880 station_ip 5.120.91.37 200880 port 26 200880 unique_id port 200880 remote_ip 10.8.1.6 200882 username moslem6940 200882 mac 200882 bytes_out 0 200882 bytes_in 0 200882 station_ip 37.129.129.64 200882 port 29 200882 unique_id port 200882 remote_ip 10.8.0.214 200884 username saeed9658 200884 mac 200884 bytes_out 0 200884 bytes_in 0 200884 station_ip 5.120.121.202 200884 port 45 200884 unique_id port 200884 remote_ip 10.8.1.194 200890 username saeed9658 200890 mac 200890 bytes_out 0 200890 bytes_in 0 200890 station_ip 5.120.121.202 200890 port 45 200890 unique_id port 200890 remote_ip 10.8.1.194 200892 username moslem6940 200892 mac 200892 bytes_out 0 200892 bytes_in 0 200892 station_ip 37.129.129.64 200892 port 29 200892 unique_id port 200892 remote_ip 10.8.0.214 200893 username saeed9658 200893 mac 200893 bytes_out 0 200893 bytes_in 0 200893 station_ip 5.120.121.202 200893 port 45 200893 unique_id port 200893 remote_ip 10.8.1.194 200894 username moslem6940 200894 mac 200894 bytes_out 0 200894 bytes_in 0 200894 station_ip 37.129.129.64 200894 port 25 200894 unique_id port 200894 remote_ip 10.8.0.214 200896 username saeed9658 200896 mac 200896 bytes_out 0 200896 bytes_in 0 200896 station_ip 5.120.121.202 200896 port 45 200896 unique_id port 200896 remote_ip 10.8.1.194 200901 username moslem6940 200901 mac 200901 bytes_out 0 200901 bytes_in 0 200901 station_ip 37.129.129.64 200901 port 25 200901 unique_id port 200901 remote_ip 10.8.0.214 200905 username moslem6940 200905 mac 200905 bytes_out 0 200905 bytes_in 0 200905 station_ip 37.129.129.64 200905 port 30 200905 unique_id port 200905 remote_ip 10.8.0.214 200907 username moslem6940 200907 mac 200907 bytes_out 15893 200907 bytes_in 35148 200907 station_ip 37.129.129.64 200907 port 22 200907 unique_id port 200907 remote_ip 10.8.0.214 200908 username moslem6940 200908 mac 200908 bytes_out 0 200908 bytes_in 0 200908 station_ip 37.129.129.64 200908 port 45 200881 remote_ip 10.8.1.210 200886 username saeed9658 200886 kill_reason Maximum check online fails reached 200886 mac 200886 bytes_out 0 200886 bytes_in 0 200886 station_ip 5.120.121.202 200886 port 44 200886 unique_id port 200888 username saeed9658 200888 mac 200888 bytes_out 0 200888 bytes_in 0 200888 station_ip 5.120.121.202 200888 port 45 200888 unique_id port 200888 remote_ip 10.8.1.194 200889 username moslem6940 200889 mac 200889 bytes_out 0 200889 bytes_in 0 200889 station_ip 37.129.129.64 200889 port 25 200889 unique_id port 200889 remote_ip 10.8.0.214 200895 username naeimeh 200895 mac 200895 bytes_out 304780 200895 bytes_in 2002882 200895 station_ip 113.203.10.126 200895 port 22 200895 unique_id port 200895 remote_ip 10.8.0.202 200897 username barzegar 200897 mac 200897 bytes_out 0 200897 bytes_in 0 200897 station_ip 5.120.91.37 200897 port 42 200897 unique_id port 200897 remote_ip 10.8.1.6 200898 username moslem6940 200898 mac 200898 bytes_out 0 200898 bytes_in 0 200898 station_ip 37.129.129.64 200898 port 25 200898 unique_id port 200898 remote_ip 10.8.0.214 200899 username moslem6940 200899 mac 200899 bytes_out 0 200899 bytes_in 0 200899 station_ip 37.129.129.64 200899 port 25 200899 unique_id port 200899 remote_ip 10.8.0.214 200900 username motamedi9772 200900 mac 200900 bytes_out 606122 200900 bytes_in 7874847 200900 station_ip 83.123.160.109 200900 port 30 200900 unique_id port 200900 remote_ip 10.8.0.62 200903 username saeed9658 200903 mac 200903 bytes_out 0 200903 bytes_in 0 200903 station_ip 5.120.121.202 200903 port 22 200903 unique_id port 200903 remote_ip 10.8.0.218 200909 username pourshad 200909 mac 200909 bytes_out 0 200909 bytes_in 0 200909 station_ip 5.120.245.255 200909 port 26 200909 unique_id port 200909 remote_ip 10.8.1.58 200911 username meysam 200911 kill_reason Another user logged on this global unique id 200911 mac 200911 bytes_out 0 200911 bytes_in 0 200911 station_ip 188.159.254.35 200911 port 38 200911 unique_id port 200914 username moslem6940 200914 mac 200914 bytes_out 0 200914 bytes_in 0 200914 station_ip 37.129.129.64 200914 port 22 200914 unique_id port 200914 remote_ip 10.8.0.214 200917 username pourshad 200917 mac 200917 bytes_out 0 200917 bytes_in 0 200917 station_ip 5.120.245.255 200917 port 26 200917 unique_id port 200917 remote_ip 10.8.1.58 200919 username moslem6940 200919 mac 200919 bytes_out 0 200919 bytes_in 0 200919 station_ip 37.129.129.64 200919 port 45 200919 unique_id port 200919 remote_ip 10.8.1.210 200920 username naeimeh 200920 mac 200920 bytes_out 0 200920 bytes_in 0 200920 station_ip 83.123.142.255 200920 port 29 200920 unique_id port 200920 remote_ip 10.8.0.202 200922 username meysam 200922 kill_reason Another user logged on this global unique id 200922 mac 200922 bytes_out 0 200922 bytes_in 0 200922 station_ip 188.159.254.35 200922 port 38 200922 unique_id port 200924 username yaghobi 200924 mac 200924 bytes_out 0 200924 bytes_in 0 200924 station_ip 37.129.170.148 200924 port 25 200924 unique_id port 200924 remote_ip 10.8.0.174 200925 username ahmadi1 200925 mac 200925 bytes_out 219413 200925 bytes_in 1319993 200925 station_ip 83.123.238.167 200925 port 31 200925 unique_id port 200925 remote_ip 10.8.0.42 200927 username rashidi4690 200927 mac 200927 bytes_out 2924124 200927 bytes_in 25105137 200927 station_ip 5.119.111.225 200927 port 42 200927 unique_id port 200927 remote_ip 10.8.1.158 200928 username saeed9658 200902 station_ip 5.120.245.255 200902 port 26 200902 unique_id port 200902 remote_ip 10.8.1.58 200904 username moslem6940 200904 mac 200904 bytes_out 0 200904 bytes_in 0 200904 station_ip 37.129.129.64 200904 port 26 200904 unique_id port 200904 remote_ip 10.8.1.210 200906 username malekpoir 200906 kill_reason Another user logged on this global unique id 200906 mac 200906 bytes_out 0 200906 bytes_in 0 200906 station_ip 5.120.117.55 200906 port 16 200906 unique_id port 200910 username moslem6940 200910 mac 200910 bytes_out 0 200910 bytes_in 0 200910 station_ip 37.129.129.64 200910 port 22 200910 unique_id port 200910 remote_ip 10.8.0.214 200912 username moslem6940 200912 mac 200912 bytes_out 0 200912 bytes_in 0 200912 station_ip 37.129.129.64 200912 port 22 200912 unique_id port 200912 remote_ip 10.8.0.214 200918 username moslem6940 200918 mac 200918 bytes_out 0 200918 bytes_in 0 200918 station_ip 37.129.129.64 200918 port 45 200918 unique_id port 200918 remote_ip 10.8.1.210 200921 username moslem6940 200921 mac 200921 bytes_out 16464 200921 bytes_in 34237 200921 station_ip 37.129.129.64 200921 port 22 200921 unique_id port 200921 remote_ip 10.8.0.214 200923 username moslem6940 200923 mac 200923 bytes_out 95610 200923 bytes_in 19867 200923 station_ip 37.129.129.64 200923 port 22 200923 unique_id port 200923 remote_ip 10.8.0.214 200926 username pourshad 200926 mac 200926 bytes_out 0 200926 bytes_in 0 200926 station_ip 5.120.245.255 200926 port 45 200926 unique_id port 200926 remote_ip 10.8.1.58 200934 username aminvpns6 200934 mac 200934 bytes_out 2543829 200934 bytes_in 25985020 200934 station_ip 5.120.100.138 200934 port 22 200934 unique_id port 200934 remote_ip 10.8.0.210 200948 username moslem6940 200948 mac 200948 bytes_out 0 200948 bytes_in 0 200948 station_ip 37.129.129.64 200948 port 27 200948 unique_id port 200948 remote_ip 10.8.0.214 200951 username moslem6940 200951 mac 200951 bytes_out 0 200951 bytes_in 0 200951 station_ip 37.129.129.64 200951 port 27 200951 unique_id port 200951 remote_ip 10.8.0.214 200953 username esmaeili1522 200953 mac 200953 bytes_out 0 200953 bytes_in 0 200953 station_ip 5.119.68.190 200953 port 26 200953 unique_id port 200953 remote_ip 10.8.1.106 200955 username moslem6940 200955 mac 200955 bytes_out 0 200955 bytes_in 0 200955 station_ip 37.129.129.64 200955 port 31 200955 unique_id port 200955 remote_ip 10.8.0.214 200958 username moslem6940 200958 mac 200958 bytes_out 0 200958 bytes_in 0 200958 station_ip 37.129.129.64 200958 port 31 200958 unique_id port 200958 remote_ip 10.8.0.214 200959 username moslem6940 200959 mac 200959 bytes_out 0 200959 bytes_in 0 200959 station_ip 37.129.129.64 200959 port 31 200959 unique_id port 200959 remote_ip 10.8.0.214 200961 username moslem6940 200961 mac 200961 bytes_out 0 200961 bytes_in 0 200961 station_ip 37.129.129.64 200961 port 32 200961 unique_id port 200961 remote_ip 10.8.0.214 200964 username kharazmi2920 200964 mac 200964 bytes_out 0 200964 bytes_in 0 200964 station_ip 83.123.60.195 200964 port 38 200964 unique_id port 200964 remote_ip 10.8.1.178 200965 username moslem6940 200965 kill_reason Maximum number of concurrent logins reached 200965 mac 200965 bytes_out 0 200965 bytes_in 0 200965 station_ip 37.129.129.64 200965 port 32 200965 unique_id port 200967 username moslem6940 200967 kill_reason Maximum check online fails reached 200967 mac 200967 bytes_out 0 200967 bytes_in 0 200967 station_ip 37.129.129.64 200908 unique_id port 200908 remote_ip 10.8.1.210 200913 username godarzi 200913 kill_reason Another user logged on this global unique id 200913 mac 200913 bytes_out 0 200913 bytes_in 0 200913 station_ip 5.202.2.157 200913 port 37 200913 unique_id port 200915 username moslem6940 200915 mac 200915 bytes_out 0 200915 bytes_in 0 200915 station_ip 37.129.129.64 200915 port 22 200915 unique_id port 200915 remote_ip 10.8.0.214 200916 username moslem6940 200916 mac 200916 bytes_out 0 200916 bytes_in 0 200916 station_ip 37.129.129.64 200916 port 45 200916 unique_id port 200916 remote_ip 10.8.1.210 200930 username moslem6940 200930 mac 200930 bytes_out 0 200930 bytes_in 0 200930 station_ip 37.129.129.64 200930 port 26 200930 unique_id port 200930 remote_ip 10.8.1.210 200933 username moslem6940 200933 mac 200933 bytes_out 0 200933 bytes_in 0 200933 station_ip 37.129.129.64 200933 port 26 200933 unique_id port 200933 remote_ip 10.8.1.210 200935 username meysam 200935 mac 200935 bytes_out 0 200935 bytes_in 0 200935 station_ip 188.159.254.35 200935 port 38 200935 unique_id port 200937 username moslem6940 200937 mac 200937 bytes_out 1965 200937 bytes_in 4634 200937 station_ip 37.129.129.64 200937 port 31 200937 unique_id port 200937 remote_ip 10.8.0.214 200938 username moslem6940 200938 mac 200938 bytes_out 0 200938 bytes_in 0 200938 station_ip 37.129.129.64 200938 port 26 200938 unique_id port 200938 remote_ip 10.8.1.210 200941 username moslem6940 200941 mac 200941 bytes_out 0 200941 bytes_in 0 200941 station_ip 37.129.129.64 200941 port 31 200941 unique_id port 200941 remote_ip 10.8.0.214 200942 username kharazmi2920 200942 mac 200942 bytes_out 17359778 200942 bytes_in 31810384 200942 station_ip 83.123.60.195 200942 port 27 200942 unique_id port 200942 remote_ip 10.8.0.34 200946 username moslem6940 200946 mac 200946 bytes_out 0 200946 bytes_in 0 200946 station_ip 37.129.129.64 200946 port 31 200946 unique_id port 200946 remote_ip 10.8.0.214 200947 username moslem6940 200947 mac 200947 bytes_out 0 200947 bytes_in 0 200947 station_ip 37.129.129.64 200947 port 27 200947 unique_id port 200947 remote_ip 10.8.0.214 200949 username kharazmi2920 200949 mac 200949 bytes_out 0 200949 bytes_in 0 200949 station_ip 83.123.60.195 200949 port 32 200949 unique_id port 200949 remote_ip 10.8.0.34 200952 username moslem6940 200952 mac 200952 bytes_out 0 200952 bytes_in 0 200952 station_ip 37.129.129.64 200952 port 45 200952 unique_id port 200952 remote_ip 10.8.1.210 200954 username moslem6940 200954 mac 200954 bytes_out 0 200954 bytes_in 0 200954 station_ip 37.129.129.64 200954 port 31 200954 unique_id port 200954 remote_ip 10.8.0.214 200956 username moslem6940 200956 kill_reason Maximum check online fails reached 200956 mac 200956 bytes_out 0 200956 bytes_in 0 200956 station_ip 37.129.129.64 200956 port 27 200956 unique_id port 200957 username moslem6940 200957 mac 200957 bytes_out 0 200957 bytes_in 0 200957 station_ip 37.129.129.64 200957 port 26 200957 unique_id port 200957 remote_ip 10.8.1.210 200962 username moslem6940 200962 mac 200962 bytes_out 0 200962 bytes_in 0 200962 station_ip 37.129.129.64 200962 port 45 200962 unique_id port 200962 remote_ip 10.8.1.210 200963 username hatami 200963 mac 200963 bytes_out 0 200963 bytes_in 0 200963 station_ip 37.27.24.189 200963 port 23 200963 unique_id port 200963 remote_ip 10.8.0.78 200966 username moslem6940 200966 mac 200928 mac 200928 bytes_out 0 200928 bytes_in 0 200928 station_ip 5.120.121.202 200928 port 26 200928 unique_id port 200928 remote_ip 10.8.1.194 200929 username moslem6940 200929 mac 200929 bytes_out 0 200929 bytes_in 0 200929 station_ip 37.129.129.64 200929 port 26 200929 unique_id port 200929 remote_ip 10.8.1.210 200931 username moslem6940 200931 mac 200931 bytes_out 0 200931 bytes_in 0 200931 station_ip 37.129.129.64 200931 port 31 200931 unique_id port 200931 remote_ip 10.8.0.214 200932 username moslem6940 200932 mac 200932 bytes_out 0 200932 bytes_in 0 200932 station_ip 37.129.129.64 200932 port 31 200932 unique_id port 200932 remote_ip 10.8.0.214 200936 username barzegar8595 200936 mac 200936 bytes_out 0 200936 bytes_in 0 200936 station_ip 89.47.138.15 200936 port 45 200936 unique_id port 200936 remote_ip 10.8.1.50 200939 username moslem6940 200939 mac 200939 bytes_out 0 200939 bytes_in 0 200939 station_ip 37.129.129.64 200939 port 26 200939 unique_id port 200939 remote_ip 10.8.1.210 200940 username moslem6940 200940 mac 200940 bytes_out 0 200940 bytes_in 0 200940 station_ip 37.129.129.64 200940 port 31 200940 unique_id port 200940 remote_ip 10.8.0.214 200943 username moslem6940 200943 mac 200943 bytes_out 0 200943 bytes_in 0 200943 station_ip 37.129.129.64 200943 port 38 200943 unique_id port 200943 remote_ip 10.8.1.210 200944 username kharazmi2920 200944 mac 200944 bytes_out 0 200944 bytes_in 0 200944 station_ip 83.123.60.195 200944 port 31 200944 unique_id port 200944 remote_ip 10.8.0.34 200945 username moslem6940 200945 mac 200945 bytes_out 0 200945 bytes_in 0 200945 station_ip 37.129.129.64 200945 port 27 200945 unique_id port 200945 remote_ip 10.8.0.214 200950 username pourshad 200950 mac 200950 bytes_out 0 200950 bytes_in 0 200950 station_ip 5.120.245.255 200950 port 42 200950 unique_id port 200950 remote_ip 10.8.1.58 200960 username moslem6940 200960 mac 200960 bytes_out 0 200960 bytes_in 0 200960 station_ip 37.129.129.64 200960 port 31 200960 unique_id port 200960 remote_ip 10.8.0.214 200976 username kharazmi2920 200976 mac 200976 bytes_out 0 200976 bytes_in 0 200976 station_ip 83.123.60.195 200976 port 38 200976 unique_id port 200976 remote_ip 10.8.1.178 200977 username barzegar8595 200977 mac 200977 bytes_out 0 200977 bytes_in 0 200977 station_ip 46.225.212.162 200977 port 42 200977 unique_id port 200977 remote_ip 10.8.1.50 200981 username barzegar8595 200981 mac 200981 bytes_out 0 200981 bytes_in 0 200981 station_ip 89.47.138.15 200981 port 47 200981 unique_id port 200981 remote_ip 10.8.1.50 200983 username meysam 200983 kill_reason Another user logged on this global unique id 200983 mac 200983 bytes_out 0 200983 bytes_in 0 200983 station_ip 188.159.254.35 200983 port 46 200983 unique_id port 200983 remote_ip 10.8.1.30 200984 username barzegar8595 200984 mac 200984 bytes_out 0 200984 bytes_in 0 200984 station_ip 89.47.138.15 200984 port 47 200984 unique_id port 200984 remote_ip 10.8.1.50 200988 username barzegar8595 200988 mac 200988 bytes_out 0 200988 bytes_in 0 200988 station_ip 46.225.212.162 200988 port 42 200988 unique_id port 200988 remote_ip 10.8.1.50 200992 username barzegar8595 200992 mac 200992 bytes_out 0 200992 bytes_in 0 200992 station_ip 46.225.212.162 200992 port 42 200992 unique_id port 200992 remote_ip 10.8.1.50 200996 username barzegar8595 200996 mac 200996 bytes_out 0 200996 bytes_in 0 200966 bytes_out 2032 200966 bytes_in 4615 200966 station_ip 37.129.129.64 200966 port 31 200966 unique_id port 200966 remote_ip 10.8.0.214 200968 username pourshad 200968 mac 200968 bytes_out 272686 200968 bytes_in 153601 200968 station_ip 5.120.245.255 200968 port 42 200968 unique_id port 200968 remote_ip 10.8.1.58 200969 username kalantary6037 200969 mac 200969 bytes_out 235761 200969 bytes_in 1162693 200969 station_ip 37.129.183.169 200969 port 32 200969 unique_id port 200969 remote_ip 10.8.0.10 200970 username nilufarrajaei 200970 mac 200970 bytes_out 0 200970 bytes_in 0 200970 station_ip 37.129.250.114 200970 port 31 200970 unique_id port 200970 remote_ip 10.8.0.94 200972 username barzegar8595 200972 mac 200972 bytes_out 897312 200972 bytes_in 9339697 200972 station_ip 89.47.138.15 200972 port 26 200972 unique_id port 200972 remote_ip 10.8.1.50 200974 username malekpoir 200974 kill_reason Another user logged on this global unique id 200974 mac 200974 bytes_out 0 200974 bytes_in 0 200974 station_ip 5.120.117.55 200974 port 16 200974 unique_id port 200975 username barzegar8595 200975 mac 200975 bytes_out 38564 200975 bytes_in 62206 200975 station_ip 89.47.138.15 200975 port 26 200975 unique_id port 200975 remote_ip 10.8.1.50 200978 username barzegar8595 200978 mac 200978 bytes_out 0 200978 bytes_in 0 200978 station_ip 89.47.138.15 200978 port 47 200978 unique_id port 200978 remote_ip 10.8.1.50 200982 username barzegar8595 200982 mac 200982 bytes_out 0 200982 bytes_in 0 200982 station_ip 46.225.212.162 200982 port 42 200982 unique_id port 200982 remote_ip 10.8.1.50 200989 username barzegar8595 200989 mac 200989 bytes_out 0 200989 bytes_in 0 200989 station_ip 89.47.138.15 200989 port 16 200989 unique_id port 200989 remote_ip 10.8.1.50 200990 username barzegar8595 200990 mac 200990 bytes_out 0 200990 bytes_in 0 200990 station_ip 46.225.212.162 200990 port 42 200990 unique_id port 200990 remote_ip 10.8.1.50 200993 username barzegar8595 200993 mac 200993 bytes_out 0 200993 bytes_in 0 200993 station_ip 89.47.138.15 200993 port 16 200993 unique_id port 200993 remote_ip 10.8.1.50 200994 username barzegar8595 200994 mac 200994 bytes_out 0 200994 bytes_in 0 200994 station_ip 46.225.212.162 200994 port 42 200994 unique_id port 200994 remote_ip 10.8.1.50 200998 username barzegar8595 200998 mac 200998 bytes_out 0 200998 bytes_in 0 200998 station_ip 46.225.212.162 200998 port 42 200998 unique_id port 200998 remote_ip 10.8.1.50 201000 username barzegar8595 201000 mac 201000 bytes_out 0 201000 bytes_in 0 201000 station_ip 46.225.212.162 201000 port 42 201000 unique_id port 201000 remote_ip 10.8.1.50 201003 username barzegar8595 201003 mac 201003 bytes_out 0 201003 bytes_in 0 201003 station_ip 5.72.124.202 201003 port 16 201003 unique_id port 201003 remote_ip 10.8.1.50 201006 username kharazmi2920 201006 mac 201006 bytes_out 0 201006 bytes_in 0 201006 station_ip 83.123.60.195 201006 port 38 201006 unique_id port 201006 remote_ip 10.8.1.178 201007 username barzegar8595 201007 mac 201007 bytes_out 0 201007 bytes_in 0 201007 station_ip 5.72.124.202 201007 port 16 201007 unique_id port 201007 remote_ip 10.8.1.50 201010 username barzegar8595 201010 mac 201010 bytes_out 0 201010 bytes_in 0 201010 station_ip 46.225.212.162 201010 port 38 201010 unique_id port 201010 remote_ip 10.8.1.50 201011 username nilufarrajaei 201011 mac 201011 bytes_out 143195 201011 bytes_in 514386 201011 station_ip 37.129.160.178 200967 port 23 200967 unique_id port 200971 username pourshad 200971 mac 200971 bytes_out 18537 200971 bytes_in 28197 200971 station_ip 5.120.245.255 200971 port 42 200971 unique_id port 200971 remote_ip 10.8.1.58 200973 username pourshad 200973 mac 200973 bytes_out 302836 200973 bytes_in 485768 200973 station_ip 5.120.245.255 200973 port 42 200973 unique_id port 200973 remote_ip 10.8.1.58 200979 username barzegar8595 200979 mac 200979 bytes_out 0 200979 bytes_in 0 200979 station_ip 46.225.212.162 200979 port 42 200979 unique_id port 200979 remote_ip 10.8.1.50 200980 username kalantary6037 200980 mac 200980 bytes_out 0 200980 bytes_in 0 200980 station_ip 37.129.183.169 200980 port 31 200980 unique_id port 200980 remote_ip 10.8.0.10 200985 username malekpoir 200985 mac 200985 bytes_out 0 200985 bytes_in 0 200985 station_ip 5.120.117.55 200985 port 16 200985 unique_id port 200986 username barzegar8595 200986 mac 200986 bytes_out 0 200986 bytes_in 0 200986 station_ip 46.225.212.162 200986 port 42 200986 unique_id port 200986 remote_ip 10.8.1.50 200987 username barzegar8595 200987 mac 200987 bytes_out 0 200987 bytes_in 0 200987 station_ip 89.47.138.15 200987 port 16 200987 unique_id port 200987 remote_ip 10.8.1.50 200991 username barzegar8595 200991 mac 200991 bytes_out 0 200991 bytes_in 0 200991 station_ip 89.47.138.15 200991 port 16 200991 unique_id port 200991 remote_ip 10.8.1.50 200995 username barzegar8595 200995 mac 200995 bytes_out 0 200995 bytes_in 0 200995 station_ip 89.47.138.15 200995 port 16 200995 unique_id port 200995 remote_ip 10.8.1.50 200999 username barzegar8595 200999 mac 200999 bytes_out 0 200999 bytes_in 0 200999 station_ip 5.72.124.202 200999 port 16 200999 unique_id port 200999 remote_ip 10.8.1.50 201001 username barzegar8595 201001 mac 201001 bytes_out 0 201001 bytes_in 0 201001 station_ip 5.72.124.202 201001 port 16 201001 unique_id port 201001 remote_ip 10.8.1.50 201008 username barzegar8595 201008 mac 201008 bytes_out 0 201008 bytes_in 0 201008 station_ip 46.225.212.162 201008 port 38 201008 unique_id port 201008 remote_ip 10.8.1.50 201012 username seyedrezaei2572 201012 kill_reason Another user logged on this global unique id 201012 mac 201012 bytes_out 0 201012 bytes_in 0 201012 station_ip 192.15.141.216 201012 port 30 201012 unique_id port 201012 remote_ip 10.8.0.186 201017 username aminvpns6 201017 mac 201017 bytes_out 5055556 201017 bytes_in 43795430 201017 station_ip 5.120.100.138 201017 port 22 201017 unique_id port 201017 remote_ip 10.8.0.210 201024 username nilufarrajaei 201024 mac 201024 bytes_out 80423 201024 bytes_in 96301 201024 station_ip 37.129.160.178 201024 port 32 201024 unique_id port 201024 remote_ip 10.8.0.94 201031 username aminvpns6 201031 mac 201031 bytes_out 156278 201031 bytes_in 1051266 201031 station_ip 5.120.100.138 201031 port 45 201031 unique_id port 201031 remote_ip 10.8.1.62 201032 username mosi 201032 mac 201032 bytes_out 653321 201032 bytes_in 1041111 201032 station_ip 5.73.60.226 201032 port 42 201032 unique_id port 201032 remote_ip 10.8.1.118 201036 username alipour1506 201036 mac 201036 bytes_out 0 201036 bytes_in 0 201036 station_ip 83.123.56.58 201036 port 22 201036 unique_id port 201036 remote_ip 10.8.0.134 201042 username arash 201042 mac 201042 bytes_out 832543 201042 bytes_in 4916890 201042 station_ip 37.27.13.229 201042 port 22 201042 unique_id port 201042 remote_ip 10.8.0.162 201044 username nilufarrajaei 200996 station_ip 46.225.212.162 200996 port 42 200996 unique_id port 200996 remote_ip 10.8.1.50 200997 username barzegar8595 200997 mac 200997 bytes_out 0 200997 bytes_in 0 200997 station_ip 5.72.124.202 200997 port 16 200997 unique_id port 200997 remote_ip 10.8.1.50 201002 username barzegar8595 201002 mac 201002 bytes_out 0 201002 bytes_in 0 201002 station_ip 46.225.212.162 201002 port 42 201002 unique_id port 201002 remote_ip 10.8.1.50 201004 username hosseine 201004 kill_reason Another user logged on this global unique id 201004 mac 201004 bytes_out 0 201004 bytes_in 0 201004 station_ip 37.129.143.154 201004 port 28 201004 unique_id port 201004 remote_ip 10.8.0.118 201005 username barzegar8595 201005 mac 201005 bytes_out 0 201005 bytes_in 0 201005 station_ip 46.225.212.162 201005 port 42 201005 unique_id port 201005 remote_ip 10.8.1.50 201009 username barzegar8595 201009 mac 201009 bytes_out 0 201009 bytes_in 0 201009 station_ip 5.72.124.202 201009 port 16 201009 unique_id port 201009 remote_ip 10.8.1.50 201021 username barzegar8595 201021 mac 201021 bytes_out 188138 201021 bytes_in 551806 201021 station_ip 5.72.124.202 201021 port 16 201021 unique_id port 201021 remote_ip 10.8.1.50 201025 username pourshad 201025 mac 201025 bytes_out 6881187 201025 bytes_in 23704055 201025 station_ip 5.120.245.255 201025 port 26 201025 unique_id port 201025 remote_ip 10.8.1.58 201026 username seyedrezaei2572 201026 mac 201026 bytes_out 0 201026 bytes_in 0 201026 station_ip 192.15.141.216 201026 port 30 201026 unique_id port 201029 username milan 201029 kill_reason Another user logged on this global unique id 201029 mac 201029 bytes_out 0 201029 bytes_in 0 201029 station_ip 5.120.38.92 201029 port 33 201029 unique_id port 201034 username barzegar8595 201034 mac 201034 bytes_out 0 201034 bytes_in 0 201034 station_ip 5.202.23.228 201034 port 38 201034 unique_id port 201034 remote_ip 10.8.1.50 201038 username milan 201038 kill_reason Another user logged on this global unique id 201038 mac 201038 bytes_out 0 201038 bytes_in 0 201038 station_ip 5.120.38.92 201038 port 33 201038 unique_id port 201039 username barzegar8595 201039 mac 201039 bytes_out 113111 201039 bytes_in 3652087 201039 station_ip 5.202.23.228 201039 port 38 201039 unique_id port 201039 remote_ip 10.8.1.50 201040 username kalantary6037 201040 mac 201040 bytes_out 508757 201040 bytes_in 772081 201040 station_ip 37.129.224.5 201040 port 22 201040 unique_id port 201040 remote_ip 10.8.0.10 201043 username naeimeh 201043 mac 201043 bytes_out 771591 201043 bytes_in 12631734 201043 station_ip 83.123.34.225 201043 port 28 201043 unique_id port 201043 remote_ip 10.8.0.202 201047 username arash 201047 kill_reason Another user logged on this global unique id 201047 mac 201047 bytes_out 0 201047 bytes_in 0 201047 station_ip 37.27.13.229 201047 port 48 201047 unique_id port 201047 remote_ip 10.8.1.54 201048 username pourshad 201048 mac 201048 bytes_out 0 201048 bytes_in 0 201048 station_ip 5.120.245.255 201048 port 26 201048 unique_id port 201048 remote_ip 10.8.1.58 201049 username pourshad 201049 mac 201049 bytes_out 315785 201049 bytes_in 2650165 201049 station_ip 5.120.245.255 201049 port 26 201049 unique_id port 201049 remote_ip 10.8.1.58 201058 username kharazmi2920 201058 mac 201058 bytes_out 298961 201058 bytes_in 2535089 201058 station_ip 83.123.60.195 201058 port 32 201058 unique_id port 201058 remote_ip 10.8.0.34 201060 username barzegar 201060 mac 201060 bytes_out 0 201060 bytes_in 0 201011 port 32 201011 unique_id port 201011 remote_ip 10.8.0.94 201013 username meysam 201013 kill_reason Another user logged on this global unique id 201013 mac 201013 bytes_out 0 201013 bytes_in 0 201013 station_ip 188.159.254.35 201013 port 46 201013 unique_id port 201014 username nilufarrajaei 201014 mac 201014 bytes_out 145654 201014 bytes_in 979756 201014 station_ip 37.129.160.178 201014 port 32 201014 unique_id port 201014 remote_ip 10.8.0.94 201015 username mosi 201015 mac 201015 bytes_out 679635 201015 bytes_in 1056437 201015 station_ip 151.235.106.19 201015 port 45 201015 unique_id port 201015 remote_ip 10.8.1.118 201016 username mosi 201016 mac 201016 bytes_out 0 201016 bytes_in 0 201016 station_ip 5.73.251.242 201016 port 38 201016 unique_id port 201016 remote_ip 10.8.1.118 201018 username hosseine 201018 kill_reason Another user logged on this global unique id 201018 mac 201018 bytes_out 0 201018 bytes_in 0 201018 station_ip 37.129.143.154 201018 port 28 201018 unique_id port 201019 username milan 201019 kill_reason Another user logged on this global unique id 201019 mac 201019 bytes_out 0 201019 bytes_in 0 201019 station_ip 5.120.38.92 201019 port 33 201019 unique_id port 201019 remote_ip 10.8.0.198 201020 username meysam 201020 kill_reason Another user logged on this global unique id 201020 mac 201020 bytes_out 0 201020 bytes_in 0 201020 station_ip 188.159.254.35 201020 port 46 201020 unique_id port 201022 username nilufarrajaei 201022 mac 201022 bytes_out 0 201022 bytes_in 0 201022 station_ip 37.129.160.178 201022 port 34 201022 unique_id port 201022 remote_ip 10.8.0.94 201023 username milan 201023 kill_reason Another user logged on this global unique id 201023 mac 201023 bytes_out 0 201023 bytes_in 0 201023 station_ip 5.120.38.92 201023 port 33 201023 unique_id port 201027 username nilufarrajaei 201027 mac 201027 bytes_out 0 201027 bytes_in 0 201027 station_ip 37.129.160.178 201027 port 32 201027 unique_id port 201027 remote_ip 10.8.0.94 201028 username meysam 201028 mac 201028 bytes_out 0 201028 bytes_in 0 201028 station_ip 188.159.254.35 201028 port 46 201028 unique_id port 201030 username dortaj3792 201030 mac 201030 bytes_out 0 201030 bytes_in 0 201030 station_ip 5.119.114.199 201030 port 29 201030 unique_id port 201030 remote_ip 10.8.0.30 201033 username pourshad 201033 mac 201033 bytes_out 9544141 201033 bytes_in 1220108 201033 station_ip 5.120.245.255 201033 port 26 201033 unique_id port 201033 remote_ip 10.8.1.58 201035 username hosseine 201035 mac 201035 bytes_out 0 201035 bytes_in 0 201035 station_ip 37.129.143.154 201035 port 28 201035 unique_id port 201037 username kharazmi2920 201037 mac 201037 bytes_out 274534 201037 bytes_in 1855683 201037 station_ip 83.123.60.195 201037 port 29 201037 unique_id port 201037 remote_ip 10.8.0.34 201041 username nilufarrajaei 201041 mac 201041 bytes_out 2771021 201041 bytes_in 18488389 201041 station_ip 37.129.160.178 201041 port 30 201041 unique_id port 201041 remote_ip 10.8.0.94 201045 username godarzi 201045 kill_reason Another user logged on this global unique id 201045 mac 201045 bytes_out 0 201045 bytes_in 0 201045 station_ip 5.202.2.157 201045 port 37 201045 unique_id port 201051 username saeed9658 201051 mac 201051 bytes_out 0 201051 bytes_in 0 201051 station_ip 5.120.121.202 201051 port 26 201051 unique_id port 201051 remote_ip 10.8.1.194 201052 username barzegar 201052 kill_reason Another user logged on this global unique id 201052 mac 201052 bytes_out 0 201052 bytes_in 0 201044 mac 201044 bytes_out 98998 201044 bytes_in 328004 201044 station_ip 37.129.160.178 201044 port 29 201044 unique_id port 201044 remote_ip 10.8.0.94 201046 username aminvpn 201046 unique_id port 201046 terminate_cause User-Request 201046 bytes_out 595746 201046 bytes_in 1667872 201046 station_ip 83.123.139.219 201046 port 15729764 201046 nas_port_type Virtual 201046 remote_ip 5.5.5.116 201050 username saeed9658 201050 mac 201050 bytes_out 0 201050 bytes_in 0 201050 station_ip 5.120.121.202 201050 port 47 201050 unique_id port 201050 remote_ip 10.8.1.194 201053 username pourshad 201053 mac 201053 bytes_out 183815 201053 bytes_in 98091 201053 station_ip 5.120.219.248 201053 port 47 201053 unique_id port 201053 remote_ip 10.8.1.58 201056 username saeed9658 201056 mac 201056 bytes_out 1308903 201056 bytes_in 16084018 201056 station_ip 5.120.121.202 201056 port 26 201056 unique_id port 201056 remote_ip 10.8.1.194 201061 username barzegar 201061 kill_reason Maximum check online fails reached 201061 mac 201061 bytes_out 0 201061 bytes_in 0 201061 station_ip 5.120.63.25 201061 port 38 201061 unique_id port 201063 username saeed9658 201063 mac 201063 bytes_out 0 201063 bytes_in 0 201063 station_ip 5.120.121.202 201063 port 26 201063 unique_id port 201063 remote_ip 10.8.1.194 201065 username arash 201065 kill_reason Another user logged on this global unique id 201065 mac 201065 bytes_out 0 201065 bytes_in 0 201065 station_ip 37.27.13.229 201065 port 48 201065 unique_id port 201068 username nilufarrajaei 201068 mac 201068 bytes_out 2209018 201068 bytes_in 21549228 201068 station_ip 37.129.160.178 201068 port 22 201068 unique_id port 201068 remote_ip 10.8.0.94 201072 username rashidi4690 201072 kill_reason Another user logged on this global unique id 201072 mac 201072 bytes_out 0 201072 bytes_in 0 201072 station_ip 5.119.111.225 201072 port 42 201072 unique_id port 201072 remote_ip 10.8.1.158 201075 username houshang 201075 mac 201075 bytes_out 1300125 201075 bytes_in 13727716 201075 station_ip 5.120.105.86 201075 port 49 201075 unique_id port 201075 remote_ip 10.8.1.134 201081 username yaghobi 201081 mac 201081 bytes_out 132741 201081 bytes_in 268356 201081 station_ip 37.129.198.220 201081 port 22 201081 unique_id port 201081 remote_ip 10.8.0.174 201084 username saeeddamghani 201084 mac 201084 bytes_out 0 201084 bytes_in 0 201084 station_ip 217.60.218.61 201084 port 49 201084 unique_id port 201084 remote_ip 10.8.1.66 201088 username sekonji0496 201088 mac 201088 bytes_out 0 201088 bytes_in 0 201088 station_ip 83.123.179.83 201088 port 22 201088 unique_id port 201088 remote_ip 10.8.0.66 201094 username saeed9658 201094 mac 201094 bytes_out 0 201094 bytes_in 0 201094 station_ip 5.120.121.202 201094 port 32 201094 unique_id port 201094 remote_ip 10.8.0.218 201095 username sekonji0496 201095 mac 201095 bytes_out 0 201095 bytes_in 0 201095 station_ip 83.123.179.83 201095 port 32 201095 unique_id port 201095 remote_ip 10.8.0.66 201104 username rashidi4690 201104 mac 201104 bytes_out 0 201104 bytes_in 0 201104 station_ip 5.119.111.225 201104 port 42 201104 unique_id port 201107 username saeeddamghani 201107 mac 201107 bytes_out 0 201107 bytes_in 0 201107 station_ip 217.60.218.61 201107 port 29 201107 unique_id port 201107 remote_ip 10.8.0.26 201108 username barzegar8595 201108 mac 201108 bytes_out 0 201108 bytes_in 0 201108 station_ip 89.34.33.13 201108 port 45 201108 unique_id port 201108 remote_ip 10.8.1.50 201109 username jafari 201052 station_ip 5.120.91.37 201052 port 29 201052 unique_id port 201052 remote_ip 10.8.0.14 201054 username barzegar 201054 mac 201054 bytes_out 0 201054 bytes_in 0 201054 station_ip 5.120.91.37 201054 port 29 201054 unique_id port 201055 username pourshad 201055 mac 201055 bytes_out 0 201055 bytes_in 0 201055 station_ip 5.120.219.248 201055 port 47 201055 unique_id port 201055 remote_ip 10.8.1.58 201057 username saeed9658 201057 mac 201057 bytes_out 0 201057 bytes_in 0 201057 station_ip 5.120.121.202 201057 port 26 201057 unique_id port 201057 remote_ip 10.8.1.194 201059 username barzegar8595 201059 mac 201059 bytes_out 0 201059 bytes_in 0 201059 station_ip 5.202.23.228 201059 port 38 201059 unique_id port 201059 remote_ip 10.8.1.50 201064 username barzegar 201064 mac 201064 bytes_out 0 201064 bytes_in 0 201064 station_ip 5.120.63.25 201064 port 29 201064 unique_id port 201064 remote_ip 10.8.0.14 201071 username yarmohamadi7916 201071 mac 201071 bytes_out 0 201071 bytes_in 0 201071 station_ip 5.119.105.234 201071 port 45 201071 unique_id port 201071 remote_ip 10.8.1.154 201074 username saeeddamghani 201074 mac 201074 bytes_out 0 201074 bytes_in 0 201074 station_ip 217.60.218.61 201074 port 51 201074 unique_id port 201074 remote_ip 10.8.1.66 201077 username saeed9658 201077 mac 201077 bytes_out 0 201077 bytes_in 0 201077 station_ip 5.120.121.202 201077 port 49 201077 unique_id port 201077 remote_ip 10.8.1.194 201078 username jafari 201078 mac 201078 bytes_out 0 201078 bytes_in 0 201078 station_ip 89.34.52.120 201078 port 45 201078 unique_id port 201078 remote_ip 10.8.1.126 201082 username yaghobi 201082 mac 201082 bytes_out 0 201082 bytes_in 0 201082 station_ip 37.129.198.220 201082 port 30 201082 unique_id port 201082 remote_ip 10.8.0.174 201085 username farhad3 201085 mac 201085 bytes_out 207135 201085 bytes_in 823806 201085 station_ip 5.119.251.92 201085 port 45 201085 unique_id port 201085 remote_ip 10.8.1.38 201086 username sekonji0496 201086 mac 201086 bytes_out 0 201086 bytes_in 0 201086 station_ip 83.123.179.83 201086 port 22 201086 unique_id port 201086 remote_ip 10.8.0.66 201090 username malekpoir 201090 kill_reason Another user logged on this global unique id 201090 mac 201090 bytes_out 0 201090 bytes_in 0 201090 station_ip 5.120.117.55 201090 port 31 201090 unique_id port 201090 remote_ip 10.8.0.166 201092 username pourshad 201092 mac 201092 bytes_out 49665 201092 bytes_in 398132 201092 station_ip 5.120.219.248 201092 port 47 201092 unique_id port 201092 remote_ip 10.8.1.58 201093 username saeed9658 201093 mac 201093 bytes_out 0 201093 bytes_in 0 201093 station_ip 5.120.121.202 201093 port 32 201093 unique_id port 201093 remote_ip 10.8.0.218 201096 username farhad3 201096 mac 201096 bytes_out 0 201096 bytes_in 0 201096 station_ip 5.119.251.92 201096 port 45 201096 unique_id port 201096 remote_ip 10.8.1.38 201098 username pourshad 201098 mac 201098 bytes_out 0 201098 bytes_in 0 201098 station_ip 5.120.219.248 201098 port 47 201098 unique_id port 201098 remote_ip 10.8.1.58 201100 username barzegar8595 201100 mac 201100 bytes_out 0 201100 bytes_in 0 201100 station_ip 89.34.33.13 201100 port 29 201100 unique_id port 201100 remote_ip 10.8.0.82 201105 username milan 201105 mac 201105 bytes_out 0 201105 bytes_in 0 201105 station_ip 5.120.38.92 201105 port 33 201105 unique_id port 201110 username esmaeilkazemi 201110 mac 201060 station_ip 5.120.63.25 201060 port 29 201060 unique_id port 201060 remote_ip 10.8.0.14 201062 username hatami 201062 mac 201062 bytes_out 641625 201062 bytes_in 2766867 201062 station_ip 37.27.24.189 201062 port 16 201062 unique_id port 201062 remote_ip 10.8.1.26 201066 username pourshad 201066 mac 201066 bytes_out 526738 201066 bytes_in 2745356 201066 station_ip 5.120.219.248 201066 port 30 201066 unique_id port 201066 remote_ip 10.8.0.54 201067 username arash 201067 mac 201067 bytes_out 0 201067 bytes_in 0 201067 station_ip 37.27.13.229 201067 port 48 201067 unique_id port 201069 username barzegar 201069 mac 201069 bytes_out 0 201069 bytes_in 0 201069 station_ip 5.120.44.59 201069 port 26 201069 unique_id port 201069 remote_ip 10.8.1.6 201070 username saeeddamghani 201070 mac 201070 bytes_out 0 201070 bytes_in 0 201070 station_ip 217.60.218.61 201070 port 32 201070 unique_id port 201070 remote_ip 10.8.0.26 201073 username barzegar 201073 mac 201073 bytes_out 0 201073 bytes_in 0 201073 station_ip 5.120.44.59 201073 port 48 201073 unique_id port 201073 remote_ip 10.8.1.6 201076 username saeed9658 201076 mac 201076 bytes_out 0 201076 bytes_in 0 201076 station_ip 5.120.121.202 201076 port 50 201076 unique_id port 201076 remote_ip 10.8.1.194 201079 username farhad3 201079 mac 201079 bytes_out 3502440 201079 bytes_in 33476258 201079 station_ip 5.119.251.92 201079 port 26 201079 unique_id port 201079 remote_ip 10.8.1.38 201080 username pourshad 201080 kill_reason Another user logged on this global unique id 201080 mac 201080 bytes_out 0 201080 bytes_in 0 201080 station_ip 5.120.219.248 201080 port 47 201080 unique_id port 201080 remote_ip 10.8.1.58 201083 username saeed9658 201083 mac 201083 bytes_out 0 201083 bytes_in 0 201083 station_ip 5.120.121.202 201083 port 50 201083 unique_id port 201083 remote_ip 10.8.1.194 201087 username barzegar 201087 mac 201087 bytes_out 0 201087 bytes_in 0 201087 station_ip 5.120.44.59 201087 port 48 201087 unique_id port 201087 remote_ip 10.8.1.6 201089 username pourshad 201089 mac 201089 bytes_out 0 201089 bytes_in 0 201089 station_ip 5.120.219.248 201089 port 47 201089 unique_id port 201091 username saeed9658 201091 mac 201091 bytes_out 0 201091 bytes_in 0 201091 station_ip 5.120.121.202 201091 port 49 201091 unique_id port 201091 remote_ip 10.8.1.194 201097 username saeeddamghani 201097 mac 201097 bytes_out 0 201097 bytes_in 0 201097 station_ip 217.60.218.61 201097 port 34 201097 unique_id port 201097 remote_ip 10.8.0.26 201099 username saeed9658 201099 mac 201099 bytes_out 0 201099 bytes_in 0 201099 station_ip 5.120.121.202 201099 port 45 201099 unique_id port 201099 remote_ip 10.8.1.194 201101 username mohammadjavad 201101 mac 201101 bytes_out 0 201101 bytes_in 0 201101 station_ip 83.123.46.31 201101 port 22 201101 unique_id port 201101 remote_ip 10.8.0.58 201102 username kalantary6037 201102 mac 201102 bytes_out 876945 201102 bytes_in 3056587 201102 station_ip 37.129.162.213 201102 port 34 201102 unique_id port 201102 remote_ip 10.8.0.10 201103 username saeeddamghani 201103 mac 201103 bytes_out 0 201103 bytes_in 0 201103 station_ip 217.60.218.61 201103 port 29 201103 unique_id port 201103 remote_ip 10.8.0.26 201106 username saeed9658 201106 mac 201106 bytes_out 0 201106 bytes_in 0 201106 station_ip 5.120.121.202 201106 port 47 201106 unique_id port 201106 remote_ip 10.8.1.194 201111 username godarzi 201109 kill_reason Another user logged on this global unique id 201109 mac 201109 bytes_out 0 201109 bytes_in 0 201109 station_ip 89.34.52.120 201109 port 26 201109 unique_id port 201109 remote_ip 10.8.1.126 201112 username yaghobi 201112 mac 201112 bytes_out 0 201112 bytes_in 0 201112 station_ip 37.129.232.188 201112 port 22 201112 unique_id port 201112 remote_ip 10.8.0.174 201119 username saeeddamghani 201119 mac 201119 bytes_out 0 201119 bytes_in 0 201119 station_ip 217.60.218.61 201119 port 29 201119 unique_id port 201119 remote_ip 10.8.0.26 201122 username sekonji0496 201122 mac 201122 bytes_out 0 201122 bytes_in 0 201122 station_ip 83.123.179.83 201122 port 32 201122 unique_id port 201122 remote_ip 10.8.0.66 201124 username esmaeilkazemi 201124 mac 201124 bytes_out 0 201124 bytes_in 0 201124 station_ip 83.123.26.64 201124 port 29 201124 unique_id port 201124 remote_ip 10.8.0.86 201126 username esmaeilkazemi 201126 mac 201126 bytes_out 0 201126 bytes_in 0 201126 station_ip 83.123.26.64 201126 port 33 201126 unique_id port 201126 remote_ip 10.8.0.86 201134 username esmaeilkazemi 201134 mac 201134 bytes_out 0 201134 bytes_in 0 201134 station_ip 83.123.26.64 201134 port 32 201134 unique_id port 201134 remote_ip 10.8.0.86 201135 username barzegar 201135 mac 201135 bytes_out 0 201135 bytes_in 0 201135 station_ip 5.120.44.59 201135 port 42 201135 unique_id port 201135 remote_ip 10.8.1.6 201138 username farhad3 201138 mac 201138 bytes_out 0 201138 bytes_in 0 201138 station_ip 5.119.251.92 201138 port 37 201138 unique_id port 201138 remote_ip 10.8.1.38 201144 username esmaeilkazemi 201144 mac 201144 bytes_out 0 201144 bytes_in 0 201144 station_ip 83.123.26.64 201144 port 29 201144 unique_id port 201144 remote_ip 10.8.0.86 201145 username esmaeilkazemi 201145 mac 201145 bytes_out 0 201145 bytes_in 0 201145 station_ip 83.123.26.64 201145 port 32 201145 unique_id port 201145 remote_ip 10.8.0.86 201147 username pourshad 201147 mac 201147 bytes_out 3286 201147 bytes_in 6680 201147 station_ip 5.120.219.248 201147 port 26 201147 unique_id port 201147 remote_ip 10.8.1.58 201151 username barzegar 201151 mac 201151 bytes_out 0 201151 bytes_in 0 201151 station_ip 5.120.44.59 201151 port 32 201151 unique_id port 201151 remote_ip 10.8.0.14 201155 username farhad3 201155 mac 201155 bytes_out 0 201155 bytes_in 0 201155 station_ip 5.119.251.92 201155 port 37 201155 unique_id port 201155 remote_ip 10.8.1.38 201156 username milan 201156 mac 201156 bytes_out 47348 201156 bytes_in 79696 201156 station_ip 5.120.38.92 201156 port 47 201156 unique_id port 201156 remote_ip 10.8.1.182 201157 username barzegar 201157 mac 201157 bytes_out 0 201157 bytes_in 0 201157 station_ip 5.120.44.59 201157 port 37 201157 unique_id port 201157 remote_ip 10.8.1.6 201158 username barzegar 201158 mac 201158 bytes_out 0 201158 bytes_in 0 201158 station_ip 5.120.44.59 201158 port 45 201158 unique_id port 201158 remote_ip 10.8.1.6 201165 username hatami 201165 mac 201165 bytes_out 0 201165 bytes_in 0 201165 station_ip 37.27.40.204 201165 port 16 201165 unique_id port 201165 remote_ip 10.8.1.26 201166 username motamedi9772 201166 mac 201166 bytes_out 0 201166 bytes_in 0 201166 station_ip 83.123.190.205 201166 port 35 201166 unique_id port 201175 username malekpoir 201175 kill_reason Another user logged on this global unique id 201175 mac 201175 bytes_out 0 201175 bytes_in 0 201175 station_ip 5.120.117.55 201110 bytes_out 0 201110 bytes_in 0 201110 station_ip 83.123.26.64 201110 port 33 201110 unique_id port 201110 remote_ip 10.8.0.86 201113 username barzegar 201113 kill_reason Another user logged on this global unique id 201113 mac 201113 bytes_out 0 201113 bytes_in 0 201113 station_ip 5.120.44.59 201113 port 48 201113 unique_id port 201113 remote_ip 10.8.1.6 201116 username esmaeilkazemi 201116 mac 201116 bytes_out 0 201116 bytes_in 0 201116 station_ip 83.123.26.64 201116 port 34 201116 unique_id port 201116 remote_ip 10.8.0.86 201118 username mohammadjavad 201118 mac 201118 bytes_out 0 201118 bytes_in 0 201118 station_ip 83.123.46.31 201118 port 29 201118 unique_id port 201118 remote_ip 10.8.0.58 201123 username esmaeilkazemi 201123 mac 201123 bytes_out 0 201123 bytes_in 0 201123 station_ip 83.123.26.64 201123 port 33 201123 unique_id port 201123 remote_ip 10.8.0.86 201125 username esmaeilkazemi 201125 mac 201125 bytes_out 0 201125 bytes_in 0 201125 station_ip 83.123.26.64 201125 port 32 201125 unique_id port 201125 remote_ip 10.8.0.86 201128 username esmaeilkazemi 201128 mac 201128 bytes_out 0 201128 bytes_in 0 201128 station_ip 83.123.26.64 201128 port 33 201128 unique_id port 201128 remote_ip 10.8.0.86 201129 username barzegar 201129 mac 201129 bytes_out 0 201129 bytes_in 0 201129 station_ip 5.120.44.59 201129 port 48 201129 unique_id port 201131 username motamedi9772 201131 kill_reason Another user logged on this global unique id 201131 mac 201131 bytes_out 0 201131 bytes_in 0 201131 station_ip 83.123.190.205 201131 port 35 201131 unique_id port 201131 remote_ip 10.8.0.62 201132 username esmaeilkazemi 201132 mac 201132 bytes_out 0 201132 bytes_in 0 201132 station_ip 83.123.26.64 201132 port 32 201132 unique_id port 201132 remote_ip 10.8.0.86 201133 username esmaeilkazemi 201133 mac 201133 bytes_out 0 201133 bytes_in 0 201133 station_ip 83.123.26.64 201133 port 33 201133 unique_id port 201133 remote_ip 10.8.0.86 201139 username pourshad 201139 mac 201139 bytes_out 16939931 201139 bytes_in 24061774 201139 station_ip 5.120.219.248 201139 port 49 201139 unique_id port 201139 remote_ip 10.8.1.58 201142 username jafari 201142 mac 201142 bytes_out 0 201142 bytes_in 0 201142 station_ip 89.34.52.120 201142 port 26 201142 unique_id port 201146 username majidsarmast 201146 mac 201146 bytes_out 5239020 201146 bytes_in 41618080 201146 station_ip 83.123.240.59 201146 port 30 201146 unique_id port 201146 remote_ip 10.8.0.6 201148 username barzegar 201148 mac 201148 bytes_out 0 201148 bytes_in 0 201148 station_ip 5.120.44.59 201148 port 45 201148 unique_id port 201148 remote_ip 10.8.1.6 201153 username pourshad 201153 mac 201153 bytes_out 536032 201153 bytes_in 5634275 201153 station_ip 5.120.219.248 201153 port 26 201153 unique_id port 201153 remote_ip 10.8.1.58 201159 username milan 201159 kill_reason Maximum check online fails reached 201159 mac 201159 bytes_out 0 201159 bytes_in 0 201159 station_ip 5.120.38.92 201159 port 37 201159 unique_id port 201162 username sekonji0496 201162 mac 201162 bytes_out 0 201162 bytes_in 0 201162 station_ip 113.203.123.254 201162 port 47 201162 unique_id port 201162 remote_ip 10.8.1.98 201167 username kalantary6037 201167 mac 201167 bytes_out 224698 201167 bytes_in 328741 201167 station_ip 37.129.198.25 201167 port 30 201167 unique_id port 201167 remote_ip 10.8.0.10 201169 username barzegar 201169 mac 201169 bytes_out 0 201169 bytes_in 0 201169 station_ip 5.120.44.59 201111 mac 201111 bytes_out 0 201111 bytes_in 0 201111 station_ip 5.202.2.157 201111 port 37 201111 unique_id port 201114 username alipour1506 201114 mac 201114 bytes_out 728351 201114 bytes_in 4633741 201114 station_ip 83.123.56.58 201114 port 46 201114 unique_id port 201114 remote_ip 10.8.1.86 201115 username rashidi4690 201115 mac 201115 bytes_out 0 201115 bytes_in 0 201115 station_ip 5.119.111.225 201115 port 42 201115 unique_id port 201115 remote_ip 10.8.1.158 201117 username esmaeilkazemi 201117 mac 201117 bytes_out 0 201117 bytes_in 0 201117 station_ip 83.123.26.64 201117 port 33 201117 unique_id port 201117 remote_ip 10.8.0.86 201120 username esmaeilkazemi 201120 mac 201120 bytes_out 0 201120 bytes_in 0 201120 station_ip 83.123.26.64 201120 port 34 201120 unique_id port 201120 remote_ip 10.8.0.86 201121 username esmaeilkazemi 201121 mac 201121 bytes_out 0 201121 bytes_in 0 201121 station_ip 83.123.26.64 201121 port 29 201121 unique_id port 201121 remote_ip 10.8.0.86 201127 username esmaeilkazemi 201127 mac 201127 bytes_out 0 201127 bytes_in 0 201127 station_ip 83.123.26.64 201127 port 32 201127 unique_id port 201127 remote_ip 10.8.0.86 201130 username jafari 201130 kill_reason Another user logged on this global unique id 201130 mac 201130 bytes_out 0 201130 bytes_in 0 201130 station_ip 89.34.52.120 201130 port 26 201130 unique_id port 201136 username esmaeilkazemi 201136 mac 201136 bytes_out 0 201136 bytes_in 0 201136 station_ip 83.123.26.64 201136 port 33 201136 unique_id port 201136 remote_ip 10.8.0.86 201137 username saeeddamghani 201137 mac 201137 bytes_out 0 201137 bytes_in 0 201137 station_ip 217.60.218.61 201137 port 42 201137 unique_id port 201137 remote_ip 10.8.1.66 201140 username sekonji0496 201140 mac 201140 bytes_out 733179 201140 bytes_in 6936223 201140 station_ip 83.123.179.83 201140 port 29 201140 unique_id port 201140 remote_ip 10.8.0.66 201141 username esmaeilkazemi 201141 mac 201141 bytes_out 0 201141 bytes_in 0 201141 station_ip 83.123.26.64 201141 port 29 201141 unique_id port 201141 remote_ip 10.8.0.86 201143 username esmaeilkazemi 201143 mac 201143 bytes_out 0 201143 bytes_in 0 201143 station_ip 83.123.26.64 201143 port 32 201143 unique_id port 201143 remote_ip 10.8.0.86 201149 username saeeddamghani 201149 mac 201149 bytes_out 0 201149 bytes_in 0 201149 station_ip 217.60.218.61 201149 port 42 201149 unique_id port 201149 remote_ip 10.8.1.66 201150 username motamedi9772 201150 kill_reason Another user logged on this global unique id 201150 mac 201150 bytes_out 0 201150 bytes_in 0 201150 station_ip 83.123.190.205 201150 port 35 201150 unique_id port 201152 username barzegar 201152 mac 201152 bytes_out 2959 201152 bytes_in 5352 201152 station_ip 5.120.44.59 201152 port 45 201152 unique_id port 201152 remote_ip 10.8.1.6 201154 username barzegar 201154 mac 201154 bytes_out 0 201154 bytes_in 0 201154 station_ip 5.120.44.59 201154 port 45 201154 unique_id port 201154 remote_ip 10.8.1.6 201160 username pourshad 201160 mac 201160 bytes_out 53916 201160 bytes_in 80613 201160 station_ip 5.120.219.248 201160 port 32 201160 unique_id port 201160 remote_ip 10.8.0.54 201161 username sekonji0496 201161 mac 201161 bytes_out 311825 201161 bytes_in 2558319 201161 station_ip 113.203.123.254 201161 port 30 201161 unique_id port 201161 remote_ip 10.8.0.66 201163 username sekonji0496 201163 mac 201163 bytes_out 0 201163 bytes_in 0 201163 station_ip 113.203.123.254 201163 port 47 201163 unique_id port 201163 remote_ip 10.8.1.98 201164 username sekonji0496 201164 mac 201164 bytes_out 0 201164 bytes_in 0 201164 station_ip 113.203.123.254 201164 port 47 201164 unique_id port 201164 remote_ip 10.8.1.98 201168 username rashidi4690 201168 mac 201168 bytes_out 440916 201168 bytes_in 3429008 201168 station_ip 5.120.109.91 201168 port 48 201168 unique_id port 201168 remote_ip 10.8.1.158 201170 username dortaj3792 201170 mac 201170 bytes_out 598172 201170 bytes_in 3651432 201170 station_ip 5.119.114.199 201170 port 29 201170 unique_id port 201170 remote_ip 10.8.0.30 201173 username motamedi9772 201173 mac 201173 bytes_out 0 201173 bytes_in 0 201173 station_ip 83.123.190.205 201173 port 34 201173 unique_id port 201173 remote_ip 10.8.0.62 201176 username barzegar 201176 mac 201176 bytes_out 0 201176 bytes_in 0 201176 station_ip 5.120.44.59 201176 port 16 201176 unique_id port 201176 remote_ip 10.8.1.6 201183 username pourshad 201183 mac 201183 bytes_out 0 201183 bytes_in 0 201183 station_ip 5.120.219.248 201183 port 26 201183 unique_id port 201183 remote_ip 10.8.1.58 201186 username barzegar 201186 mac 201186 bytes_out 0 201186 bytes_in 0 201186 station_ip 5.120.44.59 201186 port 48 201186 unique_id port 201186 remote_ip 10.8.1.6 201188 username iranmanesh4443 201188 mac 201188 bytes_out 19272 201188 bytes_in 39052 201188 station_ip 5.119.177.251 201188 port 48 201188 unique_id port 201188 remote_ip 10.8.1.122 201192 username pourshad 201192 mac 201192 bytes_out 1634097 201192 bytes_in 121426 201192 station_ip 5.120.219.248 201192 port 48 201192 unique_id port 201192 remote_ip 10.8.1.58 201197 username yaghobi 201197 kill_reason Another user logged on this global unique id 201197 mac 201197 bytes_out 0 201197 bytes_in 0 201197 station_ip 37.129.173.132 201197 port 30 201197 unique_id port 201200 username hatami 201200 mac 201200 bytes_out 720715 201200 bytes_in 5697531 201200 station_ip 37.27.40.204 201200 port 47 201200 unique_id port 201200 remote_ip 10.8.1.26 201204 username barzegar 201204 mac 201204 bytes_out 0 201204 bytes_in 0 201204 station_ip 5.120.44.59 201204 port 16 201204 unique_id port 201204 remote_ip 10.8.1.6 201207 username alipour1506 201207 mac 201207 bytes_out 1714727 201207 bytes_in 17132692 201207 station_ip 83.123.56.58 201207 port 22 201207 unique_id port 201207 remote_ip 10.8.0.134 201210 username mohammadjavad 201210 mac 201210 bytes_out 0 201210 bytes_in 0 201210 station_ip 37.129.246.40 201210 port 35 201210 unique_id port 201210 remote_ip 10.8.0.58 201215 username barzegar 201215 kill_reason Maximum check online fails reached 201215 mac 201215 bytes_out 0 201215 bytes_in 0 201215 station_ip 5.120.44.59 201215 port 16 201215 unique_id port 201218 username malekpoir 201218 mac 201218 bytes_out 103237 201218 bytes_in 344596 201218 station_ip 5.120.117.55 201218 port 46 201218 unique_id port 201218 remote_ip 10.8.1.70 201220 username houshang 201220 mac 201220 bytes_out 373643 201220 bytes_in 3616366 201220 station_ip 5.119.192.187 201220 port 48 201220 unique_id port 201220 remote_ip 10.8.1.134 201223 username pourshad 201223 mac 201223 bytes_out 34752822 201223 bytes_in 2826206 201223 station_ip 5.120.219.248 201223 port 36 201223 unique_id port 201223 remote_ip 10.8.0.54 201226 username pourshad 201226 mac 201226 bytes_out 19138 201226 bytes_in 47955 201226 station_ip 5.120.219.248 201226 port 31 201226 unique_id port 201169 port 48 201169 unique_id port 201169 remote_ip 10.8.1.6 201171 username pourshad 201171 mac 201171 bytes_out 0 201171 bytes_in 0 201171 station_ip 5.120.219.248 201171 port 45 201171 unique_id port 201171 remote_ip 10.8.1.58 201172 username sekonji0496 201172 mac 201172 bytes_out 0 201172 bytes_in 0 201172 station_ip 113.203.123.254 201172 port 16 201172 unique_id port 201172 remote_ip 10.8.1.98 201174 username hadibarzegar 201174 kill_reason Another user logged on this global unique id 201174 mac 201174 bytes_out 0 201174 bytes_in 0 201174 station_ip 5.120.115.115 201174 port 32 201174 unique_id port 201174 remote_ip 10.8.0.170 201177 username farhad3 201177 mac 201177 bytes_out 3447722 201177 bytes_in 38800181 201177 station_ip 5.119.251.92 201177 port 26 201177 unique_id port 201177 remote_ip 10.8.1.38 201179 username yaghobi 201179 kill_reason Another user logged on this global unique id 201179 mac 201179 bytes_out 0 201179 bytes_in 0 201179 station_ip 37.129.173.132 201179 port 33 201179 unique_id port 201179 remote_ip 10.8.0.174 201184 username yaghobi 201184 mac 201184 bytes_out 0 201184 bytes_in 0 201184 station_ip 37.129.173.132 201184 port 29 201184 unique_id port 201184 remote_ip 10.8.0.174 201185 username malekpoir 201185 mac 201185 bytes_out 0 201185 bytes_in 0 201185 station_ip 5.120.117.55 201185 port 31 201185 unique_id port 201187 username pourshad 201187 mac 201187 bytes_out 0 201187 bytes_in 0 201187 station_ip 5.120.219.248 201187 port 26 201187 unique_id port 201187 remote_ip 10.8.1.58 201189 username aminvpns6 201189 mac 201189 bytes_out 0 201189 bytes_in 0 201189 station_ip 5.119.60.223 201189 port 45 201189 unique_id port 201189 remote_ip 10.8.1.62 201190 username iranmanesh4443 201190 mac 201190 bytes_out 43824 201190 bytes_in 35035 201190 station_ip 5.119.177.251 201190 port 26 201190 unique_id port 201190 remote_ip 10.8.1.122 201191 username yaghobi 201191 kill_reason Another user logged on this global unique id 201191 mac 201191 bytes_out 0 201191 bytes_in 0 201191 station_ip 37.129.173.132 201191 port 30 201191 unique_id port 201191 remote_ip 10.8.0.174 201195 username hadibarzegar 201195 kill_reason Another user logged on this global unique id 201195 mac 201195 bytes_out 0 201195 bytes_in 0 201195 station_ip 5.120.115.115 201195 port 32 201195 unique_id port 201198 username pourshad 201198 mac 201198 bytes_out 0 201198 bytes_in 0 201198 station_ip 5.120.219.248 201198 port 45 201198 unique_id port 201198 remote_ip 10.8.1.58 201202 username barzegar 201202 mac 201202 bytes_out 0 201202 bytes_in 0 201202 station_ip 5.120.44.59 201202 port 50 201202 unique_id port 201202 remote_ip 10.8.1.6 201206 username kalantary6037 201206 mac 201206 bytes_out 358354 201206 bytes_in 3482341 201206 station_ip 37.129.246.221 201206 port 29 201206 unique_id port 201206 remote_ip 10.8.0.10 201209 username saeed9658 201209 mac 201209 bytes_out 1180502 201209 bytes_in 8948813 201209 station_ip 5.120.121.202 201209 port 48 201209 unique_id port 201209 remote_ip 10.8.1.194 201212 username barzegar 201212 mac 201212 bytes_out 2217 201212 bytes_in 4692 201212 station_ip 5.120.44.59 201212 port 16 201212 unique_id port 201212 remote_ip 10.8.1.6 201219 username motamedi9772 201219 mac 201219 bytes_out 4268506 201219 bytes_in 38125756 201219 station_ip 83.122.199.232 201219 port 34 201219 unique_id port 201219 remote_ip 10.8.0.62 201222 username barzegar 201222 mac 201222 bytes_out 0 201222 bytes_in 0 201175 port 31 201175 unique_id port 201178 username pourshad 201178 mac 201178 bytes_out 0 201178 bytes_in 0 201178 station_ip 5.120.219.248 201178 port 45 201178 unique_id port 201178 remote_ip 10.8.1.58 201180 username yaghobi 201180 mac 201180 bytes_out 0 201180 bytes_in 0 201180 station_ip 37.129.173.132 201180 port 33 201180 unique_id port 201181 username pourshad 201181 mac 201181 bytes_out 0 201181 bytes_in 0 201181 station_ip 5.120.219.248 201181 port 26 201181 unique_id port 201181 remote_ip 10.8.1.58 201182 username hadibarzegar 201182 kill_reason Another user logged on this global unique id 201182 mac 201182 bytes_out 0 201182 bytes_in 0 201182 station_ip 5.120.115.115 201182 port 32 201182 unique_id port 201193 username kalantary6037 201193 mac 201193 bytes_out 880721 201193 bytes_in 9052860 201193 station_ip 37.129.246.221 201193 port 29 201193 unique_id port 201193 remote_ip 10.8.0.10 201194 username barzegar 201194 mac 201194 bytes_out 0 201194 bytes_in 0 201194 station_ip 5.120.44.59 201194 port 45 201194 unique_id port 201194 remote_ip 10.8.1.6 201196 username farhad3 201196 kill_reason Another user logged on this global unique id 201196 mac 201196 bytes_out 0 201196 bytes_in 0 201196 station_ip 5.119.251.92 201196 port 16 201196 unique_id port 201196 remote_ip 10.8.1.38 201199 username kalantary6037 201199 mac 201199 bytes_out 0 201199 bytes_in 0 201199 station_ip 37.129.246.221 201199 port 29 201199 unique_id port 201199 remote_ip 10.8.0.10 201201 username farhad3 201201 mac 201201 bytes_out 0 201201 bytes_in 0 201201 station_ip 5.119.251.92 201201 port 16 201201 unique_id port 201203 username yaghobi 201203 kill_reason Another user logged on this global unique id 201203 mac 201203 bytes_out 0 201203 bytes_in 0 201203 station_ip 37.129.173.132 201203 port 30 201203 unique_id port 201205 username iranmanesh4443 201205 mac 201205 bytes_out 0 201205 bytes_in 0 201205 station_ip 5.119.177.251 201205 port 31 201205 unique_id port 201205 remote_ip 10.8.0.74 201208 username milan 201208 mac 201208 bytes_out 346643 201208 bytes_in 475647 201208 station_ip 5.120.38.92 201208 port 46 201208 unique_id port 201208 remote_ip 10.8.1.182 201211 username hadibarzegar 201211 kill_reason Another user logged on this global unique id 201211 mac 201211 bytes_out 0 201211 bytes_in 0 201211 station_ip 5.120.115.115 201211 port 32 201211 unique_id port 201213 username kharazmi2920 201213 mac 201213 bytes_out 0 201213 bytes_in 0 201213 station_ip 83.123.60.195 201213 port 33 201213 unique_id port 201213 remote_ip 10.8.0.34 201214 username malekpoir 201214 mac 201214 bytes_out 0 201214 bytes_in 0 201214 station_ip 5.120.117.55 201214 port 49 201214 unique_id port 201214 remote_ip 10.8.1.70 201216 username barzegar 201216 mac 201216 bytes_out 0 201216 bytes_in 0 201216 station_ip 5.120.44.59 201216 port 48 201216 unique_id port 201216 remote_ip 10.8.1.6 201217 username yaghobi 201217 kill_reason Another user logged on this global unique id 201217 mac 201217 bytes_out 0 201217 bytes_in 0 201217 station_ip 37.129.173.132 201217 port 30 201217 unique_id port 201221 username barzegar 201221 mac 201221 bytes_out 0 201221 bytes_in 0 201221 station_ip 5.120.44.59 201221 port 46 201221 unique_id port 201221 remote_ip 10.8.1.6 201224 username houshang 201224 mac 201224 bytes_out 0 201224 bytes_in 0 201224 station_ip 5.119.192.187 201224 port 48 201224 unique_id port 201224 remote_ip 10.8.1.134 201227 username mohammadjavad 201222 station_ip 5.120.44.59 201222 port 31 201222 unique_id port 201222 remote_ip 10.8.0.14 201225 username yaghobi 201225 mac 201225 bytes_out 0 201225 bytes_in 0 201225 station_ip 37.129.173.132 201225 port 30 201225 unique_id port 201228 username mosi 201228 kill_reason Another user logged on this global unique id 201228 mac 201228 bytes_out 0 201228 bytes_in 0 201228 station_ip 151.235.106.19 201228 port 26 201228 unique_id port 201228 remote_ip 10.8.1.118 201229 username malekpoir 201229 mac 201229 bytes_out 0 201229 bytes_in 0 201229 station_ip 5.120.117.55 201229 port 49 201229 unique_id port 201229 remote_ip 10.8.1.70 201230 username barzegar 201230 mac 201230 bytes_out 0 201230 bytes_in 0 201230 station_ip 5.120.44.59 201230 port 49 201230 unique_id port 201230 remote_ip 10.8.1.6 201235 username barzegar 201235 mac 201235 bytes_out 0 201235 bytes_in 0 201235 station_ip 5.120.44.59 201235 port 49 201235 unique_id port 201235 remote_ip 10.8.1.6 201237 username kharazmi2920 201237 mac 201237 bytes_out 449785 201237 bytes_in 1895376 201237 station_ip 83.123.60.195 201237 port 31 201237 unique_id port 201237 remote_ip 10.8.0.34 201238 username motamedi9772 201238 mac 201238 bytes_out 0 201238 bytes_in 0 201238 station_ip 83.122.199.232 201238 port 29 201238 unique_id port 201238 remote_ip 10.8.0.62 201240 username motamedi9772 201240 mac 201240 bytes_out 0 201240 bytes_in 0 201240 station_ip 83.122.199.232 201240 port 52 201240 unique_id port 201240 remote_ip 10.8.1.198 201245 username pourshad 201245 mac 201245 bytes_out 364975 201245 bytes_in 1675792 201245 station_ip 5.120.219.248 201245 port 48 201245 unique_id port 201245 remote_ip 10.8.1.58 201247 username motamedi9772 201247 mac 201247 bytes_out 0 201247 bytes_in 0 201247 station_ip 83.122.199.232 201247 port 31 201247 unique_id port 201247 remote_ip 10.8.0.62 201249 username motamedi9772 201249 mac 201249 bytes_out 0 201249 bytes_in 0 201249 station_ip 83.122.199.232 201249 port 31 201249 unique_id port 201249 remote_ip 10.8.0.62 201258 username barzegar 201258 mac 201258 bytes_out 0 201258 bytes_in 0 201258 station_ip 5.120.44.59 201258 port 53 201258 unique_id port 201258 remote_ip 10.8.1.6 201263 username hadibarzegar 201263 kill_reason Another user logged on this global unique id 201263 mac 201263 bytes_out 0 201263 bytes_in 0 201263 station_ip 5.120.115.115 201263 port 32 201263 unique_id port 201267 username barzegar 201267 mac 201267 bytes_out 33129 201267 bytes_in 56891 201267 station_ip 5.120.44.59 201267 port 52 201267 unique_id port 201267 remote_ip 10.8.1.6 201270 username barzegar 201270 mac 201270 bytes_out 0 201270 bytes_in 0 201270 station_ip 5.120.44.59 201270 port 48 201270 unique_id port 201270 remote_ip 10.8.1.6 201274 username barzegar 201274 mac 201274 bytes_out 0 201274 bytes_in 0 201274 station_ip 5.120.44.59 201274 port 31 201274 unique_id port 201274 remote_ip 10.8.0.14 201280 username meysam 201280 mac 201280 bytes_out 866567 201280 bytes_in 19932051 201280 station_ip 188.159.254.35 201280 port 52 201280 unique_id port 201280 remote_ip 10.8.1.30 201288 username hadibarzegar 201288 kill_reason Another user logged on this global unique id 201288 mac 201288 bytes_out 0 201288 bytes_in 0 201288 station_ip 5.120.115.115 201288 port 32 201288 unique_id port 201294 username hadibarzegar 201294 kill_reason Another user logged on this global unique id 201294 mac 201294 bytes_out 0 201294 bytes_in 0 201294 station_ip 5.120.115.115 201226 remote_ip 10.8.0.54 201239 username mohammadjavad 201239 mac 201239 bytes_out 0 201239 bytes_in 0 201239 station_ip 37.129.73.46 201239 port 30 201239 unique_id port 201239 remote_ip 10.8.0.58 201248 username charkhandaz3496 201248 kill_reason Another user logged on this global unique id 201248 mac 201248 bytes_out 0 201248 bytes_in 0 201248 station_ip 5.119.142.145 201248 port 35 201248 unique_id port 201248 remote_ip 10.8.0.178 201250 username hadibarzegar 201250 kill_reason Another user logged on this global unique id 201250 mac 201250 bytes_out 0 201250 bytes_in 0 201250 station_ip 5.120.115.115 201250 port 32 201250 unique_id port 201251 username rezaei 201251 kill_reason Another user logged on this global unique id 201251 mac 201251 bytes_out 0 201251 bytes_in 0 201251 station_ip 5.119.163.137 201251 port 42 201251 unique_id port 201251 remote_ip 10.8.1.174 201252 username rezaei 201252 mac 201252 bytes_out 0 201252 bytes_in 0 201252 station_ip 5.119.163.137 201252 port 42 201252 unique_id port 201255 username motamedi9772 201255 mac 201255 bytes_out 0 201255 bytes_in 0 201255 station_ip 83.122.199.232 201255 port 42 201255 unique_id port 201255 remote_ip 10.8.1.198 201256 username hashtadani5 201256 mac 201256 bytes_out 0 201256 bytes_in 0 201256 station_ip 83.122.49.242 201256 port 30 201256 unique_id port 201256 remote_ip 10.8.0.150 201257 username motamedi9772 201257 mac 201257 bytes_out 0 201257 bytes_in 0 201257 station_ip 83.122.199.232 201257 port 31 201257 unique_id port 201257 remote_ip 10.8.0.62 201259 username motamedi9772 201259 mac 201259 bytes_out 0 201259 bytes_in 0 201259 station_ip 83.122.199.232 201259 port 30 201259 unique_id port 201259 remote_ip 10.8.0.62 201261 username kharazmi2920 201261 mac 201261 bytes_out 0 201261 bytes_in 0 201261 station_ip 83.123.60.195 201261 port 29 201261 unique_id port 201261 remote_ip 10.8.0.34 201265 username charkhandaz3496 201265 mac 201265 bytes_out 0 201265 bytes_in 0 201265 station_ip 5.119.142.145 201265 port 35 201265 unique_id port 201266 username farhad3 201266 kill_reason Another user logged on this global unique id 201266 mac 201266 bytes_out 0 201266 bytes_in 0 201266 station_ip 5.119.251.92 201266 port 50 201266 unique_id port 201266 remote_ip 10.8.1.38 201271 username hamid.e 201271 unique_id port 201271 terminate_cause Lost-Carrier 201271 bytes_out 1244381 201271 bytes_in 24308270 201271 station_ip 151.238.226.225 201271 port 15729789 201271 nas_port_type Virtual 201271 remote_ip 5.5.5.255 201277 username kalantary6037 201277 mac 201277 bytes_out 0 201277 bytes_in 0 201277 station_ip 37.129.246.221 201277 port 30 201277 unique_id port 201277 remote_ip 10.8.0.10 201278 username hadibarzegar 201278 kill_reason Another user logged on this global unique id 201278 mac 201278 bytes_out 0 201278 bytes_in 0 201278 station_ip 5.120.115.115 201278 port 32 201278 unique_id port 201282 username kalantary6037 201282 mac 201282 bytes_out 407858 201282 bytes_in 4936772 201282 station_ip 37.129.246.221 201282 port 30 201282 unique_id port 201282 remote_ip 10.8.0.10 201284 username barzegar 201284 mac 201284 bytes_out 0 201284 bytes_in 0 201284 station_ip 5.120.44.59 201284 port 52 201284 unique_id port 201284 remote_ip 10.8.1.6 201287 username pourshad 201287 mac 201287 bytes_out 0 201287 bytes_in 0 201287 station_ip 5.120.219.248 201287 port 51 201287 unique_id port 201287 remote_ip 10.8.1.58 201289 username alirezaza 201289 unique_id port 201289 terminate_cause Lost-Carrier 201289 bytes_out 120014 201227 mac 201227 bytes_out 0 201227 bytes_in 0 201227 station_ip 37.129.174.195 201227 port 34 201227 unique_id port 201227 remote_ip 10.8.0.58 201231 username hadibarzegar 201231 kill_reason Another user logged on this global unique id 201231 mac 201231 bytes_out 0 201231 bytes_in 0 201231 station_ip 5.120.115.115 201231 port 32 201231 unique_id port 201232 username malekpoir 201232 mac 201232 bytes_out 664374 201232 bytes_in 5004016 201232 station_ip 5.119.245.199 201232 port 51 201232 unique_id port 201232 remote_ip 10.8.1.70 201233 username alipour1506 201233 kill_reason Another user logged on this global unique id 201233 mac 201233 bytes_out 0 201233 bytes_in 0 201233 station_ip 151.234.23.177 201233 port 47 201233 unique_id port 201233 remote_ip 10.8.1.86 201234 username houshang 201234 mac 201234 bytes_out 0 201234 bytes_in 0 201234 station_ip 5.119.192.187 201234 port 30 201234 unique_id port 201234 remote_ip 10.8.0.50 201236 username mosi 201236 kill_reason Another user logged on this global unique id 201236 mac 201236 bytes_out 0 201236 bytes_in 0 201236 station_ip 151.235.106.19 201236 port 26 201236 unique_id port 201241 username motamedi9772 201241 kill_reason Maximum check online fails reached 201241 mac 201241 bytes_out 0 201241 bytes_in 0 201241 station_ip 83.122.199.232 201241 port 49 201241 unique_id port 201242 username hadibarzegar 201242 kill_reason Another user logged on this global unique id 201242 mac 201242 bytes_out 0 201242 bytes_in 0 201242 station_ip 5.120.115.115 201242 port 32 201242 unique_id port 201243 username saeed9658 201243 mac 201243 bytes_out 0 201243 bytes_in 0 201243 station_ip 5.120.121.202 201243 port 51 201243 unique_id port 201243 remote_ip 10.8.1.194 201244 username rashidi4690 201244 mac 201244 bytes_out 0 201244 bytes_in 0 201244 station_ip 5.120.72.24 201244 port 45 201244 unique_id port 201244 remote_ip 10.8.1.158 201246 username motamedi9772 201246 mac 201246 bytes_out 401095 201246 bytes_in 3600985 201246 station_ip 83.122.199.232 201246 port 52 201246 unique_id port 201246 remote_ip 10.8.1.198 201253 username motamedi9772 201253 mac 201253 bytes_out 0 201253 bytes_in 0 201253 station_ip 83.122.199.232 201253 port 52 201253 unique_id port 201253 remote_ip 10.8.1.198 201254 username motamedi9772 201254 mac 201254 bytes_out 0 201254 bytes_in 0 201254 station_ip 83.122.199.232 201254 port 31 201254 unique_id port 201254 remote_ip 10.8.0.62 201260 username motamedi9772 201260 mac 201260 bytes_out 0 201260 bytes_in 0 201260 station_ip 83.122.199.232 201260 port 52 201260 unique_id port 201260 remote_ip 10.8.1.198 201262 username motamedi9772 201262 kill_reason Maximum check online fails reached 201262 mac 201262 bytes_out 0 201262 bytes_in 0 201262 station_ip 83.122.199.232 201262 port 42 201262 unique_id port 201264 username rashidi4690 201264 mac 201264 bytes_out 329881 201264 bytes_in 807416 201264 station_ip 5.120.94.7 201264 port 48 201264 unique_id port 201264 remote_ip 10.8.1.158 201268 username barzegar 201268 mac 201268 bytes_out 212666 201268 bytes_in 161878 201268 station_ip 5.120.44.59 201268 port 48 201268 unique_id port 201268 remote_ip 10.8.1.6 201269 username hadibarzegar 201269 kill_reason Another user logged on this global unique id 201269 mac 201269 bytes_out 0 201269 bytes_in 0 201269 station_ip 5.120.115.115 201269 port 32 201269 unique_id port 201272 username kalantary6037 201272 mac 201272 bytes_out 0 201272 bytes_in 0 201272 station_ip 37.129.246.221 201272 port 33 201272 unique_id port 201272 remote_ip 10.8.0.10 201273 username barzegar 201273 mac 201273 bytes_out 6213 201273 bytes_in 13238 201273 station_ip 5.120.44.59 201273 port 52 201273 unique_id port 201273 remote_ip 10.8.1.6 201275 username meysam 201275 mac 201275 bytes_out 986967 201275 bytes_in 14379736 201275 station_ip 188.159.254.35 201275 port 53 201275 unique_id port 201275 remote_ip 10.8.1.30 201276 username barzegar 201276 mac 201276 bytes_out 0 201276 bytes_in 0 201276 station_ip 5.120.44.59 201276 port 31 201276 unique_id port 201276 remote_ip 10.8.0.14 201279 username barzegar 201279 mac 201279 bytes_out 0 201279 bytes_in 0 201279 station_ip 5.120.44.59 201279 port 54 201279 unique_id port 201279 remote_ip 10.8.1.6 201281 username charkhandaz3496 201281 mac 201281 bytes_out 0 201281 bytes_in 0 201281 station_ip 5.119.142.145 201281 port 53 201281 unique_id port 201281 remote_ip 10.8.1.46 201283 username tahmorsi 201283 mac 201283 bytes_out 580229 201283 bytes_in 5996614 201283 station_ip 86.57.86.40 201283 port 48 201283 unique_id port 201283 remote_ip 10.8.1.102 201285 username alirezaza 201285 unique_id port 201285 terminate_cause User-Request 201285 bytes_out 194 201285 bytes_in 208 201285 station_ip 5.120.43.218 201285 port 15729792 201285 nas_port_type Virtual 201285 remote_ip 5.5.5.99 201286 username charkhandaz3496 201286 mac 201286 bytes_out 0 201286 bytes_in 0 201286 station_ip 5.119.142.145 201286 port 48 201286 unique_id port 201286 remote_ip 10.8.1.46 201290 username iranmanesh4443 201290 mac 201290 bytes_out 0 201290 bytes_in 0 201290 station_ip 5.119.177.251 201290 port 45 201290 unique_id port 201290 remote_ip 10.8.1.122 201291 username kalantary6037 201291 mac 201291 bytes_out 1339413 201291 bytes_in 13316092 201291 station_ip 37.129.246.221 201291 port 30 201291 unique_id port 201291 remote_ip 10.8.0.10 201292 username tahmorsi 201292 mac 201292 bytes_out 23962 201292 bytes_in 27703 201292 station_ip 86.57.86.40 201292 port 48 201292 unique_id port 201292 remote_ip 10.8.1.102 201293 username barzegar 201293 mac 201293 bytes_out 0 201293 bytes_in 0 201293 station_ip 5.120.44.59 201293 port 45 201293 unique_id port 201293 remote_ip 10.8.1.6 201298 username milan 201298 kill_reason Another user logged on this global unique id 201298 mac 201298 bytes_out 0 201298 bytes_in 0 201298 station_ip 5.120.38.92 201298 port 22 201298 unique_id port 201298 remote_ip 10.8.0.198 201299 username alirezaza 201299 unique_id port 201299 terminate_cause User-Request 201299 bytes_out 376 201299 bytes_in 184 201299 station_ip 5.120.41.57 201299 port 15729794 201299 nas_port_type Virtual 201299 remote_ip 5.5.5.101 201300 username seyedrezaei2572 201300 mac 201300 bytes_out 0 201300 bytes_in 0 201300 station_ip 192.15.239.204 201300 port 28 201300 unique_id port 201300 remote_ip 10.8.0.186 201302 username milan 201302 kill_reason Another user logged on this global unique id 201302 mac 201302 bytes_out 0 201302 bytes_in 0 201302 station_ip 5.120.38.92 201302 port 22 201302 unique_id port 201304 username aminvpn 201304 unique_id port 201304 terminate_cause Lost-Carrier 201304 bytes_out 2205205 201304 bytes_in 49255532 201304 station_ip 83.122.127.44 201304 port 15729791 201304 nas_port_type Virtual 201304 remote_ip 5.5.5.96 201307 username alirezaza 201307 unique_id port 201307 terminate_cause Lost-Carrier 201307 bytes_out 762194 201307 bytes_in 23273901 201307 station_ip 5.120.41.57 201307 port 15729796 201307 nas_port_type Virtual 201307 remote_ip 5.5.5.101 201309 username kalantary6037 201289 bytes_in 1734806 201289 station_ip 5.120.43.218 201289 port 15729793 201289 nas_port_type Virtual 201289 remote_ip 5.5.5.99 201296 username rashidi4690 201296 mac 201296 bytes_out 472677 201296 bytes_in 4006783 201296 station_ip 5.120.94.7 201296 port 45 201296 unique_id port 201296 remote_ip 10.8.1.158 201297 username farhad3 201297 mac 201297 bytes_out 0 201297 bytes_in 0 201297 station_ip 5.119.251.92 201297 port 50 201297 unique_id port 201305 username hadibarzegar 201305 mac 201305 bytes_out 0 201305 bytes_in 0 201305 station_ip 5.120.115.115 201305 port 32 201305 unique_id port 201308 username farhad3 201308 mac 201308 bytes_out 0 201308 bytes_in 0 201308 station_ip 5.119.251.92 201308 port 48 201308 unique_id port 201308 remote_ip 10.8.1.38 201313 username farhad3 201313 mac 201313 bytes_out 0 201313 bytes_in 0 201313 station_ip 5.119.251.92 201313 port 52 201313 unique_id port 201313 remote_ip 10.8.1.38 201314 username majidsarmast 201314 kill_reason Another user logged on this global unique id 201314 mac 201314 bytes_out 0 201314 bytes_in 0 201314 station_ip 83.123.146.135 201314 port 29 201314 unique_id port 201314 remote_ip 10.8.0.6 201318 username arash 201318 kill_reason Another user logged on this global unique id 201318 mac 201318 bytes_out 0 201318 bytes_in 0 201318 station_ip 37.27.13.229 201318 port 51 201318 unique_id port 201318 remote_ip 10.8.1.54 201319 username rashidi4690 201319 mac 201319 bytes_out 34650 201319 bytes_in 100080 201319 station_ip 5.120.94.7 201319 port 50 201319 unique_id port 201319 remote_ip 10.8.1.158 201323 username meysam 201323 kill_reason Another user logged on this global unique id 201323 mac 201323 bytes_out 0 201323 bytes_in 0 201323 station_ip 188.159.254.35 201323 port 48 201323 unique_id port 201323 remote_ip 10.8.1.30 201324 username pourshad 201324 mac 201324 bytes_out 367164 201324 bytes_in 921522 201324 station_ip 5.120.219.248 201324 port 30 201324 unique_id port 201324 remote_ip 10.8.0.54 201327 username sabaghnezhad 201327 mac 201327 bytes_out 0 201327 bytes_in 0 201327 station_ip 83.123.201.177 201327 port 25 201327 unique_id port 201327 remote_ip 10.8.0.18 201332 username yarmohamadi7916 201332 kill_reason Another user logged on this global unique id 201332 mac 201332 bytes_out 0 201332 bytes_in 0 201332 station_ip 5.120.7.117 201332 port 52 201332 unique_id port 201332 remote_ip 10.8.1.154 201334 username khalili2 201334 kill_reason Another user logged on this global unique id 201334 mac 201334 bytes_out 0 201334 bytes_in 0 201334 station_ip 5.119.180.81 201334 port 46 201334 unique_id port 201334 remote_ip 10.8.1.18 201339 username farhad3 201339 mac 201339 bytes_out 0 201339 bytes_in 0 201339 station_ip 5.119.251.92 201339 port 32 201339 unique_id port 201342 username barzegar 201342 mac 201342 bytes_out 41894 201342 bytes_in 119594 201342 station_ip 5.120.44.59 201342 port 54 201342 unique_id port 201342 remote_ip 10.8.1.6 201343 username saeed9658 201343 mac 201343 bytes_out 2098035 201343 bytes_in 19390785 201343 station_ip 5.120.121.202 201343 port 53 201343 unique_id port 201343 remote_ip 10.8.1.194 201345 username barzegar 201345 mac 201345 bytes_out 14397 201345 bytes_in 27734 201345 station_ip 5.120.44.59 201345 port 47 201345 unique_id port 201345 remote_ip 10.8.1.6 201346 username meysam 201346 mac 201346 bytes_out 0 201346 bytes_in 0 201346 station_ip 188.159.254.35 201346 port 53 201346 unique_id port 201346 remote_ip 10.8.1.30 201348 username saeeddamghani 201294 port 32 201294 unique_id port 201295 username motamedi9772 201295 mac 201295 bytes_out 0 201295 bytes_in 0 201295 station_ip 83.122.171.16 201295 port 48 201295 unique_id port 201295 remote_ip 10.8.1.198 201301 username pourshad 201301 mac 201301 bytes_out 0 201301 bytes_in 0 201301 station_ip 5.120.219.248 201301 port 34 201301 unique_id port 201301 remote_ip 10.8.0.54 201303 username alirezaza 201303 unique_id port 201303 terminate_cause User-Request 201303 bytes_out 794423 201303 bytes_in 20448246 201303 station_ip 5.120.41.57 201303 port 15729795 201303 nas_port_type Virtual 201303 remote_ip 5.5.5.101 201306 username barzegar 201306 mac 201306 bytes_out 0 201306 bytes_in 0 201306 station_ip 5.120.44.59 201306 port 51 201306 unique_id port 201306 remote_ip 10.8.1.6 201310 username houshang 201310 mac 201310 bytes_out 1698296 201310 bytes_in 17926896 201310 station_ip 5.119.192.187 201310 port 50 201310 unique_id port 201310 remote_ip 10.8.1.134 201311 username milan 201311 kill_reason Another user logged on this global unique id 201311 mac 201311 bytes_out 0 201311 bytes_in 0 201311 station_ip 5.120.38.92 201311 port 22 201311 unique_id port 201317 username mohammadjavad 201317 mac 201317 bytes_out 0 201317 bytes_in 0 201317 station_ip 83.123.212.230 201317 port 28 201317 unique_id port 201317 remote_ip 10.8.0.58 201320 username kalantary6037 201320 mac 201320 bytes_out 0 201320 bytes_in 0 201320 station_ip 37.129.164.45 201320 port 34 201320 unique_id port 201320 remote_ip 10.8.0.10 201322 username majidsarmast 201322 mac 201322 bytes_out 0 201322 bytes_in 0 201322 station_ip 83.123.146.135 201322 port 29 201322 unique_id port 201325 username arash 201325 mac 201325 bytes_out 0 201325 bytes_in 0 201325 station_ip 37.27.13.229 201325 port 51 201325 unique_id port 201329 username seyedrezaei2572 201329 mac 201329 bytes_out 2078823 201329 bytes_in 31359701 201329 station_ip 192.15.182.84 201329 port 35 201329 unique_id port 201329 remote_ip 10.8.0.186 201331 username kalantary6037 201331 mac 201331 bytes_out 0 201331 bytes_in 0 201331 station_ip 37.129.164.45 201331 port 28 201331 unique_id port 201331 remote_ip 10.8.0.10 201338 username kalantary6037 201338 mac 201338 bytes_out 0 201338 bytes_in 0 201338 station_ip 37.129.164.45 201338 port 47 201338 unique_id port 201338 remote_ip 10.8.1.150 201340 username kharazmi2920 201340 mac 201340 bytes_out 370845 201340 bytes_in 2577532 201340 station_ip 83.123.60.195 201340 port 33 201340 unique_id port 201340 remote_ip 10.8.0.34 201341 username seyedrezaei2572 201341 mac 201341 bytes_out 0 201341 bytes_in 0 201341 station_ip 192.15.182.84 201341 port 25 201341 unique_id port 201341 remote_ip 10.8.0.186 201351 username yaghobi 201351 kill_reason Another user logged on this global unique id 201351 mac 201351 bytes_out 0 201351 bytes_in 0 201351 station_ip 37.129.206.180 201351 port 25 201351 unique_id port 201351 remote_ip 10.8.0.174 201353 username saeeddamghani 201353 unique_id port 201353 terminate_cause User-Request 201353 bytes_out 70386 201353 bytes_in 310845 201353 station_ip 83.123.174.4 201353 port 15729800 201353 nas_port_type Virtual 201353 remote_ip 5.5.5.104 201360 username barzegar 201360 mac 201360 bytes_out 0 201360 bytes_in 0 201360 station_ip 5.120.190.37 201360 port 48 201360 unique_id port 201360 remote_ip 10.8.1.6 201364 username kalantary6037 201364 mac 201364 bytes_out 0 201364 bytes_in 0 201364 station_ip 37.129.201.217 201364 port 48 201309 mac 201309 bytes_out 0 201309 bytes_in 0 201309 station_ip 37.129.164.45 201309 port 28 201309 unique_id port 201309 remote_ip 10.8.0.10 201312 username farhad3 201312 mac 201312 bytes_out 232445 201312 bytes_in 545019 201312 station_ip 5.119.251.92 201312 port 48 201312 unique_id port 201312 remote_ip 10.8.1.38 201315 username rajaei 201315 mac 201315 bytes_out 2191284 201315 bytes_in 19711625 201315 station_ip 37.156.59.4 201315 port 50 201315 unique_id port 201315 remote_ip 10.8.1.146 201316 username barzegar 201316 mac 201316 bytes_out 0 201316 bytes_in 0 201316 station_ip 5.120.44.59 201316 port 53 201316 unique_id port 201316 remote_ip 10.8.1.6 201321 username milan 201321 kill_reason Another user logged on this global unique id 201321 mac 201321 bytes_out 0 201321 bytes_in 0 201321 station_ip 5.120.38.92 201321 port 22 201321 unique_id port 201326 username barzegar 201326 mac 201326 bytes_out 0 201326 bytes_in 0 201326 station_ip 5.120.44.59 201326 port 51 201326 unique_id port 201326 remote_ip 10.8.1.6 201328 username meysam 201328 mac 201328 bytes_out 0 201328 bytes_in 0 201328 station_ip 188.159.254.35 201328 port 48 201328 unique_id port 201330 username barzegar 201330 mac 201330 bytes_out 0 201330 bytes_in 0 201330 station_ip 5.120.44.59 201330 port 48 201330 unique_id port 201330 remote_ip 10.8.1.6 201333 username sabaghnezhad 201333 mac 201333 bytes_out 44993 201333 bytes_in 70786 201333 station_ip 83.123.201.177 201333 port 29 201333 unique_id port 201333 remote_ip 10.8.0.18 201335 username milan 201335 kill_reason Another user logged on this global unique id 201335 mac 201335 bytes_out 0 201335 bytes_in 0 201335 station_ip 5.120.38.92 201335 port 22 201335 unique_id port 201336 username alipour1506 201336 mac 201336 bytes_out 0 201336 bytes_in 0 201336 station_ip 151.234.23.177 201336 port 47 201336 unique_id port 201337 username farhad3 201337 kill_reason Another user logged on this global unique id 201337 mac 201337 bytes_out 0 201337 bytes_in 0 201337 station_ip 5.119.251.92 201337 port 32 201337 unique_id port 201337 remote_ip 10.8.0.46 201344 username rashidi4690 201344 mac 201344 bytes_out 0 201344 bytes_in 0 201344 station_ip 5.120.94.7 201344 port 48 201344 unique_id port 201344 remote_ip 10.8.1.158 201347 username rashidi4690 201347 mac 201347 bytes_out 0 201347 bytes_in 0 201347 station_ip 5.120.94.7 201347 port 48 201347 unique_id port 201347 remote_ip 10.8.1.158 201350 username barzegar 201350 mac 201350 bytes_out 0 201350 bytes_in 0 201350 station_ip 5.120.190.37 201350 port 53 201350 unique_id port 201350 remote_ip 10.8.1.6 201354 username saeed9658 201354 mac 201354 bytes_out 490214 201354 bytes_in 4874430 201354 station_ip 5.120.121.202 201354 port 48 201354 unique_id port 201354 remote_ip 10.8.1.194 201358 username saeed9658 201358 mac 201358 bytes_out 24111 201358 bytes_in 47869 201358 station_ip 5.120.121.202 201358 port 48 201358 unique_id port 201358 remote_ip 10.8.1.194 201359 username barzegar 201359 mac 201359 bytes_out 9722 201359 bytes_in 22526 201359 station_ip 5.120.190.37 201359 port 53 201359 unique_id port 201359 remote_ip 10.8.1.6 201361 username barzegar 201361 mac 201361 bytes_out 0 201361 bytes_in 0 201361 station_ip 5.120.190.37 201361 port 50 201361 unique_id port 201361 remote_ip 10.8.1.6 201366 username charkhandaz3496 201366 mac 201366 bytes_out 884366 201366 bytes_in 6025804 201366 station_ip 5.119.142.145 201348 unique_id port 201348 terminate_cause User-Request 201348 bytes_out 101935 201348 bytes_in 1585013 201348 station_ip 83.123.174.4 201348 port 15729799 201348 nas_port_type Virtual 201348 remote_ip 5.5.5.104 201349 username barzegar 201349 mac 201349 bytes_out 0 201349 bytes_in 0 201349 station_ip 5.120.190.37 201349 port 53 201349 unique_id port 201349 remote_ip 10.8.1.6 201352 username kalantary6037 201352 mac 201352 bytes_out 0 201352 bytes_in 0 201352 station_ip 37.129.164.45 201352 port 47 201352 unique_id port 201352 remote_ip 10.8.1.150 201355 username meysam 201355 mac 201355 bytes_out 0 201355 bytes_in 0 201355 station_ip 188.159.254.35 201355 port 47 201355 unique_id port 201355 remote_ip 10.8.1.30 201356 username pourshad 201356 mac 201356 bytes_out 0 201356 bytes_in 0 201356 station_ip 5.120.219.248 201356 port 50 201356 unique_id port 201356 remote_ip 10.8.1.58 201357 username yaghobi 201357 mac 201357 bytes_out 0 201357 bytes_in 0 201357 station_ip 37.129.206.180 201357 port 25 201357 unique_id port 201362 username pourshad 201362 kill_reason Another user logged on this global unique id 201362 mac 201362 bytes_out 0 201362 bytes_in 0 201362 station_ip 5.120.219.248 201362 port 30 201362 unique_id port 201362 remote_ip 10.8.0.54 201363 username mosi 201363 kill_reason Another user logged on this global unique id 201363 mac 201363 bytes_out 0 201363 bytes_in 0 201363 station_ip 151.235.106.19 201363 port 26 201363 unique_id port 201365 username mohammadjavad 201365 mac 201365 bytes_out 0 201365 bytes_in 0 201365 station_ip 37.129.194.124 201365 port 32 201365 unique_id port 201365 remote_ip 10.8.0.58 201368 username milan 201368 kill_reason Another user logged on this global unique id 201368 mac 201368 bytes_out 0 201368 bytes_in 0 201368 station_ip 5.120.38.92 201368 port 22 201368 unique_id port 201370 username motamedi9772 201370 mac 201370 bytes_out 23636 201370 bytes_in 64459 201370 station_ip 83.122.138.92 201370 port 32 201370 unique_id port 201370 remote_ip 10.8.0.62 201376 username yarmohamadi7916 201376 kill_reason Another user logged on this global unique id 201376 mac 201376 bytes_out 0 201376 bytes_in 0 201376 station_ip 5.120.7.117 201376 port 52 201376 unique_id port 201381 username milan 201381 kill_reason Another user logged on this global unique id 201381 mac 201381 bytes_out 0 201381 bytes_in 0 201381 station_ip 5.120.38.92 201381 port 22 201381 unique_id port 201384 username barzegar 201384 mac 201384 bytes_out 0 201384 bytes_in 0 201384 station_ip 5.120.190.37 201384 port 51 201384 unique_id port 201384 remote_ip 10.8.1.6 201387 username milan 201387 kill_reason Another user logged on this global unique id 201387 mac 201387 bytes_out 0 201387 bytes_in 0 201387 station_ip 5.120.38.92 201387 port 22 201387 unique_id port 201392 username ayobi 201392 mac 201392 bytes_out 0 201392 bytes_in 0 201392 station_ip 37.27.1.103 201392 port 48 201392 unique_id port 201392 remote_ip 10.8.1.110 201395 username mostafa_es78 201395 mac 201395 bytes_out 0 201395 bytes_in 0 201395 station_ip 83.123.228.240 201395 port 36 201395 unique_id port 201395 remote_ip 10.8.0.102 201402 username mosi 201402 mac 201402 bytes_out 0 201402 bytes_in 0 201402 station_ip 151.235.106.19 201402 port 26 201402 unique_id port 201405 username pourshad 201405 kill_reason Another user logged on this global unique id 201405 mac 201405 bytes_out 0 201405 bytes_in 0 201405 station_ip 5.120.219.248 201405 port 30 201405 unique_id port 201409 username charkhandaz3496 201364 unique_id port 201364 remote_ip 10.8.1.150 201367 username rezaei 201367 mac 201367 bytes_out 0 201367 bytes_in 0 201367 station_ip 5.119.163.137 201367 port 47 201367 unique_id port 201367 remote_ip 10.8.1.174 201369 username barzegar 201369 mac 201369 bytes_out 0 201369 bytes_in 0 201369 station_ip 5.120.190.37 201369 port 51 201369 unique_id port 201369 remote_ip 10.8.1.6 201371 username saeed9658 201371 kill_reason Another user logged on this global unique id 201371 mac 201371 bytes_out 0 201371 bytes_in 0 201371 station_ip 5.120.121.202 201371 port 48 201371 unique_id port 201371 remote_ip 10.8.1.194 201372 username meysam 201372 kill_reason Another user logged on this global unique id 201372 mac 201372 bytes_out 0 201372 bytes_in 0 201372 station_ip 188.159.254.35 201372 port 53 201372 unique_id port 201372 remote_ip 10.8.1.30 201374 username milan 201374 kill_reason Another user logged on this global unique id 201374 mac 201374 bytes_out 0 201374 bytes_in 0 201374 station_ip 5.120.38.92 201374 port 22 201374 unique_id port 201375 username saeed9658 201375 mac 201375 bytes_out 0 201375 bytes_in 0 201375 station_ip 5.120.121.202 201375 port 48 201375 unique_id port 201377 username seyedrezaei2572 201377 mac 201377 bytes_out 0 201377 bytes_in 0 201377 station_ip 5.218.13.245 201377 port 36 201377 unique_id port 201377 remote_ip 10.8.0.186 201378 username barzegar 201378 mac 201378 bytes_out 5551444 201378 bytes_in 2862873 201378 station_ip 5.120.190.37 201378 port 34 201378 unique_id port 201378 remote_ip 10.8.0.14 201379 username khorasani9135 201379 kill_reason Another user logged on this global unique id 201379 mac 201379 bytes_out 0 201379 bytes_in 0 201379 station_ip 83.123.229.222 201379 port 31 201379 unique_id port 201379 remote_ip 10.8.0.222 201382 username mostafa_es78 201382 mac 201382 bytes_out 1005907 201382 bytes_in 4145334 201382 station_ip 83.123.228.240 201382 port 35 201382 unique_id port 201382 remote_ip 10.8.0.102 201385 username fezealinaghi 201385 kill_reason Another user logged on this global unique id 201385 mac 201385 bytes_out 0 201385 bytes_in 0 201385 station_ip 83.122.229.17 201385 port 29 201385 unique_id port 201385 remote_ip 10.8.0.98 201386 username ayobi 201386 mac 201386 bytes_out 0 201386 bytes_in 0 201386 station_ip 37.27.1.103 201386 port 48 201386 unique_id port 201386 remote_ip 10.8.1.110 201388 username naeimeh 201388 mac 201388 bytes_out 0 201388 bytes_in 0 201388 station_ip 37.129.111.40 201388 port 35 201388 unique_id port 201388 remote_ip 10.8.0.202 201389 username meysam 201389 kill_reason Another user logged on this global unique id 201389 mac 201389 bytes_out 0 201389 bytes_in 0 201389 station_ip 188.159.254.35 201389 port 53 201389 unique_id port 201390 username kalantary6037 201390 mac 201390 bytes_out 0 201390 bytes_in 0 201390 station_ip 37.129.146.57 201390 port 47 201390 unique_id port 201390 remote_ip 10.8.1.150 201394 username barzegar 201394 mac 201394 bytes_out 0 201394 bytes_in 0 201394 station_ip 5.120.190.37 201394 port 48 201394 unique_id port 201394 remote_ip 10.8.1.6 201396 username godarzi 201396 kill_reason Another user logged on this global unique id 201396 mac 201396 bytes_out 0 201396 bytes_in 0 201396 station_ip 5.202.2.157 201396 port 55 201396 unique_id port 201396 remote_ip 10.8.1.78 201398 username milan 201398 kill_reason Another user logged on this global unique id 201398 mac 201398 bytes_out 0 201398 bytes_in 0 201398 station_ip 5.120.38.92 201398 port 22 201398 unique_id port 201399 username pourshad 201366 port 51 201366 unique_id port 201366 remote_ip 10.8.1.46 201373 username seyedrezaei2572 201373 mac 201373 bytes_out 937073 201373 bytes_in 5226928 201373 station_ip 83.120.38.2 201373 port 29 201373 unique_id port 201373 remote_ip 10.8.0.186 201380 username rezaei 201380 mac 201380 bytes_out 3502840 201380 bytes_in 47248312 201380 station_ip 5.119.163.137 201380 port 47 201380 unique_id port 201380 remote_ip 10.8.1.174 201383 username meysam 201383 kill_reason Another user logged on this global unique id 201383 mac 201383 bytes_out 0 201383 bytes_in 0 201383 station_ip 188.159.254.35 201383 port 53 201383 unique_id port 201391 username barzegar 201391 mac 201391 bytes_out 24434 201391 bytes_in 33044 201391 station_ip 5.120.190.37 201391 port 54 201391 unique_id port 201391 remote_ip 10.8.1.6 201393 username motamedi9772 201393 mac 201393 bytes_out 0 201393 bytes_in 0 201393 station_ip 83.122.138.92 201393 port 33 201393 unique_id port 201393 remote_ip 10.8.0.62 201397 username ayobi 201397 mac 201397 bytes_out 0 201397 bytes_in 0 201397 station_ip 83.122.200.253 201397 port 47 201397 unique_id port 201397 remote_ip 10.8.1.110 201401 username barzegar 201401 mac 201401 bytes_out 0 201401 bytes_in 0 201401 station_ip 5.120.190.37 201401 port 48 201401 unique_id port 201401 remote_ip 10.8.1.6 201403 username barzegar 201403 mac 201403 bytes_out 0 201403 bytes_in 0 201403 station_ip 5.120.190.37 201403 port 48 201403 unique_id port 201403 remote_ip 10.8.1.6 201404 username meysam 201404 mac 201404 bytes_out 0 201404 bytes_in 0 201404 station_ip 188.159.254.35 201404 port 53 201404 unique_id port 201407 username mosi 201407 mac 201407 bytes_out 7177 201407 bytes_in 8204 201407 station_ip 151.235.106.19 201407 port 26 201407 unique_id port 201407 remote_ip 10.8.1.118 201408 username milan 201408 kill_reason Another user logged on this global unique id 201408 mac 201408 bytes_out 0 201408 bytes_in 0 201408 station_ip 5.120.38.92 201408 port 22 201408 unique_id port 201412 username mosavi0713 201412 mac 201412 bytes_out 0 201412 bytes_in 0 201412 station_ip 37.129.181.154 201412 port 33 201412 unique_id port 201412 remote_ip 10.8.0.190 201414 username yarmohamadi7916 201414 mac 201414 bytes_out 0 201414 bytes_in 0 201414 station_ip 5.120.7.117 201414 port 52 201414 unique_id port 201416 username barzegar 201416 mac 201416 bytes_out 0 201416 bytes_in 0 201416 station_ip 5.120.190.37 201416 port 48 201416 unique_id port 201416 remote_ip 10.8.1.6 201419 username charkhandaz3496 201419 mac 201419 bytes_out 361950 201419 bytes_in 3078281 201419 station_ip 5.119.142.145 201419 port 33 201419 unique_id port 201419 remote_ip 10.8.0.178 201422 username kharazmi2920 201422 mac 201422 bytes_out 2404899 201422 bytes_in 26497398 201422 station_ip 83.123.60.195 201422 port 28 201422 unique_id port 201422 remote_ip 10.8.0.34 201423 username fezealinaghi 201423 kill_reason Another user logged on this global unique id 201423 mac 201423 bytes_out 0 201423 bytes_in 0 201423 station_ip 83.122.229.17 201423 port 29 201423 unique_id port 201426 username hadibarzegar 201426 kill_reason Another user logged on this global unique id 201426 mac 201426 bytes_out 0 201426 bytes_in 0 201426 station_ip 5.120.115.115 201426 port 50 201426 unique_id port 201428 username motamedi9772 201428 mac 201428 bytes_out 6283 201428 bytes_in 12696 201428 station_ip 83.122.137.12 201428 port 28 201428 unique_id port 201428 remote_ip 10.8.0.62 201399 kill_reason Another user logged on this global unique id 201399 mac 201399 bytes_out 0 201399 bytes_in 0 201399 station_ip 5.120.219.248 201399 port 30 201399 unique_id port 201400 username mostafa_es78 201400 mac 201400 bytes_out 51468 201400 bytes_in 64025 201400 station_ip 83.123.228.240 201400 port 33 201400 unique_id port 201400 remote_ip 10.8.0.102 201406 username hadibarzegar 201406 kill_reason Another user logged on this global unique id 201406 mac 201406 bytes_out 0 201406 bytes_in 0 201406 station_ip 5.120.115.115 201406 port 50 201406 unique_id port 201406 remote_ip 10.8.1.170 201410 username barzegar 201410 mac 201410 bytes_out 0 201410 bytes_in 0 201410 station_ip 5.120.190.37 201410 port 36 201410 unique_id port 201410 remote_ip 10.8.0.14 201417 username charkhandaz3496 201417 mac 201417 bytes_out 0 201417 bytes_in 0 201417 station_ip 5.119.142.145 201417 port 51 201417 unique_id port 201420 username barzegar 201420 mac 201420 bytes_out 2807 201420 bytes_in 5369 201420 station_ip 5.120.190.37 201420 port 48 201420 unique_id port 201420 remote_ip 10.8.1.6 201425 username meysam 201425 mac 201425 bytes_out 0 201425 bytes_in 0 201425 station_ip 188.159.254.35 201425 port 51 201425 unique_id port 201425 remote_ip 10.8.1.30 201429 username farhad3 201429 kill_reason Another user logged on this global unique id 201429 mac 201429 bytes_out 5903001 201429 bytes_in 49180664 201429 station_ip 5.119.251.92 201429 port 34 201429 unique_id port 201429 remote_ip 10.8.0.46 201432 username rashidi4690 201432 mac 201432 bytes_out 2349814 201432 bytes_in 16795169 201432 station_ip 5.120.94.7 201432 port 47 201432 unique_id port 201432 remote_ip 10.8.1.158 201434 username fezealinaghi 201434 kill_reason Another user logged on this global unique id 201434 mac 201434 bytes_out 0 201434 bytes_in 0 201434 station_ip 83.122.229.17 201434 port 29 201434 unique_id port 201438 username milan 201438 mac 201438 bytes_out 0 201438 bytes_in 0 201438 station_ip 5.120.38.92 201438 port 22 201438 unique_id port 201444 username fezealinaghi 201444 mac 201444 bytes_out 0 201444 bytes_in 0 201444 station_ip 83.122.229.17 201444 port 29 201444 unique_id port 201447 username barzegar 201447 mac 201447 bytes_out 0 201447 bytes_in 0 201447 station_ip 5.120.190.37 201447 port 51 201447 unique_id port 201447 remote_ip 10.8.1.6 201450 username meysam 201450 mac 201450 bytes_out 531341 201450 bytes_in 10893689 201450 station_ip 188.159.254.35 201450 port 53 201450 unique_id port 201450 remote_ip 10.8.1.30 201463 username pourshad 201463 kill_reason Another user logged on this global unique id 201463 mac 201463 bytes_out 0 201463 bytes_in 0 201463 station_ip 5.120.219.248 201463 port 30 201463 unique_id port 201468 username rashidi4690 201468 mac 201468 bytes_out 0 201468 bytes_in 0 201468 station_ip 5.120.94.7 201468 port 47 201468 unique_id port 201468 remote_ip 10.8.1.158 201470 username meysam 201470 mac 201470 bytes_out 1517379 201470 bytes_in 28983360 201470 station_ip 188.158.48.126 201470 port 58 201470 unique_id port 201470 remote_ip 10.8.1.30 201476 username pourshad 201476 kill_reason Another user logged on this global unique id 201476 mac 201476 bytes_out 0 201476 bytes_in 0 201476 station_ip 5.120.219.248 201476 port 30 201476 unique_id port 201477 username milan 201477 kill_reason Another user logged on this global unique id 201477 mac 201477 bytes_out 0 201477 bytes_in 0 201477 station_ip 5.120.38.92 201477 port 51 201477 unique_id port 201479 username barzegar 201409 kill_reason Another user logged on this global unique id 201409 mac 201409 bytes_out 0 201409 bytes_in 0 201409 station_ip 5.119.142.145 201409 port 51 201409 unique_id port 201409 remote_ip 10.8.1.46 201411 username mosi 201411 mac 201411 bytes_out 0 201411 bytes_in 0 201411 station_ip 151.235.106.19 201411 port 26 201411 unique_id port 201411 remote_ip 10.8.1.118 201413 username barzegar 201413 mac 201413 bytes_out 2898 201413 bytes_in 5080 201413 station_ip 5.120.190.37 201413 port 33 201413 unique_id port 201413 remote_ip 10.8.0.14 201415 username milan 201415 kill_reason Another user logged on this global unique id 201415 mac 201415 bytes_out 0 201415 bytes_in 0 201415 station_ip 5.120.38.92 201415 port 22 201415 unique_id port 201418 username pourshad 201418 kill_reason Another user logged on this global unique id 201418 mac 201418 bytes_out 0 201418 bytes_in 0 201418 station_ip 5.120.219.248 201418 port 30 201418 unique_id port 201421 username naeimeh 201421 mac 201421 bytes_out 0 201421 bytes_in 0 201421 station_ip 37.129.111.40 201421 port 37 201421 unique_id port 201421 remote_ip 10.8.0.202 201424 username milan 201424 kill_reason Another user logged on this global unique id 201424 mac 201424 bytes_out 0 201424 bytes_in 0 201424 station_ip 5.120.38.92 201424 port 22 201424 unique_id port 201427 username kharazmi2920 201427 mac 201427 bytes_out 0 201427 bytes_in 0 201427 station_ip 83.123.60.195 201427 port 33 201427 unique_id port 201427 remote_ip 10.8.0.34 201430 username barzegar 201430 mac 201430 bytes_out 4075020 201430 bytes_in 1755691 201430 station_ip 5.120.190.37 201430 port 52 201430 unique_id port 201430 remote_ip 10.8.1.6 201433 username barzegar 201433 kill_reason Maximum check online fails reached 201433 mac 201433 bytes_out 0 201433 bytes_in 0 201433 station_ip 5.120.190.37 201433 port 52 201433 unique_id port 201435 username hamid.e 201435 unique_id port 201435 terminate_cause User-Request 201435 bytes_out 6412273 201435 bytes_in 50772372 201435 station_ip 37.27.17.112 201435 port 15729802 201435 nas_port_type Virtual 201435 remote_ip 5.5.5.106 201436 username mostafa_es78 201436 mac 201436 bytes_out 0 201436 bytes_in 0 201436 station_ip 83.122.229.167 201436 port 28 201436 unique_id port 201436 remote_ip 10.8.0.102 201437 username kalantary6037 201437 mac 201437 bytes_out 0 201437 bytes_in 0 201437 station_ip 37.129.138.29 201437 port 51 201437 unique_id port 201437 remote_ip 10.8.1.150 201439 username meysam 201439 mac 201439 bytes_out 0 201439 bytes_in 0 201439 station_ip 188.159.254.35 201439 port 47 201439 unique_id port 201439 remote_ip 10.8.1.30 201440 username yaghobi 201440 mac 201440 bytes_out 0 201440 bytes_in 0 201440 station_ip 37.129.178.0 201440 port 22 201440 unique_id port 201440 remote_ip 10.8.0.174 201443 username pourshad 201443 kill_reason Another user logged on this global unique id 201443 mac 201443 bytes_out 0 201443 bytes_in 0 201443 station_ip 5.120.219.248 201443 port 30 201443 unique_id port 201446 username yaghobi 201446 mac 201446 bytes_out 2529927 201446 bytes_in 1897853 201446 station_ip 37.129.178.0 201446 port 33 201446 unique_id port 201446 remote_ip 10.8.0.174 201451 username pourshad 201451 kill_reason Another user logged on this global unique id 201451 mac 201451 bytes_out 0 201451 bytes_in 0 201451 station_ip 5.120.219.248 201451 port 30 201451 unique_id port 201454 username meysam 201454 mac 201454 bytes_out 0 201454 bytes_in 0 201454 station_ip 188.158.48.126 201454 port 51 201431 username pourshad 201431 kill_reason Another user logged on this global unique id 201431 mac 201431 bytes_out 0 201431 bytes_in 0 201431 station_ip 5.120.219.248 201431 port 30 201431 unique_id port 201441 username fezealinaghi 201441 kill_reason Another user logged on this global unique id 201441 mac 201441 bytes_out 0 201441 bytes_in 0 201441 station_ip 83.122.229.17 201441 port 29 201441 unique_id port 201442 username barzegar 201442 mac 201442 bytes_out 0 201442 bytes_in 0 201442 station_ip 5.120.190.37 201442 port 53 201442 unique_id port 201442 remote_ip 10.8.1.6 201445 username rashidi4690 201445 mac 201445 bytes_out 49850 201445 bytes_in 107186 201445 station_ip 5.120.94.7 201445 port 47 201445 unique_id port 201445 remote_ip 10.8.1.158 201448 username motamedi9772 201448 mac 201448 bytes_out 2659944 201448 bytes_in 29563539 201448 station_ip 83.122.225.244 201448 port 28 201448 unique_id port 201448 remote_ip 10.8.0.62 201449 username motamedi9772 201449 mac 201449 bytes_out 0 201449 bytes_in 0 201449 station_ip 83.122.225.244 201449 port 51 201449 unique_id port 201449 remote_ip 10.8.1.198 201452 username farhad3 201452 mac 201452 bytes_out 0 201452 bytes_in 0 201452 station_ip 5.119.251.92 201452 port 34 201452 unique_id port 201453 username seyedrezaei2572 201453 mac 201453 bytes_out 1502370 201453 bytes_in 4776570 201453 station_ip 83.120.212.48 201453 port 35 201453 unique_id port 201453 remote_ip 10.8.0.186 201456 username barzegar 201456 mac 201456 bytes_out 2371 201456 bytes_in 4811 201456 station_ip 5.120.190.37 201456 port 51 201456 unique_id port 201456 remote_ip 10.8.1.6 201460 username barzegar 201460 mac 201460 bytes_out 0 201460 bytes_in 0 201460 station_ip 5.120.190.37 201460 port 57 201460 unique_id port 201460 remote_ip 10.8.1.6 201461 username dortaj3792 201461 mac 201461 bytes_out 0 201461 bytes_in 0 201461 station_ip 5.120.84.42 201461 port 56 201461 unique_id port 201461 remote_ip 10.8.1.34 201466 username barzegar 201466 kill_reason Maximum check online fails reached 201466 mac 201466 bytes_out 0 201466 bytes_in 0 201466 station_ip 5.120.190.37 201466 port 60 201466 unique_id port 201467 username tahmorsi 201467 mac 201467 bytes_out 0 201467 bytes_in 0 201467 station_ip 86.57.118.32 201467 port 57 201467 unique_id port 201467 remote_ip 10.8.1.102 201475 username barzegar 201475 mac 201475 bytes_out 0 201475 bytes_in 0 201475 station_ip 5.120.190.37 201475 port 47 201475 unique_id port 201475 remote_ip 10.8.1.6 201480 username pourshad 201480 kill_reason Another user logged on this global unique id 201480 mac 201480 bytes_out 0 201480 bytes_in 0 201480 station_ip 5.120.219.248 201480 port 30 201480 unique_id port 201481 username fezealinaghi 201481 kill_reason Another user logged on this global unique id 201481 mac 201481 bytes_out 0 201481 bytes_in 0 201481 station_ip 83.122.175.121 201481 port 22 201481 unique_id port 201481 remote_ip 10.8.0.98 201489 username sabaghnezhad 201489 mac 201489 bytes_out 0 201489 bytes_in 0 201489 station_ip 83.123.201.177 201489 port 25 201489 unique_id port 201489 remote_ip 10.8.0.18 201492 username kalantary6037 201492 mac 201492 bytes_out 0 201492 bytes_in 0 201492 station_ip 37.129.132.209 201492 port 53 201492 unique_id port 201492 remote_ip 10.8.1.150 201493 username alipour1506 201493 kill_reason Another user logged on this global unique id 201493 mac 201493 bytes_out 0 201493 bytes_in 0 201493 station_ip 151.234.23.177 201493 port 48 201493 unique_id port 201454 unique_id port 201454 remote_ip 10.8.1.30 201455 username mammad 201455 unique_id port 201455 terminate_cause User-Request 201455 bytes_out 4437350 201455 bytes_in 81077522 201455 station_ip 46.100.219.127 201455 port 15729803 201455 nas_port_type Virtual 201455 remote_ip 5.5.5.107 201457 username pourshad 201457 kill_reason Another user logged on this global unique id 201457 mac 201457 bytes_out 0 201457 bytes_in 0 201457 station_ip 5.120.219.248 201457 port 30 201457 unique_id port 201458 username hadibarzegar 201458 kill_reason Another user logged on this global unique id 201458 mac 201458 bytes_out 0 201458 bytes_in 0 201458 station_ip 5.120.115.115 201458 port 50 201458 unique_id port 201459 username yaghobi 201459 mac 201459 bytes_out 0 201459 bytes_in 0 201459 station_ip 37.129.178.0 201459 port 22 201459 unique_id port 201459 remote_ip 10.8.0.174 201462 username motamedi9772 201462 mac 201462 bytes_out 0 201462 bytes_in 0 201462 station_ip 83.122.165.156 201462 port 57 201462 unique_id port 201462 remote_ip 10.8.1.198 201464 username sabaghnezhad 201464 mac 201464 bytes_out 0 201464 bytes_in 0 201464 station_ip 83.123.201.177 201464 port 25 201464 unique_id port 201464 remote_ip 10.8.0.18 201465 username milan 201465 kill_reason Another user logged on this global unique id 201465 mac 201465 bytes_out 0 201465 bytes_in 0 201465 station_ip 5.120.38.92 201465 port 51 201465 unique_id port 201465 remote_ip 10.8.1.182 201469 username farhad3 201469 kill_reason Another user logged on this global unique id 201469 mac 201469 bytes_out 0 201469 bytes_in 0 201469 station_ip 5.119.251.92 201469 port 53 201469 unique_id port 201469 remote_ip 10.8.1.38 201471 username pourshad 201471 kill_reason Another user logged on this global unique id 201471 mac 201471 bytes_out 0 201471 bytes_in 0 201471 station_ip 5.120.219.248 201471 port 30 201471 unique_id port 201472 username kalantary6037 201472 mac 201472 bytes_out 1267049 201472 bytes_in 11806128 201472 station_ip 37.129.168.161 201472 port 59 201472 unique_id port 201472 remote_ip 10.8.1.150 201473 username barzegar 201473 mac 201473 bytes_out 0 201473 bytes_in 0 201473 station_ip 5.120.190.37 201473 port 47 201473 unique_id port 201473 remote_ip 10.8.1.6 201474 username saeeddamghani 201474 unique_id port 201474 terminate_cause User-Request 201474 bytes_out 284595 201474 bytes_in 5917167 201474 station_ip 83.123.46.33 201474 port 15729807 201474 nas_port_type Virtual 201474 remote_ip 5.5.5.255 201478 username hadibarzegar 201478 kill_reason Another user logged on this global unique id 201478 mac 201478 bytes_out 0 201478 bytes_in 0 201478 station_ip 5.120.115.115 201478 port 50 201478 unique_id port 201482 username barzegar 201482 mac 201482 bytes_out 0 201482 bytes_in 0 201482 station_ip 5.120.190.37 201482 port 57 201482 unique_id port 201482 remote_ip 10.8.1.6 201484 username pourshad 201484 kill_reason Another user logged on this global unique id 201484 mac 201484 bytes_out 0 201484 bytes_in 0 201484 station_ip 5.120.219.248 201484 port 30 201484 unique_id port 201486 username fezealinaghi 201486 kill_reason Another user logged on this global unique id 201486 mac 201486 bytes_out 0 201486 bytes_in 0 201486 station_ip 83.122.175.121 201486 port 22 201486 unique_id port 201490 username barzegar 201490 mac 201490 bytes_out 0 201490 bytes_in 0 201490 station_ip 5.120.190.37 201490 port 53 201490 unique_id port 201490 remote_ip 10.8.1.6 201491 username ayobi 201491 mac 201491 bytes_out 0 201491 bytes_in 0 201491 station_ip 37.27.1.103 201491 port 54 201491 unique_id port 201479 kill_reason Maximum check online fails reached 201479 mac 201479 bytes_out 0 201479 bytes_in 0 201479 station_ip 5.120.190.37 201479 port 47 201479 unique_id port 201483 username barzegar 201483 mac 201483 bytes_out 5668 201483 bytes_in 10616 201483 station_ip 5.120.190.37 201483 port 57 201483 unique_id port 201483 remote_ip 10.8.1.6 201485 username milan 201485 kill_reason Another user logged on this global unique id 201485 mac 201485 bytes_out 0 201485 bytes_in 0 201485 station_ip 5.120.38.92 201485 port 51 201485 unique_id port 201487 username godarzi 201487 kill_reason Another user logged on this global unique id 201487 mac 201487 bytes_out 0 201487 bytes_in 0 201487 station_ip 5.202.2.157 201487 port 55 201487 unique_id port 201488 username farhad3 201488 mac 201488 bytes_out 0 201488 bytes_in 0 201488 station_ip 5.119.251.92 201488 port 53 201488 unique_id port 201494 username barzegar 201494 mac 201494 bytes_out 0 201494 bytes_in 0 201494 station_ip 5.120.190.37 201494 port 54 201494 unique_id port 201494 remote_ip 10.8.1.6 201495 username barzegar 201495 mac 201495 bytes_out 0 201495 bytes_in 0 201495 station_ip 5.120.190.37 201495 port 25 201495 unique_id port 201495 remote_ip 10.8.0.14 201501 username godarzi 201501 kill_reason Another user logged on this global unique id 201501 mac 201501 bytes_out 0 201501 bytes_in 0 201501 station_ip 5.202.2.157 201501 port 55 201501 unique_id port 201505 username hadibarzegar 201505 kill_reason Another user logged on this global unique id 201505 mac 201505 bytes_out 0 201505 bytes_in 0 201505 station_ip 5.120.115.115 201505 port 50 201505 unique_id port 201507 username barzegar 201507 mac 201507 bytes_out 0 201507 bytes_in 0 201507 station_ip 5.120.190.37 201507 port 58 201507 unique_id port 201507 remote_ip 10.8.1.6 201509 username rezaei 201509 mac 201509 bytes_out 0 201509 bytes_in 0 201509 station_ip 5.119.163.137 201509 port 53 201509 unique_id port 201514 username fezealinaghi 201514 mac 201514 bytes_out 0 201514 bytes_in 0 201514 station_ip 83.122.175.121 201514 port 22 201514 unique_id port 201515 username majidsarmast 201515 kill_reason Another user logged on this global unique id 201515 mac 201515 bytes_out 0 201515 bytes_in 0 201515 station_ip 86.57.113.170 201515 port 57 201515 unique_id port 201515 remote_ip 10.8.1.114 201517 username motamedi9772 201517 mac 201517 bytes_out 0 201517 bytes_in 0 201517 station_ip 83.122.195.244 201517 port 34 201517 unique_id port 201517 remote_ip 10.8.0.62 201518 username mammad 201518 unique_id port 201518 terminate_cause User-Request 201518 bytes_out 499618 201518 bytes_in 8542064 201518 station_ip 46.100.219.127 201518 port 15729810 201518 nas_port_type Virtual 201518 remote_ip 5.5.5.107 201520 username barzegar 201520 mac 201520 bytes_out 0 201520 bytes_in 0 201520 station_ip 5.120.190.37 201520 port 59 201520 unique_id port 201520 remote_ip 10.8.1.6 201521 username motamedi9772 201521 mac 201521 bytes_out 0 201521 bytes_in 0 201521 station_ip 83.122.195.244 201521 port 35 201521 unique_id port 201521 remote_ip 10.8.0.62 201522 username motamedi9772 201522 mac 201522 bytes_out 0 201522 bytes_in 0 201522 station_ip 83.122.195.244 201522 port 35 201522 unique_id port 201522 remote_ip 10.8.0.62 201523 username fezealinaghi 201523 mac 201523 bytes_out 679570 201523 bytes_in 10694638 201523 station_ip 83.122.240.117 201523 port 34 201523 unique_id port 201523 remote_ip 10.8.0.98 201526 username barzegar 201526 mac 201526 bytes_out 3587 201491 remote_ip 10.8.1.110 201496 username barzegar8595 201496 mac 201496 bytes_out 3278263 201496 bytes_in 26739688 201496 station_ip 46.225.211.201 201496 port 45 201496 unique_id port 201496 remote_ip 10.8.1.50 201498 username barzegar8595 201498 mac 201498 bytes_out 0 201498 bytes_in 0 201498 station_ip 5.134.154.197 201498 port 54 201498 unique_id port 201498 remote_ip 10.8.1.50 201499 username barzegar8595 201499 mac 201499 bytes_out 0 201499 bytes_in 0 201499 station_ip 46.225.211.201 201499 port 45 201499 unique_id port 201499 remote_ip 10.8.1.50 201502 username alipour1506 201502 kill_reason Another user logged on this global unique id 201502 mac 201502 bytes_out 0 201502 bytes_in 0 201502 station_ip 151.234.23.177 201502 port 48 201502 unique_id port 201506 username barzegar 201506 mac 201506 bytes_out 0 201506 bytes_in 0 201506 station_ip 5.120.190.37 201506 port 33 201506 unique_id port 201506 remote_ip 10.8.0.14 201508 username barzegar8595 201508 kill_reason Maximum number of concurrent logins reached 201508 mac 201508 bytes_out 0 201508 bytes_in 0 201508 station_ip 5.134.154.197 201508 port 58 201508 unique_id port 201511 username motamedi9772 201511 mac 201511 bytes_out 0 201511 bytes_in 0 201511 station_ip 83.122.195.244 201511 port 58 201511 unique_id port 201511 remote_ip 10.8.1.198 201516 username motamedi9772 201516 mac 201516 bytes_out 340324 201516 bytes_in 4224849 201516 station_ip 83.122.195.244 201516 port 58 201516 unique_id port 201516 remote_ip 10.8.1.198 201524 username motamedi9772 201524 mac 201524 bytes_out 0 201524 bytes_in 0 201524 station_ip 83.122.195.244 201524 port 59 201524 unique_id port 201524 remote_ip 10.8.1.198 201525 username motamedi9772 201525 mac 201525 bytes_out 0 201525 bytes_in 0 201525 station_ip 83.122.195.244 201525 port 34 201525 unique_id port 201525 remote_ip 10.8.0.62 201528 username kalantary6037 201528 mac 201528 bytes_out 0 201528 bytes_in 0 201528 station_ip 37.129.146.45 201528 port 58 201528 unique_id port 201528 remote_ip 10.8.1.150 201529 username motamedi9772 201529 mac 201529 bytes_out 0 201529 bytes_in 0 201529 station_ip 83.122.195.244 201529 port 34 201529 unique_id port 201529 remote_ip 10.8.0.62 201530 username motamedi9772 201530 mac 201530 bytes_out 0 201530 bytes_in 0 201530 station_ip 83.122.195.244 201530 port 34 201530 unique_id port 201530 remote_ip 10.8.0.62 201533 username yarmohamadi7916 201533 kill_reason Another user logged on this global unique id 201533 mac 201533 bytes_out 0 201533 bytes_in 0 201533 station_ip 5.119.182.18 201533 port 53 201533 unique_id port 201533 remote_ip 10.8.1.154 201535 username barzegar8595 201535 mac 201535 bytes_out 0 201535 bytes_in 0 201535 station_ip 46.225.211.201 201535 port 45 201535 unique_id port 201535 remote_ip 10.8.1.50 201536 username motamedi9772 201536 mac 201536 bytes_out 0 201536 bytes_in 0 201536 station_ip 83.122.195.244 201536 port 45 201536 unique_id port 201536 remote_ip 10.8.1.198 201540 username majidsarmast 201540 kill_reason Another user logged on this global unique id 201540 mac 201540 bytes_out 0 201540 bytes_in 0 201540 station_ip 86.57.113.170 201540 port 57 201540 unique_id port 201543 username morteza4424 201543 mac 201543 bytes_out 0 201543 bytes_in 0 201543 station_ip 37.129.39.122 201543 port 34 201543 unique_id port 201543 remote_ip 10.8.0.70 201545 username barzegar 201545 mac 201545 bytes_out 10660 201545 bytes_in 22213 201545 station_ip 5.120.190.37 201545 port 59 201545 unique_id port 201493 remote_ip 10.8.1.86 201497 username dortaj3792 201497 mac 201497 bytes_out 0 201497 bytes_in 0 201497 station_ip 5.120.84.42 201497 port 56 201497 unique_id port 201497 remote_ip 10.8.1.34 201500 username barzegar8595 201500 mac 201500 bytes_out 0 201500 bytes_in 0 201500 station_ip 5.134.154.197 201500 port 54 201500 unique_id port 201500 remote_ip 10.8.1.50 201503 username rezaei 201503 kill_reason Another user logged on this global unique id 201503 mac 201503 bytes_out 0 201503 bytes_in 0 201503 station_ip 5.119.163.137 201503 port 53 201503 unique_id port 201503 remote_ip 10.8.1.174 201504 username barzegar 201504 mac 201504 bytes_out 0 201504 bytes_in 0 201504 station_ip 5.120.190.37 201504 port 58 201504 unique_id port 201504 remote_ip 10.8.1.6 201510 username barzegar8595 201510 mac 201510 bytes_out 154334 201510 bytes_in 557632 201510 station_ip 5.134.154.197 201510 port 25 201510 unique_id port 201510 remote_ip 10.8.0.82 201512 username barzegar 201512 mac 201512 bytes_out 0 201512 bytes_in 0 201512 station_ip 5.120.190.37 201512 port 53 201512 unique_id port 201512 remote_ip 10.8.1.6 201513 username khalili2 201513 kill_reason Another user logged on this global unique id 201513 mac 201513 bytes_out 0 201513 bytes_in 0 201513 station_ip 5.119.180.81 201513 port 46 201513 unique_id port 201519 username motamedi9772 201519 mac 201519 bytes_out 0 201519 bytes_in 0 201519 station_ip 83.122.195.244 201519 port 58 201519 unique_id port 201519 remote_ip 10.8.1.198 201532 username pourshad 201532 kill_reason Another user logged on this global unique id 201532 mac 201532 bytes_out 0 201532 bytes_in 0 201532 station_ip 5.120.219.248 201532 port 30 201532 unique_id port 201534 username motamedi9772 201534 mac 201534 bytes_out 0 201534 bytes_in 0 201534 station_ip 83.122.195.244 201534 port 59 201534 unique_id port 201534 remote_ip 10.8.1.198 201537 username saeed9658 201537 mac 201537 bytes_out 3429605 201537 bytes_in 32874162 201537 station_ip 5.119.31.206 201537 port 54 201537 unique_id port 201537 remote_ip 10.8.1.194 201539 username kharazmi2920 201539 mac 201539 bytes_out 0 201539 bytes_in 0 201539 station_ip 83.123.60.195 201539 port 34 201539 unique_id port 201539 remote_ip 10.8.0.34 201541 username barzegar 201541 mac 201541 bytes_out 0 201541 bytes_in 0 201541 station_ip 5.120.190.37 201541 port 45 201541 unique_id port 201541 remote_ip 10.8.1.6 201542 username pourshad 201542 kill_reason Another user logged on this global unique id 201542 mac 201542 bytes_out 0 201542 bytes_in 0 201542 station_ip 5.120.219.248 201542 port 30 201542 unique_id port 201544 username farhad3 201544 mac 201544 bytes_out 0 201544 bytes_in 0 201544 station_ip 5.119.251.92 201544 port 54 201544 unique_id port 201544 remote_ip 10.8.1.38 201551 username hadibarzegar 201551 mac 201551 bytes_out 0 201551 bytes_in 0 201551 station_ip 5.120.115.115 201551 port 50 201551 unique_id port 201552 username malekpoir 201552 mac 201552 bytes_out 4112183 201552 bytes_in 40298920 201552 station_ip 5.119.35.181 201552 port 32 201552 unique_id port 201552 remote_ip 10.8.0.166 201554 username godarzi 201554 mac 201554 bytes_out 0 201554 bytes_in 0 201554 station_ip 5.202.2.157 201554 port 55 201554 unique_id port 201558 username tahmorsi 201558 mac 201558 bytes_out 0 201558 bytes_in 0 201558 station_ip 86.57.83.64 201558 port 58 201558 unique_id port 201558 remote_ip 10.8.1.102 201561 username khademi 201588 mac 201526 bytes_in 5811 201526 station_ip 5.120.190.37 201526 port 36 201526 unique_id port 201526 remote_ip 10.8.0.14 201527 username tahmorsi 201527 mac 201527 bytes_out 0 201527 bytes_in 0 201527 station_ip 86.57.83.64 201527 port 61 201527 unique_id port 201527 remote_ip 10.8.1.102 201531 username motamedi9772 201531 mac 201531 bytes_out 0 201531 bytes_in 0 201531 station_ip 83.122.195.244 201531 port 34 201531 unique_id port 201531 remote_ip 10.8.0.62 201538 username barzegar 201538 mac 201538 bytes_out 0 201538 bytes_in 0 201538 station_ip 5.120.190.37 201538 port 45 201538 unique_id port 201538 remote_ip 10.8.1.6 201550 username iranmanesh4443 201550 mac 201550 bytes_out 39465 201550 bytes_in 87282 201550 station_ip 5.119.177.251 201550 port 59 201550 unique_id port 201550 remote_ip 10.8.1.122 201553 username khademi 201553 kill_reason Another user logged on this global unique id 201553 mac 201553 bytes_out 0 201553 bytes_in 0 201553 station_ip 37.129.212.3 201553 port 25 201553 unique_id port 201553 remote_ip 10.8.0.226 201555 username motamedi9772 201555 mac 201555 bytes_out 3955346 201555 bytes_in 38146184 201555 station_ip 83.122.195.244 201555 port 35 201555 unique_id port 201555 remote_ip 10.8.0.62 201556 username barzegar 201556 mac 201556 bytes_out 0 201556 bytes_in 0 201556 station_ip 151.235.124.87 201556 port 50 201556 unique_id port 201556 remote_ip 10.8.1.6 201559 username motamedi9772 201559 mac 201559 bytes_out 76256 201559 bytes_in 267239 201559 station_ip 83.122.195.244 201559 port 37 201559 unique_id port 201559 remote_ip 10.8.0.62 201560 username yarmohamadi7916 201560 kill_reason Another user logged on this global unique id 201560 mac 201560 bytes_out 0 201560 bytes_in 0 201560 station_ip 5.119.182.18 201560 port 53 201560 unique_id port 201563 username godarzi 201563 mac 201563 bytes_out 24184860 201563 bytes_in 8110303 201563 station_ip 5.202.2.157 201563 port 45 201563 unique_id port 201563 remote_ip 10.8.1.78 201565 username aminvpn 201565 unique_id port 201565 terminate_cause Lost-Carrier 201565 bytes_out 53172 201565 bytes_in 220756 201565 station_ip 83.123.190.27 201565 port 15729812 201565 nas_port_type Virtual 201565 remote_ip 5.5.5.255 201567 username mohammadjavad 201567 mac 201567 bytes_out 6592308 201567 bytes_in 14275860 201567 station_ip 83.123.210.96 201567 port 35 201567 unique_id port 201567 remote_ip 10.8.0.58 201569 username rashidi4690 201569 mac 201569 bytes_out 0 201569 bytes_in 0 201569 station_ip 5.120.94.7 201569 port 50 201569 unique_id port 201569 remote_ip 10.8.1.158 201574 username rashidi4690 201574 mac 201574 bytes_out 0 201574 bytes_in 0 201574 station_ip 5.120.143.173 201574 port 55 201574 unique_id port 201574 remote_ip 10.8.1.158 201578 username farhad3 201578 mac 201578 bytes_out 202426 201578 bytes_in 554001 201578 station_ip 5.119.251.92 201578 port 50 201578 unique_id port 201578 remote_ip 10.8.1.38 201583 username farhad3 201583 mac 201583 bytes_out 0 201583 bytes_in 0 201583 station_ip 5.119.251.92 201583 port 54 201583 unique_id port 201583 remote_ip 10.8.1.38 201585 username barzegar 201585 kill_reason Maximum check online fails reached 201585 mac 201585 bytes_out 0 201585 bytes_in 0 201585 station_ip 5.120.190.37 201585 port 53 201585 unique_id port 201586 username khademi 201586 kill_reason Another user logged on this global unique id 201586 mac 201586 bytes_out 0 201586 bytes_in 0 201586 station_ip 37.129.212.3 201586 port 25 201586 unique_id port 201588 username barzegar 201545 remote_ip 10.8.1.6 201546 username yarmohamadi7916 201546 kill_reason Another user logged on this global unique id 201546 mac 201546 bytes_out 0 201546 bytes_in 0 201546 station_ip 5.119.182.18 201546 port 53 201546 unique_id port 201547 username pourshad 201547 kill_reason Another user logged on this global unique id 201547 mac 201547 bytes_out 0 201547 bytes_in 0 201547 station_ip 5.120.219.248 201547 port 30 201547 unique_id port 201548 username barzegar 201548 mac 201548 bytes_out 0 201548 bytes_in 0 201548 station_ip 5.120.190.37 201548 port 59 201548 unique_id port 201548 remote_ip 10.8.1.6 201549 username kalantary6037 201549 mac 201549 bytes_out 0 201549 bytes_in 0 201549 station_ip 37.129.159.161 201549 port 45 201549 unique_id port 201549 remote_ip 10.8.1.150 201557 username ahmadi1 201557 mac 201557 bytes_out 2475233 201557 bytes_in 286362 201557 station_ip 83.122.157.83 201557 port 38 201557 unique_id port 201557 remote_ip 10.8.0.42 201570 username malekpoir 201570 mac 201570 bytes_out 0 201570 bytes_in 0 201570 station_ip 5.119.35.181 201570 port 32 201570 unique_id port 201570 remote_ip 10.8.0.166 201571 username saeeddamghani 201571 mac 201571 bytes_out 0 201571 bytes_in 0 201571 station_ip 5.119.206.22 201571 port 50 201571 unique_id port 201571 remote_ip 10.8.1.66 201572 username mohammadjavad 201572 mac 201572 bytes_out 0 201572 bytes_in 0 201572 station_ip 83.123.210.96 201572 port 37 201572 unique_id port 201572 remote_ip 10.8.0.58 201573 username yarmohamadi7916 201573 kill_reason Another user logged on this global unique id 201573 mac 201573 bytes_out 0 201573 bytes_in 0 201573 station_ip 5.119.182.18 201573 port 53 201573 unique_id port 201575 username farhad3 201575 mac 201575 bytes_out 0 201575 bytes_in 0 201575 station_ip 5.119.251.92 201575 port 54 201575 unique_id port 201575 remote_ip 10.8.1.38 201577 username fezealinaghi 201577 kill_reason Another user logged on this global unique id 201577 mac 201577 bytes_out 0 201577 bytes_in 0 201577 station_ip 37.129.252.60 201577 port 28 201577 unique_id port 201577 remote_ip 10.8.0.98 201579 username barzegar 201579 mac 201579 bytes_out 0 201579 bytes_in 0 201579 station_ip 5.120.190.37 201579 port 54 201579 unique_id port 201579 remote_ip 10.8.1.6 201591 username ayobi 201591 mac 201591 bytes_out 0 201591 bytes_in 0 201591 station_ip 37.27.12.18 201591 port 32 201591 unique_id port 201591 remote_ip 10.8.0.182 201596 username milan 201596 mac 201596 bytes_out 0 201596 bytes_in 0 201596 station_ip 5.120.38.92 201596 port 51 201596 unique_id port 201601 username godarzi 201601 mac 201601 bytes_out 15635009 201601 bytes_in 47141210 201601 station_ip 5.202.2.157 201601 port 45 201601 unique_id port 201601 remote_ip 10.8.1.78 201603 username barzegar 201603 mac 201603 bytes_out 0 201603 bytes_in 0 201603 station_ip 5.120.143.34 201603 port 50 201603 unique_id port 201603 remote_ip 10.8.1.6 201604 username motamedi9772 201604 mac 201604 bytes_out 0 201604 bytes_in 0 201604 station_ip 83.122.239.60 201604 port 36 201604 unique_id port 201604 remote_ip 10.8.0.62 201616 username rahim 201616 kill_reason Another user logged on this global unique id 201616 mac 201616 bytes_out 0 201616 bytes_in 0 201616 station_ip 5.120.3.58 201616 port 45 201616 unique_id port 201616 remote_ip 10.8.1.90 201621 username barzegar 201621 mac 201621 bytes_out 0 201621 bytes_in 0 201621 station_ip 5.120.143.34 201621 port 58 201621 unique_id port 201621 remote_ip 10.8.1.6 201561 kill_reason Another user logged on this global unique id 201561 mac 201561 bytes_out 0 201561 bytes_in 0 201561 station_ip 37.129.212.3 201561 port 25 201561 unique_id port 201562 username khorasani9135 201562 mac 201562 bytes_out 0 201562 bytes_in 0 201562 station_ip 83.123.229.222 201562 port 31 201562 unique_id port 201564 username barzegar 201564 mac 201564 bytes_out 0 201564 bytes_in 0 201564 station_ip 151.235.124.87 201564 port 50 201564 unique_id port 201564 remote_ip 10.8.1.6 201566 username seyedrezaei2572 201566 mac 201566 bytes_out 2779266 201566 bytes_in 10434270 201566 station_ip 83.120.218.252 201566 port 28 201566 unique_id port 201566 remote_ip 10.8.0.186 201568 username farhad3 201568 mac 201568 bytes_out 4444673 201568 bytes_in 35575076 201568 station_ip 5.119.251.92 201568 port 54 201568 unique_id port 201568 remote_ip 10.8.1.38 201576 username ayobi 201576 mac 201576 bytes_out 0 201576 bytes_in 0 201576 station_ip 37.27.12.18 201576 port 56 201576 unique_id port 201576 remote_ip 10.8.1.110 201580 username pourshad 201580 kill_reason Another user logged on this global unique id 201580 mac 201580 bytes_out 0 201580 bytes_in 0 201580 station_ip 5.120.219.248 201580 port 30 201580 unique_id port 201581 username barzegar 201581 mac 201581 bytes_out 0 201581 bytes_in 0 201581 station_ip 5.120.190.37 201581 port 50 201581 unique_id port 201581 remote_ip 10.8.1.6 201582 username yarmohamadi7916 201582 mac 201582 bytes_out 0 201582 bytes_in 0 201582 station_ip 5.119.182.18 201582 port 53 201582 unique_id port 201584 username mammad 201584 unique_id port 201584 terminate_cause Lost-Carrier 201584 bytes_out 240399 201584 bytes_in 4691662 201584 station_ip 2.183.253.176 201584 port 15729814 201584 nas_port_type Virtual 201584 remote_ip 5.5.5.89 201587 username barzegar 201587 kill_reason Maximum check online fails reached 201587 mac 201587 bytes_out 0 201587 bytes_in 0 201587 station_ip 5.120.143.34 201587 port 55 201587 unique_id port 201589 username fezealinaghi 201589 kill_reason Another user logged on this global unique id 201589 mac 201589 bytes_out 0 201589 bytes_in 0 201589 station_ip 37.129.252.60 201589 port 28 201589 unique_id port 201593 username rashidi4690 201593 mac 201593 bytes_out 0 201593 bytes_in 0 201593 station_ip 5.120.143.173 201593 port 54 201593 unique_id port 201593 remote_ip 10.8.1.158 201594 username houshang 201594 mac 201594 bytes_out 824548 201594 bytes_in 17225177 201594 station_ip 5.120.13.98 201594 port 56 201594 unique_id port 201594 remote_ip 10.8.1.134 201605 username barzegar 201605 mac 201605 bytes_out 0 201605 bytes_in 0 201605 station_ip 5.120.143.34 201605 port 45 201605 unique_id port 201605 remote_ip 10.8.1.6 201609 username motamedi9772 201609 mac 201609 bytes_out 0 201609 bytes_in 0 201609 station_ip 83.122.239.60 201609 port 36 201609 unique_id port 201609 remote_ip 10.8.0.62 201610 username morteza4424 201610 kill_reason Another user logged on this global unique id 201610 mac 201610 bytes_out 0 201610 bytes_in 0 201610 station_ip 37.129.39.122 201610 port 32 201610 unique_id port 201610 remote_ip 10.8.0.70 201611 username pourshad 201611 kill_reason Another user logged on this global unique id 201611 mac 201611 bytes_out 0 201611 bytes_in 0 201611 station_ip 5.120.219.248 201611 port 30 201611 unique_id port 201612 username motamedi9772 201612 mac 201612 bytes_out 0 201612 bytes_in 0 201612 station_ip 83.122.239.60 201612 port 54 201612 unique_id port 201612 remote_ip 10.8.1.198 201588 bytes_out 0 201588 bytes_in 0 201588 station_ip 5.120.143.34 201588 port 56 201588 unique_id port 201588 remote_ip 10.8.1.6 201590 username barzegar 201590 mac 201590 bytes_out 0 201590 bytes_in 0 201590 station_ip 5.120.143.34 201590 port 35 201590 unique_id port 201590 remote_ip 10.8.0.14 201592 username barzegar8595 201592 mac 201592 bytes_out 0 201592 bytes_in 0 201592 station_ip 46.225.211.201 201592 port 36 201592 unique_id port 201592 remote_ip 10.8.0.82 201595 username barzegar 201595 mac 201595 bytes_out 0 201595 bytes_in 0 201595 station_ip 5.120.143.34 201595 port 54 201595 unique_id port 201595 remote_ip 10.8.1.6 201597 username khademi 201597 kill_reason Another user logged on this global unique id 201597 mac 201597 bytes_out 0 201597 bytes_in 0 201597 station_ip 37.129.212.3 201597 port 25 201597 unique_id port 201598 username yaghobi 201598 mac 201598 bytes_out 3656373 201598 bytes_in 18430545 201598 station_ip 37.129.172.164 201598 port 34 201598 unique_id port 201598 remote_ip 10.8.0.174 201599 username farhad3 201599 mac 201599 bytes_out 0 201599 bytes_in 0 201599 station_ip 5.119.251.92 201599 port 50 201599 unique_id port 201599 remote_ip 10.8.1.38 201600 username motamedi9772 201600 mac 201600 bytes_out 664360 201600 bytes_in 4622020 201600 station_ip 83.122.239.60 201600 port 31 201600 unique_id port 201600 remote_ip 10.8.0.62 201602 username motamedi9772 201602 mac 201602 bytes_out 0 201602 bytes_in 0 201602 station_ip 83.122.239.60 201602 port 31 201602 unique_id port 201602 remote_ip 10.8.0.62 201606 username motamedi9772 201606 mac 201606 bytes_out 0 201606 bytes_in 0 201606 station_ip 83.122.239.60 201606 port 36 201606 unique_id port 201606 remote_ip 10.8.0.62 201607 username motamedi9772 201607 mac 201607 bytes_out 0 201607 bytes_in 0 201607 station_ip 83.122.239.60 201607 port 36 201607 unique_id port 201607 remote_ip 10.8.0.62 201608 username motamedi9772 201608 mac 201608 bytes_out 0 201608 bytes_in 0 201608 station_ip 83.122.239.60 201608 port 36 201608 unique_id port 201608 remote_ip 10.8.0.62 201613 username morteza4424 201613 mac 201613 bytes_out 0 201613 bytes_in 0 201613 station_ip 37.129.39.122 201613 port 32 201613 unique_id port 201615 username mosi 201615 kill_reason Another user logged on this global unique id 201615 mac 201615 bytes_out 0 201615 bytes_in 0 201615 station_ip 151.235.106.19 201615 port 26 201615 unique_id port 201615 remote_ip 10.8.1.118 201617 username meghdad1616 201617 mac 201617 bytes_out 0 201617 bytes_in 0 201617 station_ip 5.119.101.138 201617 port 38 201617 unique_id port 201617 remote_ip 10.8.0.126 201619 username khademi 201619 kill_reason Another user logged on this global unique id 201619 mac 201619 bytes_out 0 201619 bytes_in 0 201619 station_ip 37.129.212.3 201619 port 25 201619 unique_id port 201622 username seyedrezaei2572 201622 mac 201622 bytes_out 0 201622 bytes_in 0 201622 station_ip 5.218.0.33 201622 port 35 201622 unique_id port 201622 remote_ip 10.8.0.186 201623 username motamedi9772 201623 mac 201623 bytes_out 0 201623 bytes_in 0 201623 station_ip 83.122.239.60 201623 port 36 201623 unique_id port 201623 remote_ip 10.8.0.62 201625 username barzegar8595 201625 mac 201625 bytes_out 91621 201625 bytes_in 109759 201625 station_ip 5.134.154.197 201625 port 56 201625 unique_id port 201625 remote_ip 10.8.1.50 201628 username morteza4424 201628 mac 201628 bytes_out 0 201628 bytes_in 0 201614 username morteza4424 201614 mac 201614 bytes_out 0 201614 bytes_in 0 201614 station_ip 37.129.39.122 201614 port 32 201614 unique_id port 201614 remote_ip 10.8.0.70 201618 username motamedi9772 201618 mac 201618 bytes_out 0 201618 bytes_in 0 201618 station_ip 83.122.239.60 201618 port 36 201618 unique_id port 201618 remote_ip 10.8.0.62 201620 username hosseine 201620 kill_reason Another user logged on this global unique id 201620 mac 201620 bytes_out 0 201620 bytes_in 0 201620 station_ip 37.129.158.86 201620 port 29 201620 unique_id port 201620 remote_ip 10.8.0.118 201624 username motamedi9772 201624 mac 201624 bytes_out 0 201624 bytes_in 0 201624 station_ip 83.122.239.60 201624 port 36 201624 unique_id port 201624 remote_ip 10.8.0.62 201626 username motamedi9772 201626 mac 201626 bytes_out 0 201626 bytes_in 0 201626 station_ip 83.122.239.60 201626 port 56 201626 unique_id port 201626 remote_ip 10.8.1.198 201629 username motamedi9772 201629 mac 201629 bytes_out 0 201629 bytes_in 0 201629 station_ip 83.122.239.60 201629 port 39 201629 unique_id port 201629 remote_ip 10.8.0.62 201635 username morteza4424 201635 mac 201635 bytes_out 0 201635 bytes_in 0 201635 station_ip 37.129.39.122 201635 port 58 201635 unique_id port 201635 remote_ip 10.8.1.94 201645 username barzegar 201645 mac 201645 bytes_out 0 201645 bytes_in 0 201645 station_ip 5.120.143.34 201645 port 54 201645 unique_id port 201645 remote_ip 10.8.1.6 201652 username motamedi9772 201652 mac 201652 bytes_out 0 201652 bytes_in 0 201652 station_ip 83.122.239.60 201652 port 54 201652 unique_id port 201652 remote_ip 10.8.1.198 201660 username motamedi9772 201660 mac 201660 bytes_out 0 201660 bytes_in 0 201660 station_ip 83.122.239.60 201660 port 32 201660 unique_id port 201660 remote_ip 10.8.0.62 201665 username dortaj3792 201665 mac 201665 bytes_out 0 201665 bytes_in 0 201665 station_ip 5.119.113.143 201665 port 56 201665 unique_id port 201665 remote_ip 10.8.1.34 201670 username motamedi9772 201670 mac 201670 bytes_out 15586 201670 bytes_in 38890 201670 station_ip 83.122.239.60 201670 port 32 201670 unique_id port 201670 remote_ip 10.8.0.62 201673 username kalantary6037 201673 mac 201673 bytes_out 0 201673 bytes_in 0 201673 station_ip 37.129.201.177 201673 port 59 201673 unique_id port 201673 remote_ip 10.8.1.150 201674 username barzegar 201674 mac 201674 bytes_out 0 201674 bytes_in 0 201674 station_ip 5.120.143.34 201674 port 56 201674 unique_id port 201674 remote_ip 10.8.1.6 201675 username godarzi 201675 mac 201675 bytes_out 0 201675 bytes_in 0 201675 station_ip 5.202.2.157 201675 port 31 201675 unique_id port 201675 remote_ip 10.8.0.146 201686 username alipour1506 201686 mac 201686 bytes_out 0 201686 bytes_in 0 201686 station_ip 151.234.23.177 201686 port 48 201686 unique_id port 201693 username rezaei 201693 kill_reason Another user logged on this global unique id 201693 mac 201693 bytes_out 0 201693 bytes_in 0 201693 station_ip 5.119.163.137 201693 port 56 201693 unique_id port 201693 remote_ip 10.8.1.174 201695 username kharazmi2920 201695 mac 201695 bytes_out 0 201695 bytes_in 0 201695 station_ip 83.123.60.195 201695 port 34 201695 unique_id port 201695 remote_ip 10.8.0.34 201697 username barzegar 201697 mac 201697 bytes_out 3104 201697 bytes_in 5470 201697 station_ip 5.120.143.34 201697 port 58 201697 unique_id port 201697 remote_ip 10.8.1.6 201699 username godarzi 201699 mac 201627 username morteza4424 201627 mac 201627 bytes_out 0 201627 bytes_in 0 201627 station_ip 37.129.39.122 201627 port 36 201627 unique_id port 201627 remote_ip 10.8.0.70 201632 username hosseine 201632 kill_reason Another user logged on this global unique id 201632 mac 201632 bytes_out 0 201632 bytes_in 0 201632 station_ip 37.129.158.86 201632 port 29 201632 unique_id port 201633 username motamedi9772 201633 mac 201633 bytes_out 0 201633 bytes_in 0 201633 station_ip 83.122.239.60 201633 port 36 201633 unique_id port 201633 remote_ip 10.8.0.62 201636 username morteza4424 201636 mac 201636 bytes_out 0 201636 bytes_in 0 201636 station_ip 37.129.39.122 201636 port 58 201636 unique_id port 201636 remote_ip 10.8.1.94 201638 username barzegar 201638 mac 201638 bytes_out 2605 201638 bytes_in 4992 201638 station_ip 5.120.143.34 201638 port 56 201638 unique_id port 201638 remote_ip 10.8.1.6 201641 username morteza4424 201641 mac 201641 bytes_out 0 201641 bytes_in 0 201641 station_ip 37.129.39.122 201641 port 56 201641 unique_id port 201641 remote_ip 10.8.1.94 201644 username sekonji0496 201644 mac 201644 bytes_out 0 201644 bytes_in 0 201644 station_ip 83.122.104.213 201644 port 37 201644 unique_id port 201644 remote_ip 10.8.0.66 201646 username farhad3 201646 mac 201646 bytes_out 3563134 201646 bytes_in 41068497 201646 station_ip 5.120.0.83 201646 port 32 201646 unique_id port 201646 remote_ip 10.8.0.46 201647 username motamedi9772 201647 mac 201647 bytes_out 0 201647 bytes_in 0 201647 station_ip 83.122.239.60 201647 port 54 201647 unique_id port 201647 remote_ip 10.8.1.198 201654 username morteza4424 201654 mac 201654 bytes_out 0 201654 bytes_in 0 201654 station_ip 37.129.39.122 201654 port 32 201654 unique_id port 201654 remote_ip 10.8.0.70 201658 username morteza4424 201658 mac 201658 bytes_out 0 201658 bytes_in 0 201658 station_ip 37.129.39.122 201658 port 54 201658 unique_id port 201658 remote_ip 10.8.1.94 201662 username morteza4424 201662 mac 201662 bytes_out 0 201662 bytes_in 0 201662 station_ip 37.129.39.122 201662 port 58 201662 unique_id port 201662 remote_ip 10.8.1.94 201664 username sekonji0496 201664 mac 201664 bytes_out 0 201664 bytes_in 0 201664 station_ip 83.122.104.213 201664 port 36 201664 unique_id port 201664 remote_ip 10.8.0.66 201666 username sekonji0496 201666 mac 201666 bytes_out 0 201666 bytes_in 0 201666 station_ip 83.122.104.213 201666 port 32 201666 unique_id port 201666 remote_ip 10.8.0.66 201672 username rahim 201672 kill_reason Another user logged on this global unique id 201672 mac 201672 bytes_out 0 201672 bytes_in 0 201672 station_ip 5.120.3.58 201672 port 45 201672 unique_id port 201677 username majidsarmast 201677 kill_reason Another user logged on this global unique id 201677 mac 201677 bytes_out 0 201677 bytes_in 0 201677 station_ip 86.57.113.170 201677 port 57 201677 unique_id port 201679 username malekpoir 201679 mac 201679 bytes_out 841626 201679 bytes_in 3270827 201679 station_ip 5.119.35.181 201679 port 54 201679 unique_id port 201679 remote_ip 10.8.1.70 201681 username barzegar 201681 mac 201681 bytes_out 0 201681 bytes_in 0 201681 station_ip 5.120.143.34 201681 port 32 201681 unique_id port 201681 remote_ip 10.8.0.14 201682 username pourshad 201682 kill_reason Another user logged on this global unique id 201682 mac 201682 bytes_out 0 201682 bytes_in 0 201682 station_ip 5.120.219.248 201682 port 30 201682 unique_id port 201683 username farhad3 201683 mac 201628 station_ip 37.129.39.122 201628 port 36 201628 unique_id port 201628 remote_ip 10.8.0.70 201630 username morteza4424 201630 mac 201630 bytes_out 0 201630 bytes_in 0 201630 station_ip 37.129.39.122 201630 port 36 201630 unique_id port 201630 remote_ip 10.8.0.70 201631 username morteza4424 201631 mac 201631 bytes_out 0 201631 bytes_in 0 201631 station_ip 37.129.39.122 201631 port 36 201631 unique_id port 201631 remote_ip 10.8.0.70 201634 username motamedi9772 201634 mac 201634 bytes_out 0 201634 bytes_in 0 201634 station_ip 83.122.239.60 201634 port 36 201634 unique_id port 201634 remote_ip 10.8.0.62 201637 username rezaei 201637 mac 201637 bytes_out 0 201637 bytes_in 0 201637 station_ip 5.119.163.137 201637 port 54 201637 unique_id port 201637 remote_ip 10.8.1.174 201639 username morteza4424 201639 mac 201639 bytes_out 0 201639 bytes_in 0 201639 station_ip 37.129.39.122 201639 port 58 201639 unique_id port 201639 remote_ip 10.8.1.94 201640 username motamedi9772 201640 mac 201640 bytes_out 0 201640 bytes_in 0 201640 station_ip 83.122.239.60 201640 port 54 201640 unique_id port 201640 remote_ip 10.8.1.198 201642 username motamedi9772 201642 mac 201642 bytes_out 0 201642 bytes_in 0 201642 station_ip 83.122.239.60 201642 port 54 201642 unique_id port 201642 remote_ip 10.8.1.198 201643 username dortaj3792 201643 mac 201643 bytes_out 0 201643 bytes_in 0 201643 station_ip 5.120.84.42 201643 port 22 201643 unique_id port 201643 remote_ip 10.8.0.30 201648 username motamedi9772 201648 mac 201648 bytes_out 0 201648 bytes_in 0 201648 station_ip 83.122.239.60 201648 port 32 201648 unique_id port 201648 remote_ip 10.8.0.62 201649 username motamedi9772 201649 mac 201649 bytes_out 0 201649 bytes_in 0 201649 station_ip 83.122.239.60 201649 port 32 201649 unique_id port 201649 remote_ip 10.8.0.62 201650 username morteza4424 201650 kill_reason Maximum check online fails reached 201650 mac 201650 bytes_out 0 201650 bytes_in 0 201650 station_ip 37.129.39.122 201650 port 22 201650 unique_id port 201651 username khademi 201651 kill_reason Another user logged on this global unique id 201651 mac 201651 bytes_out 0 201651 bytes_in 0 201651 station_ip 37.129.212.3 201651 port 25 201651 unique_id port 201653 username hosseine 201653 mac 201653 bytes_out 0 201653 bytes_in 0 201653 station_ip 37.129.158.86 201653 port 29 201653 unique_id port 201655 username motamedi9772 201655 mac 201655 bytes_out 0 201655 bytes_in 0 201655 station_ip 83.122.239.60 201655 port 29 201655 unique_id port 201655 remote_ip 10.8.0.62 201656 username morteza4424 201656 mac 201656 bytes_out 0 201656 bytes_in 0 201656 station_ip 37.129.39.122 201656 port 32 201656 unique_id port 201656 remote_ip 10.8.0.70 201657 username majidsarmast 201657 kill_reason Another user logged on this global unique id 201657 mac 201657 bytes_out 0 201657 bytes_in 0 201657 station_ip 86.57.113.170 201657 port 57 201657 unique_id port 201659 username barzegar 201659 mac 201659 bytes_out 0 201659 bytes_in 0 201659 station_ip 5.120.143.34 201659 port 54 201659 unique_id port 201659 remote_ip 10.8.1.6 201661 username motamedi9772 201661 mac 201661 bytes_out 0 201661 bytes_in 0 201661 station_ip 83.122.239.60 201661 port 32 201661 unique_id port 201661 remote_ip 10.8.0.62 201663 username mohammadjavad 201663 mac 201663 bytes_out 623986 201663 bytes_in 4279516 201663 station_ip 83.123.204.56 201663 port 38 201663 unique_id port 201663 remote_ip 10.8.0.58 201667 username motamedi9772 201667 mac 201667 bytes_out 0 201667 bytes_in 0 201667 station_ip 83.122.239.60 201667 port 32 201667 unique_id port 201667 remote_ip 10.8.0.62 201668 username pourshad 201668 kill_reason Another user logged on this global unique id 201668 mac 201668 bytes_out 0 201668 bytes_in 0 201668 station_ip 5.120.219.248 201668 port 30 201668 unique_id port 201669 username khademi 201669 kill_reason Another user logged on this global unique id 201669 mac 201669 bytes_out 0 201669 bytes_in 0 201669 station_ip 37.129.212.3 201669 port 25 201669 unique_id port 201671 username farhad3 201671 mac 201671 bytes_out 0 201671 bytes_in 0 201671 station_ip 5.120.0.83 201671 port 56 201671 unique_id port 201671 remote_ip 10.8.1.38 201676 username sekonji0496 201676 mac 201676 bytes_out 0 201676 bytes_in 0 201676 station_ip 83.122.104.213 201676 port 36 201676 unique_id port 201676 remote_ip 10.8.0.66 201678 username farhad3 201678 mac 201678 bytes_out 0 201678 bytes_in 0 201678 station_ip 5.120.0.83 201678 port 58 201678 unique_id port 201678 remote_ip 10.8.1.38 201680 username khademi 201680 kill_reason Another user logged on this global unique id 201680 mac 201680 bytes_out 0 201680 bytes_in 0 201680 station_ip 37.129.212.3 201680 port 25 201680 unique_id port 201689 username milan 201689 kill_reason Another user logged on this global unique id 201689 mac 201689 bytes_out 0 201689 bytes_in 0 201689 station_ip 5.120.38.92 201689 port 51 201689 unique_id port 201689 remote_ip 10.8.1.182 201690 username barzegar 201690 mac 201690 bytes_out 6936 201690 bytes_in 14268 201690 station_ip 5.120.143.34 201690 port 58 201690 unique_id port 201690 remote_ip 10.8.1.6 201691 username farhad3 201691 mac 201691 bytes_out 0 201691 bytes_in 0 201691 station_ip 5.120.0.83 201691 port 58 201691 unique_id port 201691 remote_ip 10.8.1.38 201694 username esmaeilkazemi 201694 mac 201694 bytes_out 0 201694 bytes_in 0 201694 station_ip 83.123.48.232 201694 port 32 201694 unique_id port 201694 remote_ip 10.8.0.86 201700 username seyedrezaei2572 201700 mac 201700 bytes_out 0 201700 bytes_in 0 201700 station_ip 5.218.0.33 201700 port 35 201700 unique_id port 201700 remote_ip 10.8.0.186 201702 username pourshad 201702 mac 201702 bytes_out 0 201702 bytes_in 0 201702 station_ip 5.120.219.248 201702 port 30 201702 unique_id port 201703 username ahmadi1 201703 mac 201703 bytes_out 0 201703 bytes_in 0 201703 station_ip 83.122.157.83 201703 port 34 201703 unique_id port 201703 remote_ip 10.8.0.42 201706 username barzegar 201706 mac 201706 bytes_out 0 201706 bytes_in 0 201706 station_ip 5.120.143.34 201706 port 58 201706 unique_id port 201706 remote_ip 10.8.1.6 201713 username fezealinaghi 201713 kill_reason Another user logged on this global unique id 201713 mac 201713 bytes_out 0 201713 bytes_in 0 201713 station_ip 37.129.252.60 201713 port 28 201713 unique_id port 201714 username motamedi9772 201714 mac 201714 bytes_out 0 201714 bytes_in 0 201714 station_ip 83.122.213.244 201714 port 50 201714 unique_id port 201714 remote_ip 10.8.1.198 201716 username barzegar 201716 mac 201716 bytes_out 3748 201716 bytes_in 6177 201716 station_ip 5.120.143.34 201716 port 58 201716 unique_id port 201716 remote_ip 10.8.1.6 201719 username hadibarzegar 201719 kill_reason Another user logged on this global unique id 201719 mac 201719 bytes_out 0 201719 bytes_in 0 201719 station_ip 5.120.115.115 201719 port 34 201719 unique_id port 201719 remote_ip 10.8.0.170 201683 bytes_out 0 201683 bytes_in 0 201683 station_ip 5.120.0.83 201683 port 58 201683 unique_id port 201683 remote_ip 10.8.1.38 201684 username fezealinaghi 201684 kill_reason Another user logged on this global unique id 201684 mac 201684 bytes_out 0 201684 bytes_in 0 201684 station_ip 37.129.252.60 201684 port 28 201684 unique_id port 201685 username motamedi9772 201685 mac 201685 bytes_out 0 201685 bytes_in 0 201685 station_ip 83.122.145.92 201685 port 32 201685 unique_id port 201685 remote_ip 10.8.0.62 201687 username kalantary6037 201687 mac 201687 bytes_out 0 201687 bytes_in 0 201687 station_ip 37.129.155.21 201687 port 58 201687 unique_id port 201687 remote_ip 10.8.1.150 201688 username mosi 201688 kill_reason Another user logged on this global unique id 201688 mac 201688 bytes_out 0 201688 bytes_in 0 201688 station_ip 151.235.106.19 201688 port 26 201688 unique_id port 201692 username barzegar8595 201692 mac 201692 bytes_out 0 201692 bytes_in 0 201692 station_ip 5.134.154.197 201692 port 58 201692 unique_id port 201692 remote_ip 10.8.1.50 201696 username esmaeilkazemi 201696 mac 201696 bytes_out 0 201696 bytes_in 0 201696 station_ip 83.123.48.232 201696 port 32 201696 unique_id port 201696 remote_ip 10.8.0.86 201698 username majidsarmast 201698 mac 201698 bytes_out 0 201698 bytes_in 0 201698 station_ip 86.57.113.170 201698 port 57 201698 unique_id port 201705 username mammad 201705 unique_id port 201705 terminate_cause User-Request 201705 bytes_out 24594005 201705 bytes_in 486448018 201705 station_ip 5.119.58.253 201705 port 15729815 201705 nas_port_type Virtual 201705 remote_ip 5.5.5.91 201708 username kalantary6037 201708 mac 201708 bytes_out 0 201708 bytes_in 0 201708 station_ip 37.129.199.57 201708 port 58 201708 unique_id port 201708 remote_ip 10.8.1.150 201710 username motamedi9772 201710 mac 201710 bytes_out 0 201710 bytes_in 0 201710 station_ip 83.122.213.244 201710 port 35 201710 unique_id port 201710 remote_ip 10.8.0.62 201711 username motamedi9772 201711 mac 201711 bytes_out 0 201711 bytes_in 0 201711 station_ip 83.122.213.244 201711 port 50 201711 unique_id port 201711 remote_ip 10.8.1.198 201717 username motamedi9772 201717 mac 201717 bytes_out 0 201717 bytes_in 0 201717 station_ip 83.122.213.244 201717 port 36 201717 unique_id port 201717 remote_ip 10.8.0.62 201722 username alirezaza 201722 unique_id port 201722 terminate_cause User-Request 201722 bytes_out 0 201722 bytes_in 0 201722 station_ip 5.119.63.130 201722 port 15729821 201722 nas_port_type Virtual 201722 remote_ip 5.5.5.95 201723 username motamedi9772 201723 mac 201723 bytes_out 0 201723 bytes_in 0 201723 station_ip 83.122.213.244 201723 port 38 201723 unique_id port 201723 remote_ip 10.8.0.62 201725 username hashtadani5 201725 mac 201725 bytes_out 0 201725 bytes_in 0 201725 station_ip 83.122.49.242 201725 port 37 201725 unique_id port 201725 remote_ip 10.8.0.150 201727 username hashtadani5 201727 mac 201727 bytes_out 0 201727 bytes_in 0 201727 station_ip 83.122.49.242 201727 port 38 201727 unique_id port 201727 remote_ip 10.8.0.150 201729 username motamedi9772 201729 mac 201729 bytes_out 0 201729 bytes_in 0 201729 station_ip 83.122.213.244 201729 port 37 201729 unique_id port 201729 remote_ip 10.8.0.62 201732 username hashtadani5 201732 mac 201732 bytes_out 0 201732 bytes_in 0 201732 station_ip 83.122.49.242 201732 port 37 201732 unique_id port 201732 remote_ip 10.8.0.150 201736 username hashtadani5 201736 mac 201736 bytes_out 0 201699 bytes_out 0 201699 bytes_in 0 201699 station_ip 5.202.2.157 201699 port 59 201699 unique_id port 201699 remote_ip 10.8.1.78 201701 username esmaeilkazemi 201701 mac 201701 bytes_out 0 201701 bytes_in 0 201701 station_ip 83.123.48.232 201701 port 34 201701 unique_id port 201701 remote_ip 10.8.0.86 201704 username esmaeilkazemi 201704 mac 201704 bytes_out 0 201704 bytes_in 0 201704 station_ip 83.123.48.232 201704 port 30 201704 unique_id port 201704 remote_ip 10.8.0.86 201707 username rashidi4690 201707 mac 201707 bytes_out 0 201707 bytes_in 0 201707 station_ip 5.120.143.173 201707 port 50 201707 unique_id port 201707 remote_ip 10.8.1.158 201709 username motamedi9772 201709 mac 201709 bytes_out 0 201709 bytes_in 0 201709 station_ip 83.122.213.244 201709 port 35 201709 unique_id port 201709 remote_ip 10.8.0.62 201712 username barzegar8595 201712 mac 201712 bytes_out 0 201712 bytes_in 0 201712 station_ip 5.134.154.197 201712 port 36 201712 unique_id port 201712 remote_ip 10.8.0.82 201715 username esmaeilkazemi 201715 mac 201715 bytes_out 13584 201715 bytes_in 25424 201715 station_ip 83.123.48.232 201715 port 36 201715 unique_id port 201715 remote_ip 10.8.0.86 201718 username esmaeilkazemi 201718 mac 201718 bytes_out 0 201718 bytes_in 0 201718 station_ip 83.123.48.232 201718 port 38 201718 unique_id port 201718 remote_ip 10.8.0.86 201721 username motamedi9772 201721 mac 201721 bytes_out 0 201721 bytes_in 0 201721 station_ip 83.122.213.244 201721 port 50 201721 unique_id port 201721 remote_ip 10.8.1.198 201724 username hashtadani5 201724 mac 201724 bytes_out 1685234 201724 bytes_in 20055865 201724 station_ip 83.122.49.242 201724 port 37 201724 unique_id port 201724 remote_ip 10.8.0.150 201728 username motamedi9772 201728 mac 201728 bytes_out 0 201728 bytes_in 0 201728 station_ip 83.122.213.244 201728 port 50 201728 unique_id port 201728 remote_ip 10.8.1.198 201730 username motamedi9772 201730 mac 201730 bytes_out 0 201730 bytes_in 0 201730 station_ip 83.122.213.244 201730 port 38 201730 unique_id port 201730 remote_ip 10.8.0.62 201734 username motamedi9772 201734 mac 201734 bytes_out 0 201734 bytes_in 0 201734 station_ip 83.122.213.244 201734 port 37 201734 unique_id port 201734 remote_ip 10.8.0.62 201735 username aminvpn 201735 unique_id port 201735 terminate_cause User-Request 201735 bytes_out 10391450 201735 bytes_in 293506492 201735 station_ip 31.57.143.131 201735 port 15729819 201735 nas_port_type Virtual 201735 remote_ip 5.5.5.93 201738 username alirezaza 201738 unique_id port 201738 terminate_cause Lost-Carrier 201738 bytes_out 418433 201738 bytes_in 6365249 201738 station_ip 5.119.139.179 201738 port 15729823 201738 nas_port_type Virtual 201738 remote_ip 5.5.5.98 201745 username hamid1430 201745 mac 201745 bytes_out 0 201745 bytes_in 0 201745 station_ip 37.129.233.229 201745 port 35 201745 unique_id port 201748 username hadibarzegar 201748 kill_reason Another user logged on this global unique id 201748 mac 201748 bytes_out 0 201748 bytes_in 0 201748 station_ip 5.120.115.115 201748 port 34 201748 unique_id port 201750 username fezealinaghi 201750 kill_reason Another user logged on this global unique id 201750 mac 201750 bytes_out 0 201750 bytes_in 0 201750 station_ip 37.129.252.60 201750 port 28 201750 unique_id port 201751 username motamedi9772 201751 mac 201751 bytes_out 0 201751 bytes_in 0 201751 station_ip 83.122.213.244 201751 port 29 201751 unique_id port 201751 remote_ip 10.8.0.62 201752 username barzegar 201752 mac 201720 username hamid.e 201720 unique_id port 201720 terminate_cause User-Request 201720 bytes_out 8137576 201720 bytes_in 162270077 201720 station_ip 31.56.113.143 201720 port 15729806 201720 nas_port_type Virtual 201720 remote_ip 5.5.5.111 201726 username alirezaza 201726 unique_id port 201726 terminate_cause Lost-Carrier 201726 bytes_out 6645 201726 bytes_in 10233 201726 station_ip 5.119.63.130 201726 port 15729822 201726 nas_port_type Virtual 201726 remote_ip 5.5.5.95 201731 username saeed9658 201731 mac 201731 bytes_out 0 201731 bytes_in 0 201731 station_ip 5.120.160.236 201731 port 57 201731 unique_id port 201731 remote_ip 10.8.1.194 201733 username rezaei 201733 kill_reason Another user logged on this global unique id 201733 mac 201733 bytes_out 0 201733 bytes_in 0 201733 station_ip 5.119.163.137 201733 port 56 201733 unique_id port 201737 username hamid1430 201737 kill_reason Another user logged on this global unique id 201737 mac 201737 bytes_out 0 201737 bytes_in 0 201737 station_ip 37.129.233.229 201737 port 35 201737 unique_id port 201737 remote_ip 10.8.0.110 201741 username motamedi9772 201741 mac 201741 bytes_out 7169 201741 bytes_in 12577 201741 station_ip 83.122.213.244 201741 port 37 201741 unique_id port 201741 remote_ip 10.8.0.62 201742 username hashtadani5 201742 mac 201742 bytes_out 0 201742 bytes_in 0 201742 station_ip 83.122.49.242 201742 port 38 201742 unique_id port 201742 remote_ip 10.8.0.150 201744 username hatami 201744 mac 201744 bytes_out 1532306 201744 bytes_in 10808586 201744 station_ip 151.235.111.197 201744 port 29 201744 unique_id port 201744 remote_ip 10.8.0.78 201746 username motamedi9772 201746 mac 201746 bytes_out 0 201746 bytes_in 0 201746 station_ip 83.122.213.244 201746 port 50 201746 unique_id port 201746 remote_ip 10.8.1.198 201747 username yaghobi 201747 mac 201747 bytes_out 1823289 201747 bytes_in 19874737 201747 station_ip 37.129.153.216 201747 port 30 201747 unique_id port 201747 remote_ip 10.8.0.174 201753 username farhad3 201753 kill_reason Another user logged on this global unique id 201753 mac 201753 bytes_out 0 201753 bytes_in 0 201753 station_ip 5.120.0.83 201753 port 59 201753 unique_id port 201753 remote_ip 10.8.1.38 201755 username motamedi9772 201755 mac 201755 bytes_out 0 201755 bytes_in 0 201755 station_ip 83.122.213.244 201755 port 58 201755 unique_id port 201755 remote_ip 10.8.1.198 201757 username motamedi9772 201757 mac 201757 bytes_out 0 201757 bytes_in 0 201757 station_ip 83.122.213.244 201757 port 30 201757 unique_id port 201757 remote_ip 10.8.0.62 201759 username alirezaza 201759 unique_id port 201759 terminate_cause Lost-Carrier 201759 bytes_out 1769055 201759 bytes_in 55094439 201759 station_ip 5.119.128.12 201759 port 15729824 201759 nas_port_type Virtual 201759 remote_ip 5.5.5.100 201760 username motamedi9772 201760 mac 201760 bytes_out 0 201760 bytes_in 0 201760 station_ip 83.122.213.244 201760 port 30 201760 unique_id port 201760 remote_ip 10.8.0.62 201762 username motamedi9772 201762 mac 201762 bytes_out 0 201762 bytes_in 0 201762 station_ip 83.122.213.244 201762 port 30 201762 unique_id port 201762 remote_ip 10.8.0.62 201763 username hadibarzegar 201763 kill_reason Another user logged on this global unique id 201763 mac 201763 bytes_out 0 201763 bytes_in 0 201763 station_ip 5.120.115.115 201763 port 34 201763 unique_id port 201766 username motamedi9772 201766 mac 201766 bytes_out 0 201766 bytes_in 0 201766 station_ip 83.122.213.244 201766 port 30 201766 unique_id port 201766 remote_ip 10.8.0.62 201767 username fezealinaghi 201736 bytes_in 0 201736 station_ip 83.122.49.242 201736 port 38 201736 unique_id port 201736 remote_ip 10.8.0.150 201739 username hashtadani5 201739 mac 201739 bytes_out 1710 201739 bytes_in 4057 201739 station_ip 83.122.49.242 201739 port 38 201739 unique_id port 201739 remote_ip 10.8.0.150 201740 username sekonji0496 201740 mac 201740 bytes_out 3613102 201740 bytes_in 23469116 201740 station_ip 83.122.104.213 201740 port 31 201740 unique_id port 201740 remote_ip 10.8.0.66 201743 username barzegar 201743 mac 201743 bytes_out 6271 201743 bytes_in 13863 201743 station_ip 5.120.143.34 201743 port 50 201743 unique_id port 201743 remote_ip 10.8.1.6 201749 username motamedi9772 201749 mac 201749 bytes_out 9788 201749 bytes_in 19180 201749 station_ip 83.122.213.244 201749 port 50 201749 unique_id port 201749 remote_ip 10.8.1.198 201754 username motamedi9772 201754 mac 201754 bytes_out 0 201754 bytes_in 0 201754 station_ip 83.122.213.244 201754 port 58 201754 unique_id port 201754 remote_ip 10.8.1.198 201756 username motamedi9772 201756 mac 201756 bytes_out 0 201756 bytes_in 0 201756 station_ip 83.122.213.244 201756 port 58 201756 unique_id port 201756 remote_ip 10.8.1.198 201771 username motamedi9772 201771 mac 201771 bytes_out 0 201771 bytes_in 0 201771 station_ip 83.122.213.244 201771 port 58 201771 unique_id port 201771 remote_ip 10.8.1.198 201772 username motamedi9772 201772 mac 201772 bytes_out 0 201772 bytes_in 0 201772 station_ip 83.122.213.244 201772 port 50 201772 unique_id port 201772 remote_ip 10.8.1.198 201775 username motamedi9772 201775 mac 201775 bytes_out 0 201775 bytes_in 0 201775 station_ip 83.122.213.244 201775 port 50 201775 unique_id port 201775 remote_ip 10.8.1.198 201779 username motamedi9772 201779 mac 201779 bytes_out 0 201779 bytes_in 0 201779 station_ip 83.122.213.244 201779 port 30 201779 unique_id port 201779 remote_ip 10.8.0.62 201782 username motamedi9772 201782 mac 201782 bytes_out 0 201782 bytes_in 0 201782 station_ip 83.122.213.244 201782 port 29 201782 unique_id port 201782 remote_ip 10.8.0.62 201783 username motamedi9772 201783 mac 201783 bytes_out 0 201783 bytes_in 0 201783 station_ip 83.122.213.244 201783 port 29 201783 unique_id port 201783 remote_ip 10.8.0.62 201784 username morteza4424 201784 kill_reason Another user logged on this global unique id 201784 mac 201784 bytes_out 0 201784 bytes_in 0 201784 station_ip 37.129.103.194 201784 port 29 201784 unique_id port 201786 username motamedi9772 201786 mac 201786 bytes_out 0 201786 bytes_in 0 201786 station_ip 83.122.213.244 201786 port 29 201786 unique_id port 201786 remote_ip 10.8.0.62 201788 username motamedi9772 201788 mac 201788 bytes_out 0 201788 bytes_in 0 201788 station_ip 83.122.213.244 201788 port 29 201788 unique_id port 201788 remote_ip 10.8.0.62 201792 username barzegar 201792 mac 201792 bytes_out 0 201792 bytes_in 0 201792 station_ip 5.120.143.34 201792 port 56 201792 unique_id port 201792 remote_ip 10.8.1.6 201796 username motamedi9772 201796 mac 201796 bytes_out 0 201796 bytes_in 0 201796 station_ip 83.122.213.244 201796 port 29 201796 unique_id port 201796 remote_ip 10.8.0.62 201802 username motamedi9772 201802 mac 201802 bytes_out 0 201802 bytes_in 0 201802 station_ip 83.122.213.244 201802 port 51 201802 unique_id port 201802 remote_ip 10.8.1.198 201803 username mammad 201803 unique_id port 201803 terminate_cause User-Request 201803 bytes_out 2771048 201803 bytes_in 59991468 201752 bytes_out 27560 201752 bytes_in 38758 201752 station_ip 5.120.143.34 201752 port 58 201752 unique_id port 201752 remote_ip 10.8.1.6 201758 username kalantary6037 201758 mac 201758 bytes_out 0 201758 bytes_in 0 201758 station_ip 37.129.139.41 201758 port 50 201758 unique_id port 201758 remote_ip 10.8.1.150 201761 username motamedi9772 201761 mac 201761 bytes_out 0 201761 bytes_in 0 201761 station_ip 83.122.213.244 201761 port 30 201761 unique_id port 201761 remote_ip 10.8.0.62 201764 username motamedi9772 201764 mac 201764 bytes_out 0 201764 bytes_in 0 201764 station_ip 83.122.213.244 201764 port 30 201764 unique_id port 201764 remote_ip 10.8.0.62 201765 username hatami 201765 mac 201765 bytes_out 0 201765 bytes_in 0 201765 station_ip 151.235.111.197 201765 port 29 201765 unique_id port 201765 remote_ip 10.8.0.78 201773 username farhad3 201773 kill_reason Another user logged on this global unique id 201773 mac 201773 bytes_out 0 201773 bytes_in 0 201773 station_ip 5.120.0.83 201773 port 59 201773 unique_id port 201774 username rezaei 201774 mac 201774 bytes_out 0 201774 bytes_in 0 201774 station_ip 5.119.163.137 201774 port 56 201774 unique_id port 201778 username motamedi9772 201778 mac 201778 bytes_out 0 201778 bytes_in 0 201778 station_ip 83.122.213.244 201778 port 30 201778 unique_id port 201778 remote_ip 10.8.0.62 201780 username yaghobi 201780 mac 201780 bytes_out 0 201780 bytes_in 0 201780 station_ip 37.129.236.112 201780 port 29 201780 unique_id port 201780 remote_ip 10.8.0.174 201793 username milan 201793 mac 201793 bytes_out 0 201793 bytes_in 0 201793 station_ip 5.120.38.92 201793 port 51 201793 unique_id port 201795 username hashtadani5 201795 mac 201795 bytes_out 651701 201795 bytes_in 6774795 201795 station_ip 83.123.206.132 201795 port 50 201795 unique_id port 201795 remote_ip 10.8.1.162 201799 username fezealinaghi 201799 kill_reason Another user logged on this global unique id 201799 mac 201799 bytes_out 0 201799 bytes_in 0 201799 station_ip 37.129.252.60 201799 port 28 201799 unique_id port 201801 username morteza4424 201801 kill_reason Another user logged on this global unique id 201801 mac 201801 bytes_out 0 201801 bytes_in 0 201801 station_ip 37.129.103.194 201801 port 30 201801 unique_id port 201801 remote_ip 10.8.0.70 201805 username kalantary6037 201805 mac 201805 bytes_out 0 201805 bytes_in 0 201805 station_ip 37.129.225.217 201805 port 50 201805 unique_id port 201805 remote_ip 10.8.1.150 201807 username yaghobi 201807 mac 201807 bytes_out 0 201807 bytes_in 0 201807 station_ip 37.129.236.112 201807 port 29 201807 unique_id port 201807 remote_ip 10.8.0.174 201808 username motamedi9772 201808 mac 201808 bytes_out 0 201808 bytes_in 0 201808 station_ip 83.122.213.244 201808 port 50 201808 unique_id port 201808 remote_ip 10.8.1.198 201815 username motamedi9772 201815 mac 201815 bytes_out 0 201815 bytes_in 0 201815 station_ip 83.122.213.244 201815 port 28 201815 unique_id port 201815 remote_ip 10.8.0.62 201817 username motamedi9772 201817 mac 201817 bytes_out 29992 201817 bytes_in 50832 201817 station_ip 83.122.213.244 201817 port 45 201817 unique_id port 201817 remote_ip 10.8.1.198 201820 username houshang 201820 mac 201820 bytes_out 0 201820 bytes_in 0 201820 station_ip 5.120.13.98 201820 port 32 201820 unique_id port 201820 remote_ip 10.8.0.50 201822 username barzegar 201822 mac 201822 bytes_out 0 201822 bytes_in 0 201822 station_ip 5.120.143.34 201822 port 50 201767 kill_reason Another user logged on this global unique id 201767 mac 201767 bytes_out 0 201767 bytes_in 0 201767 station_ip 37.129.252.60 201767 port 28 201767 unique_id port 201768 username rahim 201768 kill_reason Another user logged on this global unique id 201768 mac 201768 bytes_out 0 201768 bytes_in 0 201768 station_ip 5.120.3.58 201768 port 45 201768 unique_id port 201769 username barzegar 201769 mac 201769 bytes_out 0 201769 bytes_in 0 201769 station_ip 5.120.143.34 201769 port 50 201769 unique_id port 201769 remote_ip 10.8.1.6 201770 username hashtadani5 201770 mac 201770 bytes_out 4527856 201770 bytes_in 47696294 201770 station_ip 83.122.49.242 201770 port 57 201770 unique_id port 201770 remote_ip 10.8.1.162 201776 username motamedi9772 201776 mac 201776 bytes_out 0 201776 bytes_in 0 201776 station_ip 83.122.213.244 201776 port 30 201776 unique_id port 201776 remote_ip 10.8.0.62 201777 username motamedi9772 201777 mac 201777 bytes_out 0 201777 bytes_in 0 201777 station_ip 83.122.213.244 201777 port 30 201777 unique_id port 201777 remote_ip 10.8.0.62 201781 username hadibarzegar 201781 kill_reason Another user logged on this global unique id 201781 mac 201781 bytes_out 0 201781 bytes_in 0 201781 station_ip 5.120.115.115 201781 port 34 201781 unique_id port 201785 username morteza4424 201785 kill_reason Another user logged on this global unique id 201785 mac 201785 bytes_out 0 201785 bytes_in 0 201785 station_ip 37.129.103.194 201785 port 29 201785 unique_id port 201787 username malekpoir 201787 kill_reason Another user logged on this global unique id 201787 mac 201787 bytes_out 0 201787 bytes_in 0 201787 station_ip 5.119.35.181 201787 port 54 201787 unique_id port 201787 remote_ip 10.8.1.70 201789 username motamedi9772 201789 mac 201789 bytes_out 0 201789 bytes_in 0 201789 station_ip 83.122.213.244 201789 port 29 201789 unique_id port 201789 remote_ip 10.8.0.62 201790 username esmaeilkazemi 201790 mac 201790 bytes_out 0 201790 bytes_in 0 201790 station_ip 83.123.48.232 201790 port 31 201790 unique_id port 201790 remote_ip 10.8.0.86 201791 username seyedrezaei2572 201791 mac 201791 bytes_out 0 201791 bytes_in 0 201791 station_ip 5.218.0.33 201791 port 32 201791 unique_id port 201791 remote_ip 10.8.0.186 201794 username motamedi9772 201794 mac 201794 bytes_out 0 201794 bytes_in 0 201794 station_ip 83.122.213.244 201794 port 29 201794 unique_id port 201794 remote_ip 10.8.0.62 201797 username motamedi9772 201797 mac 201797 bytes_out 0 201797 bytes_in 0 201797 station_ip 83.122.213.244 201797 port 32 201797 unique_id port 201797 remote_ip 10.8.0.62 201798 username motamedi9772 201798 mac 201798 bytes_out 0 201798 bytes_in 0 201798 station_ip 83.122.213.244 201798 port 32 201798 unique_id port 201798 remote_ip 10.8.0.62 201800 username motamedi9772 201800 mac 201800 bytes_out 0 201800 bytes_in 0 201800 station_ip 83.122.213.244 201800 port 32 201800 unique_id port 201800 remote_ip 10.8.0.62 201804 username mosi 201804 kill_reason Another user logged on this global unique id 201804 mac 201804 bytes_out 0 201804 bytes_in 0 201804 station_ip 151.235.106.19 201804 port 26 201804 unique_id port 201810 username barzegar 201810 mac 201810 bytes_out 0 201810 bytes_in 0 201810 station_ip 5.120.143.34 201810 port 51 201810 unique_id port 201810 remote_ip 10.8.1.6 201812 username rahim 201812 mac 201812 bytes_out 0 201812 bytes_in 0 201812 station_ip 5.120.3.58 201812 port 45 201812 unique_id port 201814 username motamedi9772 201814 mac 201803 station_ip 5.119.58.253 201803 port 15729825 201803 nas_port_type Virtual 201803 remote_ip 5.5.5.91 201806 username fezealinaghi 201806 mac 201806 bytes_out 0 201806 bytes_in 0 201806 station_ip 37.129.252.60 201806 port 28 201806 unique_id port 201809 username hadibarzegar 201809 kill_reason Another user logged on this global unique id 201809 mac 201809 bytes_out 0 201809 bytes_in 0 201809 station_ip 5.120.115.115 201809 port 34 201809 unique_id port 201811 username farhad3 201811 mac 201811 bytes_out 0 201811 bytes_in 0 201811 station_ip 5.120.0.83 201811 port 59 201811 unique_id port 201813 username morteza4424 201813 kill_reason Another user logged on this global unique id 201813 mac 201813 bytes_out 0 201813 bytes_in 0 201813 station_ip 37.129.103.194 201813 port 30 201813 unique_id port 201816 username sabaghnezhad 201816 mac 201816 bytes_out 0 201816 bytes_in 0 201816 station_ip 83.123.201.177 201816 port 33 201816 unique_id port 201816 remote_ip 10.8.0.18 201818 username motamedi9772 201818 mac 201818 bytes_out 0 201818 bytes_in 0 201818 station_ip 83.122.213.244 201818 port 45 201818 unique_id port 201818 remote_ip 10.8.1.198 201825 username motamedi9772 201825 mac 201825 bytes_out 0 201825 bytes_in 0 201825 station_ip 83.122.213.244 201825 port 50 201825 unique_id port 201825 remote_ip 10.8.1.198 201828 username motamedi9772 201828 mac 201828 bytes_out 0 201828 bytes_in 0 201828 station_ip 83.122.213.244 201828 port 28 201828 unique_id port 201828 remote_ip 10.8.0.62 201830 username malekpoir 201830 mac 201830 bytes_out 0 201830 bytes_in 0 201830 station_ip 5.119.35.181 201830 port 54 201830 unique_id port 201831 username motamedi9772 201831 mac 201831 bytes_out 0 201831 bytes_in 0 201831 station_ip 83.122.213.244 201831 port 45 201831 unique_id port 201831 remote_ip 10.8.1.198 201836 username aminvpn 201836 unique_id port 201836 terminate_cause Lost-Carrier 201836 bytes_out 9080846 201836 bytes_in 266997420 201836 station_ip 31.57.143.131 201836 port 15729826 201836 nas_port_type Virtual 201836 remote_ip 5.5.5.93 201838 username motamedi9772 201838 mac 201838 bytes_out 0 201838 bytes_in 0 201838 station_ip 83.122.213.244 201838 port 28 201838 unique_id port 201838 remote_ip 10.8.0.62 201840 username barzegar 201840 mac 201840 bytes_out 0 201840 bytes_in 0 201840 station_ip 5.120.143.34 201840 port 51 201840 unique_id port 201840 remote_ip 10.8.1.6 201842 username khalili2 201842 kill_reason Another user logged on this global unique id 201842 mac 201842 bytes_out 0 201842 bytes_in 0 201842 station_ip 5.119.180.81 201842 port 46 201842 unique_id port 201843 username motamedi9772 201843 mac 201843 bytes_out 0 201843 bytes_in 0 201843 station_ip 83.122.213.244 201843 port 28 201843 unique_id port 201843 remote_ip 10.8.0.62 201844 username motamedi9772 201844 mac 201844 bytes_out 0 201844 bytes_in 0 201844 station_ip 83.122.213.244 201844 port 28 201844 unique_id port 201844 remote_ip 10.8.0.62 201847 username motamedi9772 201847 mac 201847 bytes_out 0 201847 bytes_in 0 201847 station_ip 83.122.213.244 201847 port 29 201847 unique_id port 201847 remote_ip 10.8.0.62 201848 username motamedi9772 201848 mac 201848 bytes_out 0 201848 bytes_in 0 201848 station_ip 83.122.213.244 201848 port 29 201848 unique_id port 201848 remote_ip 10.8.0.62 201849 username motamedi9772 201849 mac 201849 bytes_out 0 201849 bytes_in 0 201849 station_ip 83.122.213.244 201849 port 29 201849 unique_id port 201849 remote_ip 10.8.0.62 201814 bytes_out 0 201814 bytes_in 0 201814 station_ip 83.122.213.244 201814 port 28 201814 unique_id port 201814 remote_ip 10.8.0.62 201819 username motamedi9772 201819 mac 201819 bytes_out 0 201819 bytes_in 0 201819 station_ip 83.122.213.244 201819 port 28 201819 unique_id port 201819 remote_ip 10.8.0.62 201821 username morteza4424 201821 mac 201821 bytes_out 0 201821 bytes_in 0 201821 station_ip 37.129.103.194 201821 port 30 201821 unique_id port 201824 username hadibarzegar 201824 kill_reason Another user logged on this global unique id 201824 mac 201824 bytes_out 0 201824 bytes_in 0 201824 station_ip 5.120.115.115 201824 port 34 201824 unique_id port 201826 username morteza4424 201826 mac 201826 bytes_out 0 201826 bytes_in 0 201826 station_ip 37.129.103.194 201826 port 28 201826 unique_id port 201826 remote_ip 10.8.0.70 201832 username motamedi9772 201832 mac 201832 bytes_out 0 201832 bytes_in 0 201832 station_ip 83.122.213.244 201832 port 50 201832 unique_id port 201832 remote_ip 10.8.1.198 201834 username morteza4424 201834 mac 201834 bytes_out 2967 201834 bytes_in 5363 201834 station_ip 37.129.103.194 201834 port 28 201834 unique_id port 201834 remote_ip 10.8.0.70 201845 username hadibarzegar 201845 kill_reason Another user logged on this global unique id 201845 mac 201845 bytes_out 0 201845 bytes_in 0 201845 station_ip 5.120.115.115 201845 port 34 201845 unique_id port 201851 username barzegar 201851 mac 201851 bytes_out 0 201851 bytes_in 0 201851 station_ip 5.120.143.34 201851 port 51 201851 unique_id port 201851 remote_ip 10.8.1.6 201852 username motamedi9772 201852 mac 201852 bytes_out 0 201852 bytes_in 0 201852 station_ip 83.122.213.244 201852 port 51 201852 unique_id port 201852 remote_ip 10.8.1.198 201854 username motamedi9772 201854 mac 201854 bytes_out 0 201854 bytes_in 0 201854 station_ip 83.122.213.244 201854 port 29 201854 unique_id port 201854 remote_ip 10.8.0.62 201855 username motamedi9772 201855 mac 201855 bytes_out 0 201855 bytes_in 0 201855 station_ip 83.122.213.244 201855 port 29 201855 unique_id port 201855 remote_ip 10.8.0.62 201856 username motamedi9772 201856 mac 201856 bytes_out 0 201856 bytes_in 0 201856 station_ip 83.122.213.244 201856 port 29 201856 unique_id port 201856 remote_ip 10.8.0.62 201860 username motamedi9772 201860 mac 201860 bytes_out 0 201860 bytes_in 0 201860 station_ip 83.122.213.244 201860 port 29 201860 unique_id port 201860 remote_ip 10.8.0.62 201861 username barzegar 201861 mac 201861 bytes_out 0 201861 bytes_in 0 201861 station_ip 5.120.143.34 201861 port 29 201861 unique_id port 201861 remote_ip 10.8.0.14 201865 username motamedi9772 201865 mac 201865 bytes_out 0 201865 bytes_in 0 201865 station_ip 83.122.213.244 201865 port 29 201865 unique_id port 201865 remote_ip 10.8.0.62 201869 username rezaei 201869 mac 201869 bytes_out 357226 201869 bytes_in 1886772 201869 station_ip 5.119.163.137 201869 port 51 201869 unique_id port 201869 remote_ip 10.8.1.174 201871 username khademi 201871 kill_reason Another user logged on this global unique id 201871 mac 201871 bytes_out 0 201871 bytes_in 0 201871 station_ip 37.129.212.3 201871 port 25 201871 unique_id port 201873 username motamedi9772 201873 mac 201873 bytes_out 0 201873 bytes_in 0 201873 station_ip 83.122.213.244 201873 port 51 201873 unique_id port 201873 remote_ip 10.8.1.198 201880 username barzegar 201880 mac 201880 bytes_out 0 201880 bytes_in 0 201880 station_ip 5.120.143.34 201822 unique_id port 201822 remote_ip 10.8.1.6 201823 username motamedi9772 201823 mac 201823 bytes_out 0 201823 bytes_in 0 201823 station_ip 83.122.213.244 201823 port 50 201823 unique_id port 201823 remote_ip 10.8.1.198 201827 username kalantary6037 201827 mac 201827 bytes_out 734746 201827 bytes_in 5877607 201827 station_ip 37.129.211.213 201827 port 45 201827 unique_id port 201827 remote_ip 10.8.1.150 201829 username morteza4424 201829 mac 201829 bytes_out 0 201829 bytes_in 0 201829 station_ip 37.129.103.194 201829 port 45 201829 unique_id port 201829 remote_ip 10.8.1.94 201833 username motamedi9772 201833 kill_reason Maximum check online fails reached 201833 mac 201833 bytes_out 0 201833 bytes_in 0 201833 station_ip 83.122.213.244 201833 port 45 201833 unique_id port 201835 username motamedi9772 201835 mac 201835 bytes_out 0 201835 bytes_in 0 201835 station_ip 83.122.213.244 201835 port 50 201835 unique_id port 201835 remote_ip 10.8.1.198 201837 username motamedi9772 201837 mac 201837 bytes_out 227580 201837 bytes_in 4012263 201837 station_ip 83.122.213.244 201837 port 28 201837 unique_id port 201837 remote_ip 10.8.0.62 201839 username hadibarzegar 201839 kill_reason Another user logged on this global unique id 201839 mac 201839 bytes_out 0 201839 bytes_in 0 201839 station_ip 5.120.115.115 201839 port 34 201839 unique_id port 201841 username motamedi9772 201841 mac 201841 bytes_out 0 201841 bytes_in 0 201841 station_ip 83.122.213.244 201841 port 51 201841 unique_id port 201841 remote_ip 10.8.1.198 201846 username motamedi9772 201846 mac 201846 bytes_out 0 201846 bytes_in 0 201846 station_ip 83.122.213.244 201846 port 28 201846 unique_id port 201846 remote_ip 10.8.0.62 201850 username farhad3 201850 kill_reason Another user logged on this global unique id 201850 mac 201850 bytes_out 0 201850 bytes_in 0 201850 station_ip 5.120.0.83 201850 port 50 201850 unique_id port 201850 remote_ip 10.8.1.38 201853 username motamedi9772 201853 mac 201853 bytes_out 0 201853 bytes_in 0 201853 station_ip 83.122.213.244 201853 port 51 201853 unique_id port 201853 remote_ip 10.8.1.198 201858 username motamedi9772 201858 mac 201858 bytes_out 0 201858 bytes_in 0 201858 station_ip 83.122.213.244 201858 port 29 201858 unique_id port 201858 remote_ip 10.8.0.62 201862 username motamedi9772 201862 mac 201862 bytes_out 0 201862 bytes_in 0 201862 station_ip 83.122.213.244 201862 port 29 201862 unique_id port 201862 remote_ip 10.8.0.62 201870 username barzegar 201870 mac 201870 bytes_out 0 201870 bytes_in 0 201870 station_ip 5.120.143.34 201870 port 51 201870 unique_id port 201870 remote_ip 10.8.1.6 201874 username motamedi9772 201874 mac 201874 bytes_out 0 201874 bytes_in 0 201874 station_ip 83.122.213.244 201874 port 51 201874 unique_id port 201874 remote_ip 10.8.1.198 201877 username motamedi9772 201877 mac 201877 bytes_out 0 201877 bytes_in 0 201877 station_ip 83.122.213.244 201877 port 51 201877 unique_id port 201877 remote_ip 10.8.1.198 201882 username mostafa_es78 201882 unique_id port 201882 terminate_cause Lost-Carrier 201882 bytes_out 143175 201882 bytes_in 2164641 201882 station_ip 5.202.219.53 201882 port 15729827 201882 nas_port_type Virtual 201882 remote_ip 5.5.5.255 201884 username motamedi9772 201884 mac 201884 bytes_out 0 201884 bytes_in 0 201884 station_ip 83.122.213.244 201884 port 29 201884 unique_id port 201884 remote_ip 10.8.0.62 201886 username motamedi9772 201886 mac 201886 bytes_out 0 201886 bytes_in 0 201857 username hadibarzegar 201857 kill_reason Another user logged on this global unique id 201857 mac 201857 bytes_out 0 201857 bytes_in 0 201857 station_ip 5.120.115.115 201857 port 34 201857 unique_id port 201859 username motamedi9772 201859 mac 201859 bytes_out 0 201859 bytes_in 0 201859 station_ip 83.122.213.244 201859 port 51 201859 unique_id port 201859 remote_ip 10.8.1.198 201863 username hadibarzegar 201863 kill_reason Another user logged on this global unique id 201863 mac 201863 bytes_out 0 201863 bytes_in 0 201863 station_ip 5.120.115.115 201863 port 34 201863 unique_id port 201864 username motamedi9772 201864 mac 201864 bytes_out 0 201864 bytes_in 0 201864 station_ip 83.122.213.244 201864 port 29 201864 unique_id port 201864 remote_ip 10.8.0.62 201866 username kharazmi2920 201866 mac 201866 bytes_out 2013470 201866 bytes_in 10543483 201866 station_ip 83.123.60.195 201866 port 31 201866 unique_id port 201866 remote_ip 10.8.0.34 201867 username motamedi9772 201867 mac 201867 bytes_out 0 201867 bytes_in 0 201867 station_ip 83.122.213.244 201867 port 29 201867 unique_id port 201867 remote_ip 10.8.0.62 201868 username motamedi9772 201868 mac 201868 bytes_out 0 201868 bytes_in 0 201868 station_ip 83.122.213.244 201868 port 29 201868 unique_id port 201868 remote_ip 10.8.0.62 201872 username farhad3 201872 kill_reason Another user logged on this global unique id 201872 mac 201872 bytes_out 0 201872 bytes_in 0 201872 station_ip 5.120.0.83 201872 port 50 201872 unique_id port 201875 username hadibarzegar 201875 mac 201875 bytes_out 0 201875 bytes_in 0 201875 station_ip 5.120.115.115 201875 port 34 201875 unique_id port 201876 username alipour1506 201876 kill_reason Another user logged on this global unique id 201876 mac 201876 bytes_out 0 201876 bytes_in 0 201876 station_ip 151.234.23.177 201876 port 48 201876 unique_id port 201876 remote_ip 10.8.1.86 201878 username nilufarrajaei 201878 mac 201878 bytes_out 0 201878 bytes_in 0 201878 station_ip 37.129.132.213 201878 port 30 201878 unique_id port 201878 remote_ip 10.8.0.94 201879 username motamedi9772 201879 mac 201879 bytes_out 0 201879 bytes_in 0 201879 station_ip 83.122.213.244 201879 port 51 201879 unique_id port 201879 remote_ip 10.8.1.198 201881 username khademi 201881 kill_reason Another user logged on this global unique id 201881 mac 201881 bytes_out 0 201881 bytes_in 0 201881 station_ip 37.129.212.3 201881 port 25 201881 unique_id port 201885 username alinezhad 201885 kill_reason Absolute expiration date has reached 201885 unique_id port 201885 bytes_out 0 201885 bytes_in 0 201885 station_ip 5.202.19.147 201885 port 15729829 201885 nas_port_type Virtual 201889 username motamedi9772 201889 mac 201889 bytes_out 0 201889 bytes_in 0 201889 station_ip 83.122.213.244 201889 port 30 201889 unique_id port 201889 remote_ip 10.8.0.62 201898 username motamedi9772 201898 mac 201898 bytes_out 0 201898 bytes_in 0 201898 station_ip 83.122.213.244 201898 port 30 201898 unique_id port 201898 remote_ip 10.8.0.62 201900 username motamedi9772 201900 mac 201900 bytes_out 0 201900 bytes_in 0 201900 station_ip 83.122.213.244 201900 port 51 201900 unique_id port 201900 remote_ip 10.8.1.198 201901 username motamedi9772 201901 mac 201901 bytes_out 0 201901 bytes_in 0 201901 station_ip 83.122.213.244 201901 port 51 201901 unique_id port 201901 remote_ip 10.8.1.198 201904 username motamedi9772 201904 mac 201904 bytes_out 1115598 201904 bytes_in 9854996 201904 station_ip 83.122.213.244 201904 port 30 201904 unique_id port 201880 port 51 201880 unique_id port 201880 remote_ip 10.8.1.6 201883 username motamedi9772 201883 mac 201883 bytes_out 162742 201883 bytes_in 3092159 201883 station_ip 83.122.213.244 201883 port 29 201883 unique_id port 201883 remote_ip 10.8.0.62 201887 username khademi 201887 kill_reason Another user logged on this global unique id 201887 mac 201887 bytes_out 0 201887 bytes_in 0 201887 station_ip 37.129.212.3 201887 port 25 201887 unique_id port 201888 username motamedi9772 201888 mac 201888 bytes_out 0 201888 bytes_in 0 201888 station_ip 83.122.213.244 201888 port 51 201888 unique_id port 201888 remote_ip 10.8.1.198 201891 username motamedi9772 201891 mac 201891 bytes_out 0 201891 bytes_in 0 201891 station_ip 83.122.213.244 201891 port 29 201891 unique_id port 201891 remote_ip 10.8.0.62 201892 username motamedi9772 201892 mac 201892 bytes_out 0 201892 bytes_in 0 201892 station_ip 83.122.213.244 201892 port 29 201892 unique_id port 201892 remote_ip 10.8.0.62 201894 username motamedi9772 201894 mac 201894 bytes_out 0 201894 bytes_in 0 201894 station_ip 83.122.213.244 201894 port 29 201894 unique_id port 201894 remote_ip 10.8.0.62 201899 username khademi 201899 kill_reason Another user logged on this global unique id 201899 mac 201899 bytes_out 0 201899 bytes_in 0 201899 station_ip 37.129.212.3 201899 port 25 201899 unique_id port 201902 username dortaj3792 201902 mac 201902 bytes_out 0 201902 bytes_in 0 201902 station_ip 5.120.129.125 201902 port 36 201902 unique_id port 201902 remote_ip 10.8.0.30 201911 username farhad3 201911 kill_reason Another user logged on this global unique id 201911 mac 201911 bytes_out 0 201911 bytes_in 0 201911 station_ip 5.120.0.83 201911 port 50 201911 unique_id port 201914 username hadibarzegar 201914 mac 201914 bytes_out 2430 201914 bytes_in 4988 201914 station_ip 83.123.160.215 201914 port 29 201914 unique_id port 201914 remote_ip 10.8.0.170 201915 username kalantary6037 201915 mac 201915 bytes_out 754548 201915 bytes_in 5867874 201915 station_ip 37.129.212.37 201915 port 57 201915 unique_id port 201915 remote_ip 10.8.1.150 201916 username barzegar 201916 mac 201916 bytes_out 0 201916 bytes_in 0 201916 station_ip 5.120.143.34 201916 port 57 201916 unique_id port 201916 remote_ip 10.8.1.6 201920 username mosi 201920 kill_reason Another user logged on this global unique id 201920 mac 201920 bytes_out 0 201920 bytes_in 0 201920 station_ip 151.235.106.19 201920 port 26 201920 unique_id port 201922 username barzegar8595 201922 mac 201922 bytes_out 380337 201922 bytes_in 3212218 201922 station_ip 94.24.85.223 201922 port 51 201922 unique_id port 201922 remote_ip 10.8.1.50 201923 username farhad3 201923 mac 201923 bytes_out 0 201923 bytes_in 0 201923 station_ip 5.120.0.83 201923 port 50 201923 unique_id port 201923 remote_ip 10.8.1.38 201929 username farhad3 201929 mac 201929 bytes_out 163398 201929 bytes_in 316233 201929 station_ip 5.120.0.83 201929 port 50 201929 unique_id port 201929 remote_ip 10.8.1.38 201930 username barzegar 201930 mac 201930 bytes_out 0 201930 bytes_in 0 201930 station_ip 5.120.143.34 201930 port 29 201930 unique_id port 201930 remote_ip 10.8.0.14 201937 username farhad3 201937 mac 201937 bytes_out 0 201937 bytes_in 0 201937 station_ip 5.120.0.83 201937 port 50 201937 unique_id port 201937 remote_ip 10.8.1.38 201945 username seyedrezaei2572 201945 mac 201945 bytes_out 0 201945 bytes_in 0 201945 station_ip 5.218.124.205 201945 port 28 201945 unique_id port 201886 station_ip 83.122.213.244 201886 port 29 201886 unique_id port 201886 remote_ip 10.8.0.62 201890 username barzegar 201890 mac 201890 bytes_out 0 201890 bytes_in 0 201890 station_ip 5.120.143.34 201890 port 29 201890 unique_id port 201890 remote_ip 10.8.0.14 201893 username motamedi9772 201893 mac 201893 bytes_out 0 201893 bytes_in 0 201893 station_ip 83.122.213.244 201893 port 29 201893 unique_id port 201893 remote_ip 10.8.0.62 201895 username barzegar 201895 mac 201895 bytes_out 0 201895 bytes_in 0 201895 station_ip 5.120.143.34 201895 port 54 201895 unique_id port 201895 remote_ip 10.8.1.6 201896 username motamedi9772 201896 mac 201896 bytes_out 0 201896 bytes_in 0 201896 station_ip 83.122.213.244 201896 port 51 201896 unique_id port 201896 remote_ip 10.8.1.198 201897 username motamedi9772 201897 mac 201897 bytes_out 0 201897 bytes_in 0 201897 station_ip 83.122.213.244 201897 port 30 201897 unique_id port 201897 remote_ip 10.8.0.62 201903 username barzegar 201903 mac 201903 bytes_out 0 201903 bytes_in 0 201903 station_ip 5.120.143.34 201903 port 51 201903 unique_id port 201903 remote_ip 10.8.1.6 201906 username naeimeh 201906 mac 201906 bytes_out 0 201906 bytes_in 0 201906 station_ip 83.123.138.217 201906 port 29 201906 unique_id port 201906 remote_ip 10.8.0.202 201913 username barzegar 201913 mac 201913 bytes_out 0 201913 bytes_in 0 201913 station_ip 5.120.143.34 201913 port 51 201913 unique_id port 201913 remote_ip 10.8.1.6 201918 username motamedi9772 201918 kill_reason Another user logged on this global unique id 201918 mac 201918 bytes_out 0 201918 bytes_in 0 201918 station_ip 83.122.213.244 201918 port 30 201918 unique_id port 201919 username farhad3 201919 mac 201919 bytes_out 0 201919 bytes_in 0 201919 station_ip 5.120.0.83 201919 port 50 201919 unique_id port 201921 username barzegar 201921 mac 201921 bytes_out 0 201921 bytes_in 0 201921 station_ip 5.120.143.34 201921 port 29 201921 unique_id port 201921 remote_ip 10.8.0.14 201926 username motamedi9772 201926 mac 201926 bytes_out 92449 201926 bytes_in 132671 201926 station_ip 83.122.213.244 201926 port 29 201926 unique_id port 201926 remote_ip 10.8.0.62 201927 username barzegar 201927 mac 201927 bytes_out 0 201927 bytes_in 0 201927 station_ip 5.120.143.34 201927 port 51 201927 unique_id port 201927 remote_ip 10.8.1.6 201928 username mosi 201928 kill_reason Another user logged on this global unique id 201928 mac 201928 bytes_out 0 201928 bytes_in 0 201928 station_ip 151.235.106.19 201928 port 26 201928 unique_id port 201934 username barzegar 201934 mac 201934 bytes_out 0 201934 bytes_in 0 201934 station_ip 5.120.143.34 201934 port 46 201934 unique_id port 201934 remote_ip 10.8.1.6 201936 username barzegar 201936 mac 201936 bytes_out 0 201936 bytes_in 0 201936 station_ip 5.120.143.34 201936 port 46 201936 unique_id port 201936 remote_ip 10.8.1.6 201938 username barzegar 201938 mac 201938 bytes_out 0 201938 bytes_in 0 201938 station_ip 5.120.143.34 201938 port 46 201938 unique_id port 201938 remote_ip 10.8.1.6 201941 username farhad3 201941 kill_reason Another user logged on this global unique id 201941 mac 201941 bytes_out 0 201941 bytes_in 0 201941 station_ip 5.120.0.83 201941 port 29 201941 unique_id port 201941 remote_ip 10.8.0.46 201946 username barzegar 201946 mac 201946 bytes_out 0 201946 bytes_in 0 201946 station_ip 5.120.143.34 201946 port 46 201946 unique_id port 201946 remote_ip 10.8.1.6 201904 remote_ip 10.8.0.62 201905 username barzegar 201905 mac 201905 bytes_out 0 201905 bytes_in 0 201905 station_ip 5.120.143.34 201905 port 51 201905 unique_id port 201905 remote_ip 10.8.1.6 201907 username nilufarrajaei 201907 kill_reason Another user logged on this global unique id 201907 mac 201907 bytes_out 0 201907 bytes_in 0 201907 station_ip 37.129.144.33 201907 port 31 201907 unique_id port 201907 remote_ip 10.8.0.94 201908 username barzegar 201908 mac 201908 bytes_out 0 201908 bytes_in 0 201908 station_ip 5.120.143.34 201908 port 51 201908 unique_id port 201908 remote_ip 10.8.1.6 201909 username nilufarrajaei 201909 mac 201909 bytes_out 0 201909 bytes_in 0 201909 station_ip 37.129.144.33 201909 port 31 201909 unique_id port 201910 username motamedi9772 201910 kill_reason Another user logged on this global unique id 201910 mac 201910 bytes_out 0 201910 bytes_in 0 201910 station_ip 83.122.213.244 201910 port 30 201910 unique_id port 201910 remote_ip 10.8.0.62 201912 username dortaj3792 201912 mac 201912 bytes_out 0 201912 bytes_in 0 201912 station_ip 5.120.129.125 201912 port 29 201912 unique_id port 201912 remote_ip 10.8.0.30 201917 username hadibarzegar 201917 mac 201917 bytes_out 0 201917 bytes_in 0 201917 station_ip 5.120.115.115 201917 port 54 201917 unique_id port 201917 remote_ip 10.8.1.170 201924 username motamedi9772 201924 mac 201924 bytes_out 0 201924 bytes_in 0 201924 station_ip 83.122.213.244 201924 port 30 201924 unique_id port 201925 username kalantary6037 201925 mac 201925 bytes_out 1503184 201925 bytes_in 10283372 201925 station_ip 37.129.131.33 201925 port 54 201925 unique_id port 201925 remote_ip 10.8.1.150 201931 username barzegar 201931 mac 201931 bytes_out 0 201931 bytes_in 0 201931 station_ip 5.120.143.34 201931 port 29 201931 unique_id port 201931 remote_ip 10.8.0.14 201932 username barzegar8595 201932 mac 201932 bytes_out 2084601 201932 bytes_in 34074762 201932 station_ip 94.24.85.223 201932 port 51 201932 unique_id port 201932 remote_ip 10.8.1.50 201933 username khalili2 201933 mac 201933 bytes_out 0 201933 bytes_in 0 201933 station_ip 5.119.180.81 201933 port 46 201933 unique_id port 201935 username kalantary6037 201935 mac 201935 bytes_out 549447 201935 bytes_in 5939803 201935 station_ip 37.129.173.201 201935 port 54 201935 unique_id port 201935 remote_ip 10.8.1.150 201939 username kalantary6037 201939 mac 201939 bytes_out 0 201939 bytes_in 0 201939 station_ip 37.129.223.25 201939 port 50 201939 unique_id port 201939 remote_ip 10.8.1.150 201940 username barzegar 201940 mac 201940 bytes_out 0 201940 bytes_in 0 201940 station_ip 5.120.143.34 201940 port 46 201940 unique_id port 201940 remote_ip 10.8.1.6 201942 username barzegar 201942 mac 201942 bytes_out 0 201942 bytes_in 0 201942 station_ip 5.120.143.34 201942 port 46 201942 unique_id port 201942 remote_ip 10.8.1.6 201943 username sabaghnezhad 201943 mac 201943 bytes_out 0 201943 bytes_in 0 201943 station_ip 83.123.201.177 201943 port 32 201943 unique_id port 201943 remote_ip 10.8.0.18 201944 username farhad3 201944 kill_reason Another user logged on this global unique id 201944 mac 201944 bytes_out 0 201944 bytes_in 0 201944 station_ip 5.120.0.83 201944 port 29 201944 unique_id port 201950 username seyedrezaei2572 201950 mac 201950 bytes_out 0 201950 bytes_in 0 201950 station_ip 5.218.124.205 201950 port 30 201950 unique_id port 201950 remote_ip 10.8.0.186 201951 username farhad3 201951 mac 201945 remote_ip 10.8.0.186 201947 username milan 201947 mac 201947 bytes_out 0 201947 bytes_in 0 201947 station_ip 5.120.38.92 201947 port 56 201947 unique_id port 201947 remote_ip 10.8.1.182 201949 username barzegar 201949 mac 201949 bytes_out 0 201949 bytes_in 0 201949 station_ip 5.120.143.34 201949 port 50 201949 unique_id port 201949 remote_ip 10.8.1.6 201952 username barzegar 201952 mac 201952 bytes_out 0 201952 bytes_in 0 201952 station_ip 5.120.143.34 201952 port 50 201952 unique_id port 201952 remote_ip 10.8.1.6 201954 username barzegar 201954 kill_reason Maximum check online fails reached 201954 mac 201954 bytes_out 0 201954 bytes_in 0 201954 station_ip 5.120.143.34 201954 port 46 201954 unique_id port 201956 username barzegar 201956 mac 201956 bytes_out 0 201956 bytes_in 0 201956 station_ip 5.120.143.34 201956 port 54 201956 unique_id port 201956 remote_ip 10.8.1.6 201960 username barzegar 201960 mac 201960 bytes_out 0 201960 bytes_in 0 201960 station_ip 5.120.143.34 201960 port 54 201960 unique_id port 201960 remote_ip 10.8.1.6 201964 username barzegar 201964 mac 201964 bytes_out 0 201964 bytes_in 0 201964 station_ip 5.120.143.34 201964 port 50 201964 unique_id port 201964 remote_ip 10.8.1.6 201965 username mosi 201965 kill_reason Maximum check online fails reached 201965 mac 201965 bytes_out 0 201965 bytes_in 0 201965 station_ip 151.235.106.19 201965 port 26 201965 unique_id port 201968 username hashtadani5 201968 mac 201968 bytes_out 0 201968 bytes_in 0 201968 station_ip 83.122.12.147 201968 port 50 201968 unique_id port 201968 remote_ip 10.8.1.162 201973 username hashtadani5 201973 mac 201973 bytes_out 3462423 201973 bytes_in 42589907 201973 station_ip 83.122.12.147 201973 port 28 201973 unique_id port 201973 remote_ip 10.8.0.150 201975 username hashtadani5 201975 mac 201975 bytes_out 0 201975 bytes_in 0 201975 station_ip 83.122.12.147 201975 port 28 201975 unique_id port 201975 remote_ip 10.8.0.150 201979 username hashtadani5 201979 mac 201979 bytes_out 0 201979 bytes_in 0 201979 station_ip 83.122.12.147 201979 port 50 201979 unique_id port 201979 remote_ip 10.8.1.162 201980 username barzegar 201980 mac 201980 bytes_out 0 201980 bytes_in 0 201980 station_ip 5.120.143.34 201980 port 50 201980 unique_id port 201980 remote_ip 10.8.1.6 201982 username hashtadani5 201982 mac 201982 bytes_out 0 201982 bytes_in 0 201982 station_ip 83.122.12.147 201982 port 50 201982 unique_id port 201982 remote_ip 10.8.1.162 201983 username hashtadani5 201983 mac 201983 bytes_out 0 201983 bytes_in 0 201983 station_ip 83.122.12.147 201983 port 50 201983 unique_id port 201983 remote_ip 10.8.1.162 201985 username mohammadjavad 201985 mac 201985 bytes_out 859237 201985 bytes_in 11841472 201985 station_ip 83.122.94.81 201985 port 29 201985 unique_id port 201985 remote_ip 10.8.0.58 201986 username hashtadani5 201986 mac 201986 bytes_out 0 201986 bytes_in 0 201986 station_ip 83.122.12.147 201986 port 50 201986 unique_id port 201986 remote_ip 10.8.1.162 201989 username hashtadani5 201989 mac 201989 bytes_out 0 201989 bytes_in 0 201989 station_ip 83.122.12.147 201989 port 29 201989 unique_id port 201989 remote_ip 10.8.0.150 201990 username motamedi9772 201990 mac 201990 bytes_out 129820 201990 bytes_in 213984 201990 station_ip 83.122.204.224 201990 port 30 201990 unique_id port 201990 remote_ip 10.8.0.62 201991 username hashtadani5 201991 mac 201948 username farhad3 201948 kill_reason Another user logged on this global unique id 201948 mac 201948 bytes_out 0 201948 bytes_in 0 201948 station_ip 5.120.0.83 201948 port 29 201948 unique_id port 201953 username kalantary6037 201953 mac 201953 bytes_out 3170681 201953 bytes_in 35181161 201953 station_ip 37.129.207.41 201953 port 46 201953 unique_id port 201953 remote_ip 10.8.1.150 201955 username barzegar 201955 mac 201955 bytes_out 0 201955 bytes_in 0 201955 station_ip 5.120.143.34 201955 port 28 201955 unique_id port 201955 remote_ip 10.8.0.14 201957 username kalantary6037 201957 kill_reason Another user logged on this global unique id 201957 mac 201957 bytes_out 0 201957 bytes_in 0 201957 station_ip 37.129.173.201 201957 port 50 201957 unique_id port 201957 remote_ip 10.8.1.150 201959 username kalantary6037 201959 kill_reason Another user logged on this global unique id 201959 mac 201959 bytes_out 0 201959 bytes_in 0 201959 station_ip 37.129.173.201 201959 port 50 201959 unique_id port 201961 username kalantary6037 201961 mac 201961 bytes_out 0 201961 bytes_in 0 201961 station_ip 37.129.173.201 201961 port 50 201961 unique_id port 201963 username morteza4424 201963 mac 201963 bytes_out 0 201963 bytes_in 0 201963 station_ip 83.122.82.46 201963 port 28 201963 unique_id port 201963 remote_ip 10.8.0.70 201966 username khademi 201966 kill_reason Another user logged on this global unique id 201966 mac 201966 bytes_out 0 201966 bytes_in 0 201966 station_ip 37.129.212.3 201966 port 25 201966 unique_id port 201970 username khalili2 201970 mac 201970 bytes_out 0 201970 bytes_in 0 201970 station_ip 5.120.154.142 201970 port 51 201970 unique_id port 201970 remote_ip 10.8.1.18 201972 username barzegar 201972 mac 201972 bytes_out 0 201972 bytes_in 0 201972 station_ip 5.120.143.34 201972 port 50 201972 unique_id port 201972 remote_ip 10.8.1.6 201974 username hashtadani5 201974 mac 201974 bytes_out 0 201974 bytes_in 0 201974 station_ip 83.122.12.147 201974 port 28 201974 unique_id port 201974 remote_ip 10.8.0.150 201977 username hashtadani5 201977 mac 201977 bytes_out 0 201977 bytes_in 0 201977 station_ip 83.122.12.147 201977 port 28 201977 unique_id port 201977 remote_ip 10.8.0.150 201978 username hashtadani5 201978 mac 201978 bytes_out 1644 201978 bytes_in 4970 201978 station_ip 83.122.12.147 201978 port 28 201978 unique_id port 201978 remote_ip 10.8.0.150 201981 username hashtadani5 201981 mac 201981 bytes_out 1644 201981 bytes_in 5182 201981 station_ip 83.122.12.147 201981 port 28 201981 unique_id port 201981 remote_ip 10.8.0.150 201984 username hashtadani5 201984 mac 201984 bytes_out 0 201984 bytes_in 0 201984 station_ip 83.122.12.147 201984 port 28 201984 unique_id port 201984 remote_ip 10.8.0.150 201987 username hashtadani5 201987 mac 201987 bytes_out 0 201987 bytes_in 0 201987 station_ip 83.122.12.147 201987 port 29 201987 unique_id port 201987 remote_ip 10.8.0.150 201988 username barzegar 201988 mac 201988 bytes_out 0 201988 bytes_in 0 201988 station_ip 5.120.143.34 201988 port 50 201988 unique_id port 201988 remote_ip 10.8.1.6 201991 bytes_out 0 201991 bytes_in 0 201991 station_ip 83.122.12.147 201991 port 30 201991 unique_id port 201991 remote_ip 10.8.0.150 201993 username barzegar 201993 mac 201993 bytes_out 0 201993 bytes_in 0 201993 station_ip 5.120.143.34 201993 port 50 201993 unique_id port 201993 remote_ip 10.8.1.6 201995 username hosseine 201995 mac 201995 bytes_out 0 201995 bytes_in 0 201951 bytes_out 0 201951 bytes_in 0 201951 station_ip 5.120.0.83 201951 port 29 201951 unique_id port 201958 username barzegar 201958 mac 201958 bytes_out 0 201958 bytes_in 0 201958 station_ip 5.120.143.34 201958 port 54 201958 unique_id port 201958 remote_ip 10.8.1.6 201962 username barzegar 201962 mac 201962 bytes_out 0 201962 bytes_in 0 201962 station_ip 5.120.143.34 201962 port 50 201962 unique_id port 201962 remote_ip 10.8.1.6 201967 username barzegar 201967 mac 201967 bytes_out 0 201967 bytes_in 0 201967 station_ip 5.120.143.34 201967 port 54 201967 unique_id port 201967 remote_ip 10.8.1.6 201969 username hashtadani5 201969 mac 201969 bytes_out 0 201969 bytes_in 0 201969 station_ip 83.122.12.147 201969 port 28 201969 unique_id port 201969 remote_ip 10.8.0.150 201971 username hashtadani5 201971 mac 201971 bytes_out 0 201971 bytes_in 0 201971 station_ip 83.122.12.147 201971 port 28 201971 unique_id port 201971 remote_ip 10.8.0.150 201976 username hashtadani5 201976 mac 201976 bytes_out 0 201976 bytes_in 0 201976 station_ip 83.122.12.147 201976 port 28 201976 unique_id port 201976 remote_ip 10.8.0.150 201992 username hosseine 201992 kill_reason Another user logged on this global unique id 201992 mac 201992 bytes_out 0 201992 bytes_in 0 201992 station_ip 37.129.191.186 201992 port 31 201992 unique_id port 201992 remote_ip 10.8.0.118 201994 username morteza4424 201994 mac 201994 bytes_out 235463 201994 bytes_in 2743361 201994 station_ip 83.122.45.10 201994 port 29 201994 unique_id port 201994 remote_ip 10.8.0.70 201995 station_ip 37.129.191.186 201995 port 31 201995 unique_id port 201996 username hashtadani5 201996 kill_reason Maximum check online fails reached 201996 mac 201996 bytes_out 0 201996 bytes_in 0 201996 station_ip 83.122.12.147 201996 port 29 201996 unique_id port 201997 username hashtadani5 201997 mac 201997 bytes_out 0 201997 bytes_in 0 201997 station_ip 83.122.12.147 201997 port 50 201997 unique_id port 201997 remote_ip 10.8.1.162 201998 username hashtadani5 201998 mac 201998 bytes_out 0 201998 bytes_in 0 201998 station_ip 83.122.12.147 201998 port 30 201998 unique_id port 201998 remote_ip 10.8.0.150 201999 username hashtadani5 201999 mac 201999 bytes_out 0 201999 bytes_in 0 201999 station_ip 83.122.12.147 201999 port 30 201999 unique_id port 201999 remote_ip 10.8.0.150 202000 username barzegar 202000 mac 202000 bytes_out 0 202000 bytes_in 0 202000 station_ip 5.120.143.34 202000 port 50 202000 unique_id port 202000 remote_ip 10.8.1.6 202001 username hashtadani5 202001 mac 202001 bytes_out 0 202001 bytes_in 0 202001 station_ip 83.122.12.147 202001 port 30 202001 unique_id port 202001 remote_ip 10.8.0.150 202002 username hashtadani5 202002 mac 202002 bytes_out 2005 202002 bytes_in 4599 202002 station_ip 83.122.12.147 202002 port 30 202002 unique_id port 202002 remote_ip 10.8.0.150 202003 username malekpoir 202003 mac 202003 bytes_out 0 202003 bytes_in 0 202003 station_ip 5.119.35.181 202003 port 50 202003 unique_id port 202003 remote_ip 10.8.1.70 202004 username hashtadani5 202004 kill_reason Maximum check online fails reached 202004 mac 202004 bytes_out 0 202004 bytes_in 0 202004 station_ip 83.122.12.147 202004 port 30 202004 unique_id port 202005 username barzegar 202005 mac 202005 bytes_out 0 202005 bytes_in 0 202005 station_ip 5.120.143.34 202005 port 50 202005 unique_id port 202005 remote_ip 10.8.1.6 202006 username dortaj3792 202006 mac 202006 bytes_out 629946 202006 bytes_in 1702490 202006 station_ip 5.120.129.125 202006 port 28 202006 unique_id port 202006 remote_ip 10.8.0.30 202007 username hashtadani5 202007 mac 202007 bytes_out 0 202007 bytes_in 0 202007 station_ip 83.122.12.147 202007 port 50 202007 unique_id port 202007 remote_ip 10.8.1.162 202008 username hashtadani5 202008 mac 202008 bytes_out 0 202008 bytes_in 0 202008 station_ip 83.122.12.147 202008 port 28 202008 unique_id port 202008 remote_ip 10.8.0.150 202011 username hashtadani5 202011 mac 202011 bytes_out 0 202011 bytes_in 0 202011 station_ip 83.122.12.147 202011 port 32 202011 unique_id port 202011 remote_ip 10.8.0.150 202012 username dortaj3792 202012 mac 202012 bytes_out 31211 202012 bytes_in 55794 202012 station_ip 5.120.129.125 202012 port 28 202012 unique_id port 202012 remote_ip 10.8.0.30 202019 username barzegar 202019 mac 202019 bytes_out 0 202019 bytes_in 0 202019 station_ip 5.120.143.34 202019 port 50 202019 unique_id port 202019 remote_ip 10.8.1.6 202021 username hashtadani5 202021 mac 202021 bytes_out 0 202021 bytes_in 0 202021 station_ip 83.122.12.147 202021 port 34 202021 unique_id port 202021 remote_ip 10.8.0.150 202025 username sekonji0496 202025 mac 202025 bytes_out 961069 202025 bytes_in 5911580 202025 station_ip 83.122.114.171 202025 port 28 202025 unique_id port 202025 remote_ip 10.8.0.66 202028 username alirezaza 202028 unique_id port 202028 terminate_cause Lost-Carrier 202028 bytes_out 142320 202028 bytes_in 4088322 202028 station_ip 5.119.22.34 202028 port 15729833 202028 nas_port_type Virtual 202028 remote_ip 5.5.5.255 202029 username hashtadani5 202029 mac 202029 bytes_out 0 202029 bytes_in 0 202029 station_ip 83.122.12.147 202029 port 50 202029 unique_id port 202029 remote_ip 10.8.1.162 202035 username hashtadani5 202035 mac 202035 bytes_out 0 202035 bytes_in 0 202035 station_ip 83.122.12.147 202035 port 28 202035 unique_id port 202035 remote_ip 10.8.0.150 202038 username hashtadani5 202038 mac 202038 bytes_out 0 202038 bytes_in 0 202038 station_ip 83.122.12.147 202038 port 28 202038 unique_id port 202038 remote_ip 10.8.0.150 202041 username khademi 202041 kill_reason Another user logged on this global unique id 202041 mac 202041 bytes_out 0 202041 bytes_in 0 202041 station_ip 37.129.212.3 202041 port 25 202041 unique_id port 202042 username hashtadani5 202042 mac 202042 bytes_out 0 202042 bytes_in 0 202042 station_ip 83.122.12.147 202042 port 28 202042 unique_id port 202042 remote_ip 10.8.0.150 202045 username hashtadani5 202045 mac 202045 bytes_out 0 202045 bytes_in 0 202045 station_ip 83.122.12.147 202045 port 28 202045 unique_id port 202045 remote_ip 10.8.0.150 202047 username hashtadani5 202047 mac 202047 bytes_out 0 202047 bytes_in 0 202047 station_ip 83.122.12.147 202047 port 31 202047 unique_id port 202047 remote_ip 10.8.0.150 202051 username alipour1506 202051 kill_reason Another user logged on this global unique id 202051 mac 202051 bytes_out 0 202051 bytes_in 0 202051 station_ip 151.234.23.177 202051 port 48 202051 unique_id port 202052 username rahim 202052 mac 202052 bytes_out 0 202052 bytes_in 0 202052 station_ip 5.119.105.143 202052 port 51 202052 unique_id port 202052 remote_ip 10.8.1.90 202053 username rahim 202053 mac 202053 bytes_out 0 202053 bytes_in 0 202053 station_ip 5.119.105.143 202053 port 54 202053 unique_id port 202053 remote_ip 10.8.1.90 202056 username barzegar 202056 mac 202009 username hashtadani5 202009 mac 202009 bytes_out 2111 202009 bytes_in 4865 202009 station_ip 83.122.12.147 202009 port 28 202009 unique_id port 202009 remote_ip 10.8.0.150 202010 username aminvpn 202010 unique_id port 202010 terminate_cause Lost-Carrier 202010 bytes_out 619906 202010 bytes_in 2073314 202010 station_ip 83.123.190.27 202010 port 15729831 202010 nas_port_type Virtual 202010 remote_ip 5.5.5.255 202015 username hashtadani5 202015 kill_reason Maximum check online fails reached 202015 mac 202015 bytes_out 0 202015 bytes_in 0 202015 station_ip 83.122.12.147 202015 port 32 202015 unique_id port 202016 username dortaj3792 202016 mac 202016 bytes_out 197004 202016 bytes_in 1520872 202016 station_ip 5.120.129.125 202016 port 34 202016 unique_id port 202016 remote_ip 10.8.0.30 202022 username alirezaza 202022 unique_id port 202022 terminate_cause User-Request 202022 bytes_out 246 202022 bytes_in 184 202022 station_ip 5.119.22.34 202022 port 15729832 202022 nas_port_type Virtual 202022 remote_ip 5.5.5.255 202023 username mohammadjavad 202023 kill_reason Another user logged on this global unique id 202023 mac 202023 bytes_out 0 202023 bytes_in 0 202023 station_ip 83.122.35.61 202023 port 31 202023 unique_id port 202027 username barzegar 202027 mac 202027 bytes_out 0 202027 bytes_in 0 202027 station_ip 5.120.143.34 202027 port 50 202027 unique_id port 202027 remote_ip 10.8.1.6 202030 username hashtadani5 202030 mac 202030 bytes_out 0 202030 bytes_in 0 202030 station_ip 83.122.12.147 202030 port 28 202030 unique_id port 202030 remote_ip 10.8.0.150 202032 username hashtadani5 202032 mac 202032 bytes_out 0 202032 bytes_in 0 202032 station_ip 83.122.12.147 202032 port 28 202032 unique_id port 202032 remote_ip 10.8.0.150 202036 username barzegar 202036 mac 202036 bytes_out 0 202036 bytes_in 0 202036 station_ip 5.120.143.34 202036 port 50 202036 unique_id port 202036 remote_ip 10.8.1.6 202039 username hashtadani5 202039 mac 202039 bytes_out 0 202039 bytes_in 0 202039 station_ip 83.122.12.147 202039 port 28 202039 unique_id port 202039 remote_ip 10.8.0.150 202040 username hashtadani5 202040 mac 202040 bytes_out 0 202040 bytes_in 0 202040 station_ip 83.122.12.147 202040 port 28 202040 unique_id port 202040 remote_ip 10.8.0.150 202043 username barzegar 202043 mac 202043 bytes_out 0 202043 bytes_in 0 202043 station_ip 5.120.143.34 202043 port 50 202043 unique_id port 202043 remote_ip 10.8.1.6 202046 username hashtadani5 202046 mac 202046 bytes_out 0 202046 bytes_in 0 202046 station_ip 83.122.12.147 202046 port 28 202046 unique_id port 202046 remote_ip 10.8.0.150 202048 username aminvpn 202048 unique_id port 202048 terminate_cause Lost-Carrier 202048 bytes_out 283864 202048 bytes_in 2805315 202048 station_ip 83.123.190.27 202048 port 15729834 202048 nas_port_type Virtual 202048 remote_ip 5.5.5.255 202050 username nilufarrajaei 202050 mac 202050 bytes_out 3716944 202050 bytes_in 23598816 202050 station_ip 37.129.144.33 202050 port 33 202050 unique_id port 202050 remote_ip 10.8.0.94 202057 username hatami 202057 mac 202057 bytes_out 0 202057 bytes_in 0 202057 station_ip 151.235.111.197 202057 port 51 202057 unique_id port 202057 remote_ip 10.8.1.26 202066 username saeed9658 202066 mac 202066 bytes_out 0 202066 bytes_in 0 202066 station_ip 5.119.223.127 202066 port 51 202066 unique_id port 202066 remote_ip 10.8.1.194 202067 username hashtadani5 202067 mac 202067 bytes_out 0 202067 bytes_in 0 202067 station_ip 83.122.12.147 202013 username barzegar 202013 mac 202013 bytes_out 0 202013 bytes_in 0 202013 station_ip 5.120.143.34 202013 port 50 202013 unique_id port 202013 remote_ip 10.8.1.6 202014 username mohammadjavad 202014 kill_reason Another user logged on this global unique id 202014 mac 202014 bytes_out 0 202014 bytes_in 0 202014 station_ip 83.122.35.61 202014 port 31 202014 unique_id port 202014 remote_ip 10.8.0.58 202017 username alipour1506 202017 kill_reason Another user logged on this global unique id 202017 mac 202017 bytes_out 0 202017 bytes_in 0 202017 station_ip 151.234.23.177 202017 port 48 202017 unique_id port 202018 username hashtadani5 202018 mac 202018 bytes_out 0 202018 bytes_in 0 202018 station_ip 83.122.12.147 202018 port 34 202018 unique_id port 202018 remote_ip 10.8.0.150 202020 username hashtadani5 202020 mac 202020 bytes_out 0 202020 bytes_in 0 202020 station_ip 83.122.12.147 202020 port 50 202020 unique_id port 202020 remote_ip 10.8.1.162 202024 username hashtadani5 202024 mac 202024 bytes_out 0 202024 bytes_in 0 202024 station_ip 83.122.12.147 202024 port 34 202024 unique_id port 202024 remote_ip 10.8.0.150 202026 username mohammadjavad 202026 kill_reason Another user logged on this global unique id 202026 mac 202026 bytes_out 0 202026 bytes_in 0 202026 station_ip 83.122.35.61 202026 port 31 202026 unique_id port 202031 username mohammadjavad 202031 mac 202031 bytes_out 0 202031 bytes_in 0 202031 station_ip 83.122.35.61 202031 port 31 202031 unique_id port 202033 username hashtadani5 202033 mac 202033 bytes_out 0 202033 bytes_in 0 202033 station_ip 83.122.12.147 202033 port 28 202033 unique_id port 202033 remote_ip 10.8.0.150 202034 username hashtadani5 202034 mac 202034 bytes_out 0 202034 bytes_in 0 202034 station_ip 83.122.12.147 202034 port 28 202034 unique_id port 202034 remote_ip 10.8.0.150 202037 username hashtadani5 202037 mac 202037 bytes_out 0 202037 bytes_in 0 202037 station_ip 83.122.12.147 202037 port 28 202037 unique_id port 202037 remote_ip 10.8.0.150 202044 username hashtadani5 202044 mac 202044 bytes_out 0 202044 bytes_in 0 202044 station_ip 83.122.12.147 202044 port 28 202044 unique_id port 202044 remote_ip 10.8.0.150 202049 username barzegar 202049 mac 202049 bytes_out 0 202049 bytes_in 0 202049 station_ip 5.120.143.34 202049 port 50 202049 unique_id port 202049 remote_ip 10.8.1.6 202054 username rahim 202054 mac 202054 bytes_out 0 202054 bytes_in 0 202054 station_ip 5.119.105.143 202054 port 54 202054 unique_id port 202054 remote_ip 10.8.1.90 202055 username hashtadani5 202055 mac 202055 bytes_out 0 202055 bytes_in 0 202055 station_ip 83.122.12.147 202055 port 33 202055 unique_id port 202055 remote_ip 10.8.0.150 202061 username barzegar 202061 mac 202061 bytes_out 0 202061 bytes_in 0 202061 station_ip 5.120.143.34 202061 port 51 202061 unique_id port 202061 remote_ip 10.8.1.6 202062 username saeed9658 202062 kill_reason Maximum check online fails reached 202062 mac 202062 bytes_out 0 202062 bytes_in 0 202062 station_ip 5.119.223.127 202062 port 54 202062 unique_id port 202063 username hashtadani5 202063 mac 202063 bytes_out 0 202063 bytes_in 0 202063 station_ip 83.122.12.147 202063 port 51 202063 unique_id port 202063 remote_ip 10.8.1.162 202064 username hashtadani5 202064 mac 202064 bytes_out 0 202064 bytes_in 0 202064 station_ip 83.122.12.147 202064 port 34 202064 unique_id port 202064 remote_ip 10.8.0.150 202068 username hashtadani5 202056 bytes_out 0 202056 bytes_in 0 202056 station_ip 5.120.143.34 202056 port 33 202056 unique_id port 202056 remote_ip 10.8.0.14 202058 username rahim 202058 mac 202058 bytes_out 0 202058 bytes_in 0 202058 station_ip 5.120.3.58 202058 port 34 202058 unique_id port 202058 remote_ip 10.8.0.230 202059 username saeed9658 202059 mac 202059 bytes_out 0 202059 bytes_in 0 202059 station_ip 5.119.223.127 202059 port 54 202059 unique_id port 202059 remote_ip 10.8.1.194 202060 username saeed9658 202060 mac 202060 bytes_out 0 202060 bytes_in 0 202060 station_ip 5.119.223.127 202060 port 34 202060 unique_id port 202060 remote_ip 10.8.0.218 202065 username pourshad 202065 kill_reason Another user logged on this global unique id 202065 mac 202065 bytes_out 0 202065 bytes_in 0 202065 station_ip 5.120.219.248 202065 port 28 202065 unique_id port 202065 remote_ip 10.8.0.54 202069 username seyedrezaei2572 202069 kill_reason Maximum check online fails reached 202069 mac 202069 bytes_out 0 202069 bytes_in 0 202069 station_ip 83.120.185.228 202069 port 35 202069 unique_id port 202071 username barzegar 202071 mac 202071 bytes_out 0 202071 bytes_in 0 202071 station_ip 5.120.143.34 202071 port 58 202071 unique_id port 202071 remote_ip 10.8.1.6 202075 username hashtadani5 202075 mac 202075 bytes_out 0 202075 bytes_in 0 202075 station_ip 83.122.12.147 202075 port 36 202075 unique_id port 202075 remote_ip 10.8.0.150 202080 username saeed9658 202080 mac 202080 bytes_out 0 202080 bytes_in 0 202080 station_ip 5.119.223.127 202080 port 59 202080 unique_id port 202080 remote_ip 10.8.1.194 202082 username malekpoir 202082 kill_reason Another user logged on this global unique id 202082 mac 202082 bytes_out 0 202082 bytes_in 0 202082 station_ip 5.119.237.69 202082 port 56 202082 unique_id port 202082 remote_ip 10.8.1.70 202085 username barzegar 202085 mac 202085 bytes_out 0 202085 bytes_in 0 202085 station_ip 5.120.143.34 202085 port 36 202085 unique_id port 202085 remote_ip 10.8.0.14 202087 username pourshad 202087 kill_reason Another user logged on this global unique id 202087 mac 202087 bytes_out 0 202087 bytes_in 0 202087 station_ip 5.120.219.248 202087 port 28 202087 unique_id port 202088 username dortaj3792 202088 mac 202088 bytes_out 0 202088 bytes_in 0 202088 station_ip 5.120.129.125 202088 port 50 202088 unique_id port 202088 remote_ip 10.8.1.34 202090 username saeed9658 202090 mac 202090 bytes_out 0 202090 bytes_in 0 202090 station_ip 5.119.223.127 202090 port 48 202090 unique_id port 202090 remote_ip 10.8.1.194 202093 username saeed9658 202093 mac 202093 bytes_out 0 202093 bytes_in 0 202093 station_ip 5.119.223.127 202093 port 48 202093 unique_id port 202093 remote_ip 10.8.1.194 202095 username kalantary6037 202095 mac 202095 bytes_out 0 202095 bytes_in 0 202095 station_ip 37.129.178.217 202095 port 48 202095 unique_id port 202095 remote_ip 10.8.1.150 202098 username rezaei 202098 mac 202098 bytes_out 0 202098 bytes_in 0 202098 station_ip 5.119.163.137 202098 port 58 202098 unique_id port 202098 remote_ip 10.8.1.174 202099 username hadibarzegar 202099 mac 202099 bytes_out 0 202099 bytes_in 0 202099 station_ip 5.120.115.115 202099 port 48 202099 unique_id port 202099 remote_ip 10.8.1.170 202103 username hashtadani5 202103 mac 202103 bytes_out 1644 202103 bytes_in 4121 202103 station_ip 83.122.12.147 202103 port 37 202103 unique_id port 202103 remote_ip 10.8.0.150 202106 username nilufarrajaei 202106 mac 202067 port 51 202067 unique_id port 202067 remote_ip 10.8.1.162 202072 username saeed9658 202072 mac 202072 bytes_out 0 202072 bytes_in 0 202072 station_ip 5.119.223.127 202072 port 59 202072 unique_id port 202072 remote_ip 10.8.1.194 202076 username saeed9658 202076 mac 202076 bytes_out 0 202076 bytes_in 0 202076 station_ip 5.119.223.127 202076 port 58 202076 unique_id port 202076 remote_ip 10.8.1.194 202077 username saeed9658 202077 mac 202077 bytes_out 0 202077 bytes_in 0 202077 station_ip 5.119.223.127 202077 port 36 202077 unique_id port 202077 remote_ip 10.8.0.218 202078 username saeed9658 202078 mac 202078 bytes_out 0 202078 bytes_in 0 202078 station_ip 5.119.223.127 202078 port 36 202078 unique_id port 202078 remote_ip 10.8.0.218 202079 username barzegar 202079 mac 202079 bytes_out 0 202079 bytes_in 0 202079 station_ip 5.120.143.34 202079 port 59 202079 unique_id port 202079 remote_ip 10.8.1.6 202083 username hashtadani5 202083 mac 202083 bytes_out 0 202083 bytes_in 0 202083 station_ip 83.122.12.147 202083 port 36 202083 unique_id port 202083 remote_ip 10.8.0.150 202092 username hashtadani5 202092 mac 202092 bytes_out 0 202092 bytes_in 0 202092 station_ip 83.122.12.147 202092 port 36 202092 unique_id port 202092 remote_ip 10.8.0.150 202094 username saeed9658 202094 mac 202094 bytes_out 0 202094 bytes_in 0 202094 station_ip 5.119.223.127 202094 port 48 202094 unique_id port 202094 remote_ip 10.8.1.194 202096 username barzegar 202096 mac 202096 bytes_out 0 202096 bytes_in 0 202096 station_ip 5.120.143.34 202096 port 50 202096 unique_id port 202096 remote_ip 10.8.1.6 202097 username saeed9658 202097 mac 202097 bytes_out 0 202097 bytes_in 0 202097 station_ip 5.119.223.127 202097 port 48 202097 unique_id port 202097 remote_ip 10.8.1.194 202102 username kharazmi2920 202102 mac 202102 bytes_out 822764 202102 bytes_in 1870795 202102 station_ip 83.123.60.195 202102 port 33 202102 unique_id port 202102 remote_ip 10.8.0.34 202105 username hashtadani5 202105 kill_reason Maximum check online fails reached 202105 mac 202105 bytes_out 0 202105 bytes_in 0 202105 station_ip 83.122.12.147 202105 port 58 202105 unique_id port 202108 username esmaeili1522 202108 mac 202108 bytes_out 74187 202108 bytes_in 109901 202108 station_ip 5.119.21.230 202108 port 33 202108 unique_id port 202108 remote_ip 10.8.0.138 202110 username hashtadani5 202110 mac 202110 bytes_out 0 202110 bytes_in 0 202110 station_ip 83.122.12.147 202110 port 37 202110 unique_id port 202110 remote_ip 10.8.0.150 202114 username rashidi4690 202114 mac 202114 bytes_out 0 202114 bytes_in 0 202114 station_ip 5.120.146.191 202114 port 59 202114 unique_id port 202114 remote_ip 10.8.1.158 202115 username barzegar 202115 mac 202115 bytes_out 0 202115 bytes_in 0 202115 station_ip 5.120.143.34 202115 port 59 202115 unique_id port 202115 remote_ip 10.8.1.6 202124 username barzegar 202124 mac 202124 bytes_out 0 202124 bytes_in 0 202124 station_ip 5.120.143.34 202124 port 62 202124 unique_id port 202124 remote_ip 10.8.1.6 202126 username malekpoir 202126 kill_reason Another user logged on this global unique id 202126 mac 202126 bytes_out 0 202126 bytes_in 0 202126 station_ip 5.119.237.69 202126 port 56 202126 unique_id port 202133 username mosi 202133 mac 202133 bytes_out 0 202133 bytes_in 0 202133 station_ip 151.235.106.19 202133 port 26 202133 unique_id port 202138 username saeed9658 202138 mac 202068 kill_reason Maximum check online fails reached 202068 mac 202068 bytes_out 0 202068 bytes_in 0 202068 station_ip 83.122.12.147 202068 port 34 202068 unique_id port 202070 username saeed9658 202070 mac 202070 bytes_out 0 202070 bytes_in 0 202070 station_ip 5.119.223.127 202070 port 57 202070 unique_id port 202070 remote_ip 10.8.1.194 202073 username saeed9658 202073 kill_reason Maximum check online fails reached 202073 mac 202073 bytes_out 0 202073 bytes_in 0 202073 station_ip 5.119.223.127 202073 port 57 202073 unique_id port 202074 username hashtadani5 202074 mac 202074 bytes_out 0 202074 bytes_in 0 202074 station_ip 83.122.12.147 202074 port 58 202074 unique_id port 202074 remote_ip 10.8.1.162 202081 username saeed9658 202081 mac 202081 bytes_out 0 202081 bytes_in 0 202081 station_ip 5.119.223.127 202081 port 36 202081 unique_id port 202081 remote_ip 10.8.0.218 202084 username alipour1506 202084 mac 202084 bytes_out 0 202084 bytes_in 0 202084 station_ip 151.234.23.177 202084 port 48 202084 unique_id port 202086 username hashtadani5 202086 mac 202086 bytes_out 0 202086 bytes_in 0 202086 station_ip 83.122.12.147 202086 port 36 202086 unique_id port 202086 remote_ip 10.8.0.150 202089 username saeed9658 202089 mac 202089 bytes_out 0 202089 bytes_in 0 202089 station_ip 5.119.223.127 202089 port 48 202089 unique_id port 202089 remote_ip 10.8.1.194 202091 username saeed9658 202091 mac 202091 bytes_out 0 202091 bytes_in 0 202091 station_ip 5.119.223.127 202091 port 48 202091 unique_id port 202091 remote_ip 10.8.1.194 202100 username hashtadani5 202100 mac 202100 bytes_out 2382 202100 bytes_in 4787 202100 station_ip 83.122.12.147 202100 port 37 202100 unique_id port 202100 remote_ip 10.8.0.150 202101 username hashtadani5 202101 mac 202101 bytes_out 0 202101 bytes_in 0 202101 station_ip 83.122.12.147 202101 port 37 202101 unique_id port 202101 remote_ip 10.8.0.150 202104 username rashidi4690 202104 mac 202104 bytes_out 0 202104 bytes_in 0 202104 station_ip 5.120.146.191 202104 port 48 202104 unique_id port 202104 remote_ip 10.8.1.158 202107 username barzegar 202107 mac 202107 bytes_out 0 202107 bytes_in 0 202107 station_ip 5.120.143.34 202107 port 48 202107 unique_id port 202107 remote_ip 10.8.1.6 202111 username hashtadani5 202111 mac 202111 bytes_out 0 202111 bytes_in 0 202111 station_ip 83.122.12.147 202111 port 37 202111 unique_id port 202111 remote_ip 10.8.0.150 202113 username hashtadani5 202113 mac 202113 bytes_out 0 202113 bytes_in 0 202113 station_ip 83.122.12.147 202113 port 37 202113 unique_id port 202113 remote_ip 10.8.0.150 202117 username hashtadani5 202117 mac 202117 bytes_out 313884 202117 bytes_in 4111290 202117 station_ip 83.122.12.147 202117 port 37 202117 unique_id port 202117 remote_ip 10.8.0.150 202119 username pourshad 202119 mac 202119 bytes_out 0 202119 bytes_in 0 202119 station_ip 5.120.219.248 202119 port 28 202119 unique_id port 202120 username meysam 202120 kill_reason Another user logged on this global unique id 202120 mac 202120 bytes_out 0 202120 bytes_in 0 202120 station_ip 188.159.252.70 202120 port 61 202120 unique_id port 202120 remote_ip 10.8.1.30 202121 username fezealinaghi 202121 kill_reason Another user logged on this global unique id 202121 mac 202121 bytes_out 0 202121 bytes_in 0 202121 station_ip 37.129.249.247 202121 port 36 202121 unique_id port 202122 username rashidi4690 202122 mac 202122 bytes_out 0 202122 bytes_in 0 202106 bytes_out 3639349 202106 bytes_in 33120987 202106 station_ip 37.129.32.137 202106 port 31 202106 unique_id port 202106 remote_ip 10.8.0.94 202109 username hashtadani5 202109 kill_reason Maximum check online fails reached 202109 mac 202109 bytes_out 0 202109 bytes_in 0 202109 station_ip 83.122.12.147 202109 port 48 202109 unique_id port 202112 username fezealinaghi 202112 kill_reason Another user logged on this global unique id 202112 mac 202112 bytes_out 0 202112 bytes_in 0 202112 station_ip 37.129.249.247 202112 port 36 202112 unique_id port 202112 remote_ip 10.8.0.98 202116 username mohammadjavad 202116 mac 202116 bytes_out 2846635 202116 bytes_in 38525016 202116 station_ip 113.203.31.97 202116 port 31 202116 unique_id port 202116 remote_ip 10.8.0.58 202118 username mammad 202118 unique_id port 202118 terminate_cause Lost-Carrier 202118 bytes_out 959100 202118 bytes_in 25197091 202118 station_ip 2.183.241.160 202118 port 15729835 202118 nas_port_type Virtual 202118 remote_ip 5.5.5.255 202127 username fezealinaghi 202127 kill_reason Another user logged on this global unique id 202127 mac 202127 bytes_out 0 202127 bytes_in 0 202127 station_ip 37.129.249.247 202127 port 36 202127 unique_id port 202128 username saeed9658 202128 mac 202128 bytes_out 0 202128 bytes_in 0 202128 station_ip 5.119.223.127 202128 port 61 202128 unique_id port 202128 remote_ip 10.8.1.194 202129 username pourshad 202129 mac 202129 bytes_out 0 202129 bytes_in 0 202129 station_ip 5.120.219.248 202129 port 59 202129 unique_id port 202129 remote_ip 10.8.1.58 202130 username godarzi 202130 mac 202130 bytes_out 0 202130 bytes_in 0 202130 station_ip 5.202.2.157 202130 port 51 202130 unique_id port 202130 remote_ip 10.8.1.78 202131 username fezealinaghi 202131 kill_reason Another user logged on this global unique id 202131 mac 202131 bytes_out 0 202131 bytes_in 0 202131 station_ip 37.129.249.247 202131 port 36 202131 unique_id port 202134 username barzegar 202134 mac 202134 bytes_out 0 202134 bytes_in 0 202134 station_ip 5.120.143.34 202134 port 59 202134 unique_id port 202134 remote_ip 10.8.1.6 202135 username saeed9658 202135 mac 202135 bytes_out 0 202135 bytes_in 0 202135 station_ip 5.119.223.127 202135 port 59 202135 unique_id port 202135 remote_ip 10.8.1.194 202137 username saeed9658 202137 kill_reason Maximum check online fails reached 202137 mac 202137 bytes_out 0 202137 bytes_in 0 202137 station_ip 5.119.223.127 202137 port 37 202137 unique_id port 202139 username barzegar 202139 mac 202139 bytes_out 0 202139 bytes_in 0 202139 station_ip 5.120.143.34 202139 port 59 202139 unique_id port 202139 remote_ip 10.8.1.6 202143 username saeed9658 202143 mac 202143 bytes_out 0 202143 bytes_in 0 202143 station_ip 5.119.223.127 202143 port 59 202143 unique_id port 202143 remote_ip 10.8.1.194 202148 username meysam 202148 kill_reason Another user logged on this global unique id 202148 mac 202148 bytes_out 0 202148 bytes_in 0 202148 station_ip 188.159.252.70 202148 port 62 202148 unique_id port 202148 remote_ip 10.8.1.30 202153 username meysam 202153 mac 202153 bytes_out 0 202153 bytes_in 0 202153 station_ip 188.159.252.70 202153 port 62 202153 unique_id port 202156 username meysam 202156 mac 202156 bytes_out 490309 202156 bytes_in 5304305 202156 station_ip 188.158.49.204 202156 port 36 202156 unique_id port 202156 remote_ip 10.8.0.142 202162 username mosi 202162 mac 202162 bytes_out 0 202162 bytes_in 0 202162 station_ip 151.235.106.19 202162 port 26 202162 unique_id port 202163 username rashidi4690 202122 station_ip 5.120.146.191 202122 port 62 202122 unique_id port 202122 remote_ip 10.8.1.158 202123 username saeed9658 202123 mac 202123 bytes_out 734209 202123 bytes_in 5944717 202123 station_ip 5.119.223.127 202123 port 63 202123 unique_id port 202123 remote_ip 10.8.1.194 202125 username meysam 202125 mac 202125 bytes_out 0 202125 bytes_in 0 202125 station_ip 188.159.252.70 202125 port 61 202125 unique_id port 202132 username saeed9658 202132 mac 202132 bytes_out 0 202132 bytes_in 0 202132 station_ip 5.119.223.127 202132 port 59 202132 unique_id port 202132 remote_ip 10.8.1.194 202136 username pourshad 202136 mac 202136 bytes_out 0 202136 bytes_in 0 202136 station_ip 5.120.219.248 202136 port 51 202136 unique_id port 202136 remote_ip 10.8.1.58 202140 username saeed9658 202140 mac 202140 bytes_out 0 202140 bytes_in 0 202140 station_ip 5.119.223.127 202140 port 59 202140 unique_id port 202140 remote_ip 10.8.1.194 202145 username motamedi9772 202145 mac 202145 bytes_out 55706 202145 bytes_in 59033 202145 station_ip 83.122.213.72 202145 port 39 202145 unique_id port 202145 remote_ip 10.8.0.62 202146 username fezealinaghi 202146 mac 202146 bytes_out 0 202146 bytes_in 0 202146 station_ip 37.129.249.247 202146 port 36 202146 unique_id port 202150 username mosi 202150 kill_reason Another user logged on this global unique id 202150 mac 202150 bytes_out 0 202150 bytes_in 0 202150 station_ip 151.235.106.19 202150 port 26 202150 unique_id port 202150 remote_ip 10.8.1.118 202155 username barzegar 202155 kill_reason Maximum check online fails reached 202155 mac 202155 bytes_out 0 202155 bytes_in 0 202155 station_ip 5.120.143.34 202155 port 62 202155 unique_id port 202157 username saeed9658 202157 mac 202157 bytes_out 174044 202157 bytes_in 1785236 202157 station_ip 5.119.223.127 202157 port 50 202157 unique_id port 202157 remote_ip 10.8.1.194 202168 username nilufarrajaei 202168 mac 202168 bytes_out 629196 202168 bytes_in 5071728 202168 station_ip 37.129.32.137 202168 port 33 202168 unique_id port 202168 remote_ip 10.8.0.94 202177 username farhad3 202177 mac 202177 bytes_out 300943 202177 bytes_in 2974149 202177 station_ip 5.120.0.83 202177 port 40 202177 unique_id port 202177 remote_ip 10.8.0.46 202182 username barzegar 202182 kill_reason Maximum check online fails reached 202182 mac 202182 bytes_out 0 202182 bytes_in 0 202182 station_ip 5.120.143.34 202182 port 26 202182 unique_id port 202183 username meysam 202183 kill_reason Another user logged on this global unique id 202183 mac 202183 bytes_out 0 202183 bytes_in 0 202183 station_ip 188.158.49.204 202183 port 63 202183 unique_id port 202183 remote_ip 10.8.1.30 202184 username barzegar 202184 mac 202184 bytes_out 0 202184 bytes_in 0 202184 station_ip 5.120.143.34 202184 port 51 202184 unique_id port 202184 remote_ip 10.8.1.6 202186 username farhad3 202186 mac 202186 bytes_out 0 202186 bytes_in 0 202186 station_ip 5.120.0.83 202186 port 64 202186 unique_id port 202186 remote_ip 10.8.1.38 202187 username barzegar 202187 mac 202187 bytes_out 0 202187 bytes_in 0 202187 station_ip 5.120.143.34 202187 port 51 202187 unique_id port 202187 remote_ip 10.8.1.6 202189 username saeeddamghani 202189 mac 202189 bytes_out 0 202189 bytes_in 0 202189 station_ip 217.60.218.24 202189 port 50 202189 unique_id port 202191 username barzegar 202191 mac 202191 bytes_out 0 202191 bytes_in 0 202191 station_ip 5.120.143.34 202191 port 33 202191 unique_id port 202138 bytes_out 0 202138 bytes_in 0 202138 station_ip 5.119.223.127 202138 port 61 202138 unique_id port 202138 remote_ip 10.8.1.194 202141 username rezaei 202141 mac 202141 bytes_out 0 202141 bytes_in 0 202141 station_ip 5.119.163.137 202141 port 50 202141 unique_id port 202141 remote_ip 10.8.1.174 202142 username barzegar 202142 mac 202142 bytes_out 0 202142 bytes_in 0 202142 station_ip 5.120.143.34 202142 port 50 202142 unique_id port 202142 remote_ip 10.8.1.6 202144 username fezealinaghi 202144 kill_reason Another user logged on this global unique id 202144 mac 202144 bytes_out 0 202144 bytes_in 0 202144 station_ip 37.129.249.247 202144 port 36 202144 unique_id port 202147 username saeed9658 202147 mac 202147 bytes_out 0 202147 bytes_in 0 202147 station_ip 5.119.223.127 202147 port 50 202147 unique_id port 202147 remote_ip 10.8.1.194 202149 username barzegar 202149 mac 202149 bytes_out 0 202149 bytes_in 0 202149 station_ip 5.120.143.34 202149 port 59 202149 unique_id port 202149 remote_ip 10.8.1.6 202151 username mammad 202151 unique_id port 202151 terminate_cause User-Request 202151 bytes_out 4277997 202151 bytes_in 94879304 202151 station_ip 5.233.75.210 202151 port 15729836 202151 nas_port_type Virtual 202151 remote_ip 5.5.5.255 202152 username barzegar 202152 mac 202152 bytes_out 0 202152 bytes_in 0 202152 station_ip 5.120.143.34 202152 port 63 202152 unique_id port 202152 remote_ip 10.8.1.6 202154 username yaghobi 202154 kill_reason Another user logged on this global unique id 202154 mac 202154 bytes_out 0 202154 bytes_in 0 202154 station_ip 37.129.238.232 202154 port 31 202154 unique_id port 202154 remote_ip 10.8.0.174 202158 username pourshad 202158 kill_reason Another user logged on this global unique id 202158 mac 202158 bytes_out 0 202158 bytes_in 0 202158 station_ip 5.120.219.248 202158 port 51 202158 unique_id port 202158 remote_ip 10.8.1.58 202159 username kalantary6037 202159 mac 202159 bytes_out 0 202159 bytes_in 0 202159 station_ip 37.129.168.161 202159 port 59 202159 unique_id port 202159 remote_ip 10.8.1.150 202160 username rashidi4690 202160 mac 202160 bytes_out 0 202160 bytes_in 0 202160 station_ip 5.120.146.191 202160 port 61 202160 unique_id port 202160 remote_ip 10.8.1.158 202161 username barzegar 202161 mac 202161 bytes_out 0 202161 bytes_in 0 202161 station_ip 5.120.143.34 202161 port 61 202161 unique_id port 202161 remote_ip 10.8.1.6 202165 username mosi 202165 mac 202165 bytes_out 0 202165 bytes_in 0 202165 station_ip 151.235.106.19 202165 port 26 202165 unique_id port 202165 remote_ip 10.8.1.118 202166 username yaghobi 202166 mac 202166 bytes_out 0 202166 bytes_in 0 202166 station_ip 37.129.238.232 202166 port 31 202166 unique_id port 202167 username saeed9658 202167 mac 202167 bytes_out 0 202167 bytes_in 0 202167 station_ip 5.119.223.127 202167 port 50 202167 unique_id port 202167 remote_ip 10.8.1.194 202171 username kamali3 202171 mac 202171 bytes_out 2525144 202171 bytes_in 42405065 202171 station_ip 5.120.151.236 202171 port 31 202171 unique_id port 202171 remote_ip 10.8.0.234 202173 username kamali3 202173 mac 202173 bytes_out 0 202173 bytes_in 0 202173 station_ip 5.119.28.157 202173 port 26 202173 unique_id port 202173 remote_ip 10.8.1.166 202175 username barzegar 202175 mac 202175 bytes_out 0 202175 bytes_in 0 202175 station_ip 5.120.143.34 202175 port 64 202175 unique_id port 202175 remote_ip 10.8.1.6 202176 username pourshad 202176 mac 202163 mac 202163 bytes_out 224163 202163 bytes_in 2193128 202163 station_ip 5.120.128.252 202163 port 59 202163 unique_id port 202163 remote_ip 10.8.1.158 202164 username saeed9658 202164 mac 202164 bytes_out 0 202164 bytes_in 0 202164 station_ip 5.119.223.127 202164 port 50 202164 unique_id port 202164 remote_ip 10.8.1.194 202169 username barzegar 202169 mac 202169 bytes_out 0 202169 bytes_in 0 202169 station_ip 5.120.143.34 202169 port 26 202169 unique_id port 202169 remote_ip 10.8.1.6 202170 username esmaeilkazemi 202170 mac 202170 bytes_out 0 202170 bytes_in 0 202170 station_ip 46.249.124.78 202170 port 26 202170 unique_id port 202170 remote_ip 10.8.1.218 202172 username barzegar 202172 mac 202172 bytes_out 0 202172 bytes_in 0 202172 station_ip 5.120.143.34 202172 port 63 202172 unique_id port 202172 remote_ip 10.8.1.6 202174 username esmaeilkazemi 202174 mac 202174 bytes_out 0 202174 bytes_in 0 202174 station_ip 46.249.124.78 202174 port 64 202174 unique_id port 202174 remote_ip 10.8.1.218 202180 username saeeddamghani 202180 kill_reason Another user logged on this global unique id 202180 mac 202180 bytes_out 0 202180 bytes_in 0 202180 station_ip 217.60.218.24 202180 port 50 202180 unique_id port 202180 remote_ip 10.8.1.66 202181 username pourshad 202181 mac 202181 bytes_out 416551 202181 bytes_in 3369044 202181 station_ip 5.120.219.248 202181 port 33 202181 unique_id port 202181 remote_ip 10.8.0.54 202194 username barzegar 202194 mac 202194 bytes_out 0 202194 bytes_in 0 202194 station_ip 5.120.143.34 202194 port 61 202194 unique_id port 202194 remote_ip 10.8.1.6 202196 username meysam 202196 kill_reason Another user logged on this global unique id 202196 mac 202196 bytes_out 0 202196 bytes_in 0 202196 station_ip 188.158.49.204 202196 port 63 202196 unique_id port 202198 username barzegar 202198 mac 202198 bytes_out 0 202198 bytes_in 0 202198 station_ip 5.120.143.34 202198 port 61 202198 unique_id port 202198 remote_ip 10.8.1.6 202202 username saeeddamghani 202202 kill_reason Another user logged on this global unique id 202202 mac 202202 bytes_out 0 202202 bytes_in 0 202202 station_ip 217.60.218.24 202202 port 51 202202 unique_id port 202202 remote_ip 10.8.1.66 202203 username dortaj3792 202203 mac 202203 bytes_out 300349 202203 bytes_in 791282 202203 station_ip 5.120.129.125 202203 port 41 202203 unique_id port 202203 remote_ip 10.8.0.30 202205 username godarzi 202205 kill_reason Another user logged on this global unique id 202205 mac 202205 bytes_out 0 202205 bytes_in 0 202205 station_ip 5.202.2.157 202205 port 31 202205 unique_id port 202208 username barzegar8595 202208 mac 202208 bytes_out 4250183 202208 bytes_in 47797574 202208 station_ip 46.225.232.28 202208 port 28 202208 unique_id port 202208 remote_ip 10.8.0.82 202211 username farhad3 202211 mac 202211 bytes_out 0 202211 bytes_in 0 202211 station_ip 5.119.165.110 202211 port 68 202211 unique_id port 202211 remote_ip 10.8.1.38 202215 username khademi 202215 kill_reason Another user logged on this global unique id 202215 mac 202215 bytes_out 0 202215 bytes_in 0 202215 station_ip 37.129.212.3 202215 port 25 202215 unique_id port 202217 username sabaghnezhad 202217 mac 202217 bytes_out 4262815 202217 bytes_in 25998671 202217 station_ip 83.122.58.200 202217 port 38 202217 unique_id port 202217 remote_ip 10.8.0.18 202220 username alipour1506 202220 mac 202220 bytes_out 0 202220 bytes_in 0 202220 station_ip 83.123.76.30 202220 port 66 202220 unique_id port 202176 bytes_out 0 202176 bytes_in 0 202176 station_ip 5.120.219.248 202176 port 51 202176 unique_id port 202178 username iranmanesh4443 202178 mac 202178 bytes_out 0 202178 bytes_in 0 202178 station_ip 5.120.108.180 202178 port 26 202178 unique_id port 202178 remote_ip 10.8.1.122 202179 username barzegar 202179 mac 202179 bytes_out 0 202179 bytes_in 0 202179 station_ip 5.120.143.34 202179 port 41 202179 unique_id port 202179 remote_ip 10.8.0.14 202185 username godarzi 202185 kill_reason Another user logged on this global unique id 202185 mac 202185 bytes_out 0 202185 bytes_in 0 202185 station_ip 5.202.2.157 202185 port 31 202185 unique_id port 202185 remote_ip 10.8.0.146 202188 username rezaei 202188 kill_reason Another user logged on this global unique id 202188 mac 202188 bytes_out 0 202188 bytes_in 0 202188 station_ip 5.119.163.137 202188 port 61 202188 unique_id port 202188 remote_ip 10.8.1.174 202190 username rezaei 202190 mac 202190 bytes_out 0 202190 bytes_in 0 202190 station_ip 5.119.163.137 202190 port 61 202190 unique_id port 202192 username saeeddamghani 202192 mac 202192 bytes_out 0 202192 bytes_in 0 202192 station_ip 217.60.218.24 202192 port 50 202192 unique_id port 202192 remote_ip 10.8.1.66 202193 username farhad3 202193 mac 202193 bytes_out 88138 202193 bytes_in 418481 202193 station_ip 5.120.0.83 202193 port 51 202193 unique_id port 202193 remote_ip 10.8.1.38 202197 username barzegar 202197 kill_reason Maximum check online fails reached 202197 mac 202197 bytes_out 0 202197 bytes_in 0 202197 station_ip 5.120.143.34 202197 port 50 202197 unique_id port 202199 username barzegar 202199 mac 202199 bytes_out 0 202199 bytes_in 0 202199 station_ip 5.120.143.34 202199 port 61 202199 unique_id port 202199 remote_ip 10.8.1.6 202200 username fezealinaghi 202200 mac 202200 bytes_out 1096358 202200 bytes_in 4391065 202200 station_ip 37.129.218.15 202200 port 36 202200 unique_id port 202200 remote_ip 10.8.0.98 202204 username esmaeilkazemi 202204 mac 202204 bytes_out 0 202204 bytes_in 0 202204 station_ip 46.249.124.78 202204 port 69 202204 unique_id port 202204 remote_ip 10.8.1.218 202206 username alipour1506 202206 mac 202206 bytes_out 0 202206 bytes_in 0 202206 station_ip 83.123.76.30 202206 port 66 202206 unique_id port 202206 remote_ip 10.8.1.86 202207 username pourshad 202207 mac 202207 bytes_out 4146996 202207 bytes_in 17573495 202207 station_ip 5.120.219.248 202207 port 65 202207 unique_id port 202207 remote_ip 10.8.1.58 202210 username barzegar 202210 mac 202210 bytes_out 0 202210 bytes_in 0 202210 station_ip 5.120.143.34 202210 port 67 202210 unique_id port 202210 remote_ip 10.8.1.6 202216 username saeeddamghani 202216 kill_reason Another user logged on this global unique id 202216 mac 202216 bytes_out 0 202216 bytes_in 0 202216 station_ip 217.60.218.24 202216 port 51 202216 unique_id port 202219 username kalantary6037 202219 mac 202219 bytes_out 0 202219 bytes_in 0 202219 station_ip 37.129.211.201 202219 port 67 202219 unique_id port 202219 remote_ip 10.8.1.150 202221 username nilufarrajaei 202221 mac 202221 bytes_out 168491 202221 bytes_in 531545 202221 station_ip 37.129.32.137 202221 port 39 202221 unique_id port 202221 remote_ip 10.8.0.94 202224 username barzegar 202224 mac 202224 bytes_out 0 202224 bytes_in 0 202224 station_ip 5.120.143.34 202224 port 39 202224 unique_id port 202224 remote_ip 10.8.0.14 202225 username saeeddamghani 202225 kill_reason Another user logged on this global unique id 202225 mac 202191 remote_ip 10.8.0.14 202195 username khademi 202195 kill_reason Another user logged on this global unique id 202195 mac 202195 bytes_out 0 202195 bytes_in 0 202195 station_ip 37.129.212.3 202195 port 25 202195 unique_id port 202201 username kharazmi2920 202201 mac 202201 bytes_out 4145708 202201 bytes_in 42952603 202201 station_ip 83.123.60.195 202201 port 40 202201 unique_id port 202201 remote_ip 10.8.0.34 202209 username fezealinaghi 202209 mac 202209 bytes_out 0 202209 bytes_in 0 202209 station_ip 37.129.218.15 202209 port 61 202209 unique_id port 202209 remote_ip 10.8.1.222 202212 username hamid.e 202212 unique_id port 202212 terminate_cause User-Request 202212 bytes_out 3604313 202212 bytes_in 37403485 202212 station_ip 37.27.10.136 202212 port 15729838 202212 nas_port_type Virtual 202212 remote_ip 5.5.5.78 202213 username meysam 202213 mac 202213 bytes_out 0 202213 bytes_in 0 202213 station_ip 188.158.49.204 202213 port 63 202213 unique_id port 202214 username kharazmi2920 202214 mac 202214 bytes_out 253624 202214 bytes_in 2694032 202214 station_ip 83.123.60.195 202214 port 36 202214 unique_id port 202214 remote_ip 10.8.0.34 202218 username barzegar 202218 mac 202218 bytes_out 0 202218 bytes_in 0 202218 station_ip 5.120.143.34 202218 port 69 202218 unique_id port 202218 remote_ip 10.8.1.6 202222 username dortaj3792 202222 mac 202222 bytes_out 0 202222 bytes_in 0 202222 station_ip 5.120.129.125 202222 port 65 202222 unique_id port 202222 remote_ip 10.8.1.34 202223 username godarzi 202223 kill_reason Another user logged on this global unique id 202223 mac 202223 bytes_out 0 202223 bytes_in 0 202223 station_ip 5.202.2.157 202223 port 31 202223 unique_id port 202227 username barzegar 202227 mac 202227 bytes_out 0 202227 bytes_in 0 202227 station_ip 5.120.143.34 202227 port 39 202227 unique_id port 202227 remote_ip 10.8.0.14 202229 username barzegar 202229 mac 202229 bytes_out 0 202229 bytes_in 0 202229 station_ip 5.120.143.34 202229 port 68 202229 unique_id port 202229 remote_ip 10.8.1.6 202231 username khorasani9135 202231 mac 202231 bytes_out 800843 202231 bytes_in 2679810 202231 station_ip 83.123.229.222 202231 port 33 202231 unique_id port 202231 remote_ip 10.8.0.222 202233 username malekpoir 202233 kill_reason Another user logged on this global unique id 202233 mac 202233 bytes_out 0 202233 bytes_in 0 202233 station_ip 5.119.237.69 202233 port 56 202233 unique_id port 202236 username kharazmi2920 202236 mac 202236 bytes_out 0 202236 bytes_in 0 202236 station_ip 83.123.60.195 202236 port 28 202236 unique_id port 202236 remote_ip 10.8.0.34 202237 username meysam 202237 kill_reason Another user logged on this global unique id 202237 mac 202237 bytes_out 0 202237 bytes_in 0 202237 station_ip 188.158.49.204 202237 port 66 202237 unique_id port 202237 remote_ip 10.8.1.30 202246 username saeeddamghani 202246 kill_reason Another user logged on this global unique id 202246 mac 202246 bytes_out 0 202246 bytes_in 0 202246 station_ip 217.60.218.24 202246 port 51 202246 unique_id port 202247 username yaghobi 202247 mac 202247 bytes_out 48700 202247 bytes_in 62665 202247 station_ip 37.129.139.12 202247 port 41 202247 unique_id port 202247 remote_ip 10.8.0.174 202249 username barzegar 202249 mac 202249 bytes_out 0 202249 bytes_in 0 202249 station_ip 5.120.143.34 202249 port 68 202249 unique_id port 202249 remote_ip 10.8.1.6 202252 username motamedi9772 202252 mac 202252 bytes_out 2710090 202252 bytes_in 26536158 202252 station_ip 83.122.138.92 202252 port 39 202220 remote_ip 10.8.1.86 202230 username kharazmi2920 202230 mac 202230 bytes_out 685604 202230 bytes_in 5199252 202230 station_ip 83.123.60.195 202230 port 28 202230 unique_id port 202230 remote_ip 10.8.0.34 202232 username farhad3 202232 mac 202232 bytes_out 0 202232 bytes_in 0 202232 station_ip 5.119.165.110 202232 port 61 202232 unique_id port 202234 username alipour1506 202234 mac 202234 bytes_out 0 202234 bytes_in 0 202234 station_ip 83.123.76.30 202234 port 66 202234 unique_id port 202234 remote_ip 10.8.1.86 202235 username saeeddamghani 202235 kill_reason Another user logged on this global unique id 202235 mac 202235 bytes_out 0 202235 bytes_in 0 202235 station_ip 217.60.218.24 202235 port 51 202235 unique_id port 202238 username yaghobi 202238 mac 202238 bytes_out 709788 202238 bytes_in 3437017 202238 station_ip 37.129.255.228 202238 port 39 202238 unique_id port 202238 remote_ip 10.8.0.174 202239 username khademi 202239 kill_reason Another user logged on this global unique id 202239 mac 202239 bytes_out 0 202239 bytes_in 0 202239 station_ip 37.129.212.3 202239 port 25 202239 unique_id port 202241 username mosi 202241 mac 202241 bytes_out 0 202241 bytes_in 0 202241 station_ip 37.156.48.110 202241 port 68 202241 unique_id port 202241 remote_ip 10.8.1.118 202242 username kalantary6037 202242 mac 202242 bytes_out 0 202242 bytes_in 0 202242 station_ip 37.129.211.201 202242 port 65 202242 unique_id port 202242 remote_ip 10.8.1.150 202244 username mammad 202244 kill_reason Maximum check online fails reached 202244 unique_id port 202244 bytes_out 1106685 202244 bytes_in 9074612 202244 station_ip 5.233.75.210 202244 port 15729842 202244 nas_port_type Virtual 202244 remote_ip 5.5.5.255 202245 username meysam 202245 mac 202245 bytes_out 0 202245 bytes_in 0 202245 station_ip 188.158.49.204 202245 port 66 202245 unique_id port 202256 username motamedi9772 202256 mac 202256 bytes_out 0 202256 bytes_in 0 202256 station_ip 83.122.138.92 202256 port 39 202256 unique_id port 202256 remote_ip 10.8.0.62 202257 username motamedi9772 202257 mac 202257 bytes_out 0 202257 bytes_in 0 202257 station_ip 83.122.138.92 202257 port 39 202257 unique_id port 202257 remote_ip 10.8.0.62 202261 username motamedi9772 202261 mac 202261 bytes_out 0 202261 bytes_in 0 202261 station_ip 83.122.138.92 202261 port 39 202261 unique_id port 202261 remote_ip 10.8.0.62 202264 username meysam 202264 kill_reason Another user logged on this global unique id 202264 mac 202264 bytes_out 0 202264 bytes_in 0 202264 station_ip 188.158.49.204 202264 port 40 202264 unique_id port 202265 username motamedi9772 202265 mac 202265 bytes_out 0 202265 bytes_in 0 202265 station_ip 83.122.138.92 202265 port 39 202265 unique_id port 202265 remote_ip 10.8.0.62 202266 username motamedi9772 202266 mac 202266 bytes_out 0 202266 bytes_in 0 202266 station_ip 83.122.138.92 202266 port 39 202266 unique_id port 202266 remote_ip 10.8.0.62 202272 username motamedi9772 202272 mac 202272 bytes_out 0 202272 bytes_in 0 202272 station_ip 83.122.138.92 202272 port 39 202272 unique_id port 202272 remote_ip 10.8.0.62 202273 username motamedi9772 202273 mac 202273 bytes_out 0 202273 bytes_in 0 202273 station_ip 83.122.138.92 202273 port 39 202273 unique_id port 202273 remote_ip 10.8.0.62 202276 username alipour1506 202276 mac 202276 bytes_out 742915 202276 bytes_in 5352620 202276 station_ip 83.123.76.30 202276 port 33 202276 unique_id port 202276 remote_ip 10.8.0.134 202278 username farhad3 202225 bytes_out 0 202225 bytes_in 0 202225 station_ip 217.60.218.24 202225 port 51 202225 unique_id port 202226 username farhad3 202226 kill_reason Another user logged on this global unique id 202226 mac 202226 bytes_out 0 202226 bytes_in 0 202226 station_ip 5.119.165.110 202226 port 61 202226 unique_id port 202226 remote_ip 10.8.1.38 202228 username fezealinaghi 202228 mac 202228 bytes_out 0 202228 bytes_in 0 202228 station_ip 37.129.123.72 202228 port 68 202228 unique_id port 202228 remote_ip 10.8.1.222 202240 username mosi 202240 mac 202240 bytes_out 3945221 202240 bytes_in 36378364 202240 station_ip 151.235.106.19 202240 port 64 202240 unique_id port 202240 remote_ip 10.8.1.118 202243 username akbari0070 202243 mac 202243 bytes_out 0 202243 bytes_in 0 202243 station_ip 83.123.137.49 202243 port 40 202243 unique_id port 202243 remote_ip 10.8.0.90 202248 username farhad3 202248 kill_reason Another user logged on this global unique id 202248 mac 202248 bytes_out 0 202248 bytes_in 0 202248 station_ip 5.119.165.110 202248 port 61 202248 unique_id port 202248 remote_ip 10.8.1.38 202250 username meysam 202250 kill_reason Another user logged on this global unique id 202250 mac 202250 bytes_out 0 202250 bytes_in 0 202250 station_ip 188.158.49.204 202250 port 40 202250 unique_id port 202250 remote_ip 10.8.0.142 202251 username mosi 202251 mac 202251 bytes_out 0 202251 bytes_in 0 202251 station_ip 151.235.106.19 202251 port 64 202251 unique_id port 202251 remote_ip 10.8.1.118 202253 username motamedi9772 202253 mac 202253 bytes_out 179266 202253 bytes_in 2033707 202253 station_ip 83.122.138.92 202253 port 41 202253 unique_id port 202253 remote_ip 10.8.0.62 202258 username motamedi9772 202258 mac 202258 bytes_out 0 202258 bytes_in 0 202258 station_ip 83.122.138.92 202258 port 39 202258 unique_id port 202258 remote_ip 10.8.0.62 202260 username saeeddamghani 202260 kill_reason Another user logged on this global unique id 202260 mac 202260 bytes_out 0 202260 bytes_in 0 202260 station_ip 217.60.218.24 202260 port 51 202260 unique_id port 202262 username motamedi9772 202262 mac 202262 bytes_out 0 202262 bytes_in 0 202262 station_ip 83.122.138.92 202262 port 39 202262 unique_id port 202262 remote_ip 10.8.0.62 202263 username motamedi9772 202263 mac 202263 bytes_out 0 202263 bytes_in 0 202263 station_ip 83.122.138.92 202263 port 39 202263 unique_id port 202263 remote_ip 10.8.0.62 202270 username barzegar 202270 mac 202270 bytes_out 0 202270 bytes_in 0 202270 station_ip 5.120.143.34 202270 port 64 202270 unique_id port 202270 remote_ip 10.8.1.6 202274 username motamedi9772 202274 mac 202274 bytes_out 0 202274 bytes_in 0 202274 station_ip 83.122.138.92 202274 port 39 202274 unique_id port 202274 remote_ip 10.8.0.62 202275 username motamedi9772 202275 mac 202275 bytes_out 0 202275 bytes_in 0 202275 station_ip 83.122.138.92 202275 port 39 202275 unique_id port 202275 remote_ip 10.8.0.62 202279 username alipour1506 202279 mac 202279 bytes_out 0 202279 bytes_in 0 202279 station_ip 83.123.76.30 202279 port 42 202279 unique_id port 202279 remote_ip 10.8.0.134 202281 username motamedi9772 202281 mac 202281 bytes_out 0 202281 bytes_in 0 202281 station_ip 83.122.138.92 202281 port 33 202281 unique_id port 202281 remote_ip 10.8.0.62 202283 username pourshad 202283 mac 202283 bytes_out 0 202283 bytes_in 0 202283 station_ip 5.120.219.248 202283 port 67 202283 unique_id port 202283 remote_ip 10.8.1.58 202286 username alipour1506 202252 unique_id port 202252 remote_ip 10.8.0.62 202254 username barzegar 202254 mac 202254 bytes_out 0 202254 bytes_in 0 202254 station_ip 5.120.143.34 202254 port 39 202254 unique_id port 202254 remote_ip 10.8.0.14 202255 username motamedi9772 202255 mac 202255 bytes_out 0 202255 bytes_in 0 202255 station_ip 83.122.138.92 202255 port 41 202255 unique_id port 202255 remote_ip 10.8.0.62 202259 username motamedi9772 202259 mac 202259 bytes_out 0 202259 bytes_in 0 202259 station_ip 83.122.138.92 202259 port 39 202259 unique_id port 202259 remote_ip 10.8.0.62 202267 username motamedi9772 202267 mac 202267 bytes_out 0 202267 bytes_in 0 202267 station_ip 83.122.138.92 202267 port 39 202267 unique_id port 202267 remote_ip 10.8.0.62 202268 username motamedi9772 202268 mac 202268 bytes_out 0 202268 bytes_in 0 202268 station_ip 83.122.138.92 202268 port 39 202268 unique_id port 202268 remote_ip 10.8.0.62 202269 username tahmorsi 202269 mac 202269 bytes_out 0 202269 bytes_in 0 202269 station_ip 86.57.45.190 202269 port 65 202269 unique_id port 202269 remote_ip 10.8.1.102 202271 username motamedi9772 202271 mac 202271 bytes_out 6014 202271 bytes_in 12161 202271 station_ip 83.122.138.92 202271 port 39 202271 unique_id port 202271 remote_ip 10.8.0.62 202277 username motamedi9772 202277 mac 202277 bytes_out 0 202277 bytes_in 0 202277 station_ip 83.122.138.92 202277 port 39 202277 unique_id port 202277 remote_ip 10.8.0.62 202282 username mirzaei6046 202282 mac 202282 bytes_out 0 202282 bytes_in 0 202282 station_ip 5.119.100.38 202282 port 59 202282 unique_id port 202282 remote_ip 10.8.1.214 202284 username motamedi9772 202284 mac 202284 bytes_out 0 202284 bytes_in 0 202284 station_ip 83.122.138.92 202284 port 33 202284 unique_id port 202284 remote_ip 10.8.0.62 202289 username motamedi9772 202289 mac 202289 bytes_out 0 202289 bytes_in 0 202289 station_ip 83.122.138.92 202289 port 33 202289 unique_id port 202289 remote_ip 10.8.0.62 202291 username motamedi9772 202291 mac 202291 bytes_out 0 202291 bytes_in 0 202291 station_ip 83.122.138.92 202291 port 33 202291 unique_id port 202291 remote_ip 10.8.0.62 202295 username motamedi9772 202295 mac 202295 bytes_out 0 202295 bytes_in 0 202295 station_ip 83.122.138.92 202295 port 33 202295 unique_id port 202295 remote_ip 10.8.0.62 202296 username motamedi9772 202296 mac 202296 bytes_out 0 202296 bytes_in 0 202296 station_ip 83.122.138.92 202296 port 33 202296 unique_id port 202296 remote_ip 10.8.0.62 202300 username motamedi9772 202300 mac 202300 bytes_out 0 202300 bytes_in 0 202300 station_ip 83.122.138.92 202300 port 33 202300 unique_id port 202300 remote_ip 10.8.0.62 202301 username motamedi9772 202301 mac 202301 bytes_out 0 202301 bytes_in 0 202301 station_ip 83.122.138.92 202301 port 33 202301 unique_id port 202301 remote_ip 10.8.0.62 202302 username motamedi9772 202302 mac 202302 bytes_out 0 202302 bytes_in 0 202302 station_ip 83.122.138.92 202302 port 33 202302 unique_id port 202302 remote_ip 10.8.0.62 202305 username motamedi9772 202305 mac 202305 bytes_out 0 202305 bytes_in 0 202305 station_ip 83.122.138.92 202305 port 33 202305 unique_id port 202305 remote_ip 10.8.0.62 202307 username kalantary6037 202307 mac 202307 bytes_out 0 202307 bytes_in 0 202307 station_ip 37.129.211.201 202307 port 66 202307 unique_id port 202307 remote_ip 10.8.1.150 202310 username khademi 202310 mac 202310 bytes_out 0 202278 mac 202278 bytes_out 0 202278 bytes_in 0 202278 station_ip 5.119.165.110 202278 port 61 202278 unique_id port 202280 username motamedi9772 202280 mac 202280 bytes_out 0 202280 bytes_in 0 202280 station_ip 83.122.138.92 202280 port 33 202280 unique_id port 202280 remote_ip 10.8.0.62 202285 username motamedi9772 202285 mac 202285 bytes_out 0 202285 bytes_in 0 202285 station_ip 83.122.138.92 202285 port 33 202285 unique_id port 202285 remote_ip 10.8.0.62 202287 username motamedi9772 202287 mac 202287 bytes_out 0 202287 bytes_in 0 202287 station_ip 83.122.138.92 202287 port 33 202287 unique_id port 202287 remote_ip 10.8.0.62 202290 username meysam 202290 mac 202290 bytes_out 0 202290 bytes_in 0 202290 station_ip 188.158.49.204 202290 port 40 202290 unique_id port 202292 username motamedi9772 202292 mac 202292 bytes_out 0 202292 bytes_in 0 202292 station_ip 83.122.138.92 202292 port 33 202292 unique_id port 202292 remote_ip 10.8.0.62 202294 username mirzaei6046 202294 mac 202294 bytes_out 0 202294 bytes_in 0 202294 station_ip 5.119.100.38 202294 port 64 202294 unique_id port 202294 remote_ip 10.8.1.214 202298 username saeeddamghani 202298 kill_reason Another user logged on this global unique id 202298 mac 202298 bytes_out 0 202298 bytes_in 0 202298 station_ip 217.60.218.24 202298 port 51 202298 unique_id port 202299 username barzegar 202299 mac 202299 bytes_out 0 202299 bytes_in 0 202299 station_ip 5.120.143.34 202299 port 67 202299 unique_id port 202299 remote_ip 10.8.1.6 202303 username motamedi9772 202303 mac 202303 bytes_out 0 202303 bytes_in 0 202303 station_ip 83.122.138.92 202303 port 33 202303 unique_id port 202303 remote_ip 10.8.0.62 202304 username kharazmi2920 202304 mac 202304 bytes_out 1359073 202304 bytes_in 13599661 202304 station_ip 83.123.60.195 202304 port 28 202304 unique_id port 202304 remote_ip 10.8.0.34 202306 username farhad3 202306 mac 202306 bytes_out 0 202306 bytes_in 0 202306 station_ip 5.119.165.110 202306 port 65 202306 unique_id port 202306 remote_ip 10.8.1.38 202309 username yaghobi 202309 mac 202309 bytes_out 0 202309 bytes_in 0 202309 station_ip 46.225.232.28 202309 port 67 202309 unique_id port 202309 remote_ip 10.8.1.186 202313 username motamedi9772 202313 mac 202313 bytes_out 0 202313 bytes_in 0 202313 station_ip 83.122.138.92 202313 port 25 202313 unique_id port 202313 remote_ip 10.8.0.62 202322 username saeeddamghani 202322 mac 202322 bytes_out 0 202322 bytes_in 0 202322 station_ip 217.60.218.24 202322 port 51 202322 unique_id port 202322 remote_ip 10.8.1.66 202327 username motamedi9772 202327 mac 202327 bytes_out 0 202327 bytes_in 0 202327 station_ip 83.122.138.92 202327 port 25 202327 unique_id port 202327 remote_ip 10.8.0.62 202330 username yaghobi 202330 mac 202330 bytes_out 77522 202330 bytes_in 140875 202330 station_ip 37.129.219.164 202330 port 28 202330 unique_id port 202330 remote_ip 10.8.0.174 202340 username alipour1506 202340 mac 202340 bytes_out 1550746 202340 bytes_in 16370255 202340 station_ip 83.123.76.30 202340 port 39 202340 unique_id port 202340 remote_ip 10.8.0.134 202342 username motamedi9772 202342 mac 202342 bytes_out 935962 202342 bytes_in 10050290 202342 station_ip 83.122.138.92 202342 port 25 202342 unique_id port 202342 remote_ip 10.8.0.62 202350 username mirzaei6046 202350 mac 202350 bytes_out 0 202350 bytes_in 0 202350 station_ip 5.119.100.38 202350 port 51 202350 unique_id port 202286 mac 202286 bytes_out 31935 202286 bytes_in 60598 202286 station_ip 83.123.76.30 202286 port 39 202286 unique_id port 202286 remote_ip 10.8.0.134 202288 username barzegar 202288 mac 202288 bytes_out 0 202288 bytes_in 0 202288 station_ip 5.120.143.34 202288 port 42 202288 unique_id port 202288 remote_ip 10.8.0.14 202293 username motamedi9772 202293 mac 202293 bytes_out 0 202293 bytes_in 0 202293 station_ip 83.122.138.92 202293 port 33 202293 unique_id port 202293 remote_ip 10.8.0.62 202297 username motamedi9772 202297 mac 202297 bytes_out 0 202297 bytes_in 0 202297 station_ip 83.122.138.92 202297 port 33 202297 unique_id port 202297 remote_ip 10.8.0.62 202308 username barzegar 202308 mac 202308 bytes_out 0 202308 bytes_in 0 202308 station_ip 5.120.143.34 202308 port 68 202308 unique_id port 202308 remote_ip 10.8.1.6 202311 username motamedi9772 202311 mac 202311 bytes_out 214388 202311 bytes_in 2274414 202311 station_ip 83.122.138.92 202311 port 28 202311 unique_id port 202311 remote_ip 10.8.0.62 202312 username motamedi9772 202312 mac 202312 bytes_out 0 202312 bytes_in 0 202312 station_ip 83.122.138.92 202312 port 25 202312 unique_id port 202312 remote_ip 10.8.0.62 202314 username motamedi9772 202314 mac 202314 bytes_out 0 202314 bytes_in 0 202314 station_ip 83.122.138.92 202314 port 25 202314 unique_id port 202314 remote_ip 10.8.0.62 202315 username khademi 202315 mac 202315 bytes_out 37510 202315 bytes_in 73170 202315 station_ip 37.129.212.3 202315 port 66 202315 unique_id port 202315 remote_ip 10.8.1.226 202318 username motamedi9772 202318 mac 202318 bytes_out 0 202318 bytes_in 0 202318 station_ip 83.122.138.92 202318 port 25 202318 unique_id port 202318 remote_ip 10.8.0.62 202320 username tahmorsi 202320 mac 202320 bytes_out 0 202320 bytes_in 0 202320 station_ip 86.57.45.190 202320 port 68 202320 unique_id port 202320 remote_ip 10.8.1.102 202324 username khalili2 202324 kill_reason Another user logged on this global unique id 202324 mac 202324 bytes_out 0 202324 bytes_in 0 202324 station_ip 5.119.87.244 202324 port 69 202324 unique_id port 202324 remote_ip 10.8.1.18 202326 username mirzaei6046 202326 mac 202326 bytes_out 0 202326 bytes_in 0 202326 station_ip 5.119.100.38 202326 port 64 202326 unique_id port 202326 remote_ip 10.8.1.214 202335 username farhad3 202335 mac 202335 bytes_out 0 202335 bytes_in 0 202335 station_ip 5.119.165.110 202335 port 65 202335 unique_id port 202335 remote_ip 10.8.1.38 202336 username yaghobi 202336 mac 202336 bytes_out 35248 202336 bytes_in 56876 202336 station_ip 37.129.219.164 202336 port 28 202336 unique_id port 202336 remote_ip 10.8.0.174 202338 username fezealinaghi 202338 mac 202338 bytes_out 0 202338 bytes_in 0 202338 station_ip 83.122.83.141 202338 port 64 202338 unique_id port 202338 remote_ip 10.8.1.222 202339 username charkhandaz3496 202339 mac 202339 bytes_out 0 202339 bytes_in 0 202339 station_ip 5.119.113.242 202339 port 61 202339 unique_id port 202339 remote_ip 10.8.1.46 202341 username pourshad 202341 mac 202341 bytes_out 17304671 202341 bytes_in 26487235 202341 station_ip 5.120.219.248 202341 port 59 202341 unique_id port 202341 remote_ip 10.8.1.58 202344 username motamedi9772 202344 mac 202344 bytes_out 0 202344 bytes_in 0 202344 station_ip 83.122.138.92 202344 port 25 202344 unique_id port 202344 remote_ip 10.8.0.62 202346 username yaghobi 202346 mac 202346 bytes_out 69606 202346 bytes_in 96727 202310 bytes_in 0 202310 station_ip 37.129.212.3 202310 port 25 202310 unique_id port 202316 username motamedi9772 202316 mac 202316 bytes_out 0 202316 bytes_in 0 202316 station_ip 83.122.138.92 202316 port 25 202316 unique_id port 202316 remote_ip 10.8.0.62 202317 username charkhandaz3496 202317 mac 202317 bytes_out 0 202317 bytes_in 0 202317 station_ip 5.119.113.242 202317 port 61 202317 unique_id port 202317 remote_ip 10.8.1.46 202319 username motamedi9772 202319 mac 202319 bytes_out 0 202319 bytes_in 0 202319 station_ip 83.122.138.92 202319 port 25 202319 unique_id port 202319 remote_ip 10.8.0.62 202321 username saeeddamghani 202321 mac 202321 bytes_out 0 202321 bytes_in 0 202321 station_ip 217.60.218.24 202321 port 51 202321 unique_id port 202323 username kalantary6037 202323 mac 202323 bytes_out 0 202323 bytes_in 0 202323 station_ip 37.129.211.201 202323 port 67 202323 unique_id port 202323 remote_ip 10.8.1.150 202325 username alipour1506 202325 mac 202325 bytes_out 110896 202325 bytes_in 266118 202325 station_ip 83.123.76.30 202325 port 43 202325 unique_id port 202325 remote_ip 10.8.0.134 202328 username motamedi9772 202328 mac 202328 bytes_out 0 202328 bytes_in 0 202328 station_ip 83.122.138.92 202328 port 25 202328 unique_id port 202328 remote_ip 10.8.0.62 202329 username motamedi9772 202329 mac 202329 bytes_out 0 202329 bytes_in 0 202329 station_ip 83.122.138.92 202329 port 25 202329 unique_id port 202329 remote_ip 10.8.0.62 202331 username motamedi9772 202331 mac 202331 bytes_out 0 202331 bytes_in 0 202331 station_ip 83.122.138.92 202331 port 25 202331 unique_id port 202331 remote_ip 10.8.0.62 202332 username fezealinaghi 202332 mac 202332 bytes_out 0 202332 bytes_in 0 202332 station_ip 83.122.83.141 202332 port 70 202332 unique_id port 202332 remote_ip 10.8.1.222 202333 username malekpoir 202333 mac 202333 bytes_out 0 202333 bytes_in 0 202333 station_ip 5.119.237.69 202333 port 56 202333 unique_id port 202334 username barzegar 202334 mac 202334 bytes_out 0 202334 bytes_in 0 202334 station_ip 5.120.143.34 202334 port 66 202334 unique_id port 202334 remote_ip 10.8.1.6 202337 username saeeddamghani 202337 mac 202337 bytes_out 0 202337 bytes_in 0 202337 station_ip 217.60.218.24 202337 port 56 202337 unique_id port 202337 remote_ip 10.8.1.66 202343 username saeeddamghani 202343 mac 202343 bytes_out 0 202343 bytes_in 0 202343 station_ip 217.60.218.24 202343 port 66 202343 unique_id port 202343 remote_ip 10.8.1.66 202345 username motamedi9772 202345 mac 202345 bytes_out 0 202345 bytes_in 0 202345 station_ip 83.122.138.92 202345 port 25 202345 unique_id port 202345 remote_ip 10.8.0.62 202347 username nilufarrajaei 202347 mac 202347 bytes_out 1131366 202347 bytes_in 9823247 202347 station_ip 37.129.32.137 202347 port 38 202347 unique_id port 202347 remote_ip 10.8.0.94 202348 username barzegar 202348 mac 202348 bytes_out 0 202348 bytes_in 0 202348 station_ip 5.120.143.34 202348 port 66 202348 unique_id port 202348 remote_ip 10.8.1.6 202352 username motamedi9772 202352 mac 202352 bytes_out 0 202352 bytes_in 0 202352 station_ip 83.122.138.92 202352 port 25 202352 unique_id port 202352 remote_ip 10.8.0.62 202357 username charkhandaz3496 202357 mac 202357 bytes_out 0 202357 bytes_in 0 202357 station_ip 5.119.113.242 202357 port 56 202357 unique_id port 202357 remote_ip 10.8.1.46 202358 username motamedi9772 202358 mac 202358 bytes_out 0 202346 station_ip 37.129.219.164 202346 port 28 202346 unique_id port 202346 remote_ip 10.8.0.174 202349 username motamedi9772 202349 mac 202349 bytes_out 0 202349 bytes_in 0 202349 station_ip 83.122.138.92 202349 port 25 202349 unique_id port 202349 remote_ip 10.8.0.62 202354 username motamedi9772 202354 mac 202354 bytes_out 0 202354 bytes_in 0 202354 station_ip 83.122.138.92 202354 port 25 202354 unique_id port 202354 remote_ip 10.8.0.62 202376 username motamedi9772 202376 mac 202376 bytes_out 0 202376 bytes_in 0 202376 station_ip 83.122.138.92 202376 port 40 202376 unique_id port 202376 remote_ip 10.8.0.62 202377 username motamedi9772 202377 mac 202377 bytes_out 0 202377 bytes_in 0 202377 station_ip 83.122.138.92 202377 port 40 202377 unique_id port 202377 remote_ip 10.8.0.62 202379 username alipour1506 202379 mac 202379 bytes_out 0 202379 bytes_in 0 202379 station_ip 83.123.76.30 202379 port 25 202379 unique_id port 202379 remote_ip 10.8.0.134 202386 username motamedi9772 202386 mac 202386 bytes_out 0 202386 bytes_in 0 202386 station_ip 83.122.138.92 202386 port 25 202386 unique_id port 202386 remote_ip 10.8.0.62 202391 username barzegar 202391 mac 202391 bytes_out 0 202391 bytes_in 0 202391 station_ip 5.120.143.34 202391 port 61 202391 unique_id port 202391 remote_ip 10.8.1.6 202393 username kalantary6037 202393 mac 202393 bytes_out 3445807 202393 bytes_in 49675220 202393 station_ip 37.129.222.193 202393 port 70 202393 unique_id port 202393 remote_ip 10.8.1.150 202397 username barzegar 202397 mac 202397 bytes_out 0 202397 bytes_in 0 202397 station_ip 5.120.143.34 202397 port 61 202397 unique_id port 202397 remote_ip 10.8.1.6 202405 username meysam 202405 kill_reason Another user logged on this global unique id 202405 mac 202405 bytes_out 0 202405 bytes_in 0 202405 station_ip 188.158.50.150 202405 port 61 202405 unique_id port 202405 remote_ip 10.8.1.30 202406 username kalantary6037 202406 mac 202406 bytes_out 0 202406 bytes_in 0 202406 station_ip 37.129.222.193 202406 port 63 202406 unique_id port 202408 username barzegar 202408 mac 202408 bytes_out 0 202408 bytes_in 0 202408 station_ip 5.120.143.34 202408 port 59 202408 unique_id port 202408 remote_ip 10.8.1.6 202411 username pourshad 202411 mac 202411 bytes_out 182344 202411 bytes_in 1048440 202411 station_ip 5.120.219.248 202411 port 64 202411 unique_id port 202411 remote_ip 10.8.1.58 202415 username pourshad 202415 mac 202415 bytes_out 0 202415 bytes_in 0 202415 station_ip 5.120.219.248 202415 port 59 202415 unique_id port 202415 remote_ip 10.8.1.58 202417 username barzegar 202417 mac 202417 bytes_out 0 202417 bytes_in 0 202417 station_ip 5.120.143.34 202417 port 51 202417 unique_id port 202417 remote_ip 10.8.1.6 202418 username rezaei 202418 mac 202418 bytes_out 0 202418 bytes_in 0 202418 station_ip 5.119.163.137 202418 port 64 202418 unique_id port 202418 remote_ip 10.8.1.174 202419 username sabaghnezhad 202419 mac 202419 bytes_out 145126 202419 bytes_in 950356 202419 station_ip 83.122.58.200 202419 port 28 202419 unique_id port 202419 remote_ip 10.8.0.18 202420 username alipour1506 202420 mac 202420 bytes_out 2785183 202420 bytes_in 32676912 202420 station_ip 83.123.76.30 202420 port 40 202420 unique_id port 202420 remote_ip 10.8.0.134 202422 username barzegar 202422 mac 202422 bytes_out 0 202422 bytes_in 0 202422 station_ip 5.120.143.34 202422 port 65 202422 unique_id port 202422 remote_ip 10.8.1.6 202350 remote_ip 10.8.1.214 202351 username motamedi9772 202351 mac 202351 bytes_out 0 202351 bytes_in 0 202351 station_ip 83.122.138.92 202351 port 25 202351 unique_id port 202351 remote_ip 10.8.0.62 202353 username motamedi9772 202353 mac 202353 bytes_out 0 202353 bytes_in 0 202353 station_ip 83.122.138.92 202353 port 25 202353 unique_id port 202353 remote_ip 10.8.0.62 202355 username motamedi9772 202355 mac 202355 bytes_out 0 202355 bytes_in 0 202355 station_ip 83.122.138.92 202355 port 25 202355 unique_id port 202355 remote_ip 10.8.0.62 202356 username motamedi9772 202356 mac 202356 bytes_out 0 202356 bytes_in 0 202356 station_ip 83.122.138.92 202356 port 25 202356 unique_id port 202356 remote_ip 10.8.0.62 202359 username motamedi9772 202359 mac 202359 bytes_out 0 202359 bytes_in 0 202359 station_ip 83.122.138.92 202359 port 25 202359 unique_id port 202359 remote_ip 10.8.0.62 202361 username motamedi9772 202361 mac 202361 bytes_out 0 202361 bytes_in 0 202361 station_ip 83.122.138.92 202361 port 25 202361 unique_id port 202361 remote_ip 10.8.0.62 202362 username motamedi9772 202362 mac 202362 bytes_out 0 202362 bytes_in 0 202362 station_ip 83.122.138.92 202362 port 25 202362 unique_id port 202362 remote_ip 10.8.0.62 202363 username barzegar 202363 mac 202363 bytes_out 0 202363 bytes_in 0 202363 station_ip 5.120.143.34 202363 port 66 202363 unique_id port 202363 remote_ip 10.8.1.6 202366 username alipour1506 202366 mac 202366 bytes_out 121022 202366 bytes_in 508636 202366 station_ip 83.123.76.30 202366 port 61 202366 unique_id port 202366 remote_ip 10.8.1.86 202368 username barzegar 202368 mac 202368 bytes_out 3003 202368 bytes_in 5357 202368 station_ip 5.120.143.34 202368 port 66 202368 unique_id port 202368 remote_ip 10.8.1.6 202369 username farhad3 202369 mac 202369 bytes_out 0 202369 bytes_in 0 202369 station_ip 5.119.165.110 202369 port 64 202369 unique_id port 202369 remote_ip 10.8.1.38 202371 username motamedi9772 202371 mac 202371 bytes_out 0 202371 bytes_in 0 202371 station_ip 83.122.138.92 202371 port 25 202371 unique_id port 202371 remote_ip 10.8.0.62 202372 username alipour1506 202372 mac 202372 bytes_out 0 202372 bytes_in 0 202372 station_ip 83.123.76.30 202372 port 40 202372 unique_id port 202372 remote_ip 10.8.0.134 202375 username motamedi9772 202375 mac 202375 bytes_out 0 202375 bytes_in 0 202375 station_ip 83.122.138.92 202375 port 40 202375 unique_id port 202375 remote_ip 10.8.0.62 202378 username motamedi9772 202378 mac 202378 bytes_out 0 202378 bytes_in 0 202378 station_ip 83.122.138.92 202378 port 40 202378 unique_id port 202378 remote_ip 10.8.0.62 202380 username meysam 202380 mac 202380 bytes_out 0 202380 bytes_in 0 202380 station_ip 188.158.49.204 202380 port 65 202380 unique_id port 202380 remote_ip 10.8.1.30 202381 username saeeddamghani 202381 mac 202381 bytes_out 0 202381 bytes_in 0 202381 station_ip 217.60.218.24 202381 port 56 202381 unique_id port 202381 remote_ip 10.8.1.66 202387 username yaghobi 202387 kill_reason Another user logged on this global unique id 202387 mac 202387 bytes_out 0 202387 bytes_in 0 202387 station_ip 37.129.219.164 202387 port 28 202387 unique_id port 202387 remote_ip 10.8.0.174 202390 username barzegar8595 202390 mac 202390 bytes_out 0 202390 bytes_in 0 202390 station_ip 46.225.232.28 202390 port 63 202390 unique_id port 202390 remote_ip 10.8.1.50 202395 username yaghobi 202358 bytes_in 0 202358 station_ip 83.122.138.92 202358 port 25 202358 unique_id port 202358 remote_ip 10.8.0.62 202360 username rezaei 202360 mac 202360 bytes_out 0 202360 bytes_in 0 202360 station_ip 5.119.163.137 202360 port 68 202360 unique_id port 202360 remote_ip 10.8.1.174 202364 username saeeddamghani 202364 mac 202364 bytes_out 0 202364 bytes_in 0 202364 station_ip 217.60.218.24 202364 port 56 202364 unique_id port 202364 remote_ip 10.8.1.66 202365 username motamedi9772 202365 mac 202365 bytes_out 6126 202365 bytes_in 7321 202365 station_ip 83.122.138.92 202365 port 25 202365 unique_id port 202365 remote_ip 10.8.0.62 202367 username motamedi9772 202367 mac 202367 bytes_out 0 202367 bytes_in 0 202367 station_ip 83.122.138.92 202367 port 25 202367 unique_id port 202367 remote_ip 10.8.0.62 202370 username motamedi9772 202370 mac 202370 bytes_out 0 202370 bytes_in 0 202370 station_ip 83.122.138.92 202370 port 25 202370 unique_id port 202370 remote_ip 10.8.0.62 202373 username motamedi9772 202373 mac 202373 bytes_out 0 202373 bytes_in 0 202373 station_ip 83.122.138.92 202373 port 42 202373 unique_id port 202373 remote_ip 10.8.0.62 202374 username godarzi 202374 kill_reason Another user logged on this global unique id 202374 mac 202374 bytes_out 0 202374 bytes_in 0 202374 station_ip 5.202.2.157 202374 port 31 202374 unique_id port 202382 username motamedi9772 202382 mac 202382 bytes_out 0 202382 bytes_in 0 202382 station_ip 83.122.138.92 202382 port 25 202382 unique_id port 202382 remote_ip 10.8.0.62 202383 username charkhandaz3496 202383 mac 202383 bytes_out 0 202383 bytes_in 0 202383 station_ip 5.120.121.251 202383 port 56 202383 unique_id port 202383 remote_ip 10.8.1.46 202384 username motamedi9772 202384 mac 202384 bytes_out 5446 202384 bytes_in 11513 202384 station_ip 83.122.138.92 202384 port 25 202384 unique_id port 202384 remote_ip 10.8.0.62 202385 username farhad3 202385 mac 202385 bytes_out 0 202385 bytes_in 0 202385 station_ip 5.119.165.110 202385 port 42 202385 unique_id port 202385 remote_ip 10.8.0.46 202388 username farhad3 202388 mac 202388 bytes_out 0 202388 bytes_in 0 202388 station_ip 5.119.165.110 202388 port 61 202388 unique_id port 202388 remote_ip 10.8.1.38 202389 username barzegar 202389 mac 202389 bytes_out 0 202389 bytes_in 0 202389 station_ip 5.120.143.34 202389 port 61 202389 unique_id port 202389 remote_ip 10.8.1.6 202392 username motamedi9772 202392 mac 202392 bytes_out 1251199 202392 bytes_in 11695082 202392 station_ip 83.122.138.92 202392 port 25 202392 unique_id port 202392 remote_ip 10.8.0.62 202394 username barzegar 202394 mac 202394 bytes_out 0 202394 bytes_in 0 202394 station_ip 5.120.143.34 202394 port 61 202394 unique_id port 202394 remote_ip 10.8.1.6 202399 username pourshad 202399 mac 202399 bytes_out 0 202399 bytes_in 0 202399 station_ip 5.120.219.248 202399 port 59 202399 unique_id port 202399 remote_ip 10.8.1.58 202403 username kalantary6037 202403 kill_reason Another user logged on this global unique id 202403 mac 202403 bytes_out 0 202403 bytes_in 0 202403 station_ip 37.129.222.193 202403 port 63 202403 unique_id port 202403 remote_ip 10.8.1.150 202407 username dortaj3792 202407 mac 202407 bytes_out 0 202407 bytes_in 0 202407 station_ip 5.120.129.125 202407 port 41 202407 unique_id port 202407 remote_ip 10.8.0.30 202409 username khalili2 202409 kill_reason Another user logged on this global unique id 202409 mac 202409 bytes_out 0 202395 kill_reason Another user logged on this global unique id 202395 mac 202395 bytes_out 0 202395 bytes_in 0 202395 station_ip 37.129.219.164 202395 port 28 202395 unique_id port 202396 username motamedi9772 202396 mac 202396 bytes_out 279531 202396 bytes_in 2339657 202396 station_ip 83.122.138.92 202396 port 25 202396 unique_id port 202396 remote_ip 10.8.0.62 202398 username yaghobi 202398 mac 202398 bytes_out 0 202398 bytes_in 0 202398 station_ip 37.129.219.164 202398 port 28 202398 unique_id port 202400 username nilufarrajaei 202400 kill_reason Another user logged on this global unique id 202400 mac 202400 bytes_out 0 202400 bytes_in 0 202400 station_ip 37.129.32.137 202400 port 39 202400 unique_id port 202400 remote_ip 10.8.0.94 202401 username barzegar 202401 mac 202401 bytes_out 0 202401 bytes_in 0 202401 station_ip 5.120.143.34 202401 port 59 202401 unique_id port 202401 remote_ip 10.8.1.6 202402 username barzegar 202402 mac 202402 bytes_out 0 202402 bytes_in 0 202402 station_ip 5.120.143.34 202402 port 59 202402 unique_id port 202402 remote_ip 10.8.1.6 202404 username kharazmi2920 202404 mac 202404 bytes_out 1039433 202404 bytes_in 4466767 202404 station_ip 83.123.60.195 202404 port 38 202404 unique_id port 202404 remote_ip 10.8.0.34 202410 username barzegar 202410 mac 202410 bytes_out 0 202410 bytes_in 0 202410 station_ip 5.120.143.34 202410 port 28 202410 unique_id port 202410 remote_ip 10.8.0.14 202412 username sabaghnezhad 202412 mac 202412 bytes_out 1406305 202412 bytes_in 7818821 202412 station_ip 83.122.58.200 202412 port 36 202412 unique_id port 202412 remote_ip 10.8.0.18 202416 username barzegar 202416 mac 202416 bytes_out 0 202416 bytes_in 0 202416 station_ip 5.120.143.34 202416 port 63 202416 unique_id port 202416 remote_ip 10.8.1.6 202421 username barzegar 202421 mac 202421 bytes_out 3901 202421 bytes_in 6301 202421 station_ip 5.120.143.34 202421 port 38 202421 unique_id port 202421 remote_ip 10.8.0.14 202423 username meghdad1616 202423 mac 202423 bytes_out 1154277 202423 bytes_in 15904428 202423 station_ip 5.119.162.173 202423 port 36 202423 unique_id port 202423 remote_ip 10.8.0.126 202424 username mammad 202424 unique_id port 202424 terminate_cause User-Request 202424 bytes_out 3122178 202424 bytes_in 42550095 202424 station_ip 5.233.75.210 202424 port 15729859 202424 nas_port_type Virtual 202424 remote_ip 5.5.5.255 202425 username mirzaei6046 202425 mac 202425 bytes_out 0 202425 bytes_in 0 202425 station_ip 5.113.174.40 202425 port 63 202425 unique_id port 202425 remote_ip 10.8.1.214 202431 username pourshad 202431 mac 202431 bytes_out 0 202431 bytes_in 0 202431 station_ip 5.120.219.248 202431 port 51 202431 unique_id port 202431 remote_ip 10.8.1.58 202433 username godarzi 202433 kill_reason Another user logged on this global unique id 202433 mac 202433 bytes_out 0 202433 bytes_in 0 202433 station_ip 5.202.2.157 202433 port 31 202433 unique_id port 202439 username dortaj3792 202439 mac 202439 bytes_out 0 202439 bytes_in 0 202439 station_ip 5.120.129.125 202439 port 51 202439 unique_id port 202439 remote_ip 10.8.1.34 202440 username barzegar 202440 mac 202440 bytes_out 0 202440 bytes_in 0 202440 station_ip 5.120.143.34 202440 port 59 202440 unique_id port 202440 remote_ip 10.8.1.6 202443 username rajaei 202443 mac 202443 bytes_out 1029386 202443 bytes_in 5600516 202443 station_ip 5.134.146.32 202443 port 39 202443 unique_id port 202443 remote_ip 10.8.0.194 202444 username barzegar 202409 bytes_in 0 202409 station_ip 5.119.87.244 202409 port 69 202409 unique_id port 202413 username barzegar8595 202413 mac 202413 bytes_out 66435 202413 bytes_in 99910 202413 station_ip 46.225.232.28 202413 port 63 202413 unique_id port 202413 remote_ip 10.8.1.50 202414 username mirzaei6046 202414 mac 202414 bytes_out 381200 202414 bytes_in 4713980 202414 station_ip 5.119.100.38 202414 port 51 202414 unique_id port 202414 remote_ip 10.8.1.214 202429 username motamedi9772 202429 mac 202429 bytes_out 0 202429 bytes_in 0 202429 station_ip 83.122.138.92 202429 port 25 202429 unique_id port 202429 remote_ip 10.8.0.62 202434 username saeed9658 202434 mac 202434 bytes_out 0 202434 bytes_in 0 202434 station_ip 5.119.223.127 202434 port 64 202434 unique_id port 202434 remote_ip 10.8.1.194 202436 username yaghobi 202436 mac 202436 bytes_out 220298 202436 bytes_in 207768 202436 station_ip 37.129.163.8 202436 port 25 202436 unique_id port 202436 remote_ip 10.8.0.174 202437 username nilufarrajaei 202437 mac 202437 bytes_out 0 202437 bytes_in 0 202437 station_ip 37.129.32.137 202437 port 39 202437 unique_id port 202438 username sabaghnezhad 202438 mac 202438 bytes_out 0 202438 bytes_in 0 202438 station_ip 83.122.58.200 202438 port 59 202438 unique_id port 202438 remote_ip 10.8.1.42 202441 username sabaghnezhad 202441 mac 202441 bytes_out 0 202441 bytes_in 0 202441 station_ip 83.122.58.200 202441 port 38 202441 unique_id port 202441 remote_ip 10.8.0.18 202447 username godarzi 202447 mac 202447 bytes_out 0 202447 bytes_in 0 202447 station_ip 5.202.2.157 202447 port 31 202447 unique_id port 202452 username alirezaza 202452 unique_id port 202452 terminate_cause User-Request 202452 bytes_out 154 202452 bytes_in 210 202452 station_ip 5.120.36.129 202452 port 15729869 202452 nas_port_type Virtual 202452 remote_ip 5.5.5.254 202453 username alirezaza 202453 unique_id port 202453 terminate_cause User-Request 202453 bytes_out 321 202453 bytes_in 294 202453 station_ip 5.120.36.129 202453 port 15729870 202453 nas_port_type Virtual 202453 remote_ip 5.5.5.254 202455 username nilufarrajaei 202455 mac 202455 bytes_out 603927 202455 bytes_in 1678139 202455 station_ip 37.129.32.137 202455 port 25 202455 unique_id port 202455 remote_ip 10.8.0.94 202463 username barzegar 202463 mac 202463 bytes_out 0 202463 bytes_in 0 202463 station_ip 5.120.143.34 202463 port 64 202463 unique_id port 202463 remote_ip 10.8.1.6 202468 username nilufarrajaei 202468 mac 202468 bytes_out 208754 202468 bytes_in 647087 202468 station_ip 37.129.32.137 202468 port 33 202468 unique_id port 202468 remote_ip 10.8.0.94 202469 username motamedi9772 202469 mac 202469 bytes_out 0 202469 bytes_in 0 202469 station_ip 83.122.138.92 202469 port 33 202469 unique_id port 202469 remote_ip 10.8.0.62 202477 username motamedi9772 202477 mac 202477 bytes_out 0 202477 bytes_in 0 202477 station_ip 83.122.138.92 202477 port 33 202477 unique_id port 202477 remote_ip 10.8.0.62 202478 username motamedi9772 202478 mac 202478 bytes_out 0 202478 bytes_in 0 202478 station_ip 83.122.138.92 202478 port 25 202478 unique_id port 202478 remote_ip 10.8.0.62 202480 username motamedi9772 202480 mac 202480 bytes_out 0 202480 bytes_in 0 202480 station_ip 83.122.138.92 202480 port 25 202480 unique_id port 202480 remote_ip 10.8.0.62 202483 username yaghobi 202483 mac 202483 bytes_out 742537 202483 bytes_in 8941539 202483 station_ip 37.129.150.0 202483 port 42 202426 username meysam 202426 mac 202426 bytes_out 0 202426 bytes_in 0 202426 station_ip 188.158.50.150 202426 port 61 202426 unique_id port 202427 username meghdad1616 202427 mac 202427 bytes_out 0 202427 bytes_in 0 202427 station_ip 5.119.106.178 202427 port 66 202427 unique_id port 202427 remote_ip 10.8.1.142 202428 username alipour1506 202428 mac 202428 bytes_out 397730 202428 bytes_in 4260545 202428 station_ip 83.123.76.30 202428 port 28 202428 unique_id port 202428 remote_ip 10.8.0.134 202430 username meysam 202430 mac 202430 bytes_out 0 202430 bytes_in 0 202430 station_ip 188.158.50.150 202430 port 63 202430 unique_id port 202430 remote_ip 10.8.1.30 202432 username kalantary6037 202432 mac 202432 bytes_out 2016085 202432 bytes_in 25631637 202432 station_ip 37.129.253.165 202432 port 65 202432 unique_id port 202432 remote_ip 10.8.1.150 202435 username barzegar 202435 mac 202435 bytes_out 0 202435 bytes_in 0 202435 station_ip 5.120.143.34 202435 port 63 202435 unique_id port 202435 remote_ip 10.8.1.6 202442 username meghdad1616 202442 mac 202442 bytes_out 0 202442 bytes_in 0 202442 station_ip 5.120.156.227 202442 port 61 202442 unique_id port 202442 remote_ip 10.8.1.142 202445 username meghdad1616 202445 mac 202445 bytes_out 0 202445 bytes_in 0 202445 station_ip 5.120.156.227 202445 port 61 202445 unique_id port 202445 remote_ip 10.8.1.142 202456 username majidsarmast 202456 mac 202456 bytes_out 0 202456 bytes_in 0 202456 station_ip 83.123.156.111 202456 port 61 202456 unique_id port 202456 remote_ip 10.8.1.114 202457 username barzegar 202457 mac 202457 bytes_out 0 202457 bytes_in 0 202457 station_ip 5.120.143.34 202457 port 61 202457 unique_id port 202457 remote_ip 10.8.1.6 202459 username yaghobi 202459 mac 202459 bytes_out 403613 202459 bytes_in 3223129 202459 station_ip 37.129.150.0 202459 port 31 202459 unique_id port 202459 remote_ip 10.8.0.174 202460 username mammad 202460 unique_id port 202460 terminate_cause User-Request 202460 bytes_out 5794640 202460 bytes_in 114187575 202460 station_ip 5.233.75.210 202460 port 15729865 202460 nas_port_type Virtual 202460 remote_ip 5.5.5.255 202462 username godarzi 202462 mac 202462 bytes_out 0 202462 bytes_in 0 202462 station_ip 5.202.2.157 202462 port 61 202462 unique_id port 202462 remote_ip 10.8.1.78 202464 username motamedi9772 202464 mac 202464 bytes_out 2023776 202464 bytes_in 22347152 202464 station_ip 83.122.138.92 202464 port 28 202464 unique_id port 202464 remote_ip 10.8.0.62 202467 username motamedi9772 202467 mac 202467 bytes_out 0 202467 bytes_in 0 202467 station_ip 83.122.138.92 202467 port 28 202467 unique_id port 202467 remote_ip 10.8.0.62 202471 username motamedi9772 202471 mac 202471 bytes_out 0 202471 bytes_in 0 202471 station_ip 83.122.138.92 202471 port 33 202471 unique_id port 202471 remote_ip 10.8.0.62 202472 username motamedi9772 202472 mac 202472 bytes_out 0 202472 bytes_in 0 202472 station_ip 83.122.138.92 202472 port 33 202472 unique_id port 202472 remote_ip 10.8.0.62 202473 username motamedi9772 202473 mac 202473 bytes_out 0 202473 bytes_in 0 202473 station_ip 83.122.138.92 202473 port 33 202473 unique_id port 202473 remote_ip 10.8.0.62 202475 username meghdad1616 202475 mac 202475 bytes_out 0 202475 bytes_in 0 202475 station_ip 5.120.156.227 202475 port 40 202475 unique_id port 202484 username rezaei 202484 kill_reason Maximum check online fails reached 202484 mac 202484 bytes_out 0 202444 mac 202444 bytes_out 0 202444 bytes_in 0 202444 station_ip 5.120.143.34 202444 port 61 202444 unique_id port 202444 remote_ip 10.8.1.6 202446 username saeed9658 202446 mac 202446 bytes_out 0 202446 bytes_in 0 202446 station_ip 5.119.223.127 202446 port 59 202446 unique_id port 202446 remote_ip 10.8.1.194 202448 username hatami 202448 mac 202448 bytes_out 0 202448 bytes_in 0 202448 station_ip 37.27.4.164 202448 port 56 202448 unique_id port 202448 remote_ip 10.8.1.26 202449 username motamedi9772 202449 mac 202449 bytes_out 2384019 202449 bytes_in 27511032 202449 station_ip 83.122.138.92 202449 port 28 202449 unique_id port 202449 remote_ip 10.8.0.62 202450 username malekpoir 202450 mac 202450 bytes_out 0 202450 bytes_in 0 202450 station_ip 5.119.237.69 202450 port 67 202450 unique_id port 202450 remote_ip 10.8.1.70 202451 username sobhan 202451 unique_id port 202451 terminate_cause Lost-Carrier 202451 bytes_out 9981764 202451 bytes_in 214434123 202451 station_ip 5.119.86.244 202451 port 15729866 202451 nas_port_type Virtual 202451 remote_ip 5.5.5.90 202454 username kharazmi2920 202454 mac 202454 bytes_out 772421 202454 bytes_in 5845600 202454 station_ip 83.123.60.195 202454 port 31 202454 unique_id port 202454 remote_ip 10.8.0.34 202458 username khademi 202458 mac 202458 bytes_out 1112106 202458 bytes_in 9244048 202458 station_ip 37.129.212.3 202458 port 33 202458 unique_id port 202458 remote_ip 10.8.0.226 202461 username meghdad1616 202461 kill_reason Another user logged on this global unique id 202461 mac 202461 bytes_out 0 202461 bytes_in 0 202461 station_ip 5.120.156.227 202461 port 40 202461 unique_id port 202461 remote_ip 10.8.0.126 202465 username motamedi9772 202465 mac 202465 bytes_out 0 202465 bytes_in 0 202465 station_ip 83.122.138.92 202465 port 28 202465 unique_id port 202465 remote_ip 10.8.0.62 202466 username motamedi9772 202466 mac 202466 bytes_out 0 202466 bytes_in 0 202466 station_ip 83.122.138.92 202466 port 28 202466 unique_id port 202466 remote_ip 10.8.0.62 202470 username motamedi9772 202470 mac 202470 bytes_out 0 202470 bytes_in 0 202470 station_ip 83.122.138.92 202470 port 33 202470 unique_id port 202470 remote_ip 10.8.0.62 202474 username rezaei 202474 mac 202474 bytes_out 0 202474 bytes_in 0 202474 station_ip 5.119.163.137 202474 port 59 202474 unique_id port 202474 remote_ip 10.8.1.174 202476 username majidsarmast 202476 mac 202476 bytes_out 3104224 202476 bytes_in 38371569 202476 station_ip 83.123.156.111 202476 port 25 202476 unique_id port 202476 remote_ip 10.8.0.6 202479 username nilufarrajaei 202479 mac 202479 bytes_out 0 202479 bytes_in 0 202479 station_ip 37.129.32.137 202479 port 28 202479 unique_id port 202479 remote_ip 10.8.0.94 202481 username kalantary6037 202481 mac 202481 bytes_out 0 202481 bytes_in 0 202481 station_ip 37.129.207.41 202481 port 61 202481 unique_id port 202481 remote_ip 10.8.1.150 202482 username hamid.e 202482 unique_id port 202482 terminate_cause User-Request 202482 bytes_out 1560511 202482 bytes_in 22817095 202482 station_ip 37.27.6.223 202482 port 15729867 202482 nas_port_type Virtual 202482 remote_ip 5.5.5.97 202486 username motamedi9772 202486 mac 202486 bytes_out 0 202486 bytes_in 0 202486 station_ip 83.122.138.92 202486 port 25 202486 unique_id port 202486 remote_ip 10.8.0.62 202496 username kalantary6037 202496 mac 202496 bytes_out 0 202496 bytes_in 0 202496 station_ip 37.129.206.21 202496 port 56 202496 unique_id port 202483 unique_id port 202483 remote_ip 10.8.0.174 202485 username motamedi9772 202485 mac 202485 bytes_out 665056 202485 bytes_in 12752756 202485 station_ip 83.122.138.92 202485 port 25 202485 unique_id port 202485 remote_ip 10.8.0.62 202488 username barzegar 202488 kill_reason Another user logged on this global unique id 202488 mac 202488 bytes_out 0 202488 bytes_in 0 202488 station_ip 5.120.143.34 202488 port 41 202488 unique_id port 202488 remote_ip 10.8.0.14 202489 username farhad3 202489 mac 202489 bytes_out 0 202489 bytes_in 0 202489 station_ip 5.119.165.110 202489 port 61 202489 unique_id port 202489 remote_ip 10.8.1.38 202490 username motamedi9772 202490 mac 202490 bytes_out 0 202490 bytes_in 0 202490 station_ip 83.122.138.92 202490 port 25 202490 unique_id port 202490 remote_ip 10.8.0.62 202493 username malekpoir 202493 mac 202493 bytes_out 0 202493 bytes_in 0 202493 station_ip 5.119.237.69 202493 port 56 202493 unique_id port 202493 remote_ip 10.8.1.70 202494 username barzegar 202494 kill_reason Another user logged on this global unique id 202494 mac 202494 bytes_out 0 202494 bytes_in 0 202494 station_ip 5.120.143.34 202494 port 41 202494 unique_id port 202497 username rahim 202497 kill_reason Another user logged on this global unique id 202497 mac 202497 bytes_out 0 202497 bytes_in 0 202497 station_ip 5.120.3.58 202497 port 64 202497 unique_id port 202497 remote_ip 10.8.1.90 202499 username barzegar 202499 kill_reason Another user logged on this global unique id 202499 mac 202499 bytes_out 0 202499 bytes_in 0 202499 station_ip 5.120.143.34 202499 port 41 202499 unique_id port 202500 username kharazmi2920 202500 mac 202500 bytes_out 410627 202500 bytes_in 2077355 202500 station_ip 83.123.60.195 202500 port 25 202500 unique_id port 202500 remote_ip 10.8.0.34 202504 username motamedi9772 202504 kill_reason Another user logged on this global unique id 202504 mac 202504 bytes_out 0 202504 bytes_in 0 202504 station_ip 83.122.207.128 202504 port 28 202504 unique_id port 202504 remote_ip 10.8.0.62 202510 username tahmorsi 202510 mac 202510 bytes_out 0 202510 bytes_in 0 202510 station_ip 86.57.85.178 202510 port 65 202510 unique_id port 202510 remote_ip 10.8.1.102 202516 username barzegar 202516 mac 202516 bytes_out 0 202516 bytes_in 0 202516 station_ip 5.120.143.34 202516 port 61 202516 unique_id port 202516 remote_ip 10.8.1.6 202517 username sabaghnezhad 202517 mac 202517 bytes_out 907733 202517 bytes_in 5625317 202517 station_ip 83.122.58.200 202517 port 38 202517 unique_id port 202517 remote_ip 10.8.0.18 202520 username motamedi9772 202520 mac 202520 bytes_out 0 202520 bytes_in 0 202520 station_ip 83.122.207.128 202520 port 25 202520 unique_id port 202520 remote_ip 10.8.0.62 202521 username motamedi9772 202521 mac 202521 bytes_out 0 202521 bytes_in 0 202521 station_ip 83.122.207.128 202521 port 25 202521 unique_id port 202521 remote_ip 10.8.0.62 202525 username barzegar 202525 mac 202525 bytes_out 0 202525 bytes_in 0 202525 station_ip 5.120.143.34 202525 port 61 202525 unique_id port 202525 remote_ip 10.8.1.6 202531 username motamedi9772 202531 mac 202531 bytes_out 0 202531 bytes_in 0 202531 station_ip 83.122.207.128 202531 port 25 202531 unique_id port 202531 remote_ip 10.8.0.62 202533 username motamedi9772 202533 mac 202533 bytes_out 0 202533 bytes_in 0 202533 station_ip 83.122.207.128 202533 port 25 202533 unique_id port 202533 remote_ip 10.8.0.62 202537 username motamedi9772 202537 mac 202537 bytes_out 0 202537 bytes_in 0 202484 bytes_in 0 202484 station_ip 5.119.163.137 202484 port 59 202484 unique_id port 202487 username farhad3 202487 mac 202487 bytes_out 0 202487 bytes_in 0 202487 station_ip 5.119.165.110 202487 port 61 202487 unique_id port 202487 remote_ip 10.8.1.38 202491 username yaghobi 202491 mac 202491 bytes_out 41341 202491 bytes_in 54475 202491 station_ip 37.129.150.0 202491 port 28 202491 unique_id port 202491 remote_ip 10.8.0.174 202492 username dortaj3792 202492 mac 202492 bytes_out 0 202492 bytes_in 0 202492 station_ip 5.120.129.125 202492 port 51 202492 unique_id port 202492 remote_ip 10.8.1.34 202495 username rashidi4690 202495 kill_reason Another user logged on this global unique id 202495 mac 202495 bytes_out 0 202495 bytes_in 0 202495 station_ip 5.119.234.217 202495 port 63 202495 unique_id port 202495 remote_ip 10.8.1.158 202498 username mostafa_es78 202498 mac 202498 bytes_out 0 202498 bytes_in 0 202498 station_ip 77.237.181.109 202498 port 66 202498 unique_id port 202498 remote_ip 10.8.1.202 202501 username rahim 202501 mac 202501 bytes_out 0 202501 bytes_in 0 202501 station_ip 5.120.3.58 202501 port 64 202501 unique_id port 202502 username rahim 202502 mac 202502 bytes_out 0 202502 bytes_in 0 202502 station_ip 5.120.3.58 202502 port 25 202502 unique_id port 202502 remote_ip 10.8.0.230 202505 username sekonji0496 202505 mac 202505 bytes_out 323308 202505 bytes_in 4545152 202505 station_ip 83.122.114.171 202505 port 40 202505 unique_id port 202505 remote_ip 10.8.0.66 202507 username farhad3 202507 mac 202507 bytes_out 4070217 202507 bytes_in 37504345 202507 station_ip 5.119.165.110 202507 port 61 202507 unique_id port 202507 remote_ip 10.8.1.38 202509 username esmaeilkazemi 202509 mac 202509 bytes_out 251906 202509 bytes_in 2263627 202509 station_ip 83.122.95.89 202509 port 40 202509 unique_id port 202509 remote_ip 10.8.0.86 202512 username farhad3 202512 mac 202512 bytes_out 199402 202512 bytes_in 795015 202512 station_ip 5.119.165.110 202512 port 25 202512 unique_id port 202512 remote_ip 10.8.0.46 202518 username motamedi9772 202518 mac 202518 bytes_out 0 202518 bytes_in 0 202518 station_ip 83.122.207.128 202518 port 28 202518 unique_id port 202519 username motamedi9772 202519 mac 202519 bytes_out 0 202519 bytes_in 0 202519 station_ip 83.122.207.128 202519 port 25 202519 unique_id port 202519 remote_ip 10.8.0.62 202523 username motamedi9772 202523 mac 202523 bytes_out 0 202523 bytes_in 0 202523 station_ip 83.122.207.128 202523 port 25 202523 unique_id port 202523 remote_ip 10.8.0.62 202524 username motamedi9772 202524 mac 202524 bytes_out 0 202524 bytes_in 0 202524 station_ip 83.122.207.128 202524 port 25 202524 unique_id port 202524 remote_ip 10.8.0.62 202526 username motamedi9772 202526 mac 202526 bytes_out 9257 202526 bytes_in 42828 202526 station_ip 83.122.207.128 202526 port 25 202526 unique_id port 202526 remote_ip 10.8.0.62 202527 username malekpoir 202527 mac 202527 bytes_out 0 202527 bytes_in 0 202527 station_ip 5.119.237.69 202527 port 51 202527 unique_id port 202527 remote_ip 10.8.1.70 202529 username motamedi9772 202529 mac 202529 bytes_out 0 202529 bytes_in 0 202529 station_ip 83.122.207.128 202529 port 25 202529 unique_id port 202529 remote_ip 10.8.0.62 202530 username motamedi9772 202530 mac 202530 bytes_out 0 202530 bytes_in 0 202530 station_ip 83.122.207.128 202530 port 25 202530 unique_id port 202530 remote_ip 10.8.0.62 202496 remote_ip 10.8.1.150 202503 username barzegar 202503 mac 202503 bytes_out 0 202503 bytes_in 0 202503 station_ip 5.120.143.34 202503 port 41 202503 unique_id port 202506 username dortaj3792 202506 mac 202506 bytes_out 0 202506 bytes_in 0 202506 station_ip 5.120.129.125 202506 port 56 202506 unique_id port 202506 remote_ip 10.8.1.34 202508 username barzegar 202508 mac 202508 bytes_out 457386 202508 bytes_in 251393 202508 station_ip 5.120.143.34 202508 port 25 202508 unique_id port 202508 remote_ip 10.8.0.14 202511 username esmaeilkazemi 202511 mac 202511 bytes_out 0 202511 bytes_in 0 202511 station_ip 83.122.95.89 202511 port 40 202511 unique_id port 202511 remote_ip 10.8.0.86 202513 username esmaeilkazemi 202513 mac 202513 bytes_out 5172 202513 bytes_in 25604 202513 station_ip 83.122.95.89 202513 port 41 202513 unique_id port 202513 remote_ip 10.8.0.86 202514 username barzegar 202514 mac 202514 bytes_out 0 202514 bytes_in 0 202514 station_ip 5.120.143.34 202514 port 56 202514 unique_id port 202514 remote_ip 10.8.1.6 202515 username hosseine 202515 kill_reason Another user logged on this global unique id 202515 mac 202515 bytes_out 0 202515 bytes_in 0 202515 station_ip 37.129.184.82 202515 port 39 202515 unique_id port 202515 remote_ip 10.8.0.118 202522 username motamedi9772 202522 mac 202522 bytes_out 0 202522 bytes_in 0 202522 station_ip 83.122.207.128 202522 port 25 202522 unique_id port 202522 remote_ip 10.8.0.62 202528 username motamedi9772 202528 mac 202528 bytes_out 0 202528 bytes_in 0 202528 station_ip 83.122.207.128 202528 port 25 202528 unique_id port 202528 remote_ip 10.8.0.62 202538 username rahim 202538 kill_reason Another user logged on this global unique id 202538 mac 202538 bytes_out 0 202538 bytes_in 0 202538 station_ip 5.120.3.58 202538 port 64 202538 unique_id port 202538 remote_ip 10.8.1.90 202544 username motamedi9772 202544 mac 202544 bytes_out 0 202544 bytes_in 0 202544 station_ip 83.122.207.128 202544 port 25 202544 unique_id port 202544 remote_ip 10.8.0.62 202549 username motamedi9772 202549 mac 202549 bytes_out 0 202549 bytes_in 0 202549 station_ip 83.122.207.128 202549 port 25 202549 unique_id port 202549 remote_ip 10.8.0.62 202552 username motamedi9772 202552 mac 202552 bytes_out 13491 202552 bytes_in 20096 202552 station_ip 83.122.207.128 202552 port 25 202552 unique_id port 202552 remote_ip 10.8.0.62 202559 username motamedi9772 202559 mac 202559 bytes_out 0 202559 bytes_in 0 202559 station_ip 83.122.207.128 202559 port 25 202559 unique_id port 202559 remote_ip 10.8.0.62 202560 username motamedi9772 202560 mac 202560 bytes_out 0 202560 bytes_in 0 202560 station_ip 83.122.207.128 202560 port 25 202560 unique_id port 202560 remote_ip 10.8.0.62 202563 username motamedi9772 202563 mac 202563 bytes_out 0 202563 bytes_in 0 202563 station_ip 83.122.207.128 202563 port 28 202563 unique_id port 202563 remote_ip 10.8.0.62 202564 username motamedi9772 202564 mac 202564 bytes_out 0 202564 bytes_in 0 202564 station_ip 83.122.207.128 202564 port 28 202564 unique_id port 202564 remote_ip 10.8.0.62 202567 username motamedi9772 202567 mac 202567 bytes_out 0 202567 bytes_in 0 202567 station_ip 83.122.207.128 202567 port 28 202567 unique_id port 202567 remote_ip 10.8.0.62 202569 username rahim 202569 mac 202569 bytes_out 0 202569 bytes_in 0 202569 station_ip 5.120.3.58 202569 port 64 202569 unique_id port 202571 username motamedi9772 202571 mac 202571 bytes_out 0 202532 username barzegar 202532 mac 202532 bytes_out 0 202532 bytes_in 0 202532 station_ip 5.120.143.34 202532 port 68 202532 unique_id port 202532 remote_ip 10.8.1.6 202534 username motamedi9772 202534 mac 202534 bytes_out 0 202534 bytes_in 0 202534 station_ip 83.122.207.128 202534 port 25 202534 unique_id port 202534 remote_ip 10.8.0.62 202535 username motamedi9772 202535 mac 202535 bytes_out 0 202535 bytes_in 0 202535 station_ip 83.122.207.128 202535 port 25 202535 unique_id port 202535 remote_ip 10.8.0.62 202536 username motamedi9772 202536 mac 202536 bytes_out 0 202536 bytes_in 0 202536 station_ip 83.122.207.128 202536 port 25 202536 unique_id port 202536 remote_ip 10.8.0.62 202539 username motamedi9772 202539 mac 202539 bytes_out 0 202539 bytes_in 0 202539 station_ip 83.122.207.128 202539 port 25 202539 unique_id port 202539 remote_ip 10.8.0.62 202545 username motamedi9772 202545 mac 202545 bytes_out 0 202545 bytes_in 0 202545 station_ip 83.122.207.128 202545 port 25 202545 unique_id port 202545 remote_ip 10.8.0.62 202546 username motamedi9772 202546 mac 202546 bytes_out 0 202546 bytes_in 0 202546 station_ip 83.122.207.128 202546 port 25 202546 unique_id port 202546 remote_ip 10.8.0.62 202550 username motamedi9772 202550 mac 202550 bytes_out 0 202550 bytes_in 0 202550 station_ip 83.122.207.128 202550 port 25 202550 unique_id port 202550 remote_ip 10.8.0.62 202551 username barzegar 202551 mac 202551 bytes_out 0 202551 bytes_in 0 202551 station_ip 5.120.143.34 202551 port 68 202551 unique_id port 202551 remote_ip 10.8.1.6 202553 username motamedi9772 202553 mac 202553 bytes_out 0 202553 bytes_in 0 202553 station_ip 83.122.207.128 202553 port 25 202553 unique_id port 202553 remote_ip 10.8.0.62 202554 username motamedi9772 202554 mac 202554 bytes_out 0 202554 bytes_in 0 202554 station_ip 83.122.207.128 202554 port 25 202554 unique_id port 202554 remote_ip 10.8.0.62 202556 username motamedi9772 202556 mac 202556 bytes_out 0 202556 bytes_in 0 202556 station_ip 83.122.207.128 202556 port 25 202556 unique_id port 202556 remote_ip 10.8.0.62 202557 username motamedi9772 202557 mac 202557 bytes_out 0 202557 bytes_in 0 202557 station_ip 83.122.207.128 202557 port 25 202557 unique_id port 202557 remote_ip 10.8.0.62 202561 username motamedi9772 202561 mac 202561 bytes_out 0 202561 bytes_in 0 202561 station_ip 83.122.207.128 202561 port 25 202561 unique_id port 202561 remote_ip 10.8.0.62 202565 username motamedi9772 202565 mac 202565 bytes_out 0 202565 bytes_in 0 202565 station_ip 83.122.207.128 202565 port 28 202565 unique_id port 202565 remote_ip 10.8.0.62 202574 username motamedi9772 202574 mac 202574 bytes_out 0 202574 bytes_in 0 202574 station_ip 83.122.207.128 202574 port 28 202574 unique_id port 202574 remote_ip 10.8.0.62 202577 username meghdad1616 202577 mac 202577 bytes_out 0 202577 bytes_in 0 202577 station_ip 5.120.156.227 202577 port 56 202577 unique_id port 202577 remote_ip 10.8.1.142 202578 username barzegar 202578 mac 202578 bytes_out 0 202578 bytes_in 0 202578 station_ip 5.120.143.34 202578 port 64 202578 unique_id port 202578 remote_ip 10.8.1.6 202581 username meghdad1616 202581 mac 202581 bytes_out 0 202581 bytes_in 0 202581 station_ip 5.120.156.227 202581 port 56 202581 unique_id port 202581 remote_ip 10.8.1.142 202587 username meghdad1616 202587 mac 202587 bytes_out 0 202587 bytes_in 0 202587 station_ip 5.120.156.227 202537 station_ip 83.122.207.128 202537 port 25 202537 unique_id port 202537 remote_ip 10.8.0.62 202540 username farhad3 202540 mac 202540 bytes_out 0 202540 bytes_in 0 202540 station_ip 5.119.165.110 202540 port 61 202540 unique_id port 202540 remote_ip 10.8.1.38 202541 username motamedi9772 202541 mac 202541 bytes_out 0 202541 bytes_in 0 202541 station_ip 83.122.207.128 202541 port 25 202541 unique_id port 202541 remote_ip 10.8.0.62 202542 username motamedi9772 202542 mac 202542 bytes_out 0 202542 bytes_in 0 202542 station_ip 83.122.207.128 202542 port 25 202542 unique_id port 202542 remote_ip 10.8.0.62 202543 username motamedi9772 202543 mac 202543 bytes_out 0 202543 bytes_in 0 202543 station_ip 83.122.207.128 202543 port 25 202543 unique_id port 202543 remote_ip 10.8.0.62 202547 username motamedi9772 202547 mac 202547 bytes_out 0 202547 bytes_in 0 202547 station_ip 83.122.207.128 202547 port 25 202547 unique_id port 202547 remote_ip 10.8.0.62 202548 username motamedi9772 202548 mac 202548 bytes_out 0 202548 bytes_in 0 202548 station_ip 83.122.207.128 202548 port 25 202548 unique_id port 202548 remote_ip 10.8.0.62 202555 username khalili2 202555 mac 202555 bytes_out 0 202555 bytes_in 0 202555 station_ip 5.119.87.244 202555 port 69 202555 unique_id port 202558 username motamedi9772 202558 mac 202558 bytes_out 0 202558 bytes_in 0 202558 station_ip 83.122.207.128 202558 port 25 202558 unique_id port 202558 remote_ip 10.8.0.62 202562 username sabaghnezhad 202562 mac 202562 bytes_out 69292 202562 bytes_in 66180 202562 station_ip 83.122.58.200 202562 port 28 202562 unique_id port 202562 remote_ip 10.8.0.18 202566 username motamedi9772 202566 mac 202566 bytes_out 0 202566 bytes_in 0 202566 station_ip 83.122.207.128 202566 port 28 202566 unique_id port 202566 remote_ip 10.8.0.62 202568 username motamedi9772 202568 mac 202568 bytes_out 0 202568 bytes_in 0 202568 station_ip 83.122.207.128 202568 port 28 202568 unique_id port 202568 remote_ip 10.8.0.62 202570 username motamedi9772 202570 mac 202570 bytes_out 0 202570 bytes_in 0 202570 station_ip 83.122.207.128 202570 port 28 202570 unique_id port 202570 remote_ip 10.8.0.62 202573 username rezaei 202573 mac 202573 bytes_out 0 202573 bytes_in 0 202573 station_ip 5.119.163.137 202573 port 56 202573 unique_id port 202573 remote_ip 10.8.1.174 202575 username motamedi9772 202575 mac 202575 bytes_out 0 202575 bytes_in 0 202575 station_ip 83.122.207.128 202575 port 38 202575 unique_id port 202575 remote_ip 10.8.0.62 202579 username khademi 202579 kill_reason Another user logged on this global unique id 202579 mac 202579 bytes_out 0 202579 bytes_in 0 202579 station_ip 37.129.212.3 202579 port 31 202579 unique_id port 202579 remote_ip 10.8.0.226 202586 username khademi 202586 kill_reason Another user logged on this global unique id 202586 mac 202586 bytes_out 0 202586 bytes_in 0 202586 station_ip 37.129.212.3 202586 port 31 202586 unique_id port 202588 username sekonji0496 202588 mac 202588 bytes_out 0 202588 bytes_in 0 202588 station_ip 83.122.114.171 202588 port 33 202588 unique_id port 202588 remote_ip 10.8.0.66 202589 username alipour1506 202589 mac 202589 bytes_out 1656067 202589 bytes_in 12781621 202589 station_ip 83.123.76.30 202589 port 36 202589 unique_id port 202589 remote_ip 10.8.0.134 202591 username barzegar 202591 mac 202591 bytes_out 0 202591 bytes_in 0 202591 station_ip 5.120.143.34 202591 port 56 202591 unique_id port 202571 bytes_in 0 202571 station_ip 83.122.207.128 202571 port 28 202571 unique_id port 202571 remote_ip 10.8.0.62 202572 username motamedi9772 202572 mac 202572 bytes_out 0 202572 bytes_in 0 202572 station_ip 83.122.207.128 202572 port 28 202572 unique_id port 202572 remote_ip 10.8.0.62 202576 username mostafa_es78 202576 mac 202576 bytes_out 0 202576 bytes_in 0 202576 station_ip 77.237.181.109 202576 port 67 202576 unique_id port 202576 remote_ip 10.8.1.202 202580 username rashidi4690 202580 mac 202580 bytes_out 0 202580 bytes_in 0 202580 station_ip 5.119.234.217 202580 port 63 202580 unique_id port 202582 username motamedi9772 202582 mac 202582 bytes_out 22931 202582 bytes_in 52517 202582 station_ip 83.122.247.252 202582 port 28 202582 unique_id port 202582 remote_ip 10.8.0.62 202583 username meghdad1616 202583 mac 202583 bytes_out 0 202583 bytes_in 0 202583 station_ip 5.120.156.227 202583 port 56 202583 unique_id port 202583 remote_ip 10.8.1.142 202584 username meghdad1616 202584 mac 202584 bytes_out 0 202584 bytes_in 0 202584 station_ip 5.120.156.227 202584 port 56 202584 unique_id port 202584 remote_ip 10.8.1.142 202585 username nilufarrajaei 202585 mac 202585 bytes_out 2675219 202585 bytes_in 14225162 202585 station_ip 37.129.32.137 202585 port 33 202585 unique_id port 202585 remote_ip 10.8.0.94 202596 username meghdad1616 202596 mac 202596 bytes_out 0 202596 bytes_in 0 202596 station_ip 5.120.156.227 202596 port 63 202596 unique_id port 202596 remote_ip 10.8.1.142 202599 username mohsenaskari 202599 mac 202599 bytes_out 0 202599 bytes_in 0 202599 station_ip 46.225.210.57 202599 port 33 202599 unique_id port 202599 remote_ip 10.8.0.238 202606 username barzegar 202606 mac 202606 bytes_out 0 202606 bytes_in 0 202606 station_ip 5.120.143.34 202606 port 67 202606 unique_id port 202606 remote_ip 10.8.1.6 202609 username barzegar 202609 mac 202609 bytes_out 0 202609 bytes_in 0 202609 station_ip 5.120.143.34 202609 port 51 202609 unique_id port 202609 remote_ip 10.8.1.6 202613 username meghdad1616 202613 mac 202613 bytes_out 0 202613 bytes_in 0 202613 station_ip 5.120.156.227 202613 port 68 202613 unique_id port 202613 remote_ip 10.8.1.142 202616 username meghdad1616 202616 mac 202616 bytes_out 0 202616 bytes_in 0 202616 station_ip 5.120.156.227 202616 port 38 202616 unique_id port 202616 remote_ip 10.8.0.126 202618 username meghdad1616 202618 mac 202618 bytes_out 0 202618 bytes_in 0 202618 station_ip 5.120.156.227 202618 port 68 202618 unique_id port 202618 remote_ip 10.8.1.142 202621 username meghdad1616 202621 mac 202621 bytes_out 0 202621 bytes_in 0 202621 station_ip 5.120.156.227 202621 port 38 202621 unique_id port 202621 remote_ip 10.8.0.126 202622 username hamid.e 202622 unique_id port 202622 terminate_cause Lost-Carrier 202622 bytes_out 10422091 202622 bytes_in 386481321 202622 station_ip 31.56.113.143 202622 port 15729878 202622 nas_port_type Virtual 202622 remote_ip 5.5.5.111 202627 username meghdad1616 202627 mac 202627 bytes_out 0 202627 bytes_in 0 202627 station_ip 5.120.156.227 202627 port 70 202627 unique_id port 202627 remote_ip 10.8.1.142 202631 username hadibarzegar 202631 kill_reason Another user logged on this global unique id 202631 mac 202631 bytes_out 0 202631 bytes_in 0 202631 station_ip 5.120.115.115 202631 port 51 202631 unique_id port 202631 remote_ip 10.8.1.170 202636 username meghdad1616 202636 kill_reason Maximum check online fails reached 202636 mac 202587 port 56 202587 unique_id port 202587 remote_ip 10.8.1.142 202590 username meghdad1616 202590 mac 202590 bytes_out 0 202590 bytes_in 0 202590 station_ip 5.120.156.227 202590 port 56 202590 unique_id port 202590 remote_ip 10.8.1.142 202592 username khademi 202592 kill_reason Another user logged on this global unique id 202592 mac 202592 bytes_out 0 202592 bytes_in 0 202592 station_ip 37.129.212.3 202592 port 31 202592 unique_id port 202594 username ahmadi1 202594 mac 202594 bytes_out 0 202594 bytes_in 0 202594 station_ip 83.122.24.201 202594 port 33 202594 unique_id port 202594 remote_ip 10.8.0.42 202595 username barzegar 202595 mac 202595 bytes_out 0 202595 bytes_in 0 202595 station_ip 5.120.143.34 202595 port 63 202595 unique_id port 202595 remote_ip 10.8.1.6 202597 username farhad3 202597 kill_reason Another user logged on this global unique id 202597 mac 202597 bytes_out 0 202597 bytes_in 0 202597 station_ip 5.119.165.110 202597 port 61 202597 unique_id port 202597 remote_ip 10.8.1.38 202598 username khademi 202598 kill_reason Another user logged on this global unique id 202598 mac 202598 bytes_out 0 202598 bytes_in 0 202598 station_ip 37.129.212.3 202598 port 31 202598 unique_id port 202600 username barzegar 202600 mac 202600 bytes_out 0 202600 bytes_in 0 202600 station_ip 5.120.143.34 202600 port 64 202600 unique_id port 202600 remote_ip 10.8.1.6 202601 username sekonji0496 202601 mac 202601 bytes_out 13744 202601 bytes_in 44859 202601 station_ip 83.122.114.171 202601 port 33 202601 unique_id port 202601 remote_ip 10.8.0.66 202607 username malekpoir 202607 mac 202607 bytes_out 0 202607 bytes_in 0 202607 station_ip 5.119.237.69 202607 port 51 202607 unique_id port 202607 remote_ip 10.8.1.70 202608 username malekpoir 202608 mac 202608 bytes_out 0 202608 bytes_in 0 202608 station_ip 5.119.237.69 202608 port 51 202608 unique_id port 202608 remote_ip 10.8.1.70 202610 username meghdad1616 202610 mac 202610 bytes_out 4621933 202610 bytes_in 41631251 202610 station_ip 5.120.156.227 202610 port 64 202610 unique_id port 202610 remote_ip 10.8.1.142 202614 username meghdad1616 202614 mac 202614 bytes_out 0 202614 bytes_in 0 202614 station_ip 5.120.156.227 202614 port 68 202614 unique_id port 202614 remote_ip 10.8.1.142 202620 username nilufarrajaei 202620 mac 202620 bytes_out 70693 202620 bytes_in 93039 202620 station_ip 37.129.32.137 202620 port 28 202620 unique_id port 202620 remote_ip 10.8.0.94 202623 username khalili2 202623 kill_reason Another user logged on this global unique id 202623 mac 202623 bytes_out 0 202623 bytes_in 0 202623 station_ip 5.119.87.244 202623 port 65 202623 unique_id port 202623 remote_ip 10.8.1.18 202628 username farhad3 202628 kill_reason Another user logged on this global unique id 202628 mac 202628 bytes_out 0 202628 bytes_in 0 202628 station_ip 5.119.165.110 202628 port 61 202628 unique_id port 202632 username mohammadjavad 202632 mac 202632 bytes_out 1764658 202632 bytes_in 23511855 202632 station_ip 113.203.101.113 202632 port 36 202632 unique_id port 202632 remote_ip 10.8.0.58 202634 username meghdad1616 202634 mac 202634 bytes_out 0 202634 bytes_in 0 202634 station_ip 5.120.156.227 202634 port 70 202634 unique_id port 202634 remote_ip 10.8.1.142 202635 username barzegar 202635 kill_reason Maximum check online fails reached 202635 mac 202635 bytes_out 0 202635 bytes_in 0 202635 station_ip 5.120.143.34 202635 port 71 202635 unique_id port 202637 username meghdad1616 202637 mac 202637 bytes_out 0 202591 remote_ip 10.8.1.6 202593 username meghdad1616 202593 mac 202593 bytes_out 0 202593 bytes_in 0 202593 station_ip 5.120.156.227 202593 port 56 202593 unique_id port 202593 remote_ip 10.8.1.142 202602 username meghdad1616 202602 mac 202602 bytes_out 0 202602 bytes_in 0 202602 station_ip 5.120.156.227 202602 port 33 202602 unique_id port 202602 remote_ip 10.8.0.126 202603 username godarzi 202603 mac 202603 bytes_out 0 202603 bytes_in 0 202603 station_ip 5.119.204.201 202603 port 65 202603 unique_id port 202603 remote_ip 10.8.1.78 202604 username khademi 202604 kill_reason Another user logged on this global unique id 202604 mac 202604 bytes_out 0 202604 bytes_in 0 202604 station_ip 37.129.212.3 202604 port 31 202604 unique_id port 202605 username farhad3 202605 kill_reason Another user logged on this global unique id 202605 mac 202605 bytes_out 0 202605 bytes_in 0 202605 station_ip 5.119.165.110 202605 port 61 202605 unique_id port 202611 username meghdad1616 202611 mac 202611 bytes_out 0 202611 bytes_in 0 202611 station_ip 5.120.156.227 202611 port 64 202611 unique_id port 202611 remote_ip 10.8.1.142 202612 username meghdad1616 202612 mac 202612 bytes_out 0 202612 bytes_in 0 202612 station_ip 5.120.156.227 202612 port 64 202612 unique_id port 202612 remote_ip 10.8.1.142 202615 username meghdad1616 202615 kill_reason Maximum check online fails reached 202615 mac 202615 bytes_out 0 202615 bytes_in 0 202615 station_ip 5.120.156.227 202615 port 64 202615 unique_id port 202617 username barzegar 202617 mac 202617 bytes_out 0 202617 bytes_in 0 202617 station_ip 5.120.143.34 202617 port 69 202617 unique_id port 202617 remote_ip 10.8.1.6 202619 username nilufarrajaei 202619 mac 202619 bytes_out 1980491 202619 bytes_in 10229622 202619 station_ip 37.129.32.137 202619 port 28 202619 unique_id port 202619 remote_ip 10.8.0.94 202624 username mammad 202624 unique_id port 202624 terminate_cause User-Request 202624 bytes_out 8949643 202624 bytes_in 139661257 202624 station_ip 5.233.75.210 202624 port 15729880 202624 nas_port_type Virtual 202624 remote_ip 5.5.5.255 202625 username nilufarrajaei 202625 mac 202625 bytes_out 34407 202625 bytes_in 99305 202625 station_ip 37.129.32.137 202625 port 28 202625 unique_id port 202625 remote_ip 10.8.0.94 202626 username pourshad 202626 kill_reason Another user logged on this global unique id 202626 mac 202626 bytes_out 0 202626 bytes_in 0 202626 station_ip 5.120.219.248 202626 port 63 202626 unique_id port 202626 remote_ip 10.8.1.58 202629 username khademi 202629 kill_reason Another user logged on this global unique id 202629 mac 202629 bytes_out 0 202629 bytes_in 0 202629 station_ip 37.129.212.3 202629 port 31 202629 unique_id port 202630 username barzegar 202630 mac 202630 bytes_out 0 202630 bytes_in 0 202630 station_ip 5.120.143.34 202630 port 71 202630 unique_id port 202630 remote_ip 10.8.1.6 202633 username sabaghnezhad 202633 mac 202633 bytes_out 1066464 202633 bytes_in 8853880 202633 station_ip 83.122.58.200 202633 port 25 202633 unique_id port 202633 remote_ip 10.8.0.18 202639 username barzegar 202639 mac 202639 bytes_out 0 202639 bytes_in 0 202639 station_ip 5.120.143.34 202639 port 70 202639 unique_id port 202639 remote_ip 10.8.1.6 202643 username khademi 202643 kill_reason Another user logged on this global unique id 202643 mac 202643 bytes_out 0 202643 bytes_in 0 202643 station_ip 37.129.212.3 202643 port 31 202643 unique_id port 202646 username khalili2 202646 kill_reason Another user logged on this global unique id 202646 mac 202646 bytes_out 0 202636 bytes_out 0 202636 bytes_in 0 202636 station_ip 5.120.156.227 202636 port 72 202636 unique_id port 202642 username barzegar 202642 kill_reason Maximum check online fails reached 202642 mac 202642 bytes_out 0 202642 bytes_in 0 202642 station_ip 5.120.143.34 202642 port 51 202642 unique_id port 202644 username saeed9658 202644 mac 202644 bytes_out 353745 202644 bytes_in 942496 202644 station_ip 5.120.189.10 202644 port 36 202644 unique_id port 202644 remote_ip 10.8.0.218 202648 username fezealinaghi 202648 mac 202648 bytes_out 1027759 202648 bytes_in 9145238 202648 station_ip 83.123.93.64 202648 port 33 202648 unique_id port 202648 remote_ip 10.8.0.98 202649 username barzegar 202649 mac 202649 bytes_out 0 202649 bytes_in 0 202649 station_ip 5.120.143.34 202649 port 70 202649 unique_id port 202649 remote_ip 10.8.1.6 202654 username motamedi9772 202654 mac 202654 bytes_out 1248468 202654 bytes_in 11697036 202654 station_ip 83.122.161.116 202654 port 25 202654 unique_id port 202654 remote_ip 10.8.0.62 202655 username kalantary6037 202655 mac 202655 bytes_out 0 202655 bytes_in 0 202655 station_ip 37.129.225.217 202655 port 67 202655 unique_id port 202655 remote_ip 10.8.1.150 202663 username motamedi9772 202663 mac 202663 bytes_out 287642 202663 bytes_in 5148472 202663 station_ip 83.122.161.116 202663 port 25 202663 unique_id port 202663 remote_ip 10.8.0.62 202664 username yaghobi 202664 mac 202664 bytes_out 0 202664 bytes_in 0 202664 station_ip 37.129.172.176 202664 port 33 202664 unique_id port 202664 remote_ip 10.8.0.174 202671 username meghdad1616 202671 mac 202671 bytes_out 0 202671 bytes_in 0 202671 station_ip 5.120.156.227 202671 port 68 202671 unique_id port 202671 remote_ip 10.8.1.142 202677 username saeed9658 202677 mac 202677 bytes_out 0 202677 bytes_in 0 202677 station_ip 5.120.189.10 202677 port 73 202677 unique_id port 202677 remote_ip 10.8.1.194 202678 username khademi 202678 kill_reason Another user logged on this global unique id 202678 mac 202678 bytes_out 0 202678 bytes_in 0 202678 station_ip 37.129.212.3 202678 port 31 202678 unique_id port 202679 username barzegar 202679 mac 202679 bytes_out 0 202679 bytes_in 0 202679 station_ip 5.120.143.34 202679 port 73 202679 unique_id port 202679 remote_ip 10.8.1.6 202685 username barzegar 202685 mac 202685 bytes_out 1695 202685 bytes_in 4952 202685 station_ip 5.120.143.34 202685 port 25 202685 unique_id port 202685 remote_ip 10.8.0.14 202688 username yaghobi 202688 mac 202688 bytes_out 178755 202688 bytes_in 613263 202688 station_ip 83.123.124.250 202688 port 36 202688 unique_id port 202688 remote_ip 10.8.0.174 202690 username fezealinaghi 202690 mac 202690 bytes_out 37582 202690 bytes_in 60459 202690 station_ip 83.123.93.64 202690 port 33 202690 unique_id port 202690 remote_ip 10.8.0.98 202691 username yaghobi 202691 mac 202691 bytes_out 46672 202691 bytes_in 225222 202691 station_ip 83.123.124.250 202691 port 36 202691 unique_id port 202691 remote_ip 10.8.0.174 202696 username pourshad 202696 mac 202696 bytes_out 0 202696 bytes_in 0 202696 station_ip 5.120.219.248 202696 port 63 202696 unique_id port 202698 username saeed9658 202698 mac 202698 bytes_out 301853 202698 bytes_in 2205461 202698 station_ip 5.120.189.10 202698 port 67 202698 unique_id port 202698 remote_ip 10.8.1.194 202699 username yaghobi 202699 mac 202699 bytes_out 0 202699 bytes_in 0 202699 station_ip 83.123.124.250 202699 port 73 202699 unique_id port 202637 bytes_in 0 202637 station_ip 5.120.156.227 202637 port 73 202637 unique_id port 202637 remote_ip 10.8.1.142 202638 username hadibarzegar 202638 mac 202638 bytes_out 0 202638 bytes_in 0 202638 station_ip 5.120.115.115 202638 port 51 202638 unique_id port 202640 username pourshad 202640 kill_reason Another user logged on this global unique id 202640 mac 202640 bytes_out 0 202640 bytes_in 0 202640 station_ip 5.120.219.248 202640 port 63 202640 unique_id port 202641 username godarzi 202641 mac 202641 bytes_out 0 202641 bytes_in 0 202641 station_ip 5.119.204.201 202641 port 67 202641 unique_id port 202641 remote_ip 10.8.1.78 202645 username kharazmi2920 202645 mac 202645 bytes_out 0 202645 bytes_in 0 202645 station_ip 83.123.60.195 202645 port 66 202645 unique_id port 202645 remote_ip 10.8.1.178 202647 username milan 202647 mac 202647 bytes_out 0 202647 bytes_in 0 202647 station_ip 5.119.148.50 202647 port 38 202647 unique_id port 202647 remote_ip 10.8.0.198 202653 username farhad3 202653 kill_reason Another user logged on this global unique id 202653 mac 202653 bytes_out 0 202653 bytes_in 0 202653 station_ip 5.119.165.110 202653 port 61 202653 unique_id port 202658 username barzegar 202658 kill_reason Maximum check online fails reached 202658 mac 202658 bytes_out 0 202658 bytes_in 0 202658 station_ip 5.120.143.34 202658 port 70 202658 unique_id port 202659 username pourshad 202659 kill_reason Another user logged on this global unique id 202659 mac 202659 bytes_out 0 202659 bytes_in 0 202659 station_ip 5.120.219.248 202659 port 63 202659 unique_id port 202660 username motamedi9772 202660 mac 202660 bytes_out 0 202660 bytes_in 0 202660 station_ip 83.122.161.116 202660 port 25 202660 unique_id port 202660 remote_ip 10.8.0.62 202662 username rashidi4690 202662 mac 202662 bytes_out 0 202662 bytes_in 0 202662 station_ip 5.119.234.217 202662 port 68 202662 unique_id port 202662 remote_ip 10.8.1.158 202665 username barzegar 202665 mac 202665 bytes_out 0 202665 bytes_in 0 202665 station_ip 5.120.143.34 202665 port 68 202665 unique_id port 202665 remote_ip 10.8.1.6 202666 username meghdad1616 202666 mac 202666 bytes_out 0 202666 bytes_in 0 202666 station_ip 5.120.156.227 202666 port 68 202666 unique_id port 202666 remote_ip 10.8.1.142 202669 username pourshad 202669 kill_reason Another user logged on this global unique id 202669 mac 202669 bytes_out 0 202669 bytes_in 0 202669 station_ip 5.120.219.248 202669 port 63 202669 unique_id port 202670 username barzegar 202670 mac 202670 bytes_out 15757 202670 bytes_in 16930 202670 station_ip 5.120.143.34 202670 port 38 202670 unique_id port 202670 remote_ip 10.8.0.14 202673 username godarzi 202673 mac 202673 bytes_out 0 202673 bytes_in 0 202673 station_ip 5.119.204.201 202673 port 74 202673 unique_id port 202673 remote_ip 10.8.1.78 202675 username barzegar 202675 mac 202675 bytes_out 0 202675 bytes_in 0 202675 station_ip 5.120.143.34 202675 port 61 202675 unique_id port 202675 remote_ip 10.8.1.6 202676 username barzegar 202676 mac 202676 bytes_out 0 202676 bytes_in 0 202676 station_ip 5.120.143.34 202676 port 73 202676 unique_id port 202676 remote_ip 10.8.1.6 202682 username milan 202682 mac 202682 bytes_out 0 202682 bytes_in 0 202682 station_ip 5.119.148.50 202682 port 68 202682 unique_id port 202682 remote_ip 10.8.1.182 202684 username kalantary6037 202684 mac 202684 bytes_out 259852 202684 bytes_in 1858080 202684 station_ip 37.129.223.25 202684 port 25 202646 bytes_in 0 202646 station_ip 5.119.87.244 202646 port 65 202646 unique_id port 202650 username kalantary6037 202650 mac 202650 bytes_out 241465 202650 bytes_in 1380229 202650 station_ip 37.129.225.217 202650 port 67 202650 unique_id port 202650 remote_ip 10.8.1.150 202651 username meghdad1616 202651 mac 202651 bytes_out 0 202651 bytes_in 0 202651 station_ip 5.120.156.227 202651 port 67 202651 unique_id port 202651 remote_ip 10.8.1.142 202652 username hosseine 202652 mac 202652 bytes_out 0 202652 bytes_in 0 202652 station_ip 37.129.184.82 202652 port 39 202652 unique_id port 202656 username motamedi9772 202656 mac 202656 bytes_out 0 202656 bytes_in 0 202656 station_ip 83.122.161.116 202656 port 25 202656 unique_id port 202656 remote_ip 10.8.0.62 202657 username motamedi9772 202657 mac 202657 bytes_out 0 202657 bytes_in 0 202657 station_ip 83.122.161.116 202657 port 25 202657 unique_id port 202657 remote_ip 10.8.0.62 202661 username kalantary6037 202661 mac 202661 bytes_out 0 202661 bytes_in 0 202661 station_ip 37.129.225.217 202661 port 73 202661 unique_id port 202661 remote_ip 10.8.1.150 202667 username meghdad1616 202667 mac 202667 bytes_out 0 202667 bytes_in 0 202667 station_ip 5.120.156.227 202667 port 68 202667 unique_id port 202667 remote_ip 10.8.1.142 202668 username meghdad1616 202668 mac 202668 bytes_out 0 202668 bytes_in 0 202668 station_ip 5.120.156.227 202668 port 33 202668 unique_id port 202668 remote_ip 10.8.0.126 202672 username farhad3 202672 mac 202672 bytes_out 0 202672 bytes_in 0 202672 station_ip 5.119.165.110 202672 port 61 202672 unique_id port 202674 username dortaj3792 202674 mac 202674 bytes_out 255569 202674 bytes_in 369030 202674 station_ip 5.119.217.7 202674 port 25 202674 unique_id port 202674 remote_ip 10.8.0.30 202680 username fezealinaghi 202680 mac 202680 bytes_out 585518 202680 bytes_in 2834219 202680 station_ip 83.123.93.64 202680 port 36 202680 unique_id port 202680 remote_ip 10.8.0.98 202681 username saeed9658 202681 mac 202681 bytes_out 0 202681 bytes_in 0 202681 station_ip 5.120.189.10 202681 port 73 202681 unique_id port 202681 remote_ip 10.8.1.194 202683 username barzegar8595 202683 mac 202683 bytes_out 0 202683 bytes_in 0 202683 station_ip 94.24.87.30 202683 port 67 202683 unique_id port 202683 remote_ip 10.8.1.50 202686 username fezealinaghi 202686 mac 202686 bytes_out 63522 202686 bytes_in 84465 202686 station_ip 83.123.93.64 202686 port 33 202686 unique_id port 202686 remote_ip 10.8.0.98 202689 username barzegar 202689 mac 202689 bytes_out 0 202689 bytes_in 0 202689 station_ip 5.120.143.34 202689 port 68 202689 unique_id port 202689 remote_ip 10.8.1.6 202693 username yaghobi 202693 mac 202693 bytes_out 56893 202693 bytes_in 105701 202693 station_ip 83.123.124.250 202693 port 33 202693 unique_id port 202693 remote_ip 10.8.0.174 202695 username morteza4424 202695 kill_reason Another user logged on this global unique id 202695 mac 202695 bytes_out 0 202695 bytes_in 0 202695 station_ip 83.122.86.20 202695 port 25 202695 unique_id port 202695 remote_ip 10.8.0.70 202707 username barzegar 202707 mac 202707 bytes_out 2989 202707 bytes_in 6149 202707 station_ip 5.120.143.34 202707 port 56 202707 unique_id port 202707 remote_ip 10.8.1.6 202710 username barzegar 202710 mac 202710 bytes_out 0 202710 bytes_in 0 202710 station_ip 5.120.143.34 202710 port 61 202710 unique_id port 202710 remote_ip 10.8.1.6 202684 unique_id port 202684 remote_ip 10.8.0.10 202687 username alipour1506 202687 mac 202687 bytes_out 0 202687 bytes_in 0 202687 station_ip 83.123.25.34 202687 port 56 202687 unique_id port 202687 remote_ip 10.8.1.86 202692 username barzegar 202692 mac 202692 bytes_out 0 202692 bytes_in 0 202692 station_ip 5.120.143.34 202692 port 74 202692 unique_id port 202692 remote_ip 10.8.1.6 202694 username saeed9658 202694 mac 202694 bytes_out 421570 202694 bytes_in 3417515 202694 station_ip 5.120.189.10 202694 port 67 202694 unique_id port 202694 remote_ip 10.8.1.194 202697 username farhad3 202697 mac 202697 bytes_out 0 202697 bytes_in 0 202697 station_ip 5.119.165.110 202697 port 56 202697 unique_id port 202697 remote_ip 10.8.1.38 202700 username morteza4424 202700 mac 202700 bytes_out 0 202700 bytes_in 0 202700 station_ip 83.122.86.20 202700 port 25 202700 unique_id port 202701 username barzegar 202701 mac 202701 bytes_out 0 202701 bytes_in 0 202701 station_ip 5.120.143.34 202701 port 73 202701 unique_id port 202701 remote_ip 10.8.1.6 202702 username barzegar 202702 kill_reason Maximum check online fails reached 202702 mac 202702 bytes_out 0 202702 bytes_in 0 202702 station_ip 5.120.143.34 202702 port 67 202702 unique_id port 202704 username farhad3 202704 mac 202704 bytes_out 0 202704 bytes_in 0 202704 station_ip 5.119.165.110 202704 port 56 202704 unique_id port 202704 remote_ip 10.8.1.38 202706 username kalantary6037 202706 mac 202706 bytes_out 627774 202706 bytes_in 2028070 202706 station_ip 37.129.138.29 202706 port 36 202706 unique_id port 202706 remote_ip 10.8.0.10 202708 username godarzi 202708 mac 202708 bytes_out 0 202708 bytes_in 0 202708 station_ip 5.119.204.201 202708 port 61 202708 unique_id port 202708 remote_ip 10.8.1.78 202709 username morteza4424 202709 mac 202709 bytes_out 0 202709 bytes_in 0 202709 station_ip 83.122.86.20 202709 port 33 202709 unique_id port 202709 remote_ip 10.8.0.70 202712 username naeimeh 202712 mac 202712 bytes_out 622995 202712 bytes_in 5588242 202712 station_ip 37.129.162.76 202712 port 36 202712 unique_id port 202712 remote_ip 10.8.0.202 202713 username morteza4424 202713 kill_reason Another user logged on this global unique id 202713 mac 202713 bytes_out 0 202713 bytes_in 0 202713 station_ip 83.122.86.20 202713 port 25 202713 unique_id port 202713 remote_ip 10.8.0.70 202715 username saeed9658 202715 mac 202715 bytes_out 0 202715 bytes_in 0 202715 station_ip 5.120.189.10 202715 port 73 202715 unique_id port 202715 remote_ip 10.8.1.194 202719 username morteza4424 202719 kill_reason Another user logged on this global unique id 202719 mac 202719 bytes_out 0 202719 bytes_in 0 202719 station_ip 83.122.86.20 202719 port 25 202719 unique_id port 202720 username godarzi 202720 mac 202720 bytes_out 0 202720 bytes_in 0 202720 station_ip 5.119.204.201 202720 port 56 202720 unique_id port 202720 remote_ip 10.8.1.78 202721 username farhad3 202721 kill_reason Another user logged on this global unique id 202721 mac 202721 bytes_out 3376193 202721 bytes_in 49902922 202721 station_ip 5.119.165.110 202721 port 73 202721 unique_id port 202721 remote_ip 10.8.1.38 202723 username mammad 202723 unique_id port 202723 terminate_cause User-Request 202723 bytes_out 0 202723 bytes_in 0 202723 station_ip 31.56.156.65 202723 port 15729892 202723 nas_port_type Virtual 202723 remote_ip 5.5.5.255 202725 username farhad3 202725 mac 202725 bytes_out 0 202725 bytes_in 0 202725 station_ip 5.119.165.110 202699 remote_ip 10.8.1.186 202703 username naeimeh 202703 mac 202703 bytes_out 290887 202703 bytes_in 1979091 202703 station_ip 37.129.239.3 202703 port 25 202703 unique_id port 202703 remote_ip 10.8.0.202 202705 username barzegar 202705 mac 202705 bytes_out 0 202705 bytes_in 0 202705 station_ip 5.120.143.34 202705 port 73 202705 unique_id port 202705 remote_ip 10.8.1.6 202714 username kalantary6037 202714 mac 202714 bytes_out 1276808 202714 bytes_in 15471771 202714 station_ip 37.129.138.29 202714 port 33 202714 unique_id port 202714 remote_ip 10.8.0.10 202717 username kamali3 202717 mac 202717 bytes_out 278411 202717 bytes_in 3526332 202717 station_ip 5.119.216.58 202717 port 33 202717 unique_id port 202717 remote_ip 10.8.0.234 202724 username barzegar 202724 mac 202724 bytes_out 0 202724 bytes_in 0 202724 station_ip 5.120.143.34 202724 port 74 202724 unique_id port 202724 remote_ip 10.8.1.6 202728 username sobhan 202728 unique_id port 202728 terminate_cause Lost-Carrier 202728 bytes_out 277462 202728 bytes_in 2153477 202728 station_ip 5.120.52.136 202728 port 15729891 202728 nas_port_type Virtual 202728 remote_ip 5.5.5.84 202730 username yaghobi 202730 mac 202730 bytes_out 980577 202730 bytes_in 2635805 202730 station_ip 83.123.56.234 202730 port 61 202730 unique_id port 202730 remote_ip 10.8.1.186 202732 username morteza4424 202732 mac 202732 bytes_out 0 202732 bytes_in 0 202732 station_ip 83.122.86.20 202732 port 76 202732 unique_id port 202732 remote_ip 10.8.1.94 202734 username farhad3 202734 mac 202734 bytes_out 1289281 202734 bytes_in 13744785 202734 station_ip 5.119.165.110 202734 port 75 202734 unique_id port 202734 remote_ip 10.8.1.38 202736 username yaghobi 202736 mac 202736 bytes_out 0 202736 bytes_in 0 202736 station_ip 83.123.56.234 202736 port 25 202736 unique_id port 202736 remote_ip 10.8.0.174 202737 username godarzi 202737 mac 202737 bytes_out 0 202737 bytes_in 0 202737 station_ip 5.119.204.201 202737 port 73 202737 unique_id port 202737 remote_ip 10.8.1.78 202741 username nilufarrajaei 202741 mac 202741 bytes_out 0 202741 bytes_in 0 202741 station_ip 37.129.32.137 202741 port 69 202741 unique_id port 202741 remote_ip 10.8.1.138 202744 username barzegar 202744 mac 202744 bytes_out 0 202744 bytes_in 0 202744 station_ip 5.120.143.34 202744 port 56 202744 unique_id port 202744 remote_ip 10.8.1.6 202747 username barzegar 202747 mac 202747 bytes_out 0 202747 bytes_in 0 202747 station_ip 5.120.143.34 202747 port 56 202747 unique_id port 202747 remote_ip 10.8.1.6 202749 username nilufarrajaei 202749 mac 202749 bytes_out 60101 202749 bytes_in 119846 202749 station_ip 37.129.32.137 202749 port 69 202749 unique_id port 202749 remote_ip 10.8.1.138 202751 username barzegar 202751 mac 202751 bytes_out 0 202751 bytes_in 0 202751 station_ip 5.120.143.34 202751 port 56 202751 unique_id port 202751 remote_ip 10.8.1.6 202752 username barzegar 202752 mac 202752 bytes_out 0 202752 bytes_in 0 202752 station_ip 5.120.143.34 202752 port 56 202752 unique_id port 202752 remote_ip 10.8.1.6 202755 username morteza4424 202755 mac 202755 bytes_out 0 202755 bytes_in 0 202755 station_ip 113.203.32.193 202755 port 75 202755 unique_id port 202755 remote_ip 10.8.1.94 202758 username shahruz 202758 mac 202758 bytes_out 0 202758 bytes_in 0 202758 station_ip 5.119.100.109 202758 port 75 202758 unique_id port 202758 remote_ip 10.8.1.22 202765 username khalili2 202711 username barzegar 202711 mac 202711 bytes_out 0 202711 bytes_in 0 202711 station_ip 5.120.143.34 202711 port 61 202711 unique_id port 202711 remote_ip 10.8.1.6 202716 username godarzi 202716 mac 202716 bytes_out 0 202716 bytes_in 0 202716 station_ip 5.119.204.201 202716 port 56 202716 unique_id port 202716 remote_ip 10.8.1.78 202718 username khalili2 202718 kill_reason Another user logged on this global unique id 202718 mac 202718 bytes_out 0 202718 bytes_in 0 202718 station_ip 5.119.87.244 202718 port 65 202718 unique_id port 202722 username godarzi 202722 mac 202722 bytes_out 0 202722 bytes_in 0 202722 station_ip 5.119.204.201 202722 port 56 202722 unique_id port 202722 remote_ip 10.8.1.78 202726 username nilufarrajaei 202726 mac 202726 bytes_out 2724967 202726 bytes_in 20072810 202726 station_ip 37.129.32.137 202726 port 69 202726 unique_id port 202726 remote_ip 10.8.1.138 202733 username morteza4424 202733 kill_reason Maximum check online fails reached 202733 mac 202733 bytes_out 0 202733 bytes_in 0 202733 station_ip 83.122.86.20 202733 port 61 202733 unique_id port 202735 username morteza4424 202735 mac 202735 bytes_out 0 202735 bytes_in 0 202735 station_ip 83.122.86.20 202735 port 76 202735 unique_id port 202735 remote_ip 10.8.1.94 202738 username khalili2 202738 kill_reason Another user logged on this global unique id 202738 mac 202738 bytes_out 0 202738 bytes_in 0 202738 station_ip 5.119.87.244 202738 port 65 202738 unique_id port 202742 username godarzi 202742 mac 202742 bytes_out 32244 202742 bytes_in 37757 202742 station_ip 5.119.204.201 202742 port 73 202742 unique_id port 202742 remote_ip 10.8.1.78 202748 username mammad 202748 unique_id port 202748 terminate_cause User-Request 202748 bytes_out 0 202748 bytes_in 0 202748 station_ip 31.56.156.65 202748 port 15729893 202748 nas_port_type Virtual 202748 remote_ip 5.5.5.255 202753 username nilufarrajaei 202753 mac 202753 bytes_out 0 202753 bytes_in 0 202753 station_ip 37.129.32.137 202753 port 69 202753 unique_id port 202753 remote_ip 10.8.1.138 202756 username shahruz 202756 mac 202756 bytes_out 0 202756 bytes_in 0 202756 station_ip 5.119.100.109 202756 port 76 202756 unique_id port 202756 remote_ip 10.8.1.22 202757 username barzegar 202757 mac 202757 bytes_out 0 202757 bytes_in 0 202757 station_ip 5.120.143.34 202757 port 75 202757 unique_id port 202757 remote_ip 10.8.1.6 202759 username shahruz 202759 mac 202759 bytes_out 0 202759 bytes_in 0 202759 station_ip 5.119.100.109 202759 port 75 202759 unique_id port 202759 remote_ip 10.8.1.22 202768 username shahruz 202768 mac 202768 bytes_out 0 202768 bytes_in 0 202768 station_ip 5.119.100.109 202768 port 65 202768 unique_id port 202768 remote_ip 10.8.1.22 202769 username shahruz 202769 mac 202769 bytes_out 0 202769 bytes_in 0 202769 station_ip 5.119.100.109 202769 port 65 202769 unique_id port 202769 remote_ip 10.8.1.22 202773 username shahruz 202773 mac 202773 bytes_out 0 202773 bytes_in 0 202773 station_ip 37.129.58.75 202773 port 36 202773 unique_id port 202773 remote_ip 10.8.0.22 202776 username farhad3 202776 kill_reason Another user logged on this global unique id 202776 mac 202776 bytes_out 0 202776 bytes_in 0 202776 station_ip 5.119.165.110 202776 port 56 202776 unique_id port 202776 remote_ip 10.8.1.38 202780 username sabaghnezhad 202780 mac 202780 bytes_out 714321 202780 bytes_in 1925526 202780 station_ip 83.122.58.200 202780 port 28 202780 unique_id port 202780 remote_ip 10.8.0.18 202725 port 73 202725 unique_id port 202727 username morteza4424 202727 mac 202727 bytes_out 0 202727 bytes_in 0 202727 station_ip 83.122.86.20 202727 port 25 202727 unique_id port 202729 username kamali3 202729 mac 202729 bytes_out 75475 202729 bytes_in 565120 202729 station_ip 5.119.216.58 202729 port 36 202729 unique_id port 202729 remote_ip 10.8.0.234 202731 username morteza4424 202731 mac 202731 bytes_out 3084 202731 bytes_in 4749 202731 station_ip 83.122.86.20 202731 port 25 202731 unique_id port 202731 remote_ip 10.8.0.70 202739 username morteza4424 202739 mac 202739 bytes_out 2316 202739 bytes_in 4991 202739 station_ip 83.122.86.20 202739 port 36 202739 unique_id port 202739 remote_ip 10.8.0.70 202740 username barzegar 202740 mac 202740 bytes_out 37178 202740 bytes_in 36916 202740 station_ip 5.120.143.34 202740 port 56 202740 unique_id port 202740 remote_ip 10.8.1.6 202743 username yaghobi 202743 mac 202743 bytes_out 72898 202743 bytes_in 73881 202743 station_ip 83.123.56.234 202743 port 33 202743 unique_id port 202743 remote_ip 10.8.0.174 202745 username barzegar 202745 mac 202745 bytes_out 0 202745 bytes_in 0 202745 station_ip 5.120.143.34 202745 port 56 202745 unique_id port 202745 remote_ip 10.8.1.6 202746 username motamedi9772 202746 mac 202746 bytes_out 103261 202746 bytes_in 294733 202746 station_ip 83.122.198.224 202746 port 25 202746 unique_id port 202746 remote_ip 10.8.0.62 202750 username mammad 202750 unique_id port 202750 terminate_cause User-Request 202750 bytes_out 56621 202750 bytes_in 97162 202750 station_ip 31.56.156.65 202750 port 15729894 202750 nas_port_type Virtual 202750 remote_ip 5.5.5.255 202754 username shahruz 202754 mac 202754 bytes_out 0 202754 bytes_in 0 202754 station_ip 5.119.100.109 202754 port 76 202754 unique_id port 202754 remote_ip 10.8.1.22 202760 username arash 202760 kill_reason Another user logged on this global unique id 202760 mac 202760 bytes_out 0 202760 bytes_in 0 202760 station_ip 37.27.29.10 202760 port 25 202760 unique_id port 202760 remote_ip 10.8.0.162 202761 username shahruz 202761 mac 202761 bytes_out 0 202761 bytes_in 0 202761 station_ip 5.119.100.109 202761 port 75 202761 unique_id port 202761 remote_ip 10.8.1.22 202762 username shahruz 202762 mac 202762 bytes_out 0 202762 bytes_in 0 202762 station_ip 5.119.100.109 202762 port 75 202762 unique_id port 202762 remote_ip 10.8.1.22 202763 username motamedi9772 202763 mac 202763 bytes_out 10329 202763 bytes_in 23560 202763 station_ip 83.122.221.88 202763 port 39 202763 unique_id port 202763 remote_ip 10.8.0.62 202764 username godarzi 202764 mac 202764 bytes_out 312304 202764 bytes_in 690211 202764 station_ip 5.119.204.201 202764 port 73 202764 unique_id port 202764 remote_ip 10.8.1.78 202767 username shahruz 202767 mac 202767 bytes_out 8396 202767 bytes_in 10311 202767 station_ip 5.119.100.109 202767 port 75 202767 unique_id port 202767 remote_ip 10.8.1.22 202770 username barzegar 202770 mac 202770 bytes_out 0 202770 bytes_in 0 202770 station_ip 5.120.143.34 202770 port 76 202770 unique_id port 202770 remote_ip 10.8.1.6 202772 username shahruz 202772 mac 202772 bytes_out 0 202772 bytes_in 0 202772 station_ip 37.129.58.75 202772 port 39 202772 unique_id port 202772 remote_ip 10.8.0.22 202775 username barzegar 202775 mac 202775 bytes_out 0 202775 bytes_in 0 202775 station_ip 5.120.143.34 202775 port 65 202775 unique_id port 202775 remote_ip 10.8.1.6 202765 mac 202765 bytes_out 0 202765 bytes_in 0 202765 station_ip 5.119.87.244 202765 port 65 202765 unique_id port 202766 username kalantary6037 202766 mac 202766 bytes_out 652576 202766 bytes_in 5212572 202766 station_ip 37.129.253.221 202766 port 36 202766 unique_id port 202766 remote_ip 10.8.0.10 202771 username shahruz 202771 mac 202771 bytes_out 0 202771 bytes_in 0 202771 station_ip 5.119.100.109 202771 port 36 202771 unique_id port 202771 remote_ip 10.8.0.22 202774 username shahruz 202774 mac 202774 bytes_out 0 202774 bytes_in 0 202774 station_ip 37.129.58.75 202774 port 36 202774 unique_id port 202774 remote_ip 10.8.0.22 202790 username shahruz 202790 mac 202790 bytes_out 0 202790 bytes_in 0 202790 station_ip 5.120.130.206 202790 port 73 202790 unique_id port 202790 remote_ip 10.8.1.22 202791 username farhad3 202791 kill_reason Another user logged on this global unique id 202791 mac 202791 bytes_out 0 202791 bytes_in 0 202791 station_ip 5.119.165.110 202791 port 56 202791 unique_id port 202797 username alipour1506 202797 kill_reason Another user logged on this global unique id 202797 mac 202797 bytes_out 0 202797 bytes_in 0 202797 station_ip 83.123.25.34 202797 port 68 202797 unique_id port 202797 remote_ip 10.8.1.86 202798 username shahruz 202798 mac 202798 bytes_out 0 202798 bytes_in 0 202798 station_ip 5.120.130.206 202798 port 79 202798 unique_id port 202798 remote_ip 10.8.1.22 202807 username khademi 202807 kill_reason Another user logged on this global unique id 202807 mac 202807 bytes_out 0 202807 bytes_in 0 202807 station_ip 37.129.212.3 202807 port 31 202807 unique_id port 202811 username aminvpns6 202811 mac 202811 bytes_out 0 202811 bytes_in 0 202811 station_ip 5.120.13.108 202811 port 79 202811 unique_id port 202811 remote_ip 10.8.1.62 202813 username shahruz 202813 mac 202813 bytes_out 0 202813 bytes_in 0 202813 station_ip 5.120.130.206 202813 port 65 202813 unique_id port 202813 remote_ip 10.8.1.22 202814 username shahruz 202814 mac 202814 bytes_out 0 202814 bytes_in 0 202814 station_ip 37.129.58.75 202814 port 79 202814 unique_id port 202814 remote_ip 10.8.1.22 202815 username barzegar 202815 mac 202815 bytes_out 0 202815 bytes_in 0 202815 station_ip 5.120.143.34 202815 port 68 202815 unique_id port 202815 remote_ip 10.8.1.6 202823 username shahruz 202823 mac 202823 bytes_out 241410 202823 bytes_in 334793 202823 station_ip 83.123.199.182 202823 port 82 202823 unique_id port 202823 remote_ip 10.8.1.22 202829 username shahruz 202829 mac 202829 bytes_out 0 202829 bytes_in 0 202829 station_ip 83.123.199.182 202829 port 33 202829 unique_id port 202829 remote_ip 10.8.0.22 202831 username shahruz 202831 mac 202831 bytes_out 0 202831 bytes_in 0 202831 station_ip 83.123.199.182 202831 port 33 202831 unique_id port 202831 remote_ip 10.8.0.22 202832 username barzegar 202832 mac 202832 bytes_out 0 202832 bytes_in 0 202832 station_ip 5.120.143.34 202832 port 79 202832 unique_id port 202832 remote_ip 10.8.1.6 202836 username fezealinaghi 202836 mac 202836 bytes_out 0 202836 bytes_in 0 202836 station_ip 37.129.233.237 202836 port 78 202836 unique_id port 202836 remote_ip 10.8.1.222 202839 username shahruz 202839 mac 202839 bytes_out 0 202839 bytes_in 0 202839 station_ip 83.123.199.182 202839 port 33 202839 unique_id port 202839 remote_ip 10.8.0.22 202843 username shahruz 202843 mac 202843 bytes_out 0 202843 bytes_in 0 202843 station_ip 83.123.199.182 202777 username shahruz 202777 mac 202777 bytes_out 0 202777 bytes_in 0 202777 station_ip 5.120.48.242 202777 port 73 202777 unique_id port 202777 remote_ip 10.8.1.22 202778 username shahruz 202778 mac 202778 bytes_out 0 202778 bytes_in 0 202778 station_ip 5.120.48.242 202778 port 73 202778 unique_id port 202778 remote_ip 10.8.1.22 202779 username arash 202779 kill_reason Another user logged on this global unique id 202779 mac 202779 bytes_out 0 202779 bytes_in 0 202779 station_ip 37.27.29.10 202779 port 25 202779 unique_id port 202781 username shahruz 202781 mac 202781 bytes_out 7164 202781 bytes_in 9213 202781 station_ip 5.120.48.242 202781 port 73 202781 unique_id port 202781 remote_ip 10.8.1.22 202782 username shahruz 202782 mac 202782 bytes_out 0 202782 bytes_in 0 202782 station_ip 5.120.48.242 202782 port 73 202782 unique_id port 202782 remote_ip 10.8.1.22 202784 username arash 202784 mac 202784 bytes_out 0 202784 bytes_in 0 202784 station_ip 37.27.29.10 202784 port 25 202784 unique_id port 202786 username shahruz 202786 mac 202786 bytes_out 0 202786 bytes_in 0 202786 station_ip 37.129.58.75 202786 port 76 202786 unique_id port 202786 remote_ip 10.8.1.22 202789 username pourshad 202789 mac 202789 bytes_out 0 202789 bytes_in 0 202789 station_ip 5.120.217.98 202789 port 63 202789 unique_id port 202789 remote_ip 10.8.1.58 202794 username kalantary6037 202794 mac 202794 bytes_out 0 202794 bytes_in 0 202794 station_ip 37.129.212.37 202794 port 25 202794 unique_id port 202794 remote_ip 10.8.0.10 202796 username amirabbas 202796 kill_reason Relative expiration date has reached 202796 unique_id port 202796 bytes_out 0 202796 bytes_in 0 202796 station_ip 46.225.232.28 202796 port 15729899 202796 nas_port_type Virtual 202801 username amirzadeh1339 202801 unique_id port 202801 terminate_cause User-Request 202801 bytes_out 19223 202801 bytes_in 18627 202801 station_ip 46.225.232.28 202801 port 15729900 202801 nas_port_type Virtual 202801 remote_ip 5.5.5.65 202802 username fezealinaghi 202802 mac 202802 bytes_out 0 202802 bytes_in 0 202802 station_ip 37.129.233.237 202802 port 76 202802 unique_id port 202802 remote_ip 10.8.1.222 202804 username shahruz 202804 mac 202804 bytes_out 0 202804 bytes_in 0 202804 station_ip 5.120.130.206 202804 port 76 202804 unique_id port 202804 remote_ip 10.8.1.22 202805 username alipour1506 202805 mac 202805 bytes_out 0 202805 bytes_in 0 202805 station_ip 83.123.25.34 202805 port 68 202805 unique_id port 202806 username barzegar 202806 mac 202806 bytes_out 17418 202806 bytes_in 52120 202806 station_ip 5.120.143.34 202806 port 65 202806 unique_id port 202806 remote_ip 10.8.1.6 202808 username kalantary6037 202808 mac 202808 bytes_out 146535 202808 bytes_in 303123 202808 station_ip 37.129.196.165 202808 port 33 202808 unique_id port 202808 remote_ip 10.8.0.10 202810 username shahruz 202810 mac 202810 bytes_out 12443 202810 bytes_in 15463 202810 station_ip 5.120.130.206 202810 port 68 202810 unique_id port 202810 remote_ip 10.8.1.22 202812 username sabaghnezhad 202812 mac 202812 bytes_out 0 202812 bytes_in 0 202812 station_ip 83.122.58.200 202812 port 25 202812 unique_id port 202812 remote_ip 10.8.0.18 202816 username shahruz 202816 mac 202816 bytes_out 0 202816 bytes_in 0 202816 station_ip 5.120.184.116 202816 port 65 202816 unique_id port 202816 remote_ip 10.8.1.22 202818 username shahruz 202818 mac 202818 bytes_out 0 202818 bytes_in 0 202783 username mammad 202783 unique_id port 202783 terminate_cause Lost-Carrier 202783 bytes_out 392764 202783 bytes_in 10633201 202783 station_ip 31.56.156.65 202783 port 15729898 202783 nas_port_type Virtual 202783 remote_ip 5.5.5.255 202785 username shahruz 202785 mac 202785 bytes_out 0 202785 bytes_in 0 202785 station_ip 5.120.48.242 202785 port 73 202785 unique_id port 202785 remote_ip 10.8.1.22 202787 username pourshad 202787 mac 202787 bytes_out 690288 202787 bytes_in 912937 202787 station_ip 5.120.217.98 202787 port 63 202787 unique_id port 202787 remote_ip 10.8.1.58 202788 username shahruz 202788 mac 202788 bytes_out 0 202788 bytes_in 0 202788 station_ip 37.129.58.75 202788 port 73 202788 unique_id port 202788 remote_ip 10.8.1.22 202792 username shahruz 202792 mac 202792 bytes_out 0 202792 bytes_in 0 202792 station_ip 5.120.130.206 202792 port 73 202792 unique_id port 202792 remote_ip 10.8.1.22 202793 username shahruz 202793 mac 202793 bytes_out 0 202793 bytes_in 0 202793 station_ip 5.120.130.206 202793 port 76 202793 unique_id port 202793 remote_ip 10.8.1.22 202795 username hamid1430 202795 mac 202795 bytes_out 2846636 202795 bytes_in 21570190 202795 station_ip 83.123.138.156 202795 port 33 202795 unique_id port 202795 remote_ip 10.8.0.110 202799 username barzegar 202799 mac 202799 bytes_out 0 202799 bytes_in 0 202799 station_ip 5.120.143.34 202799 port 65 202799 unique_id port 202799 remote_ip 10.8.1.6 202800 username saeed9658 202800 mac 202800 bytes_out 3371720 202800 bytes_in 34296175 202800 station_ip 5.120.132.223 202800 port 38 202800 unique_id port 202800 remote_ip 10.8.0.218 202803 username nilufarrajaei 202803 mac 202803 bytes_out 197107 202803 bytes_in 461794 202803 station_ip 37.129.32.137 202803 port 69 202803 unique_id port 202803 remote_ip 10.8.1.138 202809 username mohammadjavad 202809 mac 202809 bytes_out 104498 202809 bytes_in 370637 202809 station_ip 83.123.205.252 202809 port 25 202809 unique_id port 202809 remote_ip 10.8.0.58 202817 username shahruz 202817 mac 202817 bytes_out 6529 202817 bytes_in 8880 202817 station_ip 37.129.58.75 202817 port 33 202817 unique_id port 202817 remote_ip 10.8.0.22 202819 username mosavi0713 202819 mac 202819 bytes_out 66135 202819 bytes_in 234501 202819 station_ip 37.129.163.246 202819 port 36 202819 unique_id port 202819 remote_ip 10.8.0.190 202822 username rezaei 202822 mac 202822 bytes_out 0 202822 bytes_in 0 202822 station_ip 5.119.163.137 202822 port 73 202822 unique_id port 202822 remote_ip 10.8.1.174 202825 username shahruz 202825 mac 202825 bytes_out 0 202825 bytes_in 0 202825 station_ip 83.123.199.182 202825 port 36 202825 unique_id port 202825 remote_ip 10.8.0.22 202828 username shahruz 202828 mac 202828 bytes_out 0 202828 bytes_in 0 202828 station_ip 83.123.199.182 202828 port 36 202828 unique_id port 202828 remote_ip 10.8.0.22 202833 username shahruz 202833 mac 202833 bytes_out 0 202833 bytes_in 0 202833 station_ip 83.123.199.182 202833 port 81 202833 unique_id port 202833 remote_ip 10.8.1.22 202834 username shahruz 202834 mac 202834 bytes_out 0 202834 bytes_in 0 202834 station_ip 83.123.199.182 202834 port 33 202834 unique_id port 202834 remote_ip 10.8.0.22 202835 username alipour1506 202835 kill_reason Another user logged on this global unique id 202835 mac 202835 bytes_out 0 202835 bytes_in 0 202835 station_ip 151.234.23.177 202835 port 76 202835 unique_id port 202837 username shahruz 202837 mac 202818 station_ip 37.129.58.75 202818 port 81 202818 unique_id port 202818 remote_ip 10.8.1.22 202820 username khalili2 202820 mac 202820 bytes_out 1372940 202820 bytes_in 23400783 202820 station_ip 5.119.87.244 202820 port 78 202820 unique_id port 202820 remote_ip 10.8.1.18 202821 username alipour1506 202821 kill_reason Another user logged on this global unique id 202821 mac 202821 bytes_out 0 202821 bytes_in 0 202821 station_ip 151.234.23.177 202821 port 76 202821 unique_id port 202821 remote_ip 10.8.1.86 202824 username shahruz 202824 mac 202824 bytes_out 0 202824 bytes_in 0 202824 station_ip 83.123.199.182 202824 port 36 202824 unique_id port 202824 remote_ip 10.8.0.22 202826 username mohammadjavad 202826 mac 202826 bytes_out 0 202826 bytes_in 0 202826 station_ip 83.123.200.72 202826 port 33 202826 unique_id port 202826 remote_ip 10.8.0.58 202827 username fezealinaghi 202827 mac 202827 bytes_out 2037698 202827 bytes_in 26125208 202827 station_ip 37.129.233.237 202827 port 69 202827 unique_id port 202827 remote_ip 10.8.1.222 202830 username shahruz 202830 mac 202830 bytes_out 0 202830 bytes_in 0 202830 station_ip 83.123.199.182 202830 port 33 202830 unique_id port 202830 remote_ip 10.8.0.22 202841 username kamali3 202841 kill_reason Another user logged on this global unique id 202841 mac 202841 bytes_out 0 202841 bytes_in 0 202841 station_ip 5.202.133.211 202841 port 74 202841 unique_id port 202841 remote_ip 10.8.1.166 202842 username arash 202842 mac 202842 bytes_out 0 202842 bytes_in 0 202842 station_ip 37.27.29.10 202842 port 65 202842 unique_id port 202842 remote_ip 10.8.1.54 202844 username shahruz 202844 kill_reason Maximum check online fails reached 202844 mac 202844 bytes_out 0 202844 bytes_in 0 202844 station_ip 83.123.199.182 202844 port 78 202844 unique_id port 202847 username shahruz 202847 mac 202847 bytes_out 0 202847 bytes_in 0 202847 station_ip 83.123.199.182 202847 port 33 202847 unique_id port 202847 remote_ip 10.8.0.22 202850 username shahruz 202850 mac 202850 bytes_out 0 202850 bytes_in 0 202850 station_ip 83.123.199.182 202850 port 79 202850 unique_id port 202850 remote_ip 10.8.1.22 202856 username shahruz 202856 mac 202856 bytes_out 0 202856 bytes_in 0 202856 station_ip 83.123.199.182 202856 port 33 202856 unique_id port 202856 remote_ip 10.8.0.22 202858 username meysam 202858 mac 202858 bytes_out 0 202858 bytes_in 0 202858 station_ip 188.158.49.94 202858 port 79 202858 unique_id port 202858 remote_ip 10.8.1.30 202860 username shahruz 202860 mac 202860 bytes_out 0 202860 bytes_in 0 202860 station_ip 83.123.199.182 202860 port 66 202860 unique_id port 202860 remote_ip 10.8.1.22 202863 username arash 202863 kill_reason Another user logged on this global unique id 202863 mac 202863 bytes_out 0 202863 bytes_in 0 202863 station_ip 37.27.29.10 202863 port 81 202863 unique_id port 202863 remote_ip 10.8.1.54 202868 username kalantary6037 202868 mac 202868 bytes_out 98385 202868 bytes_in 470174 202868 station_ip 37.129.149.221 202868 port 38 202868 unique_id port 202868 remote_ip 10.8.0.10 202872 username shahruz 202872 kill_reason Maximum check online fails reached 202872 mac 202872 bytes_out 0 202872 bytes_in 0 202872 station_ip 83.123.199.182 202872 port 68 202872 unique_id port 202878 username barzegar 202878 mac 202878 bytes_out 0 202878 bytes_in 0 202878 station_ip 5.120.143.34 202878 port 77 202878 unique_id port 202878 remote_ip 10.8.1.6 202880 username shahruz 202880 mac 202880 bytes_out 0 202837 bytes_out 0 202837 bytes_in 0 202837 station_ip 83.123.199.182 202837 port 33 202837 unique_id port 202837 remote_ip 10.8.0.22 202838 username shahruz 202838 mac 202838 bytes_out 0 202838 bytes_in 0 202838 station_ip 83.123.199.182 202838 port 78 202838 unique_id port 202838 remote_ip 10.8.1.22 202840 username shahruz 202840 mac 202840 bytes_out 0 202840 bytes_in 0 202840 station_ip 83.123.199.182 202840 port 33 202840 unique_id port 202840 remote_ip 10.8.0.22 202845 username shahruz 202845 mac 202845 bytes_out 0 202845 bytes_in 0 202845 station_ip 83.123.199.182 202845 port 33 202845 unique_id port 202845 remote_ip 10.8.0.22 202846 username shahruz 202846 mac 202846 bytes_out 0 202846 bytes_in 0 202846 station_ip 83.123.199.182 202846 port 33 202846 unique_id port 202846 remote_ip 10.8.0.22 202848 username shahruz 202848 mac 202848 bytes_out 0 202848 bytes_in 0 202848 station_ip 83.123.199.182 202848 port 33 202848 unique_id port 202848 remote_ip 10.8.0.22 202849 username shahruz 202849 kill_reason Maximum check online fails reached 202849 mac 202849 bytes_out 0 202849 bytes_in 0 202849 station_ip 83.123.199.182 202849 port 65 202849 unique_id port 202851 username aminvpn 202851 unique_id port 202851 terminate_cause Lost-Carrier 202851 bytes_out 12192318 202851 bytes_in 539011520 202851 station_ip 31.57.141.62 202851 port 15729895 202851 nas_port_type Virtual 202851 remote_ip 5.5.5.57 202853 username kharazmi2920 202853 mac 202853 bytes_out 0 202853 bytes_in 0 202853 station_ip 83.123.60.195 202853 port 66 202853 unique_id port 202853 remote_ip 10.8.1.178 202855 username barzegar 202855 mac 202855 bytes_out 0 202855 bytes_in 0 202855 station_ip 5.120.143.34 202855 port 79 202855 unique_id port 202855 remote_ip 10.8.1.6 202862 username aminvpns6 202862 kill_reason Another user logged on this global unique id 202862 mac 202862 bytes_out 0 202862 bytes_in 0 202862 station_ip 5.120.13.108 202862 port 68 202862 unique_id port 202862 remote_ip 10.8.1.62 202864 username shahruz 202864 mac 202864 bytes_out 0 202864 bytes_in 0 202864 station_ip 83.123.199.182 202864 port 66 202864 unique_id port 202864 remote_ip 10.8.1.22 202865 username shahruz 202865 mac 202865 bytes_out 0 202865 bytes_in 0 202865 station_ip 83.123.199.182 202865 port 38 202865 unique_id port 202865 remote_ip 10.8.0.22 202866 username aminvpns6 202866 mac 202866 bytes_out 0 202866 bytes_in 0 202866 station_ip 5.120.13.108 202866 port 68 202866 unique_id port 202871 username shahruz 202871 mac 202871 bytes_out 0 202871 bytes_in 0 202871 station_ip 83.123.199.182 202871 port 38 202871 unique_id port 202871 remote_ip 10.8.0.22 202874 username shahruz 202874 mac 202874 bytes_out 0 202874 bytes_in 0 202874 station_ip 83.123.199.182 202874 port 79 202874 unique_id port 202874 remote_ip 10.8.1.22 202876 username shahruz 202876 mac 202876 bytes_out 0 202876 bytes_in 0 202876 station_ip 83.123.199.182 202876 port 38 202876 unique_id port 202876 remote_ip 10.8.0.22 202881 username shahruz 202881 mac 202881 bytes_out 0 202881 bytes_in 0 202881 station_ip 83.123.199.182 202881 port 39 202881 unique_id port 202881 remote_ip 10.8.0.22 202882 username shahruz 202882 mac 202882 bytes_out 0 202882 bytes_in 0 202882 station_ip 83.123.199.182 202882 port 81 202882 unique_id port 202882 remote_ip 10.8.1.22 202885 username shahruz 202885 mac 202885 bytes_out 0 202885 bytes_in 0 202885 station_ip 83.123.199.182 202843 port 79 202843 unique_id port 202843 remote_ip 10.8.1.22 202852 username alipour1506 202852 mac 202852 bytes_out 0 202852 bytes_in 0 202852 station_ip 151.234.23.177 202852 port 76 202852 unique_id port 202854 username kalantary6037 202854 mac 202854 bytes_out 379312 202854 bytes_in 2890432 202854 station_ip 37.129.149.221 202854 port 33 202854 unique_id port 202854 remote_ip 10.8.0.10 202857 username saeed9658 202857 mac 202857 bytes_out 599461 202857 bytes_in 5378078 202857 station_ip 5.119.245.65 202857 port 66 202857 unique_id port 202857 remote_ip 10.8.1.194 202859 username shahruz 202859 mac 202859 bytes_out 0 202859 bytes_in 0 202859 station_ip 83.123.199.182 202859 port 66 202859 unique_id port 202859 remote_ip 10.8.1.22 202861 username godarzi 202861 mac 202861 bytes_out 0 202861 bytes_in 0 202861 station_ip 5.119.204.201 202861 port 77 202861 unique_id port 202861 remote_ip 10.8.1.78 202867 username shahruz 202867 mac 202867 bytes_out 0 202867 bytes_in 0 202867 station_ip 83.123.199.182 202867 port 66 202867 unique_id port 202867 remote_ip 10.8.1.22 202869 username shahruz 202869 mac 202869 bytes_out 0 202869 bytes_in 0 202869 station_ip 83.123.199.182 202869 port 77 202869 unique_id port 202869 remote_ip 10.8.1.22 202870 username arash 202870 mac 202870 bytes_out 0 202870 bytes_in 0 202870 station_ip 37.27.29.10 202870 port 81 202870 unique_id port 202873 username motamedi9772 202873 mac 202873 bytes_out 0 202873 bytes_in 0 202873 station_ip 83.122.244.92 202873 port 38 202873 unique_id port 202873 remote_ip 10.8.0.62 202875 username shahruz 202875 mac 202875 bytes_out 0 202875 bytes_in 0 202875 station_ip 83.123.199.182 202875 port 79 202875 unique_id port 202875 remote_ip 10.8.1.22 202877 username shahruz 202877 mac 202877 bytes_out 0 202877 bytes_in 0 202877 station_ip 83.123.199.182 202877 port 38 202877 unique_id port 202877 remote_ip 10.8.0.22 202879 username shahruz 202879 mac 202879 bytes_out 0 202879 bytes_in 0 202879 station_ip 83.123.199.182 202879 port 38 202879 unique_id port 202879 remote_ip 10.8.0.22 202883 username barzegar 202883 mac 202883 bytes_out 0 202883 bytes_in 0 202883 station_ip 5.120.143.34 202883 port 79 202883 unique_id port 202883 remote_ip 10.8.1.6 202886 username shahruz 202886 mac 202886 bytes_out 0 202886 bytes_in 0 202886 station_ip 83.123.199.182 202886 port 39 202886 unique_id port 202886 remote_ip 10.8.0.22 202889 username shahruz 202889 mac 202889 bytes_out 0 202889 bytes_in 0 202889 station_ip 83.123.199.182 202889 port 39 202889 unique_id port 202889 remote_ip 10.8.0.22 202892 username shahruz 202892 mac 202892 bytes_out 0 202892 bytes_in 0 202892 station_ip 83.123.199.182 202892 port 39 202892 unique_id port 202892 remote_ip 10.8.0.22 202898 username barzegar 202898 mac 202898 bytes_out 0 202898 bytes_in 0 202898 station_ip 5.120.143.34 202898 port 79 202898 unique_id port 202898 remote_ip 10.8.1.6 202900 username shahruz 202900 mac 202900 bytes_out 0 202900 bytes_in 0 202900 station_ip 83.123.199.182 202900 port 79 202900 unique_id port 202900 remote_ip 10.8.1.22 202905 username shahruz 202905 mac 202905 bytes_out 0 202905 bytes_in 0 202905 station_ip 83.123.199.182 202905 port 39 202905 unique_id port 202905 remote_ip 10.8.0.22 202908 username nilufarrajaei 202908 mac 202908 bytes_out 3030335 202908 bytes_in 35022830 202880 bytes_in 0 202880 station_ip 83.123.199.182 202880 port 38 202880 unique_id port 202880 remote_ip 10.8.0.22 202884 username malekpoir 202884 mac 202884 bytes_out 0 202884 bytes_in 0 202884 station_ip 5.119.185.21 202884 port 75 202884 unique_id port 202884 remote_ip 10.8.1.70 202887 username shahruz 202887 mac 202887 bytes_out 0 202887 bytes_in 0 202887 station_ip 83.123.199.182 202887 port 39 202887 unique_id port 202887 remote_ip 10.8.0.22 202890 username shahruz 202890 mac 202890 bytes_out 0 202890 bytes_in 0 202890 station_ip 83.123.199.182 202890 port 39 202890 unique_id port 202890 remote_ip 10.8.0.22 202901 username shahruz 202901 mac 202901 bytes_out 0 202901 bytes_in 0 202901 station_ip 83.123.199.182 202901 port 39 202901 unique_id port 202901 remote_ip 10.8.0.22 202906 username shahruz 202906 mac 202906 bytes_out 0 202906 bytes_in 0 202906 station_ip 83.123.199.182 202906 port 79 202906 unique_id port 202906 remote_ip 10.8.1.22 202907 username shahruz 202907 mac 202907 bytes_out 0 202907 bytes_in 0 202907 station_ip 83.123.199.182 202907 port 39 202907 unique_id port 202907 remote_ip 10.8.0.22 202909 username yarmohamadi7916 202909 kill_reason Another user logged on this global unique id 202909 mac 202909 bytes_out 0 202909 bytes_in 0 202909 station_ip 5.120.120.199 202909 port 69 202909 unique_id port 202909 remote_ip 10.8.1.154 202911 username shahruz 202911 mac 202911 bytes_out 0 202911 bytes_in 0 202911 station_ip 83.123.199.182 202911 port 39 202911 unique_id port 202911 remote_ip 10.8.0.22 202912 username shahruz 202912 mac 202912 bytes_out 0 202912 bytes_in 0 202912 station_ip 83.123.199.182 202912 port 39 202912 unique_id port 202912 remote_ip 10.8.0.22 202918 username shahruz 202918 mac 202918 bytes_out 0 202918 bytes_in 0 202918 station_ip 83.123.199.182 202918 port 80 202918 unique_id port 202918 remote_ip 10.8.1.22 202930 username shahruz 202930 mac 202930 bytes_out 0 202930 bytes_in 0 202930 station_ip 83.123.199.182 202930 port 39 202930 unique_id port 202930 remote_ip 10.8.0.22 202932 username mammad 202932 unique_id port 202932 terminate_cause User-Request 202932 bytes_out 3321209 202932 bytes_in 43660040 202932 station_ip 46.100.218.209 202932 port 15729901 202932 nas_port_type Virtual 202932 remote_ip 5.5.5.67 202934 username shahruz 202934 mac 202934 bytes_out 0 202934 bytes_in 0 202934 station_ip 83.123.199.182 202934 port 33 202934 unique_id port 202934 remote_ip 10.8.0.22 202936 username shahruz 202936 mac 202936 bytes_out 0 202936 bytes_in 0 202936 station_ip 83.123.199.182 202936 port 39 202936 unique_id port 202936 remote_ip 10.8.0.22 202938 username shahruz 202938 mac 202938 bytes_out 0 202938 bytes_in 0 202938 station_ip 83.123.199.182 202938 port 39 202938 unique_id port 202938 remote_ip 10.8.0.22 202941 username rezaei 202941 mac 202941 bytes_out 41939 202941 bytes_in 62018 202941 station_ip 5.119.163.137 202941 port 76 202941 unique_id port 202941 remote_ip 10.8.1.174 202944 username shahruz 202944 mac 202944 bytes_out 0 202944 bytes_in 0 202944 station_ip 83.123.199.182 202944 port 36 202944 unique_id port 202944 remote_ip 10.8.0.22 202945 username godarzi 202945 mac 202945 bytes_out 0 202945 bytes_in 0 202945 station_ip 5.119.204.201 202945 port 79 202945 unique_id port 202945 remote_ip 10.8.1.78 202949 username shahruz 202949 mac 202949 bytes_out 0 202949 bytes_in 0 202949 station_ip 83.123.199.182 202885 port 39 202885 unique_id port 202885 remote_ip 10.8.0.22 202888 username shahruz 202888 kill_reason Maximum check online fails reached 202888 mac 202888 bytes_out 0 202888 bytes_in 0 202888 station_ip 83.123.199.182 202888 port 77 202888 unique_id port 202891 username shahruz 202891 mac 202891 bytes_out 0 202891 bytes_in 0 202891 station_ip 83.123.199.182 202891 port 39 202891 unique_id port 202891 remote_ip 10.8.0.22 202893 username majidsarmast 202893 mac 202893 bytes_out 0 202893 bytes_in 0 202893 station_ip 86.57.27.242 202893 port 79 202893 unique_id port 202893 remote_ip 10.8.1.114 202894 username barzegar 202894 mac 202894 bytes_out 0 202894 bytes_in 0 202894 station_ip 5.120.143.34 202894 port 79 202894 unique_id port 202894 remote_ip 10.8.1.6 202895 username shahruz 202895 mac 202895 bytes_out 0 202895 bytes_in 0 202895 station_ip 83.123.199.182 202895 port 39 202895 unique_id port 202895 remote_ip 10.8.0.22 202896 username shahruz 202896 mac 202896 bytes_out 0 202896 bytes_in 0 202896 station_ip 83.123.199.182 202896 port 39 202896 unique_id port 202896 remote_ip 10.8.0.22 202897 username shahruz 202897 mac 202897 bytes_out 0 202897 bytes_in 0 202897 station_ip 83.123.199.182 202897 port 39 202897 unique_id port 202897 remote_ip 10.8.0.22 202899 username shahruz 202899 mac 202899 bytes_out 0 202899 bytes_in 0 202899 station_ip 83.123.199.182 202899 port 39 202899 unique_id port 202899 remote_ip 10.8.0.22 202902 username shahruz 202902 mac 202902 bytes_out 0 202902 bytes_in 0 202902 station_ip 83.123.199.182 202902 port 39 202902 unique_id port 202902 remote_ip 10.8.0.22 202903 username shahruz 202903 mac 202903 bytes_out 0 202903 bytes_in 0 202903 station_ip 83.123.199.182 202903 port 39 202903 unique_id port 202903 remote_ip 10.8.0.22 202904 username shahruz 202904 mac 202904 bytes_out 0 202904 bytes_in 0 202904 station_ip 83.123.199.182 202904 port 39 202904 unique_id port 202904 remote_ip 10.8.0.22 202910 username shahruz 202910 mac 202910 bytes_out 0 202910 bytes_in 0 202910 station_ip 83.123.199.182 202910 port 79 202910 unique_id port 202910 remote_ip 10.8.1.22 202913 username shahruz 202913 mac 202913 bytes_out 0 202913 bytes_in 0 202913 station_ip 83.123.199.182 202913 port 80 202913 unique_id port 202913 remote_ip 10.8.1.22 202915 username shahruz 202915 mac 202915 bytes_out 0 202915 bytes_in 0 202915 station_ip 83.123.199.182 202915 port 41 202915 unique_id port 202915 remote_ip 10.8.0.22 202917 username yaghobi 202917 mac 202917 bytes_out 0 202917 bytes_in 0 202917 station_ip 83.123.23.46 202917 port 33 202917 unique_id port 202917 remote_ip 10.8.0.174 202920 username barzegar 202920 mac 202920 bytes_out 0 202920 bytes_in 0 202920 station_ip 5.120.143.34 202920 port 82 202920 unique_id port 202920 remote_ip 10.8.1.6 202922 username shahruz 202922 mac 202922 bytes_out 0 202922 bytes_in 0 202922 station_ip 83.123.199.182 202922 port 80 202922 unique_id port 202922 remote_ip 10.8.1.22 202925 username shahruz 202925 mac 202925 bytes_out 0 202925 bytes_in 0 202925 station_ip 83.123.199.182 202925 port 39 202925 unique_id port 202925 remote_ip 10.8.0.22 202927 username shahruz 202927 mac 202927 bytes_out 0 202927 bytes_in 0 202927 station_ip 83.123.199.182 202927 port 39 202927 unique_id port 202927 remote_ip 10.8.0.22 202929 username barzegar 202929 mac 202929 bytes_out 0 202908 station_ip 37.129.32.137 202908 port 80 202908 unique_id port 202908 remote_ip 10.8.1.138 202914 username shahruz 202914 mac 202914 bytes_out 0 202914 bytes_in 0 202914 station_ip 83.123.199.182 202914 port 40 202914 unique_id port 202914 remote_ip 10.8.0.22 202916 username shahruz 202916 mac 202916 bytes_out 0 202916 bytes_in 0 202916 station_ip 83.123.199.182 202916 port 40 202916 unique_id port 202916 remote_ip 10.8.0.22 202919 username kalantary6037 202919 mac 202919 bytes_out 0 202919 bytes_in 0 202919 station_ip 37.129.232.1 202919 port 39 202919 unique_id port 202919 remote_ip 10.8.0.10 202921 username shahruz 202921 mac 202921 bytes_out 0 202921 bytes_in 0 202921 station_ip 83.123.199.182 202921 port 33 202921 unique_id port 202921 remote_ip 10.8.0.22 202923 username shahruz 202923 mac 202923 bytes_out 0 202923 bytes_in 0 202923 station_ip 83.123.199.182 202923 port 39 202923 unique_id port 202923 remote_ip 10.8.0.22 202924 username nilufarrajaei 202924 mac 202924 bytes_out 0 202924 bytes_in 0 202924 station_ip 37.129.32.137 202924 port 79 202924 unique_id port 202924 remote_ip 10.8.1.138 202926 username shahruz 202926 mac 202926 bytes_out 0 202926 bytes_in 0 202926 station_ip 83.123.199.182 202926 port 39 202926 unique_id port 202926 remote_ip 10.8.0.22 202928 username esmaeilkazemi 202928 mac 202928 bytes_out 20733 202928 bytes_in 70593 202928 station_ip 83.122.95.89 202928 port 33 202928 unique_id port 202928 remote_ip 10.8.0.86 202933 username shahruz 202933 mac 202933 bytes_out 0 202933 bytes_in 0 202933 station_ip 83.123.199.182 202933 port 33 202933 unique_id port 202933 remote_ip 10.8.0.22 202935 username shahruz 202935 mac 202935 bytes_out 0 202935 bytes_in 0 202935 station_ip 83.123.199.182 202935 port 39 202935 unique_id port 202935 remote_ip 10.8.0.22 202939 username alipour1506 202939 mac 202939 bytes_out 260084 202939 bytes_in 968352 202939 station_ip 83.123.42.2 202939 port 36 202939 unique_id port 202939 remote_ip 10.8.0.134 202940 username shahruz 202940 mac 202940 bytes_out 0 202940 bytes_in 0 202940 station_ip 83.123.199.182 202940 port 83 202940 unique_id port 202940 remote_ip 10.8.1.22 202943 username shahruz 202943 mac 202943 bytes_out 0 202943 bytes_in 0 202943 station_ip 83.123.199.182 202943 port 76 202943 unique_id port 202943 remote_ip 10.8.1.22 202946 username shahruz 202946 mac 202946 bytes_out 0 202946 bytes_in 0 202946 station_ip 83.123.199.182 202946 port 76 202946 unique_id port 202946 remote_ip 10.8.1.22 202948 username shahruz 202948 mac 202948 bytes_out 0 202948 bytes_in 0 202948 station_ip 83.123.199.182 202948 port 36 202948 unique_id port 202948 remote_ip 10.8.0.22 202952 username yarmohamadi7916 202952 kill_reason Another user logged on this global unique id 202952 mac 202952 bytes_out 0 202952 bytes_in 0 202952 station_ip 5.120.120.199 202952 port 69 202952 unique_id port 202955 username barzegar 202955 mac 202955 bytes_out 0 202955 bytes_in 0 202955 station_ip 5.120.143.34 202955 port 76 202955 unique_id port 202955 remote_ip 10.8.1.6 202956 username barzegar 202956 mac 202956 bytes_out 0 202956 bytes_in 0 202956 station_ip 5.120.143.34 202956 port 76 202956 unique_id port 202956 remote_ip 10.8.1.6 202959 username sabaghnezhad 202959 mac 202959 bytes_out 0 202959 bytes_in 0 202959 station_ip 83.122.58.200 202959 port 25 202959 unique_id port 202959 remote_ip 10.8.0.18 202929 bytes_in 0 202929 station_ip 5.120.143.34 202929 port 79 202929 unique_id port 202929 remote_ip 10.8.1.6 202931 username shahruz 202931 mac 202931 bytes_out 0 202931 bytes_in 0 202931 station_ip 83.123.199.182 202931 port 79 202931 unique_id port 202931 remote_ip 10.8.1.22 202937 username shahruz 202937 mac 202937 bytes_out 0 202937 bytes_in 0 202937 station_ip 83.123.199.182 202937 port 39 202937 unique_id port 202937 remote_ip 10.8.0.22 202942 username shahruz 202942 mac 202942 bytes_out 0 202942 bytes_in 0 202942 station_ip 83.123.199.182 202942 port 36 202942 unique_id port 202942 remote_ip 10.8.0.22 202947 username khalili2 202947 mac 202947 bytes_out 885297 202947 bytes_in 13266594 202947 station_ip 5.119.87.244 202947 port 73 202947 unique_id port 202947 remote_ip 10.8.1.18 202953 username shahruz 202953 kill_reason Maximum check online fails reached 202953 mac 202953 bytes_out 0 202953 bytes_in 0 202953 station_ip 83.123.199.182 202953 port 73 202953 unique_id port 202957 username kamali3 202957 kill_reason Another user logged on this global unique id 202957 mac 202957 bytes_out 0 202957 bytes_in 0 202957 station_ip 5.202.133.211 202957 port 74 202957 unique_id port 202965 username farhad3 202965 mac 202965 bytes_out 0 202965 bytes_in 0 202965 station_ip 5.119.165.110 202965 port 56 202965 unique_id port 202966 username kalantary6037 202966 mac 202966 bytes_out 0 202966 bytes_in 0 202966 station_ip 37.129.248.181 202966 port 25 202966 unique_id port 202966 remote_ip 10.8.0.10 202976 username nilufarrajaei 202976 mac 202976 bytes_out 0 202976 bytes_in 0 202976 station_ip 37.129.32.137 202976 port 80 202976 unique_id port 202976 remote_ip 10.8.1.138 202980 username hamid1430 202980 mac 202980 bytes_out 1988482 202980 bytes_in 5320959 202980 station_ip 83.122.43.1 202980 port 38 202980 unique_id port 202980 remote_ip 10.8.0.110 202987 username yarmohamadi7916 202987 kill_reason Another user logged on this global unique id 202987 mac 202987 bytes_out 0 202987 bytes_in 0 202987 station_ip 5.119.95.79 202987 port 69 202987 unique_id port 202987 remote_ip 10.8.1.154 202990 username esmaeilkazemi 202990 mac 202990 bytes_out 0 202990 bytes_in 0 202990 station_ip 83.122.95.89 202990 port 33 202990 unique_id port 202990 remote_ip 10.8.0.86 202996 username motamedi9772 202996 kill_reason Another user logged on this global unique id 202996 mac 202996 bytes_out 0 202996 bytes_in 0 202996 station_ip 83.122.225.248 202996 port 36 202996 unique_id port 202996 remote_ip 10.8.0.62 203009 username majidsarmast 203009 mac 203009 bytes_out 2614593 203009 bytes_in 35920661 203009 station_ip 83.123.147.103 203009 port 79 203009 unique_id port 203009 remote_ip 10.8.1.114 203016 username hadibarzegar 203016 mac 203016 bytes_out 0 203016 bytes_in 0 203016 station_ip 5.120.115.115 203016 port 56 203016 unique_id port 203029 username motamedi9772 203029 kill_reason Another user logged on this global unique id 203029 mac 203029 bytes_out 0 203029 bytes_in 0 203029 station_ip 83.122.225.248 203029 port 36 203029 unique_id port 203031 username saeed9658 203031 mac 203031 bytes_out 59278 203031 bytes_in 249615 203031 station_ip 5.119.245.65 203031 port 56 203031 unique_id port 203031 remote_ip 10.8.1.194 203033 username kalantary6037 203033 mac 203033 bytes_out 0 203033 bytes_in 0 203033 station_ip 37.129.132.185 203033 port 38 203033 unique_id port 203033 remote_ip 10.8.0.10 203040 username aminvpn 203040 unique_id port 203040 terminate_cause User-Request 202949 port 76 202949 unique_id port 202949 remote_ip 10.8.1.22 202950 username shahruz 202950 mac 202950 bytes_out 0 202950 bytes_in 0 202950 station_ip 83.123.199.182 202950 port 36 202950 unique_id port 202950 remote_ip 10.8.0.22 202951 username shahruz 202951 kill_reason Maximum number of concurrent logins reached 202951 mac 202951 bytes_out 0 202951 bytes_in 0 202951 station_ip 83.123.199.182 202951 port 76 202951 unique_id port 202954 username shahruz 202954 mac 202954 bytes_out 1636 202954 bytes_in 5089 202954 station_ip 83.123.199.182 202954 port 36 202954 unique_id port 202954 remote_ip 10.8.0.22 202958 username hadibarzegar 202958 mac 202958 bytes_out 0 202958 bytes_in 0 202958 station_ip 5.120.115.115 202958 port 66 202958 unique_id port 202958 remote_ip 10.8.1.170 202960 username morteza4424 202960 kill_reason Another user logged on this global unique id 202960 mac 202960 bytes_out 0 202960 bytes_in 0 202960 station_ip 113.203.32.193 202960 port 33 202960 unique_id port 202960 remote_ip 10.8.0.70 202961 username daryaei1233 202961 mac 202961 bytes_out 142391 202961 bytes_in 480417 202961 station_ip 83.122.29.127 202961 port 36 202961 unique_id port 202961 remote_ip 10.8.0.242 202963 username daryaei1233 202963 mac 202963 bytes_out 0 202963 bytes_in 0 202963 station_ip 83.122.29.127 202963 port 66 202963 unique_id port 202963 remote_ip 10.8.1.230 202968 username barzegar 202968 kill_reason Maximum check online fails reached 202968 mac 202968 bytes_out 0 202968 bytes_in 0 202968 station_ip 5.120.143.34 202968 port 66 202968 unique_id port 202970 username majidsarmast 202970 mac 202970 bytes_out 0 202970 bytes_in 0 202970 station_ip 83.123.214.51 202970 port 81 202970 unique_id port 202972 username morteza4424 202972 kill_reason Another user logged on this global unique id 202972 mac 202972 bytes_out 0 202972 bytes_in 0 202972 station_ip 113.203.32.193 202972 port 33 202972 unique_id port 202973 username barzegar 202973 mac 202973 bytes_out 0 202973 bytes_in 0 202973 station_ip 5.120.143.34 202973 port 69 202973 unique_id port 202973 remote_ip 10.8.1.6 202975 username kalantary6037 202975 mac 202975 bytes_out 0 202975 bytes_in 0 202975 station_ip 37.129.214.57 202975 port 39 202975 unique_id port 202975 remote_ip 10.8.0.10 202977 username nilufarrajaei 202977 mac 202977 bytes_out 0 202977 bytes_in 0 202977 station_ip 37.129.32.137 202977 port 39 202977 unique_id port 202977 remote_ip 10.8.0.94 202978 username barzegar 202978 mac 202978 bytes_out 0 202978 bytes_in 0 202978 station_ip 5.120.143.34 202978 port 74 202978 unique_id port 202978 remote_ip 10.8.1.6 202982 username barzegar 202982 mac 202982 bytes_out 0 202982 bytes_in 0 202982 station_ip 5.120.143.34 202982 port 80 202982 unique_id port 202982 remote_ip 10.8.1.6 202984 username morteza4424 202984 mac 202984 bytes_out 0 202984 bytes_in 0 202984 station_ip 113.203.32.193 202984 port 80 202984 unique_id port 202984 remote_ip 10.8.1.94 202986 username barzegar 202986 mac 202986 bytes_out 3011784 202986 bytes_in 1294354 202986 station_ip 5.120.143.34 202986 port 33 202986 unique_id port 202986 remote_ip 10.8.0.14 202989 username morteza4424 202989 mac 202989 bytes_out 0 202989 bytes_in 0 202989 station_ip 113.203.32.193 202989 port 33 202989 unique_id port 202989 remote_ip 10.8.0.70 202991 username morteza4424 202991 mac 202991 bytes_out 0 202991 bytes_in 0 202991 station_ip 113.203.32.193 202991 port 80 202991 unique_id port 202962 username majidsarmast 202962 kill_reason Another user logged on this global unique id 202962 mac 202962 bytes_out 0 202962 bytes_in 0 202962 station_ip 83.123.214.51 202962 port 81 202962 unique_id port 202962 remote_ip 10.8.1.114 202964 username daryaei1233 202964 mac 202964 bytes_out 0 202964 bytes_in 0 202964 station_ip 83.122.29.127 202964 port 66 202964 unique_id port 202964 remote_ip 10.8.1.230 202967 username barzegar 202967 mac 202967 bytes_out 0 202967 bytes_in 0 202967 station_ip 5.120.143.34 202967 port 79 202967 unique_id port 202967 remote_ip 10.8.1.6 202969 username kamali3 202969 mac 202969 bytes_out 0 202969 bytes_in 0 202969 station_ip 5.202.133.211 202969 port 74 202969 unique_id port 202971 username yarmohamadi7916 202971 mac 202971 bytes_out 0 202971 bytes_in 0 202971 station_ip 5.120.120.199 202971 port 69 202971 unique_id port 202974 username kalantary6037 202974 mac 202974 bytes_out 189942 202974 bytes_in 1750346 202974 station_ip 37.129.214.57 202974 port 36 202974 unique_id port 202974 remote_ip 10.8.0.10 202979 username morteza4424 202979 kill_reason Another user logged on this global unique id 202979 mac 202979 bytes_out 0 202979 bytes_in 0 202979 station_ip 113.203.32.193 202979 port 33 202979 unique_id port 202981 username morteza4424 202981 mac 202981 bytes_out 0 202981 bytes_in 0 202981 station_ip 113.203.32.193 202981 port 33 202981 unique_id port 202983 username kalantary6037 202983 mac 202983 bytes_out 376804 202983 bytes_in 3371638 202983 station_ip 37.129.214.57 202983 port 39 202983 unique_id port 202983 remote_ip 10.8.0.10 202985 username morteza4424 202985 mac 202985 bytes_out 0 202985 bytes_in 0 202985 station_ip 113.203.32.193 202985 port 80 202985 unique_id port 202985 remote_ip 10.8.1.94 202988 username morteza4424 202988 mac 202988 bytes_out 50669 202988 bytes_in 832881 202988 station_ip 113.203.32.193 202988 port 38 202988 unique_id port 202988 remote_ip 10.8.0.70 202992 username esmaeilkazemi 202992 mac 202992 bytes_out 0 202992 bytes_in 0 202992 station_ip 83.122.95.89 202992 port 38 202992 unique_id port 202992 remote_ip 10.8.0.86 202994 username hadibarzegar 202994 kill_reason Another user logged on this global unique id 202994 mac 202994 bytes_out 0 202994 bytes_in 0 202994 station_ip 5.120.115.115 202994 port 56 202994 unique_id port 202994 remote_ip 10.8.1.170 202997 username morteza4424 202997 mac 202997 bytes_out 0 202997 bytes_in 0 202997 station_ip 113.203.32.193 202997 port 74 202997 unique_id port 202997 remote_ip 10.8.1.94 202999 username morteza4424 202999 mac 202999 bytes_out 0 202999 bytes_in 0 202999 station_ip 113.203.32.193 202999 port 74 202999 unique_id port 202999 remote_ip 10.8.1.94 203000 username khademi 203000 kill_reason Another user logged on this global unique id 203000 mac 203000 bytes_out 0 203000 bytes_in 0 203000 station_ip 37.129.212.3 203000 port 31 203000 unique_id port 203002 username morteza4424 203002 mac 203002 bytes_out 0 203002 bytes_in 0 203002 station_ip 113.203.32.193 203002 port 39 203002 unique_id port 203002 remote_ip 10.8.0.70 203004 username morteza4424 203004 mac 203004 bytes_out 0 203004 bytes_in 0 203004 station_ip 113.203.32.193 203004 port 80 203004 unique_id port 203004 remote_ip 10.8.1.94 203007 username morteza4424 203007 mac 203007 bytes_out 0 203007 bytes_in 0 203007 station_ip 113.203.32.193 203007 port 80 203007 unique_id port 203007 remote_ip 10.8.1.94 203012 username khademi 203037 mac 202991 remote_ip 10.8.1.94 202993 username rezaei 202993 mac 202993 bytes_out 0 202993 bytes_in 0 202993 station_ip 5.119.163.137 202993 port 74 202993 unique_id port 202993 remote_ip 10.8.1.174 202995 username morteza4424 202995 mac 202995 bytes_out 0 202995 bytes_in 0 202995 station_ip 113.203.32.193 202995 port 74 202995 unique_id port 202995 remote_ip 10.8.1.94 202998 username barzegar 202998 mac 202998 bytes_out 0 202998 bytes_in 0 202998 station_ip 5.120.143.34 202998 port 81 202998 unique_id port 202998 remote_ip 10.8.1.6 203001 username kalantary6037 203001 mac 203001 bytes_out 0 203001 bytes_in 0 203001 station_ip 37.129.214.57 203001 port 33 203001 unique_id port 203001 remote_ip 10.8.0.10 203003 username morteza4424 203003 mac 203003 bytes_out 0 203003 bytes_in 0 203003 station_ip 113.203.32.193 203003 port 33 203003 unique_id port 203003 remote_ip 10.8.0.70 203005 username barzegar 203005 mac 203005 bytes_out 0 203005 bytes_in 0 203005 station_ip 5.120.143.34 203005 port 74 203005 unique_id port 203005 remote_ip 10.8.1.6 203006 username yaghobi 203006 mac 203006 bytes_out 1045227 203006 bytes_in 12398730 203006 station_ip 83.123.84.42 203006 port 38 203006 unique_id port 203006 remote_ip 10.8.0.174 203008 username morteza4424 203008 mac 203008 bytes_out 2119 203008 bytes_in 4780 203008 station_ip 113.203.32.193 203008 port 33 203008 unique_id port 203008 remote_ip 10.8.0.70 203010 username yarmohamadi7916 203010 kill_reason Another user logged on this global unique id 203010 mac 203010 bytes_out 0 203010 bytes_in 0 203010 station_ip 5.119.95.79 203010 port 69 203010 unique_id port 203011 username barzegar 203011 mac 203011 bytes_out 0 203011 bytes_in 0 203011 station_ip 5.120.143.34 203011 port 74 203011 unique_id port 203011 remote_ip 10.8.1.6 203013 username pourshad 203013 kill_reason Another user logged on this global unique id 203013 mac 203013 bytes_out 0 203013 bytes_in 0 203013 station_ip 5.120.217.98 203013 port 63 203013 unique_id port 203013 remote_ip 10.8.1.58 203014 username motamedi9772 203014 kill_reason Another user logged on this global unique id 203014 mac 203014 bytes_out 0 203014 bytes_in 0 203014 station_ip 83.122.225.248 203014 port 36 203014 unique_id port 203017 username barzegar 203017 mac 203017 bytes_out 5223 203017 bytes_in 12335 203017 station_ip 5.120.143.34 203017 port 56 203017 unique_id port 203017 remote_ip 10.8.1.6 203019 username yarmohamadi7916 203019 mac 203019 bytes_out 0 203019 bytes_in 0 203019 station_ip 5.119.95.79 203019 port 69 203019 unique_id port 203022 username kalantary6037 203022 mac 203022 bytes_out 167180 203022 bytes_in 436002 203022 station_ip 37.129.225.193 203022 port 33 203022 unique_id port 203022 remote_ip 10.8.0.10 203025 username saeed9658 203025 mac 203025 bytes_out 149140 203025 bytes_in 524359 203025 station_ip 5.119.245.65 203025 port 69 203025 unique_id port 203025 remote_ip 10.8.1.194 203027 username farhad3 203027 mac 203027 bytes_out 0 203027 bytes_in 0 203027 station_ip 5.119.165.110 203027 port 56 203027 unique_id port 203027 remote_ip 10.8.1.38 203030 username morteza4424 203030 mac 203030 bytes_out 0 203030 bytes_in 0 203030 station_ip 113.203.100.221 203030 port 41 203030 unique_id port 203030 remote_ip 10.8.0.70 203034 username barzegar 203034 mac 203034 bytes_out 0 203034 bytes_in 0 203034 station_ip 5.120.143.34 203034 port 69 203034 unique_id port 203034 remote_ip 10.8.1.6 203037 username saeed9658 203012 kill_reason Another user logged on this global unique id 203012 mac 203012 bytes_out 0 203012 bytes_in 0 203012 station_ip 37.129.212.3 203012 port 31 203012 unique_id port 203015 username kalantary6037 203015 mac 203015 bytes_out 0 203015 bytes_in 0 203015 station_ip 37.129.225.193 203015 port 33 203015 unique_id port 203015 remote_ip 10.8.0.10 203018 username majidsarmast 203018 mac 203018 bytes_out 25634 203018 bytes_in 46665 203018 station_ip 83.123.147.103 203018 port 79 203018 unique_id port 203018 remote_ip 10.8.1.114 203020 username mosi 203020 mac 203020 bytes_out 0 203020 bytes_in 0 203020 station_ip 5.233.60.247 203020 port 76 203020 unique_id port 203020 remote_ip 10.8.1.118 203021 username mosi 203021 mac 203021 bytes_out 0 203021 bytes_in 0 203021 station_ip 5.233.60.247 203021 port 69 203021 unique_id port 203021 remote_ip 10.8.1.118 203023 username dortaj3792 203023 mac 203023 bytes_out 0 203023 bytes_in 0 203023 station_ip 5.119.217.7 203023 port 38 203023 unique_id port 203023 remote_ip 10.8.0.30 203024 username aminvpn 203024 unique_id port 203024 terminate_cause Lost-Carrier 203024 bytes_out 31193854 203024 bytes_in 742731181 203024 station_ip 31.57.142.126 203024 port 15729904 203024 nas_port_type Virtual 203024 remote_ip 5.5.5.53 203026 username ayobi 203026 kill_reason Another user logged on this global unique id 203026 mac 203026 bytes_out 0 203026 bytes_in 0 203026 station_ip 37.27.2.2 203026 port 39 203026 unique_id port 203026 remote_ip 10.8.0.182 203028 username barzegar 203028 mac 203028 bytes_out 0 203028 bytes_in 0 203028 station_ip 5.120.143.34 203028 port 69 203028 unique_id port 203028 remote_ip 10.8.1.6 203032 username nilufarrajaei 203032 mac 203032 bytes_out 0 203032 bytes_in 0 203032 station_ip 37.129.32.137 203032 port 40 203032 unique_id port 203032 remote_ip 10.8.0.94 203035 username barzegar 203035 mac 203035 bytes_out 0 203035 bytes_in 0 203035 station_ip 5.120.143.34 203035 port 69 203035 unique_id port 203035 remote_ip 10.8.1.6 203036 username ayobi 203036 kill_reason Another user logged on this global unique id 203036 mac 203036 bytes_out 0 203036 bytes_in 0 203036 station_ip 37.27.2.2 203036 port 39 203036 unique_id port 203039 username saeed9658 203039 mac 203039 bytes_out 0 203039 bytes_in 0 203039 station_ip 5.119.245.65 203039 port 69 203039 unique_id port 203039 remote_ip 10.8.1.194 203042 username kalantary6037 203042 mac 203042 bytes_out 0 203042 bytes_in 0 203042 station_ip 37.129.132.185 203042 port 38 203042 unique_id port 203042 remote_ip 10.8.0.10 203045 username aminvpn 203045 unique_id port 203045 terminate_cause Lost-Carrier 203045 bytes_out 215545 203045 bytes_in 593799 203045 station_ip 37.129.166.39 203045 port 15729912 203045 nas_port_type Virtual 203045 remote_ip 5.5.5.60 203047 username daryaei1233 203047 mac 203047 bytes_out 0 203047 bytes_in 0 203047 station_ip 5.202.2.133 203047 port 56 203047 unique_id port 203047 remote_ip 10.8.1.230 203052 username saeed9658 203052 mac 203052 bytes_out 0 203052 bytes_in 0 203052 station_ip 5.119.245.65 203052 port 56 203052 unique_id port 203052 remote_ip 10.8.1.194 203061 username kalantary6037 203061 mac 203061 bytes_out 0 203061 bytes_in 0 203061 station_ip 37.129.230.205 203061 port 40 203061 unique_id port 203061 remote_ip 10.8.0.10 203063 username barzegar 203063 kill_reason Maximum check online fails reached 203063 mac 203063 bytes_out 0 203063 bytes_in 0 203063 station_ip 5.120.143.34 203063 port 74 203037 bytes_out 0 203037 bytes_in 0 203037 station_ip 5.119.245.65 203037 port 56 203037 unique_id port 203037 remote_ip 10.8.1.194 203038 username saeed9658 203038 mac 203038 bytes_out 0 203038 bytes_in 0 203038 station_ip 5.119.245.65 203038 port 56 203038 unique_id port 203038 remote_ip 10.8.1.194 203046 username saeed9658 203046 mac 203046 bytes_out 0 203046 bytes_in 0 203046 station_ip 5.119.245.65 203046 port 69 203046 unique_id port 203046 remote_ip 10.8.1.194 203049 username ayobi 203049 kill_reason Another user logged on this global unique id 203049 mac 203049 bytes_out 0 203049 bytes_in 0 203049 station_ip 37.27.2.2 203049 port 39 203049 unique_id port 203051 username motamedi9772 203051 mac 203051 bytes_out 0 203051 bytes_in 0 203051 station_ip 83.122.225.248 203051 port 36 203051 unique_id port 203053 username amirzadeh1339 203053 unique_id port 203053 terminate_cause User-Request 203053 bytes_out 21153532 203053 bytes_in 463643447 203053 station_ip 37.27.39.11 203053 port 15729903 203053 nas_port_type Virtual 203053 remote_ip 5.5.5.255 203055 username majidsarmast 203055 kill_reason Another user logged on this global unique id 203055 mac 203055 bytes_out 0 203055 bytes_in 0 203055 station_ip 83.123.147.103 203055 port 74 203055 unique_id port 203056 username tahmorsi 203056 kill_reason Maximum check online fails reached 203056 mac 203056 bytes_out 0 203056 bytes_in 0 203056 station_ip 86.57.73.18 203056 port 56 203056 unique_id port 203058 username majidsarmast 203058 mac 203058 bytes_out 0 203058 bytes_in 0 203058 station_ip 83.123.147.103 203058 port 74 203058 unique_id port 203059 username arash 203059 mac 203059 bytes_out 0 203059 bytes_in 0 203059 station_ip 37.27.29.10 203059 port 69 203059 unique_id port 203059 remote_ip 10.8.1.54 203060 username barzegar 203060 mac 203060 bytes_out 0 203060 bytes_in 0 203060 station_ip 5.120.143.34 203060 port 56 203060 unique_id port 203060 remote_ip 10.8.1.6 203062 username yaghobi 203062 mac 203062 bytes_out 1444290 203062 bytes_in 17258399 203062 station_ip 83.123.1.66 203062 port 38 203062 unique_id port 203062 remote_ip 10.8.0.174 203067 username yaghobi 203067 mac 203067 bytes_out 0 203067 bytes_in 0 203067 station_ip 83.123.1.66 203067 port 40 203067 unique_id port 203067 remote_ip 10.8.0.174 203072 username mammad 203072 unique_id port 203072 terminate_cause User-Request 203072 bytes_out 3654629 203072 bytes_in 50714038 203072 station_ip 46.100.221.227 203072 port 15729913 203072 nas_port_type Virtual 203072 remote_ip 5.5.5.254 203075 username kalantary6037 203075 mac 203075 bytes_out 80248 203075 bytes_in 87398 203075 station_ip 37.129.180.5 203075 port 40 203075 unique_id port 203075 remote_ip 10.8.0.10 203077 username mosi 203077 mac 203077 bytes_out 0 203077 bytes_in 0 203077 station_ip 5.233.60.208 203077 port 56 203077 unique_id port 203077 remote_ip 10.8.1.118 203080 username sekonji0496 203080 mac 203080 bytes_out 0 203080 bytes_in 0 203080 station_ip 83.122.58.251 203080 port 38 203080 unique_id port 203080 remote_ip 10.8.0.66 203082 username farhad3 203082 mac 203082 bytes_out 0 203082 bytes_in 0 203082 station_ip 5.119.165.110 203082 port 63 203082 unique_id port 203082 remote_ip 10.8.1.38 203084 username farhad3 203084 mac 203084 bytes_out 40150 203084 bytes_in 97091 203084 station_ip 5.119.165.110 203084 port 63 203084 unique_id port 203084 remote_ip 10.8.1.38 203086 username sabaghnezhad 203086 mac 203086 bytes_out 2371298 203040 bytes_out 697298 203040 bytes_in 8972744 203040 station_ip 31.57.125.22 203040 port 15729911 203040 nas_port_type Virtual 203040 remote_ip 5.5.5.56 203041 username majidsarmast 203041 kill_reason Another user logged on this global unique id 203041 mac 203041 bytes_out 0 203041 bytes_in 0 203041 station_ip 83.123.147.103 203041 port 74 203041 unique_id port 203041 remote_ip 10.8.1.114 203043 username barzegar 203043 mac 203043 bytes_out 0 203043 bytes_in 0 203043 station_ip 5.120.143.34 203043 port 79 203043 unique_id port 203043 remote_ip 10.8.1.6 203044 username motamedi9772 203044 kill_reason Another user logged on this global unique id 203044 mac 203044 bytes_out 0 203044 bytes_in 0 203044 station_ip 83.122.225.248 203044 port 36 203044 unique_id port 203048 username farhad3 203048 mac 203048 bytes_out 0 203048 bytes_in 0 203048 station_ip 5.119.165.110 203048 port 69 203048 unique_id port 203048 remote_ip 10.8.1.38 203050 username barzegar 203050 mac 203050 bytes_out 0 203050 bytes_in 0 203050 station_ip 5.120.143.34 203050 port 56 203050 unique_id port 203050 remote_ip 10.8.1.6 203054 username tahmorsi 203054 kill_reason Another user logged on this global unique id 203054 mac 203054 bytes_out 0 203054 bytes_in 0 203054 station_ip 86.57.73.18 203054 port 56 203054 unique_id port 203057 username farhad3 203057 mac 203057 bytes_out 0 203057 bytes_in 0 203057 station_ip 5.119.165.110 203057 port 56 203057 unique_id port 203057 remote_ip 10.8.1.38 203064 username aminvpns6 203064 kill_reason Another user logged on this global unique id 203064 mac 203064 bytes_out 0 203064 bytes_in 0 203064 station_ip 5.120.13.108 203064 port 36 203064 unique_id port 203064 remote_ip 10.8.0.210 203065 username pourshad 203065 mac 203065 bytes_out 0 203065 bytes_in 0 203065 station_ip 5.120.217.98 203065 port 63 203065 unique_id port 203068 username hosseine 203068 kill_reason Another user logged on this global unique id 203068 mac 203068 bytes_out 0 203068 bytes_in 0 203068 station_ip 37.129.184.82 203068 port 28 203068 unique_id port 203068 remote_ip 10.8.0.118 203069 username barzegar8595 203069 mac 203069 bytes_out 0 203069 bytes_in 0 203069 station_ip 37.156.156.110 203069 port 69 203069 unique_id port 203069 remote_ip 10.8.1.50 203074 username saeed9658 203074 mac 203074 bytes_out 0 203074 bytes_in 0 203074 station_ip 5.119.245.65 203074 port 79 203074 unique_id port 203074 remote_ip 10.8.1.194 203088 username alipour1506 203088 kill_reason Another user logged on this global unique id 203088 mac 203088 bytes_out 0 203088 bytes_in 0 203088 station_ip 151.234.23.177 203088 port 82 203088 unique_id port 203088 remote_ip 10.8.1.86 203090 username saeed9658 203090 mac 203090 bytes_out 0 203090 bytes_in 0 203090 station_ip 5.119.245.65 203090 port 56 203090 unique_id port 203090 remote_ip 10.8.1.194 203092 username kalantary6037 203092 mac 203092 bytes_out 31899 203092 bytes_in 63029 203092 station_ip 37.129.142.193 203092 port 41 203092 unique_id port 203092 remote_ip 10.8.0.10 203095 username malekpoir 203095 mac 203095 bytes_out 0 203095 bytes_in 0 203095 station_ip 5.119.185.21 203095 port 75 203095 unique_id port 203095 remote_ip 10.8.1.70 203097 username tahmorsi 203097 mac 203097 bytes_out 0 203097 bytes_in 0 203097 station_ip 86.57.73.18 203097 port 63 203097 unique_id port 203097 remote_ip 10.8.1.102 203102 username aminvpns6 203102 kill_reason Another user logged on this global unique id 203102 mac 203102 bytes_out 0 203102 bytes_in 0 203102 station_ip 5.120.13.108 203102 port 36 203063 unique_id port 203066 username saeed9658 203066 mac 203066 bytes_out 0 203066 bytes_in 0 203066 station_ip 5.119.245.65 203066 port 79 203066 unique_id port 203066 remote_ip 10.8.1.194 203070 username barzegar 203070 mac 203070 bytes_out 0 203070 bytes_in 0 203070 station_ip 5.120.143.34 203070 port 69 203070 unique_id port 203070 remote_ip 10.8.1.6 203071 username farhad3 203071 mac 203071 bytes_out 201511 203071 bytes_in 1140831 203071 station_ip 5.119.165.110 203071 port 63 203071 unique_id port 203071 remote_ip 10.8.1.38 203073 username barzegar 203073 mac 203073 bytes_out 0 203073 bytes_in 0 203073 station_ip 5.120.143.34 203073 port 63 203073 unique_id port 203073 remote_ip 10.8.1.6 203076 username arash 203076 mac 203076 bytes_out 774738 203076 bytes_in 8874763 203076 station_ip 37.27.29.10 203076 port 63 203076 unique_id port 203076 remote_ip 10.8.1.54 203078 username aminvpns6 203078 kill_reason Another user logged on this global unique id 203078 mac 203078 bytes_out 0 203078 bytes_in 0 203078 station_ip 5.120.13.108 203078 port 36 203078 unique_id port 203079 username saeed9658 203079 mac 203079 bytes_out 0 203079 bytes_in 0 203079 station_ip 5.119.245.65 203079 port 56 203079 unique_id port 203079 remote_ip 10.8.1.194 203081 username farhad3 203081 mac 203081 bytes_out 0 203081 bytes_in 0 203081 station_ip 5.119.165.110 203081 port 69 203081 unique_id port 203081 remote_ip 10.8.1.38 203083 username barzegar 203083 mac 203083 bytes_out 0 203083 bytes_in 0 203083 station_ip 5.120.143.34 203083 port 56 203083 unique_id port 203083 remote_ip 10.8.1.6 203085 username barzegar 203085 mac 203085 bytes_out 0 203085 bytes_in 0 203085 station_ip 5.120.143.34 203085 port 56 203085 unique_id port 203085 remote_ip 10.8.1.6 203087 username saeed9658 203087 mac 203087 bytes_out 0 203087 bytes_in 0 203087 station_ip 5.119.245.65 203087 port 56 203087 unique_id port 203087 remote_ip 10.8.1.194 203089 username aminvpns6 203089 kill_reason Another user logged on this global unique id 203089 mac 203089 bytes_out 0 203089 bytes_in 0 203089 station_ip 5.120.13.108 203089 port 36 203089 unique_id port 203091 username kalantary6037 203091 mac 203091 bytes_out 258512 203091 bytes_in 2616405 203091 station_ip 37.129.142.193 203091 port 41 203091 unique_id port 203091 remote_ip 10.8.0.10 203099 username hamid.e 203099 unique_id port 203099 terminate_cause User-Request 203099 bytes_out 9744414 203099 bytes_in 282424967 203099 station_ip 31.56.113.143 203099 port 15729919 203099 nas_port_type Virtual 203099 remote_ip 5.5.5.111 203101 username saeeddamghani 203101 mac 203101 bytes_out 0 203101 bytes_in 0 203101 station_ip 5.119.232.8 203101 port 63 203101 unique_id port 203101 remote_ip 10.8.1.66 203103 username sekonji0496 203103 mac 203103 bytes_out 139632 203103 bytes_in 415437 203103 station_ip 83.122.168.106 203103 port 38 203103 unique_id port 203103 remote_ip 10.8.0.66 203114 username farhad3 203114 mac 203114 bytes_out 3179686 203114 bytes_in 35297645 203114 station_ip 5.119.165.110 203114 port 79 203114 unique_id port 203114 remote_ip 10.8.1.38 203115 username hamid1430 203115 mac 203115 bytes_out 0 203115 bytes_in 0 203115 station_ip 83.122.43.118 203115 port 41 203115 unique_id port 203115 remote_ip 10.8.0.110 203116 username sekonji0496 203116 mac 203116 bytes_out 37088 203116 bytes_in 64765 203116 station_ip 83.122.168.106 203116 port 63 203116 unique_id port 203116 remote_ip 10.8.1.98 203086 bytes_in 1777326 203086 station_ip 83.123.41.55 203086 port 25 203086 unique_id port 203086 remote_ip 10.8.0.18 203093 username rezaei 203093 kill_reason Another user logged on this global unique id 203093 mac 203093 bytes_out 0 203093 bytes_in 0 203093 station_ip 5.119.163.137 203093 port 69 203093 unique_id port 203093 remote_ip 10.8.1.174 203094 username barzegar 203094 mac 203094 bytes_out 0 203094 bytes_in 0 203094 station_ip 5.120.143.34 203094 port 40 203094 unique_id port 203094 remote_ip 10.8.0.14 203096 username saeeddamghani 203096 mac 203096 bytes_out 0 203096 bytes_in 0 203096 station_ip 5.119.232.8 203096 port 56 203096 unique_id port 203096 remote_ip 10.8.1.66 203098 username rezaei 203098 mac 203098 bytes_out 0 203098 bytes_in 0 203098 station_ip 5.119.163.137 203098 port 69 203098 unique_id port 203100 username godarzi 203100 kill_reason Another user logged on this global unique id 203100 mac 203100 bytes_out 0 203100 bytes_in 0 203100 station_ip 5.202.2.157 203100 port 76 203100 unique_id port 203100 remote_ip 10.8.1.78 203104 username saeeddamghani 203104 kill_reason Maximum check online fails reached 203104 mac 203104 bytes_out 0 203104 bytes_in 0 203104 station_ip 5.119.232.8 203104 port 75 203104 unique_id port 203106 username milan 203106 kill_reason Another user logged on this global unique id 203106 mac 203106 bytes_out 0 203106 bytes_in 0 203106 station_ip 5.119.148.50 203106 port 42 203106 unique_id port 203106 remote_ip 10.8.0.198 203107 username kalantary6037 203107 mac 203107 bytes_out 0 203107 bytes_in 0 203107 station_ip 37.129.142.193 203107 port 38 203107 unique_id port 203107 remote_ip 10.8.0.10 203109 username sekonji0496 203109 mac 203109 bytes_out 0 203109 bytes_in 0 203109 station_ip 83.122.168.106 203109 port 63 203109 unique_id port 203109 remote_ip 10.8.1.98 203111 username hosseine 203111 mac 203111 bytes_out 0 203111 bytes_in 0 203111 station_ip 37.129.184.82 203111 port 28 203111 unique_id port 203119 username sekonji0496 203119 mac 203119 bytes_out 0 203119 bytes_in 0 203119 station_ip 83.122.168.106 203119 port 63 203119 unique_id port 203119 remote_ip 10.8.1.98 203123 username malekpoir 203123 mac 203123 bytes_out 0 203123 bytes_in 0 203123 station_ip 5.119.185.21 203123 port 56 203123 unique_id port 203123 remote_ip 10.8.1.70 203125 username jafari 203125 kill_reason Another user logged on this global unique id 203125 mac 203125 bytes_out 4202289 203125 bytes_in 44832801 203125 station_ip 89.32.108.77 203125 port 43 203125 unique_id port 203125 remote_ip 10.8.0.246 203126 username barzegar 203126 mac 203126 bytes_out 0 203126 bytes_in 0 203126 station_ip 5.120.143.34 203126 port 80 203126 unique_id port 203126 remote_ip 10.8.1.6 203129 username barzegar 203129 mac 203129 bytes_out 0 203129 bytes_in 0 203129 station_ip 5.120.143.34 203129 port 56 203129 unique_id port 203129 remote_ip 10.8.1.6 203132 username daryaei1233 203132 mac 203132 bytes_out 0 203132 bytes_in 0 203132 station_ip 83.123.87.203 203132 port 38 203132 unique_id port 203132 remote_ip 10.8.0.242 203135 username nilufarrajaei 203135 mac 203135 bytes_out 5664679 203135 bytes_in 29942624 203135 station_ip 37.129.32.137 203135 port 33 203135 unique_id port 203135 remote_ip 10.8.0.94 203136 username motamedi9772 203136 mac 203136 bytes_out 276082 203136 bytes_in 1379986 203136 station_ip 83.122.233.156 203136 port 44 203136 unique_id port 203136 remote_ip 10.8.0.62 203139 username yaghobi 203139 mac 203102 unique_id port 203105 username saeed9658 203105 mac 203105 bytes_out 0 203105 bytes_in 0 203105 station_ip 5.119.245.65 203105 port 40 203105 unique_id port 203105 remote_ip 10.8.0.218 203108 username saeed9658 203108 mac 203108 bytes_out 0 203108 bytes_in 0 203108 station_ip 5.119.245.65 203108 port 80 203108 unique_id port 203108 remote_ip 10.8.1.194 203110 username barzegar 203110 mac 203110 bytes_out 0 203110 bytes_in 0 203110 station_ip 5.120.143.34 203110 port 69 203110 unique_id port 203110 remote_ip 10.8.1.6 203112 username milan 203112 kill_reason Another user logged on this global unique id 203112 mac 203112 bytes_out 0 203112 bytes_in 0 203112 station_ip 5.119.148.50 203112 port 42 203112 unique_id port 203113 username aminvpns6 203113 kill_reason Another user logged on this global unique id 203113 mac 203113 bytes_out 0 203113 bytes_in 0 203113 station_ip 5.120.13.108 203113 port 36 203113 unique_id port 203118 username kalantary6037 203118 mac 203118 bytes_out 0 203118 bytes_in 0 203118 station_ip 37.129.142.193 203118 port 38 203118 unique_id port 203118 remote_ip 10.8.0.10 203120 username saeed9658 203120 mac 203120 bytes_out 0 203120 bytes_in 0 203120 station_ip 5.119.245.65 203120 port 63 203120 unique_id port 203120 remote_ip 10.8.1.194 203124 username aminvpns6 203124 mac 203124 bytes_out 0 203124 bytes_in 0 203124 station_ip 5.120.13.108 203124 port 36 203124 unique_id port 203128 username barzegar 203128 mac 203128 bytes_out 2004 203128 bytes_in 4717 203128 station_ip 5.120.143.34 203128 port 38 203128 unique_id port 203128 remote_ip 10.8.0.14 203134 username daryaei1233 203134 mac 203134 bytes_out 0 203134 bytes_in 0 203134 station_ip 83.123.87.203 203134 port 38 203134 unique_id port 203134 remote_ip 10.8.0.242 203137 username sekonji0496 203137 mac 203137 bytes_out 0 203137 bytes_in 0 203137 station_ip 37.129.219.193 203137 port 36 203137 unique_id port 203137 remote_ip 10.8.0.66 203138 username sekonji0496 203138 mac 203138 bytes_out 0 203138 bytes_in 0 203138 station_ip 37.129.219.193 203138 port 56 203138 unique_id port 203138 remote_ip 10.8.1.98 203140 username barzegar 203140 mac 203140 bytes_out 8377 203140 bytes_in 25796 203140 station_ip 5.120.143.34 203140 port 56 203140 unique_id port 203140 remote_ip 10.8.1.6 203145 username yaghobi 203145 mac 203145 bytes_out 64513 203145 bytes_in 147316 203145 station_ip 83.123.34.214 203145 port 33 203145 unique_id port 203145 remote_ip 10.8.0.174 203152 username daryaei1233 203152 mac 203152 bytes_out 0 203152 bytes_in 0 203152 station_ip 83.123.87.203 203152 port 56 203152 unique_id port 203152 remote_ip 10.8.1.230 203154 username farhad3 203154 mac 203154 bytes_out 292854 203154 bytes_in 1741707 203154 station_ip 5.119.165.110 203154 port 63 203154 unique_id port 203154 remote_ip 10.8.1.38 203156 username sekonji0496 203156 mac 203156 bytes_out 0 203156 bytes_in 0 203156 station_ip 37.129.219.193 203156 port 41 203156 unique_id port 203156 remote_ip 10.8.0.66 203158 username khademi 203158 kill_reason Another user logged on this global unique id 203158 mac 203158 bytes_out 0 203158 bytes_in 0 203158 station_ip 37.129.212.3 203158 port 31 203158 unique_id port 203164 username sekonji0496 203164 mac 203164 bytes_out 0 203164 bytes_in 0 203164 station_ip 37.129.219.193 203164 port 33 203164 unique_id port 203164 remote_ip 10.8.0.66 203165 username sekonji0496 203165 mac 203165 bytes_out 0 203117 username sekonji0496 203117 mac 203117 bytes_out 0 203117 bytes_in 0 203117 station_ip 83.122.168.106 203117 port 63 203117 unique_id port 203117 remote_ip 10.8.1.98 203121 username teymori5660 203121 kill_reason Another user logged on this global unique id 203121 mac 203121 bytes_out 0 203121 bytes_in 0 203121 station_ip 5.120.176.63 203121 port 81 203121 unique_id port 203121 remote_ip 10.8.1.14 203122 username ayobi 203122 kill_reason Another user logged on this global unique id 203122 mac 203122 bytes_out 0 203122 bytes_in 0 203122 station_ip 37.27.2.2 203122 port 39 203122 unique_id port 203127 username saeed9658 203127 mac 203127 bytes_out 0 203127 bytes_in 0 203127 station_ip 5.119.245.65 203127 port 56 203127 unique_id port 203127 remote_ip 10.8.1.194 203130 username kalantary6037 203130 mac 203130 bytes_out 0 203130 bytes_in 0 203130 station_ip 37.129.142.193 203130 port 41 203130 unique_id port 203130 remote_ip 10.8.0.10 203131 username daryaei1233 203131 mac 203131 bytes_out 2189096 203131 bytes_in 31600889 203131 station_ip 83.123.87.203 203131 port 63 203131 unique_id port 203131 remote_ip 10.8.1.230 203133 username teymori5660 203133 kill_reason Another user logged on this global unique id 203133 mac 203133 bytes_out 0 203133 bytes_in 0 203133 station_ip 5.120.176.63 203133 port 81 203133 unique_id port 203142 username majidsarmast 203142 kill_reason Another user logged on this global unique id 203142 mac 203142 bytes_out 0 203142 bytes_in 0 203142 station_ip 83.123.146.159 203142 port 69 203142 unique_id port 203142 remote_ip 10.8.1.114 203144 username daryaei1233 203144 mac 203144 bytes_out 0 203144 bytes_in 0 203144 station_ip 83.123.87.203 203144 port 36 203144 unique_id port 203144 remote_ip 10.8.0.242 203148 username farhad3 203148 mac 203148 bytes_out 0 203148 bytes_in 0 203148 station_ip 5.119.165.110 203148 port 56 203148 unique_id port 203148 remote_ip 10.8.1.38 203150 username kalantary6037 203150 mac 203150 bytes_out 159143 203150 bytes_in 1303295 203150 station_ip 37.129.224.29 203150 port 33 203150 unique_id port 203150 remote_ip 10.8.0.10 203151 username jafari 203151 kill_reason Another user logged on this global unique id 203151 mac 203151 bytes_out 0 203151 bytes_in 0 203151 station_ip 89.32.108.77 203151 port 43 203151 unique_id port 203157 username sekonji0496 203157 mac 203157 bytes_out 0 203157 bytes_in 0 203157 station_ip 37.129.219.193 203157 port 33 203157 unique_id port 203157 remote_ip 10.8.0.66 203161 username majidsarmast 203161 mac 203161 bytes_out 0 203161 bytes_in 0 203161 station_ip 83.123.146.159 203161 port 69 203161 unique_id port 203163 username godarzi 203163 mac 203163 bytes_out 0 203163 bytes_in 0 203163 station_ip 5.202.2.157 203163 port 76 203163 unique_id port 203170 username amirzadeh1339 203170 unique_id port 203170 terminate_cause User-Request 203170 bytes_out 13801762 203170 bytes_in 371467169 203170 station_ip 37.27.39.11 203170 port 15729920 203170 nas_port_type Virtual 203170 remote_ip 5.5.5.255 203172 username daryaei1233 203172 mac 203172 bytes_out 0 203172 bytes_in 0 203172 station_ip 83.123.87.203 203172 port 63 203172 unique_id port 203172 remote_ip 10.8.1.230 203173 username daryaei1233 203173 mac 203173 bytes_out 0 203173 bytes_in 0 203173 station_ip 83.123.87.203 203173 port 44 203173 unique_id port 203173 remote_ip 10.8.0.242 203176 username milan 203176 kill_reason Another user logged on this global unique id 203176 mac 203176 bytes_out 0 203176 bytes_in 0 203176 station_ip 5.119.148.50 203139 bytes_out 6142452 203139 bytes_in 6830711 203139 station_ip 83.123.34.214 203139 port 41 203139 unique_id port 203139 remote_ip 10.8.0.174 203141 username farhad3 203141 mac 203141 bytes_out 11030349 203141 bytes_in 15337695 203141 station_ip 5.119.165.110 203141 port 79 203141 unique_id port 203141 remote_ip 10.8.1.38 203143 username saeed9658 203143 mac 203143 bytes_out 0 203143 bytes_in 0 203143 station_ip 5.119.245.65 203143 port 63 203143 unique_id port 203143 remote_ip 10.8.1.194 203146 username daryaei1233 203146 mac 203146 bytes_out 0 203146 bytes_in 0 203146 station_ip 83.123.87.203 203146 port 33 203146 unique_id port 203146 remote_ip 10.8.0.242 203147 username sekonji0496 203147 mac 203147 bytes_out 0 203147 bytes_in 0 203147 station_ip 37.129.219.193 203147 port 63 203147 unique_id port 203147 remote_ip 10.8.1.98 203149 username sekonji0496 203149 mac 203149 bytes_out 0 203149 bytes_in 0 203149 station_ip 37.129.219.193 203149 port 56 203149 unique_id port 203149 remote_ip 10.8.1.98 203153 username ayobi 203153 kill_reason Another user logged on this global unique id 203153 mac 203153 bytes_out 0 203153 bytes_in 0 203153 station_ip 37.27.2.2 203153 port 39 203153 unique_id port 203155 username daryaei1233 203155 mac 203155 bytes_out 0 203155 bytes_in 0 203155 station_ip 83.123.87.203 203155 port 33 203155 unique_id port 203155 remote_ip 10.8.0.242 203159 username daryaei1233 203159 kill_reason Maximum check online fails reached 203159 mac 203159 bytes_out 0 203159 bytes_in 0 203159 station_ip 83.123.87.203 203159 port 56 203159 unique_id port 203160 username barzegar 203160 mac 203160 bytes_out 0 203160 bytes_in 0 203160 station_ip 5.120.143.34 203160 port 63 203160 unique_id port 203160 remote_ip 10.8.1.6 203162 username saeed9658 203162 mac 203162 bytes_out 0 203162 bytes_in 0 203162 station_ip 5.119.245.65 203162 port 63 203162 unique_id port 203162 remote_ip 10.8.1.194 203167 username sekonji0496 203167 mac 203167 bytes_out 0 203167 bytes_in 0 203167 station_ip 37.129.219.193 203167 port 33 203167 unique_id port 203167 remote_ip 10.8.0.66 203168 username godarzi 203168 mac 203168 bytes_out 0 203168 bytes_in 0 203168 station_ip 5.202.2.157 203168 port 41 203168 unique_id port 203168 remote_ip 10.8.0.146 203169 username khademi 203169 kill_reason Another user logged on this global unique id 203169 mac 203169 bytes_out 0 203169 bytes_in 0 203169 station_ip 37.129.212.3 203169 port 31 203169 unique_id port 203174 username saeed9658 203174 mac 203174 bytes_out 0 203174 bytes_in 0 203174 station_ip 5.119.245.65 203174 port 63 203174 unique_id port 203174 remote_ip 10.8.1.194 203175 username saeeddamghani 203175 mac 203175 bytes_out 3963405 203175 bytes_in 41364897 203175 station_ip 217.60.218.24 203175 port 38 203175 unique_id port 203175 remote_ip 10.8.0.26 203177 username jafari 203177 kill_reason Another user logged on this global unique id 203177 mac 203177 bytes_out 0 203177 bytes_in 0 203177 station_ip 89.32.108.77 203177 port 43 203177 unique_id port 203178 username sekonji0496 203178 mac 203178 bytes_out 0 203178 bytes_in 0 203178 station_ip 37.129.219.193 203178 port 33 203178 unique_id port 203178 remote_ip 10.8.0.66 203184 username barzegar 203184 mac 203184 bytes_out 0 203184 bytes_in 0 203184 station_ip 5.120.143.34 203184 port 69 203184 unique_id port 203184 remote_ip 10.8.1.6 203185 username khademi 203185 kill_reason Another user logged on this global unique id 203185 mac 203165 bytes_in 0 203165 station_ip 37.129.219.193 203165 port 33 203165 unique_id port 203165 remote_ip 10.8.0.66 203166 username daryaei1233 203166 mac 203166 bytes_out 0 203166 bytes_in 0 203166 station_ip 83.123.87.203 203166 port 63 203166 unique_id port 203166 remote_ip 10.8.1.230 203171 username barzegar 203171 mac 203171 bytes_out 0 203171 bytes_in 0 203171 station_ip 5.120.143.34 203171 port 44 203171 unique_id port 203171 remote_ip 10.8.0.14 203179 username sekonji0496 203179 mac 203179 bytes_out 0 203179 bytes_in 0 203179 station_ip 37.129.219.193 203179 port 33 203179 unique_id port 203179 remote_ip 10.8.0.66 203180 username sekonji0496 203180 mac 203180 bytes_out 0 203180 bytes_in 0 203180 station_ip 37.129.219.193 203180 port 33 203180 unique_id port 203180 remote_ip 10.8.0.66 203181 username daryaei1233 203181 mac 203181 bytes_out 0 203181 bytes_in 0 203181 station_ip 83.123.87.203 203181 port 38 203181 unique_id port 203181 remote_ip 10.8.0.242 203186 username daryaei1233 203186 mac 203186 bytes_out 1595514 203186 bytes_in 36065919 203186 station_ip 83.123.87.203 203186 port 38 203186 unique_id port 203186 remote_ip 10.8.0.242 203192 username daryaei1233 203192 mac 203192 bytes_out 0 203192 bytes_in 0 203192 station_ip 83.123.87.203 203192 port 38 203192 unique_id port 203192 remote_ip 10.8.0.242 203200 username mosi 203200 kill_reason Another user logged on this global unique id 203200 mac 203200 bytes_out 0 203200 bytes_in 0 203200 station_ip 5.233.60.208 203200 port 28 203200 unique_id port 203200 remote_ip 10.8.0.106 203202 username khademi 203202 kill_reason Another user logged on this global unique id 203202 mac 203202 bytes_out 0 203202 bytes_in 0 203202 station_ip 37.129.212.3 203202 port 31 203202 unique_id port 203206 username daryaei1233 203206 mac 203206 bytes_out 0 203206 bytes_in 0 203206 station_ip 83.123.87.203 203206 port 41 203206 unique_id port 203206 remote_ip 10.8.0.242 203211 username sekonji0496 203211 mac 203211 bytes_out 908926 203211 bytes_in 7330177 203211 station_ip 37.129.219.193 203211 port 33 203211 unique_id port 203211 remote_ip 10.8.0.66 203212 username saeeddamghani 203212 mac 203212 bytes_out 0 203212 bytes_in 0 203212 station_ip 217.60.218.24 203212 port 63 203212 unique_id port 203212 remote_ip 10.8.1.66 203217 username alipour1506 203217 kill_reason Another user logged on this global unique id 203217 mac 203217 bytes_out 0 203217 bytes_in 0 203217 station_ip 151.234.23.177 203217 port 82 203217 unique_id port 203218 username jafari 203218 kill_reason Another user logged on this global unique id 203218 mac 203218 bytes_out 0 203218 bytes_in 0 203218 station_ip 89.32.108.77 203218 port 43 203218 unique_id port 203220 username daryaei1233 203220 kill_reason Maximum check online fails reached 203220 mac 203220 bytes_out 0 203220 bytes_in 0 203220 station_ip 83.123.87.203 203220 port 63 203220 unique_id port 203222 username kalantary6037 203222 mac 203222 bytes_out 0 203222 bytes_in 0 203222 station_ip 37.129.207.53 203222 port 39 203222 unique_id port 203222 remote_ip 10.8.0.10 203227 username hatami 203227 mac 203227 bytes_out 124141 203227 bytes_in 789358 203227 station_ip 151.235.111.197 203227 port 44 203227 unique_id port 203227 remote_ip 10.8.0.78 203228 username saeeddamghani 203228 kill_reason Maximum check online fails reached 203228 mac 203228 bytes_out 0 203228 bytes_in 0 203228 station_ip 217.60.218.24 203228 port 76 203228 unique_id port 203236 username teymori5660 203236 mac 203176 port 42 203176 unique_id port 203182 username saeeddamghani 203182 mac 203182 bytes_out 0 203182 bytes_in 0 203182 station_ip 217.60.218.24 203182 port 69 203182 unique_id port 203182 remote_ip 10.8.1.66 203183 username farhad3 203183 mac 203183 bytes_out 1278466 203183 bytes_in 16056773 203183 station_ip 5.119.165.110 203183 port 63 203183 unique_id port 203183 remote_ip 10.8.1.38 203187 username kalantary6037 203187 mac 203187 bytes_out 0 203187 bytes_in 0 203187 station_ip 37.129.212.61 203187 port 41 203187 unique_id port 203187 remote_ip 10.8.0.10 203189 username daryaei1233 203189 mac 203189 bytes_out 0 203189 bytes_in 0 203189 station_ip 83.123.87.203 203189 port 76 203189 unique_id port 203189 remote_ip 10.8.1.230 203190 username daryaei1233 203190 kill_reason Maximum check online fails reached 203190 mac 203190 bytes_out 0 203190 bytes_in 0 203190 station_ip 83.123.87.203 203190 port 69 203190 unique_id port 203194 username daryaei1233 203194 mac 203194 bytes_out 0 203194 bytes_in 0 203194 station_ip 83.123.87.203 203194 port 41 203194 unique_id port 203194 remote_ip 10.8.0.242 203196 username daryaei1233 203196 mac 203196 bytes_out 0 203196 bytes_in 0 203196 station_ip 83.123.87.203 203196 port 41 203196 unique_id port 203196 remote_ip 10.8.0.242 203198 username teymori5660 203198 mac 203198 bytes_out 0 203198 bytes_in 0 203198 station_ip 5.120.176.63 203198 port 79 203198 unique_id port 203198 remote_ip 10.8.1.14 203201 username barzegar 203201 mac 203201 bytes_out 0 203201 bytes_in 0 203201 station_ip 5.120.143.34 203201 port 81 203201 unique_id port 203201 remote_ip 10.8.1.6 203203 username jafari 203203 kill_reason Another user logged on this global unique id 203203 mac 203203 bytes_out 0 203203 bytes_in 0 203203 station_ip 89.32.108.77 203203 port 43 203203 unique_id port 203205 username daryaei1233 203205 mac 203205 bytes_out 0 203205 bytes_in 0 203205 station_ip 83.123.87.203 203205 port 38 203205 unique_id port 203205 remote_ip 10.8.0.242 203207 username daryaei1233 203207 kill_reason Maximum check online fails reached 203207 mac 203207 bytes_out 0 203207 bytes_in 0 203207 station_ip 83.123.87.203 203207 port 38 203207 unique_id port 203209 username teymori5660 203209 mac 203209 bytes_out 0 203209 bytes_in 0 203209 station_ip 5.120.176.63 203209 port 79 203209 unique_id port 203209 remote_ip 10.8.1.14 203214 username barzegar 203214 mac 203214 bytes_out 0 203214 bytes_in 0 203214 station_ip 5.120.143.34 203214 port 33 203214 unique_id port 203214 remote_ip 10.8.0.14 203215 username daryaei1233 203215 mac 203215 bytes_out 0 203215 bytes_in 0 203215 station_ip 83.123.87.203 203215 port 44 203215 unique_id port 203215 remote_ip 10.8.0.242 203219 username daryaei1233 203219 kill_reason Maximum number of concurrent logins reached 203219 mac 203219 bytes_out 0 203219 bytes_in 0 203219 station_ip 83.123.87.203 203219 port 44 203219 unique_id port 203230 username kalantary6037 203230 mac 203230 bytes_out 470334 203230 bytes_in 3175729 203230 station_ip 37.129.207.53 203230 port 39 203230 unique_id port 203230 remote_ip 10.8.0.10 203231 username barzegar 203231 mac 203231 bytes_out 0 203231 bytes_in 0 203231 station_ip 5.120.143.34 203231 port 83 203231 unique_id port 203231 remote_ip 10.8.1.6 203232 username jafari 203232 kill_reason Another user logged on this global unique id 203232 mac 203232 bytes_out 0 203232 bytes_in 0 203232 station_ip 89.32.108.77 203232 port 43 203232 unique_id port 203185 bytes_out 0 203185 bytes_in 0 203185 station_ip 37.129.212.3 203185 port 31 203185 unique_id port 203188 username saeed9658 203188 mac 203188 bytes_out 0 203188 bytes_in 0 203188 station_ip 5.119.245.65 203188 port 69 203188 unique_id port 203188 remote_ip 10.8.1.194 203191 username daryaei1233 203191 mac 203191 bytes_out 0 203191 bytes_in 0 203191 station_ip 83.123.87.203 203191 port 76 203191 unique_id port 203191 remote_ip 10.8.1.230 203193 username morteza4424 203193 mac 203193 bytes_out 0 203193 bytes_in 0 203193 station_ip 113.203.36.173 203193 port 38 203193 unique_id port 203193 remote_ip 10.8.0.70 203195 username teymori5660 203195 mac 203195 bytes_out 0 203195 bytes_in 0 203195 station_ip 5.120.176.63 203195 port 81 203195 unique_id port 203197 username kalantary6037 203197 mac 203197 bytes_out 111221 203197 bytes_in 602218 203197 station_ip 37.129.212.61 203197 port 38 203197 unique_id port 203197 remote_ip 10.8.0.10 203199 username daryaei1233 203199 mac 203199 bytes_out 0 203199 bytes_in 0 203199 station_ip 83.123.87.203 203199 port 38 203199 unique_id port 203199 remote_ip 10.8.0.242 203204 username daryaei1233 203204 mac 203204 bytes_out 0 203204 bytes_in 0 203204 station_ip 83.123.87.203 203204 port 38 203204 unique_id port 203204 remote_ip 10.8.0.242 203208 username daryaei1233 203208 mac 203208 bytes_out 0 203208 bytes_in 0 203208 station_ip 83.123.87.203 203208 port 41 203208 unique_id port 203208 remote_ip 10.8.0.242 203210 username ayobi 203210 mac 203210 bytes_out 0 203210 bytes_in 0 203210 station_ip 37.27.2.2 203210 port 39 203210 unique_id port 203213 username saeed9658 203213 mac 203213 bytes_out 2244630 203213 bytes_in 21406809 203213 station_ip 5.119.245.65 203213 port 76 203213 unique_id port 203213 remote_ip 10.8.1.194 203216 username daryaei1233 203216 mac 203216 bytes_out 0 203216 bytes_in 0 203216 station_ip 83.123.87.203 203216 port 33 203216 unique_id port 203216 remote_ip 10.8.0.242 203221 username daryaei1233 203221 kill_reason Maximum check online fails reached 203221 mac 203221 bytes_out 0 203221 bytes_in 0 203221 station_ip 83.123.87.203 203221 port 33 203221 unique_id port 203223 username barzegar 203223 mac 203223 bytes_out 0 203223 bytes_in 0 203223 station_ip 5.120.143.34 203223 port 76 203223 unique_id port 203223 remote_ip 10.8.1.6 203224 username nilufarrajaei 203224 mac 203224 bytes_out 0 203224 bytes_in 0 203224 station_ip 37.129.32.137 203224 port 36 203224 unique_id port 203224 remote_ip 10.8.0.94 203225 username saeeddamghani 203225 mac 203225 bytes_out 0 203225 bytes_in 0 203225 station_ip 217.60.218.24 203225 port 76 203225 unique_id port 203225 remote_ip 10.8.1.66 203226 username rezaei 203226 kill_reason Another user logged on this global unique id 203226 mac 203226 bytes_out 0 203226 bytes_in 0 203226 station_ip 5.119.163.137 203226 port 80 203226 unique_id port 203226 remote_ip 10.8.1.174 203229 username milan 203229 kill_reason Another user logged on this global unique id 203229 mac 203229 bytes_out 0 203229 bytes_in 0 203229 station_ip 5.119.148.50 203229 port 42 203229 unique_id port 203233 username saeeddamghani 203233 mac 203233 bytes_out 0 203233 bytes_in 0 203233 station_ip 217.60.218.24 203233 port 83 203233 unique_id port 203233 remote_ip 10.8.1.66 203234 username farhad3 203234 kill_reason Another user logged on this global unique id 203234 mac 203234 bytes_out 0 203234 bytes_in 0 203234 station_ip 5.119.165.110 203234 port 79 203234 unique_id port 203234 remote_ip 10.8.1.38 203235 username naeimeh 203235 mac 203235 bytes_out 2029140 203235 bytes_in 21621602 203235 station_ip 83.123.235.151 203235 port 36 203235 unique_id port 203235 remote_ip 10.8.0.202 203238 username kalantary6037 203238 kill_reason Maximum check online fails reached 203238 mac 203238 bytes_out 0 203238 bytes_in 0 203238 station_ip 37.129.162.201 203238 port 39 203238 unique_id port 203238 remote_ip 10.8.0.10 203240 username houshang 203240 mac 203240 bytes_out 0 203240 bytes_in 0 203240 station_ip 5.119.120.36 203240 port 83 203240 unique_id port 203240 remote_ip 10.8.1.134 203247 username farhad3 203247 mac 203247 bytes_out 0 203247 bytes_in 0 203247 station_ip 5.120.50.121 203247 port 79 203247 unique_id port 203247 remote_ip 10.8.1.38 203248 username barzegar 203248 mac 203248 bytes_out 0 203248 bytes_in 0 203248 station_ip 5.120.143.34 203248 port 79 203248 unique_id port 203248 remote_ip 10.8.1.6 203252 username saeeddamghani 203252 mac 203252 bytes_out 0 203252 bytes_in 0 203252 station_ip 217.60.218.24 203252 port 79 203252 unique_id port 203252 remote_ip 10.8.1.66 203254 username naeimeh 203254 mac 203254 bytes_out 3393339 203254 bytes_in 35661328 203254 station_ip 83.123.235.151 203254 port 36 203254 unique_id port 203254 remote_ip 10.8.0.202 203257 username farhad3 203257 kill_reason Another user logged on this global unique id 203257 mac 203257 bytes_out 0 203257 bytes_in 0 203257 station_ip 5.120.50.121 203257 port 79 203257 unique_id port 203257 remote_ip 10.8.1.38 203258 username barzegar 203258 mac 203258 bytes_out 0 203258 bytes_in 0 203258 station_ip 5.120.143.34 203258 port 80 203258 unique_id port 203258 remote_ip 10.8.1.6 203262 username saeeddamghani 203262 mac 203262 bytes_out 0 203262 bytes_in 0 203262 station_ip 217.60.218.24 203262 port 80 203262 unique_id port 203262 remote_ip 10.8.1.66 203265 username motamedi9772 203265 kill_reason Another user logged on this global unique id 203265 mac 203265 bytes_out 0 203265 bytes_in 0 203265 station_ip 83.122.253.232 203265 port 41 203265 unique_id port 203265 remote_ip 10.8.0.62 203268 username barzegar 203268 mac 203268 bytes_out 0 203268 bytes_in 0 203268 station_ip 5.120.143.34 203268 port 28 203268 unique_id port 203268 remote_ip 10.8.0.14 203270 username barzegar 203270 mac 203270 bytes_out 0 203270 bytes_in 0 203270 station_ip 5.120.143.34 203270 port 83 203270 unique_id port 203270 remote_ip 10.8.1.6 203271 username saeeddamghani 203271 mac 203271 bytes_out 1978324 203271 bytes_in 43355316 203271 station_ip 217.60.175.195 203271 port 80 203271 unique_id port 203271 remote_ip 10.8.1.66 203274 username yazdani6029 203274 mac 203274 bytes_out 0 203274 bytes_in 0 203274 station_ip 37.129.24.52 203274 port 28 203274 unique_id port 203274 remote_ip 10.8.0.250 203284 username barzegar 203284 mac 203284 bytes_out 0 203284 bytes_in 0 203284 station_ip 5.120.143.34 203284 port 83 203284 unique_id port 203284 remote_ip 10.8.1.6 203295 username kharazmi2920 203295 mac 203295 bytes_out 0 203295 bytes_in 0 203295 station_ip 83.123.60.195 203295 port 40 203295 unique_id port 203296 username yaghobi 203296 mac 203296 bytes_out 0 203296 bytes_in 0 203296 station_ip 83.123.63.50 203296 port 25 203296 unique_id port 203300 username motamedi9772 203300 mac 203300 bytes_out 0 203300 bytes_in 0 203300 station_ip 83.122.253.232 203300 port 39 203300 unique_id port 203236 bytes_out 1656008 203236 bytes_in 29132484 203236 station_ip 5.120.176.63 203236 port 81 203236 unique_id port 203236 remote_ip 10.8.1.14 203237 username barzegar 203237 mac 203237 bytes_out 0 203237 bytes_in 0 203237 station_ip 5.120.143.34 203237 port 83 203237 unique_id port 203237 remote_ip 10.8.1.6 203239 username arash 203239 mac 203239 bytes_out 73258 203239 bytes_in 105854 203239 station_ip 37.27.63.203 203239 port 84 203239 unique_id port 203239 remote_ip 10.8.1.54 203242 username barzegar 203242 mac 203242 bytes_out 0 203242 bytes_in 0 203242 station_ip 5.120.143.34 203242 port 83 203242 unique_id port 203242 remote_ip 10.8.1.6 203244 username mosi 203244 kill_reason Another user logged on this global unique id 203244 mac 203244 bytes_out 0 203244 bytes_in 0 203244 station_ip 5.233.60.208 203244 port 28 203244 unique_id port 203249 username rezaei 203249 mac 203249 bytes_out 0 203249 bytes_in 0 203249 station_ip 5.119.163.137 203249 port 80 203249 unique_id port 203256 username saeeddamghani 203256 mac 203256 bytes_out 0 203256 bytes_in 0 203256 station_ip 217.60.218.24 203256 port 80 203256 unique_id port 203256 remote_ip 10.8.1.66 203261 username barzegar 203261 mac 203261 bytes_out 0 203261 bytes_in 0 203261 station_ip 5.120.143.34 203261 port 80 203261 unique_id port 203261 remote_ip 10.8.1.6 203263 username farhad3 203263 kill_reason Another user logged on this global unique id 203263 mac 203263 bytes_out 0 203263 bytes_in 0 203263 station_ip 5.120.50.121 203263 port 79 203263 unique_id port 203264 username barzegar 203264 mac 203264 bytes_out 0 203264 bytes_in 0 203264 station_ip 5.120.143.34 203264 port 80 203264 unique_id port 203264 remote_ip 10.8.1.6 203266 username yazdani6029 203266 mac 203266 bytes_out 3734597 203266 bytes_in 55033232 203266 station_ip 37.129.24.52 203266 port 28 203266 unique_id port 203266 remote_ip 10.8.0.250 203273 username saeeddamghani 203273 mac 203273 bytes_out 0 203273 bytes_in 0 203273 station_ip 217.60.175.195 203273 port 83 203273 unique_id port 203273 remote_ip 10.8.1.66 203281 username barzegar 203281 mac 203281 bytes_out 0 203281 bytes_in 0 203281 station_ip 5.120.143.34 203281 port 83 203281 unique_id port 203281 remote_ip 10.8.1.6 203282 username saeeddamghani 203282 mac 203282 bytes_out 322065 203282 bytes_in 7084208 203282 station_ip 217.60.175.195 203282 port 84 203282 unique_id port 203282 remote_ip 10.8.1.66 203283 username barzegar 203283 mac 203283 bytes_out 0 203283 bytes_in 0 203283 station_ip 5.120.143.34 203283 port 28 203283 unique_id port 203283 remote_ip 10.8.0.14 203285 username saeeddamghani 203285 mac 203285 bytes_out 0 203285 bytes_in 0 203285 station_ip 217.60.175.195 203285 port 83 203285 unique_id port 203285 remote_ip 10.8.1.66 203286 username barzegar 203286 mac 203286 bytes_out 0 203286 bytes_in 0 203286 station_ip 5.120.143.34 203286 port 83 203286 unique_id port 203286 remote_ip 10.8.1.6 203287 username motamedi9772 203287 kill_reason Another user logged on this global unique id 203287 mac 203287 bytes_out 0 203287 bytes_in 0 203287 station_ip 83.122.253.232 203287 port 41 203287 unique_id port 203294 username barzegar 203294 mac 203294 bytes_out 0 203294 bytes_in 0 203294 station_ip 5.120.143.34 203294 port 84 203294 unique_id port 203294 remote_ip 10.8.1.6 203299 username barzegar 203299 mac 203299 bytes_out 0 203299 bytes_in 0 203299 station_ip 5.120.143.34 203299 port 84 203299 unique_id port 203241 username saeeddamghani 203241 mac 203241 bytes_out 0 203241 bytes_in 0 203241 station_ip 217.60.218.24 203241 port 85 203241 unique_id port 203241 remote_ip 10.8.1.66 203243 username jafari 203243 mac 203243 bytes_out 0 203243 bytes_in 0 203243 station_ip 89.32.108.77 203243 port 43 203243 unique_id port 203245 username farhad3 203245 mac 203245 bytes_out 0 203245 bytes_in 0 203245 station_ip 5.119.165.110 203245 port 79 203245 unique_id port 203246 username milan 203246 kill_reason Another user logged on this global unique id 203246 mac 203246 bytes_out 0 203246 bytes_in 0 203246 station_ip 5.119.148.50 203246 port 42 203246 unique_id port 203250 username mosi 203250 mac 203250 bytes_out 0 203250 bytes_in 0 203250 station_ip 5.233.60.208 203250 port 28 203250 unique_id port 203251 username saeeddamghani 203251 mac 203251 bytes_out 0 203251 bytes_in 0 203251 station_ip 217.60.218.24 203251 port 79 203251 unique_id port 203251 remote_ip 10.8.1.66 203253 username barzegar 203253 mac 203253 bytes_out 0 203253 bytes_in 0 203253 station_ip 5.120.143.34 203253 port 80 203253 unique_id port 203253 remote_ip 10.8.1.6 203255 username naeimeh 203255 mac 203255 bytes_out 0 203255 bytes_in 0 203255 station_ip 37.129.75.210 203255 port 28 203255 unique_id port 203255 remote_ip 10.8.0.202 203259 username kalantary6037 203259 mac 203259 bytes_out 1413577 203259 bytes_in 16476606 203259 station_ip 37.129.248.181 203259 port 36 203259 unique_id port 203259 remote_ip 10.8.0.10 203260 username saeeddamghani 203260 mac 203260 bytes_out 0 203260 bytes_in 0 203260 station_ip 217.60.218.24 203260 port 83 203260 unique_id port 203260 remote_ip 10.8.1.66 203267 username saeeddamghani 203267 mac 203267 bytes_out 0 203267 bytes_in 0 203267 station_ip 217.60.218.24 203267 port 80 203267 unique_id port 203267 remote_ip 10.8.1.66 203269 username farhad3 203269 kill_reason Another user logged on this global unique id 203269 mac 203269 bytes_out 0 203269 bytes_in 0 203269 station_ip 5.120.50.121 203269 port 79 203269 unique_id port 203272 username saeeddamghani 203272 kill_reason Maximum check online fails reached 203272 mac 203272 bytes_out 0 203272 bytes_in 0 203272 station_ip 217.60.175.195 203272 port 80 203272 unique_id port 203275 username barzegar 203275 mac 203275 bytes_out 0 203275 bytes_in 0 203275 station_ip 5.120.143.34 203275 port 83 203275 unique_id port 203275 remote_ip 10.8.1.6 203276 username mammad 203276 unique_id port 203276 terminate_cause User-Request 203276 bytes_out 3296206 203276 bytes_in 52899237 203276 station_ip 46.100.221.227 203276 port 15729923 203276 nas_port_type Virtual 203276 remote_ip 5.5.5.254 203277 username hatami 203277 mac 203277 bytes_out 0 203277 bytes_in 0 203277 station_ip 151.235.111.197 203277 port 28 203277 unique_id port 203277 remote_ip 10.8.0.78 203278 username barzegar 203278 mac 203278 bytes_out 0 203278 bytes_in 0 203278 station_ip 5.120.143.34 203278 port 28 203278 unique_id port 203278 remote_ip 10.8.0.14 203279 username farhad3 203279 kill_reason Another user logged on this global unique id 203279 mac 203279 bytes_out 0 203279 bytes_in 0 203279 station_ip 5.120.50.121 203279 port 79 203279 unique_id port 203280 username sabaghnezhad 203280 mac 203280 bytes_out 0 203280 bytes_in 0 203280 station_ip 83.123.41.55 203280 port 25 203280 unique_id port 203280 remote_ip 10.8.0.18 203288 username yaghobi 203288 kill_reason Another user logged on this global unique id 203288 mac 203288 bytes_out 0 203288 bytes_in 0 203288 station_ip 83.123.63.50 203288 port 25 203288 unique_id port 203288 remote_ip 10.8.0.174 203289 username mosi 203289 mac 203289 bytes_out 0 203289 bytes_in 0 203289 station_ip 5.233.60.208 203289 port 83 203289 unique_id port 203289 remote_ip 10.8.1.118 203290 username barzegar 203290 mac 203290 bytes_out 0 203290 bytes_in 0 203290 station_ip 5.120.143.34 203290 port 83 203290 unique_id port 203290 remote_ip 10.8.1.6 203291 username mosi 203291 mac 203291 bytes_out 0 203291 bytes_in 0 203291 station_ip 5.233.60.208 203291 port 83 203291 unique_id port 203291 remote_ip 10.8.1.118 203292 username kharazmi2920 203292 kill_reason Another user logged on this global unique id 203292 mac 203292 bytes_out 0 203292 bytes_in 0 203292 station_ip 83.123.60.195 203292 port 40 203292 unique_id port 203292 remote_ip 10.8.0.34 203293 username saeeddamghani 203293 mac 203293 bytes_out 0 203293 bytes_in 0 203293 station_ip 217.60.175.195 203293 port 84 203293 unique_id port 203293 remote_ip 10.8.1.66 203297 username motamedi9772 203297 mac 203297 bytes_out 0 203297 bytes_in 0 203297 station_ip 83.122.253.232 203297 port 41 203297 unique_id port 203298 username saeeddamghani 203298 mac 203298 bytes_out 0 203298 bytes_in 0 203298 station_ip 217.60.175.195 203298 port 85 203298 unique_id port 203298 remote_ip 10.8.1.66 203306 username barzegar 203306 mac 203306 bytes_out 0 203306 bytes_in 0 203306 station_ip 5.120.143.34 203306 port 84 203306 unique_id port 203306 remote_ip 10.8.1.6 203310 username farhad3 203310 mac 203310 bytes_out 0 203310 bytes_in 0 203310 station_ip 5.120.50.121 203310 port 85 203310 unique_id port 203310 remote_ip 10.8.1.38 203311 username hadibarzegar 203311 mac 203311 bytes_out 2331203 203311 bytes_in 28711080 203311 station_ip 5.120.115.115 203311 port 84 203311 unique_id port 203311 remote_ip 10.8.1.170 203313 username naeimeh 203313 mac 203313 bytes_out 2622514 203313 bytes_in 16354392 203313 station_ip 37.129.16.125 203313 port 40 203313 unique_id port 203313 remote_ip 10.8.0.202 203317 username barzegar 203317 mac 203317 bytes_out 0 203317 bytes_in 0 203317 station_ip 5.120.143.34 203317 port 39 203317 unique_id port 203317 remote_ip 10.8.0.14 203321 username barzegar 203321 mac 203321 bytes_out 0 203321 bytes_in 0 203321 station_ip 5.120.143.34 203321 port 79 203321 unique_id port 203321 remote_ip 10.8.1.6 203323 username nilufarrajaei 203323 mac 203323 bytes_out 2040091 203323 bytes_in 16490148 203323 station_ip 83.122.186.111 203323 port 28 203323 unique_id port 203323 remote_ip 10.8.0.94 203326 username sobhan 203326 unique_id port 203326 terminate_cause Lost-Carrier 203326 bytes_out 1404252 203326 bytes_in 2270558 203326 station_ip 5.120.32.79 203326 port 15729926 203326 nas_port_type Virtual 203326 remote_ip 5.5.5.255 203327 username barzegar 203327 mac 203327 bytes_out 0 203327 bytes_in 0 203327 station_ip 5.120.143.34 203327 port 79 203327 unique_id port 203327 remote_ip 10.8.1.6 203328 username barzegar 203328 mac 203328 bytes_out 0 203328 bytes_in 0 203328 station_ip 5.120.143.34 203328 port 79 203328 unique_id port 203328 remote_ip 10.8.1.6 203334 username saeeddamghani 203334 mac 203334 bytes_out 0 203334 bytes_in 0 203334 station_ip 217.60.175.195 203334 port 79 203334 unique_id port 203334 remote_ip 10.8.1.66 203337 username saeeddamghani 203337 mac 203337 bytes_out 0 203337 bytes_in 0 203337 station_ip 217.60.175.195 203299 remote_ip 10.8.1.6 203301 username sabaghnezhad 203301 mac 203301 bytes_out 0 203301 bytes_in 0 203301 station_ip 83.123.41.55 203301 port 36 203301 unique_id port 203301 remote_ip 10.8.0.18 203302 username farhad3 203302 kill_reason Another user logged on this global unique id 203302 mac 203302 bytes_out 0 203302 bytes_in 0 203302 station_ip 5.120.50.121 203302 port 79 203302 unique_id port 203304 username saeeddamghani 203304 mac 203304 bytes_out 0 203304 bytes_in 0 203304 station_ip 217.60.175.195 203304 port 36 203304 unique_id port 203304 remote_ip 10.8.0.26 203312 username barzegar 203312 mac 203312 bytes_out 0 203312 bytes_in 0 203312 station_ip 5.120.143.34 203312 port 79 203312 unique_id port 203312 remote_ip 10.8.1.6 203316 username fezealinaghi 203316 mac 203316 bytes_out 557895 203316 bytes_in 4429923 203316 station_ip 37.129.171.52 203316 port 39 203316 unique_id port 203316 remote_ip 10.8.0.98 203318 username barzegar 203318 mac 203318 bytes_out 0 203318 bytes_in 0 203318 station_ip 5.120.143.34 203318 port 79 203318 unique_id port 203318 remote_ip 10.8.1.6 203320 username yaghobi 203320 mac 203320 bytes_out 2299326 203320 bytes_in 28157663 203320 station_ip 83.123.23.46 203320 port 39 203320 unique_id port 203320 remote_ip 10.8.0.174 203324 username barzegar 203324 mac 203324 bytes_out 0 203324 bytes_in 0 203324 station_ip 5.120.143.34 203324 port 79 203324 unique_id port 203324 remote_ip 10.8.1.6 203325 username shahruz 203325 mac 203325 bytes_out 2156 203325 bytes_in 4433 203325 station_ip 83.122.163.124 203325 port 28 203325 unique_id port 203325 remote_ip 10.8.0.22 203333 username barzegar 203333 mac 203333 bytes_out 0 203333 bytes_in 0 203333 station_ip 5.120.143.34 203333 port 79 203333 unique_id port 203333 remote_ip 10.8.1.6 203335 username barzegar 203335 mac 203335 bytes_out 0 203335 bytes_in 0 203335 station_ip 5.120.143.34 203335 port 79 203335 unique_id port 203335 remote_ip 10.8.1.6 203340 username saeeddamghani 203340 mac 203340 bytes_out 0 203340 bytes_in 0 203340 station_ip 217.60.175.195 203340 port 28 203340 unique_id port 203340 remote_ip 10.8.0.26 203343 username barzegar 203343 mac 203343 bytes_out 0 203343 bytes_in 0 203343 station_ip 5.120.143.34 203343 port 79 203343 unique_id port 203343 remote_ip 10.8.1.6 203344 username barzegar 203344 mac 203344 bytes_out 0 203344 bytes_in 0 203344 station_ip 5.120.143.34 203344 port 79 203344 unique_id port 203344 remote_ip 10.8.1.6 203347 username barzegar 203347 mac 203347 bytes_out 0 203347 bytes_in 0 203347 station_ip 5.120.143.34 203347 port 79 203347 unique_id port 203347 remote_ip 10.8.1.6 203349 username saeeddamghani 203349 mac 203349 bytes_out 0 203349 bytes_in 0 203349 station_ip 217.60.175.195 203349 port 79 203349 unique_id port 203349 remote_ip 10.8.1.66 203353 username barzegar 203353 mac 203353 bytes_out 0 203353 bytes_in 0 203353 station_ip 5.120.143.34 203353 port 81 203353 unique_id port 203353 remote_ip 10.8.1.6 203354 username barzegar 203354 mac 203354 bytes_out 0 203354 bytes_in 0 203354 station_ip 5.120.143.34 203354 port 81 203354 unique_id port 203354 remote_ip 10.8.1.6 203355 username barzegar 203355 mac 203355 bytes_out 0 203355 bytes_in 0 203355 station_ip 5.120.143.34 203355 port 81 203355 unique_id port 203355 remote_ip 10.8.1.6 203356 username saeeddamghani 203356 mac 203356 bytes_out 0 203356 bytes_in 0 203300 remote_ip 10.8.0.62 203303 username barzegar 203303 mac 203303 bytes_out 0 203303 bytes_in 0 203303 station_ip 5.120.143.34 203303 port 84 203303 unique_id port 203303 remote_ip 10.8.1.6 203305 username naeimeh 203305 mac 203305 bytes_out 0 203305 bytes_in 0 203305 station_ip 37.129.16.125 203305 port 39 203305 unique_id port 203305 remote_ip 10.8.0.202 203307 username farhad3 203307 mac 203307 bytes_out 0 203307 bytes_in 0 203307 station_ip 5.120.50.121 203307 port 79 203307 unique_id port 203308 username saeeddamghani 203308 mac 203308 bytes_out 34670 203308 bytes_in 43845 203308 station_ip 217.60.175.195 203308 port 36 203308 unique_id port 203308 remote_ip 10.8.0.26 203309 username barzegar 203309 mac 203309 bytes_out 0 203309 bytes_in 0 203309 station_ip 5.120.143.34 203309 port 79 203309 unique_id port 203309 remote_ip 10.8.1.6 203314 username motamedi9772 203314 mac 203314 bytes_out 1019332 203314 bytes_in 5293348 203314 station_ip 83.122.218.124 203314 port 36 203314 unique_id port 203314 remote_ip 10.8.0.62 203315 username barzegar 203315 mac 203315 bytes_out 0 203315 bytes_in 0 203315 station_ip 5.120.143.34 203315 port 79 203315 unique_id port 203315 remote_ip 10.8.1.6 203319 username motamedi9772 203319 mac 203319 bytes_out 710918 203319 bytes_in 6334260 203319 station_ip 83.122.218.124 203319 port 36 203319 unique_id port 203319 remote_ip 10.8.0.62 203322 username alirezaza 203322 unique_id port 203322 terminate_cause Lost-Carrier 203322 bytes_out 1392702 203322 bytes_in 24937843 203322 station_ip 5.119.218.5 203322 port 15729925 203322 nas_port_type Virtual 203322 remote_ip 5.5.5.59 203329 username saeeddamghani 203329 mac 203329 bytes_out 0 203329 bytes_in 0 203329 station_ip 217.60.175.195 203329 port 79 203329 unique_id port 203329 remote_ip 10.8.1.66 203330 username barzegar 203330 mac 203330 bytes_out 0 203330 bytes_in 0 203330 station_ip 5.120.143.34 203330 port 79 203330 unique_id port 203330 remote_ip 10.8.1.6 203331 username barzegar 203331 mac 203331 bytes_out 0 203331 bytes_in 0 203331 station_ip 5.120.143.34 203331 port 79 203331 unique_id port 203331 remote_ip 10.8.1.6 203332 username saeeddamghani 203332 mac 203332 bytes_out 0 203332 bytes_in 0 203332 station_ip 217.60.175.195 203332 port 79 203332 unique_id port 203332 remote_ip 10.8.1.66 203336 username saeeddamghani 203336 mac 203336 bytes_out 0 203336 bytes_in 0 203336 station_ip 217.60.175.195 203336 port 79 203336 unique_id port 203336 remote_ip 10.8.1.66 203338 username barzegar 203338 mac 203338 bytes_out 0 203338 bytes_in 0 203338 station_ip 5.120.143.34 203338 port 79 203338 unique_id port 203338 remote_ip 10.8.1.6 203345 username saeeddamghani 203345 mac 203345 bytes_out 0 203345 bytes_in 0 203345 station_ip 217.60.175.195 203345 port 79 203345 unique_id port 203345 remote_ip 10.8.1.66 203348 username barzegar 203348 mac 203348 bytes_out 0 203348 bytes_in 0 203348 station_ip 5.120.143.34 203348 port 79 203348 unique_id port 203348 remote_ip 10.8.1.6 203350 username barzegar 203350 mac 203350 bytes_out 0 203350 bytes_in 0 203350 station_ip 5.120.143.34 203350 port 81 203350 unique_id port 203350 remote_ip 10.8.1.6 203351 username saeeddamghani 203351 kill_reason Maximum check online fails reached 203351 mac 203351 bytes_out 0 203351 bytes_in 0 203351 station_ip 217.60.175.195 203351 port 79 203351 unique_id port 203352 username barzegar 203352 mac 203352 bytes_out 0 203337 port 79 203337 unique_id port 203337 remote_ip 10.8.1.66 203339 username khalili2 203339 mac 203339 bytes_out 0 203339 bytes_in 0 203339 station_ip 5.119.211.108 203339 port 81 203339 unique_id port 203339 remote_ip 10.8.1.18 203341 username barzegar 203341 mac 203341 bytes_out 0 203341 bytes_in 0 203341 station_ip 5.120.143.34 203341 port 79 203341 unique_id port 203341 remote_ip 10.8.1.6 203342 username barzegar 203342 mac 203342 bytes_out 0 203342 bytes_in 0 203342 station_ip 5.120.143.34 203342 port 79 203342 unique_id port 203342 remote_ip 10.8.1.6 203346 username barzegar 203346 mac 203346 bytes_out 0 203346 bytes_in 0 203346 station_ip 5.120.143.34 203346 port 28 203346 unique_id port 203346 remote_ip 10.8.0.14 203356 station_ip 217.60.175.195 203356 port 81 203356 unique_id port 203356 remote_ip 10.8.1.66 203357 username barzegar 203357 mac 203357 bytes_out 0 203357 bytes_in 0 203357 station_ip 5.120.143.34 203357 port 28 203357 unique_id port 203357 remote_ip 10.8.0.14 203359 username saeeddamghani 203359 mac 203359 bytes_out 0 203359 bytes_in 0 203359 station_ip 217.60.175.195 203359 port 81 203359 unique_id port 203359 remote_ip 10.8.1.66 203361 username saeeddamghani 203361 mac 203361 bytes_out 0 203361 bytes_in 0 203361 station_ip 217.60.175.195 203361 port 84 203361 unique_id port 203361 remote_ip 10.8.1.66 203362 username barzegar 203362 mac 203362 bytes_out 0 203362 bytes_in 0 203362 station_ip 5.120.143.34 203362 port 81 203362 unique_id port 203362 remote_ip 10.8.1.6 203363 username barzegar 203363 mac 203363 bytes_out 0 203363 bytes_in 0 203363 station_ip 5.120.143.34 203363 port 81 203363 unique_id port 203363 remote_ip 10.8.1.6 203367 username barzegar 203367 mac 203367 bytes_out 0 203367 bytes_in 0 203367 station_ip 5.120.143.34 203367 port 28 203367 unique_id port 203367 remote_ip 10.8.0.14 203368 username saeeddamghani 203368 mac 203368 bytes_out 0 203368 bytes_in 0 203368 station_ip 217.60.175.195 203368 port 84 203368 unique_id port 203368 remote_ip 10.8.1.66 203369 username barzegar 203369 mac 203369 bytes_out 0 203369 bytes_in 0 203369 station_ip 5.120.143.34 203369 port 84 203369 unique_id port 203369 remote_ip 10.8.1.6 203370 username barzegar 203370 mac 203370 bytes_out 0 203370 bytes_in 0 203370 station_ip 5.120.143.34 203370 port 85 203370 unique_id port 203370 remote_ip 10.8.1.6 203371 username saeeddamghani 203371 mac 203371 bytes_out 0 203371 bytes_in 0 203371 station_ip 217.60.175.195 203371 port 84 203371 unique_id port 203371 remote_ip 10.8.1.66 203373 username sekonji0496 203373 mac 203373 bytes_out 0 203373 bytes_in 0 203373 station_ip 83.122.153.174 203373 port 28 203373 unique_id port 203373 remote_ip 10.8.0.66 203375 username barzegar 203375 mac 203375 bytes_out 0 203375 bytes_in 0 203375 station_ip 5.120.143.34 203375 port 84 203375 unique_id port 203375 remote_ip 10.8.1.6 203376 username barzegar 203376 mac 203376 bytes_out 0 203376 bytes_in 0 203376 station_ip 5.120.143.34 203376 port 28 203376 unique_id port 203376 remote_ip 10.8.0.14 203377 username barzegar 203377 mac 203377 bytes_out 0 203377 bytes_in 0 203377 station_ip 5.120.143.34 203377 port 39 203377 unique_id port 203377 remote_ip 10.8.0.14 203379 username kalantary6037 203379 mac 203379 bytes_out 585751 203379 bytes_in 2166864 203379 station_ip 37.129.254.37 203379 port 28 203379 unique_id port 203352 bytes_in 0 203352 station_ip 5.120.143.34 203352 port 81 203352 unique_id port 203352 remote_ip 10.8.1.6 203358 username barzegar 203358 mac 203358 bytes_out 0 203358 bytes_in 0 203358 station_ip 5.120.143.34 203358 port 81 203358 unique_id port 203358 remote_ip 10.8.1.6 203360 username barzegar 203360 mac 203360 bytes_out 0 203360 bytes_in 0 203360 station_ip 5.120.143.34 203360 port 81 203360 unique_id port 203360 remote_ip 10.8.1.6 203364 username barzegar 203364 mac 203364 bytes_out 0 203364 bytes_in 0 203364 station_ip 5.120.143.34 203364 port 81 203364 unique_id port 203364 remote_ip 10.8.1.6 203365 username saeeddamghani 203365 mac 203365 bytes_out 0 203365 bytes_in 0 203365 station_ip 217.60.175.195 203365 port 81 203365 unique_id port 203365 remote_ip 10.8.1.66 203366 username saeeddamghani 203366 kill_reason Maximum check online fails reached 203366 mac 203366 bytes_out 0 203366 bytes_in 0 203366 station_ip 217.60.175.195 203366 port 81 203366 unique_id port 203372 username barzegar 203372 mac 203372 bytes_out 0 203372 bytes_in 0 203372 station_ip 5.120.143.34 203372 port 28 203372 unique_id port 203372 remote_ip 10.8.0.14 203374 username barzegar 203374 mac 203374 bytes_out 0 203374 bytes_in 0 203374 station_ip 5.120.143.34 203374 port 28 203374 unique_id port 203374 remote_ip 10.8.0.14 203378 username barzegar 203378 mac 203378 bytes_out 0 203378 bytes_in 0 203378 station_ip 5.120.143.34 203378 port 85 203378 unique_id port 203378 remote_ip 10.8.1.6 203379 remote_ip 10.8.0.10 203380 username barzegar 203380 mac 203380 bytes_out 0 203380 bytes_in 0 203380 station_ip 5.120.143.34 203380 port 28 203380 unique_id port 203380 remote_ip 10.8.0.14 203381 username pourshad 203381 kill_reason Another user logged on this global unique id 203381 mac 203381 bytes_out 0 203381 bytes_in 0 203381 station_ip 5.120.217.98 203381 port 84 203381 unique_id port 203381 remote_ip 10.8.1.58 203382 username pourshad 203382 mac 203382 bytes_out 0 203382 bytes_in 0 203382 station_ip 5.120.217.98 203382 port 84 203382 unique_id port 203383 username barzegar 203383 mac 203383 bytes_out 0 203383 bytes_in 0 203383 station_ip 5.120.143.34 203383 port 85 203383 unique_id port 203383 remote_ip 10.8.1.6 203384 username pourshad 203384 kill_reason Another user logged on this global unique id 203384 mac 203384 bytes_out 0 203384 bytes_in 0 203384 station_ip 5.120.217.98 203384 port 84 203384 unique_id port 203384 remote_ip 10.8.1.58 203385 username barzegar 203385 mac 203385 bytes_out 0 203385 bytes_in 0 203385 station_ip 5.120.143.34 203385 port 85 203385 unique_id port 203385 remote_ip 10.8.1.6 203386 username milan 203386 mac 203386 bytes_out 0 203386 bytes_in 0 203386 station_ip 5.119.148.50 203386 port 42 203386 unique_id port 203387 username barzegar 203387 mac 203387 bytes_out 0 203387 bytes_in 0 203387 station_ip 5.120.143.34 203387 port 28 203387 unique_id port 203387 remote_ip 10.8.0.14 203388 username barzegar 203388 kill_reason Maximum check online fails reached 203388 mac 203388 bytes_out 0 203388 bytes_in 0 203388 station_ip 5.120.143.34 203388 port 85 203388 unique_id port 203389 username barzegar 203389 mac 203389 bytes_out 0 203389 bytes_in 0 203389 station_ip 5.120.143.34 203389 port 86 203389 unique_id port 203389 remote_ip 10.8.1.6 203390 username barzegar 203390 mac 203390 bytes_out 0 203390 bytes_in 0 203390 station_ip 5.120.143.34 203390 port 86 203390 unique_id port 203390 remote_ip 10.8.1.6 203391 username barzegar 203391 mac 203391 bytes_out 0 203391 bytes_in 0 203391 station_ip 5.120.143.34 203391 port 86 203391 unique_id port 203391 remote_ip 10.8.1.6 203392 username barzegar 203392 mac 203392 bytes_out 0 203392 bytes_in 0 203392 station_ip 5.120.143.34 203392 port 39 203392 unique_id port 203392 remote_ip 10.8.0.14 203397 username barzegar 203397 mac 203397 bytes_out 0 203397 bytes_in 0 203397 station_ip 5.120.143.34 203397 port 86 203397 unique_id port 203397 remote_ip 10.8.1.6 203402 username mosi 203402 mac 203402 bytes_out 17529 203402 bytes_in 14354 203402 station_ip 89.34.47.20 203402 port 86 203402 unique_id port 203402 remote_ip 10.8.1.118 203406 username meysam 203406 mac 203406 bytes_out 0 203406 bytes_in 0 203406 station_ip 5.119.207.74 203406 port 86 203406 unique_id port 203406 remote_ip 10.8.1.30 203410 username daryaei1233 203410 kill_reason Another user logged on this global unique id 203410 mac 203410 bytes_out 0 203410 bytes_in 0 203410 station_ip 83.123.87.203 203410 port 39 203410 unique_id port 203411 username daryaei1233 203411 mac 203411 bytes_out 0 203411 bytes_in 0 203411 station_ip 83.123.87.203 203411 port 39 203411 unique_id port 203414 username daryaei1233 203414 mac 203414 bytes_out 0 203414 bytes_in 0 203414 station_ip 83.123.87.203 203414 port 39 203414 unique_id port 203414 remote_ip 10.8.0.242 203416 username daryaei1233 203416 kill_reason Another user logged on this global unique id 203416 mac 203416 bytes_out 0 203416 bytes_in 0 203416 station_ip 83.123.87.203 203416 port 39 203416 unique_id port 203416 remote_ip 10.8.0.242 203418 username seyedrezaei2572 203418 mac 203418 bytes_out 2103982 203418 bytes_in 2080703 203418 station_ip 37.129.77.242 203418 port 28 203418 unique_id port 203418 remote_ip 10.8.0.186 203419 username sekonji0496 203419 mac 203419 bytes_out 0 203419 bytes_in 0 203419 station_ip 83.122.153.174 203419 port 28 203419 unique_id port 203419 remote_ip 10.8.0.66 203424 username daryaei1233 203424 mac 203424 bytes_out 0 203424 bytes_in 0 203424 station_ip 83.123.87.203 203424 port 39 203424 unique_id port 203426 username daryaei1233 203426 mac 203426 bytes_out 0 203426 bytes_in 0 203426 station_ip 83.123.87.203 203426 port 88 203426 unique_id port 203426 remote_ip 10.8.1.230 203429 username daryaei1233 203429 kill_reason Another user logged on this global unique id 203429 mac 203429 bytes_out 0 203429 bytes_in 0 203429 station_ip 83.123.87.203 203429 port 28 203429 unique_id port 203429 remote_ip 10.8.0.242 203433 username motamedi9772 203433 mac 203433 bytes_out 113027 203433 bytes_in 92311 203433 station_ip 83.122.189.248 203433 port 28 203433 unique_id port 203433 remote_ip 10.8.0.62 203434 username daryaei1233 203434 mac 203434 bytes_out 0 203434 bytes_in 0 203434 station_ip 83.123.87.203 203434 port 84 203434 unique_id port 203434 remote_ip 10.8.1.230 203438 username daryaei1233 203438 mac 203438 bytes_out 0 203438 bytes_in 0 203438 station_ip 83.123.87.203 203438 port 28 203438 unique_id port 203438 remote_ip 10.8.0.242 203444 username sekonji0496 203444 mac 203444 bytes_out 0 203444 bytes_in 0 203444 station_ip 83.122.153.174 203444 port 28 203444 unique_id port 203444 remote_ip 10.8.0.66 203445 username daryaei1233 203445 mac 203445 bytes_out 0 203445 bytes_in 0 203445 station_ip 83.123.87.203 203445 port 28 203445 unique_id port 203445 remote_ip 10.8.0.242 203446 username sekonji0496 203393 username barzegar 203393 mac 203393 bytes_out 0 203393 bytes_in 0 203393 station_ip 5.120.143.34 203393 port 86 203393 unique_id port 203393 remote_ip 10.8.1.6 203395 username mohammadjavad 203395 mac 203395 bytes_out 371062 203395 bytes_in 3357406 203395 station_ip 83.123.146.130 203395 port 28 203395 unique_id port 203395 remote_ip 10.8.0.58 203399 username barzegar 203399 mac 203399 bytes_out 0 203399 bytes_in 0 203399 station_ip 5.120.143.34 203399 port 86 203399 unique_id port 203399 remote_ip 10.8.1.6 203401 username barzegar 203401 mac 203401 bytes_out 0 203401 bytes_in 0 203401 station_ip 5.120.143.34 203401 port 83 203401 unique_id port 203401 remote_ip 10.8.1.6 203405 username mosi 203405 mac 203405 bytes_out 333080 203405 bytes_in 1742837 203405 station_ip 89.34.47.20 203405 port 83 203405 unique_id port 203405 remote_ip 10.8.1.118 203412 username daryaei1233 203412 mac 203412 bytes_out 0 203412 bytes_in 0 203412 station_ip 83.123.87.203 203412 port 39 203412 unique_id port 203412 remote_ip 10.8.0.242 203413 username daryaei1233 203413 mac 203413 bytes_out 0 203413 bytes_in 0 203413 station_ip 83.123.87.203 203413 port 39 203413 unique_id port 203413 remote_ip 10.8.0.242 203420 username sekonji0496 203420 mac 203420 bytes_out 0 203420 bytes_in 0 203420 station_ip 83.122.153.174 203420 port 86 203420 unique_id port 203420 remote_ip 10.8.1.98 203425 username godarzi 203425 kill_reason Another user logged on this global unique id 203425 mac 203425 bytes_out 0 203425 bytes_in 0 203425 station_ip 5.202.2.157 203425 port 83 203425 unique_id port 203425 remote_ip 10.8.1.78 203441 username nilufarrajaei 203441 mac 203441 bytes_out 1946001 203441 bytes_in 17715940 203441 station_ip 83.122.186.111 203441 port 87 203441 unique_id port 203441 remote_ip 10.8.1.138 203443 username daryaei1233 203443 mac 203443 bytes_out 0 203443 bytes_in 0 203443 station_ip 83.123.87.203 203443 port 28 203443 unique_id port 203443 remote_ip 10.8.0.242 203461 username sekonji0496 203461 mac 203461 bytes_out 0 203461 bytes_in 0 203461 station_ip 83.122.153.174 203461 port 90 203461 unique_id port 203461 remote_ip 10.8.1.98 203463 username daryaei1233 203463 mac 203463 bytes_out 0 203463 bytes_in 0 203463 station_ip 83.123.87.203 203463 port 89 203463 unique_id port 203463 remote_ip 10.8.1.230 203464 username daryaei1233 203464 mac 203464 bytes_out 0 203464 bytes_in 0 203464 station_ip 83.123.87.203 203464 port 36 203464 unique_id port 203464 remote_ip 10.8.0.242 203466 username jafari 203466 kill_reason Another user logged on this global unique id 203466 mac 203466 bytes_out 0 203466 bytes_in 0 203466 station_ip 37.137.41.209 203466 port 87 203466 unique_id port 203466 remote_ip 10.8.1.126 203468 username pourshad 203468 kill_reason Another user logged on this global unique id 203468 mac 203468 bytes_out 0 203468 bytes_in 0 203468 station_ip 5.120.208.174 203468 port 88 203468 unique_id port 203468 remote_ip 10.8.1.58 203469 username jafari 203469 mac 203469 bytes_out 0 203469 bytes_in 0 203469 station_ip 37.137.41.209 203469 port 87 203469 unique_id port 203470 username daryaei1233 203470 mac 203470 bytes_out 0 203470 bytes_in 0 203470 station_ip 83.123.87.203 203470 port 39 203470 unique_id port 203470 remote_ip 10.8.0.242 203472 username sekonji0496 203472 mac 203472 bytes_out 0 203472 bytes_in 0 203472 station_ip 83.122.153.174 203472 port 40 203472 unique_id port 203472 remote_ip 10.8.0.66 203394 username barzegar 203394 mac 203394 bytes_out 0 203394 bytes_in 0 203394 station_ip 5.120.143.34 203394 port 86 203394 unique_id port 203394 remote_ip 10.8.1.6 203396 username kalantary6037 203396 kill_reason Another user logged on this global unique id 203396 mac 203396 bytes_out 0 203396 bytes_in 0 203396 station_ip 37.129.141.53 203396 port 28 203396 unique_id port 203398 username kalantary6037 203398 kill_reason Maximum check online fails reached 203398 mac 203398 bytes_out 0 203398 bytes_in 0 203398 station_ip 37.129.141.53 203398 port 28 203398 unique_id port 203400 username mosi 203400 mac 203400 bytes_out 0 203400 bytes_in 0 203400 station_ip 5.233.60.208 203400 port 83 203400 unique_id port 203400 remote_ip 10.8.1.118 203403 username barzegar 203403 mac 203403 bytes_out 0 203403 bytes_in 0 203403 station_ip 5.120.143.34 203403 port 86 203403 unique_id port 203403 remote_ip 10.8.1.6 203404 username barzegar 203404 mac 203404 bytes_out 0 203404 bytes_in 0 203404 station_ip 5.120.143.34 203404 port 39 203404 unique_id port 203404 remote_ip 10.8.0.14 203407 username barzegar 203407 mac 203407 bytes_out 0 203407 bytes_in 0 203407 station_ip 5.120.143.34 203407 port 39 203407 unique_id port 203407 remote_ip 10.8.0.14 203408 username daryaei1233 203408 kill_reason Another user logged on this global unique id 203408 mac 203408 bytes_out 0 203408 bytes_in 0 203408 station_ip 83.123.87.203 203408 port 39 203408 unique_id port 203408 remote_ip 10.8.0.242 203409 username daryaei1233 203409 kill_reason Another user logged on this global unique id 203409 mac 203409 bytes_out 0 203409 bytes_in 0 203409 station_ip 83.123.87.203 203409 port 39 203409 unique_id port 203415 username daryaei1233 203415 mac 203415 bytes_out 0 203415 bytes_in 0 203415 station_ip 83.123.87.203 203415 port 39 203415 unique_id port 203415 remote_ip 10.8.0.242 203417 username sekonji0496 203417 mac 203417 bytes_out 0 203417 bytes_in 0 203417 station_ip 83.122.153.174 203417 port 40 203417 unique_id port 203417 remote_ip 10.8.0.66 203421 username nilufarrajaei 203421 mac 203421 bytes_out 4267565 203421 bytes_in 34780673 203421 station_ip 83.122.186.111 203421 port 36 203421 unique_id port 203421 remote_ip 10.8.0.94 203422 username sekonji0496 203422 mac 203422 bytes_out 0 203422 bytes_in 0 203422 station_ip 83.122.153.174 203422 port 88 203422 unique_id port 203422 remote_ip 10.8.1.98 203423 username sekonji0496 203423 mac 203423 bytes_out 0 203423 bytes_in 0 203423 station_ip 83.122.153.174 203423 port 88 203423 unique_id port 203423 remote_ip 10.8.1.98 203427 username daryaei1233 203427 mac 203427 bytes_out 0 203427 bytes_in 0 203427 station_ip 83.123.87.203 203427 port 28 203427 unique_id port 203427 remote_ip 10.8.0.242 203428 username sekonji0496 203428 mac 203428 bytes_out 0 203428 bytes_in 0 203428 station_ip 83.122.153.174 203428 port 88 203428 unique_id port 203428 remote_ip 10.8.1.98 203430 username daryaei1233 203430 mac 203430 bytes_out 0 203430 bytes_in 0 203430 station_ip 83.123.87.203 203430 port 28 203430 unique_id port 203431 username sekonji0496 203431 mac 203431 bytes_out 0 203431 bytes_in 0 203431 station_ip 83.122.153.174 203431 port 36 203431 unique_id port 203431 remote_ip 10.8.0.66 203432 username pourshad 203432 mac 203432 bytes_out 0 203432 bytes_in 0 203432 station_ip 5.120.217.98 203432 port 84 203432 unique_id port 203435 username daryaei1233 203435 mac 203435 bytes_out 0 203435 bytes_in 0 203435 station_ip 83.123.87.203 203435 port 28 203435 unique_id port 203435 remote_ip 10.8.0.242 203436 username daryaei1233 203436 mac 203436 bytes_out 0 203436 bytes_in 0 203436 station_ip 83.123.87.203 203436 port 28 203436 unique_id port 203436 remote_ip 10.8.0.242 203437 username daryaei1233 203437 mac 203437 bytes_out 0 203437 bytes_in 0 203437 station_ip 83.123.87.203 203437 port 28 203437 unique_id port 203437 remote_ip 10.8.0.242 203439 username sekonji0496 203439 mac 203439 bytes_out 0 203439 bytes_in 0 203439 station_ip 83.122.153.174 203439 port 28 203439 unique_id port 203439 remote_ip 10.8.0.66 203440 username daryaei1233 203440 mac 203440 bytes_out 0 203440 bytes_in 0 203440 station_ip 83.123.87.203 203440 port 28 203440 unique_id port 203440 remote_ip 10.8.0.242 203442 username daryaei1233 203442 mac 203442 bytes_out 0 203442 bytes_in 0 203442 station_ip 83.123.87.203 203442 port 28 203442 unique_id port 203442 remote_ip 10.8.0.242 203452 username sekonji0496 203452 mac 203452 bytes_out 0 203452 bytes_in 0 203452 station_ip 83.122.153.174 203452 port 36 203452 unique_id port 203452 remote_ip 10.8.0.66 203453 username daryaei1233 203453 mac 203453 bytes_out 0 203453 bytes_in 0 203453 station_ip 83.123.87.203 203453 port 89 203453 unique_id port 203453 remote_ip 10.8.1.230 203455 username daryaei1233 203455 mac 203455 bytes_out 0 203455 bytes_in 0 203455 station_ip 83.123.87.203 203455 port 36 203455 unique_id port 203455 remote_ip 10.8.0.242 203456 username sekonji0496 203456 mac 203456 bytes_out 0 203456 bytes_in 0 203456 station_ip 83.122.153.174 203456 port 36 203456 unique_id port 203456 remote_ip 10.8.0.66 203457 username sekonji0496 203457 mac 203457 bytes_out 0 203457 bytes_in 0 203457 station_ip 83.122.153.174 203457 port 36 203457 unique_id port 203457 remote_ip 10.8.0.66 203462 username daryaei1233 203462 mac 203462 bytes_out 0 203462 bytes_in 0 203462 station_ip 83.123.87.203 203462 port 89 203462 unique_id port 203462 remote_ip 10.8.1.230 203465 username sekonji0496 203465 mac 203465 bytes_out 0 203465 bytes_in 0 203465 station_ip 83.122.153.174 203465 port 89 203465 unique_id port 203465 remote_ip 10.8.1.98 203476 username daryaei1233 203476 mac 203476 bytes_out 0 203476 bytes_in 0 203476 station_ip 83.123.87.203 203476 port 36 203476 unique_id port 203476 remote_ip 10.8.0.242 203478 username sekonji0496 203478 mac 203478 bytes_out 0 203478 bytes_in 0 203478 station_ip 83.122.153.174 203478 port 40 203478 unique_id port 203478 remote_ip 10.8.0.66 203480 username sekonji0496 203480 mac 203480 bytes_out 0 203480 bytes_in 0 203480 station_ip 83.122.153.174 203480 port 36 203480 unique_id port 203480 remote_ip 10.8.0.66 203483 username alipour1506 203483 mac 203483 bytes_out 0 203483 bytes_in 0 203483 station_ip 151.234.23.177 203483 port 82 203483 unique_id port 203486 username alipour1506 203486 mac 203486 bytes_out 11443 203486 bytes_in 12005 203486 station_ip 83.123.121.190 203486 port 82 203486 unique_id port 203486 remote_ip 10.8.1.86 203487 username daryaei1233 203487 mac 203487 bytes_out 0 203487 bytes_in 0 203487 station_ip 83.123.87.203 203487 port 36 203487 unique_id port 203487 remote_ip 10.8.0.242 203489 username daryaei1233 203489 mac 203489 bytes_out 2588 203489 bytes_in 4865 203489 station_ip 83.123.87.203 203489 port 36 203489 unique_id port 203446 mac 203446 bytes_out 0 203446 bytes_in 0 203446 station_ip 83.122.153.174 203446 port 28 203446 unique_id port 203446 remote_ip 10.8.0.66 203447 username daryaei1233 203447 mac 203447 bytes_out 0 203447 bytes_in 0 203447 station_ip 83.123.87.203 203447 port 89 203447 unique_id port 203447 remote_ip 10.8.1.230 203448 username sekonji0496 203448 mac 203448 bytes_out 0 203448 bytes_in 0 203448 station_ip 83.122.153.174 203448 port 28 203448 unique_id port 203448 remote_ip 10.8.0.66 203449 username sekonji0496 203449 mac 203449 bytes_out 0 203449 bytes_in 0 203449 station_ip 83.122.153.174 203449 port 36 203449 unique_id port 203449 remote_ip 10.8.0.66 203450 username sekonji0496 203450 mac 203450 bytes_out 0 203450 bytes_in 0 203450 station_ip 83.122.153.174 203450 port 36 203450 unique_id port 203450 remote_ip 10.8.0.66 203451 username sekonji0496 203451 mac 203451 bytes_out 0 203451 bytes_in 0 203451 station_ip 83.122.153.174 203451 port 36 203451 unique_id port 203451 remote_ip 10.8.0.66 203454 username sekonji0496 203454 mac 203454 bytes_out 0 203454 bytes_in 0 203454 station_ip 83.122.153.174 203454 port 36 203454 unique_id port 203454 remote_ip 10.8.0.66 203458 username daryaei1233 203458 mac 203458 bytes_out 0 203458 bytes_in 0 203458 station_ip 83.123.87.203 203458 port 36 203458 unique_id port 203458 remote_ip 10.8.0.242 203459 username sekonji0496 203459 mac 203459 bytes_out 0 203459 bytes_in 0 203459 station_ip 83.122.153.174 203459 port 89 203459 unique_id port 203459 remote_ip 10.8.1.98 203460 username sekonji0496 203460 mac 203460 bytes_out 0 203460 bytes_in 0 203460 station_ip 83.122.153.174 203460 port 89 203460 unique_id port 203460 remote_ip 10.8.1.98 203467 username daryaei1233 203467 mac 203467 bytes_out 0 203467 bytes_in 0 203467 station_ip 83.123.87.203 203467 port 36 203467 unique_id port 203467 remote_ip 10.8.0.242 203471 username sekonji0496 203471 mac 203471 bytes_out 0 203471 bytes_in 0 203471 station_ip 83.122.153.174 203471 port 36 203471 unique_id port 203471 remote_ip 10.8.0.66 203473 username daryaei1233 203473 mac 203473 bytes_out 0 203473 bytes_in 0 203473 station_ip 83.123.87.203 203473 port 39 203473 unique_id port 203473 remote_ip 10.8.0.242 203474 username sekonji0496 203474 mac 203474 bytes_out 0 203474 bytes_in 0 203474 station_ip 83.122.153.174 203474 port 36 203474 unique_id port 203474 remote_ip 10.8.0.66 203479 username daryaei1233 203479 mac 203479 bytes_out 4157 203479 bytes_in 12138 203479 station_ip 83.123.87.203 203479 port 36 203479 unique_id port 203479 remote_ip 10.8.0.242 203481 username godarzi 203481 kill_reason Another user logged on this global unique id 203481 mac 203481 bytes_out 0 203481 bytes_in 0 203481 station_ip 5.202.2.157 203481 port 83 203481 unique_id port 203484 username sekonji0496 203484 mac 203484 bytes_out 0 203484 bytes_in 0 203484 station_ip 83.122.153.174 203484 port 36 203484 unique_id port 203484 remote_ip 10.8.0.66 203485 username daryaei1233 203485 mac 203485 bytes_out 0 203485 bytes_in 0 203485 station_ip 83.123.87.203 203485 port 87 203485 unique_id port 203485 remote_ip 10.8.1.230 203488 username nilufarrajaei 203488 kill_reason Another user logged on this global unique id 203488 mac 203488 bytes_out 0 203488 bytes_in 0 203488 station_ip 83.122.186.111 203488 port 84 203488 unique_id port 203488 remote_ip 10.8.1.138 203494 username daryaei1233 203494 mac 203494 bytes_out 0 203475 username sekonji0496 203475 mac 203475 bytes_out 0 203475 bytes_in 0 203475 station_ip 83.122.153.174 203475 port 39 203475 unique_id port 203475 remote_ip 10.8.0.66 203477 username khademi 203477 kill_reason Another user logged on this global unique id 203477 mac 203477 bytes_out 0 203477 bytes_in 0 203477 station_ip 37.129.212.3 203477 port 31 203477 unique_id port 203482 username sekonji0496 203482 mac 203482 bytes_out 0 203482 bytes_in 0 203482 station_ip 83.122.153.174 203482 port 36 203482 unique_id port 203482 remote_ip 10.8.0.66 203490 username daryaei1233 203490 mac 203490 bytes_out 0 203490 bytes_in 0 203490 station_ip 83.123.87.203 203490 port 36 203490 unique_id port 203490 remote_ip 10.8.0.242 203491 username nilufarrajaei 203491 mac 203491 bytes_out 0 203491 bytes_in 0 203491 station_ip 83.122.186.111 203491 port 84 203491 unique_id port 203495 username daryaei1233 203495 mac 203495 bytes_out 0 203495 bytes_in 0 203495 station_ip 83.123.87.203 203495 port 41 203495 unique_id port 203495 remote_ip 10.8.0.242 203498 username kharazmi2920 203498 mac 203498 bytes_out 0 203498 bytes_in 0 203498 station_ip 83.123.60.195 203498 port 39 203498 unique_id port 203498 remote_ip 10.8.0.34 203502 username daryaei1233 203502 mac 203502 bytes_out 0 203502 bytes_in 0 203502 station_ip 83.123.87.203 203502 port 90 203502 unique_id port 203502 remote_ip 10.8.1.230 203504 username sekonji0496 203504 mac 203504 bytes_out 0 203504 bytes_in 0 203504 station_ip 83.122.153.174 203504 port 89 203504 unique_id port 203504 remote_ip 10.8.1.98 203505 username sekonji0496 203505 kill_reason Maximum check online fails reached 203505 mac 203505 bytes_out 0 203505 bytes_in 0 203505 station_ip 83.122.153.174 203505 port 39 203505 unique_id port 203508 username motamedi9772 203508 mac 203508 bytes_out 0 203508 bytes_in 0 203508 station_ip 83.122.150.64 203508 port 36 203508 unique_id port 203508 remote_ip 10.8.0.62 203518 username sekonji0496 203518 mac 203518 bytes_out 0 203518 bytes_in 0 203518 station_ip 83.122.153.174 203518 port 90 203518 unique_id port 203518 remote_ip 10.8.1.98 203522 username daryaei1233 203522 mac 203522 bytes_out 0 203522 bytes_in 0 203522 station_ip 83.123.87.203 203522 port 87 203522 unique_id port 203522 remote_ip 10.8.1.230 203530 username sekonji0496 203530 kill_reason Maximum check online fails reached 203530 mac 203530 bytes_out 0 203530 bytes_in 0 203530 station_ip 83.122.153.174 203530 port 87 203530 unique_id port 203533 username sekonji0496 203533 mac 203533 bytes_out 2506 203533 bytes_in 4368 203533 station_ip 83.122.153.174 203533 port 42 203533 unique_id port 203533 remote_ip 10.8.0.66 203534 username godarzi 203534 mac 203534 bytes_out 0 203534 bytes_in 0 203534 station_ip 5.202.2.157 203534 port 83 203534 unique_id port 203535 username sobhan 203535 unique_id port 203535 terminate_cause Lost-Carrier 203535 bytes_out 3942238 203535 bytes_in 99420888 203535 station_ip 46.100.218.255 203535 port 15729933 203535 nas_port_type Virtual 203535 remote_ip 5.5.5.255 203537 username daryaei1233 203537 mac 203537 bytes_out 0 203537 bytes_in 0 203537 station_ip 83.123.87.203 203537 port 83 203537 unique_id port 203537 remote_ip 10.8.1.230 203538 username daryaei1233 203538 mac 203538 bytes_out 0 203538 bytes_in 0 203538 station_ip 83.123.87.203 203538 port 91 203538 unique_id port 203538 remote_ip 10.8.1.230 203540 username daryaei1233 203540 mac 203540 bytes_out 0 203489 remote_ip 10.8.0.242 203492 username sekonji0496 203492 mac 203492 bytes_out 0 203492 bytes_in 0 203492 station_ip 83.122.153.174 203492 port 40 203492 unique_id port 203492 remote_ip 10.8.0.66 203493 username daryaei1233 203493 mac 203493 bytes_out 0 203493 bytes_in 0 203493 station_ip 83.123.87.203 203493 port 36 203493 unique_id port 203493 remote_ip 10.8.0.242 203501 username sekonji0496 203501 mac 203501 bytes_out 0 203501 bytes_in 0 203501 station_ip 83.122.153.174 203501 port 87 203501 unique_id port 203501 remote_ip 10.8.1.98 203510 username daryaei1233 203510 mac 203510 bytes_out 0 203510 bytes_in 0 203510 station_ip 83.123.87.203 203510 port 36 203510 unique_id port 203510 remote_ip 10.8.0.242 203511 username sekonji0496 203511 mac 203511 bytes_out 0 203511 bytes_in 0 203511 station_ip 83.122.153.174 203511 port 89 203511 unique_id port 203511 remote_ip 10.8.1.98 203512 username sekonji0496 203512 mac 203512 bytes_out 0 203512 bytes_in 0 203512 station_ip 83.122.153.174 203512 port 89 203512 unique_id port 203512 remote_ip 10.8.1.98 203515 username daryaei1233 203515 mac 203515 bytes_out 0 203515 bytes_in 0 203515 station_ip 83.123.87.203 203515 port 36 203515 unique_id port 203515 remote_ip 10.8.0.242 203524 username daryaei1233 203524 mac 203524 bytes_out 0 203524 bytes_in 0 203524 station_ip 83.123.87.203 203524 port 42 203524 unique_id port 203524 remote_ip 10.8.0.242 203525 username daryaei1233 203525 mac 203525 bytes_out 0 203525 bytes_in 0 203525 station_ip 83.123.87.203 203525 port 42 203525 unique_id port 203525 remote_ip 10.8.0.242 203526 username sekonji0496 203526 mac 203526 bytes_out 0 203526 bytes_in 0 203526 station_ip 83.122.153.174 203526 port 42 203526 unique_id port 203526 remote_ip 10.8.0.66 203528 username sekonji0496 203528 mac 203528 bytes_out 0 203528 bytes_in 0 203528 station_ip 83.122.153.174 203528 port 42 203528 unique_id port 203528 remote_ip 10.8.0.66 203536 username saeed9658 203536 mac 203536 bytes_out 0 203536 bytes_in 0 203536 station_ip 5.119.245.65 203536 port 83 203536 unique_id port 203536 remote_ip 10.8.1.194 203542 username daryaei1233 203542 mac 203542 bytes_out 0 203542 bytes_in 0 203542 station_ip 83.123.87.203 203542 port 42 203542 unique_id port 203542 remote_ip 10.8.0.242 203543 username farhad3 203543 mac 203543 bytes_out 143386 203543 bytes_in 594924 203543 station_ip 5.120.50.121 203543 port 89 203543 unique_id port 203543 remote_ip 10.8.1.38 203550 username daryaei1233 203550 kill_reason Maximum check online fails reached 203550 mac 203550 bytes_out 0 203550 bytes_in 0 203550 station_ip 83.123.87.203 203550 port 89 203550 unique_id port 203554 username daryaei1233 203554 mac 203554 bytes_out 0 203554 bytes_in 0 203554 station_ip 83.123.87.203 203554 port 42 203554 unique_id port 203554 remote_ip 10.8.0.242 203556 username daryaei1233 203556 mac 203556 bytes_out 0 203556 bytes_in 0 203556 station_ip 83.123.87.203 203556 port 42 203556 unique_id port 203556 remote_ip 10.8.0.242 203557 username hadibarzegar 203557 mac 203557 bytes_out 21965 203557 bytes_in 42322 203557 station_ip 5.120.115.115 203557 port 92 203557 unique_id port 203557 remote_ip 10.8.1.170 203565 username daryaei1233 203565 mac 203565 bytes_out 0 203565 bytes_in 0 203565 station_ip 83.123.87.203 203565 port 44 203565 unique_id port 203565 remote_ip 10.8.0.242 203567 username daryaei1233 203567 mac 203494 bytes_in 0 203494 station_ip 83.123.87.203 203494 port 41 203494 unique_id port 203494 remote_ip 10.8.0.242 203496 username daryaei1233 203496 mac 203496 bytes_out 0 203496 bytes_in 0 203496 station_ip 83.123.87.203 203496 port 41 203496 unique_id port 203496 remote_ip 10.8.0.242 203497 username daryaei1233 203497 mac 203497 bytes_out 0 203497 bytes_in 0 203497 station_ip 83.123.87.203 203497 port 41 203497 unique_id port 203497 remote_ip 10.8.0.242 203499 username motamedi9772 203499 mac 203499 bytes_out 35273 203499 bytes_in 160829 203499 station_ip 83.122.150.64 203499 port 36 203499 unique_id port 203499 remote_ip 10.8.0.62 203500 username sekonji0496 203500 mac 203500 bytes_out 0 203500 bytes_in 0 203500 station_ip 83.122.153.174 203500 port 87 203500 unique_id port 203500 remote_ip 10.8.1.98 203503 username daryaei1233 203503 mac 203503 bytes_out 0 203503 bytes_in 0 203503 station_ip 83.123.87.203 203503 port 36 203503 unique_id port 203503 remote_ip 10.8.0.242 203506 username sekonji0496 203506 mac 203506 bytes_out 0 203506 bytes_in 0 203506 station_ip 83.122.153.174 203506 port 89 203506 unique_id port 203506 remote_ip 10.8.1.98 203507 username sekonji0496 203507 mac 203507 bytes_out 0 203507 bytes_in 0 203507 station_ip 83.122.153.174 203507 port 89 203507 unique_id port 203507 remote_ip 10.8.1.98 203509 username daryaei1233 203509 mac 203509 bytes_out 0 203509 bytes_in 0 203509 station_ip 83.123.87.203 203509 port 42 203509 unique_id port 203509 remote_ip 10.8.0.242 203513 username daryaei1233 203513 mac 203513 bytes_out 0 203513 bytes_in 0 203513 station_ip 83.123.87.203 203513 port 36 203513 unique_id port 203513 remote_ip 10.8.0.242 203514 username daryaei1233 203514 mac 203514 bytes_out 0 203514 bytes_in 0 203514 station_ip 83.123.87.203 203514 port 36 203514 unique_id port 203514 remote_ip 10.8.0.242 203516 username daryaei1233 203516 mac 203516 bytes_out 0 203516 bytes_in 0 203516 station_ip 83.123.87.203 203516 port 36 203516 unique_id port 203516 remote_ip 10.8.0.242 203517 username sekonji0496 203517 mac 203517 bytes_out 0 203517 bytes_in 0 203517 station_ip 83.122.153.174 203517 port 90 203517 unique_id port 203517 remote_ip 10.8.1.98 203519 username sekonji0496 203519 mac 203519 bytes_out 0 203519 bytes_in 0 203519 station_ip 83.122.153.174 203519 port 90 203519 unique_id port 203519 remote_ip 10.8.1.98 203520 username yarmohamadi7916 203520 mac 203520 bytes_out 1700878 203520 bytes_in 4175543 203520 station_ip 5.119.95.130 203520 port 87 203520 unique_id port 203520 remote_ip 10.8.1.154 203521 username daryaei1233 203521 kill_reason Maximum check online fails reached 203521 mac 203521 bytes_out 0 203521 bytes_in 0 203521 station_ip 83.123.87.203 203521 port 36 203521 unique_id port 203523 username daryaei1233 203523 mac 203523 bytes_out 0 203523 bytes_in 0 203523 station_ip 83.123.87.203 203523 port 42 203523 unique_id port 203523 remote_ip 10.8.0.242 203527 username nilufarrajaei 203527 kill_reason Another user logged on this global unique id 203527 mac 203527 bytes_out 0 203527 bytes_in 0 203527 station_ip 83.122.186.111 203527 port 84 203527 unique_id port 203527 remote_ip 10.8.1.138 203529 username saeed9658 203529 mac 203529 bytes_out 0 203529 bytes_in 0 203529 station_ip 5.119.245.65 203529 port 89 203529 unique_id port 203529 remote_ip 10.8.1.194 203531 username saeed9658 203531 mac 203531 bytes_out 0 203531 bytes_in 0 203531 station_ip 5.119.245.65 203531 port 89 203531 unique_id port 203531 remote_ip 10.8.1.194 203532 username daryaei1233 203532 mac 203532 bytes_out 0 203532 bytes_in 0 203532 station_ip 83.123.87.203 203532 port 43 203532 unique_id port 203532 remote_ip 10.8.0.242 203539 username daryaei1233 203539 mac 203539 bytes_out 0 203539 bytes_in 0 203539 station_ip 83.123.87.203 203539 port 42 203539 unique_id port 203539 remote_ip 10.8.0.242 203541 username farhad3 203541 mac 203541 bytes_out 971875 203541 bytes_in 4066055 203541 station_ip 5.120.50.121 203541 port 89 203541 unique_id port 203541 remote_ip 10.8.1.38 203544 username khademi 203544 kill_reason Another user logged on this global unique id 203544 mac 203544 bytes_out 0 203544 bytes_in 0 203544 station_ip 37.129.212.3 203544 port 31 203544 unique_id port 203545 username daryaei1233 203545 mac 203545 bytes_out 0 203545 bytes_in 0 203545 station_ip 83.123.87.203 203545 port 42 203545 unique_id port 203545 remote_ip 10.8.0.242 203546 username saeed9658 203546 mac 203546 bytes_out 0 203546 bytes_in 0 203546 station_ip 5.119.245.65 203546 port 91 203546 unique_id port 203546 remote_ip 10.8.1.194 203548 username daryaei1233 203548 mac 203548 bytes_out 0 203548 bytes_in 0 203548 station_ip 83.123.87.203 203548 port 42 203548 unique_id port 203548 remote_ip 10.8.0.242 203551 username daryaei1233 203551 mac 203551 bytes_out 0 203551 bytes_in 0 203551 station_ip 83.123.87.203 203551 port 42 203551 unique_id port 203551 remote_ip 10.8.0.242 203560 username daryaei1233 203560 mac 203560 bytes_out 0 203560 bytes_in 0 203560 station_ip 83.123.87.203 203560 port 83 203560 unique_id port 203560 remote_ip 10.8.1.230 203561 username daryaei1233 203561 mac 203561 bytes_out 0 203561 bytes_in 0 203561 station_ip 83.123.87.203 203561 port 42 203561 unique_id port 203561 remote_ip 10.8.0.242 203562 username farhad3 203562 mac 203562 bytes_out 632560 203562 bytes_in 3038819 203562 station_ip 5.120.177.61 203562 port 91 203562 unique_id port 203562 remote_ip 10.8.1.38 203569 username fezealinaghi 203569 mac 203569 bytes_out 0 203569 bytes_in 0 203569 station_ip 37.129.184.52 203569 port 43 203569 unique_id port 203569 remote_ip 10.8.0.98 203573 username daryaei1233 203573 mac 203573 bytes_out 0 203573 bytes_in 0 203573 station_ip 83.123.87.203 203573 port 43 203573 unique_id port 203573 remote_ip 10.8.0.242 203574 username alipour1506 203574 mac 203574 bytes_out 221643 203574 bytes_in 515597 203574 station_ip 83.123.121.190 203574 port 82 203574 unique_id port 203574 remote_ip 10.8.1.86 203576 username daryaei1233 203576 mac 203576 bytes_out 0 203576 bytes_in 0 203576 station_ip 83.123.87.203 203576 port 46 203576 unique_id port 203576 remote_ip 10.8.0.242 203584 username yaghobi 203584 mac 203584 bytes_out 0 203584 bytes_in 0 203584 station_ip 37.129.11.137 203584 port 43 203584 unique_id port 203584 remote_ip 10.8.0.174 203585 username seyedrezaei2572 203585 mac 203585 bytes_out 0 203585 bytes_in 0 203585 station_ip 37.129.22.42 203585 port 41 203585 unique_id port 203585 remote_ip 10.8.0.186 203587 username mohammadjavad 203587 mac 203587 bytes_out 0 203587 bytes_in 0 203587 station_ip 83.123.174.126 203587 port 28 203587 unique_id port 203587 remote_ip 10.8.0.58 203591 username khademi 203591 kill_reason Another user logged on this global unique id 203591 mac 203591 bytes_out 0 203591 bytes_in 0 203591 station_ip 37.129.212.3 203540 bytes_in 0 203540 station_ip 83.123.87.203 203540 port 42 203540 unique_id port 203540 remote_ip 10.8.0.242 203547 username daryaei1233 203547 mac 203547 bytes_out 0 203547 bytes_in 0 203547 station_ip 83.123.87.203 203547 port 89 203547 unique_id port 203547 remote_ip 10.8.1.230 203549 username pourshad 203549 mac 203549 bytes_out 0 203549 bytes_in 0 203549 station_ip 5.120.208.174 203549 port 88 203549 unique_id port 203552 username daryaei1233 203552 mac 203552 bytes_out 0 203552 bytes_in 0 203552 station_ip 83.123.87.203 203552 port 42 203552 unique_id port 203552 remote_ip 10.8.0.242 203553 username nilufarrajaei 203553 kill_reason Another user logged on this global unique id 203553 mac 203553 bytes_out 0 203553 bytes_in 0 203553 station_ip 83.122.186.111 203553 port 84 203553 unique_id port 203555 username godarzi 203555 mac 203555 bytes_out 0 203555 bytes_in 0 203555 station_ip 5.202.2.157 203555 port 83 203555 unique_id port 203555 remote_ip 10.8.1.78 203558 username daryaei1233 203558 mac 203558 bytes_out 0 203558 bytes_in 0 203558 station_ip 83.123.87.203 203558 port 42 203558 unique_id port 203558 remote_ip 10.8.0.242 203559 username saeed9658 203559 mac 203559 bytes_out 0 203559 bytes_in 0 203559 station_ip 5.119.245.65 203559 port 83 203559 unique_id port 203559 remote_ip 10.8.1.194 203563 username daryaei1233 203563 mac 203563 bytes_out 0 203563 bytes_in 0 203563 station_ip 83.123.87.203 203563 port 42 203563 unique_id port 203563 remote_ip 10.8.0.242 203564 username nilufarrajaei 203564 mac 203564 bytes_out 0 203564 bytes_in 0 203564 station_ip 83.122.186.111 203564 port 84 203564 unique_id port 203566 username rajaei 203566 mac 203566 bytes_out 0 203566 bytes_in 0 203566 station_ip 37.137.42.111 203566 port 91 203566 unique_id port 203566 remote_ip 10.8.1.146 203568 username daryaei1233 203568 mac 203568 bytes_out 0 203568 bytes_in 0 203568 station_ip 83.123.87.203 203568 port 45 203568 unique_id port 203568 remote_ip 10.8.0.242 203575 username nilufarrajaei 203575 kill_reason Another user logged on this global unique id 203575 mac 203575 bytes_out 0 203575 bytes_in 0 203575 station_ip 83.122.186.111 203575 port 92 203575 unique_id port 203575 remote_ip 10.8.1.138 203577 username fezealinaghi 203577 mac 203577 bytes_out 2114581 203577 bytes_in 27209192 203577 station_ip 37.129.184.52 203577 port 45 203577 unique_id port 203577 remote_ip 10.8.0.98 203578 username daryaei1233 203578 mac 203578 bytes_out 0 203578 bytes_in 0 203578 station_ip 83.123.87.203 203578 port 45 203578 unique_id port 203578 remote_ip 10.8.0.242 203583 username daryaei1233 203583 mac 203583 bytes_out 0 203583 bytes_in 0 203583 station_ip 83.123.87.203 203583 port 45 203583 unique_id port 203583 remote_ip 10.8.0.242 203589 username daryaei1233 203589 mac 203589 bytes_out 0 203589 bytes_in 0 203589 station_ip 83.123.87.203 203589 port 43 203589 unique_id port 203589 remote_ip 10.8.0.242 203595 username motamedi9772 203595 mac 203595 bytes_out 0 203595 bytes_in 0 203595 station_ip 83.122.187.248 203595 port 42 203595 unique_id port 203595 remote_ip 10.8.0.62 203601 username motamedi9772 203601 mac 203601 bytes_out 0 203601 bytes_in 0 203601 station_ip 83.122.187.248 203601 port 45 203601 unique_id port 203601 remote_ip 10.8.0.62 203602 username motamedi9772 203602 mac 203602 bytes_out 0 203602 bytes_in 0 203602 station_ip 83.122.187.248 203602 port 43 203567 bytes_out 0 203567 bytes_in 0 203567 station_ip 83.123.87.203 203567 port 44 203567 unique_id port 203567 remote_ip 10.8.0.242 203570 username khademi 203570 kill_reason Another user logged on this global unique id 203570 mac 203570 bytes_out 0 203570 bytes_in 0 203570 station_ip 37.129.212.3 203570 port 31 203570 unique_id port 203571 username daryaei1233 203571 mac 203571 bytes_out 0 203571 bytes_in 0 203571 station_ip 83.123.87.203 203571 port 91 203571 unique_id port 203571 remote_ip 10.8.1.230 203572 username saeed9658 203572 mac 203572 bytes_out 0 203572 bytes_in 0 203572 station_ip 5.119.245.65 203572 port 91 203572 unique_id port 203572 remote_ip 10.8.1.194 203579 username dortaj3792 203579 mac 203579 bytes_out 0 203579 bytes_in 0 203579 station_ip 5.119.217.7 203579 port 44 203579 unique_id port 203579 remote_ip 10.8.0.30 203580 username farhad3 203580 kill_reason Another user logged on this global unique id 203580 mac 203580 bytes_out 0 203580 bytes_in 0 203580 station_ip 5.120.177.61 203580 port 83 203580 unique_id port 203580 remote_ip 10.8.1.38 203581 username daryaei1233 203581 kill_reason Maximum check online fails reached 203581 mac 203581 bytes_out 0 203581 bytes_in 0 203581 station_ip 83.123.87.203 203581 port 44 203581 unique_id port 203582 username daryaei1233 203582 mac 203582 bytes_out 0 203582 bytes_in 0 203582 station_ip 83.123.87.203 203582 port 93 203582 unique_id port 203582 remote_ip 10.8.1.230 203586 username alipour1506 203586 mac 203586 bytes_out 8005 203586 bytes_in 13766 203586 station_ip 83.123.121.190 203586 port 82 203586 unique_id port 203586 remote_ip 10.8.1.86 203588 username saeed9658 203588 mac 203588 bytes_out 0 203588 bytes_in 0 203588 station_ip 5.119.245.65 203588 port 82 203588 unique_id port 203588 remote_ip 10.8.1.194 203590 username nilufarrajaei 203590 mac 203590 bytes_out 0 203590 bytes_in 0 203590 station_ip 83.122.186.111 203590 port 92 203590 unique_id port 203593 username alipour1506 203593 mac 203593 bytes_out 0 203593 bytes_in 0 203593 station_ip 83.123.121.190 203593 port 82 203593 unique_id port 203593 remote_ip 10.8.1.86 203594 username motamedi9772 203594 mac 203594 bytes_out 0 203594 bytes_in 0 203594 station_ip 83.122.187.248 203594 port 42 203594 unique_id port 203594 remote_ip 10.8.0.62 203598 username motamedi9772 203598 mac 203598 bytes_out 0 203598 bytes_in 0 203598 station_ip 83.122.187.248 203598 port 42 203598 unique_id port 203598 remote_ip 10.8.0.62 203599 username saeed9658 203599 mac 203599 bytes_out 0 203599 bytes_in 0 203599 station_ip 5.119.245.65 203599 port 94 203599 unique_id port 203599 remote_ip 10.8.1.194 203603 username farhad3 203603 mac 203603 bytes_out 0 203603 bytes_in 0 203603 station_ip 5.120.177.61 203603 port 93 203603 unique_id port 203603 remote_ip 10.8.1.38 203604 username motamedi9772 203604 mac 203604 bytes_out 0 203604 bytes_in 0 203604 station_ip 83.122.187.248 203604 port 43 203604 unique_id port 203604 remote_ip 10.8.0.62 203605 username farhad3 203605 mac 203605 bytes_out 0 203605 bytes_in 0 203605 station_ip 5.120.177.61 203605 port 93 203605 unique_id port 203605 remote_ip 10.8.1.38 203606 username farhad3 203606 mac 203606 bytes_out 0 203606 bytes_in 0 203606 station_ip 5.120.177.61 203606 port 93 203606 unique_id port 203606 remote_ip 10.8.1.38 203614 username fezealinaghi 203614 kill_reason Another user logged on this global unique id 203614 mac 203614 bytes_out 0 203614 bytes_in 0 203591 port 31 203591 unique_id port 203592 username motamedi9772 203592 mac 203592 bytes_out 0 203592 bytes_in 0 203592 station_ip 83.122.187.248 203592 port 42 203592 unique_id port 203592 remote_ip 10.8.0.62 203596 username farhad3 203596 mac 203596 bytes_out 0 203596 bytes_in 0 203596 station_ip 5.120.177.61 203596 port 83 203596 unique_id port 203597 username motamedi9772 203597 mac 203597 bytes_out 0 203597 bytes_in 0 203597 station_ip 83.122.187.248 203597 port 42 203597 unique_id port 203597 remote_ip 10.8.0.62 203600 username yaghobi 203600 mac 203600 bytes_out 0 203600 bytes_in 0 203600 station_ip 37.129.126.237 203600 port 43 203600 unique_id port 203600 remote_ip 10.8.0.174 203607 username rajaei 203607 mac 203607 bytes_out 0 203607 bytes_in 0 203607 station_ip 37.137.42.111 203607 port 91 203607 unique_id port 203607 remote_ip 10.8.1.146 203617 username hadibarzegar 203617 mac 203617 bytes_out 0 203617 bytes_in 0 203617 station_ip 5.120.115.115 203617 port 93 203617 unique_id port 203617 remote_ip 10.8.1.170 203621 username hosseine 203621 mac 203621 bytes_out 0 203621 bytes_in 0 203621 station_ip 37.129.176.58 203621 port 42 203621 unique_id port 203621 remote_ip 10.8.0.118 203624 username barzegar8595 203624 mac 203624 bytes_out 172706 203624 bytes_in 538846 203624 station_ip 46.225.208.230 203624 port 47 203624 unique_id port 203624 remote_ip 10.8.0.82 203626 username motamedi9772 203626 mac 203626 bytes_out 0 203626 bytes_in 0 203626 station_ip 83.122.187.248 203626 port 42 203626 unique_id port 203626 remote_ip 10.8.0.62 203628 username fezealinaghi 203628 mac 203628 bytes_out 0 203628 bytes_in 0 203628 station_ip 37.129.191.125 203628 port 46 203628 unique_id port 203628 remote_ip 10.8.0.98 203633 username saeed9658 203633 mac 203633 bytes_out 0 203633 bytes_in 0 203633 station_ip 5.119.245.65 203633 port 93 203633 unique_id port 203633 remote_ip 10.8.1.194 203634 username saeed9658 203634 kill_reason Relative expiration date has reached 203634 mac 203634 bytes_out 0 203634 bytes_in 0 203634 station_ip 5.119.245.65 203634 port 93 203634 unique_id port 203641 username mosi 203641 kill_reason Another user logged on this global unique id 203641 mac 203641 bytes_out 0 203641 bytes_in 0 203641 station_ip 151.235.106.19 203641 port 83 203641 unique_id port 203644 username daryaei1233 203644 mac 203644 bytes_out 0 203644 bytes_in 0 203644 station_ip 83.123.87.203 203644 port 46 203644 unique_id port 203644 remote_ip 10.8.0.242 203646 username meysam 203646 kill_reason Another user logged on this global unique id 203646 mac 203646 bytes_out 0 203646 bytes_in 0 203646 station_ip 188.158.49.142 203646 port 94 203646 unique_id port 203648 username daryaei1233 203648 mac 203648 bytes_out 0 203648 bytes_in 0 203648 station_ip 83.123.87.203 203648 port 48 203648 unique_id port 203648 remote_ip 10.8.0.242 203649 username yaghobi 203649 mac 203649 bytes_out 0 203649 bytes_in 0 203649 station_ip 37.129.15.249 203649 port 47 203649 unique_id port 203649 remote_ip 10.8.0.174 203650 username daryaei1233 203650 mac 203650 bytes_out 0 203650 bytes_in 0 203650 station_ip 83.123.87.203 203650 port 46 203650 unique_id port 203650 remote_ip 10.8.0.242 203652 username esmaeilkazemi 203652 mac 203652 bytes_out 0 203652 bytes_in 0 203652 station_ip 46.249.124.78 203652 port 47 203652 unique_id port 203652 remote_ip 10.8.0.86 203654 username daryaei1233 203654 mac 203602 unique_id port 203602 remote_ip 10.8.0.62 203608 username khademi 203608 kill_reason Another user logged on this global unique id 203608 mac 203608 bytes_out 0 203608 bytes_in 0 203608 station_ip 37.129.212.3 203608 port 31 203608 unique_id port 203609 username kharazmi2920 203609 mac 203609 bytes_out 0 203609 bytes_in 0 203609 station_ip 83.123.60.195 203609 port 41 203609 unique_id port 203609 remote_ip 10.8.0.34 203610 username farhad3 203610 mac 203610 bytes_out 0 203610 bytes_in 0 203610 station_ip 5.120.177.61 203610 port 91 203610 unique_id port 203610 remote_ip 10.8.1.38 203611 username nilufarrajaei 203611 mac 203611 bytes_out 14546470 203611 bytes_in 3144800 203611 station_ip 83.122.186.111 203611 port 92 203611 unique_id port 203611 remote_ip 10.8.1.138 203612 username motamedi9772 203612 mac 203612 bytes_out 0 203612 bytes_in 0 203612 station_ip 83.122.187.248 203612 port 41 203612 unique_id port 203612 remote_ip 10.8.0.62 203613 username motamedi9772 203613 mac 203613 bytes_out 0 203613 bytes_in 0 203613 station_ip 83.122.187.248 203613 port 41 203613 unique_id port 203613 remote_ip 10.8.0.62 203618 username saeed9658 203618 mac 203618 bytes_out 0 203618 bytes_in 0 203618 station_ip 5.119.245.65 203618 port 94 203618 unique_id port 203618 remote_ip 10.8.1.194 203619 username fezealinaghi 203619 mac 203619 bytes_out 0 203619 bytes_in 0 203619 station_ip 37.129.229.220 203619 port 28 203619 unique_id port 203620 username mosi 203620 kill_reason Another user logged on this global unique id 203620 mac 203620 bytes_out 0 203620 bytes_in 0 203620 station_ip 151.235.106.19 203620 port 83 203620 unique_id port 203620 remote_ip 10.8.1.118 203622 username saeed9658 203622 mac 203622 bytes_out 0 203622 bytes_in 0 203622 station_ip 5.119.245.65 203622 port 93 203622 unique_id port 203622 remote_ip 10.8.1.194 203625 username godarzi 203625 kill_reason Another user logged on this global unique id 203625 mac 203625 bytes_out 0 203625 bytes_in 0 203625 station_ip 5.202.2.157 203625 port 84 203625 unique_id port 203625 remote_ip 10.8.1.78 203627 username yaghobi 203627 mac 203627 bytes_out 0 203627 bytes_in 0 203627 station_ip 37.129.15.249 203627 port 28 203627 unique_id port 203627 remote_ip 10.8.0.174 203630 username mosi 203630 kill_reason Another user logged on this global unique id 203630 mac 203630 bytes_out 0 203630 bytes_in 0 203630 station_ip 151.235.106.19 203630 port 83 203630 unique_id port 203632 username khademi 203632 kill_reason Another user logged on this global unique id 203632 mac 203632 bytes_out 0 203632 bytes_in 0 203632 station_ip 37.129.212.3 203632 port 31 203632 unique_id port 203637 username meysam 203637 kill_reason Another user logged on this global unique id 203637 mac 203637 bytes_out 0 203637 bytes_in 0 203637 station_ip 188.158.49.142 203637 port 94 203637 unique_id port 203637 remote_ip 10.8.1.30 203640 username dortaj3792 203640 mac 203640 bytes_out 0 203640 bytes_in 0 203640 station_ip 5.119.217.7 203640 port 41 203640 unique_id port 203640 remote_ip 10.8.0.30 203642 username yaghobi 203642 mac 203642 bytes_out 0 203642 bytes_in 0 203642 station_ip 37.129.15.249 203642 port 46 203642 unique_id port 203642 remote_ip 10.8.0.174 203645 username esmaeilkazemi 203645 mac 203645 bytes_out 3291 203645 bytes_in 20272 203645 station_ip 46.249.124.78 203645 port 48 203645 unique_id port 203645 remote_ip 10.8.0.86 203651 username mosi 203651 kill_reason Another user logged on this global unique id 203651 mac 203651 bytes_out 0 203614 station_ip 37.129.229.220 203614 port 28 203614 unique_id port 203614 remote_ip 10.8.0.98 203615 username mohammadjavad 203615 mac 203615 bytes_out 25307 203615 bytes_in 42028 203615 station_ip 83.123.199.102 203615 port 46 203615 unique_id port 203615 remote_ip 10.8.0.58 203616 username motamedi9772 203616 mac 203616 bytes_out 0 203616 bytes_in 0 203616 station_ip 83.122.187.248 203616 port 46 203616 unique_id port 203616 remote_ip 10.8.0.62 203623 username motamedi9772 203623 mac 203623 bytes_out 0 203623 bytes_in 0 203623 station_ip 83.122.187.248 203623 port 28 203623 unique_id port 203623 remote_ip 10.8.0.62 203629 username barzegar 203629 mac 203629 bytes_out 1552152 203629 bytes_in 431533 203629 station_ip 5.119.85.222 203629 port 93 203629 unique_id port 203629 remote_ip 10.8.1.6 203631 username yaghobi 203631 mac 203631 bytes_out 0 203631 bytes_in 0 203631 station_ip 37.129.15.249 203631 port 47 203631 unique_id port 203631 remote_ip 10.8.0.174 203635 username saeed9658 203635 kill_reason Relative expiration date has reached 203635 mac 203635 bytes_out 0 203635 bytes_in 0 203635 station_ip 5.119.245.65 203635 port 93 203635 unique_id port 203636 username farhad3 203636 mac 203636 bytes_out 1554586 203636 bytes_in 17159512 203636 station_ip 5.120.177.61 203636 port 91 203636 unique_id port 203636 remote_ip 10.8.1.38 203638 username barzegar 203638 mac 203638 bytes_out 0 203638 bytes_in 0 203638 station_ip 5.119.85.222 203638 port 91 203638 unique_id port 203638 remote_ip 10.8.1.6 203639 username barzegar 203639 mac 203639 bytes_out 0 203639 bytes_in 0 203639 station_ip 5.119.85.222 203639 port 91 203639 unique_id port 203639 remote_ip 10.8.1.6 203643 username esmaeilkazemi 203643 mac 203643 bytes_out 0 203643 bytes_in 0 203643 station_ip 46.249.124.78 203643 port 93 203643 unique_id port 203643 remote_ip 10.8.1.218 203647 username esmaeilkazemi 203647 mac 203647 bytes_out 0 203647 bytes_in 0 203647 station_ip 46.249.124.78 203647 port 46 203647 unique_id port 203647 remote_ip 10.8.0.86 203657 username seyedrezaei2572 203657 mac 203657 bytes_out 0 203657 bytes_in 0 203657 station_ip 37.129.85.62 203657 port 46 203657 unique_id port 203657 remote_ip 10.8.0.186 203660 username daryaei1233 203660 mac 203660 bytes_out 2429 203660 bytes_in 4746 203660 station_ip 83.122.83.174 203660 port 43 203660 unique_id port 203660 remote_ip 10.8.0.242 203665 username daryaei1233 203665 mac 203665 bytes_out 0 203665 bytes_in 0 203665 station_ip 83.122.83.174 203665 port 41 203665 unique_id port 203665 remote_ip 10.8.0.242 203667 username meysam 203667 mac 203667 bytes_out 0 203667 bytes_in 0 203667 station_ip 188.158.49.142 203667 port 94 203667 unique_id port 203669 username daryaei1233 203669 mac 203669 bytes_out 0 203669 bytes_in 0 203669 station_ip 83.122.83.174 203669 port 41 203669 unique_id port 203669 remote_ip 10.8.0.242 203670 username daryaei1233 203670 mac 203670 bytes_out 0 203670 bytes_in 0 203670 station_ip 83.122.83.174 203670 port 41 203670 unique_id port 203670 remote_ip 10.8.0.242 203681 username motamedi9772 203681 mac 203681 bytes_out 0 203681 bytes_in 0 203681 station_ip 83.122.187.248 203681 port 28 203681 unique_id port 203681 remote_ip 10.8.0.62 203683 username daryaei1233 203683 mac 203683 bytes_out 0 203683 bytes_in 0 203683 station_ip 83.122.83.174 203683 port 28 203683 unique_id port 203683 remote_ip 10.8.0.242 203651 bytes_in 0 203651 station_ip 151.235.106.19 203651 port 83 203651 unique_id port 203653 username fezealinaghi 203653 mac 203653 bytes_out 0 203653 bytes_in 0 203653 station_ip 37.129.191.125 203653 port 28 203653 unique_id port 203653 remote_ip 10.8.0.98 203659 username motamedi9772 203659 mac 203659 bytes_out 0 203659 bytes_in 0 203659 station_ip 83.122.187.248 203659 port 42 203659 unique_id port 203659 remote_ip 10.8.0.62 203671 username daryaei1233 203671 mac 203671 bytes_out 0 203671 bytes_in 0 203671 station_ip 83.122.83.174 203671 port 41 203671 unique_id port 203671 remote_ip 10.8.0.242 203672 username daryaei1233 203672 mac 203672 bytes_out 0 203672 bytes_in 0 203672 station_ip 83.122.83.174 203672 port 41 203672 unique_id port 203672 remote_ip 10.8.0.242 203674 username khademi 203674 kill_reason Another user logged on this global unique id 203674 mac 203674 bytes_out 0 203674 bytes_in 0 203674 station_ip 37.129.212.3 203674 port 31 203674 unique_id port 203679 username fezealinaghi 203679 mac 203679 bytes_out 63783 203679 bytes_in 159094 203679 station_ip 83.122.187.195 203679 port 28 203679 unique_id port 203679 remote_ip 10.8.0.98 203680 username barzegar 203680 mac 203680 bytes_out 26150 203680 bytes_in 54013 203680 station_ip 5.119.85.222 203680 port 94 203680 unique_id port 203680 remote_ip 10.8.1.6 203687 username khademi 203687 kill_reason Another user logged on this global unique id 203687 mac 203687 bytes_out 0 203687 bytes_in 0 203687 station_ip 37.129.212.3 203687 port 31 203687 unique_id port 203692 username barzegar8595 203692 mac 203692 bytes_out 0 203692 bytes_in 0 203692 station_ip 5.202.30.184 203692 port 93 203692 unique_id port 203692 remote_ip 10.8.1.50 203694 username daryaei1233 203694 mac 203694 bytes_out 0 203694 bytes_in 0 203694 station_ip 83.122.83.174 203694 port 41 203694 unique_id port 203694 remote_ip 10.8.0.242 203696 username motamedi9772 203696 mac 203696 bytes_out 0 203696 bytes_in 0 203696 station_ip 83.122.187.248 203696 port 40 203696 unique_id port 203696 remote_ip 10.8.0.62 203698 username motamedi9772 203698 mac 203698 bytes_out 0 203698 bytes_in 0 203698 station_ip 83.122.187.248 203698 port 41 203698 unique_id port 203698 remote_ip 10.8.0.62 203701 username daryaei1233 203701 mac 203701 bytes_out 0 203701 bytes_in 0 203701 station_ip 83.122.83.174 203701 port 96 203701 unique_id port 203701 remote_ip 10.8.1.230 203702 username daryaei1233 203702 mac 203702 bytes_out 0 203702 bytes_in 0 203702 station_ip 83.122.83.174 203702 port 96 203702 unique_id port 203702 remote_ip 10.8.1.230 203703 username motamedi9772 203703 mac 203703 bytes_out 0 203703 bytes_in 0 203703 station_ip 83.122.187.248 203703 port 41 203703 unique_id port 203703 remote_ip 10.8.0.62 203707 username daryaei1233 203707 mac 203707 bytes_out 0 203707 bytes_in 0 203707 station_ip 83.122.83.174 203707 port 41 203707 unique_id port 203707 remote_ip 10.8.0.242 203709 username daryaei1233 203709 mac 203709 bytes_out 0 203709 bytes_in 0 203709 station_ip 83.122.83.174 203709 port 28 203709 unique_id port 203709 remote_ip 10.8.0.242 203710 username pourshad 203710 kill_reason Another user logged on this global unique id 203710 mac 203710 bytes_out 0 203710 bytes_in 0 203710 station_ip 5.120.208.174 203710 port 88 203710 unique_id port 203710 remote_ip 10.8.1.58 203715 username nilufarrajaei 203715 mac 203715 bytes_out 0 203715 bytes_in 0 203715 station_ip 83.122.186.111 203654 bytes_out 0 203654 bytes_in 0 203654 station_ip 83.122.83.174 203654 port 48 203654 unique_id port 203654 remote_ip 10.8.0.242 203655 username seyedrezaei2572 203655 mac 203655 bytes_out 0 203655 bytes_in 0 203655 station_ip 37.129.85.62 203655 port 43 203655 unique_id port 203655 remote_ip 10.8.0.186 203656 username fezealinaghi 203656 mac 203656 bytes_out 156344 203656 bytes_in 506723 203656 station_ip 37.129.191.125 203656 port 95 203656 unique_id port 203656 remote_ip 10.8.1.222 203658 username heydary4246 203658 mac 203658 bytes_out 0 203658 bytes_in 0 203658 station_ip 46.225.208.230 203658 port 95 203658 unique_id port 203658 remote_ip 10.8.1.234 203661 username barzegar 203661 mac 203661 bytes_out 0 203661 bytes_in 0 203661 station_ip 5.119.85.222 203661 port 41 203661 unique_id port 203661 remote_ip 10.8.0.14 203662 username meysam 203662 kill_reason Another user logged on this global unique id 203662 mac 203662 bytes_out 0 203662 bytes_in 0 203662 station_ip 188.158.49.142 203662 port 94 203662 unique_id port 203663 username daryaei1233 203663 mac 203663 bytes_out 0 203663 bytes_in 0 203663 station_ip 83.122.83.174 203663 port 41 203663 unique_id port 203663 remote_ip 10.8.0.242 203664 username motamedi9772 203664 mac 203664 bytes_out 0 203664 bytes_in 0 203664 station_ip 83.122.187.248 203664 port 41 203664 unique_id port 203664 remote_ip 10.8.0.62 203666 username godarzi 203666 kill_reason Another user logged on this global unique id 203666 mac 203666 bytes_out 0 203666 bytes_in 0 203666 station_ip 5.202.2.157 203666 port 84 203666 unique_id port 203668 username mosi 203668 kill_reason Another user logged on this global unique id 203668 mac 203668 bytes_out 0 203668 bytes_in 0 203668 station_ip 151.235.106.19 203668 port 83 203668 unique_id port 203673 username motamedi9772 203673 mac 203673 bytes_out 0 203673 bytes_in 0 203673 station_ip 83.122.187.248 203673 port 41 203673 unique_id port 203673 remote_ip 10.8.0.62 203675 username fezealinaghi 203675 mac 203675 bytes_out 0 203675 bytes_in 0 203675 station_ip 83.122.187.195 203675 port 28 203675 unique_id port 203675 remote_ip 10.8.0.98 203676 username motamedi9772 203676 mac 203676 bytes_out 0 203676 bytes_in 0 203676 station_ip 83.122.187.248 203676 port 41 203676 unique_id port 203676 remote_ip 10.8.0.62 203677 username daryaei1233 203677 mac 203677 bytes_out 2963 203677 bytes_in 5355 203677 station_ip 83.122.83.174 203677 port 41 203677 unique_id port 203677 remote_ip 10.8.0.242 203678 username farhad3 203678 mac 203678 bytes_out 2425434 203678 bytes_in 33371058 203678 station_ip 5.120.177.61 203678 port 91 203678 unique_id port 203678 remote_ip 10.8.1.38 203682 username yarmohamadi7916 203682 kill_reason Another user logged on this global unique id 203682 mac 203682 bytes_out 0 203682 bytes_in 0 203682 station_ip 5.119.95.130 203682 port 90 203682 unique_id port 203682 remote_ip 10.8.1.154 203685 username daryaei1233 203685 mac 203685 bytes_out 0 203685 bytes_in 0 203685 station_ip 83.122.83.174 203685 port 41 203685 unique_id port 203685 remote_ip 10.8.0.242 203688 username motamedi9772 203688 mac 203688 bytes_out 0 203688 bytes_in 0 203688 station_ip 83.122.187.248 203688 port 40 203688 unique_id port 203688 remote_ip 10.8.0.62 203689 username barzegar 203689 kill_reason Another user logged on this global unique id 203689 mac 203689 bytes_out 0 203689 bytes_in 0 203689 station_ip 5.119.85.222 203689 port 94 203689 unique_id port 203690 username barzegar 203684 username barzegar 203684 mac 203684 bytes_out 0 203684 bytes_in 0 203684 station_ip 5.119.85.222 203684 port 28 203684 unique_id port 203684 remote_ip 10.8.0.14 203686 username sabaghnezhad 203686 mac 203686 bytes_out 0 203686 bytes_in 0 203686 station_ip 83.123.41.55 203686 port 40 203686 unique_id port 203686 remote_ip 10.8.0.18 203691 username daryaei1233 203691 mac 203691 bytes_out 0 203691 bytes_in 0 203691 station_ip 83.122.83.174 203691 port 95 203691 unique_id port 203691 remote_ip 10.8.1.230 203693 username seyedrezaei2572 203693 mac 203693 bytes_out 0 203693 bytes_in 0 203693 station_ip 83.123.174.66 203693 port 47 203693 unique_id port 203693 remote_ip 10.8.0.186 203697 username farhad3 203697 kill_reason Another user logged on this global unique id 203697 mac 203697 bytes_out 0 203697 bytes_in 0 203697 station_ip 5.120.177.61 203697 port 91 203697 unique_id port 203697 remote_ip 10.8.1.38 203700 username motamedi9772 203700 mac 203700 bytes_out 0 203700 bytes_in 0 203700 station_ip 83.122.187.248 203700 port 41 203700 unique_id port 203700 remote_ip 10.8.0.62 203704 username daryaei1233 203704 mac 203704 bytes_out 0 203704 bytes_in 0 203704 station_ip 83.122.83.174 203704 port 96 203704 unique_id port 203704 remote_ip 10.8.1.230 203708 username motamedi9772 203708 mac 203708 bytes_out 0 203708 bytes_in 0 203708 station_ip 83.122.187.248 203708 port 43 203708 unique_id port 203708 remote_ip 10.8.0.62 203711 username yaghobi 203711 mac 203711 bytes_out 0 203711 bytes_in 0 203711 station_ip 37.129.15.249 203711 port 46 203711 unique_id port 203711 remote_ip 10.8.0.174 203713 username mosi 203713 mac 203713 bytes_out 0 203713 bytes_in 0 203713 station_ip 151.235.106.19 203713 port 83 203713 unique_id port 203716 username sabaghnezhad 203716 mac 203716 bytes_out 0 203716 bytes_in 0 203716 station_ip 83.123.41.55 203716 port 42 203716 unique_id port 203716 remote_ip 10.8.0.18 203719 username daryaei1233 203719 mac 203719 bytes_out 2005 203719 bytes_in 5443 203719 station_ip 83.122.83.174 203719 port 28 203719 unique_id port 203719 remote_ip 10.8.0.242 203722 username farhad3 203722 mac 203722 bytes_out 0 203722 bytes_in 0 203722 station_ip 5.120.177.61 203722 port 91 203722 unique_id port 203725 username barzegar 203725 mac 203725 bytes_out 539412 203725 bytes_in 5018686 203725 station_ip 5.119.85.222 203725 port 94 203725 unique_id port 203725 remote_ip 10.8.1.6 203728 username pourshad 203728 mac 203728 bytes_out 0 203728 bytes_in 0 203728 station_ip 5.120.208.174 203728 port 88 203728 unique_id port 203733 username meysam 203733 kill_reason Another user logged on this global unique id 203733 mac 203733 bytes_out 0 203733 bytes_in 0 203733 station_ip 188.158.50.95 203733 port 83 203733 unique_id port 203733 remote_ip 10.8.1.30 203738 username meysam 203738 mac 203738 bytes_out 0 203738 bytes_in 0 203738 station_ip 188.158.50.95 203738 port 82 203738 unique_id port 203738 remote_ip 10.8.1.30 203743 username aminvpn 203743 unique_id port 203743 terminate_cause User-Request 203743 bytes_out 353822 203743 bytes_in 7680713 203743 station_ip 31.57.125.164 203743 port 15729947 203743 nas_port_type Virtual 203743 remote_ip 5.5.5.61 203744 username tahmorsi 203744 mac 203744 bytes_out 0 203744 bytes_in 0 203744 station_ip 86.57.35.85 203744 port 84 203744 unique_id port 203744 remote_ip 10.8.1.102 203745 username meysam 203745 kill_reason Another user logged on this global unique id 203690 kill_reason Another user logged on this global unique id 203690 mac 203690 bytes_out 0 203690 bytes_in 0 203690 station_ip 5.119.85.222 203690 port 94 203690 unique_id port 203695 username daryaei1233 203695 mac 203695 bytes_out 0 203695 bytes_in 0 203695 station_ip 83.122.83.174 203695 port 41 203695 unique_id port 203695 remote_ip 10.8.0.242 203699 username motamedi9772 203699 mac 203699 bytes_out 0 203699 bytes_in 0 203699 station_ip 83.122.187.248 203699 port 41 203699 unique_id port 203699 remote_ip 10.8.0.62 203705 username daryaei1233 203705 mac 203705 bytes_out 0 203705 bytes_in 0 203705 station_ip 83.122.83.174 203705 port 42 203705 unique_id port 203705 remote_ip 10.8.0.242 203706 username sabaghnezhad 203706 mac 203706 bytes_out 0 203706 bytes_in 0 203706 station_ip 83.123.41.55 203706 port 28 203706 unique_id port 203706 remote_ip 10.8.0.18 203712 username kharazmi2920 203712 mac 203712 bytes_out 0 203712 bytes_in 0 203712 station_ip 83.123.60.195 203712 port 45 203712 unique_id port 203712 remote_ip 10.8.0.34 203714 username kamali3 203714 mac 203714 bytes_out 15365696 203714 bytes_in 25491395 203714 station_ip 5.119.95.242 203714 port 86 203714 unique_id port 203714 remote_ip 10.8.1.166 203717 username mirzaei6046 203717 mac 203717 bytes_out 0 203717 bytes_in 0 203717 station_ip 5.119.206.233 203717 port 25 203717 unique_id port 203717 remote_ip 10.8.0.114 203720 username tahmorsi 203720 mac 203720 bytes_out 291800 203720 bytes_in 591153 203720 station_ip 86.57.35.85 203720 port 93 203720 unique_id port 203720 remote_ip 10.8.1.102 203723 username fezealinaghi 203723 mac 203723 bytes_out 0 203723 bytes_in 0 203723 station_ip 83.122.153.195 203723 port 40 203723 unique_id port 203723 remote_ip 10.8.0.98 203726 username yarmohamadi7916 203726 mac 203726 bytes_out 0 203726 bytes_in 0 203726 station_ip 5.119.95.130 203726 port 90 203726 unique_id port 203731 username alirezaza 203731 unique_id port 203731 terminate_cause Lost-Carrier 203731 bytes_out 233192 203731 bytes_in 1206901 203731 station_ip 5.119.193.13 203731 port 15729940 203731 nas_port_type Virtual 203731 remote_ip 5.5.5.45 203736 username mammad 203736 unique_id port 203736 terminate_cause User-Request 203736 bytes_out 3442822 203736 bytes_in 35799896 203736 station_ip 5.233.78.224 203736 port 15729941 203736 nas_port_type Virtual 203736 remote_ip 5.5.5.43 203740 username meysam 203740 kill_reason Another user logged on this global unique id 203740 mac 203740 bytes_out 0 203740 bytes_in 0 203740 station_ip 188.158.50.95 203740 port 82 203740 unique_id port 203742 username meysam 203742 kill_reason Another user logged on this global unique id 203742 mac 203742 bytes_out 0 203742 bytes_in 0 203742 station_ip 188.158.50.95 203742 port 82 203742 unique_id port 203746 username barzegar8595 203746 mac 203746 bytes_out 0 203746 bytes_in 0 203746 station_ip 5.202.30.184 203746 port 83 203746 unique_id port 203746 remote_ip 10.8.1.50 203760 username mammad 203760 unique_id port 203760 terminate_cause User-Request 203760 bytes_out 516009 203760 bytes_in 2171314 203760 station_ip 5.233.78.224 203760 port 15729955 203760 nas_port_type Virtual 203760 remote_ip 5.5.5.43 203762 username khademi 203762 mac 203762 bytes_out 0 203762 bytes_in 0 203762 station_ip 37.129.212.3 203762 port 40 203762 unique_id port 203762 remote_ip 10.8.0.226 203763 username aminvpn 203763 unique_id port 203763 terminate_cause User-Request 203763 bytes_out 13621400 203763 bytes_in 526751320 203763 station_ip 31.57.125.164 203715 port 92 203715 unique_id port 203715 remote_ip 10.8.1.138 203718 username alipour1506 203718 mac 203718 bytes_out 362685 203718 bytes_in 1113194 203718 station_ip 83.123.121.190 203718 port 82 203718 unique_id port 203718 remote_ip 10.8.1.86 203721 username khademi 203721 mac 203721 bytes_out 0 203721 bytes_in 0 203721 station_ip 37.129.212.3 203721 port 31 203721 unique_id port 203724 username godarzi 203724 mac 203724 bytes_out 0 203724 bytes_in 0 203724 station_ip 5.202.2.157 203724 port 84 203724 unique_id port 203727 username majidsarmast 203727 mac 203727 bytes_out 584202 203727 bytes_in 479961 203727 station_ip 83.123.174.71 203727 port 95 203727 unique_id port 203727 remote_ip 10.8.1.114 203729 username amirzadeh1339 203729 unique_id port 203729 terminate_cause User-Request 203729 bytes_out 13925963 203729 bytes_in 381600404 203729 station_ip 37.27.51.42 203729 port 15729934 203729 nas_port_type Virtual 203729 remote_ip 5.5.5.255 203730 username mammad 203730 unique_id port 203730 terminate_cause User-Request 203730 bytes_out 8997623 203730 bytes_in 203151455 203730 station_ip 5.233.78.224 203730 port 15729938 203730 nas_port_type Virtual 203730 remote_ip 5.5.5.43 203732 username aminvpn 203732 unique_id port 203732 terminate_cause Lost-Carrier 203732 bytes_out 22468 203732 bytes_in 30869 203732 station_ip 5.120.85.205 203732 port 15729944 203732 nas_port_type Virtual 203732 remote_ip 5.5.5.47 203734 username tahmorsi 203734 mac 203734 bytes_out 146963 203734 bytes_in 460423 203734 station_ip 86.57.35.85 203734 port 82 203734 unique_id port 203734 remote_ip 10.8.1.102 203735 username meysam 203735 kill_reason Another user logged on this global unique id 203735 mac 203735 bytes_out 0 203735 bytes_in 0 203735 station_ip 188.158.50.95 203735 port 83 203735 unique_id port 203737 username meysam 203737 mac 203737 bytes_out 0 203737 bytes_in 0 203737 station_ip 188.158.50.95 203737 port 83 203737 unique_id port 203739 username meysam 203739 kill_reason Another user logged on this global unique id 203739 mac 203739 bytes_out 0 203739 bytes_in 0 203739 station_ip 188.158.50.95 203739 port 82 203739 unique_id port 203739 remote_ip 10.8.1.30 203741 username aminvpn 203741 unique_id port 203741 terminate_cause User-Request 203741 bytes_out 316982 203741 bytes_in 5152228 203741 station_ip 31.57.125.164 203741 port 15729946 203741 nas_port_type Virtual 203741 remote_ip 5.5.5.61 203748 username aminvpn 203748 unique_id port 203748 terminate_cause Lost-Carrier 203748 bytes_out 533739 203748 bytes_in 3103605 203748 station_ip 37.129.87.133 203748 port 15729948 203748 nas_port_type Virtual 203748 remote_ip 5.5.5.63 203750 username meysam 203750 mac 203750 bytes_out 0 203750 bytes_in 0 203750 station_ip 188.158.50.95 203750 port 82 203750 unique_id port 203751 username hamid.e 203751 unique_id port 203751 terminate_cause User-Request 203751 bytes_out 242014 203751 bytes_in 5476062 203751 station_ip 31.56.153.155 203751 port 15729951 203751 nas_port_type Virtual 203751 remote_ip 5.5.5.255 203753 username barzegar8595 203753 mac 203753 bytes_out 5603 203753 bytes_in 6190 203753 station_ip 5.200.126.104 203753 port 25 203753 unique_id port 203753 remote_ip 10.8.0.82 203755 username barzegar8595 203755 mac 203755 bytes_out 0 203755 bytes_in 0 203755 station_ip 5.200.126.104 203755 port 28 203755 unique_id port 203755 remote_ip 10.8.0.82 203758 username mohammadjavad 203758 mac 203758 bytes_out 0 203758 bytes_in 0 203758 station_ip 83.123.219.134 203758 port 25 203758 unique_id port 203758 remote_ip 10.8.0.58 203745 mac 203745 bytes_out 0 203745 bytes_in 0 203745 station_ip 188.158.50.95 203745 port 82 203745 unique_id port 203747 username meysam 203747 kill_reason Another user logged on this global unique id 203747 mac 203747 bytes_out 0 203747 bytes_in 0 203747 station_ip 188.158.50.95 203747 port 82 203747 unique_id port 203749 username meysam 203749 kill_reason Another user logged on this global unique id 203749 mac 203749 bytes_out 0 203749 bytes_in 0 203749 station_ip 188.158.50.95 203749 port 82 203749 unique_id port 203752 username mosi 203752 kill_reason Another user logged on this global unique id 203752 mac 203752 bytes_out 0 203752 bytes_in 0 203752 station_ip 151.235.106.19 203752 port 96 203752 unique_id port 203752 remote_ip 10.8.1.118 203754 username barzegar8595 203754 mac 203754 bytes_out 0 203754 bytes_in 0 203754 station_ip 5.200.126.104 203754 port 25 203754 unique_id port 203754 remote_ip 10.8.0.82 203756 username mosi 203756 kill_reason Another user logged on this global unique id 203756 mac 203756 bytes_out 0 203756 bytes_in 0 203756 station_ip 151.235.106.19 203756 port 96 203756 unique_id port 203757 username aminvpn 203757 unique_id port 203757 terminate_cause Lost-Carrier 203757 bytes_out 102446 203757 bytes_in 189139 203757 station_ip 83.123.96.130 203757 port 15729952 203757 nas_port_type Virtual 203757 remote_ip 5.5.5.255 203759 username sabaghnezhad 203759 mac 203759 bytes_out 0 203759 bytes_in 0 203759 station_ip 83.122.21.63 203759 port 28 203759 unique_id port 203759 remote_ip 10.8.0.18 203761 username farhad3 203761 mac 203761 bytes_out 801852 203761 bytes_in 4399869 203761 station_ip 5.120.173.80 203761 port 84 203761 unique_id port 203761 remote_ip 10.8.1.38 203764 username godarzi 203764 mac 203764 bytes_out 0 203764 bytes_in 0 203764 station_ip 5.202.2.157 203764 port 82 203764 unique_id port 203764 remote_ip 10.8.1.78 203767 username hadibarzegar 203767 mac 203767 bytes_out 1776738 203767 bytes_in 12213473 203767 station_ip 5.120.115.115 203767 port 90 203767 unique_id port 203767 remote_ip 10.8.1.170 203771 username daryaei1233 203771 mac 203771 bytes_out 0 203771 bytes_in 0 203771 station_ip 37.129.173.80 203771 port 28 203771 unique_id port 203771 remote_ip 10.8.0.242 203774 username khademi 203774 kill_reason Another user logged on this global unique id 203774 mac 203774 bytes_out 0 203774 bytes_in 0 203774 station_ip 37.129.212.3 203774 port 84 203774 unique_id port 203774 remote_ip 10.8.1.226 203775 username daryaei1233 203775 mac 203775 bytes_out 0 203775 bytes_in 0 203775 station_ip 37.129.173.80 203775 port 28 203775 unique_id port 203775 remote_ip 10.8.0.242 203777 username saeed9658 203777 kill_reason Relative expiration date has reached 203777 mac 203777 bytes_out 0 203777 bytes_in 0 203777 station_ip 5.119.245.65 203777 port 93 203777 unique_id port 203782 username godarzi 203782 mac 203782 bytes_out 968284 203782 bytes_in 4955067 203782 station_ip 5.120.84.86 203782 port 82 203782 unique_id port 203782 remote_ip 10.8.1.78 203784 username godarzi 203784 mac 203784 bytes_out 47223 203784 bytes_in 61382 203784 station_ip 5.120.84.86 203784 port 82 203784 unique_id port 203784 remote_ip 10.8.1.78 203785 username pourshad 203785 mac 203785 bytes_out 33247595 203785 bytes_in 8189111 203785 station_ip 5.120.229.1 203785 port 88 203785 unique_id port 203785 remote_ip 10.8.1.58 203787 username fezealinaghi 203787 kill_reason Another user logged on this global unique id 203787 mac 203787 bytes_out 0 203787 bytes_in 0 203763 port 15729949 203763 nas_port_type Virtual 203763 remote_ip 5.5.5.61 203765 username kharazmi2920 203765 mac 203765 bytes_out 0 203765 bytes_in 0 203765 station_ip 83.122.221.61 203765 port 31 203765 unique_id port 203765 remote_ip 10.8.0.34 203766 username barzegar 203766 kill_reason Another user logged on this global unique id 203766 mac 203766 bytes_out 0 203766 bytes_in 0 203766 station_ip 5.119.85.222 203766 port 86 203766 unique_id port 203766 remote_ip 10.8.1.6 203768 username daryaei1233 203768 mac 203768 bytes_out 0 203768 bytes_in 0 203768 station_ip 37.129.173.80 203768 port 28 203768 unique_id port 203768 remote_ip 10.8.0.242 203769 username mosi 203769 kill_reason Another user logged on this global unique id 203769 mac 203769 bytes_out 0 203769 bytes_in 0 203769 station_ip 151.235.106.19 203769 port 96 203769 unique_id port 203772 username daryaei1233 203772 mac 203772 bytes_out 0 203772 bytes_in 0 203772 station_ip 37.129.173.80 203772 port 28 203772 unique_id port 203772 remote_ip 10.8.0.242 203778 username daryaei1233 203778 mac 203778 bytes_out 0 203778 bytes_in 0 203778 station_ip 37.129.173.80 203778 port 90 203778 unique_id port 203778 remote_ip 10.8.1.230 203779 username iranmanesh4443 203779 mac 203779 bytes_out 24728 203779 bytes_in 130200 203779 station_ip 5.120.167.227 203779 port 83 203779 unique_id port 203779 remote_ip 10.8.1.122 203796 username mosi 203796 kill_reason Another user logged on this global unique id 203796 mac 203796 bytes_out 0 203796 bytes_in 0 203796 station_ip 151.235.106.19 203796 port 96 203796 unique_id port 203799 username farhad3 203799 mac 203799 bytes_out 6677994 203799 bytes_in 20245155 203799 station_ip 5.120.173.80 203799 port 91 203799 unique_id port 203799 remote_ip 10.8.1.38 203800 username khademi 203800 kill_reason Another user logged on this global unique id 203800 mac 203800 bytes_out 0 203800 bytes_in 0 203800 station_ip 37.129.212.3 203800 port 84 203800 unique_id port 203802 username daryaei1233 203802 mac 203802 bytes_out 0 203802 bytes_in 0 203802 station_ip 37.129.173.80 203802 port 42 203802 unique_id port 203802 remote_ip 10.8.0.242 203803 username daryaei1233 203803 mac 203803 bytes_out 0 203803 bytes_in 0 203803 station_ip 37.129.173.80 203803 port 42 203803 unique_id port 203803 remote_ip 10.8.0.242 203809 username teymori5660 203809 mac 203809 bytes_out 0 203809 bytes_in 0 203809 station_ip 5.120.24.165 203809 port 88 203809 unique_id port 203809 remote_ip 10.8.1.14 203814 username farhad3 203814 mac 203814 bytes_out 580668 203814 bytes_in 1786349 203814 station_ip 5.120.173.80 203814 port 83 203814 unique_id port 203814 remote_ip 10.8.1.38 203815 username meysam 203815 kill_reason Another user logged on this global unique id 203815 mac 203815 bytes_out 0 203815 bytes_in 0 203815 station_ip 188.158.51.29 203815 port 86 203815 unique_id port 203815 remote_ip 10.8.1.30 203816 username farhad3 203816 mac 203816 bytes_out 116229 203816 bytes_in 588415 203816 station_ip 5.120.173.80 203816 port 83 203816 unique_id port 203816 remote_ip 10.8.1.38 203818 username rashidi4690 203818 mac 203818 bytes_out 0 203818 bytes_in 0 203818 station_ip 5.119.159.201 203818 port 41 203818 unique_id port 203818 remote_ip 10.8.0.158 203819 username farhad3 203819 mac 203819 bytes_out 0 203819 bytes_in 0 203819 station_ip 5.120.173.80 203819 port 90 203819 unique_id port 203819 remote_ip 10.8.1.38 203822 username daryaei1233 203822 mac 203822 bytes_out 0 203770 username iranmanesh4443 203770 mac 203770 bytes_out 0 203770 bytes_in 0 203770 station_ip 5.120.167.227 203770 port 83 203770 unique_id port 203770 remote_ip 10.8.1.122 203773 username barzegar 203773 kill_reason Another user logged on this global unique id 203773 mac 203773 bytes_out 0 203773 bytes_in 0 203773 station_ip 5.119.85.222 203773 port 86 203773 unique_id port 203776 username daryaei1233 203776 mac 203776 bytes_out 0 203776 bytes_in 0 203776 station_ip 37.129.173.80 203776 port 90 203776 unique_id port 203776 remote_ip 10.8.1.230 203780 username barzegar 203780 mac 203780 bytes_out 0 203780 bytes_in 0 203780 station_ip 5.119.85.222 203780 port 86 203780 unique_id port 203781 username daryaei1233 203781 mac 203781 bytes_out 2408 203781 bytes_in 4700 203781 station_ip 37.129.173.80 203781 port 90 203781 unique_id port 203781 remote_ip 10.8.1.230 203783 username fezealinaghi 203783 kill_reason Another user logged on this global unique id 203783 mac 203783 bytes_out 0 203783 bytes_in 0 203783 station_ip 83.122.167.2 203783 port 28 203783 unique_id port 203783 remote_ip 10.8.0.98 203786 username kharazmi2920 203786 mac 203786 bytes_out 0 203786 bytes_in 0 203786 station_ip 83.122.221.61 203786 port 31 203786 unique_id port 203786 remote_ip 10.8.0.34 203788 username daryaei1233 203788 mac 203788 bytes_out 0 203788 bytes_in 0 203788 station_ip 37.129.173.80 203788 port 41 203788 unique_id port 203788 remote_ip 10.8.0.242 203790 username daryaei1233 203790 mac 203790 bytes_out 0 203790 bytes_in 0 203790 station_ip 37.129.173.80 203790 port 42 203790 unique_id port 203790 remote_ip 10.8.0.242 203792 username barzegar8595 203792 mac 203792 bytes_out 1165781 203792 bytes_in 4935129 203792 station_ip 5.200.126.104 203792 port 92 203792 unique_id port 203792 remote_ip 10.8.1.50 203795 username daryaei1233 203795 mac 203795 bytes_out 0 203795 bytes_in 0 203795 station_ip 37.129.173.80 203795 port 83 203795 unique_id port 203795 remote_ip 10.8.1.230 203797 username daryaei1233 203797 mac 203797 bytes_out 0 203797 bytes_in 0 203797 station_ip 37.129.173.80 203797 port 42 203797 unique_id port 203797 remote_ip 10.8.0.242 203806 username daryaei1233 203806 mac 203806 bytes_out 0 203806 bytes_in 0 203806 station_ip 37.129.173.80 203806 port 42 203806 unique_id port 203806 remote_ip 10.8.0.242 203807 username daryaei1233 203807 mac 203807 bytes_out 0 203807 bytes_in 0 203807 station_ip 37.129.173.80 203807 port 42 203807 unique_id port 203807 remote_ip 10.8.0.242 203810 username barzegar 203810 mac 203810 bytes_out 0 203810 bytes_in 0 203810 station_ip 5.119.85.222 203810 port 41 203810 unique_id port 203810 remote_ip 10.8.0.14 203812 username khademi 203812 kill_reason Another user logged on this global unique id 203812 mac 203812 bytes_out 0 203812 bytes_in 0 203812 station_ip 37.129.212.3 203812 port 84 203812 unique_id port 203813 username alipour1506 203813 mac 203813 bytes_out 0 203813 bytes_in 0 203813 station_ip 83.123.121.190 203813 port 31 203813 unique_id port 203813 remote_ip 10.8.0.134 203823 username daryaei1233 203823 mac 203823 bytes_out 0 203823 bytes_in 0 203823 station_ip 37.129.173.80 203823 port 41 203823 unique_id port 203823 remote_ip 10.8.0.242 203825 username daryaei1233 203825 mac 203825 bytes_out 0 203825 bytes_in 0 203825 station_ip 37.129.173.80 203825 port 41 203825 unique_id port 203825 remote_ip 10.8.0.242 203827 username daryaei1233 203787 station_ip 83.122.167.2 203787 port 28 203787 unique_id port 203789 username daryaei1233 203789 mac 203789 bytes_out 0 203789 bytes_in 0 203789 station_ip 37.129.173.80 203789 port 83 203789 unique_id port 203789 remote_ip 10.8.1.230 203791 username daryaei1233 203791 mac 203791 bytes_out 0 203791 bytes_in 0 203791 station_ip 37.129.173.80 203791 port 43 203791 unique_id port 203791 remote_ip 10.8.0.242 203793 username fezealinaghi 203793 kill_reason Another user logged on this global unique id 203793 mac 203793 bytes_out 0 203793 bytes_in 0 203793 station_ip 83.122.167.2 203793 port 28 203793 unique_id port 203794 username barzegar 203794 mac 203794 bytes_out 0 203794 bytes_in 0 203794 station_ip 5.119.85.222 203794 port 41 203794 unique_id port 203794 remote_ip 10.8.0.14 203798 username daryaei1233 203798 mac 203798 bytes_out 0 203798 bytes_in 0 203798 station_ip 37.129.173.80 203798 port 43 203798 unique_id port 203798 remote_ip 10.8.0.242 203801 username pourshad 203801 mac 203801 bytes_out 85419 203801 bytes_in 174052 203801 station_ip 5.120.229.1 203801 port 82 203801 unique_id port 203801 remote_ip 10.8.1.58 203804 username daryaei1233 203804 mac 203804 bytes_out 0 203804 bytes_in 0 203804 station_ip 37.129.173.80 203804 port 42 203804 unique_id port 203804 remote_ip 10.8.0.242 203805 username fezealinaghi 203805 kill_reason Another user logged on this global unique id 203805 mac 203805 bytes_out 0 203805 bytes_in 0 203805 station_ip 83.122.167.2 203805 port 28 203805 unique_id port 203808 username daryaei1233 203808 mac 203808 bytes_out 0 203808 bytes_in 0 203808 station_ip 37.129.173.80 203808 port 42 203808 unique_id port 203808 remote_ip 10.8.0.242 203811 username daryaei1233 203811 mac 203811 bytes_out 0 203811 bytes_in 0 203811 station_ip 37.129.173.80 203811 port 42 203811 unique_id port 203811 remote_ip 10.8.0.242 203817 username aminvpn 203817 unique_id port 203817 terminate_cause Lost-Carrier 203817 bytes_out 373104 203817 bytes_in 2671993 203817 station_ip 5.119.44.177 203817 port 15729957 203817 nas_port_type Virtual 203817 remote_ip 5.5.5.39 203820 username meysam 203820 mac 203820 bytes_out 0 203820 bytes_in 0 203820 station_ip 188.158.51.29 203820 port 86 203820 unique_id port 203821 username barzegar 203821 mac 203821 bytes_out 0 203821 bytes_in 0 203821 station_ip 5.119.85.222 203821 port 83 203821 unique_id port 203821 remote_ip 10.8.1.6 203824 username farhad3 203824 mac 203824 bytes_out 0 203824 bytes_in 0 203824 station_ip 5.120.173.80 203824 port 83 203824 unique_id port 203824 remote_ip 10.8.1.38 203831 username farhad3 203831 mac 203831 bytes_out 658902 203831 bytes_in 2532218 203831 station_ip 5.120.173.80 203831 port 83 203831 unique_id port 203831 remote_ip 10.8.1.38 203832 username khademi 203832 kill_reason Another user logged on this global unique id 203832 mac 203832 bytes_out 0 203832 bytes_in 0 203832 station_ip 37.129.212.3 203832 port 84 203832 unique_id port 203835 username barzegar 203835 mac 203835 bytes_out 0 203835 bytes_in 0 203835 station_ip 5.119.85.222 203835 port 41 203835 unique_id port 203835 remote_ip 10.8.0.14 203836 username khademi 203836 kill_reason Another user logged on this global unique id 203836 mac 203836 bytes_out 0 203836 bytes_in 0 203836 station_ip 37.129.212.3 203836 port 84 203836 unique_id port 203838 username fezealinaghi 203838 mac 203838 bytes_out 0 203838 bytes_in 0 203838 station_ip 83.122.167.2 203838 port 28 203822 bytes_in 0 203822 station_ip 37.129.173.80 203822 port 91 203822 unique_id port 203822 remote_ip 10.8.1.230 203826 username farhad3 203826 mac 203826 bytes_out 83121 203826 bytes_in 285343 203826 station_ip 5.120.173.80 203826 port 83 203826 unique_id port 203826 remote_ip 10.8.1.38 203829 username daryaei1233 203829 kill_reason Maximum check online fails reached 203829 mac 203829 bytes_out 0 203829 bytes_in 0 203829 station_ip 37.129.173.80 203829 port 41 203829 unique_id port 203830 username barzegar 203830 mac 203830 bytes_out 0 203830 bytes_in 0 203830 station_ip 5.119.85.222 203830 port 90 203830 unique_id port 203830 remote_ip 10.8.1.6 203834 username barzegar 203834 mac 203834 bytes_out 2406 203834 bytes_in 5065 203834 station_ip 5.119.85.222 203834 port 90 203834 unique_id port 203834 remote_ip 10.8.1.6 203843 username mosi 203843 kill_reason Another user logged on this global unique id 203843 mac 203843 bytes_out 0 203843 bytes_in 0 203843 station_ip 151.235.106.19 203843 port 96 203843 unique_id port 203847 username kharazmi2920 203847 mac 203847 bytes_out 0 203847 bytes_in 0 203847 station_ip 83.122.221.61 203847 port 40 203847 unique_id port 203847 remote_ip 10.8.0.34 203848 username mohammadjavad 203848 kill_reason Another user logged on this global unique id 203848 mac 203848 bytes_out 0 203848 bytes_in 0 203848 station_ip 83.122.187.62 203848 port 41 203848 unique_id port 203848 remote_ip 10.8.0.58 203853 username hosseine 203853 kill_reason Another user logged on this global unique id 203853 mac 203853 bytes_out 0 203853 bytes_in 0 203853 station_ip 37.129.231.218 203853 port 31 203853 unique_id port 203853 remote_ip 10.8.0.118 203855 username mostafa_es78 203855 mac 203855 bytes_out 13464080 203855 bytes_in 9022970 203855 station_ip 5.232.198.239 203855 port 91 203855 unique_id port 203855 remote_ip 10.8.1.202 203859 username yaghobi 203859 mac 203859 bytes_out 3387680 203859 bytes_in 35340509 203859 station_ip 37.129.17.53 203859 port 28 203859 unique_id port 203859 remote_ip 10.8.0.174 203865 username rahim 203865 mac 203865 bytes_out 0 203865 bytes_in 0 203865 station_ip 5.120.3.58 203865 port 83 203865 unique_id port 203865 remote_ip 10.8.1.90 203870 username hatami 203870 mac 203870 bytes_out 2272569 203870 bytes_in 27800973 203870 station_ip 151.235.111.197 203870 port 86 203870 unique_id port 203870 remote_ip 10.8.1.26 203872 username rahim 203872 mac 203872 bytes_out 0 203872 bytes_in 0 203872 station_ip 5.120.3.58 203872 port 86 203872 unique_id port 203872 remote_ip 10.8.1.90 203879 username hosseine 203879 kill_reason Another user logged on this global unique id 203879 mac 203879 bytes_out 0 203879 bytes_in 0 203879 station_ip 37.129.231.218 203879 port 31 203879 unique_id port 203887 username rahim 203887 mac 203887 bytes_out 0 203887 bytes_in 0 203887 station_ip 5.120.3.58 203887 port 90 203887 unique_id port 203887 remote_ip 10.8.1.90 203889 username rahim 203889 mac 203889 bytes_out 0 203889 bytes_in 0 203889 station_ip 5.120.3.58 203889 port 90 203889 unique_id port 203889 remote_ip 10.8.1.90 203893 username yaghobi 203893 mac 203893 bytes_out 0 203893 bytes_in 0 203893 station_ip 37.129.17.53 203893 port 28 203893 unique_id port 203893 remote_ip 10.8.0.174 203895 username barzegar 203895 mac 203895 bytes_out 0 203895 bytes_in 0 203895 station_ip 5.119.85.222 203895 port 90 203895 unique_id port 203895 remote_ip 10.8.1.6 203898 username teymori5660 203898 mac 203898 bytes_out 0 203827 kill_reason Another user logged on this global unique id 203827 mac 203827 bytes_out 0 203827 bytes_in 0 203827 station_ip 37.129.173.80 203827 port 41 203827 unique_id port 203828 username meysam 203828 mac 203828 bytes_out 0 203828 bytes_in 0 203828 station_ip 188.158.51.29 203828 port 90 203828 unique_id port 203828 remote_ip 10.8.1.30 203833 username malekpoir 203833 mac 203833 bytes_out 1319323 203833 bytes_in 8977971 203833 station_ip 5.120.113.116 203833 port 86 203833 unique_id port 203833 remote_ip 10.8.1.70 203837 username hamid.e 203837 kill_reason Maximum number of concurrent logins reached 203837 unique_id port 203837 bytes_out 0 203837 bytes_in 0 203837 station_ip 31.56.153.155 203837 port 15729961 203837 nas_port_type Virtual 203839 username mostafa_es78 203839 mac 203839 bytes_out 394075 203839 bytes_in 100550 203839 station_ip 5.232.198.239 203839 port 28 203839 unique_id port 203839 remote_ip 10.8.0.102 203842 username alirezaza 203842 unique_id port 203842 terminate_cause User-Request 203842 bytes_out 378 203842 bytes_in 184 203842 station_ip 5.119.207.32 203842 port 15729964 203842 nas_port_type Virtual 203842 remote_ip 5.5.5.255 203844 username esmaeilkazemi 203844 mac 203844 bytes_out 0 203844 bytes_in 0 203844 station_ip 83.122.113.81 203844 port 43 203844 unique_id port 203844 remote_ip 10.8.0.86 203845 username kalantary6037 203845 mac 203845 bytes_out 0 203845 bytes_in 0 203845 station_ip 83.123.187.76 203845 port 43 203845 unique_id port 203845 remote_ip 10.8.0.10 203846 username farhad3 203846 mac 203846 bytes_out 3226082 203846 bytes_in 22496565 203846 station_ip 5.120.173.80 203846 port 83 203846 unique_id port 203846 remote_ip 10.8.1.38 203850 username rahim 203850 kill_reason Another user logged on this global unique id 203850 mac 203850 bytes_out 0 203850 bytes_in 0 203850 station_ip 5.120.1.185 203850 port 45 203850 unique_id port 203850 remote_ip 10.8.0.230 203851 username hamid.e 203851 unique_id port 203851 terminate_cause User-Request 203851 bytes_out 16980660 203851 bytes_in 360773390 203851 station_ip 37.27.55.191 203851 port 15729958 203851 nas_port_type Virtual 203851 remote_ip 5.5.5.40 203852 username rashidi4690 203852 mac 203852 bytes_out 0 203852 bytes_in 0 203852 station_ip 5.119.159.201 203852 port 42 203852 unique_id port 203852 remote_ip 10.8.0.158 203861 username rahim 203861 mac 203861 bytes_out 0 203861 bytes_in 0 203861 station_ip 5.120.3.58 203861 port 83 203861 unique_id port 203861 remote_ip 10.8.1.90 203862 username rahim 203862 mac 203862 bytes_out 0 203862 bytes_in 0 203862 station_ip 5.120.3.58 203862 port 83 203862 unique_id port 203862 remote_ip 10.8.1.90 203864 username rahim 203864 mac 203864 bytes_out 0 203864 bytes_in 0 203864 station_ip 5.120.3.58 203864 port 83 203864 unique_id port 203864 remote_ip 10.8.1.90 203866 username teymori5660 203866 mac 203866 bytes_out 0 203866 bytes_in 0 203866 station_ip 5.120.24.165 203866 port 28 203866 unique_id port 203866 remote_ip 10.8.0.122 203867 username rahim 203867 mac 203867 bytes_out 0 203867 bytes_in 0 203867 station_ip 5.120.3.58 203867 port 83 203867 unique_id port 203867 remote_ip 10.8.1.90 203869 username hosseine 203869 kill_reason Another user logged on this global unique id 203869 mac 203869 bytes_out 0 203869 bytes_in 0 203869 station_ip 37.129.231.218 203869 port 31 203869 unique_id port 203871 username pourshad 203871 kill_reason Another user logged on this global unique id 203871 mac 203871 bytes_out 0 203871 bytes_in 0 203838 unique_id port 203840 username hamid.e 203840 kill_reason Maximum number of concurrent logins reached 203840 unique_id port 203840 bytes_out 0 203840 bytes_in 0 203840 station_ip 31.56.153.155 203840 port 15729963 203840 nas_port_type Virtual 203841 username khademi 203841 kill_reason Another user logged on this global unique id 203841 mac 203841 bytes_out 0 203841 bytes_in 0 203841 station_ip 37.129.212.3 203841 port 84 203841 unique_id port 203849 username barzegar 203849 kill_reason Another user logged on this global unique id 203849 mac 203849 bytes_out 0 203849 bytes_in 0 203849 station_ip 5.119.85.222 203849 port 90 203849 unique_id port 203849 remote_ip 10.8.1.6 203854 username rahim 203854 mac 203854 bytes_out 0 203854 bytes_in 0 203854 station_ip 5.120.1.185 203854 port 45 203854 unique_id port 203856 username barzegar 203856 mac 203856 bytes_out 0 203856 bytes_in 0 203856 station_ip 5.119.85.222 203856 port 90 203856 unique_id port 203857 username rahim 203857 mac 203857 bytes_out 0 203857 bytes_in 0 203857 station_ip 5.120.3.58 203857 port 83 203857 unique_id port 203857 remote_ip 10.8.1.90 203858 username rahim 203858 mac 203858 bytes_out 0 203858 bytes_in 0 203858 station_ip 5.120.3.58 203858 port 83 203858 unique_id port 203858 remote_ip 10.8.1.90 203860 username hosseine 203860 kill_reason Another user logged on this global unique id 203860 mac 203860 bytes_out 0 203860 bytes_in 0 203860 station_ip 37.129.231.218 203860 port 31 203860 unique_id port 203863 username rashidi4690 203863 mac 203863 bytes_out 366280 203863 bytes_in 1645507 203863 station_ip 5.119.159.201 203863 port 28 203863 unique_id port 203863 remote_ip 10.8.0.158 203868 username barzegar 203868 mac 203868 bytes_out 0 203868 bytes_in 0 203868 station_ip 5.119.85.222 203868 port 83 203868 unique_id port 203868 remote_ip 10.8.1.6 203875 username barzegar 203875 mac 203875 bytes_out 0 203875 bytes_in 0 203875 station_ip 5.119.85.222 203875 port 86 203875 unique_id port 203875 remote_ip 10.8.1.6 203876 username rahim 203876 kill_reason Maximum check online fails reached 203876 mac 203876 bytes_out 0 203876 bytes_in 0 203876 station_ip 5.120.3.58 203876 port 86 203876 unique_id port 203880 username rahim 203880 mac 203880 bytes_out 0 203880 bytes_in 0 203880 station_ip 5.120.3.58 203880 port 90 203880 unique_id port 203880 remote_ip 10.8.1.90 203882 username khademi 203882 kill_reason Another user logged on this global unique id 203882 mac 203882 bytes_out 0 203882 bytes_in 0 203882 station_ip 37.129.212.3 203882 port 84 203882 unique_id port 203885 username daryaei1233 203885 mac 203885 bytes_out 0 203885 bytes_in 0 203885 station_ip 37.129.173.80 203885 port 40 203885 unique_id port 203885 remote_ip 10.8.0.242 203888 username barzegar 203888 mac 203888 bytes_out 0 203888 bytes_in 0 203888 station_ip 5.119.85.222 203888 port 40 203888 unique_id port 203888 remote_ip 10.8.0.14 203892 username rahim 203892 mac 203892 bytes_out 388140 203892 bytes_in 34523 203892 station_ip 5.120.3.58 203892 port 90 203892 unique_id port 203892 remote_ip 10.8.1.90 203896 username hosseine 203896 mac 203896 bytes_out 0 203896 bytes_in 0 203896 station_ip 37.129.231.218 203896 port 31 203896 unique_id port 203897 username rashidi4690 203897 mac 203897 bytes_out 330000 203897 bytes_in 703582 203897 station_ip 5.119.159.201 203897 port 83 203897 unique_id port 203897 remote_ip 10.8.1.158 203899 username daryaei1233 203899 mac 203899 bytes_out 0 203871 station_ip 5.120.229.1 203871 port 82 203871 unique_id port 203871 remote_ip 10.8.1.58 203873 username rahim 203873 mac 203873 bytes_out 0 203873 bytes_in 0 203873 station_ip 5.120.3.58 203873 port 86 203873 unique_id port 203873 remote_ip 10.8.1.90 203874 username mosi 203874 kill_reason Another user logged on this global unique id 203874 mac 203874 bytes_out 0 203874 bytes_in 0 203874 station_ip 151.235.106.19 203874 port 96 203874 unique_id port 203877 username daryaei1233 203877 mac 203877 bytes_out 0 203877 bytes_in 0 203877 station_ip 37.129.173.80 203877 port 40 203877 unique_id port 203877 remote_ip 10.8.0.242 203878 username daryaei1233 203878 mac 203878 bytes_out 0 203878 bytes_in 0 203878 station_ip 37.129.173.80 203878 port 42 203878 unique_id port 203878 remote_ip 10.8.0.242 203881 username rahim 203881 mac 203881 bytes_out 0 203881 bytes_in 0 203881 station_ip 5.120.3.58 203881 port 90 203881 unique_id port 203881 remote_ip 10.8.1.90 203883 username mohammadjavad 203883 kill_reason Another user logged on this global unique id 203883 mac 203883 bytes_out 0 203883 bytes_in 0 203883 station_ip 83.122.187.62 203883 port 41 203883 unique_id port 203884 username amirzadeh1339 203884 unique_id port 203884 terminate_cause User-Request 203884 bytes_out 30806902 203884 bytes_in 751367021 203884 station_ip 37.27.46.14 203884 port 15729954 203884 nas_port_type Virtual 203884 remote_ip 5.5.5.37 203886 username barzegar 203886 mac 203886 bytes_out 0 203886 bytes_in 0 203886 station_ip 5.119.85.222 203886 port 90 203886 unique_id port 203886 remote_ip 10.8.1.6 203890 username farhad3 203890 mac 203890 bytes_out 3655955 203890 bytes_in 24618303 203890 station_ip 5.120.173.80 203890 port 83 203890 unique_id port 203890 remote_ip 10.8.1.38 203891 username farhad3 203891 mac 203891 bytes_out 0 203891 bytes_in 0 203891 station_ip 5.120.173.80 203891 port 83 203891 unique_id port 203891 remote_ip 10.8.1.38 203894 username mohammadjavad 203894 kill_reason Another user logged on this global unique id 203894 mac 203894 bytes_out 0 203894 bytes_in 0 203894 station_ip 83.122.187.62 203894 port 41 203894 unique_id port 203904 username daryaei1233 203904 mac 203904 bytes_out 0 203904 bytes_in 0 203904 station_ip 83.122.53.156 203904 port 40 203904 unique_id port 203904 remote_ip 10.8.0.242 203906 username meghdad1616 203906 mac 203906 bytes_out 0 203906 bytes_in 0 203906 station_ip 5.120.186.91 203906 port 28 203906 unique_id port 203906 remote_ip 10.8.0.126 203908 username daryaei1233 203908 mac 203908 bytes_out 29689 203908 bytes_in 104072 203908 station_ip 83.122.53.156 203908 port 90 203908 unique_id port 203908 remote_ip 10.8.1.230 203910 username rahim 203910 mac 203910 bytes_out 0 203910 bytes_in 0 203910 station_ip 5.120.3.58 203910 port 90 203910 unique_id port 203910 remote_ip 10.8.1.90 203914 username godarzi 203914 kill_reason Another user logged on this global unique id 203914 mac 203914 bytes_out 0 203914 bytes_in 0 203914 station_ip 5.202.98.177 203914 port 83 203914 unique_id port 203914 remote_ip 10.8.1.78 203915 username barzegar 203915 mac 203915 bytes_out 0 203915 bytes_in 0 203915 station_ip 5.119.85.222 203915 port 91 203915 unique_id port 203915 remote_ip 10.8.1.6 203917 username farhad3 203917 kill_reason Another user logged on this global unique id 203917 mac 203917 bytes_out 0 203917 bytes_in 0 203917 station_ip 5.120.173.80 203917 port 31 203917 unique_id port 203924 username fezealinaghi 203924 mac 203924 bytes_out 0 203898 bytes_in 0 203898 station_ip 5.120.24.165 203898 port 83 203898 unique_id port 203898 remote_ip 10.8.1.14 203901 username daryaei1233 203901 mac 203901 bytes_out 0 203901 bytes_in 0 203901 station_ip 37.129.173.80 203901 port 40 203901 unique_id port 203901 remote_ip 10.8.0.242 203903 username barzegar 203903 mac 203903 bytes_out 0 203903 bytes_in 0 203903 station_ip 5.119.85.222 203903 port 90 203903 unique_id port 203903 remote_ip 10.8.1.6 203905 username barzegar 203905 mac 203905 bytes_out 2430 203905 bytes_in 4835 203905 station_ip 5.119.85.222 203905 port 83 203905 unique_id port 203905 remote_ip 10.8.1.6 203907 username barzegar 203907 mac 203907 bytes_out 0 203907 bytes_in 0 203907 station_ip 5.119.85.222 203907 port 91 203907 unique_id port 203907 remote_ip 10.8.1.6 203911 username daryaei1233 203911 mac 203911 bytes_out 0 203911 bytes_in 0 203911 station_ip 83.122.53.156 203911 port 90 203911 unique_id port 203911 remote_ip 10.8.1.230 203919 username rahim 203919 mac 203919 bytes_out 0 203919 bytes_in 0 203919 station_ip 5.120.3.58 203919 port 91 203919 unique_id port 203919 remote_ip 10.8.1.90 203920 username meghdad1616 203920 mac 203920 bytes_out 0 203920 bytes_in 0 203920 station_ip 5.120.186.91 203920 port 93 203920 unique_id port 203920 remote_ip 10.8.1.142 203921 username rahim 203921 mac 203921 bytes_out 761514 203921 bytes_in 71506 203921 station_ip 5.120.3.58 203921 port 91 203921 unique_id port 203921 remote_ip 10.8.1.90 203923 username farhad3 203923 kill_reason Another user logged on this global unique id 203923 mac 203923 bytes_out 0 203923 bytes_in 0 203923 station_ip 5.120.173.80 203923 port 31 203923 unique_id port 203931 username meghdad1616 203931 mac 203931 bytes_out 0 203931 bytes_in 0 203931 station_ip 5.120.186.91 203931 port 41 203931 unique_id port 203931 remote_ip 10.8.0.126 203939 username hatami 203939 mac 203939 bytes_out 569732 203939 bytes_in 4378123 203939 station_ip 151.235.111.197 203939 port 92 203939 unique_id port 203939 remote_ip 10.8.1.26 203941 username pourshad 203941 mac 203941 bytes_out 710353 203941 bytes_in 10382696 203941 station_ip 5.120.229.1 203941 port 91 203941 unique_id port 203941 remote_ip 10.8.1.58 203944 username pourshad 203944 mac 203944 bytes_out 140557 203944 bytes_in 448342 203944 station_ip 5.120.229.1 203944 port 92 203944 unique_id port 203944 remote_ip 10.8.1.58 203947 username godarzi 203947 kill_reason Another user logged on this global unique id 203947 mac 203947 bytes_out 0 203947 bytes_in 0 203947 station_ip 5.202.98.177 203947 port 83 203947 unique_id port 203949 username rahim 203949 mac 203949 bytes_out 0 203949 bytes_in 0 203949 station_ip 5.120.3.58 203949 port 95 203949 unique_id port 203949 remote_ip 10.8.1.90 203956 username fezealinaghi 203956 mac 203956 bytes_out 0 203956 bytes_in 0 203956 station_ip 83.122.21.96 203956 port 40 203956 unique_id port 203956 remote_ip 10.8.0.98 203958 username mosi 203958 kill_reason Another user logged on this global unique id 203958 mac 203958 bytes_out 0 203958 bytes_in 0 203958 station_ip 151.235.106.19 203958 port 96 203958 unique_id port 203960 username rahim 203960 mac 203960 bytes_out 0 203960 bytes_in 0 203960 station_ip 5.120.3.58 203960 port 93 203960 unique_id port 203960 remote_ip 10.8.1.90 203962 username rahim 203962 mac 203962 bytes_out 0 203962 bytes_in 0 203962 station_ip 5.120.3.58 203962 port 92 203962 unique_id port 203899 bytes_in 0 203899 station_ip 37.129.173.80 203899 port 42 203899 unique_id port 203899 remote_ip 10.8.0.242 203900 username mohammadjavad 203900 mac 203900 bytes_out 0 203900 bytes_in 0 203900 station_ip 83.122.187.62 203900 port 41 203900 unique_id port 203902 username rahim 203902 mac 203902 bytes_out 0 203902 bytes_in 0 203902 station_ip 5.120.3.58 203902 port 83 203902 unique_id port 203902 remote_ip 10.8.1.90 203909 username farhad3 203909 kill_reason Another user logged on this global unique id 203909 mac 203909 bytes_out 0 203909 bytes_in 0 203909 station_ip 5.120.173.80 203909 port 31 203909 unique_id port 203909 remote_ip 10.8.0.46 203912 username rahim 203912 mac 203912 bytes_out 0 203912 bytes_in 0 203912 station_ip 5.120.3.58 203912 port 90 203912 unique_id port 203912 remote_ip 10.8.1.90 203913 username farhad3 203913 kill_reason Another user logged on this global unique id 203913 mac 203913 bytes_out 0 203913 bytes_in 0 203913 station_ip 5.120.173.80 203913 port 31 203913 unique_id port 203916 username pourshad 203916 mac 203916 bytes_out 0 203916 bytes_in 0 203916 station_ip 5.120.229.1 203916 port 82 203916 unique_id port 203918 username rahim 203918 mac 203918 bytes_out 0 203918 bytes_in 0 203918 station_ip 5.120.3.58 203918 port 91 203918 unique_id port 203918 remote_ip 10.8.1.90 203922 username rahim 203922 mac 203922 bytes_out 0 203922 bytes_in 0 203922 station_ip 5.120.3.58 203922 port 91 203922 unique_id port 203922 remote_ip 10.8.1.90 203927 username barzegar 203927 mac 203927 bytes_out 0 203927 bytes_in 0 203927 station_ip 5.119.85.222 203927 port 82 203927 unique_id port 203927 remote_ip 10.8.1.6 203930 username fezealinaghi 203930 mac 203930 bytes_out 874847 203930 bytes_in 9437531 203930 station_ip 83.122.21.96 203930 port 40 203930 unique_id port 203930 remote_ip 10.8.0.98 203933 username meghdad1616 203933 mac 203933 bytes_out 0 203933 bytes_in 0 203933 station_ip 5.120.186.91 203933 port 93 203933 unique_id port 203933 remote_ip 10.8.1.142 203935 username arash 203935 mac 203935 bytes_out 0 203935 bytes_in 0 203935 station_ip 37.27.63.203 203935 port 28 203935 unique_id port 203935 remote_ip 10.8.0.162 203936 username barzegar 203936 mac 203936 bytes_out 0 203936 bytes_in 0 203936 station_ip 5.119.85.222 203936 port 94 203936 unique_id port 203936 remote_ip 10.8.1.6 203937 username farhad3 203937 mac 203937 bytes_out 0 203937 bytes_in 0 203937 station_ip 5.120.173.80 203937 port 31 203937 unique_id port 203940 username saeed9658 203940 kill_reason Relative expiration date has reached 203940 mac 203940 bytes_out 0 203940 bytes_in 0 203940 station_ip 5.119.124.210 203940 port 92 203940 unique_id port 203942 username kalantary6037 203942 mac 203942 bytes_out 0 203942 bytes_in 0 203942 station_ip 83.122.112.74 203942 port 46 203942 unique_id port 203942 remote_ip 10.8.0.10 203943 username rahim 203943 mac 203943 bytes_out 0 203943 bytes_in 0 203943 station_ip 5.120.3.58 203943 port 94 203943 unique_id port 203943 remote_ip 10.8.1.90 203946 username barzegar 203946 mac 203946 bytes_out 0 203946 bytes_in 0 203946 station_ip 5.119.85.222 203946 port 94 203946 unique_id port 203946 remote_ip 10.8.1.6 203951 username barzegar8595 203951 mac 203951 bytes_out 0 203951 bytes_in 0 203951 station_ip 46.225.211.142 203951 port 82 203951 unique_id port 203951 remote_ip 10.8.1.50 203952 username farhad3 203924 bytes_in 0 203924 station_ip 83.122.21.96 203924 port 40 203924 unique_id port 203924 remote_ip 10.8.0.98 203925 username fezealinaghi 203925 mac 203925 bytes_out 0 203925 bytes_in 0 203925 station_ip 83.122.21.96 203925 port 41 203925 unique_id port 203925 remote_ip 10.8.0.98 203926 username pourshad 203926 mac 203926 bytes_out 0 203926 bytes_in 0 203926 station_ip 5.120.229.1 203926 port 82 203926 unique_id port 203926 remote_ip 10.8.1.58 203928 username rashidi4690 203928 mac 203928 bytes_out 1129440 203928 bytes_in 2978343 203928 station_ip 5.119.103.200 203928 port 92 203928 unique_id port 203928 remote_ip 10.8.1.158 203929 username rahim 203929 mac 203929 bytes_out 0 203929 bytes_in 0 203929 station_ip 5.120.3.58 203929 port 93 203929 unique_id port 203929 remote_ip 10.8.1.90 203932 username rashidi4690 203932 mac 203932 bytes_out 276886 203932 bytes_in 2755974 203932 station_ip 5.119.103.200 203932 port 92 203932 unique_id port 203932 remote_ip 10.8.1.158 203934 username pourshad 203934 mac 203934 bytes_out 0 203934 bytes_in 0 203934 station_ip 5.120.229.1 203934 port 91 203934 unique_id port 203934 remote_ip 10.8.1.58 203938 username saeed9658 203938 kill_reason Relative expiration date has reached 203938 mac 203938 bytes_out 0 203938 bytes_in 0 203938 station_ip 5.119.124.210 203938 port 28 203938 unique_id port 203945 username barzegar 203945 mac 203945 bytes_out 0 203945 bytes_in 0 203945 station_ip 5.119.85.222 203945 port 31 203945 unique_id port 203945 remote_ip 10.8.0.14 203948 username kalantary6037 203948 mac 203948 bytes_out 0 203948 bytes_in 0 203948 station_ip 83.122.195.199 203948 port 28 203948 unique_id port 203948 remote_ip 10.8.0.10 203950 username pourshad 203950 kill_reason Another user logged on this global unique id 203950 mac 203950 bytes_out 0 203950 bytes_in 0 203950 station_ip 5.120.229.1 203950 port 92 203950 unique_id port 203950 remote_ip 10.8.1.58 203953 username arash 203953 kill_reason Another user logged on this global unique id 203953 mac 203953 bytes_out 0 203953 bytes_in 0 203953 station_ip 37.27.63.203 203953 port 93 203953 unique_id port 203953 remote_ip 10.8.1.54 203955 username barzegar 203955 mac 203955 bytes_out 1697344 203955 bytes_in 1642362 203955 station_ip 5.119.85.222 203955 port 95 203955 unique_id port 203955 remote_ip 10.8.1.6 203957 username pourshad 203957 mac 203957 bytes_out 0 203957 bytes_in 0 203957 station_ip 5.120.229.1 203957 port 92 203957 unique_id port 203961 username pourshad 203961 mac 203961 bytes_out 21638 203961 bytes_in 9423 203961 station_ip 5.120.229.1 203961 port 92 203961 unique_id port 203961 remote_ip 10.8.1.58 203965 username rahim 203965 mac 203965 bytes_out 0 203965 bytes_in 0 203965 station_ip 5.120.3.58 203965 port 93 203965 unique_id port 203965 remote_ip 10.8.1.90 203967 username mohammadjavad 203967 kill_reason Another user logged on this global unique id 203967 mac 203967 bytes_out 0 203967 bytes_in 0 203967 station_ip 83.122.249.18 203967 port 28 203967 unique_id port 203967 remote_ip 10.8.0.58 203970 username rahim 203970 mac 203970 bytes_out 0 203970 bytes_in 0 203970 station_ip 5.120.3.58 203970 port 94 203970 unique_id port 203970 remote_ip 10.8.1.90 203977 username rahim 203977 mac 203977 bytes_out 0 203977 bytes_in 0 203977 station_ip 5.120.3.58 203977 port 95 203977 unique_id port 203977 remote_ip 10.8.1.90 203984 username daryaei1233 203984 mac 203984 bytes_out 14783 203984 bytes_in 57570 203952 kill_reason Another user logged on this global unique id 203952 mac 203952 bytes_out 0 203952 bytes_in 0 203952 station_ip 5.120.173.80 203952 port 91 203952 unique_id port 203952 remote_ip 10.8.1.38 203954 username rashidi4690 203954 mac 203954 bytes_out 0 203954 bytes_in 0 203954 station_ip 5.119.103.200 203954 port 94 203954 unique_id port 203954 remote_ip 10.8.1.158 203959 username arash 203959 mac 203959 bytes_out 0 203959 bytes_in 0 203959 station_ip 37.27.63.203 203959 port 93 203959 unique_id port 203969 username pourshad 203969 kill_reason Another user logged on this global unique id 203969 mac 203969 bytes_out 0 203969 bytes_in 0 203969 station_ip 5.120.229.1 203969 port 93 203969 unique_id port 203969 remote_ip 10.8.1.58 203971 username rahim 203971 mac 203971 bytes_out 0 203971 bytes_in 0 203971 station_ip 5.120.3.58 203971 port 94 203971 unique_id port 203971 remote_ip 10.8.1.90 203973 username daryaei1233 203973 mac 203973 bytes_out 0 203973 bytes_in 0 203973 station_ip 83.122.103.152 203973 port 28 203973 unique_id port 203973 remote_ip 10.8.0.242 203974 username rahim 203974 mac 203974 bytes_out 0 203974 bytes_in 0 203974 station_ip 5.120.3.58 203974 port 95 203974 unique_id port 203974 remote_ip 10.8.1.90 203975 username sabaghnezhad 203975 mac 203975 bytes_out 0 203975 bytes_in 0 203975 station_ip 83.122.21.63 203975 port 25 203975 unique_id port 203975 remote_ip 10.8.0.18 203981 username daryaei1233 203981 mac 203981 bytes_out 0 203981 bytes_in 0 203981 station_ip 83.122.103.152 203981 port 28 203981 unique_id port 203981 remote_ip 10.8.0.242 203982 username farhad3 203982 kill_reason Another user logged on this global unique id 203982 mac 203982 bytes_out 0 203982 bytes_in 0 203982 station_ip 5.120.173.80 203982 port 91 203982 unique_id port 203983 username daryaei1233 203983 mac 203983 bytes_out 0 203983 bytes_in 0 203983 station_ip 83.122.103.152 203983 port 28 203983 unique_id port 203983 remote_ip 10.8.0.242 203998 username rahim 203998 mac 203998 bytes_out 793621 203998 bytes_in 5785078 203998 station_ip 5.120.3.58 203998 port 28 203998 unique_id port 203998 remote_ip 10.8.0.230 204000 username farhad3 204000 mac 204000 bytes_out 0 204000 bytes_in 0 204000 station_ip 5.120.173.80 204000 port 91 204000 unique_id port 204000 remote_ip 10.8.1.38 204006 username pourshad 204006 mac 204006 bytes_out 0 204006 bytes_in 0 204006 station_ip 5.120.229.1 204006 port 97 204006 unique_id port 204006 remote_ip 10.8.1.58 204007 username rahim 204007 mac 204007 bytes_out 0 204007 bytes_in 0 204007 station_ip 5.120.3.58 204007 port 82 204007 unique_id port 204007 remote_ip 10.8.1.90 204016 username barzegar8595 204016 mac 204016 bytes_out 0 204016 bytes_in 0 204016 station_ip 93.114.18.162 204016 port 94 204016 unique_id port 204016 remote_ip 10.8.1.50 204023 username barzegar8595 204023 mac 204023 bytes_out 169544 204023 bytes_in 293382 204023 station_ip 93.114.18.162 204023 port 40 204023 unique_id port 204023 remote_ip 10.8.0.82 204028 username mammad 204028 unique_id port 204028 terminate_cause User-Request 204028 bytes_out 928666 204028 bytes_in 12287247 204028 station_ip 46.100.216.236 204028 port 15729972 204028 nas_port_type Virtual 204028 remote_ip 5.5.5.29 204032 username aminvpn 204032 unique_id port 204032 terminate_cause Lost-Carrier 204032 bytes_out 21805 204032 bytes_in 63654 204032 station_ip 83.123.174.130 204032 port 15729973 204032 nas_port_type Virtual 204032 remote_ip 5.5.5.30 203962 remote_ip 10.8.1.90 203963 username farhad3 203963 kill_reason Another user logged on this global unique id 203963 mac 203963 bytes_out 0 203963 bytes_in 0 203963 station_ip 5.120.173.80 203963 port 91 203963 unique_id port 203964 username godarzi 203964 kill_reason Another user logged on this global unique id 203964 mac 203964 bytes_out 0 203964 bytes_in 0 203964 station_ip 5.202.98.177 203964 port 83 203964 unique_id port 203966 username rahim 203966 mac 203966 bytes_out 0 203966 bytes_in 0 203966 station_ip 5.120.3.58 203966 port 93 203966 unique_id port 203966 remote_ip 10.8.1.90 203968 username rahim 203968 mac 203968 bytes_out 0 203968 bytes_in 0 203968 station_ip 5.120.3.58 203968 port 94 203968 unique_id port 203968 remote_ip 10.8.1.90 203972 username mohammadjavad 203972 mac 203972 bytes_out 0 203972 bytes_in 0 203972 station_ip 83.122.249.18 203972 port 28 203972 unique_id port 203976 username kalantary6037 203976 mac 203976 bytes_out 26447 203976 bytes_in 48238 203976 station_ip 83.123.185.235 203976 port 95 203976 unique_id port 203976 remote_ip 10.8.1.150 203978 username rahim 203978 mac 203978 bytes_out 0 203978 bytes_in 0 203978 station_ip 5.120.3.58 203978 port 95 203978 unique_id port 203978 remote_ip 10.8.1.90 203979 username daryaei1233 203979 mac 203979 bytes_out 0 203979 bytes_in 0 203979 station_ip 83.122.103.152 203979 port 28 203979 unique_id port 203979 remote_ip 10.8.0.242 203980 username daryaei1233 203980 mac 203980 bytes_out 0 203980 bytes_in 0 203980 station_ip 83.122.103.152 203980 port 95 203980 unique_id port 203980 remote_ip 10.8.1.230 203987 username daryaei1233 203987 mac 203987 bytes_out 0 203987 bytes_in 0 203987 station_ip 83.122.103.152 203987 port 28 203987 unique_id port 203987 remote_ip 10.8.0.242 203991 username esmaeili1522 203991 mac 203991 bytes_out 378068 203991 bytes_in 4265766 203991 station_ip 5.119.130.218 203991 port 95 203991 unique_id port 203991 remote_ip 10.8.1.106 203992 username daryaei1233 203992 mac 203992 bytes_out 0 203992 bytes_in 0 203992 station_ip 83.122.103.152 203992 port 93 203992 unique_id port 203992 remote_ip 10.8.1.230 203995 username barzegar8595 203995 mac 203995 bytes_out 0 203995 bytes_in 0 203995 station_ip 46.225.211.142 203995 port 82 203995 unique_id port 203995 remote_ip 10.8.1.50 203996 username rashidi4690 203996 mac 203996 bytes_out 0 203996 bytes_in 0 203996 station_ip 5.119.103.200 203996 port 93 203996 unique_id port 203996 remote_ip 10.8.1.158 203997 username farhad3 203997 kill_reason Another user logged on this global unique id 203997 mac 203997 bytes_out 0 203997 bytes_in 0 203997 station_ip 5.120.173.80 203997 port 91 203997 unique_id port 203999 username farhad3 203999 mac 203999 bytes_out 0 203999 bytes_in 0 203999 station_ip 5.120.173.80 203999 port 91 203999 unique_id port 204003 username rahim 204003 mac 204003 bytes_out 0 204003 bytes_in 0 204003 station_ip 5.120.3.58 204003 port 93 204003 unique_id port 204003 remote_ip 10.8.1.90 204009 username yarmohamadi7916 204009 mac 204009 bytes_out 0 204009 bytes_in 0 204009 station_ip 5.120.74.147 204009 port 90 204009 unique_id port 204009 remote_ip 10.8.1.154 204011 username rahim 204011 kill_reason Maximum check online fails reached 204011 mac 204011 bytes_out 0 204011 bytes_in 0 204011 station_ip 5.120.3.58 204011 port 82 204011 unique_id port 204012 username mosi 204012 kill_reason Another user logged on this global unique id 204012 mac 203984 station_ip 83.122.103.152 203984 port 40 203984 unique_id port 203984 remote_ip 10.8.0.242 203985 username daryaei1233 203985 mac 203985 bytes_out 0 203985 bytes_in 0 203985 station_ip 83.122.103.152 203985 port 28 203985 unique_id port 203985 remote_ip 10.8.0.242 203986 username daryaei1233 203986 mac 203986 bytes_out 0 203986 bytes_in 0 203986 station_ip 83.122.103.152 203986 port 28 203986 unique_id port 203986 remote_ip 10.8.0.242 203988 username daryaei1233 203988 mac 203988 bytes_out 0 203988 bytes_in 0 203988 station_ip 83.122.103.152 203988 port 28 203988 unique_id port 203988 remote_ip 10.8.0.242 203989 username pourshad 203989 mac 203989 bytes_out 0 203989 bytes_in 0 203989 station_ip 5.120.229.1 203989 port 93 203989 unique_id port 203990 username rahim 203990 mac 203990 bytes_out 0 203990 bytes_in 0 203990 station_ip 5.120.3.58 203990 port 93 203990 unique_id port 203990 remote_ip 10.8.1.90 203993 username tahmorsi 203993 mac 203993 bytes_out 0 203993 bytes_in 0 203993 station_ip 86.57.36.170 203993 port 94 203993 unique_id port 203993 remote_ip 10.8.1.102 203994 username kalantary6037 203994 mac 203994 bytes_out 0 203994 bytes_in 0 203994 station_ip 83.123.128.134 203994 port 98 203994 unique_id port 203994 remote_ip 10.8.1.150 204001 username khademi 204001 kill_reason Another user logged on this global unique id 204001 mac 204001 bytes_out 0 204001 bytes_in 0 204001 station_ip 37.129.212.3 204001 port 84 204001 unique_id port 204002 username rashidi4690 204002 mac 204002 bytes_out 0 204002 bytes_in 0 204002 station_ip 5.120.117.190 204002 port 82 204002 unique_id port 204002 remote_ip 10.8.1.158 204004 username amirzadeh1339 204004 unique_id port 204004 terminate_cause User-Request 204004 bytes_out 17313102 204004 bytes_in 476425358 204004 station_ip 37.27.46.14 204004 port 15729966 204004 nas_port_type Virtual 204004 remote_ip 5.5.5.37 204005 username rahim 204005 mac 204005 bytes_out 0 204005 bytes_in 0 204005 station_ip 5.120.3.58 204005 port 82 204005 unique_id port 204005 remote_ip 10.8.1.90 204008 username rahim 204008 mac 204008 bytes_out 0 204008 bytes_in 0 204008 station_ip 5.120.3.58 204008 port 94 204008 unique_id port 204008 remote_ip 10.8.1.90 204010 username rahim 204010 mac 204010 bytes_out 0 204010 bytes_in 0 204010 station_ip 5.120.3.58 204010 port 94 204010 unique_id port 204010 remote_ip 10.8.1.90 204013 username farhad3 204013 mac 204013 bytes_out 0 204013 bytes_in 0 204013 station_ip 5.120.173.80 204013 port 93 204013 unique_id port 204013 remote_ip 10.8.1.38 204018 username rahim 204018 mac 204018 bytes_out 0 204018 bytes_in 0 204018 station_ip 5.120.3.58 204018 port 90 204018 unique_id port 204018 remote_ip 10.8.1.90 204021 username barzegar8595 204021 mac 204021 bytes_out 0 204021 bytes_in 0 204021 station_ip 93.114.18.162 204021 port 93 204021 unique_id port 204021 remote_ip 10.8.1.50 204024 username rashidi4690 204024 mac 204024 bytes_out 0 204024 bytes_in 0 204024 station_ip 5.119.90.235 204024 port 93 204024 unique_id port 204024 remote_ip 10.8.1.158 204033 username rashidi4690 204033 mac 204033 bytes_out 0 204033 bytes_in 0 204033 station_ip 5.119.90.235 204033 port 92 204033 unique_id port 204033 remote_ip 10.8.1.158 204034 username rashidi4690 204034 mac 204034 bytes_out 0 204034 bytes_in 0 204034 station_ip 5.120.154.13 204034 port 93 204034 unique_id port 204034 remote_ip 10.8.1.158 204012 bytes_out 0 204012 bytes_in 0 204012 station_ip 151.235.106.19 204012 port 96 204012 unique_id port 204014 username hamid.e 204014 unique_id port 204014 terminate_cause User-Request 204014 bytes_out 23862844 204014 bytes_in 557405151 204014 station_ip 37.27.55.191 204014 port 15729967 204014 nas_port_type Virtual 204014 remote_ip 5.5.5.40 204015 username barzegar8595 204015 mac 204015 bytes_out 0 204015 bytes_in 0 204015 station_ip 46.225.211.142 204015 port 93 204015 unique_id port 204015 remote_ip 10.8.1.50 204017 username barzegar8595 204017 mac 204017 bytes_out 0 204017 bytes_in 0 204017 station_ip 46.225.211.142 204017 port 93 204017 unique_id port 204017 remote_ip 10.8.1.50 204019 username barzegar8595 204019 mac 204019 bytes_out 0 204019 bytes_in 0 204019 station_ip 93.114.18.162 204019 port 95 204019 unique_id port 204019 remote_ip 10.8.1.50 204020 username barzegar8595 204020 mac 204020 bytes_out 0 204020 bytes_in 0 204020 station_ip 46.225.211.142 204020 port 90 204020 unique_id port 204020 remote_ip 10.8.1.50 204022 username barzegar 204022 mac 204022 bytes_out 0 204022 bytes_in 0 204022 station_ip 5.120.177.27 204022 port 94 204022 unique_id port 204022 remote_ip 10.8.1.6 204025 username barzegar8595 204025 mac 204025 bytes_out 0 204025 bytes_in 0 204025 station_ip 46.225.211.142 204025 port 90 204025 unique_id port 204025 remote_ip 10.8.1.50 204026 username malekpoir 204026 mac 204026 bytes_out 0 204026 bytes_in 0 204026 station_ip 5.120.82.59 204026 port 92 204026 unique_id port 204026 remote_ip 10.8.1.70 204027 username dortaj3792 204027 mac 204027 bytes_out 153192 204027 bytes_in 206260 204027 station_ip 5.120.112.127 204027 port 41 204027 unique_id port 204027 remote_ip 10.8.0.30 204029 username pourshad 204029 mac 204029 bytes_out 70840 204029 bytes_in 88554 204029 station_ip 5.120.229.1 204029 port 91 204029 unique_id port 204029 remote_ip 10.8.1.58 204030 username daryaei1233 204030 mac 204030 bytes_out 276032 204030 bytes_in 3857224 204030 station_ip 83.122.103.152 204030 port 40 204030 unique_id port 204030 remote_ip 10.8.0.242 204031 username mosi 204031 kill_reason Another user logged on this global unique id 204031 mac 204031 bytes_out 0 204031 bytes_in 0 204031 station_ip 151.235.106.19 204031 port 96 204031 unique_id port 204035 username mohammadjavad 204035 kill_reason Another user logged on this global unique id 204035 mac 204035 bytes_out 0 204035 bytes_in 0 204035 station_ip 83.122.166.14 204035 port 28 204035 unique_id port 204035 remote_ip 10.8.0.58 204040 username farhad3 204040 kill_reason Another user logged on this global unique id 204040 mac 204040 bytes_out 0 204040 bytes_in 0 204040 station_ip 5.120.173.80 204040 port 91 204040 unique_id port 204040 remote_ip 10.8.1.38 204043 username daryaei1233 204043 mac 204043 bytes_out 454057 204043 bytes_in 4933027 204043 station_ip 83.122.103.152 204043 port 40 204043 unique_id port 204043 remote_ip 10.8.0.242 204046 username barzegar8595 204046 mac 204046 bytes_out 0 204046 bytes_in 0 204046 station_ip 94.24.87.20 204046 port 41 204046 unique_id port 204046 remote_ip 10.8.0.82 204049 username farhad3 204049 mac 204049 bytes_out 0 204049 bytes_in 0 204049 station_ip 5.120.173.80 204049 port 91 204049 unique_id port 204049 remote_ip 10.8.1.38 204051 username daryaei1233 204051 mac 204051 bytes_out 18431 204051 bytes_in 29087 204051 station_ip 83.122.103.152 204051 port 28 204051 unique_id port 204051 remote_ip 10.8.0.242 204053 username daryaei1233 204036 username kalantary6037 204036 mac 204036 bytes_out 0 204036 bytes_in 0 204036 station_ip 83.122.70.72 204036 port 92 204036 unique_id port 204036 remote_ip 10.8.1.150 204039 username yaghobi 204039 mac 204039 bytes_out 982818 204039 bytes_in 11378892 204039 station_ip 37.129.64.189 204039 port 41 204039 unique_id port 204039 remote_ip 10.8.0.174 204041 username pourshad 204041 mac 204041 bytes_out 0 204041 bytes_in 0 204041 station_ip 5.120.229.1 204041 port 92 204041 unique_id port 204041 remote_ip 10.8.1.58 204042 username nilufarrajaei 204042 mac 204042 bytes_out 8010 204042 bytes_in 10248 204042 station_ip 83.122.186.111 204042 port 41 204042 unique_id port 204042 remote_ip 10.8.0.94 204045 username daryaei1233 204045 mac 204045 bytes_out 2156 204045 bytes_in 4648 204045 station_ip 83.122.103.152 204045 port 45 204045 unique_id port 204045 remote_ip 10.8.0.242 204047 username farhad3 204047 mac 204047 bytes_out 0 204047 bytes_in 0 204047 station_ip 5.120.173.80 204047 port 91 204047 unique_id port 204050 username malekpoir 204050 kill_reason Another user logged on this global unique id 204050 mac 204050 bytes_out 0 204050 bytes_in 0 204050 station_ip 5.120.82.59 204050 port 90 204050 unique_id port 204050 remote_ip 10.8.1.70 204052 username daryaei1233 204052 mac 204052 bytes_out 0 204052 bytes_in 0 204052 station_ip 83.122.103.152 204052 port 28 204052 unique_id port 204052 remote_ip 10.8.0.242 204054 username daryaei1233 204054 mac 204054 bytes_out 0 204054 bytes_in 0 204054 station_ip 83.122.103.152 204054 port 28 204054 unique_id port 204054 remote_ip 10.8.0.242 204057 username pourshad 204057 mac 204057 bytes_out 366170 204057 bytes_in 1019523 204057 station_ip 5.120.229.1 204057 port 25 204057 unique_id port 204057 remote_ip 10.8.0.54 204058 username mansur 204058 kill_reason Relative expiration date has reached 204058 mac 204058 bytes_out 0 204058 bytes_in 0 204058 station_ip 5.119.205.242 204058 port 25 204058 unique_id port 204065 username daryaei1233 204065 mac 204065 bytes_out 0 204065 bytes_in 0 204065 station_ip 83.122.103.152 204065 port 25 204065 unique_id port 204065 remote_ip 10.8.0.242 204066 username daryaei1233 204066 mac 204066 bytes_out 0 204066 bytes_in 0 204066 station_ip 83.122.103.152 204066 port 90 204066 unique_id port 204066 remote_ip 10.8.1.230 204081 username daryaei1233 204081 mac 204081 bytes_out 0 204081 bytes_in 0 204081 station_ip 83.122.103.152 204081 port 25 204081 unique_id port 204081 remote_ip 10.8.0.242 204082 username daryaei1233 204082 kill_reason Maximum check online fails reached 204082 mac 204082 bytes_out 0 204082 bytes_in 0 204082 station_ip 83.122.103.152 204082 port 90 204082 unique_id port 204085 username daryaei1233 204085 mac 204085 bytes_out 290524 204085 bytes_in 3379215 204085 station_ip 83.122.103.152 204085 port 25 204085 unique_id port 204085 remote_ip 10.8.0.242 204087 username pourshad 204087 mac 204087 bytes_out 0 204087 bytes_in 0 204087 station_ip 5.120.229.1 204087 port 83 204087 unique_id port 204087 remote_ip 10.8.1.58 204093 username farhad3 204093 mac 204093 bytes_out 124638 204093 bytes_in 505898 204093 station_ip 5.120.173.80 204093 port 83 204093 unique_id port 204093 remote_ip 10.8.1.38 204096 username mosi 204096 kill_reason Another user logged on this global unique id 204096 mac 204096 bytes_out 0 204096 bytes_in 0 204096 station_ip 151.235.106.19 204096 port 96 204096 unique_id port 204101 username barzegar8595 204037 username nilufarrajaei 204037 mac 204037 bytes_out 3897977 204037 bytes_in 44498323 204037 station_ip 83.122.186.111 204037 port 25 204037 unique_id port 204037 remote_ip 10.8.0.94 204038 username kalantary6037 204038 mac 204038 bytes_out 0 204038 bytes_in 0 204038 station_ip 83.122.70.72 204038 port 92 204038 unique_id port 204038 remote_ip 10.8.1.150 204044 username mohammadjavad 204044 mac 204044 bytes_out 0 204044 bytes_in 0 204044 station_ip 83.122.166.14 204044 port 28 204044 unique_id port 204048 username aminvpn 204048 unique_id port 204048 terminate_cause Lost-Carrier 204048 bytes_out 51287 204048 bytes_in 117052 204048 station_ip 83.123.174.130 204048 port 15729975 204048 nas_port_type Virtual 204048 remote_ip 5.5.5.30 204061 username pourshad 204061 mac 204061 bytes_out 0 204061 bytes_in 0 204061 station_ip 5.120.229.1 204061 port 90 204061 unique_id port 204061 remote_ip 10.8.1.58 204063 username daryaei1233 204063 mac 204063 bytes_out 0 204063 bytes_in 0 204063 station_ip 83.122.103.152 204063 port 90 204063 unique_id port 204063 remote_ip 10.8.1.230 204067 username daryaei1233 204067 mac 204067 bytes_out 0 204067 bytes_in 0 204067 station_ip 83.122.103.152 204067 port 25 204067 unique_id port 204067 remote_ip 10.8.0.242 204070 username seyedrezaei2572 204070 mac 204070 bytes_out 443096 204070 bytes_in 1057395 204070 station_ip 83.123.70.57 204070 port 28 204070 unique_id port 204070 remote_ip 10.8.0.186 204072 username daryaei1233 204072 mac 204072 bytes_out 0 204072 bytes_in 0 204072 station_ip 83.122.103.152 204072 port 25 204072 unique_id port 204072 remote_ip 10.8.0.242 204073 username daryaei1233 204073 mac 204073 bytes_out 0 204073 bytes_in 0 204073 station_ip 83.122.103.152 204073 port 92 204073 unique_id port 204073 remote_ip 10.8.1.230 204076 username pourshad 204076 mac 204076 bytes_out 0 204076 bytes_in 0 204076 station_ip 5.120.229.1 204076 port 90 204076 unique_id port 204076 remote_ip 10.8.1.58 204077 username daryaei1233 204077 mac 204077 bytes_out 0 204077 bytes_in 0 204077 station_ip 83.122.103.152 204077 port 25 204077 unique_id port 204077 remote_ip 10.8.0.242 204084 username hosseine 204084 mac 204084 bytes_out 24596996 204084 bytes_in 42995205 204084 station_ip 37.129.171.234 204084 port 31 204084 unique_id port 204084 remote_ip 10.8.0.118 204086 username farhad3 204086 mac 204086 bytes_out 0 204086 bytes_in 0 204086 station_ip 5.120.173.80 204086 port 91 204086 unique_id port 204086 remote_ip 10.8.1.38 204088 username farhad3 204088 mac 204088 bytes_out 0 204088 bytes_in 0 204088 station_ip 5.120.173.80 204088 port 83 204088 unique_id port 204088 remote_ip 10.8.1.38 204090 username nilufarrajaei 204090 mac 204090 bytes_out 3623390 204090 bytes_in 34854707 204090 station_ip 83.122.186.111 204090 port 43 204090 unique_id port 204090 remote_ip 10.8.0.94 204091 username nilufarrajaei 204091 mac 204091 bytes_out 0 204091 bytes_in 0 204091 station_ip 5.202.24.57 204091 port 94 204091 unique_id port 204091 remote_ip 10.8.1.138 204094 username barzegar8595 204094 mac 204094 bytes_out 0 204094 bytes_in 0 204094 station_ip 37.27.10.135 204094 port 93 204094 unique_id port 204094 remote_ip 10.8.1.50 204097 username yaghobi 204097 mac 204097 bytes_out 329681 204097 bytes_in 3292595 204097 station_ip 83.122.30.111 204097 port 25 204097 unique_id port 204097 remote_ip 10.8.0.174 204098 username pourshad 204098 mac 204098 bytes_out 213683 204053 mac 204053 bytes_out 0 204053 bytes_in 0 204053 station_ip 83.122.103.152 204053 port 91 204053 unique_id port 204053 remote_ip 10.8.1.230 204055 username daryaei1233 204055 mac 204055 bytes_out 0 204055 bytes_in 0 204055 station_ip 83.122.103.152 204055 port 28 204055 unique_id port 204055 remote_ip 10.8.0.242 204056 username malekpoir 204056 mac 204056 bytes_out 0 204056 bytes_in 0 204056 station_ip 5.120.82.59 204056 port 90 204056 unique_id port 204059 username mosi 204059 kill_reason Another user logged on this global unique id 204059 mac 204059 bytes_out 0 204059 bytes_in 0 204059 station_ip 151.235.106.19 204059 port 96 204059 unique_id port 204060 username daryaei1233 204060 mac 204060 bytes_out 0 204060 bytes_in 0 204060 station_ip 83.122.103.152 204060 port 91 204060 unique_id port 204060 remote_ip 10.8.1.230 204062 username godarzi 204062 kill_reason Another user logged on this global unique id 204062 mac 204062 bytes_out 0 204062 bytes_in 0 204062 station_ip 5.202.98.177 204062 port 83 204062 unique_id port 204064 username daryaei1233 204064 mac 204064 bytes_out 0 204064 bytes_in 0 204064 station_ip 83.122.103.152 204064 port 90 204064 unique_id port 204064 remote_ip 10.8.1.230 204068 username daryaei1233 204068 mac 204068 bytes_out 0 204068 bytes_in 0 204068 station_ip 83.122.103.152 204068 port 25 204068 unique_id port 204068 remote_ip 10.8.0.242 204069 username daryaei1233 204069 mac 204069 bytes_out 0 204069 bytes_in 0 204069 station_ip 83.122.103.152 204069 port 25 204069 unique_id port 204069 remote_ip 10.8.0.242 204071 username saeed9658 204071 kill_reason Relative expiration date has reached 204071 mac 204071 bytes_out 0 204071 bytes_in 0 204071 station_ip 5.119.124.210 204071 port 92 204071 unique_id port 204074 username daryaei1233 204074 mac 204074 bytes_out 0 204074 bytes_in 0 204074 station_ip 83.122.103.152 204074 port 25 204074 unique_id port 204074 remote_ip 10.8.0.242 204075 username godarzi 204075 mac 204075 bytes_out 0 204075 bytes_in 0 204075 station_ip 5.202.98.177 204075 port 83 204075 unique_id port 204078 username daryaei1233 204078 mac 204078 bytes_out 0 204078 bytes_in 0 204078 station_ip 83.122.103.152 204078 port 25 204078 unique_id port 204078 remote_ip 10.8.0.242 204079 username daryaei1233 204079 mac 204079 bytes_out 0 204079 bytes_in 0 204079 station_ip 83.122.103.152 204079 port 25 204079 unique_id port 204079 remote_ip 10.8.0.242 204080 username daryaei1233 204080 mac 204080 bytes_out 0 204080 bytes_in 0 204080 station_ip 83.122.103.152 204080 port 25 204080 unique_id port 204080 remote_ip 10.8.0.242 204083 username daryaei1233 204083 mac 204083 bytes_out 0 204083 bytes_in 0 204083 station_ip 83.122.103.152 204083 port 25 204083 unique_id port 204083 remote_ip 10.8.0.242 204089 username barzegar8595 204089 mac 204089 bytes_out 0 204089 bytes_in 0 204089 station_ip 46.225.211.142 204089 port 93 204089 unique_id port 204089 remote_ip 10.8.1.50 204092 username daryaei1233 204092 mac 204092 bytes_out 977783 204092 bytes_in 14985252 204092 station_ip 83.122.103.152 204092 port 25 204092 unique_id port 204092 remote_ip 10.8.0.242 204095 username houshang 204095 mac 204095 bytes_out 0 204095 bytes_in 0 204095 station_ip 5.119.79.205 204095 port 92 204095 unique_id port 204095 remote_ip 10.8.1.134 204100 username daryaei1233 204100 kill_reason Another user logged on this global unique id 204100 mac 204100 bytes_out 0 204100 bytes_in 0 204098 bytes_in 2126688 204098 station_ip 5.120.229.1 204098 port 94 204098 unique_id port 204098 remote_ip 10.8.1.58 204099 username nilufarrajaei 204099 mac 204099 bytes_out 1768662 204099 bytes_in 21556326 204099 station_ip 83.122.186.111 204099 port 95 204099 unique_id port 204099 remote_ip 10.8.1.138 204104 username esmaeilkazemi 204104 mac 204104 bytes_out 0 204104 bytes_in 0 204104 station_ip 83.122.113.81 204104 port 28 204104 unique_id port 204104 remote_ip 10.8.0.86 204106 username esmaeilkazemi 204106 mac 204106 bytes_out 4361 204106 bytes_in 20929 204106 station_ip 83.122.113.81 204106 port 43 204106 unique_id port 204106 remote_ip 10.8.0.86 204111 username yaghobi 204111 mac 204111 bytes_out 43828 204111 bytes_in 128694 204111 station_ip 83.122.21.147 204111 port 40 204111 unique_id port 204111 remote_ip 10.8.0.174 204113 username iranmanesh4443 204113 mac 204113 bytes_out 0 204113 bytes_in 0 204113 station_ip 5.119.127.202 204113 port 92 204113 unique_id port 204113 remote_ip 10.8.1.122 204115 username hadibarzegar 204115 mac 204115 bytes_out 0 204115 bytes_in 0 204115 station_ip 5.120.115.115 204115 port 97 204115 unique_id port 204115 remote_ip 10.8.1.170 204116 username khademi 204116 kill_reason Another user logged on this global unique id 204116 mac 204116 bytes_out 0 204116 bytes_in 0 204116 station_ip 37.129.212.3 204116 port 84 204116 unique_id port 204120 username aminvpn 204120 unique_id port 204120 terminate_cause User-Request 204120 bytes_out 21994524 204120 bytes_in 2606929 204120 station_ip 31.57.142.166 204120 port 15729981 204120 nas_port_type Virtual 204120 remote_ip 5.5.5.255 204121 username yarmohamadi7916 204121 kill_reason Another user logged on this global unique id 204121 mac 204121 bytes_out 0 204121 bytes_in 0 204121 station_ip 5.120.153.126 204121 port 91 204121 unique_id port 204124 username daryaei1233 204124 mac 204124 bytes_out 0 204124 bytes_in 0 204124 station_ip 83.122.103.152 204124 port 25 204124 unique_id port 204124 remote_ip 10.8.0.242 204126 username nilufarrajaei 204126 mac 204126 bytes_out 0 204126 bytes_in 0 204126 station_ip 83.122.148.251 204126 port 28 204126 unique_id port 204126 remote_ip 10.8.0.94 204129 username daryaei1233 204129 mac 204129 bytes_out 2005 204129 bytes_in 5170 204129 station_ip 83.122.103.152 204129 port 28 204129 unique_id port 204129 remote_ip 10.8.0.242 204130 username daryaei1233 204130 mac 204130 bytes_out 0 204130 bytes_in 0 204130 station_ip 83.122.103.152 204130 port 28 204130 unique_id port 204130 remote_ip 10.8.0.242 204132 username hadibarzegar 204132 kill_reason Another user logged on this global unique id 204132 mac 204132 bytes_out 0 204132 bytes_in 0 204132 station_ip 5.120.115.115 204132 port 93 204132 unique_id port 204132 remote_ip 10.8.1.170 204133 username daryaei1233 204133 mac 204133 bytes_out 0 204133 bytes_in 0 204133 station_ip 83.122.103.152 204133 port 31 204133 unique_id port 204133 remote_ip 10.8.0.242 204137 username daryaei1233 204137 mac 204137 bytes_out 4098 204137 bytes_in 6375 204137 station_ip 83.122.103.152 204137 port 31 204137 unique_id port 204137 remote_ip 10.8.0.242 204139 username malekpoir 204139 mac 204139 bytes_out 0 204139 bytes_in 0 204139 station_ip 5.120.82.59 204139 port 94 204139 unique_id port 204139 remote_ip 10.8.1.70 204143 username farhad3 204143 mac 204143 bytes_out 0 204143 bytes_in 0 204143 station_ip 5.120.173.80 204143 port 99 204143 unique_id port 204143 remote_ip 10.8.1.38 204144 username amirzadeh1339 204100 station_ip 83.122.103.152 204100 port 97 204100 unique_id port 204100 remote_ip 10.8.1.230 204102 username daryaei1233 204102 mac 204102 bytes_out 0 204102 bytes_in 0 204102 station_ip 83.122.103.152 204102 port 97 204102 unique_id port 204114 username pourshad 204114 mac 204114 bytes_out 0 204114 bytes_in 0 204114 station_ip 5.120.229.1 204114 port 93 204114 unique_id port 204114 remote_ip 10.8.1.58 204118 username nilufarrajaei 204118 mac 204118 bytes_out 0 204118 bytes_in 0 204118 station_ip 83.122.186.111 204118 port 28 204118 unique_id port 204118 remote_ip 10.8.0.94 204119 username farhad3 204119 mac 204119 bytes_out 0 204119 bytes_in 0 204119 station_ip 5.120.173.80 204119 port 83 204119 unique_id port 204119 remote_ip 10.8.1.38 204122 username hamid.e 204122 unique_id port 204122 terminate_cause User-Request 204122 bytes_out 19007506 204122 bytes_in 370435261 204122 station_ip 37.27.55.191 204122 port 15729976 204122 nas_port_type Virtual 204122 remote_ip 5.5.5.40 204125 username daryaei1233 204125 mac 204125 bytes_out 0 204125 bytes_in 0 204125 station_ip 83.122.103.152 204125 port 25 204125 unique_id port 204125 remote_ip 10.8.0.242 204134 username yaghobi 204134 mac 204134 bytes_out 0 204134 bytes_in 0 204134 station_ip 83.122.122.27 204134 port 28 204134 unique_id port 204134 remote_ip 10.8.0.174 204136 username barzegar8595 204136 mac 204136 bytes_out 0 204136 bytes_in 0 204136 station_ip 37.27.10.135 204136 port 98 204136 unique_id port 204136 remote_ip 10.8.1.50 204138 username sabaghnezhad 204138 mac 204138 bytes_out 0 204138 bytes_in 0 204138 station_ip 83.122.21.63 204138 port 42 204138 unique_id port 204138 remote_ip 10.8.0.18 204146 username hadibarzegar 204146 mac 204146 bytes_out 0 204146 bytes_in 0 204146 station_ip 5.120.115.115 204146 port 93 204146 unique_id port 204148 username kharazmi2920 204148 mac 204148 bytes_out 0 204148 bytes_in 0 204148 station_ip 83.122.221.61 204148 port 43 204148 unique_id port 204148 remote_ip 10.8.0.34 204150 username mammad 204150 unique_id port 204150 terminate_cause User-Request 204150 bytes_out 25084328 204150 bytes_in 130836161 204150 station_ip 46.100.216.236 204150 port 15729978 204150 nas_port_type Virtual 204150 remote_ip 5.5.5.29 204155 username mosi 204155 mac 204155 bytes_out 0 204155 bytes_in 0 204155 station_ip 151.235.106.19 204155 port 96 204155 unique_id port 204156 username daryaei1233 204156 mac 204156 bytes_out 0 204156 bytes_in 0 204156 station_ip 83.122.103.152 204156 port 94 204156 unique_id port 204156 remote_ip 10.8.1.230 204158 username malekpoir 204158 mac 204158 bytes_out 0 204158 bytes_in 0 204158 station_ip 5.120.82.59 204158 port 99 204158 unique_id port 204158 remote_ip 10.8.1.70 204161 username seyedrezaei2572 204161 mac 204161 bytes_out 1661165 204161 bytes_in 12139945 204161 station_ip 83.123.93.29 204161 port 31 204161 unique_id port 204161 remote_ip 10.8.0.186 204164 username daryaei1233 204164 mac 204164 bytes_out 0 204164 bytes_in 0 204164 station_ip 83.122.103.152 204164 port 43 204164 unique_id port 204164 remote_ip 10.8.0.242 204170 username meghdad1616 204170 mac 204170 bytes_out 0 204170 bytes_in 0 204170 station_ip 5.120.186.91 204170 port 102 204170 unique_id port 204172 username meghdad1616 204172 mac 204172 bytes_out 0 204172 bytes_in 0 204172 station_ip 5.120.186.91 204172 port 96 204172 unique_id port 204172 remote_ip 10.8.1.142 204175 username mosi 204101 mac 204101 bytes_out 0 204101 bytes_in 0 204101 station_ip 37.27.10.135 204101 port 95 204101 unique_id port 204101 remote_ip 10.8.1.50 204103 username daryaei1233 204103 mac 204103 bytes_out 0 204103 bytes_in 0 204103 station_ip 83.122.103.152 204103 port 28 204103 unique_id port 204103 remote_ip 10.8.0.242 204105 username barzegar 204105 mac 204105 bytes_out 0 204105 bytes_in 0 204105 station_ip 5.119.144.176 204105 port 98 204105 unique_id port 204105 remote_ip 10.8.1.6 204107 username yaghobi 204107 mac 204107 bytes_out 271535 204107 bytes_in 5524462 204107 station_ip 83.122.21.147 204107 port 40 204107 unique_id port 204107 remote_ip 10.8.0.174 204108 username daryaei1233 204108 mac 204108 bytes_out 0 204108 bytes_in 0 204108 station_ip 83.122.103.152 204108 port 97 204108 unique_id port 204108 remote_ip 10.8.1.230 204109 username nilufarrajaei 204109 mac 204109 bytes_out 79762 204109 bytes_in 158374 204109 station_ip 83.122.186.111 204109 port 25 204109 unique_id port 204109 remote_ip 10.8.0.94 204110 username daryaei1233 204110 mac 204110 bytes_out 0 204110 bytes_in 0 204110 station_ip 83.122.103.152 204110 port 28 204110 unique_id port 204110 remote_ip 10.8.0.242 204112 username hatami 204112 mac 204112 bytes_out 117761 204112 bytes_in 486297 204112 station_ip 151.235.105.117 204112 port 31 204112 unique_id port 204112 remote_ip 10.8.0.78 204117 username yarmohamadi7916 204117 kill_reason Another user logged on this global unique id 204117 mac 204117 bytes_out 0 204117 bytes_in 0 204117 station_ip 5.120.153.126 204117 port 91 204117 unique_id port 204117 remote_ip 10.8.1.154 204123 username daryaei1233 204123 mac 204123 bytes_out 0 204123 bytes_in 0 204123 station_ip 83.122.103.152 204123 port 25 204123 unique_id port 204123 remote_ip 10.8.0.242 204127 username daryaei1233 204127 mac 204127 bytes_out 0 204127 bytes_in 0 204127 station_ip 83.122.103.152 204127 port 28 204127 unique_id port 204127 remote_ip 10.8.0.242 204128 username nilufarrajaei 204128 mac 204128 bytes_out 20309 204128 bytes_in 30191 204128 station_ip 83.122.148.251 204128 port 25 204128 unique_id port 204128 remote_ip 10.8.0.94 204131 username barzegar8595 204131 mac 204131 bytes_out 0 204131 bytes_in 0 204131 station_ip 37.27.10.135 204131 port 95 204131 unique_id port 204131 remote_ip 10.8.1.50 204135 username barzegar8595 204135 kill_reason Maximum check online fails reached 204135 mac 204135 bytes_out 0 204135 bytes_in 0 204135 station_ip 37.27.10.135 204135 port 95 204135 unique_id port 204140 username mosi 204140 kill_reason Another user logged on this global unique id 204140 mac 204140 bytes_out 0 204140 bytes_in 0 204140 station_ip 151.235.106.19 204140 port 96 204140 unique_id port 204141 username yaghobi 204141 mac 204141 bytes_out 0 204141 bytes_in 0 204141 station_ip 83.122.122.27 204141 port 40 204141 unique_id port 204141 remote_ip 10.8.0.174 204142 username alipour1506 204142 kill_reason Another user logged on this global unique id 204142 mac 204142 bytes_out 0 204142 bytes_in 0 204142 station_ip 151.234.23.177 204142 port 88 204142 unique_id port 204142 remote_ip 10.8.1.86 204145 username farhad3 204145 mac 204145 bytes_out 0 204145 bytes_in 0 204145 station_ip 5.120.173.80 204145 port 99 204145 unique_id port 204145 remote_ip 10.8.1.38 204151 username morteza4424 204151 kill_reason Another user logged on this global unique id 204151 mac 204151 bytes_out 0 204151 bytes_in 0 204151 station_ip 83.123.45.101 204151 port 42 204144 unique_id port 204144 terminate_cause User-Request 204144 bytes_out 3365322 204144 bytes_in 21423626 204144 station_ip 37.27.46.14 204144 port 15729977 204144 nas_port_type Virtual 204144 remote_ip 5.5.5.37 204147 username kharazmi2920 204147 mac 204147 bytes_out 2806894 204147 bytes_in 38597283 204147 station_ip 83.122.221.61 204147 port 28 204147 unique_id port 204147 remote_ip 10.8.0.34 204149 username mohammadjavad 204149 mac 204149 bytes_out 47105 204149 bytes_in 89706 204149 station_ip 83.122.210.50 204149 port 28 204149 unique_id port 204149 remote_ip 10.8.0.58 204154 username hadibarzegar 204154 mac 204154 bytes_out 0 204154 bytes_in 0 204154 station_ip 5.120.115.115 204154 port 93 204154 unique_id port 204154 remote_ip 10.8.1.170 204160 username daryaei1233 204160 mac 204160 bytes_out 11254 204160 bytes_in 15700 204160 station_ip 83.122.103.152 204160 port 43 204160 unique_id port 204160 remote_ip 10.8.0.242 204165 username morteza4424 204165 mac 204165 bytes_out 0 204165 bytes_in 0 204165 station_ip 83.123.45.101 204165 port 42 204165 unique_id port 204166 username yarmohamadi7916 204166 kill_reason Another user logged on this global unique id 204166 mac 204166 bytes_out 0 204166 bytes_in 0 204166 station_ip 5.120.153.126 204166 port 91 204166 unique_id port 204167 username kalantary6037 204167 mac 204167 bytes_out 313097 204167 bytes_in 2598409 204167 station_ip 37.129.198.252 204167 port 96 204167 unique_id port 204167 remote_ip 10.8.1.150 204169 username meghdad1616 204169 kill_reason Another user logged on this global unique id 204169 mac 204169 bytes_out 0 204169 bytes_in 0 204169 station_ip 5.120.186.91 204169 port 102 204169 unique_id port 204169 remote_ip 10.8.1.142 204171 username pourshad 204171 kill_reason Another user logged on this global unique id 204171 mac 204171 bytes_out 0 204171 bytes_in 0 204171 station_ip 5.120.229.1 204171 port 92 204171 unique_id port 204171 remote_ip 10.8.1.58 204173 username morteza4424 204173 kill_reason Another user logged on this global unique id 204173 mac 204173 bytes_out 0 204173 bytes_in 0 204173 station_ip 83.123.45.101 204173 port 42 204173 unique_id port 204173 remote_ip 10.8.0.70 204174 username khademi 204174 kill_reason Another user logged on this global unique id 204174 mac 204174 bytes_out 0 204174 bytes_in 0 204174 station_ip 37.129.212.3 204174 port 84 204174 unique_id port 204179 username morteza4424 204179 kill_reason Another user logged on this global unique id 204179 mac 204179 bytes_out 0 204179 bytes_in 0 204179 station_ip 83.123.45.101 204179 port 42 204179 unique_id port 204183 username daryaei1233 204183 mac 204183 bytes_out 0 204183 bytes_in 0 204183 station_ip 83.122.103.152 204183 port 43 204183 unique_id port 204183 remote_ip 10.8.0.242 204187 username nilufarrajaei 204187 kill_reason Another user logged on this global unique id 204187 mac 204187 bytes_out 0 204187 bytes_in 0 204187 station_ip 83.122.148.251 204187 port 25 204187 unique_id port 204189 username morteza4424 204189 mac 204189 bytes_out 0 204189 bytes_in 0 204189 station_ip 83.123.45.101 204189 port 42 204189 unique_id port 204196 username abdolahi0311 204196 kill_reason Another user logged on this global unique id 204196 mac 204196 bytes_out 0 204196 bytes_in 0 204196 station_ip 5.119.192.240 204196 port 96 204196 unique_id port 204196 remote_ip 10.8.1.190 204197 username esmaeilkazemi 204197 mac 204197 bytes_out 3344 204197 bytes_in 19980 204197 station_ip 83.122.113.81 204197 port 43 204197 unique_id port 204197 remote_ip 10.8.0.86 204201 username daryaei1233 204201 mac 204151 unique_id port 204151 remote_ip 10.8.0.70 204152 username farhad3 204152 mac 204152 bytes_out 0 204152 bytes_in 0 204152 station_ip 5.120.173.80 204152 port 100 204152 unique_id port 204152 remote_ip 10.8.1.38 204153 username godarzi 204153 kill_reason Another user logged on this global unique id 204153 mac 204153 bytes_out 0 204153 bytes_in 0 204153 station_ip 5.202.98.177 204153 port 83 204153 unique_id port 204153 remote_ip 10.8.1.78 204157 username nilufarrajaei 204157 kill_reason Another user logged on this global unique id 204157 mac 204157 bytes_out 0 204157 bytes_in 0 204157 station_ip 83.122.148.251 204157 port 25 204157 unique_id port 204157 remote_ip 10.8.0.94 204159 username barzegar8595 204159 mac 204159 bytes_out 0 204159 bytes_in 0 204159 station_ip 46.225.211.142 204159 port 98 204159 unique_id port 204159 remote_ip 10.8.1.50 204162 username daryaei1233 204162 mac 204162 bytes_out 0 204162 bytes_in 0 204162 station_ip 83.122.103.152 204162 port 31 204162 unique_id port 204162 remote_ip 10.8.0.242 204163 username khademi 204163 kill_reason Another user logged on this global unique id 204163 mac 204163 bytes_out 0 204163 bytes_in 0 204163 station_ip 37.129.212.3 204163 port 84 204163 unique_id port 204168 username morteza4424 204168 mac 204168 bytes_out 2613 204168 bytes_in 4901 204168 station_ip 83.123.45.101 204168 port 42 204168 unique_id port 204168 remote_ip 10.8.0.70 204178 username daryaei1233 204178 mac 204178 bytes_out 0 204178 bytes_in 0 204178 station_ip 83.122.103.152 204178 port 43 204178 unique_id port 204178 remote_ip 10.8.0.242 204181 username meghdad1616 204181 mac 204181 bytes_out 0 204181 bytes_in 0 204181 station_ip 5.120.186.91 204181 port 96 204181 unique_id port 204181 remote_ip 10.8.1.142 204184 username pourshad 204184 kill_reason Another user logged on this global unique id 204184 mac 204184 bytes_out 0 204184 bytes_in 0 204184 station_ip 5.120.229.1 204184 port 92 204184 unique_id port 204185 username daryaei1233 204185 mac 204185 bytes_out 3018 204185 bytes_in 5380 204185 station_ip 83.122.103.152 204185 port 43 204185 unique_id port 204185 remote_ip 10.8.0.242 204186 username daryaei1233 204186 mac 204186 bytes_out 0 204186 bytes_in 0 204186 station_ip 83.122.103.152 204186 port 43 204186 unique_id port 204186 remote_ip 10.8.0.242 204190 username morteza4424 204190 mac 204190 bytes_out 0 204190 bytes_in 0 204190 station_ip 83.123.45.101 204190 port 98 204190 unique_id port 204190 remote_ip 10.8.1.94 204194 username barzegar 204194 mac 204194 bytes_out 0 204194 bytes_in 0 204194 station_ip 5.120.47.128 204194 port 99 204194 unique_id port 204194 remote_ip 10.8.1.6 204195 username daryaei1233 204195 mac 204195 bytes_out 2685 204195 bytes_in 4984 204195 station_ip 83.122.103.152 204195 port 42 204195 unique_id port 204195 remote_ip 10.8.0.242 204198 username daryaei1233 204198 mac 204198 bytes_out 5098 204198 bytes_in 10350 204198 station_ip 83.122.103.152 204198 port 45 204198 unique_id port 204198 remote_ip 10.8.0.242 204199 username daryaei1233 204199 mac 204199 bytes_out 0 204199 bytes_in 0 204199 station_ip 83.122.103.152 204199 port 43 204199 unique_id port 204199 remote_ip 10.8.0.242 204200 username daryaei1233 204200 mac 204200 bytes_out 0 204200 bytes_in 0 204200 station_ip 83.122.103.152 204200 port 43 204200 unique_id port 204200 remote_ip 10.8.0.242 204204 username daryaei1233 204204 mac 204204 bytes_out 6202 204204 bytes_in 11564 204204 station_ip 83.122.103.152 204175 kill_reason Another user logged on this global unique id 204175 mac 204175 bytes_out 0 204175 bytes_in 0 204175 station_ip 151.235.106.19 204175 port 93 204175 unique_id port 204175 remote_ip 10.8.1.118 204176 username meghdad1616 204176 mac 204176 bytes_out 664892 204176 bytes_in 11702849 204176 station_ip 5.120.186.91 204176 port 43 204176 unique_id port 204176 remote_ip 10.8.0.126 204177 username daryaei1233 204177 mac 204177 bytes_out 29599 204177 bytes_in 66985 204177 station_ip 83.122.103.152 204177 port 45 204177 unique_id port 204177 remote_ip 10.8.0.242 204180 username daryaei1233 204180 mac 204180 bytes_out 0 204180 bytes_in 0 204180 station_ip 83.122.103.152 204180 port 43 204180 unique_id port 204180 remote_ip 10.8.0.242 204182 username khademi 204182 kill_reason Another user logged on this global unique id 204182 mac 204182 bytes_out 0 204182 bytes_in 0 204182 station_ip 37.129.212.3 204182 port 84 204182 unique_id port 204188 username khademi 204188 kill_reason Another user logged on this global unique id 204188 mac 204188 bytes_out 0 204188 bytes_in 0 204188 station_ip 37.129.212.3 204188 port 84 204188 unique_id port 204191 username daryaei1233 204191 mac 204191 bytes_out 0 204191 bytes_in 0 204191 station_ip 83.122.103.152 204191 port 42 204191 unique_id port 204191 remote_ip 10.8.0.242 204192 username daryaei1233 204192 mac 204192 bytes_out 0 204192 bytes_in 0 204192 station_ip 83.122.103.152 204192 port 42 204192 unique_id port 204192 remote_ip 10.8.0.242 204193 username daryaei1233 204193 mac 204193 bytes_out 2231 204193 bytes_in 4516 204193 station_ip 83.122.103.152 204193 port 42 204193 unique_id port 204193 remote_ip 10.8.0.242 204202 username teymori5660 204202 mac 204202 bytes_out 0 204202 bytes_in 0 204202 station_ip 5.120.76.174 204202 port 99 204202 unique_id port 204202 remote_ip 10.8.1.14 204203 username godarzi 204203 mac 204203 bytes_out 0 204203 bytes_in 0 204203 station_ip 5.202.98.177 204203 port 83 204203 unique_id port 204207 username mirzaei6046 204207 kill_reason Another user logged on this global unique id 204207 mac 204207 bytes_out 0 204207 bytes_in 0 204207 station_ip 5.119.206.233 204207 port 41 204207 unique_id port 204207 remote_ip 10.8.0.114 204208 username nilufarrajaei 204208 mac 204208 bytes_out 0 204208 bytes_in 0 204208 station_ip 83.122.148.251 204208 port 25 204208 unique_id port 204210 username morteza4424 204210 mac 204210 bytes_out 0 204210 bytes_in 0 204210 station_ip 83.123.45.101 204210 port 98 204210 unique_id port 204214 username esmaeilkazemi 204214 mac 204214 bytes_out 0 204214 bytes_in 0 204214 station_ip 83.122.113.81 204214 port 25 204214 unique_id port 204214 remote_ip 10.8.0.86 204216 username pourshad 204216 kill_reason Another user logged on this global unique id 204216 mac 204216 bytes_out 0 204216 bytes_in 0 204216 station_ip 5.120.229.1 204216 port 92 204216 unique_id port 204217 username alipour1506 204217 kill_reason Another user logged on this global unique id 204217 mac 204217 bytes_out 0 204217 bytes_in 0 204217 station_ip 151.234.23.177 204217 port 88 204217 unique_id port 204219 username daryaei1233 204219 mac 204219 bytes_out 0 204219 bytes_in 0 204219 station_ip 83.122.103.152 204219 port 45 204219 unique_id port 204219 remote_ip 10.8.0.242 204221 username aminvpn 204221 unique_id port 204221 terminate_cause User-Request 204221 bytes_out 498339 204221 bytes_in 2453982 204221 station_ip 31.57.142.166 204221 port 15729988 204221 nas_port_type Virtual 204221 remote_ip 5.5.5.255 204201 bytes_out 0 204201 bytes_in 0 204201 station_ip 83.122.103.152 204201 port 43 204201 unique_id port 204201 remote_ip 10.8.0.242 204205 username morteza4424 204205 kill_reason Another user logged on this global unique id 204205 mac 204205 bytes_out 0 204205 bytes_in 0 204205 station_ip 83.123.45.101 204205 port 98 204205 unique_id port 204205 remote_ip 10.8.1.94 204211 username daryaei1233 204211 mac 204211 bytes_out 0 204211 bytes_in 0 204211 station_ip 83.122.103.152 204211 port 45 204211 unique_id port 204211 remote_ip 10.8.0.242 204212 username daryaei1233 204212 mac 204212 bytes_out 0 204212 bytes_in 0 204212 station_ip 83.122.103.152 204212 port 25 204212 unique_id port 204212 remote_ip 10.8.0.242 204218 username rashidi4690 204218 mac 204218 bytes_out 3164281 204218 bytes_in 14646926 204218 station_ip 5.119.48.216 204218 port 97 204218 unique_id port 204218 remote_ip 10.8.1.158 204220 username charkhandaz3496 204220 mac 204220 bytes_out 0 204220 bytes_in 0 204220 station_ip 5.120.128.36 204220 port 83 204220 unique_id port 204220 remote_ip 10.8.1.46 204223 username daryaei1233 204223 mac 204223 bytes_out 0 204223 bytes_in 0 204223 station_ip 83.122.103.152 204223 port 45 204223 unique_id port 204223 remote_ip 10.8.0.242 204229 username seyedrezaei2572 204229 mac 204229 bytes_out 0 204229 bytes_in 0 204229 station_ip 83.123.85.209 204229 port 42 204229 unique_id port 204229 remote_ip 10.8.0.186 204232 username pourshad 204232 mac 204232 bytes_out 0 204232 bytes_in 0 204232 station_ip 5.120.229.1 204232 port 92 204232 unique_id port 204234 username morteza4424 204234 kill_reason Another user logged on this global unique id 204234 mac 204234 bytes_out 0 204234 bytes_in 0 204234 station_ip 83.123.45.101 204234 port 45 204234 unique_id port 204234 remote_ip 10.8.0.70 204236 username daryaei1233 204236 mac 204236 bytes_out 0 204236 bytes_in 0 204236 station_ip 83.122.103.152 204236 port 25 204236 unique_id port 204236 remote_ip 10.8.0.242 204237 username daryaei1233 204237 mac 204237 bytes_out 0 204237 bytes_in 0 204237 station_ip 83.122.103.152 204237 port 25 204237 unique_id port 204237 remote_ip 10.8.0.242 204239 username tahmorsi 204239 mac 204239 bytes_out 0 204239 bytes_in 0 204239 station_ip 94.24.82.196 204239 port 92 204239 unique_id port 204239 remote_ip 10.8.1.102 204241 username malekpoir 204241 mac 204241 bytes_out 0 204241 bytes_in 0 204241 station_ip 5.120.82.59 204241 port 94 204241 unique_id port 204241 remote_ip 10.8.1.70 204244 username abdolahi0311 204244 mac 204244 bytes_out 0 204244 bytes_in 0 204244 station_ip 5.119.192.240 204244 port 96 204244 unique_id port 204246 username morteza4424 204246 mac 204246 bytes_out 0 204246 bytes_in 0 204246 station_ip 83.123.45.101 204246 port 92 204246 unique_id port 204246 remote_ip 10.8.1.94 204247 username morteza4424 204247 mac 204247 bytes_out 0 204247 bytes_in 0 204247 station_ip 83.123.45.101 204247 port 40 204247 unique_id port 204247 remote_ip 10.8.0.70 204249 username daryaei1233 204249 mac 204249 bytes_out 0 204249 bytes_in 0 204249 station_ip 83.122.103.152 204249 port 42 204249 unique_id port 204249 remote_ip 10.8.0.242 204250 username daryaei1233 204250 mac 204250 bytes_out 0 204250 bytes_in 0 204250 station_ip 83.122.103.152 204250 port 42 204250 unique_id port 204250 remote_ip 10.8.0.242 204253 username esmaeilkazemi 204253 mac 204253 bytes_out 0 204253 bytes_in 0 204204 port 43 204204 unique_id port 204204 remote_ip 10.8.0.242 204206 username alipour1506 204206 kill_reason Another user logged on this global unique id 204206 mac 204206 bytes_out 0 204206 bytes_in 0 204206 station_ip 151.234.23.177 204206 port 88 204206 unique_id port 204209 username esmaeilkazemi 204209 mac 204209 bytes_out 0 204209 bytes_in 0 204209 station_ip 83.122.113.81 204209 port 25 204209 unique_id port 204209 remote_ip 10.8.0.86 204213 username esmaeilkazemi 204213 mac 204213 bytes_out 0 204213 bytes_in 0 204213 station_ip 83.122.113.81 204213 port 46 204213 unique_id port 204213 remote_ip 10.8.0.86 204215 username esmaeilkazemi 204215 mac 204215 bytes_out 5544 204215 bytes_in 25886 204215 station_ip 83.122.113.81 204215 port 45 204215 unique_id port 204215 remote_ip 10.8.0.86 204222 username sabaghnezhad 204222 mac 204222 bytes_out 0 204222 bytes_in 0 204222 station_ip 83.122.21.63 204222 port 40 204222 unique_id port 204222 remote_ip 10.8.0.18 204224 username esmaeilkazemi 204224 mac 204224 bytes_out 5961 204224 bytes_in 26201 204224 station_ip 83.122.113.81 204224 port 46 204224 unique_id port 204224 remote_ip 10.8.0.86 204226 username esmaeilkazemi 204226 mac 204226 bytes_out 14719 204226 bytes_in 36820 204226 station_ip 83.122.113.81 204226 port 40 204226 unique_id port 204226 remote_ip 10.8.0.86 204228 username mosi 204228 kill_reason Another user logged on this global unique id 204228 mac 204228 bytes_out 0 204228 bytes_in 0 204228 station_ip 151.235.106.19 204228 port 93 204228 unique_id port 204230 username daryaei1233 204230 mac 204230 bytes_out 0 204230 bytes_in 0 204230 station_ip 83.122.103.152 204230 port 42 204230 unique_id port 204230 remote_ip 10.8.0.242 204235 username tahmorsi 204235 mac 204235 bytes_out 0 204235 bytes_in 0 204235 station_ip 89.34.45.124 204235 port 25 204235 unique_id port 204235 remote_ip 10.8.0.154 204238 username morteza4424 204238 mac 204238 bytes_out 0 204238 bytes_in 0 204238 station_ip 83.123.45.101 204238 port 45 204238 unique_id port 204240 username morteza4424 204240 mac 204240 bytes_out 0 204240 bytes_in 0 204240 station_ip 83.123.45.101 204240 port 92 204240 unique_id port 204240 remote_ip 10.8.1.94 204243 username daryaei1233 204243 mac 204243 bytes_out 0 204243 bytes_in 0 204243 station_ip 83.122.103.152 204243 port 92 204243 unique_id port 204243 remote_ip 10.8.1.230 204245 username seyedrezaei2572 204245 mac 204245 bytes_out 805613 204245 bytes_in 1309363 204245 station_ip 83.123.85.209 204245 port 40 204245 unique_id port 204245 remote_ip 10.8.0.186 204251 username esmaeilkazemi 204251 mac 204251 bytes_out 0 204251 bytes_in 0 204251 station_ip 83.122.113.81 204251 port 42 204251 unique_id port 204251 remote_ip 10.8.0.86 204254 username morteza4424 204254 mac 204254 bytes_out 0 204254 bytes_in 0 204254 station_ip 83.123.45.101 204254 port 92 204254 unique_id port 204254 remote_ip 10.8.1.94 204257 username esmaeilkazemi 204257 mac 204257 bytes_out 15702 204257 bytes_in 42976 204257 station_ip 83.122.113.81 204257 port 42 204257 unique_id port 204257 remote_ip 10.8.0.86 204260 username morteza4424 204260 mac 204260 bytes_out 0 204260 bytes_in 0 204260 station_ip 83.123.45.101 204260 port 94 204260 unique_id port 204260 remote_ip 10.8.1.94 204261 username daryaei1233 204261 mac 204261 bytes_out 2952 204261 bytes_in 5400 204261 station_ip 83.122.103.152 204261 port 45 204261 unique_id port 204261 remote_ip 10.8.0.242 204225 username daryaei1233 204225 mac 204225 bytes_out 0 204225 bytes_in 0 204225 station_ip 83.122.103.152 204225 port 40 204225 unique_id port 204225 remote_ip 10.8.0.242 204227 username daryaei1233 204227 mac 204227 bytes_out 0 204227 bytes_in 0 204227 station_ip 83.122.103.152 204227 port 40 204227 unique_id port 204227 remote_ip 10.8.0.242 204231 username kalantary6037 204231 mac 204231 bytes_out 1095711 204231 bytes_in 8610957 204231 station_ip 83.122.94.143 204231 port 25 204231 unique_id port 204231 remote_ip 10.8.0.10 204233 username hatami 204233 mac 204233 bytes_out 2966437 204233 bytes_in 30780223 204233 station_ip 151.235.105.117 204233 port 101 204233 unique_id port 204233 remote_ip 10.8.1.26 204242 username daryaei1233 204242 mac 204242 bytes_out 0 204242 bytes_in 0 204242 station_ip 83.122.103.152 204242 port 92 204242 unique_id port 204242 remote_ip 10.8.1.230 204248 username daryaei1233 204248 mac 204248 bytes_out 3129 204248 bytes_in 5346 204248 station_ip 83.122.103.152 204248 port 42 204248 unique_id port 204248 remote_ip 10.8.0.242 204252 username hosseine 204252 kill_reason Another user logged on this global unique id 204252 mac 204252 bytes_out 0 204252 bytes_in 0 204252 station_ip 37.129.231.218 204252 port 28 204252 unique_id port 204252 remote_ip 10.8.0.118 204255 username morteza4424 204255 mac 204255 bytes_out 0 204255 bytes_in 0 204255 station_ip 83.123.45.101 204255 port 92 204255 unique_id port 204255 remote_ip 10.8.1.94 204258 username seyedrezaei2572 204258 mac 204258 bytes_out 57146 204258 bytes_in 73510 204258 station_ip 83.123.85.209 204258 port 40 204258 unique_id port 204258 remote_ip 10.8.0.186 204259 username morteza4424 204259 mac 204259 bytes_out 0 204259 bytes_in 0 204259 station_ip 83.123.45.101 204259 port 94 204259 unique_id port 204259 remote_ip 10.8.1.94 204263 username ahmadi1 204263 mac 204263 bytes_out 0 204263 bytes_in 0 204263 station_ip 37.129.61.8 204263 port 40 204263 unique_id port 204263 remote_ip 10.8.0.42 204267 username yarmohamadi7916 204267 kill_reason Another user logged on this global unique id 204267 mac 204267 bytes_out 0 204267 bytes_in 0 204267 station_ip 5.120.153.126 204267 port 91 204267 unique_id port 204269 username daryaei1233 204269 mac 204269 bytes_out 0 204269 bytes_in 0 204269 station_ip 83.122.103.152 204269 port 40 204269 unique_id port 204269 remote_ip 10.8.0.242 204270 username houshang 204270 mac 204270 bytes_out 0 204270 bytes_in 0 204270 station_ip 5.119.79.205 204270 port 25 204270 unique_id port 204270 remote_ip 10.8.0.50 204273 username daryaei1233 204273 mac 204273 bytes_out 0 204273 bytes_in 0 204273 station_ip 83.122.103.152 204273 port 25 204273 unique_id port 204273 remote_ip 10.8.0.242 204274 username daryaei1233 204274 mac 204274 bytes_out 0 204274 bytes_in 0 204274 station_ip 83.122.103.152 204274 port 96 204274 unique_id port 204274 remote_ip 10.8.1.230 204276 username jafari 204276 kill_reason Another user logged on this global unique id 204276 mac 204276 bytes_out 0 204276 bytes_in 0 204276 station_ip 94.24.87.175 204276 port 92 204276 unique_id port 204276 remote_ip 10.8.1.126 204285 username farhad3 204285 kill_reason Another user logged on this global unique id 204285 mac 204285 bytes_out 0 204285 bytes_in 0 204285 station_ip 5.120.173.80 204285 port 97 204285 unique_id port 204285 remote_ip 10.8.1.38 204289 username jafari 204289 kill_reason Another user logged on this global unique id 204289 mac 204289 bytes_out 0 204289 bytes_in 0 204253 station_ip 83.122.113.81 204253 port 45 204253 unique_id port 204253 remote_ip 10.8.0.86 204256 username daryaei1233 204256 mac 204256 bytes_out 0 204256 bytes_in 0 204256 station_ip 83.122.103.152 204256 port 45 204256 unique_id port 204256 remote_ip 10.8.0.242 204264 username morteza4424 204264 mac 204264 bytes_out 9653 204264 bytes_in 17299 204264 station_ip 83.123.45.101 204264 port 94 204264 unique_id port 204264 remote_ip 10.8.1.94 204268 username meghdad1616 204268 mac 204268 bytes_out 0 204268 bytes_in 0 204268 station_ip 5.120.186.91 204268 port 96 204268 unique_id port 204268 remote_ip 10.8.1.142 204271 username daryaei1233 204271 mac 204271 bytes_out 0 204271 bytes_in 0 204271 station_ip 83.122.103.152 204271 port 40 204271 unique_id port 204271 remote_ip 10.8.0.242 204272 username daryaei1233 204272 mac 204272 bytes_out 0 204272 bytes_in 0 204272 station_ip 83.122.103.152 204272 port 25 204272 unique_id port 204272 remote_ip 10.8.0.242 204279 username daryaei1233 204279 mac 204279 bytes_out 0 204279 bytes_in 0 204279 station_ip 83.122.103.152 204279 port 25 204279 unique_id port 204279 remote_ip 10.8.0.242 204281 username godarzi 204281 mac 204281 bytes_out 0 204281 bytes_in 0 204281 station_ip 5.202.98.177 204281 port 83 204281 unique_id port 204281 remote_ip 10.8.1.78 204282 username nilufarrajaei 204282 mac 204282 bytes_out 15284522 204282 bytes_in 32122571 204282 station_ip 83.122.148.251 204282 port 43 204282 unique_id port 204282 remote_ip 10.8.0.94 204283 username daryaei1233 204283 kill_reason Maximum check online fails reached 204283 mac 204283 bytes_out 0 204283 bytes_in 0 204283 station_ip 83.122.103.152 204283 port 96 204283 unique_id port 204287 username sekonji0496 204287 mac 204287 bytes_out 1048480 204287 bytes_in 10162526 204287 station_ip 37.129.70.155 204287 port 25 204287 unique_id port 204287 remote_ip 10.8.0.66 204288 username esmaeilkazemi 204288 kill_reason Another user logged on this global unique id 204288 mac 204288 bytes_out 0 204288 bytes_in 0 204288 station_ip 83.122.113.81 204288 port 45 204288 unique_id port 204293 username esmaeilkazemi 204293 mac 204293 bytes_out 0 204293 bytes_in 0 204293 station_ip 83.122.113.81 204293 port 45 204293 unique_id port 204293 remote_ip 10.8.0.86 204297 username daryaei1233 204297 mac 204297 bytes_out 0 204297 bytes_in 0 204297 station_ip 83.122.54.124 204297 port 45 204297 unique_id port 204297 remote_ip 10.8.0.242 204299 username aminvpn 204299 mac 204299 bytes_out 0 204299 bytes_in 0 204299 station_ip 37.129.43.233 204299 port 46 204299 unique_id port 204299 remote_ip 10.8.0.206 204300 username nilufarrajaei 204300 kill_reason Another user logged on this global unique id 204300 mac 204300 bytes_out 0 204300 bytes_in 0 204300 station_ip 83.122.148.251 204300 port 42 204300 unique_id port 204300 remote_ip 10.8.0.94 204302 username motamedi9772 204302 kill_reason Another user logged on this global unique id 204302 mac 204302 bytes_out 0 204302 bytes_in 0 204302 station_ip 37.129.15.216 204302 port 40 204302 unique_id port 204302 remote_ip 10.8.0.62 204307 username shahruz 204307 mac 204307 bytes_out 0 204307 bytes_in 0 204307 station_ip 5.119.77.27 204307 port 91 204307 unique_id port 204307 remote_ip 10.8.1.22 204308 username aminvpn 204308 unique_id port 204308 terminate_cause Lost-Carrier 204308 bytes_out 65939 204308 bytes_in 274641 204308 station_ip 83.123.174.130 204308 port 15729991 204308 nas_port_type Virtual 204308 remote_ip 5.5.5.30 204310 username shahruz 204262 username yaghobi 204262 mac 204262 bytes_out 0 204262 bytes_in 0 204262 station_ip 83.122.64.95 204262 port 25 204262 unique_id port 204262 remote_ip 10.8.0.174 204265 username daryaei1233 204265 mac 204265 bytes_out 0 204265 bytes_in 0 204265 station_ip 83.122.103.152 204265 port 25 204265 unique_id port 204265 remote_ip 10.8.0.242 204266 username sekonji0496 204266 mac 204266 bytes_out 14619 204266 bytes_in 53464 204266 station_ip 83.123.120.79 204266 port 42 204266 unique_id port 204266 remote_ip 10.8.0.66 204275 username daryaei1233 204275 mac 204275 bytes_out 0 204275 bytes_in 0 204275 station_ip 83.122.103.152 204275 port 25 204275 unique_id port 204275 remote_ip 10.8.0.242 204277 username seyedrezaei2572 204277 mac 204277 bytes_out 0 204277 bytes_in 0 204277 station_ip 83.123.85.209 204277 port 94 204277 unique_id port 204277 remote_ip 10.8.1.238 204278 username mosi 204278 kill_reason Another user logged on this global unique id 204278 mac 204278 bytes_out 0 204278 bytes_in 0 204278 station_ip 151.235.106.19 204278 port 93 204278 unique_id port 204280 username daryaei1233 204280 kill_reason Maximum check online fails reached 204280 mac 204280 bytes_out 0 204280 bytes_in 0 204280 station_ip 83.122.103.152 204280 port 94 204280 unique_id port 204284 username yarmohamadi7916 204284 mac 204284 bytes_out 0 204284 bytes_in 0 204284 station_ip 5.120.153.126 204284 port 91 204284 unique_id port 204286 username esmaeilkazemi 204286 kill_reason Another user logged on this global unique id 204286 mac 204286 bytes_out 0 204286 bytes_in 0 204286 station_ip 83.122.113.81 204286 port 45 204286 unique_id port 204290 username sekonji0496 204290 mac 204290 bytes_out 0 204290 bytes_in 0 204290 station_ip 37.129.70.155 204290 port 25 204290 unique_id port 204290 remote_ip 10.8.0.66 204292 username sekonji0496 204292 mac 204292 bytes_out 0 204292 bytes_in 0 204292 station_ip 37.129.70.155 204292 port 25 204292 unique_id port 204292 remote_ip 10.8.0.66 204296 username esmaeilkazemi 204296 mac 204296 bytes_out 9841 204296 bytes_in 27671 204296 station_ip 83.122.113.81 204296 port 48 204296 unique_id port 204296 remote_ip 10.8.0.86 204301 username sekonji0496 204301 mac 204301 bytes_out 0 204301 bytes_in 0 204301 station_ip 37.129.70.155 204301 port 45 204301 unique_id port 204301 remote_ip 10.8.0.66 204303 username farhad3 204303 mac 204303 bytes_out 0 204303 bytes_in 0 204303 station_ip 5.120.173.80 204303 port 91 204303 unique_id port 204303 remote_ip 10.8.1.38 204305 username shahruz 204305 mac 204305 bytes_out 0 204305 bytes_in 0 204305 station_ip 5.119.77.27 204305 port 83 204305 unique_id port 204305 remote_ip 10.8.1.22 204312 username daryaei1233 204312 mac 204312 bytes_out 0 204312 bytes_in 0 204312 station_ip 83.122.14.20 204312 port 48 204312 unique_id port 204312 remote_ip 10.8.0.242 204314 username sabaghnezhad 204314 mac 204314 bytes_out 494163 204314 bytes_in 534092 204314 station_ip 83.123.152.247 204314 port 43 204314 unique_id port 204314 remote_ip 10.8.0.18 204316 username daryaei1233 204316 mac 204316 bytes_out 0 204316 bytes_in 0 204316 station_ip 83.122.14.20 204316 port 48 204316 unique_id port 204316 remote_ip 10.8.0.242 204318 username mosi 204318 kill_reason Another user logged on this global unique id 204318 mac 204318 bytes_out 0 204318 bytes_in 0 204318 station_ip 151.235.106.19 204318 port 93 204318 unique_id port 204326 username sekonji0496 204326 mac 204326 bytes_out 0 204289 station_ip 94.24.87.175 204289 port 92 204289 unique_id port 204291 username esmaeilkazemi 204291 mac 204291 bytes_out 17426 204291 bytes_in 50081 204291 station_ip 83.122.113.81 204291 port 45 204291 unique_id port 204291 remote_ip 10.8.0.86 204294 username shahruz 204294 mac 204294 bytes_out 115764 204294 bytes_in 719526 204294 station_ip 83.123.197.43 204294 port 25 204294 unique_id port 204294 remote_ip 10.8.0.22 204295 username sekonji0496 204295 mac 204295 bytes_out 2460 204295 bytes_in 4571 204295 station_ip 37.129.70.155 204295 port 47 204295 unique_id port 204295 remote_ip 10.8.0.66 204298 username farhad3 204298 mac 204298 bytes_out 0 204298 bytes_in 0 204298 station_ip 5.120.173.80 204298 port 97 204298 unique_id port 204304 username shahruz 204304 mac 204304 bytes_out 0 204304 bytes_in 0 204304 station_ip 5.119.77.27 204304 port 83 204304 unique_id port 204304 remote_ip 10.8.1.22 204306 username jafari 204306 kill_reason Another user logged on this global unique id 204306 mac 204306 bytes_out 0 204306 bytes_in 0 204306 station_ip 94.24.87.175 204306 port 92 204306 unique_id port 204309 username shahruz 204309 mac 204309 bytes_out 0 204309 bytes_in 0 204309 station_ip 5.119.77.27 204309 port 48 204309 unique_id port 204309 remote_ip 10.8.0.22 204311 username jafari 204311 mac 204311 bytes_out 0 204311 bytes_in 0 204311 station_ip 94.24.87.175 204311 port 92 204311 unique_id port 204313 username teymori5660 204313 mac 204313 bytes_out 0 204313 bytes_in 0 204313 station_ip 5.120.76.174 204313 port 91 204313 unique_id port 204313 remote_ip 10.8.1.14 204315 username daryaei1233 204315 mac 204315 bytes_out 0 204315 bytes_in 0 204315 station_ip 83.122.14.20 204315 port 92 204315 unique_id port 204315 remote_ip 10.8.1.230 204319 username motamedi9772 204319 kill_reason Another user logged on this global unique id 204319 mac 204319 bytes_out 0 204319 bytes_in 0 204319 station_ip 37.129.15.216 204319 port 40 204319 unique_id port 204320 username daryaei1233 204320 mac 204320 bytes_out 0 204320 bytes_in 0 204320 station_ip 83.122.14.20 204320 port 48 204320 unique_id port 204320 remote_ip 10.8.0.242 204323 username daryaei1233 204323 mac 204323 bytes_out 0 204323 bytes_in 0 204323 station_ip 83.122.14.20 204323 port 48 204323 unique_id port 204323 remote_ip 10.8.0.242 204325 username daryaei1233 204325 mac 204325 bytes_out 0 204325 bytes_in 0 204325 station_ip 83.122.14.20 204325 port 48 204325 unique_id port 204325 remote_ip 10.8.0.242 204327 username nilufarrajaei 204327 mac 204327 bytes_out 0 204327 bytes_in 0 204327 station_ip 83.122.148.251 204327 port 42 204327 unique_id port 204329 username morteza4424 204329 mac 204329 bytes_out 0 204329 bytes_in 0 204329 station_ip 113.203.115.133 204329 port 83 204329 unique_id port 204329 remote_ip 10.8.1.94 204333 username farhad3 204333 mac 204333 bytes_out 0 204333 bytes_in 0 204333 station_ip 5.120.173.80 204333 port 92 204333 unique_id port 204333 remote_ip 10.8.1.38 204339 username farhad3 204339 kill_reason Another user logged on this global unique id 204339 mac 204339 bytes_out 0 204339 bytes_in 0 204339 station_ip 5.120.173.80 204339 port 92 204339 unique_id port 204345 username motamedi9772 204345 mac 204345 bytes_out 0 204345 bytes_in 0 204345 station_ip 37.129.15.216 204345 port 40 204345 unique_id port 204349 username motamedi9772 204349 mac 204349 bytes_out 0 204349 bytes_in 0 204310 mac 204310 bytes_out 0 204310 bytes_in 0 204310 station_ip 5.119.77.27 204310 port 48 204310 unique_id port 204310 remote_ip 10.8.0.22 204317 username shahruz 204317 mac 204317 bytes_out 0 204317 bytes_in 0 204317 station_ip 5.119.77.27 204317 port 91 204317 unique_id port 204317 remote_ip 10.8.1.22 204321 username shahruz 204321 mac 204321 bytes_out 0 204321 bytes_in 0 204321 station_ip 5.119.77.27 204321 port 91 204321 unique_id port 204321 remote_ip 10.8.1.22 204322 username daryaei1233 204322 mac 204322 bytes_out 66933 204322 bytes_in 262241 204322 station_ip 83.122.14.20 204322 port 48 204322 unique_id port 204322 remote_ip 10.8.0.242 204324 username daryaei1233 204324 mac 204324 bytes_out 0 204324 bytes_in 0 204324 station_ip 83.122.14.20 204324 port 48 204324 unique_id port 204324 remote_ip 10.8.0.242 204330 username morteza4424 204330 mac 204330 bytes_out 6401 204330 bytes_in 17177 204330 station_ip 113.203.115.133 204330 port 42 204330 unique_id port 204330 remote_ip 10.8.0.70 204332 username shahruz 204332 kill_reason Maximum check online fails reached 204332 mac 204332 bytes_out 0 204332 bytes_in 0 204332 station_ip 5.119.77.27 204332 port 83 204332 unique_id port 204334 username shahruz 204334 mac 204334 bytes_out 0 204334 bytes_in 0 204334 station_ip 5.119.77.27 204334 port 97 204334 unique_id port 204334 remote_ip 10.8.1.22 204336 username farhad3 204336 kill_reason Another user logged on this global unique id 204336 mac 204336 bytes_out 0 204336 bytes_in 0 204336 station_ip 5.120.173.80 204336 port 92 204336 unique_id port 204336 remote_ip 10.8.1.38 204340 username daryaei1233 204340 mac 204340 bytes_out 0 204340 bytes_in 0 204340 station_ip 83.122.1.96 204340 port 42 204340 unique_id port 204340 remote_ip 10.8.0.242 204344 username mosi 204344 kill_reason Another user logged on this global unique id 204344 mac 204344 bytes_out 0 204344 bytes_in 0 204344 station_ip 151.235.106.19 204344 port 93 204344 unique_id port 204347 username motamedi9772 204347 mac 204347 bytes_out 0 204347 bytes_in 0 204347 station_ip 37.129.15.216 204347 port 40 204347 unique_id port 204347 remote_ip 10.8.0.62 204351 username motamedi9772 204351 mac 204351 bytes_out 0 204351 bytes_in 0 204351 station_ip 37.129.15.216 204351 port 28 204351 unique_id port 204351 remote_ip 10.8.0.62 204353 username motamedi9772 204353 mac 204353 bytes_out 0 204353 bytes_in 0 204353 station_ip 37.129.15.216 204353 port 28 204353 unique_id port 204353 remote_ip 10.8.0.62 204355 username daryaei1233 204355 mac 204355 bytes_out 0 204355 bytes_in 0 204355 station_ip 83.122.1.96 204355 port 28 204355 unique_id port 204355 remote_ip 10.8.0.242 204358 username daryaei1233 204358 mac 204358 bytes_out 0 204358 bytes_in 0 204358 station_ip 83.122.1.96 204358 port 42 204358 unique_id port 204358 remote_ip 10.8.0.242 204359 username shahruz 204359 mac 204359 bytes_out 0 204359 bytes_in 0 204359 station_ip 5.119.77.27 204359 port 40 204359 unique_id port 204359 remote_ip 10.8.0.22 204361 username rahim 204361 mac 204361 bytes_out 0 204361 bytes_in 0 204361 station_ip 5.120.3.58 204361 port 92 204361 unique_id port 204361 remote_ip 10.8.1.90 204363 username shahruz 204363 mac 204363 bytes_out 0 204363 bytes_in 0 204363 station_ip 5.119.77.27 204363 port 28 204363 unique_id port 204363 remote_ip 10.8.0.22 204375 username rahim 204375 mac 204375 bytes_out 0 204375 bytes_in 0 204326 bytes_in 0 204326 station_ip 37.129.70.155 204326 port 45 204326 unique_id port 204326 remote_ip 10.8.0.66 204328 username yaghobi 204328 mac 204328 bytes_out 0 204328 bytes_in 0 204328 station_ip 83.122.73.19 204328 port 47 204328 unique_id port 204328 remote_ip 10.8.0.174 204331 username kharazmi2920 204331 mac 204331 bytes_out 0 204331 bytes_in 0 204331 station_ip 83.122.221.61 204331 port 25 204331 unique_id port 204331 remote_ip 10.8.0.34 204335 username barzegar 204335 mac 204335 bytes_out 0 204335 bytes_in 0 204335 station_ip 5.119.198.128 204335 port 97 204335 unique_id port 204335 remote_ip 10.8.1.6 204337 username sabaghnezhad 204337 mac 204337 bytes_out 330489 204337 bytes_in 290616 204337 station_ip 83.123.152.247 204337 port 43 204337 unique_id port 204337 remote_ip 10.8.0.18 204338 username daryaei1233 204338 mac 204338 bytes_out 0 204338 bytes_in 0 204338 station_ip 83.122.1.96 204338 port 42 204338 unique_id port 204338 remote_ip 10.8.0.242 204341 username daryaei1233 204341 mac 204341 bytes_out 0 204341 bytes_in 0 204341 station_ip 83.122.1.96 204341 port 42 204341 unique_id port 204341 remote_ip 10.8.0.242 204342 username mirzaei6046 204342 kill_reason Another user logged on this global unique id 204342 mac 204342 bytes_out 0 204342 bytes_in 0 204342 station_ip 5.119.206.233 204342 port 41 204342 unique_id port 204343 username farhad3 204343 kill_reason Another user logged on this global unique id 204343 mac 204343 bytes_out 0 204343 bytes_in 0 204343 station_ip 5.120.173.80 204343 port 92 204343 unique_id port 204346 username motamedi9772 204346 mac 204346 bytes_out 0 204346 bytes_in 0 204346 station_ip 37.129.15.216 204346 port 40 204346 unique_id port 204346 remote_ip 10.8.0.62 204348 username hosseine 204348 mac 204348 bytes_out 0 204348 bytes_in 0 204348 station_ip 37.129.231.218 204348 port 28 204348 unique_id port 204350 username shahruz 204350 mac 204350 bytes_out 0 204350 bytes_in 0 204350 station_ip 5.119.77.27 204350 port 97 204350 unique_id port 204350 remote_ip 10.8.1.22 204352 username farhad3 204352 mac 204352 bytes_out 0 204352 bytes_in 0 204352 station_ip 5.120.173.80 204352 port 92 204352 unique_id port 204354 username daryaei1233 204354 mac 204354 bytes_out 0 204354 bytes_in 0 204354 station_ip 83.122.1.96 204354 port 97 204354 unique_id port 204354 remote_ip 10.8.1.230 204356 username rahim 204356 mac 204356 bytes_out 0 204356 bytes_in 0 204356 station_ip 5.120.3.58 204356 port 98 204356 unique_id port 204356 remote_ip 10.8.1.90 204360 username mirzaei6046 204360 kill_reason Another user logged on this global unique id 204360 mac 204360 bytes_out 0 204360 bytes_in 0 204360 station_ip 5.119.206.233 204360 port 41 204360 unique_id port 204362 username daryaei1233 204362 mac 204362 bytes_out 0 204362 bytes_in 0 204362 station_ip 83.122.1.96 204362 port 28 204362 unique_id port 204362 remote_ip 10.8.0.242 204364 username majidsarmast 204364 kill_reason Another user logged on this global unique id 204364 mac 204364 bytes_out 0 204364 bytes_in 0 204364 station_ip 113.203.101.141 204364 port 31 204364 unique_id port 204364 remote_ip 10.8.0.6 204367 username rahim 204367 mac 204367 bytes_out 0 204367 bytes_in 0 204367 station_ip 5.120.3.58 204367 port 92 204367 unique_id port 204367 remote_ip 10.8.1.90 204368 username rahim 204368 mac 204368 bytes_out 0 204368 bytes_in 0 204368 station_ip 5.120.3.58 204368 port 92 204368 unique_id port 204349 station_ip 37.129.15.216 204349 port 28 204349 unique_id port 204349 remote_ip 10.8.0.62 204357 username motamedi9772 204357 mac 204357 bytes_out 0 204357 bytes_in 0 204357 station_ip 37.129.15.216 204357 port 28 204357 unique_id port 204357 remote_ip 10.8.0.62 204365 username motamedi9772 204365 mac 204365 bytes_out 0 204365 bytes_in 0 204365 station_ip 37.129.15.216 204365 port 28 204365 unique_id port 204365 remote_ip 10.8.0.62 204366 username daryaei1233 204366 mac 204366 bytes_out 0 204366 bytes_in 0 204366 station_ip 83.122.1.96 204366 port 28 204366 unique_id port 204366 remote_ip 10.8.0.242 204369 username rahim 204369 mac 204369 bytes_out 0 204369 bytes_in 0 204369 station_ip 5.120.3.58 204369 port 92 204369 unique_id port 204369 remote_ip 10.8.1.90 204371 username rahim 204371 mac 204371 bytes_out 0 204371 bytes_in 0 204371 station_ip 5.120.3.58 204371 port 92 204371 unique_id port 204371 remote_ip 10.8.1.90 204373 username shahruz 204373 mac 204373 bytes_out 0 204373 bytes_in 0 204373 station_ip 5.119.77.27 204373 port 97 204373 unique_id port 204373 remote_ip 10.8.1.22 204374 username rahim 204374 mac 204374 bytes_out 0 204374 bytes_in 0 204374 station_ip 5.120.3.58 204374 port 92 204374 unique_id port 204374 remote_ip 10.8.1.90 204389 username daryaei1233 204389 mac 204389 bytes_out 0 204389 bytes_in 0 204389 station_ip 83.122.1.96 204389 port 40 204389 unique_id port 204389 remote_ip 10.8.0.242 204390 username aminvpn 204390 mac 204390 bytes_out 0 204390 bytes_in 0 204390 station_ip 37.129.43.233 204390 port 46 204390 unique_id port 204390 remote_ip 10.8.0.206 204393 username shahruz 204393 mac 204393 bytes_out 0 204393 bytes_in 0 204393 station_ip 5.119.77.27 204393 port 92 204393 unique_id port 204393 remote_ip 10.8.1.22 204395 username mosi 204395 kill_reason Another user logged on this global unique id 204395 mac 204395 bytes_out 0 204395 bytes_in 0 204395 station_ip 151.235.106.19 204395 port 93 204395 unique_id port 204396 username majidsarmast 204396 mac 204396 bytes_out 0 204396 bytes_in 0 204396 station_ip 113.203.101.141 204396 port 31 204396 unique_id port 204400 username daryaei1233 204400 mac 204400 bytes_out 0 204400 bytes_in 0 204400 station_ip 83.122.1.96 204400 port 31 204400 unique_id port 204400 remote_ip 10.8.0.242 204405 username shahruz 204405 mac 204405 bytes_out 0 204405 bytes_in 0 204405 station_ip 5.119.77.27 204405 port 92 204405 unique_id port 204405 remote_ip 10.8.1.22 204413 username alipour1506 204413 kill_reason Another user logged on this global unique id 204413 mac 204413 bytes_out 0 204413 bytes_in 0 204413 station_ip 151.234.23.177 204413 port 88 204413 unique_id port 204418 username daryaei1233 204418 mac 204418 bytes_out 0 204418 bytes_in 0 204418 station_ip 83.122.1.96 204418 port 31 204418 unique_id port 204418 remote_ip 10.8.0.242 204427 username nilufarrajaei 204427 mac 204427 bytes_out 888040 204427 bytes_in 7030464 204427 station_ip 83.122.148.251 204427 port 91 204427 unique_id port 204427 remote_ip 10.8.1.138 204431 username teymori5660 204431 kill_reason Another user logged on this global unique id 204431 mac 204431 bytes_out 0 204431 bytes_in 0 204431 station_ip 5.120.76.174 204431 port 93 204431 unique_id port 204431 remote_ip 10.8.1.14 204432 username shahruz 204432 mac 204432 bytes_out 0 204432 bytes_in 0 204432 station_ip 5.119.77.27 204432 port 91 204432 unique_id port 204368 remote_ip 10.8.1.90 204370 username daryaei1233 204370 mac 204370 bytes_out 0 204370 bytes_in 0 204370 station_ip 83.122.1.96 204370 port 28 204370 unique_id port 204370 remote_ip 10.8.0.242 204372 username rahim 204372 mac 204372 bytes_out 0 204372 bytes_in 0 204372 station_ip 5.120.3.58 204372 port 92 204372 unique_id port 204372 remote_ip 10.8.1.90 204376 username rahim 204376 mac 204376 bytes_out 0 204376 bytes_in 0 204376 station_ip 5.120.3.58 204376 port 92 204376 unique_id port 204376 remote_ip 10.8.1.90 204380 username daryaei1233 204380 mac 204380 bytes_out 0 204380 bytes_in 0 204380 station_ip 83.122.1.96 204380 port 40 204380 unique_id port 204380 remote_ip 10.8.0.242 204381 username majidsarmast 204381 kill_reason Another user logged on this global unique id 204381 mac 204381 bytes_out 0 204381 bytes_in 0 204381 station_ip 113.203.101.141 204381 port 31 204381 unique_id port 204387 username shahruz 204387 mac 204387 bytes_out 0 204387 bytes_in 0 204387 station_ip 5.119.77.27 204387 port 92 204387 unique_id port 204387 remote_ip 10.8.1.22 204388 username shahruz 204388 mac 204388 bytes_out 0 204388 bytes_in 0 204388 station_ip 5.119.77.27 204388 port 42 204388 unique_id port 204388 remote_ip 10.8.0.22 204391 username majidsarmast 204391 kill_reason Another user logged on this global unique id 204391 mac 204391 bytes_out 0 204391 bytes_in 0 204391 station_ip 113.203.101.141 204391 port 31 204391 unique_id port 204394 username motamedi9772 204394 kill_reason Another user logged on this global unique id 204394 mac 204394 bytes_out 0 204394 bytes_in 0 204394 station_ip 37.129.15.216 204394 port 28 204394 unique_id port 204397 username daryaei1233 204397 mac 204397 bytes_out 0 204397 bytes_in 0 204397 station_ip 83.122.1.96 204397 port 92 204397 unique_id port 204397 remote_ip 10.8.1.230 204399 username daryaei1233 204399 mac 204399 bytes_out 0 204399 bytes_in 0 204399 station_ip 83.122.1.96 204399 port 92 204399 unique_id port 204399 remote_ip 10.8.1.230 204402 username nilufarrajaei 204402 mac 204402 bytes_out 1438618 204402 bytes_in 13871531 204402 station_ip 83.122.148.251 204402 port 91 204402 unique_id port 204402 remote_ip 10.8.1.138 204403 username daryaei1233 204403 mac 204403 bytes_out 0 204403 bytes_in 0 204403 station_ip 83.122.1.96 204403 port 31 204403 unique_id port 204403 remote_ip 10.8.0.242 204407 username daryaei1233 204407 mac 204407 bytes_out 0 204407 bytes_in 0 204407 station_ip 83.122.1.96 204407 port 31 204407 unique_id port 204407 remote_ip 10.8.0.242 204409 username daryaei1233 204409 mac 204409 bytes_out 0 204409 bytes_in 0 204409 station_ip 83.122.1.96 204409 port 31 204409 unique_id port 204409 remote_ip 10.8.0.242 204410 username motamedi9772 204410 mac 204410 bytes_out 0 204410 bytes_in 0 204410 station_ip 37.129.15.216 204410 port 28 204410 unique_id port 204410 remote_ip 10.8.0.62 204411 username motamedi9772 204411 mac 204411 bytes_out 0 204411 bytes_in 0 204411 station_ip 37.129.15.216 204411 port 28 204411 unique_id port 204411 remote_ip 10.8.0.62 204412 username motamedi9772 204412 mac 204412 bytes_out 0 204412 bytes_in 0 204412 station_ip 37.129.15.216 204412 port 28 204412 unique_id port 204412 remote_ip 10.8.0.62 204414 username barzegar 204414 mac 204414 bytes_out 0 204414 bytes_in 0 204414 station_ip 5.120.103.0 204414 port 92 204414 unique_id port 204414 remote_ip 10.8.1.6 204415 username motamedi9772 204415 mac 204375 station_ip 5.120.3.58 204375 port 92 204375 unique_id port 204375 remote_ip 10.8.1.90 204377 username daryaei1233 204377 mac 204377 bytes_out 0 204377 bytes_in 0 204377 station_ip 83.122.1.96 204377 port 40 204377 unique_id port 204377 remote_ip 10.8.0.242 204378 username shahruz 204378 mac 204378 bytes_out 0 204378 bytes_in 0 204378 station_ip 5.119.77.27 204378 port 92 204378 unique_id port 204378 remote_ip 10.8.1.22 204379 username mirzaei6046 204379 kill_reason Another user logged on this global unique id 204379 mac 204379 bytes_out 0 204379 bytes_in 0 204379 station_ip 5.119.206.233 204379 port 41 204379 unique_id port 204382 username mosi 204382 kill_reason Another user logged on this global unique id 204382 mac 204382 bytes_out 0 204382 bytes_in 0 204382 station_ip 151.235.106.19 204382 port 93 204382 unique_id port 204383 username motamedi9772 204383 kill_reason Another user logged on this global unique id 204383 mac 204383 bytes_out 0 204383 bytes_in 0 204383 station_ip 37.129.15.216 204383 port 28 204383 unique_id port 204383 remote_ip 10.8.0.62 204384 username daryaei1233 204384 mac 204384 bytes_out 0 204384 bytes_in 0 204384 station_ip 83.122.1.96 204384 port 40 204384 unique_id port 204384 remote_ip 10.8.0.242 204385 username farhad3 204385 mac 204385 bytes_out 0 204385 bytes_in 0 204385 station_ip 5.120.173.80 204385 port 92 204385 unique_id port 204385 remote_ip 10.8.1.38 204386 username barzegar 204386 mac 204386 bytes_out 0 204386 bytes_in 0 204386 station_ip 5.119.198.64 204386 port 97 204386 unique_id port 204386 remote_ip 10.8.1.6 204392 username daryaei1233 204392 mac 204392 bytes_out 0 204392 bytes_in 0 204392 station_ip 83.122.1.96 204392 port 42 204392 unique_id port 204392 remote_ip 10.8.0.242 204398 username mosi 204398 mac 204398 bytes_out 0 204398 bytes_in 0 204398 station_ip 151.235.106.19 204398 port 93 204398 unique_id port 204401 username yazdani6029 204401 mac 204401 bytes_out 3280193 204401 bytes_in 49036655 204401 station_ip 83.123.26.233 204401 port 40 204401 unique_id port 204401 remote_ip 10.8.0.250 204404 username mirzaei6046 204404 kill_reason Another user logged on this global unique id 204404 mac 204404 bytes_out 0 204404 bytes_in 0 204404 station_ip 5.119.206.233 204404 port 41 204404 unique_id port 204406 username daryaei1233 204406 mac 204406 bytes_out 0 204406 bytes_in 0 204406 station_ip 83.122.1.96 204406 port 31 204406 unique_id port 204406 remote_ip 10.8.0.242 204408 username motamedi9772 204408 mac 204408 bytes_out 0 204408 bytes_in 0 204408 station_ip 37.129.15.216 204408 port 28 204408 unique_id port 204416 username barzegar 204416 mac 204416 bytes_out 0 204416 bytes_in 0 204416 station_ip 5.120.103.0 204416 port 92 204416 unique_id port 204416 remote_ip 10.8.1.6 204417 username daryaei1233 204417 mac 204417 bytes_out 0 204417 bytes_in 0 204417 station_ip 83.122.1.96 204417 port 92 204417 unique_id port 204417 remote_ip 10.8.1.230 204422 username barzegar 204422 mac 204422 bytes_out 0 204422 bytes_in 0 204422 station_ip 5.120.103.0 204422 port 92 204422 unique_id port 204422 remote_ip 10.8.1.6 204423 username shahruz 204423 mac 204423 bytes_out 0 204423 bytes_in 0 204423 station_ip 5.119.77.27 204423 port 40 204423 unique_id port 204423 remote_ip 10.8.0.22 204426 username daryaei1233 204426 mac 204426 bytes_out 0 204426 bytes_in 0 204426 station_ip 83.122.1.96 204426 port 43 204426 unique_id port 204415 bytes_out 0 204415 bytes_in 0 204415 station_ip 37.129.15.216 204415 port 28 204415 unique_id port 204415 remote_ip 10.8.0.62 204419 username mammad 204419 unique_id port 204419 terminate_cause User-Request 204419 bytes_out 19626006 204419 bytes_in 194266310 204419 station_ip 2.183.240.55 204419 port 15729989 204419 nas_port_type Virtual 204419 remote_ip 5.5.5.255 204420 username shahruz 204420 mac 204420 bytes_out 0 204420 bytes_in 0 204420 station_ip 5.119.77.27 204420 port 92 204420 unique_id port 204420 remote_ip 10.8.1.22 204421 username daryaei1233 204421 mac 204421 bytes_out 0 204421 bytes_in 0 204421 station_ip 83.122.1.96 204421 port 31 204421 unique_id port 204421 remote_ip 10.8.0.242 204424 username mirzaei6046 204424 kill_reason Another user logged on this global unique id 204424 mac 204424 bytes_out 0 204424 bytes_in 0 204424 station_ip 5.119.206.233 204424 port 41 204424 unique_id port 204425 username charkhandaz3496 204425 mac 204425 bytes_out 7140789 204425 bytes_in 24912245 204425 station_ip 5.120.128.36 204425 port 43 204425 unique_id port 204425 remote_ip 10.8.0.178 204433 username daryaei1233 204433 mac 204433 bytes_out 20135 204433 bytes_in 40642 204433 station_ip 83.122.1.96 204433 port 42 204433 unique_id port 204433 remote_ip 10.8.0.242 204439 username motamedi9772 204439 kill_reason Another user logged on this global unique id 204439 mac 204439 bytes_out 0 204439 bytes_in 0 204439 station_ip 37.129.15.216 204439 port 28 204439 unique_id port 204439 remote_ip 10.8.0.62 204441 username daryaei1233 204441 mac 204441 bytes_out 0 204441 bytes_in 0 204441 station_ip 83.122.1.96 204441 port 40 204441 unique_id port 204441 remote_ip 10.8.0.242 204443 username shahruz 204443 mac 204443 bytes_out 0 204443 bytes_in 0 204443 station_ip 5.119.77.27 204443 port 91 204443 unique_id port 204443 remote_ip 10.8.1.22 204450 username daryaei1233 204450 kill_reason Maximum check online fails reached 204450 mac 204450 bytes_out 0 204450 bytes_in 0 204450 station_ip 83.122.1.96 204450 port 91 204450 unique_id port 204451 username charkhandaz3496 204451 mac 204451 bytes_out 655844 204451 bytes_in 3869762 204451 station_ip 5.120.128.36 204451 port 31 204451 unique_id port 204451 remote_ip 10.8.0.178 204453 username motamedi9772 204453 kill_reason Another user logged on this global unique id 204453 mac 204453 bytes_out 0 204453 bytes_in 0 204453 station_ip 37.129.15.216 204453 port 28 204453 unique_id port 204457 username barzegar 204457 mac 204457 bytes_out 0 204457 bytes_in 0 204457 station_ip 5.119.31.207 204457 port 92 204457 unique_id port 204457 remote_ip 10.8.1.6 204458 username mirzaei6046 204458 mac 204458 bytes_out 0 204458 bytes_in 0 204458 station_ip 5.119.206.233 204458 port 41 204458 unique_id port 204461 username barzegar 204461 mac 204461 bytes_out 0 204461 bytes_in 0 204461 station_ip 5.119.31.207 204461 port 99 204461 unique_id port 204461 remote_ip 10.8.1.6 204466 username shahruz 204466 mac 204466 bytes_out 0 204466 bytes_in 0 204466 station_ip 83.123.160.219 204466 port 28 204466 unique_id port 204466 remote_ip 10.8.0.22 204467 username shahruz 204467 mac 204467 bytes_out 0 204467 bytes_in 0 204467 station_ip 83.123.160.219 204467 port 28 204467 unique_id port 204467 remote_ip 10.8.0.22 204469 username barzegar 204469 mac 204469 bytes_out 3369 204469 bytes_in 6418 204469 station_ip 5.119.31.207 204469 port 93 204469 unique_id port 204469 remote_ip 10.8.1.6 204472 username nilufarrajaei 204426 remote_ip 10.8.0.242 204428 username aminvpn 204428 mac 204428 bytes_out 868283 204428 bytes_in 11803300 204428 station_ip 37.129.43.233 204428 port 42 204428 unique_id port 204428 remote_ip 10.8.0.206 204429 username shahruz 204429 mac 204429 bytes_out 0 204429 bytes_in 0 204429 station_ip 5.119.77.27 204429 port 91 204429 unique_id port 204429 remote_ip 10.8.1.22 204430 username shahruz 204430 mac 204430 bytes_out 0 204430 bytes_in 0 204430 station_ip 5.119.77.27 204430 port 91 204430 unique_id port 204430 remote_ip 10.8.1.22 204437 username kharazmi2920 204437 mac 204437 bytes_out 1549062 204437 bytes_in 3989945 204437 station_ip 83.122.221.61 204437 port 31 204437 unique_id port 204437 remote_ip 10.8.0.34 204440 username shahruz 204440 mac 204440 bytes_out 0 204440 bytes_in 0 204440 station_ip 5.119.77.27 204440 port 91 204440 unique_id port 204440 remote_ip 10.8.1.22 204442 username daryaei1233 204442 mac 204442 bytes_out 0 204442 bytes_in 0 204442 station_ip 83.122.1.96 204442 port 40 204442 unique_id port 204442 remote_ip 10.8.0.242 204444 username daryaei1233 204444 mac 204444 bytes_out 1644 204444 bytes_in 5129 204444 station_ip 83.122.1.96 204444 port 40 204444 unique_id port 204444 remote_ip 10.8.0.242 204447 username daryaei1233 204447 kill_reason Maximum number of concurrent logins reached 204447 mac 204447 bytes_out 0 204447 bytes_in 0 204447 station_ip 83.122.1.96 204447 port 42 204447 unique_id port 204449 username daryaei1233 204449 mac 204449 bytes_out 1644 204449 bytes_in 4596 204449 station_ip 83.122.1.96 204449 port 40 204449 unique_id port 204449 remote_ip 10.8.0.242 204452 username charkhandaz3496 204452 mac 204452 bytes_out 401196 204452 bytes_in 3852702 204452 station_ip 5.120.128.36 204452 port 98 204452 unique_id port 204452 remote_ip 10.8.1.46 204454 username farhad3 204454 mac 204454 bytes_out 0 204454 bytes_in 0 204454 station_ip 5.120.173.80 204454 port 92 204454 unique_id port 204454 remote_ip 10.8.1.38 204455 username sabaghnezhad 204455 mac 204455 bytes_out 0 204455 bytes_in 0 204455 station_ip 37.129.116.99 204455 port 25 204455 unique_id port 204455 remote_ip 10.8.0.18 204456 username shahruz 204456 mac 204456 bytes_out 0 204456 bytes_in 0 204456 station_ip 5.119.77.27 204456 port 98 204456 unique_id port 204456 remote_ip 10.8.1.22 204459 username motamedi9772 204459 mac 204459 bytes_out 0 204459 bytes_in 0 204459 station_ip 37.129.15.216 204459 port 28 204459 unique_id port 204460 username motamedi9772 204460 mac 204460 bytes_out 683401 204460 bytes_in 6365300 204460 station_ip 37.129.15.216 204460 port 28 204460 unique_id port 204460 remote_ip 10.8.0.62 204464 username shahruz 204464 mac 204464 bytes_out 0 204464 bytes_in 0 204464 station_ip 5.119.77.27 204464 port 98 204464 unique_id port 204464 remote_ip 10.8.1.22 204468 username shahruz 204468 mac 204468 bytes_out 0 204468 bytes_in 0 204468 station_ip 83.123.160.219 204468 port 31 204468 unique_id port 204468 remote_ip 10.8.0.22 204471 username shahruz 204471 mac 204471 bytes_out 0 204471 bytes_in 0 204471 station_ip 5.119.109.229 204471 port 98 204471 unique_id port 204471 remote_ip 10.8.1.22 204477 username farhad3 204477 kill_reason Another user logged on this global unique id 204477 mac 204477 bytes_out 0 204477 bytes_in 0 204477 station_ip 5.120.173.80 204477 port 93 204477 unique_id port 204477 remote_ip 10.8.1.38 204480 username farhad3 204480 mac 204432 remote_ip 10.8.1.22 204434 username shahruz 204434 mac 204434 bytes_out 0 204434 bytes_in 0 204434 station_ip 5.119.77.27 204434 port 91 204434 unique_id port 204434 remote_ip 10.8.1.22 204435 username teymori5660 204435 kill_reason Another user logged on this global unique id 204435 mac 204435 bytes_out 0 204435 bytes_in 0 204435 station_ip 5.120.76.174 204435 port 93 204435 unique_id port 204436 username mammad 204436 unique_id port 204436 terminate_cause User-Request 204436 bytes_out 1449086 204436 bytes_in 14184204 204436 station_ip 2.183.240.55 204436 port 15729993 204436 nas_port_type Virtual 204436 remote_ip 5.5.5.255 204438 username charkhandaz3496 204438 mac 204438 bytes_out 70217 204438 bytes_in 71862 204438 station_ip 5.120.128.36 204438 port 40 204438 unique_id port 204438 remote_ip 10.8.0.178 204445 username shahruz 204445 mac 204445 bytes_out 0 204445 bytes_in 0 204445 station_ip 5.119.77.27 204445 port 40 204445 unique_id port 204445 remote_ip 10.8.0.22 204446 username daryaei1233 204446 mac 204446 bytes_out 0 204446 bytes_in 0 204446 station_ip 83.122.1.96 204446 port 40 204446 unique_id port 204446 remote_ip 10.8.0.242 204448 username farhad3 204448 mac 204448 bytes_out 2410676 204448 bytes_in 19371514 204448 station_ip 5.120.173.80 204448 port 92 204448 unique_id port 204448 remote_ip 10.8.1.38 204462 username farhad3 204462 mac 204462 bytes_out 916291 204462 bytes_in 12292478 204462 station_ip 5.120.173.80 204462 port 98 204462 unique_id port 204462 remote_ip 10.8.1.38 204463 username teymori5660 204463 mac 204463 bytes_out 0 204463 bytes_in 0 204463 station_ip 5.120.76.174 204463 port 93 204463 unique_id port 204465 username shahruz 204465 mac 204465 bytes_out 0 204465 bytes_in 0 204465 station_ip 83.123.160.219 204465 port 99 204465 unique_id port 204465 remote_ip 10.8.1.22 204470 username shahruz 204470 mac 204470 bytes_out 0 204470 bytes_in 0 204470 station_ip 5.119.109.229 204470 port 93 204470 unique_id port 204470 remote_ip 10.8.1.22 204474 username barzegar 204474 mac 204474 bytes_out 2899446 204474 bytes_in 1693735 204474 station_ip 5.119.133.181 204474 port 98 204474 unique_id port 204474 remote_ip 10.8.1.6 204475 username shahruz 204475 mac 204475 bytes_out 0 204475 bytes_in 0 204475 station_ip 5.119.109.229 204475 port 98 204475 unique_id port 204475 remote_ip 10.8.1.22 204485 username shahruz 204485 mac 204485 bytes_out 0 204485 bytes_in 0 204485 station_ip 5.119.109.229 204485 port 98 204485 unique_id port 204485 remote_ip 10.8.1.22 204486 username shahruz 204486 mac 204486 bytes_out 0 204486 bytes_in 0 204486 station_ip 5.119.109.229 204486 port 98 204486 unique_id port 204486 remote_ip 10.8.1.22 204487 username shahruz 204487 mac 204487 bytes_out 0 204487 bytes_in 0 204487 station_ip 5.119.109.229 204487 port 98 204487 unique_id port 204487 remote_ip 10.8.1.22 204488 username farhad3 204488 kill_reason Another user logged on this global unique id 204488 mac 204488 bytes_out 0 204488 bytes_in 0 204488 station_ip 5.120.173.80 204488 port 93 204488 unique_id port 204495 username barzegar 204495 mac 204495 bytes_out 169360 204495 bytes_in 1325756 204495 station_ip 5.120.109.111 204495 port 88 204495 unique_id port 204495 remote_ip 10.8.1.6 204499 username shahruz 204499 mac 204499 bytes_out 0 204499 bytes_in 0 204499 station_ip 5.119.109.229 204499 port 88 204499 unique_id port 204499 remote_ip 10.8.1.22 204501 username shahruz 204472 kill_reason Another user logged on this global unique id 204472 mac 204472 bytes_out 0 204472 bytes_in 0 204472 station_ip 37.129.53.49 204472 port 28 204472 unique_id port 204472 remote_ip 10.8.0.94 204473 username shahruz 204473 mac 204473 bytes_out 0 204473 bytes_in 0 204473 station_ip 5.119.109.229 204473 port 98 204473 unique_id port 204473 remote_ip 10.8.1.22 204476 username shahruz 204476 mac 204476 bytes_out 0 204476 bytes_in 0 204476 station_ip 5.119.109.229 204476 port 98 204476 unique_id port 204476 remote_ip 10.8.1.22 204478 username farhad3 204478 kill_reason Another user logged on this global unique id 204478 mac 204478 bytes_out 0 204478 bytes_in 0 204478 station_ip 5.120.173.80 204478 port 93 204478 unique_id port 204479 username shahruz 204479 mac 204479 bytes_out 0 204479 bytes_in 0 204479 station_ip 5.119.109.229 204479 port 31 204479 unique_id port 204479 remote_ip 10.8.0.22 204481 username shahruz 204481 mac 204481 bytes_out 0 204481 bytes_in 0 204481 station_ip 5.119.109.229 204481 port 98 204481 unique_id port 204481 remote_ip 10.8.1.22 204484 username farhad3 204484 kill_reason Another user logged on this global unique id 204484 mac 204484 bytes_out 0 204484 bytes_in 0 204484 station_ip 5.120.173.80 204484 port 93 204484 unique_id port 204484 remote_ip 10.8.1.38 204489 username shahruz 204489 mac 204489 bytes_out 654445 204489 bytes_in 7047435 204489 station_ip 5.119.109.229 204489 port 98 204489 unique_id port 204489 remote_ip 10.8.1.22 204491 username alipour1506 204491 mac 204491 bytes_out 0 204491 bytes_in 0 204491 station_ip 151.234.23.177 204491 port 88 204491 unique_id port 204492 username barzegar 204492 mac 204492 bytes_out 58365 204492 bytes_in 173585 204492 station_ip 5.120.109.111 204492 port 88 204492 unique_id port 204492 remote_ip 10.8.1.6 204494 username shahruz 204494 mac 204494 bytes_out 0 204494 bytes_in 0 204494 station_ip 5.119.109.229 204494 port 98 204494 unique_id port 204494 remote_ip 10.8.1.22 204500 username shahruz 204500 mac 204500 bytes_out 0 204500 bytes_in 0 204500 station_ip 5.119.109.229 204500 port 88 204500 unique_id port 204500 remote_ip 10.8.1.22 204503 username farhad3 204503 kill_reason Another user logged on this global unique id 204503 mac 204503 bytes_out 0 204503 bytes_in 0 204503 station_ip 5.120.173.80 204503 port 93 204503 unique_id port 204504 username farhad3 204504 mac 204504 bytes_out 0 204504 bytes_in 0 204504 station_ip 5.120.173.80 204504 port 93 204504 unique_id port 204505 username shahruz 204505 mac 204505 bytes_out 0 204505 bytes_in 0 204505 station_ip 5.119.109.229 204505 port 93 204505 unique_id port 204505 remote_ip 10.8.1.22 204506 username shahruz 204506 mac 204506 bytes_out 0 204506 bytes_in 0 204506 station_ip 5.119.109.229 204506 port 93 204506 unique_id port 204506 remote_ip 10.8.1.22 204508 username sabaghnezhad 204508 mac 204508 bytes_out 1500999 204508 bytes_in 13979747 204508 station_ip 37.129.116.99 204508 port 25 204508 unique_id port 204508 remote_ip 10.8.0.18 204512 username shahruz 204512 mac 204512 bytes_out 0 204512 bytes_in 0 204512 station_ip 5.119.109.229 204512 port 93 204512 unique_id port 204512 remote_ip 10.8.1.22 204515 username yarmohamadi7916 204515 kill_reason Another user logged on this global unique id 204515 mac 204515 bytes_out 0 204515 bytes_in 0 204515 station_ip 5.119.52.149 204515 port 97 204515 unique_id port 204517 username yarmohamadi7916 204517 kill_reason Another user logged on this global unique id 204480 bytes_out 0 204480 bytes_in 0 204480 station_ip 5.120.173.80 204480 port 93 204480 unique_id port 204482 username shahruz 204482 mac 204482 bytes_out 0 204482 bytes_in 0 204482 station_ip 5.119.109.229 204482 port 98 204482 unique_id port 204482 remote_ip 10.8.1.22 204483 username shahruz 204483 mac 204483 bytes_out 0 204483 bytes_in 0 204483 station_ip 5.119.109.229 204483 port 98 204483 unique_id port 204483 remote_ip 10.8.1.22 204490 username akbari0070 204490 mac 204490 bytes_out 0 204490 bytes_in 0 204490 station_ip 37.129.149.36 204490 port 31 204490 unique_id port 204490 remote_ip 10.8.0.90 204493 username shahruz 204493 mac 204493 bytes_out 0 204493 bytes_in 0 204493 station_ip 5.119.109.229 204493 port 98 204493 unique_id port 204493 remote_ip 10.8.1.22 204496 username farhad3 204496 kill_reason Another user logged on this global unique id 204496 mac 204496 bytes_out 0 204496 bytes_in 0 204496 station_ip 5.120.173.80 204496 port 93 204496 unique_id port 204497 username shahruz 204497 mac 204497 bytes_out 0 204497 bytes_in 0 204497 station_ip 5.119.109.229 204497 port 88 204497 unique_id port 204497 remote_ip 10.8.1.22 204498 username shahruz 204498 mac 204498 bytes_out 0 204498 bytes_in 0 204498 station_ip 5.119.109.229 204498 port 88 204498 unique_id port 204498 remote_ip 10.8.1.22 204507 username shahruz 204507 mac 204507 bytes_out 0 204507 bytes_in 0 204507 station_ip 5.119.109.229 204507 port 31 204507 unique_id port 204507 remote_ip 10.8.0.22 204513 username shahruz 204513 mac 204513 bytes_out 0 204513 bytes_in 0 204513 station_ip 5.119.109.229 204513 port 93 204513 unique_id port 204513 remote_ip 10.8.1.22 204514 username shahruz 204514 mac 204514 bytes_out 0 204514 bytes_in 0 204514 station_ip 5.119.109.229 204514 port 93 204514 unique_id port 204514 remote_ip 10.8.1.22 204516 username shahruz 204516 kill_reason Maximum check online fails reached 204516 mac 204516 bytes_out 0 204516 bytes_in 0 204516 station_ip 5.119.109.229 204516 port 25 204516 unique_id port 204517 mac 204517 bytes_out 0 204517 bytes_in 0 204517 station_ip 5.119.52.149 204517 port 97 204517 unique_id port 204518 username shahruz 204518 mac 204518 bytes_out 0 204518 bytes_in 0 204518 station_ip 5.119.109.229 204518 port 93 204518 unique_id port 204518 remote_ip 10.8.1.22 204519 username shahruz 204519 mac 204519 bytes_out 0 204519 bytes_in 0 204519 station_ip 5.119.109.229 204519 port 93 204519 unique_id port 204519 remote_ip 10.8.1.22 204520 username aminvpn 204520 unique_id port 204520 terminate_cause Lost-Carrier 204520 bytes_out 361795 204520 bytes_in 2458566 204520 station_ip 83.123.174.130 204520 port 15730001 204520 nas_port_type Virtual 204520 remote_ip 5.5.5.30 204524 username shahruz 204524 mac 204524 bytes_out 0 204524 bytes_in 0 204524 station_ip 5.119.109.229 204524 port 93 204524 unique_id port 204524 remote_ip 10.8.1.22 204526 username yarmohamadi7916 204526 kill_reason Another user logged on this global unique id 204526 mac 204526 bytes_out 0 204526 bytes_in 0 204526 station_ip 5.119.52.149 204526 port 97 204526 unique_id port 204527 username shahruz 204527 mac 204527 bytes_out 0 204527 bytes_in 0 204527 station_ip 5.119.109.229 204527 port 93 204527 unique_id port 204527 remote_ip 10.8.1.22 204528 username shahruz 204528 mac 204528 bytes_out 0 204528 bytes_in 0 204528 station_ip 5.119.109.229 204528 port 93 204528 unique_id port 204501 mac 204501 bytes_out 0 204501 bytes_in 0 204501 station_ip 5.119.109.229 204501 port 98 204501 unique_id port 204501 remote_ip 10.8.1.22 204502 username shahruz 204502 mac 204502 bytes_out 0 204502 bytes_in 0 204502 station_ip 5.119.109.229 204502 port 98 204502 unique_id port 204502 remote_ip 10.8.1.22 204509 username shahruz 204509 mac 204509 bytes_out 0 204509 bytes_in 0 204509 station_ip 5.119.109.229 204509 port 93 204509 unique_id port 204509 remote_ip 10.8.1.22 204510 username shahruz 204510 mac 204510 bytes_out 0 204510 bytes_in 0 204510 station_ip 5.119.109.229 204510 port 93 204510 unique_id port 204510 remote_ip 10.8.1.22 204511 username yarmohamadi7916 204511 kill_reason Another user logged on this global unique id 204511 mac 204511 bytes_out 0 204511 bytes_in 0 204511 station_ip 5.119.52.149 204511 port 97 204511 unique_id port 204511 remote_ip 10.8.1.154 204521 username yarmohamadi7916 204521 kill_reason Another user logged on this global unique id 204521 mac 204521 bytes_out 0 204521 bytes_in 0 204521 station_ip 5.119.52.149 204521 port 97 204521 unique_id port 204522 username shahruz 204522 mac 204522 bytes_out 0 204522 bytes_in 0 204522 station_ip 5.119.109.229 204522 port 93 204522 unique_id port 204522 remote_ip 10.8.1.22 204523 username shahruz 204523 mac 204523 bytes_out 0 204523 bytes_in 0 204523 station_ip 5.119.109.229 204523 port 93 204523 unique_id port 204523 remote_ip 10.8.1.22 204525 username shahruz 204525 mac 204525 bytes_out 0 204525 bytes_in 0 204525 station_ip 5.119.109.229 204525 port 93 204525 unique_id port 204525 remote_ip 10.8.1.22 204528 remote_ip 10.8.1.22 204529 username alirezaza 204529 unique_id port 204529 terminate_cause User-Request 204529 bytes_out 293 204529 bytes_in 210 204529 station_ip 5.120.48.216 204529 port 15730002 204529 nas_port_type Virtual 204529 remote_ip 5.5.5.20 204530 username shahruz 204530 mac 204530 bytes_out 0 204530 bytes_in 0 204530 station_ip 5.119.109.229 204530 port 93 204530 unique_id port 204530 remote_ip 10.8.1.22 204531 username shahruz 204531 mac 204531 bytes_out 0 204531 bytes_in 0 204531 station_ip 5.119.109.229 204531 port 93 204531 unique_id port 204531 remote_ip 10.8.1.22 204532 username shahruz 204532 mac 204532 bytes_out 0 204532 bytes_in 0 204532 station_ip 5.119.109.229 204532 port 93 204532 unique_id port 204532 remote_ip 10.8.1.22 204533 username shahruz 204533 mac 204533 bytes_out 0 204533 bytes_in 0 204533 station_ip 5.119.109.229 204533 port 93 204533 unique_id port 204533 remote_ip 10.8.1.22 204534 username shahruz 204534 mac 204534 bytes_out 0 204534 bytes_in 0 204534 station_ip 5.119.109.229 204534 port 93 204534 unique_id port 204534 remote_ip 10.8.1.22 204535 username shahruz 204535 mac 204535 bytes_out 0 204535 bytes_in 0 204535 station_ip 5.119.109.229 204535 port 93 204535 unique_id port 204535 remote_ip 10.8.1.22 204536 username shahruz 204536 mac 204536 bytes_out 0 204536 bytes_in 0 204536 station_ip 5.119.109.229 204536 port 93 204536 unique_id port 204536 remote_ip 10.8.1.22 204537 username mohammadjavad 204537 kill_reason Another user logged on this global unique id 204537 mac 204537 bytes_out 0 204537 bytes_in 0 204537 station_ip 37.129.49.9 204537 port 31 204537 unique_id port 204537 remote_ip 10.8.0.58 204538 username yarmohamadi7916 204538 kill_reason Another user logged on this global unique id 204538 mac 204538 bytes_out 0 204538 bytes_in 0 204538 station_ip 5.119.52.149 204538 port 97 204538 unique_id port 204542 username shahruz 204542 mac 204542 bytes_out 0 204542 bytes_in 0 204542 station_ip 5.119.109.229 204542 port 98 204542 unique_id port 204542 remote_ip 10.8.1.22 204544 username houshang 204544 kill_reason Another user logged on this global unique id 204544 mac 204544 bytes_out 0 204544 bytes_in 0 204544 station_ip 5.120.179.237 204544 port 93 204544 unique_id port 204544 remote_ip 10.8.1.134 204551 username yarmohamadi7916 204551 kill_reason Another user logged on this global unique id 204551 mac 204551 bytes_out 0 204551 bytes_in 0 204551 station_ip 5.119.52.149 204551 port 97 204551 unique_id port 204552 username kalantary6037 204552 mac 204552 bytes_out 0 204552 bytes_in 0 204552 station_ip 37.129.108.183 204552 port 84 204552 unique_id port 204552 remote_ip 10.8.1.150 204553 username kalantary6037 204553 mac 204553 bytes_out 0 204553 bytes_in 0 204553 station_ip 37.129.108.183 204553 port 84 204553 unique_id port 204553 remote_ip 10.8.1.150 204554 username houshang 204554 kill_reason Another user logged on this global unique id 204554 mac 204554 bytes_out 0 204554 bytes_in 0 204554 station_ip 5.120.179.237 204554 port 93 204554 unique_id port 204555 username yarmohamadi7916 204555 kill_reason Another user logged on this global unique id 204555 mac 204555 bytes_out 0 204555 bytes_in 0 204555 station_ip 5.119.52.149 204555 port 97 204555 unique_id port 204556 username shahruz 204556 mac 204556 bytes_out 0 204556 bytes_in 0 204556 station_ip 5.119.109.229 204556 port 84 204556 unique_id port 204556 remote_ip 10.8.1.22 204557 username houshang 204557 kill_reason Another user logged on this global unique id 204557 mac 204557 bytes_out 0 204557 bytes_in 0 204557 station_ip 5.120.179.237 204557 port 93 204557 unique_id port 204559 username shahruz 204559 mac 204559 bytes_out 0 204559 bytes_in 0 204559 station_ip 5.119.109.229 204559 port 84 204559 unique_id port 204559 remote_ip 10.8.1.22 204560 username shahruz 204560 mac 204560 bytes_out 0 204560 bytes_in 0 204560 station_ip 5.119.109.229 204560 port 84 204560 unique_id port 204560 remote_ip 10.8.1.22 204569 username shahruz 204569 mac 204569 bytes_out 0 204569 bytes_in 0 204569 station_ip 5.119.109.229 204569 port 93 204569 unique_id port 204569 remote_ip 10.8.1.22 204570 username shahruz 204570 mac 204570 bytes_out 0 204570 bytes_in 0 204570 station_ip 5.119.109.229 204570 port 93 204570 unique_id port 204570 remote_ip 10.8.1.22 204572 username pourshad 204572 kill_reason Another user logged on this global unique id 204572 mac 204572 bytes_out 0 204572 bytes_in 0 204572 station_ip 5.120.229.1 204572 port 88 204572 unique_id port 204584 username shahruz 204584 mac 204584 bytes_out 0 204584 bytes_in 0 204584 station_ip 5.119.109.229 204584 port 84 204584 unique_id port 204584 remote_ip 10.8.1.22 204585 username shahruz 204585 mac 204585 bytes_out 0 204585 bytes_in 0 204585 station_ip 5.119.109.229 204585 port 84 204585 unique_id port 204585 remote_ip 10.8.1.22 204586 username shahruz 204586 mac 204586 bytes_out 0 204586 bytes_in 0 204586 station_ip 5.119.109.229 204586 port 84 204586 unique_id port 204586 remote_ip 10.8.1.22 204588 username shahruz 204588 mac 204588 bytes_out 0 204588 bytes_in 0 204588 station_ip 5.119.109.229 204588 port 84 204588 unique_id port 204588 remote_ip 10.8.1.22 204592 username daryaei1233 204592 mac 204592 bytes_out 343784 204592 bytes_in 4456922 204592 station_ip 83.122.1.96 204592 port 31 204592 unique_id port 204539 username yarmohamadi7916 204539 kill_reason Another user logged on this global unique id 204539 mac 204539 bytes_out 0 204539 bytes_in 0 204539 station_ip 5.119.52.149 204539 port 97 204539 unique_id port 204541 username yarmohamadi7916 204541 kill_reason Another user logged on this global unique id 204541 mac 204541 bytes_out 0 204541 bytes_in 0 204541 station_ip 5.119.52.149 204541 port 97 204541 unique_id port 204548 username houshang 204548 kill_reason Another user logged on this global unique id 204548 mac 204548 bytes_out 0 204548 bytes_in 0 204548 station_ip 5.120.179.237 204548 port 93 204548 unique_id port 204549 username yarmohamadi7916 204549 kill_reason Another user logged on this global unique id 204549 mac 204549 bytes_out 0 204549 bytes_in 0 204549 station_ip 5.119.52.149 204549 port 97 204549 unique_id port 204558 username shahruz 204558 mac 204558 bytes_out 0 204558 bytes_in 0 204558 station_ip 5.119.109.229 204558 port 84 204558 unique_id port 204558 remote_ip 10.8.1.22 204561 username teymori5660 204561 mac 204561 bytes_out 2649600 204561 bytes_in 32184829 204561 station_ip 5.119.227.222 204561 port 40 204561 unique_id port 204561 remote_ip 10.8.0.122 204562 username houshang 204562 mac 204562 bytes_out 0 204562 bytes_in 0 204562 station_ip 5.120.179.237 204562 port 93 204562 unique_id port 204563 username sekonji0496 204563 mac 204563 bytes_out 2165867 204563 bytes_in 15596568 204563 station_ip 37.129.11.69 204563 port 31 204563 unique_id port 204563 remote_ip 10.8.0.66 204565 username sekonji0496 204565 mac 204565 bytes_out 0 204565 bytes_in 0 204565 station_ip 37.129.11.69 204565 port 31 204565 unique_id port 204565 remote_ip 10.8.0.66 204566 username sekonji0496 204566 mac 204566 bytes_out 0 204566 bytes_in 0 204566 station_ip 37.129.11.69 204566 port 31 204566 unique_id port 204566 remote_ip 10.8.0.66 204568 username yarmohamadi7916 204568 kill_reason Another user logged on this global unique id 204568 mac 204568 bytes_out 0 204568 bytes_in 0 204568 station_ip 5.119.52.149 204568 port 97 204568 unique_id port 204571 username shahruz 204571 mac 204571 bytes_out 0 204571 bytes_in 0 204571 station_ip 5.119.109.229 204571 port 93 204571 unique_id port 204571 remote_ip 10.8.1.22 204573 username houshang 204573 kill_reason Another user logged on this global unique id 204573 mac 204573 bytes_out 0 204573 bytes_in 0 204573 station_ip 5.119.232.31 204573 port 84 204573 unique_id port 204573 remote_ip 10.8.1.134 204576 username houshang 204576 kill_reason Another user logged on this global unique id 204576 mac 204576 bytes_out 0 204576 bytes_in 0 204576 station_ip 5.119.232.31 204576 port 84 204576 unique_id port 204577 username nilufarrajaei 204577 kill_reason Another user logged on this global unique id 204577 mac 204577 bytes_out 0 204577 bytes_in 0 204577 station_ip 37.129.53.49 204577 port 28 204577 unique_id port 204580 username jafari 204580 kill_reason Another user logged on this global unique id 204580 mac 204580 bytes_out 0 204580 bytes_in 0 204580 station_ip 37.137.43.129 204580 port 98 204580 unique_id port 204580 remote_ip 10.8.1.126 204582 username houshang 204582 mac 204582 bytes_out 0 204582 bytes_in 0 204582 station_ip 5.119.232.31 204582 port 84 204582 unique_id port 204583 username teymori5660 204583 mac 204583 bytes_out 0 204583 bytes_in 0 204583 station_ip 5.120.43.180 204583 port 93 204583 unique_id port 204583 remote_ip 10.8.1.14 204587 username shahruz 204587 mac 204587 bytes_out 0 204587 bytes_in 0 204587 station_ip 5.119.109.229 204587 port 84 204540 username mohammadjavad 204540 mac 204540 bytes_out 0 204540 bytes_in 0 204540 station_ip 37.129.49.9 204540 port 31 204540 unique_id port 204543 username alirezaza 204543 unique_id port 204543 terminate_cause Lost-Carrier 204543 bytes_out 1812633 204543 bytes_in 46532648 204543 station_ip 5.120.48.216 204543 port 15730003 204543 nas_port_type Virtual 204543 remote_ip 5.5.5.20 204545 username shahruz 204545 mac 204545 bytes_out 0 204545 bytes_in 0 204545 station_ip 5.119.109.229 204545 port 98 204545 unique_id port 204545 remote_ip 10.8.1.22 204546 username mohammadjavad 204546 mac 204546 bytes_out 0 204546 bytes_in 0 204546 station_ip 37.129.53.5 204546 port 31 204546 unique_id port 204546 remote_ip 10.8.0.58 204547 username khademi 204547 mac 204547 bytes_out 0 204547 bytes_in 0 204547 station_ip 37.129.212.3 204547 port 84 204547 unique_id port 204550 username shahruz 204550 mac 204550 bytes_out 0 204550 bytes_in 0 204550 station_ip 5.119.109.229 204550 port 84 204550 unique_id port 204550 remote_ip 10.8.1.22 204564 username sekonji0496 204564 mac 204564 bytes_out 0 204564 bytes_in 0 204564 station_ip 37.129.11.69 204564 port 31 204564 unique_id port 204564 remote_ip 10.8.0.66 204567 username pourshad 204567 kill_reason Another user logged on this global unique id 204567 mac 204567 bytes_out 0 204567 bytes_in 0 204567 station_ip 5.120.229.1 204567 port 88 204567 unique_id port 204567 remote_ip 10.8.1.58 204574 username shahruz 204574 mac 204574 bytes_out 0 204574 bytes_in 0 204574 station_ip 5.119.109.229 204574 port 93 204574 unique_id port 204574 remote_ip 10.8.1.22 204575 username shahruz 204575 mac 204575 bytes_out 0 204575 bytes_in 0 204575 station_ip 5.119.109.229 204575 port 31 204575 unique_id port 204575 remote_ip 10.8.0.22 204578 username shahruz 204578 mac 204578 bytes_out 0 204578 bytes_in 0 204578 station_ip 5.119.109.229 204578 port 31 204578 unique_id port 204578 remote_ip 10.8.0.22 204579 username shahruz 204579 mac 204579 bytes_out 0 204579 bytes_in 0 204579 station_ip 5.119.109.229 204579 port 31 204579 unique_id port 204579 remote_ip 10.8.0.22 204581 username houshang 204581 kill_reason Another user logged on this global unique id 204581 mac 204581 bytes_out 0 204581 bytes_in 0 204581 station_ip 5.119.232.31 204581 port 84 204581 unique_id port 204589 username shahruz 204589 mac 204589 bytes_out 0 204589 bytes_in 0 204589 station_ip 5.119.109.229 204589 port 84 204589 unique_id port 204589 remote_ip 10.8.1.22 204593 username shahruz 204593 mac 204593 bytes_out 0 204593 bytes_in 0 204593 station_ip 5.119.109.229 204593 port 84 204593 unique_id port 204593 remote_ip 10.8.1.22 204594 username shahruz 204594 mac 204594 bytes_out 0 204594 bytes_in 0 204594 station_ip 5.119.109.229 204594 port 84 204594 unique_id port 204594 remote_ip 10.8.1.22 204595 username shahruz 204595 mac 204595 bytes_out 0 204595 bytes_in 0 204595 station_ip 5.119.109.229 204595 port 84 204595 unique_id port 204595 remote_ip 10.8.1.22 204604 username godarzi 204604 mac 204604 bytes_out 3380305 204604 bytes_in 16352935 204604 station_ip 5.119.186.88 204604 port 93 204604 unique_id port 204604 remote_ip 10.8.1.78 204608 username daryaei1233 204608 mac 204608 bytes_out 0 204608 bytes_in 0 204608 station_ip 83.122.1.96 204608 port 28 204608 unique_id port 204608 remote_ip 10.8.0.242 204610 username mohammadjavad 204610 mac 204610 bytes_out 0 204610 bytes_in 0 204587 unique_id port 204587 remote_ip 10.8.1.22 204590 username shahruz 204590 mac 204590 bytes_out 0 204590 bytes_in 0 204590 station_ip 5.119.109.229 204590 port 84 204590 unique_id port 204590 remote_ip 10.8.1.22 204591 username shahruz 204591 mac 204591 bytes_out 0 204591 bytes_in 0 204591 station_ip 5.119.109.229 204591 port 84 204591 unique_id port 204591 remote_ip 10.8.1.22 204598 username houshang 204598 kill_reason Another user logged on this global unique id 204598 mac 204598 bytes_out 0 204598 bytes_in 0 204598 station_ip 5.119.151.141 204598 port 99 204598 unique_id port 204598 remote_ip 10.8.1.134 204599 username nilufarrajaei 204599 mac 204599 bytes_out 0 204599 bytes_in 0 204599 station_ip 37.129.53.49 204599 port 28 204599 unique_id port 204602 username shahruz 204602 mac 204602 bytes_out 0 204602 bytes_in 0 204602 station_ip 5.119.109.229 204602 port 99 204602 unique_id port 204602 remote_ip 10.8.1.22 204603 username daryaei1233 204603 kill_reason Another user logged on this global unique id 204603 mac 204603 bytes_out 0 204603 bytes_in 0 204603 station_ip 83.122.1.96 204603 port 31 204603 unique_id port 204603 remote_ip 10.8.0.242 204607 username kalantary6037 204607 mac 204607 bytes_out 2196631 204607 bytes_in 27430345 204607 station_ip 83.122.174.52 204607 port 84 204607 unique_id port 204607 remote_ip 10.8.1.150 204609 username daryaei1233 204609 mac 204609 bytes_out 0 204609 bytes_in 0 204609 station_ip 83.122.1.96 204609 port 28 204609 unique_id port 204609 remote_ip 10.8.0.242 204613 username aminvpn 204613 unique_id port 204613 terminate_cause User-Request 204613 bytes_out 16949 204613 bytes_in 82711 204613 station_ip 37.129.83.209 204613 port 15730004 204613 nas_port_type Virtual 204613 remote_ip 5.5.5.21 204615 username jafari 204615 mac 204615 bytes_out 0 204615 bytes_in 0 204615 station_ip 37.137.43.129 204615 port 98 204615 unique_id port 204617 username yarmohamadi7916 204617 kill_reason Another user logged on this global unique id 204617 mac 204617 bytes_out 0 204617 bytes_in 0 204617 station_ip 5.119.52.149 204617 port 97 204617 unique_id port 204619 username nilufarrajaei 204619 mac 204619 bytes_out 8317 204619 bytes_in 15751 204619 station_ip 37.129.53.49 204619 port 31 204619 unique_id port 204619 remote_ip 10.8.0.94 204629 username daryaei1233 204629 mac 204629 bytes_out 0 204629 bytes_in 0 204629 station_ip 83.122.1.96 204629 port 28 204629 unique_id port 204629 remote_ip 10.8.0.242 204632 username nilufarrajaei 204632 mac 204632 bytes_out 0 204632 bytes_in 0 204632 station_ip 37.129.53.49 204632 port 93 204632 unique_id port 204632 remote_ip 10.8.1.138 204634 username godarzi 204634 mac 204634 bytes_out 0 204634 bytes_in 0 204634 station_ip 5.119.186.88 204634 port 97 204634 unique_id port 204634 remote_ip 10.8.1.78 204636 username daryaei1233 204636 mac 204636 bytes_out 0 204636 bytes_in 0 204636 station_ip 83.122.1.96 204636 port 28 204636 unique_id port 204636 remote_ip 10.8.0.242 204637 username shahruz 204637 mac 204637 bytes_out 0 204637 bytes_in 0 204637 station_ip 5.119.109.229 204637 port 98 204637 unique_id port 204637 remote_ip 10.8.1.22 204641 username esmaeilkazemi 204641 mac 204641 bytes_out 0 204641 bytes_in 0 204641 station_ip 83.122.113.81 204641 port 28 204641 unique_id port 204641 remote_ip 10.8.0.86 204644 username daryaei1233 204644 mac 204644 bytes_out 0 204644 bytes_in 0 204644 station_ip 83.122.1.96 204644 port 98 204644 unique_id port 204592 remote_ip 10.8.0.242 204596 username daryaei1233 204596 mac 204596 bytes_out 2535 204596 bytes_in 4812 204596 station_ip 83.122.1.96 204596 port 31 204596 unique_id port 204596 remote_ip 10.8.0.242 204597 username jafari 204597 kill_reason Another user logged on this global unique id 204597 mac 204597 bytes_out 0 204597 bytes_in 0 204597 station_ip 37.137.43.129 204597 port 98 204597 unique_id port 204600 username mirzaei6046 204600 kill_reason Another user logged on this global unique id 204600 mac 204600 bytes_out 0 204600 bytes_in 0 204600 station_ip 5.119.206.233 204600 port 92 204600 unique_id port 204600 remote_ip 10.8.1.214 204601 username houshang 204601 mac 204601 bytes_out 0 204601 bytes_in 0 204601 station_ip 5.119.151.141 204601 port 99 204601 unique_id port 204605 username yaghobi 204605 mac 204605 bytes_out 0 204605 bytes_in 0 204605 station_ip 83.122.73.19 204605 port 40 204605 unique_id port 204605 remote_ip 10.8.0.174 204606 username daryaei1233 204606 mac 204606 bytes_out 0 204606 bytes_in 0 204606 station_ip 83.122.1.96 204606 port 31 204606 unique_id port 204611 username teymori5660 204611 mac 204611 bytes_out 0 204611 bytes_in 0 204611 station_ip 5.120.43.180 204611 port 84 204611 unique_id port 204611 remote_ip 10.8.1.14 204612 username shahruz 204612 mac 204612 bytes_out 0 204612 bytes_in 0 204612 station_ip 5.119.109.229 204612 port 93 204612 unique_id port 204612 remote_ip 10.8.1.22 204614 username mohammadjavad 204614 mac 204614 bytes_out 51050 204614 bytes_in 86867 204614 station_ip 37.129.93.225 204614 port 31 204614 unique_id port 204614 remote_ip 10.8.0.58 204620 username daryaei1233 204620 kill_reason Another user logged on this global unique id 204620 mac 204620 bytes_out 0 204620 bytes_in 0 204620 station_ip 83.122.1.96 204620 port 28 204620 unique_id port 204620 remote_ip 10.8.0.242 204621 username mohsenaskari 204621 mac 204621 bytes_out 0 204621 bytes_in 0 204621 station_ip 46.225.209.20 204621 port 84 204621 unique_id port 204621 remote_ip 10.8.1.206 204622 username shahruz 204622 mac 204622 bytes_out 0 204622 bytes_in 0 204622 station_ip 5.119.109.229 204622 port 84 204622 unique_id port 204622 remote_ip 10.8.1.22 204626 username daryaei1233 204626 mac 204626 bytes_out 788084 204626 bytes_in 10000486 204626 station_ip 83.122.1.96 204626 port 28 204626 unique_id port 204626 remote_ip 10.8.0.242 204627 username nilufarrajaei 204627 mac 204627 bytes_out 50979 204627 bytes_in 196469 204627 station_ip 37.129.53.49 204627 port 40 204627 unique_id port 204627 remote_ip 10.8.0.94 204628 username daryaei1233 204628 mac 204628 bytes_out 0 204628 bytes_in 0 204628 station_ip 83.122.1.96 204628 port 28 204628 unique_id port 204628 remote_ip 10.8.0.242 204639 username yaghobi 204639 mac 204639 bytes_out 0 204639 bytes_in 0 204639 station_ip 83.122.13.199 204639 port 40 204639 unique_id port 204639 remote_ip 10.8.0.174 204640 username yarmohamadi7916 204640 mac 204640 bytes_out 0 204640 bytes_in 0 204640 station_ip 5.119.52.149 204640 port 84 204640 unique_id port 204640 remote_ip 10.8.1.154 204642 username godarzi 204642 mac 204642 bytes_out 0 204642 bytes_in 0 204642 station_ip 5.119.186.88 204642 port 97 204642 unique_id port 204642 remote_ip 10.8.1.78 204643 username shahruz 204643 mac 204643 bytes_out 0 204643 bytes_in 0 204643 station_ip 5.119.109.229 204643 port 84 204643 unique_id port 204643 remote_ip 10.8.1.22 204649 username shahruz 204610 station_ip 37.129.93.225 204610 port 41 204610 unique_id port 204610 remote_ip 10.8.0.58 204616 username mohammadjavad 204616 mac 204616 bytes_out 0 204616 bytes_in 0 204616 station_ip 37.129.93.225 204616 port 40 204616 unique_id port 204616 remote_ip 10.8.0.58 204618 username nilufarrajaei 204618 mac 204618 bytes_out 3880344 204618 bytes_in 35099564 204618 station_ip 37.129.53.49 204618 port 42 204618 unique_id port 204618 remote_ip 10.8.0.94 204623 username daryaei1233 204623 mac 204623 bytes_out 0 204623 bytes_in 0 204623 station_ip 83.122.1.96 204623 port 28 204623 unique_id port 204624 username yarmohamadi7916 204624 mac 204624 bytes_out 0 204624 bytes_in 0 204624 station_ip 5.119.52.149 204624 port 97 204624 unique_id port 204625 username morteza4424 204625 mac 204625 bytes_out 0 204625 bytes_in 0 204625 station_ip 113.203.97.213 204625 port 41 204625 unique_id port 204625 remote_ip 10.8.0.70 204630 username daryaei1233 204630 mac 204630 bytes_out 0 204630 bytes_in 0 204630 station_ip 83.122.1.96 204630 port 28 204630 unique_id port 204630 remote_ip 10.8.0.242 204631 username shahruz 204631 mac 204631 bytes_out 0 204631 bytes_in 0 204631 station_ip 5.119.109.229 204631 port 97 204631 unique_id port 204631 remote_ip 10.8.1.22 204633 username daryaei1233 204633 mac 204633 bytes_out 0 204633 bytes_in 0 204633 station_ip 83.122.1.96 204633 port 28 204633 unique_id port 204633 remote_ip 10.8.0.242 204635 username daryaei1233 204635 mac 204635 bytes_out 0 204635 bytes_in 0 204635 station_ip 83.122.1.96 204635 port 28 204635 unique_id port 204635 remote_ip 10.8.0.242 204638 username iranmanesh4443 204638 mac 204638 bytes_out 0 204638 bytes_in 0 204638 station_ip 5.120.145.232 204638 port 97 204638 unique_id port 204638 remote_ip 10.8.1.122 204646 username nilufarrajaei 204646 mac 204646 bytes_out 2524432 204646 bytes_in 33883138 204646 station_ip 37.129.53.49 204646 port 93 204646 unique_id port 204646 remote_ip 10.8.1.138 204648 username nilufarrajaei 204648 mac 204648 bytes_out 78538 204648 bytes_in 54471 204648 station_ip 37.129.53.49 204648 port 28 204648 unique_id port 204648 remote_ip 10.8.0.94 204653 username alirezaza 204653 unique_id port 204653 terminate_cause Lost-Carrier 204653 bytes_out 141973 204653 bytes_in 458807 204653 station_ip 5.120.123.188 204653 port 15730011 204653 nas_port_type Virtual 204653 remote_ip 5.5.5.24 204655 username daryaei1233 204655 mac 204655 bytes_out 0 204655 bytes_in 0 204655 station_ip 83.122.1.96 204655 port 84 204655 unique_id port 204655 remote_ip 10.8.1.230 204656 username daryaei1233 204656 mac 204656 bytes_out 1644 204656 bytes_in 5288 204656 station_ip 83.122.1.96 204656 port 40 204656 unique_id port 204656 remote_ip 10.8.0.242 204662 username daryaei1233 204662 mac 204662 bytes_out 0 204662 bytes_in 0 204662 station_ip 83.122.1.96 204662 port 41 204662 unique_id port 204662 remote_ip 10.8.0.242 204664 username daryaei1233 204664 kill_reason Maximum check online fails reached 204664 mac 204664 bytes_out 0 204664 bytes_in 0 204664 station_ip 83.122.1.96 204664 port 40 204664 unique_id port 204665 username shahruz 204665 mac 204665 bytes_out 0 204665 bytes_in 0 204665 station_ip 5.119.109.229 204665 port 41 204665 unique_id port 204665 remote_ip 10.8.0.22 204666 username daryaei1233 204666 mac 204666 bytes_out 0 204666 bytes_in 0 204666 station_ip 83.122.1.96 204666 port 42 204666 unique_id port 204666 remote_ip 10.8.0.242 204644 remote_ip 10.8.1.230 204645 username daryaei1233 204645 mac 204645 bytes_out 0 204645 bytes_in 0 204645 station_ip 83.122.1.96 204645 port 28 204645 unique_id port 204645 remote_ip 10.8.0.242 204647 username shahruz 204647 mac 204647 bytes_out 0 204647 bytes_in 0 204647 station_ip 5.119.109.229 204647 port 84 204647 unique_id port 204647 remote_ip 10.8.1.22 204651 username nilufarrajaei 204651 mac 204651 bytes_out 278671 204651 bytes_in 2583661 204651 station_ip 37.129.53.49 204651 port 40 204651 unique_id port 204651 remote_ip 10.8.0.94 204658 username shahruz 204658 mac 204658 bytes_out 0 204658 bytes_in 0 204658 station_ip 5.119.109.229 204658 port 84 204658 unique_id port 204658 remote_ip 10.8.1.22 204659 username daryaei1233 204659 mac 204659 bytes_out 0 204659 bytes_in 0 204659 station_ip 83.122.1.96 204659 port 40 204659 unique_id port 204659 remote_ip 10.8.0.242 204660 username daryaei1233 204660 mac 204660 bytes_out 0 204660 bytes_in 0 204660 station_ip 83.122.1.96 204660 port 40 204660 unique_id port 204660 remote_ip 10.8.0.242 204661 username daryaei1233 204661 mac 204661 bytes_out 0 204661 bytes_in 0 204661 station_ip 83.122.1.96 204661 port 40 204661 unique_id port 204661 remote_ip 10.8.0.242 204663 username godarzi 204663 mac 204663 bytes_out 627021 204663 bytes_in 8127118 204663 station_ip 5.119.186.88 204663 port 88 204663 unique_id port 204663 remote_ip 10.8.1.78 204667 username pourshad 204667 mac 204667 bytes_out 0 204667 bytes_in 0 204667 station_ip 5.120.229.1 204667 port 41 204667 unique_id port 204667 remote_ip 10.8.0.54 204672 username motamedi9772 204672 mac 204672 bytes_out 0 204672 bytes_in 0 204672 station_ip 37.129.35.52 204672 port 28 204672 unique_id port 204672 remote_ip 10.8.0.62 204673 username shahruz 204673 mac 204673 bytes_out 0 204673 bytes_in 0 204673 station_ip 5.119.109.229 204673 port 28 204673 unique_id port 204673 remote_ip 10.8.0.22 204679 username daryaei1233 204679 kill_reason Another user logged on this global unique id 204679 mac 204679 bytes_out 0 204679 bytes_in 0 204679 station_ip 83.122.1.96 204679 port 42 204679 unique_id port 204679 remote_ip 10.8.0.242 204686 username daryaei1233 204686 kill_reason Another user logged on this global unique id 204686 mac 204686 bytes_out 0 204686 bytes_in 0 204686 station_ip 83.122.1.96 204686 port 42 204686 unique_id port 204687 username pourshad 204687 mac 204687 bytes_out 0 204687 bytes_in 0 204687 station_ip 5.120.229.1 204687 port 88 204687 unique_id port 204687 remote_ip 10.8.1.58 204689 username alirezazadeh 204689 unique_id port 204689 terminate_cause Lost-Carrier 204689 bytes_out 1208330 204689 bytes_in 15759663 204689 station_ip 5.119.249.171 204689 port 15730013 204689 nas_port_type Virtual 204689 remote_ip 5.5.5.27 204692 username hamid.e 204692 unique_id port 204692 terminate_cause User-Request 204692 bytes_out 831773 204692 bytes_in 18415364 204692 station_ip 37.27.4.42 204692 port 15730012 204692 nas_port_type Virtual 204692 remote_ip 5.5.5.25 204694 username daryaei1233 204694 mac 204694 bytes_out 0 204694 bytes_in 0 204694 station_ip 83.122.1.96 204694 port 42 204694 unique_id port 204694 remote_ip 10.8.0.242 204696 username abdolahi0311 204696 mac 204696 bytes_out 0 204696 bytes_in 0 204696 station_ip 5.119.129.199 204696 port 100 204696 unique_id port 204696 remote_ip 10.8.1.190 204706 username daryaei1233 204706 kill_reason Maximum check online fails reached 204706 mac 204706 bytes_out 0 204706 bytes_in 0 204649 mac 204649 bytes_out 0 204649 bytes_in 0 204649 station_ip 5.119.109.229 204649 port 84 204649 unique_id port 204649 remote_ip 10.8.1.22 204650 username teymori5660 204650 mac 204650 bytes_out 0 204650 bytes_in 0 204650 station_ip 5.120.43.180 204650 port 84 204650 unique_id port 204650 remote_ip 10.8.1.14 204652 username pourshad 204652 mac 204652 bytes_out 0 204652 bytes_in 0 204652 station_ip 5.120.229.1 204652 port 88 204652 unique_id port 204654 username esmaeilkazemi 204654 mac 204654 bytes_out 0 204654 bytes_in 0 204654 station_ip 83.122.113.81 204654 port 40 204654 unique_id port 204654 remote_ip 10.8.0.86 204657 username daryaei1233 204657 mac 204657 bytes_out 0 204657 bytes_in 0 204657 station_ip 83.122.1.96 204657 port 40 204657 unique_id port 204657 remote_ip 10.8.0.242 204668 username sobhan 204668 unique_id port 204668 terminate_cause Lost-Carrier 204668 bytes_out 16063022 204668 bytes_in 340475624 204668 station_ip 5.119.54.117 204668 port 15730008 204668 nas_port_type Virtual 204668 remote_ip 5.5.5.22 204670 username pourshad 204670 mac 204670 bytes_out 0 204670 bytes_in 0 204670 station_ip 5.120.229.1 204670 port 88 204670 unique_id port 204670 remote_ip 10.8.1.58 204671 username shahruz 204671 mac 204671 bytes_out 0 204671 bytes_in 0 204671 station_ip 5.119.109.229 204671 port 41 204671 unique_id port 204671 remote_ip 10.8.0.22 204675 username shahruz 204675 mac 204675 bytes_out 0 204675 bytes_in 0 204675 station_ip 5.119.109.229 204675 port 41 204675 unique_id port 204675 remote_ip 10.8.0.22 204678 username pourshad 204678 mac 204678 bytes_out 42255 204678 bytes_in 63500 204678 station_ip 5.120.229.1 204678 port 93 204678 unique_id port 204678 remote_ip 10.8.1.58 204680 username pourshad 204680 mac 204680 bytes_out 0 204680 bytes_in 0 204680 station_ip 5.120.229.1 204680 port 41 204680 unique_id port 204680 remote_ip 10.8.0.54 204681 username kalantary6037 204681 mac 204681 bytes_out 251442 204681 bytes_in 1266514 204681 station_ip 83.123.217.245 204681 port 93 204681 unique_id port 204681 remote_ip 10.8.1.150 204685 username mosi 204685 mac 204685 bytes_out 0 204685 bytes_in 0 204685 station_ip 151.235.106.19 204685 port 98 204685 unique_id port 204685 remote_ip 10.8.1.118 204688 username mosi 204688 mac 204688 bytes_out 42560 204688 bytes_in 72910 204688 station_ip 151.235.106.19 204688 port 97 204688 unique_id port 204688 remote_ip 10.8.1.118 204690 username daryaei1233 204690 mac 204690 bytes_out 0 204690 bytes_in 0 204690 station_ip 83.122.1.96 204690 port 42 204690 unique_id port 204697 username daryaei1233 204697 mac 204697 bytes_out 0 204697 bytes_in 0 204697 station_ip 83.122.1.96 204697 port 97 204697 unique_id port 204697 remote_ip 10.8.1.230 204699 username daryaei1233 204699 mac 204699 bytes_out 0 204699 bytes_in 0 204699 station_ip 83.122.1.96 204699 port 47 204699 unique_id port 204699 remote_ip 10.8.0.242 204700 username malekpoir 204700 mac 204700 bytes_out 66289 204700 bytes_in 125355 204700 station_ip 5.120.82.59 204700 port 88 204700 unique_id port 204700 remote_ip 10.8.1.70 204703 username daryaei1233 204703 mac 204703 bytes_out 0 204703 bytes_in 0 204703 station_ip 83.122.1.96 204703 port 48 204703 unique_id port 204703 remote_ip 10.8.0.242 204705 username teymori5660 204705 kill_reason Another user logged on this global unique id 204705 mac 204705 bytes_out 0 204705 bytes_in 0 204705 station_ip 5.120.43.180 204669 username nilufarrajaei 204669 mac 204669 bytes_out 0 204669 bytes_in 0 204669 station_ip 37.129.53.49 204669 port 28 204669 unique_id port 204669 remote_ip 10.8.0.94 204674 username daryaei1233 204674 mac 204674 bytes_out 0 204674 bytes_in 0 204674 station_ip 83.122.1.96 204674 port 88 204674 unique_id port 204674 remote_ip 10.8.1.230 204676 username daryaei1233 204676 mac 204676 bytes_out 0 204676 bytes_in 0 204676 station_ip 83.122.1.96 204676 port 41 204676 unique_id port 204676 remote_ip 10.8.0.242 204677 username daryaei1233 204677 mac 204677 bytes_out 0 204677 bytes_in 0 204677 station_ip 83.122.1.96 204677 port 41 204677 unique_id port 204677 remote_ip 10.8.0.242 204682 username daryaei1233 204682 kill_reason Another user logged on this global unique id 204682 mac 204682 bytes_out 0 204682 bytes_in 0 204682 station_ip 83.122.1.96 204682 port 42 204682 unique_id port 204683 username godarzi 204683 mac 204683 bytes_out 197888 204683 bytes_in 1883150 204683 station_ip 5.119.186.88 204683 port 97 204683 unique_id port 204683 remote_ip 10.8.1.78 204684 username daryaei1233 204684 kill_reason Another user logged on this global unique id 204684 mac 204684 bytes_out 0 204684 bytes_in 0 204684 station_ip 83.122.1.96 204684 port 42 204684 unique_id port 204691 username heydary4246 204691 kill_reason Another user logged on this global unique id 204691 mac 204691 bytes_out 0 204691 bytes_in 0 204691 station_ip 83.123.160.151 204691 port 43 204691 unique_id port 204691 remote_ip 10.8.0.130 204693 username shahruz 204693 mac 204693 bytes_out 0 204693 bytes_in 0 204693 station_ip 5.119.109.229 204693 port 88 204693 unique_id port 204693 remote_ip 10.8.1.22 204695 username meysam 204695 kill_reason Another user logged on this global unique id 204695 mac 204695 bytes_out 0 204695 bytes_in 0 204695 station_ip 188.158.49.162 204695 port 46 204695 unique_id port 204695 remote_ip 10.8.0.142 204698 username daryaei1233 204698 mac 204698 bytes_out 0 204698 bytes_in 0 204698 station_ip 83.122.1.96 204698 port 47 204698 unique_id port 204698 remote_ip 10.8.0.242 204701 username shahruz 204701 mac 204701 bytes_out 0 204701 bytes_in 0 204701 station_ip 5.119.109.229 204701 port 99 204701 unique_id port 204701 remote_ip 10.8.1.22 204702 username abdolahi0311 204702 mac 204702 bytes_out 7673 204702 bytes_in 12368 204702 station_ip 5.120.137.159 204702 port 97 204702 unique_id port 204702 remote_ip 10.8.1.190 204704 username shahruz 204704 mac 204704 bytes_out 0 204704 bytes_in 0 204704 station_ip 5.119.109.229 204704 port 97 204704 unique_id port 204704 remote_ip 10.8.1.22 204707 username barzegar 204707 mac 204707 bytes_out 19468 204707 bytes_in 42651 204707 station_ip 5.119.158.40 204707 port 88 204707 unique_id port 204707 remote_ip 10.8.1.6 204711 username malekpoir 204711 mac 204711 bytes_out 0 204711 bytes_in 0 204711 station_ip 5.120.82.59 204711 port 98 204711 unique_id port 204711 remote_ip 10.8.1.70 204714 username abdolahi0311 204714 mac 204714 bytes_out 1646 204714 bytes_in 4096 204714 station_ip 5.120.137.159 204714 port 88 204714 unique_id port 204714 remote_ip 10.8.1.190 204715 username kharazmi2920 204715 mac 204715 bytes_out 834356 204715 bytes_in 5514330 204715 station_ip 83.122.221.61 204715 port 41 204715 unique_id port 204715 remote_ip 10.8.0.34 204717 username pourshad 204717 mac 204717 bytes_out 672807 204717 bytes_in 9455615 204717 station_ip 5.120.229.1 204717 port 42 204717 unique_id port 204705 port 84 204705 unique_id port 204705 remote_ip 10.8.1.14 204710 username meysam 204710 kill_reason Another user logged on this global unique id 204710 mac 204710 bytes_out 0 204710 bytes_in 0 204710 station_ip 188.158.49.162 204710 port 46 204710 unique_id port 204712 username abdolahi0311 204712 mac 204712 bytes_out 2293 204712 bytes_in 4427 204712 station_ip 5.120.137.159 204712 port 97 204712 unique_id port 204712 remote_ip 10.8.1.190 204716 username godarzi 204716 mac 204716 bytes_out 4190487 204716 bytes_in 28788144 204716 station_ip 5.202.98.177 204716 port 93 204716 unique_id port 204716 remote_ip 10.8.1.78 204722 username teymori5660 204722 mac 204722 bytes_out 0 204722 bytes_in 0 204722 station_ip 5.119.147.228 204722 port 99 204722 unique_id port 204722 remote_ip 10.8.1.14 204724 username rahim 204724 mac 204724 bytes_out 0 204724 bytes_in 0 204724 station_ip 5.120.3.58 204724 port 98 204724 unique_id port 204724 remote_ip 10.8.1.90 204726 username rahim 204726 mac 204726 bytes_out 2565 204726 bytes_in 4947 204726 station_ip 5.120.3.58 204726 port 99 204726 unique_id port 204726 remote_ip 10.8.1.90 204727 username rahim 204727 mac 204727 bytes_out 0 204727 bytes_in 0 204727 station_ip 5.120.3.58 204727 port 99 204727 unique_id port 204727 remote_ip 10.8.1.90 204730 username rahim 204730 mac 204730 bytes_out 0 204730 bytes_in 0 204730 station_ip 5.120.3.58 204730 port 101 204730 unique_id port 204730 remote_ip 10.8.1.90 204731 username daryaei1233 204731 mac 204731 bytes_out 0 204731 bytes_in 0 204731 station_ip 83.122.78.132 204731 port 99 204731 unique_id port 204731 remote_ip 10.8.1.230 204733 username daryaei1233 204733 mac 204733 bytes_out 0 204733 bytes_in 0 204733 station_ip 83.122.78.132 204733 port 41 204733 unique_id port 204733 remote_ip 10.8.0.242 204735 username rahim 204735 mac 204735 bytes_out 0 204735 bytes_in 0 204735 station_ip 5.120.3.58 204735 port 101 204735 unique_id port 204735 remote_ip 10.8.1.90 204740 username kharazmi2920 204740 mac 204740 bytes_out 0 204740 bytes_in 0 204740 station_ip 83.122.221.61 204740 port 48 204740 unique_id port 204740 remote_ip 10.8.0.34 204743 username daryaei1233 204743 mac 204743 bytes_out 0 204743 bytes_in 0 204743 station_ip 83.122.78.132 204743 port 48 204743 unique_id port 204743 remote_ip 10.8.0.242 204747 username daryaei1233 204747 mac 204747 bytes_out 0 204747 bytes_in 0 204747 station_ip 83.122.78.132 204747 port 31 204747 unique_id port 204747 remote_ip 10.8.0.242 204749 username barzegar 204749 mac 204749 bytes_out 0 204749 bytes_in 0 204749 station_ip 5.119.158.40 204749 port 49 204749 unique_id port 204749 remote_ip 10.8.0.14 204758 username daryaei1233 204758 mac 204758 bytes_out 0 204758 bytes_in 0 204758 station_ip 83.122.78.132 204758 port 98 204758 unique_id port 204758 remote_ip 10.8.1.230 204760 username barzegar 204760 mac 204760 bytes_out 0 204760 bytes_in 0 204760 station_ip 5.119.158.40 204760 port 98 204760 unique_id port 204760 remote_ip 10.8.1.6 204761 username teymori5660 204761 mac 204761 bytes_out 0 204761 bytes_in 0 204761 station_ip 5.120.43.180 204761 port 84 204761 unique_id port 204761 remote_ip 10.8.1.14 204766 username kalantary6037 204766 mac 204766 bytes_out 0 204766 bytes_in 0 204766 station_ip 37.129.172.224 204766 port 93 204766 unique_id port 204766 remote_ip 10.8.1.150 204773 username meysam 204706 station_ip 83.122.1.96 204706 port 47 204706 unique_id port 204708 username barzegar 204708 mac 204708 bytes_out 0 204708 bytes_in 0 204708 station_ip 5.119.158.40 204708 port 88 204708 unique_id port 204708 remote_ip 10.8.1.6 204709 username shahruz 204709 mac 204709 bytes_out 0 204709 bytes_in 0 204709 station_ip 5.119.109.229 204709 port 97 204709 unique_id port 204709 remote_ip 10.8.1.22 204713 username barzegar 204713 mac 204713 bytes_out 33311 204713 bytes_in 51235 204713 station_ip 5.119.158.40 204713 port 88 204713 unique_id port 204713 remote_ip 10.8.1.6 204721 username teymori5660 204721 mac 204721 bytes_out 0 204721 bytes_in 0 204721 station_ip 5.120.43.180 204721 port 84 204721 unique_id port 204725 username shahruz 204725 mac 204725 bytes_out 0 204725 bytes_in 0 204725 station_ip 5.119.109.229 204725 port 101 204725 unique_id port 204725 remote_ip 10.8.1.22 204728 username daryaei1233 204728 mac 204728 bytes_out 887577 204728 bytes_in 14605793 204728 station_ip 83.122.78.132 204728 port 41 204728 unique_id port 204728 remote_ip 10.8.0.242 204732 username rahim 204732 mac 204732 bytes_out 0 204732 bytes_in 0 204732 station_ip 5.120.3.58 204732 port 101 204732 unique_id port 204732 remote_ip 10.8.1.90 204736 username daryaei1233 204736 kill_reason Maximum check online fails reached 204736 mac 204736 bytes_out 0 204736 bytes_in 0 204736 station_ip 83.122.78.132 204736 port 41 204736 unique_id port 204737 username meysam 204737 kill_reason Another user logged on this global unique id 204737 mac 204737 bytes_out 0 204737 bytes_in 0 204737 station_ip 188.158.49.162 204737 port 46 204737 unique_id port 204738 username barzegar 204738 mac 204738 bytes_out 0 204738 bytes_in 0 204738 station_ip 5.119.158.40 204738 port 102 204738 unique_id port 204738 remote_ip 10.8.1.6 204739 username daryaei1233 204739 mac 204739 bytes_out 0 204739 bytes_in 0 204739 station_ip 83.122.78.132 204739 port 42 204739 unique_id port 204739 remote_ip 10.8.0.242 204742 username yaghobi 204742 mac 204742 bytes_out 0 204742 bytes_in 0 204742 station_ip 83.122.54.19 204742 port 42 204742 unique_id port 204742 remote_ip 10.8.0.174 204744 username daryaei1233 204744 mac 204744 bytes_out 0 204744 bytes_in 0 204744 station_ip 83.122.78.132 204744 port 48 204744 unique_id port 204744 remote_ip 10.8.0.242 204745 username hatami 204745 mac 204745 bytes_out 0 204745 bytes_in 0 204745 station_ip 151.235.105.117 204745 port 31 204745 unique_id port 204745 remote_ip 10.8.0.78 204746 username shahruz 204746 mac 204746 bytes_out 0 204746 bytes_in 0 204746 station_ip 5.119.109.229 204746 port 102 204746 unique_id port 204746 remote_ip 10.8.1.22 204748 username kalantary6037 204748 mac 204748 bytes_out 836167 204748 bytes_in 8235569 204748 station_ip 37.129.70.175 204748 port 98 204748 unique_id port 204748 remote_ip 10.8.1.150 204751 username majidsarmast 204751 mac 204751 bytes_out 0 204751 bytes_in 0 204751 station_ip 86.57.93.128 204751 port 100 204751 unique_id port 204751 remote_ip 10.8.1.114 204753 username daryaei1233 204753 mac 204753 bytes_out 0 204753 bytes_in 0 204753 station_ip 83.122.78.132 204753 port 49 204753 unique_id port 204753 remote_ip 10.8.0.242 204754 username dortaj3792 204754 mac 204754 bytes_out 0 204754 bytes_in 0 204754 station_ip 5.120.159.103 204754 port 31 204754 unique_id port 204754 remote_ip 10.8.0.30 204755 username daryaei1233 204717 remote_ip 10.8.0.54 204718 username heydary4246 204718 mac 204718 bytes_out 0 204718 bytes_in 0 204718 station_ip 83.123.160.151 204718 port 43 204718 unique_id port 204719 username shahruz 204719 mac 204719 bytes_out 0 204719 bytes_in 0 204719 station_ip 5.119.109.229 204719 port 93 204719 unique_id port 204719 remote_ip 10.8.1.22 204720 username barzegar 204720 mac 204720 bytes_out 0 204720 bytes_in 0 204720 station_ip 5.119.158.40 204720 port 99 204720 unique_id port 204720 remote_ip 10.8.1.6 204723 username pourshad 204723 mac 204723 bytes_out 0 204723 bytes_in 0 204723 station_ip 5.119.188.122 204723 port 99 204723 unique_id port 204723 remote_ip 10.8.1.58 204729 username barzegar 204729 mac 204729 bytes_out 0 204729 bytes_in 0 204729 station_ip 5.119.158.40 204729 port 99 204729 unique_id port 204729 remote_ip 10.8.1.6 204734 username shahruz 204734 mac 204734 bytes_out 0 204734 bytes_in 0 204734 station_ip 5.119.109.229 204734 port 99 204734 unique_id port 204734 remote_ip 10.8.1.22 204741 username pourshad 204741 mac 204741 bytes_out 608015 204741 bytes_in 607152 204741 station_ip 5.119.188.122 204741 port 98 204741 unique_id port 204741 remote_ip 10.8.1.58 204750 username mosi 204750 mac 204750 bytes_out 2450708 204750 bytes_in 22782946 204750 station_ip 151.235.106.19 204750 port 93 204750 unique_id port 204750 remote_ip 10.8.1.118 204752 username daryaei1233 204752 mac 204752 bytes_out 0 204752 bytes_in 0 204752 station_ip 83.122.78.132 204752 port 93 204752 unique_id port 204752 remote_ip 10.8.1.230 204759 username daryaei1233 204759 mac 204759 bytes_out 0 204759 bytes_in 0 204759 station_ip 83.122.78.132 204759 port 31 204759 unique_id port 204759 remote_ip 10.8.0.242 204763 username daryaei1233 204763 mac 204763 bytes_out 0 204763 bytes_in 0 204763 station_ip 83.122.78.132 204763 port 31 204763 unique_id port 204763 remote_ip 10.8.0.242 204765 username sabaghnezhad 204765 mac 204765 bytes_out 1371346 204765 bytes_in 9949847 204765 station_ip 37.129.79.8 204765 port 45 204765 unique_id port 204765 remote_ip 10.8.0.18 204770 username yaghobi 204770 mac 204770 bytes_out 0 204770 bytes_in 0 204770 station_ip 83.122.43.175 204770 port 49 204770 unique_id port 204770 remote_ip 10.8.0.174 204771 username daryaei1233 204771 mac 204771 bytes_out 0 204771 bytes_in 0 204771 station_ip 83.122.78.132 204771 port 31 204771 unique_id port 204771 remote_ip 10.8.0.242 204772 username daryaei1233 204772 mac 204772 bytes_out 0 204772 bytes_in 0 204772 station_ip 83.122.78.132 204772 port 31 204772 unique_id port 204772 remote_ip 10.8.0.242 204781 username malekpoir 204781 mac 204781 bytes_out 0 204781 bytes_in 0 204781 station_ip 5.120.82.59 204781 port 97 204781 unique_id port 204781 remote_ip 10.8.1.70 204784 username daryaei1233 204784 mac 204784 bytes_out 0 204784 bytes_in 0 204784 station_ip 83.122.78.132 204784 port 42 204784 unique_id port 204784 remote_ip 10.8.0.242 204785 username shahruz 204785 mac 204785 bytes_out 1928428 204785 bytes_in 21626449 204785 station_ip 5.119.109.229 204785 port 84 204785 unique_id port 204785 remote_ip 10.8.1.22 204790 username heydary4246 204790 mac 204790 bytes_out 247970 204790 bytes_in 1081489 204790 station_ip 83.123.160.151 204790 port 88 204790 unique_id port 204790 remote_ip 10.8.1.234 204792 username mostafa_es78 204792 kill_reason Another user logged on this global unique id 204792 mac 204755 mac 204755 bytes_out 0 204755 bytes_in 0 204755 station_ip 83.122.78.132 204755 port 31 204755 unique_id port 204755 remote_ip 10.8.0.242 204756 username daryaei1233 204756 mac 204756 bytes_out 0 204756 bytes_in 0 204756 station_ip 83.122.78.132 204756 port 31 204756 unique_id port 204756 remote_ip 10.8.0.242 204757 username meysam 204757 kill_reason Another user logged on this global unique id 204757 mac 204757 bytes_out 0 204757 bytes_in 0 204757 station_ip 188.158.49.162 204757 port 46 204757 unique_id port 204762 username daryaei1233 204762 mac 204762 bytes_out 0 204762 bytes_in 0 204762 station_ip 83.122.78.132 204762 port 31 204762 unique_id port 204762 remote_ip 10.8.0.242 204764 username saeed9658 204764 kill_reason Relative expiration date has reached 204764 mac 204764 bytes_out 0 204764 bytes_in 0 204764 station_ip 5.119.124.210 204764 port 49 204764 unique_id port 204767 username daryaei1233 204767 mac 204767 bytes_out 0 204767 bytes_in 0 204767 station_ip 83.122.78.132 204767 port 31 204767 unique_id port 204767 remote_ip 10.8.0.242 204768 username daryaei1233 204768 mac 204768 bytes_out 0 204768 bytes_in 0 204768 station_ip 83.122.78.132 204768 port 31 204768 unique_id port 204768 remote_ip 10.8.0.242 204769 username barzegar 204769 mac 204769 bytes_out 0 204769 bytes_in 0 204769 station_ip 5.119.158.40 204769 port 93 204769 unique_id port 204769 remote_ip 10.8.1.6 204777 username daryaei1233 204777 mac 204777 bytes_out 0 204777 bytes_in 0 204777 station_ip 83.122.78.132 204777 port 102 204777 unique_id port 204777 remote_ip 10.8.1.230 204782 username barzegar 204782 mac 204782 bytes_out 3145 204782 bytes_in 5903 204782 station_ip 5.119.158.40 204782 port 102 204782 unique_id port 204782 remote_ip 10.8.1.6 204783 username kharazmi2920 204783 mac 204783 bytes_out 391516 204783 bytes_in 1104684 204783 station_ip 83.122.221.61 204783 port 43 204783 unique_id port 204783 remote_ip 10.8.0.34 204786 username shahruz 204786 mac 204786 bytes_out 0 204786 bytes_in 0 204786 station_ip 83.123.152.73 204786 port 103 204786 unique_id port 204786 remote_ip 10.8.1.22 204787 username mirzaei6046 204787 kill_reason Another user logged on this global unique id 204787 mac 204787 bytes_out 0 204787 bytes_in 0 204787 station_ip 5.119.206.233 204787 port 92 204787 unique_id port 204788 username daryaei1233 204788 mac 204788 bytes_out 0 204788 bytes_in 0 204788 station_ip 83.122.78.132 204788 port 103 204788 unique_id port 204788 remote_ip 10.8.1.230 204791 username daryaei1233 204791 mac 204791 bytes_out 0 204791 bytes_in 0 204791 station_ip 83.122.78.132 204791 port 42 204791 unique_id port 204791 remote_ip 10.8.0.242 204794 username daryaei1233 204794 mac 204794 bytes_out 0 204794 bytes_in 0 204794 station_ip 83.122.78.132 204794 port 42 204794 unique_id port 204794 remote_ip 10.8.0.242 204798 username motamedi9772 204798 kill_reason Maximum check online fails reached 204798 mac 204798 bytes_out 0 204798 bytes_in 0 204798 station_ip 37.129.9.68 204798 port 42 204798 unique_id port 204800 username daryaei1233 204800 mac 204800 bytes_out 0 204800 bytes_in 0 204800 station_ip 83.122.78.132 204800 port 50 204800 unique_id port 204800 remote_ip 10.8.0.242 204804 username daryaei1233 204804 mac 204804 bytes_out 0 204804 bytes_in 0 204804 station_ip 83.122.78.132 204804 port 49 204804 unique_id port 204804 remote_ip 10.8.0.242 204808 username meysam 204808 mac 204773 kill_reason Another user logged on this global unique id 204773 mac 204773 bytes_out 0 204773 bytes_in 0 204773 station_ip 188.158.49.162 204773 port 46 204773 unique_id port 204774 username pourshad 204774 mac 204774 bytes_out 0 204774 bytes_in 0 204774 station_ip 5.119.188.122 204774 port 42 204774 unique_id port 204774 remote_ip 10.8.0.54 204775 username nilufarrajaei 204775 mac 204775 bytes_out 0 204775 bytes_in 0 204775 station_ip 37.129.53.49 204775 port 28 204775 unique_id port 204775 remote_ip 10.8.0.94 204776 username meysam 204776 mac 204776 bytes_out 0 204776 bytes_in 0 204776 station_ip 188.158.49.162 204776 port 46 204776 unique_id port 204778 username daryaei1233 204778 mac 204778 bytes_out 0 204778 bytes_in 0 204778 station_ip 83.122.78.132 204778 port 28 204778 unique_id port 204778 remote_ip 10.8.0.242 204779 username daryaei1233 204779 kill_reason Maximum check online fails reached 204779 mac 204779 bytes_out 0 204779 bytes_in 0 204779 station_ip 83.122.78.132 204779 port 31 204779 unique_id port 204780 username nilufarrajaei 204780 mac 204780 bytes_out 0 204780 bytes_in 0 204780 station_ip 37.129.53.49 204780 port 42 204780 unique_id port 204780 remote_ip 10.8.0.94 204789 username daryaei1233 204789 mac 204789 bytes_out 0 204789 bytes_in 0 204789 station_ip 83.122.78.132 204789 port 42 204789 unique_id port 204789 remote_ip 10.8.0.242 204796 username daryaei1233 204796 mac 204796 bytes_out 0 204796 bytes_in 0 204796 station_ip 83.122.78.132 204796 port 42 204796 unique_id port 204796 remote_ip 10.8.0.242 204797 username godarzi 204797 kill_reason Another user logged on this global unique id 204797 mac 204797 bytes_out 0 204797 bytes_in 0 204797 station_ip 5.202.98.177 204797 port 99 204797 unique_id port 204797 remote_ip 10.8.1.78 204807 username barzegar 204807 mac 204807 bytes_out 0 204807 bytes_in 0 204807 station_ip 5.119.158.40 204807 port 49 204807 unique_id port 204807 remote_ip 10.8.0.14 204820 username teymori5660 204820 mac 204820 bytes_out 978389 204820 bytes_in 3963518 204820 station_ip 5.120.43.180 204820 port 100 204820 unique_id port 204820 remote_ip 10.8.1.14 204823 username aminvpn 204823 kill_reason Wrong password 204823 mac 204823 bytes_out 0 204823 bytes_in 0 204823 station_ip 37.129.130.83 204823 port 28 204823 unique_id port 204825 username aminvpn 204825 kill_reason Wrong password 204825 mac 204825 bytes_out 0 204825 bytes_in 0 204825 station_ip 37.129.130.83 204825 port 100 204825 unique_id port 204828 username motamedi9772 204828 kill_reason Maximum check online fails reached 204828 mac 204828 bytes_out 0 204828 bytes_in 0 204828 station_ip 37.129.9.68 204828 port 97 204828 unique_id port 204829 username daryaei1233 204829 mac 204829 bytes_out 0 204829 bytes_in 0 204829 station_ip 83.122.78.132 204829 port 28 204829 unique_id port 204829 remote_ip 10.8.0.242 204830 username motamedi9772 204830 mac 204830 bytes_out 0 204830 bytes_in 0 204830 station_ip 37.129.9.68 204830 port 28 204830 unique_id port 204830 remote_ip 10.8.0.62 204832 username shahruz 204832 mac 204832 bytes_out 0 204832 bytes_in 0 204832 station_ip 5.119.241.200 204832 port 102 204832 unique_id port 204832 remote_ip 10.8.1.22 204838 username motamedi9772 204838 mac 204838 bytes_out 0 204838 bytes_in 0 204838 station_ip 37.129.9.68 204838 port 88 204838 unique_id port 204838 remote_ip 10.8.1.198 204843 username daryaei1233 204843 mac 204843 bytes_out 0 204792 bytes_out 0 204792 bytes_in 0 204792 station_ip 2.181.249.144 204792 port 48 204792 unique_id port 204792 remote_ip 10.8.0.102 204793 username barzegar 204793 mac 204793 bytes_out 0 204793 bytes_in 0 204793 station_ip 5.119.158.40 204793 port 103 204793 unique_id port 204793 remote_ip 10.8.1.6 204795 username majidsarmast 204795 mac 204795 bytes_out 0 204795 bytes_in 0 204795 station_ip 86.57.93.128 204795 port 102 204795 unique_id port 204795 remote_ip 10.8.1.114 204799 username daryaei1233 204799 mac 204799 bytes_out 0 204799 bytes_in 0 204799 station_ip 83.122.78.132 204799 port 103 204799 unique_id port 204799 remote_ip 10.8.1.230 204801 username barzegar 204801 mac 204801 bytes_out 3953 204801 bytes_in 6209 204801 station_ip 5.119.158.40 204801 port 49 204801 unique_id port 204801 remote_ip 10.8.0.14 204802 username daryaei1233 204802 mac 204802 bytes_out 0 204802 bytes_in 0 204802 station_ip 83.122.78.132 204802 port 50 204802 unique_id port 204802 remote_ip 10.8.0.242 204803 username daryaei1233 204803 mac 204803 bytes_out 0 204803 bytes_in 0 204803 station_ip 83.122.78.132 204803 port 49 204803 unique_id port 204803 remote_ip 10.8.0.242 204805 username barzegar 204805 mac 204805 bytes_out 3984 204805 bytes_in 6450 204805 station_ip 5.119.158.40 204805 port 103 204805 unique_id port 204805 remote_ip 10.8.1.6 204806 username daryaei1233 204806 mac 204806 bytes_out 0 204806 bytes_in 0 204806 station_ip 83.122.78.132 204806 port 49 204806 unique_id port 204806 remote_ip 10.8.0.242 204809 username daryaei1233 204809 mac 204809 bytes_out 0 204809 bytes_in 0 204809 station_ip 83.122.78.132 204809 port 50 204809 unique_id port 204809 remote_ip 10.8.0.242 204811 username yaghobi 204811 mac 204811 bytes_out 689934 204811 bytes_in 4206380 204811 station_ip 83.122.43.175 204811 port 46 204811 unique_id port 204811 remote_ip 10.8.0.174 204813 username barzegar 204813 mac 204813 bytes_out 0 204813 bytes_in 0 204813 station_ip 5.119.158.40 204813 port 84 204813 unique_id port 204813 remote_ip 10.8.1.6 204814 username motamedi9772 204814 mac 204814 bytes_out 0 204814 bytes_in 0 204814 station_ip 37.129.9.68 204814 port 102 204814 unique_id port 204814 remote_ip 10.8.1.198 204816 username motamedi9772 204816 mac 204816 bytes_out 0 204816 bytes_in 0 204816 station_ip 37.129.9.68 204816 port 28 204816 unique_id port 204816 remote_ip 10.8.0.62 204818 username motamedi9772 204818 mac 204818 bytes_out 0 204818 bytes_in 0 204818 station_ip 37.129.9.68 204818 port 28 204818 unique_id port 204818 remote_ip 10.8.0.62 204821 username motamedi9772 204821 mac 204821 bytes_out 0 204821 bytes_in 0 204821 station_ip 37.129.9.68 204821 port 97 204821 unique_id port 204821 remote_ip 10.8.1.198 204822 username motamedi9772 204822 mac 204822 bytes_out 0 204822 bytes_in 0 204822 station_ip 37.129.9.68 204822 port 97 204822 unique_id port 204822 remote_ip 10.8.1.198 204826 username motamedi9772 204826 mac 204826 bytes_out 0 204826 bytes_in 0 204826 station_ip 37.129.9.68 204826 port 100 204826 unique_id port 204826 remote_ip 10.8.1.198 204831 username motamedi9772 204831 mac 204831 bytes_out 0 204831 bytes_in 0 204831 station_ip 37.129.9.68 204831 port 102 204831 unique_id port 204831 remote_ip 10.8.1.198 204835 username heydary4246 204835 mac 204835 bytes_out 92128 204835 bytes_in 419905 204835 station_ip 83.123.160.151 204835 port 88 204808 bytes_out 3334824 204808 bytes_in 47081459 204808 station_ip 188.158.49.162 204808 port 28 204808 unique_id port 204808 remote_ip 10.8.0.142 204810 username shahruz 204810 mac 204810 bytes_out 2865915 204810 bytes_in 32907378 204810 station_ip 5.119.241.200 204810 port 84 204810 unique_id port 204810 remote_ip 10.8.1.22 204812 username malekpoir 204812 mac 204812 bytes_out 64171 204812 bytes_in 133244 204812 station_ip 5.120.82.59 204812 port 97 204812 unique_id port 204812 remote_ip 10.8.1.70 204815 username daryaei1233 204815 mac 204815 bytes_out 0 204815 bytes_in 0 204815 station_ip 83.122.78.132 204815 port 28 204815 unique_id port 204815 remote_ip 10.8.0.242 204817 username motamedi9772 204817 mac 204817 bytes_out 0 204817 bytes_in 0 204817 station_ip 37.129.9.68 204817 port 28 204817 unique_id port 204817 remote_ip 10.8.0.62 204819 username barzegar 204819 mac 204819 bytes_out 0 204819 bytes_in 0 204819 station_ip 5.119.158.40 204819 port 97 204819 unique_id port 204819 remote_ip 10.8.1.6 204824 username motamedi9772 204824 mac 204824 bytes_out 0 204824 bytes_in 0 204824 station_ip 37.129.9.68 204824 port 28 204824 unique_id port 204824 remote_ip 10.8.0.62 204827 username motamedi9772 204827 mac 204827 bytes_out 0 204827 bytes_in 0 204827 station_ip 37.129.9.68 204827 port 28 204827 unique_id port 204827 remote_ip 10.8.0.62 204833 username motamedi9772 204833 mac 204833 bytes_out 0 204833 bytes_in 0 204833 station_ip 37.129.9.68 204833 port 28 204833 unique_id port 204833 remote_ip 10.8.0.62 204834 username motamedi9772 204834 mac 204834 bytes_out 0 204834 bytes_in 0 204834 station_ip 37.129.9.68 204834 port 49 204834 unique_id port 204834 remote_ip 10.8.0.62 204837 username motamedi9772 204837 kill_reason Maximum check online fails reached 204837 mac 204837 bytes_out 0 204837 bytes_in 0 204837 station_ip 37.129.9.68 204837 port 28 204837 unique_id port 204840 username daryaei1233 204840 mac 204840 bytes_out 0 204840 bytes_in 0 204840 station_ip 83.122.78.132 204840 port 49 204840 unique_id port 204840 remote_ip 10.8.0.242 204842 username mosi 204842 kill_reason Another user logged on this global unique id 204842 mac 204842 bytes_out 0 204842 bytes_in 0 204842 station_ip 151.235.106.19 204842 port 46 204842 unique_id port 204842 remote_ip 10.8.0.106 204847 username rahim 204847 mac 204847 bytes_out 0 204847 bytes_in 0 204847 station_ip 5.120.3.58 204847 port 101 204847 unique_id port 204851 username barzegar 204851 mac 204851 bytes_out 23889 204851 bytes_in 73611 204851 station_ip 5.119.158.40 204851 port 88 204851 unique_id port 204851 remote_ip 10.8.1.6 204854 username barzegar 204854 mac 204854 bytes_out 0 204854 bytes_in 0 204854 station_ip 5.119.158.40 204854 port 93 204854 unique_id port 204854 remote_ip 10.8.1.6 204861 username godarzi 204861 mac 204861 bytes_out 0 204861 bytes_in 0 204861 station_ip 5.202.98.177 204861 port 99 204861 unique_id port 204863 username barzegar 204863 mac 204863 bytes_out 0 204863 bytes_in 0 204863 station_ip 5.119.158.40 204863 port 100 204863 unique_id port 204863 remote_ip 10.8.1.6 204864 username daryaei1233 204864 mac 204864 bytes_out 0 204864 bytes_in 0 204864 station_ip 83.122.78.132 204864 port 49 204864 unique_id port 204864 remote_ip 10.8.0.242 204867 username kharazmi2920 204867 mac 204867 bytes_out 0 204867 bytes_in 0 204867 station_ip 83.122.221.61 204867 port 43 204867 unique_id port 204835 unique_id port 204835 remote_ip 10.8.1.234 204836 username daryaei1233 204836 mac 204836 bytes_out 0 204836 bytes_in 0 204836 station_ip 83.122.78.132 204836 port 49 204836 unique_id port 204836 remote_ip 10.8.0.242 204839 username rahim 204839 kill_reason Another user logged on this global unique id 204839 mac 204839 bytes_out 0 204839 bytes_in 0 204839 station_ip 5.120.3.58 204839 port 101 204839 unique_id port 204839 remote_ip 10.8.1.90 204841 username daryaei1233 204841 mac 204841 bytes_out 0 204841 bytes_in 0 204841 station_ip 83.122.78.132 204841 port 103 204841 unique_id port 204841 remote_ip 10.8.1.230 204844 username daryaei1233 204844 mac 204844 bytes_out 0 204844 bytes_in 0 204844 station_ip 83.122.78.132 204844 port 103 204844 unique_id port 204844 remote_ip 10.8.1.230 204845 username daryaei1233 204845 mac 204845 bytes_out 0 204845 bytes_in 0 204845 station_ip 83.122.78.132 204845 port 103 204845 unique_id port 204845 remote_ip 10.8.1.230 204848 username motamedi9772 204848 mac 204848 bytes_out 0 204848 bytes_in 0 204848 station_ip 37.129.9.68 204848 port 50 204848 unique_id port 204848 remote_ip 10.8.0.62 204850 username daryaei1233 204850 mac 204850 bytes_out 0 204850 bytes_in 0 204850 station_ip 83.122.78.132 204850 port 49 204850 unique_id port 204850 remote_ip 10.8.0.242 204852 username daryaei1233 204852 mac 204852 bytes_out 0 204852 bytes_in 0 204852 station_ip 83.122.78.132 204852 port 49 204852 unique_id port 204852 remote_ip 10.8.0.242 204855 username motamedi9772 204855 mac 204855 bytes_out 5517 204855 bytes_in 11876 204855 station_ip 37.129.9.68 204855 port 101 204855 unique_id port 204855 remote_ip 10.8.1.198 204856 username daryaei1233 204856 mac 204856 bytes_out 0 204856 bytes_in 0 204856 station_ip 83.122.78.132 204856 port 49 204856 unique_id port 204856 remote_ip 10.8.0.242 204858 username motamedi9772 204858 mac 204858 bytes_out 0 204858 bytes_in 0 204858 station_ip 37.129.9.68 204858 port 50 204858 unique_id port 204858 remote_ip 10.8.0.62 204862 username motamedi9772 204862 mac 204862 bytes_out 0 204862 bytes_in 0 204862 station_ip 37.129.9.68 204862 port 99 204862 unique_id port 204862 remote_ip 10.8.1.198 204865 username shahruz 204865 mac 204865 bytes_out 311994 204865 bytes_in 3027996 204865 station_ip 5.119.241.200 204865 port 93 204865 unique_id port 204865 remote_ip 10.8.1.22 204871 username motamedi9772 204871 mac 204871 bytes_out 0 204871 bytes_in 0 204871 station_ip 37.129.9.68 204871 port 99 204871 unique_id port 204871 remote_ip 10.8.1.198 204880 username mirzaei6046 204880 mac 204880 bytes_out 0 204880 bytes_in 0 204880 station_ip 5.119.206.233 204880 port 92 204880 unique_id port 204882 username mosi 204882 kill_reason Another user logged on this global unique id 204882 mac 204882 bytes_out 0 204882 bytes_in 0 204882 station_ip 151.235.106.19 204882 port 46 204882 unique_id port 204884 username daryaei1233 204884 mac 204884 bytes_out 0 204884 bytes_in 0 204884 station_ip 83.122.78.132 204884 port 49 204884 unique_id port 204884 remote_ip 10.8.0.242 204888 username daryaei1233 204888 mac 204888 bytes_out 2591 204888 bytes_in 4928 204888 station_ip 83.122.78.132 204888 port 43 204888 unique_id port 204888 remote_ip 10.8.0.242 204890 username motamedi9772 204890 mac 204890 bytes_out 0 204890 bytes_in 0 204890 station_ip 37.129.9.68 204890 port 43 204890 unique_id port 204890 remote_ip 10.8.0.62 204843 bytes_in 0 204843 station_ip 83.122.78.132 204843 port 103 204843 unique_id port 204843 remote_ip 10.8.1.230 204846 username pourshad 204846 mac 204846 bytes_out 430337 204846 bytes_in 1459380 204846 station_ip 5.119.188.122 204846 port 93 204846 unique_id port 204846 remote_ip 10.8.1.58 204849 username mirzaei6046 204849 kill_reason Another user logged on this global unique id 204849 mac 204849 bytes_out 0 204849 bytes_in 0 204849 station_ip 5.119.206.233 204849 port 92 204849 unique_id port 204853 username pourshad 204853 mac 204853 bytes_out 1876 204853 bytes_in 4640 204853 station_ip 5.119.188.122 204853 port 93 204853 unique_id port 204853 remote_ip 10.8.1.58 204857 username teymori5660 204857 mac 204857 bytes_out 0 204857 bytes_in 0 204857 station_ip 5.120.43.180 204857 port 100 204857 unique_id port 204857 remote_ip 10.8.1.14 204859 username motamedi9772 204859 mac 204859 bytes_out 0 204859 bytes_in 0 204859 station_ip 37.129.9.68 204859 port 100 204859 unique_id port 204859 remote_ip 10.8.1.198 204860 username motamedi9772 204860 mac 204860 bytes_out 0 204860 bytes_in 0 204860 station_ip 37.129.9.68 204860 port 100 204860 unique_id port 204860 remote_ip 10.8.1.198 204866 username pourshad 204866 mac 204866 bytes_out 0 204866 bytes_in 0 204866 station_ip 5.119.188.122 204866 port 88 204866 unique_id port 204866 remote_ip 10.8.1.58 204869 username motamedi9772 204869 mac 204869 bytes_out 0 204869 bytes_in 0 204869 station_ip 37.129.9.68 204869 port 99 204869 unique_id port 204869 remote_ip 10.8.1.198 204870 username motamedi9772 204870 mac 204870 bytes_out 0 204870 bytes_in 0 204870 station_ip 37.129.9.68 204870 port 99 204870 unique_id port 204870 remote_ip 10.8.1.198 204874 username motamedi9772 204874 mac 204874 bytes_out 0 204874 bytes_in 0 204874 station_ip 37.129.9.68 204874 port 43 204874 unique_id port 204874 remote_ip 10.8.0.62 204878 username motamedi9772 204878 mac 204878 bytes_out 0 204878 bytes_in 0 204878 station_ip 37.129.9.68 204878 port 100 204878 unique_id port 204878 remote_ip 10.8.1.198 204883 username motamedi9772 204883 mac 204883 bytes_out 0 204883 bytes_in 0 204883 station_ip 37.129.9.68 204883 port 43 204883 unique_id port 204883 remote_ip 10.8.0.62 204887 username motamedi9772 204887 mac 204887 bytes_out 0 204887 bytes_in 0 204887 station_ip 37.129.9.68 204887 port 92 204887 unique_id port 204887 remote_ip 10.8.1.198 204893 username pourshad 204893 mac 204893 bytes_out 0 204893 bytes_in 0 204893 station_ip 5.119.188.122 204893 port 88 204893 unique_id port 204893 remote_ip 10.8.1.58 204895 username daryaei1233 204895 mac 204895 bytes_out 0 204895 bytes_in 0 204895 station_ip 83.122.78.132 204895 port 43 204895 unique_id port 204895 remote_ip 10.8.0.242 204897 username daryaei1233 204897 mac 204897 bytes_out 0 204897 bytes_in 0 204897 station_ip 83.122.78.132 204897 port 48 204897 unique_id port 204897 remote_ip 10.8.0.242 204901 username daryaei1233 204901 mac 204901 bytes_out 0 204901 bytes_in 0 204901 station_ip 83.122.78.132 204901 port 43 204901 unique_id port 204901 remote_ip 10.8.0.242 204904 username daryaei1233 204904 mac 204904 bytes_out 0 204904 bytes_in 0 204904 station_ip 83.122.78.132 204904 port 48 204904 unique_id port 204904 remote_ip 10.8.0.242 204910 username motamedi9772 204910 mac 204910 bytes_out 0 204910 bytes_in 0 204910 station_ip 37.129.9.68 204910 port 48 204867 remote_ip 10.8.0.34 204868 username motamedi9772 204868 mac 204868 bytes_out 0 204868 bytes_in 0 204868 station_ip 37.129.9.68 204868 port 99 204868 unique_id port 204868 remote_ip 10.8.1.198 204872 username motamedi9772 204872 mac 204872 bytes_out 0 204872 bytes_in 0 204872 station_ip 37.129.9.68 204872 port 99 204872 unique_id port 204872 remote_ip 10.8.1.198 204873 username motamedi9772 204873 mac 204873 bytes_out 0 204873 bytes_in 0 204873 station_ip 37.129.9.68 204873 port 99 204873 unique_id port 204873 remote_ip 10.8.1.198 204875 username motamedi9772 204875 mac 204875 bytes_out 0 204875 bytes_in 0 204875 station_ip 37.129.9.68 204875 port 43 204875 unique_id port 204875 remote_ip 10.8.0.62 204876 username motamedi9772 204876 mac 204876 bytes_out 0 204876 bytes_in 0 204876 station_ip 37.129.9.68 204876 port 99 204876 unique_id port 204876 remote_ip 10.8.1.198 204877 username mostafa_es78 204877 kill_reason Another user logged on this global unique id 204877 mac 204877 bytes_out 0 204877 bytes_in 0 204877 station_ip 2.181.249.144 204877 port 48 204877 unique_id port 204879 username motamedi9772 204879 mac 204879 bytes_out 0 204879 bytes_in 0 204879 station_ip 37.129.9.68 204879 port 43 204879 unique_id port 204879 remote_ip 10.8.0.62 204881 username motamedi9772 204881 kill_reason Maximum check online fails reached 204881 mac 204881 bytes_out 0 204881 bytes_in 0 204881 station_ip 37.129.9.68 204881 port 99 204881 unique_id port 204885 username barzegar 204885 mac 204885 bytes_out 0 204885 bytes_in 0 204885 station_ip 5.119.158.40 204885 port 92 204885 unique_id port 204885 remote_ip 10.8.1.6 204886 username motamedi9772 204886 mac 204886 bytes_out 0 204886 bytes_in 0 204886 station_ip 37.129.9.68 204886 port 92 204886 unique_id port 204886 remote_ip 10.8.1.198 204889 username motamedi9772 204889 mac 204889 bytes_out 0 204889 bytes_in 0 204889 station_ip 37.129.9.68 204889 port 43 204889 unique_id port 204889 remote_ip 10.8.0.62 204891 username mostafa_es78 204891 mac 204891 bytes_out 0 204891 bytes_in 0 204891 station_ip 2.181.249.144 204891 port 48 204891 unique_id port 204894 username motamedi9772 204894 mac 204894 bytes_out 0 204894 bytes_in 0 204894 station_ip 37.129.9.68 204894 port 100 204894 unique_id port 204894 remote_ip 10.8.1.198 204896 username mosi 204896 kill_reason Another user logged on this global unique id 204896 mac 204896 bytes_out 0 204896 bytes_in 0 204896 station_ip 151.235.106.19 204896 port 46 204896 unique_id port 204898 username motamedi9772 204898 mac 204898 bytes_out 10365 204898 bytes_in 19741 204898 station_ip 37.129.9.68 204898 port 43 204898 unique_id port 204898 remote_ip 10.8.0.62 204899 username motamedi9772 204899 mac 204899 bytes_out 0 204899 bytes_in 0 204899 station_ip 37.129.9.68 204899 port 43 204899 unique_id port 204899 remote_ip 10.8.0.62 204900 username motamedi9772 204900 mac 204900 bytes_out 0 204900 bytes_in 0 204900 station_ip 37.129.9.68 204900 port 88 204900 unique_id port 204900 remote_ip 10.8.1.198 204907 username motamedi9772 204907 mac 204907 bytes_out 0 204907 bytes_in 0 204907 station_ip 37.129.9.68 204907 port 48 204907 unique_id port 204907 remote_ip 10.8.0.62 204908 username motamedi9772 204908 mac 204908 bytes_out 0 204908 bytes_in 0 204908 station_ip 37.129.9.68 204908 port 48 204908 unique_id port 204908 remote_ip 10.8.0.62 204909 username mosi 204909 kill_reason Another user logged on this global unique id 204909 mac 204892 username motamedi9772 204892 mac 204892 bytes_out 0 204892 bytes_in 0 204892 station_ip 37.129.9.68 204892 port 43 204892 unique_id port 204892 remote_ip 10.8.0.62 204902 username motamedi9772 204902 mac 204902 bytes_out 0 204902 bytes_in 0 204902 station_ip 37.129.9.68 204902 port 43 204902 unique_id port 204902 remote_ip 10.8.0.62 204903 username motamedi9772 204903 mac 204903 bytes_out 0 204903 bytes_in 0 204903 station_ip 37.129.9.68 204903 port 43 204903 unique_id port 204903 remote_ip 10.8.0.62 204905 username barzegar 204905 mac 204905 bytes_out 0 204905 bytes_in 0 204905 station_ip 5.119.158.40 204905 port 100 204905 unique_id port 204905 remote_ip 10.8.1.6 204906 username motamedi9772 204906 mac 204906 bytes_out 5368 204906 bytes_in 11749 204906 station_ip 37.129.9.68 204906 port 88 204906 unique_id port 204906 remote_ip 10.8.1.198 204916 username shahruz 204916 mac 204916 bytes_out 3542871 204916 bytes_in 42503597 204916 station_ip 5.119.241.200 204916 port 93 204916 unique_id port 204916 remote_ip 10.8.1.22 204917 username motamedi9772 204917 mac 204917 bytes_out 0 204917 bytes_in 0 204917 station_ip 37.129.9.68 204917 port 43 204917 unique_id port 204917 remote_ip 10.8.0.62 204926 username daryaei1233 204926 mac 204926 bytes_out 0 204926 bytes_in 0 204926 station_ip 83.122.78.132 204926 port 46 204926 unique_id port 204926 remote_ip 10.8.0.242 204928 username daryaei1233 204928 mac 204928 bytes_out 0 204928 bytes_in 0 204928 station_ip 83.122.78.132 204928 port 43 204928 unique_id port 204928 remote_ip 10.8.0.242 204929 username daryaei1233 204929 mac 204929 bytes_out 0 204929 bytes_in 0 204929 station_ip 83.122.78.132 204929 port 46 204929 unique_id port 204929 remote_ip 10.8.0.242 204932 username pourshad 204932 mac 204932 bytes_out 0 204932 bytes_in 0 204932 station_ip 5.119.188.122 204932 port 88 204932 unique_id port 204932 remote_ip 10.8.1.58 204934 username yaghobi 204934 mac 204934 bytes_out 1808712 204934 bytes_in 22257001 204934 station_ip 83.122.29.115 204934 port 43 204934 unique_id port 204934 remote_ip 10.8.0.174 204938 username daryaei1233 204938 mac 204938 bytes_out 0 204938 bytes_in 0 204938 station_ip 83.122.78.132 204938 port 88 204938 unique_id port 204938 remote_ip 10.8.1.230 204940 username daryaei1233 204940 mac 204940 bytes_out 0 204940 bytes_in 0 204940 station_ip 83.122.78.132 204940 port 50 204940 unique_id port 204940 remote_ip 10.8.0.242 204947 username pourshad 204947 mac 204947 bytes_out 211654 204947 bytes_in 400454 204947 station_ip 5.119.188.122 204947 port 49 204947 unique_id port 204947 remote_ip 10.8.0.54 204958 username sabaghnezhad 204958 mac 204958 bytes_out 3238476 204958 bytes_in 18839437 204958 station_ip 37.129.79.8 204958 port 98 204958 unique_id port 204958 remote_ip 10.8.1.42 204968 username farhad3 204968 kill_reason Another user logged on this global unique id 204968 mac 204968 bytes_out 0 204968 bytes_in 0 204968 station_ip 5.120.173.80 204968 port 92 204968 unique_id port 204968 remote_ip 10.8.1.38 204973 username daryaei1233 204973 mac 204973 bytes_out 0 204973 bytes_in 0 204973 station_ip 83.122.78.132 204973 port 51 204973 unique_id port 204973 remote_ip 10.8.0.242 204980 username majidsarmast 204980 kill_reason Another user logged on this global unique id 204980 mac 204980 bytes_out 0 204980 bytes_in 0 204980 station_ip 86.57.93.128 204980 port 101 204980 unique_id port 204981 username godarzi 204909 bytes_out 0 204909 bytes_in 0 204909 station_ip 151.235.106.19 204909 port 46 204909 unique_id port 204911 username daryaei1233 204911 mac 204911 bytes_out 0 204911 bytes_in 0 204911 station_ip 83.122.78.132 204911 port 43 204911 unique_id port 204911 remote_ip 10.8.0.242 204913 username barzegar 204913 mac 204913 bytes_out 0 204913 bytes_in 0 204913 station_ip 5.119.158.40 204913 port 101 204913 unique_id port 204913 remote_ip 10.8.1.6 204914 username aminvpn 204914 unique_id port 204914 terminate_cause Lost-Carrier 204914 bytes_out 389411 204914 bytes_in 1191012 204914 station_ip 83.123.174.130 204914 port 15730015 204914 nas_port_type Virtual 204914 remote_ip 5.5.5.30 204915 username daryaei1233 204915 mac 204915 bytes_out 0 204915 bytes_in 0 204915 station_ip 83.122.78.132 204915 port 48 204915 unique_id port 204915 remote_ip 10.8.0.242 204918 username barzegar 204918 mac 204918 bytes_out 0 204918 bytes_in 0 204918 station_ip 5.119.158.40 204918 port 93 204918 unique_id port 204918 remote_ip 10.8.1.6 204919 username shahruz 204919 mac 204919 bytes_out 0 204919 bytes_in 0 204919 station_ip 5.119.241.200 204919 port 93 204919 unique_id port 204919 remote_ip 10.8.1.22 204922 username mosi 204922 mac 204922 bytes_out 0 204922 bytes_in 0 204922 station_ip 151.235.106.19 204922 port 46 204922 unique_id port 204923 username daryaei1233 204923 mac 204923 bytes_out 0 204923 bytes_in 0 204923 station_ip 83.122.78.132 204923 port 93 204923 unique_id port 204923 remote_ip 10.8.1.230 204925 username barzegar 204925 mac 204925 bytes_out 0 204925 bytes_in 0 204925 station_ip 5.119.158.40 204925 port 93 204925 unique_id port 204925 remote_ip 10.8.1.6 204930 username mostafa_es78 204930 mac 204930 bytes_out 0 204930 bytes_in 0 204930 station_ip 2.181.249.144 204930 port 92 204930 unique_id port 204930 remote_ip 10.8.1.202 204941 username mammad 204941 unique_id port 204941 terminate_cause User-Request 204941 bytes_out 3115182 204941 bytes_in 35026125 204941 station_ip 46.100.216.198 204941 port 15730019 204941 nas_port_type Virtual 204941 remote_ip 5.5.5.255 204944 username meysam 204944 mac 204944 bytes_out 1451588 204944 bytes_in 21010215 204944 station_ip 5.120.39.12 204944 port 88 204944 unique_id port 204944 remote_ip 10.8.1.30 204946 username farhad3 204946 mac 204946 bytes_out 0 204946 bytes_in 0 204946 station_ip 5.120.173.80 204946 port 88 204946 unique_id port 204946 remote_ip 10.8.1.38 204949 username farhad3 204949 mac 204949 bytes_out 0 204949 bytes_in 0 204949 station_ip 5.120.173.80 204949 port 88 204949 unique_id port 204949 remote_ip 10.8.1.38 204952 username motamedi9772 204952 kill_reason Another user logged on this global unique id 204952 mac 204952 bytes_out 0 204952 bytes_in 0 204952 station_ip 37.129.39.68 204952 port 43 204952 unique_id port 204952 remote_ip 10.8.0.62 204953 username barzegar 204953 mac 204953 bytes_out 0 204953 bytes_in 0 204953 station_ip 5.119.158.40 204953 port 100 204953 unique_id port 204953 remote_ip 10.8.1.6 204960 username daryaei1233 204960 mac 204960 bytes_out 0 204960 bytes_in 0 204960 station_ip 83.122.78.132 204960 port 43 204960 unique_id port 204960 remote_ip 10.8.0.242 204961 username barzegar 204961 mac 204961 bytes_out 0 204961 bytes_in 0 204961 station_ip 5.119.158.40 204961 port 98 204961 unique_id port 204961 remote_ip 10.8.1.6 204962 username daryaei1233 204962 mac 204962 bytes_out 0 204962 bytes_in 0 204910 unique_id port 204910 remote_ip 10.8.0.62 204912 username motamedi9772 204912 mac 204912 bytes_out 0 204912 bytes_in 0 204912 station_ip 37.129.9.68 204912 port 101 204912 unique_id port 204912 remote_ip 10.8.1.198 204920 username pourshad 204920 mac 204920 bytes_out 176096 204920 bytes_in 941796 204920 station_ip 5.119.188.122 204920 port 88 204920 unique_id port 204920 remote_ip 10.8.1.58 204921 username daryaei1233 204921 mac 204921 bytes_out 1006425 204921 bytes_in 14645657 204921 station_ip 83.122.78.132 204921 port 93 204921 unique_id port 204921 remote_ip 10.8.1.230 204924 username daryaei1233 204924 mac 204924 bytes_out 0 204924 bytes_in 0 204924 station_ip 83.122.78.132 204924 port 43 204924 unique_id port 204924 remote_ip 10.8.0.242 204927 username alirezaza 204927 unique_id port 204927 terminate_cause Lost-Carrier 204927 bytes_out 173465 204927 bytes_in 997626 204927 station_ip 5.119.125.28 204927 port 15730020 204927 nas_port_type Virtual 204927 remote_ip 5.5.5.10 204931 username daryaei1233 204931 mac 204931 bytes_out 0 204931 bytes_in 0 204931 station_ip 83.122.78.132 204931 port 46 204931 unique_id port 204931 remote_ip 10.8.0.242 204933 username daryaei1233 204933 kill_reason Maximum check online fails reached 204933 mac 204933 bytes_out 0 204933 bytes_in 0 204933 station_ip 83.122.78.132 204933 port 48 204933 unique_id port 204935 username farhad3 204935 kill_reason Another user logged on this global unique id 204935 mac 204935 bytes_out 0 204935 bytes_in 0 204935 station_ip 5.120.173.80 204935 port 100 204935 unique_id port 204935 remote_ip 10.8.1.38 204936 username barzegar 204936 mac 204936 bytes_out 0 204936 bytes_in 0 204936 station_ip 5.119.158.40 204936 port 93 204936 unique_id port 204936 remote_ip 10.8.1.6 204937 username daryaei1233 204937 mac 204937 bytes_out 1692855 204937 bytes_in 24787263 204937 station_ip 83.122.78.132 204937 port 88 204937 unique_id port 204937 remote_ip 10.8.1.230 204939 username motamedi9772 204939 mac 204939 bytes_out 0 204939 bytes_in 0 204939 station_ip 37.129.39.68 204939 port 43 204939 unique_id port 204939 remote_ip 10.8.0.62 204942 username barzegar 204942 mac 204942 bytes_out 0 204942 bytes_in 0 204942 station_ip 5.119.158.40 204942 port 93 204942 unique_id port 204942 remote_ip 10.8.1.6 204943 username farhad3 204943 mac 204943 bytes_out 0 204943 bytes_in 0 204943 station_ip 5.120.173.80 204943 port 100 204943 unique_id port 204945 username mostafa_es78 204945 mac 204945 bytes_out 0 204945 bytes_in 0 204945 station_ip 2.181.245.82 204945 port 92 204945 unique_id port 204945 remote_ip 10.8.1.202 204948 username daryaei1233 204948 mac 204948 bytes_out 870366 204948 bytes_in 13573377 204948 station_ip 83.122.78.132 204948 port 93 204948 unique_id port 204948 remote_ip 10.8.1.230 204950 username daryaei1233 204950 mac 204950 bytes_out 0 204950 bytes_in 0 204950 station_ip 83.122.78.132 204950 port 49 204950 unique_id port 204950 remote_ip 10.8.0.242 204951 username barzegar 204951 mac 204951 bytes_out 0 204951 bytes_in 0 204951 station_ip 5.119.158.40 204951 port 93 204951 unique_id port 204951 remote_ip 10.8.1.6 204954 username daryaei1233 204954 mac 204954 bytes_out 0 204954 bytes_in 0 204954 station_ip 83.122.78.132 204954 port 100 204954 unique_id port 204954 remote_ip 10.8.1.230 204955 username motamedi9772 204955 mac 204955 bytes_out 0 204955 bytes_in 0 204955 station_ip 37.129.39.68 204955 port 43 204955 unique_id port 204956 username daryaei1233 204956 mac 204956 bytes_out 0 204956 bytes_in 0 204956 station_ip 83.122.78.132 204956 port 43 204956 unique_id port 204956 remote_ip 10.8.0.242 204957 username daryaei1233 204957 mac 204957 bytes_out 0 204957 bytes_in 0 204957 station_ip 83.122.78.132 204957 port 43 204957 unique_id port 204957 remote_ip 10.8.0.242 204959 username esmaeilkazemi 204959 mac 204959 bytes_out 28444 204959 bytes_in 76651 204959 station_ip 83.122.113.81 204959 port 43 204959 unique_id port 204959 remote_ip 10.8.0.86 204964 username daryaei1233 204964 mac 204964 bytes_out 0 204964 bytes_in 0 204964 station_ip 83.122.78.132 204964 port 51 204964 unique_id port 204964 remote_ip 10.8.0.242 204965 username pourshad 204965 mac 204965 bytes_out 142411 204965 bytes_in 320836 204965 station_ip 5.119.188.122 204965 port 88 204965 unique_id port 204965 remote_ip 10.8.1.58 204969 username daryaei1233 204969 mac 204969 bytes_out 0 204969 bytes_in 0 204969 station_ip 83.122.78.132 204969 port 98 204969 unique_id port 204969 remote_ip 10.8.1.230 204970 username esmaeilkazemi 204970 mac 204970 bytes_out 0 204970 bytes_in 0 204970 station_ip 83.122.113.81 204970 port 51 204970 unique_id port 204970 remote_ip 10.8.0.86 204975 username pourshad 204975 mac 204975 bytes_out 459097 204975 bytes_in 4202735 204975 station_ip 5.119.188.122 204975 port 88 204975 unique_id port 204975 remote_ip 10.8.1.58 204976 username farhad3 204976 kill_reason Another user logged on this global unique id 204976 mac 204976 bytes_out 0 204976 bytes_in 0 204976 station_ip 5.120.173.80 204976 port 92 204976 unique_id port 204977 username daryaei1233 204977 mac 204977 bytes_out 0 204977 bytes_in 0 204977 station_ip 83.122.78.132 204977 port 51 204977 unique_id port 204977 remote_ip 10.8.0.242 204978 username daryaei1233 204978 mac 204978 bytes_out 2114 204978 bytes_in 4854 204978 station_ip 83.122.78.132 204978 port 51 204978 unique_id port 204978 remote_ip 10.8.0.242 204983 username nilufarrajaei 204983 mac 204983 bytes_out 5439584 204983 bytes_in 43139774 204983 station_ip 37.129.53.49 204983 port 45 204983 unique_id port 204983 remote_ip 10.8.0.94 204985 username daryaei1233 204985 mac 204985 bytes_out 9766 204985 bytes_in 19191 204985 station_ip 83.122.78.132 204985 port 88 204985 unique_id port 204985 remote_ip 10.8.1.230 204988 username daryaei1233 204988 mac 204988 bytes_out 0 204988 bytes_in 0 204988 station_ip 83.122.78.132 204988 port 88 204988 unique_id port 204988 remote_ip 10.8.1.230 204993 username daryaei1233 204993 mac 204993 bytes_out 0 204993 bytes_in 0 204993 station_ip 83.122.78.132 204993 port 88 204993 unique_id port 204993 remote_ip 10.8.1.230 204995 username barzegar 204995 mac 204995 bytes_out 0 204995 bytes_in 0 204995 station_ip 5.119.158.40 204995 port 92 204995 unique_id port 204995 remote_ip 10.8.1.6 204998 username daryaei1233 204998 mac 204998 bytes_out 0 204998 bytes_in 0 204998 station_ip 83.122.78.132 204998 port 93 204998 unique_id port 204998 remote_ip 10.8.1.230 205002 username daryaei1233 205002 mac 205002 bytes_out 0 205002 bytes_in 0 205002 station_ip 83.122.78.132 205002 port 93 205002 unique_id port 205002 remote_ip 10.8.1.230 205006 username daryaei1233 205006 mac 205006 bytes_out 0 205006 bytes_in 0 205006 station_ip 83.122.78.132 205006 port 93 205006 unique_id port 205006 remote_ip 10.8.1.230 205008 username daryaei1233 204962 station_ip 83.122.78.132 204962 port 98 204962 unique_id port 204962 remote_ip 10.8.1.230 204963 username houshang 204963 kill_reason Another user logged on this global unique id 204963 mac 204963 bytes_out 0 204963 bytes_in 0 204963 station_ip 5.119.159.109 204963 port 93 204963 unique_id port 204963 remote_ip 10.8.1.134 204966 username majidsarmast 204966 kill_reason Another user logged on this global unique id 204966 mac 204966 bytes_out 0 204966 bytes_in 0 204966 station_ip 86.57.93.128 204966 port 101 204966 unique_id port 204966 remote_ip 10.8.1.114 204967 username daryaei1233 204967 mac 204967 bytes_out 0 204967 bytes_in 0 204967 station_ip 83.122.78.132 204967 port 51 204967 unique_id port 204967 remote_ip 10.8.0.242 204971 username daryaei1233 204971 mac 204971 bytes_out 0 204971 bytes_in 0 204971 station_ip 83.122.78.132 204971 port 98 204971 unique_id port 204971 remote_ip 10.8.1.230 204972 username esmaeilkazemi 204972 mac 204972 bytes_out 0 204972 bytes_in 0 204972 station_ip 83.122.113.81 204972 port 52 204972 unique_id port 204972 remote_ip 10.8.0.86 204974 username barzegar 204974 mac 204974 bytes_out 0 204974 bytes_in 0 204974 station_ip 5.119.158.40 204974 port 98 204974 unique_id port 204974 remote_ip 10.8.1.6 204979 username houshang 204979 mac 204979 bytes_out 0 204979 bytes_in 0 204979 station_ip 5.119.159.109 204979 port 93 204979 unique_id port 204982 username barzegar 204982 mac 204982 bytes_out 0 204982 bytes_in 0 204982 station_ip 5.119.158.40 204982 port 93 204982 unique_id port 204982 remote_ip 10.8.1.6 204987 username barzegar 204987 mac 204987 bytes_out 0 204987 bytes_in 0 204987 station_ip 5.119.158.40 204987 port 45 204987 unique_id port 204987 remote_ip 10.8.0.14 204991 username daryaei1233 204991 mac 204991 bytes_out 0 204991 bytes_in 0 204991 station_ip 83.122.78.132 204991 port 88 204991 unique_id port 204991 remote_ip 10.8.1.230 204992 username jafari 204992 kill_reason Another user logged on this global unique id 204992 mac 204992 bytes_out 0 204992 bytes_in 0 204992 station_ip 5.200.120.130 204992 port 98 204992 unique_id port 204992 remote_ip 10.8.1.126 204994 username majidsarmast 204994 kill_reason Another user logged on this global unique id 204994 mac 204994 bytes_out 0 204994 bytes_in 0 204994 station_ip 86.57.93.128 204994 port 101 204994 unique_id port 204996 username daryaei1233 204996 mac 204996 bytes_out 12180 204996 bytes_in 52528 204996 station_ip 83.122.78.132 204996 port 88 204996 unique_id port 204996 remote_ip 10.8.1.230 204997 username daryaei1233 204997 mac 204997 bytes_out 0 204997 bytes_in 0 204997 station_ip 83.122.78.132 204997 port 88 204997 unique_id port 204997 remote_ip 10.8.1.230 205000 username daryaei1233 205000 mac 205000 bytes_out 0 205000 bytes_in 0 205000 station_ip 83.122.78.132 205000 port 93 205000 unique_id port 205000 remote_ip 10.8.1.230 205001 username daryaei1233 205001 mac 205001 bytes_out 0 205001 bytes_in 0 205001 station_ip 83.122.78.132 205001 port 93 205001 unique_id port 205001 remote_ip 10.8.1.230 205018 username daryaei1233 205018 mac 205018 bytes_out 0 205018 bytes_in 0 205018 station_ip 83.122.78.132 205018 port 51 205018 unique_id port 205018 remote_ip 10.8.0.242 205023 username barzegar 205023 mac 205023 bytes_out 0 205023 bytes_in 0 205023 station_ip 5.119.158.40 205023 port 93 205023 unique_id port 205023 remote_ip 10.8.1.6 205026 username daryaei1233 205026 mac 205026 bytes_out 0 204981 mac 204981 bytes_out 0 204981 bytes_in 0 204981 station_ip 5.202.98.177 204981 port 49 204981 unique_id port 204981 remote_ip 10.8.0.146 204984 username farhad3 204984 mac 204984 bytes_out 0 204984 bytes_in 0 204984 station_ip 5.120.173.80 204984 port 92 204984 unique_id port 204986 username daryaei1233 204986 mac 204986 bytes_out 0 204986 bytes_in 0 204986 station_ip 83.122.78.132 204986 port 88 204986 unique_id port 204986 remote_ip 10.8.1.230 204989 username daryaei1233 204989 mac 204989 bytes_out 0 204989 bytes_in 0 204989 station_ip 83.122.78.132 204989 port 88 204989 unique_id port 204989 remote_ip 10.8.1.230 204990 username daryaei1233 204990 mac 204990 bytes_out 0 204990 bytes_in 0 204990 station_ip 83.122.78.132 204990 port 88 204990 unique_id port 204990 remote_ip 10.8.1.230 204999 username daryaei1233 204999 mac 204999 bytes_out 0 204999 bytes_in 0 204999 station_ip 83.122.78.132 204999 port 93 204999 unique_id port 204999 remote_ip 10.8.1.230 205003 username daryaei1233 205003 mac 205003 bytes_out 0 205003 bytes_in 0 205003 station_ip 83.122.78.132 205003 port 93 205003 unique_id port 205003 remote_ip 10.8.1.230 205004 username daryaei1233 205004 mac 205004 bytes_out 0 205004 bytes_in 0 205004 station_ip 83.122.78.132 205004 port 93 205004 unique_id port 205004 remote_ip 10.8.1.230 205005 username daryaei1233 205005 mac 205005 bytes_out 0 205005 bytes_in 0 205005 station_ip 83.122.78.132 205005 port 93 205005 unique_id port 205005 remote_ip 10.8.1.230 205007 username majidsarmast 205007 mac 205007 bytes_out 0 205007 bytes_in 0 205007 station_ip 86.57.93.128 205007 port 101 205007 unique_id port 205010 username daryaei1233 205010 mac 205010 bytes_out 0 205010 bytes_in 0 205010 station_ip 83.122.78.132 205010 port 93 205010 unique_id port 205010 remote_ip 10.8.1.230 205012 username barzegar 205012 mac 205012 bytes_out 0 205012 bytes_in 0 205012 station_ip 5.119.158.40 205012 port 93 205012 unique_id port 205012 remote_ip 10.8.1.6 205014 username daryaei1233 205014 mac 205014 bytes_out 0 205014 bytes_in 0 205014 station_ip 83.122.78.132 205014 port 101 205014 unique_id port 205014 remote_ip 10.8.1.230 205016 username daryaei1233 205016 mac 205016 bytes_out 0 205016 bytes_in 0 205016 station_ip 83.122.78.132 205016 port 93 205016 unique_id port 205016 remote_ip 10.8.1.230 205020 username yaghobi 205020 mac 205020 bytes_out 0 205020 bytes_in 0 205020 station_ip 83.122.58.171 205020 port 49 205020 unique_id port 205020 remote_ip 10.8.0.174 205024 username daryaei1233 205024 mac 205024 bytes_out 0 205024 bytes_in 0 205024 station_ip 83.122.78.132 205024 port 49 205024 unique_id port 205024 remote_ip 10.8.0.242 205028 username daryaei1233 205028 mac 205028 bytes_out 0 205028 bytes_in 0 205028 station_ip 83.122.78.132 205028 port 49 205028 unique_id port 205028 remote_ip 10.8.0.242 205030 username nilufarrajaei 205030 kill_reason Another user logged on this global unique id 205030 mac 205030 bytes_out 0 205030 bytes_in 0 205030 station_ip 37.129.53.49 205030 port 45 205030 unique_id port 205034 username hatami 205034 mac 205034 bytes_out 0 205034 bytes_in 0 205034 station_ip 83.122.192.38 205034 port 49 205034 unique_id port 205034 remote_ip 10.8.0.78 205036 username daryaei1233 205036 mac 205036 bytes_out 0 205036 bytes_in 0 205036 station_ip 83.122.78.132 205036 port 49 205036 unique_id port 205008 mac 205008 bytes_out 0 205008 bytes_in 0 205008 station_ip 83.122.78.132 205008 port 93 205008 unique_id port 205008 remote_ip 10.8.1.230 205009 username daryaei1233 205009 mac 205009 bytes_out 0 205009 bytes_in 0 205009 station_ip 83.122.78.132 205009 port 93 205009 unique_id port 205009 remote_ip 10.8.1.230 205011 username daryaei1233 205011 mac 205011 bytes_out 0 205011 bytes_in 0 205011 station_ip 83.122.78.132 205011 port 93 205011 unique_id port 205011 remote_ip 10.8.1.230 205013 username jafari 205013 kill_reason Another user logged on this global unique id 205013 mac 205013 bytes_out 0 205013 bytes_in 0 205013 station_ip 5.200.120.130 205013 port 98 205013 unique_id port 205015 username daryaei1233 205015 mac 205015 bytes_out 0 205015 bytes_in 0 205015 station_ip 83.122.78.132 205015 port 93 205015 unique_id port 205015 remote_ip 10.8.1.230 205017 username rashidi4690 205017 kill_reason Another user logged on this global unique id 205017 mac 205017 bytes_out 0 205017 bytes_in 0 205017 station_ip 5.119.182.118 205017 port 100 205017 unique_id port 205017 remote_ip 10.8.1.158 205019 username daryaei1233 205019 mac 205019 bytes_out 0 205019 bytes_in 0 205019 station_ip 83.122.78.132 205019 port 51 205019 unique_id port 205019 remote_ip 10.8.0.242 205021 username daryaei1233 205021 mac 205021 bytes_out 0 205021 bytes_in 0 205021 station_ip 83.122.78.132 205021 port 49 205021 unique_id port 205021 remote_ip 10.8.0.242 205022 username heydary4246 205022 mac 205022 bytes_out 0 205022 bytes_in 0 205022 station_ip 83.123.141.90 205022 port 102 205022 unique_id port 205022 remote_ip 10.8.1.234 205025 username nilufarrajaei 205025 kill_reason Another user logged on this global unique id 205025 mac 205025 bytes_out 0 205025 bytes_in 0 205025 station_ip 37.129.53.49 205025 port 45 205025 unique_id port 205025 remote_ip 10.8.0.94 205027 username farhad3 205027 kill_reason Another user logged on this global unique id 205027 mac 205027 bytes_out 0 205027 bytes_in 0 205027 station_ip 5.119.249.195 205027 port 92 205027 unique_id port 205027 remote_ip 10.8.1.38 205029 username barzegar 205029 mac 205029 bytes_out 0 205029 bytes_in 0 205029 station_ip 5.119.158.40 205029 port 101 205029 unique_id port 205029 remote_ip 10.8.1.6 205032 username farhad3 205032 mac 205032 bytes_out 0 205032 bytes_in 0 205032 station_ip 5.119.249.195 205032 port 92 205032 unique_id port 205040 username daryaei1233 205040 mac 205040 bytes_out 0 205040 bytes_in 0 205040 station_ip 83.122.78.132 205040 port 49 205040 unique_id port 205040 remote_ip 10.8.0.242 205043 username teymori5660 205043 mac 205043 bytes_out 0 205043 bytes_in 0 205043 station_ip 5.120.43.180 205043 port 52 205043 unique_id port 205044 username barzegar 205044 mac 205044 bytes_out 0 205044 bytes_in 0 205044 station_ip 5.119.158.40 205044 port 51 205044 unique_id port 205044 remote_ip 10.8.0.14 205045 username daryaei1233 205045 mac 205045 bytes_out 1238138 205045 bytes_in 16674186 205045 station_ip 83.122.78.132 205045 port 49 205045 unique_id port 205045 remote_ip 10.8.0.242 205048 username daryaei1233 205048 mac 205048 bytes_out 0 205048 bytes_in 0 205048 station_ip 83.122.78.132 205048 port 49 205048 unique_id port 205048 remote_ip 10.8.0.242 205050 username hamid.e 205050 unique_id port 205050 terminate_cause User-Request 205050 bytes_out 8029254 205050 bytes_in 120625000 205050 station_ip 37.27.4.42 205050 port 15730023 205050 nas_port_type Virtual 205026 bytes_in 0 205026 station_ip 83.122.78.132 205026 port 49 205026 unique_id port 205026 remote_ip 10.8.0.242 205031 username daryaei1233 205031 mac 205031 bytes_out 0 205031 bytes_in 0 205031 station_ip 83.122.78.132 205031 port 49 205031 unique_id port 205031 remote_ip 10.8.0.242 205033 username jafari 205033 kill_reason Another user logged on this global unique id 205033 mac 205033 bytes_out 0 205033 bytes_in 0 205033 station_ip 5.200.120.130 205033 port 98 205033 unique_id port 205035 username daryaei1233 205035 mac 205035 bytes_out 0 205035 bytes_in 0 205035 station_ip 83.122.78.132 205035 port 51 205035 unique_id port 205035 remote_ip 10.8.0.242 205037 username malekpoir 205037 mac 205037 bytes_out 0 205037 bytes_in 0 205037 station_ip 5.120.82.59 205037 port 84 205037 unique_id port 205037 remote_ip 10.8.1.70 205039 username teymori5660 205039 kill_reason Another user logged on this global unique id 205039 mac 205039 bytes_out 0 205039 bytes_in 0 205039 station_ip 5.120.43.180 205039 port 52 205039 unique_id port 205039 remote_ip 10.8.0.122 205041 username barzegar 205041 kill_reason Maximum check online fails reached 205041 mac 205041 bytes_out 0 205041 bytes_in 0 205041 station_ip 5.119.158.40 205041 port 84 205041 unique_id port 205042 username jafari 205042 mac 205042 bytes_out 0 205042 bytes_in 0 205042 station_ip 5.200.120.130 205042 port 98 205042 unique_id port 205046 username daryaei1233 205046 mac 205046 bytes_out 0 205046 bytes_in 0 205046 station_ip 83.122.78.132 205046 port 49 205046 unique_id port 205046 remote_ip 10.8.0.242 205052 username barzegar 205052 mac 205052 bytes_out 0 205052 bytes_in 0 205052 station_ip 5.119.158.40 205052 port 92 205052 unique_id port 205052 remote_ip 10.8.1.6 205055 username daryaei1233 205055 mac 205055 bytes_out 0 205055 bytes_in 0 205055 station_ip 83.122.78.132 205055 port 43 205055 unique_id port 205055 remote_ip 10.8.0.242 205056 username mohammadjavad 205056 mac 205056 bytes_out 0 205056 bytes_in 0 205056 station_ip 83.123.135.39 205056 port 50 205056 unique_id port 205059 username farhad3 205059 mac 205059 bytes_out 19116690 205059 bytes_in 46533271 205059 station_ip 5.119.249.195 205059 port 101 205059 unique_id port 205059 remote_ip 10.8.1.38 205062 username daryaei1233 205062 mac 205062 bytes_out 0 205062 bytes_in 0 205062 station_ip 83.122.78.132 205062 port 50 205062 unique_id port 205062 remote_ip 10.8.0.242 205066 username yaghobi 205066 mac 205066 bytes_out 0 205066 bytes_in 0 205066 station_ip 83.122.58.191 205066 port 43 205066 unique_id port 205066 remote_ip 10.8.0.174 205069 username mammad 205069 unique_id port 205069 terminate_cause User-Request 205069 bytes_out 2205032 205069 bytes_in 35292629 205069 station_ip 46.100.216.198 205069 port 15730029 205069 nas_port_type Virtual 205069 remote_ip 5.5.5.255 205079 username daryaei1233 205079 mac 205079 bytes_out 0 205079 bytes_in 0 205079 station_ip 83.122.78.132 205079 port 50 205079 unique_id port 205079 remote_ip 10.8.0.242 205081 username daryaei1233 205081 mac 205081 bytes_out 0 205081 bytes_in 0 205081 station_ip 83.122.78.132 205081 port 43 205081 unique_id port 205081 remote_ip 10.8.0.242 205083 username daryaei1233 205083 mac 205083 bytes_out 0 205083 bytes_in 0 205083 station_ip 83.122.78.132 205083 port 50 205083 unique_id port 205083 remote_ip 10.8.0.242 205086 username daryaei1233 205086 mac 205086 bytes_out 0 205086 bytes_in 0 205036 remote_ip 10.8.0.242 205038 username rashidi4690 205038 kill_reason Another user logged on this global unique id 205038 mac 205038 bytes_out 0 205038 bytes_in 0 205038 station_ip 5.119.182.118 205038 port 100 205038 unique_id port 205047 username pourshad 205047 mac 205047 bytes_out 579439 205047 bytes_in 2115294 205047 station_ip 5.119.188.122 205047 port 88 205047 unique_id port 205047 remote_ip 10.8.1.58 205049 username kharazmi2920 205049 mac 205049 bytes_out 1392151 205049 bytes_in 11473897 205049 station_ip 83.122.221.61 205049 port 43 205049 unique_id port 205049 remote_ip 10.8.0.34 205051 username malekpoir 205051 mac 205051 bytes_out 2369560 205051 bytes_in 22044799 205051 station_ip 5.120.82.59 205051 port 92 205051 unique_id port 205051 remote_ip 10.8.1.70 205054 username mohammadjavad 205054 kill_reason Another user logged on this global unique id 205054 mac 205054 bytes_out 0 205054 bytes_in 0 205054 station_ip 83.123.135.39 205054 port 50 205054 unique_id port 205054 remote_ip 10.8.0.58 205060 username barzegar 205060 mac 205060 bytes_out 0 205060 bytes_in 0 205060 station_ip 5.119.158.40 205060 port 92 205060 unique_id port 205060 remote_ip 10.8.1.6 205063 username daryaei1233 205063 mac 205063 bytes_out 0 205063 bytes_in 0 205063 station_ip 83.122.78.132 205063 port 50 205063 unique_id port 205063 remote_ip 10.8.0.242 205067 username daryaei1233 205067 mac 205067 bytes_out 0 205067 bytes_in 0 205067 station_ip 83.122.78.132 205067 port 43 205067 unique_id port 205067 remote_ip 10.8.0.242 205068 username barzegar 205068 mac 205068 bytes_out 0 205068 bytes_in 0 205068 station_ip 5.119.158.40 205068 port 88 205068 unique_id port 205068 remote_ip 10.8.1.6 205071 username daryaei1233 205071 mac 205071 bytes_out 0 205071 bytes_in 0 205071 station_ip 83.122.78.132 205071 port 43 205071 unique_id port 205071 remote_ip 10.8.0.242 205072 username daryaei1233 205072 mac 205072 bytes_out 0 205072 bytes_in 0 205072 station_ip 83.122.78.132 205072 port 43 205072 unique_id port 205072 remote_ip 10.8.0.242 205075 username daryaei1233 205075 mac 205075 bytes_out 0 205075 bytes_in 0 205075 station_ip 83.122.78.132 205075 port 92 205075 unique_id port 205075 remote_ip 10.8.1.230 205076 username daryaei1233 205076 mac 205076 bytes_out 0 205076 bytes_in 0 205076 station_ip 83.122.78.132 205076 port 92 205076 unique_id port 205076 remote_ip 10.8.1.230 205078 username daryaei1233 205078 mac 205078 bytes_out 0 205078 bytes_in 0 205078 station_ip 83.122.78.132 205078 port 43 205078 unique_id port 205078 remote_ip 10.8.0.242 205082 username daryaei1233 205082 mac 205082 bytes_out 0 205082 bytes_in 0 205082 station_ip 83.122.78.132 205082 port 50 205082 unique_id port 205082 remote_ip 10.8.0.242 205089 username daryaei1233 205089 kill_reason Maximum check online fails reached 205089 mac 205089 bytes_out 0 205089 bytes_in 0 205089 station_ip 83.122.78.132 205089 port 50 205089 unique_id port 205096 username yaghobi 205096 kill_reason Another user logged on this global unique id 205096 mac 205096 bytes_out 0 205096 bytes_in 0 205096 station_ip 83.122.73.187 205096 port 43 205096 unique_id port 205096 remote_ip 10.8.0.174 205099 username mohammadjavad 205099 mac 205099 bytes_out 53921 205099 bytes_in 77088 205099 station_ip 83.123.96.108 205099 port 53 205099 unique_id port 205099 remote_ip 10.8.0.58 205103 username daryaei1233 205103 mac 205103 bytes_out 0 205103 bytes_in 0 205103 station_ip 83.122.78.132 205050 remote_ip 5.5.5.25 205053 username daryaei1233 205053 mac 205053 bytes_out 0 205053 bytes_in 0 205053 station_ip 83.122.78.132 205053 port 43 205053 unique_id port 205053 remote_ip 10.8.0.242 205057 username tahmorsi 205057 mac 205057 bytes_out 528012 205057 bytes_in 914992 205057 station_ip 37.129.192.229 205057 port 88 205057 unique_id port 205057 remote_ip 10.8.1.102 205058 username daryaei1233 205058 mac 205058 bytes_out 0 205058 bytes_in 0 205058 station_ip 83.122.78.132 205058 port 50 205058 unique_id port 205058 remote_ip 10.8.0.242 205061 username daryaei1233 205061 mac 205061 bytes_out 0 205061 bytes_in 0 205061 station_ip 83.122.78.132 205061 port 50 205061 unique_id port 205061 remote_ip 10.8.0.242 205064 username daryaei1233 205064 mac 205064 bytes_out 0 205064 bytes_in 0 205064 station_ip 83.122.78.132 205064 port 51 205064 unique_id port 205064 remote_ip 10.8.0.242 205065 username teymori5660 205065 mac 205065 bytes_out 810303 205065 bytes_in 11962541 205065 station_ip 5.120.43.180 205065 port 88 205065 unique_id port 205065 remote_ip 10.8.1.14 205070 username farhad3 205070 mac 205070 bytes_out 154050 205070 bytes_in 825182 205070 station_ip 5.119.249.195 205070 port 92 205070 unique_id port 205070 remote_ip 10.8.1.38 205073 username barzegar 205073 mac 205073 bytes_out 5078 205073 bytes_in 6725 205073 station_ip 5.119.158.40 205073 port 92 205073 unique_id port 205073 remote_ip 10.8.1.6 205074 username daryaei1233 205074 mac 205074 bytes_out 0 205074 bytes_in 0 205074 station_ip 83.122.78.132 205074 port 43 205074 unique_id port 205074 remote_ip 10.8.0.242 205077 username daryaei1233 205077 mac 205077 bytes_out 0 205077 bytes_in 0 205077 station_ip 83.122.78.132 205077 port 92 205077 unique_id port 205077 remote_ip 10.8.1.230 205080 username rashidi4690 205080 kill_reason Another user logged on this global unique id 205080 mac 205080 bytes_out 0 205080 bytes_in 0 205080 station_ip 5.119.182.118 205080 port 100 205080 unique_id port 205084 username daryaei1233 205084 mac 205084 bytes_out 0 205084 bytes_in 0 205084 station_ip 83.122.78.132 205084 port 50 205084 unique_id port 205084 remote_ip 10.8.0.242 205085 username rashidi4690 205085 mac 205085 bytes_out 0 205085 bytes_in 0 205085 station_ip 5.119.182.118 205085 port 100 205085 unique_id port 205091 username daryaei1233 205091 mac 205091 bytes_out 0 205091 bytes_in 0 205091 station_ip 83.122.78.132 205091 port 52 205091 unique_id port 205091 remote_ip 10.8.0.242 205094 username daryaei1233 205094 mac 205094 bytes_out 0 205094 bytes_in 0 205094 station_ip 83.122.78.132 205094 port 52 205094 unique_id port 205094 remote_ip 10.8.0.242 205100 username farhad3 205100 kill_reason Another user logged on this global unique id 205100 mac 205100 bytes_out 0 205100 bytes_in 0 205100 station_ip 5.119.249.195 205100 port 88 205100 unique_id port 205100 remote_ip 10.8.1.38 205104 username pourshad 205104 mac 205104 bytes_out 5000 205104 bytes_in 11685 205104 station_ip 5.119.250.81 205104 port 102 205104 unique_id port 205104 remote_ip 10.8.1.58 205105 username barzegar 205105 mac 205105 bytes_out 0 205105 bytes_in 0 205105 station_ip 5.119.158.40 205105 port 104 205105 unique_id port 205105 remote_ip 10.8.1.6 205109 username barzegar 205109 mac 205109 bytes_out 0 205109 bytes_in 0 205109 station_ip 5.119.158.40 205109 port 88 205109 unique_id port 205109 remote_ip 10.8.1.6 205111 username teymori5660 205086 station_ip 83.122.78.132 205086 port 102 205086 unique_id port 205086 remote_ip 10.8.1.230 205087 username daryaei1233 205087 mac 205087 bytes_out 0 205087 bytes_in 0 205087 station_ip 83.122.78.132 205087 port 52 205087 unique_id port 205087 remote_ip 10.8.0.242 205088 username barzegar 205088 kill_reason Maximum check online fails reached 205088 mac 205088 bytes_out 0 205088 bytes_in 0 205088 station_ip 5.119.158.40 205088 port 101 205088 unique_id port 205090 username daryaei1233 205090 mac 205090 bytes_out 0 205090 bytes_in 0 205090 station_ip 83.122.78.132 205090 port 52 205090 unique_id port 205090 remote_ip 10.8.0.242 205092 username daryaei1233 205092 mac 205092 bytes_out 0 205092 bytes_in 0 205092 station_ip 83.122.78.132 205092 port 52 205092 unique_id port 205092 remote_ip 10.8.0.242 205093 username daryaei1233 205093 mac 205093 bytes_out 0 205093 bytes_in 0 205093 station_ip 83.122.78.132 205093 port 52 205093 unique_id port 205093 remote_ip 10.8.0.242 205095 username rashidi4690 205095 mac 205095 bytes_out 757687 205095 bytes_in 4227164 205095 station_ip 5.119.182.118 205095 port 100 205095 unique_id port 205095 remote_ip 10.8.1.158 205097 username pourshad 205097 mac 205097 bytes_out 479773 205097 bytes_in 2610804 205097 station_ip 5.119.250.81 205097 port 98 205097 unique_id port 205097 remote_ip 10.8.1.58 205098 username barzegar 205098 mac 205098 bytes_out 0 205098 bytes_in 0 205098 station_ip 5.119.158.40 205098 port 54 205098 unique_id port 205098 remote_ip 10.8.0.14 205101 username yaghobi 205101 mac 205101 bytes_out 0 205101 bytes_in 0 205101 station_ip 83.122.73.187 205101 port 43 205101 unique_id port 205102 username yaghobi 205102 mac 205102 bytes_out 0 205102 bytes_in 0 205102 station_ip 83.122.73.187 205102 port 53 205102 unique_id port 205102 remote_ip 10.8.0.174 205106 username heydary4246 205106 mac 205106 bytes_out 2576246 205106 bytes_in 25807603 205106 station_ip 83.123.141.90 205106 port 93 205106 unique_id port 205106 remote_ip 10.8.1.234 205108 username farhad3 205108 mac 205108 bytes_out 0 205108 bytes_in 0 205108 station_ip 5.119.249.195 205108 port 88 205108 unique_id port 205110 username daryaei1233 205110 mac 205110 bytes_out 0 205110 bytes_in 0 205110 station_ip 83.122.78.132 205110 port 43 205110 unique_id port 205110 remote_ip 10.8.0.242 205112 username daryaei1233 205112 mac 205112 bytes_out 0 205112 bytes_in 0 205112 station_ip 83.122.78.132 205112 port 43 205112 unique_id port 205112 remote_ip 10.8.0.242 205118 username daryaei1233 205118 mac 205118 bytes_out 0 205118 bytes_in 0 205118 station_ip 83.122.78.132 205118 port 43 205118 unique_id port 205118 remote_ip 10.8.0.242 205120 username motamedi9772 205120 mac 205120 bytes_out 0 205120 bytes_in 0 205120 station_ip 37.129.105.172 205120 port 43 205120 unique_id port 205120 remote_ip 10.8.0.62 205124 username motamedi9772 205124 mac 205124 bytes_out 0 205124 bytes_in 0 205124 station_ip 37.129.105.172 205124 port 43 205124 unique_id port 205124 remote_ip 10.8.0.62 205126 username motamedi9772 205126 mac 205126 bytes_out 0 205126 bytes_in 0 205126 station_ip 37.129.105.172 205126 port 43 205126 unique_id port 205126 remote_ip 10.8.0.62 205129 username farhad3 205129 mac 205129 bytes_out 0 205129 bytes_in 0 205129 station_ip 5.119.249.195 205129 port 52 205129 unique_id port 205129 remote_ip 10.8.0.46 205131 username barzegar 205103 port 52 205103 unique_id port 205103 remote_ip 10.8.0.242 205107 username teymori5660 205107 kill_reason Another user logged on this global unique id 205107 mac 205107 bytes_out 0 205107 bytes_in 0 205107 station_ip 5.120.43.180 205107 port 98 205107 unique_id port 205107 remote_ip 10.8.1.14 205114 username yarmohamadi7916 205114 kill_reason Another user logged on this global unique id 205114 mac 205114 bytes_out 0 205114 bytes_in 0 205114 station_ip 5.119.70.246 205114 port 92 205114 unique_id port 205114 remote_ip 10.8.1.154 205116 username teymori5660 205116 mac 205116 bytes_out 418356 205116 bytes_in 3813635 205116 station_ip 5.120.43.180 205116 port 88 205116 unique_id port 205116 remote_ip 10.8.1.14 205119 username motamedi9772 205119 mac 205119 bytes_out 1359341 205119 bytes_in 10854143 205119 station_ip 37.129.105.172 205119 port 53 205119 unique_id port 205119 remote_ip 10.8.0.62 205121 username motamedi9772 205121 mac 205121 bytes_out 0 205121 bytes_in 0 205121 station_ip 37.129.105.172 205121 port 43 205121 unique_id port 205121 remote_ip 10.8.0.62 205125 username daryaei1233 205125 mac 205125 bytes_out 0 205125 bytes_in 0 205125 station_ip 83.122.78.132 205125 port 54 205125 unique_id port 205125 remote_ip 10.8.0.242 205127 username malekpoir 205127 mac 205127 bytes_out 0 205127 bytes_in 0 205127 station_ip 5.119.145.246 205127 port 53 205127 unique_id port 205127 remote_ip 10.8.0.166 205128 username motamedi9772 205128 mac 205128 bytes_out 0 205128 bytes_in 0 205128 station_ip 37.129.105.172 205128 port 102 205128 unique_id port 205128 remote_ip 10.8.1.198 205132 username daryaei1233 205132 mac 205132 bytes_out 0 205132 bytes_in 0 205132 station_ip 83.122.78.132 205132 port 43 205132 unique_id port 205132 remote_ip 10.8.0.242 205134 username majidsarmast 205134 kill_reason Another user logged on this global unique id 205134 mac 205134 bytes_out 0 205134 bytes_in 0 205134 station_ip 86.57.63.130 205134 port 93 205134 unique_id port 205134 remote_ip 10.8.1.114 205137 username motamedi9772 205137 mac 205137 bytes_out 0 205137 bytes_in 0 205137 station_ip 37.129.105.172 205137 port 102 205137 unique_id port 205137 remote_ip 10.8.1.198 205140 username motamedi9772 205140 mac 205140 bytes_out 0 205140 bytes_in 0 205140 station_ip 37.129.105.172 205140 port 102 205140 unique_id port 205140 remote_ip 10.8.1.198 205143 username barzegar 205143 mac 205143 bytes_out 0 205143 bytes_in 0 205143 station_ip 5.119.158.40 205143 port 53 205143 unique_id port 205143 remote_ip 10.8.0.14 205145 username motamedi9772 205145 mac 205145 bytes_out 0 205145 bytes_in 0 205145 station_ip 37.129.105.172 205145 port 53 205145 unique_id port 205145 remote_ip 10.8.0.62 205148 username barzegar 205148 mac 205148 bytes_out 0 205148 bytes_in 0 205148 station_ip 5.119.158.40 205148 port 98 205148 unique_id port 205148 remote_ip 10.8.1.6 205149 username motamedi9772 205149 mac 205149 bytes_out 0 205149 bytes_in 0 205149 station_ip 37.129.105.172 205149 port 98 205149 unique_id port 205149 remote_ip 10.8.1.198 205153 username nilufarrajaei 205153 kill_reason Another user logged on this global unique id 205153 mac 205153 bytes_out 0 205153 bytes_in 0 205153 station_ip 37.129.53.49 205153 port 45 205153 unique_id port 205155 username motamedi9772 205155 mac 205155 bytes_out 0 205155 bytes_in 0 205155 station_ip 37.129.105.172 205155 port 102 205155 unique_id port 205155 remote_ip 10.8.1.198 205167 username motamedi9772 205167 mac 205111 mac 205111 bytes_out 0 205111 bytes_in 0 205111 station_ip 5.120.43.180 205111 port 98 205111 unique_id port 205113 username barzegar 205113 mac 205113 bytes_out 0 205113 bytes_in 0 205113 station_ip 5.119.158.40 205113 port 54 205113 unique_id port 205113 remote_ip 10.8.0.14 205115 username seyedrezaei2572 205115 mac 205115 bytes_out 94163 205115 bytes_in 373334 205115 station_ip 83.122.22.232 205115 port 43 205115 unique_id port 205115 remote_ip 10.8.0.186 205117 username daryaei1233 205117 mac 205117 bytes_out 0 205117 bytes_in 0 205117 station_ip 83.122.78.132 205117 port 43 205117 unique_id port 205117 remote_ip 10.8.0.242 205122 username pourshad 205122 mac 205122 bytes_out 0 205122 bytes_in 0 205122 station_ip 5.119.16.150 205122 port 102 205122 unique_id port 205122 remote_ip 10.8.1.58 205123 username motamedi9772 205123 mac 205123 bytes_out 0 205123 bytes_in 0 205123 station_ip 37.129.105.172 205123 port 43 205123 unique_id port 205123 remote_ip 10.8.0.62 205130 username motamedi9772 205130 mac 205130 bytes_out 0 205130 bytes_in 0 205130 station_ip 37.129.105.172 205130 port 52 205130 unique_id port 205130 remote_ip 10.8.0.62 205135 username motamedi9772 205135 mac 205135 bytes_out 0 205135 bytes_in 0 205135 station_ip 37.129.105.172 205135 port 102 205135 unique_id port 205135 remote_ip 10.8.1.198 205136 username pourshad 205136 mac 205136 bytes_out 98768 205136 bytes_in 794210 205136 station_ip 5.119.16.150 205136 port 98 205136 unique_id port 205136 remote_ip 10.8.1.58 205141 username pourshad 205141 mac 205141 bytes_out 94682 205141 bytes_in 952121 205141 station_ip 5.119.16.150 205141 port 98 205141 unique_id port 205141 remote_ip 10.8.1.58 205142 username motamedi9772 205142 kill_reason Maximum check online fails reached 205142 mac 205142 bytes_out 0 205142 bytes_in 0 205142 station_ip 37.129.105.172 205142 port 52 205142 unique_id port 205146 username motamedi9772 205146 mac 205146 bytes_out 0 205146 bytes_in 0 205146 station_ip 37.129.105.172 205146 port 53 205146 unique_id port 205146 remote_ip 10.8.0.62 205156 username pourshad 205156 mac 205156 bytes_out 47475 205156 bytes_in 505105 205156 station_ip 5.119.16.150 205156 port 53 205156 unique_id port 205156 remote_ip 10.8.0.54 205157 username motamedi9772 205157 mac 205157 bytes_out 0 205157 bytes_in 0 205157 station_ip 37.129.105.172 205157 port 93 205157 unique_id port 205157 remote_ip 10.8.1.198 205161 username motamedi9772 205161 mac 205161 bytes_out 0 205161 bytes_in 0 205161 station_ip 37.129.105.172 205161 port 53 205161 unique_id port 205161 remote_ip 10.8.0.62 205163 username esmaeilkazemi 205163 mac 205163 bytes_out 0 205163 bytes_in 0 205163 station_ip 83.122.113.81 205163 port 54 205163 unique_id port 205163 remote_ip 10.8.0.86 205164 username motamedi9772 205164 kill_reason Maximum number of concurrent logins reached 205164 mac 205164 bytes_out 0 205164 bytes_in 0 205164 station_ip 37.129.105.172 205164 port 54 205164 unique_id port 205165 username barzegar 205165 mac 205165 bytes_out 0 205165 bytes_in 0 205165 station_ip 5.119.158.40 205165 port 106 205165 unique_id port 205165 remote_ip 10.8.1.6 205168 username seyedrezaei2572 205168 mac 205168 bytes_out 13978 205168 bytes_in 17534 205168 station_ip 83.122.23.32 205168 port 104 205168 unique_id port 205168 remote_ip 10.8.1.238 205170 username nilufarrajaei 205170 mac 205170 bytes_out 0 205170 bytes_in 0 205170 station_ip 37.129.53.49 205131 mac 205131 bytes_out 0 205131 bytes_in 0 205131 station_ip 5.119.158.40 205131 port 102 205131 unique_id port 205131 remote_ip 10.8.1.6 205133 username motamedi9772 205133 mac 205133 bytes_out 0 205133 bytes_in 0 205133 station_ip 37.129.105.172 205133 port 52 205133 unique_id port 205133 remote_ip 10.8.0.62 205138 username motamedi9772 205138 mac 205138 bytes_out 0 205138 bytes_in 0 205138 station_ip 37.129.105.172 205138 port 52 205138 unique_id port 205138 remote_ip 10.8.0.62 205139 username motamedi9772 205139 mac 205139 bytes_out 0 205139 bytes_in 0 205139 station_ip 37.129.105.172 205139 port 52 205139 unique_id port 205139 remote_ip 10.8.0.62 205144 username motamedi9772 205144 mac 205144 bytes_out 0 205144 bytes_in 0 205144 station_ip 37.129.105.172 205144 port 53 205144 unique_id port 205144 remote_ip 10.8.0.62 205147 username motamedi9772 205147 mac 205147 bytes_out 0 205147 bytes_in 0 205147 station_ip 37.129.105.172 205147 port 102 205147 unique_id port 205147 remote_ip 10.8.1.198 205150 username motamedi9772 205150 mac 205150 bytes_out 0 205150 bytes_in 0 205150 station_ip 37.129.105.172 205150 port 53 205150 unique_id port 205150 remote_ip 10.8.0.62 205151 username motamedi9772 205151 mac 205151 bytes_out 0 205151 bytes_in 0 205151 station_ip 37.129.105.172 205151 port 55 205151 unique_id port 205151 remote_ip 10.8.0.62 205152 username motamedi9772 205152 kill_reason Maximum check online fails reached 205152 mac 205152 bytes_out 0 205152 bytes_in 0 205152 station_ip 37.129.105.172 205152 port 98 205152 unique_id port 205154 username majidsarmast 205154 mac 205154 bytes_out 0 205154 bytes_in 0 205154 station_ip 86.57.63.130 205154 port 93 205154 unique_id port 205158 username mohammadjavad 205158 mac 205158 bytes_out 0 205158 bytes_in 0 205158 station_ip 83.123.16.12 205158 port 54 205158 unique_id port 205158 remote_ip 10.8.0.58 205159 username esmaeilkazemi 205159 mac 205159 bytes_out 0 205159 bytes_in 0 205159 station_ip 83.122.113.81 205159 port 53 205159 unique_id port 205159 remote_ip 10.8.0.86 205160 username motamedi9772 205160 mac 205160 bytes_out 0 205160 bytes_in 0 205160 station_ip 37.129.105.172 205160 port 53 205160 unique_id port 205160 remote_ip 10.8.0.62 205162 username seyedrezaei2572 205162 mac 205162 bytes_out 233132 205162 bytes_in 218663 205162 station_ip 83.122.23.32 205162 port 55 205162 unique_id port 205162 remote_ip 10.8.0.186 205166 username motamedi9772 205166 kill_reason Maximum check online fails reached 205166 mac 205166 bytes_out 0 205166 bytes_in 0 205166 station_ip 37.129.105.172 205166 port 93 205166 unique_id port 205169 username yaghobi 205169 mac 205169 bytes_out 0 205169 bytes_in 0 205169 station_ip 37.129.214.180 205169 port 56 205169 unique_id port 205169 remote_ip 10.8.0.174 205171 username seyedrezaei2572 205171 mac 205171 bytes_out 0 205171 bytes_in 0 205171 station_ip 83.122.23.32 205171 port 53 205171 unique_id port 205171 remote_ip 10.8.0.186 205175 username nilufarrajaei 205175 mac 205175 bytes_out 0 205175 bytes_in 0 205175 station_ip 37.129.53.49 205175 port 53 205175 unique_id port 205175 remote_ip 10.8.0.94 205176 username barzegar 205176 mac 205176 bytes_out 0 205176 bytes_in 0 205176 station_ip 5.119.158.40 205176 port 107 205176 unique_id port 205176 remote_ip 10.8.1.6 205179 username daryaei1233 205179 mac 205179 bytes_out 0 205179 bytes_in 0 205179 station_ip 83.122.78.132 205179 port 43 205167 bytes_out 0 205167 bytes_in 0 205167 station_ip 37.129.105.172 205167 port 53 205167 unique_id port 205167 remote_ip 10.8.0.62 205172 username godarzi 205172 mac 205172 bytes_out 0 205172 bytes_in 0 205172 station_ip 5.202.98.177 205172 port 103 205172 unique_id port 205172 remote_ip 10.8.1.78 205174 username daryaei1233 205174 mac 205174 bytes_out 10146 205174 bytes_in 45695 205174 station_ip 83.122.78.132 205174 port 43 205174 unique_id port 205174 remote_ip 10.8.0.242 205177 username kharazmi2920 205177 mac 205177 bytes_out 0 205177 bytes_in 0 205177 station_ip 83.122.221.61 205177 port 51 205177 unique_id port 205177 remote_ip 10.8.0.34 205180 username tahmorsi 205180 mac 205180 bytes_out 195869 205180 bytes_in 1218617 205180 station_ip 86.57.82.55 205180 port 104 205180 unique_id port 205180 remote_ip 10.8.1.102 205183 username jafari 205183 mac 205183 bytes_out 1417486 205183 bytes_in 16444727 205183 station_ip 37.137.18.78 205183 port 106 205183 unique_id port 205183 remote_ip 10.8.1.126 205185 username jafari 205185 mac 205185 bytes_out 14888 205185 bytes_in 28392 205185 station_ip 37.137.18.78 205185 port 104 205185 unique_id port 205185 remote_ip 10.8.1.126 205192 username barzegar 205192 mac 205192 bytes_out 22101 205192 bytes_in 84236 205192 station_ip 5.119.158.40 205192 port 107 205192 unique_id port 205192 remote_ip 10.8.1.6 205195 username hamid1430 205195 kill_reason Another user logged on this global unique id 205195 mac 205195 bytes_out 0 205195 bytes_in 0 205195 station_ip 37.129.7.52 205195 port 46 205195 unique_id port 205195 remote_ip 10.8.0.110 205198 username daryaei1233 205198 mac 205198 bytes_out 0 205198 bytes_in 0 205198 station_ip 83.122.78.132 205198 port 43 205198 unique_id port 205198 remote_ip 10.8.0.242 205201 username mohammadjavad 205201 mac 205201 bytes_out 0 205201 bytes_in 0 205201 station_ip 83.123.99.236 205201 port 51 205201 unique_id port 205201 remote_ip 10.8.0.58 205203 username morteza4424 205203 kill_reason Another user logged on this global unique id 205203 mac 205203 bytes_out 0 205203 bytes_in 0 205203 station_ip 83.122.52.95 205203 port 55 205203 unique_id port 205203 remote_ip 10.8.0.70 205206 username farhad3 205206 mac 205206 bytes_out 150753 205206 bytes_in 471554 205206 station_ip 5.119.249.195 205206 port 109 205206 unique_id port 205206 remote_ip 10.8.1.38 205208 username pourshad 205208 mac 205208 bytes_out 4121990 205208 bytes_in 4675987 205208 station_ip 5.119.16.150 205208 port 105 205208 unique_id port 205208 remote_ip 10.8.1.58 205211 username daryaei1233 205211 mac 205211 bytes_out 0 205211 bytes_in 0 205211 station_ip 83.122.78.132 205211 port 43 205211 unique_id port 205211 remote_ip 10.8.0.242 205213 username daryaei1233 205213 mac 205213 bytes_out 0 205213 bytes_in 0 205213 station_ip 83.122.78.132 205213 port 43 205213 unique_id port 205213 remote_ip 10.8.0.242 205219 username farhad3 205219 kill_reason Another user logged on this global unique id 205219 mac 205219 bytes_out 0 205219 bytes_in 0 205219 station_ip 5.119.249.195 205219 port 106 205219 unique_id port 205219 remote_ip 10.8.1.38 205220 username jafari 205220 kill_reason Another user logged on this global unique id 205220 mac 205220 bytes_out 0 205220 bytes_in 0 205220 station_ip 37.137.18.78 205220 port 104 205220 unique_id port 205220 remote_ip 10.8.1.126 205225 username morteza4424 205225 kill_reason Another user logged on this global unique id 205225 mac 205225 bytes_out 0 205225 bytes_in 0 205170 port 45 205170 unique_id port 205173 username daryaei1233 205173 mac 205173 bytes_out 0 205173 bytes_in 0 205173 station_ip 83.122.78.132 205173 port 43 205173 unique_id port 205173 remote_ip 10.8.0.242 205178 username nilufarrajaei 205178 mac 205178 bytes_out 33354 205178 bytes_in 201025 205178 station_ip 37.129.53.49 205178 port 54 205178 unique_id port 205178 remote_ip 10.8.0.94 205182 username barzegar 205182 mac 205182 bytes_out 0 205182 bytes_in 0 205182 station_ip 5.119.158.40 205182 port 104 205182 unique_id port 205182 remote_ip 10.8.1.6 205188 username daryaei1233 205188 kill_reason Another user logged on this global unique id 205188 mac 205188 bytes_out 0 205188 bytes_in 0 205188 station_ip 83.122.78.132 205188 port 43 205188 unique_id port 205188 remote_ip 10.8.0.242 205190 username yaghobi 205190 mac 205190 bytes_out 29320 205190 bytes_in 46768 205190 station_ip 37.129.177.224 205190 port 55 205190 unique_id port 205190 remote_ip 10.8.0.174 205197 username jafari 205197 mac 205197 bytes_out 184578 205197 bytes_in 801017 205197 station_ip 37.137.18.78 205197 port 104 205197 unique_id port 205197 remote_ip 10.8.1.126 205199 username yarmohamadi7916 205199 kill_reason Another user logged on this global unique id 205199 mac 205199 bytes_out 0 205199 bytes_in 0 205199 station_ip 5.119.70.246 205199 port 92 205199 unique_id port 205205 username daryaei1233 205205 mac 205205 bytes_out 0 205205 bytes_in 0 205205 station_ip 83.122.78.132 205205 port 43 205205 unique_id port 205205 remote_ip 10.8.0.242 205207 username rashidi4690 205207 mac 205207 bytes_out 6074721 205207 bytes_in 44782702 205207 station_ip 5.119.182.118 205207 port 100 205207 unique_id port 205207 remote_ip 10.8.1.158 205209 username meysam 205209 mac 205209 bytes_out 1248964 205209 bytes_in 24193883 205209 station_ip 188.158.49.162 205209 port 108 205209 unique_id port 205209 remote_ip 10.8.1.30 205210 username malekpoir 205210 kill_reason Another user logged on this global unique id 205210 mac 205210 bytes_out 0 205210 bytes_in 0 205210 station_ip 5.119.17.236 205210 port 88 205210 unique_id port 205210 remote_ip 10.8.1.70 205212 username seyedrezaei2572 205212 mac 205212 bytes_out 826630 205212 bytes_in 1156575 205212 station_ip 83.122.23.32 205212 port 45 205212 unique_id port 205212 remote_ip 10.8.0.186 205215 username amirzadeh1339 205215 unique_id port 205215 terminate_cause User-Request 205215 bytes_out 49581635 205215 bytes_in 1165860789 205215 station_ip 37.27.11.18 205215 port 15730016 205215 nas_port_type Virtual 205215 remote_ip 5.5.5.32 205217 username pourshad 205217 mac 205217 bytes_out 4707 205217 bytes_in 6995 205217 station_ip 5.119.16.150 205217 port 100 205217 unique_id port 205217 remote_ip 10.8.1.58 205218 username daryaei1233 205218 mac 205218 bytes_out 0 205218 bytes_in 0 205218 station_ip 83.122.78.132 205218 port 43 205218 unique_id port 205218 remote_ip 10.8.0.242 205221 username daryaei1233 205221 mac 205221 bytes_out 0 205221 bytes_in 0 205221 station_ip 83.122.78.132 205221 port 43 205221 unique_id port 205221 remote_ip 10.8.0.242 205223 username daryaei1233 205223 mac 205223 bytes_out 0 205223 bytes_in 0 205223 station_ip 83.122.78.132 205223 port 56 205223 unique_id port 205223 remote_ip 10.8.0.242 205226 username hamid1430 205226 mac 205226 bytes_out 0 205226 bytes_in 0 205226 station_ip 37.129.7.52 205226 port 46 205226 unique_id port 205227 username daryaei1233 205227 mac 205227 bytes_out 0 205227 bytes_in 0 205179 unique_id port 205179 remote_ip 10.8.0.242 205181 username daryaei1233 205181 mac 205181 bytes_out 0 205181 bytes_in 0 205181 station_ip 83.122.78.132 205181 port 43 205181 unique_id port 205181 remote_ip 10.8.0.242 205184 username teymori5660 205184 mac 205184 bytes_out 3842848 205184 bytes_in 37429872 205184 station_ip 5.120.43.180 205184 port 102 205184 unique_id port 205184 remote_ip 10.8.1.14 205186 username kharazmi2920 205186 mac 205186 bytes_out 0 205186 bytes_in 0 205186 station_ip 83.122.221.61 205186 port 51 205186 unique_id port 205186 remote_ip 10.8.0.34 205187 username barzegar 205187 mac 205187 bytes_out 0 205187 bytes_in 0 205187 station_ip 5.119.158.40 205187 port 106 205187 unique_id port 205187 remote_ip 10.8.1.6 205189 username yaghobi 205189 mac 205189 bytes_out 0 205189 bytes_in 0 205189 station_ip 37.129.177.224 205189 port 54 205189 unique_id port 205189 remote_ip 10.8.0.174 205191 username kalantary6037 205191 mac 205191 bytes_out 1331198 205191 bytes_in 10968667 205191 station_ip 83.123.31.95 205191 port 106 205191 unique_id port 205191 remote_ip 10.8.1.150 205193 username daryaei1233 205193 mac 205193 bytes_out 0 205193 bytes_in 0 205193 station_ip 83.122.78.132 205193 port 43 205193 unique_id port 205194 username daryaei1233 205194 mac 205194 bytes_out 0 205194 bytes_in 0 205194 station_ip 83.122.78.132 205194 port 43 205194 unique_id port 205194 remote_ip 10.8.0.242 205196 username daryaei1233 205196 mac 205196 bytes_out 0 205196 bytes_in 0 205196 station_ip 83.122.78.132 205196 port 43 205196 unique_id port 205196 remote_ip 10.8.0.242 205200 username ahmadi1 205200 mac 205200 bytes_out 0 205200 bytes_in 0 205200 station_ip 83.122.208.175 205200 port 43 205200 unique_id port 205200 remote_ip 10.8.0.42 205202 username farhad3 205202 mac 205202 bytes_out 1271300 205202 bytes_in 20726719 205202 station_ip 5.119.249.195 205202 port 108 205202 unique_id port 205202 remote_ip 10.8.1.38 205204 username barzegar 205204 mac 205204 bytes_out 141039 205204 bytes_in 132254 205204 station_ip 5.119.158.40 205204 port 106 205204 unique_id port 205204 remote_ip 10.8.1.6 205214 username alipour1506 205214 kill_reason Another user logged on this global unique id 205214 mac 205214 bytes_out 0 205214 bytes_in 0 205214 station_ip 78.39.26.163 205214 port 103 205214 unique_id port 205214 remote_ip 10.8.1.86 205216 username barzegar 205216 mac 205216 bytes_out 3134 205216 bytes_in 6063 205216 station_ip 5.119.158.40 205216 port 105 205216 unique_id port 205216 remote_ip 10.8.1.6 205222 username barzegar 205222 mac 205222 bytes_out 0 205222 bytes_in 0 205222 station_ip 5.119.158.40 205222 port 110 205222 unique_id port 205222 remote_ip 10.8.1.6 205224 username kalantary6037 205224 mac 205224 bytes_out 195759 205224 bytes_in 1161079 205224 station_ip 37.129.145.141 205224 port 108 205224 unique_id port 205224 remote_ip 10.8.1.150 205229 username morteza4424 205229 mac 205229 bytes_out 0 205229 bytes_in 0 205229 station_ip 83.122.52.95 205229 port 55 205229 unique_id port 205230 username daryaei1233 205230 mac 205230 bytes_out 0 205230 bytes_in 0 205230 station_ip 83.122.78.132 205230 port 57 205230 unique_id port 205230 remote_ip 10.8.0.242 205232 username yaghobi 205232 mac 205232 bytes_out 0 205232 bytes_in 0 205232 station_ip 83.123.81.60 205232 port 43 205232 unique_id port 205232 remote_ip 10.8.0.174 205234 username alirezaza 205225 station_ip 83.122.52.95 205225 port 55 205225 unique_id port 205237 username hamid1430 205237 mac 205237 bytes_out 0 205237 bytes_in 0 205237 station_ip 37.129.7.52 205237 port 46 205237 unique_id port 205237 remote_ip 10.8.0.110 205240 username godarzi 205240 mac 205240 bytes_out 0 205240 bytes_in 0 205240 station_ip 5.202.98.177 205240 port 107 205240 unique_id port 205240 remote_ip 10.8.1.78 205245 username rashidi4690 205245 mac 205245 bytes_out 0 205245 bytes_in 0 205245 station_ip 5.119.182.118 205245 port 109 205245 unique_id port 205248 username barzegar 205248 mac 205248 bytes_out 0 205248 bytes_in 0 205248 station_ip 5.119.158.40 205248 port 111 205248 unique_id port 205248 remote_ip 10.8.1.6 205249 username motamedi9772 205249 kill_reason Another user logged on this global unique id 205249 mac 205249 bytes_out 0 205249 bytes_in 0 205249 station_ip 37.129.105.160 205249 port 43 205249 unique_id port 205249 remote_ip 10.8.0.62 205255 username jafari 205255 kill_reason Another user logged on this global unique id 205255 mac 205255 bytes_out 0 205255 bytes_in 0 205255 station_ip 37.137.18.78 205255 port 104 205255 unique_id port 205257 username motamedi9772 205257 mac 205257 bytes_out 0 205257 bytes_in 0 205257 station_ip 37.129.105.160 205257 port 43 205257 unique_id port 205259 username rashidi4690 205259 kill_reason Another user logged on this global unique id 205259 mac 205259 bytes_out 0 205259 bytes_in 0 205259 station_ip 5.119.182.118 205259 port 107 205259 unique_id port 205259 remote_ip 10.8.1.158 205261 username nilufarrajaei 205261 mac 205261 bytes_out 0 205261 bytes_in 0 205261 station_ip 37.129.53.49 205261 port 53 205261 unique_id port 205261 remote_ip 10.8.0.94 205263 username barzegar 205263 mac 205263 bytes_out 0 205263 bytes_in 0 205263 station_ip 5.119.158.40 205263 port 110 205263 unique_id port 205263 remote_ip 10.8.1.6 205264 username nilufarrajaei 205264 mac 205264 bytes_out 0 205264 bytes_in 0 205264 station_ip 37.129.53.49 205264 port 43 205264 unique_id port 205264 remote_ip 10.8.0.94 205266 username nilufarrajaei 205266 mac 205266 bytes_out 0 205266 bytes_in 0 205266 station_ip 37.129.53.49 205266 port 110 205266 unique_id port 205266 remote_ip 10.8.1.138 205268 username jafari 205268 kill_reason Another user logged on this global unique id 205268 mac 205268 bytes_out 0 205268 bytes_in 0 205268 station_ip 37.137.18.78 205268 port 104 205268 unique_id port 205270 username nilufarrajaei 205270 mac 205270 bytes_out 0 205270 bytes_in 0 205270 station_ip 37.129.53.49 205270 port 110 205270 unique_id port 205270 remote_ip 10.8.1.138 205271 username majidsarmast 205271 kill_reason Another user logged on this global unique id 205271 mac 205271 bytes_out 0 205271 bytes_in 0 205271 station_ip 83.123.144.192 205271 port 100 205271 unique_id port 205271 remote_ip 10.8.1.114 205272 username nilufarrajaei 205272 mac 205272 bytes_out 318132 205272 bytes_in 3046474 205272 station_ip 37.129.53.49 205272 port 110 205272 unique_id port 205272 remote_ip 10.8.1.138 205275 username ghaderpour6649 205275 mac 205275 bytes_out 0 205275 bytes_in 0 205275 station_ip 37.129.66.18 205275 port 43 205275 unique_id port 205275 remote_ip 10.8.0.38 205278 username pourshad 205278 mac 205278 bytes_out 48361 205278 bytes_in 433623 205278 station_ip 5.119.16.150 205278 port 105 205278 unique_id port 205278 remote_ip 10.8.1.58 205280 username pourshad 205280 kill_reason Maximum check online fails reached 205280 mac 205280 bytes_out 0 205227 station_ip 83.122.78.132 205227 port 56 205227 unique_id port 205227 remote_ip 10.8.0.242 205228 username barzegar 205228 mac 205228 bytes_out 0 205228 bytes_in 0 205228 station_ip 5.119.158.40 205228 port 108 205228 unique_id port 205228 remote_ip 10.8.1.6 205231 username barzegar 205231 mac 205231 bytes_out 0 205231 bytes_in 0 205231 station_ip 5.119.158.40 205231 port 108 205231 unique_id port 205231 remote_ip 10.8.1.6 205233 username rashidi4690 205233 kill_reason Another user logged on this global unique id 205233 mac 205233 bytes_out 0 205233 bytes_in 0 205233 station_ip 5.119.182.118 205233 port 109 205233 unique_id port 205233 remote_ip 10.8.1.158 205238 username barzegar 205238 mac 205238 bytes_out 0 205238 bytes_in 0 205238 station_ip 5.119.158.40 205238 port 46 205238 unique_id port 205238 remote_ip 10.8.0.14 205239 username farhad3 205239 mac 205239 bytes_out 0 205239 bytes_in 0 205239 station_ip 5.119.249.195 205239 port 106 205239 unique_id port 205241 username aminvpn 205241 mac 205241 bytes_out 0 205241 bytes_in 0 205241 station_ip 151.238.240.180 205241 port 108 205241 unique_id port 205241 remote_ip 10.8.1.130 205246 username barzegar 205246 mac 205246 bytes_out 0 205246 bytes_in 0 205246 station_ip 5.119.158.40 205246 port 109 205246 unique_id port 205246 remote_ip 10.8.1.6 205247 username daryaei1233 205247 mac 205247 bytes_out 0 205247 bytes_in 0 205247 station_ip 83.122.78.132 205247 port 46 205247 unique_id port 205247 remote_ip 10.8.0.242 205252 username farhad3 205252 kill_reason Another user logged on this global unique id 205252 mac 205252 bytes_out 0 205252 bytes_in 0 205252 station_ip 5.119.249.195 205252 port 106 205252 unique_id port 205252 remote_ip 10.8.1.38 205260 username aminvpn 205260 mac 205260 bytes_out 0 205260 bytes_in 0 205260 station_ip 151.238.240.180 205260 port 43 205260 unique_id port 205260 remote_ip 10.8.0.206 205265 username nilufarrajaei 205265 mac 205265 bytes_out 0 205265 bytes_in 0 205265 station_ip 37.129.53.49 205265 port 43 205265 unique_id port 205265 remote_ip 10.8.0.94 205267 username farhad3 205267 mac 205267 bytes_out 0 205267 bytes_in 0 205267 station_ip 5.119.249.195 205267 port 106 205267 unique_id port 205274 username nilufarrajaei 205274 mac 205274 bytes_out 750578 205274 bytes_in 8323898 205274 station_ip 37.129.53.49 205274 port 111 205274 unique_id port 205274 remote_ip 10.8.1.138 205276 username daryaei1233 205276 mac 205276 bytes_out 0 205276 bytes_in 0 205276 station_ip 5.202.13.229 205276 port 46 205276 unique_id port 205276 remote_ip 10.8.0.242 205277 username jafari 205277 kill_reason Another user logged on this global unique id 205277 mac 205277 bytes_out 0 205277 bytes_in 0 205277 station_ip 37.137.18.78 205277 port 104 205277 unique_id port 205279 username alipour1506 205279 kill_reason Another user logged on this global unique id 205279 mac 205279 bytes_out 0 205279 bytes_in 0 205279 station_ip 78.39.26.163 205279 port 103 205279 unique_id port 205282 username yarmohamadi7916 205282 kill_reason Another user logged on this global unique id 205282 mac 205282 bytes_out 0 205282 bytes_in 0 205282 station_ip 5.119.70.246 205282 port 92 205282 unique_id port 205285 username pourshad 205285 mac 205285 bytes_out 106817 205285 bytes_in 1607769 205285 station_ip 5.119.16.150 205285 port 111 205285 unique_id port 205285 remote_ip 10.8.1.58 205291 username esmaeilkazemi 205291 mac 205291 bytes_out 0 205291 bytes_in 0 205234 unique_id port 205234 terminate_cause User-Request 205234 bytes_out 9503186 205234 bytes_in 293924147 205234 station_ip 5.120.16.53 205234 port 15730040 205234 nas_port_type Virtual 205234 remote_ip 5.5.5.6 205235 username yaghobi 205235 mac 205235 bytes_out 89224 205235 bytes_in 367226 205235 station_ip 83.123.81.60 205235 port 43 205235 unique_id port 205235 remote_ip 10.8.0.174 205236 username farhad3 205236 kill_reason Another user logged on this global unique id 205236 mac 205236 bytes_out 0 205236 bytes_in 0 205236 station_ip 5.119.249.195 205236 port 106 205236 unique_id port 205242 username rashidi4690 205242 kill_reason Another user logged on this global unique id 205242 mac 205242 bytes_out 0 205242 bytes_in 0 205242 station_ip 5.119.182.118 205242 port 109 205242 unique_id port 205243 username jafari 205243 kill_reason Another user logged on this global unique id 205243 mac 205243 bytes_out 0 205243 bytes_in 0 205243 station_ip 37.137.18.78 205243 port 104 205243 unique_id port 205244 username daryaei1233 205244 mac 205244 bytes_out 0 205244 bytes_in 0 205244 station_ip 83.122.78.132 205244 port 55 205244 unique_id port 205244 remote_ip 10.8.0.242 205250 username hamid1430 205250 mac 205250 bytes_out 126382 205250 bytes_in 465882 205250 station_ip 37.129.7.52 205250 port 109 205250 unique_id port 205250 remote_ip 10.8.1.242 205251 username mohammadjavad 205251 mac 205251 bytes_out 0 205251 bytes_in 0 205251 station_ip 83.123.99.236 205251 port 56 205251 unique_id port 205251 remote_ip 10.8.0.58 205253 username sabaghnezhad 205253 mac 205253 bytes_out 0 205253 bytes_in 0 205253 station_ip 37.129.79.8 205253 port 49 205253 unique_id port 205253 remote_ip 10.8.0.18 205254 username sabaghnezhad 205254 mac 205254 bytes_out 0 205254 bytes_in 0 205254 station_ip 37.129.79.8 205254 port 46 205254 unique_id port 205254 remote_ip 10.8.0.18 205256 username aminvpn 205256 mac 205256 bytes_out 0 205256 bytes_in 0 205256 station_ip 151.238.240.180 205256 port 110 205256 unique_id port 205256 remote_ip 10.8.1.130 205258 username sabaghnezhad 205258 mac 205258 bytes_out 0 205258 bytes_in 0 205258 station_ip 37.129.79.8 205258 port 49 205258 unique_id port 205258 remote_ip 10.8.0.18 205262 username sabaghnezhad 205262 mac 205262 bytes_out 0 205262 bytes_in 0 205262 station_ip 37.129.79.8 205262 port 46 205262 unique_id port 205262 remote_ip 10.8.0.18 205269 username pourshad 205269 mac 205269 bytes_out 713353 205269 bytes_in 3629619 205269 station_ip 5.119.16.150 205269 port 105 205269 unique_id port 205269 remote_ip 10.8.1.58 205273 username pourshad 205273 mac 205273 bytes_out 63064 205273 bytes_in 143557 205273 station_ip 5.119.16.150 205273 port 105 205273 unique_id port 205273 remote_ip 10.8.1.58 205284 username hamid1430 205284 mac 205284 bytes_out 3323545 205284 bytes_in 35383448 205284 station_ip 37.129.7.52 205284 port 109 205284 unique_id port 205284 remote_ip 10.8.1.242 205286 username yaghobi 205286 mac 205286 bytes_out 0 205286 bytes_in 0 205286 station_ip 83.123.106.220 205286 port 43 205286 unique_id port 205286 remote_ip 10.8.0.174 205287 username seyedrezaei2572 205287 kill_reason Another user logged on this global unique id 205287 mac 205287 bytes_out 0 205287 bytes_in 0 205287 station_ip 83.122.23.32 205287 port 45 205287 unique_id port 205287 remote_ip 10.8.0.186 205288 username alipour1506 205288 kill_reason Another user logged on this global unique id 205288 mac 205288 bytes_out 0 205288 bytes_in 0 205288 station_ip 78.39.26.163 205280 bytes_in 0 205280 station_ip 5.119.16.150 205280 port 105 205280 unique_id port 205281 username barzegar 205281 mac 205281 bytes_out 0 205281 bytes_in 0 205281 station_ip 5.119.158.40 205281 port 112 205281 unique_id port 205281 remote_ip 10.8.1.6 205283 username jafari 205283 kill_reason Another user logged on this global unique id 205283 mac 205283 bytes_out 0 205283 bytes_in 0 205283 station_ip 37.137.18.78 205283 port 104 205283 unique_id port 205296 username motamedi9772 205296 kill_reason Another user logged on this global unique id 205296 mac 205296 bytes_out 0 205296 bytes_in 0 205296 station_ip 37.129.79.168 205296 port 49 205296 unique_id port 205296 remote_ip 10.8.0.62 205301 username godarzi 205301 kill_reason Another user logged on this global unique id 205301 mac 205301 bytes_out 0 205301 bytes_in 0 205301 station_ip 5.202.98.177 205301 port 108 205301 unique_id port 205301 remote_ip 10.8.1.78 205303 username sabaghnezhad 205303 mac 205303 bytes_out 0 205303 bytes_in 0 205303 station_ip 37.129.79.8 205303 port 46 205303 unique_id port 205303 remote_ip 10.8.0.18 205305 username nilufarrajaei 205305 kill_reason Another user logged on this global unique id 205305 mac 205305 bytes_out 0 205305 bytes_in 0 205305 station_ip 37.129.53.49 205305 port 110 205305 unique_id port 205309 username motamedi9772 205309 kill_reason Another user logged on this global unique id 205309 mac 205309 bytes_out 0 205309 bytes_in 0 205309 station_ip 37.129.79.168 205309 port 49 205309 unique_id port 205310 username barzegar 205310 mac 205310 bytes_out 0 205310 bytes_in 0 205310 station_ip 5.119.158.40 205310 port 112 205310 unique_id port 205310 remote_ip 10.8.1.6 205315 username barzegar 205315 mac 205315 bytes_out 0 205315 bytes_in 0 205315 station_ip 5.119.158.40 205315 port 43 205315 unique_id port 205315 remote_ip 10.8.0.14 205318 username mostafa_es78 205318 mac 205318 bytes_out 0 205318 bytes_in 0 205318 station_ip 2.181.245.82 205318 port 109 205318 unique_id port 205321 username mammad 205321 kill_reason Maximum check online fails reached 205321 unique_id port 205321 bytes_out 3613366 205321 bytes_in 83227381 205321 station_ip 5.233.65.158 205321 port 15730042 205321 nas_port_type Virtual 205321 remote_ip 5.5.5.7 205322 username jafari 205322 kill_reason Another user logged on this global unique id 205322 mac 205322 bytes_out 0 205322 bytes_in 0 205322 station_ip 37.137.18.78 205322 port 104 205322 unique_id port 205322 remote_ip 10.8.1.126 205325 username saeeddamghani 205325 kill_reason Another user logged on this global unique id 205325 mac 205325 bytes_out 0 205325 bytes_in 0 205325 station_ip 217.60.218.93 205325 port 100 205325 unique_id port 205325 remote_ip 10.8.1.66 205332 username saeeddamghani 205332 mac 205332 bytes_out 0 205332 bytes_in 0 205332 station_ip 217.60.218.93 205332 port 100 205332 unique_id port 205332 remote_ip 10.8.1.66 205335 username motamedi9772 205335 kill_reason Another user logged on this global unique id 205335 mac 205335 bytes_out 0 205335 bytes_in 0 205335 station_ip 37.129.79.168 205335 port 49 205335 unique_id port 205338 username saeeddamghani 205338 kill_reason Maximum check online fails reached 205338 mac 205338 bytes_out 0 205338 bytes_in 0 205338 station_ip 217.60.218.93 205338 port 100 205338 unique_id port 205342 username teymori5660 205342 kill_reason Another user logged on this global unique id 205342 mac 205342 bytes_out 0 205342 bytes_in 0 205342 station_ip 5.120.43.180 205342 port 112 205342 unique_id port 205342 remote_ip 10.8.1.14 205344 username pourshad 205344 mac 205344 bytes_out 0 205288 port 103 205288 unique_id port 205289 username majidsarmast 205289 kill_reason Another user logged on this global unique id 205289 mac 205289 bytes_out 0 205289 bytes_in 0 205289 station_ip 83.123.144.192 205289 port 100 205289 unique_id port 205290 username barzegar 205290 mac 205290 bytes_out 0 205290 bytes_in 0 205290 station_ip 5.119.158.40 205290 port 109 205290 unique_id port 205290 remote_ip 10.8.1.6 205292 username hamid1430 205292 mac 205292 bytes_out 0 205292 bytes_in 0 205292 station_ip 37.129.7.52 205292 port 53 205292 unique_id port 205292 remote_ip 10.8.0.110 205295 username kharazmi2920 205295 kill_reason Another user logged on this global unique id 205295 mac 205295 bytes_out 0 205295 bytes_in 0 205295 station_ip 83.122.224.9 205295 port 54 205295 unique_id port 205295 remote_ip 10.8.0.34 205297 username jafari 205297 kill_reason Another user logged on this global unique id 205297 mac 205297 bytes_out 0 205297 bytes_in 0 205297 station_ip 37.137.18.78 205297 port 104 205297 unique_id port 205298 username nilufarrajaei 205298 kill_reason Another user logged on this global unique id 205298 mac 205298 bytes_out 0 205298 bytes_in 0 205298 station_ip 37.129.53.49 205298 port 110 205298 unique_id port 205298 remote_ip 10.8.1.138 205300 username barzegar 205300 mac 205300 bytes_out 0 205300 bytes_in 0 205300 station_ip 5.119.158.40 205300 port 111 205300 unique_id port 205300 remote_ip 10.8.1.6 205302 username kalantary6037 205302 mac 205302 bytes_out 814474 205302 bytes_in 6986628 205302 station_ip 37.129.174.133 205302 port 100 205302 unique_id port 205302 remote_ip 10.8.1.150 205304 username saeeddamghani 205304 mac 205304 bytes_out 0 205304 bytes_in 0 205304 station_ip 217.60.218.93 205304 port 43 205304 unique_id port 205304 remote_ip 10.8.0.26 205306 username hamid.e 205306 unique_id port 205306 terminate_cause User-Request 205306 bytes_out 4325420 205306 bytes_in 56957825 205306 station_ip 37.27.4.42 205306 port 15730041 205306 nas_port_type Virtual 205306 remote_ip 5.5.5.25 205307 username jafari 205307 mac 205307 bytes_out 0 205307 bytes_in 0 205307 station_ip 37.137.18.78 205307 port 104 205307 unique_id port 205308 username alipour1506 205308 kill_reason Another user logged on this global unique id 205308 mac 205308 bytes_out 0 205308 bytes_in 0 205308 station_ip 78.39.26.163 205308 port 103 205308 unique_id port 205311 username seyedrezaei2572 205311 kill_reason Another user logged on this global unique id 205311 mac 205311 bytes_out 0 205311 bytes_in 0 205311 station_ip 83.122.23.32 205311 port 45 205311 unique_id port 205317 username pourshad 205317 mac 205317 bytes_out 0 205317 bytes_in 0 205317 station_ip 5.119.16.150 205317 port 111 205317 unique_id port 205317 remote_ip 10.8.1.58 205319 username barzegar 205319 mac 205319 bytes_out 0 205319 bytes_in 0 205319 station_ip 5.119.158.40 205319 port 112 205319 unique_id port 205319 remote_ip 10.8.1.6 205320 username kharazmi2920 205320 mac 205320 bytes_out 0 205320 bytes_in 0 205320 station_ip 83.122.224.9 205320 port 54 205320 unique_id port 205323 username barzegar 205323 mac 205323 bytes_out 0 205323 bytes_in 0 205323 station_ip 5.119.158.40 205323 port 111 205323 unique_id port 205323 remote_ip 10.8.1.6 205324 username hosseine 205324 mac 205324 bytes_out 0 205324 bytes_in 0 205324 station_ip 113.203.116.242 205324 port 51 205324 unique_id port 205324 remote_ip 10.8.0.118 205329 username kharazmi2920 205329 mac 205329 bytes_out 91441 205329 bytes_in 540909 205291 station_ip 83.122.113.81 205291 port 43 205291 unique_id port 205291 remote_ip 10.8.0.86 205293 username esmaeilkazemi 205293 mac 205293 bytes_out 0 205293 bytes_in 0 205293 station_ip 83.122.113.81 205293 port 55 205293 unique_id port 205293 remote_ip 10.8.0.86 205294 username majidsarmast 205294 mac 205294 bytes_out 0 205294 bytes_in 0 205294 station_ip 83.123.144.192 205294 port 100 205294 unique_id port 205299 username saeeddamghani 205299 mac 205299 bytes_out 0 205299 bytes_in 0 205299 station_ip 217.60.218.93 205299 port 43 205299 unique_id port 205299 remote_ip 10.8.0.26 205312 username daryaei1233 205312 mac 205312 bytes_out 0 205312 bytes_in 0 205312 station_ip 83.122.90.204 205312 port 43 205312 unique_id port 205312 remote_ip 10.8.0.242 205313 username barzegar 205313 mac 205313 bytes_out 2358 205313 bytes_in 5101 205313 station_ip 5.119.158.40 205313 port 112 205313 unique_id port 205313 remote_ip 10.8.1.6 205314 username motamedi9772 205314 kill_reason Another user logged on this global unique id 205314 mac 205314 bytes_out 0 205314 bytes_in 0 205314 station_ip 37.129.79.168 205314 port 49 205314 unique_id port 205316 username mostafa_es78 205316 kill_reason Another user logged on this global unique id 205316 mac 205316 bytes_out 0 205316 bytes_in 0 205316 station_ip 2.181.245.82 205316 port 109 205316 unique_id port 205316 remote_ip 10.8.1.202 205326 username barzegar 205326 mac 205326 bytes_out 0 205326 bytes_in 0 205326 station_ip 5.119.158.40 205326 port 113 205326 unique_id port 205326 remote_ip 10.8.1.6 205327 username motamedi9772 205327 kill_reason Another user logged on this global unique id 205327 mac 205327 bytes_out 0 205327 bytes_in 0 205327 station_ip 37.129.79.168 205327 port 49 205327 unique_id port 205328 username kalantary6037 205328 mac 205328 bytes_out 1642542 205328 bytes_in 20436806 205328 station_ip 37.129.221.121 205328 port 109 205328 unique_id port 205328 remote_ip 10.8.1.150 205331 username saeeddamghani 205331 mac 205331 bytes_out 0 205331 bytes_in 0 205331 station_ip 217.60.218.93 205331 port 100 205331 unique_id port 205331 remote_ip 10.8.1.66 205333 username esmaeilkazemi 205333 mac 205333 bytes_out 0 205333 bytes_in 0 205333 station_ip 83.122.113.81 205333 port 43 205333 unique_id port 205333 remote_ip 10.8.0.86 205336 username motamedi9772 205336 mac 205336 bytes_out 0 205336 bytes_in 0 205336 station_ip 37.129.79.168 205336 port 49 205336 unique_id port 205343 username yaghobi 205343 mac 205343 bytes_out 0 205343 bytes_in 0 205343 station_ip 83.123.73.56 205343 port 43 205343 unique_id port 205343 remote_ip 10.8.0.174 205346 username saeeddamghani 205346 mac 205346 bytes_out 0 205346 bytes_in 0 205346 station_ip 217.60.218.93 205346 port 43 205346 unique_id port 205346 remote_ip 10.8.0.26 205348 username godarzi 205348 mac 205348 bytes_out 0 205348 bytes_in 0 205348 station_ip 5.202.98.177 205348 port 108 205348 unique_id port 205353 username milan 205353 mac 205353 bytes_out 0 205353 bytes_in 0 205353 station_ip 5.120.143.192 205353 port 43 205353 unique_id port 205353 remote_ip 10.8.0.198 205356 username barzegar 205356 mac 205356 bytes_out 0 205356 bytes_in 0 205356 station_ip 5.119.158.40 205356 port 108 205356 unique_id port 205356 remote_ip 10.8.1.6 205357 username sabaghnezhad 205357 mac 205357 bytes_out 0 205357 bytes_in 0 205357 station_ip 83.122.126.41 205357 port 46 205357 unique_id port 205357 remote_ip 10.8.0.18 205329 station_ip 83.122.224.9 205329 port 112 205329 unique_id port 205329 remote_ip 10.8.1.178 205330 username saeeddamghani 205330 mac 205330 bytes_out 0 205330 bytes_in 0 205330 station_ip 217.60.218.93 205330 port 100 205330 unique_id port 205334 username saeeddamghani 205334 mac 205334 bytes_out 191458 205334 bytes_in 1447764 205334 station_ip 217.60.218.93 205334 port 100 205334 unique_id port 205334 remote_ip 10.8.1.66 205337 username barzegar 205337 mac 205337 bytes_out 0 205337 bytes_in 0 205337 station_ip 5.119.158.40 205337 port 113 205337 unique_id port 205337 remote_ip 10.8.1.6 205339 username jafari 205339 kill_reason Another user logged on this global unique id 205339 mac 205339 bytes_out 0 205339 bytes_in 0 205339 station_ip 37.137.18.78 205339 port 104 205339 unique_id port 205340 username iranmanesh4443 205340 mac 205340 bytes_out 0 205340 bytes_in 0 205340 station_ip 5.120.145.232 205340 port 109 205340 unique_id port 205340 remote_ip 10.8.1.122 205341 username saeeddamghani 205341 mac 205341 bytes_out 0 205341 bytes_in 0 205341 station_ip 217.60.218.93 205341 port 109 205341 unique_id port 205341 remote_ip 10.8.1.66 205349 username nilufarrajaei 205349 mac 205349 bytes_out 0 205349 bytes_in 0 205349 station_ip 37.129.53.49 205349 port 110 205349 unique_id port 205351 username nilufarrajaei 205351 mac 205351 bytes_out 6130 205351 bytes_in 11667 205351 station_ip 37.129.53.49 205351 port 110 205351 unique_id port 205351 remote_ip 10.8.1.138 205354 username kalantary6037 205354 mac 205354 bytes_out 581329 205354 bytes_in 3423350 205354 station_ip 37.129.168.21 205354 port 108 205354 unique_id port 205354 remote_ip 10.8.1.150 205361 username saeeddamghani 205361 mac 205361 bytes_out 28037 205361 bytes_in 39233 205361 station_ip 217.60.218.93 205361 port 114 205361 unique_id port 205361 remote_ip 10.8.1.66 205363 username esmaeilkazemi 205363 mac 205363 bytes_out 0 205363 bytes_in 0 205363 station_ip 83.122.113.81 205363 port 53 205363 unique_id port 205363 remote_ip 10.8.0.86 205364 username rashidi4690 205364 mac 205364 bytes_out 0 205364 bytes_in 0 205364 station_ip 5.119.182.118 205364 port 107 205364 unique_id port 205365 username saeeddamghani 205365 mac 205365 bytes_out 653520 205365 bytes_in 6353741 205365 station_ip 217.60.218.93 205365 port 116 205365 unique_id port 205365 remote_ip 10.8.1.66 205368 username barzegar 205368 mac 205368 bytes_out 0 205368 bytes_in 0 205368 station_ip 5.119.158.40 205368 port 107 205368 unique_id port 205368 remote_ip 10.8.1.6 205369 username saeeddamghani 205369 mac 205369 bytes_out 0 205369 bytes_in 0 205369 station_ip 217.60.218.93 205369 port 107 205369 unique_id port 205369 remote_ip 10.8.1.66 205375 username hadibarzegar 205375 kill_reason Another user logged on this global unique id 205375 mac 205375 bytes_out 0 205375 bytes_in 0 205375 station_ip 5.120.115.115 205375 port 114 205375 unique_id port 205375 remote_ip 10.8.1.170 205380 username nilufarrajaei 205380 kill_reason Another user logged on this global unique id 205380 mac 205380 bytes_out 0 205380 bytes_in 0 205380 station_ip 37.129.53.49 205380 port 110 205380 unique_id port 205380 remote_ip 10.8.1.138 205386 username barzegar 205386 mac 205386 bytes_out 0 205386 bytes_in 0 205386 station_ip 5.119.158.40 205386 port 114 205386 unique_id port 205386 remote_ip 10.8.1.6 205389 username saeeddamghani 205389 mac 205389 bytes_out 3163470 205389 bytes_in 18141029 205389 station_ip 217.60.218.93 205344 bytes_in 0 205344 station_ip 5.119.16.150 205344 port 46 205344 unique_id port 205344 remote_ip 10.8.0.54 205345 username teymori5660 205345 mac 205345 bytes_out 0 205345 bytes_in 0 205345 station_ip 5.120.43.180 205345 port 112 205345 unique_id port 205347 username barzegar 205347 mac 205347 bytes_out 0 205347 bytes_in 0 205347 station_ip 5.119.158.40 205347 port 112 205347 unique_id port 205347 remote_ip 10.8.1.6 205350 username barzegar 205350 mac 205350 bytes_out 0 205350 bytes_in 0 205350 station_ip 5.119.158.40 205350 port 115 205350 unique_id port 205350 remote_ip 10.8.1.6 205352 username saeeddamghani 205352 mac 205352 bytes_out 13229 205352 bytes_in 13541 205352 station_ip 217.60.218.93 205352 port 114 205352 unique_id port 205352 remote_ip 10.8.1.66 205355 username mohammadjavad 205355 mac 205355 bytes_out 0 205355 bytes_in 0 205355 station_ip 83.123.104.100 205355 port 46 205355 unique_id port 205355 remote_ip 10.8.0.58 205358 username saeeddamghani 205358 mac 205358 bytes_out 0 205358 bytes_in 0 205358 station_ip 217.60.218.93 205358 port 108 205358 unique_id port 205358 remote_ip 10.8.1.66 205360 username barzegar 205360 mac 205360 bytes_out 3245 205360 bytes_in 5915 205360 station_ip 5.119.158.40 205360 port 108 205360 unique_id port 205360 remote_ip 10.8.1.6 205362 username barzegar 205362 mac 205362 bytes_out 6116 205362 bytes_in 7932 205362 station_ip 5.119.158.40 205362 port 53 205362 unique_id port 205362 remote_ip 10.8.0.14 205367 username kamali3 205367 mac 205367 bytes_out 401830 205367 bytes_in 4944164 205367 station_ip 5.119.139.189 205367 port 115 205367 unique_id port 205367 remote_ip 10.8.1.166 205370 username saeeddamghani 205370 unique_id port 205370 terminate_cause User-Request 205370 bytes_out 1718812 205370 bytes_in 26389180 205370 station_ip 217.60.218.93 205370 port 15730053 205370 nas_port_type Virtual 205370 remote_ip 5.5.5.26 205371 username farhad3 205371 mac 205371 bytes_out 1353815 205371 bytes_in 18719084 205371 station_ip 5.119.249.195 205371 port 108 205371 unique_id port 205371 remote_ip 10.8.1.38 205373 username barzegar 205373 mac 205373 bytes_out 0 205373 bytes_in 0 205373 station_ip 5.119.158.40 205373 port 108 205373 unique_id port 205373 remote_ip 10.8.1.6 205374 username sabaghnezhad 205374 mac 205374 bytes_out 0 205374 bytes_in 0 205374 station_ip 83.122.126.41 205374 port 46 205374 unique_id port 205374 remote_ip 10.8.0.18 205376 username mohammadjavad 205376 mac 205376 bytes_out 0 205376 bytes_in 0 205376 station_ip 83.123.104.100 205376 port 53 205376 unique_id port 205376 remote_ip 10.8.0.58 205378 username hadibarzegar 205378 mac 205378 bytes_out 0 205378 bytes_in 0 205378 station_ip 5.120.115.115 205378 port 114 205378 unique_id port 205379 username barzegar 205379 mac 205379 bytes_out 0 205379 bytes_in 0 205379 station_ip 5.119.158.40 205379 port 114 205379 unique_id port 205379 remote_ip 10.8.1.6 205388 username jafari 205388 kill_reason Another user logged on this global unique id 205388 mac 205388 bytes_out 0 205388 bytes_in 0 205388 station_ip 37.137.18.78 205388 port 104 205388 unique_id port 205390 username motamedi9772 205390 mac 205390 bytes_out 0 205390 bytes_in 0 205390 station_ip 37.129.79.180 205390 port 53 205390 unique_id port 205390 remote_ip 10.8.0.62 205395 username malekpoir 205395 mac 205395 bytes_out 0 205395 bytes_in 0 205395 station_ip 5.119.17.236 205395 port 88 205359 username jafari 205359 kill_reason Another user logged on this global unique id 205359 mac 205359 bytes_out 0 205359 bytes_in 0 205359 station_ip 37.137.18.78 205359 port 104 205359 unique_id port 205366 username jafari 205366 kill_reason Another user logged on this global unique id 205366 mac 205366 bytes_out 0 205366 bytes_in 0 205366 station_ip 37.137.18.78 205366 port 104 205366 unique_id port 205372 username mostafa_es78 205372 kill_reason Another user logged on this global unique id 205372 mac 205372 bytes_out 0 205372 bytes_in 0 205372 station_ip 2.181.245.82 205372 port 111 205372 unique_id port 205372 remote_ip 10.8.1.202 205377 username seyedrezaei2572 205377 mac 205377 bytes_out 0 205377 bytes_in 0 205377 station_ip 83.122.23.32 205377 port 45 205377 unique_id port 205381 username mohammadjavad 205381 mac 205381 bytes_out 0 205381 bytes_in 0 205381 station_ip 83.123.104.100 205381 port 46 205381 unique_id port 205381 remote_ip 10.8.0.58 205382 username jafari 205382 kill_reason Another user logged on this global unique id 205382 mac 205382 bytes_out 0 205382 bytes_in 0 205382 station_ip 37.137.18.78 205382 port 104 205382 unique_id port 205383 username amirzadeh1339 205383 unique_id port 205383 terminate_cause User-Request 205383 bytes_out 9326918 205383 bytes_in 146372342 205383 station_ip 37.27.11.18 205383 port 15730049 205383 nas_port_type Virtual 205383 remote_ip 5.5.5.32 205384 username teymori5660 205384 mac 205384 bytes_out 6617068 205384 bytes_in 43772729 205384 station_ip 5.120.43.180 205384 port 113 205384 unique_id port 205384 remote_ip 10.8.1.14 205385 username godarzi 205385 kill_reason Another user logged on this global unique id 205385 mac 205385 bytes_out 0 205385 bytes_in 0 205385 station_ip 5.202.98.177 205385 port 112 205385 unique_id port 205385 remote_ip 10.8.1.78 205387 username barzegar 205387 mac 205387 bytes_out 0 205387 bytes_in 0 205387 station_ip 5.119.158.40 205387 port 46 205387 unique_id port 205387 remote_ip 10.8.0.14 205391 username barzegar 205391 mac 205391 bytes_out 0 205391 bytes_in 0 205391 station_ip 5.119.158.40 205391 port 53 205391 unique_id port 205391 remote_ip 10.8.0.14 205394 username saeeddamghani 205394 mac 205394 bytes_out 0 205394 bytes_in 0 205394 station_ip 217.60.218.93 205394 port 107 205394 unique_id port 205394 remote_ip 10.8.1.66 205397 username nilufarrajaei 205397 mac 205397 bytes_out 0 205397 bytes_in 0 205397 station_ip 37.129.53.49 205397 port 110 205397 unique_id port 205402 username barzegar 205402 mac 205402 bytes_out 0 205402 bytes_in 0 205402 station_ip 5.119.158.40 205402 port 111 205402 unique_id port 205402 remote_ip 10.8.1.6 205405 username saeeddamghani 205405 mac 205405 bytes_out 2069901 205405 bytes_in 17090432 205405 station_ip 217.60.218.93 205405 port 88 205405 unique_id port 205405 remote_ip 10.8.1.66 205406 username rashidi4690 205406 mac 205406 bytes_out 2925816 205406 bytes_in 17405894 205406 station_ip 5.119.182.118 205406 port 113 205406 unique_id port 205406 remote_ip 10.8.1.158 205407 username farhad3 205407 mac 205407 bytes_out 5959662 205407 bytes_in 41421752 205407 station_ip 5.119.210.221 205407 port 108 205407 unique_id port 205407 remote_ip 10.8.1.38 205408 username farhad3 205408 mac 205408 bytes_out 86340 205408 bytes_in 237646 205408 station_ip 5.119.210.221 205408 port 108 205408 unique_id port 205408 remote_ip 10.8.1.38 205410 username ghaderpour6649 205410 mac 205410 bytes_out 0 205410 bytes_in 0 205410 station_ip 83.123.208.213 205410 port 54 205389 port 107 205389 unique_id port 205389 remote_ip 10.8.1.66 205392 username saeeddamghani 205392 mac 205392 bytes_out 33874 205392 bytes_in 20329 205392 station_ip 217.60.218.93 205392 port 107 205392 unique_id port 205392 remote_ip 10.8.1.66 205393 username mostafa_es78 205393 mac 205393 bytes_out 0 205393 bytes_in 0 205393 station_ip 2.181.245.82 205393 port 111 205393 unique_id port 205396 username saeeddamghani 205396 mac 205396 bytes_out 0 205396 bytes_in 0 205396 station_ip 217.60.218.93 205396 port 88 205396 unique_id port 205396 remote_ip 10.8.1.66 205400 username jafari 205400 mac 205400 bytes_out 0 205400 bytes_in 0 205400 station_ip 37.137.18.78 205400 port 104 205400 unique_id port 205403 username barzegar 205403 mac 205403 bytes_out 0 205403 bytes_in 0 205403 station_ip 5.119.158.40 205403 port 111 205403 unique_id port 205403 remote_ip 10.8.1.6 205409 username barzegar 205409 mac 205409 bytes_out 0 205409 bytes_in 0 205409 station_ip 5.119.158.40 205409 port 56 205409 unique_id port 205409 remote_ip 10.8.0.14 205414 username godarzi 205414 kill_reason Another user logged on this global unique id 205414 mac 205414 bytes_out 0 205414 bytes_in 0 205414 station_ip 5.202.98.177 205414 port 112 205414 unique_id port 205419 username nilufarrajaei 205419 kill_reason Another user logged on this global unique id 205419 mac 205419 bytes_out 0 205419 bytes_in 0 205419 station_ip 37.129.53.49 205419 port 111 205419 unique_id port 205422 username barzegar 205422 mac 205422 bytes_out 2469 205422 bytes_in 5477 205422 station_ip 5.119.161.219 205422 port 107 205422 unique_id port 205422 remote_ip 10.8.1.6 205423 username saeeddamghani 205423 kill_reason Maximum check online fails reached 205423 mac 205423 bytes_out 0 205423 bytes_in 0 205423 station_ip 217.60.218.93 205423 port 88 205423 unique_id port 205425 username mammad 205425 unique_id port 205425 terminate_cause User-Request 205425 bytes_out 642598 205425 bytes_in 11511066 205425 station_ip 5.233.64.198 205425 port 15730055 205425 nas_port_type Virtual 205425 remote_ip 5.5.5.255 205432 username yaghobi 205432 mac 205432 bytes_out 0 205432 bytes_in 0 205432 station_ip 83.123.73.56 205432 port 54 205432 unique_id port 205432 remote_ip 10.8.0.174 205434 username saeeddamghani 205434 mac 205434 bytes_out 0 205434 bytes_in 0 205434 station_ip 217.60.218.93 205434 port 102 205434 unique_id port 205434 remote_ip 10.8.1.66 205439 username saeeddamghani 205439 mac 205439 bytes_out 0 205439 bytes_in 0 205439 station_ip 217.60.218.93 205439 port 106 205439 unique_id port 205439 remote_ip 10.8.1.66 205441 username godarzi 205441 mac 205441 bytes_out 0 205441 bytes_in 0 205441 station_ip 5.202.98.177 205441 port 112 205441 unique_id port 205442 username saeeddamghani 205442 mac 205442 bytes_out 151407 205442 bytes_in 417226 205442 station_ip 217.60.218.93 205442 port 106 205442 unique_id port 205442 remote_ip 10.8.1.66 205443 username jafari 205443 kill_reason Another user logged on this global unique id 205443 mac 205443 bytes_out 0 205443 bytes_in 0 205443 station_ip 37.137.18.78 205443 port 104 205443 unique_id port 205444 username saeeddamghani 205444 kill_reason Maximum check online fails reached 205444 mac 205444 bytes_out 0 205444 bytes_in 0 205444 station_ip 217.60.218.93 205444 port 106 205444 unique_id port 205445 username pourshad 205445 kill_reason Another user logged on this global unique id 205445 mac 205445 bytes_out 0 205445 bytes_in 0 205445 station_ip 5.119.16.150 205445 port 109 205395 unique_id port 205398 username jafari 205398 kill_reason Another user logged on this global unique id 205398 mac 205398 bytes_out 0 205398 bytes_in 0 205398 station_ip 37.137.18.78 205398 port 104 205398 unique_id port 205399 username barzegar 205399 mac 205399 bytes_out 0 205399 bytes_in 0 205399 station_ip 5.119.158.40 205399 port 110 205399 unique_id port 205399 remote_ip 10.8.1.6 205401 username seyedrezaei2572 205401 mac 205401 bytes_out 0 205401 bytes_in 0 205401 station_ip 83.122.66.228 205401 port 55 205401 unique_id port 205401 remote_ip 10.8.0.186 205404 username nilufarrajaei 205404 mac 205404 bytes_out 1220093 205404 bytes_in 14818487 205404 station_ip 37.129.53.49 205404 port 107 205404 unique_id port 205404 remote_ip 10.8.1.138 205411 username saeeddamghani 205411 mac 205411 bytes_out 62271 205411 bytes_in 94283 205411 station_ip 217.60.218.93 205411 port 88 205411 unique_id port 205411 remote_ip 10.8.1.66 205413 username jafari 205413 kill_reason Another user logged on this global unique id 205413 mac 205413 bytes_out 0 205413 bytes_in 0 205413 station_ip 37.137.18.78 205413 port 104 205413 unique_id port 205413 remote_ip 10.8.1.126 205416 username nilufarrajaei 205416 kill_reason Another user logged on this global unique id 205416 mac 205416 bytes_out 0 205416 bytes_in 0 205416 station_ip 37.129.53.49 205416 port 111 205416 unique_id port 205416 remote_ip 10.8.1.138 205418 username barzegar 205418 mac 205418 bytes_out 2159 205418 bytes_in 5265 205418 station_ip 5.119.158.40 205418 port 106 205418 unique_id port 205418 remote_ip 10.8.1.6 205421 username saeeddamghani 205421 mac 205421 bytes_out 1129407 205421 bytes_in 5593033 205421 station_ip 217.60.218.93 205421 port 88 205421 unique_id port 205421 remote_ip 10.8.1.66 205424 username jafari 205424 kill_reason Another user logged on this global unique id 205424 mac 205424 bytes_out 0 205424 bytes_in 0 205424 station_ip 37.137.18.78 205424 port 104 205424 unique_id port 205428 username saeeddamghani 205428 mac 205428 bytes_out 138114 205428 bytes_in 795046 205428 station_ip 217.60.218.93 205428 port 107 205428 unique_id port 205428 remote_ip 10.8.1.66 205430 username rahim 205430 mac 205430 bytes_out 0 205430 bytes_in 0 205430 station_ip 5.120.3.58 205430 port 57 205430 unique_id port 205430 remote_ip 10.8.0.230 205433 username saeeddamghani 205433 mac 205433 bytes_out 0 205433 bytes_in 0 205433 station_ip 217.60.218.93 205433 port 102 205433 unique_id port 205433 remote_ip 10.8.1.66 205436 username rahim 205436 mac 205436 bytes_out 0 205436 bytes_in 0 205436 station_ip 5.120.3.58 205436 port 102 205436 unique_id port 205436 remote_ip 10.8.1.90 205437 username alirezaza 205437 unique_id port 205437 terminate_cause User-Request 205437 bytes_out 0 205437 bytes_in 0 205437 station_ip 5.119.248.93 205437 port 15730057 205437 nas_port_type Virtual 205437 remote_ip 5.5.5.3 205440 username barzegar 205440 mac 205440 bytes_out 0 205440 bytes_in 0 205440 station_ip 5.119.161.219 205440 port 56 205440 unique_id port 205440 remote_ip 10.8.0.14 205448 username alipour1506 205448 kill_reason Another user logged on this global unique id 205448 mac 205448 bytes_out 0 205448 bytes_in 0 205448 station_ip 78.39.26.163 205448 port 103 205448 unique_id port 205456 username farhad3 205456 mac 205456 bytes_out 136134 205456 bytes_in 495190 205456 station_ip 5.119.210.221 205456 port 102 205456 unique_id port 205456 remote_ip 10.8.1.38 205457 username barzegar 205457 mac 205457 bytes_out 0 205410 unique_id port 205410 remote_ip 10.8.0.38 205412 username mostafa_es78 205412 mac 205412 bytes_out 893811 205412 bytes_in 5263142 205412 station_ip 178.236.35.96 205412 port 107 205412 unique_id port 205412 remote_ip 10.8.1.202 205415 username aminvpn 205415 mac 205415 bytes_out 12727333 205415 bytes_in 38601391 205415 station_ip 151.238.240.180 205415 port 106 205415 unique_id port 205415 remote_ip 10.8.1.130 205417 username barzegar 205417 mac 205417 bytes_out 0 205417 bytes_in 0 205417 station_ip 5.119.158.40 205417 port 106 205417 unique_id port 205417 remote_ip 10.8.1.6 205420 username rashidi4690 205420 mac 205420 bytes_out 12065 205420 bytes_in 41822 205420 station_ip 5.119.182.118 205420 port 106 205420 unique_id port 205420 remote_ip 10.8.1.158 205426 username rashidi4690 205426 mac 205426 bytes_out 42559 205426 bytes_in 168568 205426 station_ip 5.119.182.118 205426 port 106 205426 unique_id port 205426 remote_ip 10.8.1.158 205427 username nilufarrajaei 205427 kill_reason Another user logged on this global unique id 205427 mac 205427 bytes_out 0 205427 bytes_in 0 205427 station_ip 37.129.53.49 205427 port 111 205427 unique_id port 205429 username hatami 205429 mac 205429 bytes_out 5613397 205429 bytes_in 37257329 205429 station_ip 151.235.105.117 205429 port 102 205429 unique_id port 205429 remote_ip 10.8.1.26 205431 username kharazmi2920 205431 mac 205431 bytes_out 0 205431 bytes_in 0 205431 station_ip 83.122.224.9 205431 port 46 205431 unique_id port 205431 remote_ip 10.8.0.34 205435 username barzegar 205435 mac 205435 bytes_out 0 205435 bytes_in 0 205435 station_ip 5.119.161.219 205435 port 102 205435 unique_id port 205435 remote_ip 10.8.1.6 205438 username ghaderpour6649 205438 mac 205438 bytes_out 0 205438 bytes_in 0 205438 station_ip 83.123.208.213 205438 port 56 205438 unique_id port 205438 remote_ip 10.8.0.38 205447 username milan 205447 kill_reason Another user logged on this global unique id 205447 mac 205447 bytes_out 0 205447 bytes_in 0 205447 station_ip 5.120.143.192 205447 port 43 205447 unique_id port 205447 remote_ip 10.8.0.198 205449 username barzegar 205449 mac 205449 bytes_out 0 205449 bytes_in 0 205449 station_ip 5.119.161.219 205449 port 112 205449 unique_id port 205449 remote_ip 10.8.1.6 205450 username barzegar 205450 kill_reason Maximum check online fails reached 205450 mac 205450 bytes_out 0 205450 bytes_in 0 205450 station_ip 5.119.161.219 205450 port 112 205450 unique_id port 205453 username rahim 205453 mac 205453 bytes_out 4192541 205453 bytes_in 39662129 205453 station_ip 5.120.3.58 205453 port 102 205453 unique_id port 205453 remote_ip 10.8.1.90 205455 username saeeddamghani 205455 mac 205455 bytes_out 0 205455 bytes_in 0 205455 station_ip 217.60.218.93 205455 port 108 205455 unique_id port 205455 remote_ip 10.8.1.66 205458 username farhad3 205458 mac 205458 bytes_out 0 205458 bytes_in 0 205458 station_ip 5.119.210.221 205458 port 102 205458 unique_id port 205458 remote_ip 10.8.1.38 205459 username jafari 205459 kill_reason Another user logged on this global unique id 205459 mac 205459 bytes_out 0 205459 bytes_in 0 205459 station_ip 37.137.18.78 205459 port 104 205459 unique_id port 205461 username farhad3 205461 mac 205461 bytes_out 0 205461 bytes_in 0 205461 station_ip 5.119.210.221 205461 port 56 205461 unique_id port 205461 remote_ip 10.8.0.46 205467 username hatami 205467 mac 205467 bytes_out 0 205467 bytes_in 0 205467 station_ip 151.235.105.117 205445 unique_id port 205445 remote_ip 10.8.1.58 205446 username saeeddamghani 205446 mac 205446 bytes_out 0 205446 bytes_in 0 205446 station_ip 217.60.218.93 205446 port 108 205446 unique_id port 205446 remote_ip 10.8.1.66 205451 username saeeddamghani 205451 mac 205451 bytes_out 298643 205451 bytes_in 3718288 205451 station_ip 217.60.218.93 205451 port 108 205451 unique_id port 205451 remote_ip 10.8.1.66 205452 username motamedi9772 205452 kill_reason Another user logged on this global unique id 205452 mac 205452 bytes_out 0 205452 bytes_in 0 205452 station_ip 37.129.62.152 205452 port 54 205452 unique_id port 205452 remote_ip 10.8.0.62 205454 username rashidi4690 205454 mac 205454 bytes_out 1017269 205454 bytes_in 5617477 205454 station_ip 5.119.182.118 205454 port 107 205454 unique_id port 205454 remote_ip 10.8.1.158 205462 username milan 205462 kill_reason Another user logged on this global unique id 205462 mac 205462 bytes_out 0 205462 bytes_in 0 205462 station_ip 5.120.143.192 205462 port 43 205462 unique_id port 205466 username hamid1430 205466 kill_reason Another user logged on this global unique id 205466 mac 205466 bytes_out 0 205466 bytes_in 0 205466 station_ip 37.129.115.88 205466 port 45 205466 unique_id port 205466 remote_ip 10.8.0.110 205477 username khademi 205477 kill_reason Another user logged on this global unique id 205477 mac 205477 bytes_out 0 205477 bytes_in 0 205477 station_ip 83.123.118.12 205477 port 51 205477 unique_id port 205479 username pourshad 205479 mac 205479 bytes_out 0 205479 bytes_in 0 205479 station_ip 5.119.16.150 205479 port 109 205479 unique_id port 205484 username saeeddamghani 205484 mac 205484 bytes_out 2397104 205484 bytes_in 13012070 205484 station_ip 217.60.218.93 205484 port 102 205484 unique_id port 205484 remote_ip 10.8.1.66 205486 username nilufarrajaei 205486 mac 205486 bytes_out 0 205486 bytes_in 0 205486 station_ip 37.129.53.49 205486 port 111 205486 unique_id port 205488 username seyedrezaei2572 205488 mac 205488 bytes_out 0 205488 bytes_in 0 205488 station_ip 83.122.66.228 205488 port 56 205488 unique_id port 205488 remote_ip 10.8.0.186 205492 username farhad3 205492 mac 205492 bytes_out 0 205492 bytes_in 0 205492 station_ip 5.119.210.221 205492 port 56 205492 unique_id port 205492 remote_ip 10.8.0.46 205495 username farhad3 205495 mac 205495 bytes_out 0 205495 bytes_in 0 205495 station_ip 5.120.159.164 205495 port 104 205495 unique_id port 205495 remote_ip 10.8.1.38 205496 username farhad3 205496 mac 205496 bytes_out 0 205496 bytes_in 0 205496 station_ip 5.120.159.164 205496 port 104 205496 unique_id port 205496 remote_ip 10.8.1.38 205500 username motamedi9772 205500 mac 205500 bytes_out 0 205500 bytes_in 0 205500 station_ip 37.129.62.152 205500 port 54 205500 unique_id port 205504 username sabaghnezhad 205504 mac 205504 bytes_out 0 205504 bytes_in 0 205504 station_ip 83.122.126.41 205504 port 53 205504 unique_id port 205504 remote_ip 10.8.0.18 205508 username mammad 205508 unique_id port 205508 terminate_cause User-Request 205508 bytes_out 2920928 205508 bytes_in 63039356 205508 station_ip 5.233.64.198 205508 port 15730060 205508 nas_port_type Virtual 205508 remote_ip 5.5.5.255 205510 username malekpoir 205510 mac 205510 bytes_out 3815270 205510 bytes_in 28769501 205510 station_ip 5.119.17.236 205510 port 110 205510 unique_id port 205510 remote_ip 10.8.1.70 205513 username barzegar 205513 mac 205513 bytes_out 0 205513 bytes_in 0 205513 station_ip 5.119.161.219 205457 bytes_in 0 205457 station_ip 5.119.161.219 205457 port 107 205457 unique_id port 205457 remote_ip 10.8.1.6 205460 username mammad 205460 unique_id port 205460 terminate_cause User-Request 205460 bytes_out 3466038 205460 bytes_in 31437661 205460 station_ip 5.233.64.198 205460 port 15730056 205460 nas_port_type Virtual 205460 remote_ip 5.5.5.255 205463 username barzegar 205463 mac 205463 bytes_out 0 205463 bytes_in 0 205463 station_ip 5.119.161.219 205463 port 107 205463 unique_id port 205463 remote_ip 10.8.1.6 205464 username saeeddamghani 205464 mac 205464 bytes_out 0 205464 bytes_in 0 205464 station_ip 217.60.218.93 205464 port 57 205464 unique_id port 205464 remote_ip 10.8.0.26 205465 username saeeddamghani 205465 mac 205465 bytes_out 0 205465 bytes_in 0 205465 station_ip 217.60.218.93 205465 port 57 205465 unique_id port 205465 remote_ip 10.8.0.26 205468 username jafari 205468 mac 205468 bytes_out 0 205468 bytes_in 0 205468 station_ip 37.137.18.78 205468 port 104 205468 unique_id port 205470 username motamedi9772 205470 kill_reason Another user logged on this global unique id 205470 mac 205470 bytes_out 0 205470 bytes_in 0 205470 station_ip 37.129.62.152 205470 port 54 205470 unique_id port 205472 username khademi 205472 kill_reason Another user logged on this global unique id 205472 mac 205472 bytes_out 0 205472 bytes_in 0 205472 station_ip 83.123.118.12 205472 port 51 205472 unique_id port 205472 remote_ip 10.8.0.226 205473 username barzegar 205473 mac 205473 bytes_out 0 205473 bytes_in 0 205473 station_ip 5.119.161.219 205473 port 104 205473 unique_id port 205473 remote_ip 10.8.1.6 205474 username iranmanesh4443 205474 mac 205474 bytes_out 0 205474 bytes_in 0 205474 station_ip 5.120.53.217 205474 port 56 205474 unique_id port 205474 remote_ip 10.8.0.74 205475 username milan 205475 kill_reason Another user logged on this global unique id 205475 mac 205475 bytes_out 0 205475 bytes_in 0 205475 station_ip 5.120.143.192 205475 port 43 205475 unique_id port 205476 username barzegar 205476 mac 205476 bytes_out 3124 205476 bytes_in 6104 205476 station_ip 5.119.161.219 205476 port 107 205476 unique_id port 205476 remote_ip 10.8.1.6 205478 username barzegar 205478 mac 205478 bytes_out 0 205478 bytes_in 0 205478 station_ip 5.119.161.219 205478 port 107 205478 unique_id port 205478 remote_ip 10.8.1.6 205482 username pourshad 205482 mac 205482 bytes_out 0 205482 bytes_in 0 205482 station_ip 5.119.16.150 205482 port 56 205482 unique_id port 205482 remote_ip 10.8.0.54 205491 username mostafa_es78 205491 mac 205491 bytes_out 2160062 205491 bytes_in 15537654 205491 station_ip 178.236.35.96 205491 port 104 205491 unique_id port 205491 remote_ip 10.8.1.202 205497 username saeeddamghani 205497 mac 205497 bytes_out 43974 205497 bytes_in 52247 205497 station_ip 217.60.218.93 205497 port 102 205497 unique_id port 205497 remote_ip 10.8.1.66 205498 username barzegar 205498 mac 205498 bytes_out 0 205498 bytes_in 0 205498 station_ip 5.119.161.219 205498 port 102 205498 unique_id port 205498 remote_ip 10.8.1.6 205503 username ghaderpour6649 205503 mac 205503 bytes_out 0 205503 bytes_in 0 205503 station_ip 83.122.135.170 205503 port 54 205503 unique_id port 205503 remote_ip 10.8.0.38 205506 username farhad3 205506 mac 205506 bytes_out 47251 205506 bytes_in 117637 205506 station_ip 5.120.159.164 205506 port 102 205506 unique_id port 205506 remote_ip 10.8.1.38 205509 username houshang 205509 mac 205509 bytes_out 0 205467 port 102 205467 unique_id port 205467 remote_ip 10.8.1.26 205469 username amirzadeh1339 205469 unique_id port 205469 terminate_cause User-Request 205469 bytes_out 18415661 205469 bytes_in 436644990 205469 station_ip 37.27.11.18 205469 port 15730054 205469 nas_port_type Virtual 205469 remote_ip 5.5.5.32 205471 username ghaderpour6649 205471 mac 205471 bytes_out 0 205471 bytes_in 0 205471 station_ip 83.123.208.213 205471 port 46 205471 unique_id port 205471 remote_ip 10.8.0.38 205480 username yarmohamadi7916 205480 mac 205480 bytes_out 0 205480 bytes_in 0 205480 station_ip 5.119.70.246 205480 port 92 205480 unique_id port 205481 username khademi 205481 kill_reason Another user logged on this global unique id 205481 mac 205481 bytes_out 0 205481 bytes_in 0 205481 station_ip 83.123.118.12 205481 port 51 205481 unique_id port 205483 username seyedrezaei2572 205483 mac 205483 bytes_out 0 205483 bytes_in 0 205483 station_ip 83.122.66.228 205483 port 55 205483 unique_id port 205483 remote_ip 10.8.0.186 205485 username saeeddamghani 205485 mac 205485 bytes_out 0 205485 bytes_in 0 205485 station_ip 217.60.218.93 205485 port 102 205485 unique_id port 205485 remote_ip 10.8.1.66 205487 username farhad3 205487 mac 205487 bytes_out 98605 205487 bytes_in 519700 205487 station_ip 5.119.210.221 205487 port 108 205487 unique_id port 205487 remote_ip 10.8.1.38 205489 username farhad3 205489 mac 205489 bytes_out 0 205489 bytes_in 0 205489 station_ip 5.119.210.221 205489 port 108 205489 unique_id port 205489 remote_ip 10.8.1.38 205490 username farhad3 205490 mac 205490 bytes_out 0 205490 bytes_in 0 205490 station_ip 5.119.210.221 205490 port 56 205490 unique_id port 205490 remote_ip 10.8.0.46 205493 username saeeddamghani 205493 mac 205493 bytes_out 1365603 205493 bytes_in 5359937 205493 station_ip 217.60.218.93 205493 port 102 205493 unique_id port 205493 remote_ip 10.8.1.66 205494 username rahim 205494 mac 205494 bytes_out 0 205494 bytes_in 0 205494 station_ip 5.120.3.58 205494 port 102 205494 unique_id port 205494 remote_ip 10.8.1.90 205499 username pourshad 205499 mac 205499 bytes_out 525698 205499 bytes_in 15299414 205499 station_ip 5.119.16.150 205499 port 107 205499 unique_id port 205499 remote_ip 10.8.1.58 205501 username milan 205501 kill_reason Another user logged on this global unique id 205501 mac 205501 bytes_out 0 205501 bytes_in 0 205501 station_ip 5.120.143.192 205501 port 43 205501 unique_id port 205502 username houshang 205502 mac 205502 bytes_out 0 205502 bytes_in 0 205502 station_ip 5.120.109.162 205502 port 46 205502 unique_id port 205502 remote_ip 10.8.0.50 205505 username farhad3 205505 mac 205505 bytes_out 535263 205505 bytes_in 5741098 205505 station_ip 5.120.159.164 205505 port 102 205505 unique_id port 205505 remote_ip 10.8.1.38 205507 username barzegar 205507 mac 205507 bytes_out 0 205507 bytes_in 0 205507 station_ip 5.119.161.219 205507 port 102 205507 unique_id port 205507 remote_ip 10.8.1.6 205511 username milan 205511 kill_reason Another user logged on this global unique id 205511 mac 205511 bytes_out 0 205511 bytes_in 0 205511 station_ip 5.120.143.192 205511 port 43 205511 unique_id port 205512 username motamedi9772 205512 kill_reason Another user logged on this global unique id 205512 mac 205512 bytes_out 0 205512 bytes_in 0 205512 station_ip 37.129.62.152 205512 port 46 205512 unique_id port 205512 remote_ip 10.8.0.62 205515 username khademi 205515 kill_reason Another user logged on this global unique id 205515 mac 205509 bytes_in 0 205509 station_ip 5.120.109.162 205509 port 56 205509 unique_id port 205509 remote_ip 10.8.0.50 205514 username nilufarrajaei 205514 mac 205514 bytes_out 1846102 205514 bytes_in 16295451 205514 station_ip 37.129.53.49 205514 port 109 205514 unique_id port 205514 remote_ip 10.8.1.138 205516 username motamedi9772 205516 kill_reason Another user logged on this global unique id 205516 mac 205516 bytes_out 0 205516 bytes_in 0 205516 station_ip 37.129.62.152 205516 port 46 205516 unique_id port 205517 username barzegar 205517 mac 205517 bytes_out 0 205517 bytes_in 0 205517 station_ip 5.119.161.219 205517 port 107 205517 unique_id port 205517 remote_ip 10.8.1.6 205518 username khademi 205518 kill_reason Another user logged on this global unique id 205518 mac 205518 bytes_out 0 205518 bytes_in 0 205518 station_ip 83.123.118.12 205518 port 51 205518 unique_id port 205524 username yaghobi 205524 mac 205524 bytes_out 0 205524 bytes_in 0 205524 station_ip 83.123.56.40 205524 port 55 205524 unique_id port 205524 remote_ip 10.8.0.174 205525 username motamedi9772 205525 kill_reason Another user logged on this global unique id 205525 mac 205525 bytes_out 0 205525 bytes_in 0 205525 station_ip 37.129.62.152 205525 port 46 205525 unique_id port 205527 username mohammadjavad 205527 mac 205527 bytes_out 0 205527 bytes_in 0 205527 station_ip 83.123.15.212 205527 port 57 205527 unique_id port 205527 remote_ip 10.8.0.58 205530 username barzegar 205530 mac 205530 bytes_out 0 205530 bytes_in 0 205530 station_ip 5.119.161.219 205530 port 51 205530 unique_id port 205530 remote_ip 10.8.0.14 205531 username motamedi9772 205531 mac 205531 bytes_out 0 205531 bytes_in 0 205531 station_ip 37.129.62.152 205531 port 46 205531 unique_id port 205540 username mammad 205540 unique_id port 205540 terminate_cause Lost-Carrier 205540 bytes_out 1838506 205540 bytes_in 25065813 205540 station_ip 5.233.64.198 205540 port 15730062 205540 nas_port_type Virtual 205540 remote_ip 5.5.5.255 205544 username mammad 205544 unique_id port 205544 terminate_cause Lost-Carrier 205544 bytes_out 2529 205544 bytes_in 22644 205544 station_ip 2.183.253.172 205544 port 15730064 205544 nas_port_type Virtual 205544 remote_ip 5.5.5.255 205545 username rashidi4690 205545 mac 205545 bytes_out 23754 205545 bytes_in 27093 205545 station_ip 5.119.182.118 205545 port 92 205545 unique_id port 205545 remote_ip 10.8.1.158 205550 username naeimeh 205550 mac 205550 bytes_out 0 205550 bytes_in 0 205550 station_ip 83.122.185.0 205550 port 53 205550 unique_id port 205550 remote_ip 10.8.0.202 205553 username rashidi4690 205553 mac 205553 bytes_out 0 205553 bytes_in 0 205553 station_ip 5.119.182.118 205553 port 92 205553 unique_id port 205553 remote_ip 10.8.1.158 205556 username milan 205556 kill_reason Another user logged on this global unique id 205556 mac 205556 bytes_out 0 205556 bytes_in 0 205556 station_ip 5.120.143.192 205556 port 43 205556 unique_id port 205557 username aminvpn 205557 unique_id port 205557 terminate_cause Lost-Carrier 205557 bytes_out 32343293 205557 bytes_in 972609191 205557 station_ip 31.57.127.177 205557 port 15730052 205557 nas_port_type Virtual 205557 remote_ip 5.5.5.9 205559 username rashidi4690 205559 mac 205559 bytes_out 520395 205559 bytes_in 2959842 205559 station_ip 5.120.159.12 205559 port 92 205559 unique_id port 205559 remote_ip 10.8.1.158 205560 username motamedi9772 205560 kill_reason Another user logged on this global unique id 205560 mac 205560 bytes_out 0 205560 bytes_in 0 205560 station_ip 37.129.62.152 205560 port 107 205513 port 104 205513 unique_id port 205513 remote_ip 10.8.1.6 205519 username farhad3 205519 mac 205519 bytes_out 595365 205519 bytes_in 2921050 205519 station_ip 5.120.159.164 205519 port 102 205519 unique_id port 205519 remote_ip 10.8.1.38 205521 username barzegar 205521 mac 205521 bytes_out 13278 205521 bytes_in 105120 205521 station_ip 5.119.161.219 205521 port 107 205521 unique_id port 205521 remote_ip 10.8.1.6 205522 username mohammadjavad 205522 mac 205522 bytes_out 0 205522 bytes_in 0 205522 station_ip 83.123.15.212 205522 port 54 205522 unique_id port 205522 remote_ip 10.8.0.58 205523 username khademi 205523 kill_reason Another user logged on this global unique id 205523 mac 205523 bytes_out 0 205523 bytes_in 0 205523 station_ip 83.123.118.12 205523 port 51 205523 unique_id port 205526 username khademi 205526 mac 205526 bytes_out 0 205526 bytes_in 0 205526 station_ip 83.123.118.12 205526 port 51 205526 unique_id port 205529 username barzegar 205529 mac 205529 bytes_out 0 205529 bytes_in 0 205529 station_ip 5.119.161.219 205529 port 51 205529 unique_id port 205529 remote_ip 10.8.0.14 205532 username pourshad 205532 mac 205532 bytes_out 0 205532 bytes_in 0 205532 station_ip 5.119.16.150 205532 port 53 205532 unique_id port 205532 remote_ip 10.8.0.54 205533 username motamedi9772 205533 mac 205533 bytes_out 0 205533 bytes_in 0 205533 station_ip 37.129.62.152 205533 port 51 205533 unique_id port 205533 remote_ip 10.8.0.62 205536 username khalili2 205536 kill_reason Another user logged on this global unique id 205536 mac 205536 bytes_out 0 205536 bytes_in 0 205536 station_ip 5.119.219.230 205536 port 104 205536 unique_id port 205541 username pourshad 205541 mac 205541 bytes_out 0 205541 bytes_in 0 205541 station_ip 5.120.112.60 205541 port 46 205541 unique_id port 205541 remote_ip 10.8.0.54 205542 username farhad3 205542 mac 205542 bytes_out 3629347 205542 bytes_in 34957316 205542 station_ip 5.120.159.164 205542 port 102 205542 unique_id port 205542 remote_ip 10.8.1.38 205546 username khalili2 205546 mac 205546 bytes_out 0 205546 bytes_in 0 205546 station_ip 5.119.219.230 205546 port 104 205546 unique_id port 205547 username ghaderpour6649 205547 mac 205547 bytes_out 0 205547 bytes_in 0 205547 station_ip 113.203.16.127 205547 port 51 205547 unique_id port 205547 remote_ip 10.8.0.38 205549 username naeimeh 205549 mac 205549 bytes_out 0 205549 bytes_in 0 205549 station_ip 37.129.107.112 205549 port 46 205549 unique_id port 205549 remote_ip 10.8.0.202 205552 username ghaderpour6649 205552 mac 205552 bytes_out 0 205552 bytes_in 0 205552 station_ip 113.203.16.127 205552 port 46 205552 unique_id port 205552 remote_ip 10.8.0.38 205554 username naeimeh 205554 mac 205554 bytes_out 0 205554 bytes_in 0 205554 station_ip 83.122.185.0 205554 port 54 205554 unique_id port 205554 remote_ip 10.8.0.202 205558 username mostafa_es78 205558 unique_id port 205558 terminate_cause User-Request 205558 bytes_out 1384433 205558 bytes_in 14008412 205558 station_ip 178.236.35.96 205558 port 15730066 205558 nas_port_type Virtual 205558 remote_ip 5.5.5.247 205561 username kamali3 205561 mac 205561 bytes_out 125048 205561 bytes_in 157796 205561 station_ip 5.119.71.16 205561 port 92 205561 unique_id port 205561 remote_ip 10.8.1.166 205563 username barzegar 205563 mac 205563 bytes_out 0 205563 bytes_in 0 205563 station_ip 5.119.161.219 205563 port 92 205563 unique_id port 205563 remote_ip 10.8.1.6 205515 bytes_out 0 205515 bytes_in 0 205515 station_ip 83.123.118.12 205515 port 51 205515 unique_id port 205520 username khalili2 205520 kill_reason Another user logged on this global unique id 205520 mac 205520 bytes_out 0 205520 bytes_in 0 205520 station_ip 5.119.219.230 205520 port 104 205520 unique_id port 205520 remote_ip 10.8.1.18 205528 username khalili2 205528 kill_reason Another user logged on this global unique id 205528 mac 205528 bytes_out 0 205528 bytes_in 0 205528 station_ip 5.119.219.230 205528 port 104 205528 unique_id port 205534 username pourshad 205534 mac 205534 bytes_out 0 205534 bytes_in 0 205534 station_ip 5.120.112.60 205534 port 46 205534 unique_id port 205534 remote_ip 10.8.0.54 205535 username ghaderpour6649 205535 mac 205535 bytes_out 0 205535 bytes_in 0 205535 station_ip 113.203.16.127 205535 port 56 205535 unique_id port 205535 remote_ip 10.8.0.38 205537 username naeimeh 205537 mac 205537 bytes_out 0 205537 bytes_in 0 205537 station_ip 37.129.36.58 205537 port 46 205537 unique_id port 205537 remote_ip 10.8.0.202 205538 username barzegar 205538 mac 205538 bytes_out 0 205538 bytes_in 0 205538 station_ip 5.119.161.219 205538 port 108 205538 unique_id port 205538 remote_ip 10.8.1.6 205539 username yarmohamadi7916 205539 mac 205539 bytes_out 3039439 205539 bytes_in 10456657 205539 station_ip 5.119.70.246 205539 port 92 205539 unique_id port 205539 remote_ip 10.8.1.154 205543 username pourshad 205543 mac 205543 bytes_out 2657 205543 bytes_in 4546 205543 station_ip 5.120.112.60 205543 port 92 205543 unique_id port 205543 remote_ip 10.8.1.58 205548 username pourshad 205548 mac 205548 bytes_out 2398362 205548 bytes_in 475521 205548 station_ip 5.120.112.60 205548 port 92 205548 unique_id port 205548 remote_ip 10.8.1.58 205551 username farhad3 205551 mac 205551 bytes_out 348007 205551 bytes_in 860076 205551 station_ip 5.120.159.164 205551 port 102 205551 unique_id port 205551 remote_ip 10.8.1.38 205555 username rashidi4690 205555 mac 205555 bytes_out 0 205555 bytes_in 0 205555 station_ip 5.119.236.98 205555 port 102 205555 unique_id port 205555 remote_ip 10.8.1.158 205562 username milan 205562 kill_reason Another user logged on this global unique id 205562 mac 205562 bytes_out 0 205562 bytes_in 0 205562 station_ip 5.120.143.192 205562 port 43 205562 unique_id port 205565 username mammad 205565 unique_id port 205565 terminate_cause User-Request 205565 bytes_out 2122844 205565 bytes_in 28704220 205565 station_ip 2.183.245.253 205565 port 15730065 205565 nas_port_type Virtual 205565 remote_ip 5.5.5.255 205567 username ghaderpour6649 205567 mac 205567 bytes_out 0 205567 bytes_in 0 205567 station_ip 113.203.16.127 205567 port 46 205567 unique_id port 205567 remote_ip 10.8.0.38 205570 username amirzadeh1339 205570 unique_id port 205570 terminate_cause User-Request 205570 bytes_out 7175374 205570 bytes_in 51386334 205570 station_ip 37.27.11.18 205570 port 15730059 205570 nas_port_type Virtual 205570 remote_ip 5.5.5.32 205571 username motamedi9772 205571 mac 205571 bytes_out 0 205571 bytes_in 0 205571 station_ip 37.129.62.152 205571 port 107 205571 unique_id port 205574 username motamedi9772 205574 mac 205574 bytes_out 0 205574 bytes_in 0 205574 station_ip 37.129.62.152 205574 port 56 205574 unique_id port 205574 remote_ip 10.8.0.62 205575 username motamedi9772 205575 mac 205575 bytes_out 0 205575 bytes_in 0 205575 station_ip 37.129.62.152 205575 port 56 205575 unique_id port 205575 remote_ip 10.8.0.62 205578 username fezealinaghi 205560 unique_id port 205560 remote_ip 10.8.1.198 205566 username yaghobi 205566 mac 205566 bytes_out 0 205566 bytes_in 0 205566 station_ip 83.123.88.36 205566 port 55 205566 unique_id port 205566 remote_ip 10.8.0.174 205568 username barzegar 205568 mac 205568 bytes_out 0 205568 bytes_in 0 205568 station_ip 5.119.161.219 205568 port 55 205568 unique_id port 205568 remote_ip 10.8.0.14 205576 username aminvpn 205576 mac 205576 bytes_out 0 205576 bytes_in 0 205576 station_ip 37.129.130.83 205576 port 58 205576 unique_id port 205576 remote_ip 10.8.0.206 205579 username milan 205579 kill_reason Another user logged on this global unique id 205579 mac 205579 bytes_out 0 205579 bytes_in 0 205579 station_ip 5.120.143.192 205579 port 43 205579 unique_id port 205584 username rashidi4690 205584 mac 205584 bytes_out 0 205584 bytes_in 0 205584 station_ip 5.120.159.12 205584 port 102 205584 unique_id port 205586 username ghaderpour6649 205586 mac 205586 bytes_out 0 205586 bytes_in 0 205586 station_ip 113.203.16.127 205586 port 57 205586 unique_id port 205586 remote_ip 10.8.0.38 205587 username barzegar 205587 kill_reason Maximum check online fails reached 205587 mac 205587 bytes_out 0 205587 bytes_in 0 205587 station_ip 5.119.161.219 205587 port 92 205587 unique_id port 205591 username mosi 205591 kill_reason Another user logged on this global unique id 205591 mac 205591 bytes_out 0 205591 bytes_in 0 205591 station_ip 151.235.106.19 205591 port 102 205591 unique_id port 205591 remote_ip 10.8.1.118 205592 username mirzaei6046 205592 kill_reason Another user logged on this global unique id 205592 mac 205592 bytes_out 0 205592 bytes_in 0 205592 station_ip 5.119.16.160 205592 port 55 205592 unique_id port 205592 remote_ip 10.8.0.114 205593 username fezealinaghi 205593 mac 205593 bytes_out 0 205593 bytes_in 0 205593 station_ip 37.129.202.130 205593 port 54 205593 unique_id port 205596 username mammad 205596 unique_id port 205596 terminate_cause User-Request 205596 bytes_out 1216033 205596 bytes_in 23770054 205596 station_ip 2.183.245.253 205596 port 15730068 205596 nas_port_type Virtual 205596 remote_ip 5.5.5.254 205597 username mosi 205597 kill_reason Another user logged on this global unique id 205597 mac 205597 bytes_out 0 205597 bytes_in 0 205597 station_ip 151.235.106.19 205597 port 102 205597 unique_id port 205598 username mirzaei6046 205598 kill_reason Another user logged on this global unique id 205598 mac 205598 bytes_out 0 205598 bytes_in 0 205598 station_ip 5.119.16.160 205598 port 55 205598 unique_id port 205599 username farhad3 205599 mac 205599 bytes_out 0 205599 bytes_in 0 205599 station_ip 5.120.165.123 205599 port 104 205599 unique_id port 205599 remote_ip 10.8.1.38 205600 username farhad3 205600 mac 205600 bytes_out 354255 205600 bytes_in 3375074 205600 station_ip 5.120.165.123 205600 port 104 205600 unique_id port 205600 remote_ip 10.8.1.38 205601 username mosi 205601 kill_reason Another user logged on this global unique id 205601 mac 205601 bytes_out 0 205601 bytes_in 0 205601 station_ip 151.235.106.19 205601 port 102 205601 unique_id port 205603 username barzegar 205603 mac 205603 bytes_out 0 205603 bytes_in 0 205603 station_ip 5.119.161.219 205603 port 53 205603 unique_id port 205603 remote_ip 10.8.0.14 205604 username mammad 205604 unique_id port 205604 terminate_cause User-Request 205604 bytes_out 334173 205604 bytes_in 7163097 205604 station_ip 2.183.245.253 205604 port 15730069 205604 nas_port_type Virtual 205604 remote_ip 5.5.5.254 205613 username barzegar 205613 mac 205564 username yaghobi 205564 mac 205564 bytes_out 0 205564 bytes_in 0 205564 station_ip 83.123.88.36 205564 port 53 205564 unique_id port 205564 remote_ip 10.8.0.174 205569 username milan 205569 kill_reason Another user logged on this global unique id 205569 mac 205569 bytes_out 0 205569 bytes_in 0 205569 station_ip 5.120.143.192 205569 port 43 205569 unique_id port 205572 username motamedi9772 205572 mac 205572 bytes_out 15743 205572 bytes_in 48662 205572 station_ip 37.129.62.152 205572 port 92 205572 unique_id port 205572 remote_ip 10.8.1.198 205573 username motamedi9772 205573 mac 205573 bytes_out 0 205573 bytes_in 0 205573 station_ip 37.129.62.152 205573 port 92 205573 unique_id port 205573 remote_ip 10.8.1.198 205577 username ghaderpour6649 205577 mac 205577 bytes_out 0 205577 bytes_in 0 205577 station_ip 113.203.16.127 205577 port 46 205577 unique_id port 205577 remote_ip 10.8.0.38 205580 username motamedi9772 205580 mac 205580 bytes_out 0 205580 bytes_in 0 205580 station_ip 37.129.62.152 205580 port 56 205580 unique_id port 205580 remote_ip 10.8.0.62 205581 username motamedi9772 205581 mac 205581 bytes_out 0 205581 bytes_in 0 205581 station_ip 37.129.62.152 205581 port 56 205581 unique_id port 205581 remote_ip 10.8.0.62 205582 username rashidi4690 205582 kill_reason Another user logged on this global unique id 205582 mac 205582 bytes_out 0 205582 bytes_in 0 205582 station_ip 5.120.159.12 205582 port 102 205582 unique_id port 205582 remote_ip 10.8.1.158 205583 username farhad3 205583 mac 205583 bytes_out 56102 205583 bytes_in 193388 205583 station_ip 5.120.159.164 205583 port 92 205583 unique_id port 205583 remote_ip 10.8.1.38 205589 username milan 205589 mac 205589 bytes_out 0 205589 bytes_in 0 205589 station_ip 5.120.143.192 205589 port 43 205589 unique_id port 205590 username barzegar 205590 mac 205590 bytes_out 0 205590 bytes_in 0 205590 station_ip 5.119.161.219 205590 port 104 205590 unique_id port 205590 remote_ip 10.8.1.6 205594 username farhad3 205594 mac 205594 bytes_out 0 205594 bytes_in 0 205594 station_ip 5.120.165.123 205594 port 104 205594 unique_id port 205594 remote_ip 10.8.1.38 205595 username barzegar 205595 mac 205595 bytes_out 0 205595 bytes_in 0 205595 station_ip 5.119.161.219 205595 port 104 205595 unique_id port 205595 remote_ip 10.8.1.6 205605 username mirzaei6046 205605 kill_reason Another user logged on this global unique id 205605 mac 205605 bytes_out 0 205605 bytes_in 0 205605 station_ip 5.119.16.160 205605 port 55 205605 unique_id port 205607 username mosi 205607 kill_reason Another user logged on this global unique id 205607 mac 205607 bytes_out 0 205607 bytes_in 0 205607 station_ip 151.235.106.19 205607 port 102 205607 unique_id port 205608 username farhad3 205608 kill_reason Another user logged on this global unique id 205608 mac 205608 bytes_out 0 205608 bytes_in 0 205608 station_ip 5.120.165.123 205608 port 104 205608 unique_id port 205608 remote_ip 10.8.1.38 205610 username farhad3 205610 kill_reason Another user logged on this global unique id 205610 mac 205610 bytes_out 0 205610 bytes_in 0 205610 station_ip 5.120.165.123 205610 port 104 205610 unique_id port 205611 username hamid1430 205611 mac 205611 bytes_out 0 205611 bytes_in 0 205611 station_ip 37.129.115.88 205611 port 45 205611 unique_id port 205615 username farhad3 205615 mac 205615 bytes_out 0 205615 bytes_in 0 205615 station_ip 5.120.165.123 205615 port 104 205615 unique_id port 205616 username farhad3 205578 kill_reason Another user logged on this global unique id 205578 mac 205578 bytes_out 0 205578 bytes_in 0 205578 station_ip 37.129.202.130 205578 port 54 205578 unique_id port 205578 remote_ip 10.8.0.98 205585 username farhad3 205585 mac 205585 bytes_out 235360 205585 bytes_in 823647 205585 station_ip 5.120.159.164 205585 port 92 205585 unique_id port 205585 remote_ip 10.8.1.38 205588 username milan 205588 kill_reason Another user logged on this global unique id 205588 mac 205588 bytes_out 0 205588 bytes_in 0 205588 station_ip 5.120.143.192 205588 port 43 205588 unique_id port 205602 username yaghobi 205602 mac 205602 bytes_out 0 205602 bytes_in 0 205602 station_ip 83.123.88.36 205602 port 53 205602 unique_id port 205602 remote_ip 10.8.0.174 205606 username ghaderpour6649 205606 mac 205606 bytes_out 0 205606 bytes_in 0 205606 station_ip 37.129.52.87 205606 port 54 205606 unique_id port 205606 remote_ip 10.8.0.38 205609 username barzegar 205609 mac 205609 bytes_out 0 205609 bytes_in 0 205609 station_ip 5.119.161.219 205609 port 107 205609 unique_id port 205609 remote_ip 10.8.1.6 205612 username ghaderpour6649 205612 mac 205612 bytes_out 1802633 205612 bytes_in 21773043 205612 station_ip 37.129.102.61 205612 port 53 205612 unique_id port 205612 remote_ip 10.8.0.38 205614 username ghaderpour6649 205614 mac 205614 bytes_out 0 205614 bytes_in 0 205614 station_ip 37.129.102.61 205614 port 54 205614 unique_id port 205614 remote_ip 10.8.0.38 205618 username naeimeh 205618 kill_reason Another user logged on this global unique id 205618 mac 205618 bytes_out 0 205618 bytes_in 0 205618 station_ip 83.122.158.131 205618 port 43 205618 unique_id port 205618 remote_ip 10.8.0.202 205621 username motamedi9772 205621 kill_reason Another user logged on this global unique id 205621 mac 205621 bytes_out 0 205621 bytes_in 0 205621 station_ip 37.129.62.152 205621 port 56 205621 unique_id port 205621 remote_ip 10.8.0.62 205622 username barzegar 205622 mac 205622 bytes_out 0 205622 bytes_in 0 205622 station_ip 5.119.161.219 205622 port 107 205622 unique_id port 205622 remote_ip 10.8.1.6 205628 username barzegar 205628 mac 205628 bytes_out 0 205628 bytes_in 0 205628 station_ip 5.119.161.219 205628 port 107 205628 unique_id port 205628 remote_ip 10.8.1.6 205629 username motamedi9772 205629 mac 205629 bytes_out 0 205629 bytes_in 0 205629 station_ip 37.129.62.152 205629 port 56 205629 unique_id port 205630 username farhad3 205630 kill_reason Another user logged on this global unique id 205630 mac 205630 bytes_out 0 205630 bytes_in 0 205630 station_ip 5.120.165.123 205630 port 104 205630 unique_id port 205630 remote_ip 10.8.1.38 205634 username farhad3 205634 mac 205634 bytes_out 117847 205634 bytes_in 380205 205634 station_ip 5.120.165.123 205634 port 104 205634 unique_id port 205634 remote_ip 10.8.1.38 205635 username barzegar 205635 mac 205635 bytes_out 0 205635 bytes_in 0 205635 station_ip 5.119.161.219 205635 port 107 205635 unique_id port 205635 remote_ip 10.8.1.6 205636 username farhad3 205636 mac 205636 bytes_out 452896 205636 bytes_in 970094 205636 station_ip 5.120.165.123 205636 port 104 205636 unique_id port 205636 remote_ip 10.8.1.38 205637 username alipour1506 205637 kill_reason Another user logged on this global unique id 205637 mac 205637 bytes_out 0 205637 bytes_in 0 205637 station_ip 78.39.26.163 205637 port 103 205637 unique_id port 205638 username barzegar 205638 mac 205638 bytes_out 0 205638 bytes_in 0 205638 station_ip 5.119.161.219 205613 bytes_out 0 205613 bytes_in 0 205613 station_ip 5.119.161.219 205613 port 53 205613 unique_id port 205613 remote_ip 10.8.0.14 205617 username sabaghnezhad 205617 mac 205617 bytes_out 0 205617 bytes_in 0 205617 station_ip 83.122.29.134 205617 port 46 205617 unique_id port 205617 remote_ip 10.8.0.18 205619 username mirzaei6046 205619 kill_reason Another user logged on this global unique id 205619 mac 205619 bytes_out 0 205619 bytes_in 0 205619 station_ip 5.119.16.160 205619 port 55 205619 unique_id port 205620 username naeimeh 205620 mac 205620 bytes_out 0 205620 bytes_in 0 205620 station_ip 83.122.158.131 205620 port 43 205620 unique_id port 205624 username barzegar 205624 mac 205624 bytes_out 0 205624 bytes_in 0 205624 station_ip 5.119.161.219 205624 port 107 205624 unique_id port 205624 remote_ip 10.8.1.6 205625 username motamedi9772 205625 kill_reason Another user logged on this global unique id 205625 mac 205625 bytes_out 0 205625 bytes_in 0 205625 station_ip 37.129.62.152 205625 port 56 205625 unique_id port 205626 username hosseine 205626 mac 205626 bytes_out 0 205626 bytes_in 0 205626 station_ip 113.203.28.194 205626 port 49 205626 unique_id port 205626 remote_ip 10.8.0.118 205627 username mirzaei6046 205627 kill_reason Another user logged on this global unique id 205627 mac 205627 bytes_out 0 205627 bytes_in 0 205627 station_ip 5.119.16.160 205627 port 55 205627 unique_id port 205632 username barzegar 205632 mac 205632 bytes_out 0 205632 bytes_in 0 205632 station_ip 5.119.161.219 205632 port 43 205632 unique_id port 205632 remote_ip 10.8.0.14 205633 username farhad3 205633 mac 205633 bytes_out 0 205633 bytes_in 0 205633 station_ip 5.120.165.123 205633 port 104 205633 unique_id port 205639 username farhad3 205639 mac 205639 bytes_out 746907 205639 bytes_in 7002059 205639 station_ip 5.120.165.123 205639 port 104 205639 unique_id port 205639 remote_ip 10.8.1.38 205642 username farhad3 205642 mac 205642 bytes_out 0 205642 bytes_in 0 205642 station_ip 5.120.165.123 205642 port 104 205642 unique_id port 205642 remote_ip 10.8.1.38 205643 username barzegar 205643 mac 205643 bytes_out 0 205643 bytes_in 0 205643 station_ip 5.119.161.219 205643 port 104 205643 unique_id port 205643 remote_ip 10.8.1.6 205646 username mosi 205646 kill_reason Another user logged on this global unique id 205646 mac 205646 bytes_out 0 205646 bytes_in 0 205646 station_ip 151.235.106.19 205646 port 102 205646 unique_id port 205648 username barzegar 205648 mac 205648 bytes_out 0 205648 bytes_in 0 205648 station_ip 5.119.161.219 205648 port 104 205648 unique_id port 205648 remote_ip 10.8.1.6 205650 username hamid1430 205650 mac 205650 bytes_out 346959 205650 bytes_in 1031505 205650 station_ip 37.129.115.88 205650 port 43 205650 unique_id port 205650 remote_ip 10.8.0.110 205659 username barzegar 205659 mac 205659 bytes_out 0 205659 bytes_in 0 205659 station_ip 5.119.161.219 205659 port 104 205659 unique_id port 205659 remote_ip 10.8.1.6 205673 username barzegar 205673 mac 205673 bytes_out 0 205673 bytes_in 0 205673 station_ip 5.119.161.219 205673 port 107 205673 unique_id port 205673 remote_ip 10.8.1.6 205674 username barzegar 205674 mac 205674 bytes_out 0 205674 bytes_in 0 205674 station_ip 5.119.161.219 205674 port 45 205674 unique_id port 205674 remote_ip 10.8.0.14 205675 username barzegar 205675 mac 205675 bytes_out 0 205675 bytes_in 0 205675 station_ip 5.119.161.219 205675 port 107 205616 mac 205616 bytes_out 0 205616 bytes_in 0 205616 station_ip 5.120.165.123 205616 port 104 205616 unique_id port 205616 remote_ip 10.8.1.38 205623 username pourshad 205623 kill_reason Another user logged on this global unique id 205623 mac 205623 bytes_out 0 205623 bytes_in 0 205623 station_ip 5.120.112.60 205623 port 51 205623 unique_id port 205623 remote_ip 10.8.0.54 205631 username hamid1430 205631 mac 205631 bytes_out 0 205631 bytes_in 0 205631 station_ip 37.129.115.88 205631 port 45 205631 unique_id port 205631 remote_ip 10.8.0.110 205645 username farhad3 205645 kill_reason Another user logged on this global unique id 205645 mac 205645 bytes_out 0 205645 bytes_in 0 205645 station_ip 5.120.165.123 205645 port 45 205645 unique_id port 205645 remote_ip 10.8.0.46 205647 username barzegar 205647 mac 205647 bytes_out 0 205647 bytes_in 0 205647 station_ip 5.119.161.219 205647 port 104 205647 unique_id port 205647 remote_ip 10.8.1.6 205649 username farhad3 205649 kill_reason Another user logged on this global unique id 205649 mac 205649 bytes_out 0 205649 bytes_in 0 205649 station_ip 5.120.165.123 205649 port 45 205649 unique_id port 205652 username barzegar 205652 mac 205652 bytes_out 0 205652 bytes_in 0 205652 station_ip 5.119.161.219 205652 port 49 205652 unique_id port 205652 remote_ip 10.8.0.14 205653 username hamid1430 205653 mac 205653 bytes_out 0 205653 bytes_in 0 205653 station_ip 37.129.115.88 205653 port 43 205653 unique_id port 205653 remote_ip 10.8.0.110 205655 username barzegar 205655 mac 205655 bytes_out 0 205655 bytes_in 0 205655 station_ip 5.119.161.219 205655 port 49 205655 unique_id port 205655 remote_ip 10.8.0.14 205656 username barzegar 205656 mac 205656 bytes_out 0 205656 bytes_in 0 205656 station_ip 5.119.161.219 205656 port 104 205656 unique_id port 205656 remote_ip 10.8.1.6 205657 username farhad3 205657 kill_reason Another user logged on this global unique id 205657 mac 205657 bytes_out 0 205657 bytes_in 0 205657 station_ip 5.120.165.123 205657 port 45 205657 unique_id port 205658 username hamid1430 205658 mac 205658 bytes_out 52366 205658 bytes_in 207083 205658 station_ip 37.129.115.88 205658 port 43 205658 unique_id port 205658 remote_ip 10.8.0.110 205660 username farhad3 205660 mac 205660 bytes_out 0 205660 bytes_in 0 205660 station_ip 5.120.165.123 205660 port 45 205660 unique_id port 205662 username hamid1430 205662 mac 205662 bytes_out 0 205662 bytes_in 0 205662 station_ip 83.122.10.36 205662 port 49 205662 unique_id port 205662 remote_ip 10.8.0.110 205663 username barzegar 205663 mac 205663 bytes_out 0 205663 bytes_in 0 205663 station_ip 5.119.161.219 205663 port 104 205663 unique_id port 205663 remote_ip 10.8.1.6 205664 username hamid1430 205664 mac 205664 bytes_out 15786 205664 bytes_in 50634 205664 station_ip 83.122.10.36 205664 port 43 205664 unique_id port 205664 remote_ip 10.8.0.110 205665 username barzegar 205665 mac 205665 bytes_out 0 205665 bytes_in 0 205665 station_ip 5.119.161.219 205665 port 104 205665 unique_id port 205665 remote_ip 10.8.1.6 205666 username barzegar 205666 mac 205666 bytes_out 0 205666 bytes_in 0 205666 station_ip 5.119.161.219 205666 port 104 205666 unique_id port 205666 remote_ip 10.8.1.6 205675 unique_id port 205675 remote_ip 10.8.1.6 205677 username barzegar 205677 mac 205677 bytes_out 0 205677 bytes_in 0 205677 station_ip 5.119.161.219 205677 port 102 205677 unique_id port 205677 remote_ip 10.8.1.6 205638 port 107 205638 unique_id port 205638 remote_ip 10.8.1.6 205640 username pourshad 205640 mac 205640 bytes_out 0 205640 bytes_in 0 205640 station_ip 5.120.112.60 205640 port 51 205640 unique_id port 205641 username farhad3 205641 mac 205641 bytes_out 314280 205641 bytes_in 1513401 205641 station_ip 5.120.165.123 205641 port 104 205641 unique_id port 205641 remote_ip 10.8.1.38 205644 username barzegar 205644 mac 205644 bytes_out 0 205644 bytes_in 0 205644 station_ip 5.119.161.219 205644 port 49 205644 unique_id port 205644 remote_ip 10.8.0.14 205651 username barzegar 205651 mac 205651 bytes_out 0 205651 bytes_in 0 205651 station_ip 5.119.161.219 205651 port 104 205651 unique_id port 205651 remote_ip 10.8.1.6 205654 username barzegar 205654 mac 205654 bytes_out 0 205654 bytes_in 0 205654 station_ip 5.119.161.219 205654 port 104 205654 unique_id port 205654 remote_ip 10.8.1.6 205661 username barzegar 205661 mac 205661 bytes_out 0 205661 bytes_in 0 205661 station_ip 5.119.161.219 205661 port 104 205661 unique_id port 205661 remote_ip 10.8.1.6 205667 username barzegar 205667 mac 205667 bytes_out 0 205667 bytes_in 0 205667 station_ip 5.119.161.219 205667 port 104 205667 unique_id port 205667 remote_ip 10.8.1.6 205668 username barzegar 205668 mac 205668 bytes_out 0 205668 bytes_in 0 205668 station_ip 5.119.161.219 205668 port 45 205668 unique_id port 205668 remote_ip 10.8.0.14 205669 username barzegar 205669 mac 205669 bytes_out 0 205669 bytes_in 0 205669 station_ip 5.119.161.219 205669 port 104 205669 unique_id port 205669 remote_ip 10.8.1.6 205670 username barzegar 205670 mac 205670 bytes_out 0 205670 bytes_in 0 205670 station_ip 5.119.161.219 205670 port 104 205670 unique_id port 205670 remote_ip 10.8.1.6 205671 username barzegar 205671 mac 205671 bytes_out 0 205671 bytes_in 0 205671 station_ip 5.119.161.219 205671 port 107 205671 unique_id port 205671 remote_ip 10.8.1.6 205672 username aminvpn 205672 unique_id port 205672 terminate_cause Lost-Carrier 205672 bytes_out 331023 205672 bytes_in 3617079 205672 station_ip 31.57.127.177 205672 port 15730070 205672 nas_port_type Virtual 205672 remote_ip 5.5.5.9 205676 username mosi 205676 mac 205676 bytes_out 0 205676 bytes_in 0 205676 station_ip 151.235.106.19 205676 port 102 205676 unique_id port 205678 username barzegar 205678 mac 205678 bytes_out 0 205678 bytes_in 0 205678 station_ip 5.119.161.219 205678 port 102 205678 unique_id port 205678 remote_ip 10.8.1.6 205679 username aminvpn 205679 unique_id port 205679 terminate_cause User-Request 205679 bytes_out 115190 205679 bytes_in 463576 205679 station_ip 113.203.26.227 205679 port 15730071 205679 nas_port_type Virtual 205679 remote_ip 5.5.5.255 205680 username barzegar 205680 mac 205680 bytes_out 0 205680 bytes_in 0 205680 station_ip 5.119.161.219 205680 port 107 205680 unique_id port 205680 remote_ip 10.8.1.6 205681 username kalantary6037 205681 mac 205681 bytes_out 0 205681 bytes_in 0 205681 station_ip 37.129.136.109 205681 port 102 205681 unique_id port 205681 remote_ip 10.8.1.150 205682 username hamid1430 205682 mac 205682 bytes_out 0 205682 bytes_in 0 205682 station_ip 83.122.10.36 205682 port 43 205682 unique_id port 205682 remote_ip 10.8.0.110 205683 username barzegar 205683 mac 205683 bytes_out 0 205683 bytes_in 0 205683 station_ip 5.119.161.219 205683 port 108 205683 unique_id port 205683 remote_ip 10.8.1.6 205684 username meysam 205684 mac 205684 bytes_out 1412261 205684 bytes_in 26880170 205684 station_ip 188.158.51.218 205684 port 102 205684 unique_id port 205684 remote_ip 10.8.1.30 205685 username barzegar 205685 mac 205685 bytes_out 0 205685 bytes_in 0 205685 station_ip 5.119.161.219 205685 port 45 205685 unique_id port 205685 remote_ip 10.8.0.14 205689 username alipour1506 205689 mac 205689 bytes_out 0 205689 bytes_in 0 205689 station_ip 78.39.26.163 205689 port 103 205689 unique_id port 205694 username barzegar 205694 mac 205694 bytes_out 0 205694 bytes_in 0 205694 station_ip 5.119.161.219 205694 port 108 205694 unique_id port 205694 remote_ip 10.8.1.6 205695 username barzegar 205695 mac 205695 bytes_out 0 205695 bytes_in 0 205695 station_ip 5.119.161.219 205695 port 108 205695 unique_id port 205695 remote_ip 10.8.1.6 205696 username sabaghnezhad 205696 mac 205696 bytes_out 944323 205696 bytes_in 1140089 205696 station_ip 83.122.29.134 205696 port 46 205696 unique_id port 205696 remote_ip 10.8.0.18 205697 username alipour1506 205697 mac 205697 bytes_out 0 205697 bytes_in 0 205697 station_ip 78.39.26.163 205697 port 107 205697 unique_id port 205697 remote_ip 10.8.1.86 205702 username godarzi 205702 mac 205702 bytes_out 2638081 205702 bytes_in 21086323 205702 station_ip 5.202.98.177 205702 port 107 205702 unique_id port 205702 remote_ip 10.8.1.78 205704 username barzegar 205704 mac 205704 bytes_out 0 205704 bytes_in 0 205704 station_ip 5.119.161.219 205704 port 107 205704 unique_id port 205704 remote_ip 10.8.1.6 205705 username godarzi 205705 mac 205705 bytes_out 0 205705 bytes_in 0 205705 station_ip 5.202.98.177 205705 port 110 205705 unique_id port 205705 remote_ip 10.8.1.78 205706 username barzegar 205706 mac 205706 bytes_out 0 205706 bytes_in 0 205706 station_ip 5.119.161.219 205706 port 49 205706 unique_id port 205706 remote_ip 10.8.0.14 205710 username farhad3 205710 mac 205710 bytes_out 0 205710 bytes_in 0 205710 station_ip 5.120.165.123 205710 port 107 205710 unique_id port 205710 remote_ip 10.8.1.38 205711 username ghaderpour6649 205711 mac 205711 bytes_out 0 205711 bytes_in 0 205711 station_ip 37.129.132.36 205711 port 46 205711 unique_id port 205711 remote_ip 10.8.0.38 205712 username barzegar 205712 mac 205712 bytes_out 0 205712 bytes_in 0 205712 station_ip 5.119.161.219 205712 port 107 205712 unique_id port 205712 remote_ip 10.8.1.6 205715 username barzegar 205715 mac 205715 bytes_out 0 205715 bytes_in 0 205715 station_ip 5.119.161.219 205715 port 53 205715 unique_id port 205715 remote_ip 10.8.0.14 205718 username barzegar 205718 mac 205718 bytes_out 0 205718 bytes_in 0 205718 station_ip 5.119.161.219 205718 port 110 205718 unique_id port 205718 remote_ip 10.8.1.6 205720 username farhad3 205720 mac 205720 bytes_out 369512 205720 bytes_in 5692619 205720 station_ip 5.120.165.123 205720 port 104 205720 unique_id port 205720 remote_ip 10.8.1.38 205721 username kalantary6037 205721 mac 205721 bytes_out 658114 205721 bytes_in 8522205 205721 station_ip 37.129.149.41 205721 port 111 205721 unique_id port 205721 remote_ip 10.8.1.150 205723 username hatami 205723 mac 205723 bytes_out 0 205723 bytes_in 0 205723 station_ip 151.235.105.117 205723 port 51 205723 unique_id port 205723 remote_ip 10.8.0.78 205729 username farhad3 205729 mac 205729 bytes_out 0 205729 bytes_in 0 205729 station_ip 5.120.165.123 205686 username mohammadjavad 205686 mac 205686 bytes_out 3289145 205686 bytes_in 48122704 205686 station_ip 83.123.54.224 205686 port 43 205686 unique_id port 205686 remote_ip 10.8.0.58 205687 username alipour1506 205687 kill_reason Another user logged on this global unique id 205687 mac 205687 bytes_out 0 205687 bytes_in 0 205687 station_ip 78.39.26.163 205687 port 103 205687 unique_id port 205690 username kalantary6037 205690 mac 205690 bytes_out 3139815 205690 bytes_in 25751973 205690 station_ip 37.129.136.109 205690 port 107 205690 unique_id port 205690 remote_ip 10.8.1.150 205692 username barzegar 205692 mac 205692 bytes_out 0 205692 bytes_in 0 205692 station_ip 5.119.161.219 205692 port 103 205692 unique_id port 205692 remote_ip 10.8.1.6 205698 username kalantary6037 205698 mac 205698 bytes_out 0 205698 bytes_in 0 205698 station_ip 37.129.142.1 205698 port 108 205698 unique_id port 205698 remote_ip 10.8.1.150 205699 username nilufarrajaei 205699 mac 205699 bytes_out 0 205699 bytes_in 0 205699 station_ip 37.129.16.57 205699 port 104 205699 unique_id port 205699 remote_ip 10.8.1.138 205707 username farhad3 205707 mac 205707 bytes_out 1580484 205707 bytes_in 18734000 205707 station_ip 5.120.165.123 205707 port 107 205707 unique_id port 205707 remote_ip 10.8.1.38 205708 username farhad3 205708 mac 205708 bytes_out 0 205708 bytes_in 0 205708 station_ip 5.120.165.123 205708 port 107 205708 unique_id port 205708 remote_ip 10.8.1.38 205709 username nilufarrajaei 205709 mac 205709 bytes_out 643591 205709 bytes_in 6832360 205709 station_ip 37.129.16.57 205709 port 104 205709 unique_id port 205709 remote_ip 10.8.1.138 205724 username pourshad 205724 kill_reason Another user logged on this global unique id 205724 mac 205724 bytes_out 0 205724 bytes_in 0 205724 station_ip 5.120.112.60 205724 port 102 205724 unique_id port 205724 remote_ip 10.8.1.58 205726 username yaghobi 205726 mac 205726 bytes_out 713881 205726 bytes_in 7869932 205726 station_ip 37.129.2.222 205726 port 51 205726 unique_id port 205726 remote_ip 10.8.0.174 205737 username hatami 205737 mac 205737 bytes_out 1902249 205737 bytes_in 61096096 205737 station_ip 151.235.105.117 205737 port 113 205737 unique_id port 205737 remote_ip 10.8.1.26 205745 username barzegar 205745 mac 205745 bytes_out 0 205745 bytes_in 0 205745 station_ip 5.119.161.219 205745 port 51 205745 unique_id port 205745 remote_ip 10.8.0.14 205747 username meysam 205747 kill_reason Another user logged on this global unique id 205747 mac 205747 bytes_out 0 205747 bytes_in 0 205747 station_ip 188.159.251.163 205747 port 114 205747 unique_id port 205747 remote_ip 10.8.1.30 205749 username barzegar 205749 mac 205749 bytes_out 0 205749 bytes_in 0 205749 station_ip 5.119.161.219 205749 port 111 205749 unique_id port 205749 remote_ip 10.8.1.6 205750 username sekonji0496 205750 mac 205750 bytes_out 34054 205750 bytes_in 105507 205750 station_ip 5.119.199.27 205750 port 111 205750 unique_id port 205750 remote_ip 10.8.1.98 205754 username barzegar 205754 mac 205754 bytes_out 0 205754 bytes_in 0 205754 station_ip 5.119.161.219 205754 port 53 205754 unique_id port 205754 remote_ip 10.8.0.14 205755 username mosi 205755 mac 205755 bytes_out 0 205755 bytes_in 0 205755 station_ip 89.34.40.208 205755 port 111 205755 unique_id port 205755 remote_ip 10.8.1.118 205756 username hamid1430 205756 mac 205756 bytes_out 0 205756 bytes_in 0 205756 station_ip 37.129.175.109 205756 port 45 205688 username barzegar 205688 mac 205688 bytes_out 0 205688 bytes_in 0 205688 station_ip 5.119.161.219 205688 port 108 205688 unique_id port 205688 remote_ip 10.8.1.6 205691 username kharazmi2920 205691 mac 205691 bytes_out 0 205691 bytes_in 0 205691 station_ip 83.122.224.9 205691 port 43 205691 unique_id port 205691 remote_ip 10.8.0.34 205693 username mirzaei6046 205693 kill_reason Another user logged on this global unique id 205693 mac 205693 bytes_out 0 205693 bytes_in 0 205693 station_ip 5.119.16.160 205693 port 55 205693 unique_id port 205700 username meysam 205700 mac 205700 bytes_out 1653 205700 bytes_in 4397 205700 station_ip 5.120.19.49 205700 port 108 205700 unique_id port 205700 remote_ip 10.8.1.30 205701 username barzegar 205701 mac 205701 bytes_out 0 205701 bytes_in 0 205701 station_ip 5.119.161.219 205701 port 108 205701 unique_id port 205701 remote_ip 10.8.1.6 205703 username meysam 205703 mac 205703 bytes_out 34472 205703 bytes_in 23480 205703 station_ip 5.119.141.198 205703 port 107 205703 unique_id port 205703 remote_ip 10.8.1.30 205713 username kalantary6037 205713 mac 205713 bytes_out 0 205713 bytes_in 0 205713 station_ip 37.129.154.253 205713 port 111 205713 unique_id port 205713 remote_ip 10.8.1.150 205714 username farhad3 205714 mac 205714 bytes_out 2219832 205714 bytes_in 33910058 205714 station_ip 5.120.165.123 205714 port 104 205714 unique_id port 205714 remote_ip 10.8.1.38 205716 username barzegar 205716 mac 205716 bytes_out 0 205716 bytes_in 0 205716 station_ip 5.119.161.219 205716 port 110 205716 unique_id port 205716 remote_ip 10.8.1.6 205717 username farhad3 205717 mac 205717 bytes_out 1134014 205717 bytes_in 8332670 205717 station_ip 5.120.165.123 205717 port 104 205717 unique_id port 205717 remote_ip 10.8.1.38 205719 username sabaghnezhad 205719 mac 205719 bytes_out 0 205719 bytes_in 0 205719 station_ip 83.122.29.134 205719 port 51 205719 unique_id port 205719 remote_ip 10.8.0.18 205722 username ghaderpour6649 205722 mac 205722 bytes_out 1825701 205722 bytes_in 23119672 205722 station_ip 83.122.126.81 205722 port 46 205722 unique_id port 205722 remote_ip 10.8.0.38 205725 username barzegar 205725 mac 205725 bytes_out 0 205725 bytes_in 0 205725 station_ip 5.119.161.219 205725 port 110 205725 unique_id port 205725 remote_ip 10.8.1.6 205727 username barzegar 205727 mac 205727 bytes_out 0 205727 bytes_in 0 205727 station_ip 5.119.161.219 205727 port 110 205727 unique_id port 205727 remote_ip 10.8.1.6 205728 username barzegar 205728 kill_reason Maximum check online fails reached 205728 mac 205728 bytes_out 0 205728 bytes_in 0 205728 station_ip 5.119.161.219 205728 port 110 205728 unique_id port 205730 username hatami 205730 mac 205730 bytes_out 7073 205730 bytes_in 8939 205730 station_ip 151.235.105.117 205730 port 111 205730 unique_id port 205730 remote_ip 10.8.1.26 205732 username barzegar 205732 mac 205732 bytes_out 0 205732 bytes_in 0 205732 station_ip 5.119.161.219 205732 port 111 205732 unique_id port 205732 remote_ip 10.8.1.6 205733 username godarzi 205733 mac 205733 bytes_out 4140729 205733 bytes_in 27452740 205733 station_ip 5.202.98.177 205733 port 107 205733 unique_id port 205733 remote_ip 10.8.1.78 205734 username farhad3 205734 mac 205734 bytes_out 81063 205734 bytes_in 273398 205734 station_ip 5.120.165.123 205734 port 107 205734 unique_id port 205734 remote_ip 10.8.1.38 205735 username barzegar 205735 mac 205729 port 111 205729 unique_id port 205729 remote_ip 10.8.1.38 205731 username ghaderpour6649 205731 kill_reason Another user logged on this global unique id 205731 mac 205731 bytes_out 0 205731 bytes_in 0 205731 station_ip 37.129.236.68 205731 port 46 205731 unique_id port 205731 remote_ip 10.8.0.38 205736 username ghaderpour6649 205736 mac 205736 bytes_out 0 205736 bytes_in 0 205736 station_ip 37.129.236.68 205736 port 46 205736 unique_id port 205740 username barzegar8595 205740 kill_reason Another user logged on this global unique id 205740 mac 205740 bytes_out 0 205740 bytes_in 0 205740 station_ip 46.225.213.205 205740 port 104 205740 unique_id port 205740 remote_ip 10.8.1.50 205742 username pourshad 205742 mac 205742 bytes_out 0 205742 bytes_in 0 205742 station_ip 5.120.112.60 205742 port 102 205742 unique_id port 205744 username pourshad 205744 mac 205744 bytes_out 0 205744 bytes_in 0 205744 station_ip 5.120.112.60 205744 port 102 205744 unique_id port 205744 remote_ip 10.8.1.58 205746 username iranmanesh4443 205746 mac 205746 bytes_out 178651 205746 bytes_in 825187 205746 station_ip 5.119.90.240 205746 port 111 205746 unique_id port 205746 remote_ip 10.8.1.122 205748 username kalantary6037 205748 mac 205748 bytes_out 248537 205748 bytes_in 1088029 205748 station_ip 37.129.208.105 205748 port 116 205748 unique_id port 205748 remote_ip 10.8.1.150 205751 username meysam 205751 kill_reason Another user logged on this global unique id 205751 mac 205751 bytes_out 0 205751 bytes_in 0 205751 station_ip 188.159.251.163 205751 port 114 205751 unique_id port 205752 username hatami 205752 kill_reason Another user logged on this global unique id 205752 mac 205752 bytes_out 0 205752 bytes_in 0 205752 station_ip 151.235.105.117 205752 port 115 205752 unique_id port 205752 remote_ip 10.8.1.26 205753 username alipour1506 205753 mac 205753 bytes_out 3791022 205753 bytes_in 39716638 205753 station_ip 83.122.255.114 205753 port 109 205753 unique_id port 205753 remote_ip 10.8.1.86 205762 username rashidi4690 205762 mac 205762 bytes_out 26838693 205762 bytes_in 36666647 205762 station_ip 5.119.81.21 205762 port 107 205762 unique_id port 205762 remote_ip 10.8.1.158 205763 username pourshad 205763 mac 205763 bytes_out 7146318 205763 bytes_in 17285578 205763 station_ip 5.120.112.60 205763 port 102 205763 unique_id port 205763 remote_ip 10.8.1.58 205766 username malekpoir 205766 mac 205766 bytes_out 0 205766 bytes_in 0 205766 station_ip 5.119.210.158 205766 port 103 205766 unique_id port 205766 remote_ip 10.8.1.70 205770 username godarzi 205770 kill_reason Another user logged on this global unique id 205770 mac 205770 bytes_out 0 205770 bytes_in 0 205770 station_ip 5.202.98.177 205770 port 46 205770 unique_id port 205770 remote_ip 10.8.0.146 205775 username barzegar 205775 mac 205775 bytes_out 0 205775 bytes_in 0 205775 station_ip 5.119.161.219 205775 port 107 205775 unique_id port 205775 remote_ip 10.8.1.6 205778 username khalili2 205778 kill_reason Another user logged on this global unique id 205778 mac 205778 bytes_out 0 205778 bytes_in 0 205778 station_ip 5.119.34.158 205778 port 108 205778 unique_id port 205778 remote_ip 10.8.1.18 205782 username alipour1506 205782 mac 205782 bytes_out 436084 205782 bytes_in 7576462 205782 station_ip 83.122.255.114 205782 port 109 205782 unique_id port 205782 remote_ip 10.8.1.86 205786 username fezealinaghi 205786 kill_reason Another user logged on this global unique id 205786 mac 205786 bytes_out 0 205786 bytes_in 0 205786 station_ip 37.129.165.22 205786 port 45 205735 bytes_out 0 205735 bytes_in 0 205735 station_ip 5.119.161.219 205735 port 107 205735 unique_id port 205735 remote_ip 10.8.1.6 205738 username barzegar 205738 mac 205738 bytes_out 0 205738 bytes_in 0 205738 station_ip 5.119.161.219 205738 port 107 205738 unique_id port 205738 remote_ip 10.8.1.6 205739 username ahmadi1 205739 mac 205739 bytes_out 0 205739 bytes_in 0 205739 station_ip 37.129.121.136 205739 port 51 205739 unique_id port 205739 remote_ip 10.8.0.42 205741 username barzegar 205741 mac 205741 bytes_out 0 205741 bytes_in 0 205741 station_ip 5.119.161.219 205741 port 107 205741 unique_id port 205741 remote_ip 10.8.1.6 205743 username yaghobi 205743 mac 205743 bytes_out 0 205743 bytes_in 0 205743 station_ip 37.129.63.2 205743 port 51 205743 unique_id port 205743 remote_ip 10.8.0.174 205757 username barzegar8595 205757 kill_reason Another user logged on this global unique id 205757 mac 205757 bytes_out 0 205757 bytes_in 0 205757 station_ip 46.225.213.205 205757 port 104 205757 unique_id port 205758 username alipour1506 205758 mac 205758 bytes_out 0 205758 bytes_in 0 205758 station_ip 83.122.255.114 205758 port 109 205758 unique_id port 205758 remote_ip 10.8.1.86 205760 username hamid1430 205760 mac 205760 bytes_out 0 205760 bytes_in 0 205760 station_ip 37.129.175.109 205760 port 53 205760 unique_id port 205760 remote_ip 10.8.0.110 205767 username barzegar 205767 mac 205767 bytes_out 0 205767 bytes_in 0 205767 station_ip 5.119.161.219 205767 port 103 205767 unique_id port 205767 remote_ip 10.8.1.6 205768 username yaghobi 205768 mac 205768 bytes_out 0 205768 bytes_in 0 205768 station_ip 37.129.52.178 205768 port 53 205768 unique_id port 205768 remote_ip 10.8.0.174 205769 username barzegar 205769 mac 205769 bytes_out 0 205769 bytes_in 0 205769 station_ip 5.119.161.219 205769 port 103 205769 unique_id port 205769 remote_ip 10.8.1.6 205772 username barzegar 205772 mac 205772 bytes_out 0 205772 bytes_in 0 205772 station_ip 5.119.161.219 205772 port 107 205772 unique_id port 205772 remote_ip 10.8.1.6 205777 username godarzi 205777 kill_reason Another user logged on this global unique id 205777 mac 205777 bytes_out 0 205777 bytes_in 0 205777 station_ip 5.202.98.177 205777 port 46 205777 unique_id port 205779 username saeeddamghani 205779 mac 205779 bytes_out 2417096 205779 bytes_in 44386794 205779 station_ip 217.60.218.93 205779 port 104 205779 unique_id port 205779 remote_ip 10.8.1.66 205781 username barzegar 205781 mac 205781 bytes_out 0 205781 bytes_in 0 205781 station_ip 5.119.161.219 205781 port 45 205781 unique_id port 205781 remote_ip 10.8.0.14 205783 username alipour1506 205783 mac 205783 bytes_out 34026 205783 bytes_in 485340 205783 station_ip 83.122.255.114 205783 port 104 205783 unique_id port 205783 remote_ip 10.8.1.86 205790 username barzegar 205790 mac 205790 bytes_out 21333 205790 bytes_in 53812 205790 station_ip 5.119.161.219 205790 port 104 205790 unique_id port 205790 remote_ip 10.8.1.6 205793 username hamid.e 205793 unique_id port 205793 terminate_cause User-Request 205793 bytes_out 34882 205793 bytes_in 288 205793 station_ip 37.27.20.19 205793 port 15730075 205793 nas_port_type Virtual 205793 remote_ip 5.5.5.1 205795 username fezealinaghi 205795 kill_reason Another user logged on this global unique id 205795 mac 205795 bytes_out 0 205795 bytes_in 0 205795 station_ip 37.129.165.22 205795 port 45 205795 unique_id port 205796 username motamedi9772 205796 mac 205756 unique_id port 205756 remote_ip 10.8.0.110 205759 username ghaderpour6649 205759 mac 205759 bytes_out 0 205759 bytes_in 0 205759 station_ip 83.123.47.171 205759 port 113 205759 unique_id port 205759 remote_ip 10.8.1.246 205761 username barzegar 205761 mac 205761 bytes_out 0 205761 bytes_in 0 205761 station_ip 5.119.161.219 205761 port 113 205761 unique_id port 205761 remote_ip 10.8.1.6 205764 username saeeddamghani 205764 kill_reason Another user logged on this global unique id 205764 mac 205764 bytes_out 0 205764 bytes_in 0 205764 station_ip 217.60.218.93 205764 port 45 205764 unique_id port 205764 remote_ip 10.8.0.26 205765 username barzegar8595 205765 mac 205765 bytes_out 0 205765 bytes_in 0 205765 station_ip 46.225.213.205 205765 port 104 205765 unique_id port 205771 username yaghobi 205771 mac 205771 bytes_out 18903 205771 bytes_in 21796 205771 station_ip 37.129.52.178 205771 port 56 205771 unique_id port 205771 remote_ip 10.8.0.174 205773 username saeeddamghani 205773 mac 205773 bytes_out 0 205773 bytes_in 0 205773 station_ip 217.60.218.93 205773 port 45 205773 unique_id port 205774 username meysam 205774 kill_reason Another user logged on this global unique id 205774 mac 205774 bytes_out 0 205774 bytes_in 0 205774 station_ip 188.159.251.163 205774 port 114 205774 unique_id port 205776 username barzegar8595 205776 mac 205776 bytes_out 0 205776 bytes_in 0 205776 station_ip 37.27.10.64 205776 port 54 205776 unique_id port 205776 remote_ip 10.8.0.82 205780 username barzegar 205780 mac 205780 bytes_out 43967 205780 bytes_in 82923 205780 station_ip 5.119.161.219 205780 port 113 205780 unique_id port 205780 remote_ip 10.8.1.6 205784 username tahmorsi 205784 kill_reason Another user logged on this global unique id 205784 mac 205784 bytes_out 0 205784 bytes_in 0 205784 station_ip 86.57.36.4 205784 port 111 205784 unique_id port 205784 remote_ip 10.8.1.102 205785 username alipour1506 205785 mac 205785 bytes_out 35413 205785 bytes_in 45317 205785 station_ip 83.122.255.114 205785 port 53 205785 unique_id port 205785 remote_ip 10.8.0.134 205788 username pourshad 205788 mac 205788 bytes_out 703162 205788 bytes_in 7673692 205788 station_ip 5.120.112.60 205788 port 107 205788 unique_id port 205788 remote_ip 10.8.1.58 205791 username tahmorsi 205791 mac 205791 bytes_out 0 205791 bytes_in 0 205791 station_ip 86.57.36.4 205791 port 111 205791 unique_id port 205792 username hamid.e 205792 unique_id port 205792 terminate_cause User-Request 205792 bytes_out 38515 205792 bytes_in 288 205792 station_ip 37.27.20.19 205792 port 15730074 205792 nas_port_type Virtual 205792 remote_ip 5.5.5.1 205794 username barzegar 205794 mac 205794 bytes_out 16429 205794 bytes_in 17702 205794 station_ip 5.119.161.219 205794 port 104 205794 unique_id port 205794 remote_ip 10.8.1.6 205798 username barzegar 205798 mac 205798 bytes_out 0 205798 bytes_in 0 205798 station_ip 5.119.161.219 205798 port 104 205798 unique_id port 205798 remote_ip 10.8.1.6 205801 username barzegar 205801 mac 205801 bytes_out 0 205801 bytes_in 0 205801 station_ip 5.119.161.219 205801 port 104 205801 unique_id port 205801 remote_ip 10.8.1.6 205805 username morteza4424 205805 mac 205805 bytes_out 357478 205805 bytes_in 3951906 205805 station_ip 83.123.200.237 205805 port 49 205805 unique_id port 205805 remote_ip 10.8.0.70 205809 username saeeddamghani 205809 unique_id port 205809 terminate_cause User-Request 205809 bytes_out 201366 205809 bytes_in 5464361 205786 unique_id port 205786 remote_ip 10.8.0.98 205787 username rashidi4690 205787 mac 205787 bytes_out 1430923 205787 bytes_in 4395037 205787 station_ip 5.119.81.21 205787 port 103 205787 unique_id port 205787 remote_ip 10.8.1.158 205789 username meysam 205789 mac 205789 bytes_out 0 205789 bytes_in 0 205789 station_ip 188.159.251.163 205789 port 114 205789 unique_id port 205797 username motamedi9772 205797 mac 205797 bytes_out 0 205797 bytes_in 0 205797 station_ip 37.129.114.24 205797 port 54 205797 unique_id port 205797 remote_ip 10.8.0.62 205803 username barzegar 205803 mac 205803 bytes_out 0 205803 bytes_in 0 205803 station_ip 5.119.161.219 205803 port 107 205803 unique_id port 205803 remote_ip 10.8.1.6 205804 username rashidi4690 205804 mac 205804 bytes_out 140773 205804 bytes_in 407633 205804 station_ip 5.119.81.21 205804 port 104 205804 unique_id port 205804 remote_ip 10.8.1.158 205808 username fezealinaghi 205808 mac 205808 bytes_out 0 205808 bytes_in 0 205808 station_ip 37.129.165.22 205808 port 45 205808 unique_id port 205808 remote_ip 10.8.0.98 205820 username kalantary6037 205820 mac 205820 bytes_out 0 205820 bytes_in 0 205820 station_ip 37.129.179.149 205820 port 104 205820 unique_id port 205820 remote_ip 10.8.1.150 205822 username motamedi9772 205822 mac 205822 bytes_out 0 205822 bytes_in 0 205822 station_ip 37.129.67.4 205822 port 54 205822 unique_id port 205822 remote_ip 10.8.0.62 205823 username alipour1506 205823 mac 205823 bytes_out 0 205823 bytes_in 0 205823 station_ip 83.122.255.114 205823 port 53 205823 unique_id port 205823 remote_ip 10.8.0.134 205826 username godarzi 205826 kill_reason Another user logged on this global unique id 205826 mac 205826 bytes_out 0 205826 bytes_in 0 205826 station_ip 5.202.98.177 205826 port 46 205826 unique_id port 205827 username aminvpn 205827 mac 205827 bytes_out 4628506 205827 bytes_in 38654299 205827 station_ip 37.129.199.51 205827 port 51 205827 unique_id port 205827 remote_ip 10.8.0.206 205829 username barzegar 205829 mac 205829 bytes_out 0 205829 bytes_in 0 205829 station_ip 5.119.161.219 205829 port 104 205829 unique_id port 205829 remote_ip 10.8.1.6 205830 username yaghobi 205830 mac 205830 bytes_out 0 205830 bytes_in 0 205830 station_ip 37.129.26.6 205830 port 54 205830 unique_id port 205830 remote_ip 10.8.0.174 205831 username motamedi9772 205831 mac 205831 bytes_out 0 205831 bytes_in 0 205831 station_ip 37.129.67.4 205831 port 51 205831 unique_id port 205831 remote_ip 10.8.0.62 205832 username motamedi9772 205832 mac 205832 bytes_out 0 205832 bytes_in 0 205832 station_ip 37.129.67.4 205832 port 51 205832 unique_id port 205832 remote_ip 10.8.0.62 205833 username nilufarrajaei 205833 mac 205833 bytes_out 0 205833 bytes_in 0 205833 station_ip 37.129.16.57 205833 port 57 205833 unique_id port 205833 remote_ip 10.8.0.94 205840 username motamedi9772 205840 mac 205840 bytes_out 0 205840 bytes_in 0 205840 station_ip 37.129.67.4 205840 port 54 205840 unique_id port 205840 remote_ip 10.8.0.62 205849 username motamedi9772 205849 mac 205849 bytes_out 0 205849 bytes_in 0 205849 station_ip 37.129.67.4 205849 port 54 205849 unique_id port 205849 remote_ip 10.8.0.62 205851 username motamedi9772 205851 mac 205851 bytes_out 0 205851 bytes_in 0 205851 station_ip 37.129.67.4 205851 port 54 205851 unique_id port 205851 remote_ip 10.8.0.62 205852 username motamedi9772 205852 mac 205852 bytes_out 0 205796 bytes_out 0 205796 bytes_in 0 205796 station_ip 37.129.114.24 205796 port 54 205796 unique_id port 205796 remote_ip 10.8.0.62 205799 username nilufarrajaei 205799 mac 205799 bytes_out 0 205799 bytes_in 0 205799 station_ip 37.129.16.57 205799 port 49 205799 unique_id port 205799 remote_ip 10.8.0.94 205800 username pourshad 205800 kill_reason Another user logged on this global unique id 205800 mac 205800 bytes_out 0 205800 bytes_in 0 205800 station_ip 5.120.112.60 205800 port 103 205800 unique_id port 205800 remote_ip 10.8.1.58 205802 username barzegar 205802 mac 205802 bytes_out 0 205802 bytes_in 0 205802 station_ip 5.119.161.219 205802 port 104 205802 unique_id port 205802 remote_ip 10.8.1.6 205806 username alipour1506 205806 kill_reason Another user logged on this global unique id 205806 mac 205806 bytes_out 0 205806 bytes_in 0 205806 station_ip 83.122.255.114 205806 port 53 205806 unique_id port 205806 remote_ip 10.8.0.134 205807 username fezealinaghi 205807 mac 205807 bytes_out 0 205807 bytes_in 0 205807 station_ip 37.129.165.22 205807 port 45 205807 unique_id port 205810 username barzegar 205810 mac 205810 bytes_out 0 205810 bytes_in 0 205810 station_ip 5.119.161.219 205810 port 45 205810 unique_id port 205810 remote_ip 10.8.0.14 205812 username saeeddamghani 205812 unique_id port 205812 terminate_cause User-Request 205812 bytes_out 59206 205812 bytes_in 307839 205812 station_ip 83.123.163.254 205812 port 15730080 205812 nas_port_type Virtual 205812 remote_ip 5.5.5.250 205815 username pourshad 205815 kill_reason Another user logged on this global unique id 205815 mac 205815 bytes_out 0 205815 bytes_in 0 205815 station_ip 5.120.112.60 205815 port 103 205815 unique_id port 205817 username malekpoir 205817 kill_reason Another user logged on this global unique id 205817 mac 205817 bytes_out 0 205817 bytes_in 0 205817 station_ip 5.119.210.158 205817 port 102 205817 unique_id port 205817 remote_ip 10.8.1.70 205819 username motamedi9772 205819 mac 205819 bytes_out 0 205819 bytes_in 0 205819 station_ip 37.129.67.4 205819 port 54 205819 unique_id port 205819 remote_ip 10.8.0.62 205821 username alipour1506 205821 mac 205821 bytes_out 0 205821 bytes_in 0 205821 station_ip 83.122.255.114 205821 port 53 205821 unique_id port 205824 username motamedi9772 205824 mac 205824 bytes_out 0 205824 bytes_in 0 205824 station_ip 37.129.67.4 205824 port 54 205824 unique_id port 205824 remote_ip 10.8.0.62 205837 username motamedi9772 205837 mac 205837 bytes_out 0 205837 bytes_in 0 205837 station_ip 37.129.67.4 205837 port 54 205837 unique_id port 205837 remote_ip 10.8.0.62 205839 username kharazmi2920 205839 mac 205839 bytes_out 0 205839 bytes_in 0 205839 station_ip 83.122.166.21 205839 port 56 205839 unique_id port 205839 remote_ip 10.8.0.34 205842 username pourshad 205842 mac 205842 bytes_out 1754026 205842 bytes_in 28472386 205842 station_ip 5.120.112.60 205842 port 103 205842 unique_id port 205842 remote_ip 10.8.1.58 205843 username motamedi9772 205843 mac 205843 bytes_out 5473 205843 bytes_in 11545 205843 station_ip 37.129.67.4 205843 port 104 205843 unique_id port 205843 remote_ip 10.8.1.198 205844 username motamedi9772 205844 mac 205844 bytes_out 0 205844 bytes_in 0 205844 station_ip 37.129.67.4 205844 port 51 205844 unique_id port 205844 remote_ip 10.8.0.62 205847 username motamedi9772 205847 mac 205847 bytes_out 0 205847 bytes_in 0 205847 station_ip 37.129.67.4 205847 port 51 205847 unique_id port 205847 remote_ip 10.8.0.62 205853 username motamedi9772 205809 station_ip 83.123.163.254 205809 port 15730078 205809 nas_port_type Virtual 205809 remote_ip 5.5.5.250 205811 username saeeddamghani 205811 unique_id port 205811 terminate_cause User-Request 205811 bytes_out 73376 205811 bytes_in 1182226 205811 station_ip 83.123.163.254 205811 port 15730079 205811 nas_port_type Virtual 205811 remote_ip 5.5.5.250 205813 username motamedi9772 205813 mac 205813 bytes_out 0 205813 bytes_in 0 205813 station_ip 37.129.67.4 205813 port 54 205813 unique_id port 205813 remote_ip 10.8.0.62 205814 username motamedi9772 205814 mac 205814 bytes_out 0 205814 bytes_in 0 205814 station_ip 37.129.67.4 205814 port 54 205814 unique_id port 205814 remote_ip 10.8.0.62 205816 username saeeddamghani 205816 unique_id port 205816 terminate_cause User-Request 205816 bytes_out 74008 205816 bytes_in 387311 205816 station_ip 83.123.163.254 205816 port 15730082 205816 nas_port_type Virtual 205816 remote_ip 5.5.5.250 205818 username barzegar 205818 mac 205818 bytes_out 0 205818 bytes_in 0 205818 station_ip 5.119.161.219 205818 port 107 205818 unique_id port 205818 remote_ip 10.8.1.6 205825 username motamedi9772 205825 mac 205825 bytes_out 0 205825 bytes_in 0 205825 station_ip 37.129.67.4 205825 port 54 205825 unique_id port 205825 remote_ip 10.8.0.62 205828 username pourshad 205828 mac 205828 bytes_out 0 205828 bytes_in 0 205828 station_ip 5.120.112.60 205828 port 103 205828 unique_id port 205834 username barzegar 205834 mac 205834 bytes_out 2853 205834 bytes_in 5242 205834 station_ip 5.119.161.219 205834 port 104 205834 unique_id port 205834 remote_ip 10.8.1.6 205835 username fezealinaghi 205835 kill_reason Another user logged on this global unique id 205835 mac 205835 bytes_out 0 205835 bytes_in 0 205835 station_ip 37.129.165.22 205835 port 49 205835 unique_id port 205835 remote_ip 10.8.0.98 205836 username godarzi 205836 mac 205836 bytes_out 0 205836 bytes_in 0 205836 station_ip 5.202.98.177 205836 port 46 205836 unique_id port 205838 username motamedi9772 205838 mac 205838 bytes_out 0 205838 bytes_in 0 205838 station_ip 37.129.67.4 205838 port 46 205838 unique_id port 205838 remote_ip 10.8.0.62 205841 username barzegar 205841 mac 205841 bytes_out 0 205841 bytes_in 0 205841 station_ip 5.119.161.219 205841 port 51 205841 unique_id port 205841 remote_ip 10.8.0.14 205845 username motamedi9772 205845 mac 205845 bytes_out 0 205845 bytes_in 0 205845 station_ip 37.129.67.4 205845 port 51 205845 unique_id port 205845 remote_ip 10.8.0.62 205846 username pourshad 205846 mac 205846 bytes_out 127654 205846 bytes_in 1379920 205846 station_ip 5.120.112.60 205846 port 103 205846 unique_id port 205846 remote_ip 10.8.1.58 205848 username motamedi9772 205848 mac 205848 bytes_out 0 205848 bytes_in 0 205848 station_ip 37.129.67.4 205848 port 54 205848 unique_id port 205848 remote_ip 10.8.0.62 205850 username pourshad 205850 mac 205850 bytes_out 14017 205850 bytes_in 18599 205850 station_ip 5.120.112.60 205850 port 103 205850 unique_id port 205850 remote_ip 10.8.1.58 205855 username motamedi9772 205855 mac 205855 bytes_out 0 205855 bytes_in 0 205855 station_ip 37.129.67.4 205855 port 56 205855 unique_id port 205855 remote_ip 10.8.0.62 205856 username motamedi9772 205856 mac 205856 bytes_out 0 205856 bytes_in 0 205856 station_ip 37.129.67.4 205856 port 54 205856 unique_id port 205856 remote_ip 10.8.0.62 205859 username motamedi9772 205859 mac 205859 bytes_out 0 205859 bytes_in 0 205859 station_ip 37.129.67.4 205852 bytes_in 0 205852 station_ip 37.129.67.4 205852 port 54 205852 unique_id port 205852 remote_ip 10.8.0.62 205854 username motamedi9772 205854 mac 205854 bytes_out 0 205854 bytes_in 0 205854 station_ip 37.129.67.4 205854 port 54 205854 unique_id port 205854 remote_ip 10.8.0.62 205857 username motamedi9772 205857 mac 205857 bytes_out 0 205857 bytes_in 0 205857 station_ip 37.129.67.4 205857 port 54 205857 unique_id port 205857 remote_ip 10.8.0.62 205862 username motamedi9772 205862 mac 205862 bytes_out 0 205862 bytes_in 0 205862 station_ip 37.129.67.4 205862 port 54 205862 unique_id port 205862 remote_ip 10.8.0.62 205863 username morteza4424 205863 mac 205863 bytes_out 0 205863 bytes_in 0 205863 station_ip 37.129.90.5 205863 port 54 205863 unique_id port 205863 remote_ip 10.8.0.70 205864 username kalantary6037 205864 mac 205864 bytes_out 625814 205864 bytes_in 4790839 205864 station_ip 37.129.222.53 205864 port 111 205864 unique_id port 205864 remote_ip 10.8.1.150 205866 username barzegar 205866 mac 205866 bytes_out 0 205866 bytes_in 0 205866 station_ip 5.119.161.219 205866 port 54 205866 unique_id port 205866 remote_ip 10.8.0.14 205873 username barzegar 205873 mac 205873 bytes_out 0 205873 bytes_in 0 205873 station_ip 5.119.161.219 205873 port 56 205873 unique_id port 205873 remote_ip 10.8.0.14 205875 username fezealinaghi 205875 kill_reason Another user logged on this global unique id 205875 mac 205875 bytes_out 0 205875 bytes_in 0 205875 station_ip 37.129.165.22 205875 port 49 205875 unique_id port 205875 remote_ip 10.8.0.98 205881 username nilufarrajaei 205881 mac 205881 bytes_out 105409 205881 bytes_in 277455 205881 station_ip 37.129.16.57 205881 port 104 205881 unique_id port 205881 remote_ip 10.8.1.138 205882 username motamedi9772 205882 mac 205882 bytes_out 1940524 205882 bytes_in 3612579 205882 station_ip 37.129.15.148 205882 port 53 205882 unique_id port 205882 remote_ip 10.8.0.62 205885 username hatami 205885 mac 205885 bytes_out 0 205885 bytes_in 0 205885 station_ip 151.235.105.117 205885 port 115 205885 unique_id port 205886 username sekonji0496 205886 mac 205886 bytes_out 0 205886 bytes_in 0 205886 station_ip 83.123.108.186 205886 port 45 205886 unique_id port 205886 remote_ip 10.8.0.66 205888 username askarzadeh9013 205888 mac 205888 bytes_out 0 205888 bytes_in 0 205888 station_ip 83.123.152.209 205888 port 45 205888 unique_id port 205888 remote_ip 10.8.0.214 205890 username pourshad 205890 kill_reason Another user logged on this global unique id 205890 mac 205890 bytes_out 0 205890 bytes_in 0 205890 station_ip 5.120.112.60 205890 port 103 205890 unique_id port 205892 username motamedi9772 205892 mac 205892 bytes_out 0 205892 bytes_in 0 205892 station_ip 37.129.15.148 205892 port 109 205892 unique_id port 205892 remote_ip 10.8.1.198 205895 username barzegar 205895 mac 205895 bytes_out 7363 205895 bytes_in 13373 205895 station_ip 5.119.156.30 205895 port 113 205895 unique_id port 205895 remote_ip 10.8.1.6 205896 username motamedi9772 205896 mac 205896 bytes_out 5533 205896 bytes_in 12185 205896 station_ip 37.129.15.148 205896 port 111 205896 unique_id port 205896 remote_ip 10.8.1.198 205898 username fezealinaghi 205898 mac 205898 bytes_out 17432 205898 bytes_in 22967 205898 station_ip 37.129.165.22 205898 port 109 205898 unique_id port 205898 remote_ip 10.8.1.222 205900 username kalantary6037 205900 mac 205900 bytes_out 1542209 205900 bytes_in 13100377 205853 kill_reason Maximum check online fails reached 205853 mac 205853 bytes_out 0 205853 bytes_in 0 205853 station_ip 37.129.67.4 205853 port 51 205853 unique_id port 205858 username motamedi9772 205858 mac 205858 bytes_out 0 205858 bytes_in 0 205858 station_ip 37.129.67.4 205858 port 54 205858 unique_id port 205858 remote_ip 10.8.0.62 205860 username rashidi4690 205860 mac 205860 bytes_out 133776 205860 bytes_in 393897 205860 station_ip 5.119.81.21 205860 port 111 205860 unique_id port 205860 remote_ip 10.8.1.158 205861 username barzegar 205861 mac 205861 bytes_out 224137 205861 bytes_in 53727 205861 station_ip 5.119.161.219 205861 port 107 205861 unique_id port 205861 remote_ip 10.8.1.6 205865 username ghaderpour6649 205865 mac 205865 bytes_out 928975 205865 bytes_in 9393088 205865 station_ip 83.122.89.11 205865 port 109 205865 unique_id port 205865 remote_ip 10.8.1.246 205870 username amirzadeh1339 205870 unique_id port 205870 terminate_cause User-Request 205870 bytes_out 411962 205870 bytes_in 1662675 205870 station_ip 37.27.11.18 205870 port 15730083 205870 nas_port_type Virtual 205870 remote_ip 5.5.5.32 205871 username yaghobi 205871 mac 205871 bytes_out 0 205871 bytes_in 0 205871 station_ip 37.129.48.158 205871 port 53 205871 unique_id port 205871 remote_ip 10.8.0.174 205877 username askarzadeh9013 205877 mac 205877 bytes_out 0 205877 bytes_in 0 205877 station_ip 83.123.152.209 205877 port 57 205877 unique_id port 205877 remote_ip 10.8.0.214 205878 username kalantary6037 205878 mac 205878 bytes_out 1558601 205878 bytes_in 15125224 205878 station_ip 37.129.222.53 205878 port 107 205878 unique_id port 205878 remote_ip 10.8.1.150 205880 username askarzadeh9013 205880 mac 205880 bytes_out 85413 205880 bytes_in 234821 205880 station_ip 83.123.152.209 205880 port 45 205880 unique_id port 205880 remote_ip 10.8.0.214 205883 username motamedi9772 205883 mac 205883 bytes_out 0 205883 bytes_in 0 205883 station_ip 37.129.15.148 205883 port 45 205883 unique_id port 205883 remote_ip 10.8.0.62 205889 username fezealinaghi 205889 mac 205889 bytes_out 0 205889 bytes_in 0 205889 station_ip 37.129.165.22 205889 port 49 205889 unique_id port 205889 remote_ip 10.8.0.98 205891 username motamedi9772 205891 mac 205891 bytes_out 29612 205891 bytes_in 91809 205891 station_ip 37.129.15.148 205891 port 109 205891 unique_id port 205891 remote_ip 10.8.1.198 205893 username fezealinaghi 205893 mac 205893 bytes_out 155142 205893 bytes_in 957170 205893 station_ip 37.129.165.22 205893 port 111 205893 unique_id port 205893 remote_ip 10.8.1.222 205897 username motamedi9772 205897 mac 205897 bytes_out 0 205897 bytes_in 0 205897 station_ip 37.129.15.148 205897 port 53 205897 unique_id port 205897 remote_ip 10.8.0.62 205899 username motamedi9772 205899 mac 205899 bytes_out 0 205899 bytes_in 0 205899 station_ip 37.129.15.148 205899 port 53 205899 unique_id port 205899 remote_ip 10.8.0.62 205902 username motamedi9772 205902 mac 205902 bytes_out 0 205902 bytes_in 0 205902 station_ip 37.129.15.148 205902 port 56 205902 unique_id port 205902 remote_ip 10.8.0.62 205905 username barzegar 205905 mac 205905 bytes_out 0 205905 bytes_in 0 205905 station_ip 5.119.156.30 205905 port 103 205905 unique_id port 205905 remote_ip 10.8.1.6 205906 username sabaghnezhad 205906 mac 205906 bytes_out 11113 205906 bytes_in 25980 205906 station_ip 83.123.62.37 205906 port 53 205906 unique_id port 205906 remote_ip 10.8.0.18 205907 username malekpoir 205859 port 54 205859 unique_id port 205859 remote_ip 10.8.0.62 205867 username fezealinaghi 205867 mac 205867 bytes_out 0 205867 bytes_in 0 205867 station_ip 37.129.165.22 205867 port 49 205867 unique_id port 205868 username alipour1506 205868 mac 205868 bytes_out 0 205868 bytes_in 0 205868 station_ip 83.122.255.114 205868 port 53 205868 unique_id port 205868 remote_ip 10.8.0.134 205869 username barzegar 205869 mac 205869 bytes_out 0 205869 bytes_in 0 205869 station_ip 5.119.161.219 205869 port 109 205869 unique_id port 205869 remote_ip 10.8.1.6 205872 username pourshad 205872 kill_reason Another user logged on this global unique id 205872 mac 205872 bytes_out 0 205872 bytes_in 0 205872 station_ip 5.120.112.60 205872 port 103 205872 unique_id port 205872 remote_ip 10.8.1.58 205874 username sabaghnezhad 205874 mac 205874 bytes_out 0 205874 bytes_in 0 205874 station_ip 113.203.62.6 205874 port 45 205874 unique_id port 205874 remote_ip 10.8.0.18 205876 username godarzi 205876 mac 205876 bytes_out 0 205876 bytes_in 0 205876 station_ip 5.120.108.23 205876 port 45 205876 unique_id port 205876 remote_ip 10.8.0.146 205879 username fezealinaghi 205879 mac 205879 bytes_out 0 205879 bytes_in 0 205879 station_ip 37.129.165.22 205879 port 49 205879 unique_id port 205884 username motamedi9772 205884 mac 205884 bytes_out 0 205884 bytes_in 0 205884 station_ip 37.129.15.148 205884 port 45 205884 unique_id port 205884 remote_ip 10.8.0.62 205887 username askarzadeh9013 205887 mac 205887 bytes_out 0 205887 bytes_in 0 205887 station_ip 83.123.152.209 205887 port 57 205887 unique_id port 205887 remote_ip 10.8.0.214 205894 username sabaghnezhad 205894 mac 205894 bytes_out 0 205894 bytes_in 0 205894 station_ip 83.123.62.37 205894 port 56 205894 unique_id port 205894 remote_ip 10.8.0.18 205901 username askarzadeh9013 205901 mac 205901 bytes_out 0 205901 bytes_in 0 205901 station_ip 83.123.152.209 205901 port 45 205901 unique_id port 205901 remote_ip 10.8.0.214 205904 username pourshad 205904 mac 205904 bytes_out 0 205904 bytes_in 0 205904 station_ip 5.120.112.60 205904 port 103 205904 unique_id port 205908 username motamedi9772 205908 mac 205908 bytes_out 0 205908 bytes_in 0 205908 station_ip 37.129.15.148 205908 port 45 205908 unique_id port 205908 remote_ip 10.8.0.62 205910 username barzegar 205910 mac 205910 bytes_out 0 205910 bytes_in 0 205910 station_ip 5.119.156.30 205910 port 113 205910 unique_id port 205910 remote_ip 10.8.1.6 205913 username askarzadeh9013 205913 mac 205913 bytes_out 34699 205913 bytes_in 129709 205913 station_ip 83.123.152.209 205913 port 107 205913 unique_id port 205913 remote_ip 10.8.1.250 205914 username pourshad 205914 kill_reason Another user logged on this global unique id 205914 mac 205914 bytes_out 0 205914 bytes_in 0 205914 station_ip 5.120.112.60 205914 port 109 205914 unique_id port 205914 remote_ip 10.8.1.58 205918 username sekonji0496 205918 mac 205918 bytes_out 0 205918 bytes_in 0 205918 station_ip 83.122.61.12 205918 port 57 205918 unique_id port 205918 remote_ip 10.8.0.66 205922 username arash 205922 mac 205922 bytes_out 0 205922 bytes_in 0 205922 station_ip 37.27.32.87 205922 port 57 205922 unique_id port 205922 remote_ip 10.8.0.162 205925 username pourshad 205925 kill_reason Another user logged on this global unique id 205925 mac 205925 bytes_out 0 205925 bytes_in 0 205925 station_ip 5.120.112.60 205925 port 109 205925 unique_id port 205927 username barzegar 205900 station_ip 37.129.222.53 205900 port 107 205900 unique_id port 205900 remote_ip 10.8.1.150 205903 username motamedi9772 205903 mac 205903 bytes_out 0 205903 bytes_in 0 205903 station_ip 37.129.15.148 205903 port 45 205903 unique_id port 205903 remote_ip 10.8.0.62 205909 username barzegar 205909 mac 205909 bytes_out 0 205909 bytes_in 0 205909 station_ip 5.119.156.30 205909 port 45 205909 unique_id port 205909 remote_ip 10.8.0.14 205912 username mohammadjavad 205912 mac 205912 bytes_out 0 205912 bytes_in 0 205912 station_ip 83.122.219.111 205912 port 45 205912 unique_id port 205912 remote_ip 10.8.0.58 205917 username barzegar 205917 mac 205917 bytes_out 0 205917 bytes_in 0 205917 station_ip 5.119.156.30 205917 port 107 205917 unique_id port 205917 remote_ip 10.8.1.6 205921 username sekonji0496 205921 mac 205921 bytes_out 0 205921 bytes_in 0 205921 station_ip 83.122.61.12 205921 port 56 205921 unique_id port 205921 remote_ip 10.8.0.66 205924 username sekonji0496 205924 mac 205924 bytes_out 0 205924 bytes_in 0 205924 station_ip 83.122.61.12 205924 port 57 205924 unique_id port 205924 remote_ip 10.8.0.66 205926 username alipour1506 205926 mac 205926 bytes_out 0 205926 bytes_in 0 205926 station_ip 83.122.255.114 205926 port 54 205926 unique_id port 205926 remote_ip 10.8.0.134 205928 username farhad3 205928 mac 205928 bytes_out 0 205928 bytes_in 0 205928 station_ip 5.120.165.123 205928 port 113 205928 unique_id port 205928 remote_ip 10.8.1.38 205930 username kalantary6037 205930 mac 205930 bytes_out 950247 205930 bytes_in 9988876 205930 station_ip 37.129.239.113 205930 port 104 205930 unique_id port 205930 remote_ip 10.8.1.150 205931 username ghaderpour6649 205931 mac 205931 bytes_out 3102647 205931 bytes_in 38662619 205931 station_ip 37.129.174.174 205931 port 103 205931 unique_id port 205931 remote_ip 10.8.1.246 205935 username askarzadeh9013 205935 mac 205935 bytes_out 0 205935 bytes_in 0 205935 station_ip 83.123.152.209 205935 port 57 205935 unique_id port 205935 remote_ip 10.8.0.214 205939 username sekonji0496 205939 mac 205939 bytes_out 0 205939 bytes_in 0 205939 station_ip 37.129.126.219 205939 port 56 205939 unique_id port 205939 remote_ip 10.8.0.66 205940 username sekonji0496 205940 mac 205940 bytes_out 0 205940 bytes_in 0 205940 station_ip 37.129.126.219 205940 port 111 205940 unique_id port 205940 remote_ip 10.8.1.98 205942 username khalili2 205942 kill_reason Another user logged on this global unique id 205942 mac 205942 bytes_out 0 205942 bytes_in 0 205942 station_ip 5.119.34.158 205942 port 108 205942 unique_id port 205946 username fezealinaghi 205946 mac 205946 bytes_out 9857 205946 bytes_in 15447 205946 station_ip 37.129.165.22 205946 port 103 205946 unique_id port 205946 remote_ip 10.8.1.222 205949 username sekonji0496 205949 kill_reason Maximum check online fails reached 205949 mac 205949 bytes_out 0 205949 bytes_in 0 205949 station_ip 37.129.126.219 205949 port 114 205949 unique_id port 205954 username askarzadeh9013 205954 kill_reason Another user logged on this global unique id 205954 mac 205954 bytes_out 0 205954 bytes_in 0 205954 station_ip 83.123.152.209 205954 port 54 205954 unique_id port 205957 username barzegar 205957 mac 205957 bytes_out 0 205957 bytes_in 0 205957 station_ip 5.119.156.30 205957 port 115 205957 unique_id port 205957 remote_ip 10.8.1.6 205958 username alipour1506 205958 mac 205958 bytes_out 214269 205958 bytes_in 2518417 205958 station_ip 83.122.255.114 205907 kill_reason Another user logged on this global unique id 205907 mac 205907 bytes_out 0 205907 bytes_in 0 205907 station_ip 5.119.210.158 205907 port 102 205907 unique_id port 205911 username fezealinaghi 205911 mac 205911 bytes_out 0 205911 bytes_in 0 205911 station_ip 37.129.165.22 205911 port 111 205911 unique_id port 205911 remote_ip 10.8.1.222 205915 username askarzadeh9013 205915 mac 205915 bytes_out 0 205915 bytes_in 0 205915 station_ip 83.123.152.209 205915 port 56 205915 unique_id port 205915 remote_ip 10.8.0.214 205916 username dortaj3792 205916 mac 205916 bytes_out 0 205916 bytes_in 0 205916 station_ip 5.120.1.122 205916 port 53 205916 unique_id port 205916 remote_ip 10.8.0.30 205919 username nilufarrajaei 205919 mac 205919 bytes_out 176723 205919 bytes_in 857074 205919 station_ip 37.129.16.57 205919 port 104 205919 unique_id port 205919 remote_ip 10.8.1.138 205920 username barzegar 205920 mac 205920 bytes_out 0 205920 bytes_in 0 205920 station_ip 5.119.156.30 205920 port 104 205920 unique_id port 205920 remote_ip 10.8.1.6 205923 username sekonji0496 205923 mac 205923 bytes_out 0 205923 bytes_in 0 205923 station_ip 46.225.215.194 205923 port 56 205923 unique_id port 205923 remote_ip 10.8.0.66 205929 username barzegar 205929 mac 205929 bytes_out 0 205929 bytes_in 0 205929 station_ip 5.119.156.30 205929 port 113 205929 unique_id port 205929 remote_ip 10.8.1.6 205933 username pourshad 205933 kill_reason Another user logged on this global unique id 205933 mac 205933 bytes_out 0 205933 bytes_in 0 205933 station_ip 5.120.112.60 205933 port 109 205933 unique_id port 205936 username askarzadeh9013 205936 mac 205936 bytes_out 0 205936 bytes_in 0 205936 station_ip 83.123.152.209 205936 port 58 205936 unique_id port 205936 remote_ip 10.8.0.214 205943 username pourshad 205943 kill_reason Another user logged on this global unique id 205943 mac 205943 bytes_out 0 205943 bytes_in 0 205943 station_ip 5.120.112.60 205943 port 109 205943 unique_id port 205945 username askarzadeh9013 205945 mac 205945 bytes_out 0 205945 bytes_in 0 205945 station_ip 83.123.152.209 205945 port 57 205945 unique_id port 205945 remote_ip 10.8.0.214 205948 username alipour1506 205948 mac 205948 bytes_out 0 205948 bytes_in 0 205948 station_ip 83.122.255.114 205948 port 58 205948 unique_id port 205948 remote_ip 10.8.0.134 205951 username askarzadeh9013 205951 kill_reason Another user logged on this global unique id 205951 mac 205951 bytes_out 0 205951 bytes_in 0 205951 station_ip 83.123.152.209 205951 port 54 205951 unique_id port 205951 remote_ip 10.8.0.214 205952 username pourshad 205952 kill_reason Another user logged on this global unique id 205952 mac 205952 bytes_out 0 205952 bytes_in 0 205952 station_ip 5.120.112.60 205952 port 109 205952 unique_id port 205953 username barzegar 205953 mac 205953 bytes_out 0 205953 bytes_in 0 205953 station_ip 5.119.156.30 205953 port 58 205953 unique_id port 205953 remote_ip 10.8.0.14 205955 username barzegar 205955 mac 205955 bytes_out 0 205955 bytes_in 0 205955 station_ip 5.119.156.30 205955 port 115 205955 unique_id port 205955 remote_ip 10.8.1.6 205962 username kalantary6037 205962 mac 205962 bytes_out 0 205962 bytes_in 0 205962 station_ip 37.129.195.113 205962 port 104 205962 unique_id port 205962 remote_ip 10.8.1.150 205966 username pourshad 205966 kill_reason Another user logged on this global unique id 205966 mac 205966 bytes_out 0 205966 bytes_in 0 205966 station_ip 5.120.112.60 205966 port 109 205966 unique_id port 205927 mac 205927 bytes_out 0 205927 bytes_in 0 205927 station_ip 5.119.156.30 205927 port 57 205927 unique_id port 205927 remote_ip 10.8.0.14 205932 username fezealinaghi 205932 mac 205932 bytes_out 3229886 205932 bytes_in 32989788 205932 station_ip 37.129.165.22 205932 port 111 205932 unique_id port 205932 remote_ip 10.8.1.222 205934 username askarzadeh9013 205934 mac 205934 bytes_out 0 205934 bytes_in 0 205934 station_ip 83.123.152.209 205934 port 58 205934 unique_id port 205934 remote_ip 10.8.0.214 205937 username fezealinaghi 205937 mac 205937 bytes_out 28461 205937 bytes_in 54444 205937 station_ip 37.129.165.22 205937 port 103 205937 unique_id port 205937 remote_ip 10.8.1.222 205938 username alipour1506 205938 mac 205938 bytes_out 0 205938 bytes_in 0 205938 station_ip 83.122.255.114 205938 port 54 205938 unique_id port 205938 remote_ip 10.8.0.134 205941 username barzegar 205941 mac 205941 bytes_out 0 205941 bytes_in 0 205941 station_ip 5.119.156.30 205941 port 104 205941 unique_id port 205941 remote_ip 10.8.1.6 205944 username fezealinaghi 205944 mac 205944 bytes_out 9744 205944 bytes_in 24429 205944 station_ip 37.129.165.22 205944 port 103 205944 unique_id port 205944 remote_ip 10.8.1.222 205947 username kalantary6037 205947 mac 205947 bytes_out 166587 205947 bytes_in 804034 205947 station_ip 37.129.235.233 205947 port 104 205947 unique_id port 205947 remote_ip 10.8.1.150 205950 username barzegar 205950 mac 205950 bytes_out 0 205950 bytes_in 0 205950 station_ip 5.119.156.30 205950 port 104 205950 unique_id port 205950 remote_ip 10.8.1.6 205956 username pourshad 205956 kill_reason Another user logged on this global unique id 205956 mac 205956 bytes_out 0 205956 bytes_in 0 205956 station_ip 5.120.112.60 205956 port 109 205956 unique_id port 205959 username nilufarrajaei 205959 mac 205959 bytes_out 784871 205959 bytes_in 5886790 205959 station_ip 37.129.16.57 205959 port 107 205959 unique_id port 205959 remote_ip 10.8.1.138 205960 username barzegar8595 205960 mac 205960 bytes_out 459669 205960 bytes_in 531628 205960 station_ip 46.225.215.194 205960 port 111 205960 unique_id port 205960 remote_ip 10.8.1.50 205961 username alipour1506 205961 mac 205961 bytes_out 0 205961 bytes_in 0 205961 station_ip 83.122.255.114 205961 port 58 205961 unique_id port 205961 remote_ip 10.8.0.134 205965 username fezealinaghi 205965 mac 205965 bytes_out 0 205965 bytes_in 0 205965 station_ip 37.129.165.22 205965 port 103 205965 unique_id port 205965 remote_ip 10.8.1.222 205968 username abdolahi0311 205968 mac 205968 bytes_out 3038196 205968 bytes_in 35779771 205968 station_ip 5.119.159.208 205968 port 115 205968 unique_id port 205968 remote_ip 10.8.1.190 205971 username motamedi9772 205971 mac 205971 bytes_out 0 205971 bytes_in 0 205971 station_ip 37.129.98.168 205971 port 58 205971 unique_id port 205971 remote_ip 10.8.0.62 205973 username barzegar 205973 mac 205973 bytes_out 0 205973 bytes_in 0 205973 station_ip 5.119.156.30 205973 port 59 205973 unique_id port 205973 remote_ip 10.8.0.14 205974 username barzegar 205974 mac 205974 bytes_out 0 205974 bytes_in 0 205974 station_ip 5.119.156.30 205974 port 117 205974 unique_id port 205974 remote_ip 10.8.1.6 205975 username mohammadjavad 205975 mac 205975 bytes_out 0 205975 bytes_in 0 205975 station_ip 83.122.219.111 205975 port 103 205975 unique_id port 205975 remote_ip 10.8.1.82 205977 username ghaderpour6649 205977 mac 205958 port 56 205958 unique_id port 205958 remote_ip 10.8.0.134 205963 username askarzadeh9013 205963 kill_reason Another user logged on this global unique id 205963 mac 205963 bytes_out 0 205963 bytes_in 0 205963 station_ip 83.123.152.209 205963 port 54 205963 unique_id port 205964 username barzegar 205964 mac 205964 bytes_out 0 205964 bytes_in 0 205964 station_ip 5.119.156.30 205964 port 56 205964 unique_id port 205964 remote_ip 10.8.0.14 205978 username motamedi9772 205978 mac 205978 bytes_out 0 205978 bytes_in 0 205978 station_ip 37.129.98.168 205978 port 117 205978 unique_id port 205978 remote_ip 10.8.1.198 205981 username motamedi9772 205981 mac 205981 bytes_out 0 205981 bytes_in 0 205981 station_ip 37.129.98.168 205981 port 46 205981 unique_id port 205981 remote_ip 10.8.0.62 205984 username askarzadeh9013 205984 mac 205984 bytes_out 0 205984 bytes_in 0 205984 station_ip 83.123.152.209 205984 port 54 205984 unique_id port 205994 username nilufarrajaei 205994 kill_reason Another user logged on this global unique id 205994 mac 205994 bytes_out 0 205994 bytes_in 0 205994 station_ip 37.129.16.57 205994 port 107 205994 unique_id port 205994 remote_ip 10.8.1.138 205997 username kamali3 205997 mac 205997 bytes_out 247853 205997 bytes_in 173713 205997 station_ip 5.119.129.115 205997 port 116 205997 unique_id port 205997 remote_ip 10.8.1.166 206001 username rahim 206001 kill_reason Another user logged on this global unique id 206001 mac 206001 bytes_out 0 206001 bytes_in 0 206001 station_ip 5.119.142.137 206001 port 118 206001 unique_id port 206001 remote_ip 10.8.1.90 206003 username nilufarrajaei 206003 mac 206003 bytes_out 193739 206003 bytes_in 2368091 206003 station_ip 37.129.16.57 206003 port 107 206003 unique_id port 206003 remote_ip 10.8.1.138 206004 username askarzadeh9013 206004 mac 206004 bytes_out 0 206004 bytes_in 0 206004 station_ip 83.123.152.209 206004 port 45 206004 unique_id port 206004 remote_ip 10.8.0.214 206006 username khademi 206006 mac 206006 bytes_out 0 206006 bytes_in 0 206006 station_ip 83.123.49.108 206006 port 56 206006 unique_id port 206006 remote_ip 10.8.0.226 206009 username yaghobi 206009 mac 206009 bytes_out 52228 206009 bytes_in 85278 206009 station_ip 37.129.47.246 206009 port 46 206009 unique_id port 206009 remote_ip 10.8.0.174 206025 username pourshad 206025 mac 206025 bytes_out 0 206025 bytes_in 0 206025 station_ip 5.120.112.60 206025 port 103 206025 unique_id port 206033 username kharazmi2920 206033 mac 206033 bytes_out 0 206033 bytes_in 0 206033 station_ip 83.122.166.21 206033 port 57 206033 unique_id port 206033 remote_ip 10.8.0.34 206042 username godarzi 206042 mac 206042 bytes_out 0 206042 bytes_in 0 206042 station_ip 5.202.98.177 206042 port 116 206042 unique_id port 206042 remote_ip 10.8.1.78 206043 username esmaeili1522 206043 mac 206043 bytes_out 0 206043 bytes_in 0 206043 station_ip 5.120.83.190 206043 port 115 206043 unique_id port 206043 remote_ip 10.8.1.106 206046 username fezealinaghi 206046 kill_reason Another user logged on this global unique id 206046 mac 206046 bytes_out 0 206046 bytes_in 0 206046 station_ip 37.129.156.170 206046 port 107 206046 unique_id port 206046 remote_ip 10.8.1.222 206047 username khademi 206047 kill_reason Another user logged on this global unique id 206047 mac 206047 bytes_out 0 206047 bytes_in 0 206047 station_ip 83.123.49.108 206047 port 45 206047 unique_id port 206047 remote_ip 10.8.0.226 206050 username askarzadeh9013 206050 mac 206050 bytes_out 608737 205967 username askarzadeh9013 205967 kill_reason Another user logged on this global unique id 205967 mac 205967 bytes_out 0 205967 bytes_in 0 205967 station_ip 83.123.152.209 205967 port 54 205967 unique_id port 205969 username aminvpn 205969 mac 205969 bytes_out 1896764 205969 bytes_in 7742037 205969 station_ip 37.129.199.51 205969 port 46 205969 unique_id port 205969 remote_ip 10.8.0.206 205970 username mohammadjavad 205970 mac 205970 bytes_out 0 205970 bytes_in 0 205970 station_ip 83.122.219.111 205970 port 45 205970 unique_id port 205970 remote_ip 10.8.0.58 205972 username motamedi9772 205972 mac 205972 bytes_out 0 205972 bytes_in 0 205972 station_ip 37.129.98.168 205972 port 116 205972 unique_id port 205972 remote_ip 10.8.1.198 205976 username pourshad 205976 kill_reason Another user logged on this global unique id 205976 mac 205976 bytes_out 0 205976 bytes_in 0 205976 station_ip 5.120.112.60 205976 port 109 205976 unique_id port 205980 username pourshad 205980 mac 205980 bytes_out 0 205980 bytes_in 0 205980 station_ip 5.120.112.60 205980 port 109 205980 unique_id port 205983 username aminvpn 205983 unique_id port 205983 terminate_cause Lost-Carrier 205983 bytes_out 951921 205983 bytes_in 2724127 205983 station_ip 37.129.149.109 205983 port 15730088 205983 nas_port_type Virtual 205983 remote_ip 5.5.5.255 205985 username amirzadeh1339 205985 unique_id port 205985 terminate_cause User-Request 205985 bytes_out 27324174 205985 bytes_in 765661777 205985 station_ip 37.27.11.18 205985 port 15730085 205985 nas_port_type Virtual 205985 remote_ip 5.5.5.32 205987 username askarzadeh9013 205987 mac 205987 bytes_out 0 205987 bytes_in 0 205987 station_ip 83.123.152.209 205987 port 46 205987 unique_id port 205987 remote_ip 10.8.0.214 205990 username godarzi 205990 mac 205990 bytes_out 0 205990 bytes_in 0 205990 station_ip 5.120.108.23 205990 port 49 205990 unique_id port 205990 remote_ip 10.8.0.146 205992 username yaghobi 205992 mac 205992 bytes_out 26516 205992 bytes_in 35748 205992 station_ip 37.129.47.246 205992 port 54 205992 unique_id port 205992 remote_ip 10.8.0.174 205993 username barzegar 205993 mac 205993 bytes_out 59339 205993 bytes_in 167846 205993 station_ip 5.119.156.30 205993 port 109 205993 unique_id port 205993 remote_ip 10.8.1.6 205996 username barzegar 205996 mac 205996 bytes_out 0 205996 bytes_in 0 205996 station_ip 5.119.156.30 205996 port 109 205996 unique_id port 205996 remote_ip 10.8.1.6 205998 username barzegar 205998 mac 205998 bytes_out 0 205998 bytes_in 0 205998 station_ip 5.119.156.30 205998 port 46 205998 unique_id port 205998 remote_ip 10.8.0.14 206000 username malekpoir 206000 kill_reason Another user logged on this global unique id 206000 mac 206000 bytes_out 0 206000 bytes_in 0 206000 station_ip 5.119.210.158 206000 port 102 206000 unique_id port 206002 username pourshad 206002 kill_reason Another user logged on this global unique id 206002 mac 206002 bytes_out 0 206002 bytes_in 0 206002 station_ip 5.120.112.60 206002 port 103 206002 unique_id port 206002 remote_ip 10.8.1.58 206007 username majidsarmast 206007 mac 206007 bytes_out 720566 206007 bytes_in 8044129 206007 station_ip 83.123.232.180 206007 port 104 206007 unique_id port 206007 remote_ip 10.8.1.114 206008 username farhad3 206008 mac 206008 bytes_out 0 206008 bytes_in 0 206008 station_ip 5.120.165.123 206008 port 49 206008 unique_id port 206008 remote_ip 10.8.0.46 206012 username barzegar 206012 mac 206012 bytes_out 5712 206012 bytes_in 6921 206012 station_ip 5.119.156.30 205977 bytes_out 181223 205977 bytes_in 1699131 205977 station_ip 113.203.52.208 205977 port 116 205977 unique_id port 205977 remote_ip 10.8.1.246 205979 username barzegar 205979 mac 205979 bytes_out 0 205979 bytes_in 0 205979 station_ip 5.119.156.30 205979 port 103 205979 unique_id port 205979 remote_ip 10.8.1.6 205982 username alipour1506 205982 mac 205982 bytes_out 0 205982 bytes_in 0 205982 station_ip 83.122.255.114 205982 port 111 205982 unique_id port 205982 remote_ip 10.8.1.86 205986 username mammad 205986 unique_id port 205986 terminate_cause User-Request 205986 bytes_out 3016316 205986 bytes_in 42486775 205986 station_ip 5.233.68.7 205986 port 15730093 205986 nas_port_type Virtual 205986 remote_ip 5.5.5.245 205988 username mohammadjavad 205988 mac 205988 bytes_out 0 205988 bytes_in 0 205988 station_ip 83.122.194.71 205988 port 117 205988 unique_id port 205988 remote_ip 10.8.1.82 205989 username yaghobi 205989 mac 205989 bytes_out 1156291 205989 bytes_in 1544936 205989 station_ip 37.129.47.246 205989 port 45 205989 unique_id port 205989 remote_ip 10.8.0.174 205991 username askarzadeh9013 205991 mac 205991 bytes_out 0 205991 bytes_in 0 205991 station_ip 83.123.152.209 205991 port 46 205991 unique_id port 205991 remote_ip 10.8.0.214 205995 username sabaghnezhad 205995 mac 205995 bytes_out 0 205995 bytes_in 0 205995 station_ip 83.123.62.37 205995 port 53 205995 unique_id port 205995 remote_ip 10.8.0.18 205999 username nilufarrajaei 205999 mac 205999 bytes_out 0 205999 bytes_in 0 205999 station_ip 37.129.16.57 205999 port 107 205999 unique_id port 206005 username farhad3 206005 mac 206005 bytes_out 0 206005 bytes_in 0 206005 station_ip 5.120.165.123 206005 port 49 206005 unique_id port 206005 remote_ip 10.8.0.46 206010 username motamedi9772 206010 mac 206010 bytes_out 10976 206010 bytes_in 29924 206010 station_ip 37.129.111.252 206010 port 45 206010 unique_id port 206010 remote_ip 10.8.0.62 206011 username kalantary6037 206011 mac 206011 bytes_out 251287 206011 bytes_in 1152443 206011 station_ip 37.129.192.37 206011 port 117 206011 unique_id port 206011 remote_ip 10.8.1.150 206013 username kamali3 206013 mac 206013 bytes_out 39275 206013 bytes_in 85469 206013 station_ip 5.119.129.115 206013 port 109 206013 unique_id port 206013 remote_ip 10.8.1.166 206014 username farhad3 206014 mac 206014 bytes_out 55831 206014 bytes_in 210457 206014 station_ip 5.120.165.123 206014 port 120 206014 unique_id port 206014 remote_ip 10.8.1.38 206017 username rahim 206017 mac 206017 bytes_out 0 206017 bytes_in 0 206017 station_ip 5.119.142.137 206017 port 118 206017 unique_id port 206019 username kalantary6037 206019 mac 206019 bytes_out 97191 206019 bytes_in 177106 206019 station_ip 37.129.192.37 206019 port 104 206019 unique_id port 206019 remote_ip 10.8.1.150 206022 username godarzi 206022 mac 206022 bytes_out 372988 206022 bytes_in 1014991 206022 station_ip 5.202.98.177 206022 port 117 206022 unique_id port 206022 remote_ip 10.8.1.78 206026 username askarzadeh9013 206026 mac 206026 bytes_out 71773 206026 bytes_in 261927 206026 station_ip 83.123.251.173 206026 port 46 206026 unique_id port 206026 remote_ip 10.8.0.214 206028 username nilufarrajaei 206028 mac 206028 bytes_out 0 206028 bytes_in 0 206028 station_ip 37.129.16.57 206028 port 107 206028 unique_id port 206029 username askarzadeh9013 206029 mac 206029 bytes_out 0 206029 bytes_in 0 206029 station_ip 83.123.251.173 206029 port 49 206012 port 104 206012 unique_id port 206012 remote_ip 10.8.1.6 206015 username rahim 206015 kill_reason Another user logged on this global unique id 206015 mac 206015 bytes_out 0 206015 bytes_in 0 206015 station_ip 5.119.142.137 206015 port 118 206015 unique_id port 206016 username barzegar 206016 mac 206016 bytes_out 0 206016 bytes_in 0 206016 station_ip 5.119.156.30 206016 port 46 206016 unique_id port 206016 remote_ip 10.8.0.14 206018 username farhad3 206018 mac 206018 bytes_out 0 206018 bytes_in 0 206018 station_ip 5.120.165.123 206018 port 120 206018 unique_id port 206018 remote_ip 10.8.1.38 206020 username fezealinaghi 206020 kill_reason Another user logged on this global unique id 206020 mac 206020 bytes_out 0 206020 bytes_in 0 206020 station_ip 37.129.156.170 206020 port 115 206020 unique_id port 206020 remote_ip 10.8.1.222 206021 username abdolahi0311 206021 mac 206021 bytes_out 0 206021 bytes_in 0 206021 station_ip 5.119.159.208 206021 port 116 206021 unique_id port 206021 remote_ip 10.8.1.190 206023 username yaghobi 206023 mac 206023 bytes_out 0 206023 bytes_in 0 206023 station_ip 37.129.47.246 206023 port 46 206023 unique_id port 206023 remote_ip 10.8.0.174 206024 username barzegar 206024 mac 206024 bytes_out 0 206024 bytes_in 0 206024 station_ip 5.119.156.30 206024 port 49 206024 unique_id port 206024 remote_ip 10.8.0.14 206027 username nilufarrajaei 206027 kill_reason Another user logged on this global unique id 206027 mac 206027 bytes_out 0 206027 bytes_in 0 206027 station_ip 37.129.16.57 206027 port 107 206027 unique_id port 206027 remote_ip 10.8.1.138 206031 username askarzadeh9013 206031 mac 206031 bytes_out 0 206031 bytes_in 0 206031 station_ip 83.123.251.173 206031 port 49 206031 unique_id port 206031 remote_ip 10.8.0.214 206036 username teymori5660 206036 mac 206036 bytes_out 0 206036 bytes_in 0 206036 station_ip 5.120.43.180 206036 port 116 206036 unique_id port 206036 remote_ip 10.8.1.14 206037 username farhad3 206037 mac 206037 bytes_out 105675 206037 bytes_in 812406 206037 station_ip 5.120.165.123 206037 port 117 206037 unique_id port 206037 remote_ip 10.8.1.38 206038 username khalili2 206038 kill_reason Another user logged on this global unique id 206038 mac 206038 bytes_out 0 206038 bytes_in 0 206038 station_ip 5.119.34.158 206038 port 108 206038 unique_id port 206039 username malekpoir 206039 mac 206039 bytes_out 0 206039 bytes_in 0 206039 station_ip 5.119.210.158 206039 port 102 206039 unique_id port 206041 username majidsarmast 206041 mac 206041 bytes_out 3717163 206041 bytes_in 37177630 206041 station_ip 83.123.232.180 206041 port 119 206041 unique_id port 206041 remote_ip 10.8.1.114 206048 username askarzadeh9013 206048 mac 206048 bytes_out 0 206048 bytes_in 0 206048 station_ip 83.123.251.173 206048 port 54 206048 unique_id port 206048 remote_ip 10.8.0.214 206049 username barzegar 206049 mac 206049 bytes_out 0 206049 bytes_in 0 206049 station_ip 5.119.156.30 206049 port 118 206049 unique_id port 206049 remote_ip 10.8.1.6 206051 username khademi 206051 kill_reason Another user logged on this global unique id 206051 mac 206051 bytes_out 0 206051 bytes_in 0 206051 station_ip 83.123.49.108 206051 port 45 206051 unique_id port 206053 username esmaeilkazemi 206053 mac 206053 bytes_out 0 206053 bytes_in 0 206053 station_ip 83.122.113.81 206053 port 56 206053 unique_id port 206053 remote_ip 10.8.0.86 206059 username hosseine 206059 kill_reason Another user logged on this global unique id 206059 mac 206029 unique_id port 206029 remote_ip 10.8.0.214 206030 username godarzi 206030 mac 206030 bytes_out 61801 206030 bytes_in 150638 206030 station_ip 5.202.98.177 206030 port 107 206030 unique_id port 206030 remote_ip 10.8.1.78 206032 username fezealinaghi 206032 mac 206032 bytes_out 0 206032 bytes_in 0 206032 station_ip 37.129.156.170 206032 port 115 206032 unique_id port 206034 username pourshad 206034 kill_reason Another user logged on this global unique id 206034 mac 206034 bytes_out 0 206034 bytes_in 0 206034 station_ip 5.120.112.60 206034 port 103 206034 unique_id port 206034 remote_ip 10.8.1.58 206035 username barzegar 206035 mac 206035 bytes_out 0 206035 bytes_in 0 206035 station_ip 5.119.156.30 206035 port 118 206035 unique_id port 206035 remote_ip 10.8.1.6 206040 username askarzadeh9013 206040 mac 206040 bytes_out 0 206040 bytes_in 0 206040 station_ip 83.123.251.173 206040 port 53 206040 unique_id port 206040 remote_ip 10.8.0.214 206044 username esmaeilkazemi 206044 mac 206044 bytes_out 0 206044 bytes_in 0 206044 station_ip 83.122.113.81 206044 port 53 206044 unique_id port 206044 remote_ip 10.8.0.86 206045 username barzegar 206045 mac 206045 bytes_out 2327 206045 bytes_in 5162 206045 station_ip 5.119.156.30 206045 port 115 206045 unique_id port 206045 remote_ip 10.8.1.6 206052 username esmaeilkazemi 206052 kill_reason Maximum check online fails reached 206052 mac 206052 bytes_out 0 206052 bytes_in 0 206052 station_ip 83.122.113.81 206052 port 54 206052 unique_id port 206055 username pourshad 206055 kill_reason Another user logged on this global unique id 206055 mac 206055 bytes_out 0 206055 bytes_in 0 206055 station_ip 5.120.112.60 206055 port 103 206055 unique_id port 206056 username khademi 206056 kill_reason Another user logged on this global unique id 206056 mac 206056 bytes_out 0 206056 bytes_in 0 206056 station_ip 83.123.49.108 206056 port 45 206056 unique_id port 206060 username pourshad 206060 kill_reason Another user logged on this global unique id 206060 mac 206060 bytes_out 0 206060 bytes_in 0 206060 station_ip 5.120.112.60 206060 port 103 206060 unique_id port 206063 username esmaeilkazemi 206063 mac 206063 bytes_out 10731 206063 bytes_in 30948 206063 station_ip 83.122.113.81 206063 port 57 206063 unique_id port 206063 remote_ip 10.8.0.86 206065 username saeed9658 206065 kill_reason Relative expiration date has reached 206065 mac 206065 bytes_out 0 206065 bytes_in 0 206065 station_ip 5.119.124.210 206065 port 115 206065 unique_id port 206068 username nilufarrajaei 206068 mac 206068 bytes_out 0 206068 bytes_in 0 206068 station_ip 37.129.16.57 206068 port 46 206068 unique_id port 206068 remote_ip 10.8.0.94 206073 username barzegar 206073 mac 206073 bytes_out 0 206073 bytes_in 0 206073 station_ip 5.119.156.30 206073 port 104 206073 unique_id port 206073 remote_ip 10.8.1.6 206075 username pourshad 206075 kill_reason Another user logged on this global unique id 206075 mac 206075 bytes_out 0 206075 bytes_in 0 206075 station_ip 5.120.112.60 206075 port 103 206075 unique_id port 206077 username pourshad 206077 kill_reason Another user logged on this global unique id 206077 mac 206077 bytes_out 0 206077 bytes_in 0 206077 station_ip 5.120.112.60 206077 port 103 206077 unique_id port 206081 username esmaeili1522 206081 kill_reason Another user logged on this global unique id 206081 mac 206081 bytes_out 0 206081 bytes_in 0 206081 station_ip 5.120.83.190 206081 port 56 206081 unique_id port 206083 username yaghobi 206083 mac 206083 bytes_out 0 206083 bytes_in 0 206050 bytes_in 7174487 206050 station_ip 83.123.251.173 206050 port 116 206050 unique_id port 206050 remote_ip 10.8.1.250 206054 username tahmorsi 206054 mac 206054 bytes_out 1868145 206054 bytes_in 18834200 206054 station_ip 86.57.95.162 206054 port 113 206054 unique_id port 206054 remote_ip 10.8.1.102 206057 username fezealinaghi 206057 kill_reason Another user logged on this global unique id 206057 mac 206057 bytes_out 0 206057 bytes_in 0 206057 station_ip 37.129.156.170 206057 port 107 206057 unique_id port 206058 username ghaderpour6649 206058 mac 206058 bytes_out 2756297 206058 bytes_in 33263075 206058 station_ip 83.123.144.197 206058 port 115 206058 unique_id port 206058 remote_ip 10.8.1.246 206066 username barzegar 206066 mac 206066 bytes_out 0 206066 bytes_in 0 206066 station_ip 5.119.156.30 206066 port 113 206066 unique_id port 206066 remote_ip 10.8.1.6 206069 username aminvpns6 206069 mac 206069 bytes_out 0 206069 bytes_in 0 206069 station_ip 5.119.127.46 206069 port 53 206069 unique_id port 206069 remote_ip 10.8.0.210 206070 username esmaeili1522 206070 kill_reason Another user logged on this global unique id 206070 mac 206070 bytes_out 0 206070 bytes_in 0 206070 station_ip 5.120.83.190 206070 port 56 206070 unique_id port 206070 remote_ip 10.8.0.138 206071 username rashidi4690 206071 mac 206071 bytes_out 3452636 206071 bytes_in 20398393 206071 station_ip 5.120.169.216 206071 port 104 206071 unique_id port 206071 remote_ip 10.8.1.158 206079 username fezealinaghi 206079 kill_reason Another user logged on this global unique id 206079 mac 206079 bytes_out 0 206079 bytes_in 0 206079 station_ip 37.129.156.170 206079 port 107 206079 unique_id port 206082 username barzegar 206082 mac 206082 bytes_out 0 206082 bytes_in 0 206082 station_ip 5.119.156.30 206082 port 113 206082 unique_id port 206082 remote_ip 10.8.1.6 206084 username barzegar 206084 mac 206084 bytes_out 0 206084 bytes_in 0 206084 station_ip 5.119.156.30 206084 port 57 206084 unique_id port 206084 remote_ip 10.8.0.14 206087 username esmaeili1522 206087 kill_reason Another user logged on this global unique id 206087 mac 206087 bytes_out 0 206087 bytes_in 0 206087 station_ip 5.120.83.190 206087 port 56 206087 unique_id port 206091 username esmaeili1522 206091 mac 206091 bytes_out 0 206091 bytes_in 0 206091 station_ip 5.120.83.190 206091 port 56 206091 unique_id port 206094 username ghaderpour6649 206094 mac 206094 bytes_out 246078 206094 bytes_in 1710409 206094 station_ip 37.129.188.50 206094 port 115 206094 unique_id port 206094 remote_ip 10.8.1.246 206097 username mammad 206097 unique_id port 206097 terminate_cause User-Request 206097 bytes_out 3736369 206097 bytes_in 61226111 206097 station_ip 5.233.68.7 206097 port 15730102 206097 nas_port_type Virtual 206097 remote_ip 5.5.5.245 206098 username yaghobi 206098 mac 206098 bytes_out 125305 206098 bytes_in 128948 206098 station_ip 37.129.85.242 206098 port 102 206098 unique_id port 206098 remote_ip 10.8.1.186 206102 username shahruz 206102 kill_reason Another user logged on this global unique id 206102 mac 206102 bytes_out 0 206102 bytes_in 0 206102 station_ip 5.120.62.39 206102 port 115 206102 unique_id port 206102 remote_ip 10.8.1.22 206104 username yaghobi 206104 mac 206104 bytes_out 122446 206104 bytes_in 159817 206104 station_ip 37.129.85.242 206104 port 102 206104 unique_id port 206104 remote_ip 10.8.1.186 206106 username yaghobi 206106 mac 206106 bytes_out 543052 206106 bytes_in 10674123 206106 station_ip 37.129.85.242 206106 port 113 206059 bytes_out 0 206059 bytes_in 0 206059 station_ip 113.203.33.246 206059 port 49 206059 unique_id port 206059 remote_ip 10.8.0.118 206061 username barzegar 206061 mac 206061 bytes_out 0 206061 bytes_in 0 206061 station_ip 5.119.156.30 206061 port 113 206061 unique_id port 206061 remote_ip 10.8.1.6 206062 username khademi 206062 kill_reason Another user logged on this global unique id 206062 mac 206062 bytes_out 0 206062 bytes_in 0 206062 station_ip 83.123.49.108 206062 port 45 206062 unique_id port 206064 username alipour1506 206064 mac 206064 bytes_out 1214559 206064 bytes_in 9925312 206064 station_ip 83.122.255.114 206064 port 111 206064 unique_id port 206064 remote_ip 10.8.1.86 206067 username mammad 206067 unique_id port 206067 terminate_cause User-Request 206067 bytes_out 3781161 206067 bytes_in 67187644 206067 station_ip 5.233.68.7 206067 port 15730098 206067 nas_port_type Virtual 206067 remote_ip 5.5.5.245 206072 username fezealinaghi 206072 kill_reason Another user logged on this global unique id 206072 mac 206072 bytes_out 0 206072 bytes_in 0 206072 station_ip 37.129.156.170 206072 port 107 206072 unique_id port 206074 username aminvpn 206074 kill_reason Wrong password 206074 mac 206074 bytes_out 0 206074 bytes_in 0 206074 station_ip 37.129.248.229 206074 port 53 206074 unique_id port 206076 username godarzi 206076 mac 206076 bytes_out 1457703 206076 bytes_in 15051552 206076 station_ip 5.202.98.177 206076 port 117 206076 unique_id port 206076 remote_ip 10.8.1.78 206078 username barzegar 206078 mac 206078 bytes_out 0 206078 bytes_in 0 206078 station_ip 5.119.156.30 206078 port 113 206078 unique_id port 206078 remote_ip 10.8.1.6 206080 username pourshad 206080 kill_reason Another user logged on this global unique id 206080 mac 206080 bytes_out 0 206080 bytes_in 0 206080 station_ip 5.120.112.60 206080 port 103 206080 unique_id port 206085 username fezealinaghi 206085 kill_reason Another user logged on this global unique id 206085 mac 206085 bytes_out 0 206085 bytes_in 0 206085 station_ip 37.129.156.170 206085 port 107 206085 unique_id port 206086 username nilufarrajaei 206086 mac 206086 bytes_out 0 206086 bytes_in 0 206086 station_ip 37.129.16.57 206086 port 46 206086 unique_id port 206086 remote_ip 10.8.0.94 206089 username hosseine 206089 kill_reason Another user logged on this global unique id 206089 mac 206089 bytes_out 0 206089 bytes_in 0 206089 station_ip 113.203.33.246 206089 port 49 206089 unique_id port 206090 username nilufarrajaei 206090 mac 206090 bytes_out 0 206090 bytes_in 0 206090 station_ip 37.129.16.57 206090 port 57 206090 unique_id port 206090 remote_ip 10.8.0.94 206092 username fezealinaghi 206092 kill_reason Another user logged on this global unique id 206092 mac 206092 bytes_out 0 206092 bytes_in 0 206092 station_ip 37.129.156.170 206092 port 107 206092 unique_id port 206093 username malekpoir 206093 mac 206093 bytes_out 3293910 206093 bytes_in 31488347 206093 station_ip 5.119.210.158 206093 port 102 206093 unique_id port 206093 remote_ip 10.8.1.70 206095 username dortaj3792 206095 mac 206095 bytes_out 0 206095 bytes_in 0 206095 station_ip 5.120.1.122 206095 port 53 206095 unique_id port 206095 remote_ip 10.8.0.30 206100 username mirzaei6046 206100 kill_reason Another user logged on this global unique id 206100 mac 206100 bytes_out 0 206100 bytes_in 0 206100 station_ip 5.119.16.160 206100 port 55 206100 unique_id port 206101 username fezealinaghi 206101 kill_reason Another user logged on this global unique id 206101 mac 206101 bytes_out 0 206101 bytes_in 0 206101 station_ip 37.129.156.170 206083 station_ip 37.129.60.242 206083 port 113 206083 unique_id port 206083 remote_ip 10.8.1.186 206088 username barzegar 206088 mac 206088 bytes_out 0 206088 bytes_in 0 206088 station_ip 5.119.156.30 206088 port 115 206088 unique_id port 206088 remote_ip 10.8.1.6 206096 username barzegar 206096 mac 206096 bytes_out 0 206096 bytes_in 0 206096 station_ip 5.119.156.30 206096 port 115 206096 unique_id port 206096 remote_ip 10.8.1.6 206099 username askarzadeh9013 206099 mac 206099 bytes_out 2408987 206099 bytes_in 40356683 206099 station_ip 83.123.241.177 206099 port 113 206099 unique_id port 206099 remote_ip 10.8.1.250 206111 username kamali3 206111 mac 206111 bytes_out 0 206111 bytes_in 0 206111 station_ip 5.119.129.115 206111 port 109 206111 unique_id port 206111 remote_ip 10.8.1.166 206113 username pourshad 206113 mac 206113 bytes_out 0 206113 bytes_in 0 206113 station_ip 5.120.112.60 206113 port 103 206113 unique_id port 206122 username fezealinaghi 206122 kill_reason Another user logged on this global unique id 206122 mac 206122 bytes_out 0 206122 bytes_in 0 206122 station_ip 37.129.156.170 206122 port 107 206122 unique_id port 206124 username shahruz 206124 mac 206124 bytes_out 0 206124 bytes_in 0 206124 station_ip 37.129.85.36 206124 port 102 206124 unique_id port 206124 remote_ip 10.8.1.22 206125 username barzegar 206125 mac 206125 bytes_out 0 206125 bytes_in 0 206125 station_ip 5.119.156.30 206125 port 102 206125 unique_id port 206125 remote_ip 10.8.1.6 206130 username nilufarrajaei 206130 mac 206130 bytes_out 0 206130 bytes_in 0 206130 station_ip 37.129.16.57 206130 port 53 206130 unique_id port 206130 remote_ip 10.8.0.94 206131 username yaghobi 206131 mac 206131 bytes_out 0 206131 bytes_in 0 206131 station_ip 37.129.103.130 206131 port 103 206131 unique_id port 206131 remote_ip 10.8.1.186 206132 username barzegar 206132 mac 206132 bytes_out 0 206132 bytes_in 0 206132 station_ip 5.119.156.30 206132 port 111 206132 unique_id port 206132 remote_ip 10.8.1.6 206137 username fezealinaghi 206137 mac 206137 bytes_out 0 206137 bytes_in 0 206137 station_ip 37.129.156.170 206137 port 107 206137 unique_id port 206139 username farhad3 206139 mac 206139 bytes_out 363617 206139 bytes_in 1270336 206139 station_ip 5.120.165.123 206139 port 103 206139 unique_id port 206139 remote_ip 10.8.1.38 206144 username barzegar 206144 mac 206144 bytes_out 0 206144 bytes_in 0 206144 station_ip 5.119.156.30 206144 port 111 206144 unique_id port 206144 remote_ip 10.8.1.6 206149 username shahruz 206149 mac 206149 bytes_out 0 206149 bytes_in 0 206149 station_ip 37.129.85.36 206149 port 57 206149 unique_id port 206149 remote_ip 10.8.0.22 206151 username nilufarrajaei 206151 mac 206151 bytes_out 0 206151 bytes_in 0 206151 station_ip 37.129.16.57 206151 port 55 206151 unique_id port 206151 remote_ip 10.8.0.94 206152 username shahruz 206152 mac 206152 bytes_out 0 206152 bytes_in 0 206152 station_ip 37.129.85.36 206152 port 55 206152 unique_id port 206152 remote_ip 10.8.0.22 206157 username shahruz 206157 mac 206157 bytes_out 0 206157 bytes_in 0 206157 station_ip 37.129.85.36 206157 port 113 206157 unique_id port 206157 remote_ip 10.8.1.22 206158 username shahruz 206158 mac 206158 bytes_out 0 206158 bytes_in 0 206158 station_ip 37.129.85.36 206158 port 113 206158 unique_id port 206158 remote_ip 10.8.1.22 206161 username shahruz 206161 mac 206101 port 107 206101 unique_id port 206103 username mirzaei6046 206103 mac 206103 bytes_out 0 206103 bytes_in 0 206103 station_ip 5.119.16.160 206103 port 55 206103 unique_id port 206105 username barzegar 206105 mac 206105 bytes_out 0 206105 bytes_in 0 206105 station_ip 5.119.156.30 206105 port 102 206105 unique_id port 206105 remote_ip 10.8.1.6 206108 username nilufarrajaei 206108 mac 206108 bytes_out 0 206108 bytes_in 0 206108 station_ip 37.129.16.57 206108 port 53 206108 unique_id port 206108 remote_ip 10.8.0.94 206110 username pourshad 206110 kill_reason Another user logged on this global unique id 206110 mac 206110 bytes_out 0 206110 bytes_in 0 206110 station_ip 5.120.112.60 206110 port 103 206110 unique_id port 206112 username shahruz 206112 mac 206112 bytes_out 0 206112 bytes_in 0 206112 station_ip 5.120.62.39 206112 port 115 206112 unique_id port 206115 username barzegar 206115 mac 206115 bytes_out 0 206115 bytes_in 0 206115 station_ip 5.119.156.30 206115 port 53 206115 unique_id port 206115 remote_ip 10.8.0.14 206116 username shahruz 206116 kill_reason Another user logged on this global unique id 206116 mac 206116 bytes_out 0 206116 bytes_in 0 206116 station_ip 37.129.85.36 206116 port 102 206116 unique_id port 206116 remote_ip 10.8.1.22 206117 username nilufarrajaei 206117 mac 206117 bytes_out 2583424 206117 bytes_in 33067219 206117 station_ip 37.129.16.57 206117 port 46 206117 unique_id port 206117 remote_ip 10.8.0.94 206118 username shahruz 206118 mac 206118 bytes_out 0 206118 bytes_in 0 206118 station_ip 37.129.85.36 206118 port 102 206118 unique_id port 206119 username farhad3 206119 mac 206119 bytes_out 579983 206119 bytes_in 3180084 206119 station_ip 5.120.165.123 206119 port 103 206119 unique_id port 206119 remote_ip 10.8.1.38 206120 username shahruz 206120 mac 206120 bytes_out 0 206120 bytes_in 0 206120 station_ip 37.129.85.36 206120 port 102 206120 unique_id port 206120 remote_ip 10.8.1.22 206126 username shahruz 206126 kill_reason Maximum check online fails reached 206126 mac 206126 bytes_out 0 206126 bytes_in 0 206126 station_ip 37.129.85.36 206126 port 46 206126 unique_id port 206128 username alipour1506 206128 mac 206128 bytes_out 393198 206128 bytes_in 1644435 206128 station_ip 83.122.255.114 206128 port 111 206128 unique_id port 206128 remote_ip 10.8.1.86 206129 username shahruz 206129 mac 206129 bytes_out 0 206129 bytes_in 0 206129 station_ip 37.129.85.36 206129 port 55 206129 unique_id port 206129 remote_ip 10.8.0.22 206133 username farhad3 206133 mac 206133 bytes_out 210126 206133 bytes_in 1619949 206133 station_ip 5.120.165.123 206133 port 103 206133 unique_id port 206133 remote_ip 10.8.1.38 206134 username shahruz 206134 mac 206134 bytes_out 0 206134 bytes_in 0 206134 station_ip 37.129.85.36 206134 port 53 206134 unique_id port 206134 remote_ip 10.8.0.22 206135 username shahruz 206135 mac 206135 bytes_out 0 206135 bytes_in 0 206135 station_ip 37.129.85.36 206135 port 111 206135 unique_id port 206135 remote_ip 10.8.1.22 206138 username shahruz 206138 mac 206138 bytes_out 0 206138 bytes_in 0 206138 station_ip 37.129.85.36 206138 port 111 206138 unique_id port 206138 remote_ip 10.8.1.22 206142 username shahruz 206142 mac 206142 bytes_out 0 206142 bytes_in 0 206142 station_ip 37.129.85.36 206142 port 53 206142 unique_id port 206142 remote_ip 10.8.0.22 206143 username shahruz 206143 mac 206143 bytes_out 0 206106 unique_id port 206106 remote_ip 10.8.1.186 206107 username nilufarrajaei 206107 mac 206107 bytes_out 0 206107 bytes_in 0 206107 station_ip 37.129.16.57 206107 port 46 206107 unique_id port 206107 remote_ip 10.8.0.94 206109 username yaghobi 206109 mac 206109 bytes_out 17193 206109 bytes_in 53588 206109 station_ip 37.129.85.242 206109 port 102 206109 unique_id port 206109 remote_ip 10.8.1.186 206114 username kamali3 206114 mac 206114 bytes_out 218835 206114 bytes_in 1793268 206114 station_ip 5.119.129.115 206114 port 109 206114 unique_id port 206114 remote_ip 10.8.1.166 206121 username farhad3 206121 mac 206121 bytes_out 193917 206121 bytes_in 1562333 206121 station_ip 5.120.165.123 206121 port 103 206121 unique_id port 206121 remote_ip 10.8.1.38 206123 username shahruz 206123 mac 206123 bytes_out 0 206123 bytes_in 0 206123 station_ip 37.129.85.36 206123 port 46 206123 unique_id port 206123 remote_ip 10.8.0.22 206127 username shahruz 206127 mac 206127 bytes_out 0 206127 bytes_in 0 206127 station_ip 37.129.85.36 206127 port 103 206127 unique_id port 206127 remote_ip 10.8.1.22 206136 username shahruz 206136 mac 206136 bytes_out 0 206136 bytes_in 0 206136 station_ip 37.129.85.36 206136 port 53 206136 unique_id port 206136 remote_ip 10.8.0.22 206140 username shahruz 206140 mac 206140 bytes_out 0 206140 bytes_in 0 206140 station_ip 37.129.85.36 206140 port 111 206140 unique_id port 206140 remote_ip 10.8.1.22 206141 username shahruz 206141 mac 206141 bytes_out 0 206141 bytes_in 0 206141 station_ip 37.129.85.36 206141 port 53 206141 unique_id port 206141 remote_ip 10.8.0.22 206146 username shahruz 206146 mac 206146 bytes_out 0 206146 bytes_in 0 206146 station_ip 37.129.85.36 206146 port 53 206146 unique_id port 206146 remote_ip 10.8.0.22 206148 username alipour1506 206148 mac 206148 bytes_out 107542 206148 bytes_in 700029 206148 station_ip 83.122.255.114 206148 port 102 206148 unique_id port 206148 remote_ip 10.8.1.86 206153 username khademi 206153 mac 206153 bytes_out 0 206153 bytes_in 0 206153 station_ip 83.123.49.108 206153 port 45 206153 unique_id port 206155 username shahruz 206155 mac 206155 bytes_out 0 206155 bytes_in 0 206155 station_ip 37.129.85.36 206155 port 113 206155 unique_id port 206155 remote_ip 10.8.1.22 206160 username barzegar 206160 mac 206160 bytes_out 4185 206160 bytes_in 11469 206160 station_ip 5.119.156.30 206160 port 113 206160 unique_id port 206160 remote_ip 10.8.1.6 206167 username yaghobi 206167 mac 206167 bytes_out 457594 206167 bytes_in 6047735 206167 station_ip 37.129.45.2 206167 port 115 206167 unique_id port 206167 remote_ip 10.8.1.186 206168 username nilufarrajaei 206168 mac 206168 bytes_out 0 206168 bytes_in 0 206168 station_ip 37.129.16.57 206168 port 57 206168 unique_id port 206168 remote_ip 10.8.0.94 206170 username shahruz 206170 mac 206170 bytes_out 0 206170 bytes_in 0 206170 station_ip 37.129.85.36 206170 port 113 206170 unique_id port 206170 remote_ip 10.8.1.22 206182 username shahruz 206182 kill_reason Maximum check online fails reached 206182 mac 206182 bytes_out 0 206182 bytes_in 0 206182 station_ip 37.129.85.36 206182 port 45 206182 unique_id port 206186 username shahruz 206186 kill_reason Maximum check online fails reached 206186 mac 206186 bytes_out 0 206186 bytes_in 0 206186 station_ip 37.129.85.36 206186 port 58 206186 unique_id port 206189 username barzegar8595 206189 mac 206143 bytes_in 0 206143 station_ip 37.129.85.36 206143 port 53 206143 unique_id port 206143 remote_ip 10.8.0.22 206145 username shahruz 206145 mac 206145 bytes_out 0 206145 bytes_in 0 206145 station_ip 37.129.85.36 206145 port 113 206145 unique_id port 206145 remote_ip 10.8.1.22 206147 username houshang 206147 mac 206147 bytes_out 474553 206147 bytes_in 4228886 206147 station_ip 5.119.171.75 206147 port 107 206147 unique_id port 206147 remote_ip 10.8.1.134 206150 username shahruz 206150 kill_reason Maximum check online fails reached 206150 mac 206150 bytes_out 0 206150 bytes_in 0 206150 station_ip 37.129.85.36 206150 port 53 206150 unique_id port 206154 username shahruz 206154 mac 206154 bytes_out 0 206154 bytes_in 0 206154 station_ip 37.129.85.36 206154 port 55 206154 unique_id port 206154 remote_ip 10.8.0.22 206156 username barzegar 206156 mac 206156 bytes_out 2371 206156 bytes_in 5003 206156 station_ip 5.119.156.30 206156 port 107 206156 unique_id port 206156 remote_ip 10.8.1.6 206159 username rashidi4690 206159 mac 206159 bytes_out 4953636 206159 bytes_in 17304302 206159 station_ip 5.120.23.112 206159 port 104 206159 unique_id port 206159 remote_ip 10.8.1.158 206162 username farhad3 206162 kill_reason Another user logged on this global unique id 206162 mac 206162 bytes_out 0 206162 bytes_in 0 206162 station_ip 5.120.165.123 206162 port 103 206162 unique_id port 206162 remote_ip 10.8.1.38 206163 username shahruz 206163 mac 206163 bytes_out 0 206163 bytes_in 0 206163 station_ip 37.129.85.36 206163 port 113 206163 unique_id port 206163 remote_ip 10.8.1.22 206165 username shahruz 206165 mac 206165 bytes_out 0 206165 bytes_in 0 206165 station_ip 5.120.62.39 206165 port 45 206165 unique_id port 206165 remote_ip 10.8.0.22 206166 username houshang 206166 mac 206166 bytes_out 1716455 206166 bytes_in 30211939 206166 station_ip 5.119.171.75 206166 port 107 206166 unique_id port 206166 remote_ip 10.8.1.134 206171 username houshang 206171 mac 206171 bytes_out 129808 206171 bytes_in 1422425 206171 station_ip 5.119.171.75 206171 port 107 206171 unique_id port 206171 remote_ip 10.8.1.134 206173 username shahruz 206173 mac 206173 bytes_out 0 206173 bytes_in 0 206173 station_ip 37.129.85.36 206173 port 55 206173 unique_id port 206173 remote_ip 10.8.0.22 206175 username shahruz 206175 mac 206175 bytes_out 0 206175 bytes_in 0 206175 station_ip 37.129.85.36 206175 port 55 206175 unique_id port 206175 remote_ip 10.8.0.22 206177 username shahruz 206177 mac 206177 bytes_out 0 206177 bytes_in 0 206177 station_ip 37.129.85.36 206177 port 103 206177 unique_id port 206177 remote_ip 10.8.1.22 206181 username farhad3 206181 mac 206181 bytes_out 113570 206181 bytes_in 403212 206181 station_ip 5.120.165.123 206181 port 113 206181 unique_id port 206181 remote_ip 10.8.1.38 206184 username shahruz 206184 mac 206184 bytes_out 0 206184 bytes_in 0 206184 station_ip 37.129.85.36 206184 port 57 206184 unique_id port 206184 remote_ip 10.8.0.22 206187 username farhad3 206187 mac 206187 bytes_out 151484 206187 bytes_in 315861 206187 station_ip 5.120.165.123 206187 port 103 206187 unique_id port 206187 remote_ip 10.8.1.38 206193 username motamedi9772 206193 mac 206193 bytes_out 0 206193 bytes_in 0 206193 station_ip 113.203.24.110 206193 port 57 206193 unique_id port 206193 remote_ip 10.8.0.62 206195 username houshang 206195 mac 206195 bytes_out 2174654 206195 bytes_in 48831875 206161 bytes_out 0 206161 bytes_in 0 206161 station_ip 37.129.85.36 206161 port 45 206161 unique_id port 206161 remote_ip 10.8.0.22 206164 username shahruz 206164 mac 206164 bytes_out 0 206164 bytes_in 0 206164 station_ip 37.129.85.36 206164 port 113 206164 unique_id port 206164 remote_ip 10.8.1.22 206169 username barzegar 206169 mac 206169 bytes_out 0 206169 bytes_in 0 206169 station_ip 5.119.156.30 206169 port 113 206169 unique_id port 206169 remote_ip 10.8.1.6 206172 username shahruz 206172 mac 206172 bytes_out 0 206172 bytes_in 0 206172 station_ip 37.129.85.36 206172 port 113 206172 unique_id port 206172 remote_ip 10.8.1.22 206174 username farhad3 206174 mac 206174 bytes_out 0 206174 bytes_in 0 206174 station_ip 5.120.165.123 206174 port 103 206174 unique_id port 206176 username nilufarrajaei 206176 mac 206176 bytes_out 0 206176 bytes_in 0 206176 station_ip 37.129.16.57 206176 port 45 206176 unique_id port 206176 remote_ip 10.8.0.94 206178 username shahruz 206178 mac 206178 bytes_out 0 206178 bytes_in 0 206178 station_ip 37.129.85.36 206178 port 55 206178 unique_id port 206178 remote_ip 10.8.0.22 206179 username shahruz 206179 mac 206179 bytes_out 0 206179 bytes_in 0 206179 station_ip 37.129.85.36 206179 port 103 206179 unique_id port 206179 remote_ip 10.8.1.22 206180 username shahruz 206180 mac 206180 bytes_out 0 206180 bytes_in 0 206180 station_ip 37.129.85.36 206180 port 103 206180 unique_id port 206180 remote_ip 10.8.1.22 206183 username shahruz 206183 kill_reason Maximum number of concurrent logins reached 206183 mac 206183 bytes_out 0 206183 bytes_in 0 206183 station_ip 37.129.85.36 206183 port 59 206183 unique_id port 206185 username farhad3 206185 mac 206185 bytes_out 0 206185 bytes_in 0 206185 station_ip 5.120.165.123 206185 port 103 206185 unique_id port 206185 remote_ip 10.8.1.38 206188 username motamedi9772 206188 mac 206188 bytes_out 0 206188 bytes_in 0 206188 station_ip 113.203.24.110 206188 port 57 206188 unique_id port 206188 remote_ip 10.8.0.62 206191 username farhad3 206191 mac 206191 bytes_out 178628 206191 bytes_in 513758 206191 station_ip 5.120.165.123 206191 port 103 206191 unique_id port 206191 remote_ip 10.8.1.38 206194 username sabaghnezhad 206194 mac 206194 bytes_out 0 206194 bytes_in 0 206194 station_ip 83.123.62.37 206194 port 56 206194 unique_id port 206194 remote_ip 10.8.0.18 206197 username ghaderpour6649 206197 mac 206197 bytes_out 3231644 206197 bytes_in 16771214 206197 station_ip 83.123.207.235 206197 port 117 206197 unique_id port 206197 remote_ip 10.8.1.246 206205 username barzegar 206205 mac 206205 bytes_out 1636 206205 bytes_in 5142 206205 station_ip 5.114.107.245 206205 port 56 206205 unique_id port 206205 remote_ip 10.8.0.14 206206 username motamedi9772 206206 mac 206206 bytes_out 0 206206 bytes_in 0 206206 station_ip 113.203.24.110 206206 port 113 206206 unique_id port 206206 remote_ip 10.8.1.198 206207 username farhad3 206207 kill_reason Another user logged on this global unique id 206207 mac 206207 bytes_out 0 206207 bytes_in 0 206207 station_ip 5.120.165.123 206207 port 103 206207 unique_id port 206207 remote_ip 10.8.1.38 206211 username motamedi9772 206211 mac 206211 bytes_out 0 206211 bytes_in 0 206211 station_ip 113.203.24.110 206211 port 49 206211 unique_id port 206211 remote_ip 10.8.0.62 206219 username tahmorsi 206219 mac 206219 bytes_out 266547 206219 bytes_in 705116 206219 station_ip 86.57.25.6 206189 bytes_out 1625368 206189 bytes_in 16821504 206189 station_ip 46.225.211.96 206189 port 102 206189 unique_id port 206189 remote_ip 10.8.1.50 206190 username motamedi9772 206190 mac 206190 bytes_out 0 206190 bytes_in 0 206190 station_ip 113.203.24.110 206190 port 57 206190 unique_id port 206190 remote_ip 10.8.0.62 206192 username motamedi9772 206192 mac 206192 bytes_out 0 206192 bytes_in 0 206192 station_ip 113.203.24.110 206192 port 57 206192 unique_id port 206192 remote_ip 10.8.0.62 206198 username yarmohamadi7916 206198 mac 206198 bytes_out 908851 206198 bytes_in 2031512 206198 station_ip 5.119.138.233 206198 port 113 206198 unique_id port 206198 remote_ip 10.8.1.154 206200 username milan 206200 kill_reason Another user logged on this global unique id 206200 mac 206200 bytes_out 0 206200 bytes_in 0 206200 station_ip 5.120.143.192 206200 port 43 206200 unique_id port 206200 remote_ip 10.8.0.198 206203 username godarzi 206203 kill_reason Another user logged on this global unique id 206203 mac 206203 bytes_out 0 206203 bytes_in 0 206203 station_ip 5.119.140.135 206203 port 109 206203 unique_id port 206203 remote_ip 10.8.1.78 206204 username houshang 206204 mac 206204 bytes_out 588245 206204 bytes_in 12500094 206204 station_ip 5.119.171.75 206204 port 107 206204 unique_id port 206204 remote_ip 10.8.1.134 206208 username hosseine 206208 mac 206208 bytes_out 0 206208 bytes_in 0 206208 station_ip 113.203.33.246 206208 port 49 206208 unique_id port 206209 username motamedi9772 206209 mac 206209 bytes_out 0 206209 bytes_in 0 206209 station_ip 113.203.24.110 206209 port 49 206209 unique_id port 206209 remote_ip 10.8.0.62 206213 username motamedi9772 206213 mac 206213 bytes_out 0 206213 bytes_in 0 206213 station_ip 113.203.24.110 206213 port 49 206213 unique_id port 206213 remote_ip 10.8.0.62 206215 username motamedi9772 206215 mac 206215 bytes_out 0 206215 bytes_in 0 206215 station_ip 113.203.24.110 206215 port 107 206215 unique_id port 206215 remote_ip 10.8.1.198 206216 username farhad3 206216 kill_reason Another user logged on this global unique id 206216 mac 206216 bytes_out 0 206216 bytes_in 0 206216 station_ip 5.120.165.123 206216 port 103 206216 unique_id port 206217 username majidsarmast 206217 mac 206217 bytes_out 5057 206217 bytes_in 8462 206217 station_ip 83.123.238.80 206217 port 107 206217 unique_id port 206217 remote_ip 10.8.1.114 206218 username nilufarrajaei 206218 mac 206218 bytes_out 0 206218 bytes_in 0 206218 station_ip 37.129.16.57 206218 port 55 206218 unique_id port 206218 remote_ip 10.8.0.94 206230 username barzegar 206230 mac 206230 bytes_out 0 206230 bytes_in 0 206230 station_ip 5.119.187.87 206230 port 56 206230 unique_id port 206230 remote_ip 10.8.0.14 206233 username dorani4942 206233 kill_reason Maximum check online fails reached 206233 mac 206233 bytes_out 0 206233 bytes_in 0 206233 station_ip 83.122.161.223 206233 port 57 206233 unique_id port 206235 username shahruz 206235 mac 206235 bytes_out 0 206235 bytes_in 0 206235 station_ip 37.129.67.16 206235 port 55 206235 unique_id port 206235 remote_ip 10.8.0.22 206237 username shahruz 206237 mac 206237 bytes_out 0 206237 bytes_in 0 206237 station_ip 37.129.67.16 206237 port 59 206237 unique_id port 206237 remote_ip 10.8.0.22 206238 username barzegar 206238 mac 206238 bytes_out 0 206238 bytes_in 0 206238 station_ip 5.119.187.87 206238 port 120 206238 unique_id port 206238 remote_ip 10.8.1.6 206241 username motamedi9772 206241 mac 206195 station_ip 5.119.171.75 206195 port 107 206195 unique_id port 206195 remote_ip 10.8.1.134 206196 username motamedi9772 206196 mac 206196 bytes_out 0 206196 bytes_in 0 206196 station_ip 113.203.24.110 206196 port 107 206196 unique_id port 206196 remote_ip 10.8.1.198 206199 username motamedi9772 206199 mac 206199 bytes_out 0 206199 bytes_in 0 206199 station_ip 113.203.24.110 206199 port 113 206199 unique_id port 206199 remote_ip 10.8.1.198 206201 username khalili2 206201 mac 206201 bytes_out 0 206201 bytes_in 0 206201 station_ip 5.119.34.158 206201 port 108 206201 unique_id port 206202 username motamedi9772 206202 mac 206202 bytes_out 0 206202 bytes_in 0 206202 station_ip 113.203.24.110 206202 port 56 206202 unique_id port 206202 remote_ip 10.8.0.62 206210 username motamedi9772 206210 mac 206210 bytes_out 0 206210 bytes_in 0 206210 station_ip 113.203.24.110 206210 port 49 206210 unique_id port 206210 remote_ip 10.8.0.62 206212 username ghaderpour6649 206212 mac 206212 bytes_out 359371 206212 bytes_in 3242206 206212 station_ip 37.129.121.231 206212 port 107 206212 unique_id port 206212 remote_ip 10.8.1.246 206214 username motamedi9772 206214 kill_reason Maximum check online fails reached 206214 mac 206214 bytes_out 0 206214 bytes_in 0 206214 station_ip 113.203.24.110 206214 port 113 206214 unique_id port 206221 username rashidi4690 206221 mac 206221 bytes_out 2828346 206221 bytes_in 19184840 206221 station_ip 5.120.23.112 206221 port 104 206221 unique_id port 206221 remote_ip 10.8.1.158 206223 username majidsarmast 206223 mac 206223 bytes_out 793457 206223 bytes_in 8734954 206223 station_ip 83.123.238.80 206223 port 107 206223 unique_id port 206223 remote_ip 10.8.1.114 206226 username farhad3 206226 mac 206226 bytes_out 0 206226 bytes_in 0 206226 station_ip 5.120.165.123 206226 port 103 206226 unique_id port 206227 username barzegar8595 206227 kill_reason Another user logged on this global unique id 206227 mac 206227 bytes_out 0 206227 bytes_in 0 206227 station_ip 46.225.208.254 206227 port 102 206227 unique_id port 206227 remote_ip 10.8.1.50 206228 username farhad3 206228 mac 206228 bytes_out 0 206228 bytes_in 0 206228 station_ip 5.119.81.146 206228 port 56 206228 unique_id port 206228 remote_ip 10.8.0.46 206231 username dorani4942 206231 mac 206231 bytes_out 0 206231 bytes_in 0 206231 station_ip 83.122.161.223 206231 port 57 206231 unique_id port 206231 remote_ip 10.8.0.170 206236 username daryaei1233 206236 mac 206236 bytes_out 0 206236 bytes_in 0 206236 station_ip 37.129.94.202 206236 port 56 206236 unique_id port 206236 remote_ip 10.8.0.242 206240 username daryaei1233 206240 mac 206240 bytes_out 0 206240 bytes_in 0 206240 station_ip 37.129.94.202 206240 port 55 206240 unique_id port 206240 remote_ip 10.8.0.242 206243 username daryaei1233 206243 mac 206243 bytes_out 85681 206243 bytes_in 104076 206243 station_ip 37.129.94.202 206243 port 118 206243 unique_id port 206243 remote_ip 10.8.1.230 206244 username shahruz 206244 mac 206244 bytes_out 0 206244 bytes_in 0 206244 station_ip 5.119.184.159 206244 port 118 206244 unique_id port 206244 remote_ip 10.8.1.22 206247 username daryaei1233 206247 mac 206247 bytes_out 0 206247 bytes_in 0 206247 station_ip 37.129.94.202 206247 port 118 206247 unique_id port 206247 remote_ip 10.8.1.230 206250 username daryaei1233 206250 mac 206250 bytes_out 0 206250 bytes_in 0 206250 station_ip 37.129.94.202 206250 port 118 206219 port 108 206219 unique_id port 206219 remote_ip 10.8.1.102 206220 username aminvpn 206220 unique_id port 206220 terminate_cause Lost-Carrier 206220 bytes_out 1352222 206220 bytes_in 23289404 206220 station_ip 37.129.149.109 206220 port 15730113 206220 nas_port_type Virtual 206220 remote_ip 5.5.5.255 206222 username farhad3 206222 kill_reason Another user logged on this global unique id 206222 mac 206222 bytes_out 0 206222 bytes_in 0 206222 station_ip 5.120.165.123 206222 port 103 206222 unique_id port 206224 username majidsarmast 206224 mac 206224 bytes_out 227577 206224 bytes_in 2159662 206224 station_ip 83.123.238.80 206224 port 104 206224 unique_id port 206224 remote_ip 10.8.1.114 206225 username hatami 206225 mac 206225 bytes_out 478412 206225 bytes_in 3540040 206225 station_ip 151.235.105.117 206225 port 115 206225 unique_id port 206225 remote_ip 10.8.1.26 206229 username motamedi9772 206229 mac 206229 bytes_out 105821 206229 bytes_in 1484410 206229 station_ip 113.203.113.122 206229 port 115 206229 unique_id port 206229 remote_ip 10.8.1.198 206232 username dorani4942 206232 mac 206232 bytes_out 0 206232 bytes_in 0 206232 station_ip 83.122.161.223 206232 port 57 206232 unique_id port 206232 remote_ip 10.8.0.170 206234 username dorani4942 206234 mac 206234 bytes_out 47390 206234 bytes_in 141119 206234 station_ip 83.122.161.223 206234 port 118 206234 unique_id port 206234 remote_ip 10.8.1.10 206239 username dorani4942 206239 mac 206239 bytes_out 0 206239 bytes_in 0 206239 station_ip 83.122.161.223 206239 port 122 206239 unique_id port 206239 remote_ip 10.8.1.10 206242 username shahruz 206242 mac 206242 bytes_out 7690 206242 bytes_in 9743 206242 station_ip 5.119.184.159 206242 port 121 206242 unique_id port 206242 remote_ip 10.8.1.22 206245 username dorani4942 206245 mac 206245 bytes_out 0 206245 bytes_in 0 206245 station_ip 83.122.161.223 206245 port 56 206245 unique_id port 206245 remote_ip 10.8.0.170 206246 username shahruz 206246 mac 206246 bytes_out 0 206246 bytes_in 0 206246 station_ip 5.119.184.159 206246 port 119 206246 unique_id port 206246 remote_ip 10.8.1.22 206248 username farhad3 206248 kill_reason Another user logged on this global unique id 206248 mac 206248 bytes_out 0 206248 bytes_in 0 206248 station_ip 5.119.81.146 206248 port 117 206248 unique_id port 206248 remote_ip 10.8.1.38 206251 username hosseini0093 206251 mac 206251 bytes_out 0 206251 bytes_in 0 206251 station_ip 5.120.140.12 206251 port 55 206251 unique_id port 206251 remote_ip 10.8.0.150 206254 username malekpoir 206254 mac 206254 bytes_out 0 206254 bytes_in 0 206254 station_ip 5.119.26.191 206254 port 116 206254 unique_id port 206254 remote_ip 10.8.1.70 206262 username ghaderpour6649 206262 mac 206262 bytes_out 0 206262 bytes_in 0 206262 station_ip 113.203.84.128 206262 port 104 206262 unique_id port 206264 username barzegar 206264 kill_reason Maximum check online fails reached 206264 mac 206264 bytes_out 0 206264 bytes_in 0 206264 station_ip 5.119.187.87 206264 port 108 206264 unique_id port 206267 username shahruz 206267 mac 206267 bytes_out 0 206267 bytes_in 0 206267 station_ip 5.120.126.158 206267 port 116 206267 unique_id port 206267 remote_ip 10.8.1.22 206271 username shahruz 206271 mac 206271 bytes_out 0 206271 bytes_in 0 206271 station_ip 5.120.126.158 206271 port 116 206271 unique_id port 206271 remote_ip 10.8.1.22 206275 username farhad3 206275 kill_reason Another user logged on this global unique id 206275 mac 206241 bytes_out 68905 206241 bytes_in 608275 206241 station_ip 113.203.113.122 206241 port 119 206241 unique_id port 206241 remote_ip 10.8.1.198 206249 username ghaderpour6649 206249 kill_reason Another user logged on this global unique id 206249 mac 206249 bytes_out 0 206249 bytes_in 0 206249 station_ip 113.203.84.128 206249 port 104 206249 unique_id port 206249 remote_ip 10.8.1.246 206253 username kalantary6037 206253 mac 206253 bytes_out 1632255 206253 bytes_in 11484766 206253 station_ip 37.129.248.117 206253 port 108 206253 unique_id port 206253 remote_ip 10.8.1.150 206257 username barzegar 206257 mac 206257 bytes_out 0 206257 bytes_in 0 206257 station_ip 5.119.187.87 206257 port 108 206257 unique_id port 206257 remote_ip 10.8.1.6 206258 username shahruz 206258 mac 206258 bytes_out 0 206258 bytes_in 0 206258 station_ip 113.203.115.36 206258 port 115 206258 unique_id port 206258 remote_ip 10.8.1.22 206260 username shahruz 206260 mac 206260 bytes_out 0 206260 bytes_in 0 206260 station_ip 113.203.115.36 206260 port 61 206260 unique_id port 206260 remote_ip 10.8.0.22 206261 username shahruz 206261 mac 206261 bytes_out 0 206261 bytes_in 0 206261 station_ip 5.120.126.158 206261 port 115 206261 unique_id port 206261 remote_ip 10.8.1.22 206265 username barzegar8595 206265 mac 206265 bytes_out 0 206265 bytes_in 0 206265 station_ip 46.225.208.254 206265 port 102 206265 unique_id port 206266 username shahruz 206266 mac 206266 bytes_out 0 206266 bytes_in 0 206266 station_ip 5.120.126.158 206266 port 116 206266 unique_id port 206266 remote_ip 10.8.1.22 206268 username shahruz 206268 mac 206268 bytes_out 0 206268 bytes_in 0 206268 station_ip 5.120.126.158 206268 port 116 206268 unique_id port 206268 remote_ip 10.8.1.22 206269 username godarzi 206269 kill_reason Another user logged on this global unique id 206269 mac 206269 bytes_out 0 206269 bytes_in 0 206269 station_ip 5.119.140.135 206269 port 109 206269 unique_id port 206270 username kalantary6037 206270 mac 206270 bytes_out 0 206270 bytes_in 0 206270 station_ip 37.129.190.97 206270 port 115 206270 unique_id port 206270 remote_ip 10.8.1.150 206274 username barzegar 206274 mac 206274 bytes_out 0 206274 bytes_in 0 206274 station_ip 5.114.109.132 206274 port 119 206274 unique_id port 206274 remote_ip 10.8.1.6 206276 username sekonji0496 206276 mac 206276 bytes_out 0 206276 bytes_in 0 206276 station_ip 37.129.5.199 206276 port 61 206276 unique_id port 206276 remote_ip 10.8.0.66 206280 username nilufarrajaei 206280 mac 206280 bytes_out 0 206280 bytes_in 0 206280 station_ip 37.129.16.57 206280 port 49 206280 unique_id port 206280 remote_ip 10.8.0.94 206282 username shahruz 206282 mac 206282 bytes_out 0 206282 bytes_in 0 206282 station_ip 5.120.126.158 206282 port 61 206282 unique_id port 206282 remote_ip 10.8.0.22 206284 username yaghobi 206284 mac 206284 bytes_out 0 206284 bytes_in 0 206284 station_ip 37.129.87.214 206284 port 56 206284 unique_id port 206284 remote_ip 10.8.0.174 206285 username hosseini0093 206285 kill_reason Another user logged on this global unique id 206285 mac 206285 bytes_out 0 206285 bytes_in 0 206285 station_ip 83.122.215.248 206285 port 59 206285 unique_id port 206285 remote_ip 10.8.0.150 206290 username morteza4424 206290 mac 206290 bytes_out 0 206290 bytes_in 0 206290 station_ip 83.122.160.179 206290 port 118 206290 unique_id port 206290 remote_ip 10.8.1.94 206293 username shahruz 206293 mac 206250 unique_id port 206250 remote_ip 10.8.1.230 206252 username daryaei1233 206252 mac 206252 bytes_out 0 206252 bytes_in 0 206252 station_ip 37.129.94.202 206252 port 118 206252 unique_id port 206252 remote_ip 10.8.1.230 206255 username houshang 206255 mac 206255 bytes_out 0 206255 bytes_in 0 206255 station_ip 5.119.171.75 206255 port 115 206255 unique_id port 206255 remote_ip 10.8.1.134 206256 username shahruz 206256 mac 206256 bytes_out 0 206256 bytes_in 0 206256 station_ip 5.119.184.159 206256 port 108 206256 unique_id port 206256 remote_ip 10.8.1.22 206259 username dorani4942 206259 mac 206259 bytes_out 733510 206259 bytes_in 3471564 206259 station_ip 83.122.161.223 206259 port 59 206259 unique_id port 206259 remote_ip 10.8.0.170 206263 username shahruz 206263 mac 206263 bytes_out 0 206263 bytes_in 0 206263 station_ip 5.120.126.158 206263 port 104 206263 unique_id port 206263 remote_ip 10.8.1.22 206272 username barzegar8595 206272 mac 206272 bytes_out 0 206272 bytes_in 0 206272 station_ip 46.225.208.254 206272 port 118 206272 unique_id port 206272 remote_ip 10.8.1.50 206273 username houshang 206273 mac 206273 bytes_out 0 206273 bytes_in 0 206273 station_ip 5.119.171.75 206273 port 102 206273 unique_id port 206273 remote_ip 10.8.1.134 206283 username ghaderpour6649 206283 mac 206283 bytes_out 452078 206283 bytes_in 3492168 206283 station_ip 113.203.109.97 206283 port 118 206283 unique_id port 206283 remote_ip 10.8.1.246 206286 username morteza4424 206286 mac 206286 bytes_out 0 206286 bytes_in 0 206286 station_ip 83.122.160.179 206286 port 60 206286 unique_id port 206286 remote_ip 10.8.0.70 206289 username shahruz 206289 mac 206289 bytes_out 0 206289 bytes_in 0 206289 station_ip 5.120.126.158 206289 port 118 206289 unique_id port 206289 remote_ip 10.8.1.22 206291 username barzegar 206291 mac 206291 bytes_out 0 206291 bytes_in 0 206291 station_ip 5.120.179.195 206291 port 61 206291 unique_id port 206291 remote_ip 10.8.0.14 206292 username morteza4424 206292 mac 206292 bytes_out 0 206292 bytes_in 0 206292 station_ip 83.122.160.179 206292 port 118 206292 unique_id port 206292 remote_ip 10.8.1.94 206296 username morteza4424 206296 mac 206296 bytes_out 0 206296 bytes_in 0 206296 station_ip 83.122.160.179 206296 port 119 206296 unique_id port 206296 remote_ip 10.8.1.94 206300 username houshang 206300 mac 206300 bytes_out 0 206300 bytes_in 0 206300 station_ip 5.119.179.96 206300 port 102 206300 unique_id port 206301 username yaghobi 206301 mac 206301 bytes_out 1529953 206301 bytes_in 351968 206301 station_ip 37.129.87.214 206301 port 49 206301 unique_id port 206301 remote_ip 10.8.0.174 206302 username farhad3 206302 mac 206302 bytes_out 0 206302 bytes_in 0 206302 station_ip 5.119.81.146 206302 port 117 206302 unique_id port 206302 remote_ip 10.8.1.38 206307 username barzegar 206307 mac 206307 bytes_out 0 206307 bytes_in 0 206307 station_ip 5.120.179.195 206307 port 49 206307 unique_id port 206307 remote_ip 10.8.0.14 206311 username rashidi4690 206311 kill_reason Another user logged on this global unique id 206311 mac 206311 bytes_out 0 206311 bytes_in 0 206311 station_ip 5.119.188.138 206311 port 104 206311 unique_id port 206311 remote_ip 10.8.1.158 206315 username shahruz 206315 mac 206315 bytes_out 0 206315 bytes_in 0 206315 station_ip 113.203.94.20 206315 port 49 206315 unique_id port 206315 remote_ip 10.8.0.22 206275 bytes_out 0 206275 bytes_in 0 206275 station_ip 5.119.81.146 206275 port 117 206275 unique_id port 206277 username shahruz 206277 mac 206277 bytes_out 2376 206277 bytes_in 4747 206277 station_ip 5.120.126.158 206277 port 118 206277 unique_id port 206277 remote_ip 10.8.1.22 206278 username hosseini0093 206278 mac 206278 bytes_out 0 206278 bytes_in 0 206278 station_ip 5.120.140.12 206278 port 59 206278 unique_id port 206278 remote_ip 10.8.0.150 206279 username yarmohamadi7916 206279 kill_reason Another user logged on this global unique id 206279 mac 206279 bytes_out 0 206279 bytes_in 0 206279 station_ip 5.119.138.233 206279 port 103 206279 unique_id port 206279 remote_ip 10.8.1.154 206281 username barzegar 206281 mac 206281 bytes_out 0 206281 bytes_in 0 206281 station_ip 5.120.179.195 206281 port 62 206281 unique_id port 206281 remote_ip 10.8.0.14 206287 username nilufarrajaei 206287 mac 206287 bytes_out 25275 206287 bytes_in 28167 206287 station_ip 37.129.16.57 206287 port 63 206287 unique_id port 206287 remote_ip 10.8.0.94 206288 username morteza4424 206288 mac 206288 bytes_out 0 206288 bytes_in 0 206288 station_ip 83.122.160.179 206288 port 119 206288 unique_id port 206288 remote_ip 10.8.1.94 206294 username yarmohamadi7916 206294 kill_reason Another user logged on this global unique id 206294 mac 206294 bytes_out 0 206294 bytes_in 0 206294 station_ip 5.119.138.233 206294 port 103 206294 unique_id port 206297 username hosseini0093 206297 kill_reason Another user logged on this global unique id 206297 mac 206297 bytes_out 0 206297 bytes_in 0 206297 station_ip 83.122.215.248 206297 port 59 206297 unique_id port 206299 username farhad3 206299 mac 206299 bytes_out 0 206299 bytes_in 0 206299 station_ip 5.119.81.146 206299 port 117 206299 unique_id port 206304 username kalantary6037 206304 mac 206304 bytes_out 0 206304 bytes_in 0 206304 station_ip 37.129.201.245 206304 port 118 206304 unique_id port 206304 remote_ip 10.8.1.150 206305 username morteza4424 206305 mac 206305 bytes_out 0 206305 bytes_in 0 206305 station_ip 83.122.160.179 206305 port 116 206305 unique_id port 206305 remote_ip 10.8.1.94 206306 username morteza4424 206306 kill_reason Maximum check online fails reached 206306 mac 206306 bytes_out 0 206306 bytes_in 0 206306 station_ip 83.122.160.179 206306 port 102 206306 unique_id port 206308 username teymori5660 206308 kill_reason Another user logged on this global unique id 206308 mac 206308 bytes_out 0 206308 bytes_in 0 206308 station_ip 5.120.43.180 206308 port 120 206308 unique_id port 206308 remote_ip 10.8.1.14 206309 username shahruz 206309 mac 206309 bytes_out 0 206309 bytes_in 0 206309 station_ip 5.120.126.158 206309 port 49 206309 unique_id port 206309 remote_ip 10.8.0.22 206312 username barzegar 206312 mac 206312 bytes_out 0 206312 bytes_in 0 206312 station_ip 5.120.179.195 206312 port 63 206312 unique_id port 206312 remote_ip 10.8.0.14 206314 username houshang 206314 mac 206314 bytes_out 0 206314 bytes_in 0 206314 station_ip 5.119.179.96 206314 port 117 206314 unique_id port 206314 remote_ip 10.8.1.134 206316 username shahruz 206316 mac 206316 bytes_out 0 206316 bytes_in 0 206316 station_ip 113.203.94.20 206316 port 49 206316 unique_id port 206316 remote_ip 10.8.0.22 206319 username shahruz 206319 mac 206319 bytes_out 0 206319 bytes_in 0 206319 station_ip 5.119.88.109 206319 port 117 206319 unique_id port 206319 remote_ip 10.8.1.22 206322 username shahruz 206322 mac 206322 bytes_out 0 206293 bytes_out 0 206293 bytes_in 0 206293 station_ip 5.120.126.158 206293 port 119 206293 unique_id port 206293 remote_ip 10.8.1.22 206295 username shahruz 206295 mac 206295 bytes_out 0 206295 bytes_in 0 206295 station_ip 5.120.126.158 206295 port 119 206295 unique_id port 206295 remote_ip 10.8.1.22 206298 username houshang 206298 kill_reason Another user logged on this global unique id 206298 mac 206298 bytes_out 0 206298 bytes_in 0 206298 station_ip 5.119.179.96 206298 port 102 206298 unique_id port 206298 remote_ip 10.8.1.134 206303 username motamedi9772 206303 mac 206303 bytes_out 0 206303 bytes_in 0 206303 station_ip 113.203.53.162 206303 port 116 206303 unique_id port 206303 remote_ip 10.8.1.198 206310 username mohammadjavad 206310 mac 206310 bytes_out 0 206310 bytes_in 0 206310 station_ip 83.122.71.67 206310 port 55 206310 unique_id port 206310 remote_ip 10.8.0.58 206313 username shahruz 206313 mac 206313 bytes_out 9266 206313 bytes_in 9642 206313 station_ip 5.120.126.158 206313 port 49 206313 unique_id port 206313 remote_ip 10.8.0.22 206317 username shahruz 206317 mac 206317 bytes_out 0 206317 bytes_in 0 206317 station_ip 5.119.88.109 206317 port 117 206317 unique_id port 206317 remote_ip 10.8.1.22 206318 username rashidi4690 206318 mac 206318 bytes_out 0 206318 bytes_in 0 206318 station_ip 5.119.188.138 206318 port 104 206318 unique_id port 206321 username godarzi 206321 kill_reason Another user logged on this global unique id 206321 mac 206321 bytes_out 0 206321 bytes_in 0 206321 station_ip 5.119.140.135 206321 port 109 206321 unique_id port 206325 username teymori5660 206325 mac 206325 bytes_out 0 206325 bytes_in 0 206325 station_ip 5.120.43.180 206325 port 120 206325 unique_id port 206327 username yaghobi 206327 mac 206327 bytes_out 0 206327 bytes_in 0 206327 station_ip 37.129.87.214 206327 port 61 206327 unique_id port 206327 remote_ip 10.8.0.174 206330 username sabaghnezhad 206330 mac 206330 bytes_out 0 206330 bytes_in 0 206330 station_ip 83.123.62.37 206330 port 56 206330 unique_id port 206330 remote_ip 10.8.0.18 206331 username sabaghnezhad 206331 mac 206331 bytes_out 9418 206331 bytes_in 14362 206331 station_ip 83.123.62.37 206331 port 55 206331 unique_id port 206331 remote_ip 10.8.0.18 206336 username yarmohamadi7916 206336 mac 206336 bytes_out 0 206336 bytes_in 0 206336 station_ip 5.119.138.233 206336 port 103 206336 unique_id port 206340 username shahruz 206340 mac 206340 bytes_out 0 206340 bytes_in 0 206340 station_ip 5.119.182.68 206340 port 118 206340 unique_id port 206340 remote_ip 10.8.1.22 206345 username hosseini0093 206345 mac 206345 bytes_out 0 206345 bytes_in 0 206345 station_ip 83.122.215.248 206345 port 59 206345 unique_id port 206352 username shahruz 206352 mac 206352 bytes_out 0 206352 bytes_in 0 206352 station_ip 5.119.182.68 206352 port 104 206352 unique_id port 206352 remote_ip 10.8.1.22 206354 username nilufarrajaei 206354 mac 206354 bytes_out 459582 206354 bytes_in 2881039 206354 station_ip 37.129.16.57 206354 port 62 206354 unique_id port 206354 remote_ip 10.8.0.94 206355 username barzegar 206355 mac 206355 bytes_out 0 206355 bytes_in 0 206355 station_ip 5.119.147.86 206355 port 61 206355 unique_id port 206355 remote_ip 10.8.0.14 206356 username abdolahi0311 206356 kill_reason Another user logged on this global unique id 206356 mac 206356 bytes_out 0 206356 bytes_in 0 206356 station_ip 5.119.159.208 206356 port 107 206320 username shahruz 206320 mac 206320 bytes_out 0 206320 bytes_in 0 206320 station_ip 113.203.94.20 206320 port 104 206320 unique_id port 206320 remote_ip 10.8.1.22 206323 username hosseini0093 206323 kill_reason Another user logged on this global unique id 206323 mac 206323 bytes_out 0 206323 bytes_in 0 206323 station_ip 83.122.215.248 206323 port 59 206323 unique_id port 206324 username shahruz 206324 mac 206324 bytes_out 0 206324 bytes_in 0 206324 station_ip 5.119.182.104 206324 port 104 206324 unique_id port 206324 remote_ip 10.8.1.22 206329 username shahruz 206329 mac 206329 bytes_out 56136 206329 bytes_in 201711 206329 station_ip 113.203.94.20 206329 port 115 206329 unique_id port 206329 remote_ip 10.8.1.22 206334 username amirzadeh1339 206334 unique_id port 206334 terminate_cause User-Request 206334 bytes_out 2266566 206334 bytes_in 31194296 206334 station_ip 37.27.11.18 206334 port 15730115 206334 nas_port_type Virtual 206334 remote_ip 5.5.5.32 206337 username shahruz 206337 mac 206337 bytes_out 532795 206337 bytes_in 6838479 206337 station_ip 5.119.220.47 206337 port 118 206337 unique_id port 206337 remote_ip 10.8.1.22 206339 username barzegar8595 206339 mac 206339 bytes_out 0 206339 bytes_in 0 206339 station_ip 37.27.10.64 206339 port 104 206339 unique_id port 206339 remote_ip 10.8.1.50 206341 username shahruz 206341 kill_reason Maximum check online fails reached 206341 mac 206341 bytes_out 0 206341 bytes_in 0 206341 station_ip 113.203.94.20 206341 port 103 206341 unique_id port 206343 username houshang 206343 mac 206343 bytes_out 0 206343 bytes_in 0 206343 station_ip 5.119.179.96 206343 port 49 206343 unique_id port 206344 username godarzi 206344 mac 206344 bytes_out 0 206344 bytes_in 0 206344 station_ip 5.119.140.135 206344 port 109 206344 unique_id port 206348 username barzegar 206348 mac 206348 bytes_out 0 206348 bytes_in 0 206348 station_ip 5.119.147.86 206348 port 117 206348 unique_id port 206348 remote_ip 10.8.1.6 206349 username rashidi4690 206349 kill_reason Another user logged on this global unique id 206349 mac 206349 bytes_out 0 206349 bytes_in 0 206349 station_ip 5.120.184.75 206349 port 115 206349 unique_id port 206349 remote_ip 10.8.1.158 206351 username farhad3 206351 mac 206351 bytes_out 0 206351 bytes_in 0 206351 station_ip 5.119.81.146 206351 port 116 206351 unique_id port 206351 remote_ip 10.8.1.38 206353 username shahruz 206353 mac 206353 bytes_out 0 206353 bytes_in 0 206353 station_ip 5.119.182.68 206353 port 104 206353 unique_id port 206353 remote_ip 10.8.1.22 206358 username shahruz 206358 kill_reason Maximum check online fails reached 206358 mac 206358 bytes_out 0 206358 bytes_in 0 206358 station_ip 5.119.182.68 206358 port 116 206358 unique_id port 206362 username shahruz 206362 mac 206362 bytes_out 0 206362 bytes_in 0 206362 station_ip 5.119.182.68 206362 port 117 206362 unique_id port 206362 remote_ip 10.8.1.22 206367 username amirzadeh1339 206367 unique_id port 206367 terminate_cause User-Request 206367 bytes_out 7125003 206367 bytes_in 202830586 206367 station_ip 37.27.11.18 206367 port 15730120 206367 nas_port_type Virtual 206367 remote_ip 5.5.5.32 206368 username abdolahi0311 206368 mac 206368 bytes_out 0 206368 bytes_in 0 206368 station_ip 5.119.159.208 206368 port 107 206368 unique_id port 206369 username mohammadreza 206369 kill_reason Relative expiration date has reached 206369 mac 206369 bytes_out 0 206369 bytes_in 0 206369 station_ip 78.39.127.55 206369 port 63 206369 unique_id port 206322 bytes_in 0 206322 station_ip 5.119.182.104 206322 port 104 206322 unique_id port 206322 remote_ip 10.8.1.22 206326 username barzegar8595 206326 mac 206326 bytes_out 869768 206326 bytes_in 2709607 206326 station_ip 46.225.208.254 206326 port 115 206326 unique_id port 206326 remote_ip 10.8.1.50 206328 username shahruz 206328 mac 206328 bytes_out 0 206328 bytes_in 0 206328 station_ip 5.119.182.104 206328 port 104 206328 unique_id port 206328 remote_ip 10.8.1.22 206332 username hosseini0093 206332 kill_reason Another user logged on this global unique id 206332 mac 206332 bytes_out 0 206332 bytes_in 0 206332 station_ip 83.122.215.248 206332 port 59 206332 unique_id port 206333 username rashidi4690 206333 mac 206333 bytes_out 172526 206333 bytes_in 219058 206333 station_ip 5.120.184.75 206333 port 115 206333 unique_id port 206333 remote_ip 10.8.1.158 206335 username houshang 206335 kill_reason Another user logged on this global unique id 206335 mac 206335 bytes_out 0 206335 bytes_in 0 206335 station_ip 5.119.179.96 206335 port 49 206335 unique_id port 206335 remote_ip 10.8.0.50 206338 username shahruz 206338 mac 206338 bytes_out 0 206338 bytes_in 0 206338 station_ip 113.203.94.20 206338 port 103 206338 unique_id port 206338 remote_ip 10.8.1.22 206342 username esmaeili1522 206342 mac 206342 bytes_out 4025609 206342 bytes_in 36956292 206342 station_ip 5.120.124.47 206342 port 117 206342 unique_id port 206342 remote_ip 10.8.1.106 206346 username fezealinaghi 206346 mac 206346 bytes_out 0 206346 bytes_in 0 206346 station_ip 83.123.161.160 206346 port 115 206346 unique_id port 206346 remote_ip 10.8.1.222 206347 username esmaeili1522 206347 mac 206347 bytes_out 0 206347 bytes_in 0 206347 station_ip 5.120.124.47 206347 port 104 206347 unique_id port 206347 remote_ip 10.8.1.106 206350 username shahruz 206350 mac 206350 bytes_out 0 206350 bytes_in 0 206350 station_ip 5.119.182.68 206350 port 104 206350 unique_id port 206350 remote_ip 10.8.1.22 206357 username shahruz 206357 mac 206357 bytes_out 0 206357 bytes_in 0 206357 station_ip 5.119.182.68 206357 port 116 206357 unique_id port 206357 remote_ip 10.8.1.22 206359 username barzegar 206359 mac 206359 bytes_out 0 206359 bytes_in 0 206359 station_ip 5.119.147.86 206359 port 61 206359 unique_id port 206359 remote_ip 10.8.0.14 206360 username shahruz 206360 mac 206360 bytes_out 0 206360 bytes_in 0 206360 station_ip 5.119.182.68 206360 port 117 206360 unique_id port 206360 remote_ip 10.8.1.22 206364 username shahruz 206364 mac 206364 bytes_out 0 206364 bytes_in 0 206364 station_ip 37.129.23.66 206364 port 118 206364 unique_id port 206364 remote_ip 10.8.1.22 206366 username shahruz 206366 kill_reason Maximum check online fails reached 206366 mac 206366 bytes_out 0 206366 bytes_in 0 206366 station_ip 37.129.23.66 206366 port 117 206366 unique_id port 206370 username mohammadreza 206370 kill_reason Relative expiration date has reached 206370 mac 206370 bytes_out 0 206370 bytes_in 0 206370 station_ip 78.39.127.55 206370 port 107 206370 unique_id port 206371 username nilufarrajaei 206371 mac 206371 bytes_out 0 206371 bytes_in 0 206371 station_ip 37.129.16.57 206371 port 104 206371 unique_id port 206371 remote_ip 10.8.1.138 206374 username sekonji0496 206374 kill_reason Another user logged on this global unique id 206374 mac 206374 bytes_out 0 206374 bytes_in 0 206374 station_ip 37.129.5.199 206374 port 49 206374 unique_id port 206374 remote_ip 10.8.0.66 206376 username hosseine 206356 unique_id port 206356 remote_ip 10.8.1.190 206361 username farhad3 206361 mac 206361 bytes_out 0 206361 bytes_in 0 206361 station_ip 5.119.81.146 206361 port 118 206361 unique_id port 206361 remote_ip 10.8.1.38 206363 username shahruz 206363 mac 206363 bytes_out 0 206363 bytes_in 0 206363 station_ip 5.119.182.68 206363 port 117 206363 unique_id port 206363 remote_ip 10.8.1.22 206365 username shahruz 206365 mac 206365 bytes_out 0 206365 bytes_in 0 206365 station_ip 5.119.182.68 206365 port 118 206365 unique_id port 206365 remote_ip 10.8.1.22 206372 username shahruz 206372 mac 206372 bytes_out 0 206372 bytes_in 0 206372 station_ip 5.119.182.68 206372 port 107 206372 unique_id port 206372 remote_ip 10.8.1.22 206375 username nilufarrajaei 206375 mac 206375 bytes_out 0 206375 bytes_in 0 206375 station_ip 37.129.16.57 206375 port 104 206375 unique_id port 206375 remote_ip 10.8.1.138 206378 username fezealinaghi 206378 mac 206378 bytes_out 188438 206378 bytes_in 180267 206378 station_ip 83.123.161.160 206378 port 109 206378 unique_id port 206378 remote_ip 10.8.1.222 206381 username shahruz 206381 mac 206381 bytes_out 0 206381 bytes_in 0 206381 station_ip 5.119.182.68 206381 port 62 206381 unique_id port 206381 remote_ip 10.8.0.22 206388 username shahruz 206388 mac 206388 bytes_out 0 206388 bytes_in 0 206388 station_ip 5.119.129.188 206388 port 109 206388 unique_id port 206388 remote_ip 10.8.1.22 206393 username mohammadreza 206393 kill_reason Relative expiration date has reached 206393 mac 206393 bytes_out 0 206393 bytes_in 0 206393 station_ip 78.39.127.55 206393 port 111 206393 unique_id port 206404 username shahruz 206404 mac 206404 bytes_out 0 206404 bytes_in 0 206404 station_ip 37.129.122.94 206404 port 119 206404 unique_id port 206404 remote_ip 10.8.1.22 206405 username daryaei1233 206405 mac 206405 bytes_out 0 206405 bytes_in 0 206405 station_ip 83.122.133.208 206405 port 119 206405 unique_id port 206405 remote_ip 10.8.1.230 206412 username motamedi9772 206412 mac 206412 bytes_out 0 206412 bytes_in 0 206412 station_ip 113.203.97.34 206412 port 121 206412 unique_id port 206412 remote_ip 10.8.1.198 206418 username shahruz 206418 kill_reason Maximum check online fails reached 206418 mac 206418 bytes_out 0 206418 bytes_in 0 206418 station_ip 37.129.122.94 206418 port 104 206418 unique_id port 206420 username shahruz 206420 mac 206420 bytes_out 0 206420 bytes_in 0 206420 station_ip 37.129.122.94 206420 port 55 206420 unique_id port 206420 remote_ip 10.8.0.22 206423 username daryaei1233 206423 mac 206423 bytes_out 0 206423 bytes_in 0 206423 station_ip 83.122.133.208 206423 port 121 206423 unique_id port 206423 remote_ip 10.8.1.230 206426 username daryaei1233 206426 mac 206426 bytes_out 0 206426 bytes_in 0 206426 station_ip 83.122.133.208 206426 port 115 206426 unique_id port 206426 remote_ip 10.8.1.230 206428 username shahruz 206428 mac 206428 bytes_out 0 206428 bytes_in 0 206428 station_ip 37.129.122.94 206428 port 55 206428 unique_id port 206428 remote_ip 10.8.0.22 206431 username daryaei1233 206431 mac 206431 bytes_out 0 206431 bytes_in 0 206431 station_ip 83.122.133.208 206431 port 115 206431 unique_id port 206431 remote_ip 10.8.1.230 206432 username shahruz 206432 mac 206432 bytes_out 0 206432 bytes_in 0 206432 station_ip 37.129.122.94 206432 port 55 206432 unique_id port 206432 remote_ip 10.8.0.22 206434 username daryaei1233 206373 username khademi 206373 kill_reason Another user logged on this global unique id 206373 mac 206373 bytes_out 0 206373 bytes_in 0 206373 station_ip 83.123.49.108 206373 port 111 206373 unique_id port 206373 remote_ip 10.8.1.226 206379 username sabaghnezhad 206379 mac 206379 bytes_out 0 206379 bytes_in 0 206379 station_ip 83.123.62.37 206379 port 56 206379 unique_id port 206379 remote_ip 10.8.0.18 206382 username shahruz 206382 mac 206382 bytes_out 2900 206382 bytes_in 10305 206382 station_ip 37.129.122.94 206382 port 56 206382 unique_id port 206382 remote_ip 10.8.0.22 206386 username yaghobi 206386 mac 206386 bytes_out 0 206386 bytes_in 0 206386 station_ip 37.129.37.130 206386 port 61 206386 unique_id port 206386 remote_ip 10.8.0.174 206390 username teymori5660 206390 mac 206390 bytes_out 0 206390 bytes_in 0 206390 station_ip 5.120.43.180 206390 port 59 206390 unique_id port 206390 remote_ip 10.8.0.122 206395 username hadibarzegar 206395 kill_reason Another user logged on this global unique id 206395 mac 206395 bytes_out 0 206395 bytes_in 0 206395 station_ip 5.120.115.115 206395 port 118 206395 unique_id port 206395 remote_ip 10.8.1.170 206397 username nilufarrajaei 206397 mac 206397 bytes_out 0 206397 bytes_in 0 206397 station_ip 37.129.16.57 206397 port 104 206397 unique_id port 206397 remote_ip 10.8.1.138 206398 username shahruz 206398 mac 206398 bytes_out 0 206398 bytes_in 0 206398 station_ip 37.129.122.94 206398 port 119 206398 unique_id port 206398 remote_ip 10.8.1.22 206399 username shahruz 206399 mac 206399 bytes_out 0 206399 bytes_in 0 206399 station_ip 37.129.122.94 206399 port 56 206399 unique_id port 206399 remote_ip 10.8.0.22 206400 username shahruz 206400 mac 206400 bytes_out 0 206400 bytes_in 0 206400 station_ip 37.129.122.94 206400 port 119 206400 unique_id port 206400 remote_ip 10.8.1.22 206401 username shahruz 206401 mac 206401 bytes_out 0 206401 bytes_in 0 206401 station_ip 37.129.122.94 206401 port 59 206401 unique_id port 206401 remote_ip 10.8.0.22 206402 username daryaei1233 206402 mac 206402 bytes_out 3860 206402 bytes_in 6190 206402 station_ip 83.122.133.208 206402 port 55 206402 unique_id port 206402 remote_ip 10.8.0.242 206407 username rahim 206407 mac 206407 bytes_out 212062 206407 bytes_in 355989 206407 station_ip 5.119.142.137 206407 port 107 206407 unique_id port 206407 remote_ip 10.8.1.90 206409 username nilufarrajaei 206409 mac 206409 bytes_out 25104666 206409 bytes_in 2658472 206409 station_ip 37.129.16.57 206409 port 104 206409 unique_id port 206409 remote_ip 10.8.1.138 206413 username yaghobi 206413 mac 206413 bytes_out 0 206413 bytes_in 0 206413 station_ip 37.129.110.158 206413 port 55 206413 unique_id port 206413 remote_ip 10.8.0.174 206414 username daryaei1233 206414 mac 206414 bytes_out 0 206414 bytes_in 0 206414 station_ip 83.122.133.208 206414 port 55 206414 unique_id port 206414 remote_ip 10.8.0.242 206416 username shahruz 206416 mac 206416 bytes_out 0 206416 bytes_in 0 206416 station_ip 37.129.122.94 206416 port 55 206416 unique_id port 206416 remote_ip 10.8.0.22 206422 username shahruz 206422 mac 206422 bytes_out 0 206422 bytes_in 0 206422 station_ip 37.129.122.94 206422 port 55 206422 unique_id port 206422 remote_ip 10.8.0.22 206429 username shahruz 206429 mac 206429 bytes_out 0 206429 bytes_in 0 206429 station_ip 37.129.122.94 206429 port 55 206429 unique_id port 206429 remote_ip 10.8.0.22 206376 mac 206376 bytes_out 2915524 206376 bytes_in 30711575 206376 station_ip 113.203.34.38 206376 port 62 206376 unique_id port 206376 remote_ip 10.8.0.118 206377 username khademi 206377 mac 206377 bytes_out 0 206377 bytes_in 0 206377 station_ip 83.123.49.108 206377 port 111 206377 unique_id port 206380 username sekonji0496 206380 kill_reason Another user logged on this global unique id 206380 mac 206380 bytes_out 0 206380 bytes_in 0 206380 station_ip 37.129.5.199 206380 port 49 206380 unique_id port 206383 username barzegar 206383 mac 206383 bytes_out 0 206383 bytes_in 0 206383 station_ip 5.119.101.63 206383 port 119 206383 unique_id port 206383 remote_ip 10.8.1.6 206384 username shahruz 206384 mac 206384 bytes_out 2207 206384 bytes_in 4588 206384 station_ip 5.120.34.197 206384 port 56 206384 unique_id port 206384 remote_ip 10.8.0.22 206385 username shahruz 206385 mac 206385 bytes_out 2199 206385 bytes_in 5140 206385 station_ip 37.129.122.94 206385 port 62 206385 unique_id port 206385 remote_ip 10.8.0.22 206387 username barzegar8595 206387 mac 206387 bytes_out 0 206387 bytes_in 0 206387 station_ip 37.27.10.64 206387 port 55 206387 unique_id port 206387 remote_ip 10.8.0.82 206389 username rashidi4690 206389 mac 206389 bytes_out 0 206389 bytes_in 0 206389 station_ip 5.120.184.75 206389 port 115 206389 unique_id port 206391 username shahruz 206391 mac 206391 bytes_out 0 206391 bytes_in 0 206391 station_ip 5.119.129.188 206391 port 55 206391 unique_id port 206391 remote_ip 10.8.0.22 206392 username shahruz 206392 mac 206392 bytes_out 0 206392 bytes_in 0 206392 station_ip 37.129.122.94 206392 port 109 206392 unique_id port 206392 remote_ip 10.8.1.22 206394 username barzegar8595 206394 mac 206394 bytes_out 7226 206394 bytes_in 10329 206394 station_ip 46.225.208.254 206394 port 55 206394 unique_id port 206394 remote_ip 10.8.0.82 206396 username shahruz 206396 mac 206396 bytes_out 0 206396 bytes_in 0 206396 station_ip 37.129.122.94 206396 port 56 206396 unique_id port 206396 remote_ip 10.8.0.22 206403 username yaghobi 206403 mac 206403 bytes_out 12578 206403 bytes_in 31901 206403 station_ip 37.129.110.158 206403 port 56 206403 unique_id port 206403 remote_ip 10.8.0.174 206406 username shahruz 206406 mac 206406 bytes_out 0 206406 bytes_in 0 206406 station_ip 37.129.122.94 206406 port 56 206406 unique_id port 206406 remote_ip 10.8.0.22 206408 username daryaei1233 206408 mac 206408 bytes_out 0 206408 bytes_in 0 206408 station_ip 83.122.133.208 206408 port 56 206408 unique_id port 206408 remote_ip 10.8.0.242 206410 username farhad3 206410 kill_reason Another user logged on this global unique id 206410 mac 206410 bytes_out 0 206410 bytes_in 0 206410 station_ip 5.119.81.146 206410 port 109 206410 unique_id port 206410 remote_ip 10.8.1.38 206411 username shahruz 206411 mac 206411 bytes_out 0 206411 bytes_in 0 206411 station_ip 37.129.122.94 206411 port 59 206411 unique_id port 206411 remote_ip 10.8.0.22 206415 username aminvpns6 206415 mac 206415 bytes_out 0 206415 bytes_in 0 206415 station_ip 5.120.120.122 206415 port 121 206415 unique_id port 206415 remote_ip 10.8.1.62 206417 username shahruz 206417 mac 206417 bytes_out 0 206417 bytes_in 0 206417 station_ip 37.129.122.94 206417 port 55 206417 unique_id port 206417 remote_ip 10.8.0.22 206419 username sekonji0496 206419 kill_reason Another user logged on this global unique id 206419 mac 206419 bytes_out 0 206419 bytes_in 0 206419 station_ip 37.129.5.199 206419 port 49 206419 unique_id port 206421 username kalantary6037 206421 mac 206421 bytes_out 0 206421 bytes_in 0 206421 station_ip 37.129.149.101 206421 port 115 206421 unique_id port 206421 remote_ip 10.8.1.150 206424 username yarmohamadi7916 206424 kill_reason Another user logged on this global unique id 206424 mac 206424 bytes_out 0 206424 bytes_in 0 206424 station_ip 5.119.226.151 206424 port 120 206424 unique_id port 206424 remote_ip 10.8.1.154 206425 username sekonji0496 206425 kill_reason Another user logged on this global unique id 206425 mac 206425 bytes_out 0 206425 bytes_in 0 206425 station_ip 37.129.5.199 206425 port 49 206425 unique_id port 206427 username yaghobi 206427 mac 206427 bytes_out 44008 206427 bytes_in 63502 206427 station_ip 37.129.110.158 206427 port 59 206427 unique_id port 206427 remote_ip 10.8.0.174 206430 username shahruz 206430 mac 206430 bytes_out 0 206430 bytes_in 0 206430 station_ip 37.129.122.94 206430 port 55 206430 unique_id port 206430 remote_ip 10.8.0.22 206433 username daryaei1233 206433 mac 206433 bytes_out 0 206433 bytes_in 0 206433 station_ip 83.122.133.208 206433 port 115 206433 unique_id port 206433 remote_ip 10.8.1.230 206435 username daryaei1233 206435 mac 206435 bytes_out 0 206435 bytes_in 0 206435 station_ip 83.122.133.208 206435 port 115 206435 unique_id port 206435 remote_ip 10.8.1.230 206436 username nilufarrajaei 206436 mac 206436 bytes_out 2191758 206436 bytes_in 17483908 206436 station_ip 37.129.16.57 206436 port 56 206436 unique_id port 206436 remote_ip 10.8.0.94 206438 username rashidi4690 206438 mac 206438 bytes_out 0 206438 bytes_in 0 206438 station_ip 5.120.184.75 206438 port 119 206438 unique_id port 206438 remote_ip 10.8.1.158 206443 username shahruz 206443 mac 206443 bytes_out 0 206443 bytes_in 0 206443 station_ip 37.129.122.94 206443 port 56 206443 unique_id port 206443 remote_ip 10.8.0.22 206444 username daryaei1233 206444 mac 206444 bytes_out 0 206444 bytes_in 0 206444 station_ip 83.122.133.208 206444 port 115 206444 unique_id port 206444 remote_ip 10.8.1.230 206447 username shahruz 206447 mac 206447 bytes_out 0 206447 bytes_in 0 206447 station_ip 37.129.122.94 206447 port 119 206447 unique_id port 206447 remote_ip 10.8.1.22 206450 username daryaei1233 206450 mac 206450 bytes_out 1644 206450 bytes_in 4442 206450 station_ip 83.122.23.99 206450 port 61 206450 unique_id port 206450 remote_ip 10.8.0.242 206451 username daryaei1233 206451 mac 206451 bytes_out 0 206451 bytes_in 0 206451 station_ip 83.122.23.99 206451 port 115 206451 unique_id port 206451 remote_ip 10.8.1.230 206453 username sekonji0496 206453 kill_reason Another user logged on this global unique id 206453 mac 206453 bytes_out 0 206453 bytes_in 0 206453 station_ip 37.129.5.199 206453 port 49 206453 unique_id port 206456 username teymori5660 206456 mac 206456 bytes_out 0 206456 bytes_in 0 206456 station_ip 5.119.145.110 206456 port 119 206456 unique_id port 206456 remote_ip 10.8.1.14 206458 username shahruz 206458 mac 206458 bytes_out 2050 206458 bytes_in 4327 206458 station_ip 37.129.122.94 206458 port 63 206458 unique_id port 206458 remote_ip 10.8.0.22 206463 username hadibarzegar 206463 mac 206463 bytes_out 0 206463 bytes_in 0 206463 station_ip 5.120.115.115 206463 port 118 206463 unique_id port 206465 username shahruz 206465 mac 206465 bytes_out 0 206465 bytes_in 0 206465 station_ip 37.129.122.94 206434 kill_reason Maximum check online fails reached 206434 mac 206434 bytes_out 0 206434 bytes_in 0 206434 station_ip 83.122.133.208 206434 port 59 206434 unique_id port 206437 username nilufarrajaei 206437 mac 206437 bytes_out 5997 206437 bytes_in 10040 206437 station_ip 37.129.16.57 206437 port 55 206437 unique_id port 206437 remote_ip 10.8.0.94 206439 username shahruz 206439 mac 206439 bytes_out 8574 206439 bytes_in 16620 206439 station_ip 37.129.122.94 206439 port 56 206439 unique_id port 206439 remote_ip 10.8.0.22 206442 username yarmohamadi7916 206442 kill_reason Another user logged on this global unique id 206442 mac 206442 bytes_out 0 206442 bytes_in 0 206442 station_ip 5.119.226.151 206442 port 120 206442 unique_id port 206446 username yarmohamadi7916 206446 mac 206446 bytes_out 0 206446 bytes_in 0 206446 station_ip 5.119.226.151 206446 port 120 206446 unique_id port 206449 username shahruz 206449 kill_reason Maximum check online fails reached 206449 mac 206449 bytes_out 0 206449 bytes_in 0 206449 station_ip 37.129.122.94 206449 port 56 206449 unique_id port 206452 username shahruz 206452 kill_reason Maximum number of concurrent logins reached 206452 mac 206452 bytes_out 0 206452 bytes_in 0 206452 station_ip 37.129.122.94 206452 port 63 206452 unique_id port 206455 username shahruz 206455 kill_reason Maximum check online fails reached 206455 mac 206455 bytes_out 0 206455 bytes_in 0 206455 station_ip 37.129.122.94 206455 port 115 206455 unique_id port 206459 username daryaei1233 206459 mac 206459 bytes_out 486532 206459 bytes_in 7521485 206459 station_ip 83.123.36.213 206459 port 62 206459 unique_id port 206459 remote_ip 10.8.0.242 206466 username sekonji0496 206466 kill_reason Another user logged on this global unique id 206466 mac 206466 bytes_out 0 206466 bytes_in 0 206466 station_ip 37.129.5.199 206466 port 49 206466 unique_id port 206474 username godarzi 206474 mac 206474 bytes_out 0 206474 bytes_in 0 206474 station_ip 5.119.173.123 206474 port 123 206474 unique_id port 206474 remote_ip 10.8.1.78 206476 username sekonji0496 206476 kill_reason Another user logged on this global unique id 206476 mac 206476 bytes_out 0 206476 bytes_in 0 206476 station_ip 37.129.5.199 206476 port 49 206476 unique_id port 206477 username nilufarrajaei 206477 kill_reason Another user logged on this global unique id 206477 mac 206477 bytes_out 0 206477 bytes_in 0 206477 station_ip 37.129.16.57 206477 port 55 206477 unique_id port 206477 remote_ip 10.8.0.94 206479 username dorani4942 206479 mac 206479 bytes_out 0 206479 bytes_in 0 206479 station_ip 83.123.166.175 206479 port 64 206479 unique_id port 206479 remote_ip 10.8.0.170 206481 username shahruz 206481 mac 206481 bytes_out 0 206481 bytes_in 0 206481 station_ip 37.129.122.94 206481 port 62 206481 unique_id port 206481 remote_ip 10.8.0.22 206486 username shahruz 206486 mac 206486 bytes_out 0 206486 bytes_in 0 206486 station_ip 37.129.122.94 206486 port 62 206486 unique_id port 206486 remote_ip 10.8.0.22 206488 username daryaei1233 206488 mac 206488 bytes_out 0 206488 bytes_in 0 206488 station_ip 83.123.36.213 206488 port 118 206488 unique_id port 206488 remote_ip 10.8.1.230 206489 username daryaei1233 206489 mac 206489 bytes_out 0 206489 bytes_in 0 206489 station_ip 83.123.36.213 206489 port 67 206489 unique_id port 206489 remote_ip 10.8.0.242 206491 username farhad3 206491 mac 206491 bytes_out 0 206491 bytes_in 0 206491 station_ip 5.119.81.146 206491 port 109 206491 unique_id port 206493 username dorani4942 206440 username shahruz 206440 mac 206440 bytes_out 0 206440 bytes_in 0 206440 station_ip 37.129.122.94 206440 port 55 206440 unique_id port 206440 remote_ip 10.8.0.22 206441 username nilufarrajaei 206441 mac 206441 bytes_out 22976 206441 bytes_in 54073 206441 station_ip 37.129.16.57 206441 port 61 206441 unique_id port 206441 remote_ip 10.8.0.94 206445 username shahruz 206445 mac 206445 bytes_out 0 206445 bytes_in 0 206445 station_ip 37.129.122.94 206445 port 119 206445 unique_id port 206445 remote_ip 10.8.1.22 206448 username daryaei1233 206448 mac 206448 bytes_out 0 206448 bytes_in 0 206448 station_ip 83.122.23.99 206448 port 115 206448 unique_id port 206448 remote_ip 10.8.1.230 206454 username shahruz 206454 kill_reason Maximum check online fails reached 206454 mac 206454 bytes_out 0 206454 bytes_in 0 206454 station_ip 37.129.122.94 206454 port 61 206454 unique_id port 206457 username shahruz 206457 mac 206457 bytes_out 0 206457 bytes_in 0 206457 station_ip 37.129.122.94 206457 port 119 206457 unique_id port 206457 remote_ip 10.8.1.22 206460 username shahruz 206460 mac 206460 bytes_out 0 206460 bytes_in 0 206460 station_ip 37.129.122.94 206460 port 63 206460 unique_id port 206460 remote_ip 10.8.0.22 206461 username farhad3 206461 kill_reason Another user logged on this global unique id 206461 mac 206461 bytes_out 0 206461 bytes_in 0 206461 station_ip 5.119.81.146 206461 port 109 206461 unique_id port 206462 username hoorieh 206462 kill_reason Relative expiration date has reached 206462 mac 206462 bytes_out 0 206462 bytes_in 0 206462 station_ip 5.119.209.33 206462 port 123 206462 unique_id port 206464 username daryaei1233 206464 kill_reason Another user logged on this global unique id 206464 mac 206464 bytes_out 0 206464 bytes_in 0 206464 station_ip 5.202.13.229 206464 port 120 206464 unique_id port 206464 remote_ip 10.8.1.230 206467 username shahruz 206467 mac 206467 bytes_out 0 206467 bytes_in 0 206467 station_ip 37.129.122.94 206467 port 62 206467 unique_id port 206467 remote_ip 10.8.0.22 206472 username sekonji0496 206472 kill_reason Another user logged on this global unique id 206472 mac 206472 bytes_out 0 206472 bytes_in 0 206472 station_ip 37.129.5.199 206472 port 49 206472 unique_id port 206473 username godarzi 206473 mac 206473 bytes_out 1868063 206473 bytes_in 29413624 206473 station_ip 5.119.140.135 206473 port 122 206473 unique_id port 206473 remote_ip 10.8.1.78 206483 username daryaei1233 206483 mac 206483 bytes_out 0 206483 bytes_in 0 206483 station_ip 83.123.36.213 206483 port 62 206483 unique_id port 206483 remote_ip 10.8.0.242 206492 username daryaei1233 206492 kill_reason Maximum check online fails reached 206492 mac 206492 bytes_out 0 206492 bytes_in 0 206492 station_ip 83.123.36.213 206492 port 66 206492 unique_id port 206496 username daryaei1233 206496 mac 206496 bytes_out 0 206496 bytes_in 0 206496 station_ip 83.123.36.213 206496 port 62 206496 unique_id port 206496 remote_ip 10.8.0.242 206498 username shahruz 206498 mac 206498 bytes_out 0 206498 bytes_in 0 206498 station_ip 37.129.122.94 206498 port 67 206498 unique_id port 206498 remote_ip 10.8.0.22 206500 username khademi 206500 kill_reason Another user logged on this global unique id 206500 mac 206500 bytes_out 0 206500 bytes_in 0 206500 station_ip 83.123.60.120 206500 port 119 206500 unique_id port 206500 remote_ip 10.8.1.226 206501 username barzegar 206501 mac 206501 bytes_out 0 206501 bytes_in 0 206501 station_ip 5.114.85.131 206501 port 122 206465 port 62 206465 unique_id port 206465 remote_ip 10.8.0.22 206468 username barzegar 206468 mac 206468 bytes_out 3332 206468 bytes_in 5724 206468 station_ip 5.119.101.63 206468 port 118 206468 unique_id port 206468 remote_ip 10.8.1.6 206469 username shahruz 206469 mac 206469 bytes_out 0 206469 bytes_in 0 206469 station_ip 37.129.122.94 206469 port 62 206469 unique_id port 206469 remote_ip 10.8.0.22 206470 username daryaei1233 206470 mac 206470 bytes_out 0 206470 bytes_in 0 206470 station_ip 5.202.13.229 206470 port 120 206470 unique_id port 206471 username shahruz 206471 mac 206471 bytes_out 2310 206471 bytes_in 4603 206471 station_ip 37.129.122.94 206471 port 62 206471 unique_id port 206471 remote_ip 10.8.0.22 206475 username barzegar 206475 mac 206475 bytes_out 0 206475 bytes_in 0 206475 station_ip 5.114.85.131 206475 port 63 206475 unique_id port 206475 remote_ip 10.8.0.14 206478 username shahruz 206478 mac 206478 bytes_out 0 206478 bytes_in 0 206478 station_ip 37.129.122.94 206478 port 62 206478 unique_id port 206478 remote_ip 10.8.0.22 206480 username shahruz 206480 mac 206480 bytes_out 0 206480 bytes_in 0 206480 station_ip 37.129.122.94 206480 port 62 206480 unique_id port 206480 remote_ip 10.8.0.22 206482 username daryaei1233 206482 mac 206482 bytes_out 199004 206482 bytes_in 1613255 206482 station_ip 83.123.36.213 206482 port 118 206482 unique_id port 206482 remote_ip 10.8.1.230 206484 username shahruz 206484 mac 206484 bytes_out 0 206484 bytes_in 0 206484 station_ip 37.129.122.94 206484 port 62 206484 unique_id port 206484 remote_ip 10.8.0.22 206485 username daryaei1233 206485 mac 206485 bytes_out 0 206485 bytes_in 0 206485 station_ip 83.123.36.213 206485 port 62 206485 unique_id port 206485 remote_ip 10.8.0.242 206487 username dorani4942 206487 kill_reason Maximum check online fails reached 206487 mac 206487 bytes_out 0 206487 bytes_in 0 206487 station_ip 83.123.166.175 206487 port 64 206487 unique_id port 206490 username kharazmi2920 206490 kill_reason Another user logged on this global unique id 206490 mac 206490 bytes_out 0 206490 bytes_in 0 206490 station_ip 83.122.166.21 206490 port 60 206490 unique_id port 206490 remote_ip 10.8.0.34 206494 username shahruz 206494 mac 206494 bytes_out 155656 206494 bytes_in 533124 206494 station_ip 37.129.122.94 206494 port 62 206494 unique_id port 206494 remote_ip 10.8.0.22 206495 username shahruz 206495 mac 206495 bytes_out 0 206495 bytes_in 0 206495 station_ip 37.129.122.94 206495 port 62 206495 unique_id port 206495 remote_ip 10.8.0.22 206497 username hamid1430 206497 mac 206497 bytes_out 429609 206497 bytes_in 1665433 206497 station_ip 83.123.241.49 206497 port 65 206497 unique_id port 206497 remote_ip 10.8.0.110 206499 username barzegar8595 206499 mac 206499 bytes_out 0 206499 bytes_in 0 206499 station_ip 46.225.208.254 206499 port 111 206499 unique_id port 206499 remote_ip 10.8.1.50 206504 username shahruz 206504 kill_reason Maximum number of concurrent logins reached 206504 mac 206504 bytes_out 0 206504 bytes_in 0 206504 station_ip 37.129.122.94 206504 port 69 206504 unique_id port 206505 username daryaei1233 206505 mac 206505 bytes_out 2005 206505 bytes_in 4282 206505 station_ip 83.123.36.213 206505 port 68 206505 unique_id port 206505 remote_ip 10.8.0.242 206509 username khademi 206509 mac 206509 bytes_out 0 206509 bytes_in 0 206509 station_ip 83.123.60.120 206509 port 119 206509 unique_id port 206493 mac 206493 bytes_out 0 206493 bytes_in 0 206493 station_ip 83.123.166.175 206493 port 109 206493 unique_id port 206493 remote_ip 10.8.1.10 206502 username rashidi4690 206502 mac 206502 bytes_out 0 206502 bytes_in 0 206502 station_ip 5.120.184.75 206502 port 120 206502 unique_id port 206502 remote_ip 10.8.1.158 206507 username shahruz 206507 kill_reason Maximum check online fails reached 206507 mac 206507 bytes_out 0 206507 bytes_in 0 206507 station_ip 37.129.122.94 206507 port 65 206507 unique_id port 206510 username barzegar8595 206510 mac 206510 bytes_out 0 206510 bytes_in 0 206510 station_ip 46.225.208.254 206510 port 111 206510 unique_id port 206510 remote_ip 10.8.1.50 206514 username mohammadjavad 206514 kill_reason Maximum check online fails reached 206514 mac 206514 bytes_out 150500 206514 bytes_in 439373 206514 station_ip 83.122.71.55 206514 port 63 206514 unique_id port 206514 remote_ip 10.8.0.58 206517 username barzegar 206517 kill_reason Maximum check online fails reached 206517 mac 206517 bytes_out 0 206517 bytes_in 0 206517 station_ip 5.120.118.159 206517 port 118 206517 unique_id port 206517 remote_ip 10.8.1.6 206520 username hamid1430 206520 kill_reason Maximum check online fails reached 206520 mac 206520 bytes_out 143158 206520 bytes_in 252877 206520 station_ip 83.123.241.49 206520 port 62 206520 unique_id port 206520 remote_ip 10.8.0.110 206521 username farhad3 206521 kill_reason Maximum check online fails reached 206521 mac 206521 bytes_out 0 206521 bytes_in 0 206521 station_ip 5.119.81.146 206521 port 109 206521 unique_id port 206521 remote_ip 10.8.1.38 206524 username malekpoir 206524 kill_reason Maximum check online fails reached 206524 mac 206524 bytes_out 0 206524 bytes_in 0 206524 station_ip 5.119.91.70 206524 port 121 206524 unique_id port 206524 remote_ip 10.8.1.70 206529 username hamid.e 206529 unique_id port 206529 terminate_cause User-Request 206529 bytes_out 1409758 206529 bytes_in 13423724 206529 station_ip 31.56.157.239 206529 port 15730134 206529 nas_port_type Virtual 206529 remote_ip 5.5.5.234 206531 username alirezaza 206531 unique_id port 206531 terminate_cause Lost-Carrier 206531 bytes_out 244410 206531 bytes_in 837751 206531 station_ip 5.120.13.158 206531 port 15730140 206531 nas_port_type Virtual 206531 remote_ip 5.5.5.239 206532 username hamid.e 206532 unique_id port 206532 terminate_cause User-Request 206532 bytes_out 7834849 206532 bytes_in 211964390 206532 station_ip 31.56.157.239 206532 port 15730136 206532 nas_port_type Virtual 206532 remote_ip 5.5.5.234 206534 username alirezazadeh 206534 unique_id port 206534 terminate_cause Lost-Carrier 206534 bytes_out 792351 206534 bytes_in 11337719 206534 station_ip 5.119.75.19 206534 port 15730144 206534 nas_port_type Virtual 206534 remote_ip 5.5.5.242 206535 username amirzadeh1339 206535 unique_id port 206535 terminate_cause User-Request 206535 bytes_out 25244134 206535 bytes_in 624061493 206535 station_ip 37.27.11.18 206535 port 15730141 206535 nas_port_type Virtual 206535 remote_ip 5.5.5.32 206538 username aminvpn 206538 unique_id port 206538 terminate_cause Lost-Carrier 206538 bytes_out 2312405 206538 bytes_in 117561921 206538 station_ip 5.120.30.244 206538 port 15730150 206538 nas_port_type Virtual 206538 remote_ip 5.5.5.235 206541 username sobhan 206541 unique_id port 206541 terminate_cause Lost-Carrier 206541 bytes_out 5149762 206541 bytes_in 95006621 206541 station_ip 5.119.236.175 206541 port 15730157 206541 nas_port_type Virtual 206541 remote_ip 5.5.5.218 206543 username aminvpn 206543 unique_id port 206543 terminate_cause Lost-Carrier 206543 bytes_out 571409 206543 bytes_in 3627259 206543 station_ip 5.119.134.38 206501 unique_id port 206501 remote_ip 10.8.1.6 206503 username shahruz 206503 kill_reason Maximum number of concurrent logins reached 206503 mac 206503 bytes_out 0 206503 bytes_in 0 206503 station_ip 37.129.122.94 206503 port 69 206503 unique_id port 206506 username shahruz 206506 kill_reason Maximum check online fails reached 206506 mac 206506 bytes_out 0 206506 bytes_in 0 206506 station_ip 37.129.122.94 206506 port 67 206506 unique_id port 206508 username rahim 206508 mac 206508 bytes_out 0 206508 bytes_in 0 206508 station_ip 5.119.142.137 206508 port 107 206508 unique_id port 206508 remote_ip 10.8.1.90 206511 username dorani4942 206511 mac 206511 bytes_out 0 206511 bytes_in 0 206511 station_ip 83.123.166.175 206511 port 107 206511 unique_id port 206511 remote_ip 10.8.1.10 206513 username nilufarrajaei 206513 mac 206513 bytes_out 0 206513 bytes_in 0 206513 station_ip 37.129.16.57 206513 port 55 206513 unique_id port 206516 username milan 206516 kill_reason Maximum check online fails reached 206516 mac 206516 bytes_out 0 206516 bytes_in 0 206516 station_ip 5.120.143.192 206516 port 43 206516 unique_id port 206519 username ghaderpour6649 206519 kill_reason Maximum check online fails reached 206519 mac 206519 bytes_out 0 206519 bytes_in 0 206519 station_ip 37.129.60.0 206519 port 122 206519 unique_id port 206519 remote_ip 10.8.1.246 206523 username kharazmi2920 206523 kill_reason Maximum check online fails reached 206523 mac 206523 bytes_out 0 206523 bytes_in 0 206523 station_ip 83.122.166.21 206523 port 60 206523 unique_id port 206526 username nilufarrajaei 206526 kill_reason Maximum check online fails reached 206526 mac 206526 bytes_out 0 206526 bytes_in 0 206526 station_ip 37.129.16.57 206526 port 55 206526 unique_id port 206528 username amirzadeh1339 206528 unique_id port 206528 terminate_cause User-Request 206528 bytes_out 2269950 206528 bytes_in 62873707 206528 station_ip 37.27.11.18 206528 port 15730129 206528 nas_port_type Virtual 206528 remote_ip 5.5.5.32 206530 username alirezaza 206530 unique_id port 206530 terminate_cause User-Request 206530 bytes_out 575 206530 bytes_in 200 206530 station_ip 5.120.13.158 206530 port 15730139 206530 nas_port_type Virtual 206530 remote_ip 5.5.5.239 206533 username aminvpn 206533 unique_id port 206533 terminate_cause Lost-Carrier 206533 bytes_out 3637454 206533 bytes_in 37512161 206533 station_ip 5.120.30.244 206533 port 15730135 206533 nas_port_type Virtual 206533 remote_ip 5.5.5.235 206536 username aminvpn 206536 unique_id port 206536 terminate_cause Lost-Carrier 206536 bytes_out 332325 206536 bytes_in 3757255 206536 station_ip 37.129.149.109 206536 port 15730148 206536 nas_port_type Virtual 206536 remote_ip 5.5.5.214 206537 username aminvpn 206537 unique_id port 206537 terminate_cause Lost-Carrier 206537 bytes_out 10006668 206537 bytes_in 269655436 206537 station_ip 5.120.30.244 206537 port 15730145 206537 nas_port_type Virtual 206537 remote_ip 5.5.5.235 206539 username sobhan 206539 unique_id port 206539 terminate_cause Lost-Carrier 206539 bytes_out 2272545 206539 bytes_in 35944778 206539 station_ip 5.119.236.175 206539 port 15730153 206539 nas_port_type Virtual 206539 remote_ip 5.5.5.218 206542 username mammad 206542 unique_id port 206542 terminate_cause User-Request 206542 bytes_out 6041038 206542 bytes_in 66443486 206542 station_ip 5.233.68.7 206542 port 15730155 206542 nas_port_type Virtual 206542 remote_ip 5.5.5.245 206543 port 15730169 206543 nas_port_type Virtual 206543 remote_ip 5.5.5.233 206546 username sobhan 206546 unique_id port 206546 terminate_cause Lost-Carrier 206546 bytes_out 2780437 206546 bytes_in 69317014 206546 station_ip 5.119.236.175 206512 username sekonji0496 206512 kill_reason Another user logged on this global unique id 206512 mac 206512 bytes_out 0 206512 bytes_in 0 206512 station_ip 37.129.5.199 206512 port 49 206512 unique_id port 206515 username rashidi4690 206515 kill_reason Maximum check online fails reached 206515 mac 206515 bytes_out 0 206515 bytes_in 0 206515 station_ip 5.120.184.75 206515 port 120 206515 unique_id port 206515 remote_ip 10.8.1.158 206518 username yaghobi 206518 kill_reason Maximum check online fails reached 206518 mac 206518 bytes_out 114689 206518 bytes_in 177830 206518 station_ip 83.123.208.202 206518 port 68 206518 unique_id port 206518 remote_ip 10.8.0.174 206522 username sekonji0496 206522 kill_reason Maximum check online fails reached 206522 mac 206522 bytes_out 0 206522 bytes_in 0 206522 station_ip 37.129.5.199 206522 port 49 206522 unique_id port 206525 username daryaei1233 206525 kill_reason Maximum check online fails reached 206525 mac 206525 bytes_out 0 206525 bytes_in 0 206525 station_ip 83.123.36.213 206525 port 69 206525 unique_id port 206527 username hamid1430 206527 kill_reason Maximum check online fails reached 206527 mac 206527 bytes_out 0 206527 bytes_in 0 206527 station_ip 83.123.241.49 206527 port 107 206527 unique_id port 206540 username alirezazadeh 206540 unique_id port 206540 terminate_cause Lost-Carrier 206540 bytes_out 4018386 206540 bytes_in 4206767 206540 station_ip 5.119.225.19 206540 port 15730154 206540 nas_port_type Virtual 206540 remote_ip 5.5.5.220 206544 username aminvpn 206544 unique_id port 206544 terminate_cause Lost-Carrier 206544 bytes_out 79021 206544 bytes_in 81521 206544 station_ip 37.129.171.109 206544 port 15730170 206544 nas_port_type Virtual 206544 remote_ip 5.5.5.255 206545 username alirezaza 206545 unique_id port 206545 terminate_cause Lost-Carrier 206545 bytes_out 1802010 206545 bytes_in 56390343 206545 station_ip 5.120.178.150 206545 port 15730171 206545 nas_port_type Virtual 206545 remote_ip 5.5.5.255 206546 port 15730172 206546 nas_port_type Virtual 206546 remote_ip 5.5.5.218 206547 username aminvpn 206547 unique_id port 206547 terminate_cause User-Request 206547 bytes_out 599884 206547 bytes_in 10287176 206547 station_ip 31.57.123.174 206547 port 15730173 206547 nas_port_type Virtual 206547 remote_ip 5.5.5.255 206548 username mosavi0713 206548 unique_id port 206548 terminate_cause User-Request 206548 bytes_out 43745 206548 bytes_in 89845 206548 station_ip 83.123.120.185 206548 port 15730181 206548 nas_port_type Virtual 206548 remote_ip 5.5.5.206 206549 username mosavi0713 206549 unique_id port 206549 terminate_cause User-Request 206549 bytes_out 17126 206549 bytes_in 36556 206549 station_ip 83.123.120.185 206549 port 15730182 206549 nas_port_type Virtual 206549 remote_ip 5.5.5.206 206550 username mosavi0713 206550 unique_id port 206550 terminate_cause User-Request 206550 bytes_out 33224 206550 bytes_in 318432 206550 station_ip 83.123.120.185 206550 port 15730183 206550 nas_port_type Virtual 206550 remote_ip 5.5.5.206 206551 username hamid.e 206551 unique_id port 206551 terminate_cause User-Request 206551 bytes_out 3198252 206551 bytes_in 24563438 206551 station_ip 37.27.26.113 206551 port 15730180 206551 nas_port_type Virtual 206551 remote_ip 5.5.5.202 206552 username saeeddamghani 206552 unique_id port 206552 terminate_cause User-Request 206552 bytes_out 171058 206552 bytes_in 5236885 206552 station_ip 83.123.23.190 206552 port 15730187 206552 nas_port_type Virtual 206552 remote_ip 5.5.5.210 206553 username kamali3 206553 unique_id port 206553 terminate_cause User-Request 206553 bytes_out 264595 206553 bytes_in 1293358 206553 station_ip 83.122.29.99 206553 port 15730189 206553 nas_port_type Virtual 206553 remote_ip 5.5.5.211 206554 username kamali3 206554 unique_id port 206554 terminate_cause User-Request 206554 bytes_out 30581 206554 bytes_in 55831 206554 station_ip 83.122.29.99 206554 port 15730190 206554 nas_port_type Virtual 206554 remote_ip 5.5.5.211 206559 username saeeddamghani 206559 unique_id port 206559 terminate_cause User-Request 206559 bytes_out 121108 206559 bytes_in 3951323 206559 station_ip 113.203.56.208 206559 port 15730201 206559 nas_port_type Virtual 206559 remote_ip 5.5.5.213 206562 username alirezazadeh 206562 unique_id port 206562 terminate_cause User-Request 206562 bytes_out 0 206562 bytes_in 0 206562 station_ip 31.56.115.149 206562 port 15730205 206562 nas_port_type Virtual 206562 remote_ip 5.5.5.255 206563 username alirezaza 206563 unique_id port 206563 terminate_cause Lost-Carrier 206563 bytes_out 120718 206563 bytes_in 754712 206563 station_ip 5.120.166.150 206563 port 15730209 206563 nas_port_type Virtual 206563 remote_ip 5.5.5.255 206564 username khalili2 206564 unique_id port 206564 terminate_cause Lost-Carrier 206564 bytes_out 600373 206564 bytes_in 18954399 206564 station_ip 5.119.250.57 206564 port 15730208 206564 nas_port_type Virtual 206564 remote_ip 5.5.5.194 206565 username khalili2 206565 unique_id port 206565 terminate_cause Lost-Carrier 206565 bytes_out 1719285 206565 bytes_in 66468075 206565 station_ip 5.119.250.57 206565 port 15730212 206565 nas_port_type Virtual 206565 remote_ip 5.5.5.194 206567 username alirezaza 206567 unique_id port 206567 terminate_cause Lost-Carrier 206567 bytes_out 157812 206567 bytes_in 1543957 206567 station_ip 5.119.47.154 206567 port 15730218 206567 nas_port_type Virtual 206567 remote_ip 5.5.5.197 206569 username kamali3 206569 unique_id port 206569 terminate_cause User-Request 206569 bytes_out 204927 206569 bytes_in 6454681 206569 station_ip 83.122.29.99 206569 port 15730220 206569 nas_port_type Virtual 206569 remote_ip 5.5.5.211 206573 username mammad 206573 unique_id port 206573 terminate_cause User-Request 206573 bytes_out 8038636 206573 bytes_in 146852196 206573 station_ip 5.233.75.134 206573 port 15730221 206573 nas_port_type Virtual 206573 remote_ip 5.5.5.199 206937 username kalantary6037 206937 mac 206937 bytes_out 0 206937 bytes_in 0 206937 station_ip 37.129.166.245 206937 port 1 206937 unique_id port 206940 username barzegar 206940 mac 206940 bytes_out 0 206940 bytes_in 0 206940 station_ip 5.119.199.140 206940 port 3 206940 unique_id port 206940 remote_ip 10.8.1.30 206943 username barzegar 206943 mac 206943 bytes_out 0 206943 bytes_in 0 206943 station_ip 5.119.199.140 206943 port 1 206943 unique_id port 206943 remote_ip 10.8.0.34 206944 username barzegar 206944 mac 206944 bytes_out 0 206944 bytes_in 0 206944 station_ip 5.119.199.140 206944 port 3 206944 unique_id port 206944 remote_ip 10.8.1.30 206947 username esmaeilkazemi 206947 mac 206947 bytes_out 0 206947 bytes_in 0 206947 station_ip 46.249.124.78 206947 port 3 206947 unique_id port 206947 remote_ip 10.8.1.102 206950 username esmaeilkazemi 206950 mac 206950 bytes_out 3647 206950 bytes_in 24783 206950 station_ip 46.249.124.78 206950 port 1 206950 unique_id port 206950 remote_ip 10.8.0.66 206958 username barzegar 206958 mac 206958 bytes_out 0 206958 bytes_in 0 206958 station_ip 5.119.199.140 206958 port 1 206958 unique_id port 206958 remote_ip 10.8.1.30 206960 username kalantary6037 206960 mac 206960 bytes_out 0 206960 bytes_in 0 206960 station_ip 37.129.201.41 206960 port 3 206960 unique_id port 206963 username kalantary6037 206963 kill_reason Another user logged on this global unique id 206963 mac 206963 bytes_out 0 206963 bytes_in 0 206555 username saeeddamghani 206555 unique_id port 206555 terminate_cause User-Request 206555 bytes_out 129326 206555 bytes_in 4651920 206555 station_ip 83.123.23.190 206555 port 15730191 206555 nas_port_type Virtual 206555 remote_ip 5.5.5.210 206558 username saeeddamghani 206558 unique_id port 206558 terminate_cause User-Request 206558 bytes_out 1256500 206558 bytes_in 58240904 206558 station_ip 113.203.56.208 206558 port 15730199 206558 nas_port_type Virtual 206558 remote_ip 5.5.5.213 206566 username hamid.e 206566 kill_reason Maximum check online fails reached 206566 unique_id port 206566 bytes_out 1871063 206566 bytes_in 57659082 206566 station_ip 31.56.157.239 206566 port 15730213 206566 nas_port_type Virtual 206566 remote_ip 5.5.5.234 206570 username rahim 206570 unique_id port 206570 terminate_cause Lost-Carrier 206570 bytes_out 85152 206570 bytes_in 137368 206570 station_ip 46.225.209.107 206570 port 15730225 206570 nas_port_type Virtual 206570 remote_ip 5.5.5.203 206571 username rahim 206571 unique_id port 206571 terminate_cause User-Request 206571 bytes_out 1960681 206571 bytes_in 14611727 206571 station_ip 86.57.67.203 206571 port 15730226 206571 nas_port_type Virtual 206571 remote_ip 5.5.5.204 206938 username barzegar 206938 mac 206938 bytes_out 0 206938 bytes_in 0 206938 station_ip 5.119.199.140 206938 port 1 206938 unique_id port 206938 remote_ip 10.8.1.30 206939 username kalantary6037 206939 mac 206939 bytes_out 0 206939 bytes_in 0 206939 station_ip 37.129.201.41 206939 port 1 206939 unique_id port 206939 remote_ip 10.8.1.98 206941 username kalantary6037 206941 kill_reason Another user logged on this global unique id 206941 mac 206941 bytes_out 0 206941 bytes_in 0 206941 station_ip 37.129.201.41 206941 port 1 206941 unique_id port 206941 remote_ip 10.8.1.98 206942 username kalantary6037 206942 kill_reason Another user logged on this global unique id 206942 mac 206942 bytes_out 0 206942 bytes_in 0 206942 station_ip 37.129.201.41 206942 port 1 206942 unique_id port 206945 username barzegar 206945 mac 206945 bytes_out 0 206945 bytes_in 0 206945 station_ip 5.119.199.140 206945 port 3 206945 unique_id port 206945 remote_ip 10.8.1.30 206948 username barzegar 206948 mac 206948 bytes_out 0 206948 bytes_in 0 206948 station_ip 5.119.199.140 206948 port 3 206948 unique_id port 206948 remote_ip 10.8.1.30 206952 username yaghobi 206952 mac 206952 bytes_out 72635 206952 bytes_in 136830 206952 station_ip 37.129.90.50 206952 port 7 206952 unique_id port 206952 remote_ip 10.8.1.106 206955 username barzegar 206955 mac 206955 bytes_out 0 206955 bytes_in 0 206955 station_ip 5.119.199.140 206955 port 1 206955 unique_id port 206955 remote_ip 10.8.1.30 206956 username barzegar 206956 mac 206956 bytes_out 0 206956 bytes_in 0 206956 station_ip 5.119.199.140 206956 port 1 206956 unique_id port 206956 remote_ip 10.8.1.30 206959 username kalantary6037 206959 kill_reason Another user logged on this global unique id 206959 mac 206959 bytes_out 0 206959 bytes_in 0 206959 station_ip 37.129.201.41 206959 port 3 206959 unique_id port 206959 remote_ip 10.8.1.98 206962 username barzegar 206962 mac 206962 bytes_out 0 206962 bytes_in 0 206962 station_ip 5.119.199.140 206962 port 3 206962 unique_id port 206962 remote_ip 10.8.1.30 206964 username barzegar 206964 mac 206964 bytes_out 0 206964 bytes_in 0 206964 station_ip 5.119.199.140 206964 port 9 206964 unique_id port 206964 remote_ip 10.8.0.34 206969 username rezaei 206969 mac 206969 bytes_out 988711 206969 bytes_in 6016274 206969 station_ip 5.119.226.2 206969 port 8 206969 unique_id port 206556 username saeeddamghani 206556 unique_id port 206556 terminate_cause User-Request 206556 bytes_out 1306068 206556 bytes_in 62932506 206556 station_ip 113.203.56.208 206556 port 15730195 206556 nas_port_type Virtual 206556 remote_ip 5.5.5.213 206557 username khalili2 206557 unique_id port 206557 terminate_cause User-Request 206557 bytes_out 6228 206557 bytes_in 8662 206557 station_ip 5.119.250.57 206557 port 15730197 206557 nas_port_type Virtual 206557 remote_ip 5.5.5.194 206560 username khalili2 206560 unique_id port 206560 terminate_cause User-Request 206560 bytes_out 674294 206560 bytes_in 31914002 206560 station_ip 5.119.250.57 206560 port 15730198 206560 nas_port_type Virtual 206560 remote_ip 5.5.5.194 206561 username aminvpn 206561 unique_id port 206561 terminate_cause Lost-Carrier 206561 bytes_out 10939263 206561 bytes_in 253198157 206561 station_ip 31.57.123.174 206561 port 15730184 206561 nas_port_type Virtual 206561 remote_ip 5.5.5.255 206568 username hamid.e 206568 unique_id port 206568 terminate_cause User-Request 206568 bytes_out 19064897 206568 bytes_in 660539600 206568 station_ip 31.56.157.239 206568 port 15730217 206568 nas_port_type Virtual 206568 remote_ip 5.5.5.234 206572 username amirzadeh1339 206572 unique_id port 206572 terminate_cause User-Request 206572 bytes_out 22480512 206572 bytes_in 553028143 206572 station_ip 37.27.13.31 206572 port 15730216 206572 nas_port_type Virtual 206572 remote_ip 5.5.5.196 206574 username rahim 206574 unique_id port 206574 terminate_cause Lost-Carrier 206574 bytes_out 5895784 206574 bytes_in 104047473 206574 station_ip 86.57.67.203 206574 port 15730228 206574 nas_port_type Virtual 206574 remote_ip 5.5.5.204 206575 username meysam 206575 kill_reason Another user logged on this global unique id 206575 mac 206575 bytes_out 0 206575 bytes_in 0 206575 station_ip 188.159.252.193 206575 port 1 206575 unique_id port 206575 remote_ip 10.8.1.6 206576 username daryaei1233 206576 mac 206576 bytes_out 0 206576 bytes_in 0 206576 station_ip 83.123.192.180 206576 port 1 206576 unique_id port 206576 remote_ip 10.8.0.6 206577 username dortaj3792 206577 kill_reason Another user logged on this global unique id 206577 mac 206577 bytes_out 0 206577 bytes_in 0 206577 station_ip 5.120.133.77 206577 port 2 206577 unique_id port 206577 remote_ip 10.8.0.10 206578 username daryaei1233 206578 mac 206578 bytes_out 589711 206578 bytes_in 14042620 206578 station_ip 83.123.192.180 206578 port 1 206578 unique_id port 206578 remote_ip 10.8.0.6 206579 username hatami 206579 kill_reason Another user logged on this global unique id 206579 mac 206579 bytes_out 0 206579 bytes_in 0 206579 station_ip 151.235.105.117 206579 port 3 206579 unique_id port 206579 remote_ip 10.8.0.14 206580 username daryaei1233 206580 mac 206580 bytes_out 0 206580 bytes_in 0 206580 station_ip 83.123.192.180 206580 port 3 206580 unique_id port 206580 remote_ip 10.8.1.14 206581 username daryaei1233 206581 mac 206581 bytes_out 596148 206581 bytes_in 14048891 206581 station_ip 83.123.192.180 206581 port 1 206581 unique_id port 206581 remote_ip 10.8.0.6 206582 username mehrpoyan101 206582 mac 206582 bytes_out 0 206582 bytes_in 0 206582 station_ip 46.225.209.107 206582 port 3 206582 unique_id port 206582 remote_ip 10.8.1.18 206583 username mehrpoyan101 206583 unique_id port 206583 terminate_cause User-Request 206583 bytes_out 0 206583 bytes_in 0 206583 station_ip 46.225.209.107 206583 port 15730267 206583 nas_port_type Virtual 206583 remote_ip 5.5.5.181 206584 username pourshad 206584 kill_reason Another user logged on this global unique id 206584 mac 206584 bytes_out 0 206584 bytes_in 0 206584 station_ip 5.119.53.114 206584 port 2 206584 unique_id port 206584 remote_ip 10.8.1.10 206588 username meysam 206588 kill_reason Another user logged on this global unique id 206588 mac 206588 bytes_out 0 206588 bytes_in 0 206588 station_ip 188.159.252.193 206588 port 1 206588 unique_id port 206588 remote_ip 10.8.1.6 206589 username kalantary6037 206589 kill_reason Another user logged on this global unique id 206589 mac 206589 bytes_out 0 206589 bytes_in 0 206589 station_ip 37.129.187.97 206589 port 4 206589 unique_id port 206589 remote_ip 10.8.0.18 206591 username mehrpoyan101 206591 mac 206591 bytes_out 0 206591 bytes_in 0 206591 station_ip 46.225.209.107 206591 port 3 206591 unique_id port 206591 remote_ip 10.8.1.18 206595 username pourshad 206595 kill_reason Another user logged on this global unique id 206595 mac 206595 bytes_out 0 206595 bytes_in 0 206595 station_ip 5.119.53.114 206595 port 2 206595 unique_id port 206598 username meysam 206598 kill_reason Another user logged on this global unique id 206598 mac 206598 bytes_out 0 206598 bytes_in 0 206598 station_ip 188.159.252.193 206598 port 1 206598 unique_id port 206601 username milan 206601 kill_reason Another user logged on this global unique id 206601 mac 206601 bytes_out 0 206601 bytes_in 0 206601 station_ip 5.120.109.57 206601 port 4 206601 unique_id port 206605 username pourshad 206605 kill_reason Another user logged on this global unique id 206605 mac 206605 bytes_out 0 206605 bytes_in 0 206605 station_ip 5.119.53.114 206605 port 2 206605 unique_id port 206616 username daryaei1233 206616 mac 206616 bytes_out 0 206616 bytes_in 0 206616 station_ip 83.123.192.180 206616 port 5 206616 unique_id port 206616 remote_ip 10.8.0.6 206617 username meysam 206617 mac 206617 bytes_out 0 206617 bytes_in 0 206617 station_ip 188.158.51.171 206617 port 1 206617 unique_id port 206617 remote_ip 10.8.1.6 206620 username kalantary6037 206620 mac 206620 bytes_out 516322 206620 bytes_in 1638658 206620 station_ip 37.129.165.97 206620 port 5 206620 unique_id port 206620 remote_ip 10.8.0.18 206623 username pourshad 206623 mac 206623 bytes_out 0 206623 bytes_in 0 206623 station_ip 5.119.53.114 206623 port 2 206623 unique_id port 206625 username daryaei1233 206625 mac 206625 bytes_out 3973495 206625 bytes_in 10402996 206625 station_ip 83.123.192.180 206625 port 2 206625 unique_id port 206625 remote_ip 10.8.1.14 206628 username milan 206628 mac 206628 bytes_out 0 206628 bytes_in 0 206628 station_ip 5.120.109.57 206628 port 4 206628 unique_id port 206630 username pourshad 206630 mac 206630 bytes_out 570026 206630 bytes_in 3130030 206630 station_ip 5.119.225.24 206630 port 1 206630 unique_id port 206630 remote_ip 10.8.1.10 206634 username mammad 206634 unique_id port 206634 terminate_cause User-Request 206634 bytes_out 2943161 206634 bytes_in 22775014 206634 station_ip 5.233.75.134 206634 port 15730271 206634 nas_port_type Virtual 206634 remote_ip 5.5.5.199 206637 username kalantary6037 206637 mac 206637 bytes_out 597259 206637 bytes_in 8517847 206637 station_ip 37.129.165.97 206637 port 7 206637 unique_id port 206637 remote_ip 10.8.0.18 206638 username morteza4424 206638 mac 206638 bytes_out 0 206638 bytes_in 0 206638 station_ip 83.123.60.111 206638 port 5 206638 unique_id port 206638 remote_ip 10.8.1.42 206644 username barzegar 206644 mac 206644 bytes_out 0 206644 bytes_in 0 206644 station_ip 5.120.51.218 206644 port 6 206644 unique_id port 206644 remote_ip 10.8.0.34 206648 username morteza4424 206648 mac 206648 bytes_out 122314 206648 bytes_in 294584 206585 username mehrpoyan101 206585 unique_id port 206585 terminate_cause User-Request 206585 bytes_out 0 206585 bytes_in 0 206585 station_ip 46.225.209.107 206585 port 15730268 206585 nas_port_type Virtual 206585 remote_ip 5.5.5.181 206586 username khalili2 206586 unique_id port 206586 terminate_cause Lost-Carrier 206586 bytes_out 1026777 206586 bytes_in 44250425 206586 station_ip 5.119.250.57 206586 port 15730264 206586 nas_port_type Virtual 206586 remote_ip 5.5.5.194 206592 username mosavi0713 206592 unique_id port 206592 terminate_cause User-Request 206592 bytes_out 372939 206592 bytes_in 5969720 206592 station_ip 83.123.92.201 206592 port 15730270 206592 nas_port_type Virtual 206592 remote_ip 5.5.5.184 206593 username daryaei1233 206593 mac 206593 bytes_out 0 206593 bytes_in 0 206593 station_ip 83.123.192.180 206593 port 5 206593 unique_id port 206593 remote_ip 10.8.1.14 206596 username daryaei1233 206596 mac 206596 bytes_out 1644 206596 bytes_in 4617 206596 station_ip 83.123.192.180 206596 port 1 206596 unique_id port 206596 remote_ip 10.8.0.6 206603 username daryaei1233 206603 mac 206603 bytes_out 0 206603 bytes_in 0 206603 station_ip 83.123.192.180 206603 port 4 206603 unique_id port 206603 remote_ip 10.8.0.6 206606 username daryaei1233 206606 mac 206606 bytes_out 0 206606 bytes_in 0 206606 station_ip 83.123.192.180 206606 port 4 206606 unique_id port 206606 remote_ip 10.8.0.6 206608 username barzegar 206608 mac 206608 bytes_out 0 206608 bytes_in 0 206608 station_ip 5.120.51.218 206608 port 5 206608 unique_id port 206608 remote_ip 10.8.1.30 206609 username khademi 206609 kill_reason Another user logged on this global unique id 206609 mac 206609 bytes_out 0 206609 bytes_in 0 206609 station_ip 37.129.98.124 206609 port 4 206609 unique_id port 206609 remote_ip 10.8.0.26 206610 username milan 206610 kill_reason Another user logged on this global unique id 206610 mac 206610 bytes_out 0 206610 bytes_in 0 206610 station_ip 5.120.109.57 206610 port 4 206610 unique_id port 206612 username daryaei1233 206612 mac 206612 bytes_out 0 206612 bytes_in 0 206612 station_ip 83.123.192.180 206612 port 5 206612 unique_id port 206612 remote_ip 10.8.0.6 206613 username meysam 206613 mac 206613 bytes_out 0 206613 bytes_in 0 206613 station_ip 188.159.252.193 206613 port 1 206613 unique_id port 206615 username daryaei1233 206615 mac 206615 bytes_out 0 206615 bytes_in 0 206615 station_ip 83.123.192.180 206615 port 6 206615 unique_id port 206615 remote_ip 10.8.1.14 206618 username daryaei1233 206618 mac 206618 bytes_out 0 206618 bytes_in 0 206618 station_ip 83.123.192.180 206618 port 6 206618 unique_id port 206618 remote_ip 10.8.0.6 206622 username khademi 206622 kill_reason Another user logged on this global unique id 206622 mac 206622 bytes_out 0 206622 bytes_in 0 206622 station_ip 37.129.98.124 206622 port 4 206622 unique_id port 206624 username kalantary6037 206624 mac 206624 bytes_out 0 206624 bytes_in 0 206624 station_ip 37.129.165.97 206624 port 6 206624 unique_id port 206624 remote_ip 10.8.0.18 206627 username barzegar 206627 mac 206627 bytes_out 3996357 206627 bytes_in 10422018 206627 station_ip 5.120.51.218 206627 port 2 206627 unique_id port 206627 remote_ip 10.8.1.30 206631 username daryaei1233 206631 mac 206631 bytes_out 0 206631 bytes_in 0 206631 station_ip 83.123.192.180 206631 port 7 206631 unique_id port 206631 remote_ip 10.8.0.6 206635 username barzegar 206635 mac 206635 bytes_out 0 206635 bytes_in 0 206635 station_ip 5.120.51.218 206587 username mehrpoyan101 206587 unique_id port 206587 terminate_cause User-Request 206587 bytes_out 184 206587 bytes_in 188 206587 station_ip 46.225.209.107 206587 port 15730269 206587 nas_port_type Virtual 206587 remote_ip 5.5.5.181 206590 username meysam 206590 mac 206590 bytes_out 0 206590 bytes_in 0 206590 station_ip 188.159.252.193 206590 port 1 206590 unique_id port 206594 username milan 206594 mac 206594 bytes_out 228222 206594 bytes_in 3428452 206594 station_ip 5.120.109.57 206594 port 4 206594 unique_id port 206594 remote_ip 10.8.1.22 206597 username daryaei1233 206597 mac 206597 bytes_out 0 206597 bytes_in 0 206597 station_ip 83.123.192.180 206597 port 3 206597 unique_id port 206599 username pourshad 206599 kill_reason Another user logged on this global unique id 206599 mac 206599 bytes_out 0 206599 bytes_in 0 206599 station_ip 5.119.53.114 206599 port 2 206599 unique_id port 206600 username daryaei1233 206600 mac 206600 bytes_out 0 206600 bytes_in 0 206600 station_ip 83.123.192.180 206600 port 5 206600 unique_id port 206600 remote_ip 10.8.1.14 206602 username daryaei1233 206602 mac 206602 bytes_out 0 206602 bytes_in 0 206602 station_ip 83.123.192.180 206602 port 4 206602 unique_id port 206602 remote_ip 10.8.0.6 206604 username aminvpn 206604 unique_id port 206604 terminate_cause Lost-Carrier 206604 bytes_out 418745 206604 bytes_in 2609896 206604 station_ip 37.129.251.176 206604 port 15730266 206604 nas_port_type Virtual 206604 remote_ip 5.5.5.180 206607 username mosavi0713 206607 kill_reason Another user logged on this global unique id 206607 mac 206607 bytes_out 0 206607 bytes_in 0 206607 station_ip 83.123.92.201 206607 port 1 206607 unique_id port 206607 remote_ip 10.8.0.22 206611 username barzegar 206611 kill_reason Another user logged on this global unique id 206611 mac 206611 bytes_out 0 206611 bytes_in 0 206611 station_ip 5.120.51.218 206611 port 5 206611 unique_id port 206611 remote_ip 10.8.1.30 206614 username khademi 206614 kill_reason Another user logged on this global unique id 206614 mac 206614 bytes_out 0 206614 bytes_in 0 206614 station_ip 37.129.98.124 206614 port 4 206614 unique_id port 206619 username daryaei1233 206619 mac 206619 bytes_out 0 206619 bytes_in 0 206619 station_ip 83.123.192.180 206619 port 1 206619 unique_id port 206619 remote_ip 10.8.1.14 206621 username daryaei1233 206621 mac 206621 bytes_out 0 206621 bytes_in 0 206621 station_ip 83.123.192.180 206621 port 6 206621 unique_id port 206621 remote_ip 10.8.0.6 206626 username daryaei1233 206626 mac 206626 bytes_out 0 206626 bytes_in 0 206626 station_ip 83.123.192.180 206626 port 2 206626 unique_id port 206626 remote_ip 10.8.1.14 206629 username morteza4424 206629 kill_reason Another user logged on this global unique id 206629 mac 206629 bytes_out 0 206629 bytes_in 0 206629 station_ip 83.123.60.111 206629 port 5 206629 unique_id port 206629 remote_ip 10.8.0.30 206632 username kalantary6037 206632 mac 206632 bytes_out 713005 206632 bytes_in 14179584 206632 station_ip 37.129.165.97 206632 port 6 206632 unique_id port 206632 remote_ip 10.8.0.18 206633 username daryaei1233 206633 mac 206633 bytes_out 2111 206633 bytes_in 4857 206633 station_ip 83.123.192.180 206633 port 7 206633 unique_id port 206633 remote_ip 10.8.0.6 206636 username morteza4424 206636 mac 206636 bytes_out 0 206636 bytes_in 0 206636 station_ip 83.123.60.111 206636 port 5 206636 unique_id port 206640 username morteza4424 206640 mac 206640 bytes_out 601845 206640 bytes_in 3160574 206640 station_ip 83.123.60.111 206635 port 6 206635 unique_id port 206635 remote_ip 10.8.0.34 206639 username pourshad 206639 mac 206639 bytes_out 598525 206639 bytes_in 3157458 206639 station_ip 5.119.225.24 206639 port 1 206639 unique_id port 206639 remote_ip 10.8.1.10 206642 username karamozian 206642 kill_reason Relative expiration date has reached 206642 mac 206642 bytes_out 0 206642 bytes_in 0 206642 station_ip 83.122.237.36 206642 port 5 206642 unique_id port 206643 username pourshad 206643 mac 206643 bytes_out 624678 206643 bytes_in 3229825 206643 station_ip 5.119.225.24 206643 port 1 206643 unique_id port 206643 remote_ip 10.8.1.10 206646 username morteza4424 206646 mac 206646 bytes_out 0 206646 bytes_in 0 206646 station_ip 83.123.60.111 206646 port 5 206646 unique_id port 206646 remote_ip 10.8.1.42 206647 username kalantary6037 206647 kill_reason Another user logged on this global unique id 206647 mac 206647 bytes_out 0 206647 bytes_in 0 206647 station_ip 37.129.165.97 206647 port 5 206647 unique_id port 206647 remote_ip 10.8.0.18 206649 username barzegar 206649 mac 206649 bytes_out 0 206649 bytes_in 0 206649 station_ip 5.120.51.218 206649 port 6 206649 unique_id port 206649 remote_ip 10.8.1.30 206652 username yarmohamadi7916 206652 kill_reason Another user logged on this global unique id 206652 mac 206652 bytes_out 0 206652 bytes_in 0 206652 station_ip 5.120.173.143 206652 port 2 206652 unique_id port 206652 remote_ip 10.8.1.34 206654 username daryaei1233 206654 kill_reason Another user logged on this global unique id 206654 mac 206654 bytes_out 0 206654 bytes_in 0 206654 station_ip 83.123.216.136 206654 port 6 206654 unique_id port 206654 remote_ip 10.8.0.6 206656 username barzegar 206656 mac 206656 bytes_out 0 206656 bytes_in 0 206656 station_ip 5.120.51.218 206656 port 5 206656 unique_id port 206656 remote_ip 10.8.1.30 206661 username daryaei1233 206661 kill_reason Another user logged on this global unique id 206661 mac 206661 bytes_out 0 206661 bytes_in 0 206661 station_ip 83.123.216.136 206661 port 6 206661 unique_id port 206661 remote_ip 10.8.1.14 206662 username kalantary6037 206662 mac 206662 bytes_out 129826 206662 bytes_in 533347 206662 station_ip 37.129.165.97 206662 port 5 206662 unique_id port 206662 remote_ip 10.8.0.18 206667 username morteza4424 206667 mac 206667 bytes_out 0 206667 bytes_in 0 206667 station_ip 83.123.60.111 206667 port 7 206667 unique_id port 206667 remote_ip 10.8.0.30 206668 username daryaei1233 206668 mac 206668 bytes_out 2005 206668 bytes_in 4327 206668 station_ip 83.123.216.136 206668 port 5 206668 unique_id port 206668 remote_ip 10.8.0.6 206673 username barzegar 206673 mac 206673 bytes_out 0 206673 bytes_in 0 206673 station_ip 5.120.51.218 206673 port 7 206673 unique_id port 206673 remote_ip 10.8.1.30 206675 username morteza4424 206675 mac 206675 bytes_out 0 206675 bytes_in 0 206675 station_ip 83.123.60.111 206675 port 5 206675 unique_id port 206675 remote_ip 10.8.0.30 206680 username mosi 206680 mac 206680 bytes_out 0 206680 bytes_in 0 206680 station_ip 5.73.162.126 206680 port 7 206680 unique_id port 206680 remote_ip 10.8.1.54 206682 username morteza4424 206682 mac 206682 bytes_out 0 206682 bytes_in 0 206682 station_ip 83.123.60.111 206682 port 6 206682 unique_id port 206682 remote_ip 10.8.1.42 206692 username mosi 206692 mac 206692 bytes_out 0 206692 bytes_in 0 206692 station_ip 5.73.162.126 206692 port 6 206692 unique_id port 206692 remote_ip 10.8.1.54 206695 username mosi 206716 bytes_in 0 206640 port 1 206640 unique_id port 206640 remote_ip 10.8.1.42 206641 username morteza4424 206641 kill_reason Another user logged on this global unique id 206641 mac 206641 bytes_out 0 206641 bytes_in 0 206641 station_ip 83.123.60.111 206641 port 5 206641 unique_id port 206641 remote_ip 10.8.1.42 206645 username kalantary6037 206645 kill_reason Another user logged on this global unique id 206645 mac 206645 bytes_out 0 206645 bytes_in 0 206645 station_ip 37.129.165.97 206645 port 5 206645 unique_id port 206645 remote_ip 10.8.0.18 206650 username morteza4424 206650 mac 206650 bytes_out 146278 206650 bytes_in 397030 206650 station_ip 83.123.60.111 206650 port 5 206650 unique_id port 206650 remote_ip 10.8.1.42 206651 username morteza4424 206651 mac 206651 bytes_out 0 206651 bytes_in 0 206651 station_ip 83.123.60.111 206651 port 6 206651 unique_id port 206651 remote_ip 10.8.0.30 206653 username morteza4424 206653 mac 206653 bytes_out 0 206653 bytes_in 0 206653 station_ip 83.123.60.111 206653 port 5 206653 unique_id port 206653 remote_ip 10.8.1.42 206657 username morteza4424 206657 mac 206657 bytes_out 0 206657 bytes_in 0 206657 station_ip 83.123.60.111 206657 port 5 206657 unique_id port 206657 remote_ip 10.8.1.42 206659 username morteza4424 206659 mac 206659 bytes_out 0 206659 bytes_in 0 206659 station_ip 83.123.60.111 206659 port 7 206659 unique_id port 206659 remote_ip 10.8.1.42 206664 username morteza4424 206664 mac 206664 bytes_out 0 206664 bytes_in 0 206664 station_ip 83.123.60.111 206664 port 6 206664 unique_id port 206664 remote_ip 10.8.1.42 206666 username daryaei1233 206666 mac 206666 bytes_out 0 206666 bytes_in 0 206666 station_ip 83.123.216.136 206666 port 5 206666 unique_id port 206666 remote_ip 10.8.0.6 206669 username barzegar 206669 mac 206669 bytes_out 0 206669 bytes_in 0 206669 station_ip 5.120.51.218 206669 port 6 206669 unique_id port 206669 remote_ip 10.8.1.30 206670 username mostafa_es78 206670 mac 206670 bytes_out 0 206670 bytes_in 0 206670 station_ip 37.129.66.96 206670 port 7 206670 unique_id port 206670 remote_ip 10.8.0.42 206671 username amirzadeh1339 206671 unique_id port 206671 terminate_cause User-Request 206671 bytes_out 1150518 206671 bytes_in 13011150 206671 station_ip 37.27.13.31 206671 port 15730273 206671 nas_port_type Virtual 206671 remote_ip 5.5.5.196 206672 username morteza4424 206672 mac 206672 bytes_out 0 206672 bytes_in 0 206672 station_ip 83.123.60.111 206672 port 5 206672 unique_id port 206672 remote_ip 10.8.0.30 206674 username daryaei1233 206674 mac 206674 bytes_out 854584 206674 bytes_in 1723768 206674 station_ip 83.123.216.136 206674 port 6 206674 unique_id port 206674 remote_ip 10.8.1.14 206676 username daryaei1233 206676 kill_reason Another user logged on this global unique id 206676 mac 206676 bytes_out 0 206676 bytes_in 0 206676 station_ip 83.123.216.136 206676 port 7 206676 unique_id port 206676 remote_ip 10.8.0.6 206684 username barzegar 206684 mac 206684 bytes_out 0 206684 bytes_in 0 206684 station_ip 5.120.51.218 206684 port 8 206684 unique_id port 206684 remote_ip 10.8.1.30 206685 username morteza4424 206685 mac 206685 bytes_out 0 206685 bytes_in 0 206685 station_ip 83.123.60.111 206685 port 6 206685 unique_id port 206685 remote_ip 10.8.1.42 206687 username yarmohamadi7916 206687 kill_reason Another user logged on this global unique id 206687 mac 206687 bytes_out 0 206687 bytes_in 0 206687 station_ip 5.120.173.143 206687 port 2 206687 unique_id port 206688 username rezaei 206648 station_ip 83.123.60.111 206648 port 5 206648 unique_id port 206648 remote_ip 10.8.1.42 206655 username morteza4424 206655 mac 206655 bytes_out 0 206655 bytes_in 0 206655 station_ip 83.123.60.111 206655 port 6 206655 unique_id port 206655 remote_ip 10.8.1.42 206658 username rashidi4690 206658 kill_reason Another user logged on this global unique id 206658 mac 206658 bytes_out 0 206658 bytes_in 0 206658 station_ip 5.120.145.40 206658 port 5 206658 unique_id port 206658 remote_ip 10.8.1.50 206660 username mosi 206660 mac 206660 bytes_out 0 206660 bytes_in 0 206660 station_ip 5.233.49.59 206660 port 7 206660 unique_id port 206660 remote_ip 10.8.1.54 206663 username mosi 206663 mac 206663 bytes_out 221756 206663 bytes_in 464773 206663 station_ip 5.233.49.59 206663 port 6 206663 unique_id port 206663 remote_ip 10.8.0.38 206665 username daryaei1233 206665 mac 206665 bytes_out 0 206665 bytes_in 0 206665 station_ip 83.123.216.136 206665 port 5 206665 unique_id port 206665 remote_ip 10.8.0.6 206677 username morteza4424 206677 mac 206677 bytes_out 0 206677 bytes_in 0 206677 station_ip 83.123.60.111 206677 port 6 206677 unique_id port 206677 remote_ip 10.8.1.42 206678 username morteza4424 206678 mac 206678 bytes_out 0 206678 bytes_in 0 206678 station_ip 83.123.60.111 206678 port 6 206678 unique_id port 206678 remote_ip 10.8.1.42 206679 username yarmohamadi7916 206679 mac 206679 bytes_out 0 206679 bytes_in 0 206679 station_ip 5.120.173.143 206679 port 2 206679 unique_id port 206681 username kalantary6037 206681 mac 206681 bytes_out 0 206681 bytes_in 0 206681 station_ip 37.129.165.97 206681 port 5 206681 unique_id port 206681 remote_ip 10.8.0.18 206683 username morteza4424 206683 mac 206683 bytes_out 0 206683 bytes_in 0 206683 station_ip 83.123.60.111 206683 port 6 206683 unique_id port 206683 remote_ip 10.8.1.42 206686 username sabaghnezhad 206686 mac 206686 bytes_out 1729137 206686 bytes_in 16685190 206686 station_ip 37.129.247.87 206686 port 1 206686 unique_id port 206686 remote_ip 10.8.1.46 206689 username daryaei1233 206689 mac 206689 bytes_out 0 206689 bytes_in 0 206689 station_ip 83.123.216.136 206689 port 7 206689 unique_id port 206689 remote_ip 10.8.1.14 206693 username alipour1506 206693 kill_reason Another user logged on this global unique id 206693 mac 206693 bytes_out 0 206693 bytes_in 0 206693 station_ip 78.39.26.163 206693 port 6 206693 unique_id port 206693 remote_ip 10.8.0.46 206694 username daryaei1233 206694 mac 206694 bytes_out 377313 206694 bytes_in 3831150 206694 station_ip 83.123.216.136 206694 port 6 206694 unique_id port 206694 remote_ip 10.8.1.14 206696 username morteza4424 206696 kill_reason Another user logged on this global unique id 206696 mac 206696 bytes_out 0 206696 bytes_in 0 206696 station_ip 83.123.60.111 206696 port 2 206696 unique_id port 206696 remote_ip 10.8.0.30 206701 username morteza4424 206701 mac 206701 bytes_out 0 206701 bytes_in 0 206701 station_ip 83.123.60.111 206701 port 2 206701 unique_id port 206701 remote_ip 10.8.0.30 206709 username daryaei1233 206709 mac 206709 bytes_out 2952 206709 bytes_in 4923 206709 station_ip 83.123.216.136 206709 port 8 206709 unique_id port 206709 remote_ip 10.8.0.6 206711 username alipour1506 206711 kill_reason Another user logged on this global unique id 206711 mac 206711 bytes_out 0 206711 bytes_in 0 206711 station_ip 78.39.26.163 206711 port 6 206711 unique_id port 206716 username daryaei1233 206716 mac 206716 bytes_out 0 206688 mac 206688 bytes_out 0 206688 bytes_in 0 206688 station_ip 5.119.226.2 206688 port 8 206688 unique_id port 206688 remote_ip 10.8.1.58 206690 username daryaei1233 206690 mac 206690 bytes_out 0 206690 bytes_in 0 206690 station_ip 83.123.216.136 206690 port 7 206690 unique_id port 206690 remote_ip 10.8.1.14 206691 username daryaei1233 206691 mac 206691 bytes_out 0 206691 bytes_in 0 206691 station_ip 83.123.216.136 206691 port 5 206691 unique_id port 206691 remote_ip 10.8.0.6 206700 username daryaei1233 206700 mac 206700 bytes_out 0 206700 bytes_in 0 206700 station_ip 83.123.216.136 206700 port 5 206700 unique_id port 206703 username barzegar 206703 kill_reason Another user logged on this global unique id 206703 mac 206703 bytes_out 0 206703 bytes_in 0 206703 station_ip 151.235.94.44 206703 port 2 206703 unique_id port 206703 remote_ip 10.8.1.30 206704 username daryaei1233 206704 mac 206704 bytes_out 2234 206704 bytes_in 5230 206704 station_ip 83.123.216.136 206704 port 1 206704 unique_id port 206704 remote_ip 10.8.0.6 206705 username kalantary6037 206705 mac 206705 bytes_out 790663 206705 bytes_in 2465800 206705 station_ip 37.129.162.105 206705 port 10 206705 unique_id port 206705 remote_ip 10.8.0.18 206706 username morteza4424 206706 kill_reason Another user logged on this global unique id 206706 mac 206706 bytes_out 0 206706 bytes_in 0 206706 station_ip 83.123.60.111 206706 port 2 206706 unique_id port 206710 username daryaei1233 206710 mac 206710 bytes_out 0 206710 bytes_in 0 206710 station_ip 83.123.216.136 206710 port 8 206710 unique_id port 206710 remote_ip 10.8.0.6 206712 username daryaei1233 206712 mac 206712 bytes_out 0 206712 bytes_in 0 206712 station_ip 83.123.216.136 206712 port 6 206712 unique_id port 206712 remote_ip 10.8.1.14 206713 username daryaei1233 206713 mac 206713 bytes_out 0 206713 bytes_in 0 206713 station_ip 83.123.216.136 206713 port 8 206713 unique_id port 206713 remote_ip 10.8.0.6 206720 username hadibarzegar 206720 kill_reason Another user logged on this global unique id 206720 mac 206720 bytes_out 0 206720 bytes_in 0 206720 station_ip 5.120.115.115 206720 port 4 206720 unique_id port 206720 remote_ip 10.8.1.38 206723 username mohammadreza 206723 kill_reason Relative expiration date has reached 206723 mac 206723 bytes_out 0 206723 bytes_in 0 206723 station_ip 37.129.32.62 206723 port 10 206723 unique_id port 206724 username mohammadreza 206724 kill_reason Relative expiration date has reached 206724 mac 206724 bytes_out 0 206724 bytes_in 0 206724 station_ip 37.129.32.62 206724 port 10 206724 unique_id port 206729 username meysam 206729 kill_reason Another user logged on this global unique id 206729 mac 206729 bytes_out 0 206729 bytes_in 0 206729 station_ip 5.120.130.88 206729 port 2 206729 unique_id port 206729 remote_ip 10.8.1.6 206730 username kharazmi2920 206730 mac 206730 bytes_out 703004 206730 bytes_in 5115864 206730 station_ip 83.122.132.5 206730 port 9 206730 unique_id port 206730 remote_ip 10.8.0.54 206733 username barzegar 206733 mac 206733 bytes_out 0 206733 bytes_in 0 206733 station_ip 151.235.94.44 206733 port 10 206733 unique_id port 206733 remote_ip 10.8.0.34 206742 username daryaei1233 206742 mac 206742 bytes_out 0 206742 bytes_in 0 206742 station_ip 83.123.216.136 206742 port 10 206742 unique_id port 206742 remote_ip 10.8.1.14 206743 username daryaei1233 206743 mac 206743 bytes_out 0 206743 bytes_in 0 206743 station_ip 83.123.216.136 206743 port 9 206743 unique_id port 206695 kill_reason Another user logged on this global unique id 206695 mac 206695 bytes_out 0 206695 bytes_in 0 206695 station_ip 5.233.49.59 206695 port 7 206695 unique_id port 206695 remote_ip 10.8.1.54 206697 username daryaei1233 206697 kill_reason Maximum number of concurrent logins reached 206697 mac 206697 bytes_out 0 206697 bytes_in 0 206697 station_ip 83.123.216.136 206697 port 6 206697 unique_id port 206698 username yarmohamadi7916 206698 mac 206698 bytes_out 0 206698 bytes_in 0 206698 station_ip 5.120.173.143 206698 port 2 206698 unique_id port 206699 username morteza4424 206699 mac 206699 bytes_out 0 206699 bytes_in 0 206699 station_ip 83.123.60.111 206699 port 9 206699 unique_id port 206699 remote_ip 10.8.0.30 206702 username barzegar 206702 mac 206702 bytes_out 57846 206702 bytes_in 167978 206702 station_ip 5.120.51.218 206702 port 1 206702 unique_id port 206702 remote_ip 10.8.0.34 206707 username mosavi0713 206707 mac 206707 bytes_out 401834 206707 bytes_in 6344805 206707 station_ip 83.123.87.173 206707 port 9 206707 unique_id port 206707 remote_ip 10.8.0.22 206708 username dortaj3792 206708 mac 206708 bytes_out 724918 206708 bytes_in 1630820 206708 station_ip 5.120.133.77 206708 port 8 206708 unique_id port 206708 remote_ip 10.8.0.10 206714 username daryaei1233 206714 mac 206714 bytes_out 0 206714 bytes_in 0 206714 station_ip 83.123.216.136 206714 port 8 206714 unique_id port 206714 remote_ip 10.8.0.6 206715 username morteza4424 206715 kill_reason Another user logged on this global unique id 206715 mac 206715 bytes_out 0 206715 bytes_in 0 206715 station_ip 83.123.60.111 206715 port 2 206715 unique_id port 206718 username morteza4424 206718 mac 206718 bytes_out 0 206718 bytes_in 0 206718 station_ip 83.123.60.111 206718 port 2 206718 unique_id port 206719 username daryaei1233 206719 kill_reason Maximum check online fails reached 206719 mac 206719 bytes_out 0 206719 bytes_in 0 206719 station_ip 83.123.216.136 206719 port 8 206719 unique_id port 206725 username mohammadreza 206725 kill_reason Relative expiration date has reached 206725 mac 206725 bytes_out 0 206725 bytes_in 0 206725 station_ip 37.129.32.62 206725 port 10 206725 unique_id port 206728 username houshang 206728 kill_reason Relative expiration date has reached 206728 mac 206728 bytes_out 0 206728 bytes_in 0 206728 station_ip 5.119.84.25 206728 port 3 206728 unique_id port 206732 username morteza4424 206732 mac 206732 bytes_out 0 206732 bytes_in 0 206732 station_ip 83.123.60.111 206732 port 2 206732 unique_id port 206735 username morteza4424 206735 mac 206735 bytes_out 1163477 206735 bytes_in 4902135 206735 station_ip 83.123.60.111 206735 port 2 206735 unique_id port 206735 remote_ip 10.8.0.30 206737 username barzegar 206737 mac 206737 bytes_out 0 206737 bytes_in 0 206737 station_ip 151.235.94.44 206737 port 6 206737 unique_id port 206737 remote_ip 10.8.1.30 206738 username morteza4424 206738 mac 206738 bytes_out 0 206738 bytes_in 0 206738 station_ip 83.123.60.111 206738 port 10 206738 unique_id port 206738 remote_ip 10.8.1.42 206740 username morteza4424 206740 mac 206740 bytes_out 0 206740 bytes_in 0 206740 station_ip 83.123.60.111 206740 port 11 206740 unique_id port 206740 remote_ip 10.8.1.42 206741 username barzegar 206741 mac 206741 bytes_out 0 206741 bytes_in 0 206741 station_ip 151.235.94.44 206741 port 9 206741 unique_id port 206741 remote_ip 10.8.1.30 206751 username daryaei1233 206751 kill_reason Maximum number of concurrent logins reached 206751 mac 206716 station_ip 83.123.216.136 206716 port 8 206716 unique_id port 206716 remote_ip 10.8.0.6 206717 username barzegar8595 206717 mac 206717 bytes_out 0 206717 bytes_in 0 206717 station_ip 46.225.209.107 206717 port 3 206717 unique_id port 206717 remote_ip 10.8.1.26 206721 username barzegar 206721 mac 206721 bytes_out 0 206721 bytes_in 0 206721 station_ip 151.235.94.44 206721 port 10 206721 unique_id port 206721 remote_ip 10.8.0.34 206722 username mohammadreza 206722 kill_reason Relative expiration date has reached 206722 mac 206722 bytes_out 0 206722 bytes_in 0 206722 station_ip 37.129.32.62 206722 port 10 206722 unique_id port 206726 username houshang 206726 kill_reason Relative expiration date has reached 206726 mac 206726 bytes_out 0 206726 bytes_in 0 206726 station_ip 5.119.84.25 206726 port 2 206726 unique_id port 206727 username mohammadreza 206727 kill_reason Relative expiration date has reached 206727 mac 206727 bytes_out 0 206727 bytes_in 0 206727 station_ip 37.129.32.62 206727 port 10 206727 unique_id port 206731 username daryaei1233 206731 mac 206731 bytes_out 0 206731 bytes_in 0 206731 station_ip 83.123.216.136 206731 port 9 206731 unique_id port 206731 remote_ip 10.8.0.6 206734 username mehrpoyan101 206734 mac 206734 bytes_out 1158312 206734 bytes_in 4870597 206734 station_ip 5.119.61.132 206734 port 2 206734 unique_id port 206734 remote_ip 10.8.1.18 206736 username mehrpoyan101 206736 mac 206736 bytes_out 0 206736 bytes_in 0 206736 station_ip 5.119.61.132 206736 port 2 206736 unique_id port 206736 remote_ip 10.8.1.18 206739 username morteza4424 206739 mac 206739 bytes_out 0 206739 bytes_in 0 206739 station_ip 83.123.60.111 206739 port 2 206739 unique_id port 206744 username mehrpoyan101 206744 mac 206744 bytes_out 0 206744 bytes_in 0 206744 station_ip 5.119.61.132 206744 port 2 206744 unique_id port 206744 remote_ip 10.8.1.18 206745 username nilufarrajaei 206745 kill_reason Another user logged on this global unique id 206745 mac 206745 bytes_out 0 206745 bytes_in 0 206745 station_ip 37.129.97.14 206745 port 1 206745 unique_id port 206745 remote_ip 10.8.0.50 206747 username daryaei1233 206747 mac 206747 bytes_out 1644 206747 bytes_in 4983 206747 station_ip 83.123.216.136 206747 port 10 206747 unique_id port 206747 remote_ip 10.8.0.6 206748 username daryaei1233 206748 mac 206748 bytes_out 0 206748 bytes_in 0 206748 station_ip 83.123.216.136 206748 port 10 206748 unique_id port 206748 remote_ip 10.8.0.6 206754 username daryaei1233 206754 kill_reason Maximum check online fails reached 206754 mac 206754 bytes_out 0 206754 bytes_in 0 206754 station_ip 83.123.216.136 206754 port 10 206754 unique_id port 206756 username dortaj3792 206756 mac 206756 bytes_out 0 206756 bytes_in 0 206756 station_ip 5.120.133.77 206756 port 8 206756 unique_id port 206756 remote_ip 10.8.1.62 206758 username hadibarzegar 206758 mac 206758 bytes_out 0 206758 bytes_in 0 206758 station_ip 5.120.115.115 206758 port 4 206758 unique_id port 206761 username barzegar 206761 mac 206761 bytes_out 7847702 206761 bytes_in 126014548 206761 station_ip 151.235.94.44 206761 port 4 206761 unique_id port 206761 remote_ip 10.8.1.30 206762 username mehrpoyan101 206762 mac 206762 bytes_out 7876817 206762 bytes_in 126049661 206762 station_ip 5.119.61.132 206762 port 4 206762 unique_id port 206762 remote_ip 10.8.1.18 206766 username mehrpoyan101 206766 mac 206766 bytes_out 0 206766 bytes_in 0 206766 station_ip 5.119.61.132 206766 port 4 206743 remote_ip 10.8.1.14 206746 username barzegar 206746 kill_reason Another user logged on this global unique id 206746 mac 206746 bytes_out 0 206746 bytes_in 0 206746 station_ip 151.235.94.44 206746 port 9 206746 unique_id port 206746 remote_ip 10.8.1.30 206749 username daryaei1233 206749 mac 206749 bytes_out 0 206749 bytes_in 0 206749 station_ip 83.123.216.136 206749 port 10 206749 unique_id port 206749 remote_ip 10.8.0.6 206750 username morteza4424 206750 mac 206750 bytes_out 0 206750 bytes_in 0 206750 station_ip 83.123.60.111 206750 port 11 206750 unique_id port 206750 remote_ip 10.8.1.42 206752 username rashidi4690 206752 mac 206752 bytes_out 974778 206752 bytes_in 4791824 206752 station_ip 5.120.145.40 206752 port 3 206752 unique_id port 206752 remote_ip 10.8.1.50 206753 username kalantary6037 206753 mac 206753 bytes_out 0 206753 bytes_in 0 206753 station_ip 37.129.183.37 206753 port 9 206753 unique_id port 206753 remote_ip 10.8.0.18 206755 username mehrpoyan101 206755 mac 206755 bytes_out 0 206755 bytes_in 0 206755 station_ip 5.119.61.132 206755 port 2 206755 unique_id port 206755 remote_ip 10.8.1.18 206757 username alirezazadeh 206757 unique_id port 206757 terminate_cause Lost-Carrier 206757 bytes_out 994789 206757 bytes_in 11135441 206757 station_ip 5.119.167.192 206757 port 15730278 206757 nas_port_type Virtual 206757 remote_ip 5.5.5.191 206760 username daryaei1233 206760 mac 206760 bytes_out 0 206760 bytes_in 0 206760 station_ip 83.123.216.136 206760 port 7 206760 unique_id port 206763 username barzegar 206763 mac 206763 bytes_out 7984325 206763 bytes_in 126144847 206763 station_ip 5.120.41.90 206763 port 4 206763 unique_id port 206763 remote_ip 10.8.1.30 206764 username mehrpoyan101 206764 mac 206764 bytes_out 0 206764 bytes_in 0 206764 station_ip 5.119.61.132 206764 port 8 206764 unique_id port 206764 remote_ip 10.8.1.18 206767 username kalantary6037 206767 mac 206767 bytes_out 0 206767 bytes_in 0 206767 station_ip 37.129.222.97 206767 port 9 206767 unique_id port 206767 remote_ip 10.8.0.18 206770 username hatami 206770 mac 206770 bytes_out 0 206770 bytes_in 0 206770 station_ip 151.235.105.117 206770 port 9 206770 unique_id port 206770 remote_ip 10.8.1.70 206775 username barzegar 206775 kill_reason Another user logged on this global unique id 206775 mac 206775 bytes_out 0 206775 bytes_in 0 206775 station_ip 151.235.94.44 206775 port 6 206775 unique_id port 206776 username rezaei 206776 kill_reason Another user logged on this global unique id 206776 mac 206776 bytes_out 0 206776 bytes_in 0 206776 station_ip 5.119.226.2 206776 port 5 206776 unique_id port 206776 remote_ip 10.8.1.58 206781 username milan 206781 kill_reason Another user logged on this global unique id 206781 mac 206781 bytes_out 0 206781 bytes_in 0 206781 station_ip 5.120.109.57 206781 port 2 206781 unique_id port 206781 remote_ip 10.8.1.22 206783 username esmaeilkazemi 206783 mac 206783 bytes_out 5259 206783 bytes_in 21612 206783 station_ip 37.129.152.139 206783 port 12 206783 unique_id port 206783 remote_ip 10.8.0.66 206785 username sekonji0496 206785 mac 206785 bytes_out 1590078 206785 bytes_in 25698290 206785 station_ip 83.122.158.251 206785 port 13 206785 unique_id port 206785 remote_ip 10.8.0.70 206787 username hamid.e 206787 unique_id port 206787 terminate_cause User-Request 206787 bytes_out 606811 206787 bytes_in 13748437 206787 station_ip 31.56.157.239 206787 port 15730284 206787 nas_port_type Virtual 206787 remote_ip 5.5.5.234 206790 username khalili2 206790 unique_id port 206751 bytes_out 0 206751 bytes_in 0 206751 station_ip 83.123.216.136 206751 port 11 206751 unique_id port 206759 username barzegar 206759 mac 206759 bytes_out 0 206759 bytes_in 0 206759 station_ip 151.235.94.44 206759 port 8 206759 unique_id port 206759 remote_ip 10.8.1.30 206765 username mehrpoyan101 206765 mac 206765 bytes_out 0 206765 bytes_in 0 206765 station_ip 5.119.61.132 206765 port 4 206765 unique_id port 206765 remote_ip 10.8.1.18 206768 username mehrpoyan101 206768 mac 206768 bytes_out 362323 206768 bytes_in 3397682 206768 station_ip 5.119.61.132 206768 port 8 206768 unique_id port 206768 remote_ip 10.8.1.18 206771 username mehrpoyan101 206771 mac 206771 bytes_out 0 206771 bytes_in 0 206771 station_ip 5.119.61.132 206771 port 8 206771 unique_id port 206771 remote_ip 10.8.1.18 206772 username nekheei 206772 kill_reason Another user logged on this global unique id 206772 mac 206772 bytes_out 0 206772 bytes_in 0 206772 station_ip 5.119.140.212 206772 port 11 206772 unique_id port 206772 remote_ip 10.8.1.74 206773 username hamid1430 206773 kill_reason Another user logged on this global unique id 206773 mac 206773 bytes_out 0 206773 bytes_in 0 206773 station_ip 113.203.67.6 206773 port 11 206773 unique_id port 206773 remote_ip 10.8.0.62 206774 username kamali3 206774 unique_id port 206774 terminate_cause User-Request 206774 bytes_out 57734 206774 bytes_in 117439 206774 station_ip 83.122.29.99 206774 port 15730283 206774 nas_port_type Virtual 206774 remote_ip 5.5.5.211 206779 username alihosseini1 206779 mac 206779 bytes_out 0 206779 bytes_in 0 206779 station_ip 5.119.77.206 206779 port 10 206779 unique_id port 206779 remote_ip 10.8.1.82 206780 username esmaeilkazemi 206780 mac 206780 bytes_out 0 206780 bytes_in 0 206780 station_ip 37.129.152.139 206780 port 12 206780 unique_id port 206780 remote_ip 10.8.0.66 206786 username tahmorsi 206786 mac 206786 bytes_out 0 206786 bytes_in 0 206786 station_ip 86.57.41.122 206786 port 8 206786 unique_id port 206786 remote_ip 10.8.1.78 206795 username alirezazadeh 206795 unique_id port 206795 terminate_cause User-Request 206795 bytes_out 124 206795 bytes_in 204 206795 station_ip 5.119.167.192 206795 port 15730287 206795 nas_port_type Virtual 206795 remote_ip 5.5.5.191 206802 username kalantary6037 206802 mac 206802 bytes_out 0 206802 bytes_in 0 206802 station_ip 37.129.236.9 206802 port 14 206802 unique_id port 206802 remote_ip 10.8.0.18 206804 username khalili2 206804 mac 206804 bytes_out 0 206804 bytes_in 0 206804 station_ip 5.119.250.57 206804 port 12 206804 unique_id port 206804 remote_ip 10.8.1.94 206805 username mammad 206805 unique_id port 206805 terminate_cause User-Request 206805 bytes_out 3009077 206805 bytes_in 42403982 206805 station_ip 5.233.72.90 206805 port 15730285 206805 nas_port_type Virtual 206805 remote_ip 5.5.5.255 206808 username dortaj3792 206808 mac 206808 bytes_out 0 206808 bytes_in 0 206808 station_ip 5.120.133.77 206808 port 10 206808 unique_id port 206808 remote_ip 10.8.1.62 206809 username amirzadeh1339 206809 unique_id port 206809 terminate_cause User-Request 206809 bytes_out 5131379 206809 bytes_in 16038816 206809 station_ip 37.27.13.31 206809 port 15730274 206809 nas_port_type Virtual 206809 remote_ip 5.5.5.196 206814 username rashidi4690 206814 kill_reason Another user logged on this global unique id 206814 mac 206814 bytes_out 0 206814 bytes_in 0 206814 station_ip 5.120.45.145 206814 port 7 206814 unique_id port 206814 remote_ip 10.8.1.50 206815 username nekheei 206815 mac 206815 bytes_out 0 206815 bytes_in 0 206766 unique_id port 206766 remote_ip 10.8.1.18 206769 username barzegar 206769 mac 206769 bytes_out 0 206769 bytes_in 0 206769 station_ip 5.120.41.90 206769 port 10 206769 unique_id port 206769 remote_ip 10.8.1.30 206777 username sobhan 206777 unique_id port 206777 terminate_cause Lost-Carrier 206777 bytes_out 7642276 206777 bytes_in 122395206 206777 station_ip 5.120.85.174 206777 port 15730280 206777 nas_port_type Virtual 206777 remote_ip 5.5.5.216 206778 username aminvpn 206778 kill_reason Another user logged on this global unique id 206778 mac 206778 bytes_out 0 206778 bytes_in 0 206778 station_ip 83.122.123.199 206778 port 9 206778 unique_id port 206778 remote_ip 10.8.0.58 206782 username esmaeilkazemi 206782 mac 206782 bytes_out 1789 206782 bytes_in 4869 206782 station_ip 37.129.152.139 206782 port 13 206782 unique_id port 206782 remote_ip 10.8.0.66 206784 username godarzi 206784 mac 206784 bytes_out 3641903 206784 bytes_in 14813336 206784 station_ip 5.202.98.177 206784 port 3 206784 unique_id port 206784 remote_ip 10.8.1.66 206788 username rezaei 206788 kill_reason Another user logged on this global unique id 206788 mac 206788 bytes_out 0 206788 bytes_in 0 206788 station_ip 5.119.226.2 206788 port 5 206788 unique_id port 206789 username farhad3 206789 mac 206789 bytes_out 913844 206789 bytes_in 5232175 206789 station_ip 5.119.192.80 206789 port 3 206789 unique_id port 206789 remote_ip 10.8.1.86 206792 username barzegar 206792 mac 206792 bytes_out 1819140 206792 bytes_in 22501068 206792 station_ip 5.119.199.140 206792 port 9 206792 unique_id port 206792 remote_ip 10.8.1.30 206796 username saeeddamghani 206796 unique_id port 206796 terminate_cause User-Request 206796 bytes_out 537036 206796 bytes_in 16235422 206796 station_ip 217.60.218.93 206796 port 15730286 206796 nas_port_type Virtual 206796 remote_ip 5.5.5.26 206797 username godarzi 206797 kill_reason Another user logged on this global unique id 206797 mac 206797 bytes_out 0 206797 bytes_in 0 206797 station_ip 5.202.98.177 206797 port 12 206797 unique_id port 206797 remote_ip 10.8.0.74 206799 username barzegar 206799 mac 206799 bytes_out 0 206799 bytes_in 0 206799 station_ip 5.119.199.140 206799 port 13 206799 unique_id port 206799 remote_ip 10.8.1.30 206800 username alirezazadeh 206800 unique_id port 206800 terminate_cause User-Request 206800 bytes_out 1972 206800 bytes_in 324 206800 station_ip 5.119.167.192 206800 port 15730289 206800 nas_port_type Virtual 206800 remote_ip 5.5.5.191 206810 username barzegar 206810 mac 206810 bytes_out 0 206810 bytes_in 0 206810 station_ip 5.119.199.140 206810 port 10 206810 unique_id port 206810 remote_ip 10.8.1.30 206812 username farhad3 206812 kill_reason Another user logged on this global unique id 206812 mac 206812 bytes_out 0 206812 bytes_in 0 206812 station_ip 5.119.89.96 206812 port 3 206812 unique_id port 206812 remote_ip 10.8.1.86 206816 username khalili2 206816 kill_reason Another user logged on this global unique id 206816 mac 206816 bytes_out 0 206816 bytes_in 0 206816 station_ip 5.119.250.57 206816 port 14 206816 unique_id port 206816 remote_ip 10.8.0.78 206820 username rezaei 206820 mac 206820 bytes_out 0 206820 bytes_in 0 206820 station_ip 5.119.226.2 206820 port 5 206820 unique_id port 206821 username rashidi4690 206821 kill_reason Another user logged on this global unique id 206821 mac 206821 bytes_out 0 206821 bytes_in 0 206821 station_ip 5.120.45.145 206821 port 7 206821 unique_id port 206826 username godarzi 206826 mac 206826 bytes_out 0 206826 bytes_in 0 206826 station_ip 5.202.98.177 206826 port 11 206790 terminate_cause Lost-Carrier 206790 bytes_out 7591641 206790 bytes_in 317858156 206790 station_ip 5.119.250.57 206790 port 15730282 206790 nas_port_type Virtual 206790 remote_ip 5.5.5.194 206791 username milan 206791 kill_reason Another user logged on this global unique id 206791 mac 206791 bytes_out 0 206791 bytes_in 0 206791 station_ip 5.120.109.57 206791 port 2 206791 unique_id port 206793 username barzegar 206793 mac 206793 bytes_out 0 206793 bytes_in 0 206793 station_ip 5.119.199.140 206793 port 9 206793 unique_id port 206793 remote_ip 10.8.1.30 206794 username barzegar 206794 mac 206794 bytes_out 2107532 206794 bytes_in 23816246 206794 station_ip 5.119.199.140 206794 port 9 206794 unique_id port 206794 remote_ip 10.8.1.30 206798 username kharazmi2920 206798 kill_reason Another user logged on this global unique id 206798 mac 206798 bytes_out 0 206798 bytes_in 0 206798 station_ip 83.122.132.5 206798 port 13 206798 unique_id port 206798 remote_ip 10.8.0.54 206801 username barzegar 206801 mac 206801 bytes_out 402843 206801 bytes_in 2480122 206801 station_ip 5.119.199.140 206801 port 13 206801 unique_id port 206801 remote_ip 10.8.1.30 206803 username esmaeilkazemi 206803 mac 206803 bytes_out 7148 206803 bytes_in 27649 206803 station_ip 37.129.152.139 206803 port 15 206803 unique_id port 206803 remote_ip 10.8.0.66 206806 username iranmanesh4443 206806 mac 206806 bytes_out 0 206806 bytes_in 0 206806 station_ip 5.119.144.18 206806 port 8 206806 unique_id port 206806 remote_ip 10.8.1.90 206807 username nekheei 206807 mac 206807 bytes_out 0 206807 bytes_in 0 206807 station_ip 5.119.140.212 206807 port 11 206807 unique_id port 206811 username esmaeilkazemi 206811 mac 206811 bytes_out 3647 206811 bytes_in 20400 206811 station_ip 37.129.152.139 206811 port 15 206811 unique_id port 206811 remote_ip 10.8.0.66 206813 username nekheei 206813 mac 206813 bytes_out 0 206813 bytes_in 0 206813 station_ip 5.119.140.212 206813 port 8 206813 unique_id port 206813 remote_ip 10.8.1.74 206817 username dorani4942 206817 mac 206817 bytes_out 0 206817 bytes_in 0 206817 station_ip 83.122.152.59 206817 port 13 206817 unique_id port 206817 remote_ip 10.8.0.82 206822 username dorani4942 206822 mac 206822 bytes_out 1060939 206822 bytes_in 11798324 206822 station_ip 83.122.152.59 206822 port 13 206822 unique_id port 206822 remote_ip 10.8.0.82 206824 username khalili2 206824 kill_reason Another user logged on this global unique id 206824 mac 206824 bytes_out 0 206824 bytes_in 0 206824 station_ip 5.119.250.57 206824 port 14 206824 unique_id port 206825 username farhad3 206825 mac 206825 bytes_out 0 206825 bytes_in 0 206825 station_ip 5.119.89.96 206825 port 3 206825 unique_id port 206827 username barzegar 206827 mac 206827 bytes_out 0 206827 bytes_in 0 206827 station_ip 5.119.199.140 206827 port 10 206827 unique_id port 206827 remote_ip 10.8.1.30 206833 username esmaeilkazemi 206833 mac 206833 bytes_out 8888 206833 bytes_in 24254 206833 station_ip 37.129.152.139 206833 port 12 206833 unique_id port 206833 remote_ip 10.8.0.66 206835 username nekheei 206835 mac 206835 bytes_out 0 206835 bytes_in 0 206835 station_ip 5.119.140.212 206835 port 8 206835 unique_id port 206835 remote_ip 10.8.1.74 206841 username barzegar 206841 kill_reason Another user logged on this global unique id 206841 mac 206841 bytes_out 0 206841 bytes_in 0 206841 station_ip 5.119.199.140 206841 port 9 206841 unique_id port 206842 username rashidi4690 206842 mac 206842 bytes_out 0 206815 station_ip 5.119.140.212 206815 port 8 206815 unique_id port 206815 remote_ip 10.8.1.74 206818 username barzegar 206818 mac 206818 bytes_out 0 206818 bytes_in 0 206818 station_ip 5.119.199.140 206818 port 8 206818 unique_id port 206818 remote_ip 10.8.1.30 206819 username mammad 206819 unique_id port 206819 terminate_cause User-Request 206819 bytes_out 1478772 206819 bytes_in 35830332 206819 station_ip 5.233.72.90 206819 port 15730290 206819 nas_port_type Virtual 206819 remote_ip 5.5.5.255 206823 username kalantary6037 206823 mac 206823 bytes_out 538584 206823 bytes_in 3615454 206823 station_ip 37.129.209.145 206823 port 15 206823 unique_id port 206823 remote_ip 10.8.0.18 206829 username kalantary6037 206829 mac 206829 bytes_out 111669 206829 bytes_in 1176370 206829 station_ip 37.129.209.145 206829 port 12 206829 unique_id port 206829 remote_ip 10.8.0.18 206831 username khalili2 206831 kill_reason Another user logged on this global unique id 206831 mac 206831 bytes_out 0 206831 bytes_in 0 206831 station_ip 5.119.250.57 206831 port 14 206831 unique_id port 206834 username mammad 206834 unique_id port 206834 terminate_cause User-Request 206834 bytes_out 277722 206834 bytes_in 1401811 206834 station_ip 5.233.72.90 206834 port 15730291 206834 nas_port_type Virtual 206834 remote_ip 5.5.5.255 206838 username rashidi4690 206838 mac 206838 bytes_out 0 206838 bytes_in 0 206838 station_ip 5.120.45.145 206838 port 7 206838 unique_id port 206839 username esmaeilkazemi 206839 mac 206839 bytes_out 7081 206839 bytes_in 29780 206839 station_ip 37.129.152.139 206839 port 15 206839 unique_id port 206839 remote_ip 10.8.0.66 206848 username amirzadeh1339 206848 unique_id port 206848 terminate_cause User-Request 206848 bytes_out 4686046 206848 bytes_in 73283600 206848 station_ip 37.27.13.31 206848 port 15730292 206848 nas_port_type Virtual 206848 remote_ip 5.5.5.196 206849 username barzegar 206849 mac 206849 bytes_out 0 206849 bytes_in 0 206849 station_ip 5.119.199.140 206849 port 10 206849 unique_id port 206849 remote_ip 10.8.1.30 206850 username nilufarrajaei 206850 mac 206850 bytes_out 0 206850 bytes_in 0 206850 station_ip 37.129.97.14 206850 port 1 206850 unique_id port 206853 username nekheei 206853 mac 206853 bytes_out 0 206853 bytes_in 0 206853 station_ip 5.119.140.212 206853 port 7 206853 unique_id port 206856 username motamedi9772 206856 kill_reason Another user logged on this global unique id 206856 mac 206856 bytes_out 0 206856 bytes_in 0 206856 station_ip 83.122.122.73 206856 port 11 206856 unique_id port 206860 username barzegar 206860 mac 206860 bytes_out 0 206860 bytes_in 0 206860 station_ip 5.119.199.140 206860 port 9 206860 unique_id port 206860 remote_ip 10.8.0.34 206864 username nekheei 206864 mac 206864 bytes_out 0 206864 bytes_in 0 206864 station_ip 5.119.140.212 206864 port 1 206864 unique_id port 206864 remote_ip 10.8.1.74 206867 username motamedi9772 206867 kill_reason Another user logged on this global unique id 206867 mac 206867 bytes_out 0 206867 bytes_in 0 206867 station_ip 83.122.122.73 206867 port 11 206867 unique_id port 206868 username barzegar 206868 mac 206868 bytes_out 0 206868 bytes_in 0 206868 station_ip 5.119.199.140 206868 port 7 206868 unique_id port 206868 remote_ip 10.8.1.30 206869 username motamedi9772 206869 mac 206869 bytes_out 0 206869 bytes_in 0 206869 station_ip 83.122.122.73 206869 port 11 206869 unique_id port 206870 username sabaghnezhad 206870 kill_reason Another user logged on this global unique id 206870 mac 206870 bytes_out 0 206826 unique_id port 206826 remote_ip 10.8.0.74 206828 username esmaeilkazemi 206828 mac 206828 bytes_out 0 206828 bytes_in 0 206828 station_ip 37.129.152.139 206828 port 13 206828 unique_id port 206828 remote_ip 10.8.0.66 206830 username milan 206830 kill_reason Another user logged on this global unique id 206830 mac 206830 bytes_out 0 206830 bytes_in 0 206830 station_ip 5.120.109.57 206830 port 2 206830 unique_id port 206832 username esmaeilkazemi 206832 mac 206832 bytes_out 0 206832 bytes_in 0 206832 station_ip 37.129.152.139 206832 port 15 206832 unique_id port 206832 remote_ip 10.8.0.66 206836 username esmaeilkazemi 206836 kill_reason Maximum check online fails reached 206836 mac 206836 bytes_out 0 206836 bytes_in 0 206836 station_ip 37.129.152.139 206836 port 13 206836 unique_id port 206837 username esmaeilkazemi 206837 kill_reason Maximum check online fails reached 206837 mac 206837 bytes_out 0 206837 bytes_in 0 206837 station_ip 37.129.152.139 206837 port 12 206837 unique_id port 206840 username barzegar 206840 mac 206840 bytes_out 0 206840 bytes_in 0 206840 station_ip 5.119.199.140 206840 port 8 206840 unique_id port 206840 remote_ip 10.8.1.30 206843 username aminvpn 206843 mac 206843 bytes_out 0 206843 bytes_in 0 206843 station_ip 83.122.123.199 206843 port 9 206843 unique_id port 206845 username mehrpoyan101 206845 kill_reason Another user logged on this global unique id 206845 mac 206845 bytes_out 0 206845 bytes_in 0 206845 station_ip 5.119.61.132 206845 port 4 206845 unique_id port 206846 username nekheei 206846 kill_reason Another user logged on this global unique id 206846 mac 206846 bytes_out 0 206846 bytes_in 0 206846 station_ip 5.119.140.212 206846 port 7 206846 unique_id port 206846 remote_ip 10.8.1.74 206851 username rashidi4690 206851 mac 206851 bytes_out 0 206851 bytes_in 0 206851 station_ip 5.119.34.47 206851 port 8 206851 unique_id port 206851 remote_ip 10.8.1.50 206852 username milan 206852 kill_reason Another user logged on this global unique id 206852 mac 206852 bytes_out 0 206852 bytes_in 0 206852 station_ip 5.120.109.57 206852 port 2 206852 unique_id port 206854 username dortaj3792 206854 mac 206854 bytes_out 1216924 206854 bytes_in 6986210 206854 station_ip 5.120.133.77 206854 port 5 206854 unique_id port 206854 remote_ip 10.8.1.62 206855 username barzegar 206855 mac 206855 bytes_out 0 206855 bytes_in 0 206855 station_ip 5.119.199.140 206855 port 5 206855 unique_id port 206855 remote_ip 10.8.1.30 206858 username barzegar 206858 mac 206858 bytes_out 0 206858 bytes_in 0 206858 station_ip 5.119.199.140 206858 port 5 206858 unique_id port 206858 remote_ip 10.8.1.30 206859 username yazdani6029 206859 mac 206859 bytes_out 3032368 206859 bytes_in 32218162 206859 station_ip 37.129.41.125 206859 port 1 206859 unique_id port 206859 remote_ip 10.8.0.90 206861 username motamedi9772 206861 kill_reason Another user logged on this global unique id 206861 mac 206861 bytes_out 0 206861 bytes_in 0 206861 station_ip 83.122.122.73 206861 port 11 206861 unique_id port 206863 username farhad3 206863 mac 206863 bytes_out 3321573 206863 bytes_in 35897230 206863 station_ip 5.119.89.96 206863 port 1 206863 unique_id port 206863 remote_ip 10.8.1.86 206865 username barzegar 206865 mac 206865 bytes_out 0 206865 bytes_in 0 206865 station_ip 5.119.199.140 206865 port 7 206865 unique_id port 206865 remote_ip 10.8.1.30 206866 username khalili2 206866 mac 206866 bytes_out 0 206866 bytes_in 0 206866 station_ip 5.119.250.57 206866 port 14 206842 bytes_in 0 206842 station_ip 5.120.45.145 206842 port 7 206842 unique_id port 206842 remote_ip 10.8.1.50 206844 username barzegar 206844 mac 206844 bytes_out 0 206844 bytes_in 0 206844 station_ip 5.119.199.140 206844 port 8 206844 unique_id port 206844 remote_ip 10.8.1.30 206847 username motamedi9772 206847 kill_reason Another user logged on this global unique id 206847 mac 206847 bytes_out 0 206847 bytes_in 0 206847 station_ip 83.122.122.73 206847 port 11 206847 unique_id port 206847 remote_ip 10.8.0.86 206857 username khademi 206857 kill_reason Another user logged on this global unique id 206857 mac 206857 bytes_out 0 206857 bytes_in 0 206857 station_ip 37.129.98.124 206857 port 4 206857 unique_id port 206862 username farhad3 206862 mac 206862 bytes_out 0 206862 bytes_in 0 206862 station_ip 5.119.89.96 206862 port 3 206862 unique_id port 206862 remote_ip 10.8.1.86 206872 username arash 206872 kill_reason Relative expiration date has reached 206872 mac 206872 bytes_out 0 206872 bytes_in 0 206872 station_ip 37.27.20.156 206872 port 7 206872 unique_id port 206873 username farhad3 206873 mac 206873 bytes_out 0 206873 bytes_in 0 206873 station_ip 5.119.89.96 206873 port 3 206873 unique_id port 206873 remote_ip 10.8.1.86 206884 username motamedi9772 206884 kill_reason Another user logged on this global unique id 206884 mac 206884 bytes_out 0 206884 bytes_in 0 206884 station_ip 83.122.122.73 206884 port 11 206884 unique_id port 206884 remote_ip 10.8.0.86 206885 username barzegar 206885 mac 206885 bytes_out 0 206885 bytes_in 0 206885 station_ip 5.119.199.140 206885 port 3 206885 unique_id port 206885 remote_ip 10.8.1.30 206891 username nekheei 206891 kill_reason Another user logged on this global unique id 206891 mac 206891 bytes_out 0 206891 bytes_in 0 206891 station_ip 5.119.140.212 206891 port 1 206891 unique_id port 206896 username nekheei 206896 kill_reason Another user logged on this global unique id 206896 mac 206896 bytes_out 0 206896 bytes_in 0 206896 station_ip 5.119.140.212 206896 port 1 206896 unique_id port 206897 username barzegar 206897 mac 206897 bytes_out 0 206897 bytes_in 0 206897 station_ip 5.119.199.140 206897 port 7 206897 unique_id port 206897 remote_ip 10.8.1.30 206901 username nekheei 206901 mac 206901 bytes_out 0 206901 bytes_in 0 206901 station_ip 5.119.140.212 206901 port 1 206901 unique_id port 206903 username barzegar 206903 mac 206903 bytes_out 0 206903 bytes_in 0 206903 station_ip 5.119.199.140 206903 port 11 206903 unique_id port 206903 remote_ip 10.8.0.34 206905 username farhad3 206905 mac 206905 bytes_out 0 206905 bytes_in 0 206905 station_ip 5.120.60.48 206905 port 1 206905 unique_id port 206905 remote_ip 10.8.1.86 206906 username farhad3 206906 mac 206906 bytes_out 0 206906 bytes_in 0 206906 station_ip 5.120.60.48 206906 port 1 206906 unique_id port 206906 remote_ip 10.8.1.86 206909 username mostafa_es78 206909 mac 206909 bytes_out 0 206909 bytes_in 0 206909 station_ip 37.129.84.11 206909 port 9 206909 unique_id port 206909 remote_ip 10.8.0.42 206910 username barzegar 206910 mac 206910 bytes_out 0 206910 bytes_in 0 206910 station_ip 5.119.199.140 206910 port 3 206910 unique_id port 206910 remote_ip 10.8.1.30 206915 username farhad3 206915 kill_reason Another user logged on this global unique id 206915 mac 206915 bytes_out 0 206915 bytes_in 0 206915 station_ip 5.120.60.48 206915 port 1 206915 unique_id port 206919 username farhad3 206919 mac 206919 bytes_out 0 206866 unique_id port 206878 username arash 206878 kill_reason Relative expiration date has reached 206878 mac 206878 bytes_out 0 206878 bytes_in 0 206878 station_ip 37.27.20.156 206878 port 1 206878 unique_id port 206879 username farhad3 206879 mac 206879 bytes_out 0 206879 bytes_in 0 206879 station_ip 5.119.89.96 206879 port 3 206879 unique_id port 206879 remote_ip 10.8.1.86 206883 username barzegar 206883 mac 206883 bytes_out 0 206883 bytes_in 0 206883 station_ip 5.119.199.140 206883 port 1 206883 unique_id port 206883 remote_ip 10.8.1.30 206889 username barzegar 206889 mac 206889 bytes_out 0 206889 bytes_in 0 206889 station_ip 5.119.199.140 206889 port 3 206889 unique_id port 206889 remote_ip 10.8.1.30 206890 username motamedi9772 206890 mac 206890 bytes_out 0 206890 bytes_in 0 206890 station_ip 83.122.122.73 206890 port 11 206890 unique_id port 206892 username barzegar 206892 mac 206892 bytes_out 0 206892 bytes_in 0 206892 station_ip 5.119.199.140 206892 port 7 206892 unique_id port 206892 remote_ip 10.8.1.30 206893 username farhad3 206893 kill_reason Another user logged on this global unique id 206893 mac 206893 bytes_out 0 206893 bytes_in 0 206893 station_ip 5.120.60.48 206893 port 3 206893 unique_id port 206893 remote_ip 10.8.1.86 206894 username farhad3 206894 mac 206894 bytes_out 0 206894 bytes_in 0 206894 station_ip 5.120.60.48 206894 port 3 206894 unique_id port 206899 username kalantary6037 206899 mac 206899 bytes_out 0 206899 bytes_in 0 206899 station_ip 37.129.166.109 206899 port 3 206899 unique_id port 206899 remote_ip 10.8.1.98 206900 username farhad3 206900 mac 206900 bytes_out 0 206900 bytes_in 0 206900 station_ip 5.120.60.48 206900 port 7 206900 unique_id port 206900 remote_ip 10.8.1.86 206904 username kalantary6037 206904 kill_reason Another user logged on this global unique id 206904 mac 206904 bytes_out 0 206904 bytes_in 0 206904 station_ip 37.129.166.109 206904 port 3 206904 unique_id port 206904 remote_ip 10.8.1.98 206907 username farhad3 206907 mac 206907 bytes_out 409170 206907 bytes_in 1690765 206907 station_ip 5.120.60.48 206907 port 1 206907 unique_id port 206907 remote_ip 10.8.1.86 206912 username kalantary6037 206912 mac 206912 bytes_out 0 206912 bytes_in 0 206912 station_ip 37.129.166.109 206912 port 3 206912 unique_id port 206912 remote_ip 10.8.1.98 206917 username farhad3 206917 kill_reason Another user logged on this global unique id 206917 mac 206917 bytes_out 0 206917 bytes_in 0 206917 station_ip 5.120.60.48 206917 port 1 206917 unique_id port 206918 username kalantary6037 206918 kill_reason Another user logged on this global unique id 206918 mac 206918 bytes_out 0 206918 bytes_in 0 206918 station_ip 37.129.166.109 206918 port 3 206918 unique_id port 206918 remote_ip 10.8.1.98 206920 username kalantary6037 206920 mac 206920 bytes_out 0 206920 bytes_in 0 206920 station_ip 37.129.166.109 206920 port 3 206920 unique_id port 206927 username barzegar 206927 mac 206927 bytes_out 0 206927 bytes_in 0 206927 station_ip 5.119.199.140 206927 port 3 206927 unique_id port 206927 remote_ip 10.8.1.30 206930 username barzegar 206930 mac 206930 bytes_out 0 206930 bytes_in 0 206930 station_ip 5.119.199.140 206930 port 3 206930 unique_id port 206930 remote_ip 10.8.1.30 206931 username kalantary6037 206931 kill_reason Another user logged on this global unique id 206931 mac 206931 bytes_out 0 206931 bytes_in 0 206931 station_ip 37.129.166.245 206931 port 1 206931 unique_id port 206870 bytes_in 0 206870 station_ip 37.129.247.87 206870 port 1 206870 unique_id port 206870 remote_ip 10.8.0.94 206871 username mosi 206871 kill_reason Another user logged on this global unique id 206871 mac 206871 bytes_out 0 206871 bytes_in 0 206871 station_ip 2.183.56.173 206871 port 5 206871 unique_id port 206871 remote_ip 10.8.1.54 206874 username barzegar 206874 mac 206874 bytes_out 0 206874 bytes_in 0 206874 station_ip 5.119.199.140 206874 port 3 206874 unique_id port 206874 remote_ip 10.8.1.30 206875 username farhad3 206875 mac 206875 bytes_out 0 206875 bytes_in 0 206875 station_ip 5.119.89.96 206875 port 3 206875 unique_id port 206875 remote_ip 10.8.1.86 206876 username aminvpn 206876 unique_id port 206876 terminate_cause User-Request 206876 bytes_out 1338373 206876 bytes_in 35278278 206876 station_ip 5.160.113.30 206876 port 15730297 206876 nas_port_type Virtual 206876 remote_ip 5.5.5.169 206877 username nekheei 206877 mac 206877 bytes_out 0 206877 bytes_in 0 206877 station_ip 5.119.140.212 206877 port 1 206877 unique_id port 206880 username barzegar 206880 mac 206880 bytes_out 0 206880 bytes_in 0 206880 station_ip 5.119.199.140 206880 port 1 206880 unique_id port 206880 remote_ip 10.8.1.30 206881 username barzegar 206881 mac 206881 bytes_out 300134 206881 bytes_in 1529275 206881 station_ip 5.119.199.140 206881 port 1 206881 unique_id port 206881 remote_ip 10.8.1.30 206882 username amirzadeh1339 206882 unique_id port 206882 terminate_cause User-Request 206882 bytes_out 39645830 206882 bytes_in 655876614 206882 station_ip 37.27.13.31 206882 port 15730295 206882 nas_port_type Virtual 206882 remote_ip 5.5.5.196 206886 username motamedi9772 206886 kill_reason Another user logged on this global unique id 206886 mac 206886 bytes_out 0 206886 bytes_in 0 206886 station_ip 83.122.122.73 206886 port 11 206886 unique_id port 206887 username barzegar 206887 mac 206887 bytes_out 0 206887 bytes_in 0 206887 station_ip 5.119.199.140 206887 port 14 206887 unique_id port 206887 remote_ip 10.8.0.34 206888 username nekheei 206888 kill_reason Another user logged on this global unique id 206888 mac 206888 bytes_out 0 206888 bytes_in 0 206888 station_ip 5.119.140.212 206888 port 1 206888 unique_id port 206888 remote_ip 10.8.1.74 206895 username kalantary6037 206895 mac 206895 bytes_out 199907 206895 bytes_in 148335 206895 station_ip 37.129.166.109 206895 port 11 206895 unique_id port 206895 remote_ip 10.8.0.18 206898 username kalantary6037 206898 mac 206898 bytes_out 0 206898 bytes_in 0 206898 station_ip 37.129.166.109 206898 port 3 206898 unique_id port 206898 remote_ip 10.8.1.98 206902 username farhad3 206902 mac 206902 bytes_out 352691 206902 bytes_in 3583120 206902 station_ip 5.120.60.48 206902 port 7 206902 unique_id port 206902 remote_ip 10.8.1.86 206908 username kalantary6037 206908 mac 206908 bytes_out 0 206908 bytes_in 0 206908 station_ip 37.129.166.109 206908 port 3 206908 unique_id port 206911 username farhad3 206911 mac 206911 bytes_out 0 206911 bytes_in 0 206911 station_ip 5.120.60.48 206911 port 1 206911 unique_id port 206911 remote_ip 10.8.1.86 206913 username barzegar 206913 mac 206913 bytes_out 0 206913 bytes_in 0 206913 station_ip 5.119.199.140 206913 port 7 206913 unique_id port 206913 remote_ip 10.8.1.30 206914 username kalantary6037 206914 mac 206914 bytes_out 0 206914 bytes_in 0 206914 station_ip 37.129.166.109 206914 port 3 206914 unique_id port 206914 remote_ip 10.8.1.98 206916 username barzegar 206916 mac 206916 bytes_out 0 206916 bytes_in 0 206916 station_ip 5.119.199.140 206916 port 7 206916 unique_id port 206916 remote_ip 10.8.1.30 206922 username barzegar 206922 mac 206922 bytes_out 0 206922 bytes_in 0 206922 station_ip 5.119.199.140 206922 port 3 206922 unique_id port 206922 remote_ip 10.8.1.30 206924 username kalantary6037 206924 mac 206924 bytes_out 0 206924 bytes_in 0 206924 station_ip 37.129.166.109 206924 port 1 206924 unique_id port 206924 remote_ip 10.8.1.98 206925 username barzegar 206925 mac 206925 bytes_out 0 206925 bytes_in 0 206925 station_ip 5.119.199.140 206925 port 1 206925 unique_id port 206925 remote_ip 10.8.1.30 206928 username kalantary6037 206928 mac 206928 bytes_out 0 206928 bytes_in 0 206928 station_ip 37.129.166.245 206928 port 1 206928 unique_id port 206928 remote_ip 10.8.1.98 206932 username kalantary6037 206932 mac 206932 bytes_out 0 206932 bytes_in 0 206932 station_ip 37.129.166.245 206932 port 1 206932 unique_id port 206935 username kalantary6037 206935 kill_reason Another user logged on this global unique id 206935 mac 206935 bytes_out 0 206935 bytes_in 0 206935 station_ip 37.129.166.245 206935 port 1 206935 unique_id port 206935 remote_ip 10.8.1.98 206946 username barzegar 206946 mac 206946 bytes_out 0 206946 bytes_in 0 206946 station_ip 5.119.199.140 206946 port 3 206946 unique_id port 206946 remote_ip 10.8.1.30 206949 username esmaeilkazemi 206949 mac 206949 bytes_out 0 206949 bytes_in 0 206949 station_ip 46.249.124.78 206949 port 3 206949 unique_id port 206949 remote_ip 10.8.1.102 206951 username esmaeilkazemi 206951 mac 206951 bytes_out 0 206951 bytes_in 0 206951 station_ip 46.249.124.78 206951 port 3 206951 unique_id port 206951 remote_ip 10.8.1.102 206953 username mosi 206953 mac 206953 bytes_out 0 206953 bytes_in 0 206953 station_ip 2.183.56.173 206953 port 5 206953 unique_id port 206954 username yaghobi 206954 mac 206954 bytes_out 0 206954 bytes_in 0 206954 station_ip 37.129.90.50 206954 port 3 206954 unique_id port 206954 remote_ip 10.8.1.106 206957 username alipour1506 206957 kill_reason Another user logged on this global unique id 206957 mac 206957 bytes_out 0 206957 bytes_in 0 206957 station_ip 78.39.26.163 206957 port 6 206957 unique_id port 206961 username barzegar 206961 mac 206961 bytes_out 0 206961 bytes_in 0 206961 station_ip 5.119.199.140 206961 port 1 206961 unique_id port 206961 remote_ip 10.8.1.30 206965 username aminvpn 206965 unique_id port 206965 terminate_cause Lost-Carrier 206965 bytes_out 819784 206965 bytes_in 4393779 206965 station_ip 37.129.73.90 206965 port 15730301 206965 nas_port_type Virtual 206965 remote_ip 5.5.5.171 206968 username nilufarrajaei 206968 mac 206968 bytes_out 0 206968 bytes_in 0 206968 station_ip 37.129.91.142 206968 port 1 206968 unique_id port 206968 remote_ip 10.8.0.50 206973 username kalantary6037 206973 mac 206973 bytes_out 1566648 206973 bytes_in 19256470 206973 station_ip 37.129.201.41 206973 port 7 206973 unique_id port 206973 remote_ip 10.8.1.98 206977 username alipour1506 206977 mac 206977 bytes_out 0 206977 bytes_in 0 206977 station_ip 78.39.26.163 206977 port 6 206977 unique_id port 206979 username sekonji0496 206979 mac 206979 bytes_out 1358700 206979 bytes_in 22413098 206979 station_ip 37.129.234.247 206979 port 6 206979 unique_id port 206979 remote_ip 10.8.0.70 206980 username barzegar 206980 mac 206980 bytes_out 0 206980 bytes_in 0 206980 station_ip 5.119.199.140 206919 bytes_in 0 206919 station_ip 5.120.60.48 206919 port 1 206919 unique_id port 206921 username farhad3 206921 kill_reason Another user logged on this global unique id 206921 mac 206921 bytes_out 0 206921 bytes_in 0 206921 station_ip 5.120.60.48 206921 port 1 206921 unique_id port 206921 remote_ip 10.8.0.98 206923 username kalantary6037 206923 mac 206923 bytes_out 0 206923 bytes_in 0 206923 station_ip 37.129.166.109 206923 port 1 206923 unique_id port 206923 remote_ip 10.8.1.98 206926 username barzegar 206926 mac 206926 bytes_out 0 206926 bytes_in 0 206926 station_ip 5.119.199.140 206926 port 3 206926 unique_id port 206926 remote_ip 10.8.1.30 206929 username kalantary6037 206929 kill_reason Another user logged on this global unique id 206929 mac 206929 bytes_out 0 206929 bytes_in 0 206929 station_ip 37.129.166.245 206929 port 1 206929 unique_id port 206929 remote_ip 10.8.1.98 206934 username barzegar 206934 mac 206934 bytes_out 0 206934 bytes_in 0 206934 station_ip 5.119.199.140 206934 port 3 206934 unique_id port 206934 remote_ip 10.8.1.30 206963 station_ip 37.129.201.41 206963 port 1 206963 unique_id port 206963 remote_ip 10.8.1.98 206966 username barzegar 206966 mac 206966 bytes_out 0 206966 bytes_in 0 206966 station_ip 5.119.199.140 206966 port 8 206966 unique_id port 206966 remote_ip 10.8.1.30 206967 username barzegar 206967 mac 206967 bytes_out 0 206967 bytes_in 0 206967 station_ip 5.119.199.140 206967 port 9 206967 unique_id port 206967 remote_ip 10.8.0.34 206970 username dortaj3792 206970 mac 206970 bytes_out 485313 206970 bytes_in 1195064 206970 station_ip 5.120.133.77 206970 port 7 206970 unique_id port 206970 remote_ip 10.8.1.62 206972 username dortaj3792 206972 mac 206972 bytes_out 229984 206972 bytes_in 1513629 206972 station_ip 5.120.133.77 206972 port 1 206972 unique_id port 206972 remote_ip 10.8.1.62 206978 username nilufarrajaei 206978 mac 206978 bytes_out 0 206978 bytes_in 0 206978 station_ip 37.129.91.142 206978 port 11 206978 unique_id port 206978 remote_ip 10.8.0.50 206980 port 6 206980 unique_id port 206980 remote_ip 10.8.0.34 206981 username rezaei 206981 mac 206981 bytes_out 13841 206981 bytes_in 16618 206981 station_ip 5.119.226.2 206981 port 3 206981 unique_id port 206981 remote_ip 10.8.1.58 206982 username rezaei 206982 mac 206982 bytes_out 0 206982 bytes_in 0 206982 station_ip 5.119.226.2 206982 port 3 206982 unique_id port 206982 remote_ip 10.8.1.58 206983 username barzegar 206983 mac 206983 bytes_out 0 206983 bytes_in 0 206983 station_ip 5.119.199.140 206983 port 7 206983 unique_id port 206983 remote_ip 10.8.1.30 206984 username nilufarrajaei 206984 mac 206984 bytes_out 5827854 206984 bytes_in 22493448 206984 station_ip 37.129.91.142 206984 port 1 206984 unique_id port 206984 remote_ip 10.8.0.50 206986 username abdolahi0311 206986 kill_reason Another user logged on this global unique id 206986 mac 206986 bytes_out 0 206986 bytes_in 0 206986 station_ip 5.120.132.232 206986 port 3 206986 unique_id port 206986 remote_ip 10.8.1.114 206989 username nekheei 206989 mac 206989 bytes_out 38374 206989 bytes_in 78305 206989 station_ip 5.119.140.212 206989 port 1 206989 unique_id port 206989 remote_ip 10.8.1.74 206991 username barzegar 206991 mac 206991 bytes_out 0 206991 bytes_in 0 206991 station_ip 5.119.199.140 206991 port 7 206991 unique_id port 206991 remote_ip 10.8.1.30 206992 username abdolahi0311 206992 mac 206992 bytes_out 0 206992 bytes_in 0 206933 username barzegar 206933 mac 206933 bytes_out 0 206933 bytes_in 0 206933 station_ip 5.119.199.140 206933 port 1 206933 unique_id port 206933 remote_ip 10.8.1.30 206936 username barzegar 206936 mac 206936 bytes_out 0 206936 bytes_in 0 206936 station_ip 5.119.199.140 206936 port 1 206936 unique_id port 206936 remote_ip 10.8.0.34 206969 remote_ip 10.8.1.58 206971 username barzegar 206971 mac 206971 bytes_out 0 206971 bytes_in 0 206971 station_ip 5.119.199.140 206971 port 10 206971 unique_id port 206971 remote_ip 10.8.1.30 206974 username khalili2 206974 mac 206974 bytes_out 121504 206974 bytes_in 97576 206974 station_ip 5.119.250.57 206974 port 3 206974 unique_id port 206974 remote_ip 10.8.1.94 206975 username nekheei 206975 mac 206975 bytes_out 303141 206975 bytes_in 915199 206975 station_ip 5.119.140.212 206975 port 10 206975 unique_id port 206975 remote_ip 10.8.1.74 206976 username barzegar 206976 mac 206976 bytes_out 0 206976 bytes_in 0 206976 station_ip 5.119.199.140 206976 port 3 206976 unique_id port 206976 remote_ip 10.8.1.30 206985 username barzegar 206985 mac 206985 bytes_out 100551 206985 bytes_in 141401 206985 station_ip 5.119.199.140 206985 port 1 206985 unique_id port 206985 remote_ip 10.8.1.30 206987 username barzegar 206987 mac 206987 bytes_out 0 206987 bytes_in 0 206987 station_ip 5.119.199.140 206987 port 7 206987 unique_id port 206987 remote_ip 10.8.1.30 206988 username dorani4942 206988 kill_reason Another user logged on this global unique id 206988 mac 206988 bytes_out 0 206988 bytes_in 0 206988 station_ip 37.129.28.87 206988 port 10 206988 unique_id port 206988 remote_ip 10.8.1.118 206990 username abdolahi0311 206990 kill_reason Another user logged on this global unique id 206990 mac 206990 bytes_out 0 206990 bytes_in 0 206990 station_ip 5.120.132.232 206990 port 3 206990 unique_id port 206992 station_ip 5.120.132.232 206992 port 3 206992 unique_id port 206993 username farhad3 206993 mac 206993 bytes_out 417993 206993 bytes_in 2132368 206993 station_ip 5.120.60.48 206993 port 7 206993 unique_id port 206993 remote_ip 10.8.1.86 206994 username dorani4942 206994 kill_reason Another user logged on this global unique id 206994 mac 206994 bytes_out 0 206994 bytes_in 0 206994 station_ip 37.129.28.87 206994 port 10 206994 unique_id port 206995 username nilufarrajaei 206995 kill_reason Another user logged on this global unique id 206995 mac 206995 bytes_out 0 206995 bytes_in 0 206995 station_ip 37.129.91.142 206995 port 11 206995 unique_id port 206995 remote_ip 10.8.0.50 206996 username mosavi0713 206996 mac 206996 bytes_out 398604 206996 bytes_in 2218520 206996 station_ip 83.123.94.121 206996 port 6 206996 unique_id port 206996 remote_ip 10.8.0.22 206997 username barzegar 206997 mac 206997 bytes_out 2865958 206997 bytes_in 43802153 206997 station_ip 5.119.199.140 206997 port 1 206997 unique_id port 206997 remote_ip 10.8.0.34 206998 username nekheei 206998 mac 206998 bytes_out 2596 206998 bytes_in 4814 206998 station_ip 5.119.140.212 206998 port 1 206998 unique_id port 206998 remote_ip 10.8.1.74 206999 username nekheei 206999 mac 206999 bytes_out 0 206999 bytes_in 0 206999 station_ip 5.119.140.212 206999 port 1 206999 unique_id port 206999 remote_ip 10.8.1.74 207000 username nekheei 207000 mac 207000 bytes_out 0 207000 bytes_in 0 207000 station_ip 5.119.140.212 207000 port 1 207000 unique_id port 207000 remote_ip 10.8.1.74 207001 username farhad3 207001 kill_reason Another user logged on this global unique id 207001 mac 207001 bytes_out 0 207001 bytes_in 0 207001 station_ip 5.120.60.48 207001 port 11 207001 unique_id port 207001 remote_ip 10.8.1.86 207003 username dorani4942 207003 kill_reason Another user logged on this global unique id 207003 mac 207003 bytes_out 0 207003 bytes_in 0 207003 station_ip 37.129.28.87 207003 port 10 207003 unique_id port 207010 username morteza4424 207010 mac 207010 bytes_out 0 207010 bytes_in 0 207010 station_ip 83.122.222.50 207010 port 1 207010 unique_id port 207010 remote_ip 10.8.0.30 207011 username meysam 207011 mac 207011 bytes_out 0 207011 bytes_in 0 207011 station_ip 188.158.49.121 207011 port 13 207011 unique_id port 207011 remote_ip 10.8.1.6 207024 username barzegar 207024 mac 207024 bytes_out 1834153 207024 bytes_in 10226992 207024 station_ip 5.120.123.101 207024 port 1 207024 unique_id port 207024 remote_ip 10.8.0.34 207030 username kalantary6037 207030 mac 207030 bytes_out 142809 207030 bytes_in 163518 207030 station_ip 37.129.159.17 207030 port 7 207030 unique_id port 207030 remote_ip 10.8.1.98 207033 username yaghobi 207033 mac 207033 bytes_out 2066330 207033 bytes_in 11448299 207033 station_ip 37.129.38.63 207033 port 1 207033 unique_id port 207033 remote_ip 10.8.0.106 207035 username kalantary6037 207035 mac 207035 bytes_out 263749 207035 bytes_in 517653 207035 station_ip 37.129.159.17 207035 port 10 207035 unique_id port 207035 remote_ip 10.8.1.98 207036 username kamali3 207036 unique_id port 207036 terminate_cause User-Request 207036 bytes_out 157798 207036 bytes_in 4083856 207036 station_ip 83.122.29.99 207036 port 15730311 207036 nas_port_type Virtual 207036 remote_ip 5.5.5.211 207037 username abdolahi0311 207037 mac 207037 bytes_out 0 207037 bytes_in 0 207037 station_ip 5.120.132.232 207037 port 3 207037 unique_id port 207039 username pourshad 207039 kill_reason Another user logged on this global unique id 207039 mac 207039 bytes_out 0 207039 bytes_in 0 207039 station_ip 5.119.204.50 207039 port 11 207039 unique_id port 207039 remote_ip 10.8.1.10 207044 username godarzi 207044 kill_reason Another user logged on this global unique id 207044 mac 207044 bytes_out 0 207044 bytes_in 0 207044 station_ip 5.202.98.177 207044 port 1 207044 unique_id port 207044 remote_ip 10.8.0.74 207046 username mosi 207046 mac 207046 bytes_out 709321 207046 bytes_in 905756 207046 station_ip 89.32.106.253 207046 port 5 207046 unique_id port 207046 remote_ip 10.8.1.54 207049 username daryaei1233 207049 mac 207049 bytes_out 0 207049 bytes_in 0 207049 station_ip 83.123.216.136 207049 port 14 207049 unique_id port 207049 remote_ip 10.8.0.6 207056 username daryaei1233 207056 mac 207056 bytes_out 0 207056 bytes_in 0 207056 station_ip 83.123.216.136 207056 port 9 207056 unique_id port 207056 remote_ip 10.8.0.6 207057 username daryaei1233 207057 mac 207057 bytes_out 9841 207057 bytes_in 34447 207057 station_ip 83.123.216.136 207057 port 9 207057 unique_id port 207057 remote_ip 10.8.0.6 207060 username godarzi 207060 mac 207060 bytes_out 0 207060 bytes_in 0 207060 station_ip 5.202.98.177 207060 port 1 207060 unique_id port 207062 username mohsenaskari 207062 mac 207062 bytes_out 0 207062 bytes_in 0 207062 station_ip 46.225.215.0 207062 port 9 207062 unique_id port 207062 remote_ip 10.8.0.118 207068 username yaghobi 207068 mac 207068 bytes_out 0 207068 bytes_in 0 207068 station_ip 37.129.2.63 207068 port 11 207068 unique_id port 207068 remote_ip 10.8.0.106 207077 username daryaei1233 207002 username barzegar 207002 mac 207002 bytes_out 0 207002 bytes_in 0 207002 station_ip 5.120.123.101 207002 port 1 207002 unique_id port 207002 remote_ip 10.8.1.30 207004 username farhad3 207004 kill_reason Another user logged on this global unique id 207004 mac 207004 bytes_out 0 207004 bytes_in 0 207004 station_ip 5.120.60.48 207004 port 11 207004 unique_id port 207005 username nekheei 207005 mac 207005 bytes_out 0 207005 bytes_in 0 207005 station_ip 5.119.140.212 207005 port 1 207005 unique_id port 207005 remote_ip 10.8.1.74 207007 username nekheei 207007 mac 207007 bytes_out 0 207007 bytes_in 0 207007 station_ip 5.119.140.212 207007 port 13 207007 unique_id port 207007 remote_ip 10.8.1.74 207013 username farhad3 207013 mac 207013 bytes_out 0 207013 bytes_in 0 207013 station_ip 5.120.60.48 207013 port 11 207013 unique_id port 207017 username yarmohamadi7916 207017 kill_reason Another user logged on this global unique id 207017 mac 207017 bytes_out 0 207017 bytes_in 0 207017 station_ip 5.120.126.93 207017 port 1 207017 unique_id port 207017 remote_ip 10.8.1.34 207018 username abdolahi0311 207018 kill_reason Another user logged on this global unique id 207018 mac 207018 bytes_out 0 207018 bytes_in 0 207018 station_ip 5.120.132.232 207018 port 3 207018 unique_id port 207018 remote_ip 10.8.1.114 207019 username godarzi 207019 mac 207019 bytes_out 724994 207019 bytes_in 1478073 207019 station_ip 5.202.98.177 207019 port 1 207019 unique_id port 207019 remote_ip 10.8.0.74 207022 username kalantary6037 207022 mac 207022 bytes_out 0 207022 bytes_in 0 207022 station_ip 37.129.166.233 207022 port 10 207022 unique_id port 207022 remote_ip 10.8.1.98 207023 username dortaj3792 207023 mac 207023 bytes_out 0 207023 bytes_in 0 207023 station_ip 5.120.133.77 207023 port 7 207023 unique_id port 207023 remote_ip 10.8.1.62 207027 username godarzi 207027 mac 207027 bytes_out 0 207027 bytes_in 0 207027 station_ip 5.202.98.177 207027 port 7 207027 unique_id port 207027 remote_ip 10.8.1.66 207028 username meghdad1616 207028 mac 207028 bytes_out 0 207028 bytes_in 0 207028 station_ip 5.120.8.214 207028 port 10 207028 unique_id port 207028 remote_ip 10.8.1.122 207032 username barzegar 207032 mac 207032 bytes_out 0 207032 bytes_in 0 207032 station_ip 5.120.123.101 207032 port 7 207032 unique_id port 207032 remote_ip 10.8.1.30 207034 username dortaj3792 207034 mac 207034 bytes_out 0 207034 bytes_in 0 207034 station_ip 5.120.133.77 207034 port 7 207034 unique_id port 207034 remote_ip 10.8.1.62 207038 username mosi 207038 mac 207038 bytes_out 145473 207038 bytes_in 683243 207038 station_ip 2.183.56.173 207038 port 5 207038 unique_id port 207038 remote_ip 10.8.1.54 207042 username kalantary6037 207042 mac 207042 bytes_out 0 207042 bytes_in 0 207042 station_ip 37.129.159.17 207042 port 3 207042 unique_id port 207042 remote_ip 10.8.1.98 207045 username aminvpn 207045 mac 207045 bytes_out 2835605 207045 bytes_in 16627952 207045 station_ip 37.129.25.195 207045 port 9 207045 unique_id port 207045 remote_ip 10.8.0.58 207050 username yaghobi 207050 mac 207050 bytes_out 0 207050 bytes_in 0 207050 station_ip 37.129.9.107 207050 port 16 207050 unique_id port 207050 remote_ip 10.8.0.106 207054 username barzegar 207054 mac 207054 bytes_out 0 207054 bytes_in 0 207054 station_ip 5.120.123.101 207054 port 10 207054 unique_id port 207054 remote_ip 10.8.1.30 207058 username kalantary6037 207058 mac 207006 username barzegar 207006 mac 207006 bytes_out 8671 207006 bytes_in 26308 207006 station_ip 5.120.123.101 207006 port 1 207006 unique_id port 207006 remote_ip 10.8.1.30 207008 username nekheei 207008 mac 207008 bytes_out 0 207008 bytes_in 0 207008 station_ip 5.119.140.212 207008 port 1 207008 unique_id port 207008 remote_ip 10.8.1.74 207009 username nekheei 207009 kill_reason Another user logged on this global unique id 207009 mac 207009 bytes_out 0 207009 bytes_in 0 207009 station_ip 5.119.140.212 207009 port 1 207009 unique_id port 207009 remote_ip 10.8.1.74 207012 username godarzi 207012 mac 207012 bytes_out 3843125 207012 bytes_in 30691478 207012 station_ip 5.202.98.177 207012 port 12 207012 unique_id port 207012 remote_ip 10.8.1.66 207014 username meysam 207014 mac 207014 bytes_out 0 207014 bytes_in 0 207014 station_ip 188.159.252.57 207014 port 6 207014 unique_id port 207014 remote_ip 10.8.0.102 207015 username barzegar 207015 mac 207015 bytes_out 1506343 207015 bytes_in 21003432 207015 station_ip 5.120.123.101 207015 port 1 207015 unique_id port 207015 remote_ip 10.8.0.34 207016 username dorani4942 207016 kill_reason Another user logged on this global unique id 207016 mac 207016 bytes_out 0 207016 bytes_in 0 207016 station_ip 37.129.28.87 207016 port 10 207016 unique_id port 207020 username dorani4942 207020 mac 207020 bytes_out 0 207020 bytes_in 0 207020 station_ip 37.129.28.87 207020 port 10 207020 unique_id port 207021 username barzegar 207021 mac 207021 bytes_out 0 207021 bytes_in 0 207021 station_ip 5.120.123.101 207021 port 10 207021 unique_id port 207021 remote_ip 10.8.1.30 207025 username mirzaei6046 207025 kill_reason Another user logged on this global unique id 207025 mac 207025 bytes_out 0 207025 bytes_in 0 207025 station_ip 5.120.102.234 207025 port 8 207025 unique_id port 207025 remote_ip 10.8.1.110 207026 username mosi 207026 mac 207026 bytes_out 0 207026 bytes_in 0 207026 station_ip 2.183.56.173 207026 port 5 207026 unique_id port 207026 remote_ip 10.8.1.54 207029 username morteza4424 207029 mac 207029 bytes_out 0 207029 bytes_in 0 207029 station_ip 83.122.227.66 207029 port 6 207029 unique_id port 207029 remote_ip 10.8.0.30 207031 username meysam 207031 mac 207031 bytes_out 2228148 207031 bytes_in 48712348 207031 station_ip 188.159.252.57 207031 port 11 207031 unique_id port 207031 remote_ip 10.8.1.6 207040 username dortaj3792 207040 mac 207040 bytes_out 0 207040 bytes_in 0 207040 station_ip 5.120.133.77 207040 port 7 207040 unique_id port 207040 remote_ip 10.8.1.62 207041 username seyedrezaei2572 207041 mac 207041 bytes_out 351663 207041 bytes_in 1533895 207041 station_ip 83.122.143.135 207041 port 6 207041 unique_id port 207041 remote_ip 10.8.0.110 207043 username barzegar 207043 mac 207043 bytes_out 0 207043 bytes_in 0 207043 station_ip 5.120.123.101 207043 port 14 207043 unique_id port 207043 remote_ip 10.8.0.34 207047 username kalantary6037 207047 mac 207047 bytes_out 94678 207047 bytes_in 119426 207047 station_ip 37.129.159.17 207047 port 3 207047 unique_id port 207047 remote_ip 10.8.1.98 207048 username ahmadi1 207048 mac 207048 bytes_out 290626 207048 bytes_in 5454322 207048 station_ip 83.123.71.89 207048 port 9 207048 unique_id port 207048 remote_ip 10.8.0.114 207051 username sabaghnezhad 207051 mac 207051 bytes_out 250396 207051 bytes_in 236590 207051 station_ip 83.123.150.127 207051 port 15 207051 unique_id port 207051 remote_ip 10.8.0.94 207052 username daryaei1233 207052 mac 207052 bytes_out 0 207052 bytes_in 0 207052 station_ip 83.123.216.136 207052 port 5 207052 unique_id port 207052 remote_ip 10.8.1.14 207053 username yaghobi 207053 mac 207053 bytes_out 0 207053 bytes_in 0 207053 station_ip 37.129.9.107 207053 port 9 207053 unique_id port 207053 remote_ip 10.8.0.106 207055 username daryaei1233 207055 mac 207055 bytes_out 15151 207055 bytes_in 30484 207055 station_ip 83.123.216.136 207055 port 5 207055 unique_id port 207055 remote_ip 10.8.1.14 207059 username barzegar 207059 mac 207059 bytes_out 0 207059 bytes_in 0 207059 station_ip 5.120.123.101 207059 port 9 207059 unique_id port 207059 remote_ip 10.8.0.34 207061 username dortaj3792 207061 mac 207061 bytes_out 0 207061 bytes_in 0 207061 station_ip 5.120.133.77 207061 port 7 207061 unique_id port 207061 remote_ip 10.8.1.62 207064 username daryaei1233 207064 mac 207064 bytes_out 0 207064 bytes_in 0 207064 station_ip 83.123.216.136 207064 port 9 207064 unique_id port 207064 remote_ip 10.8.0.6 207065 username kalantary6037 207065 mac 207065 bytes_out 177562 207065 bytes_in 585780 207065 station_ip 37.129.159.17 207065 port 10 207065 unique_id port 207065 remote_ip 10.8.1.98 207067 username barzegar 207067 mac 207067 bytes_out 0 207067 bytes_in 0 207067 station_ip 5.120.123.101 207067 port 1 207067 unique_id port 207067 remote_ip 10.8.1.30 207069 username daryaei1233 207069 mac 207069 bytes_out 0 207069 bytes_in 0 207069 station_ip 83.123.216.136 207069 port 1 207069 unique_id port 207069 remote_ip 10.8.1.14 207073 username mirzaei6046 207073 kill_reason Another user logged on this global unique id 207073 mac 207073 bytes_out 0 207073 bytes_in 0 207073 station_ip 5.120.102.234 207073 port 8 207073 unique_id port 207075 username daryaei1233 207075 mac 207075 bytes_out 0 207075 bytes_in 0 207075 station_ip 83.123.216.136 207075 port 15 207075 unique_id port 207075 remote_ip 10.8.0.6 207079 username daryaei1233 207079 mac 207079 bytes_out 0 207079 bytes_in 0 207079 station_ip 83.123.216.136 207079 port 10 207079 unique_id port 207079 remote_ip 10.8.1.14 207080 username daryaei1233 207080 mac 207080 bytes_out 1644 207080 bytes_in 4983 207080 station_ip 83.123.216.136 207080 port 11 207080 unique_id port 207080 remote_ip 10.8.0.6 207084 username kalantary6037 207084 mac 207084 bytes_out 148486 207084 bytes_in 225020 207084 station_ip 37.129.222.41 207084 port 7 207084 unique_id port 207084 remote_ip 10.8.1.98 207088 username nilufarrajaei 207088 mac 207088 bytes_out 0 207088 bytes_in 0 207088 station_ip 37.129.91.142 207088 port 9 207088 unique_id port 207088 remote_ip 10.8.0.50 207090 username daryaei1233 207090 mac 207090 bytes_out 0 207090 bytes_in 0 207090 station_ip 83.123.216.136 207090 port 9 207090 unique_id port 207090 remote_ip 10.8.0.6 207091 username daryaei1233 207091 mac 207091 bytes_out 0 207091 bytes_in 0 207091 station_ip 83.123.216.136 207091 port 6 207091 unique_id port 207091 remote_ip 10.8.0.6 207093 username barzegar 207093 mac 207093 bytes_out 2583 207093 bytes_in 4976 207093 station_ip 5.120.123.101 207093 port 7 207093 unique_id port 207093 remote_ip 10.8.1.30 207098 username daryaei1233 207098 mac 207098 bytes_out 20491 207098 bytes_in 37274 207098 station_ip 83.123.216.136 207098 port 15 207098 unique_id port 207098 remote_ip 10.8.0.6 207100 username alipour1506 207100 mac 207100 bytes_out 0 207058 bytes_out 0 207058 bytes_in 0 207058 station_ip 37.129.159.17 207058 port 5 207058 unique_id port 207058 remote_ip 10.8.1.98 207063 username daryaei1233 207063 mac 207063 bytes_out 7098 207063 bytes_in 13001 207063 station_ip 83.123.216.136 207063 port 1 207063 unique_id port 207063 remote_ip 10.8.1.14 207066 username pourshad 207066 mac 207066 bytes_out 0 207066 bytes_in 0 207066 station_ip 5.119.204.50 207066 port 11 207066 unique_id port 207070 username meysam 207070 kill_reason Another user logged on this global unique id 207070 mac 207070 bytes_out 0 207070 bytes_in 0 207070 station_ip 188.159.252.57 207070 port 5 207070 unique_id port 207070 remote_ip 10.8.1.6 207071 username daryaei1233 207071 mac 207071 bytes_out 0 207071 bytes_in 0 207071 station_ip 83.123.216.136 207071 port 14 207071 unique_id port 207071 remote_ip 10.8.0.6 207072 username daryaei1233 207072 mac 207072 bytes_out 0 207072 bytes_in 0 207072 station_ip 83.123.216.136 207072 port 15 207072 unique_id port 207072 remote_ip 10.8.0.6 207074 username daryaei1233 207074 mac 207074 bytes_out 0 207074 bytes_in 0 207074 station_ip 83.123.216.136 207074 port 15 207074 unique_id port 207074 remote_ip 10.8.0.6 207076 username daryaei1233 207076 mac 207076 bytes_out 0 207076 bytes_in 0 207076 station_ip 83.123.216.136 207076 port 15 207076 unique_id port 207076 remote_ip 10.8.0.6 207078 username barzegar 207078 mac 207078 bytes_out 0 207078 bytes_in 0 207078 station_ip 5.120.123.101 207078 port 10 207078 unique_id port 207078 remote_ip 10.8.1.30 207087 username daryaei1233 207087 mac 207087 bytes_out 0 207087 bytes_in 0 207087 station_ip 83.123.216.136 207087 port 11 207087 unique_id port 207087 remote_ip 10.8.0.6 207092 username daryaei1233 207092 mac 207092 bytes_out 0 207092 bytes_in 0 207092 station_ip 83.123.216.136 207092 port 7 207092 unique_id port 207092 remote_ip 10.8.1.14 207094 username kalantary6037 207094 mac 207094 bytes_out 72045 207094 bytes_in 186733 207094 station_ip 37.129.222.41 207094 port 10 207094 unique_id port 207094 remote_ip 10.8.1.98 207095 username meysam 207095 kill_reason Another user logged on this global unique id 207095 mac 207095 bytes_out 0 207095 bytes_in 0 207095 station_ip 188.159.252.57 207095 port 5 207095 unique_id port 207095 remote_ip 10.8.1.6 207096 username mosi 207096 mac 207096 bytes_out 717259 207096 bytes_in 1072574 207096 station_ip 89.32.106.253 207096 port 3 207096 unique_id port 207096 remote_ip 10.8.1.54 207097 username barzegar 207097 mac 207097 bytes_out 0 207097 bytes_in 0 207097 station_ip 5.120.123.101 207097 port 7 207097 unique_id port 207097 remote_ip 10.8.1.30 207102 username meysam 207102 mac 207102 bytes_out 0 207102 bytes_in 0 207102 station_ip 188.159.252.57 207102 port 5 207102 unique_id port 207110 username nilufarrajaei 207110 mac 207110 bytes_out 523873 207110 bytes_in 2102023 207110 station_ip 37.129.91.142 207110 port 5 207110 unique_id port 207110 remote_ip 10.8.1.126 207115 username barzegar 207115 mac 207115 bytes_out 0 207115 bytes_in 0 207115 station_ip 5.120.123.101 207115 port 7 207115 unique_id port 207115 remote_ip 10.8.1.30 207116 username kalantary6037 207116 mac 207116 bytes_out 0 207116 bytes_in 0 207116 station_ip 37.129.222.41 207116 port 7 207116 unique_id port 207116 remote_ip 10.8.1.98 207117 username mosavi0713 207117 kill_reason Another user logged on this global unique id 207117 mac 207117 bytes_out 0 207077 kill_reason Another user logged on this global unique id 207077 mac 207077 bytes_out 0 207077 bytes_in 0 207077 station_ip 83.123.216.136 207077 port 11 207077 unique_id port 207081 username daryaei1233 207081 mac 207081 bytes_out 0 207081 bytes_in 0 207081 station_ip 83.123.216.136 207081 port 10 207081 unique_id port 207081 remote_ip 10.8.1.14 207082 username daryaei1233 207082 mac 207082 bytes_out 0 207082 bytes_in 0 207082 station_ip 83.123.216.136 207082 port 11 207082 unique_id port 207082 remote_ip 10.8.0.6 207083 username alipour1506 207083 mac 207083 bytes_out 2907718 207083 bytes_in 34474283 207083 station_ip 37.129.169.218 207083 port 6 207083 unique_id port 207083 remote_ip 10.8.0.46 207085 username meysam 207085 mac 207085 bytes_out 0 207085 bytes_in 0 207085 station_ip 188.159.252.57 207085 port 5 207085 unique_id port 207086 username alipour1506 207086 mac 207086 bytes_out 32665 207086 bytes_in 55609 207086 station_ip 37.129.169.218 207086 port 11 207086 unique_id port 207086 remote_ip 10.8.0.46 207089 username alipour1506 207089 mac 207089 bytes_out 0 207089 bytes_in 0 207089 station_ip 37.129.169.218 207089 port 6 207089 unique_id port 207089 remote_ip 10.8.0.46 207099 username meysam 207099 kill_reason Another user logged on this global unique id 207099 mac 207099 bytes_out 0 207099 bytes_in 0 207099 station_ip 188.159.252.57 207099 port 5 207099 unique_id port 207103 username mosi 207103 mac 207103 bytes_out 0 207103 bytes_in 0 207103 station_ip 89.32.106.253 207103 port 3 207103 unique_id port 207103 remote_ip 10.8.1.54 207105 username barzegar 207105 mac 207105 bytes_out 0 207105 bytes_in 0 207105 station_ip 5.120.123.101 207105 port 10 207105 unique_id port 207105 remote_ip 10.8.1.30 207106 username mosi 207106 mac 207106 bytes_out 0 207106 bytes_in 0 207106 station_ip 89.32.106.253 207106 port 3 207106 unique_id port 207106 remote_ip 10.8.1.54 207108 username barzegar 207108 mac 207108 bytes_out 5025 207108 bytes_in 6555 207108 station_ip 5.120.123.101 207108 port 6 207108 unique_id port 207108 remote_ip 10.8.0.34 207109 username kalantary6037 207109 mac 207109 bytes_out 39675 207109 bytes_in 43575 207109 station_ip 37.129.222.41 207109 port 3 207109 unique_id port 207109 remote_ip 10.8.1.98 207111 username nilufarrajaei 207111 mac 207111 bytes_out 34812 207111 bytes_in 38142 207111 station_ip 37.129.91.142 207111 port 6 207111 unique_id port 207111 remote_ip 10.8.0.50 207113 username mosi 207113 mac 207113 bytes_out 0 207113 bytes_in 0 207113 station_ip 89.32.106.253 207113 port 7 207113 unique_id port 207113 remote_ip 10.8.1.54 207121 username saeeddamghani 207121 kill_reason Another user logged on this global unique id 207121 mac 207121 bytes_out 0 207121 bytes_in 0 207121 station_ip 217.60.218.93 207121 port 12 207121 unique_id port 207121 remote_ip 10.8.1.130 207125 username nilufarrajaei 207125 mac 207125 bytes_out 0 207125 bytes_in 0 207125 station_ip 37.129.91.142 207125 port 3 207125 unique_id port 207125 remote_ip 10.8.1.126 207126 username mosi 207126 mac 207126 bytes_out 300005 207126 bytes_in 419943 207126 station_ip 89.32.106.253 207126 port 5 207126 unique_id port 207126 remote_ip 10.8.1.54 207128 username saeeddamghani 207128 kill_reason Another user logged on this global unique id 207128 mac 207128 bytes_out 0 207128 bytes_in 0 207128 station_ip 217.60.218.93 207128 port 12 207128 unique_id port 207130 username ebrahimpour3 207130 kill_reason Relative expiration date has reached 207100 bytes_in 0 207100 station_ip 37.129.169.218 207100 port 6 207100 unique_id port 207100 remote_ip 10.8.0.46 207101 username nilufarrajaei 207101 mac 207101 bytes_out 0 207101 bytes_in 0 207101 station_ip 37.129.91.142 207101 port 11 207101 unique_id port 207101 remote_ip 10.8.0.50 207104 username kalantary6037 207104 mac 207104 bytes_out 414914 207104 bytes_in 1050634 207104 station_ip 37.129.222.41 207104 port 7 207104 unique_id port 207104 remote_ip 10.8.1.98 207107 username mosi 207107 mac 207107 bytes_out 102396 207107 bytes_in 138416 207107 station_ip 89.32.106.253 207107 port 3 207107 unique_id port 207107 remote_ip 10.8.1.54 207112 username sabaghnezhad 207112 mac 207112 bytes_out 78360 207112 bytes_in 356347 207112 station_ip 37.129.186.185 207112 port 11 207112 unique_id port 207112 remote_ip 10.8.0.94 207114 username nilufarrajaei 207114 mac 207114 bytes_out 14831 207114 bytes_in 24780 207114 station_ip 37.129.91.142 207114 port 3 207114 unique_id port 207114 remote_ip 10.8.1.126 207118 username barzegar 207118 mac 207118 bytes_out 20693 207118 bytes_in 59901 207118 station_ip 5.120.123.101 207118 port 10 207118 unique_id port 207118 remote_ip 10.8.1.30 207119 username pourshad 207119 mac 207119 bytes_out 0 207119 bytes_in 0 207119 station_ip 5.119.204.50 207119 port 14 207119 unique_id port 207119 remote_ip 10.8.0.122 207122 username kalantary6037 207122 mac 207122 bytes_out 38593 207122 bytes_in 35538 207122 station_ip 37.129.201.41 207122 port 7 207122 unique_id port 207122 remote_ip 10.8.1.98 207124 username nilufarrajaei 207124 mac 207124 bytes_out 0 207124 bytes_in 0 207124 station_ip 37.129.91.142 207124 port 3 207124 unique_id port 207124 remote_ip 10.8.1.126 207127 username nilufarrajaei 207127 mac 207127 bytes_out 55438 207127 bytes_in 80216 207127 station_ip 37.129.91.142 207127 port 3 207127 unique_id port 207127 remote_ip 10.8.1.126 207129 username dortaj3792 207129 mac 207129 bytes_out 44019680 207129 bytes_in 99022230 207129 station_ip 5.120.133.77 207129 port 1 207129 unique_id port 207129 remote_ip 10.8.1.62 207132 username saeeddamghani 207132 kill_reason Another user logged on this global unique id 207132 mac 207132 bytes_out 0 207132 bytes_in 0 207132 station_ip 217.60.218.93 207132 port 12 207132 unique_id port 207133 username barzegar 207133 mac 207133 bytes_out 2877 207133 bytes_in 5937 207133 station_ip 5.120.123.101 207133 port 10 207133 unique_id port 207133 remote_ip 10.8.1.30 207134 username alipour1506 207134 kill_reason Another user logged on this global unique id 207134 mac 207134 bytes_out 0 207134 bytes_in 0 207134 station_ip 37.129.169.218 207134 port 15 207134 unique_id port 207134 remote_ip 10.8.0.46 207139 username saeeddamghani 207139 kill_reason Another user logged on this global unique id 207139 mac 207139 bytes_out 0 207139 bytes_in 0 207139 station_ip 217.60.218.93 207139 port 12 207139 unique_id port 207145 username rashidi4690 207145 mac 207145 bytes_out 1793778 207145 bytes_in 14420090 207145 station_ip 5.119.66.151 207145 port 3 207145 unique_id port 207145 remote_ip 10.8.1.50 207148 username mosi 207148 mac 207148 bytes_out 0 207148 bytes_in 0 207148 station_ip 89.47.132.190 207148 port 3 207148 unique_id port 207148 remote_ip 10.8.1.54 207149 username saeeddamghani 207149 kill_reason Another user logged on this global unique id 207149 mac 207149 bytes_out 0 207149 bytes_in 0 207149 station_ip 217.60.218.93 207149 port 12 207149 unique_id port 207151 username mehrpoyan101 207151 mac 207117 bytes_in 0 207117 station_ip 83.123.28.253 207117 port 16 207117 unique_id port 207117 remote_ip 10.8.0.22 207120 username rahim 207120 unique_id port 207120 terminate_cause User-Request 207120 bytes_out 1831735 207120 bytes_in 30060377 207120 station_ip 86.57.80.105 207120 port 15730316 207120 nas_port_type Virtual 207120 remote_ip 5.5.5.178 207123 username barzegar 207123 mac 207123 bytes_out 0 207123 bytes_in 0 207123 station_ip 5.120.123.101 207123 port 7 207123 unique_id port 207123 remote_ip 10.8.1.30 207131 username mosavi0713 207131 mac 207131 bytes_out 0 207131 bytes_in 0 207131 station_ip 83.123.28.253 207131 port 16 207131 unique_id port 207136 username rezaei 207136 mac 207136 bytes_out 48544 207136 bytes_in 163020 207136 station_ip 5.119.225.50 207136 port 10 207136 unique_id port 207136 remote_ip 10.8.1.58 207138 username meysam 207138 mac 207138 bytes_out 1320525 207138 bytes_in 25094556 207138 station_ip 188.159.252.57 207138 port 13 207138 unique_id port 207138 remote_ip 10.8.1.6 207140 username khademi 207140 mac 207140 bytes_out 0 207140 bytes_in 0 207140 station_ip 37.129.98.124 207140 port 4 207140 unique_id port 207141 username mosi 207141 mac 207141 bytes_out 190627 207141 bytes_in 197890 207141 station_ip 89.32.106.253 207141 port 5 207141 unique_id port 207141 remote_ip 10.8.1.54 207142 username farhad3 207142 mac 207142 bytes_out 1385266 207142 bytes_in 8190516 207142 station_ip 5.120.60.48 207142 port 14 207142 unique_id port 207142 remote_ip 10.8.1.86 207144 username pourshad 207144 mac 207144 bytes_out 141103 207144 bytes_in 1129307 207144 station_ip 5.119.204.50 207144 port 7 207144 unique_id port 207144 remote_ip 10.8.1.10 207146 username mosi 207146 mac 207146 bytes_out 3115 207146 bytes_in 6043 207146 station_ip 89.32.106.253 207146 port 10 207146 unique_id port 207146 remote_ip 10.8.1.54 207150 username mehrpoyan101 207150 mac 207150 bytes_out 68052 207150 bytes_in 235680 207150 station_ip 5.119.34.44 207150 port 3 207150 unique_id port 207150 remote_ip 10.8.1.18 207152 username nilufarrajaei 207152 mac 207152 bytes_out 2133 207152 bytes_in 5663 207152 station_ip 37.129.54.108 207152 port 13 207152 unique_id port 207152 remote_ip 10.8.1.126 207154 username barzegar 207154 mac 207154 bytes_out 0 207154 bytes_in 0 207154 station_ip 5.120.123.101 207154 port 16 207154 unique_id port 207154 remote_ip 10.8.1.30 207156 username kalantary6037 207156 mac 207156 bytes_out 0 207156 bytes_in 0 207156 station_ip 37.129.153.125 207156 port 3 207156 unique_id port 207156 remote_ip 10.8.1.98 207158 username saeeddamghani 207158 kill_reason Another user logged on this global unique id 207158 mac 207158 bytes_out 0 207158 bytes_in 0 207158 station_ip 217.60.218.93 207158 port 12 207158 unique_id port 207164 username kalantary6037 207164 mac 207164 bytes_out 194955 207164 bytes_in 401007 207164 station_ip 37.129.153.125 207164 port 14 207164 unique_id port 207164 remote_ip 10.8.1.98 207165 username alipour1506 207165 mac 207165 bytes_out 0 207165 bytes_in 0 207165 station_ip 37.129.169.218 207165 port 1 207165 unique_id port 207165 remote_ip 10.8.0.46 207173 username meysam 207173 kill_reason Another user logged on this global unique id 207173 mac 207173 bytes_out 0 207173 bytes_in 0 207173 station_ip 188.159.252.57 207173 port 5 207173 unique_id port 207173 remote_ip 10.8.1.6 207176 username mehrpoyan101 207176 mac 207176 bytes_out 0 207176 bytes_in 0 207176 station_ip 5.119.71.131 207130 mac 207130 bytes_out 0 207130 bytes_in 0 207130 station_ip 37.129.5.155 207130 port 1 207130 unique_id port 207135 username ghaderpour6649 207135 mac 207135 bytes_out 0 207135 bytes_in 0 207135 station_ip 83.122.65.159 207135 port 1 207135 unique_id port 207135 remote_ip 10.8.0.130 207137 username barzegar 207137 mac 207137 bytes_out 3996 207137 bytes_in 5955 207137 station_ip 5.120.123.101 207137 port 15 207137 unique_id port 207137 remote_ip 10.8.1.30 207143 username khademi 207143 mac 207143 bytes_out 191605 207143 bytes_in 997247 207143 station_ip 37.129.98.124 207143 port 1 207143 unique_id port 207143 remote_ip 10.8.0.26 207147 username barzegar 207147 mac 207147 bytes_out 0 207147 bytes_in 0 207147 station_ip 5.120.123.101 207147 port 13 207147 unique_id port 207147 remote_ip 10.8.1.30 207153 username aminvpn 207153 unique_id port 207153 terminate_cause Lost-Carrier 207153 bytes_out 860979 207153 bytes_in 11019650 207153 station_ip 5.160.113.6 207153 port 15730318 207153 nas_port_type Virtual 207153 remote_ip 5.5.5.182 207157 username mehrpoyan101 207157 mac 207157 bytes_out 156906 207157 bytes_in 1213781 207157 station_ip 5.119.34.44 207157 port 13 207157 unique_id port 207157 remote_ip 10.8.1.18 207159 username mosi 207159 mac 207159 bytes_out 0 207159 bytes_in 0 207159 station_ip 5.233.51.115 207159 port 14 207159 unique_id port 207159 remote_ip 10.8.1.54 207160 username barzegar 207160 mac 207160 bytes_out 3938 207160 bytes_in 6343 207160 station_ip 5.120.123.101 207160 port 15 207160 unique_id port 207160 remote_ip 10.8.1.30 207163 username alipour1506 207163 mac 207163 bytes_out 3165282 207163 bytes_in 29868046 207163 station_ip 37.129.169.218 207163 port 1 207163 unique_id port 207163 remote_ip 10.8.0.46 207166 username mehrpoyan101 207166 mac 207166 bytes_out 0 207166 bytes_in 0 207166 station_ip 5.119.34.44 207166 port 6 207166 unique_id port 207166 remote_ip 10.8.0.134 207168 username pourshad 207168 mac 207168 bytes_out 0 207168 bytes_in 0 207168 station_ip 5.119.204.50 207168 port 7 207168 unique_id port 207168 remote_ip 10.8.1.10 207169 username kalantary6037 207169 mac 207169 bytes_out 87172 207169 bytes_in 112397 207169 station_ip 37.129.153.125 207169 port 3 207169 unique_id port 207169 remote_ip 10.8.1.98 207171 username barzegar 207171 kill_reason Another user logged on this global unique id 207171 mac 207171 bytes_out 0 207171 bytes_in 0 207171 station_ip 5.120.123.101 207171 port 15 207171 unique_id port 207171 remote_ip 10.8.1.30 207175 username meysam 207175 mac 207175 bytes_out 0 207175 bytes_in 0 207175 station_ip 188.159.252.57 207175 port 5 207175 unique_id port 207178 username nilufarrajaei 207178 mac 207178 bytes_out 215498 207178 bytes_in 565590 207178 station_ip 83.123.230.183 207178 port 6 207178 unique_id port 207178 remote_ip 10.8.0.50 207179 username mehrpoyan101 207179 mac 207179 bytes_out 3614971 207179 bytes_in 33242922 207179 station_ip 5.120.117.176 207179 port 1 207179 unique_id port 207179 remote_ip 10.8.0.134 207180 username yaghobi 207180 mac 207180 bytes_out 0 207180 bytes_in 0 207180 station_ip 37.129.4.63 207180 port 1 207180 unique_id port 207180 remote_ip 10.8.0.106 207183 username kalantary6037 207183 mac 207183 bytes_out 0 207183 bytes_in 0 207183 station_ip 37.129.215.41 207183 port 10 207183 unique_id port 207183 remote_ip 10.8.1.98 207187 username mehrpoyan101 207187 mac 207187 bytes_out 42709 207151 bytes_out 1461135 207151 bytes_in 11757223 207151 station_ip 5.119.34.44 207151 port 15 207151 unique_id port 207151 remote_ip 10.8.1.18 207155 username barzegar8595 207155 mac 207155 bytes_out 1462402 207155 bytes_in 11759524 207155 station_ip 5.202.15.47 207155 port 15 207155 unique_id port 207155 remote_ip 10.8.1.26 207161 username saeeddamghani 207161 mac 207161 bytes_out 0 207161 bytes_in 0 207161 station_ip 217.60.218.93 207161 port 12 207161 unique_id port 207162 username mehrpoyan101 207162 mac 207162 bytes_out 581464 207162 bytes_in 5734650 207162 station_ip 5.119.34.44 207162 port 3 207162 unique_id port 207162 remote_ip 10.8.1.18 207167 username mosi 207167 mac 207167 bytes_out 0 207167 bytes_in 0 207167 station_ip 37.156.156.179 207167 port 4 207167 unique_id port 207167 remote_ip 10.8.0.38 207170 username alipour1506 207170 mac 207170 bytes_out 0 207170 bytes_in 0 207170 station_ip 37.129.169.218 207170 port 11 207170 unique_id port 207170 remote_ip 10.8.0.46 207172 username rashidi4690 207172 mac 207172 bytes_out 1991129 207172 bytes_in 7683304 207172 station_ip 5.119.66.151 207172 port 10 207172 unique_id port 207172 remote_ip 10.8.1.50 207174 username mehrpoyan101 207174 mac 207174 bytes_out 3534673 207174 bytes_in 33144808 207174 station_ip 5.119.127.185 207174 port 1 207174 unique_id port 207174 remote_ip 10.8.0.134 207177 username barzegar 207177 mac 207177 bytes_out 0 207177 bytes_in 0 207177 station_ip 5.120.123.101 207177 port 15 207177 unique_id port 207184 username mehrpoyan101 207184 mac 207184 bytes_out 0 207184 bytes_in 0 207184 station_ip 5.120.55.90 207184 port 12 207184 unique_id port 207184 remote_ip 10.8.1.18 207189 username barzegar 207189 mac 207189 bytes_out 0 207189 bytes_in 0 207189 station_ip 5.120.123.101 207189 port 14 207189 unique_id port 207189 remote_ip 10.8.1.30 207191 username mehrpoyan101 207191 mac 207191 bytes_out 31230 207191 bytes_in 32846 207191 station_ip 5.120.55.90 207191 port 15 207191 unique_id port 207191 remote_ip 10.8.1.18 207193 username sabaghnezhad 207193 mac 207193 bytes_out 0 207193 bytes_in 0 207193 station_ip 83.122.147.35 207193 port 6 207193 unique_id port 207193 remote_ip 10.8.0.94 207199 username mehrpoyan101 207199 mac 207199 bytes_out 75294 207199 bytes_in 242511 207199 station_ip 5.120.55.90 207199 port 14 207199 unique_id port 207199 remote_ip 10.8.1.18 207202 username seyedrezaei2572 207202 mac 207202 bytes_out 220948 207202 bytes_in 156645 207202 station_ip 83.122.246.199 207202 port 1 207202 unique_id port 207202 remote_ip 10.8.0.110 207206 username barzegar 207206 mac 207206 bytes_out 0 207206 bytes_in 0 207206 station_ip 5.120.123.101 207206 port 1 207206 unique_id port 207206 remote_ip 10.8.1.30 207209 username kalantary6037 207209 kill_reason Another user logged on this global unique id 207209 mac 207209 bytes_out 0 207209 bytes_in 0 207209 station_ip 37.129.222.241 207209 port 1 207209 unique_id port 207209 remote_ip 10.8.1.98 207211 username mehrpoyan101 207211 mac 207211 bytes_out 0 207211 bytes_in 0 207211 station_ip 5.120.55.90 207211 port 10 207211 unique_id port 207211 remote_ip 10.8.1.18 207214 username mehrpoyan101 207214 mac 207214 bytes_out 0 207214 bytes_in 0 207214 station_ip 5.120.55.90 207214 port 10 207214 unique_id port 207214 remote_ip 10.8.1.18 207218 username mehrpoyan101 207218 mac 207218 bytes_out 57857 207218 bytes_in 85024 207218 station_ip 5.120.55.90 207218 port 1 207176 port 11 207176 unique_id port 207176 remote_ip 10.8.0.134 207181 username hosseine 207181 mac 207181 bytes_out 0 207181 bytes_in 0 207181 station_ip 83.123.77.9 207181 port 9 207181 unique_id port 207181 remote_ip 10.8.0.126 207182 username mehrpoyan101 207182 mac 207182 bytes_out 35126 207182 bytes_in 89013 207182 station_ip 5.120.55.90 207182 port 5 207182 unique_id port 207182 remote_ip 10.8.1.18 207185 username barzegar 207185 mac 207185 bytes_out 0 207185 bytes_in 0 207185 station_ip 5.120.123.101 207185 port 10 207185 unique_id port 207185 remote_ip 10.8.1.30 207186 username nilufarrajaei 207186 mac 207186 bytes_out 315995 207186 bytes_in 2009910 207186 station_ip 83.123.230.183 207186 port 6 207186 unique_id port 207186 remote_ip 10.8.0.50 207188 username mehrpoyan101 207188 mac 207188 bytes_out 0 207188 bytes_in 0 207188 station_ip 5.120.55.90 207188 port 5 207188 unique_id port 207188 remote_ip 10.8.1.18 207190 username kalantary6037 207190 mac 207190 bytes_out 5829 207190 bytes_in 8941 207190 station_ip 37.129.215.41 207190 port 12 207190 unique_id port 207190 remote_ip 10.8.1.98 207196 username rashidi4690 207196 mac 207196 bytes_out 503494 207196 bytes_in 2710294 207196 station_ip 5.120.52.33 207196 port 5 207196 unique_id port 207196 remote_ip 10.8.1.50 207200 username seyedrezaei2572 207200 mac 207200 bytes_out 181777 207200 bytes_in 124527 207200 station_ip 83.122.246.199 207200 port 1 207200 unique_id port 207200 remote_ip 10.8.0.110 207204 username godarzi 207204 mac 207204 bytes_out 1636135 207204 bytes_in 12023661 207204 station_ip 5.120.132.191 207204 port 3 207204 unique_id port 207204 remote_ip 10.8.1.66 207205 username aminvpn 207205 unique_id port 207205 terminate_cause Lost-Carrier 207205 bytes_out 874724 207205 bytes_in 10696418 207205 station_ip 5.160.113.6 207205 port 15730321 207205 nas_port_type Virtual 207205 remote_ip 5.5.5.182 207208 username mehrpoyan101 207208 mac 207208 bytes_out 0 207208 bytes_in 0 207208 station_ip 5.120.55.90 207208 port 10 207208 unique_id port 207208 remote_ip 10.8.1.18 207212 username sabaghnezhad 207212 mac 207212 bytes_out 42792 207212 bytes_in 54544 207212 station_ip 83.122.147.35 207212 port 1 207212 unique_id port 207212 remote_ip 10.8.0.94 207213 username meysam 207213 kill_reason Another user logged on this global unique id 207213 mac 207213 bytes_out 0 207213 bytes_in 0 207213 station_ip 188.159.252.57 207213 port 13 207213 unique_id port 207213 remote_ip 10.8.1.6 207215 username aminvpns6 207215 kill_reason Another user logged on this global unique id 207215 mac 207215 bytes_out 0 207215 bytes_in 0 207215 station_ip 5.119.146.28 207215 port 12 207215 unique_id port 207215 remote_ip 10.8.1.134 207216 username dorani4942 207216 mac 207216 bytes_out 0 207216 bytes_in 0 207216 station_ip 83.122.25.187 207216 port 3 207216 unique_id port 207216 remote_ip 10.8.1.118 207217 username pourshad 207217 mac 207217 bytes_out 0 207217 bytes_in 0 207217 station_ip 5.119.204.50 207217 port 7 207217 unique_id port 207217 remote_ip 10.8.1.10 207223 username yaghobi 207223 mac 207223 bytes_out 91401 207223 bytes_in 143841 207223 station_ip 37.129.4.63 207223 port 6 207223 unique_id port 207223 remote_ip 10.8.0.106 207226 username yaghobi 207226 mac 207226 bytes_out 11191 207226 bytes_in 14383 207226 station_ip 37.129.4.63 207226 port 9 207226 unique_id port 207226 remote_ip 10.8.0.106 207228 username yaghobi 207228 mac 207228 bytes_out 7087 207187 bytes_in 125315 207187 station_ip 5.120.55.90 207187 port 5 207187 unique_id port 207187 remote_ip 10.8.1.18 207192 username dortaj3792 207192 kill_reason Another user logged on this global unique id 207192 mac 207192 bytes_out 0 207192 bytes_in 0 207192 station_ip 5.120.133.77 207192 port 1 207192 unique_id port 207192 remote_ip 10.8.1.62 207194 username mehrpoyan101 207194 mac 207194 bytes_out 20457 207194 bytes_in 14160 207194 station_ip 5.120.55.90 207194 port 12 207194 unique_id port 207194 remote_ip 10.8.1.18 207195 username mehrpoyan101 207195 mac 207195 bytes_out 0 207195 bytes_in 0 207195 station_ip 5.120.55.90 207195 port 14 207195 unique_id port 207195 remote_ip 10.8.1.18 207197 username barzegar8595 207197 mac 207197 bytes_out 712653 207197 bytes_in 6166388 207197 station_ip 5.202.8.29 207197 port 13 207197 unique_id port 207197 remote_ip 10.8.1.26 207198 username seyedrezaei2572 207198 mac 207198 bytes_out 158695 207198 bytes_in 102165 207198 station_ip 83.122.246.199 207198 port 1 207198 unique_id port 207198 remote_ip 10.8.0.110 207201 username nilufarrajaei 207201 mac 207201 bytes_out 470848 207201 bytes_in 3531743 207201 station_ip 83.123.230.183 207201 port 10 207201 unique_id port 207201 remote_ip 10.8.1.126 207203 username mehrpoyan101 207203 mac 207203 bytes_out 10409 207203 bytes_in 9470 207203 station_ip 5.120.55.90 207203 port 14 207203 unique_id port 207203 remote_ip 10.8.1.18 207207 username mehrpoyan101 207207 mac 207207 bytes_out 0 207207 bytes_in 0 207207 station_ip 5.120.55.90 207207 port 10 207207 unique_id port 207207 remote_ip 10.8.1.18 207210 username sabaghnezhad 207210 mac 207210 bytes_out 190332 207210 bytes_in 446777 207210 station_ip 83.122.147.35 207210 port 9 207210 unique_id port 207210 remote_ip 10.8.0.94 207219 username aminvpns6 207219 mac 207219 bytes_out 0 207219 bytes_in 0 207219 station_ip 5.119.146.28 207219 port 12 207219 unique_id port 207222 username barzegar 207222 mac 207222 bytes_out 6194 207222 bytes_in 8691 207222 station_ip 5.120.123.101 207222 port 9 207222 unique_id port 207222 remote_ip 10.8.0.34 207224 username pourshad 207224 mac 207224 bytes_out 0 207224 bytes_in 0 207224 station_ip 5.119.204.50 207224 port 3 207224 unique_id port 207224 remote_ip 10.8.1.10 207227 username mehrpoyan101 207227 mac 207227 bytes_out 0 207227 bytes_in 0 207227 station_ip 5.120.55.90 207227 port 1 207227 unique_id port 207227 remote_ip 10.8.1.18 207232 username yaghobi 207232 mac 207232 bytes_out 0 207232 bytes_in 0 207232 station_ip 37.129.4.63 207232 port 1 207232 unique_id port 207232 remote_ip 10.8.0.106 207236 username mosi 207236 mac 207236 bytes_out 949010 207236 bytes_in 9930071 207236 station_ip 5.233.51.115 207236 port 6 207236 unique_id port 207236 remote_ip 10.8.0.38 207237 username kalantary6037 207237 mac 207237 bytes_out 0 207237 bytes_in 0 207237 station_ip 37.129.184.113 207237 port 5 207237 unique_id port 207237 remote_ip 10.8.1.98 207238 username godarzi 207238 kill_reason Another user logged on this global unique id 207238 mac 207238 bytes_out 0 207238 bytes_in 0 207238 station_ip 5.120.132.191 207238 port 1 207238 unique_id port 207238 remote_ip 10.8.1.66 207242 username nilufarrajaei 207242 kill_reason Another user logged on this global unique id 207242 mac 207242 bytes_out 0 207242 bytes_in 0 207242 station_ip 83.123.230.183 207242 port 14 207242 unique_id port 207242 remote_ip 10.8.1.126 207247 username kalantary6037 207247 mac 207218 unique_id port 207218 remote_ip 10.8.1.18 207220 username mehrpoyan101 207220 mac 207220 bytes_out 71355 207220 bytes_in 97046 207220 station_ip 5.120.55.90 207220 port 1 207220 unique_id port 207220 remote_ip 10.8.1.18 207221 username meysam 207221 mac 207221 bytes_out 0 207221 bytes_in 0 207221 station_ip 188.159.252.57 207221 port 13 207221 unique_id port 207225 username mehrpoyan101 207225 mac 207225 bytes_out 80079 207225 bytes_in 102361 207225 station_ip 5.120.55.90 207225 port 1 207225 unique_id port 207225 remote_ip 10.8.1.18 207230 username yaghobi 207230 mac 207230 bytes_out 11758 207230 bytes_in 23038 207230 station_ip 37.129.4.63 207230 port 9 207230 unique_id port 207230 remote_ip 10.8.0.106 207231 username kalantary6037 207231 mac 207231 bytes_out 0 207231 bytes_in 0 207231 station_ip 37.129.184.113 207231 port 7 207231 unique_id port 207231 remote_ip 10.8.1.98 207233 username barzegar 207233 mac 207233 bytes_out 0 207233 bytes_in 0 207233 station_ip 5.120.123.101 207233 port 1 207233 unique_id port 207233 remote_ip 10.8.1.30 207234 username rashidi4690 207234 mac 207234 bytes_out 0 207234 bytes_in 0 207234 station_ip 5.120.52.33 207234 port 10 207234 unique_id port 207234 remote_ip 10.8.1.50 207235 username barzegar 207235 mac 207235 bytes_out 0 207235 bytes_in 0 207235 station_ip 5.120.123.101 207235 port 5 207235 unique_id port 207235 remote_ip 10.8.1.30 207239 username aminvpns6 207239 mac 207239 bytes_out 0 207239 bytes_in 0 207239 station_ip 5.119.146.28 207239 port 5 207239 unique_id port 207239 remote_ip 10.8.1.134 207241 username yaghobi 207241 mac 207241 bytes_out 95581 207241 bytes_in 84460 207241 station_ip 37.129.4.63 207241 port 9 207241 unique_id port 207241 remote_ip 10.8.0.106 207244 username sabaghnezhad 207244 mac 207244 bytes_out 205126 207244 bytes_in 402835 207244 station_ip 83.122.147.35 207244 port 11 207244 unique_id port 207244 remote_ip 10.8.0.94 207246 username sabaghnezhad 207246 mac 207246 bytes_out 2304 207246 bytes_in 6635 207246 station_ip 83.122.147.35 207246 port 9 207246 unique_id port 207246 remote_ip 10.8.0.94 207248 username barzegar 207248 mac 207248 bytes_out 0 207248 bytes_in 0 207248 station_ip 5.120.123.101 207248 port 9 207248 unique_id port 207248 remote_ip 10.8.0.34 207249 username kalantary6037 207249 mac 207249 bytes_out 0 207249 bytes_in 0 207249 station_ip 37.129.224.57 207249 port 5 207249 unique_id port 207249 remote_ip 10.8.1.98 207250 username barzegar 207250 mac 207250 bytes_out 0 207250 bytes_in 0 207250 station_ip 5.120.123.101 207250 port 5 207250 unique_id port 207250 remote_ip 10.8.1.30 207253 username yaghobi 207253 mac 207253 bytes_out 721926 207253 bytes_in 4687629 207253 station_ip 37.129.4.63 207253 port 6 207253 unique_id port 207253 remote_ip 10.8.0.106 207254 username kalantary6037 207254 mac 207254 bytes_out 0 207254 bytes_in 0 207254 station_ip 37.129.224.57 207254 port 5 207254 unique_id port 207254 remote_ip 10.8.1.98 207255 username barzegar 207255 mac 207255 bytes_out 0 207255 bytes_in 0 207255 station_ip 5.120.123.101 207255 port 3 207255 unique_id port 207255 remote_ip 10.8.1.30 207257 username alirezaza 207257 unique_id port 207257 terminate_cause User-Request 207257 bytes_out 664 207257 bytes_in 240 207257 station_ip 5.119.228.206 207257 port 15730334 207257 nas_port_type Virtual 207257 remote_ip 5.5.5.151 207259 username kamali3 207228 bytes_in 9920 207228 station_ip 37.129.4.63 207228 port 6 207228 unique_id port 207228 remote_ip 10.8.0.106 207229 username barzegar8595 207229 mac 207229 bytes_out 0 207229 bytes_in 0 207229 station_ip 5.202.8.29 207229 port 5 207229 unique_id port 207229 remote_ip 10.8.1.26 207240 username amirzadeh1339 207240 unique_id port 207240 terminate_cause User-Request 207240 bytes_out 282621 207240 bytes_in 1786070 207240 station_ip 37.27.26.208 207240 port 15730327 207240 nas_port_type Virtual 207240 remote_ip 5.5.5.255 207243 username esmaeilkazemi 207243 mac 207243 bytes_out 30052 207243 bytes_in 169686 207243 station_ip 37.129.191.219 207243 port 9 207243 unique_id port 207243 remote_ip 10.8.0.66 207245 username barzegar 207245 mac 207245 bytes_out 0 207245 bytes_in 0 207245 station_ip 5.120.123.101 207245 port 14 207245 unique_id port 207245 remote_ip 10.8.0.34 207256 username kamali3 207256 unique_id port 207256 terminate_cause User-Request 207256 bytes_out 141676 207256 bytes_in 5172411 207256 station_ip 83.122.40.92 207256 port 15730332 207256 nas_port_type Virtual 207256 remote_ip 5.5.5.148 207261 username pourshad 207261 mac 207261 bytes_out 46647 207261 bytes_in 52644 207261 station_ip 5.119.204.50 207261 port 9 207261 unique_id port 207261 remote_ip 10.8.0.122 207262 username barzegar 207262 mac 207262 bytes_out 0 207262 bytes_in 0 207262 station_ip 5.120.123.101 207262 port 12 207262 unique_id port 207262 remote_ip 10.8.1.30 207263 username aminvpn 207263 unique_id port 207263 terminate_cause Lost-Carrier 207263 bytes_out 175384 207263 bytes_in 280636 207263 station_ip 5.160.113.6 207263 port 15730326 207263 nas_port_type Virtual 207263 remote_ip 5.5.5.182 207271 username nilufarrajaei 207271 mac 207271 bytes_out 0 207271 bytes_in 0 207271 station_ip 83.123.230.183 207271 port 3 207271 unique_id port 207271 remote_ip 10.8.1.126 207278 username pourshad 207278 mac 207278 bytes_out 0 207278 bytes_in 0 207278 station_ip 5.119.204.50 207278 port 10 207278 unique_id port 207278 remote_ip 10.8.1.10 207279 username aminvpn 207279 unique_id port 207279 terminate_cause Lost-Carrier 207279 bytes_out 647967 207279 bytes_in 12851810 207279 station_ip 5.160.113.6 207279 port 15730337 207279 nas_port_type Virtual 207279 remote_ip 5.5.5.182 207281 username barzegar 207281 mac 207281 bytes_out 0 207281 bytes_in 0 207281 station_ip 5.120.123.101 207281 port 10 207281 unique_id port 207281 remote_ip 10.8.1.30 207282 username ahmadi1 207282 mac 207282 bytes_out 370839 207282 bytes_in 3001342 207282 station_ip 83.123.71.89 207282 port 1 207282 unique_id port 207282 remote_ip 10.8.0.114 207286 username mosi 207286 mac 207286 bytes_out 5820060 207286 bytes_in 40073267 207286 station_ip 2.183.130.117 207286 port 7 207286 unique_id port 207286 remote_ip 10.8.1.54 207290 username nilufarrajaei 207290 kill_reason Another user logged on this global unique id 207290 mac 207290 bytes_out 0 207290 bytes_in 0 207290 station_ip 83.123.230.183 207290 port 3 207290 unique_id port 207290 remote_ip 10.8.1.126 207291 username barzegar 207291 mac 207291 bytes_out 0 207291 bytes_in 0 207291 station_ip 5.120.123.101 207291 port 7 207291 unique_id port 207291 remote_ip 10.8.1.30 207294 username sekonji0496 207294 kill_reason Another user logged on this global unique id 207294 mac 207294 bytes_out 0 207294 bytes_in 0 207294 station_ip 37.129.234.247 207294 port 11 207294 unique_id port 207294 remote_ip 10.8.0.70 207295 username kalantary6037 207295 mac 207295 bytes_out 0 207295 bytes_in 0 207247 bytes_out 0 207247 bytes_in 0 207247 station_ip 37.129.224.57 207247 port 5 207247 unique_id port 207247 remote_ip 10.8.1.98 207251 username mirzaei6046 207251 kill_reason Another user logged on this global unique id 207251 mac 207251 bytes_out 0 207251 bytes_in 0 207251 station_ip 5.120.102.234 207251 port 8 207251 unique_id port 207252 username pourshad 207252 mac 207252 bytes_out 0 207252 bytes_in 0 207252 station_ip 5.119.204.50 207252 port 3 207252 unique_id port 207252 remote_ip 10.8.1.10 207258 username nilufarrajaei 207258 mac 207258 bytes_out 44784 207258 bytes_in 116577 207258 station_ip 83.123.230.183 207258 port 3 207258 unique_id port 207258 remote_ip 10.8.1.126 207260 username mammad 207260 unique_id port 207260 terminate_cause User-Request 207260 bytes_out 7206978 207260 bytes_in 146104701 207260 station_ip 5.233.65.112 207260 port 15730323 207260 nas_port_type Virtual 207260 remote_ip 5.5.5.193 207264 username barzegar8595 207264 mac 207264 bytes_out 0 207264 bytes_in 0 207264 station_ip 46.225.209.99 207264 port 10 207264 unique_id port 207264 remote_ip 10.8.1.26 207265 username kharazmi2920 207265 mac 207265 bytes_out 699276 207265 bytes_in 3608227 207265 station_ip 83.122.132.5 207265 port 1 207265 unique_id port 207265 remote_ip 10.8.0.54 207266 username kalantary6037 207266 mac 207266 bytes_out 0 207266 bytes_in 0 207266 station_ip 37.129.196.141 207266 port 10 207266 unique_id port 207266 remote_ip 10.8.1.98 207269 username barzegar 207269 mac 207269 bytes_out 0 207269 bytes_in 0 207269 station_ip 5.120.123.101 207269 port 10 207269 unique_id port 207269 remote_ip 10.8.1.30 207270 username esmaeilkazemi 207270 mac 207270 bytes_out 13207 207270 bytes_in 39951 207270 station_ip 37.129.191.219 207270 port 11 207270 unique_id port 207270 remote_ip 10.8.0.66 207276 username kalantary6037 207276 mac 207276 bytes_out 0 207276 bytes_in 0 207276 station_ip 37.129.158.101 207276 port 5 207276 unique_id port 207276 remote_ip 10.8.1.98 207277 username yaghobi 207277 mac 207277 bytes_out 680256 207277 bytes_in 5389570 207277 station_ip 37.129.107.43 207277 port 1 207277 unique_id port 207277 remote_ip 10.8.0.106 207280 username pourshad 207280 kill_reason Another user logged on this global unique id 207280 mac 207280 bytes_out 0 207280 bytes_in 0 207280 station_ip 5.119.204.50 207280 port 1 207280 unique_id port 207280 remote_ip 10.8.1.10 207288 username alipour1506 207288 mac 207288 bytes_out 1412042 207288 bytes_in 8547031 207288 station_ip 37.129.169.218 207288 port 4 207288 unique_id port 207288 remote_ip 10.8.0.46 207289 username alipour1506 207289 mac 207289 bytes_out 0 207289 bytes_in 0 207289 station_ip 37.129.169.218 207289 port 1 207289 unique_id port 207289 remote_ip 10.8.0.46 207292 username yaghobi 207292 mac 207292 bytes_out 0 207292 bytes_in 0 207292 station_ip 37.129.107.43 207292 port 15 207292 unique_id port 207292 remote_ip 10.8.0.106 207293 username mohammadjavad 207293 kill_reason Another user logged on this global unique id 207293 mac 207293 bytes_out 0 207293 bytes_in 0 207293 station_ip 37.129.45.235 207293 port 14 207293 unique_id port 207296 username mirzaei6046 207296 kill_reason Another user logged on this global unique id 207296 mac 207296 bytes_out 0 207296 bytes_in 0 207296 station_ip 5.120.102.234 207296 port 8 207296 unique_id port 207298 username hosseine 207298 mac 207298 bytes_out 399286 207298 bytes_in 3991807 207298 station_ip 83.123.70.241 207298 port 1 207298 unique_id port 207259 unique_id port 207259 terminate_cause User-Request 207259 bytes_out 1001278 207259 bytes_in 66228826 207259 station_ip 83.122.203.215 207259 port 15730333 207259 nas_port_type Virtual 207259 remote_ip 5.5.5.149 207267 username pourshad 207267 mac 207267 bytes_out 0 207267 bytes_in 0 207267 station_ip 5.119.204.50 207267 port 5 207267 unique_id port 207267 remote_ip 10.8.1.10 207268 username esmaeilkazemi 207268 mac 207268 bytes_out 0 207268 bytes_in 0 207268 station_ip 37.129.191.219 207268 port 9 207268 unique_id port 207268 remote_ip 10.8.0.66 207272 username pourshad 207272 mac 207272 bytes_out 0 207272 bytes_in 0 207272 station_ip 5.119.204.50 207272 port 5 207272 unique_id port 207272 remote_ip 10.8.1.10 207273 username barzegar 207273 mac 207273 bytes_out 0 207273 bytes_in 0 207273 station_ip 5.120.123.101 207273 port 5 207273 unique_id port 207273 remote_ip 10.8.1.30 207274 username alirezaza 207274 unique_id port 207274 terminate_cause Lost-Carrier 207274 bytes_out 151817 207274 bytes_in 498092 207274 station_ip 5.119.110.76 207274 port 15730335 207274 nas_port_type Virtual 207274 remote_ip 5.5.5.152 207275 username aminvpn 207275 unique_id port 207275 terminate_cause Lost-Carrier 207275 bytes_out 462108 207275 bytes_in 1991918 207275 station_ip 83.122.172.252 207275 port 15730329 207275 nas_port_type Virtual 207275 remote_ip 5.5.5.255 207283 username ahmadi1 207283 mac 207283 bytes_out 0 207283 bytes_in 0 207283 station_ip 83.123.71.89 207283 port 1 207283 unique_id port 207283 remote_ip 10.8.0.114 207284 username ahmadi1 207284 mac 207284 bytes_out 0 207284 bytes_in 0 207284 station_ip 83.123.71.89 207284 port 1 207284 unique_id port 207284 remote_ip 10.8.1.138 207285 username mohammadjavad 207285 kill_reason Another user logged on this global unique id 207285 mac 207285 bytes_out 0 207285 bytes_in 0 207285 station_ip 37.129.45.235 207285 port 14 207285 unique_id port 207285 remote_ip 10.8.0.138 207287 username mosi 207287 kill_reason Another user logged on this global unique id 207287 mac 207287 bytes_out 0 207287 bytes_in 0 207287 station_ip 5.134.184.216 207287 port 1 207287 unique_id port 207287 remote_ip 10.8.1.54 207297 username mohammadjavad 207297 kill_reason Another user logged on this global unique id 207297 mac 207297 bytes_out 0 207297 bytes_in 0 207297 station_ip 37.129.45.235 207297 port 14 207297 unique_id port 207299 username mammad 207299 unique_id port 207299 terminate_cause User-Request 207299 bytes_out 2595809 207299 bytes_in 43953659 207299 station_ip 5.233.65.112 207299 port 15730338 207299 nas_port_type Virtual 207299 remote_ip 5.5.5.193 207305 username pourshad 207305 mac 207305 bytes_out 107106 207305 bytes_in 1016155 207305 station_ip 5.119.204.50 207305 port 1 207305 unique_id port 207305 remote_ip 10.8.1.10 207309 username nilufarrajaei 207309 mac 207309 bytes_out 0 207309 bytes_in 0 207309 station_ip 83.123.230.183 207309 port 10 207309 unique_id port 207309 remote_ip 10.8.1.126 207312 username kalantary6037 207312 mac 207312 bytes_out 0 207312 bytes_in 0 207312 station_ip 37.129.132.109 207312 port 3 207312 unique_id port 207312 remote_ip 10.8.1.98 207317 username yaghobi 207317 mac 207317 bytes_out 0 207317 bytes_in 0 207317 station_ip 37.129.107.43 207317 port 3 207317 unique_id port 207317 remote_ip 10.8.1.106 207319 username mohammadjavad 207319 kill_reason Another user logged on this global unique id 207319 mac 207319 bytes_out 0 207319 bytes_in 0 207319 station_ip 37.129.45.235 207319 port 10 207319 unique_id port 207319 remote_ip 10.8.1.142 207295 station_ip 37.129.128.153 207295 port 10 207295 unique_id port 207295 remote_ip 10.8.1.98 207300 username nilufarrajaei 207300 mac 207300 bytes_out 0 207300 bytes_in 0 207300 station_ip 83.123.230.183 207300 port 3 207300 unique_id port 207303 username sabaghnezhad 207303 mac 207303 bytes_out 0 207303 bytes_in 0 207303 station_ip 83.122.147.35 207303 port 1 207303 unique_id port 207303 remote_ip 10.8.0.94 207304 username barzegar 207304 mac 207304 bytes_out 0 207304 bytes_in 0 207304 station_ip 5.120.123.101 207304 port 3 207304 unique_id port 207304 remote_ip 10.8.1.30 207307 username barzegar 207307 mac 207307 bytes_out 0 207307 bytes_in 0 207307 station_ip 5.120.123.101 207307 port 1 207307 unique_id port 207307 remote_ip 10.8.1.30 207308 username mohammadjavad 207308 kill_reason Another user logged on this global unique id 207308 mac 207308 bytes_out 0 207308 bytes_in 0 207308 station_ip 37.129.45.235 207308 port 14 207308 unique_id port 207310 username barzegar 207310 kill_reason Another user logged on this global unique id 207310 mac 207310 bytes_out 0 207310 bytes_in 0 207310 station_ip 5.120.123.101 207310 port 1 207310 unique_id port 207310 remote_ip 10.8.1.30 207327 username mohammadjavad 207327 kill_reason Another user logged on this global unique id 207327 mac 207327 bytes_out 0 207327 bytes_in 0 207327 station_ip 37.129.45.235 207327 port 12 207327 unique_id port 207327 remote_ip 10.8.1.142 207328 username godarzi 207328 mac 207328 bytes_out 0 207328 bytes_in 0 207328 station_ip 5.202.98.177 207328 port 5 207328 unique_id port 207328 remote_ip 10.8.1.66 207330 username yaghobi 207330 mac 207330 bytes_out 149208 207330 bytes_in 1581458 207330 station_ip 37.129.107.43 207330 port 14 207330 unique_id port 207330 remote_ip 10.8.0.106 207331 username sekonji0496 207331 kill_reason Another user logged on this global unique id 207331 mac 207331 bytes_out 0 207331 bytes_in 0 207331 station_ip 37.129.234.247 207331 port 11 207331 unique_id port 207333 username charkhandaz3496 207333 mac 207333 bytes_out 0 207333 bytes_in 0 207333 station_ip 5.120.159.239 207333 port 3 207333 unique_id port 207333 remote_ip 10.8.1.154 207335 username rahim 207335 mac 207335 bytes_out 3107886 207335 bytes_in 14459368 207335 station_ip 5.119.134.109 207335 port 1 207335 unique_id port 207335 remote_ip 10.8.1.146 207337 username charkhandaz3496 207337 mac 207337 bytes_out 0 207337 bytes_in 0 207337 station_ip 5.120.159.239 207337 port 3 207337 unique_id port 207337 remote_ip 10.8.1.154 207338 username rahim 207338 mac 207338 bytes_out 3148065 207338 bytes_in 14856922 207338 station_ip 5.119.134.109 207338 port 1 207338 unique_id port 207338 remote_ip 10.8.1.146 207339 username kalantary6037 207339 mac 207339 bytes_out 0 207339 bytes_in 0 207339 station_ip 37.129.132.109 207339 port 7 207339 unique_id port 207339 remote_ip 10.8.1.98 207341 username rahim 207341 mac 207341 bytes_out 0 207341 bytes_in 0 207341 station_ip 5.119.134.109 207341 port 1 207341 unique_id port 207341 remote_ip 10.8.1.146 207352 username rahim 207352 mac 207352 bytes_out 0 207352 bytes_in 0 207352 station_ip 5.119.134.109 207352 port 3 207352 unique_id port 207352 remote_ip 10.8.1.146 207355 username dortaj3792 207355 kill_reason Another user logged on this global unique id 207355 mac 207355 bytes_out 0 207355 bytes_in 0 207355 station_ip 5.120.133.77 207355 port 1 207355 unique_id port 207355 remote_ip 10.8.1.62 207359 username charkhandaz3496 207298 remote_ip 10.8.0.126 207301 username barzegar 207301 mac 207301 bytes_out 0 207301 bytes_in 0 207301 station_ip 5.120.123.101 207301 port 3 207301 unique_id port 207301 remote_ip 10.8.1.30 207302 username pourshad 207302 kill_reason Another user logged on this global unique id 207302 mac 207302 bytes_out 0 207302 bytes_in 0 207302 station_ip 5.119.204.50 207302 port 1 207302 unique_id port 207302 remote_ip 10.8.1.10 207306 username sekonji0496 207306 mac 207306 bytes_out 0 207306 bytes_in 0 207306 station_ip 37.129.234.247 207306 port 11 207306 unique_id port 207311 username mohammadjavad 207311 mac 207311 bytes_out 0 207311 bytes_in 0 207311 station_ip 37.129.45.235 207311 port 14 207311 unique_id port 207313 username nilufarrajaei 207313 mac 207313 bytes_out 0 207313 bytes_in 0 207313 station_ip 83.123.230.183 207313 port 1 207313 unique_id port 207313 remote_ip 10.8.0.50 207314 username pourshad 207314 mac 207314 bytes_out 49732 207314 bytes_in 28488 207314 station_ip 5.119.204.50 207314 port 14 207314 unique_id port 207314 remote_ip 10.8.0.122 207315 username alipour1506 207315 kill_reason Another user logged on this global unique id 207315 mac 207315 bytes_out 0 207315 bytes_in 0 207315 station_ip 151.234.21.25 207315 port 4 207315 unique_id port 207315 remote_ip 10.8.0.46 207316 username yaghobi 207316 mac 207316 bytes_out 0 207316 bytes_in 0 207316 station_ip 37.129.107.43 207316 port 7 207316 unique_id port 207316 remote_ip 10.8.1.106 207318 username yaghobi 207318 mac 207318 bytes_out 0 207318 bytes_in 0 207318 station_ip 37.129.107.43 207318 port 3 207318 unique_id port 207318 remote_ip 10.8.1.106 207320 username hamid.e 207320 unique_id port 207320 terminate_cause Lost-Carrier 207320 bytes_out 944684 207320 bytes_in 6199492 207320 station_ip 37.27.24.120 207320 port 15730341 207320 nas_port_type Virtual 207320 remote_ip 5.5.5.156 207321 username pourshad 207321 kill_reason Another user logged on this global unique id 207321 mac 207321 bytes_out 0 207321 bytes_in 0 207321 station_ip 5.119.204.50 207321 port 1 207321 unique_id port 207321 remote_ip 10.8.0.122 207322 username mohammadjavad 207322 mac 207322 bytes_out 0 207322 bytes_in 0 207322 station_ip 37.129.45.235 207322 port 10 207322 unique_id port 207324 username sekonji0496 207324 kill_reason Another user logged on this global unique id 207324 mac 207324 bytes_out 0 207324 bytes_in 0 207324 station_ip 37.129.234.247 207324 port 11 207324 unique_id port 207324 remote_ip 10.8.0.70 207325 username barzegar 207325 mac 207325 bytes_out 0 207325 bytes_in 0 207325 station_ip 5.120.123.101 207325 port 1 207325 unique_id port 207329 username barzegar 207329 mac 207329 bytes_out 0 207329 bytes_in 0 207329 station_ip 5.120.123.101 207329 port 3 207329 unique_id port 207329 remote_ip 10.8.1.30 207336 username godarzi 207336 mac 207336 bytes_out 0 207336 bytes_in 0 207336 station_ip 5.202.98.177 207336 port 5 207336 unique_id port 207336 remote_ip 10.8.1.66 207340 username rahim 207340 mac 207340 bytes_out 0 207340 bytes_in 0 207340 station_ip 5.119.134.109 207340 port 1 207340 unique_id port 207340 remote_ip 10.8.1.146 207344 username nilufarrajaei 207344 mac 207344 bytes_out 0 207344 bytes_in 0 207344 station_ip 83.123.230.183 207344 port 16 207344 unique_id port 207344 remote_ip 10.8.0.50 207345 username barzegar 207345 mac 207345 bytes_out 0 207345 bytes_in 0 207345 station_ip 5.120.123.101 207345 port 5 207345 unique_id port 207323 username yaghobi 207323 mac 207323 bytes_out 0 207323 bytes_in 0 207323 station_ip 37.129.107.43 207323 port 3 207323 unique_id port 207323 remote_ip 10.8.1.106 207326 username kalantary6037 207326 mac 207326 bytes_out 0 207326 bytes_in 0 207326 station_ip 37.129.132.109 207326 port 7 207326 unique_id port 207326 remote_ip 10.8.1.98 207332 username charkhandaz3496 207332 mac 207332 bytes_out 386438 207332 bytes_in 2551921 207332 station_ip 5.120.159.239 207332 port 15 207332 unique_id port 207332 remote_ip 10.8.0.142 207334 username rahim 207334 mac 207334 bytes_out 0 207334 bytes_in 0 207334 station_ip 5.119.134.109 207334 port 1 207334 unique_id port 207334 remote_ip 10.8.1.146 207342 username esmaeilkazemi 207342 mac 207342 bytes_out 1754 207342 bytes_in 4384 207342 station_ip 37.129.191.219 207342 port 15 207342 unique_id port 207342 remote_ip 10.8.0.66 207343 username seyedrezaei2572 207343 mac 207343 bytes_out 0 207343 bytes_in 0 207343 station_ip 83.122.252.163 207343 port 10 207343 unique_id port 207343 remote_ip 10.8.1.150 207346 username kalantary6037 207346 mac 207346 bytes_out 0 207346 bytes_in 0 207346 station_ip 37.129.132.109 207346 port 3 207346 unique_id port 207346 remote_ip 10.8.1.98 207348 username esmaeilkazemi 207348 mac 207348 bytes_out 14529 207348 bytes_in 57384 207348 station_ip 37.129.191.219 207348 port 16 207348 unique_id port 207348 remote_ip 10.8.0.66 207350 username barzegar 207350 mac 207350 bytes_out 0 207350 bytes_in 0 207350 station_ip 5.120.123.101 207350 port 18 207350 unique_id port 207350 remote_ip 10.8.0.34 207351 username rahim 207351 mac 207351 bytes_out 0 207351 bytes_in 0 207351 station_ip 5.119.134.109 207351 port 3 207351 unique_id port 207351 remote_ip 10.8.1.146 207357 username rahim 207357 mac 207357 bytes_out 0 207357 bytes_in 0 207357 station_ip 5.119.134.109 207357 port 7 207357 unique_id port 207357 remote_ip 10.8.1.146 207360 username rahim 207360 mac 207360 bytes_out 0 207360 bytes_in 0 207360 station_ip 5.119.134.109 207360 port 3 207360 unique_id port 207360 remote_ip 10.8.1.146 207362 username rahim 207362 mac 207362 bytes_out 0 207362 bytes_in 0 207362 station_ip 5.119.134.109 207362 port 3 207362 unique_id port 207362 remote_ip 10.8.1.146 207363 username khademi 207363 kill_reason Another user logged on this global unique id 207363 mac 207363 bytes_out 0 207363 bytes_in 0 207363 station_ip 37.129.98.124 207363 port 17 207363 unique_id port 207365 username rahim 207365 mac 207365 bytes_out 0 207365 bytes_in 0 207365 station_ip 5.119.134.109 207365 port 7 207365 unique_id port 207365 remote_ip 10.8.1.146 207366 username barzegar 207366 mac 207366 bytes_out 0 207366 bytes_in 0 207366 station_ip 5.120.123.101 207366 port 7 207366 unique_id port 207366 remote_ip 10.8.1.30 207368 username saeeddamghani 207368 unique_id port 207368 terminate_cause Lost-Carrier 207368 bytes_out 703610 207368 bytes_in 17940922 207368 station_ip 217.60.218.93 207368 port 15730346 207368 nas_port_type Virtual 207368 remote_ip 5.5.5.26 207369 username rahim 207369 mac 207369 bytes_out 0 207369 bytes_in 0 207369 station_ip 5.119.134.109 207369 port 7 207369 unique_id port 207369 remote_ip 10.8.1.146 207374 username mohammadjavad 207374 mac 207374 bytes_out 0 207374 bytes_in 0 207374 station_ip 37.129.45.235 207374 port 10 207374 unique_id port 207374 remote_ip 10.8.1.142 207375 username mostafa_es78 207345 remote_ip 10.8.1.30 207347 username rahim 207347 mac 207347 bytes_out 0 207347 bytes_in 0 207347 station_ip 5.119.134.109 207347 port 5 207347 unique_id port 207347 remote_ip 10.8.1.146 207349 username rahim 207349 mac 207349 bytes_out 0 207349 bytes_in 0 207349 station_ip 5.119.134.109 207349 port 3 207349 unique_id port 207349 remote_ip 10.8.1.146 207353 username khademi 207353 kill_reason Another user logged on this global unique id 207353 mac 207353 bytes_out 0 207353 bytes_in 0 207353 station_ip 37.129.98.124 207353 port 17 207353 unique_id port 207353 remote_ip 10.8.0.26 207354 username rahim 207354 mac 207354 bytes_out 0 207354 bytes_in 0 207354 station_ip 5.119.134.109 207354 port 3 207354 unique_id port 207354 remote_ip 10.8.1.146 207356 username barzegar 207356 mac 207356 bytes_out 0 207356 bytes_in 0 207356 station_ip 5.120.123.101 207356 port 3 207356 unique_id port 207356 remote_ip 10.8.1.30 207358 username kalantary6037 207358 mac 207358 bytes_out 0 207358 bytes_in 0 207358 station_ip 37.129.132.109 207358 port 5 207358 unique_id port 207358 remote_ip 10.8.1.98 207364 username rahim 207364 kill_reason Maximum check online fails reached 207364 mac 207364 bytes_out 0 207364 bytes_in 0 207364 station_ip 5.119.134.109 207364 port 5 207364 unique_id port 207370 username sobhan 207370 unique_id port 207370 terminate_cause Lost-Carrier 207370 bytes_out 786214 207370 bytes_in 11902179 207370 station_ip 5.119.136.178 207370 port 15730345 207370 nas_port_type Virtual 207370 remote_ip 5.5.5.160 207373 username mohammadjavad 207373 mac 207373 bytes_out 14469 207373 bytes_in 13177 207373 station_ip 37.129.45.235 207373 port 15 207373 unique_id port 207373 remote_ip 10.8.0.138 207378 username amirzadeh1339 207378 unique_id port 207378 terminate_cause User-Request 207378 bytes_out 15715439 207378 bytes_in 422247730 207378 station_ip 37.27.46.91 207378 port 15730343 207378 nas_port_type Virtual 207378 remote_ip 5.5.5.157 207379 username pourshad 207379 kill_reason Another user logged on this global unique id 207379 mac 207379 bytes_out 0 207379 bytes_in 0 207379 station_ip 5.119.204.50 207379 port 1 207379 unique_id port 207385 username mohammadjavad 207385 mac 207385 bytes_out 0 207385 bytes_in 0 207385 station_ip 37.129.45.235 207385 port 10 207385 unique_id port 207385 remote_ip 10.8.1.142 207386 username rahim 207386 mac 207386 bytes_out 0 207386 bytes_in 0 207386 station_ip 5.119.134.109 207386 port 12 207386 unique_id port 207386 remote_ip 10.8.1.146 207387 username rahim 207387 mac 207387 bytes_out 0 207387 bytes_in 0 207387 station_ip 5.119.134.109 207387 port 3 207387 unique_id port 207387 remote_ip 10.8.1.146 207390 username mohammadjavad 207390 mac 207390 bytes_out 54495 207390 bytes_in 46100 207390 station_ip 37.129.45.235 207390 port 15 207390 unique_id port 207390 remote_ip 10.8.0.138 207392 username mohammadjavad 207392 mac 207392 bytes_out 0 207392 bytes_in 0 207392 station_ip 83.123.206.116 207392 port 10 207392 unique_id port 207392 remote_ip 10.8.1.142 207395 username barzegar 207395 kill_reason Maximum check online fails reached 207395 mac 207395 bytes_out 0 207395 bytes_in 0 207395 station_ip 5.120.123.101 207395 port 10 207395 unique_id port 207400 username mostafa_es78 207400 kill_reason Another user logged on this global unique id 207400 mac 207400 bytes_out 0 207400 bytes_in 0 207400 station_ip 37.129.71.31 207400 port 6 207400 unique_id port 207403 username barzegar 207403 mac 207403 bytes_out 0 207403 bytes_in 0 207359 kill_reason Another user logged on this global unique id 207359 mac 207359 bytes_out 0 207359 bytes_in 0 207359 station_ip 5.120.159.239 207359 port 14 207359 unique_id port 207359 remote_ip 10.8.0.142 207361 username nilufarrajaei 207361 mac 207361 bytes_out 615332 207361 bytes_in 547474 207361 station_ip 83.123.230.183 207361 port 15 207361 unique_id port 207361 remote_ip 10.8.0.50 207367 username mohammadjavad 207367 mac 207367 bytes_out 0 207367 bytes_in 0 207367 station_ip 37.129.45.235 207367 port 12 207367 unique_id port 207371 username rahim 207371 mac 207371 bytes_out 0 207371 bytes_in 0 207371 station_ip 5.119.134.109 207371 port 7 207371 unique_id port 207371 remote_ip 10.8.1.146 207372 username sekonji0496 207372 mac 207372 bytes_out 0 207372 bytes_in 0 207372 station_ip 37.129.234.247 207372 port 11 207372 unique_id port 207377 username charkhandaz3496 207377 mac 207377 bytes_out 0 207377 bytes_in 0 207377 station_ip 5.120.159.239 207377 port 14 207377 unique_id port 207380 username yaghobi 207380 mac 207380 bytes_out 228866 207380 bytes_in 1396351 207380 station_ip 37.129.51.119 207380 port 15 207380 unique_id port 207380 remote_ip 10.8.0.106 207384 username mirzaei6046 207384 mac 207384 bytes_out 0 207384 bytes_in 0 207384 station_ip 5.120.102.234 207384 port 8 207384 unique_id port 207391 username mohammadjavad 207391 mac 207391 bytes_out 0 207391 bytes_in 0 207391 station_ip 83.123.206.116 207391 port 10 207391 unique_id port 207391 remote_ip 10.8.1.142 207397 username mohammadjavad 207397 mac 207397 bytes_out 28430346 207397 bytes_in 132423838 207397 station_ip 83.123.206.116 207397 port 1 207397 unique_id port 207397 remote_ip 10.8.1.142 207399 username rahim 207399 mac 207399 bytes_out 2005 207399 bytes_in 4920 207399 station_ip 5.119.134.109 207399 port 1 207399 unique_id port 207399 remote_ip 10.8.1.146 207401 username barzegar 207401 kill_reason Maximum check online fails reached 207401 mac 207401 bytes_out 0 207401 bytes_in 0 207401 station_ip 5.120.123.101 207401 port 8 207401 unique_id port 207402 username rashidi4690 207402 mac 207402 bytes_out 0 207402 bytes_in 0 207402 station_ip 5.120.52.33 207402 port 3 207402 unique_id port 207402 remote_ip 10.8.1.50 207405 username barzegar 207405 mac 207405 bytes_out 0 207405 bytes_in 0 207405 station_ip 151.235.94.44 207405 port 15 207405 unique_id port 207405 remote_ip 10.8.0.34 207411 username barzegar 207411 mac 207411 bytes_out 0 207411 bytes_in 0 207411 station_ip 5.120.123.101 207411 port 11 207411 unique_id port 207411 remote_ip 10.8.0.34 207413 username kharazmi2920 207413 mac 207413 bytes_out 4590865 207413 bytes_in 26760572 207413 station_ip 83.122.132.5 207413 port 9 207413 unique_id port 207413 remote_ip 10.8.0.54 207418 username yarmohamadi7916 207418 mac 207418 bytes_out 1371068 207418 bytes_in 4966404 207418 station_ip 5.120.112.191 207418 port 1 207418 unique_id port 207418 remote_ip 10.8.1.34 207420 username yaghobi 207420 mac 207420 bytes_out 1659097 207420 bytes_in 5874588 207420 station_ip 37.129.46.147 207420 port 1 207420 unique_id port 207420 remote_ip 10.8.0.106 207424 username mostafa_es78 207424 kill_reason Another user logged on this global unique id 207424 mac 207424 bytes_out 0 207424 bytes_in 0 207424 station_ip 37.129.71.31 207424 port 15 207424 unique_id port 207424 remote_ip 10.8.0.42 207425 username barzegar 207425 mac 207425 bytes_out 0 207425 bytes_in 0 207375 kill_reason Another user logged on this global unique id 207375 mac 207375 bytes_out 0 207375 bytes_in 0 207375 station_ip 37.129.71.31 207375 port 6 207375 unique_id port 207375 remote_ip 10.8.0.42 207376 username rahim 207376 mac 207376 bytes_out 0 207376 bytes_in 0 207376 station_ip 5.119.134.109 207376 port 18 207376 unique_id port 207376 remote_ip 10.8.0.146 207381 username barzegar 207381 mac 207381 bytes_out 0 207381 bytes_in 0 207381 station_ip 5.120.123.101 207381 port 12 207381 unique_id port 207381 remote_ip 10.8.1.30 207382 username rahim 207382 mac 207382 bytes_out 0 207382 bytes_in 0 207382 station_ip 5.119.134.109 207382 port 12 207382 unique_id port 207382 remote_ip 10.8.1.146 207383 username rashidi4690 207383 mac 207383 bytes_out 0 207383 bytes_in 0 207383 station_ip 5.120.52.33 207383 port 3 207383 unique_id port 207383 remote_ip 10.8.1.50 207388 username hatami 207388 mac 207388 bytes_out 142310 207388 bytes_in 922635 207388 station_ip 83.122.240.153 207388 port 14 207388 unique_id port 207388 remote_ip 10.8.0.14 207389 username mostafa_es78 207389 kill_reason Another user logged on this global unique id 207389 mac 207389 bytes_out 0 207389 bytes_in 0 207389 station_ip 37.129.71.31 207389 port 6 207389 unique_id port 207393 username pourshad 207393 mac 207393 bytes_out 0 207393 bytes_in 0 207393 station_ip 5.119.204.50 207393 port 1 207393 unique_id port 207394 username barzegar 207394 mac 207394 bytes_out 0 207394 bytes_in 0 207394 station_ip 5.120.123.101 207394 port 12 207394 unique_id port 207394 remote_ip 10.8.1.30 207396 username rahim 207396 mac 207396 bytes_out 0 207396 bytes_in 0 207396 station_ip 5.119.134.109 207396 port 8 207396 unique_id port 207396 remote_ip 10.8.1.146 207398 username rahim 207398 mac 207398 bytes_out 0 207398 bytes_in 0 207398 station_ip 5.119.134.109 207398 port 8 207398 unique_id port 207398 remote_ip 10.8.1.146 207404 username iranmanesh4443 207404 mac 207404 bytes_out 32058477 207404 bytes_in 132658464 207404 station_ip 5.119.68.133 207404 port 1 207404 unique_id port 207404 remote_ip 10.8.1.90 207407 username mostafa_es78 207407 mac 207407 bytes_out 0 207407 bytes_in 0 207407 station_ip 37.129.71.31 207407 port 6 207407 unique_id port 207408 username mohammadjavad 207408 mac 207408 bytes_out 82912 207408 bytes_in 87052 207408 station_ip 83.123.206.116 207408 port 14 207408 unique_id port 207408 remote_ip 10.8.0.138 207409 username khalili2 207409 unique_id port 207409 terminate_cause Lost-Carrier 207409 bytes_out 703634 207409 bytes_in 27955073 207409 station_ip 5.120.71.173 207409 port 15730347 207409 nas_port_type Virtual 207409 remote_ip 5.5.5.161 207410 username sekonji0496 207410 mac 207410 bytes_out 2802334 207410 bytes_in 32738075 207410 station_ip 37.129.234.247 207410 port 11 207410 unique_id port 207410 remote_ip 10.8.0.70 207412 username sekonji0496 207412 mac 207412 bytes_out 16539 207412 bytes_in 26494 207412 station_ip 37.129.234.247 207412 port 14 207412 unique_id port 207412 remote_ip 10.8.0.70 207415 username khademi 207415 mac 207415 bytes_out 0 207415 bytes_in 0 207415 station_ip 37.129.98.124 207415 port 17 207415 unique_id port 207417 username hadibarzegar 207417 mac 207417 bytes_out 0 207417 bytes_in 0 207417 station_ip 5.120.115.115 207417 port 7 207417 unique_id port 207421 username barzegar 207421 mac 207421 bytes_out 0 207421 bytes_in 0 207421 station_ip 5.120.123.101 207421 port 7 207403 station_ip 5.120.123.101 207403 port 12 207403 unique_id port 207403 remote_ip 10.8.1.30 207406 username hadibarzegar 207406 kill_reason Another user logged on this global unique id 207406 mac 207406 bytes_out 0 207406 bytes_in 0 207406 station_ip 5.120.115.115 207406 port 7 207406 unique_id port 207406 remote_ip 10.8.1.38 207414 username hadibarzegar 207414 kill_reason Another user logged on this global unique id 207414 mac 207414 bytes_out 0 207414 bytes_in 0 207414 station_ip 5.120.115.115 207414 port 7 207414 unique_id port 207416 username rashidi4690 207416 mac 207416 bytes_out 0 207416 bytes_in 0 207416 station_ip 5.119.99.122 207416 port 3 207416 unique_id port 207416 remote_ip 10.8.1.50 207419 username barzegar 207419 mac 207419 bytes_out 0 207419 bytes_in 0 207419 station_ip 5.120.123.101 207419 port 3 207419 unique_id port 207419 remote_ip 10.8.1.30 207422 username khademi 207422 kill_reason Another user logged on this global unique id 207422 mac 207422 bytes_out 0 207422 bytes_in 0 207422 station_ip 37.129.98.124 207422 port 14 207422 unique_id port 207422 remote_ip 10.8.0.26 207426 username godarzi 207426 kill_reason Another user logged on this global unique id 207426 mac 207426 bytes_out 0 207426 bytes_in 0 207426 station_ip 5.202.98.177 207426 port 15 207426 unique_id port 207426 remote_ip 10.8.0.74 207427 username barzegar 207427 mac 207427 bytes_out 0 207427 bytes_in 0 207427 station_ip 5.120.123.101 207427 port 15 207427 unique_id port 207427 remote_ip 10.8.1.30 207428 username mostafa_es78 207428 mac 207428 bytes_out 37409 207428 bytes_in 26658 207428 station_ip 37.129.71.31 207428 port 1 207428 unique_id port 207428 remote_ip 10.8.0.42 207429 username farhad3 207429 mac 207429 bytes_out 0 207429 bytes_in 0 207429 station_ip 5.120.60.48 207429 port 7 207429 unique_id port 207429 remote_ip 10.8.1.86 207430 username barzegar 207430 mac 207430 bytes_out 0 207430 bytes_in 0 207430 station_ip 5.120.123.101 207430 port 15 207430 unique_id port 207430 remote_ip 10.8.1.30 207431 username morteza4424 207431 kill_reason Another user logged on this global unique id 207431 mac 207431 bytes_out 0 207431 bytes_in 0 207431 station_ip 113.203.105.5 207431 port 17 207431 unique_id port 207431 remote_ip 10.8.0.30 207432 username nilufarrajaei 207432 kill_reason Another user logged on this global unique id 207432 mac 207432 bytes_out 0 207432 bytes_in 0 207432 station_ip 83.123.230.183 207432 port 16 207432 unique_id port 207432 remote_ip 10.8.0.50 207435 username seyedrezaei2572 207435 mac 207435 bytes_out 0 207435 bytes_in 0 207435 station_ip 83.123.175.16 207435 port 1 207435 unique_id port 207435 remote_ip 10.8.1.150 207437 username arash 207437 kill_reason Relative expiration date has reached 207437 mac 207437 bytes_out 0 207437 bytes_in 0 207437 station_ip 37.27.20.156 207437 port 1 207437 unique_id port 207439 username arash 207439 kill_reason Relative expiration date has reached 207439 mac 207439 bytes_out 0 207439 bytes_in 0 207439 station_ip 37.27.20.156 207439 port 6 207439 unique_id port 207440 username arash 207440 kill_reason Relative expiration date has reached 207440 mac 207440 bytes_out 0 207440 bytes_in 0 207440 station_ip 37.27.20.156 207440 port 6 207440 unique_id port 207444 username barzegar 207444 mac 207444 bytes_out 1229298 207444 bytes_in 12931466 207444 station_ip 5.120.123.101 207444 port 1 207444 unique_id port 207444 remote_ip 10.8.1.30 207449 username farhad3 207449 kill_reason Another user logged on this global unique id 207449 mac 207449 bytes_out 0 207449 bytes_in 0 207421 unique_id port 207421 remote_ip 10.8.1.30 207423 username farhad3 207423 mac 207423 bytes_out 553449 207423 bytes_in 1741336 207423 station_ip 5.120.60.48 207423 port 7 207423 unique_id port 207423 remote_ip 10.8.1.86 207434 username arash 207434 kill_reason Relative expiration date has reached 207434 mac 207434 bytes_out 0 207434 bytes_in 0 207434 station_ip 37.27.20.156 207434 port 17 207434 unique_id port 207436 username mohammadjavad 207436 mac 207436 bytes_out 184528 207436 bytes_in 514400 207436 station_ip 83.123.206.116 207436 port 6 207436 unique_id port 207436 remote_ip 10.8.0.138 207438 username dortaj3792 207438 mac 207438 bytes_out 1414479 207438 bytes_in 9166310 207438 station_ip 5.119.128.161 207438 port 15 207438 unique_id port 207438 remote_ip 10.8.1.62 207443 username arash 207443 kill_reason Relative expiration date has reached 207443 mac 207443 bytes_out 0 207443 bytes_in 0 207443 station_ip 37.27.20.156 207443 port 15 207443 unique_id port 207446 username arash 207446 kill_reason Relative expiration date has reached 207446 mac 207446 bytes_out 0 207446 bytes_in 0 207446 station_ip 37.27.20.156 207446 port 19 207446 unique_id port 207450 username morteza4424 207450 kill_reason Another user logged on this global unique id 207450 mac 207450 bytes_out 0 207450 bytes_in 0 207450 station_ip 113.203.105.5 207450 port 17 207450 unique_id port 207453 username meysam 207453 kill_reason Another user logged on this global unique id 207453 mac 207453 bytes_out 0 207453 bytes_in 0 207453 station_ip 188.158.51.157 207453 port 18 207453 unique_id port 207453 remote_ip 10.8.0.102 207456 username arash 207456 kill_reason Relative expiration date has reached 207456 mac 207456 bytes_out 0 207456 bytes_in 0 207456 station_ip 37.27.20.156 207456 port 18 207456 unique_id port 207464 username rahim 207464 mac 207464 bytes_out 255408 207464 bytes_in 3094187 207464 station_ip 5.119.134.109 207464 port 20 207464 unique_id port 207464 remote_ip 10.8.1.146 207466 username alipour1506 207466 kill_reason Another user logged on this global unique id 207466 mac 207466 bytes_out 0 207466 bytes_in 0 207466 station_ip 37.129.128.58 207466 port 17 207466 unique_id port 207466 remote_ip 10.8.1.158 207468 username meghdad1616 207468 mac 207468 bytes_out 0 207468 bytes_in 0 207468 station_ip 5.120.8.214 207468 port 15 207468 unique_id port 207468 remote_ip 10.8.1.122 207470 username mohammadjavad 207470 mac 207470 bytes_out 1064520 207470 bytes_in 12601371 207470 station_ip 83.123.206.116 207470 port 16 207470 unique_id port 207470 remote_ip 10.8.1.142 207475 username barzegar8595 207475 mac 207475 bytes_out 2262663 207475 bytes_in 31907051 207475 station_ip 46.225.208.14 207475 port 18 207475 unique_id port 207475 remote_ip 10.8.1.26 207478 username mosi 207478 mac 207478 bytes_out 0 207478 bytes_in 0 207478 station_ip 94.24.80.208 207478 port 14 207478 unique_id port 207478 remote_ip 10.8.1.54 207482 username pourshad 207482 mac 207482 bytes_out 0 207482 bytes_in 0 207482 station_ip 5.119.204.50 207482 port 3 207482 unique_id port 207482 remote_ip 10.8.1.10 207484 username pourshad 207484 kill_reason Another user logged on this global unique id 207484 mac 207484 bytes_out 0 207484 bytes_in 0 207484 station_ip 5.119.204.50 207484 port 14 207484 unique_id port 207484 remote_ip 10.8.1.10 207486 username morteza4424 207486 mac 207486 bytes_out 0 207486 bytes_in 0 207486 station_ip 113.203.105.5 207486 port 17 207486 unique_id port 207488 username meghdad1616 207488 mac 207488 bytes_out 0 207425 station_ip 5.120.123.101 207425 port 15 207425 unique_id port 207425 remote_ip 10.8.1.30 207433 username morteza4424 207433 kill_reason Another user logged on this global unique id 207433 mac 207433 bytes_out 0 207433 bytes_in 0 207433 station_ip 113.203.105.5 207433 port 17 207433 unique_id port 207441 username arash 207441 kill_reason Relative expiration date has reached 207441 mac 207441 bytes_out 0 207441 bytes_in 0 207441 station_ip 37.27.20.156 207441 port 1 207441 unique_id port 207442 username arash 207442 kill_reason Relative expiration date has reached 207442 mac 207442 bytes_out 0 207442 bytes_in 0 207442 station_ip 37.27.20.156 207442 port 1 207442 unique_id port 207445 username arash 207445 kill_reason Relative expiration date has reached 207445 mac 207445 bytes_out 0 207445 bytes_in 0 207445 station_ip 37.27.20.156 207445 port 1 207445 unique_id port 207447 username yaghobi 207447 mac 207447 bytes_out 0 207447 bytes_in 0 207447 station_ip 37.129.127.66 207447 port 6 207447 unique_id port 207447 remote_ip 10.8.0.106 207448 username arash 207448 kill_reason Relative expiration date has reached 207448 mac 207448 bytes_out 0 207448 bytes_in 0 207448 station_ip 37.27.20.156 207448 port 1 207448 unique_id port 207452 username arash 207452 kill_reason Relative expiration date has reached 207452 mac 207452 bytes_out 0 207452 bytes_in 0 207452 station_ip 37.27.20.156 207452 port 4 207452 unique_id port 207455 username arash 207455 kill_reason Relative expiration date has reached 207455 mac 207455 bytes_out 0 207455 bytes_in 0 207455 station_ip 37.27.20.156 207455 port 4 207455 unique_id port 207457 username arash 207457 kill_reason Relative expiration date has reached 207457 mac 207457 bytes_out 0 207457 bytes_in 0 207457 station_ip 37.27.20.156 207457 port 4 207457 unique_id port 207462 username rezaei 207462 mac 207462 bytes_out 0 207462 bytes_in 0 207462 station_ip 5.119.246.216 207462 port 4 207462 unique_id port 207462 remote_ip 10.8.0.150 207463 username barzegar 207463 mac 207463 bytes_out 0 207463 bytes_in 0 207463 station_ip 5.120.123.101 207463 port 21 207463 unique_id port 207463 remote_ip 10.8.1.30 207465 username mohammadjavad 207465 mac 207465 bytes_out 1286770 207465 bytes_in 4720407 207465 station_ip 83.123.206.116 207465 port 16 207465 unique_id port 207465 remote_ip 10.8.1.142 207467 username khademi 207467 mac 207467 bytes_out 0 207467 bytes_in 0 207467 station_ip 37.129.98.124 207467 port 14 207467 unique_id port 207469 username farhad3 207469 kill_reason Another user logged on this global unique id 207469 mac 207469 bytes_out 0 207469 bytes_in 0 207469 station_ip 5.120.60.48 207469 port 7 207469 unique_id port 207471 username mehrpoyan101 207471 mac 207471 bytes_out 0 207471 bytes_in 0 207471 station_ip 5.119.77.222 207471 port 15 207471 unique_id port 207471 remote_ip 10.8.1.18 207476 username ahmadi1 207476 mac 207476 bytes_out 0 207476 bytes_in 0 207476 station_ip 83.122.176.180 207476 port 6 207476 unique_id port 207476 remote_ip 10.8.0.114 207477 username morteza4424 207477 kill_reason Another user logged on this global unique id 207477 mac 207477 bytes_out 0 207477 bytes_in 0 207477 station_ip 113.203.105.5 207477 port 17 207477 unique_id port 207479 username barzegar 207479 mac 207479 bytes_out 0 207479 bytes_in 0 207479 station_ip 5.120.123.101 207479 port 14 207479 unique_id port 207479 remote_ip 10.8.1.30 207481 username farhad3 207481 kill_reason Another user logged on this global unique id 207481 mac 207481 bytes_out 0 207449 station_ip 5.120.60.48 207449 port 7 207449 unique_id port 207449 remote_ip 10.8.1.86 207451 username alipour1506 207451 mac 207451 bytes_out 0 207451 bytes_in 0 207451 station_ip 151.234.21.25 207451 port 4 207451 unique_id port 207454 username arash 207454 kill_reason Relative expiration date has reached 207454 mac 207454 bytes_out 0 207454 bytes_in 0 207454 station_ip 37.27.20.156 207454 port 18 207454 unique_id port 207458 username mosi 207458 kill_reason Another user logged on this global unique id 207458 mac 207458 bytes_out 0 207458 bytes_in 0 207458 station_ip 94.24.80.208 207458 port 14 207458 unique_id port 207458 remote_ip 10.8.1.54 207459 username arash 207459 kill_reason Relative expiration date has reached 207459 mac 207459 bytes_out 0 207459 bytes_in 0 207459 station_ip 37.27.20.156 207459 port 18 207459 unique_id port 207460 username barzegar8595 207460 mac 207460 bytes_out 0 207460 bytes_in 0 207460 station_ip 46.225.210.60 207460 port 13 207460 unique_id port 207460 remote_ip 10.8.1.26 207461 username arash 207461 kill_reason Relative expiration date has reached 207461 mac 207461 bytes_out 0 207461 bytes_in 0 207461 station_ip 37.27.20.156 207461 port 19 207461 unique_id port 207472 username rajaei 207472 mac 207472 bytes_out 2847934 207472 bytes_in 28603314 207472 station_ip 89.32.106.244 207472 port 19 207472 unique_id port 207472 remote_ip 10.8.1.162 207473 username kharazmi2920 207473 mac 207473 bytes_out 576958 207473 bytes_in 2950250 207473 station_ip 83.122.132.5 207473 port 9 207473 unique_id port 207473 remote_ip 10.8.0.54 207474 username mehrpoyan101 207474 mac 207474 bytes_out 1686845 207474 bytes_in 10641891 207474 station_ip 5.119.77.222 207474 port 15 207474 unique_id port 207474 remote_ip 10.8.1.18 207480 username meghdad1616 207480 mac 207480 bytes_out 0 207480 bytes_in 0 207480 station_ip 5.120.8.214 207480 port 16 207480 unique_id port 207480 remote_ip 10.8.1.122 207483 username kalantary6037 207483 mac 207483 bytes_out 0 207483 bytes_in 0 207483 station_ip 37.129.226.53 207483 port 3 207483 unique_id port 207483 remote_ip 10.8.1.98 207485 username meghdad1616 207485 mac 207485 bytes_out 0 207485 bytes_in 0 207485 station_ip 5.120.8.214 207485 port 3 207485 unique_id port 207485 remote_ip 10.8.1.122 207487 username mehrpoyan101 207487 mac 207487 bytes_out 500039 207487 bytes_in 3178314 207487 station_ip 5.119.77.222 207487 port 6 207487 unique_id port 207487 remote_ip 10.8.0.134 207492 username hosseini0093 207492 kill_reason Another user logged on this global unique id 207492 mac 207492 bytes_out 0 207492 bytes_in 0 207492 station_ip 5.120.184.108 207492 port 4 207492 unique_id port 207492 remote_ip 10.8.0.154 207494 username seyedrezaei2572 207494 mac 207494 bytes_out 2505931 207494 bytes_in 23886904 207494 station_ip 83.123.147.16 207494 port 1 207494 unique_id port 207494 remote_ip 10.8.1.150 207498 username arash 207498 kill_reason Relative expiration date has reached 207498 mac 207498 bytes_out 0 207498 bytes_in 0 207498 station_ip 37.27.20.156 207498 port 3 207498 unique_id port 207502 username farhad3 207502 mac 207502 bytes_out 0 207502 bytes_in 0 207502 station_ip 5.120.60.48 207502 port 7 207502 unique_id port 207509 username mehrpoyan101 207509 mac 207509 bytes_out 0 207509 bytes_in 0 207509 station_ip 5.120.21.144 207509 port 3 207509 unique_id port 207509 remote_ip 10.8.1.18 207516 username mehrpoyan101 207516 mac 207516 bytes_out 0 207516 bytes_in 0 207481 bytes_in 0 207481 station_ip 5.120.60.48 207481 port 7 207481 unique_id port 207490 username arash 207490 kill_reason Relative expiration date has reached 207490 mac 207490 bytes_out 0 207490 bytes_in 0 207490 station_ip 37.27.20.156 207490 port 3 207490 unique_id port 207497 username mehrpoyan101 207497 mac 207497 bytes_out 549591 207497 bytes_in 3279721 207497 station_ip 5.119.67.49 207497 port 6 207497 unique_id port 207497 remote_ip 10.8.0.134 207500 username hosseini0093 207500 kill_reason Another user logged on this global unique id 207500 mac 207500 bytes_out 0 207500 bytes_in 0 207500 station_ip 5.120.184.108 207500 port 4 207500 unique_id port 207501 username arash 207501 kill_reason Relative expiration date has reached 207501 mac 207501 bytes_out 0 207501 bytes_in 0 207501 station_ip 37.27.20.156 207501 port 3 207501 unique_id port 207504 username mosi 207504 mac 207504 bytes_out 0 207504 bytes_in 0 207504 station_ip 94.24.80.208 207504 port 15 207504 unique_id port 207504 remote_ip 10.8.1.54 207506 username mehrpoyan101 207506 mac 207506 bytes_out 37054 207506 bytes_in 116613 207506 station_ip 5.120.21.144 207506 port 3 207506 unique_id port 207506 remote_ip 10.8.1.18 207507 username mehrpoyan101 207507 mac 207507 bytes_out 0 207507 bytes_in 0 207507 station_ip 5.120.21.144 207507 port 16 207507 unique_id port 207507 remote_ip 10.8.1.18 207510 username khademi 207510 kill_reason Another user logged on this global unique id 207510 mac 207510 bytes_out 0 207510 bytes_in 0 207510 station_ip 37.129.98.124 207510 port 14 207510 unique_id port 207512 username meghdad1616 207512 mac 207512 bytes_out 0 207512 bytes_in 0 207512 station_ip 5.120.8.214 207512 port 20 207512 unique_id port 207512 remote_ip 10.8.1.122 207514 username mehrpoyan101 207514 mac 207514 bytes_out 0 207514 bytes_in 0 207514 station_ip 5.120.21.144 207514 port 18 207514 unique_id port 207514 remote_ip 10.8.1.18 207515 username meghdad1616 207515 mac 207515 bytes_out 0 207515 bytes_in 0 207515 station_ip 5.120.8.214 207515 port 18 207515 unique_id port 207515 remote_ip 10.8.1.122 207517 username hosseini0093 207517 kill_reason Another user logged on this global unique id 207517 mac 207517 bytes_out 0 207517 bytes_in 0 207517 station_ip 5.120.184.108 207517 port 4 207517 unique_id port 207519 username dortaj3792 207519 kill_reason Another user logged on this global unique id 207519 mac 207519 bytes_out 0 207519 bytes_in 0 207519 station_ip 5.119.128.161 207519 port 19 207519 unique_id port 207519 remote_ip 10.8.1.62 207522 username barzegar 207522 mac 207522 bytes_out 463241 207522 bytes_in 5406932 207522 station_ip 5.120.123.101 207522 port 17 207522 unique_id port 207522 remote_ip 10.8.1.30 207523 username pourshad 207523 mac 207523 bytes_out 25530 207523 bytes_in 71838 207523 station_ip 5.119.204.50 207523 port 20 207523 unique_id port 207523 remote_ip 10.8.0.122 207525 username hosseini0093 207525 kill_reason Another user logged on this global unique id 207525 mac 207525 bytes_out 0 207525 bytes_in 0 207525 station_ip 5.120.184.108 207525 port 4 207525 unique_id port 207526 username barzegar8595 207526 mac 207526 bytes_out 1742557 207526 bytes_in 5938053 207526 station_ip 46.225.208.14 207526 port 16 207526 unique_id port 207526 remote_ip 10.8.1.26 207528 username barzegar 207528 mac 207528 bytes_out 187145 207528 bytes_in 2003940 207528 station_ip 5.120.123.101 207528 port 19 207528 unique_id port 207528 remote_ip 10.8.0.34 207530 username sekonji0496 207539 station_ip 94.24.80.208 207488 bytes_in 0 207488 station_ip 5.120.8.214 207488 port 17 207488 unique_id port 207488 remote_ip 10.8.0.158 207489 username farhad3 207489 kill_reason Another user logged on this global unique id 207489 mac 207489 bytes_out 0 207489 bytes_in 0 207489 station_ip 5.120.60.48 207489 port 7 207489 unique_id port 207491 username arash 207491 kill_reason Relative expiration date has reached 207491 mac 207491 bytes_out 0 207491 bytes_in 0 207491 station_ip 37.27.20.156 207491 port 17 207491 unique_id port 207493 username arash 207493 kill_reason Relative expiration date has reached 207493 mac 207493 bytes_out 0 207493 bytes_in 0 207493 station_ip 37.27.20.156 207493 port 16 207493 unique_id port 207495 username meghdad1616 207495 mac 207495 bytes_out 0 207495 bytes_in 0 207495 station_ip 5.120.8.214 207495 port 3 207495 unique_id port 207495 remote_ip 10.8.1.122 207496 username sekonji0496 207496 mac 207496 bytes_out 246802 207496 bytes_in 772970 207496 station_ip 37.129.234.247 207496 port 11 207496 unique_id port 207496 remote_ip 10.8.0.70 207499 username barzegar 207499 kill_reason Another user logged on this global unique id 207499 mac 207499 bytes_out 0 207499 bytes_in 0 207499 station_ip 5.120.123.101 207499 port 1 207499 unique_id port 207503 username seyedrezaei2572 207503 mac 207503 bytes_out 81538 207503 bytes_in 92471 207503 station_ip 83.123.147.16 207503 port 17 207503 unique_id port 207503 remote_ip 10.8.0.110 207505 username alipour1506 207505 mac 207505 bytes_out 0 207505 bytes_in 0 207505 station_ip 37.129.128.58 207505 port 7 207505 unique_id port 207505 remote_ip 10.8.1.158 207508 username hosseini0093 207508 kill_reason Another user logged on this global unique id 207508 mac 207508 bytes_out 0 207508 bytes_in 0 207508 station_ip 5.120.184.108 207508 port 4 207508 unique_id port 207511 username mehrpoyan101 207511 mac 207511 bytes_out 1494718 207511 bytes_in 5782913 207511 station_ip 5.120.21.144 207511 port 16 207511 unique_id port 207511 remote_ip 10.8.1.18 207513 username sekonji0496 207513 mac 207513 bytes_out 15675 207513 bytes_in 17549 207513 station_ip 37.129.234.247 207513 port 18 207513 unique_id port 207513 remote_ip 10.8.0.70 207518 username khademi 207518 mac 207518 bytes_out 0 207518 bytes_in 0 207518 station_ip 37.129.98.124 207518 port 14 207518 unique_id port 207521 username meghdad1616 207521 mac 207521 bytes_out 0 207521 bytes_in 0 207521 station_ip 5.120.8.214 207521 port 14 207521 unique_id port 207521 remote_ip 10.8.1.122 207524 username mehrpoyan101 207524 mac 207524 bytes_out 570256 207524 bytes_in 4801390 207524 station_ip 5.120.21.144 207524 port 11 207524 unique_id port 207524 remote_ip 10.8.0.134 207527 username meghdad1616 207527 mac 207527 bytes_out 0 207527 bytes_in 0 207527 station_ip 5.120.8.214 207527 port 11 207527 unique_id port 207527 remote_ip 10.8.0.158 207531 username mehrpoyan101 207531 mac 207531 bytes_out 1749412 207531 bytes_in 5954632 207531 station_ip 5.120.73.2 207531 port 16 207531 unique_id port 207531 remote_ip 10.8.1.18 207532 username rashidi4690 207532 mac 207532 bytes_out 0 207532 bytes_in 0 207532 station_ip 5.119.99.122 207532 port 13 207532 unique_id port 207532 remote_ip 10.8.1.50 207536 username meghdad1616 207536 mac 207536 bytes_out 14851 207536 bytes_in 21807 207536 station_ip 5.120.8.214 207536 port 18 207536 unique_id port 207536 remote_ip 10.8.1.122 207539 username mosi 207539 mac 207539 bytes_out 0 207539 bytes_in 0 207516 station_ip 5.120.21.144 207516 port 20 207516 unique_id port 207516 remote_ip 10.8.1.18 207520 username meghdad1616 207520 mac 207520 bytes_out 0 207520 bytes_in 0 207520 station_ip 5.120.8.214 207520 port 19 207520 unique_id port 207520 remote_ip 10.8.0.158 207529 username meghdad1616 207529 mac 207529 bytes_out 0 207529 bytes_in 0 207529 station_ip 5.120.8.214 207529 port 16 207529 unique_id port 207529 remote_ip 10.8.1.122 207537 username hosseini0093 207537 kill_reason Another user logged on this global unique id 207537 mac 207537 bytes_out 0 207537 bytes_in 0 207537 station_ip 5.120.184.108 207537 port 4 207537 unique_id port 207541 username charkhandaz3496 207541 mac 207541 bytes_out 0 207541 bytes_in 0 207541 station_ip 5.120.159.239 207541 port 14 207541 unique_id port 207541 remote_ip 10.8.1.154 207549 username yaghobi 207549 mac 207549 bytes_out 0 207549 bytes_in 0 207549 station_ip 37.129.18.154 207549 port 19 207549 unique_id port 207549 remote_ip 10.8.0.106 207551 username meghdad1616 207551 mac 207551 bytes_out 0 207551 bytes_in 0 207551 station_ip 5.120.8.214 207551 port 16 207551 unique_id port 207551 remote_ip 10.8.0.158 207556 username farhad3 207556 mac 207556 bytes_out 0 207556 bytes_in 0 207556 station_ip 5.120.60.48 207556 port 3 207556 unique_id port 207556 remote_ip 10.8.1.86 207559 username alipour1506 207559 mac 207559 bytes_out 0 207559 bytes_in 0 207559 station_ip 37.129.128.58 207559 port 7 207559 unique_id port 207559 remote_ip 10.8.1.158 207561 username farhad3 207561 mac 207561 bytes_out 660985 207561 bytes_in 7128385 207561 station_ip 5.120.60.48 207561 port 3 207561 unique_id port 207561 remote_ip 10.8.1.86 207564 username hosseini0093 207564 kill_reason Another user logged on this global unique id 207564 mac 207564 bytes_out 0 207564 bytes_in 0 207564 station_ip 5.120.184.108 207564 port 4 207564 unique_id port 207568 username farhad3 207568 kill_reason Another user logged on this global unique id 207568 mac 207568 bytes_out 0 207568 bytes_in 0 207568 station_ip 5.120.60.48 207568 port 17 207568 unique_id port 207568 remote_ip 10.8.1.86 207570 username mohammadjavad 207570 mac 207570 bytes_out 100150 207570 bytes_in 322815 207570 station_ip 83.123.250.248 207570 port 21 207570 unique_id port 207570 remote_ip 10.8.1.142 207574 username barzegar 207574 mac 207574 bytes_out 0 207574 bytes_in 0 207574 station_ip 5.120.123.101 207574 port 14 207574 unique_id port 207574 remote_ip 10.8.1.30 207578 username arash 207578 kill_reason Relative expiration date has reached 207578 mac 207578 bytes_out 0 207578 bytes_in 0 207578 station_ip 89.32.104.202 207578 port 21 207578 unique_id port 207581 username naeimeh 207581 kill_reason Another user logged on this global unique id 207581 mac 207581 bytes_out 0 207581 bytes_in 0 207581 station_ip 113.203.91.59 207581 port 17 207581 unique_id port 207581 remote_ip 10.8.0.166 207584 username nilufarrajaei 207584 kill_reason Another user logged on this global unique id 207584 mac 207584 bytes_out 0 207584 bytes_in 0 207584 station_ip 83.123.230.183 207584 port 11 207584 unique_id port 207584 remote_ip 10.8.0.50 207587 username yaghobi 207587 mac 207587 bytes_out 7489289 207587 bytes_in 69609058 207587 station_ip 37.129.72.50 207587 port 16 207587 unique_id port 207587 remote_ip 10.8.0.106 207590 username meghdad1616 207590 mac 207590 bytes_out 0 207590 bytes_in 0 207590 station_ip 5.120.8.214 207590 port 20 207590 unique_id port 207592 username charkhandaz3496 207530 kill_reason Another user logged on this global unique id 207530 mac 207530 bytes_out 0 207530 bytes_in 0 207530 station_ip 37.129.234.247 207530 port 18 207530 unique_id port 207530 remote_ip 10.8.0.70 207533 username arash 207533 kill_reason Relative expiration date has reached 207533 mac 207533 bytes_out 0 207533 bytes_in 0 207533 station_ip 37.27.20.156 207533 port 11 207533 unique_id port 207534 username barzegar 207534 mac 207534 bytes_out 0 207534 bytes_in 0 207534 station_ip 5.120.123.101 207534 port 13 207534 unique_id port 207534 remote_ip 10.8.1.30 207535 username esmaeili1522 207535 kill_reason Another user logged on this global unique id 207535 mac 207535 bytes_out 0 207535 bytes_in 0 207535 station_ip 5.119.97.33 207535 port 17 207535 unique_id port 207535 remote_ip 10.8.1.166 207538 username rezaei 207538 mac 207538 bytes_out 1768230 207538 bytes_in 6077380 207538 station_ip 5.119.246.216 207538 port 16 207538 unique_id port 207538 remote_ip 10.8.1.58 207543 username meghdad1616 207543 mac 207543 bytes_out 0 207543 bytes_in 0 207543 station_ip 5.120.8.214 207543 port 14 207543 unique_id port 207543 remote_ip 10.8.1.122 207544 username mosi 207544 mac 207544 bytes_out 0 207544 bytes_in 0 207544 station_ip 94.24.80.208 207544 port 18 207544 unique_id port 207544 remote_ip 10.8.1.54 207547 username hosseini0093 207547 kill_reason Another user logged on this global unique id 207547 mac 207547 bytes_out 0 207547 bytes_in 0 207547 station_ip 5.120.184.108 207547 port 4 207547 unique_id port 207548 username kalantary6037 207548 mac 207548 bytes_out 50331 207548 bytes_in 79799 207548 station_ip 37.129.222.109 207548 port 20 207548 unique_id port 207548 remote_ip 10.8.0.18 207550 username saeeddamghani 207550 mac 207550 bytes_out 103189 207550 bytes_in 383515 207550 station_ip 5.119.89.204 207550 port 16 207550 unique_id port 207550 remote_ip 10.8.0.162 207553 username rashidi4690 207553 mac 207553 bytes_out 3185673 207553 bytes_in 24346670 207553 station_ip 5.119.99.122 207553 port 15 207553 unique_id port 207553 remote_ip 10.8.1.50 207558 username barzegar 207558 mac 207558 bytes_out 5932700 207558 bytes_in 57121021 207558 station_ip 5.120.123.101 207558 port 16 207558 unique_id port 207558 remote_ip 10.8.0.34 207560 username mosi 207560 kill_reason Another user logged on this global unique id 207560 mac 207560 bytes_out 0 207560 bytes_in 0 207560 station_ip 94.24.80.208 207560 port 14 207560 unique_id port 207560 remote_ip 10.8.1.54 207562 username meghdad1616 207562 mac 207562 bytes_out 0 207562 bytes_in 0 207562 station_ip 5.120.8.214 207562 port 20 207562 unique_id port 207562 remote_ip 10.8.1.122 207563 username nilufarrajaei 207563 mac 207563 bytes_out 0 207563 bytes_in 0 207563 station_ip 83.123.230.183 207563 port 11 207563 unique_id port 207563 remote_ip 10.8.0.50 207567 username hosseini0093 207567 kill_reason Another user logged on this global unique id 207567 mac 207567 bytes_out 0 207567 bytes_in 0 207567 station_ip 5.120.184.108 207567 port 4 207567 unique_id port 207569 username khademi 207569 mac 207569 bytes_out 0 207569 bytes_in 0 207569 station_ip 37.129.98.124 207569 port 14 207569 unique_id port 207572 username hosseini0093 207572 mac 207572 bytes_out 0 207572 bytes_in 0 207572 station_ip 5.120.184.108 207572 port 4 207572 unique_id port 207573 username meysam 207573 mac 207573 bytes_out 0 207573 bytes_in 0 207573 station_ip 188.158.51.157 207573 port 13 207573 unique_id port 207575 username arash 207539 port 15 207539 unique_id port 207539 remote_ip 10.8.1.54 207540 username meghdad1616 207540 mac 207540 bytes_out 0 207540 bytes_in 0 207540 station_ip 5.120.8.214 207540 port 15 207540 unique_id port 207540 remote_ip 10.8.1.122 207542 username meysam 207542 mac 207542 bytes_out 0 207542 bytes_in 0 207542 station_ip 188.158.51.157 207542 port 13 207542 unique_id port 207542 remote_ip 10.8.1.6 207545 username aminvpn 207545 mac 207545 bytes_out 3160693 207545 bytes_in 38421485 207545 station_ip 113.203.103.244 207545 port 16 207545 unique_id port 207545 remote_ip 10.8.0.58 207546 username barzegar 207546 mac 207546 bytes_out 0 207546 bytes_in 0 207546 station_ip 5.120.123.101 207546 port 18 207546 unique_id port 207546 remote_ip 10.8.1.30 207552 username meysam 207552 kill_reason Another user logged on this global unique id 207552 mac 207552 bytes_out 0 207552 bytes_in 0 207552 station_ip 188.158.51.157 207552 port 13 207552 unique_id port 207552 remote_ip 10.8.1.6 207554 username mosi 207554 mac 207554 bytes_out 0 207554 bytes_in 0 207554 station_ip 94.24.80.208 207554 port 14 207554 unique_id port 207554 remote_ip 10.8.1.54 207555 username rezaei 207555 kill_reason Another user logged on this global unique id 207555 mac 207555 bytes_out 0 207555 bytes_in 0 207555 station_ip 5.119.246.216 207555 port 16 207555 unique_id port 207557 username esmaeili1522 207557 mac 207557 bytes_out 0 207557 bytes_in 0 207557 station_ip 5.119.97.33 207557 port 17 207557 unique_id port 207565 username barzegar 207565 mac 207565 bytes_out 0 207565 bytes_in 0 207565 station_ip 5.120.123.101 207565 port 20 207565 unique_id port 207565 remote_ip 10.8.1.30 207566 username meghdad1616 207566 mac 207566 bytes_out 0 207566 bytes_in 0 207566 station_ip 5.120.8.214 207566 port 20 207566 unique_id port 207566 remote_ip 10.8.1.122 207571 username hosseini0093 207571 mac 207571 bytes_out 0 207571 bytes_in 0 207571 station_ip 5.120.184.108 207571 port 14 207571 unique_id port 207571 remote_ip 10.8.1.170 207576 username arash 207576 kill_reason Relative expiration date has reached 207576 mac 207576 bytes_out 0 207576 bytes_in 0 207576 station_ip 37.27.20.156 207576 port 4 207576 unique_id port 207579 username mehrpoyan101 207579 mac 207579 bytes_out 0 207579 bytes_in 0 207579 station_ip 5.119.220.103 207579 port 14 207579 unique_id port 207579 remote_ip 10.8.1.18 207586 username mohammadjavad 207586 mac 207586 bytes_out 1322088 207586 bytes_in 13394081 207586 station_ip 83.123.250.248 207586 port 13 207586 unique_id port 207586 remote_ip 10.8.1.142 207588 username mehrpoyan101 207588 mac 207588 bytes_out 528410 207588 bytes_in 3400734 207588 station_ip 5.119.220.103 207588 port 4 207588 unique_id port 207588 remote_ip 10.8.0.134 207591 username mohammadjavad 207591 mac 207591 bytes_out 13544 207591 bytes_in 14963 207591 station_ip 83.123.250.248 207591 port 4 207591 unique_id port 207591 remote_ip 10.8.0.138 207596 username meghdad1616 207596 mac 207596 bytes_out 2902 207596 bytes_in 5310 207596 station_ip 5.120.8.214 207596 port 7 207596 unique_id port 207596 remote_ip 10.8.1.122 207598 username barzegar 207598 mac 207598 bytes_out 0 207598 bytes_in 0 207598 station_ip 5.120.123.101 207598 port 21 207598 unique_id port 207598 remote_ip 10.8.1.30 207606 username meghdad1616 207606 mac 207606 bytes_out 0 207606 bytes_in 0 207606 station_ip 5.120.8.214 207606 port 14 207606 unique_id port 207575 kill_reason Relative expiration date has reached 207575 mac 207575 bytes_out 0 207575 bytes_in 0 207575 station_ip 37.27.20.156 207575 port 4 207575 unique_id port 207577 username arash 207577 kill_reason Relative expiration date has reached 207577 mac 207577 bytes_out 0 207577 bytes_in 0 207577 station_ip 37.27.20.156 207577 port 4 207577 unique_id port 207580 username rashidi4690 207580 mac 207580 bytes_out 0 207580 bytes_in 0 207580 station_ip 5.119.99.122 207580 port 7 207580 unique_id port 207580 remote_ip 10.8.1.50 207582 username barzegar 207582 mac 207582 bytes_out 0 207582 bytes_in 0 207582 station_ip 5.120.123.101 207582 port 19 207582 unique_id port 207582 remote_ip 10.8.0.34 207583 username barzegar 207583 mac 207583 bytes_out 0 207583 bytes_in 0 207583 station_ip 5.120.123.101 207583 port 7 207583 unique_id port 207583 remote_ip 10.8.1.30 207585 username meghdad1616 207585 kill_reason Another user logged on this global unique id 207585 mac 207585 bytes_out 0 207585 bytes_in 0 207585 station_ip 5.120.8.214 207585 port 20 207585 unique_id port 207585 remote_ip 10.8.1.122 207589 username mehrpoyan101 207589 mac 207589 bytes_out 0 207589 bytes_in 0 207589 station_ip 5.119.229.233 207589 port 7 207589 unique_id port 207589 remote_ip 10.8.1.18 207593 username abdolahi0311 207593 kill_reason Another user logged on this global unique id 207593 mac 207593 bytes_out 0 207593 bytes_in 0 207593 station_ip 5.120.132.232 207593 port 12 207593 unique_id port 207593 remote_ip 10.8.1.114 207594 username mehrpoyan101 207594 mac 207594 bytes_out 2286 207594 bytes_in 4830 207594 station_ip 5.119.229.233 207594 port 16 207594 unique_id port 207594 remote_ip 10.8.0.134 207599 username meghdad1616 207599 mac 207599 bytes_out 0 207599 bytes_in 0 207599 station_ip 5.120.8.214 207599 port 20 207599 unique_id port 207599 remote_ip 10.8.1.122 207603 username mosi 207603 mac 207603 bytes_out 31346 207603 bytes_in 34237 207603 station_ip 2.183.128.89 207603 port 7 207603 unique_id port 207603 remote_ip 10.8.1.54 207607 username kalantary6037 207607 mac 207607 bytes_out 111426 207607 bytes_in 125125 207607 station_ip 37.129.201.53 207607 port 16 207607 unique_id port 207607 remote_ip 10.8.0.18 207608 username charkhandaz3496 207608 mac 207608 bytes_out 0 207608 bytes_in 0 207608 station_ip 5.120.159.239 207608 port 18 207608 unique_id port 207611 username sekonji0496 207611 mac 207611 bytes_out 13452 207611 bytes_in 23146 207611 station_ip 37.129.234.247 207611 port 16 207611 unique_id port 207611 remote_ip 10.8.0.70 207612 username morteza4424 207612 mac 207612 bytes_out 0 207612 bytes_in 0 207612 station_ip 113.203.52.13 207612 port 19 207612 unique_id port 207612 remote_ip 10.8.0.30 207614 username barzegar 207614 mac 207614 bytes_out 0 207614 bytes_in 0 207614 station_ip 5.120.123.101 207614 port 14 207614 unique_id port 207614 remote_ip 10.8.1.30 207618 username meghdad1616 207618 mac 207618 bytes_out 0 207618 bytes_in 0 207618 station_ip 5.120.8.214 207618 port 3 207618 unique_id port 207618 remote_ip 10.8.1.122 207621 username morteza4424 207621 mac 207621 bytes_out 0 207621 bytes_in 0 207621 station_ip 113.203.52.13 207621 port 19 207621 unique_id port 207621 remote_ip 10.8.0.30 207623 username hashtadani5 207623 mac 207623 bytes_out 479099 207623 bytes_in 4563933 207623 station_ip 83.123.91.178 207623 port 21 207623 unique_id port 207623 remote_ip 10.8.0.174 207625 username barzegar 207625 mac 207592 kill_reason Another user logged on this global unique id 207592 mac 207592 bytes_out 0 207592 bytes_in 0 207592 station_ip 5.120.159.239 207592 port 18 207592 unique_id port 207592 remote_ip 10.8.1.154 207595 username mosi 207595 mac 207595 bytes_out 0 207595 bytes_in 0 207595 station_ip 2.183.128.89 207595 port 22 207595 unique_id port 207595 remote_ip 10.8.1.54 207597 username meghdad1616 207597 mac 207597 bytes_out 0 207597 bytes_in 0 207597 station_ip 5.120.8.214 207597 port 16 207597 unique_id port 207597 remote_ip 10.8.0.158 207600 username rashidi4690 207600 mac 207600 bytes_out 0 207600 bytes_in 0 207600 station_ip 5.119.99.122 207600 port 14 207600 unique_id port 207600 remote_ip 10.8.1.50 207601 username barzegar 207601 mac 207601 bytes_out 0 207601 bytes_in 0 207601 station_ip 5.120.123.101 207601 port 14 207601 unique_id port 207601 remote_ip 10.8.1.30 207602 username farhad3 207602 kill_reason Another user logged on this global unique id 207602 mac 207602 bytes_out 0 207602 bytes_in 0 207602 station_ip 5.120.60.48 207602 port 17 207602 unique_id port 207604 username mosi 207604 mac 207604 bytes_out 0 207604 bytes_in 0 207604 station_ip 5.73.160.143 207604 port 14 207604 unique_id port 207604 remote_ip 10.8.1.54 207605 username mosi 207605 mac 207605 bytes_out 0 207605 bytes_in 0 207605 station_ip 89.34.57.118 207605 port 7 207605 unique_id port 207605 remote_ip 10.8.1.54 207609 username meghdad1616 207609 kill_reason Maximum check online fails reached 207609 mac 207609 bytes_out 0 207609 bytes_in 0 207609 station_ip 5.120.8.214 207609 port 7 207609 unique_id port 207617 username mostafa_es78 207617 mac 207617 bytes_out 925517 207617 bytes_in 4348370 207617 station_ip 37.129.71.31 207617 port 1 207617 unique_id port 207617 remote_ip 10.8.0.42 207620 username mostafa_es78 207620 mac 207620 bytes_out 0 207620 bytes_in 0 207620 station_ip 37.129.71.31 207620 port 20 207620 unique_id port 207620 remote_ip 10.8.0.42 207629 username hashtadani5 207629 kill_reason Maximum check online fails reached 207629 mac 207629 bytes_out 0 207629 bytes_in 0 207629 station_ip 83.123.91.178 207629 port 20 207629 unique_id port 207633 username hashtadani5 207633 mac 207633 bytes_out 0 207633 bytes_in 0 207633 station_ip 83.123.91.178 207633 port 17 207633 unique_id port 207633 remote_ip 10.8.0.174 207638 username hashtadani5 207638 mac 207638 bytes_out 0 207638 bytes_in 0 207638 station_ip 83.123.91.178 207638 port 16 207638 unique_id port 207638 remote_ip 10.8.1.174 207642 username morteza4424 207642 mac 207642 bytes_out 0 207642 bytes_in 0 207642 station_ip 113.203.52.13 207642 port 19 207642 unique_id port 207642 remote_ip 10.8.0.30 207645 username hashtadani5 207645 mac 207645 bytes_out 0 207645 bytes_in 0 207645 station_ip 83.123.91.178 207645 port 19 207645 unique_id port 207645 remote_ip 10.8.1.174 207649 username arash 207649 kill_reason Relative expiration date has reached 207649 mac 207649 bytes_out 0 207649 bytes_in 0 207649 station_ip 37.27.58.74 207649 port 19 207649 unique_id port 207650 username arash 207650 kill_reason Relative expiration date has reached 207650 mac 207650 bytes_out 0 207650 bytes_in 0 207650 station_ip 37.27.58.74 207650 port 21 207650 unique_id port 207653 username hashtadani5 207653 mac 207653 bytes_out 0 207653 bytes_in 0 207653 station_ip 83.123.91.178 207653 port 19 207653 unique_id port 207653 remote_ip 10.8.1.174 207654 username morteza4424 207654 mac 207606 remote_ip 10.8.1.122 207610 username barzegar8595 207610 mac 207610 bytes_out 0 207610 bytes_in 0 207610 station_ip 46.225.212.155 207610 port 3 207610 unique_id port 207610 remote_ip 10.8.1.26 207613 username morteza4424 207613 mac 207613 bytes_out 0 207613 bytes_in 0 207613 station_ip 113.203.52.13 207613 port 19 207613 unique_id port 207613 remote_ip 10.8.0.30 207615 username kalantary6037 207615 mac 207615 bytes_out 154625 207615 bytes_in 335050 207615 station_ip 37.129.201.53 207615 port 20 207615 unique_id port 207615 remote_ip 10.8.0.18 207616 username naeimeh 207616 mac 207616 bytes_out 0 207616 bytes_in 0 207616 station_ip 113.203.91.59 207616 port 17 207616 unique_id port 207619 username morteza4424 207619 mac 207619 bytes_out 0 207619 bytes_in 0 207619 station_ip 113.203.52.13 207619 port 19 207619 unique_id port 207619 remote_ip 10.8.0.30 207622 username mostafa_es78 207622 mac 207622 bytes_out 17256 207622 bytes_in 25106 207622 station_ip 37.129.71.31 207622 port 16 207622 unique_id port 207622 remote_ip 10.8.0.42 207624 username hashtadani5 207624 mac 207624 bytes_out 0 207624 bytes_in 0 207624 station_ip 83.123.91.178 207624 port 16 207624 unique_id port 207624 remote_ip 10.8.0.174 207626 username barzegar8595 207626 kill_reason Another user logged on this global unique id 207626 mac 207626 bytes_out 0 207626 bytes_in 0 207626 station_ip 46.225.208.162 207626 port 18 207626 unique_id port 207626 remote_ip 10.8.0.170 207628 username hashtadani5 207628 mac 207628 bytes_out 0 207628 bytes_in 0 207628 station_ip 83.123.91.178 207628 port 17 207628 unique_id port 207628 remote_ip 10.8.0.174 207631 username rashidi4690 207631 mac 207631 bytes_out 0 207631 bytes_in 0 207631 station_ip 5.119.97.112 207631 port 3 207631 unique_id port 207631 remote_ip 10.8.1.50 207635 username hashtadani5 207635 mac 207635 bytes_out 0 207635 bytes_in 0 207635 station_ip 83.123.91.178 207635 port 16 207635 unique_id port 207635 remote_ip 10.8.1.174 207636 username barzegar 207636 mac 207636 bytes_out 0 207636 bytes_in 0 207636 station_ip 5.120.123.101 207636 port 14 207636 unique_id port 207636 remote_ip 10.8.1.30 207639 username meghdad1616 207639 mac 207639 bytes_out 0 207639 bytes_in 0 207639 station_ip 5.120.8.214 207639 port 14 207639 unique_id port 207639 remote_ip 10.8.1.122 207640 username arash 207640 kill_reason Relative expiration date has reached 207640 mac 207640 bytes_out 0 207640 bytes_in 0 207640 station_ip 37.27.58.74 207640 port 14 207640 unique_id port 207641 username hashtadani5 207641 mac 207641 bytes_out 2111 207641 bytes_in 4441 207641 station_ip 83.123.91.178 207641 port 17 207641 unique_id port 207641 remote_ip 10.8.0.174 207643 username hashtadani5 207643 mac 207643 bytes_out 0 207643 bytes_in 0 207643 station_ip 83.123.91.178 207643 port 17 207643 unique_id port 207643 remote_ip 10.8.1.174 207646 username charkhandaz3496 207646 mac 207646 bytes_out 0 207646 bytes_in 0 207646 station_ip 5.120.159.239 207646 port 18 207646 unique_id port 207651 username morteza4424 207651 mac 207651 bytes_out 0 207651 bytes_in 0 207651 station_ip 113.203.52.13 207651 port 20 207651 unique_id port 207651 remote_ip 10.8.1.42 207652 username kalantary6037 207652 mac 207652 bytes_out 0 207652 bytes_in 0 207652 station_ip 37.129.149.41 207652 port 18 207652 unique_id port 207652 remote_ip 10.8.0.18 207657 username nilufarrajaei 207657 mac 207657 bytes_out 0 207625 bytes_out 0 207625 bytes_in 0 207625 station_ip 5.120.123.101 207625 port 3 207625 unique_id port 207625 remote_ip 10.8.1.30 207627 username ahmadi1 207627 mac 207627 bytes_out 96075 207627 bytes_in 661003 207627 station_ip 83.122.176.180 207627 port 17 207627 unique_id port 207627 remote_ip 10.8.0.114 207630 username hashtadani5 207630 mac 207630 bytes_out 0 207630 bytes_in 0 207630 station_ip 83.123.91.178 207630 port 17 207630 unique_id port 207630 remote_ip 10.8.0.174 207632 username hashtadani5 207632 mac 207632 bytes_out 0 207632 bytes_in 0 207632 station_ip 83.123.91.178 207632 port 17 207632 unique_id port 207632 remote_ip 10.8.0.174 207634 username hosseine 207634 kill_reason Another user logged on this global unique id 207634 mac 207634 bytes_out 0 207634 bytes_in 0 207634 station_ip 37.129.146.208 207634 port 16 207634 unique_id port 207634 remote_ip 10.8.0.126 207637 username arash 207637 kill_reason Relative expiration date has reached 207637 mac 207637 bytes_out 0 207637 bytes_in 0 207637 station_ip 37.27.58.74 207637 port 17 207637 unique_id port 207644 username meghdad1616 207644 kill_reason Another user logged on this global unique id 207644 mac 207644 bytes_out 0 207644 bytes_in 0 207644 station_ip 5.120.8.214 207644 port 17 207644 unique_id port 207644 remote_ip 10.8.1.122 207647 username hamid.e 207647 unique_id port 207647 terminate_cause Lost-Carrier 207647 bytes_out 17527601 207647 bytes_in 290847087 207647 station_ip 37.27.61.63 207647 port 15730349 207647 nas_port_type Virtual 207647 remote_ip 5.5.5.163 207648 username hosseini0093 207648 mac 207648 bytes_out 0 207648 bytes_in 0 207648 station_ip 5.120.184.108 207648 port 14 207648 unique_id port 207648 remote_ip 10.8.1.170 207655 username hashtadani5 207655 mac 207655 bytes_out 0 207655 bytes_in 0 207655 station_ip 83.123.91.178 207655 port 19 207655 unique_id port 207655 remote_ip 10.8.1.174 207658 username hashtadani5 207658 mac 207658 bytes_out 0 207658 bytes_in 0 207658 station_ip 83.123.91.178 207658 port 21 207658 unique_id port 207658 remote_ip 10.8.1.174 207661 username hashtadani5 207661 mac 207661 bytes_out 0 207661 bytes_in 0 207661 station_ip 83.123.91.178 207661 port 21 207661 unique_id port 207661 remote_ip 10.8.1.174 207665 username pourshad 207665 mac 207665 bytes_out 0 207665 bytes_in 0 207665 station_ip 5.119.204.50 207665 port 16 207665 unique_id port 207665 remote_ip 10.8.1.10 207667 username nilufarrajaei 207667 kill_reason Another user logged on this global unique id 207667 mac 207667 bytes_out 0 207667 bytes_in 0 207667 station_ip 83.123.230.183 207667 port 19 207667 unique_id port 207667 remote_ip 10.8.1.126 207673 username hashtadani5 207673 mac 207673 bytes_out 0 207673 bytes_in 0 207673 station_ip 83.123.91.178 207673 port 19 207673 unique_id port 207673 remote_ip 10.8.0.174 207676 username dortaj3792 207676 mac 207676 bytes_out 0 207676 bytes_in 0 207676 station_ip 5.119.128.161 207676 port 14 207676 unique_id port 207676 remote_ip 10.8.1.62 207677 username morteza4424 207677 mac 207677 bytes_out 0 207677 bytes_in 0 207677 station_ip 113.203.52.13 207677 port 3 207677 unique_id port 207677 remote_ip 10.8.1.42 207679 username hashtadani5 207679 mac 207679 bytes_out 0 207679 bytes_in 0 207679 station_ip 83.123.91.178 207679 port 11 207679 unique_id port 207679 remote_ip 10.8.0.174 207683 username hashtadani5 207683 mac 207683 bytes_out 0 207683 bytes_in 0 207683 station_ip 83.123.91.178 207683 port 11 207654 bytes_out 0 207654 bytes_in 0 207654 station_ip 113.203.52.13 207654 port 18 207654 unique_id port 207654 remote_ip 10.8.0.30 207656 username barzegar 207656 mac 207656 bytes_out 0 207656 bytes_in 0 207656 station_ip 5.120.123.101 207656 port 20 207656 unique_id port 207656 remote_ip 10.8.1.30 207659 username barzegar 207659 mac 207659 bytes_out 0 207659 bytes_in 0 207659 station_ip 5.120.123.101 207659 port 22 207659 unique_id port 207659 remote_ip 10.8.1.30 207662 username hamid1430 207662 mac 207662 bytes_out 164036 207662 bytes_in 450993 207662 station_ip 37.129.99.118 207662 port 17 207662 unique_id port 207662 remote_ip 10.8.0.62 207664 username hashtadani5 207664 mac 207664 bytes_out 0 207664 bytes_in 0 207664 station_ip 83.123.91.178 207664 port 11 207664 unique_id port 207664 remote_ip 10.8.0.174 207666 username hashtadani5 207666 mac 207666 bytes_out 0 207666 bytes_in 0 207666 station_ip 83.123.91.178 207666 port 21 207666 unique_id port 207666 remote_ip 10.8.1.174 207669 username rashidi4690 207669 mac 207669 bytes_out 988606 207669 bytes_in 6110628 207669 station_ip 5.119.97.112 207669 port 3 207669 unique_id port 207669 remote_ip 10.8.1.50 207672 username morteza4424 207672 mac 207672 bytes_out 0 207672 bytes_in 0 207672 station_ip 113.203.52.13 207672 port 11 207672 unique_id port 207672 remote_ip 10.8.0.30 207678 username hashtadani5 207678 mac 207678 bytes_out 0 207678 bytes_in 0 207678 station_ip 83.123.91.178 207678 port 11 207678 unique_id port 207678 remote_ip 10.8.0.174 207680 username alipour1506 207680 kill_reason Another user logged on this global unique id 207680 mac 207680 bytes_out 0 207680 bytes_in 0 207680 station_ip 151.234.21.25 207680 port 15 207680 unique_id port 207680 remote_ip 10.8.1.158 207682 username barzegar 207682 mac 207682 bytes_out 0 207682 bytes_in 0 207682 station_ip 5.120.123.101 207682 port 21 207682 unique_id port 207682 remote_ip 10.8.1.30 207684 username meghdad1616 207684 kill_reason Another user logged on this global unique id 207684 mac 207684 bytes_out 0 207684 bytes_in 0 207684 station_ip 5.120.8.214 207684 port 17 207684 unique_id port 207685 username dortaj3792 207685 kill_reason Another user logged on this global unique id 207685 mac 207685 bytes_out 0 207685 bytes_in 0 207685 station_ip 5.119.128.161 207685 port 19 207685 unique_id port 207685 remote_ip 10.8.1.62 207688 username hashtadani5 207688 mac 207688 bytes_out 0 207688 bytes_in 0 207688 station_ip 83.123.91.178 207688 port 11 207688 unique_id port 207688 remote_ip 10.8.0.174 207689 username kharazmi2920 207689 mac 207689 bytes_out 2430907 207689 bytes_in 10021939 207689 station_ip 83.122.132.5 207689 port 9 207689 unique_id port 207689 remote_ip 10.8.0.54 207692 username meghdad1616 207692 mac 207692 bytes_out 0 207692 bytes_in 0 207692 station_ip 5.120.8.214 207692 port 17 207692 unique_id port 207695 username godarzi 207695 kill_reason Another user logged on this global unique id 207695 mac 207695 bytes_out 0 207695 bytes_in 0 207695 station_ip 5.202.98.177 207695 port 15 207695 unique_id port 207698 username hashtadani5 207698 mac 207698 bytes_out 0 207698 bytes_in 0 207698 station_ip 83.123.91.178 207698 port 17 207698 unique_id port 207698 remote_ip 10.8.1.174 207701 username hashtadani5 207701 mac 207701 bytes_out 0 207701 bytes_in 0 207701 station_ip 83.123.91.178 207701 port 11 207701 unique_id port 207701 remote_ip 10.8.0.174 207704 username meghdad1616 207704 mac 207657 bytes_in 0 207657 station_ip 83.123.230.183 207657 port 11 207657 unique_id port 207660 username morteza4424 207660 mac 207660 bytes_out 0 207660 bytes_in 0 207660 station_ip 113.203.52.13 207660 port 11 207660 unique_id port 207660 remote_ip 10.8.0.30 207663 username hashtadani5 207663 kill_reason Maximum check online fails reached 207663 mac 207663 bytes_out 0 207663 bytes_in 0 207663 station_ip 83.123.91.178 207663 port 20 207663 unique_id port 207668 username morteza4424 207668 mac 207668 bytes_out 0 207668 bytes_in 0 207668 station_ip 113.203.52.13 207668 port 11 207668 unique_id port 207668 remote_ip 10.8.0.30 207670 username hashtadani5 207670 mac 207670 bytes_out 235034 207670 bytes_in 277754 207670 station_ip 83.123.91.178 207670 port 19 207670 unique_id port 207670 remote_ip 10.8.0.174 207671 username mostafa_es78 207671 kill_reason Another user logged on this global unique id 207671 mac 207671 bytes_out 0 207671 bytes_in 0 207671 station_ip 37.129.71.31 207671 port 17 207671 unique_id port 207671 remote_ip 10.8.0.42 207674 username arash 207674 kill_reason Relative expiration date has reached 207674 mac 207674 bytes_out 0 207674 bytes_in 0 207674 station_ip 37.27.58.74 207674 port 3 207674 unique_id port 207675 username morteza4424 207675 mac 207675 bytes_out 2013 207675 bytes_in 4674 207675 station_ip 113.203.52.13 207675 port 11 207675 unique_id port 207675 remote_ip 10.8.0.30 207681 username arash 207681 kill_reason Relative expiration date has reached 207681 mac 207681 bytes_out 0 207681 bytes_in 0 207681 station_ip 37.27.58.74 207681 port 22 207681 unique_id port 207687 username kalantary6037 207687 mac 207687 bytes_out 22006 207687 bytes_in 30509 207687 station_ip 37.129.140.57 207687 port 11 207687 unique_id port 207687 remote_ip 10.8.0.18 207693 username hamid.e 207693 unique_id port 207693 terminate_cause User-Request 207693 bytes_out 1572672 207693 bytes_in 28696807 207693 station_ip 37.27.8.119 207693 port 15730358 207693 nas_port_type Virtual 207693 remote_ip 5.5.5.130 207696 username barzegar 207696 mac 207696 bytes_out 0 207696 bytes_in 0 207696 station_ip 5.120.123.101 207696 port 16 207696 unique_id port 207696 remote_ip 10.8.1.30 207702 username seyedrezaei2572 207702 mac 207702 bytes_out 171247 207702 bytes_in 265433 207702 station_ip 83.123.165.212 207702 port 9 207702 unique_id port 207702 remote_ip 10.8.0.110 207705 username meghdad1616 207705 mac 207705 bytes_out 0 207705 bytes_in 0 207705 station_ip 5.120.8.214 207705 port 6 207705 unique_id port 207705 remote_ip 10.8.0.158 207707 username barzegar 207707 mac 207707 bytes_out 0 207707 bytes_in 0 207707 station_ip 5.120.123.101 207707 port 16 207707 unique_id port 207707 remote_ip 10.8.1.30 207711 username hosseine 207711 mac 207711 bytes_out 0 207711 bytes_in 0 207711 station_ip 37.129.146.208 207711 port 16 207711 unique_id port 207713 username pourshad 207713 mac 207713 bytes_out 790930 207713 bytes_in 19534828 207713 station_ip 5.119.204.50 207713 port 4 207713 unique_id port 207713 remote_ip 10.8.0.122 207725 username mehrpoyan101 207725 mac 207725 bytes_out 0 207725 bytes_in 0 207725 station_ip 5.119.223.27 207725 port 19 207725 unique_id port 207725 remote_ip 10.8.1.18 207727 username barzegar 207727 mac 207727 bytes_out 0 207727 bytes_in 0 207727 station_ip 5.120.123.101 207727 port 19 207727 unique_id port 207727 remote_ip 10.8.1.30 207729 username majidsarmast 207729 mac 207729 bytes_out 0 207729 bytes_in 0 207683 unique_id port 207683 remote_ip 10.8.0.174 207686 username hashtadani5 207686 mac 207686 bytes_out 0 207686 bytes_in 0 207686 station_ip 83.123.91.178 207686 port 19 207686 unique_id port 207686 remote_ip 10.8.0.174 207690 username seyedrezaei2572 207690 mac 207690 bytes_out 0 207690 bytes_in 0 207690 station_ip 83.123.165.212 207690 port 4 207690 unique_id port 207690 remote_ip 10.8.0.110 207691 username pourshad 207691 mac 207691 bytes_out 0 207691 bytes_in 0 207691 station_ip 5.119.204.50 207691 port 16 207691 unique_id port 207691 remote_ip 10.8.1.10 207694 username hashtadani5 207694 mac 207694 bytes_out 0 207694 bytes_in 0 207694 station_ip 83.123.91.178 207694 port 4 207694 unique_id port 207694 remote_ip 10.8.0.174 207697 username hashtadani5 207697 mac 207697 bytes_out 0 207697 bytes_in 0 207697 station_ip 83.123.91.178 207697 port 4 207697 unique_id port 207697 remote_ip 10.8.0.174 207699 username hashtadani5 207699 mac 207699 bytes_out 0 207699 bytes_in 0 207699 station_ip 83.123.91.178 207699 port 4 207699 unique_id port 207699 remote_ip 10.8.0.174 207700 username sabaghnezhad 207700 mac 207700 bytes_out 559735 207700 bytes_in 1881947 207700 station_ip 83.122.147.35 207700 port 6 207700 unique_id port 207700 remote_ip 10.8.0.94 207703 username hashtadani5 207703 mac 207703 bytes_out 0 207703 bytes_in 0 207703 station_ip 83.123.91.178 207703 port 6 207703 unique_id port 207703 remote_ip 10.8.0.174 207706 username hashtadani5 207706 mac 207706 bytes_out 0 207706 bytes_in 0 207706 station_ip 83.123.91.178 207706 port 16 207706 unique_id port 207706 remote_ip 10.8.1.174 207708 username hashtadani5 207708 mac 207708 bytes_out 0 207708 bytes_in 0 207708 station_ip 83.123.91.178 207708 port 17 207708 unique_id port 207708 remote_ip 10.8.1.174 207712 username hashtadani5 207712 mac 207712 bytes_out 0 207712 bytes_in 0 207712 station_ip 83.123.91.178 207712 port 6 207712 unique_id port 207712 remote_ip 10.8.0.174 207716 username nilufarrajaei 207716 mac 207716 bytes_out 0 207716 bytes_in 0 207716 station_ip 83.123.230.183 207716 port 3 207716 unique_id port 207716 remote_ip 10.8.1.126 207718 username mammad 207718 unique_id port 207718 terminate_cause User-Request 207718 bytes_out 2492125 207718 bytes_in 20893224 207718 station_ip 5.233.79.16 207718 port 15730393 207718 nas_port_type Virtual 207718 remote_ip 5.5.5.133 207719 username hashtadani5 207719 mac 207719 bytes_out 0 207719 bytes_in 0 207719 station_ip 83.123.91.178 207719 port 19 207719 unique_id port 207719 remote_ip 10.8.1.174 207720 username rezaei 207720 mac 207720 bytes_out 0 207720 bytes_in 0 207720 station_ip 5.119.114.218 207720 port 21 207720 unique_id port 207720 remote_ip 10.8.1.58 207724 username meghdad1616 207724 mac 207724 bytes_out 0 207724 bytes_in 0 207724 station_ip 5.120.8.214 207724 port 17 207724 unique_id port 207724 remote_ip 10.8.1.122 207730 username mehrpoyan101 207730 mac 207730 bytes_out 0 207730 bytes_in 0 207730 station_ip 5.119.223.27 207730 port 17 207730 unique_id port 207730 remote_ip 10.8.1.18 207732 username mehrpoyan101 207732 mac 207732 bytes_out 0 207732 bytes_in 0 207732 station_ip 5.119.223.27 207732 port 17 207732 unique_id port 207732 remote_ip 10.8.1.18 207734 username pourshad 207734 mac 207734 bytes_out 2669031 207734 bytes_in 36505933 207734 station_ip 5.119.204.50 207734 port 18 207734 unique_id port 207734 remote_ip 10.8.1.10 207704 bytes_out 0 207704 bytes_in 0 207704 station_ip 5.120.8.214 207704 port 16 207704 unique_id port 207704 remote_ip 10.8.1.122 207709 username hashtadani5 207709 kill_reason Another user logged on this global unique id 207709 mac 207709 bytes_out 0 207709 bytes_in 0 207709 station_ip 83.123.91.178 207709 port 16 207709 unique_id port 207709 remote_ip 10.8.1.174 207710 username kalantary6037 207710 mac 207710 bytes_out 0 207710 bytes_in 0 207710 station_ip 37.129.235.121 207710 port 6 207710 unique_id port 207710 remote_ip 10.8.0.18 207714 username hashtadani5 207714 mac 207714 bytes_out 179775 207714 bytes_in 2021594 207714 station_ip 83.123.91.178 207714 port 6 207714 unique_id port 207714 remote_ip 10.8.0.174 207715 username hamid1430 207715 mac 207715 bytes_out 2567453 207715 bytes_in 36181633 207715 station_ip 37.129.99.118 207715 port 18 207715 unique_id port 207715 remote_ip 10.8.0.62 207717 username hashtadani5 207717 mac 207717 bytes_out 0 207717 bytes_in 0 207717 station_ip 83.123.91.178 207717 port 4 207717 unique_id port 207717 remote_ip 10.8.0.174 207721 username hashtadani5 207721 mac 207721 bytes_out 0 207721 bytes_in 0 207721 station_ip 83.123.91.178 207721 port 6 207721 unique_id port 207721 remote_ip 10.8.0.174 207722 username yarmohamadi7916 207722 kill_reason Another user logged on this global unique id 207722 mac 207722 bytes_out 0 207722 bytes_in 0 207722 station_ip 5.120.41.182 207722 port 13 207722 unique_id port 207722 remote_ip 10.8.1.34 207723 username hashtadani5 207723 mac 207723 bytes_out 0 207723 bytes_in 0 207723 station_ip 83.123.91.178 207723 port 6 207723 unique_id port 207723 remote_ip 10.8.0.174 207726 username meghdad1616 207726 mac 207726 bytes_out 0 207726 bytes_in 0 207726 station_ip 5.120.8.214 207726 port 17 207726 unique_id port 207726 remote_ip 10.8.1.122 207728 username meghdad1616 207728 mac 207728 bytes_out 0 207728 bytes_in 0 207728 station_ip 5.120.8.214 207728 port 17 207728 unique_id port 207728 remote_ip 10.8.1.122 207731 username hashtadani5 207731 mac 207731 bytes_out 0 207731 bytes_in 0 207731 station_ip 83.123.91.178 207731 port 11 207731 unique_id port 207731 remote_ip 10.8.0.174 207735 username hashtadani5 207735 mac 207735 bytes_out 0 207735 bytes_in 0 207735 station_ip 83.123.91.178 207735 port 17 207735 unique_id port 207735 remote_ip 10.8.1.174 207737 username kalantary6037 207737 mac 207737 bytes_out 1004440 207737 bytes_in 10025928 207737 station_ip 37.129.174.33 207737 port 6 207737 unique_id port 207737 remote_ip 10.8.0.18 207741 username hashtadani5 207741 kill_reason Maximum number of concurrent logins reached 207741 mac 207741 bytes_out 0 207741 bytes_in 0 207741 station_ip 83.123.91.178 207741 port 17 207741 unique_id port 207743 username yarmohamadi7916 207743 mac 207743 bytes_out 0 207743 bytes_in 0 207743 station_ip 5.120.41.182 207743 port 13 207743 unique_id port 207747 username esmaeilkazemi 207747 mac 207747 bytes_out 7070 207747 bytes_in 25514 207747 station_ip 37.129.202.243 207747 port 21 207747 unique_id port 207747 remote_ip 10.8.0.66 207750 username barzegar8595 207750 mac 207750 bytes_out 0 207750 bytes_in 0 207750 station_ip 46.225.208.162 207750 port 14 207750 unique_id port 207750 remote_ip 10.8.1.26 207754 username mehrpoyan101 207754 mac 207754 bytes_out 891284 207754 bytes_in 6680857 207754 station_ip 5.119.223.27 207754 port 6 207754 unique_id port 207754 remote_ip 10.8.0.134 207756 username mohammadjavad 207729 station_ip 86.57.117.255 207729 port 22 207729 unique_id port 207729 remote_ip 10.8.1.178 207733 username mehrpoyan101 207733 mac 207733 bytes_out 0 207733 bytes_in 0 207733 station_ip 5.119.223.27 207733 port 17 207733 unique_id port 207733 remote_ip 10.8.1.18 207736 username hashtadani5 207736 mac 207736 bytes_out 0 207736 bytes_in 0 207736 station_ip 83.123.91.178 207736 port 17 207736 unique_id port 207736 remote_ip 10.8.1.174 207740 username seyedrezaei2572 207740 mac 207740 bytes_out 0 207740 bytes_in 0 207740 station_ip 83.123.176.140 207740 port 17 207740 unique_id port 207740 remote_ip 10.8.0.110 207744 username mehrpoyan101 207744 mac 207744 bytes_out 0 207744 bytes_in 0 207744 station_ip 5.119.223.27 207744 port 19 207744 unique_id port 207744 remote_ip 10.8.0.134 207746 username barzegar 207746 mac 207746 bytes_out 0 207746 bytes_in 0 207746 station_ip 5.120.123.101 207746 port 19 207746 unique_id port 207746 remote_ip 10.8.0.34 207748 username hatami 207748 mac 207748 bytes_out 649141 207748 bytes_in 5053799 207748 station_ip 37.27.12.119 207748 port 23 207748 unique_id port 207748 remote_ip 10.8.1.70 207751 username kalantary6037 207751 mac 207751 bytes_out 134720 207751 bytes_in 58537 207751 station_ip 37.129.174.33 207751 port 22 207751 unique_id port 207751 remote_ip 10.8.0.18 207755 username khademi 207755 kill_reason Another user logged on this global unique id 207755 mac 207755 bytes_out 0 207755 bytes_in 0 207755 station_ip 37.129.98.124 207755 port 14 207755 unique_id port 207758 username arash 207758 kill_reason Relative expiration date has reached 207758 mac 207758 bytes_out 0 207758 bytes_in 0 207758 station_ip 37.27.58.74 207758 port 21 207758 unique_id port 207760 username esmaeilkazemi 207760 mac 207760 bytes_out 30617 207760 bytes_in 124709 207760 station_ip 37.129.202.243 207760 port 21 207760 unique_id port 207760 remote_ip 10.8.0.66 207766 username charkhandaz3496 207766 mac 207766 bytes_out 0 207766 bytes_in 0 207766 station_ip 5.120.159.239 207766 port 14 207766 unique_id port 207766 remote_ip 10.8.1.154 207771 username mostafa_es78 207771 mac 207771 bytes_out 939157 207771 bytes_in 6081882 207771 station_ip 37.129.45.19 207771 port 9 207771 unique_id port 207771 remote_ip 10.8.0.42 207773 username pourshad 207773 kill_reason Another user logged on this global unique id 207773 mac 207773 bytes_out 0 207773 bytes_in 0 207773 station_ip 5.119.204.50 207773 port 18 207773 unique_id port 207773 remote_ip 10.8.1.10 207776 username nilufarrajaei 207776 mac 207776 bytes_out 0 207776 bytes_in 0 207776 station_ip 83.123.230.183 207776 port 3 207776 unique_id port 207776 remote_ip 10.8.1.126 207778 username barzegar 207778 mac 207778 bytes_out 0 207778 bytes_in 0 207778 station_ip 5.120.123.101 207778 port 3 207778 unique_id port 207778 remote_ip 10.8.1.30 207780 username barzegar 207780 mac 207780 bytes_out 0 207780 bytes_in 0 207780 station_ip 5.120.123.101 207780 port 3 207780 unique_id port 207780 remote_ip 10.8.1.30 207782 username amirzadeh1339 207782 unique_id port 207782 terminate_cause User-Request 207782 bytes_out 111423 207782 bytes_in 1479933 207782 station_ip 37.27.46.91 207782 port 15730397 207782 nas_port_type Virtual 207782 remote_ip 5.5.5.157 207783 username meghdad1616 207783 mac 207783 bytes_out 0 207783 bytes_in 0 207783 station_ip 5.120.8.214 207783 port 3 207783 unique_id port 207783 remote_ip 10.8.1.122 207785 username mohammadjavad 207785 kill_reason Another user logged on this global unique id 207738 username hashtadani5 207738 mac 207738 bytes_out 0 207738 bytes_in 0 207738 station_ip 83.123.91.178 207738 port 17 207738 unique_id port 207738 remote_ip 10.8.0.174 207739 username majidsarmast 207739 kill_reason Another user logged on this global unique id 207739 mac 207739 bytes_out 0 207739 bytes_in 0 207739 station_ip 37.129.129.76 207739 port 19 207739 unique_id port 207739 remote_ip 10.8.1.178 207742 username hashtadani5 207742 mac 207742 bytes_out 1644 207742 bytes_in 4649 207742 station_ip 83.123.91.178 207742 port 6 207742 unique_id port 207742 remote_ip 10.8.0.174 207745 username barzegar 207745 mac 207745 bytes_out 0 207745 bytes_in 0 207745 station_ip 5.120.123.101 207745 port 13 207745 unique_id port 207745 remote_ip 10.8.1.30 207749 username rashidi4690 207749 mac 207749 bytes_out 0 207749 bytes_in 0 207749 station_ip 5.119.143.118 207749 port 13 207749 unique_id port 207749 remote_ip 10.8.1.50 207752 username barzegar 207752 mac 207752 bytes_out 0 207752 bytes_in 0 207752 station_ip 5.120.123.101 207752 port 14 207752 unique_id port 207752 remote_ip 10.8.1.30 207753 username farhad3 207753 mac 207753 bytes_out 0 207753 bytes_in 0 207753 station_ip 5.119.161.127 207753 port 14 207753 unique_id port 207753 remote_ip 10.8.1.86 207757 username meghdad1616 207757 mac 207757 bytes_out 0 207757 bytes_in 0 207757 station_ip 5.120.8.214 207757 port 14 207757 unique_id port 207757 remote_ip 10.8.1.122 207759 username kalantary6037 207759 mac 207759 bytes_out 130049 207759 bytes_in 870208 207759 station_ip 37.129.174.33 207759 port 19 207759 unique_id port 207759 remote_ip 10.8.0.18 207763 username arash 207763 kill_reason Relative expiration date has reached 207763 mac 207763 bytes_out 0 207763 bytes_in 0 207763 station_ip 37.27.58.74 207763 port 17 207763 unique_id port 207764 username barzegar8595 207764 mac 207764 bytes_out 0 207764 bytes_in 0 207764 station_ip 46.225.208.162 207764 port 13 207764 unique_id port 207764 remote_ip 10.8.1.26 207765 username esmaeilkazemi 207765 mac 207765 bytes_out 13869 207765 bytes_in 36162 207765 station_ip 37.129.202.243 207765 port 6 207765 unique_id port 207765 remote_ip 10.8.0.66 207767 username barzegar 207767 mac 207767 bytes_out 0 207767 bytes_in 0 207767 station_ip 5.120.123.101 207767 port 13 207767 unique_id port 207767 remote_ip 10.8.1.30 207768 username barzegar 207768 mac 207768 bytes_out 0 207768 bytes_in 0 207768 station_ip 5.120.123.101 207768 port 6 207768 unique_id port 207768 remote_ip 10.8.0.34 207769 username farhad3 207769 mac 207769 bytes_out 0 207769 bytes_in 0 207769 station_ip 5.119.161.127 207769 port 14 207769 unique_id port 207769 remote_ip 10.8.1.86 207772 username alipour1506 207772 kill_reason Another user logged on this global unique id 207772 mac 207772 bytes_out 0 207772 bytes_in 0 207772 station_ip 151.234.21.25 207772 port 15 207772 unique_id port 207774 username amirzadeh1339 207774 unique_id port 207774 terminate_cause User-Request 207774 bytes_out 43702743 207774 bytes_in 488838423 207774 station_ip 37.27.46.91 207774 port 15730356 207774 nas_port_type Virtual 207774 remote_ip 5.5.5.157 207777 username kalantary6037 207777 mac 207777 bytes_out 218561 207777 bytes_in 805448 207777 station_ip 37.129.210.125 207777 port 4 207777 unique_id port 207777 remote_ip 10.8.0.18 207784 username nilufarrajaei 207784 mac 207784 bytes_out 367783 207784 bytes_in 300037 207784 station_ip 83.123.230.183 207784 port 9 207784 unique_id port 207756 kill_reason Another user logged on this global unique id 207756 mac 207756 bytes_out 0 207756 bytes_in 0 207756 station_ip 83.123.187.112 207756 port 17 207756 unique_id port 207756 remote_ip 10.8.0.138 207761 username mehrpoyan101 207761 mac 207761 bytes_out 355981 207761 bytes_in 2177905 207761 station_ip 5.120.20.62 207761 port 6 207761 unique_id port 207761 remote_ip 10.8.0.134 207762 username mohammadjavad 207762 kill_reason Another user logged on this global unique id 207762 mac 207762 bytes_out 0 207762 bytes_in 0 207762 station_ip 83.123.187.112 207762 port 17 207762 unique_id port 207770 username dortaj3792 207770 mac 207770 bytes_out 0 207770 bytes_in 0 207770 station_ip 5.119.128.161 207770 port 4 207770 unique_id port 207770 remote_ip 10.8.0.10 207775 username nilufarrajaei 207775 mac 207775 bytes_out 2553240 207775 bytes_in 18515357 207775 station_ip 83.123.230.183 207775 port 3 207775 unique_id port 207775 remote_ip 10.8.1.126 207779 username esmaeilkazemi 207779 mac 207779 bytes_out 11257 207779 bytes_in 27703 207779 station_ip 37.129.202.243 207779 port 17 207779 unique_id port 207779 remote_ip 10.8.0.66 207781 username meghdad1616 207781 mac 207781 bytes_out 1401088 207781 bytes_in 16049769 207781 station_ip 5.120.8.214 207781 port 4 207781 unique_id port 207781 remote_ip 10.8.0.158 207787 username barzegar 207787 mac 207787 bytes_out 0 207787 bytes_in 0 207787 station_ip 5.120.123.101 207787 port 17 207787 unique_id port 207787 remote_ip 10.8.1.30 207789 username meghdad1616 207789 mac 207789 bytes_out 0 207789 bytes_in 0 207789 station_ip 5.120.8.214 207789 port 3 207789 unique_id port 207789 remote_ip 10.8.1.122 207792 username mohammadjavad 207792 mac 207792 bytes_out 324437 207792 bytes_in 4231629 207792 station_ip 83.123.205.108 207792 port 9 207792 unique_id port 207792 remote_ip 10.8.0.138 207797 username meghdad1616 207797 mac 207797 bytes_out 0 207797 bytes_in 0 207797 station_ip 5.120.8.214 207797 port 3 207797 unique_id port 207797 remote_ip 10.8.1.122 207800 username pourshad 207800 kill_reason Another user logged on this global unique id 207800 mac 207800 bytes_out 0 207800 bytes_in 0 207800 station_ip 5.119.204.50 207800 port 18 207800 unique_id port 207806 username kalantary6037 207806 mac 207806 bytes_out 13890 207806 bytes_in 19233 207806 station_ip 37.129.132.109 207806 port 4 207806 unique_id port 207806 remote_ip 10.8.0.18 207807 username charkhandaz3496 207807 mac 207807 bytes_out 0 207807 bytes_in 0 207807 station_ip 5.120.51.100 207807 port 21 207807 unique_id port 207807 remote_ip 10.8.1.154 207816 username mostafa_es78 207816 mac 207816 bytes_out 953918 207816 bytes_in 4648153 207816 station_ip 37.129.45.19 207816 port 6 207816 unique_id port 207816 remote_ip 10.8.0.42 207819 username hamid1430 207819 mac 207819 bytes_out 0 207819 bytes_in 0 207819 station_ip 37.129.99.118 207819 port 18 207819 unique_id port 207821 username kalantary6037 207821 mac 207821 bytes_out 40523 207821 bytes_in 120232 207821 station_ip 37.129.242.109 207821 port 6 207821 unique_id port 207821 remote_ip 10.8.0.18 207828 username houshang 207828 kill_reason Relative expiration date has reached 207828 mac 207828 bytes_out 0 207828 bytes_in 0 207828 station_ip 5.120.134.138 207828 port 21 207828 unique_id port 207829 username houshang 207829 kill_reason Relative expiration date has reached 207829 mac 207829 bytes_out 0 207829 bytes_in 0 207829 station_ip 5.120.134.138 207829 port 12 207829 unique_id port 207784 remote_ip 10.8.0.50 207791 username meghdad1616 207791 mac 207791 bytes_out 0 207791 bytes_in 0 207791 station_ip 5.120.8.214 207791 port 17 207791 unique_id port 207791 remote_ip 10.8.0.158 207793 username nilufarrajaei 207793 mac 207793 bytes_out 0 207793 bytes_in 0 207793 station_ip 83.123.230.183 207793 port 19 207793 unique_id port 207793 remote_ip 10.8.0.50 207794 username nilufarrajaei 207794 mac 207794 bytes_out 0 207794 bytes_in 0 207794 station_ip 83.123.230.183 207794 port 4 207794 unique_id port 207794 remote_ip 10.8.0.50 207801 username arash 207801 kill_reason Relative expiration date has reached 207801 mac 207801 bytes_out 0 207801 bytes_in 0 207801 station_ip 37.27.58.74 207801 port 17 207801 unique_id port 207805 username charkhandaz3496 207805 mac 207805 bytes_out 0 207805 bytes_in 0 207805 station_ip 5.120.159.239 207805 port 19 207805 unique_id port 207805 remote_ip 10.8.1.154 207808 username charkhandaz3496 207808 kill_reason Maximum check online fails reached 207808 mac 207808 bytes_out 0 207808 bytes_in 0 207808 station_ip 5.119.62.165 207808 port 19 207808 unique_id port 207810 username mosi 207810 kill_reason Another user logged on this global unique id 207810 mac 207810 bytes_out 0 207810 bytes_in 0 207810 station_ip 151.235.119.151 207810 port 17 207810 unique_id port 207810 remote_ip 10.8.1.54 207812 username yaghobi 207812 kill_reason Another user logged on this global unique id 207812 mac 207812 bytes_out 0 207812 bytes_in 0 207812 station_ip 37.129.99.158 207812 port 17 207812 unique_id port 207812 remote_ip 10.8.0.106 207813 username arash 207813 kill_reason Relative expiration date has reached 207813 mac 207813 bytes_out 0 207813 bytes_in 0 207813 station_ip 37.27.58.74 207813 port 22 207813 unique_id port 207814 username hamid1430 207814 kill_reason Another user logged on this global unique id 207814 mac 207814 bytes_out 0 207814 bytes_in 0 207814 station_ip 37.129.99.118 207814 port 18 207814 unique_id port 207815 username abdolahi0311 207815 mac 207815 bytes_out 0 207815 bytes_in 0 207815 station_ip 5.120.132.232 207815 port 12 207815 unique_id port 207817 username barzegar 207817 mac 207817 bytes_out 0 207817 bytes_in 0 207817 station_ip 5.120.123.101 207817 port 21 207817 unique_id port 207817 remote_ip 10.8.1.30 207818 username meghdad1616 207818 kill_reason Another user logged on this global unique id 207818 mac 207818 bytes_out 0 207818 bytes_in 0 207818 station_ip 5.120.8.214 207818 port 3 207818 unique_id port 207818 remote_ip 10.8.1.122 207822 username mostafa_es78 207822 kill_reason Another user logged on this global unique id 207822 mac 207822 bytes_out 0 207822 bytes_in 0 207822 station_ip 37.129.45.19 207822 port 17 207822 unique_id port 207822 remote_ip 10.8.0.42 207823 username barzegar 207823 mac 207823 bytes_out 0 207823 bytes_in 0 207823 station_ip 5.120.123.101 207823 port 12 207823 unique_id port 207823 remote_ip 10.8.1.30 207824 username meghdad1616 207824 mac 207824 bytes_out 0 207824 bytes_in 0 207824 station_ip 5.120.8.214 207824 port 3 207824 unique_id port 207834 username barzegar 207834 mac 207834 bytes_out 0 207834 bytes_in 0 207834 station_ip 5.120.123.101 207834 port 12 207834 unique_id port 207834 remote_ip 10.8.1.30 207836 username motamedi9772 207836 kill_reason Another user logged on this global unique id 207836 mac 207836 bytes_out 0 207836 bytes_in 0 207836 station_ip 83.122.41.161 207836 port 6 207836 unique_id port 207836 remote_ip 10.8.0.86 207837 username pourshad 207837 mac 207837 bytes_out 7763623 207785 mac 207785 bytes_out 0 207785 bytes_in 0 207785 station_ip 83.123.205.108 207785 port 17 207785 unique_id port 207785 remote_ip 10.8.0.138 207786 username meghdad1616 207786 mac 207786 bytes_out 0 207786 bytes_in 0 207786 station_ip 5.120.8.214 207786 port 3 207786 unique_id port 207786 remote_ip 10.8.1.122 207788 username khalili2 207788 mac 207788 bytes_out 1968065 207788 bytes_in 25970843 207788 station_ip 5.120.71.173 207788 port 19 207788 unique_id port 207788 remote_ip 10.8.0.78 207790 username nilufarrajaei 207790 mac 207790 bytes_out 31774 207790 bytes_in 48439 207790 station_ip 83.123.230.183 207790 port 4 207790 unique_id port 207790 remote_ip 10.8.0.50 207795 username nilufarrajaei 207795 mac 207795 bytes_out 0 207795 bytes_in 0 207795 station_ip 83.123.230.183 207795 port 9 207795 unique_id port 207795 remote_ip 10.8.0.50 207796 username nilufarrajaei 207796 mac 207796 bytes_out 0 207796 bytes_in 0 207796 station_ip 83.123.230.183 207796 port 4 207796 unique_id port 207796 remote_ip 10.8.0.50 207798 username barzegar8595 207798 mac 207798 bytes_out 1295107 207798 bytes_in 18080211 207798 station_ip 46.225.208.162 207798 port 6 207798 unique_id port 207798 remote_ip 10.8.0.170 207799 username meghdad1616 207799 mac 207799 bytes_out 0 207799 bytes_in 0 207799 station_ip 5.120.8.214 207799 port 4 207799 unique_id port 207799 remote_ip 10.8.0.158 207802 username godarzi 207802 kill_reason Another user logged on this global unique id 207802 mac 207802 bytes_out 0 207802 bytes_in 0 207802 station_ip 5.202.98.177 207802 port 15 207802 unique_id port 207803 username barzegar 207803 mac 207803 bytes_out 0 207803 bytes_in 0 207803 station_ip 5.120.123.101 207803 port 19 207803 unique_id port 207803 remote_ip 10.8.1.30 207804 username milan 207804 kill_reason Another user logged on this global unique id 207804 mac 207804 bytes_out 0 207804 bytes_in 0 207804 station_ip 5.120.109.57 207804 port 2 207804 unique_id port 207809 username arash 207809 kill_reason Relative expiration date has reached 207809 mac 207809 bytes_out 0 207809 bytes_in 0 207809 station_ip 37.27.58.74 207809 port 21 207809 unique_id port 207811 username arash 207811 kill_reason Relative expiration date has reached 207811 mac 207811 bytes_out 0 207811 bytes_in 0 207811 station_ip 37.27.58.74 207811 port 22 207811 unique_id port 207820 username mosi 207820 mac 207820 bytes_out 0 207820 bytes_in 0 207820 station_ip 151.235.119.151 207820 port 17 207820 unique_id port 207825 username pourshad 207825 mac 207825 bytes_out 0 207825 bytes_in 0 207825 station_ip 5.119.204.50 207825 port 3 207825 unique_id port 207825 remote_ip 10.8.1.10 207826 username barzegar 207826 mac 207826 bytes_out 0 207826 bytes_in 0 207826 station_ip 5.120.123.101 207826 port 12 207826 unique_id port 207826 remote_ip 10.8.1.30 207827 username houshang 207827 kill_reason Relative expiration date has reached 207827 mac 207827 bytes_out 0 207827 bytes_in 0 207827 station_ip 5.120.134.138 207827 port 21 207827 unique_id port 207830 username farhad3 207830 kill_reason Another user logged on this global unique id 207830 mac 207830 bytes_out 0 207830 bytes_in 0 207830 station_ip 5.119.161.127 207830 port 14 207830 unique_id port 207830 remote_ip 10.8.1.86 207831 username hamid1430 207831 mac 207831 bytes_out 0 207831 bytes_in 0 207831 station_ip 37.129.99.118 207831 port 18 207831 unique_id port 207833 username tahmorsi 207833 kill_reason Another user logged on this global unique id 207833 mac 207832 username barzegar 207832 mac 207832 bytes_out 0 207832 bytes_in 0 207832 station_ip 5.120.123.101 207832 port 12 207832 unique_id port 207832 remote_ip 10.8.1.30 207839 username farhad3 207839 mac 207839 bytes_out 0 207839 bytes_in 0 207839 station_ip 5.119.161.127 207839 port 14 207839 unique_id port 207841 username barzegar 207841 mac 207841 bytes_out 425134 207841 bytes_in 4529300 207841 station_ip 5.120.123.101 207841 port 12 207841 unique_id port 207841 remote_ip 10.8.1.30 207849 username dorani4942 207849 mac 207849 bytes_out 0 207849 bytes_in 0 207849 station_ip 83.122.56.136 207849 port 21 207849 unique_id port 207849 remote_ip 10.8.1.118 207850 username nekheei 207850 mac 207850 bytes_out 0 207850 bytes_in 0 207850 station_ip 5.120.149.132 207850 port 12 207850 unique_id port 207850 remote_ip 10.8.1.74 207854 username dorani4942 207854 mac 207854 bytes_out 0 207854 bytes_in 0 207854 station_ip 83.122.56.136 207854 port 19 207854 unique_id port 207854 remote_ip 10.8.0.82 207857 username moslem6940 207857 mac 207857 bytes_out 0 207857 bytes_in 0 207857 station_ip 83.123.157.21 207857 port 1 207857 unique_id port 207857 remote_ip 10.8.0.178 207859 username moslem6940 207859 mac 207859 bytes_out 0 207859 bytes_in 0 207859 station_ip 83.123.157.21 207859 port 1 207859 unique_id port 207859 remote_ip 10.8.0.178 207860 username moslem6940 207860 mac 207860 bytes_out 0 207860 bytes_in 0 207860 station_ip 83.123.157.21 207860 port 1 207860 unique_id port 207860 remote_ip 10.8.0.178 207863 username nilufarrajaei 207863 mac 207863 bytes_out 4213622 207863 bytes_in 33522679 207863 station_ip 83.123.230.183 207863 port 9 207863 unique_id port 207863 remote_ip 10.8.0.50 207864 username dorani4942 207864 mac 207864 bytes_out 0 207864 bytes_in 0 207864 station_ip 83.122.56.136 207864 port 22 207864 unique_id port 207864 remote_ip 10.8.1.118 207868 username dorani4942 207868 mac 207868 bytes_out 0 207868 bytes_in 0 207868 station_ip 83.122.56.136 207868 port 6 207868 unique_id port 207868 remote_ip 10.8.0.82 207873 username moslem6940 207873 mac 207873 bytes_out 0 207873 bytes_in 0 207873 station_ip 83.123.157.21 207873 port 1 207873 unique_id port 207875 username barzegar 207875 mac 207875 bytes_out 0 207875 bytes_in 0 207875 station_ip 5.120.123.101 207875 port 22 207875 unique_id port 207875 remote_ip 10.8.1.30 207877 username houshang 207877 kill_reason Relative expiration date has reached 207877 mac 207877 bytes_out 0 207877 bytes_in 0 207877 station_ip 5.120.134.138 207877 port 12 207877 unique_id port 207878 username farhad3 207878 mac 207878 bytes_out 0 207878 bytes_in 0 207878 station_ip 5.119.161.127 207878 port 14 207878 unique_id port 207878 remote_ip 10.8.1.86 207882 username mosi 207882 mac 207882 bytes_out 0 207882 bytes_in 0 207882 station_ip 151.235.119.151 207882 port 17 207882 unique_id port 207885 username alipour1506 207885 kill_reason Another user logged on this global unique id 207885 mac 207885 bytes_out 0 207885 bytes_in 0 207885 station_ip 151.234.21.25 207885 port 15 207885 unique_id port 207888 username moslem6940 207888 mac 207888 bytes_out 0 207888 bytes_in 0 207888 station_ip 83.123.157.21 207888 port 6 207888 unique_id port 207888 remote_ip 10.8.0.178 207890 username moslem6940 207890 mac 207890 bytes_out 0 207890 bytes_in 0 207890 station_ip 83.123.157.21 207890 port 9 207890 unique_id port 207833 bytes_out 0 207833 bytes_in 0 207833 station_ip 86.57.47.132 207833 port 3 207833 unique_id port 207833 remote_ip 10.8.1.78 207835 username mosi 207835 kill_reason Another user logged on this global unique id 207835 mac 207835 bytes_out 0 207835 bytes_in 0 207835 station_ip 151.235.119.151 207835 port 17 207835 unique_id port 207844 username sekonji0496 207844 mac 207844 bytes_out 0 207844 bytes_in 0 207844 station_ip 37.129.234.247 207844 port 1 207844 unique_id port 207846 username dorani4942 207846 mac 207846 bytes_out 0 207846 bytes_in 0 207846 station_ip 83.122.56.136 207846 port 21 207846 unique_id port 207846 remote_ip 10.8.1.118 207851 username farhad3 207851 mac 207851 bytes_out 0 207851 bytes_in 0 207851 station_ip 5.119.161.127 207851 port 14 207851 unique_id port 207851 remote_ip 10.8.1.86 207853 username pourshad 207853 mac 207853 bytes_out 0 207853 bytes_in 0 207853 station_ip 5.119.204.50 207853 port 3 207853 unique_id port 207853 remote_ip 10.8.1.10 207862 username moslem6940 207862 mac 207862 bytes_out 0 207862 bytes_in 0 207862 station_ip 83.123.157.21 207862 port 1 207862 unique_id port 207862 remote_ip 10.8.0.178 207865 username barzegar 207865 mac 207865 bytes_out 0 207865 bytes_in 0 207865 station_ip 5.120.123.101 207865 port 14 207865 unique_id port 207865 remote_ip 10.8.1.30 207869 username moslem6940 207869 kill_reason Another user logged on this global unique id 207869 mac 207869 bytes_out 0 207869 bytes_in 0 207869 station_ip 83.123.157.21 207869 port 1 207869 unique_id port 207869 remote_ip 10.8.0.178 207870 username dorani4942 207870 mac 207870 bytes_out 0 207870 bytes_in 0 207870 station_ip 83.122.56.136 207870 port 22 207870 unique_id port 207870 remote_ip 10.8.1.118 207871 username nilufarrajaei 207871 mac 207871 bytes_out 365611 207871 bytes_in 3282533 207871 station_ip 83.123.230.183 207871 port 19 207871 unique_id port 207871 remote_ip 10.8.0.50 207876 username rezaei 207876 mac 207876 bytes_out 2429541 207876 bytes_in 23872961 207876 station_ip 5.119.114.218 207876 port 12 207876 unique_id port 207876 remote_ip 10.8.1.58 207879 username dorani4942 207879 mac 207879 bytes_out 0 207879 bytes_in 0 207879 station_ip 83.122.56.136 207879 port 1 207879 unique_id port 207879 remote_ip 10.8.0.82 207883 username dorani4942 207883 mac 207883 bytes_out 0 207883 bytes_in 0 207883 station_ip 83.122.56.136 207883 port 1 207883 unique_id port 207883 remote_ip 10.8.0.82 207887 username mostafa_es78 207887 mac 207887 bytes_out 11259 207887 bytes_in 22446 207887 station_ip 37.129.45.19 207887 port 6 207887 unique_id port 207887 remote_ip 10.8.0.42 207889 username mostafa_es78 207889 mac 207889 bytes_out 0 207889 bytes_in 0 207889 station_ip 37.129.45.19 207889 port 1 207889 unique_id port 207889 remote_ip 10.8.0.42 207899 username moslem6940 207899 mac 207899 bytes_out 0 207899 bytes_in 0 207899 station_ip 83.123.157.21 207899 port 14 207899 unique_id port 207899 remote_ip 10.8.1.186 207901 username moslem6940 207901 mac 207901 bytes_out 0 207901 bytes_in 0 207901 station_ip 83.123.157.21 207901 port 19 207901 unique_id port 207901 remote_ip 10.8.0.178 207903 username kalantary6037 207903 mac 207903 bytes_out 56601 207903 bytes_in 68138 207903 station_ip 37.129.224.45 207903 port 9 207903 unique_id port 207903 remote_ip 10.8.0.18 207905 username moslem6940 207905 mac 207905 bytes_out 0 207905 bytes_in 0 207905 station_ip 83.123.157.21 207837 bytes_in 32513960 207837 station_ip 5.119.204.50 207837 port 19 207837 unique_id port 207837 remote_ip 10.8.0.122 207838 username sekonji0496 207838 kill_reason Another user logged on this global unique id 207838 mac 207838 bytes_out 0 207838 bytes_in 0 207838 station_ip 37.129.234.247 207838 port 1 207838 unique_id port 207838 remote_ip 10.8.0.70 207840 username farhad3 207840 mac 207840 bytes_out 0 207840 bytes_in 0 207840 station_ip 5.119.161.127 207840 port 14 207840 unique_id port 207840 remote_ip 10.8.1.86 207842 username sekonji0496 207842 kill_reason Another user logged on this global unique id 207842 mac 207842 bytes_out 0 207842 bytes_in 0 207842 station_ip 37.129.234.247 207842 port 1 207842 unique_id port 207843 username tahmorsi 207843 mac 207843 bytes_out 0 207843 bytes_in 0 207843 station_ip 86.57.47.132 207843 port 3 207843 unique_id port 207845 username hamid1430 207845 kill_reason Another user logged on this global unique id 207845 mac 207845 bytes_out 0 207845 bytes_in 0 207845 station_ip 37.129.99.118 207845 port 18 207845 unique_id port 207845 remote_ip 10.8.0.62 207847 username motamedi9772 207847 mac 207847 bytes_out 0 207847 bytes_in 0 207847 station_ip 83.122.41.161 207847 port 6 207847 unique_id port 207848 username arash 207848 kill_reason Relative expiration date has reached 207848 mac 207848 bytes_out 0 207848 bytes_in 0 207848 station_ip 37.27.58.74 207848 port 21 207848 unique_id port 207852 username barzegar 207852 mac 207852 bytes_out 3947 207852 bytes_in 10862 207852 station_ip 5.120.123.101 207852 port 1 207852 unique_id port 207852 remote_ip 10.8.0.34 207855 username kalantary6037 207855 mac 207855 bytes_out 68059 207855 bytes_in 83133 207855 station_ip 37.129.154.121 207855 port 1 207855 unique_id port 207855 remote_ip 10.8.0.18 207856 username moslem6940 207856 mac 207856 bytes_out 265005 207856 bytes_in 2300433 207856 station_ip 83.123.157.21 207856 port 6 207856 unique_id port 207856 remote_ip 10.8.0.178 207858 username farhad3 207858 mac 207858 bytes_out 0 207858 bytes_in 0 207858 station_ip 5.119.161.127 207858 port 12 207858 unique_id port 207858 remote_ip 10.8.1.86 207861 username moslem6940 207861 mac 207861 bytes_out 0 207861 bytes_in 0 207861 station_ip 83.123.157.21 207861 port 1 207861 unique_id port 207861 remote_ip 10.8.0.178 207866 username mosi 207866 kill_reason Another user logged on this global unique id 207866 mac 207866 bytes_out 0 207866 bytes_in 0 207866 station_ip 151.235.119.151 207866 port 17 207866 unique_id port 207867 username farhad3 207867 mac 207867 bytes_out 380362 207867 bytes_in 1270269 207867 station_ip 5.119.161.127 207867 port 6 207867 unique_id port 207867 remote_ip 10.8.0.98 207872 username dorani4942 207872 mac 207872 bytes_out 3033 207872 bytes_in 5564 207872 station_ip 83.122.56.136 207872 port 6 207872 unique_id port 207872 remote_ip 10.8.0.82 207874 username moslem6940 207874 mac 207874 bytes_out 0 207874 bytes_in 0 207874 station_ip 83.123.157.21 207874 port 1 207874 unique_id port 207874 remote_ip 10.8.0.178 207880 username kalantary6037 207880 mac 207880 bytes_out 98493 207880 bytes_in 140061 207880 station_ip 37.129.253.21 207880 port 9 207880 unique_id port 207880 remote_ip 10.8.0.18 207881 username moslem6940 207881 mac 207881 bytes_out 0 207881 bytes_in 0 207881 station_ip 83.123.157.21 207881 port 1 207881 unique_id port 207881 remote_ip 10.8.0.178 207884 username moslem6940 207884 mac 207884 bytes_out 0 207884 bytes_in 0 207884 station_ip 83.123.157.21 207884 port 14 207884 unique_id port 207884 remote_ip 10.8.1.186 207886 username moslem6940 207886 mac 207886 bytes_out 0 207886 bytes_in 0 207886 station_ip 83.123.157.21 207886 port 1 207886 unique_id port 207886 remote_ip 10.8.0.178 207891 username moslem6940 207891 mac 207891 bytes_out 0 207891 bytes_in 0 207891 station_ip 83.123.157.21 207891 port 1 207891 unique_id port 207891 remote_ip 10.8.0.178 207892 username moslem6940 207892 mac 207892 bytes_out 0 207892 bytes_in 0 207892 station_ip 83.123.157.21 207892 port 1 207892 unique_id port 207892 remote_ip 10.8.0.178 207894 username dorani4942 207894 mac 207894 bytes_out 0 207894 bytes_in 0 207894 station_ip 83.122.56.136 207894 port 14 207894 unique_id port 207894 remote_ip 10.8.1.118 207897 username barzegar 207897 mac 207897 bytes_out 0 207897 bytes_in 0 207897 station_ip 5.120.123.101 207897 port 14 207897 unique_id port 207897 remote_ip 10.8.1.30 207898 username esmaeilkazemi 207898 mac 207898 bytes_out 17855 207898 bytes_in 46994 207898 station_ip 37.129.202.243 207898 port 1 207898 unique_id port 207898 remote_ip 10.8.0.66 207900 username esmaeilkazemi 207900 mac 207900 bytes_out 13278 207900 bytes_in 28965 207900 station_ip 37.129.202.243 207900 port 19 207900 unique_id port 207900 remote_ip 10.8.0.66 207904 username moslem6940 207904 kill_reason Another user logged on this global unique id 207904 mac 207904 bytes_out 0 207904 bytes_in 0 207904 station_ip 83.123.157.21 207904 port 17 207904 unique_id port 207906 username majidsarmast 207906 mac 207906 bytes_out 0 207906 bytes_in 0 207906 station_ip 37.129.214.204 207906 port 3 207906 unique_id port 207906 remote_ip 10.8.1.178 207911 username moslem6940 207911 mac 207911 bytes_out 5142 207911 bytes_in 9822 207911 station_ip 83.123.157.21 207911 port 19 207911 unique_id port 207911 remote_ip 10.8.0.178 207912 username moslem6940 207912 mac 207912 bytes_out 0 207912 bytes_in 0 207912 station_ip 83.123.157.21 207912 port 3 207912 unique_id port 207912 remote_ip 10.8.1.186 207914 username kamali3 207914 kill_reason Another user logged on this global unique id 207914 mac 207914 bytes_out 0 207914 bytes_in 0 207914 station_ip 83.122.30.202 207914 port 1 207914 unique_id port 207914 remote_ip 10.8.0.182 207916 username moslem6940 207916 mac 207916 bytes_out 0 207916 bytes_in 0 207916 station_ip 83.123.157.21 207916 port 3 207916 unique_id port 207916 remote_ip 10.8.1.186 207919 username moslem6940 207919 mac 207919 bytes_out 0 207919 bytes_in 0 207919 station_ip 83.123.157.21 207919 port 3 207919 unique_id port 207919 remote_ip 10.8.1.186 207926 username rashidi4690 207926 mac 207926 bytes_out 0 207926 bytes_in 0 207926 station_ip 5.119.143.118 207926 port 13 207926 unique_id port 207926 remote_ip 10.8.1.50 207929 username kalantary6037 207929 mac 207929 bytes_out 39146 207929 bytes_in 34427 207929 station_ip 37.129.211.21 207929 port 9 207929 unique_id port 207929 remote_ip 10.8.0.18 207932 username barzegar 207932 mac 207932 bytes_out 0 207932 bytes_in 0 207932 station_ip 5.120.123.101 207932 port 3 207932 unique_id port 207932 remote_ip 10.8.1.30 207941 username kalantary6037 207941 mac 207941 bytes_out 282686 207941 bytes_in 2558396 207941 station_ip 37.129.248.61 207941 port 1 207941 unique_id port 207941 remote_ip 10.8.0.18 207943 username mostafa_es78 207943 mac 207943 bytes_out 49378 207943 bytes_in 100224 207943 station_ip 37.129.45.19 207890 remote_ip 10.8.0.178 207893 username mostafa_es78 207893 mac 207893 bytes_out 0 207893 bytes_in 0 207893 station_ip 37.129.45.19 207893 port 17 207893 unique_id port 207893 remote_ip 10.8.0.42 207895 username motamedi9772 207895 kill_reason Another user logged on this global unique id 207895 mac 207895 bytes_out 0 207895 bytes_in 0 207895 station_ip 83.122.107.69 207895 port 21 207895 unique_id port 207895 remote_ip 10.8.1.182 207896 username moslem6940 207896 mac 207896 bytes_out 0 207896 bytes_in 0 207896 station_ip 83.123.157.21 207896 port 1 207896 unique_id port 207896 remote_ip 10.8.0.178 207902 username dorani4942 207902 mac 207902 bytes_out 0 207902 bytes_in 0 207902 station_ip 83.122.56.136 207902 port 14 207902 unique_id port 207902 remote_ip 10.8.1.118 207907 username moslem6940 207907 mac 207907 bytes_out 0 207907 bytes_in 0 207907 station_ip 83.123.157.21 207907 port 9 207907 unique_id port 207907 remote_ip 10.8.0.178 207909 username godarzi 207909 mac 207909 bytes_out 0 207909 bytes_in 0 207909 station_ip 5.202.98.177 207909 port 15 207909 unique_id port 207917 username moslem6940 207917 mac 207917 bytes_out 0 207917 bytes_in 0 207917 station_ip 83.123.157.21 207917 port 3 207917 unique_id port 207917 remote_ip 10.8.1.186 207921 username moslem6940 207921 mac 207921 bytes_out 0 207921 bytes_in 0 207921 station_ip 83.123.157.21 207921 port 3 207921 unique_id port 207921 remote_ip 10.8.1.186 207922 username moslem6940 207922 mac 207922 bytes_out 0 207922 bytes_in 0 207922 station_ip 83.123.157.21 207922 port 3 207922 unique_id port 207922 remote_ip 10.8.1.186 207924 username barzegar 207924 kill_reason Maximum check online fails reached 207924 mac 207924 bytes_out 0 207924 bytes_in 0 207924 station_ip 5.120.123.101 207924 port 12 207924 unique_id port 207928 username dorani4942 207928 mac 207928 bytes_out 0 207928 bytes_in 0 207928 station_ip 83.122.56.136 207928 port 3 207928 unique_id port 207928 remote_ip 10.8.1.118 207931 username dorani4942 207931 mac 207931 bytes_out 0 207931 bytes_in 0 207931 station_ip 83.122.56.136 207931 port 3 207931 unique_id port 207931 remote_ip 10.8.1.118 207933 username kamali3 207933 kill_reason Another user logged on this global unique id 207933 mac 207933 bytes_out 0 207933 bytes_in 0 207933 station_ip 83.122.30.202 207933 port 1 207933 unique_id port 207934 username farhad3 207934 mac 207934 bytes_out 0 207934 bytes_in 0 207934 station_ip 5.119.161.127 207934 port 13 207934 unique_id port 207934 remote_ip 10.8.1.86 207937 username barzegar 207937 mac 207937 bytes_out 0 207937 bytes_in 0 207937 station_ip 5.120.123.101 207937 port 14 207937 unique_id port 207937 remote_ip 10.8.1.30 207945 username farhad3 207945 kill_reason Another user logged on this global unique id 207945 mac 207945 bytes_out 0 207945 bytes_in 0 207945 station_ip 5.119.161.127 207945 port 13 207945 unique_id port 207945 remote_ip 10.8.1.86 207960 username farhad3 207960 mac 207960 bytes_out 0 207960 bytes_in 0 207960 station_ip 5.119.161.127 207960 port 13 207960 unique_id port 207961 username hosseini0093 207961 mac 207961 bytes_out 0 207961 bytes_in 0 207961 station_ip 5.120.184.108 207961 port 22 207961 unique_id port 207962 username alirezazadeh 207962 unique_id port 207962 terminate_cause User-Request 207962 bytes_out 0 207962 bytes_in 0 207962 station_ip 5.119.223.120 207962 port 15730418 207962 nas_port_type Virtual 207962 remote_ip 5.5.5.140 207964 username jafari 207905 port 9 207905 unique_id port 207905 remote_ip 10.8.0.178 207908 username sabaghnezhad 207908 mac 207908 bytes_out 1774876 207908 bytes_in 5891132 207908 station_ip 83.122.147.35 207908 port 11 207908 unique_id port 207908 remote_ip 10.8.0.94 207910 username alirezazadeh 207910 unique_id port 207910 terminate_cause Lost-Carrier 207910 bytes_out 357793 207910 bytes_in 4373912 207910 station_ip 5.120.138.12 207910 port 15730408 207910 nas_port_type Virtual 207910 remote_ip 5.5.5.138 207913 username hashtadani5 207913 mac 207913 bytes_out 0 207913 bytes_in 0 207913 station_ip 83.123.91.178 207913 port 16 207913 unique_id port 207915 username farhad3 207915 mac 207915 bytes_out 0 207915 bytes_in 0 207915 station_ip 5.119.161.127 207915 port 12 207915 unique_id port 207915 remote_ip 10.8.1.86 207918 username dorani4942 207918 mac 207918 bytes_out 0 207918 bytes_in 0 207918 station_ip 83.122.56.136 207918 port 9 207918 unique_id port 207918 remote_ip 10.8.0.82 207920 username moslem6940 207920 mac 207920 bytes_out 0 207920 bytes_in 0 207920 station_ip 83.123.157.21 207920 port 3 207920 unique_id port 207920 remote_ip 10.8.1.186 207923 username kamali3 207923 kill_reason Another user logged on this global unique id 207923 mac 207923 bytes_out 0 207923 bytes_in 0 207923 station_ip 83.122.30.202 207923 port 1 207923 unique_id port 207925 username kamali3 207925 kill_reason Another user logged on this global unique id 207925 mac 207925 bytes_out 0 207925 bytes_in 0 207925 station_ip 83.122.30.202 207925 port 1 207925 unique_id port 207927 username dorani4942 207927 mac 207927 bytes_out 0 207927 bytes_in 0 207927 station_ip 83.122.56.136 207927 port 3 207927 unique_id port 207927 remote_ip 10.8.1.118 207930 username kamali3 207930 kill_reason Another user logged on this global unique id 207930 mac 207930 bytes_out 0 207930 bytes_in 0 207930 station_ip 83.122.30.202 207930 port 1 207930 unique_id port 207935 username motamedi9772 207935 kill_reason Another user logged on this global unique id 207935 mac 207935 bytes_out 0 207935 bytes_in 0 207935 station_ip 83.122.107.69 207935 port 21 207935 unique_id port 207936 username kamali3 207936 kill_reason Another user logged on this global unique id 207936 mac 207936 bytes_out 0 207936 bytes_in 0 207936 station_ip 83.122.30.202 207936 port 1 207936 unique_id port 207938 username kamali3 207938 kill_reason Another user logged on this global unique id 207938 mac 207938 bytes_out 0 207938 bytes_in 0 207938 station_ip 83.122.30.202 207938 port 1 207938 unique_id port 207939 username kamali3 207939 mac 207939 bytes_out 0 207939 bytes_in 0 207939 station_ip 83.122.30.202 207939 port 1 207939 unique_id port 207940 username mostafa_es78 207940 mac 207940 bytes_out 0 207940 bytes_in 0 207940 station_ip 37.129.45.19 207940 port 6 207940 unique_id port 207940 remote_ip 10.8.0.42 207942 username amirzadeh1339 207942 unique_id port 207942 terminate_cause Lost-Carrier 207942 bytes_out 8108870 207942 bytes_in 169870305 207942 station_ip 37.27.46.91 207942 port 15730399 207942 nas_port_type Virtual 207942 remote_ip 5.5.5.157 207944 username rezaei 207944 kill_reason Another user logged on this global unique id 207944 mac 207944 bytes_out 0 207944 bytes_in 0 207944 station_ip 5.119.114.218 207944 port 3 207944 unique_id port 207944 remote_ip 10.8.1.58 207948 username farhad3 207948 mac 207948 bytes_out 0 207948 bytes_in 0 207948 station_ip 5.119.161.127 207948 port 13 207948 unique_id port 207951 username farhad3 207951 mac 207951 bytes_out 0 207943 port 9 207943 unique_id port 207943 remote_ip 10.8.0.42 207946 username farhad3 207946 kill_reason Another user logged on this global unique id 207946 mac 207946 bytes_out 0 207946 bytes_in 0 207946 station_ip 5.119.161.127 207946 port 13 207946 unique_id port 207947 username barzegar 207947 kill_reason Maximum number of concurrent logins reached 207947 mac 207947 bytes_out 0 207947 bytes_in 0 207947 station_ip 5.120.123.101 207947 port 22 207947 unique_id port 207949 username rezaei 207949 kill_reason Another user logged on this global unique id 207949 mac 207949 bytes_out 0 207949 bytes_in 0 207949 station_ip 5.119.114.218 207949 port 3 207949 unique_id port 207950 username motamedi9772 207950 kill_reason Another user logged on this global unique id 207950 mac 207950 bytes_out 0 207950 bytes_in 0 207950 station_ip 83.122.107.69 207950 port 21 207950 unique_id port 207952 username barzegar 207952 kill_reason Maximum number of concurrent logins reached 207952 mac 207952 bytes_out 0 207952 bytes_in 0 207952 station_ip 5.120.123.101 207952 port 13 207952 unique_id port 207953 username mammad 207953 unique_id port 207953 terminate_cause User-Request 207953 bytes_out 21592488 207953 bytes_in 110023800 207953 station_ip 5.233.79.16 207953 port 15730398 207953 nas_port_type Virtual 207953 remote_ip 5.5.5.133 207954 username mostafa_es78 207954 mac 207954 bytes_out 0 207954 bytes_in 0 207954 station_ip 37.129.45.19 207954 port 1 207954 unique_id port 207954 remote_ip 10.8.0.42 207955 username rezaei 207955 mac 207955 bytes_out 0 207955 bytes_in 0 207955 station_ip 5.119.114.218 207955 port 3 207955 unique_id port 207956 username farhad3 207956 kill_reason Another user logged on this global unique id 207956 mac 207956 bytes_out 0 207956 bytes_in 0 207956 station_ip 5.119.161.127 207956 port 13 207956 unique_id port 207956 remote_ip 10.8.1.86 207963 username amirzadeh1339 207963 unique_id port 207963 terminate_cause User-Request 207963 bytes_out 13090214 207963 bytes_in 317672026 207963 station_ip 37.27.9.163 207963 port 15730410 207963 nas_port_type Virtual 207963 remote_ip 5.5.5.139 207976 username mosi 207976 kill_reason Another user logged on this global unique id 207976 mac 207976 bytes_out 0 207976 bytes_in 0 207976 station_ip 151.235.119.151 207976 port 6 207976 unique_id port 207978 username naeimeh 207978 kill_reason Another user logged on this global unique id 207978 mac 207978 bytes_out 0 207978 bytes_in 0 207978 station_ip 83.122.148.146 207978 port 15 207978 unique_id port 207978 remote_ip 10.8.0.166 207980 username mosi 207980 kill_reason Another user logged on this global unique id 207980 mac 207980 bytes_out 0 207980 bytes_in 0 207980 station_ip 151.235.119.151 207980 port 6 207980 unique_id port 207982 username mammad 207982 unique_id port 207982 terminate_cause User-Request 207982 bytes_out 4159150 207982 bytes_in 72775147 207982 station_ip 5.233.79.16 207982 port 15730419 207982 nas_port_type Virtual 207982 remote_ip 5.5.5.133 207984 username mosi 207984 kill_reason Another user logged on this global unique id 207984 mac 207984 bytes_out 0 207984 bytes_in 0 207984 station_ip 151.235.119.151 207984 port 6 207984 unique_id port 207985 username motamedi9772 207985 mac 207985 bytes_out 0 207985 bytes_in 0 207985 station_ip 83.122.107.69 207985 port 3 207985 unique_id port 207988 username sabaghnezhad 207988 mac 207988 bytes_out 0 207988 bytes_in 0 207988 station_ip 83.122.147.35 207988 port 1 207988 unique_id port 207988 remote_ip 10.8.0.94 207991 username farhad3 207991 mac 207991 bytes_out 0 207991 bytes_in 0 207991 station_ip 5.119.161.127 207991 port 3 207951 bytes_in 0 207951 station_ip 5.119.161.127 207951 port 13 207951 unique_id port 207951 remote_ip 10.8.1.86 207957 username hosseini0093 207957 kill_reason Another user logged on this global unique id 207957 mac 207957 bytes_out 0 207957 bytes_in 0 207957 station_ip 5.120.184.108 207957 port 22 207957 unique_id port 207957 remote_ip 10.8.1.170 207958 username motamedi9772 207958 mac 207958 bytes_out 0 207958 bytes_in 0 207958 station_ip 83.122.107.69 207958 port 21 207958 unique_id port 207959 username hosseini0093 207959 kill_reason Another user logged on this global unique id 207959 mac 207959 bytes_out 0 207959 bytes_in 0 207959 station_ip 5.120.184.108 207959 port 22 207959 unique_id port 207966 username aminvpnipad 207966 kill_reason Another user logged on this global unique id 207966 mac 207966 bytes_out 0 207966 bytes_in 0 207966 station_ip 5.119.61.34 207966 port 22 207966 unique_id port 207966 remote_ip 10.8.1.194 207970 username motamedi9772 207970 kill_reason Another user logged on this global unique id 207970 mac 207970 bytes_out 0 207970 bytes_in 0 207970 station_ip 83.122.107.69 207970 port 3 207970 unique_id port 207970 remote_ip 10.8.1.182 207972 username aminvpnipad 207972 mac 207972 bytes_out 0 207972 bytes_in 0 207972 station_ip 5.119.61.34 207972 port 22 207972 unique_id port 207975 username aminvpnipad 207975 mac 207975 bytes_out 0 207975 bytes_in 0 207975 station_ip 5.119.61.34 207975 port 17 207975 unique_id port 207975 remote_ip 10.8.1.194 207977 username naeimeh 207977 mac 207977 bytes_out 1058361 207977 bytes_in 9144992 207977 station_ip 83.122.102.88 207977 port 11 207977 unique_id port 207977 remote_ip 10.8.0.166 207987 username farhad3 207987 mac 207987 bytes_out 0 207987 bytes_in 0 207987 station_ip 5.119.161.127 207987 port 13 207987 unique_id port 207987 remote_ip 10.8.1.86 207994 username saeeddamghani 207994 mac 207994 bytes_out 0 207994 bytes_in 0 207994 station_ip 217.60.218.93 207994 port 1 207994 unique_id port 207994 remote_ip 10.8.0.162 207998 username saeeddamghani 207998 kill_reason Maximum check online fails reached 207998 mac 207998 bytes_out 0 207998 bytes_in 0 207998 station_ip 217.60.218.93 207998 port 13 207998 unique_id port 208002 username mohammadjavad 208002 mac 208002 bytes_out 0 208002 bytes_in 0 208002 station_ip 83.123.128.96 208002 port 4 208002 unique_id port 208002 remote_ip 10.8.0.138 208003 username saeeddamghani 208003 mac 208003 bytes_out 0 208003 bytes_in 0 208003 station_ip 217.60.218.93 208003 port 17 208003 unique_id port 208003 remote_ip 10.8.1.130 208005 username pourshad 208005 mac 208005 bytes_out 17910651 208005 bytes_in 44402357 208005 station_ip 5.119.204.50 208005 port 17 208005 unique_id port 208005 remote_ip 10.8.1.10 208006 username mammad 208006 unique_id port 208006 terminate_cause User-Request 208006 bytes_out 1151415 208006 bytes_in 15757063 208006 station_ip 46.100.219.102 208006 port 15730422 208006 nas_port_type Virtual 208006 remote_ip 5.5.5.143 208007 username dortaj3792 208007 mac 208007 bytes_out 0 208007 bytes_in 0 208007 station_ip 5.119.128.161 208007 port 21 208007 unique_id port 208007 remote_ip 10.8.1.62 208008 username barzegar 208008 mac 208008 bytes_out 0 208008 bytes_in 0 208008 station_ip 5.120.123.101 208008 port 18 208008 unique_id port 208009 username pourshad 208009 mac 208009 bytes_out 557958 208009 bytes_in 16189387 208009 station_ip 5.119.204.50 208009 port 17 208009 unique_id port 208009 remote_ip 10.8.1.10 208010 username pourshad 207964 kill_reason Another user logged on this global unique id 207964 mac 207964 bytes_out 0 207964 bytes_in 0 207964 station_ip 37.153.189.210 207964 port 21 207964 unique_id port 207964 remote_ip 10.8.1.190 207965 username farhad3 207965 mac 207965 bytes_out 0 207965 bytes_in 0 207965 station_ip 5.119.161.127 207965 port 13 207965 unique_id port 207965 remote_ip 10.8.1.86 207967 username mosi 207967 kill_reason Another user logged on this global unique id 207967 mac 207967 bytes_out 0 207967 bytes_in 0 207967 station_ip 151.235.119.151 207967 port 17 207967 unique_id port 207968 username mosi 207968 mac 207968 bytes_out 0 207968 bytes_in 0 207968 station_ip 151.235.119.151 207968 port 17 207968 unique_id port 207969 username aminvpnipad 207969 kill_reason Another user logged on this global unique id 207969 mac 207969 bytes_out 0 207969 bytes_in 0 207969 station_ip 5.119.61.34 207969 port 22 207969 unique_id port 207971 username jafari 207971 kill_reason Another user logged on this global unique id 207971 mac 207971 bytes_out 0 207971 bytes_in 0 207971 station_ip 37.153.189.210 207971 port 21 207971 unique_id port 207973 username aminvpnipad 207973 mac 207973 bytes_out 0 207973 bytes_in 0 207973 station_ip 5.119.61.34 207973 port 17 207973 unique_id port 207973 remote_ip 10.8.1.194 207974 username mosi 207974 kill_reason Another user logged on this global unique id 207974 mac 207974 bytes_out 0 207974 bytes_in 0 207974 station_ip 151.235.119.151 207974 port 6 207974 unique_id port 207974 remote_ip 10.8.0.38 207979 username alipour1506 207979 mac 207979 bytes_out 0 207979 bytes_in 0 207979 station_ip 151.234.21.25 207979 port 15 207979 unique_id port 207981 username motamedi9772 207981 kill_reason Another user logged on this global unique id 207981 mac 207981 bytes_out 0 207981 bytes_in 0 207981 station_ip 83.122.107.69 207981 port 3 207981 unique_id port 207983 username jafari 207983 kill_reason Another user logged on this global unique id 207983 mac 207983 bytes_out 0 207983 bytes_in 0 207983 station_ip 37.153.189.210 207983 port 21 207983 unique_id port 207986 username jafari 207986 mac 207986 bytes_out 0 207986 bytes_in 0 207986 station_ip 37.153.189.210 207986 port 21 207986 unique_id port 207989 username motamedi9772 207989 mac 207989 bytes_out 0 207989 bytes_in 0 207989 station_ip 83.122.107.69 207989 port 1 207989 unique_id port 207989 remote_ip 10.8.0.86 207990 username farhad3 207990 mac 207990 bytes_out 0 207990 bytes_in 0 207990 station_ip 5.119.161.127 207990 port 3 207990 unique_id port 207990 remote_ip 10.8.1.86 207993 username farhad3 207993 mac 207993 bytes_out 0 207993 bytes_in 0 207993 station_ip 5.119.161.127 207993 port 13 207993 unique_id port 207993 remote_ip 10.8.1.86 207995 username saeeddamghani 207995 mac 207995 bytes_out 0 207995 bytes_in 0 207995 station_ip 217.60.218.93 207995 port 13 207995 unique_id port 207995 remote_ip 10.8.1.130 207996 username saeeddamghani 207996 mac 207996 bytes_out 0 207996 bytes_in 0 207996 station_ip 217.60.218.93 207996 port 13 207996 unique_id port 207996 remote_ip 10.8.1.130 207999 username saeeddamghani 207999 mac 207999 bytes_out 0 207999 bytes_in 0 207999 station_ip 217.60.218.93 207999 port 17 207999 unique_id port 207999 remote_ip 10.8.1.130 208004 username mammad 208004 unique_id port 208004 terminate_cause Lost-Carrier 208004 bytes_out 202057 208004 bytes_in 1315839 208004 station_ip 5.233.73.217 208004 port 15730421 208004 nas_port_type Virtual 208004 remote_ip 5.5.5.142 207991 unique_id port 207991 remote_ip 10.8.1.86 207992 username mostafa_es78 207992 mac 207992 bytes_out 0 207992 bytes_in 0 207992 station_ip 37.129.1.147 207992 port 9 207992 unique_id port 207992 remote_ip 10.8.0.42 207997 username afarin1 207997 mac 207997 bytes_out 1648603 207997 bytes_in 15314589 207997 station_ip 31.56.152.99 207997 port 17 207997 unique_id port 207997 remote_ip 10.8.1.198 208000 username saeeddamghani 208000 kill_reason Maximum check online fails reached 208000 mac 208000 bytes_out 0 208000 bytes_in 0 208000 station_ip 217.60.218.93 208000 port 1 208000 unique_id port 208001 username dortaj3792 208001 mac 208001 bytes_out 0 208001 bytes_in 0 208001 station_ip 5.119.128.161 208001 port 4 208001 unique_id port 208001 remote_ip 10.8.0.10 208010 mac 208010 bytes_out 0 208010 bytes_in 0 208010 station_ip 5.119.204.50 208010 port 17 208010 unique_id port 208010 remote_ip 10.8.1.10 208011 username dortaj3792 208011 mac 208011 bytes_out 282418 208011 bytes_in 2037123 208011 station_ip 5.119.128.161 208011 port 21 208011 unique_id port 208011 remote_ip 10.8.1.62 208012 username saeeddamghani 208012 mac 208012 bytes_out 0 208012 bytes_in 0 208012 station_ip 217.60.218.93 208012 port 15 208012 unique_id port 208012 remote_ip 10.8.0.162 208013 username afarin1 208013 mac 208013 bytes_out 0 208013 bytes_in 0 208013 station_ip 31.56.221.188 208013 port 9 208013 unique_id port 208013 remote_ip 10.8.0.186 208014 username mostafa_es78 208014 mac 208014 bytes_out 920354 208014 bytes_in 946927 208014 station_ip 37.129.1.147 208014 port 3 208014 unique_id port 208014 remote_ip 10.8.1.202 208015 username mohammadjavad 208015 mac 208015 bytes_out 0 208015 bytes_in 0 208015 station_ip 83.123.157.228 208015 port 9 208015 unique_id port 208015 remote_ip 10.8.0.138 208016 username kalantary6037 208016 mac 208016 bytes_out 484651 208016 bytes_in 1049599 208016 station_ip 37.129.241.33 208016 port 11 208016 unique_id port 208016 remote_ip 10.8.0.18 208017 username dortaj3792 208017 mac 208017 bytes_out 0 208017 bytes_in 0 208017 station_ip 5.119.128.161 208017 port 15 208017 unique_id port 208017 remote_ip 10.8.0.10 208018 username saeeddamghani 208018 mac 208018 bytes_out 0 208018 bytes_in 0 208018 station_ip 217.60.218.93 208018 port 11 208018 unique_id port 208018 remote_ip 10.8.0.162 208019 username esmaeili1522 208019 mac 208019 bytes_out 0 208019 bytes_in 0 208019 station_ip 5.119.108.45 208019 port 9 208019 unique_id port 208019 remote_ip 10.8.0.190 208020 username alipour1506 208020 mac 208020 bytes_out 1010506 208020 bytes_in 10797752 208020 station_ip 37.129.226.190 208020 port 3 208020 unique_id port 208020 remote_ip 10.8.1.158 208021 username morteza4424 208021 mac 208021 bytes_out 0 208021 bytes_in 0 208021 station_ip 83.122.112.103 208021 port 9 208021 unique_id port 208021 remote_ip 10.8.0.30 208022 username hatami 208022 mac 208022 bytes_out 278597 208022 bytes_in 2728561 208022 station_ip 151.235.80.95 208022 port 15 208022 unique_id port 208022 remote_ip 10.8.1.70 208023 username alipour1506 208023 mac 208023 bytes_out 0 208023 bytes_in 0 208023 station_ip 37.129.226.190 208023 port 3 208023 unique_id port 208023 remote_ip 10.8.1.158 208024 username nilufarrajaei 208024 kill_reason Another user logged on this global unique id 208024 mac 208024 bytes_out 0 208024 bytes_in 0 208024 station_ip 83.123.248.123 208024 port 4 208024 unique_id port 208024 remote_ip 10.8.0.50 208025 username alipour1506 208025 mac 208025 bytes_out 0 208025 bytes_in 0 208025 station_ip 37.129.226.190 208025 port 3 208025 unique_id port 208025 remote_ip 10.8.1.158 208030 username alipour1506 208030 mac 208030 bytes_out 0 208030 bytes_in 0 208030 station_ip 37.129.226.190 208030 port 3 208030 unique_id port 208030 remote_ip 10.8.1.158 208031 username alipour1506 208031 mac 208031 bytes_out 0 208031 bytes_in 0 208031 station_ip 37.129.226.190 208031 port 6 208031 unique_id port 208031 remote_ip 10.8.0.46 208032 username milan 208032 kill_reason Another user logged on this global unique id 208032 mac 208032 bytes_out 0 208032 bytes_in 0 208032 station_ip 5.120.109.57 208032 port 2 208032 unique_id port 208033 username yaghobi 208033 mac 208033 bytes_out 275056 208033 bytes_in 3054884 208033 station_ip 37.129.86.110 208033 port 6 208033 unique_id port 208033 remote_ip 10.8.0.106 208038 username yaghobi 208038 mac 208038 bytes_out 1082819 208038 bytes_in 9348379 208038 station_ip 37.129.86.110 208038 port 6 208038 unique_id port 208038 remote_ip 10.8.0.106 208039 username alipour1506 208039 mac 208039 bytes_out 104496 208039 bytes_in 215257 208039 station_ip 37.129.226.190 208039 port 15 208039 unique_id port 208039 remote_ip 10.8.1.158 208044 username meysam 208044 kill_reason Another user logged on this global unique id 208044 mac 208044 bytes_out 0 208044 bytes_in 0 208044 station_ip 188.158.49.161 208044 port 9 208044 unique_id port 208044 remote_ip 10.8.0.102 208048 username meysam 208048 mac 208048 bytes_out 0 208048 bytes_in 0 208048 station_ip 188.158.49.161 208048 port 9 208048 unique_id port 208050 username mehrpoyan101 208050 mac 208050 bytes_out 5497 208050 bytes_in 9721 208050 station_ip 5.119.211.160 208050 port 23 208050 unique_id port 208050 remote_ip 10.8.1.18 208051 username mehrpoyan101 208051 mac 208051 bytes_out 0 208051 bytes_in 0 208051 station_ip 5.119.211.160 208051 port 23 208051 unique_id port 208051 remote_ip 10.8.1.18 208053 username esmaeili1522 208053 mac 208053 bytes_out 3010536 208053 bytes_in 39915304 208053 station_ip 5.119.108.45 208053 port 6 208053 unique_id port 208053 remote_ip 10.8.0.190 208054 username meysam 208054 mac 208054 bytes_out 0 208054 bytes_in 0 208054 station_ip 188.158.51.22 208054 port 15 208054 unique_id port 208054 remote_ip 10.8.0.102 208057 username mosi 208057 mac 208057 bytes_out 0 208057 bytes_in 0 208057 station_ip 151.235.119.151 208057 port 21 208057 unique_id port 208057 remote_ip 10.8.1.54 208061 username farhad3 208061 mac 208061 bytes_out 0 208061 bytes_in 0 208061 station_ip 5.119.161.127 208061 port 23 208061 unique_id port 208061 remote_ip 10.8.1.86 208062 username mosi 208062 mac 208062 bytes_out 90740 208062 bytes_in 98629 208062 station_ip 151.235.119.151 208062 port 21 208062 unique_id port 208062 remote_ip 10.8.1.54 208072 username alipour1506 208072 mac 208072 bytes_out 61920 208072 bytes_in 132591 208072 station_ip 37.129.226.190 208072 port 15 208072 unique_id port 208072 remote_ip 10.8.1.158 208076 username yaghobi 208076 mac 208076 bytes_out 0 208076 bytes_in 0 208076 station_ip 83.123.19.213 208076 port 9 208076 unique_id port 208076 remote_ip 10.8.0.106 208078 username pourshad 208078 mac 208078 bytes_out 2464 208078 bytes_in 4706 208078 station_ip 5.119.204.50 208078 port 23 208078 unique_id port 208078 remote_ip 10.8.1.10 208082 username morteza4424 208082 mac 208026 username mosi 208026 mac 208026 bytes_out 0 208026 bytes_in 0 208026 station_ip 151.235.119.151 208026 port 6 208026 unique_id port 208028 username alipour1506 208028 mac 208028 bytes_out 43357 208028 bytes_in 61008 208028 station_ip 37.129.226.190 208028 port 3 208028 unique_id port 208028 remote_ip 10.8.1.158 208029 username dortaj3792 208029 mac 208029 bytes_out 595396 208029 bytes_in 5149478 208029 station_ip 5.119.112.8 208029 port 15 208029 unique_id port 208029 remote_ip 10.8.1.62 208034 username nilufarrajaei 208034 kill_reason Another user logged on this global unique id 208034 mac 208034 bytes_out 0 208034 bytes_in 0 208034 station_ip 83.123.248.123 208034 port 4 208034 unique_id port 208035 username godarzi 208035 mac 208035 bytes_out 1070473 208035 bytes_in 10701065 208035 station_ip 5.202.98.177 208035 port 3 208035 unique_id port 208035 remote_ip 10.8.1.66 208037 username farhad3 208037 mac 208037 bytes_out 2053523 208037 bytes_in 18214603 208037 station_ip 5.119.161.127 208037 port 22 208037 unique_id port 208037 remote_ip 10.8.1.86 208041 username mehrpoyan101 208041 mac 208041 bytes_out 0 208041 bytes_in 0 208041 station_ip 5.120.121.251 208041 port 23 208041 unique_id port 208041 remote_ip 10.8.1.18 208046 username yarmohamadi7916 208046 mac 208046 bytes_out 0 208046 bytes_in 0 208046 station_ip 5.120.171.141 208046 port 3 208046 unique_id port 208046 remote_ip 10.8.1.34 208055 username nilufarrajaei 208055 kill_reason Another user logged on this global unique id 208055 mac 208055 bytes_out 0 208055 bytes_in 0 208055 station_ip 83.123.248.123 208055 port 4 208055 unique_id port 208056 username dortaj3792 208056 mac 208056 bytes_out 1266154 208056 bytes_in 14138822 208056 station_ip 5.119.112.8 208056 port 24 208056 unique_id port 208056 remote_ip 10.8.1.62 208060 username farhad3 208060 mac 208060 bytes_out 56632 208060 bytes_in 146383 208060 station_ip 5.119.161.127 208060 port 23 208060 unique_id port 208060 remote_ip 10.8.1.86 208068 username morteza4424 208068 mac 208068 bytes_out 101793 208068 bytes_in 1179163 208068 station_ip 83.122.86.7 208068 port 6 208068 unique_id port 208068 remote_ip 10.8.0.30 208070 username meysam 208070 mac 208070 bytes_out 838571 208070 bytes_in 15182154 208070 station_ip 188.158.51.22 208070 port 21 208070 unique_id port 208070 remote_ip 10.8.1.6 208075 username hamid.e 208075 unique_id port 208075 terminate_cause User-Request 208075 bytes_out 6405572 208075 bytes_in 49302813 208075 station_ip 37.27.21.71 208075 port 15730430 208075 nas_port_type Virtual 208075 remote_ip 5.5.5.144 208081 username farhad3 208081 mac 208081 bytes_out 0 208081 bytes_in 0 208081 station_ip 5.119.161.127 208081 port 15 208081 unique_id port 208081 remote_ip 10.8.1.86 208087 username yaghobi 208087 mac 208087 bytes_out 0 208087 bytes_in 0 208087 station_ip 83.123.111.185 208087 port 11 208087 unique_id port 208087 remote_ip 10.8.0.106 208089 username pourshad 208089 mac 208089 bytes_out 152684 208089 bytes_in 1778404 208089 station_ip 5.119.204.50 208089 port 15 208089 unique_id port 208089 remote_ip 10.8.1.10 208091 username pourshad 208091 mac 208091 bytes_out 107684 208091 bytes_in 1481946 208091 station_ip 5.119.190.201 208091 port 15 208091 unique_id port 208091 remote_ip 10.8.1.10 208096 username dortaj3792 208096 mac 208096 bytes_out 0 208096 bytes_in 0 208096 station_ip 5.119.144.217 208096 port 9 208096 unique_id port 208096 remote_ip 10.8.0.10 208098 username godarzi 208027 username alipour1506 208027 mac 208027 bytes_out 0 208027 bytes_in 0 208027 station_ip 37.129.226.190 208027 port 3 208027 unique_id port 208027 remote_ip 10.8.1.158 208036 username hosseine 208036 mac 208036 bytes_out 537914 208036 bytes_in 3323995 208036 station_ip 37.129.163.108 208036 port 9 208036 unique_id port 208036 remote_ip 10.8.0.126 208040 username barzegar 208040 kill_reason Another user logged on this global unique id 208040 mac 208040 bytes_out 0 208040 bytes_in 0 208040 station_ip 5.120.123.101 208040 port 14 208040 unique_id port 208042 username mehrpoyan101 208042 mac 208042 bytes_out 70764 208042 bytes_in 226342 208042 station_ip 5.120.121.251 208042 port 24 208042 unique_id port 208042 remote_ip 10.8.1.18 208043 username mehrpoyan101 208043 mac 208043 bytes_out 0 208043 bytes_in 0 208043 station_ip 5.120.121.251 208043 port 23 208043 unique_id port 208043 remote_ip 10.8.1.18 208045 username farhad3 208045 mac 208045 bytes_out 0 208045 bytes_in 0 208045 station_ip 5.119.161.127 208045 port 22 208045 unique_id port 208045 remote_ip 10.8.1.86 208047 username alipour1506 208047 kill_reason Another user logged on this global unique id 208047 mac 208047 bytes_out 0 208047 bytes_in 0 208047 station_ip 37.129.226.190 208047 port 15 208047 unique_id port 208047 remote_ip 10.8.1.158 208049 username mehrpoyan101 208049 mac 208049 bytes_out 0 208049 bytes_in 0 208049 station_ip 5.119.211.160 208049 port 11 208049 unique_id port 208049 remote_ip 10.8.0.134 208052 username mehrpoyan101 208052 mac 208052 bytes_out 5305 208052 bytes_in 11714 208052 station_ip 5.119.211.160 208052 port 23 208052 unique_id port 208052 remote_ip 10.8.1.18 208058 username alipour1506 208058 mac 208058 bytes_out 0 208058 bytes_in 0 208058 station_ip 37.129.226.190 208058 port 15 208058 unique_id port 208058 remote_ip 10.8.1.158 208059 username motamedi9772 208059 mac 208059 bytes_out 0 208059 bytes_in 0 208059 station_ip 83.122.51.57 208059 port 6 208059 unique_id port 208059 remote_ip 10.8.0.86 208063 username farhad3 208063 mac 208063 bytes_out 0 208063 bytes_in 0 208063 station_ip 5.119.161.127 208063 port 23 208063 unique_id port 208063 remote_ip 10.8.1.86 208064 username alipour1506 208064 mac 208064 bytes_out 46366 208064 bytes_in 47998 208064 station_ip 37.129.226.190 208064 port 15 208064 unique_id port 208064 remote_ip 10.8.1.158 208065 username mosi 208065 mac 208065 bytes_out 0 208065 bytes_in 0 208065 station_ip 151.235.119.151 208065 port 24 208065 unique_id port 208065 remote_ip 10.8.1.54 208066 username alipour1506 208066 mac 208066 bytes_out 134384 208066 bytes_in 247267 208066 station_ip 37.129.226.190 208066 port 21 208066 unique_id port 208066 remote_ip 10.8.1.158 208067 username pourshad 208067 mac 208067 bytes_out 1224832 208067 bytes_in 7666173 208067 station_ip 5.119.204.50 208067 port 17 208067 unique_id port 208067 remote_ip 10.8.1.10 208069 username saeeddamghani 208069 mac 208069 bytes_out 207326 208069 bytes_in 1583972 208069 station_ip 217.60.218.93 208069 port 15 208069 unique_id port 208069 remote_ip 10.8.1.130 208071 username pourshad 208071 mac 208071 bytes_out 0 208071 bytes_in 0 208071 station_ip 5.119.204.50 208071 port 6 208071 unique_id port 208071 remote_ip 10.8.0.122 208073 username majidsarmast 208073 mac 208073 bytes_out 472164 208073 bytes_in 263097 208073 station_ip 37.129.167.18 208073 port 23 208073 unique_id port 208073 remote_ip 10.8.1.178 208074 username alipour1506 208074 mac 208074 bytes_out 43330 208074 bytes_in 69289 208074 station_ip 37.129.226.190 208074 port 15 208074 unique_id port 208074 remote_ip 10.8.1.158 208077 username pourshad 208077 mac 208077 bytes_out 0 208077 bytes_in 0 208077 station_ip 5.119.204.50 208077 port 6 208077 unique_id port 208077 remote_ip 10.8.0.122 208079 username meysam 208079 mac 208079 bytes_out 718165 208079 bytes_in 15361036 208079 station_ip 188.158.51.22 208079 port 21 208079 unique_id port 208079 remote_ip 10.8.1.6 208080 username alipour1506 208080 mac 208080 bytes_out 150064 208080 bytes_in 157526 208080 station_ip 37.129.226.190 208080 port 15 208080 unique_id port 208080 remote_ip 10.8.1.158 208083 username meysam 208083 kill_reason Another user logged on this global unique id 208083 mac 208083 bytes_out 0 208083 bytes_in 0 208083 station_ip 188.158.51.22 208083 port 21 208083 unique_id port 208083 remote_ip 10.8.1.6 208084 username godarzi 208084 kill_reason Another user logged on this global unique id 208084 mac 208084 bytes_out 0 208084 bytes_in 0 208084 station_ip 5.202.98.177 208084 port 22 208084 unique_id port 208084 remote_ip 10.8.1.66 208090 username yaghobi 208090 mac 208090 bytes_out 0 208090 bytes_in 0 208090 station_ip 83.123.111.185 208090 port 11 208090 unique_id port 208090 remote_ip 10.8.0.106 208092 username alipour1506 208092 mac 208092 bytes_out 0 208092 bytes_in 0 208092 station_ip 37.129.226.190 208092 port 6 208092 unique_id port 208092 remote_ip 10.8.0.46 208094 username farhad3 208094 mac 208094 bytes_out 0 208094 bytes_in 0 208094 station_ip 5.119.161.127 208094 port 15 208094 unique_id port 208094 remote_ip 10.8.1.86 208105 username farhad3 208105 mac 208105 bytes_out 0 208105 bytes_in 0 208105 station_ip 5.119.161.127 208105 port 15 208105 unique_id port 208105 remote_ip 10.8.1.86 208106 username farhad3 208106 mac 208106 bytes_out 0 208106 bytes_in 0 208106 station_ip 5.119.161.127 208106 port 15 208106 unique_id port 208106 remote_ip 10.8.1.86 208108 username yarmohamadi7916 208108 mac 208108 bytes_out 7629507 208108 bytes_in 35737060 208108 station_ip 5.119.202.89 208108 port 3 208108 unique_id port 208108 remote_ip 10.8.1.34 208112 username kalantary6037 208112 mac 208112 bytes_out 0 208112 bytes_in 0 208112 station_ip 37.129.191.33 208112 port 4 208112 unique_id port 208112 remote_ip 10.8.0.18 208113 username nilufarrajaei 208113 mac 208113 bytes_out 0 208113 bytes_in 0 208113 station_ip 83.123.248.123 208113 port 6 208113 unique_id port 208113 remote_ip 10.8.0.50 208117 username hamid1430 208117 mac 208117 bytes_out 0 208117 bytes_in 0 208117 station_ip 37.129.34.173 208117 port 9 208117 unique_id port 208117 remote_ip 10.8.0.62 208123 username pourshad 208123 mac 208123 bytes_out 260087 208123 bytes_in 1117279 208123 station_ip 5.120.17.147 208123 port 15 208123 unique_id port 208123 remote_ip 10.8.1.10 208127 username khademi 208127 kill_reason Another user logged on this global unique id 208127 mac 208127 bytes_out 0 208127 bytes_in 0 208127 station_ip 37.129.98.124 208127 port 14 208127 unique_id port 208128 username majidsarmast 208128 kill_reason Another user logged on this global unique id 208128 mac 208128 bytes_out 0 208128 bytes_in 0 208128 station_ip 37.129.230.170 208128 port 6 208128 unique_id port 208128 remote_ip 10.8.0.194 208134 username yaghobi 208134 mac 208134 bytes_out 0 208134 bytes_in 0 208134 station_ip 83.123.124.105 208134 port 11 208082 bytes_out 0 208082 bytes_in 0 208082 station_ip 83.122.6.95 208082 port 11 208082 unique_id port 208082 remote_ip 10.8.0.30 208085 username meysam 208085 mac 208085 bytes_out 0 208085 bytes_in 0 208085 station_ip 188.158.51.22 208085 port 21 208085 unique_id port 208086 username esmaeili1522 208086 mac 208086 bytes_out 0 208086 bytes_in 0 208086 station_ip 5.119.100.95 208086 port 6 208086 unique_id port 208086 remote_ip 10.8.0.190 208088 username farhad3 208088 mac 208088 bytes_out 0 208088 bytes_in 0 208088 station_ip 5.119.161.127 208088 port 21 208088 unique_id port 208088 remote_ip 10.8.1.86 208093 username barzegar8595 208093 mac 208093 bytes_out 3431846 208093 bytes_in 48338626 208093 station_ip 46.225.210.119 208093 port 17 208093 unique_id port 208093 remote_ip 10.8.1.26 208095 username nilufarrajaei 208095 kill_reason Another user logged on this global unique id 208095 mac 208095 bytes_out 0 208095 bytes_in 0 208095 station_ip 83.123.248.123 208095 port 4 208095 unique_id port 208097 username barzegar8595 208097 kill_reason Another user logged on this global unique id 208097 mac 208097 bytes_out 0 208097 bytes_in 0 208097 station_ip 5.202.19.166 208097 port 15 208097 unique_id port 208097 remote_ip 10.8.1.26 208099 username kalantary6037 208099 kill_reason Another user logged on this global unique id 208099 mac 208099 bytes_out 0 208099 bytes_in 0 208099 station_ip 37.129.187.121 208099 port 6 208099 unique_id port 208099 remote_ip 10.8.0.18 208101 username kalantary6037 208101 mac 208101 bytes_out 0 208101 bytes_in 0 208101 station_ip 37.129.187.121 208101 port 6 208101 unique_id port 208102 username barzegar8595 208102 mac 208102 bytes_out 0 208102 bytes_in 0 208102 station_ip 5.202.19.166 208102 port 15 208102 unique_id port 208104 username nilufarrajaei 208104 kill_reason Another user logged on this global unique id 208104 mac 208104 bytes_out 0 208104 bytes_in 0 208104 station_ip 83.123.248.123 208104 port 4 208104 unique_id port 208107 username sabaghnezhad 208107 mac 208107 bytes_out 546619 208107 bytes_in 4141224 208107 station_ip 37.129.85.107 208107 port 9 208107 unique_id port 208107 remote_ip 10.8.0.94 208109 username nilufarrajaei 208109 mac 208109 bytes_out 0 208109 bytes_in 0 208109 station_ip 83.123.248.123 208109 port 4 208109 unique_id port 208110 username farhad3 208110 mac 208110 bytes_out 0 208110 bytes_in 0 208110 station_ip 5.119.161.127 208110 port 3 208110 unique_id port 208110 remote_ip 10.8.1.86 208111 username khalili2 208111 unique_id port 208111 terminate_cause Lost-Carrier 208111 bytes_out 2129763 208111 bytes_in 84636499 208111 station_ip 5.119.254.248 208111 port 15730433 208111 nas_port_type Virtual 208111 remote_ip 5.5.5.146 208115 username meysam 208115 mac 208115 bytes_out 0 208115 bytes_in 0 208115 station_ip 188.158.51.22 208115 port 3 208115 unique_id port 208120 username khademi 208120 kill_reason Another user logged on this global unique id 208120 mac 208120 bytes_out 0 208120 bytes_in 0 208120 station_ip 37.129.98.124 208120 port 14 208120 unique_id port 208121 username nilufarrajaei 208121 mac 208121 bytes_out 2539642 208121 bytes_in 29204525 208121 station_ip 83.123.248.123 208121 port 3 208121 unique_id port 208121 remote_ip 10.8.1.126 208125 username nilufarrajaei 208125 mac 208125 bytes_out 226983 208125 bytes_in 86524 208125 station_ip 83.123.248.123 208125 port 3 208125 unique_id port 208125 remote_ip 10.8.1.126 208126 username pourshad 208126 mac 208126 bytes_out 241899 208098 kill_reason Another user logged on this global unique id 208098 mac 208098 bytes_out 0 208098 bytes_in 0 208098 station_ip 5.202.98.177 208098 port 22 208098 unique_id port 208100 username barzegar8595 208100 kill_reason Another user logged on this global unique id 208100 mac 208100 bytes_out 0 208100 bytes_in 0 208100 station_ip 5.202.19.166 208100 port 15 208100 unique_id port 208103 username farhad3 208103 mac 208103 bytes_out 501424 208103 bytes_in 4141132 208103 station_ip 5.119.161.127 208103 port 15 208103 unique_id port 208103 remote_ip 10.8.1.86 208114 username meysam 208114 kill_reason Another user logged on this global unique id 208114 mac 208114 bytes_out 0 208114 bytes_in 0 208114 station_ip 188.158.51.22 208114 port 3 208114 unique_id port 208114 remote_ip 10.8.1.6 208116 username godarzi 208116 kill_reason Another user logged on this global unique id 208116 mac 208116 bytes_out 0 208116 bytes_in 0 208116 station_ip 5.202.98.177 208116 port 22 208116 unique_id port 208118 username nilufarrajaei 208118 mac 208118 bytes_out 0 208118 bytes_in 0 208118 station_ip 83.123.248.123 208118 port 4 208118 unique_id port 208118 remote_ip 10.8.0.50 208119 username sabaghnezhad 208119 mac 208119 bytes_out 0 208119 bytes_in 0 208119 station_ip 37.129.85.107 208119 port 9 208119 unique_id port 208119 remote_ip 10.8.0.94 208122 username amirzadeh1339 208122 unique_id port 208122 terminate_cause Lost-Carrier 208122 bytes_out 12497834 208122 bytes_in 341617385 208122 station_ip 37.27.58.202 208122 port 15730434 208122 nas_port_type Virtual 208122 remote_ip 5.5.5.150 208124 username nilufarrajaei 208124 mac 208124 bytes_out 615466 208124 bytes_in 1494367 208124 station_ip 83.123.248.123 208124 port 3 208124 unique_id port 208124 remote_ip 10.8.1.126 208130 username pourshad 208130 kill_reason Another user logged on this global unique id 208130 mac 208130 bytes_out 0 208130 bytes_in 0 208130 station_ip 5.120.17.147 208130 port 15 208130 unique_id port 208130 remote_ip 10.8.1.10 208137 username motamedi9772 208137 mac 208137 bytes_out 0 208137 bytes_in 0 208137 station_ip 83.123.182.133 208137 port 11 208137 unique_id port 208137 remote_ip 10.8.0.86 208138 username godarzi 208138 mac 208138 bytes_out 0 208138 bytes_in 0 208138 station_ip 5.202.98.177 208138 port 22 208138 unique_id port 208141 username mosavi0713 208141 kill_reason Another user logged on this global unique id 208141 mac 208141 bytes_out 0 208141 bytes_in 0 208141 station_ip 113.203.107.24 208141 port 9 208141 unique_id port 208143 username godarzi 208143 kill_reason Another user logged on this global unique id 208143 mac 208143 bytes_out 0 208143 bytes_in 0 208143 station_ip 5.202.65.237 208143 port 15 208143 unique_id port 208143 remote_ip 10.8.1.66 208144 username meysam 208144 kill_reason Another user logged on this global unique id 208144 mac 208144 bytes_out 0 208144 bytes_in 0 208144 station_ip 188.158.48.110 208144 port 17 208144 unique_id port 208144 remote_ip 10.8.1.6 208145 username majidsarmast 208145 mac 208145 bytes_out 0 208145 bytes_in 0 208145 station_ip 37.129.230.170 208145 port 6 208145 unique_id port 208146 username iranmanesh4443 208146 mac 208146 bytes_out 1334053 208146 bytes_in 23350389 208146 station_ip 5.120.121.174 208146 port 15 208146 unique_id port 208146 remote_ip 10.8.0.198 208155 username yaghobi 208155 mac 208155 bytes_out 0 208155 bytes_in 0 208155 station_ip 83.123.124.105 208155 port 11 208155 unique_id port 208158 username yarmohamadi7916 208158 mac 208158 bytes_out 4994 208158 bytes_in 8993 208158 station_ip 5.119.244.56 208126 bytes_in 615397 208126 station_ip 5.120.17.147 208126 port 15 208126 unique_id port 208126 remote_ip 10.8.1.10 208129 username nilufarrajaei 208129 mac 208129 bytes_out 433492 208129 bytes_in 1847382 208129 station_ip 83.123.248.123 208129 port 3 208129 unique_id port 208129 remote_ip 10.8.1.126 208131 username godarzi 208131 kill_reason Another user logged on this global unique id 208131 mac 208131 bytes_out 0 208131 bytes_in 0 208131 station_ip 5.202.98.177 208131 port 22 208131 unique_id port 208132 username nilufarrajaei 208132 mac 208132 bytes_out 0 208132 bytes_in 0 208132 station_ip 83.123.248.123 208132 port 15 208132 unique_id port 208132 remote_ip 10.8.0.50 208133 username khademi 208133 mac 208133 bytes_out 0 208133 bytes_in 0 208133 station_ip 37.129.98.124 208133 port 14 208133 unique_id port 208135 username mosavi0713 208135 kill_reason Another user logged on this global unique id 208135 mac 208135 bytes_out 0 208135 bytes_in 0 208135 station_ip 113.203.107.24 208135 port 9 208135 unique_id port 208135 remote_ip 10.8.0.22 208139 username majidsarmast 208139 kill_reason Another user logged on this global unique id 208139 mac 208139 bytes_out 0 208139 bytes_in 0 208139 station_ip 37.129.230.170 208139 port 6 208139 unique_id port 208148 username meysam 208148 mac 208148 bytes_out 0 208148 bytes_in 0 208148 station_ip 188.158.48.110 208148 port 17 208148 unique_id port 208150 username arash 208150 kill_reason Relative expiration date has reached 208150 mac 208150 bytes_out 0 208150 bytes_in 0 208150 station_ip 37.27.26.59 208150 port 17 208150 unique_id port 208154 username pourshad 208154 mac 208154 bytes_out 90931 208154 bytes_in 544518 208154 station_ip 5.120.17.147 208154 port 3 208154 unique_id port 208154 remote_ip 10.8.1.10 208159 username mehrpoyan101 208159 mac 208159 bytes_out 3785 208159 bytes_in 7329 208159 station_ip 5.119.30.122 208159 port 23 208159 unique_id port 208159 remote_ip 10.8.1.18 208161 username esmaeili1522 208161 kill_reason Another user logged on this global unique id 208161 mac 208161 bytes_out 0 208161 bytes_in 0 208161 station_ip 5.119.163.145 208161 port 9 208161 unique_id port 208162 username khalili2 208162 unique_id port 208162 terminate_cause Lost-Carrier 208162 bytes_out 1801319 208162 bytes_in 118878510 208162 station_ip 5.119.254.248 208162 port 15730439 208162 nas_port_type Virtual 208162 remote_ip 5.5.5.146 208163 username meysam 208163 mac 208163 bytes_out 261666 208163 bytes_in 2304356 208163 station_ip 188.158.48.110 208163 port 22 208163 unique_id port 208163 remote_ip 10.8.1.6 208164 username yaghobi 208164 mac 208164 bytes_out 0 208164 bytes_in 0 208164 station_ip 83.123.113.93 208164 port 6 208164 unique_id port 208164 remote_ip 10.8.0.106 208166 username yaghobi 208166 mac 208166 bytes_out 0 208166 bytes_in 0 208166 station_ip 83.123.113.93 208166 port 6 208166 unique_id port 208166 remote_ip 10.8.0.106 208169 username esmaeilkazemi 208169 mac 208169 bytes_out 0 208169 bytes_in 0 208169 station_ip 37.129.237.67 208169 port 19 208169 unique_id port 208169 remote_ip 10.8.0.66 208174 username farhad3 208174 kill_reason Maximum check online fails reached 208174 mac 208174 bytes_out 0 208174 bytes_in 0 208174 station_ip 5.119.161.127 208174 port 25 208174 unique_id port 208177 username barzegar 208177 mac 208177 bytes_out 2513192 208177 bytes_in 38773089 208177 station_ip 5.119.169.225 208177 port 22 208177 unique_id port 208177 remote_ip 10.8.1.30 208178 username pourshad 208178 mac 208134 unique_id port 208134 remote_ip 10.8.0.106 208136 username esmaeili1522 208136 mac 208136 bytes_out 0 208136 bytes_in 0 208136 station_ip 5.119.163.145 208136 port 17 208136 unique_id port 208136 remote_ip 10.8.1.166 208140 username yaghobi 208140 mac 208140 bytes_out 0 208140 bytes_in 0 208140 station_ip 83.123.124.105 208140 port 11 208140 unique_id port 208140 remote_ip 10.8.0.106 208142 username rahim 208142 mac 208142 bytes_out 576843 208142 bytes_in 5843548 208142 station_ip 5.120.174.251 208142 port 22 208142 unique_id port 208142 remote_ip 10.8.1.146 208147 username mosavi0713 208147 mac 208147 bytes_out 0 208147 bytes_in 0 208147 station_ip 113.203.107.24 208147 port 9 208147 unique_id port 208149 username kalantary6037 208149 mac 208149 bytes_out 1375298 208149 bytes_in 22092211 208149 station_ip 37.129.162.141 208149 port 9 208149 unique_id port 208149 remote_ip 10.8.0.18 208151 username mostafa_es78 208151 mac 208151 bytes_out 399251 208151 bytes_in 748535 208151 station_ip 37.129.1.147 208151 port 4 208151 unique_id port 208151 remote_ip 10.8.0.42 208152 username yaghobi 208152 kill_reason Another user logged on this global unique id 208152 mac 208152 bytes_out 0 208152 bytes_in 0 208152 station_ip 83.123.124.105 208152 port 11 208152 unique_id port 208152 remote_ip 10.8.0.106 208153 username nilufarrajaei 208153 mac 208153 bytes_out 0 208153 bytes_in 0 208153 station_ip 83.123.73.145 208153 port 14 208153 unique_id port 208153 remote_ip 10.8.0.50 208156 username sabaghnezhad 208156 mac 208156 bytes_out 0 208156 bytes_in 0 208156 station_ip 37.129.85.107 208156 port 6 208156 unique_id port 208156 remote_ip 10.8.0.94 208157 username esmaeili1522 208157 kill_reason Another user logged on this global unique id 208157 mac 208157 bytes_out 0 208157 bytes_in 0 208157 station_ip 5.119.163.145 208157 port 9 208157 unique_id port 208157 remote_ip 10.8.0.190 208160 username barzegar 208160 mac 208160 bytes_out 1617022 208160 bytes_in 22740256 208160 station_ip 5.119.169.225 208160 port 22 208160 unique_id port 208160 remote_ip 10.8.1.30 208167 username esmaeili1522 208167 kill_reason Another user logged on this global unique id 208167 mac 208167 bytes_out 0 208167 bytes_in 0 208167 station_ip 5.119.163.145 208167 port 9 208167 unique_id port 208168 username kalantary6037 208168 mac 208168 bytes_out 0 208168 bytes_in 0 208168 station_ip 37.129.213.105 208168 port 14 208168 unique_id port 208168 remote_ip 10.8.0.18 208172 username nilufarrajaei 208172 mac 208172 bytes_out 0 208172 bytes_in 0 208172 station_ip 83.123.48.93 208172 port 6 208172 unique_id port 208172 remote_ip 10.8.0.50 208175 username saeeddamghani 208175 kill_reason Another user logged on this global unique id 208175 mac 208175 bytes_out 0 208175 bytes_in 0 208175 station_ip 217.60.218.93 208175 port 24 208175 unique_id port 208175 remote_ip 10.8.1.130 208181 username esmaeili1522 208181 mac 208181 bytes_out 0 208181 bytes_in 0 208181 station_ip 5.119.163.145 208181 port 9 208181 unique_id port 208184 username saeeddamghani 208184 kill_reason Another user logged on this global unique id 208184 mac 208184 bytes_out 0 208184 bytes_in 0 208184 station_ip 217.60.218.93 208184 port 24 208184 unique_id port 208185 username mostafa_es78 208185 mac 208185 bytes_out 2671671 208185 bytes_in 33946871 208185 station_ip 37.129.1.147 208185 port 15 208185 unique_id port 208185 remote_ip 10.8.0.42 208187 username sabaghnezhad 208187 mac 208187 bytes_out 0 208187 bytes_in 0 208158 port 24 208158 unique_id port 208158 remote_ip 10.8.1.34 208165 username esmaeilkazemi 208165 mac 208165 bytes_out 0 208165 bytes_in 0 208165 station_ip 37.129.237.67 208165 port 18 208165 unique_id port 208165 remote_ip 10.8.0.66 208170 username farhad3 208170 mac 208170 bytes_out 130524 208170 bytes_in 397167 208170 station_ip 5.119.161.127 208170 port 25 208170 unique_id port 208170 remote_ip 10.8.1.86 208171 username farhad3 208171 mac 208171 bytes_out 0 208171 bytes_in 0 208171 station_ip 5.119.161.127 208171 port 25 208171 unique_id port 208171 remote_ip 10.8.1.86 208173 username farhad3 208173 mac 208173 bytes_out 45566 208173 bytes_in 180806 208173 station_ip 5.119.161.127 208173 port 6 208173 unique_id port 208173 remote_ip 10.8.0.98 208176 username farhad3 208176 mac 208176 bytes_out 0 208176 bytes_in 0 208176 station_ip 5.119.161.127 208176 port 27 208176 unique_id port 208176 remote_ip 10.8.1.86 208179 username farhad3 208179 mac 208179 bytes_out 0 208179 bytes_in 0 208179 station_ip 5.119.161.127 208179 port 22 208179 unique_id port 208179 remote_ip 10.8.1.86 208182 username barzegar 208182 mac 208182 bytes_out 130204 208182 bytes_in 999379 208182 station_ip 5.119.169.225 208182 port 22 208182 unique_id port 208182 remote_ip 10.8.1.30 208188 username sabaghnezhad 208188 mac 208188 bytes_out 0 208188 bytes_in 0 208188 station_ip 37.129.85.107 208188 port 4 208188 unique_id port 208188 remote_ip 10.8.0.94 208193 username motamedi9772 208193 mac 208193 bytes_out 0 208193 bytes_in 0 208193 station_ip 83.123.131.229 208193 port 6 208193 unique_id port 208193 remote_ip 10.8.0.86 208201 username kalantary6037 208201 mac 208201 bytes_out 0 208201 bytes_in 0 208201 station_ip 37.129.215.53 208201 port 4 208201 unique_id port 208201 remote_ip 10.8.0.18 208208 username barzegar 208208 mac 208208 bytes_out 0 208208 bytes_in 0 208208 station_ip 5.119.169.225 208208 port 27 208208 unique_id port 208208 remote_ip 10.8.1.30 208210 username farhad3 208210 mac 208210 bytes_out 0 208210 bytes_in 0 208210 station_ip 5.119.161.127 208210 port 15 208210 unique_id port 208210 remote_ip 10.8.1.86 208211 username tahmorsi 208211 mac 208211 bytes_out 1602630 208211 bytes_in 23774700 208211 station_ip 86.57.124.3 208211 port 26 208211 unique_id port 208211 remote_ip 10.8.1.78 208213 username kamali3 208213 mac 208213 bytes_out 35496 208213 bytes_in 52741 208213 station_ip 83.122.216.134 208213 port 17 208213 unique_id port 208213 remote_ip 10.8.1.206 208214 username barzegar 208214 mac 208214 bytes_out 0 208214 bytes_in 0 208214 station_ip 5.119.169.225 208214 port 4 208214 unique_id port 208214 remote_ip 10.8.0.34 208216 username yaghobi 208216 mac 208216 bytes_out 0 208216 bytes_in 0 208216 station_ip 83.123.89.117 208216 port 11 208216 unique_id port 208216 remote_ip 10.8.0.106 208218 username kamali3 208218 mac 208218 bytes_out 0 208218 bytes_in 0 208218 station_ip 83.122.216.134 208218 port 16 208218 unique_id port 208218 remote_ip 10.8.0.182 208223 username mehrpoyan101 208223 mac 208223 bytes_out 2977 208223 bytes_in 7123 208223 station_ip 5.120.171.32 208223 port 17 208223 unique_id port 208223 remote_ip 10.8.1.18 208229 username yarmohamadi7916 208229 mac 208229 bytes_out 2906002 208229 bytes_in 14695807 208229 station_ip 5.119.244.56 208229 port 23 208229 unique_id port 208229 remote_ip 10.8.1.34 208234 username nilufarrajaei 208178 bytes_out 79929 208178 bytes_in 111992 208178 station_ip 5.120.17.147 208178 port 3 208178 unique_id port 208178 remote_ip 10.8.1.10 208180 username farhad3 208180 mac 208180 bytes_out 0 208180 bytes_in 0 208180 station_ip 5.119.161.127 208180 port 22 208180 unique_id port 208180 remote_ip 10.8.1.86 208183 username dortaj3792 208183 mac 208183 bytes_out 0 208183 bytes_in 0 208183 station_ip 5.119.144.217 208183 port 16 208183 unique_id port 208183 remote_ip 10.8.0.10 208186 username sabaghnezhad 208186 mac 208186 bytes_out 0 208186 bytes_in 0 208186 station_ip 37.129.85.107 208186 port 4 208186 unique_id port 208186 remote_ip 10.8.0.94 208190 username yaghobi 208190 mac 208190 bytes_out 0 208190 bytes_in 0 208190 station_ip 83.123.89.117 208190 port 9 208190 unique_id port 208190 remote_ip 10.8.0.106 208194 username barzegar 208194 mac 208194 bytes_out 0 208194 bytes_in 0 208194 station_ip 5.119.169.225 208194 port 18 208194 unique_id port 208194 remote_ip 10.8.0.34 208195 username farhad3 208195 mac 208195 bytes_out 0 208195 bytes_in 0 208195 station_ip 5.119.161.127 208195 port 15 208195 unique_id port 208195 remote_ip 10.8.1.86 208197 username kamali3 208197 mac 208197 bytes_out 0 208197 bytes_in 0 208197 station_ip 83.122.216.134 208197 port 11 208197 unique_id port 208197 remote_ip 10.8.0.182 208199 username mehrpoyan101 208199 mac 208199 bytes_out 0 208199 bytes_in 0 208199 station_ip 5.119.102.119 208199 port 9 208199 unique_id port 208199 remote_ip 10.8.0.134 208200 username mehrpoyan101 208200 mac 208200 bytes_out 80227 208200 bytes_in 563907 208200 station_ip 5.119.102.119 208200 port 15 208200 unique_id port 208200 remote_ip 10.8.1.18 208203 username barzegar 208203 mac 208203 bytes_out 0 208203 bytes_in 0 208203 station_ip 5.119.169.225 208203 port 9 208203 unique_id port 208203 remote_ip 10.8.0.34 208204 username mehrpoyan101 208204 mac 208204 bytes_out 0 208204 bytes_in 0 208204 station_ip 5.119.102.119 208204 port 15 208204 unique_id port 208204 remote_ip 10.8.1.18 208205 username sabaghnezhad 208205 mac 208205 bytes_out 0 208205 bytes_in 0 208205 station_ip 37.129.85.107 208205 port 16 208205 unique_id port 208205 remote_ip 10.8.0.94 208209 username farhad3 208209 mac 208209 bytes_out 0 208209 bytes_in 0 208209 station_ip 5.119.161.127 208209 port 15 208209 unique_id port 208209 remote_ip 10.8.1.86 208217 username nilufarrajaei 208217 mac 208217 bytes_out 0 208217 bytes_in 0 208217 station_ip 83.123.48.93 208217 port 14 208217 unique_id port 208217 remote_ip 10.8.0.50 208219 username kamali3 208219 mac 208219 bytes_out 0 208219 bytes_in 0 208219 station_ip 83.122.216.134 208219 port 9 208219 unique_id port 208219 remote_ip 10.8.0.182 208220 username mehrpoyan101 208220 mac 208220 bytes_out 0 208220 bytes_in 0 208220 station_ip 5.120.68.71 208220 port 4 208220 unique_id port 208220 remote_ip 10.8.0.134 208222 username saeeddamghani 208222 mac 208222 bytes_out 0 208222 bytes_in 0 208222 station_ip 217.60.218.93 208222 port 24 208222 unique_id port 208225 username motamedi9772 208225 mac 208225 bytes_out 0 208225 bytes_in 0 208225 station_ip 83.123.214.229 208225 port 9 208225 unique_id port 208225 remote_ip 10.8.0.86 208226 username mehrpoyan101 208226 mac 208226 bytes_out 100859 208226 bytes_in 640349 208226 station_ip 5.120.171.32 208226 port 17 208226 unique_id port 208226 remote_ip 10.8.1.18 208187 station_ip 37.129.85.107 208187 port 16 208187 unique_id port 208187 remote_ip 10.8.0.94 208189 username mehrpoyan101 208189 mac 208189 bytes_out 3456 208189 bytes_in 7576 208189 station_ip 5.119.102.119 208189 port 15 208189 unique_id port 208189 remote_ip 10.8.1.18 208191 username saeeddamghani 208191 kill_reason Another user logged on this global unique id 208191 mac 208191 bytes_out 0 208191 bytes_in 0 208191 station_ip 217.60.218.93 208191 port 24 208191 unique_id port 208192 username mehrpoyan101 208192 mac 208192 bytes_out 0 208192 bytes_in 0 208192 station_ip 5.119.102.119 208192 port 9 208192 unique_id port 208192 remote_ip 10.8.0.134 208196 username barzegar 208196 mac 208196 bytes_out 0 208196 bytes_in 0 208196 station_ip 5.119.169.225 208196 port 18 208196 unique_id port 208196 remote_ip 10.8.0.34 208198 username barzegar8595 208198 mac 208198 bytes_out 1934361 208198 bytes_in 16402654 208198 station_ip 46.225.215.37 208198 port 17 208198 unique_id port 208198 remote_ip 10.8.1.26 208202 username mosi 208202 kill_reason Another user logged on this global unique id 208202 mac 208202 bytes_out 0 208202 bytes_in 0 208202 station_ip 151.235.119.151 208202 port 22 208202 unique_id port 208202 remote_ip 10.8.1.54 208206 username mehrpoyan101 208206 mac 208206 bytes_out 0 208206 bytes_in 0 208206 station_ip 5.119.102.119 208206 port 4 208206 unique_id port 208206 remote_ip 10.8.0.134 208207 username kamali3 208207 mac 208207 bytes_out 0 208207 bytes_in 0 208207 station_ip 83.122.216.134 208207 port 18 208207 unique_id port 208207 remote_ip 10.8.0.182 208212 username esmaeilkazemi 208212 mac 208212 bytes_out 0 208212 bytes_in 0 208212 station_ip 37.129.237.67 208212 port 4 208212 unique_id port 208212 remote_ip 10.8.0.66 208215 username mehrpoyan101 208215 mac 208215 bytes_out 0 208215 bytes_in 0 208215 station_ip 5.119.58.6 208215 port 9 208215 unique_id port 208215 remote_ip 10.8.0.134 208221 username barzegar 208221 mac 208221 bytes_out 0 208221 bytes_in 0 208221 station_ip 5.119.169.225 208221 port 17 208221 unique_id port 208221 remote_ip 10.8.1.30 208224 username barzegar 208224 mac 208224 bytes_out 0 208224 bytes_in 0 208224 station_ip 5.119.169.225 208224 port 17 208224 unique_id port 208224 remote_ip 10.8.1.30 208228 username farhad3 208228 mac 208228 bytes_out 0 208228 bytes_in 0 208228 station_ip 5.119.161.127 208228 port 17 208228 unique_id port 208228 remote_ip 10.8.1.86 208232 username barzegar 208232 mac 208232 bytes_out 0 208232 bytes_in 0 208232 station_ip 5.119.169.225 208232 port 23 208232 unique_id port 208232 remote_ip 10.8.1.30 208233 username nilufarrajaei 208233 mac 208233 bytes_out 0 208233 bytes_in 0 208233 station_ip 83.123.48.93 208233 port 15 208233 unique_id port 208233 remote_ip 10.8.1.126 208236 username mehrpoyan101 208236 mac 208236 bytes_out 19127 208236 bytes_in 23278 208236 station_ip 5.120.171.32 208236 port 17 208236 unique_id port 208236 remote_ip 10.8.1.18 208238 username alirezaza 208238 unique_id port 208238 terminate_cause Lost-Carrier 208238 bytes_out 936825 208238 bytes_in 25928284 208238 station_ip 5.120.98.33 208238 port 15730455 208238 nas_port_type Virtual 208238 remote_ip 5.5.5.115 208239 username yaghobi 208239 mac 208239 bytes_out 0 208239 bytes_in 0 208239 station_ip 83.123.89.121 208239 port 11 208239 unique_id port 208239 remote_ip 10.8.0.106 208241 username barzegar 208241 mac 208241 bytes_out 0 208241 bytes_in 0 208227 username mehrpoyan101 208227 mac 208227 bytes_out 0 208227 bytes_in 0 208227 station_ip 5.120.171.32 208227 port 9 208227 unique_id port 208227 remote_ip 10.8.0.134 208230 username mehrpoyan101 208230 mac 208230 bytes_out 87596 208230 bytes_in 264276 208230 station_ip 5.120.171.32 208230 port 24 208230 unique_id port 208230 remote_ip 10.8.1.18 208231 username mehrpoyan101 208231 mac 208231 bytes_out 1883 208231 bytes_in 4610 208231 station_ip 5.120.171.32 208231 port 17 208231 unique_id port 208231 remote_ip 10.8.1.18 208240 username mehrpoyan101 208240 mac 208240 bytes_out 83969 208240 bytes_in 449403 208240 station_ip 5.120.171.32 208240 port 17 208240 unique_id port 208240 remote_ip 10.8.1.18 208242 username amirzadeh1339 208242 unique_id port 208242 terminate_cause Lost-Carrier 208242 bytes_out 23477970 208242 bytes_in 669879069 208242 station_ip 37.27.46.194 208242 port 15730438 208242 nas_port_type Virtual 208242 remote_ip 5.5.5.159 208245 username dortaj3792 208245 mac 208245 bytes_out 0 208245 bytes_in 0 208245 station_ip 5.120.17.210 208245 port 9 208245 unique_id port 208245 remote_ip 10.8.0.10 208247 username mehrpoyan101 208247 mac 208247 bytes_out 0 208247 bytes_in 0 208247 station_ip 5.120.171.32 208247 port 9 208247 unique_id port 208247 remote_ip 10.8.0.134 208250 username mehrpoyan101 208250 mac 208250 bytes_out 4870 208250 bytes_in 9036 208250 station_ip 5.119.87.194 208250 port 24 208250 unique_id port 208250 remote_ip 10.8.1.18 208254 username kalantary6037 208254 mac 208254 bytes_out 0 208254 bytes_in 0 208254 station_ip 37.129.239.101 208254 port 11 208254 unique_id port 208254 remote_ip 10.8.0.18 208258 username barzegar 208258 mac 208258 bytes_out 0 208258 bytes_in 0 208258 station_ip 5.119.169.225 208258 port 26 208258 unique_id port 208258 remote_ip 10.8.1.30 208261 username esmaeilkazemi 208261 mac 208261 bytes_out 0 208261 bytes_in 0 208261 station_ip 37.129.237.67 208261 port 11 208261 unique_id port 208261 remote_ip 10.8.0.66 208262 username esmaeilkazemi 208262 mac 208262 bytes_out 0 208262 bytes_in 0 208262 station_ip 37.129.237.67 208262 port 9 208262 unique_id port 208262 remote_ip 10.8.0.66 208264 username alirezazadeh 208264 unique_id port 208264 terminate_cause Lost-Carrier 208264 bytes_out 2803821 208264 bytes_in 3313567 208264 station_ip 5.119.123.57 208264 port 15730457 208264 nas_port_type Virtual 208264 remote_ip 5.5.5.117 208268 username pourshad 208268 kill_reason Another user logged on this global unique id 208268 mac 208268 bytes_out 0 208268 bytes_in 0 208268 station_ip 5.120.17.147 208268 port 15 208268 unique_id port 208268 remote_ip 10.8.0.122 208272 username hosseine 208272 mac 208272 bytes_out 0 208272 bytes_in 0 208272 station_ip 37.129.194.56 208272 port 6 208272 unique_id port 208272 remote_ip 10.8.0.126 208273 username esmaeilkazemi 208273 mac 208273 bytes_out 0 208273 bytes_in 0 208273 station_ip 37.129.237.67 208273 port 9 208273 unique_id port 208273 remote_ip 10.8.0.66 208278 username barzegar 208278 mac 208278 bytes_out 0 208278 bytes_in 0 208278 station_ip 5.119.169.225 208278 port 27 208278 unique_id port 208278 remote_ip 10.8.1.30 208284 username meghdad1616 208284 mac 208284 bytes_out 0 208284 bytes_in 0 208284 station_ip 5.119.210.213 208284 port 26 208284 unique_id port 208284 remote_ip 10.8.1.122 208286 username mosi 208286 mac 208286 bytes_out 0 208286 bytes_in 0 208286 station_ip 151.235.119.151 208286 port 22 208286 unique_id port 208234 mac 208234 bytes_out 52432 208234 bytes_in 223777 208234 station_ip 83.123.48.93 208234 port 15 208234 unique_id port 208234 remote_ip 10.8.1.126 208235 username mehrpoyan101 208235 mac 208235 bytes_out 0 208235 bytes_in 0 208235 station_ip 5.120.171.32 208235 port 17 208235 unique_id port 208235 remote_ip 10.8.1.18 208237 username majidsarmast 208237 kill_reason Another user logged on this global unique id 208237 mac 208237 bytes_out 0 208237 bytes_in 0 208237 station_ip 37.129.236.182 208237 port 4 208237 unique_id port 208237 remote_ip 10.8.0.194 208244 username mehrpoyan101 208244 mac 208244 bytes_out 373697 208244 bytes_in 2926284 208244 station_ip 5.120.171.32 208244 port 17 208244 unique_id port 208244 remote_ip 10.8.1.18 208251 username pourshad 208251 mac 208251 bytes_out 17839268 208251 bytes_in 35487971 208251 station_ip 5.120.17.147 208251 port 3 208251 unique_id port 208251 remote_ip 10.8.1.10 208252 username mehrpoyan101 208252 mac 208252 bytes_out 0 208252 bytes_in 0 208252 station_ip 5.119.87.194 208252 port 9 208252 unique_id port 208252 remote_ip 10.8.0.134 208257 username yaghobi 208257 mac 208257 bytes_out 913677 208257 bytes_in 2227550 208257 station_ip 83.123.89.121 208257 port 14 208257 unique_id port 208257 remote_ip 10.8.0.106 208259 username esmaeilkazemi 208259 mac 208259 bytes_out 0 208259 bytes_in 0 208259 station_ip 37.129.237.67 208259 port 9 208259 unique_id port 208259 remote_ip 10.8.0.66 208263 username esmaeilkazemi 208263 mac 208263 bytes_out 0 208263 bytes_in 0 208263 station_ip 37.129.237.67 208263 port 11 208263 unique_id port 208263 remote_ip 10.8.0.66 208265 username aminvpn 208265 unique_id port 208265 terminate_cause Lost-Carrier 208265 bytes_out 1169776 208265 bytes_in 12343647 208265 station_ip 83.122.120.25 208265 port 15730450 208265 nas_port_type Virtual 208265 remote_ip 5.5.5.113 208266 username esmaeilkazemi 208266 mac 208266 bytes_out 0 208266 bytes_in 0 208266 station_ip 37.129.237.67 208266 port 9 208266 unique_id port 208266 remote_ip 10.8.0.66 208271 username dorani4942 208271 mac 208271 bytes_out 2228504 208271 bytes_in 23290328 208271 station_ip 83.122.135.52 208271 port 26 208271 unique_id port 208271 remote_ip 10.8.1.118 208274 username aminvpnipad 208274 kill_reason Another user logged on this global unique id 208274 mac 208274 bytes_out 0 208274 bytes_in 0 208274 station_ip 5.119.61.34 208274 port 24 208274 unique_id port 208274 remote_ip 10.8.1.194 208277 username meghdad1616 208277 mac 208277 bytes_out 0 208277 bytes_in 0 208277 station_ip 5.119.210.213 208277 port 26 208277 unique_id port 208277 remote_ip 10.8.1.122 208279 username hatami 208279 mac 208279 bytes_out 159732 208279 bytes_in 1147173 208279 station_ip 151.235.80.95 208279 port 28 208279 unique_id port 208279 remote_ip 10.8.1.70 208281 username godarzi 208281 mac 208281 bytes_out 0 208281 bytes_in 0 208281 station_ip 5.202.65.237 208281 port 23 208281 unique_id port 208282 username meghdad1616 208282 mac 208282 bytes_out 2716 208282 bytes_in 5446 208282 station_ip 5.119.210.213 208282 port 3 208282 unique_id port 208282 remote_ip 10.8.1.122 208283 username meghdad1616 208283 mac 208283 bytes_out 0 208283 bytes_in 0 208283 station_ip 5.119.210.213 208283 port 3 208283 unique_id port 208283 remote_ip 10.8.1.122 208285 username barzegar 208285 mac 208285 bytes_out 0 208285 bytes_in 0 208285 station_ip 5.119.169.225 208285 port 3 208285 unique_id port 208285 remote_ip 10.8.1.30 208241 station_ip 5.119.169.225 208241 port 24 208241 unique_id port 208241 remote_ip 10.8.1.30 208243 username nilufarrajaei 208243 mac 208243 bytes_out 0 208243 bytes_in 0 208243 station_ip 83.123.48.93 208243 port 15 208243 unique_id port 208243 remote_ip 10.8.1.126 208246 username mehrpoyan101 208246 kill_reason Maximum check online fails reached 208246 mac 208246 bytes_out 0 208246 bytes_in 0 208246 station_ip 5.120.171.32 208246 port 17 208246 unique_id port 208248 username mostafa_es78 208248 mac 208248 bytes_out 0 208248 bytes_in 0 208248 station_ip 37.129.1.147 208248 port 16 208248 unique_id port 208248 remote_ip 10.8.0.42 208249 username barzegar 208249 mac 208249 bytes_out 0 208249 bytes_in 0 208249 station_ip 5.119.169.225 208249 port 26 208249 unique_id port 208249 remote_ip 10.8.1.30 208253 username mehrpoyan101 208253 mac 208253 bytes_out 103516 208253 bytes_in 338569 208253 station_ip 5.119.87.194 208253 port 3 208253 unique_id port 208253 remote_ip 10.8.1.18 208255 username meghdad1616 208255 mac 208255 bytes_out 1060241 208255 bytes_in 17143323 208255 station_ip 5.119.210.213 208255 port 24 208255 unique_id port 208255 remote_ip 10.8.1.122 208256 username mehrpoyan101 208256 mac 208256 bytes_out 0 208256 bytes_in 0 208256 station_ip 5.119.87.194 208256 port 9 208256 unique_id port 208256 remote_ip 10.8.0.134 208260 username mehrpoyan101 208260 mac 208260 bytes_out 2642 208260 bytes_in 4348 208260 station_ip 5.119.85.64 208260 port 24 208260 unique_id port 208260 remote_ip 10.8.1.18 208267 username godarzi 208267 kill_reason Another user logged on this global unique id 208267 mac 208267 bytes_out 0 208267 bytes_in 0 208267 station_ip 5.202.65.237 208267 port 23 208267 unique_id port 208267 remote_ip 10.8.1.66 208269 username meghdad1616 208269 mac 208269 bytes_out 3711320 208269 bytes_in 15598029 208269 station_ip 5.119.210.213 208269 port 3 208269 unique_id port 208269 remote_ip 10.8.1.122 208270 username barzegar 208270 mac 208270 bytes_out 0 208270 bytes_in 0 208270 station_ip 5.119.169.225 208270 port 27 208270 unique_id port 208270 remote_ip 10.8.1.30 208275 username meghdad1616 208275 mac 208275 bytes_out 814800 208275 bytes_in 13155341 208275 station_ip 5.119.210.213 208275 port 3 208275 unique_id port 208275 remote_ip 10.8.1.122 208276 username pourshad 208276 mac 208276 bytes_out 0 208276 bytes_in 0 208276 station_ip 5.120.17.147 208276 port 15 208276 unique_id port 208280 username pourshad 208280 mac 208280 bytes_out 6188716 208280 bytes_in 367739 208280 station_ip 5.120.17.147 208280 port 3 208280 unique_id port 208280 remote_ip 10.8.1.10 208297 username mohammadjavad 208297 mac 208297 bytes_out 160772 208297 bytes_in 696145 208297 station_ip 37.129.200.3 208297 port 16 208297 unique_id port 208297 remote_ip 10.8.0.138 208298 username pourshad 208298 mac 208298 bytes_out 0 208298 bytes_in 0 208298 station_ip 5.120.17.147 208298 port 3 208298 unique_id port 208299 username godarzi 208299 mac 208299 bytes_out 0 208299 bytes_in 0 208299 station_ip 5.202.65.237 208299 port 9 208299 unique_id port 208299 remote_ip 10.8.0.74 208303 username aminvpnipad 208303 mac 208303 bytes_out 0 208303 bytes_in 0 208303 station_ip 5.119.61.34 208303 port 24 208303 unique_id port 208303 remote_ip 10.8.1.194 208304 username meghdad1616 208304 mac 208304 bytes_out 0 208304 bytes_in 0 208304 station_ip 5.119.210.213 208304 port 22 208304 unique_id port 208287 username aminvpnipad 208287 kill_reason Another user logged on this global unique id 208287 mac 208287 bytes_out 0 208287 bytes_in 0 208287 station_ip 5.119.61.34 208287 port 24 208287 unique_id port 208289 username mosi 208289 mac 208289 bytes_out 55219 208289 bytes_in 115466 208289 station_ip 151.235.119.151 208289 port 3 208289 unique_id port 208289 remote_ip 10.8.1.54 208293 username barzegar 208293 mac 208293 bytes_out 0 208293 bytes_in 0 208293 station_ip 5.119.169.225 208293 port 23 208293 unique_id port 208293 remote_ip 10.8.1.30 208296 username pourshad 208296 kill_reason Another user logged on this global unique id 208296 mac 208296 bytes_out 0 208296 bytes_in 0 208296 station_ip 5.120.17.147 208296 port 3 208296 unique_id port 208296 remote_ip 10.8.1.10 208300 username mostafa_es78 208300 mac 208300 bytes_out 0 208300 bytes_in 0 208300 station_ip 37.129.1.147 208300 port 6 208300 unique_id port 208300 remote_ip 10.8.0.42 208302 username pourshad 208302 mac 208302 bytes_out 0 208302 bytes_in 0 208302 station_ip 5.120.17.147 208302 port 3 208302 unique_id port 208302 remote_ip 10.8.1.10 208307 username sabaghnezhad 208307 mac 208307 bytes_out 0 208307 bytes_in 0 208307 station_ip 37.129.85.107 208307 port 14 208307 unique_id port 208307 remote_ip 10.8.0.94 208314 username sabaghnezhad 208314 mac 208314 bytes_out 0 208314 bytes_in 0 208314 station_ip 37.129.85.107 208314 port 6 208314 unique_id port 208314 remote_ip 10.8.0.94 208315 username motamedi9772 208315 kill_reason Another user logged on this global unique id 208315 mac 208315 bytes_out 0 208315 bytes_in 0 208315 station_ip 83.123.198.89 208315 port 15 208315 unique_id port 208315 remote_ip 10.8.0.86 208318 username meghdad1616 208318 mac 208318 bytes_out 0 208318 bytes_in 0 208318 station_ip 5.119.210.213 208318 port 23 208318 unique_id port 208318 remote_ip 10.8.1.122 208322 username teymori5660 208322 kill_reason Another user logged on this global unique id 208322 mac 208322 bytes_out 0 208322 bytes_in 0 208322 station_ip 5.120.111.154 208322 port 22 208322 unique_id port 208322 remote_ip 10.8.1.210 208324 username kalantary6037 208324 mac 208324 bytes_out 0 208324 bytes_in 0 208324 station_ip 37.129.149.125 208324 port 9 208324 unique_id port 208324 remote_ip 10.8.0.18 208330 username teymori5660 208330 kill_reason Another user logged on this global unique id 208330 mac 208330 bytes_out 0 208330 bytes_in 0 208330 station_ip 5.120.111.154 208330 port 22 208330 unique_id port 208332 username mostafa_es78 208332 kill_reason Another user logged on this global unique id 208332 mac 208332 bytes_out 0 208332 bytes_in 0 208332 station_ip 83.122.147.131 208332 port 24 208332 unique_id port 208332 remote_ip 10.8.1.202 208338 username meghdad1616 208338 mac 208338 bytes_out 0 208338 bytes_in 0 208338 station_ip 5.119.210.213 208338 port 23 208338 unique_id port 208340 username meghdad1616 208340 mac 208340 bytes_out 0 208340 bytes_in 0 208340 station_ip 5.119.210.213 208340 port 23 208340 unique_id port 208340 remote_ip 10.8.1.122 208344 username meghdad1616 208344 mac 208344 bytes_out 0 208344 bytes_in 0 208344 station_ip 5.119.210.213 208344 port 23 208344 unique_id port 208344 remote_ip 10.8.1.122 208350 username hamid.e 208350 unique_id port 208350 terminate_cause Lost-Carrier 208350 bytes_out 2847163 208350 bytes_in 25386073 208350 station_ip 37.27.54.8 208350 port 15730463 208350 nas_port_type Virtual 208350 remote_ip 5.5.5.122 208354 username mostafa_es78 208354 mac 208354 bytes_out 199757 208288 username meghdad1616 208288 mac 208288 bytes_out 0 208288 bytes_in 0 208288 station_ip 5.119.210.213 208288 port 22 208288 unique_id port 208288 remote_ip 10.8.1.122 208290 username pourshad 208290 mac 208290 bytes_out 7976324 208290 bytes_in 535385 208290 station_ip 5.120.17.147 208290 port 23 208290 unique_id port 208290 remote_ip 10.8.1.10 208291 username aminvpnipad 208291 mac 208291 bytes_out 0 208291 bytes_in 0 208291 station_ip 5.119.61.34 208291 port 24 208291 unique_id port 208292 username hamid.e 208292 unique_id port 208292 terminate_cause User-Request 208292 bytes_out 230853 208292 bytes_in 1649987 208292 station_ip 151.238.240.180 208292 port 15730459 208292 nas_port_type Virtual 208292 remote_ip 5.5.5.119 208294 username mammad 208294 unique_id port 208294 terminate_cause Lost-Carrier 208294 bytes_out 1188655 208294 bytes_in 8774363 208294 station_ip 5.233.63.38 208294 port 15730458 208294 nas_port_type Virtual 208294 remote_ip 5.5.5.118 208295 username barzegar 208295 mac 208295 bytes_out 0 208295 bytes_in 0 208295 station_ip 5.119.169.225 208295 port 23 208295 unique_id port 208295 remote_ip 10.8.1.30 208301 username alirezaza 208301 unique_id port 208301 terminate_cause Lost-Carrier 208301 bytes_out 126014 208301 bytes_in 1619978 208301 station_ip 5.119.198.143 208301 port 15730460 208301 nas_port_type Virtual 208301 remote_ip 5.5.5.120 208305 username farhad3 208305 mac 208305 bytes_out 0 208305 bytes_in 0 208305 station_ip 5.119.161.127 208305 port 22 208305 unique_id port 208305 remote_ip 10.8.1.86 208308 username hosseine 208308 kill_reason Another user logged on this global unique id 208308 mac 208308 bytes_out 0 208308 bytes_in 0 208308 station_ip 37.129.194.56 208308 port 11 208308 unique_id port 208308 remote_ip 10.8.0.126 208309 username mostafa_es78 208309 mac 208309 bytes_out 0 208309 bytes_in 0 208309 station_ip 37.129.1.147 208309 port 22 208309 unique_id port 208309 remote_ip 10.8.1.202 208310 username mostafa_es78 208310 mac 208310 bytes_out 5661 208310 bytes_in 8955 208310 station_ip 83.122.188.147 208310 port 23 208310 unique_id port 208310 remote_ip 10.8.1.202 208311 username barzegar 208311 mac 208311 bytes_out 0 208311 bytes_in 0 208311 station_ip 5.119.169.225 208311 port 22 208311 unique_id port 208311 remote_ip 10.8.1.30 208321 username motamedi9772 208321 kill_reason Another user logged on this global unique id 208321 mac 208321 bytes_out 0 208321 bytes_in 0 208321 station_ip 83.123.198.89 208321 port 15 208321 unique_id port 208326 username houshang 208326 kill_reason Relative expiration date has reached 208326 mac 208326 bytes_out 0 208326 bytes_in 0 208326 station_ip 5.119.70.22 208326 port 26 208326 unique_id port 208328 username barzegar 208328 mac 208328 bytes_out 0 208328 bytes_in 0 208328 station_ip 5.120.46.193 208328 port 26 208328 unique_id port 208328 remote_ip 10.8.1.30 208329 username meghdad1616 208329 kill_reason Another user logged on this global unique id 208329 mac 208329 bytes_out 0 208329 bytes_in 0 208329 station_ip 5.119.210.213 208329 port 23 208329 unique_id port 208329 remote_ip 10.8.1.122 208335 username meghdad1616 208335 kill_reason Another user logged on this global unique id 208335 mac 208335 bytes_out 0 208335 bytes_in 0 208335 station_ip 5.119.210.213 208335 port 23 208335 unique_id port 208339 username meysam 208339 kill_reason Another user logged on this global unique id 208339 mac 208339 bytes_out 0 208339 bytes_in 0 208339 station_ip 188.158.51.232 208339 port 22 208339 unique_id port 208339 remote_ip 10.8.1.6 208304 remote_ip 10.8.1.122 208306 username mostafa_es78 208306 mac 208306 bytes_out 6607 208306 bytes_in 11720 208306 station_ip 37.129.1.147 208306 port 23 208306 unique_id port 208306 remote_ip 10.8.1.202 208312 username aminvpnipad 208312 mac 208312 bytes_out 0 208312 bytes_in 0 208312 station_ip 5.119.61.34 208312 port 22 208312 unique_id port 208312 remote_ip 10.8.1.194 208313 username meghdad1616 208313 mac 208313 bytes_out 0 208313 bytes_in 0 208313 station_ip 5.119.210.213 208313 port 22 208313 unique_id port 208313 remote_ip 10.8.1.122 208316 username mostafa_es78 208316 mac 208316 bytes_out 0 208316 bytes_in 0 208316 station_ip 83.122.188.147 208316 port 9 208316 unique_id port 208316 remote_ip 10.8.0.42 208317 username barzegar 208317 mac 208317 bytes_out 0 208317 bytes_in 0 208317 station_ip 5.119.169.225 208317 port 24 208317 unique_id port 208317 remote_ip 10.8.1.30 208319 username aminvpnipad 208319 mac 208319 bytes_out 0 208319 bytes_in 0 208319 station_ip 5.119.61.34 208319 port 23 208319 unique_id port 208319 remote_ip 10.8.1.194 208320 username mammad 208320 unique_id port 208320 terminate_cause User-Request 208320 bytes_out 2197072 208320 bytes_in 38974614 208320 station_ip 5.233.65.92 208320 port 15730461 208320 nas_port_type Virtual 208320 remote_ip 5.5.5.121 208323 username godarzi 208323 mac 208323 bytes_out 0 208323 bytes_in 0 208323 station_ip 5.202.65.237 208323 port 16 208323 unique_id port 208323 remote_ip 10.8.0.74 208325 username aminvpnipad 208325 mac 208325 bytes_out 0 208325 bytes_in 0 208325 station_ip 5.119.61.34 208325 port 6 208325 unique_id port 208325 remote_ip 10.8.0.202 208327 username motamedi9772 208327 kill_reason Another user logged on this global unique id 208327 mac 208327 bytes_out 0 208327 bytes_in 0 208327 station_ip 83.123.198.89 208327 port 15 208327 unique_id port 208331 username teymori5660 208331 mac 208331 bytes_out 0 208331 bytes_in 0 208331 station_ip 5.120.111.154 208331 port 22 208331 unique_id port 208333 username farhad3 208333 mac 208333 bytes_out 0 208333 bytes_in 0 208333 station_ip 5.119.161.127 208333 port 27 208333 unique_id port 208333 remote_ip 10.8.1.86 208334 username motamedi9772 208334 kill_reason Another user logged on this global unique id 208334 mac 208334 bytes_out 0 208334 bytes_in 0 208334 station_ip 83.123.198.89 208334 port 15 208334 unique_id port 208336 username mostafa_es78 208336 kill_reason Another user logged on this global unique id 208336 mac 208336 bytes_out 0 208336 bytes_in 0 208336 station_ip 83.122.147.131 208336 port 24 208336 unique_id port 208337 username barzegar 208337 mac 208337 bytes_out 0 208337 bytes_in 0 208337 station_ip 5.120.46.193 208337 port 22 208337 unique_id port 208337 remote_ip 10.8.1.30 208343 username mostafa_es78 208343 mac 208343 bytes_out 0 208343 bytes_in 0 208343 station_ip 83.122.147.131 208343 port 24 208343 unique_id port 208345 username meghdad1616 208345 mac 208345 bytes_out 0 208345 bytes_in 0 208345 station_ip 5.119.210.213 208345 port 6 208345 unique_id port 208345 remote_ip 10.8.0.158 208346 username meghdad1616 208346 mac 208346 bytes_out 0 208346 bytes_in 0 208346 station_ip 5.119.210.213 208346 port 6 208346 unique_id port 208346 remote_ip 10.8.0.158 208349 username farhad3 208349 mac 208349 bytes_out 0 208349 bytes_in 0 208349 station_ip 5.119.161.127 208349 port 23 208349 unique_id port 208349 remote_ip 10.8.1.86 208353 username majidsarmast 208341 username motamedi9772 208341 kill_reason Another user logged on this global unique id 208341 mac 208341 bytes_out 0 208341 bytes_in 0 208341 station_ip 83.123.198.89 208341 port 15 208341 unique_id port 208342 username dortaj3792 208342 mac 208342 bytes_out 649230 208342 bytes_in 6300188 208342 station_ip 5.120.17.210 208342 port 6 208342 unique_id port 208342 remote_ip 10.8.0.10 208347 username motamedi9772 208347 mac 208347 bytes_out 0 208347 bytes_in 0 208347 station_ip 83.123.198.89 208347 port 15 208347 unique_id port 208348 username meghdad1616 208348 mac 208348 bytes_out 0 208348 bytes_in 0 208348 station_ip 5.119.210.213 208348 port 24 208348 unique_id port 208348 remote_ip 10.8.1.122 208351 username meysam 208351 mac 208351 bytes_out 0 208351 bytes_in 0 208351 station_ip 188.158.51.232 208351 port 22 208351 unique_id port 208352 username kalantary6037 208352 mac 208352 bytes_out 0 208352 bytes_in 0 208352 station_ip 37.129.128.105 208352 port 6 208352 unique_id port 208352 remote_ip 10.8.0.18 208356 username aminvpnipad 208356 mac 208356 bytes_out 0 208356 bytes_in 0 208356 station_ip 5.119.61.34 208356 port 26 208356 unique_id port 208356 remote_ip 10.8.1.194 208357 username sabaghnezhad 208357 mac 208357 bytes_out 197613 208357 bytes_in 614559 208357 station_ip 37.129.85.107 208357 port 14 208357 unique_id port 208357 remote_ip 10.8.0.94 208361 username aminvpnipad 208361 mac 208361 bytes_out 0 208361 bytes_in 0 208361 station_ip 5.119.61.34 208361 port 24 208361 unique_id port 208361 remote_ip 10.8.1.194 208363 username mosi 208363 mac 208363 bytes_out 0 208363 bytes_in 0 208363 station_ip 37.156.152.85 208363 port 3 208363 unique_id port 208363 remote_ip 10.8.1.54 208367 username aminvpnipad 208367 mac 208367 bytes_out 0 208367 bytes_in 0 208367 station_ip 5.119.61.34 208367 port 3 208367 unique_id port 208367 remote_ip 10.8.1.194 208370 username barzegar8595 208370 mac 208370 bytes_out 0 208370 bytes_in 0 208370 station_ip 46.225.215.37 208370 port 21 208370 unique_id port 208370 remote_ip 10.8.1.26 208374 username farhad3 208374 mac 208374 bytes_out 0 208374 bytes_in 0 208374 station_ip 5.119.161.127 208374 port 24 208374 unique_id port 208374 remote_ip 10.8.1.86 208375 username barzegar 208375 mac 208375 bytes_out 0 208375 bytes_in 0 208375 station_ip 5.120.95.188 208375 port 23 208375 unique_id port 208375 remote_ip 10.8.1.30 208379 username meghdad1616 208379 mac 208379 bytes_out 216912 208379 bytes_in 377614 208379 station_ip 5.119.210.213 208379 port 15 208379 unique_id port 208379 remote_ip 10.8.1.122 208381 username meysam 208381 mac 208381 bytes_out 0 208381 bytes_in 0 208381 station_ip 188.158.51.232 208381 port 15 208381 unique_id port 208381 remote_ip 10.8.1.6 208382 username barzegar 208382 mac 208382 bytes_out 0 208382 bytes_in 0 208382 station_ip 5.120.95.188 208382 port 15 208382 unique_id port 208382 remote_ip 10.8.0.34 208384 username meghdad1616 208384 mac 208384 bytes_out 0 208384 bytes_in 0 208384 station_ip 5.119.210.213 208384 port 23 208384 unique_id port 208384 remote_ip 10.8.1.122 208385 username hamid.e 208385 unique_id port 208385 terminate_cause User-Request 208385 bytes_out 7236763 208385 bytes_in 190642266 208385 station_ip 37.27.18.216 208385 port 15730466 208385 nas_port_type Virtual 208385 remote_ip 5.5.5.125 208386 username aminvpnipad 208386 mac 208386 bytes_out 0 208386 bytes_in 0 208353 kill_reason Another user logged on this global unique id 208353 mac 208353 bytes_out 0 208353 bytes_in 0 208353 station_ip 37.129.236.182 208353 port 4 208353 unique_id port 208359 username hatami 208359 mac 208359 bytes_out 67969 208359 bytes_in 439979 208359 station_ip 151.235.80.95 208359 port 9 208359 unique_id port 208359 remote_ip 10.8.0.14 208364 username meghdad1616 208364 mac 208364 bytes_out 0 208364 bytes_in 0 208364 station_ip 5.119.210.213 208364 port 26 208364 unique_id port 208364 remote_ip 10.8.1.122 208366 username khalili2 208366 unique_id port 208366 terminate_cause Lost-Carrier 208366 bytes_out 2195544 208366 bytes_in 40299345 208366 station_ip 5.119.254.248 208366 port 15730462 208366 nas_port_type Virtual 208366 remote_ip 5.5.5.146 208368 username motamedi9772 208368 mac 208368 bytes_out 0 208368 bytes_in 0 208368 station_ip 83.123.198.89 208368 port 23 208368 unique_id port 208368 remote_ip 10.8.1.182 208377 username hosseine 208377 kill_reason Another user logged on this global unique id 208377 mac 208377 bytes_out 0 208377 bytes_in 0 208377 station_ip 37.129.194.56 208377 port 11 208377 unique_id port 208383 username meghdad1616 208383 mac 208383 bytes_out 0 208383 bytes_in 0 208383 station_ip 5.119.210.213 208383 port 23 208383 unique_id port 208383 remote_ip 10.8.1.122 208389 username barzegar 208389 mac 208389 bytes_out 64651 208389 bytes_in 571199 208389 station_ip 5.120.95.188 208389 port 15 208389 unique_id port 208389 remote_ip 10.8.1.30 208391 username meghdad1616 208391 mac 208391 bytes_out 119200 208391 bytes_in 1179995 208391 station_ip 5.119.210.213 208391 port 15 208391 unique_id port 208391 remote_ip 10.8.1.122 208392 username aminvpnipad 208392 mac 208392 bytes_out 0 208392 bytes_in 0 208392 station_ip 5.119.61.34 208392 port 15 208392 unique_id port 208392 remote_ip 10.8.1.194 208394 username farhad3 208394 kill_reason Another user logged on this global unique id 208394 mac 208394 bytes_out 0 208394 bytes_in 0 208394 station_ip 5.119.161.127 208394 port 24 208394 unique_id port 208394 remote_ip 10.8.1.86 208396 username dortaj3792 208396 mac 208396 bytes_out 0 208396 bytes_in 0 208396 station_ip 5.120.17.210 208396 port 27 208396 unique_id port 208396 remote_ip 10.8.1.62 208397 username barzegar 208397 mac 208397 bytes_out 0 208397 bytes_in 0 208397 station_ip 5.120.95.188 208397 port 28 208397 unique_id port 208397 remote_ip 10.8.1.30 208398 username meghdad1616 208398 mac 208398 bytes_out 0 208398 bytes_in 0 208398 station_ip 5.119.210.213 208398 port 15 208398 unique_id port 208398 remote_ip 10.8.1.122 208401 username aminvpnipad 208401 mac 208401 bytes_out 0 208401 bytes_in 0 208401 station_ip 5.119.61.34 208401 port 14 208401 unique_id port 208401 remote_ip 10.8.0.202 208402 username mostafa_es78 208402 mac 208402 bytes_out 1767072 208402 bytes_in 15515200 208402 station_ip 83.122.147.131 208402 port 6 208402 unique_id port 208402 remote_ip 10.8.0.42 208404 username kalantary6037 208404 mac 208404 bytes_out 57930 208404 bytes_in 107801 208404 station_ip 37.129.128.105 208404 port 6 208404 unique_id port 208404 remote_ip 10.8.0.18 208407 username meghdad1616 208407 mac 208407 bytes_out 0 208407 bytes_in 0 208407 station_ip 5.119.210.213 208407 port 15 208407 unique_id port 208407 remote_ip 10.8.1.122 208410 username nilufarrajaei 208410 mac 208410 bytes_out 63545 208410 bytes_in 98736 208410 station_ip 83.123.48.93 208410 port 4 208410 unique_id port 208410 remote_ip 10.8.0.50 208354 bytes_in 1254116 208354 station_ip 83.122.147.131 208354 port 9 208354 unique_id port 208354 remote_ip 10.8.0.42 208355 username meghdad1616 208355 mac 208355 bytes_out 0 208355 bytes_in 0 208355 station_ip 5.119.210.213 208355 port 24 208355 unique_id port 208355 remote_ip 10.8.1.122 208358 username meghdad1616 208358 mac 208358 bytes_out 0 208358 bytes_in 0 208358 station_ip 5.119.210.213 208358 port 24 208358 unique_id port 208358 remote_ip 10.8.1.122 208360 username pourshad 208360 mac 208360 bytes_out 0 208360 bytes_in 0 208360 station_ip 5.120.17.147 208360 port 3 208360 unique_id port 208360 remote_ip 10.8.1.10 208362 username aminvpnipad 208362 mac 208362 bytes_out 0 208362 bytes_in 0 208362 station_ip 5.119.61.34 208362 port 24 208362 unique_id port 208362 remote_ip 10.8.1.194 208365 username barzegar 208365 mac 208365 bytes_out 0 208365 bytes_in 0 208365 station_ip 5.120.95.188 208365 port 24 208365 unique_id port 208365 remote_ip 10.8.1.30 208369 username mirzaei6046 208369 mac 208369 bytes_out 0 208369 bytes_in 0 208369 station_ip 5.120.73.87 208369 port 21 208369 unique_id port 208369 remote_ip 10.8.1.110 208371 username majidsarmast 208371 mac 208371 bytes_out 0 208371 bytes_in 0 208371 station_ip 37.129.236.182 208371 port 4 208371 unique_id port 208372 username aminvpnipad 208372 mac 208372 bytes_out 0 208372 bytes_in 0 208372 station_ip 5.119.61.34 208372 port 4 208372 unique_id port 208372 remote_ip 10.8.0.202 208373 username meghdad1616 208373 mac 208373 bytes_out 0 208373 bytes_in 0 208373 station_ip 5.119.210.213 208373 port 23 208373 unique_id port 208373 remote_ip 10.8.1.122 208376 username yaghobi 208376 mac 208376 bytes_out 0 208376 bytes_in 0 208376 station_ip 83.123.39.181 208376 port 15 208376 unique_id port 208376 remote_ip 10.8.0.106 208378 username meghdad1616 208378 mac 208378 bytes_out 0 208378 bytes_in 0 208378 station_ip 5.119.210.213 208378 port 15 208378 unique_id port 208378 remote_ip 10.8.1.122 208380 username aminvpnipad 208380 mac 208380 bytes_out 0 208380 bytes_in 0 208380 station_ip 5.119.61.34 208380 port 23 208380 unique_id port 208380 remote_ip 10.8.1.194 208388 username hatami 208388 kill_reason Another user logged on this global unique id 208388 mac 208388 bytes_out 0 208388 bytes_in 0 208388 station_ip 151.235.80.95 208388 port 15 208388 unique_id port 208388 remote_ip 10.8.0.14 208390 username dortaj3792 208390 mac 208390 bytes_out 946311 208390 bytes_in 4481921 208390 station_ip 5.120.17.210 208390 port 14 208390 unique_id port 208390 remote_ip 10.8.0.10 208400 username kalantary6037 208400 mac 208400 bytes_out 80082 208400 bytes_in 147547 208400 station_ip 37.129.128.105 208400 port 14 208400 unique_id port 208400 remote_ip 10.8.0.18 208405 username alirezazadeh 208405 unique_id port 208405 terminate_cause Lost-Carrier 208405 bytes_out 530605 208405 bytes_in 4820269 208405 station_ip 31.56.221.16 208405 port 15730469 208405 nas_port_type Virtual 208405 remote_ip 5.5.5.128 208409 username kalantary6037 208409 mac 208409 bytes_out 98334 208409 bytes_in 161932 208409 station_ip 37.129.128.105 208409 port 6 208409 unique_id port 208409 remote_ip 10.8.0.18 208413 username barzegar8595 208413 mac 208413 bytes_out 0 208413 bytes_in 0 208413 station_ip 46.225.215.37 208413 port 23 208413 unique_id port 208413 remote_ip 10.8.1.26 208416 username aminvpnipad 208416 mac 208416 bytes_out 0 208416 bytes_in 0 208386 station_ip 5.119.61.34 208386 port 15 208386 unique_id port 208386 remote_ip 10.8.0.202 208387 username nilufarrajaei 208387 mac 208387 bytes_out 111662 208387 bytes_in 638575 208387 station_ip 83.123.48.93 208387 port 4 208387 unique_id port 208387 remote_ip 10.8.0.50 208393 username aminvpnipad 208393 mac 208393 bytes_out 0 208393 bytes_in 0 208393 station_ip 5.119.61.34 208393 port 14 208393 unique_id port 208393 remote_ip 10.8.0.202 208395 username kalantary6037 208395 mac 208395 bytes_out 394296 208395 bytes_in 2737265 208395 station_ip 37.129.128.105 208395 port 14 208395 unique_id port 208395 remote_ip 10.8.0.18 208399 username meghdad1616 208399 mac 208399 bytes_out 0 208399 bytes_in 0 208399 station_ip 5.119.210.213 208399 port 15 208399 unique_id port 208399 remote_ip 10.8.1.122 208403 username meghdad1616 208403 mac 208403 bytes_out 666059 208403 bytes_in 4433294 208403 station_ip 5.119.210.213 208403 port 15 208403 unique_id port 208403 remote_ip 10.8.1.122 208406 username yaghobi 208406 mac 208406 bytes_out 0 208406 bytes_in 0 208406 station_ip 83.123.29.117 208406 port 28 208406 unique_id port 208406 remote_ip 10.8.1.106 208408 username barzegar 208408 mac 208408 bytes_out 0 208408 bytes_in 0 208408 station_ip 5.120.95.188 208408 port 15 208408 unique_id port 208408 remote_ip 10.8.1.30 208412 username yaghobi 208412 mac 208412 bytes_out 0 208412 bytes_in 0 208412 station_ip 83.123.29.117 208412 port 15 208412 unique_id port 208412 remote_ip 10.8.1.106 208415 username barzegar 208415 mac 208415 bytes_out 0 208415 bytes_in 0 208415 station_ip 5.120.95.188 208415 port 14 208415 unique_id port 208415 remote_ip 10.8.0.34 208417 username meysam 208417 mac 208417 bytes_out 0 208417 bytes_in 0 208417 station_ip 188.158.51.232 208417 port 26 208417 unique_id port 208417 remote_ip 10.8.1.6 208418 username meghdad1616 208418 mac 208418 bytes_out 0 208418 bytes_in 0 208418 station_ip 5.119.210.213 208418 port 23 208418 unique_id port 208418 remote_ip 10.8.1.122 208425 username farhad3 208425 mac 208425 bytes_out 0 208425 bytes_in 0 208425 station_ip 5.119.161.127 208425 port 24 208425 unique_id port 208426 username aminvpnipad 208426 mac 208426 bytes_out 0 208426 bytes_in 0 208426 station_ip 5.119.61.34 208426 port 23 208426 unique_id port 208426 remote_ip 10.8.1.194 208428 username aminvpnipad 208428 mac 208428 bytes_out 0 208428 bytes_in 0 208428 station_ip 5.119.61.34 208428 port 24 208428 unique_id port 208428 remote_ip 10.8.1.194 208429 username pourshad 208429 mac 208429 bytes_out 0 208429 bytes_in 0 208429 station_ip 5.120.17.147 208429 port 21 208429 unique_id port 208429 remote_ip 10.8.1.10 208431 username hosseine 208431 kill_reason Another user logged on this global unique id 208431 mac 208431 bytes_out 0 208431 bytes_in 0 208431 station_ip 37.129.194.56 208431 port 15 208431 unique_id port 208431 remote_ip 10.8.0.126 208437 username meghdad1616 208437 mac 208437 bytes_out 0 208437 bytes_in 0 208437 station_ip 5.119.210.213 208437 port 24 208437 unique_id port 208437 remote_ip 10.8.1.122 208449 username amin.saeedi2 208449 unique_id port 208449 terminate_cause User-Request 208449 bytes_out 10419 208449 bytes_in 10382 208449 station_ip 5.120.162.153 208449 port 15730481 208449 nas_port_type Virtual 208449 remote_ip 5.5.5.255 208450 username amin.saeedi2 208450 unique_id port 208450 terminate_cause User-Request 208450 bytes_out 0 208450 bytes_in 0 208411 username meghdad1616 208411 mac 208411 bytes_out 0 208411 bytes_in 0 208411 station_ip 5.119.210.213 208411 port 28 208411 unique_id port 208411 remote_ip 10.8.1.122 208414 username barzegar8595 208414 mac 208414 bytes_out 0 208414 bytes_in 0 208414 station_ip 46.225.215.37 208414 port 15 208414 unique_id port 208414 remote_ip 10.8.1.26 208422 username mostafa_es78 208422 mac 208422 bytes_out 51046 208422 bytes_in 82370 208422 station_ip 83.122.147.131 208422 port 6 208422 unique_id port 208422 remote_ip 10.8.0.42 208432 username mosavi0713 208432 mac 208432 bytes_out 544699 208432 bytes_in 3535978 208432 station_ip 37.129.137.207 208432 port 16 208432 unique_id port 208432 remote_ip 10.8.0.22 208433 username meghdad1616 208433 mac 208433 bytes_out 0 208433 bytes_in 0 208433 station_ip 5.119.210.213 208433 port 24 208433 unique_id port 208433 remote_ip 10.8.1.122 208434 username naeimeh 208434 mac 208434 bytes_out 0 208434 bytes_in 0 208434 station_ip 83.123.190.160 208434 port 18 208434 unique_id port 208434 remote_ip 10.8.0.166 208436 username aminvpnipad 208436 mac 208436 bytes_out 0 208436 bytes_in 0 208436 station_ip 5.119.61.34 208436 port 24 208436 unique_id port 208436 remote_ip 10.8.1.194 208440 username aminvpnipad 208440 mac 208440 bytes_out 0 208440 bytes_in 0 208440 station_ip 5.119.61.34 208440 port 24 208440 unique_id port 208440 remote_ip 10.8.1.194 208441 username meghdad1616 208441 mac 208441 bytes_out 0 208441 bytes_in 0 208441 station_ip 5.119.210.213 208441 port 24 208441 unique_id port 208441 remote_ip 10.8.1.122 208446 username yarmohamadi7916 208446 mac 208446 bytes_out 0 208446 bytes_in 0 208446 station_ip 5.119.226.29 208446 port 22 208446 unique_id port 208446 remote_ip 10.8.1.34 208447 username yaghobi 208447 mac 208447 bytes_out 1161153 208447 bytes_in 2373726 208447 station_ip 83.123.29.117 208447 port 14 208447 unique_id port 208447 remote_ip 10.8.0.106 208452 username aminvpnipad 208452 mac 208452 bytes_out 0 208452 bytes_in 0 208452 station_ip 5.119.61.34 208452 port 28 208452 unique_id port 208452 remote_ip 10.8.1.194 208454 username meghdad1616 208454 mac 208454 bytes_out 0 208454 bytes_in 0 208454 station_ip 5.119.210.213 208454 port 14 208454 unique_id port 208454 remote_ip 10.8.0.158 208456 username meysam 208456 mac 208456 bytes_out 0 208456 bytes_in 0 208456 station_ip 188.158.51.232 208456 port 15 208456 unique_id port 208461 username naeimeh 208461 mac 208461 bytes_out 0 208461 bytes_in 0 208461 station_ip 83.123.190.160 208461 port 16 208461 unique_id port 208466 username barzegar 208466 mac 208466 bytes_out 0 208466 bytes_in 0 208466 station_ip 5.119.171.10 208466 port 15 208466 unique_id port 208466 remote_ip 10.8.1.30 208471 username pourshad 208471 mac 208471 bytes_out 0 208471 bytes_in 0 208471 station_ip 5.120.17.147 208471 port 24 208471 unique_id port 208471 remote_ip 10.8.1.10 208474 username mosavi0713 208474 mac 208474 bytes_out 0 208474 bytes_in 0 208474 station_ip 37.129.168.235 208474 port 4 208474 unique_id port 208474 remote_ip 10.8.0.22 208475 username meysam 208475 mac 208475 bytes_out 900529 208475 bytes_in 16655513 208475 station_ip 188.158.51.232 208475 port 24 208475 unique_id port 208475 remote_ip 10.8.1.6 208476 username barzegar 208476 mac 208476 bytes_out 0 208476 bytes_in 0 208476 station_ip 5.120.140.158 208476 port 22 208416 station_ip 5.119.61.34 208416 port 23 208416 unique_id port 208416 remote_ip 10.8.1.194 208419 username mammad 208419 unique_id port 208419 terminate_cause User-Request 208419 bytes_out 11706371 208419 bytes_in 117878214 208419 station_ip 46.100.223.184 208419 port 15730467 208419 nas_port_type Virtual 208419 remote_ip 5.5.5.126 208420 username aminvpnipad 208420 mac 208420 bytes_out 0 208420 bytes_in 0 208420 station_ip 5.119.61.34 208420 port 23 208420 unique_id port 208420 remote_ip 10.8.1.194 208421 username meghdad1616 208421 mac 208421 bytes_out 0 208421 bytes_in 0 208421 station_ip 5.119.210.213 208421 port 23 208421 unique_id port 208421 remote_ip 10.8.1.122 208423 username barzegar 208423 mac 208423 bytes_out 0 208423 bytes_in 0 208423 station_ip 5.113.199.57 208423 port 23 208423 unique_id port 208423 remote_ip 10.8.1.30 208424 username meghdad1616 208424 mac 208424 bytes_out 0 208424 bytes_in 0 208424 station_ip 5.119.210.213 208424 port 26 208424 unique_id port 208424 remote_ip 10.8.1.122 208427 username naeimeh 208427 mac 208427 bytes_out 1044727 208427 bytes_in 10090931 208427 station_ip 83.123.190.160 208427 port 15 208427 unique_id port 208427 remote_ip 10.8.0.166 208430 username hosseine 208430 mac 208430 bytes_out 0 208430 bytes_in 0 208430 station_ip 37.129.194.56 208430 port 11 208430 unique_id port 208435 username aminvpnipad 208435 mac 208435 bytes_out 0 208435 bytes_in 0 208435 station_ip 5.119.61.34 208435 port 24 208435 unique_id port 208435 remote_ip 10.8.1.194 208438 username motamedi9772 208438 mac 208438 bytes_out 77862 208438 bytes_in 80519 208438 station_ip 83.123.115.131 208438 port 18 208438 unique_id port 208438 remote_ip 10.8.0.86 208439 username meysam 208439 mac 208439 bytes_out 0 208439 bytes_in 0 208439 station_ip 188.158.51.232 208439 port 24 208439 unique_id port 208439 remote_ip 10.8.1.6 208442 username esmaeilkazemi 208442 mac 208442 bytes_out 134516 208442 bytes_in 1113002 208442 station_ip 37.129.237.67 208442 port 18 208442 unique_id port 208442 remote_ip 10.8.0.66 208443 username pourshad 208443 mac 208443 bytes_out 0 208443 bytes_in 0 208443 station_ip 5.120.17.147 208443 port 15 208443 unique_id port 208443 remote_ip 10.8.1.10 208444 username aminvpnipad 208444 mac 208444 bytes_out 0 208444 bytes_in 0 208444 station_ip 5.119.61.34 208444 port 15 208444 unique_id port 208444 remote_ip 10.8.1.194 208445 username motamedi9772 208445 mac 208445 bytes_out 2587531 208445 bytes_in 30386678 208445 station_ip 83.123.115.131 208445 port 19 208445 unique_id port 208445 remote_ip 10.8.0.86 208448 username mammad 208448 unique_id port 208448 terminate_cause User-Request 208448 bytes_out 1546428 208448 bytes_in 20059838 208448 station_ip 46.100.223.184 208448 port 15730478 208448 nas_port_type Virtual 208448 remote_ip 5.5.5.126 208453 username meysam 208453 kill_reason Another user logged on this global unique id 208453 mac 208453 bytes_out 0 208453 bytes_in 0 208453 station_ip 188.158.51.232 208453 port 15 208453 unique_id port 208453 remote_ip 10.8.1.6 208457 username sobhan 208457 unique_id port 208457 terminate_cause Lost-Carrier 208457 bytes_out 8441624 208457 bytes_in 187622214 208457 station_ip 5.233.76.131 208457 port 15730471 208457 nas_port_type Virtual 208457 remote_ip 5.5.5.129 208464 username farhad3 208464 kill_reason Another user logged on this global unique id 208464 mac 208464 bytes_out 0 208464 bytes_in 0 208464 station_ip 5.119.161.127 208464 port 23 208464 unique_id port 208464 remote_ip 10.8.1.86 208450 station_ip 5.120.162.153 208450 port 15730482 208450 nas_port_type Virtual 208450 remote_ip 5.5.5.255 208451 username nilufarrajaei 208451 mac 208451 bytes_out 1092293 208451 bytes_in 6546570 208451 station_ip 83.123.48.93 208451 port 4 208451 unique_id port 208451 remote_ip 10.8.0.50 208455 username naeimeh 208455 kill_reason Another user logged on this global unique id 208455 mac 208455 bytes_out 0 208455 bytes_in 0 208455 station_ip 83.123.190.160 208455 port 16 208455 unique_id port 208455 remote_ip 10.8.0.166 208458 username kalantary6037 208458 mac 208458 bytes_out 283487 208458 bytes_in 1146922 208458 station_ip 37.129.149.41 208458 port 4 208458 unique_id port 208458 remote_ip 10.8.0.18 208459 username barzegar 208459 mac 208459 bytes_out 0 208459 bytes_in 0 208459 station_ip 5.119.171.10 208459 port 15 208459 unique_id port 208459 remote_ip 10.8.1.30 208460 username yaghobi 208460 mac 208460 bytes_out 0 208460 bytes_in 0 208460 station_ip 83.123.29.117 208460 port 22 208460 unique_id port 208460 remote_ip 10.8.1.106 208462 username aminvpnipad 208462 mac 208462 bytes_out 0 208462 bytes_in 0 208462 station_ip 5.119.61.34 208462 port 16 208462 unique_id port 208462 remote_ip 10.8.0.202 208463 username kalantary6037 208463 mac 208463 bytes_out 85139 208463 bytes_in 133205 208463 station_ip 37.129.149.41 208463 port 4 208463 unique_id port 208463 remote_ip 10.8.0.18 208465 username arash 208465 mac 208465 bytes_out 1515585 208465 bytes_in 12026509 208465 station_ip 37.27.26.59 208465 port 14 208465 unique_id port 208465 remote_ip 10.8.0.206 208469 username yaghobi 208469 mac 208469 bytes_out 0 208469 bytes_in 0 208469 station_ip 83.123.29.117 208469 port 15 208469 unique_id port 208469 remote_ip 10.8.1.106 208473 username arash 208473 mac 208473 bytes_out 0 208473 bytes_in 0 208473 station_ip 37.27.26.59 208473 port 22 208473 unique_id port 208473 remote_ip 10.8.1.214 208478 username aminvpnipad 208478 mac 208478 bytes_out 0 208478 bytes_in 0 208478 station_ip 5.119.61.34 208478 port 22 208478 unique_id port 208478 remote_ip 10.8.1.194 208481 username barzegar8595 208481 kill_reason Another user logged on this global unique id 208481 mac 208481 bytes_out 0 208481 bytes_in 0 208481 station_ip 46.225.213.37 208481 port 21 208481 unique_id port 208481 remote_ip 10.8.1.26 208483 username meysam 208483 mac 208483 bytes_out 0 208483 bytes_in 0 208483 station_ip 188.158.51.232 208483 port 23 208483 unique_id port 208483 remote_ip 10.8.1.6 208484 username meghdad1616 208484 mac 208484 bytes_out 0 208484 bytes_in 0 208484 station_ip 5.119.210.213 208484 port 23 208484 unique_id port 208484 remote_ip 10.8.1.122 208485 username barzegar 208485 mac 208485 bytes_out 6695 208485 bytes_in 12558 208485 station_ip 5.120.140.158 208485 port 4 208485 unique_id port 208485 remote_ip 10.8.0.34 208486 username aminvpnipad 208486 mac 208486 bytes_out 0 208486 bytes_in 0 208486 station_ip 5.119.61.34 208486 port 28 208486 unique_id port 208486 remote_ip 10.8.1.194 208488 username meysam 208488 mac 208488 bytes_out 0 208488 bytes_in 0 208488 station_ip 188.158.51.232 208488 port 24 208488 unique_id port 208488 remote_ip 10.8.1.6 208489 username barzegar 208489 mac 208489 bytes_out 0 208489 bytes_in 0 208489 station_ip 5.120.140.158 208489 port 23 208489 unique_id port 208489 remote_ip 10.8.1.30 208491 username yaghobi 208491 mac 208491 bytes_out 0 208491 bytes_in 0 208467 username pourshad 208467 mac 208467 bytes_out 0 208467 bytes_in 0 208467 station_ip 5.120.17.147 208467 port 24 208467 unique_id port 208467 remote_ip 10.8.1.10 208468 username pourshad 208468 mac 208468 bytes_out 0 208468 bytes_in 0 208468 station_ip 5.120.17.147 208468 port 24 208468 unique_id port 208468 remote_ip 10.8.1.10 208470 username meghdad1616 208470 mac 208470 bytes_out 0 208470 bytes_in 0 208470 station_ip 5.119.210.213 208470 port 28 208470 unique_id port 208470 remote_ip 10.8.1.122 208472 username aminvpnipad 208472 mac 208472 bytes_out 0 208472 bytes_in 0 208472 station_ip 5.119.61.34 208472 port 24 208472 unique_id port 208472 remote_ip 10.8.1.194 208479 username farhad3 208479 mac 208479 bytes_out 0 208479 bytes_in 0 208479 station_ip 5.119.161.127 208479 port 23 208479 unique_id port 208480 username kalantary6037 208480 mac 208480 bytes_out 12866 208480 bytes_in 19644 208480 station_ip 37.129.132.97 208480 port 4 208480 unique_id port 208480 remote_ip 10.8.0.18 208482 username pourshad 208482 mac 208482 bytes_out 0 208482 bytes_in 0 208482 station_ip 5.120.17.147 208482 port 28 208482 unique_id port 208482 remote_ip 10.8.1.10 208487 username mammad 208487 unique_id port 208487 terminate_cause User-Request 208487 bytes_out 685065 208487 bytes_in 8461479 208487 station_ip 46.100.223.184 208487 port 15730490 208487 nas_port_type Virtual 208487 remote_ip 5.5.5.126 208490 username barzegar8595 208490 mac 208490 bytes_out 0 208490 bytes_in 0 208490 station_ip 46.225.213.37 208490 port 21 208490 unique_id port 208492 username meghdad1616 208492 mac 208492 bytes_out 0 208492 bytes_in 0 208492 station_ip 5.119.210.213 208492 port 15 208492 unique_id port 208492 remote_ip 10.8.1.122 208497 username aminvpnipad 208497 mac 208497 bytes_out 0 208497 bytes_in 0 208497 station_ip 5.119.61.34 208497 port 4 208497 unique_id port 208497 remote_ip 10.8.0.202 208501 username kalantary6037 208501 mac 208501 bytes_out 0 208501 bytes_in 0 208501 station_ip 37.129.222.41 208501 port 22 208501 unique_id port 208501 remote_ip 10.8.1.98 208503 username yaghobi 208503 kill_reason Another user logged on this global unique id 208503 mac 208503 bytes_out 0 208503 bytes_in 0 208503 station_ip 83.123.29.117 208503 port 21 208503 unique_id port 208503 remote_ip 10.8.1.106 208504 username meghdad1616 208504 mac 208504 bytes_out 0 208504 bytes_in 0 208504 station_ip 5.119.210.213 208504 port 21 208504 unique_id port 208504 remote_ip 10.8.0.158 208505 username meghdad1616 208505 mac 208505 bytes_out 0 208505 bytes_in 0 208505 station_ip 5.119.210.213 208505 port 21 208505 unique_id port 208505 remote_ip 10.8.0.158 208508 username aminvpnipad 208508 mac 208508 bytes_out 0 208508 bytes_in 0 208508 station_ip 5.119.61.34 208508 port 16 208508 unique_id port 208508 remote_ip 10.8.0.202 208515 username aminvpn 208515 mac 208515 bytes_out 0 208515 bytes_in 0 208515 station_ip 83.122.18.92 208515 port 6 208515 unique_id port 208515 remote_ip 10.8.0.58 208518 username aminvpnipad 208518 mac 208518 bytes_out 56678 208518 bytes_in 296308 208518 station_ip 5.119.61.34 208518 port 16 208518 unique_id port 208518 remote_ip 10.8.0.202 208520 username farhad3 208520 kill_reason Another user logged on this global unique id 208520 mac 208520 bytes_out 0 208520 bytes_in 0 208520 station_ip 5.120.9.253 208520 port 11 208520 unique_id port 208520 remote_ip 10.8.0.98 208525 username meghdad1616 208476 unique_id port 208476 remote_ip 10.8.1.30 208477 username meghdad1616 208477 mac 208477 bytes_out 0 208477 bytes_in 0 208477 station_ip 5.119.210.213 208477 port 4 208477 unique_id port 208477 remote_ip 10.8.0.158 208493 username hamid.e 208493 unique_id port 208493 terminate_cause User-Request 208493 bytes_out 305675 208493 bytes_in 3066935 208493 station_ip 37.27.18.216 208493 port 15730489 208493 nas_port_type Virtual 208493 remote_ip 5.5.5.125 208495 username barzegar 208495 mac 208495 bytes_out 3158 208495 bytes_in 5912 208495 station_ip 5.120.148.128 208495 port 4 208495 unique_id port 208495 remote_ip 10.8.0.34 208496 username farhad3 208496 mac 208496 bytes_out 0 208496 bytes_in 0 208496 station_ip 5.119.161.127 208496 port 22 208496 unique_id port 208496 remote_ip 10.8.1.86 208499 username yaghobi 208499 mac 208499 bytes_out 0 208499 bytes_in 0 208499 station_ip 83.123.29.117 208499 port 24 208499 unique_id port 208499 remote_ip 10.8.1.106 208500 username farhad3 208500 mac 208500 bytes_out 0 208500 bytes_in 0 208500 station_ip 5.119.161.127 208500 port 15 208500 unique_id port 208500 remote_ip 10.8.1.86 208502 username farhad3 208502 mac 208502 bytes_out 0 208502 bytes_in 0 208502 station_ip 5.119.161.127 208502 port 15 208502 unique_id port 208502 remote_ip 10.8.1.86 208511 username mostafa_es78 208511 mac 208511 bytes_out 2568430 208511 bytes_in 3811625 208511 station_ip 83.122.147.131 208511 port 11 208511 unique_id port 208511 remote_ip 10.8.0.42 208514 username kalantary6037 208514 mac 208514 bytes_out 0 208514 bytes_in 0 208514 station_ip 37.129.222.121 208514 port 15 208514 unique_id port 208514 remote_ip 10.8.1.98 208519 username mosi 208519 mac 208519 bytes_out 144055 208519 bytes_in 999299 208519 station_ip 2.183.129.93 208519 port 6 208519 unique_id port 208519 remote_ip 10.8.0.38 208522 username yarmohamadi7916 208522 mac 208522 bytes_out 1238029 208522 bytes_in 4253798 208522 station_ip 5.119.220.102 208522 port 21 208522 unique_id port 208522 remote_ip 10.8.1.34 208523 username farhad3 208523 kill_reason Another user logged on this global unique id 208523 mac 208523 bytes_out 0 208523 bytes_in 0 208523 station_ip 5.120.9.253 208523 port 11 208523 unique_id port 208526 username aminvpnipad 208526 mac 208526 bytes_out 0 208526 bytes_in 0 208526 station_ip 5.119.61.34 208526 port 19 208526 unique_id port 208526 remote_ip 10.8.0.202 208528 username iranmanesh4443 208528 mac 208528 bytes_out 0 208528 bytes_in 0 208528 station_ip 5.119.188.44 208528 port 4 208528 unique_id port 208528 remote_ip 10.8.0.198 208529 username yaghobi 208529 mac 208529 bytes_out 0 208529 bytes_in 0 208529 station_ip 83.123.53.77 208529 port 22 208529 unique_id port 208529 remote_ip 10.8.1.106 208532 username mostafa_es78 208532 mac 208532 bytes_out 32235 208532 bytes_in 49610 208532 station_ip 83.122.147.131 208532 port 4 208532 unique_id port 208532 remote_ip 10.8.0.42 208535 username meghdad1616 208535 mac 208535 bytes_out 0 208535 bytes_in 0 208535 station_ip 5.119.210.213 208535 port 16 208535 unique_id port 208535 remote_ip 10.8.0.158 208546 username kamali3 208546 kill_reason Another user logged on this global unique id 208546 mac 208546 bytes_out 0 208546 bytes_in 0 208546 station_ip 83.122.216.134 208546 port 4 208546 unique_id port 208548 username kalantary6037 208548 mac 208548 bytes_out 0 208548 bytes_in 0 208548 station_ip 37.129.191.129 208548 port 24 208548 unique_id port 208491 station_ip 83.123.29.117 208491 port 15 208491 unique_id port 208491 remote_ip 10.8.1.106 208494 username kalantary6037 208494 mac 208494 bytes_out 0 208494 bytes_in 0 208494 station_ip 37.129.222.41 208494 port 23 208494 unique_id port 208494 remote_ip 10.8.1.98 208498 username godarzi 208498 kill_reason Another user logged on this global unique id 208498 mac 208498 bytes_out 0 208498 bytes_in 0 208498 station_ip 5.202.65.237 208498 port 27 208498 unique_id port 208498 remote_ip 10.8.1.66 208506 username farhad3 208506 mac 208506 bytes_out 265830 208506 bytes_in 1158071 208506 station_ip 5.120.9.253 208506 port 16 208506 unique_id port 208506 remote_ip 10.8.0.98 208507 username meghdad1616 208507 mac 208507 bytes_out 0 208507 bytes_in 0 208507 station_ip 5.119.210.213 208507 port 16 208507 unique_id port 208507 remote_ip 10.8.0.158 208509 username farhad3 208509 mac 208509 bytes_out 236441 208509 bytes_in 1419199 208509 station_ip 5.120.9.253 208509 port 16 208509 unique_id port 208509 remote_ip 10.8.0.98 208510 username mosi 208510 mac 208510 bytes_out 197731 208510 bytes_in 327428 208510 station_ip 2.183.56.112 208510 port 19 208510 unique_id port 208510 remote_ip 10.8.0.38 208512 username farhad3 208512 mac 208512 bytes_out 133932 208512 bytes_in 420078 208512 station_ip 5.120.9.253 208512 port 16 208512 unique_id port 208512 remote_ip 10.8.0.98 208513 username nilufarrajaei 208513 kill_reason Another user logged on this global unique id 208513 mac 208513 bytes_out 0 208513 bytes_in 0 208513 station_ip 83.123.48.93 208513 port 26 208513 unique_id port 208513 remote_ip 10.8.1.126 208516 username meghdad1616 208516 mac 208516 bytes_out 0 208516 bytes_in 0 208516 station_ip 5.119.210.213 208516 port 15 208516 unique_id port 208516 remote_ip 10.8.1.122 208517 username meghdad1616 208517 mac 208517 bytes_out 0 208517 bytes_in 0 208517 station_ip 5.119.210.213 208517 port 15 208517 unique_id port 208517 remote_ip 10.8.1.122 208521 username hamid1430 208521 mac 208521 bytes_out 2221736 208521 bytes_in 7564282 208521 station_ip 37.129.94.189 208521 port 18 208521 unique_id port 208521 remote_ip 10.8.0.62 208524 username kalantary6037 208524 mac 208524 bytes_out 0 208524 bytes_in 0 208524 station_ip 37.129.222.121 208524 port 22 208524 unique_id port 208524 remote_ip 10.8.1.98 208531 username mostafa_es78 208531 mac 208531 bytes_out 236745 208531 bytes_in 596266 208531 station_ip 83.122.147.131 208531 port 16 208531 unique_id port 208531 remote_ip 10.8.0.42 208533 username hamid1430 208533 kill_reason Another user logged on this global unique id 208533 mac 208533 bytes_out 0 208533 bytes_in 0 208533 station_ip 37.129.141.223 208533 port 18 208533 unique_id port 208533 remote_ip 10.8.0.62 208534 username mostafa_es78 208534 mac 208534 bytes_out 7266 208534 bytes_in 19927 208534 station_ip 83.122.147.131 208534 port 11 208534 unique_id port 208534 remote_ip 10.8.0.42 208537 username yaghobi 208537 mac 208537 bytes_out 0 208537 bytes_in 0 208537 station_ip 83.123.53.77 208537 port 22 208537 unique_id port 208537 remote_ip 10.8.1.106 208539 username aminvpnipad 208539 mac 208539 bytes_out 0 208539 bytes_in 0 208539 station_ip 5.119.61.34 208539 port 11 208539 unique_id port 208539 remote_ip 10.8.0.202 208544 username pourshad 208544 kill_reason Another user logged on this global unique id 208544 mac 208544 bytes_out 0 208544 bytes_in 0 208544 station_ip 5.119.178.195 208544 port 21 208544 unique_id port 208544 remote_ip 10.8.1.10 208525 mac 208525 bytes_out 22197 208525 bytes_in 46571 208525 station_ip 5.119.210.213 208525 port 19 208525 unique_id port 208525 remote_ip 10.8.0.158 208527 username farhad3 208527 mac 208527 bytes_out 0 208527 bytes_in 0 208527 station_ip 5.120.9.253 208527 port 11 208527 unique_id port 208530 username nilufarrajaei 208530 kill_reason Another user logged on this global unique id 208530 mac 208530 bytes_out 0 208530 bytes_in 0 208530 station_ip 83.123.48.93 208530 port 26 208530 unique_id port 208536 username mostafa_es78 208536 mac 208536 bytes_out 0 208536 bytes_in 0 208536 station_ip 83.122.147.131 208536 port 23 208536 unique_id port 208536 remote_ip 10.8.1.202 208538 username kalantary6037 208538 mac 208538 bytes_out 0 208538 bytes_in 0 208538 station_ip 37.129.191.129 208538 port 24 208538 unique_id port 208538 remote_ip 10.8.1.98 208540 username barzegar 208540 mac 208540 bytes_out 0 208540 bytes_in 0 208540 station_ip 5.120.174.145 208540 port 22 208540 unique_id port 208540 remote_ip 10.8.1.30 208541 username mostafa_es78 208541 mac 208541 bytes_out 0 208541 bytes_in 0 208541 station_ip 83.122.147.131 208541 port 23 208541 unique_id port 208541 remote_ip 10.8.1.202 208542 username mostafa_es78 208542 mac 208542 bytes_out 2681 208542 bytes_in 5782 208542 station_ip 83.122.147.131 208542 port 11 208542 unique_id port 208542 remote_ip 10.8.0.42 208543 username kamali3 208543 kill_reason Another user logged on this global unique id 208543 mac 208543 bytes_out 0 208543 bytes_in 0 208543 station_ip 83.122.216.134 208543 port 4 208543 unique_id port 208543 remote_ip 10.8.0.182 208549 username meghdad1616 208549 mac 208549 bytes_out 0 208549 bytes_in 0 208549 station_ip 5.119.210.213 208549 port 21 208549 unique_id port 208549 remote_ip 10.8.0.158 208551 username meghdad1616 208551 mac 208551 bytes_out 0 208551 bytes_in 0 208551 station_ip 5.119.210.213 208551 port 21 208551 unique_id port 208551 remote_ip 10.8.0.158 208552 username meghdad1616 208552 mac 208552 bytes_out 0 208552 bytes_in 0 208552 station_ip 5.119.210.213 208552 port 21 208552 unique_id port 208552 remote_ip 10.8.0.158 208556 username aminvpn 208556 unique_id port 208556 terminate_cause User-Request 208556 bytes_out 6455225 208556 bytes_in 96733080 208556 station_ip 5.120.162.153 208556 port 15730483 208556 nas_port_type Virtual 208556 remote_ip 5.5.5.255 208560 username kamali3 208560 kill_reason Another user logged on this global unique id 208560 mac 208560 bytes_out 0 208560 bytes_in 0 208560 station_ip 83.122.216.134 208560 port 4 208560 unique_id port 208566 username aminvpn 208566 unique_id port 208566 terminate_cause Lost-Carrier 208566 bytes_out 520671 208566 bytes_in 12179210 208566 station_ip 5.120.162.153 208566 port 15730495 208566 nas_port_type Virtual 208566 remote_ip 5.5.5.255 208572 username kalantary6037 208572 mac 208572 bytes_out 0 208572 bytes_in 0 208572 station_ip 37.129.235.233 208572 port 23 208572 unique_id port 208572 remote_ip 10.8.1.98 208579 username meghdad1616 208579 mac 208579 bytes_out 0 208579 bytes_in 0 208579 station_ip 5.119.210.213 208579 port 16 208579 unique_id port 208579 remote_ip 10.8.0.158 208584 username barzegar8595 208584 mac 208584 bytes_out 351868 208584 bytes_in 1072485 208584 station_ip 46.225.210.144 208584 port 21 208584 unique_id port 208584 remote_ip 10.8.1.26 208585 username pourshad 208585 mac 208585 bytes_out 0 208585 bytes_in 0 208585 station_ip 5.119.178.195 208585 port 23 208585 unique_id port 208545 username hosseini0093 208545 mac 208545 bytes_out 0 208545 bytes_in 0 208545 station_ip 5.120.4.2 208545 port 23 208545 unique_id port 208545 remote_ip 10.8.1.170 208547 username hamid1430 208547 kill_reason Another user logged on this global unique id 208547 mac 208547 bytes_out 0 208547 bytes_in 0 208547 station_ip 37.129.141.223 208547 port 18 208547 unique_id port 208550 username aminvpnipad 208550 mac 208550 bytes_out 0 208550 bytes_in 0 208550 station_ip 5.119.61.34 208550 port 21 208550 unique_id port 208550 remote_ip 10.8.0.202 208553 username hamid1430 208553 mac 208553 bytes_out 0 208553 bytes_in 0 208553 station_ip 37.129.141.223 208553 port 18 208553 unique_id port 208559 username pourshad 208559 kill_reason Another user logged on this global unique id 208559 mac 208559 bytes_out 0 208559 bytes_in 0 208559 station_ip 5.119.178.195 208559 port 21 208559 unique_id port 208559 remote_ip 10.8.1.10 208561 username mohammadjavad 208561 mac 208561 bytes_out 0 208561 bytes_in 0 208561 station_ip 37.129.202.169 208561 port 16 208561 unique_id port 208561 remote_ip 10.8.0.138 208563 username kalantary6037 208563 mac 208563 bytes_out 45390 208563 bytes_in 96301 208563 station_ip 37.129.235.233 208563 port 23 208563 unique_id port 208563 remote_ip 10.8.1.98 208565 username kamali3 208565 kill_reason Another user logged on this global unique id 208565 mac 208565 bytes_out 0 208565 bytes_in 0 208565 station_ip 83.122.216.134 208565 port 4 208565 unique_id port 208567 username meghdad1616 208567 mac 208567 bytes_out 0 208567 bytes_in 0 208567 station_ip 5.119.210.213 208567 port 21 208567 unique_id port 208568 username mostafa_es78 208568 mac 208568 bytes_out 2884147 208568 bytes_in 274866 208568 station_ip 83.122.147.131 208568 port 18 208568 unique_id port 208568 remote_ip 10.8.0.42 208569 username alirezazadeh 208569 unique_id port 208569 terminate_cause Lost-Carrier 208569 bytes_out 411219 208569 bytes_in 6596658 208569 station_ip 5.120.123.181 208569 port 15730496 208569 nas_port_type Virtual 208569 remote_ip 5.5.5.103 208571 username kamali3 208571 kill_reason Another user logged on this global unique id 208571 mac 208571 bytes_out 0 208571 bytes_in 0 208571 station_ip 83.122.216.134 208571 port 4 208571 unique_id port 208573 username barzegar 208573 mac 208573 bytes_out 0 208573 bytes_in 0 208573 station_ip 5.120.174.145 208573 port 21 208573 unique_id port 208573 remote_ip 10.8.1.30 208576 username pourshad 208576 mac 208576 bytes_out 0 208576 bytes_in 0 208576 station_ip 5.119.178.195 208576 port 21 208576 unique_id port 208576 remote_ip 10.8.1.10 208581 username kamali3 208581 kill_reason Another user logged on this global unique id 208581 mac 208581 bytes_out 0 208581 bytes_in 0 208581 station_ip 83.122.216.134 208581 port 4 208581 unique_id port 208589 username barzegar 208589 mac 208589 bytes_out 0 208589 bytes_in 0 208589 station_ip 5.120.174.145 208589 port 21 208589 unique_id port 208589 remote_ip 10.8.1.30 208595 username pourshad 208595 mac 208595 bytes_out 65835 208595 bytes_in 129570 208595 station_ip 5.119.178.195 208595 port 21 208595 unique_id port 208595 remote_ip 10.8.1.10 208597 username kamali3 208597 kill_reason Another user logged on this global unique id 208597 mac 208597 bytes_out 0 208597 bytes_in 0 208597 station_ip 83.122.216.134 208597 port 4 208597 unique_id port 208600 username kalantary6037 208600 mac 208600 bytes_out 435632 208600 bytes_in 4243077 208600 station_ip 37.129.205.101 208600 port 14 208600 unique_id port 208548 remote_ip 10.8.1.98 208554 username kamali3 208554 kill_reason Another user logged on this global unique id 208554 mac 208554 bytes_out 0 208554 bytes_in 0 208554 station_ip 83.122.216.134 208554 port 4 208554 unique_id port 208555 username mostafa_es78 208555 mac 208555 bytes_out 18427 208555 bytes_in 32527 208555 station_ip 83.122.147.131 208555 port 11 208555 unique_id port 208555 remote_ip 10.8.0.42 208557 username barzegar 208557 mac 208557 bytes_out 0 208557 bytes_in 0 208557 station_ip 5.120.174.145 208557 port 22 208557 unique_id port 208557 remote_ip 10.8.1.30 208558 username nilufarrajaei 208558 mac 208558 bytes_out 0 208558 bytes_in 0 208558 station_ip 83.123.48.93 208558 port 26 208558 unique_id port 208562 username meghdad1616 208562 kill_reason Another user logged on this global unique id 208562 mac 208562 bytes_out 0 208562 bytes_in 0 208562 station_ip 5.119.210.213 208562 port 21 208562 unique_id port 208562 remote_ip 10.8.0.158 208564 username aminvpnipad 208564 mac 208564 bytes_out 167865 208564 bytes_in 1473388 208564 station_ip 5.119.61.34 208564 port 16 208564 unique_id port 208564 remote_ip 10.8.0.202 208570 username hamid1430 208570 mac 208570 bytes_out 0 208570 bytes_in 0 208570 station_ip 37.129.199.84 208570 port 21 208570 unique_id port 208570 remote_ip 10.8.0.62 208574 username khalili2 208574 mac 208574 bytes_out 580260 208574 bytes_in 5909703 208574 station_ip 5.120.155.173 208574 port 18 208574 unique_id port 208574 remote_ip 10.8.0.78 208575 username mostafa_es78 208575 mac 208575 bytes_out 52413 208575 bytes_in 75266 208575 station_ip 83.122.147.131 208575 port 16 208575 unique_id port 208575 remote_ip 10.8.0.42 208577 username kharazmi2920 208577 mac 208577 bytes_out 0 208577 bytes_in 0 208577 station_ip 113.203.62.96 208577 port 11 208577 unique_id port 208577 remote_ip 10.8.0.54 208578 username meghdad1616 208578 mac 208578 bytes_out 0 208578 bytes_in 0 208578 station_ip 5.119.210.213 208578 port 11 208578 unique_id port 208578 remote_ip 10.8.0.158 208580 username aminvpnipad 208580 mac 208580 bytes_out 0 208580 bytes_in 0 208580 station_ip 5.119.61.34 208580 port 11 208580 unique_id port 208580 remote_ip 10.8.0.202 208582 username barzegar8595 208582 mac 208582 bytes_out 4177364 208582 bytes_in 32839018 208582 station_ip 46.225.213.37 208582 port 6 208582 unique_id port 208582 remote_ip 10.8.0.170 208583 username majidsarmast 208583 mac 208583 bytes_out 36490 208583 bytes_in 195344 208583 station_ip 37.129.159.162 208583 port 16 208583 unique_id port 208583 remote_ip 10.8.0.194 208588 username mostafa_es78 208588 mac 208588 bytes_out 7063 208588 bytes_in 10274 208588 station_ip 83.122.147.131 208588 port 16 208588 unique_id port 208588 remote_ip 10.8.0.42 208590 username milan 208590 kill_reason Another user logged on this global unique id 208590 mac 208590 bytes_out 0 208590 bytes_in 0 208590 station_ip 5.120.109.57 208590 port 2 208590 unique_id port 208592 username aminvpnipad 208592 mac 208592 bytes_out 0 208592 bytes_in 0 208592 station_ip 5.119.61.34 208592 port 16 208592 unique_id port 208592 remote_ip 10.8.0.202 208593 username aminvpnipad 208593 mac 208593 bytes_out 0 208593 bytes_in 0 208593 station_ip 5.119.61.34 208593 port 18 208593 unique_id port 208593 remote_ip 10.8.0.202 208596 username dortaj3792 208596 mac 208596 bytes_out 3577762 208596 bytes_in 20597359 208596 station_ip 5.120.17.210 208596 port 14 208596 unique_id port 208596 remote_ip 10.8.0.10 208585 remote_ip 10.8.1.10 208586 username mostafa_es78 208586 mac 208586 bytes_out 32647 208586 bytes_in 55672 208586 station_ip 83.122.147.131 208586 port 18 208586 unique_id port 208586 remote_ip 10.8.0.42 208587 username kalantary6037 208587 mac 208587 bytes_out 433364 208587 bytes_in 1221982 208587 station_ip 37.129.235.233 208587 port 21 208587 unique_id port 208587 remote_ip 10.8.1.98 208591 username kamali3 208591 kill_reason Another user logged on this global unique id 208591 mac 208591 bytes_out 0 208591 bytes_in 0 208591 station_ip 83.122.216.134 208591 port 4 208591 unique_id port 208594 username barzegar8595 208594 mac 208594 bytes_out 0 208594 bytes_in 0 208594 station_ip 46.225.232.77 208594 port 24 208594 unique_id port 208594 remote_ip 10.8.1.26 208601 username pourshad 208601 mac 208601 bytes_out 0 208601 bytes_in 0 208601 station_ip 5.119.178.195 208601 port 21 208601 unique_id port 208601 remote_ip 10.8.1.10 208603 username meghdad1616 208603 mac 208603 bytes_out 708668 208603 bytes_in 7495639 208603 station_ip 5.119.210.213 208603 port 11 208603 unique_id port 208603 remote_ip 10.8.0.158 208610 username barzegar8595 208610 mac 208610 bytes_out 15531 208610 bytes_in 18792 208610 station_ip 5.119.253.7 208610 port 11 208610 unique_id port 208610 remote_ip 10.8.0.170 208612 username meghdad1616 208612 mac 208612 bytes_out 0 208612 bytes_in 0 208612 station_ip 5.119.210.213 208612 port 23 208612 unique_id port 208612 remote_ip 10.8.1.122 208614 username morteza4424 208614 mac 208614 bytes_out 3135912 208614 bytes_in 49304621 208614 station_ip 37.129.79.70 208614 port 16 208614 unique_id port 208614 remote_ip 10.8.0.30 208620 username barzegar 208620 mac 208620 bytes_out 0 208620 bytes_in 0 208620 station_ip 5.120.174.145 208620 port 23 208620 unique_id port 208620 remote_ip 10.8.1.30 208626 username motamedi9772 208626 kill_reason Another user logged on this global unique id 208626 mac 208626 bytes_out 0 208626 bytes_in 0 208626 station_ip 83.123.11.248 208626 port 9 208626 unique_id port 208628 username mirzaei6046 208628 mac 208628 bytes_out 1512491 208628 bytes_in 5182941 208628 station_ip 5.120.73.87 208628 port 3 208628 unique_id port 208628 remote_ip 10.8.1.110 208630 username aminvpnipad 208630 mac 208630 bytes_out 0 208630 bytes_in 0 208630 station_ip 5.119.61.34 208630 port 4 208630 unique_id port 208630 remote_ip 10.8.0.202 208631 username mirzaei6046 208631 mac 208631 bytes_out 16732 208631 bytes_in 16364 208631 station_ip 5.120.73.87 208631 port 21 208631 unique_id port 208631 remote_ip 10.8.1.110 208632 username meghdad1616 208632 mac 208632 bytes_out 3454082 208632 bytes_in 34773633 208632 station_ip 5.119.210.213 208632 port 14 208632 unique_id port 208632 remote_ip 10.8.0.158 208636 username morteza4424 208636 kill_reason Another user logged on this global unique id 208636 mac 208636 bytes_out 0 208636 bytes_in 0 208636 station_ip 37.129.79.70 208636 port 4 208636 unique_id port 208636 remote_ip 10.8.0.30 208637 username barzegar 208637 mac 208637 bytes_out 0 208637 bytes_in 0 208637 station_ip 5.120.174.145 208637 port 24 208637 unique_id port 208637 remote_ip 10.8.1.30 208638 username aminvpnipad 208638 mac 208638 bytes_out 0 208638 bytes_in 0 208638 station_ip 5.119.61.34 208638 port 18 208638 unique_id port 208638 remote_ip 10.8.0.202 208642 username arash 208642 kill_reason Another user logged on this global unique id 208642 mac 208642 bytes_out 0 208642 bytes_in 0 208642 station_ip 37.27.26.59 208598 username barzegar 208598 mac 208598 bytes_out 0 208598 bytes_in 0 208598 station_ip 5.120.174.145 208598 port 21 208598 unique_id port 208598 remote_ip 10.8.1.30 208599 username kamali3 208599 kill_reason Another user logged on this global unique id 208599 mac 208599 bytes_out 0 208599 bytes_in 0 208599 station_ip 83.122.216.134 208599 port 4 208599 unique_id port 208604 username charkhandaz3496 208604 mac 208604 bytes_out 1396277 208604 bytes_in 12104351 208604 station_ip 5.119.143.8 208604 port 19 208604 unique_id port 208604 remote_ip 10.8.0.142 208605 username meghdad1616 208605 mac 208605 bytes_out 0 208605 bytes_in 0 208605 station_ip 5.119.210.213 208605 port 11 208605 unique_id port 208605 remote_ip 10.8.0.158 208606 username pourshad 208606 mac 208606 bytes_out 0 208606 bytes_in 0 208606 station_ip 5.119.178.195 208606 port 21 208606 unique_id port 208606 remote_ip 10.8.1.10 208609 username aminvpn 208609 kill_reason Maximum check online fails reached 208609 unique_id port 208609 bytes_out 2349573 208609 bytes_in 8555411 208609 station_ip 31.57.141.32 208609 port 15730500 208609 nas_port_type Virtual 208609 remote_ip 5.5.5.106 208611 username sabaghnezhad 208611 mac 208611 bytes_out 3124372 208611 bytes_in 9940281 208611 station_ip 37.129.85.107 208611 port 9 208611 unique_id port 208611 remote_ip 10.8.0.94 208615 username mohammadjavad 208615 mac 208615 bytes_out 0 208615 bytes_in 0 208615 station_ip 37.129.134.9 208615 port 14 208615 unique_id port 208615 remote_ip 10.8.0.138 208618 username kalantary6037 208618 mac 208618 bytes_out 147937 208618 bytes_in 735588 208618 station_ip 37.129.191.153 208618 port 11 208618 unique_id port 208618 remote_ip 10.8.0.18 208619 username morteza4424 208619 mac 208619 bytes_out 13581 208619 bytes_in 43844 208619 station_ip 37.129.79.70 208619 port 16 208619 unique_id port 208619 remote_ip 10.8.0.30 208622 username motamedi9772 208622 kill_reason Another user logged on this global unique id 208622 mac 208622 bytes_out 0 208622 bytes_in 0 208622 station_ip 83.123.11.248 208622 port 9 208622 unique_id port 208622 remote_ip 10.8.0.86 208623 username pourshad 208623 mac 208623 bytes_out 834070 208623 bytes_in 4167797 208623 station_ip 5.119.178.195 208623 port 21 208623 unique_id port 208623 remote_ip 10.8.1.10 208627 username khalili2 208627 mac 208627 bytes_out 0 208627 bytes_in 0 208627 station_ip 5.120.155.173 208627 port 18 208627 unique_id port 208627 remote_ip 10.8.0.78 208629 username barzegar 208629 mac 208629 bytes_out 0 208629 bytes_in 0 208629 station_ip 5.120.174.145 208629 port 4 208629 unique_id port 208629 remote_ip 10.8.0.34 208633 username kalantary6037 208633 mac 208633 bytes_out 34595 208633 bytes_in 51689 208633 station_ip 37.129.171.125 208633 port 19 208633 unique_id port 208633 remote_ip 10.8.0.18 208634 username mostafa_es78 208634 mac 208634 bytes_out 129784 208634 bytes_in 168056 208634 station_ip 83.122.147.131 208634 port 18 208634 unique_id port 208634 remote_ip 10.8.0.42 208635 username meghdad1616 208635 mac 208635 bytes_out 0 208635 bytes_in 0 208635 station_ip 5.119.210.213 208635 port 14 208635 unique_id port 208635 remote_ip 10.8.0.158 208639 username nilufarrajaei 208639 mac 208639 bytes_out 0 208639 bytes_in 0 208639 station_ip 83.123.48.93 208639 port 22 208639 unique_id port 208639 remote_ip 10.8.1.126 208649 username morteza4424 208649 mac 208649 bytes_out 0 208649 bytes_in 0 208649 station_ip 37.129.79.70 208649 port 4 208649 unique_id port 208600 remote_ip 10.8.0.18 208602 username aminvpnipad 208602 mac 208602 bytes_out 0 208602 bytes_in 0 208602 station_ip 5.119.61.34 208602 port 14 208602 unique_id port 208602 remote_ip 10.8.0.202 208607 username barzegar 208607 mac 208607 bytes_out 0 208607 bytes_in 0 208607 station_ip 5.120.174.145 208607 port 21 208607 unique_id port 208607 remote_ip 10.8.1.30 208608 username kamali3 208608 kill_reason Another user logged on this global unique id 208608 mac 208608 bytes_out 0 208608 bytes_in 0 208608 station_ip 83.122.216.134 208608 port 4 208608 unique_id port 208613 username aminvpnipad 208613 mac 208613 bytes_out 0 208613 bytes_in 0 208613 station_ip 5.119.61.34 208613 port 11 208613 unique_id port 208613 remote_ip 10.8.0.202 208616 username meghdad1616 208616 mac 208616 bytes_out 0 208616 bytes_in 0 208616 station_ip 5.119.210.213 208616 port 23 208616 unique_id port 208616 remote_ip 10.8.1.122 208617 username morteza4424 208617 mac 208617 bytes_out 0 208617 bytes_in 0 208617 station_ip 37.129.79.70 208617 port 23 208617 unique_id port 208617 remote_ip 10.8.1.42 208621 username kamali3 208621 kill_reason Another user logged on this global unique id 208621 mac 208621 bytes_out 0 208621 bytes_in 0 208621 station_ip 83.122.216.134 208621 port 4 208621 unique_id port 208624 username kamali3 208624 mac 208624 bytes_out 0 208624 bytes_in 0 208624 station_ip 83.122.216.134 208624 port 4 208624 unique_id port 208625 username morteza4424 208625 mac 208625 bytes_out 0 208625 bytes_in 0 208625 station_ip 37.129.79.70 208625 port 4 208625 unique_id port 208625 remote_ip 10.8.0.30 208640 username aminvpn 208640 unique_id port 208640 terminate_cause Lost-Carrier 208640 bytes_out 6873258 208640 bytes_in 100157521 208640 station_ip 5.120.11.33 208640 port 15730498 208640 nas_port_type Virtual 208640 remote_ip 5.5.5.105 208641 username yarmohamadi7916 208641 kill_reason Another user logged on this global unique id 208641 mac 208641 bytes_out 0 208641 bytes_in 0 208641 station_ip 5.119.220.102 208641 port 15 208641 unique_id port 208641 remote_ip 10.8.1.34 208647 username morteza4424 208647 kill_reason Another user logged on this global unique id 208647 mac 208647 bytes_out 0 208647 bytes_in 0 208647 station_ip 37.129.79.70 208647 port 4 208647 unique_id port 208650 username barzegar8595 208650 mac 208650 bytes_out 0 208650 bytes_in 0 208650 station_ip 46.225.232.77 208650 port 3 208650 unique_id port 208650 remote_ip 10.8.1.26 208655 username barzegar 208655 mac 208655 bytes_out 0 208655 bytes_in 0 208655 station_ip 5.120.174.145 208655 port 3 208655 unique_id port 208655 remote_ip 10.8.1.30 208657 username arash 208657 kill_reason Another user logged on this global unique id 208657 mac 208657 bytes_out 0 208657 bytes_in 0 208657 station_ip 37.27.26.59 208657 port 21 208657 unique_id port 208658 username hosseini0093 208658 mac 208658 bytes_out 513144 208658 bytes_in 4420269 208658 station_ip 5.120.166.2 208658 port 16 208658 unique_id port 208658 remote_ip 10.8.0.154 208660 username mehrpoyan101 208660 mac 208660 bytes_out 0 208660 bytes_in 0 208660 station_ip 5.120.64.114 208660 port 3 208660 unique_id port 208660 remote_ip 10.8.1.18 208664 username mammad 208664 unique_id port 208664 terminate_cause Lost-Carrier 208664 bytes_out 1986421 208664 bytes_in 61077501 208664 station_ip 46.100.223.184 208664 port 15730509 208664 nas_port_type Virtual 208664 remote_ip 5.5.5.126 208668 username motamedi9772 208668 mac 208668 bytes_out 0 208668 bytes_in 0 208642 port 21 208642 unique_id port 208642 remote_ip 10.8.1.214 208643 username amirzadeh1339 208643 unique_id port 208643 terminate_cause Lost-Carrier 208643 bytes_out 41574563 208643 bytes_in 839567116 208643 station_ip 37.27.53.142 208643 port 15730477 208643 nas_port_type Virtual 208643 remote_ip 5.5.5.131 208644 username aminvpn 208644 unique_id port 208644 terminate_cause Lost-Carrier 208644 bytes_out 4405381 208644 bytes_in 70325082 208644 station_ip 5.120.162.153 208644 port 15730499 208644 nas_port_type Virtual 208644 remote_ip 5.5.5.255 208645 username meghdad1616 208645 mac 208645 bytes_out 0 208645 bytes_in 0 208645 station_ip 5.119.210.213 208645 port 22 208645 unique_id port 208645 remote_ip 10.8.1.122 208646 username meghdad1616 208646 mac 208646 bytes_out 2482 208646 bytes_in 4759 208646 station_ip 5.119.210.213 208646 port 18 208646 unique_id port 208646 remote_ip 10.8.0.158 208648 username motamedi9772 208648 kill_reason Another user logged on this global unique id 208648 mac 208648 bytes_out 0 208648 bytes_in 0 208648 station_ip 83.123.11.248 208648 port 9 208648 unique_id port 208652 username saeeddamghani 208652 unique_id port 208652 terminate_cause User-Request 208652 bytes_out 439134 208652 bytes_in 12311255 208652 station_ip 217.60.218.93 208652 port 15730512 208652 nas_port_type Virtual 208652 remote_ip 5.5.5.26 208653 username godarzi 208653 kill_reason Another user logged on this global unique id 208653 mac 208653 bytes_out 0 208653 bytes_in 0 208653 station_ip 5.202.65.237 208653 port 27 208653 unique_id port 208654 username meghdad1616 208654 mac 208654 bytes_out 0 208654 bytes_in 0 208654 station_ip 5.119.210.213 208654 port 3 208654 unique_id port 208654 remote_ip 10.8.1.122 208656 username nilufarrajaei 208656 mac 208656 bytes_out 0 208656 bytes_in 0 208656 station_ip 83.123.48.93 208656 port 24 208656 unique_id port 208656 remote_ip 10.8.1.126 208662 username mehrpoyan101 208662 mac 208662 bytes_out 0 208662 bytes_in 0 208662 station_ip 5.120.64.114 208662 port 18 208662 unique_id port 208662 remote_ip 10.8.0.134 208665 username mehrpoyan101 208665 kill_reason Another user logged on this global unique id 208665 mac 208665 bytes_out 0 208665 bytes_in 0 208665 station_ip 5.120.64.114 208665 port 21 208665 unique_id port 208665 remote_ip 10.8.0.134 208667 username hosseine 208667 mac 208667 bytes_out 0 208667 bytes_in 0 208667 station_ip 37.129.194.56 208667 port 15 208667 unique_id port 208670 username mostafa_es78 208670 mac 208670 bytes_out 17569 208670 bytes_in 22229 208670 station_ip 83.122.147.131 208670 port 14 208670 unique_id port 208670 remote_ip 10.8.0.42 208673 username barzegar 208673 mac 208673 bytes_out 0 208673 bytes_in 0 208673 station_ip 5.120.174.145 208673 port 15 208673 unique_id port 208673 remote_ip 10.8.1.30 208675 username mirzaei6046 208675 kill_reason Another user logged on this global unique id 208675 mac 208675 bytes_out 0 208675 bytes_in 0 208675 station_ip 5.120.107.143 208675 port 23 208675 unique_id port 208675 remote_ip 10.8.1.110 208679 username mostafa_es78 208679 mac 208679 bytes_out 0 208679 bytes_in 0 208679 station_ip 83.122.147.131 208679 port 21 208679 unique_id port 208679 remote_ip 10.8.0.42 208681 username hosseini0093 208681 mac 208681 bytes_out 2641485 208681 bytes_in 27900277 208681 station_ip 5.120.166.2 208681 port 25 208681 unique_id port 208681 remote_ip 10.8.0.154 208684 username mehrpoyan101 208684 mac 208684 bytes_out 0 208684 bytes_in 0 208684 station_ip 5.120.57.72 208684 port 3 208684 unique_id port 208651 username khalili2 208651 mac 208651 bytes_out 2936398 208651 bytes_in 39697648 208651 station_ip 5.120.155.173 208651 port 16 208651 unique_id port 208651 remote_ip 10.8.0.78 208659 username aminvpnipad 208659 mac 208659 bytes_out 71001 208659 bytes_in 109059 208659 station_ip 5.119.61.34 208659 port 18 208659 unique_id port 208659 remote_ip 10.8.0.202 208661 username nilufarrajaei 208661 mac 208661 bytes_out 0 208661 bytes_in 0 208661 station_ip 83.123.48.93 208661 port 21 208661 unique_id port 208661 remote_ip 10.8.0.50 208663 username kalantary6037 208663 mac 208663 bytes_out 22216 208663 bytes_in 37996 208663 station_ip 37.129.191.141 208663 port 16 208663 unique_id port 208663 remote_ip 10.8.0.18 208666 username kamali3 208666 mac 208666 bytes_out 0 208666 bytes_in 0 208666 station_ip 83.122.131.226 208666 port 3 208666 unique_id port 208666 remote_ip 10.8.1.206 208669 username pourshad 208669 mac 208669 bytes_out 285014 208669 bytes_in 1765096 208669 station_ip 5.119.178.195 208669 port 3 208669 unique_id port 208669 remote_ip 10.8.1.10 208672 username mammad 208672 unique_id port 208672 terminate_cause Lost-Carrier 208672 bytes_out 910862 208672 bytes_in 4549982 208672 station_ip 5.233.66.158 208672 port 15730513 208672 nas_port_type Virtual 208672 remote_ip 5.5.5.255 208674 username arash 208674 mac 208674 bytes_out 0 208674 bytes_in 0 208674 station_ip 37.27.26.59 208674 port 21 208674 unique_id port 208678 username mehrpoyan101 208678 mac 208678 bytes_out 0 208678 bytes_in 0 208678 station_ip 5.120.140.107 208678 port 14 208678 unique_id port 208678 remote_ip 10.8.0.134 208685 username farhad3 208685 mac 208685 bytes_out 497862 208685 bytes_in 1165395 208685 station_ip 5.119.194.97 208685 port 24 208685 unique_id port 208685 remote_ip 10.8.0.98 208687 username milan 208687 kill_reason Another user logged on this global unique id 208687 mac 208687 bytes_out 0 208687 bytes_in 0 208687 station_ip 5.120.109.57 208687 port 2 208687 unique_id port 208692 username nilufarrajaei 208692 mac 208692 bytes_out 2989381 208692 bytes_in 13614360 208692 station_ip 83.123.48.93 208692 port 18 208692 unique_id port 208692 remote_ip 10.8.0.50 208693 username mehrpoyan101 208693 mac 208693 bytes_out 346106 208693 bytes_in 1609435 208693 station_ip 5.120.108.33 208693 port 24 208693 unique_id port 208693 remote_ip 10.8.0.134 208694 username hosseini0093 208694 kill_reason Another user logged on this global unique id 208694 mac 208694 bytes_out 0 208694 bytes_in 0 208694 station_ip 5.119.185.186 208694 port 25 208694 unique_id port 208694 remote_ip 10.8.0.154 208698 username hosseini0093 208698 mac 208698 bytes_out 0 208698 bytes_in 0 208698 station_ip 5.119.185.186 208698 port 25 208698 unique_id port 208699 username motamedi9772 208699 mac 208699 bytes_out 0 208699 bytes_in 0 208699 station_ip 83.123.20.216 208699 port 24 208699 unique_id port 208699 remote_ip 10.8.0.86 208707 username kalantary6037 208707 mac 208707 bytes_out 270587 208707 bytes_in 2624043 208707 station_ip 37.129.191.141 208707 port 18 208707 unique_id port 208707 remote_ip 10.8.0.18 208712 username khademi 208712 kill_reason Another user logged on this global unique id 208712 mac 208712 bytes_out 0 208712 bytes_in 0 208712 station_ip 37.129.98.124 208712 port 11 208712 unique_id port 208712 remote_ip 10.8.0.26 208713 username mehrpoyan101 208713 kill_reason Another user logged on this global unique id 208713 mac 208713 bytes_out 0 208713 bytes_in 0 208713 station_ip 5.120.96.142 208668 station_ip 83.123.11.248 208668 port 9 208668 unique_id port 208671 username morteza4424 208671 mac 208671 bytes_out 0 208671 bytes_in 0 208671 station_ip 37.129.79.70 208671 port 22 208671 unique_id port 208671 remote_ip 10.8.0.30 208676 username meghdad1616 208676 mac 208676 bytes_out 0 208676 bytes_in 0 208676 station_ip 5.119.210.213 208676 port 23 208676 unique_id port 208676 remote_ip 10.8.0.158 208677 username aminvpnipad 208677 mac 208677 bytes_out 55766 208677 bytes_in 121527 208677 station_ip 5.119.61.34 208677 port 24 208677 unique_id port 208677 remote_ip 10.8.0.202 208680 username aminvpns6 208680 mac 208680 bytes_out 2734531 208680 bytes_in 31695439 208680 station_ip 5.120.162.153 208680 port 4 208680 unique_id port 208680 remote_ip 10.8.0.210 208682 username barzegar 208682 mac 208682 bytes_out 0 208682 bytes_in 0 208682 station_ip 5.120.174.145 208682 port 3 208682 unique_id port 208682 remote_ip 10.8.1.30 208683 username hosseini0093 208683 mac 208683 bytes_out 245959 208683 bytes_in 2374881 208683 station_ip 5.119.40.174 208683 port 4 208683 unique_id port 208683 remote_ip 10.8.0.154 208688 username mehrpoyan101 208688 mac 208688 bytes_out 0 208688 bytes_in 0 208688 station_ip 5.120.57.72 208688 port 26 208688 unique_id port 208688 remote_ip 10.8.0.134 208697 username amirzadeh1339 208697 unique_id port 208697 terminate_cause User-Request 208697 bytes_out 3859959 208697 bytes_in 93797801 208697 station_ip 37.27.53.142 208697 port 15730510 208697 nas_port_type Virtual 208697 remote_ip 5.5.5.109 208700 username motamedi9772 208700 mac 208700 bytes_out 0 208700 bytes_in 0 208700 station_ip 83.123.20.216 208700 port 24 208700 unique_id port 208700 remote_ip 10.8.0.86 208704 username mehrpoyan101 208704 mac 208704 bytes_out 163530 208704 bytes_in 449359 208704 station_ip 5.120.108.33 208704 port 18 208704 unique_id port 208704 remote_ip 10.8.0.134 208705 username aminvpnipad 208705 mac 208705 bytes_out 0 208705 bytes_in 0 208705 station_ip 5.119.61.34 208705 port 24 208705 unique_id port 208705 remote_ip 10.8.0.202 208706 username motamedi9772 208706 mac 208706 bytes_out 0 208706 bytes_in 0 208706 station_ip 83.123.20.216 208706 port 22 208706 unique_id port 208706 remote_ip 10.8.0.86 208709 username mosi 208709 mac 208709 bytes_out 0 208709 bytes_in 0 208709 station_ip 2.183.56.119 208709 port 3 208709 unique_id port 208709 remote_ip 10.8.1.54 208710 username mehrpoyan101 208710 mac 208710 bytes_out 284906 208710 bytes_in 1939769 208710 station_ip 5.119.168.16 208710 port 25 208710 unique_id port 208710 remote_ip 10.8.0.134 208714 username motamedi9772 208714 mac 208714 bytes_out 0 208714 bytes_in 0 208714 station_ip 83.123.20.216 208714 port 22 208714 unique_id port 208714 remote_ip 10.8.1.182 208716 username motamedi9772 208716 mac 208716 bytes_out 0 208716 bytes_in 0 208716 station_ip 83.123.20.216 208716 port 22 208716 unique_id port 208716 remote_ip 10.8.1.182 208719 username motamedi9772 208719 mac 208719 bytes_out 0 208719 bytes_in 0 208719 station_ip 83.123.20.216 208719 port 22 208719 unique_id port 208719 remote_ip 10.8.0.86 208720 username aminvpn 208720 unique_id port 208720 terminate_cause Lost-Carrier 208720 bytes_out 2070676 208720 bytes_in 31552328 208720 station_ip 5.120.162.153 208720 port 15730515 208720 nas_port_type Virtual 208720 remote_ip 5.5.5.89 208722 username aminvpnipad 208722 mac 208722 bytes_out 0 208722 bytes_in 0 208684 remote_ip 10.8.1.18 208686 username barzegar 208686 mac 208686 bytes_out 0 208686 bytes_in 0 208686 station_ip 5.120.174.145 208686 port 15 208686 unique_id port 208686 remote_ip 10.8.1.30 208689 username aminvpnipad 208689 mac 208689 bytes_out 282132 208689 bytes_in 428025 208689 station_ip 5.119.61.34 208689 port 4 208689 unique_id port 208689 remote_ip 10.8.0.202 208690 username barzegar 208690 kill_reason Maximum number of concurrent logins reached 208690 mac 208690 bytes_out 0 208690 bytes_in 0 208690 station_ip 5.120.174.145 208690 port 21 208690 unique_id port 208691 username kalantary6037 208691 mac 208691 bytes_out 3953789 208691 bytes_in 48796843 208691 station_ip 37.129.191.141 208691 port 22 208691 unique_id port 208691 remote_ip 10.8.0.18 208695 username motamedi9772 208695 mac 208695 bytes_out 44551 208695 bytes_in 328206 208695 station_ip 83.123.20.216 208695 port 24 208695 unique_id port 208695 remote_ip 10.8.0.86 208696 username motamedi9772 208696 mac 208696 bytes_out 0 208696 bytes_in 0 208696 station_ip 83.123.20.216 208696 port 24 208696 unique_id port 208696 remote_ip 10.8.0.86 208701 username yarmohamadi7916 208701 kill_reason Another user logged on this global unique id 208701 mac 208701 bytes_out 0 208701 bytes_in 0 208701 station_ip 5.120.15.188 208701 port 16 208701 unique_id port 208701 remote_ip 10.8.0.214 208702 username nilufarrajaei 208702 kill_reason Another user logged on this global unique id 208702 mac 208702 bytes_out 0 208702 bytes_in 0 208702 station_ip 83.123.48.93 208702 port 22 208702 unique_id port 208702 remote_ip 10.8.0.50 208703 username motamedi9772 208703 mac 208703 bytes_out 0 208703 bytes_in 0 208703 station_ip 83.123.20.216 208703 port 22 208703 unique_id port 208703 remote_ip 10.8.1.182 208708 username pourshad 208708 mac 208708 bytes_out 34171 208708 bytes_in 54157 208708 station_ip 5.119.178.195 208708 port 21 208708 unique_id port 208708 remote_ip 10.8.1.10 208711 username motamedi9772 208711 mac 208711 bytes_out 0 208711 bytes_in 0 208711 station_ip 83.123.20.216 208711 port 18 208711 unique_id port 208711 remote_ip 10.8.0.86 208715 username motamedi9772 208715 mac 208715 bytes_out 0 208715 bytes_in 0 208715 station_ip 83.123.20.216 208715 port 24 208715 unique_id port 208715 remote_ip 10.8.0.86 208718 username pourshad 208718 mac 208718 bytes_out 388225 208718 bytes_in 892134 208718 station_ip 5.119.178.195 208718 port 21 208718 unique_id port 208718 remote_ip 10.8.1.10 208725 username motamedi9772 208725 mac 208725 bytes_out 0 208725 bytes_in 0 208725 station_ip 83.123.20.216 208725 port 25 208725 unique_id port 208725 remote_ip 10.8.0.86 208727 username yarmohamadi7916 208727 kill_reason Another user logged on this global unique id 208727 mac 208727 bytes_out 0 208727 bytes_in 0 208727 station_ip 5.120.15.188 208727 port 16 208727 unique_id port 208729 username motamedi9772 208729 mac 208729 bytes_out 358017 208729 bytes_in 2057965 208729 station_ip 83.123.20.216 208729 port 22 208729 unique_id port 208729 remote_ip 10.8.1.182 208732 username amirzadeh1339 208732 unique_id port 208732 terminate_cause User-Request 208732 bytes_out 3306313 208732 bytes_in 86007882 208732 station_ip 37.27.53.142 208732 port 15730517 208732 nas_port_type Virtual 208732 remote_ip 5.5.5.109 208734 username motamedi9772 208734 mac 208734 bytes_out 0 208734 bytes_in 0 208734 station_ip 83.123.20.216 208734 port 14 208734 unique_id port 208734 remote_ip 10.8.0.86 208735 username motamedi9772 208735 mac 208735 bytes_out 0 208713 port 22 208713 unique_id port 208713 remote_ip 10.8.0.134 208717 username nilufarrajaei 208717 mac 208717 bytes_out 0 208717 bytes_in 0 208717 station_ip 83.123.48.93 208717 port 3 208717 unique_id port 208717 remote_ip 10.8.1.126 208721 username mammad 208721 unique_id port 208721 terminate_cause User-Request 208721 bytes_out 13758244 208721 bytes_in 63866443 208721 station_ip 5.233.66.158 208721 port 15730514 208721 nas_port_type Virtual 208721 remote_ip 5.5.5.255 208723 username motamedi9772 208723 mac 208723 bytes_out 0 208723 bytes_in 0 208723 station_ip 83.123.20.216 208723 port 3 208723 unique_id port 208723 remote_ip 10.8.1.182 208724 username motamedi9772 208724 mac 208724 bytes_out 0 208724 bytes_in 0 208724 station_ip 83.123.20.216 208724 port 3 208724 unique_id port 208724 remote_ip 10.8.1.182 208726 username mehrpoyan101 208726 mac 208726 bytes_out 175953 208726 bytes_in 1064298 208726 station_ip 5.119.38.18 208726 port 24 208726 unique_id port 208726 remote_ip 10.8.0.134 208728 username kalantary6037 208728 kill_reason Another user logged on this global unique id 208728 mac 208728 bytes_out 0 208728 bytes_in 0 208728 station_ip 37.129.255.121 208728 port 22 208728 unique_id port 208728 remote_ip 10.8.0.18 208738 username mehrpoyan101 208738 kill_reason Another user logged on this global unique id 208738 mac 208738 bytes_out 0 208738 bytes_in 0 208738 station_ip 5.120.75.145 208738 port 22 208738 unique_id port 208738 remote_ip 10.8.0.134 208743 username milan 208743 mac 208743 bytes_out 0 208743 bytes_in 0 208743 station_ip 5.120.109.57 208743 port 2 208743 unique_id port 208748 username motamedi9772 208748 mac 208748 bytes_out 0 208748 bytes_in 0 208748 station_ip 83.123.20.216 208748 port 2 208748 unique_id port 208748 remote_ip 10.8.1.182 208749 username majidsarmast 208749 mac 208749 bytes_out 2897028 208749 bytes_in 24432234 208749 station_ip 83.122.213.78 208749 port 6 208749 unique_id port 208749 remote_ip 10.8.0.194 208752 username hatami 208752 mac 208752 bytes_out 103759 208752 bytes_in 269369 208752 station_ip 2.183.151.223 208752 port 14 208752 unique_id port 208752 remote_ip 10.8.0.14 208753 username motamedi9772 208753 mac 208753 bytes_out 0 208753 bytes_in 0 208753 station_ip 83.123.20.216 208753 port 6 208753 unique_id port 208753 remote_ip 10.8.0.86 208760 username motamedi9772 208760 mac 208760 bytes_out 0 208760 bytes_in 0 208760 station_ip 83.123.20.216 208760 port 15 208760 unique_id port 208760 remote_ip 10.8.0.86 208762 username farhad3 208762 kill_reason Another user logged on this global unique id 208762 mac 208762 bytes_out 0 208762 bytes_in 0 208762 station_ip 5.119.194.97 208762 port 4 208762 unique_id port 208765 username iranmanesh4443 208765 mac 208765 bytes_out 229061 208765 bytes_in 1532326 208765 station_ip 5.120.150.70 208765 port 6 208765 unique_id port 208765 remote_ip 10.8.0.198 208766 username motamedi9772 208766 mac 208766 bytes_out 9973 208766 bytes_in 29726 208766 station_ip 83.123.20.216 208766 port 22 208766 unique_id port 208766 remote_ip 10.8.0.86 208767 username sabaghnezhad 208767 mac 208767 bytes_out 679244 208767 bytes_in 2566064 208767 station_ip 37.129.85.107 208767 port 19 208767 unique_id port 208767 remote_ip 10.8.0.94 208769 username aminvpn 208769 unique_id port 208769 terminate_cause Lost-Carrier 208769 bytes_out 497922 208769 bytes_in 2108072 208769 station_ip 37.129.138.241 208769 port 15730518 208769 nas_port_type Virtual 208769 remote_ip 5.5.5.92 208773 username mehrpoyan101 208722 station_ip 5.119.61.34 208722 port 22 208722 unique_id port 208722 remote_ip 10.8.0.202 208730 username khademi 208730 kill_reason Another user logged on this global unique id 208730 mac 208730 bytes_out 0 208730 bytes_in 0 208730 station_ip 37.129.98.124 208730 port 11 208730 unique_id port 208731 username motamedi9772 208731 mac 208731 bytes_out 0 208731 bytes_in 0 208731 station_ip 83.123.20.216 208731 port 25 208731 unique_id port 208731 remote_ip 10.8.0.86 208733 username tahmorsi 208733 mac 208733 bytes_out 1520099 208733 bytes_in 14101541 208733 station_ip 86.57.74.215 208733 port 14 208733 unique_id port 208733 remote_ip 10.8.0.218 208737 username motamedi9772 208737 mac 208737 bytes_out 0 208737 bytes_in 0 208737 station_ip 83.123.20.216 208737 port 25 208737 unique_id port 208737 remote_ip 10.8.0.86 208739 username motamedi9772 208739 mac 208739 bytes_out 0 208739 bytes_in 0 208739 station_ip 83.123.20.216 208739 port 22 208739 unique_id port 208739 remote_ip 10.8.1.182 208740 username aminvpnipad 208740 mac 208740 bytes_out 0 208740 bytes_in 0 208740 station_ip 5.119.61.34 208740 port 24 208740 unique_id port 208740 remote_ip 10.8.0.202 208741 username motamedi9772 208741 mac 208741 bytes_out 0 208741 bytes_in 0 208741 station_ip 83.123.20.216 208741 port 24 208741 unique_id port 208741 remote_ip 10.8.0.86 208742 username motamedi9772 208742 mac 208742 bytes_out 0 208742 bytes_in 0 208742 station_ip 83.123.20.216 208742 port 24 208742 unique_id port 208742 remote_ip 10.8.0.86 208744 username motamedi9772 208744 mac 208744 bytes_out 0 208744 bytes_in 0 208744 station_ip 83.123.20.216 208744 port 25 208744 unique_id port 208744 remote_ip 10.8.0.86 208745 username farhad3 208745 kill_reason Another user logged on this global unique id 208745 mac 208745 bytes_out 0 208745 bytes_in 0 208745 station_ip 5.119.194.97 208745 port 4 208745 unique_id port 208745 remote_ip 10.8.0.98 208751 username motamedi9772 208751 mac 208751 bytes_out 0 208751 bytes_in 0 208751 station_ip 83.123.20.216 208751 port 2 208751 unique_id port 208751 remote_ip 10.8.1.182 208754 username motamedi9772 208754 mac 208754 bytes_out 0 208754 bytes_in 0 208754 station_ip 83.123.20.216 208754 port 6 208754 unique_id port 208754 remote_ip 10.8.0.86 208755 username hosseine 208755 mac 208755 bytes_out 0 208755 bytes_in 0 208755 station_ip 37.129.194.56 208755 port 15 208755 unique_id port 208759 username mehrpoyan101 208759 mac 208759 bytes_out 237191 208759 bytes_in 1248802 208759 station_ip 5.120.162.91 208759 port 22 208759 unique_id port 208759 remote_ip 10.8.0.134 208764 username pourshad 208764 mac 208764 bytes_out 0 208764 bytes_in 0 208764 station_ip 5.119.178.195 208764 port 3 208764 unique_id port 208764 remote_ip 10.8.1.10 208768 username mehrpoyan101 208768 mac 208768 bytes_out 39711 208768 bytes_in 43840 208768 station_ip 5.120.61.108 208768 port 15 208768 unique_id port 208768 remote_ip 10.8.0.134 208774 username kalantary6037 208774 mac 208774 bytes_out 361159 208774 bytes_in 3669123 208774 station_ip 37.129.183.253 208774 port 19 208774 unique_id port 208774 remote_ip 10.8.0.18 208776 username motamedi9772 208776 mac 208776 bytes_out 0 208776 bytes_in 0 208776 station_ip 83.123.20.216 208776 port 22 208776 unique_id port 208776 remote_ip 10.8.1.182 208779 username motamedi9772 208779 kill_reason Maximum check online fails reached 208779 mac 208779 bytes_out 0 208779 bytes_in 0 208735 bytes_in 0 208735 station_ip 83.123.20.216 208735 port 14 208735 unique_id port 208735 remote_ip 10.8.0.86 208736 username mehrpoyan101 208736 mac 208736 bytes_out 0 208736 bytes_in 0 208736 station_ip 5.120.75.145 208736 port 24 208736 unique_id port 208736 remote_ip 10.8.0.134 208746 username yarmohamadi7916 208746 kill_reason Another user logged on this global unique id 208746 mac 208746 bytes_out 0 208746 bytes_in 0 208746 station_ip 5.120.15.188 208746 port 16 208746 unique_id port 208747 username kalantary6037 208747 mac 208747 bytes_out 39509 208747 bytes_in 62082 208747 station_ip 37.129.255.121 208747 port 26 208747 unique_id port 208747 remote_ip 10.8.0.18 208750 username barzegar 208750 kill_reason Another user logged on this global unique id 208750 mac 208750 bytes_out 0 208750 bytes_in 0 208750 station_ip 5.120.174.145 208750 port 15 208750 unique_id port 208756 username mosavi0713 208756 mac 208756 bytes_out 300312 208756 bytes_in 1307756 208756 station_ip 37.129.206.19 208756 port 18 208756 unique_id port 208756 remote_ip 10.8.0.22 208757 username motamedi9772 208757 mac 208757 bytes_out 0 208757 bytes_in 0 208757 station_ip 83.123.20.216 208757 port 2 208757 unique_id port 208757 remote_ip 10.8.1.182 208758 username mehrpoyan101 208758 kill_reason Maximum number of concurrent logins reached 208758 mac 208758 bytes_out 0 208758 bytes_in 0 208758 station_ip 5.120.61.108 208758 port 15 208758 unique_id port 208761 username mehrpoyan101 208761 kill_reason Maximum check online fails reached 208761 mac 208761 bytes_out 0 208761 bytes_in 0 208761 station_ip 5.120.61.108 208761 port 14 208761 unique_id port 208763 username aminvpnipad 208763 mac 208763 bytes_out 42767 208763 bytes_in 440558 208763 station_ip 5.119.61.34 208763 port 18 208763 unique_id port 208763 remote_ip 10.8.0.202 208770 username dortaj3792 208770 mac 208770 bytes_out 2980358 208770 bytes_in 7332289 208770 station_ip 5.120.17.210 208770 port 9 208770 unique_id port 208770 remote_ip 10.8.0.10 208771 username motamedi9772 208771 mac 208771 bytes_out 6878 208771 bytes_in 12807 208771 station_ip 83.123.20.216 208771 port 18 208771 unique_id port 208771 remote_ip 10.8.0.86 208772 username motamedi9772 208772 mac 208772 bytes_out 0 208772 bytes_in 0 208772 station_ip 83.123.20.216 208772 port 9 208772 unique_id port 208772 remote_ip 10.8.0.86 208790 username motamedi9772 208790 mac 208790 bytes_out 0 208790 bytes_in 0 208790 station_ip 83.123.20.216 208790 port 19 208790 unique_id port 208790 remote_ip 10.8.0.86 208795 username motamedi9772 208795 mac 208795 bytes_out 0 208795 bytes_in 0 208795 station_ip 83.123.20.216 208795 port 22 208795 unique_id port 208795 remote_ip 10.8.1.182 208802 username motamedi9772 208802 mac 208802 bytes_out 290564 208802 bytes_in 386803 208802 station_ip 83.123.20.216 208802 port 22 208802 unique_id port 208802 remote_ip 10.8.1.182 208804 username mehrpoyan101 208804 mac 208804 bytes_out 305718 208804 bytes_in 1926417 208804 station_ip 5.120.129.20 208804 port 9 208804 unique_id port 208804 remote_ip 10.8.0.134 208807 username nilufarrajaei 208807 mac 208807 bytes_out 567273 208807 bytes_in 1288841 208807 station_ip 83.123.247.84 208807 port 21 208807 unique_id port 208807 remote_ip 10.8.1.126 208809 username motamedi9772 208809 mac 208809 bytes_out 0 208809 bytes_in 0 208809 station_ip 83.123.20.216 208809 port 21 208809 unique_id port 208809 remote_ip 10.8.1.182 208812 username saeed9658 208812 kill_reason Relative expiration date has reached 208773 mac 208773 bytes_out 0 208773 bytes_in 0 208773 station_ip 5.119.39.117 208773 port 6 208773 unique_id port 208773 remote_ip 10.8.0.134 208775 username dortaj3792 208775 kill_reason Another user logged on this global unique id 208775 mac 208775 bytes_out 0 208775 bytes_in 0 208775 station_ip 5.120.17.210 208775 port 22 208775 unique_id port 208775 remote_ip 10.8.0.10 208777 username heydary4246 208777 kill_reason Another user logged on this global unique id 208777 mac 208777 bytes_out 0 208777 bytes_in 0 208777 station_ip 83.122.151.250 208777 port 15 208777 unique_id port 208777 remote_ip 10.8.0.226 208778 username farhad3 208778 kill_reason Another user logged on this global unique id 208778 mac 208778 bytes_out 0 208778 bytes_in 0 208778 station_ip 5.119.194.97 208778 port 4 208778 unique_id port 208783 username godarzi 208783 kill_reason Another user logged on this global unique id 208783 mac 208783 bytes_out 0 208783 bytes_in 0 208783 station_ip 5.202.65.237 208783 port 27 208783 unique_id port 208785 username aminvpnipad 208785 mac 208785 bytes_out 13043 208785 bytes_in 15696 208785 station_ip 5.119.61.34 208785 port 19 208785 unique_id port 208785 remote_ip 10.8.0.202 208787 username motamedi9772 208787 mac 208787 bytes_out 1644 208787 bytes_in 4564 208787 station_ip 83.123.20.216 208787 port 26 208787 unique_id port 208787 remote_ip 10.8.0.86 208788 username motamedi9772 208788 mac 208788 bytes_out 0 208788 bytes_in 0 208788 station_ip 83.123.20.216 208788 port 19 208788 unique_id port 208788 remote_ip 10.8.0.86 208789 username khalili2 208789 mac 208789 bytes_out 0 208789 bytes_in 0 208789 station_ip 5.120.155.173 208789 port 9 208789 unique_id port 208789 remote_ip 10.8.0.78 208792 username morteza4424 208792 mac 208792 bytes_out 2800844 208792 bytes_in 2003536 208792 station_ip 37.129.14.134 208792 port 25 208792 unique_id port 208792 remote_ip 10.8.0.30 208793 username motamedi9772 208793 mac 208793 bytes_out 0 208793 bytes_in 0 208793 station_ip 83.123.20.216 208793 port 9 208793 unique_id port 208793 remote_ip 10.8.0.86 208794 username morteza4424 208794 mac 208794 bytes_out 0 208794 bytes_in 0 208794 station_ip 37.129.14.134 208794 port 9 208794 unique_id port 208794 remote_ip 10.8.0.30 208797 username mehrpoyan101 208797 mac 208797 bytes_out 0 208797 bytes_in 0 208797 station_ip 5.120.109.182 208797 port 27 208797 unique_id port 208797 remote_ip 10.8.0.134 208799 username motamedi9772 208799 mac 208799 bytes_out 0 208799 bytes_in 0 208799 station_ip 83.123.20.216 208799 port 22 208799 unique_id port 208799 remote_ip 10.8.1.182 208800 username motamedi9772 208800 mac 208800 bytes_out 0 208800 bytes_in 0 208800 station_ip 83.123.20.216 208800 port 19 208800 unique_id port 208800 remote_ip 10.8.0.86 208805 username motamedi9772 208805 mac 208805 bytes_out 0 208805 bytes_in 0 208805 station_ip 83.123.20.216 208805 port 22 208805 unique_id port 208805 remote_ip 10.8.1.182 208808 username motamedi9772 208808 mac 208808 bytes_out 0 208808 bytes_in 0 208808 station_ip 83.123.20.216 208808 port 21 208808 unique_id port 208808 remote_ip 10.8.1.182 208816 username motamedi9772 208816 mac 208816 bytes_out 0 208816 bytes_in 0 208816 station_ip 83.123.20.216 208816 port 21 208816 unique_id port 208816 remote_ip 10.8.1.182 208817 username motamedi9772 208817 mac 208817 bytes_out 0 208817 bytes_in 0 208817 station_ip 83.123.20.216 208817 port 21 208817 unique_id port 208817 remote_ip 10.8.1.182 208779 station_ip 83.123.20.216 208779 port 6 208779 unique_id port 208780 username motamedi9772 208780 mac 208780 bytes_out 0 208780 bytes_in 0 208780 station_ip 83.123.20.216 208780 port 19 208780 unique_id port 208780 remote_ip 10.8.0.86 208781 username motamedi9772 208781 mac 208781 bytes_out 0 208781 bytes_in 0 208781 station_ip 83.123.20.216 208781 port 19 208781 unique_id port 208781 remote_ip 10.8.0.86 208782 username motamedi9772 208782 mac 208782 bytes_out 0 208782 bytes_in 0 208782 station_ip 83.123.20.216 208782 port 26 208782 unique_id port 208782 remote_ip 10.8.0.86 208784 username mehrpoyan101 208784 mac 208784 bytes_out 117160 208784 bytes_in 394898 208784 station_ip 5.119.180.85 208784 port 9 208784 unique_id port 208784 remote_ip 10.8.0.134 208786 username motamedi9772 208786 mac 208786 bytes_out 0 208786 bytes_in 0 208786 station_ip 83.123.20.216 208786 port 22 208786 unique_id port 208786 remote_ip 10.8.1.182 208791 username motamedi9772 208791 mac 208791 bytes_out 0 208791 bytes_in 0 208791 station_ip 83.123.20.216 208791 port 9 208791 unique_id port 208791 remote_ip 10.8.0.86 208796 username esmaeilkazemi 208796 mac 208796 bytes_out 898563 208796 bytes_in 12128099 208796 station_ip 37.129.233.195 208796 port 26 208796 unique_id port 208796 remote_ip 10.8.0.66 208798 username motamedi9772 208798 mac 208798 bytes_out 240763 208798 bytes_in 343562 208798 station_ip 83.123.20.216 208798 port 22 208798 unique_id port 208798 remote_ip 10.8.1.182 208801 username motamedi9772 208801 mac 208801 bytes_out 0 208801 bytes_in 0 208801 station_ip 83.123.20.216 208801 port 19 208801 unique_id port 208801 remote_ip 10.8.0.86 208803 username motamedi9772 208803 mac 208803 bytes_out 0 208803 bytes_in 0 208803 station_ip 83.123.20.216 208803 port 19 208803 unique_id port 208803 remote_ip 10.8.0.86 208806 username motamedi9772 208806 mac 208806 bytes_out 0 208806 bytes_in 0 208806 station_ip 83.123.20.216 208806 port 9 208806 unique_id port 208806 remote_ip 10.8.0.86 208810 username mosavi0713 208810 mac 208810 bytes_out 132342 208810 bytes_in 256916 208810 station_ip 37.129.181.43 208810 port 18 208810 unique_id port 208810 remote_ip 10.8.0.22 208811 username saeed9658 208811 kill_reason Relative expiration date has reached 208811 mac 208811 bytes_out 0 208811 bytes_in 0 208811 station_ip 5.119.118.9 208811 port 9 208811 unique_id port 208813 username motamedi9772 208813 mac 208813 bytes_out 844552 208813 bytes_in 3265904 208813 station_ip 83.123.20.216 208813 port 21 208813 unique_id port 208813 remote_ip 10.8.1.182 208814 username motamedi9772 208814 mac 208814 bytes_out 0 208814 bytes_in 0 208814 station_ip 83.123.20.216 208814 port 21 208814 unique_id port 208814 remote_ip 10.8.1.182 208821 username khademi 208821 mac 208821 bytes_out 0 208821 bytes_in 0 208821 station_ip 37.129.98.124 208821 port 11 208821 unique_id port 208828 username motamedi9772 208828 mac 208828 bytes_out 0 208828 bytes_in 0 208828 station_ip 83.123.20.216 208828 port 21 208828 unique_id port 208828 remote_ip 10.8.1.182 208831 username motamedi9772 208831 mac 208831 bytes_out 0 208831 bytes_in 0 208831 station_ip 83.123.20.216 208831 port 21 208831 unique_id port 208831 remote_ip 10.8.1.182 208832 username motamedi9772 208832 mac 208832 bytes_out 0 208832 bytes_in 0 208832 station_ip 83.123.20.216 208832 port 11 208832 unique_id port 208832 remote_ip 10.8.0.86 208812 mac 208812 bytes_out 0 208812 bytes_in 0 208812 station_ip 5.119.118.9 208812 port 9 208812 unique_id port 208815 username saeed9658 208815 kill_reason Relative expiration date has reached 208815 mac 208815 bytes_out 0 208815 bytes_in 0 208815 station_ip 5.119.118.9 208815 port 9 208815 unique_id port 208819 username motamedi9772 208819 mac 208819 bytes_out 0 208819 bytes_in 0 208819 station_ip 83.123.20.216 208819 port 21 208819 unique_id port 208819 remote_ip 10.8.1.182 208820 username khademi 208820 mac 208820 bytes_out 815152 208820 bytes_in 521491 208820 station_ip 37.129.98.124 208820 port 22 208820 unique_id port 208820 remote_ip 10.8.1.218 208822 username motamedi9772 208822 mac 208822 bytes_out 0 208822 bytes_in 0 208822 station_ip 83.123.20.216 208822 port 9 208822 unique_id port 208822 remote_ip 10.8.0.86 208833 username yaghobi 208833 mac 208833 bytes_out 0 208833 bytes_in 0 208833 station_ip 83.123.83.161 208833 port 3 208833 unique_id port 208833 remote_ip 10.8.1.106 208845 username motamedi9772 208845 mac 208845 bytes_out 1168303 208845 bytes_in 3900406 208845 station_ip 83.123.20.216 208845 port 21 208845 unique_id port 208845 remote_ip 10.8.1.182 208849 username pourshad 208849 mac 208849 bytes_out 0 208849 bytes_in 0 208849 station_ip 5.119.178.195 208849 port 2 208849 unique_id port 208849 remote_ip 10.8.1.10 208851 username motamedi9772 208851 mac 208851 bytes_out 0 208851 bytes_in 0 208851 station_ip 83.123.20.216 208851 port 2 208851 unique_id port 208851 remote_ip 10.8.1.182 208852 username motamedi9772 208852 mac 208852 bytes_out 0 208852 bytes_in 0 208852 station_ip 83.123.20.216 208852 port 18 208852 unique_id port 208852 remote_ip 10.8.0.86 208853 username motamedi9772 208853 mac 208853 bytes_out 0 208853 bytes_in 0 208853 station_ip 83.123.20.216 208853 port 18 208853 unique_id port 208853 remote_ip 10.8.0.86 208854 username khademi 208854 kill_reason Another user logged on this global unique id 208854 mac 208854 bytes_out 0 208854 bytes_in 0 208854 station_ip 37.129.98.124 208854 port 22 208854 unique_id port 208856 username motamedi9772 208856 mac 208856 bytes_out 0 208856 bytes_in 0 208856 station_ip 83.123.20.216 208856 port 22 208856 unique_id port 208856 remote_ip 10.8.0.86 208857 username godarzi 208857 mac 208857 bytes_out 0 208857 bytes_in 0 208857 station_ip 5.202.65.237 208857 port 3 208857 unique_id port 208857 remote_ip 10.8.1.66 208859 username farhad3 208859 mac 208859 bytes_out 0 208859 bytes_in 0 208859 station_ip 5.119.194.97 208859 port 4 208859 unique_id port 208860 username motamedi9772 208860 mac 208860 bytes_out 0 208860 bytes_in 0 208860 station_ip 83.123.20.216 208860 port 4 208860 unique_id port 208860 remote_ip 10.8.0.86 208862 username motamedi9772 208862 mac 208862 bytes_out 0 208862 bytes_in 0 208862 station_ip 83.123.20.216 208862 port 4 208862 unique_id port 208862 remote_ip 10.8.0.86 208863 username motamedi9772 208863 mac 208863 bytes_out 0 208863 bytes_in 0 208863 station_ip 83.123.20.216 208863 port 18 208863 unique_id port 208863 remote_ip 10.8.0.86 208865 username motamedi9772 208865 mac 208865 bytes_out 0 208865 bytes_in 0 208865 station_ip 83.123.20.216 208865 port 18 208865 unique_id port 208865 remote_ip 10.8.0.86 208866 username sekonji0496 208866 kill_reason Another user logged on this global unique id 208866 mac 208866 bytes_out 0 208866 bytes_in 0 208866 station_ip 37.129.229.231 208818 username motamedi9772 208818 mac 208818 bytes_out 0 208818 bytes_in 0 208818 station_ip 83.123.20.216 208818 port 9 208818 unique_id port 208818 remote_ip 10.8.0.86 208823 username pourshad 208823 mac 208823 bytes_out 0 208823 bytes_in 0 208823 station_ip 5.119.178.195 208823 port 2 208823 unique_id port 208823 remote_ip 10.8.1.10 208824 username motamedi9772 208824 mac 208824 bytes_out 0 208824 bytes_in 0 208824 station_ip 83.123.20.216 208824 port 9 208824 unique_id port 208824 remote_ip 10.8.0.86 208825 username motamedi9772 208825 mac 208825 bytes_out 0 208825 bytes_in 0 208825 station_ip 83.123.20.216 208825 port 9 208825 unique_id port 208825 remote_ip 10.8.0.86 208826 username motamedi9772 208826 mac 208826 bytes_out 0 208826 bytes_in 0 208826 station_ip 83.123.20.216 208826 port 9 208826 unique_id port 208826 remote_ip 10.8.0.86 208827 username motamedi9772 208827 mac 208827 bytes_out 0 208827 bytes_in 0 208827 station_ip 83.123.20.216 208827 port 21 208827 unique_id port 208827 remote_ip 10.8.1.182 208829 username motamedi9772 208829 mac 208829 bytes_out 0 208829 bytes_in 0 208829 station_ip 83.123.20.216 208829 port 9 208829 unique_id port 208829 remote_ip 10.8.0.86 208830 username motamedi9772 208830 mac 208830 bytes_out 0 208830 bytes_in 0 208830 station_ip 83.123.20.216 208830 port 11 208830 unique_id port 208830 remote_ip 10.8.0.86 208834 username motamedi9772 208834 mac 208834 bytes_out 0 208834 bytes_in 0 208834 station_ip 83.123.20.216 208834 port 11 208834 unique_id port 208834 remote_ip 10.8.0.86 208836 username milan 208836 kill_reason Another user logged on this global unique id 208836 mac 208836 bytes_out 0 208836 bytes_in 0 208836 station_ip 5.120.109.57 208836 port 24 208836 unique_id port 208836 remote_ip 10.8.0.222 208839 username mammad 208839 unique_id port 208839 terminate_cause User-Request 208839 bytes_out 2014991 208839 bytes_in 32766657 208839 station_ip 5.233.66.158 208839 port 15730522 208839 nas_port_type Virtual 208839 remote_ip 5.5.5.255 208840 username motamedi9772 208840 mac 208840 bytes_out 0 208840 bytes_in 0 208840 station_ip 83.123.20.216 208840 port 11 208840 unique_id port 208840 remote_ip 10.8.0.86 208842 username aminvpn 208842 mac 208842 bytes_out 2305281 208842 bytes_in 11293375 208842 station_ip 37.129.220.200 208842 port 9 208842 unique_id port 208842 remote_ip 10.8.0.58 208843 username milan 208843 kill_reason Another user logged on this global unique id 208843 mac 208843 bytes_out 0 208843 bytes_in 0 208843 station_ip 5.120.109.57 208843 port 24 208843 unique_id port 208846 username motamedi9772 208846 mac 208846 bytes_out 0 208846 bytes_in 0 208846 station_ip 83.123.20.216 208846 port 21 208846 unique_id port 208846 remote_ip 10.8.1.182 208847 username motamedi9772 208847 mac 208847 bytes_out 0 208847 bytes_in 0 208847 station_ip 83.123.20.216 208847 port 9 208847 unique_id port 208847 remote_ip 10.8.0.86 208848 username motamedi9772 208848 mac 208848 bytes_out 0 208848 bytes_in 0 208848 station_ip 83.123.20.216 208848 port 11 208848 unique_id port 208848 remote_ip 10.8.0.86 208850 username motamedi9772 208850 mac 208850 bytes_out 0 208850 bytes_in 0 208850 station_ip 83.123.20.216 208850 port 2 208850 unique_id port 208850 remote_ip 10.8.1.182 208855 username motamedi9772 208855 mac 208855 bytes_out 0 208855 bytes_in 0 208855 station_ip 83.123.20.216 208855 port 19 208855 unique_id port 208855 remote_ip 10.8.0.86 208835 username yarmohamadi7916 208835 kill_reason Another user logged on this global unique id 208835 mac 208835 bytes_out 0 208835 bytes_in 0 208835 station_ip 5.120.15.188 208835 port 16 208835 unique_id port 208837 username motamedi9772 208837 mac 208837 bytes_out 0 208837 bytes_in 0 208837 station_ip 83.123.20.216 208837 port 11 208837 unique_id port 208837 remote_ip 10.8.0.86 208838 username motamedi9772 208838 mac 208838 bytes_out 0 208838 bytes_in 0 208838 station_ip 83.123.20.216 208838 port 11 208838 unique_id port 208838 remote_ip 10.8.0.86 208841 username yaghobi 208841 mac 208841 bytes_out 1167390 208841 bytes_in 3899480 208841 station_ip 83.123.83.161 208841 port 21 208841 unique_id port 208841 remote_ip 10.8.1.106 208844 username motamedi9772 208844 mac 208844 bytes_out 0 208844 bytes_in 0 208844 station_ip 83.123.20.216 208844 port 21 208844 unique_id port 208844 remote_ip 10.8.1.182 208861 username ahmadi1 208861 mac 208861 bytes_out 39598 208861 bytes_in 282028 208861 station_ip 113.203.39.77 208861 port 18 208861 unique_id port 208861 remote_ip 10.8.0.114 208867 username motamedi9772 208867 mac 208867 bytes_out 0 208867 bytes_in 0 208867 station_ip 83.123.20.216 208867 port 18 208867 unique_id port 208867 remote_ip 10.8.0.86 208871 username teymori5660 208871 kill_reason Another user logged on this global unique id 208871 mac 208871 bytes_out 0 208871 bytes_in 0 208871 station_ip 5.120.85.205 208871 port 11 208871 unique_id port 208871 remote_ip 10.8.0.230 208874 username motamedi9772 208874 mac 208874 bytes_out 0 208874 bytes_in 0 208874 station_ip 83.123.20.216 208874 port 22 208874 unique_id port 208874 remote_ip 10.8.0.86 208878 username barzegar 208878 kill_reason Another user logged on this global unique id 208878 mac 208878 bytes_out 0 208878 bytes_in 0 208878 station_ip 5.120.174.145 208878 port 23 208878 unique_id port 208879 username motamedi9772 208879 mac 208879 bytes_out 0 208879 bytes_in 0 208879 station_ip 83.123.20.216 208879 port 3 208879 unique_id port 208879 remote_ip 10.8.1.182 208882 username yarmohamadi7916 208882 mac 208882 bytes_out 0 208882 bytes_in 0 208882 station_ip 5.120.15.188 208882 port 16 208882 unique_id port 208888 username motamedi9772 208888 mac 208888 bytes_out 0 208888 bytes_in 0 208888 station_ip 83.123.20.216 208888 port 3 208888 unique_id port 208888 remote_ip 10.8.1.182 208896 username dorani4942 208896 mac 208896 bytes_out 0 208896 bytes_in 0 208896 station_ip 37.129.99.86 208896 port 21 208896 unique_id port 208896 remote_ip 10.8.1.118 208898 username motamedi9772 208898 mac 208898 bytes_out 0 208898 bytes_in 0 208898 station_ip 83.123.20.216 208898 port 21 208898 unique_id port 208898 remote_ip 10.8.1.182 208899 username alirezazadeh 208899 unique_id port 208899 terminate_cause Lost-Carrier 208899 bytes_out 1955813 208899 bytes_in 23457686 208899 station_ip 5.120.157.131 208899 port 15730528 208899 nas_port_type Virtual 208899 remote_ip 5.5.5.100 208901 username motamedi9772 208901 mac 208901 bytes_out 0 208901 bytes_in 0 208901 station_ip 83.123.20.216 208901 port 21 208901 unique_id port 208901 remote_ip 10.8.1.182 208902 username yaghobi 208902 mac 208902 bytes_out 0 208902 bytes_in 0 208902 station_ip 83.123.83.161 208902 port 3 208902 unique_id port 208902 remote_ip 10.8.1.106 208904 username motamedi9772 208904 mac 208904 bytes_out 0 208904 bytes_in 0 208904 station_ip 83.123.20.216 208904 port 9 208904 unique_id port 208904 remote_ip 10.8.0.86 208858 username motamedi9772 208858 mac 208858 bytes_out 0 208858 bytes_in 0 208858 station_ip 83.123.20.216 208858 port 22 208858 unique_id port 208858 remote_ip 10.8.0.86 208864 username motamedi9772 208864 mac 208864 bytes_out 0 208864 bytes_in 0 208864 station_ip 83.123.20.216 208864 port 18 208864 unique_id port 208864 remote_ip 10.8.0.86 208870 username motamedi9772 208870 mac 208870 bytes_out 0 208870 bytes_in 0 208870 station_ip 83.123.20.216 208870 port 22 208870 unique_id port 208870 remote_ip 10.8.0.86 208876 username motamedi9772 208876 mac 208876 bytes_out 0 208876 bytes_in 0 208876 station_ip 83.123.20.216 208876 port 3 208876 unique_id port 208876 remote_ip 10.8.1.182 208880 username farhad3 208880 mac 208880 bytes_out 1275276 208880 bytes_in 3360296 208880 station_ip 5.119.194.97 208880 port 4 208880 unique_id port 208880 remote_ip 10.8.0.98 208881 username motamedi9772 208881 mac 208881 bytes_out 0 208881 bytes_in 0 208881 station_ip 83.123.20.216 208881 port 3 208881 unique_id port 208881 remote_ip 10.8.1.182 208890 username yaghobi 208890 mac 208890 bytes_out 10560270 208890 bytes_in 109061865 208890 station_ip 83.123.83.161 208890 port 24 208890 unique_id port 208890 remote_ip 10.8.1.106 208891 username fezealinaghi 208891 mac 208891 bytes_out 1263235 208891 bytes_in 7517163 208891 station_ip 83.123.136.210 208891 port 16 208891 unique_id port 208891 remote_ip 10.8.0.234 208892 username sekonji0496 208892 kill_reason Another user logged on this global unique id 208892 mac 208892 bytes_out 0 208892 bytes_in 0 208892 station_ip 37.129.229.231 208892 port 9 208892 unique_id port 208894 username sekonji0496 208894 mac 208894 bytes_out 0 208894 bytes_in 0 208894 station_ip 37.129.229.231 208894 port 9 208894 unique_id port 208900 username aminvpnipad 208900 mac 208900 bytes_out 3082355 208900 bytes_in 39464628 208900 station_ip 5.119.61.34 208900 port 16 208900 unique_id port 208900 remote_ip 10.8.0.202 208903 username motamedi9772 208903 mac 208903 bytes_out 0 208903 bytes_in 0 208903 station_ip 83.123.20.216 208903 port 9 208903 unique_id port 208903 remote_ip 10.8.0.86 208907 username motamedi9772 208907 mac 208907 bytes_out 0 208907 bytes_in 0 208907 station_ip 83.123.20.216 208907 port 11 208907 unique_id port 208907 remote_ip 10.8.0.86 208911 username motamedi9772 208911 mac 208911 bytes_out 0 208911 bytes_in 0 208911 station_ip 83.123.20.216 208911 port 9 208911 unique_id port 208911 remote_ip 10.8.0.86 208912 username motamedi9772 208912 mac 208912 bytes_out 0 208912 bytes_in 0 208912 station_ip 83.123.20.216 208912 port 9 208912 unique_id port 208912 remote_ip 10.8.0.86 208913 username yaghobi 208913 mac 208913 bytes_out 1140191 208913 bytes_in 963064 208913 station_ip 83.123.83.161 208913 port 3 208913 unique_id port 208913 remote_ip 10.8.1.106 208918 username motamedi9772 208918 mac 208918 bytes_out 0 208918 bytes_in 0 208918 station_ip 83.123.20.216 208918 port 11 208918 unique_id port 208918 remote_ip 10.8.0.86 208919 username fezealinaghi 208919 mac 208919 bytes_out 0 208919 bytes_in 0 208919 station_ip 83.123.244.226 208919 port 3 208919 unique_id port 208919 remote_ip 10.8.1.222 208934 username yaghobi 208934 mac 208934 bytes_out 1429171 208934 bytes_in 19318292 208934 station_ip 83.123.83.161 208934 port 9 208934 unique_id port 208934 remote_ip 10.8.0.106 208935 username motamedi9772 208935 kill_reason Maximum check online fails reached 208866 port 9 208866 unique_id port 208866 remote_ip 10.8.0.70 208868 username motamedi9772 208868 mac 208868 bytes_out 0 208868 bytes_in 0 208868 station_ip 83.123.20.216 208868 port 18 208868 unique_id port 208868 remote_ip 10.8.0.86 208869 username motamedi9772 208869 mac 208869 bytes_out 0 208869 bytes_in 0 208869 station_ip 83.123.20.216 208869 port 18 208869 unique_id port 208869 remote_ip 10.8.0.86 208872 username motamedi9772 208872 mac 208872 bytes_out 0 208872 bytes_in 0 208872 station_ip 83.123.20.216 208872 port 22 208872 unique_id port 208872 remote_ip 10.8.0.86 208873 username teymori5660 208873 mac 208873 bytes_out 0 208873 bytes_in 0 208873 station_ip 5.120.85.205 208873 port 11 208873 unique_id port 208875 username alirezazadeh 208875 unique_id port 208875 terminate_cause Lost-Carrier 208875 bytes_out 2864354 208875 bytes_in 34626313 208875 station_ip 5.119.149.49 208875 port 15730524 208875 nas_port_type Virtual 208875 remote_ip 5.5.5.94 208877 username motamedi9772 208877 mac 208877 bytes_out 0 208877 bytes_in 0 208877 station_ip 83.123.20.216 208877 port 3 208877 unique_id port 208877 remote_ip 10.8.1.182 208883 username motamedi9772 208883 mac 208883 bytes_out 0 208883 bytes_in 0 208883 station_ip 83.123.20.216 208883 port 11 208883 unique_id port 208883 remote_ip 10.8.0.86 208884 username sekonji0496 208884 kill_reason Another user logged on this global unique id 208884 mac 208884 bytes_out 0 208884 bytes_in 0 208884 station_ip 37.129.229.231 208884 port 9 208884 unique_id port 208885 username motamedi9772 208885 mac 208885 bytes_out 0 208885 bytes_in 0 208885 station_ip 83.123.20.216 208885 port 3 208885 unique_id port 208885 remote_ip 10.8.1.182 208886 username motamedi9772 208886 mac 208886 bytes_out 0 208886 bytes_in 0 208886 station_ip 83.123.20.216 208886 port 11 208886 unique_id port 208886 remote_ip 10.8.0.86 208887 username motamedi9772 208887 mac 208887 bytes_out 0 208887 bytes_in 0 208887 station_ip 83.123.20.216 208887 port 11 208887 unique_id port 208887 remote_ip 10.8.0.86 208889 username motamedi9772 208889 mac 208889 bytes_out 0 208889 bytes_in 0 208889 station_ip 83.123.20.216 208889 port 11 208889 unique_id port 208889 remote_ip 10.8.0.86 208893 username motamedi9772 208893 mac 208893 bytes_out 17751 208893 bytes_in 36548 208893 station_ip 83.123.20.216 208893 port 11 208893 unique_id port 208893 remote_ip 10.8.0.86 208895 username motamedi9772 208895 mac 208895 bytes_out 0 208895 bytes_in 0 208895 station_ip 83.123.20.216 208895 port 9 208895 unique_id port 208895 remote_ip 10.8.0.86 208897 username mosavi0713 208897 mac 208897 bytes_out 42186 208897 bytes_in 324925 208897 station_ip 37.129.144.215 208897 port 9 208897 unique_id port 208897 remote_ip 10.8.0.22 208905 username motamedi9772 208905 mac 208905 bytes_out 0 208905 bytes_in 0 208905 station_ip 83.123.20.216 208905 port 9 208905 unique_id port 208905 remote_ip 10.8.0.86 208906 username motamedi9772 208906 mac 208906 bytes_out 0 208906 bytes_in 0 208906 station_ip 83.123.20.216 208906 port 21 208906 unique_id port 208906 remote_ip 10.8.1.182 208910 username fezealinaghi 208910 mac 208910 bytes_out 17744 208910 bytes_in 16515 208910 station_ip 83.123.244.226 208910 port 9 208910 unique_id port 208910 remote_ip 10.8.0.234 208914 username fezealinaghi 208914 mac 208914 bytes_out 25864 208914 bytes_in 38206 208914 station_ip 83.123.244.226 208914 port 11 208914 unique_id port 208908 username mirzaei6046 208908 kill_reason Another user logged on this global unique id 208908 mac 208908 bytes_out 0 208908 bytes_in 0 208908 station_ip 5.120.107.143 208908 port 23 208908 unique_id port 208909 username motamedi9772 208909 mac 208909 bytes_out 0 208909 bytes_in 0 208909 station_ip 83.123.20.216 208909 port 11 208909 unique_id port 208909 remote_ip 10.8.0.86 208920 username motamedi9772 208920 mac 208920 bytes_out 0 208920 bytes_in 0 208920 station_ip 83.123.20.216 208920 port 21 208920 unique_id port 208920 remote_ip 10.8.0.86 208923 username pourshad 208923 kill_reason Another user logged on this global unique id 208923 mac 208923 bytes_out 0 208923 bytes_in 0 208923 station_ip 5.119.178.195 208923 port 2 208923 unique_id port 208923 remote_ip 10.8.1.10 208924 username motamedi9772 208924 mac 208924 bytes_out 0 208924 bytes_in 0 208924 station_ip 83.123.20.216 208924 port 21 208924 unique_id port 208924 remote_ip 10.8.0.86 208926 username dorani4942 208926 mac 208926 bytes_out 0 208926 bytes_in 0 208926 station_ip 37.129.102.78 208926 port 22 208926 unique_id port 208926 remote_ip 10.8.1.118 208928 username farhad3 208928 kill_reason Another user logged on this global unique id 208928 mac 208928 bytes_out 0 208928 bytes_in 0 208928 station_ip 5.119.194.97 208928 port 4 208928 unique_id port 208928 remote_ip 10.8.0.98 208931 username hamid1430 208931 mac 208931 bytes_out 0 208931 bytes_in 0 208931 station_ip 83.123.177.80 208931 port 18 208931 unique_id port 208932 username motamedi9772 208932 mac 208932 bytes_out 0 208932 bytes_in 0 208932 station_ip 83.123.20.216 208932 port 22 208932 unique_id port 208932 remote_ip 10.8.1.182 208939 username amirzadeh1339 208939 unique_id port 208939 terminate_cause Lost-Carrier 208939 bytes_out 1796381 208939 bytes_in 13657527 208939 station_ip 37.27.53.142 208939 port 15730523 208939 nas_port_type Virtual 208939 remote_ip 5.5.5.109 208941 username motamedi9772 208941 mac 208941 bytes_out 0 208941 bytes_in 0 208941 station_ip 83.123.20.216 208941 port 9 208941 unique_id port 208941 remote_ip 10.8.0.86 208946 username motamedi9772 208946 mac 208946 bytes_out 0 208946 bytes_in 0 208946 station_ip 83.123.20.216 208946 port 9 208946 unique_id port 208946 remote_ip 10.8.0.86 208947 username dorani4942 208947 mac 208947 bytes_out 0 208947 bytes_in 0 208947 station_ip 37.129.102.78 208947 port 11 208947 unique_id port 208947 remote_ip 10.8.0.82 208952 username dorani4942 208952 mac 208952 bytes_out 1644 208952 bytes_in 5036 208952 station_ip 37.129.102.78 208952 port 9 208952 unique_id port 208952 remote_ip 10.8.0.82 208955 username dorani4942 208955 mac 208955 bytes_out 0 208955 bytes_in 0 208955 station_ip 37.129.102.78 208955 port 9 208955 unique_id port 208955 remote_ip 10.8.0.82 208963 username motamedi9772 208963 mac 208963 bytes_out 0 208963 bytes_in 0 208963 station_ip 83.123.20.216 208963 port 3 208963 unique_id port 208963 remote_ip 10.8.1.182 208965 username motamedi9772 208965 mac 208965 bytes_out 0 208965 bytes_in 0 208965 station_ip 83.123.20.216 208965 port 3 208965 unique_id port 208965 remote_ip 10.8.1.182 208966 username motamedi9772 208966 mac 208966 bytes_out 0 208966 bytes_in 0 208966 station_ip 83.123.20.216 208966 port 21 208966 unique_id port 208966 remote_ip 10.8.0.86 208967 username motamedi9772 208967 mac 208967 bytes_out 0 208967 bytes_in 0 208967 station_ip 83.123.20.216 208967 port 21 208967 unique_id port 208914 remote_ip 10.8.0.234 208915 username motamedi9772 208915 mac 208915 bytes_out 0 208915 bytes_in 0 208915 station_ip 83.123.20.216 208915 port 11 208915 unique_id port 208915 remote_ip 10.8.0.86 208916 username motamedi9772 208916 mac 208916 bytes_out 0 208916 bytes_in 0 208916 station_ip 83.123.20.216 208916 port 11 208916 unique_id port 208916 remote_ip 10.8.0.86 208917 username hamid1430 208917 kill_reason Another user logged on this global unique id 208917 mac 208917 bytes_out 0 208917 bytes_in 0 208917 station_ip 83.123.177.80 208917 port 18 208917 unique_id port 208917 remote_ip 10.8.0.62 208921 username motamedi9772 208921 mac 208921 bytes_out 0 208921 bytes_in 0 208921 station_ip 83.123.20.216 208921 port 21 208921 unique_id port 208921 remote_ip 10.8.0.86 208922 username motamedi9772 208922 mac 208922 bytes_out 0 208922 bytes_in 0 208922 station_ip 83.123.20.216 208922 port 21 208922 unique_id port 208922 remote_ip 10.8.0.86 208925 username motamedi9772 208925 kill_reason Another user logged on this global unique id 208925 mac 208925 bytes_out 0 208925 bytes_in 0 208925 station_ip 83.123.20.216 208925 port 21 208925 unique_id port 208925 remote_ip 10.8.0.86 208927 username khademi 208927 mac 208927 bytes_out 0 208927 bytes_in 0 208927 station_ip 37.129.98.124 208927 port 21 208927 unique_id port 208927 remote_ip 10.8.1.218 208929 username motamedi9772 208929 mac 208929 bytes_out 0 208929 bytes_in 0 208929 station_ip 83.123.20.216 208929 port 21 208929 unique_id port 208929 remote_ip 10.8.0.86 208930 username motamedi9772 208930 mac 208930 bytes_out 0 208930 bytes_in 0 208930 station_ip 83.123.20.216 208930 port 21 208930 unique_id port 208930 remote_ip 10.8.0.86 208933 username motamedi9772 208933 mac 208933 bytes_out 0 208933 bytes_in 0 208933 station_ip 83.123.20.216 208933 port 21 208933 unique_id port 208933 remote_ip 10.8.0.86 208936 username dorani4942 208936 mac 208936 bytes_out 0 208936 bytes_in 0 208936 station_ip 37.129.102.78 208936 port 22 208936 unique_id port 208936 remote_ip 10.8.1.118 208938 username motamedi9772 208938 mac 208938 bytes_out 0 208938 bytes_in 0 208938 station_ip 83.123.20.216 208938 port 9 208938 unique_id port 208938 remote_ip 10.8.0.86 208942 username hosseini0093 208942 kill_reason Another user logged on this global unique id 208942 mac 208942 bytes_out 0 208942 bytes_in 0 208942 station_ip 5.119.185.186 208942 port 16 208942 unique_id port 208942 remote_ip 10.8.0.154 208943 username motamedi9772 208943 mac 208943 bytes_out 0 208943 bytes_in 0 208943 station_ip 83.123.20.216 208943 port 22 208943 unique_id port 208943 remote_ip 10.8.1.182 208944 username dorani4942 208944 mac 208944 bytes_out 0 208944 bytes_in 0 208944 station_ip 37.129.102.78 208944 port 9 208944 unique_id port 208944 remote_ip 10.8.0.82 208945 username farhad3 208945 mac 208945 bytes_out 0 208945 bytes_in 0 208945 station_ip 5.119.194.97 208945 port 4 208945 unique_id port 208948 username motamedi9772 208948 mac 208948 bytes_out 0 208948 bytes_in 0 208948 station_ip 83.123.20.216 208948 port 9 208948 unique_id port 208948 remote_ip 10.8.0.86 208949 username motamedi9772 208949 mac 208949 bytes_out 0 208949 bytes_in 0 208949 station_ip 83.123.20.216 208949 port 9 208949 unique_id port 208949 remote_ip 10.8.0.86 208950 username motamedi9772 208950 mac 208950 bytes_out 0 208950 bytes_in 0 208950 station_ip 83.123.20.216 208950 port 11 208950 unique_id port 208935 mac 208935 bytes_out 0 208935 bytes_in 0 208935 station_ip 83.123.20.216 208935 port 18 208935 unique_id port 208937 username fezealinaghi 208937 mac 208937 bytes_out 0 208937 bytes_in 0 208937 station_ip 83.123.244.226 208937 port 11 208937 unique_id port 208937 remote_ip 10.8.0.234 208940 username motamedi9772 208940 mac 208940 bytes_out 0 208940 bytes_in 0 208940 station_ip 83.123.20.216 208940 port 9 208940 unique_id port 208940 remote_ip 10.8.0.86 208956 username motamedi9772 208956 mac 208956 bytes_out 0 208956 bytes_in 0 208956 station_ip 83.123.20.216 208956 port 3 208956 unique_id port 208956 remote_ip 10.8.1.182 208958 username dorani4942 208958 mac 208958 bytes_out 2684 208958 bytes_in 5326 208958 station_ip 37.129.102.78 208958 port 22 208958 unique_id port 208958 remote_ip 10.8.1.118 208959 username motamedi9772 208959 mac 208959 bytes_out 0 208959 bytes_in 0 208959 station_ip 83.123.20.216 208959 port 9 208959 unique_id port 208959 remote_ip 10.8.0.86 208961 username motamedi9772 208961 mac 208961 bytes_out 0 208961 bytes_in 0 208961 station_ip 83.123.20.216 208961 port 3 208961 unique_id port 208961 remote_ip 10.8.1.182 208969 username motamedi9772 208969 mac 208969 bytes_out 0 208969 bytes_in 0 208969 station_ip 83.123.20.216 208969 port 21 208969 unique_id port 208969 remote_ip 10.8.0.86 208970 username dorani4942 208970 mac 208970 bytes_out 0 208970 bytes_in 0 208970 station_ip 37.129.102.78 208970 port 22 208970 unique_id port 208970 remote_ip 10.8.0.82 208971 username mostafa_es78 208971 mac 208971 bytes_out 334428 208971 bytes_in 236455 208971 station_ip 83.122.147.131 208971 port 11 208971 unique_id port 208971 remote_ip 10.8.0.42 208973 username farhad3 208973 mac 208973 bytes_out 3838908 208973 bytes_in 33936800 208973 station_ip 5.119.194.97 208973 port 4 208973 unique_id port 208973 remote_ip 10.8.0.98 208975 username farhad3 208975 mac 208975 bytes_out 76978 208975 bytes_in 627924 208975 station_ip 5.119.194.97 208975 port 4 208975 unique_id port 208975 remote_ip 10.8.0.98 208976 username pourshad 208976 kill_reason Another user logged on this global unique id 208976 mac 208976 bytes_out 0 208976 bytes_in 0 208976 station_ip 5.119.178.195 208976 port 2 208976 unique_id port 208978 username dorani4942 208978 mac 208978 bytes_out 0 208978 bytes_in 0 208978 station_ip 37.129.249.138 208978 port 11 208978 unique_id port 208978 remote_ip 10.8.0.82 208985 username dorani4942 208985 mac 208985 bytes_out 2106 208985 bytes_in 4614 208985 station_ip 37.129.249.138 208985 port 11 208985 unique_id port 208985 remote_ip 10.8.0.82 208988 username dorani4942 208988 mac 208988 bytes_out 0 208988 bytes_in 0 208988 station_ip 37.129.249.138 208988 port 16 208988 unique_id port 208988 remote_ip 10.8.0.82 208989 username farhad3 208989 mac 208989 bytes_out 723536 208989 bytes_in 7730263 208989 station_ip 5.120.42.119 208989 port 4 208989 unique_id port 208989 remote_ip 10.8.0.98 208993 username dorani4942 208993 mac 208993 bytes_out 0 208993 bytes_in 0 208993 station_ip 37.129.249.138 208993 port 3 208993 unique_id port 208993 remote_ip 10.8.1.118 208994 username dorani4942 208994 mac 208994 bytes_out 0 208994 bytes_in 0 208994 station_ip 37.129.249.138 208994 port 16 208994 unique_id port 208994 remote_ip 10.8.0.82 208995 username dorani4942 208995 mac 208995 bytes_out 0 208995 bytes_in 0 208995 station_ip 37.129.249.138 208995 port 16 208950 remote_ip 10.8.0.86 208951 username motamedi9772 208951 mac 208951 bytes_out 0 208951 bytes_in 0 208951 station_ip 83.123.20.216 208951 port 11 208951 unique_id port 208951 remote_ip 10.8.0.86 208953 username motamedi9772 208953 mac 208953 bytes_out 0 208953 bytes_in 0 208953 station_ip 83.123.20.216 208953 port 9 208953 unique_id port 208953 remote_ip 10.8.0.86 208954 username mostafa_es78 208954 mac 208954 bytes_out 0 208954 bytes_in 0 208954 station_ip 83.122.147.131 208954 port 3 208954 unique_id port 208954 remote_ip 10.8.1.202 208957 username motamedi9772 208957 mac 208957 bytes_out 0 208957 bytes_in 0 208957 station_ip 83.123.20.216 208957 port 3 208957 unique_id port 208957 remote_ip 10.8.1.182 208960 username motamedi9772 208960 mac 208960 bytes_out 0 208960 bytes_in 0 208960 station_ip 83.123.20.216 208960 port 3 208960 unique_id port 208960 remote_ip 10.8.1.182 208962 username hosseini0093 208962 kill_reason Another user logged on this global unique id 208962 mac 208962 bytes_out 0 208962 bytes_in 0 208962 station_ip 5.119.185.186 208962 port 16 208962 unique_id port 208964 username motamedi9772 208964 mac 208964 bytes_out 0 208964 bytes_in 0 208964 station_ip 83.123.20.216 208964 port 9 208964 unique_id port 208964 remote_ip 10.8.0.86 208972 username dorani4942 208972 mac 208972 bytes_out 0 208972 bytes_in 0 208972 station_ip 37.129.102.78 208972 port 11 208972 unique_id port 208972 remote_ip 10.8.0.82 208974 username hosseini0093 208974 mac 208974 bytes_out 0 208974 bytes_in 0 208974 station_ip 5.119.185.186 208974 port 16 208974 unique_id port 208982 username farhad3 208982 mac 208982 bytes_out 31788 208982 bytes_in 39927 208982 station_ip 5.119.194.97 208982 port 4 208982 unique_id port 208982 remote_ip 10.8.0.98 208983 username amirzadeh1339 208983 unique_id port 208983 terminate_cause User-Request 208983 bytes_out 10730801 208983 bytes_in 287119943 208983 station_ip 37.27.30.235 208983 port 15730534 208983 nas_port_type Virtual 208983 remote_ip 5.5.5.78 208986 username farhad3 208986 mac 208986 bytes_out 579828 208986 bytes_in 3863787 208986 station_ip 5.120.42.119 208986 port 4 208986 unique_id port 208986 remote_ip 10.8.0.98 208990 username motamedi9772 208990 kill_reason Another user logged on this global unique id 208990 mac 208990 bytes_out 0 208990 bytes_in 0 208990 station_ip 83.123.20.216 208990 port 9 208990 unique_id port 208990 remote_ip 10.8.0.86 208991 username pourshad 208991 kill_reason Another user logged on this global unique id 208991 mac 208991 bytes_out 0 208991 bytes_in 0 208991 station_ip 5.119.178.195 208991 port 2 208991 unique_id port 208992 username dorani4942 208992 mac 208992 bytes_out 0 208992 bytes_in 0 208992 station_ip 37.129.249.138 208992 port 11 208992 unique_id port 208992 remote_ip 10.8.0.82 208996 username naeimeh 208996 mac 208996 bytes_out 0 208996 bytes_in 0 208996 station_ip 37.129.68.166 208996 port 21 208996 unique_id port 208996 remote_ip 10.8.0.166 208999 username pourshad 208999 kill_reason Another user logged on this global unique id 208999 mac 208999 bytes_out 0 208999 bytes_in 0 208999 station_ip 5.119.178.195 208999 port 2 208999 unique_id port 209000 username motamedi9772 209000 kill_reason Another user logged on this global unique id 209000 mac 209000 bytes_out 0 209000 bytes_in 0 209000 station_ip 83.123.20.216 209000 port 9 209000 unique_id port 209005 username barzegar 209005 mac 209005 bytes_out 640756 209005 bytes_in 7889156 209005 station_ip 5.120.174.145 208967 remote_ip 10.8.0.86 208968 username dorani4942 208968 mac 208968 bytes_out 2215 208968 bytes_in 4729 208968 station_ip 37.129.102.78 208968 port 9 208968 unique_id port 208968 remote_ip 10.8.0.82 208977 username dorani4942 208977 mac 208977 bytes_out 2178 208977 bytes_in 4947 208977 station_ip 37.129.102.78 208977 port 11 208977 unique_id port 208977 remote_ip 10.8.0.82 208979 username mostafa_es78 208979 mac 208979 bytes_out 358246 208979 bytes_in 537563 208979 station_ip 83.122.147.131 208979 port 21 208979 unique_id port 208979 remote_ip 10.8.0.42 208980 username farhad3 208980 mac 208980 bytes_out 240552 208980 bytes_in 949528 208980 station_ip 5.119.194.97 208980 port 4 208980 unique_id port 208980 remote_ip 10.8.0.98 208981 username mostafa_es78 208981 mac 208981 bytes_out 61579 208981 bytes_in 162815 208981 station_ip 83.122.214.43 208981 port 11 208981 unique_id port 208981 remote_ip 10.8.0.42 208984 username milan 208984 mac 208984 bytes_out 0 208984 bytes_in 0 208984 station_ip 5.120.109.57 208984 port 24 208984 unique_id port 208987 username mostafa_es78 208987 mac 208987 bytes_out 0 208987 bytes_in 0 208987 station_ip 83.122.214.43 208987 port 11 208987 unique_id port 208987 remote_ip 10.8.0.42 208997 username farhad3 208997 mac 208997 bytes_out 999610 208997 bytes_in 10380804 208997 station_ip 5.120.86.144 208997 port 11 208997 unique_id port 208997 remote_ip 10.8.0.98 209002 username mosi 209002 kill_reason Another user logged on this global unique id 209002 mac 209002 bytes_out 0 209002 bytes_in 0 209002 station_ip 2.183.56.172 209002 port 19 209002 unique_id port 209002 remote_ip 10.8.0.38 209004 username dorani4942 209004 mac 209004 bytes_out 0 209004 bytes_in 0 209004 station_ip 37.129.249.138 209004 port 22 209004 unique_id port 209004 remote_ip 10.8.0.82 209006 username naeimeh 209006 mac 209006 bytes_out 0 209006 bytes_in 0 209006 station_ip 37.129.68.166 209006 port 16 209006 unique_id port 209006 remote_ip 10.8.0.166 209011 username dorani4942 209011 mac 209011 bytes_out 0 209011 bytes_in 0 209011 station_ip 37.129.249.138 209011 port 2 209011 unique_id port 209011 remote_ip 10.8.1.118 209017 username aminvpn 209017 unique_id port 209017 terminate_cause Lost-Carrier 209017 bytes_out 4252067 209017 bytes_in 17067016 209017 station_ip 5.120.11.33 209017 port 15730532 209017 nas_port_type Virtual 209017 remote_ip 5.5.5.105 209019 username sabaghnezhad 209019 mac 209019 bytes_out 0 209019 bytes_in 0 209019 station_ip 37.129.85.107 209019 port 11 209019 unique_id port 209019 remote_ip 10.8.0.94 209021 username dorani4942 209021 mac 209021 bytes_out 0 209021 bytes_in 0 209021 station_ip 37.129.249.138 209021 port 2 209021 unique_id port 209021 remote_ip 10.8.1.118 209022 username dorani4942 209022 mac 209022 bytes_out 0 209022 bytes_in 0 209022 station_ip 37.129.249.138 209022 port 16 209022 unique_id port 209022 remote_ip 10.8.0.82 209026 username dorani4942 209026 mac 209026 bytes_out 0 209026 bytes_in 0 209026 station_ip 37.129.249.138 209026 port 2 209026 unique_id port 209026 remote_ip 10.8.1.118 209030 username fezealinaghi 209030 mac 209030 bytes_out 0 209030 bytes_in 0 209030 station_ip 83.123.157.42 209030 port 4 209030 unique_id port 209030 remote_ip 10.8.0.234 209033 username dorani4942 209033 mac 209033 bytes_out 0 209033 bytes_in 0 209033 station_ip 37.129.249.138 209033 port 2 209033 unique_id port 209033 remote_ip 10.8.1.118 209036 username dorani4942 208995 unique_id port 208995 remote_ip 10.8.0.82 208998 username dorani4942 208998 mac 208998 bytes_out 0 208998 bytes_in 0 208998 station_ip 37.129.249.138 208998 port 11 208998 unique_id port 208998 remote_ip 10.8.0.82 209001 username pourshad 209001 mac 209001 bytes_out 0 209001 bytes_in 0 209001 station_ip 5.119.178.195 209001 port 2 209001 unique_id port 209003 username dorani4942 209003 mac 209003 bytes_out 0 209003 bytes_in 0 209003 station_ip 37.129.249.138 209003 port 22 209003 unique_id port 209003 remote_ip 10.8.0.82 209012 username dorani4942 209012 mac 209012 bytes_out 0 209012 bytes_in 0 209012 station_ip 37.129.249.138 209012 port 2 209012 unique_id port 209012 remote_ip 10.8.1.118 209013 username dorani4942 209013 mac 209013 bytes_out 0 209013 bytes_in 0 209013 station_ip 37.129.249.138 209013 port 16 209013 unique_id port 209013 remote_ip 10.8.0.82 209014 username dorani4942 209014 mac 209014 bytes_out 0 209014 bytes_in 0 209014 station_ip 37.129.249.138 209014 port 16 209014 unique_id port 209014 remote_ip 10.8.0.82 209016 username kalantary6037 209016 mac 209016 bytes_out 0 209016 bytes_in 0 209016 station_ip 37.129.196.141 209016 port 16 209016 unique_id port 209016 remote_ip 10.8.0.18 209020 username farhad3 209020 mac 209020 bytes_out 0 209020 bytes_in 0 209020 station_ip 5.120.180.115 209020 port 24 209020 unique_id port 209020 remote_ip 10.8.0.98 209023 username dorani4942 209023 mac 209023 bytes_out 0 209023 bytes_in 0 209023 station_ip 37.129.249.138 209023 port 16 209023 unique_id port 209023 remote_ip 10.8.0.82 209024 username dorani4942 209024 mac 209024 bytes_out 0 209024 bytes_in 0 209024 station_ip 37.129.249.138 209024 port 2 209024 unique_id port 209024 remote_ip 10.8.1.118 209031 username dorani4942 209031 mac 209031 bytes_out 0 209031 bytes_in 0 209031 station_ip 37.129.249.138 209031 port 2 209031 unique_id port 209031 remote_ip 10.8.1.118 209032 username dorani4942 209032 mac 209032 bytes_out 0 209032 bytes_in 0 209032 station_ip 37.129.249.138 209032 port 2 209032 unique_id port 209032 remote_ip 10.8.1.118 209034 username dorani4942 209034 mac 209034 bytes_out 0 209034 bytes_in 0 209034 station_ip 37.129.249.138 209034 port 2 209034 unique_id port 209034 remote_ip 10.8.1.118 209037 username motamedi9772 209037 kill_reason Another user logged on this global unique id 209037 mac 209037 bytes_out 0 209037 bytes_in 0 209037 station_ip 83.123.20.216 209037 port 9 209037 unique_id port 209043 username dorani4942 209043 mac 209043 bytes_out 0 209043 bytes_in 0 209043 station_ip 37.129.249.138 209043 port 2 209043 unique_id port 209043 remote_ip 10.8.1.118 209056 username yarmohamadi7916 209056 kill_reason Another user logged on this global unique id 209056 mac 209056 bytes_out 0 209056 bytes_in 0 209056 station_ip 5.120.185.25 209056 port 25 209056 unique_id port 209057 username yarmohamadi7916 209057 kill_reason Another user logged on this global unique id 209057 mac 209057 bytes_out 0 209057 bytes_in 0 209057 station_ip 5.120.185.25 209057 port 25 209057 unique_id port 209058 username yarmohamadi7916 209058 kill_reason Another user logged on this global unique id 209058 mac 209058 bytes_out 0 209058 bytes_in 0 209058 station_ip 5.120.185.25 209058 port 25 209058 unique_id port 209061 mac 209061 bytes_out 0 209061 bytes_in 0 209061 station_ip 5.120.185.25 209061 port 25 209061 unique_id port 209062 username yarmohamadi7916 209062 kill_reason Another user logged on this global unique id 209005 port 2 209005 unique_id port 209005 remote_ip 10.8.1.30 209007 username shahruz 209007 mac 209007 bytes_out 594821 209007 bytes_in 1044392 209007 station_ip 83.122.140.22 209007 port 21 209007 unique_id port 209007 remote_ip 10.8.0.238 209008 username barzegar 209008 mac 209008 bytes_out 84843 209008 bytes_in 2388832 209008 station_ip 5.119.246.52 209008 port 3 209008 unique_id port 209008 remote_ip 10.8.1.30 209009 username dorani4942 209009 mac 209009 bytes_out 0 209009 bytes_in 0 209009 station_ip 37.129.249.138 209009 port 2 209009 unique_id port 209009 remote_ip 10.8.1.118 209010 username motamedi9772 209010 kill_reason Another user logged on this global unique id 209010 mac 209010 bytes_out 0 209010 bytes_in 0 209010 station_ip 83.123.20.216 209010 port 9 209010 unique_id port 209015 username dorani4942 209015 kill_reason Maximum check online fails reached 209015 mac 209015 bytes_out 0 209015 bytes_in 0 209015 station_ip 37.129.249.138 209015 port 22 209015 unique_id port 209018 username dorani4942 209018 mac 209018 bytes_out 0 209018 bytes_in 0 209018 station_ip 37.129.249.138 209018 port 16 209018 unique_id port 209018 remote_ip 10.8.0.82 209025 username motamedi9772 209025 kill_reason Another user logged on this global unique id 209025 mac 209025 bytes_out 0 209025 bytes_in 0 209025 station_ip 83.123.20.216 209025 port 9 209025 unique_id port 209027 username dorani4942 209027 mac 209027 bytes_out 0 209027 bytes_in 0 209027 station_ip 37.129.249.138 209027 port 16 209027 unique_id port 209027 remote_ip 10.8.0.82 209028 username dorani4942 209028 mac 209028 bytes_out 0 209028 bytes_in 0 209028 station_ip 37.129.249.138 209028 port 2 209028 unique_id port 209028 remote_ip 10.8.1.118 209029 username dorani4942 209029 mac 209029 bytes_out 0 209029 bytes_in 0 209029 station_ip 37.129.249.138 209029 port 16 209029 unique_id port 209029 remote_ip 10.8.0.82 209035 username farhad3 209035 mac 209035 bytes_out 0 209035 bytes_in 0 209035 station_ip 5.120.180.115 209035 port 11 209035 unique_id port 209035 remote_ip 10.8.0.98 209041 username dorani4942 209041 mac 209041 bytes_out 0 209041 bytes_in 0 209041 station_ip 37.129.249.138 209041 port 4 209041 unique_id port 209041 remote_ip 10.8.0.82 209045 username dorani4942 209045 kill_reason Maximum check online fails reached 209045 mac 209045 bytes_out 0 209045 bytes_in 0 209045 station_ip 37.129.249.138 209045 port 2 209045 unique_id port 209046 username farhad3 209046 kill_reason Another user logged on this global unique id 209046 mac 209046 bytes_out 0 209046 bytes_in 0 209046 station_ip 5.120.180.115 209046 port 11 209046 unique_id port 209046 remote_ip 10.8.0.98 209052 username motamedi9772 209052 mac 209052 bytes_out 0 209052 bytes_in 0 209052 station_ip 83.123.20.216 209052 port 9 209052 unique_id port 209054 username yarmohamadi7916 209054 kill_reason Another user logged on this global unique id 209054 mac 209054 bytes_out 0 209054 bytes_in 0 209054 station_ip 5.120.185.25 209054 port 25 209054 unique_id port 209054 remote_ip 10.8.0.214 209055 username yarmohamadi7916 209055 kill_reason Another user logged on this global unique id 209055 mac 209055 bytes_out 0 209055 bytes_in 0 209055 station_ip 5.120.185.25 209055 port 25 209055 unique_id port 209059 username yarmohamadi7916 209059 kill_reason Another user logged on this global unique id 209059 mac 209059 bytes_out 0 209059 bytes_in 0 209059 station_ip 5.120.185.25 209059 port 25 209059 unique_id port 209061 username yarmohamadi7916 209061 kill_reason Another user logged on this global unique id 209036 mac 209036 bytes_out 0 209036 bytes_in 0 209036 station_ip 37.129.249.138 209036 port 4 209036 unique_id port 209036 remote_ip 10.8.0.82 209038 username dorani4942 209038 mac 209038 bytes_out 0 209038 bytes_in 0 209038 station_ip 37.129.249.138 209038 port 2 209038 unique_id port 209038 remote_ip 10.8.1.118 209039 username dorani4942 209039 mac 209039 bytes_out 0 209039 bytes_in 0 209039 station_ip 37.129.249.138 209039 port 2 209039 unique_id port 209039 remote_ip 10.8.1.118 209040 username dorani4942 209040 mac 209040 bytes_out 0 209040 bytes_in 0 209040 station_ip 37.129.249.138 209040 port 4 209040 unique_id port 209040 remote_ip 10.8.0.82 209042 username dorani4942 209042 mac 209042 bytes_out 0 209042 bytes_in 0 209042 station_ip 37.129.249.138 209042 port 4 209042 unique_id port 209042 remote_ip 10.8.0.82 209044 username dorani4942 209044 kill_reason Maximum number of concurrent logins reached 209044 mac 209044 bytes_out 0 209044 bytes_in 0 209044 station_ip 37.129.249.138 209044 port 3 209044 unique_id port 209047 username farhad3 209047 kill_reason Another user logged on this global unique id 209047 mac 209047 bytes_out 0 209047 bytes_in 0 209047 station_ip 5.120.180.115 209047 port 11 209047 unique_id port 209048 username farhad3 209048 kill_reason Another user logged on this global unique id 209048 mac 209048 bytes_out 0 209048 bytes_in 0 209048 station_ip 5.120.180.115 209048 port 11 209048 unique_id port 209049 username motamedi9772 209049 kill_reason Another user logged on this global unique id 209049 mac 209049 bytes_out 0 209049 bytes_in 0 209049 station_ip 83.123.20.216 209049 port 9 209049 unique_id port 209050 username farhad3 209050 mac 209050 bytes_out 0 209050 bytes_in 0 209050 station_ip 5.120.180.115 209050 port 11 209050 unique_id port 209051 username fezealinaghi 209051 mac 209051 bytes_out 102219 209051 bytes_in 773661 209051 station_ip 37.129.114.15 209051 port 4 209051 unique_id port 209051 remote_ip 10.8.0.234 209053 username motamedi9772 209053 mac 209053 bytes_out 8934 209053 bytes_in 14046 209053 station_ip 83.123.73.220 209053 port 4 209053 unique_id port 209053 remote_ip 10.8.0.86 209060 username yarmohamadi7916 209060 kill_reason Another user logged on this global unique id 209060 mac 209060 bytes_out 0 209060 bytes_in 0 209060 station_ip 5.120.185.25 209060 port 25 209060 unique_id port 209062 mac 209062 bytes_out 0 209062 bytes_in 0 209062 station_ip 5.120.185.25 209062 port 25 209062 unique_id port 209063 username yarmohamadi7916 209063 kill_reason Another user logged on this global unique id 209063 mac 209063 bytes_out 0 209063 bytes_in 0 209063 station_ip 5.120.185.25 209063 port 25 209063 unique_id port 209064 username nilufarrajaei 209064 mac 209064 bytes_out 953399 209064 bytes_in 2677870 209064 station_ip 37.129.58.41 209064 port 4 209064 unique_id port 209064 remote_ip 10.8.0.50 209065 username nilufarrajaei 209065 kill_reason Another user logged on this global unique id 209065 mac 209065 bytes_out 0 209065 bytes_in 0 209065 station_ip 37.129.58.41 209065 port 4 209065 unique_id port 209065 remote_ip 10.8.0.50 209066 username nilufarrajaei 209066 kill_reason Another user logged on this global unique id 209066 mac 209066 bytes_out 0 209066 bytes_in 0 209066 station_ip 37.129.58.41 209066 port 4 209066 unique_id port 209067 username mirzaei6046 209067 kill_reason Another user logged on this global unique id 209067 mac 209067 bytes_out 0 209067 bytes_in 0 209067 station_ip 5.120.107.143 209067 port 23 209067 unique_id port 209068 username nilufarrajaei 209068 kill_reason Another user logged on this global unique id 209068 mac 209068 bytes_out 0 209068 bytes_in 0 209068 station_ip 37.129.58.41 209068 port 4 209068 unique_id port 209072 username yaghobi 209072 mac 209072 bytes_out 7138725 209072 bytes_in 41799809 209072 station_ip 83.123.98.197 209072 port 11 209072 unique_id port 209072 remote_ip 10.8.0.106 209073 username pourshad 209073 kill_reason Another user logged on this global unique id 209073 mac 209073 bytes_out 0 209073 bytes_in 0 209073 station_ip 5.119.178.195 209073 port 3 209073 unique_id port 209073 remote_ip 10.8.1.10 209077 username yarmohamadi7916 209077 kill_reason Another user logged on this global unique id 209077 mac 209077 bytes_out 0 209077 bytes_in 0 209077 station_ip 5.120.185.25 209077 port 25 209077 unique_id port 209080 username yaghobi 209080 mac 209080 bytes_out 17677175 209080 bytes_in 4942374 209080 station_ip 83.123.77.233 209080 port 11 209080 unique_id port 209080 remote_ip 10.8.0.106 209086 username sabaghnezhad 209086 mac 209086 bytes_out 906973 209086 bytes_in 2131185 209086 station_ip 37.129.227.129 209086 port 16 209086 unique_id port 209086 remote_ip 10.8.0.94 209089 username sabaghnezhad 209089 mac 209089 bytes_out 10706 209089 bytes_in 20958 209089 station_ip 37.129.227.129 209089 port 25 209089 unique_id port 209089 remote_ip 10.8.0.94 209091 username mehrpoyan101 209091 mac 209091 bytes_out 417333 209091 bytes_in 3069411 209091 station_ip 5.120.58.210 209091 port 16 209091 unique_id port 209091 remote_ip 10.8.0.134 209093 username yaghobi 209093 mac 209093 bytes_out 98793 209093 bytes_in 139858 209093 station_ip 83.123.77.233 209093 port 19 209093 unique_id port 209093 remote_ip 10.8.0.106 209095 username mehrpoyan101 209095 mac 209095 bytes_out 629768 209095 bytes_in 5698694 209095 station_ip 5.120.112.26 209095 port 25 209095 unique_id port 209095 remote_ip 10.8.0.134 209104 username mehrpoyan101 209104 mac 209104 bytes_out 9641 209104 bytes_in 8462 209104 station_ip 5.120.144.49 209104 port 25 209104 unique_id port 209104 remote_ip 10.8.0.134 209108 username yaghobi 209108 mac 209108 bytes_out 74814 209108 bytes_in 83570 209108 station_ip 83.123.19.213 209108 port 19 209108 unique_id port 209108 remote_ip 10.8.0.106 209117 username alirezazadeh 209117 unique_id port 209117 terminate_cause Lost-Carrier 209117 bytes_out 326248 209117 bytes_in 6477537 209117 station_ip 5.120.7.139 209117 port 15730537 209117 nas_port_type Virtual 209117 remote_ip 5.5.5.81 209119 username mirzaei6046 209119 kill_reason Another user logged on this global unique id 209119 mac 209119 bytes_out 0 209119 bytes_in 0 209119 station_ip 5.120.107.143 209119 port 24 209119 unique_id port 209120 username kharazmi2920 209120 mac 209120 bytes_out 4199372 209120 bytes_in 43503849 209120 station_ip 113.203.62.96 209120 port 26 209120 unique_id port 209120 remote_ip 10.8.0.54 209122 username godarzi 209122 kill_reason Another user logged on this global unique id 209122 mac 209122 bytes_out 0 209122 bytes_in 0 209122 station_ip 5.202.65.237 209122 port 21 209122 unique_id port 209122 remote_ip 10.8.1.66 209124 username mehrpoyan101 209124 mac 209124 bytes_out 101970 209124 bytes_in 145186 209124 station_ip 5.119.80.175 209124 port 19 209124 unique_id port 209124 remote_ip 10.8.0.134 209126 username mehrpoyan101 209126 mac 209126 bytes_out 0 209126 bytes_in 0 209126 station_ip 5.119.133.20 209126 port 25 209126 unique_id port 209126 remote_ip 10.8.0.134 209127 username godarzi 209127 mac 209127 bytes_out 0 209127 bytes_in 0 209069 username mirzaei6046 209069 mac 209069 bytes_out 0 209069 bytes_in 0 209069 station_ip 5.120.107.143 209069 port 23 209069 unique_id port 209070 username khalili2 209070 unique_id port 209070 terminate_cause Lost-Carrier 209070 bytes_out 604686 209070 bytes_in 20883257 209070 station_ip 5.120.155.173 209070 port 15730536 209070 nas_port_type Virtual 209070 remote_ip 5.5.5.80 209075 username pourshad 209075 kill_reason Another user logged on this global unique id 209075 mac 209075 bytes_out 0 209075 bytes_in 0 209075 station_ip 5.119.178.195 209075 port 3 209075 unique_id port 209076 username sekonji0496 209076 kill_reason Another user logged on this global unique id 209076 mac 209076 bytes_out 0 209076 bytes_in 0 209076 station_ip 83.123.84.56 209076 port 27 209076 unique_id port 209076 remote_ip 10.8.0.70 209079 username dorani4942 209079 mac 209079 bytes_out 0 209079 bytes_in 0 209079 station_ip 37.129.249.138 209079 port 21 209079 unique_id port 209082 username yaghobi 209082 mac 209082 bytes_out 479184 209082 bytes_in 4943220 209082 station_ip 83.123.77.233 209082 port 28 209082 unique_id port 209082 remote_ip 10.8.0.106 209083 username yaghobi 209083 mac 209083 bytes_out 29019 209083 bytes_in 29450 209083 station_ip 83.123.77.233 209083 port 11 209083 unique_id port 209083 remote_ip 10.8.0.106 209085 username yarmohamadi7916 209085 mac 209085 bytes_out 2419999 209085 bytes_in 21500725 209085 station_ip 5.120.185.25 209085 port 19 209085 unique_id port 209085 remote_ip 10.8.0.214 209087 username nilufarrajaei 209087 kill_reason Another user logged on this global unique id 209087 mac 209087 bytes_out 0 209087 bytes_in 0 209087 station_ip 37.129.58.41 209087 port 4 209087 unique_id port 209088 username mehrpoyan101 209088 mac 209088 bytes_out 763233 209088 bytes_in 4518094 209088 station_ip 5.119.45.103 209088 port 11 209088 unique_id port 209088 remote_ip 10.8.0.134 209090 username jafari 209090 kill_reason Another user logged on this global unique id 209090 mac 209090 bytes_out 0 209090 bytes_in 0 209090 station_ip 89.34.49.160 209090 port 21 209090 unique_id port 209090 remote_ip 10.8.1.190 209096 username yaghobi 209096 mac 209096 bytes_out 0 209096 bytes_in 0 209096 station_ip 83.123.77.233 209096 port 16 209096 unique_id port 209096 remote_ip 10.8.0.106 209097 username nilufarrajaei 209097 kill_reason Another user logged on this global unique id 209097 mac 209097 bytes_out 0 209097 bytes_in 0 209097 station_ip 37.129.58.41 209097 port 4 209097 unique_id port 209099 username mehrpoyan101 209099 mac 209099 bytes_out 220493 209099 bytes_in 1405736 209099 station_ip 5.120.173.7 209099 port 11 209099 unique_id port 209099 remote_ip 10.8.0.134 209100 username nilufarrajaei 209100 mac 209100 bytes_out 0 209100 bytes_in 0 209100 station_ip 37.129.58.41 209100 port 4 209100 unique_id port 209101 username sabaghnezhad 209101 mac 209101 bytes_out 0 209101 bytes_in 0 209101 station_ip 37.129.227.129 209101 port 23 209101 unique_id port 209101 remote_ip 10.8.1.46 209102 username jafari 209102 mac 209102 bytes_out 0 209102 bytes_in 0 209102 station_ip 89.34.49.160 209102 port 21 209102 unique_id port 209103 username mehrpoyan101 209103 mac 209103 bytes_out 660337 209103 bytes_in 5643051 209103 station_ip 5.120.39.41 209103 port 16 209103 unique_id port 209103 remote_ip 10.8.0.134 209105 username nilufarrajaei 209105 kill_reason Another user logged on this global unique id 209105 mac 209105 bytes_out 0 209105 bytes_in 0 209105 station_ip 37.129.58.41 209105 port 11 209071 username mohammadjavad 209071 mac 209071 bytes_out 4558209 209071 bytes_in 31753485 209071 station_ip 83.123.74.11 209071 port 9 209071 unique_id port 209071 remote_ip 10.8.0.138 209074 username mosi 209074 mac 209074 bytes_out 0 209074 bytes_in 0 209074 station_ip 2.183.56.172 209074 port 19 209074 unique_id port 209078 username yarmohamadi7916 209078 mac 209078 bytes_out 0 209078 bytes_in 0 209078 station_ip 5.120.185.25 209078 port 25 209078 unique_id port 209081 username kalantary6037 209081 mac 209081 bytes_out 0 209081 bytes_in 0 209081 station_ip 37.129.230.105 209081 port 25 209081 unique_id port 209081 remote_ip 10.8.0.18 209084 username mehrpoyan101 209084 mac 209084 bytes_out 0 209084 bytes_in 0 209084 station_ip 5.119.45.103 209084 port 23 209084 unique_id port 209084 remote_ip 10.8.1.18 209092 username mostafa_es78 209092 mac 209092 bytes_out 243999 209092 bytes_in 519763 209092 station_ip 83.122.225.123 209092 port 11 209092 unique_id port 209092 remote_ip 10.8.0.42 209094 username yaghobi 209094 mac 209094 bytes_out 0 209094 bytes_in 0 209094 station_ip 83.123.77.233 209094 port 11 209094 unique_id port 209094 remote_ip 10.8.0.106 209098 username jafari 209098 kill_reason Another user logged on this global unique id 209098 mac 209098 bytes_out 0 209098 bytes_in 0 209098 station_ip 89.34.49.160 209098 port 21 209098 unique_id port 209107 username mirzaei6046 209107 kill_reason Another user logged on this global unique id 209107 mac 209107 bytes_out 0 209107 bytes_in 0 209107 station_ip 5.120.107.143 209107 port 24 209107 unique_id port 209107 remote_ip 10.8.0.242 209109 username pourshad 209109 mac 209109 bytes_out 0 209109 bytes_in 0 209109 station_ip 5.119.178.195 209109 port 3 209109 unique_id port 209111 username dortaj3792 209111 mac 209111 bytes_out 9473912 209111 bytes_in 55469427 209111 station_ip 5.119.186.148 209111 port 9 209111 unique_id port 209111 remote_ip 10.8.0.10 209112 username farhad3 209112 mac 209112 bytes_out 0 209112 bytes_in 0 209112 station_ip 5.120.180.115 209112 port 9 209112 unique_id port 209112 remote_ip 10.8.0.98 209113 username mehrpoyan101 209113 mac 209113 bytes_out 116313 209113 bytes_in 614089 209113 station_ip 5.120.105.213 209113 port 19 209113 unique_id port 209113 remote_ip 10.8.0.134 209115 username mehrpoyan101 209115 mac 209115 bytes_out 216479 209115 bytes_in 1030990 209115 station_ip 5.119.81.105 209115 port 9 209115 unique_id port 209115 remote_ip 10.8.0.134 209118 username mehrpoyan101 209118 mac 209118 bytes_out 96886 209118 bytes_in 349012 209118 station_ip 5.120.185.189 209118 port 19 209118 unique_id port 209118 remote_ip 10.8.0.134 209121 username mehrpoyan101 209121 mac 209121 bytes_out 0 209121 bytes_in 0 209121 station_ip 5.119.209.111 209121 port 9 209121 unique_id port 209121 remote_ip 10.8.0.134 209123 username yaghobi 209123 mac 209123 bytes_out 0 209123 bytes_in 0 209123 station_ip 83.123.19.213 209123 port 23 209123 unique_id port 209123 remote_ip 10.8.1.106 209125 username pourshad 209125 mac 209125 bytes_out 0 209125 bytes_in 0 209125 station_ip 5.119.178.195 209125 port 3 209125 unique_id port 209125 remote_ip 10.8.1.10 209129 username iranmanesh4443 209129 mac 209129 bytes_out 10959 209129 bytes_in 18173 209129 station_ip 5.119.213.108 209129 port 19 209129 unique_id port 209129 remote_ip 10.8.0.198 209132 username farhad3 209132 mac 209132 bytes_out 0 209132 bytes_in 0 209105 unique_id port 209105 remote_ip 10.8.0.50 209106 username pourshad 209106 kill_reason Another user logged on this global unique id 209106 mac 209106 bytes_out 0 209106 bytes_in 0 209106 station_ip 5.119.178.195 209106 port 3 209106 unique_id port 209110 username mehrpoyan101 209110 mac 209110 bytes_out 73440 209110 bytes_in 113883 209110 station_ip 5.119.159.133 209110 port 16 209110 unique_id port 209110 remote_ip 10.8.0.134 209114 username farhad3 209114 mac 209114 bytes_out 586283 209114 bytes_in 2870405 209114 station_ip 5.120.180.115 209114 port 16 209114 unique_id port 209114 remote_ip 10.8.0.98 209116 username farhad3 209116 mac 209116 bytes_out 0 209116 bytes_in 0 209116 station_ip 5.120.180.115 209116 port 16 209116 unique_id port 209116 remote_ip 10.8.0.98 209128 username meysam 209128 mac 209128 bytes_out 0 209128 bytes_in 0 209128 station_ip 188.159.252.222 209128 port 3 209128 unique_id port 209128 remote_ip 10.8.1.6 209130 username barzegar8595 209130 mac 209130 bytes_out 141707 209130 bytes_in 367517 209130 station_ip 46.225.213.196 209130 port 9 209130 unique_id port 209130 remote_ip 10.8.0.170 209135 username pourshad 209135 kill_reason Another user logged on this global unique id 209135 mac 209135 bytes_out 0 209135 bytes_in 0 209135 station_ip 5.119.178.195 209135 port 23 209135 unique_id port 209135 remote_ip 10.8.1.10 209136 username godarzi 209136 mac 209136 bytes_out 0 209136 bytes_in 0 209136 station_ip 5.202.65.237 209136 port 3 209136 unique_id port 209136 remote_ip 10.8.1.66 209140 username yaghobi 209140 mac 209140 bytes_out 0 209140 bytes_in 0 209140 station_ip 83.123.21.125 209140 port 21 209140 unique_id port 209140 remote_ip 10.8.1.106 209144 username yaghobi 209144 mac 209144 bytes_out 16130 209144 bytes_in 26802 209144 station_ip 83.123.21.125 209144 port 16 209144 unique_id port 209144 remote_ip 10.8.0.106 209149 username mehrpoyan101 209149 mac 209149 bytes_out 529718 209149 bytes_in 3407324 209149 station_ip 5.120.113.232 209149 port 28 209149 unique_id port 209149 remote_ip 10.8.0.134 209151 username mostafa_es78 209151 mac 209151 bytes_out 0 209151 bytes_in 0 209151 station_ip 83.122.202.79 209151 port 28 209151 unique_id port 209151 remote_ip 10.8.0.42 209153 username kamali3 209153 mac 209153 bytes_out 62757 209153 bytes_in 86016 209153 station_ip 83.122.220.34 209153 port 15 209153 unique_id port 209153 remote_ip 10.8.0.182 209155 username godarzi 209155 mac 209155 bytes_out 0 209155 bytes_in 0 209155 station_ip 5.202.65.237 209155 port 21 209155 unique_id port 209155 remote_ip 10.8.1.66 209157 username yaghobi 209157 mac 209157 bytes_out 37627 209157 bytes_in 44867 209157 station_ip 83.123.21.125 209157 port 26 209157 unique_id port 209157 remote_ip 10.8.0.106 209160 username alipour1506 209160 mac 209160 bytes_out 602608 209160 bytes_in 5544791 209160 station_ip 37.129.205.90 209160 port 27 209160 unique_id port 209160 remote_ip 10.8.0.46 209170 username mehrpoyan101 209170 mac 209170 bytes_out 13764 209170 bytes_in 10760 209170 station_ip 5.120.137.54 209170 port 4 209170 unique_id port 209170 remote_ip 10.8.0.134 209171 username sabaghnezhad 209171 mac 209171 bytes_out 42840 209171 bytes_in 45565 209171 station_ip 83.122.189.122 209171 port 4 209171 unique_id port 209171 remote_ip 10.8.0.94 209173 username kamali3 209173 mac 209173 bytes_out 40783 209173 bytes_in 54482 209173 station_ip 83.122.220.34 209173 port 15 209127 station_ip 5.202.65.237 209127 port 21 209127 unique_id port 209131 username barzegar8595 209131 mac 209131 bytes_out 0 209131 bytes_in 0 209131 station_ip 46.225.210.246 209131 port 9 209131 unique_id port 209131 remote_ip 10.8.0.170 209133 username mirzaei6046 209133 kill_reason Another user logged on this global unique id 209133 mac 209133 bytes_out 0 209133 bytes_in 0 209133 station_ip 5.120.107.143 209133 port 24 209133 unique_id port 209134 username sekonji0496 209134 mac 209134 bytes_out 0 209134 bytes_in 0 209134 station_ip 83.123.84.56 209134 port 27 209134 unique_id port 209137 username mosavi0713 209137 kill_reason Another user logged on this global unique id 209137 mac 209137 bytes_out 0 209137 bytes_in 0 209137 station_ip 37.129.183.167 209137 port 16 209137 unique_id port 209137 remote_ip 10.8.0.22 209141 username yaghobi 209141 mac 209141 bytes_out 9270 209141 bytes_in 12488 209141 station_ip 83.123.21.125 209141 port 16 209141 unique_id port 209141 remote_ip 10.8.0.106 209142 username yaghobi 209142 mac 209142 bytes_out 87020 209142 bytes_in 142555 209142 station_ip 83.123.21.125 209142 port 16 209142 unique_id port 209142 remote_ip 10.8.0.106 209143 username kalantary6037 209143 mac 209143 bytes_out 134318 209143 bytes_in 219935 209143 station_ip 37.129.130.49 209143 port 26 209143 unique_id port 209143 remote_ip 10.8.0.18 209147 username heydary4246 209147 mac 209147 bytes_out 0 209147 bytes_in 0 209147 station_ip 83.122.151.250 209147 port 15 209147 unique_id port 209148 username motamedi9772 209148 mac 209148 bytes_out 9682 209148 bytes_in 19938 209148 station_ip 83.123.84.152 209148 port 30 209148 unique_id port 209148 remote_ip 10.8.0.86 209150 username hosseine 209150 kill_reason Another user logged on this global unique id 209150 mac 209150 bytes_out 0 209150 bytes_in 0 209150 station_ip 37.129.202.80 209150 port 16 209150 unique_id port 209150 remote_ip 10.8.0.126 209156 username mirzaei6046 209156 kill_reason Another user logged on this global unique id 209156 mac 209156 bytes_out 0 209156 bytes_in 0 209156 station_ip 5.120.107.143 209156 port 24 209156 unique_id port 209161 username nilufarrajaei 209161 kill_reason Another user logged on this global unique id 209161 mac 209161 bytes_out 0 209161 bytes_in 0 209161 station_ip 37.129.58.41 209161 port 11 209161 unique_id port 209162 username mehrpoyan101 209162 mac 209162 bytes_out 148934 209162 bytes_in 453932 209162 station_ip 5.120.148.186 209162 port 26 209162 unique_id port 209162 remote_ip 10.8.0.134 209163 username esmaeilkazemi 209163 mac 209163 bytes_out 0 209163 bytes_in 0 209163 station_ip 46.249.124.78 209163 port 26 209163 unique_id port 209163 remote_ip 10.8.0.66 209165 username sabaghnezhad 209165 mac 209165 bytes_out 0 209165 bytes_in 0 209165 station_ip 37.129.227.129 209165 port 4 209165 unique_id port 209165 remote_ip 10.8.0.94 209168 username mehrpoyan101 209168 mac 209168 bytes_out 23157 209168 bytes_in 24488 209168 station_ip 5.120.137.54 209168 port 26 209168 unique_id port 209168 remote_ip 10.8.0.134 209174 username meysam 209174 mac 209174 bytes_out 0 209174 bytes_in 0 209174 station_ip 188.159.251.255 209174 port 24 209174 unique_id port 209174 remote_ip 10.8.1.6 209180 username barzegar 209180 mac 209180 bytes_out 0 209180 bytes_in 0 209180 station_ip 5.119.161.34 209180 port 22 209180 unique_id port 209180 remote_ip 10.8.1.30 209182 username kamali3 209182 mac 209182 bytes_out 26645 209182 bytes_in 50916 209182 station_ip 83.122.220.34 209132 station_ip 5.120.180.115 209132 port 9 209132 unique_id port 209132 remote_ip 10.8.0.98 209138 username barzegar8595 209138 mac 209138 bytes_out 1226199 209138 bytes_in 9551726 209138 station_ip 46.225.214.28 209138 port 19 209138 unique_id port 209138 remote_ip 10.8.0.170 209139 username mosavi0713 209139 mac 209139 bytes_out 0 209139 bytes_in 0 209139 station_ip 37.129.183.167 209139 port 16 209139 unique_id port 209145 username pourshad 209145 kill_reason Another user logged on this global unique id 209145 mac 209145 bytes_out 0 209145 bytes_in 0 209145 station_ip 5.119.178.195 209145 port 23 209145 unique_id port 209146 username mosi 209146 mac 209146 bytes_out 0 209146 bytes_in 0 209146 station_ip 2.183.56.101 209146 port 22 209146 unique_id port 209146 remote_ip 10.8.1.54 209152 username mehrpoyan101 209152 mac 209152 bytes_out 185162 209152 bytes_in 892095 209152 station_ip 5.120.113.232 209152 port 31 209152 unique_id port 209152 remote_ip 10.8.0.134 209154 username yaghobi 209154 mac 209154 bytes_out 236081 209154 bytes_in 349567 209154 station_ip 83.123.21.125 209154 port 26 209154 unique_id port 209154 remote_ip 10.8.0.106 209158 username mehrpoyan101 209158 mac 209158 bytes_out 67707 209158 bytes_in 392279 209158 station_ip 5.120.113.232 209158 port 28 209158 unique_id port 209158 remote_ip 10.8.0.134 209159 username meysam 209159 mac 209159 bytes_out 0 209159 bytes_in 0 209159 station_ip 188.159.251.255 209159 port 22 209159 unique_id port 209159 remote_ip 10.8.1.6 209164 username mehrpoyan101 209164 mac 209164 bytes_out 48531 209164 bytes_in 67261 209164 station_ip 5.120.24.77 209164 port 28 209164 unique_id port 209164 remote_ip 10.8.0.134 209166 username esmaeilkazemi 209166 mac 209166 bytes_out 334441 209166 bytes_in 3228454 209166 station_ip 46.249.124.78 209166 port 32 209166 unique_id port 209166 remote_ip 10.8.0.66 209167 username mirzaei6046 209167 kill_reason Another user logged on this global unique id 209167 mac 209167 bytes_out 0 209167 bytes_in 0 209167 station_ip 5.120.107.143 209167 port 24 209167 unique_id port 209169 username barzegar8595 209169 mac 209169 bytes_out 2328194 209169 bytes_in 10450371 209169 station_ip 46.225.208.153 209169 port 25 209169 unique_id port 209169 remote_ip 10.8.0.170 209172 username mehrpoyan101 209172 mac 209172 bytes_out 16919 209172 bytes_in 18345 209172 station_ip 5.120.24.214 209172 port 26 209172 unique_id port 209172 remote_ip 10.8.0.134 209175 username nilufarrajaei 209175 mac 209175 bytes_out 0 209175 bytes_in 0 209175 station_ip 37.129.58.41 209175 port 11 209175 unique_id port 209177 username sabaghnezhad 209177 mac 209177 bytes_out 36504 209177 bytes_in 37776 209177 station_ip 83.122.189.122 209177 port 28 209177 unique_id port 209177 remote_ip 10.8.0.94 209192 username mehrpoyan101 209192 mac 209192 bytes_out 0 209192 bytes_in 0 209192 station_ip 5.119.205.200 209192 port 11 209192 unique_id port 209192 remote_ip 10.8.0.134 209193 username barzegar 209193 mac 209193 bytes_out 0 209193 bytes_in 0 209193 station_ip 5.119.161.34 209193 port 28 209193 unique_id port 209193 remote_ip 10.8.1.30 209195 username mehrpoyan101 209195 mac 209195 bytes_out 243493 209195 bytes_in 1756111 209195 station_ip 5.119.205.200 209195 port 9 209195 unique_id port 209195 remote_ip 10.8.0.134 209199 username barzegar 209199 mac 209199 bytes_out 0 209199 bytes_in 0 209199 station_ip 5.119.161.34 209199 port 9 209199 unique_id port 209173 unique_id port 209173 remote_ip 10.8.0.182 209176 username motamedi9772 209176 mac 209176 bytes_out 323627 209176 bytes_in 4286732 209176 station_ip 83.123.52.236 209176 port 4 209176 unique_id port 209176 remote_ip 10.8.0.86 209178 username alipour1506 209178 mac 209178 bytes_out 0 209178 bytes_in 0 209178 station_ip 37.129.205.90 209178 port 22 209178 unique_id port 209178 remote_ip 10.8.1.158 209179 username motamedi9772 209179 mac 209179 bytes_out 6607 209179 bytes_in 17570 209179 station_ip 83.123.52.236 209179 port 4 209179 unique_id port 209179 remote_ip 10.8.0.86 209181 username yarmohamadi7916 209181 mac 209181 bytes_out 3305525 209181 bytes_in 38279505 209181 station_ip 5.120.1.192 209181 port 27 209181 unique_id port 209181 remote_ip 10.8.0.214 209183 username barzegar 209183 mac 209183 bytes_out 0 209183 bytes_in 0 209183 station_ip 5.119.161.34 209183 port 11 209183 unique_id port 209183 remote_ip 10.8.0.34 209184 username barzegar 209184 mac 209184 bytes_out 0 209184 bytes_in 0 209184 station_ip 5.119.161.34 209184 port 11 209184 unique_id port 209184 remote_ip 10.8.0.34 209185 username barzegar 209185 mac 209185 bytes_out 0 209185 bytes_in 0 209185 station_ip 5.119.161.34 209185 port 11 209185 unique_id port 209185 remote_ip 10.8.0.34 209186 username kamali3 209186 kill_reason Another user logged on this global unique id 209186 mac 209186 bytes_out 0 209186 bytes_in 0 209186 station_ip 83.122.220.34 209186 port 26 209186 unique_id port 209186 remote_ip 10.8.0.182 209187 username sekonji0496 209187 mac 209187 bytes_out 104561 209187 bytes_in 128409 209187 station_ip 83.123.84.56 209187 port 9 209187 unique_id port 209187 remote_ip 10.8.0.70 209189 username godarzi 209189 kill_reason Another user logged on this global unique id 209189 mac 209189 bytes_out 0 209189 bytes_in 0 209189 station_ip 5.202.65.237 209189 port 21 209189 unique_id port 209189 remote_ip 10.8.1.66 209191 username mostafa_es78 209191 mac 209191 bytes_out 1134211 209191 bytes_in 10085844 209191 station_ip 83.122.202.79 209191 port 25 209191 unique_id port 209191 remote_ip 10.8.0.42 209194 username soleymani5056 209194 mac 209194 bytes_out 1411298 209194 bytes_in 12610914 209194 station_ip 5.119.63.164 209194 port 15 209194 unique_id port 209194 remote_ip 10.8.0.246 209198 username yaghobi 209198 mac 209198 bytes_out 482051 209198 bytes_in 1604577 209198 station_ip 83.123.21.125 209198 port 31 209198 unique_id port 209198 remote_ip 10.8.0.106 209200 username sekonji0496 209200 mac 209200 bytes_out 0 209200 bytes_in 0 209200 station_ip 83.123.84.56 209200 port 27 209200 unique_id port 209200 remote_ip 10.8.1.226 209206 username farhad3 209206 mac 209206 bytes_out 0 209206 bytes_in 0 209206 station_ip 5.120.180.115 209206 port 4 209206 unique_id port 209206 remote_ip 10.8.0.98 209207 username farhad3 209207 mac 209207 bytes_out 0 209207 bytes_in 0 209207 station_ip 5.120.180.115 209207 port 4 209207 unique_id port 209207 remote_ip 10.8.0.98 209208 username barzegar 209208 mac 209208 bytes_out 0 209208 bytes_in 0 209208 station_ip 5.119.161.34 209208 port 27 209208 unique_id port 209208 remote_ip 10.8.0.34 209209 username mehrpoyan101 209209 mac 209209 bytes_out 119014 209209 bytes_in 322532 209209 station_ip 5.120.176.211 209209 port 9 209209 unique_id port 209209 remote_ip 10.8.0.134 209211 username yaghobi 209211 mac 209211 bytes_out 76840 209211 bytes_in 354155 209211 station_ip 83.123.21.125 209182 port 26 209182 unique_id port 209182 remote_ip 10.8.0.182 209188 username hosseine 209188 kill_reason Another user logged on this global unique id 209188 mac 209188 bytes_out 0 209188 bytes_in 0 209188 station_ip 37.129.202.80 209188 port 16 209188 unique_id port 209190 username mehrpoyan101 209190 mac 209190 bytes_out 17632 209190 bytes_in 15455 209190 station_ip 5.119.205.200 209190 port 9 209190 unique_id port 209190 remote_ip 10.8.0.134 209196 username soleymani5056 209196 mac 209196 bytes_out 74165 209196 bytes_in 783186 209196 station_ip 5.119.237.187 209196 port 11 209196 unique_id port 209196 remote_ip 10.8.0.246 209197 username nilufarrajaei 209197 mac 209197 bytes_out 156045277 209197 bytes_in 191337131 209197 station_ip 37.129.58.41 209197 port 24 209197 unique_id port 209197 remote_ip 10.8.1.126 209210 username kalantary6037 209210 mac 209210 bytes_out 61302 209210 bytes_in 62086 209210 station_ip 37.129.241.243 209210 port 25 209210 unique_id port 209210 remote_ip 10.8.0.18 209212 username yaghobi 209212 mac 209212 bytes_out 2694 209212 bytes_in 8373 209212 station_ip 83.123.21.125 209212 port 9 209212 unique_id port 209212 remote_ip 10.8.0.106 209217 username alipour1506 209217 mac 209217 bytes_out 0 209217 bytes_in 0 209217 station_ip 37.129.205.90 209217 port 22 209217 unique_id port 209217 remote_ip 10.8.1.158 209220 username motamedi9772 209220 mac 209220 bytes_out 57236 209220 bytes_in 590697 209220 station_ip 83.123.54.204 209220 port 19 209220 unique_id port 209220 remote_ip 10.8.0.86 209222 username motamedi9772 209222 mac 209222 bytes_out 0 209222 bytes_in 0 209222 station_ip 83.123.54.204 209222 port 19 209222 unique_id port 209222 remote_ip 10.8.0.86 209224 username majidsarmast 209224 kill_reason Another user logged on this global unique id 209224 mac 209224 bytes_out 0 209224 bytes_in 0 209224 station_ip 83.122.213.254 209224 port 27 209224 unique_id port 209224 remote_ip 10.8.0.194 209225 username motamedi9772 209225 mac 209225 bytes_out 999327 209225 bytes_in 9027950 209225 station_ip 83.123.54.204 209225 port 27 209225 unique_id port 209225 remote_ip 10.8.1.182 209228 username motamedi9772 209228 mac 209228 bytes_out 0 209228 bytes_in 0 209228 station_ip 83.123.54.204 209228 port 28 209228 unique_id port 209228 remote_ip 10.8.0.86 209229 username motamedi9772 209229 mac 209229 bytes_out 0 209229 bytes_in 0 209229 station_ip 83.123.54.204 209229 port 28 209229 unique_id port 209229 remote_ip 10.8.0.86 209232 username kharazmi2920 209232 mac 209232 bytes_out 600492 209232 bytes_in 459652 209232 station_ip 113.203.62.96 209232 port 26 209232 unique_id port 209232 remote_ip 10.8.0.54 209234 username aminvpn 209234 kill_reason Another user logged on this global unique id 209234 mac 209234 bytes_out 0 209234 bytes_in 0 209234 station_ip 5.119.44.118 209234 port 4 209234 unique_id port 209234 remote_ip 10.8.0.58 209238 username barzegar 209238 mac 209238 bytes_out 0 209238 bytes_in 0 209238 station_ip 5.119.161.34 209238 port 27 209238 unique_id port 209238 remote_ip 10.8.1.30 209239 username alipour1506 209239 mac 209239 bytes_out 0 209239 bytes_in 0 209239 station_ip 37.129.205.90 209239 port 22 209239 unique_id port 209239 remote_ip 10.8.1.158 209242 username motamedi9772 209242 mac 209242 bytes_out 0 209242 bytes_in 0 209242 station_ip 83.123.54.204 209242 port 22 209242 unique_id port 209242 remote_ip 10.8.1.182 209244 username motamedi9772 209244 mac 209244 bytes_out 0 209244 bytes_in 0 209199 remote_ip 10.8.0.34 209201 username alipour1506 209201 mac 209201 bytes_out 583012 209201 bytes_in 4250931 209201 station_ip 37.129.205.90 209201 port 22 209201 unique_id port 209201 remote_ip 10.8.1.158 209202 username mehrpoyan101 209202 mac 209202 bytes_out 288231 209202 bytes_in 2451599 209202 station_ip 5.120.191.173 209202 port 15 209202 unique_id port 209202 remote_ip 10.8.0.134 209203 username sekonji0496 209203 mac 209203 bytes_out 9188 209203 bytes_in 15600 209203 station_ip 83.123.84.56 209203 port 9 209203 unique_id port 209203 remote_ip 10.8.0.70 209204 username sabaghnezhad 209204 mac 209204 bytes_out 233098 209204 bytes_in 1257319 209204 station_ip 83.122.189.122 209204 port 4 209204 unique_id port 209204 remote_ip 10.8.0.94 209205 username mehrpoyan101 209205 mac 209205 bytes_out 140322 209205 bytes_in 845220 209205 station_ip 5.120.158.239 209205 port 25 209205 unique_id port 209205 remote_ip 10.8.0.134 209215 username dortaj3792 209215 mac 209215 bytes_out 5957974 209215 bytes_in 37377694 209215 station_ip 5.119.186.148 209215 port 19 209215 unique_id port 209215 remote_ip 10.8.0.10 209216 username barzegar 209216 mac 209216 bytes_out 0 209216 bytes_in 0 209216 station_ip 5.119.161.34 209216 port 26 209216 unique_id port 209218 username barzegar 209218 mac 209218 bytes_out 0 209218 bytes_in 0 209218 station_ip 5.119.161.34 209218 port 25 209218 unique_id port 209218 remote_ip 10.8.0.34 209223 username alipour1506 209223 mac 209223 bytes_out 0 209223 bytes_in 0 209223 station_ip 37.129.205.90 209223 port 22 209223 unique_id port 209223 remote_ip 10.8.1.158 209227 username motamedi9772 209227 mac 209227 bytes_out 1110112 209227 bytes_in 9722913 209227 station_ip 83.123.54.204 209227 port 27 209227 unique_id port 209227 remote_ip 10.8.1.182 209230 username alipour1506 209230 mac 209230 bytes_out 0 209230 bytes_in 0 209230 station_ip 37.129.205.90 209230 port 22 209230 unique_id port 209230 remote_ip 10.8.1.158 209231 username motamedi9772 209231 mac 209231 bytes_out 0 209231 bytes_in 0 209231 station_ip 83.123.54.204 209231 port 28 209231 unique_id port 209231 remote_ip 10.8.0.86 209233 username motamedi9772 209233 mac 209233 bytes_out 1293926 209233 bytes_in 11917942 209233 station_ip 83.123.54.204 209233 port 27 209233 unique_id port 209233 remote_ip 10.8.1.182 209236 username motamedi9772 209236 mac 209236 bytes_out 0 209236 bytes_in 0 209236 station_ip 83.123.54.204 209236 port 26 209236 unique_id port 209236 remote_ip 10.8.0.86 209240 username motamedi9772 209240 mac 209240 bytes_out 0 209240 bytes_in 0 209240 station_ip 83.123.54.204 209240 port 27 209240 unique_id port 209240 remote_ip 10.8.1.182 209241 username motamedi9772 209241 mac 209241 bytes_out 0 209241 bytes_in 0 209241 station_ip 83.123.54.204 209241 port 22 209241 unique_id port 209241 remote_ip 10.8.1.182 209245 username motamedi9772 209245 mac 209245 bytes_out 0 209245 bytes_in 0 209245 station_ip 83.123.54.204 209245 port 22 209245 unique_id port 209245 remote_ip 10.8.1.182 209248 username motamedi9772 209248 mac 209248 bytes_out 0 209248 bytes_in 0 209248 station_ip 83.123.54.204 209248 port 22 209248 unique_id port 209248 remote_ip 10.8.1.182 209249 username motamedi9772 209249 mac 209249 bytes_out 0 209249 bytes_in 0 209249 station_ip 83.123.54.204 209249 port 26 209249 unique_id port 209249 remote_ip 10.8.0.86 209251 username motamedi9772 209251 mac 209211 port 4 209211 unique_id port 209211 remote_ip 10.8.0.106 209213 username nilufarrajaei 209213 kill_reason Another user logged on this global unique id 209213 mac 209213 bytes_out 0 209213 bytes_in 0 209213 station_ip 37.129.58.41 209213 port 24 209213 unique_id port 209213 remote_ip 10.8.1.126 209214 username barzegar8595 209214 mac 209214 bytes_out 150644 209214 bytes_in 143185 209214 station_ip 46.225.208.153 209214 port 11 209214 unique_id port 209214 remote_ip 10.8.0.170 209219 username alipour1506 209219 mac 209219 bytes_out 43724 209219 bytes_in 68871 209219 station_ip 37.129.205.90 209219 port 22 209219 unique_id port 209219 remote_ip 10.8.1.158 209221 username motamedi9772 209221 mac 209221 bytes_out 0 209221 bytes_in 0 209221 station_ip 83.123.54.204 209221 port 19 209221 unique_id port 209221 remote_ip 10.8.0.86 209226 username motamedi9772 209226 mac 209226 bytes_out 0 209226 bytes_in 0 209226 station_ip 83.123.54.204 209226 port 27 209226 unique_id port 209226 remote_ip 10.8.1.182 209235 username motamedi9772 209235 mac 209235 bytes_out 0 209235 bytes_in 0 209235 station_ip 83.123.54.204 209235 port 26 209235 unique_id port 209235 remote_ip 10.8.0.86 209237 username motamedi9772 209237 mac 209237 bytes_out 0 209237 bytes_in 0 209237 station_ip 83.123.54.204 209237 port 26 209237 unique_id port 209237 remote_ip 10.8.0.86 209243 username motamedi9772 209243 mac 209243 bytes_out 0 209243 bytes_in 0 209243 station_ip 83.123.54.204 209243 port 26 209243 unique_id port 209243 remote_ip 10.8.0.86 209246 username yaghobi 209246 mac 209246 bytes_out 221981 209246 bytes_in 310250 209246 station_ip 83.123.21.125 209246 port 9 209246 unique_id port 209246 remote_ip 10.8.0.106 209247 username dortaj3792 209247 mac 209247 bytes_out 153225 209247 bytes_in 422073 209247 station_ip 5.119.186.148 209247 port 26 209247 unique_id port 209247 remote_ip 10.8.0.10 209250 username yaghobi 209250 mac 209250 bytes_out 18496 209250 bytes_in 24137 209250 station_ip 83.123.193.177 209250 port 9 209250 unique_id port 209250 remote_ip 10.8.0.106 209253 username kamali3 209253 mac 209253 bytes_out 718272 209253 bytes_in 5439575 209253 station_ip 83.122.220.34 209253 port 11 209253 unique_id port 209253 remote_ip 10.8.0.182 209263 username godarzi 209263 mac 209263 bytes_out 0 209263 bytes_in 0 209263 station_ip 5.202.65.237 209263 port 21 209263 unique_id port 209268 username yaghobi 209268 mac 209268 bytes_out 3115239 209268 bytes_in 31646046 209268 station_ip 83.123.193.177 209268 port 30 209268 unique_id port 209268 remote_ip 10.8.1.106 209270 username alipour1506 209270 mac 209270 bytes_out 0 209270 bytes_in 0 209270 station_ip 37.129.205.90 209270 port 22 209270 unique_id port 209270 remote_ip 10.8.1.158 209272 username dortaj3792 209272 mac 209272 bytes_out 976935 209272 bytes_in 11375297 209272 station_ip 5.119.186.148 209272 port 11 209272 unique_id port 209272 remote_ip 10.8.0.10 209274 username meysam 209274 kill_reason Another user logged on this global unique id 209274 mac 209274 bytes_out 0 209274 bytes_in 0 209274 station_ip 188.159.251.255 209274 port 27 209274 unique_id port 209274 remote_ip 10.8.1.6 209275 username kamali3 209275 mac 209275 bytes_out 28522 209275 bytes_in 76048 209275 station_ip 83.122.220.34 209275 port 9 209275 unique_id port 209275 remote_ip 10.8.0.182 209281 username kalantary6037 209281 mac 209281 bytes_out 47167 209281 bytes_in 39694 209281 station_ip 83.122.62.31 209244 station_ip 83.123.54.204 209244 port 22 209244 unique_id port 209244 remote_ip 10.8.1.182 209256 username yaghobi 209256 mac 209256 bytes_out 9735 209256 bytes_in 21215 209256 station_ip 83.123.193.177 209256 port 26 209256 unique_id port 209256 remote_ip 10.8.0.106 209258 username motamedi9772 209258 mac 209258 bytes_out 0 209258 bytes_in 0 209258 station_ip 83.123.54.204 209258 port 28 209258 unique_id port 209258 remote_ip 10.8.0.86 209259 username fezealinaghi 209259 kill_reason Another user logged on this global unique id 209259 mac 209259 bytes_out 0 209259 bytes_in 0 209259 station_ip 37.129.62.211 209259 port 30 209259 unique_id port 209259 remote_ip 10.8.0.234 209260 username motamedi9772 209260 mac 209260 bytes_out 0 209260 bytes_in 0 209260 station_ip 83.123.54.204 209260 port 28 209260 unique_id port 209260 remote_ip 10.8.1.182 209264 username motamedi9772 209264 mac 209264 bytes_out 0 209264 bytes_in 0 209264 station_ip 83.123.54.204 209264 port 28 209264 unique_id port 209264 remote_ip 10.8.1.182 209265 username aminvpn 209265 kill_reason Another user logged on this global unique id 209265 mac 209265 bytes_out 0 209265 bytes_in 0 209265 station_ip 5.119.44.118 209265 port 4 209265 unique_id port 209266 username barzegar 209266 mac 209266 bytes_out 0 209266 bytes_in 0 209266 station_ip 5.119.161.34 209266 port 21 209266 unique_id port 209266 remote_ip 10.8.1.30 209271 username motamedi9772 209271 mac 209271 bytes_out 0 209271 bytes_in 0 209271 station_ip 83.123.54.204 209271 port 19 209271 unique_id port 209271 remote_ip 10.8.0.86 209276 username motamedi9772 209276 mac 209276 bytes_out 0 209276 bytes_in 0 209276 station_ip 83.123.54.204 209276 port 11 209276 unique_id port 209276 remote_ip 10.8.0.86 209277 username motamedi9772 209277 mac 209277 bytes_out 0 209277 bytes_in 0 209277 station_ip 83.123.54.204 209277 port 22 209277 unique_id port 209277 remote_ip 10.8.1.182 209278 username motamedi9772 209278 mac 209278 bytes_out 0 209278 bytes_in 0 209278 station_ip 83.123.54.204 209278 port 22 209278 unique_id port 209278 remote_ip 10.8.1.182 209280 username mirzaei6046 209280 mac 209280 bytes_out 0 209280 bytes_in 0 209280 station_ip 5.120.107.143 209280 port 24 209280 unique_id port 209284 username hosseine 209284 kill_reason Another user logged on this global unique id 209284 mac 209284 bytes_out 0 209284 bytes_in 0 209284 station_ip 37.129.202.80 209284 port 16 209284 unique_id port 209288 username motamedi9772 209288 mac 209288 bytes_out 0 209288 bytes_in 0 209288 station_ip 83.123.54.204 209288 port 22 209288 unique_id port 209288 remote_ip 10.8.1.182 209290 username motamedi9772 209290 mac 209290 bytes_out 0 209290 bytes_in 0 209290 station_ip 83.123.54.204 209290 port 22 209290 unique_id port 209290 remote_ip 10.8.1.182 209291 username motamedi9772 209291 mac 209291 bytes_out 0 209291 bytes_in 0 209291 station_ip 83.123.54.204 209291 port 22 209291 unique_id port 209291 remote_ip 10.8.1.182 209294 username motamedi9772 209294 mac 209294 bytes_out 0 209294 bytes_in 0 209294 station_ip 83.123.54.204 209294 port 28 209294 unique_id port 209294 remote_ip 10.8.0.86 209298 username barzegar 209298 mac 209298 bytes_out 0 209298 bytes_in 0 209298 station_ip 5.119.161.34 209298 port 22 209298 unique_id port 209298 remote_ip 10.8.1.30 209302 username motamedi9772 209302 mac 209302 bytes_out 0 209302 bytes_in 0 209302 station_ip 83.123.54.204 209302 port 22 209251 bytes_out 0 209251 bytes_in 0 209251 station_ip 83.123.54.204 209251 port 22 209251 unique_id port 209251 remote_ip 10.8.1.182 209252 username motamedi9772 209252 mac 209252 bytes_out 0 209252 bytes_in 0 209252 station_ip 83.123.54.204 209252 port 9 209252 unique_id port 209252 remote_ip 10.8.0.86 209254 username motamedi9772 209254 kill_reason Another user logged on this global unique id 209254 mac 209254 bytes_out 0 209254 bytes_in 0 209254 station_ip 83.123.54.204 209254 port 28 209254 unique_id port 209254 remote_ip 10.8.0.86 209255 username yaghobi 209255 mac 209255 bytes_out 0 209255 bytes_in 0 209255 station_ip 83.123.193.177 209255 port 28 209255 unique_id port 209255 remote_ip 10.8.1.106 209257 username heydary4246 209257 kill_reason Another user logged on this global unique id 209257 mac 209257 bytes_out 0 209257 bytes_in 0 209257 station_ip 83.122.151.250 209257 port 29 209257 unique_id port 209257 remote_ip 10.8.0.226 209261 username mosavi0713 209261 mac 209261 bytes_out 281633 209261 bytes_in 1556429 209261 station_ip 37.129.168.171 209261 port 19 209261 unique_id port 209261 remote_ip 10.8.0.22 209262 username soleymani5056 209262 mac 209262 bytes_out 115805 209262 bytes_in 59582 209262 station_ip 5.120.96.85 209262 port 32 209262 unique_id port 209262 remote_ip 10.8.0.246 209267 username motamedi9772 209267 mac 209267 bytes_out 0 209267 bytes_in 0 209267 station_ip 83.123.54.204 209267 port 28 209267 unique_id port 209267 remote_ip 10.8.1.182 209269 username motamedi9772 209269 mac 209269 bytes_out 0 209269 bytes_in 0 209269 station_ip 83.123.54.204 209269 port 21 209269 unique_id port 209269 remote_ip 10.8.1.182 209273 username motamedi9772 209273 mac 209273 bytes_out 0 209273 bytes_in 0 209273 station_ip 83.123.54.204 209273 port 11 209273 unique_id port 209273 remote_ip 10.8.0.86 209279 username yaghobi 209279 mac 209279 bytes_out 0 209279 bytes_in 0 209279 station_ip 83.123.193.177 209279 port 21 209279 unique_id port 209279 remote_ip 10.8.1.106 209283 username yaghobi 209283 mac 209283 bytes_out 0 209283 bytes_in 0 209283 station_ip 83.123.193.177 209283 port 24 209283 unique_id port 209283 remote_ip 10.8.1.106 209286 username barzegar 209286 mac 209286 bytes_out 0 209286 bytes_in 0 209286 station_ip 5.119.161.34 209286 port 24 209286 unique_id port 209286 remote_ip 10.8.1.30 209287 username yaghobi 209287 mac 209287 bytes_out 235532 209287 bytes_in 361488 209287 station_ip 83.123.193.177 209287 port 11 209287 unique_id port 209287 remote_ip 10.8.0.106 209292 username meysam 209292 kill_reason Another user logged on this global unique id 209292 mac 209292 bytes_out 0 209292 bytes_in 0 209292 station_ip 188.159.251.255 209292 port 27 209292 unique_id port 209295 username khademi 209295 kill_reason Another user logged on this global unique id 209295 mac 209295 bytes_out 0 209295 bytes_in 0 209295 station_ip 37.129.40.116 209295 port 29 209295 unique_id port 209295 remote_ip 10.8.1.218 209296 username alipour1506 209296 mac 209296 bytes_out 74901 209296 bytes_in 180546 209296 station_ip 37.129.205.90 209296 port 11 209296 unique_id port 209296 remote_ip 10.8.0.46 209301 username aminvpn 209301 kill_reason Another user logged on this global unique id 209301 mac 209301 bytes_out 0 209301 bytes_in 0 209301 station_ip 5.119.44.118 209301 port 4 209301 unique_id port 209303 username meysam 209303 mac 209303 bytes_out 0 209303 bytes_in 0 209303 station_ip 188.159.251.255 209303 port 27 209303 unique_id port 209281 port 9 209281 unique_id port 209281 remote_ip 10.8.0.18 209282 username yaghobi 209282 mac 209282 bytes_out 0 209282 bytes_in 0 209282 station_ip 83.123.193.177 209282 port 24 209282 unique_id port 209282 remote_ip 10.8.1.106 209285 username nilufarrajaei 209285 mac 209285 bytes_out 0 209285 bytes_in 0 209285 station_ip 37.129.58.41 209285 port 21 209285 unique_id port 209285 remote_ip 10.8.1.126 209289 username alipour1506 209289 mac 209289 bytes_out 79635 209289 bytes_in 492634 209289 station_ip 37.129.205.90 209289 port 9 209289 unique_id port 209289 remote_ip 10.8.0.46 209293 username motamedi9772 209293 mac 209293 bytes_out 0 209293 bytes_in 0 209293 station_ip 83.123.54.204 209293 port 9 209293 unique_id port 209293 remote_ip 10.8.0.86 209297 username mostafa_es78 209297 mac 209297 bytes_out 540592 209297 bytes_in 4269130 209297 station_ip 83.122.202.79 209297 port 25 209297 unique_id port 209297 remote_ip 10.8.0.42 209299 username motamedi9772 209299 mac 209299 bytes_out 0 209299 bytes_in 0 209299 station_ip 83.123.54.204 209299 port 28 209299 unique_id port 209299 remote_ip 10.8.1.182 209300 username godarzi 209300 mac 209300 bytes_out 0 209300 bytes_in 0 209300 station_ip 5.202.65.237 209300 port 24 209300 unique_id port 209300 remote_ip 10.8.1.66 209308 username tahmorsi 209308 mac 209308 bytes_out 2137496 209308 bytes_in 22172963 209308 station_ip 86.57.103.224 209308 port 31 209308 unique_id port 209308 remote_ip 10.8.0.218 209312 username meysam 209312 mac 209312 bytes_out 0 209312 bytes_in 0 209312 station_ip 188.159.251.255 209312 port 22 209312 unique_id port 209312 remote_ip 10.8.1.6 209314 username barzegar 209314 mac 209314 bytes_out 0 209314 bytes_in 0 209314 station_ip 5.119.161.34 209314 port 22 209314 unique_id port 209314 remote_ip 10.8.1.30 209317 username alipour1506 209317 mac 209317 bytes_out 104604 209317 bytes_in 336542 209317 station_ip 37.129.205.90 209317 port 28 209317 unique_id port 209317 remote_ip 10.8.0.46 209318 username motamedi9772 209318 mac 209318 bytes_out 0 209318 bytes_in 0 209318 station_ip 83.123.92.156 209318 port 22 209318 unique_id port 209318 remote_ip 10.8.1.182 209320 username khademi 209320 mac 209320 bytes_out 0 209320 bytes_in 0 209320 station_ip 37.129.40.116 209320 port 29 209320 unique_id port 209322 username mosi 209322 kill_reason Another user logged on this global unique id 209322 mac 209322 bytes_out 0 209322 bytes_in 0 209322 station_ip 5.233.51.160 209322 port 3 209322 unique_id port 209322 remote_ip 10.8.1.54 209326 username nilufarrajaei 209326 mac 209326 bytes_out 0 209326 bytes_in 0 209326 station_ip 37.129.58.41 209326 port 21 209326 unique_id port 209326 remote_ip 10.8.1.126 209327 username yaghobi 209327 mac 209327 bytes_out 287528 209327 bytes_in 1746106 209327 station_ip 83.123.193.177 209327 port 27 209327 unique_id port 209327 remote_ip 10.8.0.106 209330 username barzegar 209330 mac 209330 bytes_out 0 209330 bytes_in 0 209330 station_ip 5.119.161.34 209330 port 24 209330 unique_id port 209330 remote_ip 10.8.1.30 209331 username kamali3 209331 mac 209331 bytes_out 1402381 209331 bytes_in 9365017 209331 station_ip 83.122.220.34 209331 port 19 209331 unique_id port 209331 remote_ip 10.8.0.182 209332 username saeeddamghani 209332 kill_reason Another user logged on this global unique id 209332 mac 209332 bytes_out 0 209332 bytes_in 0 209332 station_ip 217.60.175.231 209332 port 25 209302 unique_id port 209302 remote_ip 10.8.1.182 209305 username motamedi9772 209305 mac 209305 bytes_out 0 209305 bytes_in 0 209305 station_ip 83.123.54.204 209305 port 28 209305 unique_id port 209305 remote_ip 10.8.0.86 209307 username nilufarrajaei 209307 mac 209307 bytes_out 0 209307 bytes_in 0 209307 station_ip 37.129.58.41 209307 port 21 209307 unique_id port 209307 remote_ip 10.8.1.126 209310 username alipour1506 209310 mac 209310 bytes_out 90770 209310 bytes_in 162104 209310 station_ip 37.129.205.90 209310 port 25 209310 unique_id port 209310 remote_ip 10.8.0.46 209315 username yaghobi 209315 mac 209315 bytes_out 402522 209315 bytes_in 725858 209315 station_ip 83.123.193.177 209315 port 9 209315 unique_id port 209315 remote_ip 10.8.0.106 209319 username yaghobi 209319 mac 209319 bytes_out 78566 209319 bytes_in 110427 209319 station_ip 83.123.193.177 209319 port 31 209319 unique_id port 209319 remote_ip 10.8.0.106 209321 username yaghobi 209321 mac 209321 bytes_out 77836 209321 bytes_in 149966 209321 station_ip 83.123.193.177 209321 port 27 209321 unique_id port 209321 remote_ip 10.8.0.106 209325 username saeeddamghani 209325 kill_reason Another user logged on this global unique id 209325 mac 209325 bytes_out 0 209325 bytes_in 0 209325 station_ip 217.60.175.231 209325 port 25 209325 unique_id port 209325 remote_ip 10.8.0.162 209335 username aminvpn 209335 kill_reason Another user logged on this global unique id 209335 mac 209335 bytes_out 0 209335 bytes_in 0 209335 station_ip 5.119.44.118 209335 port 4 209335 unique_id port 209339 username barzegar8595 209339 mac 209339 bytes_out 104520 209339 bytes_in 161957 209339 station_ip 46.225.212.234 209339 port 32 209339 unique_id port 209339 remote_ip 10.8.0.170 209341 username barzegar 209341 mac 209341 bytes_out 0 209341 bytes_in 0 209341 station_ip 5.119.161.34 209341 port 19 209341 unique_id port 209341 remote_ip 10.8.0.34 209342 username barzegar8595 209342 mac 209342 bytes_out 7131 209342 bytes_in 9162 209342 station_ip 46.225.211.108 209342 port 16 209342 unique_id port 209342 remote_ip 10.8.0.170 209345 username saeeddamghani 209345 kill_reason Another user logged on this global unique id 209345 mac 209345 bytes_out 0 209345 bytes_in 0 209345 station_ip 217.60.175.231 209345 port 25 209345 unique_id port 209347 username saeeddamghani 209347 mac 209347 bytes_out 0 209347 bytes_in 0 209347 station_ip 217.60.175.231 209347 port 25 209347 unique_id port 209350 username khademi 209350 kill_reason Another user logged on this global unique id 209350 mac 209350 bytes_out 0 209350 bytes_in 0 209350 station_ip 37.129.40.116 209350 port 27 209350 unique_id port 209350 remote_ip 10.8.0.26 209351 username nilufarrajaei 209351 mac 209351 bytes_out 0 209351 bytes_in 0 209351 station_ip 37.129.58.41 209351 port 22 209351 unique_id port 209351 remote_ip 10.8.1.126 209353 username alipour1506 209353 mac 209353 bytes_out 290141 209353 bytes_in 748745 209353 station_ip 37.129.205.90 209353 port 9 209353 unique_id port 209353 remote_ip 10.8.0.46 209362 username motamedi9772 209362 mac 209362 bytes_out 0 209362 bytes_in 0 209362 station_ip 83.123.5.216 209362 port 22 209362 unique_id port 209362 remote_ip 10.8.1.182 209371 username motamedi9772 209371 mac 209371 bytes_out 0 209371 bytes_in 0 209371 station_ip 83.123.5.216 209371 port 9 209371 unique_id port 209371 remote_ip 10.8.0.86 209374 username alipour1506 209374 mac 209374 bytes_out 72573 209374 bytes_in 123548 209374 station_ip 37.129.205.90 209304 username nilufarrajaei 209304 mac 209304 bytes_out 0 209304 bytes_in 0 209304 station_ip 37.129.58.41 209304 port 21 209304 unique_id port 209304 remote_ip 10.8.1.126 209306 username motamedi9772 209306 mac 209306 bytes_out 0 209306 bytes_in 0 209306 station_ip 83.123.54.204 209306 port 28 209306 unique_id port 209306 remote_ip 10.8.0.86 209309 username motamedi9772 209309 mac 209309 bytes_out 0 209309 bytes_in 0 209309 station_ip 83.123.54.204 209309 port 21 209309 unique_id port 209309 remote_ip 10.8.1.182 209311 username kalantary6037 209311 mac 209311 bytes_out 0 209311 bytes_in 0 209311 station_ip 83.122.62.31 209311 port 24 209311 unique_id port 209311 remote_ip 10.8.1.98 209313 username nilufarrajaei 209313 mac 209313 bytes_out 0 209313 bytes_in 0 209313 station_ip 37.129.58.41 209313 port 21 209313 unique_id port 209313 remote_ip 10.8.1.126 209316 username aminvpn 209316 kill_reason Another user logged on this global unique id 209316 mac 209316 bytes_out 0 209316 bytes_in 0 209316 station_ip 5.119.44.118 209316 port 4 209316 unique_id port 209323 username soleymani5056 209323 mac 209323 bytes_out 2049 209323 bytes_in 3801 209323 station_ip 5.120.116.68 209323 port 28 209323 unique_id port 209323 remote_ip 10.8.0.246 209324 username barzegar 209324 mac 209324 bytes_out 0 209324 bytes_in 0 209324 station_ip 5.119.161.34 209324 port 22 209324 unique_id port 209324 remote_ip 10.8.1.30 209328 username khademi 209328 mac 209328 bytes_out 0 209328 bytes_in 0 209328 station_ip 37.129.40.116 209328 port 29 209328 unique_id port 209329 username yaghobi 209329 mac 209329 bytes_out 0 209329 bytes_in 0 209329 station_ip 83.123.193.177 209329 port 21 209329 unique_id port 209329 remote_ip 10.8.1.106 209333 username yaghobi 209333 mac 209333 bytes_out 0 209333 bytes_in 0 209333 station_ip 83.123.193.177 209333 port 21 209333 unique_id port 209333 remote_ip 10.8.1.106 209334 username kamali3 209334 mac 209334 bytes_out 41692 209334 bytes_in 88476 209334 station_ip 83.122.220.34 209334 port 28 209334 unique_id port 209334 remote_ip 10.8.0.182 209336 username hosseine 209336 mac 209336 bytes_out 0 209336 bytes_in 0 209336 station_ip 37.129.202.80 209336 port 16 209336 unique_id port 209338 username saeeddamghani 209338 kill_reason Another user logged on this global unique id 209338 mac 209338 bytes_out 0 209338 bytes_in 0 209338 station_ip 217.60.175.231 209338 port 25 209338 unique_id port 209340 username godarzi 209340 mac 209340 bytes_out 0 209340 bytes_in 0 209340 station_ip 5.119.147.171 209340 port 21 209340 unique_id port 209340 remote_ip 10.8.1.66 209343 username barzegar 209343 mac 209343 bytes_out 160944106 209343 bytes_in 223013306 209343 station_ip 5.119.161.34 209343 port 24 209343 unique_id port 209343 remote_ip 10.8.1.30 209346 username kamali3 209346 mac 209346 bytes_out 108303 209346 bytes_in 160570 209346 station_ip 83.122.220.34 209346 port 33 209346 unique_id port 209346 remote_ip 10.8.0.182 209354 username motamedi9772 209354 mac 209354 bytes_out 161001771 209354 bytes_in 223094583 209354 station_ip 83.123.5.216 209354 port 24 209354 unique_id port 209354 remote_ip 10.8.1.182 209357 username barzegar 209357 mac 209357 bytes_out 0 209357 bytes_in 0 209357 station_ip 5.119.161.34 209357 port 4 209357 unique_id port 209357 remote_ip 10.8.0.34 209359 username saeeddamghani 209359 mac 209359 bytes_out 0 209359 bytes_in 0 209359 station_ip 217.60.175.231 209332 unique_id port 209337 username aminvpns6 209337 mac 209337 bytes_out 1503465 209337 bytes_in 8477532 209337 station_ip 5.120.37.250 209337 port 19 209337 unique_id port 209337 remote_ip 10.8.0.210 209344 username aminvpns6 209344 mac 209344 bytes_out 0 209344 bytes_in 0 209344 station_ip 5.120.37.250 209344 port 28 209344 unique_id port 209344 remote_ip 10.8.0.210 209348 username barzegar 209348 mac 209348 bytes_out 0 209348 bytes_in 0 209348 station_ip 5.119.161.34 209348 port 32 209348 unique_id port 209348 remote_ip 10.8.0.34 209349 username barzegar 209349 mac 209349 bytes_out 0 209349 bytes_in 0 209349 station_ip 5.119.161.34 209349 port 30 209349 unique_id port 209349 remote_ip 10.8.0.34 209352 username sabaghnezhad 209352 mac 209352 bytes_out 216048 209352 bytes_in 1343059 209352 station_ip 83.123.0.209 209352 port 29 209352 unique_id port 209352 remote_ip 10.8.0.94 209355 username aminvpn 209355 mac 209355 bytes_out 0 209355 bytes_in 0 209355 station_ip 5.119.44.118 209355 port 4 209355 unique_id port 209356 username motamedi9772 209356 mac 209356 bytes_out 0 209356 bytes_in 0 209356 station_ip 83.123.5.216 209356 port 22 209356 unique_id port 209356 remote_ip 10.8.1.182 209358 username motamedi9772 209358 mac 209358 bytes_out 0 209358 bytes_in 0 209358 station_ip 83.123.5.216 209358 port 22 209358 unique_id port 209358 remote_ip 10.8.1.182 209366 username motamedi9772 209366 mac 209366 bytes_out 0 209366 bytes_in 0 209366 station_ip 83.123.5.216 209366 port 21 209366 unique_id port 209366 remote_ip 10.8.1.182 209367 username motamedi9772 209367 mac 209367 bytes_out 0 209367 bytes_in 0 209367 station_ip 83.123.5.216 209367 port 21 209367 unique_id port 209367 remote_ip 10.8.1.182 209368 username khalili2 209368 kill_reason Another user logged on this global unique id 209368 mac 209368 bytes_out 0 209368 bytes_in 0 209368 station_ip 5.119.60.2 209368 port 30 209368 unique_id port 209368 remote_ip 10.8.0.78 209369 username motamedi9772 209369 mac 209369 bytes_out 0 209369 bytes_in 0 209369 station_ip 83.123.5.216 209369 port 21 209369 unique_id port 209369 remote_ip 10.8.1.182 209373 username motamedi9772 209373 mac 209373 bytes_out 0 209373 bytes_in 0 209373 station_ip 83.123.5.216 209373 port 21 209373 unique_id port 209373 remote_ip 10.8.1.182 209376 username saeeddamghani 209376 mac 209376 bytes_out 0 209376 bytes_in 0 209376 station_ip 217.60.175.231 209376 port 33 209376 unique_id port 209376 remote_ip 10.8.0.162 209382 username barzegar 209382 mac 209382 bytes_out 0 209382 bytes_in 0 209382 station_ip 5.119.161.34 209382 port 32 209382 unique_id port 209382 remote_ip 10.8.0.34 209384 username dortaj3792 209384 mac 209384 bytes_out 26061007 209384 bytes_in 15853080 209384 station_ip 5.119.186.148 209384 port 26 209384 unique_id port 209384 remote_ip 10.8.0.10 209385 username heydary4246 209385 mac 209385 bytes_out 78025 209385 bytes_in 132784 209385 station_ip 83.122.151.250 209385 port 31 209385 unique_id port 209385 remote_ip 10.8.0.226 209387 username barzegar8595 209387 mac 209387 bytes_out 1131163 209387 bytes_in 5727600 209387 station_ip 46.225.209.126 209387 port 16 209387 unique_id port 209387 remote_ip 10.8.0.170 209388 username yaghobi 209388 mac 209388 bytes_out 0 209388 bytes_in 0 209388 station_ip 83.123.193.177 209388 port 4 209388 unique_id port 209388 remote_ip 10.8.0.106 209393 username mosi 209393 mac 209393 bytes_out 0 209359 port 4 209359 unique_id port 209359 remote_ip 10.8.0.162 209360 username motamedi9772 209360 mac 209360 bytes_out 0 209360 bytes_in 0 209360 station_ip 83.123.5.216 209360 port 22 209360 unique_id port 209360 remote_ip 10.8.1.182 209361 username meysam 209361 mac 209361 bytes_out 0 209361 bytes_in 0 209361 station_ip 188.159.251.255 209361 port 21 209361 unique_id port 209361 remote_ip 10.8.1.6 209363 username yaghobi 209363 kill_reason Another user logged on this global unique id 209363 mac 209363 bytes_out 0 209363 bytes_in 0 209363 station_ip 83.123.193.177 209363 port 19 209363 unique_id port 209363 remote_ip 10.8.0.106 209364 username motamedi9772 209364 mac 209364 bytes_out 0 209364 bytes_in 0 209364 station_ip 83.123.5.216 209364 port 21 209364 unique_id port 209364 remote_ip 10.8.1.182 209365 username kalantary6037 209365 mac 209365 bytes_out 0 209365 bytes_in 0 209365 station_ip 83.122.3.211 209365 port 24 209365 unique_id port 209365 remote_ip 10.8.1.98 209370 username hosseini0093 209370 mac 209370 bytes_out 982571 209370 bytes_in 5321219 209370 station_ip 5.119.185.186 209370 port 9 209370 unique_id port 209370 remote_ip 10.8.0.154 209372 username hosseini0093 209372 mac 209372 bytes_out 0 209372 bytes_in 0 209372 station_ip 5.119.172.14 209372 port 4 209372 unique_id port 209372 remote_ip 10.8.0.154 209375 username yaghobi 209375 mac 209375 bytes_out 0 209375 bytes_in 0 209375 station_ip 83.123.193.177 209375 port 19 209375 unique_id port 209377 username khademi 209377 mac 209377 bytes_out 0 209377 bytes_in 0 209377 station_ip 37.129.40.116 209377 port 27 209377 unique_id port 209379 username kamali3 209379 mac 209379 bytes_out 65904 209379 bytes_in 115799 209379 station_ip 83.122.220.34 209379 port 28 209379 unique_id port 209379 remote_ip 10.8.0.182 209380 username pourshad 209380 mac 209380 bytes_out 0 209380 bytes_in 0 209380 station_ip 5.119.178.195 209380 port 23 209380 unique_id port 209383 username pourshad 209383 mac 209383 bytes_out 1765 209383 bytes_in 4480 209383 station_ip 5.119.178.195 209383 port 28 209383 unique_id port 209383 remote_ip 10.8.0.122 209386 username barzegar 209386 mac 209386 bytes_out 0 209386 bytes_in 0 209386 station_ip 5.119.161.34 209386 port 21 209386 unique_id port 209386 remote_ip 10.8.1.30 209390 username barzegar 209390 mac 209390 bytes_out 0 209390 bytes_in 0 209390 station_ip 5.119.161.34 209390 port 4 209390 unique_id port 209390 remote_ip 10.8.0.34 209392 username soleymani5056 209392 mac 209392 bytes_out 0 209392 bytes_in 0 209392 station_ip 5.119.159.238 209392 port 27 209392 unique_id port 209392 remote_ip 10.8.0.246 209401 username kamali3 209401 mac 209401 bytes_out 30526 209401 bytes_in 48134 209401 station_ip 83.122.220.34 209401 port 22 209401 unique_id port 209401 remote_ip 10.8.1.206 209402 username fezealinaghi 209402 kill_reason Another user logged on this global unique id 209402 mac 209402 bytes_out 0 209402 bytes_in 0 209402 station_ip 37.129.62.211 209402 port 25 209402 unique_id port 209402 remote_ip 10.8.0.234 209403 username meysam 209403 mac 209403 bytes_out 585098 209403 bytes_in 11404925 209403 station_ip 188.159.251.255 209403 port 21 209403 unique_id port 209403 remote_ip 10.8.1.6 209406 username barzegar 209406 mac 209406 bytes_out 0 209406 bytes_in 0 209406 station_ip 5.119.161.34 209406 port 31 209406 unique_id port 209406 remote_ip 10.8.0.34 209412 username mohammadjavad 209374 port 32 209374 unique_id port 209374 remote_ip 10.8.0.46 209378 username motamedi9772 209378 mac 209378 bytes_out 155851 209378 bytes_in 1469310 209378 station_ip 83.123.5.216 209378 port 9 209378 unique_id port 209378 remote_ip 10.8.0.86 209381 username ahmadi1 209381 mac 209381 bytes_out 36770 209381 bytes_in 73123 209381 station_ip 83.122.70.84 209381 port 9 209381 unique_id port 209381 remote_ip 10.8.0.114 209389 username hosseini0093 209389 kill_reason Another user logged on this global unique id 209389 mac 209389 bytes_out 0 209389 bytes_in 0 209389 station_ip 5.119.42.95 209389 port 29 209389 unique_id port 209389 remote_ip 10.8.0.154 209391 username kamali3 209391 mac 209391 bytes_out 8644 209391 bytes_in 18572 209391 station_ip 83.122.220.34 209391 port 21 209391 unique_id port 209391 remote_ip 10.8.1.206 209397 username barzegar 209397 mac 209397 bytes_out 0 209397 bytes_in 0 209397 station_ip 5.119.161.34 209397 port 21 209397 unique_id port 209397 remote_ip 10.8.1.30 209398 username saeeddamghani 209398 mac 209398 bytes_out 0 209398 bytes_in 0 209398 station_ip 217.60.175.231 209398 port 4 209398 unique_id port 209398 remote_ip 10.8.0.162 209400 username hosseini0093 209400 mac 209400 bytes_out 0 209400 bytes_in 0 209400 station_ip 5.119.42.95 209400 port 26 209400 unique_id port 209400 remote_ip 10.8.0.154 209405 username pourshad 209405 mac 209405 bytes_out 0 209405 bytes_in 0 209405 station_ip 5.119.178.195 209405 port 9 209405 unique_id port 209405 remote_ip 10.8.0.122 209409 username heydary4246 209409 mac 209409 bytes_out 0 209409 bytes_in 0 209409 station_ip 83.122.151.250 209409 port 16 209409 unique_id port 209409 remote_ip 10.8.0.226 209410 username sabaghnezhad 209410 mac 209410 bytes_out 0 209410 bytes_in 0 209410 station_ip 83.123.0.209 209410 port 28 209410 unique_id port 209410 remote_ip 10.8.0.94 209411 username hosseini0093 209411 mac 209411 bytes_out 456332 209411 bytes_in 8767559 209411 station_ip 5.119.155.125 209411 port 21 209411 unique_id port 209411 remote_ip 10.8.1.170 209414 username barzegar 209414 mac 209414 bytes_out 0 209414 bytes_in 0 209414 station_ip 5.119.161.34 209414 port 3 209414 unique_id port 209414 remote_ip 10.8.1.30 209415 username alipour1506 209415 mac 209415 bytes_out 0 209415 bytes_in 0 209415 station_ip 37.129.205.90 209415 port 34 209415 unique_id port 209415 remote_ip 10.8.0.46 209416 username fezealinaghi 209416 kill_reason Another user logged on this global unique id 209416 mac 209416 bytes_out 0 209416 bytes_in 0 209416 station_ip 37.129.62.211 209416 port 25 209416 unique_id port 209417 username aminvpn 209417 mac 209417 bytes_out 86519 209417 bytes_in 356424 209417 station_ip 5.119.44.118 209417 port 9 209417 unique_id port 209417 remote_ip 10.8.0.58 209421 username barzegar 209421 mac 209421 bytes_out 0 209421 bytes_in 0 209421 station_ip 5.119.161.34 209421 port 3 209421 unique_id port 209421 remote_ip 10.8.1.30 209424 username barzegar 209424 mac 209424 bytes_out 0 209424 bytes_in 0 209424 station_ip 5.119.161.34 209424 port 3 209424 unique_id port 209424 remote_ip 10.8.1.30 209428 username sabaghnezhad 209428 mac 209428 bytes_out 0 209428 bytes_in 0 209428 station_ip 83.123.0.209 209428 port 30 209428 unique_id port 209428 remote_ip 10.8.0.94 209430 username kamali3 209430 mac 209430 bytes_out 4771589 209430 bytes_in 13316827 209430 station_ip 83.122.220.34 209430 port 22 209430 unique_id port 209393 bytes_in 0 209393 station_ip 5.233.51.160 209393 port 3 209393 unique_id port 209394 username yaghobi 209394 mac 209394 bytes_out 0 209394 bytes_in 0 209394 station_ip 83.123.193.177 209394 port 26 209394 unique_id port 209394 remote_ip 10.8.0.106 209395 username yaghobi 209395 mac 209395 bytes_out 0 209395 bytes_in 0 209395 station_ip 83.123.193.177 209395 port 4 209395 unique_id port 209395 remote_ip 10.8.0.106 209396 username saeeddamghani 209396 mac 209396 bytes_out 0 209396 bytes_in 0 209396 station_ip 217.60.175.231 209396 port 4 209396 unique_id port 209396 remote_ip 10.8.0.162 209399 username hosseini0093 209399 mac 209399 bytes_out 0 209399 bytes_in 0 209399 station_ip 5.119.42.95 209399 port 29 209399 unique_id port 209404 username barzegar 209404 kill_reason Maximum check online fails reached 209404 mac 209404 bytes_out 0 209404 bytes_in 0 209404 station_ip 5.119.161.34 209404 port 26 209404 unique_id port 209407 username yaghobi 209407 mac 209407 bytes_out 0 209407 bytes_in 0 209407 station_ip 83.123.193.177 209407 port 4 209407 unique_id port 209407 remote_ip 10.8.0.106 209408 username hosseini0093 209408 mac 209408 bytes_out 0 209408 bytes_in 0 209408 station_ip 5.119.155.125 209408 port 27 209408 unique_id port 209408 remote_ip 10.8.0.154 209413 username mosi 209413 mac 209413 bytes_out 842468 209413 bytes_in 9891905 209413 station_ip 5.233.51.160 209413 port 3 209413 unique_id port 209413 remote_ip 10.8.1.54 209420 username motamedi9772 209420 kill_reason Another user logged on this global unique id 209420 mac 209420 bytes_out 0 209420 bytes_in 0 209420 station_ip 83.123.5.216 209420 port 29 209420 unique_id port 209420 remote_ip 10.8.0.86 209423 username fezealinaghi 209423 kill_reason Another user logged on this global unique id 209423 mac 209423 bytes_out 0 209423 bytes_in 0 209423 station_ip 37.129.62.211 209423 port 25 209423 unique_id port 209431 username barzegar 209431 mac 209431 bytes_out 0 209431 bytes_in 0 209431 station_ip 5.119.161.34 209431 port 30 209431 unique_id port 209431 remote_ip 10.8.0.34 209437 username aminvpn 209437 kill_reason Another user logged on this global unique id 209437 mac 209437 bytes_out 0 209437 bytes_in 0 209437 station_ip 5.119.44.118 209437 port 15 209437 unique_id port 209439 username pourshad 209439 mac 209439 bytes_out 99495 209439 bytes_in 655795 209439 station_ip 5.119.178.195 209439 port 23 209439 unique_id port 209439 remote_ip 10.8.1.10 209440 username yaghobi 209440 kill_reason Another user logged on this global unique id 209440 mac 209440 bytes_out 0 209440 bytes_in 0 209440 station_ip 83.123.144.189 209440 port 30 209440 unique_id port 209440 remote_ip 10.8.0.106 209441 username pourshad 209441 mac 209441 bytes_out 124425 209441 bytes_in 548191 209441 station_ip 5.119.178.195 209441 port 22 209441 unique_id port 209441 remote_ip 10.8.1.10 209442 username fezealinaghi 209442 mac 209442 bytes_out 0 209442 bytes_in 0 209442 station_ip 37.129.62.211 209442 port 25 209442 unique_id port 209445 username khalili2 209445 kill_reason Another user logged on this global unique id 209445 mac 209445 bytes_out 0 209445 bytes_in 0 209445 station_ip 5.119.60.2 209445 port 31 209445 unique_id port 209445 remote_ip 10.8.0.78 209448 username mosavi0713 209448 mac 209448 bytes_out 0 209448 bytes_in 0 209448 station_ip 37.129.179.207 209448 port 32 209448 unique_id port 209448 remote_ip 10.8.0.22 209449 username kamali3 209449 mac 209449 bytes_out 0 209449 bytes_in 0 209412 mac 209412 bytes_out 0 209412 bytes_in 0 209412 station_ip 37.129.98.124 209412 port 9 209412 unique_id port 209412 remote_ip 10.8.0.138 209418 username sekonji0496 209418 mac 209418 bytes_out 1163495 209418 bytes_in 10253237 209418 station_ip 83.123.84.56 209418 port 15 209418 unique_id port 209418 remote_ip 10.8.0.70 209419 username barzegar 209419 mac 209419 bytes_out 0 209419 bytes_in 0 209419 station_ip 5.119.161.34 209419 port 3 209419 unique_id port 209419 remote_ip 10.8.1.30 209422 username pourshad 209422 mac 209422 bytes_out 0 209422 bytes_in 0 209422 station_ip 5.119.178.195 209422 port 4 209422 unique_id port 209422 remote_ip 10.8.0.122 209425 username aminvpn 209425 kill_reason Another user logged on this global unique id 209425 mac 209425 bytes_out 0 209425 bytes_in 0 209425 station_ip 5.119.44.118 209425 port 15 209425 unique_id port 209425 remote_ip 10.8.0.58 209426 username khalili2 209426 mac 209426 bytes_out 0 209426 bytes_in 0 209426 station_ip 5.119.60.2 209426 port 30 209426 unique_id port 209427 username pourshad 209427 mac 209427 bytes_out 0 209427 bytes_in 0 209427 station_ip 5.119.178.195 209427 port 4 209427 unique_id port 209427 remote_ip 10.8.0.122 209429 username soleymani5056 209429 mac 209429 bytes_out 0 209429 bytes_in 0 209429 station_ip 5.119.57.22 209429 port 4 209429 unique_id port 209429 remote_ip 10.8.0.246 209432 username aminvpn 209432 kill_reason Another user logged on this global unique id 209432 mac 209432 bytes_out 0 209432 bytes_in 0 209432 station_ip 5.119.44.118 209432 port 15 209432 unique_id port 209433 username sabaghnezhad 209433 mac 209433 bytes_out 50620 209433 bytes_in 50985 209433 station_ip 83.123.0.209 209433 port 3 209433 unique_id port 209433 remote_ip 10.8.1.46 209444 username barzegar 209444 mac 209444 bytes_out 0 209444 bytes_in 0 209444 station_ip 5.119.161.34 209444 port 33 209444 unique_id port 209444 remote_ip 10.8.0.34 209450 username yaghobi 209450 kill_reason Another user logged on this global unique id 209450 mac 209450 bytes_out 0 209450 bytes_in 0 209450 station_ip 83.123.144.189 209450 port 30 209450 unique_id port 209451 username motamedi9772 209451 kill_reason Another user logged on this global unique id 209451 mac 209451 bytes_out 0 209451 bytes_in 0 209451 station_ip 83.123.5.216 209451 port 29 209451 unique_id port 209453 username hatami 209453 mac 209453 bytes_out 0 209453 bytes_in 0 209453 station_ip 151.235.80.95 209453 port 28 209453 unique_id port 209453 remote_ip 10.8.0.14 209456 username kamali3 209456 mac 209456 bytes_out 12747 209456 bytes_in 29666 209456 station_ip 83.122.220.34 209456 port 3 209456 unique_id port 209456 remote_ip 10.8.1.206 209460 username mehrpoyan101 209460 mac 209460 bytes_out 0 209460 bytes_in 0 209460 station_ip 5.120.118.115 209460 port 33 209460 unique_id port 209460 remote_ip 10.8.0.134 209461 username sekonji0496 209461 mac 209461 bytes_out 0 209461 bytes_in 0 209461 station_ip 83.123.84.56 209461 port 9 209461 unique_id port 209465 username aminvpn 209465 kill_reason Another user logged on this global unique id 209465 mac 209465 bytes_out 0 209465 bytes_in 0 209465 station_ip 5.119.44.118 209465 port 15 209465 unique_id port 209467 username kamali3 209467 mac 209467 bytes_out 0 209467 bytes_in 0 209467 station_ip 83.122.220.34 209467 port 3 209467 unique_id port 209467 remote_ip 10.8.1.206 209470 username mostafa_es78 209470 mac 209470 bytes_out 0 209470 bytes_in 0 209430 remote_ip 10.8.1.206 209434 username mostafa_es78 209434 mac 209434 bytes_out 0 209434 bytes_in 0 209434 station_ip 83.122.211.147 209434 port 11 209434 unique_id port 209434 remote_ip 10.8.0.42 209435 username sekonji0496 209435 kill_reason Another user logged on this global unique id 209435 mac 209435 bytes_out 0 209435 bytes_in 0 209435 station_ip 83.123.84.56 209435 port 9 209435 unique_id port 209435 remote_ip 10.8.0.70 209436 username kamali3 209436 mac 209436 bytes_out 57583 209436 bytes_in 102241 209436 station_ip 83.122.220.34 209436 port 22 209436 unique_id port 209436 remote_ip 10.8.1.206 209438 username barzegar 209438 mac 209438 bytes_out 0 209438 bytes_in 0 209438 station_ip 5.119.161.34 209438 port 32 209438 unique_id port 209438 remote_ip 10.8.0.34 209443 username aminvpn 209443 kill_reason Another user logged on this global unique id 209443 mac 209443 bytes_out 0 209443 bytes_in 0 209443 station_ip 5.119.44.118 209443 port 15 209443 unique_id port 209446 username khademi 209446 kill_reason Another user logged on this global unique id 209446 mac 209446 bytes_out 0 209446 bytes_in 0 209446 station_ip 37.129.40.116 209446 port 19 209446 unique_id port 209446 remote_ip 10.8.0.26 209447 username pourshad 209447 mac 209447 bytes_out 47638 209447 bytes_in 59452 209447 station_ip 5.119.178.195 209447 port 22 209447 unique_id port 209447 remote_ip 10.8.1.10 209452 username kalantary6037 209452 mac 209452 bytes_out 0 209452 bytes_in 0 209452 station_ip 83.122.51.187 209452 port 22 209452 unique_id port 209452 remote_ip 10.8.1.98 209454 username sekonji0496 209454 kill_reason Another user logged on this global unique id 209454 mac 209454 bytes_out 0 209454 bytes_in 0 209454 station_ip 83.123.84.56 209454 port 9 209454 unique_id port 209455 username khalili2 209455 mac 209455 bytes_out 0 209455 bytes_in 0 209455 station_ip 5.119.60.2 209455 port 31 209455 unique_id port 209458 username aminvpn 209458 kill_reason Another user logged on this global unique id 209458 mac 209458 bytes_out 0 209458 bytes_in 0 209458 station_ip 5.119.44.118 209458 port 15 209458 unique_id port 209459 username mehrpoyan101 209459 mac 209459 bytes_out 0 209459 bytes_in 0 209459 station_ip 5.120.118.115 209459 port 32 209459 unique_id port 209459 remote_ip 10.8.0.134 209462 username barzegar 209462 mac 209462 bytes_out 0 209462 bytes_in 0 209462 station_ip 5.119.161.34 209462 port 22 209462 unique_id port 209462 remote_ip 10.8.1.30 209464 username mehrpoyan101 209464 mac 209464 bytes_out 0 209464 bytes_in 0 209464 station_ip 5.120.118.115 209464 port 34 209464 unique_id port 209464 remote_ip 10.8.0.134 209466 username khalili2 209466 kill_reason Another user logged on this global unique id 209466 mac 209466 bytes_out 0 209466 bytes_in 0 209466 station_ip 5.120.68.137 209466 port 28 209466 unique_id port 209466 remote_ip 10.8.0.78 209469 username barzegar 209469 mac 209469 bytes_out 0 209469 bytes_in 0 209469 station_ip 5.119.161.34 209469 port 4 209469 unique_id port 209469 remote_ip 10.8.0.34 209471 username yaghobi 209471 mac 209471 bytes_out 0 209471 bytes_in 0 209471 station_ip 83.123.144.189 209471 port 30 209471 unique_id port 209477 username sekonji0496 209477 mac 209477 bytes_out 0 209477 bytes_in 0 209477 station_ip 83.123.84.56 209477 port 33 209477 unique_id port 209477 remote_ip 10.8.0.70 209479 username khalili2 209479 kill_reason Another user logged on this global unique id 209479 mac 209479 bytes_out 0 209479 bytes_in 0 209479 station_ip 5.120.68.137 209449 station_ip 83.122.220.34 209449 port 3 209449 unique_id port 209449 remote_ip 10.8.1.206 209457 username barzegar 209457 mac 209457 bytes_out 0 209457 bytes_in 0 209457 station_ip 5.119.161.34 209457 port 22 209457 unique_id port 209457 remote_ip 10.8.1.30 209463 username mohammadjavad 209463 mac 209463 bytes_out 0 209463 bytes_in 0 209463 station_ip 37.129.35.172 209463 port 4 209463 unique_id port 209463 remote_ip 10.8.0.138 209468 username motamedi9772 209468 mac 209468 bytes_out 0 209468 bytes_in 0 209468 station_ip 83.123.5.216 209468 port 29 209468 unique_id port 209473 username soleymani5056 209473 mac 209473 bytes_out 0 209473 bytes_in 0 209473 station_ip 5.120.100.246 209473 port 4 209473 unique_id port 209473 remote_ip 10.8.0.246 209478 username soleymani5056 209478 mac 209478 bytes_out 134731 209478 bytes_in 565813 209478 station_ip 5.120.26.109 209478 port 25 209478 unique_id port 209478 remote_ip 10.8.0.246 209480 username yaghobi 209480 kill_reason Another user logged on this global unique id 209480 mac 209480 bytes_out 0 209480 bytes_in 0 209480 station_ip 83.123.145.116 209480 port 4 209480 unique_id port 209480 remote_ip 10.8.0.106 209482 username barzegar 209482 mac 209482 bytes_out 0 209482 bytes_in 0 209482 station_ip 5.119.161.34 209482 port 22 209482 unique_id port 209482 remote_ip 10.8.1.30 209483 username mostafa_es78 209483 mac 209483 bytes_out 0 209483 bytes_in 0 209483 station_ip 83.122.211.147 209483 port 29 209483 unique_id port 209483 remote_ip 10.8.0.42 209485 username godarzi 209485 mac 209485 bytes_out 5840364 209485 bytes_in 29504595 209485 station_ip 5.202.65.237 209485 port 21 209485 unique_id port 209485 remote_ip 10.8.1.66 209487 username tahmorsi 209487 mac 209487 bytes_out 384114 209487 bytes_in 1621294 209487 station_ip 86.57.50.225 209487 port 25 209487 unique_id port 209487 remote_ip 10.8.0.218 209489 username khademi 209489 kill_reason Another user logged on this global unique id 209489 mac 209489 bytes_out 0 209489 bytes_in 0 209489 station_ip 37.129.40.116 209489 port 19 209489 unique_id port 209494 username dortaj3792 209494 mac 209494 bytes_out 3968319 209494 bytes_in 8959060 209494 station_ip 5.119.186.148 209494 port 11 209494 unique_id port 209494 remote_ip 10.8.0.10 209495 username barzegar 209495 mac 209495 bytes_out 0 209495 bytes_in 0 209495 station_ip 5.119.161.34 209495 port 9 209495 unique_id port 209495 remote_ip 10.8.0.34 209497 username khademi 209497 kill_reason Another user logged on this global unique id 209497 mac 209497 bytes_out 0 209497 bytes_in 0 209497 station_ip 37.129.40.116 209497 port 19 209497 unique_id port 209500 username aminvpn 209500 kill_reason Another user logged on this global unique id 209500 mac 209500 bytes_out 0 209500 bytes_in 0 209500 station_ip 5.119.44.118 209500 port 15 209500 unique_id port 209505 username barzegar 209505 mac 209505 bytes_out 0 209505 bytes_in 0 209505 station_ip 5.119.161.34 209505 port 25 209505 unique_id port 209505 remote_ip 10.8.0.34 209507 username khademi 209507 kill_reason Another user logged on this global unique id 209507 mac 209507 bytes_out 0 209507 bytes_in 0 209507 station_ip 37.129.40.116 209507 port 19 209507 unique_id port 209508 username kamali3 209508 mac 209508 bytes_out 0 209508 bytes_in 0 209508 station_ip 83.122.220.34 209508 port 3 209508 unique_id port 209508 remote_ip 10.8.1.206 209510 username motamedi9772 209510 mac 209510 bytes_out 0 209510 bytes_in 0 209510 station_ip 83.123.122.200 209470 station_ip 83.122.211.147 209470 port 32 209470 unique_id port 209470 remote_ip 10.8.0.42 209472 username nekheei 209472 mac 209472 bytes_out 0 209472 bytes_in 0 209472 station_ip 5.120.149.132 209472 port 29 209472 unique_id port 209472 remote_ip 10.8.0.250 209474 username fezealinaghi 209474 mac 209474 bytes_out 0 209474 bytes_in 0 209474 station_ip 37.129.62.211 209474 port 25 209474 unique_id port 209474 remote_ip 10.8.0.234 209475 username aminvpn 209475 kill_reason Another user logged on this global unique id 209475 mac 209475 bytes_out 0 209475 bytes_in 0 209475 station_ip 5.119.44.118 209475 port 15 209475 unique_id port 209476 username barzegar 209476 mac 209476 bytes_out 0 209476 bytes_in 0 209476 station_ip 5.119.161.34 209476 port 30 209476 unique_id port 209476 remote_ip 10.8.0.34 209481 username aminvpn 209481 kill_reason Another user logged on this global unique id 209481 mac 209481 bytes_out 0 209481 bytes_in 0 209481 station_ip 5.119.44.118 209481 port 15 209481 unique_id port 209486 username yaghobi 209486 mac 209486 bytes_out 0 209486 bytes_in 0 209486 station_ip 83.123.145.116 209486 port 4 209486 unique_id port 209490 username kamali3 209490 mac 209490 bytes_out 0 209490 bytes_in 0 209490 station_ip 83.122.220.34 209490 port 3 209490 unique_id port 209490 remote_ip 10.8.1.206 209492 username khalili2 209492 kill_reason Another user logged on this global unique id 209492 mac 209492 bytes_out 0 209492 bytes_in 0 209492 station_ip 5.120.68.137 209492 port 28 209492 unique_id port 209493 username aminvpn 209493 kill_reason Another user logged on this global unique id 209493 mac 209493 bytes_out 0 209493 bytes_in 0 209493 station_ip 5.119.44.118 209493 port 15 209493 unique_id port 209498 username pourshad 209498 mac 209498 bytes_out 0 209498 bytes_in 0 209498 station_ip 5.119.178.195 209498 port 9 209498 unique_id port 209498 remote_ip 10.8.0.122 209499 username pourshad 209499 mac 209499 bytes_out 11225 209499 bytes_in 10207 209499 station_ip 5.119.178.195 209499 port 25 209499 unique_id port 209499 remote_ip 10.8.0.122 209501 username motamedi9772 209501 kill_reason Another user logged on this global unique id 209501 mac 209501 bytes_out 0 209501 bytes_in 0 209501 station_ip 83.123.122.200 209501 port 4 209501 unique_id port 209501 remote_ip 10.8.0.86 209503 username motamedi9772 209503 mac 209503 bytes_out 0 209503 bytes_in 0 209503 station_ip 83.123.122.200 209503 port 4 209503 unique_id port 209504 username barzegar 209504 mac 209504 bytes_out 6726 209504 bytes_in 12375 209504 station_ip 5.119.161.34 209504 port 25 209504 unique_id port 209504 remote_ip 10.8.0.34 209506 username motamedi9772 209506 mac 209506 bytes_out 0 209506 bytes_in 0 209506 station_ip 83.123.122.200 209506 port 31 209506 unique_id port 209506 remote_ip 10.8.0.86 209511 username motamedi9772 209511 mac 209511 bytes_out 0 209511 bytes_in 0 209511 station_ip 83.123.122.200 209511 port 21 209511 unique_id port 209511 remote_ip 10.8.1.182 209519 username motamedi9772 209519 mac 209519 bytes_out 1644 209519 bytes_in 5089 209519 station_ip 83.123.122.200 209519 port 31 209519 unique_id port 209519 remote_ip 10.8.0.86 209525 username godarzi 209525 mac 209525 bytes_out 0 209525 bytes_in 0 209525 station_ip 5.120.8.195 209525 port 9 209525 unique_id port 209525 remote_ip 10.8.0.74 209526 username motamedi9772 209526 mac 209526 bytes_out 0 209526 bytes_in 0 209526 station_ip 83.123.122.200 209526 port 22 209479 port 28 209479 unique_id port 209484 username pourshad 209484 kill_reason Another user logged on this global unique id 209484 mac 209484 bytes_out 0 209484 bytes_in 0 209484 station_ip 5.119.178.195 209484 port 31 209484 unique_id port 209484 remote_ip 10.8.0.122 209488 username hosseine 209488 mac 209488 bytes_out 3745319 209488 bytes_in 18477999 209488 station_ip 37.129.224.116 209488 port 9 209488 unique_id port 209488 remote_ip 10.8.0.126 209491 username barzegar 209491 mac 209491 bytes_out 0 209491 bytes_in 0 209491 station_ip 5.119.161.34 209491 port 9 209491 unique_id port 209491 remote_ip 10.8.0.34 209496 username pourshad 209496 mac 209496 bytes_out 0 209496 bytes_in 0 209496 station_ip 5.119.178.195 209496 port 31 209496 unique_id port 209502 username esmaeili1522 209502 mac 209502 bytes_out 0 209502 bytes_in 0 209502 station_ip 5.120.50.188 209502 port 25 209502 unique_id port 209502 remote_ip 10.8.0.190 209509 username rajaei 209509 mac 209509 bytes_out 207283 209509 bytes_in 870882 209509 station_ip 37.156.54.91 209509 port 4 209509 unique_id port 209509 remote_ip 10.8.0.90 209512 username sabaghnezhad 209512 mac 209512 bytes_out 129657 209512 bytes_in 546113 209512 station_ip 37.129.161.108 209512 port 11 209512 unique_id port 209512 remote_ip 10.8.0.94 209514 username barzegar 209514 mac 209514 bytes_out 0 209514 bytes_in 0 209514 station_ip 5.119.161.34 209514 port 11 209514 unique_id port 209514 remote_ip 10.8.0.34 209515 username motamedi9772 209515 mac 209515 bytes_out 16383 209515 bytes_in 24723 209515 station_ip 83.123.122.200 209515 port 31 209515 unique_id port 209515 remote_ip 10.8.0.86 209517 username motamedi9772 209517 mac 209517 bytes_out 0 209517 bytes_in 0 209517 station_ip 83.123.122.200 209517 port 21 209517 unique_id port 209517 remote_ip 10.8.1.182 209520 username motamedi9772 209520 mac 209520 bytes_out 0 209520 bytes_in 0 209520 station_ip 83.123.122.200 209520 port 21 209520 unique_id port 209520 remote_ip 10.8.1.182 209522 username motamedi9772 209522 mac 209522 bytes_out 0 209522 bytes_in 0 209522 station_ip 83.123.122.200 209522 port 25 209522 unique_id port 209522 remote_ip 10.8.0.86 209538 username barzegar 209538 kill_reason Maximum check online fails reached 209538 mac 209538 bytes_out 0 209538 bytes_in 0 209538 station_ip 5.119.161.34 209538 port 9 209538 unique_id port 209540 username motamedi9772 209540 mac 209540 bytes_out 0 209540 bytes_in 0 209540 station_ip 83.123.122.200 209540 port 22 209540 unique_id port 209540 remote_ip 10.8.1.182 209548 username aminvpnipad 209548 kill_reason Another user logged on this global unique id 209548 mac 209548 bytes_out 0 209548 bytes_in 0 209548 station_ip 5.119.61.34 209548 port 4 209548 unique_id port 209550 username motamedi9772 209550 mac 209550 bytes_out 0 209550 bytes_in 0 209550 station_ip 83.123.122.200 209550 port 22 209550 unique_id port 209550 remote_ip 10.8.1.182 209554 username motamedi9772 209554 mac 209554 bytes_out 0 209554 bytes_in 0 209554 station_ip 83.123.122.200 209554 port 11 209554 unique_id port 209554 remote_ip 10.8.0.86 209560 username khalili2 209560 mac 209560 bytes_out 0 209560 bytes_in 0 209560 station_ip 5.120.68.137 209560 port 25 209560 unique_id port 209560 remote_ip 10.8.0.78 209561 username daryaei1233 209561 kill_reason Maximum check online fails reached 209561 mac 209561 bytes_out 0 209561 bytes_in 0 209561 station_ip 83.123.184.34 209561 port 11 209561 unique_id port 209510 port 21 209510 unique_id port 209510 remote_ip 10.8.1.182 209513 username motamedi9772 209513 mac 209513 bytes_out 0 209513 bytes_in 0 209513 station_ip 83.123.122.200 209513 port 21 209513 unique_id port 209513 remote_ip 10.8.1.182 209516 username motamedi9772 209516 mac 209516 bytes_out 0 209516 bytes_in 0 209516 station_ip 83.123.122.200 209516 port 21 209516 unique_id port 209516 remote_ip 10.8.1.182 209518 username motamedi9772 209518 mac 209518 bytes_out 0 209518 bytes_in 0 209518 station_ip 83.123.122.200 209518 port 11 209518 unique_id port 209518 remote_ip 10.8.0.86 209521 username rajaei 209521 mac 209521 bytes_out 0 209521 bytes_in 0 209521 station_ip 37.156.54.91 209521 port 25 209521 unique_id port 209521 remote_ip 10.8.0.90 209523 username soleymani5056 209523 mac 209523 bytes_out 0 209523 bytes_in 0 209523 station_ip 5.119.166.115 209523 port 31 209523 unique_id port 209523 remote_ip 10.8.0.246 209524 username motamedi9772 209524 mac 209524 bytes_out 0 209524 bytes_in 0 209524 station_ip 83.123.122.200 209524 port 31 209524 unique_id port 209524 remote_ip 10.8.0.86 209528 username aminvpnipad 209528 kill_reason Another user logged on this global unique id 209528 mac 209528 bytes_out 0 209528 bytes_in 0 209528 station_ip 5.119.61.34 209528 port 4 209528 unique_id port 209528 remote_ip 10.8.0.202 209531 username motamedi9772 209531 mac 209531 bytes_out 0 209531 bytes_in 0 209531 station_ip 83.123.122.200 209531 port 9 209531 unique_id port 209531 remote_ip 10.8.0.86 209532 username aminvpn 209532 kill_reason Another user logged on this global unique id 209532 mac 209532 bytes_out 0 209532 bytes_in 0 209532 station_ip 5.119.44.118 209532 port 15 209532 unique_id port 209535 username barzegar 209535 mac 209535 bytes_out 0 209535 bytes_in 0 209535 station_ip 5.119.161.34 209535 port 22 209535 unique_id port 209535 remote_ip 10.8.1.30 209536 username khalili2 209536 mac 209536 bytes_out 0 209536 bytes_in 0 209536 station_ip 5.120.68.137 209536 port 28 209536 unique_id port 209537 username iranmanesh4443 209537 mac 209537 bytes_out 0 209537 bytes_in 0 209537 station_ip 5.120.68.241 209537 port 25 209537 unique_id port 209537 remote_ip 10.8.0.198 209543 username mostafa_es78 209543 mac 209543 bytes_out 0 209543 bytes_in 0 209543 station_ip 83.122.211.147 209543 port 29 209543 unique_id port 209543 remote_ip 10.8.0.42 209544 username motamedi9772 209544 mac 209544 bytes_out 0 209544 bytes_in 0 209544 station_ip 83.123.122.200 209544 port 22 209544 unique_id port 209544 remote_ip 10.8.1.182 209547 username rahim 209547 mac 209547 bytes_out 0 209547 bytes_in 0 209547 station_ip 5.120.155.210 209547 port 11 209547 unique_id port 209549 username daryaei1233 209549 mac 209549 bytes_out 0 209549 bytes_in 0 209549 station_ip 83.123.184.34 209549 port 31 209549 unique_id port 209549 remote_ip 10.8.0.6 209559 username mohammadjavad 209559 mac 209559 bytes_out 244374 209559 bytes_in 1011970 209559 station_ip 37.129.69.12 209559 port 11 209559 unique_id port 209559 remote_ip 10.8.0.138 209571 username barzegar 209571 mac 209571 bytes_out 0 209571 bytes_in 0 209571 station_ip 5.119.161.34 209571 port 27 209571 unique_id port 209571 remote_ip 10.8.1.30 209577 username daryaei1233 209577 mac 209577 bytes_out 0 209577 bytes_in 0 209577 station_ip 83.123.184.34 209577 port 29 209577 unique_id port 209577 remote_ip 10.8.0.6 209581 username daryaei1233 209581 mac 209526 unique_id port 209526 remote_ip 10.8.1.182 209527 username motamedi9772 209527 mac 209527 bytes_out 0 209527 bytes_in 0 209527 station_ip 83.123.122.200 209527 port 9 209527 unique_id port 209527 remote_ip 10.8.0.86 209529 username barzegar 209529 kill_reason Maximum check online fails reached 209529 mac 209529 bytes_out 0 209529 bytes_in 0 209529 station_ip 5.119.161.34 209529 port 21 209529 unique_id port 209530 username motamedi9772 209530 mac 209530 bytes_out 0 209530 bytes_in 0 209530 station_ip 83.123.122.200 209530 port 9 209530 unique_id port 209530 remote_ip 10.8.0.86 209533 username barzegar 209533 mac 209533 bytes_out 0 209533 bytes_in 0 209533 station_ip 5.119.161.34 209533 port 31 209533 unique_id port 209533 remote_ip 10.8.0.34 209534 username motamedi9772 209534 mac 209534 bytes_out 0 209534 bytes_in 0 209534 station_ip 83.123.122.200 209534 port 9 209534 unique_id port 209534 remote_ip 10.8.0.86 209539 username rahim 209539 kill_reason Another user logged on this global unique id 209539 mac 209539 bytes_out 0 209539 bytes_in 0 209539 station_ip 5.120.155.210 209539 port 11 209539 unique_id port 209539 remote_ip 10.8.0.146 209541 username motamedi9772 209541 mac 209541 bytes_out 0 209541 bytes_in 0 209541 station_ip 83.123.122.200 209541 port 28 209541 unique_id port 209541 remote_ip 10.8.0.86 209542 username motamedi9772 209542 mac 209542 bytes_out 0 209542 bytes_in 0 209542 station_ip 83.123.122.200 209542 port 22 209542 unique_id port 209542 remote_ip 10.8.1.182 209545 username motamedi9772 209545 mac 209545 bytes_out 0 209545 bytes_in 0 209545 station_ip 83.123.122.200 209545 port 29 209545 unique_id port 209545 remote_ip 10.8.0.86 209546 username barzegar 209546 mac 209546 bytes_out 0 209546 bytes_in 0 209546 station_ip 5.119.161.34 209546 port 22 209546 unique_id port 209546 remote_ip 10.8.1.30 209551 username daryaei1233 209551 mac 209551 bytes_out 0 209551 bytes_in 0 209551 station_ip 83.123.184.34 209551 port 22 209551 unique_id port 209551 remote_ip 10.8.1.14 209552 username daryaei1233 209552 mac 209552 bytes_out 0 209552 bytes_in 0 209552 station_ip 83.123.184.34 209552 port 29 209552 unique_id port 209552 remote_ip 10.8.0.6 209553 username daryaei1233 209553 mac 209553 bytes_out 0 209553 bytes_in 0 209553 station_ip 83.123.184.34 209553 port 31 209553 unique_id port 209553 remote_ip 10.8.0.6 209555 username aminvpn 209555 mac 209555 bytes_out 0 209555 bytes_in 0 209555 station_ip 5.119.44.118 209555 port 15 209555 unique_id port 209556 username daryaei1233 209556 mac 209556 bytes_out 0 209556 bytes_in 0 209556 station_ip 83.123.184.34 209556 port 15 209556 unique_id port 209556 remote_ip 10.8.0.6 209557 username aminvpnipad 209557 mac 209557 bytes_out 0 209557 bytes_in 0 209557 station_ip 5.119.61.34 209557 port 4 209557 unique_id port 209558 username barzegar 209558 mac 209558 bytes_out 0 209558 bytes_in 0 209558 station_ip 5.119.161.34 209558 port 4 209558 unique_id port 209558 remote_ip 10.8.0.34 209562 username pourshad 209562 kill_reason Another user logged on this global unique id 209562 mac 209562 bytes_out 0 209562 bytes_in 0 209562 station_ip 5.120.252.82 209562 port 23 209562 unique_id port 209562 remote_ip 10.8.1.10 209563 username daryaei1233 209563 mac 209563 bytes_out 0 209563 bytes_in 0 209563 station_ip 83.123.184.34 209563 port 25 209563 unique_id port 209563 remote_ip 10.8.0.6 209564 username barzegar 209564 mac 209564 bytes_out 0 209564 bytes_in 0 209564 station_ip 5.119.161.34 209564 port 24 209564 unique_id port 209564 remote_ip 10.8.1.30 209565 username mohammadjavad 209565 mac 209565 bytes_out 0 209565 bytes_in 0 209565 station_ip 37.129.1.12 209565 port 15 209565 unique_id port 209565 remote_ip 10.8.0.138 209566 username mostafa_es78 209566 mac 209566 bytes_out 0 209566 bytes_in 0 209566 station_ip 83.122.211.147 209566 port 29 209566 unique_id port 209566 remote_ip 10.8.0.42 209568 username sekonji0496 209568 mac 209568 bytes_out 2124620 209568 bytes_in 20086583 209568 station_ip 83.123.84.56 209568 port 30 209568 unique_id port 209568 remote_ip 10.8.0.70 209569 username heydary4246 209569 kill_reason Another user logged on this global unique id 209569 mac 209569 bytes_out 0 209569 bytes_in 0 209569 station_ip 83.122.151.250 209569 port 27 209569 unique_id port 209569 remote_ip 10.8.0.226 209575 username motamedi9772 209575 mac 209575 bytes_out 3487153 209575 bytes_in 38408906 209575 station_ip 83.123.122.200 209575 port 22 209575 unique_id port 209575 remote_ip 10.8.1.182 209576 username daryaei1233 209576 mac 209576 bytes_out 0 209576 bytes_in 0 209576 station_ip 83.123.184.34 209576 port 25 209576 unique_id port 209576 remote_ip 10.8.0.6 209578 username pourshad 209578 kill_reason Another user logged on this global unique id 209578 mac 209578 bytes_out 0 209578 bytes_in 0 209578 station_ip 5.120.252.82 209578 port 23 209578 unique_id port 209579 username daryaei1233 209579 mac 209579 bytes_out 27830 209579 bytes_in 55676 209579 station_ip 83.123.184.34 209579 port 25 209579 unique_id port 209579 remote_ip 10.8.0.6 209582 username mehrpoyan101 209582 mac 209582 bytes_out 286920 209582 bytes_in 1915424 209582 station_ip 5.120.189.149 209582 port 29 209582 unique_id port 209582 remote_ip 10.8.0.134 209583 username khalili2 209583 mac 209583 bytes_out 0 209583 bytes_in 0 209583 station_ip 5.120.68.137 209583 port 4 209583 unique_id port 209584 username barzegar 209584 mac 209584 bytes_out 0 209584 bytes_in 0 209584 station_ip 5.119.161.34 209584 port 22 209584 unique_id port 209584 remote_ip 10.8.1.30 209587 username yaghobi 209587 mac 209587 bytes_out 0 209587 bytes_in 0 209587 station_ip 83.123.163.4 209587 port 29 209587 unique_id port 209587 remote_ip 10.8.0.106 209590 username yaghobi 209590 mac 209590 bytes_out 0 209590 bytes_in 0 209590 station_ip 83.123.163.4 209590 port 30 209590 unique_id port 209590 remote_ip 10.8.0.106 209591 username daryaei1233 209591 mac 209591 bytes_out 0 209591 bytes_in 0 209591 station_ip 83.123.184.34 209591 port 22 209591 unique_id port 209591 remote_ip 10.8.1.14 209593 username daryaei1233 209593 mac 209593 bytes_out 0 209593 bytes_in 0 209593 station_ip 83.123.184.34 209593 port 4 209593 unique_id port 209593 remote_ip 10.8.0.6 209603 username barzegar 209603 mac 209603 bytes_out 0 209603 bytes_in 0 209603 station_ip 5.119.161.34 209603 port 22 209603 unique_id port 209603 remote_ip 10.8.1.30 209604 username soleymani5056 209604 mac 209604 bytes_out 0 209604 bytes_in 0 209604 station_ip 5.119.17.221 209604 port 4 209604 unique_id port 209604 remote_ip 10.8.0.246 209605 username pourshad 209605 kill_reason Another user logged on this global unique id 209605 mac 209605 bytes_out 0 209605 bytes_in 0 209605 station_ip 5.120.252.82 209605 port 23 209605 unique_id port 209607 username barzegar 209607 mac 209607 bytes_out 0 209567 username khalili2 209567 kill_reason Another user logged on this global unique id 209567 mac 209567 bytes_out 0 209567 bytes_in 0 209567 station_ip 5.120.68.137 209567 port 4 209567 unique_id port 209567 remote_ip 10.8.0.78 209570 username godarzi 209570 kill_reason Another user logged on this global unique id 209570 mac 209570 bytes_out 0 209570 bytes_in 0 209570 station_ip 5.120.8.195 209570 port 28 209570 unique_id port 209570 remote_ip 10.8.0.74 209572 username meysam 209572 kill_reason Another user logged on this global unique id 209572 mac 209572 bytes_out 0 209572 bytes_in 0 209572 station_ip 188.158.48.21 209572 port 24 209572 unique_id port 209572 remote_ip 10.8.1.6 209573 username daryaei1233 209573 mac 209573 bytes_out 485472 209573 bytes_in 2702462 209573 station_ip 83.123.184.34 209573 port 28 209573 unique_id port 209573 remote_ip 10.8.1.14 209574 username daryaei1233 209574 mac 209574 bytes_out 0 209574 bytes_in 0 209574 station_ip 83.123.184.34 209574 port 25 209574 unique_id port 209574 remote_ip 10.8.0.6 209580 username daryaei1233 209580 mac 209580 bytes_out 0 209580 bytes_in 0 209580 station_ip 83.123.184.34 209580 port 30 209580 unique_id port 209580 remote_ip 10.8.0.6 209585 username daryaei1233 209585 mac 209585 bytes_out 0 209585 bytes_in 0 209585 station_ip 83.123.184.34 209585 port 29 209585 unique_id port 209585 remote_ip 10.8.0.6 209586 username daryaei1233 209586 mac 209586 bytes_out 0 209586 bytes_in 0 209586 station_ip 83.123.184.34 209586 port 4 209586 unique_id port 209586 remote_ip 10.8.0.6 209595 username daryaei1233 209595 mac 209595 bytes_out 0 209595 bytes_in 0 209595 station_ip 83.123.184.34 209595 port 25 209595 unique_id port 209595 remote_ip 10.8.0.6 209596 username barzegar 209596 mac 209596 bytes_out 0 209596 bytes_in 0 209596 station_ip 5.119.161.34 209596 port 22 209596 unique_id port 209596 remote_ip 10.8.1.30 209598 username pourshad 209598 kill_reason Another user logged on this global unique id 209598 mac 209598 bytes_out 0 209598 bytes_in 0 209598 station_ip 5.120.252.82 209598 port 23 209598 unique_id port 209599 username barzegar 209599 mac 209599 bytes_out 0 209599 bytes_in 0 209599 station_ip 5.119.161.34 209599 port 25 209599 unique_id port 209599 remote_ip 10.8.0.34 209602 username pourshad 209602 kill_reason Another user logged on this global unique id 209602 mac 209602 bytes_out 0 209602 bytes_in 0 209602 station_ip 5.120.252.82 209602 port 23 209602 unique_id port 209606 username mosavi0713 209606 kill_reason Another user logged on this global unique id 209606 mac 209606 bytes_out 0 209606 bytes_in 0 209606 station_ip 37.129.211.167 209606 port 25 209606 unique_id port 209606 remote_ip 10.8.0.22 209608 username majidsarmast 209608 mac 209608 bytes_out 5454366 209608 bytes_in 1365092 209608 station_ip 83.122.118.35 209608 port 29 209608 unique_id port 209608 remote_ip 10.8.0.194 209609 username aminvpn 209609 mac 209609 bytes_out 0 209609 bytes_in 0 209609 station_ip 5.119.44.118 209609 port 4 209609 unique_id port 209609 remote_ip 10.8.0.58 209611 username barzegar 209611 mac 209611 bytes_out 0 209611 bytes_in 0 209611 station_ip 5.119.161.34 209611 port 4 209611 unique_id port 209611 remote_ip 10.8.0.34 209614 username mosavi0713 209614 kill_reason Another user logged on this global unique id 209614 mac 209614 bytes_out 0 209614 bytes_in 0 209614 station_ip 37.129.211.167 209614 port 25 209614 unique_id port 209615 username barzegar8595 209615 mac 209615 bytes_out 0 209615 bytes_in 0 209581 bytes_out 0 209581 bytes_in 0 209581 station_ip 83.123.184.34 209581 port 25 209581 unique_id port 209581 remote_ip 10.8.0.6 209588 username pourshad 209588 kill_reason Another user logged on this global unique id 209588 mac 209588 bytes_out 0 209588 bytes_in 0 209588 station_ip 5.120.252.82 209588 port 23 209588 unique_id port 209589 username mehrpoyan101 209589 mac 209589 bytes_out 0 209589 bytes_in 0 209589 station_ip 5.119.137.97 209589 port 25 209589 unique_id port 209589 remote_ip 10.8.0.134 209592 username daryaei1233 209592 mac 209592 bytes_out 0 209592 bytes_in 0 209592 station_ip 83.123.184.34 209592 port 4 209592 unique_id port 209592 remote_ip 10.8.0.6 209594 username meysam 209594 mac 209594 bytes_out 0 209594 bytes_in 0 209594 station_ip 188.158.48.21 209594 port 24 209594 unique_id port 209597 username yaghobi 209597 mac 209597 bytes_out 0 209597 bytes_in 0 209597 station_ip 83.123.163.4 209597 port 27 209597 unique_id port 209597 remote_ip 10.8.1.106 209600 username dortaj3792 209600 mac 209600 bytes_out 4839658 209600 bytes_in 14190813 209600 station_ip 5.119.186.148 209600 port 32 209600 unique_id port 209600 remote_ip 10.8.0.10 209601 username mosavi0713 209601 mac 209601 bytes_out 0 209601 bytes_in 0 209601 station_ip 37.129.211.167 209601 port 4 209601 unique_id port 209601 remote_ip 10.8.0.22 209612 username mirzaei6046 209612 kill_reason Another user logged on this global unique id 209612 mac 209612 bytes_out 0 209612 bytes_in 0 209612 station_ip 5.120.107.143 209612 port 24 209612 unique_id port 209616 username meysam 209616 kill_reason Another user logged on this global unique id 209616 mac 209616 bytes_out 0 209616 bytes_in 0 209616 station_ip 188.158.48.21 209616 port 22 209616 unique_id port 209616 remote_ip 10.8.1.6 209617 username mehrpoyan101 209617 kill_reason Maximum check online fails reached 209617 mac 209617 bytes_out 0 209617 bytes_in 0 209617 station_ip 5.120.4.151 209617 port 27 209617 unique_id port 209620 username meysam 209620 mac 209620 bytes_out 0 209620 bytes_in 0 209620 station_ip 188.158.48.21 209620 port 22 209620 unique_id port 209625 username mohammadjavad 209625 kill_reason Another user logged on this global unique id 209625 mac 209625 bytes_out 0 209625 bytes_in 0 209625 station_ip 37.129.70.160 209625 port 4 209625 unique_id port 209625 remote_ip 10.8.0.138 209636 username yaghobi 209636 mac 209636 bytes_out 239219 209636 bytes_in 845153 209636 station_ip 83.123.164.112 209636 port 22 209636 unique_id port 209636 remote_ip 10.8.1.106 209642 username mohammadjavad 209642 mac 209642 bytes_out 0 209642 bytes_in 0 209642 station_ip 37.129.70.160 209642 port 4 209642 unique_id port 209647 username mehrpoyan101 209647 mac 209647 bytes_out 323980 209647 bytes_in 2267238 209647 station_ip 5.120.170.96 209647 port 32 209647 unique_id port 209647 remote_ip 10.8.0.134 209651 username yarmohamadi7916 209651 kill_reason Another user logged on this global unique id 209651 mac 209651 bytes_out 0 209651 bytes_in 0 209651 station_ip 5.120.163.7 209651 port 15 209651 unique_id port 209651 remote_ip 10.8.0.214 209653 username kalantary6037 209653 mac 209653 bytes_out 1505990 209653 bytes_in 13711300 209653 station_ip 83.123.164.114 209653 port 22 209653 unique_id port 209653 remote_ip 10.8.1.98 209662 username morteza4424 209662 mac 209662 bytes_out 0 209662 bytes_in 0 209662 station_ip 37.129.153.152 209662 port 33 209662 unique_id port 209662 remote_ip 10.8.0.30 209664 username morteza4424 209664 mac 209607 bytes_in 0 209607 station_ip 5.119.161.34 209607 port 31 209607 unique_id port 209607 remote_ip 10.8.0.34 209610 username mosavi0713 209610 kill_reason Another user logged on this global unique id 209610 mac 209610 bytes_out 0 209610 bytes_in 0 209610 station_ip 37.129.211.167 209610 port 25 209610 unique_id port 209613 username barzegar 209613 mac 209613 bytes_out 0 209613 bytes_in 0 209613 station_ip 5.119.161.34 209613 port 4 209613 unique_id port 209613 remote_ip 10.8.0.34 209621 username mosavi0713 209621 mac 209621 bytes_out 0 209621 bytes_in 0 209621 station_ip 37.129.211.167 209621 port 25 209621 unique_id port 209621 remote_ip 10.8.0.22 209626 username kalantary6037 209626 mac 209626 bytes_out 1360558 209626 bytes_in 9667579 209626 station_ip 83.122.64.7 209626 port 24 209626 unique_id port 209626 remote_ip 10.8.1.98 209628 username meysam 209628 mac 209628 bytes_out 1471721 209628 bytes_in 27813777 209628 station_ip 188.158.48.21 209628 port 22 209628 unique_id port 209628 remote_ip 10.8.1.6 209629 username yaghobi 209629 mac 209629 bytes_out 0 209629 bytes_in 0 209629 station_ip 83.123.164.112 209629 port 31 209629 unique_id port 209629 remote_ip 10.8.0.106 209630 username barzegar 209630 mac 209630 bytes_out 0 209630 bytes_in 0 209630 station_ip 5.119.161.34 209630 port 24 209630 unique_id port 209630 remote_ip 10.8.1.30 209631 username mohammadjavad 209631 kill_reason Another user logged on this global unique id 209631 mac 209631 bytes_out 0 209631 bytes_in 0 209631 station_ip 37.129.70.160 209631 port 4 209631 unique_id port 209633 username kamali3 209633 mac 209633 bytes_out 1459371 209633 bytes_in 14767132 209633 station_ip 83.122.220.34 209633 port 3 209633 unique_id port 209633 remote_ip 10.8.1.206 209638 username farhad3 209638 kill_reason Another user logged on this global unique id 209638 mac 209638 bytes_out 0 209638 bytes_in 0 209638 station_ip 5.120.180.115 209638 port 30 209638 unique_id port 209638 remote_ip 10.8.0.98 209639 username kamali3 209639 mac 209639 bytes_out 52261 209639 bytes_in 95685 209639 station_ip 83.122.220.34 209639 port 3 209639 unique_id port 209639 remote_ip 10.8.1.206 209641 username heydary4246 209641 mac 209641 bytes_out 0 209641 bytes_in 0 209641 station_ip 83.122.151.250 209641 port 29 209641 unique_id port 209641 remote_ip 10.8.0.226 209643 username barzegar 209643 mac 209643 bytes_out 0 209643 bytes_in 0 209643 station_ip 5.119.161.34 209643 port 24 209643 unique_id port 209643 remote_ip 10.8.1.30 209646 username farhad3 209646 mac 209646 bytes_out 0 209646 bytes_in 0 209646 station_ip 5.120.68.117 209646 port 4 209646 unique_id port 209646 remote_ip 10.8.0.98 209650 username aminvpnpc 209650 mac 209650 bytes_out 356715 209650 bytes_in 1176788 209650 station_ip 5.119.61.34 209650 port 29 209650 unique_id port 209650 remote_ip 10.8.0.118 209652 username barzegar 209652 mac 209652 bytes_out 0 209652 bytes_in 0 209652 station_ip 5.119.161.34 209652 port 32 209652 unique_id port 209652 remote_ip 10.8.0.34 209654 username mehrpoyan101 209654 mac 209654 bytes_out 0 209654 bytes_in 0 209654 station_ip 5.119.174.57 209654 port 4 209654 unique_id port 209654 remote_ip 10.8.0.134 209655 username khalili2 209655 mac 209655 bytes_out 0 209655 bytes_in 0 209655 station_ip 5.120.68.137 209655 port 31 209655 unique_id port 209655 remote_ip 10.8.0.78 209657 username morteza4424 209657 mac 209657 bytes_out 0 209657 bytes_in 0 209615 station_ip 46.225.209.122 209615 port 27 209615 unique_id port 209615 remote_ip 10.8.0.170 209618 username mosavi0713 209618 mac 209618 bytes_out 0 209618 bytes_in 0 209618 station_ip 37.129.211.167 209618 port 25 209618 unique_id port 209619 username mosavi0713 209619 mac 209619 bytes_out 0 209619 bytes_in 0 209619 station_ip 37.129.211.167 209619 port 25 209619 unique_id port 209619 remote_ip 10.8.0.22 209622 username barzegar 209622 mac 209622 bytes_out 0 209622 bytes_in 0 209622 station_ip 5.119.161.34 209622 port 22 209622 unique_id port 209622 remote_ip 10.8.1.30 209623 username khademi 209623 kill_reason Another user logged on this global unique id 209623 mac 209623 bytes_out 0 209623 bytes_in 0 209623 station_ip 37.129.40.116 209623 port 19 209623 unique_id port 209624 username mehrpoyan101 209624 mac 209624 bytes_out 0 209624 bytes_in 0 209624 station_ip 5.120.4.151 209624 port 32 209624 unique_id port 209624 remote_ip 10.8.0.134 209627 username mehrpoyan101 209627 mac 209627 bytes_out 0 209627 bytes_in 0 209627 station_ip 5.120.4.151 209627 port 33 209627 unique_id port 209627 remote_ip 10.8.0.134 209632 username mehrpoyan101 209632 mac 209632 bytes_out 0 209632 bytes_in 0 209632 station_ip 5.119.248.21 209632 port 32 209632 unique_id port 209632 remote_ip 10.8.0.134 209634 username barzegar8595 209634 mac 209634 bytes_out 0 209634 bytes_in 0 209634 station_ip 46.225.210.250 209634 port 25 209634 unique_id port 209634 remote_ip 10.8.0.170 209635 username mehrpoyan101 209635 mac 209635 bytes_out 0 209635 bytes_in 0 209635 station_ip 5.119.246.47 209635 port 34 209635 unique_id port 209635 remote_ip 10.8.0.134 209637 username heydary4246 209637 mac 209637 bytes_out 62623 209637 bytes_in 390194 209637 station_ip 83.122.151.250 209637 port 29 209637 unique_id port 209637 remote_ip 10.8.0.226 209640 username mehrpoyan101 209640 mac 209640 bytes_out 0 209640 bytes_in 0 209640 station_ip 5.119.78.140 209640 port 32 209640 unique_id port 209640 remote_ip 10.8.0.134 209644 username motamedi9772 209644 kill_reason Another user logged on this global unique id 209644 mac 209644 bytes_out 0 209644 bytes_in 0 209644 station_ip 83.123.72.132 209644 port 27 209644 unique_id port 209644 remote_ip 10.8.1.182 209645 username farhad3 209645 mac 209645 bytes_out 0 209645 bytes_in 0 209645 station_ip 5.120.180.115 209645 port 30 209645 unique_id port 209648 username morteza4424 209648 kill_reason Another user logged on this global unique id 209648 mac 209648 bytes_out 0 209648 bytes_in 0 209648 station_ip 37.129.153.152 209648 port 33 209648 unique_id port 209648 remote_ip 10.8.0.30 209649 username mehrpoyan101 209649 mac 209649 bytes_out 34018 209649 bytes_in 78521 209649 station_ip 5.119.174.57 209649 port 24 209649 unique_id port 209649 remote_ip 10.8.1.18 209656 username heydary4246 209656 mac 209656 bytes_out 0 209656 bytes_in 0 209656 station_ip 83.122.151.250 209656 port 34 209656 unique_id port 209656 remote_ip 10.8.0.226 209658 username morteza4424 209658 mac 209658 bytes_out 0 209658 bytes_in 0 209658 station_ip 37.129.153.152 209658 port 33 209658 unique_id port 209658 remote_ip 10.8.0.30 209663 username motamedi9772 209663 mac 209663 bytes_out 0 209663 bytes_in 0 209663 station_ip 83.123.72.132 209663 port 27 209663 unique_id port 209665 username mehrpoyan101 209665 mac 209665 bytes_out 0 209665 bytes_in 0 209665 station_ip 5.119.194.107 209665 port 32 209665 unique_id port 209657 station_ip 37.129.153.152 209657 port 33 209657 unique_id port 209659 username morteza4424 209659 mac 209659 bytes_out 0 209659 bytes_in 0 209659 station_ip 37.129.153.152 209659 port 33 209659 unique_id port 209659 remote_ip 10.8.0.30 209660 username yarmohamadi7916 209660 kill_reason Another user logged on this global unique id 209660 mac 209660 bytes_out 0 209660 bytes_in 0 209660 station_ip 5.120.163.7 209660 port 15 209660 unique_id port 209661 username morteza4424 209661 mac 209661 bytes_out 0 209661 bytes_in 0 209661 station_ip 37.129.153.152 209661 port 33 209661 unique_id port 209661 remote_ip 10.8.0.30 209666 username morteza4424 209666 mac 209666 bytes_out 0 209666 bytes_in 0 209666 station_ip 37.129.153.152 209666 port 32 209666 unique_id port 209666 remote_ip 10.8.0.30 209668 username morteza4424 209668 mac 209668 bytes_out 0 209668 bytes_in 0 209668 station_ip 37.129.153.152 209668 port 22 209668 unique_id port 209668 remote_ip 10.8.1.42 209672 username morteza4424 209672 mac 209672 bytes_out 0 209672 bytes_in 0 209672 station_ip 37.129.153.152 209672 port 33 209672 unique_id port 209672 remote_ip 10.8.0.30 209677 username yarmohamadi7916 209677 kill_reason Another user logged on this global unique id 209677 mac 209677 bytes_out 0 209677 bytes_in 0 209677 station_ip 5.120.163.7 209677 port 15 209677 unique_id port 209678 username mehrpoyan101 209678 mac 209678 bytes_out 14363 209678 bytes_in 14157 209678 station_ip 5.120.4.7 209678 port 24 209678 unique_id port 209678 remote_ip 10.8.1.18 209679 username mehrpoyan101 209679 mac 209679 bytes_out 0 209679 bytes_in 0 209679 station_ip 5.120.4.7 209679 port 24 209679 unique_id port 209679 remote_ip 10.8.1.18 209680 username morteza4424 209680 mac 209680 bytes_out 793309 209680 bytes_in 291559 209680 station_ip 37.129.153.152 209680 port 22 209680 unique_id port 209680 remote_ip 10.8.1.42 209681 username saeeddamghani 209681 mac 209681 bytes_out 0 209681 bytes_in 0 209681 station_ip 217.60.175.231 209681 port 4 209681 unique_id port 209681 remote_ip 10.8.0.162 209683 username saeeddamghani 209683 mac 209683 bytes_out 0 209683 bytes_in 0 209683 station_ip 217.60.175.231 209683 port 4 209683 unique_id port 209683 remote_ip 10.8.0.162 209684 username yarmohamadi7916 209684 kill_reason Another user logged on this global unique id 209684 mac 209684 bytes_out 0 209684 bytes_in 0 209684 station_ip 5.120.163.7 209684 port 15 209684 unique_id port 209688 username aminvpnpc 209688 mac 209688 bytes_out 0 209688 bytes_in 0 209688 station_ip 5.119.61.34 209688 port 29 209688 unique_id port 209688 remote_ip 10.8.0.118 209690 username mehrpoyan101 209690 mac 209690 bytes_out 0 209690 bytes_in 0 209690 station_ip 5.119.102.80 209690 port 36 209690 unique_id port 209690 remote_ip 10.8.0.134 209692 username fezealinaghi 209692 mac 209692 bytes_out 951757 209692 bytes_in 5810427 209692 station_ip 83.122.38.126 209692 port 37 209692 unique_id port 209692 remote_ip 10.8.0.234 209694 username farhad3 209694 kill_reason Another user logged on this global unique id 209694 mac 209694 bytes_out 0 209694 bytes_in 0 209694 station_ip 5.119.181.147 209694 port 34 209694 unique_id port 209694 remote_ip 10.8.0.98 209695 username barzegar 209695 mac 209695 bytes_out 0 209695 bytes_in 0 209695 station_ip 5.119.161.34 209695 port 32 209695 unique_id port 209695 remote_ip 10.8.0.34 209701 username farhad3 209701 mac 209701 bytes_out 0 209701 bytes_in 0 209701 station_ip 5.119.181.147 209664 bytes_out 0 209664 bytes_in 0 209664 station_ip 37.129.153.152 209664 port 33 209664 unique_id port 209664 remote_ip 10.8.0.30 209667 username barzegar8595 209667 mac 209667 bytes_out 0 209667 bytes_in 0 209667 station_ip 92.50.6.104 209667 port 34 209667 unique_id port 209667 remote_ip 10.8.0.170 209670 username mehrpoyan101 209670 mac 209670 bytes_out 0 209670 bytes_in 0 209670 station_ip 5.120.187.175 209670 port 33 209670 unique_id port 209670 remote_ip 10.8.0.134 209673 username morteza4424 209673 mac 209673 bytes_out 0 209673 bytes_in 0 209673 station_ip 37.129.153.152 209673 port 34 209673 unique_id port 209673 remote_ip 10.8.0.30 209682 username mehrpoyan101 209682 mac 209682 bytes_out 0 209682 bytes_in 0 209682 station_ip 5.120.4.7 209682 port 33 209682 unique_id port 209682 remote_ip 10.8.0.134 209685 username meysam 209685 mac 209685 bytes_out 0 209685 bytes_in 0 209685 station_ip 188.158.51.111 209685 port 24 209685 unique_id port 209685 remote_ip 10.8.1.6 209687 username barzegar 209687 mac 209687 bytes_out 0 209687 bytes_in 0 209687 station_ip 5.119.161.34 209687 port 4 209687 unique_id port 209687 remote_ip 10.8.0.34 209689 username soleymani5056 209689 mac 209689 bytes_out 0 209689 bytes_in 0 209689 station_ip 5.120.34.74 209689 port 33 209689 unique_id port 209689 remote_ip 10.8.0.246 209691 username mehrpoyan101 209691 mac 209691 bytes_out 81722 209691 bytes_in 103466 209691 station_ip 5.120.72.73 209691 port 33 209691 unique_id port 209691 remote_ip 10.8.0.134 209698 username mehrpoyan101 209698 mac 209698 bytes_out 0 209698 bytes_in 0 209698 station_ip 5.120.140.236 209698 port 32 209698 unique_id port 209698 remote_ip 10.8.0.134 209699 username dortaj3792 209699 mac 209699 bytes_out 0 209699 bytes_in 0 209699 station_ip 5.119.186.148 209699 port 25 209699 unique_id port 209699 remote_ip 10.8.0.10 209702 username mehrpoyan101 209702 mac 209702 bytes_out 0 209702 bytes_in 0 209702 station_ip 5.119.38.207 209702 port 36 209702 unique_id port 209702 remote_ip 10.8.0.134 209705 username aminvpnpc 209705 mac 209705 bytes_out 3594487 209705 bytes_in 27662266 209705 station_ip 5.119.61.34 209705 port 29 209705 unique_id port 209705 remote_ip 10.8.0.118 209707 username kamali3 209707 mac 209707 bytes_out 0 209707 bytes_in 0 209707 station_ip 83.122.220.34 209707 port 3 209707 unique_id port 209707 remote_ip 10.8.1.206 209708 username mehrpoyan101 209708 mac 209708 bytes_out 229820 209708 bytes_in 1685744 209708 station_ip 5.120.131.158 209708 port 32 209708 unique_id port 209708 remote_ip 10.8.0.134 209709 username pourshad 209709 kill_reason Another user logged on this global unique id 209709 mac 209709 bytes_out 0 209709 bytes_in 0 209709 station_ip 5.120.252.82 209709 port 23 209709 unique_id port 209710 username kalantary6037 209710 mac 209710 bytes_out 0 209710 bytes_in 0 209710 station_ip 37.129.139.23 209710 port 22 209710 unique_id port 209710 remote_ip 10.8.1.98 209714 username khademi 209714 mac 209714 bytes_out 0 209714 bytes_in 0 209714 station_ip 37.129.40.116 209714 port 19 209714 unique_id port 209717 username saeeddamghani 209717 mac 209717 bytes_out 0 209717 bytes_in 0 209717 station_ip 217.60.175.231 209717 port 27 209717 unique_id port 209717 remote_ip 10.8.1.130 209719 username aminvpn2 209719 kill_reason Another user logged on this global unique id 209719 mac 209719 bytes_out 0 209719 bytes_in 0 209719 station_ip 5.119.61.34 209665 remote_ip 10.8.0.134 209669 username morteza4424 209669 mac 209669 bytes_out 0 209669 bytes_in 0 209669 station_ip 37.129.153.152 209669 port 22 209669 unique_id port 209669 remote_ip 10.8.1.42 209671 username morteza4424 209671 mac 209671 bytes_out 0 209671 bytes_in 0 209671 station_ip 37.129.153.152 209671 port 34 209671 unique_id port 209671 remote_ip 10.8.0.30 209674 username teymori5660 209674 mac 209674 bytes_out 0 209674 bytes_in 0 209674 station_ip 5.120.100.108 209674 port 4 209674 unique_id port 209674 remote_ip 10.8.0.230 209675 username barzegar 209675 mac 209675 bytes_out 0 209675 bytes_in 0 209675 station_ip 5.119.161.34 209675 port 27 209675 unique_id port 209675 remote_ip 10.8.1.30 209676 username morteza4424 209676 mac 209676 bytes_out 13205 209676 bytes_in 23950 209676 station_ip 37.129.153.152 209676 port 22 209676 unique_id port 209676 remote_ip 10.8.1.42 209686 username kalantary6037 209686 mac 209686 bytes_out 28252 209686 bytes_in 37586 209686 station_ip 83.122.6.135 209686 port 22 209686 unique_id port 209686 remote_ip 10.8.1.98 209693 username barzegar8595 209693 mac 209693 bytes_out 0 209693 bytes_in 0 209693 station_ip 5.202.15.62 209693 port 32 209693 unique_id port 209693 remote_ip 10.8.0.170 209696 username mehrpoyan101 209696 mac 209696 bytes_out 65344 209696 bytes_in 119778 209696 station_ip 5.119.18.249 209696 port 28 209696 unique_id port 209696 remote_ip 10.8.0.134 209697 username barzegar 209697 mac 209697 bytes_out 0 209697 bytes_in 0 209697 station_ip 5.119.161.34 209697 port 28 209697 unique_id port 209697 remote_ip 10.8.0.34 209700 username mostafa_es78 209700 mac 209700 bytes_out 44885 209700 bytes_in 108186 209700 station_ip 83.122.211.147 209700 port 28 209700 unique_id port 209700 remote_ip 10.8.0.42 209703 username mehrpoyan101 209703 mac 209703 bytes_out 31535 209703 bytes_in 55834 209703 station_ip 5.120.155.135 209703 port 28 209703 unique_id port 209703 remote_ip 10.8.0.134 209704 username saeeddamghani 209704 mac 209704 bytes_out 2897221 209704 bytes_in 33886875 209704 station_ip 217.60.175.231 209704 port 4 209704 unique_id port 209704 remote_ip 10.8.0.162 209706 username barzegar 209706 mac 209706 bytes_out 0 209706 bytes_in 0 209706 station_ip 5.119.161.34 209706 port 22 209706 unique_id port 209706 remote_ip 10.8.1.30 209711 username farhad3 209711 kill_reason Another user logged on this global unique id 209711 mac 209711 bytes_out 0 209711 bytes_in 0 209711 station_ip 5.119.181.147 209711 port 25 209711 unique_id port 209711 remote_ip 10.8.0.98 209713 username mehrpoyan101 209713 mac 209713 bytes_out 137170 209713 bytes_in 255004 209713 station_ip 5.120.131.158 209713 port 4 209713 unique_id port 209713 remote_ip 10.8.0.134 209715 username barzegar 209715 mac 209715 bytes_out 0 209715 bytes_in 0 209715 station_ip 5.119.161.34 209715 port 19 209715 unique_id port 209715 remote_ip 10.8.0.34 209721 username barzegar 209721 mac 209721 bytes_out 24233 209721 bytes_in 116244 209721 station_ip 5.119.161.34 209721 port 24 209721 unique_id port 209721 remote_ip 10.8.1.30 209723 username farhad3 209723 kill_reason Another user logged on this global unique id 209723 mac 209723 bytes_out 0 209723 bytes_in 0 209723 station_ip 5.119.181.147 209723 port 25 209723 unique_id port 209727 username khalili2 209727 kill_reason Another user logged on this global unique id 209727 mac 209727 bytes_out 0 209727 bytes_in 0 209727 station_ip 5.120.68.137 209727 port 35 209701 port 34 209701 unique_id port 209712 username saeeddamghani 209712 kill_reason Maximum check online fails reached 209712 mac 209712 bytes_out 0 209712 bytes_in 0 209712 station_ip 217.60.175.231 209712 port 34 209712 unique_id port 209716 username mirzaei6046 209716 kill_reason Another user logged on this global unique id 209716 mac 209716 bytes_out 0 209716 bytes_in 0 209716 station_ip 5.120.107.143 209716 port 24 209716 unique_id port 209718 username mehrpoyan101 209718 mac 209718 bytes_out 0 209718 bytes_in 0 209718 station_ip 5.120.161.249 209718 port 36 209718 unique_id port 209718 remote_ip 10.8.0.134 209720 username kamali3 209720 kill_reason Another user logged on this global unique id 209720 mac 209720 bytes_out 0 209720 bytes_in 0 209720 station_ip 83.122.220.34 209720 port 3 209720 unique_id port 209720 remote_ip 10.8.1.206 209722 username soleymani5056 209722 mac 209722 bytes_out 48491 209722 bytes_in 68519 209722 station_ip 5.119.180.156 209722 port 4 209722 unique_id port 209722 remote_ip 10.8.0.246 209724 username aminvpn 209724 kill_reason Another user logged on this global unique id 209724 mac 209724 bytes_out 0 209724 bytes_in 0 209724 station_ip 5.119.44.118 209724 port 29 209724 unique_id port 209724 remote_ip 10.8.0.58 209725 username mehrpoyan101 209725 mac 209725 bytes_out 100553 209725 bytes_in 525118 209725 station_ip 5.119.41.217 209725 port 19 209725 unique_id port 209725 remote_ip 10.8.0.134 209732 username mehrpoyan101 209732 mac 209732 bytes_out 0 209732 bytes_in 0 209732 station_ip 5.119.130.53 209732 port 37 209732 unique_id port 209732 remote_ip 10.8.0.134 209733 username soleymani5056 209733 mac 209733 bytes_out 173371462 209733 bytes_in 319944675 209733 station_ip 5.119.180.156 209733 port 24 209733 unique_id port 209733 remote_ip 10.8.1.230 209738 username farhad3 209738 mac 209738 bytes_out 0 209738 bytes_in 0 209738 station_ip 5.119.181.147 209738 port 25 209738 unique_id port 209738 remote_ip 10.8.0.98 209740 username meysam 209740 kill_reason Another user logged on this global unique id 209740 mac 209740 bytes_out 0 209740 bytes_in 0 209740 station_ip 188.158.51.111 209740 port 27 209740 unique_id port 209744 username meysam 209744 mac 209744 bytes_out 0 209744 bytes_in 0 209744 station_ip 188.158.51.111 209744 port 27 209744 unique_id port 209745 username alipour1506 209745 mac 209745 bytes_out 0 209745 bytes_in 0 209745 station_ip 37.129.205.90 209745 port 16 209745 unique_id port 209747 username pourshad 209747 kill_reason Another user logged on this global unique id 209747 mac 209747 bytes_out 0 209747 bytes_in 0 209747 station_ip 5.120.252.82 209747 port 23 209747 unique_id port 209748 username morteza4424 209748 mac 209748 bytes_out 0 209748 bytes_in 0 209748 station_ip 83.123.57.33 209748 port 19 209748 unique_id port 209748 remote_ip 10.8.0.30 209752 username kamali3 209752 kill_reason Another user logged on this global unique id 209752 mac 209752 bytes_out 0 209752 bytes_in 0 209752 station_ip 83.122.220.34 209752 port 22 209752 unique_id port 209755 username khalili2 209755 kill_reason Another user logged on this global unique id 209755 mac 209755 bytes_out 0 209755 bytes_in 0 209755 station_ip 5.120.68.137 209755 port 35 209755 unique_id port 209758 username morteza4424 209758 mac 209758 bytes_out 0 209758 bytes_in 0 209758 station_ip 83.123.57.33 209758 port 24 209758 unique_id port 209758 remote_ip 10.8.1.42 209760 username meysam 209760 mac 209760 bytes_out 753414 209760 bytes_in 14535813 209760 station_ip 188.158.51.111 209719 port 30 209719 unique_id port 209719 remote_ip 10.8.0.130 209726 username mostafa_es78 209726 mac 209726 bytes_out 0 209726 bytes_in 0 209726 station_ip 83.122.142.15 209726 port 22 209726 unique_id port 209726 remote_ip 10.8.1.202 209728 username hosseini0093 209728 mac 209728 bytes_out 0 209728 bytes_in 0 209728 station_ip 5.120.131.79 209728 port 19 209728 unique_id port 209728 remote_ip 10.8.0.154 209730 username kamali3 209730 mac 209730 bytes_out 0 209730 bytes_in 0 209730 station_ip 83.122.220.34 209730 port 3 209730 unique_id port 209734 username meysam 209734 kill_reason Another user logged on this global unique id 209734 mac 209734 bytes_out 0 209734 bytes_in 0 209734 station_ip 188.158.51.111 209734 port 27 209734 unique_id port 209734 remote_ip 10.8.1.6 209737 username farhad3 209737 mac 209737 bytes_out 0 209737 bytes_in 0 209737 station_ip 5.119.181.147 209737 port 25 209737 unique_id port 209739 username aminvpn 209739 kill_reason Another user logged on this global unique id 209739 mac 209739 bytes_out 0 209739 bytes_in 0 209739 station_ip 5.119.44.118 209739 port 29 209739 unique_id port 209742 username kamali3 209742 kill_reason Another user logged on this global unique id 209742 mac 209742 bytes_out 0 209742 bytes_in 0 209742 station_ip 83.122.220.34 209742 port 22 209742 unique_id port 209742 remote_ip 10.8.1.206 209743 username alipour1506 209743 kill_reason Another user logged on this global unique id 209743 mac 209743 bytes_out 0 209743 bytes_in 0 209743 station_ip 37.129.205.90 209743 port 16 209743 unique_id port 209743 remote_ip 10.8.0.46 209746 username aminvpn 209746 kill_reason Another user logged on this global unique id 209746 mac 209746 bytes_out 0 209746 bytes_in 0 209746 station_ip 5.119.44.118 209746 port 29 209746 unique_id port 209749 username morteza4424 209749 mac 209749 bytes_out 0 209749 bytes_in 0 209749 station_ip 83.123.57.33 209749 port 16 209749 unique_id port 209749 remote_ip 10.8.0.30 209751 username barzegar 209751 mac 209751 bytes_out 0 209751 bytes_in 0 209751 station_ip 5.119.102.159 209751 port 25 209751 unique_id port 209751 remote_ip 10.8.0.34 209753 username pourshad 209753 mac 209753 bytes_out 0 209753 bytes_in 0 209753 station_ip 5.120.252.82 209753 port 23 209753 unique_id port 209759 username aminvpn 209759 mac 209759 bytes_out 0 209759 bytes_in 0 209759 station_ip 5.119.44.118 209759 port 29 209759 unique_id port 209763 username saeeddamghani 209763 mac 209763 bytes_out 0 209763 bytes_in 0 209763 station_ip 217.60.175.231 209763 port 16 209763 unique_id port 209763 remote_ip 10.8.0.162 209764 username motamedi9772 209764 kill_reason Another user logged on this global unique id 209764 mac 209764 bytes_out 0 209764 bytes_in 0 209764 station_ip 83.123.9.132 209764 port 3 209764 unique_id port 209764 remote_ip 10.8.1.182 209768 username mehrpoyan101 209768 mac 209768 bytes_out 0 209768 bytes_in 0 209768 station_ip 5.120.65.145 209768 port 25 209768 unique_id port 209768 remote_ip 10.8.0.134 209769 username mehrpoyan101 209769 mac 209769 bytes_out 26766 209769 bytes_in 52535 209769 station_ip 5.119.111.13 209769 port 19 209769 unique_id port 209769 remote_ip 10.8.0.134 209771 username barzegar 209771 mac 209771 bytes_out 173562291 209771 bytes_in 320354095 209771 station_ip 5.119.102.159 209771 port 24 209771 unique_id port 209771 remote_ip 10.8.1.30 209774 username pourshad 209774 mac 209774 bytes_out 485481 209774 bytes_in 4814508 209774 station_ip 5.120.252.82 209727 unique_id port 209727 remote_ip 10.8.0.78 209729 username mehrpoyan101 209729 mac 209729 bytes_out 0 209729 bytes_in 0 209729 station_ip 5.120.170.74 209729 port 4 209729 unique_id port 209729 remote_ip 10.8.0.134 209731 username barzegar 209731 mac 209731 bytes_out 9529 209731 bytes_in 11929 209731 station_ip 5.119.102.159 209731 port 36 209731 unique_id port 209731 remote_ip 10.8.0.34 209735 username barzegar 209735 mac 209735 bytes_out 3216 209735 bytes_in 5782 209735 station_ip 5.119.102.159 209735 port 3 209735 unique_id port 209735 remote_ip 10.8.1.30 209736 username aminvpn 209736 kill_reason Another user logged on this global unique id 209736 mac 209736 bytes_out 0 209736 bytes_in 0 209736 station_ip 5.119.44.118 209736 port 29 209736 unique_id port 209741 username khalili2 209741 kill_reason Another user logged on this global unique id 209741 mac 209741 bytes_out 0 209741 bytes_in 0 209741 station_ip 5.120.68.137 209741 port 35 209741 unique_id port 209750 username saeeddamghani 209750 mac 209750 bytes_out 173433779 209750 bytes_in 320043008 209750 station_ip 217.60.175.231 209750 port 24 209750 unique_id port 209750 remote_ip 10.8.1.130 209754 username fezealinaghi 209754 mac 209754 bytes_out 3745408 209754 bytes_in 31748630 209754 station_ip 83.122.38.126 209754 port 33 209754 unique_id port 209754 remote_ip 10.8.0.234 209756 username barzegar 209756 mac 209756 bytes_out 0 209756 bytes_in 0 209756 station_ip 5.119.102.159 209756 port 16 209756 unique_id port 209756 remote_ip 10.8.0.34 209757 username aminvpn 209757 kill_reason Another user logged on this global unique id 209757 mac 209757 bytes_out 0 209757 bytes_in 0 209757 station_ip 5.119.44.118 209757 port 29 209757 unique_id port 209765 username aminvpn2 209765 mac 209765 bytes_out 0 209765 bytes_in 0 209765 station_ip 5.119.61.34 209765 port 30 209765 unique_id port 209766 username barzegar 209766 mac 209766 bytes_out 0 209766 bytes_in 0 209766 station_ip 5.119.102.159 209766 port 25 209766 unique_id port 209766 remote_ip 10.8.0.34 209767 username aminvpn 209767 mac 209767 bytes_out 140433 209767 bytes_in 357738 209767 station_ip 31.56.223.14 209767 port 19 209767 unique_id port 209767 remote_ip 10.8.0.58 209773 username farhad3 209773 mac 209773 bytes_out 2649704 209773 bytes_in 15940053 209773 station_ip 5.119.181.147 209773 port 16 209773 unique_id port 209773 remote_ip 10.8.0.98 209776 username barzegar 209776 mac 209776 bytes_out 0 209776 bytes_in 0 209776 station_ip 5.119.102.159 209776 port 16 209776 unique_id port 209776 remote_ip 10.8.0.34 209784 username naeimeh 209784 mac 209784 bytes_out 0 209784 bytes_in 0 209784 station_ip 37.129.225.88 209784 port 19 209784 unique_id port 209784 remote_ip 10.8.0.166 209790 username fezealinaghi 209790 kill_reason Maximum check online fails reached 209790 mac 209790 bytes_out 0 209790 bytes_in 0 209790 station_ip 83.122.38.58 209790 port 29 209790 unique_id port 209793 username aminvpnpc 209793 kill_reason Another user logged on this global unique id 209793 mac 209793 bytes_out 0 209793 bytes_in 0 209793 station_ip 5.119.61.34 209793 port 4 209793 unique_id port 209793 remote_ip 10.8.0.118 209795 username mehrpoyan101 209795 mac 209795 bytes_out 134006 209795 bytes_in 748384 209795 station_ip 5.119.111.13 209795 port 36 209795 unique_id port 209795 remote_ip 10.8.0.134 209798 username aminvpnpc 209798 mac 209798 bytes_out 0 209798 bytes_in 0 209798 station_ip 5.119.61.34 209798 port 4 209798 unique_id port 209760 port 23 209760 unique_id port 209760 remote_ip 10.8.1.6 209761 username kamali3 209761 kill_reason Another user logged on this global unique id 209761 mac 209761 bytes_out 0 209761 bytes_in 0 209761 station_ip 83.122.220.34 209761 port 22 209761 unique_id port 209762 username khalili2 209762 mac 209762 bytes_out 0 209762 bytes_in 0 209762 station_ip 5.120.68.137 209762 port 35 209762 unique_id port 209770 username yaghobi 209770 mac 209770 bytes_out 0 209770 bytes_in 0 209770 station_ip 37.129.190.220 209770 port 19 209770 unique_id port 209770 remote_ip 10.8.0.106 209772 username yarmohamadi7916 209772 kill_reason Another user logged on this global unique id 209772 mac 209772 bytes_out 0 209772 bytes_in 0 209772 station_ip 5.120.163.7 209772 port 15 209772 unique_id port 209780 username fezealinaghi 209780 mac 209780 bytes_out 0 209780 bytes_in 0 209780 station_ip 83.122.38.58 209780 port 29 209780 unique_id port 209780 remote_ip 10.8.0.234 209783 username farhad3 209783 mac 209783 bytes_out 0 209783 bytes_in 0 209783 station_ip 5.119.181.147 209783 port 19 209783 unique_id port 209783 remote_ip 10.8.0.98 209785 username kalantary6037 209785 mac 209785 bytes_out 0 209785 bytes_in 0 209785 station_ip 83.122.56.78 209785 port 24 209785 unique_id port 209785 remote_ip 10.8.1.98 209791 username khalili2 209791 mac 209791 bytes_out 0 209791 bytes_in 0 209791 station_ip 5.120.68.137 209791 port 33 209791 unique_id port 209791 remote_ip 10.8.0.78 209794 username kamali3 209794 mac 209794 bytes_out 0 209794 bytes_in 0 209794 station_ip 83.122.220.34 209794 port 22 209794 unique_id port 209804 username khalili2 209804 mac 209804 bytes_out 0 209804 bytes_in 0 209804 station_ip 5.120.68.137 209804 port 33 209804 unique_id port 209804 remote_ip 10.8.0.78 209806 username milan 209806 kill_reason Another user logged on this global unique id 209806 mac 209806 bytes_out 0 209806 bytes_in 0 209806 station_ip 5.119.220.159 209806 port 35 209806 unique_id port 209810 username aminvpnipad 209810 mac 209810 bytes_out 0 209810 bytes_in 0 209810 station_ip 5.119.61.34 209810 port 37 209810 unique_id port 209810 remote_ip 10.8.0.202 209812 username motamedi9772 209812 kill_reason Another user logged on this global unique id 209812 mac 209812 bytes_out 0 209812 bytes_in 0 209812 station_ip 83.123.9.132 209812 port 3 209812 unique_id port 209814 username barzegar 209814 mac 209814 bytes_out 0 209814 bytes_in 0 209814 station_ip 5.119.102.159 209814 port 24 209814 unique_id port 209814 remote_ip 10.8.1.30 209817 username kamali3 209817 mac 209817 bytes_out 0 209817 bytes_in 0 209817 station_ip 83.122.220.34 209817 port 22 209817 unique_id port 209817 remote_ip 10.8.1.206 209820 username farhad3 209820 mac 209820 bytes_out 0 209820 bytes_in 0 209820 station_ip 5.119.181.147 209820 port 30 209820 unique_id port 209820 remote_ip 10.8.0.98 209823 username mirzaei6046 209823 mac 209823 bytes_out 166980 209823 bytes_in 1380548 209823 station_ip 5.120.190.198 209823 port 38 209823 unique_id port 209823 remote_ip 10.8.0.242 209825 username milan 209825 kill_reason Another user logged on this global unique id 209825 mac 209825 bytes_out 0 209825 bytes_in 0 209825 station_ip 5.119.220.159 209825 port 35 209825 unique_id port 209827 username barzegar8595 209827 kill_reason Another user logged on this global unique id 209827 mac 209827 bytes_out 0 209827 bytes_in 0 209827 station_ip 46.225.210.250 209827 port 32 209827 unique_id port 209774 port 23 209774 unique_id port 209774 remote_ip 10.8.1.10 209775 username farhad3 209775 mac 209775 bytes_out 0 209775 bytes_in 0 209775 station_ip 5.119.181.147 209775 port 19 209775 unique_id port 209775 remote_ip 10.8.0.98 209777 username motamedi9772 209777 kill_reason Another user logged on this global unique id 209777 mac 209777 bytes_out 0 209777 bytes_in 0 209777 station_ip 83.123.9.132 209777 port 3 209777 unique_id port 209778 username barzegar 209778 mac 209778 bytes_out 0 209778 bytes_in 0 209778 station_ip 5.119.102.159 209778 port 16 209778 unique_id port 209778 remote_ip 10.8.0.34 209779 username mosi 209779 mac 209779 bytes_out 0 209779 bytes_in 0 209779 station_ip 5.233.50.13 209779 port 16 209779 unique_id port 209779 remote_ip 10.8.0.38 209781 username barzegar 209781 mac 209781 bytes_out 0 209781 bytes_in 0 209781 station_ip 5.119.102.159 209781 port 30 209781 unique_id port 209781 remote_ip 10.8.0.34 209782 username fezealinaghi 209782 mac 209782 bytes_out 6065 209782 bytes_in 10414 209782 station_ip 83.122.38.58 209782 port 16 209782 unique_id port 209782 remote_ip 10.8.0.234 209786 username fezealinaghi 209786 mac 209786 bytes_out 0 209786 bytes_in 0 209786 station_ip 83.122.38.58 209786 port 16 209786 unique_id port 209786 remote_ip 10.8.0.234 209787 username naeimeh 209787 mac 209787 bytes_out 0 209787 bytes_in 0 209787 station_ip 37.129.205.151 209787 port 29 209787 unique_id port 209787 remote_ip 10.8.0.166 209788 username fezealinaghi 209788 mac 209788 bytes_out 173778490 209788 bytes_in 321999086 209788 station_ip 83.122.38.58 209788 port 24 209788 unique_id port 209788 remote_ip 10.8.1.222 209789 username barzegar 209789 mac 209789 bytes_out 173785198 209789 bytes_in 322006530 209789 station_ip 5.119.102.159 209789 port 24 209789 unique_id port 209789 remote_ip 10.8.1.30 209792 username soleymani5056 209792 mac 209792 bytes_out 183406 209792 bytes_in 1159788 209792 station_ip 5.119.84.198 209792 port 19 209792 unique_id port 209792 remote_ip 10.8.0.246 209796 username motamedi9772 209796 kill_reason Another user logged on this global unique id 209796 mac 209796 bytes_out 0 209796 bytes_in 0 209796 station_ip 83.123.9.132 209796 port 3 209796 unique_id port 209797 username milan 209797 kill_reason Another user logged on this global unique id 209797 mac 209797 bytes_out 0 209797 bytes_in 0 209797 station_ip 5.119.220.159 209797 port 35 209797 unique_id port 209797 remote_ip 10.8.0.222 209800 username mehrpoyan101 209800 mac 209800 bytes_out 94653 209800 bytes_in 380353 209800 station_ip 5.120.9.228 209800 port 33 209800 unique_id port 209800 remote_ip 10.8.0.134 209802 username kalantary6037 209802 mac 209802 bytes_out 1195128 209802 bytes_in 12872453 209802 station_ip 83.122.56.78 209802 port 24 209802 unique_id port 209802 remote_ip 10.8.1.98 209805 username barzegar 209805 mac 209805 bytes_out 0 209805 bytes_in 0 209805 station_ip 5.119.102.159 209805 port 16 209805 unique_id port 209805 remote_ip 10.8.0.34 209809 username milan 209809 kill_reason Another user logged on this global unique id 209809 mac 209809 bytes_out 0 209809 bytes_in 0 209809 station_ip 5.119.220.159 209809 port 35 209809 unique_id port 209818 username yarmohamadi7916 209818 kill_reason Another user logged on this global unique id 209818 mac 209818 bytes_out 0 209818 bytes_in 0 209818 station_ip 5.120.163.7 209818 port 15 209818 unique_id port 209821 username pourshad 209821 mac 209821 bytes_out 46007 209821 bytes_in 65329 209799 username naeimeh 209799 mac 209799 bytes_out 0 209799 bytes_in 0 209799 station_ip 37.129.205.151 209799 port 16 209799 unique_id port 209799 remote_ip 10.8.0.166 209801 username yaghobi 209801 mac 209801 bytes_out 0 209801 bytes_in 0 209801 station_ip 37.129.239.92 209801 port 36 209801 unique_id port 209801 remote_ip 10.8.0.106 209803 username mehrpoyan101 209803 mac 209803 bytes_out 0 209803 bytes_in 0 209803 station_ip 5.120.86.22 209803 port 16 209803 unique_id port 209803 remote_ip 10.8.0.134 209807 username pourshad 209807 mac 209807 bytes_out 0 209807 bytes_in 0 209807 station_ip 5.120.252.82 209807 port 23 209807 unique_id port 209807 remote_ip 10.8.1.10 209808 username hosseine 209808 mac 209808 bytes_out 0 209808 bytes_in 0 209808 station_ip 5.202.3.224 209808 port 25 209808 unique_id port 209808 remote_ip 10.8.0.126 209811 username aminvpnpc 209811 mac 209811 bytes_out 0 209811 bytes_in 0 209811 station_ip 5.119.61.34 209811 port 36 209811 unique_id port 209811 remote_ip 10.8.0.118 209813 username hadibarzegar 209813 kill_reason Another user logged on this global unique id 209813 mac 209813 bytes_out 0 209813 bytes_in 0 209813 station_ip 5.119.31.205 209813 port 4 209813 unique_id port 209813 remote_ip 10.8.0.150 209815 username nilufarrajaei 209815 mac 209815 bytes_out 0 209815 bytes_in 0 209815 station_ip 83.122.196.148 209815 port 38 209815 unique_id port 209815 remote_ip 10.8.0.50 209816 username aminvpn 209816 kill_reason Another user logged on this global unique id 209816 mac 209816 bytes_out 0 209816 bytes_in 0 209816 station_ip 5.119.44.118 209816 port 16 209816 unique_id port 209816 remote_ip 10.8.0.58 209819 username kamali3 209819 mac 209819 bytes_out 0 209819 bytes_in 0 209819 station_ip 83.122.220.34 209819 port 24 209819 unique_id port 209819 remote_ip 10.8.1.206 209822 username aminvpnipad 209822 mac 209822 bytes_out 0 209822 bytes_in 0 209822 station_ip 5.119.61.34 209822 port 30 209822 unique_id port 209822 remote_ip 10.8.0.202 209831 username hadibarzegar 209831 mac 209831 bytes_out 0 209831 bytes_in 0 209831 station_ip 5.119.31.205 209831 port 4 209831 unique_id port 209837 username farhad3 209837 mac 209837 bytes_out 0 209837 bytes_in 0 209837 station_ip 5.119.181.147 209837 port 24 209837 unique_id port 209837 remote_ip 10.8.0.98 209841 username mehrpoyan101 209841 mac 209841 bytes_out 0 209841 bytes_in 0 209841 station_ip 5.119.253.236 209841 port 25 209841 unique_id port 209841 remote_ip 10.8.0.134 209843 username aminvpnipad 209843 mac 209843 bytes_out 0 209843 bytes_in 0 209843 station_ip 5.119.61.34 209843 port 25 209843 unique_id port 209843 remote_ip 10.8.0.202 209844 username barzegar 209844 mac 209844 bytes_out 0 209844 bytes_in 0 209844 station_ip 5.120.55.42 209844 port 24 209844 unique_id port 209844 remote_ip 10.8.0.34 209845 username kalantary6037 209845 mac 209845 bytes_out 0 209845 bytes_in 0 209845 station_ip 83.122.33.62 209845 port 23 209845 unique_id port 209845 remote_ip 10.8.1.98 209849 username motamedi9772 209849 kill_reason Another user logged on this global unique id 209849 mac 209849 bytes_out 0 209849 bytes_in 0 209849 station_ip 83.123.9.132 209849 port 3 209849 unique_id port 209850 username hosseine 209850 mac 209850 bytes_out 15844 209850 bytes_in 16794 209850 station_ip 5.202.135.89 209850 port 25 209850 unique_id port 209850 remote_ip 10.8.0.126 209857 username aminvpnipad 209857 mac 209821 station_ip 5.120.252.82 209821 port 23 209821 unique_id port 209821 remote_ip 10.8.1.10 209824 username iranmanesh4443 209824 mac 209824 bytes_out 0 209824 bytes_in 0 209824 station_ip 5.120.170.211 209824 port 30 209824 unique_id port 209824 remote_ip 10.8.0.198 209826 username hadibarzegar 209826 kill_reason Another user logged on this global unique id 209826 mac 209826 bytes_out 0 209826 bytes_in 0 209826 station_ip 5.119.31.205 209826 port 4 209826 unique_id port 209829 username yaghobi 209829 mac 209829 bytes_out 746920 209829 bytes_in 8620499 209829 station_ip 113.203.61.248 209829 port 37 209829 unique_id port 209829 remote_ip 10.8.0.106 209832 username motamedi9772 209832 kill_reason Another user logged on this global unique id 209832 mac 209832 bytes_out 0 209832 bytes_in 0 209832 station_ip 83.123.9.132 209832 port 3 209832 unique_id port 209833 username mosavi0713 209833 mac 209833 bytes_out 2123106 209833 bytes_in 30304462 209833 station_ip 37.129.183.191 209833 port 33 209833 unique_id port 209833 remote_ip 10.8.0.22 209834 username aminvpn 209834 kill_reason Another user logged on this global unique id 209834 mac 209834 bytes_out 0 209834 bytes_in 0 209834 station_ip 5.119.44.118 209834 port 16 209834 unique_id port 209836 username yarmohamadi7916 209836 kill_reason Another user logged on this global unique id 209836 mac 209836 bytes_out 0 209836 bytes_in 0 209836 station_ip 5.120.163.7 209836 port 15 209836 unique_id port 209839 username milan 209839 kill_reason Another user logged on this global unique id 209839 mac 209839 bytes_out 0 209839 bytes_in 0 209839 station_ip 5.119.220.159 209839 port 35 209839 unique_id port 209842 username saeeddamghani 209842 mac 209842 bytes_out 0 209842 bytes_in 0 209842 station_ip 217.60.175.231 209842 port 24 209842 unique_id port 209842 remote_ip 10.8.0.162 209847 username pourshad 209847 mac 209847 bytes_out 0 209847 bytes_in 0 209847 station_ip 5.120.252.82 209847 port 22 209847 unique_id port 209847 remote_ip 10.8.1.10 209852 username aminvpn 209852 mac 209852 bytes_out 0 209852 bytes_in 0 209852 station_ip 5.119.44.118 209852 port 16 209852 unique_id port 209855 username mohammadjavad 209855 mac 209855 bytes_out 2433102 209855 bytes_in 27987056 209855 station_ip 37.129.93.228 209855 port 39 209855 unique_id port 209855 remote_ip 10.8.0.138 209859 username mosi 209859 mac 209859 bytes_out 0 209859 bytes_in 0 209859 station_ip 2.179.191.207 209859 port 16 209859 unique_id port 209859 remote_ip 10.8.0.38 209862 username motamedi9772 209862 kill_reason Another user logged on this global unique id 209862 mac 209862 bytes_out 0 209862 bytes_in 0 209862 station_ip 83.123.9.132 209862 port 3 209862 unique_id port 209863 username aminvpnipad 209863 mac 209863 bytes_out 0 209863 bytes_in 0 209863 station_ip 5.119.61.34 209863 port 16 209863 unique_id port 209863 remote_ip 10.8.0.202 209869 username barzegar 209869 mac 209869 bytes_out 0 209869 bytes_in 0 209869 station_ip 5.120.55.42 209869 port 24 209869 unique_id port 209869 remote_ip 10.8.0.34 209872 username yaghobi 209872 mac 209872 bytes_out 142936 209872 bytes_in 218321 209872 station_ip 83.122.37.71 209872 port 4 209872 unique_id port 209872 remote_ip 10.8.0.106 209877 username barzegar8595 209877 kill_reason Another user logged on this global unique id 209877 mac 209877 bytes_out 0 209877 bytes_in 0 209877 station_ip 46.225.210.250 209877 port 32 209877 unique_id port 209879 username pourshad 209879 mac 209879 bytes_out 38475 209879 bytes_in 80103 209827 remote_ip 10.8.0.170 209828 username hosseine 209828 mac 209828 bytes_out 15336 209828 bytes_in 21685 209828 station_ip 5.202.15.146 209828 port 25 209828 unique_id port 209828 remote_ip 10.8.0.126 209830 username mehrpoyan101 209830 mac 209830 bytes_out 0 209830 bytes_in 0 209830 station_ip 5.119.253.236 209830 port 38 209830 unique_id port 209830 remote_ip 10.8.0.134 209835 username barzegar 209835 mac 209835 bytes_out 0 209835 bytes_in 0 209835 station_ip 5.120.55.42 209835 port 27 209835 unique_id port 209835 remote_ip 10.8.1.30 209838 username iranmanesh4443 209838 mac 209838 bytes_out 522918 209838 bytes_in 6200652 209838 station_ip 5.120.170.211 209838 port 30 209838 unique_id port 209838 remote_ip 10.8.0.198 209840 username hosseine 209840 mac 209840 bytes_out 163269 209840 bytes_in 162462 209840 station_ip 5.202.65.180 209840 port 4 209840 unique_id port 209840 remote_ip 10.8.0.126 209846 username nilufarrajaei 209846 kill_reason Maximum check online fails reached 209846 mac 209846 bytes_out 118646 209846 bytes_in 306704 209846 station_ip 83.122.196.148 209846 port 36 209846 unique_id port 209846 remote_ip 10.8.0.50 209848 username mehrpoyan101 209848 mac 209848 bytes_out 225802 209848 bytes_in 1902474 209848 station_ip 5.119.253.236 209848 port 4 209848 unique_id port 209848 remote_ip 10.8.0.134 209851 username mehrpoyan101 209851 mac 209851 bytes_out 0 209851 bytes_in 0 209851 station_ip 5.119.253.236 209851 port 24 209851 unique_id port 209851 remote_ip 10.8.0.134 209853 username milan 209853 kill_reason Another user logged on this global unique id 209853 mac 209853 bytes_out 0 209853 bytes_in 0 209853 station_ip 5.119.220.159 209853 port 35 209853 unique_id port 209854 username saeeddamghani 209854 mac 209854 bytes_out 1447115 209854 bytes_in 12002686 209854 station_ip 217.60.175.231 209854 port 38 209854 unique_id port 209854 remote_ip 10.8.0.162 209856 username mehrpoyan101 209856 mac 209856 bytes_out 120273 209856 bytes_in 315568 209856 station_ip 5.119.161.139 209856 port 24 209856 unique_id port 209856 remote_ip 10.8.0.134 209858 username godarzi 209858 mac 209858 bytes_out 0 209858 bytes_in 0 209858 station_ip 5.120.135.203 209858 port 28 209858 unique_id port 209858 remote_ip 10.8.0.74 209867 username kalantary6037 209867 mac 209867 bytes_out 1933117 209867 bytes_in 23427925 209867 station_ip 83.122.1.26 209867 port 22 209867 unique_id port 209867 remote_ip 10.8.1.98 209868 username pourshad 209868 mac 209868 bytes_out 0 209868 bytes_in 0 209868 station_ip 5.120.252.82 209868 port 4 209868 unique_id port 209868 remote_ip 10.8.0.122 209873 username hatami 209873 mac 209873 bytes_out 213237 209873 bytes_in 2315725 209873 station_ip 37.129.191.25 209873 port 16 209873 unique_id port 209873 remote_ip 10.8.0.14 209874 username saeeddamghani 209874 mac 209874 bytes_out 0 209874 bytes_in 0 209874 station_ip 217.60.175.231 209874 port 4 209874 unique_id port 209874 remote_ip 10.8.0.162 209878 username milan 209878 kill_reason Another user logged on this global unique id 209878 mac 209878 bytes_out 0 209878 bytes_in 0 209878 station_ip 5.119.220.159 209878 port 35 209878 unique_id port 209882 username barzegar 209882 mac 209882 bytes_out 0 209882 bytes_in 0 209882 station_ip 5.120.55.42 209882 port 16 209882 unique_id port 209882 remote_ip 10.8.0.34 209885 username farhad3 209885 kill_reason Another user logged on this global unique id 209885 mac 209885 bytes_out 0 209885 bytes_in 0 209885 station_ip 5.119.181.147 209857 bytes_out 0 209857 bytes_in 0 209857 station_ip 5.119.61.34 209857 port 16 209857 unique_id port 209857 remote_ip 10.8.0.202 209860 username barzegar 209860 mac 209860 bytes_out 0 209860 bytes_in 0 209860 station_ip 5.120.55.42 209860 port 22 209860 unique_id port 209860 remote_ip 10.8.1.30 209861 username yarmohamadi7916 209861 kill_reason Another user logged on this global unique id 209861 mac 209861 bytes_out 0 209861 bytes_in 0 209861 station_ip 5.120.163.7 209861 port 15 209861 unique_id port 209864 username milan 209864 kill_reason Another user logged on this global unique id 209864 mac 209864 bytes_out 0 209864 bytes_in 0 209864 station_ip 5.119.220.159 209864 port 35 209864 unique_id port 209865 username barzegar 209865 mac 209865 bytes_out 0 209865 bytes_in 0 209865 station_ip 5.120.55.42 209865 port 16 209865 unique_id port 209865 remote_ip 10.8.0.34 209866 username soleymani5056 209866 mac 209866 bytes_out 34008 209866 bytes_in 60581 209866 station_ip 5.119.157.254 209866 port 23 209866 unique_id port 209866 remote_ip 10.8.1.230 209870 username milan 209870 kill_reason Another user logged on this global unique id 209870 mac 209870 bytes_out 0 209870 bytes_in 0 209870 station_ip 5.119.220.159 209870 port 35 209870 unique_id port 209871 username barzegar 209871 mac 209871 bytes_out 0 209871 bytes_in 0 209871 station_ip 5.120.55.42 209871 port 24 209871 unique_id port 209871 remote_ip 10.8.0.34 209875 username motamedi9772 209875 kill_reason Another user logged on this global unique id 209875 mac 209875 bytes_out 0 209875 bytes_in 0 209875 station_ip 83.123.9.132 209875 port 3 209875 unique_id port 209876 username kalantary6037 209876 mac 209876 bytes_out 1134438 209876 bytes_in 11988812 209876 station_ip 83.122.1.26 209876 port 23 209876 unique_id port 209876 remote_ip 10.8.1.98 209883 username motamedi9772 209883 kill_reason Another user logged on this global unique id 209883 mac 209883 bytes_out 0 209883 bytes_in 0 209883 station_ip 83.123.9.132 209883 port 3 209883 unique_id port 209884 username soleymani5056 209884 mac 209884 bytes_out 33905 209884 bytes_in 45953 209884 station_ip 5.120.143.217 209884 port 25 209884 unique_id port 209884 remote_ip 10.8.0.246 209886 username barzegar 209886 mac 209886 bytes_out 0 209886 bytes_in 0 209886 station_ip 5.120.55.42 209886 port 24 209886 unique_id port 209886 remote_ip 10.8.1.30 209888 username barzegar 209888 mac 209888 bytes_out 0 209888 bytes_in 0 209888 station_ip 5.120.55.42 209888 port 15 209888 unique_id port 209888 remote_ip 10.8.0.34 209889 username motamedi9772 209889 kill_reason Another user logged on this global unique id 209889 mac 209889 bytes_out 0 209889 bytes_in 0 209889 station_ip 83.123.9.132 209889 port 3 209889 unique_id port 209891 username barzegar 209891 mac 209891 bytes_out 0 209891 bytes_in 0 209891 station_ip 5.120.55.42 209891 port 25 209891 unique_id port 209891 remote_ip 10.8.0.34 209892 username pourshad 209892 mac 209892 bytes_out 0 209892 bytes_in 0 209892 station_ip 5.120.252.82 209892 port 22 209892 unique_id port 209892 remote_ip 10.8.1.10 209898 username barzegar 209898 mac 209898 bytes_out 0 209898 bytes_in 0 209898 station_ip 5.120.55.42 209898 port 25 209898 unique_id port 209898 remote_ip 10.8.0.34 209900 username barzegar 209900 mac 209900 bytes_out 0 209900 bytes_in 0 209900 station_ip 5.120.55.42 209900 port 25 209900 unique_id port 209900 remote_ip 10.8.0.34 209904 username esmaeili1522 209904 mac 209904 bytes_out 0 209879 station_ip 5.120.252.82 209879 port 22 209879 unique_id port 209879 remote_ip 10.8.1.10 209880 username barzegar 209880 mac 209880 bytes_out 0 209880 bytes_in 0 209880 station_ip 5.120.55.42 209880 port 24 209880 unique_id port 209880 remote_ip 10.8.1.30 209881 username yarmohamadi7916 209881 kill_reason Another user logged on this global unique id 209881 mac 209881 bytes_out 0 209881 bytes_in 0 209881 station_ip 5.120.163.7 209881 port 15 209881 unique_id port 209887 username yarmohamadi7916 209887 mac 209887 bytes_out 0 209887 bytes_in 0 209887 station_ip 5.120.163.7 209887 port 15 209887 unique_id port 209893 username aminvpnipad 209893 mac 209893 bytes_out 203771 209893 bytes_in 2779535 209893 station_ip 5.119.61.34 209893 port 25 209893 unique_id port 209893 remote_ip 10.8.0.202 209894 username kalantary6037 209894 mac 209894 bytes_out 0 209894 bytes_in 0 209894 station_ip 83.122.80.250 209894 port 24 209894 unique_id port 209894 remote_ip 10.8.1.98 209896 username aminvpnipad 209896 mac 209896 bytes_out 0 209896 bytes_in 0 209896 station_ip 5.119.61.34 209896 port 25 209896 unique_id port 209896 remote_ip 10.8.0.202 209902 username daryaei1233 209902 mac 209902 bytes_out 7100 209902 bytes_in 12039 209902 station_ip 37.129.243.77 209902 port 25 209902 unique_id port 209902 remote_ip 10.8.0.6 209905 username daryaei1233 209905 mac 209905 bytes_out 0 209905 bytes_in 0 209905 station_ip 37.129.243.77 209905 port 25 209905 unique_id port 209905 remote_ip 10.8.0.6 209907 username barzegar 209907 mac 209907 bytes_out 0 209907 bytes_in 0 209907 station_ip 5.120.55.42 209907 port 27 209907 unique_id port 209907 remote_ip 10.8.1.30 209910 username aminvpnipad 209910 mac 209910 bytes_out 0 209910 bytes_in 0 209910 station_ip 5.119.61.34 209910 port 38 209910 unique_id port 209910 remote_ip 10.8.0.202 209912 username daryaei1233 209912 mac 209912 bytes_out 44459 209912 bytes_in 58388 209912 station_ip 37.129.243.77 209912 port 3 209912 unique_id port 209912 remote_ip 10.8.1.14 209913 username farhad3 209913 mac 209913 bytes_out 0 209913 bytes_in 0 209913 station_ip 5.119.181.147 209913 port 24 209913 unique_id port 209915 username mehrpoyan101 209915 mac 209915 bytes_out 31411 209915 bytes_in 50223 209915 station_ip 5.120.124.65 209915 port 38 209915 unique_id port 209915 remote_ip 10.8.0.134 209917 username daryaei1233 209917 mac 209917 bytes_out 0 209917 bytes_in 0 209917 station_ip 37.129.243.77 209917 port 3 209917 unique_id port 209917 remote_ip 10.8.1.14 209922 username mehrpoyan101 209922 mac 209922 bytes_out 61333 209922 bytes_in 247571 209922 station_ip 5.120.124.65 209922 port 28 209922 unique_id port 209922 remote_ip 10.8.0.134 209923 username daryaei1233 209923 mac 209923 bytes_out 0 209923 bytes_in 0 209923 station_ip 37.129.243.77 209923 port 28 209923 unique_id port 209923 remote_ip 10.8.0.6 209924 username nilufarrajaei 209924 kill_reason Maximum check online fails reached 209924 mac 209924 bytes_out 0 209924 bytes_in 0 209924 station_ip 83.122.196.148 209924 port 36 209924 unique_id port 209928 username daryaei1233 209928 mac 209928 bytes_out 0 209928 bytes_in 0 209928 station_ip 37.129.243.77 209928 port 24 209928 unique_id port 209928 remote_ip 10.8.0.6 209930 username daryaei1233 209930 mac 209930 bytes_out 0 209930 bytes_in 0 209930 station_ip 37.129.243.77 209930 port 32 209930 unique_id port 209930 remote_ip 10.8.0.6 209932 username daryaei1233 209885 port 24 209885 unique_id port 209885 remote_ip 10.8.0.98 209890 username pourshad 209890 mac 209890 bytes_out 0 209890 bytes_in 0 209890 station_ip 5.120.252.82 209890 port 22 209890 unique_id port 209890 remote_ip 10.8.1.10 209895 username barzegar 209895 mac 209895 bytes_out 0 209895 bytes_in 0 209895 station_ip 5.120.55.42 209895 port 38 209895 unique_id port 209895 remote_ip 10.8.0.34 209897 username barzegar8595 209897 kill_reason Another user logged on this global unique id 209897 mac 209897 bytes_out 0 209897 bytes_in 0 209897 station_ip 46.225.210.250 209897 port 32 209897 unique_id port 209899 username daryaei1233 209899 mac 209899 bytes_out 356212 209899 bytes_in 2582108 209899 station_ip 37.129.243.77 209899 port 28 209899 unique_id port 209899 remote_ip 10.8.0.6 209901 username esmaeili1522 209901 kill_reason Another user logged on this global unique id 209901 mac 209901 bytes_out 0 209901 bytes_in 0 209901 station_ip 5.120.50.188 209901 port 15 209901 unique_id port 209901 remote_ip 10.8.0.190 209903 username daryaei1233 209903 mac 209903 bytes_out 0 209903 bytes_in 0 209903 station_ip 37.129.243.77 209903 port 25 209903 unique_id port 209903 remote_ip 10.8.0.6 209909 username kalantary6037 209909 kill_reason Another user logged on this global unique id 209909 mac 209909 bytes_out 0 209909 bytes_in 0 209909 station_ip 83.122.80.250 209909 port 24 209909 unique_id port 209909 remote_ip 10.8.1.98 209911 username mehrpoyan101 209911 mac 209911 bytes_out 0 209911 bytes_in 0 209911 station_ip 5.120.124.65 209911 port 28 209911 unique_id port 209911 remote_ip 10.8.0.134 209918 username kalantary6037 209918 mac 209918 bytes_out 0 209918 bytes_in 0 209918 station_ip 83.122.80.250 209918 port 24 209918 unique_id port 209918 remote_ip 10.8.1.98 209921 username barzegar8595 209921 mac 209921 bytes_out 0 209921 bytes_in 0 209921 station_ip 46.225.210.250 209921 port 32 209921 unique_id port 209926 username pourshad 209926 mac 209926 bytes_out 0 209926 bytes_in 0 209926 station_ip 5.120.252.82 209926 port 22 209926 unique_id port 209926 remote_ip 10.8.1.10 209927 username daryaei1233 209927 mac 209927 bytes_out 0 209927 bytes_in 0 209927 station_ip 37.129.243.77 209927 port 24 209927 unique_id port 209927 remote_ip 10.8.0.6 209929 username daryaei1233 209929 mac 209929 bytes_out 0 209929 bytes_in 0 209929 station_ip 37.129.243.77 209929 port 24 209929 unique_id port 209929 remote_ip 10.8.0.6 209935 username barzegar 209935 mac 209935 bytes_out 0 209935 bytes_in 0 209935 station_ip 5.120.55.42 209935 port 38 209935 unique_id port 209935 remote_ip 10.8.0.34 209941 username milan 209941 kill_reason Another user logged on this global unique id 209941 mac 209941 bytes_out 0 209941 bytes_in 0 209941 station_ip 5.119.220.159 209941 port 35 209941 unique_id port 209942 username barzegar 209942 mac 209942 bytes_out 1134098 209942 bytes_in 12661847 209942 station_ip 5.120.55.42 209942 port 24 209942 unique_id port 209942 remote_ip 10.8.1.30 209947 username daryaei1233 209947 mac 209947 bytes_out 2298 209947 bytes_in 4583 209947 station_ip 37.129.243.77 209947 port 32 209947 unique_id port 209947 remote_ip 10.8.0.6 209957 username barzegar 209957 mac 209957 bytes_out 0 209957 bytes_in 0 209957 station_ip 5.120.55.42 209957 port 40 209957 unique_id port 209957 remote_ip 10.8.0.34 209959 username daryaei1233 209959 kill_reason Maximum check online fails reached 209959 mac 209959 bytes_out 0 209959 bytes_in 0 209904 bytes_in 0 209904 station_ip 5.120.50.188 209904 port 15 209904 unique_id port 209906 username motamedi9772 209906 mac 209906 bytes_out 0 209906 bytes_in 0 209906 station_ip 83.123.9.132 209906 port 3 209906 unique_id port 209908 username daryaei1233 209908 kill_reason Maximum check online fails reached 209908 mac 209908 bytes_out 0 209908 bytes_in 0 209908 station_ip 37.129.243.77 209908 port 15 209908 unique_id port 209914 username aminvpnipad 209914 mac 209914 bytes_out 0 209914 bytes_in 0 209914 station_ip 5.119.61.34 209914 port 28 209914 unique_id port 209914 remote_ip 10.8.0.202 209916 username aminvpnipad 209916 mac 209916 bytes_out 0 209916 bytes_in 0 209916 station_ip 5.119.61.34 209916 port 28 209916 unique_id port 209916 remote_ip 10.8.0.202 209919 username daryaei1233 209919 mac 209919 bytes_out 0 209919 bytes_in 0 209919 station_ip 37.129.243.77 209919 port 39 209919 unique_id port 209919 remote_ip 10.8.0.6 209920 username daryaei1233 209920 mac 209920 bytes_out 0 209920 bytes_in 0 209920 station_ip 37.129.243.77 209920 port 39 209920 unique_id port 209920 remote_ip 10.8.0.6 209925 username daryaei1233 209925 mac 209925 bytes_out 0 209925 bytes_in 0 209925 station_ip 37.129.243.77 209925 port 32 209925 unique_id port 209925 remote_ip 10.8.0.6 209931 username mehrpoyan101 209931 mac 209931 bytes_out 0 209931 bytes_in 0 209931 station_ip 5.120.124.65 209931 port 28 209931 unique_id port 209931 remote_ip 10.8.0.134 209933 username mehrpoyan101 209933 kill_reason Maximum check online fails reached 209933 mac 209933 bytes_out 0 209933 bytes_in 0 209933 station_ip 5.120.132.95 209933 port 39 209933 unique_id port 209934 username mehrpoyan101 209934 mac 209934 bytes_out 0 209934 bytes_in 0 209934 station_ip 5.120.132.95 209934 port 32 209934 unique_id port 209934 remote_ip 10.8.0.134 209938 username aminvpnipad 209938 mac 209938 bytes_out 0 209938 bytes_in 0 209938 station_ip 5.119.61.34 209938 port 32 209938 unique_id port 209938 remote_ip 10.8.0.202 209944 username daryaei1233 209944 mac 209944 bytes_out 80987 209944 bytes_in 182726 209944 station_ip 37.129.243.77 209944 port 38 209944 unique_id port 209944 remote_ip 10.8.0.6 209952 username farhad3 209952 mac 209952 bytes_out 1454424 209952 bytes_in 10240481 209952 station_ip 5.119.181.147 209952 port 28 209952 unique_id port 209952 remote_ip 10.8.0.98 209955 username farhad3 209955 mac 209955 bytes_out 1572 209955 bytes_in 5630 209955 station_ip 5.119.181.147 209955 port 38 209955 unique_id port 209955 remote_ip 10.8.0.98 209956 username farhad3 209956 mac 209956 bytes_out 60405 209956 bytes_in 635698 209956 station_ip 5.119.181.147 209956 port 3 209956 unique_id port 209956 remote_ip 10.8.1.86 209958 username mostafa_es78 209958 mac 209958 bytes_out 14741798 209958 bytes_in 9540206 209958 station_ip 113.203.1.183 209958 port 33 209958 unique_id port 209958 remote_ip 10.8.0.42 209962 username daryaei1233 209962 mac 209962 bytes_out 0 209962 bytes_in 0 209962 station_ip 37.129.243.77 209962 port 42 209962 unique_id port 209962 remote_ip 10.8.0.6 209965 username sekonji0496 209965 kill_reason Another user logged on this global unique id 209965 mac 209965 bytes_out 0 209965 bytes_in 0 209965 station_ip 83.123.84.56 209965 port 30 209965 unique_id port 209965 remote_ip 10.8.0.70 209967 username barzegar 209967 mac 209967 bytes_out 0 209967 bytes_in 0 209967 station_ip 5.120.55.42 209967 port 32 209932 mac 209932 bytes_out 0 209932 bytes_in 0 209932 station_ip 37.129.243.77 209932 port 28 209932 unique_id port 209932 remote_ip 10.8.0.6 209936 username majidsarmast 209936 kill_reason Another user logged on this global unique id 209936 mac 209936 bytes_out 0 209936 bytes_in 0 209936 station_ip 86.57.86.96 209936 port 24 209936 unique_id port 209936 remote_ip 10.8.0.194 209937 username daryaei1233 209937 mac 209937 bytes_out 0 209937 bytes_in 0 209937 station_ip 37.129.243.77 209937 port 28 209937 unique_id port 209937 remote_ip 10.8.0.6 209939 username aminvpnipad 209939 mac 209939 bytes_out 0 209939 bytes_in 0 209939 station_ip 5.119.61.34 209939 port 28 209939 unique_id port 209939 remote_ip 10.8.0.202 209940 username mehrpoyan101 209940 mac 209940 bytes_out 991590 209940 bytes_in 10726515 209940 station_ip 5.120.132.95 209940 port 24 209940 unique_id port 209940 remote_ip 10.8.1.18 209943 username mehrpoyan101 209943 mac 209943 bytes_out 11540 209943 bytes_in 11309 209943 station_ip 5.120.132.95 209943 port 32 209943 unique_id port 209943 remote_ip 10.8.0.134 209945 username kalantary6037 209945 mac 209945 bytes_out 660440 209945 bytes_in 7497848 209945 station_ip 83.122.80.250 209945 port 22 209945 unique_id port 209945 remote_ip 10.8.1.98 209946 username pourshad 209946 mac 209946 bytes_out 0 209946 bytes_in 0 209946 station_ip 5.120.252.82 209946 port 3 209946 unique_id port 209946 remote_ip 10.8.1.10 209948 username aminvpnipad 209948 mac 209948 bytes_out 0 209948 bytes_in 0 209948 station_ip 5.119.61.34 209948 port 3 209948 unique_id port 209948 remote_ip 10.8.1.194 209949 username barzegar 209949 mac 209949 bytes_out 0 209949 bytes_in 0 209949 station_ip 5.120.55.42 209949 port 38 209949 unique_id port 209949 remote_ip 10.8.0.34 209950 username daryaei1233 209950 mac 209950 bytes_out 0 209950 bytes_in 0 209950 station_ip 37.129.243.77 209950 port 40 209950 unique_id port 209950 remote_ip 10.8.0.6 209951 username barzegar 209951 mac 209951 bytes_out 2982 209951 bytes_in 4833 209951 station_ip 5.120.55.42 209951 port 38 209951 unique_id port 209951 remote_ip 10.8.0.34 209953 username daryaei1233 209953 mac 209953 bytes_out 0 209953 bytes_in 0 209953 station_ip 37.129.243.77 209953 port 40 209953 unique_id port 209953 remote_ip 10.8.0.6 209954 username barzegar 209954 mac 209954 bytes_out 0 209954 bytes_in 0 209954 station_ip 5.120.55.42 209954 port 3 209954 unique_id port 209954 remote_ip 10.8.1.30 209960 username farhad3 209960 mac 209960 bytes_out 0 209960 bytes_in 0 209960 station_ip 5.119.181.147 209960 port 3 209960 unique_id port 209960 remote_ip 10.8.1.86 209963 username mostafa_es78 209963 mac 209963 bytes_out 5946 209963 bytes_in 9801 209963 station_ip 113.203.1.183 209963 port 33 209963 unique_id port 209963 remote_ip 10.8.0.42 209964 username daryaei1233 209964 mac 209964 bytes_out 0 209964 bytes_in 0 209964 station_ip 37.129.243.77 209964 port 33 209964 unique_id port 209964 remote_ip 10.8.0.6 209966 username tahmorsi 209966 mac 209966 bytes_out 290479 209966 bytes_in 739300 209966 station_ip 86.57.6.242 209966 port 32 209966 unique_id port 209966 remote_ip 10.8.0.218 209973 username esmaeilkazemi 209973 mac 209973 bytes_out 16506 209973 bytes_in 27152 209973 station_ip 83.123.64.239 209973 port 36 209973 unique_id port 209973 remote_ip 10.8.0.66 209976 username sekonji0496 209976 kill_reason Another user logged on this global unique id 209959 station_ip 37.129.243.77 209959 port 38 209959 unique_id port 209961 username soleymani5056 209961 mac 209961 bytes_out 36502 209961 bytes_in 68083 209961 station_ip 5.120.143.25 209961 port 40 209961 unique_id port 209961 remote_ip 10.8.0.246 209969 username esmaeilkazemi 209969 mac 209969 bytes_out 0 209969 bytes_in 0 209969 station_ip 83.123.64.239 209969 port 36 209969 unique_id port 209969 remote_ip 10.8.0.66 209975 username barzegar 209975 mac 209975 bytes_out 0 209975 bytes_in 0 209975 station_ip 5.120.55.42 209975 port 24 209975 unique_id port 209975 remote_ip 10.8.1.30 209981 username daryaei1233 209981 mac 209981 bytes_out 0 209981 bytes_in 0 209981 station_ip 37.129.243.77 209981 port 28 209981 unique_id port 209981 remote_ip 10.8.0.6 209983 username daryaei1233 209983 mac 209983 bytes_out 0 209983 bytes_in 0 209983 station_ip 37.129.243.77 209983 port 28 209983 unique_id port 209983 remote_ip 10.8.0.6 209985 username hosseine 209985 kill_reason Another user logged on this global unique id 209985 mac 209985 bytes_out 0 209985 bytes_in 0 209985 station_ip 37.129.135.232 209985 port 23 209985 unique_id port 209985 remote_ip 10.8.1.234 209986 username khalili2 209986 kill_reason Another user logged on this global unique id 209986 mac 209986 bytes_out 0 209986 bytes_in 0 209986 station_ip 5.120.68.137 209986 port 16 209986 unique_id port 209986 remote_ip 10.8.0.78 209988 username godarzi 209988 kill_reason Another user logged on this global unique id 209988 mac 209988 bytes_out 0 209988 bytes_in 0 209988 station_ip 5.202.65.237 209988 port 4 209988 unique_id port 209988 remote_ip 10.8.0.74 209990 username sabaghnezhad 209990 mac 209990 bytes_out 0 209990 bytes_in 0 209990 station_ip 83.122.74.56 209990 port 36 209990 unique_id port 209990 remote_ip 10.8.0.94 209991 username daryaei1233 209991 mac 209991 bytes_out 0 209991 bytes_in 0 209991 station_ip 37.129.243.77 209991 port 22 209991 unique_id port 209991 remote_ip 10.8.1.14 209992 username daryaei1233 209992 mac 209992 bytes_out 0 209992 bytes_in 0 209992 station_ip 37.129.243.77 209992 port 33 209992 unique_id port 209992 remote_ip 10.8.0.6 209997 username sekonji0496 209997 kill_reason Another user logged on this global unique id 209997 mac 209997 bytes_out 0 209997 bytes_in 0 209997 station_ip 83.123.84.56 209997 port 30 209997 unique_id port 210000 username daryaei1233 210000 mac 210000 bytes_out 0 210000 bytes_in 0 210000 station_ip 37.129.243.77 210000 port 33 210000 unique_id port 210000 remote_ip 10.8.0.6 210005 username daryaei1233 210005 mac 210005 bytes_out 0 210005 bytes_in 0 210005 station_ip 37.129.243.77 210005 port 33 210005 unique_id port 210005 remote_ip 10.8.0.6 210006 username barzegar 210006 mac 210006 bytes_out 0 210006 bytes_in 0 210006 station_ip 5.120.55.42 210006 port 27 210006 unique_id port 210006 remote_ip 10.8.1.30 210007 username khalili2 210007 kill_reason Another user logged on this global unique id 210007 mac 210007 bytes_out 0 210007 bytes_in 0 210007 station_ip 5.120.68.137 210007 port 16 210007 unique_id port 210018 username barzegar 210018 mac 210018 bytes_out 0 210018 bytes_in 0 210018 station_ip 5.120.55.42 210018 port 4 210018 unique_id port 210018 remote_ip 10.8.0.34 210022 username majidsarmast 210022 mac 210022 bytes_out 0 210022 bytes_in 0 210022 station_ip 86.57.86.96 210022 port 24 210022 unique_id port 210023 username kalantary6037 210023 mac 210023 bytes_out 0 210023 bytes_in 0 209967 unique_id port 209967 remote_ip 10.8.0.34 209968 username kalantary6037 209968 mac 209968 bytes_out 1598301 209968 bytes_in 19785254 209968 station_ip 83.122.123.14 209968 port 22 209968 unique_id port 209968 remote_ip 10.8.1.98 209970 username barzegar 209970 mac 209970 bytes_out 0 209970 bytes_in 0 209970 station_ip 5.120.55.42 209970 port 22 209970 unique_id port 209970 remote_ip 10.8.1.30 209971 username esmaeilkazemi 209971 mac 209971 bytes_out 0 209971 bytes_in 0 209971 station_ip 83.123.64.239 209971 port 40 209971 unique_id port 209971 remote_ip 10.8.0.66 209972 username esmaeilkazemi 209972 mac 209972 bytes_out 19738 209972 bytes_in 48986 209972 station_ip 83.123.64.239 209972 port 36 209972 unique_id port 209972 remote_ip 10.8.0.66 209974 username majidsarmast 209974 kill_reason Another user logged on this global unique id 209974 mac 209974 bytes_out 0 209974 bytes_in 0 209974 station_ip 86.57.86.96 209974 port 24 209974 unique_id port 209978 username barzegar 209978 mac 209978 bytes_out 0 209978 bytes_in 0 209978 station_ip 5.120.55.42 209978 port 42 209978 unique_id port 209978 remote_ip 10.8.0.34 209984 username teymori5660 209984 mac 209984 bytes_out 2887374 209984 bytes_in 30039482 209984 station_ip 5.120.86.253 209984 port 33 209984 unique_id port 209984 remote_ip 10.8.0.230 209987 username barzegar 209987 mac 209987 bytes_out 0 209987 bytes_in 0 209987 station_ip 5.120.55.42 209987 port 24 209987 unique_id port 209987 remote_ip 10.8.1.30 209989 username daryaei1233 209989 kill_reason Maximum check online fails reached 209989 mac 209989 bytes_out 0 209989 bytes_in 0 209989 station_ip 37.129.243.77 209989 port 28 209989 unique_id port 209993 username jafari 209993 kill_reason Another user logged on this global unique id 209993 mac 209993 bytes_out 0 209993 bytes_in 0 209993 station_ip 37.156.62.175 209993 port 41 209993 unique_id port 209993 remote_ip 10.8.0.110 209995 username daryaei1233 209995 mac 209995 bytes_out 0 209995 bytes_in 0 209995 station_ip 37.129.243.77 209995 port 33 209995 unique_id port 209995 remote_ip 10.8.0.6 209998 username esmaeilkazemi 209998 mac 209998 bytes_out 17207 209998 bytes_in 36852 209998 station_ip 83.123.64.239 209998 port 33 209998 unique_id port 209998 remote_ip 10.8.0.66 210001 username jafari 210001 mac 210001 bytes_out 0 210001 bytes_in 0 210001 station_ip 37.156.62.175 210001 port 41 210001 unique_id port 210004 username motamedi9772 210004 kill_reason Another user logged on this global unique id 210004 mac 210004 bytes_out 0 210004 bytes_in 0 210004 station_ip 83.123.10.156 210004 port 24 210004 unique_id port 210004 remote_ip 10.8.1.182 210008 username daryaei1233 210008 mac 210008 bytes_out 0 210008 bytes_in 0 210008 station_ip 37.129.243.77 210008 port 36 210008 unique_id port 210008 remote_ip 10.8.0.6 210009 username daryaei1233 210009 mac 210009 bytes_out 0 210009 bytes_in 0 210009 station_ip 37.129.243.77 210009 port 36 210009 unique_id port 210009 remote_ip 10.8.0.6 210011 username daryaei1233 210011 mac 210011 bytes_out 0 210011 bytes_in 0 210011 station_ip 37.129.243.77 210011 port 36 210011 unique_id port 210011 remote_ip 10.8.0.6 210013 username aminvpnipad 210013 mac 210013 bytes_out 0 210013 bytes_in 0 210013 station_ip 5.119.61.34 210013 port 36 210013 unique_id port 210013 remote_ip 10.8.0.202 210016 username kalantary6037 210016 mac 210016 bytes_out 1674776 210016 bytes_in 15398673 210016 station_ip 83.122.34.126 210016 port 22 209976 mac 209976 bytes_out 0 209976 bytes_in 0 209976 station_ip 83.123.84.56 209976 port 30 209976 unique_id port 209977 username aminvpnipad 209977 mac 209977 bytes_out 2835881 209977 bytes_in 25035588 209977 station_ip 5.119.61.34 209977 port 28 209977 unique_id port 209977 remote_ip 10.8.0.202 209979 username daryaei1233 209979 mac 209979 bytes_out 0 209979 bytes_in 0 209979 station_ip 37.129.243.77 209979 port 22 209979 unique_id port 209979 remote_ip 10.8.1.14 209980 username daryaei1233 209980 mac 209980 bytes_out 0 209980 bytes_in 0 209980 station_ip 37.129.243.77 209980 port 22 209980 unique_id port 209980 remote_ip 10.8.1.14 209982 username sekonji0496 209982 kill_reason Another user logged on this global unique id 209982 mac 209982 bytes_out 0 209982 bytes_in 0 209982 station_ip 83.123.84.56 209982 port 30 209982 unique_id port 209994 username daryaei1233 209994 mac 209994 bytes_out 0 209994 bytes_in 0 209994 station_ip 37.129.243.77 209994 port 33 209994 unique_id port 209994 remote_ip 10.8.0.6 209996 username daryaei1233 209996 mac 209996 bytes_out 0 209996 bytes_in 0 209996 station_ip 37.129.243.77 209996 port 36 209996 unique_id port 209996 remote_ip 10.8.0.6 209999 username aminvpnipad 209999 mac 209999 bytes_out 71850 209999 bytes_in 269182 209999 station_ip 5.119.61.34 209999 port 36 209999 unique_id port 209999 remote_ip 10.8.0.202 210002 username daryaei1233 210002 mac 210002 bytes_out 0 210002 bytes_in 0 210002 station_ip 37.129.243.77 210002 port 33 210002 unique_id port 210002 remote_ip 10.8.0.6 210003 username daryaei1233 210003 mac 210003 bytes_out 0 210003 bytes_in 0 210003 station_ip 37.129.243.77 210003 port 33 210003 unique_id port 210003 remote_ip 10.8.0.6 210010 username daryaei1233 210010 mac 210010 bytes_out 0 210010 bytes_in 0 210010 station_ip 37.129.243.77 210010 port 36 210010 unique_id port 210010 remote_ip 10.8.0.6 210012 username aminvpnipad 210012 mac 210012 bytes_out 0 210012 bytes_in 0 210012 station_ip 5.119.61.34 210012 port 36 210012 unique_id port 210012 remote_ip 10.8.0.202 210014 username barzegar 210014 mac 210014 bytes_out 0 210014 bytes_in 0 210014 station_ip 5.120.55.42 210014 port 27 210014 unique_id port 210014 remote_ip 10.8.1.30 210015 username daryaei1233 210015 mac 210015 bytes_out 0 210015 bytes_in 0 210015 station_ip 37.129.243.77 210015 port 42 210015 unique_id port 210015 remote_ip 10.8.0.6 210019 username khalili2 210019 kill_reason Another user logged on this global unique id 210019 mac 210019 bytes_out 0 210019 bytes_in 0 210019 station_ip 5.120.68.137 210019 port 16 210019 unique_id port 210020 username daryaei1233 210020 kill_reason Maximum check online fails reached 210020 mac 210020 bytes_out 0 210020 bytes_in 0 210020 station_ip 37.129.243.77 210020 port 4 210020 unique_id port 210025 username farhad3 210025 mac 210025 bytes_out 0 210025 bytes_in 0 210025 station_ip 5.119.181.147 210025 port 27 210025 unique_id port 210025 remote_ip 10.8.1.86 210026 username barzegar 210026 mac 210026 bytes_out 0 210026 bytes_in 0 210026 station_ip 5.120.55.42 210026 port 43 210026 unique_id port 210026 remote_ip 10.8.0.34 210032 username daryaei1233 210032 mac 210032 bytes_out 0 210032 bytes_in 0 210032 station_ip 37.129.243.77 210032 port 27 210032 unique_id port 210032 remote_ip 10.8.1.14 210034 username kamali3 210034 mac 210034 bytes_out 1022374 210034 bytes_in 1778907 210034 station_ip 83.122.220.34 210016 unique_id port 210016 remote_ip 10.8.1.98 210017 username godarzi 210017 mac 210017 bytes_out 0 210017 bytes_in 0 210017 station_ip 5.202.65.237 210017 port 4 210017 unique_id port 210021 username daryaei1233 210021 mac 210021 bytes_out 0 210021 bytes_in 0 210021 station_ip 37.129.243.77 210021 port 42 210021 unique_id port 210021 remote_ip 10.8.0.6 210027 username aminvpnipad 210027 mac 210027 bytes_out 58875 210027 bytes_in 176036 210027 station_ip 5.119.61.34 210027 port 40 210027 unique_id port 210027 remote_ip 10.8.0.202 210030 username saeeddamghani 210030 mac 210030 bytes_out 0 210030 bytes_in 0 210030 station_ip 217.60.218.97 210030 port 22 210030 unique_id port 210030 remote_ip 10.8.1.130 210033 username daryaei1233 210033 mac 210033 bytes_out 0 210033 bytes_in 0 210033 station_ip 37.129.243.77 210033 port 40 210033 unique_id port 210033 remote_ip 10.8.0.6 210039 username daryaei1233 210039 mac 210039 bytes_out 1710 210039 bytes_in 3943 210039 station_ip 37.129.243.77 210039 port 45 210039 unique_id port 210039 remote_ip 10.8.0.6 210041 username saeeddamghani 210041 mac 210041 bytes_out 0 210041 bytes_in 0 210041 station_ip 217.60.218.97 210041 port 44 210041 unique_id port 210041 remote_ip 10.8.0.162 210042 username khalili2 210042 kill_reason Another user logged on this global unique id 210042 mac 210042 bytes_out 0 210042 bytes_in 0 210042 station_ip 5.120.68.137 210042 port 16 210042 unique_id port 210043 username daryaei1233 210043 mac 210043 bytes_out 0 210043 bytes_in 0 210043 station_ip 37.129.243.77 210043 port 44 210043 unique_id port 210043 remote_ip 10.8.0.6 210045 username daryaei1233 210045 mac 210045 bytes_out 0 210045 bytes_in 0 210045 station_ip 37.129.243.77 210045 port 19 210045 unique_id port 210045 remote_ip 10.8.0.6 210047 username barzegar 210047 mac 210047 bytes_out 0 210047 bytes_in 0 210047 station_ip 5.120.55.42 210047 port 19 210047 unique_id port 210047 remote_ip 10.8.0.34 210051 username mostafa_es78 210051 kill_reason Another user logged on this global unique id 210051 mac 210051 bytes_out 0 210051 bytes_in 0 210051 station_ip 178.236.35.96 210051 port 33 210051 unique_id port 210051 remote_ip 10.8.0.42 210053 username sekonji0496 210053 mac 210053 bytes_out 0 210053 bytes_in 0 210053 station_ip 83.123.84.56 210053 port 30 210053 unique_id port 210054 username jafari 210054 kill_reason Another user logged on this global unique id 210054 mac 210054 bytes_out 0 210054 bytes_in 0 210054 station_ip 94.24.84.30 210054 port 42 210054 unique_id port 210054 remote_ip 10.8.0.110 210055 username nilufarrajaei 210055 mac 210055 bytes_out 10826819 210055 bytes_in 12258420 210055 station_ip 83.122.196.148 210055 port 32 210055 unique_id port 210055 remote_ip 10.8.0.50 210057 username motamedi9772 210057 mac 210057 bytes_out 0 210057 bytes_in 0 210057 station_ip 83.123.10.156 210057 port 24 210057 unique_id port 210059 username kamali3 210059 mac 210059 bytes_out 16986 210059 bytes_in 25366 210059 station_ip 83.122.220.34 210059 port 43 210059 unique_id port 210059 remote_ip 10.8.0.182 210063 username barzegar 210063 kill_reason Maximum check online fails reached 210063 mac 210063 bytes_out 0 210063 bytes_in 0 210063 station_ip 5.120.55.42 210063 port 37 210063 unique_id port 210069 username kamali3 210069 mac 210069 bytes_out 16981 210069 bytes_in 27833 210069 station_ip 83.122.220.34 210069 port 32 210069 unique_id port 210069 remote_ip 10.8.0.182 210023 station_ip 83.122.34.126 210023 port 22 210023 unique_id port 210023 remote_ip 10.8.1.98 210024 username saeeddamghani 210024 mac 210024 bytes_out 3386630 210024 bytes_in 21641578 210024 station_ip 217.60.175.231 210024 port 40 210024 unique_id port 210024 remote_ip 10.8.0.162 210028 username daryaei1233 210028 mac 210028 bytes_out 0 210028 bytes_in 0 210028 station_ip 37.129.243.77 210028 port 44 210028 unique_id port 210028 remote_ip 10.8.0.6 210029 username godarzi 210029 mac 210029 bytes_out 360959 210029 bytes_in 3387378 210029 station_ip 5.202.65.237 210029 port 24 210029 unique_id port 210029 remote_ip 10.8.0.74 210031 username sekonji0496 210031 kill_reason Another user logged on this global unique id 210031 mac 210031 bytes_out 0 210031 bytes_in 0 210031 station_ip 83.123.84.56 210031 port 30 210031 unique_id port 210035 username farhad3 210035 kill_reason Another user logged on this global unique id 210035 mac 210035 bytes_out 0 210035 bytes_in 0 210035 station_ip 5.119.181.147 210035 port 24 210035 unique_id port 210035 remote_ip 10.8.0.98 210036 username saeeddamghani 210036 kill_reason Maximum check online fails reached 210036 mac 210036 bytes_out 0 210036 bytes_in 0 210036 station_ip 217.60.218.97 210036 port 22 210036 unique_id port 210037 username aminvpnpc 210037 mac 210037 bytes_out 0 210037 bytes_in 0 210037 station_ip 5.119.61.34 210037 port 40 210037 unique_id port 210037 remote_ip 10.8.0.118 210038 username hamid1430 210038 mac 210038 bytes_out 313751 210038 bytes_in 1741413 210038 station_ip 83.123.193.119 210038 port 44 210038 unique_id port 210038 remote_ip 10.8.0.62 210040 username godarzi 210040 mac 210040 bytes_out 765798 210040 bytes_in 854904 210040 station_ip 5.202.65.237 210040 port 40 210040 unique_id port 210040 remote_ip 10.8.0.74 210046 username aminvpnipad 210046 mac 210046 bytes_out 0 210046 bytes_in 0 210046 station_ip 5.119.61.34 210046 port 44 210046 unique_id port 210046 remote_ip 10.8.0.202 210050 username barzegar 210050 mac 210050 bytes_out 0 210050 bytes_in 0 210050 station_ip 5.120.55.42 210050 port 19 210050 unique_id port 210050 remote_ip 10.8.0.34 210052 username kamali3 210052 mac 210052 bytes_out 0 210052 bytes_in 0 210052 station_ip 83.122.220.34 210052 port 43 210052 unique_id port 210052 remote_ip 10.8.0.182 210058 username majidsarmast 210058 mac 210058 bytes_out 0 210058 bytes_in 0 210058 station_ip 83.122.6.195 210058 port 28 210058 unique_id port 210058 remote_ip 10.8.1.178 210060 username soleymani5056 210060 mac 210060 bytes_out 672697 210060 bytes_in 1694451 210060 station_ip 5.119.35.50 210060 port 37 210060 unique_id port 210060 remote_ip 10.8.0.246 210062 username barzegar 210062 mac 210062 bytes_out 0 210062 bytes_in 0 210062 station_ip 5.120.55.42 210062 port 27 210062 unique_id port 210062 remote_ip 10.8.1.30 210064 username daryaei1233 210064 mac 210064 bytes_out 0 210064 bytes_in 0 210064 station_ip 37.129.243.77 210064 port 43 210064 unique_id port 210064 remote_ip 10.8.0.6 210065 username aminvpnipad 210065 mac 210065 bytes_out 0 210065 bytes_in 0 210065 station_ip 5.119.61.34 210065 port 43 210065 unique_id port 210065 remote_ip 10.8.0.202 210068 username daryaei1233 210068 mac 210068 bytes_out 0 210068 bytes_in 0 210068 station_ip 37.129.243.77 210068 port 43 210068 unique_id port 210068 remote_ip 10.8.0.6 210070 username soleymani5056 210070 mac 210070 bytes_out 301746 210070 bytes_in 139084 210034 port 37 210034 unique_id port 210034 remote_ip 10.8.0.182 210044 username dortaj3792 210044 mac 210044 bytes_out 7646485 210044 bytes_in 39365957 210044 station_ip 5.119.186.148 210044 port 19 210044 unique_id port 210044 remote_ip 10.8.0.10 210048 username hosseine 210048 mac 210048 bytes_out 0 210048 bytes_in 0 210048 station_ip 37.129.135.232 210048 port 23 210048 unique_id port 210049 username kalantary6037 210049 mac 210049 bytes_out 193810 210049 bytes_in 1438735 210049 station_ip 83.122.59.102 210049 port 40 210049 unique_id port 210049 remote_ip 10.8.0.18 210056 username mostafa_es78 210056 mac 210056 bytes_out 0 210056 bytes_in 0 210056 station_ip 178.236.35.96 210056 port 33 210056 unique_id port 210061 username charkhandaz3496 210061 kill_reason Another user logged on this global unique id 210061 mac 210061 bytes_out 0 210061 bytes_in 0 210061 station_ip 5.119.101.82 210061 port 41 210061 unique_id port 210061 remote_ip 10.8.0.142 210066 username mosi 210066 kill_reason Another user logged on this global unique id 210066 mac 210066 bytes_out 0 210066 bytes_in 0 210066 station_ip 2.179.191.207 210066 port 19 210066 unique_id port 210066 remote_ip 10.8.0.38 210067 username kalantary6037 210067 mac 210067 bytes_out 153209 210067 bytes_in 547023 210067 station_ip 83.122.123.14 210067 port 44 210067 unique_id port 210067 remote_ip 10.8.0.18 210072 username barzegar 210072 mac 210072 bytes_out 0 210072 bytes_in 0 210072 station_ip 5.120.55.42 210072 port 27 210072 unique_id port 210072 remote_ip 10.8.1.30 210075 username godarzi 210075 mac 210075 bytes_out 0 210075 bytes_in 0 210075 station_ip 5.202.65.237 210075 port 44 210075 unique_id port 210075 remote_ip 10.8.0.74 210076 username charkhandaz3496 210076 mac 210076 bytes_out 0 210076 bytes_in 0 210076 station_ip 5.119.101.82 210076 port 41 210076 unique_id port 210078 username motamedi9772 210078 kill_reason Another user logged on this global unique id 210078 mac 210078 bytes_out 0 210078 bytes_in 0 210078 station_ip 83.123.10.156 210078 port 23 210078 unique_id port 210078 remote_ip 10.8.1.182 210081 username aminvpnipad 210081 mac 210081 bytes_out 0 210081 bytes_in 0 210081 station_ip 5.119.61.34 210081 port 41 210081 unique_id port 210081 remote_ip 10.8.0.202 210083 username daryaei1233 210083 mac 210083 bytes_out 0 210083 bytes_in 0 210083 station_ip 37.129.243.77 210083 port 41 210083 unique_id port 210083 remote_ip 10.8.0.6 210085 username hatami 210085 mac 210085 bytes_out 911330 210085 bytes_in 8369377 210085 station_ip 151.235.125.252 210085 port 40 210085 unique_id port 210085 remote_ip 10.8.0.14 210089 username mosi 210089 kill_reason Another user logged on this global unique id 210089 mac 210089 bytes_out 0 210089 bytes_in 0 210089 station_ip 2.179.191.207 210089 port 19 210089 unique_id port 210092 username daryaei1233 210092 mac 210092 bytes_out 0 210092 bytes_in 0 210092 station_ip 37.129.243.77 210092 port 45 210092 unique_id port 210092 remote_ip 10.8.0.6 210094 username kalantary6037 210094 mac 210094 bytes_out 934178 210094 bytes_in 10912958 210094 station_ip 83.122.89.30 210094 port 33 210094 unique_id port 210094 remote_ip 10.8.0.18 210098 username daryaei1233 210098 mac 210098 bytes_out 0 210098 bytes_in 0 210098 station_ip 37.129.243.77 210098 port 43 210098 unique_id port 210098 remote_ip 10.8.0.6 210101 username aminvpn 210101 mac 210101 bytes_out 0 210101 bytes_in 0 210101 station_ip 83.123.97.50 210101 port 36 210070 station_ip 5.119.131.230 210070 port 33 210070 unique_id port 210070 remote_ip 10.8.0.246 210073 username soleymani5056 210073 mac 210073 bytes_out 0 210073 bytes_in 0 210073 station_ip 5.120.160.194 210073 port 32 210073 unique_id port 210073 remote_ip 10.8.0.246 210077 username jafari 210077 kill_reason Another user logged on this global unique id 210077 mac 210077 bytes_out 0 210077 bytes_in 0 210077 station_ip 94.24.84.30 210077 port 42 210077 unique_id port 210079 username barzegar 210079 mac 210079 bytes_out 0 210079 bytes_in 0 210079 station_ip 5.120.55.42 210079 port 27 210079 unique_id port 210079 remote_ip 10.8.1.30 210086 username khalili2 210086 mac 210086 bytes_out 0 210086 bytes_in 0 210086 station_ip 5.120.68.137 210086 port 16 210086 unique_id port 210087 username morteza4424 210087 mac 210087 bytes_out 2270698 210087 bytes_in 27121855 210087 station_ip 113.203.83.70 210087 port 33 210087 unique_id port 210087 remote_ip 10.8.0.30 210093 username daryaei1233 210093 kill_reason Maximum check online fails reached 210093 mac 210093 bytes_out 0 210093 bytes_in 0 210093 station_ip 37.129.243.77 210093 port 43 210093 unique_id port 210096 username aminvpnipad 210096 mac 210096 bytes_out 0 210096 bytes_in 0 210096 station_ip 5.119.61.34 210096 port 45 210096 unique_id port 210096 remote_ip 10.8.0.202 210099 username milan 210099 kill_reason Another user logged on this global unique id 210099 mac 210099 bytes_out 0 210099 bytes_in 0 210099 station_ip 5.119.220.159 210099 port 35 210099 unique_id port 210100 username majidsarmast 210100 mac 210100 bytes_out 0 210100 bytes_in 0 210100 station_ip 83.122.6.195 210100 port 24 210100 unique_id port 210102 username nilufarrajaei 210102 mac 210102 bytes_out 2667956 210102 bytes_in 10041987 210102 station_ip 83.122.196.148 210102 port 30 210102 unique_id port 210102 remote_ip 10.8.0.50 210104 username heydary4246 210104 mac 210104 bytes_out 1348801 210104 bytes_in 11952476 210104 station_ip 113.203.119.226 210104 port 31 210104 unique_id port 210104 remote_ip 10.8.0.226 210105 username kamali3 210105 mac 210105 bytes_out 0 210105 bytes_in 0 210105 station_ip 83.122.220.34 210105 port 44 210105 unique_id port 210105 remote_ip 10.8.0.182 210107 username daryaei1233 210107 mac 210107 bytes_out 0 210107 bytes_in 0 210107 station_ip 37.129.243.77 210107 port 44 210107 unique_id port 210107 remote_ip 10.8.0.6 210112 username daryaei1233 210112 kill_reason Maximum check online fails reached 210112 mac 210112 bytes_out 0 210112 bytes_in 0 210112 station_ip 37.129.243.77 210112 port 36 210112 unique_id port 210116 username khalili2 210116 mac 210116 bytes_out 0 210116 bytes_in 0 210116 station_ip 5.120.68.137 210116 port 16 210116 unique_id port 210116 remote_ip 10.8.0.78 210117 username aminvpnipad 210117 mac 210117 bytes_out 1644 210117 bytes_in 3948 210117 station_ip 5.119.61.34 210117 port 24 210117 unique_id port 210117 remote_ip 10.8.0.202 210118 username barzegar 210118 mac 210118 bytes_out 0 210118 bytes_in 0 210118 station_ip 5.120.55.42 210118 port 23 210118 unique_id port 210118 remote_ip 10.8.1.30 210119 username barzegar 210119 mac 210119 bytes_out 704258 210119 bytes_in 34116517 210119 station_ip 5.120.55.42 210119 port 24 210119 unique_id port 210119 remote_ip 10.8.0.34 210120 username mosi 210120 kill_reason Another user logged on this global unique id 210120 mac 210120 bytes_out 0 210120 bytes_in 0 210120 station_ip 2.179.191.207 210120 port 19 210071 username daryaei1233 210071 mac 210071 bytes_out 0 210071 bytes_in 0 210071 station_ip 37.129.243.77 210071 port 33 210071 unique_id port 210071 remote_ip 10.8.0.6 210074 username daryaei1233 210074 mac 210074 bytes_out 0 210074 bytes_in 0 210074 station_ip 37.129.243.77 210074 port 33 210074 unique_id port 210074 remote_ip 10.8.0.6 210080 username kamali3 210080 mac 210080 bytes_out 23422 210080 bytes_in 36394 210080 station_ip 83.122.220.34 210080 port 43 210080 unique_id port 210080 remote_ip 10.8.0.182 210082 username aminvpnipad 210082 mac 210082 bytes_out 0 210082 bytes_in 0 210082 station_ip 5.119.61.34 210082 port 41 210082 unique_id port 210082 remote_ip 10.8.0.202 210084 username daryaei1233 210084 mac 210084 bytes_out 0 210084 bytes_in 0 210084 station_ip 37.129.243.77 210084 port 41 210084 unique_id port 210084 remote_ip 10.8.0.6 210088 username barzegar 210088 mac 210088 bytes_out 0 210088 bytes_in 0 210088 station_ip 5.120.55.42 210088 port 16 210088 unique_id port 210088 remote_ip 10.8.0.34 210090 username daryaei1233 210090 mac 210090 bytes_out 0 210090 bytes_in 0 210090 station_ip 37.129.243.77 210090 port 41 210090 unique_id port 210090 remote_ip 10.8.0.6 210091 username daryaei1233 210091 mac 210091 bytes_out 0 210091 bytes_in 0 210091 station_ip 37.129.243.77 210091 port 41 210091 unique_id port 210091 remote_ip 10.8.0.6 210095 username majidsarmast 210095 kill_reason Another user logged on this global unique id 210095 mac 210095 bytes_out 0 210095 bytes_in 0 210095 station_ip 83.122.6.195 210095 port 24 210095 unique_id port 210095 remote_ip 10.8.1.178 210097 username jafari 210097 kill_reason Another user logged on this global unique id 210097 mac 210097 bytes_out 0 210097 bytes_in 0 210097 station_ip 94.24.84.30 210097 port 42 210097 unique_id port 210103 username motamedi9772 210103 mac 210103 bytes_out 0 210103 bytes_in 0 210103 station_ip 83.123.10.156 210103 port 23 210103 unique_id port 210108 username barzegar 210108 mac 210108 bytes_out 0 210108 bytes_in 0 210108 station_ip 5.120.55.42 210108 port 27 210108 unique_id port 210108 remote_ip 10.8.1.30 210114 username majidsarmast 210114 mac 210114 bytes_out 0 210114 bytes_in 0 210114 station_ip 83.122.6.195 210114 port 23 210114 unique_id port 210114 remote_ip 10.8.1.178 210123 username motamedi9772 210123 kill_reason Another user logged on this global unique id 210123 mac 210123 bytes_out 0 210123 bytes_in 0 210123 station_ip 83.123.10.156 210123 port 24 210123 unique_id port 210125 username daryaei1233 210125 mac 210125 bytes_out 0 210125 bytes_in 0 210125 station_ip 37.129.201.129 210125 port 23 210125 unique_id port 210125 remote_ip 10.8.1.14 210127 username milan 210127 kill_reason Another user logged on this global unique id 210127 mac 210127 bytes_out 0 210127 bytes_in 0 210127 station_ip 5.119.220.159 210127 port 35 210127 unique_id port 210130 username mosi 210130 kill_reason Another user logged on this global unique id 210130 mac 210130 bytes_out 0 210130 bytes_in 0 210130 station_ip 2.179.191.207 210130 port 19 210130 unique_id port 210136 username kamali3 210136 mac 210136 bytes_out 135883 210136 bytes_in 284719 210136 station_ip 83.122.220.34 210136 port 31 210136 unique_id port 210136 remote_ip 10.8.0.182 210140 username farhad3 210140 mac 210140 bytes_out 3202295 210140 bytes_in 15399140 210140 station_ip 5.119.181.147 210140 port 44 210140 unique_id port 210140 remote_ip 10.8.0.98 210144 username soleymani5056 210101 unique_id port 210101 remote_ip 10.8.0.58 210106 username daryaei1233 210106 mac 210106 bytes_out 0 210106 bytes_in 0 210106 station_ip 37.129.243.77 210106 port 27 210106 unique_id port 210106 remote_ip 10.8.1.14 210109 username motamedi9772 210109 mac 210109 bytes_out 157441 210109 bytes_in 4888302 210109 station_ip 83.123.10.156 210109 port 24 210109 unique_id port 210109 remote_ip 10.8.1.182 210110 username daryaei1233 210110 mac 210110 bytes_out 0 210110 bytes_in 0 210110 station_ip 37.129.243.77 210110 port 24 210110 unique_id port 210110 remote_ip 10.8.0.6 210111 username farhad3 210111 mac 210111 bytes_out 0 210111 bytes_in 0 210111 station_ip 5.119.181.147 210111 port 44 210111 unique_id port 210111 remote_ip 10.8.0.98 210113 username farhad3 210113 mac 210113 bytes_out 0 210113 bytes_in 0 210113 station_ip 5.119.181.147 210113 port 44 210113 unique_id port 210113 remote_ip 10.8.0.98 210115 username daryaei1233 210115 mac 210115 bytes_out 0 210115 bytes_in 0 210115 station_ip 37.129.243.77 210115 port 24 210115 unique_id port 210115 remote_ip 10.8.0.6 210121 username mostafa_es78 210121 mac 210121 bytes_out 0 210121 bytes_in 0 210121 station_ip 178.236.35.96 210121 port 40 210121 unique_id port 210121 remote_ip 10.8.0.42 210122 username aminvpnipad 210122 mac 210122 bytes_out 0 210122 bytes_in 0 210122 station_ip 5.119.61.34 210122 port 23 210122 unique_id port 210122 remote_ip 10.8.1.194 210124 username naeimeh 210124 mac 210124 bytes_out 1017656 210124 bytes_in 51658963 210124 station_ip 37.129.248.232 210124 port 24 210124 unique_id port 210124 remote_ip 10.8.0.166 210126 username barzegar 210126 mac 210126 bytes_out 0 210126 bytes_in 0 210126 station_ip 5.120.55.42 210126 port 27 210126 unique_id port 210126 remote_ip 10.8.1.30 210131 username barzegar 210131 mac 210131 bytes_out 0 210131 bytes_in 0 210131 station_ip 5.120.55.42 210131 port 27 210131 unique_id port 210131 remote_ip 10.8.1.30 210133 username khademi 210133 mac 210133 bytes_out 3445041 210133 bytes_in 33590399 210133 station_ip 37.129.32.24 210133 port 25 210133 unique_id port 210133 remote_ip 10.8.0.26 210135 username daryaei1233 210135 mac 210135 bytes_out 0 210135 bytes_in 0 210135 station_ip 37.129.201.129 210135 port 24 210135 unique_id port 210137 username aminvpn 210137 mac 210137 bytes_out 0 210137 bytes_in 0 210137 station_ip 83.123.97.50 210137 port 33 210137 unique_id port 210137 remote_ip 10.8.0.58 210139 username naeimeh 210139 mac 210139 bytes_out 0 210139 bytes_in 0 210139 station_ip 37.129.248.232 210139 port 40 210139 unique_id port 210139 remote_ip 10.8.0.166 210142 username daryaei1233 210142 mac 210142 bytes_out 5065 210142 bytes_in 7781 210142 station_ip 37.129.201.129 210142 port 31 210142 unique_id port 210142 remote_ip 10.8.0.6 210146 username daryaei1233 210146 kill_reason Maximum check online fails reached 210146 mac 210146 bytes_out 0 210146 bytes_in 0 210146 station_ip 37.129.201.129 210146 port 43 210146 unique_id port 210147 username khademi 210147 mac 210147 bytes_out 79717 210147 bytes_in 448171 210147 station_ip 37.129.32.24 210147 port 31 210147 unique_id port 210147 remote_ip 10.8.0.26 210148 username daryaei1233 210148 mac 210148 bytes_out 0 210148 bytes_in 0 210148 station_ip 37.129.201.129 210148 port 44 210148 unique_id port 210148 remote_ip 10.8.0.6 210150 username barzegar 210150 mac 210150 bytes_out 0 210120 unique_id port 210128 username barzegar 210128 mac 210128 bytes_out 0 210128 bytes_in 0 210128 station_ip 5.120.55.42 210128 port 45 210128 unique_id port 210128 remote_ip 10.8.0.34 210129 username aminvpnipad 210129 mac 210129 bytes_out 0 210129 bytes_in 0 210129 station_ip 5.119.61.34 210129 port 45 210129 unique_id port 210129 remote_ip 10.8.0.202 210132 username daryaei1233 210132 mac 210132 bytes_out 0 210132 bytes_in 0 210132 station_ip 37.129.201.129 210132 port 23 210132 unique_id port 210132 remote_ip 10.8.1.14 210134 username charkhandaz3496 210134 kill_reason Another user logged on this global unique id 210134 mac 210134 bytes_out 0 210134 bytes_in 0 210134 station_ip 5.119.101.82 210134 port 32 210134 unique_id port 210134 remote_ip 10.8.0.142 210138 username nilufarrajaei 210138 mac 210138 bytes_out 0 210138 bytes_in 0 210138 station_ip 83.122.196.148 210138 port 43 210138 unique_id port 210138 remote_ip 10.8.0.50 210141 username heydary4246 210141 mac 210141 bytes_out 0 210141 bytes_in 0 210141 station_ip 113.203.119.226 210141 port 30 210141 unique_id port 210141 remote_ip 10.8.0.226 210143 username aminvpnipad 210143 mac 210143 bytes_out 0 210143 bytes_in 0 210143 station_ip 5.119.61.34 210143 port 43 210143 unique_id port 210143 remote_ip 10.8.0.202 210145 username daryaei1233 210145 mac 210145 bytes_out 0 210145 bytes_in 0 210145 station_ip 37.129.201.129 210145 port 43 210145 unique_id port 210145 remote_ip 10.8.0.6 210149 username naeimeh 210149 mac 210149 bytes_out 1058105 210149 bytes_in 9606652 210149 station_ip 37.129.248.232 210149 port 33 210149 unique_id port 210149 remote_ip 10.8.0.166 210154 username aminvpnipad 210154 mac 210154 bytes_out 0 210154 bytes_in 0 210154 station_ip 5.119.61.34 210154 port 33 210154 unique_id port 210154 remote_ip 10.8.0.202 210155 username daryaei1233 210155 mac 210155 bytes_out 0 210155 bytes_in 0 210155 station_ip 37.129.201.129 210155 port 31 210155 unique_id port 210155 remote_ip 10.8.0.6 210156 username jafari 210156 mac 210156 bytes_out 0 210156 bytes_in 0 210156 station_ip 94.24.84.30 210156 port 42 210156 unique_id port 210157 username daryaei1233 210157 mac 210157 bytes_out 0 210157 bytes_in 0 210157 station_ip 37.129.201.129 210157 port 33 210157 unique_id port 210157 remote_ip 10.8.0.6 210160 username daryaei1233 210160 mac 210160 bytes_out 0 210160 bytes_in 0 210160 station_ip 37.129.201.129 210160 port 42 210160 unique_id port 210160 remote_ip 10.8.0.6 210162 username barzegar 210162 mac 210162 bytes_out 0 210162 bytes_in 0 210162 station_ip 5.120.55.42 210162 port 3 210162 unique_id port 210162 remote_ip 10.8.1.30 210163 username barzegar 210163 mac 210163 bytes_out 0 210163 bytes_in 0 210163 station_ip 5.120.55.42 210163 port 3 210163 unique_id port 210163 remote_ip 10.8.1.30 210169 username mosi 210169 mac 210169 bytes_out 0 210169 bytes_in 0 210169 station_ip 2.179.191.207 210169 port 19 210169 unique_id port 210175 username daryaei1233 210175 mac 210175 bytes_out 0 210175 bytes_in 0 210175 station_ip 37.129.201.129 210175 port 32 210175 unique_id port 210175 remote_ip 10.8.0.6 210176 username aminvpnipad 210176 mac 210176 bytes_out 0 210176 bytes_in 0 210176 station_ip 5.119.61.34 210176 port 32 210176 unique_id port 210176 remote_ip 10.8.0.202 210178 username aminvpn 210178 kill_reason Another user logged on this global unique id 210178 mac 210178 bytes_out 0 210144 mac 210144 bytes_out 317810 210144 bytes_in 555806 210144 station_ip 5.119.139.197 210144 port 45 210144 unique_id port 210144 remote_ip 10.8.0.246 210151 username jafari 210151 kill_reason Another user logged on this global unique id 210151 mac 210151 bytes_out 0 210151 bytes_in 0 210151 station_ip 94.24.84.30 210151 port 42 210151 unique_id port 210152 username milan 210152 kill_reason Another user logged on this global unique id 210152 mac 210152 bytes_out 0 210152 bytes_in 0 210152 station_ip 5.119.220.159 210152 port 35 210152 unique_id port 210159 username daryaei1233 210159 mac 210159 bytes_out 0 210159 bytes_in 0 210159 station_ip 37.129.201.129 210159 port 33 210159 unique_id port 210159 remote_ip 10.8.0.6 210161 username motamedi9772 210161 kill_reason Another user logged on this global unique id 210161 mac 210161 bytes_out 0 210161 bytes_in 0 210161 station_ip 83.123.10.156 210161 port 30 210161 unique_id port 210161 remote_ip 10.8.0.86 210164 username charkhandaz3496 210164 mac 210164 bytes_out 0 210164 bytes_in 0 210164 station_ip 5.119.101.82 210164 port 32 210164 unique_id port 210165 username aminvpnipad 210165 mac 210165 bytes_out 0 210165 bytes_in 0 210165 station_ip 5.119.61.34 210165 port 42 210165 unique_id port 210165 remote_ip 10.8.0.202 210168 username soleymani5056 210168 mac 210168 bytes_out 16580 210168 bytes_in 32273 210168 station_ip 5.119.54.240 210168 port 32 210168 unique_id port 210168 remote_ip 10.8.0.246 210170 username farhad3 210170 kill_reason Another user logged on this global unique id 210170 mac 210170 bytes_out 0 210170 bytes_in 0 210170 station_ip 5.119.181.147 210170 port 40 210170 unique_id port 210170 remote_ip 10.8.0.98 210171 username daryaei1233 210171 mac 210171 bytes_out 0 210171 bytes_in 0 210171 station_ip 37.129.201.129 210171 port 19 210171 unique_id port 210171 remote_ip 10.8.0.6 210173 username aminvpn 210173 mac 210173 bytes_out 2804767 210173 bytes_in 27734856 210173 station_ip 83.123.97.50 210173 port 46 210173 unique_id port 210173 remote_ip 10.8.0.58 210174 username barzegar 210174 mac 210174 bytes_out 0 210174 bytes_in 0 210174 station_ip 5.120.55.42 210174 port 32 210174 unique_id port 210174 remote_ip 10.8.0.34 210177 username nilufarrajaei 210177 kill_reason Another user logged on this global unique id 210177 mac 210177 bytes_out 0 210177 bytes_in 0 210177 station_ip 83.122.196.148 210177 port 47 210177 unique_id port 210177 remote_ip 10.8.0.50 210183 username daryaei1233 210183 mac 210183 bytes_out 0 210183 bytes_in 0 210183 station_ip 37.129.201.129 210183 port 32 210183 unique_id port 210183 remote_ip 10.8.0.6 210185 username nilufarrajaei 210185 mac 210185 bytes_out 0 210185 bytes_in 0 210185 station_ip 83.122.196.148 210185 port 47 210185 unique_id port 210193 username motamedi9772 210193 mac 210193 bytes_out 0 210193 bytes_in 0 210193 station_ip 83.123.10.156 210193 port 30 210193 unique_id port 210195 username jafari 210195 mac 210195 bytes_out 0 210195 bytes_in 0 210195 station_ip 94.24.84.30 210195 port 42 210195 unique_id port 210195 remote_ip 10.8.0.110 210198 username farhad3 210198 kill_reason Another user logged on this global unique id 210198 mac 210198 bytes_out 0 210198 bytes_in 0 210198 station_ip 5.119.181.147 210198 port 40 210198 unique_id port 210201 username daryaei1233 210201 mac 210201 bytes_out 112077 210201 bytes_in 223821 210201 station_ip 37.129.201.129 210201 port 3 210201 unique_id port 210201 remote_ip 10.8.1.14 210205 username daryaei1233 210150 bytes_in 0 210150 station_ip 5.120.55.42 210150 port 24 210150 unique_id port 210150 remote_ip 10.8.1.30 210153 username daryaei1233 210153 mac 210153 bytes_out 0 210153 bytes_in 0 210153 station_ip 37.129.201.129 210153 port 31 210153 unique_id port 210153 remote_ip 10.8.0.6 210158 username pourshad 210158 mac 210158 bytes_out 0 210158 bytes_in 0 210158 station_ip 5.120.252.82 210158 port 3 210158 unique_id port 210158 remote_ip 10.8.1.10 210166 username daryaei1233 210166 mac 210166 bytes_out 0 210166 bytes_in 0 210166 station_ip 37.129.201.129 210166 port 32 210166 unique_id port 210166 remote_ip 10.8.0.6 210167 username hatami 210167 mac 210167 bytes_out 254129 210167 bytes_in 155329 210167 station_ip 151.235.125.252 210167 port 33 210167 unique_id port 210167 remote_ip 10.8.0.14 210172 username aminvpnipad 210172 mac 210172 bytes_out 0 210172 bytes_in 0 210172 station_ip 5.119.61.34 210172 port 3 210172 unique_id port 210172 remote_ip 10.8.1.194 210179 username daryaei1233 210179 mac 210179 bytes_out 0 210179 bytes_in 0 210179 station_ip 37.129.201.129 210179 port 32 210179 unique_id port 210179 remote_ip 10.8.0.6 210180 username motamedi9772 210180 kill_reason Another user logged on this global unique id 210180 mac 210180 bytes_out 0 210180 bytes_in 0 210180 station_ip 83.123.10.156 210180 port 30 210180 unique_id port 210181 username daryaei1233 210181 mac 210181 bytes_out 0 210181 bytes_in 0 210181 station_ip 37.129.201.129 210181 port 32 210181 unique_id port 210181 remote_ip 10.8.0.6 210189 username aminvpnipad 210189 mac 210189 bytes_out 0 210189 bytes_in 0 210189 station_ip 5.119.61.34 210189 port 33 210189 unique_id port 210189 remote_ip 10.8.0.202 210191 username jafari 210191 mac 210191 bytes_out 0 210191 bytes_in 0 210191 station_ip 94.24.84.30 210191 port 31 210191 unique_id port 210191 remote_ip 10.8.0.110 210194 username aminvpn 210194 kill_reason Another user logged on this global unique id 210194 mac 210194 bytes_out 0 210194 bytes_in 0 210194 station_ip 83.123.190.10 210194 port 19 210194 unique_id port 210196 username aminvpn 210196 mac 210196 bytes_out 0 210196 bytes_in 0 210196 station_ip 83.123.190.10 210196 port 19 210196 unique_id port 210202 username farhad3 210202 kill_reason Another user logged on this global unique id 210202 mac 210202 bytes_out 0 210202 bytes_in 0 210202 station_ip 5.119.181.147 210202 port 40 210202 unique_id port 210204 username kamali3 210204 mac 210204 bytes_out 0 210204 bytes_in 0 210204 station_ip 83.122.220.34 210204 port 25 210204 unique_id port 210204 remote_ip 10.8.0.182 210210 username aminvpnipad 210210 kill_reason Maximum check online fails reached 210210 mac 210210 bytes_out 0 210210 bytes_in 0 210210 station_ip 5.119.61.34 210210 port 30 210210 unique_id port 210215 username milan 210215 mac 210215 bytes_out 0 210215 bytes_in 0 210215 station_ip 5.119.220.159 210215 port 35 210215 unique_id port 210219 username aminvpn 210219 mac 210219 bytes_out 0 210219 bytes_in 0 210219 station_ip 5.120.114.235 210219 port 19 210219 unique_id port 210221 username farhad3 210221 mac 210221 bytes_out 0 210221 bytes_in 0 210221 station_ip 5.119.181.147 210221 port 35 210221 unique_id port 210221 remote_ip 10.8.0.98 210222 username barzegar 210222 mac 210222 bytes_out 0 210222 bytes_in 0 210222 station_ip 5.120.55.42 210222 port 35 210222 unique_id port 210222 remote_ip 10.8.0.34 210224 username aminvpnipad 210178 bytes_in 0 210178 station_ip 83.123.190.10 210178 port 19 210178 unique_id port 210178 remote_ip 10.8.0.58 210182 username barzegar 210182 mac 210182 bytes_out 0 210182 bytes_in 0 210182 station_ip 5.120.55.42 210182 port 32 210182 unique_id port 210182 remote_ip 10.8.0.34 210184 username aminvpn 210184 kill_reason Another user logged on this global unique id 210184 mac 210184 bytes_out 0 210184 bytes_in 0 210184 station_ip 83.123.190.10 210184 port 19 210184 unique_id port 210186 username jafari 210186 mac 210186 bytes_out 0 210186 bytes_in 0 210186 station_ip 94.24.84.30 210186 port 31 210186 unique_id port 210186 remote_ip 10.8.0.110 210187 username jafari 210187 mac 210187 bytes_out 0 210187 bytes_in 0 210187 station_ip 94.24.84.30 210187 port 33 210187 unique_id port 210187 remote_ip 10.8.0.110 210188 username barzegar 210188 mac 210188 bytes_out 0 210188 bytes_in 0 210188 station_ip 5.120.55.42 210188 port 33 210188 unique_id port 210188 remote_ip 10.8.0.34 210190 username daryaei1233 210190 mac 210190 bytes_out 0 210190 bytes_in 0 210190 station_ip 37.129.201.129 210190 port 42 210190 unique_id port 210190 remote_ip 10.8.0.6 210192 username kalantary6037 210192 mac 210192 bytes_out 0 210192 bytes_in 0 210192 station_ip 83.122.107.246 210192 port 33 210192 unique_id port 210192 remote_ip 10.8.0.18 210197 username barzegar 210197 mac 210197 bytes_out 0 210197 bytes_in 0 210197 station_ip 5.120.55.42 210197 port 30 210197 unique_id port 210197 remote_ip 10.8.0.34 210199 username aminvpnipad 210199 mac 210199 bytes_out 0 210199 bytes_in 0 210199 station_ip 5.119.61.34 210199 port 19 210199 unique_id port 210199 remote_ip 10.8.0.202 210200 username barzegar 210200 mac 210200 bytes_out 0 210200 bytes_in 0 210200 station_ip 5.120.55.42 210200 port 30 210200 unique_id port 210200 remote_ip 10.8.0.34 210203 username daryaei1233 210203 kill_reason Maximum check online fails reached 210203 mac 210203 bytes_out 0 210203 bytes_in 0 210203 station_ip 37.129.201.129 210203 port 3 210203 unique_id port 210211 username farhad3 210211 mac 210211 bytes_out 0 210211 bytes_in 0 210211 station_ip 5.119.181.147 210211 port 40 210211 unique_id port 210213 username jafari 210213 mac 210213 bytes_out 0 210213 bytes_in 0 210213 station_ip 94.24.84.30 210213 port 31 210213 unique_id port 210213 remote_ip 10.8.0.110 210214 username daryaei1233 210214 mac 210214 bytes_out 0 210214 bytes_in 0 210214 station_ip 37.129.201.129 210214 port 27 210214 unique_id port 210214 remote_ip 10.8.1.14 210225 username barzegar 210225 mac 210225 bytes_out 0 210225 bytes_in 0 210225 station_ip 5.120.55.42 210225 port 40 210225 unique_id port 210225 remote_ip 10.8.0.34 210230 username aminvpnipad 210230 mac 210230 bytes_out 0 210230 bytes_in 0 210230 station_ip 5.119.61.34 210230 port 40 210230 unique_id port 210230 remote_ip 10.8.0.202 210233 username jafari 210233 mac 210233 bytes_out 0 210233 bytes_in 0 210233 station_ip 94.24.84.30 210233 port 40 210233 unique_id port 210233 remote_ip 10.8.0.110 210237 username heydary4246 210237 mac 210237 bytes_out 260026 210237 bytes_in 1094300 210237 station_ip 113.203.119.226 210237 port 23 210237 unique_id port 210237 remote_ip 10.8.1.238 210239 username barzegar 210239 mac 210239 bytes_out 0 210239 bytes_in 0 210239 station_ip 5.120.55.42 210239 port 40 210239 unique_id port 210239 remote_ip 10.8.0.34 210242 username akbari0070 210205 mac 210205 bytes_out 0 210205 bytes_in 0 210205 station_ip 37.129.201.129 210205 port 27 210205 unique_id port 210205 remote_ip 10.8.1.14 210206 username daryaei1233 210206 kill_reason Maximum check online fails reached 210206 mac 210206 bytes_out 0 210206 bytes_in 0 210206 station_ip 37.129.201.129 210206 port 24 210206 unique_id port 210207 username daryaei1233 210207 mac 210207 bytes_out 0 210207 bytes_in 0 210207 station_ip 37.129.201.129 210207 port 27 210207 unique_id port 210207 remote_ip 10.8.1.14 210208 username daryaei1233 210208 mac 210208 bytes_out 0 210208 bytes_in 0 210208 station_ip 37.129.201.129 210208 port 27 210208 unique_id port 210208 remote_ip 10.8.1.14 210209 username daryaei1233 210209 mac 210209 bytes_out 0 210209 bytes_in 0 210209 station_ip 37.129.201.129 210209 port 33 210209 unique_id port 210209 remote_ip 10.8.0.6 210212 username aminvpn 210212 kill_reason Another user logged on this global unique id 210212 mac 210212 bytes_out 0 210212 bytes_in 0 210212 station_ip 5.120.114.235 210212 port 19 210212 unique_id port 210212 remote_ip 10.8.0.58 210216 username daryaei1233 210216 mac 210216 bytes_out 0 210216 bytes_in 0 210216 station_ip 37.129.201.129 210216 port 31 210216 unique_id port 210216 remote_ip 10.8.0.6 210217 username barzegar 210217 mac 210217 bytes_out 0 210217 bytes_in 0 210217 station_ip 5.120.55.42 210217 port 31 210217 unique_id port 210217 remote_ip 10.8.0.34 210218 username aminvpnipad 210218 mac 210218 bytes_out 0 210218 bytes_in 0 210218 station_ip 5.119.61.34 210218 port 31 210218 unique_id port 210218 remote_ip 10.8.0.202 210220 username motamedi9772 210220 mac 210220 bytes_out 0 210220 bytes_in 0 210220 station_ip 83.123.10.156 210220 port 40 210220 unique_id port 210220 remote_ip 10.8.0.86 210223 username farhad3 210223 mac 210223 bytes_out 0 210223 bytes_in 0 210223 station_ip 5.119.181.147 210223 port 35 210223 unique_id port 210223 remote_ip 10.8.0.98 210226 username daryaei1233 210226 mac 210226 bytes_out 0 210226 bytes_in 0 210226 station_ip 37.129.206.137 210226 port 42 210226 unique_id port 210226 remote_ip 10.8.0.6 210228 username mosi 210228 kill_reason Another user logged on this global unique id 210228 mac 210228 bytes_out 0 210228 bytes_in 0 210228 station_ip 2.183.56.141 210228 port 19 210228 unique_id port 210228 remote_ip 10.8.0.38 210229 username jafari 210229 mac 210229 bytes_out 0 210229 bytes_in 0 210229 station_ip 94.24.84.30 210229 port 40 210229 unique_id port 210229 remote_ip 10.8.0.110 210232 username barzegar 210232 mac 210232 bytes_out 0 210232 bytes_in 0 210232 station_ip 5.120.55.42 210232 port 28 210232 unique_id port 210232 remote_ip 10.8.1.30 210234 username aminvpnipad 210234 mac 210234 bytes_out 0 210234 bytes_in 0 210234 station_ip 5.119.61.34 210234 port 40 210234 unique_id port 210234 remote_ip 10.8.0.202 210235 username kamali3 210235 kill_reason Maximum check online fails reached 210235 mac 210235 bytes_out 0 210235 bytes_in 0 210235 station_ip 83.122.220.34 210235 port 25 210235 unique_id port 210235 remote_ip 10.8.0.182 210240 username farhad3 210240 mac 210240 bytes_out 0 210240 bytes_in 0 210240 station_ip 5.120.66.28 210240 port 35 210240 unique_id port 210251 username heydary4246 210251 mac 210251 bytes_out 40040 210251 bytes_in 58411 210251 station_ip 113.203.119.226 210251 port 23 210251 unique_id port 210251 remote_ip 10.8.1.238 210252 username farhad3 210252 mac 210224 mac 210224 bytes_out 0 210224 bytes_in 0 210224 station_ip 5.119.61.34 210224 port 27 210224 unique_id port 210224 remote_ip 10.8.1.194 210227 username jafari 210227 mac 210227 bytes_out 0 210227 bytes_in 0 210227 station_ip 94.24.84.30 210227 port 33 210227 unique_id port 210227 remote_ip 10.8.0.110 210231 username jafari 210231 mac 210231 bytes_out 0 210231 bytes_in 0 210231 station_ip 94.24.84.30 210231 port 33 210231 unique_id port 210231 remote_ip 10.8.0.110 210236 username dortaj3792 210236 kill_reason Maximum check online fails reached 210236 mac 210236 bytes_out 0 210236 bytes_in 0 210236 station_ip 5.119.186.148 210236 port 41 210236 unique_id port 210236 remote_ip 10.8.0.10 210238 username farhad3 210238 kill_reason Another user logged on this global unique id 210238 mac 210238 bytes_out 0 210238 bytes_in 0 210238 station_ip 5.120.66.28 210238 port 35 210238 unique_id port 210238 remote_ip 10.8.0.98 210241 username aminvpnipad 210241 mac 210241 bytes_out 0 210241 bytes_in 0 210241 station_ip 5.119.61.34 210241 port 35 210241 unique_id port 210241 remote_ip 10.8.0.202 210247 username farhad3 210247 mac 210247 bytes_out 1286224 210247 bytes_in 9424634 210247 station_ip 5.119.153.158 210247 port 40 210247 unique_id port 210247 remote_ip 10.8.0.98 210248 username farhad3 210248 kill_reason Another user logged on this global unique id 210248 mac 210248 bytes_out 0 210248 bytes_in 0 210248 station_ip 5.119.153.158 210248 port 40 210248 unique_id port 210248 remote_ip 10.8.0.98 210250 username aminvpnipad 210250 mac 210250 bytes_out 0 210250 bytes_in 0 210250 station_ip 5.119.61.34 210250 port 42 210250 unique_id port 210250 remote_ip 10.8.0.202 210253 username daryaei1233 210253 mac 210253 bytes_out 0 210253 bytes_in 0 210253 station_ip 37.129.206.137 210253 port 27 210253 unique_id port 210253 remote_ip 10.8.1.14 210254 username farhad3 210254 mac 210254 bytes_out 159794 210254 bytes_in 354385 210254 station_ip 5.119.153.158 210254 port 42 210254 unique_id port 210254 remote_ip 10.8.0.98 210255 username jafari 210255 mac 210255 bytes_out 95305 210255 bytes_in 161836 210255 station_ip 94.24.84.30 210255 port 35 210255 unique_id port 210255 remote_ip 10.8.0.110 210258 username nilufarrajaei 210258 mac 210258 bytes_out 45083559 210258 bytes_in 42575819 210258 station_ip 83.122.196.148 210258 port 32 210258 unique_id port 210258 remote_ip 10.8.0.50 210259 username aminvpnipad 210259 mac 210259 bytes_out 0 210259 bytes_in 0 210259 station_ip 5.119.61.34 210259 port 32 210259 unique_id port 210259 remote_ip 10.8.0.202 210262 username barzegar 210262 mac 210262 bytes_out 0 210262 bytes_in 0 210262 station_ip 5.120.55.42 210262 port 28 210262 unique_id port 210262 remote_ip 10.8.1.30 210264 username daryaei1233 210264 mac 210264 bytes_out 0 210264 bytes_in 0 210264 station_ip 37.129.206.137 210264 port 27 210264 unique_id port 210264 remote_ip 10.8.1.14 210265 username daryaei1233 210265 mac 210265 bytes_out 0 210265 bytes_in 0 210265 station_ip 37.129.206.137 210265 port 27 210265 unique_id port 210265 remote_ip 10.8.1.14 210267 username daryaei1233 210267 mac 210267 bytes_out 0 210267 bytes_in 0 210267 station_ip 37.129.206.137 210267 port 27 210267 unique_id port 210267 remote_ip 10.8.1.14 210268 username daryaei1233 210268 mac 210268 bytes_out 0 210268 bytes_in 0 210268 station_ip 37.129.206.137 210268 port 27 210268 unique_id port 210268 remote_ip 10.8.1.14 210242 mac 210242 bytes_out 0 210242 bytes_in 0 210242 station_ip 83.122.71.121 210242 port 35 210242 unique_id port 210242 remote_ip 10.8.0.174 210243 username jafari 210243 mac 210243 bytes_out 0 210243 bytes_in 0 210243 station_ip 94.24.84.30 210243 port 42 210243 unique_id port 210243 remote_ip 10.8.0.110 210244 username farhad3 210244 mac 210244 bytes_out 0 210244 bytes_in 0 210244 station_ip 5.119.153.158 210244 port 40 210244 unique_id port 210244 remote_ip 10.8.0.98 210245 username barzegar 210245 mac 210245 bytes_out 0 210245 bytes_in 0 210245 station_ip 5.120.55.42 210245 port 42 210245 unique_id port 210245 remote_ip 10.8.0.34 210246 username aminvpnipad 210246 mac 210246 bytes_out 0 210246 bytes_in 0 210246 station_ip 5.119.61.34 210246 port 42 210246 unique_id port 210246 remote_ip 10.8.0.202 210249 username barzegar 210249 mac 210249 bytes_out 0 210249 bytes_in 0 210249 station_ip 5.120.55.42 210249 port 42 210249 unique_id port 210249 remote_ip 10.8.0.34 210256 username barzegar 210256 mac 210256 bytes_out 0 210256 bytes_in 0 210256 station_ip 5.120.55.42 210256 port 35 210256 unique_id port 210256 remote_ip 10.8.0.34 210261 username aminvpnipad 210261 mac 210261 bytes_out 0 210261 bytes_in 0 210261 station_ip 5.119.61.34 210261 port 32 210261 unique_id port 210261 remote_ip 10.8.0.202 210263 username sabaghnezhad 210263 mac 210263 bytes_out 2298812 210263 bytes_in 15273800 210263 station_ip 83.122.67.203 210263 port 31 210263 unique_id port 210263 remote_ip 10.8.0.94 210271 username daryaei1233 210271 mac 210271 bytes_out 0 210271 bytes_in 0 210271 station_ip 37.129.206.137 210271 port 27 210271 unique_id port 210271 remote_ip 10.8.1.14 210273 username aminvpnipad 210273 mac 210273 bytes_out 0 210273 bytes_in 0 210273 station_ip 5.119.61.34 210273 port 31 210273 unique_id port 210273 remote_ip 10.8.0.202 210275 username barzegar 210275 mac 210275 bytes_out 0 210275 bytes_in 0 210275 station_ip 5.120.55.42 210275 port 29 210275 unique_id port 210275 remote_ip 10.8.1.30 210279 username daryaei1233 210279 mac 210279 bytes_out 0 210279 bytes_in 0 210279 station_ip 37.129.206.137 210279 port 27 210279 unique_id port 210279 remote_ip 10.8.1.14 210280 username daryaei1233 210280 mac 210280 bytes_out 0 210280 bytes_in 0 210280 station_ip 37.129.206.137 210280 port 27 210280 unique_id port 210280 remote_ip 10.8.1.14 210283 username daryaei1233 210283 mac 210283 bytes_out 0 210283 bytes_in 0 210283 station_ip 37.129.206.137 210283 port 27 210283 unique_id port 210283 remote_ip 10.8.1.14 210289 username daryaei1233 210289 mac 210289 bytes_out 0 210289 bytes_in 0 210289 station_ip 37.129.206.137 210289 port 27 210289 unique_id port 210289 remote_ip 10.8.1.14 210290 username daryaei1233 210290 mac 210290 bytes_out 0 210290 bytes_in 0 210290 station_ip 37.129.206.137 210290 port 27 210290 unique_id port 210290 remote_ip 10.8.1.14 210292 username aminvpnipad 210292 mac 210292 bytes_out 0 210292 bytes_in 0 210292 station_ip 5.119.61.34 210292 port 31 210292 unique_id port 210292 remote_ip 10.8.0.202 210293 username barzegar 210293 mac 210293 bytes_out 0 210293 bytes_in 0 210293 station_ip 5.120.55.42 210293 port 27 210293 unique_id port 210293 remote_ip 10.8.1.30 210294 username daryaei1233 210294 mac 210294 bytes_out 0 210294 bytes_in 0 210294 station_ip 37.129.206.137 210294 port 31 210252 bytes_out 0 210252 bytes_in 0 210252 station_ip 5.119.153.158 210252 port 40 210252 unique_id port 210257 username aminvpnipad 210257 mac 210257 bytes_out 0 210257 bytes_in 0 210257 station_ip 5.119.61.34 210257 port 42 210257 unique_id port 210257 remote_ip 10.8.0.202 210260 username barzegar 210260 mac 210260 bytes_out 0 210260 bytes_in 0 210260 station_ip 5.120.55.42 210260 port 28 210260 unique_id port 210260 remote_ip 10.8.1.30 210266 username daryaei1233 210266 mac 210266 bytes_out 0 210266 bytes_in 0 210266 station_ip 37.129.206.137 210266 port 31 210266 unique_id port 210266 remote_ip 10.8.0.6 210269 username daryaei1233 210269 mac 210269 bytes_out 0 210269 bytes_in 0 210269 station_ip 37.129.206.137 210269 port 27 210269 unique_id port 210269 remote_ip 10.8.1.14 210270 username daryaei1233 210270 mac 210270 bytes_out 0 210270 bytes_in 0 210270 station_ip 37.129.206.137 210270 port 27 210270 unique_id port 210270 remote_ip 10.8.1.14 210272 username daryaei1233 210272 mac 210272 bytes_out 0 210272 bytes_in 0 210272 station_ip 37.129.206.137 210272 port 27 210272 unique_id port 210272 remote_ip 10.8.1.14 210274 username daryaei1233 210274 mac 210274 bytes_out 0 210274 bytes_in 0 210274 station_ip 37.129.206.137 210274 port 27 210274 unique_id port 210274 remote_ip 10.8.1.14 210276 username daryaei1233 210276 mac 210276 bytes_out 0 210276 bytes_in 0 210276 station_ip 37.129.206.137 210276 port 27 210276 unique_id port 210276 remote_ip 10.8.1.14 210277 username daryaei1233 210277 mac 210277 bytes_out 0 210277 bytes_in 0 210277 station_ip 37.129.206.137 210277 port 27 210277 unique_id port 210277 remote_ip 10.8.1.14 210278 username daryaei1233 210278 mac 210278 bytes_out 0 210278 bytes_in 0 210278 station_ip 37.129.206.137 210278 port 27 210278 unique_id port 210278 remote_ip 10.8.1.14 210286 username daryaei1233 210286 mac 210286 bytes_out 0 210286 bytes_in 0 210286 station_ip 37.129.206.137 210286 port 27 210286 unique_id port 210286 remote_ip 10.8.1.14 210287 username daryaei1233 210287 mac 210287 bytes_out 0 210287 bytes_in 0 210287 station_ip 37.129.206.137 210287 port 27 210287 unique_id port 210287 remote_ip 10.8.1.14 210288 username daryaei1233 210288 mac 210288 bytes_out 0 210288 bytes_in 0 210288 station_ip 37.129.206.137 210288 port 27 210288 unique_id port 210288 remote_ip 10.8.1.14 210295 username heydary4246 210295 mac 210295 bytes_out 0 210295 bytes_in 0 210295 station_ip 113.203.119.226 210295 port 23 210295 unique_id port 210295 remote_ip 10.8.1.238 210297 username jafari 210297 mac 210297 bytes_out 0 210297 bytes_in 0 210297 station_ip 94.24.84.30 210297 port 40 210297 unique_id port 210297 remote_ip 10.8.0.110 210298 username barzegar 210298 mac 210298 bytes_out 0 210298 bytes_in 0 210298 station_ip 5.120.55.42 210298 port 32 210298 unique_id port 210298 remote_ip 10.8.0.34 210300 username daryaei1233 210300 kill_reason Maximum check online fails reached 210300 mac 210300 bytes_out 0 210300 bytes_in 0 210300 station_ip 37.129.206.137 210300 port 27 210300 unique_id port 210303 username daryaei1233 210303 mac 210303 bytes_out 0 210303 bytes_in 0 210303 station_ip 37.129.206.137 210303 port 35 210303 unique_id port 210303 remote_ip 10.8.0.6 210306 username daryaei1233 210306 mac 210306 bytes_out 0 210306 bytes_in 0 210306 station_ip 37.129.206.137 210306 port 32 210306 unique_id port 210306 remote_ip 10.8.0.6 210281 username daryaei1233 210281 mac 210281 bytes_out 0 210281 bytes_in 0 210281 station_ip 37.129.206.137 210281 port 27 210281 unique_id port 210281 remote_ip 10.8.1.14 210282 username daryaei1233 210282 mac 210282 bytes_out 0 210282 bytes_in 0 210282 station_ip 37.129.206.137 210282 port 27 210282 unique_id port 210282 remote_ip 10.8.1.14 210284 username daryaei1233 210284 mac 210284 bytes_out 0 210284 bytes_in 0 210284 station_ip 37.129.206.137 210284 port 27 210284 unique_id port 210284 remote_ip 10.8.1.14 210285 username daryaei1233 210285 mac 210285 bytes_out 0 210285 bytes_in 0 210285 station_ip 37.129.206.137 210285 port 27 210285 unique_id port 210285 remote_ip 10.8.1.14 210291 username daryaei1233 210291 mac 210291 bytes_out 0 210291 bytes_in 0 210291 station_ip 37.129.206.137 210291 port 27 210291 unique_id port 210291 remote_ip 10.8.1.14 210296 username aminvpnipad 210296 mac 210296 bytes_out 0 210296 bytes_in 0 210296 station_ip 5.119.61.34 210296 port 31 210296 unique_id port 210296 remote_ip 10.8.0.202 210301 username barzegar 210301 mac 210301 bytes_out 0 210301 bytes_in 0 210301 station_ip 5.120.55.42 210301 port 32 210301 unique_id port 210301 remote_ip 10.8.0.34 210304 username aminvpnipad 210304 mac 210304 bytes_out 0 210304 bytes_in 0 210304 station_ip 5.119.61.34 210304 port 40 210304 unique_id port 210304 remote_ip 10.8.0.202 210309 username daryaei1233 210309 mac 210309 bytes_out 0 210309 bytes_in 0 210309 station_ip 37.129.206.137 210309 port 29 210309 unique_id port 210309 remote_ip 10.8.1.14 210310 username daryaei1233 210310 mac 210310 bytes_out 0 210310 bytes_in 0 210310 station_ip 37.129.206.137 210310 port 29 210310 unique_id port 210310 remote_ip 10.8.1.14 210311 username jafari 210311 mac 210311 bytes_out 81777 210311 bytes_in 270638 210311 station_ip 94.24.84.30 210311 port 31 210311 unique_id port 210311 remote_ip 10.8.0.110 210314 username barzegar 210314 mac 210314 bytes_out 0 210314 bytes_in 0 210314 station_ip 5.120.55.42 210314 port 31 210314 unique_id port 210314 remote_ip 10.8.0.34 210317 username daryaei1233 210317 mac 210317 bytes_out 0 210317 bytes_in 0 210317 station_ip 37.129.206.137 210317 port 29 210317 unique_id port 210317 remote_ip 10.8.1.14 210318 username daryaei1233 210318 mac 210318 bytes_out 0 210318 bytes_in 0 210318 station_ip 37.129.206.137 210318 port 29 210318 unique_id port 210318 remote_ip 10.8.1.14 210320 username daryaei1233 210320 mac 210320 bytes_out 0 210320 bytes_in 0 210320 station_ip 37.129.206.137 210320 port 29 210320 unique_id port 210320 remote_ip 10.8.1.14 210322 username daryaei1233 210322 mac 210322 bytes_out 0 210322 bytes_in 0 210322 station_ip 37.129.206.137 210322 port 29 210322 unique_id port 210322 remote_ip 10.8.1.14 210323 username daryaei1233 210323 mac 210323 bytes_out 0 210323 bytes_in 0 210323 station_ip 37.129.206.137 210323 port 29 210323 unique_id port 210323 remote_ip 10.8.1.14 210328 username daryaei1233 210328 mac 210328 bytes_out 0 210328 bytes_in 0 210328 station_ip 37.129.206.137 210328 port 28 210328 unique_id port 210328 remote_ip 10.8.1.14 210329 username daryaei1233 210329 mac 210329 bytes_out 0 210329 bytes_in 0 210329 station_ip 37.129.206.137 210329 port 28 210329 unique_id port 210329 remote_ip 10.8.1.14 210334 username barzegar 210334 mac 210334 bytes_out 0 210334 bytes_in 0 210334 station_ip 5.120.55.42 210294 unique_id port 210294 remote_ip 10.8.0.6 210299 username aminvpnipad 210299 mac 210299 bytes_out 0 210299 bytes_in 0 210299 station_ip 5.119.61.34 210299 port 32 210299 unique_id port 210299 remote_ip 10.8.0.202 210302 username daryaei1233 210302 mac 210302 bytes_out 0 210302 bytes_in 0 210302 station_ip 37.129.206.137 210302 port 29 210302 unique_id port 210302 remote_ip 10.8.1.14 210305 username kalantary6037 210305 mac 210305 bytes_out 45367 210305 bytes_in 44359 210305 station_ip 83.122.69.26 210305 port 32 210305 unique_id port 210305 remote_ip 10.8.0.18 210308 username daryaei1233 210308 mac 210308 bytes_out 0 210308 bytes_in 0 210308 station_ip 37.129.206.137 210308 port 29 210308 unique_id port 210308 remote_ip 10.8.1.14 210312 username daryaei1233 210312 mac 210312 bytes_out 0 210312 bytes_in 0 210312 station_ip 37.129.206.137 210312 port 29 210312 unique_id port 210312 remote_ip 10.8.1.14 210326 username sabaghnezhad 210326 mac 210326 bytes_out 0 210326 bytes_in 0 210326 station_ip 83.122.67.203 210326 port 28 210326 unique_id port 210326 remote_ip 10.8.1.46 210332 username daryaei1233 210332 mac 210332 bytes_out 0 210332 bytes_in 0 210332 station_ip 37.129.206.137 210332 port 28 210332 unique_id port 210332 remote_ip 10.8.1.14 210337 username daryaei1233 210337 mac 210337 bytes_out 0 210337 bytes_in 0 210337 station_ip 37.129.206.137 210337 port 28 210337 unique_id port 210337 remote_ip 10.8.1.14 210340 username daryaei1233 210340 mac 210340 bytes_out 0 210340 bytes_in 0 210340 station_ip 37.129.206.137 210340 port 28 210340 unique_id port 210340 remote_ip 10.8.1.14 210341 username daryaei1233 210341 mac 210341 bytes_out 0 210341 bytes_in 0 210341 station_ip 37.129.206.137 210341 port 28 210341 unique_id port 210341 remote_ip 10.8.1.14 210342 username daryaei1233 210342 mac 210342 bytes_out 0 210342 bytes_in 0 210342 station_ip 37.129.206.137 210342 port 28 210342 unique_id port 210342 remote_ip 10.8.1.14 210346 username barzegar 210346 mac 210346 bytes_out 0 210346 bytes_in 0 210346 station_ip 5.120.55.42 210346 port 28 210346 unique_id port 210346 remote_ip 10.8.1.30 210350 username daryaei1233 210350 kill_reason Maximum check online fails reached 210350 mac 210350 bytes_out 0 210350 bytes_in 0 210350 station_ip 37.129.206.137 210350 port 32 210350 unique_id port 210354 username barzegar 210354 mac 210354 bytes_out 0 210354 bytes_in 0 210354 station_ip 5.120.55.42 210354 port 28 210354 unique_id port 210354 remote_ip 10.8.1.30 210355 username aminvpnipad 210355 mac 210355 bytes_out 0 210355 bytes_in 0 210355 station_ip 5.119.61.34 210355 port 40 210355 unique_id port 210355 remote_ip 10.8.0.202 210361 username aminvpnipad 210361 mac 210361 bytes_out 0 210361 bytes_in 0 210361 station_ip 5.119.61.34 210361 port 35 210361 unique_id port 210361 remote_ip 10.8.0.202 210364 username aminvpnipad 210364 mac 210364 bytes_out 0 210364 bytes_in 0 210364 station_ip 5.119.61.34 210364 port 29 210364 unique_id port 210364 remote_ip 10.8.1.194 210366 username aminvpnipad 210366 mac 210366 bytes_out 0 210366 bytes_in 0 210366 station_ip 5.119.61.34 210366 port 35 210366 unique_id port 210366 remote_ip 10.8.0.202 210367 username daryaei1233 210367 mac 210367 bytes_out 0 210367 bytes_in 0 210367 station_ip 37.129.182.49 210367 port 40 210367 unique_id port 210367 remote_ip 10.8.0.6 210368 username barzegar 210368 mac 210307 username daryaei1233 210307 mac 210307 bytes_out 0 210307 bytes_in 0 210307 station_ip 37.129.206.137 210307 port 32 210307 unique_id port 210307 remote_ip 10.8.0.6 210313 username daryaei1233 210313 mac 210313 bytes_out 0 210313 bytes_in 0 210313 station_ip 37.129.206.137 210313 port 29 210313 unique_id port 210313 remote_ip 10.8.1.14 210315 username daryaei1233 210315 mac 210315 bytes_out 0 210315 bytes_in 0 210315 station_ip 37.129.206.137 210315 port 29 210315 unique_id port 210315 remote_ip 10.8.1.14 210316 username daryaei1233 210316 mac 210316 bytes_out 0 210316 bytes_in 0 210316 station_ip 37.129.206.137 210316 port 29 210316 unique_id port 210316 remote_ip 10.8.1.14 210319 username daryaei1233 210319 mac 210319 bytes_out 0 210319 bytes_in 0 210319 station_ip 37.129.206.137 210319 port 29 210319 unique_id port 210319 remote_ip 10.8.1.14 210321 username aminvpnipad 210321 mac 210321 bytes_out 0 210321 bytes_in 0 210321 station_ip 5.119.61.34 210321 port 31 210321 unique_id port 210321 remote_ip 10.8.0.202 210324 username daryaei1233 210324 mac 210324 bytes_out 0 210324 bytes_in 0 210324 station_ip 37.129.206.137 210324 port 29 210324 unique_id port 210324 remote_ip 10.8.1.14 210325 username daryaei1233 210325 mac 210325 bytes_out 0 210325 bytes_in 0 210325 station_ip 37.129.206.137 210325 port 29 210325 unique_id port 210325 remote_ip 10.8.1.14 210327 username daryaei1233 210327 mac 210327 bytes_out 0 210327 bytes_in 0 210327 station_ip 37.129.206.137 210327 port 29 210327 unique_id port 210327 remote_ip 10.8.1.14 210330 username daryaei1233 210330 mac 210330 bytes_out 0 210330 bytes_in 0 210330 station_ip 37.129.206.137 210330 port 28 210330 unique_id port 210330 remote_ip 10.8.1.14 210331 username daryaei1233 210331 mac 210331 bytes_out 0 210331 bytes_in 0 210331 station_ip 37.129.206.137 210331 port 28 210331 unique_id port 210331 remote_ip 10.8.1.14 210333 username daryaei1233 210333 mac 210333 bytes_out 0 210333 bytes_in 0 210333 station_ip 37.129.206.137 210333 port 28 210333 unique_id port 210333 remote_ip 10.8.1.14 210335 username daryaei1233 210335 mac 210335 bytes_out 0 210335 bytes_in 0 210335 station_ip 37.129.206.137 210335 port 28 210335 unique_id port 210335 remote_ip 10.8.1.14 210336 username daryaei1233 210336 mac 210336 bytes_out 0 210336 bytes_in 0 210336 station_ip 37.129.206.137 210336 port 28 210336 unique_id port 210336 remote_ip 10.8.1.14 210338 username daryaei1233 210338 mac 210338 bytes_out 0 210338 bytes_in 0 210338 station_ip 37.129.206.137 210338 port 28 210338 unique_id port 210338 remote_ip 10.8.1.14 210339 username daryaei1233 210339 mac 210339 bytes_out 0 210339 bytes_in 0 210339 station_ip 37.129.206.137 210339 port 28 210339 unique_id port 210339 remote_ip 10.8.1.14 210343 username aminvpnipad 210343 mac 210343 bytes_out 0 210343 bytes_in 0 210343 station_ip 5.119.61.34 210343 port 31 210343 unique_id port 210343 remote_ip 10.8.0.202 210344 username daryaei1233 210344 mac 210344 bytes_out 4417 210344 bytes_in 7086 210344 station_ip 37.129.206.137 210344 port 31 210344 unique_id port 210344 remote_ip 10.8.0.6 210345 username jafari 210345 mac 210345 bytes_out 0 210345 bytes_in 0 210345 station_ip 94.24.84.30 210345 port 32 210345 unique_id port 210345 remote_ip 10.8.0.110 210348 username daryaei1233 210348 mac 210348 bytes_out 0 210348 bytes_in 0 210348 station_ip 37.129.206.137 210334 port 29 210334 unique_id port 210334 remote_ip 10.8.1.30 210347 username aminvpnipad 210347 mac 210347 bytes_out 0 210347 bytes_in 0 210347 station_ip 5.119.61.34 210347 port 32 210347 unique_id port 210347 remote_ip 10.8.0.202 210351 username aminvpnipad 210351 mac 210351 bytes_out 0 210351 bytes_in 0 210351 station_ip 5.119.61.34 210351 port 40 210351 unique_id port 210351 remote_ip 10.8.0.202 210356 username barzegar 210356 mac 210356 bytes_out 0 210356 bytes_in 0 210356 station_ip 5.120.55.42 210356 port 28 210356 unique_id port 210356 remote_ip 10.8.1.30 210357 username daryaei1233 210357 mac 210357 bytes_out 0 210357 bytes_in 0 210357 station_ip 37.129.206.137 210357 port 35 210357 unique_id port 210357 remote_ip 10.8.0.6 210359 username daryaei1233 210359 mac 210359 bytes_out 0 210359 bytes_in 0 210359 station_ip 37.129.206.137 210359 port 35 210359 unique_id port 210359 remote_ip 10.8.0.6 210362 username barzegar 210362 mac 210362 bytes_out 0 210362 bytes_in 0 210362 station_ip 5.120.55.42 210362 port 28 210362 unique_id port 210362 remote_ip 10.8.1.30 210363 username daryaei1233 210363 kill_reason Maximum check online fails reached 210363 mac 210363 bytes_out 0 210363 bytes_in 0 210363 station_ip 37.129.206.137 210363 port 28 210363 unique_id port 210368 bytes_out 0 210368 bytes_in 0 210368 station_ip 5.120.55.42 210368 port 29 210368 unique_id port 210368 remote_ip 10.8.1.30 210374 username aminvpnipad 210374 mac 210374 bytes_out 0 210374 bytes_in 0 210374 station_ip 5.119.61.34 210374 port 31 210374 unique_id port 210374 remote_ip 10.8.0.202 210376 username jafari 210376 mac 210376 bytes_out 33583 210376 bytes_in 73121 210376 station_ip 94.24.84.30 210376 port 40 210376 unique_id port 210376 remote_ip 10.8.0.110 210377 username barzegar 210377 mac 210377 bytes_out 0 210377 bytes_in 0 210377 station_ip 5.120.55.42 210377 port 40 210377 unique_id port 210377 remote_ip 10.8.0.34 210378 username aminvpnipad 210378 mac 210378 bytes_out 0 210378 bytes_in 0 210378 station_ip 5.119.61.34 210378 port 41 210378 unique_id port 210378 remote_ip 10.8.0.202 210379 username mohammadjavad 210379 mac 210379 bytes_out 649382 210379 bytes_in 3426661 210379 station_ip 37.129.111.180 210379 port 35 210379 unique_id port 210379 remote_ip 10.8.0.138 210380 username barzegar 210380 mac 210380 bytes_out 0 210380 bytes_in 0 210380 station_ip 5.120.55.42 210380 port 29 210380 unique_id port 210380 remote_ip 10.8.1.30 210384 username aminvpnipad 210384 mac 210384 bytes_out 0 210384 bytes_in 0 210384 station_ip 5.119.61.34 210384 port 35 210384 unique_id port 210384 remote_ip 10.8.0.202 210385 username barzegar 210385 mac 210385 bytes_out 0 210385 bytes_in 0 210385 station_ip 5.120.55.42 210385 port 29 210385 unique_id port 210385 remote_ip 10.8.1.30 210387 username aminvpnipad 210387 mac 210387 bytes_out 0 210387 bytes_in 0 210387 station_ip 5.119.61.34 210387 port 35 210387 unique_id port 210387 remote_ip 10.8.0.202 210390 username barzegar 210390 mac 210390 bytes_out 0 210390 bytes_in 0 210390 station_ip 5.120.55.42 210390 port 35 210390 unique_id port 210390 remote_ip 10.8.0.34 210391 username aminvpnipad 210391 mac 210391 bytes_out 0 210391 bytes_in 0 210391 station_ip 5.119.61.34 210391 port 35 210391 unique_id port 210391 remote_ip 10.8.0.202 210392 username morteza4424 210392 mac 210392 bytes_out 442476 210392 bytes_in 6972112 210348 port 28 210348 unique_id port 210348 remote_ip 10.8.1.14 210349 username daryaei1233 210349 mac 210349 bytes_out 0 210349 bytes_in 0 210349 station_ip 37.129.206.137 210349 port 32 210349 unique_id port 210349 remote_ip 10.8.0.6 210352 username barzegar 210352 mac 210352 bytes_out 0 210352 bytes_in 0 210352 station_ip 5.120.55.42 210352 port 35 210352 unique_id port 210352 remote_ip 10.8.0.34 210353 username daryaei1233 210353 mac 210353 bytes_out 0 210353 bytes_in 0 210353 station_ip 37.129.206.137 210353 port 35 210353 unique_id port 210353 remote_ip 10.8.0.6 210358 username daryaei1233 210358 mac 210358 bytes_out 0 210358 bytes_in 0 210358 station_ip 37.129.206.137 210358 port 35 210358 unique_id port 210358 remote_ip 10.8.0.6 210360 username aminvpnipad 210360 mac 210360 bytes_out 0 210360 bytes_in 0 210360 station_ip 5.119.61.34 210360 port 35 210360 unique_id port 210360 remote_ip 10.8.0.202 210365 username barzegar 210365 mac 210365 bytes_out 0 210365 bytes_in 0 210365 station_ip 5.120.55.42 210365 port 35 210365 unique_id port 210365 remote_ip 10.8.0.34 210369 username jafari 210369 mac 210369 bytes_out 0 210369 bytes_in 0 210369 station_ip 94.24.84.30 210369 port 31 210369 unique_id port 210369 remote_ip 10.8.0.110 210370 username aminvpnipad 210370 mac 210370 bytes_out 0 210370 bytes_in 0 210370 station_ip 5.119.61.34 210370 port 31 210370 unique_id port 210370 remote_ip 10.8.0.202 210371 username daryaei1233 210371 mac 210371 bytes_out 0 210371 bytes_in 0 210371 station_ip 37.129.182.49 210371 port 31 210371 unique_id port 210371 remote_ip 10.8.0.6 210372 username dortaj3792 210372 mac 210372 bytes_out 0 210372 bytes_in 0 210372 station_ip 5.119.186.148 210372 port 35 210372 unique_id port 210372 remote_ip 10.8.0.10 210373 username barzegar 210373 mac 210373 bytes_out 0 210373 bytes_in 0 210373 station_ip 5.120.55.42 210373 port 29 210373 unique_id port 210373 remote_ip 10.8.1.30 210375 username kamali3 210375 kill_reason Another user logged on this global unique id 210375 mac 210375 bytes_out 0 210375 bytes_in 0 210375 station_ip 83.122.220.34 210375 port 25 210375 unique_id port 210381 username aminvpnipad 210381 mac 210381 bytes_out 0 210381 bytes_in 0 210381 station_ip 5.119.61.34 210381 port 35 210381 unique_id port 210381 remote_ip 10.8.0.202 210382 username aminvpnipad 210382 mac 210382 bytes_out 0 210382 bytes_in 0 210382 station_ip 5.119.61.34 210382 port 35 210382 unique_id port 210382 remote_ip 10.8.0.202 210383 username barzegar 210383 mac 210383 bytes_out 0 210383 bytes_in 0 210383 station_ip 5.120.55.42 210383 port 35 210383 unique_id port 210383 remote_ip 10.8.0.34 210386 username aminvpnipad 210386 mac 210386 bytes_out 0 210386 bytes_in 0 210386 station_ip 5.119.61.34 210386 port 35 210386 unique_id port 210386 remote_ip 10.8.0.202 210388 username barzegar 210388 mac 210388 bytes_out 0 210388 bytes_in 0 210388 station_ip 5.120.55.42 210388 port 35 210388 unique_id port 210388 remote_ip 10.8.0.34 210389 username aminvpnipad 210389 mac 210389 bytes_out 0 210389 bytes_in 0 210389 station_ip 5.119.61.34 210389 port 35 210389 unique_id port 210389 remote_ip 10.8.0.202 210392 station_ip 113.203.110.137 210392 port 35 210392 unique_id port 210392 remote_ip 10.8.0.30 210393 username barzegar 210393 mac 210393 bytes_out 0 210393 bytes_in 0 210393 station_ip 5.120.55.42 210393 port 41 210393 unique_id port 210393 remote_ip 10.8.0.34 210394 username aminvpnipad 210394 mac 210394 bytes_out 0 210394 bytes_in 0 210394 station_ip 5.119.61.34 210394 port 41 210394 unique_id port 210394 remote_ip 10.8.0.202 210395 username jafari 210395 mac 210395 bytes_out 221865 210395 bytes_in 993128 210395 station_ip 94.24.84.30 210395 port 31 210395 unique_id port 210395 remote_ip 10.8.0.110 210396 username morteza4424 210396 mac 210396 bytes_out 0 210396 bytes_in 0 210396 station_ip 113.203.110.137 210396 port 35 210396 unique_id port 210396 remote_ip 10.8.0.30 210397 username morteza4424 210397 mac 210397 bytes_out 0 210397 bytes_in 0 210397 station_ip 113.203.110.137 210397 port 31 210397 unique_id port 210397 remote_ip 10.8.0.30 210399 username morteza4424 210399 mac 210399 bytes_out 0 210399 bytes_in 0 210399 station_ip 113.203.110.137 210399 port 29 210399 unique_id port 210399 remote_ip 10.8.1.42 210401 username aminvpnipad 210401 mac 210401 bytes_out 0 210401 bytes_in 0 210401 station_ip 5.119.61.34 210401 port 31 210401 unique_id port 210401 remote_ip 10.8.0.202 210402 username morteza4424 210402 mac 210402 bytes_out 0 210402 bytes_in 0 210402 station_ip 113.203.110.137 210402 port 29 210402 unique_id port 210402 remote_ip 10.8.1.42 210408 username kamali3 210408 mac 210408 bytes_out 0 210408 bytes_in 0 210408 station_ip 83.122.220.34 210408 port 25 210408 unique_id port 210410 username barzegar 210410 mac 210410 bytes_out 0 210410 bytes_in 0 210410 station_ip 5.120.55.42 210410 port 25 210410 unique_id port 210410 remote_ip 10.8.0.34 210415 username jafari 210415 mac 210415 bytes_out 0 210415 bytes_in 0 210415 station_ip 94.24.84.30 210415 port 31 210415 unique_id port 210415 remote_ip 10.8.0.110 210416 username barzegar 210416 mac 210416 bytes_out 0 210416 bytes_in 0 210416 station_ip 5.120.55.42 210416 port 41 210416 unique_id port 210416 remote_ip 10.8.0.34 210418 username mohammadjavad 210418 mac 210418 bytes_out 0 210418 bytes_in 0 210418 station_ip 37.129.115.124 210418 port 31 210418 unique_id port 210418 remote_ip 10.8.0.138 210422 username aminvpnipad 210422 mac 210422 bytes_out 0 210422 bytes_in 0 210422 station_ip 5.119.61.34 210422 port 42 210422 unique_id port 210422 remote_ip 10.8.0.202 210424 username daryaei1233 210424 mac 210424 bytes_out 0 210424 bytes_in 0 210424 station_ip 37.129.255.165 210424 port 23 210424 unique_id port 210424 remote_ip 10.8.1.14 210438 username sekonji0496 210438 kill_reason Another user logged on this global unique id 210438 mac 210438 bytes_out 0 210438 bytes_in 0 210438 station_ip 83.123.229.121 210438 port 25 210438 unique_id port 210439 username mohammadjavad 210439 mac 210439 bytes_out 0 210439 bytes_in 0 210439 station_ip 37.129.2.184 210439 port 46 210439 unique_id port 210439 remote_ip 10.8.0.138 210444 username mosi 210444 mac 210444 bytes_out 0 210444 bytes_in 0 210444 station_ip 2.183.56.141 210444 port 19 210444 unique_id port 210446 username mirzaei6046 210446 kill_reason Another user logged on this global unique id 210446 mac 210446 bytes_out 0 210446 bytes_in 0 210446 station_ip 5.119.27.94 210446 port 44 210446 unique_id port 210446 remote_ip 10.8.0.242 210447 username sekonji0496 210447 kill_reason Another user logged on this global unique id 210447 mac 210447 bytes_out 0 210447 bytes_in 0 210447 station_ip 83.123.229.121 210447 port 25 210447 unique_id port 210451 username aminvpnipad 210451 mac 210398 username barzegar 210398 mac 210398 bytes_out 0 210398 bytes_in 0 210398 station_ip 5.120.55.42 210398 port 31 210398 unique_id port 210398 remote_ip 10.8.0.34 210400 username morteza4424 210400 mac 210400 bytes_out 0 210400 bytes_in 0 210400 station_ip 113.203.110.137 210400 port 29 210400 unique_id port 210400 remote_ip 10.8.1.42 210403 username morteza4424 210403 mac 210403 bytes_out 1644 210403 bytes_in 4930 210403 station_ip 113.203.110.137 210403 port 31 210403 unique_id port 210403 remote_ip 10.8.0.30 210404 username barzegar 210404 mac 210404 bytes_out 0 210404 bytes_in 0 210404 station_ip 5.120.55.42 210404 port 35 210404 unique_id port 210404 remote_ip 10.8.0.34 210407 username heydary4246 210407 mac 210407 bytes_out 0 210407 bytes_in 0 210407 station_ip 113.203.119.226 210407 port 23 210407 unique_id port 210407 remote_ip 10.8.1.238 210409 username jafari 210409 mac 210409 bytes_out 48145 210409 bytes_in 105790 210409 station_ip 94.24.84.30 210409 port 41 210409 unique_id port 210409 remote_ip 10.8.0.110 210411 username daryaei1233 210411 mac 210411 bytes_out 88107 210411 bytes_in 189660 210411 station_ip 37.129.255.165 210411 port 40 210411 unique_id port 210411 remote_ip 10.8.0.6 210412 username mohammadjavad 210412 mac 210412 bytes_out 0 210412 bytes_in 0 210412 station_ip 37.129.79.4 210412 port 35 210412 unique_id port 210412 remote_ip 10.8.0.138 210413 username aminvpnipad 210413 mac 210413 bytes_out 0 210413 bytes_in 0 210413 station_ip 5.119.61.34 210413 port 35 210413 unique_id port 210413 remote_ip 10.8.0.202 210414 username daryaei1233 210414 mac 210414 bytes_out 0 210414 bytes_in 0 210414 station_ip 37.129.255.165 210414 port 35 210414 unique_id port 210414 remote_ip 10.8.0.6 210419 username daryaei1233 210419 kill_reason Another user logged on this global unique id 210419 mac 210419 bytes_out 0 210419 bytes_in 0 210419 station_ip 37.129.255.165 210419 port 35 210419 unique_id port 210419 remote_ip 10.8.0.6 210420 username sekonji0496 210420 kill_reason Another user logged on this global unique id 210420 mac 210420 bytes_out 0 210420 bytes_in 0 210420 station_ip 83.123.229.121 210420 port 25 210420 unique_id port 210420 remote_ip 10.8.0.70 210421 username barzegar 210421 mac 210421 bytes_out 0 210421 bytes_in 0 210421 station_ip 5.120.55.42 210421 port 23 210421 unique_id port 210421 remote_ip 10.8.1.30 210423 username daryaei1233 210423 mac 210423 bytes_out 0 210423 bytes_in 0 210423 station_ip 37.129.255.165 210423 port 35 210423 unique_id port 210426 username daryaei1233 210426 mac 210426 bytes_out 0 210426 bytes_in 0 210426 station_ip 37.129.255.165 210426 port 45 210426 unique_id port 210426 remote_ip 10.8.0.6 210430 username daryaei1233 210430 kill_reason Maximum check online fails reached 210430 mac 210430 bytes_out 0 210430 bytes_in 0 210430 station_ip 37.129.255.165 210430 port 45 210430 unique_id port 210431 username jafari 210431 mac 210431 bytes_out 0 210431 bytes_in 0 210431 station_ip 94.24.84.30 210431 port 31 210431 unique_id port 210431 remote_ip 10.8.0.110 210433 username daryaei1233 210433 mac 210433 bytes_out 0 210433 bytes_in 0 210433 station_ip 37.129.255.165 210433 port 31 210433 unique_id port 210433 remote_ip 10.8.0.6 210434 username jafari 210434 mac 210434 bytes_out 0 210434 bytes_in 0 210434 station_ip 94.24.84.30 210434 port 40 210434 unique_id port 210434 remote_ip 10.8.0.110 210435 username aminvpnipad 210435 mac 210405 username mohammadjavad 210405 mac 210405 bytes_out 0 210405 bytes_in 0 210405 station_ip 37.129.48.168 210405 port 31 210405 unique_id port 210405 remote_ip 10.8.0.138 210406 username aminvpnipad 210406 mac 210406 bytes_out 0 210406 bytes_in 0 210406 station_ip 5.119.61.34 210406 port 31 210406 unique_id port 210406 remote_ip 10.8.0.202 210417 username aminvpnipad 210417 mac 210417 bytes_out 0 210417 bytes_in 0 210417 station_ip 5.119.61.34 210417 port 42 210417 unique_id port 210417 remote_ip 10.8.0.202 210425 username sekonji0496 210425 kill_reason Another user logged on this global unique id 210425 mac 210425 bytes_out 0 210425 bytes_in 0 210425 station_ip 83.123.229.121 210425 port 25 210425 unique_id port 210427 username daryaei1233 210427 kill_reason Maximum check online fails reached 210427 mac 210427 bytes_out 0 210427 bytes_in 0 210427 station_ip 37.129.255.165 210427 port 35 210427 unique_id port 210428 username yaghobi 210428 mac 210428 bytes_out 426820 210428 bytes_in 739266 210428 station_ip 83.122.44.35 210428 port 31 210428 unique_id port 210428 remote_ip 10.8.0.106 210429 username jafari 210429 mac 210429 bytes_out 0 210429 bytes_in 0 210429 station_ip 94.24.84.30 210429 port 40 210429 unique_id port 210429 remote_ip 10.8.0.110 210432 username barzegar 210432 mac 210432 bytes_out 0 210432 bytes_in 0 210432 station_ip 5.120.55.42 210432 port 31 210432 unique_id port 210432 remote_ip 10.8.0.34 210436 username yaghobi 210436 mac 210436 bytes_out 0 210436 bytes_in 0 210436 station_ip 83.122.44.35 210436 port 46 210436 unique_id port 210436 remote_ip 10.8.0.106 210443 username barzegar 210443 mac 210443 bytes_out 0 210443 bytes_in 0 210443 station_ip 5.120.55.42 210443 port 40 210443 unique_id port 210443 remote_ip 10.8.0.34 210448 username daryaei1233 210448 mac 210448 bytes_out 0 210448 bytes_in 0 210448 station_ip 37.129.255.165 210448 port 46 210448 unique_id port 210448 remote_ip 10.8.0.6 210449 username barzegar 210449 mac 210449 bytes_out 0 210449 bytes_in 0 210449 station_ip 5.120.55.42 210449 port 46 210449 unique_id port 210449 remote_ip 10.8.0.34 210450 username kalantary6037 210450 mac 210450 bytes_out 757930 210450 bytes_in 4478215 210450 station_ip 83.122.22.46 210450 port 40 210450 unique_id port 210450 remote_ip 10.8.0.18 210453 username morteza4424 210453 kill_reason Another user logged on this global unique id 210453 mac 210453 bytes_out 0 210453 bytes_in 0 210453 station_ip 113.203.17.181 210453 port 30 210453 unique_id port 210453 remote_ip 10.8.1.42 210454 username sabaghnezhad 210454 mac 210454 bytes_out 0 210454 bytes_in 0 210454 station_ip 83.122.120.95 210454 port 42 210454 unique_id port 210454 remote_ip 10.8.0.94 210458 username godarzi 210458 mac 210458 bytes_out 1345489 210458 bytes_in 14535598 210458 station_ip 5.120.145.112 210458 port 46 210458 unique_id port 210458 remote_ip 10.8.0.74 210459 username aminvpnipad 210459 mac 210459 bytes_out 0 210459 bytes_in 0 210459 station_ip 5.119.61.34 210459 port 42 210459 unique_id port 210459 remote_ip 10.8.0.202 210460 username aminvpnipad 210460 mac 210460 bytes_out 0 210460 bytes_in 0 210460 station_ip 5.119.61.34 210460 port 46 210460 unique_id port 210460 remote_ip 10.8.0.202 210469 username motamedi9772 210469 mac 210469 bytes_out 14937 210469 bytes_in 28720 210469 station_ip 83.123.118.104 210469 port 16 210469 unique_id port 210469 remote_ip 10.8.0.86 210472 username daryaei1233 210435 bytes_out 0 210435 bytes_in 0 210435 station_ip 5.119.61.34 210435 port 40 210435 unique_id port 210435 remote_ip 10.8.0.202 210437 username daryaei1233 210437 kill_reason Maximum check online fails reached 210437 mac 210437 bytes_out 0 210437 bytes_in 0 210437 station_ip 37.129.255.165 210437 port 23 210437 unique_id port 210440 username daryaei1233 210440 mac 210440 bytes_out 279744 210440 bytes_in 2359739 210440 station_ip 37.129.255.165 210440 port 40 210440 unique_id port 210440 remote_ip 10.8.0.6 210441 username daryaei1233 210441 mac 210441 bytes_out 0 210441 bytes_in 0 210441 station_ip 37.129.255.165 210441 port 40 210441 unique_id port 210441 remote_ip 10.8.0.6 210442 username daryaei1233 210442 mac 210442 bytes_out 0 210442 bytes_in 0 210442 station_ip 37.129.255.165 210442 port 40 210442 unique_id port 210442 remote_ip 10.8.0.6 210445 username aminvpnipad 210445 mac 210445 bytes_out 0 210445 bytes_in 0 210445 station_ip 5.119.61.34 210445 port 40 210445 unique_id port 210445 remote_ip 10.8.0.202 210456 username barzegar 210456 mac 210456 bytes_out 0 210456 bytes_in 0 210456 station_ip 5.120.55.42 210456 port 40 210456 unique_id port 210456 remote_ip 10.8.0.34 210457 username morteza4424 210457 mac 210457 bytes_out 0 210457 bytes_in 0 210457 station_ip 113.203.17.181 210457 port 30 210457 unique_id port 210461 username aminvpnipad 210461 mac 210461 bytes_out 115028 210461 bytes_in 1045147 210461 station_ip 5.119.61.34 210461 port 46 210461 unique_id port 210461 remote_ip 10.8.0.202 210462 username daryaei1233 210462 kill_reason Another user logged on this global unique id 210462 mac 210462 bytes_out 0 210462 bytes_in 0 210462 station_ip 37.129.255.165 210462 port 29 210462 unique_id port 210462 remote_ip 10.8.1.14 210463 username sekonji0496 210463 mac 210463 bytes_out 0 210463 bytes_in 0 210463 station_ip 83.123.229.121 210463 port 25 210463 unique_id port 210465 username barzegar 210465 mac 210465 bytes_out 0 210465 bytes_in 0 210465 station_ip 5.120.55.42 210465 port 47 210465 unique_id port 210465 remote_ip 10.8.0.34 210466 username jafari 210466 kill_reason Another user logged on this global unique id 210466 mac 210466 bytes_out 0 210466 bytes_in 0 210466 station_ip 94.24.84.30 210466 port 31 210466 unique_id port 210466 remote_ip 10.8.0.110 210467 username khalili2 210467 mac 210467 bytes_out 0 210467 bytes_in 0 210467 station_ip 5.120.68.137 210467 port 16 210467 unique_id port 210467 remote_ip 10.8.0.78 210470 username aminvpnipad 210470 mac 210470 bytes_out 0 210470 bytes_in 0 210470 station_ip 5.119.61.34 210470 port 16 210470 unique_id port 210470 remote_ip 10.8.0.202 210473 username daryaei1233 210473 mac 210473 bytes_out 0 210473 bytes_in 0 210473 station_ip 37.129.255.165 210473 port 29 210473 unique_id port 210475 username aminvpnipad 210475 mac 210475 bytes_out 0 210475 bytes_in 0 210475 station_ip 5.119.61.34 210475 port 48 210475 unique_id port 210475 remote_ip 10.8.0.202 210477 username yaghobi 210477 mac 210477 bytes_out 2416688 210477 bytes_in 24837236 210477 station_ip 83.122.125.69 210477 port 40 210477 unique_id port 210477 remote_ip 10.8.0.106 210478 username kalantary6037 210478 mac 210478 bytes_out 420310 210478 bytes_in 1970342 210478 station_ip 83.122.63.246 210478 port 46 210478 unique_id port 210478 remote_ip 10.8.0.18 210481 username barzegar 210481 mac 210481 bytes_out 26764 210481 bytes_in 295451 210481 station_ip 5.120.55.42 210451 bytes_out 0 210451 bytes_in 0 210451 station_ip 5.119.61.34 210451 port 40 210451 unique_id port 210451 remote_ip 10.8.0.202 210452 username barzegar 210452 mac 210452 bytes_out 0 210452 bytes_in 0 210452 station_ip 5.120.55.42 210452 port 40 210452 unique_id port 210452 remote_ip 10.8.0.34 210455 username kalantary6037 210455 mac 210455 bytes_out 0 210455 bytes_in 0 210455 station_ip 83.122.22.46 210455 port 40 210455 unique_id port 210455 remote_ip 10.8.0.18 210464 username dortaj3792 210464 mac 210464 bytes_out 0 210464 bytes_in 0 210464 station_ip 5.119.186.148 210464 port 41 210464 unique_id port 210464 remote_ip 10.8.0.10 210468 username barzegar 210468 mac 210468 bytes_out 0 210468 bytes_in 0 210468 station_ip 5.120.55.42 210468 port 47 210468 unique_id port 210468 remote_ip 10.8.0.34 210471 username godarzi 210471 mac 210471 bytes_out 0 210471 bytes_in 0 210471 station_ip 5.120.145.112 210471 port 46 210471 unique_id port 210471 remote_ip 10.8.0.74 210474 username barzegar 210474 mac 210474 bytes_out 0 210474 bytes_in 0 210474 station_ip 5.120.55.42 210474 port 29 210474 unique_id port 210474 remote_ip 10.8.1.30 210476 username mosi 210476 mac 210476 bytes_out 0 210476 bytes_in 0 210476 station_ip 2.184.6.68 210476 port 19 210476 unique_id port 210476 remote_ip 10.8.0.38 210480 username jafari 210480 kill_reason Another user logged on this global unique id 210480 mac 210480 bytes_out 0 210480 bytes_in 0 210480 station_ip 94.24.84.30 210480 port 31 210480 unique_id port 210483 username jafari 210483 mac 210483 bytes_out 0 210483 bytes_in 0 210483 station_ip 94.24.84.30 210483 port 31 210483 unique_id port 210486 username hosseine 210486 kill_reason Another user logged on this global unique id 210486 mac 210486 bytes_out 0 210486 bytes_in 0 210486 station_ip 37.129.133.228 210486 port 16 210486 unique_id port 210486 remote_ip 10.8.0.126 210487 username aminvpnipad 210487 mac 210487 bytes_out 0 210487 bytes_in 0 210487 station_ip 5.119.61.34 210487 port 31 210487 unique_id port 210487 remote_ip 10.8.0.202 210489 username mirzaei6046 210489 kill_reason Another user logged on this global unique id 210489 mac 210489 bytes_out 0 210489 bytes_in 0 210489 station_ip 5.119.27.94 210489 port 44 210489 unique_id port 210491 username hosseine 210491 kill_reason Another user logged on this global unique id 210491 mac 210491 bytes_out 0 210491 bytes_in 0 210491 station_ip 37.129.133.228 210491 port 16 210491 unique_id port 210493 username yaghobi 210493 mac 210493 bytes_out 2212312 210493 bytes_in 23696633 210493 station_ip 83.122.125.69 210493 port 48 210493 unique_id port 210493 remote_ip 10.8.0.106 210496 username pourshad 210496 kill_reason Another user logged on this global unique id 210496 mac 210496 bytes_out 0 210496 bytes_in 0 210496 station_ip 5.120.252.82 210496 port 29 210496 unique_id port 210496 remote_ip 10.8.1.10 210499 username barzegar8595 210499 mac 210499 bytes_out 199941 210499 bytes_in 1601543 210499 station_ip 46.225.208.211 210499 port 41 210499 unique_id port 210499 remote_ip 10.8.0.170 210500 username yaghobi 210500 mac 210500 bytes_out 0 210500 bytes_in 0 210500 station_ip 37.129.32.211 210500 port 47 210500 unique_id port 210500 remote_ip 10.8.0.106 210502 username barzegar 210502 mac 210502 bytes_out 954451 210502 bytes_in 9042768 210502 station_ip 5.120.55.42 210502 port 16 210502 unique_id port 210502 remote_ip 10.8.0.34 210504 username sabaghnezhad 210504 kill_reason Another user logged on this global unique id 210472 kill_reason Another user logged on this global unique id 210472 mac 210472 bytes_out 0 210472 bytes_in 0 210472 station_ip 37.129.255.165 210472 port 29 210472 unique_id port 210479 username yaghobi 210479 kill_reason Maximum check online fails reached 210479 mac 210479 bytes_out 0 210479 bytes_in 0 210479 station_ip 83.122.125.69 210479 port 40 210479 unique_id port 210484 username sabaghnezhad 210484 mac 210484 bytes_out 0 210484 bytes_in 0 210484 station_ip 83.122.120.95 210484 port 47 210484 unique_id port 210484 remote_ip 10.8.0.94 210494 username mehrpoyan101 210494 mac 210494 bytes_out 44380 210494 bytes_in 95948 210494 station_ip 5.119.155.133 210494 port 41 210494 unique_id port 210494 remote_ip 10.8.0.134 210495 username mirzaei6046 210495 kill_reason Another user logged on this global unique id 210495 mac 210495 bytes_out 0 210495 bytes_in 0 210495 station_ip 5.119.27.94 210495 port 44 210495 unique_id port 210497 username aminvpnipad 210497 mac 210497 bytes_out 0 210497 bytes_in 0 210497 station_ip 5.119.61.34 210497 port 41 210497 unique_id port 210497 remote_ip 10.8.0.202 210508 username mehrpoyan101 210508 mac 210508 bytes_out 0 210508 bytes_in 0 210508 station_ip 5.120.123.205 210508 port 49 210508 unique_id port 210508 remote_ip 10.8.0.134 210512 username kalantary6037 210512 mac 210512 bytes_out 0 210512 bytes_in 0 210512 station_ip 83.122.39.246 210512 port 47 210512 unique_id port 210512 remote_ip 10.8.0.18 210518 username yaghobi 210518 mac 210518 bytes_out 0 210518 bytes_in 0 210518 station_ip 37.129.32.211 210518 port 16 210518 unique_id port 210518 remote_ip 10.8.0.106 210521 username barzegar 210521 mac 210521 bytes_out 0 210521 bytes_in 0 210521 station_ip 5.120.55.42 210521 port 49 210521 unique_id port 210521 remote_ip 10.8.0.34 210525 username mehrpoyan101 210525 mac 210525 bytes_out 0 210525 bytes_in 0 210525 station_ip 5.120.134.16 210525 port 25 210525 unique_id port 210525 remote_ip 10.8.0.134 210531 username esmaeili1522 210531 mac 210531 bytes_out 0 210531 bytes_in 0 210531 station_ip 5.119.224.193 210531 port 50 210531 unique_id port 210542 username yaghobi 210542 mac 210542 bytes_out 0 210542 bytes_in 0 210542 station_ip 37.129.32.211 210542 port 51 210542 unique_id port 210542 remote_ip 10.8.0.106 210544 username meysam 210544 mac 210544 bytes_out 527540 210544 bytes_in 9560968 210544 station_ip 188.158.49.182 210544 port 32 210544 unique_id port 210544 remote_ip 10.8.1.6 210547 username barzegar 210547 mac 210547 bytes_out 2404 210547 bytes_in 4781 210547 station_ip 5.120.55.42 210547 port 16 210547 unique_id port 210547 remote_ip 10.8.0.34 210552 username sekonji0496 210552 mac 210552 bytes_out 25126 210552 bytes_in 31642 210552 station_ip 83.123.229.121 210552 port 49 210552 unique_id port 210552 remote_ip 10.8.0.70 210555 username barzegar 210555 mac 210555 bytes_out 22565 210555 bytes_in 46867 210555 station_ip 5.120.55.42 210555 port 29 210555 unique_id port 210555 remote_ip 10.8.1.30 210557 username barzegar 210557 mac 210557 bytes_out 0 210557 bytes_in 0 210557 station_ip 5.120.55.42 210557 port 42 210557 unique_id port 210557 remote_ip 10.8.0.34 210559 username hatami 210559 mac 210559 bytes_out 0 210559 bytes_in 0 210559 station_ip 151.235.125.252 210559 port 29 210559 unique_id port 210559 remote_ip 10.8.1.70 210560 username aminvpnipad 210560 mac 210560 bytes_out 0 210560 bytes_in 0 210560 station_ip 5.119.61.34 210481 port 49 210481 unique_id port 210481 remote_ip 10.8.0.34 210482 username dortaj3792 210482 mac 210482 bytes_out 1131245 210482 bytes_in 1583534 210482 station_ip 5.119.186.148 210482 port 41 210482 unique_id port 210482 remote_ip 10.8.0.10 210485 username ahmadi1 210485 mac 210485 bytes_out 333960 210485 bytes_in 1804845 210485 station_ip 83.122.29.242 210485 port 46 210485 unique_id port 210485 remote_ip 10.8.0.114 210488 username meysam 210488 mac 210488 bytes_out 0 210488 bytes_in 0 210488 station_ip 188.158.49.182 210488 port 30 210488 unique_id port 210488 remote_ip 10.8.1.6 210490 username barzegar 210490 mac 210490 bytes_out 0 210490 bytes_in 0 210490 station_ip 5.120.55.42 210490 port 30 210490 unique_id port 210490 remote_ip 10.8.1.30 210492 username hosseine 210492 mac 210492 bytes_out 0 210492 bytes_in 0 210492 station_ip 37.129.133.228 210492 port 16 210492 unique_id port 210498 username yaghobi 210498 mac 210498 bytes_out 0 210498 bytes_in 0 210498 station_ip 37.129.32.211 210498 port 47 210498 unique_id port 210498 remote_ip 10.8.0.106 210501 username aminvpnipad 210501 mac 210501 bytes_out 0 210501 bytes_in 0 210501 station_ip 5.119.61.34 210501 port 47 210501 unique_id port 210501 remote_ip 10.8.0.202 210503 username meysam 210503 kill_reason Another user logged on this global unique id 210503 mac 210503 bytes_out 0 210503 bytes_in 0 210503 station_ip 188.158.49.182 210503 port 30 210503 unique_id port 210503 remote_ip 10.8.1.6 210505 username mehrpoyan101 210505 mac 210505 bytes_out 48294 210505 bytes_in 160313 210505 station_ip 5.120.123.205 210505 port 48 210505 unique_id port 210505 remote_ip 10.8.0.134 210507 username aminvpnipad 210507 mac 210507 bytes_out 0 210507 bytes_in 0 210507 station_ip 5.119.61.34 210507 port 48 210507 unique_id port 210507 remote_ip 10.8.0.202 210509 username mehrpoyan101 210509 mac 210509 bytes_out 0 210509 bytes_in 0 210509 station_ip 5.120.123.205 210509 port 48 210509 unique_id port 210509 remote_ip 10.8.0.134 210511 username mehrpoyan101 210511 mac 210511 bytes_out 0 210511 bytes_in 0 210511 station_ip 5.120.123.205 210511 port 51 210511 unique_id port 210511 remote_ip 10.8.0.134 210514 username mosi 210514 mac 210514 bytes_out 0 210514 bytes_in 0 210514 station_ip 5.233.50.214 210514 port 19 210514 unique_id port 210514 remote_ip 10.8.0.38 210516 username mosi 210516 mac 210516 bytes_out 0 210516 bytes_in 0 210516 station_ip 37.137.47.118 210516 port 48 210516 unique_id port 210516 remote_ip 10.8.0.38 210517 username mehrpoyan101 210517 mac 210517 bytes_out 0 210517 bytes_in 0 210517 station_ip 5.120.123.205 210517 port 51 210517 unique_id port 210517 remote_ip 10.8.0.134 210519 username sekonji0496 210519 mac 210519 bytes_out 0 210519 bytes_in 0 210519 station_ip 83.123.229.121 210519 port 25 210519 unique_id port 210519 remote_ip 10.8.0.70 210522 username aminvpnipad 210522 mac 210522 bytes_out 0 210522 bytes_in 0 210522 station_ip 5.119.61.34 210522 port 25 210522 unique_id port 210522 remote_ip 10.8.0.202 210523 username mehrpoyan101 210523 mac 210523 bytes_out 0 210523 bytes_in 0 210523 station_ip 5.120.123.205 210523 port 48 210523 unique_id port 210523 remote_ip 10.8.0.134 210524 username pourshad 210524 mac 210524 bytes_out 0 210524 bytes_in 0 210524 station_ip 5.120.252.82 210524 port 47 210524 unique_id port 210524 remote_ip 10.8.0.122 210527 username sekonji0496 210504 mac 210504 bytes_out 0 210504 bytes_in 0 210504 station_ip 83.122.120.95 210504 port 31 210504 unique_id port 210504 remote_ip 10.8.0.94 210506 username meysam 210506 kill_reason Another user logged on this global unique id 210506 mac 210506 bytes_out 0 210506 bytes_in 0 210506 station_ip 188.158.49.182 210506 port 30 210506 unique_id port 210510 username esmaeilkazemi 210510 mac 210510 bytes_out 0 210510 bytes_in 0 210510 station_ip 46.249.124.78 210510 port 49 210510 unique_id port 210510 remote_ip 10.8.0.66 210513 username mehrpoyan101 210513 mac 210513 bytes_out 0 210513 bytes_in 0 210513 station_ip 5.120.123.205 210513 port 48 210513 unique_id port 210513 remote_ip 10.8.0.134 210515 username pourshad 210515 mac 210515 bytes_out 0 210515 bytes_in 0 210515 station_ip 5.120.252.82 210515 port 29 210515 unique_id port 210520 username mosi 210520 mac 210520 bytes_out 0 210520 bytes_in 0 210520 station_ip 37.137.47.118 210520 port 19 210520 unique_id port 210520 remote_ip 10.8.0.38 210526 username hatami 210526 mac 210526 bytes_out 0 210526 bytes_in 0 210526 station_ip 151.235.125.252 210526 port 46 210526 unique_id port 210526 remote_ip 10.8.0.14 210528 username esmaeili1522 210528 kill_reason Another user logged on this global unique id 210528 mac 210528 bytes_out 0 210528 bytes_in 0 210528 station_ip 5.119.224.193 210528 port 50 210528 unique_id port 210528 remote_ip 10.8.0.190 210530 username meysam 210530 mac 210530 bytes_out 0 210530 bytes_in 0 210530 station_ip 188.158.49.182 210530 port 30 210530 unique_id port 210535 username barzegar 210535 mac 210535 bytes_out 0 210535 bytes_in 0 210535 station_ip 5.120.55.42 210535 port 47 210535 unique_id port 210535 remote_ip 10.8.0.34 210536 username aminvpnipad 210536 mac 210536 bytes_out 0 210536 bytes_in 0 210536 station_ip 5.119.61.34 210536 port 47 210536 unique_id port 210536 remote_ip 10.8.0.202 210538 username barzegar 210538 mac 210538 bytes_out 0 210538 bytes_in 0 210538 station_ip 5.120.55.42 210538 port 30 210538 unique_id port 210538 remote_ip 10.8.1.30 210543 username charkhandaz3496 210543 mac 210543 bytes_out 2443225 210543 bytes_in 25094535 210543 station_ip 5.119.101.82 210543 port 19 210543 unique_id port 210543 remote_ip 10.8.0.142 210546 username sekonji0496 210546 mac 210546 bytes_out 11124 210546 bytes_in 19828 210546 station_ip 83.123.229.121 210546 port 29 210546 unique_id port 210546 remote_ip 10.8.1.226 210548 username hatami 210548 mac 210548 bytes_out 0 210548 bytes_in 0 210548 station_ip 151.235.125.252 210548 port 19 210548 unique_id port 210548 remote_ip 10.8.0.14 210550 username aminvpnipad 210550 mac 210550 bytes_out 0 210550 bytes_in 0 210550 station_ip 5.119.61.34 210550 port 16 210550 unique_id port 210550 remote_ip 10.8.0.202 210558 username aminvpnipad 210558 mac 210558 bytes_out 0 210558 bytes_in 0 210558 station_ip 5.119.61.34 210558 port 16 210558 unique_id port 210558 remote_ip 10.8.0.202 210561 username sekonji0496 210561 mac 210561 bytes_out 9348 210561 bytes_in 11723 210561 station_ip 83.123.229.121 210561 port 19 210561 unique_id port 210561 remote_ip 10.8.0.70 210562 username barzegar 210562 mac 210562 bytes_out 0 210562 bytes_in 0 210562 station_ip 5.120.55.42 210562 port 29 210562 unique_id port 210562 remote_ip 10.8.1.30 210563 username sekonji0496 210563 mac 210563 bytes_out 0 210563 bytes_in 0 210563 station_ip 83.123.229.121 210563 port 16 210527 mac 210527 bytes_out 0 210527 bytes_in 0 210527 station_ip 83.123.229.121 210527 port 16 210527 unique_id port 210527 remote_ip 10.8.0.70 210529 username mehrpoyan101 210529 mac 210529 bytes_out 0 210529 bytes_in 0 210529 station_ip 5.120.134.16 210529 port 47 210529 unique_id port 210529 remote_ip 10.8.0.134 210532 username sekonji0496 210532 mac 210532 bytes_out 5398 210532 bytes_in 10917 210532 station_ip 83.123.229.121 210532 port 29 210532 unique_id port 210532 remote_ip 10.8.1.226 210533 username mehrpoyan101 210533 mac 210533 bytes_out 0 210533 bytes_in 0 210533 station_ip 5.120.134.16 210533 port 46 210533 unique_id port 210533 remote_ip 10.8.0.134 210534 username sekonji0496 210534 mac 210534 bytes_out 5681 210534 bytes_in 12330 210534 station_ip 83.123.229.121 210534 port 29 210534 unique_id port 210534 remote_ip 10.8.1.226 210537 username aminvpnipad 210537 mac 210537 bytes_out 0 210537 bytes_in 0 210537 station_ip 5.119.61.34 210537 port 47 210537 unique_id port 210537 remote_ip 10.8.0.202 210539 username mehrpoyan101 210539 mac 210539 bytes_out 0 210539 bytes_in 0 210539 station_ip 5.120.134.16 210539 port 46 210539 unique_id port 210539 remote_ip 10.8.0.134 210540 username mehrpoyan101 210540 mac 210540 bytes_out 48162 210540 bytes_in 150843 210540 station_ip 5.120.26.87 210540 port 47 210540 unique_id port 210540 remote_ip 10.8.0.134 210541 username aminvpnipad 210541 kill_reason Maximum check online fails reached 210541 mac 210541 bytes_out 0 210541 bytes_in 0 210541 station_ip 5.119.61.34 210541 port 48 210541 unique_id port 210545 username hatami 210545 mac 210545 bytes_out 0 210545 bytes_in 0 210545 station_ip 151.235.125.252 210545 port 16 210545 unique_id port 210545 remote_ip 10.8.0.14 210549 username motamedi9772 210549 mac 210549 bytes_out 0 210549 bytes_in 0 210549 station_ip 83.123.88.196 210549 port 50 210549 unique_id port 210549 remote_ip 10.8.0.86 210551 username yaghobi 210551 mac 210551 bytes_out 44351 210551 bytes_in 49369 210551 station_ip 37.129.32.211 210551 port 47 210551 unique_id port 210551 remote_ip 10.8.0.106 210553 username dortaj3792 210553 mac 210553 bytes_out 612793 210553 bytes_in 1021319 210553 station_ip 5.119.186.148 210553 port 25 210553 unique_id port 210553 remote_ip 10.8.0.10 210554 username kamali3 210554 mac 210554 bytes_out 664466 210554 bytes_in 1473652 210554 station_ip 83.122.179.246 210554 port 42 210554 unique_id port 210554 remote_ip 10.8.0.182 210556 username kalantary6037 210556 mac 210556 bytes_out 918132 210556 bytes_in 10267245 210556 station_ip 83.122.117.234 210556 port 16 210556 unique_id port 210556 remote_ip 10.8.0.18 210564 username soleymani5056 210564 mac 210564 bytes_out 0 210564 bytes_in 0 210564 station_ip 5.120.179.195 210564 port 19 210564 unique_id port 210564 remote_ip 10.8.0.246 210566 username dortaj3792 210566 mac 210566 bytes_out 83849 210566 bytes_in 252957 210566 station_ip 5.119.186.148 210566 port 19 210566 unique_id port 210566 remote_ip 10.8.0.10 210567 username aminvpnipad 210567 mac 210567 bytes_out 0 210567 bytes_in 0 210567 station_ip 5.119.61.34 210567 port 19 210567 unique_id port 210567 remote_ip 10.8.0.202 210579 username meysam 210579 mac 210579 bytes_out 0 210579 bytes_in 0 210579 station_ip 188.158.49.182 210579 port 29 210579 unique_id port 210579 remote_ip 10.8.1.6 210583 username yaghobi 210583 mac 210583 bytes_out 0 210583 bytes_in 0 210560 port 16 210560 unique_id port 210560 remote_ip 10.8.0.202 210569 username meysam 210569 mac 210569 bytes_out 2024599 210569 bytes_in 39864636 210569 station_ip 188.158.49.182 210569 port 29 210569 unique_id port 210569 remote_ip 10.8.1.6 210571 username barzegar 210571 mac 210571 bytes_out 4560 210571 bytes_in 11789 210571 station_ip 5.120.55.42 210571 port 29 210571 unique_id port 210571 remote_ip 10.8.1.30 210573 username aminvpnipad 210573 mac 210573 bytes_out 0 210573 bytes_in 0 210573 station_ip 5.119.61.34 210573 port 47 210573 unique_id port 210573 remote_ip 10.8.0.202 210577 username barzegar 210577 mac 210577 bytes_out 0 210577 bytes_in 0 210577 station_ip 5.120.55.42 210577 port 47 210577 unique_id port 210577 remote_ip 10.8.0.34 210581 username charkhandaz3496 210581 mac 210581 bytes_out 17713 210581 bytes_in 50705 210581 station_ip 5.119.101.82 210581 port 19 210581 unique_id port 210581 remote_ip 10.8.0.142 210584 username yaghobi 210584 mac 210584 bytes_out 0 210584 bytes_in 0 210584 station_ip 37.129.32.211 210584 port 19 210584 unique_id port 210584 remote_ip 10.8.0.106 210589 username meysam 210589 mac 210589 bytes_out 0 210589 bytes_in 0 210589 station_ip 188.158.49.182 210589 port 29 210589 unique_id port 210589 remote_ip 10.8.1.6 210591 username godarzi 210591 kill_reason Another user logged on this global unique id 210591 mac 210591 bytes_out 0 210591 bytes_in 0 210591 station_ip 5.120.151.4 210591 port 41 210591 unique_id port 210591 remote_ip 10.8.0.74 210592 username aminvpnipad 210592 mac 210592 bytes_out 0 210592 bytes_in 0 210592 station_ip 5.119.61.34 210592 port 19 210592 unique_id port 210592 remote_ip 10.8.0.202 210593 username kalantary6037 210593 kill_reason Another user logged on this global unique id 210593 mac 210593 bytes_out 0 210593 bytes_in 0 210593 station_ip 83.122.117.254 210593 port 42 210593 unique_id port 210593 remote_ip 10.8.0.18 210598 username kalantary6037 210598 mac 210598 bytes_out 0 210598 bytes_in 0 210598 station_ip 83.122.117.254 210598 port 42 210598 unique_id port 210603 username barzegar 210603 mac 210603 bytes_out 3148 210603 bytes_in 5669 210603 station_ip 5.120.55.42 210603 port 29 210603 unique_id port 210603 remote_ip 10.8.1.30 210604 username barzegar 210604 mac 210604 bytes_out 0 210604 bytes_in 0 210604 station_ip 5.120.55.42 210604 port 47 210604 unique_id port 210604 remote_ip 10.8.0.34 210611 username kalantary6037 210611 mac 210611 bytes_out 260079 210611 bytes_in 839290 210611 station_ip 83.122.51.114 210611 port 49 210611 unique_id port 210611 remote_ip 10.8.0.18 210612 username aminvpnipad 210612 mac 210612 bytes_out 0 210612 bytes_in 0 210612 station_ip 5.119.61.34 210612 port 52 210612 unique_id port 210612 remote_ip 10.8.0.202 210616 username barzegar 210616 mac 210616 bytes_out 41931 210616 bytes_in 84705 210616 station_ip 5.120.55.42 210616 port 16 210616 unique_id port 210616 remote_ip 10.8.0.34 210631 username motamedi9772 210631 mac 210631 bytes_out 661903 210631 bytes_in 6709307 210631 station_ip 83.123.25.144 210631 port 47 210631 unique_id port 210631 remote_ip 10.8.0.86 210637 username aminvpnipad 210637 mac 210637 bytes_out 0 210637 bytes_in 0 210637 station_ip 5.119.61.34 210637 port 31 210637 unique_id port 210637 remote_ip 10.8.0.202 210639 username sabaghnezhad 210639 mac 210639 bytes_out 0 210639 bytes_in 0 210639 station_ip 83.122.190.67 210639 port 41 210639 unique_id port 210563 unique_id port 210563 remote_ip 10.8.0.70 210565 username barzegar 210565 mac 210565 bytes_out 0 210565 bytes_in 0 210565 station_ip 5.120.55.42 210565 port 30 210565 unique_id port 210565 remote_ip 10.8.1.30 210568 username sekonji0496 210568 mac 210568 bytes_out 0 210568 bytes_in 0 210568 station_ip 83.123.229.121 210568 port 30 210568 unique_id port 210568 remote_ip 10.8.1.226 210570 username kalantary6037 210570 mac 210570 bytes_out 149260 210570 bytes_in 4337851 210570 station_ip 83.122.1.26 210570 port 42 210570 unique_id port 210570 remote_ip 10.8.0.18 210572 username charkhandaz3496 210572 mac 210572 bytes_out 625621 210572 bytes_in 6021114 210572 station_ip 5.119.101.82 210572 port 47 210572 unique_id port 210572 remote_ip 10.8.0.142 210574 username barzegar 210574 mac 210574 bytes_out 2708 210574 bytes_in 5336 210574 station_ip 5.120.55.42 210574 port 29 210574 unique_id port 210574 remote_ip 10.8.1.30 210575 username motamedi9772 210575 kill_reason Another user logged on this global unique id 210575 mac 210575 bytes_out 0 210575 bytes_in 0 210575 station_ip 83.123.127.152 210575 port 19 210575 unique_id port 210575 remote_ip 10.8.0.86 210576 username kharazmi2920 210576 mac 210576 bytes_out 0 210576 bytes_in 0 210576 station_ip 83.123.248.208 210576 port 42 210576 unique_id port 210576 remote_ip 10.8.0.54 210578 username motamedi9772 210578 mac 210578 bytes_out 0 210578 bytes_in 0 210578 station_ip 83.123.127.152 210578 port 19 210578 unique_id port 210580 username barzegar 210580 mac 210580 bytes_out 2596 210580 bytes_in 5324 210580 station_ip 5.120.55.42 210580 port 30 210580 unique_id port 210580 remote_ip 10.8.1.30 210582 username aminvpnipad 210582 mac 210582 bytes_out 0 210582 bytes_in 0 210582 station_ip 5.119.61.34 210582 port 19 210582 unique_id port 210582 remote_ip 10.8.0.202 210585 username barzegar 210585 mac 210585 bytes_out 0 210585 bytes_in 0 210585 station_ip 5.120.55.42 210585 port 29 210585 unique_id port 210585 remote_ip 10.8.1.30 210586 username yaghobi 210586 mac 210586 bytes_out 115500 210586 bytes_in 701250 210586 station_ip 37.129.32.211 210586 port 47 210586 unique_id port 210586 remote_ip 10.8.0.106 210587 username kamali3 210587 mac 210587 bytes_out 303765 210587 bytes_in 569711 210587 station_ip 83.122.179.246 210587 port 25 210587 unique_id port 210587 remote_ip 10.8.0.182 210588 username barzegar8595 210588 mac 210588 bytes_out 655201 210588 bytes_in 6547546 210588 station_ip 46.225.208.225 210588 port 19 210588 unique_id port 210588 remote_ip 10.8.0.170 210595 username kalantary6037 210595 kill_reason Another user logged on this global unique id 210595 mac 210595 bytes_out 0 210595 bytes_in 0 210595 station_ip 83.122.117.254 210595 port 42 210595 unique_id port 210596 username barzegar8595 210596 mac 210596 bytes_out 0 210596 bytes_in 0 210596 station_ip 46.225.232.213 210596 port 25 210596 unique_id port 210596 remote_ip 10.8.0.170 210597 username barzegar 210597 mac 210597 bytes_out 0 210597 bytes_in 0 210597 station_ip 5.120.55.42 210597 port 49 210597 unique_id port 210597 remote_ip 10.8.0.34 210600 username mohammadjavad 210600 kill_reason Another user logged on this global unique id 210600 mac 210600 bytes_out 0 210600 bytes_in 0 210600 station_ip 37.27.32.151 210600 port 47 210600 unique_id port 210600 remote_ip 10.8.0.138 210605 username hosseine 210605 mac 210605 bytes_out 0 210605 bytes_in 0 210605 station_ip 37.129.232.232 210605 port 25 210583 station_ip 37.129.32.211 210583 port 42 210583 unique_id port 210583 remote_ip 10.8.0.106 210590 username yaghobi 210590 mac 210590 bytes_out 1356744 210590 bytes_in 21674090 210590 station_ip 37.129.32.211 210590 port 49 210590 unique_id port 210590 remote_ip 10.8.0.106 210594 username barzegar 210594 mac 210594 bytes_out 0 210594 bytes_in 0 210594 station_ip 5.120.55.42 210594 port 19 210594 unique_id port 210594 remote_ip 10.8.0.34 210599 username barzegar8595 210599 mac 210599 bytes_out 778932 210599 bytes_in 7234428 210599 station_ip 46.225.208.171 210599 port 19 210599 unique_id port 210599 remote_ip 10.8.0.170 210601 username aminvpnipad 210601 mac 210601 bytes_out 0 210601 bytes_in 0 210601 station_ip 5.119.61.34 210601 port 19 210601 unique_id port 210601 remote_ip 10.8.0.202 210602 username mohammadjavad 210602 mac 210602 bytes_out 0 210602 bytes_in 0 210602 station_ip 37.27.32.151 210602 port 47 210602 unique_id port 210606 username aminvpnipad 210606 mac 210606 bytes_out 0 210606 bytes_in 0 210606 station_ip 5.119.61.34 210606 port 47 210606 unique_id port 210606 remote_ip 10.8.0.202 210608 username barzegar8595 210608 kill_reason Another user logged on this global unique id 210608 mac 210608 bytes_out 0 210608 bytes_in 0 210608 station_ip 46.225.208.234 210608 port 42 210608 unique_id port 210608 remote_ip 10.8.0.170 210609 username meysam 210609 mac 210609 bytes_out 590972 210609 bytes_in 9553404 210609 station_ip 188.158.49.182 210609 port 29 210609 unique_id port 210609 remote_ip 10.8.1.6 210613 username aminvpnipad 210613 mac 210613 bytes_out 1644 210613 bytes_in 4649 210613 station_ip 5.119.61.34 210613 port 52 210613 unique_id port 210613 remote_ip 10.8.0.202 210615 username barzegar 210615 kill_reason Maximum number of concurrent logins reached 210615 mac 210615 bytes_out 0 210615 bytes_in 0 210615 station_ip 5.120.55.42 210615 port 52 210615 unique_id port 210618 username arash 210618 mac 210618 bytes_out 1119189 210618 bytes_in 7837532 210618 station_ip 37.27.43.31 210618 port 47 210618 unique_id port 210618 remote_ip 10.8.0.206 210620 username barzegar8595 210620 kill_reason Another user logged on this global unique id 210620 mac 210620 bytes_out 0 210620 bytes_in 0 210620 station_ip 46.225.208.234 210620 port 42 210620 unique_id port 210621 username arash 210621 mac 210621 bytes_out 132576 210621 bytes_in 262035 210621 station_ip 37.27.43.31 210621 port 16 210621 unique_id port 210621 remote_ip 10.8.0.206 210622 username charkhandaz3496 210622 mac 210622 bytes_out 633955 210622 bytes_in 6633579 210622 station_ip 5.120.66.41 210622 port 47 210622 unique_id port 210622 remote_ip 10.8.0.142 210624 username godarzi 210624 mac 210624 bytes_out 0 210624 bytes_in 0 210624 station_ip 5.120.151.4 210624 port 41 210624 unique_id port 210626 username malekpoir 210626 kill_reason Another user logged on this global unique id 210626 mac 210626 bytes_out 0 210626 bytes_in 0 210626 station_ip 5.119.117.129 210626 port 49 210626 unique_id port 210626 remote_ip 10.8.0.178 210627 username charkhandaz3496 210627 mac 210627 bytes_out 0 210627 bytes_in 0 210627 station_ip 5.120.66.41 210627 port 16 210627 unique_id port 210627 remote_ip 10.8.0.142 210628 username yaghobi 210628 mac 210628 bytes_out 0 210628 bytes_in 0 210628 station_ip 37.129.32.211 210628 port 31 210628 unique_id port 210628 remote_ip 10.8.0.106 210633 username meysam 210633 mac 210633 bytes_out 111125 210633 bytes_in 1301435 210605 unique_id port 210605 remote_ip 10.8.0.126 210607 username alipour1506 210607 mac 210607 bytes_out 4165222 210607 bytes_in 47922360 210607 station_ip 37.129.119.113 210607 port 16 210607 unique_id port 210607 remote_ip 10.8.0.46 210610 username mosi 210610 mac 210610 bytes_out 0 210610 bytes_in 0 210610 station_ip 37.156.50.30 210610 port 52 210610 unique_id port 210610 remote_ip 10.8.0.38 210614 username alipour1506 210614 mac 210614 bytes_out 0 210614 bytes_in 0 210614 station_ip 37.129.119.113 210614 port 51 210614 unique_id port 210614 remote_ip 10.8.0.46 210617 username aminvpnipad 210617 mac 210617 bytes_out 0 210617 bytes_in 0 210617 station_ip 5.119.61.34 210617 port 16 210617 unique_id port 210617 remote_ip 10.8.0.202 210619 username barzegar 210619 mac 210619 bytes_out 0 210619 bytes_in 0 210619 station_ip 5.120.55.42 210619 port 31 210619 unique_id port 210623 username aminvpnipad 210623 mac 210623 bytes_out 0 210623 bytes_in 0 210623 station_ip 5.119.61.34 210623 port 16 210623 unique_id port 210623 remote_ip 10.8.0.202 210625 username motamedi9772 210625 mac 210625 bytes_out 0 210625 bytes_in 0 210625 station_ip 83.123.25.144 210625 port 41 210625 unique_id port 210625 remote_ip 10.8.0.86 210629 username aminvpnipad 210629 mac 210629 bytes_out 0 210629 bytes_in 0 210629 station_ip 5.119.61.34 210629 port 16 210629 unique_id port 210629 remote_ip 10.8.0.202 210630 username charkhandaz3496 210630 mac 210630 bytes_out 61844 210630 bytes_in 35504 210630 station_ip 5.120.66.41 210630 port 41 210630 unique_id port 210630 remote_ip 10.8.0.142 210632 username barzegar8595 210632 mac 210632 bytes_out 0 210632 bytes_in 0 210632 station_ip 46.225.208.234 210632 port 42 210632 unique_id port 210634 username soleymani5056 210634 mac 210634 bytes_out 0 210634 bytes_in 0 210634 station_ip 5.119.224.239 210634 port 31 210634 unique_id port 210634 remote_ip 10.8.0.246 210638 username aminvpnipad 210638 mac 210638 bytes_out 0 210638 bytes_in 0 210638 station_ip 5.119.61.34 210638 port 31 210638 unique_id port 210638 remote_ip 10.8.0.202 210641 username charkhandaz3496 210641 mac 210641 bytes_out 0 210641 bytes_in 0 210641 station_ip 5.120.66.41 210641 port 16 210641 unique_id port 210643 username kamali3 210643 mac 210643 bytes_out 7739 210643 bytes_in 11525 210643 station_ip 83.122.179.246 210643 port 31 210643 unique_id port 210643 remote_ip 10.8.0.182 210645 username aminvpnipad 210645 mac 210645 bytes_out 0 210645 bytes_in 0 210645 station_ip 5.119.61.34 210645 port 16 210645 unique_id port 210645 remote_ip 10.8.0.202 210648 username soleymani5056 210648 mac 210648 bytes_out 0 210648 bytes_in 0 210648 station_ip 5.120.105.85 210648 port 19 210648 unique_id port 210648 remote_ip 10.8.0.246 210650 username kalantary6037 210650 mac 210650 bytes_out 0 210650 bytes_in 0 210650 station_ip 83.122.68.126 210650 port 31 210650 unique_id port 210650 remote_ip 10.8.0.18 210654 username mirzaei6046 210654 kill_reason Another user logged on this global unique id 210654 mac 210654 bytes_out 0 210654 bytes_in 0 210654 station_ip 5.119.27.94 210654 port 44 210654 unique_id port 210656 username saeeddamghani 210656 mac 210656 bytes_out 0 210656 bytes_in 0 210656 station_ip 31.56.81.233 210656 port 31 210656 unique_id port 210656 remote_ip 10.8.0.162 210657 username aminvpnipad 210657 mac 210657 bytes_out 0 210657 bytes_in 0 210657 station_ip 5.119.61.34 210633 station_ip 188.158.49.182 210633 port 29 210633 unique_id port 210633 remote_ip 10.8.1.6 210635 username charkhandaz3496 210635 kill_reason Another user logged on this global unique id 210635 mac 210635 bytes_out 0 210635 bytes_in 0 210635 station_ip 5.120.66.41 210635 port 16 210635 unique_id port 210635 remote_ip 10.8.0.142 210636 username aminvpnipad 210636 mac 210636 bytes_out 0 210636 bytes_in 0 210636 station_ip 5.119.61.34 210636 port 31 210636 unique_id port 210636 remote_ip 10.8.0.202 210644 username kalantary6037 210644 mac 210644 bytes_out 624022 210644 bytes_in 7435869 210644 station_ip 83.122.68.126 210644 port 16 210644 unique_id port 210644 remote_ip 10.8.0.18 210651 username aminvpnipad 210651 mac 210651 bytes_out 0 210651 bytes_in 0 210651 station_ip 5.119.61.34 210651 port 19 210651 unique_id port 210651 remote_ip 10.8.0.202 210652 username saeeddamghani 210652 mac 210652 bytes_out 0 210652 bytes_in 0 210652 station_ip 31.56.81.233 210652 port 19 210652 unique_id port 210652 remote_ip 10.8.0.162 210653 username arash 210653 mac 210653 bytes_out 0 210653 bytes_in 0 210653 station_ip 37.27.43.31 210653 port 31 210653 unique_id port 210653 remote_ip 10.8.0.206 210655 username saeeddamghani 210655 mac 210655 bytes_out 0 210655 bytes_in 0 210655 station_ip 31.56.81.233 210655 port 31 210655 unique_id port 210655 remote_ip 10.8.0.162 210659 username mohammadjavad 210659 kill_reason Another user logged on this global unique id 210659 mac 210659 bytes_out 0 210659 bytes_in 0 210659 station_ip 37.129.65.167 210659 port 19 210659 unique_id port 210659 remote_ip 10.8.0.138 210663 username kalantary6037 210663 mac 210663 bytes_out 734594 210663 bytes_in 10202941 210663 station_ip 83.122.33.62 210663 port 53 210663 unique_id port 210663 remote_ip 10.8.0.18 210665 username motamedi9772 210665 mac 210665 bytes_out 3041050 210665 bytes_in 39886496 210665 station_ip 83.123.22.200 210665 port 31 210665 unique_id port 210665 remote_ip 10.8.0.86 210667 username aminvpnipad 210667 mac 210667 bytes_out 0 210667 bytes_in 0 210667 station_ip 5.119.61.34 210667 port 42 210667 unique_id port 210667 remote_ip 10.8.0.202 210669 username meysam 210669 mac 210669 bytes_out 0 210669 bytes_in 0 210669 station_ip 188.158.49.182 210669 port 31 210669 unique_id port 210669 remote_ip 10.8.0.102 210673 username alipour1506 210673 mac 210673 bytes_out 67610 210673 bytes_in 69581 210673 station_ip 37.129.119.113 210673 port 29 210673 unique_id port 210673 remote_ip 10.8.1.158 210674 username alipour1506 210674 mac 210674 bytes_out 30175 210674 bytes_in 40743 210674 station_ip 37.129.119.113 210674 port 29 210674 unique_id port 210674 remote_ip 10.8.1.158 210677 username alipour1506 210677 mac 210677 bytes_out 5209 210677 bytes_in 8608 210677 station_ip 37.129.119.113 210677 port 29 210677 unique_id port 210677 remote_ip 10.8.1.158 210681 username alipour1506 210681 mac 210681 bytes_out 0 210681 bytes_in 0 210681 station_ip 37.129.119.113 210681 port 29 210681 unique_id port 210681 remote_ip 10.8.1.158 210683 username milan 210683 kill_reason Another user logged on this global unique id 210683 mac 210683 bytes_out 0 210683 bytes_in 0 210683 station_ip 5.119.220.159 210683 port 33 210683 unique_id port 210683 remote_ip 10.8.0.222 210684 username kalantary6037 210684 mac 210684 bytes_out 18766 210684 bytes_in 38850 210684 station_ip 83.122.2.118 210684 port 49 210684 unique_id port 210684 remote_ip 10.8.0.18 210687 username soleymani5056 210639 remote_ip 10.8.0.94 210640 username malekpoir 210640 kill_reason Another user logged on this global unique id 210640 mac 210640 bytes_out 0 210640 bytes_in 0 210640 station_ip 5.119.117.129 210640 port 49 210640 unique_id port 210642 username kamali3 210642 mac 210642 bytes_out 0 210642 bytes_in 0 210642 station_ip 83.122.179.246 210642 port 50 210642 unique_id port 210642 remote_ip 10.8.0.182 210646 username dortaj3792 210646 mac 210646 bytes_out 2293729 210646 bytes_in 5188275 210646 station_ip 5.119.186.148 210646 port 19 210646 unique_id port 210646 remote_ip 10.8.0.10 210647 username kamali3 210647 mac 210647 bytes_out 16922 210647 bytes_in 25326 210647 station_ip 83.122.179.246 210647 port 42 210647 unique_id port 210647 remote_ip 10.8.0.182 210649 username kamali3 210649 mac 210649 bytes_out 24797 210649 bytes_in 27974 210649 station_ip 83.122.179.246 210649 port 16 210649 unique_id port 210649 remote_ip 10.8.0.182 210658 username rajaei 210658 mac 210658 bytes_out 0 210658 bytes_in 0 210658 station_ip 89.34.32.194 210658 port 46 210658 unique_id port 210658 remote_ip 10.8.0.90 210660 username aminvpnipad 210660 mac 210660 bytes_out 0 210660 bytes_in 0 210660 station_ip 5.119.61.34 210660 port 54 210660 unique_id port 210660 remote_ip 10.8.0.202 210661 username meysam 210661 kill_reason Another user logged on this global unique id 210661 mac 210661 bytes_out 0 210661 bytes_in 0 210661 station_ip 188.158.49.182 210661 port 52 210661 unique_id port 210661 remote_ip 10.8.0.102 210664 username meysam 210664 mac 210664 bytes_out 0 210664 bytes_in 0 210664 station_ip 188.158.49.182 210664 port 52 210664 unique_id port 210671 username malekpoir 210671 mac 210671 bytes_out 0 210671 bytes_in 0 210671 station_ip 5.119.117.129 210671 port 49 210671 unique_id port 210675 username alipour1506 210675 mac 210675 bytes_out 0 210675 bytes_in 0 210675 station_ip 37.129.119.113 210675 port 29 210675 unique_id port 210675 remote_ip 10.8.1.158 210676 username sabaghnezhad 210676 mac 210676 bytes_out 110207 210676 bytes_in 139995 210676 station_ip 83.123.213.124 210676 port 54 210676 unique_id port 210676 remote_ip 10.8.0.94 210679 username alipour1506 210679 mac 210679 bytes_out 0 210679 bytes_in 0 210679 station_ip 37.129.119.113 210679 port 30 210679 unique_id port 210679 remote_ip 10.8.1.158 210680 username alipour1506 210680 mac 210680 bytes_out 0 210680 bytes_in 0 210680 station_ip 37.129.119.113 210680 port 29 210680 unique_id port 210680 remote_ip 10.8.1.158 210688 username rajaei 210688 mac 210688 bytes_out 0 210688 bytes_in 0 210688 station_ip 89.34.32.194 210688 port 46 210688 unique_id port 210688 remote_ip 10.8.0.90 210689 username aminvpnipad 210689 kill_reason Another user logged on this global unique id 210689 mac 210689 bytes_out 0 210689 bytes_in 0 210689 station_ip 5.119.61.34 210689 port 19 210689 unique_id port 210694 username pourshad 210694 mac 210694 bytes_out 0 210694 bytes_in 0 210694 station_ip 5.120.225.240 210694 port 31 210694 unique_id port 210694 remote_ip 10.8.0.122 210696 username sabaghnezhad 210696 mac 210696 bytes_out 0 210696 bytes_in 0 210696 station_ip 83.123.213.124 210696 port 42 210696 unique_id port 210696 remote_ip 10.8.0.94 210698 username aminvpn 210698 mac 210698 bytes_out 139195 210698 bytes_in 1173498 210698 station_ip 83.122.158.55 210698 port 42 210698 unique_id port 210698 remote_ip 10.8.0.58 210701 username dortaj3792 210701 mac 210657 port 31 210657 unique_id port 210657 remote_ip 10.8.0.202 210662 username arash 210662 mac 210662 bytes_out 2779725 210662 bytes_in 54840887 210662 station_ip 37.27.43.31 210662 port 42 210662 unique_id port 210662 remote_ip 10.8.0.206 210666 username aminvpnipad 210666 mac 210666 bytes_out 0 210666 bytes_in 0 210666 station_ip 5.119.61.34 210666 port 42 210666 unique_id port 210666 remote_ip 10.8.0.202 210668 username mohammadjavad 210668 mac 210668 bytes_out 0 210668 bytes_in 0 210668 station_ip 37.129.65.167 210668 port 19 210668 unique_id port 210670 username malekpoir 210670 kill_reason Another user logged on this global unique id 210670 mac 210670 bytes_out 0 210670 bytes_in 0 210670 station_ip 5.119.117.129 210670 port 49 210670 unique_id port 210672 username alipour1506 210672 mac 210672 bytes_out 1670312 210672 bytes_in 22491629 210672 station_ip 37.129.119.113 210672 port 51 210672 unique_id port 210672 remote_ip 10.8.0.46 210678 username alipour1506 210678 mac 210678 bytes_out 0 210678 bytes_in 0 210678 station_ip 37.129.119.113 210678 port 29 210678 unique_id port 210678 remote_ip 10.8.1.158 210682 username yaghobi 210682 mac 210682 bytes_out 281099 210682 bytes_in 354402 210682 station_ip 37.129.43.59 210682 port 42 210682 unique_id port 210682 remote_ip 10.8.0.106 210685 username aminvpnipad 210685 kill_reason Another user logged on this global unique id 210685 mac 210685 bytes_out 0 210685 bytes_in 0 210685 station_ip 5.119.61.34 210685 port 19 210685 unique_id port 210685 remote_ip 10.8.0.202 210686 username charkhandaz3496 210686 mac 210686 bytes_out 701936 210686 bytes_in 1334726 210686 station_ip 5.119.60.184 210686 port 31 210686 unique_id port 210686 remote_ip 10.8.0.142 210690 username milan 210690 kill_reason Another user logged on this global unique id 210690 mac 210690 bytes_out 0 210690 bytes_in 0 210690 station_ip 5.119.220.159 210690 port 33 210690 unique_id port 210691 username aminvpnipad 210691 kill_reason Another user logged on this global unique id 210691 mac 210691 bytes_out 0 210691 bytes_in 0 210691 station_ip 5.119.61.34 210691 port 19 210691 unique_id port 210693 username motamedi9772 210693 kill_reason Maximum check online fails reached 210693 mac 210693 bytes_out 0 210693 bytes_in 0 210693 station_ip 83.123.53.140 210693 port 49 210693 unique_id port 210699 username yaghobi 210699 mac 210699 bytes_out 0 210699 bytes_in 0 210699 station_ip 37.129.43.59 210699 port 31 210699 unique_id port 210699 remote_ip 10.8.0.106 210703 username milan 210703 kill_reason Another user logged on this global unique id 210703 mac 210703 bytes_out 0 210703 bytes_in 0 210703 station_ip 5.119.220.159 210703 port 33 210703 unique_id port 210707 username mohammadjavad 210707 mac 210707 bytes_out 0 210707 bytes_in 0 210707 station_ip 83.123.6.85 210707 port 19 210707 unique_id port 210707 remote_ip 10.8.0.138 210713 username jafari 210713 kill_reason Another user logged on this global unique id 210713 mac 210713 bytes_out 0 210713 bytes_in 0 210713 station_ip 5.62.199.105 210713 port 41 210713 unique_id port 210713 remote_ip 10.8.0.110 210715 username aminvpnipad 210715 mac 210715 bytes_out 0 210715 bytes_in 0 210715 station_ip 5.119.61.34 210715 port 50 210715 unique_id port 210715 remote_ip 10.8.0.202 210716 username sabaghnezhad 210716 mac 210716 bytes_out 0 210716 bytes_in 0 210716 station_ip 83.123.213.124 210716 port 51 210716 unique_id port 210716 remote_ip 10.8.0.94 210718 username motamedi9772 210718 kill_reason Another user logged on this global unique id 210687 mac 210687 bytes_out 87198 210687 bytes_in 235160 210687 station_ip 5.119.61.149 210687 port 42 210687 unique_id port 210687 remote_ip 10.8.0.246 210692 username alipour1506 210692 mac 210692 bytes_out 586974 210692 bytes_in 2365706 210692 station_ip 37.129.119.113 210692 port 29 210692 unique_id port 210692 remote_ip 10.8.1.158 210695 username aminvpnipad 210695 kill_reason Another user logged on this global unique id 210695 mac 210695 bytes_out 0 210695 bytes_in 0 210695 station_ip 5.119.61.34 210695 port 19 210695 unique_id port 210697 username aminvpn 210697 mac 210697 bytes_out 0 210697 bytes_in 0 210697 station_ip 5.120.114.235 210697 port 41 210697 unique_id port 210697 remote_ip 10.8.0.58 210700 username aminvpn 210700 mac 210700 bytes_out 0 210700 bytes_in 0 210700 station_ip 5.120.114.235 210700 port 41 210700 unique_id port 210700 remote_ip 10.8.0.58 210702 username aminvpnipad 210702 mac 210702 bytes_out 0 210702 bytes_in 0 210702 station_ip 5.119.61.34 210702 port 19 210702 unique_id port 210705 username yaghobi 210705 mac 210705 bytes_out 0 210705 bytes_in 0 210705 station_ip 37.129.43.59 210705 port 42 210705 unique_id port 210705 remote_ip 10.8.0.106 210708 username aminvpn 210708 mac 210708 bytes_out 0 210708 bytes_in 0 210708 station_ip 83.122.158.55 210708 port 31 210708 unique_id port 210708 remote_ip 10.8.0.58 210709 username mohammadjavad 210709 mac 210709 bytes_out 0 210709 bytes_in 0 210709 station_ip 83.123.6.85 210709 port 50 210709 unique_id port 210709 remote_ip 10.8.0.138 210711 username aminvpn 210711 mac 210711 bytes_out 0 210711 bytes_in 0 210711 station_ip 83.122.158.55 210711 port 31 210711 unique_id port 210711 remote_ip 10.8.0.58 210717 username rajaei 210717 mac 210717 bytes_out 0 210717 bytes_in 0 210717 station_ip 89.34.32.194 210717 port 31 210717 unique_id port 210717 remote_ip 10.8.0.90 210721 username sabaghnezhad 210721 mac 210721 bytes_out 0 210721 bytes_in 0 210721 station_ip 83.123.213.124 210721 port 50 210721 unique_id port 210721 remote_ip 10.8.0.94 210724 username aminvpnipad 210724 mac 210724 bytes_out 0 210724 bytes_in 0 210724 station_ip 5.119.61.34 210724 port 31 210724 unique_id port 210724 remote_ip 10.8.0.202 210725 username mehrpoyan101 210725 mac 210725 bytes_out 0 210725 bytes_in 0 210725 station_ip 5.120.14.77 210725 port 16 210725 unique_id port 210725 remote_ip 10.8.0.134 210729 username mehrpoyan101 210729 mac 210729 bytes_out 0 210729 bytes_in 0 210729 station_ip 5.120.14.77 210729 port 16 210729 unique_id port 210729 remote_ip 10.8.0.134 210735 username mehrpoyan101 210735 mac 210735 bytes_out 307181 210735 bytes_in 1519032 210735 station_ip 5.120.14.77 210735 port 16 210735 unique_id port 210735 remote_ip 10.8.0.134 210738 username aminvpnipad 210738 mac 210738 bytes_out 0 210738 bytes_in 0 210738 station_ip 5.119.61.34 210738 port 42 210738 unique_id port 210738 remote_ip 10.8.0.202 210739 username motamedi9772 210739 mac 210739 bytes_out 0 210739 bytes_in 0 210739 station_ip 83.123.53.140 210739 port 30 210739 unique_id port 210742 username arash 210742 mac 210742 bytes_out 0 210742 bytes_in 0 210742 station_ip 37.27.30.244 210742 port 47 210742 unique_id port 210742 remote_ip 10.8.0.206 210745 username jafari 210745 kill_reason Another user logged on this global unique id 210745 mac 210745 bytes_out 0 210745 bytes_in 0 210745 station_ip 5.62.199.105 210745 port 41 210701 bytes_out 0 210701 bytes_in 0 210701 station_ip 5.119.186.148 210701 port 47 210701 unique_id port 210701 remote_ip 10.8.0.10 210704 username aminvpnipad 210704 mac 210704 bytes_out 0 210704 bytes_in 0 210704 station_ip 5.119.61.34 210704 port 19 210704 unique_id port 210704 remote_ip 10.8.0.202 210706 username barzegar8595 210706 mac 210706 bytes_out 0 210706 bytes_in 0 210706 station_ip 46.225.208.234 210706 port 50 210706 unique_id port 210706 remote_ip 10.8.0.170 210710 username aminvpn 210710 mac 210710 bytes_out 0 210710 bytes_in 0 210710 station_ip 5.120.114.235 210710 port 19 210710 unique_id port 210710 remote_ip 10.8.0.58 210712 username milan 210712 kill_reason Another user logged on this global unique id 210712 mac 210712 bytes_out 0 210712 bytes_in 0 210712 station_ip 5.119.220.159 210712 port 33 210712 unique_id port 210714 username yaghobi 210714 kill_reason Another user logged on this global unique id 210714 mac 210714 bytes_out 0 210714 bytes_in 0 210714 station_ip 37.129.43.59 210714 port 42 210714 unique_id port 210714 remote_ip 10.8.0.106 210719 username godarzi 210719 mac 210719 bytes_out 0 210719 bytes_in 0 210719 station_ip 5.119.207.89 210719 port 16 210719 unique_id port 210719 remote_ip 10.8.0.74 210723 username jafari 210723 kill_reason Another user logged on this global unique id 210723 mac 210723 bytes_out 0 210723 bytes_in 0 210723 station_ip 5.62.199.105 210723 port 41 210723 unique_id port 210726 username milan 210726 kill_reason Another user logged on this global unique id 210726 mac 210726 bytes_out 0 210726 bytes_in 0 210726 station_ip 5.119.220.159 210726 port 33 210726 unique_id port 210731 username mehrpoyan101 210731 mac 210731 bytes_out 0 210731 bytes_in 0 210731 station_ip 5.120.14.77 210731 port 47 210731 unique_id port 210731 remote_ip 10.8.0.134 210733 username jafari 210733 kill_reason Another user logged on this global unique id 210733 mac 210733 bytes_out 0 210733 bytes_in 0 210733 station_ip 5.62.199.105 210733 port 41 210733 unique_id port 210741 username mehrpoyan101 210741 mac 210741 bytes_out 0 210741 bytes_in 0 210741 station_ip 5.120.191.82 210741 port 16 210741 unique_id port 210741 remote_ip 10.8.0.134 210743 username mehrpoyan101 210743 mac 210743 bytes_out 0 210743 bytes_in 0 210743 station_ip 5.120.191.82 210743 port 51 210743 unique_id port 210743 remote_ip 10.8.0.134 210744 username mehrpoyan101 210744 mac 210744 bytes_out 0 210744 bytes_in 0 210744 station_ip 5.120.191.82 210744 port 47 210744 unique_id port 210744 remote_ip 10.8.0.134 210747 username esmaeilkazemi 210747 mac 210747 bytes_out 0 210747 bytes_in 0 210747 station_ip 37.129.68.205 210747 port 51 210747 unique_id port 210747 remote_ip 10.8.0.66 210751 username abdolahi0311 210751 kill_reason Another user logged on this global unique id 210751 mac 210751 bytes_out 0 210751 bytes_in 0 210751 station_ip 5.119.220.194 210751 port 16 210751 unique_id port 210751 remote_ip 10.8.0.186 210755 username aminvpn2 210755 mac 210755 bytes_out 0 210755 bytes_in 0 210755 station_ip 5.119.61.34 210755 port 50 210755 unique_id port 210755 remote_ip 10.8.0.130 210759 username motamedi9772 210759 mac 210759 bytes_out 357098 210759 bytes_in 2441778 210759 station_ip 83.123.84.124 210759 port 32 210759 unique_id port 210759 remote_ip 10.8.1.182 210764 username motamedi9772 210764 mac 210764 bytes_out 0 210764 bytes_in 0 210764 station_ip 83.123.84.124 210764 port 29 210764 unique_id port 210764 remote_ip 10.8.1.182 210718 mac 210718 bytes_out 0 210718 bytes_in 0 210718 station_ip 83.123.53.140 210718 port 30 210718 unique_id port 210718 remote_ip 10.8.1.182 210720 username pourshad 210720 mac 210720 bytes_out 223774 210720 bytes_in 260148 210720 station_ip 5.120.225.240 210720 port 47 210720 unique_id port 210720 remote_ip 10.8.0.122 210722 username yaghobi 210722 kill_reason Another user logged on this global unique id 210722 mac 210722 bytes_out 0 210722 bytes_in 0 210722 station_ip 37.129.43.59 210722 port 42 210722 unique_id port 210727 username mehrpoyan101 210727 mac 210727 bytes_out 0 210727 bytes_in 0 210727 station_ip 5.120.14.77 210727 port 31 210727 unique_id port 210727 remote_ip 10.8.0.134 210728 username rajaei 210728 kill_reason Another user logged on this global unique id 210728 mac 210728 bytes_out 0 210728 bytes_in 0 210728 station_ip 89.34.32.194 210728 port 51 210728 unique_id port 210728 remote_ip 10.8.0.90 210730 username aminvpnipad 210730 kill_reason Maximum check online fails reached 210730 mac 210730 bytes_out 0 210730 bytes_in 0 210730 station_ip 5.119.61.34 210730 port 31 210730 unique_id port 210732 username rajaei 210732 mac 210732 bytes_out 0 210732 bytes_in 0 210732 station_ip 89.34.32.194 210732 port 51 210732 unique_id port 210734 username yaghobi 210734 mac 210734 bytes_out 0 210734 bytes_in 0 210734 station_ip 37.129.43.59 210734 port 42 210734 unique_id port 210736 username pourshad 210736 mac 210736 bytes_out 50274 210736 bytes_in 98187 210736 station_ip 5.120.225.240 210736 port 32 210736 unique_id port 210736 remote_ip 10.8.1.10 210737 username milan 210737 kill_reason Another user logged on this global unique id 210737 mac 210737 bytes_out 0 210737 bytes_in 0 210737 station_ip 5.119.220.159 210737 port 33 210737 unique_id port 210740 username pourshad 210740 mac 210740 bytes_out 27235 210740 bytes_in 43491 210740 station_ip 5.120.225.240 210740 port 32 210740 unique_id port 210740 remote_ip 10.8.1.10 210749 username sabaghnezhad 210749 mac 210749 bytes_out 63488 210749 bytes_in 53751 210749 station_ip 83.123.213.124 210749 port 42 210749 unique_id port 210749 remote_ip 10.8.0.94 210750 username aminvpnipad 210750 mac 210750 bytes_out 0 210750 bytes_in 0 210750 station_ip 5.119.61.34 210750 port 42 210750 unique_id port 210750 remote_ip 10.8.0.202 210754 username godarzi 210754 mac 210754 bytes_out 0 210754 bytes_in 0 210754 station_ip 5.119.207.89 210754 port 51 210754 unique_id port 210754 remote_ip 10.8.0.74 210756 username aminvpnipad 210756 mac 210756 bytes_out 0 210756 bytes_in 0 210756 station_ip 5.119.61.34 210756 port 51 210756 unique_id port 210756 remote_ip 10.8.0.202 210757 username mehrpoyan101 210757 mac 210757 bytes_out 0 210757 bytes_in 0 210757 station_ip 5.119.140.81 210757 port 53 210757 unique_id port 210757 remote_ip 10.8.0.134 210763 username malekpoir 210763 kill_reason Another user logged on this global unique id 210763 mac 210763 bytes_out 0 210763 bytes_in 0 210763 station_ip 5.119.193.66 210763 port 42 210763 unique_id port 210763 remote_ip 10.8.0.178 210765 username motamedi9772 210765 mac 210765 bytes_out 0 210765 bytes_in 0 210765 station_ip 83.123.84.124 210765 port 54 210765 unique_id port 210765 remote_ip 10.8.0.86 210767 username motamedi9772 210767 mac 210767 bytes_out 0 210767 bytes_in 0 210767 station_ip 83.123.84.124 210767 port 54 210767 unique_id port 210767 remote_ip 10.8.0.86 210768 username yaghobi 210768 kill_reason Another user logged on this global unique id 210745 unique_id port 210746 username yaghobi 210746 mac 210746 bytes_out 0 210746 bytes_in 0 210746 station_ip 83.122.210.181 210746 port 33 210746 unique_id port 210746 remote_ip 10.8.1.106 210748 username esmaeilkazemi 210748 mac 210748 bytes_out 0 210748 bytes_in 0 210748 station_ip 37.129.68.205 210748 port 52 210748 unique_id port 210748 remote_ip 10.8.0.66 210752 username naeimeh 210752 mac 210752 bytes_out 0 210752 bytes_in 0 210752 station_ip 83.123.45.220 210752 port 47 210752 unique_id port 210752 remote_ip 10.8.0.166 210753 username jafari 210753 kill_reason Another user logged on this global unique id 210753 mac 210753 bytes_out 0 210753 bytes_in 0 210753 station_ip 5.62.199.105 210753 port 41 210753 unique_id port 210758 username alipour1506 210758 mac 210758 bytes_out 698420 210758 bytes_in 4393152 210758 station_ip 37.129.119.113 210758 port 29 210758 unique_id port 210758 remote_ip 10.8.1.158 210760 username jafari 210760 kill_reason Another user logged on this global unique id 210760 mac 210760 bytes_out 0 210760 bytes_in 0 210760 station_ip 5.62.199.105 210760 port 41 210760 unique_id port 210761 username motamedi9772 210761 mac 210761 bytes_out 0 210761 bytes_in 0 210761 station_ip 83.123.84.124 210761 port 54 210761 unique_id port 210761 remote_ip 10.8.0.86 210762 username motamedi9772 210762 mac 210762 bytes_out 0 210762 bytes_in 0 210762 station_ip 83.123.84.124 210762 port 29 210762 unique_id port 210762 remote_ip 10.8.1.182 210774 username pourshad 210774 kill_reason Another user logged on this global unique id 210774 mac 210774 bytes_out 0 210774 bytes_in 0 210774 station_ip 5.120.225.240 210774 port 47 210774 unique_id port 210774 remote_ip 10.8.0.122 210775 username motamedi9772 210775 mac 210775 bytes_out 0 210775 bytes_in 0 210775 station_ip 83.123.84.124 210775 port 29 210775 unique_id port 210775 remote_ip 10.8.1.182 210776 username mehrpoyan101 210776 mac 210776 bytes_out 0 210776 bytes_in 0 210776 station_ip 5.119.242.60 210776 port 54 210776 unique_id port 210776 remote_ip 10.8.0.134 210779 username motamedi9772 210779 mac 210779 bytes_out 0 210779 bytes_in 0 210779 station_ip 83.123.84.124 210779 port 54 210779 unique_id port 210779 remote_ip 10.8.0.86 210792 username godarzi 210792 mac 210792 bytes_out 119785 210792 bytes_in 1303589 210792 station_ip 5.120.40.216 210792 port 57 210792 unique_id port 210792 remote_ip 10.8.0.74 210795 username motamedi9772 210795 mac 210795 bytes_out 0 210795 bytes_in 0 210795 station_ip 83.123.84.124 210795 port 53 210795 unique_id port 210795 remote_ip 10.8.0.86 210796 username aminvpnipad 210796 mac 210796 bytes_out 0 210796 bytes_in 0 210796 station_ip 5.119.61.34 210796 port 29 210796 unique_id port 210796 remote_ip 10.8.1.194 210798 username motamedi9772 210798 mac 210798 bytes_out 0 210798 bytes_in 0 210798 station_ip 83.123.84.124 210798 port 53 210798 unique_id port 210798 remote_ip 10.8.0.86 210799 username motamedi9772 210799 mac 210799 bytes_out 0 210799 bytes_in 0 210799 station_ip 83.123.84.124 210799 port 53 210799 unique_id port 210799 remote_ip 10.8.0.86 210801 username motamedi9772 210801 mac 210801 bytes_out 0 210801 bytes_in 0 210801 station_ip 83.123.84.124 210801 port 53 210801 unique_id port 210801 remote_ip 10.8.0.86 210802 username mehrpoyan101 210802 mac 210802 bytes_out 0 210802 bytes_in 0 210802 station_ip 5.119.242.60 210802 port 52 210802 unique_id port 210802 remote_ip 10.8.0.134 210766 username motamedi9772 210766 mac 210766 bytes_out 0 210766 bytes_in 0 210766 station_ip 83.123.84.124 210766 port 54 210766 unique_id port 210766 remote_ip 10.8.0.86 210770 username motamedi9772 210770 mac 210770 bytes_out 0 210770 bytes_in 0 210770 station_ip 83.123.84.124 210770 port 29 210770 unique_id port 210770 remote_ip 10.8.1.182 210771 username dortaj3792 210771 mac 210771 bytes_out 0 210771 bytes_in 0 210771 station_ip 5.119.186.148 210771 port 52 210771 unique_id port 210771 remote_ip 10.8.0.10 210783 username aminvpnipad 210783 kill_reason Maximum check online fails reached 210783 mac 210783 bytes_out 0 210783 bytes_in 0 210783 station_ip 5.119.61.34 210783 port 56 210783 unique_id port 210784 username motamedi9772 210784 mac 210784 bytes_out 0 210784 bytes_in 0 210784 station_ip 83.123.84.124 210784 port 54 210784 unique_id port 210784 remote_ip 10.8.0.86 210786 username jafari 210786 kill_reason Another user logged on this global unique id 210786 mac 210786 bytes_out 0 210786 bytes_in 0 210786 station_ip 5.62.199.105 210786 port 41 210786 unique_id port 210789 username motamedi9772 210789 mac 210789 bytes_out 0 210789 bytes_in 0 210789 station_ip 83.123.84.124 210789 port 54 210789 unique_id port 210789 remote_ip 10.8.0.86 210794 username motamedi9772 210794 mac 210794 bytes_out 0 210794 bytes_in 0 210794 station_ip 83.123.84.124 210794 port 53 210794 unique_id port 210794 remote_ip 10.8.0.86 210800 username hosseine 210800 mac 210800 bytes_out 6763088 210800 bytes_in 45824451 210800 station_ip 37.129.232.232 210800 port 25 210800 unique_id port 210800 remote_ip 10.8.0.126 210806 username motamedi9772 210806 mac 210806 bytes_out 0 210806 bytes_in 0 210806 station_ip 83.123.84.124 210806 port 52 210806 unique_id port 210806 remote_ip 10.8.0.86 210807 username motamedi9772 210807 mac 210807 bytes_out 0 210807 bytes_in 0 210807 station_ip 83.123.84.124 210807 port 52 210807 unique_id port 210807 remote_ip 10.8.0.86 210808 username mehrpoyan101 210808 mac 210808 bytes_out 0 210808 bytes_in 0 210808 station_ip 5.119.86.46 210808 port 25 210808 unique_id port 210808 remote_ip 10.8.0.134 210810 username mehrpoyan101 210810 mac 210810 bytes_out 0 210810 bytes_in 0 210810 station_ip 5.119.86.46 210810 port 29 210810 unique_id port 210810 remote_ip 10.8.1.18 210811 username motamedi9772 210811 mac 210811 bytes_out 0 210811 bytes_in 0 210811 station_ip 83.123.84.124 210811 port 25 210811 unique_id port 210811 remote_ip 10.8.0.86 210813 username motamedi9772 210813 mac 210813 bytes_out 0 210813 bytes_in 0 210813 station_ip 83.123.84.124 210813 port 25 210813 unique_id port 210813 remote_ip 10.8.0.86 210822 username motamedi9772 210822 mac 210822 bytes_out 0 210822 bytes_in 0 210822 station_ip 83.123.84.124 210822 port 52 210822 unique_id port 210822 remote_ip 10.8.0.86 210826 username pourshad 210826 kill_reason Another user logged on this global unique id 210826 mac 210826 bytes_out 0 210826 bytes_in 0 210826 station_ip 5.120.225.240 210826 port 47 210826 unique_id port 210827 username mehrpoyan101 210827 mac 210827 bytes_out 82816 210827 bytes_in 163865 210827 station_ip 5.119.86.46 210827 port 25 210827 unique_id port 210827 remote_ip 10.8.0.134 210831 username motamedi9772 210831 mac 210831 bytes_out 0 210831 bytes_in 0 210831 station_ip 83.123.84.124 210831 port 25 210831 unique_id port 210831 remote_ip 10.8.0.86 210832 username yaghobi 210832 mac 210832 bytes_out 0 210768 mac 210768 bytes_out 0 210768 bytes_in 0 210768 station_ip 83.122.210.181 210768 port 30 210768 unique_id port 210768 remote_ip 10.8.1.106 210769 username mehrpoyan101 210769 mac 210769 bytes_out 123873 210769 bytes_in 491327 210769 station_ip 5.119.140.81 210769 port 51 210769 unique_id port 210769 remote_ip 10.8.0.134 210772 username aminvpnipad 210772 mac 210772 bytes_out 0 210772 bytes_in 0 210772 station_ip 5.119.61.34 210772 port 55 210772 unique_id port 210772 remote_ip 10.8.0.202 210773 username aminvpnipad 210773 mac 210773 bytes_out 0 210773 bytes_in 0 210773 station_ip 5.119.61.34 210773 port 52 210773 unique_id port 210773 remote_ip 10.8.0.202 210777 username motamedi9772 210777 mac 210777 bytes_out 0 210777 bytes_in 0 210777 station_ip 83.123.84.124 210777 port 29 210777 unique_id port 210777 remote_ip 10.8.1.182 210778 username motamedi9772 210778 mac 210778 bytes_out 0 210778 bytes_in 0 210778 station_ip 83.123.84.124 210778 port 29 210778 unique_id port 210778 remote_ip 10.8.1.182 210780 username motamedi9772 210780 mac 210780 bytes_out 0 210780 bytes_in 0 210780 station_ip 83.123.84.124 210780 port 54 210780 unique_id port 210780 remote_ip 10.8.0.86 210781 username motamedi9772 210781 mac 210781 bytes_out 0 210781 bytes_in 0 210781 station_ip 83.123.84.124 210781 port 54 210781 unique_id port 210781 remote_ip 10.8.0.86 210782 username motamedi9772 210782 mac 210782 bytes_out 0 210782 bytes_in 0 210782 station_ip 83.123.84.124 210782 port 54 210782 unique_id port 210782 remote_ip 10.8.0.86 210785 username motamedi9772 210785 mac 210785 bytes_out 0 210785 bytes_in 0 210785 station_ip 83.123.84.124 210785 port 54 210785 unique_id port 210785 remote_ip 10.8.0.86 210787 username motamedi9772 210787 mac 210787 bytes_out 0 210787 bytes_in 0 210787 station_ip 83.123.84.124 210787 port 54 210787 unique_id port 210787 remote_ip 10.8.0.86 210788 username farhad3 210788 mac 210788 bytes_out 0 210788 bytes_in 0 210788 station_ip 5.119.153.158 210788 port 53 210788 unique_id port 210788 remote_ip 10.8.0.98 210790 username motamedi9772 210790 mac 210790 bytes_out 0 210790 bytes_in 0 210790 station_ip 83.123.84.124 210790 port 53 210790 unique_id port 210790 remote_ip 10.8.0.86 210791 username motamedi9772 210791 mac 210791 bytes_out 0 210791 bytes_in 0 210791 station_ip 83.123.84.124 210791 port 53 210791 unique_id port 210791 remote_ip 10.8.0.86 210793 username soleymani5056 210793 mac 210793 bytes_out 66007 210793 bytes_in 490503 210793 station_ip 5.119.98.1 210793 port 58 210793 unique_id port 210793 remote_ip 10.8.0.246 210797 username motamedi9772 210797 mac 210797 bytes_out 0 210797 bytes_in 0 210797 station_ip 83.123.84.124 210797 port 53 210797 unique_id port 210797 remote_ip 10.8.0.86 210803 username motamedi9772 210803 mac 210803 bytes_out 0 210803 bytes_in 0 210803 station_ip 83.123.84.124 210803 port 25 210803 unique_id port 210803 remote_ip 10.8.0.86 210804 username motamedi9772 210804 mac 210804 bytes_out 0 210804 bytes_in 0 210804 station_ip 83.123.84.124 210804 port 52 210804 unique_id port 210804 remote_ip 10.8.0.86 210809 username motamedi9772 210809 mac 210809 bytes_out 0 210809 bytes_in 0 210809 station_ip 83.123.84.124 210809 port 52 210809 unique_id port 210809 remote_ip 10.8.0.86 210818 username milan 210818 kill_reason Another user logged on this global unique id 210818 mac 210818 bytes_out 0 210818 bytes_in 0 210805 username malekpoir 210805 kill_reason Another user logged on this global unique id 210805 mac 210805 bytes_out 0 210805 bytes_in 0 210805 station_ip 5.119.193.66 210805 port 42 210805 unique_id port 210812 username motamedi9772 210812 mac 210812 bytes_out 0 210812 bytes_in 0 210812 station_ip 83.123.84.124 210812 port 25 210812 unique_id port 210812 remote_ip 10.8.0.86 210814 username motamedi9772 210814 mac 210814 bytes_out 0 210814 bytes_in 0 210814 station_ip 83.123.84.124 210814 port 52 210814 unique_id port 210814 remote_ip 10.8.0.86 210815 username motamedi9772 210815 mac 210815 bytes_out 0 210815 bytes_in 0 210815 station_ip 83.123.84.124 210815 port 52 210815 unique_id port 210815 remote_ip 10.8.0.86 210816 username motamedi9772 210816 mac 210816 bytes_out 0 210816 bytes_in 0 210816 station_ip 83.123.84.124 210816 port 52 210816 unique_id port 210816 remote_ip 10.8.0.86 210817 username motamedi9772 210817 mac 210817 bytes_out 0 210817 bytes_in 0 210817 station_ip 83.123.84.124 210817 port 52 210817 unique_id port 210817 remote_ip 10.8.0.86 210819 username yarmohamadi7916 210819 kill_reason Another user logged on this global unique id 210819 mac 210819 bytes_out 0 210819 bytes_in 0 210819 station_ip 5.119.48.54 210819 port 46 210819 unique_id port 210819 remote_ip 10.8.0.214 210820 username kalantary6037 210820 mac 210820 bytes_out 47818 210820 bytes_in 78961 210820 station_ip 83.122.40.254 210820 port 53 210820 unique_id port 210820 remote_ip 10.8.0.18 210825 username motamedi9772 210825 mac 210825 bytes_out 0 210825 bytes_in 0 210825 station_ip 83.123.84.124 210825 port 52 210825 unique_id port 210825 remote_ip 10.8.0.86 210829 username godarzi 210829 mac 210829 bytes_out 0 210829 bytes_in 0 210829 station_ip 5.119.181.192 210829 port 32 210829 unique_id port 210829 remote_ip 10.8.1.66 210833 username motamedi9772 210833 mac 210833 bytes_out 0 210833 bytes_in 0 210833 station_ip 83.123.84.124 210833 port 25 210833 unique_id port 210833 remote_ip 10.8.0.86 210834 username motamedi9772 210834 mac 210834 bytes_out 0 210834 bytes_in 0 210834 station_ip 83.123.84.124 210834 port 25 210834 unique_id port 210834 remote_ip 10.8.0.86 210837 username motamedi9772 210837 mac 210837 bytes_out 0 210837 bytes_in 0 210837 station_ip 83.123.84.124 210837 port 25 210837 unique_id port 210837 remote_ip 10.8.0.86 210838 username motamedi9772 210838 mac 210838 bytes_out 0 210838 bytes_in 0 210838 station_ip 83.123.84.124 210838 port 25 210838 unique_id port 210838 remote_ip 10.8.0.86 210841 username yarmohamadi7916 210841 mac 210841 bytes_out 0 210841 bytes_in 0 210841 station_ip 5.119.48.54 210841 port 46 210841 unique_id port 210844 username motamedi9772 210844 mac 210844 bytes_out 0 210844 bytes_in 0 210844 station_ip 83.123.84.124 210844 port 25 210844 unique_id port 210844 remote_ip 10.8.0.86 210845 username motamedi9772 210845 mac 210845 bytes_out 0 210845 bytes_in 0 210845 station_ip 83.123.84.124 210845 port 25 210845 unique_id port 210845 remote_ip 10.8.0.86 210846 username aminvpnipad 210846 mac 210846 bytes_out 0 210846 bytes_in 0 210846 station_ip 5.119.61.34 210846 port 25 210846 unique_id port 210846 remote_ip 10.8.0.202 210848 username pourshad 210848 mac 210848 bytes_out 0 210848 bytes_in 0 210848 station_ip 5.120.225.240 210848 port 47 210848 unique_id port 210854 username motamedi9772 210854 mac 210854 bytes_out 0 210854 bytes_in 0 210818 station_ip 5.119.220.159 210818 port 33 210818 unique_id port 210821 username aminvpnipad 210821 mac 210821 bytes_out 0 210821 bytes_in 0 210821 station_ip 5.119.61.34 210821 port 33 210821 unique_id port 210821 remote_ip 10.8.1.194 210823 username jafari 210823 kill_reason Another user logged on this global unique id 210823 mac 210823 bytes_out 0 210823 bytes_in 0 210823 station_ip 5.62.199.105 210823 port 41 210823 unique_id port 210824 username motamedi9772 210824 mac 210824 bytes_out 0 210824 bytes_in 0 210824 station_ip 83.123.84.124 210824 port 52 210824 unique_id port 210824 remote_ip 10.8.0.86 210828 username motamedi9772 210828 mac 210828 bytes_out 0 210828 bytes_in 0 210828 station_ip 83.123.84.124 210828 port 52 210828 unique_id port 210828 remote_ip 10.8.0.86 210830 username motamedi9772 210830 mac 210830 bytes_out 0 210830 bytes_in 0 210830 station_ip 83.123.84.124 210830 port 25 210830 unique_id port 210830 remote_ip 10.8.0.86 210840 username aminvpn 210840 kill_reason Another user logged on this global unique id 210840 mac 210840 bytes_out 0 210840 bytes_in 0 210840 station_ip 5.120.114.235 210840 port 19 210840 unique_id port 210840 remote_ip 10.8.0.58 210843 username motamedi9772 210843 mac 210843 bytes_out 0 210843 bytes_in 0 210843 station_ip 83.123.84.124 210843 port 25 210843 unique_id port 210843 remote_ip 10.8.0.86 210847 username motamedi9772 210847 mac 210847 bytes_out 0 210847 bytes_in 0 210847 station_ip 83.123.84.124 210847 port 46 210847 unique_id port 210847 remote_ip 10.8.0.86 210849 username mehrpoyan101 210849 mac 210849 bytes_out 217263 210849 bytes_in 1160387 210849 station_ip 5.119.219.203 210849 port 52 210849 unique_id port 210849 remote_ip 10.8.0.134 210853 username motamedi9772 210853 mac 210853 bytes_out 0 210853 bytes_in 0 210853 station_ip 83.123.84.124 210853 port 25 210853 unique_id port 210853 remote_ip 10.8.0.86 210861 username motamedi9772 210861 mac 210861 bytes_out 0 210861 bytes_in 0 210861 station_ip 83.123.84.124 210861 port 25 210861 unique_id port 210861 remote_ip 10.8.0.86 210868 username mehrpoyan101 210868 mac 210868 bytes_out 0 210868 bytes_in 0 210868 station_ip 5.119.100.143 210868 port 33 210868 unique_id port 210868 remote_ip 10.8.1.18 210869 username motamedi9772 210869 mac 210869 bytes_out 0 210869 bytes_in 0 210869 station_ip 83.123.84.124 210869 port 25 210869 unique_id port 210869 remote_ip 10.8.0.86 210870 username motamedi9772 210870 mac 210870 bytes_out 0 210870 bytes_in 0 210870 station_ip 83.123.84.124 210870 port 47 210870 unique_id port 210870 remote_ip 10.8.0.86 210876 username aminvpnipad 210876 mac 210876 bytes_out 0 210876 bytes_in 0 210876 station_ip 5.119.61.34 210876 port 52 210876 unique_id port 210876 remote_ip 10.8.0.202 210880 username motamedi9772 210880 mac 210880 bytes_out 0 210880 bytes_in 0 210880 station_ip 83.123.84.124 210880 port 25 210880 unique_id port 210880 remote_ip 10.8.0.86 210884 username motamedi9772 210884 mac 210884 bytes_out 0 210884 bytes_in 0 210884 station_ip 83.123.84.124 210884 port 25 210884 unique_id port 210884 remote_ip 10.8.0.86 210886 username motamedi9772 210886 mac 210886 bytes_out 0 210886 bytes_in 0 210886 station_ip 83.123.84.124 210886 port 25 210886 unique_id port 210886 remote_ip 10.8.0.86 210887 username motamedi9772 210887 mac 210887 bytes_out 0 210887 bytes_in 0 210887 station_ip 83.123.84.124 210887 port 25 210887 unique_id port 210832 bytes_in 0 210832 station_ip 83.122.210.181 210832 port 30 210832 unique_id port 210835 username motamedi9772 210835 mac 210835 bytes_out 0 210835 bytes_in 0 210835 station_ip 83.123.84.124 210835 port 25 210835 unique_id port 210835 remote_ip 10.8.0.86 210836 username mehrpoyan101 210836 mac 210836 bytes_out 74477 210836 bytes_in 212896 210836 station_ip 5.119.38.163 210836 port 53 210836 unique_id port 210836 remote_ip 10.8.0.134 210839 username motamedi9772 210839 mac 210839 bytes_out 0 210839 bytes_in 0 210839 station_ip 83.123.84.124 210839 port 25 210839 unique_id port 210839 remote_ip 10.8.0.86 210842 username motamedi9772 210842 mac 210842 bytes_out 0 210842 bytes_in 0 210842 station_ip 83.123.84.124 210842 port 25 210842 unique_id port 210842 remote_ip 10.8.0.86 210850 username motamedi9772 210850 mac 210850 bytes_out 0 210850 bytes_in 0 210850 station_ip 83.123.84.124 210850 port 25 210850 unique_id port 210850 remote_ip 10.8.0.86 210851 username motamedi9772 210851 mac 210851 bytes_out 0 210851 bytes_in 0 210851 station_ip 83.123.84.124 210851 port 25 210851 unique_id port 210851 remote_ip 10.8.0.86 210852 username motamedi9772 210852 mac 210852 bytes_out 0 210852 bytes_in 0 210852 station_ip 83.123.84.124 210852 port 25 210852 unique_id port 210852 remote_ip 10.8.0.86 210856 username malekpoir 210856 mac 210856 bytes_out 0 210856 bytes_in 0 210856 station_ip 5.119.193.66 210856 port 42 210856 unique_id port 210859 username mehrpoyan101 210859 mac 210859 bytes_out 0 210859 bytes_in 0 210859 station_ip 5.119.30.158 210859 port 46 210859 unique_id port 210859 remote_ip 10.8.0.134 210863 username motamedi9772 210863 mac 210863 bytes_out 0 210863 bytes_in 0 210863 station_ip 83.123.84.124 210863 port 25 210863 unique_id port 210863 remote_ip 10.8.0.86 210865 username motamedi9772 210865 mac 210865 bytes_out 7981 210865 bytes_in 14682 210865 station_ip 83.123.84.124 210865 port 25 210865 unique_id port 210865 remote_ip 10.8.0.86 210867 username motamedi9772 210867 mac 210867 bytes_out 0 210867 bytes_in 0 210867 station_ip 83.123.84.124 210867 port 25 210867 unique_id port 210867 remote_ip 10.8.0.86 210871 username aminvpn 210871 kill_reason Another user logged on this global unique id 210871 mac 210871 bytes_out 0 210871 bytes_in 0 210871 station_ip 5.120.114.235 210871 port 19 210871 unique_id port 210873 username motamedi9772 210873 mac 210873 bytes_out 0 210873 bytes_in 0 210873 station_ip 83.123.84.124 210873 port 47 210873 unique_id port 210873 remote_ip 10.8.0.86 210874 username motamedi9772 210874 mac 210874 bytes_out 0 210874 bytes_in 0 210874 station_ip 83.123.84.124 210874 port 47 210874 unique_id port 210874 remote_ip 10.8.0.86 210877 username motamedi9772 210877 mac 210877 bytes_out 0 210877 bytes_in 0 210877 station_ip 83.123.84.124 210877 port 47 210877 unique_id port 210877 remote_ip 10.8.0.86 210878 username jafari 210878 kill_reason Another user logged on this global unique id 210878 mac 210878 bytes_out 0 210878 bytes_in 0 210878 station_ip 5.62.199.105 210878 port 41 210878 unique_id port 210879 username motamedi9772 210879 mac 210879 bytes_out 0 210879 bytes_in 0 210879 station_ip 83.123.84.124 210879 port 25 210879 unique_id port 210879 remote_ip 10.8.0.86 210881 username mehrpoyan101 210881 mac 210881 bytes_out 120443 210881 bytes_in 373152 210881 station_ip 5.119.100.143 210881 port 53 210881 unique_id port 210881 remote_ip 10.8.0.134 210854 station_ip 83.123.84.124 210854 port 25 210854 unique_id port 210854 remote_ip 10.8.0.86 210855 username motamedi9772 210855 mac 210855 bytes_out 0 210855 bytes_in 0 210855 station_ip 83.123.84.124 210855 port 25 210855 unique_id port 210855 remote_ip 10.8.0.86 210857 username motamedi9772 210857 mac 210857 bytes_out 0 210857 bytes_in 0 210857 station_ip 83.123.84.124 210857 port 25 210857 unique_id port 210857 remote_ip 10.8.0.86 210858 username motamedi9772 210858 mac 210858 bytes_out 0 210858 bytes_in 0 210858 station_ip 83.123.84.124 210858 port 25 210858 unique_id port 210858 remote_ip 10.8.0.86 210860 username motamedi9772 210860 mac 210860 bytes_out 0 210860 bytes_in 0 210860 station_ip 83.123.84.124 210860 port 25 210860 unique_id port 210860 remote_ip 10.8.0.86 210862 username jafari 210862 kill_reason Another user logged on this global unique id 210862 mac 210862 bytes_out 0 210862 bytes_in 0 210862 station_ip 5.62.199.105 210862 port 41 210862 unique_id port 210864 username mehrpoyan101 210864 mac 210864 bytes_out 0 210864 bytes_in 0 210864 station_ip 5.119.100.143 210864 port 33 210864 unique_id port 210864 remote_ip 10.8.1.18 210866 username motamedi9772 210866 mac 210866 bytes_out 0 210866 bytes_in 0 210866 station_ip 83.123.84.124 210866 port 25 210866 unique_id port 210866 remote_ip 10.8.0.86 210872 username motamedi9772 210872 mac 210872 bytes_out 0 210872 bytes_in 0 210872 station_ip 83.123.84.124 210872 port 47 210872 unique_id port 210872 remote_ip 10.8.0.86 210875 username mehrpoyan101 210875 mac 210875 bytes_out 49430 210875 bytes_in 160507 210875 station_ip 5.119.100.143 210875 port 25 210875 unique_id port 210875 remote_ip 10.8.0.134 210882 username motamedi9772 210882 mac 210882 bytes_out 0 210882 bytes_in 0 210882 station_ip 83.123.84.124 210882 port 25 210882 unique_id port 210882 remote_ip 10.8.0.86 210888 username motamedi9772 210888 mac 210888 bytes_out 0 210888 bytes_in 0 210888 station_ip 83.123.84.124 210888 port 25 210888 unique_id port 210888 remote_ip 10.8.0.86 210891 username motamedi9772 210891 mac 210891 bytes_out 0 210891 bytes_in 0 210891 station_ip 83.123.84.124 210891 port 25 210891 unique_id port 210891 remote_ip 10.8.0.86 210892 username motamedi9772 210892 mac 210892 bytes_out 0 210892 bytes_in 0 210892 station_ip 83.123.84.124 210892 port 25 210892 unique_id port 210892 remote_ip 10.8.0.86 210894 username mostafa_es78 210894 mac 210894 bytes_out 0 210894 bytes_in 0 210894 station_ip 178.236.35.96 210894 port 50 210894 unique_id port 210894 remote_ip 10.8.0.42 210896 username mehrpoyan101 210896 mac 210896 bytes_out 0 210896 bytes_in 0 210896 station_ip 5.120.43.187 210896 port 47 210896 unique_id port 210896 remote_ip 10.8.0.134 210898 username motamedi9772 210898 mac 210898 bytes_out 0 210898 bytes_in 0 210898 station_ip 83.123.84.124 210898 port 25 210898 unique_id port 210898 remote_ip 10.8.0.86 210901 username aminvpnipad 210901 mac 210901 bytes_out 0 210901 bytes_in 0 210901 station_ip 5.119.61.34 210901 port 47 210901 unique_id port 210901 remote_ip 10.8.0.202 210904 username motamedi9772 210904 mac 210904 bytes_out 0 210904 bytes_in 0 210904 station_ip 83.123.84.124 210904 port 25 210904 unique_id port 210904 remote_ip 10.8.0.86 210905 username jafari 210905 kill_reason Another user logged on this global unique id 210905 mac 210905 bytes_out 0 210905 bytes_in 0 210905 station_ip 5.62.199.105 210905 port 41 210883 username aminvpn 210883 kill_reason Another user logged on this global unique id 210883 mac 210883 bytes_out 0 210883 bytes_in 0 210883 station_ip 5.120.114.235 210883 port 19 210883 unique_id port 210885 username motamedi9772 210885 mac 210885 bytes_out 0 210885 bytes_in 0 210885 station_ip 83.123.84.124 210885 port 25 210885 unique_id port 210885 remote_ip 10.8.0.86 210889 username yaghobi 210889 mac 210889 bytes_out 0 210889 bytes_in 0 210889 station_ip 83.122.210.181 210889 port 32 210889 unique_id port 210889 remote_ip 10.8.1.106 210895 username motamedi9772 210895 mac 210895 bytes_out 0 210895 bytes_in 0 210895 station_ip 83.123.84.124 210895 port 25 210895 unique_id port 210895 remote_ip 10.8.0.86 210899 username motamedi9772 210899 mac 210899 bytes_out 0 210899 bytes_in 0 210899 station_ip 83.123.84.124 210899 port 25 210899 unique_id port 210899 remote_ip 10.8.0.86 210906 username motamedi9772 210906 mac 210906 bytes_out 9410 210906 bytes_in 26324 210906 station_ip 83.123.84.124 210906 port 25 210906 unique_id port 210906 remote_ip 10.8.0.86 210911 username motamedi9772 210911 mac 210911 bytes_out 14626 210911 bytes_in 91184 210911 station_ip 83.123.84.124 210911 port 25 210911 unique_id port 210911 remote_ip 10.8.0.86 210915 username mehrpoyan101 210915 mac 210915 bytes_out 0 210915 bytes_in 0 210915 station_ip 5.120.72.2 210915 port 47 210915 unique_id port 210915 remote_ip 10.8.0.134 210917 username motamedi9772 210917 mac 210917 bytes_out 0 210917 bytes_in 0 210917 station_ip 83.123.84.124 210917 port 25 210917 unique_id port 210917 remote_ip 10.8.0.86 210921 username motamedi9772 210921 mac 210921 bytes_out 0 210921 bytes_in 0 210921 station_ip 83.123.84.124 210921 port 25 210921 unique_id port 210921 remote_ip 10.8.0.86 210923 username godarzi 210923 mac 210923 bytes_out 38606 210923 bytes_in 166200 210923 station_ip 5.120.121.238 210923 port 47 210923 unique_id port 210923 remote_ip 10.8.0.74 210927 username aminvpnipad 210927 mac 210927 bytes_out 0 210927 bytes_in 0 210927 station_ip 5.119.61.34 210927 port 50 210927 unique_id port 210927 remote_ip 10.8.0.202 210937 username jafari 210937 mac 210937 bytes_out 0 210937 bytes_in 0 210937 station_ip 5.62.199.105 210937 port 41 210937 unique_id port 210938 username khademi 210938 mac 210938 bytes_out 0 210938 bytes_in 0 210938 station_ip 37.129.42.216 210938 port 46 210938 unique_id port 210941 username mehrpoyan101 210941 mac 210941 bytes_out 205473 210941 bytes_in 1094896 210941 station_ip 5.119.103.8 210941 port 47 210941 unique_id port 210941 remote_ip 10.8.0.134 210943 username mehrpoyan101 210943 mac 210943 bytes_out 202240 210943 bytes_in 893514 210943 station_ip 5.120.129.235 210943 port 41 210943 unique_id port 210943 remote_ip 10.8.0.134 210947 username aminvpnipad 210947 mac 210947 bytes_out 0 210947 bytes_in 0 210947 station_ip 5.119.61.34 210947 port 52 210947 unique_id port 210947 remote_ip 10.8.0.202 210959 username aminvpn 210959 mac 210959 bytes_out 0 210959 bytes_in 0 210959 station_ip 5.120.114.235 210959 port 19 210959 unique_id port 210959 remote_ip 10.8.0.58 210960 username aminvpnipad 210960 mac 210960 bytes_out 0 210960 bytes_in 0 210960 station_ip 5.119.61.34 210960 port 47 210960 unique_id port 210960 remote_ip 10.8.0.202 210967 username motamedi9772 210967 mac 210967 bytes_out 0 210967 bytes_in 0 210967 station_ip 83.123.84.124 210967 port 25 210887 remote_ip 10.8.0.86 210890 username motamedi9772 210890 mac 210890 bytes_out 0 210890 bytes_in 0 210890 station_ip 83.123.84.124 210890 port 25 210890 unique_id port 210890 remote_ip 10.8.0.86 210893 username khademi 210893 kill_reason Another user logged on this global unique id 210893 mac 210893 bytes_out 0 210893 bytes_in 0 210893 station_ip 37.129.42.216 210893 port 46 210893 unique_id port 210893 remote_ip 10.8.0.26 210897 username motamedi9772 210897 mac 210897 bytes_out 0 210897 bytes_in 0 210897 station_ip 83.123.84.124 210897 port 25 210897 unique_id port 210897 remote_ip 10.8.0.86 210900 username motamedi9772 210900 mac 210900 bytes_out 0 210900 bytes_in 0 210900 station_ip 83.123.84.124 210900 port 25 210900 unique_id port 210900 remote_ip 10.8.0.86 210902 username motamedi9772 210902 mac 210902 bytes_out 0 210902 bytes_in 0 210902 station_ip 83.123.84.124 210902 port 25 210902 unique_id port 210902 remote_ip 10.8.0.86 210903 username motamedi9772 210903 mac 210903 bytes_out 0 210903 bytes_in 0 210903 station_ip 83.123.84.124 210903 port 25 210903 unique_id port 210903 remote_ip 10.8.0.86 210908 username motamedi9772 210908 mac 210908 bytes_out 0 210908 bytes_in 0 210908 station_ip 83.123.84.124 210908 port 25 210908 unique_id port 210908 remote_ip 10.8.0.86 210913 username motamedi9772 210913 mac 210913 bytes_out 0 210913 bytes_in 0 210913 station_ip 83.123.84.124 210913 port 25 210913 unique_id port 210913 remote_ip 10.8.0.86 210914 username motamedi9772 210914 mac 210914 bytes_out 0 210914 bytes_in 0 210914 station_ip 83.123.84.124 210914 port 25 210914 unique_id port 210914 remote_ip 10.8.0.86 210916 username motamedi9772 210916 mac 210916 bytes_out 5523 210916 bytes_in 11598 210916 station_ip 83.123.84.124 210916 port 25 210916 unique_id port 210916 remote_ip 10.8.0.86 210922 username motamedi9772 210922 mac 210922 bytes_out 0 210922 bytes_in 0 210922 station_ip 83.123.84.124 210922 port 25 210922 unique_id port 210922 remote_ip 10.8.0.86 210924 username motamedi9772 210924 mac 210924 bytes_out 0 210924 bytes_in 0 210924 station_ip 83.123.84.124 210924 port 25 210924 unique_id port 210924 remote_ip 10.8.0.86 210925 username motamedi9772 210925 mac 210925 bytes_out 0 210925 bytes_in 0 210925 station_ip 83.123.84.124 210925 port 25 210925 unique_id port 210925 remote_ip 10.8.0.86 210926 username motamedi9772 210926 mac 210926 bytes_out 0 210926 bytes_in 0 210926 station_ip 83.123.84.124 210926 port 25 210926 unique_id port 210926 remote_ip 10.8.0.86 210928 username pourshad 210928 mac 210928 bytes_out 0 210928 bytes_in 0 210928 station_ip 5.120.225.240 210928 port 30 210928 unique_id port 210928 remote_ip 10.8.1.10 210930 username motamedi9772 210930 mac 210930 bytes_out 0 210930 bytes_in 0 210930 station_ip 83.123.84.124 210930 port 25 210930 unique_id port 210930 remote_ip 10.8.0.86 210931 username dortaj3792 210931 mac 210931 bytes_out 0 210931 bytes_in 0 210931 station_ip 5.119.186.148 210931 port 55 210931 unique_id port 210931 remote_ip 10.8.0.10 210932 username jafari 210932 kill_reason Another user logged on this global unique id 210932 mac 210932 bytes_out 0 210932 bytes_in 0 210932 station_ip 5.62.199.105 210932 port 41 210932 unique_id port 210933 username mehrpoyan101 210933 mac 210933 bytes_out 0 210933 bytes_in 0 210933 station_ip 5.119.110.99 210933 port 47 210933 unique_id port 210933 remote_ip 10.8.0.134 210934 username khademi 210905 unique_id port 210907 username mehrpoyan101 210907 mac 210907 bytes_out 0 210907 bytes_in 0 210907 station_ip 5.120.72.2 210907 port 50 210907 unique_id port 210907 remote_ip 10.8.0.134 210909 username motamedi9772 210909 mac 210909 bytes_out 0 210909 bytes_in 0 210909 station_ip 83.123.84.124 210909 port 25 210909 unique_id port 210909 remote_ip 10.8.0.86 210910 username aminvpn 210910 kill_reason Another user logged on this global unique id 210910 mac 210910 bytes_out 0 210910 bytes_in 0 210910 station_ip 5.120.114.235 210910 port 19 210910 unique_id port 210912 username pourshad 210912 mac 210912 bytes_out 0 210912 bytes_in 0 210912 station_ip 5.120.225.240 210912 port 30 210912 unique_id port 210912 remote_ip 10.8.1.10 210918 username mehrpoyan101 210918 mac 210918 bytes_out 0 210918 bytes_in 0 210918 station_ip 5.119.159.40 210918 port 50 210918 unique_id port 210918 remote_ip 10.8.0.134 210919 username motamedi9772 210919 mac 210919 bytes_out 0 210919 bytes_in 0 210919 station_ip 83.123.84.124 210919 port 25 210919 unique_id port 210919 remote_ip 10.8.0.86 210920 username jafari 210920 kill_reason Another user logged on this global unique id 210920 mac 210920 bytes_out 0 210920 bytes_in 0 210920 station_ip 5.62.199.105 210920 port 41 210920 unique_id port 210929 username godarzi 210929 mac 210929 bytes_out 245000 210929 bytes_in 2513581 210929 station_ip 5.120.121.238 210929 port 32 210929 unique_id port 210929 remote_ip 10.8.1.66 210935 username aminvpn 210935 kill_reason Another user logged on this global unique id 210935 mac 210935 bytes_out 0 210935 bytes_in 0 210935 station_ip 5.120.114.235 210935 port 19 210935 unique_id port 210940 username aminvpnipad 210940 mac 210940 bytes_out 0 210940 bytes_in 0 210940 station_ip 5.119.61.34 210940 port 41 210940 unique_id port 210940 remote_ip 10.8.0.202 210942 username aminvpn 210942 kill_reason Another user logged on this global unique id 210942 mac 210942 bytes_out 0 210942 bytes_in 0 210942 station_ip 5.120.114.235 210942 port 19 210942 unique_id port 210944 username motamedi9772 210944 kill_reason Another user logged on this global unique id 210944 mac 210944 bytes_out 0 210944 bytes_in 0 210944 station_ip 83.123.84.124 210944 port 25 210944 unique_id port 210944 remote_ip 10.8.0.86 210946 username rahim 210946 mac 210946 bytes_out 237655 210946 bytes_in 420054 210946 station_ip 5.120.19.251 210946 port 47 210946 unique_id port 210946 remote_ip 10.8.0.146 210948 username mehrpoyan101 210948 mac 210948 bytes_out 397827 210948 bytes_in 3331276 210948 station_ip 5.120.63.89 210948 port 41 210948 unique_id port 210948 remote_ip 10.8.0.134 210950 username sabaghnezhad 210950 kill_reason Maximum check online fails reached 210950 mac 210950 bytes_out 276717 210950 bytes_in 222786 210950 station_ip 83.122.111.159 210950 port 51 210950 unique_id port 210950 remote_ip 10.8.0.94 210952 username mehrpoyan101 210952 mac 210952 bytes_out 410590 210952 bytes_in 3169809 210952 station_ip 5.119.168.112 210952 port 41 210952 unique_id port 210952 remote_ip 10.8.0.134 210953 username pourshad 210953 mac 210953 bytes_out 593194 210953 bytes_in 7187020 210953 station_ip 5.120.215.74 210953 port 50 210953 unique_id port 210953 remote_ip 10.8.0.122 210957 username pourshad 210957 mac 210957 bytes_out 0 210957 bytes_in 0 210957 station_ip 5.120.215.74 210957 port 30 210957 unique_id port 210957 remote_ip 10.8.1.10 210961 username mehrpoyan101 210961 mac 210961 bytes_out 0 210961 bytes_in 0 210934 kill_reason Another user logged on this global unique id 210934 mac 210934 bytes_out 0 210934 bytes_in 0 210934 station_ip 37.129.42.216 210934 port 46 210934 unique_id port 210936 username mehrpoyan101 210936 mac 210936 bytes_out 77881 210936 bytes_in 327983 210936 station_ip 5.120.28.222 210936 port 53 210936 unique_id port 210936 remote_ip 10.8.0.134 210939 username mohammadjavad 210939 kill_reason Another user logged on this global unique id 210939 mac 210939 bytes_out 0 210939 bytes_in 0 210939 station_ip 83.123.149.148 210939 port 52 210939 unique_id port 210939 remote_ip 10.8.0.138 210945 username mohammadjavad 210945 mac 210945 bytes_out 0 210945 bytes_in 0 210945 station_ip 83.123.149.148 210945 port 52 210945 unique_id port 210949 username aminvpn 210949 kill_reason Another user logged on this global unique id 210949 mac 210949 bytes_out 0 210949 bytes_in 0 210949 station_ip 5.120.114.235 210949 port 19 210949 unique_id port 210951 username motamedi9772 210951 kill_reason Maximum check online fails reached 210951 mac 210951 bytes_out 0 210951 bytes_in 0 210951 station_ip 83.123.84.124 210951 port 25 210951 unique_id port 210954 username aminvpnipad 210954 mac 210954 bytes_out 0 210954 bytes_in 0 210954 station_ip 5.119.61.34 210954 port 41 210954 unique_id port 210954 remote_ip 10.8.0.202 210955 username aminvpn 210955 kill_reason Another user logged on this global unique id 210955 mac 210955 bytes_out 0 210955 bytes_in 0 210955 station_ip 5.120.114.235 210955 port 19 210955 unique_id port 210956 username mehrpoyan101 210956 mac 210956 bytes_out 944716 210956 bytes_in 7423089 210956 station_ip 5.119.115.206 210956 port 47 210956 unique_id port 210956 remote_ip 10.8.0.134 210958 username aminvpn 210958 mac 210958 bytes_out 0 210958 bytes_in 0 210958 station_ip 5.120.114.235 210958 port 19 210958 unique_id port 210962 username mosi 210962 kill_reason Another user logged on this global unique id 210962 mac 210962 bytes_out 0 210962 bytes_in 0 210962 station_ip 151.235.124.131 210962 port 42 210962 unique_id port 210962 remote_ip 10.8.0.38 210964 username mehrpoyan101 210964 mac 210964 bytes_out 617768 210964 bytes_in 3929651 210964 station_ip 5.119.114.213 210964 port 47 210964 unique_id port 210964 remote_ip 10.8.0.134 210965 username hosseine 210965 mac 210965 bytes_out 0 210965 bytes_in 0 210965 station_ip 37.129.232.232 210965 port 29 210965 unique_id port 210965 remote_ip 10.8.1.234 210968 username aminvpnipad 210968 mac 210968 bytes_out 0 210968 bytes_in 0 210968 station_ip 5.119.61.34 210968 port 47 210968 unique_id port 210968 remote_ip 10.8.0.202 210972 username aminvpn 210972 kill_reason Another user logged on this global unique id 210972 mac 210972 bytes_out 0 210972 bytes_in 0 210972 station_ip 5.120.114.235 210972 port 19 210972 unique_id port 210972 remote_ip 10.8.0.58 210974 username motamedi9772 210974 mac 210974 bytes_out 0 210974 bytes_in 0 210974 station_ip 83.123.84.124 210974 port 25 210974 unique_id port 210974 remote_ip 10.8.0.86 210975 username mosi 210975 kill_reason Another user logged on this global unique id 210975 mac 210975 bytes_out 0 210975 bytes_in 0 210975 station_ip 151.235.124.131 210975 port 42 210975 unique_id port 210978 username aminvpnipad 210978 mac 210978 bytes_out 0 210978 bytes_in 0 210978 station_ip 5.119.61.34 210978 port 25 210978 unique_id port 210978 remote_ip 10.8.0.202 210979 username mehrpoyan101 210979 mac 210979 bytes_out 0 210979 bytes_in 0 210979 station_ip 5.119.62.119 210979 port 47 210979 unique_id port 210961 station_ip 5.119.105.233 210961 port 41 210961 unique_id port 210961 remote_ip 10.8.0.134 210963 username yaghobi 210963 mac 210963 bytes_out 0 210963 bytes_in 0 210963 station_ip 83.122.93.175 210963 port 32 210963 unique_id port 210963 remote_ip 10.8.1.106 210966 username motamedi9772 210966 mac 210966 bytes_out 0 210966 bytes_in 0 210966 station_ip 83.123.84.124 210966 port 25 210966 unique_id port 210969 username motamedi9772 210969 mac 210969 bytes_out 5348 210969 bytes_in 11524 210969 station_ip 83.123.84.124 210969 port 25 210969 unique_id port 210969 remote_ip 10.8.0.86 210973 username mehrpoyan101 210973 mac 210973 bytes_out 0 210973 bytes_in 0 210973 station_ip 5.119.236.20 210973 port 41 210973 unique_id port 210973 remote_ip 10.8.0.134 210976 username soleymani5056 210976 mac 210976 bytes_out 0 210976 bytes_in 0 210976 station_ip 5.119.86.161 210976 port 25 210976 unique_id port 210976 remote_ip 10.8.0.246 210977 username mehrpoyan101 210977 mac 210977 bytes_out 0 210977 bytes_in 0 210977 station_ip 5.119.182.67 210977 port 47 210977 unique_id port 210977 remote_ip 10.8.0.134 210981 username aminvpn 210981 kill_reason Another user logged on this global unique id 210981 mac 210981 bytes_out 0 210981 bytes_in 0 210981 station_ip 5.120.114.235 210981 port 19 210981 unique_id port 210983 username mehrpoyan101 210983 mac 210983 bytes_out 0 210983 bytes_in 0 210983 station_ip 5.120.103.216 210983 port 47 210983 unique_id port 210983 remote_ip 10.8.0.134 210988 username mehrpoyan101 210988 mac 210988 bytes_out 0 210988 bytes_in 0 210988 station_ip 5.119.215.137 210988 port 51 210988 unique_id port 210988 remote_ip 10.8.0.134 210989 username mehrpoyan101 210989 mac 210989 bytes_out 0 210989 bytes_in 0 210989 station_ip 5.119.123.182 210989 port 16 210989 unique_id port 210989 remote_ip 10.8.0.134 210992 username yaghobi 210992 mac 210992 bytes_out 835904 210992 bytes_in 10780826 210992 station_ip 83.122.59.183 210992 port 30 210992 unique_id port 210992 remote_ip 10.8.1.106 210999 username aminvpnipad 210999 mac 210999 bytes_out 0 210999 bytes_in 0 210999 station_ip 5.119.61.34 210999 port 19 210999 unique_id port 210999 remote_ip 10.8.0.202 211001 username dorani4942 211001 mac 211001 bytes_out 0 211001 bytes_in 0 211001 station_ip 37.129.163.153 211001 port 19 211001 unique_id port 211001 remote_ip 10.8.0.82 211005 username soleymani5056 211005 mac 211005 bytes_out 0 211005 bytes_in 0 211005 station_ip 5.119.239.242 211005 port 19 211005 unique_id port 211005 remote_ip 10.8.0.246 211006 username kalantary6037 211006 mac 211006 bytes_out 155087 211006 bytes_in 651946 211006 station_ip 37.129.185.30 211006 port 47 211006 unique_id port 211006 remote_ip 10.8.0.18 211012 username mosi 211012 kill_reason Another user logged on this global unique id 211012 mac 211012 bytes_out 0 211012 bytes_in 0 211012 station_ip 151.235.124.131 211012 port 42 211012 unique_id port 211013 username aminvpnipad 211013 mac 211013 bytes_out 0 211013 bytes_in 0 211013 station_ip 5.119.61.34 211013 port 51 211013 unique_id port 211013 remote_ip 10.8.0.202 211015 username dorani4942 211015 kill_reason Another user logged on this global unique id 211015 mac 211015 bytes_out 0 211015 bytes_in 0 211015 station_ip 83.123.214.0 211015 port 25 211015 unique_id port 211015 remote_ip 10.8.0.82 211016 username yaghobi 211016 mac 211016 bytes_out 113734 211016 bytes_in 304990 211016 station_ip 37.129.154.152 210967 unique_id port 210967 remote_ip 10.8.0.86 210970 username motamedi9772 210970 mac 210970 bytes_out 0 210970 bytes_in 0 210970 station_ip 83.123.84.124 210970 port 25 210970 unique_id port 210970 remote_ip 10.8.0.86 210971 username motamedi9772 210971 mac 210971 bytes_out 0 210971 bytes_in 0 210971 station_ip 83.123.84.124 210971 port 25 210971 unique_id port 210971 remote_ip 10.8.0.86 210982 username mosi 210982 kill_reason Another user logged on this global unique id 210982 mac 210982 bytes_out 0 210982 bytes_in 0 210982 station_ip 151.235.124.131 210982 port 42 210982 unique_id port 210984 username aminvpn 210984 mac 210984 bytes_out 0 210984 bytes_in 0 210984 station_ip 5.120.114.235 210984 port 19 210984 unique_id port 210985 username aminvpnipad 210985 mac 210985 bytes_out 0 210985 bytes_in 0 210985 station_ip 5.119.61.34 210985 port 47 210985 unique_id port 210985 remote_ip 10.8.0.202 210987 username abdolahi0311 210987 mac 210987 bytes_out 0 210987 bytes_in 0 210987 station_ip 5.119.220.194 210987 port 16 210987 unique_id port 210990 username hatami 210990 mac 210990 bytes_out 0 210990 bytes_in 0 210990 station_ip 151.235.125.252 210990 port 25 210990 unique_id port 210990 remote_ip 10.8.0.14 210996 username soleymani5056 210996 mac 210996 bytes_out 0 210996 bytes_in 0 210996 station_ip 5.120.117.33 210996 port 25 210996 unique_id port 210996 remote_ip 10.8.0.246 210997 username kalantary6037 210997 mac 210997 bytes_out 124517 210997 bytes_in 343741 210997 station_ip 83.122.236.98 210997 port 19 210997 unique_id port 210997 remote_ip 10.8.0.18 210998 username sabaghnezhad 210998 mac 210998 bytes_out 1248869 210998 bytes_in 12374313 210998 station_ip 83.122.111.159 210998 port 41 210998 unique_id port 210998 remote_ip 10.8.0.94 211000 username soleymani5056 211000 mac 211000 bytes_out 406018 211000 bytes_in 408599 211000 station_ip 5.120.148.18 211000 port 47 211000 unique_id port 211000 remote_ip 10.8.0.246 211002 username soleymani5056 211002 mac 211002 bytes_out 0 211002 bytes_in 0 211002 station_ip 5.119.81.33 211002 port 25 211002 unique_id port 211002 remote_ip 10.8.0.246 211003 username kalantary6037 211003 mac 211003 bytes_out 754600 211003 bytes_in 9281017 211003 station_ip 83.122.147.57 211003 port 47 211003 unique_id port 211003 remote_ip 10.8.0.18 211007 username aminvpnipad 211007 mac 211007 bytes_out 0 211007 bytes_in 0 211007 station_ip 5.119.61.34 211007 port 47 211007 unique_id port 211007 remote_ip 10.8.0.202 211008 username soleymani5056 211008 mac 211008 bytes_out 0 211008 bytes_in 0 211008 station_ip 5.120.169.140 211008 port 50 211008 unique_id port 211008 remote_ip 10.8.0.246 211009 username yaghobi 211009 mac 211009 bytes_out 0 211009 bytes_in 0 211009 station_ip 83.122.59.183 211009 port 30 211009 unique_id port 211009 remote_ip 10.8.1.106 211010 username arash 211010 mac 211010 bytes_out 1877446 211010 bytes_in 16102346 211010 station_ip 37.27.30.244 211010 port 16 211010 unique_id port 211010 remote_ip 10.8.0.206 211014 username khalili2 211014 mac 211014 bytes_out 1851953 211014 bytes_in 24383894 211014 station_ip 5.119.75.153 211014 port 50 211014 unique_id port 211014 remote_ip 10.8.0.78 211017 username aminvpnipad 211017 mac 211017 bytes_out 0 211017 bytes_in 0 211017 station_ip 5.119.61.34 211017 port 51 211017 unique_id port 211017 remote_ip 10.8.0.202 211019 username yaghobi 211019 mac 211019 bytes_out 155331 210979 remote_ip 10.8.0.134 210980 username mehrpoyan101 210980 mac 210980 bytes_out 0 210980 bytes_in 0 210980 station_ip 5.119.62.119 210980 port 25 210980 unique_id port 210980 remote_ip 10.8.0.134 210986 username aminvpn 210986 mac 210986 bytes_out 0 210986 bytes_in 0 210986 station_ip 5.120.114.235 210986 port 19 210986 unique_id port 210986 remote_ip 10.8.0.58 210991 username arash 210991 mac 210991 bytes_out 0 210991 bytes_in 0 210991 station_ip 37.27.30.244 210991 port 50 210991 unique_id port 210991 remote_ip 10.8.0.206 210993 username aminvpnipad 210993 mac 210993 bytes_out 0 210993 bytes_in 0 210993 station_ip 5.119.61.34 210993 port 25 210993 unique_id port 210993 remote_ip 10.8.0.202 210994 username soleymani5056 210994 mac 210994 bytes_out 0 210994 bytes_in 0 210994 station_ip 5.119.247.38 210994 port 19 210994 unique_id port 210994 remote_ip 10.8.0.246 210995 username kalantary6037 210995 mac 210995 bytes_out 0 210995 bytes_in 0 210995 station_ip 83.122.48.42 210995 port 19 210995 unique_id port 210995 remote_ip 10.8.0.18 211004 username sabaghnezhad 211004 mac 211004 bytes_out 0 211004 bytes_in 0 211004 station_ip 83.122.101.225 211004 port 50 211004 unique_id port 211004 remote_ip 10.8.0.94 211011 username khalili2 211011 mac 211011 bytes_out 1363905 211011 bytes_in 21250714 211011 station_ip 5.119.75.153 211011 port 47 211011 unique_id port 211011 remote_ip 10.8.0.78 211018 username aminvpnipad 211018 mac 211018 bytes_out 0 211018 bytes_in 0 211018 station_ip 5.119.61.34 211018 port 51 211018 unique_id port 211018 remote_ip 10.8.0.202 211022 username dorani4942 211022 mac 211022 bytes_out 0 211022 bytes_in 0 211022 station_ip 83.123.214.0 211022 port 50 211022 unique_id port 211022 remote_ip 10.8.0.82 211031 username yaghobi 211031 mac 211031 bytes_out 908927 211031 bytes_in 9571109 211031 station_ip 37.129.154.152 211031 port 25 211031 unique_id port 211031 remote_ip 10.8.0.106 211035 username tahmorsi 211035 mac 211035 bytes_out 458622 211035 bytes_in 1470273 211035 station_ip 86.57.115.211 211035 port 16 211035 unique_id port 211035 remote_ip 10.8.0.218 211037 username farhad3 211037 mac 211037 bytes_out 0 211037 bytes_in 0 211037 station_ip 5.120.32.161 211037 port 19 211037 unique_id port 211037 remote_ip 10.8.0.98 211042 username farhad3 211042 mac 211042 bytes_out 0 211042 bytes_in 0 211042 station_ip 5.120.32.161 211042 port 30 211042 unique_id port 211042 remote_ip 10.8.1.86 211046 username farhad3 211046 mac 211046 bytes_out 109923 211046 bytes_in 526290 211046 station_ip 5.120.32.161 211046 port 25 211046 unique_id port 211046 remote_ip 10.8.0.98 211048 username mosi 211048 kill_reason Another user logged on this global unique id 211048 mac 211048 bytes_out 0 211048 bytes_in 0 211048 station_ip 151.235.124.131 211048 port 42 211048 unique_id port 211052 username farhad3 211052 mac 211052 bytes_out 88484 211052 bytes_in 524622 211052 station_ip 5.120.32.161 211052 port 47 211052 unique_id port 211052 remote_ip 10.8.0.98 211055 username aminvpnipad 211055 mac 211055 bytes_out 0 211055 bytes_in 0 211055 station_ip 5.119.61.34 211055 port 52 211055 unique_id port 211055 remote_ip 10.8.0.202 211060 username hosseine 211060 kill_reason Another user logged on this global unique id 211060 mac 211060 bytes_out 0 211060 bytes_in 0 211060 station_ip 37.129.232.232 211060 port 29 211060 unique_id port 211063 username abdolahi0311 211089 mac 211016 port 51 211016 unique_id port 211016 remote_ip 10.8.0.106 211020 username aminvpnipad 211020 kill_reason Maximum check online fails reached 211020 mac 211020 bytes_out 0 211020 bytes_in 0 211020 station_ip 5.119.61.34 211020 port 51 211020 unique_id port 211021 username dorani4942 211021 mac 211021 bytes_out 0 211021 bytes_in 0 211021 station_ip 83.123.214.0 211021 port 25 211021 unique_id port 211023 username yaghobi 211023 mac 211023 bytes_out 0 211023 bytes_in 0 211023 station_ip 37.129.154.152 211023 port 52 211023 unique_id port 211023 remote_ip 10.8.0.106 211024 username abdolahi0311 211024 kill_reason Another user logged on this global unique id 211024 mac 211024 bytes_out 0 211024 bytes_in 0 211024 station_ip 5.119.216.203 211024 port 16 211024 unique_id port 211024 remote_ip 10.8.0.186 211027 username malekpoir 211027 kill_reason Another user logged on this global unique id 211027 mac 211027 bytes_out 0 211027 bytes_in 0 211027 station_ip 5.119.193.66 211027 port 47 211027 unique_id port 211027 remote_ip 10.8.0.178 211028 username farhad3 211028 mac 211028 bytes_out 3476708 211028 bytes_in 23085044 211028 station_ip 5.120.32.161 211028 port 19 211028 unique_id port 211028 remote_ip 10.8.0.98 211029 username abdolahi0311 211029 mac 211029 bytes_out 0 211029 bytes_in 0 211029 station_ip 5.119.216.203 211029 port 16 211029 unique_id port 211030 username aminvpnipad 211030 mac 211030 bytes_out 0 211030 bytes_in 0 211030 station_ip 5.119.61.34 211030 port 16 211030 unique_id port 211030 remote_ip 10.8.0.202 211032 username mosi 211032 kill_reason Another user logged on this global unique id 211032 mac 211032 bytes_out 0 211032 bytes_in 0 211032 station_ip 151.235.124.131 211032 port 42 211032 unique_id port 211034 username godarzi 211034 mac 211034 bytes_out 1854672 211034 bytes_in 27500413 211034 station_ip 5.202.65.237 211034 port 30 211034 unique_id port 211034 remote_ip 10.8.1.66 211040 username soleymani5056 211040 mac 211040 bytes_out 148161 211040 bytes_in 602280 211040 station_ip 5.120.13.168 211040 port 25 211040 unique_id port 211040 remote_ip 10.8.0.246 211049 username houshang 211049 mac 211049 bytes_out 0 211049 bytes_in 0 211049 station_ip 5.120.26.48 211049 port 50 211049 unique_id port 211051 username jamali 211051 kill_reason Relative expiration date has reached 211051 mac 211051 bytes_out 0 211051 bytes_in 0 211051 station_ip 5.120.53.11 211051 port 47 211051 unique_id port 211053 username farhad3 211053 mac 211053 bytes_out 0 211053 bytes_in 0 211053 station_ip 5.120.32.161 211053 port 47 211053 unique_id port 211053 remote_ip 10.8.0.98 211054 username mosi 211054 kill_reason Another user logged on this global unique id 211054 mac 211054 bytes_out 0 211054 bytes_in 0 211054 station_ip 151.235.124.131 211054 port 42 211054 unique_id port 211056 username aminvpnipad 211056 mac 211056 bytes_out 0 211056 bytes_in 0 211056 station_ip 5.119.61.34 211056 port 52 211056 unique_id port 211056 remote_ip 10.8.0.202 211057 username barzegar8595 211057 kill_reason Another user logged on this global unique id 211057 mac 211057 bytes_out 0 211057 bytes_in 0 211057 station_ip 46.225.213.40 211057 port 41 211057 unique_id port 211057 remote_ip 10.8.0.170 211058 username yaghobi 211058 mac 211058 bytes_out 28162 211058 bytes_in 41559 211058 station_ip 37.129.154.152 211058 port 52 211058 unique_id port 211058 remote_ip 10.8.0.106 211059 username farhad3 211059 mac 211059 bytes_out 1277585 211059 bytes_in 12813787 211059 station_ip 5.120.32.161 211019 bytes_in 3454496 211019 station_ip 37.129.154.152 211019 port 50 211019 unique_id port 211019 remote_ip 10.8.0.106 211025 username dorani4942 211025 mac 211025 bytes_out 0 211025 bytes_in 0 211025 station_ip 83.123.214.0 211025 port 50 211025 unique_id port 211025 remote_ip 10.8.0.82 211026 username aminvpnipad 211026 mac 211026 bytes_out 0 211026 bytes_in 0 211026 station_ip 5.119.61.34 211026 port 30 211026 unique_id port 211026 remote_ip 10.8.1.194 211033 username malekpoir 211033 mac 211033 bytes_out 0 211033 bytes_in 0 211033 station_ip 5.119.193.66 211033 port 47 211033 unique_id port 211036 username aminvpnipad 211036 mac 211036 bytes_out 1703 211036 bytes_in 5151 211036 station_ip 5.119.61.34 211036 port 52 211036 unique_id port 211036 remote_ip 10.8.0.202 211038 username hosseine 211038 kill_reason Another user logged on this global unique id 211038 mac 211038 bytes_out 0 211038 bytes_in 0 211038 station_ip 37.129.232.232 211038 port 29 211038 unique_id port 211038 remote_ip 10.8.1.234 211039 username mostafa_es78 211039 mac 211039 bytes_out 402343 211039 bytes_in 1299902 211039 station_ip 178.236.35.96 211039 port 47 211039 unique_id port 211039 remote_ip 10.8.0.42 211041 username mosi 211041 kill_reason Another user logged on this global unique id 211041 mac 211041 bytes_out 0 211041 bytes_in 0 211041 station_ip 151.235.124.131 211041 port 42 211041 unique_id port 211043 username aminvpnipad 211043 mac 211043 bytes_out 0 211043 bytes_in 0 211043 station_ip 5.119.61.34 211043 port 25 211043 unique_id port 211043 remote_ip 10.8.0.202 211044 username hosseine 211044 kill_reason Another user logged on this global unique id 211044 mac 211044 bytes_out 0 211044 bytes_in 0 211044 station_ip 37.129.232.232 211044 port 29 211044 unique_id port 211045 username houshang 211045 kill_reason Another user logged on this global unique id 211045 mac 211045 bytes_out 0 211045 bytes_in 0 211045 station_ip 5.120.26.48 211045 port 50 211045 unique_id port 211045 remote_ip 10.8.0.158 211047 username farhad3 211047 mac 211047 bytes_out 0 211047 bytes_in 0 211047 station_ip 5.120.32.161 211047 port 47 211047 unique_id port 211047 remote_ip 10.8.0.98 211050 username jamali 211050 kill_reason Relative expiration date has reached 211050 mac 211050 bytes_out 0 211050 bytes_in 0 211050 station_ip 5.120.53.11 211050 port 47 211050 unique_id port 211066 username soleymani5056 211066 mac 211066 bytes_out 19853 211066 bytes_in 55212 211066 station_ip 5.120.175.163 211066 port 54 211066 unique_id port 211066 remote_ip 10.8.0.246 211070 username malekpoir 211070 mac 211070 bytes_out 0 211070 bytes_in 0 211070 station_ip 5.119.193.66 211070 port 32 211070 unique_id port 211070 remote_ip 10.8.1.242 211078 username pourshad 211078 kill_reason Another user logged on this global unique id 211078 mac 211078 bytes_out 0 211078 bytes_in 0 211078 station_ip 5.120.54.100 211078 port 41 211078 unique_id port 211078 remote_ip 10.8.0.122 211079 username pourshad 211079 mac 211079 bytes_out 0 211079 bytes_in 0 211079 station_ip 5.120.54.100 211079 port 41 211079 unique_id port 211081 username aminvpnipad 211081 mac 211081 bytes_out 0 211081 bytes_in 0 211081 station_ip 5.119.61.34 211081 port 41 211081 unique_id port 211081 remote_ip 10.8.0.202 211085 username pourshad 211085 mac 211085 bytes_out 0 211085 bytes_in 0 211085 station_ip 5.120.54.100 211085 port 33 211085 unique_id port 211085 remote_ip 10.8.1.10 211089 username farhad3 211089 kill_reason Another user logged on this global unique id 211059 port 47 211059 unique_id port 211059 remote_ip 10.8.0.98 211061 username sabaghnezhad 211061 mac 211061 bytes_out 451153 211061 bytes_in 3861255 211061 station_ip 37.129.29.6 211061 port 19 211061 unique_id port 211061 remote_ip 10.8.0.94 211062 username aminvpnipad 211062 mac 211062 bytes_out 0 211062 bytes_in 0 211062 station_ip 5.119.61.34 211062 port 19 211062 unique_id port 211062 remote_ip 10.8.0.202 211065 username yaghobi 211065 mac 211065 bytes_out 55958 211065 bytes_in 54120 211065 station_ip 37.129.154.152 211065 port 19 211065 unique_id port 211065 remote_ip 10.8.0.106 211068 username kalantary6037 211068 mac 211068 bytes_out 0 211068 bytes_in 0 211068 station_ip 83.122.94.136 211068 port 30 211068 unique_id port 211068 remote_ip 10.8.1.98 211071 username barzegar8595 211071 mac 211071 bytes_out 0 211071 bytes_in 0 211071 station_ip 46.225.213.40 211071 port 41 211071 unique_id port 211073 username meysam 211073 kill_reason Another user logged on this global unique id 211073 mac 211073 bytes_out 0 211073 bytes_in 0 211073 station_ip 188.158.48.61 211073 port 50 211073 unique_id port 211073 remote_ip 10.8.0.102 211076 username iranmanesh4443 211076 mac 211076 bytes_out 1890800 211076 bytes_in 20294429 211076 station_ip 5.119.223.194 211076 port 53 211076 unique_id port 211076 remote_ip 10.8.0.198 211080 username aminvpnipad 211080 mac 211080 bytes_out 0 211080 bytes_in 0 211080 station_ip 5.119.61.34 211080 port 41 211080 unique_id port 211080 remote_ip 10.8.0.202 211084 username pourshad 211084 mac 211084 bytes_out 0 211084 bytes_in 0 211084 station_ip 5.120.54.100 211084 port 33 211084 unique_id port 211084 remote_ip 10.8.1.10 211087 username aminvpnipad 211087 mac 211087 bytes_out 1644 211087 bytes_in 4596 211087 station_ip 5.119.61.34 211087 port 41 211087 unique_id port 211087 remote_ip 10.8.0.202 211097 username aminvpnipad 211097 mac 211097 bytes_out 0 211097 bytes_in 0 211097 station_ip 5.119.61.34 211097 port 25 211097 unique_id port 211097 remote_ip 10.8.0.202 211099 username milan 211099 kill_reason Another user logged on this global unique id 211099 mac 211099 bytes_out 0 211099 bytes_in 0 211099 station_ip 5.119.220.159 211099 port 33 211099 unique_id port 211101 username pourshad 211101 mac 211101 bytes_out 0 211101 bytes_in 0 211101 station_ip 5.120.54.100 211101 port 34 211101 unique_id port 211106 username pourshad 211106 kill_reason Another user logged on this global unique id 211106 mac 211106 bytes_out 0 211106 bytes_in 0 211106 station_ip 5.120.54.100 211106 port 32 211106 unique_id port 211106 remote_ip 10.8.1.10 211112 username soleymani5056 211112 mac 211112 bytes_out 18095 211112 bytes_in 29923 211112 station_ip 5.119.49.175 211112 port 42 211112 unique_id port 211112 remote_ip 10.8.0.246 211115 username aminvpnipad 211115 mac 211115 bytes_out 0 211115 bytes_in 0 211115 station_ip 5.119.61.34 211115 port 42 211115 unique_id port 211115 remote_ip 10.8.0.202 211117 username alipour1506 211117 mac 211117 bytes_out 2562991 211117 bytes_in 38780615 211117 station_ip 94.176.8.78 211117 port 41 211117 unique_id port 211117 remote_ip 10.8.0.46 211121 username nilufarrajaei 211121 mac 211121 bytes_out 3734460 211121 bytes_in 38937244 211121 station_ip 83.123.46.173 211121 port 19 211121 unique_id port 211121 remote_ip 10.8.0.50 211123 username pourshad 211123 mac 211123 bytes_out 0 211123 bytes_in 0 211123 station_ip 5.120.54.100 211123 port 32 211123 unique_id port 211063 kill_reason Another user logged on this global unique id 211063 mac 211063 bytes_out 0 211063 bytes_in 0 211063 station_ip 5.119.216.203 211063 port 16 211063 unique_id port 211063 remote_ip 10.8.0.186 211064 username yaghobi 211064 mac 211064 bytes_out 84612 211064 bytes_in 87822 211064 station_ip 37.129.154.152 211064 port 52 211064 unique_id port 211064 remote_ip 10.8.0.106 211067 username soleymani5056 211067 mac 211067 bytes_out 2908 211067 bytes_in 5189 211067 station_ip 5.120.175.163 211067 port 19 211067 unique_id port 211067 remote_ip 10.8.0.246 211069 username yaghobi 211069 mac 211069 bytes_out 58996 211069 bytes_in 87333 211069 station_ip 37.129.154.152 211069 port 19 211069 unique_id port 211069 remote_ip 10.8.0.106 211072 username aminvpnipad 211072 mac 211072 bytes_out 0 211072 bytes_in 0 211072 station_ip 5.119.61.34 211072 port 19 211072 unique_id port 211072 remote_ip 10.8.0.202 211074 username meysam 211074 mac 211074 bytes_out 0 211074 bytes_in 0 211074 station_ip 188.158.48.61 211074 port 50 211074 unique_id port 211075 username mosi 211075 kill_reason Another user logged on this global unique id 211075 mac 211075 bytes_out 0 211075 bytes_in 0 211075 station_ip 151.235.124.131 211075 port 42 211075 unique_id port 211077 username iranmanesh4443 211077 mac 211077 bytes_out 0 211077 bytes_in 0 211077 station_ip 5.119.223.194 211077 port 50 211077 unique_id port 211077 remote_ip 10.8.0.198 211082 username farhad3 211082 kill_reason Another user logged on this global unique id 211082 mac 211082 bytes_out 0 211082 bytes_in 0 211082 station_ip 5.120.32.161 211082 port 52 211082 unique_id port 211082 remote_ip 10.8.0.98 211083 username mosi 211083 mac 211083 bytes_out 0 211083 bytes_in 0 211083 station_ip 151.235.124.131 211083 port 42 211083 unique_id port 211086 username godarzi 211086 mac 211086 bytes_out 3931153 211086 bytes_in 30526630 211086 station_ip 5.202.65.237 211086 port 25 211086 unique_id port 211086 remote_ip 10.8.0.74 211088 username meysam 211088 mac 211088 bytes_out 0 211088 bytes_in 0 211088 station_ip 188.158.48.61 211088 port 32 211088 unique_id port 211088 remote_ip 10.8.1.6 211090 username pourshad 211090 kill_reason Another user logged on this global unique id 211090 mac 211090 bytes_out 0 211090 bytes_in 0 211090 station_ip 5.120.54.100 211090 port 33 211090 unique_id port 211090 remote_ip 10.8.1.10 211092 username aminvpnipad 211092 mac 211092 bytes_out 0 211092 bytes_in 0 211092 station_ip 5.119.61.34 211092 port 25 211092 unique_id port 211092 remote_ip 10.8.0.202 211095 username kalantary6037 211095 kill_reason Another user logged on this global unique id 211095 mac 211095 bytes_out 0 211095 bytes_in 0 211095 station_ip 83.122.97.228 211095 port 33 211095 unique_id port 211095 remote_ip 10.8.1.98 211109 username milan 211109 kill_reason Another user logged on this global unique id 211109 mac 211109 bytes_out 0 211109 bytes_in 0 211109 station_ip 5.119.220.159 211109 port 33 211109 unique_id port 211110 username pourshad 211110 kill_reason Another user logged on this global unique id 211110 mac 211110 bytes_out 0 211110 bytes_in 0 211110 station_ip 5.120.54.100 211110 port 32 211110 unique_id port 211111 username barzegar8595 211111 kill_reason Another user logged on this global unique id 211111 mac 211111 bytes_out 0 211111 bytes_in 0 211111 station_ip 46.225.213.40 211111 port 33 211111 unique_id port 211111 remote_ip 10.8.1.26 211113 username farhad3 211113 mac 211113 bytes_out 0 211113 bytes_in 0 211113 station_ip 5.120.32.161 211089 bytes_out 0 211089 bytes_in 0 211089 station_ip 5.120.32.161 211089 port 52 211089 unique_id port 211091 username farhad3 211091 mac 211091 bytes_out 0 211091 bytes_in 0 211091 station_ip 5.120.32.161 211091 port 52 211091 unique_id port 211093 username pourshad 211093 mac 211093 bytes_out 0 211093 bytes_in 0 211093 station_ip 5.120.54.100 211093 port 33 211093 unique_id port 211094 username barzegar8595 211094 mac 211094 bytes_out 0 211094 bytes_in 0 211094 station_ip 46.225.213.40 211094 port 32 211094 unique_id port 211094 remote_ip 10.8.1.26 211096 username pourshad 211096 kill_reason Another user logged on this global unique id 211096 mac 211096 bytes_out 0 211096 bytes_in 0 211096 station_ip 5.120.54.100 211096 port 34 211096 unique_id port 211096 remote_ip 10.8.1.10 211098 username farhad3 211098 mac 211098 bytes_out 1704822 211098 bytes_in 11318375 211098 station_ip 5.120.32.161 211098 port 41 211098 unique_id port 211098 remote_ip 10.8.0.98 211100 username pourshad 211100 kill_reason Another user logged on this global unique id 211100 mac 211100 bytes_out 0 211100 bytes_in 0 211100 station_ip 5.120.54.100 211100 port 34 211100 unique_id port 211102 username milan 211102 mac 211102 bytes_out 0 211102 bytes_in 0 211102 station_ip 5.119.220.159 211102 port 33 211102 unique_id port 211103 username hosseine 211103 kill_reason Another user logged on this global unique id 211103 mac 211103 bytes_out 0 211103 bytes_in 0 211103 station_ip 37.129.232.232 211103 port 29 211103 unique_id port 211104 username aminvpnipad 211104 mac 211104 bytes_out 0 211104 bytes_in 0 211104 station_ip 5.119.61.34 211104 port 42 211104 unique_id port 211104 remote_ip 10.8.0.202 211105 username aminvpnipad 211105 mac 211105 bytes_out 0 211105 bytes_in 0 211105 station_ip 5.119.61.34 211105 port 42 211105 unique_id port 211105 remote_ip 10.8.0.202 211107 username farhad3 211107 kill_reason Another user logged on this global unique id 211107 mac 211107 bytes_out 0 211107 bytes_in 0 211107 station_ip 5.120.32.161 211107 port 25 211107 unique_id port 211107 remote_ip 10.8.0.98 211108 username hosseine 211108 kill_reason Another user logged on this global unique id 211108 mac 211108 bytes_out 0 211108 bytes_in 0 211108 station_ip 37.129.232.232 211108 port 29 211108 unique_id port 211116 username malekpoir 211116 mac 211116 bytes_out 0 211116 bytes_in 0 211116 station_ip 5.119.193.66 211116 port 30 211116 unique_id port 211116 remote_ip 10.8.1.242 211119 username milan 211119 kill_reason Another user logged on this global unique id 211119 mac 211119 bytes_out 0 211119 bytes_in 0 211119 station_ip 5.119.220.159 211119 port 33 211119 unique_id port 211120 username aminvpnpc 211120 mac 211120 bytes_out 4525806 211120 bytes_in 17385382 211120 station_ip 5.119.61.34 211120 port 47 211120 unique_id port 211120 remote_ip 10.8.0.118 211122 username milan 211122 mac 211122 bytes_out 0 211122 bytes_in 0 211122 station_ip 5.119.220.159 211122 port 33 211122 unique_id port 211128 username nilufarrajaei 211128 mac 211128 bytes_out 0 211128 bytes_in 0 211128 station_ip 83.123.46.173 211128 port 25 211128 unique_id port 211128 remote_ip 10.8.0.50 211129 username milan 211129 kill_reason Another user logged on this global unique id 211129 mac 211129 bytes_out 0 211129 bytes_in 0 211129 station_ip 5.119.220.159 211129 port 33 211129 unique_id port 211135 username barzegar 211135 mac 211135 bytes_out 0 211135 bytes_in 0 211135 station_ip 5.120.55.42 211135 port 42 211113 port 25 211113 unique_id port 211114 username pourshad 211114 kill_reason Another user logged on this global unique id 211114 mac 211114 bytes_out 0 211114 bytes_in 0 211114 station_ip 5.120.54.100 211114 port 32 211114 unique_id port 211118 username abdolahi0311 211118 mac 211118 bytes_out 0 211118 bytes_in 0 211118 station_ip 5.119.216.203 211118 port 16 211118 unique_id port 211124 username nilufarrajaei 211124 mac 211124 bytes_out 0 211124 bytes_in 0 211124 station_ip 83.123.46.173 211124 port 34 211124 unique_id port 211124 remote_ip 10.8.1.126 211127 username nilufarrajaei 211127 mac 211127 bytes_out 0 211127 bytes_in 0 211127 station_ip 83.123.46.173 211127 port 41 211127 unique_id port 211127 remote_ip 10.8.0.50 211133 username hatami 211133 mac 211133 bytes_out 0 211133 bytes_in 0 211133 station_ip 151.235.125.252 211133 port 16 211133 unique_id port 211133 remote_ip 10.8.0.14 211136 username aminvpn 211136 mac 211136 bytes_out 315200 211136 bytes_in 878072 211136 station_ip 151.238.255.20 211136 port 16 211136 unique_id port 211136 remote_ip 10.8.0.58 211141 username mohammadjavad 211141 mac 211141 bytes_out 130168 211141 bytes_in 216311 211141 station_ip 83.123.57.54 211141 port 16 211141 unique_id port 211141 remote_ip 10.8.0.138 211143 username nilufarrajaei 211143 mac 211143 bytes_out 0 211143 bytes_in 0 211143 station_ip 83.123.46.173 211143 port 47 211143 unique_id port 211143 remote_ip 10.8.0.50 211144 username milan 211144 kill_reason Another user logged on this global unique id 211144 mac 211144 bytes_out 0 211144 bytes_in 0 211144 station_ip 5.119.220.159 211144 port 33 211144 unique_id port 211145 username barzegar 211145 mac 211145 bytes_out 0 211145 bytes_in 0 211145 station_ip 5.120.55.42 211145 port 32 211145 unique_id port 211145 remote_ip 10.8.1.30 211147 username nilufarrajaei 211147 mac 211147 bytes_out 0 211147 bytes_in 0 211147 station_ip 83.123.46.173 211147 port 33 211147 unique_id port 211147 remote_ip 10.8.1.126 211153 username aminvpnipad 211153 mac 211153 bytes_out 0 211153 bytes_in 0 211153 station_ip 5.119.61.34 211153 port 42 211153 unique_id port 211153 remote_ip 10.8.0.202 211155 username barzegar 211155 mac 211155 bytes_out 4554 211155 bytes_in 7462 211155 station_ip 5.120.55.42 211155 port 33 211155 unique_id port 211155 remote_ip 10.8.1.30 211161 username motamedi9772 211161 mac 211161 bytes_out 0 211161 bytes_in 0 211161 station_ip 83.123.107.112 211161 port 16 211161 unique_id port 211161 remote_ip 10.8.0.86 211162 username nilufarrajaei 211162 mac 211162 bytes_out 0 211162 bytes_in 0 211162 station_ip 83.123.46.173 211162 port 47 211162 unique_id port 211162 remote_ip 10.8.0.50 211163 username nilufarrajaei 211163 mac 211163 bytes_out 0 211163 bytes_in 0 211163 station_ip 83.123.46.173 211163 port 42 211163 unique_id port 211163 remote_ip 10.8.0.50 211165 username aminvpnpc 211165 mac 211165 bytes_out 0 211165 bytes_in 0 211165 station_ip 5.119.61.34 211165 port 19 211165 unique_id port 211165 remote_ip 10.8.0.118 211166 username aminvpnipad 211166 mac 211166 bytes_out 0 211166 bytes_in 0 211166 station_ip 5.119.61.34 211166 port 19 211166 unique_id port 211166 remote_ip 10.8.0.202 211170 username barzegar 211170 mac 211170 bytes_out 0 211170 bytes_in 0 211170 station_ip 5.120.55.42 211170 port 32 211170 unique_id port 211170 remote_ip 10.8.1.30 211173 username hosseine 211173 mac 211173 bytes_out 0 211125 username aminvpnipad 211125 mac 211125 bytes_out 0 211125 bytes_in 0 211125 station_ip 5.119.61.34 211125 port 42 211125 unique_id port 211125 remote_ip 10.8.0.202 211126 username farhad3 211126 mac 211126 bytes_out 0 211126 bytes_in 0 211126 station_ip 5.120.32.161 211126 port 25 211126 unique_id port 211126 remote_ip 10.8.0.98 211130 username aminvpnipad 211130 mac 211130 bytes_out 0 211130 bytes_in 0 211130 station_ip 5.119.61.34 211130 port 52 211130 unique_id port 211130 remote_ip 10.8.0.202 211131 username godarzi 211131 kill_reason Another user logged on this global unique id 211131 mac 211131 bytes_out 0 211131 bytes_in 0 211131 station_ip 5.202.65.237 211131 port 50 211131 unique_id port 211131 remote_ip 10.8.0.74 211132 username houshang 211132 mac 211132 bytes_out 0 211132 bytes_in 0 211132 station_ip 5.119.29.73 211132 port 25 211132 unique_id port 211132 remote_ip 10.8.0.158 211134 username milan 211134 kill_reason Another user logged on this global unique id 211134 mac 211134 bytes_out 0 211134 bytes_in 0 211134 station_ip 5.119.220.159 211134 port 33 211134 unique_id port 211137 username aminvpn 211137 mac 211137 bytes_out 0 211137 bytes_in 0 211137 station_ip 37.129.156.133 211137 port 42 211137 unique_id port 211137 remote_ip 10.8.0.58 211149 username barzegar 211149 mac 211149 bytes_out 2819 211149 bytes_in 5004 211149 station_ip 5.120.55.42 211149 port 42 211149 unique_id port 211149 remote_ip 10.8.0.34 211154 username farhad3 211154 mac 211154 bytes_out 0 211154 bytes_in 0 211154 station_ip 5.120.32.161 211154 port 25 211154 unique_id port 211154 remote_ip 10.8.0.98 211156 username mirzaei6046 211156 kill_reason Another user logged on this global unique id 211156 mac 211156 bytes_out 0 211156 bytes_in 0 211156 station_ip 5.119.27.94 211156 port 44 211156 unique_id port 211158 username nilufarrajaei 211158 mac 211158 bytes_out 52239 211158 bytes_in 369654 211158 station_ip 83.123.46.173 211158 port 32 211158 unique_id port 211158 remote_ip 10.8.1.126 211159 username barzegar 211159 mac 211159 bytes_out 0 211159 bytes_in 0 211159 station_ip 5.120.55.42 211159 port 47 211159 unique_id port 211159 remote_ip 10.8.0.34 211164 username nilufarrajaei 211164 mac 211164 bytes_out 19687 211164 bytes_in 38054 211164 station_ip 83.123.46.173 211164 port 47 211164 unique_id port 211164 remote_ip 10.8.0.50 211168 username soleymani5056 211168 mac 211168 bytes_out 0 211168 bytes_in 0 211168 station_ip 5.120.172.223 211168 port 16 211168 unique_id port 211168 remote_ip 10.8.0.246 211169 username barzegar 211169 mac 211169 bytes_out 0 211169 bytes_in 0 211169 station_ip 5.120.55.42 211169 port 32 211169 unique_id port 211169 remote_ip 10.8.1.30 211172 username kalantary6037 211172 mac 211172 bytes_out 107422 211172 bytes_in 1047567 211172 station_ip 83.122.25.232 211172 port 32 211172 unique_id port 211172 remote_ip 10.8.1.98 211176 username farhad3 211176 kill_reason Another user logged on this global unique id 211176 mac 211176 bytes_out 0 211176 bytes_in 0 211176 station_ip 5.120.32.161 211176 port 25 211176 unique_id port 211177 username barzegar 211177 mac 211177 bytes_out 2509 211177 bytes_in 5476 211177 station_ip 5.120.55.42 211177 port 29 211177 unique_id port 211177 remote_ip 10.8.1.30 211183 username aminvpnipad 211183 mac 211183 bytes_out 0 211183 bytes_in 0 211183 station_ip 5.119.61.34 211183 port 47 211183 unique_id port 211183 remote_ip 10.8.0.202 211184 username aminvpnipad 211135 unique_id port 211135 remote_ip 10.8.0.34 211138 username aminvpn 211138 mac 211138 bytes_out 0 211138 bytes_in 0 211138 station_ip 151.238.255.20 211138 port 16 211138 unique_id port 211138 remote_ip 10.8.0.58 211139 username aminvpn 211139 mac 211139 bytes_out 0 211139 bytes_in 0 211139 station_ip 37.129.156.133 211139 port 42 211139 unique_id port 211139 remote_ip 10.8.0.58 211140 username aminvpnipad 211140 mac 211140 bytes_out 0 211140 bytes_in 0 211140 station_ip 5.119.61.34 211140 port 16 211140 unique_id port 211140 remote_ip 10.8.0.202 211142 username barzegar 211142 mac 211142 bytes_out 0 211142 bytes_in 0 211142 station_ip 5.120.55.42 211142 port 16 211142 unique_id port 211142 remote_ip 10.8.0.34 211146 username nilufarrajaei 211146 mac 211146 bytes_out 0 211146 bytes_in 0 211146 station_ip 83.123.46.173 211146 port 16 211146 unique_id port 211146 remote_ip 10.8.0.50 211148 username aminvpnipad 211148 mac 211148 bytes_out 0 211148 bytes_in 0 211148 station_ip 5.119.61.34 211148 port 42 211148 unique_id port 211148 remote_ip 10.8.0.202 211150 username hosseine 211150 kill_reason Another user logged on this global unique id 211150 mac 211150 bytes_out 0 211150 bytes_in 0 211150 station_ip 37.129.232.232 211150 port 29 211150 unique_id port 211151 username nasiripour0935 211151 mac 211151 bytes_out 3335308 211151 bytes_in 50820217 211151 station_ip 37.129.11.13 211151 port 25 211151 unique_id port 211151 remote_ip 10.8.0.238 211152 username aminvpnipad 211152 mac 211152 bytes_out 0 211152 bytes_in 0 211152 station_ip 5.119.61.34 211152 port 42 211152 unique_id port 211152 remote_ip 10.8.0.202 211157 username barzegar 211157 mac 211157 bytes_out 0 211157 bytes_in 0 211157 station_ip 5.120.55.42 211157 port 33 211157 unique_id port 211157 remote_ip 10.8.1.30 211160 username nilufarrajaei 211160 mac 211160 bytes_out 0 211160 bytes_in 0 211160 station_ip 83.123.46.173 211160 port 42 211160 unique_id port 211160 remote_ip 10.8.0.50 211167 username farhad3 211167 kill_reason Another user logged on this global unique id 211167 mac 211167 bytes_out 0 211167 bytes_in 0 211167 station_ip 5.120.32.161 211167 port 25 211167 unique_id port 211167 remote_ip 10.8.0.98 211171 username mehrpoyan101 211171 mac 211171 bytes_out 0 211171 bytes_in 0 211171 station_ip 5.119.186.59 211171 port 16 211171 unique_id port 211171 remote_ip 10.8.0.134 211175 username aminvpnipad 211175 mac 211175 bytes_out 0 211175 bytes_in 0 211175 station_ip 5.119.61.34 211175 port 42 211175 unique_id port 211175 remote_ip 10.8.0.202 211179 username barzegar 211179 mac 211179 bytes_out 0 211179 bytes_in 0 211179 station_ip 5.120.55.42 211179 port 42 211179 unique_id port 211179 remote_ip 10.8.0.34 211187 username malekpoir 211187 mac 211187 bytes_out 255000 211187 bytes_in 358671 211187 station_ip 5.119.193.66 211187 port 30 211187 unique_id port 211187 remote_ip 10.8.1.242 211189 username aminvpnipad 211189 mac 211189 bytes_out 0 211189 bytes_in 0 211189 station_ip 5.119.61.34 211189 port 47 211189 unique_id port 211189 remote_ip 10.8.0.202 211191 username mehrpoyan101 211191 mac 211191 bytes_out 203009 211191 bytes_in 1897409 211191 station_ip 5.119.23.217 211191 port 32 211191 unique_id port 211191 remote_ip 10.8.1.18 211192 username mirzaei6046 211192 mac 211192 bytes_out 0 211192 bytes_in 0 211192 station_ip 5.119.27.94 211192 port 44 211192 unique_id port 211203 username aminvpnipad 211173 bytes_in 0 211173 station_ip 37.129.232.232 211173 port 29 211173 unique_id port 211174 username khademi 211174 kill_reason Another user logged on this global unique id 211174 mac 211174 bytes_out 0 211174 bytes_in 0 211174 station_ip 37.129.42.216 211174 port 46 211174 unique_id port 211174 remote_ip 10.8.0.26 211178 username mehrpoyan101 211178 mac 211178 bytes_out 0 211178 bytes_in 0 211178 station_ip 5.119.36.139 211178 port 16 211178 unique_id port 211178 remote_ip 10.8.0.134 211180 username dortaj3792 211180 mac 211180 bytes_out 0 211180 bytes_in 0 211180 station_ip 5.120.76.159 211180 port 55 211180 unique_id port 211180 remote_ip 10.8.0.10 211181 username mehrpoyan101 211181 mac 211181 bytes_out 0 211181 bytes_in 0 211181 station_ip 5.119.55.15 211181 port 16 211181 unique_id port 211181 remote_ip 10.8.0.134 211182 username mehrpoyan101 211182 mac 211182 bytes_out 237505 211182 bytes_in 941258 211182 station_ip 5.120.55.198 211182 port 47 211182 unique_id port 211182 remote_ip 10.8.0.134 211185 username barzegar 211185 mac 211185 bytes_out 0 211185 bytes_in 0 211185 station_ip 5.120.55.42 211185 port 29 211185 unique_id port 211185 remote_ip 10.8.1.30 211186 username godarzi 211186 kill_reason Another user logged on this global unique id 211186 mac 211186 bytes_out 0 211186 bytes_in 0 211186 station_ip 5.202.65.237 211186 port 50 211186 unique_id port 211190 username aminvpnipad 211190 mac 211190 bytes_out 0 211190 bytes_in 0 211190 station_ip 5.119.61.34 211190 port 47 211190 unique_id port 211190 remote_ip 10.8.0.202 211195 username aminvpnipad 211195 mac 211195 bytes_out 0 211195 bytes_in 0 211195 station_ip 5.119.61.34 211195 port 32 211195 unique_id port 211195 remote_ip 10.8.1.194 211198 username aminvpnpc 211198 mac 211198 bytes_out 0 211198 bytes_in 0 211198 station_ip 5.119.61.34 211198 port 1 211198 unique_id port 211198 remote_ip 10.8.0.2 211205 username mehrpoyan101 211205 mac 211205 bytes_out 169286 211205 bytes_in 1311669 211205 station_ip 5.120.61.103 211205 port 47 211205 unique_id port 211205 remote_ip 10.8.0.134 211207 username barzegar 211207 kill_reason Maximum check online fails reached 211207 mac 211207 bytes_out 0 211207 bytes_in 0 211207 station_ip 5.120.55.42 211207 port 29 211207 unique_id port 211210 username aminvpnipad 211210 mac 211210 bytes_out 0 211210 bytes_in 0 211210 station_ip 5.119.61.34 211210 port 33 211210 unique_id port 211210 remote_ip 10.8.1.194 211212 username motamedi9772 211212 mac 211212 bytes_out 0 211212 bytes_in 0 211212 station_ip 83.123.29.192 211212 port 33 211212 unique_id port 211212 remote_ip 10.8.1.182 211214 username motamedi9772 211214 kill_reason Maximum check online fails reached 211214 mac 211214 bytes_out 0 211214 bytes_in 0 211214 station_ip 83.123.29.192 211214 port 54 211214 unique_id port 211216 username aminvpnipad 211216 mac 211216 bytes_out 0 211216 bytes_in 0 211216 station_ip 5.119.61.34 211216 port 57 211216 unique_id port 211216 remote_ip 10.8.0.202 211217 username mehrpoyan101 211217 kill_reason Maximum check online fails reached 211217 mac 211217 bytes_out 0 211217 bytes_in 0 211217 station_ip 5.120.84.203 211217 port 52 211217 unique_id port 211224 username soleymani5056 211224 mac 211224 bytes_out 0 211224 bytes_in 0 211224 station_ip 5.119.50.82 211224 port 47 211224 unique_id port 211224 remote_ip 10.8.0.246 211229 username aminvpnipad 211229 mac 211229 bytes_out 0 211229 bytes_in 0 211229 station_ip 5.119.61.34 211184 mac 211184 bytes_out 0 211184 bytes_in 0 211184 station_ip 5.119.61.34 211184 port 47 211184 unique_id port 211184 remote_ip 10.8.0.202 211188 username mehrpoyan101 211188 mac 211188 bytes_out 0 211188 bytes_in 0 211188 station_ip 5.119.189.242 211188 port 16 211188 unique_id port 211188 remote_ip 10.8.0.134 211193 username mehrpoyan101 211193 mac 211193 bytes_out 0 211193 bytes_in 0 211193 station_ip 5.119.23.217 211193 port 52 211193 unique_id port 211193 remote_ip 10.8.0.134 211194 username farhad3 211194 mac 211194 bytes_out 0 211194 bytes_in 0 211194 station_ip 5.120.32.161 211194 port 25 211194 unique_id port 211196 username aminvpnpc 211196 kill_reason Wrong password 211196 mac 211196 bytes_out 0 211196 bytes_in 0 211196 station_ip 5.119.61.34 211196 port 2 211196 unique_id port 211197 username aminvpnipad 211197 mac 211197 bytes_out 0 211197 bytes_in 0 211197 station_ip 5.119.61.34 211197 port 32 211197 unique_id port 211197 remote_ip 10.8.1.194 211199 username motamedi9772 211199 mac 211199 bytes_out 0 211199 bytes_in 0 211199 station_ip 83.123.84.128 211199 port 47 211199 unique_id port 211199 remote_ip 10.8.0.86 211200 username aminvpnipad 211200 kill_reason Maximum check online fails reached 211200 mac 211200 bytes_out 0 211200 bytes_in 0 211200 station_ip 5.119.61.34 211200 port 32 211200 unique_id port 211201 username aminvpnipad 211201 mac 211201 bytes_out 0 211201 bytes_in 0 211201 station_ip 5.119.61.34 211201 port 33 211201 unique_id port 211201 remote_ip 10.8.1.194 211202 username mehrpoyan101 211202 mac 211202 bytes_out 0 211202 bytes_in 0 211202 station_ip 5.119.60.164 211202 port 44 211202 unique_id port 211202 remote_ip 10.8.0.134 211204 username barzegar 211204 mac 211204 bytes_out 129143 211204 bytes_in 308156 211204 station_ip 5.120.55.42 211204 port 29 211204 unique_id port 211204 remote_ip 10.8.1.30 211206 username barzegar 211206 mac 211206 bytes_out 0 211206 bytes_in 0 211206 station_ip 5.120.55.42 211206 port 33 211206 unique_id port 211206 remote_ip 10.8.1.30 211208 username khademi 211208 kill_reason Another user logged on this global unique id 211208 mac 211208 bytes_out 0 211208 bytes_in 0 211208 station_ip 37.129.42.216 211208 port 46 211208 unique_id port 211209 username mehrpoyan101 211209 mac 211209 bytes_out 0 211209 bytes_in 0 211209 station_ip 5.120.141.94 211209 port 44 211209 unique_id port 211209 remote_ip 10.8.0.134 211211 username mehrpoyan101 211211 mac 211211 bytes_out 4980 211211 bytes_in 26821 211211 station_ip 5.120.48.57 211211 port 47 211211 unique_id port 211211 remote_ip 10.8.0.134 211213 username barzegar 211213 mac 211213 bytes_out 0 211213 bytes_in 0 211213 station_ip 5.120.55.42 211213 port 52 211213 unique_id port 211213 remote_ip 10.8.0.34 211215 username mehrpoyan101 211215 mac 211215 bytes_out 490620 211215 bytes_in 2611714 211215 station_ip 5.120.48.57 211215 port 55 211215 unique_id port 211215 remote_ip 10.8.0.134 211222 username mehrpoyan101 211222 mac 211222 bytes_out 0 211222 bytes_in 0 211222 station_ip 5.119.62.123 211222 port 25 211222 unique_id port 211222 remote_ip 10.8.0.134 211223 username mehrpoyan101 211223 mac 211223 bytes_out 15459 211223 bytes_in 24334 211223 station_ip 5.119.155.164 211223 port 55 211223 unique_id port 211223 remote_ip 10.8.0.134 211226 username barzegar 211226 mac 211226 bytes_out 0 211226 bytes_in 0 211226 station_ip 5.120.55.42 211226 port 33 211203 mac 211203 bytes_out 0 211203 bytes_in 0 211203 station_ip 5.119.61.34 211203 port 33 211203 unique_id port 211203 remote_ip 10.8.1.194 211218 username godarzi 211218 kill_reason Another user logged on this global unique id 211218 mac 211218 bytes_out 0 211218 bytes_in 0 211218 station_ip 5.202.65.237 211218 port 50 211218 unique_id port 211219 username mosi 211219 mac 211219 bytes_out 2249874 211219 bytes_in 13884912 211219 station_ip 151.235.124.131 211219 port 25 211219 unique_id port 211219 remote_ip 10.8.0.38 211220 username esmaeilkazemi 211220 mac 211220 bytes_out 0 211220 bytes_in 0 211220 station_ip 37.129.68.205 211220 port 47 211220 unique_id port 211220 remote_ip 10.8.0.66 211221 username mehrpoyan101 211221 mac 211221 bytes_out 0 211221 bytes_in 0 211221 station_ip 5.120.84.203 211221 port 55 211221 unique_id port 211221 remote_ip 10.8.0.134 211225 username aminvpnipad 211225 mac 211225 bytes_out 0 211225 bytes_in 0 211225 station_ip 5.119.61.34 211225 port 25 211225 unique_id port 211225 remote_ip 10.8.0.202 211228 username aminvpnpc 211228 mac 211228 bytes_out 0 211228 bytes_in 0 211228 station_ip 5.119.61.34 211228 port 2 211228 unique_id port 211228 remote_ip 10.8.0.2 211232 username barzegar8595 211232 mac 211232 bytes_out 92620 211232 bytes_in 121074 211232 station_ip 46.225.213.40 211232 port 34 211232 unique_id port 211232 remote_ip 10.8.1.26 211235 username aminvpnpc 211235 mac 211235 bytes_out 0 211235 bytes_in 0 211235 station_ip 5.119.61.34 211235 port 1 211235 unique_id port 211235 remote_ip 10.8.0.2 211237 username barzegar 211237 mac 211237 bytes_out 606139 211237 bytes_in 5774520 211237 station_ip 5.120.55.42 211237 port 25 211237 unique_id port 211237 remote_ip 10.8.0.34 211238 username motamedi9772 211238 mac 211238 bytes_out 0 211238 bytes_in 0 211238 station_ip 83.123.40.16 211238 port 35 211238 unique_id port 211238 remote_ip 10.8.1.182 211241 username saeed9658 211241 kill_reason Relative expiration date has reached 211241 mac 211241 bytes_out 0 211241 bytes_in 0 211241 station_ip 5.120.148.25 211241 port 47 211241 unique_id port 211243 username kharazmi2920 211243 mac 211243 bytes_out 0 211243 bytes_in 0 211243 station_ip 83.123.248.208 211243 port 44 211243 unique_id port 211243 remote_ip 10.8.0.54 211244 username farhad3 211244 mac 211244 bytes_out 126784 211244 bytes_in 656145 211244 station_ip 5.120.32.161 211244 port 47 211244 unique_id port 211244 remote_ip 10.8.0.98 211246 username mehrpoyan101 211246 mac 211246 bytes_out 0 211246 bytes_in 0 211246 station_ip 5.120.59.155 211246 port 55 211246 unique_id port 211246 remote_ip 10.8.0.134 211252 username teymori5660 211252 mac 211252 bytes_out 1283356 211252 bytes_in 15049152 211252 station_ip 5.119.68.52 211252 port 53 211252 unique_id port 211252 remote_ip 10.8.0.230 211259 username yaghobi 211259 mac 211259 bytes_out 69162 211259 bytes_in 232411 211259 station_ip 37.129.200.40 211259 port 53 211259 unique_id port 211259 remote_ip 10.8.0.106 211260 username pourshad 211260 mac 211260 bytes_out 21242670 211260 bytes_in 12187995 211260 station_ip 5.120.54.100 211260 port 55 211260 unique_id port 211260 remote_ip 10.8.0.122 211263 username aminvpnpc 211263 mac 211263 bytes_out 0 211263 bytes_in 0 211263 station_ip 5.119.61.34 211263 port 1 211263 unique_id port 211263 remote_ip 10.8.0.2 211266 username pourshad 211266 mac 211266 bytes_out 0 211266 bytes_in 0 211226 unique_id port 211226 remote_ip 10.8.1.30 211227 username aminvpnipad 211227 mac 211227 bytes_out 0 211227 bytes_in 0 211227 station_ip 5.119.61.34 211227 port 25 211227 unique_id port 211227 remote_ip 10.8.0.202 211231 username farhad3 211231 mac 211231 bytes_out 0 211231 bytes_in 0 211231 station_ip 5.120.32.161 211231 port 47 211231 unique_id port 211231 remote_ip 10.8.0.98 211233 username aminvpnpc 211233 kill_reason Wrong password 211233 mac 211233 bytes_out 0 211233 bytes_in 0 211233 station_ip 5.119.61.34 211233 port 1 211233 unique_id port 211236 username aminvpnipad 211236 mac 211236 bytes_out 0 211236 bytes_in 0 211236 station_ip 5.119.61.34 211236 port 2 211236 unique_id port 211236 remote_ip 10.8.0.2 211240 username saeed9658 211240 kill_reason Relative expiration date has reached 211240 mac 211240 bytes_out 0 211240 bytes_in 0 211240 station_ip 5.120.148.25 211240 port 47 211240 unique_id port 211242 username saeed9658 211242 kill_reason Relative expiration date has reached 211242 mac 211242 bytes_out 0 211242 bytes_in 0 211242 station_ip 5.120.148.25 211242 port 57 211242 unique_id port 211247 username yaghobi 211247 mac 211247 bytes_out 0 211247 bytes_in 0 211247 station_ip 37.129.182.40 211247 port 53 211247 unique_id port 211247 remote_ip 10.8.0.106 211248 username aminvpnpc 211248 mac 211248 bytes_out 0 211248 bytes_in 0 211248 station_ip 5.119.61.34 211248 port 1 211248 unique_id port 211248 remote_ip 10.8.0.2 211250 username kalantary6037 211250 mac 211250 bytes_out 0 211250 bytes_in 0 211250 station_ip 37.129.8.218 211250 port 33 211250 unique_id port 211250 remote_ip 10.8.1.98 211254 username barzegar 211254 mac 211254 bytes_out 0 211254 bytes_in 0 211254 station_ip 5.120.55.42 211254 port 33 211254 unique_id port 211254 remote_ip 10.8.1.30 211255 username barzegar 211255 mac 211255 bytes_out 0 211255 bytes_in 0 211255 station_ip 5.120.55.42 211255 port 33 211255 unique_id port 211255 remote_ip 10.8.1.30 211256 username aminvpnpc 211256 mac 211256 bytes_out 0 211256 bytes_in 0 211256 station_ip 5.119.61.34 211256 port 1 211256 unique_id port 211256 remote_ip 10.8.0.2 211258 username pourshad 211258 mac 211258 bytes_out 14969297 211258 bytes_in 7108986 211258 station_ip 5.120.54.100 211258 port 44 211258 unique_id port 211258 remote_ip 10.8.0.122 211261 username barzegar 211261 mac 211261 bytes_out 0 211261 bytes_in 0 211261 station_ip 5.120.55.42 211261 port 35 211261 unique_id port 211261 remote_ip 10.8.1.30 211264 username aminvpnipad 211264 mac 211264 bytes_out 0 211264 bytes_in 0 211264 station_ip 5.119.61.34 211264 port 2 211264 unique_id port 211264 remote_ip 10.8.0.2 211265 username aminvpnipad 211265 mac 211265 bytes_out 0 211265 bytes_in 0 211265 station_ip 5.119.61.34 211265 port 1 211265 unique_id port 211265 remote_ip 10.8.0.2 211271 username aminvpnipad 211271 mac 211271 bytes_out 0 211271 bytes_in 0 211271 station_ip 5.119.61.34 211271 port 2 211271 unique_id port 211271 remote_ip 10.8.0.2 211273 username barzegar 211273 mac 211273 bytes_out 0 211273 bytes_in 0 211273 station_ip 5.120.55.42 211273 port 55 211273 unique_id port 211273 remote_ip 10.8.0.34 211277 username aminvpnipad 211277 mac 211277 bytes_out 0 211277 bytes_in 0 211277 station_ip 5.119.61.34 211277 port 2 211277 unique_id port 211277 remote_ip 10.8.0.2 211278 username pourshad 211278 kill_reason Another user logged on this global unique id 211229 port 1 211229 unique_id port 211229 remote_ip 10.8.0.2 211230 username dortaj3792 211230 mac 211230 bytes_out 502236 211230 bytes_in 777255 211230 station_ip 5.120.76.159 211230 port 53 211230 unique_id port 211230 remote_ip 10.8.0.10 211234 username barzegar 211234 mac 211234 bytes_out 60769 211234 bytes_in 192631 211234 station_ip 5.120.55.42 211234 port 25 211234 unique_id port 211234 remote_ip 10.8.0.34 211239 username farhad3 211239 mac 211239 bytes_out 2514544 211239 bytes_in 20548722 211239 station_ip 5.120.32.161 211239 port 47 211239 unique_id port 211239 remote_ip 10.8.0.98 211245 username barzegar 211245 mac 211245 bytes_out 0 211245 bytes_in 0 211245 station_ip 5.120.55.42 211245 port 44 211245 unique_id port 211245 remote_ip 10.8.0.34 211249 username aminvpnipad 211249 mac 211249 bytes_out 0 211249 bytes_in 0 211249 station_ip 5.119.61.34 211249 port 2 211249 unique_id port 211249 remote_ip 10.8.0.2 211251 username soleymani5056 211251 mac 211251 bytes_out 16488 211251 bytes_in 22132 211251 station_ip 5.119.36.13 211251 port 55 211251 unique_id port 211251 remote_ip 10.8.0.246 211253 username houshang 211253 mac 211253 bytes_out 37231 211253 bytes_in 52663 211253 station_ip 5.119.29.73 211253 port 44 211253 unique_id port 211253 remote_ip 10.8.0.158 211257 username aminvpnipad 211257 mac 211257 bytes_out 0 211257 bytes_in 0 211257 station_ip 5.119.61.34 211257 port 2 211257 unique_id port 211257 remote_ip 10.8.0.2 211262 username mehrpoyan101 211262 mac 211262 bytes_out 419403 211262 bytes_in 2987351 211262 station_ip 5.120.176.52 211262 port 53 211262 unique_id port 211262 remote_ip 10.8.0.134 211270 username aminvpnpc 211270 mac 211270 bytes_out 0 211270 bytes_in 0 211270 station_ip 5.119.61.34 211270 port 1 211270 unique_id port 211270 remote_ip 10.8.0.2 211272 username pourshad 211272 mac 211272 bytes_out 0 211272 bytes_in 0 211272 station_ip 5.120.54.100 211272 port 34 211272 unique_id port 211272 remote_ip 10.8.1.10 211274 username aminvpnpc 211274 mac 211274 bytes_out 0 211274 bytes_in 0 211274 station_ip 5.119.61.34 211274 port 1 211274 unique_id port 211274 remote_ip 10.8.0.2 211276 username morteza4424 211276 kill_reason Another user logged on this global unique id 211276 mac 211276 bytes_out 0 211276 bytes_in 0 211276 station_ip 83.122.125.136 211276 port 44 211276 unique_id port 211276 remote_ip 10.8.0.30 211281 username soleymani5056 211281 mac 211281 bytes_out 21315 211281 bytes_in 67622 211281 station_ip 5.120.157.23 211281 port 60 211281 unique_id port 211281 remote_ip 10.8.0.246 211288 username barzegar 211288 mac 211288 bytes_out 0 211288 bytes_in 0 211288 station_ip 5.120.55.42 211288 port 58 211288 unique_id port 211288 remote_ip 10.8.0.34 211290 username pourshad 211290 kill_reason Another user logged on this global unique id 211290 mac 211290 bytes_out 0 211290 bytes_in 0 211290 station_ip 5.120.54.100 211290 port 55 211290 unique_id port 211292 username nasiripour0935 211292 mac 211292 bytes_out 0 211292 bytes_in 0 211292 station_ip 83.123.66.41 211292 port 58 211292 unique_id port 211292 remote_ip 10.8.0.238 211294 username kalantary6037 211294 mac 211294 bytes_out 67122777 211294 bytes_in 1072005052 211294 station_ip 37.129.8.218 211294 port 33 211294 unique_id port 211294 remote_ip 10.8.1.98 211296 username morteza4424 211296 mac 211296 bytes_out 0 211296 bytes_in 0 211296 station_ip 83.122.125.136 211296 port 57 211296 unique_id port 211266 station_ip 5.120.54.100 211266 port 34 211266 unique_id port 211266 remote_ip 10.8.1.10 211267 username barzegar 211267 mac 211267 bytes_out 0 211267 bytes_in 0 211267 station_ip 5.120.55.42 211267 port 35 211267 unique_id port 211267 remote_ip 10.8.1.30 211268 username aminvpn 211268 mac 211268 bytes_out 0 211268 bytes_in 0 211268 station_ip 5.120.114.235 211268 port 55 211268 unique_id port 211268 remote_ip 10.8.0.58 211269 username farhad3 211269 mac 211269 bytes_out 2795415 211269 bytes_in 12595591 211269 station_ip 5.120.32.161 211269 port 47 211269 unique_id port 211269 remote_ip 10.8.0.98 211275 username kalantary6037 211275 mac 211275 bytes_out 0 211275 bytes_in 0 211275 station_ip 37.129.8.218 211275 port 33 211275 unique_id port 211275 remote_ip 10.8.1.98 211280 username farhad3 211280 mac 211280 bytes_out 493421 211280 bytes_in 1894069 211280 station_ip 5.120.32.161 211280 port 57 211280 unique_id port 211280 remote_ip 10.8.0.98 211282 username dortaj3792 211282 kill_reason Maximum check online fails reached 211282 mac 211282 bytes_out 1076396 211282 bytes_in 2697915 211282 station_ip 5.120.76.159 211282 port 25 211282 unique_id port 211282 remote_ip 10.8.0.10 211284 username aminvpn2 211284 mac 211284 bytes_out 2613275 211284 bytes_in 29741486 211284 station_ip 5.119.61.34 211284 port 58 211284 unique_id port 211284 remote_ip 10.8.0.130 211287 username barzegar 211287 mac 211287 bytes_out 0 211287 bytes_in 0 211287 station_ip 5.120.55.42 211287 port 58 211287 unique_id port 211287 remote_ip 10.8.0.34 211289 username houshang 211289 mac 211289 bytes_out 31950 211289 bytes_in 77236 211289 station_ip 5.119.29.73 211289 port 53 211289 unique_id port 211289 remote_ip 10.8.0.158 211293 username yaghobi 211293 mac 211293 bytes_out 49100 211293 bytes_in 66262 211293 station_ip 37.129.200.40 211293 port 57 211293 unique_id port 211293 remote_ip 10.8.0.106 211297 username houshang 211297 mac 211297 bytes_out 0 211297 bytes_in 0 211297 station_ip 5.119.29.73 211297 port 34 211297 unique_id port 211297 remote_ip 10.8.1.246 211300 username morteza4424 211300 mac 211300 bytes_out 0 211300 bytes_in 0 211300 station_ip 83.122.125.136 211300 port 57 211300 unique_id port 211300 remote_ip 10.8.0.30 211303 username houshang 211303 mac 211303 bytes_out 28897 211303 bytes_in 70032 211303 station_ip 5.119.29.73 211303 port 44 211303 unique_id port 211303 remote_ip 10.8.0.158 211312 username aminvpnipad 211312 mac 211312 bytes_out 0 211312 bytes_in 0 211312 station_ip 5.119.61.34 211312 port 1 211312 unique_id port 211312 remote_ip 10.8.0.2 211313 username barzegar 211313 mac 211313 bytes_out 3138 211313 bytes_in 5932 211313 station_ip 5.120.55.42 211313 port 34 211313 unique_id port 211313 remote_ip 10.8.1.30 211314 username morteza4424 211314 mac 211314 bytes_out 0 211314 bytes_in 0 211314 station_ip 83.122.125.136 211314 port 44 211314 unique_id port 211314 remote_ip 10.8.0.30 211315 username morteza4424 211315 mac 211315 bytes_out 0 211315 bytes_in 0 211315 station_ip 83.122.125.136 211315 port 34 211315 unique_id port 211315 remote_ip 10.8.1.42 211325 username morteza4424 211325 mac 211325 bytes_out 1184683 211325 bytes_in 20870390 211325 station_ip 83.122.125.136 211325 port 34 211325 unique_id port 211325 remote_ip 10.8.1.42 211326 username saeeddamghani 211326 kill_reason Maximum check online fails reached 211326 mac 211326 bytes_out 0 211326 bytes_in 0 211326 station_ip 217.60.218.117 211278 mac 211278 bytes_out 0 211278 bytes_in 0 211278 station_ip 5.120.54.100 211278 port 55 211278 unique_id port 211278 remote_ip 10.8.0.122 211279 username barzegar 211279 mac 211279 bytes_out 0 211279 bytes_in 0 211279 station_ip 5.120.55.42 211279 port 34 211279 unique_id port 211279 remote_ip 10.8.1.30 211283 username morteza4424 211283 kill_reason Maximum check online fails reached 211283 mac 211283 bytes_out 0 211283 bytes_in 0 211283 station_ip 83.122.125.136 211283 port 44 211283 unique_id port 211285 username mehrpoyan101 211285 mac 211285 bytes_out 448951 211285 bytes_in 1144879 211285 station_ip 5.119.223.68 211285 port 59 211285 unique_id port 211285 remote_ip 10.8.0.134 211286 username yaghobi 211286 mac 211286 bytes_out 571893 211286 bytes_in 2669606 211286 station_ip 37.129.200.40 211286 port 53 211286 unique_id port 211286 remote_ip 10.8.0.106 211291 username morteza4424 211291 mac 211291 bytes_out 0 211291 bytes_in 0 211291 station_ip 83.122.125.136 211291 port 53 211291 unique_id port 211291 remote_ip 10.8.0.30 211295 username morteza4424 211295 mac 211295 bytes_out 0 211295 bytes_in 0 211295 station_ip 83.122.125.136 211295 port 53 211295 unique_id port 211295 remote_ip 10.8.0.30 211301 username barzegar 211301 mac 211301 bytes_out 67125912 211301 bytes_in 1072010052 211301 station_ip 5.120.55.42 211301 port 33 211301 unique_id port 211301 remote_ip 10.8.1.30 211306 username mehrpoyan101 211306 mac 211306 bytes_out 167731 211306 bytes_in 501486 211306 station_ip 5.119.78.37 211306 port 53 211306 unique_id port 211306 remote_ip 10.8.0.134 211307 username houshang 211307 mac 211307 bytes_out 0 211307 bytes_in 0 211307 station_ip 5.119.29.73 211307 port 34 211307 unique_id port 211307 remote_ip 10.8.1.246 211308 username kalantary6037 211308 mac 211308 bytes_out 182583 211308 bytes_in 929182 211308 station_ip 37.129.8.218 211308 port 35 211308 unique_id port 211308 remote_ip 10.8.1.98 211316 username mehrpoyan101 211316 mac 211316 bytes_out 0 211316 bytes_in 0 211316 station_ip 5.120.134.122 211316 port 57 211316 unique_id port 211316 remote_ip 10.8.0.134 211320 username aminvpn 211320 mac 211320 bytes_out 0 211320 bytes_in 0 211320 station_ip 5.120.114.235 211320 port 47 211320 unique_id port 211323 username sabaghnezhad 211323 mac 211323 bytes_out 0 211323 bytes_in 0 211323 station_ip 83.122.125.38 211323 port 42 211323 unique_id port 211323 remote_ip 10.8.0.94 211329 username kalantary6037 211329 mac 211329 bytes_out 106915 211329 bytes_in 762061 211329 station_ip 37.129.30.10 211329 port 35 211329 unique_id port 211329 remote_ip 10.8.1.98 211330 username pourshad 211330 kill_reason Another user logged on this global unique id 211330 mac 211330 bytes_out 0 211330 bytes_in 0 211330 station_ip 5.120.54.100 211330 port 55 211330 unique_id port 211335 username mehrpoyan101 211335 mac 211335 bytes_out 0 211335 bytes_in 0 211335 station_ip 5.120.3.108 211335 port 42 211335 unique_id port 211335 remote_ip 10.8.0.134 211336 username pourshad 211336 mac 211336 bytes_out 0 211336 bytes_in 0 211336 station_ip 5.120.54.100 211336 port 55 211336 unique_id port 211342 username morteza4424 211342 mac 211342 bytes_out 0 211342 bytes_in 0 211342 station_ip 83.122.125.136 211342 port 37 211342 unique_id port 211342 remote_ip 10.8.1.42 211345 username farhad3 211345 mac 211345 bytes_out 0 211345 bytes_in 0 211345 station_ip 5.120.32.161 211345 port 57 211296 remote_ip 10.8.0.30 211298 username mehrpoyan101 211298 mac 211298 bytes_out 209186 211298 bytes_in 1065954 211298 station_ip 5.120.148.24 211298 port 44 211298 unique_id port 211298 remote_ip 10.8.0.134 211299 username aminvpn 211299 kill_reason Another user logged on this global unique id 211299 mac 211299 bytes_out 0 211299 bytes_in 0 211299 station_ip 5.120.114.235 211299 port 47 211299 unique_id port 211299 remote_ip 10.8.0.58 211302 username motamedi9772 211302 mac 211302 bytes_out 0 211302 bytes_in 0 211302 station_ip 83.123.99.144 211302 port 34 211302 unique_id port 211302 remote_ip 10.8.1.182 211304 username houshang 211304 mac 211304 bytes_out 0 211304 bytes_in 0 211304 station_ip 5.119.29.73 211304 port 35 211304 unique_id port 211304 remote_ip 10.8.1.246 211305 username barzegar 211305 mac 211305 bytes_out 0 211305 bytes_in 0 211305 station_ip 5.120.55.42 211305 port 44 211305 unique_id port 211305 remote_ip 10.8.0.34 211309 username morteza4424 211309 mac 211309 bytes_out 0 211309 bytes_in 0 211309 station_ip 83.122.125.136 211309 port 35 211309 unique_id port 211309 remote_ip 10.8.1.42 211310 username morteza4424 211310 mac 211310 bytes_out 0 211310 bytes_in 0 211310 station_ip 83.122.125.136 211310 port 57 211310 unique_id port 211310 remote_ip 10.8.0.30 211311 username mehrpoyan101 211311 mac 211311 bytes_out 0 211311 bytes_in 0 211311 station_ip 5.120.16.122 211311 port 44 211311 unique_id port 211311 remote_ip 10.8.0.134 211317 username barzegar 211317 mac 211317 bytes_out 0 211317 bytes_in 0 211317 station_ip 5.120.55.42 211317 port 34 211317 unique_id port 211317 remote_ip 10.8.1.30 211318 username houshang 211318 mac 211318 bytes_out 0 211318 bytes_in 0 211318 station_ip 5.119.29.73 211318 port 53 211318 unique_id port 211318 remote_ip 10.8.0.158 211319 username aminvpnipad 211319 mac 211319 bytes_out 0 211319 bytes_in 0 211319 station_ip 5.119.61.34 211319 port 1 211319 unique_id port 211319 remote_ip 10.8.0.2 211321 username mehrpoyan101 211321 mac 211321 bytes_out 0 211321 bytes_in 0 211321 station_ip 5.120.134.122 211321 port 44 211321 unique_id port 211321 remote_ip 10.8.0.134 211322 username barzegar 211322 mac 211322 bytes_out 0 211322 bytes_in 0 211322 station_ip 5.120.55.42 211322 port 36 211322 unique_id port 211322 remote_ip 10.8.1.30 211324 username kalantary6037 211324 mac 211324 bytes_out 305552 211324 bytes_in 1288942 211324 station_ip 37.129.30.10 211324 port 35 211324 unique_id port 211324 remote_ip 10.8.1.98 211327 username mehrpoyan101 211327 mac 211327 bytes_out 0 211327 bytes_in 0 211327 station_ip 5.119.61.225 211327 port 47 211327 unique_id port 211327 remote_ip 10.8.0.134 211332 username mehrpoyan101 211332 kill_reason Maximum check online fails reached 211332 mac 211332 bytes_out 0 211332 bytes_in 0 211332 station_ip 5.120.3.108 211332 port 53 211332 unique_id port 211334 username morteza4424 211334 mac 211334 bytes_out 0 211334 bytes_in 0 211334 station_ip 83.122.125.136 211334 port 47 211334 unique_id port 211334 remote_ip 10.8.0.30 211338 username mehrpoyan101 211338 mac 211338 bytes_out 0 211338 bytes_in 0 211338 station_ip 5.120.46.49 211338 port 47 211338 unique_id port 211338 remote_ip 10.8.0.134 211339 username morteza4424 211339 mac 211339 bytes_out 0 211339 bytes_in 0 211339 station_ip 83.122.125.136 211339 port 37 211339 unique_id port 211339 remote_ip 10.8.1.42 211340 username kalantary6037 211326 port 44 211326 unique_id port 211328 username barzegar 211328 mac 211328 bytes_out 0 211328 bytes_in 0 211328 station_ip 5.120.55.42 211328 port 42 211328 unique_id port 211328 remote_ip 10.8.0.34 211331 username morteza4424 211331 kill_reason Maximum check online fails reached 211331 mac 211331 bytes_out 0 211331 bytes_in 0 211331 station_ip 83.122.125.136 211331 port 34 211331 unique_id port 211333 username barzegar 211333 mac 211333 bytes_out 0 211333 bytes_in 0 211333 station_ip 5.120.55.42 211333 port 47 211333 unique_id port 211333 remote_ip 10.8.0.34 211337 username morteza4424 211337 mac 211337 bytes_out 0 211337 bytes_in 0 211337 station_ip 83.122.125.136 211337 port 42 211337 unique_id port 211337 remote_ip 10.8.0.30 211341 username barzegar 211341 mac 211341 bytes_out 0 211341 bytes_in 0 211341 station_ip 5.120.55.42 211341 port 38 211341 unique_id port 211341 remote_ip 10.8.1.30 211344 username yaghobi 211344 mac 211344 bytes_out 79052 211344 bytes_in 165441 211344 station_ip 37.129.146.100 211344 port 47 211344 unique_id port 211344 remote_ip 10.8.0.106 211348 username morteza4424 211348 mac 211348 bytes_out 0 211348 bytes_in 0 211348 station_ip 83.122.125.136 211348 port 42 211348 unique_id port 211348 remote_ip 10.8.0.30 211356 username alipour1506 211356 kill_reason Another user logged on this global unique id 211356 mac 211356 bytes_out 0 211356 bytes_in 0 211356 station_ip 94.176.8.78 211356 port 41 211356 unique_id port 211359 username morteza4424 211359 mac 211359 bytes_out 0 211359 bytes_in 0 211359 station_ip 83.122.125.136 211359 port 38 211359 unique_id port 211359 remote_ip 10.8.1.42 211361 username godarzi 211361 kill_reason Another user logged on this global unique id 211361 mac 211361 bytes_out 0 211361 bytes_in 0 211361 station_ip 5.202.65.237 211361 port 50 211361 unique_id port 211365 username morteza4424 211365 mac 211365 bytes_out 0 211365 bytes_in 0 211365 station_ip 83.122.125.136 211365 port 57 211365 unique_id port 211365 remote_ip 10.8.0.30 211367 username pourshad 211367 mac 211367 bytes_out 0 211367 bytes_in 0 211367 station_ip 5.120.54.100 211367 port 35 211367 unique_id port 211368 username barzegar 211368 mac 211368 bytes_out 0 211368 bytes_in 0 211368 station_ip 5.120.55.42 211368 port 35 211368 unique_id port 211368 remote_ip 10.8.1.30 211370 username alipour1506 211370 kill_reason Another user logged on this global unique id 211370 mac 211370 bytes_out 0 211370 bytes_in 0 211370 station_ip 94.176.8.78 211370 port 41 211370 unique_id port 211374 username mirzaei6046 211374 mac 211374 bytes_out 1489983 211374 bytes_in 14128871 211374 station_ip 5.119.27.94 211374 port 30 211374 unique_id port 211374 remote_ip 10.8.1.110 211381 username barzegar 211381 mac 211381 bytes_out 0 211381 bytes_in 0 211381 station_ip 5.120.55.42 211381 port 30 211381 unique_id port 211381 remote_ip 10.8.1.30 211386 username yaghobi 211386 mac 211386 bytes_out 0 211386 bytes_in 0 211386 station_ip 37.129.227.136 211386 port 47 211386 unique_id port 211386 remote_ip 10.8.0.106 211387 username barzegar 211387 mac 211387 bytes_out 0 211387 bytes_in 0 211387 station_ip 5.120.55.42 211387 port 30 211387 unique_id port 211387 remote_ip 10.8.1.30 211390 username kamali3 211390 mac 211390 bytes_out 55186 211390 bytes_in 316120 211390 station_ip 83.122.198.78 211390 port 30 211390 unique_id port 211390 remote_ip 10.8.1.206 211392 username pourshad 211340 mac 211340 bytes_out 151506 211340 bytes_in 651974 211340 station_ip 37.129.23.22 211340 port 36 211340 unique_id port 211340 remote_ip 10.8.1.98 211343 username alipour1506 211343 kill_reason Another user logged on this global unique id 211343 mac 211343 bytes_out 0 211343 bytes_in 0 211343 station_ip 94.176.8.78 211343 port 41 211343 unique_id port 211343 remote_ip 10.8.0.46 211346 username pourshad 211346 mac 211346 bytes_out 46745444 211346 bytes_in 2150256 211346 station_ip 5.120.54.100 211346 port 35 211346 unique_id port 211346 remote_ip 10.8.1.10 211347 username mehrpoyan101 211347 mac 211347 bytes_out 381284 211347 bytes_in 2418220 211347 station_ip 5.119.157.210 211347 port 42 211347 unique_id port 211347 remote_ip 10.8.0.134 211351 username morteza4424 211351 mac 211351 bytes_out 0 211351 bytes_in 0 211351 station_ip 83.122.125.136 211351 port 36 211351 unique_id port 211351 remote_ip 10.8.1.42 211353 username mehrpoyan101 211353 mac 211353 bytes_out 0 211353 bytes_in 0 211353 station_ip 5.120.83.10 211353 port 57 211353 unique_id port 211353 remote_ip 10.8.0.134 211358 username barzegar 211358 mac 211358 bytes_out 0 211358 bytes_in 0 211358 station_ip 5.120.55.42 211358 port 47 211358 unique_id port 211358 remote_ip 10.8.0.34 211360 username tahmorsi 211360 mac 211360 bytes_out 0 211360 bytes_in 0 211360 station_ip 86.57.51.125 211360 port 36 211360 unique_id port 211360 remote_ip 10.8.1.78 211363 username farhad3 211363 mac 211363 bytes_out 0 211363 bytes_in 0 211363 station_ip 5.120.32.161 211363 port 47 211363 unique_id port 211363 remote_ip 10.8.0.98 211364 username pourshad 211364 kill_reason Another user logged on this global unique id 211364 mac 211364 bytes_out 0 211364 bytes_in 0 211364 station_ip 5.120.54.100 211364 port 35 211364 unique_id port 211364 remote_ip 10.8.1.10 211366 username mehrpoyan101 211366 mac 211366 bytes_out 0 211366 bytes_in 0 211366 station_ip 5.119.79.38 211366 port 55 211366 unique_id port 211366 remote_ip 10.8.0.134 211372 username morteza4424 211372 mac 211372 bytes_out 0 211372 bytes_in 0 211372 station_ip 83.122.125.136 211372 port 35 211372 unique_id port 211372 remote_ip 10.8.1.42 211373 username mehrpoyan101 211373 mac 211373 bytes_out 0 211373 bytes_in 0 211373 station_ip 5.119.49.131 211373 port 57 211373 unique_id port 211373 remote_ip 10.8.0.134 211375 username pourshad 211375 kill_reason Another user logged on this global unique id 211375 mac 211375 bytes_out 0 211375 bytes_in 0 211375 station_ip 5.120.54.100 211375 port 55 211375 unique_id port 211375 remote_ip 10.8.0.122 211377 username mirzaei6046 211377 mac 211377 bytes_out 0 211377 bytes_in 0 211377 station_ip 5.119.27.94 211377 port 60 211377 unique_id port 211377 remote_ip 10.8.0.242 211380 username mehrpoyan101 211380 kill_reason Maximum check online fails reached 211380 mac 211380 bytes_out 0 211380 bytes_in 0 211380 station_ip 5.119.173.41 211380 port 57 211380 unique_id port 211385 username barzegar 211385 mac 211385 bytes_out 0 211385 bytes_in 0 211385 station_ip 5.120.55.42 211385 port 60 211385 unique_id port 211385 remote_ip 10.8.0.34 211388 username kamali3 211388 mac 211388 bytes_out 19905 211388 bytes_in 37751 211388 station_ip 83.122.198.78 211388 port 35 211388 unique_id port 211388 remote_ip 10.8.1.206 211389 username mehrpoyan101 211389 mac 211389 bytes_out 0 211389 bytes_in 0 211389 station_ip 5.120.153.140 211389 port 19 211389 unique_id port 211389 remote_ip 10.8.0.134 211345 unique_id port 211345 remote_ip 10.8.0.98 211349 username barzegar 211349 mac 211349 bytes_out 0 211349 bytes_in 0 211349 station_ip 5.120.55.42 211349 port 55 211349 unique_id port 211349 remote_ip 10.8.0.34 211350 username barzegar 211350 mac 211350 bytes_out 0 211350 bytes_in 0 211350 station_ip 5.120.55.42 211350 port 36 211350 unique_id port 211350 remote_ip 10.8.1.30 211352 username barzegar 211352 mac 211352 bytes_out 0 211352 bytes_in 0 211352 station_ip 5.120.55.42 211352 port 36 211352 unique_id port 211352 remote_ip 10.8.1.30 211354 username farhad3 211354 mac 211354 bytes_out 0 211354 bytes_in 0 211354 station_ip 5.120.32.161 211354 port 47 211354 unique_id port 211354 remote_ip 10.8.0.98 211355 username morteza4424 211355 mac 211355 bytes_out 0 211355 bytes_in 0 211355 station_ip 83.122.125.136 211355 port 47 211355 unique_id port 211355 remote_ip 10.8.0.30 211357 username barzegar 211357 mac 211357 bytes_out 0 211357 bytes_in 0 211357 station_ip 5.120.55.42 211357 port 38 211357 unique_id port 211357 remote_ip 10.8.1.30 211362 username mehrpoyan101 211362 mac 211362 bytes_out 0 211362 bytes_in 0 211362 station_ip 5.120.40.197 211362 port 42 211362 unique_id port 211362 remote_ip 10.8.0.134 211369 username morteza4424 211369 mac 211369 bytes_out 0 211369 bytes_in 0 211369 station_ip 83.122.125.136 211369 port 58 211369 unique_id port 211369 remote_ip 10.8.0.30 211371 username godarzi 211371 mac 211371 bytes_out 0 211371 bytes_in 0 211371 station_ip 5.202.65.237 211371 port 50 211371 unique_id port 211376 username mehrpoyan101 211376 mac 211376 bytes_out 0 211376 bytes_in 0 211376 station_ip 5.119.49.131 211376 port 57 211376 unique_id port 211376 remote_ip 10.8.0.134 211378 username morteza4424 211378 mac 211378 bytes_out 0 211378 bytes_in 0 211378 station_ip 83.122.125.136 211378 port 61 211378 unique_id port 211378 remote_ip 10.8.0.30 211379 username hosseine 211379 mac 211379 bytes_out 8401806 211379 bytes_in 38928013 211379 station_ip 37.129.232.232 211379 port 19 211379 unique_id port 211379 remote_ip 10.8.0.126 211382 username pourshad 211382 kill_reason Another user logged on this global unique id 211382 mac 211382 bytes_out 0 211382 bytes_in 0 211382 station_ip 5.120.54.100 211382 port 55 211382 unique_id port 211383 username mehrpoyan101 211383 mac 211383 bytes_out 0 211383 bytes_in 0 211383 station_ip 5.119.173.41 211383 port 60 211383 unique_id port 211383 remote_ip 10.8.0.134 211384 username motamedi9772 211384 kill_reason Another user logged on this global unique id 211384 mac 211384 bytes_out 0 211384 bytes_in 0 211384 station_ip 83.123.122.200 211384 port 37 211384 unique_id port 211384 remote_ip 10.8.1.182 211391 username morteza4424 211391 mac 211391 bytes_out 148763 211391 bytes_in 1919400 211391 station_ip 83.122.125.136 211391 port 35 211391 unique_id port 211391 remote_ip 10.8.1.42 211393 username godarzi 211393 mac 211393 bytes_out 795872 211393 bytes_in 6308977 211393 station_ip 5.202.65.237 211393 port 50 211393 unique_id port 211393 remote_ip 10.8.0.74 211394 username mosavi0713 211394 mac 211394 bytes_out 0 211394 bytes_in 0 211394 station_ip 83.122.225.69 211394 port 59 211394 unique_id port 211394 remote_ip 10.8.0.22 211396 username morteza4424 211396 kill_reason Maximum number of concurrent logins reached 211396 mac 211396 bytes_out 0 211396 bytes_in 0 211396 station_ip 83.122.125.136 211396 port 35 211396 unique_id port 211392 kill_reason Another user logged on this global unique id 211392 mac 211392 bytes_out 0 211392 bytes_in 0 211392 station_ip 5.120.54.100 211392 port 55 211392 unique_id port 211402 username yaghobi 211402 mac 211402 bytes_out 162987 211402 bytes_in 296279 211402 station_ip 37.129.238.12 211402 port 19 211402 unique_id port 211402 remote_ip 10.8.0.106 211404 username malekpoir 211404 mac 211404 bytes_out 5444675 211404 bytes_in 44904965 211404 station_ip 5.119.193.66 211404 port 16 211404 unique_id port 211404 remote_ip 10.8.0.178 211405 username mehrpoyan101 211405 mac 211405 bytes_out 56036 211405 bytes_in 161247 211405 station_ip 5.120.82.185 211405 port 47 211405 unique_id port 211405 remote_ip 10.8.0.134 211406 username barzegar 211406 mac 211406 bytes_out 0 211406 bytes_in 0 211406 station_ip 5.120.55.42 211406 port 35 211406 unique_id port 211406 remote_ip 10.8.1.30 211408 username yaghobi 211408 mac 211408 bytes_out 1307940 211408 bytes_in 17117299 211408 station_ip 37.129.238.12 211408 port 59 211408 unique_id port 211408 remote_ip 10.8.0.106 211409 username pourshad 211409 kill_reason Another user logged on this global unique id 211409 mac 211409 bytes_out 0 211409 bytes_in 0 211409 station_ip 5.120.54.100 211409 port 55 211409 unique_id port 211410 username motamedi9772 211410 kill_reason Another user logged on this global unique id 211410 mac 211410 bytes_out 0 211410 bytes_in 0 211410 station_ip 83.123.122.200 211410 port 37 211410 unique_id port 211417 username motamedi9772 211417 mac 211417 bytes_out 0 211417 bytes_in 0 211417 station_ip 83.123.122.200 211417 port 35 211417 unique_id port 211417 remote_ip 10.8.1.182 211421 username aminvpn 211421 mac 211421 bytes_out 0 211421 bytes_in 0 211421 station_ip 5.120.114.235 211421 port 19 211421 unique_id port 211422 username mehrpoyan101 211422 mac 211422 bytes_out 535210 211422 bytes_in 3492536 211422 station_ip 5.120.122.33 211422 port 60 211422 unique_id port 211422 remote_ip 10.8.0.134 211426 username mehrpoyan101 211426 mac 211426 bytes_out 59951 211426 bytes_in 111295 211426 station_ip 5.119.189.210 211426 port 19 211426 unique_id port 211426 remote_ip 10.8.0.134 211427 username mirzaei6046 211427 mac 211427 bytes_out 0 211427 bytes_in 0 211427 station_ip 5.120.172.154 211427 port 61 211427 unique_id port 211427 remote_ip 10.8.0.242 211430 username malekpoir 211430 mac 211430 bytes_out 1885715 211430 bytes_in 17135343 211430 station_ip 5.119.193.66 211430 port 50 211430 unique_id port 211430 remote_ip 10.8.0.178 211431 username mehrpoyan101 211431 mac 211431 bytes_out 623966 211431 bytes_in 5226962 211431 station_ip 5.119.170.183 211431 port 19 211431 unique_id port 211431 remote_ip 10.8.0.134 211432 username pourshad 211432 kill_reason Another user logged on this global unique id 211432 mac 211432 bytes_out 0 211432 bytes_in 0 211432 station_ip 5.120.54.100 211432 port 55 211432 unique_id port 211434 username farhad3 211434 mac 211434 bytes_out 0 211434 bytes_in 0 211434 station_ip 5.120.32.161 211434 port 42 211434 unique_id port 211436 username pourshad 211436 kill_reason Another user logged on this global unique id 211436 mac 211436 bytes_out 0 211436 bytes_in 0 211436 station_ip 5.120.54.100 211436 port 55 211436 unique_id port 211437 username motamedi9772 211437 mac 211437 bytes_out 95871 211437 bytes_in 190374 211437 station_ip 83.123.122.200 211437 port 19 211437 unique_id port 211437 remote_ip 10.8.0.86 211439 username mehrpoyan101 211439 mac 211439 bytes_out 247819 211395 username barzegar 211395 mac 211395 bytes_out 0 211395 bytes_in 0 211395 station_ip 5.120.55.42 211395 port 30 211395 unique_id port 211395 remote_ip 10.8.1.30 211397 username houshang 211397 mac 211397 bytes_out 1208495 211397 bytes_in 10773987 211397 station_ip 5.119.29.73 211397 port 47 211397 unique_id port 211397 remote_ip 10.8.0.158 211399 username alipour1506 211399 kill_reason Another user logged on this global unique id 211399 mac 211399 bytes_out 0 211399 bytes_in 0 211399 station_ip 94.176.8.78 211399 port 41 211399 unique_id port 211400 username mehrpoyan101 211400 mac 211400 bytes_out 0 211400 bytes_in 0 211400 station_ip 5.119.98.60 211400 port 60 211400 unique_id port 211400 remote_ip 10.8.0.134 211401 username pourshad 211401 kill_reason Another user logged on this global unique id 211401 mac 211401 bytes_out 0 211401 bytes_in 0 211401 station_ip 5.120.54.100 211401 port 55 211401 unique_id port 211411 username mehrpoyan101 211411 mac 211411 bytes_out 0 211411 bytes_in 0 211411 station_ip 5.120.37.163 211411 port 16 211411 unique_id port 211411 remote_ip 10.8.0.134 211418 username dortaj3792 211418 mac 211418 bytes_out 215449 211418 bytes_in 360968 211418 station_ip 5.120.76.159 211418 port 50 211418 unique_id port 211418 remote_ip 10.8.0.10 211419 username pourshad 211419 kill_reason Another user logged on this global unique id 211419 mac 211419 bytes_out 0 211419 bytes_in 0 211419 station_ip 5.120.54.100 211419 port 55 211419 unique_id port 211428 username pourshad 211428 kill_reason Another user logged on this global unique id 211428 mac 211428 bytes_out 0 211428 bytes_in 0 211428 station_ip 5.120.54.100 211428 port 55 211428 unique_id port 211429 username yazdani6029 211429 mac 211429 bytes_out 2359030 211429 bytes_in 18012260 211429 station_ip 37.129.103.43 211429 port 16 211429 unique_id port 211429 remote_ip 10.8.0.210 211445 username mosi 211445 mac 211445 bytes_out 0 211445 bytes_in 0 211445 station_ip 151.235.124.131 211445 port 35 211445 unique_id port 211445 remote_ip 10.8.1.54 211448 username barzegar 211448 mac 211448 bytes_out 0 211448 bytes_in 0 211448 station_ip 5.120.55.42 211448 port 16 211448 unique_id port 211448 remote_ip 10.8.0.34 211450 username barzegar 211450 mac 211450 bytes_out 0 211450 bytes_in 0 211450 station_ip 5.120.55.42 211450 port 25 211450 unique_id port 211450 remote_ip 10.8.0.34 211452 username teymori5660 211452 kill_reason Another user logged on this global unique id 211452 mac 211452 bytes_out 0 211452 bytes_in 0 211452 station_ip 5.120.104.123 211452 port 50 211452 unique_id port 211456 username teymori5660 211456 mac 211456 bytes_out 0 211456 bytes_in 0 211456 station_ip 5.120.104.123 211456 port 50 211456 unique_id port 211458 username farhad3 211458 mac 211458 bytes_out 388429 211458 bytes_in 1963246 211458 station_ip 5.119.98.16 211458 port 42 211458 unique_id port 211458 remote_ip 10.8.0.98 211459 username farhad3 211459 mac 211459 bytes_out 0 211459 bytes_in 0 211459 station_ip 5.119.98.16 211459 port 16 211459 unique_id port 211459 remote_ip 10.8.0.98 211462 username farhad3 211462 mac 211462 bytes_out 0 211462 bytes_in 0 211462 station_ip 5.119.98.16 211462 port 16 211462 unique_id port 211462 remote_ip 10.8.0.98 211464 username farhad3 211464 mac 211464 bytes_out 0 211464 bytes_in 0 211464 station_ip 5.119.98.16 211464 port 16 211464 unique_id port 211464 remote_ip 10.8.0.98 211472 username barzegar 211472 mac 211472 bytes_out 0 211398 username morteza4424 211398 kill_reason Maximum check online fails reached 211398 mac 211398 bytes_out 0 211398 bytes_in 0 211398 station_ip 83.122.125.136 211398 port 30 211398 unique_id port 211403 username godarzi 211403 mac 211403 bytes_out 0 211403 bytes_in 0 211403 station_ip 5.202.65.237 211403 port 50 211403 unique_id port 211403 remote_ip 10.8.0.74 211407 username farhad3 211407 kill_reason Another user logged on this global unique id 211407 mac 211407 bytes_out 0 211407 bytes_in 0 211407 station_ip 5.120.32.161 211407 port 42 211407 unique_id port 211407 remote_ip 10.8.0.98 211412 username mehrpoyan101 211412 mac 211412 bytes_out 0 211412 bytes_in 0 211412 station_ip 5.119.109.247 211412 port 16 211412 unique_id port 211412 remote_ip 10.8.0.134 211413 username pourshad 211413 kill_reason Another user logged on this global unique id 211413 mac 211413 bytes_out 0 211413 bytes_in 0 211413 station_ip 5.120.54.100 211413 port 55 211413 unique_id port 211414 username mehrpoyan101 211414 mac 211414 bytes_out 166909 211414 bytes_in 917483 211414 station_ip 5.119.195.46 211414 port 60 211414 unique_id port 211414 remote_ip 10.8.0.134 211415 username mehrpoyan101 211415 mac 211415 bytes_out 0 211415 bytes_in 0 211415 station_ip 5.119.80.168 211415 port 16 211415 unique_id port 211415 remote_ip 10.8.0.134 211416 username motamedi9772 211416 mac 211416 bytes_out 0 211416 bytes_in 0 211416 station_ip 83.123.122.200 211416 port 37 211416 unique_id port 211420 username aminvpn 211420 kill_reason Another user logged on this global unique id 211420 mac 211420 bytes_out 0 211420 bytes_in 0 211420 station_ip 5.120.114.235 211420 port 19 211420 unique_id port 211420 remote_ip 10.8.0.58 211423 username mehrpoyan101 211423 mac 211423 bytes_out 26559 211423 bytes_in 43566 211423 station_ip 5.120.40.124 211423 port 19 211423 unique_id port 211423 remote_ip 10.8.0.134 211424 username pourshad 211424 kill_reason Another user logged on this global unique id 211424 mac 211424 bytes_out 0 211424 bytes_in 0 211424 station_ip 5.120.54.100 211424 port 55 211424 unique_id port 211425 username mosavi0713 211425 mac 211425 bytes_out 1633313 211425 bytes_in 23193471 211425 station_ip 83.122.225.69 211425 port 25 211425 unique_id port 211425 remote_ip 10.8.0.22 211433 username mehrpoyan101 211433 mac 211433 bytes_out 414813 211433 bytes_in 2694706 211433 station_ip 5.119.178.97 211433 port 16 211433 unique_id port 211433 remote_ip 10.8.0.134 211435 username mehrpoyan101 211435 mac 211435 bytes_out 80303 211435 bytes_in 139230 211435 station_ip 5.119.27.73 211435 port 19 211435 unique_id port 211435 remote_ip 10.8.0.134 211438 username pourshad 211438 kill_reason Another user logged on this global unique id 211438 mac 211438 bytes_out 0 211438 bytes_in 0 211438 station_ip 5.120.54.100 211438 port 55 211438 unique_id port 211442 username pourshad 211442 mac 211442 bytes_out 0 211442 bytes_in 0 211442 station_ip 5.120.54.100 211442 port 55 211442 unique_id port 211443 username soleymani5056 211443 mac 211443 bytes_out 92107 211443 bytes_in 145540 211443 station_ip 5.120.103.173 211443 port 25 211443 unique_id port 211443 remote_ip 10.8.0.246 211444 username pourshad 211444 mac 211444 bytes_out 3679639 211444 bytes_in 1640012 211444 station_ip 5.120.54.100 211444 port 16 211444 unique_id port 211444 remote_ip 10.8.0.122 211447 username yaghobi 211447 mac 211447 bytes_out 0 211447 bytes_in 0 211447 station_ip 37.129.238.12 211447 port 47 211447 unique_id port 211447 remote_ip 10.8.0.106 211439 bytes_in 1094998 211439 station_ip 5.120.17.168 211439 port 25 211439 unique_id port 211439 remote_ip 10.8.0.134 211440 username soleymani5056 211440 mac 211440 bytes_out 244323 211440 bytes_in 674494 211440 station_ip 5.120.128.78 211440 port 16 211440 unique_id port 211440 remote_ip 10.8.0.246 211441 username pourshad 211441 kill_reason Another user logged on this global unique id 211441 mac 211441 bytes_out 0 211441 bytes_in 0 211441 station_ip 5.120.54.100 211441 port 55 211441 unique_id port 211446 username barzegar 211446 mac 211446 bytes_out 874646 211446 bytes_in 9661306 211446 station_ip 5.120.55.42 211446 port 59 211446 unique_id port 211446 remote_ip 10.8.0.34 211449 username teymori5660 211449 kill_reason Another user logged on this global unique id 211449 mac 211449 bytes_out 0 211449 bytes_in 0 211449 station_ip 5.120.104.123 211449 port 50 211449 unique_id port 211449 remote_ip 10.8.0.230 211453 username farhad3 211453 mac 211453 bytes_out 4558325 211453 bytes_in 22629411 211453 station_ip 5.120.32.161 211453 port 42 211453 unique_id port 211453 remote_ip 10.8.0.98 211457 username rahim 211457 mac 211457 bytes_out 3159668 211457 bytes_in 15774310 211457 station_ip 5.120.19.251 211457 port 16 211457 unique_id port 211457 remote_ip 10.8.0.146 211461 username farhad3 211461 mac 211461 bytes_out 0 211461 bytes_in 0 211461 station_ip 5.119.98.16 211461 port 16 211461 unique_id port 211461 remote_ip 10.8.0.98 211463 username farhad3 211463 mac 211463 bytes_out 0 211463 bytes_in 0 211463 station_ip 5.119.98.16 211463 port 16 211463 unique_id port 211463 remote_ip 10.8.0.98 211466 username jafari 211466 mac 211466 bytes_out 79467 211466 bytes_in 67846 211466 station_ip 37.137.11.247 211466 port 50 211466 unique_id port 211466 remote_ip 10.8.0.110 211467 username hamid1430 211467 kill_reason Another user logged on this global unique id 211467 mac 211467 bytes_out 0 211467 bytes_in 0 211467 station_ip 5.119.169.16 211467 port 25 211467 unique_id port 211467 remote_ip 10.8.0.62 211469 username hamid1430 211469 mac 211469 bytes_out 0 211469 bytes_in 0 211469 station_ip 5.119.169.16 211469 port 25 211469 unique_id port 211470 username morteza4424 211470 kill_reason Another user logged on this global unique id 211470 mac 211470 bytes_out 0 211470 bytes_in 0 211470 station_ip 83.122.125.136 211470 port 33 211470 unique_id port 211471 username barzegar 211471 mac 211471 bytes_out 0 211471 bytes_in 0 211471 station_ip 5.120.55.42 211471 port 35 211471 unique_id port 211471 remote_ip 10.8.1.30 211479 username milan 211479 kill_reason Another user logged on this global unique id 211479 mac 211479 bytes_out 0 211479 bytes_in 0 211479 station_ip 5.119.220.159 211479 port 33 211479 unique_id port 211480 username jafari 211480 kill_reason Another user logged on this global unique id 211480 mac 211480 bytes_out 0 211480 bytes_in 0 211480 station_ip 37.137.28.84 211480 port 16 211480 unique_id port 211481 username barzegar 211481 mac 211481 bytes_out 0 211481 bytes_in 0 211481 station_ip 5.120.55.42 211481 port 55 211481 unique_id port 211481 remote_ip 10.8.0.34 211483 username farhad3 211483 kill_reason Another user logged on this global unique id 211483 mac 211483 bytes_out 0 211483 bytes_in 0 211483 station_ip 5.119.16.119 211483 port 50 211483 unique_id port 211483 remote_ip 10.8.0.98 211485 username milan 211485 kill_reason Another user logged on this global unique id 211485 mac 211485 bytes_out 0 211485 bytes_in 0 211485 station_ip 5.119.220.159 211485 port 33 211485 unique_id port 211451 username barzegar 211451 mac 211451 bytes_out 0 211451 bytes_in 0 211451 station_ip 5.120.55.42 211451 port 35 211451 unique_id port 211451 remote_ip 10.8.1.30 211454 username farhad3 211454 mac 211454 bytes_out 0 211454 bytes_in 0 211454 station_ip 5.120.32.161 211454 port 42 211454 unique_id port 211454 remote_ip 10.8.0.98 211455 username barzegar 211455 mac 211455 bytes_out 0 211455 bytes_in 0 211455 station_ip 5.120.55.42 211455 port 42 211455 unique_id port 211455 remote_ip 10.8.0.34 211460 username farhad3 211460 mac 211460 bytes_out 0 211460 bytes_in 0 211460 station_ip 5.119.98.16 211460 port 16 211460 unique_id port 211460 remote_ip 10.8.0.98 211465 username jafari 211465 kill_reason Maximum check online fails reached 211465 mac 211465 bytes_out 0 211465 bytes_in 0 211465 station_ip 37.137.11.247 211465 port 42 211465 unique_id port 211468 username barzegar 211468 mac 211468 bytes_out 0 211468 bytes_in 0 211468 station_ip 5.120.55.42 211468 port 55 211468 unique_id port 211468 remote_ip 10.8.0.34 211477 username milan 211477 kill_reason Another user logged on this global unique id 211477 mac 211477 bytes_out 0 211477 bytes_in 0 211477 station_ip 5.119.220.159 211477 port 33 211477 unique_id port 211478 username barzegar 211478 mac 211478 bytes_out 0 211478 bytes_in 0 211478 station_ip 5.120.55.42 211478 port 50 211478 unique_id port 211478 remote_ip 10.8.0.34 211482 username milan 211482 kill_reason Another user logged on this global unique id 211482 mac 211482 bytes_out 0 211482 bytes_in 0 211482 station_ip 5.119.220.159 211482 port 33 211482 unique_id port 211486 username alihajmalek 211486 mac 211486 bytes_out 0 211486 bytes_in 0 211486 station_ip 83.122.26.160 211486 port 47 211486 unique_id port 211488 username milan 211488 kill_reason Another user logged on this global unique id 211488 mac 211488 bytes_out 0 211488 bytes_in 0 211488 station_ip 5.119.220.159 211488 port 33 211488 unique_id port 211490 username barzegar 211490 mac 211490 bytes_out 0 211490 bytes_in 0 211490 station_ip 5.120.55.42 211490 port 25 211490 unique_id port 211490 remote_ip 10.8.0.34 211491 username farhad3 211491 kill_reason Another user logged on this global unique id 211491 mac 211491 bytes_out 0 211491 bytes_in 0 211491 station_ip 5.119.16.119 211491 port 50 211491 unique_id port 211494 username milan 211494 kill_reason Another user logged on this global unique id 211494 mac 211494 bytes_out 0 211494 bytes_in 0 211494 station_ip 5.119.220.159 211494 port 33 211494 unique_id port 211496 username jafari 211496 kill_reason Another user logged on this global unique id 211496 mac 211496 bytes_out 0 211496 bytes_in 0 211496 station_ip 37.137.28.84 211496 port 16 211496 unique_id port 211496 remote_ip 10.8.0.110 211498 username milan 211498 kill_reason Another user logged on this global unique id 211498 mac 211498 bytes_out 0 211498 bytes_in 0 211498 station_ip 5.119.220.159 211498 port 33 211498 unique_id port 211509 username mostafa_es78 211509 mac 211509 bytes_out 0 211509 bytes_in 0 211509 station_ip 113.203.33.51 211509 port 16 211509 unique_id port 211509 remote_ip 10.8.0.42 211513 username barzegar 211513 mac 211513 bytes_out 0 211513 bytes_in 0 211513 station_ip 5.120.55.42 211513 port 16 211513 unique_id port 211513 remote_ip 10.8.0.34 211514 username barzegar 211514 mac 211514 bytes_out 0 211514 bytes_in 0 211514 station_ip 5.120.55.42 211514 port 35 211514 unique_id port 211514 remote_ip 10.8.1.30 211515 username barzegar 211472 bytes_in 0 211472 station_ip 5.120.55.42 211472 port 55 211472 unique_id port 211472 remote_ip 10.8.0.34 211473 username milan 211473 kill_reason Another user logged on this global unique id 211473 mac 211473 bytes_out 0 211473 bytes_in 0 211473 station_ip 5.119.220.159 211473 port 33 211473 unique_id port 211474 username jafari 211474 kill_reason Another user logged on this global unique id 211474 mac 211474 bytes_out 0 211474 bytes_in 0 211474 station_ip 37.137.28.84 211474 port 16 211474 unique_id port 211474 remote_ip 10.8.0.110 211475 username alihajmalek 211475 kill_reason Another user logged on this global unique id 211475 mac 211475 bytes_out 0 211475 bytes_in 0 211475 station_ip 83.122.26.160 211475 port 47 211475 unique_id port 211475 remote_ip 10.8.0.250 211476 username farhad3 211476 mac 211476 bytes_out 3828725 211476 bytes_in 38516230 211476 station_ip 5.119.16.119 211476 port 50 211476 unique_id port 211476 remote_ip 10.8.0.98 211484 username barzegar 211484 mac 211484 bytes_out 0 211484 bytes_in 0 211484 station_ip 5.120.55.42 211484 port 35 211484 unique_id port 211484 remote_ip 10.8.1.30 211492 username milan 211492 kill_reason Another user logged on this global unique id 211492 mac 211492 bytes_out 0 211492 bytes_in 0 211492 station_ip 5.119.220.159 211492 port 33 211492 unique_id port 211495 username farhad3 211495 mac 211495 bytes_out 0 211495 bytes_in 0 211495 station_ip 5.119.16.119 211495 port 50 211495 unique_id port 211499 username barzegar 211499 mac 211499 bytes_out 0 211499 bytes_in 0 211499 station_ip 5.120.55.42 211499 port 16 211499 unique_id port 211499 remote_ip 10.8.0.34 211501 username milan 211501 kill_reason Another user logged on this global unique id 211501 mac 211501 bytes_out 0 211501 bytes_in 0 211501 station_ip 5.119.220.159 211501 port 33 211501 unique_id port 211503 username barzegar 211503 mac 211503 bytes_out 0 211503 bytes_in 0 211503 station_ip 5.120.55.42 211503 port 16 211503 unique_id port 211503 remote_ip 10.8.0.34 211504 username kalantary6037 211504 mac 211504 bytes_out 0 211504 bytes_in 0 211504 station_ip 37.129.116.22 211504 port 35 211504 unique_id port 211504 remote_ip 10.8.1.98 211506 username barzegar 211506 mac 211506 bytes_out 0 211506 bytes_in 0 211506 station_ip 5.120.55.42 211506 port 35 211506 unique_id port 211506 remote_ip 10.8.1.30 211507 username barzegar 211507 mac 211507 bytes_out 0 211507 bytes_in 0 211507 station_ip 5.120.55.42 211507 port 35 211507 unique_id port 211507 remote_ip 10.8.1.30 211510 username motamedi9772 211510 mac 211510 bytes_out 0 211510 bytes_in 0 211510 station_ip 83.123.39.212 211510 port 16 211510 unique_id port 211510 remote_ip 10.8.0.86 211511 username barzegar 211511 mac 211511 bytes_out 0 211511 bytes_in 0 211511 station_ip 5.120.55.42 211511 port 35 211511 unique_id port 211511 remote_ip 10.8.1.30 211512 username barzegar 211512 mac 211512 bytes_out 0 211512 bytes_in 0 211512 station_ip 5.120.55.42 211512 port 35 211512 unique_id port 211512 remote_ip 10.8.1.30 211515 mac 211515 bytes_out 0 211515 bytes_in 0 211515 station_ip 5.120.55.42 211515 port 35 211515 unique_id port 211515 remote_ip 10.8.1.30 211519 username barzegar 211519 mac 211519 bytes_out 0 211519 bytes_in 0 211519 station_ip 5.120.55.42 211519 port 35 211519 unique_id port 211519 remote_ip 10.8.1.30 211520 username barzegar 211520 mac 211520 bytes_out 0 211520 bytes_in 0 211520 station_ip 5.120.55.42 211520 port 35 211487 username mostafa_es78 211487 mac 211487 bytes_out 2207393 211487 bytes_in 18641256 211487 station_ip 178.236.35.96 211487 port 25 211487 unique_id port 211487 remote_ip 10.8.0.42 211489 username jafari 211489 mac 211489 bytes_out 0 211489 bytes_in 0 211489 station_ip 37.137.28.84 211489 port 16 211489 unique_id port 211493 username barzegar 211493 mac 211493 bytes_out 0 211493 bytes_in 0 211493 station_ip 5.120.55.42 211493 port 35 211493 unique_id port 211493 remote_ip 10.8.1.30 211497 username jafari 211497 mac 211497 bytes_out 0 211497 bytes_in 0 211497 station_ip 37.137.28.84 211497 port 16 211497 unique_id port 211500 username barzegar 211500 mac 211500 bytes_out 0 211500 bytes_in 0 211500 station_ip 5.120.55.42 211500 port 35 211500 unique_id port 211500 remote_ip 10.8.1.30 211502 username motamedi9772 211502 kill_reason Another user logged on this global unique id 211502 mac 211502 bytes_out 0 211502 bytes_in 0 211502 station_ip 83.123.122.200 211502 port 19 211502 unique_id port 211502 remote_ip 10.8.0.86 211505 username motamedi9772 211505 mac 211505 bytes_out 0 211505 bytes_in 0 211505 station_ip 83.123.122.200 211505 port 19 211505 unique_id port 211508 username barzegar 211508 mac 211508 bytes_out 0 211508 bytes_in 0 211508 station_ip 5.120.55.42 211508 port 35 211508 unique_id port 211508 remote_ip 10.8.1.30 211516 username barzegar 211516 mac 211516 bytes_out 0 211516 bytes_in 0 211516 station_ip 5.120.55.42 211516 port 16 211516 unique_id port 211516 remote_ip 10.8.0.34 211517 username barzegar 211517 mac 211517 bytes_out 0 211517 bytes_in 0 211517 station_ip 5.120.55.42 211517 port 16 211517 unique_id port 211517 remote_ip 10.8.0.34 211518 username barzegar 211518 mac 211518 bytes_out 0 211518 bytes_in 0 211518 station_ip 5.120.55.42 211518 port 16 211518 unique_id port 211518 remote_ip 10.8.0.34 211520 unique_id port 211520 remote_ip 10.8.1.30 211521 username barzegar 211521 mac 211521 bytes_out 0 211521 bytes_in 0 211521 station_ip 5.120.55.42 211521 port 35 211521 unique_id port 211521 remote_ip 10.8.1.30 211522 username barzegar 211522 mac 211522 bytes_out 0 211522 bytes_in 0 211522 station_ip 5.120.55.42 211522 port 16 211522 unique_id port 211522 remote_ip 10.8.0.34 211523 username barzegar 211523 mac 211523 bytes_out 0 211523 bytes_in 0 211523 station_ip 5.120.55.42 211523 port 35 211523 unique_id port 211523 remote_ip 10.8.1.30 211524 username barzegar 211524 mac 211524 bytes_out 0 211524 bytes_in 0 211524 station_ip 5.120.55.42 211524 port 16 211524 unique_id port 211524 remote_ip 10.8.0.34 211525 username barzegar 211525 mac 211525 bytes_out 0 211525 bytes_in 0 211525 station_ip 5.120.55.42 211525 port 19 211525 unique_id port 211525 remote_ip 10.8.0.34 211526 username rahim 211526 mac 211526 bytes_out 450353 211526 bytes_in 4695521 211526 station_ip 5.119.97.200 211526 port 16 211526 unique_id port 211526 remote_ip 10.8.0.146 211527 username rahim 211527 mac 211527 bytes_out 1295765 211527 bytes_in 19927915 211527 station_ip 5.119.97.200 211527 port 19 211527 unique_id port 211527 remote_ip 10.8.0.146 211528 username barzegar 211528 mac 211528 bytes_out 0 211528 bytes_in 0 211528 station_ip 5.120.55.42 211528 port 35 211528 unique_id port 211528 remote_ip 10.8.1.30 211529 username naeimeh 211529 mac 211529 bytes_out 0 211529 bytes_in 0 211529 station_ip 37.129.244.145 211529 port 16 211529 unique_id port 211529 remote_ip 10.8.0.166 211530 username barzegar 211530 mac 211530 bytes_out 0 211530 bytes_in 0 211530 station_ip 5.120.55.42 211530 port 16 211530 unique_id port 211530 remote_ip 10.8.0.34 211531 username barzegar 211531 mac 211531 bytes_out 0 211531 bytes_in 0 211531 station_ip 5.120.55.42 211531 port 35 211531 unique_id port 211531 remote_ip 10.8.1.30 211532 username barzegar 211532 mac 211532 bytes_out 0 211532 bytes_in 0 211532 station_ip 5.120.55.42 211532 port 19 211532 unique_id port 211532 remote_ip 10.8.0.34 211536 username dortaj3792 211536 mac 211536 bytes_out 0 211536 bytes_in 0 211536 station_ip 5.120.76.159 211536 port 16 211536 unique_id port 211536 remote_ip 10.8.0.10 211537 username barzegar 211537 mac 211537 bytes_out 0 211537 bytes_in 0 211537 station_ip 5.120.55.42 211537 port 16 211537 unique_id port 211537 remote_ip 10.8.0.34 211542 username barzegar 211542 mac 211542 bytes_out 0 211542 bytes_in 0 211542 station_ip 5.120.55.42 211542 port 16 211542 unique_id port 211542 remote_ip 10.8.0.34 211545 username barzegar 211545 mac 211545 bytes_out 0 211545 bytes_in 0 211545 station_ip 5.120.55.42 211545 port 16 211545 unique_id port 211545 remote_ip 10.8.0.34 211558 username barzegar 211558 mac 211558 bytes_out 0 211558 bytes_in 0 211558 station_ip 5.120.55.42 211558 port 19 211558 unique_id port 211558 remote_ip 10.8.0.34 211559 username dortaj3792 211559 kill_reason Another user logged on this global unique id 211559 mac 211559 bytes_out 0 211559 bytes_in 0 211559 station_ip 5.120.76.159 211559 port 16 211559 unique_id port 211560 username hamid1430 211560 mac 211560 bytes_out 0 211560 bytes_in 0 211560 station_ip 83.123.208.108 211560 port 35 211560 unique_id port 211560 remote_ip 10.8.1.250 211564 username barzegar 211564 mac 211564 bytes_out 0 211564 bytes_in 0 211564 station_ip 5.120.55.42 211564 port 35 211564 unique_id port 211564 remote_ip 10.8.1.30 211570 username nekheei 211570 mac 211570 bytes_out 0 211570 bytes_in 0 211570 station_ip 5.120.149.132 211570 port 19 211570 unique_id port 211584 username yaghobi 211584 mac 211584 bytes_out 1259594 211584 bytes_in 19689043 211584 station_ip 37.129.206.152 211584 port 46 211584 unique_id port 211584 remote_ip 10.8.0.106 211585 username jafari 211585 kill_reason Another user logged on this global unique id 211585 mac 211585 bytes_out 0 211585 bytes_in 0 211585 station_ip 93.114.30.145 211585 port 16 211585 unique_id port 211588 username barzegar 211588 mac 211588 bytes_out 7381 211588 bytes_in 12931 211588 station_ip 5.120.55.42 211588 port 46 211588 unique_id port 211588 remote_ip 10.8.0.34 211595 username milan 211595 kill_reason Another user logged on this global unique id 211595 mac 211595 bytes_out 0 211595 bytes_in 0 211595 station_ip 5.119.220.159 211595 port 33 211595 unique_id port 211596 username barzegar 211596 mac 211596 bytes_out 0 211596 bytes_in 0 211596 station_ip 5.120.55.42 211596 port 50 211596 unique_id port 211596 remote_ip 10.8.0.34 211600 username barzegar 211600 mac 211600 bytes_out 0 211600 bytes_in 0 211600 station_ip 5.120.55.42 211600 port 50 211600 unique_id port 211600 remote_ip 10.8.0.34 211601 username milan 211601 kill_reason Another user logged on this global unique id 211601 mac 211601 bytes_out 0 211601 bytes_in 0 211601 station_ip 5.119.220.159 211601 port 33 211601 unique_id port 211607 username teymori5660 211607 kill_reason Another user logged on this global unique id 211533 username naeimeh 211533 mac 211533 bytes_out 3440292 211533 bytes_in 44944145 211533 station_ip 37.129.108.88 211533 port 16 211533 unique_id port 211533 remote_ip 10.8.0.166 211535 username barzegar 211535 mac 211535 bytes_out 0 211535 bytes_in 0 211535 station_ip 5.120.55.42 211535 port 47 211535 unique_id port 211535 remote_ip 10.8.0.34 211538 username barzegar 211538 mac 211538 bytes_out 0 211538 bytes_in 0 211538 station_ip 5.120.55.42 211538 port 16 211538 unique_id port 211538 remote_ip 10.8.0.34 211539 username mosavi0713 211539 kill_reason Another user logged on this global unique id 211539 mac 211539 bytes_out 0 211539 bytes_in 0 211539 station_ip 83.122.228.93 211539 port 25 211539 unique_id port 211539 remote_ip 10.8.0.22 211540 username barzegar 211540 mac 211540 bytes_out 0 211540 bytes_in 0 211540 station_ip 5.120.55.42 211540 port 16 211540 unique_id port 211540 remote_ip 10.8.0.34 211543 username khademi 211543 mac 211543 bytes_out 0 211543 bytes_in 0 211543 station_ip 37.129.42.216 211543 port 46 211543 unique_id port 211544 username mohammadjavad 211544 mac 211544 bytes_out 0 211544 bytes_in 0 211544 station_ip 37.129.196.144 211544 port 16 211544 unique_id port 211544 remote_ip 10.8.0.138 211549 username barzegar 211549 mac 211549 bytes_out 0 211549 bytes_in 0 211549 station_ip 5.120.55.42 211549 port 19 211549 unique_id port 211549 remote_ip 10.8.0.34 211552 username yaghobi 211552 mac 211552 bytes_out 1422559 211552 bytes_in 18527527 211552 station_ip 37.129.240.96 211552 port 25 211552 unique_id port 211552 remote_ip 10.8.0.106 211553 username barzegar 211553 mac 211553 bytes_out 0 211553 bytes_in 0 211553 station_ip 5.120.55.42 211553 port 16 211553 unique_id port 211553 remote_ip 10.8.0.34 211555 username barzegar 211555 mac 211555 bytes_out 0 211555 bytes_in 0 211555 station_ip 5.120.55.42 211555 port 19 211555 unique_id port 211555 remote_ip 10.8.0.34 211561 username dortaj3792 211561 kill_reason Another user logged on this global unique id 211561 mac 211561 bytes_out 0 211561 bytes_in 0 211561 station_ip 5.120.76.159 211561 port 16 211561 unique_id port 211562 username sekonji0496 211562 kill_reason Another user logged on this global unique id 211562 mac 211562 bytes_out 0 211562 bytes_in 0 211562 station_ip 83.123.97.224 211562 port 46 211562 unique_id port 211562 remote_ip 10.8.0.70 211563 username sekonji0496 211563 mac 211563 bytes_out 0 211563 bytes_in 0 211563 station_ip 83.123.97.224 211563 port 46 211563 unique_id port 211565 username nekheei 211565 kill_reason Another user logged on this global unique id 211565 mac 211565 bytes_out 0 211565 bytes_in 0 211565 station_ip 5.120.149.132 211565 port 19 211565 unique_id port 211565 remote_ip 10.8.0.154 211566 username kalantary6037 211566 mac 211566 bytes_out 0 211566 bytes_in 0 211566 station_ip 37.129.12.126 211566 port 46 211566 unique_id port 211566 remote_ip 10.8.0.18 211571 username barzegar 211571 mac 211571 bytes_out 0 211571 bytes_in 0 211571 station_ip 5.120.55.42 211571 port 16 211571 unique_id port 211571 remote_ip 10.8.0.34 211572 username barzegar 211572 mac 211572 bytes_out 0 211572 bytes_in 0 211572 station_ip 5.120.55.42 211572 port 16 211572 unique_id port 211572 remote_ip 10.8.0.34 211573 username milan 211573 kill_reason Another user logged on this global unique id 211573 mac 211573 bytes_out 0 211573 bytes_in 0 211573 station_ip 5.119.220.159 211573 port 33 211573 unique_id port 211574 username barzegar 211534 username houshang 211534 mac 211534 bytes_out 1629342 211534 bytes_in 3435391 211534 station_ip 5.119.29.73 211534 port 19 211534 unique_id port 211534 remote_ip 10.8.0.158 211541 username mosavi0713 211541 mac 211541 bytes_out 0 211541 bytes_in 0 211541 station_ip 83.122.228.93 211541 port 25 211541 unique_id port 211546 username iranmanesh4443 211546 mac 211546 bytes_out 369709 211546 bytes_in 2671352 211546 station_ip 5.119.240.238 211546 port 16 211546 unique_id port 211546 remote_ip 10.8.0.198 211547 username barzegar 211547 mac 211547 bytes_out 0 211547 bytes_in 0 211547 station_ip 5.120.55.42 211547 port 35 211547 unique_id port 211547 remote_ip 10.8.1.30 211548 username alipour1506 211548 kill_reason Another user logged on this global unique id 211548 mac 211548 bytes_out 0 211548 bytes_in 0 211548 station_ip 94.176.8.78 211548 port 41 211548 unique_id port 211550 username mohammadjavad 211550 mac 211550 bytes_out 843109 211550 bytes_in 14612633 211550 station_ip 37.129.201.236 211550 port 19 211550 unique_id port 211550 remote_ip 10.8.0.138 211551 username dortaj3792 211551 mac 211551 bytes_out 0 211551 bytes_in 0 211551 station_ip 5.120.76.159 211551 port 16 211551 unique_id port 211551 remote_ip 10.8.0.10 211554 username dortaj3792 211554 kill_reason Another user logged on this global unique id 211554 mac 211554 bytes_out 0 211554 bytes_in 0 211554 station_ip 5.120.76.159 211554 port 16 211554 unique_id port 211554 remote_ip 10.8.0.10 211556 username dortaj3792 211556 kill_reason Another user logged on this global unique id 211556 mac 211556 bytes_out 0 211556 bytes_in 0 211556 station_ip 5.120.76.159 211556 port 16 211556 unique_id port 211557 username mohammadjavad 211557 mac 211557 bytes_out 710962 211557 bytes_in 9654377 211557 station_ip 37.129.128.96 211557 port 19 211557 unique_id port 211557 remote_ip 10.8.0.138 211567 username dortaj3792 211567 mac 211567 bytes_out 0 211567 bytes_in 0 211567 station_ip 5.120.76.159 211567 port 16 211567 unique_id port 211568 username barzegar 211568 mac 211568 bytes_out 0 211568 bytes_in 0 211568 station_ip 5.120.55.42 211568 port 16 211568 unique_id port 211568 remote_ip 10.8.0.34 211569 username jafari 211569 mac 211569 bytes_out 464992 211569 bytes_in 856528 211569 station_ip 89.32.102.41 211569 port 47 211569 unique_id port 211569 remote_ip 10.8.0.110 211576 username barzegar 211576 mac 211576 bytes_out 0 211576 bytes_in 0 211576 station_ip 5.120.55.42 211576 port 36 211576 unique_id port 211576 remote_ip 10.8.1.30 211577 username milan 211577 kill_reason Another user logged on this global unique id 211577 mac 211577 bytes_out 0 211577 bytes_in 0 211577 station_ip 5.119.220.159 211577 port 33 211577 unique_id port 211579 username jafari 211579 kill_reason Another user logged on this global unique id 211579 mac 211579 bytes_out 0 211579 bytes_in 0 211579 station_ip 93.114.30.145 211579 port 16 211579 unique_id port 211579 remote_ip 10.8.0.110 211582 username kalantary6037 211582 mac 211582 bytes_out 0 211582 bytes_in 0 211582 station_ip 83.122.134.54 211582 port 46 211582 unique_id port 211582 remote_ip 10.8.0.18 211589 username barzegar 211589 mac 211589 bytes_out 0 211589 bytes_in 0 211589 station_ip 5.120.55.42 211589 port 46 211589 unique_id port 211589 remote_ip 10.8.0.34 211591 username jafari 211591 kill_reason Another user logged on this global unique id 211591 mac 211591 bytes_out 0 211591 bytes_in 0 211591 station_ip 93.114.30.145 211591 port 16 211591 unique_id port 211574 kill_reason Maximum check online fails reached 211574 mac 211574 bytes_out 0 211574 bytes_in 0 211574 station_ip 5.120.55.42 211574 port 35 211574 unique_id port 211575 username jafari 211575 mac 211575 bytes_out 0 211575 bytes_in 0 211575 station_ip 37.137.44.237 211575 port 16 211575 unique_id port 211575 remote_ip 10.8.0.110 211578 username milan 211578 kill_reason Another user logged on this global unique id 211578 mac 211578 bytes_out 0 211578 bytes_in 0 211578 station_ip 5.119.220.159 211578 port 33 211578 unique_id port 211580 username mohammadjavad 211580 mac 211580 bytes_out 0 211580 bytes_in 0 211580 station_ip 37.129.253.12 211580 port 46 211580 unique_id port 211580 remote_ip 10.8.0.138 211581 username barzegar 211581 mac 211581 bytes_out 339372 211581 bytes_in 39076 211581 station_ip 5.120.55.42 211581 port 36 211581 unique_id port 211581 remote_ip 10.8.1.30 211583 username mehrpoyan101 211583 mac 211583 bytes_out 0 211583 bytes_in 0 211583 station_ip 5.120.21.173 211583 port 47 211583 unique_id port 211583 remote_ip 10.8.0.134 211586 username milan 211586 kill_reason Another user logged on this global unique id 211586 mac 211586 bytes_out 0 211586 bytes_in 0 211586 station_ip 5.119.220.159 211586 port 33 211586 unique_id port 211587 username barzegar 211587 mac 211587 bytes_out 303219 211587 bytes_in 266334 211587 station_ip 5.120.55.42 211587 port 46 211587 unique_id port 211587 remote_ip 10.8.0.34 211590 username barzegar 211590 mac 211590 bytes_out 0 211590 bytes_in 0 211590 station_ip 5.120.55.42 211590 port 46 211590 unique_id port 211590 remote_ip 10.8.0.34 211593 username barzegar 211593 mac 211593 bytes_out 0 211593 bytes_in 0 211593 station_ip 5.120.55.42 211593 port 46 211593 unique_id port 211593 remote_ip 10.8.0.34 211598 username jafari 211598 kill_reason Another user logged on this global unique id 211598 mac 211598 bytes_out 0 211598 bytes_in 0 211598 station_ip 93.114.30.145 211598 port 16 211598 unique_id port 211602 username dortaj3792 211602 kill_reason Another user logged on this global unique id 211602 mac 211602 bytes_out 0 211602 bytes_in 0 211602 station_ip 5.120.76.159 211602 port 46 211602 unique_id port 211604 username houshang 211604 mac 211604 bytes_out 0 211604 bytes_in 0 211604 station_ip 5.119.29.73 211604 port 59 211604 unique_id port 211604 remote_ip 10.8.0.158 211605 username jafari 211605 kill_reason Another user logged on this global unique id 211605 mac 211605 bytes_out 0 211605 bytes_in 0 211605 station_ip 93.114.30.145 211605 port 16 211605 unique_id port 211609 username teymori5660 211609 kill_reason Another user logged on this global unique id 211609 mac 211609 bytes_out 0 211609 bytes_in 0 211609 station_ip 5.120.104.123 211609 port 50 211609 unique_id port 211610 username barzegar 211610 mac 211610 bytes_out 0 211610 bytes_in 0 211610 station_ip 5.120.55.42 211610 port 37 211610 unique_id port 211610 remote_ip 10.8.1.30 211612 username barzegar 211612 mac 211612 bytes_out 0 211612 bytes_in 0 211612 station_ip 5.120.55.42 211612 port 37 211612 unique_id port 211612 remote_ip 10.8.1.30 211618 username sabaghnezhad 211618 mac 211618 bytes_out 2925438 211618 bytes_in 9898680 211618 station_ip 83.122.125.38 211618 port 58 211618 unique_id port 211618 remote_ip 10.8.0.94 211623 username farhad3 211623 mac 211623 bytes_out 1230467 211623 bytes_in 13687323 211623 station_ip 5.119.16.119 211623 port 55 211623 unique_id port 211623 remote_ip 10.8.0.98 211626 username milan 211592 username barzegar 211592 mac 211592 bytes_out 0 211592 bytes_in 0 211592 station_ip 5.120.55.42 211592 port 46 211592 unique_id port 211592 remote_ip 10.8.0.34 211594 username barzegar 211594 mac 211594 bytes_out 0 211594 bytes_in 0 211594 station_ip 5.120.55.42 211594 port 47 211594 unique_id port 211594 remote_ip 10.8.0.34 211597 username barzegar 211597 mac 211597 bytes_out 0 211597 bytes_in 0 211597 station_ip 5.120.55.42 211597 port 50 211597 unique_id port 211597 remote_ip 10.8.0.34 211599 username dortaj3792 211599 kill_reason Another user logged on this global unique id 211599 mac 211599 bytes_out 0 211599 bytes_in 0 211599 station_ip 5.120.76.159 211599 port 46 211599 unique_id port 211599 remote_ip 10.8.0.10 211603 username barzegar 211603 kill_reason Maximum check online fails reached 211603 mac 211603 bytes_out 0 211603 bytes_in 0 211603 station_ip 5.120.55.42 211603 port 36 211603 unique_id port 211606 username barzegar 211606 mac 211606 bytes_out 0 211606 bytes_in 0 211606 station_ip 5.120.55.42 211606 port 59 211606 unique_id port 211606 remote_ip 10.8.0.34 211608 username dortaj3792 211608 kill_reason Another user logged on this global unique id 211608 mac 211608 bytes_out 0 211608 bytes_in 0 211608 station_ip 5.120.76.159 211608 port 46 211608 unique_id port 211613 username farhad3 211613 mac 211613 bytes_out 808701 211613 bytes_in 1580673 211613 station_ip 5.119.16.119 211613 port 59 211613 unique_id port 211613 remote_ip 10.8.0.98 211619 username teymori5660 211619 kill_reason Another user logged on this global unique id 211619 mac 211619 bytes_out 0 211619 bytes_in 0 211619 station_ip 5.120.104.123 211619 port 50 211619 unique_id port 211622 username sabaghnezhad 211622 mac 211622 bytes_out 42583 211622 bytes_in 65629 211622 station_ip 83.122.125.38 211622 port 58 211622 unique_id port 211622 remote_ip 10.8.0.94 211627 username farhad3 211627 mac 211627 bytes_out 81581 211627 bytes_in 519602 211627 station_ip 5.119.16.119 211627 port 55 211627 unique_id port 211627 remote_ip 10.8.0.98 211628 username teymori5660 211628 kill_reason Another user logged on this global unique id 211628 mac 211628 bytes_out 0 211628 bytes_in 0 211628 station_ip 5.120.104.123 211628 port 50 211628 unique_id port 211630 username nasiripour0935 211630 kill_reason Another user logged on this global unique id 211630 mac 211630 bytes_out 0 211630 bytes_in 0 211630 station_ip 83.123.60.17 211630 port 58 211630 unique_id port 211630 remote_ip 10.8.0.238 211631 username jafari 211631 kill_reason Another user logged on this global unique id 211631 mac 211631 bytes_out 0 211631 bytes_in 0 211631 station_ip 93.114.30.145 211631 port 16 211631 unique_id port 211632 username aminvpnpc 211632 mac 211632 bytes_out 0 211632 bytes_in 0 211632 station_ip 5.119.61.34 211632 port 1 211632 unique_id port 211632 remote_ip 10.8.0.2 211633 username soleymani5056 211633 mac 211633 bytes_out 135000 211633 bytes_in 421358 211633 station_ip 5.119.225.144 211633 port 59 211633 unique_id port 211633 remote_ip 10.8.0.246 211635 username sabaghnezhad 211635 mac 211635 bytes_out 0 211635 bytes_in 0 211635 station_ip 83.122.125.38 211635 port 46 211635 unique_id port 211635 remote_ip 10.8.0.94 211637 username sekonji0496 211637 mac 211637 bytes_out 0 211637 bytes_in 0 211637 station_ip 83.123.97.224 211637 port 59 211637 unique_id port 211637 remote_ip 10.8.0.70 211638 username mohammadjavad 211638 mac 211638 bytes_out 779503 211638 bytes_in 11189955 211638 station_ip 37.129.252.124 211638 port 61 211607 mac 211607 bytes_out 0 211607 bytes_in 0 211607 station_ip 5.120.104.123 211607 port 50 211607 unique_id port 211607 remote_ip 10.8.0.230 211611 username mohammadjavad 211611 mac 211611 bytes_out 0 211611 bytes_in 0 211611 station_ip 37.129.201.44 211611 port 55 211611 unique_id port 211611 remote_ip 10.8.0.138 211614 username jafari 211614 kill_reason Another user logged on this global unique id 211614 mac 211614 bytes_out 0 211614 bytes_in 0 211614 station_ip 93.114.30.145 211614 port 16 211614 unique_id port 211615 username milan 211615 kill_reason Another user logged on this global unique id 211615 mac 211615 bytes_out 0 211615 bytes_in 0 211615 station_ip 5.119.220.159 211615 port 33 211615 unique_id port 211616 username dortaj3792 211616 kill_reason Another user logged on this global unique id 211616 mac 211616 bytes_out 0 211616 bytes_in 0 211616 station_ip 5.120.76.159 211616 port 46 211616 unique_id port 211617 username farhad3 211617 mac 211617 bytes_out 0 211617 bytes_in 0 211617 station_ip 5.119.16.119 211617 port 55 211617 unique_id port 211617 remote_ip 10.8.0.98 211620 username farhad3 211620 mac 211620 bytes_out 1056886 211620 bytes_in 7188115 211620 station_ip 5.119.16.119 211620 port 55 211620 unique_id port 211620 remote_ip 10.8.0.98 211621 username dortaj3792 211621 mac 211621 bytes_out 0 211621 bytes_in 0 211621 station_ip 5.120.76.159 211621 port 46 211621 unique_id port 211624 username jafari 211624 kill_reason Another user logged on this global unique id 211624 mac 211624 bytes_out 0 211624 bytes_in 0 211624 station_ip 93.114.30.145 211624 port 16 211624 unique_id port 211625 username ahmadi1 211625 mac 211625 bytes_out 197828 211625 bytes_in 1783157 211625 station_ip 83.123.88.190 211625 port 59 211625 unique_id port 211625 remote_ip 10.8.0.114 211634 username jafari 211634 mac 211634 bytes_out 0 211634 bytes_in 0 211634 station_ip 93.114.30.145 211634 port 16 211634 unique_id port 211641 username farhad3 211641 kill_reason Another user logged on this global unique id 211641 mac 211641 bytes_out 0 211641 bytes_in 0 211641 station_ip 5.119.16.119 211641 port 55 211641 unique_id port 211641 remote_ip 10.8.0.98 211647 username mehrpoyan101 211647 kill_reason Maximum check online fails reached 211647 mac 211647 bytes_out 0 211647 bytes_in 0 211647 station_ip 5.120.164.11 211647 port 55 211647 unique_id port 211649 username mehrpoyan101 211649 mac 211649 bytes_out 0 211649 bytes_in 0 211649 station_ip 5.120.164.11 211649 port 46 211649 unique_id port 211649 remote_ip 10.8.0.134 211651 username barzegar 211651 mac 211651 bytes_out 0 211651 bytes_in 0 211651 station_ip 5.120.55.42 211651 port 58 211651 unique_id port 211651 remote_ip 10.8.0.34 211652 username yaghobi 211652 mac 211652 bytes_out 537957 211652 bytes_in 6416349 211652 station_ip 37.129.200.40 211652 port 62 211652 unique_id port 211652 remote_ip 10.8.0.106 211654 username nilufarrajaei 211654 kill_reason Another user logged on this global unique id 211654 mac 211654 bytes_out 0 211654 bytes_in 0 211654 station_ip 83.123.181.165 211654 port 25 211654 unique_id port 211658 username nasiripour0935 211658 mac 211658 bytes_out 0 211658 bytes_in 0 211658 station_ip 83.123.60.17 211658 port 61 211658 unique_id port 211658 remote_ip 10.8.0.238 211660 username aminvpnpc 211660 mac 211660 bytes_out 0 211660 bytes_in 0 211660 station_ip 5.119.61.34 211660 port 1 211660 unique_id port 211660 remote_ip 10.8.0.2 211662 username aminvpnipad 211662 mac 211626 kill_reason Another user logged on this global unique id 211626 mac 211626 bytes_out 0 211626 bytes_in 0 211626 station_ip 5.119.220.159 211626 port 33 211626 unique_id port 211629 username barzegar 211629 mac 211629 bytes_out 0 211629 bytes_in 0 211629 station_ip 5.120.55.42 211629 port 37 211629 unique_id port 211629 remote_ip 10.8.1.30 211636 username nilufarrajaei 211636 kill_reason Another user logged on this global unique id 211636 mac 211636 bytes_out 0 211636 bytes_in 0 211636 station_ip 83.123.181.165 211636 port 25 211636 unique_id port 211636 remote_ip 10.8.0.50 211640 username barzegar 211640 mac 211640 bytes_out 0 211640 bytes_in 0 211640 station_ip 5.120.55.42 211640 port 16 211640 unique_id port 211640 remote_ip 10.8.0.34 211643 username nilufarrajaei 211643 kill_reason Another user logged on this global unique id 211643 mac 211643 bytes_out 0 211643 bytes_in 0 211643 station_ip 83.123.181.165 211643 port 25 211643 unique_id port 211644 username barzegar 211644 mac 211644 bytes_out 0 211644 bytes_in 0 211644 station_ip 5.120.55.42 211644 port 46 211644 unique_id port 211644 remote_ip 10.8.0.34 211646 username mehrpoyan101 211646 mac 211646 bytes_out 0 211646 bytes_in 0 211646 station_ip 5.120.164.11 211646 port 46 211646 unique_id port 211646 remote_ip 10.8.0.134 211653 username mehrpoyan101 211653 mac 211653 bytes_out 55956 211653 bytes_in 49836 211653 station_ip 5.120.62.63 211653 port 61 211653 unique_id port 211653 remote_ip 10.8.0.134 211657 username kharazmi2920 211657 mac 211657 bytes_out 0 211657 bytes_in 0 211657 station_ip 83.123.248.208 211657 port 46 211657 unique_id port 211657 remote_ip 10.8.0.54 211659 username barzegar 211659 mac 211659 bytes_out 0 211659 bytes_in 0 211659 station_ip 5.120.55.42 211659 port 46 211659 unique_id port 211659 remote_ip 10.8.0.34 211661 username mehrpoyan101 211661 mac 211661 bytes_out 0 211661 bytes_in 0 211661 station_ip 5.120.62.63 211661 port 62 211661 unique_id port 211661 remote_ip 10.8.0.134 211663 username aminvpns6 211663 mac 211663 bytes_out 0 211663 bytes_in 0 211663 station_ip 5.119.234.254 211663 port 61 211663 unique_id port 211663 remote_ip 10.8.0.234 211667 username mosi 211667 mac 211667 bytes_out 0 211667 bytes_in 0 211667 station_ip 89.34.51.139 211667 port 62 211667 unique_id port 211667 remote_ip 10.8.0.38 211673 username aminvpn2 211673 mac 211673 bytes_out 0 211673 bytes_in 0 211673 station_ip 5.119.61.34 211673 port 58 211673 unique_id port 211673 remote_ip 10.8.0.130 211674 username mehrpoyan101 211674 mac 211674 bytes_out 0 211674 bytes_in 0 211674 station_ip 5.119.99.239 211674 port 62 211674 unique_id port 211674 remote_ip 10.8.0.134 211678 username aminvpnipad 211678 mac 211678 bytes_out 0 211678 bytes_in 0 211678 station_ip 5.119.61.34 211678 port 1 211678 unique_id port 211678 remote_ip 10.8.0.2 211679 username barzegar 211679 mac 211679 bytes_out 0 211679 bytes_in 0 211679 station_ip 5.120.55.42 211679 port 61 211679 unique_id port 211679 remote_ip 10.8.0.34 211682 username dortaj3792 211682 kill_reason Another user logged on this global unique id 211682 mac 211682 bytes_out 0 211682 bytes_in 0 211682 station_ip 5.120.76.159 211682 port 47 211682 unique_id port 211683 username mehrpoyan101 211683 mac 211683 bytes_out 0 211683 bytes_in 0 211683 station_ip 5.119.137.13 211683 port 61 211683 unique_id port 211683 remote_ip 10.8.0.134 211689 username mehrpoyan101 211689 mac 211689 bytes_out 0 211638 unique_id port 211638 remote_ip 10.8.0.138 211639 username milan 211639 mac 211639 bytes_out 0 211639 bytes_in 0 211639 station_ip 5.119.220.159 211639 port 33 211639 unique_id port 211642 username farhad3 211642 mac 211642 bytes_out 0 211642 bytes_in 0 211642 station_ip 5.119.16.119 211642 port 55 211642 unique_id port 211645 username mehrpoyan101 211645 kill_reason Maximum number of concurrent logins reached 211645 mac 211645 bytes_out 0 211645 bytes_in 0 211645 station_ip 5.120.164.11 211645 port 37 211645 unique_id port 211648 username nilufarrajaei 211648 kill_reason Another user logged on this global unique id 211648 mac 211648 bytes_out 0 211648 bytes_in 0 211648 station_ip 83.123.181.165 211648 port 25 211648 unique_id port 211650 username nasiripour0935 211650 mac 211650 bytes_out 0 211650 bytes_in 0 211650 station_ip 83.123.60.17 211650 port 58 211650 unique_id port 211655 username mehrpoyan101 211655 mac 211655 bytes_out 0 211655 bytes_in 0 211655 station_ip 5.120.62.63 211655 port 62 211655 unique_id port 211655 remote_ip 10.8.0.134 211656 username aminvpns6 211656 mac 211656 bytes_out 2701831 211656 bytes_in 29586868 211656 station_ip 5.119.61.34 211656 port 47 211656 unique_id port 211656 remote_ip 10.8.0.234 211666 username mosi 211666 mac 211666 bytes_out 0 211666 bytes_in 0 211666 station_ip 151.235.124.131 211666 port 59 211666 unique_id port 211666 remote_ip 10.8.0.38 211668 username barzegar 211668 mac 211668 bytes_out 0 211668 bytes_in 0 211668 station_ip 5.120.55.42 211668 port 62 211668 unique_id port 211668 remote_ip 10.8.0.34 211671 username farhad3 211671 kill_reason Another user logged on this global unique id 211671 mac 211671 bytes_out 0 211671 bytes_in 0 211671 station_ip 5.119.16.119 211671 port 33 211671 unique_id port 211671 remote_ip 10.8.0.98 211672 username aminvpns6 211672 mac 211672 bytes_out 0 211672 bytes_in 0 211672 station_ip 5.119.61.34 211672 port 61 211672 unique_id port 211672 remote_ip 10.8.0.234 211675 username dortaj3792 211675 kill_reason Another user logged on this global unique id 211675 mac 211675 bytes_out 0 211675 bytes_in 0 211675 station_ip 5.120.76.159 211675 port 47 211675 unique_id port 211675 remote_ip 10.8.0.10 211680 username mehrpoyan101 211680 mac 211680 bytes_out 0 211680 bytes_in 0 211680 station_ip 5.119.99.239 211680 port 58 211680 unique_id port 211680 remote_ip 10.8.0.134 211684 username dortaj3792 211684 mac 211684 bytes_out 0 211684 bytes_in 0 211684 station_ip 5.120.76.159 211684 port 47 211684 unique_id port 211686 username farhad3 211686 kill_reason Another user logged on this global unique id 211686 mac 211686 bytes_out 0 211686 bytes_in 0 211686 station_ip 5.119.16.119 211686 port 33 211686 unique_id port 211687 username aminvpnipad 211687 mac 211687 bytes_out 0 211687 bytes_in 0 211687 station_ip 5.119.61.34 211687 port 1 211687 unique_id port 211687 remote_ip 10.8.0.2 211700 username barzegar 211700 mac 211700 bytes_out 0 211700 bytes_in 0 211700 station_ip 5.120.55.42 211700 port 37 211700 unique_id port 211700 remote_ip 10.8.1.30 211705 username mehrpoyan101 211705 kill_reason Maximum check online fails reached 211705 mac 211705 bytes_out 0 211705 bytes_in 0 211705 station_ip 5.119.163.250 211705 port 47 211705 unique_id port 211708 username farhad3 211708 mac 211708 bytes_out 0 211708 bytes_in 0 211708 station_ip 5.119.16.119 211708 port 33 211708 unique_id port 211710 username kamali3 211710 kill_reason Another user logged on this global unique id 211662 bytes_out 0 211662 bytes_in 0 211662 station_ip 5.119.61.34 211662 port 2 211662 unique_id port 211662 remote_ip 10.8.0.2 211664 username mehrpoyan101 211664 mac 211664 bytes_out 0 211664 bytes_in 0 211664 station_ip 5.120.62.63 211664 port 62 211664 unique_id port 211664 remote_ip 10.8.0.134 211665 username godarzi 211665 kill_reason Another user logged on this global unique id 211665 mac 211665 bytes_out 0 211665 bytes_in 0 211665 station_ip 5.202.65.237 211665 port 60 211665 unique_id port 211665 remote_ip 10.8.0.74 211669 username mehrpoyan101 211669 mac 211669 bytes_out 0 211669 bytes_in 0 211669 station_ip 5.120.62.63 211669 port 64 211669 unique_id port 211669 remote_ip 10.8.0.134 211670 username saeeddamghani 211670 mac 211670 bytes_out 0 211670 bytes_in 0 211670 station_ip 5.119.154.182 211670 port 64 211670 unique_id port 211670 remote_ip 10.8.0.162 211676 username nilufarrajaei 211676 kill_reason Another user logged on this global unique id 211676 mac 211676 bytes_out 0 211676 bytes_in 0 211676 station_ip 83.123.181.165 211676 port 25 211676 unique_id port 211677 username aminvpnpc 211677 mac 211677 bytes_out 0 211677 bytes_in 0 211677 station_ip 5.119.61.34 211677 port 1 211677 unique_id port 211677 remote_ip 10.8.0.2 211681 username teymori5660 211681 mac 211681 bytes_out 0 211681 bytes_in 0 211681 station_ip 5.120.104.123 211681 port 50 211681 unique_id port 211685 username mehrpoyan101 211685 mac 211685 bytes_out 0 211685 bytes_in 0 211685 station_ip 5.119.87.97 211685 port 50 211685 unique_id port 211685 remote_ip 10.8.0.134 211688 username nasiripour0935 211688 mac 211688 bytes_out 0 211688 bytes_in 0 211688 station_ip 83.123.60.17 211688 port 47 211688 unique_id port 211688 remote_ip 10.8.0.238 211691 username sabaghnezhad 211691 mac 211691 bytes_out 0 211691 bytes_in 0 211691 station_ip 37.129.74.149 211691 port 16 211691 unique_id port 211691 remote_ip 10.8.0.94 211692 username mehrpoyan101 211692 mac 211692 bytes_out 0 211692 bytes_in 0 211692 station_ip 5.120.20.47 211692 port 47 211692 unique_id port 211692 remote_ip 10.8.0.134 211694 username khademi 211694 kill_reason Another user logged on this global unique id 211694 mac 211694 bytes_out 0 211694 bytes_in 0 211694 station_ip 37.129.95.252 211694 port 19 211694 unique_id port 211694 remote_ip 10.8.0.26 211697 username barzegar 211697 mac 211697 bytes_out 0 211697 bytes_in 0 211697 station_ip 5.120.55.42 211697 port 37 211697 unique_id port 211697 remote_ip 10.8.1.30 211699 username farhad3 211699 kill_reason Another user logged on this global unique id 211699 mac 211699 bytes_out 0 211699 bytes_in 0 211699 station_ip 5.119.16.119 211699 port 33 211699 unique_id port 211701 username barzegar 211701 mac 211701 bytes_out 0 211701 bytes_in 0 211701 station_ip 5.120.55.42 211701 port 37 211701 unique_id port 211701 remote_ip 10.8.1.30 211704 username barzegar 211704 mac 211704 bytes_out 0 211704 bytes_in 0 211704 station_ip 5.120.55.42 211704 port 62 211704 unique_id port 211704 remote_ip 10.8.0.34 211714 username teymori5660 211714 mac 211714 bytes_out 21657806 211714 bytes_in 30758785 211714 station_ip 5.120.104.123 211714 port 50 211714 unique_id port 211714 remote_ip 10.8.0.230 211716 username godarzi 211716 mac 211716 bytes_out 0 211716 bytes_in 0 211716 station_ip 5.202.65.237 211716 port 60 211716 unique_id port 211718 username aminvpnipad 211718 mac 211718 bytes_out 0 211718 bytes_in 0 211689 bytes_in 0 211689 station_ip 5.120.20.47 211689 port 58 211689 unique_id port 211689 remote_ip 10.8.0.134 211690 username barzegar 211690 mac 211690 bytes_out 0 211690 bytes_in 0 211690 station_ip 5.120.55.42 211690 port 50 211690 unique_id port 211690 remote_ip 10.8.0.34 211693 username farhad3 211693 kill_reason Another user logged on this global unique id 211693 mac 211693 bytes_out 0 211693 bytes_in 0 211693 station_ip 5.119.16.119 211693 port 33 211693 unique_id port 211695 username godarzi 211695 kill_reason Another user logged on this global unique id 211695 mac 211695 bytes_out 0 211695 bytes_in 0 211695 station_ip 5.202.65.237 211695 port 60 211695 unique_id port 211696 username farhad3 211696 kill_reason Another user logged on this global unique id 211696 mac 211696 bytes_out 0 211696 bytes_in 0 211696 station_ip 5.119.16.119 211696 port 33 211696 unique_id port 211698 username barzegar 211698 mac 211698 bytes_out 0 211698 bytes_in 0 211698 station_ip 5.120.55.42 211698 port 37 211698 unique_id port 211698 remote_ip 10.8.1.30 211702 username farhad3 211702 kill_reason Another user logged on this global unique id 211702 mac 211702 bytes_out 0 211702 bytes_in 0 211702 station_ip 5.119.16.119 211702 port 33 211702 unique_id port 211703 username esmaeilkazemi 211703 mac 211703 bytes_out 4416 211703 bytes_in 28570 211703 station_ip 37.129.68.205 211703 port 47 211703 unique_id port 211703 remote_ip 10.8.0.66 211706 username kamali3 211706 kill_reason Another user logged on this global unique id 211706 mac 211706 bytes_out 0 211706 bytes_in 0 211706 station_ip 83.122.232.242 211706 port 16 211706 unique_id port 211706 remote_ip 10.8.0.182 211707 username farhad3 211707 kill_reason Another user logged on this global unique id 211707 mac 211707 bytes_out 0 211707 bytes_in 0 211707 station_ip 5.119.16.119 211707 port 33 211707 unique_id port 211709 username mehrpoyan101 211709 mac 211709 bytes_out 12650 211709 bytes_in 15432 211709 station_ip 5.119.163.250 211709 port 58 211709 unique_id port 211709 remote_ip 10.8.0.134 211713 username meysam 211713 kill_reason Another user logged on this global unique id 211713 mac 211713 bytes_out 0 211713 bytes_in 0 211713 station_ip 188.159.252.65 211713 port 61 211713 unique_id port 211715 username kamali3 211715 kill_reason Another user logged on this global unique id 211715 mac 211715 bytes_out 0 211715 bytes_in 0 211715 station_ip 83.122.232.242 211715 port 16 211715 unique_id port 211724 username kamali3 211724 kill_reason Another user logged on this global unique id 211724 mac 211724 bytes_out 0 211724 bytes_in 0 211724 station_ip 83.122.232.242 211724 port 16 211724 unique_id port 211725 username mirzaei6046 211725 mac 211725 bytes_out 0 211725 bytes_in 0 211725 station_ip 5.120.121.238 211725 port 60 211725 unique_id port 211725 remote_ip 10.8.0.242 211729 username mirzaei6046 211729 mac 211729 bytes_out 0 211729 bytes_in 0 211729 station_ip 5.120.121.238 211729 port 58 211729 unique_id port 211729 remote_ip 10.8.0.242 211732 username saeeddamghani 211732 mac 211732 bytes_out 591985 211732 bytes_in 6669398 211732 station_ip 5.112.22.94 211732 port 25 211732 unique_id port 211732 remote_ip 10.8.0.162 211733 username aminvpnipad 211733 mac 211733 bytes_out 0 211733 bytes_in 0 211733 station_ip 5.119.204.150 211733 port 2 211733 unique_id port 211733 remote_ip 10.8.0.2 211735 username mirzaei6046 211735 mac 211735 bytes_out 0 211735 bytes_in 0 211735 station_ip 5.120.121.238 211735 port 38 211735 unique_id port 211735 remote_ip 10.8.1.110 211710 mac 211710 bytes_out 0 211710 bytes_in 0 211710 station_ip 83.122.232.242 211710 port 16 211710 unique_id port 211711 username meysam 211711 kill_reason Another user logged on this global unique id 211711 mac 211711 bytes_out 0 211711 bytes_in 0 211711 station_ip 188.159.252.65 211711 port 61 211711 unique_id port 211711 remote_ip 10.8.0.102 211712 username barzegar 211712 mac 211712 bytes_out 0 211712 bytes_in 0 211712 station_ip 5.120.55.42 211712 port 58 211712 unique_id port 211712 remote_ip 10.8.0.34 211717 username alipour1506 211717 kill_reason Another user logged on this global unique id 211717 mac 211717 bytes_out 0 211717 bytes_in 0 211717 station_ip 94.176.8.78 211717 port 41 211717 unique_id port 211723 username mirzaei6046 211723 mac 211723 bytes_out 9970 211723 bytes_in 16994 211723 station_ip 5.120.121.238 211723 port 58 211723 unique_id port 211723 remote_ip 10.8.0.242 211730 username kamali3 211730 kill_reason Another user logged on this global unique id 211730 mac 211730 bytes_out 0 211730 bytes_in 0 211730 station_ip 83.122.232.242 211730 port 16 211730 unique_id port 211731 username aminvpnipad 211731 mac 211731 bytes_out 0 211731 bytes_in 0 211731 station_ip 5.233.74.44 211731 port 1 211731 unique_id port 211731 remote_ip 10.8.0.2 211739 username barzegar 211739 mac 211739 bytes_out 0 211739 bytes_in 0 211739 station_ip 5.120.55.42 211739 port 62 211739 unique_id port 211739 remote_ip 10.8.0.34 211749 username kamali3 211749 kill_reason Another user logged on this global unique id 211749 mac 211749 bytes_out 0 211749 bytes_in 0 211749 station_ip 83.122.232.242 211749 port 16 211749 unique_id port 211754 username barzegar 211754 mac 211754 bytes_out 18092 211754 bytes_in 33092 211754 station_ip 5.120.55.42 211754 port 62 211754 unique_id port 211754 remote_ip 10.8.0.34 211758 username aminvpnipad 211758 mac 211758 bytes_out 0 211758 bytes_in 0 211758 station_ip 5.119.204.150 211758 port 1 211758 unique_id port 211758 remote_ip 10.8.0.2 211765 username saeeddamghani 211765 mac 211765 bytes_out 0 211765 bytes_in 0 211765 station_ip 5.112.22.94 211765 port 37 211765 unique_id port 211765 remote_ip 10.8.1.130 211772 username saeeddamghani 211772 mac 211772 bytes_out 0 211772 bytes_in 0 211772 station_ip 5.112.22.94 211772 port 46 211772 unique_id port 211772 remote_ip 10.8.0.162 211774 username saeeddamghani 211774 mac 211774 bytes_out 0 211774 bytes_in 0 211774 station_ip 5.112.22.94 211774 port 46 211774 unique_id port 211774 remote_ip 10.8.0.162 211782 username aminvpnipad 211782 mac 211782 bytes_out 0 211782 bytes_in 0 211782 station_ip 5.119.204.150 211782 port 1 211782 unique_id port 211782 remote_ip 10.8.0.2 211783 username yaghobi 211783 mac 211783 bytes_out 0 211783 bytes_in 0 211783 station_ip 83.122.58.195 211783 port 61 211783 unique_id port 211783 remote_ip 10.8.0.106 211788 username aminvpnipad 211788 mac 211788 bytes_out 0 211788 bytes_in 0 211788 station_ip 5.119.204.150 211788 port 1 211788 unique_id port 211788 remote_ip 10.8.0.2 211789 username rahim 211789 mac 211789 bytes_out 0 211789 bytes_in 0 211789 station_ip 86.57.104.65 211789 port 50 211789 unique_id port 211789 remote_ip 10.8.0.146 211790 username mostafa_es78 211790 mac 211790 bytes_out 0 211790 bytes_in 0 211790 station_ip 113.203.33.51 211790 port 63 211790 unique_id port 211791 username barzegar 211791 mac 211791 bytes_out 0 211791 bytes_in 0 211718 station_ip 5.233.74.44 211718 port 1 211718 unique_id port 211718 remote_ip 10.8.0.2 211719 username nilufarrajaei 211719 mac 211719 bytes_out 0 211719 bytes_in 0 211719 station_ip 83.123.181.165 211719 port 25 211719 unique_id port 211720 username barzegar 211720 mac 211720 bytes_out 0 211720 bytes_in 0 211720 station_ip 5.120.55.42 211720 port 25 211720 unique_id port 211720 remote_ip 10.8.0.34 211721 username kamali3 211721 kill_reason Another user logged on this global unique id 211721 mac 211721 bytes_out 0 211721 bytes_in 0 211721 station_ip 83.122.232.242 211721 port 16 211721 unique_id port 211722 username mirzaei6046 211722 mac 211722 bytes_out 619144 211722 bytes_in 2617465 211722 station_ip 5.120.121.238 211722 port 63 211722 unique_id port 211722 remote_ip 10.8.0.242 211726 username abdolahi0311 211726 kill_reason Another user logged on this global unique id 211726 mac 211726 bytes_out 0 211726 bytes_in 0 211726 station_ip 5.119.250.202 211726 port 50 211726 unique_id port 211726 remote_ip 10.8.0.186 211727 username meysam 211727 mac 211727 bytes_out 0 211727 bytes_in 0 211727 station_ip 188.159.252.65 211727 port 61 211727 unique_id port 211728 username barzegar 211728 mac 211728 bytes_out 3522 211728 bytes_in 6725 211728 station_ip 5.120.55.42 211728 port 37 211728 unique_id port 211728 remote_ip 10.8.1.30 211734 username alipour1506 211734 kill_reason Another user logged on this global unique id 211734 mac 211734 bytes_out 0 211734 bytes_in 0 211734 station_ip 94.176.8.78 211734 port 41 211734 unique_id port 211737 username barzegar 211737 mac 211737 bytes_out 0 211737 bytes_in 0 211737 station_ip 5.120.55.42 211737 port 62 211737 unique_id port 211737 remote_ip 10.8.0.34 211741 username kamali3 211741 kill_reason Another user logged on this global unique id 211741 mac 211741 bytes_out 0 211741 bytes_in 0 211741 station_ip 83.122.232.242 211741 port 16 211741 unique_id port 211743 username mehrpoyan101 211743 mac 211743 bytes_out 0 211743 bytes_in 0 211743 station_ip 5.119.46.193 211743 port 62 211743 unique_id port 211743 remote_ip 10.8.0.134 211747 username meysam 211747 mac 211747 bytes_out 0 211747 bytes_in 0 211747 station_ip 188.159.252.65 211747 port 50 211747 unique_id port 211750 username esmaeili1522 211750 kill_reason Another user logged on this global unique id 211750 mac 211750 bytes_out 0 211750 bytes_in 0 211750 station_ip 5.119.112.149 211750 port 61 211750 unique_id port 211750 remote_ip 10.8.0.190 211751 username saeeddamghani 211751 mac 211751 bytes_out 2472537 211751 bytes_in 16035248 211751 station_ip 5.112.22.94 211751 port 58 211751 unique_id port 211751 remote_ip 10.8.0.162 211757 username nilufarrajaei 211757 mac 211757 bytes_out 1207057 211757 bytes_in 18794106 211757 station_ip 83.123.170.5 211757 port 64 211757 unique_id port 211757 remote_ip 10.8.0.50 211759 username farhad3 211759 mac 211759 bytes_out 258502 211759 bytes_in 981663 211759 station_ip 5.119.16.119 211759 port 37 211759 unique_id port 211759 remote_ip 10.8.1.86 211760 username mosi 211760 mac 211760 bytes_out 43179 211760 bytes_in 91247 211760 station_ip 89.47.129.98 211760 port 50 211760 unique_id port 211760 remote_ip 10.8.0.38 211763 username barzegar 211763 mac 211763 bytes_out 0 211763 bytes_in 0 211763 station_ip 5.120.55.42 211763 port 59 211763 unique_id port 211763 remote_ip 10.8.0.34 211767 username kamali3 211767 kill_reason Another user logged on this global unique id 211767 mac 211767 bytes_out 0 211767 bytes_in 0 211736 username abdolahi0311 211736 mac 211736 bytes_out 0 211736 bytes_in 0 211736 station_ip 5.119.250.202 211736 port 50 211736 unique_id port 211738 username kamali3 211738 kill_reason Another user logged on this global unique id 211738 mac 211738 bytes_out 0 211738 bytes_in 0 211738 station_ip 83.122.232.242 211738 port 16 211738 unique_id port 211740 username farhad3 211740 mac 211740 bytes_out 625146 211740 bytes_in 3217243 211740 station_ip 5.119.16.119 211740 port 37 211740 unique_id port 211740 remote_ip 10.8.1.86 211742 username aminvpnipad 211742 mac 211742 bytes_out 0 211742 bytes_in 0 211742 station_ip 5.119.204.150 211742 port 1 211742 unique_id port 211742 remote_ip 10.8.0.2 211744 username barzegar 211744 mac 211744 bytes_out 0 211744 bytes_in 0 211744 station_ip 5.120.55.42 211744 port 63 211744 unique_id port 211744 remote_ip 10.8.0.34 211745 username meysam 211745 kill_reason Another user logged on this global unique id 211745 mac 211745 bytes_out 0 211745 bytes_in 0 211745 station_ip 188.159.252.65 211745 port 50 211745 unique_id port 211745 remote_ip 10.8.0.102 211746 username nilufarrajaei 211746 mac 211746 bytes_out 0 211746 bytes_in 0 211746 station_ip 83.123.170.5 211746 port 60 211746 unique_id port 211746 remote_ip 10.8.0.50 211748 username alipour1506 211748 kill_reason Another user logged on this global unique id 211748 mac 211748 bytes_out 0 211748 bytes_in 0 211748 station_ip 94.176.8.78 211748 port 41 211748 unique_id port 211752 username saeeddamghani 211752 mac 211752 bytes_out 0 211752 bytes_in 0 211752 station_ip 5.112.22.94 211752 port 50 211752 unique_id port 211752 remote_ip 10.8.0.162 211753 username mosi 211753 mac 211753 bytes_out 3129970 211753 bytes_in 36385823 211753 station_ip 151.235.124.131 211753 port 59 211753 unique_id port 211753 remote_ip 10.8.0.38 211755 username kamali3 211755 kill_reason Another user logged on this global unique id 211755 mac 211755 bytes_out 0 211755 bytes_in 0 211755 station_ip 83.122.232.242 211755 port 16 211755 unique_id port 211756 username mohammadjavad 211756 mac 211756 bytes_out 2848519 211756 bytes_in 45017989 211756 station_ip 37.129.238.124 211756 port 33 211756 unique_id port 211756 remote_ip 10.8.0.138 211761 username mosi 211761 kill_reason Maximum check online fails reached 211761 mac 211761 bytes_out 0 211761 bytes_in 0 211761 station_ip 151.235.124.131 211761 port 33 211761 unique_id port 211762 username kamali3 211762 kill_reason Another user logged on this global unique id 211762 mac 211762 bytes_out 0 211762 bytes_in 0 211762 station_ip 83.122.232.242 211762 port 16 211762 unique_id port 211764 username malekpoir 211764 mac 211764 bytes_out 0 211764 bytes_in 0 211764 station_ip 5.120.109.113 211764 port 46 211764 unique_id port 211764 remote_ip 10.8.0.178 211766 username aminvpnpc 211766 mac 211766 bytes_out 0 211766 bytes_in 0 211766 station_ip 5.119.204.150 211766 port 62 211766 unique_id port 211766 remote_ip 10.8.0.118 211768 username alipour1506 211768 kill_reason Another user logged on this global unique id 211768 mac 211768 bytes_out 0 211768 bytes_in 0 211768 station_ip 94.176.8.78 211768 port 41 211768 unique_id port 211769 username esmaeili1522 211769 kill_reason Another user logged on this global unique id 211769 mac 211769 bytes_out 0 211769 bytes_in 0 211769 station_ip 5.119.112.149 211769 port 61 211769 unique_id port 211770 username teymori5660 211770 mac 211770 bytes_out 0 211770 bytes_in 0 211770 station_ip 5.119.165.162 211770 port 65 211770 unique_id port 211767 station_ip 83.122.232.242 211767 port 16 211767 unique_id port 211771 username esmaeili1522 211771 mac 211771 bytes_out 0 211771 bytes_in 0 211771 station_ip 5.119.112.149 211771 port 61 211771 unique_id port 211773 username mehrpoyan101 211773 mac 211773 bytes_out 0 211773 bytes_in 0 211773 station_ip 5.119.101.242 211773 port 66 211773 unique_id port 211773 remote_ip 10.8.0.134 211776 username soleymani5056 211776 mac 211776 bytes_out 55613 211776 bytes_in 75099 211776 station_ip 5.120.65.147 211776 port 62 211776 unique_id port 211776 remote_ip 10.8.0.246 211778 username mostafa_es78 211778 kill_reason Another user logged on this global unique id 211778 mac 211778 bytes_out 0 211778 bytes_in 0 211778 station_ip 113.203.33.51 211778 port 63 211778 unique_id port 211778 remote_ip 10.8.0.42 211779 username kamali3 211779 kill_reason Another user logged on this global unique id 211779 mac 211779 bytes_out 0 211779 bytes_in 0 211779 station_ip 83.122.232.242 211779 port 16 211779 unique_id port 211781 username saeeddamghani 211781 mac 211781 bytes_out 0 211781 bytes_in 0 211781 station_ip 5.112.22.94 211781 port 46 211781 unique_id port 211781 remote_ip 10.8.0.162 211786 username mohammadjavad 211786 mac 211786 bytes_out 0 211786 bytes_in 0 211786 station_ip 37.129.166.112 211786 port 50 211786 unique_id port 211793 username farhad3 211793 mac 211793 bytes_out 0 211793 bytes_in 0 211793 station_ip 5.119.16.119 211793 port 58 211793 unique_id port 211793 remote_ip 10.8.0.98 211798 username farhad3 211798 mac 211798 bytes_out 0 211798 bytes_in 0 211798 station_ip 5.119.16.119 211798 port 25 211798 unique_id port 211798 remote_ip 10.8.0.98 211799 username barzegar 211799 mac 211799 bytes_out 0 211799 bytes_in 0 211799 station_ip 5.120.55.42 211799 port 37 211799 unique_id port 211799 remote_ip 10.8.1.30 211800 username kamali3 211800 mac 211800 bytes_out 0 211800 bytes_in 0 211800 station_ip 83.122.232.242 211800 port 16 211800 unique_id port 211804 username barzegar 211804 mac 211804 bytes_out 0 211804 bytes_in 0 211804 station_ip 5.120.55.42 211804 port 38 211804 unique_id port 211804 remote_ip 10.8.1.30 211807 username aminvpnipad 211807 mac 211807 bytes_out 0 211807 bytes_in 0 211807 station_ip 5.119.204.150 211807 port 1 211807 unique_id port 211807 remote_ip 10.8.0.2 211814 username mosi 211814 kill_reason Another user logged on this global unique id 211814 mac 211814 bytes_out 0 211814 bytes_in 0 211814 station_ip 151.235.124.131 211814 port 25 211814 unique_id port 211816 username mohammadjavad 211816 mac 211816 bytes_out 0 211816 bytes_in 0 211816 station_ip 37.129.137.120 211816 port 46 211816 unique_id port 211816 remote_ip 10.8.0.138 211822 username soleymani5056 211822 mac 211822 bytes_out 0 211822 bytes_in 0 211822 station_ip 5.120.186.192 211822 port 46 211822 unique_id port 211822 remote_ip 10.8.0.246 211824 username aminvpnipad 211824 mac 211824 bytes_out 0 211824 bytes_in 0 211824 station_ip 5.119.204.150 211824 port 1 211824 unique_id port 211824 remote_ip 10.8.0.2 211830 username ahmadi1 211830 mac 211830 bytes_out 0 211830 bytes_in 0 211830 station_ip 83.123.92.82 211830 port 46 211830 unique_id port 211830 remote_ip 10.8.0.114 211831 username aminvpnipad 211831 mac 211831 bytes_out 0 211831 bytes_in 0 211831 station_ip 5.119.204.150 211831 port 1 211831 unique_id port 211831 remote_ip 10.8.0.2 211832 username barzegar 211832 mac 211770 remote_ip 10.8.0.230 211775 username aminvpnipad 211775 mac 211775 bytes_out 0 211775 bytes_in 0 211775 station_ip 5.119.204.150 211775 port 1 211775 unique_id port 211775 remote_ip 10.8.0.2 211777 username kamali3 211777 kill_reason Another user logged on this global unique id 211777 mac 211777 bytes_out 0 211777 bytes_in 0 211777 station_ip 83.122.232.242 211777 port 16 211777 unique_id port 211780 username mohammadjavad 211780 kill_reason Another user logged on this global unique id 211780 mac 211780 bytes_out 0 211780 bytes_in 0 211780 station_ip 37.129.166.112 211780 port 50 211780 unique_id port 211780 remote_ip 10.8.0.138 211784 username kamali3 211784 kill_reason Another user logged on this global unique id 211784 mac 211784 bytes_out 0 211784 bytes_in 0 211784 station_ip 83.122.232.242 211784 port 16 211784 unique_id port 211785 username mostafa_es78 211785 kill_reason Another user logged on this global unique id 211785 mac 211785 bytes_out 0 211785 bytes_in 0 211785 station_ip 113.203.33.51 211785 port 63 211785 unique_id port 211787 username barzegar 211787 mac 211787 bytes_out 39103 211787 bytes_in 63102 211787 station_ip 5.120.55.42 211787 port 64 211787 unique_id port 211787 remote_ip 10.8.0.34 211792 username dortaj3792 211792 mac 211792 bytes_out 0 211792 bytes_in 0 211792 station_ip 5.120.76.159 211792 port 50 211792 unique_id port 211792 remote_ip 10.8.0.10 211794 username farhad3 211794 mac 211794 bytes_out 0 211794 bytes_in 0 211794 station_ip 5.119.16.119 211794 port 46 211794 unique_id port 211794 remote_ip 10.8.0.98 211801 username malekpoir 211801 mac 211801 bytes_out 0 211801 bytes_in 0 211801 station_ip 5.120.109.113 211801 port 59 211801 unique_id port 211801 remote_ip 10.8.0.178 211802 username aminvpnipad 211802 mac 211802 bytes_out 0 211802 bytes_in 0 211802 station_ip 5.119.204.150 211802 port 1 211802 unique_id port 211802 remote_ip 10.8.0.2 211809 username barzegar 211809 mac 211809 bytes_out 0 211809 bytes_in 0 211809 station_ip 5.120.55.42 211809 port 59 211809 unique_id port 211809 remote_ip 10.8.0.34 211813 username barzegar 211813 kill_reason Maximum check online fails reached 211813 mac 211813 bytes_out 0 211813 bytes_in 0 211813 station_ip 5.120.55.42 211813 port 59 211813 unique_id port 211815 username esmaeilkazemi 211815 mac 211815 bytes_out 0 211815 bytes_in 0 211815 station_ip 37.129.68.205 211815 port 62 211815 unique_id port 211815 remote_ip 10.8.0.66 211819 username aminvpnipad 211819 mac 211819 bytes_out 0 211819 bytes_in 0 211819 station_ip 5.119.204.150 211819 port 1 211819 unique_id port 211819 remote_ip 10.8.0.2 211820 username barzegar 211820 mac 211820 bytes_out 0 211820 bytes_in 0 211820 station_ip 5.120.55.42 211820 port 61 211820 unique_id port 211820 remote_ip 10.8.0.34 211825 username houshang 211825 mac 211825 bytes_out 0 211825 bytes_in 0 211825 station_ip 5.119.151.117 211825 port 46 211825 unique_id port 211825 remote_ip 10.8.0.158 211826 username barzegar 211826 mac 211826 bytes_out 0 211826 bytes_in 0 211826 station_ip 5.120.55.42 211826 port 46 211826 unique_id port 211826 remote_ip 10.8.0.34 211827 username kamali3 211827 kill_reason Another user logged on this global unique id 211827 mac 211827 bytes_out 0 211827 bytes_in 0 211827 station_ip 83.122.232.242 211827 port 16 211827 unique_id port 211828 username mosi 211828 kill_reason Another user logged on this global unique id 211828 mac 211828 bytes_out 0 211828 bytes_in 0 211828 station_ip 151.235.124.131 211791 station_ip 5.120.55.42 211791 port 46 211791 unique_id port 211791 remote_ip 10.8.0.34 211795 username godarzi 211795 mac 211795 bytes_out 0 211795 bytes_in 0 211795 station_ip 5.202.65.237 211795 port 25 211795 unique_id port 211795 remote_ip 10.8.0.74 211796 username barzegar 211796 mac 211796 bytes_out 0 211796 bytes_in 0 211796 station_ip 5.120.55.42 211796 port 61 211796 unique_id port 211796 remote_ip 10.8.0.34 211797 username aminvpnipad 211797 mac 211797 bytes_out 0 211797 bytes_in 0 211797 station_ip 5.119.204.150 211797 port 1 211797 unique_id port 211797 remote_ip 10.8.0.2 211803 username kamali3 211803 kill_reason Another user logged on this global unique id 211803 mac 211803 bytes_out 0 211803 bytes_in 0 211803 station_ip 83.122.232.242 211803 port 16 211803 unique_id port 211803 remote_ip 10.8.0.182 211805 username meghdad1616 211805 mac 211805 bytes_out 170732 211805 bytes_in 1673364 211805 station_ip 5.119.210.213 211805 port 46 211805 unique_id port 211805 remote_ip 10.8.0.150 211806 username meghdad1616 211806 mac 211806 bytes_out 0 211806 bytes_in 0 211806 station_ip 5.119.210.213 211806 port 46 211806 unique_id port 211806 remote_ip 10.8.0.150 211808 username mosi 211808 kill_reason Another user logged on this global unique id 211808 mac 211808 bytes_out 0 211808 bytes_in 0 211808 station_ip 151.235.124.131 211808 port 25 211808 unique_id port 211808 remote_ip 10.8.0.38 211810 username aminvpnipad 211810 mac 211810 bytes_out 0 211810 bytes_in 0 211810 station_ip 5.119.204.150 211810 port 1 211810 unique_id port 211810 remote_ip 10.8.0.2 211811 username barzegar 211811 mac 211811 bytes_out 0 211811 bytes_in 0 211811 station_ip 5.120.55.42 211811 port 59 211811 unique_id port 211811 remote_ip 10.8.0.34 211812 username yaghobi 211812 mac 211812 bytes_out 0 211812 bytes_in 0 211812 station_ip 83.122.28.235 211812 port 58 211812 unique_id port 211812 remote_ip 10.8.0.106 211817 username barzegar 211817 mac 211817 bytes_out 4102 211817 bytes_in 5234 211817 station_ip 5.120.55.42 211817 port 61 211817 unique_id port 211817 remote_ip 10.8.0.34 211818 username esmaeilkazemi 211818 mac 211818 bytes_out 0 211818 bytes_in 0 211818 station_ip 37.129.68.205 211818 port 63 211818 unique_id port 211818 remote_ip 10.8.0.66 211821 username mosi 211821 kill_reason Another user logged on this global unique id 211821 mac 211821 bytes_out 0 211821 bytes_in 0 211821 station_ip 151.235.124.131 211821 port 25 211821 unique_id port 211823 username yaghobi 211823 mac 211823 bytes_out 0 211823 bytes_in 0 211823 station_ip 83.122.28.235 211823 port 58 211823 unique_id port 211823 remote_ip 10.8.0.106 211835 username yaghobi 211835 mac 211835 bytes_out 219871 211835 bytes_in 233246 211835 station_ip 83.122.89.163 211835 port 46 211835 unique_id port 211835 remote_ip 10.8.0.106 211837 username farhad3 211837 mac 211837 bytes_out 0 211837 bytes_in 0 211837 station_ip 5.119.16.119 211837 port 25 211837 unique_id port 211837 remote_ip 10.8.0.98 211839 username barzegar 211839 mac 211839 bytes_out 0 211839 bytes_in 0 211839 station_ip 5.120.55.42 211839 port 25 211839 unique_id port 211839 remote_ip 10.8.0.34 211843 username dorani4942 211843 mac 211843 bytes_out 0 211843 bytes_in 0 211843 station_ip 83.123.153.152 211843 port 62 211843 unique_id port 211844 username farhad3 211844 mac 211844 bytes_out 0 211844 bytes_in 0 211844 station_ip 5.119.16.119 211844 port 39 211828 port 25 211828 unique_id port 211829 username ahmadi1 211829 mac 211829 bytes_out 0 211829 bytes_in 0 211829 station_ip 83.123.92.82 211829 port 46 211829 unique_id port 211829 remote_ip 10.8.0.114 211833 username mosi 211833 mac 211833 bytes_out 0 211833 bytes_in 0 211833 station_ip 151.235.124.131 211833 port 25 211833 unique_id port 211834 username motamedi9772 211834 mac 211834 bytes_out 1577778 211834 bytes_in 14237680 211834 station_ip 83.123.58.152 211834 port 58 211834 unique_id port 211834 remote_ip 10.8.0.86 211836 username farhad3 211836 mac 211836 bytes_out 0 211836 bytes_in 0 211836 station_ip 5.119.16.119 211836 port 25 211836 unique_id port 211836 remote_ip 10.8.0.98 211838 username aminvpnipad 211838 mac 211838 bytes_out 0 211838 bytes_in 0 211838 station_ip 5.119.204.150 211838 port 1 211838 unique_id port 211838 remote_ip 10.8.0.2 211841 username farhad3 211841 mac 211841 bytes_out 694581 211841 bytes_in 5033826 211841 station_ip 5.119.16.119 211841 port 39 211841 unique_id port 211841 remote_ip 10.8.1.86 211842 username farhad3 211842 mac 211842 bytes_out 0 211842 bytes_in 0 211842 station_ip 5.119.16.119 211842 port 39 211842 unique_id port 211842 remote_ip 10.8.1.86 211846 username mosavi0713 211846 kill_reason Another user logged on this global unique id 211846 mac 211846 bytes_out 0 211846 bytes_in 0 211846 station_ip 83.122.225.121 211846 port 46 211846 unique_id port 211846 remote_ip 10.8.0.22 211847 username kamali3 211847 kill_reason Another user logged on this global unique id 211847 mac 211847 bytes_out 0 211847 bytes_in 0 211847 station_ip 83.122.232.242 211847 port 16 211847 unique_id port 211850 username barzegar 211850 mac 211850 bytes_out 0 211850 bytes_in 0 211850 station_ip 5.120.55.42 211850 port 63 211850 unique_id port 211850 remote_ip 10.8.0.34 211851 username barzegar 211851 mac 211851 bytes_out 0 211851 bytes_in 0 211851 station_ip 5.120.55.42 211851 port 39 211851 unique_id port 211851 remote_ip 10.8.1.30 211854 username mosavi0713 211854 mac 211854 bytes_out 0 211854 bytes_in 0 211854 station_ip 83.122.225.121 211854 port 46 211854 unique_id port 211856 username teymori5660 211856 mac 211856 bytes_out 2084078 211856 bytes_in 23882869 211856 station_ip 5.119.165.162 211856 port 61 211856 unique_id port 211856 remote_ip 10.8.0.230 211858 username aminvpnipad 211858 mac 211858 bytes_out 0 211858 bytes_in 0 211858 station_ip 5.119.204.150 211858 port 1 211858 unique_id port 211858 remote_ip 10.8.0.2 211859 username barzegar 211859 mac 211859 bytes_out 0 211859 bytes_in 0 211859 station_ip 5.120.55.42 211859 port 39 211859 unique_id port 211859 remote_ip 10.8.1.30 211861 username kamali3 211861 mac 211861 bytes_out 0 211861 bytes_in 0 211861 station_ip 83.122.232.242 211861 port 16 211861 unique_id port 211866 username farhad3 211866 mac 211866 bytes_out 0 211866 bytes_in 0 211866 station_ip 5.119.16.119 211866 port 38 211866 unique_id port 211866 remote_ip 10.8.1.86 211867 username aminvpns6 211867 kill_reason Another user logged on this global unique id 211867 mac 211867 bytes_out 0 211867 bytes_in 0 211867 station_ip 5.119.36.166 211867 port 16 211867 unique_id port 211867 remote_ip 10.8.0.234 211869 username barzegar 211869 mac 211869 bytes_out 0 211869 bytes_in 0 211869 station_ip 5.120.55.42 211869 port 39 211869 unique_id port 211869 remote_ip 10.8.1.30 211871 username aminvpnipad 211871 mac 211832 bytes_out 80486 211832 bytes_in 16351 211832 station_ip 5.120.55.42 211832 port 39 211832 unique_id port 211832 remote_ip 10.8.1.30 211840 username dorani4942 211840 kill_reason Another user logged on this global unique id 211840 mac 211840 bytes_out 0 211840 bytes_in 0 211840 station_ip 83.123.153.152 211840 port 62 211840 unique_id port 211840 remote_ip 10.8.0.82 211845 username khademi 211845 kill_reason Another user logged on this global unique id 211845 mac 211845 bytes_out 0 211845 bytes_in 0 211845 station_ip 37.129.95.252 211845 port 19 211845 unique_id port 211849 username mosi 211849 mac 211849 bytes_out 3196885 211849 bytes_in 32163372 211849 station_ip 151.235.124.131 211849 port 63 211849 unique_id port 211849 remote_ip 10.8.0.38 211853 username yaghobi 211853 mac 211853 bytes_out 0 211853 bytes_in 0 211853 station_ip 83.122.89.163 211853 port 63 211853 unique_id port 211853 remote_ip 10.8.0.106 211857 username khademi 211857 kill_reason Another user logged on this global unique id 211857 mac 211857 bytes_out 0 211857 bytes_in 0 211857 station_ip 37.129.95.252 211857 port 19 211857 unique_id port 211863 username kharazmi2920 211863 mac 211863 bytes_out 409751 211863 bytes_in 1043994 211863 station_ip 83.123.248.208 211863 port 25 211863 unique_id port 211863 remote_ip 10.8.0.54 211864 username aminvpnipad 211864 mac 211864 bytes_out 0 211864 bytes_in 0 211864 station_ip 5.119.204.150 211864 port 1 211864 unique_id port 211864 remote_ip 10.8.0.2 211865 username barzegar 211865 mac 211865 bytes_out 0 211865 bytes_in 0 211865 station_ip 5.120.55.42 211865 port 38 211865 unique_id port 211865 remote_ip 10.8.1.30 211868 username malekpoir 211868 mac 211868 bytes_out 0 211868 bytes_in 0 211868 station_ip 5.120.109.113 211868 port 37 211868 unique_id port 211868 remote_ip 10.8.1.242 211870 username farhad3 211870 mac 211870 bytes_out 0 211870 bytes_in 0 211870 station_ip 5.119.16.119 211870 port 38 211870 unique_id port 211870 remote_ip 10.8.1.86 211876 username mohammadjavad 211876 mac 211876 bytes_out 434019 211876 bytes_in 8553931 211876 station_ip 37.129.222.244 211876 port 25 211876 unique_id port 211876 remote_ip 10.8.0.138 211878 username barzegar 211878 mac 211878 bytes_out 0 211878 bytes_in 0 211878 station_ip 5.120.55.42 211878 port 39 211878 unique_id port 211878 remote_ip 10.8.1.30 211881 username dorani4942 211881 mac 211881 bytes_out 0 211881 bytes_in 0 211881 station_ip 83.123.142.204 211881 port 50 211881 unique_id port 211881 remote_ip 10.8.0.82 211883 username farhad3 211883 mac 211883 bytes_out 0 211883 bytes_in 0 211883 station_ip 5.119.16.119 211883 port 38 211883 unique_id port 211883 remote_ip 10.8.1.86 211886 username dorani4942 211886 kill_reason Maximum check online fails reached 211886 mac 211886 bytes_out 0 211886 bytes_in 0 211886 station_ip 83.123.142.204 211886 port 39 211886 unique_id port 211895 username aminvpn 211895 kill_reason Another user logged on this global unique id 211895 mac 211895 bytes_out 0 211895 bytes_in 0 211895 station_ip 5.120.173.67 211895 port 25 211895 unique_id port 211896 username mosi 211896 kill_reason Another user logged on this global unique id 211896 mac 211896 bytes_out 0 211896 bytes_in 0 211896 station_ip 151.235.124.131 211896 port 62 211896 unique_id port 211898 username aminvpnipad 211898 mac 211898 bytes_out 0 211898 bytes_in 0 211898 station_ip 5.119.204.150 211898 port 1 211898 unique_id port 211898 remote_ip 10.8.0.2 211903 username soleymani5056 211903 mac 211844 unique_id port 211844 remote_ip 10.8.1.86 211848 username aminvpnipad 211848 mac 211848 bytes_out 0 211848 bytes_in 0 211848 station_ip 5.119.204.150 211848 port 1 211848 unique_id port 211848 remote_ip 10.8.0.2 211852 username mohammadjavad 211852 mac 211852 bytes_out 1135279 211852 bytes_in 16347919 211852 station_ip 37.129.145.144 211852 port 58 211852 unique_id port 211852 remote_ip 10.8.0.138 211855 username mosavi0713 211855 mac 211855 bytes_out 8498 211855 bytes_in 15210 211855 station_ip 83.122.225.121 211855 port 63 211855 unique_id port 211855 remote_ip 10.8.0.22 211860 username tahmorsi 211860 mac 211860 bytes_out 0 211860 bytes_in 0 211860 station_ip 86.57.94.41 211860 port 38 211860 unique_id port 211860 remote_ip 10.8.1.78 211862 username sabaghnezhad 211862 mac 211862 bytes_out 2376881 211862 bytes_in 26054082 211862 station_ip 83.123.120.101 211862 port 50 211862 unique_id port 211862 remote_ip 10.8.0.94 211872 username mosi 211872 kill_reason Another user logged on this global unique id 211872 mac 211872 bytes_out 0 211872 bytes_in 0 211872 station_ip 151.235.124.131 211872 port 62 211872 unique_id port 211872 remote_ip 10.8.0.38 211873 username farhad3 211873 mac 211873 bytes_out 0 211873 bytes_in 0 211873 station_ip 5.119.16.119 211873 port 38 211873 unique_id port 211873 remote_ip 10.8.1.86 211874 username farhad3 211874 mac 211874 bytes_out 0 211874 bytes_in 0 211874 station_ip 5.119.16.119 211874 port 38 211874 unique_id port 211874 remote_ip 10.8.1.86 211875 username aminvpns6 211875 mac 211875 bytes_out 0 211875 bytes_in 0 211875 station_ip 5.119.36.166 211875 port 16 211875 unique_id port 211880 username dorani4942 211880 mac 211880 bytes_out 0 211880 bytes_in 0 211880 station_ip 83.123.142.204 211880 port 50 211880 unique_id port 211880 remote_ip 10.8.0.82 211882 username aminvpnipad 211882 mac 211882 bytes_out 0 211882 bytes_in 0 211882 station_ip 5.119.204.150 211882 port 1 211882 unique_id port 211882 remote_ip 10.8.0.2 211884 username kharazmi2920 211884 kill_reason Another user logged on this global unique id 211884 mac 211884 bytes_out 0 211884 bytes_in 0 211884 station_ip 83.123.248.208 211884 port 46 211884 unique_id port 211884 remote_ip 10.8.0.54 211885 username farhad3 211885 mac 211885 bytes_out 0 211885 bytes_in 0 211885 station_ip 5.119.16.119 211885 port 38 211885 unique_id port 211885 remote_ip 10.8.1.86 211887 username aminvpn 211887 kill_reason Another user logged on this global unique id 211887 mac 211887 bytes_out 0 211887 bytes_in 0 211887 station_ip 5.120.173.67 211887 port 25 211887 unique_id port 211887 remote_ip 10.8.0.58 211888 username dorani4942 211888 mac 211888 bytes_out 0 211888 bytes_in 0 211888 station_ip 83.123.142.204 211888 port 38 211888 unique_id port 211888 remote_ip 10.8.1.118 211889 username barzegar 211889 mac 211889 bytes_out 0 211889 bytes_in 0 211889 station_ip 5.120.55.42 211889 port 38 211889 unique_id port 211889 remote_ip 10.8.1.30 211891 username aminvpnipad 211891 mac 211891 bytes_out 0 211891 bytes_in 0 211891 station_ip 5.119.204.150 211891 port 1 211891 unique_id port 211891 remote_ip 10.8.0.2 211893 username kharazmi2920 211893 mac 211893 bytes_out 0 211893 bytes_in 0 211893 station_ip 83.123.248.208 211893 port 46 211893 unique_id port 211902 username mosi 211902 kill_reason Another user logged on this global unique id 211902 mac 211902 bytes_out 0 211902 bytes_in 0 211902 station_ip 151.235.124.131 211902 port 62 211871 bytes_out 0 211871 bytes_in 0 211871 station_ip 5.119.204.150 211871 port 1 211871 unique_id port 211871 remote_ip 10.8.0.2 211877 username farhad3 211877 mac 211877 bytes_out 0 211877 bytes_in 0 211877 station_ip 5.119.16.119 211877 port 38 211877 unique_id port 211877 remote_ip 10.8.1.86 211879 username mosi 211879 kill_reason Another user logged on this global unique id 211879 mac 211879 bytes_out 0 211879 bytes_in 0 211879 station_ip 151.235.124.131 211879 port 62 211879 unique_id port 211890 username aminvpnipad 211890 mac 211890 bytes_out 0 211890 bytes_in 0 211890 station_ip 5.119.204.150 211890 port 1 211890 unique_id port 211890 remote_ip 10.8.0.2 211892 username dorani4942 211892 mac 211892 bytes_out 0 211892 bytes_in 0 211892 station_ip 83.123.142.204 211892 port 50 211892 unique_id port 211892 remote_ip 10.8.0.82 211894 username mosi 211894 kill_reason Another user logged on this global unique id 211894 mac 211894 bytes_out 0 211894 bytes_in 0 211894 station_ip 151.235.124.131 211894 port 62 211894 unique_id port 211897 username barzegar 211897 mac 211897 bytes_out 0 211897 bytes_in 0 211897 station_ip 5.120.55.42 211897 port 61 211897 unique_id port 211897 remote_ip 10.8.0.34 211899 username soleymani5056 211899 mac 211899 bytes_out 0 211899 bytes_in 0 211899 station_ip 5.119.83.132 211899 port 46 211899 unique_id port 211899 remote_ip 10.8.0.246 211900 username soleymani5056 211900 mac 211900 bytes_out 0 211900 bytes_in 0 211900 station_ip 5.119.228.59 211900 port 61 211900 unique_id port 211900 remote_ip 10.8.0.246 211901 username teymori5660 211901 mac 211901 bytes_out 0 211901 bytes_in 0 211901 station_ip 5.119.165.162 211901 port 16 211901 unique_id port 211901 remote_ip 10.8.0.230 211907 username barzegar 211907 mac 211907 bytes_out 0 211907 bytes_in 0 211907 station_ip 5.120.55.42 211907 port 38 211907 unique_id port 211907 remote_ip 10.8.1.30 211909 username barzegar 211909 mac 211909 bytes_out 0 211909 bytes_in 0 211909 station_ip 5.120.55.42 211909 port 38 211909 unique_id port 211909 remote_ip 10.8.1.30 211910 username mosi 211910 kill_reason Another user logged on this global unique id 211910 mac 211910 bytes_out 0 211910 bytes_in 0 211910 station_ip 151.235.124.131 211910 port 62 211910 unique_id port 211918 username yaghobi 211918 mac 211918 bytes_out 1939500 211918 bytes_in 6183337 211918 station_ip 83.122.89.163 211918 port 58 211918 unique_id port 211918 remote_ip 10.8.0.106 211923 username barzegar 211923 mac 211923 bytes_out 0 211923 bytes_in 0 211923 station_ip 5.120.55.42 211923 port 38 211923 unique_id port 211923 remote_ip 10.8.1.30 211925 username barzegar 211925 mac 211925 bytes_out 0 211925 bytes_in 0 211925 station_ip 5.120.55.42 211925 port 38 211925 unique_id port 211925 remote_ip 10.8.1.30 211930 username motamedi9772 211930 kill_reason Another user logged on this global unique id 211930 mac 211930 bytes_out 0 211930 bytes_in 0 211930 station_ip 83.123.59.140 211930 port 16 211930 unique_id port 211930 remote_ip 10.8.0.86 211931 username barzegar 211931 mac 211931 bytes_out 0 211931 bytes_in 0 211931 station_ip 5.120.55.42 211931 port 50 211931 unique_id port 211931 remote_ip 10.8.0.34 211933 username motamedi9772 211933 mac 211933 bytes_out 0 211933 bytes_in 0 211933 station_ip 83.123.59.140 211933 port 16 211933 unique_id port 211933 remote_ip 10.8.0.86 211934 username aminvpn 211934 kill_reason Another user logged on this global unique id 211934 mac 211902 unique_id port 211904 username aminvpns6 211904 kill_reason Another user logged on this global unique id 211904 mac 211904 bytes_out 0 211904 bytes_in 0 211904 station_ip 5.119.36.166 211904 port 50 211904 unique_id port 211904 remote_ip 10.8.0.234 211905 username aminvpnipad 211905 mac 211905 bytes_out 0 211905 bytes_in 0 211905 station_ip 5.119.204.150 211905 port 1 211905 unique_id port 211905 remote_ip 10.8.0.2 211906 username aminvpn 211906 kill_reason Another user logged on this global unique id 211906 mac 211906 bytes_out 0 211906 bytes_in 0 211906 station_ip 5.120.173.67 211906 port 25 211906 unique_id port 211911 username aminvpn 211911 kill_reason Another user logged on this global unique id 211911 mac 211911 bytes_out 0 211911 bytes_in 0 211911 station_ip 5.120.173.67 211911 port 25 211911 unique_id port 211912 username barzegar 211912 mac 211912 bytes_out 0 211912 bytes_in 0 211912 station_ip 5.120.55.42 211912 port 16 211912 unique_id port 211912 remote_ip 10.8.0.34 211913 username aminvpnipad 211913 mac 211913 bytes_out 0 211913 bytes_in 0 211913 station_ip 5.119.204.150 211913 port 1 211913 unique_id port 211913 remote_ip 10.8.0.2 211916 username barzegar 211916 mac 211916 bytes_out 0 211916 bytes_in 0 211916 station_ip 5.120.55.42 211916 port 46 211916 unique_id port 211916 remote_ip 10.8.0.34 211919 username aminvpnipad 211919 mac 211919 bytes_out 0 211919 bytes_in 0 211919 station_ip 5.119.204.150 211919 port 1 211919 unique_id port 211919 remote_ip 10.8.0.2 211921 username aminvpn 211921 kill_reason Another user logged on this global unique id 211921 mac 211921 bytes_out 0 211921 bytes_in 0 211921 station_ip 5.120.173.67 211921 port 25 211921 unique_id port 211927 username malekpoir 211927 mac 211927 bytes_out 99767 211927 bytes_in 156591 211927 station_ip 5.120.109.113 211927 port 37 211927 unique_id port 211927 remote_ip 10.8.1.242 211932 username motamedi9772 211932 mac 211932 bytes_out 0 211932 bytes_in 0 211932 station_ip 83.123.59.140 211932 port 16 211932 unique_id port 211935 username barzegar 211935 mac 211935 bytes_out 0 211935 bytes_in 0 211935 station_ip 5.120.55.42 211935 port 38 211935 unique_id port 211935 remote_ip 10.8.1.30 211937 username aminvpnipad 211937 mac 211937 bytes_out 0 211937 bytes_in 0 211937 station_ip 5.119.204.150 211937 port 2 211937 unique_id port 211937 remote_ip 10.8.0.2 211939 username soleymani5056 211939 mac 211939 bytes_out 0 211939 bytes_in 0 211939 station_ip 5.120.125.55 211939 port 16 211939 unique_id port 211939 remote_ip 10.8.0.246 211940 username malekpoir 211940 mac 211940 bytes_out 0 211940 bytes_in 0 211940 station_ip 5.120.109.113 211940 port 37 211940 unique_id port 211940 remote_ip 10.8.1.242 211942 username aminvpns6 211942 mac 211942 bytes_out 0 211942 bytes_in 0 211942 station_ip 5.119.35.234 211942 port 1 211942 unique_id port 211942 remote_ip 10.8.0.2 211944 username aminvpnipad 211944 mac 211944 bytes_out 0 211944 bytes_in 0 211944 station_ip 5.119.204.150 211944 port 2 211944 unique_id port 211944 remote_ip 10.8.0.2 211948 username barzegar 211948 mac 211948 bytes_out 0 211948 bytes_in 0 211948 station_ip 5.120.55.42 211948 port 40 211948 unique_id port 211948 remote_ip 10.8.1.30 211952 username motamedi9772 211952 kill_reason Another user logged on this global unique id 211952 mac 211952 bytes_out 0 211952 bytes_in 0 211952 station_ip 83.123.83.136 211952 port 16 211952 unique_id port 211952 remote_ip 10.8.0.86 211903 bytes_out 0 211903 bytes_in 0 211903 station_ip 5.120.157.245 211903 port 46 211903 unique_id port 211903 remote_ip 10.8.0.246 211908 username aminvpns6 211908 kill_reason Another user logged on this global unique id 211908 mac 211908 bytes_out 0 211908 bytes_in 0 211908 station_ip 5.119.36.166 211908 port 50 211908 unique_id port 211914 username nilufarrajaei 211914 kill_reason Another user logged on this global unique id 211914 mac 211914 bytes_out 0 211914 bytes_in 0 211914 station_ip 83.123.170.5 211914 port 60 211914 unique_id port 211914 remote_ip 10.8.0.50 211915 username aminvpn 211915 kill_reason Maximum check online fails reached 211915 mac 211915 bytes_out 0 211915 bytes_in 0 211915 station_ip 5.120.173.67 211915 port 25 211915 unique_id port 211917 username aminvpns6 211917 kill_reason Another user logged on this global unique id 211917 mac 211917 bytes_out 0 211917 bytes_in 0 211917 station_ip 5.119.36.166 211917 port 50 211917 unique_id port 211920 username kamali3 211920 mac 211920 bytes_out 0 211920 bytes_in 0 211920 station_ip 83.122.244.66 211920 port 46 211920 unique_id port 211920 remote_ip 10.8.0.182 211922 username aminvpns6 211922 mac 211922 bytes_out 0 211922 bytes_in 0 211922 station_ip 5.119.36.166 211922 port 50 211922 unique_id port 211924 username nilufarrajaei 211924 mac 211924 bytes_out 0 211924 bytes_in 0 211924 station_ip 83.123.170.5 211924 port 60 211924 unique_id port 211926 username aminvpns6 211926 mac 211926 bytes_out 0 211926 bytes_in 0 211926 station_ip 5.119.35.234 211926 port 1 211926 unique_id port 211926 remote_ip 10.8.0.2 211928 username aminvpnipad 211928 mac 211928 bytes_out 0 211928 bytes_in 0 211928 station_ip 5.119.204.150 211928 port 2 211928 unique_id port 211928 remote_ip 10.8.0.2 211929 username aminvpn 211929 kill_reason Another user logged on this global unique id 211929 mac 211929 bytes_out 0 211929 bytes_in 0 211929 station_ip 5.120.173.67 211929 port 25 211929 unique_id port 211946 username kamali3 211946 kill_reason Another user logged on this global unique id 211946 mac 211946 bytes_out 0 211946 bytes_in 0 211946 station_ip 83.122.182.150 211946 port 58 211946 unique_id port 211949 username aminvpns6 211949 mac 211949 bytes_out 0 211949 bytes_in 0 211949 station_ip 5.119.35.234 211949 port 1 211949 unique_id port 211949 remote_ip 10.8.0.2 211951 username barzegar 211951 mac 211951 bytes_out 0 211951 bytes_in 0 211951 station_ip 5.120.55.42 211951 port 38 211951 unique_id port 211951 remote_ip 10.8.1.30 211955 username kamali3 211955 mac 211955 bytes_out 0 211955 bytes_in 0 211955 station_ip 83.122.182.150 211955 port 61 211955 unique_id port 211955 remote_ip 10.8.0.182 211957 username nilufarrajaei 211957 kill_reason Another user logged on this global unique id 211957 mac 211957 bytes_out 0 211957 bytes_in 0 211957 station_ip 83.123.170.5 211957 port 46 211957 unique_id port 211957 remote_ip 10.8.0.50 211962 username motamedi9772 211962 mac 211962 bytes_out 0 211962 bytes_in 0 211962 station_ip 83.123.83.136 211962 port 16 211962 unique_id port 211962 remote_ip 10.8.0.86 211969 username motamedi9772 211969 mac 211969 bytes_out 0 211969 bytes_in 0 211969 station_ip 83.123.83.136 211969 port 16 211969 unique_id port 211969 remote_ip 10.8.0.86 211970 username motamedi9772 211970 mac 211970 bytes_out 0 211970 bytes_in 0 211970 station_ip 83.123.83.136 211970 port 16 211970 unique_id port 211970 remote_ip 10.8.0.86 211978 username nilufarrajaei 211978 mac 211978 bytes_out 193936 211934 bytes_out 0 211934 bytes_in 0 211934 station_ip 5.120.173.67 211934 port 25 211934 unique_id port 211936 username aminvpns6 211936 mac 211936 bytes_out 0 211936 bytes_in 0 211936 station_ip 5.119.35.234 211936 port 1 211936 unique_id port 211936 remote_ip 10.8.0.2 211938 username esmaeilkazemi 211938 mac 211938 bytes_out 0 211938 bytes_in 0 211938 station_ip 37.129.68.205 211938 port 50 211938 unique_id port 211938 remote_ip 10.8.0.66 211941 username barzegar 211941 mac 211941 bytes_out 0 211941 bytes_in 0 211941 station_ip 5.120.55.42 211941 port 38 211941 unique_id port 211941 remote_ip 10.8.1.30 211943 username kamali3 211943 kill_reason Another user logged on this global unique id 211943 mac 211943 bytes_out 0 211943 bytes_in 0 211943 station_ip 83.122.182.150 211943 port 58 211943 unique_id port 211943 remote_ip 10.8.0.182 211945 username dorani4942 211945 mac 211945 bytes_out 0 211945 bytes_in 0 211945 station_ip 37.129.140.120 211945 port 50 211945 unique_id port 211945 remote_ip 10.8.0.82 211947 username dorani4942 211947 mac 211947 bytes_out 0 211947 bytes_in 0 211947 station_ip 37.129.140.120 211947 port 38 211947 unique_id port 211947 remote_ip 10.8.1.118 211950 username aminvpnipad 211950 mac 211950 bytes_out 0 211950 bytes_in 0 211950 station_ip 5.119.204.150 211950 port 2 211950 unique_id port 211950 remote_ip 10.8.0.2 211953 username barzegar 211953 mac 211953 bytes_out 0 211953 bytes_in 0 211953 station_ip 5.120.55.42 211953 port 61 211953 unique_id port 211953 remote_ip 10.8.0.34 211954 username kamali3 211954 mac 211954 bytes_out 0 211954 bytes_in 0 211954 station_ip 83.122.182.150 211954 port 58 211954 unique_id port 211956 username mehrpoyan101 211956 mac 211956 bytes_out 459572 211956 bytes_in 2362241 211956 station_ip 5.120.103.231 211956 port 60 211956 unique_id port 211956 remote_ip 10.8.0.134 211958 username nilufarrajaei 211958 mac 211958 bytes_out 0 211958 bytes_in 0 211958 station_ip 83.123.170.5 211958 port 46 211958 unique_id port 211960 username motamedi9772 211960 mac 211960 bytes_out 0 211960 bytes_in 0 211960 station_ip 83.123.83.136 211960 port 16 211960 unique_id port 211964 username motamedi9772 211964 mac 211964 bytes_out 0 211964 bytes_in 0 211964 station_ip 83.123.83.136 211964 port 16 211964 unique_id port 211964 remote_ip 10.8.0.86 211966 username motamedi9772 211966 mac 211966 bytes_out 0 211966 bytes_in 0 211966 station_ip 83.123.83.136 211966 port 16 211966 unique_id port 211966 remote_ip 10.8.0.86 211971 username motamedi9772 211971 mac 211971 bytes_out 0 211971 bytes_in 0 211971 station_ip 83.123.83.136 211971 port 16 211971 unique_id port 211971 remote_ip 10.8.0.86 211973 username motamedi9772 211973 mac 211973 bytes_out 0 211973 bytes_in 0 211973 station_ip 83.123.83.136 211973 port 16 211973 unique_id port 211973 remote_ip 10.8.0.86 211975 username dorani4942 211975 mac 211975 bytes_out 0 211975 bytes_in 0 211975 station_ip 37.129.209.108 211975 port 38 211975 unique_id port 211975 remote_ip 10.8.1.118 211976 username motamedi9772 211976 mac 211976 bytes_out 0 211976 bytes_in 0 211976 station_ip 83.123.83.136 211976 port 16 211976 unique_id port 211976 remote_ip 10.8.0.86 211980 username motamedi9772 211980 mac 211980 bytes_out 0 211980 bytes_in 0 211980 station_ip 83.123.83.136 211980 port 16 211980 unique_id port 211980 remote_ip 10.8.0.86 211984 username motamedi9772 211959 username barzegar 211959 mac 211959 bytes_out 0 211959 bytes_in 0 211959 station_ip 5.113.120.61 211959 port 60 211959 unique_id port 211959 remote_ip 10.8.0.34 211961 username motamedi9772 211961 mac 211961 bytes_out 0 211961 bytes_in 0 211961 station_ip 83.123.83.136 211961 port 16 211961 unique_id port 211961 remote_ip 10.8.0.86 211963 username aminvpnipad 211963 mac 211963 bytes_out 0 211963 bytes_in 0 211963 station_ip 5.119.204.150 211963 port 1 211963 unique_id port 211963 remote_ip 10.8.0.2 211965 username motamedi9772 211965 mac 211965 bytes_out 0 211965 bytes_in 0 211965 station_ip 83.123.83.136 211965 port 16 211965 unique_id port 211965 remote_ip 10.8.0.86 211967 username motamedi9772 211967 mac 211967 bytes_out 0 211967 bytes_in 0 211967 station_ip 83.123.83.136 211967 port 16 211967 unique_id port 211967 remote_ip 10.8.0.86 211968 username motamedi9772 211968 mac 211968 bytes_out 0 211968 bytes_in 0 211968 station_ip 83.123.83.136 211968 port 16 211968 unique_id port 211968 remote_ip 10.8.0.86 211972 username meysam 211972 kill_reason Another user logged on this global unique id 211972 mac 211972 bytes_out 0 211972 bytes_in 0 211972 station_ip 188.158.48.214 211972 port 58 211972 unique_id port 211972 remote_ip 10.8.0.102 211974 username motamedi9772 211974 mac 211974 bytes_out 0 211974 bytes_in 0 211974 station_ip 83.123.83.136 211974 port 16 211974 unique_id port 211974 remote_ip 10.8.0.86 211977 username motamedi9772 211977 mac 211977 bytes_out 0 211977 bytes_in 0 211977 station_ip 83.123.83.136 211977 port 16 211977 unique_id port 211977 remote_ip 10.8.0.86 211979 username motamedi9772 211979 mac 211979 bytes_out 0 211979 bytes_in 0 211979 station_ip 83.123.83.136 211979 port 16 211979 unique_id port 211979 remote_ip 10.8.0.86 211982 username barzegar 211982 mac 211982 bytes_out 0 211982 bytes_in 0 211982 station_ip 5.113.120.61 211982 port 46 211982 unique_id port 211982 remote_ip 10.8.0.34 211986 username motamedi9772 211986 mac 211986 bytes_out 0 211986 bytes_in 0 211986 station_ip 83.123.83.136 211986 port 16 211986 unique_id port 211986 remote_ip 10.8.0.86 211987 username motamedi9772 211987 mac 211987 bytes_out 8122 211987 bytes_in 14541 211987 station_ip 83.123.83.136 211987 port 16 211987 unique_id port 211987 remote_ip 10.8.0.86 211988 username motamedi9772 211988 mac 211988 bytes_out 0 211988 bytes_in 0 211988 station_ip 83.123.83.136 211988 port 16 211988 unique_id port 211988 remote_ip 10.8.0.86 211989 username motamedi9772 211989 mac 211989 bytes_out 0 211989 bytes_in 0 211989 station_ip 83.123.83.136 211989 port 16 211989 unique_id port 211989 remote_ip 10.8.0.86 211991 username aminvpnipad 211991 mac 211991 bytes_out 0 211991 bytes_in 0 211991 station_ip 5.119.204.150 211991 port 1 211991 unique_id port 211991 remote_ip 10.8.0.2 211993 username motamedi9772 211993 mac 211993 bytes_out 0 211993 bytes_in 0 211993 station_ip 83.123.83.136 211993 port 16 211993 unique_id port 211993 remote_ip 10.8.0.86 211994 username motamedi9772 211994 mac 211994 bytes_out 0 211994 bytes_in 0 211994 station_ip 83.123.83.136 211994 port 16 211994 unique_id port 211994 remote_ip 10.8.0.86 211995 username motamedi9772 211995 mac 211995 bytes_out 0 211995 bytes_in 0 211995 station_ip 83.123.83.136 211995 port 16 211995 unique_id port 211995 remote_ip 10.8.0.86 211999 username motamedi9772 211999 mac 211999 bytes_out 0 211978 bytes_in 892934 211978 station_ip 83.123.170.5 211978 port 61 211978 unique_id port 211978 remote_ip 10.8.0.50 211981 username motamedi9772 211981 mac 211981 bytes_out 0 211981 bytes_in 0 211981 station_ip 83.123.83.136 211981 port 16 211981 unique_id port 211981 remote_ip 10.8.0.86 211983 username motamedi9772 211983 mac 211983 bytes_out 0 211983 bytes_in 0 211983 station_ip 83.123.83.136 211983 port 16 211983 unique_id port 211983 remote_ip 10.8.0.86 211996 username motamedi9772 211996 mac 211996 bytes_out 0 211996 bytes_in 0 211996 station_ip 83.123.83.136 211996 port 16 211996 unique_id port 211996 remote_ip 10.8.0.86 212003 username motamedi9772 212003 mac 212003 bytes_out 0 212003 bytes_in 0 212003 station_ip 83.123.83.136 212003 port 16 212003 unique_id port 212003 remote_ip 10.8.0.86 212005 username motamedi9772 212005 mac 212005 bytes_out 0 212005 bytes_in 0 212005 station_ip 83.123.83.136 212005 port 16 212005 unique_id port 212005 remote_ip 10.8.0.86 212012 username barzegar 212012 mac 212012 bytes_out 0 212012 bytes_in 0 212012 station_ip 5.113.6.158 212012 port 61 212012 unique_id port 212012 remote_ip 10.8.0.34 212015 username motamedi9772 212015 mac 212015 bytes_out 0 212015 bytes_in 0 212015 station_ip 83.123.83.136 212015 port 61 212015 unique_id port 212015 remote_ip 10.8.0.86 212016 username pourshad 212016 kill_reason Another user logged on this global unique id 212016 mac 212016 bytes_out 0 212016 bytes_in 0 212016 station_ip 5.120.54.100 212016 port 46 212016 unique_id port 212016 remote_ip 10.8.0.122 212018 username motamedi9772 212018 mac 212018 bytes_out 0 212018 bytes_in 0 212018 station_ip 83.123.83.136 212018 port 61 212018 unique_id port 212018 remote_ip 10.8.0.86 212025 username aminvpnipad 212025 mac 212025 bytes_out 0 212025 bytes_in 0 212025 station_ip 5.119.204.150 212025 port 2 212025 unique_id port 212025 remote_ip 10.8.0.2 212028 username motamedi9772 212028 mac 212028 bytes_out 0 212028 bytes_in 0 212028 station_ip 83.123.83.136 212028 port 61 212028 unique_id port 212028 remote_ip 10.8.0.86 212029 username motamedi9772 212029 mac 212029 bytes_out 0 212029 bytes_in 0 212029 station_ip 83.123.83.136 212029 port 61 212029 unique_id port 212029 remote_ip 10.8.0.86 212034 username mehrpoyan101 212034 mac 212034 bytes_out 480558 212034 bytes_in 2920209 212034 station_ip 5.120.88.209 212034 port 16 212034 unique_id port 212034 remote_ip 10.8.0.134 212040 username motamedi9772 212040 mac 212040 bytes_out 0 212040 bytes_in 0 212040 station_ip 83.123.83.136 212040 port 16 212040 unique_id port 212040 remote_ip 10.8.0.86 212043 username yaghobi 212043 mac 212043 bytes_out 1882529 212043 bytes_in 30603259 212043 station_ip 83.122.108.183 212043 port 60 212043 unique_id port 212043 remote_ip 10.8.0.106 212045 username meysam 212045 kill_reason Another user logged on this global unique id 212045 mac 212045 bytes_out 0 212045 bytes_in 0 212045 station_ip 188.158.48.214 212045 port 58 212045 unique_id port 212046 username motamedi9772 212046 mac 212046 bytes_out 0 212046 bytes_in 0 212046 station_ip 83.123.83.136 212046 port 16 212046 unique_id port 212046 remote_ip 10.8.0.86 212048 username motamedi9772 212048 mac 212048 bytes_out 0 212048 bytes_in 0 212048 station_ip 83.123.83.136 212048 port 16 212048 unique_id port 212048 remote_ip 10.8.0.86 212050 username motamedi9772 212050 mac 212050 bytes_out 0 212050 bytes_in 0 212050 station_ip 83.123.83.136 211984 mac 211984 bytes_out 0 211984 bytes_in 0 211984 station_ip 83.123.83.136 211984 port 16 211984 unique_id port 211984 remote_ip 10.8.0.86 211985 username motamedi9772 211985 mac 211985 bytes_out 0 211985 bytes_in 0 211985 station_ip 83.123.83.136 211985 port 16 211985 unique_id port 211985 remote_ip 10.8.0.86 211990 username motamedi9772 211990 mac 211990 bytes_out 0 211990 bytes_in 0 211990 station_ip 83.123.83.136 211990 port 16 211990 unique_id port 211990 remote_ip 10.8.0.86 211992 username mosi 211992 kill_reason Another user logged on this global unique id 211992 mac 211992 bytes_out 0 211992 bytes_in 0 211992 station_ip 151.235.124.131 211992 port 62 211992 unique_id port 211997 username motamedi9772 211997 mac 211997 bytes_out 0 211997 bytes_in 0 211997 station_ip 83.123.83.136 211997 port 16 211997 unique_id port 211997 remote_ip 10.8.0.86 211998 username motamedi9772 211998 mac 211998 bytes_out 0 211998 bytes_in 0 211998 station_ip 83.123.83.136 211998 port 16 211998 unique_id port 211998 remote_ip 10.8.0.86 212000 username motamedi9772 212000 mac 212000 bytes_out 0 212000 bytes_in 0 212000 station_ip 83.123.83.136 212000 port 16 212000 unique_id port 212000 remote_ip 10.8.0.86 212004 username motamedi9772 212004 mac 212004 bytes_out 0 212004 bytes_in 0 212004 station_ip 83.123.83.136 212004 port 16 212004 unique_id port 212004 remote_ip 10.8.0.86 212006 username motamedi9772 212006 mac 212006 bytes_out 0 212006 bytes_in 0 212006 station_ip 83.123.83.136 212006 port 16 212006 unique_id port 212006 remote_ip 10.8.0.86 212007 username motamedi9772 212007 mac 212007 bytes_out 0 212007 bytes_in 0 212007 station_ip 83.123.83.136 212007 port 16 212007 unique_id port 212007 remote_ip 10.8.0.86 212009 username malekpoir 212009 mac 212009 bytes_out 57376 212009 bytes_in 63398 212009 station_ip 5.120.109.113 212009 port 37 212009 unique_id port 212009 remote_ip 10.8.1.242 212010 username khademi 212010 kill_reason Another user logged on this global unique id 212010 mac 212010 bytes_out 0 212010 bytes_in 0 212010 station_ip 37.129.95.252 212010 port 19 212010 unique_id port 212019 username mosi 212019 kill_reason Another user logged on this global unique id 212019 mac 212019 bytes_out 0 212019 bytes_in 0 212019 station_ip 151.235.124.131 212019 port 62 212019 unique_id port 212023 username dorani4942 212023 mac 212023 bytes_out 2427 212023 bytes_in 4888 212023 station_ip 37.129.209.108 212023 port 63 212023 unique_id port 212023 remote_ip 10.8.0.82 212026 username motamedi9772 212026 mac 212026 bytes_out 0 212026 bytes_in 0 212026 station_ip 83.123.83.136 212026 port 61 212026 unique_id port 212026 remote_ip 10.8.0.86 212030 username motamedi9772 212030 mac 212030 bytes_out 0 212030 bytes_in 0 212030 station_ip 83.123.83.136 212030 port 61 212030 unique_id port 212030 remote_ip 10.8.0.86 212032 username khademi 212032 kill_reason Another user logged on this global unique id 212032 mac 212032 bytes_out 0 212032 bytes_in 0 212032 station_ip 37.129.95.252 212032 port 19 212032 unique_id port 212037 username motamedi9772 212037 mac 212037 bytes_out 0 212037 bytes_in 0 212037 station_ip 83.123.83.136 212037 port 16 212037 unique_id port 212037 remote_ip 10.8.0.86 212039 username motamedi9772 212039 mac 212039 bytes_out 0 212039 bytes_in 0 212039 station_ip 83.123.83.136 212039 port 16 212039 unique_id port 212039 remote_ip 10.8.0.86 212041 username motamedi9772 212041 mac 212041 bytes_out 0 211999 bytes_in 0 211999 station_ip 83.123.83.136 211999 port 16 211999 unique_id port 211999 remote_ip 10.8.0.86 212001 username dorani4942 212001 mac 212001 bytes_out 0 212001 bytes_in 0 212001 station_ip 37.129.209.108 212001 port 38 212001 unique_id port 212001 remote_ip 10.8.1.118 212002 username motamedi9772 212002 mac 212002 bytes_out 0 212002 bytes_in 0 212002 station_ip 83.123.83.136 212002 port 16 212002 unique_id port 212002 remote_ip 10.8.0.86 212008 username motamedi9772 212008 mac 212008 bytes_out 0 212008 bytes_in 0 212008 station_ip 83.123.83.136 212008 port 16 212008 unique_id port 212008 remote_ip 10.8.0.86 212011 username motamedi9772 212011 mac 212011 bytes_out 0 212011 bytes_in 0 212011 station_ip 83.123.83.136 212011 port 63 212011 unique_id port 212011 remote_ip 10.8.0.86 212013 username motamedi9772 212013 mac 212013 bytes_out 0 212013 bytes_in 0 212013 station_ip 83.123.83.136 212013 port 63 212013 unique_id port 212013 remote_ip 10.8.0.86 212014 username motamedi9772 212014 mac 212014 bytes_out 0 212014 bytes_in 0 212014 station_ip 83.123.83.136 212014 port 61 212014 unique_id port 212014 remote_ip 10.8.0.86 212017 username motamedi9772 212017 mac 212017 bytes_out 0 212017 bytes_in 0 212017 station_ip 83.123.83.136 212017 port 61 212017 unique_id port 212017 remote_ip 10.8.0.86 212020 username motamedi9772 212020 mac 212020 bytes_out 0 212020 bytes_in 0 212020 station_ip 83.123.83.136 212020 port 61 212020 unique_id port 212020 remote_ip 10.8.0.86 212021 username aminvpns6 212021 mac 212021 bytes_out 0 212021 bytes_in 0 212021 station_ip 5.119.35.234 212021 port 1 212021 unique_id port 212021 remote_ip 10.8.0.2 212022 username motamedi9772 212022 mac 212022 bytes_out 0 212022 bytes_in 0 212022 station_ip 83.123.83.136 212022 port 61 212022 unique_id port 212022 remote_ip 10.8.0.86 212024 username motamedi9772 212024 mac 212024 bytes_out 0 212024 bytes_in 0 212024 station_ip 83.123.83.136 212024 port 61 212024 unique_id port 212024 remote_ip 10.8.0.86 212027 username motamedi9772 212027 mac 212027 bytes_out 0 212027 bytes_in 0 212027 station_ip 83.123.83.136 212027 port 61 212027 unique_id port 212027 remote_ip 10.8.0.86 212031 username motamedi9772 212031 mac 212031 bytes_out 0 212031 bytes_in 0 212031 station_ip 83.123.83.136 212031 port 61 212031 unique_id port 212031 remote_ip 10.8.0.86 212033 username motamedi9772 212033 mac 212033 bytes_out 0 212033 bytes_in 0 212033 station_ip 83.123.83.136 212033 port 61 212033 unique_id port 212033 remote_ip 10.8.0.86 212035 username motamedi9772 212035 mac 212035 bytes_out 0 212035 bytes_in 0 212035 station_ip 83.123.83.136 212035 port 61 212035 unique_id port 212035 remote_ip 10.8.0.86 212036 username motamedi9772 212036 mac 212036 bytes_out 0 212036 bytes_in 0 212036 station_ip 83.123.83.136 212036 port 16 212036 unique_id port 212036 remote_ip 10.8.0.86 212038 username dorani4942 212038 mac 212038 bytes_out 0 212038 bytes_in 0 212038 station_ip 37.129.209.108 212038 port 40 212038 unique_id port 212038 remote_ip 10.8.1.118 212042 username motamedi9772 212042 mac 212042 bytes_out 0 212042 bytes_in 0 212042 station_ip 83.123.83.136 212042 port 16 212042 unique_id port 212042 remote_ip 10.8.0.86 212054 username motamedi9772 212054 mac 212054 bytes_out 0 212054 bytes_in 0 212054 station_ip 83.123.83.136 212054 port 16 212054 unique_id port 212054 remote_ip 10.8.0.86 212041 bytes_in 0 212041 station_ip 83.123.83.136 212041 port 16 212041 unique_id port 212041 remote_ip 10.8.0.86 212044 username motamedi9772 212044 mac 212044 bytes_out 0 212044 bytes_in 0 212044 station_ip 83.123.83.136 212044 port 16 212044 unique_id port 212044 remote_ip 10.8.0.86 212047 username motamedi9772 212047 mac 212047 bytes_out 0 212047 bytes_in 0 212047 station_ip 83.123.83.136 212047 port 16 212047 unique_id port 212047 remote_ip 10.8.0.86 212049 username mehrpoyan101 212049 mac 212049 bytes_out 252525 212049 bytes_in 1608465 212049 station_ip 5.120.46.59 212049 port 38 212049 unique_id port 212049 remote_ip 10.8.1.18 212051 username motamedi9772 212051 mac 212051 bytes_out 0 212051 bytes_in 0 212051 station_ip 83.123.83.136 212051 port 16 212051 unique_id port 212051 remote_ip 10.8.0.86 212052 username motamedi9772 212052 mac 212052 bytes_out 0 212052 bytes_in 0 212052 station_ip 83.123.83.136 212052 port 16 212052 unique_id port 212052 remote_ip 10.8.0.86 212053 username motamedi9772 212053 mac 212053 bytes_out 0 212053 bytes_in 0 212053 station_ip 83.123.83.136 212053 port 16 212053 unique_id port 212053 remote_ip 10.8.0.86 212055 username meysam 212055 mac 212055 bytes_out 0 212055 bytes_in 0 212055 station_ip 188.158.48.214 212055 port 58 212055 unique_id port 212056 username dorani4942 212056 mac 212056 bytes_out 0 212056 bytes_in 0 212056 station_ip 37.129.209.108 212056 port 61 212056 unique_id port 212056 remote_ip 10.8.0.82 212060 username motamedi9772 212060 mac 212060 bytes_out 0 212060 bytes_in 0 212060 station_ip 83.123.83.136 212060 port 16 212060 unique_id port 212060 remote_ip 10.8.0.86 212061 username aminvpns6 212061 mac 212061 bytes_out 0 212061 bytes_in 0 212061 station_ip 5.119.35.234 212061 port 1 212061 unique_id port 212061 remote_ip 10.8.0.2 212066 username dorani4942 212066 mac 212066 bytes_out 0 212066 bytes_in 0 212066 station_ip 37.129.209.108 212066 port 38 212066 unique_id port 212066 remote_ip 10.8.1.118 212068 username motamedi9772 212068 mac 212068 bytes_out 0 212068 bytes_in 0 212068 station_ip 83.123.83.136 212068 port 16 212068 unique_id port 212068 remote_ip 10.8.0.86 212072 username motamedi9772 212072 mac 212072 bytes_out 0 212072 bytes_in 0 212072 station_ip 83.123.83.136 212072 port 16 212072 unique_id port 212072 remote_ip 10.8.0.86 212073 username motamedi9772 212073 mac 212073 bytes_out 0 212073 bytes_in 0 212073 station_ip 83.123.83.136 212073 port 16 212073 unique_id port 212073 remote_ip 10.8.0.86 212076 username motamedi9772 212076 mac 212076 bytes_out 0 212076 bytes_in 0 212076 station_ip 83.123.83.136 212076 port 16 212076 unique_id port 212076 remote_ip 10.8.0.86 212080 username motamedi9772 212080 mac 212080 bytes_out 0 212080 bytes_in 0 212080 station_ip 83.123.83.136 212080 port 16 212080 unique_id port 212080 remote_ip 10.8.0.86 212082 username motamedi9772 212082 mac 212082 bytes_out 0 212082 bytes_in 0 212082 station_ip 83.123.83.136 212082 port 16 212082 unique_id port 212082 remote_ip 10.8.0.86 212088 username dorani4942 212088 mac 212088 bytes_out 0 212088 bytes_in 0 212088 station_ip 37.129.209.108 212088 port 46 212088 unique_id port 212088 remote_ip 10.8.0.82 212089 username motamedi9772 212089 mac 212089 bytes_out 0 212089 bytes_in 0 212089 station_ip 83.123.83.136 212089 port 16 212089 unique_id port 212089 remote_ip 10.8.0.86 212093 username mehrpoyan101 212050 port 16 212050 unique_id port 212050 remote_ip 10.8.0.86 212057 username motamedi9772 212057 mac 212057 bytes_out 0 212057 bytes_in 0 212057 station_ip 83.123.83.136 212057 port 16 212057 unique_id port 212057 remote_ip 10.8.0.86 212059 username motamedi9772 212059 mac 212059 bytes_out 0 212059 bytes_in 0 212059 station_ip 83.123.83.136 212059 port 16 212059 unique_id port 212059 remote_ip 10.8.0.86 212062 username motamedi9772 212062 mac 212062 bytes_out 0 212062 bytes_in 0 212062 station_ip 83.123.83.136 212062 port 16 212062 unique_id port 212062 remote_ip 10.8.0.86 212063 username mehrpoyan101 212063 mac 212063 bytes_out 0 212063 bytes_in 0 212063 station_ip 5.120.46.59 212063 port 60 212063 unique_id port 212063 remote_ip 10.8.0.134 212071 username motamedi9772 212071 mac 212071 bytes_out 0 212071 bytes_in 0 212071 station_ip 83.123.83.136 212071 port 16 212071 unique_id port 212071 remote_ip 10.8.0.86 212077 username motamedi9772 212077 mac 212077 bytes_out 0 212077 bytes_in 0 212077 station_ip 83.123.83.136 212077 port 16 212077 unique_id port 212077 remote_ip 10.8.0.86 212079 username motamedi9772 212079 mac 212079 bytes_out 0 212079 bytes_in 0 212079 station_ip 83.123.83.136 212079 port 16 212079 unique_id port 212079 remote_ip 10.8.0.86 212081 username khademi 212081 kill_reason Another user logged on this global unique id 212081 mac 212081 bytes_out 0 212081 bytes_in 0 212081 station_ip 37.129.95.252 212081 port 19 212081 unique_id port 212084 username motamedi9772 212084 mac 212084 bytes_out 0 212084 bytes_in 0 212084 station_ip 83.123.83.136 212084 port 16 212084 unique_id port 212084 remote_ip 10.8.0.86 212086 username mehrpoyan101 212086 mac 212086 bytes_out 0 212086 bytes_in 0 212086 station_ip 5.120.46.59 212086 port 25 212086 unique_id port 212086 remote_ip 10.8.0.134 212095 username motamedi9772 212095 mac 212095 bytes_out 0 212095 bytes_in 0 212095 station_ip 83.123.83.136 212095 port 16 212095 unique_id port 212095 remote_ip 10.8.0.86 212097 username motamedi9772 212097 mac 212097 bytes_out 0 212097 bytes_in 0 212097 station_ip 83.123.83.136 212097 port 58 212097 unique_id port 212097 remote_ip 10.8.0.86 212098 username motamedi9772 212098 mac 212098 bytes_out 0 212098 bytes_in 0 212098 station_ip 83.123.83.136 212098 port 25 212098 unique_id port 212098 remote_ip 10.8.0.86 212099 username motamedi9772 212099 mac 212099 bytes_out 0 212099 bytes_in 0 212099 station_ip 83.123.83.136 212099 port 25 212099 unique_id port 212099 remote_ip 10.8.0.86 212102 username aminvpnipad 212102 mac 212102 bytes_out 0 212102 bytes_in 0 212102 station_ip 5.119.204.150 212102 port 1 212102 unique_id port 212102 remote_ip 10.8.0.2 212105 username khademi 212105 kill_reason Another user logged on this global unique id 212105 mac 212105 bytes_out 0 212105 bytes_in 0 212105 station_ip 37.129.95.252 212105 port 19 212105 unique_id port 212110 username motamedi9772 212110 mac 212110 bytes_out 0 212110 bytes_in 0 212110 station_ip 83.123.83.136 212110 port 46 212110 unique_id port 212110 remote_ip 10.8.0.86 212113 username pourshad 212113 mac 212113 bytes_out 59804 212113 bytes_in 541667 212113 station_ip 5.120.54.100 212113 port 38 212113 unique_id port 212113 remote_ip 10.8.1.10 212116 username barzegar 212116 mac 212116 bytes_out 0 212116 bytes_in 0 212116 station_ip 5.112.231.9 212116 port 38 212116 unique_id port 212116 remote_ip 10.8.1.30 212058 username aminvpn 212058 mac 212058 bytes_out 0 212058 bytes_in 0 212058 station_ip 5.120.173.67 212058 port 25 212058 unique_id port 212064 username motamedi9772 212064 mac 212064 bytes_out 0 212064 bytes_in 0 212064 station_ip 83.123.83.136 212064 port 16 212064 unique_id port 212064 remote_ip 10.8.0.86 212065 username motamedi9772 212065 mac 212065 bytes_out 0 212065 bytes_in 0 212065 station_ip 83.123.83.136 212065 port 16 212065 unique_id port 212065 remote_ip 10.8.0.86 212067 username aminvpnipad 212067 mac 212067 bytes_out 0 212067 bytes_in 0 212067 station_ip 5.119.204.150 212067 port 2 212067 unique_id port 212067 remote_ip 10.8.0.2 212069 username motamedi9772 212069 mac 212069 bytes_out 0 212069 bytes_in 0 212069 station_ip 83.123.83.136 212069 port 16 212069 unique_id port 212069 remote_ip 10.8.0.86 212070 username motamedi9772 212070 mac 212070 bytes_out 0 212070 bytes_in 0 212070 station_ip 83.123.83.136 212070 port 16 212070 unique_id port 212070 remote_ip 10.8.0.86 212074 username motamedi9772 212074 mac 212074 bytes_out 0 212074 bytes_in 0 212074 station_ip 83.123.83.136 212074 port 16 212074 unique_id port 212074 remote_ip 10.8.0.86 212075 username pourshad 212075 mac 212075 bytes_out 0 212075 bytes_in 0 212075 station_ip 5.120.54.100 212075 port 46 212075 unique_id port 212078 username dorani4942 212078 mac 212078 bytes_out 0 212078 bytes_in 0 212078 station_ip 37.129.209.108 212078 port 38 212078 unique_id port 212078 remote_ip 10.8.1.118 212083 username motamedi9772 212083 mac 212083 bytes_out 0 212083 bytes_in 0 212083 station_ip 83.123.83.136 212083 port 16 212083 unique_id port 212083 remote_ip 10.8.0.86 212085 username pourshad 212085 mac 212085 bytes_out 0 212085 bytes_in 0 212085 station_ip 5.120.54.100 212085 port 58 212085 unique_id port 212085 remote_ip 10.8.0.122 212087 username motamedi9772 212087 mac 212087 bytes_out 0 212087 bytes_in 0 212087 station_ip 83.123.83.136 212087 port 16 212087 unique_id port 212087 remote_ip 10.8.0.86 212090 username motamedi9772 212090 mac 212090 bytes_out 0 212090 bytes_in 0 212090 station_ip 83.123.83.136 212090 port 16 212090 unique_id port 212090 remote_ip 10.8.0.86 212091 username motamedi9772 212091 mac 212091 bytes_out 0 212091 bytes_in 0 212091 station_ip 83.123.83.136 212091 port 16 212091 unique_id port 212091 remote_ip 10.8.0.86 212092 username motamedi9772 212092 mac 212092 bytes_out 0 212092 bytes_in 0 212092 station_ip 83.123.83.136 212092 port 16 212092 unique_id port 212092 remote_ip 10.8.0.86 212094 username motamedi9772 212094 mac 212094 bytes_out 0 212094 bytes_in 0 212094 station_ip 83.123.83.136 212094 port 16 212094 unique_id port 212094 remote_ip 10.8.0.86 212101 username motamedi9772 212101 mac 212101 bytes_out 0 212101 bytes_in 0 212101 station_ip 83.123.83.136 212101 port 46 212101 unique_id port 212101 remote_ip 10.8.0.86 212103 username motamedi9772 212103 mac 212103 bytes_out 0 212103 bytes_in 0 212103 station_ip 83.123.83.136 212103 port 46 212103 unique_id port 212103 remote_ip 10.8.0.86 212104 username motamedi9772 212104 mac 212104 bytes_out 0 212104 bytes_in 0 212104 station_ip 83.123.83.136 212104 port 46 212104 unique_id port 212104 remote_ip 10.8.0.86 212107 username motamedi9772 212107 mac 212107 bytes_out 0 212107 bytes_in 0 212107 station_ip 83.123.83.136 212107 port 46 212107 unique_id port 212093 mac 212093 bytes_out 0 212093 bytes_in 0 212093 station_ip 5.120.42.244 212093 port 58 212093 unique_id port 212093 remote_ip 10.8.0.134 212096 username yaghobi 212096 mac 212096 bytes_out 0 212096 bytes_in 0 212096 station_ip 83.122.91.19 212096 port 25 212096 unique_id port 212096 remote_ip 10.8.0.106 212100 username mehrpoyan101 212100 mac 212100 bytes_out 0 212100 bytes_in 0 212100 station_ip 5.120.42.244 212100 port 46 212100 unique_id port 212100 remote_ip 10.8.0.134 212106 username motamedi9772 212106 mac 212106 bytes_out 0 212106 bytes_in 0 212106 station_ip 83.123.83.136 212106 port 46 212106 unique_id port 212106 remote_ip 10.8.0.86 212111 username mehrpoyan101 212111 mac 212111 bytes_out 58039 212111 bytes_in 161524 212111 station_ip 5.119.136.237 212111 port 25 212111 unique_id port 212111 remote_ip 10.8.0.134 212115 username motamedi9772 212115 mac 212115 bytes_out 0 212115 bytes_in 0 212115 station_ip 83.123.83.136 212115 port 25 212115 unique_id port 212115 remote_ip 10.8.0.86 212117 username motamedi9772 212117 mac 212117 bytes_out 0 212117 bytes_in 0 212117 station_ip 83.123.83.136 212117 port 25 212117 unique_id port 212117 remote_ip 10.8.0.86 212118 username motamedi9772 212118 mac 212118 bytes_out 0 212118 bytes_in 0 212118 station_ip 83.123.83.136 212118 port 25 212118 unique_id port 212118 remote_ip 10.8.0.86 212121 username khalili2 212121 mac 212121 bytes_out 0 212121 bytes_in 0 212121 station_ip 5.119.209.186 212121 port 58 212121 unique_id port 212121 remote_ip 10.8.0.78 212128 username motamedi9772 212128 mac 212128 bytes_out 0 212128 bytes_in 0 212128 station_ip 83.123.83.136 212128 port 25 212128 unique_id port 212128 remote_ip 10.8.0.86 212132 username motamedi9772 212132 mac 212132 bytes_out 0 212132 bytes_in 0 212132 station_ip 83.123.83.136 212132 port 25 212132 unique_id port 212132 remote_ip 10.8.0.86 212135 username soleymani5056 212135 mac 212135 bytes_out 0 212135 bytes_in 0 212135 station_ip 5.120.147.172 212135 port 16 212135 unique_id port 212135 remote_ip 10.8.0.246 212140 username motamedi9772 212140 mac 212140 bytes_out 0 212140 bytes_in 0 212140 station_ip 83.123.83.136 212140 port 16 212140 unique_id port 212140 remote_ip 10.8.0.86 212145 username motamedi9772 212145 mac 212145 bytes_out 0 212145 bytes_in 0 212145 station_ip 83.123.83.136 212145 port 16 212145 unique_id port 212145 remote_ip 10.8.0.86 212146 username motamedi9772 212146 mac 212146 bytes_out 0 212146 bytes_in 0 212146 station_ip 83.123.83.136 212146 port 16 212146 unique_id port 212146 remote_ip 10.8.0.86 212148 username alipour1506 212148 kill_reason Another user logged on this global unique id 212148 mac 212148 bytes_out 0 212148 bytes_in 0 212148 station_ip 94.176.8.78 212148 port 41 212148 unique_id port 212150 username motamedi9772 212150 mac 212150 bytes_out 0 212150 bytes_in 0 212150 station_ip 83.123.83.136 212150 port 16 212150 unique_id port 212150 remote_ip 10.8.0.86 212152 username sabaghnezhad 212152 mac 212152 bytes_out 0 212152 bytes_in 0 212152 station_ip 37.129.85.55 212152 port 50 212152 unique_id port 212152 remote_ip 10.8.0.94 212163 username motamedi9772 212163 mac 212163 bytes_out 0 212163 bytes_in 0 212163 station_ip 83.123.83.136 212163 port 16 212163 unique_id port 212163 remote_ip 10.8.0.86 212167 username motamedi9772 212167 mac 212167 bytes_out 0 212167 bytes_in 0 212167 station_ip 83.123.83.136 212107 remote_ip 10.8.0.86 212108 username motamedi9772 212108 mac 212108 bytes_out 0 212108 bytes_in 0 212108 station_ip 83.123.83.136 212108 port 46 212108 unique_id port 212108 remote_ip 10.8.0.86 212109 username motamedi9772 212109 mac 212109 bytes_out 0 212109 bytes_in 0 212109 station_ip 83.123.83.136 212109 port 46 212109 unique_id port 212109 remote_ip 10.8.0.86 212112 username arash 212112 mac 212112 bytes_out 0 212112 bytes_in 0 212112 station_ip 37.27.30.244 212112 port 58 212112 unique_id port 212112 remote_ip 10.8.0.206 212114 username motamedi9772 212114 mac 212114 bytes_out 0 212114 bytes_in 0 212114 station_ip 83.123.83.136 212114 port 25 212114 unique_id port 212114 remote_ip 10.8.0.86 212119 username dorani4942 212119 mac 212119 bytes_out 0 212119 bytes_in 0 212119 station_ip 37.129.209.108 212119 port 40 212119 unique_id port 212119 remote_ip 10.8.1.118 212124 username pourshad 212124 mac 212124 bytes_out 0 212124 bytes_in 0 212124 station_ip 5.120.54.100 212124 port 25 212124 unique_id port 212124 remote_ip 10.8.0.122 212125 username motamedi9772 212125 mac 212125 bytes_out 0 212125 bytes_in 0 212125 station_ip 83.123.83.136 212125 port 25 212125 unique_id port 212125 remote_ip 10.8.0.86 212126 username motamedi9772 212126 mac 212126 bytes_out 0 212126 bytes_in 0 212126 station_ip 83.123.83.136 212126 port 25 212126 unique_id port 212126 remote_ip 10.8.0.86 212131 username barzegar 212131 mac 212131 bytes_out 0 212131 bytes_in 0 212131 station_ip 5.112.231.9 212131 port 40 212131 unique_id port 212131 remote_ip 10.8.1.30 212134 username motamedi9772 212134 mac 212134 bytes_out 0 212134 bytes_in 0 212134 station_ip 83.123.83.136 212134 port 25 212134 unique_id port 212134 remote_ip 10.8.0.86 212137 username mosi 212137 kill_reason Another user logged on this global unique id 212137 mac 212137 bytes_out 0 212137 bytes_in 0 212137 station_ip 151.235.124.131 212137 port 62 212137 unique_id port 212141 username motamedi9772 212141 mac 212141 bytes_out 0 212141 bytes_in 0 212141 station_ip 83.123.83.136 212141 port 16 212141 unique_id port 212141 remote_ip 10.8.0.86 212142 username motamedi9772 212142 mac 212142 bytes_out 0 212142 bytes_in 0 212142 station_ip 83.123.83.136 212142 port 16 212142 unique_id port 212142 remote_ip 10.8.0.86 212143 username motamedi9772 212143 mac 212143 bytes_out 0 212143 bytes_in 0 212143 station_ip 83.123.83.136 212143 port 16 212143 unique_id port 212143 remote_ip 10.8.0.86 212144 username pourshad 212144 mac 212144 bytes_out 82131 212144 bytes_in 623597 212144 station_ip 5.120.54.100 212144 port 38 212144 unique_id port 212144 remote_ip 10.8.1.10 212149 username pourshad 212149 mac 212149 bytes_out 0 212149 bytes_in 0 212149 station_ip 5.120.54.100 212149 port 38 212149 unique_id port 212149 remote_ip 10.8.1.10 212155 username soleymani5056 212155 mac 212155 bytes_out 0 212155 bytes_in 0 212155 station_ip 5.119.73.45 212155 port 58 212155 unique_id port 212155 remote_ip 10.8.0.246 212157 username motamedi9772 212157 mac 212157 bytes_out 0 212157 bytes_in 0 212157 station_ip 83.123.83.136 212157 port 16 212157 unique_id port 212157 remote_ip 10.8.0.86 212158 username motamedi9772 212158 mac 212158 bytes_out 0 212158 bytes_in 0 212158 station_ip 83.123.83.136 212158 port 16 212158 unique_id port 212158 remote_ip 10.8.0.86 212160 username soleymani5056 212160 mac 212160 bytes_out 42338 212120 username motamedi9772 212120 mac 212120 bytes_out 0 212120 bytes_in 0 212120 station_ip 83.123.83.136 212120 port 60 212120 unique_id port 212120 remote_ip 10.8.0.86 212122 username motamedi9772 212122 mac 212122 bytes_out 0 212122 bytes_in 0 212122 station_ip 83.123.83.136 212122 port 60 212122 unique_id port 212122 remote_ip 10.8.0.86 212123 username motamedi9772 212123 mac 212123 bytes_out 0 212123 bytes_in 0 212123 station_ip 83.123.83.136 212123 port 58 212123 unique_id port 212123 remote_ip 10.8.0.86 212127 username motamedi9772 212127 mac 212127 bytes_out 0 212127 bytes_in 0 212127 station_ip 83.123.83.136 212127 port 25 212127 unique_id port 212127 remote_ip 10.8.0.86 212129 username motamedi9772 212129 mac 212129 bytes_out 0 212129 bytes_in 0 212129 station_ip 83.123.83.136 212129 port 25 212129 unique_id port 212129 remote_ip 10.8.0.86 212130 username dorani4942 212130 mac 212130 bytes_out 0 212130 bytes_in 0 212130 station_ip 37.129.209.108 212130 port 58 212130 unique_id port 212130 remote_ip 10.8.0.82 212133 username motamedi9772 212133 mac 212133 bytes_out 0 212133 bytes_in 0 212133 station_ip 83.123.83.136 212133 port 25 212133 unique_id port 212133 remote_ip 10.8.0.86 212136 username khademi 212136 kill_reason Another user logged on this global unique id 212136 mac 212136 bytes_out 0 212136 bytes_in 0 212136 station_ip 37.129.95.252 212136 port 19 212136 unique_id port 212138 username motamedi9772 212138 mac 212138 bytes_out 0 212138 bytes_in 0 212138 station_ip 83.123.83.136 212138 port 16 212138 unique_id port 212138 remote_ip 10.8.0.86 212139 username motamedi9772 212139 mac 212139 bytes_out 0 212139 bytes_in 0 212139 station_ip 83.123.83.136 212139 port 16 212139 unique_id port 212139 remote_ip 10.8.0.86 212147 username barzegar 212147 kill_reason Maximum check online fails reached 212147 mac 212147 bytes_out 0 212147 bytes_in 0 212147 station_ip 5.112.231.9 212147 port 40 212147 unique_id port 212151 username arash 212151 mac 212151 bytes_out 0 212151 bytes_in 0 212151 station_ip 37.27.30.244 212151 port 46 212151 unique_id port 212151 remote_ip 10.8.0.206 212153 username motamedi9772 212153 mac 212153 bytes_out 0 212153 bytes_in 0 212153 station_ip 83.123.83.136 212153 port 16 212153 unique_id port 212153 remote_ip 10.8.0.86 212154 username dorani4942 212154 mac 212154 bytes_out 0 212154 bytes_in 0 212154 station_ip 37.129.209.108 212154 port 41 212154 unique_id port 212154 remote_ip 10.8.1.118 212156 username aminvpnipad 212156 mac 212156 bytes_out 0 212156 bytes_in 0 212156 station_ip 5.119.204.150 212156 port 1 212156 unique_id port 212156 remote_ip 10.8.0.2 212159 username motamedi9772 212159 mac 212159 bytes_out 0 212159 bytes_in 0 212159 station_ip 83.123.83.136 212159 port 16 212159 unique_id port 212159 remote_ip 10.8.0.86 212161 username motamedi9772 212161 mac 212161 bytes_out 0 212161 bytes_in 0 212161 station_ip 83.123.83.136 212161 port 16 212161 unique_id port 212161 remote_ip 10.8.0.86 212162 username motamedi9772 212162 mac 212162 bytes_out 0 212162 bytes_in 0 212162 station_ip 83.123.83.136 212162 port 16 212162 unique_id port 212162 remote_ip 10.8.0.86 212165 username motamedi9772 212165 mac 212165 bytes_out 0 212165 bytes_in 0 212165 station_ip 83.123.83.136 212165 port 16 212165 unique_id port 212165 remote_ip 10.8.0.86 212166 username motamedi9772 212166 mac 212166 bytes_out 0 212166 bytes_in 0 212160 bytes_in 93366 212160 station_ip 5.119.202.130 212160 port 25 212160 unique_id port 212160 remote_ip 10.8.0.246 212164 username khademi 212164 kill_reason Another user logged on this global unique id 212164 mac 212164 bytes_out 0 212164 bytes_in 0 212164 station_ip 37.129.95.252 212164 port 19 212164 unique_id port 212168 username motamedi9772 212168 mac 212168 bytes_out 0 212168 bytes_in 0 212168 station_ip 83.123.83.136 212168 port 16 212168 unique_id port 212168 remote_ip 10.8.0.86 212170 username motamedi9772 212170 mac 212170 bytes_out 0 212170 bytes_in 0 212170 station_ip 83.123.83.136 212170 port 16 212170 unique_id port 212170 remote_ip 10.8.0.86 212176 username aminvpnipad 212176 mac 212176 bytes_out 0 212176 bytes_in 0 212176 station_ip 5.119.204.150 212176 port 1 212176 unique_id port 212176 remote_ip 10.8.0.2 212178 username dorani4942 212178 mac 212178 bytes_out 0 212178 bytes_in 0 212178 station_ip 37.129.209.108 212178 port 50 212178 unique_id port 212178 remote_ip 10.8.0.82 212181 username khademi 212181 kill_reason Another user logged on this global unique id 212181 mac 212181 bytes_out 0 212181 bytes_in 0 212181 station_ip 37.129.95.252 212181 port 19 212181 unique_id port 212186 username yaghobi 212186 mac 212186 bytes_out 0 212186 bytes_in 0 212186 station_ip 83.122.98.187 212186 port 46 212186 unique_id port 212186 remote_ip 10.8.0.106 212188 username mosi 212188 kill_reason Another user logged on this global unique id 212188 mac 212188 bytes_out 0 212188 bytes_in 0 212188 station_ip 151.235.124.131 212188 port 62 212188 unique_id port 212189 username barzegar 212189 mac 212189 bytes_out 0 212189 bytes_in 0 212189 station_ip 5.120.163.131 212189 port 41 212189 unique_id port 212189 remote_ip 10.8.1.30 212191 username pourshad 212191 mac 212191 bytes_out 323465 212191 bytes_in 3844313 212191 station_ip 5.120.54.100 212191 port 38 212191 unique_id port 212191 remote_ip 10.8.1.10 212192 username khalili2 212192 kill_reason Another user logged on this global unique id 212192 mac 212192 bytes_out 0 212192 bytes_in 0 212192 station_ip 5.119.209.186 212192 port 41 212192 unique_id port 212192 remote_ip 10.8.0.78 212194 username mehrpoyan101 212194 mac 212194 bytes_out 897333 212194 bytes_in 11195978 212194 station_ip 5.119.172.133 212194 port 46 212194 unique_id port 212194 remote_ip 10.8.0.134 212198 username barzegar 212198 mac 212198 bytes_out 0 212198 bytes_in 0 212198 station_ip 5.120.163.131 212198 port 41 212198 unique_id port 212198 remote_ip 10.8.1.30 212200 username mehrpoyan101 212200 mac 212200 bytes_out 0 212200 bytes_in 0 212200 station_ip 5.119.39.130 212200 port 61 212200 unique_id port 212200 remote_ip 10.8.0.134 212205 username mehrpoyan101 212205 mac 212205 bytes_out 0 212205 bytes_in 0 212205 station_ip 5.119.39.130 212205 port 60 212205 unique_id port 212205 remote_ip 10.8.0.134 212206 username majidsarmast 212206 mac 212206 bytes_out 215826 212206 bytes_in 1839666 212206 station_ip 86.57.103.50 212206 port 41 212206 unique_id port 212206 remote_ip 10.8.1.178 212209 username aminvpnipad 212209 mac 212209 bytes_out 0 212209 bytes_in 0 212209 station_ip 5.119.204.150 212209 port 1 212209 unique_id port 212209 remote_ip 10.8.0.2 212212 username motamedi9772 212212 kill_reason Another user logged on this global unique id 212212 mac 212212 bytes_out 0 212212 bytes_in 0 212212 station_ip 83.123.16.108 212212 port 50 212212 unique_id port 212217 username dorani4942 212217 mac 212166 station_ip 83.123.83.136 212166 port 16 212166 unique_id port 212166 remote_ip 10.8.0.86 212169 username dorani4942 212169 mac 212169 bytes_out 0 212169 bytes_in 0 212169 station_ip 37.129.209.108 212169 port 41 212169 unique_id port 212169 remote_ip 10.8.1.118 212174 username barzegar 212174 mac 212174 bytes_out 0 212174 bytes_in 0 212174 station_ip 5.120.163.131 212174 port 46 212174 unique_id port 212174 remote_ip 10.8.0.34 212182 username barzegar 212182 mac 212182 bytes_out 0 212182 bytes_in 0 212182 station_ip 5.120.163.131 212182 port 41 212182 unique_id port 212182 remote_ip 10.8.1.30 212183 username dorani4942 212183 mac 212183 bytes_out 0 212183 bytes_in 0 212183 station_ip 37.129.209.108 212183 port 16 212183 unique_id port 212183 remote_ip 10.8.0.82 212184 username aminvpnipad 212184 mac 212184 bytes_out 0 212184 bytes_in 0 212184 station_ip 5.119.204.150 212184 port 1 212184 unique_id port 212184 remote_ip 10.8.0.2 212190 username mehrpoyan101 212190 mac 212190 bytes_out 0 212190 bytes_in 0 212190 station_ip 5.119.225.9 212190 port 25 212190 unique_id port 212190 remote_ip 10.8.0.134 212196 username mohammadjavad 212196 mac 212196 bytes_out 0 212196 bytes_in 0 212196 station_ip 83.123.152.9 212196 port 25 212196 unique_id port 212196 remote_ip 10.8.0.138 212199 username yaghobi 212199 mac 212199 bytes_out 0 212199 bytes_in 0 212199 station_ip 83.122.74.163 212199 port 50 212199 unique_id port 212199 remote_ip 10.8.0.106 212202 username aminvpnipad 212202 mac 212202 bytes_out 0 212202 bytes_in 0 212202 station_ip 5.119.204.150 212202 port 1 212202 unique_id port 212202 remote_ip 10.8.0.2 212207 username barzegar 212207 mac 212207 bytes_out 0 212207 bytes_in 0 212207 station_ip 5.120.163.131 212207 port 41 212207 unique_id port 212207 remote_ip 10.8.1.30 212211 username mehrpoyan101 212211 mac 212211 bytes_out 0 212211 bytes_in 0 212211 station_ip 5.120.155.107 212211 port 60 212211 unique_id port 212211 remote_ip 10.8.0.134 212216 username motamedi9772 212216 mac 212216 bytes_out 0 212216 bytes_in 0 212216 station_ip 83.123.16.108 212216 port 50 212216 unique_id port 212222 username mehrpoyan101 212222 mac 212222 bytes_out 0 212222 bytes_in 0 212222 station_ip 5.120.114.135 212222 port 50 212222 unique_id port 212222 remote_ip 10.8.0.134 212223 username mehrpoyan101 212223 mac 212223 bytes_out 0 212223 bytes_in 0 212223 station_ip 5.120.114.135 212223 port 50 212223 unique_id port 212223 remote_ip 10.8.0.134 212225 username dorani4942 212225 mac 212225 bytes_out 0 212225 bytes_in 0 212225 station_ip 37.129.209.108 212225 port 41 212225 unique_id port 212225 remote_ip 10.8.1.118 212227 username pourshad 212227 mac 212227 bytes_out 19885 212227 bytes_in 33831 212227 station_ip 5.120.54.100 212227 port 25 212227 unique_id port 212227 remote_ip 10.8.0.122 212234 username barzegar 212234 mac 212234 bytes_out 12672 212234 bytes_in 16267 212234 station_ip 5.120.163.131 212234 port 41 212234 unique_id port 212234 remote_ip 10.8.0.34 212239 username dorani4942 212239 mac 212239 bytes_out 0 212239 bytes_in 0 212239 station_ip 37.129.209.108 212239 port 38 212239 unique_id port 212239 remote_ip 10.8.1.118 212242 username majidsarmast 212242 mac 212242 bytes_out 0 212242 bytes_in 0 212242 station_ip 83.122.76.185 212242 port 58 212242 unique_id port 212244 username barzegar 212244 mac 212244 bytes_out 0 212167 port 16 212167 unique_id port 212167 remote_ip 10.8.0.86 212171 username pourshad 212171 mac 212171 bytes_out 0 212171 bytes_in 0 212171 station_ip 5.120.54.100 212171 port 38 212171 unique_id port 212171 remote_ip 10.8.1.10 212172 username pourshad 212172 mac 212172 bytes_out 0 212172 bytes_in 0 212172 station_ip 5.120.54.100 212172 port 25 212172 unique_id port 212172 remote_ip 10.8.0.122 212173 username dorani4942 212173 mac 212173 bytes_out 0 212173 bytes_in 0 212173 station_ip 37.129.209.108 212173 port 41 212173 unique_id port 212173 remote_ip 10.8.1.118 212175 username mosi 212175 kill_reason Another user logged on this global unique id 212175 mac 212175 bytes_out 0 212175 bytes_in 0 212175 station_ip 151.235.124.131 212175 port 62 212175 unique_id port 212177 username barzegar 212177 mac 212177 bytes_out 0 212177 bytes_in 0 212177 station_ip 5.120.163.131 212177 port 41 212177 unique_id port 212177 remote_ip 10.8.1.30 212179 username motamedi9772 212179 mac 212179 bytes_out 0 212179 bytes_in 0 212179 station_ip 83.123.83.136 212179 port 16 212179 unique_id port 212179 remote_ip 10.8.0.86 212180 username khalili2 212180 mac 212180 bytes_out 0 212180 bytes_in 0 212180 station_ip 5.119.209.186 212180 port 25 212180 unique_id port 212180 remote_ip 10.8.0.78 212185 username pourshad 212185 mac 212185 bytes_out 222707 212185 bytes_in 2623601 212185 station_ip 5.120.54.100 212185 port 38 212185 unique_id port 212185 remote_ip 10.8.1.10 212187 username khademi 212187 kill_reason Another user logged on this global unique id 212187 mac 212187 bytes_out 0 212187 bytes_in 0 212187 station_ip 37.129.95.252 212187 port 19 212187 unique_id port 212193 username mosi 212193 kill_reason Another user logged on this global unique id 212193 mac 212193 bytes_out 0 212193 bytes_in 0 212193 station_ip 151.235.124.131 212193 port 62 212193 unique_id port 212195 username mehrpoyan101 212195 mac 212195 bytes_out 0 212195 bytes_in 0 212195 station_ip 5.119.67.149 212195 port 60 212195 unique_id port 212195 remote_ip 10.8.0.134 212197 username khalili2 212197 kill_reason Another user logged on this global unique id 212197 mac 212197 bytes_out 0 212197 bytes_in 0 212197 station_ip 5.119.209.186 212197 port 41 212197 unique_id port 212201 username dorani4942 212201 mac 212201 bytes_out 2621 212201 bytes_in 5436 212201 station_ip 37.129.209.108 212201 port 25 212201 unique_id port 212201 remote_ip 10.8.0.82 212203 username motamedi9772 212203 kill_reason Another user logged on this global unique id 212203 mac 212203 bytes_out 0 212203 bytes_in 0 212203 station_ip 83.123.16.108 212203 port 50 212203 unique_id port 212203 remote_ip 10.8.0.86 212204 username alipour1506 212204 mac 212204 bytes_out 2083471 212204 bytes_in 23968443 212204 station_ip 37.129.178.74 212204 port 16 212204 unique_id port 212204 remote_ip 10.8.0.46 212208 username dorani4942 212208 kill_reason Maximum check online fails reached 212208 mac 212208 bytes_out 0 212208 bytes_in 0 212208 station_ip 37.129.209.108 212208 port 61 212208 unique_id port 212210 username mosi 212210 kill_reason Another user logged on this global unique id 212210 mac 212210 bytes_out 0 212210 bytes_in 0 212210 station_ip 151.235.124.131 212210 port 62 212210 unique_id port 212213 username yaghobi 212213 mac 212213 bytes_out 0 212213 bytes_in 0 212213 station_ip 83.122.74.163 212213 port 25 212213 unique_id port 212213 remote_ip 10.8.0.106 212214 username pourshad 212214 mac 212214 bytes_out 0 212214 bytes_in 0 212214 station_ip 5.120.54.100 212214 port 38 212214 unique_id port 212214 remote_ip 10.8.1.10 212215 username pourshad 212215 mac 212215 bytes_out 0 212215 bytes_in 0 212215 station_ip 5.120.54.100 212215 port 38 212215 unique_id port 212215 remote_ip 10.8.1.10 212218 username khalili2 212218 kill_reason Another user logged on this global unique id 212218 mac 212218 bytes_out 0 212218 bytes_in 0 212218 station_ip 5.119.209.186 212218 port 41 212218 unique_id port 212220 username barzegar 212220 mac 212220 bytes_out 0 212220 bytes_in 0 212220 station_ip 5.120.163.131 212220 port 58 212220 unique_id port 212220 remote_ip 10.8.0.34 212221 username aminvpnipad 212221 mac 212221 bytes_out 0 212221 bytes_in 0 212221 station_ip 5.119.204.150 212221 port 1 212221 unique_id port 212221 remote_ip 10.8.0.2 212224 username khalili2 212224 kill_reason Another user logged on this global unique id 212224 mac 212224 bytes_out 0 212224 bytes_in 0 212224 station_ip 5.119.209.186 212224 port 41 212224 unique_id port 212226 username mehrpoyan101 212226 mac 212226 bytes_out 0 212226 bytes_in 0 212226 station_ip 5.120.114.135 212226 port 50 212226 unique_id port 212226 remote_ip 10.8.0.134 212229 username pourshad 212229 mac 212229 bytes_out 0 212229 bytes_in 0 212229 station_ip 5.120.54.100 212229 port 25 212229 unique_id port 212229 remote_ip 10.8.0.122 212230 username mehrpoyan101 212230 mac 212230 bytes_out 0 212230 bytes_in 0 212230 station_ip 5.120.114.135 212230 port 60 212230 unique_id port 212230 remote_ip 10.8.0.134 212231 username khalili2 212231 kill_reason Another user logged on this global unique id 212231 mac 212231 bytes_out 0 212231 bytes_in 0 212231 station_ip 5.119.209.186 212231 port 41 212231 unique_id port 212233 username pourshad 212233 mac 212233 bytes_out 0 212233 bytes_in 0 212233 station_ip 5.120.54.100 212233 port 41 212233 unique_id port 212233 remote_ip 10.8.1.10 212236 username aminvpnipad 212236 mac 212236 bytes_out 0 212236 bytes_in 0 212236 station_ip 5.119.204.150 212236 port 1 212236 unique_id port 212236 remote_ip 10.8.0.2 212237 username mehrpoyan101 212237 mac 212237 bytes_out 0 212237 bytes_in 0 212237 station_ip 5.120.32.132 212237 port 25 212237 unique_id port 212237 remote_ip 10.8.0.134 212240 username godarzi 212240 mac 212240 bytes_out 0 212240 bytes_in 0 212240 station_ip 5.120.168.61 212240 port 46 212240 unique_id port 212240 remote_ip 10.8.0.74 212246 username aminvpnipad 212246 mac 212246 bytes_out 0 212246 bytes_in 0 212246 station_ip 5.119.204.150 212246 port 1 212246 unique_id port 212246 remote_ip 10.8.0.2 212249 username dorani4942 212249 mac 212249 bytes_out 0 212249 bytes_in 0 212249 station_ip 37.129.209.108 212249 port 38 212249 unique_id port 212249 remote_ip 10.8.1.118 212256 username kalantary6037 212256 mac 212256 bytes_out 0 212256 bytes_in 0 212256 station_ip 37.129.21.157 212256 port 37 212256 unique_id port 212256 remote_ip 10.8.1.98 212262 username mehrpoyan101 212262 mac 212262 bytes_out 0 212262 bytes_in 0 212262 station_ip 5.119.94.71 212262 port 50 212262 unique_id port 212262 remote_ip 10.8.0.134 212273 username dorani4942 212273 mac 212273 bytes_out 0 212273 bytes_in 0 212273 station_ip 37.129.209.108 212273 port 46 212273 unique_id port 212273 remote_ip 10.8.0.82 212275 username barzegar 212275 mac 212275 bytes_out 0 212275 bytes_in 0 212275 station_ip 5.120.163.131 212275 port 50 212275 unique_id port 212217 bytes_out 0 212217 bytes_in 0 212217 station_ip 37.129.209.108 212217 port 50 212217 unique_id port 212217 remote_ip 10.8.0.82 212219 username esmaeili1522 212219 mac 212219 bytes_out 0 212219 bytes_in 0 212219 station_ip 5.119.96.166 212219 port 58 212219 unique_id port 212219 remote_ip 10.8.0.190 212228 username pourshad 212228 mac 212228 bytes_out 0 212228 bytes_in 0 212228 station_ip 5.120.54.100 212228 port 41 212228 unique_id port 212228 remote_ip 10.8.1.10 212232 username pourshad 212232 mac 212232 bytes_out 0 212232 bytes_in 0 212232 station_ip 5.120.54.100 212232 port 50 212232 unique_id port 212232 remote_ip 10.8.0.122 212235 username majidsarmast 212235 kill_reason Another user logged on this global unique id 212235 mac 212235 bytes_out 0 212235 bytes_in 0 212235 station_ip 83.122.76.185 212235 port 58 212235 unique_id port 212235 remote_ip 10.8.0.194 212238 username kalantary6037 212238 mac 212238 bytes_out 2832241 212238 bytes_in 19939856 212238 station_ip 37.129.99.101 212238 port 38 212238 unique_id port 212238 remote_ip 10.8.1.98 212241 username mehrpoyan101 212241 mac 212241 bytes_out 0 212241 bytes_in 0 212241 station_ip 5.119.203.102 212241 port 41 212241 unique_id port 212241 remote_ip 10.8.0.134 212243 username sekonji0496 212243 mac 212243 bytes_out 302226 212243 bytes_in 4599024 212243 station_ip 83.123.97.224 212243 port 41 212243 unique_id port 212243 remote_ip 10.8.0.70 212245 username dorani4942 212245 mac 212245 bytes_out 0 212245 bytes_in 0 212245 station_ip 37.129.209.108 212245 port 41 212245 unique_id port 212245 remote_ip 10.8.0.82 212247 username malekpoir 212247 mac 212247 bytes_out 2385262 212247 bytes_in 15193738 212247 station_ip 5.120.109.113 212247 port 37 212247 unique_id port 212247 remote_ip 10.8.1.242 212254 username arash 212254 mac 212254 bytes_out 1457777 212254 bytes_in 19792828 212254 station_ip 37.27.30.244 212254 port 50 212254 unique_id port 212254 remote_ip 10.8.0.206 212259 username dortaj3792 212259 mac 212259 bytes_out 0 212259 bytes_in 0 212259 station_ip 5.119.19.182 212259 port 50 212259 unique_id port 212259 remote_ip 10.8.0.10 212261 username barzegar 212261 mac 212261 bytes_out 0 212261 bytes_in 0 212261 station_ip 5.120.163.131 212261 port 37 212261 unique_id port 212261 remote_ip 10.8.1.30 212264 username hosseini0093 212264 kill_reason Another user logged on this global unique id 212264 mac 212264 bytes_out 0 212264 bytes_in 0 212264 station_ip 83.123.143.25 212264 port 46 212264 unique_id port 212264 remote_ip 10.8.0.226 212265 username mosi 212265 kill_reason Another user logged on this global unique id 212265 mac 212265 bytes_out 0 212265 bytes_in 0 212265 station_ip 151.235.124.131 212265 port 62 212265 unique_id port 212270 username hosseini0093 212270 mac 212270 bytes_out 0 212270 bytes_in 0 212270 station_ip 83.123.143.25 212270 port 46 212270 unique_id port 212274 username dorani4942 212274 mac 212274 bytes_out 0 212274 bytes_in 0 212274 station_ip 37.129.209.108 212274 port 46 212274 unique_id port 212274 remote_ip 10.8.0.82 212281 username godarzi 212281 mac 212281 bytes_out 132379 212281 bytes_in 739223 212281 station_ip 5.120.168.61 212281 port 41 212281 unique_id port 212281 remote_ip 10.8.0.74 212283 username mohammadjavad 212283 mac 212283 bytes_out 0 212283 bytes_in 0 212283 station_ip 83.123.173.65 212283 port 25 212283 unique_id port 212283 remote_ip 10.8.0.138 212285 username dorani4942 212285 mac 212285 bytes_out 0 212244 bytes_in 0 212244 station_ip 5.120.163.131 212244 port 46 212244 unique_id port 212244 remote_ip 10.8.0.34 212248 username soleymani5056 212248 mac 212248 bytes_out 76149 212248 bytes_in 276537 212248 station_ip 5.119.162.174 212248 port 41 212248 unique_id port 212248 remote_ip 10.8.0.246 212250 username dorani4942 212250 mac 212250 bytes_out 0 212250 bytes_in 0 212250 station_ip 37.129.209.108 212250 port 46 212250 unique_id port 212250 remote_ip 10.8.0.82 212251 username alipour1506 212251 mac 212251 bytes_out 1902435 212251 bytes_in 22003150 212251 station_ip 37.129.178.74 212251 port 16 212251 unique_id port 212251 remote_ip 10.8.0.46 212252 username barzegar 212252 mac 212252 bytes_out 0 212252 bytes_in 0 212252 station_ip 5.120.163.131 212252 port 16 212252 unique_id port 212252 remote_ip 10.8.0.34 212253 username aminvpnipad 212253 mac 212253 bytes_out 0 212253 bytes_in 0 212253 station_ip 5.119.204.150 212253 port 1 212253 unique_id port 212253 remote_ip 10.8.0.2 212255 username mehrpoyan101 212255 mac 212255 bytes_out 170974 212255 bytes_in 838360 212255 station_ip 5.119.94.71 212255 port 63 212255 unique_id port 212255 remote_ip 10.8.0.134 212257 username mosi 212257 kill_reason Another user logged on this global unique id 212257 mac 212257 bytes_out 0 212257 bytes_in 0 212257 station_ip 151.235.124.131 212257 port 62 212257 unique_id port 212258 username mehrpoyan101 212258 mac 212258 bytes_out 1699 212258 bytes_in 4198 212258 station_ip 5.119.94.71 212258 port 38 212258 unique_id port 212258 remote_ip 10.8.1.18 212260 username aminvpnipad 212260 mac 212260 bytes_out 0 212260 bytes_in 0 212260 station_ip 5.119.204.150 212260 port 1 212260 unique_id port 212260 remote_ip 10.8.0.2 212263 username alipour1506 212263 mac 212263 bytes_out 38806 212263 bytes_in 37987 212263 station_ip 94.176.8.78 212263 port 58 212263 unique_id port 212263 remote_ip 10.8.0.46 212266 username godarzi 212266 mac 212266 bytes_out 890799 212266 bytes_in 5327276 212266 station_ip 5.120.168.61 212266 port 25 212266 unique_id port 212266 remote_ip 10.8.0.74 212267 username mehrpoyan101 212267 mac 212267 bytes_out 75567 212267 bytes_in 282377 212267 station_ip 5.119.181.222 212267 port 63 212267 unique_id port 212267 remote_ip 10.8.0.134 212268 username aminvpnipad 212268 mac 212268 bytes_out 0 212268 bytes_in 0 212268 station_ip 5.119.204.150 212268 port 1 212268 unique_id port 212268 remote_ip 10.8.0.2 212269 username dorani4942 212269 mac 212269 bytes_out 0 212269 bytes_in 0 212269 station_ip 37.129.209.108 212269 port 16 212269 unique_id port 212269 remote_ip 10.8.0.82 212271 username dortaj3792 212271 mac 212271 bytes_out 175745 212271 bytes_in 2160172 212271 station_ip 5.119.177.116 212271 port 50 212271 unique_id port 212271 remote_ip 10.8.0.10 212272 username dorani4942 212272 mac 212272 bytes_out 113681 212272 bytes_in 700574 212272 station_ip 37.129.209.108 212272 port 58 212272 unique_id port 212272 remote_ip 10.8.0.82 212276 username yaghobi 212276 mac 212276 bytes_out 282378 212276 bytes_in 1174232 212276 station_ip 83.122.16.183 212276 port 41 212276 unique_id port 212276 remote_ip 10.8.0.106 212278 username mosi 212278 kill_reason Another user logged on this global unique id 212278 mac 212278 bytes_out 0 212278 bytes_in 0 212278 station_ip 151.235.124.131 212278 port 62 212278 unique_id port 212280 username dorani4942 212280 mac 212280 bytes_out 0 212280 bytes_in 0 212280 station_ip 37.129.209.108 212275 remote_ip 10.8.0.34 212277 username mehrpoyan101 212277 mac 212277 bytes_out 26215 212277 bytes_in 27958 212277 station_ip 5.120.163.121 212277 port 25 212277 unique_id port 212277 remote_ip 10.8.0.134 212279 username dorani4942 212279 mac 212279 bytes_out 0 212279 bytes_in 0 212279 station_ip 37.129.209.108 212279 port 37 212279 unique_id port 212279 remote_ip 10.8.1.118 212287 username soleymani5056 212287 mac 212287 bytes_out 266169 212287 bytes_in 2569971 212287 station_ip 5.119.233.129 212287 port 16 212287 unique_id port 212287 remote_ip 10.8.0.246 212289 username shahruz 212289 kill_reason Another user logged on this global unique id 212289 mac 212289 bytes_out 0 212289 bytes_in 0 212289 station_ip 83.123.131.162 212289 port 60 212289 unique_id port 212289 remote_ip 10.8.0.174 212292 username shahruz 212292 mac 212292 bytes_out 0 212292 bytes_in 0 212292 station_ip 83.123.131.162 212292 port 60 212292 unique_id port 212296 username barzegar 212296 mac 212296 bytes_out 0 212296 bytes_in 0 212296 station_ip 5.120.163.131 212296 port 58 212296 unique_id port 212296 remote_ip 10.8.0.34 212298 username shahruz 212298 mac 212298 bytes_out 1636 212298 bytes_in 5076 212298 station_ip 83.123.131.162 212298 port 46 212298 unique_id port 212298 remote_ip 10.8.0.174 212304 username mehrpoyan101 212304 mac 212304 bytes_out 65052 212304 bytes_in 202814 212304 station_ip 5.119.104.37 212304 port 58 212304 unique_id port 212304 remote_ip 10.8.0.134 212305 username mehrpoyan101 212305 mac 212305 bytes_out 1935 212305 bytes_in 7367 212305 station_ip 5.119.104.37 212305 port 46 212305 unique_id port 212305 remote_ip 10.8.0.134 212306 username aminvpnipad 212306 mac 212306 bytes_out 0 212306 bytes_in 0 212306 station_ip 5.119.204.150 212306 port 1 212306 unique_id port 212306 remote_ip 10.8.0.2 212307 username shahruz 212307 mac 212307 bytes_out 0 212307 bytes_in 0 212307 station_ip 83.123.131.162 212307 port 58 212307 unique_id port 212307 remote_ip 10.8.0.174 212313 username dorani4942 212313 mac 212313 bytes_out 0 212313 bytes_in 0 212313 station_ip 37.129.209.108 212313 port 60 212313 unique_id port 212313 remote_ip 10.8.0.82 212317 username aminvpn2 212317 kill_reason Another user logged on this global unique id 212317 mac 212317 bytes_out 0 212317 bytes_in 0 212317 station_ip 5.233.74.44 212317 port 41 212317 unique_id port 212317 remote_ip 10.8.0.130 212318 username aminvpn 212318 mac 212318 bytes_out 392502 212318 bytes_in 4455953 212318 station_ip 37.129.157.136 212318 port 58 212318 unique_id port 212318 remote_ip 10.8.0.58 212323 username barzegar 212323 mac 212323 bytes_out 0 212323 bytes_in 0 212323 station_ip 5.120.163.131 212323 port 42 212323 unique_id port 212323 remote_ip 10.8.1.30 212328 username kalantary6037 212328 mac 212328 bytes_out 605568 212328 bytes_in 5332597 212328 station_ip 37.129.98.81 212328 port 41 212328 unique_id port 212328 remote_ip 10.8.1.98 212330 username yaghobi 212330 mac 212330 bytes_out 818201 212330 bytes_in 1371523 212330 station_ip 83.122.16.183 212330 port 16 212330 unique_id port 212330 remote_ip 10.8.0.106 212332 username aminvpn 212332 mac 212332 bytes_out 0 212332 bytes_in 0 212332 station_ip 5.119.81.175 212332 port 46 212332 unique_id port 212332 remote_ip 10.8.0.58 212334 username barzegar 212334 mac 212334 bytes_out 0 212334 bytes_in 0 212334 station_ip 5.120.163.131 212334 port 41 212334 unique_id port 212334 remote_ip 10.8.1.30 212280 port 46 212280 unique_id port 212280 remote_ip 10.8.0.82 212282 username dorani4942 212282 mac 212282 bytes_out 0 212282 bytes_in 0 212282 station_ip 37.129.209.108 212282 port 46 212282 unique_id port 212282 remote_ip 10.8.0.82 212284 username mehrpoyan101 212284 mac 212284 bytes_out 0 212284 bytes_in 0 212284 station_ip 5.120.163.121 212284 port 63 212284 unique_id port 212284 remote_ip 10.8.0.134 212286 username mehrpoyan101 212286 mac 212286 bytes_out 0 212286 bytes_in 0 212286 station_ip 5.120.163.121 212286 port 25 212286 unique_id port 212286 remote_ip 10.8.0.134 212290 username yaghobi 212290 mac 212290 bytes_out 66764 212290 bytes_in 76770 212290 station_ip 83.122.16.183 212290 port 46 212290 unique_id port 212290 remote_ip 10.8.0.106 212293 username aminvpnipad 212293 mac 212293 bytes_out 0 212293 bytes_in 0 212293 station_ip 5.119.204.150 212293 port 1 212293 unique_id port 212293 remote_ip 10.8.0.2 212299 username shahruz 212299 kill_reason Maximum check online fails reached 212299 mac 212299 bytes_out 0 212299 bytes_in 0 212299 station_ip 83.123.131.162 212299 port 25 212299 unique_id port 212301 username shahruz 212301 mac 212301 bytes_out 0 212301 bytes_in 0 212301 station_ip 83.123.131.162 212301 port 37 212301 unique_id port 212301 remote_ip 10.8.1.82 212302 username shahruz 212302 mac 212302 bytes_out 0 212302 bytes_in 0 212302 station_ip 83.123.131.162 212302 port 46 212302 unique_id port 212302 remote_ip 10.8.0.174 212303 username dorani4942 212303 mac 212303 bytes_out 0 212303 bytes_in 0 212303 station_ip 37.129.209.108 212303 port 37 212303 unique_id port 212303 remote_ip 10.8.1.118 212311 username barzegar 212311 mac 212311 bytes_out 0 212311 bytes_in 0 212311 station_ip 5.120.163.131 212311 port 58 212311 unique_id port 212311 remote_ip 10.8.0.34 212314 username barzegar 212314 kill_reason Maximum check online fails reached 212314 mac 212314 bytes_out 0 212314 bytes_in 0 212314 station_ip 5.120.163.131 212314 port 37 212314 unique_id port 212319 username dorani4942 212319 mac 212319 bytes_out 0 212319 bytes_in 0 212319 station_ip 37.129.209.108 212319 port 46 212319 unique_id port 212319 remote_ip 10.8.0.82 212320 username aminvpn 212320 mac 212320 bytes_out 5970 212320 bytes_in 12459 212320 station_ip 37.129.157.136 212320 port 66 212320 unique_id port 212320 remote_ip 10.8.0.58 212321 username mohammadjavad 212321 mac 212321 bytes_out 589578 212321 bytes_in 6743930 212321 station_ip 83.123.198.69 212321 port 63 212321 unique_id port 212321 remote_ip 10.8.0.138 212322 username kamali3 212322 kill_reason Another user logged on this global unique id 212322 mac 212322 bytes_out 0 212322 bytes_in 0 212322 station_ip 83.122.146.246 212322 port 60 212322 unique_id port 212322 remote_ip 10.8.0.182 212324 username aminvpnipad 212324 mac 212324 bytes_out 0 212324 bytes_in 0 212324 station_ip 5.119.204.150 212324 port 1 212324 unique_id port 212324 remote_ip 10.8.0.2 212325 username dorani4942 212325 mac 212325 bytes_out 0 212325 bytes_in 0 212325 station_ip 37.129.209.108 212325 port 42 212325 unique_id port 212325 remote_ip 10.8.1.118 212331 username aminvpn 212331 mac 212331 bytes_out 0 212331 bytes_in 0 212331 station_ip 37.129.157.136 212331 port 16 212331 unique_id port 212331 remote_ip 10.8.0.58 212336 username kamali3 212336 kill_reason Another user logged on this global unique id 212336 mac 212336 bytes_out 0 212336 bytes_in 0 212336 station_ip 83.122.146.246 212285 bytes_in 0 212285 station_ip 37.129.209.108 212285 port 37 212285 unique_id port 212285 remote_ip 10.8.1.118 212288 username dorani4942 212288 mac 212288 bytes_out 0 212288 bytes_in 0 212288 station_ip 37.129.209.108 212288 port 25 212288 unique_id port 212288 remote_ip 10.8.0.82 212291 username mehrpoyan101 212291 mac 212291 bytes_out 10336 212291 bytes_in 12372 212291 station_ip 5.119.104.37 212291 port 63 212291 unique_id port 212291 remote_ip 10.8.0.134 212294 username khalili2 212294 mac 212294 bytes_out 2822854 212294 bytes_in 41772314 212294 station_ip 5.119.209.186 212294 port 58 212294 unique_id port 212294 remote_ip 10.8.0.78 212295 username shahruz 212295 mac 212295 bytes_out 0 212295 bytes_in 0 212295 station_ip 83.123.131.162 212295 port 25 212295 unique_id port 212295 remote_ip 10.8.0.174 212297 username dorani4942 212297 mac 212297 bytes_out 0 212297 bytes_in 0 212297 station_ip 37.129.209.108 212297 port 37 212297 unique_id port 212297 remote_ip 10.8.1.118 212300 username mehrpoyan101 212300 mac 212300 bytes_out 1652 212300 bytes_in 4082 212300 station_ip 5.119.104.37 212300 port 46 212300 unique_id port 212300 remote_ip 10.8.0.134 212308 username mosi 212308 kill_reason Another user logged on this global unique id 212308 mac 212308 bytes_out 0 212308 bytes_in 0 212308 station_ip 151.235.124.131 212308 port 62 212308 unique_id port 212309 username mehrpoyan101 212309 mac 212309 bytes_out 26527 212309 bytes_in 32906 212309 station_ip 5.119.104.37 212309 port 41 212309 unique_id port 212309 remote_ip 10.8.0.134 212310 username dorani4942 212310 mac 212310 bytes_out 0 212310 bytes_in 0 212310 station_ip 37.129.209.108 212310 port 37 212310 unique_id port 212310 remote_ip 10.8.1.118 212312 username aminvpnipad 212312 mac 212312 bytes_out 0 212312 bytes_in 0 212312 station_ip 5.119.204.150 212312 port 1 212312 unique_id port 212312 remote_ip 10.8.0.2 212315 username motamedi9772 212315 mac 212315 bytes_out 161244 212315 bytes_in 1725161 212315 station_ip 83.123.75.192 212315 port 58 212315 unique_id port 212315 remote_ip 10.8.0.86 212316 username khalili2 212316 mac 212316 bytes_out 3259145 212316 bytes_in 42198688 212316 station_ip 5.119.209.186 212316 port 46 212316 unique_id port 212316 remote_ip 10.8.0.78 212326 username esmaeili1522 212326 mac 212326 bytes_out 2309405 212326 bytes_in 26139160 212326 station_ip 5.119.59.121 212326 port 65 212326 unique_id port 212326 remote_ip 10.8.0.190 212327 username shahruz 212327 mac 212327 bytes_out 0 212327 bytes_in 0 212327 station_ip 83.123.131.162 212327 port 42 212327 unique_id port 212327 remote_ip 10.8.1.82 212329 username aminvpn 212329 mac 212329 bytes_out 243664 212329 bytes_in 1576341 212329 station_ip 37.129.157.136 212329 port 46 212329 unique_id port 212329 remote_ip 10.8.0.58 212333 username aminvpn 212333 mac 212333 bytes_out 0 212333 bytes_in 0 212333 station_ip 37.129.157.136 212333 port 16 212333 unique_id port 212333 remote_ip 10.8.0.58 212335 username dorani4942 212335 mac 212335 bytes_out 0 212335 bytes_in 0 212335 station_ip 37.129.209.108 212335 port 46 212335 unique_id port 212335 remote_ip 10.8.0.82 212340 username alipour1506 212340 kill_reason Another user logged on this global unique id 212340 mac 212340 bytes_out 0 212340 bytes_in 0 212340 station_ip 94.176.8.78 212340 port 38 212340 unique_id port 212340 remote_ip 10.8.1.158 212342 username kamali3 212342 mac 212342 bytes_out 0 212342 bytes_in 0 212336 port 60 212336 unique_id port 212338 username shahruz 212338 mac 212338 bytes_out 663534 212338 bytes_in 5370885 212338 station_ip 83.123.131.162 212338 port 41 212338 unique_id port 212338 remote_ip 10.8.1.82 212339 username aminvpn 212339 mac 212339 bytes_out 0 212339 bytes_in 0 212339 station_ip 37.129.157.136 212339 port 16 212339 unique_id port 212339 remote_ip 10.8.0.58 212344 username shahruz 212344 mac 212344 bytes_out 0 212344 bytes_in 0 212344 station_ip 83.123.131.162 212344 port 60 212344 unique_id port 212344 remote_ip 10.8.0.174 212345 username shahruz 212345 kill_reason Maximum check online fails reached 212345 mac 212345 bytes_out 0 212345 bytes_in 0 212345 station_ip 83.123.131.162 212345 port 58 212345 unique_id port 212348 username yaghobi 212348 mac 212348 bytes_out 451295 212348 bytes_in 2914697 212348 station_ip 83.122.16.183 212348 port 16 212348 unique_id port 212348 remote_ip 10.8.0.106 212349 username barzegar 212349 mac 212349 bytes_out 0 212349 bytes_in 0 212349 station_ip 5.120.163.131 212349 port 16 212349 unique_id port 212349 remote_ip 10.8.0.34 212350 username aminvpnipad 212350 mac 212350 bytes_out 0 212350 bytes_in 0 212350 station_ip 5.119.204.150 212350 port 1 212350 unique_id port 212350 remote_ip 10.8.0.2 212352 username shahruz 212352 mac 212352 bytes_out 0 212352 bytes_in 0 212352 station_ip 83.123.131.162 212352 port 65 212352 unique_id port 212352 remote_ip 10.8.0.174 212353 username shahruz 212353 kill_reason Maximum check online fails reached 212353 mac 212353 bytes_out 0 212353 bytes_in 0 212353 station_ip 83.123.131.162 212353 port 60 212353 unique_id port 212355 username kalantary6037 212355 mac 212355 bytes_out 0 212355 bytes_in 0 212355 station_ip 37.129.4.157 212355 port 42 212355 unique_id port 212355 remote_ip 10.8.1.98 212357 username barzegar 212357 mac 212357 bytes_out 0 212357 bytes_in 0 212357 station_ip 5.120.163.131 212357 port 42 212357 unique_id port 212357 remote_ip 10.8.1.30 212359 username mehrpoyan101 212359 mac 212359 bytes_out 0 212359 bytes_in 0 212359 station_ip 5.120.159.185 212359 port 66 212359 unique_id port 212359 remote_ip 10.8.0.134 212360 username aminvpnipad 212360 mac 212360 bytes_out 0 212360 bytes_in 0 212360 station_ip 5.119.204.150 212360 port 1 212360 unique_id port 212360 remote_ip 10.8.0.2 212363 username aminvpn 212363 mac 212363 bytes_out 46504 212363 bytes_in 169593 212363 station_ip 37.129.157.136 212363 port 42 212363 unique_id port 212363 remote_ip 10.8.1.102 212367 username mosi 212367 mac 212367 bytes_out 0 212367 bytes_in 0 212367 station_ip 151.235.124.131 212367 port 66 212367 unique_id port 212367 remote_ip 10.8.0.38 212369 username mosi 212369 mac 212369 bytes_out 1620 212369 bytes_in 7623 212369 station_ip 5.62.208.181 212369 port 67 212369 unique_id port 212369 remote_ip 10.8.0.38 212370 username mehrpoyan101 212370 mac 212370 bytes_out 0 212370 bytes_in 0 212370 station_ip 5.119.246.63 212370 port 62 212370 unique_id port 212370 remote_ip 10.8.0.134 212372 username shahruz 212372 mac 212372 bytes_out 0 212372 bytes_in 0 212372 station_ip 83.123.131.162 212372 port 69 212372 unique_id port 212372 remote_ip 10.8.0.174 212373 username shahruz 212373 mac 212373 bytes_out 0 212373 bytes_in 0 212373 station_ip 83.123.131.162 212373 port 62 212373 unique_id port 212373 remote_ip 10.8.0.174 212375 username mosi 212375 mac 212337 username aminvpn 212337 mac 212337 bytes_out 0 212337 bytes_in 0 212337 station_ip 5.119.81.175 212337 port 58 212337 unique_id port 212337 remote_ip 10.8.0.58 212341 username aminvpnipad 212341 mac 212341 bytes_out 0 212341 bytes_in 0 212341 station_ip 5.119.204.150 212341 port 1 212341 unique_id port 212341 remote_ip 10.8.0.2 212343 username mosi 212343 kill_reason Another user logged on this global unique id 212343 mac 212343 bytes_out 0 212343 bytes_in 0 212343 station_ip 151.235.124.131 212343 port 62 212343 unique_id port 212351 username barzegar 212351 mac 212351 bytes_out 0 212351 bytes_in 0 212351 station_ip 5.120.163.131 212351 port 43 212351 unique_id port 212351 remote_ip 10.8.1.30 212361 username aminvpnipad 212361 mac 212361 bytes_out 0 212361 bytes_in 0 212361 station_ip 5.119.204.150 212361 port 1 212361 unique_id port 212361 remote_ip 10.8.0.2 212371 username dortaj3792 212371 mac 212371 bytes_out 0 212371 bytes_in 0 212371 station_ip 5.119.215.225 212371 port 66 212371 unique_id port 212371 remote_ip 10.8.0.10 212374 username shahruz 212374 mac 212374 bytes_out 0 212374 bytes_in 0 212374 station_ip 83.123.131.162 212374 port 62 212374 unique_id port 212374 remote_ip 10.8.0.174 212376 username mosi 212376 kill_reason Maximum check online fails reached 212376 mac 212376 bytes_out 0 212376 bytes_in 0 212376 station_ip 37.137.31.65 212376 port 67 212376 unique_id port 212385 username mohammadjavad 212385 mac 212385 bytes_out 0 212385 bytes_in 0 212385 station_ip 83.123.233.145 212385 port 70 212385 unique_id port 212385 remote_ip 10.8.0.138 212390 username barzegar 212390 mac 212390 bytes_out 0 212390 bytes_in 0 212390 station_ip 5.120.163.131 212390 port 70 212390 unique_id port 212390 remote_ip 10.8.0.34 212395 username farhad3 212395 mac 212395 bytes_out 0 212395 bytes_in 0 212395 station_ip 5.120.63.74 212395 port 63 212395 unique_id port 212395 remote_ip 10.8.0.98 212399 username motamedi9772 212399 mac 212399 bytes_out 0 212399 bytes_in 0 212399 station_ip 83.123.107.112 212399 port 70 212399 unique_id port 212399 remote_ip 10.8.0.86 212404 username shahruz 212404 mac 212404 bytes_out 0 212404 bytes_in 0 212404 station_ip 83.123.131.162 212404 port 74 212404 unique_id port 212404 remote_ip 10.8.0.174 212405 username motamedi9772 212405 mac 212405 bytes_out 22197 212405 bytes_in 62898 212405 station_ip 83.123.107.112 212405 port 70 212405 unique_id port 212405 remote_ip 10.8.0.86 212418 username farhad3 212418 kill_reason Another user logged on this global unique id 212418 mac 212418 bytes_out 0 212418 bytes_in 0 212418 station_ip 5.120.151.17 212418 port 63 212418 unique_id port 212418 remote_ip 10.8.0.98 212419 username aminvpnipad 212419 mac 212419 bytes_out 0 212419 bytes_in 0 212419 station_ip 5.119.204.150 212419 port 1 212419 unique_id port 212419 remote_ip 10.8.0.2 212421 username aminvpnipad 212421 mac 212421 bytes_out 0 212421 bytes_in 0 212421 station_ip 5.119.204.150 212421 port 1 212421 unique_id port 212421 remote_ip 10.8.0.2 212423 username aminvpn 212423 mac 212423 bytes_out 0 212423 bytes_in 0 212423 station_ip 5.119.81.175 212423 port 46 212423 unique_id port 212423 remote_ip 10.8.0.58 212426 username shahruz 212426 mac 212426 bytes_out 0 212426 bytes_in 0 212426 station_ip 83.123.131.162 212426 port 43 212426 unique_id port 212426 remote_ip 10.8.1.82 212427 username mosi 212427 kill_reason Another user logged on this global unique id 212342 station_ip 83.122.146.246 212342 port 60 212342 unique_id port 212346 username aminvpn 212346 mac 212346 bytes_out 35644 212346 bytes_in 37280 212346 station_ip 5.119.81.175 212346 port 46 212346 unique_id port 212346 remote_ip 10.8.0.58 212347 username aminvpn 212347 mac 212347 bytes_out 5970 212347 bytes_in 8137 212347 station_ip 37.129.157.136 212347 port 60 212347 unique_id port 212347 remote_ip 10.8.0.58 212354 username dorani4942 212354 kill_reason Maximum check online fails reached 212354 mac 212354 bytes_out 0 212354 bytes_in 0 212354 station_ip 37.129.209.108 212354 port 16 212354 unique_id port 212356 username shahruz 212356 kill_reason Maximum check online fails reached 212356 mac 212356 bytes_out 0 212356 bytes_in 0 212356 station_ip 83.123.131.162 212356 port 65 212356 unique_id port 212358 username dorani4942 212358 mac 212358 bytes_out 0 212358 bytes_in 0 212358 station_ip 37.129.209.108 212358 port 67 212358 unique_id port 212358 remote_ip 10.8.0.82 212362 username mosi 212362 mac 212362 bytes_out 0 212362 bytes_in 0 212362 station_ip 151.235.124.131 212362 port 62 212362 unique_id port 212364 username mehrpoyan101 212364 mac 212364 bytes_out 0 212364 bytes_in 0 212364 station_ip 5.119.243.193 212364 port 67 212364 unique_id port 212364 remote_ip 10.8.0.134 212365 username dorani4942 212365 mac 212365 bytes_out 0 212365 bytes_in 0 212365 station_ip 37.129.209.108 212365 port 62 212365 unique_id port 212365 remote_ip 10.8.0.82 212366 username barzegar 212366 mac 212366 bytes_out 0 212366 bytes_in 0 212366 station_ip 5.120.163.131 212366 port 67 212366 unique_id port 212366 remote_ip 10.8.0.34 212368 username shahruz 212368 mac 212368 bytes_out 0 212368 bytes_in 0 212368 station_ip 83.123.131.162 212368 port 69 212368 unique_id port 212368 remote_ip 10.8.0.174 212379 username shahruz 212379 mac 212379 bytes_out 0 212379 bytes_in 0 212379 station_ip 83.123.131.162 212379 port 63 212379 unique_id port 212379 remote_ip 10.8.0.174 212381 username barzegar 212381 mac 212381 bytes_out 0 212381 bytes_in 0 212381 station_ip 5.120.163.131 212381 port 69 212381 unique_id port 212381 remote_ip 10.8.0.34 212382 username shahruz 212382 mac 212382 bytes_out 0 212382 bytes_in 0 212382 station_ip 83.123.131.162 212382 port 42 212382 unique_id port 212382 remote_ip 10.8.1.82 212383 username shahruz 212383 mac 212383 bytes_out 0 212383 bytes_in 0 212383 station_ip 83.123.131.162 212383 port 71 212383 unique_id port 212383 remote_ip 10.8.0.174 212384 username dorani4942 212384 kill_reason Maximum check online fails reached 212384 mac 212384 bytes_out 0 212384 bytes_in 0 212384 station_ip 37.129.209.108 212384 port 69 212384 unique_id port 212387 username aminvpnipad 212387 mac 212387 bytes_out 0 212387 bytes_in 0 212387 station_ip 5.119.204.150 212387 port 1 212387 unique_id port 212387 remote_ip 10.8.0.2 212388 username shahruz 212388 mac 212388 bytes_out 0 212388 bytes_in 0 212388 station_ip 83.123.131.162 212388 port 71 212388 unique_id port 212388 remote_ip 10.8.0.174 212389 username hosseine 212389 kill_reason Another user logged on this global unique id 212389 mac 212389 bytes_out 0 212389 bytes_in 0 212389 station_ip 83.123.190.71 212389 port 68 212389 unique_id port 212389 remote_ip 10.8.0.126 212393 username shahruz 212393 mac 212393 bytes_out 0 212393 bytes_in 0 212393 station_ip 83.123.131.162 212393 port 74 212393 unique_id port 212393 remote_ip 10.8.0.174 212375 bytes_out 1747 212375 bytes_in 4143 212375 station_ip 5.134.148.148 212375 port 42 212375 unique_id port 212375 remote_ip 10.8.1.54 212377 username yaghobi 212377 mac 212377 bytes_out 0 212377 bytes_in 0 212377 station_ip 83.122.16.183 212377 port 63 212377 unique_id port 212377 remote_ip 10.8.0.106 212378 username aminvpnipad 212378 mac 212378 bytes_out 0 212378 bytes_in 0 212378 station_ip 5.119.204.150 212378 port 1 212378 unique_id port 212378 remote_ip 10.8.0.2 212380 username shahruz 212380 mac 212380 bytes_out 0 212380 bytes_in 0 212380 station_ip 83.123.131.162 212380 port 63 212380 unique_id port 212380 remote_ip 10.8.0.174 212386 username sabaghnezhad 212386 mac 212386 bytes_out 0 212386 bytes_in 0 212386 station_ip 83.123.6.7 212386 port 64 212386 unique_id port 212386 remote_ip 10.8.0.94 212391 username dorani4942 212391 kill_reason Maximum check online fails reached 212391 mac 212391 bytes_out 0 212391 bytes_in 0 212391 station_ip 37.129.209.108 212391 port 71 212391 unique_id port 212392 username dorani4942 212392 kill_reason Maximum check online fails reached 212392 mac 212392 bytes_out 0 212392 bytes_in 0 212392 station_ip 37.129.209.108 212392 port 72 212392 unique_id port 212398 username motamedi9772 212398 mac 212398 bytes_out 0 212398 bytes_in 0 212398 station_ip 83.123.107.112 212398 port 70 212398 unique_id port 212398 remote_ip 10.8.0.86 212401 username aminvpnipad 212401 mac 212401 bytes_out 0 212401 bytes_in 0 212401 station_ip 5.119.204.150 212401 port 1 212401 unique_id port 212401 remote_ip 10.8.0.2 212409 username shahruz 212409 mac 212409 bytes_out 0 212409 bytes_in 0 212409 station_ip 83.123.131.162 212409 port 70 212409 unique_id port 212409 remote_ip 10.8.0.174 212411 username shahruz 212411 mac 212411 bytes_out 0 212411 bytes_in 0 212411 station_ip 83.123.131.162 212411 port 62 212411 unique_id port 212411 remote_ip 10.8.0.174 212414 username yaghobi 212414 mac 212414 bytes_out 0 212414 bytes_in 0 212414 station_ip 83.122.16.183 212414 port 75 212414 unique_id port 212414 remote_ip 10.8.0.106 212415 username sabaghnezhad 212415 mac 212415 bytes_out 0 212415 bytes_in 0 212415 station_ip 83.122.107.154 212415 port 74 212415 unique_id port 212415 remote_ip 10.8.0.94 212417 username shahruz 212417 mac 212417 bytes_out 0 212417 bytes_in 0 212417 station_ip 83.123.131.162 212417 port 43 212417 unique_id port 212417 remote_ip 10.8.1.82 212420 username shahruz 212420 mac 212420 bytes_out 0 212420 bytes_in 0 212420 station_ip 83.123.131.162 212420 port 70 212420 unique_id port 212420 remote_ip 10.8.0.174 212422 username barzegar 212422 mac 212422 bytes_out 0 212422 bytes_in 0 212422 station_ip 5.120.39.51 212422 port 64 212422 unique_id port 212422 remote_ip 10.8.0.34 212425 username farhad3 212425 kill_reason Another user logged on this global unique id 212425 mac 212425 bytes_out 0 212425 bytes_in 0 212425 station_ip 5.120.151.17 212425 port 63 212425 unique_id port 212436 username shahruz 212436 mac 212436 bytes_out 0 212436 bytes_in 0 212436 station_ip 83.123.131.162 212436 port 62 212436 unique_id port 212436 remote_ip 10.8.0.174 212437 username barzegar 212437 mac 212437 bytes_out 0 212437 bytes_in 0 212437 station_ip 5.120.39.51 212437 port 74 212437 unique_id port 212437 remote_ip 10.8.0.34 212439 username shahruz 212439 kill_reason Maximum check online fails reached 212439 mac 212439 bytes_out 0 212439 bytes_in 0 212394 username shahruz 212394 mac 212394 bytes_out 0 212394 bytes_in 0 212394 station_ip 83.123.131.162 212394 port 74 212394 unique_id port 212394 remote_ip 10.8.0.174 212396 username shahruz 212396 mac 212396 bytes_out 0 212396 bytes_in 0 212396 station_ip 83.123.131.162 212396 port 63 212396 unique_id port 212396 remote_ip 10.8.0.174 212397 username motamedi9772 212397 mac 212397 bytes_out 0 212397 bytes_in 0 212397 station_ip 83.123.107.112 212397 port 70 212397 unique_id port 212397 remote_ip 10.8.0.86 212400 username aminvpnipad 212400 mac 212400 bytes_out 0 212400 bytes_in 0 212400 station_ip 5.119.204.150 212400 port 1 212400 unique_id port 212400 remote_ip 10.8.0.2 212402 username shahruz 212402 mac 212402 bytes_out 0 212402 bytes_in 0 212402 station_ip 83.123.131.162 212402 port 74 212402 unique_id port 212402 remote_ip 10.8.0.174 212403 username aminvpnipad 212403 mac 212403 bytes_out 0 212403 bytes_in 0 212403 station_ip 5.119.204.150 212403 port 1 212403 unique_id port 212403 remote_ip 10.8.0.2 212406 username shahruz 212406 mac 212406 bytes_out 0 212406 bytes_in 0 212406 station_ip 83.123.131.162 212406 port 44 212406 unique_id port 212406 remote_ip 10.8.1.82 212407 username yaghobi 212407 mac 212407 bytes_out 333653 212407 bytes_in 326189 212407 station_ip 83.122.16.183 212407 port 62 212407 unique_id port 212407 remote_ip 10.8.0.106 212408 username shahruz 212408 mac 212408 bytes_out 0 212408 bytes_in 0 212408 station_ip 83.123.131.162 212408 port 44 212408 unique_id port 212408 remote_ip 10.8.1.82 212410 username abdolahi0311 212410 mac 212410 bytes_out 3009395 212410 bytes_in 33251850 212410 station_ip 5.120.178.220 212410 port 64 212410 unique_id port 212410 remote_ip 10.8.0.186 212412 username kalantary6037 212412 mac 212412 bytes_out 1703528 212412 bytes_in 15683279 212412 station_ip 37.129.127.169 212412 port 43 212412 unique_id port 212412 remote_ip 10.8.1.98 212413 username shahruz 212413 mac 212413 bytes_out 0 212413 bytes_in 0 212413 station_ip 83.123.131.162 212413 port 43 212413 unique_id port 212413 remote_ip 10.8.1.82 212416 username shahruz 212416 mac 212416 bytes_out 0 212416 bytes_in 0 212416 station_ip 83.123.131.162 212416 port 43 212416 unique_id port 212416 remote_ip 10.8.1.82 212424 username shahruz 212424 mac 212424 bytes_out 0 212424 bytes_in 0 212424 station_ip 83.123.131.162 212424 port 43 212424 unique_id port 212424 remote_ip 10.8.1.82 212428 username farhad3 212428 mac 212428 bytes_out 0 212428 bytes_in 0 212428 station_ip 5.120.151.17 212428 port 63 212428 unique_id port 212429 username shahruz 212429 mac 212429 bytes_out 0 212429 bytes_in 0 212429 station_ip 83.123.131.162 212429 port 70 212429 unique_id port 212429 remote_ip 10.8.0.174 212433 username shahruz 212433 mac 212433 bytes_out 0 212433 bytes_in 0 212433 station_ip 83.123.131.162 212433 port 43 212433 unique_id port 212433 remote_ip 10.8.1.82 212434 username farhad3 212434 mac 212434 bytes_out 0 212434 bytes_in 0 212434 station_ip 5.120.151.17 212434 port 62 212434 unique_id port 212434 remote_ip 10.8.0.98 212438 username aminvpnipad 212438 mac 212438 bytes_out 0 212438 bytes_in 0 212438 station_ip 5.119.204.150 212438 port 1 212438 unique_id port 212438 remote_ip 10.8.0.2 212441 username sabaghnezhad 212441 mac 212441 bytes_out 0 212441 bytes_in 0 212441 station_ip 83.122.107.154 212441 port 64 212427 mac 212427 bytes_out 0 212427 bytes_in 0 212427 station_ip 151.235.124.131 212427 port 42 212427 unique_id port 212427 remote_ip 10.8.1.54 212430 username yaghobi 212430 mac 212430 bytes_out 0 212430 bytes_in 0 212430 station_ip 83.122.16.183 212430 port 62 212430 unique_id port 212430 remote_ip 10.8.0.106 212431 username shahruz 212431 mac 212431 bytes_out 0 212431 bytes_in 0 212431 station_ip 83.123.131.162 212431 port 62 212431 unique_id port 212431 remote_ip 10.8.0.174 212432 username shahruz 212432 mac 212432 bytes_out 0 212432 bytes_in 0 212432 station_ip 83.123.131.162 212432 port 43 212432 unique_id port 212432 remote_ip 10.8.1.82 212435 username farhad3 212435 mac 212435 bytes_out 0 212435 bytes_in 0 212435 station_ip 5.120.151.17 212435 port 70 212435 unique_id port 212435 remote_ip 10.8.0.98 212440 username yaghobi 212440 mac 212440 bytes_out 93548 212440 bytes_in 504672 212440 station_ip 83.122.16.183 212440 port 63 212440 unique_id port 212440 remote_ip 10.8.0.106 212443 username shahruz 212443 mac 212443 bytes_out 0 212443 bytes_in 0 212443 station_ip 83.123.131.162 212443 port 45 212443 unique_id port 212443 remote_ip 10.8.1.82 212445 username yazdani6029 212445 kill_reason Another user logged on this global unique id 212445 mac 212445 bytes_out 0 212445 bytes_in 0 212445 station_ip 83.123.113.182 212445 port 73 212445 unique_id port 212445 remote_ip 10.8.0.210 212448 username shahruz 212448 kill_reason Maximum check online fails reached 212448 mac 212448 bytes_out 0 212448 bytes_in 0 212448 station_ip 83.123.131.162 212448 port 74 212448 unique_id port 212450 username kalantary6037 212450 mac 212450 bytes_out 1543254 212450 bytes_in 19448261 212450 station_ip 37.129.8.9 212450 port 44 212450 unique_id port 212450 remote_ip 10.8.1.98 212451 username shahruz 212451 mac 212451 bytes_out 0 212451 bytes_in 0 212451 station_ip 83.123.131.162 212451 port 44 212451 unique_id port 212451 remote_ip 10.8.1.82 212453 username shahruz 212453 mac 212453 bytes_out 0 212453 bytes_in 0 212453 station_ip 83.123.131.162 212453 port 75 212453 unique_id port 212453 remote_ip 10.8.0.174 212454 username aminvpnipad 212454 mac 212454 bytes_out 0 212454 bytes_in 0 212454 station_ip 5.119.204.150 212454 port 1 212454 unique_id port 212454 remote_ip 10.8.0.2 212458 username shahruz 212458 mac 212458 bytes_out 0 212458 bytes_in 0 212458 station_ip 83.123.131.162 212458 port 42 212458 unique_id port 212458 remote_ip 10.8.1.82 212465 username aminvpnipad 212465 mac 212465 bytes_out 0 212465 bytes_in 0 212465 station_ip 5.119.204.150 212465 port 1 212465 unique_id port 212465 remote_ip 10.8.0.2 212466 username aminvpnipad 212466 mac 212466 bytes_out 0 212466 bytes_in 0 212466 station_ip 5.119.204.150 212466 port 1 212466 unique_id port 212466 remote_ip 10.8.0.2 212467 username yazdani6029 212467 mac 212467 bytes_out 0 212467 bytes_in 0 212467 station_ip 83.123.113.182 212467 port 73 212467 unique_id port 212469 username houshang 212469 mac 212469 bytes_out 0 212469 bytes_in 0 212469 station_ip 5.119.75.86 212469 port 76 212469 unique_id port 212469 remote_ip 10.8.0.158 212473 username nekheei 212473 mac 212473 bytes_out 0 212473 bytes_in 0 212473 station_ip 5.120.149.132 212473 port 73 212473 unique_id port 212473 remote_ip 10.8.0.154 212476 username nekheei 212476 mac 212476 bytes_out 23722 212476 bytes_in 36347 212439 station_ip 83.123.131.162 212439 port 70 212439 unique_id port 212442 username farhad3 212442 kill_reason Another user logged on this global unique id 212442 mac 212442 bytes_out 0 212442 bytes_in 0 212442 station_ip 5.120.151.17 212442 port 62 212442 unique_id port 212442 remote_ip 10.8.0.98 212446 username shahruz 212446 mac 212446 bytes_out 0 212446 bytes_in 0 212446 station_ip 83.123.131.162 212446 port 45 212446 unique_id port 212446 remote_ip 10.8.1.82 212447 username shahruz 212447 kill_reason Maximum number of concurrent logins reached 212447 mac 212447 bytes_out 0 212447 bytes_in 0 212447 station_ip 83.123.131.162 212447 port 75 212447 unique_id port 212449 username shahruz 212449 kill_reason Maximum check online fails reached 212449 mac 212449 bytes_out 0 212449 bytes_in 0 212449 station_ip 83.123.131.162 212449 port 64 212449 unique_id port 212455 username mosi 212455 mac 212455 bytes_out 0 212455 bytes_in 0 212455 station_ip 151.235.124.131 212455 port 42 212455 unique_id port 212457 username shahruz 212457 mac 212457 bytes_out 0 212457 bytes_in 0 212457 station_ip 83.123.131.162 212457 port 42 212457 unique_id port 212457 remote_ip 10.8.1.82 212464 username shahruz 212464 mac 212464 bytes_out 0 212464 bytes_in 0 212464 station_ip 83.123.131.162 212464 port 42 212464 unique_id port 212464 remote_ip 10.8.1.82 212471 username soleymani5056 212471 mac 212471 bytes_out 77894 212471 bytes_in 297576 212471 station_ip 5.119.143.97 212471 port 77 212471 unique_id port 212471 remote_ip 10.8.0.246 212477 username aminvpnipad 212477 mac 212477 bytes_out 0 212477 bytes_in 0 212477 station_ip 5.119.204.150 212477 port 1 212477 unique_id port 212477 remote_ip 10.8.0.2 212480 username nekheei 212480 mac 212480 bytes_out 0 212480 bytes_in 0 212480 station_ip 5.120.149.132 212480 port 46 212480 unique_id port 212480 remote_ip 10.8.1.74 212491 username shahruz 212491 mac 212491 bytes_out 0 212491 bytes_in 0 212491 station_ip 83.123.131.162 212491 port 76 212491 unique_id port 212491 remote_ip 10.8.0.174 212492 username farhad3 212492 kill_reason Another user logged on this global unique id 212492 mac 212492 bytes_out 0 212492 bytes_in 0 212492 station_ip 5.120.151.17 212492 port 62 212492 unique_id port 212493 username motamedi9772 212493 mac 212493 bytes_out 0 212493 bytes_in 0 212493 station_ip 83.123.27.152 212493 port 76 212493 unique_id port 212493 remote_ip 10.8.0.86 212496 username shahruz 212496 mac 212496 bytes_out 0 212496 bytes_in 0 212496 station_ip 83.123.131.162 212496 port 77 212496 unique_id port 212496 remote_ip 10.8.0.174 212499 username houshang 212499 kill_reason Another user logged on this global unique id 212499 mac 212499 bytes_out 0 212499 bytes_in 0 212499 station_ip 5.119.75.86 212499 port 42 212499 unique_id port 212499 remote_ip 10.8.1.246 212501 username motamedi9772 212501 mac 212501 bytes_out 0 212501 bytes_in 0 212501 station_ip 83.123.27.152 212501 port 76 212501 unique_id port 212501 remote_ip 10.8.0.86 212503 username shahruz 212503 mac 212503 bytes_out 0 212503 bytes_in 0 212503 station_ip 83.123.131.162 212503 port 44 212503 unique_id port 212503 remote_ip 10.8.1.82 212506 username motamedi9772 212506 mac 212506 bytes_out 0 212506 bytes_in 0 212506 station_ip 83.123.27.152 212506 port 76 212506 unique_id port 212506 remote_ip 10.8.0.86 212510 username motamedi9772 212510 mac 212510 bytes_out 0 212510 bytes_in 0 212510 station_ip 83.123.27.152 212510 port 79 212441 unique_id port 212441 remote_ip 10.8.0.94 212444 username shahruz 212444 mac 212444 bytes_out 0 212444 bytes_in 0 212444 station_ip 83.123.131.162 212444 port 64 212444 unique_id port 212444 remote_ip 10.8.0.174 212452 username barzegar 212452 mac 212452 bytes_out 0 212452 bytes_in 0 212452 station_ip 5.120.39.51 212452 port 44 212452 unique_id port 212452 remote_ip 10.8.1.30 212456 username yaghobi 212456 mac 212456 bytes_out 0 212456 bytes_in 0 212456 station_ip 83.122.16.183 212456 port 63 212456 unique_id port 212456 remote_ip 10.8.0.106 212459 username yazdani6029 212459 kill_reason Another user logged on this global unique id 212459 mac 212459 bytes_out 0 212459 bytes_in 0 212459 station_ip 83.123.113.182 212459 port 73 212459 unique_id port 212460 username shahruz 212460 kill_reason Maximum check online fails reached 212460 mac 212460 bytes_out 0 212460 bytes_in 0 212460 station_ip 83.123.131.162 212460 port 63 212460 unique_id port 212461 username shahruz 212461 mac 212461 bytes_out 0 212461 bytes_in 0 212461 station_ip 83.123.131.162 212461 port 77 212461 unique_id port 212461 remote_ip 10.8.0.174 212462 username yaghobi 212462 mac 212462 bytes_out 0 212462 bytes_in 0 212462 station_ip 83.122.16.183 212462 port 76 212462 unique_id port 212462 remote_ip 10.8.0.106 212463 username barzegar 212463 mac 212463 bytes_out 0 212463 bytes_in 0 212463 station_ip 5.120.39.51 212463 port 44 212463 unique_id port 212463 remote_ip 10.8.1.30 212468 username yaghobi 212468 mac 212468 bytes_out 30813 212468 bytes_in 38087 212468 station_ip 83.122.16.183 212468 port 42 212468 unique_id port 212468 remote_ip 10.8.1.106 212470 username houshang 212470 mac 212470 bytes_out 0 212470 bytes_in 0 212470 station_ip 5.119.75.86 212470 port 78 212470 unique_id port 212470 remote_ip 10.8.0.158 212472 username nekheei 212472 mac 212472 bytes_out 0 212472 bytes_in 0 212472 station_ip 5.120.149.132 212472 port 73 212472 unique_id port 212472 remote_ip 10.8.0.154 212474 username nekheei 212474 mac 212474 bytes_out 0 212474 bytes_in 0 212474 station_ip 5.120.149.132 212474 port 73 212474 unique_id port 212474 remote_ip 10.8.0.154 212475 username barzegar 212475 mac 212475 bytes_out 0 212475 bytes_in 0 212475 station_ip 5.120.39.51 212475 port 44 212475 unique_id port 212475 remote_ip 10.8.1.30 212483 username motamedi9772 212483 mac 212483 bytes_out 0 212483 bytes_in 0 212483 station_ip 83.123.27.152 212483 port 76 212483 unique_id port 212483 remote_ip 10.8.0.86 212485 username motamedi9772 212485 mac 212485 bytes_out 0 212485 bytes_in 0 212485 station_ip 83.123.27.152 212485 port 76 212485 unique_id port 212485 remote_ip 10.8.0.86 212486 username motamedi9772 212486 mac 212486 bytes_out 0 212486 bytes_in 0 212486 station_ip 83.123.27.152 212486 port 76 212486 unique_id port 212486 remote_ip 10.8.0.86 212487 username motamedi9772 212487 mac 212487 bytes_out 0 212487 bytes_in 0 212487 station_ip 83.123.27.152 212487 port 76 212487 unique_id port 212487 remote_ip 10.8.0.86 212488 username shahruz 212488 mac 212488 bytes_out 0 212488 bytes_in 0 212488 station_ip 83.123.131.162 212488 port 44 212488 unique_id port 212488 remote_ip 10.8.1.82 212495 username motamedi9772 212495 mac 212495 bytes_out 0 212495 bytes_in 0 212495 station_ip 83.123.27.152 212495 port 76 212495 unique_id port 212495 remote_ip 10.8.0.86 212497 username motamedi9772 212497 mac 212476 station_ip 5.120.149.132 212476 port 44 212476 unique_id port 212476 remote_ip 10.8.1.74 212478 username nilufarrajaei 212478 kill_reason Another user logged on this global unique id 212478 mac 212478 bytes_out 0 212478 bytes_in 0 212478 station_ip 83.123.170.5 212478 port 46 212478 unique_id port 212478 remote_ip 10.8.0.50 212479 username shahruz 212479 kill_reason Maximum check online fails reached 212479 mac 212479 bytes_out 0 212479 bytes_in 0 212479 station_ip 83.123.131.162 212479 port 73 212479 unique_id port 212481 username nekheei 212481 mac 212481 bytes_out 0 212481 bytes_in 0 212481 station_ip 5.120.149.132 212481 port 77 212481 unique_id port 212481 remote_ip 10.8.0.154 212482 username shahruz 212482 mac 212482 bytes_out 0 212482 bytes_in 0 212482 station_ip 83.123.131.162 212482 port 44 212482 unique_id port 212482 remote_ip 10.8.1.82 212484 username shahruz 212484 mac 212484 bytes_out 0 212484 bytes_in 0 212484 station_ip 83.123.131.162 212484 port 77 212484 unique_id port 212484 remote_ip 10.8.0.174 212489 username motamedi9772 212489 mac 212489 bytes_out 0 212489 bytes_in 0 212489 station_ip 83.123.27.152 212489 port 76 212489 unique_id port 212489 remote_ip 10.8.0.86 212490 username motamedi9772 212490 mac 212490 bytes_out 0 212490 bytes_in 0 212490 station_ip 83.123.27.152 212490 port 77 212490 unique_id port 212490 remote_ip 10.8.0.86 212494 username shahruz 212494 mac 212494 bytes_out 0 212494 bytes_in 0 212494 station_ip 83.123.131.162 212494 port 77 212494 unique_id port 212494 remote_ip 10.8.0.174 212498 username shahruz 212498 mac 212498 bytes_out 0 212498 bytes_in 0 212498 station_ip 83.123.131.162 212498 port 44 212498 unique_id port 212498 remote_ip 10.8.1.82 212500 username kalantary6037 212500 mac 212500 bytes_out 0 212500 bytes_in 0 212500 station_ip 37.129.33.165 212500 port 46 212500 unique_id port 212500 remote_ip 10.8.1.98 212502 username shahruz 212502 kill_reason Maximum check online fails reached 212502 mac 212502 bytes_out 0 212502 bytes_in 0 212502 station_ip 83.123.131.162 212502 port 77 212502 unique_id port 212505 username aminvpnipad 212505 mac 212505 bytes_out 0 212505 bytes_in 0 212505 station_ip 5.119.204.150 212505 port 1 212505 unique_id port 212505 remote_ip 10.8.0.2 212507 username shahruz 212507 mac 212507 bytes_out 0 212507 bytes_in 0 212507 station_ip 83.123.131.162 212507 port 44 212507 unique_id port 212507 remote_ip 10.8.1.82 212508 username motamedi9772 212508 mac 212508 bytes_out 0 212508 bytes_in 0 212508 station_ip 83.123.27.152 212508 port 76 212508 unique_id port 212508 remote_ip 10.8.0.86 212509 username shahruz 212509 mac 212509 bytes_out 0 212509 bytes_in 0 212509 station_ip 83.123.131.162 212509 port 76 212509 unique_id port 212509 remote_ip 10.8.0.174 212512 username motamedi9772 212512 mac 212512 bytes_out 0 212512 bytes_in 0 212512 station_ip 83.123.27.152 212512 port 76 212512 unique_id port 212512 remote_ip 10.8.0.86 212515 username motamedi9772 212515 mac 212515 bytes_out 0 212515 bytes_in 0 212515 station_ip 83.123.27.152 212515 port 41 212515 unique_id port 212515 remote_ip 10.8.0.86 212516 username kamali3 212516 mac 212516 bytes_out 0 212516 bytes_in 0 212516 station_ip 83.122.244.66 212516 port 78 212516 unique_id port 212516 remote_ip 10.8.0.182 212517 username shahruz 212517 mac 212517 bytes_out 0 212517 bytes_in 0 212517 station_ip 83.123.131.162 212517 port 41 212497 bytes_out 15342 212497 bytes_in 33053 212497 station_ip 83.123.27.152 212497 port 76 212497 unique_id port 212497 remote_ip 10.8.0.86 212504 username motamedi9772 212504 mac 212504 bytes_out 0 212504 bytes_in 0 212504 station_ip 83.123.27.152 212504 port 76 212504 unique_id port 212504 remote_ip 10.8.0.86 212523 username aminvpnipad 212523 mac 212523 bytes_out 0 212523 bytes_in 0 212523 station_ip 5.119.204.150 212523 port 1 212523 unique_id port 212523 remote_ip 10.8.0.2 212530 username milan 212530 kill_reason Another user logged on this global unique id 212530 mac 212530 bytes_out 0 212530 bytes_in 0 212530 station_ip 5.119.220.159 212530 port 43 212530 unique_id port 212530 remote_ip 10.8.1.22 212534 username shahruz 212534 kill_reason Maximum check online fails reached 212534 mac 212534 bytes_out 0 212534 bytes_in 0 212534 station_ip 83.123.131.162 212534 port 79 212534 unique_id port 212537 username mehrpoyan101 212537 mac 212537 bytes_out 0 212537 bytes_in 0 212537 station_ip 5.119.219.176 212537 port 78 212537 unique_id port 212537 remote_ip 10.8.0.134 212538 username barzegar 212538 mac 212538 bytes_out 0 212538 bytes_in 0 212538 station_ip 5.120.100.204 212538 port 78 212538 unique_id port 212538 remote_ip 10.8.0.34 212542 username shahruz 212542 kill_reason Maximum check online fails reached 212542 mac 212542 bytes_out 0 212542 bytes_in 0 212542 station_ip 83.123.131.162 212542 port 42 212542 unique_id port 212547 username aminvpnipad 212547 mac 212547 bytes_out 0 212547 bytes_in 0 212547 station_ip 5.119.204.150 212547 port 2 212547 unique_id port 212547 remote_ip 10.8.0.2 212552 username barzegar 212552 mac 212552 bytes_out 0 212552 bytes_in 0 212552 station_ip 5.120.100.204 212552 port 41 212552 unique_id port 212552 remote_ip 10.8.0.34 212554 username aminvpns6 212554 mac 212554 bytes_out 1250349 212554 bytes_in 12459807 212554 station_ip 5.119.35.234 212554 port 19 212554 unique_id port 212554 remote_ip 10.8.0.234 212555 username aminvpnipad 212555 mac 212555 bytes_out 0 212555 bytes_in 0 212555 station_ip 5.119.204.150 212555 port 1 212555 unique_id port 212555 remote_ip 10.8.0.2 212562 username barzegar 212562 mac 212562 bytes_out 0 212562 bytes_in 0 212562 station_ip 5.120.100.204 212562 port 19 212562 unique_id port 212562 remote_ip 10.8.0.34 212566 username aminvpnipad 212566 mac 212566 bytes_out 0 212566 bytes_in 0 212566 station_ip 5.119.204.150 212566 port 1 212566 unique_id port 212566 remote_ip 10.8.0.2 212568 username shahruz 212568 kill_reason Maximum check online fails reached 212568 mac 212568 bytes_out 0 212568 bytes_in 0 212568 station_ip 83.123.131.162 212568 port 19 212568 unique_id port 212569 username moslem6940 212569 mac 212569 bytes_out 0 212569 bytes_in 0 212569 station_ip 37.129.201.147 212569 port 46 212569 unique_id port 212569 remote_ip 10.8.1.186 212573 username moslem6940 212573 mac 212573 bytes_out 0 212573 bytes_in 0 212573 station_ip 37.129.201.147 212573 port 41 212573 unique_id port 212573 remote_ip 10.8.0.6 212576 username moslem6940 212576 mac 212576 bytes_out 0 212576 bytes_in 0 212576 station_ip 37.129.201.147 212576 port 62 212576 unique_id port 212576 remote_ip 10.8.0.6 212582 username moslem6940 212582 mac 212582 bytes_out 0 212582 bytes_in 0 212582 station_ip 37.129.201.147 212582 port 62 212582 unique_id port 212582 remote_ip 10.8.0.6 212583 username moslem6940 212583 mac 212583 bytes_out 0 212583 bytes_in 0 212510 unique_id port 212510 remote_ip 10.8.0.86 212511 username motamedi9772 212511 mac 212511 bytes_out 0 212511 bytes_in 0 212511 station_ip 83.123.27.152 212511 port 76 212511 unique_id port 212511 remote_ip 10.8.0.86 212513 username barzegar 212513 mac 212513 bytes_out 0 212513 bytes_in 0 212513 station_ip 5.120.163.131 212513 port 41 212513 unique_id port 212514 username motamedi9772 212514 mac 212514 bytes_out 0 212514 bytes_in 0 212514 station_ip 83.123.27.152 212514 port 46 212514 unique_id port 212514 remote_ip 10.8.1.182 212519 username houshang 212519 mac 212519 bytes_out 0 212519 bytes_in 0 212519 station_ip 5.119.75.86 212519 port 42 212519 unique_id port 212521 username shahruz 212521 mac 212521 bytes_out 0 212521 bytes_in 0 212521 station_ip 83.123.131.162 212521 port 42 212521 unique_id port 212521 remote_ip 10.8.1.82 212522 username tahmorsi 212522 mac 212522 bytes_out 0 212522 bytes_in 0 212522 station_ip 86.57.4.201 212522 port 44 212522 unique_id port 212522 remote_ip 10.8.1.78 212524 username godarzi 212524 kill_reason Another user logged on this global unique id 212524 mac 212524 bytes_out 0 212524 bytes_in 0 212524 station_ip 5.120.148.228 212524 port 66 212524 unique_id port 212524 remote_ip 10.8.0.74 212525 username naeimeh 212525 mac 212525 bytes_out 0 212525 bytes_in 0 212525 station_ip 37.129.192.36 212525 port 78 212525 unique_id port 212525 remote_ip 10.8.0.166 212526 username barzegar 212526 mac 212526 bytes_out 0 212526 bytes_in 0 212526 station_ip 5.120.100.204 212526 port 78 212526 unique_id port 212526 remote_ip 10.8.0.34 212527 username godarzi 212527 mac 212527 bytes_out 0 212527 bytes_in 0 212527 station_ip 5.120.148.228 212527 port 66 212527 unique_id port 212532 username soleymani5056 212532 mac 212532 bytes_out 0 212532 bytes_in 0 212532 station_ip 5.120.98.3 212532 port 41 212532 unique_id port 212532 remote_ip 10.8.0.246 212536 username motamedi9772 212536 kill_reason Another user logged on this global unique id 212536 mac 212536 bytes_out 0 212536 bytes_in 0 212536 station_ip 83.123.27.152 212536 port 76 212536 unique_id port 212536 remote_ip 10.8.0.86 212539 username shahruz 212539 mac 212539 bytes_out 0 212539 bytes_in 0 212539 station_ip 83.123.131.162 212539 port 78 212539 unique_id port 212539 remote_ip 10.8.0.174 212543 username nilufarrajaei 212543 kill_reason Another user logged on this global unique id 212543 mac 212543 bytes_out 0 212543 bytes_in 0 212543 station_ip 83.123.170.5 212543 port 46 212543 unique_id port 212544 username khademi 212544 mac 212544 bytes_out 0 212544 bytes_in 0 212544 station_ip 37.129.95.252 212544 port 19 212544 unique_id port 212546 username barzegar 212546 mac 212546 bytes_out 6962 212546 bytes_in 12850 212546 station_ip 5.120.100.204 212546 port 44 212546 unique_id port 212546 remote_ip 10.8.1.30 212549 username kalantary6037 212549 mac 212549 bytes_out 336307 212549 bytes_in 2924034 212549 station_ip 37.129.65.149 212549 port 47 212549 unique_id port 212549 remote_ip 10.8.1.98 212550 username barzegar 212550 mac 212550 bytes_out 3516 212550 bytes_in 6365 212550 station_ip 5.120.100.204 212550 port 44 212550 unique_id port 212550 remote_ip 10.8.1.30 212551 username farhad3 212551 kill_reason Another user logged on this global unique id 212551 mac 212551 bytes_out 0 212551 bytes_in 0 212551 station_ip 5.120.151.17 212551 port 62 212551 unique_id port 212553 username barzegar 212580 username moslem6940 212517 unique_id port 212517 remote_ip 10.8.0.174 212518 username shahruz 212518 mac 212518 bytes_out 0 212518 bytes_in 0 212518 station_ip 83.123.131.162 212518 port 41 212518 unique_id port 212518 remote_ip 10.8.0.174 212520 username barzegar 212520 mac 212520 bytes_out 0 212520 bytes_in 0 212520 station_ip 5.114.97.131 212520 port 41 212520 unique_id port 212520 remote_ip 10.8.0.34 212528 username shahruz 212528 mac 212528 bytes_out 0 212528 bytes_in 0 212528 station_ip 83.123.131.162 212528 port 78 212528 unique_id port 212528 remote_ip 10.8.0.174 212529 username aminvpnipad 212529 mac 212529 bytes_out 0 212529 bytes_in 0 212529 station_ip 5.119.204.150 212529 port 1 212529 unique_id port 212529 remote_ip 10.8.0.2 212531 username nilufarrajaei 212531 kill_reason Another user logged on this global unique id 212531 mac 212531 bytes_out 0 212531 bytes_in 0 212531 station_ip 83.123.170.5 212531 port 46 212531 unique_id port 212533 username shahruz 212533 kill_reason Maximum number of concurrent logins reached 212533 mac 212533 bytes_out 0 212533 bytes_in 0 212533 station_ip 83.123.131.162 212533 port 41 212533 unique_id port 212535 username shahruz 212535 mac 212535 bytes_out 1636 212535 bytes_in 5076 212535 station_ip 83.123.131.162 212535 port 80 212535 unique_id port 212535 remote_ip 10.8.0.174 212540 username shahruz 212540 mac 212540 bytes_out 0 212540 bytes_in 0 212540 station_ip 83.123.131.162 212540 port 42 212540 unique_id port 212540 remote_ip 10.8.1.82 212541 username mehrpoyan101 212541 mac 212541 bytes_out 0 212541 bytes_in 0 212541 station_ip 5.119.219.176 212541 port 41 212541 unique_id port 212541 remote_ip 10.8.0.134 212545 username aminvpns6 212545 mac 212545 bytes_out 0 212545 bytes_in 0 212545 station_ip 5.119.35.234 212545 port 1 212545 unique_id port 212545 remote_ip 10.8.0.2 212548 username aminvpns6 212548 mac 212548 bytes_out 0 212548 bytes_in 0 212548 station_ip 5.119.35.234 212548 port 1 212548 unique_id port 212548 remote_ip 10.8.0.2 212557 username motamedi9772 212557 kill_reason Another user logged on this global unique id 212557 mac 212557 bytes_out 0 212557 bytes_in 0 212557 station_ip 83.123.27.152 212557 port 76 212557 unique_id port 212559 username moslem6940 212559 mac 212559 bytes_out 0 212559 bytes_in 0 212559 station_ip 37.129.201.147 212559 port 41 212559 unique_id port 212559 remote_ip 10.8.0.6 212560 username farhad3 212560 mac 212560 bytes_out 0 212560 bytes_in 0 212560 station_ip 5.120.151.17 212560 port 62 212560 unique_id port 212561 username shahruz 212561 kill_reason Another user logged on this global unique id 212561 mac 212561 bytes_out 0 212561 bytes_in 0 212561 station_ip 83.123.131.162 212561 port 46 212561 unique_id port 212561 remote_ip 10.8.1.82 212564 username houshang 212564 mac 212564 bytes_out 0 212564 bytes_in 0 212564 station_ip 5.119.75.86 212564 port 78 212564 unique_id port 212564 remote_ip 10.8.0.158 212570 username barzegar 212570 mac 212570 bytes_out 0 212570 bytes_in 0 212570 station_ip 5.120.100.204 212570 port 47 212570 unique_id port 212570 remote_ip 10.8.1.30 212571 username barzegar 212571 mac 212571 bytes_out 0 212571 bytes_in 0 212571 station_ip 5.120.100.204 212571 port 47 212571 unique_id port 212571 remote_ip 10.8.1.30 212578 username moslem6940 212578 mac 212578 bytes_out 0 212578 bytes_in 0 212578 station_ip 37.129.201.147 212578 port 62 212578 unique_id port 212578 remote_ip 10.8.0.6 212553 kill_reason Maximum check online fails reached 212553 mac 212553 bytes_out 0 212553 bytes_in 0 212553 station_ip 5.120.100.204 212553 port 44 212553 unique_id port 212556 username barzegar 212556 mac 212556 bytes_out 0 212556 bytes_in 0 212556 station_ip 5.120.100.204 212556 port 19 212556 unique_id port 212556 remote_ip 10.8.0.34 212558 username moslem6940 212558 mac 212558 bytes_out 1125196 212558 bytes_in 13265802 212558 station_ip 37.129.201.147 212558 port 41 212558 unique_id port 212558 remote_ip 10.8.0.6 212563 username nilufarrajaei 212563 mac 212563 bytes_out 0 212563 bytes_in 0 212563 station_ip 83.123.170.5 212563 port 46 212563 unique_id port 212565 username barzegar 212565 mac 212565 bytes_out 4629 212565 bytes_in 7163 212565 station_ip 5.120.100.204 212565 port 48 212565 unique_id port 212565 remote_ip 10.8.1.30 212567 username moslem6940 212567 mac 212567 bytes_out 1976301 212567 bytes_in 43693730 212567 station_ip 37.129.201.147 212567 port 47 212567 unique_id port 212567 remote_ip 10.8.1.186 212572 username moslem6940 212572 mac 212572 bytes_out 0 212572 bytes_in 0 212572 station_ip 37.129.201.147 212572 port 46 212572 unique_id port 212572 remote_ip 10.8.1.186 212574 username moslem6940 212574 mac 212574 bytes_out 0 212574 bytes_in 0 212574 station_ip 37.129.201.147 212574 port 41 212574 unique_id port 212574 remote_ip 10.8.0.6 212575 username moslem6940 212575 mac 212575 bytes_out 0 212575 bytes_in 0 212575 station_ip 37.129.201.147 212575 port 62 212575 unique_id port 212575 remote_ip 10.8.0.6 212577 username moslem6940 212577 mac 212577 bytes_out 0 212577 bytes_in 0 212577 station_ip 37.129.201.147 212577 port 62 212577 unique_id port 212577 remote_ip 10.8.0.6 212579 username moslem6940 212579 mac 212579 bytes_out 0 212579 bytes_in 0 212579 station_ip 37.129.201.147 212579 port 47 212579 unique_id port 212579 remote_ip 10.8.1.186 212587 username motamedi9772 212587 kill_reason Another user logged on this global unique id 212587 mac 212587 bytes_out 0 212587 bytes_in 0 212587 station_ip 83.123.27.152 212587 port 76 212587 unique_id port 212589 username dorani4942 212589 mac 212589 bytes_out 0 212589 bytes_in 0 212589 station_ip 83.123.5.86 212589 port 46 212589 unique_id port 212589 remote_ip 10.8.1.118 212594 username dorani4942 212594 mac 212594 bytes_out 0 212594 bytes_in 0 212594 station_ip 83.123.5.86 212594 port 62 212594 unique_id port 212594 remote_ip 10.8.0.82 212597 username shahruz 212597 kill_reason Maximum check online fails reached 212597 mac 212597 bytes_out 0 212597 bytes_in 0 212597 station_ip 83.123.131.162 212597 port 62 212597 unique_id port 212600 username milan 212600 kill_reason Another user logged on this global unique id 212600 mac 212600 bytes_out 0 212600 bytes_in 0 212600 station_ip 5.119.220.159 212600 port 43 212600 unique_id port 212603 username motamedi9772 212603 mac 212603 bytes_out 0 212603 bytes_in 0 212603 station_ip 83.123.27.152 212603 port 76 212603 unique_id port 212607 username barzegar 212607 mac 212607 bytes_out 3631 212607 bytes_in 6198 212607 station_ip 5.120.100.204 212607 port 48 212607 unique_id port 212607 remote_ip 10.8.1.30 212612 username aminvpnipad 212612 mac 212612 bytes_out 0 212612 bytes_in 0 212612 station_ip 5.119.204.150 212612 port 1 212612 unique_id port 212612 remote_ip 10.8.0.2 212613 username barzegar 212613 mac 212613 bytes_out 6438 212613 bytes_in 8801 212613 station_ip 5.120.100.204 212580 mac 212580 bytes_out 0 212580 bytes_in 0 212580 station_ip 37.129.201.147 212580 port 62 212580 unique_id port 212580 remote_ip 10.8.0.6 212581 username moslem6940 212581 mac 212581 bytes_out 0 212581 bytes_in 0 212581 station_ip 37.129.201.147 212581 port 62 212581 unique_id port 212581 remote_ip 10.8.0.6 212584 username moslem6940 212584 kill_reason Maximum check online fails reached 212584 mac 212584 bytes_out 0 212584 bytes_in 0 212584 station_ip 37.129.201.147 212584 port 47 212584 unique_id port 212586 username moslem6940 212586 mac 212586 bytes_out 0 212586 bytes_in 0 212586 station_ip 37.129.201.147 212586 port 49 212586 unique_id port 212586 remote_ip 10.8.1.186 212588 username aminvpnipad 212588 mac 212588 bytes_out 0 212588 bytes_in 0 212588 station_ip 5.119.204.150 212588 port 1 212588 unique_id port 212588 remote_ip 10.8.0.2 212590 username barzegar 212590 mac 212590 bytes_out 0 212590 bytes_in 0 212590 station_ip 5.120.100.204 212590 port 46 212590 unique_id port 212590 remote_ip 10.8.1.30 212591 username yazdani6029 212591 mac 212591 bytes_out 0 212591 bytes_in 0 212591 station_ip 83.123.113.182 212591 port 66 212591 unique_id port 212591 remote_ip 10.8.0.210 212592 username dorani4942 212592 mac 212592 bytes_out 0 212592 bytes_in 0 212592 station_ip 83.123.5.86 212592 port 46 212592 unique_id port 212592 remote_ip 10.8.1.118 212593 username aminvpnipad 212593 mac 212593 bytes_out 0 212593 bytes_in 0 212593 station_ip 5.119.204.150 212593 port 1 212593 unique_id port 212593 remote_ip 10.8.0.2 212595 username shahruz 212595 mac 212595 bytes_out 2892689 212595 bytes_in 38588533 212595 station_ip 83.123.131.162 212595 port 48 212595 unique_id port 212595 remote_ip 10.8.1.82 212598 username barzegar 212598 mac 212598 bytes_out 0 212598 bytes_in 0 212598 station_ip 5.120.100.204 212598 port 48 212598 unique_id port 212598 remote_ip 10.8.1.30 212599 username dorani4942 212599 mac 212599 bytes_out 0 212599 bytes_in 0 212599 station_ip 83.123.5.86 212599 port 48 212599 unique_id port 212599 remote_ip 10.8.1.118 212602 username motamedi9772 212602 kill_reason Another user logged on this global unique id 212602 mac 212602 bytes_out 0 212602 bytes_in 0 212602 station_ip 83.123.27.152 212602 port 76 212602 unique_id port 212604 username motamedi9772 212604 mac 212604 bytes_out 0 212604 bytes_in 0 212604 station_ip 83.123.27.152 212604 port 66 212604 unique_id port 212604 remote_ip 10.8.0.86 212608 username motamedi9772 212608 mac 212608 bytes_out 0 212608 bytes_in 0 212608 station_ip 83.123.27.152 212608 port 66 212608 unique_id port 212608 remote_ip 10.8.0.86 212610 username mosi 212610 kill_reason Another user logged on this global unique id 212610 mac 212610 bytes_out 0 212610 bytes_in 0 212610 station_ip 151.235.124.131 212610 port 75 212610 unique_id port 212610 remote_ip 10.8.0.38 212615 username aminvpnipad 212615 mac 212615 bytes_out 0 212615 bytes_in 0 212615 station_ip 5.119.204.150 212615 port 1 212615 unique_id port 212615 remote_ip 10.8.0.2 212616 username dorani4942 212616 kill_reason Maximum check online fails reached 212616 mac 212616 bytes_out 0 212616 bytes_in 0 212616 station_ip 83.123.5.86 212616 port 49 212616 unique_id port 212619 username farhad3 212619 mac 212619 bytes_out 0 212619 bytes_in 0 212619 station_ip 5.120.151.17 212619 port 48 212619 unique_id port 212619 remote_ip 10.8.1.86 212623 username farhad3 212623 mac 212623 bytes_out 148067 212583 station_ip 37.129.201.147 212583 port 62 212583 unique_id port 212583 remote_ip 10.8.0.6 212585 username barzegar 212585 mac 212585 bytes_out 0 212585 bytes_in 0 212585 station_ip 5.120.100.204 212585 port 46 212585 unique_id port 212585 remote_ip 10.8.1.30 212596 username shahruz 212596 kill_reason Maximum number of concurrent logins reached 212596 mac 212596 bytes_out 0 212596 bytes_in 0 212596 station_ip 83.123.131.162 212596 port 48 212596 unique_id port 212601 username aminvpnipad 212601 mac 212601 bytes_out 0 212601 bytes_in 0 212601 station_ip 5.119.204.150 212601 port 1 212601 unique_id port 212601 remote_ip 10.8.0.2 212605 username motamedi9772 212605 mac 212605 bytes_out 0 212605 bytes_in 0 212605 station_ip 83.123.27.152 212605 port 66 212605 unique_id port 212605 remote_ip 10.8.0.86 212606 username motamedi9772 212606 mac 212606 bytes_out 0 212606 bytes_in 0 212606 station_ip 83.123.27.152 212606 port 66 212606 unique_id port 212606 remote_ip 10.8.0.86 212609 username dorani4942 212609 mac 212609 bytes_out 0 212609 bytes_in 0 212609 station_ip 83.123.5.86 212609 port 76 212609 unique_id port 212609 remote_ip 10.8.0.82 212611 username farhad3 212611 mac 212611 bytes_out 0 212611 bytes_in 0 212611 station_ip 5.120.151.17 212611 port 76 212611 unique_id port 212611 remote_ip 10.8.0.98 212614 username motamedi9772 212614 kill_reason Another user logged on this global unique id 212614 mac 212614 bytes_out 0 212614 bytes_in 0 212614 station_ip 83.123.27.152 212614 port 66 212614 unique_id port 212614 remote_ip 10.8.0.86 212621 username farhad3 212621 mac 212621 bytes_out 0 212621 bytes_in 0 212621 station_ip 5.120.151.17 212621 port 45 212621 unique_id port 212621 remote_ip 10.8.1.86 212626 username farhad3 212626 mac 212626 bytes_out 0 212626 bytes_in 0 212626 station_ip 5.120.151.17 212626 port 76 212626 unique_id port 212626 remote_ip 10.8.0.98 212630 username motamedi9772 212630 kill_reason Another user logged on this global unique id 212630 mac 212630 bytes_out 0 212630 bytes_in 0 212630 station_ip 83.123.27.152 212630 port 66 212630 unique_id port 212637 username farhad3 212637 mac 212637 bytes_out 0 212637 bytes_in 0 212637 station_ip 5.120.151.17 212637 port 76 212637 unique_id port 212637 remote_ip 10.8.0.98 212638 username dorani4942 212638 mac 212638 bytes_out 0 212638 bytes_in 0 212638 station_ip 83.123.5.86 212638 port 80 212638 unique_id port 212638 remote_ip 10.8.0.82 212641 username barzegar 212641 mac 212641 bytes_out 0 212641 bytes_in 0 212641 station_ip 5.120.1.209 212641 port 43 212641 unique_id port 212641 remote_ip 10.8.1.30 212644 username alipour1506 212644 kill_reason Another user logged on this global unique id 212644 mac 212644 bytes_out 0 212644 bytes_in 0 212644 station_ip 94.176.8.78 212644 port 38 212644 unique_id port 212648 username dorani4942 212648 mac 212648 bytes_out 0 212648 bytes_in 0 212648 station_ip 83.123.5.86 212648 port 45 212648 unique_id port 212648 remote_ip 10.8.1.118 212649 username dorani4942 212649 mac 212649 bytes_out 1132198 212649 bytes_in 13682294 212649 station_ip 83.123.5.86 212649 port 50 212649 unique_id port 212649 remote_ip 10.8.0.82 212652 username alihajmalek 212652 mac 212652 bytes_out 2081856 212652 bytes_in 20363127 212652 station_ip 37.129.251.191 212652 port 80 212652 unique_id port 212652 remote_ip 10.8.0.250 212653 username motamedi9772 212653 kill_reason Another user logged on this global unique id 212653 mac 212653 bytes_out 0 212653 bytes_in 0 212613 port 49 212613 unique_id port 212613 remote_ip 10.8.1.30 212617 username yaghobi 212617 mac 212617 bytes_out 2823197 212617 bytes_in 12221464 212617 station_ip 83.123.165.204 212617 port 45 212617 unique_id port 212617 remote_ip 10.8.1.106 212618 username soleymani5056 212618 mac 212618 bytes_out 171986 212618 bytes_in 285953 212618 station_ip 5.119.200.15 212618 port 78 212618 unique_id port 212618 remote_ip 10.8.0.246 212620 username mosi 212620 kill_reason Another user logged on this global unique id 212620 mac 212620 bytes_out 0 212620 bytes_in 0 212620 station_ip 151.235.124.131 212620 port 75 212620 unique_id port 212622 username dorani4942 212622 mac 212622 bytes_out 0 212622 bytes_in 0 212622 station_ip 83.123.5.86 212622 port 78 212622 unique_id port 212622 remote_ip 10.8.0.82 212625 username motamedi9772 212625 kill_reason Another user logged on this global unique id 212625 mac 212625 bytes_out 0 212625 bytes_in 0 212625 station_ip 83.123.27.152 212625 port 66 212625 unique_id port 212628 username aminvpnipad 212628 mac 212628 bytes_out 0 212628 bytes_in 0 212628 station_ip 5.119.204.150 212628 port 1 212628 unique_id port 212628 remote_ip 10.8.0.2 212633 username milan 212633 mac 212633 bytes_out 0 212633 bytes_in 0 212633 station_ip 5.119.117.160 212633 port 78 212633 unique_id port 212633 remote_ip 10.8.0.222 212634 username mostafa_es78 212634 mac 212634 bytes_out 0 212634 bytes_in 0 212634 station_ip 113.203.39.130 212634 port 78 212634 unique_id port 212634 remote_ip 10.8.0.42 212636 username dorani4942 212636 mac 212636 bytes_out 0 212636 bytes_in 0 212636 station_ip 83.123.5.86 212636 port 78 212636 unique_id port 212636 remote_ip 10.8.0.82 212640 username pourshad 212640 mac 212640 bytes_out 0 212640 bytes_in 0 212640 station_ip 5.120.54.100 212640 port 50 212640 unique_id port 212640 remote_ip 10.8.0.122 212642 username dorani4942 212642 mac 212642 bytes_out 0 212642 bytes_in 0 212642 station_ip 83.123.5.86 212642 port 45 212642 unique_id port 212642 remote_ip 10.8.1.118 212645 username aminvpnipad 212645 mac 212645 bytes_out 0 212645 bytes_in 0 212645 station_ip 5.119.204.150 212645 port 1 212645 unique_id port 212645 remote_ip 10.8.0.2 212650 username aminvpnipad 212650 mac 212650 bytes_out 0 212650 bytes_in 0 212650 station_ip 5.119.204.150 212650 port 1 212650 unique_id port 212650 remote_ip 10.8.0.2 212651 username barzegar 212651 mac 212651 bytes_out 0 212651 bytes_in 0 212651 station_ip 5.119.150.236 212651 port 50 212651 unique_id port 212651 remote_ip 10.8.0.34 212657 username barzegar 212657 mac 212657 bytes_out 0 212657 bytes_in 0 212657 station_ip 5.119.150.236 212657 port 45 212657 unique_id port 212657 remote_ip 10.8.1.30 212660 username motamedi9772 212660 mac 212660 bytes_out 0 212660 bytes_in 0 212660 station_ip 83.123.27.152 212660 port 45 212660 unique_id port 212660 remote_ip 10.8.1.182 212661 username sabaghnezhad 212661 mac 212661 bytes_out 1020791 212661 bytes_in 1449198 212661 station_ip 83.123.182.242 212661 port 41 212661 unique_id port 212661 remote_ip 10.8.0.94 212666 username motamedi9772 212666 mac 212666 bytes_out 3523058 212666 bytes_in 37260146 212666 station_ip 83.123.27.152 212666 port 50 212666 unique_id port 212666 remote_ip 10.8.0.86 212667 username aminvpnipad 212667 mac 212667 bytes_out 0 212667 bytes_in 0 212667 station_ip 5.119.204.150 212667 port 1 212667 unique_id port 212667 remote_ip 10.8.0.2 212623 bytes_in 520300 212623 station_ip 5.120.151.17 212623 port 76 212623 unique_id port 212623 remote_ip 10.8.0.98 212624 username aminvpnipad 212624 mac 212624 bytes_out 0 212624 bytes_in 0 212624 station_ip 5.119.204.150 212624 port 1 212624 unique_id port 212624 remote_ip 10.8.0.2 212627 username dorani4942 212627 mac 212627 bytes_out 0 212627 bytes_in 0 212627 station_ip 83.123.5.86 212627 port 78 212627 unique_id port 212627 remote_ip 10.8.0.82 212629 username dorani4942 212629 mac 212629 bytes_out 0 212629 bytes_in 0 212629 station_ip 83.123.5.86 212629 port 78 212629 unique_id port 212629 remote_ip 10.8.0.82 212631 username barzegar 212631 mac 212631 bytes_out 0 212631 bytes_in 0 212631 station_ip 5.120.1.209 212631 port 80 212631 unique_id port 212631 remote_ip 10.8.0.34 212632 username milan 212632 mac 212632 bytes_out 0 212632 bytes_in 0 212632 station_ip 5.119.220.159 212632 port 43 212632 unique_id port 212635 username dorani4942 212635 mac 212635 bytes_out 0 212635 bytes_in 0 212635 station_ip 83.123.5.86 212635 port 78 212635 unique_id port 212635 remote_ip 10.8.0.82 212639 username aminvpnipad 212639 mac 212639 bytes_out 0 212639 bytes_in 0 212639 station_ip 5.119.204.150 212639 port 1 212639 unique_id port 212639 remote_ip 10.8.0.2 212643 username motamedi9772 212643 kill_reason Another user logged on this global unique id 212643 mac 212643 bytes_out 0 212643 bytes_in 0 212643 station_ip 83.123.27.152 212643 port 66 212643 unique_id port 212646 username mosi 212646 kill_reason Another user logged on this global unique id 212646 mac 212646 bytes_out 0 212646 bytes_in 0 212646 station_ip 151.235.124.131 212646 port 75 212646 unique_id port 212647 username barzegar 212647 mac 212647 bytes_out 0 212647 bytes_in 0 212647 station_ip 5.119.150.236 212647 port 50 212647 unique_id port 212647 remote_ip 10.8.0.34 212655 username mosi 212655 kill_reason Another user logged on this global unique id 212655 mac 212655 bytes_out 0 212655 bytes_in 0 212655 station_ip 151.235.124.131 212655 port 75 212655 unique_id port 212656 username aminvpnipad 212656 mac 212656 bytes_out 0 212656 bytes_in 0 212656 station_ip 5.119.204.150 212656 port 1 212656 unique_id port 212656 remote_ip 10.8.0.2 212658 username farhad3 212658 kill_reason Another user logged on this global unique id 212658 mac 212658 bytes_out 0 212658 bytes_in 0 212658 station_ip 5.120.151.17 212658 port 76 212658 unique_id port 212658 remote_ip 10.8.0.98 212663 username aminvpnipad 212663 mac 212663 bytes_out 0 212663 bytes_in 0 212663 station_ip 5.119.204.150 212663 port 1 212663 unique_id port 212663 remote_ip 10.8.0.2 212664 username barzegar 212664 mac 212664 bytes_out 0 212664 bytes_in 0 212664 station_ip 5.119.150.236 212664 port 45 212664 unique_id port 212664 remote_ip 10.8.1.30 212665 username farhad3 212665 mac 212665 bytes_out 0 212665 bytes_in 0 212665 station_ip 5.120.151.17 212665 port 76 212665 unique_id port 212674 username barzegar 212674 mac 212674 bytes_out 0 212674 bytes_in 0 212674 station_ip 5.119.150.236 212674 port 50 212674 unique_id port 212674 remote_ip 10.8.1.30 212679 username aminvpns6 212679 mac 212679 bytes_out 0 212679 bytes_in 0 212679 station_ip 5.119.204.150 212679 port 41 212679 unique_id port 212679 remote_ip 10.8.0.234 212682 username farhad3 212682 mac 212682 bytes_out 0 212682 bytes_in 0 212682 station_ip 5.120.151.17 212682 port 45 212682 unique_id port 212653 station_ip 83.123.27.152 212653 port 66 212653 unique_id port 212654 username aminvpns6 212654 kill_reason Another user logged on this global unique id 212654 mac 212654 bytes_out 0 212654 bytes_in 0 212654 station_ip 5.120.34.39 212654 port 78 212654 unique_id port 212654 remote_ip 10.8.0.234 212659 username motamedi9772 212659 mac 212659 bytes_out 0 212659 bytes_in 0 212659 station_ip 83.123.27.152 212659 port 66 212659 unique_id port 212662 username mosi 212662 kill_reason Another user logged on this global unique id 212662 mac 212662 bytes_out 0 212662 bytes_in 0 212662 station_ip 151.235.124.131 212662 port 75 212662 unique_id port 212669 username mosi 212669 kill_reason Another user logged on this global unique id 212669 mac 212669 bytes_out 0 212669 bytes_in 0 212669 station_ip 151.235.124.131 212669 port 75 212669 unique_id port 212670 username farhad3 212670 mac 212670 bytes_out 662307 212670 bytes_in 2260213 212670 station_ip 5.120.151.17 212670 port 41 212670 unique_id port 212670 remote_ip 10.8.0.98 212671 username aminvpnipad 212671 mac 212671 bytes_out 0 212671 bytes_in 0 212671 station_ip 5.119.204.150 212671 port 1 212671 unique_id port 212671 remote_ip 10.8.0.2 212675 username barzegar 212675 mac 212675 bytes_out 0 212675 bytes_in 0 212675 station_ip 5.119.150.236 212675 port 41 212675 unique_id port 212675 remote_ip 10.8.0.34 212677 username aminvpns6 212677 mac 212677 bytes_out 0 212677 bytes_in 0 212677 station_ip 5.120.34.39 212677 port 78 212677 unique_id port 212680 username barzegar 212680 mac 212680 bytes_out 0 212680 bytes_in 0 212680 station_ip 5.119.150.236 212680 port 51 212680 unique_id port 212680 remote_ip 10.8.1.30 212681 username aminvpns6 212681 mac 212681 bytes_out 11977 212681 bytes_in 14240 212681 station_ip 5.120.34.39 212681 port 50 212681 unique_id port 212681 remote_ip 10.8.0.234 212683 username aminvpnipad 212683 mac 212683 bytes_out 0 212683 bytes_in 0 212683 station_ip 5.119.204.150 212683 port 1 212683 unique_id port 212683 remote_ip 10.8.0.2 212684 username barzegar 212684 mac 212684 bytes_out 0 212684 bytes_in 0 212684 station_ip 5.119.150.236 212684 port 50 212684 unique_id port 212684 remote_ip 10.8.1.30 212685 username dorani4942 212685 kill_reason Another user logged on this global unique id 212685 mac 212685 bytes_out 0 212685 bytes_in 0 212685 station_ip 37.129.240.232 212685 port 41 212685 unique_id port 212685 remote_ip 10.8.0.82 212693 username aminvpnipad 212693 mac 212693 bytes_out 0 212693 bytes_in 0 212693 station_ip 5.119.204.150 212693 port 1 212693 unique_id port 212693 remote_ip 10.8.0.2 212694 username aminvpnipad 212694 mac 212694 bytes_out 0 212694 bytes_in 0 212694 station_ip 5.119.204.150 212694 port 1 212694 unique_id port 212694 remote_ip 10.8.0.2 212697 username dorani4942 212697 kill_reason Another user logged on this global unique id 212697 mac 212697 bytes_out 0 212697 bytes_in 0 212697 station_ip 37.129.240.232 212697 port 41 212697 unique_id port 212697 remote_ip 10.8.0.82 212705 username barzegar 212705 mac 212705 bytes_out 0 212705 bytes_in 0 212705 station_ip 5.119.150.236 212705 port 41 212705 unique_id port 212705 remote_ip 10.8.0.34 212710 username dorani4942 212710 kill_reason Another user logged on this global unique id 212710 mac 212710 bytes_out 0 212710 bytes_in 0 212710 station_ip 37.129.240.232 212710 port 66 212710 unique_id port 212710 remote_ip 10.8.0.82 212712 username aminvpnipad 212712 mac 212712 bytes_out 0 212712 bytes_in 0 212668 username barzegar 212668 mac 212668 bytes_out 0 212668 bytes_in 0 212668 station_ip 5.119.150.236 212668 port 45 212668 unique_id port 212668 remote_ip 10.8.1.30 212672 username pourshad 212672 kill_reason Another user logged on this global unique id 212672 mac 212672 bytes_out 0 212672 bytes_in 0 212672 station_ip 5.120.54.100 212672 port 43 212672 unique_id port 212672 remote_ip 10.8.1.10 212673 username barzegar 212673 mac 212673 bytes_out 9106 212673 bytes_in 72217 212673 station_ip 5.119.150.236 212673 port 50 212673 unique_id port 212673 remote_ip 10.8.1.30 212676 username aminvpnipad 212676 mac 212676 bytes_out 0 212676 bytes_in 0 212676 station_ip 5.119.204.150 212676 port 1 212676 unique_id port 212676 remote_ip 10.8.0.2 212678 username dorani4942 212678 kill_reason Another user logged on this global unique id 212678 mac 212678 bytes_out 0 212678 bytes_in 0 212678 station_ip 37.129.240.232 212678 port 50 212678 unique_id port 212678 remote_ip 10.8.1.118 212688 username barzegar 212688 mac 212688 bytes_out 0 212688 bytes_in 0 212688 station_ip 5.119.150.236 212688 port 50 212688 unique_id port 212688 remote_ip 10.8.1.30 212689 username dorani4942 212689 mac 212689 bytes_out 0 212689 bytes_in 0 212689 station_ip 37.129.240.232 212689 port 41 212689 unique_id port 212690 username dorani4942 212690 mac 212690 bytes_out 201501 212690 bytes_in 2670768 212690 station_ip 37.129.240.232 212690 port 66 212690 unique_id port 212690 remote_ip 10.8.0.82 212691 username aminvpnipad 212691 mac 212691 bytes_out 0 212691 bytes_in 0 212691 station_ip 5.119.204.150 212691 port 1 212691 unique_id port 212691 remote_ip 10.8.0.2 212692 username barzegar 212692 mac 212692 bytes_out 0 212692 bytes_in 0 212692 station_ip 5.119.150.236 212692 port 66 212692 unique_id port 212692 remote_ip 10.8.0.34 212695 username barzegar 212695 mac 212695 bytes_out 0 212695 bytes_in 0 212695 station_ip 5.119.150.236 212695 port 50 212695 unique_id port 212695 remote_ip 10.8.1.30 212698 username aminvpnipad 212698 mac 212698 bytes_out 0 212698 bytes_in 0 212698 station_ip 5.119.204.150 212698 port 1 212698 unique_id port 212698 remote_ip 10.8.0.2 212699 username barzegar 212699 mac 212699 bytes_out 0 212699 bytes_in 0 212699 station_ip 5.119.150.236 212699 port 50 212699 unique_id port 212699 remote_ip 10.8.1.30 212701 username barzegar 212701 mac 212701 bytes_out 0 212701 bytes_in 0 212701 station_ip 5.119.150.236 212701 port 66 212701 unique_id port 212701 remote_ip 10.8.0.34 212703 username aminvpnipad 212703 mac 212703 bytes_out 0 212703 bytes_in 0 212703 station_ip 5.119.204.150 212703 port 1 212703 unique_id port 212703 remote_ip 10.8.0.2 212704 username aminvpnipad 212704 mac 212704 bytes_out 0 212704 bytes_in 0 212704 station_ip 5.119.204.150 212704 port 1 212704 unique_id port 212704 remote_ip 10.8.0.2 212706 username farhad3 212706 mac 212706 bytes_out 0 212706 bytes_in 0 212706 station_ip 5.120.151.17 212706 port 45 212706 unique_id port 212706 remote_ip 10.8.1.86 212707 username sabaghnezhad 212707 mac 212707 bytes_out 0 212707 bytes_in 0 212707 station_ip 83.122.25.214 212707 port 76 212707 unique_id port 212707 remote_ip 10.8.0.94 212708 username barzegar 212708 mac 212708 bytes_out 0 212708 bytes_in 0 212708 station_ip 5.119.150.236 212708 port 41 212708 unique_id port 212708 remote_ip 10.8.0.34 212711 username barzegar 212711 mac 212711 bytes_out 0 212682 remote_ip 10.8.1.86 212686 username aminvpnipad 212686 mac 212686 bytes_out 0 212686 bytes_in 0 212686 station_ip 5.119.204.150 212686 port 1 212686 unique_id port 212686 remote_ip 10.8.0.2 212687 username motamedi9772 212687 mac 212687 bytes_out 0 212687 bytes_in 0 212687 station_ip 83.123.79.248 212687 port 66 212687 unique_id port 212687 remote_ip 10.8.0.86 212696 username farhad3 212696 mac 212696 bytes_out 0 212696 bytes_in 0 212696 station_ip 5.120.151.17 212696 port 45 212696 unique_id port 212696 remote_ip 10.8.1.86 212700 username aminvpnipad 212700 mac 212700 bytes_out 0 212700 bytes_in 0 212700 station_ip 5.119.204.150 212700 port 1 212700 unique_id port 212700 remote_ip 10.8.0.2 212702 username dorani4942 212702 mac 212702 bytes_out 0 212702 bytes_in 0 212702 station_ip 37.129.240.232 212702 port 41 212702 unique_id port 212709 username aminvpnipad 212709 mac 212709 bytes_out 0 212709 bytes_in 0 212709 station_ip 5.119.204.150 212709 port 1 212709 unique_id port 212709 remote_ip 10.8.0.2 212714 username barzegar 212714 mac 212714 bytes_out 0 212714 bytes_in 0 212714 station_ip 5.119.150.236 212714 port 41 212714 unique_id port 212714 remote_ip 10.8.0.34 212718 username dorani4942 212718 mac 212718 bytes_out 0 212718 bytes_in 0 212718 station_ip 37.129.240.232 212718 port 66 212718 unique_id port 212721 username aminvpnipad 212721 mac 212721 bytes_out 0 212721 bytes_in 0 212721 station_ip 5.119.204.150 212721 port 1 212721 unique_id port 212721 remote_ip 10.8.0.2 212722 username mosi 212722 mac 212722 bytes_out 0 212722 bytes_in 0 212722 station_ip 151.235.124.131 212722 port 75 212722 unique_id port 212723 username dorani4942 212723 mac 212723 bytes_out 0 212723 bytes_in 0 212723 station_ip 37.129.240.232 212723 port 45 212723 unique_id port 212723 remote_ip 10.8.1.118 212728 username barzegar 212728 mac 212728 bytes_out 0 212728 bytes_in 0 212728 station_ip 5.119.150.236 212728 port 45 212728 unique_id port 212728 remote_ip 10.8.1.30 212729 username aminvpnipad 212729 mac 212729 bytes_out 0 212729 bytes_in 0 212729 station_ip 5.119.204.150 212729 port 1 212729 unique_id port 212729 remote_ip 10.8.0.2 212731 username barzegar 212731 mac 212731 bytes_out 0 212731 bytes_in 0 212731 station_ip 5.119.150.236 212731 port 75 212731 unique_id port 212731 remote_ip 10.8.0.34 212733 username dorani4942 212733 mac 212733 bytes_out 0 212733 bytes_in 0 212733 station_ip 37.129.160.25 212733 port 41 212733 unique_id port 212737 username barzegar 212737 mac 212737 bytes_out 0 212737 bytes_in 0 212737 station_ip 5.119.150.236 212737 port 41 212737 unique_id port 212737 remote_ip 10.8.0.34 212738 username aminvpnipad 212738 mac 212738 bytes_out 0 212738 bytes_in 0 212738 station_ip 5.119.204.150 212738 port 1 212738 unique_id port 212738 remote_ip 10.8.0.2 212741 username hosseine 212741 kill_reason Maximum check online fails reached 212741 mac 212741 bytes_out 0 212741 bytes_in 0 212741 station_ip 83.123.190.71 212741 port 68 212741 unique_id port 212743 username barzegar 212743 mac 212743 bytes_out 0 212743 bytes_in 0 212743 station_ip 5.119.150.236 212743 port 41 212743 unique_id port 212743 remote_ip 10.8.0.34 212750 username dorani4942 212750 mac 212750 bytes_out 0 212750 bytes_in 0 212750 station_ip 83.122.132.39 212750 port 41 212750 unique_id port 212750 remote_ip 10.8.0.82 212711 bytes_in 0 212711 station_ip 5.119.150.236 212711 port 41 212711 unique_id port 212711 remote_ip 10.8.0.34 212713 username aminvpnipad 212713 mac 212713 bytes_out 0 212713 bytes_in 0 212713 station_ip 5.119.204.150 212713 port 1 212713 unique_id port 212713 remote_ip 10.8.0.2 212716 username barzegar 212716 mac 212716 bytes_out 0 212716 bytes_in 0 212716 station_ip 5.119.150.236 212716 port 45 212716 unique_id port 212716 remote_ip 10.8.1.30 212717 username aminvpnipad 212717 mac 212717 bytes_out 0 212717 bytes_in 0 212717 station_ip 5.119.204.150 212717 port 1 212717 unique_id port 212717 remote_ip 10.8.0.2 212720 username barzegar 212720 mac 212720 bytes_out 0 212720 bytes_in 0 212720 station_ip 5.119.150.236 212720 port 41 212720 unique_id port 212720 remote_ip 10.8.0.34 212724 username mosi 212724 mac 212724 bytes_out 18724 212724 bytes_in 25133 212724 station_ip 151.235.124.131 212724 port 41 212724 unique_id port 212724 remote_ip 10.8.0.38 212732 username aminvpnipad 212732 mac 212732 bytes_out 0 212732 bytes_in 0 212732 station_ip 5.119.204.150 212732 port 1 212732 unique_id port 212732 remote_ip 10.8.0.2 212734 username milan 212734 mac 212734 bytes_out 200829 212734 bytes_in 332299 212734 station_ip 5.120.154.77 212734 port 48 212734 unique_id port 212734 remote_ip 10.8.1.22 212740 username aminvpnipad 212740 mac 212740 bytes_out 0 212740 bytes_in 0 212740 station_ip 5.119.204.150 212740 port 1 212740 unique_id port 212740 remote_ip 10.8.0.2 212742 username dorani4942 212742 kill_reason Maximum check online fails reached 212742 mac 212742 bytes_out 0 212742 bytes_in 0 212742 station_ip 37.129.160.25 212742 port 75 212742 unique_id port 212742 remote_ip 10.8.0.82 212744 username aminvpnipad 212744 mac 212744 bytes_out 0 212744 bytes_in 0 212744 station_ip 5.119.204.150 212744 port 1 212744 unique_id port 212744 remote_ip 10.8.0.2 212747 username aminvpnipad 212747 mac 212747 bytes_out 0 212747 bytes_in 0 212747 station_ip 5.119.204.150 212747 port 1 212747 unique_id port 212747 remote_ip 10.8.0.2 212749 username dorani4942 212749 mac 212749 bytes_out 0 212749 bytes_in 0 212749 station_ip 37.129.160.25 212749 port 75 212749 unique_id port 212751 username dorani4942 212751 mac 212751 bytes_out 0 212751 bytes_in 0 212751 station_ip 83.122.132.39 212751 port 75 212751 unique_id port 212751 remote_ip 10.8.0.82 212752 username aminvpnipad 212752 mac 212752 bytes_out 0 212752 bytes_in 0 212752 station_ip 5.119.204.150 212752 port 1 212752 unique_id port 212752 remote_ip 10.8.0.2 212753 username aminvpnipad 212753 mac 212753 bytes_out 0 212753 bytes_in 0 212753 station_ip 5.119.204.150 212753 port 1 212753 unique_id port 212753 remote_ip 10.8.0.2 212754 username barzegar 212754 mac 212754 bytes_out 0 212754 bytes_in 0 212754 station_ip 5.119.150.236 212754 port 75 212754 unique_id port 212754 remote_ip 10.8.0.34 212758 username dorani4942 212758 mac 212758 bytes_out 412139 212758 bytes_in 4213378 212758 station_ip 83.122.132.39 212758 port 45 212758 unique_id port 212758 remote_ip 10.8.1.118 212759 username aminvpnipad 212759 mac 212759 bytes_out 0 212759 bytes_in 0 212759 station_ip 5.119.204.150 212759 port 1 212759 unique_id port 212759 remote_ip 10.8.0.2 212761 username dorani4942 212761 mac 212761 bytes_out 0 212761 bytes_in 0 212761 station_ip 83.122.132.39 212761 port 45 212761 unique_id port 212712 station_ip 5.119.204.150 212712 port 1 212712 unique_id port 212712 remote_ip 10.8.0.2 212715 username dorani4942 212715 kill_reason Another user logged on this global unique id 212715 mac 212715 bytes_out 0 212715 bytes_in 0 212715 station_ip 37.129.240.232 212715 port 66 212715 unique_id port 212719 username dorani4942 212719 mac 212719 bytes_out 200171 212719 bytes_in 189798 212719 station_ip 37.129.240.232 212719 port 45 212719 unique_id port 212719 remote_ip 10.8.1.118 212725 username barzegar 212725 mac 212725 bytes_out 0 212725 bytes_in 0 212725 station_ip 5.119.150.236 212725 port 41 212725 unique_id port 212725 remote_ip 10.8.0.34 212726 username aminvpnipad 212726 mac 212726 bytes_out 0 212726 bytes_in 0 212726 station_ip 5.119.204.150 212726 port 1 212726 unique_id port 212726 remote_ip 10.8.0.2 212727 username dorani4942 212727 mac 212727 bytes_out 0 212727 bytes_in 0 212727 station_ip 37.129.240.232 212727 port 45 212727 unique_id port 212727 remote_ip 10.8.1.118 212730 username dorani4942 212730 kill_reason Another user logged on this global unique id 212730 mac 212730 bytes_out 0 212730 bytes_in 0 212730 station_ip 37.129.160.25 212730 port 41 212730 unique_id port 212730 remote_ip 10.8.0.82 212735 username dorani4942 212735 mac 212735 bytes_out 136097 212735 bytes_in 811468 212735 station_ip 37.129.160.25 212735 port 45 212735 unique_id port 212735 remote_ip 10.8.1.118 212736 username dorani4942 212736 mac 212736 bytes_out 0 212736 bytes_in 0 212736 station_ip 37.129.160.25 212736 port 41 212736 unique_id port 212736 remote_ip 10.8.0.82 212739 username barzegar 212739 mac 212739 bytes_out 0 212739 bytes_in 0 212739 station_ip 5.119.150.236 212739 port 45 212739 unique_id port 212739 remote_ip 10.8.1.30 212745 username mohammadjavad 212745 mac 212745 bytes_out 0 212745 bytes_in 0 212745 station_ip 83.123.224.69 212745 port 76 212745 unique_id port 212745 remote_ip 10.8.0.138 212746 username dorani4942 212746 kill_reason Another user logged on this global unique id 212746 mac 212746 bytes_out 0 212746 bytes_in 0 212746 station_ip 37.129.160.25 212746 port 75 212746 unique_id port 212748 username barzegar 212748 mac 212748 bytes_out 0 212748 bytes_in 0 212748 station_ip 5.119.150.236 212748 port 45 212748 unique_id port 212748 remote_ip 10.8.1.30 212755 username dorani4942 212755 mac 212755 bytes_out 0 212755 bytes_in 0 212755 station_ip 83.122.132.39 212755 port 41 212755 unique_id port 212755 remote_ip 10.8.0.82 212756 username dorani4942 212756 mac 212756 bytes_out 319692 212756 bytes_in 4358110 212756 station_ip 83.122.132.39 212756 port 45 212756 unique_id port 212756 remote_ip 10.8.1.118 212757 username dorani4942 212757 mac 212757 bytes_out 9522 212757 bytes_in 13669 212757 station_ip 83.122.132.39 212757 port 41 212757 unique_id port 212757 remote_ip 10.8.0.82 212760 username barzegar 212760 mac 212760 bytes_out 0 212760 bytes_in 0 212760 station_ip 5.119.150.236 212760 port 41 212760 unique_id port 212760 remote_ip 10.8.0.34 212761 remote_ip 10.8.1.118 212762 username barzegar 212762 mac 212762 bytes_out 0 212762 bytes_in 0 212762 station_ip 5.119.150.236 212762 port 48 212762 unique_id port 212762 remote_ip 10.8.1.30 212763 username aminvpnipad 212763 mac 212763 bytes_out 0 212763 bytes_in 0 212763 station_ip 5.119.204.150 212763 port 1 212763 unique_id port 212763 remote_ip 10.8.0.2 212764 username barzegar 212764 mac 212764 bytes_out 0 212764 bytes_in 0 212764 station_ip 5.119.150.236 212764 port 75 212764 unique_id port 212764 remote_ip 10.8.0.34 212765 username dorani4942 212765 mac 212765 bytes_out 691825 212765 bytes_in 9285454 212765 station_ip 83.122.132.39 212765 port 41 212765 unique_id port 212765 remote_ip 10.8.0.82 212767 username barzegar 212767 mac 212767 bytes_out 0 212767 bytes_in 0 212767 station_ip 5.119.150.236 212767 port 45 212767 unique_id port 212767 remote_ip 10.8.1.30 212770 username aminvpnipad 212770 mac 212770 bytes_out 0 212770 bytes_in 0 212770 station_ip 5.119.204.150 212770 port 1 212770 unique_id port 212770 remote_ip 10.8.0.2 212771 username dorani4942 212771 mac 212771 bytes_out 38826 212771 bytes_in 299794 212771 station_ip 83.122.132.39 212771 port 41 212771 unique_id port 212771 remote_ip 10.8.0.82 212772 username dorani4942 212772 mac 212772 bytes_out 0 212772 bytes_in 0 212772 station_ip 83.122.132.39 212772 port 45 212772 unique_id port 212772 remote_ip 10.8.1.118 212776 username barzegar 212776 mac 212776 bytes_out 0 212776 bytes_in 0 212776 station_ip 5.119.150.236 212776 port 45 212776 unique_id port 212776 remote_ip 10.8.1.30 212778 username aminvpnipad 212778 mac 212778 bytes_out 0 212778 bytes_in 0 212778 station_ip 5.119.204.150 212778 port 1 212778 unique_id port 212778 remote_ip 10.8.0.2 212784 username dorani4942 212784 kill_reason Maximum check online fails reached 212784 mac 212784 bytes_out 0 212784 bytes_in 0 212784 station_ip 83.122.132.39 212784 port 45 212784 unique_id port 212788 username dorani4942 212788 mac 212788 bytes_out 0 212788 bytes_in 0 212788 station_ip 83.122.132.39 212788 port 50 212788 unique_id port 212788 remote_ip 10.8.1.118 212794 username dorani4942 212794 mac 212794 bytes_out 0 212794 bytes_in 0 212794 station_ip 83.122.132.39 212794 port 50 212794 unique_id port 212794 remote_ip 10.8.1.118 212799 username dorani4942 212799 mac 212799 bytes_out 0 212799 bytes_in 0 212799 station_ip 83.122.132.39 212799 port 50 212799 unique_id port 212799 remote_ip 10.8.0.82 212801 username dorani4942 212801 mac 212801 bytes_out 0 212801 bytes_in 0 212801 station_ip 83.122.132.39 212801 port 50 212801 unique_id port 212801 remote_ip 10.8.0.82 212803 username aminvpnipad 212803 mac 212803 bytes_out 0 212803 bytes_in 0 212803 station_ip 5.119.204.150 212803 port 1 212803 unique_id port 212803 remote_ip 10.8.0.2 212804 username dorani4942 212804 mac 212804 bytes_out 0 212804 bytes_in 0 212804 station_ip 83.122.132.39 212804 port 68 212804 unique_id port 212804 remote_ip 10.8.0.82 212805 username yaghobi 212805 mac 212805 bytes_out 0 212805 bytes_in 0 212805 station_ip 83.123.117.58 212805 port 41 212805 unique_id port 212805 remote_ip 10.8.0.106 212806 username sabaghnezhad 212806 kill_reason Another user logged on this global unique id 212806 mac 212806 bytes_out 0 212806 bytes_in 0 212806 station_ip 83.122.4.237 212806 port 50 212806 unique_id port 212806 remote_ip 10.8.0.94 212812 username yaghobi 212812 mac 212812 bytes_out 54019 212812 bytes_in 77120 212812 station_ip 37.129.154.27 212812 port 68 212812 unique_id port 212812 remote_ip 10.8.0.106 212813 username dorani4942 212813 mac 212813 bytes_out 0 212813 bytes_in 0 212813 station_ip 83.122.132.39 212813 port 68 212813 unique_id port 212813 remote_ip 10.8.0.82 212816 username pourshad 212816 mac 212816 bytes_out 0 212816 bytes_in 0 212816 station_ip 5.120.54.100 212816 port 43 212766 username dorani4942 212766 mac 212766 bytes_out 0 212766 bytes_in 0 212766 station_ip 83.122.132.39 212766 port 75 212766 unique_id port 212766 remote_ip 10.8.0.82 212773 username barzegar 212773 mac 212773 bytes_out 0 212773 bytes_in 0 212773 station_ip 5.119.150.236 212773 port 45 212773 unique_id port 212773 remote_ip 10.8.1.30 212780 username dorani4942 212780 mac 212780 bytes_out 0 212780 bytes_in 0 212780 station_ip 83.122.132.39 212780 port 41 212780 unique_id port 212780 remote_ip 10.8.0.82 212781 username barzegar 212781 mac 212781 bytes_out 0 212781 bytes_in 0 212781 station_ip 5.119.150.236 212781 port 41 212781 unique_id port 212781 remote_ip 10.8.0.34 212782 username aminvpnipad 212782 mac 212782 bytes_out 0 212782 bytes_in 0 212782 station_ip 5.119.204.150 212782 port 1 212782 unique_id port 212782 remote_ip 10.8.0.2 212786 username yaghobi 212786 kill_reason Another user logged on this global unique id 212786 mac 212786 bytes_out 0 212786 bytes_in 0 212786 station_ip 83.123.117.58 212786 port 50 212786 unique_id port 212786 remote_ip 10.8.0.106 212789 username kalantary6037 212789 mac 212789 bytes_out 1003462 212789 bytes_in 10664833 212789 station_ip 37.129.115.81 212789 port 48 212789 unique_id port 212789 remote_ip 10.8.1.98 212790 username dorani4942 212790 mac 212790 bytes_out 0 212790 bytes_in 0 212790 station_ip 83.122.132.39 212790 port 48 212790 unique_id port 212790 remote_ip 10.8.1.118 212791 username aminvpnipad 212791 mac 212791 bytes_out 0 212791 bytes_in 0 212791 station_ip 5.119.204.150 212791 port 1 212791 unique_id port 212791 remote_ip 10.8.0.2 212792 username dorani4942 212792 mac 212792 bytes_out 0 212792 bytes_in 0 212792 station_ip 83.122.132.39 212792 port 48 212792 unique_id port 212792 remote_ip 10.8.1.118 212795 username kalantary6037 212795 mac 212795 bytes_out 804896 212795 bytes_in 4506488 212795 station_ip 37.129.115.81 212795 port 48 212795 unique_id port 212795 remote_ip 10.8.1.98 212797 username dorani4942 212797 mac 212797 bytes_out 0 212797 bytes_in 0 212797 station_ip 83.122.132.39 212797 port 48 212797 unique_id port 212797 remote_ip 10.8.1.118 212800 username dorani4942 212800 mac 212800 bytes_out 0 212800 bytes_in 0 212800 station_ip 83.122.132.39 212800 port 50 212800 unique_id port 212800 remote_ip 10.8.0.82 212808 username kalantary6037 212808 mac 212808 bytes_out 374117 212808 bytes_in 2746543 212808 station_ip 37.129.67.161 212808 port 48 212808 unique_id port 212808 remote_ip 10.8.1.98 212815 username aminvpnipad 212815 mac 212815 bytes_out 0 212815 bytes_in 0 212815 station_ip 5.119.204.150 212815 port 1 212815 unique_id port 212815 remote_ip 10.8.0.2 212817 username kalantary6037 212817 mac 212817 bytes_out 0 212817 bytes_in 0 212817 station_ip 37.129.104.133 212817 port 43 212817 unique_id port 212817 remote_ip 10.8.1.98 212818 username barzegar 212818 mac 212818 bytes_out 0 212818 bytes_in 0 212818 station_ip 5.119.150.236 212818 port 43 212818 unique_id port 212818 remote_ip 10.8.1.30 212820 username dorani4942 212820 kill_reason Another user logged on this global unique id 212820 mac 212820 bytes_out 0 212820 bytes_in 0 212820 station_ip 83.122.132.39 212820 port 75 212820 unique_id port 212820 remote_ip 10.8.0.82 212821 username aminvpnipad 212821 mac 212821 bytes_out 0 212821 bytes_in 0 212821 station_ip 5.119.204.150 212821 port 1 212821 unique_id port 212821 remote_ip 10.8.0.2 212768 username dorani4942 212768 mac 212768 bytes_out 0 212768 bytes_in 0 212768 station_ip 83.122.132.39 212768 port 41 212768 unique_id port 212768 remote_ip 10.8.0.82 212769 username dorani4942 212769 mac 212769 bytes_out 212972 212769 bytes_in 1810437 212769 station_ip 83.122.132.39 212769 port 75 212769 unique_id port 212769 remote_ip 10.8.0.82 212774 username aminvpnipad 212774 mac 212774 bytes_out 0 212774 bytes_in 0 212774 station_ip 5.119.204.150 212774 port 1 212774 unique_id port 212774 remote_ip 10.8.0.2 212775 username yaghobi 212775 mac 212775 bytes_out 0 212775 bytes_in 0 212775 station_ip 83.123.110.210 212775 port 41 212775 unique_id port 212775 remote_ip 10.8.0.106 212777 username dorani4942 212777 mac 212777 bytes_out 2060887 212777 bytes_in 24943734 212777 station_ip 83.122.132.39 212777 port 48 212777 unique_id port 212777 remote_ip 10.8.1.118 212779 username dorani4942 212779 mac 212779 bytes_out 0 212779 bytes_in 0 212779 station_ip 83.122.132.39 212779 port 45 212779 unique_id port 212779 remote_ip 10.8.1.118 212783 username dortaj3792 212783 mac 212783 bytes_out 0 212783 bytes_in 0 212783 station_ip 5.119.215.225 212783 port 41 212783 unique_id port 212783 remote_ip 10.8.0.10 212785 username barzegar 212785 mac 212785 bytes_out 0 212785 bytes_in 0 212785 station_ip 5.119.150.236 212785 port 41 212785 unique_id port 212785 remote_ip 10.8.0.34 212787 username dorani4942 212787 mac 212787 bytes_out 0 212787 bytes_in 0 212787 station_ip 83.122.132.39 212787 port 50 212787 unique_id port 212787 remote_ip 10.8.1.118 212793 username barzegar 212793 mac 212793 bytes_out 0 212793 bytes_in 0 212793 station_ip 5.119.150.236 212793 port 50 212793 unique_id port 212793 remote_ip 10.8.1.30 212796 username aminvpnipad 212796 mac 212796 bytes_out 0 212796 bytes_in 0 212796 station_ip 5.119.204.150 212796 port 1 212796 unique_id port 212796 remote_ip 10.8.0.2 212798 username yaghobi 212798 mac 212798 bytes_out 1157883 212798 bytes_in 13460655 212798 station_ip 83.123.117.58 212798 port 41 212798 unique_id port 212798 remote_ip 10.8.0.106 212802 username barzegar 212802 mac 212802 bytes_out 0 212802 bytes_in 0 212802 station_ip 5.119.150.236 212802 port 48 212802 unique_id port 212802 remote_ip 10.8.1.30 212807 username barzegar 212807 mac 212807 bytes_out 0 212807 bytes_in 0 212807 station_ip 5.119.150.236 212807 port 50 212807 unique_id port 212807 remote_ip 10.8.1.30 212809 username dorani4942 212809 mac 212809 bytes_out 0 212809 bytes_in 0 212809 station_ip 83.122.132.39 212809 port 68 212809 unique_id port 212809 remote_ip 10.8.0.82 212810 username yaghobi 212810 mac 212810 bytes_out 0 212810 bytes_in 0 212810 station_ip 37.129.154.27 212810 port 41 212810 unique_id port 212810 remote_ip 10.8.0.106 212811 username aminvpnipad 212811 mac 212811 bytes_out 0 212811 bytes_in 0 212811 station_ip 5.119.204.150 212811 port 1 212811 unique_id port 212811 remote_ip 10.8.0.2 212814 username barzegar 212814 mac 212814 bytes_out 0 212814 bytes_in 0 212814 station_ip 5.119.150.236 212814 port 76 212814 unique_id port 212814 remote_ip 10.8.0.34 212819 username yaghobi 212819 mac 212819 bytes_out 0 212819 bytes_in 0 212819 station_ip 37.129.87.206 212819 port 68 212819 unique_id port 212819 remote_ip 10.8.0.106 212823 username sekonji0496 212823 mac 212823 bytes_out 1531629 212823 bytes_in 24967928 212816 unique_id port 212826 username yaghobi 212826 mac 212826 bytes_out 25000 212826 bytes_in 35583 212826 station_ip 37.129.87.206 212826 port 78 212826 unique_id port 212826 remote_ip 10.8.0.106 212827 username kalantary6037 212827 mac 212827 bytes_out 0 212827 bytes_in 0 212827 station_ip 37.129.115.241 212827 port 43 212827 unique_id port 212827 remote_ip 10.8.1.98 212833 username barzegar 212833 mac 212833 bytes_out 0 212833 bytes_in 0 212833 station_ip 5.119.150.236 212833 port 43 212833 unique_id port 212833 remote_ip 10.8.1.30 212838 username motamedi9772 212838 kill_reason Maximum check online fails reached 212838 mac 212838 bytes_out 0 212838 bytes_in 0 212838 station_ip 83.123.39.108 212838 port 76 212838 unique_id port 212848 username dorani4942 212848 kill_reason Another user logged on this global unique id 212848 mac 212848 bytes_out 0 212848 bytes_in 0 212848 station_ip 83.122.132.39 212848 port 75 212848 unique_id port 212853 username barzegar8595 212853 kill_reason Another user logged on this global unique id 212853 mac 212853 bytes_out 0 212853 bytes_in 0 212853 station_ip 46.225.214.107 212853 port 50 212853 unique_id port 212853 remote_ip 10.8.0.170 212855 username aminvpnipad 212855 mac 212855 bytes_out 0 212855 bytes_in 0 212855 station_ip 5.119.204.150 212855 port 1 212855 unique_id port 212855 remote_ip 10.8.0.2 212859 username barzegar 212859 mac 212859 bytes_out 33590 212859 bytes_in 58801 212859 station_ip 5.119.150.236 212859 port 48 212859 unique_id port 212859 remote_ip 10.8.1.30 212875 username pourshad 212875 kill_reason Another user logged on this global unique id 212875 mac 212875 bytes_out 0 212875 bytes_in 0 212875 station_ip 5.120.54.100 212875 port 68 212875 unique_id port 212878 username yaghobi 212878 mac 212878 bytes_out 0 212878 bytes_in 0 212878 station_ip 37.129.130.103 212878 port 81 212878 unique_id port 212878 remote_ip 10.8.0.106 212881 username barzegar 212881 mac 212881 bytes_out 0 212881 bytes_in 0 212881 station_ip 5.119.150.236 212881 port 50 212881 unique_id port 212881 remote_ip 10.8.0.34 212883 username mhamidreza98 212883 mac 212883 bytes_out 0 212883 bytes_in 0 212883 station_ip 37.137.8.224 212883 port 50 212883 unique_id port 212883 remote_ip 10.8.1.94 212886 username barzegar 212886 mac 212886 bytes_out 0 212886 bytes_in 0 212886 station_ip 5.119.150.236 212886 port 83 212886 unique_id port 212886 remote_ip 10.8.0.34 212890 username barzegar8595 212890 mac 212890 bytes_out 753894 212890 bytes_in 11367826 212890 station_ip 46.225.214.107 212890 port 38 212890 unique_id port 212890 remote_ip 10.8.1.26 212896 username dortaj3792 212896 mac 212896 bytes_out 0 212896 bytes_in 0 212896 station_ip 5.119.215.225 212896 port 85 212896 unique_id port 212896 remote_ip 10.8.0.10 212901 username barzegar 212901 mac 212901 bytes_out 726804 212901 bytes_in 14336134 212901 station_ip 5.119.150.236 212901 port 38 212901 unique_id port 212901 remote_ip 10.8.1.30 212904 username sabaghnezhad 212904 mac 212904 bytes_out 331622 212904 bytes_in 1080288 212904 station_ip 83.123.172.159 212904 port 82 212904 unique_id port 212904 remote_ip 10.8.0.94 212908 username barzegar 212908 mac 212908 bytes_out 0 212908 bytes_in 0 212908 station_ip 5.119.150.236 212908 port 50 212908 unique_id port 212908 remote_ip 10.8.1.30 212909 username nilufarrajaei 212909 mac 212909 bytes_out 0 212909 bytes_in 0 212909 station_ip 83.123.181.169 212909 port 78 212909 unique_id port 212822 username barzegar 212822 mac 212822 bytes_out 0 212822 bytes_in 0 212822 station_ip 5.119.150.236 212822 port 80 212822 unique_id port 212822 remote_ip 10.8.0.34 212824 username aminvpnipad 212824 mac 212824 bytes_out 0 212824 bytes_in 0 212824 station_ip 5.119.204.150 212824 port 1 212824 unique_id port 212824 remote_ip 10.8.0.2 212825 username yaghobi 212825 mac 212825 bytes_out 524699 212825 bytes_in 5413165 212825 station_ip 37.129.87.206 212825 port 68 212825 unique_id port 212825 remote_ip 10.8.0.106 212828 username yaghobi 212828 mac 212828 bytes_out 267435 212828 bytes_in 697429 212828 station_ip 37.129.87.206 212828 port 68 212828 unique_id port 212828 remote_ip 10.8.0.106 212830 username aminvpnipad 212830 mac 212830 bytes_out 0 212830 bytes_in 0 212830 station_ip 5.119.204.150 212830 port 1 212830 unique_id port 212830 remote_ip 10.8.0.2 212831 username kharazmi2920 212831 mac 212831 bytes_out 770655 212831 bytes_in 2223087 212831 station_ip 83.123.237.28 212831 port 76 212831 unique_id port 212831 remote_ip 10.8.0.54 212836 username dorani4942 212836 kill_reason Another user logged on this global unique id 212836 mac 212836 bytes_out 0 212836 bytes_in 0 212836 station_ip 83.122.132.39 212836 port 75 212836 unique_id port 212840 username kharazmi2920 212840 mac 212840 bytes_out 919829 212840 bytes_in 11691675 212840 station_ip 83.123.237.28 212840 port 68 212840 unique_id port 212840 remote_ip 10.8.0.54 212842 username alipour1506 212842 mac 212842 bytes_out 22679 212842 bytes_in 31383 212842 station_ip 37.129.78.74 212842 port 43 212842 unique_id port 212842 remote_ip 10.8.1.158 212844 username barzegar 212844 mac 212844 bytes_out 0 212844 bytes_in 0 212844 station_ip 5.119.150.236 212844 port 48 212844 unique_id port 212844 remote_ip 10.8.1.30 212845 username alihajmalek 212845 mac 212845 bytes_out 288701 212845 bytes_in 3699569 212845 station_ip 151.238.239.5 212845 port 46 212845 unique_id port 212845 remote_ip 10.8.0.250 212851 username sabaghnezhad 212851 mac 212851 bytes_out 0 212851 bytes_in 0 212851 station_ip 83.122.4.237 212851 port 50 212851 unique_id port 212851 remote_ip 10.8.0.94 212856 username pourshad 212856 kill_reason Another user logged on this global unique id 212856 mac 212856 bytes_out 0 212856 bytes_in 0 212856 station_ip 5.120.54.100 212856 port 68 212856 unique_id port 212856 remote_ip 10.8.0.122 212857 username dorani4942 212857 mac 212857 bytes_out 0 212857 bytes_in 0 212857 station_ip 37.129.71.95 212857 port 46 212857 unique_id port 212857 remote_ip 10.8.0.82 212858 username kalantary6037 212858 mac 212858 bytes_out 2048308 212858 bytes_in 27927647 212858 station_ip 37.129.60.101 212858 port 50 212858 unique_id port 212858 remote_ip 10.8.1.98 212860 username nilufarrajaei 212860 mac 212860 bytes_out 39365 212860 bytes_in 70827 212860 station_ip 83.123.181.169 212860 port 38 212860 unique_id port 212860 remote_ip 10.8.1.126 212862 username aminvpnipad 212862 mac 212862 bytes_out 0 212862 bytes_in 0 212862 station_ip 5.119.204.150 212862 port 1 212862 unique_id port 212862 remote_ip 10.8.0.2 212863 username barzegar 212863 mac 212863 bytes_out 0 212863 bytes_in 0 212863 station_ip 5.119.150.236 212863 port 48 212863 unique_id port 212863 remote_ip 10.8.1.30 212869 username aminvpnipad 212869 mac 212869 bytes_out 0 212869 bytes_in 0 212869 station_ip 5.119.204.150 212869 port 1 212869 unique_id port 212869 remote_ip 10.8.0.2 212823 station_ip 37.129.195.23 212823 port 78 212823 unique_id port 212823 remote_ip 10.8.0.70 212829 username barzegar 212829 mac 212829 bytes_out 0 212829 bytes_in 0 212829 station_ip 5.119.150.236 212829 port 43 212829 unique_id port 212829 remote_ip 10.8.1.30 212832 username motamedi9772 212832 mac 212832 bytes_out 78378 212832 bytes_in 78471 212832 station_ip 83.123.39.108 212832 port 76 212832 unique_id port 212832 remote_ip 10.8.0.86 212834 username yaghobi 212834 mac 212834 bytes_out 62678 212834 bytes_in 88237 212834 station_ip 37.129.87.206 212834 port 76 212834 unique_id port 212834 remote_ip 10.8.0.106 212835 username aminvpnipad 212835 mac 212835 bytes_out 0 212835 bytes_in 0 212835 station_ip 5.119.204.150 212835 port 1 212835 unique_id port 212835 remote_ip 10.8.0.2 212837 username alipour1506 212837 mac 212837 bytes_out 0 212837 bytes_in 0 212837 station_ip 94.176.8.78 212837 port 38 212837 unique_id port 212839 username shahruz 212839 mac 212839 bytes_out 0 212839 bytes_in 0 212839 station_ip 83.123.131.162 212839 port 46 212839 unique_id port 212841 username pourshad 212841 mac 212841 bytes_out 23058063 212841 bytes_in 37929025 212841 station_ip 5.120.54.100 212841 port 48 212841 unique_id port 212841 remote_ip 10.8.1.10 212843 username nilufarrajaei 212843 mac 212843 bytes_out 0 212843 bytes_in 0 212843 station_ip 83.123.170.5 212843 port 38 212843 unique_id port 212843 remote_ip 10.8.1.126 212846 username aminvpnipad 212846 mac 212846 bytes_out 0 212846 bytes_in 0 212846 station_ip 5.119.204.150 212846 port 1 212846 unique_id port 212846 remote_ip 10.8.0.2 212847 username barzegar 212847 mac 212847 bytes_out 4575 212847 bytes_in 5815 212847 station_ip 5.119.150.236 212847 port 78 212847 unique_id port 212847 remote_ip 10.8.0.34 212849 username dorani4942 212849 mac 212849 bytes_out 0 212849 bytes_in 0 212849 station_ip 83.122.132.39 212849 port 75 212849 unique_id port 212850 username barzegar 212850 mac 212850 bytes_out 0 212850 bytes_in 0 212850 station_ip 5.119.150.236 212850 port 75 212850 unique_id port 212850 remote_ip 10.8.0.34 212852 username sabaghnezhad 212852 mac 212852 bytes_out 0 212852 bytes_in 0 212852 station_ip 83.122.4.237 212852 port 75 212852 unique_id port 212852 remote_ip 10.8.0.94 212854 username aminvpnipad 212854 mac 212854 bytes_out 0 212854 bytes_in 0 212854 station_ip 5.119.204.150 212854 port 1 212854 unique_id port 212854 remote_ip 10.8.0.2 212861 username pourshad 212861 kill_reason Another user logged on this global unique id 212861 mac 212861 bytes_out 0 212861 bytes_in 0 212861 station_ip 5.120.54.100 212861 port 68 212861 unique_id port 212864 username barzegar 212864 mac 212864 bytes_out 0 212864 bytes_in 0 212864 station_ip 5.119.150.236 212864 port 48 212864 unique_id port 212864 remote_ip 10.8.1.30 212865 username aminvpnipad 212865 mac 212865 bytes_out 0 212865 bytes_in 0 212865 station_ip 5.119.204.150 212865 port 1 212865 unique_id port 212865 remote_ip 10.8.0.2 212866 username sabaghnezhad 212866 mac 212866 bytes_out 0 212866 bytes_in 0 212866 station_ip 37.129.194.94 212866 port 50 212866 unique_id port 212866 remote_ip 10.8.0.94 212867 username pourshad 212867 kill_reason Another user logged on this global unique id 212867 mac 212867 bytes_out 0 212867 bytes_in 0 212867 station_ip 5.120.54.100 212867 port 68 212867 unique_id port 212868 username ahmadi1 212868 mac 212868 bytes_out 0 212868 bytes_in 0 212868 station_ip 83.122.236.91 212868 port 80 212868 unique_id port 212868 remote_ip 10.8.0.114 212870 username motamedi9772 212870 mac 212870 bytes_out 0 212870 bytes_in 0 212870 station_ip 83.123.83.136 212870 port 48 212870 unique_id port 212870 remote_ip 10.8.1.182 212872 username malekpoir 212872 mac 212872 bytes_out 0 212872 bytes_in 0 212872 station_ip 5.120.99.127 212872 port 46 212872 unique_id port 212872 remote_ip 10.8.0.178 212874 username barzegar 212874 mac 212874 bytes_out 0 212874 bytes_in 0 212874 station_ip 5.119.150.236 212874 port 78 212874 unique_id port 212876 username aminvpnipad 212876 mac 212876 bytes_out 0 212876 bytes_in 0 212876 station_ip 5.119.204.150 212876 port 1 212876 unique_id port 212876 remote_ip 10.8.0.2 212879 username nilufarrajaei 212879 mac 212879 bytes_out 597670 212879 bytes_in 9776902 212879 station_ip 83.123.181.169 212879 port 50 212879 unique_id port 212879 remote_ip 10.8.0.50 212882 username barzegar 212882 kill_reason Another user logged on this global unique id 212882 mac 212882 bytes_out 0 212882 bytes_in 0 212882 station_ip 5.119.150.236 212882 port 50 212882 unique_id port 212882 remote_ip 10.8.0.34 212888 username mhamidreza98 212888 kill_reason Another user logged on this global unique id 212888 mac 212888 bytes_out 0 212888 bytes_in 0 212888 station_ip 37.137.8.224 212888 port 50 212888 unique_id port 212888 remote_ip 10.8.0.142 212892 username barzegar 212892 mac 212892 bytes_out 0 212892 bytes_in 0 212892 station_ip 5.119.150.236 212892 port 83 212892 unique_id port 212892 remote_ip 10.8.0.34 212895 username aminvpnipad 212895 mac 212895 bytes_out 0 212895 bytes_in 0 212895 station_ip 5.119.204.150 212895 port 1 212895 unique_id port 212895 remote_ip 10.8.0.2 212898 username dorani4942 212898 kill_reason Maximum check online fails reached 212898 mac 212898 bytes_out 0 212898 bytes_in 0 212898 station_ip 37.129.16.84 212898 port 86 212898 unique_id port 212900 username alipour1506 212900 mac 212900 bytes_out 0 212900 bytes_in 0 212900 station_ip 37.129.78.74 212900 port 83 212900 unique_id port 212900 remote_ip 10.8.0.46 212902 username kalantary6037 212902 kill_reason Another user logged on this global unique id 212902 mac 212902 bytes_out 0 212902 bytes_in 0 212902 station_ip 37.129.101.161 212902 port 50 212902 unique_id port 212902 remote_ip 10.8.1.98 212903 username pourshad 212903 mac 212903 bytes_out 0 212903 bytes_in 0 212903 station_ip 5.120.54.100 212903 port 68 212903 unique_id port 212905 username aminvpnipad 212905 mac 212905 bytes_out 0 212905 bytes_in 0 212905 station_ip 5.119.204.150 212905 port 1 212905 unique_id port 212905 remote_ip 10.8.0.2 212921 username motamedi9772 212921 kill_reason Maximum check online fails reached 212921 mac 212921 bytes_out 0 212921 bytes_in 0 212921 station_ip 83.123.43.136 212921 port 48 212921 unique_id port 212923 username hosseine 212923 kill_reason Another user logged on this global unique id 212923 mac 212923 bytes_out 0 212923 bytes_in 0 212923 station_ip 83.123.226.87 212923 port 84 212923 unique_id port 212923 remote_ip 10.8.0.126 212924 username motamedi9772 212924 mac 212924 bytes_out 0 212924 bytes_in 0 212924 station_ip 83.123.43.136 212924 port 85 212924 unique_id port 212924 remote_ip 10.8.0.86 212927 username kamali3 212927 mac 212927 bytes_out 0 212927 bytes_in 0 212927 station_ip 37.129.117.243 212927 port 81 212927 unique_id port 212929 username motamedi9772 212929 mac 212929 bytes_out 0 212871 username nilufarrajaei 212871 mac 212871 bytes_out 98872 212871 bytes_in 1131963 212871 station_ip 83.123.181.169 212871 port 38 212871 unique_id port 212871 remote_ip 10.8.1.126 212873 username barzegar 212873 kill_reason Another user logged on this global unique id 212873 mac 212873 bytes_out 0 212873 bytes_in 0 212873 station_ip 5.119.150.236 212873 port 78 212873 unique_id port 212873 remote_ip 10.8.0.34 212877 username barzegar 212877 mac 212877 bytes_out 0 212877 bytes_in 0 212877 station_ip 5.119.150.236 212877 port 78 212877 unique_id port 212877 remote_ip 10.8.0.34 212880 username aminvpnipad 212880 mac 212880 bytes_out 0 212880 bytes_in 0 212880 station_ip 5.119.204.150 212880 port 1 212880 unique_id port 212880 remote_ip 10.8.0.2 212884 username nasiripour0935 212884 kill_reason Maximum check online fails reached 212884 mac 212884 bytes_out 0 212884 bytes_in 0 212884 station_ip 5.120.107.135 212884 port 81 212884 unique_id port 212884 remote_ip 10.8.0.238 212885 username barzegar 212885 mac 212885 bytes_out 0 212885 bytes_in 0 212885 station_ip 5.119.150.236 212885 port 50 212885 unique_id port 212885 remote_ip 10.8.0.34 212887 username godarzi 212887 kill_reason Another user logged on this global unique id 212887 mac 212887 bytes_out 0 212887 bytes_in 0 212887 station_ip 5.202.65.237 212887 port 75 212887 unique_id port 212887 remote_ip 10.8.0.74 212889 username barzegar 212889 mac 212889 bytes_out 0 212889 bytes_in 0 212889 station_ip 5.119.150.236 212889 port 50 212889 unique_id port 212889 remote_ip 10.8.1.30 212891 username yaghobi 212891 mac 212891 bytes_out 0 212891 bytes_in 0 212891 station_ip 37.129.130.103 212891 port 84 212891 unique_id port 212891 remote_ip 10.8.0.106 212893 username alipour1506 212893 mac 212893 bytes_out 1163710 212893 bytes_in 10988288 212893 station_ip 37.129.78.74 212893 port 43 212893 unique_id port 212893 remote_ip 10.8.1.158 212894 username nilufarrajaei 212894 mac 212894 bytes_out 0 212894 bytes_in 0 212894 station_ip 83.123.181.169 212894 port 78 212894 unique_id port 212894 remote_ip 10.8.0.50 212897 username kamali3 212897 kill_reason Another user logged on this global unique id 212897 mac 212897 bytes_out 0 212897 bytes_in 0 212897 station_ip 37.129.117.243 212897 port 81 212897 unique_id port 212897 remote_ip 10.8.0.182 212899 username motamedi9772 212899 kill_reason Another user logged on this global unique id 212899 mac 212899 bytes_out 0 212899 bytes_in 0 212899 station_ip 83.123.43.136 212899 port 48 212899 unique_id port 212899 remote_ip 10.8.1.182 212906 username alipour1506 212906 mac 212906 bytes_out 0 212906 bytes_in 0 212906 station_ip 37.129.78.74 212906 port 50 212906 unique_id port 212906 remote_ip 10.8.0.46 212907 username kamali3 212907 kill_reason Another user logged on this global unique id 212907 mac 212907 bytes_out 0 212907 bytes_in 0 212907 station_ip 37.129.117.243 212907 port 81 212907 unique_id port 212910 username mhamidreza98 212910 mac 212910 bytes_out 0 212910 bytes_in 0 212910 station_ip 37.137.8.224 212910 port 68 212910 unique_id port 212910 remote_ip 10.8.0.142 212911 username dorani4942 212911 mac 212911 bytes_out 0 212911 bytes_in 0 212911 station_ip 83.123.136.91 212911 port 50 212911 unique_id port 212911 remote_ip 10.8.1.118 212912 username aminvpnipad 212912 mac 212912 bytes_out 0 212912 bytes_in 0 212912 station_ip 5.119.204.150 212912 port 1 212912 unique_id port 212912 remote_ip 10.8.0.2 212914 username yarmohamadi7916 212914 kill_reason Another user logged on this global unique id 212909 remote_ip 10.8.0.50 212913 username meysam 212913 kill_reason Another user logged on this global unique id 212913 mac 212913 bytes_out 0 212913 bytes_in 0 212913 station_ip 188.159.251.36 212913 port 82 212913 unique_id port 212913 remote_ip 10.8.0.102 212915 username barzegar 212915 mac 212915 bytes_out 0 212915 bytes_in 0 212915 station_ip 5.119.150.236 212915 port 78 212915 unique_id port 212915 remote_ip 10.8.0.34 212917 username motamedi9772 212917 mac 212917 bytes_out 0 212917 bytes_in 0 212917 station_ip 83.123.43.136 212917 port 48 212917 unique_id port 212920 username motamedi9772 212920 mac 212920 bytes_out 0 212920 bytes_in 0 212920 station_ip 83.123.43.136 212920 port 83 212920 unique_id port 212920 remote_ip 10.8.0.86 212926 username motamedi9772 212926 mac 212926 bytes_out 0 212926 bytes_in 0 212926 station_ip 83.123.43.136 212926 port 80 212926 unique_id port 212926 remote_ip 10.8.0.86 212928 username pourshad 212928 kill_reason Another user logged on this global unique id 212928 mac 212928 bytes_out 0 212928 bytes_in 0 212928 station_ip 5.120.54.100 212928 port 38 212928 unique_id port 212928 remote_ip 10.8.1.10 212930 username motamedi9772 212930 mac 212930 bytes_out 0 212930 bytes_in 0 212930 station_ip 83.123.43.136 212930 port 80 212930 unique_id port 212930 remote_ip 10.8.0.86 212935 username hosseine 212935 kill_reason Another user logged on this global unique id 212935 mac 212935 bytes_out 0 212935 bytes_in 0 212935 station_ip 83.123.226.87 212935 port 84 212935 unique_id port 212942 username pourshad 212942 kill_reason Another user logged on this global unique id 212942 mac 212942 bytes_out 0 212942 bytes_in 0 212942 station_ip 5.120.54.100 212942 port 38 212942 unique_id port 212943 username motamedi9772 212943 mac 212943 bytes_out 0 212943 bytes_in 0 212943 station_ip 83.123.43.136 212943 port 50 212943 unique_id port 212943 remote_ip 10.8.0.86 212945 username motamedi9772 212945 mac 212945 bytes_out 0 212945 bytes_in 0 212945 station_ip 83.123.43.136 212945 port 50 212945 unique_id port 212945 remote_ip 10.8.0.86 212946 username pourshad 212946 mac 212946 bytes_out 0 212946 bytes_in 0 212946 station_ip 5.120.54.100 212946 port 38 212946 unique_id port 212949 username barzegar8595 212949 mac 212949 bytes_out 0 212949 bytes_in 0 212949 station_ip 37.27.55.219 212949 port 43 212949 unique_id port 212949 remote_ip 10.8.1.26 212952 username barzegar8595 212952 mac 212952 bytes_out 0 212952 bytes_in 0 212952 station_ip 37.27.55.219 212952 port 43 212952 unique_id port 212952 remote_ip 10.8.1.26 212955 username aminvpnipad 212955 mac 212955 bytes_out 0 212955 bytes_in 0 212955 station_ip 5.119.204.150 212955 port 1 212955 unique_id port 212955 remote_ip 10.8.0.2 212958 username barzegar 212958 mac 212958 bytes_out 0 212958 bytes_in 0 212958 station_ip 5.119.150.236 212958 port 50 212958 unique_id port 212958 remote_ip 10.8.0.34 212961 username soleymani5056 212961 mac 212961 bytes_out 0 212961 bytes_in 0 212961 station_ip 5.120.139.62 212961 port 81 212961 unique_id port 212961 remote_ip 10.8.0.246 212962 username sabaghnezhad 212962 mac 212962 bytes_out 0 212962 bytes_in 0 212962 station_ip 83.123.172.159 212962 port 75 212962 unique_id port 212962 remote_ip 10.8.0.94 212967 username sabaghnezhad 212967 mac 212967 bytes_out 0 212967 bytes_in 0 212967 station_ip 83.123.172.159 212967 port 75 212967 unique_id port 212967 remote_ip 10.8.0.94 212974 username hosseini0093 212914 mac 212914 bytes_out 0 212914 bytes_in 0 212914 station_ip 5.120.38.54 212914 port 80 212914 unique_id port 212914 remote_ip 10.8.0.214 212916 username godarzi 212916 mac 212916 bytes_out 0 212916 bytes_in 0 212916 station_ip 5.202.65.237 212916 port 75 212916 unique_id port 212918 username motamedi9772 212918 mac 212918 bytes_out 0 212918 bytes_in 0 212918 station_ip 83.123.43.136 212918 port 48 212918 unique_id port 212918 remote_ip 10.8.1.182 212919 username motamedi9772 212919 mac 212919 bytes_out 0 212919 bytes_in 0 212919 station_ip 83.123.43.136 212919 port 83 212919 unique_id port 212919 remote_ip 10.8.0.86 212922 username motamedi9772 212922 mac 212922 bytes_out 0 212922 bytes_in 0 212922 station_ip 83.123.43.136 212922 port 85 212922 unique_id port 212922 remote_ip 10.8.0.86 212925 username yarmohamadi7916 212925 mac 212925 bytes_out 0 212925 bytes_in 0 212925 station_ip 5.120.38.54 212925 port 80 212925 unique_id port 212933 username aminvpnipad 212933 mac 212933 bytes_out 0 212933 bytes_in 0 212933 station_ip 5.119.204.150 212933 port 1 212933 unique_id port 212933 remote_ip 10.8.0.2 212936 username motamedi9772 212936 mac 212936 bytes_out 0 212936 bytes_in 0 212936 station_ip 83.123.43.136 212936 port 50 212936 unique_id port 212936 remote_ip 10.8.0.86 212940 username barzegar 212940 mac 212940 bytes_out 0 212940 bytes_in 0 212940 station_ip 5.119.150.236 212940 port 50 212940 unique_id port 212940 remote_ip 10.8.0.34 212948 username motamedi9772 212948 mac 212948 bytes_out 0 212948 bytes_in 0 212948 station_ip 83.123.43.136 212948 port 50 212948 unique_id port 212948 remote_ip 10.8.0.86 212951 username soleymani5056 212951 mac 212951 bytes_out 0 212951 bytes_in 0 212951 station_ip 5.120.128.27 212951 port 83 212951 unique_id port 212951 remote_ip 10.8.0.246 212954 username mosi 212954 mac 212954 bytes_out 0 212954 bytes_in 0 212954 station_ip 94.24.81.176 212954 port 50 212954 unique_id port 212954 remote_ip 10.8.0.38 212956 username houshang 212956 mac 212956 bytes_out 225165 212956 bytes_in 1671590 212956 station_ip 5.119.123.217 212956 port 66 212956 unique_id port 212956 remote_ip 10.8.0.158 212964 username barzegar 212964 mac 212964 bytes_out 6928 212964 bytes_in 10234 212964 station_ip 5.119.150.236 212964 port 81 212964 unique_id port 212964 remote_ip 10.8.0.34 212966 username pourshad 212966 mac 212966 bytes_out 0 212966 bytes_in 0 212966 station_ip 5.120.54.100 212966 port 50 212966 unique_id port 212966 remote_ip 10.8.0.122 212969 username pourshad 212969 mac 212969 bytes_out 0 212969 bytes_in 0 212969 station_ip 5.120.54.100 212969 port 43 212969 unique_id port 212969 remote_ip 10.8.1.10 212970 username kamali3 212970 mac 212970 bytes_out 103851 212970 bytes_in 231099 212970 station_ip 37.129.117.243 212970 port 52 212970 unique_id port 212970 remote_ip 10.8.1.206 212971 username yaghobi 212971 mac 212971 bytes_out 0 212971 bytes_in 0 212971 station_ip 37.129.196.23 212971 port 50 212971 unique_id port 212971 remote_ip 10.8.0.106 212976 username barzegar 212976 mac 212976 bytes_out 0 212976 bytes_in 0 212976 station_ip 5.119.150.236 212976 port 51 212976 unique_id port 212976 remote_ip 10.8.1.30 212982 username barzegar 212982 mac 212982 bytes_out 0 212982 bytes_in 0 212982 station_ip 5.119.150.236 212982 port 75 212982 unique_id port 212982 remote_ip 10.8.0.34 212929 bytes_in 0 212929 station_ip 83.123.43.136 212929 port 80 212929 unique_id port 212929 remote_ip 10.8.0.86 212931 username mostafa_es78 212931 mac 212931 bytes_out 0 212931 bytes_in 0 212931 station_ip 113.203.9.211 212931 port 68 212931 unique_id port 212931 remote_ip 10.8.0.42 212932 username motamedi9772 212932 mac 212932 bytes_out 0 212932 bytes_in 0 212932 station_ip 83.123.43.136 212932 port 80 212932 unique_id port 212932 remote_ip 10.8.0.86 212934 username dorani4942 212934 mac 212934 bytes_out 0 212934 bytes_in 0 212934 station_ip 83.123.136.91 212934 port 50 212934 unique_id port 212934 remote_ip 10.8.1.118 212937 username alipour1506 212937 mac 212937 bytes_out 8694 212937 bytes_in 12472 212937 station_ip 37.129.78.74 212937 port 53 212937 unique_id port 212937 remote_ip 10.8.1.158 212938 username motamedi9772 212938 mac 212938 bytes_out 0 212938 bytes_in 0 212938 station_ip 83.123.43.136 212938 port 50 212938 unique_id port 212938 remote_ip 10.8.0.86 212939 username kalantary6037 212939 mac 212939 bytes_out 1610792 212939 bytes_in 17592515 212939 station_ip 37.129.8.89 212939 port 51 212939 unique_id port 212939 remote_ip 10.8.1.98 212941 username motamedi9772 212941 mac 212941 bytes_out 0 212941 bytes_in 0 212941 station_ip 83.123.43.136 212941 port 50 212941 unique_id port 212941 remote_ip 10.8.0.86 212944 username meysam 212944 mac 212944 bytes_out 0 212944 bytes_in 0 212944 station_ip 188.159.251.36 212944 port 82 212944 unique_id port 212947 username motamedi9772 212947 mac 212947 bytes_out 0 212947 bytes_in 0 212947 station_ip 83.123.43.136 212947 port 50 212947 unique_id port 212947 remote_ip 10.8.0.86 212950 username mosi 212950 mac 212950 bytes_out 0 212950 bytes_in 0 212950 station_ip 151.235.124.131 212950 port 66 212950 unique_id port 212950 remote_ip 10.8.0.38 212953 username motamedi9772 212953 mac 212953 bytes_out 0 212953 bytes_in 0 212953 station_ip 83.123.43.136 212953 port 66 212953 unique_id port 212953 remote_ip 10.8.0.86 212957 username hosseini0093 212957 kill_reason Another user logged on this global unique id 212957 mac 212957 bytes_out 0 212957 bytes_in 0 212957 station_ip 83.122.76.241 212957 port 68 212957 unique_id port 212957 remote_ip 10.8.0.226 212959 username pourshad 212959 mac 212959 bytes_out 0 212959 bytes_in 0 212959 station_ip 5.120.54.100 212959 port 38 212959 unique_id port 212959 remote_ip 10.8.1.10 212960 username barzegar 212960 mac 212960 bytes_out 0 212960 bytes_in 0 212960 station_ip 5.119.150.236 212960 port 83 212960 unique_id port 212960 remote_ip 10.8.0.34 212963 username meysam 212963 kill_reason Another user logged on this global unique id 212963 mac 212963 bytes_out 0 212963 bytes_in 0 212963 station_ip 188.159.251.36 212963 port 80 212963 unique_id port 212963 remote_ip 10.8.0.102 212965 username aminvpnipad 212965 mac 212965 bytes_out 0 212965 bytes_in 0 212965 station_ip 5.119.204.150 212965 port 1 212965 unique_id port 212965 remote_ip 10.8.0.2 212968 username barzegar 212968 mac 212968 bytes_out 0 212968 bytes_in 0 212968 station_ip 5.119.150.236 212968 port 51 212968 unique_id port 212968 remote_ip 10.8.1.30 212972 username kamali3 212972 mac 212972 bytes_out 0 212972 bytes_in 0 212972 station_ip 37.129.117.243 212972 port 43 212972 unique_id port 212972 remote_ip 10.8.1.206 212973 username pourshad 212973 mac 212973 bytes_out 17817967 212973 bytes_in 3972167 212973 station_ip 5.120.54.100 212973 port 75 212973 unique_id port 212973 remote_ip 10.8.0.122 212979 username aminvpnipad 212979 mac 212979 bytes_out 0 212979 bytes_in 0 212979 station_ip 5.119.204.150 212979 port 1 212979 unique_id port 212979 remote_ip 10.8.0.2 212981 username pourshad 212981 kill_reason Another user logged on this global unique id 212981 mac 212981 bytes_out 0 212981 bytes_in 0 212981 station_ip 5.120.54.100 212981 port 81 212981 unique_id port 212981 remote_ip 10.8.0.122 212985 username barzegar 212985 mac 212985 bytes_out 0 212985 bytes_in 0 212985 station_ip 5.119.150.236 212985 port 75 212985 unique_id port 212985 remote_ip 10.8.0.34 212987 username meysam 212987 mac 212987 bytes_out 0 212987 bytes_in 0 212987 station_ip 188.159.251.36 212987 port 80 212987 unique_id port 212989 username aminvpnipad 212989 mac 212989 bytes_out 0 212989 bytes_in 0 212989 station_ip 5.119.204.150 212989 port 1 212989 unique_id port 212989 remote_ip 10.8.0.2 212992 username soleymani5056 212992 mac 212992 bytes_out 0 212992 bytes_in 0 212992 station_ip 5.119.180.33 212992 port 78 212992 unique_id port 212992 remote_ip 10.8.0.246 213000 username hosseini0093 213000 kill_reason Another user logged on this global unique id 213000 mac 213000 bytes_out 0 213000 bytes_in 0 213000 station_ip 83.122.76.241 213000 port 68 213000 unique_id port 213001 username mosi 213001 kill_reason Another user logged on this global unique id 213001 mac 213001 bytes_out 0 213001 bytes_in 0 213001 station_ip 151.235.124.131 213001 port 82 213001 unique_id port 213001 remote_ip 10.8.0.38 213004 username hosseini0093 213004 kill_reason Another user logged on this global unique id 213004 mac 213004 bytes_out 0 213004 bytes_in 0 213004 station_ip 83.122.76.241 213004 port 68 213004 unique_id port 213006 username barzegar 213006 mac 213006 bytes_out 0 213006 bytes_in 0 213006 station_ip 5.119.150.236 213006 port 50 213006 unique_id port 213006 remote_ip 10.8.0.34 213015 username godarzi 213015 kill_reason Another user logged on this global unique id 213015 mac 213015 bytes_out 0 213015 bytes_in 0 213015 station_ip 5.202.65.237 213015 port 66 213015 unique_id port 213015 remote_ip 10.8.0.74 213016 username barzegar 213016 mac 213016 bytes_out 0 213016 bytes_in 0 213016 station_ip 5.119.150.236 213016 port 78 213016 unique_id port 213016 remote_ip 10.8.0.34 213018 username barzegar8595 213018 mac 213018 bytes_out 0 213018 bytes_in 0 213018 station_ip 46.225.214.107 213018 port 38 213018 unique_id port 213020 username amiresmaeili0609 213020 kill_reason Another user logged on this global unique id 213020 mac 213020 bytes_out 0 213020 bytes_in 0 213020 station_ip 46.225.214.107 213020 port 50 213020 unique_id port 213020 remote_ip 10.8.1.134 213024 username barzegar 213024 mac 213024 bytes_out 3580 213024 bytes_in 11274 213024 station_ip 5.119.150.236 213024 port 38 213024 unique_id port 213024 remote_ip 10.8.1.30 213025 username aminvpnipad 213025 mac 213025 bytes_out 0 213025 bytes_in 0 213025 station_ip 5.119.204.150 213025 port 1 213025 unique_id port 213025 remote_ip 10.8.0.2 213027 username esmaeilkazemi 213027 mac 213027 bytes_out 247285 213027 bytes_in 2508491 213027 station_ip 37.129.57.185 213027 port 75 213027 unique_id port 213027 remote_ip 10.8.0.66 213033 username aminvpnipad 213033 mac 213033 bytes_out 0 213033 bytes_in 0 213033 station_ip 5.119.204.150 213033 port 1 213033 unique_id port 213033 remote_ip 10.8.0.2 213034 username esmaeilkazemi 213034 mac 213034 bytes_out 14981 212974 kill_reason Another user logged on this global unique id 212974 mac 212974 bytes_out 0 212974 bytes_in 0 212974 station_ip 83.122.76.241 212974 port 68 212974 unique_id port 212975 username khademi 212975 mac 212975 bytes_out 0 212975 bytes_in 0 212975 station_ip 37.129.70.76 212975 port 78 212975 unique_id port 212975 remote_ip 10.8.0.26 212977 username kamali3 212977 kill_reason Another user logged on this global unique id 212977 mac 212977 bytes_out 0 212977 bytes_in 0 212977 station_ip 37.129.117.243 212977 port 50 212977 unique_id port 212977 remote_ip 10.8.0.182 212978 username yaghobi 212978 mac 212978 bytes_out 0 212978 bytes_in 0 212978 station_ip 37.129.196.23 212978 port 75 212978 unique_id port 212978 remote_ip 10.8.0.106 212980 username ahmadi1 212980 mac 212980 bytes_out 77868 212980 bytes_in 479723 212980 station_ip 83.122.236.91 212980 port 78 212980 unique_id port 212980 remote_ip 10.8.0.114 212983 username barzegar8595 212983 mac 212983 bytes_out 1666211 212983 bytes_in 36035739 212983 station_ip 46.225.214.107 212983 port 38 212983 unique_id port 212983 remote_ip 10.8.1.26 212986 username kalantary6037 212986 kill_reason Another user logged on this global unique id 212986 mac 212986 bytes_out 0 212986 bytes_in 0 212986 station_ip 37.129.37.169 212986 port 43 212986 unique_id port 212986 remote_ip 10.8.1.98 212991 username barzegar 212991 mac 212991 bytes_out 0 212991 bytes_in 0 212991 station_ip 5.119.150.236 212991 port 80 212991 unique_id port 212991 remote_ip 10.8.0.34 212995 username hosseini0093 212995 kill_reason Another user logged on this global unique id 212995 mac 212995 bytes_out 0 212995 bytes_in 0 212995 station_ip 83.122.76.241 212995 port 68 212995 unique_id port 212997 username barzegar 212997 mac 212997 bytes_out 0 212997 bytes_in 0 212997 station_ip 5.119.150.236 212997 port 78 212997 unique_id port 212997 remote_ip 10.8.0.34 212999 username mohammadjavad 212999 mac 212999 bytes_out 0 212999 bytes_in 0 212999 station_ip 83.123.239.49 212999 port 50 212999 unique_id port 212999 remote_ip 10.8.0.138 213002 username alipour1506 213002 mac 213002 bytes_out 281008 213002 bytes_in 1977401 213002 station_ip 37.129.78.74 213002 port 53 213002 unique_id port 213002 remote_ip 10.8.1.158 213003 username pourshad 213003 mac 213003 bytes_out 0 213003 bytes_in 0 213003 station_ip 5.120.54.100 213003 port 81 213003 unique_id port 213005 username pourshad 213005 mac 213005 bytes_out 1719365 213005 bytes_in 150181 213005 station_ip 5.120.54.100 213005 port 50 213005 unique_id port 213005 remote_ip 10.8.1.10 213007 username aminvpnipad 213007 mac 213007 bytes_out 0 213007 bytes_in 0 213007 station_ip 5.119.204.150 213007 port 1 213007 unique_id port 213007 remote_ip 10.8.0.2 213009 username barzegar8595 213009 kill_reason Another user logged on this global unique id 213009 mac 213009 bytes_out 0 213009 bytes_in 0 213009 station_ip 46.225.214.107 213009 port 38 213009 unique_id port 213009 remote_ip 10.8.1.26 213012 username pourshad 213012 kill_reason Another user logged on this global unique id 213012 mac 213012 bytes_out 0 213012 bytes_in 0 213012 station_ip 5.120.54.100 213012 port 50 213012 unique_id port 213012 remote_ip 10.8.0.122 213021 username hosseini0093 213021 kill_reason Another user logged on this global unique id 213021 mac 213021 bytes_out 0 213021 bytes_in 0 213021 station_ip 83.122.76.241 213021 port 68 213021 unique_id port 213026 username hosseini0093 213026 kill_reason Another user logged on this global unique id 213026 mac 213026 bytes_out 0 212984 username meysam 212984 kill_reason Another user logged on this global unique id 212984 mac 212984 bytes_out 0 212984 bytes_in 0 212984 station_ip 188.159.251.36 212984 port 80 212984 unique_id port 212988 username kalantary6037 212988 mac 212988 bytes_out 0 212988 bytes_in 0 212988 station_ip 37.129.37.169 212988 port 43 212988 unique_id port 212990 username dorani4942 212990 mac 212990 bytes_out 0 212990 bytes_in 0 212990 station_ip 83.123.136.91 212990 port 50 212990 unique_id port 212993 username iranmanesh4443 212993 mac 212993 bytes_out 0 212993 bytes_in 0 212993 station_ip 5.119.190.250 212993 port 75 212993 unique_id port 212993 remote_ip 10.8.0.198 212994 username iranmanesh4443 212994 mac 212994 bytes_out 0 212994 bytes_in 0 212994 station_ip 5.119.190.250 212994 port 50 212994 unique_id port 212994 remote_ip 10.8.0.198 212996 username aminvpnipad 212996 mac 212996 bytes_out 0 212996 bytes_in 0 212996 station_ip 5.119.204.150 212996 port 1 212996 unique_id port 212996 remote_ip 10.8.0.2 212998 username iranmanesh4443 212998 mac 212998 bytes_out 0 212998 bytes_in 0 212998 station_ip 5.119.190.250 212998 port 43 212998 unique_id port 212998 remote_ip 10.8.1.90 213008 username hosseine 213008 kill_reason Another user logged on this global unique id 213008 mac 213008 bytes_out 0 213008 bytes_in 0 213008 station_ip 83.123.226.87 213008 port 84 213008 unique_id port 213010 username hosseini0093 213010 kill_reason Another user logged on this global unique id 213010 mac 213010 bytes_out 0 213010 bytes_in 0 213010 station_ip 83.122.76.241 213010 port 68 213010 unique_id port 213011 username aminvpnipad 213011 mac 213011 bytes_out 0 213011 bytes_in 0 213011 station_ip 5.119.204.150 213011 port 1 213011 unique_id port 213011 remote_ip 10.8.0.2 213013 username mirzaei6046 213013 kill_reason Another user logged on this global unique id 213013 mac 213013 bytes_out 0 213013 bytes_in 0 213013 station_ip 5.120.121.238 213013 port 41 213013 unique_id port 213013 remote_ip 10.8.0.242 213014 username mosi 213014 kill_reason Another user logged on this global unique id 213014 mac 213014 bytes_out 0 213014 bytes_in 0 213014 station_ip 151.235.124.131 213014 port 82 213014 unique_id port 213017 username motamedi9772 213017 mac 213017 bytes_out 0 213017 bytes_in 0 213017 station_ip 83.123.77.156 213017 port 78 213017 unique_id port 213017 remote_ip 10.8.0.86 213019 username aminvpnipad 213019 mac 213019 bytes_out 0 213019 bytes_in 0 213019 station_ip 5.119.204.150 213019 port 1 213019 unique_id port 213019 remote_ip 10.8.0.2 213022 username pourshad 213022 mac 213022 bytes_out 0 213022 bytes_in 0 213022 station_ip 5.120.54.100 213022 port 50 213022 unique_id port 213023 username meysam 213023 mac 213023 bytes_out 0 213023 bytes_in 0 213023 station_ip 188.159.251.36 213023 port 75 213023 unique_id port 213023 remote_ip 10.8.0.102 213030 username barzegar 213030 mac 213030 bytes_out 0 213030 bytes_in 0 213030 station_ip 5.119.150.236 213030 port 50 213030 unique_id port 213030 remote_ip 10.8.1.30 213031 username barzegar8595 213031 mac 213031 bytes_out 0 213031 bytes_in 0 213031 station_ip 5.202.19.234 213031 port 38 213031 unique_id port 213031 remote_ip 10.8.1.26 213032 username barzegar8595 213032 mac 213032 bytes_out 30773 213032 bytes_in 39901 213032 station_ip 5.202.19.234 213032 port 38 213032 unique_id port 213032 remote_ip 10.8.1.26 213035 username alipour1506 213035 mac 213035 bytes_out 0 213035 bytes_in 0 213026 bytes_in 0 213026 station_ip 83.122.76.241 213026 port 68 213026 unique_id port 213028 username hosseini0093 213028 mac 213028 bytes_out 0 213028 bytes_in 0 213028 station_ip 83.122.76.241 213028 port 68 213028 unique_id port 213029 username pourshad 213029 kill_reason Another user logged on this global unique id 213029 mac 213029 bytes_out 0 213029 bytes_in 0 213029 station_ip 5.120.54.100 213029 port 50 213029 unique_id port 213037 username kalantary6037 213037 mac 213037 bytes_out 0 213037 bytes_in 0 213037 station_ip 37.129.107.145 213037 port 38 213037 unique_id port 213037 remote_ip 10.8.1.98 213042 username pourshad 213042 mac 213042 bytes_out 0 213042 bytes_in 0 213042 station_ip 5.120.54.100 213042 port 38 213042 unique_id port 213042 remote_ip 10.8.1.10 213045 username kalantary6037 213045 mac 213045 bytes_out 93983 213045 bytes_in 287984 213045 station_ip 37.129.107.145 213045 port 38 213045 unique_id port 213045 remote_ip 10.8.1.98 213048 username aminvpnipad 213048 mac 213048 bytes_out 0 213048 bytes_in 0 213048 station_ip 5.119.204.150 213048 port 1 213048 unique_id port 213048 remote_ip 10.8.0.2 213051 username pourshad 213051 kill_reason Another user logged on this global unique id 213051 mac 213051 bytes_out 0 213051 bytes_in 0 213051 station_ip 5.120.54.100 213051 port 75 213051 unique_id port 213051 remote_ip 10.8.0.122 213056 username meysam 213056 kill_reason Another user logged on this global unique id 213056 mac 213056 bytes_out 0 213056 bytes_in 0 213056 station_ip 188.159.251.36 213056 port 80 213056 unique_id port 213056 remote_ip 10.8.0.102 213064 username hosseine 213064 kill_reason Another user logged on this global unique id 213064 mac 213064 bytes_out 0 213064 bytes_in 0 213064 station_ip 83.123.226.87 213064 port 84 213064 unique_id port 213066 username yaghobi 213066 mac 213066 bytes_out 0 213066 bytes_in 0 213066 station_ip 37.129.241.71 213066 port 81 213066 unique_id port 213066 remote_ip 10.8.0.106 213068 username barzegar 213068 mac 213068 bytes_out 5081 213068 bytes_in 11093 213068 station_ip 5.119.150.236 213068 port 68 213068 unique_id port 213068 remote_ip 10.8.0.34 213069 username aminvpnipad 213069 mac 213069 bytes_out 0 213069 bytes_in 0 213069 station_ip 5.119.204.150 213069 port 1 213069 unique_id port 213069 remote_ip 10.8.0.2 213070 username yaghobi 213070 mac 213070 bytes_out 0 213070 bytes_in 0 213070 station_ip 37.129.241.71 213070 port 82 213070 unique_id port 213070 remote_ip 10.8.0.106 213071 username soleymani5056 213071 mac 213071 bytes_out 214671 213071 bytes_in 832526 213071 station_ip 5.119.97.139 213071 port 80 213071 unique_id port 213071 remote_ip 10.8.0.246 213075 username yaghobi 213075 mac 213075 bytes_out 228040 213075 bytes_in 1883830 213075 station_ip 37.129.241.71 213075 port 80 213075 unique_id port 213075 remote_ip 10.8.0.106 213085 username aminvpnipad 213085 mac 213085 bytes_out 0 213085 bytes_in 0 213085 station_ip 5.119.204.150 213085 port 1 213085 unique_id port 213085 remote_ip 10.8.0.2 213087 username pourshad 213087 mac 213087 bytes_out 48326287 213087 bytes_in 2006808 213087 station_ip 5.120.54.100 213087 port 43 213087 unique_id port 213087 remote_ip 10.8.1.10 213092 username aminvpnipad 213092 mac 213092 bytes_out 0 213092 bytes_in 0 213092 station_ip 5.119.204.150 213092 port 1 213092 unique_id port 213092 remote_ip 10.8.0.2 213096 username pourshad 213096 mac 213096 bytes_out 0 213096 bytes_in 0 213034 bytes_in 40745 213034 station_ip 37.129.57.185 213034 port 68 213034 unique_id port 213034 remote_ip 10.8.0.66 213039 username aminvpnipad 213039 mac 213039 bytes_out 0 213039 bytes_in 0 213039 station_ip 5.119.204.150 213039 port 1 213039 unique_id port 213039 remote_ip 10.8.0.2 213040 username pourshad 213040 mac 213040 bytes_out 0 213040 bytes_in 0 213040 station_ip 5.120.54.100 213040 port 38 213040 unique_id port 213040 remote_ip 10.8.1.10 213041 username mosi 213041 mac 213041 bytes_out 598069 213041 bytes_in 957702 213041 station_ip 37.156.159.101 213041 port 68 213041 unique_id port 213041 remote_ip 10.8.0.38 213043 username pourshad 213043 mac 213043 bytes_out 1901792 213043 bytes_in 148941 213043 station_ip 5.120.54.100 213043 port 38 213043 unique_id port 213043 remote_ip 10.8.1.10 213044 username soleymani5056 213044 mac 213044 bytes_out 0 213044 bytes_in 0 213044 station_ip 5.120.58.121 213044 port 68 213044 unique_id port 213044 remote_ip 10.8.0.246 213046 username barzegar 213046 mac 213046 bytes_out 0 213046 bytes_in 0 213046 station_ip 5.119.150.236 213046 port 68 213046 unique_id port 213046 remote_ip 10.8.0.34 213047 username yaghobi 213047 mac 213047 bytes_out 0 213047 bytes_in 0 213047 station_ip 37.129.241.71 213047 port 78 213047 unique_id port 213047 remote_ip 10.8.0.106 213049 username yaghobi 213049 mac 213049 bytes_out 0 213049 bytes_in 0 213049 station_ip 37.129.241.71 213049 port 78 213049 unique_id port 213049 remote_ip 10.8.0.106 213053 username kalantary6037 213053 mac 213053 bytes_out 0 213053 bytes_in 0 213053 station_ip 37.129.107.145 213053 port 38 213053 unique_id port 213053 remote_ip 10.8.1.98 213055 username dortaj3792 213055 mac 213055 bytes_out 0 213055 bytes_in 0 213055 station_ip 5.119.215.225 213055 port 68 213055 unique_id port 213055 remote_ip 10.8.0.10 213060 username pourshad 213060 mac 213060 bytes_out 0 213060 bytes_in 0 213060 station_ip 5.120.54.100 213060 port 38 213060 unique_id port 213060 remote_ip 10.8.1.10 213061 username barzegar 213061 mac 213061 bytes_out 0 213061 bytes_in 0 213061 station_ip 5.119.150.236 213061 port 78 213061 unique_id port 213061 remote_ip 10.8.0.34 213063 username pourshad 213063 mac 213063 bytes_out 0 213063 bytes_in 0 213063 station_ip 5.120.54.100 213063 port 38 213063 unique_id port 213063 remote_ip 10.8.1.10 213073 username meysam 213073 mac 213073 bytes_out 0 213073 bytes_in 0 213073 station_ip 188.159.251.36 213073 port 80 213073 unique_id port 213073 remote_ip 10.8.0.102 213074 username yaghobi 213074 mac 213074 bytes_out 730466 213074 bytes_in 7651738 213074 station_ip 37.129.241.71 213074 port 78 213074 unique_id port 213074 remote_ip 10.8.0.106 213079 username pourshad 213079 kill_reason Another user logged on this global unique id 213079 mac 213079 bytes_out 0 213079 bytes_in 0 213079 station_ip 5.120.54.100 213079 port 81 213079 unique_id port 213079 remote_ip 10.8.0.122 213080 username barzegar8595 213080 mac 213080 bytes_out 0 213080 bytes_in 0 213080 station_ip 5.202.19.234 213080 port 43 213080 unique_id port 213080 remote_ip 10.8.1.26 213081 username kamali3 213081 mac 213081 bytes_out 194554 213081 bytes_in 704164 213081 station_ip 37.129.117.243 213081 port 75 213081 unique_id port 213081 remote_ip 10.8.0.182 213084 username barzegar 213084 mac 213084 bytes_out 0 213084 bytes_in 0 213084 station_ip 5.119.150.236 213084 port 78 213035 station_ip 37.129.78.74 213035 port 43 213035 unique_id port 213035 remote_ip 10.8.1.158 213036 username mosi 213036 mac 213036 bytes_out 0 213036 bytes_in 0 213036 station_ip 151.235.124.131 213036 port 82 213036 unique_id port 213038 username barzegar 213038 mac 213038 bytes_out 0 213038 bytes_in 0 213038 station_ip 5.119.150.236 213038 port 50 213038 unique_id port 213038 remote_ip 10.8.0.34 213050 username yaghobi 213050 mac 213050 bytes_out 0 213050 bytes_in 0 213050 station_ip 37.129.241.71 213050 port 81 213050 unique_id port 213050 remote_ip 10.8.0.106 213052 username yaghobi 213052 mac 213052 bytes_out 0 213052 bytes_in 0 213052 station_ip 37.129.241.71 213052 port 78 213052 unique_id port 213052 remote_ip 10.8.0.106 213054 username malekpoir 213054 mac 213054 bytes_out 4225344 213054 bytes_in 43342834 213054 station_ip 5.120.99.127 213054 port 46 213054 unique_id port 213054 remote_ip 10.8.0.178 213057 username aminvpnipad 213057 mac 213057 bytes_out 0 213057 bytes_in 0 213057 station_ip 5.119.204.150 213057 port 1 213057 unique_id port 213057 remote_ip 10.8.0.2 213058 username pourshad 213058 mac 213058 bytes_out 0 213058 bytes_in 0 213058 station_ip 5.120.54.100 213058 port 75 213058 unique_id port 213059 username mosi 213059 kill_reason Another user logged on this global unique id 213059 mac 213059 bytes_out 0 213059 bytes_in 0 213059 station_ip 151.235.124.131 213059 port 50 213059 unique_id port 213059 remote_ip 10.8.0.38 213062 username meysam 213062 mac 213062 bytes_out 0 213062 bytes_in 0 213062 station_ip 188.159.251.36 213062 port 80 213062 unique_id port 213065 username yaghobi 213065 mac 213065 bytes_out 108590 213065 bytes_in 247432 213065 station_ip 37.129.241.71 213065 port 68 213065 unique_id port 213065 remote_ip 10.8.0.106 213067 username aminvpn 213067 mac 213067 bytes_out 624416 213067 bytes_in 8724366 213067 station_ip 83.123.181.226 213067 port 78 213067 unique_id port 213067 remote_ip 10.8.0.58 213072 username malekpoir 213072 mac 213072 bytes_out 111558 213072 bytes_in 712448 213072 station_ip 5.120.99.127 213072 port 46 213072 unique_id port 213072 remote_ip 10.8.0.178 213076 username barzegar 213076 mac 213076 bytes_out 0 213076 bytes_in 0 213076 station_ip 5.119.150.236 213076 port 78 213076 unique_id port 213076 remote_ip 10.8.0.34 213077 username aminvpnipad 213077 mac 213077 bytes_out 0 213077 bytes_in 0 213077 station_ip 5.119.204.150 213077 port 1 213077 unique_id port 213077 remote_ip 10.8.0.2 213078 username aminvpn 213078 kill_reason Another user logged on this global unique id 213078 mac 213078 bytes_out 0 213078 bytes_in 0 213078 station_ip 5.119.101.12 213078 port 68 213078 unique_id port 213078 remote_ip 10.8.0.58 213082 username pourshad 213082 mac 213082 bytes_out 0 213082 bytes_in 0 213082 station_ip 5.120.54.100 213082 port 81 213082 unique_id port 213083 username sabaghnezhad 213083 mac 213083 bytes_out 0 213083 bytes_in 0 213083 station_ip 83.122.75.204 213083 port 78 213083 unique_id port 213083 remote_ip 10.8.0.94 213088 username soleymani5056 213088 mac 213088 bytes_out 20970 213088 bytes_in 26150 213088 station_ip 5.119.125.160 213088 port 78 213088 unique_id port 213088 remote_ip 10.8.0.246 213089 username dorani4942 213089 mac 213089 bytes_out 0 213089 bytes_in 0 213089 station_ip 83.123.82.231 213089 port 38 213089 unique_id port 213089 remote_ip 10.8.1.118 213093 username malekpoir 213084 unique_id port 213084 remote_ip 10.8.0.34 213086 username yaghobi 213086 mac 213086 bytes_out 255626 213086 bytes_in 1944230 213086 station_ip 37.129.146.215 213086 port 80 213086 unique_id port 213086 remote_ip 10.8.0.106 213090 username kalantary6037 213090 mac 213090 bytes_out 0 213090 bytes_in 0 213090 station_ip 37.129.54.41 213090 port 51 213090 unique_id port 213090 remote_ip 10.8.1.98 213091 username barzegar 213091 mac 213091 bytes_out 0 213091 bytes_in 0 213091 station_ip 5.119.150.236 213091 port 83 213091 unique_id port 213091 remote_ip 10.8.0.34 213094 username barzegar8595 213094 mac 213094 bytes_out 0 213094 bytes_in 0 213094 station_ip 46.225.214.107 213094 port 38 213094 unique_id port 213094 remote_ip 10.8.1.26 213095 username dortaj3792 213095 mac 213095 bytes_out 0 213095 bytes_in 0 213095 station_ip 5.119.215.225 213095 port 50 213095 unique_id port 213095 remote_ip 10.8.1.62 213098 username pourshad 213098 mac 213098 bytes_out 0 213098 bytes_in 0 213098 station_ip 5.120.54.100 213098 port 83 213098 unique_id port 213098 remote_ip 10.8.0.122 213101 username barzegar 213101 mac 213101 bytes_out 0 213101 bytes_in 0 213101 station_ip 5.119.150.236 213101 port 83 213101 unique_id port 213101 remote_ip 10.8.0.34 213104 username motamedi9772 213104 kill_reason Another user logged on this global unique id 213104 mac 213104 bytes_out 0 213104 bytes_in 0 213104 station_ip 83.123.127.148 213104 port 78 213104 unique_id port 213104 remote_ip 10.8.0.86 213109 username kalantary6037 213109 mac 213109 bytes_out 0 213109 bytes_in 0 213109 station_ip 37.129.4.145 213109 port 51 213109 unique_id port 213109 remote_ip 10.8.1.98 213113 username mohammadjavad 213113 mac 213113 bytes_out 433321 213113 bytes_in 698121 213113 station_ip 83.123.165.141 213113 port 83 213113 unique_id port 213113 remote_ip 10.8.0.138 213117 username pourshad 213117 mac 213117 bytes_out 0 213117 bytes_in 0 213117 station_ip 5.120.54.100 213117 port 38 213117 unique_id port 213117 remote_ip 10.8.1.10 213119 username pourshad 213119 mac 213119 bytes_out 0 213119 bytes_in 0 213119 station_ip 5.120.54.100 213119 port 51 213119 unique_id port 213119 remote_ip 10.8.1.10 213121 username motamedi9772 213121 mac 213121 bytes_out 0 213121 bytes_in 0 213121 station_ip 83.123.127.148 213121 port 68 213121 unique_id port 213121 remote_ip 10.8.0.86 213125 username motamedi9772 213125 mac 213125 bytes_out 0 213125 bytes_in 0 213125 station_ip 83.123.127.148 213125 port 68 213125 unique_id port 213125 remote_ip 10.8.0.86 213127 username khorasani9135 213127 mac 213127 bytes_out 2399544 213127 bytes_in 33230439 213127 station_ip 83.123.215.186 213127 port 81 213127 unique_id port 213127 remote_ip 10.8.0.90 213128 username motamedi9772 213128 mac 213128 bytes_out 0 213128 bytes_in 0 213128 station_ip 83.123.127.148 213128 port 68 213128 unique_id port 213128 remote_ip 10.8.0.86 213130 username pourshad 213130 mac 213130 bytes_out 8040183 213130 bytes_in 60900778 213130 station_ip 5.120.54.100 213130 port 50 213130 unique_id port 213130 remote_ip 10.8.1.10 213131 username motamedi9772 213131 mac 213131 bytes_out 0 213131 bytes_in 0 213131 station_ip 83.123.127.148 213131 port 78 213131 unique_id port 213131 remote_ip 10.8.0.86 213132 username motamedi9772 213132 mac 213132 bytes_out 0 213132 bytes_in 0 213132 station_ip 83.123.127.148 213132 port 78 213132 unique_id port 213132 remote_ip 10.8.0.86 213093 mac 213093 bytes_out 57674 213093 bytes_in 82685 213093 station_ip 5.120.99.127 213093 port 46 213093 unique_id port 213093 remote_ip 10.8.0.178 213097 username mostafa_es78 213097 mac 213097 bytes_out 0 213097 bytes_in 0 213097 station_ip 113.203.19.195 213097 port 81 213097 unique_id port 213097 remote_ip 10.8.0.42 213103 username yaghobi 213103 mac 213103 bytes_out 2356806 213103 bytes_in 29592174 213103 station_ip 37.129.146.215 213103 port 80 213103 unique_id port 213103 remote_ip 10.8.0.106 213106 username soleymani5056 213106 mac 213106 bytes_out 29042 213106 bytes_in 32483 213106 station_ip 5.119.246.50 213106 port 80 213106 unique_id port 213106 remote_ip 10.8.0.246 213107 username pourshad 213107 mac 213107 bytes_out 9333366 213107 bytes_in 498978 213107 station_ip 5.120.54.100 213107 port 38 213107 unique_id port 213107 remote_ip 10.8.1.10 213108 username dorani4942 213108 kill_reason Another user logged on this global unique id 213108 mac 213108 bytes_out 0 213108 bytes_in 0 213108 station_ip 83.123.68.145 213108 port 50 213108 unique_id port 213108 remote_ip 10.8.1.118 213114 username mirzaei6046 213114 kill_reason Another user logged on this global unique id 213114 mac 213114 bytes_out 0 213114 bytes_in 0 213114 station_ip 5.120.121.238 213114 port 41 213114 unique_id port 213115 username pourshad 213115 mac 213115 bytes_out 0 213115 bytes_in 0 213115 station_ip 5.120.54.100 213115 port 80 213115 unique_id port 213115 remote_ip 10.8.0.122 213116 username barzegar 213116 mac 213116 bytes_out 3567127 213116 bytes_in 39530594 213116 station_ip 5.119.150.236 213116 port 38 213116 unique_id port 213116 remote_ip 10.8.1.30 213118 username mosi 213118 mac 213118 bytes_out 0 213118 bytes_in 0 213118 station_ip 151.235.124.131 213118 port 50 213118 unique_id port 213122 username motamedi9772 213122 mac 213122 bytes_out 0 213122 bytes_in 0 213122 station_ip 83.123.127.148 213122 port 68 213122 unique_id port 213122 remote_ip 10.8.0.86 213123 username aminvpnipad 213123 mac 213123 bytes_out 0 213123 bytes_in 0 213123 station_ip 5.119.204.150 213123 port 1 213123 unique_id port 213123 remote_ip 10.8.0.2 213126 username pourshad 213126 mac 213126 bytes_out 0 213126 bytes_in 0 213126 station_ip 5.120.54.100 213126 port 50 213126 unique_id port 213126 remote_ip 10.8.1.10 213129 username motamedi9772 213129 mac 213129 bytes_out 0 213129 bytes_in 0 213129 station_ip 83.123.127.148 213129 port 78 213129 unique_id port 213129 remote_ip 10.8.0.86 213133 username kalantary6037 213133 mac 213133 bytes_out 1566383 213133 bytes_in 19663613 213133 station_ip 37.129.25.81 213133 port 51 213133 unique_id port 213133 remote_ip 10.8.1.98 213137 username pourshad 213137 mac 213137 bytes_out 0 213137 bytes_in 0 213137 station_ip 5.120.54.100 213137 port 81 213137 unique_id port 213137 remote_ip 10.8.0.122 213142 username godarzi 213142 kill_reason Another user logged on this global unique id 213142 mac 213142 bytes_out 0 213142 bytes_in 0 213142 station_ip 5.202.65.237 213142 port 66 213142 unique_id port 213145 username motamedi9772 213145 mac 213145 bytes_out 0 213145 bytes_in 0 213145 station_ip 83.123.127.148 213145 port 78 213145 unique_id port 213145 remote_ip 10.8.0.86 213147 username motamedi9772 213147 mac 213147 bytes_out 0 213147 bytes_in 0 213147 station_ip 83.123.127.148 213147 port 83 213147 unique_id port 213147 remote_ip 10.8.0.86 213148 username motamedi9772 213148 mac 213148 bytes_out 0 213096 station_ip 5.120.54.100 213096 port 46 213096 unique_id port 213096 remote_ip 10.8.0.122 213099 username sabaghnezhad 213099 mac 213099 bytes_out 42593 213099 bytes_in 88512 213099 station_ip 83.122.75.204 213099 port 82 213099 unique_id port 213099 remote_ip 10.8.0.94 213100 username sabaghnezhad 213100 mac 213100 bytes_out 8265 213100 bytes_in 12328 213100 station_ip 83.122.75.204 213100 port 83 213100 unique_id port 213100 remote_ip 10.8.0.94 213102 username aminvpnipad 213102 mac 213102 bytes_out 0 213102 bytes_in 0 213102 station_ip 5.119.204.150 213102 port 1 213102 unique_id port 213102 remote_ip 10.8.0.2 213105 username pourshad 213105 mac 213105 bytes_out 20747897 213105 bytes_in 1154959 213105 station_ip 5.120.54.100 213105 port 38 213105 unique_id port 213105 remote_ip 10.8.1.10 213110 username aminvpn 213110 mac 213110 bytes_out 0 213110 bytes_in 0 213110 station_ip 5.119.101.12 213110 port 68 213110 unique_id port 213111 username motamedi9772 213111 kill_reason Another user logged on this global unique id 213111 mac 213111 bytes_out 0 213111 bytes_in 0 213111 station_ip 83.123.127.148 213111 port 78 213111 unique_id port 213112 username aminvpnipad 213112 mac 213112 bytes_out 0 213112 bytes_in 0 213112 station_ip 5.119.204.150 213112 port 1 213112 unique_id port 213112 remote_ip 10.8.0.2 213120 username motamedi9772 213120 mac 213120 bytes_out 0 213120 bytes_in 0 213120 station_ip 83.123.127.148 213120 port 78 213120 unique_id port 213124 username motamedi9772 213124 mac 213124 bytes_out 0 213124 bytes_in 0 213124 station_ip 83.123.127.148 213124 port 68 213124 unique_id port 213124 remote_ip 10.8.0.86 213139 username kamali3 213139 mac 213139 bytes_out 65981 213139 bytes_in 97522 213139 station_ip 37.129.117.243 213139 port 75 213139 unique_id port 213139 remote_ip 10.8.0.182 213140 username motamedi9772 213140 mac 213140 bytes_out 83401 213140 bytes_in 422900 213140 station_ip 83.123.127.148 213140 port 78 213140 unique_id port 213140 remote_ip 10.8.0.86 213141 username motamedi9772 213141 mac 213141 bytes_out 0 213141 bytes_in 0 213141 station_ip 83.123.127.148 213141 port 78 213141 unique_id port 213141 remote_ip 10.8.0.86 213143 username motamedi9772 213143 mac 213143 bytes_out 0 213143 bytes_in 0 213143 station_ip 83.123.127.148 213143 port 78 213143 unique_id port 213143 remote_ip 10.8.0.86 213146 username esmaeili1522 213146 kill_reason Another user logged on this global unique id 213146 mac 213146 bytes_out 0 213146 bytes_in 0 213146 station_ip 5.119.237.69 213146 port 68 213146 unique_id port 213146 remote_ip 10.8.0.190 213151 username dorani4942 213151 kill_reason Another user logged on this global unique id 213151 mac 213151 bytes_out 0 213151 bytes_in 0 213151 station_ip 37.129.14.146 213151 port 52 213151 unique_id port 213151 remote_ip 10.8.1.118 213152 username mostafa_es78 213152 mac 213152 bytes_out 0 213152 bytes_in 0 213152 station_ip 113.203.19.195 213152 port 46 213152 unique_id port 213152 remote_ip 10.8.0.42 213154 username pourshad 213154 mac 213154 bytes_out 49982155 213154 bytes_in 2246943 213154 station_ip 5.120.54.100 213154 port 50 213154 unique_id port 213154 remote_ip 10.8.1.10 213158 username motamedi9772 213158 mac 213158 bytes_out 0 213158 bytes_in 0 213158 station_ip 83.123.127.148 213158 port 81 213158 unique_id port 213158 remote_ip 10.8.0.86 213159 username motamedi9772 213159 mac 213159 bytes_out 0 213159 bytes_in 0 213159 station_ip 83.123.127.148 213134 username pourshad 213134 mac 213134 bytes_out 0 213134 bytes_in 0 213134 station_ip 5.120.54.100 213134 port 53 213134 unique_id port 213134 remote_ip 10.8.1.10 213135 username malekpoir 213135 mac 213135 bytes_out 0 213135 bytes_in 0 213135 station_ip 5.120.99.127 213135 port 43 213135 unique_id port 213135 remote_ip 10.8.1.242 213136 username pourshad 213136 mac 213136 bytes_out 2547941 213136 bytes_in 167148 213136 station_ip 5.120.54.100 213136 port 80 213136 unique_id port 213136 remote_ip 10.8.0.122 213138 username aminvpnipad 213138 mac 213138 bytes_out 0 213138 bytes_in 0 213138 station_ip 5.119.204.150 213138 port 1 213138 unique_id port 213138 remote_ip 10.8.0.2 213144 username barzegar 213144 mac 213144 bytes_out 0 213144 bytes_in 0 213144 station_ip 5.119.150.236 213144 port 38 213144 unique_id port 213144 remote_ip 10.8.1.30 213149 username aminvpnipad 213149 mac 213149 bytes_out 0 213149 bytes_in 0 213149 station_ip 5.119.204.150 213149 port 1 213149 unique_id port 213149 remote_ip 10.8.0.2 213153 username charkhandaz3496 213153 mac 213153 bytes_out 0 213153 bytes_in 0 213153 station_ip 5.119.160.41 213153 port 81 213153 unique_id port 213153 remote_ip 10.8.0.218 213155 username motamedi9772 213155 mac 213155 bytes_out 0 213155 bytes_in 0 213155 station_ip 83.123.127.148 213155 port 81 213155 unique_id port 213155 remote_ip 10.8.0.86 213156 username motamedi9772 213156 mac 213156 bytes_out 0 213156 bytes_in 0 213156 station_ip 83.123.127.148 213156 port 81 213156 unique_id port 213156 remote_ip 10.8.0.86 213160 username mostafa_es78 213160 mac 213160 bytes_out 12479 213160 bytes_in 12367 213160 station_ip 113.203.19.195 213160 port 83 213160 unique_id port 213160 remote_ip 10.8.0.42 213169 username dorani4942 213169 mac 213169 bytes_out 0 213169 bytes_in 0 213169 station_ip 37.129.14.146 213169 port 38 213169 unique_id port 213169 remote_ip 10.8.1.118 213173 username motamedi9772 213173 mac 213173 bytes_out 0 213173 bytes_in 0 213173 station_ip 83.123.127.148 213173 port 81 213173 unique_id port 213173 remote_ip 10.8.0.86 213176 username motamedi9772 213176 mac 213176 bytes_out 8006 213176 bytes_in 13683 213176 station_ip 83.123.127.148 213176 port 81 213176 unique_id port 213176 remote_ip 10.8.0.86 213180 username motamedi9772 213180 mac 213180 bytes_out 0 213180 bytes_in 0 213180 station_ip 83.123.127.148 213180 port 81 213180 unique_id port 213180 remote_ip 10.8.0.86 213186 username motamedi9772 213186 mac 213186 bytes_out 0 213186 bytes_in 0 213186 station_ip 83.123.127.148 213186 port 75 213186 unique_id port 213186 remote_ip 10.8.0.86 213193 username aminvpnipad 213193 mac 213193 bytes_out 0 213193 bytes_in 0 213193 station_ip 5.119.204.150 213193 port 1 213193 unique_id port 213193 remote_ip 10.8.0.2 213195 username soleymani5056 213195 mac 213195 bytes_out 32322 213195 bytes_in 64097 213195 station_ip 5.120.148.61 213195 port 81 213195 unique_id port 213195 remote_ip 10.8.0.246 213198 username daryaei1233 213198 mac 213198 bytes_out 0 213198 bytes_in 0 213198 station_ip 83.123.245.132 213198 port 43 213198 unique_id port 213198 remote_ip 10.8.1.14 213200 username mostafa_es78 213200 mac 213200 bytes_out 47985 213200 bytes_in 64733 213200 station_ip 113.203.19.195 213200 port 82 213200 unique_id port 213200 remote_ip 10.8.0.42 213202 username barzegar 213202 mac 213202 bytes_out 0 213202 bytes_in 0 213148 bytes_in 0 213148 station_ip 83.123.127.148 213148 port 83 213148 unique_id port 213148 remote_ip 10.8.0.86 213150 username motamedi9772 213150 mac 213150 bytes_out 0 213150 bytes_in 0 213150 station_ip 83.123.127.148 213150 port 83 213150 unique_id port 213150 remote_ip 10.8.0.86 213157 username pourshad 213157 mac 213157 bytes_out 887815 213157 bytes_in 76843 213157 station_ip 5.120.54.100 213157 port 46 213157 unique_id port 213157 remote_ip 10.8.0.122 213161 username motamedi9772 213161 mac 213161 bytes_out 0 213161 bytes_in 0 213161 station_ip 83.123.127.148 213161 port 81 213161 unique_id port 213161 remote_ip 10.8.0.86 213163 username dorani4942 213163 mac 213163 bytes_out 0 213163 bytes_in 0 213163 station_ip 37.129.14.146 213163 port 52 213163 unique_id port 213164 username dorani4942 213164 mac 213164 bytes_out 0 213164 bytes_in 0 213164 station_ip 37.129.14.146 213164 port 83 213164 unique_id port 213164 remote_ip 10.8.0.82 213167 username motamedi9772 213167 mac 213167 bytes_out 0 213167 bytes_in 0 213167 station_ip 83.123.127.148 213167 port 81 213167 unique_id port 213167 remote_ip 10.8.0.86 213170 username esmaeili1522 213170 kill_reason Another user logged on this global unique id 213170 mac 213170 bytes_out 0 213170 bytes_in 0 213170 station_ip 5.119.237.69 213170 port 68 213170 unique_id port 213171 username motamedi9772 213171 mac 213171 bytes_out 0 213171 bytes_in 0 213171 station_ip 83.123.127.148 213171 port 81 213171 unique_id port 213171 remote_ip 10.8.0.86 213177 username motamedi9772 213177 mac 213177 bytes_out 0 213177 bytes_in 0 213177 station_ip 83.123.127.148 213177 port 81 213177 unique_id port 213177 remote_ip 10.8.0.86 213178 username motamedi9772 213178 mac 213178 bytes_out 0 213178 bytes_in 0 213178 station_ip 83.123.127.148 213178 port 81 213178 unique_id port 213178 remote_ip 10.8.0.86 213182 username motamedi9772 213182 mac 213182 bytes_out 0 213182 bytes_in 0 213182 station_ip 83.123.127.148 213182 port 75 213182 unique_id port 213182 remote_ip 10.8.0.86 213183 username dorani4942 213183 kill_reason Another user logged on this global unique id 213183 mac 213183 bytes_out 0 213183 bytes_in 0 213183 station_ip 37.129.14.146 213183 port 38 213183 unique_id port 213183 remote_ip 10.8.1.118 213187 username kharazmi2920 213187 mac 213187 bytes_out 1199068 213187 bytes_in 15768024 213187 station_ip 83.123.237.28 213187 port 83 213187 unique_id port 213187 remote_ip 10.8.0.54 213190 username motamedi9772 213190 mac 213190 bytes_out 0 213190 bytes_in 0 213190 station_ip 83.123.127.148 213190 port 68 213190 unique_id port 213190 remote_ip 10.8.0.86 213192 username motamedi9772 213192 mac 213192 bytes_out 1666 213192 bytes_in 4867 213192 station_ip 83.123.127.148 213192 port 68 213192 unique_id port 213192 remote_ip 10.8.0.86 213194 username kamali3 213194 mac 213194 bytes_out 12849 213194 bytes_in 27923 213194 station_ip 37.129.117.243 213194 port 75 213194 unique_id port 213194 remote_ip 10.8.0.182 213197 username pourshad 213197 kill_reason Another user logged on this global unique id 213197 mac 213197 bytes_out 0 213197 bytes_in 0 213197 station_ip 5.120.54.100 213197 port 46 213197 unique_id port 213199 username mosi 213199 mac 213199 bytes_out 0 213199 bytes_in 0 213199 station_ip 151.235.124.131 213199 port 50 213199 unique_id port 213206 username barzegar 213206 mac 213206 bytes_out 0 213206 bytes_in 0 213206 station_ip 5.119.150.236 213206 port 68 213159 port 81 213159 unique_id port 213159 remote_ip 10.8.0.86 213162 username motamedi9772 213162 mac 213162 bytes_out 0 213162 bytes_in 0 213162 station_ip 83.123.127.148 213162 port 81 213162 unique_id port 213162 remote_ip 10.8.0.86 213165 username motamedi9772 213165 mac 213165 bytes_out 0 213165 bytes_in 0 213165 station_ip 83.123.127.148 213165 port 81 213165 unique_id port 213165 remote_ip 10.8.0.86 213166 username pourshad 213166 kill_reason Another user logged on this global unique id 213166 mac 213166 bytes_out 0 213166 bytes_in 0 213166 station_ip 5.120.54.100 213166 port 46 213166 unique_id port 213166 remote_ip 10.8.0.122 213168 username motamedi9772 213168 mac 213168 bytes_out 0 213168 bytes_in 0 213168 station_ip 83.123.127.148 213168 port 81 213168 unique_id port 213168 remote_ip 10.8.0.86 213172 username sabaghnezhad 213172 mac 213172 bytes_out 0 213172 bytes_in 0 213172 station_ip 83.122.75.204 213172 port 82 213172 unique_id port 213172 remote_ip 10.8.0.94 213174 username aminvpnipad 213174 mac 213174 bytes_out 0 213174 bytes_in 0 213174 station_ip 5.119.204.150 213174 port 1 213174 unique_id port 213174 remote_ip 10.8.0.2 213175 username mostafa_es78 213175 mac 213175 bytes_out 27063 213175 bytes_in 51889 213175 station_ip 113.203.19.195 213175 port 85 213175 unique_id port 213175 remote_ip 10.8.0.42 213179 username barzegar 213179 mac 213179 bytes_out 0 213179 bytes_in 0 213179 station_ip 5.119.150.236 213179 port 78 213179 unique_id port 213179 remote_ip 10.8.0.34 213181 username yaghobi 213181 mac 213181 bytes_out 1028014 213181 bytes_in 7952243 213181 station_ip 37.129.200.243 213181 port 75 213181 unique_id port 213181 remote_ip 10.8.0.106 213184 username motamedi9772 213184 mac 213184 bytes_out 0 213184 bytes_in 0 213184 station_ip 83.123.127.148 213184 port 75 213184 unique_id port 213184 remote_ip 10.8.0.86 213185 username malekpoir 213185 mac 213185 bytes_out 0 213185 bytes_in 0 213185 station_ip 5.120.99.127 213185 port 43 213185 unique_id port 213185 remote_ip 10.8.1.242 213188 username esmaeili1522 213188 mac 213188 bytes_out 0 213188 bytes_in 0 213188 station_ip 5.119.237.69 213188 port 68 213188 unique_id port 213189 username dorani4942 213189 mac 213189 bytes_out 0 213189 bytes_in 0 213189 station_ip 37.129.14.146 213189 port 38 213189 unique_id port 213191 username kamali3 213191 mac 213191 bytes_out 26370 213191 bytes_in 33545 213191 station_ip 37.129.117.243 213191 port 80 213191 unique_id port 213191 remote_ip 10.8.0.182 213196 username daryaei1233 213196 mac 213196 bytes_out 69698 213196 bytes_in 265553 213196 station_ip 83.123.245.132 213196 port 68 213196 unique_id port 213196 remote_ip 10.8.0.14 213201 username kalantary6037 213201 mac 213201 bytes_out 0 213201 bytes_in 0 213201 station_ip 37.129.112.97 213201 port 38 213201 unique_id port 213201 remote_ip 10.8.1.98 213203 username barzegar 213203 mac 213203 bytes_out 0 213203 bytes_in 0 213203 station_ip 5.119.150.236 213203 port 68 213203 unique_id port 213203 remote_ip 10.8.0.34 213209 username sabaghnezhad 213209 mac 213209 bytes_out 85885 213209 bytes_in 94366 213209 station_ip 37.129.194.251 213209 port 80 213209 unique_id port 213209 remote_ip 10.8.0.94 213210 username barzegar 213210 kill_reason Maximum check online fails reached 213210 mac 213210 bytes_out 0 213210 bytes_in 0 213210 station_ip 5.119.150.236 213210 port 68 213210 unique_id port 213213 username aminvpnipad 213202 station_ip 5.119.150.236 213202 port 78 213202 unique_id port 213202 remote_ip 10.8.0.34 213204 username pourshad 213204 kill_reason Another user logged on this global unique id 213204 mac 213204 bytes_out 0 213204 bytes_in 0 213204 station_ip 5.120.54.100 213204 port 46 213204 unique_id port 213205 username aminvpnipad 213205 mac 213205 bytes_out 0 213205 bytes_in 0 213205 station_ip 5.119.204.150 213205 port 1 213205 unique_id port 213205 remote_ip 10.8.0.2 213207 username barzegar 213207 mac 213207 bytes_out 0 213207 bytes_in 0 213207 station_ip 5.119.150.236 213207 port 75 213207 unique_id port 213207 remote_ip 10.8.0.34 213214 username barzegar 213214 mac 213214 bytes_out 0 213214 bytes_in 0 213214 station_ip 5.119.150.236 213214 port 75 213214 unique_id port 213214 remote_ip 10.8.0.34 213219 username barzegar 213219 kill_reason Maximum check online fails reached 213219 mac 213219 bytes_out 0 213219 bytes_in 0 213219 station_ip 5.119.150.236 213219 port 38 213219 unique_id port 213221 username pourshad 213221 mac 213221 bytes_out 15223474 213221 bytes_in 1087788 213221 station_ip 5.120.54.100 213221 port 80 213221 unique_id port 213221 remote_ip 10.8.0.122 213225 username dorani4942 213225 mac 213225 bytes_out 0 213225 bytes_in 0 213225 station_ip 37.129.106.238 213225 port 51 213225 unique_id port 213225 remote_ip 10.8.1.118 213227 username mehrpoyan101 213227 mac 213227 bytes_out 0 213227 bytes_in 0 213227 station_ip 5.119.87.154 213227 port 82 213227 unique_id port 213227 remote_ip 10.8.0.134 213228 username dorani4942 213228 mac 213228 bytes_out 0 213228 bytes_in 0 213228 station_ip 37.129.106.238 213228 port 66 213228 unique_id port 213228 remote_ip 10.8.0.82 213231 username pourshad 213231 mac 213231 bytes_out 0 213231 bytes_in 0 213231 station_ip 5.120.54.100 213231 port 82 213231 unique_id port 213231 remote_ip 10.8.0.122 213235 username dorani4942 213235 mac 213235 bytes_out 0 213235 bytes_in 0 213235 station_ip 37.129.106.238 213235 port 43 213235 unique_id port 213235 remote_ip 10.8.1.118 213238 username pourshad 213238 kill_reason Another user logged on this global unique id 213238 mac 213238 bytes_out 0 213238 bytes_in 0 213238 station_ip 5.120.54.100 213238 port 82 213238 unique_id port 213238 remote_ip 10.8.0.122 213239 username aminvpn 213239 kill_reason Another user logged on this global unique id 213239 mac 213239 bytes_out 0 213239 bytes_in 0 213239 station_ip 5.119.101.12 213239 port 81 213239 unique_id port 213239 remote_ip 10.8.0.58 213240 username tahmorsi 213240 mac 213240 bytes_out 510996 213240 bytes_in 8924387 213240 station_ip 86.57.10.38 213240 port 51 213240 unique_id port 213240 remote_ip 10.8.1.78 213243 username aminvpnipad 213243 mac 213243 bytes_out 0 213243 bytes_in 0 213243 station_ip 5.119.204.150 213243 port 1 213243 unique_id port 213243 remote_ip 10.8.0.2 213245 username daryaei1233 213245 mac 213245 bytes_out 0 213245 bytes_in 0 213245 station_ip 83.123.245.132 213245 port 80 213245 unique_id port 213245 remote_ip 10.8.0.14 213246 username barzegar 213246 mac 213246 bytes_out 0 213246 bytes_in 0 213246 station_ip 5.119.150.236 213246 port 50 213246 unique_id port 213246 remote_ip 10.8.1.30 213247 username daryaei1233 213247 kill_reason Maximum number of concurrent logins reached 213247 mac 213247 bytes_out 0 213247 bytes_in 0 213247 station_ip 83.123.245.132 213247 port 84 213247 unique_id port 213248 username daryaei1233 213248 kill_reason Maximum number of concurrent logins reached 213206 unique_id port 213206 remote_ip 10.8.0.34 213208 username dorani4942 213208 mac 213208 bytes_out 3333 213208 bytes_in 6097 213208 station_ip 37.129.106.238 213208 port 68 213208 unique_id port 213208 remote_ip 10.8.0.82 213211 username pourshad 213211 kill_reason Another user logged on this global unique id 213211 mac 213211 bytes_out 0 213211 bytes_in 0 213211 station_ip 5.120.54.100 213211 port 46 213211 unique_id port 213212 username pourshad 213212 mac 213212 bytes_out 0 213212 bytes_in 0 213212 station_ip 5.120.54.100 213212 port 46 213212 unique_id port 213216 username hosseine 213216 mac 213216 bytes_out 0 213216 bytes_in 0 213216 station_ip 83.123.226.87 213216 port 84 213216 unique_id port 213223 username kamali3 213223 kill_reason Another user logged on this global unique id 213223 mac 213223 bytes_out 0 213223 bytes_in 0 213223 station_ip 37.129.117.243 213223 port 50 213223 unique_id port 213223 remote_ip 10.8.0.182 213230 username barzegar 213230 mac 213230 bytes_out 0 213230 bytes_in 0 213230 station_ip 5.119.150.236 213230 port 46 213230 unique_id port 213230 remote_ip 10.8.0.34 213233 username dorani4942 213233 mac 213233 bytes_out 0 213233 bytes_in 0 213233 station_ip 37.129.106.238 213233 port 66 213233 unique_id port 213233 remote_ip 10.8.0.82 213241 username kamali3 213241 kill_reason Another user logged on this global unique id 213241 mac 213241 bytes_out 0 213241 bytes_in 0 213241 station_ip 37.129.117.243 213241 port 50 213241 unique_id port 213241 remote_ip 10.8.0.182 213249 username daryaei1233 213249 kill_reason Maximum check online fails reached 213249 mac 213249 bytes_out 0 213249 bytes_in 0 213249 station_ip 83.123.245.132 213249 port 66 213249 unique_id port 213254 username barzegar 213254 mac 213254 bytes_out 7940 213254 bytes_in 13131 213254 station_ip 5.119.150.236 213254 port 43 213254 unique_id port 213254 remote_ip 10.8.1.30 213257 username barzegar 213257 mac 213257 bytes_out 0 213257 bytes_in 0 213257 station_ip 5.119.150.236 213257 port 43 213257 unique_id port 213257 remote_ip 10.8.1.30 213261 username kalantary6037 213261 mac 213261 bytes_out 0 213261 bytes_in 0 213261 station_ip 37.129.109.181 213261 port 43 213261 unique_id port 213261 remote_ip 10.8.1.98 213262 username pourshad 213262 mac 213262 bytes_out 0 213262 bytes_in 0 213262 station_ip 5.120.54.100 213262 port 51 213262 unique_id port 213262 remote_ip 10.8.1.10 213265 username godarzi 213265 mac 213265 bytes_out 139595 213265 bytes_in 954312 213265 station_ip 5.119.235.65 213265 port 82 213265 unique_id port 213265 remote_ip 10.8.0.74 213269 username pourshad 213269 kill_reason Another user logged on this global unique id 213269 mac 213269 bytes_out 0 213269 bytes_in 0 213269 station_ip 5.120.54.100 213269 port 43 213269 unique_id port 213269 remote_ip 10.8.1.10 213273 username afarin1 213273 mac 213273 bytes_out 0 213273 bytes_in 0 213273 station_ip 31.56.218.247 213273 port 80 213273 unique_id port 213273 remote_ip 10.8.0.30 213281 username daryaei1233 213281 mac 213281 bytes_out 0 213281 bytes_in 0 213281 station_ip 83.123.245.132 213281 port 80 213281 unique_id port 213281 remote_ip 10.8.0.14 213284 username amiresmaeili0609 213284 mac 213284 bytes_out 46335 213284 bytes_in 49501 213284 station_ip 37.129.89.246 213284 port 51 213284 unique_id port 213284 remote_ip 10.8.1.134 213286 username barzegar 213286 kill_reason Another user logged on this global unique id 213286 mac 213286 bytes_out 0 213286 bytes_in 0 213213 mac 213213 bytes_out 0 213213 bytes_in 0 213213 station_ip 5.119.204.150 213213 port 1 213213 unique_id port 213213 remote_ip 10.8.0.2 213215 username barzegar 213215 mac 213215 bytes_out 2268 213215 bytes_in 4630 213215 station_ip 5.119.150.236 213215 port 80 213215 unique_id port 213215 remote_ip 10.8.0.34 213217 username godarzi 213217 mac 213217 bytes_out 0 213217 bytes_in 0 213217 station_ip 5.202.65.237 213217 port 66 213217 unique_id port 213218 username mehrpoyan101 213218 mac 213218 bytes_out 324803 213218 bytes_in 1375398 213218 station_ip 5.119.189.166 213218 port 46 213218 unique_id port 213218 remote_ip 10.8.0.134 213220 username mehrpoyan101 213220 mac 213220 bytes_out 124230 213220 bytes_in 678124 213220 station_ip 5.119.87.154 213220 port 81 213220 unique_id port 213220 remote_ip 10.8.0.134 213222 username barzegar 213222 mac 213222 bytes_out 5412 213222 bytes_in 6419 213222 station_ip 5.119.150.236 213222 port 66 213222 unique_id port 213222 remote_ip 10.8.0.34 213224 username mohammadjavad 213224 mac 213224 bytes_out 0 213224 bytes_in 0 213224 station_ip 83.122.67.146 213224 port 46 213224 unique_id port 213224 remote_ip 10.8.0.138 213226 username pourshad 213226 mac 213226 bytes_out 17858058 213226 bytes_in 1034312 213226 station_ip 5.120.54.100 213226 port 43 213226 unique_id port 213226 remote_ip 10.8.1.10 213229 username kalantary6037 213229 mac 213229 bytes_out 0 213229 bytes_in 0 213229 station_ip 37.129.106.33 213229 port 50 213229 unique_id port 213229 remote_ip 10.8.1.98 213232 username dorani4942 213232 mac 213232 bytes_out 0 213232 bytes_in 0 213232 station_ip 37.129.106.238 213232 port 66 213232 unique_id port 213232 remote_ip 10.8.0.82 213234 username ahmadi1 213234 mac 213234 bytes_out 0 213234 bytes_in 0 213234 station_ip 83.122.163.51 213234 port 80 213234 unique_id port 213234 remote_ip 10.8.0.114 213236 username barzegar 213236 mac 213236 bytes_out 0 213236 bytes_in 0 213236 station_ip 5.119.150.236 213236 port 46 213236 unique_id port 213236 remote_ip 10.8.0.34 213237 username dorani4942 213237 mac 213237 bytes_out 0 213237 bytes_in 0 213237 station_ip 37.129.106.238 213237 port 43 213237 unique_id port 213237 remote_ip 10.8.1.118 213242 username kalantary6037 213242 mac 213242 bytes_out 160069 213242 bytes_in 403057 213242 station_ip 37.129.104.157 213242 port 43 213242 unique_id port 213242 remote_ip 10.8.1.98 213244 username daryaei1233 213244 mac 213244 bytes_out 0 213244 bytes_in 0 213244 station_ip 83.123.245.132 213244 port 66 213244 unique_id port 213244 remote_ip 10.8.0.14 213250 username pourshad 213250 kill_reason Another user logged on this global unique id 213250 mac 213250 bytes_out 0 213250 bytes_in 0 213250 station_ip 5.120.54.100 213250 port 82 213250 unique_id port 213251 username daryaei1233 213251 kill_reason Maximum number of concurrent logins reached 213251 mac 213251 bytes_out 0 213251 bytes_in 0 213251 station_ip 83.123.245.132 213251 port 85 213251 unique_id port 213253 username daryaei1233 213253 kill_reason Maximum check online fails reached 213253 mac 213253 bytes_out 0 213253 bytes_in 0 213253 station_ip 83.123.245.132 213253 port 66 213253 unique_id port 213255 username houshang 213255 mac 213255 bytes_out 0 213255 bytes_in 0 213255 station_ip 5.120.109.128 213255 port 80 213255 unique_id port 213255 remote_ip 10.8.0.158 213259 username pourshad 213259 mac 213259 bytes_out 0 213259 bytes_in 0 213248 mac 213248 bytes_out 0 213248 bytes_in 0 213248 station_ip 83.123.245.132 213248 port 85 213248 unique_id port 213252 username daryaei1233 213252 kill_reason Maximum check online fails reached 213252 mac 213252 bytes_out 0 213252 bytes_in 0 213252 station_ip 83.123.245.132 213252 port 83 213252 unique_id port 213256 username aminvpn 213256 kill_reason Another user logged on this global unique id 213256 mac 213256 bytes_out 0 213256 bytes_in 0 213256 station_ip 5.119.101.12 213256 port 81 213256 unique_id port 213258 username pourshad 213258 kill_reason Another user logged on this global unique id 213258 mac 213258 bytes_out 0 213258 bytes_in 0 213258 station_ip 5.120.54.100 213258 port 82 213258 unique_id port 213260 username barzegar 213260 mac 213260 bytes_out 0 213260 bytes_in 0 213260 station_ip 5.119.150.236 213260 port 50 213260 unique_id port 213260 remote_ip 10.8.1.30 213263 username aminvpn 213263 kill_reason Another user logged on this global unique id 213263 mac 213263 bytes_out 0 213263 bytes_in 0 213263 station_ip 5.119.101.12 213263 port 81 213263 unique_id port 213264 username houshang 213264 mac 213264 bytes_out 0 213264 bytes_in 0 213264 station_ip 5.120.109.128 213264 port 85 213264 unique_id port 213264 remote_ip 10.8.0.158 213268 username barzegar 213268 mac 213268 bytes_out 3221637 213268 bytes_in 47228809 213268 station_ip 5.119.150.236 213268 port 50 213268 unique_id port 213268 remote_ip 10.8.1.30 213270 username daryaei1233 213270 mac 213270 bytes_out 0 213270 bytes_in 0 213270 station_ip 83.123.245.132 213270 port 80 213270 unique_id port 213270 remote_ip 10.8.0.14 213271 username daryaei1233 213271 mac 213271 bytes_out 0 213271 bytes_in 0 213271 station_ip 83.123.245.132 213271 port 80 213271 unique_id port 213271 remote_ip 10.8.0.14 213272 username kamali3 213272 kill_reason Another user logged on this global unique id 213272 mac 213272 bytes_out 0 213272 bytes_in 0 213272 station_ip 37.129.117.243 213272 port 50 213272 unique_id port 213276 username aminvpn 213276 kill_reason Another user logged on this global unique id 213276 mac 213276 bytes_out 0 213276 bytes_in 0 213276 station_ip 5.119.101.12 213276 port 81 213276 unique_id port 213277 username kamali3 213277 mac 213277 bytes_out 0 213277 bytes_in 0 213277 station_ip 37.129.117.243 213277 port 50 213277 unique_id port 213280 username dorani4942 213280 mac 213280 bytes_out 0 213280 bytes_in 0 213280 station_ip 37.129.106.238 213280 port 46 213280 unique_id port 213280 remote_ip 10.8.0.82 213285 username soleymani5056 213285 mac 213285 bytes_out 0 213285 bytes_in 0 213285 station_ip 5.119.113.240 213285 port 80 213285 unique_id port 213285 remote_ip 10.8.0.246 213290 username aminvpn 213290 kill_reason Another user logged on this global unique id 213290 mac 213290 bytes_out 0 213290 bytes_in 0 213290 station_ip 5.119.101.12 213290 port 81 213290 unique_id port 213294 username aminvpn 213294 mac 213294 bytes_out 0 213294 bytes_in 0 213294 station_ip 5.119.101.12 213294 port 81 213294 unique_id port 213300 username barzegar 213300 mac 213300 bytes_out 0 213300 bytes_in 0 213300 station_ip 5.119.215.92 213300 port 75 213300 unique_id port 213300 remote_ip 10.8.0.34 213304 username esmaeili1522 213304 mac 213304 bytes_out 940129 213304 bytes_in 3995582 213304 station_ip 5.119.237.69 213304 port 85 213304 unique_id port 213304 remote_ip 10.8.0.190 213307 username nasiripour0935 213307 mac 213307 bytes_out 557446 213307 bytes_in 338761 213259 station_ip 5.120.54.100 213259 port 82 213259 unique_id port 213266 username amiresmaeili0609 213266 mac 213266 bytes_out 1779026 213266 bytes_in 2119080 213266 station_ip 37.129.89.246 213266 port 84 213266 unique_id port 213266 remote_ip 10.8.0.202 213267 username yaghobi 213267 mac 213267 bytes_out 0 213267 bytes_in 0 213267 station_ip 37.129.129.67 213267 port 75 213267 unique_id port 213267 remote_ip 10.8.0.106 213274 username pourshad 213274 kill_reason Another user logged on this global unique id 213274 mac 213274 bytes_out 0 213274 bytes_in 0 213274 station_ip 5.120.54.100 213274 port 43 213274 unique_id port 213275 username daryaei1233 213275 kill_reason Another user logged on this global unique id 213275 mac 213275 bytes_out 0 213275 bytes_in 0 213275 station_ip 83.123.245.132 213275 port 50 213275 unique_id port 213275 remote_ip 10.8.1.14 213278 username dorani4942 213278 mac 213278 bytes_out 5313242 213278 bytes_in 48863846 213278 station_ip 37.129.106.238 213278 port 46 213278 unique_id port 213278 remote_ip 10.8.0.82 213279 username daryaei1233 213279 kill_reason Maximum number of concurrent logins reached 213279 mac 213279 bytes_out 0 213279 bytes_in 0 213279 station_ip 83.123.245.132 213279 port 53 213279 unique_id port 213282 username kalantary6037 213282 mac 213282 bytes_out 0 213282 bytes_in 0 213282 station_ip 37.129.20.185 213282 port 52 213282 unique_id port 213282 remote_ip 10.8.1.98 213283 username pourshad 213283 kill_reason Another user logged on this global unique id 213283 mac 213283 bytes_out 0 213283 bytes_in 0 213283 station_ip 5.120.54.100 213283 port 43 213283 unique_id port 213287 username daryaei1233 213287 kill_reason Another user logged on this global unique id 213287 mac 213287 bytes_out 0 213287 bytes_in 0 213287 station_ip 83.123.245.132 213287 port 50 213287 unique_id port 213288 username dorani4942 213288 mac 213288 bytes_out 0 213288 bytes_in 0 213288 station_ip 37.129.106.238 213288 port 80 213288 unique_id port 213288 remote_ip 10.8.0.82 213289 username kamali3 213289 mac 213289 bytes_out 0 213289 bytes_in 0 213289 station_ip 37.129.117.243 213289 port 50 213289 unique_id port 213291 username kamali3 213291 mac 213291 bytes_out 0 213291 bytes_in 0 213291 station_ip 37.129.117.243 213291 port 84 213291 unique_id port 213291 remote_ip 10.8.0.182 213292 username charkhandaz3496 213292 mac 213292 bytes_out 0 213292 bytes_in 0 213292 station_ip 5.119.160.41 213292 port 82 213292 unique_id port 213292 remote_ip 10.8.0.218 213295 username barzegar 213295 mac 213295 bytes_out 0 213295 bytes_in 0 213295 station_ip 5.120.4.238 213295 port 75 213295 unique_id port 213295 remote_ip 10.8.0.34 213296 username yaghobi 213296 mac 213296 bytes_out 0 213296 bytes_in 0 213296 station_ip 37.129.129.67 213296 port 80 213296 unique_id port 213296 remote_ip 10.8.0.106 213299 username yaghobi 213299 mac 213299 bytes_out 0 213299 bytes_in 0 213299 station_ip 37.129.129.67 213299 port 50 213299 unique_id port 213299 remote_ip 10.8.0.106 213301 username khalili2 213301 unique_id port 213301 terminate_cause Lost-Carrier 213301 bytes_out 2154024 213301 bytes_in 100893538 213301 station_ip 5.119.209.186 213301 port 15728797 213301 nas_port_type Virtual 213301 remote_ip 5.5.5.254 213302 username kamali3 213302 mac 213302 bytes_out 0 213302 bytes_in 0 213302 station_ip 37.129.117.243 213302 port 80 213302 unique_id port 213302 remote_ip 10.8.0.182 213305 username charkhandaz3496 213305 mac 213305 bytes_out 0 213305 bytes_in 0 213286 station_ip 5.119.150.236 213286 port 75 213286 unique_id port 213286 remote_ip 10.8.0.34 213293 username barzegar 213293 mac 213293 bytes_out 0 213293 bytes_in 0 213293 station_ip 5.119.150.236 213293 port 75 213293 unique_id port 213297 username kamali3 213297 mac 213297 bytes_out 92924 213297 bytes_in 172000 213297 station_ip 37.129.117.243 213297 port 50 213297 unique_id port 213297 remote_ip 10.8.0.182 213298 username kalantary6037 213298 mac 213298 bytes_out 191026 213298 bytes_in 2648343 213298 station_ip 37.129.99.101 213298 port 52 213298 unique_id port 213298 remote_ip 10.8.1.98 213303 username pourshad 213303 kill_reason Another user logged on this global unique id 213303 mac 213303 bytes_out 0 213303 bytes_in 0 213303 station_ip 5.120.54.100 213303 port 43 213303 unique_id port 213310 username dorani4942 213310 mac 213310 bytes_out 4796008 213310 bytes_in 49433564 213310 station_ip 37.129.106.238 213310 port 51 213310 unique_id port 213310 remote_ip 10.8.1.118 213312 username meysam 213312 kill_reason Another user logged on this global unique id 213312 mac 213312 bytes_out 0 213312 bytes_in 0 213312 station_ip 188.159.251.54 213312 port 80 213312 unique_id port 213312 remote_ip 10.8.0.102 213316 username jafari 213316 kill_reason Another user logged on this global unique id 213316 mac 213316 bytes_out 0 213316 bytes_in 0 213316 station_ip 5.134.142.234 213316 port 84 213316 unique_id port 213316 remote_ip 10.8.0.110 213318 username sabaghnezhad 213318 mac 213318 bytes_out 0 213318 bytes_in 0 213318 station_ip 37.129.146.140 213318 port 78 213318 unique_id port 213318 remote_ip 10.8.0.94 213323 username saeeddamghani 213323 mac 213323 bytes_out 191863 213323 bytes_in 1308877 213323 station_ip 5.119.182.113 213323 port 82 213323 unique_id port 213323 remote_ip 10.8.0.162 213324 username saeeddamghani 213324 mac 213324 bytes_out 0 213324 bytes_in 0 213324 station_ip 5.119.182.113 213324 port 51 213324 unique_id port 213324 remote_ip 10.8.1.130 213328 username barzegar 213328 mac 213328 bytes_out 0 213328 bytes_in 0 213328 station_ip 5.119.221.217 213328 port 82 213328 unique_id port 213328 remote_ip 10.8.0.34 213335 username hamid.e 213335 kill_reason Maximum number of concurrent logins reached 213335 mac 213335 bytes_out 0 213335 bytes_in 0 213335 station_ip 37.27.4.122 213335 port 2 213335 unique_id port 213342 username hamid.e 213342 kill_reason Maximum number of concurrent logins reached 213342 mac 213342 bytes_out 0 213342 bytes_in 0 213342 station_ip 37.27.4.122 213342 port 2 213342 unique_id port 213343 username hamid.e 213343 kill_reason Maximum number of concurrent logins reached 213343 mac 213343 bytes_out 0 213343 bytes_in 0 213343 station_ip 37.27.4.122 213343 port 2 213343 unique_id port 213348 username hamid.e 213348 kill_reason Maximum number of concurrent logins reached 213348 mac 213348 bytes_out 0 213348 bytes_in 0 213348 station_ip 37.27.4.122 213348 port 88 213348 unique_id port 213350 username meysam 213350 mac 213350 bytes_out 0 213350 bytes_in 0 213350 station_ip 188.159.251.54 213350 port 80 213350 unique_id port 213352 username hamid.e 213352 kill_reason Maximum number of concurrent logins reached 213352 mac 213352 bytes_out 0 213352 bytes_in 0 213352 station_ip 37.27.4.122 213352 port 80 213352 unique_id port 213358 username aminvpn 213358 unique_id port 213358 terminate_cause User-Request 213358 bytes_out 0 213358 bytes_in 0 213358 station_ip 83.123.134.118 213358 port 15728799 213358 nas_port_type Virtual 213358 remote_ip 5.5.5.253 213361 username jafari 213305 station_ip 5.119.160.41 213305 port 84 213305 unique_id port 213305 remote_ip 10.8.0.218 213306 username pourshad 213306 kill_reason Another user logged on this global unique id 213306 mac 213306 bytes_out 0 213306 bytes_in 0 213306 station_ip 5.120.54.100 213306 port 43 213306 unique_id port 213314 username dortaj3792 213314 mac 213314 bytes_out 0 213314 bytes_in 0 213314 station_ip 5.119.215.225 213314 port 82 213314 unique_id port 213314 remote_ip 10.8.0.10 213315 username barzegar 213315 kill_reason Another user logged on this global unique id 213315 mac 213315 bytes_out 0 213315 bytes_in 0 213315 station_ip 5.119.221.217 213315 port 75 213315 unique_id port 213321 username barzegar 213321 mac 213321 bytes_out 0 213321 bytes_in 0 213321 station_ip 5.119.221.217 213321 port 75 213321 unique_id port 213321 remote_ip 10.8.0.34 213325 username barzegar 213325 mac 213325 bytes_out 0 213325 bytes_in 0 213325 station_ip 5.119.221.217 213325 port 51 213325 unique_id port 213325 remote_ip 10.8.1.30 213329 username saeeddamghani 213329 kill_reason Maximum check online fails reached 213329 mac 213329 bytes_out 0 213329 bytes_in 0 213329 station_ip 5.119.182.113 213329 port 85 213329 unique_id port 213333 username hamid.e 213333 kill_reason Maximum number of concurrent logins reached 213333 mac 213333 bytes_out 0 213333 bytes_in 0 213333 station_ip 37.27.4.122 213333 port 2 213333 unique_id port 213334 username hamid.e 213334 kill_reason Maximum number of concurrent logins reached 213334 mac 213334 bytes_out 0 213334 bytes_in 0 213334 station_ip 37.27.4.122 213334 port 2 213334 unique_id port 213337 username hamid.e 213337 kill_reason Maximum number of concurrent logins reached 213337 mac 213337 bytes_out 0 213337 bytes_in 0 213337 station_ip 37.27.4.122 213337 port 2 213337 unique_id port 213339 username hamid.e 213339 kill_reason Maximum number of concurrent logins reached 213339 mac 213339 bytes_out 0 213339 bytes_in 0 213339 station_ip 37.27.4.122 213339 port 2 213339 unique_id port 213341 username hamid.e 213341 kill_reason Maximum number of concurrent logins reached 213341 mac 213341 bytes_out 0 213341 bytes_in 0 213341 station_ip 37.27.4.122 213341 port 2 213341 unique_id port 213345 username jafari 213345 kill_reason Another user logged on this global unique id 213345 mac 213345 bytes_out 0 213345 bytes_in 0 213345 station_ip 5.134.142.234 213345 port 84 213345 unique_id port 213354 username hamid.e 213354 mac 213354 bytes_out 0 213354 bytes_in 0 213354 station_ip 37.27.4.122 213354 port 1 213354 unique_id port 213354 remote_ip 10.8.0.2 213355 username houshang 213355 mac 213355 bytes_out 135118 213355 bytes_in 177546 213355 station_ip 5.120.109.128 213355 port 87 213355 unique_id port 213355 remote_ip 10.8.0.158 213359 username barzegar 213359 mac 213359 bytes_out 0 213359 bytes_in 0 213359 station_ip 5.119.221.217 213359 port 88 213359 unique_id port 213359 remote_ip 10.8.0.34 213360 username godarzi 213360 mac 213360 bytes_out 5517498 213360 bytes_in 38697191 213360 station_ip 5.119.235.65 213360 port 46 213360 unique_id port 213360 remote_ip 10.8.0.74 213362 username aminvpn 213362 mac 213362 bytes_out 242320 213362 bytes_in 607636 213362 station_ip 5.119.101.12 213362 port 81 213362 unique_id port 213362 remote_ip 10.8.0.58 213363 username aminvpns6 213363 mac 213363 bytes_out 0 213363 bytes_in 0 213363 station_ip 5.120.138.71 213363 port 90 213363 unique_id port 213363 remote_ip 10.8.0.234 213365 username meysam 213365 mac 213365 bytes_out 2250341 213307 station_ip 5.120.170.36 213307 port 84 213307 unique_id port 213307 remote_ip 10.8.0.238 213308 username barzegar 213308 kill_reason Another user logged on this global unique id 213308 mac 213308 bytes_out 0 213308 bytes_in 0 213308 station_ip 5.119.221.217 213308 port 75 213308 unique_id port 213308 remote_ip 10.8.0.34 213309 username aminvpn 213309 mac 213309 bytes_out 171550 213309 bytes_in 280924 213309 station_ip 5.119.101.12 213309 port 81 213309 unique_id port 213309 remote_ip 10.8.0.58 213311 username mohammadjavad 213311 mac 213311 bytes_out 0 213311 bytes_in 0 213311 station_ip 83.123.195.246 213311 port 84 213311 unique_id port 213311 remote_ip 10.8.0.138 213313 username pourshad 213313 kill_reason Another user logged on this global unique id 213313 mac 213313 bytes_out 0 213313 bytes_in 0 213313 station_ip 5.120.54.100 213313 port 43 213313 unique_id port 213317 username pourshad 213317 kill_reason Another user logged on this global unique id 213317 mac 213317 bytes_out 0 213317 bytes_in 0 213317 station_ip 5.120.54.100 213317 port 43 213317 unique_id port 213319 username mirzaei6046 213319 kill_reason Another user logged on this global unique id 213319 mac 213319 bytes_out 0 213319 bytes_in 0 213319 station_ip 5.120.121.238 213319 port 41 213319 unique_id port 213320 username barzegar 213320 mac 213320 bytes_out 0 213320 bytes_in 0 213320 station_ip 5.119.221.217 213320 port 75 213320 unique_id port 213322 username kalantary6037 213322 mac 213322 bytes_out 0 213322 bytes_in 0 213322 station_ip 37.129.104.133 213322 port 51 213322 unique_id port 213322 remote_ip 10.8.1.98 213326 username jafari 213326 kill_reason Another user logged on this global unique id 213326 mac 213326 bytes_out 0 213326 bytes_in 0 213326 station_ip 5.134.142.234 213326 port 84 213326 unique_id port 213327 username meysam 213327 kill_reason Another user logged on this global unique id 213327 mac 213327 bytes_out 0 213327 bytes_in 0 213327 station_ip 188.159.251.54 213327 port 80 213327 unique_id port 213330 username yaghobi 213330 mac 213330 bytes_out 104552 213330 bytes_in 162254 213330 station_ip 37.129.145.15 213330 port 75 213330 unique_id port 213330 remote_ip 10.8.0.106 213331 username hamid.e 213331 kill_reason Maximum number of concurrent logins reached 213331 mac 213331 bytes_out 0 213331 bytes_in 0 213331 station_ip 37.27.4.122 213331 port 2 213331 unique_id port 213332 username hamid.e 213332 kill_reason Maximum number of concurrent logins reached 213332 mac 213332 bytes_out 0 213332 bytes_in 0 213332 station_ip 37.27.4.122 213332 port 2 213332 unique_id port 213336 username saeeddamghani 213336 mac 213336 bytes_out 0 213336 bytes_in 0 213336 station_ip 5.119.182.113 213336 port 82 213336 unique_id port 213336 remote_ip 10.8.0.162 213338 username hamid.e 213338 kill_reason Maximum number of concurrent logins reached 213338 mac 213338 bytes_out 0 213338 bytes_in 0 213338 station_ip 37.27.4.122 213338 port 2 213338 unique_id port 213340 username barzegar 213340 mac 213340 bytes_out 0 213340 bytes_in 0 213340 station_ip 5.119.221.217 213340 port 51 213340 unique_id port 213340 remote_ip 10.8.1.30 213344 username hamid.e 213344 mac 213344 bytes_out 0 213344 bytes_in 0 213344 station_ip 37.27.4.122 213344 port 1 213344 unique_id port 213344 remote_ip 10.8.0.2 213346 username hamid.e 213346 kill_reason Maximum number of concurrent logins reached 213346 mac 213346 bytes_out 0 213346 bytes_in 0 213346 station_ip 37.27.4.122 213346 port 2 213346 unique_id port 213347 username kalantary6037 213347 mac 213347 bytes_out 0 213347 bytes_in 0 213347 station_ip 37.129.93.1 213347 port 51 213347 unique_id port 213347 remote_ip 10.8.1.98 213349 username hamid.e 213349 kill_reason Maximum number of concurrent logins reached 213349 mac 213349 bytes_out 0 213349 bytes_in 0 213349 station_ip 37.27.4.122 213349 port 88 213349 unique_id port 213351 username hamid.e 213351 kill_reason Maximum number of concurrent logins reached 213351 mac 213351 bytes_out 0 213351 bytes_in 0 213351 station_ip 37.27.4.122 213351 port 80 213351 unique_id port 213353 username hamid.e 213353 kill_reason Maximum number of concurrent logins reached 213353 mac 213353 bytes_out 0 213353 bytes_in 0 213353 station_ip 37.27.4.122 213353 port 80 213353 unique_id port 213356 username hamid.e 213356 mac 213356 bytes_out 1689 213356 bytes_in 3753 213356 station_ip 37.27.4.122 213356 port 88 213356 unique_id port 213356 remote_ip 10.8.0.62 213357 username saeeddamghani 213357 mac 213357 bytes_out 0 213357 bytes_in 0 213357 station_ip 5.119.182.113 213357 port 87 213357 unique_id port 213357 remote_ip 10.8.0.162 213366 username hamid.e 213366 mac 213366 bytes_out 0 213366 bytes_in 0 213366 station_ip 37.27.0.201 213366 port 89 213366 unique_id port 213366 remote_ip 10.8.0.62 213367 username mostafa_es78 213367 mac 213367 bytes_out 455362 213367 bytes_in 5058055 213367 station_ip 178.236.35.96 213367 port 46 213367 unique_id port 213367 remote_ip 10.8.0.42 213369 username aminvpn 213369 mac 213369 bytes_out 122086 213369 bytes_in 195788 213369 station_ip 5.119.101.12 213369 port 81 213369 unique_id port 213369 remote_ip 10.8.0.58 213372 username saeeddamghani 213372 mac 213372 bytes_out 2459 213372 bytes_in 5206 213372 station_ip 5.119.182.113 213372 port 46 213372 unique_id port 213372 remote_ip 10.8.0.162 213374 username mhamidreza98 213374 unique_id port 213374 terminate_cause User-Request 213374 bytes_out 17414 213374 bytes_in 15152 213374 station_ip 46.225.214.107 213374 port 15728801 213374 nas_port_type Virtual 213374 remote_ip 5.5.5.252 213379 username barzegar 213379 mac 213379 bytes_out 0 213379 bytes_in 0 213379 station_ip 5.119.221.217 213379 port 80 213379 unique_id port 213379 remote_ip 10.8.0.34 213384 username jafari 213384 mac 213384 bytes_out 0 213384 bytes_in 0 213384 station_ip 5.134.142.234 213384 port 84 213384 unique_id port 213385 username farhad3 213385 mac 213385 bytes_out 0 213385 bytes_in 0 213385 station_ip 5.120.151.17 213385 port 53 213385 unique_id port 213385 remote_ip 10.8.1.86 213386 username barzegar 213386 mac 213386 bytes_out 0 213386 bytes_in 0 213386 station_ip 5.119.221.217 213386 port 54 213386 unique_id port 213386 remote_ip 10.8.1.30 213388 username yaghobi 213388 mac 213388 bytes_out 0 213388 bytes_in 0 213388 station_ip 37.129.241.123 213388 port 84 213388 unique_id port 213388 remote_ip 10.8.0.106 213389 username dorani4942 213389 mac 213389 bytes_out 0 213389 bytes_in 0 213389 station_ip 83.122.228.160 213389 port 53 213389 unique_id port 213389 remote_ip 10.8.1.118 213395 username barzegar8595 213395 mac 213395 bytes_out 0 213395 bytes_in 0 213395 station_ip 46.225.214.107 213395 port 51 213395 unique_id port 213395 remote_ip 10.8.1.26 213396 username arash 213396 mac 213396 bytes_out 1919718 213396 bytes_in 13011784 213396 station_ip 37.27.7.225 213396 port 80 213396 unique_id port 213396 remote_ip 10.8.0.206 213397 username soleymani5056 213397 mac 213397 bytes_out 237232 213397 bytes_in 2058129 213361 kill_reason Another user logged on this global unique id 213361 mac 213361 bytes_out 0 213361 bytes_in 0 213361 station_ip 5.134.142.234 213361 port 84 213361 unique_id port 213364 username aminvpns6 213364 mac 213364 bytes_out 0 213364 bytes_in 0 213364 station_ip 5.120.138.71 213364 port 1 213364 unique_id port 213364 remote_ip 10.8.0.2 213375 username barzegar 213375 mac 213375 bytes_out 7283 213375 bytes_in 8124 213375 station_ip 5.119.221.217 213375 port 46 213375 unique_id port 213375 remote_ip 10.8.0.34 213377 username hamid.e 213377 kill_reason Maximum number of concurrent logins reached 213377 mac 213377 bytes_out 0 213377 bytes_in 0 213377 station_ip 37.27.0.201 213377 port 2 213377 unique_id port 213378 username hamid.e 213378 kill_reason Maximum number of concurrent logins reached 213378 mac 213378 bytes_out 0 213378 bytes_in 0 213378 station_ip 37.27.0.201 213378 port 2 213378 unique_id port 213380 username jafari 213380 kill_reason Another user logged on this global unique id 213380 mac 213380 bytes_out 0 213380 bytes_in 0 213380 station_ip 5.134.142.234 213380 port 84 213380 unique_id port 213381 username farhad3 213381 mac 213381 bytes_out 0 213381 bytes_in 0 213381 station_ip 5.120.151.17 213381 port 52 213381 unique_id port 213381 remote_ip 10.8.1.86 213387 username kalantary6037 213387 mac 213387 bytes_out 0 213387 bytes_in 0 213387 station_ip 37.129.42.65 213387 port 52 213387 unique_id port 213387 remote_ip 10.8.1.98 213391 username dorani4942 213391 mac 213391 bytes_out 0 213391 bytes_in 0 213391 station_ip 83.122.228.160 213391 port 84 213391 unique_id port 213391 remote_ip 10.8.0.82 213393 username barzegar 213393 mac 213393 bytes_out 0 213393 bytes_in 0 213393 station_ip 5.119.221.217 213393 port 53 213393 unique_id port 213393 remote_ip 10.8.1.30 213398 username pourshad 213398 kill_reason Another user logged on this global unique id 213398 mac 213398 bytes_out 0 213398 bytes_in 0 213398 station_ip 5.120.54.100 213398 port 43 213398 unique_id port 213400 username barzegar 213400 mac 213400 bytes_out 0 213400 bytes_in 0 213400 station_ip 5.119.221.217 213400 port 80 213400 unique_id port 213400 remote_ip 10.8.0.34 213404 username barzegar 213404 mac 213404 bytes_out 0 213404 bytes_in 0 213404 station_ip 5.119.221.217 213404 port 80 213404 unique_id port 213404 remote_ip 10.8.0.34 213406 username godarzi 213406 kill_reason Another user logged on this global unique id 213406 mac 213406 bytes_out 0 213406 bytes_in 0 213406 station_ip 5.119.235.65 213406 port 81 213406 unique_id port 213406 remote_ip 10.8.0.74 213410 username kalantary6037 213410 mac 213410 bytes_out 0 213410 bytes_in 0 213410 station_ip 37.129.98.69 213410 port 51 213410 unique_id port 213410 remote_ip 10.8.1.98 213412 username kamali3 213412 mac 213412 bytes_out 23134745 213412 bytes_in 20786154 213412 station_ip 37.129.117.243 213412 port 50 213412 unique_id port 213412 remote_ip 10.8.0.182 213420 username arash 213420 mac 213420 bytes_out 811487 213420 bytes_in 5576071 213420 station_ip 37.27.7.225 213420 port 84 213420 unique_id port 213420 remote_ip 10.8.0.206 213422 username farhad3 213422 kill_reason Another user logged on this global unique id 213422 mac 213422 bytes_out 0 213422 bytes_in 0 213422 station_ip 5.120.151.17 213422 port 52 213422 unique_id port 213422 remote_ip 10.8.1.86 213424 username mohammadjavad 213424 mac 213424 bytes_out 1391959 213424 bytes_in 18569257 213424 station_ip 83.122.28.240 213424 port 88 213424 unique_id port 213365 bytes_in 23707662 213365 station_ip 188.159.251.54 213365 port 80 213365 unique_id port 213365 remote_ip 10.8.0.102 213368 username ahmadi1 213368 mac 213368 bytes_out 49788 213368 bytes_in 244672 213368 station_ip 83.122.196.207 213368 port 80 213368 unique_id port 213368 remote_ip 10.8.0.114 213370 username arash 213370 mac 213370 bytes_out 3338911 213370 bytes_in 31842398 213370 station_ip 37.27.7.225 213370 port 82 213370 unique_id port 213370 remote_ip 10.8.0.206 213371 username pourshad 213371 kill_reason Another user logged on this global unique id 213371 mac 213371 bytes_out 0 213371 bytes_in 0 213371 station_ip 5.120.54.100 213371 port 43 213371 unique_id port 213373 username saeeddamghani 213373 mac 213373 bytes_out 0 213373 bytes_in 0 213373 station_ip 5.119.182.113 213373 port 46 213373 unique_id port 213373 remote_ip 10.8.0.162 213376 username iranmanesh4443 213376 mac 213376 bytes_out 0 213376 bytes_in 0 213376 station_ip 5.119.190.250 213376 port 88 213376 unique_id port 213376 remote_ip 10.8.0.198 213382 username pourshad 213382 kill_reason Another user logged on this global unique id 213382 mac 213382 bytes_out 0 213382 bytes_in 0 213382 station_ip 5.120.54.100 213382 port 43 213382 unique_id port 213383 username hamid.e 213383 mac 213383 bytes_out 0 213383 bytes_in 0 213383 station_ip 37.27.0.201 213383 port 1 213383 unique_id port 213383 remote_ip 10.8.0.2 213390 username yarmohamadi7916 213390 kill_reason Another user logged on this global unique id 213390 mac 213390 bytes_out 0 213390 bytes_in 0 213390 station_ip 5.120.73.206 213390 port 87 213390 unique_id port 213390 remote_ip 10.8.0.214 213392 username pourshad 213392 kill_reason Another user logged on this global unique id 213392 mac 213392 bytes_out 0 213392 bytes_in 0 213392 station_ip 5.120.54.100 213392 port 43 213392 unique_id port 213394 username kharazmi2920 213394 mac 213394 bytes_out 0 213394 bytes_in 0 213394 station_ip 83.123.139.200 213394 port 82 213394 unique_id port 213394 remote_ip 10.8.0.54 213407 username mehrpoyan101 213407 mac 213407 bytes_out 534641 213407 bytes_in 1878880 213407 station_ip 5.120.155.72 213407 port 88 213407 unique_id port 213407 remote_ip 10.8.0.134 213408 username mehrpoyan101 213408 mac 213408 bytes_out 0 213408 bytes_in 0 213408 station_ip 5.120.137.197 213408 port 82 213408 unique_id port 213408 remote_ip 10.8.0.134 213409 username barzegar 213409 mac 213409 bytes_out 0 213409 bytes_in 0 213409 station_ip 5.119.221.217 213409 port 43 213409 unique_id port 213409 remote_ip 10.8.1.30 213414 username sabaghnezhad 213414 mac 213414 bytes_out 492764 213414 bytes_in 468374 213414 station_ip 37.129.146.140 213414 port 75 213414 unique_id port 213414 remote_ip 10.8.0.94 213416 username mehrpoyan101 213416 mac 213416 bytes_out 1175189 213416 bytes_in 5578344 213416 station_ip 5.120.122.75 213416 port 88 213416 unique_id port 213416 remote_ip 10.8.0.134 213417 username barzegar 213417 mac 213417 bytes_out 0 213417 bytes_in 0 213417 station_ip 5.119.221.217 213417 port 88 213417 unique_id port 213417 remote_ip 10.8.0.34 213423 username mehrpoyan101 213423 mac 213423 bytes_out 742415 213423 bytes_in 4561324 213423 station_ip 5.119.117.215 213423 port 75 213423 unique_id port 213423 remote_ip 10.8.0.134 213425 username godarzi 213425 mac 213425 bytes_out 0 213425 bytes_in 0 213425 station_ip 5.119.235.65 213425 port 81 213425 unique_id port 213429 username mehrpoyan101 213429 mac 213429 bytes_out 45312 213397 station_ip 5.119.171.214 213397 port 82 213397 unique_id port 213397 remote_ip 10.8.0.246 213399 username mehrpoyan101 213399 mac 213399 bytes_out 0 213399 bytes_in 0 213399 station_ip 5.119.157.29 213399 port 84 213399 unique_id port 213399 remote_ip 10.8.0.134 213401 username meysam 213401 mac 213401 bytes_out 15702 213401 bytes_in 17406 213401 station_ip 188.159.251.54 213401 port 82 213401 unique_id port 213401 remote_ip 10.8.0.102 213402 username barzegar8595 213402 mac 213402 bytes_out 0 213402 bytes_in 0 213402 station_ip 46.225.208.18 213402 port 51 213402 unique_id port 213402 remote_ip 10.8.1.26 213403 username barzegar8595 213403 mac 213403 bytes_out 0 213403 bytes_in 0 213403 station_ip 46.225.209.207 213403 port 53 213403 unique_id port 213403 remote_ip 10.8.1.26 213405 username pourshad 213405 mac 213405 bytes_out 0 213405 bytes_in 0 213405 station_ip 5.120.54.100 213405 port 43 213405 unique_id port 213411 username pourshad 213411 kill_reason Another user logged on this global unique id 213411 mac 213411 bytes_out 0 213411 bytes_in 0 213411 station_ip 5.120.54.100 213411 port 80 213411 unique_id port 213411 remote_ip 10.8.0.122 213413 username pourshad 213413 mac 213413 bytes_out 0 213413 bytes_in 0 213413 station_ip 5.120.54.100 213413 port 80 213413 unique_id port 213415 username barzegar8595 213415 mac 213415 bytes_out 0 213415 bytes_in 0 213415 station_ip 46.225.212.175 213415 port 53 213415 unique_id port 213415 remote_ip 10.8.1.26 213418 username barzegar 213418 mac 213418 bytes_out 0 213418 bytes_in 0 213418 station_ip 5.119.221.217 213418 port 89 213418 unique_id port 213418 remote_ip 10.8.0.34 213419 username barzegar 213419 mac 213419 bytes_out 0 213419 bytes_in 0 213419 station_ip 5.119.221.217 213419 port 89 213419 unique_id port 213419 remote_ip 10.8.0.34 213421 username kalantary6037 213421 mac 213421 bytes_out 487894 213421 bytes_in 5942913 213421 station_ip 37.129.98.69 213421 port 43 213421 unique_id port 213421 remote_ip 10.8.1.98 213428 username meysam 213428 mac 213428 bytes_out 850988 213428 bytes_in 11338442 213428 station_ip 188.159.251.54 213428 port 84 213428 unique_id port 213428 remote_ip 10.8.0.102 213432 username mehrpoyan101 213432 mac 213432 bytes_out 229293 213432 bytes_in 1003968 213432 station_ip 5.120.180.248 213432 port 84 213432 unique_id port 213432 remote_ip 10.8.0.134 213435 username farhad3 213435 kill_reason Another user logged on this global unique id 213435 mac 213435 bytes_out 0 213435 bytes_in 0 213435 station_ip 5.120.151.17 213435 port 52 213435 unique_id port 213436 username yarmohamadi7916 213436 kill_reason Another user logged on this global unique id 213436 mac 213436 bytes_out 0 213436 bytes_in 0 213436 station_ip 5.120.73.206 213436 port 87 213436 unique_id port 213437 username mehrpoyan101 213437 mac 213437 bytes_out 325714 213437 bytes_in 1522263 213437 station_ip 5.120.100.67 213437 port 75 213437 unique_id port 213437 remote_ip 10.8.0.134 213438 username barzegar 213438 mac 213438 bytes_out 0 213438 bytes_in 0 213438 station_ip 5.119.221.217 213438 port 43 213438 unique_id port 213438 remote_ip 10.8.1.30 213439 username mehrpoyan101 213439 mac 213439 bytes_out 2258 213439 bytes_in 4198 213439 station_ip 5.120.123.147 213439 port 75 213439 unique_id port 213439 remote_ip 10.8.0.134 213441 username aminvpn 213441 mac 213441 bytes_out 1582176 213441 bytes_in 8577677 213441 station_ip 83.123.22.64 213441 port 46 213424 remote_ip 10.8.0.138 213426 username mehrpoyan101 213426 mac 213426 bytes_out 0 213426 bytes_in 0 213426 station_ip 5.120.24.79 213426 port 89 213426 unique_id port 213426 remote_ip 10.8.0.134 213427 username yarmohamadi7916 213427 kill_reason Another user logged on this global unique id 213427 mac 213427 bytes_out 0 213427 bytes_in 0 213427 station_ip 5.120.73.206 213427 port 87 213427 unique_id port 213430 username barzegar 213430 mac 213430 bytes_out 0 213430 bytes_in 0 213430 station_ip 5.119.221.217 213430 port 43 213430 unique_id port 213430 remote_ip 10.8.1.30 213433 username arash 213433 mac 213433 bytes_out 1282004 213433 bytes_in 11481688 213433 station_ip 37.27.7.225 213433 port 75 213433 unique_id port 213433 remote_ip 10.8.0.206 213440 username yarmohamadi7916 213440 kill_reason Another user logged on this global unique id 213440 mac 213440 bytes_out 0 213440 bytes_in 0 213440 station_ip 5.120.73.206 213440 port 87 213440 unique_id port 213442 username kalantary6037 213442 mac 213442 bytes_out 610175 213442 bytes_in 4731967 213442 station_ip 37.129.98.69 213442 port 81 213442 unique_id port 213442 remote_ip 10.8.0.18 213444 username mehrpoyan101 213444 mac 213444 bytes_out 158199 213444 bytes_in 484779 213444 station_ip 5.120.4.251 213444 port 84 213444 unique_id port 213444 remote_ip 10.8.0.134 213449 username barzegar 213449 mac 213449 bytes_out 0 213449 bytes_in 0 213449 station_ip 5.119.221.217 213449 port 75 213449 unique_id port 213449 remote_ip 10.8.0.34 213452 username yaghobi 213452 mac 213452 bytes_out 0 213452 bytes_in 0 213452 station_ip 37.129.176.127 213452 port 75 213452 unique_id port 213452 remote_ip 10.8.0.106 213454 username yarmohamadi7916 213454 kill_reason Another user logged on this global unique id 213454 mac 213454 bytes_out 0 213454 bytes_in 0 213454 station_ip 5.120.73.206 213454 port 87 213454 unique_id port 213455 username farhad3 213455 kill_reason Another user logged on this global unique id 213455 mac 213455 bytes_out 0 213455 bytes_in 0 213455 station_ip 5.120.151.17 213455 port 52 213455 unique_id port 213457 username yaghobi 213457 mac 213457 bytes_out 103333 213457 bytes_in 46414 213457 station_ip 37.129.176.127 213457 port 81 213457 unique_id port 213457 remote_ip 10.8.0.106 213459 username yarmohamadi7916 213459 kill_reason Another user logged on this global unique id 213459 mac 213459 bytes_out 0 213459 bytes_in 0 213459 station_ip 5.120.73.206 213459 port 87 213459 unique_id port 213463 username hamid.e 213463 kill_reason Maximum number of concurrent logins reached 213463 mac 213463 bytes_out 0 213463 bytes_in 0 213463 station_ip 37.27.0.201 213463 port 1 213463 unique_id port 213466 username hamid.e 213466 kill_reason Maximum number of concurrent logins reached 213466 mac 213466 bytes_out 0 213466 bytes_in 0 213466 station_ip 37.27.0.201 213466 port 75 213466 unique_id port 213469 username farhad3 213469 mac 213469 bytes_out 0 213469 bytes_in 0 213469 station_ip 5.120.151.17 213469 port 52 213469 unique_id port 213471 username yaghobi 213471 mac 213471 bytes_out 53228 213471 bytes_in 107417 213471 station_ip 37.129.176.127 213471 port 43 213471 unique_id port 213471 remote_ip 10.8.1.106 213473 username barzegar 213473 mac 213473 bytes_out 2522 213473 bytes_in 4762 213473 station_ip 5.119.221.217 213473 port 50 213473 unique_id port 213473 remote_ip 10.8.0.34 213478 username kamali3 213478 mac 213478 bytes_out 36610 213478 bytes_in 66937 213478 station_ip 37.129.117.243 213478 port 50 213478 unique_id port 213429 bytes_in 109742 213429 station_ip 5.120.24.79 213429 port 81 213429 unique_id port 213429 remote_ip 10.8.0.134 213431 username yarmohamadi7916 213431 kill_reason Another user logged on this global unique id 213431 mac 213431 bytes_out 0 213431 bytes_in 0 213431 station_ip 5.120.73.206 213431 port 87 213431 unique_id port 213434 username mehrpoyan101 213434 mac 213434 bytes_out 279229 213434 bytes_in 1460291 213434 station_ip 5.119.240.207 213434 port 81 213434 unique_id port 213434 remote_ip 10.8.0.134 213445 username mhamidreza98 213445 unique_id port 213445 terminate_cause User-Request 213445 bytes_out 403164 213445 bytes_in 1809574 213445 station_ip 46.225.209.248 213445 port 15728803 213445 nas_port_type Virtual 213445 remote_ip 5.5.5.251 213456 username sabaghnezhad 213456 mac 213456 bytes_out 302551 213456 bytes_in 2836901 213456 station_ip 37.129.229.84 213456 port 80 213456 unique_id port 213456 remote_ip 10.8.0.94 213458 username mehrpoyan101 213458 mac 213458 bytes_out 533819 213458 bytes_in 2052737 213458 station_ip 5.120.168.91 213458 port 75 213458 unique_id port 213458 remote_ip 10.8.0.134 213460 username hamid.e 213460 kill_reason Maximum number of concurrent logins reached 213460 unique_id port 213460 bytes_out 0 213460 bytes_in 0 213460 station_ip 37.27.0.201 213460 port 15728805 213460 nas_port_type Virtual 213462 username mehrpoyan101 213462 mac 213462 bytes_out 2676 213462 bytes_in 6860 213462 station_ip 5.119.200.85 213462 port 81 213462 unique_id port 213462 remote_ip 10.8.0.134 213475 username pourshad 213475 kill_reason Another user logged on this global unique id 213475 mac 213475 bytes_out 0 213475 bytes_in 0 213475 station_ip 5.120.54.100 213475 port 51 213475 unique_id port 213475 remote_ip 10.8.1.10 213477 username mehrpoyan101 213477 mac 213477 bytes_out 493264 213477 bytes_in 1957255 213477 station_ip 5.119.58.24 213477 port 46 213477 unique_id port 213477 remote_ip 10.8.0.134 213481 username kamali3 213481 mac 213481 bytes_out 264652 213481 bytes_in 2035453 213481 station_ip 37.129.117.243 213481 port 46 213481 unique_id port 213481 remote_ip 10.8.0.182 213484 username soleymani5056 213484 mac 213484 bytes_out 83429 213484 bytes_in 634590 213484 station_ip 5.119.38.175 213484 port 50 213484 unique_id port 213484 remote_ip 10.8.0.246 213488 username kamali3 213488 mac 213488 bytes_out 40286 213488 bytes_in 63800 213488 station_ip 37.129.117.243 213488 port 82 213488 unique_id port 213488 remote_ip 10.8.0.182 213494 username barzegar8595 213494 kill_reason Maximum number of concurrent logins reached 213494 mac 213494 bytes_out 0 213494 bytes_in 0 213494 station_ip 46.225.211.202 213494 port 46 213494 unique_id port 213496 username barzegar8595 213496 mac 213496 bytes_out 0 213496 bytes_in 0 213496 station_ip 46.225.209.248 213496 port 90 213496 unique_id port 213500 username barzegar8595 213500 unique_id port 213500 terminate_cause User-Request 213500 bytes_out 9649112 213500 bytes_in 94235100 213500 station_ip 5.120.175.136 213500 port 15728796 213500 nas_port_type Virtual 213500 remote_ip 5.5.5.255 213506 username meysam 213506 mac 213506 bytes_out 2266064 213506 bytes_in 31669787 213506 station_ip 188.159.251.54 213506 port 46 213506 unique_id port 213506 remote_ip 10.8.0.102 213510 username barzegar 213510 mac 213510 bytes_out 0 213510 bytes_in 0 213510 station_ip 5.119.221.217 213510 port 53 213510 unique_id port 213510 remote_ip 10.8.1.30 213521 username pourshad 213521 mac 213521 bytes_out 0 213521 bytes_in 0 213521 station_ip 5.120.54.100 213521 port 52 213441 unique_id port 213441 remote_ip 10.8.0.58 213443 username pourshad 213443 kill_reason Another user logged on this global unique id 213443 mac 213443 bytes_out 0 213443 bytes_in 0 213443 station_ip 5.120.54.100 213443 port 50 213443 unique_id port 213443 remote_ip 10.8.0.122 213446 username hamid.e 213446 mac 213446 bytes_out 0 213446 bytes_in 0 213446 station_ip 37.27.0.201 213446 port 75 213446 unique_id port 213446 remote_ip 10.8.0.62 213447 username mirzaei6046 213447 kill_reason Another user logged on this global unique id 213447 mac 213447 bytes_out 0 213447 bytes_in 0 213447 station_ip 5.120.121.238 213447 port 41 213447 unique_id port 213448 username hamid.e 213448 mac 213448 bytes_out 1689 213448 bytes_in 4082 213448 station_ip 37.27.0.201 213448 port 75 213448 unique_id port 213448 remote_ip 10.8.0.62 213450 username yaghobi 213450 mac 213450 bytes_out 0 213450 bytes_in 0 213450 station_ip 37.129.176.127 213450 port 81 213450 unique_id port 213450 remote_ip 10.8.0.106 213451 username pourshad 213451 kill_reason Another user logged on this global unique id 213451 mac 213451 bytes_out 0 213451 bytes_in 0 213451 station_ip 5.120.54.100 213451 port 50 213451 unique_id port 213453 username mehrpoyan101 213453 mac 213453 bytes_out 586429 213453 bytes_in 3651720 213453 station_ip 5.120.166.9 213453 port 46 213453 unique_id port 213453 remote_ip 10.8.0.134 213461 username barzegar 213461 mac 213461 bytes_out 0 213461 bytes_in 0 213461 station_ip 5.119.221.217 213461 port 51 213461 unique_id port 213461 remote_ip 10.8.1.30 213464 username hamid.e 213464 kill_reason Maximum number of concurrent logins reached 213464 mac 213464 bytes_out 0 213464 bytes_in 0 213464 station_ip 37.27.0.201 213464 port 1 213464 unique_id port 213465 username hamid.e 213465 kill_reason Maximum number of concurrent logins reached 213465 mac 213465 bytes_out 0 213465 bytes_in 0 213465 station_ip 37.27.0.201 213465 port 1 213465 unique_id port 213467 username hamid.e 213467 mac 213467 bytes_out 26101 213467 bytes_in 5984 213467 station_ip 37.27.0.201 213467 port 80 213467 unique_id port 213467 remote_ip 10.8.0.62 213468 username dortaj3792 213468 mac 213468 bytes_out 329497 213468 bytes_in 779875 213468 station_ip 5.119.215.225 213468 port 46 213468 unique_id port 213468 remote_ip 10.8.0.10 213470 username pourshad 213470 mac 213470 bytes_out 0 213470 bytes_in 0 213470 station_ip 5.120.54.100 213470 port 50 213470 unique_id port 213472 username yarmohamadi7916 213472 kill_reason Another user logged on this global unique id 213472 mac 213472 bytes_out 0 213472 bytes_in 0 213472 station_ip 5.120.73.206 213472 port 87 213472 unique_id port 213474 username barzegar 213474 mac 213474 bytes_out 3265 213474 bytes_in 4942 213474 station_ip 5.119.221.217 213474 port 50 213474 unique_id port 213474 remote_ip 10.8.0.34 213476 username kamali3 213476 mac 213476 bytes_out 264465 213476 bytes_in 487977 213476 station_ip 37.129.117.243 213476 port 82 213476 unique_id port 213476 remote_ip 10.8.0.182 213479 username mehrpoyan101 213479 mac 213479 bytes_out 39571 213479 bytes_in 106457 213479 station_ip 5.120.162.201 213479 port 82 213479 unique_id port 213479 remote_ip 10.8.0.134 213480 username kalantary6037 213480 mac 213480 bytes_out 3311496 213480 bytes_in 44760458 213480 station_ip 37.129.80.161 213480 port 75 213480 unique_id port 213480 remote_ip 10.8.0.18 213482 username mhamidreza98 213482 unique_id port 213482 terminate_cause User-Request 213482 bytes_out 1773959 213482 bytes_in 23980534 213478 remote_ip 10.8.0.182 213483 username farhad3 213483 mac 213483 bytes_out 0 213483 bytes_in 0 213483 station_ip 5.120.151.17 213483 port 43 213483 unique_id port 213483 remote_ip 10.8.1.86 213490 username barzegar8595 213490 kill_reason Another user logged on this global unique id 213490 mac 213490 bytes_out 0 213490 bytes_in 0 213490 station_ip 46.225.209.248 213490 port 90 213490 unique_id port 213490 remote_ip 10.8.0.170 213491 username pourshad 213491 mac 213491 bytes_out 0 213491 bytes_in 0 213491 station_ip 5.120.54.100 213491 port 51 213491 unique_id port 213492 username kalantary6037 213492 mac 213492 bytes_out 1362333 213492 bytes_in 14107008 213492 station_ip 37.129.80.161 213492 port 50 213492 unique_id port 213492 remote_ip 10.8.0.18 213498 username kamali3 213498 mac 213498 bytes_out 0 213498 bytes_in 0 213498 station_ip 37.129.117.243 213498 port 51 213498 unique_id port 213498 remote_ip 10.8.1.206 213501 username pourshad 213501 mac 213501 bytes_out 0 213501 bytes_in 0 213501 station_ip 5.120.54.100 213501 port 82 213501 unique_id port 213503 username yarmohamadi7916 213503 kill_reason Another user logged on this global unique id 213503 mac 213503 bytes_out 0 213503 bytes_in 0 213503 station_ip 5.120.73.206 213503 port 87 213503 unique_id port 213508 username mohammadjavad 213508 kill_reason Another user logged on this global unique id 213508 mac 213508 bytes_out 0 213508 bytes_in 0 213508 station_ip 37.129.216.8 213508 port 75 213508 unique_id port 213508 remote_ip 10.8.0.138 213511 username yarmohamadi7916 213511 kill_reason Another user logged on this global unique id 213511 mac 213511 bytes_out 0 213511 bytes_in 0 213511 station_ip 5.120.73.206 213511 port 87 213511 unique_id port 213515 username dortaj3792 213515 mac 213515 bytes_out 1026572 213515 bytes_in 3098119 213515 station_ip 5.119.215.225 213515 port 81 213515 unique_id port 213515 remote_ip 10.8.0.10 213516 username safari2994 213516 mac 213516 bytes_out 10323 213516 bytes_in 28102 213516 station_ip 5.119.101.248 213516 port 80 213516 unique_id port 213516 remote_ip 10.8.0.118 213517 username farhad3 213517 mac 213517 bytes_out 0 213517 bytes_in 0 213517 station_ip 5.120.151.17 213517 port 43 213517 unique_id port 213518 username nilufarrajaei 213518 mac 213518 bytes_out 0 213518 bytes_in 0 213518 station_ip 83.123.181.169 213518 port 53 213518 unique_id port 213518 remote_ip 10.8.1.126 213520 username godarzi 213520 mac 213520 bytes_out 11954155 213520 bytes_in 11214684 213520 station_ip 5.119.235.65 213520 port 82 213520 unique_id port 213520 remote_ip 10.8.0.74 213523 username mohammadjavad 213523 kill_reason Another user logged on this global unique id 213523 mac 213523 bytes_out 0 213523 bytes_in 0 213523 station_ip 37.129.216.8 213523 port 75 213523 unique_id port 213526 username godarzi 213526 mac 213526 bytes_out 275212 213526 bytes_in 2665491 213526 station_ip 5.119.235.65 213526 port 82 213526 unique_id port 213526 remote_ip 10.8.0.74 213527 username morteza4424 213527 mac 213527 bytes_out 1027178 213527 bytes_in 13968058 213527 station_ip 37.129.32.90 213527 port 81 213527 unique_id port 213527 remote_ip 10.8.0.150 213532 username soleymani5056 213532 mac 213532 bytes_out 3692 213532 bytes_in 4189 213532 station_ip 5.119.179.238 213532 port 75 213532 unique_id port 213532 remote_ip 10.8.0.246 213535 username kalantary6037 213535 mac 213535 bytes_out 0 213535 bytes_in 0 213535 station_ip 37.129.8.185 213535 port 46 213535 unique_id port 213536 username godarzi 213482 station_ip 46.225.209.248 213482 port 15728804 213482 nas_port_type Virtual 213482 remote_ip 5.5.5.251 213485 username yarmohamadi7916 213485 kill_reason Another user logged on this global unique id 213485 mac 213485 bytes_out 0 213485 bytes_in 0 213485 station_ip 5.120.73.206 213485 port 87 213485 unique_id port 213486 username farhad3 213486 mac 213486 bytes_out 0 213486 bytes_in 0 213486 station_ip 5.120.151.17 213486 port 43 213486 unique_id port 213486 remote_ip 10.8.1.86 213487 username pourshad 213487 kill_reason Another user logged on this global unique id 213487 mac 213487 bytes_out 0 213487 bytes_in 0 213487 station_ip 5.120.54.100 213487 port 51 213487 unique_id port 213489 username barzegar 213489 mac 213489 bytes_out 0 213489 bytes_in 0 213489 station_ip 5.119.221.217 213489 port 52 213489 unique_id port 213489 remote_ip 10.8.1.30 213493 username kamali3 213493 mac 213493 bytes_out 111282 213493 bytes_in 166075 213493 station_ip 37.129.117.243 213493 port 46 213493 unique_id port 213493 remote_ip 10.8.0.182 213495 username yaghobi 213495 mac 213495 bytes_out 331031 213495 bytes_in 1372579 213495 station_ip 37.129.176.127 213495 port 80 213495 unique_id port 213495 remote_ip 10.8.0.106 213497 username barzegar 213497 mac 213497 bytes_out 0 213497 bytes_in 0 213497 station_ip 5.119.221.217 213497 port 80 213497 unique_id port 213497 remote_ip 10.8.0.34 213499 username pourshad 213499 kill_reason Another user logged on this global unique id 213499 mac 213499 bytes_out 0 213499 bytes_in 0 213499 station_ip 5.120.54.100 213499 port 82 213499 unique_id port 213499 remote_ip 10.8.0.122 213502 username godarzi 213502 mac 213502 bytes_out 2488382 213502 bytes_in 9121761 213502 station_ip 5.119.235.65 213502 port 88 213502 unique_id port 213502 remote_ip 10.8.0.74 213504 username mirzaei6046 213504 kill_reason Another user logged on this global unique id 213504 mac 213504 bytes_out 0 213504 bytes_in 0 213504 station_ip 5.120.121.238 213504 port 41 213504 unique_id port 213505 username mostafa_es78 213505 mac 213505 bytes_out 828395 213505 bytes_in 8806604 213505 station_ip 113.203.77.2 213505 port 84 213505 unique_id port 213505 remote_ip 10.8.0.42 213507 username kalantary6037 213507 mac 213507 bytes_out 314522 213507 bytes_in 968715 213507 station_ip 37.129.80.161 213507 port 80 213507 unique_id port 213507 remote_ip 10.8.0.18 213509 username mhamidreza98 213509 unique_id port 213509 terminate_cause User-Request 213509 bytes_out 1357736 213509 bytes_in 1142771 213509 station_ip 46.225.211.202 213509 port 15728808 213509 nas_port_type Virtual 213509 remote_ip 5.5.5.248 213512 username nilufarrajaei 213512 mac 213512 bytes_out 905105 213512 bytes_in 4495730 213512 station_ip 83.123.181.169 213512 port 50 213512 unique_id port 213512 remote_ip 10.8.0.50 213513 username farhad3 213513 kill_reason Another user logged on this global unique id 213513 mac 213513 bytes_out 0 213513 bytes_in 0 213513 station_ip 5.120.151.17 213513 port 43 213513 unique_id port 213513 remote_ip 10.8.1.86 213514 username safari2994 213514 mac 213514 bytes_out 24489 213514 bytes_in 20066 213514 station_ip 5.119.101.248 213514 port 46 213514 unique_id port 213514 remote_ip 10.8.0.118 213519 username barzegar 213519 mac 213519 bytes_out 0 213519 bytes_in 0 213519 station_ip 5.119.221.217 213519 port 81 213519 unique_id port 213519 remote_ip 10.8.0.34 213522 username meysam 213522 mac 213522 bytes_out 1594107 213522 bytes_in 21414059 213522 station_ip 188.159.251.54 213522 port 46 213522 unique_id port 213521 unique_id port 213521 remote_ip 10.8.1.10 213524 username yaghobi 213524 mac 213524 bytes_out 0 213524 bytes_in 0 213524 station_ip 37.129.113.238 213524 port 43 213524 unique_id port 213524 remote_ip 10.8.1.106 213530 username meysam 213530 mac 213530 bytes_out 417788 213530 bytes_in 5136194 213530 station_ip 188.159.251.54 213530 port 81 213530 unique_id port 213530 remote_ip 10.8.0.102 213538 username farhad3 213538 mac 213538 bytes_out 0 213538 bytes_in 0 213538 station_ip 5.120.151.17 213538 port 52 213538 unique_id port 213538 remote_ip 10.8.1.86 213540 username yarmohamadi7916 213540 kill_reason Another user logged on this global unique id 213540 mac 213540 bytes_out 0 213540 bytes_in 0 213540 station_ip 5.120.73.206 213540 port 87 213540 unique_id port 213542 username godarzi 213542 mac 213542 bytes_out 118332 213542 bytes_in 1025010 213542 station_ip 5.119.235.65 213542 port 84 213542 unique_id port 213542 remote_ip 10.8.0.74 213545 username charkhandaz3496 213545 mac 213545 bytes_out 174554 213545 bytes_in 793724 213545 station_ip 5.119.51.22 213545 port 80 213545 unique_id port 213545 remote_ip 10.8.0.218 213546 username yarmohamadi7916 213546 kill_reason Another user logged on this global unique id 213546 mac 213546 bytes_out 0 213546 bytes_in 0 213546 station_ip 5.120.73.206 213546 port 87 213546 unique_id port 213550 username barzegar 213550 mac 213550 bytes_out 0 213550 bytes_in 0 213550 station_ip 5.119.221.217 213550 port 81 213550 unique_id port 213550 remote_ip 10.8.0.34 213551 username nilufarrajaei 213551 mac 213551 bytes_out 0 213551 bytes_in 0 213551 station_ip 83.123.181.169 213551 port 52 213551 unique_id port 213551 remote_ip 10.8.1.126 213554 username farhad3 213554 mac 213554 bytes_out 0 213554 bytes_in 0 213554 station_ip 5.120.151.17 213554 port 53 213554 unique_id port 213554 remote_ip 10.8.1.86 213555 username morteza4424 213555 mac 213555 bytes_out 0 213555 bytes_in 0 213555 station_ip 37.129.211.150 213555 port 81 213555 unique_id port 213555 remote_ip 10.8.0.150 213556 username morteza4424 213556 mac 213556 bytes_out 0 213556 bytes_in 0 213556 station_ip 37.129.211.150 213556 port 88 213556 unique_id port 213556 remote_ip 10.8.0.150 213562 username barzegar 213562 mac 213562 bytes_out 0 213562 bytes_in 0 213562 station_ip 5.119.221.217 213562 port 81 213562 unique_id port 213562 remote_ip 10.8.0.34 213565 username yarmohamadi7916 213565 kill_reason Another user logged on this global unique id 213565 mac 213565 bytes_out 0 213565 bytes_in 0 213565 station_ip 5.120.73.206 213565 port 87 213565 unique_id port 213566 username morteza4424 213566 mac 213566 bytes_out 0 213566 bytes_in 0 213566 station_ip 37.129.211.150 213566 port 52 213566 unique_id port 213566 remote_ip 10.8.1.42 213567 username sabaghnezhad 213567 mac 213567 bytes_out 148201 213567 bytes_in 1628967 213567 station_ip 37.129.73.99 213567 port 84 213567 unique_id port 213567 remote_ip 10.8.0.94 213574 username nilufarrajaei 213574 mac 213574 bytes_out 0 213574 bytes_in 0 213574 station_ip 83.123.181.169 213574 port 53 213574 unique_id port 213574 remote_ip 10.8.1.126 213579 username morteza4424 213579 mac 213579 bytes_out 0 213579 bytes_in 0 213579 station_ip 37.129.211.150 213579 port 53 213579 unique_id port 213579 remote_ip 10.8.1.42 213580 username khaleghi2406 213580 mac 213580 bytes_out 609819 213580 bytes_in 6523119 213580 station_ip 37.129.143.200 213580 port 84 213580 unique_id port 213522 remote_ip 10.8.0.102 213525 username mohammadjavad 213525 mac 213525 bytes_out 0 213525 bytes_in 0 213525 station_ip 37.129.216.8 213525 port 75 213525 unique_id port 213528 username hamid.e 213528 unique_id port 213528 terminate_cause Lost-Carrier 213528 bytes_out 2348847 213528 bytes_in 23138460 213528 station_ip 37.27.0.201 213528 port 15728807 213528 nas_port_type Virtual 213528 remote_ip 5.5.5.249 213529 username barzegar 213529 mac 213529 bytes_out 0 213529 bytes_in 0 213529 station_ip 5.119.221.217 213529 port 82 213529 unique_id port 213529 remote_ip 10.8.0.34 213531 username godarzi 213531 mac 213531 bytes_out 64193 213531 bytes_in 245176 213531 station_ip 5.119.235.65 213531 port 75 213531 unique_id port 213531 remote_ip 10.8.0.74 213533 username godarzi 213533 mac 213533 bytes_out 11933 213533 bytes_in 15507 213533 station_ip 5.119.235.65 213533 port 81 213533 unique_id port 213533 remote_ip 10.8.0.74 213534 username kalantary6037 213534 kill_reason Another user logged on this global unique id 213534 mac 213534 bytes_out 0 213534 bytes_in 0 213534 station_ip 37.129.8.185 213534 port 46 213534 unique_id port 213534 remote_ip 10.8.0.18 213541 username barzegar 213541 mac 213541 bytes_out 0 213541 bytes_in 0 213541 station_ip 5.119.221.217 213541 port 52 213541 unique_id port 213541 remote_ip 10.8.1.30 213543 username nilufarrajaei 213543 mac 213543 bytes_out 724030 213543 bytes_in 9576785 213543 station_ip 83.123.181.169 213543 port 80 213543 unique_id port 213543 remote_ip 10.8.0.50 213548 username morteza4424 213548 mac 213548 bytes_out 56344 213548 bytes_in 298454 213548 station_ip 37.129.211.150 213548 port 81 213548 unique_id port 213548 remote_ip 10.8.0.150 213549 username yarmohamadi7916 213549 kill_reason Another user logged on this global unique id 213549 mac 213549 bytes_out 0 213549 bytes_in 0 213549 station_ip 5.120.73.206 213549 port 87 213549 unique_id port 213552 username yarmohamadi7916 213552 kill_reason Another user logged on this global unique id 213552 mac 213552 bytes_out 0 213552 bytes_in 0 213552 station_ip 5.120.73.206 213552 port 87 213552 unique_id port 213559 username nilufarrajaei 213559 mac 213559 bytes_out 0 213559 bytes_in 0 213559 station_ip 83.123.181.169 213559 port 52 213559 unique_id port 213559 remote_ip 10.8.1.126 213564 username morteza4424 213564 mac 213564 bytes_out 0 213564 bytes_in 0 213564 station_ip 37.129.211.150 213564 port 52 213564 unique_id port 213564 remote_ip 10.8.1.42 213570 username kalantary6037 213570 mac 213570 bytes_out 36903 213570 bytes_in 55793 213570 station_ip 37.129.7.45 213570 port 82 213570 unique_id port 213570 remote_ip 10.8.0.18 213572 username morteza4424 213572 mac 213572 bytes_out 0 213572 bytes_in 0 213572 station_ip 37.129.211.150 213572 port 88 213572 unique_id port 213572 remote_ip 10.8.0.150 213573 username morteza4424 213573 mac 213573 bytes_out 0 213573 bytes_in 0 213573 station_ip 37.129.211.150 213573 port 88 213573 unique_id port 213573 remote_ip 10.8.0.150 213576 username morteza4424 213576 mac 213576 bytes_out 0 213576 bytes_in 0 213576 station_ip 37.129.211.150 213576 port 53 213576 unique_id port 213576 remote_ip 10.8.1.42 213578 username mirzaei6046 213578 kill_reason Another user logged on this global unique id 213578 mac 213578 bytes_out 0 213578 bytes_in 0 213578 station_ip 5.120.121.238 213578 port 41 213578 unique_id port 213581 username morteza4424 213581 mac 213581 bytes_out 0 213581 bytes_in 0 213581 station_ip 37.129.211.150 213581 port 90 213536 mac 213536 bytes_out 376080 213536 bytes_in 3675774 213536 station_ip 5.119.235.65 213536 port 81 213536 unique_id port 213536 remote_ip 10.8.0.74 213537 username barzegar 213537 mac 213537 bytes_out 0 213537 bytes_in 0 213537 station_ip 5.119.221.217 213537 port 81 213537 unique_id port 213537 remote_ip 10.8.0.34 213539 username nilufarrajaei 213539 mac 213539 bytes_out 1344661 213539 bytes_in 3278592 213539 station_ip 83.123.181.169 213539 port 80 213539 unique_id port 213539 remote_ip 10.8.0.50 213544 username kalantary6037 213544 mac 213544 bytes_out 632127 213544 bytes_in 5870170 213544 station_ip 37.129.8.185 213544 port 82 213544 unique_id port 213544 remote_ip 10.8.0.18 213547 username mohammadjavad 213547 mac 213547 bytes_out 0 213547 bytes_in 0 213547 station_ip 37.129.150.188 213547 port 81 213547 unique_id port 213547 remote_ip 10.8.0.138 213553 username khaleghi2406 213553 mac 213553 bytes_out 0 213553 bytes_in 0 213553 station_ip 37.129.143.200 213553 port 88 213553 unique_id port 213553 remote_ip 10.8.0.22 213557 username morteza4424 213557 mac 213557 bytes_out 0 213557 bytes_in 0 213557 station_ip 37.129.211.150 213557 port 81 213557 unique_id port 213557 remote_ip 10.8.0.150 213558 username morteza4424 213558 mac 213558 bytes_out 0 213558 bytes_in 0 213558 station_ip 37.129.211.150 213558 port 81 213558 unique_id port 213558 remote_ip 10.8.0.150 213560 username morteza4424 213560 mac 213560 bytes_out 2696 213560 bytes_in 5019 213560 station_ip 37.129.211.150 213560 port 81 213560 unique_id port 213560 remote_ip 10.8.0.150 213561 username khaleghi2406 213561 mac 213561 bytes_out 351600 213561 bytes_in 4058692 213561 station_ip 37.129.143.200 213561 port 82 213561 unique_id port 213561 remote_ip 10.8.0.22 213563 username kalantary6037 213563 mac 213563 bytes_out 0 213563 bytes_in 0 213563 station_ip 37.129.7.45 213563 port 88 213563 unique_id port 213563 remote_ip 10.8.0.18 213568 username morteza4424 213568 kill_reason Maximum check online fails reached 213568 mac 213568 bytes_out 0 213568 bytes_in 0 213568 station_ip 37.129.211.150 213568 port 81 213568 unique_id port 213569 username morteza4424 213569 mac 213569 bytes_out 0 213569 bytes_in 0 213569 station_ip 37.129.211.150 213569 port 52 213569 unique_id port 213569 remote_ip 10.8.1.42 213571 username morteza4424 213571 mac 213571 bytes_out 0 213571 bytes_in 0 213571 station_ip 37.129.211.150 213571 port 88 213571 unique_id port 213571 remote_ip 10.8.0.150 213575 username yarmohamadi7916 213575 kill_reason Another user logged on this global unique id 213575 mac 213575 bytes_out 0 213575 bytes_in 0 213575 station_ip 5.120.73.206 213575 port 87 213575 unique_id port 213577 username morteza4424 213577 mac 213577 bytes_out 0 213577 bytes_in 0 213577 station_ip 37.129.211.150 213577 port 88 213577 unique_id port 213577 remote_ip 10.8.0.150 213583 username morteza4424 213583 mac 213583 bytes_out 0 213583 bytes_in 0 213583 station_ip 37.129.211.150 213583 port 84 213583 unique_id port 213583 remote_ip 10.8.0.150 213584 username barzegar 213584 mac 213584 bytes_out 0 213584 bytes_in 0 213584 station_ip 5.119.221.217 213584 port 90 213584 unique_id port 213584 remote_ip 10.8.0.34 213586 username nilufarrajaei 213586 mac 213586 bytes_out 0 213586 bytes_in 0 213586 station_ip 83.123.181.169 213586 port 52 213586 unique_id port 213586 remote_ip 10.8.1.126 213590 username esmaeilkazemi 213590 mac 213590 bytes_out 5286 213580 remote_ip 10.8.0.22 213585 username yarmohamadi7916 213585 kill_reason Another user logged on this global unique id 213585 mac 213585 bytes_out 0 213585 bytes_in 0 213585 station_ip 5.120.73.206 213585 port 87 213585 unique_id port 213588 username sabaghnezhad 213588 mac 213588 bytes_out 0 213588 bytes_in 0 213588 station_ip 37.129.100.222 213588 port 88 213588 unique_id port 213588 remote_ip 10.8.0.94 213592 username mostafa_es78 213592 mac 213592 bytes_out 3055585 213592 bytes_in 43659880 213592 station_ip 113.203.77.2 213592 port 80 213592 unique_id port 213592 remote_ip 10.8.0.42 213594 username kalantary6037 213594 mac 213594 bytes_out 0 213594 bytes_in 0 213594 station_ip 37.129.7.45 213594 port 89 213594 unique_id port 213611 username barzegar 213611 mac 213611 bytes_out 0 213611 bytes_in 0 213611 station_ip 5.119.221.217 213611 port 52 213611 unique_id port 213611 remote_ip 10.8.1.30 213614 username yaghobi 213614 mac 213614 bytes_out 0 213614 bytes_in 0 213614 station_ip 37.129.113.238 213614 port 43 213614 unique_id port 213614 remote_ip 10.8.1.106 213618 username morteza4424 213618 kill_reason Another user logged on this global unique id 213618 mac 213618 bytes_out 0 213618 bytes_in 0 213618 station_ip 37.129.211.150 213618 port 82 213618 unique_id port 213622 username aminvpn 213622 mac 213622 bytes_out 1700359 213622 bytes_in 7293175 213622 station_ip 5.119.101.12 213622 port 46 213622 unique_id port 213622 remote_ip 10.8.0.58 213624 username aminvpn 213624 mac 213624 bytes_out 0 213624 bytes_in 0 213624 station_ip 5.120.16.59 213624 port 93 213624 unique_id port 213624 remote_ip 10.8.0.58 213628 username kalantary6037 213628 mac 213628 bytes_out 0 213628 bytes_in 0 213628 station_ip 37.129.39.137 213628 port 84 213628 unique_id port 213628 remote_ip 10.8.0.18 213631 username hamid2 213631 mac 213631 bytes_out 0 213631 bytes_in 0 213631 station_ip 46.225.211.202 213631 port 93 213631 unique_id port 213631 remote_ip 10.8.0.78 213632 username aminvpn 213632 mac 213632 bytes_out 0 213632 bytes_in 0 213632 station_ip 5.120.16.59 213632 port 84 213632 unique_id port 213632 remote_ip 10.8.0.58 213633 username nilufarrajaei 213633 mac 213633 bytes_out 0 213633 bytes_in 0 213633 station_ip 83.123.181.169 213633 port 89 213633 unique_id port 213633 remote_ip 10.8.0.50 213635 username morteza4424 213635 kill_reason Another user logged on this global unique id 213635 mac 213635 bytes_out 0 213635 bytes_in 0 213635 station_ip 37.129.211.150 213635 port 82 213635 unique_id port 213639 username aminvpn 213639 mac 213639 bytes_out 0 213639 bytes_in 0 213639 station_ip 5.120.16.59 213639 port 90 213639 unique_id port 213639 remote_ip 10.8.0.58 213641 username aminvpn 213641 mac 213641 bytes_out 0 213641 bytes_in 0 213641 station_ip 5.119.101.12 213641 port 46 213641 unique_id port 213641 remote_ip 10.8.0.58 213653 username aminvpn 213653 mac 213653 bytes_out 0 213653 bytes_in 0 213653 station_ip 5.120.16.59 213653 port 92 213653 unique_id port 213653 remote_ip 10.8.0.58 213657 username meghdad1616 213657 mac 213657 bytes_out 63777 213657 bytes_in 94433 213657 station_ip 5.119.205.142 213657 port 91 213657 unique_id port 213657 remote_ip 10.8.0.230 213658 username meghdad1616 213658 mac 213658 bytes_out 0 213658 bytes_in 0 213658 station_ip 5.119.205.142 213658 port 91 213658 unique_id port 213658 remote_ip 10.8.0.230 213661 username hamid2 213661 mac 213661 bytes_out 0 213581 unique_id port 213581 remote_ip 10.8.0.150 213582 username barzegar 213582 mac 213582 bytes_out 96178 213582 bytes_in 23372 213582 station_ip 5.119.221.217 213582 port 82 213582 unique_id port 213582 remote_ip 10.8.0.34 213587 username godarzi 213587 mac 213587 bytes_out 406600 213587 bytes_in 4776170 213587 station_ip 5.119.235.65 213587 port 88 213587 unique_id port 213587 remote_ip 10.8.0.74 213589 username nilufarrajaei 213589 mac 213589 bytes_out 3454737 213589 bytes_in 537785 213589 station_ip 83.123.181.169 213589 port 84 213589 unique_id port 213589 remote_ip 10.8.0.50 213591 username kalantary6037 213591 kill_reason Another user logged on this global unique id 213591 mac 213591 bytes_out 0 213591 bytes_in 0 213591 station_ip 37.129.7.45 213591 port 89 213591 unique_id port 213591 remote_ip 10.8.0.18 213593 username farhad3 213593 mac 213593 bytes_out 0 213593 bytes_in 0 213593 station_ip 5.120.151.17 213593 port 55 213593 unique_id port 213593 remote_ip 10.8.1.86 213595 username farhad3 213595 mac 213595 bytes_out 0 213595 bytes_in 0 213595 station_ip 5.120.151.17 213595 port 52 213595 unique_id port 213595 remote_ip 10.8.1.86 213598 username sabaghnezhad 213598 mac 213598 bytes_out 0 213598 bytes_in 0 213598 station_ip 37.129.100.222 213598 port 80 213598 unique_id port 213598 remote_ip 10.8.0.94 213599 username yarmohamadi7916 213599 kill_reason Another user logged on this global unique id 213599 mac 213599 bytes_out 0 213599 bytes_in 0 213599 station_ip 5.120.73.206 213599 port 87 213599 unique_id port 213601 username barzegar 213601 mac 213601 bytes_out 0 213601 bytes_in 0 213601 station_ip 5.119.221.217 213601 port 84 213601 unique_id port 213601 remote_ip 10.8.0.34 213602 username morteza4424 213602 kill_reason Another user logged on this global unique id 213602 mac 213602 bytes_out 0 213602 bytes_in 0 213602 station_ip 37.129.211.150 213602 port 82 213602 unique_id port 213602 remote_ip 10.8.0.150 213603 username khaleghi2406 213603 mac 213603 bytes_out 172682 213603 bytes_in 1615873 213603 station_ip 37.129.231.220 213603 port 84 213603 unique_id port 213603 remote_ip 10.8.0.22 213605 username barzegar 213605 mac 213605 bytes_out 5844 213605 bytes_in 12286 213605 station_ip 5.119.221.217 213605 port 88 213605 unique_id port 213605 remote_ip 10.8.0.34 213606 username yaghobi 213606 mac 213606 bytes_out 0 213606 bytes_in 0 213606 station_ip 37.129.113.238 213606 port 43 213606 unique_id port 213606 remote_ip 10.8.1.106 213607 username mohammadjavad 213607 mac 213607 bytes_out 55192 213607 bytes_in 66349 213607 station_ip 37.129.150.188 213607 port 89 213607 unique_id port 213607 remote_ip 10.8.0.138 213609 username nilufarrajaei 213609 kill_reason Another user logged on this global unique id 213609 mac 213609 bytes_out 0 213609 bytes_in 0 213609 station_ip 83.123.181.169 213609 port 91 213609 unique_id port 213612 username nilufarrajaei 213612 mac 213612 bytes_out 0 213612 bytes_in 0 213612 station_ip 83.123.181.169 213612 port 91 213612 unique_id port 213617 username barzegar 213617 mac 213617 bytes_out 0 213617 bytes_in 0 213617 station_ip 5.119.221.217 213617 port 84 213617 unique_id port 213617 remote_ip 10.8.0.34 213620 username esmaeilkazemi 213620 mac 213620 bytes_out 0 213620 bytes_in 0 213620 station_ip 37.129.57.185 213620 port 90 213620 unique_id port 213620 remote_ip 10.8.0.66 213621 username esmaeilkazemi 213621 mac 213621 bytes_out 0 213621 bytes_in 0 213621 station_ip 37.129.57.185 213621 port 93 213590 bytes_in 23584 213590 station_ip 37.129.57.185 213590 port 90 213590 unique_id port 213590 remote_ip 10.8.0.66 213596 username barzegar 213596 mac 213596 bytes_out 0 213596 bytes_in 0 213596 station_ip 5.119.221.217 213596 port 53 213596 unique_id port 213596 remote_ip 10.8.1.30 213597 username sabaghnezhad 213597 mac 213597 bytes_out 734886 213597 bytes_in 10763314 213597 station_ip 37.129.100.222 213597 port 88 213597 unique_id port 213597 remote_ip 10.8.0.94 213600 username nilufarrajaei 213600 kill_reason Another user logged on this global unique id 213600 mac 213600 bytes_out 0 213600 bytes_in 0 213600 station_ip 83.123.181.169 213600 port 91 213600 unique_id port 213600 remote_ip 10.8.0.50 213604 username yaghobi 213604 mac 213604 bytes_out 0 213604 bytes_in 0 213604 station_ip 37.129.113.238 213604 port 43 213604 unique_id port 213604 remote_ip 10.8.1.106 213608 username morteza4424 213608 kill_reason Another user logged on this global unique id 213608 mac 213608 bytes_out 0 213608 bytes_in 0 213608 station_ip 37.129.211.150 213608 port 82 213608 unique_id port 213610 username barzegar 213610 mac 213610 bytes_out 0 213610 bytes_in 0 213610 station_ip 5.119.221.217 213610 port 43 213610 unique_id port 213610 remote_ip 10.8.1.30 213613 username tahmorsi 213613 mac 213613 bytes_out 0 213613 bytes_in 0 213613 station_ip 86.57.70.201 213613 port 56 213613 unique_id port 213613 remote_ip 10.8.1.78 213615 username ahmadi1 213615 mac 213615 bytes_out 43174 213615 bytes_in 131232 213615 station_ip 37.129.35.245 213615 port 89 213615 unique_id port 213615 remote_ip 10.8.0.114 213616 username khaleghi2406 213616 mac 213616 bytes_out 403437 213616 bytes_in 4139367 213616 station_ip 37.129.231.220 213616 port 84 213616 unique_id port 213616 remote_ip 10.8.0.22 213619 username godarzi 213619 mac 213619 bytes_out 1258785 213619 bytes_in 18876973 213619 station_ip 5.119.235.65 213619 port 90 213619 unique_id port 213619 remote_ip 10.8.0.74 213625 username khaleghi2406 213625 mac 213625 bytes_out 0 213625 bytes_in 0 213625 station_ip 37.129.231.220 213625 port 91 213625 unique_id port 213625 remote_ip 10.8.0.22 213627 username hamid1 213627 mac 213627 bytes_out 0 213627 bytes_in 0 213627 station_ip 46.225.211.202 213627 port 90 213627 unique_id port 213627 remote_ip 10.8.0.194 213629 username aminvpn 213629 mac 213629 bytes_out 0 213629 bytes_in 0 213629 station_ip 5.120.16.59 213629 port 91 213629 unique_id port 213629 remote_ip 10.8.0.58 213630 username aminvpn 213630 mac 213630 bytes_out 0 213630 bytes_in 0 213630 station_ip 5.119.101.12 213630 port 46 213630 unique_id port 213630 remote_ip 10.8.0.58 213634 username aminvpn 213634 mac 213634 bytes_out 0 213634 bytes_in 0 213634 station_ip 5.119.101.12 213634 port 90 213634 unique_id port 213634 remote_ip 10.8.0.58 213636 username hamid2 213636 mac 213636 bytes_out 0 213636 bytes_in 0 213636 station_ip 46.225.211.202 213636 port 46 213636 unique_id port 213636 remote_ip 10.8.0.78 213637 username aminvpn 213637 mac 213637 bytes_out 0 213637 bytes_in 0 213637 station_ip 5.120.16.59 213637 port 89 213637 unique_id port 213637 remote_ip 10.8.0.58 213638 username aminvpn 213638 mac 213638 bytes_out 0 213638 bytes_in 0 213638 station_ip 5.119.101.12 213638 port 46 213638 unique_id port 213638 remote_ip 10.8.0.58 213643 username meghdad1616 213643 mac 213643 bytes_out 0 213643 bytes_in 0 213643 station_ip 5.119.205.142 213621 unique_id port 213621 remote_ip 10.8.0.66 213623 username esmaeilkazemi 213623 mac 213623 bytes_out 0 213623 bytes_in 0 213623 station_ip 37.129.57.185 213623 port 90 213623 unique_id port 213623 remote_ip 10.8.0.66 213626 username aminvpn 213626 mac 213626 bytes_out 0 213626 bytes_in 0 213626 station_ip 5.119.101.12 213626 port 46 213626 unique_id port 213626 remote_ip 10.8.0.58 213640 username barzegar 213640 mac 213640 bytes_out 0 213640 bytes_in 0 213640 station_ip 5.119.221.217 213640 port 43 213640 unique_id port 213640 remote_ip 10.8.1.30 213642 username aminvpn 213642 mac 213642 bytes_out 0 213642 bytes_in 0 213642 station_ip 5.120.16.59 213642 port 90 213642 unique_id port 213642 remote_ip 10.8.0.58 213645 username aminvpn 213645 mac 213645 bytes_out 0 213645 bytes_in 0 213645 station_ip 5.120.16.59 213645 port 90 213645 unique_id port 213645 remote_ip 10.8.0.58 213648 username aminvpn 213648 mac 213648 bytes_out 0 213648 bytes_in 0 213648 station_ip 5.120.16.59 213648 port 89 213648 unique_id port 213648 remote_ip 10.8.0.58 213655 username aminvpn 213655 mac 213655 bytes_out 0 213655 bytes_in 0 213655 station_ip 5.120.16.59 213655 port 92 213655 unique_id port 213655 remote_ip 10.8.0.58 213656 username barzegar 213656 mac 213656 bytes_out 0 213656 bytes_in 0 213656 station_ip 5.119.221.217 213656 port 43 213656 unique_id port 213656 remote_ip 10.8.1.30 213664 username mehrpoyan101 213664 mac 213664 bytes_out 0 213664 bytes_in 0 213664 station_ip 5.120.4.234 213664 port 93 213664 unique_id port 213664 remote_ip 10.8.0.134 213665 username morteza4424 213665 mac 213665 bytes_out 0 213665 bytes_in 0 213665 station_ip 37.129.211.150 213665 port 92 213665 unique_id port 213665 remote_ip 10.8.0.150 213666 username khalili2 213666 unique_id port 213666 terminate_cause User-Request 213666 bytes_out 2703478 213666 bytes_in 75560051 213666 station_ip 5.119.209.186 213666 port 15728810 213666 nas_port_type Virtual 213666 remote_ip 5.5.5.254 213673 username barzegar 213673 mac 213673 bytes_out 0 213673 bytes_in 0 213673 station_ip 5.119.221.217 213673 port 53 213673 unique_id port 213673 remote_ip 10.8.1.30 213677 username barzegar 213677 mac 213677 bytes_out 0 213677 bytes_in 0 213677 station_ip 5.119.221.217 213677 port 95 213677 unique_id port 213677 remote_ip 10.8.0.34 213681 username hamid2 213681 mac 213681 bytes_out 1616291 213681 bytes_in 12674194 213681 station_ip 94.241.175.77 213681 port 52 213681 unique_id port 213681 remote_ip 10.8.1.38 213683 username soleymani5056 213683 mac 213683 bytes_out 0 213683 bytes_in 0 213683 station_ip 5.119.68.188 213683 port 90 213683 unique_id port 213683 remote_ip 10.8.0.246 213684 username meghdad1616 213684 mac 213684 bytes_out 725935 213684 bytes_in 11447213 213684 station_ip 5.119.205.142 213684 port 53 213684 unique_id port 213684 remote_ip 10.8.1.122 213686 username barzegar8595 213686 kill_reason Another user logged on this global unique id 213686 mac 213686 bytes_out 0 213686 bytes_in 0 213686 station_ip 46.225.211.202 213686 port 46 213686 unique_id port 213686 remote_ip 10.8.0.170 213687 username khalili2 213687 kill_reason Another user logged on this global unique id 213687 mac 213687 bytes_out 0 213687 bytes_in 0 213687 station_ip 5.119.209.186 213687 port 93 213687 unique_id port 213687 remote_ip 10.8.0.154 213689 username mehrpoyan101 213689 mac 213689 bytes_out 0 213689 bytes_in 0 213689 station_ip 5.119.59.178 213643 port 92 213643 unique_id port 213643 remote_ip 10.8.0.230 213644 username aminvpn 213644 mac 213644 bytes_out 0 213644 bytes_in 0 213644 station_ip 5.119.101.12 213644 port 46 213644 unique_id port 213644 remote_ip 10.8.0.58 213646 username hamid2 213646 mac 213646 bytes_out 0 213646 bytes_in 0 213646 station_ip 46.225.211.202 213646 port 89 213646 unique_id port 213646 remote_ip 10.8.0.78 213647 username aminvpn 213647 mac 213647 bytes_out 0 213647 bytes_in 0 213647 station_ip 5.119.101.12 213647 port 46 213647 unique_id port 213647 remote_ip 10.8.0.58 213649 username aminvpn 213649 mac 213649 bytes_out 0 213649 bytes_in 0 213649 station_ip 5.119.101.12 213649 port 46 213649 unique_id port 213649 remote_ip 10.8.0.58 213650 username aminvpn 213650 mac 213650 bytes_out 0 213650 bytes_in 0 213650 station_ip 5.120.16.59 213650 port 90 213650 unique_id port 213650 remote_ip 10.8.0.58 213651 username morteza4424 213651 kill_reason Another user logged on this global unique id 213651 mac 213651 bytes_out 0 213651 bytes_in 0 213651 station_ip 37.129.211.150 213651 port 82 213651 unique_id port 213652 username aminvpn 213652 mac 213652 bytes_out 0 213652 bytes_in 0 213652 station_ip 5.119.101.12 213652 port 91 213652 unique_id port 213652 remote_ip 10.8.0.58 213654 username aminvpn 213654 mac 213654 bytes_out 0 213654 bytes_in 0 213654 station_ip 5.119.101.12 213654 port 91 213654 unique_id port 213654 remote_ip 10.8.0.58 213659 username sabaghnezhad 213659 mac 213659 bytes_out 0 213659 bytes_in 0 213659 station_ip 37.129.100.222 213659 port 80 213659 unique_id port 213659 remote_ip 10.8.0.94 213660 username meghdad1616 213660 mac 213660 bytes_out 0 213660 bytes_in 0 213660 station_ip 5.119.205.142 213660 port 53 213660 unique_id port 213660 remote_ip 10.8.1.122 213662 username morteza4424 213662 mac 213662 bytes_out 0 213662 bytes_in 0 213662 station_ip 37.129.211.150 213662 port 82 213662 unique_id port 213667 username morteza4424 213667 mac 213667 bytes_out 5399 213667 bytes_in 52755 213667 station_ip 37.129.211.150 213667 port 92 213667 unique_id port 213667 remote_ip 10.8.0.150 213669 username yarmohamadi7916 213669 mac 213669 bytes_out 0 213669 bytes_in 0 213669 station_ip 5.120.73.206 213669 port 87 213669 unique_id port 213670 username meghdad1616 213670 mac 213670 bytes_out 11440 213670 bytes_in 16359 213670 station_ip 5.119.205.142 213670 port 53 213670 unique_id port 213670 remote_ip 10.8.1.122 213672 username meghdad1616 213672 mac 213672 bytes_out 0 213672 bytes_in 0 213672 station_ip 5.119.205.142 213672 port 90 213672 unique_id port 213672 remote_ip 10.8.0.230 213674 username meghdad1616 213674 mac 213674 bytes_out 0 213674 bytes_in 0 213674 station_ip 5.119.205.142 213674 port 53 213674 unique_id port 213674 remote_ip 10.8.1.122 213679 username morteza4424 213679 mac 213679 bytes_out 10986821 213679 bytes_in 18556285 213679 station_ip 37.129.211.150 213679 port 87 213679 unique_id port 213679 remote_ip 10.8.0.150 213680 username mirzaei6046 213680 kill_reason Another user logged on this global unique id 213680 mac 213680 bytes_out 0 213680 bytes_in 0 213680 station_ip 5.120.121.238 213680 port 41 213680 unique_id port 213685 username barzegar 213685 mac 213685 bytes_out 0 213685 bytes_in 0 213685 station_ip 5.119.221.217 213685 port 52 213685 unique_id port 213685 remote_ip 10.8.1.30 213688 username farhad3 213688 mac 213661 bytes_in 0 213661 station_ip 94.241.175.77 213661 port 52 213661 unique_id port 213661 remote_ip 10.8.1.38 213663 username morteza4424 213663 mac 213663 bytes_out 0 213663 bytes_in 0 213663 station_ip 37.129.211.150 213663 port 92 213663 unique_id port 213663 remote_ip 10.8.0.150 213668 username kalantary6037 213668 mac 213668 bytes_out 0 213668 bytes_in 0 213668 station_ip 37.129.76.181 213668 port 80 213668 unique_id port 213668 remote_ip 10.8.0.18 213671 username farhad3 213671 mac 213671 bytes_out 0 213671 bytes_in 0 213671 station_ip 5.120.151.17 213671 port 90 213671 unique_id port 213671 remote_ip 10.8.0.98 213675 username mosavi0713 213675 mac 213675 bytes_out 1510851 213675 bytes_in 25087580 213675 station_ip 83.122.224.176 213675 port 89 213675 unique_id port 213675 remote_ip 10.8.0.186 213676 username meghdad1616 213676 mac 213676 bytes_out 0 213676 bytes_in 0 213676 station_ip 5.119.205.142 213676 port 53 213676 unique_id port 213676 remote_ip 10.8.1.122 213678 username mohammadjavad 213678 mac 213678 bytes_out 0 213678 bytes_in 0 213678 station_ip 37.129.150.188 213678 port 82 213678 unique_id port 213678 remote_ip 10.8.0.138 213682 username kalantary6037 213682 mac 213682 bytes_out 272245 213682 bytes_in 2343279 213682 station_ip 37.129.76.181 213682 port 82 213682 unique_id port 213682 remote_ip 10.8.0.18 213692 username godarzi 213692 mac 213692 bytes_out 0 213692 bytes_in 0 213692 station_ip 5.202.65.237 213692 port 87 213692 unique_id port 213692 remote_ip 10.8.0.74 213696 username meghdad1616 213696 mac 213696 bytes_out 0 213696 bytes_in 0 213696 station_ip 5.119.205.142 213696 port 89 213696 unique_id port 213696 remote_ip 10.8.0.230 213697 username kamali3 213697 mac 213697 bytes_out 0 213697 bytes_in 0 213697 station_ip 5.202.29.20 213697 port 43 213697 unique_id port 213697 remote_ip 10.8.1.206 213702 username barzegar 213702 kill_reason Maximum check online fails reached 213702 mac 213702 bytes_out 0 213702 bytes_in 0 213702 station_ip 5.119.221.217 213702 port 82 213702 unique_id port 213706 username kalantary6037 213706 mac 213706 bytes_out 0 213706 bytes_in 0 213706 station_ip 37.129.127.69 213706 port 87 213706 unique_id port 213706 remote_ip 10.8.0.18 213714 username meghdad1616 213714 mac 213714 bytes_out 0 213714 bytes_in 0 213714 station_ip 5.119.205.142 213714 port 87 213714 unique_id port 213714 remote_ip 10.8.0.230 213722 username meghdad1616 213722 mac 213722 bytes_out 0 213722 bytes_in 0 213722 station_ip 5.119.205.142 213722 port 87 213722 unique_id port 213722 remote_ip 10.8.0.230 213725 username meghdad1616 213725 mac 213725 bytes_out 0 213725 bytes_in 0 213725 station_ip 5.119.205.142 213725 port 87 213725 unique_id port 213725 remote_ip 10.8.0.230 213728 username safari2994 213728 mac 213728 bytes_out 360291 213728 bytes_in 805035 213728 station_ip 5.119.101.248 213728 port 54 213728 unique_id port 213728 remote_ip 10.8.1.138 213732 username meghdad1616 213732 mac 213732 bytes_out 0 213732 bytes_in 0 213732 station_ip 5.119.205.142 213732 port 87 213732 unique_id port 213732 remote_ip 10.8.0.230 213736 username meghdad1616 213736 mac 213736 bytes_out 8624 213736 bytes_in 22742 213736 station_ip 5.119.205.142 213736 port 43 213736 unique_id port 213736 remote_ip 10.8.1.122 213742 username meghdad1616 213742 mac 213742 bytes_out 0 213742 bytes_in 0 213742 station_ip 5.119.205.142 213742 port 92 213688 bytes_out 0 213688 bytes_in 0 213688 station_ip 5.120.151.17 213688 port 92 213688 unique_id port 213688 remote_ip 10.8.0.98 213691 username aminvpn 213691 mac 213691 bytes_out 526191 213691 bytes_in 2268294 213691 station_ip 5.120.16.59 213691 port 43 213691 unique_id port 213691 remote_ip 10.8.1.102 213694 username barzegar8595 213694 mac 213694 bytes_out 0 213694 bytes_in 0 213694 station_ip 46.225.211.202 213694 port 46 213694 unique_id port 213695 username kamali3 213695 mac 213695 bytes_out 605686 213695 bytes_in 577603 213695 station_ip 37.129.117.243 213695 port 51 213695 unique_id port 213695 remote_ip 10.8.1.206 213699 username barzegar 213699 mac 213699 bytes_out 51540 213699 bytes_in 75158 213699 station_ip 5.119.221.217 213699 port 52 213699 unique_id port 213699 remote_ip 10.8.1.30 213704 username barzegar 213704 mac 213704 bytes_out 2675 213704 bytes_in 5395 213704 station_ip 5.119.221.217 213704 port 51 213704 unique_id port 213704 remote_ip 10.8.1.30 213708 username nilufarrajaei 213708 kill_reason Another user logged on this global unique id 213708 mac 213708 bytes_out 0 213708 bytes_in 0 213708 station_ip 83.123.181.169 213708 port 84 213708 unique_id port 213708 remote_ip 10.8.0.50 213709 username barzegar 213709 mac 213709 bytes_out 0 213709 bytes_in 0 213709 station_ip 5.119.221.217 213709 port 51 213709 unique_id port 213709 remote_ip 10.8.1.30 213711 username barzegar 213711 mac 213711 bytes_out 35210 213711 bytes_in 27639 213711 station_ip 5.119.221.217 213711 port 51 213711 unique_id port 213711 remote_ip 10.8.1.30 213712 username meghdad1616 213712 mac 213712 bytes_out 0 213712 bytes_in 0 213712 station_ip 5.119.205.142 213712 port 43 213712 unique_id port 213712 remote_ip 10.8.1.122 213713 username meghdad1616 213713 mac 213713 bytes_out 0 213713 bytes_in 0 213713 station_ip 5.119.205.142 213713 port 43 213713 unique_id port 213713 remote_ip 10.8.1.122 213715 username barzegar 213715 mac 213715 bytes_out 1276894 213715 bytes_in 375600 213715 station_ip 5.119.221.217 213715 port 51 213715 unique_id port 213715 remote_ip 10.8.1.30 213716 username motamedi9772 213716 mac 213716 bytes_out 0 213716 bytes_in 0 213716 station_ip 37.129.44.101 213716 port 89 213716 unique_id port 213716 remote_ip 10.8.0.86 213717 username meghdad1616 213717 mac 213717 bytes_out 0 213717 bytes_in 0 213717 station_ip 5.119.205.142 213717 port 43 213717 unique_id port 213717 remote_ip 10.8.1.122 213719 username khalili2 213719 kill_reason Another user logged on this global unique id 213719 mac 213719 bytes_out 0 213719 bytes_in 0 213719 station_ip 5.119.209.186 213719 port 93 213719 unique_id port 213721 username meghdad1616 213721 mac 213721 bytes_out 0 213721 bytes_in 0 213721 station_ip 5.119.205.142 213721 port 87 213721 unique_id port 213721 remote_ip 10.8.0.230 213724 username alipour1506 213724 kill_reason Another user logged on this global unique id 213724 mac 213724 bytes_out 0 213724 bytes_in 0 213724 station_ip 94.176.8.78 213724 port 88 213724 unique_id port 213724 remote_ip 10.8.0.46 213729 username meghdad1616 213729 mac 213729 bytes_out 2831 213729 bytes_in 5335 213729 station_ip 5.119.205.142 213729 port 43 213729 unique_id port 213729 remote_ip 10.8.1.122 213730 username meghdad1616 213730 mac 213730 bytes_out 0 213730 bytes_in 0 213730 station_ip 5.119.205.142 213730 port 43 213730 unique_id port 213730 remote_ip 10.8.1.122 213731 username barzegar 213731 mac 213689 port 82 213689 unique_id port 213689 remote_ip 10.8.0.134 213690 username aminvpnpc 213690 mac 213690 bytes_out 0 213690 bytes_in 0 213690 station_ip 5.120.16.59 213690 port 50 213690 unique_id port 213690 remote_ip 10.8.0.146 213693 username sekonji0496 213693 mac 213693 bytes_out 0 213693 bytes_in 0 213693 station_ip 37.129.208.27 213693 port 90 213693 unique_id port 213693 remote_ip 10.8.0.70 213698 username mehrpoyan101 213698 mac 213698 bytes_out 396730 213698 bytes_in 2565627 213698 station_ip 5.119.64.132 213698 port 82 213698 unique_id port 213698 remote_ip 10.8.0.134 213700 username barzegar 213700 mac 213700 bytes_out 2951 213700 bytes_in 5323 213700 station_ip 5.119.221.217 213700 port 43 213700 unique_id port 213700 remote_ip 10.8.1.30 213701 username meysam 213701 mac 213701 bytes_out 0 213701 bytes_in 0 213701 station_ip 188.158.48.239 213701 port 46 213701 unique_id port 213701 remote_ip 10.8.0.102 213703 username barzegar 213703 mac 213703 bytes_out 0 213703 bytes_in 0 213703 station_ip 5.119.221.217 213703 port 43 213703 unique_id port 213703 remote_ip 10.8.1.30 213705 username yaghobi 213705 mac 213705 bytes_out 456838 213705 bytes_in 767216 213705 station_ip 37.129.33.154 213705 port 53 213705 unique_id port 213705 remote_ip 10.8.1.106 213707 username barzegar 213707 mac 213707 bytes_out 16661 213707 bytes_in 24165 213707 station_ip 5.119.221.217 213707 port 51 213707 unique_id port 213707 remote_ip 10.8.1.30 213710 username khalili2 213710 kill_reason Another user logged on this global unique id 213710 mac 213710 bytes_out 0 213710 bytes_in 0 213710 station_ip 5.119.209.186 213710 port 93 213710 unique_id port 213718 username barzegar 213718 mac 213718 bytes_out 0 213718 bytes_in 0 213718 station_ip 5.119.221.217 213718 port 87 213718 unique_id port 213718 remote_ip 10.8.0.34 213720 username barzegar 213720 mac 213720 bytes_out 0 213720 bytes_in 0 213720 station_ip 5.119.221.217 213720 port 90 213720 unique_id port 213720 remote_ip 10.8.0.34 213723 username meghdad1616 213723 mac 213723 bytes_out 0 213723 bytes_in 0 213723 station_ip 5.119.205.142 213723 port 87 213723 unique_id port 213723 remote_ip 10.8.0.230 213726 username barzegar 213726 mac 213726 bytes_out 0 213726 bytes_in 0 213726 station_ip 5.119.221.217 213726 port 43 213726 unique_id port 213726 remote_ip 10.8.1.30 213727 username khalili2 213727 kill_reason Another user logged on this global unique id 213727 mac 213727 bytes_out 0 213727 bytes_in 0 213727 station_ip 5.119.209.186 213727 port 93 213727 unique_id port 213734 username barzegar 213734 mac 213734 bytes_out 2437 213734 bytes_in 5159 213734 station_ip 5.119.221.217 213734 port 43 213734 unique_id port 213734 remote_ip 10.8.1.30 213739 username khalili2 213739 kill_reason Another user logged on this global unique id 213739 mac 213739 bytes_out 0 213739 bytes_in 0 213739 station_ip 5.119.209.186 213739 port 93 213739 unique_id port 213741 username barzegar 213741 mac 213741 bytes_out 0 213741 bytes_in 0 213741 station_ip 5.119.221.217 213741 port 43 213741 unique_id port 213741 remote_ip 10.8.1.30 213745 username khalili2 213745 mac 213745 bytes_out 0 213745 bytes_in 0 213745 station_ip 5.119.209.186 213745 port 93 213745 unique_id port 213749 username arash 213749 mac 213749 bytes_out 2850656 213749 bytes_in 25953145 213749 station_ip 37.27.7.225 213749 port 87 213749 unique_id port 213749 remote_ip 10.8.0.206 213731 bytes_out 0 213731 bytes_in 0 213731 station_ip 5.119.221.217 213731 port 52 213731 unique_id port 213731 remote_ip 10.8.1.30 213733 username meghdad1616 213733 mac 213733 bytes_out 0 213733 bytes_in 0 213733 station_ip 5.119.205.142 213733 port 43 213733 unique_id port 213733 remote_ip 10.8.1.122 213735 username meghdad1616 213735 mac 213735 bytes_out 0 213735 bytes_in 0 213735 station_ip 5.119.205.142 213735 port 87 213735 unique_id port 213735 remote_ip 10.8.0.230 213737 username dortaj3792 213737 mac 213737 bytes_out 7227336 213737 bytes_in 20335313 213737 station_ip 5.119.215.225 213737 port 75 213737 unique_id port 213737 remote_ip 10.8.0.10 213738 username kalantary6037 213738 mac 213738 bytes_out 288019 213738 bytes_in 2597377 213738 station_ip 37.129.60.129 213738 port 75 213738 unique_id port 213738 remote_ip 10.8.0.18 213740 username mirzaei6046 213740 kill_reason Another user logged on this global unique id 213740 mac 213740 bytes_out 0 213740 bytes_in 0 213740 station_ip 5.120.121.238 213740 port 41 213740 unique_id port 213743 username meghdad1616 213743 mac 213743 bytes_out 0 213743 bytes_in 0 213743 station_ip 5.119.205.142 213743 port 43 213743 unique_id port 213743 remote_ip 10.8.1.122 213746 username khalili2 213746 unique_id port 213746 terminate_cause User-Request 213746 bytes_out 89395 213746 bytes_in 2102994 213746 station_ip 5.119.209.186 213746 port 15728811 213746 nas_port_type Virtual 213746 remote_ip 5.5.5.254 213747 username meghdad1616 213747 mac 213747 bytes_out 0 213747 bytes_in 0 213747 station_ip 5.119.205.142 213747 port 43 213747 unique_id port 213747 remote_ip 10.8.1.122 213748 username hosseine 213748 kill_reason Another user logged on this global unique id 213748 mac 213748 bytes_out 0 213748 bytes_in 0 213748 station_ip 37.129.219.132 213748 port 78 213748 unique_id port 213748 remote_ip 10.8.0.126 213750 username motamedi9772 213750 kill_reason Another user logged on this global unique id 213750 mac 213750 bytes_out 0 213750 bytes_in 0 213750 station_ip 37.129.44.101 213750 port 89 213750 unique_id port 213750 remote_ip 10.8.0.86 213752 username barzegar 213752 mac 213752 bytes_out 0 213752 bytes_in 0 213752 station_ip 5.119.221.217 213752 port 87 213752 unique_id port 213752 remote_ip 10.8.0.34 213754 username aminvpn 213754 kill_reason Another user logged on this global unique id 213754 mac 213754 bytes_out 0 213754 bytes_in 0 213754 station_ip 5.119.101.12 213754 port 94 213754 unique_id port 213754 remote_ip 10.8.0.58 213756 username barzegar 213756 mac 213756 bytes_out 0 213756 bytes_in 0 213756 station_ip 5.119.221.217 213756 port 89 213756 unique_id port 213756 remote_ip 10.8.0.34 213762 username meghdad1616 213762 mac 213762 bytes_out 2168309 213762 bytes_in 32417722 213762 station_ip 5.119.205.142 213762 port 43 213762 unique_id port 213762 remote_ip 10.8.1.122 213763 username meghdad1616 213763 mac 213763 bytes_out 0 213763 bytes_in 0 213763 station_ip 5.119.205.142 213763 port 43 213763 unique_id port 213763 remote_ip 10.8.1.122 213764 username meghdad1616 213764 mac 213764 bytes_out 0 213764 bytes_in 0 213764 station_ip 5.119.205.142 213764 port 92 213764 unique_id port 213764 remote_ip 10.8.0.230 213766 username farhad3 213766 mac 213766 bytes_out 0 213766 bytes_in 0 213766 station_ip 5.120.151.17 213766 port 87 213766 unique_id port 213766 remote_ip 10.8.0.98 213776 username hamid2 213776 mac 213776 bytes_out 0 213776 bytes_in 0 213776 station_ip 94.241.175.77 213776 port 75 213742 unique_id port 213742 remote_ip 10.8.0.230 213744 username farhad3 213744 mac 213744 bytes_out 3038368 213744 bytes_in 19874173 213744 station_ip 5.120.151.17 213744 port 46 213744 unique_id port 213744 remote_ip 10.8.0.98 213751 username godarzi 213751 kill_reason Another user logged on this global unique id 213751 mac 213751 bytes_out 0 213751 bytes_in 0 213751 station_ip 5.202.65.237 213751 port 50 213751 unique_id port 213751 remote_ip 10.8.0.74 213753 username motamedi9772 213753 mac 213753 bytes_out 0 213753 bytes_in 0 213753 station_ip 37.129.44.101 213753 port 89 213753 unique_id port 213757 username barzegar 213757 mac 213757 bytes_out 0 213757 bytes_in 0 213757 station_ip 5.119.221.217 213757 port 89 213757 unique_id port 213757 remote_ip 10.8.0.34 213759 username malekpoir 213759 mac 213759 bytes_out 2053006 213759 bytes_in 14302158 213759 station_ip 5.120.97.30 213759 port 90 213759 unique_id port 213759 remote_ip 10.8.0.178 213761 username yaghobi 213761 mac 213761 bytes_out 2829621 213761 bytes_in 24454304 213761 station_ip 37.129.49.194 213761 port 51 213761 unique_id port 213761 remote_ip 10.8.1.106 213770 username farhad3 213770 mac 213770 bytes_out 133033 213770 bytes_in 825803 213770 station_ip 5.120.151.17 213770 port 87 213770 unique_id port 213770 remote_ip 10.8.0.98 213772 username meghdad1616 213772 mac 213772 bytes_out 10245 213772 bytes_in 22023 213772 station_ip 5.119.205.142 213772 port 92 213772 unique_id port 213772 remote_ip 10.8.0.230 213773 username majidsarmast 213773 kill_reason Another user logged on this global unique id 213773 mac 213773 bytes_out 0 213773 bytes_in 0 213773 station_ip 83.122.47.241 213773 port 80 213773 unique_id port 213773 remote_ip 10.8.0.130 213774 username hamid2 213774 mac 213774 bytes_out 50706 213774 bytes_in 38538 213774 station_ip 94.241.175.77 213774 port 75 213774 unique_id port 213774 remote_ip 10.8.0.78 213775 username hamid2 213775 mac 213775 bytes_out 0 213775 bytes_in 0 213775 station_ip 94.241.175.77 213775 port 75 213775 unique_id port 213775 remote_ip 10.8.0.78 213777 username barzegar 213777 mac 213777 bytes_out 0 213777 bytes_in 0 213777 station_ip 5.119.221.217 213777 port 92 213777 unique_id port 213777 remote_ip 10.8.0.34 213778 username hamid2 213778 mac 213778 bytes_out 0 213778 bytes_in 0 213778 station_ip 94.241.175.77 213778 port 92 213778 unique_id port 213778 remote_ip 10.8.0.78 213779 username hosseine 213779 mac 213779 bytes_out 1281389 213779 bytes_in 19051302 213779 station_ip 37.129.219.132 213779 port 90 213779 unique_id port 213779 remote_ip 10.8.0.126 213781 username hamid2 213781 mac 213781 bytes_out 0 213781 bytes_in 0 213781 station_ip 94.241.175.77 213781 port 43 213781 unique_id port 213781 remote_ip 10.8.1.38 213785 username meghdad1616 213785 mac 213785 bytes_out 0 213785 bytes_in 0 213785 station_ip 5.119.205.142 213785 port 87 213785 unique_id port 213785 remote_ip 10.8.0.230 213787 username khalili2 213787 kill_reason Another user logged on this global unique id 213787 mac 213787 bytes_out 0 213787 bytes_in 0 213787 station_ip 5.119.209.186 213787 port 46 213787 unique_id port 213793 username khalili2 213793 mac 213793 bytes_out 0 213793 bytes_in 0 213793 station_ip 5.119.209.186 213793 port 46 213793 unique_id port 213795 username barzegar 213795 mac 213795 bytes_out 0 213795 bytes_in 0 213795 station_ip 5.119.221.217 213795 port 43 213795 unique_id port 213795 remote_ip 10.8.1.30 213755 username khalili2 213755 kill_reason Another user logged on this global unique id 213755 mac 213755 bytes_out 0 213755 bytes_in 0 213755 station_ip 5.119.209.186 213755 port 46 213755 unique_id port 213755 remote_ip 10.8.0.154 213758 username aminvpn 213758 kill_reason Another user logged on this global unique id 213758 mac 213758 bytes_out 0 213758 bytes_in 0 213758 station_ip 5.119.101.12 213758 port 94 213758 unique_id port 213760 username hosseine 213760 mac 213760 bytes_out 0 213760 bytes_in 0 213760 station_ip 37.129.219.132 213760 port 78 213760 unique_id port 213765 username barzegar 213765 mac 213765 bytes_out 0 213765 bytes_in 0 213765 station_ip 5.119.221.217 213765 port 93 213765 unique_id port 213765 remote_ip 10.8.0.34 213767 username hamid2 213767 mac 213767 bytes_out 0 213767 bytes_in 0 213767 station_ip 94.241.175.77 213767 port 75 213767 unique_id port 213767 remote_ip 10.8.0.78 213768 username aminvpn 213768 kill_reason Another user logged on this global unique id 213768 mac 213768 bytes_out 0 213768 bytes_in 0 213768 station_ip 5.119.101.12 213768 port 94 213768 unique_id port 213769 username khalili2 213769 kill_reason Another user logged on this global unique id 213769 mac 213769 bytes_out 0 213769 bytes_in 0 213769 station_ip 5.119.209.186 213769 port 46 213769 unique_id port 213771 username hamid2 213771 mac 213771 bytes_out 28494 213771 bytes_in 35429 213771 station_ip 94.241.175.77 213771 port 75 213771 unique_id port 213771 remote_ip 10.8.0.78 213780 username aminvpn 213780 kill_reason Another user logged on this global unique id 213780 mac 213780 bytes_out 0 213780 bytes_in 0 213780 station_ip 5.119.101.12 213780 port 94 213780 unique_id port 213783 username hamid2 213783 mac 213783 bytes_out 0 213783 bytes_in 0 213783 station_ip 94.241.175.77 213783 port 43 213783 unique_id port 213783 remote_ip 10.8.1.38 213784 username hamid2 213784 mac 213784 bytes_out 0 213784 bytes_in 0 213784 station_ip 94.241.175.77 213784 port 43 213784 unique_id port 213784 remote_ip 10.8.1.38 213786 username hamid2 213786 mac 213786 bytes_out 217490 213786 bytes_in 395256 213786 station_ip 94.241.175.77 213786 port 43 213786 unique_id port 213786 remote_ip 10.8.1.38 213788 username barzegar 213788 mac 213788 bytes_out 0 213788 bytes_in 0 213788 station_ip 5.119.221.217 213788 port 90 213788 unique_id port 213788 remote_ip 10.8.0.34 213789 username godarzi 213789 kill_reason Another user logged on this global unique id 213789 mac 213789 bytes_out 0 213789 bytes_in 0 213789 station_ip 5.202.65.237 213789 port 50 213789 unique_id port 213791 username aminvpn 213791 mac 213791 bytes_out 0 213791 bytes_in 0 213791 station_ip 5.119.101.12 213791 port 94 213791 unique_id port 213803 username hamid2 213803 mac 213803 bytes_out 0 213803 bytes_in 0 213803 station_ip 5.120.140.200 213803 port 43 213803 unique_id port 213803 remote_ip 10.8.1.38 213807 username hamid2 213807 mac 213807 bytes_out 0 213807 bytes_in 0 213807 station_ip 5.120.140.200 213807 port 43 213807 unique_id port 213807 remote_ip 10.8.1.38 213810 username saeeddamghani 213810 mac 213810 bytes_out 0 213810 bytes_in 0 213810 station_ip 217.60.175.208 213810 port 87 213810 unique_id port 213810 remote_ip 10.8.0.162 213811 username hamid2 213811 mac 213811 bytes_out 0 213811 bytes_in 0 213811 station_ip 5.120.140.200 213811 port 43 213811 unique_id port 213811 remote_ip 10.8.1.38 213814 username godarzi 213814 mac 213814 bytes_out 0 213776 unique_id port 213776 remote_ip 10.8.0.78 213782 username hamid2 213782 mac 213782 bytes_out 0 213782 bytes_in 0 213782 station_ip 94.241.175.77 213782 port 43 213782 unique_id port 213782 remote_ip 10.8.1.38 213790 username farhad3 213790 mac 213790 bytes_out 0 213790 bytes_in 0 213790 station_ip 5.120.151.17 213790 port 87 213790 unique_id port 213790 remote_ip 10.8.0.98 213792 username motamedi9772 213792 kill_reason Another user logged on this global unique id 213792 mac 213792 bytes_out 0 213792 bytes_in 0 213792 station_ip 37.129.102.13 213792 port 93 213792 unique_id port 213792 remote_ip 10.8.0.86 213794 username majidsarmast 213794 mac 213794 bytes_out 0 213794 bytes_in 0 213794 station_ip 83.122.47.241 213794 port 80 213794 unique_id port 213798 username hamid2 213798 mac 213798 bytes_out 0 213798 bytes_in 0 213798 station_ip 5.120.140.200 213798 port 43 213798 unique_id port 213798 remote_ip 10.8.1.38 213800 username hamid2 213800 mac 213800 bytes_out 0 213800 bytes_in 0 213800 station_ip 5.120.140.200 213800 port 43 213800 unique_id port 213800 remote_ip 10.8.1.38 213801 username hamid2 213801 mac 213801 bytes_out 0 213801 bytes_in 0 213801 station_ip 5.120.140.200 213801 port 43 213801 unique_id port 213801 remote_ip 10.8.1.38 213806 username mirzaei6046 213806 kill_reason Another user logged on this global unique id 213806 mac 213806 bytes_out 0 213806 bytes_in 0 213806 station_ip 5.120.121.238 213806 port 41 213806 unique_id port 213808 username hamid2 213808 mac 213808 bytes_out 0 213808 bytes_in 0 213808 station_ip 5.120.140.200 213808 port 43 213808 unique_id port 213808 remote_ip 10.8.1.38 213809 username hamid2 213809 mac 213809 bytes_out 0 213809 bytes_in 0 213809 station_ip 5.120.140.200 213809 port 43 213809 unique_id port 213809 remote_ip 10.8.1.38 213815 username mohammadjavad 213815 kill_reason Another user logged on this global unique id 213815 mac 213815 bytes_out 0 213815 bytes_in 0 213815 station_ip 37.129.220.16 213815 port 50 213815 unique_id port 213815 remote_ip 10.8.0.138 213819 username hamid2 213819 mac 213819 bytes_out 0 213819 bytes_in 0 213819 station_ip 5.120.140.200 213819 port 43 213819 unique_id port 213819 remote_ip 10.8.1.38 213820 username hamid2 213820 mac 213820 bytes_out 0 213820 bytes_in 0 213820 station_ip 5.120.140.200 213820 port 43 213820 unique_id port 213820 remote_ip 10.8.1.38 213832 username alirezazadeh 213832 unique_id port 213832 terminate_cause User-Request 213832 bytes_out 27286112 213832 bytes_in 191306645 213832 station_ip 151.238.231.51 213832 port 15728806 213832 nas_port_type Virtual 213832 remote_ip 5.5.5.250 213838 username hamid2 213838 mac 213838 bytes_out 0 213838 bytes_in 0 213838 station_ip 5.120.140.200 213838 port 43 213838 unique_id port 213838 remote_ip 10.8.1.38 213839 username hamid2 213839 mac 213839 bytes_out 0 213839 bytes_in 0 213839 station_ip 5.120.140.200 213839 port 43 213839 unique_id port 213839 remote_ip 10.8.1.38 213840 username hamid2 213840 mac 213840 bytes_out 0 213840 bytes_in 0 213840 station_ip 5.120.140.200 213840 port 43 213840 unique_id port 213840 remote_ip 10.8.1.38 213842 username motamedi9772 213842 mac 213842 bytes_out 0 213842 bytes_in 0 213842 station_ip 37.129.102.13 213842 port 87 213842 unique_id port 213842 remote_ip 10.8.0.86 213845 username sabaghnezhad 213845 mac 213845 bytes_out 3948977 213845 bytes_in 8837409 213845 station_ip 37.129.100.222 213845 port 91 213845 unique_id port 213796 username hamid2 213796 mac 213796 bytes_out 0 213796 bytes_in 0 213796 station_ip 5.120.140.200 213796 port 43 213796 unique_id port 213796 remote_ip 10.8.1.38 213797 username hamid2 213797 mac 213797 bytes_out 0 213797 bytes_in 0 213797 station_ip 5.120.140.200 213797 port 43 213797 unique_id port 213797 remote_ip 10.8.1.38 213799 username hamid2 213799 mac 213799 bytes_out 0 213799 bytes_in 0 213799 station_ip 5.120.140.200 213799 port 43 213799 unique_id port 213799 remote_ip 10.8.1.38 213802 username godarzi 213802 mac 213802 bytes_out 0 213802 bytes_in 0 213802 station_ip 5.202.65.237 213802 port 50 213802 unique_id port 213804 username hamid2 213804 mac 213804 bytes_out 0 213804 bytes_in 0 213804 station_ip 5.120.140.200 213804 port 43 213804 unique_id port 213804 remote_ip 10.8.1.38 213805 username hamid2 213805 mac 213805 bytes_out 0 213805 bytes_in 0 213805 station_ip 5.120.140.200 213805 port 43 213805 unique_id port 213805 remote_ip 10.8.1.38 213812 username motamedi9772 213812 kill_reason Another user logged on this global unique id 213812 mac 213812 bytes_out 0 213812 bytes_in 0 213812 station_ip 37.129.102.13 213812 port 93 213812 unique_id port 213813 username barzegar 213813 mac 213813 bytes_out 0 213813 bytes_in 0 213813 station_ip 5.119.221.217 213813 port 51 213813 unique_id port 213813 remote_ip 10.8.1.30 213817 username hamid2 213817 mac 213817 bytes_out 0 213817 bytes_in 0 213817 station_ip 5.120.140.200 213817 port 43 213817 unique_id port 213817 remote_ip 10.8.1.38 213818 username hamid2 213818 mac 213818 bytes_out 0 213818 bytes_in 0 213818 station_ip 5.120.140.200 213818 port 43 213818 unique_id port 213818 remote_ip 10.8.1.38 213823 username hamid2 213823 mac 213823 bytes_out 0 213823 bytes_in 0 213823 station_ip 5.120.140.200 213823 port 43 213823 unique_id port 213823 remote_ip 10.8.1.38 213825 username charkhandaz3496 213825 mac 213825 bytes_out 0 213825 bytes_in 0 213825 station_ip 5.119.198.78 213825 port 75 213825 unique_id port 213825 remote_ip 10.8.0.218 213830 username barzegar 213830 mac 213830 bytes_out 0 213830 bytes_in 0 213830 station_ip 5.119.221.217 213830 port 87 213830 unique_id port 213830 remote_ip 10.8.0.34 213833 username aminvpnpc 213833 mac 213833 bytes_out 4779867 213833 bytes_in 25151266 213833 station_ip 5.120.173.120 213833 port 95 213833 unique_id port 213833 remote_ip 10.8.0.146 213836 username hamid2 213836 mac 213836 bytes_out 0 213836 bytes_in 0 213836 station_ip 5.120.140.200 213836 port 43 213836 unique_id port 213836 remote_ip 10.8.1.38 213837 username hamid2 213837 mac 213837 bytes_out 0 213837 bytes_in 0 213837 station_ip 5.120.140.200 213837 port 43 213837 unique_id port 213837 remote_ip 10.8.1.38 213841 username motamedi9772 213841 mac 213841 bytes_out 19348 213841 bytes_in 25156 213841 station_ip 37.129.102.13 213841 port 87 213841 unique_id port 213841 remote_ip 10.8.0.86 213843 username mohammadjavad 213843 mac 213843 bytes_out 0 213843 bytes_in 0 213843 station_ip 37.129.220.16 213843 port 50 213843 unique_id port 213844 username motamedi9772 213844 mac 213844 bytes_out 0 213844 bytes_in 0 213844 station_ip 37.129.102.13 213844 port 87 213844 unique_id port 213844 remote_ip 10.8.0.86 213853 username hamid2 213853 mac 213853 bytes_out 0 213853 bytes_in 0 213853 station_ip 5.120.140.200 213853 port 51 213853 unique_id port 213814 bytes_in 0 213814 station_ip 5.202.65.237 213814 port 87 213814 unique_id port 213814 remote_ip 10.8.0.74 213816 username hamid2 213816 mac 213816 bytes_out 0 213816 bytes_in 0 213816 station_ip 5.120.140.200 213816 port 43 213816 unique_id port 213816 remote_ip 10.8.1.38 213821 username hamid2 213821 mac 213821 bytes_out 0 213821 bytes_in 0 213821 station_ip 5.120.140.200 213821 port 43 213821 unique_id port 213821 remote_ip 10.8.1.38 213822 username hamid2 213822 mac 213822 bytes_out 0 213822 bytes_in 0 213822 station_ip 5.120.140.200 213822 port 43 213822 unique_id port 213822 remote_ip 10.8.1.38 213824 username hamid2 213824 mac 213824 bytes_out 0 213824 bytes_in 0 213824 station_ip 5.120.140.200 213824 port 43 213824 unique_id port 213824 remote_ip 10.8.1.38 213826 username hamid2 213826 mac 213826 bytes_out 0 213826 bytes_in 0 213826 station_ip 5.120.140.200 213826 port 43 213826 unique_id port 213826 remote_ip 10.8.1.38 213827 username hamid2 213827 mac 213827 bytes_out 0 213827 bytes_in 0 213827 station_ip 5.120.140.200 213827 port 43 213827 unique_id port 213827 remote_ip 10.8.1.38 213828 username nilufarrajaei 213828 kill_reason Another user logged on this global unique id 213828 mac 213828 bytes_out 0 213828 bytes_in 0 213828 station_ip 83.123.181.169 213828 port 84 213828 unique_id port 213829 username pourshad 213829 kill_reason Another user logged on this global unique id 213829 mac 213829 bytes_out 0 213829 bytes_in 0 213829 station_ip 5.120.100.246 213829 port 90 213829 unique_id port 213829 remote_ip 10.8.0.122 213831 username mohammadjavad 213831 kill_reason Another user logged on this global unique id 213831 mac 213831 bytes_out 0 213831 bytes_in 0 213831 station_ip 37.129.220.16 213831 port 50 213831 unique_id port 213834 username hamid2 213834 mac 213834 bytes_out 0 213834 bytes_in 0 213834 station_ip 5.120.140.200 213834 port 43 213834 unique_id port 213834 remote_ip 10.8.1.38 213835 username motamedi9772 213835 mac 213835 bytes_out 0 213835 bytes_in 0 213835 station_ip 37.129.102.13 213835 port 93 213835 unique_id port 213847 username hamid2 213847 mac 213847 bytes_out 0 213847 bytes_in 0 213847 station_ip 5.120.140.200 213847 port 43 213847 unique_id port 213847 remote_ip 10.8.1.38 213848 username hamid2 213848 mac 213848 bytes_out 0 213848 bytes_in 0 213848 station_ip 5.120.140.200 213848 port 43 213848 unique_id port 213848 remote_ip 10.8.1.38 213849 username hamid2 213849 mac 213849 bytes_out 0 213849 bytes_in 0 213849 station_ip 5.120.140.200 213849 port 43 213849 unique_id port 213849 remote_ip 10.8.1.38 213854 username hamid2 213854 mac 213854 bytes_out 0 213854 bytes_in 0 213854 station_ip 5.120.140.200 213854 port 43 213854 unique_id port 213854 remote_ip 10.8.1.38 213855 username barzegar 213855 mac 213855 bytes_out 0 213855 bytes_in 0 213855 station_ip 5.119.221.217 213855 port 91 213855 unique_id port 213855 remote_ip 10.8.0.34 213857 username hamid2 213857 mac 213857 bytes_out 0 213857 bytes_in 0 213857 station_ip 5.120.140.200 213857 port 43 213857 unique_id port 213857 remote_ip 10.8.1.38 213859 username nilufarrajaei 213859 kill_reason Another user logged on this global unique id 213859 mac 213859 bytes_out 0 213859 bytes_in 0 213859 station_ip 83.123.181.169 213859 port 84 213859 unique_id port 213863 username malekpoir 213863 mac 213863 bytes_out 0 213863 bytes_in 0 213863 station_ip 5.120.97.30 213863 port 89 213863 unique_id port 213845 remote_ip 10.8.0.94 213846 username hamid2 213846 mac 213846 bytes_out 0 213846 bytes_in 0 213846 station_ip 5.120.140.200 213846 port 43 213846 unique_id port 213846 remote_ip 10.8.1.38 213850 username pourshad 213850 kill_reason Another user logged on this global unique id 213850 mac 213850 bytes_out 0 213850 bytes_in 0 213850 station_ip 5.120.100.246 213850 port 90 213850 unique_id port 213851 username hamid2 213851 mac 213851 bytes_out 0 213851 bytes_in 0 213851 station_ip 5.120.140.200 213851 port 43 213851 unique_id port 213851 remote_ip 10.8.1.38 213852 username barzegar 213852 mac 213852 bytes_out 0 213852 bytes_in 0 213852 station_ip 5.119.221.217 213852 port 43 213852 unique_id port 213852 remote_ip 10.8.1.30 213856 username hamid2 213856 mac 213856 bytes_out 0 213856 bytes_in 0 213856 station_ip 5.120.140.200 213856 port 43 213856 unique_id port 213856 remote_ip 10.8.1.38 213860 username mohammadjavad 213860 mac 213860 bytes_out 0 213860 bytes_in 0 213860 station_ip 37.129.220.16 213860 port 92 213860 unique_id port 213860 remote_ip 10.8.0.138 213862 username mohammadjavad 213862 mac 213862 bytes_out 0 213862 bytes_in 0 213862 station_ip 37.129.220.16 213862 port 94 213862 unique_id port 213862 remote_ip 10.8.0.138 213864 username pourshad 213864 kill_reason Another user logged on this global unique id 213864 mac 213864 bytes_out 0 213864 bytes_in 0 213864 station_ip 5.120.100.246 213864 port 90 213864 unique_id port 213865 username mostafa_es78 213865 mac 213865 bytes_out 0 213865 bytes_in 0 213865 station_ip 113.203.39.3 213865 port 91 213865 unique_id port 213865 remote_ip 10.8.0.42 213868 username nilufarrajaei 213868 kill_reason Another user logged on this global unique id 213868 mac 213868 bytes_out 0 213868 bytes_in 0 213868 station_ip 83.123.181.169 213868 port 84 213868 unique_id port 213869 username pourshad 213869 kill_reason Another user logged on this global unique id 213869 mac 213869 bytes_out 0 213869 bytes_in 0 213869 station_ip 5.120.100.246 213869 port 90 213869 unique_id port 213871 username barzegar 213871 mac 213871 bytes_out 0 213871 bytes_in 0 213871 station_ip 5.119.221.217 213871 port 89 213871 unique_id port 213871 remote_ip 10.8.0.34 213874 username mohammadjavad 213874 kill_reason Another user logged on this global unique id 213874 mac 213874 bytes_out 0 213874 bytes_in 0 213874 station_ip 37.129.220.16 213874 port 92 213874 unique_id port 213874 remote_ip 10.8.0.138 213877 username barzegar 213877 mac 213877 bytes_out 0 213877 bytes_in 0 213877 station_ip 5.119.221.217 213877 port 89 213877 unique_id port 213877 remote_ip 10.8.0.34 213878 username mirzaei6046 213878 kill_reason Another user logged on this global unique id 213878 mac 213878 bytes_out 0 213878 bytes_in 0 213878 station_ip 5.120.121.238 213878 port 41 213878 unique_id port 213883 username mohammadjavad 213883 kill_reason Another user logged on this global unique id 213883 mac 213883 bytes_out 0 213883 bytes_in 0 213883 station_ip 37.129.220.16 213883 port 92 213883 unique_id port 213884 username mostafa_es78 213884 mac 213884 bytes_out 0 213884 bytes_in 0 213884 station_ip 113.203.77.2 213884 port 80 213884 unique_id port 213884 remote_ip 10.8.0.42 213888 username amiresmaeili0609 213888 mac 213888 bytes_out 0 213888 bytes_in 0 213888 station_ip 37.129.89.246 213888 port 94 213888 unique_id port 213888 remote_ip 10.8.0.202 213890 username dortaj3792 213890 mac 213890 bytes_out 3434661 213890 bytes_in 9817840 213890 station_ip 5.119.215.225 213890 port 78 213853 remote_ip 10.8.1.38 213858 username hamid2 213858 mac 213858 bytes_out 0 213858 bytes_in 0 213858 station_ip 5.120.140.200 213858 port 43 213858 unique_id port 213858 remote_ip 10.8.1.38 213861 username alipour1506 213861 kill_reason Another user logged on this global unique id 213861 mac 213861 bytes_out 0 213861 bytes_in 0 213861 station_ip 94.176.8.78 213861 port 88 213861 unique_id port 213867 username aminvpn 213867 mac 213867 bytes_out 0 213867 bytes_in 0 213867 station_ip 5.119.101.12 213867 port 93 213867 unique_id port 213867 remote_ip 10.8.0.58 213870 username farhad3 213870 mac 213870 bytes_out 0 213870 bytes_in 0 213870 station_ip 5.120.151.17 213870 port 80 213870 unique_id port 213870 remote_ip 10.8.0.98 213872 username hamid2 213872 mac 213872 bytes_out 588066 213872 bytes_in 3744363 213872 station_ip 5.120.140.200 213872 port 43 213872 unique_id port 213872 remote_ip 10.8.1.38 213873 username hamid2 213873 mac 213873 bytes_out 0 213873 bytes_in 0 213873 station_ip 5.120.140.200 213873 port 43 213873 unique_id port 213873 remote_ip 10.8.1.38 213881 username hamid1 213881 mac 213881 bytes_out 0 213881 bytes_in 0 213881 station_ip 5.119.68.246 213881 port 43 213881 unique_id port 213881 remote_ip 10.8.1.162 213882 username hamid1 213882 mac 213882 bytes_out 0 213882 bytes_in 0 213882 station_ip 5.119.68.246 213882 port 89 213882 unique_id port 213882 remote_ip 10.8.0.194 213887 username barzegar 213887 mac 213887 bytes_out 0 213887 bytes_in 0 213887 station_ip 5.119.221.217 213887 port 50 213887 unique_id port 213887 remote_ip 10.8.0.34 213889 username mohammadjavad 213889 kill_reason Another user logged on this global unique id 213889 mac 213889 bytes_out 0 213889 bytes_in 0 213889 station_ip 37.129.220.16 213889 port 92 213889 unique_id port 213895 username farhad3 213895 mac 213895 bytes_out 4732163 213895 bytes_in 19509332 213895 station_ip 5.119.204.252 213895 port 75 213895 unique_id port 213895 remote_ip 10.8.0.98 213899 username motamedi9772 213899 mac 213899 bytes_out 0 213899 bytes_in 0 213899 station_ip 37.129.102.13 213899 port 94 213899 unique_id port 213899 remote_ip 10.8.0.86 213904 username barzegar 213904 mac 213904 bytes_out 0 213904 bytes_in 0 213904 station_ip 5.119.221.217 213904 port 43 213904 unique_id port 213904 remote_ip 10.8.1.30 213907 username amiresmaeili0609 213907 mac 213907 bytes_out 8898973 213907 bytes_in 30148846 213907 station_ip 37.129.89.246 213907 port 50 213907 unique_id port 213907 remote_ip 10.8.0.202 213915 username farhad3 213915 kill_reason Another user logged on this global unique id 213915 mac 213915 bytes_out 0 213915 bytes_in 0 213915 station_ip 5.119.204.252 213915 port 75 213915 unique_id port 213918 username barzegar 213918 mac 213918 bytes_out 0 213918 bytes_in 0 213918 station_ip 5.119.221.217 213918 port 43 213918 unique_id port 213918 remote_ip 10.8.1.30 213924 username kalantary6037 213924 mac 213924 bytes_out 1472887 213924 bytes_in 8154061 213924 station_ip 37.129.112.141 213924 port 80 213924 unique_id port 213924 remote_ip 10.8.0.18 213928 username pourshad 213928 kill_reason Another user logged on this global unique id 213928 mac 213928 bytes_out 0 213928 bytes_in 0 213928 station_ip 5.120.100.246 213928 port 90 213928 unique_id port 213930 username naeimeh 213930 mac 213930 bytes_out 0 213930 bytes_in 0 213930 station_ip 83.123.95.156 213930 port 84 213930 unique_id port 213930 remote_ip 10.8.0.174 213931 username barzegar 213863 remote_ip 10.8.0.178 213866 username barzegar 213866 mac 213866 bytes_out 0 213866 bytes_in 0 213866 station_ip 5.119.221.217 213866 port 51 213866 unique_id port 213866 remote_ip 10.8.1.30 213875 username mosi 213875 mac 213875 bytes_out 0 213875 bytes_in 0 213875 station_ip 151.235.124.131 213875 port 75 213875 unique_id port 213875 remote_ip 10.8.0.38 213876 username hamid1 213876 mac 213876 bytes_out 306765 213876 bytes_in 2384938 213876 station_ip 5.119.68.246 213876 port 89 213876 unique_id port 213876 remote_ip 10.8.0.194 213879 username pourshad 213879 kill_reason Another user logged on this global unique id 213879 mac 213879 bytes_out 0 213879 bytes_in 0 213879 station_ip 5.120.100.246 213879 port 90 213879 unique_id port 213880 username hamid1 213880 mac 213880 bytes_out 0 213880 bytes_in 0 213880 station_ip 5.119.68.246 213880 port 89 213880 unique_id port 213880 remote_ip 10.8.0.194 213885 username motamedi9772 213885 mac 213885 bytes_out 5215124 213885 bytes_in 48312808 213885 station_ip 37.129.102.13 213885 port 50 213885 unique_id port 213885 remote_ip 10.8.0.86 213886 username pourshad 213886 kill_reason Another user logged on this global unique id 213886 mac 213886 bytes_out 0 213886 bytes_in 0 213886 station_ip 5.120.100.246 213886 port 90 213886 unique_id port 213891 username hamid1 213891 mac 213891 bytes_out 0 213891 bytes_in 0 213891 station_ip 5.119.68.246 213891 port 89 213891 unique_id port 213891 remote_ip 10.8.0.194 213893 username barzegar 213893 mac 213893 bytes_out 0 213893 bytes_in 0 213893 station_ip 5.119.221.217 213893 port 43 213893 unique_id port 213893 remote_ip 10.8.1.30 213897 username mohammadjavad 213897 kill_reason Another user logged on this global unique id 213897 mac 213897 bytes_out 0 213897 bytes_in 0 213897 station_ip 37.129.220.16 213897 port 92 213897 unique_id port 213898 username khorasani9135 213898 kill_reason Another user logged on this global unique id 213898 mac 213898 bytes_out 0 213898 bytes_in 0 213898 station_ip 83.123.215.186 213898 port 93 213898 unique_id port 213898 remote_ip 10.8.0.90 213900 username jafari 213900 mac 213900 bytes_out 0 213900 bytes_in 0 213900 station_ip 37.137.15.17 213900 port 91 213900 unique_id port 213906 username nilufarrajaei 213906 mac 213906 bytes_out 0 213906 bytes_in 0 213906 station_ip 83.123.181.169 213906 port 84 213906 unique_id port 213908 username hamid1430 213908 kill_reason Another user logged on this global unique id 213908 mac 213908 bytes_out 0 213908 bytes_in 0 213908 station_ip 37.129.180.66 213908 port 80 213908 unique_id port 213908 remote_ip 10.8.0.166 213910 username hamid1430 213910 mac 213910 bytes_out 0 213910 bytes_in 0 213910 station_ip 37.129.180.66 213910 port 80 213910 unique_id port 213913 username barzegar 213913 mac 213913 bytes_out 0 213913 bytes_in 0 213913 station_ip 5.119.221.217 213913 port 43 213913 unique_id port 213913 remote_ip 10.8.1.30 213919 username barzegar 213919 mac 213919 bytes_out 0 213919 bytes_in 0 213919 station_ip 5.119.221.217 213919 port 78 213919 unique_id port 213919 remote_ip 10.8.0.34 213920 username amiresmaeili0609 213920 mac 213920 bytes_out 0 213920 bytes_in 0 213920 station_ip 37.129.89.246 213920 port 78 213920 unique_id port 213920 remote_ip 10.8.0.202 213921 username naeimeh 213921 mac 213921 bytes_out 1703998 213921 bytes_in 10297552 213921 station_ip 37.129.110.126 213921 port 50 213921 unique_id port 213921 remote_ip 10.8.0.174 213929 username sabaghnezhad 213890 unique_id port 213890 remote_ip 10.8.0.10 213892 username jafari 213892 kill_reason Another user logged on this global unique id 213892 mac 213892 bytes_out 0 213892 bytes_in 0 213892 station_ip 37.137.15.17 213892 port 91 213892 unique_id port 213892 remote_ip 10.8.0.110 213894 username sabaghnezhad 213894 mac 213894 bytes_out 1221911 213894 bytes_in 4418909 213894 station_ip 37.129.100.222 213894 port 87 213894 unique_id port 213894 remote_ip 10.8.0.94 213896 username soleymani5056 213896 mac 213896 bytes_out 228293 213896 bytes_in 523644 213896 station_ip 5.120.26.89 213896 port 95 213896 unique_id port 213896 remote_ip 10.8.0.246 213901 username barzegar 213901 mac 213901 bytes_out 0 213901 bytes_in 0 213901 station_ip 5.119.221.217 213901 port 87 213901 unique_id port 213901 remote_ip 10.8.0.34 213902 username mohammadjavad 213902 kill_reason Another user logged on this global unique id 213902 mac 213902 bytes_out 0 213902 bytes_in 0 213902 station_ip 37.129.220.16 213902 port 92 213902 unique_id port 213903 username motamedi9772 213903 kill_reason Another user logged on this global unique id 213903 mac 213903 bytes_out 0 213903 bytes_in 0 213903 station_ip 37.129.102.13 213903 port 78 213903 unique_id port 213903 remote_ip 10.8.0.86 213905 username pourshad 213905 kill_reason Another user logged on this global unique id 213905 mac 213905 bytes_out 0 213905 bytes_in 0 213905 station_ip 5.120.100.246 213905 port 90 213905 unique_id port 213909 username farhad3 213909 kill_reason Another user logged on this global unique id 213909 mac 213909 bytes_out 0 213909 bytes_in 0 213909 station_ip 5.119.204.252 213909 port 75 213909 unique_id port 213909 remote_ip 10.8.0.98 213911 username pourshad 213911 kill_reason Another user logged on this global unique id 213911 mac 213911 bytes_out 0 213911 bytes_in 0 213911 station_ip 5.120.100.246 213911 port 90 213911 unique_id port 213912 username barzegar 213912 mac 213912 bytes_out 0 213912 bytes_in 0 213912 station_ip 5.119.221.217 213912 port 50 213912 unique_id port 213912 remote_ip 10.8.0.34 213914 username motamedi9772 213914 mac 213914 bytes_out 0 213914 bytes_in 0 213914 station_ip 37.129.102.13 213914 port 78 213914 unique_id port 213916 username soleymani5056 213916 mac 213916 bytes_out 21272 213916 bytes_in 32431 213916 station_ip 5.120.85.134 213916 port 50 213916 unique_id port 213916 remote_ip 10.8.0.246 213917 username mohammadjavad 213917 mac 213917 bytes_out 0 213917 bytes_in 0 213917 station_ip 37.129.220.16 213917 port 92 213917 unique_id port 213922 username barzegar 213922 mac 213922 bytes_out 0 213922 bytes_in 0 213922 station_ip 5.119.221.217 213922 port 84 213922 unique_id port 213922 remote_ip 10.8.0.34 213923 username naeimeh 213923 mac 213923 bytes_out 2006433 213923 bytes_in 22858287 213923 station_ip 83.123.95.156 213923 port 78 213923 unique_id port 213923 remote_ip 10.8.0.174 213925 username pourshad 213925 kill_reason Another user logged on this global unique id 213925 mac 213925 bytes_out 0 213925 bytes_in 0 213925 station_ip 5.120.100.246 213925 port 90 213925 unique_id port 213926 username farhad3 213926 mac 213926 bytes_out 0 213926 bytes_in 0 213926 station_ip 5.119.204.252 213926 port 75 213926 unique_id port 213927 username barzegar 213927 mac 213927 bytes_out 0 213927 bytes_in 0 213927 station_ip 5.119.221.217 213927 port 75 213927 unique_id port 213927 remote_ip 10.8.0.34 213934 username barzegar 213934 mac 213934 bytes_out 0 213934 bytes_in 0 213934 station_ip 5.119.221.217 213929 mac 213929 bytes_out 0 213929 bytes_in 0 213929 station_ip 37.129.236.56 213929 port 50 213929 unique_id port 213929 remote_ip 10.8.0.94 213933 username barzegar 213933 mac 213933 bytes_out 0 213933 bytes_in 0 213933 station_ip 5.119.221.217 213933 port 75 213933 unique_id port 213933 remote_ip 10.8.0.34 213935 username mohammadjavad 213935 kill_reason Another user logged on this global unique id 213935 mac 213935 bytes_out 0 213935 bytes_in 0 213935 station_ip 83.122.195.190 213935 port 50 213935 unique_id port 213935 remote_ip 10.8.0.138 213936 username mohammadjavad 213936 mac 213936 bytes_out 0 213936 bytes_in 0 213936 station_ip 83.122.195.190 213936 port 50 213936 unique_id port 213937 username barzegar 213937 mac 213937 bytes_out 0 213937 bytes_in 0 213937 station_ip 5.119.221.217 213937 port 50 213937 unique_id port 213937 remote_ip 10.8.0.34 213938 username barzegar 213938 mac 213938 bytes_out 0 213938 bytes_in 0 213938 station_ip 5.119.221.217 213938 port 50 213938 unique_id port 213938 remote_ip 10.8.0.34 213941 username farhad3 213941 mac 213941 bytes_out 0 213941 bytes_in 0 213941 station_ip 5.119.204.252 213941 port 43 213941 unique_id port 213944 username barzegar 213944 mac 213944 bytes_out 0 213944 bytes_in 0 213944 station_ip 5.119.221.217 213944 port 43 213944 unique_id port 213944 remote_ip 10.8.1.30 213947 username barzegar 213947 mac 213947 bytes_out 0 213947 bytes_in 0 213947 station_ip 5.119.221.217 213947 port 43 213947 unique_id port 213947 remote_ip 10.8.1.30 213949 username kalantary6037 213949 mac 213949 bytes_out 149872 213949 bytes_in 495026 213949 station_ip 37.129.64.253 213949 port 46 213949 unique_id port 213949 remote_ip 10.8.0.18 213952 username farhad3 213952 mac 213952 bytes_out 1676571 213952 bytes_in 2876544 213952 station_ip 5.119.204.252 213952 port 46 213952 unique_id port 213952 remote_ip 10.8.0.98 213954 username kalantary6037 213954 mac 213954 bytes_out 206671 213954 bytes_in 622628 213954 station_ip 37.129.120.149 213954 port 46 213954 unique_id port 213954 remote_ip 10.8.0.18 213955 username barzegar 213955 mac 213955 bytes_out 0 213955 bytes_in 0 213955 station_ip 5.119.221.217 213955 port 43 213955 unique_id port 213955 remote_ip 10.8.1.30 213956 username barzegar 213956 mac 213956 bytes_out 0 213956 bytes_in 0 213956 station_ip 5.119.221.217 213956 port 46 213956 unique_id port 213956 remote_ip 10.8.0.34 213960 username kalantary6037 213960 mac 213960 bytes_out 424679 213960 bytes_in 3705731 213960 station_ip 37.129.76.77 213960 port 46 213960 unique_id port 213960 remote_ip 10.8.0.18 213961 username barzegar 213961 mac 213961 bytes_out 3046 213961 bytes_in 5533 213961 station_ip 5.119.221.217 213961 port 43 213961 unique_id port 213961 remote_ip 10.8.1.30 213963 username barzegar 213963 mac 213963 bytes_out 0 213963 bytes_in 0 213963 station_ip 5.119.221.217 213963 port 43 213963 unique_id port 213963 remote_ip 10.8.1.30 213967 username pourshad 213967 kill_reason Another user logged on this global unique id 213967 mac 213967 bytes_out 0 213967 bytes_in 0 213967 station_ip 5.120.100.246 213967 port 90 213967 unique_id port 213971 username barzegar 213971 mac 213971 bytes_out 0 213971 bytes_in 0 213971 station_ip 5.119.40.72 213971 port 43 213971 unique_id port 213971 remote_ip 10.8.1.30 213977 username pourshad 213977 kill_reason Another user logged on this global unique id 213977 mac 213977 bytes_out 0 213977 bytes_in 0 213931 mac 213931 bytes_out 0 213931 bytes_in 0 213931 station_ip 5.119.221.217 213931 port 50 213931 unique_id port 213931 remote_ip 10.8.0.34 213932 username barzegar 213932 mac 213932 bytes_out 0 213932 bytes_in 0 213932 station_ip 5.119.221.217 213932 port 50 213932 unique_id port 213932 remote_ip 10.8.0.34 213939 username farhad3 213939 kill_reason Another user logged on this global unique id 213939 mac 213939 bytes_out 0 213939 bytes_in 0 213939 station_ip 5.119.204.252 213939 port 43 213939 unique_id port 213939 remote_ip 10.8.1.86 213943 username pourshad 213943 kill_reason Another user logged on this global unique id 213943 mac 213943 bytes_out 0 213943 bytes_in 0 213943 station_ip 5.120.100.246 213943 port 90 213943 unique_id port 213948 username barzegar 213948 mac 213948 bytes_out 0 213948 bytes_in 0 213948 station_ip 5.119.221.217 213948 port 43 213948 unique_id port 213948 remote_ip 10.8.1.30 213950 username farhad3 213950 mac 213950 bytes_out 0 213950 bytes_in 0 213950 station_ip 5.119.204.252 213950 port 50 213950 unique_id port 213953 username barzegar 213953 mac 213953 bytes_out 0 213953 bytes_in 0 213953 station_ip 5.119.221.217 213953 port 46 213953 unique_id port 213953 remote_ip 10.8.0.34 213957 username pourshad 213957 kill_reason Another user logged on this global unique id 213957 mac 213957 bytes_out 0 213957 bytes_in 0 213957 station_ip 5.120.100.246 213957 port 90 213957 unique_id port 213958 username barzegar 213958 mac 213958 bytes_out 0 213958 bytes_in 0 213958 station_ip 5.119.221.217 213958 port 46 213958 unique_id port 213958 remote_ip 10.8.0.34 213964 username barzegar 213964 mac 213964 bytes_out 0 213964 bytes_in 0 213964 station_ip 5.119.221.217 213964 port 43 213964 unique_id port 213964 remote_ip 10.8.1.30 213965 username barzegar 213965 mac 213965 bytes_out 0 213965 bytes_in 0 213965 station_ip 5.119.221.217 213965 port 46 213965 unique_id port 213965 remote_ip 10.8.0.34 213968 username barzegar 213968 mac 213968 bytes_out 0 213968 bytes_in 0 213968 station_ip 5.119.40.72 213968 port 50 213968 unique_id port 213968 remote_ip 10.8.0.34 213972 username pourshad 213972 kill_reason Another user logged on this global unique id 213972 mac 213972 bytes_out 0 213972 bytes_in 0 213972 station_ip 5.120.100.246 213972 port 90 213972 unique_id port 213974 username esmaeili1522 213974 mac 213974 bytes_out 174430 213974 bytes_in 1567087 213974 station_ip 5.119.122.40 213974 port 46 213974 unique_id port 213974 remote_ip 10.8.0.190 213977 station_ip 5.120.100.246 213977 port 90 213977 unique_id port 213978 username barzegar 213978 mac 213978 bytes_out 0 213978 bytes_in 0 213978 station_ip 5.119.108.96 213978 port 43 213978 unique_id port 213978 remote_ip 10.8.1.30 213979 username alipour1506 213979 kill_reason Another user logged on this global unique id 213979 mac 213979 bytes_out 0 213979 bytes_in 0 213979 station_ip 94.176.8.78 213979 port 88 213979 unique_id port 213980 username pourshad 213980 kill_reason Another user logged on this global unique id 213980 mac 213980 bytes_out 0 213980 bytes_in 0 213980 station_ip 5.120.100.246 213980 port 90 213980 unique_id port 213981 username barzegar 213981 mac 213981 bytes_out 0 213981 bytes_in 0 213981 station_ip 5.119.108.96 213981 port 43 213981 unique_id port 213981 remote_ip 10.8.1.30 213982 username pourshad 213982 kill_reason Another user logged on this global unique id 213982 mac 213982 bytes_out 0 213982 bytes_in 0 213982 station_ip 5.120.100.246 213982 port 90 213934 port 51 213934 unique_id port 213934 remote_ip 10.8.1.30 213940 username pourshad 213940 kill_reason Another user logged on this global unique id 213940 mac 213940 bytes_out 0 213940 bytes_in 0 213940 station_ip 5.120.100.246 213940 port 90 213940 unique_id port 213942 username khalili2 213942 mac 213942 bytes_out 0 213942 bytes_in 0 213942 station_ip 5.119.209.186 213942 port 46 213942 unique_id port 213942 remote_ip 10.8.0.154 213945 username barzegar 213945 mac 213945 bytes_out 0 213945 bytes_in 0 213945 station_ip 5.119.221.217 213945 port 43 213945 unique_id port 213945 remote_ip 10.8.1.30 213946 username farhad3 213946 kill_reason Another user logged on this global unique id 213946 mac 213946 bytes_out 0 213946 bytes_in 0 213946 station_ip 5.119.204.252 213946 port 50 213946 unique_id port 213946 remote_ip 10.8.0.98 213951 username barzegar 213951 mac 213951 bytes_out 0 213951 bytes_in 0 213951 station_ip 5.119.221.217 213951 port 50 213951 unique_id port 213951 remote_ip 10.8.0.34 213959 username pourshad 213959 kill_reason Another user logged on this global unique id 213959 mac 213959 bytes_out 0 213959 bytes_in 0 213959 station_ip 5.120.100.246 213959 port 90 213959 unique_id port 213962 username barzegar 213962 mac 213962 bytes_out 0 213962 bytes_in 0 213962 station_ip 5.119.221.217 213962 port 46 213962 unique_id port 213962 remote_ip 10.8.0.34 213966 username barzegar 213966 mac 213966 bytes_out 0 213966 bytes_in 0 213966 station_ip 5.119.221.217 213966 port 46 213966 unique_id port 213966 remote_ip 10.8.0.34 213969 username pourshad 213969 kill_reason Another user logged on this global unique id 213969 mac 213969 bytes_out 0 213969 bytes_in 0 213969 station_ip 5.120.100.246 213969 port 90 213969 unique_id port 213970 username kalantary6037 213970 mac 213970 bytes_out 0 213970 bytes_in 0 213970 station_ip 37.129.64.229 213970 port 46 213970 unique_id port 213970 remote_ip 10.8.0.18 213973 username pourshad 213973 kill_reason Another user logged on this global unique id 213973 mac 213973 bytes_out 0 213973 bytes_in 0 213973 station_ip 5.120.100.246 213973 port 90 213973 unique_id port 213975 username barzegar 213975 mac 213975 bytes_out 0 213975 bytes_in 0 213975 station_ip 5.119.108.96 213975 port 50 213975 unique_id port 213975 remote_ip 10.8.0.34 213976 username kalantary6037 213976 mac 213976 bytes_out 0 213976 bytes_in 0 213976 station_ip 37.129.80.185 213976 port 46 213976 unique_id port 213976 remote_ip 10.8.0.18 213982 unique_id port 213983 username pourshad 213983 kill_reason Another user logged on this global unique id 213983 mac 213983 bytes_out 0 213983 bytes_in 0 213983 station_ip 5.120.100.246 213983 port 90 213983 unique_id port 213984 username barzegar 213984 mac 213984 bytes_out 0 213984 bytes_in 0 213984 station_ip 5.119.108.96 213984 port 43 213984 unique_id port 213984 remote_ip 10.8.1.30 213985 username pourshad 213985 kill_reason Another user logged on this global unique id 213985 mac 213985 bytes_out 0 213985 bytes_in 0 213985 station_ip 5.120.100.246 213985 port 90 213985 unique_id port 213986 username houshang 213986 mac 213986 bytes_out 429313 213986 bytes_in 2336626 213986 station_ip 5.120.20.39 213986 port 46 213986 unique_id port 213986 remote_ip 10.8.0.158 213987 username barzegar 213987 mac 213987 bytes_out 0 213987 bytes_in 0 213987 station_ip 5.119.108.96 213987 port 46 213987 unique_id port 213987 remote_ip 10.8.0.34 213988 username pourshad 213988 kill_reason Another user logged on this global unique id 213988 mac 213988 bytes_out 0 213988 bytes_in 0 213988 station_ip 5.120.100.246 213988 port 90 213988 unique_id port 213990 username barzegar 213990 mac 213990 bytes_out 0 213990 bytes_in 0 213990 station_ip 5.119.108.96 213990 port 43 213990 unique_id port 213990 remote_ip 10.8.1.30 213999 username morteza4424 213999 mac 213999 bytes_out 0 213999 bytes_in 0 213999 station_ip 37.129.238.62 213999 port 46 213999 unique_id port 213999 remote_ip 10.8.0.150 214004 username pourshad 214004 kill_reason Another user logged on this global unique id 214004 mac 214004 bytes_out 0 214004 bytes_in 0 214004 station_ip 5.120.100.246 214004 port 90 214004 unique_id port 214006 username mohammadjavad 214006 mac 214006 bytes_out 0 214006 bytes_in 0 214006 station_ip 83.122.242.178 214006 port 78 214006 unique_id port 214006 remote_ip 10.8.0.138 214008 username jafari 214008 kill_reason Another user logged on this global unique id 214008 mac 214008 bytes_out 0 214008 bytes_in 0 214008 station_ip 5.134.178.38 214008 port 46 214008 unique_id port 214008 remote_ip 10.8.0.110 214014 username pourshad 214014 kill_reason Another user logged on this global unique id 214014 mac 214014 bytes_out 0 214014 bytes_in 0 214014 station_ip 5.120.100.246 214014 port 78 214014 unique_id port 214015 username yaghobi 214015 mac 214015 bytes_out 2470142 214015 bytes_in 21661266 214015 station_ip 37.129.84.170 214015 port 75 214015 unique_id port 214015 remote_ip 10.8.0.106 214020 username malekpoir 214020 mac 214020 bytes_out 0 214020 bytes_in 0 214020 station_ip 5.119.46.56 214020 port 87 214020 unique_id port 214020 remote_ip 10.8.0.178 214031 username sabaghnezhad 214031 mac 214031 bytes_out 21264 214031 bytes_in 59912 214031 station_ip 83.123.135.249 214031 port 50 214031 unique_id port 214031 remote_ip 10.8.0.94 214036 username pourshad 214036 kill_reason Another user logged on this global unique id 214036 mac 214036 bytes_out 0 214036 bytes_in 0 214036 station_ip 5.120.100.246 214036 port 78 214036 unique_id port 214037 username sekonji0496 214037 kill_reason Another user logged on this global unique id 214037 mac 214037 bytes_out 0 214037 bytes_in 0 214037 station_ip 83.123.29.94 214037 port 84 214037 unique_id port 214037 remote_ip 10.8.0.70 214043 username sekonji0496 214043 kill_reason Another user logged on this global unique id 214043 mac 214043 bytes_out 0 214043 bytes_in 0 214043 station_ip 83.123.29.94 214043 port 84 214043 unique_id port 214047 username hamid1430 214047 mac 214047 bytes_out 595102 214047 bytes_in 2752784 214047 station_ip 37.129.233.182 214047 port 90 214047 unique_id port 214047 remote_ip 10.8.0.166 214050 username rahim 214050 mac 214050 bytes_out 0 214050 bytes_in 0 214050 station_ip 5.119.106.63 214050 port 75 214050 unique_id port 214050 remote_ip 10.8.0.6 214051 username jafari 214051 mac 214051 bytes_out 137643 214051 bytes_in 767724 214051 station_ip 5.200.112.31 214051 port 89 214051 unique_id port 214051 remote_ip 10.8.0.110 214054 username hamid2 214054 mac 214054 bytes_out 934019 214054 bytes_in 6216519 214054 station_ip 5.119.246.134 214054 port 51 214054 unique_id port 214054 remote_ip 10.8.1.38 214055 username barzegar 214055 mac 214055 bytes_out 0 214055 bytes_in 0 214055 station_ip 5.120.40.129 214055 port 51 214055 unique_id port 214055 remote_ip 10.8.1.30 214057 username pourshad 214057 kill_reason Another user logged on this global unique id 214057 mac 214057 bytes_out 0 214057 bytes_in 0 214057 station_ip 5.120.100.246 214057 port 78 214057 unique_id port 213989 username mohammadjavad 213989 mac 213989 bytes_out 0 213989 bytes_in 0 213989 station_ip 83.122.151.166 213989 port 46 213989 unique_id port 213989 remote_ip 10.8.0.138 213991 username pourshad 213991 kill_reason Another user logged on this global unique id 213991 mac 213991 bytes_out 0 213991 bytes_in 0 213991 station_ip 5.120.100.246 213991 port 90 213991 unique_id port 213993 username aminvpn 213993 unique_id port 213993 terminate_cause Lost-Carrier 213993 bytes_out 733325 213993 bytes_in 2576184 213993 station_ip 37.129.42.58 213993 port 15728820 213993 nas_port_type Virtual 213993 remote_ip 5.5.5.245 213994 username mohammadjavad 213994 mac 213994 bytes_out 0 213994 bytes_in 0 213994 station_ip 83.122.222.182 213994 port 50 213994 unique_id port 213994 remote_ip 10.8.0.138 213996 username morteza4424 213996 mac 213996 bytes_out 1023139 213996 bytes_in 15234389 213996 station_ip 37.129.238.62 213996 port 46 213996 unique_id port 213996 remote_ip 10.8.0.150 214000 username morteza4424 214000 mac 214000 bytes_out 0 214000 bytes_in 0 214000 station_ip 37.129.238.62 214000 port 51 214000 unique_id port 214000 remote_ip 10.8.1.42 214001 username pourshad 214001 kill_reason Another user logged on this global unique id 214001 mac 214001 bytes_out 0 214001 bytes_in 0 214001 station_ip 5.120.100.246 214001 port 90 214001 unique_id port 214003 username barzegar 214003 mac 214003 bytes_out 0 214003 bytes_in 0 214003 station_ip 5.119.108.96 214003 port 51 214003 unique_id port 214003 remote_ip 10.8.1.30 214005 username barzegar 214005 kill_reason Maximum check online fails reached 214005 mac 214005 bytes_out 0 214005 bytes_in 0 214005 station_ip 5.120.188.175 214005 port 80 214005 unique_id port 214007 username pourshad 214007 kill_reason Another user logged on this global unique id 214007 mac 214007 bytes_out 0 214007 bytes_in 0 214007 station_ip 5.120.100.246 214007 port 90 214007 unique_id port 214009 username pourshad 214009 mac 214009 bytes_out 0 214009 bytes_in 0 214009 station_ip 5.120.100.246 214009 port 90 214009 unique_id port 214011 username pourshad 214011 mac 214011 bytes_out 0 214011 bytes_in 0 214011 station_ip 5.120.100.246 214011 port 46 214011 unique_id port 214011 remote_ip 10.8.0.122 214016 username mirzaei6046 214016 kill_reason Another user logged on this global unique id 214016 mac 214016 bytes_out 0 214016 bytes_in 0 214016 station_ip 5.120.121.238 214016 port 41 214016 unique_id port 214023 username pourshad 214023 kill_reason Another user logged on this global unique id 214023 mac 214023 bytes_out 0 214023 bytes_in 0 214023 station_ip 5.120.100.246 214023 port 78 214023 unique_id port 214024 username sabaghnezhad 214024 mac 214024 bytes_out 0 214024 bytes_in 0 214024 station_ip 83.123.135.249 214024 port 50 214024 unique_id port 214024 remote_ip 10.8.0.94 214028 username pourshad 214028 kill_reason Another user logged on this global unique id 214028 mac 214028 bytes_out 0 214028 bytes_in 0 214028 station_ip 5.120.100.246 214028 port 78 214028 unique_id port 214029 username kalantary6037 214029 mac 214029 bytes_out 0 214029 bytes_in 0 214029 station_ip 37.129.37.21 214029 port 46 214029 unique_id port 214029 remote_ip 10.8.0.18 214030 username jafari 214030 mac 214030 bytes_out 0 214030 bytes_in 0 214030 station_ip 5.200.112.31 214030 port 75 214030 unique_id port 214030 remote_ip 10.8.0.110 214033 username jafari 214033 mac 214033 bytes_out 11091 214033 bytes_in 14325 214033 station_ip 5.200.112.31 214033 port 46 214033 unique_id port 213992 username morteza4424 213992 mac 213992 bytes_out 634488 213992 bytes_in 7688543 213992 station_ip 37.129.238.62 213992 port 46 213992 unique_id port 213992 remote_ip 10.8.0.150 213995 username pourshad 213995 kill_reason Another user logged on this global unique id 213995 mac 213995 bytes_out 0 213995 bytes_in 0 213995 station_ip 5.120.100.246 213995 port 90 213995 unique_id port 213997 username barzegar 213997 mac 213997 bytes_out 0 213997 bytes_in 0 213997 station_ip 5.119.108.96 213997 port 46 213997 unique_id port 213997 remote_ip 10.8.0.34 213998 username morteza4424 213998 kill_reason Maximum check online fails reached 213998 mac 213998 bytes_out 0 213998 bytes_in 0 213998 station_ip 37.129.238.62 213998 port 43 213998 unique_id port 214002 username morteza4424 214002 mac 214002 bytes_out 4487 214002 bytes_in 34550 214002 station_ip 37.129.238.62 214002 port 46 214002 unique_id port 214002 remote_ip 10.8.0.150 214010 username jafari 214010 mac 214010 bytes_out 0 214010 bytes_in 0 214010 station_ip 5.134.178.38 214010 port 46 214010 unique_id port 214012 username barzegar 214012 mac 214012 bytes_out 0 214012 bytes_in 0 214012 station_ip 5.120.188.175 214012 port 46 214012 unique_id port 214012 remote_ip 10.8.0.34 214013 username pourshad 214013 kill_reason Another user logged on this global unique id 214013 mac 214013 bytes_out 0 214013 bytes_in 0 214013 station_ip 5.120.100.246 214013 port 78 214013 unique_id port 214013 remote_ip 10.8.0.122 214017 username pourshad 214017 kill_reason Another user logged on this global unique id 214017 mac 214017 bytes_out 0 214017 bytes_in 0 214017 station_ip 5.120.100.246 214017 port 78 214017 unique_id port 214018 username morteza4424 214018 mac 214018 bytes_out 0 214018 bytes_in 0 214018 station_ip 37.129.152.74 214018 port 84 214018 unique_id port 214018 remote_ip 10.8.0.150 214019 username barzegar 214019 mac 214019 bytes_out 0 214019 bytes_in 0 214019 station_ip 5.120.40.129 214019 port 84 214019 unique_id port 214019 remote_ip 10.8.0.34 214021 username alipour1506 214021 mac 214021 bytes_out 0 214021 bytes_in 0 214021 station_ip 94.176.8.78 214021 port 88 214021 unique_id port 214022 username malekpoir 214022 mac 214022 bytes_out 15065 214022 bytes_in 26107 214022 station_ip 5.119.164.123 214022 port 84 214022 unique_id port 214022 remote_ip 10.8.0.178 214025 username yaghobi 214025 mac 214025 bytes_out 0 214025 bytes_in 0 214025 station_ip 37.129.84.170 214025 port 46 214025 unique_id port 214025 remote_ip 10.8.0.106 214026 username sabaghnezhad 214026 mac 214026 bytes_out 0 214026 bytes_in 0 214026 station_ip 83.123.135.249 214026 port 50 214026 unique_id port 214026 remote_ip 10.8.0.94 214027 username barzegar 214027 mac 214027 bytes_out 0 214027 bytes_in 0 214027 station_ip 5.120.40.129 214027 port 84 214027 unique_id port 214027 remote_ip 10.8.0.34 214032 username kharazmi2920 214032 mac 214032 bytes_out 0 214032 bytes_in 0 214032 station_ip 83.123.139.200 214032 port 50 214032 unique_id port 214032 remote_ip 10.8.0.54 214034 username jafari 214034 mac 214034 bytes_out 0 214034 bytes_in 0 214034 station_ip 5.200.112.31 214034 port 50 214034 unique_id port 214034 remote_ip 10.8.0.110 214041 username rahim 214041 mac 214041 bytes_out 0 214041 bytes_in 0 214041 station_ip 5.119.106.63 214041 port 75 214041 unique_id port 214041 remote_ip 10.8.0.6 214044 username pourshad 214044 mac 214044 bytes_out 0 214044 bytes_in 0 214033 remote_ip 10.8.0.110 214035 username motamedi9772 214035 mac 214035 bytes_out 0 214035 bytes_in 0 214035 station_ip 37.129.87.117 214035 port 46 214035 unique_id port 214035 remote_ip 10.8.0.86 214038 username barzegar 214038 mac 214038 bytes_out 0 214038 bytes_in 0 214038 station_ip 5.120.40.129 214038 port 51 214038 unique_id port 214038 remote_ip 10.8.1.30 214039 username yaghobi 214039 mac 214039 bytes_out 161697 214039 bytes_in 249891 214039 station_ip 37.129.7.138 214039 port 46 214039 unique_id port 214039 remote_ip 10.8.0.106 214040 username rahim 214040 mac 214040 bytes_out 0 214040 bytes_in 0 214040 station_ip 5.119.106.63 214040 port 75 214040 unique_id port 214040 remote_ip 10.8.0.6 214042 username sabaghnezhad 214042 mac 214042 bytes_out 0 214042 bytes_in 0 214042 station_ip 83.123.135.249 214042 port 88 214042 unique_id port 214042 remote_ip 10.8.0.94 214045 username hamid.e 214045 unique_id port 214045 terminate_cause Lost-Carrier 214045 bytes_out 3831204 214045 bytes_in 140201914 214045 station_ip 151.238.229.21 214045 port 15728640 214045 nas_port_type Virtual 214045 remote_ip 5.5.5.255 214048 username sekonji0496 214048 kill_reason Another user logged on this global unique id 214048 mac 214048 bytes_out 0 214048 bytes_in 0 214048 station_ip 83.123.29.94 214048 port 84 214048 unique_id port 214049 username malekpoir 214049 mac 214049 bytes_out 3482497 214049 bytes_in 26264120 214049 station_ip 5.119.164.123 214049 port 87 214049 unique_id port 214049 remote_ip 10.8.0.178 214052 username barzegar 214052 mac 214052 bytes_out 0 214052 bytes_in 0 214052 station_ip 5.120.40.129 214052 port 87 214052 unique_id port 214052 remote_ip 10.8.0.34 214053 username pourshad 214053 kill_reason Another user logged on this global unique id 214053 mac 214053 bytes_out 0 214053 bytes_in 0 214053 station_ip 5.120.100.246 214053 port 78 214053 unique_id port 214053 remote_ip 10.8.0.122 214056 username jafari 214056 mac 214056 bytes_out 41236 214056 bytes_in 119141 214056 station_ip 5.200.112.31 214056 port 75 214056 unique_id port 214056 remote_ip 10.8.0.110 214060 username alipour1506 214060 mac 214060 bytes_out 399795 214060 bytes_in 3263895 214060 station_ip 37.129.126.107 214060 port 88 214060 unique_id port 214060 remote_ip 10.8.0.46 214061 username barzegar 214061 kill_reason Maximum check online fails reached 214061 mac 214061 bytes_out 0 214061 bytes_in 0 214061 station_ip 5.112.204.35 214061 port 87 214061 unique_id port 214063 username hamid.e 214063 unique_id port 214063 terminate_cause Lost-Carrier 214063 bytes_out 2242822 214063 bytes_in 60627832 214063 station_ip 151.238.229.21 214063 port 15728641 214063 nas_port_type Virtual 214063 remote_ip 5.5.5.255 214064 username jafari 214064 mac 214064 bytes_out 11769 214064 bytes_in 18042 214064 station_ip 5.200.112.31 214064 port 75 214064 unique_id port 214064 remote_ip 10.8.0.110 214066 username jafari 214066 mac 214066 bytes_out 0 214066 bytes_in 0 214066 station_ip 5.200.112.31 214066 port 75 214066 unique_id port 214066 remote_ip 10.8.0.110 214069 username barzegar 214069 mac 214069 bytes_out 0 214069 bytes_in 0 214069 station_ip 5.119.100.234 214069 port 75 214069 unique_id port 214069 remote_ip 10.8.0.34 214070 username yaghobi 214070 mac 214070 bytes_out 0 214070 bytes_in 0 214070 station_ip 37.129.56.34 214070 port 75 214070 unique_id port 214070 remote_ip 10.8.0.106 214072 username barzegar 214072 mac 214072 bytes_out 0 214072 bytes_in 0 214072 station_ip 5.119.100.234 214044 station_ip 5.120.100.246 214044 port 78 214044 unique_id port 214046 username barzegar 214046 mac 214046 bytes_out 0 214046 bytes_in 0 214046 station_ip 5.120.40.129 214046 port 88 214046 unique_id port 214046 remote_ip 10.8.0.34 214058 username jafari 214058 mac 214058 bytes_out 24344 214058 bytes_in 97564 214058 station_ip 5.200.112.31 214058 port 87 214058 unique_id port 214058 remote_ip 10.8.0.110 214059 username mirzaei6046 214059 kill_reason Another user logged on this global unique id 214059 mac 214059 bytes_out 0 214059 bytes_in 0 214059 station_ip 5.120.121.238 214059 port 41 214059 unique_id port 214062 username safari2994 214062 mac 214062 bytes_out 769483 214062 bytes_in 1255537 214062 station_ip 5.202.56.65 214062 port 50 214062 unique_id port 214062 remote_ip 10.8.0.118 214067 username barzegar 214067 mac 214067 bytes_out 0 214067 bytes_in 0 214067 station_ip 5.119.100.234 214067 port 52 214067 unique_id port 214067 remote_ip 10.8.1.30 214068 username sekonji0496 214068 mac 214068 bytes_out 0 214068 bytes_in 0 214068 station_ip 83.123.29.94 214068 port 84 214068 unique_id port 214071 username jafari 214071 mac 214071 bytes_out 0 214071 bytes_in 0 214071 station_ip 5.200.112.31 214071 port 50 214071 unique_id port 214071 remote_ip 10.8.0.110 214073 username sabaghnezhad 214073 mac 214073 bytes_out 0 214073 bytes_in 0 214073 station_ip 83.123.135.249 214073 port 50 214073 unique_id port 214073 remote_ip 10.8.0.94 214075 username hamid.e 214075 kill_reason Maximum number of concurrent logins reached 214075 unique_id port 214075 bytes_out 0 214075 bytes_in 0 214075 station_ip 37.27.10.150 214075 port 15728643 214075 nas_port_type Virtual 214080 username alipour1506 214080 mac 214080 bytes_out 351281 214080 bytes_in 1863638 214080 station_ip 37.129.126.107 214080 port 51 214080 unique_id port 214080 remote_ip 10.8.1.158 214081 username alipour1506 214081 mac 214081 bytes_out 0 214081 bytes_in 0 214081 station_ip 94.183.212.137 214081 port 51 214081 unique_id port 214081 remote_ip 10.8.1.158 214083 username meysam 214083 kill_reason Another user logged on this global unique id 214083 mac 214083 bytes_out 0 214083 bytes_in 0 214083 station_ip 188.159.254.207 214083 port 50 214083 unique_id port 214083 remote_ip 10.8.0.102 214086 username mohammadjavad 214086 mac 214086 bytes_out 0 214086 bytes_in 0 214086 station_ip 37.129.218.21 214086 port 46 214086 unique_id port 214086 remote_ip 10.8.0.138 214089 username aminvpnipad 214089 mac 214089 bytes_out 0 214089 bytes_in 0 214089 station_ip 5.120.173.120 214089 port 1 214089 unique_id port 214089 remote_ip 10.8.0.2 214093 username aminvpnipad 214093 mac 214093 bytes_out 0 214093 bytes_in 0 214093 station_ip 5.120.173.120 214093 port 1 214093 unique_id port 214093 remote_ip 10.8.0.2 214094 username hamid1 214094 mac 214094 bytes_out 0 214094 bytes_in 0 214094 station_ip 5.119.68.246 214094 port 84 214094 unique_id port 214094 remote_ip 10.8.0.194 214099 username soleymani5056 214099 mac 214099 bytes_out 0 214099 bytes_in 0 214099 station_ip 5.119.90.61 214099 port 50 214099 unique_id port 214099 remote_ip 10.8.0.246 214102 username soleymani5056 214102 mac 214102 bytes_out 0 214102 bytes_in 0 214102 station_ip 5.119.165.141 214102 port 84 214102 unique_id port 214102 remote_ip 10.8.0.246 214103 username barzegar 214103 mac 214103 bytes_out 0 214103 bytes_in 0 214103 station_ip 5.119.202.248 214103 port 52 214103 unique_id port 214065 username jafari 214065 mac 214065 bytes_out 4451 214065 bytes_in 8286 214065 station_ip 5.200.112.31 214065 port 50 214065 unique_id port 214065 remote_ip 10.8.0.110 214074 username hamid.e 214074 kill_reason Maximum number of concurrent logins reached 214074 unique_id port 214074 bytes_out 0 214074 bytes_in 0 214074 station_ip 37.27.10.150 214074 port 15728642 214074 nas_port_type Virtual 214077 username morteza4424 214077 mac 214077 bytes_out 0 214077 bytes_in 0 214077 station_ip 37.129.162.86 214077 port 50 214077 unique_id port 214077 remote_ip 10.8.0.150 214079 username motamedi9772 214079 mac 214079 bytes_out 0 214079 bytes_in 0 214079 station_ip 37.129.54.253 214079 port 88 214079 unique_id port 214079 remote_ip 10.8.0.86 214082 username godarzi 214082 mac 214082 bytes_out 0 214082 bytes_in 0 214082 station_ip 5.202.65.237 214082 port 46 214082 unique_id port 214082 remote_ip 10.8.0.74 214087 username kalantary6037 214087 mac 214087 bytes_out 0 214087 bytes_in 0 214087 station_ip 37.129.110.1 214087 port 84 214087 unique_id port 214087 remote_ip 10.8.0.18 214090 username tahmorsi 214090 mac 214090 bytes_out 0 214090 bytes_in 0 214090 station_ip 86.57.116.69 214090 port 88 214090 unique_id port 214090 remote_ip 10.8.0.210 214097 username aminvpnipad 214097 mac 214097 bytes_out 0 214097 bytes_in 0 214097 station_ip 5.120.173.120 214097 port 1 214097 unique_id port 214097 remote_ip 10.8.0.2 214101 username jafari 214101 mac 214101 bytes_out 0 214101 bytes_in 0 214101 station_ip 5.200.112.31 214101 port 75 214101 unique_id port 214106 username mohammadjavad 214106 mac 214106 bytes_out 0 214106 bytes_in 0 214106 station_ip 37.129.234.253 214106 port 52 214106 unique_id port 214106 remote_ip 10.8.1.142 214107 username hamid2 214107 mac 214107 bytes_out 0 214107 bytes_in 0 214107 station_ip 94.241.175.77 214107 port 52 214107 unique_id port 214107 remote_ip 10.8.1.38 214109 username mohammadjavad 214109 mac 214109 bytes_out 0 214109 bytes_in 0 214109 station_ip 37.129.234.253 214109 port 75 214109 unique_id port 214109 remote_ip 10.8.0.138 214114 username hamid2 214114 mac 214114 bytes_out 0 214114 bytes_in 0 214114 station_ip 94.241.175.77 214114 port 52 214114 unique_id port 214114 remote_ip 10.8.1.38 214116 username hamid.e 214116 unique_id port 214116 terminate_cause Lost-Carrier 214116 bytes_out 6308390 214116 bytes_in 33670246 214116 station_ip 37.27.10.150 214116 port 15728644 214116 nas_port_type Virtual 214116 remote_ip 5.5.5.254 214118 username hamid.e 214118 unique_id port 214118 terminate_cause User-Request 214118 bytes_out 77423 214118 bytes_in 636001 214118 station_ip 37.27.21.56 214118 port 15728645 214118 nas_port_type Virtual 214118 remote_ip 5.5.5.253 214120 username aminvpnipad 214120 mac 214120 bytes_out 0 214120 bytes_in 0 214120 station_ip 5.120.173.120 214120 port 1 214120 unique_id port 214120 remote_ip 10.8.0.2 214122 username hamid2 214122 mac 214122 bytes_out 0 214122 bytes_in 0 214122 station_ip 94.241.175.77 214122 port 75 214122 unique_id port 214122 remote_ip 10.8.0.78 214125 username hamid2 214125 mac 214125 bytes_out 0 214125 bytes_in 0 214125 station_ip 94.241.175.77 214125 port 91 214125 unique_id port 214125 remote_ip 10.8.0.78 214126 username hamid2 214126 mac 214126 bytes_out 0 214126 bytes_in 0 214126 station_ip 94.241.175.77 214126 port 91 214126 unique_id port 214126 remote_ip 10.8.0.78 214129 username aminvpnipad 214129 mac 214072 port 52 214072 unique_id port 214072 remote_ip 10.8.1.30 214076 username hamid.e 214076 mac 214076 bytes_out 0 214076 bytes_in 0 214076 station_ip 37.27.10.150 214076 port 50 214076 unique_id port 214076 remote_ip 10.8.0.62 214078 username alipour1506 214078 mac 214078 bytes_out 144489 214078 bytes_in 676589 214078 station_ip 37.129.126.107 214078 port 51 214078 unique_id port 214078 remote_ip 10.8.1.158 214084 username sekonji0496 214084 mac 214084 bytes_out 136763 214084 bytes_in 205675 214084 station_ip 83.123.29.94 214084 port 84 214084 unique_id port 214084 remote_ip 10.8.0.70 214085 username sekonji0496 214085 mac 214085 bytes_out 0 214085 bytes_in 0 214085 station_ip 83.123.29.94 214085 port 84 214085 unique_id port 214085 remote_ip 10.8.0.70 214088 username aminvpnipad 214088 mac 214088 bytes_out 0 214088 bytes_in 0 214088 station_ip 5.120.173.120 214088 port 1 214088 unique_id port 214088 remote_ip 10.8.0.2 214091 username meysam 214091 kill_reason Another user logged on this global unique id 214091 mac 214091 bytes_out 0 214091 bytes_in 0 214091 station_ip 188.159.254.207 214091 port 50 214091 unique_id port 214092 username alipour1506 214092 mac 214092 bytes_out 0 214092 bytes_in 0 214092 station_ip 94.183.212.137 214092 port 51 214092 unique_id port 214092 remote_ip 10.8.1.158 214095 username meysam 214095 mac 214095 bytes_out 0 214095 bytes_in 0 214095 station_ip 188.159.254.207 214095 port 50 214095 unique_id port 214096 username barzegar 214096 mac 214096 bytes_out 13556 214096 bytes_in 26118 214096 station_ip 5.112.99.110 214096 port 84 214096 unique_id port 214096 remote_ip 10.8.0.34 214098 username barzegar 214098 mac 214098 bytes_out 0 214098 bytes_in 0 214098 station_ip 5.112.99.110 214098 port 84 214098 unique_id port 214098 remote_ip 10.8.0.34 214100 username jafari 214100 kill_reason Another user logged on this global unique id 214100 mac 214100 bytes_out 0 214100 bytes_in 0 214100 station_ip 5.200.112.31 214100 port 75 214100 unique_id port 214100 remote_ip 10.8.0.110 214104 username barzegar8595 214104 mac 214104 bytes_out 0 214104 bytes_in 0 214104 station_ip 46.225.212.246 214104 port 53 214104 unique_id port 214104 remote_ip 10.8.1.26 214112 username aminvpnipad 214112 mac 214112 bytes_out 0 214112 bytes_in 0 214112 station_ip 5.120.173.120 214112 port 1 214112 unique_id port 214112 remote_ip 10.8.0.2 214115 username hamid2 214115 mac 214115 bytes_out 0 214115 bytes_in 0 214115 station_ip 94.241.175.77 214115 port 50 214115 unique_id port 214115 remote_ip 10.8.0.78 214117 username hamid2 214117 mac 214117 bytes_out 0 214117 bytes_in 0 214117 station_ip 94.241.175.77 214117 port 75 214117 unique_id port 214117 remote_ip 10.8.0.78 214121 username hamid2 214121 mac 214121 bytes_out 0 214121 bytes_in 0 214121 station_ip 94.241.175.77 214121 port 75 214121 unique_id port 214121 remote_ip 10.8.0.78 214128 username yaghobi 214128 mac 214128 bytes_out 273836 214128 bytes_in 2553591 214128 station_ip 37.129.86.190 214128 port 75 214128 unique_id port 214128 remote_ip 10.8.0.106 214131 username sabaghnezhad 214131 mac 214131 bytes_out 3409488 214131 bytes_in 41786803 214131 station_ip 83.123.135.249 214131 port 89 214131 unique_id port 214131 remote_ip 10.8.0.94 214133 username barzegar 214133 mac 214133 bytes_out 0 214133 bytes_in 0 214133 station_ip 5.119.202.248 214133 port 51 214133 unique_id port 214133 remote_ip 10.8.1.30 214103 remote_ip 10.8.1.30 214105 username hamid2 214105 mac 214105 bytes_out 393087 214105 bytes_in 616459 214105 station_ip 94.241.175.77 214105 port 54 214105 unique_id port 214105 remote_ip 10.8.1.38 214108 username soleymani5056 214108 mac 214108 bytes_out 0 214108 bytes_in 0 214108 station_ip 5.119.83.196 214108 port 50 214108 unique_id port 214108 remote_ip 10.8.0.246 214110 username hamid2 214110 mac 214110 bytes_out 0 214110 bytes_in 0 214110 station_ip 94.241.175.77 214110 port 52 214110 unique_id port 214110 remote_ip 10.8.1.38 214111 username hamid2 214111 mac 214111 bytes_out 0 214111 bytes_in 0 214111 station_ip 94.241.175.77 214111 port 52 214111 unique_id port 214111 remote_ip 10.8.1.38 214113 username hamid2 214113 mac 214113 bytes_out 0 214113 bytes_in 0 214113 station_ip 94.241.175.77 214113 port 52 214113 unique_id port 214113 remote_ip 10.8.1.38 214119 username yaghobi 214119 mac 214119 bytes_out 296620 214119 bytes_in 2015230 214119 station_ip 37.129.86.190 214119 port 50 214119 unique_id port 214119 remote_ip 10.8.0.106 214123 username hamid2 214123 mac 214123 bytes_out 0 214123 bytes_in 0 214123 station_ip 94.241.175.77 214123 port 75 214123 unique_id port 214123 remote_ip 10.8.0.78 214124 username hamid2 214124 mac 214124 bytes_out 0 214124 bytes_in 0 214124 station_ip 94.241.175.77 214124 port 75 214124 unique_id port 214124 remote_ip 10.8.0.78 214127 username barzegar 214127 mac 214127 bytes_out 3092 214127 bytes_in 5338 214127 station_ip 5.119.202.248 214127 port 91 214127 unique_id port 214127 remote_ip 10.8.0.34 214135 username shafiei3462 214135 unique_id port 214135 terminate_cause User-Request 214135 bytes_out 0 214135 bytes_in 0 214135 station_ip 46.225.212.246 214135 port 15728647 214135 nas_port_type Virtual 214135 remote_ip 5.5.5.251 214139 username hamid2 214139 mac 214139 bytes_out 0 214139 bytes_in 0 214139 station_ip 94.241.175.77 214139 port 91 214139 unique_id port 214139 remote_ip 10.8.0.78 214143 username barzegar 214143 mac 214143 bytes_out 0 214143 bytes_in 0 214143 station_ip 5.119.202.248 214143 port 51 214143 unique_id port 214143 remote_ip 10.8.1.30 214144 username saeeddamghani 214144 kill_reason Maximum check online fails reached 214144 mac 214144 bytes_out 0 214144 bytes_in 0 214144 station_ip 217.60.175.208 214144 port 91 214144 unique_id port 214145 username saeeddamghani 214145 mac 214145 bytes_out 0 214145 bytes_in 0 214145 station_ip 217.60.175.208 214145 port 52 214145 unique_id port 214145 remote_ip 10.8.1.130 214146 username hamid2 214146 mac 214146 bytes_out 0 214146 bytes_in 0 214146 station_ip 94.241.175.77 214146 port 75 214146 unique_id port 214146 remote_ip 10.8.0.78 214150 username meysam 214150 mac 214150 bytes_out 0 214150 bytes_in 0 214150 station_ip 188.159.252.234 214150 port 92 214150 unique_id port 214150 remote_ip 10.8.0.102 214152 username godarzi 214152 kill_reason Another user logged on this global unique id 214152 mac 214152 bytes_out 0 214152 bytes_in 0 214152 station_ip 5.202.65.237 214152 port 46 214152 unique_id port 214152 remote_ip 10.8.0.74 214157 username hamid2 214157 mac 214157 bytes_out 0 214157 bytes_in 0 214157 station_ip 94.241.175.77 214157 port 89 214157 unique_id port 214157 remote_ip 10.8.0.78 214159 username saeeddamghani 214159 mac 214159 bytes_out 0 214159 bytes_in 0 214159 station_ip 217.60.175.208 214159 port 94 214159 unique_id port 214159 remote_ip 10.8.0.162 214129 bytes_out 0 214129 bytes_in 0 214129 station_ip 5.120.173.120 214129 port 1 214129 unique_id port 214129 remote_ip 10.8.0.2 214130 username alipour1506 214130 mac 214130 bytes_out 0 214130 bytes_in 0 214130 station_ip 94.183.212.137 214130 port 51 214130 unique_id port 214130 remote_ip 10.8.1.158 214132 username shafiei3462 214132 mac 214132 bytes_out 0 214132 bytes_in 0 214132 station_ip 46.225.212.246 214132 port 89 214132 unique_id port 214132 remote_ip 10.8.0.250 214137 username hamid2 214137 mac 214137 bytes_out 155378 214137 bytes_in 388501 214137 station_ip 94.241.175.77 214137 port 92 214137 unique_id port 214137 remote_ip 10.8.0.78 214141 username motamedi9772 214141 mac 214141 bytes_out 0 214141 bytes_in 0 214141 station_ip 37.129.119.1 214141 port 75 214141 unique_id port 214141 remote_ip 10.8.0.86 214148 username rahim 214148 mac 214148 bytes_out 0 214148 bytes_in 0 214148 station_ip 86.57.8.194 214148 port 89 214148 unique_id port 214148 remote_ip 10.8.0.6 214149 username barzegar 214149 mac 214149 bytes_out 56431 214149 bytes_in 51789 214149 station_ip 5.119.202.248 214149 port 51 214149 unique_id port 214149 remote_ip 10.8.1.30 214151 username hamid2 214151 mac 214151 bytes_out 0 214151 bytes_in 0 214151 station_ip 94.241.175.77 214151 port 89 214151 unique_id port 214151 remote_ip 10.8.0.78 214153 username aminvpnipad 214153 mac 214153 bytes_out 0 214153 bytes_in 0 214153 station_ip 5.120.173.120 214153 port 1 214153 unique_id port 214153 remote_ip 10.8.0.2 214155 username hamid2 214155 mac 214155 bytes_out 0 214155 bytes_in 0 214155 station_ip 94.241.175.77 214155 port 89 214155 unique_id port 214155 remote_ip 10.8.0.78 214156 username saeeddamghani 214156 mac 214156 bytes_out 0 214156 bytes_in 0 214156 station_ip 217.60.175.208 214156 port 94 214156 unique_id port 214156 remote_ip 10.8.0.162 214158 username hamid2 214158 mac 214158 bytes_out 0 214158 bytes_in 0 214158 station_ip 94.241.175.77 214158 port 89 214158 unique_id port 214158 remote_ip 10.8.0.78 214161 username dortaj3792 214161 mac 214161 bytes_out 0 214161 bytes_in 0 214161 station_ip 5.119.215.225 214161 port 84 214161 unique_id port 214161 remote_ip 10.8.0.10 214162 username hamid2 214162 mac 214162 bytes_out 0 214162 bytes_in 0 214162 station_ip 94.241.175.77 214162 port 84 214162 unique_id port 214162 remote_ip 10.8.0.78 214167 username hamid2 214167 mac 214167 bytes_out 0 214167 bytes_in 0 214167 station_ip 94.241.175.77 214167 port 89 214167 unique_id port 214167 remote_ip 10.8.0.78 214170 username barzegar 214170 mac 214170 bytes_out 0 214170 bytes_in 0 214170 station_ip 5.119.202.248 214170 port 92 214170 unique_id port 214170 remote_ip 10.8.0.34 214173 username hamid2 214173 mac 214173 bytes_out 0 214173 bytes_in 0 214173 station_ip 94.241.175.77 214173 port 92 214173 unique_id port 214173 remote_ip 10.8.0.78 214174 username hamid2 214174 mac 214174 bytes_out 0 214174 bytes_in 0 214174 station_ip 94.241.175.77 214174 port 78 214174 unique_id port 214174 remote_ip 10.8.0.78 214177 username hosseine 214177 kill_reason Another user logged on this global unique id 214177 mac 214177 bytes_out 0 214177 bytes_in 0 214177 station_ip 37.129.246.156 214177 port 90 214177 unique_id port 214177 remote_ip 10.8.0.126 214178 username barzegar 214178 mac 214178 bytes_out 0 214178 bytes_in 0 214178 station_ip 5.119.202.248 214178 port 52 214134 username saeeddamghani 214134 kill_reason Another user logged on this global unique id 214134 mac 214134 bytes_out 0 214134 bytes_in 0 214134 station_ip 217.60.175.208 214134 port 75 214134 unique_id port 214134 remote_ip 10.8.0.162 214136 username aminvpnipad 214136 mac 214136 bytes_out 0 214136 bytes_in 0 214136 station_ip 5.120.173.120 214136 port 1 214136 unique_id port 214136 remote_ip 10.8.0.2 214138 username saeeddamghani 214138 mac 214138 bytes_out 0 214138 bytes_in 0 214138 station_ip 217.60.175.208 214138 port 75 214138 unique_id port 214140 username yaghobi 214140 mac 214140 bytes_out 0 214140 bytes_in 0 214140 station_ip 37.129.86.190 214140 port 92 214140 unique_id port 214140 remote_ip 10.8.0.106 214142 username saeeddamghani 214142 mac 214142 bytes_out 0 214142 bytes_in 0 214142 station_ip 217.60.175.208 214142 port 75 214142 unique_id port 214142 remote_ip 10.8.0.162 214147 username saeeddamghani 214147 mac 214147 bytes_out 0 214147 bytes_in 0 214147 station_ip 217.60.175.208 214147 port 94 214147 unique_id port 214147 remote_ip 10.8.0.162 214154 username hamid2 214154 mac 214154 bytes_out 0 214154 bytes_in 0 214154 station_ip 94.241.175.77 214154 port 89 214154 unique_id port 214154 remote_ip 10.8.0.78 214160 username barzegar8595 214160 mac 214160 bytes_out 109546 214160 bytes_in 225606 214160 station_ip 46.225.212.246 214160 port 51 214160 unique_id port 214160 remote_ip 10.8.1.26 214164 username barzegar 214164 mac 214164 bytes_out 0 214164 bytes_in 0 214164 station_ip 5.119.202.248 214164 port 92 214164 unique_id port 214164 remote_ip 10.8.0.34 214165 username saeeddamghani 214165 mac 214165 bytes_out 0 214165 bytes_in 0 214165 station_ip 217.60.175.208 214165 port 89 214165 unique_id port 214165 remote_ip 10.8.0.162 214169 username hamid2 214169 mac 214169 bytes_out 0 214169 bytes_in 0 214169 station_ip 94.241.175.77 214169 port 89 214169 unique_id port 214169 remote_ip 10.8.0.78 214175 username saeeddamghani 214175 mac 214175 bytes_out 77770 214175 bytes_in 406605 214175 station_ip 217.60.175.208 214175 port 95 214175 unique_id port 214175 remote_ip 10.8.0.162 214176 username shafiei3462 214176 mac 214176 bytes_out 0 214176 bytes_in 0 214176 station_ip 46.225.212.246 214176 port 89 214176 unique_id port 214176 remote_ip 10.8.0.250 214180 username nilufarrajaei 214180 mac 214180 bytes_out 0 214180 bytes_in 0 214180 station_ip 83.123.108.73 214180 port 75 214180 unique_id port 214180 remote_ip 10.8.0.50 214182 username malekpoir 214182 mac 214182 bytes_out 3382064 214182 bytes_in 34567463 214182 station_ip 5.119.164.123 214182 port 88 214182 unique_id port 214182 remote_ip 10.8.0.178 214183 username hamid2 214183 mac 214183 bytes_out 0 214183 bytes_in 0 214183 station_ip 94.241.175.77 214183 port 88 214183 unique_id port 214183 remote_ip 10.8.0.78 214186 username hamid2 214186 mac 214186 bytes_out 0 214186 bytes_in 0 214186 station_ip 94.241.175.77 214186 port 88 214186 unique_id port 214186 remote_ip 10.8.0.78 214187 username aminvpnipad 214187 mac 214187 bytes_out 0 214187 bytes_in 0 214187 station_ip 5.120.173.120 214187 port 1 214187 unique_id port 214187 remote_ip 10.8.0.2 214189 username barzegar 214189 mac 214189 bytes_out 0 214189 bytes_in 0 214189 station_ip 5.119.202.248 214189 port 88 214189 unique_id port 214189 remote_ip 10.8.0.34 214191 username shafiei3462 214191 mac 214191 bytes_out 0 214191 bytes_in 0 214163 username alipour1506 214163 mac 214163 bytes_out 41130 214163 bytes_in 209731 214163 station_ip 94.183.212.137 214163 port 52 214163 unique_id port 214163 remote_ip 10.8.1.158 214166 username alipour1506 214166 mac 214166 bytes_out 0 214166 bytes_in 0 214166 station_ip 94.183.212.137 214166 port 51 214166 unique_id port 214166 remote_ip 10.8.1.158 214168 username hamid2 214168 mac 214168 bytes_out 0 214168 bytes_in 0 214168 station_ip 94.241.175.77 214168 port 89 214168 unique_id port 214168 remote_ip 10.8.0.78 214171 username aminvpnipad 214171 mac 214171 bytes_out 0 214171 bytes_in 0 214171 station_ip 5.120.173.120 214171 port 1 214171 unique_id port 214171 remote_ip 10.8.0.2 214172 username pourshad 214172 mac 214172 bytes_out 0 214172 bytes_in 0 214172 station_ip 5.120.100.246 214172 port 78 214172 unique_id port 214179 username hamid2 214179 mac 214179 bytes_out 0 214179 bytes_in 0 214179 station_ip 94.241.175.77 214179 port 89 214179 unique_id port 214179 remote_ip 10.8.0.78 214181 username hamid2 214181 mac 214181 bytes_out 0 214181 bytes_in 0 214181 station_ip 94.241.175.77 214181 port 89 214181 unique_id port 214181 remote_ip 10.8.0.78 214184 username aminvpn2 214184 kill_reason Another user logged on this global unique id 214184 mac 214184 bytes_out 0 214184 bytes_in 0 214184 station_ip 5.233.74.44 214184 port 50 214184 unique_id port 214184 remote_ip 10.8.0.222 214185 username meysam 214185 kill_reason Another user logged on this global unique id 214185 mac 214185 bytes_out 0 214185 bytes_in 0 214185 station_ip 188.159.252.234 214185 port 94 214185 unique_id port 214185 remote_ip 10.8.0.102 214192 username hamid2 214192 mac 214192 bytes_out 0 214192 bytes_in 0 214192 station_ip 94.241.175.77 214192 port 78 214192 unique_id port 214192 remote_ip 10.8.0.78 214197 username godarzi 214197 mac 214197 bytes_out 0 214197 bytes_in 0 214197 station_ip 5.202.65.237 214197 port 46 214197 unique_id port 214201 username hamid2 214201 mac 214201 bytes_out 0 214201 bytes_in 0 214201 station_ip 94.241.175.77 214201 port 88 214201 unique_id port 214201 remote_ip 10.8.0.78 214202 username mosi 214202 kill_reason Another user logged on this global unique id 214202 mac 214202 bytes_out 0 214202 bytes_in 0 214202 station_ip 151.235.124.131 214202 port 75 214202 unique_id port 214202 remote_ip 10.8.0.38 214203 username hamid2 214203 mac 214203 bytes_out 0 214203 bytes_in 0 214203 station_ip 94.241.175.77 214203 port 88 214203 unique_id port 214203 remote_ip 10.8.0.78 214204 username soleymani5056 214204 mac 214204 bytes_out 243994 214204 bytes_in 2159127 214204 station_ip 5.119.133.55 214204 port 78 214204 unique_id port 214204 remote_ip 10.8.0.246 214206 username hamid2 214206 mac 214206 bytes_out 0 214206 bytes_in 0 214206 station_ip 94.241.175.77 214206 port 78 214206 unique_id port 214206 remote_ip 10.8.0.78 214208 username aminvpnipad 214208 mac 214208 bytes_out 0 214208 bytes_in 0 214208 station_ip 5.120.173.120 214208 port 1 214208 unique_id port 214208 remote_ip 10.8.0.2 214209 username aminvpnipad 214209 mac 214209 bytes_out 0 214209 bytes_in 0 214209 station_ip 5.120.173.120 214209 port 1 214209 unique_id port 214209 remote_ip 10.8.0.2 214210 username hamid2 214210 mac 214210 bytes_out 29748 214210 bytes_in 33217 214210 station_ip 94.241.175.77 214210 port 88 214210 unique_id port 214210 remote_ip 10.8.0.78 214212 username mammad 214212 unique_id port 214178 unique_id port 214178 remote_ip 10.8.1.30 214188 username hamid2 214188 mac 214188 bytes_out 55851 214188 bytes_in 198467 214188 station_ip 94.241.175.77 214188 port 92 214188 unique_id port 214188 remote_ip 10.8.0.78 214190 username hamid2 214190 mac 214190 bytes_out 0 214190 bytes_in 0 214190 station_ip 94.241.175.77 214190 port 92 214190 unique_id port 214190 remote_ip 10.8.0.78 214194 username barzegar 214194 mac 214194 bytes_out 0 214194 bytes_in 0 214194 station_ip 5.119.202.248 214194 port 52 214194 unique_id port 214194 remote_ip 10.8.1.30 214195 username hamid2 214195 mac 214195 bytes_out 15352 214195 bytes_in 15725 214195 station_ip 94.241.175.77 214195 port 78 214195 unique_id port 214195 remote_ip 10.8.0.78 214196 username hamid2 214196 mac 214196 bytes_out 0 214196 bytes_in 0 214196 station_ip 94.241.175.77 214196 port 78 214196 unique_id port 214196 remote_ip 10.8.0.78 214199 username barzegar 214199 mac 214199 bytes_out 2797 214199 bytes_in 5126 214199 station_ip 5.119.202.248 214199 port 92 214199 unique_id port 214199 remote_ip 10.8.0.34 214205 username meysam 214205 mac 214205 bytes_out 0 214205 bytes_in 0 214205 station_ip 188.159.252.234 214205 port 94 214205 unique_id port 214211 username yaghobi 214211 mac 214211 bytes_out 216239 214211 bytes_in 1388566 214211 station_ip 37.129.23.154 214211 port 46 214211 unique_id port 214211 remote_ip 10.8.0.106 214216 username aminvpn 214216 mac 214216 bytes_out 40555 214216 bytes_in 60564 214216 station_ip 5.119.101.12 214216 port 88 214216 unique_id port 214216 remote_ip 10.8.0.58 214220 username hamid2 214220 mac 214220 bytes_out 1636 214220 bytes_in 6113 214220 station_ip 94.241.175.77 214220 port 89 214220 unique_id port 214220 remote_ip 10.8.0.78 214221 username aminvpn 214221 mac 214221 bytes_out 0 214221 bytes_in 0 214221 station_ip 5.119.101.12 214221 port 94 214221 unique_id port 214221 remote_ip 10.8.0.58 214224 username hamid2 214224 mac 214224 bytes_out 0 214224 bytes_in 0 214224 station_ip 94.241.175.77 214224 port 53 214224 unique_id port 214224 remote_ip 10.8.1.38 214226 username meysam 214226 mac 214226 bytes_out 361634 214226 bytes_in 4633354 214226 station_ip 188.159.252.234 214226 port 92 214226 unique_id port 214226 remote_ip 10.8.0.102 214228 username aminvpnipad 214228 mac 214228 bytes_out 0 214228 bytes_in 0 214228 station_ip 5.120.173.120 214228 port 1 214228 unique_id port 214228 remote_ip 10.8.0.2 214229 username mohammadjavad 214229 mac 214229 bytes_out 601618 214229 bytes_in 3011602 214229 station_ip 37.129.141.221 214229 port 88 214229 unique_id port 214229 remote_ip 10.8.0.138 214232 username barzegar 214232 mac 214232 bytes_out 0 214232 bytes_in 0 214232 station_ip 5.119.242.145 214232 port 88 214232 unique_id port 214232 remote_ip 10.8.0.34 214234 username mosi 214234 kill_reason Another user logged on this global unique id 214234 mac 214234 bytes_out 0 214234 bytes_in 0 214234 station_ip 151.235.124.131 214234 port 75 214234 unique_id port 214236 username aminvpnipad 214236 mac 214236 bytes_out 0 214236 bytes_in 0 214236 station_ip 5.120.173.120 214236 port 1 214236 unique_id port 214236 remote_ip 10.8.0.2 214237 username aminvpnipad 214237 mac 214237 bytes_out 0 214237 bytes_in 0 214237 station_ip 5.120.173.120 214237 port 1 214237 unique_id port 214237 remote_ip 10.8.0.2 214238 username hosseine 214238 kill_reason Another user logged on this global unique id 214191 station_ip 46.225.214.2 214191 port 78 214191 unique_id port 214191 remote_ip 10.8.0.250 214193 username pourshad 214193 mac 214193 bytes_out 0 214193 bytes_in 0 214193 station_ip 5.120.100.246 214193 port 51 214193 unique_id port 214193 remote_ip 10.8.1.10 214198 username hamid2 214198 mac 214198 bytes_out 0 214198 bytes_in 0 214198 station_ip 94.241.175.77 214198 port 46 214198 unique_id port 214198 remote_ip 10.8.0.78 214200 username pourshad 214200 mac 214200 bytes_out 413175 214200 bytes_in 3572605 214200 station_ip 5.120.100.246 214200 port 88 214200 unique_id port 214200 remote_ip 10.8.0.122 214207 username barzegar 214207 mac 214207 bytes_out 0 214207 bytes_in 0 214207 station_ip 5.120.49.158 214207 port 92 214207 unique_id port 214207 remote_ip 10.8.0.34 214217 username aminvpn 214217 mac 214217 bytes_out 0 214217 bytes_in 0 214217 station_ip 5.119.101.12 214217 port 46 214217 unique_id port 214217 remote_ip 10.8.0.58 214219 username aminvpn 214219 mac 214219 bytes_out 0 214219 bytes_in 0 214219 station_ip 5.119.101.12 214219 port 92 214219 unique_id port 214219 remote_ip 10.8.0.58 214222 username aminvpn 214222 mac 214222 bytes_out 0 214222 bytes_in 0 214222 station_ip 5.119.101.12 214222 port 89 214222 unique_id port 214222 remote_ip 10.8.0.58 214223 username aminvpn 214223 mac 214223 bytes_out 0 214223 bytes_in 0 214223 station_ip 5.119.101.12 214223 port 92 214223 unique_id port 214223 remote_ip 10.8.0.58 214225 username yaghobi 214225 mac 214225 bytes_out 82073 214225 bytes_in 104973 214225 station_ip 37.129.23.154 214225 port 88 214225 unique_id port 214225 remote_ip 10.8.0.106 214240 username motamedi9772 214240 mac 214240 bytes_out 0 214240 bytes_in 0 214240 station_ip 37.129.123.241 214240 port 84 214240 unique_id port 214240 remote_ip 10.8.0.86 214243 username motamedi9772 214243 mac 214243 bytes_out 0 214243 bytes_in 0 214243 station_ip 37.129.123.241 214243 port 84 214243 unique_id port 214243 remote_ip 10.8.0.86 214244 username motamedi9772 214244 mac 214244 bytes_out 0 214244 bytes_in 0 214244 station_ip 37.129.123.241 214244 port 84 214244 unique_id port 214244 remote_ip 10.8.0.86 214245 username aminvpnipad 214245 mac 214245 bytes_out 0 214245 bytes_in 0 214245 station_ip 5.120.173.120 214245 port 1 214245 unique_id port 214245 remote_ip 10.8.0.2 214248 username motamedi9772 214248 mac 214248 bytes_out 0 214248 bytes_in 0 214248 station_ip 37.129.123.241 214248 port 84 214248 unique_id port 214248 remote_ip 10.8.0.86 214250 username motamedi9772 214250 mac 214250 bytes_out 0 214250 bytes_in 0 214250 station_ip 37.129.123.241 214250 port 84 214250 unique_id port 214250 remote_ip 10.8.0.86 214256 username alipour1506 214256 mac 214256 bytes_out 8116 214256 bytes_in 7417 214256 station_ip 83.122.234.200 214256 port 88 214256 unique_id port 214256 remote_ip 10.8.0.46 214257 username pourshad 214257 mac 214257 bytes_out 0 214257 bytes_in 0 214257 station_ip 5.120.100.246 214257 port 51 214257 unique_id port 214257 remote_ip 10.8.1.10 214258 username aminvpnipad 214258 mac 214258 bytes_out 0 214258 bytes_in 0 214258 station_ip 5.120.173.120 214258 port 1 214258 unique_id port 214258 remote_ip 10.8.0.2 214261 username yaghobi 214261 mac 214261 bytes_out 41691 214261 bytes_in 44935 214261 station_ip 37.129.23.154 214261 port 89 214261 unique_id port 214261 remote_ip 10.8.0.106 214262 username motamedi9772 214212 terminate_cause Lost-Carrier 214212 bytes_out 1595776 214212 bytes_in 30941646 214212 station_ip 2.183.247.92 214212 port 15728648 214212 nas_port_type Virtual 214212 remote_ip 5.5.5.250 214213 username aminvpn 214213 mac 214213 bytes_out 80619 214213 bytes_in 133338 214213 station_ip 5.119.101.12 214213 port 92 214213 unique_id port 214213 remote_ip 10.8.0.58 214214 username yaghobi 214214 mac 214214 bytes_out 13227 214214 bytes_in 29795 214214 station_ip 37.129.23.154 214214 port 46 214214 unique_id port 214214 remote_ip 10.8.0.106 214215 username nilufarrajaei 214215 mac 214215 bytes_out 0 214215 bytes_in 0 214215 station_ip 83.123.108.73 214215 port 89 214215 unique_id port 214215 remote_ip 10.8.0.50 214218 username hamid2 214218 mac 214218 bytes_out 0 214218 bytes_in 0 214218 station_ip 94.241.175.77 214218 port 53 214218 unique_id port 214218 remote_ip 10.8.1.38 214227 username motamedi9772 214227 kill_reason Another user logged on this global unique id 214227 mac 214227 bytes_out 0 214227 bytes_in 0 214227 station_ip 37.129.123.241 214227 port 84 214227 unique_id port 214227 remote_ip 10.8.0.86 214230 username hosseine 214230 kill_reason Another user logged on this global unique id 214230 mac 214230 bytes_out 0 214230 bytes_in 0 214230 station_ip 37.129.246.156 214230 port 90 214230 unique_id port 214231 username aminvpn 214231 mac 214231 bytes_out 0 214231 bytes_in 0 214231 station_ip 5.119.101.12 214231 port 89 214231 unique_id port 214231 remote_ip 10.8.0.58 214233 username meysam 214233 mac 214233 bytes_out 454374 214233 bytes_in 5870109 214233 station_ip 188.159.252.234 214233 port 92 214233 unique_id port 214233 remote_ip 10.8.0.102 214235 username aminvpnipad 214235 mac 214235 bytes_out 0 214235 bytes_in 0 214235 station_ip 5.120.173.120 214235 port 1 214235 unique_id port 214235 remote_ip 10.8.0.2 214249 username barzegar8595 214249 mac 214249 bytes_out 0 214249 bytes_in 0 214249 station_ip 5.202.1.19 214249 port 51 214249 unique_id port 214249 remote_ip 10.8.1.26 214253 username motamedi9772 214253 mac 214253 bytes_out 0 214253 bytes_in 0 214253 station_ip 37.129.123.241 214253 port 88 214253 unique_id port 214253 remote_ip 10.8.0.86 214259 username motamedi9772 214259 mac 214259 bytes_out 0 214259 bytes_in 0 214259 station_ip 37.129.123.241 214259 port 84 214259 unique_id port 214259 remote_ip 10.8.0.86 214260 username motamedi9772 214260 mac 214260 bytes_out 0 214260 bytes_in 0 214260 station_ip 37.129.123.241 214260 port 51 214260 unique_id port 214260 remote_ip 10.8.1.182 214265 username hamid2 214265 mac 214265 bytes_out 0 214265 bytes_in 0 214265 station_ip 46.225.208.118 214265 port 84 214265 unique_id port 214265 remote_ip 10.8.0.78 214267 username barzegar 214267 mac 214267 bytes_out 0 214267 bytes_in 0 214267 station_ip 5.119.242.145 214267 port 84 214267 unique_id port 214267 remote_ip 10.8.0.34 214270 username hamid2 214270 mac 214270 bytes_out 0 214270 bytes_in 0 214270 station_ip 46.225.208.118 214270 port 51 214270 unique_id port 214270 remote_ip 10.8.1.38 214271 username hamid2 214271 mac 214271 bytes_out 0 214271 bytes_in 0 214271 station_ip 46.225.208.118 214271 port 51 214271 unique_id port 214271 remote_ip 10.8.1.38 214276 username aminvpnipad 214276 mac 214276 bytes_out 0 214276 bytes_in 0 214276 station_ip 5.120.173.120 214276 port 1 214276 unique_id port 214276 remote_ip 10.8.0.2 214278 username saeeddamghani 214278 kill_reason Another user logged on this global unique id 214238 mac 214238 bytes_out 0 214238 bytes_in 0 214238 station_ip 37.129.246.156 214238 port 90 214238 unique_id port 214239 username motamedi9772 214239 mac 214239 bytes_out 0 214239 bytes_in 0 214239 station_ip 37.129.123.241 214239 port 84 214239 unique_id port 214241 username barzegar 214241 mac 214241 bytes_out 0 214241 bytes_in 0 214241 station_ip 5.119.242.145 214241 port 53 214241 unique_id port 214241 remote_ip 10.8.1.30 214242 username motamedi9772 214242 mac 214242 bytes_out 0 214242 bytes_in 0 214242 station_ip 37.129.123.241 214242 port 84 214242 unique_id port 214242 remote_ip 10.8.0.86 214246 username motamedi9772 214246 mac 214246 bytes_out 0 214246 bytes_in 0 214246 station_ip 37.129.123.241 214246 port 84 214246 unique_id port 214246 remote_ip 10.8.0.86 214247 username motamedi9772 214247 mac 214247 bytes_out 0 214247 bytes_in 0 214247 station_ip 37.129.123.241 214247 port 84 214247 unique_id port 214247 remote_ip 10.8.0.86 214251 username yaghobi 214251 mac 214251 bytes_out 133807 214251 bytes_in 284835 214251 station_ip 37.129.23.154 214251 port 88 214251 unique_id port 214251 remote_ip 10.8.0.106 214252 username yaghobi 214252 mac 214252 bytes_out 0 214252 bytes_in 0 214252 station_ip 37.129.23.154 214252 port 84 214252 unique_id port 214252 remote_ip 10.8.0.106 214254 username pourshad 214254 mac 214254 bytes_out 0 214254 bytes_in 0 214254 station_ip 5.120.100.246 214254 port 52 214254 unique_id port 214254 remote_ip 10.8.1.10 214255 username barzegar 214255 mac 214255 bytes_out 0 214255 bytes_in 0 214255 station_ip 5.119.242.145 214255 port 92 214255 unique_id port 214255 remote_ip 10.8.0.34 214263 username sekonji0496 214263 mac 214263 bytes_out 0 214263 bytes_in 0 214263 station_ip 83.123.222.32 214263 port 84 214263 unique_id port 214263 remote_ip 10.8.0.70 214272 username mirzaei6046 214272 kill_reason Another user logged on this global unique id 214272 mac 214272 bytes_out 0 214272 bytes_in 0 214272 station_ip 5.120.121.238 214272 port 41 214272 unique_id port 214275 username hamid2 214275 mac 214275 bytes_out 0 214275 bytes_in 0 214275 station_ip 46.225.208.118 214275 port 51 214275 unique_id port 214275 remote_ip 10.8.1.38 214279 username barzegar 214279 mac 214279 bytes_out 2698 214279 bytes_in 5163 214279 station_ip 5.119.242.145 214279 port 78 214279 unique_id port 214279 remote_ip 10.8.0.34 214280 username mammad 214280 unique_id port 214280 terminate_cause User-Request 214280 bytes_out 6182715 214280 bytes_in 96650345 214280 station_ip 2.183.240.136 214280 port 15728649 214280 nas_port_type Virtual 214280 remote_ip 5.5.5.249 214282 username hamid2 214282 mac 214282 bytes_out 0 214282 bytes_in 0 214282 station_ip 46.225.208.118 214282 port 51 214282 unique_id port 214282 remote_ip 10.8.1.38 214286 username aminvpnipad 214286 mac 214286 bytes_out 0 214286 bytes_in 0 214286 station_ip 5.120.173.120 214286 port 1 214286 unique_id port 214286 remote_ip 10.8.0.2 214292 username hamid2 214292 mac 214292 bytes_out 0 214292 bytes_in 0 214292 station_ip 46.225.208.118 214292 port 88 214292 unique_id port 214292 remote_ip 10.8.0.78 214297 username motamedi9772 214297 kill_reason Another user logged on this global unique id 214297 mac 214297 bytes_out 0 214297 bytes_in 0 214297 station_ip 37.129.95.253 214297 port 78 214297 unique_id port 214298 username mirzaei6046 214298 mac 214298 bytes_out 0 214298 bytes_in 0 214298 station_ip 5.120.121.238 214262 mac 214262 bytes_out 0 214262 bytes_in 0 214262 station_ip 37.129.123.241 214262 port 89 214262 unique_id port 214262 remote_ip 10.8.0.86 214264 username hamid2 214264 mac 214264 bytes_out 0 214264 bytes_in 0 214264 station_ip 46.225.208.118 214264 port 96 214264 unique_id port 214264 remote_ip 10.8.0.78 214266 username motamedi9772 214266 mac 214266 bytes_out 0 214266 bytes_in 0 214266 station_ip 37.129.123.241 214266 port 89 214266 unique_id port 214266 remote_ip 10.8.0.86 214268 username saeeddamghani 214268 kill_reason Another user logged on this global unique id 214268 mac 214268 bytes_out 0 214268 bytes_in 0 214268 station_ip 217.60.175.208 214268 port 88 214268 unique_id port 214268 remote_ip 10.8.0.162 214269 username godarzi 214269 mac 214269 bytes_out 1872447 214269 bytes_in 13647395 214269 station_ip 5.202.65.237 214269 port 78 214269 unique_id port 214269 remote_ip 10.8.0.74 214273 username hamid2 214273 mac 214273 bytes_out 0 214273 bytes_in 0 214273 station_ip 46.225.208.118 214273 port 51 214273 unique_id port 214273 remote_ip 10.8.1.38 214274 username hamid2 214274 mac 214274 bytes_out 0 214274 bytes_in 0 214274 station_ip 46.225.208.118 214274 port 51 214274 unique_id port 214274 remote_ip 10.8.1.38 214277 username mostafa_es78 214277 mac 214277 bytes_out 0 214277 bytes_in 0 214277 station_ip 113.203.58.250 214277 port 46 214277 unique_id port 214277 remote_ip 10.8.0.42 214281 username saeeddamghani 214281 mac 214281 bytes_out 0 214281 bytes_in 0 214281 station_ip 217.60.175.208 214281 port 88 214281 unique_id port 214284 username soleymani5056 214284 mac 214284 bytes_out 0 214284 bytes_in 0 214284 station_ip 5.119.51.135 214284 port 84 214284 unique_id port 214284 remote_ip 10.8.0.246 214285 username pourshad 214285 mac 214285 bytes_out 216746 214285 bytes_in 707683 214285 station_ip 5.120.100.246 214285 port 95 214285 unique_id port 214285 remote_ip 10.8.0.122 214288 username hamid2 214288 mac 214288 bytes_out 0 214288 bytes_in 0 214288 station_ip 46.225.208.118 214288 port 51 214288 unique_id port 214288 remote_ip 10.8.1.38 214289 username soleymani5056 214289 mac 214289 bytes_out 97103 214289 bytes_in 242261 214289 station_ip 5.119.188.57 214289 port 88 214289 unique_id port 214289 remote_ip 10.8.0.246 214291 username motamedi9772 214291 kill_reason Another user logged on this global unique id 214291 mac 214291 bytes_out 0 214291 bytes_in 0 214291 station_ip 37.129.95.253 214291 port 78 214291 unique_id port 214291 remote_ip 10.8.0.86 214294 username hamid2 214294 mac 214294 bytes_out 0 214294 bytes_in 0 214294 station_ip 46.225.208.118 214294 port 88 214294 unique_id port 214294 remote_ip 10.8.0.78 214296 username aminvpnipad 214296 mac 214296 bytes_out 0 214296 bytes_in 0 214296 station_ip 5.120.173.120 214296 port 1 214296 unique_id port 214296 remote_ip 10.8.0.2 214299 username barzegar8595 214299 mac 214299 bytes_out 0 214299 bytes_in 0 214299 station_ip 92.50.8.6 214299 port 51 214299 unique_id port 214299 remote_ip 10.8.1.26 214300 username barzegar 214300 mac 214300 bytes_out 0 214300 bytes_in 0 214300 station_ip 5.119.242.145 214300 port 51 214300 unique_id port 214300 remote_ip 10.8.1.30 214302 username barzegar 214302 mac 214302 bytes_out 0 214302 bytes_in 0 214302 station_ip 5.119.242.145 214302 port 96 214302 unique_id port 214302 remote_ip 10.8.0.34 214306 username meysam 214306 mac 214306 bytes_out 0 214306 bytes_in 0 214278 mac 214278 bytes_out 0 214278 bytes_in 0 214278 station_ip 217.60.175.208 214278 port 88 214278 unique_id port 214283 username barzegar 214283 mac 214283 bytes_out 0 214283 bytes_in 0 214283 station_ip 5.119.242.145 214283 port 52 214283 unique_id port 214283 remote_ip 10.8.1.30 214287 username hamid2 214287 mac 214287 bytes_out 55473 214287 bytes_in 54970 214287 station_ip 46.225.208.118 214287 port 51 214287 unique_id port 214287 remote_ip 10.8.1.38 214290 username hamid2 214290 mac 214290 bytes_out 0 214290 bytes_in 0 214290 station_ip 46.225.208.118 214290 port 51 214290 unique_id port 214290 remote_ip 10.8.1.38 214293 username barzegar 214293 mac 214293 bytes_out 0 214293 bytes_in 0 214293 station_ip 5.119.242.145 214293 port 51 214293 unique_id port 214293 remote_ip 10.8.1.30 214295 username hamid2 214295 mac 214295 bytes_out 23103 214295 bytes_in 11074 214295 station_ip 46.225.208.118 214295 port 89 214295 unique_id port 214295 remote_ip 10.8.0.78 214303 username mosi 214303 kill_reason Another user logged on this global unique id 214303 mac 214303 bytes_out 0 214303 bytes_in 0 214303 station_ip 151.235.124.131 214303 port 75 214303 unique_id port 214305 username aminvpnipad 214305 mac 214305 bytes_out 0 214305 bytes_in 0 214305 station_ip 5.120.173.120 214305 port 1 214305 unique_id port 214305 remote_ip 10.8.0.2 214308 username naeimeh 214308 mac 214308 bytes_out 648953 214308 bytes_in 4736157 214308 station_ip 83.123.166.87 214308 port 51 214308 unique_id port 214308 remote_ip 10.8.1.150 214309 username mohammadjavad 214309 mac 214309 bytes_out 440650 214309 bytes_in 448459 214309 station_ip 37.27.3.93 214309 port 41 214309 unique_id port 214309 remote_ip 10.8.0.138 214311 username mostafa_es78 214311 mac 214311 bytes_out 443415 214311 bytes_in 1159129 214311 station_ip 113.203.58.250 214311 port 84 214311 unique_id port 214311 remote_ip 10.8.0.42 214315 username hamid2 214315 mac 214315 bytes_out 0 214315 bytes_in 0 214315 station_ip 94.241.175.77 214315 port 98 214315 unique_id port 214315 remote_ip 10.8.0.78 214316 username pourshad 214316 mac 214316 bytes_out 2031543 214316 bytes_in 49946679 214316 station_ip 5.120.100.246 214316 port 52 214316 unique_id port 214316 remote_ip 10.8.1.10 214318 username hamid2 214318 mac 214318 bytes_out 103750 214318 bytes_in 138466 214318 station_ip 94.241.175.77 214318 port 84 214318 unique_id port 214318 remote_ip 10.8.0.78 214320 username mohammadjavad 214320 mac 214320 bytes_out 29880 214320 bytes_in 81202 214320 station_ip 37.27.3.93 214320 port 98 214320 unique_id port 214320 remote_ip 10.8.0.138 214323 username barzegar 214323 mac 214323 bytes_out 0 214323 bytes_in 0 214323 station_ip 5.119.242.145 214323 port 84 214323 unique_id port 214323 remote_ip 10.8.0.34 214326 username tahmorsi 214326 mac 214326 bytes_out 0 214326 bytes_in 0 214326 station_ip 86.57.49.33 214326 port 96 214326 unique_id port 214326 remote_ip 10.8.0.210 214332 username farhad3 214332 mac 214332 bytes_out 0 214332 bytes_in 0 214332 station_ip 5.119.204.252 214332 port 78 214332 unique_id port 214332 remote_ip 10.8.0.98 214333 username pourshad 214333 mac 214333 bytes_out 12412142 214333 bytes_in 12487480 214333 station_ip 5.120.100.246 214333 port 51 214333 unique_id port 214333 remote_ip 10.8.1.10 214336 username pourshad 214336 mac 214336 bytes_out 10611 214336 bytes_in 12981 214336 station_ip 5.120.100.246 214298 port 41 214298 unique_id port 214301 username hamid2 214301 mac 214301 bytes_out 0 214301 bytes_in 0 214301 station_ip 46.225.208.118 214301 port 53 214301 unique_id port 214301 remote_ip 10.8.1.38 214304 username motamedi9772 214304 kill_reason Another user logged on this global unique id 214304 mac 214304 bytes_out 0 214304 bytes_in 0 214304 station_ip 37.129.95.253 214304 port 78 214304 unique_id port 214313 username kalantary6037 214313 mac 214313 bytes_out 369042 214313 bytes_in 1041924 214313 station_ip 37.129.4.157 214313 port 84 214313 unique_id port 214313 remote_ip 10.8.0.18 214321 username meysam 214321 mac 214321 bytes_out 252131 214321 bytes_in 2940577 214321 station_ip 188.159.252.234 214321 port 84 214321 unique_id port 214321 remote_ip 10.8.0.102 214324 username pourshad 214324 mac 214324 bytes_out 0 214324 bytes_in 0 214324 station_ip 5.120.100.246 214324 port 94 214324 unique_id port 214324 remote_ip 10.8.0.122 214325 username motamedi9772 214325 mac 214325 bytes_out 0 214325 bytes_in 0 214325 station_ip 37.129.95.253 214325 port 78 214325 unique_id port 214327 username hamid2 214327 mac 214327 bytes_out 0 214327 bytes_in 0 214327 station_ip 94.241.175.77 214327 port 97 214327 unique_id port 214327 remote_ip 10.8.0.78 214328 username hamid2 214328 mac 214328 bytes_out 0 214328 bytes_in 0 214328 station_ip 94.241.175.77 214328 port 84 214328 unique_id port 214328 remote_ip 10.8.0.78 214331 username sabaghnezhad 214331 mac 214331 bytes_out 442731 214331 bytes_in 346614 214331 station_ip 37.129.57.4 214331 port 46 214331 unique_id port 214331 remote_ip 10.8.0.94 214334 username farhad3 214334 mac 214334 bytes_out 0 214334 bytes_in 0 214334 station_ip 5.119.204.252 214334 port 78 214334 unique_id port 214334 remote_ip 10.8.0.98 214337 username mosi 214337 kill_reason Another user logged on this global unique id 214337 mac 214337 bytes_out 0 214337 bytes_in 0 214337 station_ip 151.235.124.131 214337 port 75 214337 unique_id port 214342 username hamid2 214342 mac 214342 bytes_out 0 214342 bytes_in 0 214342 station_ip 94.241.175.77 214342 port 84 214342 unique_id port 214342 remote_ip 10.8.0.78 214345 username hamid2 214345 mac 214345 bytes_out 0 214345 bytes_in 0 214345 station_ip 94.241.175.77 214345 port 94 214345 unique_id port 214345 remote_ip 10.8.0.78 214348 username godarzi 214348 kill_reason Another user logged on this global unique id 214348 mac 214348 bytes_out 0 214348 bytes_in 0 214348 station_ip 5.202.65.237 214348 port 88 214348 unique_id port 214348 remote_ip 10.8.0.74 214350 username mohammadjavad 214350 mac 214350 bytes_out 0 214350 bytes_in 0 214350 station_ip 37.27.3.93 214350 port 46 214350 unique_id port 214350 remote_ip 10.8.0.138 214358 username yaghobi 214358 mac 214358 bytes_out 0 214358 bytes_in 0 214358 station_ip 37.129.33.52 214358 port 46 214358 unique_id port 214358 remote_ip 10.8.0.106 214364 username barzegar 214364 mac 214364 bytes_out 4912 214364 bytes_in 21231 214364 station_ip 5.119.242.145 214364 port 54 214364 unique_id port 214364 remote_ip 10.8.1.30 214365 username soleymani5056 214365 mac 214365 bytes_out 481946 214365 bytes_in 459285 214365 station_ip 5.119.226.145 214365 port 78 214365 unique_id port 214365 remote_ip 10.8.0.246 214367 username khademi 214367 kill_reason Another user logged on this global unique id 214367 mac 214367 bytes_out 0 214367 bytes_in 0 214367 station_ip 5.202.0.17 214367 port 41 214367 unique_id port 214306 station_ip 188.159.252.234 214306 port 84 214306 unique_id port 214306 remote_ip 10.8.0.102 214307 username nilufarrajaei 214307 kill_reason Another user logged on this global unique id 214307 mac 214307 bytes_out 0 214307 bytes_in 0 214307 station_ip 83.122.1.34 214307 port 94 214307 unique_id port 214307 remote_ip 10.8.0.50 214310 username khademi 214310 mac 214310 bytes_out 0 214310 bytes_in 0 214310 station_ip 5.202.0.17 214310 port 95 214310 unique_id port 214310 remote_ip 10.8.0.26 214312 username barzegar 214312 mac 214312 bytes_out 0 214312 bytes_in 0 214312 station_ip 5.119.242.145 214312 port 51 214312 unique_id port 214312 remote_ip 10.8.1.30 214314 username aminvpnipad 214314 mac 214314 bytes_out 0 214314 bytes_in 0 214314 station_ip 5.120.173.120 214314 port 1 214314 unique_id port 214314 remote_ip 10.8.0.2 214317 username nilufarrajaei 214317 mac 214317 bytes_out 0 214317 bytes_in 0 214317 station_ip 83.122.1.34 214317 port 94 214317 unique_id port 214319 username meysam 214319 mac 214319 bytes_out 0 214319 bytes_in 0 214319 station_ip 188.159.252.234 214319 port 97 214319 unique_id port 214319 remote_ip 10.8.0.102 214322 username mostafa_es78 214322 mac 214322 bytes_out 0 214322 bytes_in 0 214322 station_ip 113.203.58.250 214322 port 95 214322 unique_id port 214322 remote_ip 10.8.0.42 214329 username aminvpnipad 214329 mac 214329 bytes_out 0 214329 bytes_in 0 214329 station_ip 5.120.173.120 214329 port 1 214329 unique_id port 214329 remote_ip 10.8.0.2 214330 username hamid2 214330 mac 214330 bytes_out 0 214330 bytes_in 0 214330 station_ip 94.241.175.77 214330 port 84 214330 unique_id port 214330 remote_ip 10.8.0.78 214335 username hamid2 214335 mac 214335 bytes_out 0 214335 bytes_in 0 214335 station_ip 94.241.175.77 214335 port 78 214335 unique_id port 214335 remote_ip 10.8.0.78 214338 username farhad3 214338 mac 214338 bytes_out 0 214338 bytes_in 0 214338 station_ip 5.119.204.252 214338 port 78 214338 unique_id port 214338 remote_ip 10.8.0.98 214343 username sabaghnezhad 214343 mac 214343 bytes_out 22224 214343 bytes_in 38260 214343 station_ip 37.129.57.4 214343 port 94 214343 unique_id port 214343 remote_ip 10.8.0.94 214344 username ahmadi1 214344 mac 214344 bytes_out 0 214344 bytes_in 0 214344 station_ip 83.123.166.113 214344 port 78 214344 unique_id port 214344 remote_ip 10.8.0.114 214349 username hamid2 214349 mac 214349 bytes_out 0 214349 bytes_in 0 214349 station_ip 94.241.175.77 214349 port 78 214349 unique_id port 214349 remote_ip 10.8.0.78 214353 username barzegar 214353 mac 214353 bytes_out 0 214353 bytes_in 0 214353 station_ip 5.119.242.145 214353 port 53 214353 unique_id port 214353 remote_ip 10.8.1.30 214354 username hamid2 214354 mac 214354 bytes_out 25041 214354 bytes_in 32008 214354 station_ip 94.241.175.77 214354 port 78 214354 unique_id port 214354 remote_ip 10.8.0.78 214359 username barzegar 214359 mac 214359 bytes_out 0 214359 bytes_in 0 214359 station_ip 5.119.242.145 214359 port 88 214359 unique_id port 214359 remote_ip 10.8.0.34 214361 username hamid2 214361 mac 214361 bytes_out 0 214361 bytes_in 0 214361 station_ip 94.241.175.77 214361 port 78 214361 unique_id port 214361 remote_ip 10.8.0.78 214366 username hamid2 214366 mac 214366 bytes_out 0 214366 bytes_in 0 214366 station_ip 94.241.175.77 214366 port 46 214366 unique_id port 214366 remote_ip 10.8.0.78 214369 username hamid2 214336 port 84 214336 unique_id port 214336 remote_ip 10.8.0.122 214339 username hamid2 214339 mac 214339 bytes_out 0 214339 bytes_in 0 214339 station_ip 94.241.175.77 214339 port 84 214339 unique_id port 214339 remote_ip 10.8.0.78 214340 username farhad3 214340 mac 214340 bytes_out 0 214340 bytes_in 0 214340 station_ip 5.119.204.252 214340 port 78 214340 unique_id port 214340 remote_ip 10.8.0.98 214341 username barzegar 214341 mac 214341 bytes_out 0 214341 bytes_in 0 214341 station_ip 5.119.242.145 214341 port 53 214341 unique_id port 214341 remote_ip 10.8.1.30 214346 username farhad3 214346 mac 214346 bytes_out 0 214346 bytes_in 0 214346 station_ip 5.119.204.252 214346 port 52 214346 unique_id port 214346 remote_ip 10.8.1.86 214347 username aminvpnipad 214347 mac 214347 bytes_out 0 214347 bytes_in 0 214347 station_ip 5.120.173.120 214347 port 1 214347 unique_id port 214347 remote_ip 10.8.0.2 214351 username hamid2 214351 mac 214351 bytes_out 0 214351 bytes_in 0 214351 station_ip 94.241.175.77 214351 port 46 214351 unique_id port 214351 remote_ip 10.8.0.78 214352 username farhad3 214352 mac 214352 bytes_out 0 214352 bytes_in 0 214352 station_ip 5.119.204.252 214352 port 52 214352 unique_id port 214352 remote_ip 10.8.1.86 214355 username kalantary6037 214355 mac 214355 bytes_out 212684 214355 bytes_in 1279757 214355 station_ip 37.129.114.165 214355 port 46 214355 unique_id port 214355 remote_ip 10.8.0.18 214356 username godarzi 214356 mac 214356 bytes_out 0 214356 bytes_in 0 214356 station_ip 5.202.65.237 214356 port 88 214356 unique_id port 214357 username aminvpnipad 214357 mac 214357 bytes_out 0 214357 bytes_in 0 214357 station_ip 5.120.173.120 214357 port 1 214357 unique_id port 214357 remote_ip 10.8.0.2 214360 username khorasani9135 214360 kill_reason Another user logged on this global unique id 214360 mac 214360 bytes_out 0 214360 bytes_in 0 214360 station_ip 83.123.215.186 214360 port 93 214360 unique_id port 214362 username hamid2 214362 mac 214362 bytes_out 0 214362 bytes_in 0 214362 station_ip 94.241.175.77 214362 port 46 214362 unique_id port 214362 remote_ip 10.8.0.78 214363 username farhad3 214363 mac 214363 bytes_out 978936 214363 bytes_in 4206264 214363 station_ip 5.119.204.252 214363 port 52 214363 unique_id port 214363 remote_ip 10.8.1.86 214370 username barzegar 214370 mac 214370 bytes_out 0 214370 bytes_in 0 214370 station_ip 5.119.242.145 214370 port 54 214370 unique_id port 214370 remote_ip 10.8.1.30 214373 username naeimeh 214373 mac 214373 bytes_out 416113 214373 bytes_in 3400191 214373 station_ip 37.129.95.32 214373 port 55 214373 unique_id port 214373 remote_ip 10.8.1.150 214374 username aminvpnipad 214374 mac 214374 bytes_out 0 214374 bytes_in 0 214374 station_ip 5.120.173.120 214374 port 1 214374 unique_id port 214374 remote_ip 10.8.0.2 214378 username farhad3 214378 mac 214378 bytes_out 779240 214378 bytes_in 1500931 214378 station_ip 5.119.204.252 214378 port 52 214378 unique_id port 214378 remote_ip 10.8.1.86 214386 username barzegar 214386 mac 214386 bytes_out 0 214386 bytes_in 0 214386 station_ip 5.119.242.145 214386 port 55 214386 unique_id port 214386 remote_ip 10.8.1.30 214387 username hamid2 214387 mac 214387 bytes_out 0 214387 bytes_in 0 214387 station_ip 94.241.175.77 214387 port 52 214387 unique_id port 214387 remote_ip 10.8.1.38 214389 username hamid2 214389 mac 214367 remote_ip 10.8.0.26 214368 username hamid2 214368 mac 214368 bytes_out 0 214368 bytes_in 0 214368 station_ip 94.241.175.77 214368 port 46 214368 unique_id port 214368 remote_ip 10.8.0.78 214371 username barzegar 214371 mac 214371 bytes_out 3395 214371 bytes_in 5931 214371 station_ip 5.119.242.145 214371 port 54 214371 unique_id port 214371 remote_ip 10.8.1.30 214375 username jafari 214375 mac 214375 bytes_out 432114 214375 bytes_in 1725877 214375 station_ip 5.62.223.152 214375 port 53 214375 unique_id port 214375 remote_ip 10.8.1.190 214377 username barzegar 214377 mac 214377 bytes_out 0 214377 bytes_in 0 214377 station_ip 5.119.242.145 214377 port 46 214377 unique_id port 214377 remote_ip 10.8.0.34 214381 username hamid2 214381 mac 214381 bytes_out 36680 214381 bytes_in 44060 214381 station_ip 94.241.175.77 214381 port 55 214381 unique_id port 214381 remote_ip 10.8.1.38 214383 username mohammadjavad 214383 mac 214383 bytes_out 0 214383 bytes_in 0 214383 station_ip 83.123.208.108 214383 port 78 214383 unique_id port 214383 remote_ip 10.8.0.138 214388 username hamid2 214388 mac 214388 bytes_out 0 214388 bytes_in 0 214388 station_ip 94.241.175.77 214388 port 55 214388 unique_id port 214388 remote_ip 10.8.1.38 214390 username charkhandaz3496 214390 mac 214390 bytes_out 0 214390 bytes_in 0 214390 station_ip 5.120.93.112 214390 port 46 214390 unique_id port 214390 remote_ip 10.8.0.218 214391 username naeimeh 214391 mac 214391 bytes_out 0 214391 bytes_in 0 214391 station_ip 37.129.95.32 214391 port 54 214391 unique_id port 214391 remote_ip 10.8.1.150 214399 username naeimeh 214399 kill_reason Maximum number of concurrent logins reached 214399 mac 214399 bytes_out 0 214399 bytes_in 0 214399 station_ip 37.129.31.234 214399 port 78 214399 unique_id port 214401 username barzegar 214401 mac 214401 bytes_out 124464 214401 bytes_in 17442 214401 station_ip 5.119.242.145 214401 port 46 214401 unique_id port 214401 remote_ip 10.8.0.34 214405 username hosseine 214405 mac 214405 bytes_out 0 214405 bytes_in 0 214405 station_ip 37.129.246.156 214405 port 90 214405 unique_id port 214406 username mohammadjavad 214406 mac 214406 bytes_out 0 214406 bytes_in 0 214406 station_ip 83.123.137.252 214406 port 46 214406 unique_id port 214406 remote_ip 10.8.0.138 214409 username hamid2 214409 mac 214409 bytes_out 4839690 214409 bytes_in 10324055 214409 station_ip 94.241.175.77 214409 port 54 214409 unique_id port 214409 remote_ip 10.8.1.38 214411 username hamid2 214411 mac 214411 bytes_out 0 214411 bytes_in 0 214411 station_ip 94.241.175.77 214411 port 52 214411 unique_id port 214411 remote_ip 10.8.1.38 214413 username hamid2 214413 mac 214413 bytes_out 0 214413 bytes_in 0 214413 station_ip 94.241.175.77 214413 port 52 214413 unique_id port 214413 remote_ip 10.8.1.38 214414 username hamid2 214414 mac 214414 bytes_out 0 214414 bytes_in 0 214414 station_ip 94.241.175.77 214414 port 52 214414 unique_id port 214414 remote_ip 10.8.1.38 214417 username hamid2 214417 mac 214417 bytes_out 29413 214417 bytes_in 50712 214417 station_ip 94.241.175.77 214417 port 52 214417 unique_id port 214417 remote_ip 10.8.1.38 214422 username yaghobi 214422 mac 214422 bytes_out 0 214422 bytes_in 0 214422 station_ip 37.129.39.148 214422 port 88 214422 unique_id port 214422 remote_ip 10.8.0.106 214425 username hamid2 214425 mac 214425 bytes_out 835573 214425 bytes_in 6517393 214369 mac 214369 bytes_out 0 214369 bytes_in 0 214369 station_ip 94.241.175.77 214369 port 46 214369 unique_id port 214369 remote_ip 10.8.0.78 214372 username alipour1506 214372 mac 214372 bytes_out 1861295 214372 bytes_in 19346545 214372 station_ip 83.123.251.11 214372 port 92 214372 unique_id port 214372 remote_ip 10.8.0.46 214376 username barzegar8595 214376 mac 214376 bytes_out 0 214376 bytes_in 0 214376 station_ip 37.27.39.254 214376 port 46 214376 unique_id port 214376 remote_ip 10.8.0.170 214379 username naeimeh 214379 mac 214379 bytes_out 474370 214379 bytes_in 8607001 214379 station_ip 37.129.95.32 214379 port 54 214379 unique_id port 214379 remote_ip 10.8.1.150 214380 username sabaghnezhad 214380 mac 214380 bytes_out 184622 214380 bytes_in 243937 214380 station_ip 37.129.57.4 214380 port 84 214380 unique_id port 214380 remote_ip 10.8.0.94 214382 username farhad3 214382 mac 214382 bytes_out 0 214382 bytes_in 0 214382 station_ip 5.119.204.252 214382 port 52 214382 unique_id port 214382 remote_ip 10.8.1.86 214384 username hamid2 214384 mac 214384 bytes_out 0 214384 bytes_in 0 214384 station_ip 94.241.175.77 214384 port 52 214384 unique_id port 214384 remote_ip 10.8.1.38 214385 username hamid2 214385 mac 214385 bytes_out 0 214385 bytes_in 0 214385 station_ip 94.241.175.77 214385 port 52 214385 unique_id port 214385 remote_ip 10.8.1.38 214392 username naeimeh 214392 mac 214392 bytes_out 0 214392 bytes_in 0 214392 station_ip 37.129.95.32 214392 port 54 214392 unique_id port 214392 remote_ip 10.8.1.150 214394 username barzegar 214394 mac 214394 bytes_out 227046 214394 bytes_in 30312 214394 station_ip 5.119.242.145 214394 port 78 214394 unique_id port 214394 remote_ip 10.8.0.34 214397 username naeimeh 214397 mac 214397 bytes_out 49284 214397 bytes_in 102367 214397 station_ip 37.129.31.234 214397 port 56 214397 unique_id port 214397 remote_ip 10.8.1.150 214398 username aminvpnipad 214398 mac 214398 bytes_out 0 214398 bytes_in 0 214398 station_ip 5.120.173.120 214398 port 1 214398 unique_id port 214398 remote_ip 10.8.0.2 214400 username naeimeh 214400 mac 214400 bytes_out 0 214400 bytes_in 0 214400 station_ip 37.129.31.234 214400 port 55 214400 unique_id port 214400 remote_ip 10.8.1.150 214402 username naeimeh 214402 kill_reason Maximum check online fails reached 214402 mac 214402 bytes_out 0 214402 bytes_in 0 214402 station_ip 37.129.31.234 214402 port 56 214402 unique_id port 214403 username barzegar 214403 kill_reason Maximum check online fails reached 214403 mac 214403 bytes_out 0 214403 bytes_in 0 214403 station_ip 5.119.242.145 214403 port 78 214403 unique_id port 214404 username farhad3 214404 mac 214404 bytes_out 0 214404 bytes_in 0 214404 station_ip 5.119.204.252 214404 port 52 214404 unique_id port 214404 remote_ip 10.8.1.86 214407 username barzegar 214407 mac 214407 bytes_out 0 214407 bytes_in 0 214407 station_ip 5.119.242.145 214407 port 46 214407 unique_id port 214407 remote_ip 10.8.0.34 214410 username aminvpn2 214410 mac 214410 bytes_out 0 214410 bytes_in 0 214410 station_ip 5.233.74.44 214410 port 50 214410 unique_id port 214412 username jafari 214412 kill_reason Another user logged on this global unique id 214412 mac 214412 bytes_out 0 214412 bytes_in 0 214412 station_ip 5.62.223.152 214412 port 53 214412 unique_id port 214412 remote_ip 10.8.1.190 214416 username farhad3 214416 mac 214416 bytes_out 0 214416 bytes_in 0 214389 bytes_out 0 214389 bytes_in 0 214389 station_ip 94.241.175.77 214389 port 55 214389 unique_id port 214389 remote_ip 10.8.1.38 214393 username hamid2 214393 mac 214393 bytes_out 0 214393 bytes_in 0 214393 station_ip 94.241.175.77 214393 port 55 214393 unique_id port 214393 remote_ip 10.8.1.38 214395 username hamid2 214395 mac 214395 bytes_out 0 214395 bytes_in 0 214395 station_ip 94.241.175.77 214395 port 54 214395 unique_id port 214395 remote_ip 10.8.1.38 214396 username kalantary6037 214396 mac 214396 bytes_out 372230 214396 bytes_in 2171340 214396 station_ip 37.129.64.241 214396 port 84 214396 unique_id port 214396 remote_ip 10.8.0.18 214408 username aminvpnipad 214408 mac 214408 bytes_out 0 214408 bytes_in 0 214408 station_ip 5.120.173.120 214408 port 1 214408 unique_id port 214408 remote_ip 10.8.0.2 214415 username farhad3 214415 mac 214415 bytes_out 0 214415 bytes_in 0 214415 station_ip 5.120.69.166 214415 port 84 214415 unique_id port 214415 remote_ip 10.8.0.98 214420 username aminvpnipad 214420 mac 214420 bytes_out 0 214420 bytes_in 0 214420 station_ip 5.120.173.120 214420 port 1 214420 unique_id port 214420 remote_ip 10.8.0.2 214426 username barzegar 214426 mac 214426 bytes_out 0 214426 bytes_in 0 214426 station_ip 5.119.242.145 214426 port 55 214426 unique_id port 214426 remote_ip 10.8.1.30 214427 username saeeddamghani 214427 mac 214427 bytes_out 0 214427 bytes_in 0 214427 station_ip 217.60.175.208 214427 port 84 214427 unique_id port 214427 remote_ip 10.8.0.162 214429 username hamid2 214429 mac 214429 bytes_out 0 214429 bytes_in 0 214429 station_ip 94.241.175.77 214429 port 55 214429 unique_id port 214429 remote_ip 10.8.1.38 214433 username hamid2 214433 mac 214433 bytes_out 0 214433 bytes_in 0 214433 station_ip 94.241.175.77 214433 port 55 214433 unique_id port 214433 remote_ip 10.8.1.38 214440 username motamedi9772 214440 kill_reason Maximum check online fails reached 214440 mac 214440 bytes_out 0 214440 bytes_in 0 214440 station_ip 37.129.18.201 214440 port 84 214440 unique_id port 214442 username jafari 214442 kill_reason Another user logged on this global unique id 214442 mac 214442 bytes_out 0 214442 bytes_in 0 214442 station_ip 5.62.223.152 214442 port 53 214442 unique_id port 214444 username hamid2 214444 mac 214444 bytes_out 0 214444 bytes_in 0 214444 station_ip 94.241.175.77 214444 port 51 214444 unique_id port 214444 remote_ip 10.8.1.38 214445 username hamid2 214445 mac 214445 bytes_out 0 214445 bytes_in 0 214445 station_ip 94.241.175.77 214445 port 51 214445 unique_id port 214445 remote_ip 10.8.1.38 214448 username hamid2 214448 mac 214448 bytes_out 0 214448 bytes_in 0 214448 station_ip 94.241.175.77 214448 port 55 214448 unique_id port 214448 remote_ip 10.8.1.38 214455 username godarzi 214455 mac 214455 bytes_out 1979359 214455 bytes_in 19890373 214455 station_ip 5.202.65.237 214455 port 90 214455 unique_id port 214455 remote_ip 10.8.0.74 214457 username yaghobi 214457 mac 214457 bytes_out 169538 214457 bytes_in 178438 214457 station_ip 37.129.39.148 214457 port 52 214457 unique_id port 214457 remote_ip 10.8.1.106 214459 username hamid2 214459 mac 214459 bytes_out 0 214459 bytes_in 0 214459 station_ip 94.241.175.77 214459 port 54 214459 unique_id port 214459 remote_ip 10.8.1.38 214468 username hamid2 214468 mac 214468 bytes_out 0 214468 bytes_in 0 214468 station_ip 94.241.175.77 214468 port 52 214416 station_ip 5.120.69.166 214416 port 84 214416 unique_id port 214416 remote_ip 10.8.0.98 214418 username farhad3 214418 mac 214418 bytes_out 0 214418 bytes_in 0 214418 station_ip 5.120.69.166 214418 port 84 214418 unique_id port 214418 remote_ip 10.8.0.98 214419 username saeeddamghani 214419 mac 214419 bytes_out 0 214419 bytes_in 0 214419 station_ip 217.60.175.208 214419 port 92 214419 unique_id port 214419 remote_ip 10.8.0.162 214421 username farhad3 214421 mac 214421 bytes_out 0 214421 bytes_in 0 214421 station_ip 5.120.69.166 214421 port 84 214421 unique_id port 214421 remote_ip 10.8.0.98 214423 username barzegar 214423 mac 214423 bytes_out 0 214423 bytes_in 0 214423 station_ip 5.119.242.145 214423 port 84 214423 unique_id port 214423 remote_ip 10.8.0.34 214424 username aminvpn 214424 kill_reason Another user logged on this global unique id 214424 mac 214424 bytes_out 0 214424 bytes_in 0 214424 station_ip 5.120.72.208 214424 port 46 214424 unique_id port 214424 remote_ip 10.8.0.58 214430 username hamid2 214430 mac 214430 bytes_out 0 214430 bytes_in 0 214430 station_ip 94.241.175.77 214430 port 55 214430 unique_id port 214430 remote_ip 10.8.1.38 214431 username saeeddamghani 214431 mac 214431 bytes_out 0 214431 bytes_in 0 214431 station_ip 217.60.175.208 214431 port 84 214431 unique_id port 214431 remote_ip 10.8.0.162 214436 username farhad3 214436 mac 214436 bytes_out 950308 214436 bytes_in 2423824 214436 station_ip 5.120.69.166 214436 port 54 214436 unique_id port 214436 remote_ip 10.8.1.86 214437 username hamid2 214437 mac 214437 bytes_out 268574 214437 bytes_in 1796600 214437 station_ip 94.241.175.77 214437 port 55 214437 unique_id port 214437 remote_ip 10.8.1.38 214439 username pourshad 214439 mac 214439 bytes_out 11991203 214439 bytes_in 54044238 214439 station_ip 5.120.100.246 214439 port 51 214439 unique_id port 214439 remote_ip 10.8.1.10 214441 username hamid2 214441 mac 214441 bytes_out 22008 214441 bytes_in 22450 214441 station_ip 94.241.175.77 214441 port 54 214441 unique_id port 214441 remote_ip 10.8.1.38 214447 username farhad3 214447 mac 214447 bytes_out 0 214447 bytes_in 0 214447 station_ip 5.120.69.166 214447 port 51 214447 unique_id port 214447 remote_ip 10.8.1.86 214451 username aminvpnipad 214451 mac 214451 bytes_out 0 214451 bytes_in 0 214451 station_ip 5.120.173.120 214451 port 1 214451 unique_id port 214451 remote_ip 10.8.0.2 214452 username hamid2 214452 mac 214452 bytes_out 0 214452 bytes_in 0 214452 station_ip 94.241.175.77 214452 port 55 214452 unique_id port 214452 remote_ip 10.8.1.38 214454 username farhad3 214454 mac 214454 bytes_out 302954 214454 bytes_in 5936463 214454 station_ip 5.120.69.166 214454 port 54 214454 unique_id port 214454 remote_ip 10.8.1.86 214456 username barzegar 214456 mac 214456 bytes_out 0 214456 bytes_in 0 214456 station_ip 5.119.242.145 214456 port 88 214456 unique_id port 214456 remote_ip 10.8.0.34 214460 username hamid2 214460 mac 214460 bytes_out 0 214460 bytes_in 0 214460 station_ip 94.241.175.77 214460 port 54 214460 unique_id port 214460 remote_ip 10.8.1.38 214461 username hamid2 214461 mac 214461 bytes_out 0 214461 bytes_in 0 214461 station_ip 94.241.175.77 214461 port 54 214461 unique_id port 214461 remote_ip 10.8.1.38 214463 username hamid2 214463 mac 214463 bytes_out 0 214463 bytes_in 0 214463 station_ip 94.241.175.77 214463 port 52 214463 unique_id port 214425 station_ip 94.241.175.77 214425 port 52 214425 unique_id port 214425 remote_ip 10.8.1.38 214428 username hamid2 214428 mac 214428 bytes_out 0 214428 bytes_in 0 214428 station_ip 94.241.175.77 214428 port 52 214428 unique_id port 214428 remote_ip 10.8.1.38 214432 username hamid2 214432 mac 214432 bytes_out 0 214432 bytes_in 0 214432 station_ip 94.241.175.77 214432 port 55 214432 unique_id port 214432 remote_ip 10.8.1.38 214434 username khademi 214434 kill_reason Another user logged on this global unique id 214434 mac 214434 bytes_out 0 214434 bytes_in 0 214434 station_ip 5.202.0.17 214434 port 41 214434 unique_id port 214435 username aminvpnipad 214435 mac 214435 bytes_out 0 214435 bytes_in 0 214435 station_ip 5.120.173.120 214435 port 1 214435 unique_id port 214435 remote_ip 10.8.0.2 214438 username barzegar 214438 mac 214438 bytes_out 0 214438 bytes_in 0 214438 station_ip 5.119.242.145 214438 port 88 214438 unique_id port 214438 remote_ip 10.8.0.34 214443 username hamid2 214443 mac 214443 bytes_out 0 214443 bytes_in 0 214443 station_ip 94.241.175.77 214443 port 51 214443 unique_id port 214443 remote_ip 10.8.1.38 214446 username khademi 214446 kill_reason Another user logged on this global unique id 214446 mac 214446 bytes_out 0 214446 bytes_in 0 214446 station_ip 5.202.0.17 214446 port 41 214446 unique_id port 214449 username aminvpn 214449 kill_reason Another user logged on this global unique id 214449 mac 214449 bytes_out 0 214449 bytes_in 0 214449 station_ip 5.120.72.208 214449 port 46 214449 unique_id port 214450 username farhad3 214450 mac 214450 bytes_out 270788 214450 bytes_in 1103344 214450 station_ip 5.120.69.166 214450 port 54 214450 unique_id port 214450 remote_ip 10.8.1.86 214453 username hamid2 214453 mac 214453 bytes_out 0 214453 bytes_in 0 214453 station_ip 94.241.175.77 214453 port 55 214453 unique_id port 214453 remote_ip 10.8.1.38 214458 username hamid2 214458 mac 214458 bytes_out 57271 214458 bytes_in 314209 214458 station_ip 94.241.175.77 214458 port 54 214458 unique_id port 214458 remote_ip 10.8.1.38 214462 username yaghobi 214462 mac 214462 bytes_out 25330 214462 bytes_in 35638 214462 station_ip 37.129.39.148 214462 port 52 214462 unique_id port 214462 remote_ip 10.8.1.106 214464 username hamid2 214464 mac 214464 bytes_out 0 214464 bytes_in 0 214464 station_ip 94.241.175.77 214464 port 52 214464 unique_id port 214464 remote_ip 10.8.1.38 214467 username hamid2 214467 mac 214467 bytes_out 0 214467 bytes_in 0 214467 station_ip 94.241.175.77 214467 port 52 214467 unique_id port 214467 remote_ip 10.8.1.38 214469 username hamid2 214469 mac 214469 bytes_out 0 214469 bytes_in 0 214469 station_ip 94.241.175.77 214469 port 52 214469 unique_id port 214469 remote_ip 10.8.1.38 214474 username aminvpn 214474 kill_reason Another user logged on this global unique id 214474 mac 214474 bytes_out 0 214474 bytes_in 0 214474 station_ip 5.120.72.208 214474 port 46 214474 unique_id port 214475 username aminvpnipad 214475 mac 214475 bytes_out 0 214475 bytes_in 0 214475 station_ip 5.120.173.120 214475 port 1 214475 unique_id port 214475 remote_ip 10.8.0.2 214477 username barzegar 214477 mac 214477 bytes_out 0 214477 bytes_in 0 214477 station_ip 5.119.242.145 214477 port 55 214477 unique_id port 214477 remote_ip 10.8.1.30 214483 username yaghobi 214483 mac 214483 bytes_out 112903 214483 bytes_in 557726 214483 station_ip 37.129.39.148 214483 port 54 214483 unique_id port 214463 remote_ip 10.8.1.38 214465 username hamid.e 214465 unique_id port 214465 terminate_cause User-Request 214465 bytes_out 1889986 214465 bytes_in 23056760 214465 station_ip 37.27.27.229 214465 port 15728656 214465 nas_port_type Virtual 214465 remote_ip 5.5.5.248 214466 username hamid2 214466 mac 214466 bytes_out 0 214466 bytes_in 0 214466 station_ip 94.241.175.77 214466 port 52 214466 unique_id port 214466 remote_ip 10.8.1.38 214473 username yaghobi 214473 mac 214473 bytes_out 36374 214473 bytes_in 40994 214473 station_ip 37.129.39.148 214473 port 54 214473 unique_id port 214473 remote_ip 10.8.1.106 214478 username hamid2 214478 mac 214478 bytes_out 304219 214478 bytes_in 1920753 214478 station_ip 94.241.175.77 214478 port 52 214478 unique_id port 214478 remote_ip 10.8.1.38 214481 username hamid2 214481 mac 214481 bytes_out 0 214481 bytes_in 0 214481 station_ip 94.241.175.77 214481 port 52 214481 unique_id port 214481 remote_ip 10.8.1.38 214482 username farhad3 214482 mac 214482 bytes_out 195222 214482 bytes_in 870862 214482 station_ip 5.120.69.166 214482 port 53 214482 unique_id port 214482 remote_ip 10.8.1.86 214487 username hamid2 214487 mac 214487 bytes_out 0 214487 bytes_in 0 214487 station_ip 94.241.175.77 214487 port 52 214487 unique_id port 214487 remote_ip 10.8.1.38 214488 username hamid2 214488 mac 214488 bytes_out 0 214488 bytes_in 0 214488 station_ip 94.241.175.77 214488 port 52 214488 unique_id port 214488 remote_ip 10.8.1.38 214489 username aminvpnipad 214489 mac 214489 bytes_out 0 214489 bytes_in 0 214489 station_ip 5.120.173.120 214489 port 1 214489 unique_id port 214489 remote_ip 10.8.0.2 214496 username hamid2 214496 mac 214496 bytes_out 64262 214496 bytes_in 260957 214496 station_ip 94.241.175.77 214496 port 52 214496 unique_id port 214496 remote_ip 10.8.1.38 214501 username aminvpnipad 214501 mac 214501 bytes_out 0 214501 bytes_in 0 214501 station_ip 5.120.173.120 214501 port 1 214501 unique_id port 214501 remote_ip 10.8.0.2 214502 username hosseini0093 214502 mac 214502 bytes_out 0 214502 bytes_in 0 214502 station_ip 37.129.26.65 214502 port 50 214502 unique_id port 214502 remote_ip 10.8.0.226 214508 username hamid2 214508 mac 214508 bytes_out 0 214508 bytes_in 0 214508 station_ip 94.241.175.77 214508 port 52 214508 unique_id port 214508 remote_ip 10.8.1.38 214509 username hamid2 214509 mac 214509 bytes_out 0 214509 bytes_in 0 214509 station_ip 94.241.175.77 214509 port 52 214509 unique_id port 214509 remote_ip 10.8.1.38 214513 username hamid2 214513 mac 214513 bytes_out 0 214513 bytes_in 0 214513 station_ip 94.241.175.77 214513 port 52 214513 unique_id port 214513 remote_ip 10.8.1.38 214515 username aminvpn 214515 kill_reason Another user logged on this global unique id 214515 mac 214515 bytes_out 0 214515 bytes_in 0 214515 station_ip 5.120.72.208 214515 port 46 214515 unique_id port 214519 username hamid2 214519 mac 214519 bytes_out 0 214519 bytes_in 0 214519 station_ip 94.241.175.77 214519 port 52 214519 unique_id port 214519 remote_ip 10.8.1.38 214521 username aminvpnipad 214521 mac 214521 bytes_out 0 214521 bytes_in 0 214521 station_ip 5.120.173.120 214521 port 1 214521 unique_id port 214521 remote_ip 10.8.0.2 214522 username hamid2 214522 kill_reason Maximum check online fails reached 214522 mac 214522 bytes_out 0 214522 bytes_in 0 214522 station_ip 94.241.175.77 214522 port 52 214522 unique_id port 214524 username barzegar 214524 mac 214468 unique_id port 214468 remote_ip 10.8.1.38 214470 username hamid2 214470 mac 214470 bytes_out 0 214470 bytes_in 0 214470 station_ip 94.241.175.77 214470 port 52 214470 unique_id port 214470 remote_ip 10.8.1.38 214471 username godarzi 214471 mac 214471 bytes_out 0 214471 bytes_in 0 214471 station_ip 66.79.113.108 214471 port 90 214471 unique_id port 214471 remote_ip 10.8.0.74 214472 username hamid2 214472 mac 214472 bytes_out 0 214472 bytes_in 0 214472 station_ip 94.241.175.77 214472 port 52 214472 unique_id port 214472 remote_ip 10.8.1.38 214476 username jafari 214476 mac 214476 bytes_out 0 214476 bytes_in 0 214476 station_ip 5.62.223.152 214476 port 53 214476 unique_id port 214479 username mohammadjavad 214479 mac 214479 bytes_out 1013115 214479 bytes_in 5942784 214479 station_ip 83.122.147.132 214479 port 90 214479 unique_id port 214479 remote_ip 10.8.0.138 214480 username khademi 214480 kill_reason Another user logged on this global unique id 214480 mac 214480 bytes_out 0 214480 bytes_in 0 214480 station_ip 5.202.0.17 214480 port 41 214480 unique_id port 214484 username barzegar 214484 mac 214484 bytes_out 0 214484 bytes_in 0 214484 station_ip 5.119.242.145 214484 port 90 214484 unique_id port 214484 remote_ip 10.8.0.34 214486 username hamid2 214486 mac 214486 bytes_out 143747 214486 bytes_in 44168 214486 station_ip 94.241.175.77 214486 port 52 214486 unique_id port 214486 remote_ip 10.8.1.38 214490 username hamid2 214490 mac 214490 bytes_out 0 214490 bytes_in 0 214490 station_ip 94.241.175.77 214490 port 52 214490 unique_id port 214490 remote_ip 10.8.1.38 214492 username hamid2 214492 mac 214492 bytes_out 0 214492 bytes_in 0 214492 station_ip 94.241.175.77 214492 port 52 214492 unique_id port 214492 remote_ip 10.8.1.38 214494 username aminvpn 214494 kill_reason Another user logged on this global unique id 214494 mac 214494 bytes_out 0 214494 bytes_in 0 214494 station_ip 5.120.72.208 214494 port 46 214494 unique_id port 214495 username barzegar 214495 mac 214495 bytes_out 2468 214495 bytes_in 5043 214495 station_ip 5.119.242.145 214495 port 53 214495 unique_id port 214495 remote_ip 10.8.1.30 214497 username godarzi 214497 mac 214497 bytes_out 0 214497 bytes_in 0 214497 station_ip 5.119.212.211 214497 port 92 214497 unique_id port 214497 remote_ip 10.8.0.74 214498 username aminvpnipad 214498 mac 214498 bytes_out 0 214498 bytes_in 0 214498 station_ip 5.120.173.120 214498 port 1 214498 unique_id port 214498 remote_ip 10.8.0.2 214499 username farhad3 214499 mac 214499 bytes_out 0 214499 bytes_in 0 214499 station_ip 5.120.69.166 214499 port 53 214499 unique_id port 214499 remote_ip 10.8.1.86 214504 username hamid2 214504 mac 214504 bytes_out 0 214504 bytes_in 0 214504 station_ip 94.241.175.77 214504 port 52 214504 unique_id port 214504 remote_ip 10.8.1.38 214506 username hamid2 214506 mac 214506 bytes_out 0 214506 bytes_in 0 214506 station_ip 94.241.175.77 214506 port 52 214506 unique_id port 214506 remote_ip 10.8.1.38 214507 username hamid2 214507 mac 214507 bytes_out 0 214507 bytes_in 0 214507 station_ip 94.241.175.77 214507 port 52 214507 unique_id port 214507 remote_ip 10.8.1.38 214517 username barzegar 214517 mac 214517 bytes_out 0 214517 bytes_in 0 214517 station_ip 5.119.242.145 214517 port 88 214517 unique_id port 214517 remote_ip 10.8.0.34 214520 username aminvpnipad 214520 mac 214520 bytes_out 0 214520 bytes_in 0 214483 remote_ip 10.8.1.106 214485 username mohammadjavad 214485 mac 214485 bytes_out 0 214485 bytes_in 0 214485 station_ip 83.122.147.132 214485 port 94 214485 unique_id port 214485 remote_ip 10.8.0.138 214491 username hamid2 214491 mac 214491 bytes_out 0 214491 bytes_in 0 214491 station_ip 94.241.175.77 214491 port 52 214491 unique_id port 214491 remote_ip 10.8.1.38 214493 username hamid1430 214493 mac 214493 bytes_out 0 214493 bytes_in 0 214493 station_ip 37.129.237.218 214493 port 50 214493 unique_id port 214493 remote_ip 10.8.0.166 214500 username mosi 214500 kill_reason Another user logged on this global unique id 214500 mac 214500 bytes_out 0 214500 bytes_in 0 214500 station_ip 151.235.124.131 214500 port 75 214500 unique_id port 214503 username hamid2 214503 mac 214503 bytes_out 2919728 214503 bytes_in 26410198 214503 station_ip 94.241.175.77 214503 port 52 214503 unique_id port 214503 remote_ip 10.8.1.38 214505 username hamid2 214505 mac 214505 bytes_out 0 214505 bytes_in 0 214505 station_ip 94.241.175.77 214505 port 52 214505 unique_id port 214505 remote_ip 10.8.1.38 214510 username hamid2 214510 mac 214510 bytes_out 0 214510 bytes_in 0 214510 station_ip 94.241.175.77 214510 port 52 214510 unique_id port 214510 remote_ip 10.8.1.38 214511 username hamid2 214511 mac 214511 bytes_out 0 214511 bytes_in 0 214511 station_ip 94.241.175.77 214511 port 52 214511 unique_id port 214511 remote_ip 10.8.1.38 214512 username dortaj3792 214512 mac 214512 bytes_out 0 214512 bytes_in 0 214512 station_ip 5.119.175.220 214512 port 88 214512 unique_id port 214512 remote_ip 10.8.0.10 214514 username hamid2 214514 mac 214514 bytes_out 0 214514 bytes_in 0 214514 station_ip 94.241.175.77 214514 port 52 214514 unique_id port 214514 remote_ip 10.8.1.38 214516 username hamid2 214516 mac 214516 bytes_out 0 214516 bytes_in 0 214516 station_ip 94.241.175.77 214516 port 52 214516 unique_id port 214516 remote_ip 10.8.1.38 214518 username hamid2 214518 mac 214518 bytes_out 0 214518 bytes_in 0 214518 station_ip 94.241.175.77 214518 port 52 214518 unique_id port 214518 remote_ip 10.8.1.38 214527 username kalantary6037 214527 mac 214527 bytes_out 390256 214527 bytes_in 2674220 214527 station_ip 37.129.72.177 214527 port 88 214527 unique_id port 214527 remote_ip 10.8.0.18 214534 username barzegar 214534 mac 214534 bytes_out 0 214534 bytes_in 0 214534 station_ip 5.119.242.145 214534 port 54 214534 unique_id port 214534 remote_ip 10.8.1.30 214537 username dortaj3792 214537 mac 214537 bytes_out 0 214537 bytes_in 0 214537 station_ip 5.119.175.220 214537 port 50 214537 unique_id port 214537 remote_ip 10.8.0.10 214542 username sabaghnezhad 214542 mac 214542 bytes_out 174961 214542 bytes_in 181019 214542 station_ip 37.129.185.79 214542 port 90 214542 unique_id port 214542 remote_ip 10.8.0.94 214544 username aminvpn 214544 unique_id port 214544 terminate_cause User-Request 214544 bytes_out 0 214544 bytes_in 0 214544 station_ip 83.123.226.102 214544 port 15728659 214544 nas_port_type Virtual 214544 remote_ip 5.5.5.246 214551 username hamid2 214551 mac 214551 bytes_out 0 214551 bytes_in 0 214551 station_ip 94.241.175.77 214551 port 75 214551 unique_id port 214551 remote_ip 10.8.0.78 214552 username barzegar 214552 mac 214552 bytes_out 0 214552 bytes_in 0 214552 station_ip 5.119.242.145 214552 port 53 214552 unique_id port 214552 remote_ip 10.8.1.30 214554 username aminvpn 214554 unique_id port 214520 station_ip 5.120.173.120 214520 port 1 214520 unique_id port 214520 remote_ip 10.8.0.2 214523 username khademi 214523 kill_reason Another user logged on this global unique id 214523 mac 214523 bytes_out 0 214523 bytes_in 0 214523 station_ip 5.202.0.17 214523 port 41 214523 unique_id port 214525 username mosi 214525 mac 214525 bytes_out 0 214525 bytes_in 0 214525 station_ip 151.235.124.131 214525 port 75 214525 unique_id port 214526 username aminvpn 214526 mac 214526 bytes_out 0 214526 bytes_in 0 214526 station_ip 5.120.72.208 214526 port 46 214526 unique_id port 214528 username barzegar 214528 mac 214528 bytes_out 0 214528 bytes_in 0 214528 station_ip 5.119.242.145 214528 port 92 214528 unique_id port 214528 remote_ip 10.8.0.34 214533 username mammad 214533 unique_id port 214533 terminate_cause Lost-Carrier 214533 bytes_out 229996 214533 bytes_in 5028113 214533 station_ip 5.233.68.168 214533 port 15728657 214533 nas_port_type Virtual 214533 remote_ip 5.5.5.247 214535 username hamid2 214535 mac 214535 bytes_out 0 214535 bytes_in 0 214535 station_ip 94.241.175.77 214535 port 53 214535 unique_id port 214535 remote_ip 10.8.1.38 214536 username hamid2 214536 mac 214536 bytes_out 0 214536 bytes_in 0 214536 station_ip 94.241.175.77 214536 port 53 214536 unique_id port 214536 remote_ip 10.8.1.38 214538 username hamid2 214538 mac 214538 bytes_out 0 214538 bytes_in 0 214538 station_ip 94.241.175.77 214538 port 53 214538 unique_id port 214538 remote_ip 10.8.1.38 214539 username hamid2 214539 mac 214539 bytes_out 0 214539 bytes_in 0 214539 station_ip 94.241.175.77 214539 port 54 214539 unique_id port 214539 remote_ip 10.8.1.38 214540 username hamid2 214540 mac 214540 bytes_out 0 214540 bytes_in 0 214540 station_ip 94.241.175.77 214540 port 54 214540 unique_id port 214540 remote_ip 10.8.1.38 214541 username hamid2 214541 mac 214541 bytes_out 0 214541 bytes_in 0 214541 station_ip 94.241.175.77 214541 port 54 214541 unique_id port 214541 remote_ip 10.8.1.38 214546 username hamid2 214546 mac 214546 bytes_out 0 214546 bytes_in 0 214546 station_ip 94.241.175.77 214546 port 54 214546 unique_id port 214546 remote_ip 10.8.1.38 214547 username hamid2 214547 mac 214547 bytes_out 0 214547 bytes_in 0 214547 station_ip 94.241.175.77 214547 port 54 214547 unique_id port 214547 remote_ip 10.8.1.38 214549 username hamid2 214549 mac 214549 bytes_out 0 214549 bytes_in 0 214549 station_ip 94.241.175.77 214549 port 54 214549 unique_id port 214549 remote_ip 10.8.1.38 214550 username barzegar 214550 mac 214550 bytes_out 5361 214550 bytes_in 12821 214550 station_ip 5.119.242.145 214550 port 53 214550 unique_id port 214550 remote_ip 10.8.1.30 214553 username hamid2 214553 mac 214553 bytes_out 21844 214553 bytes_in 22262 214553 station_ip 94.241.175.77 214553 port 75 214553 unique_id port 214553 remote_ip 10.8.0.78 214556 username aminvpnipad 214556 mac 214556 bytes_out 0 214556 bytes_in 0 214556 station_ip 5.120.173.120 214556 port 1 214556 unique_id port 214556 remote_ip 10.8.0.2 214558 username mammad 214558 unique_id port 214558 terminate_cause User-Request 214558 bytes_out 1474616 214558 bytes_in 10669852 214558 station_ip 5.233.68.168 214558 port 15728658 214558 nas_port_type Virtual 214558 remote_ip 5.5.5.247 214559 username hamid2 214559 mac 214559 bytes_out 0 214559 bytes_in 0 214559 station_ip 94.241.175.77 214559 port 88 214559 unique_id port 214559 remote_ip 10.8.0.78 214524 bytes_out 0 214524 bytes_in 0 214524 station_ip 5.119.242.145 214524 port 92 214524 unique_id port 214524 remote_ip 10.8.0.34 214529 username hamid2 214529 mac 214529 bytes_out 43110 214529 bytes_in 125211 214529 station_ip 94.241.175.77 214529 port 53 214529 unique_id port 214529 remote_ip 10.8.1.38 214530 username hamid2 214530 mac 214530 bytes_out 0 214530 bytes_in 0 214530 station_ip 94.241.175.77 214530 port 53 214530 unique_id port 214530 remote_ip 10.8.1.38 214531 username hamid2 214531 mac 214531 bytes_out 0 214531 bytes_in 0 214531 station_ip 94.241.175.77 214531 port 53 214531 unique_id port 214531 remote_ip 10.8.1.38 214532 username hamid2 214532 mac 214532 bytes_out 0 214532 bytes_in 0 214532 station_ip 94.241.175.77 214532 port 53 214532 unique_id port 214532 remote_ip 10.8.1.38 214543 username aminvpnipad 214543 mac 214543 bytes_out 0 214543 bytes_in 0 214543 station_ip 5.120.173.120 214543 port 1 214543 unique_id port 214543 remote_ip 10.8.0.2 214545 username hamid2 214545 mac 214545 bytes_out 0 214545 bytes_in 0 214545 station_ip 94.241.175.77 214545 port 54 214545 unique_id port 214545 remote_ip 10.8.1.38 214548 username mosi 214548 mac 214548 bytes_out 0 214548 bytes_in 0 214548 station_ip 151.235.124.131 214548 port 94 214548 unique_id port 214548 remote_ip 10.8.0.38 214557 username barzegar 214557 mac 214557 bytes_out 59708 214557 bytes_in 102165 214557 station_ip 5.119.242.145 214557 port 53 214557 unique_id port 214557 remote_ip 10.8.1.30 214561 username saeeddamghani 214561 unique_id port 214561 terminate_cause Lost-Carrier 214561 bytes_out 0 214561 bytes_in 304 214561 station_ip 217.60.175.208 214561 port 15728661 214561 nas_port_type Virtual 214561 remote_ip 5.5.5.245 214563 username barzegar 214563 mac 214563 bytes_out 0 214563 bytes_in 0 214563 station_ip 5.119.242.145 214563 port 90 214563 unique_id port 214563 remote_ip 10.8.0.34 214567 username barzegar 214567 mac 214567 bytes_out 0 214567 bytes_in 0 214567 station_ip 5.119.242.145 214567 port 88 214567 unique_id port 214567 remote_ip 10.8.0.34 214569 username hamid2 214569 mac 214569 bytes_out 0 214569 bytes_in 0 214569 station_ip 94.241.175.77 214569 port 88 214569 unique_id port 214569 remote_ip 10.8.0.78 214571 username pourshad 214571 mac 214571 bytes_out 71825 214571 bytes_in 551046 214571 station_ip 5.120.100.246 214571 port 90 214571 unique_id port 214571 remote_ip 10.8.0.122 214583 username aminvpnipad 214583 mac 214583 bytes_out 0 214583 bytes_in 0 214583 station_ip 5.120.173.120 214583 port 1 214583 unique_id port 214583 remote_ip 10.8.0.2 214593 username hamid2 214593 mac 214593 bytes_out 0 214593 bytes_in 0 214593 station_ip 94.241.175.77 214593 port 53 214593 unique_id port 214593 remote_ip 10.8.1.38 214595 username barzegar 214595 mac 214595 bytes_out 0 214595 bytes_in 0 214595 station_ip 5.119.242.145 214595 port 53 214595 unique_id port 214595 remote_ip 10.8.1.30 214596 username mirzaei6046 214596 mac 214596 bytes_out 0 214596 bytes_in 0 214596 station_ip 5.120.121.238 214596 port 89 214596 unique_id port 214596 remote_ip 10.8.0.242 214598 username aminvpnipad 214598 mac 214598 bytes_out 0 214598 bytes_in 0 214598 station_ip 5.120.173.120 214598 port 1 214598 unique_id port 214598 remote_ip 10.8.0.2 214601 username barzegar 214601 mac 214601 bytes_out 0 214601 bytes_in 0 214601 station_ip 5.119.242.145 214601 port 89 214554 terminate_cause Lost-Carrier 214554 bytes_out 143098 214554 bytes_in 407706 214554 station_ip 83.123.226.102 214554 port 15728660 214554 nas_port_type Virtual 214554 remote_ip 5.5.5.246 214555 username aminvpnipad 214555 mac 214555 bytes_out 0 214555 bytes_in 0 214555 station_ip 5.120.173.120 214555 port 1 214555 unique_id port 214555 remote_ip 10.8.0.2 214560 username kalantary6037 214560 mac 214560 bytes_out 0 214560 bytes_in 0 214560 station_ip 37.129.15.177 214560 port 90 214560 unique_id port 214560 remote_ip 10.8.0.18 214562 username hamid2 214562 mac 214562 bytes_out 0 214562 bytes_in 0 214562 station_ip 94.241.175.77 214562 port 88 214562 unique_id port 214562 remote_ip 10.8.0.78 214564 username pourshad 214564 mac 214564 bytes_out 0 214564 bytes_in 0 214564 station_ip 5.120.100.246 214564 port 51 214564 unique_id port 214564 remote_ip 10.8.1.10 214568 username mohammadjavad 214568 mac 214568 bytes_out 139284 214568 bytes_in 457121 214568 station_ip 83.122.129.240 214568 port 94 214568 unique_id port 214568 remote_ip 10.8.0.138 214570 username aminvpnpc 214570 mac 214570 bytes_out 0 214570 bytes_in 0 214570 station_ip 5.120.173.120 214570 port 1 214570 unique_id port 214570 remote_ip 10.8.0.2 214573 username aminvpnipad 214573 mac 214573 bytes_out 0 214573 bytes_in 0 214573 station_ip 5.120.173.120 214573 port 2 214573 unique_id port 214573 remote_ip 10.8.0.2 214576 username hamid2 214576 mac 214576 bytes_out 382639 214576 bytes_in 107872 214576 station_ip 94.241.175.77 214576 port 90 214576 unique_id port 214576 remote_ip 10.8.0.78 214577 username aminvpnipad 214577 mac 214577 bytes_out 0 214577 bytes_in 0 214577 station_ip 5.120.173.120 214577 port 1 214577 unique_id port 214577 remote_ip 10.8.0.2 214578 username godarzi 214578 mac 214578 bytes_out 3107712 214578 bytes_in 14218999 214578 station_ip 5.119.212.211 214578 port 46 214578 unique_id port 214578 remote_ip 10.8.0.74 214581 username soleymani5056 214581 mac 214581 bytes_out 0 214581 bytes_in 0 214581 station_ip 5.120.92.175 214581 port 95 214581 unique_id port 214581 remote_ip 10.8.0.246 214585 username kalantary6037 214585 mac 214585 bytes_out 407211 214585 bytes_in 3137336 214585 station_ip 37.129.86.149 214585 port 53 214585 unique_id port 214585 remote_ip 10.8.1.98 214586 username hamid2 214586 mac 214586 bytes_out 0 214586 bytes_in 0 214586 station_ip 94.241.175.77 214586 port 53 214586 unique_id port 214586 remote_ip 10.8.1.38 214587 username hamid2 214587 mac 214587 bytes_out 0 214587 bytes_in 0 214587 station_ip 94.241.175.77 214587 port 53 214587 unique_id port 214587 remote_ip 10.8.1.38 214589 username hamid2 214589 mac 214589 bytes_out 0 214589 bytes_in 0 214589 station_ip 94.241.175.77 214589 port 53 214589 unique_id port 214589 remote_ip 10.8.1.38 214590 username hamid2 214590 mac 214590 bytes_out 0 214590 bytes_in 0 214590 station_ip 94.241.175.77 214590 port 53 214590 unique_id port 214590 remote_ip 10.8.1.38 214597 username barzegar 214597 mac 214597 bytes_out 0 214597 bytes_in 0 214597 station_ip 5.119.242.145 214597 port 46 214597 unique_id port 214597 remote_ip 10.8.0.34 214600 username hamid2 214600 mac 214600 bytes_out 0 214600 bytes_in 0 214600 station_ip 94.241.175.77 214600 port 53 214600 unique_id port 214600 remote_ip 10.8.1.38 214611 username hamid2 214611 mac 214611 bytes_out 0 214611 bytes_in 0 214611 station_ip 94.241.175.77 214565 username aminvpnipad 214565 mac 214565 bytes_out 0 214565 bytes_in 0 214565 station_ip 5.120.173.120 214565 port 1 214565 unique_id port 214565 remote_ip 10.8.0.2 214566 username mohammadjavad 214566 mac 214566 bytes_out 0 214566 bytes_in 0 214566 station_ip 83.122.129.240 214566 port 88 214566 unique_id port 214566 remote_ip 10.8.0.138 214572 username hamid2 214572 mac 214572 bytes_out 0 214572 bytes_in 0 214572 station_ip 94.241.175.77 214572 port 88 214572 unique_id port 214572 remote_ip 10.8.0.78 214574 username pourshad 214574 mac 214574 bytes_out 0 214574 bytes_in 0 214574 station_ip 5.120.100.246 214574 port 94 214574 unique_id port 214574 remote_ip 10.8.0.122 214575 username barzegar 214575 mac 214575 bytes_out 0 214575 bytes_in 0 214575 station_ip 5.119.242.145 214575 port 94 214575 unique_id port 214575 remote_ip 10.8.0.34 214579 username barzegar 214579 mac 214579 bytes_out 0 214579 bytes_in 0 214579 station_ip 5.119.242.145 214579 port 51 214579 unique_id port 214579 remote_ip 10.8.1.30 214580 username sabaghnezhad 214580 mac 214580 bytes_out 198838 214580 bytes_in 282483 214580 station_ip 37.129.185.79 214580 port 55 214580 unique_id port 214580 remote_ip 10.8.1.46 214582 username hamid2 214582 mac 214582 bytes_out 0 214582 bytes_in 0 214582 station_ip 94.241.175.77 214582 port 90 214582 unique_id port 214582 remote_ip 10.8.0.78 214584 username hamid2 214584 kill_reason Maximum check online fails reached 214584 mac 214584 bytes_out 0 214584 bytes_in 0 214584 station_ip 94.241.175.77 214584 port 90 214584 unique_id port 214588 username esmaeili1522 214588 mac 214588 bytes_out 0 214588 bytes_in 0 214588 station_ip 5.120.176.239 214588 port 46 214588 unique_id port 214588 remote_ip 10.8.0.190 214591 username hamid2 214591 mac 214591 bytes_out 0 214591 bytes_in 0 214591 station_ip 94.241.175.77 214591 port 53 214591 unique_id port 214591 remote_ip 10.8.1.38 214592 username hamid2 214592 mac 214592 bytes_out 0 214592 bytes_in 0 214592 station_ip 94.241.175.77 214592 port 53 214592 unique_id port 214592 remote_ip 10.8.1.38 214594 username hamid2 214594 mac 214594 bytes_out 0 214594 bytes_in 0 214594 station_ip 94.241.175.77 214594 port 53 214594 unique_id port 214594 remote_ip 10.8.1.38 214599 username hamid2 214599 mac 214599 bytes_out 0 214599 bytes_in 0 214599 station_ip 94.241.175.77 214599 port 53 214599 unique_id port 214599 remote_ip 10.8.1.38 214603 username aminvpnipad 214603 mac 214603 bytes_out 0 214603 bytes_in 0 214603 station_ip 5.233.74.44 214603 port 1 214603 unique_id port 214603 remote_ip 10.8.0.2 214605 username hamid2 214605 mac 214605 bytes_out 15533 214605 bytes_in 14800 214605 station_ip 94.241.175.77 214605 port 53 214605 unique_id port 214605 remote_ip 10.8.1.38 214607 username hamid2 214607 mac 214607 bytes_out 0 214607 bytes_in 0 214607 station_ip 94.241.175.77 214607 port 54 214607 unique_id port 214607 remote_ip 10.8.1.38 214608 username hamid2 214608 mac 214608 bytes_out 0 214608 bytes_in 0 214608 station_ip 94.241.175.77 214608 port 54 214608 unique_id port 214608 remote_ip 10.8.1.38 214612 username barzegar 214612 mac 214612 bytes_out 0 214612 bytes_in 0 214612 station_ip 5.119.242.145 214612 port 53 214612 unique_id port 214612 remote_ip 10.8.1.30 214620 username hamid2 214620 mac 214620 bytes_out 0 214620 bytes_in 0 214620 station_ip 94.241.175.77 214620 port 53 214601 unique_id port 214601 remote_ip 10.8.0.34 214602 username hamid2 214602 mac 214602 bytes_out 0 214602 bytes_in 0 214602 station_ip 94.241.175.77 214602 port 53 214602 unique_id port 214602 remote_ip 10.8.1.38 214604 username aminvpnipad 214604 mac 214604 bytes_out 0 214604 bytes_in 0 214604 station_ip 5.233.74.44 214604 port 1 214604 unique_id port 214604 remote_ip 10.8.0.2 214606 username hamid2 214606 mac 214606 bytes_out 0 214606 bytes_in 0 214606 station_ip 94.241.175.77 214606 port 54 214606 unique_id port 214606 remote_ip 10.8.1.38 214609 username hamid2 214609 mac 214609 bytes_out 0 214609 bytes_in 0 214609 station_ip 94.241.175.77 214609 port 54 214609 unique_id port 214609 remote_ip 10.8.1.38 214610 username hamid2 214610 mac 214610 bytes_out 0 214610 bytes_in 0 214610 station_ip 94.241.175.77 214610 port 54 214610 unique_id port 214610 remote_ip 10.8.1.38 214613 username hamid2 214613 mac 214613 bytes_out 0 214613 bytes_in 0 214613 station_ip 94.241.175.77 214613 port 54 214613 unique_id port 214613 remote_ip 10.8.1.38 214616 username hamid2 214616 mac 214616 bytes_out 26673 214616 bytes_in 31399 214616 station_ip 94.241.175.77 214616 port 53 214616 unique_id port 214616 remote_ip 10.8.1.38 214618 username hamid2 214618 mac 214618 bytes_out 0 214618 bytes_in 0 214618 station_ip 94.241.175.77 214618 port 53 214618 unique_id port 214618 remote_ip 10.8.1.38 214623 username mohammadjavad 214623 mac 214623 bytes_out 0 214623 bytes_in 0 214623 station_ip 83.122.240.204 214623 port 89 214623 unique_id port 214623 remote_ip 10.8.0.138 214626 username hamid2 214626 mac 214626 bytes_out 0 214626 bytes_in 0 214626 station_ip 94.241.175.77 214626 port 54 214626 unique_id port 214626 remote_ip 10.8.1.38 214628 username hamid2 214628 mac 214628 bytes_out 0 214628 bytes_in 0 214628 station_ip 94.241.175.77 214628 port 54 214628 unique_id port 214628 remote_ip 10.8.1.38 214632 username hamid2 214632 mac 214632 bytes_out 0 214632 bytes_in 0 214632 station_ip 94.241.175.77 214632 port 54 214632 unique_id port 214632 remote_ip 10.8.1.38 214633 username hamid2 214633 mac 214633 bytes_out 0 214633 bytes_in 0 214633 station_ip 94.241.175.77 214633 port 54 214633 unique_id port 214633 remote_ip 10.8.1.38 214637 username hamid2 214637 mac 214637 bytes_out 0 214637 bytes_in 0 214637 station_ip 94.241.175.77 214637 port 94 214637 unique_id port 214637 remote_ip 10.8.0.78 214639 username meysam 214639 mac 214639 bytes_out 0 214639 bytes_in 0 214639 station_ip 188.158.49.245 214639 port 89 214639 unique_id port 214639 remote_ip 10.8.0.102 214643 username khalili2 214643 unique_id port 214643 terminate_cause Lost-Carrier 214643 bytes_out 1186878 214643 bytes_in 71410990 214643 station_ip 5.120.71.141 214643 port 15728662 214643 nas_port_type Virtual 214643 remote_ip 5.5.5.244 214644 username esmaeilkazemi 214644 mac 214644 bytes_out 0 214644 bytes_in 0 214644 station_ip 37.129.245.50 214644 port 94 214644 unique_id port 214644 remote_ip 10.8.0.66 214645 username hamid2 214645 mac 214645 bytes_out 0 214645 bytes_in 0 214645 station_ip 94.241.175.77 214645 port 89 214645 unique_id port 214645 remote_ip 10.8.0.78 214648 username hamid2 214648 mac 214648 bytes_out 0 214648 bytes_in 0 214648 station_ip 94.241.175.77 214648 port 89 214648 unique_id port 214648 remote_ip 10.8.0.78 214650 username hamid2 214650 mac 214650 bytes_out 0 214611 port 54 214611 unique_id port 214611 remote_ip 10.8.1.38 214614 username hamid2 214614 mac 214614 bytes_out 0 214614 bytes_in 0 214614 station_ip 94.241.175.77 214614 port 53 214614 unique_id port 214614 remote_ip 10.8.1.38 214615 username hamid2 214615 mac 214615 bytes_out 0 214615 bytes_in 0 214615 station_ip 94.241.175.77 214615 port 53 214615 unique_id port 214615 remote_ip 10.8.1.38 214617 username hamid2 214617 mac 214617 bytes_out 0 214617 bytes_in 0 214617 station_ip 94.241.175.77 214617 port 53 214617 unique_id port 214617 remote_ip 10.8.1.38 214619 username hamid2 214619 mac 214619 bytes_out 0 214619 bytes_in 0 214619 station_ip 94.241.175.77 214619 port 53 214619 unique_id port 214619 remote_ip 10.8.1.38 214627 username hamid2 214627 mac 214627 bytes_out 0 214627 bytes_in 0 214627 station_ip 94.241.175.77 214627 port 54 214627 unique_id port 214627 remote_ip 10.8.1.38 214629 username hamid2 214629 mac 214629 bytes_out 0 214629 bytes_in 0 214629 station_ip 94.241.175.77 214629 port 54 214629 unique_id port 214629 remote_ip 10.8.1.38 214630 username hamid2 214630 mac 214630 bytes_out 0 214630 bytes_in 0 214630 station_ip 94.241.175.77 214630 port 54 214630 unique_id port 214630 remote_ip 10.8.1.38 214635 username hamid2 214635 mac 214635 bytes_out 0 214635 bytes_in 0 214635 station_ip 94.241.175.77 214635 port 89 214635 unique_id port 214635 remote_ip 10.8.0.78 214636 username godarzi 214636 mac 214636 bytes_out 0 214636 bytes_in 0 214636 station_ip 5.119.212.211 214636 port 94 214636 unique_id port 214636 remote_ip 10.8.0.74 214638 username motamedi9772 214638 mac 214638 bytes_out 104876 214638 bytes_in 221945 214638 station_ip 37.129.18.9 214638 port 54 214638 unique_id port 214638 remote_ip 10.8.1.182 214641 username sabaghnezhad 214641 mac 214641 bytes_out 486912 214641 bytes_in 2380962 214641 station_ip 83.122.16.2 214641 port 51 214641 unique_id port 214641 remote_ip 10.8.1.46 214646 username hamid2 214646 mac 214646 bytes_out 0 214646 bytes_in 0 214646 station_ip 94.241.175.77 214646 port 89 214646 unique_id port 214646 remote_ip 10.8.0.78 214649 username soleymani5056 214649 mac 214649 bytes_out 0 214649 bytes_in 0 214649 station_ip 5.119.49.199 214649 port 89 214649 unique_id port 214649 remote_ip 10.8.0.246 214651 username hamid2 214651 mac 214651 bytes_out 0 214651 bytes_in 0 214651 station_ip 94.241.175.77 214651 port 94 214651 unique_id port 214651 remote_ip 10.8.0.78 214657 username aminvpn 214657 mac 214657 bytes_out 0 214657 bytes_in 0 214657 station_ip 5.120.72.208 214657 port 75 214657 unique_id port 214657 remote_ip 10.8.0.58 214659 username hamid2 214659 mac 214659 bytes_out 0 214659 bytes_in 0 214659 station_ip 94.241.175.77 214659 port 41 214659 unique_id port 214659 remote_ip 10.8.0.78 214661 username aminvpnipad 214661 mac 214661 bytes_out 0 214661 bytes_in 0 214661 station_ip 5.120.77.53 214661 port 1 214661 unique_id port 214661 remote_ip 10.8.0.2 214663 username hamid2 214663 mac 214663 bytes_out 96836 214663 bytes_in 217874 214663 station_ip 94.241.175.77 214663 port 41 214663 unique_id port 214663 remote_ip 10.8.0.78 214666 username hamid2 214666 mac 214666 bytes_out 0 214666 bytes_in 0 214666 station_ip 94.241.175.77 214666 port 41 214666 unique_id port 214666 remote_ip 10.8.0.78 214668 username hamid2 214668 mac 214668 bytes_out 0 214668 bytes_in 0 214620 unique_id port 214620 remote_ip 10.8.1.38 214621 username hamid2 214621 mac 214621 bytes_out 0 214621 bytes_in 0 214621 station_ip 94.241.175.77 214621 port 54 214621 unique_id port 214621 remote_ip 10.8.1.38 214622 username hamid2 214622 mac 214622 bytes_out 0 214622 bytes_in 0 214622 station_ip 94.241.175.77 214622 port 54 214622 unique_id port 214622 remote_ip 10.8.1.38 214624 username hamid2 214624 mac 214624 bytes_out 0 214624 bytes_in 0 214624 station_ip 94.241.175.77 214624 port 54 214624 unique_id port 214624 remote_ip 10.8.1.38 214625 username hamid2 214625 mac 214625 bytes_out 0 214625 bytes_in 0 214625 station_ip 94.241.175.77 214625 port 54 214625 unique_id port 214625 remote_ip 10.8.1.38 214631 username hamid2 214631 mac 214631 bytes_out 0 214631 bytes_in 0 214631 station_ip 94.241.175.77 214631 port 54 214631 unique_id port 214631 remote_ip 10.8.1.38 214634 username hamid2 214634 mac 214634 bytes_out 0 214634 bytes_in 0 214634 station_ip 94.241.175.77 214634 port 54 214634 unique_id port 214634 remote_ip 10.8.1.38 214640 username hamid2 214640 mac 214640 bytes_out 0 214640 bytes_in 0 214640 station_ip 94.241.175.77 214640 port 95 214640 unique_id port 214640 remote_ip 10.8.0.78 214642 username hamid2 214642 mac 214642 bytes_out 0 214642 bytes_in 0 214642 station_ip 94.241.175.77 214642 port 89 214642 unique_id port 214642 remote_ip 10.8.0.78 214647 username pourshad 214647 mac 214647 bytes_out 0 214647 bytes_in 0 214647 station_ip 5.120.100.246 214647 port 88 214647 unique_id port 214647 remote_ip 10.8.0.122 214654 username hamid2 214654 mac 214654 bytes_out 321478 214654 bytes_in 969675 214654 station_ip 94.241.175.77 214654 port 55 214654 unique_id port 214654 remote_ip 10.8.1.38 214665 username teymori5660 214665 mac 214665 bytes_out 0 214665 bytes_in 0 214665 station_ip 5.119.200.143 214665 port 95 214665 unique_id port 214665 remote_ip 10.8.0.142 214674 username aminvpnipad 214674 mac 214674 bytes_out 0 214674 bytes_in 0 214674 station_ip 5.120.77.53 214674 port 1 214674 unique_id port 214674 remote_ip 10.8.0.2 214678 username farhad3 214678 mac 214678 bytes_out 0 214678 bytes_in 0 214678 station_ip 5.120.69.166 214678 port 88 214678 unique_id port 214678 remote_ip 10.8.0.98 214681 username yaghobi 214681 mac 214681 bytes_out 45904 214681 bytes_in 64269 214681 station_ip 37.129.189.70 214681 port 53 214681 unique_id port 214681 remote_ip 10.8.1.106 214682 username godarzi 214682 mac 214682 bytes_out 3540770 214682 bytes_in 21032605 214682 station_ip 5.119.212.211 214682 port 54 214682 unique_id port 214682 remote_ip 10.8.1.66 214684 username hamid2 214684 mac 214684 bytes_out 0 214684 bytes_in 0 214684 station_ip 94.241.175.77 214684 port 51 214684 unique_id port 214684 remote_ip 10.8.1.38 214689 username aminvpnipad 214689 mac 214689 bytes_out 0 214689 bytes_in 0 214689 station_ip 5.120.77.53 214689 port 1 214689 unique_id port 214689 remote_ip 10.8.0.2 214690 username yaghobi 214690 mac 214690 bytes_out 0 214690 bytes_in 0 214690 station_ip 37.129.189.70 214690 port 53 214690 unique_id port 214690 remote_ip 10.8.1.106 214701 username hamid2 214701 mac 214701 bytes_out 66227 214701 bytes_in 71194 214701 station_ip 94.241.175.77 214701 port 92 214701 unique_id port 214701 remote_ip 10.8.0.78 214702 username motamedi9772 214702 mac 214702 bytes_out 0 214702 bytes_in 0 214650 bytes_in 0 214650 station_ip 94.241.175.77 214650 port 94 214650 unique_id port 214650 remote_ip 10.8.0.78 214652 username barzegar 214652 mac 214652 bytes_out 0 214652 bytes_in 0 214652 station_ip 5.119.242.145 214652 port 53 214652 unique_id port 214652 remote_ip 10.8.1.30 214653 username khademi 214653 mac 214653 bytes_out 0 214653 bytes_in 0 214653 station_ip 5.202.0.17 214653 port 41 214653 unique_id port 214655 username hamid2 214655 mac 214655 bytes_out 0 214655 bytes_in 0 214655 station_ip 94.241.175.77 214655 port 55 214655 unique_id port 214655 remote_ip 10.8.1.38 214656 username hamid2 214656 mac 214656 bytes_out 0 214656 bytes_in 0 214656 station_ip 94.241.175.77 214656 port 55 214656 unique_id port 214656 remote_ip 10.8.1.38 214658 username pourshad 214658 mac 214658 bytes_out 0 214658 bytes_in 0 214658 station_ip 5.120.100.246 214658 port 88 214658 unique_id port 214658 remote_ip 10.8.0.122 214660 username kalantary6037 214660 mac 214660 bytes_out 372561 214660 bytes_in 3270645 214660 station_ip 37.129.54.161 214660 port 55 214660 unique_id port 214660 remote_ip 10.8.1.98 214662 username barzegar8595 214662 mac 214662 bytes_out 0 214662 bytes_in 0 214662 station_ip 46.225.213.193 214662 port 89 214662 unique_id port 214662 remote_ip 10.8.0.170 214664 username barzegar 214664 mac 214664 bytes_out 176304 214664 bytes_in 138944 214664 station_ip 5.119.242.145 214664 port 53 214664 unique_id port 214664 remote_ip 10.8.1.30 214667 username hamid2 214667 mac 214667 bytes_out 0 214667 bytes_in 0 214667 station_ip 94.241.175.77 214667 port 53 214667 unique_id port 214667 remote_ip 10.8.1.38 214672 username hamid2 214672 mac 214672 bytes_out 0 214672 bytes_in 0 214672 station_ip 94.241.175.77 214672 port 51 214672 unique_id port 214672 remote_ip 10.8.1.38 214675 username aminvpnipad 214675 mac 214675 bytes_out 0 214675 bytes_in 0 214675 station_ip 5.120.77.53 214675 port 1 214675 unique_id port 214675 remote_ip 10.8.0.2 214676 username hamid2 214676 mac 214676 bytes_out 0 214676 bytes_in 0 214676 station_ip 94.241.175.77 214676 port 89 214676 unique_id port 214676 remote_ip 10.8.0.78 214677 username teymori5660 214677 mac 214677 bytes_out 124392 214677 bytes_in 483173 214677 station_ip 5.119.200.143 214677 port 41 214677 unique_id port 214677 remote_ip 10.8.0.142 214679 username hamid2 214679 mac 214679 bytes_out 0 214679 bytes_in 0 214679 station_ip 94.241.175.77 214679 port 89 214679 unique_id port 214679 remote_ip 10.8.0.78 214680 username hamid2 214680 mac 214680 bytes_out 0 214680 bytes_in 0 214680 station_ip 94.241.175.77 214680 port 88 214680 unique_id port 214680 remote_ip 10.8.0.78 214683 username farhad3 214683 mac 214683 bytes_out 0 214683 bytes_in 0 214683 station_ip 5.120.69.166 214683 port 88 214683 unique_id port 214683 remote_ip 10.8.0.98 214686 username malekpoir 214686 mac 214686 bytes_out 0 214686 bytes_in 0 214686 station_ip 5.119.89.152 214686 port 92 214686 unique_id port 214686 remote_ip 10.8.0.178 214687 username mosi 214687 mac 214687 bytes_out 0 214687 bytes_in 0 214687 station_ip 151.235.124.131 214687 port 50 214687 unique_id port 214692 username hamid2 214692 mac 214692 bytes_out 0 214692 bytes_in 0 214692 station_ip 94.241.175.77 214692 port 53 214692 unique_id port 214692 remote_ip 10.8.1.38 214693 username teymori5660 214693 mac 214693 bytes_out 0 214668 station_ip 94.241.175.77 214668 port 53 214668 unique_id port 214668 remote_ip 10.8.1.38 214669 username teymori5660 214669 mac 214669 bytes_out 0 214669 bytes_in 0 214669 station_ip 5.119.200.143 214669 port 41 214669 unique_id port 214669 remote_ip 10.8.0.142 214670 username hamid2 214670 mac 214670 bytes_out 0 214670 bytes_in 0 214670 station_ip 94.241.175.77 214670 port 53 214670 unique_id port 214670 remote_ip 10.8.1.38 214671 username yaghobi 214671 mac 214671 bytes_out 356952 214671 bytes_in 986833 214671 station_ip 37.129.189.70 214671 port 51 214671 unique_id port 214671 remote_ip 10.8.1.106 214673 username mosi 214673 kill_reason Another user logged on this global unique id 214673 mac 214673 bytes_out 0 214673 bytes_in 0 214673 station_ip 151.235.124.131 214673 port 50 214673 unique_id port 214673 remote_ip 10.8.0.38 214685 username hamid2 214685 mac 214685 bytes_out 0 214685 bytes_in 0 214685 station_ip 94.241.175.77 214685 port 51 214685 unique_id port 214685 remote_ip 10.8.1.38 214688 username malekpoir 214688 mac 214688 bytes_out 0 214688 bytes_in 0 214688 station_ip 5.119.89.152 214688 port 51 214688 unique_id port 214688 remote_ip 10.8.1.242 214691 username aminvpnipad 214691 mac 214691 bytes_out 0 214691 bytes_in 0 214691 station_ip 5.120.77.53 214691 port 1 214691 unique_id port 214691 remote_ip 10.8.0.2 214694 username barzegar 214694 mac 214694 bytes_out 0 214694 bytes_in 0 214694 station_ip 5.113.203.26 214694 port 51 214694 unique_id port 214694 remote_ip 10.8.1.30 214698 username motamedi9772 214698 mac 214698 bytes_out 0 214698 bytes_in 0 214698 station_ip 83.122.90.169 214698 port 51 214698 unique_id port 214698 remote_ip 10.8.1.182 214699 username barzegar 214699 mac 214699 bytes_out 0 214699 bytes_in 0 214699 station_ip 5.113.203.26 214699 port 97 214699 unique_id port 214699 remote_ip 10.8.0.34 214706 username yaghobi 214706 mac 214706 bytes_out 0 214706 bytes_in 0 214706 station_ip 37.129.189.70 214706 port 51 214706 unique_id port 214706 remote_ip 10.8.1.106 214708 username hamid2 214708 mac 214708 bytes_out 0 214708 bytes_in 0 214708 station_ip 94.241.175.77 214708 port 97 214708 unique_id port 214708 remote_ip 10.8.0.78 214710 username khademi 214710 kill_reason Another user logged on this global unique id 214710 mac 214710 bytes_out 0 214710 bytes_in 0 214710 station_ip 83.122.138.67 214710 port 94 214710 unique_id port 214710 remote_ip 10.8.0.26 214712 username yaghobi 214712 mac 214712 bytes_out 0 214712 bytes_in 0 214712 station_ip 37.129.189.70 214712 port 53 214712 unique_id port 214712 remote_ip 10.8.1.106 214719 username hamid2 214719 mac 214719 bytes_out 0 214719 bytes_in 0 214719 station_ip 94.241.175.77 214719 port 89 214719 unique_id port 214719 remote_ip 10.8.0.78 214732 username hamid2 214732 mac 214732 bytes_out 0 214732 bytes_in 0 214732 station_ip 94.241.175.77 214732 port 99 214732 unique_id port 214732 remote_ip 10.8.0.78 214734 username barzegar 214734 mac 214734 bytes_out 5985 214734 bytes_in 7381 214734 station_ip 5.112.122.103 214734 port 89 214734 unique_id port 214734 remote_ip 10.8.0.34 214735 username meysam 214735 mac 214735 bytes_out 0 214735 bytes_in 0 214735 station_ip 188.158.50.138 214735 port 53 214735 unique_id port 214739 username pourshad 214739 mac 214739 bytes_out 0 214739 bytes_in 0 214739 station_ip 5.120.100.246 214739 port 75 214739 unique_id port 214693 bytes_in 0 214693 station_ip 5.119.200.143 214693 port 92 214693 unique_id port 214693 remote_ip 10.8.0.142 214695 username hamid2 214695 mac 214695 bytes_out 20150 214695 bytes_in 26124 214695 station_ip 94.241.175.77 214695 port 96 214695 unique_id port 214695 remote_ip 10.8.0.78 214696 username motamedi9772 214696 mac 214696 bytes_out 0 214696 bytes_in 0 214696 station_ip 83.122.90.169 214696 port 51 214696 unique_id port 214696 remote_ip 10.8.1.182 214697 username motamedi9772 214697 mac 214697 bytes_out 0 214697 bytes_in 0 214697 station_ip 83.122.90.169 214697 port 51 214697 unique_id port 214697 remote_ip 10.8.1.182 214700 username motamedi9772 214700 mac 214700 bytes_out 0 214700 bytes_in 0 214700 station_ip 83.122.90.169 214700 port 98 214700 unique_id port 214700 remote_ip 10.8.0.86 214703 username yaghobi 214703 mac 214703 bytes_out 0 214703 bytes_in 0 214703 station_ip 37.129.189.70 214703 port 53 214703 unique_id port 214703 remote_ip 10.8.1.106 214704 username motamedi9772 214704 mac 214704 bytes_out 0 214704 bytes_in 0 214704 station_ip 83.122.90.169 214704 port 92 214704 unique_id port 214704 remote_ip 10.8.0.86 214707 username motamedi9772 214707 mac 214707 bytes_out 0 214707 bytes_in 0 214707 station_ip 83.122.90.169 214707 port 92 214707 unique_id port 214707 remote_ip 10.8.0.86 214709 username meysam 214709 kill_reason Another user logged on this global unique id 214709 mac 214709 bytes_out 0 214709 bytes_in 0 214709 station_ip 188.159.254.93 214709 port 89 214709 unique_id port 214709 remote_ip 10.8.0.102 214713 username aminvpnipad 214713 mac 214713 bytes_out 0 214713 bytes_in 0 214713 station_ip 5.120.77.53 214713 port 1 214713 unique_id port 214713 remote_ip 10.8.0.2 214714 username hamid2 214714 mac 214714 bytes_out 0 214714 bytes_in 0 214714 station_ip 94.241.175.77 214714 port 97 214714 unique_id port 214714 remote_ip 10.8.0.78 214715 username meysam 214715 mac 214715 bytes_out 0 214715 bytes_in 0 214715 station_ip 188.159.254.93 214715 port 89 214715 unique_id port 214716 username hamid2 214716 mac 214716 bytes_out 259321 214716 bytes_in 555444 214716 station_ip 94.241.175.77 214716 port 97 214716 unique_id port 214716 remote_ip 10.8.0.78 214718 username farhad3 214718 kill_reason Another user logged on this global unique id 214718 mac 214718 bytes_out 0 214718 bytes_in 0 214718 station_ip 5.120.69.166 214718 port 95 214718 unique_id port 214718 remote_ip 10.8.0.98 214720 username hamid.e 214720 unique_id port 214720 terminate_cause Lost-Carrier 214720 bytes_out 5461430 214720 bytes_in 29542406 214720 station_ip 37.27.28.134 214720 port 15728663 214720 nas_port_type Virtual 214720 remote_ip 5.5.5.243 214721 username hamid2 214721 mac 214721 bytes_out 0 214721 bytes_in 0 214721 station_ip 94.241.175.77 214721 port 89 214721 unique_id port 214721 remote_ip 10.8.0.78 214725 username kalantary6037 214725 mac 214725 bytes_out 311815 214725 bytes_in 2026600 214725 station_ip 37.129.164.144 214725 port 89 214725 unique_id port 214725 remote_ip 10.8.0.18 214727 username hamid2 214727 mac 214727 bytes_out 0 214727 bytes_in 0 214727 station_ip 94.241.175.77 214727 port 89 214727 unique_id port 214727 remote_ip 10.8.0.78 214730 username morteza4424 214730 mac 214730 bytes_out 623606 214730 bytes_in 9461084 214730 station_ip 83.122.29.86 214730 port 97 214730 unique_id port 214730 remote_ip 10.8.0.150 214733 username farhad3 214733 kill_reason Another user logged on this global unique id 214702 station_ip 83.122.90.169 214702 port 92 214702 unique_id port 214702 remote_ip 10.8.0.86 214705 username motamedi9772 214705 mac 214705 bytes_out 0 214705 bytes_in 0 214705 station_ip 83.122.90.169 214705 port 92 214705 unique_id port 214705 remote_ip 10.8.0.86 214711 username motamedi9772 214711 kill_reason Maximum check online fails reached 214711 mac 214711 bytes_out 0 214711 bytes_in 0 214711 station_ip 83.122.90.169 214711 port 92 214711 unique_id port 214717 username motamedi9772 214717 mac 214717 bytes_out 0 214717 bytes_in 0 214717 station_ip 83.122.90.169 214717 port 51 214717 unique_id port 214717 remote_ip 10.8.1.182 214722 username aminvpnipad 214722 mac 214722 bytes_out 0 214722 bytes_in 0 214722 station_ip 5.120.77.53 214722 port 1 214722 unique_id port 214722 remote_ip 10.8.0.2 214723 username hamid2 214723 mac 214723 bytes_out 0 214723 bytes_in 0 214723 station_ip 94.241.175.77 214723 port 97 214723 unique_id port 214723 remote_ip 10.8.0.78 214724 username meysam 214724 kill_reason Another user logged on this global unique id 214724 mac 214724 bytes_out 0 214724 bytes_in 0 214724 station_ip 188.158.50.138 214724 port 53 214724 unique_id port 214724 remote_ip 10.8.1.6 214726 username morteza4424 214726 mac 214726 bytes_out 222530 214726 bytes_in 3192444 214726 station_ip 83.122.4.237 214726 port 97 214726 unique_id port 214726 remote_ip 10.8.0.150 214728 username aminvpnpc 214728 mac 214728 bytes_out 2552973 214728 bytes_in 11839364 214728 station_ip 5.120.77.53 214728 port 88 214728 unique_id port 214728 remote_ip 10.8.0.146 214729 username hamid2 214729 mac 214729 bytes_out 106549 214729 bytes_in 385755 214729 station_ip 94.241.175.77 214729 port 88 214729 unique_id port 214729 remote_ip 10.8.0.78 214731 username meysam 214731 kill_reason Another user logged on this global unique id 214731 mac 214731 bytes_out 0 214731 bytes_in 0 214731 station_ip 188.158.50.138 214731 port 53 214731 unique_id port 214737 username khorasani9135 214737 kill_reason Another user logged on this global unique id 214737 mac 214737 bytes_out 0 214737 bytes_in 0 214737 station_ip 83.123.215.186 214737 port 93 214737 unique_id port 214745 username hamid2 214745 mac 214745 bytes_out 0 214745 bytes_in 0 214745 station_ip 94.241.175.77 214745 port 97 214745 unique_id port 214745 remote_ip 10.8.0.78 214746 username hamid2 214746 mac 214746 bytes_out 20004 214746 bytes_in 15385 214746 station_ip 94.241.175.77 214746 port 97 214746 unique_id port 214746 remote_ip 10.8.0.78 214747 username motamedi9772 214747 mac 214747 bytes_out 288821 214747 bytes_in 3062249 214747 station_ip 83.122.101.149 214747 port 51 214747 unique_id port 214747 remote_ip 10.8.1.182 214749 username yarmohamadi7916 214749 mac 214749 bytes_out 0 214749 bytes_in 0 214749 station_ip 5.119.135.7 214749 port 41 214749 unique_id port 214749 remote_ip 10.8.0.214 214750 username kalantary6037 214750 mac 214750 bytes_out 521449 214750 bytes_in 1849035 214750 station_ip 37.129.250.84 214750 port 99 214750 unique_id port 214750 remote_ip 10.8.0.18 214757 username aminvpn 214757 kill_reason Another user logged on this global unique id 214757 mac 214757 bytes_out 0 214757 bytes_in 0 214757 station_ip 5.120.77.53 214757 port 75 214757 unique_id port 214758 username yaghobi 214758 mac 214758 bytes_out 0 214758 bytes_in 0 214758 station_ip 37.129.189.70 214758 port 98 214758 unique_id port 214758 remote_ip 10.8.0.106 214759 username milan 214759 mac 214759 bytes_out 0 214733 mac 214733 bytes_out 0 214733 bytes_in 0 214733 station_ip 5.120.69.166 214733 port 95 214733 unique_id port 214736 username barzegar 214736 mac 214736 bytes_out 0 214736 bytes_in 0 214736 station_ip 5.112.122.103 214736 port 89 214736 unique_id port 214736 remote_ip 10.8.0.34 214738 username aminvpnipad 214738 kill_reason Maximum check online fails reached 214738 mac 214738 bytes_out 0 214738 bytes_in 0 214738 station_ip 5.120.77.53 214738 port 1 214738 unique_id port 214742 username farhad3 214742 mac 214742 bytes_out 0 214742 bytes_in 0 214742 station_ip 5.120.69.166 214742 port 95 214742 unique_id port 214744 username aminvpn 214744 kill_reason Another user logged on this global unique id 214744 mac 214744 bytes_out 0 214744 bytes_in 0 214744 station_ip 5.120.77.53 214744 port 75 214744 unique_id port 214744 remote_ip 10.8.0.58 214748 username motamedi9772 214748 mac 214748 bytes_out 0 214748 bytes_in 0 214748 station_ip 83.122.101.149 214748 port 51 214748 unique_id port 214748 remote_ip 10.8.1.182 214752 username barzegar 214752 kill_reason Maximum check online fails reached 214752 mac 214752 bytes_out 0 214752 bytes_in 0 214752 station_ip 5.120.61.46 214752 port 53 214752 unique_id port 214753 username nilufarrajaei 214753 kill_reason Another user logged on this global unique id 214753 mac 214753 bytes_out 0 214753 bytes_in 0 214753 station_ip 37.129.182.205 214753 port 88 214753 unique_id port 214753 remote_ip 10.8.0.50 214754 username farhad3 214754 mac 214754 bytes_out 0 214754 bytes_in 0 214754 station_ip 5.120.69.166 214754 port 99 214754 unique_id port 214754 remote_ip 10.8.0.98 214756 username farhad3 214756 mac 214756 bytes_out 257873 214756 bytes_in 2255159 214756 station_ip 5.120.69.166 214756 port 99 214756 unique_id port 214756 remote_ip 10.8.0.98 214760 username meysam 214760 mac 214760 bytes_out 1601958 214760 bytes_in 35932051 214760 station_ip 188.158.50.138 214760 port 54 214760 unique_id port 214760 remote_ip 10.8.1.6 214761 username motamedi9772 214761 mac 214761 bytes_out 0 214761 bytes_in 0 214761 station_ip 83.122.101.149 214761 port 51 214761 unique_id port 214761 remote_ip 10.8.1.182 214763 username barzegar 214763 mac 214763 bytes_out 0 214763 bytes_in 0 214763 station_ip 5.120.61.46 214763 port 99 214763 unique_id port 214763 remote_ip 10.8.0.34 214768 username nilufarrajaei 214768 kill_reason Another user logged on this global unique id 214768 mac 214768 bytes_out 0 214768 bytes_in 0 214768 station_ip 37.129.182.205 214768 port 88 214768 unique_id port 214776 username arash 214776 mac 214776 bytes_out 0 214776 bytes_in 0 214776 station_ip 37.27.7.225 214776 port 95 214776 unique_id port 214776 remote_ip 10.8.0.206 214778 username mirzaei6046 214778 mac 214778 bytes_out 2104588 214778 bytes_in 9713332 214778 station_ip 5.120.121.238 214778 port 46 214778 unique_id port 214778 remote_ip 10.8.0.242 214785 username hamid2 214785 kill_reason Maximum check online fails reached 214785 mac 214785 bytes_out 0 214785 bytes_in 0 214785 station_ip 94.241.175.77 214785 port 46 214785 unique_id port 214793 username godarzi 214793 kill_reason Another user logged on this global unique id 214793 mac 214793 bytes_out 0 214793 bytes_in 0 214793 station_ip 5.202.65.237 214793 port 89 214793 unique_id port 214798 username milan 214798 kill_reason Another user logged on this global unique id 214798 mac 214798 bytes_out 0 214798 bytes_in 0 214798 station_ip 5.119.171.151 214798 port 100 214798 unique_id port 214798 remote_ip 10.8.0.30 214739 remote_ip 10.8.0.122 214740 username hamid2 214740 mac 214740 bytes_out 0 214740 bytes_in 0 214740 station_ip 94.241.175.77 214740 port 89 214740 unique_id port 214740 remote_ip 10.8.0.78 214741 username morteza4424 214741 mac 214741 bytes_out 0 214741 bytes_in 0 214741 station_ip 83.122.29.86 214741 port 97 214741 unique_id port 214741 remote_ip 10.8.0.150 214743 username morteza4424 214743 mac 214743 bytes_out 4866 214743 bytes_in 7757 214743 station_ip 83.122.29.86 214743 port 97 214743 unique_id port 214743 remote_ip 10.8.0.150 214751 username farhad3 214751 mac 214751 bytes_out 0 214751 bytes_in 0 214751 station_ip 5.120.69.166 214751 port 95 214751 unique_id port 214751 remote_ip 10.8.0.98 214755 username motamedi9772 214755 mac 214755 bytes_out 0 214755 bytes_in 0 214755 station_ip 83.122.101.149 214755 port 51 214755 unique_id port 214755 remote_ip 10.8.1.182 214762 username barzegar 214762 mac 214762 bytes_out 0 214762 bytes_in 0 214762 station_ip 5.120.61.46 214762 port 100 214762 unique_id port 214762 remote_ip 10.8.0.34 214765 username pourshad 214765 mac 214765 bytes_out 0 214765 bytes_in 0 214765 station_ip 5.120.100.246 214765 port 89 214765 unique_id port 214765 remote_ip 10.8.0.122 214766 username barzegar 214766 mac 214766 bytes_out 16971 214766 bytes_in 16208 214766 station_ip 5.120.61.46 214766 port 100 214766 unique_id port 214766 remote_ip 10.8.0.34 214767 username hamid2 214767 mac 214767 bytes_out 0 214767 bytes_in 0 214767 station_ip 94.241.175.77 214767 port 89 214767 unique_id port 214767 remote_ip 10.8.0.78 214771 username kalantary6037 214771 mac 214771 bytes_out 0 214771 bytes_in 0 214771 station_ip 37.129.190.52 214771 port 99 214771 unique_id port 214771 remote_ip 10.8.0.18 214772 username meysam 214772 kill_reason Another user logged on this global unique id 214772 mac 214772 bytes_out 0 214772 bytes_in 0 214772 station_ip 188.158.50.138 214772 port 54 214772 unique_id port 214772 remote_ip 10.8.1.6 214773 username hamid.e 214773 unique_id port 214773 terminate_cause User-Request 214773 bytes_out 740871 214773 bytes_in 15379049 214773 station_ip 37.27.33.153 214773 port 15728666 214773 nas_port_type Virtual 214773 remote_ip 5.5.5.241 214774 username hamid2 214774 mac 214774 bytes_out 341103 214774 bytes_in 1691799 214774 station_ip 94.241.175.77 214774 port 89 214774 unique_id port 214774 remote_ip 10.8.0.78 214777 username hamid2 214777 mac 214777 bytes_out 0 214777 bytes_in 0 214777 station_ip 94.241.175.77 214777 port 89 214777 unique_id port 214777 remote_ip 10.8.0.78 214780 username hamid2 214780 mac 214780 bytes_out 0 214780 bytes_in 0 214780 station_ip 94.241.175.77 214780 port 46 214780 unique_id port 214780 remote_ip 10.8.0.78 214781 username meysam 214781 kill_reason Another user logged on this global unique id 214781 mac 214781 bytes_out 0 214781 bytes_in 0 214781 station_ip 188.158.50.138 214781 port 54 214781 unique_id port 214782 username hamid2 214782 mac 214782 bytes_out 0 214782 bytes_in 0 214782 station_ip 94.241.175.77 214782 port 46 214782 unique_id port 214782 remote_ip 10.8.0.78 214786 username barzegar 214786 mac 214786 bytes_out 0 214786 bytes_in 0 214786 station_ip 5.120.158.69 214786 port 100 214786 unique_id port 214786 remote_ip 10.8.0.34 214787 username hamid2 214787 mac 214787 bytes_out 0 214787 bytes_in 0 214787 station_ip 94.241.175.77 214787 port 51 214787 unique_id port 214787 remote_ip 10.8.1.38 214759 bytes_in 0 214759 station_ip 5.119.171.151 214759 port 51 214759 unique_id port 214759 remote_ip 10.8.1.22 214764 username hamid2 214764 mac 214764 bytes_out 1159209 214764 bytes_in 4753283 214764 station_ip 94.241.175.77 214764 port 97 214764 unique_id port 214764 remote_ip 10.8.0.78 214769 username hamid2 214769 mac 214769 bytes_out 0 214769 bytes_in 0 214769 station_ip 94.241.175.77 214769 port 89 214769 unique_id port 214769 remote_ip 10.8.0.78 214770 username hamid2 214770 mac 214770 bytes_out 0 214770 bytes_in 0 214770 station_ip 94.241.175.77 214770 port 89 214770 unique_id port 214770 remote_ip 10.8.0.78 214775 username meysam 214775 kill_reason Another user logged on this global unique id 214775 mac 214775 bytes_out 0 214775 bytes_in 0 214775 station_ip 188.158.50.138 214775 port 54 214775 unique_id port 214779 username barzegar 214779 mac 214779 bytes_out 0 214779 bytes_in 0 214779 station_ip 5.120.158.69 214779 port 51 214779 unique_id port 214779 remote_ip 10.8.1.30 214783 username hamid2 214783 mac 214783 bytes_out 0 214783 bytes_in 0 214783 station_ip 94.241.175.77 214783 port 51 214783 unique_id port 214783 remote_ip 10.8.1.38 214784 username godarzi 214784 kill_reason Another user logged on this global unique id 214784 mac 214784 bytes_out 0 214784 bytes_in 0 214784 station_ip 5.202.65.237 214784 port 89 214784 unique_id port 214784 remote_ip 10.8.0.74 214788 username milan 214788 mac 214788 bytes_out 4239658 214788 bytes_in 35414079 214788 station_ip 5.119.171.151 214788 port 55 214788 unique_id port 214788 remote_ip 10.8.1.22 214790 username hamid2 214790 mac 214790 bytes_out 4600 214790 bytes_in 14093 214790 station_ip 94.241.175.77 214790 port 55 214790 unique_id port 214790 remote_ip 10.8.1.38 214794 username hamid2 214794 mac 214794 bytes_out 0 214794 bytes_in 0 214794 station_ip 94.241.175.77 214794 port 57 214794 unique_id port 214794 remote_ip 10.8.1.38 214796 username hamid2 214796 kill_reason Maximum check online fails reached 214796 mac 214796 bytes_out 0 214796 bytes_in 0 214796 station_ip 94.241.175.77 214796 port 57 214796 unique_id port 214797 username motamedi9772 214797 mac 214797 bytes_out 0 214797 bytes_in 0 214797 station_ip 83.122.33.173 214797 port 59 214797 unique_id port 214797 remote_ip 10.8.1.182 214799 username nilufarrajaei 214799 kill_reason Another user logged on this global unique id 214799 mac 214799 bytes_out 0 214799 bytes_in 0 214799 station_ip 37.129.182.205 214799 port 88 214799 unique_id port 214800 username meysam 214800 kill_reason Another user logged on this global unique id 214800 mac 214800 bytes_out 0 214800 bytes_in 0 214800 station_ip 188.158.50.138 214800 port 54 214800 unique_id port 214802 username meysam 214802 mac 214802 bytes_out 0 214802 bytes_in 0 214802 station_ip 188.158.50.138 214802 port 54 214802 unique_id port 214803 username pourshad 214803 mac 214803 bytes_out 0 214803 bytes_in 0 214803 station_ip 5.120.100.246 214803 port 55 214803 unique_id port 214803 remote_ip 10.8.1.10 214811 username pourshad 214811 mac 214811 bytes_out 0 214811 bytes_in 0 214811 station_ip 5.120.100.246 214811 port 103 214811 unique_id port 214811 remote_ip 10.8.0.122 214813 username hamid2 214813 kill_reason Maximum check online fails reached 214813 mac 214813 bytes_out 0 214813 bytes_in 0 214813 station_ip 94.241.175.77 214813 port 101 214813 unique_id port 214814 username godarzi 214814 kill_reason Another user logged on this global unique id 214814 mac 214814 bytes_out 0 214789 username hamid2 214789 kill_reason Maximum check online fails reached 214789 mac 214789 bytes_out 0 214789 bytes_in 0 214789 station_ip 94.241.175.77 214789 port 51 214789 unique_id port 214791 username pourshad 214791 mac 214791 bytes_out 459208 214791 bytes_in 5369425 214791 station_ip 5.120.100.246 214791 port 97 214791 unique_id port 214791 remote_ip 10.8.0.122 214792 username aminvpn 214792 mac 214792 bytes_out 0 214792 bytes_in 0 214792 station_ip 5.120.77.53 214792 port 75 214792 unique_id port 214795 username barzegar 214795 mac 214795 bytes_out 0 214795 bytes_in 0 214795 station_ip 5.120.158.69 214795 port 58 214795 unique_id port 214795 remote_ip 10.8.1.30 214805 username barzegar 214805 mac 214805 bytes_out 0 214805 bytes_in 0 214805 station_ip 5.120.158.69 214805 port 58 214805 unique_id port 214805 remote_ip 10.8.1.30 214807 username godarzi 214807 kill_reason Another user logged on this global unique id 214807 mac 214807 bytes_out 0 214807 bytes_in 0 214807 station_ip 5.202.65.237 214807 port 89 214807 unique_id port 214808 username barzegar 214808 mac 214808 bytes_out 0 214808 bytes_in 0 214808 station_ip 5.120.158.69 214808 port 105 214808 unique_id port 214808 remote_ip 10.8.0.34 214810 username soleymani5056 214810 mac 214810 bytes_out 0 214810 bytes_in 0 214810 station_ip 5.119.209.169 214810 port 102 214810 unique_id port 214810 remote_ip 10.8.0.246 214812 username farhad3 214812 kill_reason Another user logged on this global unique id 214812 mac 214812 bytes_out 0 214812 bytes_in 0 214812 station_ip 5.120.69.166 214812 port 98 214812 unique_id port 214812 remote_ip 10.8.0.98 214825 username pourshad 214825 mac 214825 bytes_out 0 214825 bytes_in 0 214825 station_ip 5.120.100.246 214825 port 54 214825 unique_id port 214825 remote_ip 10.8.1.10 214826 username hamid2 214826 mac 214826 bytes_out 0 214826 bytes_in 0 214826 station_ip 94.241.175.77 214826 port 59 214826 unique_id port 214826 remote_ip 10.8.1.38 214828 username hamid2 214828 kill_reason Maximum check online fails reached 214828 mac 214828 bytes_out 0 214828 bytes_in 0 214828 station_ip 94.241.175.77 214828 port 55 214828 unique_id port 214829 username kalantary6037 214829 mac 214829 bytes_out 0 214829 bytes_in 0 214829 station_ip 37.129.208.248 214829 port 75 214829 unique_id port 214829 remote_ip 10.8.0.18 214830 username pourshad 214830 mac 214830 bytes_out 48581 214830 bytes_in 441404 214830 station_ip 5.120.100.246 214830 port 59 214830 unique_id port 214830 remote_ip 10.8.1.10 214832 username pourshad 214832 mac 214832 bytes_out 0 214832 bytes_in 0 214832 station_ip 5.120.100.246 214832 port 75 214832 unique_id port 214832 remote_ip 10.8.0.122 214834 username pourshad 214834 mac 214834 bytes_out 0 214834 bytes_in 0 214834 station_ip 5.120.100.246 214834 port 59 214834 unique_id port 214834 remote_ip 10.8.1.10 214837 username barzegar 214837 mac 214837 bytes_out 2388 214837 bytes_in 4873 214837 station_ip 5.120.158.69 214837 port 97 214837 unique_id port 214837 remote_ip 10.8.0.34 214840 username barzegar 214840 mac 214840 bytes_out 0 214840 bytes_in 0 214840 station_ip 5.120.158.69 214840 port 105 214840 unique_id port 214840 remote_ip 10.8.0.34 214841 username mostafa_es78 214841 mac 214841 bytes_out 2629003 214841 bytes_in 15828241 214841 station_ip 113.203.99.206 214841 port 103 214841 unique_id port 214841 remote_ip 10.8.0.42 214843 username mosavi0713 214843 kill_reason Another user logged on this global unique id 214801 username godarzi 214801 kill_reason Another user logged on this global unique id 214801 mac 214801 bytes_out 0 214801 bytes_in 0 214801 station_ip 5.202.65.237 214801 port 89 214801 unique_id port 214804 username morteza4424 214804 mac 214804 bytes_out 0 214804 bytes_in 0 214804 station_ip 83.122.131.238 214804 port 102 214804 unique_id port 214804 remote_ip 10.8.0.150 214806 username malekpoir 214806 kill_reason Another user logged on this global unique id 214806 mac 214806 bytes_out 0 214806 bytes_in 0 214806 station_ip 5.119.89.152 214806 port 50 214806 unique_id port 214806 remote_ip 10.8.0.178 214809 username hamid2 214809 mac 214809 bytes_out 121025 214809 bytes_in 164238 214809 station_ip 94.241.175.77 214809 port 101 214809 unique_id port 214809 remote_ip 10.8.0.78 214815 username barzegar 214815 mac 214815 bytes_out 0 214815 bytes_in 0 214815 station_ip 5.120.158.69 214815 port 55 214815 unique_id port 214815 remote_ip 10.8.1.30 214816 username yaghobi 214816 mac 214816 bytes_out 274105 214816 bytes_in 2739765 214816 station_ip 37.129.217.126 214816 port 97 214816 unique_id port 214816 remote_ip 10.8.0.106 214819 username milan 214819 kill_reason Another user logged on this global unique id 214819 mac 214819 bytes_out 0 214819 bytes_in 0 214819 station_ip 5.119.171.151 214819 port 100 214819 unique_id port 214822 username farhad3 214822 mac 214822 bytes_out 0 214822 bytes_in 0 214822 station_ip 5.120.69.166 214822 port 98 214822 unique_id port 214824 username yarmohamadi7916 214824 kill_reason Another user logged on this global unique id 214824 mac 214824 bytes_out 0 214824 bytes_in 0 214824 station_ip 5.119.135.7 214824 port 104 214824 unique_id port 214824 remote_ip 10.8.0.214 214831 username hamid2 214831 mac 214831 bytes_out 0 214831 bytes_in 0 214831 station_ip 94.241.175.77 214831 port 54 214831 unique_id port 214831 remote_ip 10.8.1.38 214833 username hamid2 214833 mac 214833 bytes_out 0 214833 bytes_in 0 214833 station_ip 94.241.175.77 214833 port 54 214833 unique_id port 214833 remote_ip 10.8.1.38 214835 username esmaeilkazemi 214835 mac 214835 bytes_out 0 214835 bytes_in 0 214835 station_ip 37.129.245.50 214835 port 75 214835 unique_id port 214835 remote_ip 10.8.0.66 214846 username hamid2 214846 mac 214846 bytes_out 0 214846 bytes_in 0 214846 station_ip 94.241.175.77 214846 port 103 214846 unique_id port 214846 remote_ip 10.8.0.78 214850 username hamid2 214850 mac 214850 bytes_out 0 214850 bytes_in 0 214850 station_ip 94.241.175.77 214850 port 96 214850 unique_id port 214850 remote_ip 10.8.0.78 214851 username kamali3 214851 kill_reason Another user logged on this global unique id 214851 mac 214851 bytes_out 0 214851 bytes_in 0 214851 station_ip 83.123.249.144 214851 port 97 214851 unique_id port 214851 remote_ip 10.8.0.182 214855 username hamid2 214855 mac 214855 bytes_out 0 214855 bytes_in 0 214855 station_ip 94.241.175.77 214855 port 103 214855 unique_id port 214855 remote_ip 10.8.0.78 214859 username dortaj3792 214859 mac 214859 bytes_out 4678246 214859 bytes_in 14953582 214859 station_ip 5.119.175.220 214859 port 41 214859 unique_id port 214859 remote_ip 10.8.0.10 214862 username yarmohamadi7916 214862 kill_reason Another user logged on this global unique id 214862 mac 214862 bytes_out 0 214862 bytes_in 0 214862 station_ip 5.119.135.7 214862 port 104 214862 unique_id port 214864 username mosavi0713 214864 mac 214864 bytes_out 0 214864 bytes_in 0 214864 station_ip 37.129.113.137 214864 port 102 214814 bytes_in 0 214814 station_ip 5.202.65.237 214814 port 89 214814 unique_id port 214817 username pourshad 214817 kill_reason Maximum check online fails reached 214817 mac 214817 bytes_out 0 214817 bytes_in 0 214817 station_ip 5.120.100.246 214817 port 58 214817 unique_id port 214818 username alirezazadeh 214818 unique_id port 214818 terminate_cause User-Request 214818 bytes_out 2272628 214818 bytes_in 24917248 214818 station_ip 151.238.231.51 214818 port 15728667 214818 nas_port_type Virtual 214818 remote_ip 5.5.5.240 214820 username hamid2 214820 mac 214820 bytes_out 0 214820 bytes_in 0 214820 station_ip 94.241.175.77 214820 port 54 214820 unique_id port 214820 remote_ip 10.8.1.38 214821 username pourshad 214821 mac 214821 bytes_out 193762 214821 bytes_in 1336978 214821 station_ip 5.120.100.246 214821 port 103 214821 unique_id port 214821 remote_ip 10.8.0.122 214823 username hamid2 214823 mac 214823 bytes_out 0 214823 bytes_in 0 214823 station_ip 94.241.175.77 214823 port 55 214823 unique_id port 214823 remote_ip 10.8.1.38 214827 username barzegar 214827 mac 214827 bytes_out 0 214827 bytes_in 0 214827 station_ip 5.120.158.69 214827 port 97 214827 unique_id port 214827 remote_ip 10.8.0.34 214836 username hamid2 214836 mac 214836 bytes_out 0 214836 bytes_in 0 214836 station_ip 94.241.175.77 214836 port 54 214836 unique_id port 214836 remote_ip 10.8.1.38 214838 username yaghobi 214838 mac 214838 bytes_out 66080 214838 bytes_in 93060 214838 station_ip 37.129.217.126 214838 port 105 214838 unique_id port 214838 remote_ip 10.8.0.106 214839 username hamid2 214839 mac 214839 bytes_out 0 214839 bytes_in 0 214839 station_ip 94.241.175.77 214839 port 106 214839 unique_id port 214839 remote_ip 10.8.0.78 214842 username mostafa_es78 214842 mac 214842 bytes_out 0 214842 bytes_in 0 214842 station_ip 113.203.99.206 214842 port 105 214842 unique_id port 214842 remote_ip 10.8.0.42 214845 username barzegar 214845 mac 214845 bytes_out 0 214845 bytes_in 0 214845 station_ip 5.120.158.69 214845 port 59 214845 unique_id port 214845 remote_ip 10.8.1.30 214847 username barzegar8595 214847 mac 214847 bytes_out 2748050 214847 bytes_in 23574025 214847 station_ip 46.225.210.232 214847 port 96 214847 unique_id port 214847 remote_ip 10.8.0.170 214848 username hamid2 214848 mac 214848 bytes_out 0 214848 bytes_in 0 214848 station_ip 94.241.175.77 214848 port 96 214848 unique_id port 214848 remote_ip 10.8.0.78 214849 username hamid2 214849 mac 214849 bytes_out 0 214849 bytes_in 0 214849 station_ip 94.241.175.77 214849 port 96 214849 unique_id port 214849 remote_ip 10.8.0.78 214853 username barzegar 214853 mac 214853 bytes_out 0 214853 bytes_in 0 214853 station_ip 5.120.158.69 214853 port 59 214853 unique_id port 214853 remote_ip 10.8.1.30 214856 username hamid2 214856 mac 214856 bytes_out 0 214856 bytes_in 0 214856 station_ip 94.241.175.77 214856 port 103 214856 unique_id port 214856 remote_ip 10.8.0.78 214861 username hamid2 214861 mac 214861 bytes_out 12824 214861 bytes_in 13270 214861 station_ip 94.241.175.77 214861 port 41 214861 unique_id port 214861 remote_ip 10.8.0.78 214865 username kamali3 214865 kill_reason Another user logged on this global unique id 214865 mac 214865 bytes_out 0 214865 bytes_in 0 214865 station_ip 83.123.249.144 214865 port 97 214865 unique_id port 214869 username hamid2 214869 kill_reason Maximum check online fails reached 214869 mac 214869 bytes_out 0 214869 bytes_in 0 214843 mac 214843 bytes_out 0 214843 bytes_in 0 214843 station_ip 37.129.113.137 214843 port 102 214843 unique_id port 214843 remote_ip 10.8.0.186 214844 username yarmohamadi7916 214844 kill_reason Another user logged on this global unique id 214844 mac 214844 bytes_out 0 214844 bytes_in 0 214844 station_ip 5.119.135.7 214844 port 104 214844 unique_id port 214852 username barzegar 214852 mac 214852 bytes_out 0 214852 bytes_in 0 214852 station_ip 5.120.158.69 214852 port 59 214852 unique_id port 214852 remote_ip 10.8.1.30 214854 username hamid2 214854 mac 214854 bytes_out 0 214854 bytes_in 0 214854 station_ip 94.241.175.77 214854 port 103 214854 unique_id port 214854 remote_ip 10.8.0.78 214857 username nilufarrajaei 214857 mac 214857 bytes_out 0 214857 bytes_in 0 214857 station_ip 37.129.182.205 214857 port 88 214857 unique_id port 214858 username hamid2 214858 mac 214858 bytes_out 0 214858 bytes_in 0 214858 station_ip 94.241.175.77 214858 port 88 214858 unique_id port 214858 remote_ip 10.8.0.78 214860 username barzegar 214860 mac 214860 bytes_out 3891 214860 bytes_in 6002 214860 station_ip 5.120.158.69 214860 port 96 214860 unique_id port 214860 remote_ip 10.8.0.34 214863 username kalantary6037 214863 mac 214863 bytes_out 0 214863 bytes_in 0 214863 station_ip 37.129.143.56 214863 port 105 214863 unique_id port 214863 remote_ip 10.8.0.18 214871 username barzegar 214871 mac 214871 bytes_out 0 214871 bytes_in 0 214871 station_ip 5.120.158.69 214871 port 59 214871 unique_id port 214871 remote_ip 10.8.1.30 214872 username motamedi9772 214872 mac 214872 bytes_out 0 214872 bytes_in 0 214872 station_ip 83.122.32.37 214872 port 54 214872 unique_id port 214872 remote_ip 10.8.1.182 214875 username iranmanesh4443 214875 mac 214875 bytes_out 0 214875 bytes_in 0 214875 station_ip 5.119.140.193 214875 port 54 214875 unique_id port 214875 remote_ip 10.8.1.90 214877 username barzegar 214877 mac 214877 bytes_out 0 214877 bytes_in 0 214877 station_ip 5.120.158.69 214877 port 105 214877 unique_id port 214877 remote_ip 10.8.0.34 214881 username soleymani5056 214881 mac 214881 bytes_out 0 214881 bytes_in 0 214881 station_ip 5.120.177.7 214881 port 95 214881 unique_id port 214881 remote_ip 10.8.0.246 214890 username mehrpoyan101 214890 mac 214890 bytes_out 0 214890 bytes_in 0 214890 station_ip 5.120.1.154 214890 port 103 214890 unique_id port 214890 remote_ip 10.8.0.134 214894 username hosseini0093 214894 kill_reason Another user logged on this global unique id 214894 mac 214894 bytes_out 0 214894 bytes_in 0 214894 station_ip 5.119.26.82 214894 port 102 214894 unique_id port 214894 remote_ip 10.8.0.226 214896 username hamid2 214896 mac 214896 bytes_out 0 214896 bytes_in 0 214896 station_ip 94.241.175.77 214896 port 54 214896 unique_id port 214896 remote_ip 10.8.1.38 214898 username aminvpn 214898 kill_reason Another user logged on this global unique id 214898 mac 214898 bytes_out 0 214898 bytes_in 0 214898 station_ip 5.120.11.17 214898 port 96 214898 unique_id port 214901 username godarzi 214901 mac 214901 bytes_out 0 214901 bytes_in 0 214901 station_ip 5.202.65.237 214901 port 89 214901 unique_id port 214904 username khademi 214904 kill_reason Another user logged on this global unique id 214904 mac 214904 bytes_out 0 214904 bytes_in 0 214904 station_ip 83.122.138.67 214904 port 94 214904 unique_id port 214906 username motamedi9772 214906 mac 214906 bytes_out 1132343 214906 bytes_in 7535179 214864 unique_id port 214866 username hamid2 214866 mac 214866 bytes_out 0 214866 bytes_in 0 214866 station_ip 94.241.175.77 214866 port 41 214866 unique_id port 214866 remote_ip 10.8.0.78 214867 username hamid2 214867 mac 214867 bytes_out 0 214867 bytes_in 0 214867 station_ip 94.241.175.77 214867 port 41 214867 unique_id port 214867 remote_ip 10.8.0.78 214868 username hamid2 214868 mac 214868 bytes_out 0 214868 bytes_in 0 214868 station_ip 94.241.175.77 214868 port 59 214868 unique_id port 214868 remote_ip 10.8.1.38 214870 username yaghobi 214870 mac 214870 bytes_out 133892 214870 bytes_in 218279 214870 station_ip 37.129.217.126 214870 port 54 214870 unique_id port 214870 remote_ip 10.8.1.106 214873 username mohammadjavad 214873 mac 214873 bytes_out 0 214873 bytes_in 0 214873 station_ip 37.129.54.255 214873 port 95 214873 unique_id port 214873 remote_ip 10.8.0.138 214876 username iranmanesh4443 214876 mac 214876 bytes_out 0 214876 bytes_in 0 214876 station_ip 5.119.140.193 214876 port 88 214876 unique_id port 214876 remote_ip 10.8.0.198 214878 username mostafa_es78 214878 mac 214878 bytes_out 0 214878 bytes_in 0 214878 station_ip 113.203.99.206 214878 port 88 214878 unique_id port 214878 remote_ip 10.8.0.42 214880 username mehrpoyan101 214880 mac 214880 bytes_out 0 214880 bytes_in 0 214880 station_ip 5.119.207.211 214880 port 103 214880 unique_id port 214880 remote_ip 10.8.0.134 214882 username aminvpn 214882 kill_reason Another user logged on this global unique id 214882 mac 214882 bytes_out 0 214882 bytes_in 0 214882 station_ip 5.120.11.17 214882 port 96 214882 unique_id port 214882 remote_ip 10.8.0.58 214883 username aminvpn 214883 unique_id port 214883 terminate_cause Lost-Carrier 214883 bytes_out 224614 214883 bytes_in 909991 214883 station_ip 83.123.226.102 214883 port 15728668 214883 nas_port_type Virtual 214883 remote_ip 5.5.5.246 214886 username barzegar 214886 mac 214886 bytes_out 0 214886 bytes_in 0 214886 station_ip 5.120.158.69 214886 port 103 214886 unique_id port 214886 remote_ip 10.8.0.34 214893 username mostafa_es78 214893 mac 214893 bytes_out 0 214893 bytes_in 0 214893 station_ip 113.203.99.206 214893 port 104 214893 unique_id port 214893 remote_ip 10.8.0.42 214900 username godarzi 214900 kill_reason Another user logged on this global unique id 214900 mac 214900 bytes_out 0 214900 bytes_in 0 214900 station_ip 5.202.65.237 214900 port 89 214900 unique_id port 214902 username barzegar 214902 mac 214902 bytes_out 0 214902 bytes_in 0 214902 station_ip 5.120.158.69 214902 port 54 214902 unique_id port 214902 remote_ip 10.8.1.30 214908 username aminvpn 214908 kill_reason Another user logged on this global unique id 214908 mac 214908 bytes_out 0 214908 bytes_in 0 214908 station_ip 5.120.11.17 214908 port 96 214908 unique_id port 214909 username motamedi9772 214909 mac 214909 bytes_out 0 214909 bytes_in 0 214909 station_ip 83.122.19.153 214909 port 54 214909 unique_id port 214909 remote_ip 10.8.1.182 214911 username barzegar 214911 mac 214911 bytes_out 0 214911 bytes_in 0 214911 station_ip 5.120.158.69 214911 port 102 214911 unique_id port 214911 remote_ip 10.8.0.34 214914 username hosseini0093 214914 kill_reason Another user logged on this global unique id 214914 mac 214914 bytes_out 0 214914 bytes_in 0 214914 station_ip 5.119.26.82 214914 port 89 214914 unique_id port 214914 remote_ip 10.8.0.226 214915 username meghdad1616 214915 mac 214915 bytes_out 2660861 214915 bytes_in 13330056 214915 station_ip 5.120.85.103 214869 station_ip 94.241.175.77 214869 port 41 214869 unique_id port 214874 username yarmohamadi7916 214874 kill_reason Another user logged on this global unique id 214874 mac 214874 bytes_out 0 214874 bytes_in 0 214874 station_ip 5.119.135.7 214874 port 104 214874 unique_id port 214879 username hamid2 214879 mac 214879 bytes_out 0 214879 bytes_in 0 214879 station_ip 94.241.175.77 214879 port 54 214879 unique_id port 214879 remote_ip 10.8.1.38 214884 username mostafa_es78 214884 mac 214884 bytes_out 0 214884 bytes_in 0 214884 station_ip 113.203.99.206 214884 port 88 214884 unique_id port 214884 remote_ip 10.8.0.42 214885 username yarmohamadi7916 214885 mac 214885 bytes_out 0 214885 bytes_in 0 214885 station_ip 5.119.135.7 214885 port 104 214885 unique_id port 214887 username kalantary6037 214887 mac 214887 bytes_out 508896 214887 bytes_in 4216788 214887 station_ip 37.129.129.236 214887 port 107 214887 unique_id port 214887 remote_ip 10.8.0.18 214888 username mehrpoyan101 214888 mac 214888 bytes_out 0 214888 bytes_in 0 214888 station_ip 5.119.207.211 214888 port 105 214888 unique_id port 214888 remote_ip 10.8.0.134 214889 username hamid2 214889 mac 214889 bytes_out 0 214889 bytes_in 0 214889 station_ip 94.241.175.77 214889 port 88 214889 unique_id port 214889 remote_ip 10.8.0.78 214891 username hamid2 214891 mac 214891 bytes_out 0 214891 bytes_in 0 214891 station_ip 94.241.175.77 214891 port 103 214891 unique_id port 214891 remote_ip 10.8.0.78 214892 username barzegar 214892 mac 214892 bytes_out 0 214892 bytes_in 0 214892 station_ip 5.120.158.69 214892 port 88 214892 unique_id port 214892 remote_ip 10.8.0.34 214895 username nilufarrajaei 214895 kill_reason Maximum check online fails reached 214895 mac 214895 bytes_out 0 214895 bytes_in 0 214895 station_ip 37.129.182.205 214895 port 106 214895 unique_id port 214895 remote_ip 10.8.0.50 214897 username hamid2 214897 mac 214897 bytes_out 0 214897 bytes_in 0 214897 station_ip 94.241.175.77 214897 port 54 214897 unique_id port 214897 remote_ip 10.8.1.38 214899 username mammad 214899 unique_id port 214899 terminate_cause User-Request 214899 bytes_out 1141561 214899 bytes_in 21081581 214899 station_ip 2.183.249.179 214899 port 15728669 214899 nas_port_type Virtual 214899 remote_ip 5.5.5.239 214903 username hosseini0093 214903 mac 214903 bytes_out 0 214903 bytes_in 0 214903 station_ip 5.119.26.82 214903 port 102 214903 unique_id port 214905 username kalantary6037 214905 mac 214905 bytes_out 0 214905 bytes_in 0 214905 station_ip 37.129.211.252 214905 port 88 214905 unique_id port 214905 remote_ip 10.8.0.18 214907 username motamedi9772 214907 mac 214907 bytes_out 0 214907 bytes_in 0 214907 station_ip 83.122.19.153 214907 port 54 214907 unique_id port 214907 remote_ip 10.8.1.182 214910 username hamid2 214910 mac 214910 bytes_out 0 214910 bytes_in 0 214910 station_ip 94.241.175.77 214910 port 54 214910 unique_id port 214910 remote_ip 10.8.1.38 214913 username nilufarrajaei 214913 mac 214913 bytes_out 0 214913 bytes_in 0 214913 station_ip 37.129.182.205 214913 port 103 214913 unique_id port 214913 remote_ip 10.8.0.50 214916 username milan 214916 kill_reason Another user logged on this global unique id 214916 mac 214916 bytes_out 0 214916 bytes_in 0 214916 station_ip 5.119.171.151 214916 port 100 214916 unique_id port 214921 username hamid2 214921 kill_reason Maximum check online fails reached 214921 mac 214921 bytes_out 0 214921 bytes_in 0 214921 station_ip 94.241.175.77 214906 station_ip 83.122.19.153 214906 port 59 214906 unique_id port 214906 remote_ip 10.8.1.182 214912 username nilufarrajaei 214912 mac 214912 bytes_out 0 214912 bytes_in 0 214912 station_ip 37.129.182.205 214912 port 102 214912 unique_id port 214912 remote_ip 10.8.0.50 214920 username hamid2 214920 mac 214920 bytes_out 0 214920 bytes_in 0 214920 station_ip 94.241.175.77 214920 port 59 214920 unique_id port 214920 remote_ip 10.8.1.38 214926 username hamid2 214926 mac 214926 bytes_out 0 214926 bytes_in 0 214926 station_ip 94.241.175.77 214926 port 102 214926 unique_id port 214926 remote_ip 10.8.0.78 214928 username hamid2 214928 mac 214928 bytes_out 0 214928 bytes_in 0 214928 station_ip 94.241.175.77 214928 port 105 214928 unique_id port 214928 remote_ip 10.8.0.78 214929 username barzegar8595 214929 mac 214929 bytes_out 0 214929 bytes_in 0 214929 station_ip 46.225.210.232 214929 port 104 214929 unique_id port 214929 remote_ip 10.8.0.170 214931 username hamid2 214931 mac 214931 bytes_out 0 214931 bytes_in 0 214931 station_ip 94.241.175.77 214931 port 104 214931 unique_id port 214931 remote_ip 10.8.0.78 214933 username mammad 214933 unique_id port 214933 terminate_cause User-Request 214933 bytes_out 1724687 214933 bytes_in 22785036 214933 station_ip 5.233.73.247 214933 port 15728670 214933 nas_port_type Virtual 214933 remote_ip 5.5.5.238 214935 username aminvpn 214935 kill_reason Another user logged on this global unique id 214935 mac 214935 bytes_out 0 214935 bytes_in 0 214935 station_ip 5.120.11.17 214935 port 96 214935 unique_id port 214936 username hamid2 214936 mac 214936 bytes_out 0 214936 bytes_in 0 214936 station_ip 94.241.175.77 214936 port 105 214936 unique_id port 214936 remote_ip 10.8.0.78 214938 username hamid2 214938 mac 214938 bytes_out 0 214938 bytes_in 0 214938 station_ip 94.241.175.77 214938 port 95 214938 unique_id port 214938 remote_ip 10.8.0.78 214944 username nilufarrajaei 214944 mac 214944 bytes_out 4185028 214944 bytes_in 39897371 214944 station_ip 37.129.182.205 214944 port 103 214944 unique_id port 214944 remote_ip 10.8.0.50 214950 username khorasani9135 214950 kill_reason Another user logged on this global unique id 214950 mac 214950 bytes_out 0 214950 bytes_in 0 214950 station_ip 83.123.215.186 214950 port 93 214950 unique_id port 214951 username hosseini0093 214951 kill_reason Another user logged on this global unique id 214951 mac 214951 bytes_out 0 214951 bytes_in 0 214951 station_ip 5.119.26.82 214951 port 89 214951 unique_id port 214952 username morteza4424 214952 kill_reason Another user logged on this global unique id 214952 mac 214952 bytes_out 0 214952 bytes_in 0 214952 station_ip 37.129.244.141 214952 port 102 214952 unique_id port 214952 remote_ip 10.8.0.150 214954 username pourshad 214954 mac 214954 bytes_out 0 214954 bytes_in 0 214954 station_ip 5.120.100.246 214954 port 75 214954 unique_id port 214954 remote_ip 10.8.0.122 214957 username hosseini0093 214957 kill_reason Another user logged on this global unique id 214957 mac 214957 bytes_out 0 214957 bytes_in 0 214957 station_ip 5.119.26.82 214957 port 89 214957 unique_id port 214961 username barzegar 214961 mac 214961 bytes_out 0 214961 bytes_in 0 214961 station_ip 5.120.158.69 214961 port 54 214961 unique_id port 214961 remote_ip 10.8.1.30 214965 username aminvpn 214965 mac 214965 bytes_out 1391340 214965 bytes_in 10207882 214965 station_ip 5.120.11.17 214965 port 96 214965 unique_id port 214965 remote_ip 10.8.0.58 214967 username hamid2 214967 mac 214915 port 88 214915 unique_id port 214915 remote_ip 10.8.0.230 214917 username yaghobi 214917 mac 214917 bytes_out 0 214917 bytes_in 0 214917 station_ip 37.129.217.126 214917 port 60 214917 unique_id port 214917 remote_ip 10.8.1.106 214918 username aminvpn 214918 kill_reason Another user logged on this global unique id 214918 mac 214918 bytes_out 0 214918 bytes_in 0 214918 station_ip 5.120.11.17 214918 port 96 214918 unique_id port 214919 username kamali3 214919 mac 214919 bytes_out 0 214919 bytes_in 0 214919 station_ip 83.123.249.144 214919 port 97 214919 unique_id port 214922 username hamid2 214922 mac 214922 bytes_out 0 214922 bytes_in 0 214922 station_ip 94.241.175.77 214922 port 60 214922 unique_id port 214922 remote_ip 10.8.1.38 214923 username hamid2 214923 mac 214923 bytes_out 0 214923 bytes_in 0 214923 station_ip 94.241.175.77 214923 port 60 214923 unique_id port 214923 remote_ip 10.8.1.38 214925 username hamid2 214925 mac 214925 bytes_out 0 214925 bytes_in 0 214925 station_ip 94.241.175.77 214925 port 60 214925 unique_id port 214925 remote_ip 10.8.1.38 214927 username hamid2 214927 mac 214927 bytes_out 0 214927 bytes_in 0 214927 station_ip 94.241.175.77 214927 port 104 214927 unique_id port 214927 remote_ip 10.8.0.78 214937 username hosseini0093 214937 kill_reason Another user logged on this global unique id 214937 mac 214937 bytes_out 0 214937 bytes_in 0 214937 station_ip 5.119.26.82 214937 port 89 214937 unique_id port 214940 username morteza4424 214940 mac 214940 bytes_out 0 214940 bytes_in 0 214940 station_ip 37.129.244.141 214940 port 102 214940 unique_id port 214940 remote_ip 10.8.0.150 214941 username morteza4424 214941 mac 214941 bytes_out 0 214941 bytes_in 0 214941 station_ip 37.129.244.141 214941 port 61 214941 unique_id port 214941 remote_ip 10.8.1.42 214943 username meghdad1616 214943 mac 214943 bytes_out 0 214943 bytes_in 0 214943 station_ip 5.120.85.103 214943 port 88 214943 unique_id port 214943 remote_ip 10.8.0.230 214945 username sobhan 214945 unique_id port 214945 terminate_cause Lost-Carrier 214945 bytes_out 2959296 214945 bytes_in 55616450 214945 station_ip 5.119.79.148 214945 port 15728671 214945 nas_port_type Virtual 214945 remote_ip 5.5.5.237 214948 username hamid2 214948 kill_reason Another user logged on this global unique id 214948 mac 214948 bytes_out 0 214948 bytes_in 0 214948 station_ip 94.241.175.77 214948 port 95 214948 unique_id port 214948 remote_ip 10.8.0.78 214949 username aminvpn 214949 kill_reason Another user logged on this global unique id 214949 mac 214949 bytes_out 0 214949 bytes_in 0 214949 station_ip 5.120.11.17 214949 port 96 214949 unique_id port 214955 username hamid2 214955 mac 214955 bytes_out 0 214955 bytes_in 0 214955 station_ip 94.241.175.77 214955 port 95 214955 unique_id port 214956 username hamid2 214956 mac 214956 bytes_out 0 214956 bytes_in 0 214956 station_ip 94.241.175.77 214956 port 75 214956 unique_id port 214956 remote_ip 10.8.0.78 214959 username pourshad 214959 mac 214959 bytes_out 0 214959 bytes_in 0 214959 station_ip 5.120.100.246 214959 port 108 214959 unique_id port 214959 remote_ip 10.8.0.122 214962 username ahmadi1 214962 mac 214962 bytes_out 36385 214962 bytes_in 181801 214962 station_ip 83.123.166.113 214962 port 75 214962 unique_id port 214962 remote_ip 10.8.0.114 214969 username hamid2 214969 mac 214969 bytes_out 0 214969 bytes_in 0 214969 station_ip 94.241.175.77 214969 port 61 214969 unique_id port 214921 port 59 214921 unique_id port 214924 username kamali3 214924 mac 214924 bytes_out 0 214924 bytes_in 0 214924 station_ip 83.123.249.144 214924 port 102 214924 unique_id port 214924 remote_ip 10.8.0.182 214930 username aminvpn 214930 kill_reason Another user logged on this global unique id 214930 mac 214930 bytes_out 0 214930 bytes_in 0 214930 station_ip 5.120.11.17 214930 port 96 214930 unique_id port 214932 username hamid2 214932 mac 214932 bytes_out 0 214932 bytes_in 0 214932 station_ip 94.241.175.77 214932 port 104 214932 unique_id port 214932 remote_ip 10.8.0.78 214934 username mohammadjavad 214934 mac 214934 bytes_out 0 214934 bytes_in 0 214934 station_ip 37.129.112.7 214934 port 95 214934 unique_id port 214934 remote_ip 10.8.0.138 214939 username soleymani5056 214939 mac 214939 bytes_out 0 214939 bytes_in 0 214939 station_ip 5.119.151.88 214939 port 106 214939 unique_id port 214939 remote_ip 10.8.0.246 214942 username yaghobi 214942 mac 214942 bytes_out 326592 214942 bytes_in 2352073 214942 station_ip 37.129.147.70 214942 port 60 214942 unique_id port 214942 remote_ip 10.8.1.106 214946 username meghdad1616 214946 mac 214946 bytes_out 0 214946 bytes_in 0 214946 station_ip 5.120.85.103 214946 port 88 214946 unique_id port 214946 remote_ip 10.8.0.230 214947 username malekpoir 214947 mac 214947 bytes_out 0 214947 bytes_in 0 214947 station_ip 5.119.89.152 214947 port 50 214947 unique_id port 214953 username yaghobi 214953 mac 214953 bytes_out 0 214953 bytes_in 0 214953 station_ip 37.129.232.242 214953 port 60 214953 unique_id port 214953 remote_ip 10.8.1.106 214958 username hamid2 214958 mac 214958 bytes_out 0 214958 bytes_in 0 214958 station_ip 94.241.175.77 214958 port 75 214958 unique_id port 214958 remote_ip 10.8.0.78 214960 username aminvpn 214960 mac 214960 bytes_out 0 214960 bytes_in 0 214960 station_ip 5.120.11.17 214960 port 96 214960 unique_id port 214963 username teymori5660 214963 kill_reason Another user logged on this global unique id 214963 mac 214963 bytes_out 0 214963 bytes_in 0 214963 station_ip 5.119.200.143 214963 port 88 214963 unique_id port 214963 remote_ip 10.8.0.142 214964 username kalantary6037 214964 mac 214964 bytes_out 0 214964 bytes_in 0 214964 station_ip 37.129.254.132 214964 port 105 214964 unique_id port 214964 remote_ip 10.8.0.18 214966 username barzegar 214966 mac 214966 bytes_out 0 214966 bytes_in 0 214966 station_ip 5.120.158.69 214966 port 105 214966 unique_id port 214966 remote_ip 10.8.0.34 214968 username morteza4424 214968 kill_reason Another user logged on this global unique id 214968 mac 214968 bytes_out 0 214968 bytes_in 0 214968 station_ip 37.129.244.141 214968 port 102 214968 unique_id port 214971 username pourshad 214971 mac 214971 bytes_out 0 214971 bytes_in 0 214971 station_ip 5.120.100.246 214971 port 95 214971 unique_id port 214971 remote_ip 10.8.0.122 214972 username hosseini0093 214972 kill_reason Another user logged on this global unique id 214972 mac 214972 bytes_out 0 214972 bytes_in 0 214972 station_ip 5.119.26.82 214972 port 89 214972 unique_id port 214973 username morteza4424 214973 mac 214973 bytes_out 0 214973 bytes_in 0 214973 station_ip 37.129.244.141 214973 port 102 214973 unique_id port 214975 username barzegar 214975 mac 214975 bytes_out 0 214975 bytes_in 0 214975 station_ip 5.120.158.69 214975 port 61 214975 unique_id port 214975 remote_ip 10.8.1.30 214976 username tahmorsi 214976 mac 214967 bytes_out 3735618 214967 bytes_in 500001 214967 station_ip 94.241.175.77 214967 port 54 214967 unique_id port 214967 remote_ip 10.8.1.38 214970 username hamid2 214970 kill_reason Maximum check online fails reached 214970 mac 214970 bytes_out 0 214970 bytes_in 0 214970 station_ip 94.241.175.77 214970 port 54 214970 unique_id port 214978 username esmaeilkazemi 214978 mac 214978 bytes_out 214790 214978 bytes_in 658590 214978 station_ip 37.129.21.216 214978 port 95 214978 unique_id port 214978 remote_ip 10.8.0.66 214979 username hamid2 214979 mac 214979 bytes_out 0 214979 bytes_in 0 214979 station_ip 94.241.175.77 214979 port 95 214979 unique_id port 214979 remote_ip 10.8.0.78 214982 username aminvpnipad 214982 mac 214982 bytes_out 0 214982 bytes_in 0 214982 station_ip 5.119.54.88 214982 port 1 214982 unique_id port 214982 remote_ip 10.8.0.2 214983 username barzegar 214983 mac 214983 bytes_out 0 214983 bytes_in 0 214983 station_ip 5.120.158.69 214983 port 95 214983 unique_id port 214983 remote_ip 10.8.0.34 214984 username hamid2 214984 mac 214984 bytes_out 0 214984 bytes_in 0 214984 station_ip 94.241.175.77 214984 port 61 214984 unique_id port 214984 remote_ip 10.8.1.38 214987 username khademi 214987 kill_reason Another user logged on this global unique id 214987 mac 214987 bytes_out 0 214987 bytes_in 0 214987 station_ip 83.122.138.67 214987 port 94 214987 unique_id port 214990 username kalantary6037 214990 mac 214990 bytes_out 164538 214990 bytes_in 1042681 214990 station_ip 37.129.191.220 214990 port 88 214990 unique_id port 214990 remote_ip 10.8.0.18 214993 username farhad3 214993 mac 214993 bytes_out 0 214993 bytes_in 0 214993 station_ip 5.119.132.74 214993 port 88 214993 unique_id port 214993 remote_ip 10.8.0.98 214994 username barzegar 214994 mac 214994 bytes_out 0 214994 bytes_in 0 214994 station_ip 5.120.158.69 214994 port 61 214994 unique_id port 214994 remote_ip 10.8.1.30 214997 username malekpoir 214997 mac 214997 bytes_out 1552172 214997 bytes_in 11589774 214997 station_ip 5.119.89.152 214997 port 50 214997 unique_id port 214997 remote_ip 10.8.0.178 215002 username aminvpnipad 215002 mac 215002 bytes_out 0 215002 bytes_in 0 215002 station_ip 5.119.54.88 215002 port 1 215002 unique_id port 215002 remote_ip 10.8.0.2 215006 username hamid2 215006 mac 215006 bytes_out 0 215006 bytes_in 0 215006 station_ip 5.119.87.26 215006 port 61 215006 unique_id port 215006 remote_ip 10.8.1.38 215007 username hamid2 215007 mac 215007 bytes_out 0 215007 bytes_in 0 215007 station_ip 5.119.87.26 215007 port 61 215007 unique_id port 215007 remote_ip 10.8.1.38 215017 username aminvpnipad 215017 mac 215017 bytes_out 0 215017 bytes_in 0 215017 station_ip 5.119.54.88 215017 port 1 215017 unique_id port 215017 remote_ip 10.8.0.2 215019 username kalantary6037 215019 mac 215019 bytes_out 570004 215019 bytes_in 3715133 215019 station_ip 37.129.181.200 215019 port 98 215019 unique_id port 215019 remote_ip 10.8.0.18 215032 username alirezazadeh 215032 unique_id port 215032 terminate_cause User-Request 215032 bytes_out 796 215032 bytes_in 354 215032 station_ip 5.120.13.124 215032 port 15728677 215032 nas_port_type Virtual 215032 remote_ip 5.5.5.234 215035 username milan 215035 kill_reason Another user logged on this global unique id 215035 mac 215035 bytes_out 0 215035 bytes_in 0 215035 station_ip 5.119.171.151 215035 port 100 215035 unique_id port 215037 username hamid2 215037 mac 215037 bytes_out 0 214969 remote_ip 10.8.1.38 214974 username aminvpnipad 214974 mac 214974 bytes_out 0 214974 bytes_in 0 214974 station_ip 5.119.54.88 214974 port 1 214974 unique_id port 214974 remote_ip 10.8.0.2 214977 username hamid2 214977 mac 214977 bytes_out 0 214977 bytes_in 0 214977 station_ip 94.241.175.77 214977 port 102 214977 unique_id port 214977 remote_ip 10.8.0.78 214986 username teymori5660 214986 mac 214986 bytes_out 0 214986 bytes_in 0 214986 station_ip 5.119.200.143 214986 port 88 214986 unique_id port 214989 username hosseini0093 214989 mac 214989 bytes_out 0 214989 bytes_in 0 214989 station_ip 5.119.26.82 214989 port 89 214989 unique_id port 214991 username aminvpn 214991 kill_reason Another user logged on this global unique id 214991 mac 214991 bytes_out 0 214991 bytes_in 0 214991 station_ip 5.120.11.17 214991 port 96 214991 unique_id port 214991 remote_ip 10.8.0.58 214995 username farhad3 214995 mac 214995 bytes_out 0 214995 bytes_in 0 214995 station_ip 5.119.132.74 214995 port 89 214995 unique_id port 214995 remote_ip 10.8.0.98 214999 username yaghobi 214999 mac 214999 bytes_out 0 214999 bytes_in 0 214999 station_ip 37.129.232.242 214999 port 60 214999 unique_id port 214999 remote_ip 10.8.1.106 215000 username mirzaei6046 215000 kill_reason Another user logged on this global unique id 215000 mac 215000 bytes_out 0 215000 bytes_in 0 215000 station_ip 5.120.121.238 215000 port 99 215000 unique_id port 215001 username aminvpn 215001 kill_reason Another user logged on this global unique id 215001 mac 215001 bytes_out 0 215001 bytes_in 0 215001 station_ip 5.120.11.17 215001 port 96 215001 unique_id port 215004 username khademi 215004 kill_reason Another user logged on this global unique id 215004 mac 215004 bytes_out 0 215004 bytes_in 0 215004 station_ip 83.122.138.67 215004 port 94 215004 unique_id port 215005 username barzegar 215005 mac 215005 bytes_out 0 215005 bytes_in 0 215005 station_ip 5.120.158.69 215005 port 98 215005 unique_id port 215005 remote_ip 10.8.0.34 215010 username teymori5660 215010 mac 215010 bytes_out 705285 215010 bytes_in 5608458 215010 station_ip 5.119.200.143 215010 port 89 215010 unique_id port 215010 remote_ip 10.8.0.142 215012 username godarzi 215012 kill_reason Another user logged on this global unique id 215012 mac 215012 bytes_out 0 215012 bytes_in 0 215012 station_ip 5.202.65.237 215012 port 75 215012 unique_id port 215012 remote_ip 10.8.0.74 215013 username bcboard 215013 kill_reason Relative expiration date has reached 215013 unique_id port 215013 bytes_out 0 215013 bytes_in 0 215013 station_ip 83.122.50.159 215013 port 15728674 215013 nas_port_type Virtual 215014 username barzegar 215014 mac 215014 bytes_out 0 215014 bytes_in 0 215014 station_ip 5.120.158.69 215014 port 61 215014 unique_id port 215014 remote_ip 10.8.1.30 215016 username aminvpn 215016 kill_reason Another user logged on this global unique id 215016 mac 215016 bytes_out 0 215016 bytes_in 0 215016 station_ip 5.120.11.17 215016 port 96 215016 unique_id port 215022 username aminvpn 215022 kill_reason Another user logged on this global unique id 215022 mac 215022 bytes_out 0 215022 bytes_in 0 215022 station_ip 5.120.11.17 215022 port 96 215022 unique_id port 215024 username hamid2 215024 mac 215024 bytes_out 0 215024 bytes_in 0 215024 station_ip 5.119.87.26 215024 port 89 215024 unique_id port 215024 remote_ip 10.8.0.78 215025 username hamid2 215025 mac 215025 bytes_out 34989 215025 bytes_in 22497 215025 station_ip 5.119.87.26 215025 port 89 215025 unique_id port 214976 bytes_out 1746127 214976 bytes_in 20703034 214976 station_ip 86.57.1.94 214976 port 107 214976 unique_id port 214976 remote_ip 10.8.0.210 214980 username hosseini0093 214980 kill_reason Another user logged on this global unique id 214980 mac 214980 bytes_out 0 214980 bytes_in 0 214980 station_ip 5.119.26.82 214980 port 89 214980 unique_id port 214981 username soleymani5056 214981 mac 214981 bytes_out 52286 214981 bytes_in 61013 214981 station_ip 5.119.57.198 214981 port 102 214981 unique_id port 214981 remote_ip 10.8.0.246 214985 username sabaghnezhad 214985 mac 214985 bytes_out 422249 214985 bytes_in 403669 214985 station_ip 83.122.169.149 214985 port 98 214985 unique_id port 214985 remote_ip 10.8.0.94 214988 username mirzaei6046 214988 kill_reason Another user logged on this global unique id 214988 mac 214988 bytes_out 0 214988 bytes_in 0 214988 station_ip 5.120.121.238 214988 port 99 214988 unique_id port 214988 remote_ip 10.8.0.242 214992 username aminvpnipad 214992 mac 214992 bytes_out 0 214992 bytes_in 0 214992 station_ip 5.119.54.88 214992 port 1 214992 unique_id port 214992 remote_ip 10.8.0.2 214996 username farhad3 214996 mac 214996 bytes_out 144392 214996 bytes_in 617040 214996 station_ip 5.119.132.74 214996 port 88 214996 unique_id port 214996 remote_ip 10.8.0.98 214998 username nilufarrajaei 214998 mac 214998 bytes_out 0 214998 bytes_in 0 214998 station_ip 37.129.182.205 214998 port 103 214998 unique_id port 214998 remote_ip 10.8.0.50 215003 username aminvpnipad 215003 mac 215003 bytes_out 0 215003 bytes_in 0 215003 station_ip 5.119.54.88 215003 port 1 215003 unique_id port 215003 remote_ip 10.8.0.2 215008 username hamid2 215008 mac 215008 bytes_out 0 215008 bytes_in 0 215008 station_ip 5.119.87.26 215008 port 61 215008 unique_id port 215008 remote_ip 10.8.1.38 215009 username hamid2 215009 mac 215009 bytes_out 0 215009 bytes_in 0 215009 station_ip 5.119.87.26 215009 port 98 215009 unique_id port 215009 remote_ip 10.8.0.78 215011 username hamid2 215011 mac 215011 bytes_out 1636 215011 bytes_in 4811 215011 station_ip 5.119.87.26 215011 port 98 215011 unique_id port 215011 remote_ip 10.8.0.78 215015 username mosi 215015 mac 215015 bytes_out 5785563 215015 bytes_in 29272979 215015 station_ip 151.235.124.131 215015 port 97 215015 unique_id port 215015 remote_ip 10.8.0.38 215018 username hamid2 215018 mac 215018 bytes_out 565247 215018 bytes_in 3642532 215018 station_ip 5.119.87.26 215018 port 89 215018 unique_id port 215018 remote_ip 10.8.0.78 215020 username farhad3 215020 kill_reason Another user logged on this global unique id 215020 mac 215020 bytes_out 0 215020 bytes_in 0 215020 station_ip 5.120.64.194 215020 port 88 215020 unique_id port 215020 remote_ip 10.8.0.98 215021 username hamid2 215021 mac 215021 bytes_out 0 215021 bytes_in 0 215021 station_ip 5.119.87.26 215021 port 89 215021 unique_id port 215021 remote_ip 10.8.0.78 215023 username barzegar 215023 mac 215023 bytes_out 0 215023 bytes_in 0 215023 station_ip 5.120.158.69 215023 port 61 215023 unique_id port 215023 remote_ip 10.8.1.30 215026 username sabaghnezhad 215026 mac 215026 bytes_out 0 215026 bytes_in 0 215026 station_ip 83.122.169.149 215026 port 95 215026 unique_id port 215026 remote_ip 10.8.0.94 215027 username hamid2 215027 mac 215027 bytes_out 0 215027 bytes_in 0 215027 station_ip 5.119.87.26 215027 port 89 215027 unique_id port 215027 remote_ip 10.8.0.78 215028 username teymori5660 215028 mac 215025 remote_ip 10.8.0.78 215029 username amiresmaeili0609 215029 mac 215029 bytes_out 7345155 215029 bytes_in 20499969 215029 station_ip 83.123.178.235 215029 port 97 215029 unique_id port 215029 remote_ip 10.8.0.202 215031 username hamid1430 215031 mac 215031 bytes_out 13494916 215031 bytes_in 11966065 215031 station_ip 83.123.175.157 215031 port 102 215031 unique_id port 215031 remote_ip 10.8.0.166 215034 username barzegar 215034 mac 215034 bytes_out 0 215034 bytes_in 0 215034 station_ip 5.120.158.69 215034 port 89 215034 unique_id port 215034 remote_ip 10.8.0.34 215036 username aminvpn 215036 kill_reason Another user logged on this global unique id 215036 mac 215036 bytes_out 0 215036 bytes_in 0 215036 station_ip 5.120.11.17 215036 port 96 215036 unique_id port 215038 username hamid2 215038 mac 215038 bytes_out 0 215038 bytes_in 0 215038 station_ip 5.119.87.26 215038 port 89 215038 unique_id port 215038 remote_ip 10.8.0.78 215039 username hamid2 215039 mac 215039 bytes_out 0 215039 bytes_in 0 215039 station_ip 5.119.87.26 215039 port 89 215039 unique_id port 215039 remote_ip 10.8.0.78 215041 username godarzi 215041 mac 215041 bytes_out 0 215041 bytes_in 0 215041 station_ip 5.202.65.237 215041 port 75 215041 unique_id port 215042 username farhad3 215042 mac 215042 bytes_out 0 215042 bytes_in 0 215042 station_ip 5.120.64.194 215042 port 88 215042 unique_id port 215044 username yaghobi 215044 mac 215044 bytes_out 3777285 215044 bytes_in 38448229 215044 station_ip 37.129.232.242 215044 port 60 215044 unique_id port 215044 remote_ip 10.8.1.106 215051 username aminvpn 215051 unique_id port 215051 terminate_cause User-Request 215051 bytes_out 238 215051 bytes_in 238 215051 station_ip 5.119.32.113 215051 port 15728681 215051 nas_port_type Virtual 215051 remote_ip 5.5.5.231 215054 username yaghobi 215054 mac 215054 bytes_out 313040 215054 bytes_in 276472 215054 station_ip 37.129.232.242 215054 port 60 215054 unique_id port 215054 remote_ip 10.8.1.106 215056 username barzegar 215056 mac 215056 bytes_out 0 215056 bytes_in 0 215056 station_ip 5.120.158.69 215056 port 95 215056 unique_id port 215056 remote_ip 10.8.0.34 215059 username hamid2 215059 mac 215059 bytes_out 0 215059 bytes_in 0 215059 station_ip 5.119.87.26 215059 port 89 215059 unique_id port 215059 remote_ip 10.8.0.78 215062 username sabaghnezhad 215062 mac 215062 bytes_out 0 215062 bytes_in 0 215062 station_ip 37.129.246.96 215062 port 94 215062 unique_id port 215062 remote_ip 10.8.0.94 215065 username yaghobi 215065 mac 215065 bytes_out 131411 215065 bytes_in 142913 215065 station_ip 37.129.232.242 215065 port 60 215065 unique_id port 215065 remote_ip 10.8.1.106 215066 username aminvpn 215066 kill_reason Another user logged on this global unique id 215066 mac 215066 bytes_out 0 215066 bytes_in 0 215066 station_ip 5.120.11.17 215066 port 96 215066 unique_id port 215069 username aminvpns6 215069 kill_reason Another user logged on this global unique id 215069 mac 215069 bytes_out 0 215069 bytes_in 0 215069 station_ip 5.119.236.81 215069 port 89 215069 unique_id port 215069 remote_ip 10.8.0.234 215073 username alirezazadeh 215073 unique_id port 215073 terminate_cause User-Request 215073 bytes_out 0 215073 bytes_in 304 215073 station_ip 5.120.20.141 215073 port 15728683 215073 nas_port_type Virtual 215073 remote_ip 5.5.5.230 215078 username barzegar 215078 mac 215078 bytes_out 0 215078 bytes_in 0 215078 station_ip 5.120.158.69 215078 port 95 215078 unique_id port 215028 bytes_out 0 215028 bytes_in 0 215028 station_ip 5.119.200.143 215028 port 98 215028 unique_id port 215028 remote_ip 10.8.0.142 215030 username alirezazadeh 215030 unique_id port 215030 terminate_cause User-Request 215030 bytes_out 455 215030 bytes_in 222 215030 station_ip 5.120.13.124 215030 port 15728676 215030 nas_port_type Virtual 215030 remote_ip 5.5.5.234 215033 username alirezazadeh 215033 unique_id port 215033 terminate_cause User-Request 215033 bytes_out 0 215033 bytes_in 0 215033 station_ip 5.120.13.124 215033 port 15728678 215033 nas_port_type Virtual 215033 remote_ip 5.5.5.234 215040 username aminvpn 215040 kill_reason Another user logged on this global unique id 215040 mac 215040 bytes_out 0 215040 bytes_in 0 215040 station_ip 5.120.11.17 215040 port 96 215040 unique_id port 215043 username hamid2 215043 mac 215043 bytes_out 0 215043 bytes_in 0 215043 station_ip 5.119.87.26 215043 port 75 215043 unique_id port 215043 remote_ip 10.8.0.78 215045 username barzegar 215045 mac 215045 bytes_out 0 215045 bytes_in 0 215045 station_ip 5.120.158.69 215045 port 61 215045 unique_id port 215045 remote_ip 10.8.1.30 215046 username aminvpn 215046 kill_reason Another user logged on this global unique id 215046 mac 215046 bytes_out 0 215046 bytes_in 0 215046 station_ip 5.120.11.17 215046 port 96 215046 unique_id port 215047 username aminvpns6 215047 mac 215047 bytes_out 0 215047 bytes_in 0 215047 station_ip 5.119.236.81 215047 port 88 215047 unique_id port 215047 remote_ip 10.8.0.234 215048 username aminvpns6 215048 mac 215048 bytes_out 0 215048 bytes_in 0 215048 station_ip 5.119.236.81 215048 port 1 215048 unique_id port 215048 remote_ip 10.8.0.2 215061 username khademi 215061 mac 215061 bytes_out 0 215061 bytes_in 0 215061 station_ip 83.122.138.67 215061 port 94 215061 unique_id port 215068 username barzegar 215068 mac 215068 bytes_out 0 215068 bytes_in 0 215068 station_ip 5.120.158.69 215068 port 95 215068 unique_id port 215068 remote_ip 10.8.0.34 215070 username aminvpn 215070 kill_reason Another user logged on this global unique id 215070 mac 215070 bytes_out 0 215070 bytes_in 0 215070 station_ip 5.120.11.17 215070 port 96 215070 unique_id port 215071 username alirezazadeh 215071 unique_id port 215071 terminate_cause User-Request 215071 bytes_out 90 215071 bytes_in 180 215071 station_ip 5.120.20.141 215071 port 15728682 215071 nas_port_type Virtual 215071 remote_ip 5.5.5.230 215075 username barzegar 215075 mac 215075 bytes_out 0 215075 bytes_in 0 215075 station_ip 5.120.158.69 215075 port 61 215075 unique_id port 215075 remote_ip 10.8.1.30 215077 username hamid2 215077 mac 215077 bytes_out 0 215077 bytes_in 0 215077 station_ip 5.119.87.26 215077 port 97 215077 unique_id port 215077 remote_ip 10.8.0.78 215085 username barzegar 215085 mac 215085 bytes_out 0 215085 bytes_in 0 215085 station_ip 5.120.158.69 215085 port 88 215085 unique_id port 215085 remote_ip 10.8.0.34 215086 username aminvpns6 215086 kill_reason Another user logged on this global unique id 215086 mac 215086 bytes_out 0 215086 bytes_in 0 215086 station_ip 5.119.236.81 215086 port 89 215086 unique_id port 215086 remote_ip 10.8.0.234 215089 username aminvpns6 215089 kill_reason Another user logged on this global unique id 215089 mac 215089 bytes_out 0 215089 bytes_in 0 215089 station_ip 5.119.236.81 215089 port 89 215089 unique_id port 215092 username farhad3 215092 kill_reason Another user logged on this global unique id 215092 mac 215092 bytes_out 0 215092 bytes_in 0 215092 station_ip 5.120.64.194 215092 port 75 215037 bytes_in 0 215037 station_ip 5.119.87.26 215037 port 89 215037 unique_id port 215037 remote_ip 10.8.0.78 215049 username aminvpn 215049 unique_id port 215049 terminate_cause Lost-Carrier 215049 bytes_out 20003 215049 bytes_in 123818 215049 station_ip 5.119.236.81 215049 port 15728680 215049 nas_port_type Virtual 215049 remote_ip 5.5.5.232 215050 username hamid2 215050 mac 215050 bytes_out 0 215050 bytes_in 0 215050 station_ip 5.119.87.26 215050 port 88 215050 unique_id port 215050 remote_ip 10.8.0.78 215052 username mammad 215052 unique_id port 215052 terminate_cause User-Request 215052 bytes_out 1246860 215052 bytes_in 14851558 215052 station_ip 5.233.73.247 215052 port 15728675 215052 nas_port_type Virtual 215052 remote_ip 5.5.5.238 215053 username fezealinaghi 215053 mac 215053 bytes_out 0 215053 bytes_in 0 215053 station_ip 37.129.116.14 215053 port 106 215053 unique_id port 215053 remote_ip 10.8.0.14 215055 username hamid2 215055 mac 215055 bytes_out 0 215055 bytes_in 0 215055 station_ip 5.119.87.26 215055 port 89 215055 unique_id port 215055 remote_ip 10.8.0.78 215057 username aminvpn 215057 kill_reason Another user logged on this global unique id 215057 mac 215057 bytes_out 0 215057 bytes_in 0 215057 station_ip 5.120.11.17 215057 port 96 215057 unique_id port 215058 username hamid2 215058 mac 215058 bytes_out 0 215058 bytes_in 0 215058 station_ip 5.119.87.26 215058 port 89 215058 unique_id port 215058 remote_ip 10.8.0.78 215060 username aminvpns6 215060 mac 215060 bytes_out 0 215060 bytes_in 0 215060 station_ip 5.119.32.113 215060 port 88 215060 unique_id port 215060 remote_ip 10.8.0.234 215063 username farhad3 215063 kill_reason Another user logged on this global unique id 215063 mac 215063 bytes_out 0 215063 bytes_in 0 215063 station_ip 5.120.64.194 215063 port 75 215063 unique_id port 215063 remote_ip 10.8.0.98 215064 username hamid2 215064 mac 215064 bytes_out 0 215064 bytes_in 0 215064 station_ip 5.119.87.26 215064 port 88 215064 unique_id port 215064 remote_ip 10.8.0.78 215067 username hamid2 215067 mac 215067 bytes_out 0 215067 bytes_in 0 215067 station_ip 5.119.87.26 215067 port 95 215067 unique_id port 215067 remote_ip 10.8.0.78 215072 username hashtadani5 215072 mac 215072 bytes_out 254336 215072 bytes_in 1524122 215072 station_ip 83.122.190.2 215072 port 97 215072 unique_id port 215072 remote_ip 10.8.0.238 215074 username hamid2 215074 mac 215074 bytes_out 0 215074 bytes_in 0 215074 station_ip 5.119.87.26 215074 port 95 215074 unique_id port 215074 remote_ip 10.8.0.78 215076 username aminvpn 215076 kill_reason Another user logged on this global unique id 215076 mac 215076 bytes_out 0 215076 bytes_in 0 215076 station_ip 5.120.11.17 215076 port 96 215076 unique_id port 215080 username aminvpns6 215080 mac 215080 bytes_out 0 215080 bytes_in 0 215080 station_ip 5.119.236.81 215080 port 89 215080 unique_id port 215081 username yaghobi 215081 mac 215081 bytes_out 0 215081 bytes_in 0 215081 station_ip 37.129.232.242 215081 port 88 215081 unique_id port 215081 remote_ip 10.8.0.106 215082 username sabaghnezhad 215082 mac 215082 bytes_out 448747 215082 bytes_in 1543395 215082 station_ip 37.129.246.96 215082 port 94 215082 unique_id port 215082 remote_ip 10.8.0.94 215088 username mirzaei6046 215088 kill_reason Another user logged on this global unique id 215088 mac 215088 bytes_out 0 215088 bytes_in 0 215088 station_ip 5.120.121.238 215088 port 99 215088 unique_id port 215090 username barzegar 215090 mac 215078 remote_ip 10.8.0.34 215079 username barzegar 215079 mac 215079 bytes_out 0 215079 bytes_in 0 215079 station_ip 5.120.158.69 215079 port 97 215079 unique_id port 215079 remote_ip 10.8.0.34 215083 username hamid2 215083 mac 215083 bytes_out 0 215083 bytes_in 0 215083 station_ip 5.119.87.26 215083 port 95 215083 unique_id port 215083 remote_ip 10.8.0.78 215084 username hamid2 215084 mac 215084 bytes_out 0 215084 bytes_in 0 215084 station_ip 5.119.87.26 215084 port 88 215084 unique_id port 215084 remote_ip 10.8.0.78 215087 username motamedi9772 215087 kill_reason Another user logged on this global unique id 215087 mac 215087 bytes_out 0 215087 bytes_in 0 215087 station_ip 83.122.101.149 215087 port 60 215087 unique_id port 215087 remote_ip 10.8.1.182 215095 username barzegar 215095 mac 215095 bytes_out 0 215095 bytes_in 0 215095 station_ip 5.120.158.69 215095 port 61 215095 unique_id port 215095 remote_ip 10.8.1.30 215102 username mirzaei6046 215102 kill_reason Another user logged on this global unique id 215102 mac 215102 bytes_out 0 215102 bytes_in 0 215102 station_ip 5.120.121.238 215102 port 99 215102 unique_id port 215103 username barzegar 215103 mac 215103 bytes_out 0 215103 bytes_in 0 215103 station_ip 5.120.158.69 215103 port 61 215103 unique_id port 215103 remote_ip 10.8.1.30 215106 username barzegar 215106 mac 215106 bytes_out 0 215106 bytes_in 0 215106 station_ip 5.120.158.69 215106 port 88 215106 unique_id port 215106 remote_ip 10.8.0.34 215108 username khorasani9135 215108 kill_reason Another user logged on this global unique id 215108 mac 215108 bytes_out 0 215108 bytes_in 0 215108 station_ip 83.123.215.186 215108 port 93 215108 unique_id port 215109 username barzegar 215109 mac 215109 bytes_out 0 215109 bytes_in 0 215109 station_ip 5.120.158.69 215109 port 61 215109 unique_id port 215109 remote_ip 10.8.1.30 215110 username fezealinaghi 215110 mac 215110 bytes_out 885405 215110 bytes_in 10222294 215110 station_ip 37.129.43.162 215110 port 89 215110 unique_id port 215110 remote_ip 10.8.0.14 215111 username mirzaei6046 215111 kill_reason Another user logged on this global unique id 215111 mac 215111 bytes_out 0 215111 bytes_in 0 215111 station_ip 5.120.121.238 215111 port 99 215111 unique_id port 215113 username mostafa_es78 215113 mac 215113 bytes_out 570768 215113 bytes_in 5478435 215113 station_ip 113.203.99.206 215113 port 88 215113 unique_id port 215113 remote_ip 10.8.0.42 215117 username mosi 215117 kill_reason Another user logged on this global unique id 215117 mac 215117 bytes_out 0 215117 bytes_in 0 215117 station_ip 151.235.124.131 215117 port 88 215117 unique_id port 215117 remote_ip 10.8.0.38 215120 username pourshad 215120 mac 215120 bytes_out 1961542 215120 bytes_in 7884424 215120 station_ip 5.120.100.246 215120 port 105 215120 unique_id port 215120 remote_ip 10.8.0.122 215126 username mosi 215126 kill_reason Another user logged on this global unique id 215126 mac 215126 bytes_out 0 215126 bytes_in 0 215126 station_ip 151.235.124.131 215126 port 88 215126 unique_id port 215127 username farhad3 215127 kill_reason Another user logged on this global unique id 215127 mac 215127 bytes_out 0 215127 bytes_in 0 215127 station_ip 5.120.79.174 215127 port 61 215127 unique_id port 215128 username barzegar 215128 mac 215128 bytes_out 0 215128 bytes_in 0 215128 station_ip 5.120.158.69 215128 port 75 215128 unique_id port 215128 remote_ip 10.8.0.34 215133 username farhad3 215133 mac 215133 bytes_out 0 215133 bytes_in 0 215133 station_ip 5.120.79.174 215090 bytes_out 0 215090 bytes_in 0 215090 station_ip 5.120.158.69 215090 port 88 215090 unique_id port 215090 remote_ip 10.8.0.34 215091 username aminvpns6 215091 mac 215091 bytes_out 0 215091 bytes_in 0 215091 station_ip 5.119.236.81 215091 port 89 215091 unique_id port 215096 username motamedi9772 215096 kill_reason Another user logged on this global unique id 215096 mac 215096 bytes_out 0 215096 bytes_in 0 215096 station_ip 83.122.101.149 215096 port 60 215096 unique_id port 215100 username barzegar 215100 mac 215100 bytes_out 0 215100 bytes_in 0 215100 station_ip 5.120.158.69 215100 port 88 215100 unique_id port 215100 remote_ip 10.8.0.34 215105 username farhad3 215105 mac 215105 bytes_out 3398135 215105 bytes_in 23974706 215105 station_ip 5.120.64.194 215105 port 75 215105 unique_id port 215105 remote_ip 10.8.0.98 215112 username barzegar 215112 mac 215112 bytes_out 0 215112 bytes_in 0 215112 station_ip 5.120.158.69 215112 port 89 215112 unique_id port 215112 remote_ip 10.8.0.34 215122 username mirzaei6046 215122 mac 215122 bytes_out 0 215122 bytes_in 0 215122 station_ip 5.120.121.238 215122 port 99 215122 unique_id port 215123 username barzegar 215123 mac 215123 bytes_out 0 215123 bytes_in 0 215123 station_ip 5.120.158.69 215123 port 62 215123 unique_id port 215123 remote_ip 10.8.1.30 215129 username farhad3 215129 kill_reason Another user logged on this global unique id 215129 mac 215129 bytes_out 0 215129 bytes_in 0 215129 station_ip 5.120.79.174 215129 port 61 215129 unique_id port 215130 username mosi 215130 kill_reason Another user logged on this global unique id 215130 mac 215130 bytes_out 0 215130 bytes_in 0 215130 station_ip 151.235.124.131 215130 port 88 215130 unique_id port 215131 username farhad3 215131 kill_reason Another user logged on this global unique id 215131 mac 215131 bytes_out 0 215131 bytes_in 0 215131 station_ip 5.120.79.174 215131 port 61 215131 unique_id port 215132 username barzegar 215132 mac 215132 bytes_out 0 215132 bytes_in 0 215132 station_ip 5.120.158.69 215132 port 89 215132 unique_id port 215132 remote_ip 10.8.0.34 215135 username barzegar 215135 mac 215135 bytes_out 0 215135 bytes_in 0 215135 station_ip 5.120.158.69 215135 port 62 215135 unique_id port 215135 remote_ip 10.8.1.30 215140 username motamedi9772 215140 mac 215140 bytes_out 5678313 215140 bytes_in 41446951 215140 station_ip 83.122.101.149 215140 port 75 215140 unique_id port 215140 remote_ip 10.8.0.86 215147 username farhad3 215147 kill_reason Another user logged on this global unique id 215147 mac 215147 bytes_out 0 215147 bytes_in 0 215147 station_ip 5.120.79.174 215147 port 61 215147 unique_id port 215148 username farhad3 215148 mac 215148 bytes_out 0 215148 bytes_in 0 215148 station_ip 5.120.79.174 215148 port 61 215148 unique_id port 215149 username barzegar 215149 mac 215149 bytes_out 0 215149 bytes_in 0 215149 station_ip 5.120.158.69 215149 port 61 215149 unique_id port 215149 remote_ip 10.8.1.30 215159 username barzegar 215159 mac 215159 bytes_out 0 215159 bytes_in 0 215159 station_ip 5.120.158.69 215159 port 61 215159 unique_id port 215159 remote_ip 10.8.1.30 215160 username barzegar 215160 mac 215160 bytes_out 0 215160 bytes_in 0 215160 station_ip 5.120.158.69 215160 port 75 215160 unique_id port 215160 remote_ip 10.8.0.34 215161 username sekonji0496 215161 mac 215161 bytes_out 0 215161 bytes_in 0 215161 station_ip 83.122.123.146 215161 port 75 215161 unique_id port 215161 remote_ip 10.8.0.70 215092 unique_id port 215093 username aminvpn 215093 kill_reason Another user logged on this global unique id 215093 mac 215093 bytes_out 0 215093 bytes_in 0 215093 station_ip 5.120.11.17 215093 port 96 215093 unique_id port 215094 username farhad3 215094 mac 215094 bytes_out 0 215094 bytes_in 0 215094 station_ip 5.120.64.194 215094 port 75 215094 unique_id port 215097 username dortaj3792 215097 mac 215097 bytes_out 5033940 215097 bytes_in 10495525 215097 station_ip 5.119.175.220 215097 port 104 215097 unique_id port 215097 remote_ip 10.8.0.10 215098 username aminvpn 215098 kill_reason Another user logged on this global unique id 215098 mac 215098 bytes_out 0 215098 bytes_in 0 215098 station_ip 5.120.11.17 215098 port 96 215098 unique_id port 215099 username aminvpn 215099 mac 215099 bytes_out 0 215099 bytes_in 0 215099 station_ip 5.120.11.17 215099 port 96 215099 unique_id port 215101 username barzegar 215101 mac 215101 bytes_out 0 215101 bytes_in 0 215101 station_ip 5.120.158.69 215101 port 61 215101 unique_id port 215101 remote_ip 10.8.1.30 215104 username motamedi9772 215104 kill_reason Another user logged on this global unique id 215104 mac 215104 bytes_out 0 215104 bytes_in 0 215104 station_ip 83.122.101.149 215104 port 60 215104 unique_id port 215107 username motamedi9772 215107 mac 215107 bytes_out 0 215107 bytes_in 0 215107 station_ip 83.122.101.149 215107 port 60 215107 unique_id port 215114 username khorasani9135 215114 mac 215114 bytes_out 0 215114 bytes_in 0 215114 station_ip 83.123.215.186 215114 port 93 215114 unique_id port 215115 username barzegar 215115 mac 215115 bytes_out 0 215115 bytes_in 0 215115 station_ip 5.120.158.69 215115 port 88 215115 unique_id port 215115 remote_ip 10.8.0.34 215116 username farhad3 215116 mac 215116 bytes_out 6552135 215116 bytes_in 42108940 215116 station_ip 5.120.64.194 215116 port 75 215116 unique_id port 215116 remote_ip 10.8.0.98 215118 username motamedi9772 215118 mac 215118 bytes_out 0 215118 bytes_in 0 215118 station_ip 83.122.101.149 215118 port 60 215118 unique_id port 215118 remote_ip 10.8.1.182 215119 username barzegar 215119 mac 215119 bytes_out 0 215119 bytes_in 0 215119 station_ip 5.120.158.69 215119 port 60 215119 unique_id port 215119 remote_ip 10.8.1.30 215121 username mosi 215121 kill_reason Another user logged on this global unique id 215121 mac 215121 bytes_out 0 215121 bytes_in 0 215121 station_ip 151.235.124.131 215121 port 88 215121 unique_id port 215124 username alirezazadeh 215124 unique_id port 215124 terminate_cause Lost-Carrier 215124 bytes_out 20198620 215124 bytes_in 769361477 215124 station_ip 5.119.249.46 215124 port 15728684 215124 nas_port_type Virtual 215124 remote_ip 5.5.5.229 215125 username farhad3 215125 kill_reason Another user logged on this global unique id 215125 mac 215125 bytes_out 0 215125 bytes_in 0 215125 station_ip 5.120.79.174 215125 port 61 215125 unique_id port 215125 remote_ip 10.8.1.86 215136 username farhad3 215136 kill_reason Another user logged on this global unique id 215136 mac 215136 bytes_out 0 215136 bytes_in 0 215136 station_ip 5.120.79.174 215136 port 61 215136 unique_id port 215136 remote_ip 10.8.1.86 215137 username barzegar 215137 mac 215137 bytes_out 0 215137 bytes_in 0 215137 station_ip 5.120.158.69 215137 port 93 215137 unique_id port 215137 remote_ip 10.8.0.34 215138 username farhad3 215138 kill_reason Another user logged on this global unique id 215138 mac 215138 bytes_out 0 215138 bytes_in 0 215138 station_ip 5.120.79.174 215138 port 61 215138 unique_id port 215133 port 61 215133 unique_id port 215134 username mosi 215134 kill_reason Another user logged on this global unique id 215134 mac 215134 bytes_out 0 215134 bytes_in 0 215134 station_ip 151.235.124.131 215134 port 88 215134 unique_id port 215139 username barzegar 215139 mac 215139 bytes_out 0 215139 bytes_in 0 215139 station_ip 5.120.158.69 215139 port 62 215139 unique_id port 215139 remote_ip 10.8.1.30 215141 username motamedi9772 215141 mac 215141 bytes_out 5109 215141 bytes_in 7444 215141 station_ip 83.122.101.149 215141 port 75 215141 unique_id port 215141 remote_ip 10.8.0.86 215143 username barzegar 215143 mac 215143 bytes_out 0 215143 bytes_in 0 215143 station_ip 5.120.158.69 215143 port 62 215143 unique_id port 215143 remote_ip 10.8.1.30 215144 username kalantary6037 215144 mac 215144 bytes_out 1141656 215144 bytes_in 13218025 215144 station_ip 37.129.139.244 215144 port 75 215144 unique_id port 215144 remote_ip 10.8.0.18 215146 username mostafa_es78 215146 mac 215146 bytes_out 83086 215146 bytes_in 145237 215146 station_ip 113.203.122.166 215146 port 75 215146 unique_id port 215146 remote_ip 10.8.0.42 215150 username mosi 215150 mac 215150 bytes_out 0 215150 bytes_in 0 215150 station_ip 151.235.124.131 215150 port 88 215150 unique_id port 215151 username barzegar 215151 mac 215151 bytes_out 0 215151 bytes_in 0 215151 station_ip 5.120.158.69 215151 port 75 215151 unique_id port 215151 remote_ip 10.8.0.34 215152 username barzegar 215152 mac 215152 bytes_out 0 215152 bytes_in 0 215152 station_ip 5.120.158.69 215152 port 75 215152 unique_id port 215152 remote_ip 10.8.0.34 215153 username kalantary6037 215153 mac 215153 bytes_out 0 215153 bytes_in 0 215153 station_ip 37.129.190.52 215153 port 75 215153 unique_id port 215153 remote_ip 10.8.0.18 215155 username kalantary6037 215155 mac 215155 bytes_out 134052 215155 bytes_in 302000 215155 station_ip 37.129.190.52 215155 port 75 215155 unique_id port 215155 remote_ip 10.8.0.18 215156 username barzegar 215156 mac 215156 bytes_out 0 215156 bytes_in 0 215156 station_ip 5.120.158.69 215156 port 75 215156 unique_id port 215156 remote_ip 10.8.0.34 215162 username barzegar 215162 mac 215162 bytes_out 0 215162 bytes_in 0 215162 station_ip 5.120.158.69 215162 port 61 215162 unique_id port 215162 remote_ip 10.8.1.30 215166 username motamedi9772 215166 mac 215166 bytes_out 0 215166 bytes_in 0 215166 station_ip 83.122.60.181 215166 port 75 215166 unique_id port 215166 remote_ip 10.8.0.86 215167 username motamedi9772 215167 mac 215167 bytes_out 0 215167 bytes_in 0 215167 station_ip 83.122.60.181 215167 port 75 215167 unique_id port 215167 remote_ip 10.8.0.86 215168 username motamedi9772 215168 mac 215168 bytes_out 0 215168 bytes_in 0 215168 station_ip 83.122.60.181 215168 port 75 215168 unique_id port 215168 remote_ip 10.8.0.86 215171 username motamedi9772 215171 mac 215171 bytes_out 0 215171 bytes_in 0 215171 station_ip 83.122.60.181 215171 port 75 215171 unique_id port 215171 remote_ip 10.8.0.86 215172 username motamedi9772 215172 mac 215172 bytes_out 0 215172 bytes_in 0 215172 station_ip 83.122.60.181 215172 port 75 215172 unique_id port 215172 remote_ip 10.8.0.86 215173 username motamedi9772 215173 mac 215173 bytes_out 0 215173 bytes_in 0 215173 station_ip 83.122.60.181 215173 port 75 215173 unique_id port 215173 remote_ip 10.8.0.86 215175 username motamedi9772 215175 mac 215175 bytes_out 0 215175 bytes_in 0 215142 username aminvpn 215142 mac 215142 bytes_out 907073 215142 bytes_in 3489702 215142 station_ip 5.120.11.17 215142 port 89 215142 unique_id port 215142 remote_ip 10.8.0.58 215145 username barzegar 215145 mac 215145 bytes_out 0 215145 bytes_in 0 215145 station_ip 5.120.158.69 215145 port 62 215145 unique_id port 215145 remote_ip 10.8.1.30 215154 username barzegar 215154 mac 215154 bytes_out 0 215154 bytes_in 0 215154 station_ip 5.120.158.69 215154 port 61 215154 unique_id port 215154 remote_ip 10.8.1.30 215157 username barzegar 215157 mac 215157 bytes_out 0 215157 bytes_in 0 215157 station_ip 5.120.158.69 215157 port 61 215157 unique_id port 215157 remote_ip 10.8.1.30 215158 username barzegar 215158 mac 215158 bytes_out 0 215158 bytes_in 0 215158 station_ip 5.120.158.69 215158 port 75 215158 unique_id port 215158 remote_ip 10.8.0.34 215163 username barzegar 215163 mac 215163 bytes_out 0 215163 bytes_in 0 215163 station_ip 5.120.158.69 215163 port 61 215163 unique_id port 215163 remote_ip 10.8.1.30 215164 username motamedi9772 215164 kill_reason Another user logged on this global unique id 215164 mac 215164 bytes_out 0 215164 bytes_in 0 215164 station_ip 83.122.60.181 215164 port 75 215164 unique_id port 215164 remote_ip 10.8.0.86 215165 username motamedi9772 215165 mac 215165 bytes_out 0 215165 bytes_in 0 215165 station_ip 83.122.60.181 215165 port 75 215165 unique_id port 215169 username motamedi9772 215169 mac 215169 bytes_out 0 215169 bytes_in 0 215169 station_ip 83.122.60.181 215169 port 75 215169 unique_id port 215169 remote_ip 10.8.0.86 215170 username motamedi9772 215170 mac 215170 bytes_out 0 215170 bytes_in 0 215170 station_ip 83.122.60.181 215170 port 75 215170 unique_id port 215170 remote_ip 10.8.0.86 215174 username motamedi9772 215174 mac 215174 bytes_out 0 215174 bytes_in 0 215174 station_ip 83.122.60.181 215174 port 75 215174 unique_id port 215174 remote_ip 10.8.0.86 215175 station_ip 83.122.60.181 215175 port 75 215175 unique_id port 215175 remote_ip 10.8.0.86 215176 username motamedi9772 215176 mac 215176 bytes_out 0 215176 bytes_in 0 215176 station_ip 83.122.60.181 215176 port 75 215176 unique_id port 215176 remote_ip 10.8.0.86 215177 username motamedi9772 215177 mac 215177 bytes_out 0 215177 bytes_in 0 215177 station_ip 83.122.60.181 215177 port 75 215177 unique_id port 215177 remote_ip 10.8.0.86 215178 username motamedi9772 215178 mac 215178 bytes_out 0 215178 bytes_in 0 215178 station_ip 83.122.60.181 215178 port 75 215178 unique_id port 215178 remote_ip 10.8.0.86 215179 username motamedi9772 215179 mac 215179 bytes_out 0 215179 bytes_in 0 215179 station_ip 83.122.60.181 215179 port 75 215179 unique_id port 215179 remote_ip 10.8.0.86 215180 username motamedi9772 215180 mac 215180 bytes_out 0 215180 bytes_in 0 215180 station_ip 83.122.60.181 215180 port 75 215180 unique_id port 215180 remote_ip 10.8.0.86 215181 username motamedi9772 215181 mac 215181 bytes_out 0 215181 bytes_in 0 215181 station_ip 83.122.60.181 215181 port 75 215181 unique_id port 215181 remote_ip 10.8.0.86 215182 username barzegar 215182 mac 215182 bytes_out 0 215182 bytes_in 0 215182 station_ip 5.120.158.69 215182 port 88 215182 unique_id port 215182 remote_ip 10.8.0.34 215183 username motamedi9772 215183 mac 215183 bytes_out 0 215183 bytes_in 0 215183 station_ip 83.122.60.181 215183 port 75 215183 unique_id port 215183 remote_ip 10.8.0.86 215184 username motamedi9772 215184 mac 215184 bytes_out 0 215184 bytes_in 0 215184 station_ip 83.122.60.181 215184 port 75 215184 unique_id port 215184 remote_ip 10.8.0.86 215185 username motamedi9772 215185 mac 215185 bytes_out 0 215185 bytes_in 0 215185 station_ip 83.122.60.181 215185 port 75 215185 unique_id port 215185 remote_ip 10.8.0.86 215189 username motamedi9772 215189 mac 215189 bytes_out 0 215189 bytes_in 0 215189 station_ip 83.122.60.181 215189 port 75 215189 unique_id port 215189 remote_ip 10.8.0.86 215191 username motamedi9772 215191 mac 215191 bytes_out 0 215191 bytes_in 0 215191 station_ip 83.122.60.181 215191 port 75 215191 unique_id port 215191 remote_ip 10.8.0.86 215195 username motamedi9772 215195 mac 215195 bytes_out 0 215195 bytes_in 0 215195 station_ip 83.122.60.181 215195 port 75 215195 unique_id port 215195 remote_ip 10.8.0.86 215197 username motamedi9772 215197 mac 215197 bytes_out 0 215197 bytes_in 0 215197 station_ip 83.122.60.181 215197 port 75 215197 unique_id port 215197 remote_ip 10.8.0.86 215207 username motamedi9772 215207 mac 215207 bytes_out 0 215207 bytes_in 0 215207 station_ip 83.122.60.181 215207 port 75 215207 unique_id port 215207 remote_ip 10.8.0.86 215209 username motamedi9772 215209 mac 215209 bytes_out 0 215209 bytes_in 0 215209 station_ip 83.122.60.181 215209 port 75 215209 unique_id port 215209 remote_ip 10.8.0.86 215213 username motamedi9772 215213 mac 215213 bytes_out 0 215213 bytes_in 0 215213 station_ip 83.122.60.181 215213 port 75 215213 unique_id port 215213 remote_ip 10.8.0.86 215214 username motamedi9772 215214 mac 215214 bytes_out 0 215214 bytes_in 0 215214 station_ip 83.122.60.181 215214 port 75 215214 unique_id port 215214 remote_ip 10.8.0.86 215219 username motamedi9772 215219 mac 215219 bytes_out 0 215219 bytes_in 0 215219 station_ip 83.122.60.181 215219 port 75 215219 unique_id port 215219 remote_ip 10.8.0.86 215221 username motamedi9772 215221 mac 215221 bytes_out 0 215221 bytes_in 0 215221 station_ip 83.122.60.181 215221 port 75 215221 unique_id port 215221 remote_ip 10.8.0.86 215227 username motamedi9772 215227 mac 215227 bytes_out 0 215227 bytes_in 0 215227 station_ip 83.122.60.181 215227 port 75 215227 unique_id port 215227 remote_ip 10.8.0.86 215229 username barzegar 215229 mac 215229 bytes_out 0 215229 bytes_in 0 215229 station_ip 5.120.158.69 215229 port 89 215229 unique_id port 215229 remote_ip 10.8.0.34 215231 username motamedi9772 215231 mac 215231 bytes_out 0 215231 bytes_in 0 215231 station_ip 83.122.60.181 215231 port 75 215231 unique_id port 215231 remote_ip 10.8.0.86 215232 username motamedi9772 215232 mac 215232 bytes_out 0 215232 bytes_in 0 215232 station_ip 83.122.60.181 215232 port 75 215232 unique_id port 215232 remote_ip 10.8.0.86 215234 username motamedi9772 215234 mac 215234 bytes_out 0 215234 bytes_in 0 215234 station_ip 83.122.60.181 215234 port 75 215234 unique_id port 215234 remote_ip 10.8.0.86 215238 username motamedi9772 215238 mac 215238 bytes_out 0 215238 bytes_in 0 215238 station_ip 83.122.60.181 215238 port 75 215238 unique_id port 215238 remote_ip 10.8.0.86 215242 username motamedi9772 215242 mac 215242 bytes_out 0 215242 bytes_in 0 215242 station_ip 83.122.60.181 215242 port 75 215242 unique_id port 215242 remote_ip 10.8.0.86 215243 username motamedi9772 215243 mac 215243 bytes_out 0 215243 bytes_in 0 215243 station_ip 83.122.60.181 215186 username motamedi9772 215186 mac 215186 bytes_out 0 215186 bytes_in 0 215186 station_ip 83.122.60.181 215186 port 75 215186 unique_id port 215186 remote_ip 10.8.0.86 215187 username motamedi9772 215187 mac 215187 bytes_out 0 215187 bytes_in 0 215187 station_ip 83.122.60.181 215187 port 75 215187 unique_id port 215187 remote_ip 10.8.0.86 215192 username motamedi9772 215192 mac 215192 bytes_out 0 215192 bytes_in 0 215192 station_ip 83.122.60.181 215192 port 75 215192 unique_id port 215192 remote_ip 10.8.0.86 215193 username motamedi9772 215193 mac 215193 bytes_out 0 215193 bytes_in 0 215193 station_ip 83.122.60.181 215193 port 75 215193 unique_id port 215193 remote_ip 10.8.0.86 215198 username motamedi9772 215198 mac 215198 bytes_out 0 215198 bytes_in 0 215198 station_ip 83.122.60.181 215198 port 75 215198 unique_id port 215198 remote_ip 10.8.0.86 215199 username motamedi9772 215199 mac 215199 bytes_out 0 215199 bytes_in 0 215199 station_ip 83.122.60.181 215199 port 75 215199 unique_id port 215199 remote_ip 10.8.0.86 215203 username barzegar 215203 mac 215203 bytes_out 0 215203 bytes_in 0 215203 station_ip 5.120.158.69 215203 port 61 215203 unique_id port 215203 remote_ip 10.8.1.30 215204 username motamedi9772 215204 mac 215204 bytes_out 0 215204 bytes_in 0 215204 station_ip 83.122.60.181 215204 port 75 215204 unique_id port 215204 remote_ip 10.8.0.86 215210 username motamedi9772 215210 mac 215210 bytes_out 0 215210 bytes_in 0 215210 station_ip 83.122.60.181 215210 port 75 215210 unique_id port 215210 remote_ip 10.8.0.86 215211 username motamedi9772 215211 mac 215211 bytes_out 0 215211 bytes_in 0 215211 station_ip 83.122.60.181 215211 port 75 215211 unique_id port 215211 remote_ip 10.8.0.86 215215 username motamedi9772 215215 mac 215215 bytes_out 0 215215 bytes_in 0 215215 station_ip 83.122.60.181 215215 port 75 215215 unique_id port 215215 remote_ip 10.8.0.86 215216 username motamedi9772 215216 mac 215216 bytes_out 0 215216 bytes_in 0 215216 station_ip 83.122.60.181 215216 port 75 215216 unique_id port 215216 remote_ip 10.8.0.86 215222 username motamedi9772 215222 mac 215222 bytes_out 0 215222 bytes_in 0 215222 station_ip 83.122.60.181 215222 port 75 215222 unique_id port 215222 remote_ip 10.8.0.86 215223 username motamedi9772 215223 mac 215223 bytes_out 0 215223 bytes_in 0 215223 station_ip 83.122.60.181 215223 port 75 215223 unique_id port 215223 remote_ip 10.8.0.86 215233 username motamedi9772 215233 mac 215233 bytes_out 0 215233 bytes_in 0 215233 station_ip 83.122.60.181 215233 port 75 215233 unique_id port 215233 remote_ip 10.8.0.86 215235 username motamedi9772 215235 mac 215235 bytes_out 0 215235 bytes_in 0 215235 station_ip 83.122.60.181 215235 port 75 215235 unique_id port 215235 remote_ip 10.8.0.86 215239 username motamedi9772 215239 mac 215239 bytes_out 0 215239 bytes_in 0 215239 station_ip 83.122.60.181 215239 port 75 215239 unique_id port 215239 remote_ip 10.8.0.86 215240 username motamedi9772 215240 mac 215240 bytes_out 0 215240 bytes_in 0 215240 station_ip 83.122.60.181 215240 port 75 215240 unique_id port 215240 remote_ip 10.8.0.86 215244 username motamedi9772 215244 mac 215244 bytes_out 0 215244 bytes_in 0 215244 station_ip 83.122.60.181 215244 port 75 215244 unique_id port 215244 remote_ip 10.8.0.86 215245 username motamedi9772 215245 mac 215245 bytes_out 0 215245 bytes_in 0 215245 station_ip 83.122.60.181 215188 username motamedi9772 215188 mac 215188 bytes_out 0 215188 bytes_in 0 215188 station_ip 83.122.60.181 215188 port 75 215188 unique_id port 215188 remote_ip 10.8.0.86 215190 username motamedi9772 215190 mac 215190 bytes_out 0 215190 bytes_in 0 215190 station_ip 83.122.60.181 215190 port 75 215190 unique_id port 215190 remote_ip 10.8.0.86 215194 username motamedi9772 215194 mac 215194 bytes_out 0 215194 bytes_in 0 215194 station_ip 83.122.60.181 215194 port 75 215194 unique_id port 215194 remote_ip 10.8.0.86 215196 username motamedi9772 215196 mac 215196 bytes_out 0 215196 bytes_in 0 215196 station_ip 83.122.60.181 215196 port 75 215196 unique_id port 215196 remote_ip 10.8.0.86 215200 username motamedi9772 215200 mac 215200 bytes_out 0 215200 bytes_in 0 215200 station_ip 83.122.60.181 215200 port 75 215200 unique_id port 215200 remote_ip 10.8.0.86 215201 username motamedi9772 215201 mac 215201 bytes_out 0 215201 bytes_in 0 215201 station_ip 83.122.60.181 215201 port 75 215201 unique_id port 215201 remote_ip 10.8.0.86 215202 username motamedi9772 215202 mac 215202 bytes_out 0 215202 bytes_in 0 215202 station_ip 83.122.60.181 215202 port 75 215202 unique_id port 215202 remote_ip 10.8.0.86 215205 username motamedi9772 215205 mac 215205 bytes_out 0 215205 bytes_in 0 215205 station_ip 83.122.60.181 215205 port 75 215205 unique_id port 215205 remote_ip 10.8.0.86 215206 username motamedi9772 215206 mac 215206 bytes_out 0 215206 bytes_in 0 215206 station_ip 83.122.60.181 215206 port 75 215206 unique_id port 215206 remote_ip 10.8.0.86 215208 username motamedi9772 215208 mac 215208 bytes_out 0 215208 bytes_in 0 215208 station_ip 83.122.60.181 215208 port 75 215208 unique_id port 215208 remote_ip 10.8.0.86 215212 username motamedi9772 215212 mac 215212 bytes_out 0 215212 bytes_in 0 215212 station_ip 83.122.60.181 215212 port 75 215212 unique_id port 215212 remote_ip 10.8.0.86 215217 username motamedi9772 215217 mac 215217 bytes_out 0 215217 bytes_in 0 215217 station_ip 83.122.60.181 215217 port 75 215217 unique_id port 215217 remote_ip 10.8.0.86 215218 username motamedi9772 215218 mac 215218 bytes_out 0 215218 bytes_in 0 215218 station_ip 83.122.60.181 215218 port 75 215218 unique_id port 215218 remote_ip 10.8.0.86 215220 username motamedi9772 215220 mac 215220 bytes_out 0 215220 bytes_in 0 215220 station_ip 83.122.60.181 215220 port 75 215220 unique_id port 215220 remote_ip 10.8.0.86 215224 username motamedi9772 215224 mac 215224 bytes_out 0 215224 bytes_in 0 215224 station_ip 83.122.60.181 215224 port 75 215224 unique_id port 215224 remote_ip 10.8.0.86 215225 username motamedi9772 215225 mac 215225 bytes_out 0 215225 bytes_in 0 215225 station_ip 83.122.60.181 215225 port 75 215225 unique_id port 215225 remote_ip 10.8.0.86 215226 username motamedi9772 215226 mac 215226 bytes_out 0 215226 bytes_in 0 215226 station_ip 83.122.60.181 215226 port 75 215226 unique_id port 215226 remote_ip 10.8.0.86 215228 username motamedi9772 215228 mac 215228 bytes_out 0 215228 bytes_in 0 215228 station_ip 83.122.60.181 215228 port 75 215228 unique_id port 215228 remote_ip 10.8.0.86 215230 username motamedi9772 215230 mac 215230 bytes_out 0 215230 bytes_in 0 215230 station_ip 83.122.60.181 215230 port 75 215230 unique_id port 215230 remote_ip 10.8.0.86 215236 username motamedi9772 215236 mac 215236 bytes_out 0 215236 bytes_in 0 215236 station_ip 83.122.60.181 215236 port 75 215236 unique_id port 215236 remote_ip 10.8.0.86 215237 username motamedi9772 215237 mac 215237 bytes_out 0 215237 bytes_in 0 215237 station_ip 83.122.60.181 215237 port 75 215237 unique_id port 215237 remote_ip 10.8.0.86 215241 username motamedi9772 215241 mac 215241 bytes_out 0 215241 bytes_in 0 215241 station_ip 83.122.60.181 215241 port 75 215241 unique_id port 215241 remote_ip 10.8.0.86 215246 username motamedi9772 215246 mac 215246 bytes_out 0 215246 bytes_in 0 215246 station_ip 83.122.60.181 215246 port 75 215246 unique_id port 215246 remote_ip 10.8.0.86 215248 username motamedi9772 215248 mac 215248 bytes_out 0 215248 bytes_in 0 215248 station_ip 83.122.60.181 215248 port 75 215248 unique_id port 215248 remote_ip 10.8.0.86 215249 username motamedi9772 215249 mac 215249 bytes_out 0 215249 bytes_in 0 215249 station_ip 83.122.60.181 215249 port 75 215249 unique_id port 215249 remote_ip 10.8.0.86 215253 username motamedi9772 215253 mac 215253 bytes_out 0 215253 bytes_in 0 215253 station_ip 83.122.60.181 215253 port 75 215253 unique_id port 215253 remote_ip 10.8.0.86 215260 username motamedi9772 215260 mac 215260 bytes_out 0 215260 bytes_in 0 215260 station_ip 83.122.60.181 215260 port 75 215260 unique_id port 215260 remote_ip 10.8.0.86 215264 username motamedi9772 215264 mac 215264 bytes_out 0 215264 bytes_in 0 215264 station_ip 83.122.60.181 215264 port 75 215264 unique_id port 215264 remote_ip 10.8.0.86 215265 username motamedi9772 215265 mac 215265 bytes_out 0 215265 bytes_in 0 215265 station_ip 83.122.60.181 215265 port 75 215265 unique_id port 215265 remote_ip 10.8.0.86 215269 username motamedi9772 215269 mac 215269 bytes_out 0 215269 bytes_in 0 215269 station_ip 83.122.60.181 215269 port 75 215269 unique_id port 215269 remote_ip 10.8.0.86 215270 username motamedi9772 215270 mac 215270 bytes_out 0 215270 bytes_in 0 215270 station_ip 83.122.60.181 215270 port 75 215270 unique_id port 215270 remote_ip 10.8.0.86 215272 username motamedi9772 215272 mac 215272 bytes_out 0 215272 bytes_in 0 215272 station_ip 83.122.60.181 215272 port 75 215272 unique_id port 215272 remote_ip 10.8.0.86 215274 username motamedi9772 215274 mac 215274 bytes_out 0 215274 bytes_in 0 215274 station_ip 83.122.60.181 215274 port 75 215274 unique_id port 215274 remote_ip 10.8.0.86 215275 username motamedi9772 215275 mac 215275 bytes_out 0 215275 bytes_in 0 215275 station_ip 83.122.60.181 215275 port 75 215275 unique_id port 215275 remote_ip 10.8.0.86 215279 username motamedi9772 215279 mac 215279 bytes_out 0 215279 bytes_in 0 215279 station_ip 83.122.60.181 215279 port 75 215279 unique_id port 215279 remote_ip 10.8.0.86 215280 username motamedi9772 215280 mac 215280 bytes_out 0 215280 bytes_in 0 215280 station_ip 83.122.60.181 215280 port 75 215280 unique_id port 215280 remote_ip 10.8.0.86 215282 username motamedi9772 215282 mac 215282 bytes_out 0 215282 bytes_in 0 215282 station_ip 83.122.60.181 215282 port 75 215282 unique_id port 215282 remote_ip 10.8.0.86 215283 username motamedi9772 215283 mac 215283 bytes_out 0 215283 bytes_in 0 215283 station_ip 83.122.60.181 215283 port 75 215283 unique_id port 215283 remote_ip 10.8.0.86 215286 username motamedi9772 215286 mac 215286 bytes_out 0 215286 bytes_in 0 215286 station_ip 83.122.60.181 215286 port 75 215286 unique_id port 215286 remote_ip 10.8.0.86 215287 username motamedi9772 215287 mac 215243 port 75 215243 unique_id port 215243 remote_ip 10.8.0.86 215250 username motamedi9772 215250 mac 215250 bytes_out 0 215250 bytes_in 0 215250 station_ip 83.122.60.181 215250 port 75 215250 unique_id port 215250 remote_ip 10.8.0.86 215254 username motamedi9772 215254 mac 215254 bytes_out 0 215254 bytes_in 0 215254 station_ip 83.122.60.181 215254 port 75 215254 unique_id port 215254 remote_ip 10.8.0.86 215255 username motamedi9772 215255 mac 215255 bytes_out 0 215255 bytes_in 0 215255 station_ip 83.122.60.181 215255 port 75 215255 unique_id port 215255 remote_ip 10.8.0.86 215256 username mohammadjavad 215256 mac 215256 bytes_out 0 215256 bytes_in 0 215256 station_ip 37.129.20.243 215256 port 88 215256 unique_id port 215256 remote_ip 10.8.0.138 215258 username motamedi9772 215258 mac 215258 bytes_out 0 215258 bytes_in 0 215258 station_ip 83.122.60.181 215258 port 75 215258 unique_id port 215258 remote_ip 10.8.0.86 215261 username motamedi9772 215261 mac 215261 bytes_out 0 215261 bytes_in 0 215261 station_ip 83.122.60.181 215261 port 75 215261 unique_id port 215261 remote_ip 10.8.0.86 215266 username motamedi9772 215266 mac 215266 bytes_out 0 215266 bytes_in 0 215266 station_ip 83.122.60.181 215266 port 75 215266 unique_id port 215266 remote_ip 10.8.0.86 215271 username motamedi9772 215271 mac 215271 bytes_out 0 215271 bytes_in 0 215271 station_ip 83.122.60.181 215271 port 75 215271 unique_id port 215271 remote_ip 10.8.0.86 215273 username mohammadjavad 215273 mac 215273 bytes_out 0 215273 bytes_in 0 215273 station_ip 37.129.20.243 215273 port 88 215273 unique_id port 215273 remote_ip 10.8.0.138 215276 username motamedi9772 215276 mac 215276 bytes_out 0 215276 bytes_in 0 215276 station_ip 83.122.60.181 215276 port 75 215276 unique_id port 215276 remote_ip 10.8.0.86 215281 username motamedi9772 215281 mac 215281 bytes_out 0 215281 bytes_in 0 215281 station_ip 83.122.60.181 215281 port 75 215281 unique_id port 215281 remote_ip 10.8.0.86 215284 username barzegar 215284 mac 215284 bytes_out 0 215284 bytes_in 0 215284 station_ip 5.120.158.69 215284 port 88 215284 unique_id port 215284 remote_ip 10.8.0.34 215285 username aminvpn 215285 unique_id port 215285 terminate_cause Lost-Carrier 215285 bytes_out 53 215285 bytes_in 296 215285 station_ip 37.129.5.210 215285 port 15728685 215285 nas_port_type Virtual 215285 remote_ip 5.5.5.228 215288 username motamedi9772 215288 mac 215288 bytes_out 0 215288 bytes_in 0 215288 station_ip 83.122.60.181 215288 port 75 215288 unique_id port 215288 remote_ip 10.8.0.86 215289 username motamedi9772 215289 mac 215289 bytes_out 0 215289 bytes_in 0 215289 station_ip 83.122.60.181 215289 port 75 215289 unique_id port 215289 remote_ip 10.8.0.86 215296 username motamedi9772 215296 mac 215296 bytes_out 0 215296 bytes_in 0 215296 station_ip 83.122.60.181 215296 port 75 215296 unique_id port 215296 remote_ip 10.8.0.86 215297 username motamedi9772 215297 mac 215297 bytes_out 0 215297 bytes_in 0 215297 station_ip 83.122.60.181 215297 port 75 215297 unique_id port 215297 remote_ip 10.8.0.86 215302 username motamedi9772 215302 mac 215302 bytes_out 0 215302 bytes_in 0 215302 station_ip 83.122.60.181 215302 port 75 215302 unique_id port 215302 remote_ip 10.8.0.86 215303 username motamedi9772 215303 mac 215303 bytes_out 0 215303 bytes_in 0 215303 station_ip 83.122.60.181 215303 port 75 215303 unique_id port 215303 remote_ip 10.8.0.86 215245 port 75 215245 unique_id port 215245 remote_ip 10.8.0.86 215247 username motamedi9772 215247 mac 215247 bytes_out 0 215247 bytes_in 0 215247 station_ip 83.122.60.181 215247 port 75 215247 unique_id port 215247 remote_ip 10.8.0.86 215251 username motamedi9772 215251 mac 215251 bytes_out 0 215251 bytes_in 0 215251 station_ip 83.122.60.181 215251 port 75 215251 unique_id port 215251 remote_ip 10.8.0.86 215252 username motamedi9772 215252 mac 215252 bytes_out 0 215252 bytes_in 0 215252 station_ip 83.122.60.181 215252 port 75 215252 unique_id port 215252 remote_ip 10.8.0.86 215257 username barzegar 215257 mac 215257 bytes_out 0 215257 bytes_in 0 215257 station_ip 5.120.158.69 215257 port 61 215257 unique_id port 215257 remote_ip 10.8.1.30 215259 username motamedi9772 215259 mac 215259 bytes_out 0 215259 bytes_in 0 215259 station_ip 83.122.60.181 215259 port 75 215259 unique_id port 215259 remote_ip 10.8.0.86 215262 username motamedi9772 215262 mac 215262 bytes_out 0 215262 bytes_in 0 215262 station_ip 83.122.60.181 215262 port 75 215262 unique_id port 215262 remote_ip 10.8.0.86 215263 username motamedi9772 215263 mac 215263 bytes_out 0 215263 bytes_in 0 215263 station_ip 83.122.60.181 215263 port 75 215263 unique_id port 215263 remote_ip 10.8.0.86 215267 username motamedi9772 215267 mac 215267 bytes_out 0 215267 bytes_in 0 215267 station_ip 83.122.60.181 215267 port 75 215267 unique_id port 215267 remote_ip 10.8.0.86 215268 username motamedi9772 215268 mac 215268 bytes_out 0 215268 bytes_in 0 215268 station_ip 83.122.60.181 215268 port 75 215268 unique_id port 215268 remote_ip 10.8.0.86 215277 username motamedi9772 215277 mac 215277 bytes_out 0 215277 bytes_in 0 215277 station_ip 83.122.60.181 215277 port 75 215277 unique_id port 215277 remote_ip 10.8.0.86 215278 username motamedi9772 215278 mac 215278 bytes_out 0 215278 bytes_in 0 215278 station_ip 83.122.60.181 215278 port 75 215278 unique_id port 215278 remote_ip 10.8.0.86 215290 username motamedi9772 215290 mac 215290 bytes_out 0 215290 bytes_in 0 215290 station_ip 83.122.60.181 215290 port 75 215290 unique_id port 215290 remote_ip 10.8.0.86 215292 username motamedi9772 215292 mac 215292 bytes_out 0 215292 bytes_in 0 215292 station_ip 83.122.60.181 215292 port 75 215292 unique_id port 215292 remote_ip 10.8.0.86 215293 username motamedi9772 215293 mac 215293 bytes_out 0 215293 bytes_in 0 215293 station_ip 83.122.60.181 215293 port 75 215293 unique_id port 215293 remote_ip 10.8.0.86 215298 username motamedi9772 215298 mac 215298 bytes_out 0 215298 bytes_in 0 215298 station_ip 83.122.60.181 215298 port 75 215298 unique_id port 215298 remote_ip 10.8.0.86 215299 username motamedi9772 215299 mac 215299 bytes_out 0 215299 bytes_in 0 215299 station_ip 83.122.60.181 215299 port 75 215299 unique_id port 215299 remote_ip 10.8.0.86 215304 username motamedi9772 215304 mac 215304 bytes_out 0 215304 bytes_in 0 215304 station_ip 83.122.60.181 215304 port 75 215304 unique_id port 215304 remote_ip 10.8.0.86 215309 username motamedi9772 215309 mac 215309 bytes_out 0 215309 bytes_in 0 215309 station_ip 83.122.60.181 215309 port 75 215309 unique_id port 215309 remote_ip 10.8.0.86 215315 username motamedi9772 215315 mac 215315 bytes_out 0 215315 bytes_in 0 215315 station_ip 83.122.60.181 215315 port 75 215315 unique_id port 215315 remote_ip 10.8.0.86 215316 username motamedi9772 215316 mac 215287 bytes_out 0 215287 bytes_in 0 215287 station_ip 83.122.60.181 215287 port 75 215287 unique_id port 215287 remote_ip 10.8.0.86 215291 username aminvpn 215291 unique_id port 215291 terminate_cause Lost-Carrier 215291 bytes_out 115 215291 bytes_in 184 215291 station_ip 37.129.5.210 215291 port 15728686 215291 nas_port_type Virtual 215291 remote_ip 5.5.5.228 215294 username motamedi9772 215294 mac 215294 bytes_out 0 215294 bytes_in 0 215294 station_ip 83.122.60.181 215294 port 75 215294 unique_id port 215294 remote_ip 10.8.0.86 215295 username motamedi9772 215295 mac 215295 bytes_out 0 215295 bytes_in 0 215295 station_ip 83.122.60.181 215295 port 75 215295 unique_id port 215295 remote_ip 10.8.0.86 215300 username motamedi9772 215300 mac 215300 bytes_out 0 215300 bytes_in 0 215300 station_ip 83.122.60.181 215300 port 75 215300 unique_id port 215300 remote_ip 10.8.0.86 215301 username motamedi9772 215301 mac 215301 bytes_out 0 215301 bytes_in 0 215301 station_ip 83.122.60.181 215301 port 75 215301 unique_id port 215301 remote_ip 10.8.0.86 215305 username motamedi9772 215305 mac 215305 bytes_out 0 215305 bytes_in 0 215305 station_ip 83.122.60.181 215305 port 75 215305 unique_id port 215305 remote_ip 10.8.0.86 215306 username motamedi9772 215306 mac 215306 bytes_out 0 215306 bytes_in 0 215306 station_ip 83.122.60.181 215306 port 75 215306 unique_id port 215306 remote_ip 10.8.0.86 215310 username motamedi9772 215310 mac 215310 bytes_out 0 215310 bytes_in 0 215310 station_ip 83.122.60.181 215310 port 75 215310 unique_id port 215310 remote_ip 10.8.0.86 215312 username motamedi9772 215312 mac 215312 bytes_out 0 215312 bytes_in 0 215312 station_ip 83.122.60.181 215312 port 75 215312 unique_id port 215312 remote_ip 10.8.0.86 215313 username motamedi9772 215313 mac 215313 bytes_out 0 215313 bytes_in 0 215313 station_ip 83.122.60.181 215313 port 75 215313 unique_id port 215313 remote_ip 10.8.0.86 215319 username motamedi9772 215319 mac 215319 bytes_out 0 215319 bytes_in 0 215319 station_ip 83.122.60.181 215319 port 75 215319 unique_id port 215319 remote_ip 10.8.0.86 215320 username motamedi9772 215320 mac 215320 bytes_out 0 215320 bytes_in 0 215320 station_ip 83.122.60.181 215320 port 75 215320 unique_id port 215320 remote_ip 10.8.0.86 215322 username motamedi9772 215322 mac 215322 bytes_out 0 215322 bytes_in 0 215322 station_ip 83.122.60.181 215322 port 75 215322 unique_id port 215322 remote_ip 10.8.0.86 215326 username motamedi9772 215326 mac 215326 bytes_out 0 215326 bytes_in 0 215326 station_ip 83.122.60.181 215326 port 75 215326 unique_id port 215326 remote_ip 10.8.0.86 215331 username motamedi9772 215331 mac 215331 bytes_out 0 215331 bytes_in 0 215331 station_ip 83.122.60.181 215331 port 75 215331 unique_id port 215331 remote_ip 10.8.0.86 215332 username rahim 215332 mac 215332 bytes_out 0 215332 bytes_in 0 215332 station_ip 5.119.210.170 215332 port 89 215332 unique_id port 215332 remote_ip 10.8.0.6 215334 username motamedi9772 215334 mac 215334 bytes_out 0 215334 bytes_in 0 215334 station_ip 83.122.60.181 215334 port 75 215334 unique_id port 215334 remote_ip 10.8.0.86 215339 username rahim 215339 mac 215339 bytes_out 0 215339 bytes_in 0 215339 station_ip 5.119.210.170 215339 port 61 215339 unique_id port 215339 remote_ip 10.8.1.146 215343 username barzegar 215343 mac 215343 bytes_out 0 215343 bytes_in 0 215343 station_ip 5.120.158.69 215307 username motamedi9772 215307 mac 215307 bytes_out 0 215307 bytes_in 0 215307 station_ip 83.122.60.181 215307 port 75 215307 unique_id port 215307 remote_ip 10.8.0.86 215308 username motamedi9772 215308 mac 215308 bytes_out 0 215308 bytes_in 0 215308 station_ip 83.122.60.181 215308 port 75 215308 unique_id port 215308 remote_ip 10.8.0.86 215311 username barzegar 215311 mac 215311 bytes_out 0 215311 bytes_in 0 215311 station_ip 5.120.158.69 215311 port 61 215311 unique_id port 215311 remote_ip 10.8.1.30 215314 username motamedi9772 215314 mac 215314 bytes_out 0 215314 bytes_in 0 215314 station_ip 83.122.60.181 215314 port 75 215314 unique_id port 215314 remote_ip 10.8.0.86 215321 username motamedi9772 215321 mac 215321 bytes_out 0 215321 bytes_in 0 215321 station_ip 83.122.60.181 215321 port 75 215321 unique_id port 215321 remote_ip 10.8.0.86 215323 username motamedi9772 215323 mac 215323 bytes_out 0 215323 bytes_in 0 215323 station_ip 83.122.60.181 215323 port 75 215323 unique_id port 215323 remote_ip 10.8.0.86 215327 username motamedi9772 215327 mac 215327 bytes_out 0 215327 bytes_in 0 215327 station_ip 83.122.60.181 215327 port 75 215327 unique_id port 215327 remote_ip 10.8.0.86 215328 username motamedi9772 215328 mac 215328 bytes_out 0 215328 bytes_in 0 215328 station_ip 83.122.60.181 215328 port 75 215328 unique_id port 215328 remote_ip 10.8.0.86 215335 username motamedi9772 215335 mac 215335 bytes_out 0 215335 bytes_in 0 215335 station_ip 83.122.60.181 215335 port 75 215335 unique_id port 215335 remote_ip 10.8.0.86 215337 username rahim 215337 mac 215337 bytes_out 0 215337 bytes_in 0 215337 station_ip 5.119.210.170 215337 port 75 215337 unique_id port 215337 remote_ip 10.8.0.6 215338 username motamedi9772 215338 mac 215338 bytes_out 0 215338 bytes_in 0 215338 station_ip 83.122.60.181 215338 port 75 215338 unique_id port 215338 remote_ip 10.8.0.86 215340 username motamedi9772 215340 mac 215340 bytes_out 0 215340 bytes_in 0 215340 station_ip 83.122.60.181 215340 port 75 215340 unique_id port 215340 remote_ip 10.8.0.86 215342 username motamedi9772 215342 mac 215342 bytes_out 0 215342 bytes_in 0 215342 station_ip 83.122.60.181 215342 port 89 215342 unique_id port 215342 remote_ip 10.8.0.86 215344 username motamedi9772 215344 mac 215344 bytes_out 0 215344 bytes_in 0 215344 station_ip 83.122.60.181 215344 port 75 215344 unique_id port 215344 remote_ip 10.8.0.86 215346 username rahim 215346 mac 215346 bytes_out 0 215346 bytes_in 0 215346 station_ip 5.119.210.170 215346 port 61 215346 unique_id port 215346 remote_ip 10.8.1.146 215351 username motamedi9772 215351 mac 215351 bytes_out 0 215351 bytes_in 0 215351 station_ip 83.122.60.181 215351 port 75 215351 unique_id port 215351 remote_ip 10.8.0.86 215352 username motamedi9772 215352 mac 215352 bytes_out 0 215352 bytes_in 0 215352 station_ip 83.122.60.181 215352 port 75 215352 unique_id port 215352 remote_ip 10.8.0.86 215355 username motamedi9772 215355 mac 215355 bytes_out 0 215355 bytes_in 0 215355 station_ip 83.122.60.181 215355 port 75 215355 unique_id port 215355 remote_ip 10.8.0.86 215356 username rahim 215356 mac 215356 bytes_out 0 215356 bytes_in 0 215356 station_ip 5.119.210.170 215356 port 61 215356 unique_id port 215356 remote_ip 10.8.1.146 215360 username rahim 215360 mac 215360 bytes_out 0 215360 bytes_in 0 215360 station_ip 5.119.210.170 215316 bytes_out 0 215316 bytes_in 0 215316 station_ip 83.122.60.181 215316 port 75 215316 unique_id port 215316 remote_ip 10.8.0.86 215317 username motamedi9772 215317 mac 215317 bytes_out 0 215317 bytes_in 0 215317 station_ip 83.122.60.181 215317 port 75 215317 unique_id port 215317 remote_ip 10.8.0.86 215318 username motamedi9772 215318 mac 215318 bytes_out 0 215318 bytes_in 0 215318 station_ip 83.122.60.181 215318 port 75 215318 unique_id port 215318 remote_ip 10.8.0.86 215324 username motamedi9772 215324 mac 215324 bytes_out 0 215324 bytes_in 0 215324 station_ip 83.122.60.181 215324 port 75 215324 unique_id port 215324 remote_ip 10.8.0.86 215325 username motamedi9772 215325 mac 215325 bytes_out 0 215325 bytes_in 0 215325 station_ip 83.122.60.181 215325 port 75 215325 unique_id port 215325 remote_ip 10.8.0.86 215329 username motamedi9772 215329 mac 215329 bytes_out 0 215329 bytes_in 0 215329 station_ip 83.122.60.181 215329 port 75 215329 unique_id port 215329 remote_ip 10.8.0.86 215330 username motamedi9772 215330 mac 215330 bytes_out 0 215330 bytes_in 0 215330 station_ip 83.122.60.181 215330 port 75 215330 unique_id port 215330 remote_ip 10.8.0.86 215333 username motamedi9772 215333 mac 215333 bytes_out 0 215333 bytes_in 0 215333 station_ip 83.122.60.181 215333 port 75 215333 unique_id port 215333 remote_ip 10.8.0.86 215336 username motamedi9772 215336 mac 215336 bytes_out 0 215336 bytes_in 0 215336 station_ip 83.122.60.181 215336 port 89 215336 unique_id port 215336 remote_ip 10.8.0.86 215341 username rahim 215341 mac 215341 bytes_out 0 215341 bytes_in 0 215341 station_ip 5.119.210.170 215341 port 93 215341 unique_id port 215341 remote_ip 10.8.0.6 215357 username motamedi9772 215357 mac 215357 bytes_out 0 215357 bytes_in 0 215357 station_ip 83.122.60.181 215357 port 75 215357 unique_id port 215357 remote_ip 10.8.0.86 215367 username motamedi9772 215367 mac 215367 bytes_out 0 215367 bytes_in 0 215367 station_ip 83.122.60.181 215367 port 75 215367 unique_id port 215367 remote_ip 10.8.0.86 215368 username motamedi9772 215368 mac 215368 bytes_out 0 215368 bytes_in 0 215368 station_ip 83.122.60.181 215368 port 75 215368 unique_id port 215368 remote_ip 10.8.0.86 215373 username motamedi9772 215373 mac 215373 bytes_out 6925 215373 bytes_in 13202 215373 station_ip 83.122.60.181 215373 port 75 215373 unique_id port 215373 remote_ip 10.8.0.86 215377 username motamedi9772 215377 mac 215377 bytes_out 0 215377 bytes_in 0 215377 station_ip 83.122.60.181 215377 port 75 215377 unique_id port 215377 remote_ip 10.8.0.86 215378 username motamedi9772 215378 mac 215378 bytes_out 0 215378 bytes_in 0 215378 station_ip 83.122.60.181 215378 port 75 215378 unique_id port 215378 remote_ip 10.8.0.86 215380 username motamedi9772 215380 mac 215380 bytes_out 0 215380 bytes_in 0 215380 station_ip 83.122.60.181 215380 port 75 215380 unique_id port 215380 remote_ip 10.8.0.86 215384 username motamedi9772 215384 mac 215384 bytes_out 0 215384 bytes_in 0 215384 station_ip 83.122.60.181 215384 port 75 215384 unique_id port 215384 remote_ip 10.8.0.86 215385 username motamedi9772 215385 mac 215385 bytes_out 0 215385 bytes_in 0 215385 station_ip 83.122.60.181 215385 port 75 215385 unique_id port 215385 remote_ip 10.8.0.86 215389 username motamedi9772 215389 mac 215389 bytes_out 0 215389 bytes_in 0 215389 station_ip 83.122.60.181 215389 port 75 215389 unique_id port 215343 port 75 215343 unique_id port 215343 remote_ip 10.8.0.34 215345 username rahim 215345 mac 215345 bytes_out 0 215345 bytes_in 0 215345 station_ip 5.119.210.170 215345 port 61 215345 unique_id port 215345 remote_ip 10.8.1.146 215347 username motamedi9772 215347 mac 215347 bytes_out 0 215347 bytes_in 0 215347 station_ip 83.122.60.181 215347 port 75 215347 unique_id port 215347 remote_ip 10.8.0.86 215348 username motamedi9772 215348 mac 215348 bytes_out 0 215348 bytes_in 0 215348 station_ip 83.122.60.181 215348 port 75 215348 unique_id port 215348 remote_ip 10.8.0.86 215349 username motamedi9772 215349 mac 215349 bytes_out 0 215349 bytes_in 0 215349 station_ip 83.122.60.181 215349 port 75 215349 unique_id port 215349 remote_ip 10.8.0.86 215350 username rahim 215350 mac 215350 bytes_out 0 215350 bytes_in 0 215350 station_ip 5.119.210.170 215350 port 61 215350 unique_id port 215350 remote_ip 10.8.1.146 215353 username rahim 215353 mac 215353 bytes_out 0 215353 bytes_in 0 215353 station_ip 5.119.210.170 215353 port 89 215353 unique_id port 215353 remote_ip 10.8.0.6 215354 username rahim 215354 mac 215354 bytes_out 0 215354 bytes_in 0 215354 station_ip 5.119.210.170 215354 port 89 215354 unique_id port 215354 remote_ip 10.8.0.6 215358 username motamedi9772 215358 mac 215358 bytes_out 0 215358 bytes_in 0 215358 station_ip 83.122.60.181 215358 port 75 215358 unique_id port 215358 remote_ip 10.8.0.86 215359 username motamedi9772 215359 mac 215359 bytes_out 0 215359 bytes_in 0 215359 station_ip 83.122.60.181 215359 port 75 215359 unique_id port 215359 remote_ip 10.8.0.86 215361 username motamedi9772 215361 mac 215361 bytes_out 0 215361 bytes_in 0 215361 station_ip 83.122.60.181 215361 port 75 215361 unique_id port 215361 remote_ip 10.8.0.86 215362 username motamedi9772 215362 mac 215362 bytes_out 0 215362 bytes_in 0 215362 station_ip 83.122.60.181 215362 port 75 215362 unique_id port 215362 remote_ip 10.8.0.86 215363 username motamedi9772 215363 mac 215363 bytes_out 0 215363 bytes_in 0 215363 station_ip 83.122.60.181 215363 port 75 215363 unique_id port 215363 remote_ip 10.8.0.86 215365 username motamedi9772 215365 mac 215365 bytes_out 0 215365 bytes_in 0 215365 station_ip 83.122.60.181 215365 port 75 215365 unique_id port 215365 remote_ip 10.8.0.86 215366 username motamedi9772 215366 mac 215366 bytes_out 0 215366 bytes_in 0 215366 station_ip 83.122.60.181 215366 port 75 215366 unique_id port 215366 remote_ip 10.8.0.86 215370 username motamedi9772 215370 mac 215370 bytes_out 0 215370 bytes_in 0 215370 station_ip 83.122.60.181 215370 port 75 215370 unique_id port 215370 remote_ip 10.8.0.86 215371 username motamedi9772 215371 mac 215371 bytes_out 0 215371 bytes_in 0 215371 station_ip 83.122.60.181 215371 port 75 215371 unique_id port 215371 remote_ip 10.8.0.86 215376 username motamedi9772 215376 mac 215376 bytes_out 0 215376 bytes_in 0 215376 station_ip 83.122.60.181 215376 port 75 215376 unique_id port 215376 remote_ip 10.8.0.86 215383 username motamedi9772 215383 mac 215383 bytes_out 0 215383 bytes_in 0 215383 station_ip 83.122.60.181 215383 port 75 215383 unique_id port 215383 remote_ip 10.8.0.86 215387 username motamedi9772 215387 mac 215387 bytes_out 0 215387 bytes_in 0 215387 station_ip 83.122.60.181 215387 port 75 215387 unique_id port 215387 remote_ip 10.8.0.86 215388 username motamedi9772 215388 mac 215360 port 89 215360 unique_id port 215360 remote_ip 10.8.0.6 215364 username rahim 215364 mac 215364 bytes_out 0 215364 bytes_in 0 215364 station_ip 5.119.210.170 215364 port 61 215364 unique_id port 215364 remote_ip 10.8.1.146 215369 username motamedi9772 215369 mac 215369 bytes_out 0 215369 bytes_in 0 215369 station_ip 83.122.60.181 215369 port 75 215369 unique_id port 215369 remote_ip 10.8.0.86 215372 username barzegar 215372 mac 215372 bytes_out 0 215372 bytes_in 0 215372 station_ip 5.120.158.69 215372 port 61 215372 unique_id port 215372 remote_ip 10.8.1.30 215374 username motamedi9772 215374 mac 215374 bytes_out 0 215374 bytes_in 0 215374 station_ip 83.122.60.181 215374 port 75 215374 unique_id port 215374 remote_ip 10.8.0.86 215375 username motamedi9772 215375 mac 215375 bytes_out 0 215375 bytes_in 0 215375 station_ip 83.122.60.181 215375 port 75 215375 unique_id port 215375 remote_ip 10.8.0.86 215379 username motamedi9772 215379 mac 215379 bytes_out 0 215379 bytes_in 0 215379 station_ip 83.122.60.181 215379 port 75 215379 unique_id port 215379 remote_ip 10.8.0.86 215381 username motamedi9772 215381 mac 215381 bytes_out 0 215381 bytes_in 0 215381 station_ip 83.122.60.181 215381 port 75 215381 unique_id port 215381 remote_ip 10.8.0.86 215382 username motamedi9772 215382 mac 215382 bytes_out 0 215382 bytes_in 0 215382 station_ip 83.122.60.181 215382 port 75 215382 unique_id port 215382 remote_ip 10.8.0.86 215386 username motamedi9772 215386 mac 215386 bytes_out 0 215386 bytes_in 0 215386 station_ip 83.122.60.181 215386 port 75 215386 unique_id port 215386 remote_ip 10.8.0.86 215390 username motamedi9772 215390 mac 215390 bytes_out 0 215390 bytes_in 0 215390 station_ip 83.122.60.181 215390 port 75 215390 unique_id port 215390 remote_ip 10.8.0.86 215391 username motamedi9772 215391 mac 215391 bytes_out 0 215391 bytes_in 0 215391 station_ip 83.122.60.181 215391 port 75 215391 unique_id port 215391 remote_ip 10.8.0.86 215393 username motamedi9772 215393 mac 215393 bytes_out 0 215393 bytes_in 0 215393 station_ip 83.122.60.181 215393 port 75 215393 unique_id port 215393 remote_ip 10.8.0.86 215397 username motamedi9772 215397 mac 215397 bytes_out 0 215397 bytes_in 0 215397 station_ip 83.122.60.181 215397 port 75 215397 unique_id port 215397 remote_ip 10.8.0.86 215398 username motamedi9772 215398 mac 215398 bytes_out 0 215398 bytes_in 0 215398 station_ip 83.122.60.181 215398 port 75 215398 unique_id port 215398 remote_ip 10.8.0.86 215402 username motamedi9772 215402 mac 215402 bytes_out 0 215402 bytes_in 0 215402 station_ip 83.122.60.181 215402 port 75 215402 unique_id port 215402 remote_ip 10.8.0.86 215403 username motamedi9772 215403 mac 215403 bytes_out 0 215403 bytes_in 0 215403 station_ip 83.122.60.181 215403 port 75 215403 unique_id port 215403 remote_ip 10.8.0.86 215406 username motamedi9772 215406 mac 215406 bytes_out 0 215406 bytes_in 0 215406 station_ip 83.122.60.181 215406 port 75 215406 unique_id port 215406 remote_ip 10.8.0.86 215408 username motamedi9772 215408 mac 215408 bytes_out 0 215408 bytes_in 0 215408 station_ip 83.122.60.181 215408 port 75 215408 unique_id port 215408 remote_ip 10.8.0.86 215409 username motamedi9772 215409 mac 215409 bytes_out 0 215409 bytes_in 0 215409 station_ip 83.122.60.181 215409 port 75 215409 unique_id port 215409 remote_ip 10.8.0.86 215414 username motamedi9772 215414 mac 215388 bytes_out 0 215388 bytes_in 0 215388 station_ip 83.122.60.181 215388 port 75 215388 unique_id port 215388 remote_ip 10.8.0.86 215392 username motamedi9772 215392 mac 215392 bytes_out 0 215392 bytes_in 0 215392 station_ip 83.122.60.181 215392 port 75 215392 unique_id port 215392 remote_ip 10.8.0.86 215394 username motamedi9772 215394 mac 215394 bytes_out 0 215394 bytes_in 0 215394 station_ip 83.122.60.181 215394 port 75 215394 unique_id port 215394 remote_ip 10.8.0.86 215395 username motamedi9772 215395 mac 215395 bytes_out 0 215395 bytes_in 0 215395 station_ip 83.122.60.181 215395 port 75 215395 unique_id port 215395 remote_ip 10.8.0.86 215399 username mohammadjavad 215399 kill_reason Another user logged on this global unique id 215399 mac 215399 bytes_out 0 215399 bytes_in 0 215399 station_ip 37.129.113.95 215399 port 88 215399 unique_id port 215399 remote_ip 10.8.0.138 215400 username motamedi9772 215400 mac 215400 bytes_out 0 215400 bytes_in 0 215400 station_ip 83.122.60.181 215400 port 75 215400 unique_id port 215400 remote_ip 10.8.0.86 215404 username motamedi9772 215404 mac 215404 bytes_out 0 215404 bytes_in 0 215404 station_ip 83.122.60.181 215404 port 89 215404 unique_id port 215404 remote_ip 10.8.0.86 215410 username motamedi9772 215410 mac 215410 bytes_out 0 215410 bytes_in 0 215410 station_ip 83.122.60.181 215410 port 75 215410 unique_id port 215410 remote_ip 10.8.0.86 215412 username motamedi9772 215412 mac 215412 bytes_out 0 215412 bytes_in 0 215412 station_ip 83.122.60.181 215412 port 75 215412 unique_id port 215412 remote_ip 10.8.0.86 215419 username motamedi9772 215419 mac 215419 bytes_out 0 215419 bytes_in 0 215419 station_ip 83.122.60.181 215419 port 75 215419 unique_id port 215419 remote_ip 10.8.0.86 215421 username motamedi9772 215421 mac 215421 bytes_out 0 215421 bytes_in 0 215421 station_ip 83.122.60.181 215421 port 75 215421 unique_id port 215421 remote_ip 10.8.0.86 215426 username motamedi9772 215426 mac 215426 bytes_out 0 215426 bytes_in 0 215426 station_ip 83.122.60.181 215426 port 75 215426 unique_id port 215426 remote_ip 10.8.0.86 215430 username barzegar 215430 mac 215430 bytes_out 0 215430 bytes_in 0 215430 station_ip 5.120.158.69 215430 port 61 215430 unique_id port 215430 remote_ip 10.8.1.30 215438 username motamedi9772 215438 mac 215438 bytes_out 0 215438 bytes_in 0 215438 station_ip 83.122.60.181 215438 port 89 215438 unique_id port 215438 remote_ip 10.8.0.86 215439 username motamedi9772 215439 mac 215439 bytes_out 0 215439 bytes_in 0 215439 station_ip 83.122.60.181 215439 port 89 215439 unique_id port 215439 remote_ip 10.8.0.86 215443 username motamedi9772 215443 mac 215443 bytes_out 0 215443 bytes_in 0 215443 station_ip 83.122.60.181 215443 port 89 215443 unique_id port 215443 remote_ip 10.8.0.86 215447 username motamedi9772 215447 mac 215447 bytes_out 0 215447 bytes_in 0 215447 station_ip 83.122.60.181 215447 port 89 215447 unique_id port 215447 remote_ip 10.8.0.86 215450 username motamedi9772 215450 mac 215450 bytes_out 0 215450 bytes_in 0 215450 station_ip 83.122.60.181 215450 port 89 215450 unique_id port 215450 remote_ip 10.8.0.86 215468 username motamedi9772 215468 mac 215468 bytes_out 0 215468 bytes_in 0 215468 station_ip 83.122.60.181 215468 port 93 215468 unique_id port 215468 remote_ip 10.8.0.86 215472 username motamedi9772 215472 mac 215472 bytes_out 0 215472 bytes_in 0 215472 station_ip 83.122.60.181 215389 remote_ip 10.8.0.86 215396 username motamedi9772 215396 mac 215396 bytes_out 0 215396 bytes_in 0 215396 station_ip 83.122.60.181 215396 port 75 215396 unique_id port 215396 remote_ip 10.8.0.86 215401 username barzegar 215401 mac 215401 bytes_out 0 215401 bytes_in 0 215401 station_ip 5.120.158.69 215401 port 89 215401 unique_id port 215401 remote_ip 10.8.0.34 215405 username motamedi9772 215405 mac 215405 bytes_out 0 215405 bytes_in 0 215405 station_ip 83.122.60.181 215405 port 75 215405 unique_id port 215405 remote_ip 10.8.0.86 215407 username motamedi9772 215407 mac 215407 bytes_out 0 215407 bytes_in 0 215407 station_ip 83.122.60.181 215407 port 75 215407 unique_id port 215407 remote_ip 10.8.0.86 215411 username khademi 215411 mac 215411 bytes_out 0 215411 bytes_in 0 215411 station_ip 83.122.154.159 215411 port 89 215411 unique_id port 215411 remote_ip 10.8.0.26 215413 username motamedi9772 215413 mac 215413 bytes_out 0 215413 bytes_in 0 215413 station_ip 83.122.60.181 215413 port 75 215413 unique_id port 215413 remote_ip 10.8.0.86 215416 username motamedi9772 215416 mac 215416 bytes_out 0 215416 bytes_in 0 215416 station_ip 83.122.60.181 215416 port 75 215416 unique_id port 215416 remote_ip 10.8.0.86 215422 username motamedi9772 215422 mac 215422 bytes_out 0 215422 bytes_in 0 215422 station_ip 83.122.60.181 215422 port 75 215422 unique_id port 215422 remote_ip 10.8.0.86 215423 username motamedi9772 215423 mac 215423 bytes_out 0 215423 bytes_in 0 215423 station_ip 83.122.60.181 215423 port 75 215423 unique_id port 215423 remote_ip 10.8.0.86 215427 username motamedi9772 215427 mac 215427 bytes_out 0 215427 bytes_in 0 215427 station_ip 83.122.60.181 215427 port 75 215427 unique_id port 215427 remote_ip 10.8.0.86 215428 username motamedi9772 215428 mac 215428 bytes_out 0 215428 bytes_in 0 215428 station_ip 83.122.60.181 215428 port 75 215428 unique_id port 215428 remote_ip 10.8.0.86 215429 username motamedi9772 215429 mac 215429 bytes_out 0 215429 bytes_in 0 215429 station_ip 83.122.60.181 215429 port 75 215429 unique_id port 215429 remote_ip 10.8.0.86 215431 username motamedi9772 215431 mac 215431 bytes_out 0 215431 bytes_in 0 215431 station_ip 83.122.60.181 215431 port 75 215431 unique_id port 215431 remote_ip 10.8.0.86 215432 username motamedi9772 215432 mac 215432 bytes_out 0 215432 bytes_in 0 215432 station_ip 83.122.60.181 215432 port 75 215432 unique_id port 215432 remote_ip 10.8.0.86 215434 username motamedi9772 215434 mac 215434 bytes_out 0 215434 bytes_in 0 215434 station_ip 83.122.60.181 215434 port 75 215434 unique_id port 215434 remote_ip 10.8.0.86 215440 username motamedi9772 215440 mac 215440 bytes_out 0 215440 bytes_in 0 215440 station_ip 83.122.60.181 215440 port 89 215440 unique_id port 215440 remote_ip 10.8.0.86 215444 username motamedi9772 215444 mac 215444 bytes_out 0 215444 bytes_in 0 215444 station_ip 83.122.60.181 215444 port 89 215444 unique_id port 215444 remote_ip 10.8.0.86 215445 username motamedi9772 215445 mac 215445 bytes_out 0 215445 bytes_in 0 215445 station_ip 83.122.60.181 215445 port 89 215445 unique_id port 215445 remote_ip 10.8.0.86 215451 username motamedi9772 215451 mac 215451 bytes_out 0 215451 bytes_in 0 215451 station_ip 83.122.60.181 215451 port 89 215451 unique_id port 215451 remote_ip 10.8.0.86 215452 username motamedi9772 215452 mac 215452 bytes_out 0 215452 bytes_in 0 215414 bytes_out 0 215414 bytes_in 0 215414 station_ip 83.122.60.181 215414 port 75 215414 unique_id port 215414 remote_ip 10.8.0.86 215415 username khademi 215415 mac 215415 bytes_out 2005 215415 bytes_in 10974 215415 station_ip 83.122.154.159 215415 port 93 215415 unique_id port 215415 remote_ip 10.8.0.26 215417 username motamedi9772 215417 mac 215417 bytes_out 0 215417 bytes_in 0 215417 station_ip 83.122.60.181 215417 port 75 215417 unique_id port 215417 remote_ip 10.8.0.86 215418 username motamedi9772 215418 mac 215418 bytes_out 0 215418 bytes_in 0 215418 station_ip 83.122.60.181 215418 port 75 215418 unique_id port 215418 remote_ip 10.8.0.86 215420 username motamedi9772 215420 mac 215420 bytes_out 0 215420 bytes_in 0 215420 station_ip 83.122.60.181 215420 port 75 215420 unique_id port 215420 remote_ip 10.8.0.86 215424 username motamedi9772 215424 mac 215424 bytes_out 0 215424 bytes_in 0 215424 station_ip 83.122.60.181 215424 port 75 215424 unique_id port 215424 remote_ip 10.8.0.86 215425 username motamedi9772 215425 mac 215425 bytes_out 0 215425 bytes_in 0 215425 station_ip 83.122.60.181 215425 port 75 215425 unique_id port 215425 remote_ip 10.8.0.86 215433 username motamedi9772 215433 mac 215433 bytes_out 0 215433 bytes_in 0 215433 station_ip 83.122.60.181 215433 port 75 215433 unique_id port 215433 remote_ip 10.8.0.86 215435 username motamedi9772 215435 mac 215435 bytes_out 0 215435 bytes_in 0 215435 station_ip 83.122.60.181 215435 port 75 215435 unique_id port 215435 remote_ip 10.8.0.86 215436 username motamedi9772 215436 mac 215436 bytes_out 0 215436 bytes_in 0 215436 station_ip 83.122.60.181 215436 port 89 215436 unique_id port 215436 remote_ip 10.8.0.86 215437 username motamedi9772 215437 mac 215437 bytes_out 0 215437 bytes_in 0 215437 station_ip 83.122.60.181 215437 port 89 215437 unique_id port 215437 remote_ip 10.8.0.86 215441 username motamedi9772 215441 mac 215441 bytes_out 0 215441 bytes_in 0 215441 station_ip 83.122.60.181 215441 port 89 215441 unique_id port 215441 remote_ip 10.8.0.86 215442 username motamedi9772 215442 mac 215442 bytes_out 0 215442 bytes_in 0 215442 station_ip 83.122.60.181 215442 port 89 215442 unique_id port 215442 remote_ip 10.8.0.86 215446 username motamedi9772 215446 mac 215446 bytes_out 0 215446 bytes_in 0 215446 station_ip 83.122.60.181 215446 port 89 215446 unique_id port 215446 remote_ip 10.8.0.86 215448 username motamedi9772 215448 mac 215448 bytes_out 0 215448 bytes_in 0 215448 station_ip 83.122.60.181 215448 port 89 215448 unique_id port 215448 remote_ip 10.8.0.86 215449 username motamedi9772 215449 mac 215449 bytes_out 0 215449 bytes_in 0 215449 station_ip 83.122.60.181 215449 port 89 215449 unique_id port 215449 remote_ip 10.8.0.86 215453 username motamedi9772 215453 mac 215453 bytes_out 0 215453 bytes_in 0 215453 station_ip 83.122.60.181 215453 port 89 215453 unique_id port 215453 remote_ip 10.8.0.86 215454 username motamedi9772 215454 mac 215454 bytes_out 0 215454 bytes_in 0 215454 station_ip 83.122.60.181 215454 port 89 215454 unique_id port 215454 remote_ip 10.8.0.86 215455 username motamedi9772 215455 mac 215455 bytes_out 0 215455 bytes_in 0 215455 station_ip 83.122.60.181 215455 port 93 215455 unique_id port 215455 remote_ip 10.8.0.86 215456 username motamedi9772 215456 mac 215456 bytes_out 0 215456 bytes_in 0 215456 station_ip 83.122.60.181 215456 port 93 215456 unique_id port 215452 station_ip 83.122.60.181 215452 port 89 215452 unique_id port 215452 remote_ip 10.8.0.86 215458 username barzegar 215458 mac 215458 bytes_out 0 215458 bytes_in 0 215458 station_ip 5.120.158.69 215458 port 61 215458 unique_id port 215458 remote_ip 10.8.1.30 215460 username motamedi9772 215460 mac 215460 bytes_out 0 215460 bytes_in 0 215460 station_ip 83.122.60.181 215460 port 93 215460 unique_id port 215460 remote_ip 10.8.0.86 215462 username aminvpn 215462 unique_id port 215462 terminate_cause Lost-Carrier 215462 bytes_out 255337 215462 bytes_in 1311702 215462 station_ip 37.129.5.210 215462 port 15728687 215462 nas_port_type Virtual 215462 remote_ip 5.5.5.228 215463 username motamedi9772 215463 mac 215463 bytes_out 0 215463 bytes_in 0 215463 station_ip 83.122.60.181 215463 port 93 215463 unique_id port 215463 remote_ip 10.8.0.86 215464 username motamedi9772 215464 mac 215464 bytes_out 0 215464 bytes_in 0 215464 station_ip 83.122.60.181 215464 port 93 215464 unique_id port 215464 remote_ip 10.8.0.86 215465 username motamedi9772 215465 mac 215465 bytes_out 0 215465 bytes_in 0 215465 station_ip 83.122.60.181 215465 port 93 215465 unique_id port 215465 remote_ip 10.8.0.86 215469 username motamedi9772 215469 mac 215469 bytes_out 0 215469 bytes_in 0 215469 station_ip 83.122.60.181 215469 port 93 215469 unique_id port 215469 remote_ip 10.8.0.86 215470 username motamedi9772 215470 mac 215470 bytes_out 0 215470 bytes_in 0 215470 station_ip 83.122.60.181 215470 port 93 215470 unique_id port 215470 remote_ip 10.8.0.86 215471 username barzegar 215471 mac 215471 bytes_out 0 215471 bytes_in 0 215471 station_ip 5.120.158.69 215471 port 95 215471 unique_id port 215471 remote_ip 10.8.0.34 215473 username barzegar 215473 mac 215473 bytes_out 0 215473 bytes_in 0 215473 station_ip 5.120.158.69 215473 port 95 215473 unique_id port 215473 remote_ip 10.8.0.34 215475 username motamedi9772 215475 mac 215475 bytes_out 0 215475 bytes_in 0 215475 station_ip 83.122.60.181 215475 port 93 215475 unique_id port 215475 remote_ip 10.8.0.86 215476 username motamedi9772 215476 mac 215476 bytes_out 0 215476 bytes_in 0 215476 station_ip 83.122.60.181 215476 port 93 215476 unique_id port 215476 remote_ip 10.8.0.86 215478 username motamedi9772 215478 mac 215478 bytes_out 0 215478 bytes_in 0 215478 station_ip 83.122.60.181 215478 port 93 215478 unique_id port 215478 remote_ip 10.8.0.86 215482 username motamedi9772 215482 mac 215482 bytes_out 0 215482 bytes_in 0 215482 station_ip 83.122.60.181 215482 port 93 215482 unique_id port 215482 remote_ip 10.8.0.86 215483 username motamedi9772 215483 mac 215483 bytes_out 0 215483 bytes_in 0 215483 station_ip 83.122.60.181 215483 port 93 215483 unique_id port 215483 remote_ip 10.8.0.86 215488 username motamedi9772 215488 mac 215488 bytes_out 0 215488 bytes_in 0 215488 station_ip 83.122.60.181 215488 port 93 215488 unique_id port 215488 remote_ip 10.8.0.86 215493 username motamedi9772 215493 mac 215493 bytes_out 0 215493 bytes_in 0 215493 station_ip 83.122.60.181 215493 port 93 215493 unique_id port 215493 remote_ip 10.8.0.86 215497 username motamedi9772 215497 mac 215497 bytes_out 0 215497 bytes_in 0 215497 station_ip 83.122.60.181 215497 port 93 215497 unique_id port 215497 remote_ip 10.8.0.86 215500 username motamedi9772 215500 mac 215500 bytes_out 0 215500 bytes_in 0 215500 station_ip 83.122.60.181 215500 port 88 215500 unique_id port 215456 remote_ip 10.8.0.86 215457 username motamedi9772 215457 mac 215457 bytes_out 0 215457 bytes_in 0 215457 station_ip 83.122.60.181 215457 port 93 215457 unique_id port 215457 remote_ip 10.8.0.86 215459 username motamedi9772 215459 mac 215459 bytes_out 0 215459 bytes_in 0 215459 station_ip 83.122.60.181 215459 port 93 215459 unique_id port 215459 remote_ip 10.8.0.86 215461 username motamedi9772 215461 mac 215461 bytes_out 0 215461 bytes_in 0 215461 station_ip 83.122.60.181 215461 port 93 215461 unique_id port 215461 remote_ip 10.8.0.86 215466 username motamedi9772 215466 mac 215466 bytes_out 0 215466 bytes_in 0 215466 station_ip 83.122.60.181 215466 port 93 215466 unique_id port 215466 remote_ip 10.8.0.86 215467 username motamedi9772 215467 mac 215467 bytes_out 0 215467 bytes_in 0 215467 station_ip 83.122.60.181 215467 port 93 215467 unique_id port 215467 remote_ip 10.8.0.86 215477 username motamedi9772 215477 mac 215477 bytes_out 0 215477 bytes_in 0 215477 station_ip 83.122.60.181 215477 port 93 215477 unique_id port 215477 remote_ip 10.8.0.86 215479 username motamedi9772 215479 mac 215479 bytes_out 0 215479 bytes_in 0 215479 station_ip 83.122.60.181 215479 port 93 215479 unique_id port 215479 remote_ip 10.8.0.86 215484 username motamedi9772 215484 mac 215484 bytes_out 0 215484 bytes_in 0 215484 station_ip 83.122.60.181 215484 port 93 215484 unique_id port 215484 remote_ip 10.8.0.86 215486 username motamedi9772 215486 mac 215486 bytes_out 0 215486 bytes_in 0 215486 station_ip 83.122.60.181 215486 port 93 215486 unique_id port 215486 remote_ip 10.8.0.86 215489 username motamedi9772 215489 mac 215489 bytes_out 0 215489 bytes_in 0 215489 station_ip 83.122.60.181 215489 port 93 215489 unique_id port 215489 remote_ip 10.8.0.86 215490 username motamedi9772 215490 mac 215490 bytes_out 0 215490 bytes_in 0 215490 station_ip 83.122.60.181 215490 port 93 215490 unique_id port 215490 remote_ip 10.8.0.86 215494 username motamedi9772 215494 mac 215494 bytes_out 0 215494 bytes_in 0 215494 station_ip 83.122.60.181 215494 port 93 215494 unique_id port 215494 remote_ip 10.8.0.86 215501 username motamedi9772 215501 mac 215501 bytes_out 0 215501 bytes_in 0 215501 station_ip 83.122.60.181 215501 port 88 215501 unique_id port 215501 remote_ip 10.8.0.86 215503 username motamedi9772 215503 mac 215503 bytes_out 0 215503 bytes_in 0 215503 station_ip 83.122.60.181 215503 port 88 215503 unique_id port 215503 remote_ip 10.8.0.86 215507 username motamedi9772 215507 mac 215507 bytes_out 0 215507 bytes_in 0 215507 station_ip 83.122.60.181 215507 port 93 215507 unique_id port 215507 remote_ip 10.8.0.86 215511 username motamedi9772 215511 mac 215511 bytes_out 0 215511 bytes_in 0 215511 station_ip 83.122.60.181 215511 port 93 215511 unique_id port 215511 remote_ip 10.8.0.86 215512 username motamedi9772 215512 mac 215512 bytes_out 0 215512 bytes_in 0 215512 station_ip 83.122.60.181 215512 port 93 215512 unique_id port 215512 remote_ip 10.8.0.86 215515 username motamedi9772 215515 mac 215515 bytes_out 0 215515 bytes_in 0 215515 station_ip 83.122.60.181 215515 port 93 215515 unique_id port 215515 remote_ip 10.8.0.86 215516 username motamedi9772 215516 mac 215516 bytes_out 0 215516 bytes_in 0 215516 station_ip 83.122.60.181 215516 port 93 215516 unique_id port 215516 remote_ip 10.8.0.86 215518 username motamedi9772 215518 mac 215518 bytes_out 0 215518 bytes_in 0 215472 port 93 215472 unique_id port 215472 remote_ip 10.8.0.86 215474 username motamedi9772 215474 mac 215474 bytes_out 0 215474 bytes_in 0 215474 station_ip 83.122.60.181 215474 port 93 215474 unique_id port 215474 remote_ip 10.8.0.86 215480 username motamedi9772 215480 mac 215480 bytes_out 0 215480 bytes_in 0 215480 station_ip 83.122.60.181 215480 port 93 215480 unique_id port 215480 remote_ip 10.8.0.86 215481 username motamedi9772 215481 mac 215481 bytes_out 0 215481 bytes_in 0 215481 station_ip 83.122.60.181 215481 port 93 215481 unique_id port 215481 remote_ip 10.8.0.86 215485 username motamedi9772 215485 mac 215485 bytes_out 0 215485 bytes_in 0 215485 station_ip 83.122.60.181 215485 port 93 215485 unique_id port 215485 remote_ip 10.8.0.86 215487 username motamedi9772 215487 mac 215487 bytes_out 0 215487 bytes_in 0 215487 station_ip 83.122.60.181 215487 port 93 215487 unique_id port 215487 remote_ip 10.8.0.86 215491 username motamedi9772 215491 mac 215491 bytes_out 0 215491 bytes_in 0 215491 station_ip 83.122.60.181 215491 port 93 215491 unique_id port 215491 remote_ip 10.8.0.86 215492 username motamedi9772 215492 mac 215492 bytes_out 0 215492 bytes_in 0 215492 station_ip 83.122.60.181 215492 port 93 215492 unique_id port 215492 remote_ip 10.8.0.86 215495 username motamedi9772 215495 mac 215495 bytes_out 0 215495 bytes_in 0 215495 station_ip 83.122.60.181 215495 port 93 215495 unique_id port 215495 remote_ip 10.8.0.86 215496 username motamedi9772 215496 mac 215496 bytes_out 0 215496 bytes_in 0 215496 station_ip 83.122.60.181 215496 port 93 215496 unique_id port 215496 remote_ip 10.8.0.86 215498 username mohammadjavad 215498 mac 215498 bytes_out 0 215498 bytes_in 0 215498 station_ip 37.129.113.95 215498 port 88 215498 unique_id port 215499 username motamedi9772 215499 mac 215499 bytes_out 0 215499 bytes_in 0 215499 station_ip 83.122.60.181 215499 port 88 215499 unique_id port 215499 remote_ip 10.8.0.86 215504 username motamedi9772 215504 mac 215504 bytes_out 0 215504 bytes_in 0 215504 station_ip 83.122.60.181 215504 port 88 215504 unique_id port 215504 remote_ip 10.8.0.86 215505 username dortaj3792 215505 mac 215505 bytes_out 455020 215505 bytes_in 524427 215505 station_ip 5.119.175.220 215505 port 94 215505 unique_id port 215505 remote_ip 10.8.0.10 215506 username barzegar 215506 mac 215506 bytes_out 0 215506 bytes_in 0 215506 station_ip 5.120.158.69 215506 port 61 215506 unique_id port 215506 remote_ip 10.8.1.30 215508 username motamedi9772 215508 mac 215508 bytes_out 0 215508 bytes_in 0 215508 station_ip 83.122.60.181 215508 port 93 215508 unique_id port 215508 remote_ip 10.8.0.86 215513 username motamedi9772 215513 mac 215513 bytes_out 0 215513 bytes_in 0 215513 station_ip 83.122.60.181 215513 port 93 215513 unique_id port 215513 remote_ip 10.8.0.86 215517 username fezealinaghi 215517 mac 215517 bytes_out 1543931 215517 bytes_in 11380618 215517 station_ip 37.129.29.98 215517 port 75 215517 unique_id port 215517 remote_ip 10.8.0.14 215521 username motamedi9772 215521 mac 215521 bytes_out 0 215521 bytes_in 0 215521 station_ip 83.122.60.181 215521 port 75 215521 unique_id port 215521 remote_ip 10.8.0.86 215522 username motamedi9772 215522 mac 215522 bytes_out 0 215522 bytes_in 0 215522 station_ip 83.122.60.181 215522 port 75 215522 unique_id port 215522 remote_ip 10.8.0.86 215523 username motamedi9772 215523 mac 215523 bytes_out 0 215500 remote_ip 10.8.0.86 215502 username motamedi9772 215502 mac 215502 bytes_out 0 215502 bytes_in 0 215502 station_ip 83.122.60.181 215502 port 88 215502 unique_id port 215502 remote_ip 10.8.0.86 215509 username motamedi9772 215509 mac 215509 bytes_out 0 215509 bytes_in 0 215509 station_ip 83.122.60.181 215509 port 93 215509 unique_id port 215509 remote_ip 10.8.0.86 215510 username motamedi9772 215510 mac 215510 bytes_out 0 215510 bytes_in 0 215510 station_ip 83.122.60.181 215510 port 93 215510 unique_id port 215510 remote_ip 10.8.0.86 215514 username motamedi9772 215514 mac 215514 bytes_out 0 215514 bytes_in 0 215514 station_ip 83.122.60.181 215514 port 93 215514 unique_id port 215514 remote_ip 10.8.0.86 215519 username motamedi9772 215519 mac 215519 bytes_out 0 215519 bytes_in 0 215519 station_ip 83.122.60.181 215519 port 75 215519 unique_id port 215519 remote_ip 10.8.0.86 215530 username motamedi9772 215530 mac 215530 bytes_out 0 215530 bytes_in 0 215530 station_ip 83.122.60.181 215530 port 75 215530 unique_id port 215530 remote_ip 10.8.0.86 215534 username motamedi9772 215534 mac 215534 bytes_out 0 215534 bytes_in 0 215534 station_ip 83.122.60.181 215534 port 61 215534 unique_id port 215534 remote_ip 10.8.1.182 215535 username barzegar 215535 mac 215535 bytes_out 0 215535 bytes_in 0 215535 station_ip 5.120.158.69 215535 port 88 215535 unique_id port 215535 remote_ip 10.8.0.34 215537 username mohammadjavad 215537 mac 215537 bytes_out 11556 215537 bytes_in 25504 215537 station_ip 37.129.18.11 215537 port 75 215537 unique_id port 215537 remote_ip 10.8.0.138 215539 username motamedi9772 215539 mac 215539 bytes_out 0 215539 bytes_in 0 215539 station_ip 83.122.60.181 215539 port 61 215539 unique_id port 215539 remote_ip 10.8.1.182 215540 username motamedi9772 215540 mac 215540 bytes_out 0 215540 bytes_in 0 215540 station_ip 83.122.60.181 215540 port 75 215540 unique_id port 215540 remote_ip 10.8.0.86 215543 username hamid1 215543 mac 215543 bytes_out 0 215543 bytes_in 0 215543 station_ip 5.119.169.139 215543 port 93 215543 unique_id port 215543 remote_ip 10.8.0.194 215544 username motamedi9772 215544 mac 215544 bytes_out 6731 215544 bytes_in 12936 215544 station_ip 83.122.60.181 215544 port 75 215544 unique_id port 215544 remote_ip 10.8.0.86 215545 username motamedi9772 215545 mac 215545 bytes_out 0 215545 bytes_in 0 215545 station_ip 83.122.60.181 215545 port 75 215545 unique_id port 215545 remote_ip 10.8.0.86 215546 username motamedi9772 215546 mac 215546 bytes_out 0 215546 bytes_in 0 215546 station_ip 83.122.60.181 215546 port 75 215546 unique_id port 215546 remote_ip 10.8.0.86 215554 username motamedi9772 215554 mac 215554 bytes_out 0 215554 bytes_in 0 215554 station_ip 83.122.60.181 215554 port 93 215554 unique_id port 215554 remote_ip 10.8.0.86 215558 username barzegar 215558 mac 215558 bytes_out 0 215558 bytes_in 0 215558 station_ip 5.120.158.69 215558 port 61 215558 unique_id port 215558 remote_ip 10.8.1.30 215563 username motamedi9772 215563 mac 215563 bytes_out 0 215563 bytes_in 0 215563 station_ip 83.122.60.181 215563 port 93 215563 unique_id port 215563 remote_ip 10.8.0.86 215565 username dortaj3792 215565 mac 215565 bytes_out 0 215565 bytes_in 0 215565 station_ip 5.119.206.214 215565 port 75 215565 unique_id port 215565 remote_ip 10.8.0.10 215567 username motamedi9772 215567 mac 215567 bytes_out 0 215567 bytes_in 0 215518 station_ip 83.122.60.181 215518 port 93 215518 unique_id port 215518 remote_ip 10.8.0.86 215520 username motamedi9772 215520 mac 215520 bytes_out 0 215520 bytes_in 0 215520 station_ip 83.122.60.181 215520 port 75 215520 unique_id port 215520 remote_ip 10.8.0.86 215525 username dortaj3792 215525 mac 215525 bytes_out 0 215525 bytes_in 0 215525 station_ip 5.119.175.220 215525 port 88 215525 unique_id port 215525 remote_ip 10.8.0.10 215531 username motamedi9772 215531 mac 215531 bytes_out 0 215531 bytes_in 0 215531 station_ip 83.122.60.181 215531 port 75 215531 unique_id port 215531 remote_ip 10.8.0.86 215533 username mohammadjavad 215533 mac 215533 bytes_out 3356042 215533 bytes_in 14807444 215533 station_ip 37.129.18.11 215533 port 88 215533 unique_id port 215533 remote_ip 10.8.0.138 215536 username dortaj3792 215536 mac 215536 bytes_out 182076 215536 bytes_in 66938 215536 station_ip 5.119.206.214 215536 port 94 215536 unique_id port 215536 remote_ip 10.8.0.10 215541 username motamedi9772 215541 mac 215541 bytes_out 0 215541 bytes_in 0 215541 station_ip 83.122.60.181 215541 port 75 215541 unique_id port 215541 remote_ip 10.8.0.86 215542 username motamedi9772 215542 mac 215542 bytes_out 0 215542 bytes_in 0 215542 station_ip 83.122.60.181 215542 port 75 215542 unique_id port 215542 remote_ip 10.8.0.86 215547 username motamedi9772 215547 mac 215547 bytes_out 0 215547 bytes_in 0 215547 station_ip 83.122.60.181 215547 port 75 215547 unique_id port 215547 remote_ip 10.8.0.86 215549 username motamedi9772 215549 mac 215549 bytes_out 0 215549 bytes_in 0 215549 station_ip 83.122.60.181 215549 port 93 215549 unique_id port 215549 remote_ip 10.8.0.86 215551 username motamedi9772 215551 mac 215551 bytes_out 0 215551 bytes_in 0 215551 station_ip 83.122.60.181 215551 port 93 215551 unique_id port 215551 remote_ip 10.8.0.86 215555 username motamedi9772 215555 mac 215555 bytes_out 0 215555 bytes_in 0 215555 station_ip 83.122.60.181 215555 port 93 215555 unique_id port 215555 remote_ip 10.8.0.86 215556 username motamedi9772 215556 mac 215556 bytes_out 0 215556 bytes_in 0 215556 station_ip 83.122.60.181 215556 port 93 215556 unique_id port 215556 remote_ip 10.8.0.86 215557 username motamedi9772 215557 mac 215557 bytes_out 0 215557 bytes_in 0 215557 station_ip 83.122.60.181 215557 port 93 215557 unique_id port 215557 remote_ip 10.8.0.86 215559 username motamedi9772 215559 mac 215559 bytes_out 0 215559 bytes_in 0 215559 station_ip 83.122.60.181 215559 port 93 215559 unique_id port 215559 remote_ip 10.8.0.86 215560 username motamedi9772 215560 mac 215560 bytes_out 0 215560 bytes_in 0 215560 station_ip 83.122.60.181 215560 port 93 215560 unique_id port 215560 remote_ip 10.8.0.86 215564 username motamedi9772 215564 mac 215564 bytes_out 0 215564 bytes_in 0 215564 station_ip 83.122.60.181 215564 port 93 215564 unique_id port 215564 remote_ip 10.8.0.86 215569 username motamedi9772 215569 mac 215569 bytes_out 0 215569 bytes_in 0 215569 station_ip 83.122.60.181 215569 port 75 215569 unique_id port 215569 remote_ip 10.8.0.86 215573 username motamedi9772 215573 mac 215573 bytes_out 0 215573 bytes_in 0 215573 station_ip 83.122.60.181 215573 port 75 215573 unique_id port 215573 remote_ip 10.8.0.86 215578 username motamedi9772 215578 mac 215578 bytes_out 0 215578 bytes_in 0 215578 station_ip 83.122.60.181 215578 port 50 215578 unique_id port 215578 remote_ip 10.8.0.86 215523 bytes_in 0 215523 station_ip 83.122.60.181 215523 port 75 215523 unique_id port 215523 remote_ip 10.8.0.86 215524 username motamedi9772 215524 mac 215524 bytes_out 0 215524 bytes_in 0 215524 station_ip 83.122.60.181 215524 port 75 215524 unique_id port 215524 remote_ip 10.8.0.86 215526 username motamedi9772 215526 mac 215526 bytes_out 0 215526 bytes_in 0 215526 station_ip 83.122.60.181 215526 port 75 215526 unique_id port 215526 remote_ip 10.8.0.86 215527 username motamedi9772 215527 mac 215527 bytes_out 0 215527 bytes_in 0 215527 station_ip 83.122.60.181 215527 port 75 215527 unique_id port 215527 remote_ip 10.8.0.86 215528 username motamedi9772 215528 mac 215528 bytes_out 0 215528 bytes_in 0 215528 station_ip 83.122.60.181 215528 port 75 215528 unique_id port 215528 remote_ip 10.8.0.86 215529 username motamedi9772 215529 mac 215529 bytes_out 0 215529 bytes_in 0 215529 station_ip 83.122.60.181 215529 port 75 215529 unique_id port 215529 remote_ip 10.8.0.86 215532 username motamedi9772 215532 mac 215532 bytes_out 0 215532 bytes_in 0 215532 station_ip 83.122.60.181 215532 port 75 215532 unique_id port 215532 remote_ip 10.8.0.86 215538 username motamedi9772 215538 mac 215538 bytes_out 0 215538 bytes_in 0 215538 station_ip 83.122.60.181 215538 port 61 215538 unique_id port 215538 remote_ip 10.8.1.182 215548 username motamedi9772 215548 mac 215548 bytes_out 0 215548 bytes_in 0 215548 station_ip 83.122.60.181 215548 port 75 215548 unique_id port 215548 remote_ip 10.8.0.86 215550 username motamedi9772 215550 mac 215550 bytes_out 0 215550 bytes_in 0 215550 station_ip 83.122.60.181 215550 port 93 215550 unique_id port 215550 remote_ip 10.8.0.86 215552 username motamedi9772 215552 mac 215552 bytes_out 0 215552 bytes_in 0 215552 station_ip 83.122.60.181 215552 port 93 215552 unique_id port 215552 remote_ip 10.8.0.86 215553 username motamedi9772 215553 mac 215553 bytes_out 0 215553 bytes_in 0 215553 station_ip 83.122.60.181 215553 port 93 215553 unique_id port 215553 remote_ip 10.8.0.86 215561 username motamedi9772 215561 mac 215561 bytes_out 0 215561 bytes_in 0 215561 station_ip 83.122.60.181 215561 port 93 215561 unique_id port 215561 remote_ip 10.8.0.86 215562 username motamedi9772 215562 mac 215562 bytes_out 0 215562 bytes_in 0 215562 station_ip 83.122.60.181 215562 port 93 215562 unique_id port 215562 remote_ip 10.8.0.86 215566 username motamedi9772 215566 mac 215566 bytes_out 0 215566 bytes_in 0 215566 station_ip 83.122.60.181 215566 port 93 215566 unique_id port 215566 remote_ip 10.8.0.86 215568 username barzegar 215568 mac 215568 bytes_out 0 215568 bytes_in 0 215568 station_ip 5.120.158.69 215568 port 61 215568 unique_id port 215568 remote_ip 10.8.1.30 215570 username motamedi9772 215570 mac 215570 bytes_out 0 215570 bytes_in 0 215570 station_ip 83.122.60.181 215570 port 75 215570 unique_id port 215570 remote_ip 10.8.0.86 215571 username motamedi9772 215571 mac 215571 bytes_out 0 215571 bytes_in 0 215571 station_ip 83.122.60.181 215571 port 75 215571 unique_id port 215571 remote_ip 10.8.0.86 215575 username motamedi9772 215575 mac 215575 bytes_out 0 215575 bytes_in 0 215575 station_ip 83.122.60.181 215575 port 75 215575 unique_id port 215575 remote_ip 10.8.0.86 215581 username motamedi9772 215581 mac 215581 bytes_out 0 215581 bytes_in 0 215581 station_ip 83.122.60.181 215581 port 50 215581 unique_id port 215581 remote_ip 10.8.0.86 215567 station_ip 83.122.60.181 215567 port 75 215567 unique_id port 215567 remote_ip 10.8.0.86 215572 username motamedi9772 215572 mac 215572 bytes_out 0 215572 bytes_in 0 215572 station_ip 83.122.60.181 215572 port 75 215572 unique_id port 215572 remote_ip 10.8.0.86 215574 username nilufarrajaei 215574 mac 215574 bytes_out 30434368 215574 bytes_in 47639461 215574 station_ip 37.129.182.205 215574 port 50 215574 unique_id port 215574 remote_ip 10.8.0.50 215576 username motamedi9772 215576 mac 215576 bytes_out 0 215576 bytes_in 0 215576 station_ip 83.122.60.181 215576 port 50 215576 unique_id port 215576 remote_ip 10.8.0.86 215577 username motamedi9772 215577 mac 215577 bytes_out 0 215577 bytes_in 0 215577 station_ip 83.122.60.181 215577 port 50 215577 unique_id port 215577 remote_ip 10.8.0.86 215579 username motamedi9772 215579 mac 215579 bytes_out 0 215579 bytes_in 0 215579 station_ip 83.122.60.181 215579 port 50 215579 unique_id port 215579 remote_ip 10.8.0.86 215583 username motamedi9772 215583 mac 215583 bytes_out 0 215583 bytes_in 0 215583 station_ip 83.122.60.181 215583 port 50 215583 unique_id port 215583 remote_ip 10.8.0.86 215585 username motamedi9772 215585 mac 215585 bytes_out 0 215585 bytes_in 0 215585 station_ip 83.122.60.181 215585 port 50 215585 unique_id port 215585 remote_ip 10.8.0.86 215586 username motamedi9772 215586 mac 215586 bytes_out 0 215586 bytes_in 0 215586 station_ip 83.122.60.181 215586 port 50 215586 unique_id port 215586 remote_ip 10.8.0.86 215587 username motamedi9772 215587 mac 215587 bytes_out 0 215587 bytes_in 0 215587 station_ip 83.122.60.181 215587 port 75 215587 unique_id port 215587 remote_ip 10.8.0.86 215591 username motamedi9772 215591 mac 215591 bytes_out 0 215591 bytes_in 0 215591 station_ip 83.122.60.181 215591 port 75 215591 unique_id port 215591 remote_ip 10.8.0.86 215592 username motamedi9772 215592 mac 215592 bytes_out 0 215592 bytes_in 0 215592 station_ip 83.122.60.181 215592 port 75 215592 unique_id port 215592 remote_ip 10.8.0.86 215594 username motamedi9772 215594 mac 215594 bytes_out 0 215594 bytes_in 0 215594 station_ip 83.122.60.181 215594 port 75 215594 unique_id port 215594 remote_ip 10.8.0.86 215600 username motamedi9772 215600 mac 215600 bytes_out 0 215600 bytes_in 0 215600 station_ip 83.122.60.181 215600 port 75 215600 unique_id port 215600 remote_ip 10.8.0.86 215604 username motamedi9772 215604 mac 215604 bytes_out 0 215604 bytes_in 0 215604 station_ip 83.122.60.181 215604 port 75 215604 unique_id port 215604 remote_ip 10.8.0.86 215606 username motamedi9772 215606 mac 215606 bytes_out 0 215606 bytes_in 0 215606 station_ip 83.122.60.181 215606 port 75 215606 unique_id port 215606 remote_ip 10.8.0.86 215609 username pourshad 215609 mac 215609 bytes_out 2251 215609 bytes_in 4523 215609 station_ip 5.120.100.246 215609 port 88 215609 unique_id port 215609 remote_ip 10.8.0.122 215613 username motamedi9772 215613 mac 215613 bytes_out 0 215613 bytes_in 0 215613 station_ip 83.122.60.181 215613 port 75 215613 unique_id port 215613 remote_ip 10.8.0.86 215615 username motamedi9772 215615 mac 215615 bytes_out 0 215615 bytes_in 0 215615 station_ip 83.122.60.181 215615 port 75 215615 unique_id port 215615 remote_ip 10.8.0.86 215619 username sabaghnezhad 215619 mac 215619 bytes_out 1421678 215619 bytes_in 9714290 215619 station_ip 37.129.239.138 215619 port 95 215619 unique_id port 215619 remote_ip 10.8.0.94 215580 username motamedi9772 215580 mac 215580 bytes_out 0 215580 bytes_in 0 215580 station_ip 83.122.60.181 215580 port 50 215580 unique_id port 215580 remote_ip 10.8.0.86 215584 username mohammadjavad 215584 mac 215584 bytes_out 965014 215584 bytes_in 11901948 215584 station_ip 37.129.85.15 215584 port 88 215584 unique_id port 215584 remote_ip 10.8.0.138 215588 username motamedi9772 215588 mac 215588 bytes_out 0 215588 bytes_in 0 215588 station_ip 83.122.60.181 215588 port 75 215588 unique_id port 215588 remote_ip 10.8.0.86 215589 username motamedi9772 215589 mac 215589 bytes_out 0 215589 bytes_in 0 215589 station_ip 83.122.60.181 215589 port 75 215589 unique_id port 215589 remote_ip 10.8.0.86 215593 username motamedi9772 215593 mac 215593 bytes_out 0 215593 bytes_in 0 215593 station_ip 83.122.60.181 215593 port 75 215593 unique_id port 215593 remote_ip 10.8.0.86 215595 username motamedi9772 215595 mac 215595 bytes_out 0 215595 bytes_in 0 215595 station_ip 83.122.60.181 215595 port 75 215595 unique_id port 215595 remote_ip 10.8.0.86 215596 username motamedi9772 215596 mac 215596 bytes_out 0 215596 bytes_in 0 215596 station_ip 83.122.60.181 215596 port 75 215596 unique_id port 215596 remote_ip 10.8.0.86 215601 username motamedi9772 215601 mac 215601 bytes_out 0 215601 bytes_in 0 215601 station_ip 83.122.60.181 215601 port 75 215601 unique_id port 215601 remote_ip 10.8.0.86 215602 username motamedi9772 215602 mac 215602 bytes_out 0 215602 bytes_in 0 215602 station_ip 83.122.60.181 215602 port 75 215602 unique_id port 215602 remote_ip 10.8.0.86 215605 username pourshad 215605 mac 215605 bytes_out 0 215605 bytes_in 0 215605 station_ip 5.120.100.246 215605 port 60 215605 unique_id port 215605 remote_ip 10.8.1.10 215607 username motamedi9772 215607 mac 215607 bytes_out 0 215607 bytes_in 0 215607 station_ip 83.122.60.181 215607 port 75 215607 unique_id port 215607 remote_ip 10.8.0.86 215608 username motamedi9772 215608 mac 215608 bytes_out 0 215608 bytes_in 0 215608 station_ip 83.122.60.181 215608 port 75 215608 unique_id port 215608 remote_ip 10.8.0.86 215610 username motamedi9772 215610 mac 215610 bytes_out 0 215610 bytes_in 0 215610 station_ip 83.122.60.181 215610 port 75 215610 unique_id port 215610 remote_ip 10.8.0.86 215614 username motamedi9772 215614 mac 215614 bytes_out 0 215614 bytes_in 0 215614 station_ip 83.122.60.181 215614 port 75 215614 unique_id port 215614 remote_ip 10.8.0.86 215616 username motamedi9772 215616 mac 215616 bytes_out 0 215616 bytes_in 0 215616 station_ip 83.122.60.181 215616 port 75 215616 unique_id port 215616 remote_ip 10.8.0.86 215617 username motamedi9772 215617 mac 215617 bytes_out 0 215617 bytes_in 0 215617 station_ip 83.122.60.181 215617 port 75 215617 unique_id port 215617 remote_ip 10.8.0.86 215621 username motamedi9772 215621 mac 215621 bytes_out 0 215621 bytes_in 0 215621 station_ip 83.122.60.181 215621 port 75 215621 unique_id port 215621 remote_ip 10.8.0.86 215625 username motamedi9772 215625 mac 215625 bytes_out 0 215625 bytes_in 0 215625 station_ip 83.122.60.181 215625 port 75 215625 unique_id port 215625 remote_ip 10.8.0.86 215626 username motamedi9772 215626 mac 215626 bytes_out 0 215626 bytes_in 0 215626 station_ip 83.122.60.181 215626 port 75 215626 unique_id port 215626 remote_ip 10.8.0.86 215630 username motamedi9772 215630 mac 215630 bytes_out 0 215630 bytes_in 0 215582 username motamedi9772 215582 mac 215582 bytes_out 0 215582 bytes_in 0 215582 station_ip 83.122.60.181 215582 port 50 215582 unique_id port 215582 remote_ip 10.8.0.86 215590 username motamedi9772 215590 mac 215590 bytes_out 0 215590 bytes_in 0 215590 station_ip 83.122.60.181 215590 port 75 215590 unique_id port 215590 remote_ip 10.8.0.86 215597 username motamedi9772 215597 mac 215597 bytes_out 0 215597 bytes_in 0 215597 station_ip 83.122.60.181 215597 port 75 215597 unique_id port 215597 remote_ip 10.8.0.86 215598 username motamedi9772 215598 mac 215598 bytes_out 0 215598 bytes_in 0 215598 station_ip 83.122.60.181 215598 port 75 215598 unique_id port 215598 remote_ip 10.8.0.86 215599 username motamedi9772 215599 mac 215599 bytes_out 0 215599 bytes_in 0 215599 station_ip 83.122.60.181 215599 port 75 215599 unique_id port 215599 remote_ip 10.8.0.86 215603 username motamedi9772 215603 mac 215603 bytes_out 0 215603 bytes_in 0 215603 station_ip 83.122.60.181 215603 port 75 215603 unique_id port 215603 remote_ip 10.8.0.86 215611 username motamedi9772 215611 mac 215611 bytes_out 0 215611 bytes_in 0 215611 station_ip 83.122.60.181 215611 port 75 215611 unique_id port 215611 remote_ip 10.8.0.86 215612 username motamedi9772 215612 mac 215612 bytes_out 0 215612 bytes_in 0 215612 station_ip 83.122.60.181 215612 port 75 215612 unique_id port 215612 remote_ip 10.8.0.86 215618 username motamedi9772 215618 mac 215618 bytes_out 0 215618 bytes_in 0 215618 station_ip 83.122.60.181 215618 port 75 215618 unique_id port 215618 remote_ip 10.8.0.86 215620 username motamedi9772 215620 mac 215620 bytes_out 0 215620 bytes_in 0 215620 station_ip 83.122.60.181 215620 port 75 215620 unique_id port 215620 remote_ip 10.8.0.86 215622 username motamedi9772 215622 mac 215622 bytes_out 0 215622 bytes_in 0 215622 station_ip 83.122.60.181 215622 port 75 215622 unique_id port 215622 remote_ip 10.8.0.86 215627 username motamedi9772 215627 mac 215627 bytes_out 0 215627 bytes_in 0 215627 station_ip 83.122.60.181 215627 port 75 215627 unique_id port 215627 remote_ip 10.8.0.86 215632 username motamedi9772 215632 mac 215632 bytes_out 0 215632 bytes_in 0 215632 station_ip 83.122.60.181 215632 port 75 215632 unique_id port 215632 remote_ip 10.8.0.86 215634 username motamedi9772 215634 mac 215634 bytes_out 0 215634 bytes_in 0 215634 station_ip 83.122.60.181 215634 port 75 215634 unique_id port 215634 remote_ip 10.8.0.86 215638 username hamid1430 215638 mac 215638 bytes_out 0 215638 bytes_in 0 215638 station_ip 83.123.167.82 215638 port 89 215638 unique_id port 215638 remote_ip 10.8.0.166 215642 username milan 215642 mac 215642 bytes_out 0 215642 bytes_in 0 215642 station_ip 5.119.171.151 215642 port 100 215642 unique_id port 215645 username hamid.e 215645 unique_id port 215645 terminate_cause User-Request 215645 bytes_out 882152 215645 bytes_in 10969749 215645 station_ip 37.27.16.25 215645 port 15728640 215645 nas_port_type Virtual 215645 remote_ip 5.5.5.255 215653 username dortaj3792 215653 mac 215653 bytes_out 423189 215653 bytes_in 1514801 215653 station_ip 5.119.206.214 215653 port 94 215653 unique_id port 215653 remote_ip 10.8.0.10 215654 username yaghobi 215654 mac 215654 bytes_out 261726 215654 bytes_in 368392 215654 station_ip 83.123.154.40 215654 port 50 215654 unique_id port 215654 remote_ip 10.8.0.106 215655 username yaghobi 215655 mac 215655 bytes_out 72422 215623 username motamedi9772 215623 mac 215623 bytes_out 0 215623 bytes_in 0 215623 station_ip 83.122.60.181 215623 port 75 215623 unique_id port 215623 remote_ip 10.8.0.86 215624 username motamedi9772 215624 mac 215624 bytes_out 0 215624 bytes_in 0 215624 station_ip 83.122.60.181 215624 port 75 215624 unique_id port 215624 remote_ip 10.8.0.86 215628 username motamedi9772 215628 mac 215628 bytes_out 0 215628 bytes_in 0 215628 station_ip 83.122.60.181 215628 port 75 215628 unique_id port 215628 remote_ip 10.8.0.86 215629 username motamedi9772 215629 mac 215629 bytes_out 0 215629 bytes_in 0 215629 station_ip 83.122.60.181 215629 port 75 215629 unique_id port 215629 remote_ip 10.8.0.86 215633 username motamedi9772 215633 mac 215633 bytes_out 0 215633 bytes_in 0 215633 station_ip 83.122.60.181 215633 port 75 215633 unique_id port 215633 remote_ip 10.8.0.86 215635 username motamedi9772 215635 mac 215635 bytes_out 0 215635 bytes_in 0 215635 station_ip 83.122.60.181 215635 port 75 215635 unique_id port 215635 remote_ip 10.8.0.86 215636 username motamedi9772 215636 mac 215636 bytes_out 0 215636 bytes_in 0 215636 station_ip 83.122.60.181 215636 port 75 215636 unique_id port 215636 remote_ip 10.8.0.86 215640 username motamedi9772 215640 mac 215640 bytes_out 0 215640 bytes_in 0 215640 station_ip 83.122.60.181 215640 port 75 215640 unique_id port 215640 remote_ip 10.8.0.86 215648 username kalantary6037 215648 mac 215648 bytes_out 176938 215648 bytes_in 934296 215648 station_ip 37.129.250.72 215648 port 89 215648 unique_id port 215648 remote_ip 10.8.0.18 215659 username mohammadjavad 215659 mac 215659 bytes_out 0 215659 bytes_in 0 215659 station_ip 37.27.19.243 215659 port 95 215659 unique_id port 215659 remote_ip 10.8.0.138 215660 username mohammadjavad 215660 mac 215660 bytes_out 723398 215660 bytes_in 13537184 215660 station_ip 37.27.19.243 215660 port 89 215660 unique_id port 215660 remote_ip 10.8.0.138 215664 username fezealinaghi 215664 mac 215664 bytes_out 0 215664 bytes_in 0 215664 station_ip 37.129.12.106 215664 port 97 215664 unique_id port 215664 remote_ip 10.8.0.14 215665 username yaghobi 215665 mac 215665 bytes_out 62701 215665 bytes_in 70854 215665 station_ip 83.123.208.56 215665 port 93 215665 unique_id port 215665 remote_ip 10.8.0.106 215667 username hamid2 215667 mac 215667 bytes_out 0 215667 bytes_in 0 215667 station_ip 5.119.61.36 215667 port 95 215667 unique_id port 215667 remote_ip 10.8.0.78 215671 username soleymani5056 215671 mac 215671 bytes_out 159777 215671 bytes_in 496517 215671 station_ip 5.120.36.45 215671 port 96 215671 unique_id port 215671 remote_ip 10.8.0.246 215674 username hamid2 215674 mac 215674 bytes_out 0 215674 bytes_in 0 215674 station_ip 5.119.61.36 215674 port 95 215674 unique_id port 215674 remote_ip 10.8.0.78 215682 username mohammadjavad 215682 mac 215682 bytes_out 1909658 215682 bytes_in 42672232 215682 station_ip 37.27.19.243 215682 port 94 215682 unique_id port 215682 remote_ip 10.8.0.138 215685 username hamid2 215685 mac 215685 bytes_out 0 215685 bytes_in 0 215685 station_ip 5.119.61.36 215685 port 75 215685 unique_id port 215685 remote_ip 10.8.0.78 215686 username hamid2 215686 mac 215686 bytes_out 0 215686 bytes_in 0 215686 station_ip 5.119.61.36 215686 port 75 215686 unique_id port 215686 remote_ip 10.8.0.78 215688 username saeeddamghani 215688 mac 215688 bytes_out 0 215688 bytes_in 0 215630 station_ip 83.122.60.181 215630 port 75 215630 unique_id port 215630 remote_ip 10.8.0.86 215631 username motamedi9772 215631 mac 215631 bytes_out 0 215631 bytes_in 0 215631 station_ip 83.122.60.181 215631 port 75 215631 unique_id port 215631 remote_ip 10.8.0.86 215637 username motamedi9772 215637 mac 215637 bytes_out 0 215637 bytes_in 0 215637 station_ip 83.122.60.181 215637 port 75 215637 unique_id port 215637 remote_ip 10.8.0.86 215639 username motamedi9772 215639 mac 215639 bytes_out 0 215639 bytes_in 0 215639 station_ip 83.122.60.181 215639 port 75 215639 unique_id port 215639 remote_ip 10.8.0.86 215641 username pourshad 215641 kill_reason Another user logged on this global unique id 215641 mac 215641 bytes_out 0 215641 bytes_in 0 215641 station_ip 5.120.100.246 215641 port 60 215641 unique_id port 215641 remote_ip 10.8.1.10 215643 username nilufarrajaei 215643 kill_reason Another user logged on this global unique id 215643 mac 215643 bytes_out 0 215643 bytes_in 0 215643 station_ip 37.129.182.205 215643 port 93 215643 unique_id port 215643 remote_ip 10.8.0.50 215644 username dortaj3792 215644 mac 215644 bytes_out 2127787 215644 bytes_in 10305628 215644 station_ip 5.119.206.214 215644 port 50 215644 unique_id port 215644 remote_ip 10.8.0.10 215646 username mohammadjavad 215646 mac 215646 bytes_out 0 215646 bytes_in 0 215646 station_ip 37.129.72.231 215646 port 50 215646 unique_id port 215646 remote_ip 10.8.0.138 215647 username kalantary6037 215647 mac 215647 bytes_out 0 215647 bytes_in 0 215647 station_ip 37.129.250.72 215647 port 89 215647 unique_id port 215647 remote_ip 10.8.0.18 215649 username yaghobi 215649 mac 215649 bytes_out 0 215649 bytes_in 0 215649 station_ip 83.123.154.40 215649 port 75 215649 unique_id port 215649 remote_ip 10.8.0.106 215650 username kharazmi2920 215650 mac 215650 bytes_out 0 215650 bytes_in 0 215650 station_ip 83.123.40.45 215650 port 50 215650 unique_id port 215650 remote_ip 10.8.0.54 215651 username nilufarrajaei 215651 kill_reason Another user logged on this global unique id 215651 mac 215651 bytes_out 0 215651 bytes_in 0 215651 station_ip 37.129.182.205 215651 port 93 215651 unique_id port 215652 username meysam 215652 mac 215652 bytes_out 0 215652 bytes_in 0 215652 station_ip 188.158.51.201 215652 port 75 215652 unique_id port 215652 remote_ip 10.8.0.102 215656 username mohammadjavad 215656 mac 215656 bytes_out 0 215656 bytes_in 0 215656 station_ip 37.27.19.243 215656 port 62 215656 unique_id port 215656 remote_ip 10.8.1.142 215657 username barzegar8595 215657 mac 215657 bytes_out 0 215657 bytes_in 0 215657 station_ip 46.225.214.204 215657 port 61 215657 unique_id port 215657 remote_ip 10.8.1.26 215661 username nilufarrajaei 215661 mac 215661 bytes_out 0 215661 bytes_in 0 215661 station_ip 37.129.182.205 215661 port 93 215661 unique_id port 215662 username hamid2 215662 mac 215662 bytes_out 171080 215662 bytes_in 700728 215662 station_ip 5.119.61.36 215662 port 95 215662 unique_id port 215662 remote_ip 10.8.0.78 215669 username mohammadjavad 215669 mac 215669 bytes_out 44718 215669 bytes_in 57321 215669 station_ip 37.27.19.243 215669 port 93 215669 unique_id port 215669 remote_ip 10.8.0.138 215672 username soleymani5056 215672 mac 215672 bytes_out 2128 215672 bytes_in 5296 215672 station_ip 5.120.7.36 215672 port 93 215672 unique_id port 215672 remote_ip 10.8.0.246 215673 username kalantary6037 215673 mac 215673 bytes_out 1154542 215673 bytes_in 12662667 215655 bytes_in 356438 215655 station_ip 83.123.154.40 215655 port 75 215655 unique_id port 215655 remote_ip 10.8.0.106 215658 username mohammadjavad 215658 mac 215658 bytes_out 0 215658 bytes_in 0 215658 station_ip 37.27.19.243 215658 port 89 215658 unique_id port 215658 remote_ip 10.8.0.138 215663 username hamid2 215663 mac 215663 bytes_out 0 215663 bytes_in 0 215663 station_ip 5.119.61.36 215663 port 95 215663 unique_id port 215663 remote_ip 10.8.0.78 215666 username saeeddamghani 215666 kill_reason Another user logged on this global unique id 215666 mac 215666 bytes_out 0 215666 bytes_in 0 215666 station_ip 217.60.175.208 215666 port 89 215666 unique_id port 215666 remote_ip 10.8.0.162 215668 username godarzi 215668 kill_reason Another user logged on this global unique id 215668 mac 215668 bytes_out 0 215668 bytes_in 0 215668 station_ip 5.202.65.237 215668 port 88 215668 unique_id port 215668 remote_ip 10.8.0.74 215670 username hamid2 215670 mac 215670 bytes_out 39221 215670 bytes_in 33774 215670 station_ip 5.119.61.36 215670 port 93 215670 unique_id port 215670 remote_ip 10.8.0.78 215676 username dortaj3792 215676 mac 215676 bytes_out 0 215676 bytes_in 0 215676 station_ip 5.119.206.214 215676 port 75 215676 unique_id port 215676 remote_ip 10.8.0.10 215678 username saeeddamghani 215678 kill_reason Another user logged on this global unique id 215678 mac 215678 bytes_out 0 215678 bytes_in 0 215678 station_ip 217.60.175.208 215678 port 89 215678 unique_id port 215679 username godarzi 215679 mac 215679 bytes_out 0 215679 bytes_in 0 215679 station_ip 5.202.65.237 215679 port 88 215679 unique_id port 215683 username saeeddamghani 215683 mac 215683 bytes_out 0 215683 bytes_in 0 215683 station_ip 217.60.175.208 215683 port 88 215683 unique_id port 215683 remote_ip 10.8.0.162 215684 username saeeddamghani 215684 mac 215684 bytes_out 0 215684 bytes_in 0 215684 station_ip 217.60.175.208 215684 port 88 215684 unique_id port 215684 remote_ip 10.8.0.162 215690 username hamid2 215690 mac 215690 bytes_out 74774 215690 bytes_in 174095 215690 station_ip 5.119.61.36 215690 port 89 215690 unique_id port 215690 remote_ip 10.8.0.78 215692 username hamid2 215692 mac 215692 bytes_out 0 215692 bytes_in 0 215692 station_ip 5.119.61.36 215692 port 89 215692 unique_id port 215692 remote_ip 10.8.0.78 215700 username sabaghnezhad 215700 mac 215700 bytes_out 107551 215700 bytes_in 1052292 215700 station_ip 83.122.63.89 215700 port 95 215700 unique_id port 215700 remote_ip 10.8.0.94 215706 username mohammadjavad 215706 mac 215706 bytes_out 539332 215706 bytes_in 6549552 215706 station_ip 37.129.241.142 215706 port 95 215706 unique_id port 215706 remote_ip 10.8.0.138 215708 username saeeddamghani 215708 mac 215708 bytes_out 0 215708 bytes_in 0 215708 station_ip 5.120.46.54 215708 port 95 215708 unique_id port 215708 remote_ip 10.8.0.162 215709 username malekpoir 215709 kill_reason Another user logged on this global unique id 215709 mac 215709 bytes_out 0 215709 bytes_in 0 215709 station_ip 5.120.148.75 215709 port 93 215709 unique_id port 215709 remote_ip 10.8.0.178 215710 username hamid2 215710 mac 215710 bytes_out 0 215710 bytes_in 0 215710 station_ip 5.119.61.36 215710 port 89 215710 unique_id port 215710 remote_ip 10.8.0.78 215717 username hamid2 215717 mac 215717 bytes_out 0 215717 bytes_in 0 215717 station_ip 5.119.61.36 215717 port 89 215717 unique_id port 215717 remote_ip 10.8.0.78 215725 username soleymani5056 215725 mac 215725 bytes_out 0 215673 station_ip 37.129.157.200 215673 port 94 215673 unique_id port 215673 remote_ip 10.8.0.18 215675 username mohammadjavad 215675 mac 215675 bytes_out 0 215675 bytes_in 0 215675 station_ip 37.27.19.243 215675 port 61 215675 unique_id port 215675 remote_ip 10.8.1.142 215677 username hamid2 215677 mac 215677 bytes_out 37826 215677 bytes_in 78274 215677 station_ip 5.119.61.36 215677 port 75 215677 unique_id port 215677 remote_ip 10.8.0.78 215680 username saeeddamghani 215680 mac 215680 bytes_out 0 215680 bytes_in 0 215680 station_ip 217.60.175.208 215680 port 89 215680 unique_id port 215681 username saeeddamghani 215681 mac 215681 bytes_out 0 215681 bytes_in 0 215681 station_ip 217.60.175.208 215681 port 88 215681 unique_id port 215681 remote_ip 10.8.0.162 215687 username hamid2 215687 mac 215687 bytes_out 0 215687 bytes_in 0 215687 station_ip 5.119.61.36 215687 port 75 215687 unique_id port 215687 remote_ip 10.8.0.78 215697 username hamid2 215697 mac 215697 bytes_out 0 215697 bytes_in 0 215697 station_ip 5.119.61.36 215697 port 89 215697 unique_id port 215697 remote_ip 10.8.0.78 215699 username saeeddamghani 215699 kill_reason Maximum check online fails reached 215699 mac 215699 bytes_out 0 215699 bytes_in 0 215699 station_ip 217.60.175.208 215699 port 61 215699 unique_id port 215702 username mostafa_es78 215702 mac 215702 bytes_out 0 215702 bytes_in 0 215702 station_ip 113.203.111.74 215702 port 95 215702 unique_id port 215702 remote_ip 10.8.0.42 215704 username hosseine 215704 kill_reason Another user logged on this global unique id 215704 mac 215704 bytes_out 0 215704 bytes_in 0 215704 station_ip 37.129.240.240 215704 port 50 215704 unique_id port 215704 remote_ip 10.8.0.126 215705 username pourshad 215705 mac 215705 bytes_out 0 215705 bytes_in 0 215705 station_ip 5.120.100.246 215705 port 60 215705 unique_id port 215707 username khalili2 215707 unique_id port 215707 terminate_cause Lost-Carrier 215707 bytes_out 3093910 215707 bytes_in 108902604 215707 station_ip 5.120.71.141 215707 port 15728641 215707 nas_port_type Virtual 215707 remote_ip 5.5.5.254 215711 username barzegar8595 215711 mac 215711 bytes_out 1682473 215711 bytes_in 14250902 215711 station_ip 46.225.214.204 215711 port 97 215711 unique_id port 215711 remote_ip 10.8.0.170 215713 username kharazmi2920 215713 mac 215713 bytes_out 122866 215713 bytes_in 703282 215713 station_ip 83.123.40.45 215713 port 98 215713 unique_id port 215713 remote_ip 10.8.0.54 215718 username ahmadi1 215718 mac 215718 bytes_out 81416 215718 bytes_in 294945 215718 station_ip 83.123.112.41 215718 port 96 215718 unique_id port 215718 remote_ip 10.8.0.114 215720 username barzegar8595 215720 mac 215720 bytes_out 2246 215720 bytes_in 6136 215720 station_ip 46.225.214.204 215720 port 96 215720 unique_id port 215720 remote_ip 10.8.0.170 215722 username godarzi 215722 kill_reason Another user logged on this global unique id 215722 mac 215722 bytes_out 0 215722 bytes_in 0 215722 station_ip 5.202.65.237 215722 port 88 215722 unique_id port 215722 remote_ip 10.8.0.74 215723 username sabaghnezhad 215723 mac 215723 bytes_out 0 215723 bytes_in 0 215723 station_ip 83.122.63.89 215723 port 62 215723 unique_id port 215723 remote_ip 10.8.1.46 215724 username hamid2 215724 mac 215724 bytes_out 0 215724 bytes_in 0 215724 station_ip 5.119.61.36 215724 port 89 215724 unique_id port 215724 remote_ip 10.8.0.78 215728 username barzegar8595 215728 mac 215728 bytes_out 55543 215728 bytes_in 75246 215688 station_ip 217.60.175.208 215688 port 88 215688 unique_id port 215688 remote_ip 10.8.0.162 215689 username hamid2 215689 mac 215689 bytes_out 0 215689 bytes_in 0 215689 station_ip 5.119.61.36 215689 port 75 215689 unique_id port 215689 remote_ip 10.8.0.78 215691 username saeeddamghani 215691 kill_reason Maximum check online fails reached 215691 mac 215691 bytes_out 0 215691 bytes_in 0 215691 station_ip 217.60.175.208 215691 port 75 215691 unique_id port 215693 username kharazmi2920 215693 mac 215693 bytes_out 0 215693 bytes_in 0 215693 station_ip 83.123.40.45 215693 port 50 215693 unique_id port 215693 remote_ip 10.8.0.54 215694 username saeeddamghani 215694 mac 215694 bytes_out 0 215694 bytes_in 0 215694 station_ip 217.60.175.208 215694 port 89 215694 unique_id port 215694 remote_ip 10.8.0.162 215695 username mohammadjavad 215695 mac 215695 bytes_out 413368 215695 bytes_in 6303125 215695 station_ip 37.129.231.190 215695 port 50 215695 unique_id port 215695 remote_ip 10.8.0.138 215696 username sabaghnezhad 215696 mac 215696 bytes_out 52043 215696 bytes_in 251515 215696 station_ip 83.122.63.89 215696 port 89 215696 unique_id port 215696 remote_ip 10.8.0.94 215698 username saeeddamghani 215698 kill_reason Maximum check online fails reached 215698 mac 215698 bytes_out 0 215698 bytes_in 0 215698 station_ip 217.60.175.208 215698 port 94 215698 unique_id port 215701 username mostafa_es78 215701 mac 215701 bytes_out 0 215701 bytes_in 0 215701 station_ip 113.203.111.74 215701 port 95 215701 unique_id port 215701 remote_ip 10.8.0.42 215703 username aminvpn 215703 mac 215703 bytes_out 0 215703 bytes_in 0 215703 station_ip 5.119.130.178 215703 port 96 215703 unique_id port 215703 remote_ip 10.8.0.58 215712 username kalantary6037 215712 mac 215712 bytes_out 228520 215712 bytes_in 1083444 215712 station_ip 37.129.208.56 215712 port 96 215712 unique_id port 215712 remote_ip 10.8.0.18 215714 username hamid2 215714 mac 215714 bytes_out 0 215714 bytes_in 0 215714 station_ip 5.119.61.36 215714 port 89 215714 unique_id port 215714 remote_ip 10.8.0.78 215715 username hamid2 215715 mac 215715 bytes_out 0 215715 bytes_in 0 215715 station_ip 5.119.61.36 215715 port 89 215715 unique_id port 215715 remote_ip 10.8.0.78 215716 username hamid2 215716 mac 215716 bytes_out 0 215716 bytes_in 0 215716 station_ip 5.119.61.36 215716 port 89 215716 unique_id port 215716 remote_ip 10.8.0.78 215719 username hamid.e 215719 unique_id port 215719 terminate_cause User-Request 215719 bytes_out 15687522 215719 bytes_in 246925125 215719 station_ip 37.27.16.25 215719 port 15728642 215719 nas_port_type Virtual 215719 remote_ip 5.5.5.255 215721 username hamid2 215721 mac 215721 bytes_out 3364200 215721 bytes_in 33015867 215721 station_ip 5.119.61.36 215721 port 89 215721 unique_id port 215721 remote_ip 10.8.0.78 215727 username kharazmi2920 215727 mac 215727 bytes_out 0 215727 bytes_in 0 215727 station_ip 83.123.40.45 215727 port 97 215727 unique_id port 215727 remote_ip 10.8.0.54 215729 username hamid2 215729 mac 215729 bytes_out 0 215729 bytes_in 0 215729 station_ip 5.119.61.36 215729 port 89 215729 unique_id port 215729 remote_ip 10.8.0.78 215738 username fezealinaghi 215738 mac 215738 bytes_out 1612134 215738 bytes_in 9278653 215738 station_ip 37.129.82.166 215738 port 95 215738 unique_id port 215738 remote_ip 10.8.0.14 215739 username yaghobi 215739 mac 215739 bytes_out 0 215739 bytes_in 0 215739 station_ip 83.123.162.48 215739 port 50 215725 bytes_in 0 215725 station_ip 5.120.16.227 215725 port 99 215725 unique_id port 215725 remote_ip 10.8.0.246 215726 username khalili2 215726 unique_id port 215726 terminate_cause Lost-Carrier 215726 bytes_out 545252 215726 bytes_in 28732462 215726 station_ip 5.120.71.141 215726 port 15728648 215726 nas_port_type Virtual 215726 remote_ip 5.5.5.254 215732 username kalantary6037 215732 mac 215732 bytes_out 592010 215732 bytes_in 3555043 215732 station_ip 37.129.139.204 215732 port 97 215732 unique_id port 215732 remote_ip 10.8.0.18 215736 username meysam 215736 mac 215736 bytes_out 0 215736 bytes_in 0 215736 station_ip 188.158.49.84 215736 port 96 215736 unique_id port 215736 remote_ip 10.8.0.102 215737 username hamid2 215737 mac 215737 bytes_out 109893 215737 bytes_in 179287 215737 station_ip 5.119.61.36 215737 port 97 215737 unique_id port 215737 remote_ip 10.8.0.78 215740 username khademi 215740 mac 215740 bytes_out 0 215740 bytes_in 0 215740 station_ip 5.202.0.17 215740 port 98 215740 unique_id port 215742 username kharazmi2920 215742 mac 215742 bytes_out 0 215742 bytes_in 0 215742 station_ip 83.123.40.45 215742 port 50 215742 unique_id port 215742 remote_ip 10.8.0.54 215743 username hamid2 215743 mac 215743 bytes_out 0 215743 bytes_in 0 215743 station_ip 94.241.175.77 215743 port 50 215743 unique_id port 215743 remote_ip 10.8.0.78 215755 username mosi 215755 kill_reason Another user logged on this global unique id 215755 mac 215755 bytes_out 0 215755 bytes_in 0 215755 station_ip 151.235.124.131 215755 port 97 215755 unique_id port 215755 remote_ip 10.8.0.38 215762 username kalantary6037 215762 mac 215762 bytes_out 81092 215762 bytes_in 129260 215762 station_ip 37.129.237.48 215762 port 100 215762 unique_id port 215762 remote_ip 10.8.0.18 215764 username barzegar 215764 mac 215764 bytes_out 0 215764 bytes_in 0 215764 station_ip 5.120.101.104 215764 port 93 215764 unique_id port 215764 remote_ip 10.8.0.34 215766 username aminvpn 215766 mac 215766 bytes_out 0 215766 bytes_in 0 215766 station_ip 5.119.130.178 215766 port 93 215766 unique_id port 215766 remote_ip 10.8.0.58 215769 username alirezazadeh 215769 unique_id port 215769 terminate_cause User-Request 215769 bytes_out 294539 215769 bytes_in 1210471 215769 station_ip 151.238.231.51 215769 port 15728653 215769 nas_port_type Virtual 215769 remote_ip 5.5.5.251 215770 username dortaj3792 215770 mac 215770 bytes_out 640105 215770 bytes_in 4241928 215770 station_ip 5.119.108.78 215770 port 99 215770 unique_id port 215770 remote_ip 10.8.0.10 215774 username barzegar8595 215774 mac 215774 bytes_out 0 215774 bytes_in 0 215774 station_ip 46.225.213.45 215774 port 64 215774 unique_id port 215774 remote_ip 10.8.1.26 215778 username khademi 215778 mac 215778 bytes_out 0 215778 bytes_in 0 215778 station_ip 83.122.171.11 215778 port 98 215778 unique_id port 215778 remote_ip 10.8.0.26 215781 username charkhandaz3496 215781 mac 215781 bytes_out 2292055 215781 bytes_in 21720219 215781 station_ip 5.120.90.174 215781 port 95 215781 unique_id port 215781 remote_ip 10.8.0.218 215782 username barzegar 215782 kill_reason Maximum check online fails reached 215782 mac 215782 bytes_out 0 215782 bytes_in 0 215782 station_ip 5.120.101.104 215782 port 63 215782 unique_id port 215784 username kalantary6037 215784 mac 215784 bytes_out 161480 215784 bytes_in 1253139 215784 station_ip 37.129.216.80 215784 port 105 215784 unique_id port 215784 remote_ip 10.8.0.18 215787 username kharazmi2920 215787 mac 215728 station_ip 37.27.39.254 215728 port 96 215728 unique_id port 215728 remote_ip 10.8.0.170 215730 username arash 215730 mac 215730 bytes_out 0 215730 bytes_in 0 215730 station_ip 37.27.2.123 215730 port 100 215730 unique_id port 215730 remote_ip 10.8.0.206 215731 username mehrpoyan101 215731 mac 215731 bytes_out 0 215731 bytes_in 0 215731 station_ip 5.120.5.147 215731 port 96 215731 unique_id port 215731 remote_ip 10.8.0.134 215733 username hamid2 215733 mac 215733 bytes_out 0 215733 bytes_in 0 215733 station_ip 5.119.61.36 215733 port 89 215733 unique_id port 215733 remote_ip 10.8.0.78 215734 username khademi 215734 kill_reason Another user logged on this global unique id 215734 mac 215734 bytes_out 0 215734 bytes_in 0 215734 station_ip 5.202.0.17 215734 port 98 215734 unique_id port 215734 remote_ip 10.8.0.26 215735 username hosseine 215735 mac 215735 bytes_out 0 215735 bytes_in 0 215735 station_ip 37.129.240.240 215735 port 50 215735 unique_id port 215741 username hamid2 215741 mac 215741 bytes_out 0 215741 bytes_in 0 215741 station_ip 94.241.175.77 215741 port 97 215741 unique_id port 215741 remote_ip 10.8.0.78 215745 username kalantary6037 215745 mac 215745 bytes_out 13814 215745 bytes_in 21102 215745 station_ip 37.129.220.208 215745 port 50 215745 unique_id port 215745 remote_ip 10.8.0.18 215746 username tahmorsi 215746 kill_reason Another user logged on this global unique id 215746 mac 215746 bytes_out 0 215746 bytes_in 0 215746 station_ip 86.57.15.210 215746 port 99 215746 unique_id port 215746 remote_ip 10.8.0.210 215747 username motamedi9772 215747 mac 215747 bytes_out 0 215747 bytes_in 0 215747 station_ip 83.122.28.137 215747 port 98 215747 unique_id port 215747 remote_ip 10.8.0.86 215748 username barzegar8595 215748 mac 215748 bytes_out 0 215748 bytes_in 0 215748 station_ip 46.225.213.45 215748 port 60 215748 unique_id port 215748 remote_ip 10.8.1.26 215750 username motamedi9772 215750 mac 215750 bytes_out 0 215750 bytes_in 0 215750 station_ip 83.122.28.137 215750 port 63 215750 unique_id port 215750 remote_ip 10.8.1.182 215753 username barzegar 215753 mac 215753 bytes_out 0 215753 bytes_in 0 215753 station_ip 5.120.101.104 215753 port 98 215753 unique_id port 215753 remote_ip 10.8.0.34 215754 username barzegar 215754 mac 215754 bytes_out 0 215754 bytes_in 0 215754 station_ip 5.120.101.104 215754 port 60 215754 unique_id port 215754 remote_ip 10.8.1.30 215758 username mostafa_es78 215758 mac 215758 bytes_out 0 215758 bytes_in 0 215758 station_ip 113.203.73.178 215758 port 100 215758 unique_id port 215758 remote_ip 10.8.0.42 215760 username dortaj3792 215760 mac 215760 bytes_out 0 215760 bytes_in 0 215760 station_ip 5.119.206.214 215760 port 99 215760 unique_id port 215760 remote_ip 10.8.0.10 215761 username malekpoir 215761 mac 215761 bytes_out 0 215761 bytes_in 0 215761 station_ip 5.120.148.75 215761 port 93 215761 unique_id port 215763 username sabaghnezhad 215763 mac 215763 bytes_out 760443 215763 bytes_in 780138 215763 station_ip 83.122.113.42 215763 port 95 215763 unique_id port 215763 remote_ip 10.8.0.94 215771 username hamid1 215771 mac 215771 bytes_out 0 215771 bytes_in 0 215771 station_ip 5.119.169.139 215771 port 100 215771 unique_id port 215771 remote_ip 10.8.0.194 215772 username barzegar 215772 mac 215772 bytes_out 0 215772 bytes_in 0 215772 station_ip 5.120.101.104 215772 port 99 215772 unique_id port 215772 remote_ip 10.8.0.34 215739 unique_id port 215739 remote_ip 10.8.0.106 215744 username kalantary6037 215744 mac 215744 bytes_out 0 215744 bytes_in 0 215744 station_ip 37.129.220.208 215744 port 50 215744 unique_id port 215744 remote_ip 10.8.0.18 215749 username mohammadjavad 215749 mac 215749 bytes_out 0 215749 bytes_in 0 215749 station_ip 83.122.253.74 215749 port 89 215749 unique_id port 215749 remote_ip 10.8.0.138 215751 username tahmorsi 215751 mac 215751 bytes_out 0 215751 bytes_in 0 215751 station_ip 86.57.15.210 215751 port 99 215751 unique_id port 215752 username kalantary6037 215752 mac 215752 bytes_out 88995 215752 bytes_in 192639 215752 station_ip 37.129.220.208 215752 port 89 215752 unique_id port 215752 remote_ip 10.8.0.18 215756 username mohammadjavad 215756 mac 215756 bytes_out 0 215756 bytes_in 0 215756 station_ip 83.122.253.74 215756 port 100 215756 unique_id port 215756 remote_ip 10.8.0.138 215757 username barzegar 215757 mac 215757 bytes_out 0 215757 bytes_in 0 215757 station_ip 5.120.101.104 215757 port 60 215757 unique_id port 215757 remote_ip 10.8.1.30 215759 username barzegar 215759 mac 215759 bytes_out 0 215759 bytes_in 0 215759 station_ip 5.120.101.104 215759 port 60 215759 unique_id port 215759 remote_ip 10.8.1.30 215765 username kalantary6037 215765 mac 215765 bytes_out 74779 215765 bytes_in 182667 215765 station_ip 37.129.237.48 215765 port 95 215765 unique_id port 215765 remote_ip 10.8.0.18 215767 username soleymani5056 215767 mac 215767 bytes_out 0 215767 bytes_in 0 215767 station_ip 5.120.135.190 215767 port 93 215767 unique_id port 215767 remote_ip 10.8.0.246 215768 username arash 215768 mac 215768 bytes_out 0 215768 bytes_in 0 215768 station_ip 37.27.2.123 215768 port 50 215768 unique_id port 215768 remote_ip 10.8.0.206 215773 username alirezaza 215773 unique_id port 215773 terminate_cause Lost-Carrier 215773 bytes_out 692957 215773 bytes_in 9933628 215773 station_ip 5.119.29.187 215773 port 15728652 215773 nas_port_type Virtual 215773 remote_ip 5.5.5.252 215775 username aminvpn 215775 kill_reason Wrong password 215775 unique_id port 215775 bytes_out 0 215775 bytes_in 0 215775 station_ip 31.57.121.133 215775 port 15728654 215775 nas_port_type Virtual 215776 username malekpoir 215776 mac 215776 bytes_out 0 215776 bytes_in 0 215776 station_ip 5.120.148.75 215776 port 102 215776 unique_id port 215776 remote_ip 10.8.0.178 215783 username hosseini0093 215783 mac 215783 bytes_out 475300 215783 bytes_in 1583443 215783 station_ip 5.119.58.68 215783 port 103 215783 unique_id port 215783 remote_ip 10.8.0.226 215785 username aminvpn 215785 kill_reason Another user logged on this global unique id 215785 mac 215785 bytes_out 0 215785 bytes_in 0 215785 station_ip 5.119.130.178 215785 port 99 215785 unique_id port 215785 remote_ip 10.8.0.58 215788 username mohammadjavad 215788 mac 215788 bytes_out 0 215788 bytes_in 0 215788 station_ip 83.122.194.186 215788 port 93 215788 unique_id port 215788 remote_ip 10.8.0.138 215789 username yaghobi 215789 mac 215789 bytes_out 460750 215789 bytes_in 1045685 215789 station_ip 83.123.251.196 215789 port 104 215789 unique_id port 215789 remote_ip 10.8.0.106 215791 username mosi 215791 kill_reason Another user logged on this global unique id 215791 mac 215791 bytes_out 0 215791 bytes_in 0 215791 station_ip 151.235.124.131 215791 port 97 215791 unique_id port 215795 username pourshad 215795 mac 215795 bytes_out 0 215795 bytes_in 0 215795 station_ip 5.120.100.246 215795 port 50 215777 username sobhan 215777 unique_id port 215777 terminate_cause Lost-Carrier 215777 bytes_out 1320379 215777 bytes_in 19071876 215777 station_ip 5.119.67.224 215777 port 15728649 215777 nas_port_type Virtual 215777 remote_ip 5.5.5.253 215779 username pourshad 215779 kill_reason Another user logged on this global unique id 215779 mac 215779 bytes_out 0 215779 bytes_in 0 215779 station_ip 5.120.100.246 215779 port 50 215779 unique_id port 215779 remote_ip 10.8.0.122 215780 username barzegar8595 215780 mac 215780 bytes_out 86124 215780 bytes_in 152889 215780 station_ip 46.225.209.238 215780 port 63 215780 unique_id port 215780 remote_ip 10.8.1.26 215786 username fezealinaghi 215786 kill_reason Another user logged on this global unique id 215786 mac 215786 bytes_out 0 215786 bytes_in 0 215786 station_ip 37.129.82.166 215786 port 96 215786 unique_id port 215786 remote_ip 10.8.0.14 215792 username barzegar 215792 mac 215792 bytes_out 0 215792 bytes_in 0 215792 station_ip 5.120.101.104 215792 port 64 215792 unique_id port 215792 remote_ip 10.8.1.30 215796 username yaghobi 215796 mac 215796 bytes_out 0 215796 bytes_in 0 215796 station_ip 83.123.251.196 215796 port 93 215796 unique_id port 215796 remote_ip 10.8.0.106 215797 username charkhandaz3496 215797 mac 215797 bytes_out 0 215797 bytes_in 0 215797 station_ip 5.120.90.174 215797 port 98 215797 unique_id port 215797 remote_ip 10.8.0.218 215799 username godarzi 215799 kill_reason Another user logged on this global unique id 215799 mac 215799 bytes_out 0 215799 bytes_in 0 215799 station_ip 5.202.65.237 215799 port 88 215799 unique_id port 215801 username mohammadjavad 215801 mac 215801 bytes_out 0 215801 bytes_in 0 215801 station_ip 83.122.143.166 215801 port 93 215801 unique_id port 215801 remote_ip 10.8.0.138 215804 username pourshad 215804 kill_reason Another user logged on this global unique id 215804 mac 215804 bytes_out 0 215804 bytes_in 0 215804 station_ip 5.120.100.246 215804 port 50 215804 unique_id port 215805 username khademi 215805 mac 215805 bytes_out 0 215805 bytes_in 0 215805 station_ip 83.122.171.11 215805 port 102 215805 unique_id port 215805 remote_ip 10.8.0.26 215806 username barzegar 215806 mac 215806 bytes_out 0 215806 bytes_in 0 215806 station_ip 5.120.101.104 215806 port 99 215806 unique_id port 215806 remote_ip 10.8.0.34 215814 username godarzi 215814 mac 215814 bytes_out 0 215814 bytes_in 0 215814 station_ip 5.202.65.237 215814 port 88 215814 unique_id port 215816 username motamedi9772 215816 mac 215816 bytes_out 0 215816 bytes_in 0 215816 station_ip 83.122.85.185 215816 port 60 215816 unique_id port 215816 remote_ip 10.8.1.182 215817 username mosi 215817 kill_reason Another user logged on this global unique id 215817 mac 215817 bytes_out 0 215817 bytes_in 0 215817 station_ip 151.235.124.131 215817 port 97 215817 unique_id port 215819 username mohammadjavad 215819 mac 215819 bytes_out 24252 215819 bytes_in 125261 215819 station_ip 83.122.155.250 215819 port 99 215819 unique_id port 215819 remote_ip 10.8.0.138 215823 username motamedi9772 215823 mac 215823 bytes_out 0 215823 bytes_in 0 215823 station_ip 83.122.85.185 215823 port 60 215823 unique_id port 215823 remote_ip 10.8.1.182 215843 username motamedi9772 215843 mac 215843 bytes_out 0 215843 bytes_in 0 215843 station_ip 83.122.85.185 215843 port 64 215843 unique_id port 215843 remote_ip 10.8.1.182 215847 username barzegar 215847 mac 215847 bytes_out 0 215847 bytes_in 0 215847 station_ip 5.120.112.15 215847 port 60 215787 bytes_out 26688 215787 bytes_in 85625 215787 station_ip 83.123.40.45 215787 port 103 215787 unique_id port 215787 remote_ip 10.8.0.54 215790 username fezealinaghi 215790 mac 215790 bytes_out 0 215790 bytes_in 0 215790 station_ip 37.129.82.166 215790 port 96 215790 unique_id port 215793 username khalili2 215793 unique_id port 215793 terminate_cause Lost-Carrier 215793 bytes_out 1068241 215793 bytes_in 50190428 215793 station_ip 5.120.71.141 215793 port 15728651 215793 nas_port_type Virtual 215793 remote_ip 5.5.5.254 215794 username hosseini0093 215794 mac 215794 bytes_out 2006683 215794 bytes_in 21694706 215794 station_ip 5.119.18.11 215794 port 107 215794 unique_id port 215794 remote_ip 10.8.0.226 215798 username fezealinaghi 215798 mac 215798 bytes_out 439106 215798 bytes_in 5589475 215798 station_ip 37.129.82.166 215798 port 96 215798 unique_id port 215798 remote_ip 10.8.0.14 215802 username pourshad 215802 kill_reason Another user logged on this global unique id 215802 mac 215802 bytes_out 0 215802 bytes_in 0 215802 station_ip 5.120.100.246 215802 port 50 215802 unique_id port 215802 remote_ip 10.8.0.122 215808 username mosi 215808 kill_reason Another user logged on this global unique id 215808 mac 215808 bytes_out 0 215808 bytes_in 0 215808 station_ip 151.235.124.131 215808 port 97 215808 unique_id port 215810 username barzegar 215810 mac 215810 bytes_out 0 215810 bytes_in 0 215810 station_ip 5.120.101.104 215810 port 65 215810 unique_id port 215810 remote_ip 10.8.1.30 215811 username yaghobi 215811 mac 215811 bytes_out 0 215811 bytes_in 0 215811 station_ip 83.123.251.196 215811 port 64 215811 unique_id port 215811 remote_ip 10.8.1.106 215818 username motamedi9772 215818 mac 215818 bytes_out 0 215818 bytes_in 0 215818 station_ip 83.122.85.185 215818 port 60 215818 unique_id port 215818 remote_ip 10.8.1.182 215820 username motamedi9772 215820 mac 215820 bytes_out 0 215820 bytes_in 0 215820 station_ip 83.122.85.185 215820 port 60 215820 unique_id port 215820 remote_ip 10.8.1.182 215825 username yaghobi 215825 mac 215825 bytes_out 131502 215825 bytes_in 467502 215825 station_ip 83.123.251.196 215825 port 102 215825 unique_id port 215825 remote_ip 10.8.0.106 215827 username dortaj3792 215827 mac 215827 bytes_out 1010614 215827 bytes_in 1690204 215827 station_ip 5.119.108.78 215827 port 105 215827 unique_id port 215827 remote_ip 10.8.0.10 215828 username sabaghnezhad 215828 mac 215828 bytes_out 170346 215828 bytes_in 713750 215828 station_ip 83.123.219.182 215828 port 93 215828 unique_id port 215828 remote_ip 10.8.0.94 215829 username motamedi9772 215829 mac 215829 bytes_out 1840976 215829 bytes_in 23983053 215829 station_ip 83.122.85.185 215829 port 60 215829 unique_id port 215829 remote_ip 10.8.1.182 215832 username barzegar8595 215832 mac 215832 bytes_out 81736 215832 bytes_in 155220 215832 station_ip 46.225.208.89 215832 port 88 215832 unique_id port 215832 remote_ip 10.8.0.170 215834 username barzegar 215834 mac 215834 bytes_out 0 215834 bytes_in 0 215834 station_ip 5.120.112.15 215834 port 64 215834 unique_id port 215834 remote_ip 10.8.1.30 215837 username barzegar 215837 mac 215837 bytes_out 17898 215837 bytes_in 19899 215837 station_ip 5.120.112.15 215837 port 64 215837 unique_id port 215837 remote_ip 10.8.1.30 215838 username barzegar 215838 mac 215838 bytes_out 0 215838 bytes_in 0 215838 station_ip 5.120.112.15 215838 port 99 215838 unique_id port 215838 remote_ip 10.8.0.34 215839 username barzegar 215795 unique_id port 215800 username barzegar 215800 mac 215800 bytes_out 2686 215800 bytes_in 5287 215800 station_ip 5.120.101.104 215800 port 65 215800 unique_id port 215800 remote_ip 10.8.1.30 215803 username aminvpn 215803 mac 215803 bytes_out 0 215803 bytes_in 0 215803 station_ip 5.119.130.178 215803 port 99 215803 unique_id port 215807 username barzegar 215807 mac 215807 bytes_out 0 215807 bytes_in 0 215807 station_ip 5.120.101.104 215807 port 65 215807 unique_id port 215807 remote_ip 10.8.1.30 215809 username soleymani5056 215809 mac 215809 bytes_out 109582 215809 bytes_in 293315 215809 station_ip 5.120.128.201 215809 port 93 215809 unique_id port 215809 remote_ip 10.8.0.246 215812 username kalantary6037 215812 mac 215812 bytes_out 0 215812 bytes_in 0 215812 station_ip 37.129.185.248 215812 port 102 215812 unique_id port 215812 remote_ip 10.8.0.18 215813 username mostafa_es78 215813 mac 215813 bytes_out 0 215813 bytes_in 0 215813 station_ip 113.203.73.178 215813 port 99 215813 unique_id port 215813 remote_ip 10.8.0.42 215815 username motamedi9772 215815 mac 215815 bytes_out 4099497 215815 bytes_in 42968421 215815 station_ip 83.122.85.185 215815 port 60 215815 unique_id port 215815 remote_ip 10.8.1.182 215821 username barzegar8595 215821 mac 215821 bytes_out 0 215821 bytes_in 0 215821 station_ip 46.225.213.8 215821 port 95 215821 unique_id port 215821 remote_ip 10.8.0.170 215822 username motamedi9772 215822 mac 215822 bytes_out 0 215822 bytes_in 0 215822 station_ip 83.122.85.185 215822 port 60 215822 unique_id port 215822 remote_ip 10.8.1.182 215824 username yarmohamadi7916 215824 mac 215824 bytes_out 4699380 215824 bytes_in 32238245 215824 station_ip 5.120.37.57 215824 port 106 215824 unique_id port 215824 remote_ip 10.8.0.214 215826 username kalantary6037 215826 mac 215826 bytes_out 26697 215826 bytes_in 25494 215826 station_ip 37.129.237.92 215826 port 95 215826 unique_id port 215826 remote_ip 10.8.0.18 215830 username motamedi9772 215830 mac 215830 bytes_out 0 215830 bytes_in 0 215830 station_ip 83.122.85.185 215830 port 60 215830 unique_id port 215830 remote_ip 10.8.1.182 215831 username godarzi 215831 mac 215831 bytes_out 433450 215831 bytes_in 507833 215831 station_ip 5.202.65.237 215831 port 93 215831 unique_id port 215831 remote_ip 10.8.0.74 215833 username barzegar8595 215833 kill_reason Maximum check online fails reached 215833 mac 215833 bytes_out 0 215833 bytes_in 0 215833 station_ip 46.225.209.2 215833 port 93 215833 unique_id port 215835 username barzegar 215835 mac 215835 bytes_out 0 215835 bytes_in 0 215835 station_ip 5.120.112.15 215835 port 64 215835 unique_id port 215835 remote_ip 10.8.1.30 215836 username pourshad 215836 mac 215836 bytes_out 0 215836 bytes_in 0 215836 station_ip 5.120.100.246 215836 port 50 215836 unique_id port 215840 username motamedi9772 215840 mac 215840 bytes_out 0 215840 bytes_in 0 215840 station_ip 83.122.85.185 215840 port 60 215840 unique_id port 215840 remote_ip 10.8.1.182 215841 username barzegar 215841 mac 215841 bytes_out 0 215841 bytes_in 0 215841 station_ip 5.120.112.15 215841 port 60 215841 unique_id port 215841 remote_ip 10.8.1.30 215845 username yaghobi 215845 mac 215845 bytes_out 114406 215845 bytes_in 447464 215845 station_ip 83.123.252.248 215845 port 88 215845 unique_id port 215845 remote_ip 10.8.0.106 215848 username motamedi9772 215848 mac 215848 bytes_out 0 215848 bytes_in 0 215839 mac 215839 bytes_out 0 215839 bytes_in 0 215839 station_ip 5.120.112.15 215839 port 99 215839 unique_id port 215839 remote_ip 10.8.0.34 215842 username motamedi9772 215842 mac 215842 bytes_out 0 215842 bytes_in 0 215842 station_ip 83.122.85.185 215842 port 64 215842 unique_id port 215842 remote_ip 10.8.1.182 215844 username motamedi9772 215844 mac 215844 bytes_out 0 215844 bytes_in 0 215844 station_ip 83.122.85.185 215844 port 64 215844 unique_id port 215844 remote_ip 10.8.1.182 215846 username motamedi9772 215846 mac 215846 bytes_out 0 215846 bytes_in 0 215846 station_ip 83.122.85.185 215846 port 64 215846 unique_id port 215846 remote_ip 10.8.1.182 215851 username motamedi9772 215851 mac 215851 bytes_out 0 215851 bytes_in 0 215851 station_ip 83.122.85.185 215851 port 60 215851 unique_id port 215851 remote_ip 10.8.1.182 215855 username motamedi9772 215855 mac 215855 bytes_out 0 215855 bytes_in 0 215855 station_ip 83.122.85.185 215855 port 60 215855 unique_id port 215855 remote_ip 10.8.1.182 215856 username motamedi9772 215856 mac 215856 bytes_out 0 215856 bytes_in 0 215856 station_ip 83.122.85.185 215856 port 60 215856 unique_id port 215856 remote_ip 10.8.1.182 215858 username motamedi9772 215858 mac 215858 bytes_out 0 215858 bytes_in 0 215858 station_ip 83.122.85.185 215858 port 60 215858 unique_id port 215858 remote_ip 10.8.1.182 215860 username motamedi9772 215860 mac 215860 bytes_out 0 215860 bytes_in 0 215860 station_ip 83.122.85.185 215860 port 60 215860 unique_id port 215860 remote_ip 10.8.1.182 215861 username yaghobi 215861 mac 215861 bytes_out 95532 215861 bytes_in 318621 215861 station_ip 83.123.252.248 215861 port 103 215861 unique_id port 215861 remote_ip 10.8.0.106 215864 username barzegar 215864 mac 215864 bytes_out 0 215864 bytes_in 0 215864 station_ip 5.120.112.15 215864 port 64 215864 unique_id port 215864 remote_ip 10.8.1.30 215865 username motamedi9772 215865 mac 215865 bytes_out 0 215865 bytes_in 0 215865 station_ip 83.122.85.185 215865 port 60 215865 unique_id port 215865 remote_ip 10.8.1.182 215868 username charkhandaz3496 215868 mac 215868 bytes_out 0 215868 bytes_in 0 215868 station_ip 5.120.90.174 215868 port 88 215868 unique_id port 215868 remote_ip 10.8.0.218 215869 username motamedi9772 215869 mac 215869 bytes_out 0 215869 bytes_in 0 215869 station_ip 83.122.85.185 215869 port 60 215869 unique_id port 215869 remote_ip 10.8.1.182 215871 username motamedi9772 215871 mac 215871 bytes_out 0 215871 bytes_in 0 215871 station_ip 83.122.85.185 215871 port 60 215871 unique_id port 215871 remote_ip 10.8.1.182 215876 username motamedi9772 215876 mac 215876 bytes_out 0 215876 bytes_in 0 215876 station_ip 83.122.85.185 215876 port 88 215876 unique_id port 215876 remote_ip 10.8.0.86 215877 username motamedi9772 215877 mac 215877 bytes_out 0 215877 bytes_in 0 215877 station_ip 83.122.85.185 215877 port 88 215877 unique_id port 215877 remote_ip 10.8.0.86 215879 username motamedi9772 215879 mac 215879 bytes_out 0 215879 bytes_in 0 215879 station_ip 83.122.85.185 215879 port 88 215879 unique_id port 215879 remote_ip 10.8.0.86 215880 username motamedi9772 215880 mac 215880 bytes_out 0 215880 bytes_in 0 215880 station_ip 83.122.85.185 215880 port 88 215880 unique_id port 215880 remote_ip 10.8.0.86 215888 username motamedi9772 215888 mac 215888 bytes_out 0 215888 bytes_in 0 215888 station_ip 83.122.85.185 215847 unique_id port 215847 remote_ip 10.8.1.30 215849 username motamedi9772 215849 mac 215849 bytes_out 0 215849 bytes_in 0 215849 station_ip 83.122.85.185 215849 port 60 215849 unique_id port 215849 remote_ip 10.8.1.182 215850 username motamedi9772 215850 mac 215850 bytes_out 0 215850 bytes_in 0 215850 station_ip 83.122.85.185 215850 port 60 215850 unique_id port 215850 remote_ip 10.8.1.182 215854 username motamedi9772 215854 mac 215854 bytes_out 0 215854 bytes_in 0 215854 station_ip 83.122.85.185 215854 port 60 215854 unique_id port 215854 remote_ip 10.8.1.182 215857 username motamedi9772 215857 mac 215857 bytes_out 0 215857 bytes_in 0 215857 station_ip 83.122.85.185 215857 port 60 215857 unique_id port 215857 remote_ip 10.8.1.182 215859 username motamedi9772 215859 mac 215859 bytes_out 0 215859 bytes_in 0 215859 station_ip 83.122.85.185 215859 port 60 215859 unique_id port 215859 remote_ip 10.8.1.182 215862 username motamedi9772 215862 mac 215862 bytes_out 0 215862 bytes_in 0 215862 station_ip 83.122.85.185 215862 port 60 215862 unique_id port 215862 remote_ip 10.8.1.182 215870 username barzegar 215870 mac 215870 bytes_out 0 215870 bytes_in 0 215870 station_ip 5.120.112.15 215870 port 104 215870 unique_id port 215870 remote_ip 10.8.0.34 215872 username motamedi9772 215872 mac 215872 bytes_out 0 215872 bytes_in 0 215872 station_ip 83.122.85.185 215872 port 88 215872 unique_id port 215872 remote_ip 10.8.0.86 215874 username motamedi9772 215874 mac 215874 bytes_out 0 215874 bytes_in 0 215874 station_ip 83.122.85.185 215874 port 88 215874 unique_id port 215874 remote_ip 10.8.0.86 215875 username motamedi9772 215875 mac 215875 bytes_out 0 215875 bytes_in 0 215875 station_ip 83.122.85.185 215875 port 88 215875 unique_id port 215875 remote_ip 10.8.0.86 215883 username motamedi9772 215883 mac 215883 bytes_out 0 215883 bytes_in 0 215883 station_ip 83.122.85.185 215883 port 88 215883 unique_id port 215883 remote_ip 10.8.0.86 215885 username motamedi9772 215885 mac 215885 bytes_out 0 215885 bytes_in 0 215885 station_ip 83.122.85.185 215885 port 88 215885 unique_id port 215885 remote_ip 10.8.0.86 215887 username motamedi9772 215887 mac 215887 bytes_out 0 215887 bytes_in 0 215887 station_ip 83.122.85.185 215887 port 102 215887 unique_id port 215887 remote_ip 10.8.0.86 215889 username malekpoir 215889 mac 215889 bytes_out 4476636 215889 bytes_in 38583528 215889 station_ip 5.120.148.75 215889 port 100 215889 unique_id port 215889 remote_ip 10.8.0.178 215895 username motamedi9772 215895 mac 215895 bytes_out 0 215895 bytes_in 0 215895 station_ip 83.122.85.185 215895 port 97 215895 unique_id port 215895 remote_ip 10.8.0.86 215898 username motamedi9772 215898 mac 215898 bytes_out 0 215898 bytes_in 0 215898 station_ip 83.122.85.185 215898 port 100 215898 unique_id port 215898 remote_ip 10.8.0.86 215899 username motamedi9772 215899 mac 215899 bytes_out 0 215899 bytes_in 0 215899 station_ip 83.122.85.185 215899 port 104 215899 unique_id port 215899 remote_ip 10.8.0.86 215902 username motamedi9772 215902 mac 215902 bytes_out 0 215902 bytes_in 0 215902 station_ip 83.122.85.185 215902 port 100 215902 unique_id port 215902 remote_ip 10.8.0.86 215909 username motamedi9772 215909 mac 215909 bytes_out 0 215909 bytes_in 0 215909 station_ip 83.122.85.185 215909 port 99 215909 unique_id port 215909 remote_ip 10.8.0.86 215911 username motamedi9772 215911 mac 215848 station_ip 83.122.85.185 215848 port 60 215848 unique_id port 215848 remote_ip 10.8.1.182 215852 username farhad3 215852 mac 215852 bytes_out 1324896 215852 bytes_in 13337723 215852 station_ip 5.120.79.174 215852 port 99 215852 unique_id port 215852 remote_ip 10.8.0.98 215853 username khademi 215853 kill_reason Another user logged on this global unique id 215853 mac 215853 bytes_out 0 215853 bytes_in 0 215853 station_ip 5.202.0.17 215853 port 98 215853 unique_id port 215853 remote_ip 10.8.0.26 215863 username motamedi9772 215863 mac 215863 bytes_out 0 215863 bytes_in 0 215863 station_ip 83.122.85.185 215863 port 60 215863 unique_id port 215863 remote_ip 10.8.1.182 215866 username motamedi9772 215866 mac 215866 bytes_out 0 215866 bytes_in 0 215866 station_ip 83.122.85.185 215866 port 60 215866 unique_id port 215866 remote_ip 10.8.1.182 215867 username motamedi9772 215867 mac 215867 bytes_out 0 215867 bytes_in 0 215867 station_ip 83.122.85.185 215867 port 60 215867 unique_id port 215867 remote_ip 10.8.1.182 215873 username mohammadjavad 215873 mac 215873 bytes_out 893202 215873 bytes_in 12347409 215873 station_ip 83.122.224.222 215873 port 102 215873 unique_id port 215873 remote_ip 10.8.0.138 215878 username khalili2 215878 unique_id port 215878 terminate_cause Lost-Carrier 215878 bytes_out 1742569 215878 bytes_in 89240855 215878 station_ip 5.120.71.141 215878 port 15728656 215878 nas_port_type Virtual 215878 remote_ip 5.5.5.254 215881 username mosi 215881 kill_reason Another user logged on this global unique id 215881 mac 215881 bytes_out 0 215881 bytes_in 0 215881 station_ip 151.235.124.131 215881 port 97 215881 unique_id port 215882 username motamedi9772 215882 mac 215882 bytes_out 0 215882 bytes_in 0 215882 station_ip 83.122.85.185 215882 port 88 215882 unique_id port 215882 remote_ip 10.8.0.86 215884 username motamedi9772 215884 mac 215884 bytes_out 0 215884 bytes_in 0 215884 station_ip 83.122.85.185 215884 port 88 215884 unique_id port 215884 remote_ip 10.8.0.86 215886 username motamedi9772 215886 mac 215886 bytes_out 0 215886 bytes_in 0 215886 station_ip 83.122.85.185 215886 port 102 215886 unique_id port 215886 remote_ip 10.8.0.86 215890 username yaghobi 215890 mac 215890 bytes_out 10376 215890 bytes_in 16800 215890 station_ip 83.123.252.248 215890 port 88 215890 unique_id port 215890 remote_ip 10.8.0.106 215892 username motamedi9772 215892 mac 215892 bytes_out 0 215892 bytes_in 0 215892 station_ip 83.122.85.185 215892 port 88 215892 unique_id port 215892 remote_ip 10.8.0.86 215893 username mosi 215893 mac 215893 bytes_out 0 215893 bytes_in 0 215893 station_ip 151.235.124.131 215893 port 97 215893 unique_id port 215894 username motamedi9772 215894 mac 215894 bytes_out 0 215894 bytes_in 0 215894 station_ip 83.122.85.185 215894 port 97 215894 unique_id port 215894 remote_ip 10.8.0.86 215896 username mosi 215896 mac 215896 bytes_out 15787 215896 bytes_in 118456 215896 station_ip 37.137.28.246 215896 port 100 215896 unique_id port 215896 remote_ip 10.8.0.38 215903 username kalantary6037 215903 mac 215903 bytes_out 56845 215903 bytes_in 63778 215903 station_ip 37.129.242.92 215903 port 99 215903 unique_id port 215903 remote_ip 10.8.0.18 215904 username barzegar 215904 kill_reason Maximum check online fails reached 215904 mac 215904 bytes_out 0 215904 bytes_in 0 215904 station_ip 5.120.112.15 215904 port 104 215904 unique_id port 215906 username motamedi9772 215906 mac 215906 bytes_out 0 215906 bytes_in 0 215888 port 102 215888 unique_id port 215888 remote_ip 10.8.0.86 215891 username motamedi9772 215891 mac 215891 bytes_out 0 215891 bytes_in 0 215891 station_ip 83.122.85.185 215891 port 100 215891 unique_id port 215891 remote_ip 10.8.0.86 215897 username hosseine 215897 mac 215897 bytes_out 795227 215897 bytes_in 6119398 215897 station_ip 83.122.202.240 215897 port 99 215897 unique_id port 215897 remote_ip 10.8.0.126 215900 username barzegar 215900 mac 215900 bytes_out 2946 215900 bytes_in 4794 215900 station_ip 5.120.112.15 215900 port 100 215900 unique_id port 215900 remote_ip 10.8.0.34 215901 username godarzi 215901 mac 215901 bytes_out 4233512 215901 bytes_in 33842923 215901 station_ip 5.202.65.237 215901 port 103 215901 unique_id port 215901 remote_ip 10.8.0.74 215905 username motamedi9772 215905 mac 215905 bytes_out 0 215905 bytes_in 0 215905 station_ip 83.122.85.185 215905 port 99 215905 unique_id port 215905 remote_ip 10.8.0.86 215913 username motamedi9772 215913 mac 215913 bytes_out 0 215913 bytes_in 0 215913 station_ip 83.122.85.185 215913 port 99 215913 unique_id port 215913 remote_ip 10.8.0.86 215917 username motamedi9772 215917 mac 215917 bytes_out 0 215917 bytes_in 0 215917 station_ip 83.122.85.185 215917 port 99 215917 unique_id port 215917 remote_ip 10.8.0.86 215918 username motamedi9772 215918 mac 215918 bytes_out 0 215918 bytes_in 0 215918 station_ip 83.122.85.185 215918 port 105 215918 unique_id port 215918 remote_ip 10.8.0.86 215920 username esmaeilkazemi 215920 mac 215920 bytes_out 0 215920 bytes_in 0 215920 station_ip 37.129.118.48 215920 port 103 215920 unique_id port 215920 remote_ip 10.8.0.66 215923 username motamedi9772 215923 mac 215923 bytes_out 0 215923 bytes_in 0 215923 station_ip 83.122.85.185 215923 port 103 215923 unique_id port 215923 remote_ip 10.8.0.86 215925 username barzegar 215925 mac 215925 bytes_out 0 215925 bytes_in 0 215925 station_ip 5.120.157.225 215925 port 105 215925 unique_id port 215925 remote_ip 10.8.0.34 215926 username motamedi9772 215926 mac 215926 bytes_out 0 215926 bytes_in 0 215926 station_ip 83.122.85.185 215926 port 103 215926 unique_id port 215926 remote_ip 10.8.0.86 215932 username motamedi9772 215932 mac 215932 bytes_out 0 215932 bytes_in 0 215932 station_ip 83.122.85.185 215932 port 103 215932 unique_id port 215932 remote_ip 10.8.0.86 215933 username motamedi9772 215933 mac 215933 bytes_out 0 215933 bytes_in 0 215933 station_ip 83.122.85.185 215933 port 103 215933 unique_id port 215933 remote_ip 10.8.0.86 215944 username motamedi9772 215944 mac 215944 bytes_out 0 215944 bytes_in 0 215944 station_ip 83.122.85.185 215944 port 99 215944 unique_id port 215944 remote_ip 10.8.0.86 215948 username motamedi9772 215948 mac 215948 bytes_out 0 215948 bytes_in 0 215948 station_ip 83.122.85.185 215948 port 95 215948 unique_id port 215948 remote_ip 10.8.0.86 215951 username motamedi9772 215951 mac 215951 bytes_out 0 215951 bytes_in 0 215951 station_ip 83.122.85.185 215951 port 99 215951 unique_id port 215951 remote_ip 10.8.0.86 215958 username motamedi9772 215958 mac 215958 bytes_out 0 215958 bytes_in 0 215958 station_ip 83.122.85.185 215958 port 99 215958 unique_id port 215958 remote_ip 10.8.0.86 215959 username motamedi9772 215959 mac 215959 bytes_out 0 215959 bytes_in 0 215959 station_ip 83.122.85.185 215959 port 99 215959 unique_id port 215959 remote_ip 10.8.0.86 215906 station_ip 83.122.85.185 215906 port 99 215906 unique_id port 215906 remote_ip 10.8.0.86 215907 username motamedi9772 215907 mac 215907 bytes_out 0 215907 bytes_in 0 215907 station_ip 83.122.85.185 215907 port 99 215907 unique_id port 215907 remote_ip 10.8.0.86 215908 username motamedi9772 215908 mac 215908 bytes_out 0 215908 bytes_in 0 215908 station_ip 83.122.85.185 215908 port 99 215908 unique_id port 215908 remote_ip 10.8.0.86 215910 username khademi 215910 kill_reason Another user logged on this global unique id 215910 mac 215910 bytes_out 0 215910 bytes_in 0 215910 station_ip 5.202.0.17 215910 port 98 215910 unique_id port 215915 username barzegar 215915 mac 215915 bytes_out 0 215915 bytes_in 0 215915 station_ip 5.120.157.225 215915 port 99 215915 unique_id port 215915 remote_ip 10.8.0.34 215916 username motamedi9772 215916 mac 215916 bytes_out 0 215916 bytes_in 0 215916 station_ip 83.122.85.185 215916 port 99 215916 unique_id port 215916 remote_ip 10.8.0.86 215922 username motamedi9772 215922 mac 215922 bytes_out 0 215922 bytes_in 0 215922 station_ip 83.122.85.185 215922 port 103 215922 unique_id port 215922 remote_ip 10.8.0.86 215927 username khademi 215927 kill_reason Another user logged on this global unique id 215927 mac 215927 bytes_out 0 215927 bytes_in 0 215927 station_ip 5.202.0.17 215927 port 98 215927 unique_id port 215928 username motamedi9772 215928 mac 215928 bytes_out 0 215928 bytes_in 0 215928 station_ip 83.122.85.185 215928 port 103 215928 unique_id port 215928 remote_ip 10.8.0.86 215930 username motamedi9772 215930 mac 215930 bytes_out 0 215930 bytes_in 0 215930 station_ip 83.122.85.185 215930 port 103 215930 unique_id port 215930 remote_ip 10.8.0.86 215935 username motamedi9772 215935 mac 215935 bytes_out 0 215935 bytes_in 0 215935 station_ip 83.122.85.185 215935 port 103 215935 unique_id port 215935 remote_ip 10.8.0.86 215937 username mosi 215937 mac 215937 bytes_out 0 215937 bytes_in 0 215937 station_ip 151.235.124.131 215937 port 97 215937 unique_id port 215937 remote_ip 10.8.0.38 215938 username motamedi9772 215938 mac 215938 bytes_out 0 215938 bytes_in 0 215938 station_ip 83.122.85.185 215938 port 103 215938 unique_id port 215938 remote_ip 10.8.0.86 215941 username meysam 215941 mac 215941 bytes_out 504441 215941 bytes_in 6107997 215941 station_ip 5.119.81.153 215941 port 95 215941 unique_id port 215941 remote_ip 10.8.0.102 215942 username soleymani5056 215942 mac 215942 bytes_out 0 215942 bytes_in 0 215942 station_ip 5.119.103.47 215942 port 99 215942 unique_id port 215942 remote_ip 10.8.0.246 215943 username motamedi9772 215943 mac 215943 bytes_out 0 215943 bytes_in 0 215943 station_ip 83.122.85.185 215943 port 99 215943 unique_id port 215943 remote_ip 10.8.0.86 215945 username barzegar 215945 mac 215945 bytes_out 0 215945 bytes_in 0 215945 station_ip 5.120.79.62 215945 port 64 215945 unique_id port 215945 remote_ip 10.8.1.30 215947 username soleymani5056 215947 mac 215947 bytes_out 0 215947 bytes_in 0 215947 station_ip 5.120.82.46 215947 port 95 215947 unique_id port 215947 remote_ip 10.8.0.246 215949 username motamedi9772 215949 mac 215949 bytes_out 0 215949 bytes_in 0 215949 station_ip 83.122.85.185 215949 port 95 215949 unique_id port 215949 remote_ip 10.8.0.86 215950 username motamedi9772 215950 mac 215950 bytes_out 0 215950 bytes_in 0 215950 station_ip 83.122.85.185 215950 port 95 215950 unique_id port 215911 bytes_out 0 215911 bytes_in 0 215911 station_ip 83.122.85.185 215911 port 99 215911 unique_id port 215911 remote_ip 10.8.0.86 215912 username pourshad 215912 mac 215912 bytes_out 0 215912 bytes_in 0 215912 station_ip 5.120.100.246 215912 port 95 215912 unique_id port 215912 remote_ip 10.8.0.122 215914 username motamedi9772 215914 mac 215914 bytes_out 0 215914 bytes_in 0 215914 station_ip 83.122.85.185 215914 port 100 215914 unique_id port 215914 remote_ip 10.8.0.86 215919 username barzegar 215919 kill_reason Maximum check online fails reached 215919 mac 215919 bytes_out 0 215919 bytes_in 0 215919 station_ip 5.120.157.225 215919 port 100 215919 unique_id port 215921 username esmaeilkazemi 215921 mac 215921 bytes_out 0 215921 bytes_in 0 215921 station_ip 37.129.118.48 215921 port 105 215921 unique_id port 215921 remote_ip 10.8.0.66 215924 username aminvpn 215924 kill_reason Another user logged on this global unique id 215924 mac 215924 bytes_out 0 215924 bytes_in 0 215924 station_ip 5.119.130.178 215924 port 88 215924 unique_id port 215924 remote_ip 10.8.0.58 215929 username motamedi9772 215929 mac 215929 bytes_out 0 215929 bytes_in 0 215929 station_ip 83.122.85.185 215929 port 103 215929 unique_id port 215929 remote_ip 10.8.0.86 215931 username esmaeilkazemi 215931 mac 215931 bytes_out 1205145 215931 bytes_in 13813015 215931 station_ip 37.129.118.48 215931 port 106 215931 unique_id port 215931 remote_ip 10.8.0.66 215934 username pourshad 215934 mac 215934 bytes_out 333789 215934 bytes_in 3214131 215934 station_ip 5.120.100.246 215934 port 95 215934 unique_id port 215934 remote_ip 10.8.0.122 215936 username rajaei 215936 mac 215936 bytes_out 0 215936 bytes_in 0 215936 station_ip 5.200.111.203 215936 port 103 215936 unique_id port 215936 remote_ip 10.8.0.82 215939 username motamedi9772 215939 mac 215939 bytes_out 0 215939 bytes_in 0 215939 station_ip 83.122.85.185 215939 port 97 215939 unique_id port 215939 remote_ip 10.8.0.86 215940 username motamedi9772 215940 mac 215940 bytes_out 0 215940 bytes_in 0 215940 station_ip 83.122.85.185 215940 port 97 215940 unique_id port 215940 remote_ip 10.8.0.86 215946 username motamedi9772 215946 mac 215946 bytes_out 0 215946 bytes_in 0 215946 station_ip 83.122.85.185 215946 port 99 215946 unique_id port 215946 remote_ip 10.8.0.86 215954 username motamedi9772 215954 mac 215954 bytes_out 0 215954 bytes_in 0 215954 station_ip 83.122.85.185 215954 port 99 215954 unique_id port 215954 remote_ip 10.8.0.86 215955 username motamedi9772 215955 mac 215955 bytes_out 0 215955 bytes_in 0 215955 station_ip 83.122.85.185 215955 port 99 215955 unique_id port 215955 remote_ip 10.8.0.86 215956 username motamedi9772 215956 mac 215956 bytes_out 0 215956 bytes_in 0 215956 station_ip 83.122.85.185 215956 port 99 215956 unique_id port 215956 remote_ip 10.8.0.86 215978 username kalantary6037 215978 mac 215978 bytes_out 0 215978 bytes_in 0 215978 station_ip 37.129.249.200 215978 port 97 215978 unique_id port 215978 remote_ip 10.8.0.18 215979 username motamedi9772 215979 mac 215979 bytes_out 35279 215979 bytes_in 120937 215979 station_ip 83.122.85.185 215979 port 103 215979 unique_id port 215979 remote_ip 10.8.0.86 215981 username motamedi9772 215981 mac 215981 bytes_out 0 215981 bytes_in 0 215981 station_ip 83.122.85.185 215981 port 97 215981 unique_id port 215981 remote_ip 10.8.0.86 215982 username motamedi9772 215982 mac 215982 bytes_out 0 215950 remote_ip 10.8.0.86 215952 username motamedi9772 215952 mac 215952 bytes_out 0 215952 bytes_in 0 215952 station_ip 83.122.85.185 215952 port 99 215952 unique_id port 215952 remote_ip 10.8.0.86 215953 username motamedi9772 215953 mac 215953 bytes_out 0 215953 bytes_in 0 215953 station_ip 83.122.85.185 215953 port 99 215953 unique_id port 215953 remote_ip 10.8.0.86 215957 username barzegar 215957 mac 215957 bytes_out 0 215957 bytes_in 0 215957 station_ip 5.120.79.62 215957 port 64 215957 unique_id port 215957 remote_ip 10.8.1.30 215962 username motamedi9772 215962 mac 215962 bytes_out 0 215962 bytes_in 0 215962 station_ip 83.122.85.185 215962 port 99 215962 unique_id port 215962 remote_ip 10.8.0.86 215964 username motamedi9772 215964 mac 215964 bytes_out 0 215964 bytes_in 0 215964 station_ip 83.122.85.185 215964 port 97 215964 unique_id port 215964 remote_ip 10.8.0.86 215965 username motamedi9772 215965 mac 215965 bytes_out 0 215965 bytes_in 0 215965 station_ip 83.122.85.185 215965 port 97 215965 unique_id port 215965 remote_ip 10.8.0.86 215966 username pourshad 215966 mac 215966 bytes_out 83908 215966 bytes_in 335086 215966 station_ip 5.120.100.246 215966 port 60 215966 unique_id port 215966 remote_ip 10.8.1.10 215967 username motamedi9772 215967 mac 215967 bytes_out 0 215967 bytes_in 0 215967 station_ip 83.122.85.185 215967 port 97 215967 unique_id port 215967 remote_ip 10.8.0.86 215968 username motamedi9772 215968 mac 215968 bytes_out 0 215968 bytes_in 0 215968 station_ip 83.122.85.185 215968 port 97 215968 unique_id port 215968 remote_ip 10.8.0.86 215969 username motamedi9772 215969 mac 215969 bytes_out 0 215969 bytes_in 0 215969 station_ip 83.122.85.185 215969 port 97 215969 unique_id port 215969 remote_ip 10.8.0.86 215970 username motamedi9772 215970 mac 215970 bytes_out 0 215970 bytes_in 0 215970 station_ip 83.122.85.185 215970 port 97 215970 unique_id port 215970 remote_ip 10.8.0.86 215971 username barzegar 215971 mac 215971 bytes_out 0 215971 bytes_in 0 215971 station_ip 5.120.79.62 215971 port 99 215971 unique_id port 215971 remote_ip 10.8.0.34 215975 username motamedi9772 215975 mac 215975 bytes_out 0 215975 bytes_in 0 215975 station_ip 83.122.85.185 215975 port 103 215975 unique_id port 215975 remote_ip 10.8.0.86 215977 username barzegar 215977 mac 215977 bytes_out 0 215977 bytes_in 0 215977 station_ip 5.120.79.62 215977 port 106 215977 unique_id port 215977 remote_ip 10.8.0.34 215980 username motamedi9772 215980 mac 215980 bytes_out 0 215980 bytes_in 0 215980 station_ip 83.122.85.185 215980 port 97 215980 unique_id port 215980 remote_ip 10.8.0.86 215984 username barzegar 215984 mac 215984 bytes_out 0 215984 bytes_in 0 215984 station_ip 5.120.79.62 215984 port 103 215984 unique_id port 215984 remote_ip 10.8.0.34 215985 username motamedi9772 215985 mac 215985 bytes_out 0 215985 bytes_in 0 215985 station_ip 83.122.85.185 215985 port 97 215985 unique_id port 215985 remote_ip 10.8.0.86 215986 username motamedi9772 215986 mac 215986 bytes_out 0 215986 bytes_in 0 215986 station_ip 83.122.85.185 215986 port 97 215986 unique_id port 215986 remote_ip 10.8.0.86 215989 username aminvpn 215989 kill_reason Another user logged on this global unique id 215989 mac 215989 bytes_out 0 215989 bytes_in 0 215989 station_ip 5.119.130.178 215989 port 88 215989 unique_id port 215990 username tahmorsi 215990 mac 215990 bytes_out 0 215960 username aminvpn 215960 kill_reason Another user logged on this global unique id 215960 mac 215960 bytes_out 0 215960 bytes_in 0 215960 station_ip 5.119.130.178 215960 port 88 215960 unique_id port 215961 username barzegar 215961 mac 215961 bytes_out 2225 215961 bytes_in 5269 215961 station_ip 5.120.79.62 215961 port 64 215961 unique_id port 215961 remote_ip 10.8.1.30 215963 username saeeddamghani 215963 mac 215963 bytes_out 1177824 215963 bytes_in 14195348 215963 station_ip 217.60.175.208 215963 port 97 215963 unique_id port 215963 remote_ip 10.8.0.162 215972 username motamedi9772 215972 mac 215972 bytes_out 0 215972 bytes_in 0 215972 station_ip 83.122.85.185 215972 port 97 215972 unique_id port 215972 remote_ip 10.8.0.86 215973 username pourshad 215973 mac 215973 bytes_out 338724 215973 bytes_in 4280734 215973 station_ip 5.120.100.246 215973 port 60 215973 unique_id port 215973 remote_ip 10.8.1.10 215974 username motamedi9772 215974 mac 215974 bytes_out 0 215974 bytes_in 0 215974 station_ip 83.122.85.185 215974 port 103 215974 unique_id port 215974 remote_ip 10.8.0.86 215976 username khademi 215976 kill_reason Another user logged on this global unique id 215976 mac 215976 bytes_out 0 215976 bytes_in 0 215976 station_ip 5.202.0.17 215976 port 98 215976 unique_id port 215987 username khorasani9135 215987 mac 215987 bytes_out 2232503 215987 bytes_in 8902597 215987 station_ip 83.123.215.186 215987 port 89 215987 unique_id port 215987 remote_ip 10.8.0.90 215991 username yaghobi 215991 mac 215991 bytes_out 0 215991 bytes_in 0 215991 station_ip 83.123.252.248 215991 port 89 215991 unique_id port 215991 remote_ip 10.8.0.106 215994 username motamedi9772 215994 mac 215994 bytes_out 0 215994 bytes_in 0 215994 station_ip 83.122.85.185 215994 port 89 215994 unique_id port 215994 remote_ip 10.8.0.86 215996 username motamedi9772 215996 mac 215996 bytes_out 0 215996 bytes_in 0 215996 station_ip 83.122.85.185 215996 port 102 215996 unique_id port 215996 remote_ip 10.8.0.86 215998 username yaghobi 215998 mac 215998 bytes_out 0 215998 bytes_in 0 215998 station_ip 83.123.252.248 215998 port 95 215998 unique_id port 215998 remote_ip 10.8.0.106 216000 username aminvpns6 216000 kill_reason Another user logged on this global unique id 216000 mac 216000 bytes_out 0 216000 bytes_in 0 216000 station_ip 5.119.236.81 216000 port 103 216000 unique_id port 216000 remote_ip 10.8.0.234 216001 username motamedi9772 216001 mac 216001 bytes_out 0 216001 bytes_in 0 216001 station_ip 83.122.85.185 216001 port 89 216001 unique_id port 216001 remote_ip 10.8.0.86 216003 username saeeddamghani 216003 mac 216003 bytes_out 0 216003 bytes_in 0 216003 station_ip 217.60.175.208 216003 port 97 216003 unique_id port 216003 remote_ip 10.8.0.162 216009 username mohammadjavad 216009 kill_reason Another user logged on this global unique id 216009 mac 216009 bytes_out 0 216009 bytes_in 0 216009 station_ip 37.129.138.252 216009 port 105 216009 unique_id port 216009 remote_ip 10.8.0.138 216012 username malekpoir 216012 mac 216012 bytes_out 0 216012 bytes_in 0 216012 station_ip 5.120.148.75 216012 port 97 216012 unique_id port 216012 remote_ip 10.8.0.178 216013 username motamedi9772 216013 mac 216013 bytes_out 0 216013 bytes_in 0 216013 station_ip 83.122.85.185 216013 port 97 216013 unique_id port 216013 remote_ip 10.8.0.86 216014 username motamedi9772 216014 mac 216014 bytes_out 0 216014 bytes_in 0 216014 station_ip 83.122.85.185 216014 port 97 215982 bytes_in 0 215982 station_ip 83.122.85.185 215982 port 97 215982 unique_id port 215982 remote_ip 10.8.0.86 215983 username motamedi9772 215983 mac 215983 bytes_out 0 215983 bytes_in 0 215983 station_ip 83.122.85.185 215983 port 97 215983 unique_id port 215983 remote_ip 10.8.0.86 215988 username yaghobi 215988 mac 215988 bytes_out 0 215988 bytes_in 0 215988 station_ip 83.123.252.248 215988 port 102 215988 unique_id port 215988 remote_ip 10.8.0.106 215999 username motamedi9772 215999 mac 215999 bytes_out 0 215999 bytes_in 0 215999 station_ip 83.122.85.185 215999 port 102 215999 unique_id port 215999 remote_ip 10.8.0.86 216005 username motamedi9772 216005 mac 216005 bytes_out 0 216005 bytes_in 0 216005 station_ip 83.122.85.185 216005 port 95 216005 unique_id port 216005 remote_ip 10.8.0.86 216008 username aminvpn 216008 kill_reason Another user logged on this global unique id 216008 mac 216008 bytes_out 0 216008 bytes_in 0 216008 station_ip 5.119.130.178 216008 port 88 216008 unique_id port 216011 username motamedi9772 216011 mac 216011 bytes_out 0 216011 bytes_in 0 216011 station_ip 83.122.85.185 216011 port 95 216011 unique_id port 216011 remote_ip 10.8.0.86 216018 username aminvpns6 216018 mac 216018 bytes_out 0 216018 bytes_in 0 216018 station_ip 5.119.236.81 216018 port 103 216018 unique_id port 216021 username arash 216021 mac 216021 bytes_out 0 216021 bytes_in 0 216021 station_ip 37.27.2.123 216021 port 95 216021 unique_id port 216021 remote_ip 10.8.0.206 216022 username aminvpn 216022 kill_reason Another user logged on this global unique id 216022 mac 216022 bytes_out 0 216022 bytes_in 0 216022 station_ip 5.119.130.178 216022 port 88 216022 unique_id port 216023 username malekpoir 216023 mac 216023 bytes_out 2589794 216023 bytes_in 23916483 216023 station_ip 5.120.22.33 216023 port 97 216023 unique_id port 216023 remote_ip 10.8.0.178 216024 username mohammadjavad 216024 mac 216024 bytes_out 0 216024 bytes_in 0 216024 station_ip 37.129.138.252 216024 port 105 216024 unique_id port 216026 username aminvpn 216026 mac 216026 bytes_out 0 216026 bytes_in 0 216026 station_ip 5.119.130.178 216026 port 88 216026 unique_id port 216029 username mosi 216029 mac 216029 bytes_out 13966 216029 bytes_in 37898 216029 station_ip 5.62.214.141 216029 port 103 216029 unique_id port 216029 remote_ip 10.8.0.38 216031 username khorasani9135 216031 kill_reason Another user logged on this global unique id 216031 mac 216031 bytes_out 0 216031 bytes_in 0 216031 station_ip 83.123.215.186 216031 port 89 216031 unique_id port 216031 remote_ip 10.8.0.90 216034 username motamedi9772 216034 kill_reason Another user logged on this global unique id 216034 mac 216034 bytes_out 0 216034 bytes_in 0 216034 station_ip 83.122.85.185 216034 port 102 216034 unique_id port 216036 username hamid1 216036 mac 216036 bytes_out 148146 216036 bytes_in 412665 216036 station_ip 5.119.169.139 216036 port 88 216036 unique_id port 216036 remote_ip 10.8.0.194 216037 username barzegar 216037 mac 216037 bytes_out 0 216037 bytes_in 0 216037 station_ip 5.119.217.163 216037 port 103 216037 unique_id port 216037 remote_ip 10.8.0.34 216042 username soleymani5056 216042 mac 216042 bytes_out 221192 216042 bytes_in 1768091 216042 station_ip 5.120.178.76 216042 port 103 216042 unique_id port 216042 remote_ip 10.8.0.246 216045 username barzegar 216045 mac 216045 bytes_out 25601 216045 bytes_in 86620 216045 station_ip 5.119.217.163 216045 port 88 215990 bytes_in 0 215990 station_ip 86.57.7.94 215990 port 95 215990 unique_id port 215990 remote_ip 10.8.0.210 215992 username motamedi9772 215992 mac 215992 bytes_out 0 215992 bytes_in 0 215992 station_ip 83.122.85.185 215992 port 97 215992 unique_id port 215992 remote_ip 10.8.0.86 215993 username motamedi9772 215993 mac 215993 bytes_out 0 215993 bytes_in 0 215993 station_ip 83.122.85.185 215993 port 89 215993 unique_id port 215993 remote_ip 10.8.0.86 215995 username barzegar 215995 mac 215995 bytes_out 0 215995 bytes_in 0 215995 station_ip 5.120.79.62 215995 port 60 215995 unique_id port 215995 remote_ip 10.8.1.30 215997 username nasiripour0935 215997 mac 215997 bytes_out 386333 215997 bytes_in 3798273 215997 station_ip 83.123.151.95 215997 port 89 215997 unique_id port 215997 remote_ip 10.8.0.22 216002 username motamedi9772 216002 mac 216002 bytes_out 0 216002 bytes_in 0 216002 station_ip 83.122.85.185 216002 port 89 216002 unique_id port 216002 remote_ip 10.8.0.86 216004 username barzegar 216004 mac 216004 bytes_out 0 216004 bytes_in 0 216004 station_ip 5.120.79.62 216004 port 60 216004 unique_id port 216004 remote_ip 10.8.1.30 216006 username motamedi9772 216006 mac 216006 bytes_out 0 216006 bytes_in 0 216006 station_ip 83.122.85.185 216006 port 95 216006 unique_id port 216006 remote_ip 10.8.0.86 216007 username motamedi9772 216007 mac 216007 bytes_out 0 216007 bytes_in 0 216007 station_ip 83.122.85.185 216007 port 95 216007 unique_id port 216007 remote_ip 10.8.0.86 216010 username motamedi9772 216010 mac 216010 bytes_out 0 216010 bytes_in 0 216010 station_ip 83.122.85.185 216010 port 95 216010 unique_id port 216010 remote_ip 10.8.0.86 216015 username malekpoir 216015 mac 216015 bytes_out 241449 216015 bytes_in 2298439 216015 station_ip 5.120.22.33 216015 port 95 216015 unique_id port 216015 remote_ip 10.8.0.178 216016 username motamedi9772 216016 mac 216016 bytes_out 0 216016 bytes_in 0 216016 station_ip 83.122.85.185 216016 port 95 216016 unique_id port 216016 remote_ip 10.8.0.86 216017 username motamedi9772 216017 mac 216017 bytes_out 0 216017 bytes_in 0 216017 station_ip 83.122.85.185 216017 port 95 216017 unique_id port 216017 remote_ip 10.8.0.86 216019 username mohammadjavad 216019 kill_reason Another user logged on this global unique id 216019 mac 216019 bytes_out 0 216019 bytes_in 0 216019 station_ip 37.129.138.252 216019 port 105 216019 unique_id port 216025 username aminvpn 216025 kill_reason Another user logged on this global unique id 216025 mac 216025 bytes_out 0 216025 bytes_in 0 216025 station_ip 5.119.130.178 216025 port 88 216025 unique_id port 216027 username barzegar 216027 mac 216027 bytes_out 0 216027 bytes_in 0 216027 station_ip 5.119.210.181 216027 port 60 216027 unique_id port 216027 remote_ip 10.8.1.30 216028 username barzegar 216028 mac 216028 bytes_out 2525 216028 bytes_in 4834 216028 station_ip 5.119.210.181 216028 port 88 216028 unique_id port 216028 remote_ip 10.8.0.34 216033 username yaghobi 216033 mac 216033 bytes_out 0 216033 bytes_in 0 216033 station_ip 83.123.160.208 216033 port 105 216033 unique_id port 216033 remote_ip 10.8.0.106 216035 username milan 216035 mac 216035 bytes_out 0 216035 bytes_in 0 216035 station_ip 5.120.139.15 216035 port 62 216035 unique_id port 216035 remote_ip 10.8.1.22 216039 username dortaj3792 216039 mac 216039 bytes_out 3095644 216039 bytes_in 32938612 216039 station_ip 5.119.108.78 216039 port 95 216014 unique_id port 216014 remote_ip 10.8.0.86 216020 username saeeddamghani 216020 mac 216020 bytes_out 0 216020 bytes_in 0 216020 station_ip 217.60.175.208 216020 port 89 216020 unique_id port 216020 remote_ip 10.8.0.162 216030 username motamedi9772 216030 kill_reason Another user logged on this global unique id 216030 mac 216030 bytes_out 0 216030 bytes_in 0 216030 station_ip 83.122.85.185 216030 port 102 216030 unique_id port 216030 remote_ip 10.8.0.86 216032 username yaghobi 216032 mac 216032 bytes_out 107325 216032 bytes_in 88616 216032 station_ip 83.123.160.208 216032 port 103 216032 unique_id port 216032 remote_ip 10.8.0.106 216038 username motamedi9772 216038 mac 216038 bytes_out 0 216038 bytes_in 0 216038 station_ip 83.122.85.185 216038 port 102 216038 unique_id port 216044 username barzegar 216044 mac 216044 bytes_out 0 216044 bytes_in 0 216044 station_ip 5.119.217.163 216044 port 88 216044 unique_id port 216044 remote_ip 10.8.0.34 216047 username alipour1506 216047 mac 216047 bytes_out 0 216047 bytes_in 0 216047 station_ip 83.123.198.115 216047 port 96 216047 unique_id port 216047 remote_ip 10.8.0.46 216049 username alipour1506 216049 kill_reason Another user logged on this global unique id 216049 mac 216049 bytes_out 0 216049 bytes_in 0 216049 station_ip 94.176.8.78 216049 port 103 216049 unique_id port 216049 remote_ip 10.8.0.46 216055 username alipour1506 216055 kill_reason Another user logged on this global unique id 216055 mac 216055 bytes_out 0 216055 bytes_in 0 216055 station_ip 94.176.8.78 216055 port 103 216055 unique_id port 216057 username farhad3 216057 kill_reason Another user logged on this global unique id 216057 mac 216057 bytes_out 0 216057 bytes_in 0 216057 station_ip 5.120.79.174 216057 port 88 216057 unique_id port 216057 remote_ip 10.8.0.98 216060 username khademi 216060 kill_reason Another user logged on this global unique id 216060 mac 216060 bytes_out 0 216060 bytes_in 0 216060 station_ip 5.202.0.17 216060 port 98 216060 unique_id port 216065 username pourshad 216065 mac 216065 bytes_out 0 216065 bytes_in 0 216065 station_ip 5.120.100.246 216065 port 96 216065 unique_id port 216065 remote_ip 10.8.0.122 216066 username pourshad 216066 mac 216066 bytes_out 0 216066 bytes_in 0 216066 station_ip 5.120.100.246 216066 port 109 216066 unique_id port 216066 remote_ip 10.8.0.122 216068 username motamedi9772 216068 mac 216068 bytes_out 0 216068 bytes_in 0 216068 station_ip 83.122.19.17 216068 port 108 216068 unique_id port 216068 remote_ip 10.8.0.86 216069 username barzegar 216069 mac 216069 bytes_out 0 216069 bytes_in 0 216069 station_ip 5.119.217.163 216069 port 108 216069 unique_id port 216069 remote_ip 10.8.0.34 216073 username mehrpoyan101 216073 mac 216073 bytes_out 0 216073 bytes_in 0 216073 station_ip 5.120.59.237 216073 port 109 216073 unique_id port 216073 remote_ip 10.8.0.134 216074 username arash 216074 mac 216074 bytes_out 1916421 216074 bytes_in 17378908 216074 station_ip 37.27.2.123 216074 port 107 216074 unique_id port 216074 remote_ip 10.8.0.206 216077 username fezealinaghi 216077 mac 216077 bytes_out 0 216077 bytes_in 0 216077 station_ip 83.122.106.228 216077 port 99 216077 unique_id port 216077 remote_ip 10.8.0.14 216079 username arash 216079 mac 216079 bytes_out 0 216079 bytes_in 0 216079 station_ip 37.27.2.123 216079 port 109 216079 unique_id port 216079 remote_ip 10.8.0.206 216085 username barzegar 216085 mac 216085 bytes_out 0 216085 bytes_in 0 216039 unique_id port 216039 remote_ip 10.8.0.10 216040 username khorasani9135 216040 kill_reason Another user logged on this global unique id 216040 mac 216040 bytes_out 0 216040 bytes_in 0 216040 station_ip 83.123.215.186 216040 port 89 216040 unique_id port 216041 username khalili2 216041 unique_id port 216041 terminate_cause Lost-Carrier 216041 bytes_out 4769370 216041 bytes_in 227895442 216041 station_ip 5.120.40.128 216041 port 15728663 216041 nas_port_type Virtual 216041 remote_ip 5.5.5.250 216043 username hamid1 216043 mac 216043 bytes_out 239198 216043 bytes_in 2301352 216043 station_ip 5.119.169.139 216043 port 88 216043 unique_id port 216043 remote_ip 10.8.0.194 216046 username barzegar 216046 mac 216046 bytes_out 0 216046 bytes_in 0 216046 station_ip 5.119.217.163 216046 port 64 216046 unique_id port 216046 remote_ip 10.8.1.30 216048 username sabaghnezhad 216048 mac 216048 bytes_out 523182 216048 bytes_in 3930602 216048 station_ip 83.123.228.210 216048 port 62 216048 unique_id port 216048 remote_ip 10.8.1.46 216054 username barzegar 216054 mac 216054 bytes_out 0 216054 bytes_in 0 216054 station_ip 5.119.217.163 216054 port 96 216054 unique_id port 216054 remote_ip 10.8.0.34 216058 username barzegar 216058 mac 216058 bytes_out 0 216058 bytes_in 0 216058 station_ip 5.119.217.163 216058 port 62 216058 unique_id port 216058 remote_ip 10.8.1.30 216061 username pourshad 216061 mac 216061 bytes_out 0 216061 bytes_in 0 216061 station_ip 5.120.100.246 216061 port 99 216061 unique_id port 216061 remote_ip 10.8.0.122 216070 username mehrpoyan101 216070 mac 216070 bytes_out 120483 216070 bytes_in 290855 216070 station_ip 5.120.59.237 216070 port 109 216070 unique_id port 216070 remote_ip 10.8.0.134 216071 username barzegar 216071 mac 216071 bytes_out 0 216071 bytes_in 0 216071 station_ip 5.119.217.163 216071 port 62 216071 unique_id port 216071 remote_ip 10.8.1.30 216075 username arash 216075 mac 216075 bytes_out 0 216075 bytes_in 0 216075 station_ip 37.27.2.123 216075 port 108 216075 unique_id port 216075 remote_ip 10.8.0.206 216083 username barzegar8595 216083 mac 216083 bytes_out 0 216083 bytes_in 0 216083 station_ip 5.202.15.160 216083 port 95 216083 unique_id port 216083 remote_ip 10.8.0.170 216084 username barzegar 216084 mac 216084 bytes_out 378182 216084 bytes_in 47614 216084 station_ip 5.119.217.163 216084 port 99 216084 unique_id port 216084 remote_ip 10.8.0.34 216093 username barzegar 216093 mac 216093 bytes_out 33271 216093 bytes_in 29887 216093 station_ip 5.119.217.163 216093 port 65 216093 unique_id port 216093 remote_ip 10.8.1.30 216094 username barzegar 216094 mac 216094 bytes_out 0 216094 bytes_in 0 216094 station_ip 5.119.128.157 216094 port 65 216094 unique_id port 216094 remote_ip 10.8.1.30 216102 username meghdad1616 216102 mac 216102 bytes_out 0 216102 bytes_in 0 216102 station_ip 5.119.154.35 216102 port 109 216102 unique_id port 216102 remote_ip 10.8.0.230 216114 username yarmohamadi7916 216114 kill_reason Another user logged on this global unique id 216114 mac 216114 bytes_out 0 216114 bytes_in 0 216114 station_ip 5.120.46.14 216114 port 98 216114 unique_id port 216114 remote_ip 10.8.0.214 216116 username arash 216116 mac 216116 bytes_out 628810 216116 bytes_in 3405180 216116 station_ip 37.27.2.123 216116 port 105 216116 unique_id port 216116 remote_ip 10.8.0.206 216119 username alipour1506 216119 kill_reason Another user logged on this global unique id 216119 mac 216119 bytes_out 0 216045 unique_id port 216045 remote_ip 10.8.0.34 216050 username barzegar 216050 mac 216050 bytes_out 0 216050 bytes_in 0 216050 station_ip 5.119.217.163 216050 port 62 216050 unique_id port 216050 remote_ip 10.8.1.30 216051 username alipour1506 216051 kill_reason Another user logged on this global unique id 216051 mac 216051 bytes_out 0 216051 bytes_in 0 216051 station_ip 94.176.8.78 216051 port 103 216051 unique_id port 216052 username aminvpn 216052 mac 216052 bytes_out 0 216052 bytes_in 0 216052 station_ip 5.119.212.136 216052 port 96 216052 unique_id port 216052 remote_ip 10.8.0.58 216053 username alipour1506 216053 kill_reason Another user logged on this global unique id 216053 mac 216053 bytes_out 0 216053 bytes_in 0 216053 station_ip 94.176.8.78 216053 port 103 216053 unique_id port 216056 username arash 216056 mac 216056 bytes_out 0 216056 bytes_in 0 216056 station_ip 37.27.2.123 216056 port 95 216056 unique_id port 216056 remote_ip 10.8.0.206 216059 username barzegar 216059 mac 216059 bytes_out 0 216059 bytes_in 0 216059 station_ip 5.119.217.163 216059 port 62 216059 unique_id port 216059 remote_ip 10.8.1.30 216062 username shiralinezhad6213 216062 mac 216062 bytes_out 0 216062 bytes_in 0 216062 station_ip 94.24.82.226 216062 port 99 216062 unique_id port 216062 remote_ip 10.8.0.130 216063 username fezealinaghi 216063 mac 216063 bytes_out 0 216063 bytes_in 0 216063 station_ip 83.122.106.228 216063 port 50 216063 unique_id port 216063 remote_ip 10.8.0.14 216064 username barzegar 216064 mac 216064 bytes_out 0 216064 bytes_in 0 216064 station_ip 5.119.217.163 216064 port 107 216064 unique_id port 216064 remote_ip 10.8.0.34 216067 username pourshad 216067 mac 216067 bytes_out 22192 216067 bytes_in 36973 216067 station_ip 5.120.100.246 216067 port 62 216067 unique_id port 216067 remote_ip 10.8.1.10 216072 username mehrpoyan101 216072 mac 216072 bytes_out 186619 216072 bytes_in 953775 216072 station_ip 5.120.59.237 216072 port 108 216072 unique_id port 216072 remote_ip 10.8.0.134 216076 username barzegar 216076 kill_reason Maximum check online fails reached 216076 mac 216076 bytes_out 0 216076 bytes_in 0 216076 station_ip 5.119.217.163 216076 port 62 216076 unique_id port 216078 username barzegar8595 216078 mac 216078 bytes_out 881754 216078 bytes_in 3173880 216078 station_ip 5.202.15.160 216078 port 95 216078 unique_id port 216078 remote_ip 10.8.0.170 216080 username barzegar 216080 mac 216080 bytes_out 0 216080 bytes_in 0 216080 station_ip 5.119.217.163 216080 port 107 216080 unique_id port 216080 remote_ip 10.8.0.34 216081 username farhad3 216081 kill_reason Another user logged on this global unique id 216081 mac 216081 bytes_out 0 216081 bytes_in 0 216081 station_ip 5.120.79.174 216081 port 88 216081 unique_id port 216082 username khademi 216082 mac 216082 bytes_out 0 216082 bytes_in 0 216082 station_ip 5.202.0.17 216082 port 98 216082 unique_id port 216086 username barzegar 216086 mac 216086 bytes_out 0 216086 bytes_in 0 216086 station_ip 5.119.217.163 216086 port 64 216086 unique_id port 216086 remote_ip 10.8.1.30 216088 username barzegar 216088 mac 216088 bytes_out 0 216088 bytes_in 0 216088 station_ip 5.119.217.163 216088 port 64 216088 unique_id port 216088 remote_ip 10.8.1.30 216090 username farhad3 216090 mac 216090 bytes_out 0 216090 bytes_in 0 216090 station_ip 5.120.79.174 216090 port 88 216090 unique_id port 216091 username alirezazadeh 216091 unique_id port 216085 station_ip 5.119.217.163 216085 port 109 216085 unique_id port 216085 remote_ip 10.8.0.34 216087 username ahmadi1 216087 mac 216087 bytes_out 0 216087 bytes_in 0 216087 station_ip 83.123.28.41 216087 port 109 216087 unique_id port 216087 remote_ip 10.8.0.114 216089 username mostafa_es78 216089 mac 216089 bytes_out 906487 216089 bytes_in 4704799 216089 station_ip 113.203.107.190 216089 port 50 216089 unique_id port 216089 remote_ip 10.8.0.42 216095 username saeeddamghani 216095 mac 216095 bytes_out 0 216095 bytes_in 0 216095 station_ip 5.119.58.147 216095 port 88 216095 unique_id port 216095 remote_ip 10.8.0.162 216098 username alipour1506 216098 kill_reason Another user logged on this global unique id 216098 mac 216098 bytes_out 0 216098 bytes_in 0 216098 station_ip 94.176.8.78 216098 port 103 216098 unique_id port 216099 username pourshad 216099 kill_reason Another user logged on this global unique id 216099 mac 216099 bytes_out 0 216099 bytes_in 0 216099 station_ip 5.120.100.246 216099 port 66 216099 unique_id port 216099 remote_ip 10.8.1.10 216101 username godarzi 216101 mac 216101 bytes_out 4123473 216101 bytes_in 27633589 216101 station_ip 5.202.65.237 216101 port 102 216101 unique_id port 216101 remote_ip 10.8.0.74 216103 username alirezazadeh 216103 unique_id port 216103 terminate_cause User-Request 216103 bytes_out 289553 216103 bytes_in 1096048 216103 station_ip 151.238.228.42 216103 port 15728672 216103 nas_port_type Virtual 216103 remote_ip 5.5.5.247 216105 username fezealinaghi 216105 mac 216105 bytes_out 0 216105 bytes_in 0 216105 station_ip 83.122.106.228 216105 port 108 216105 unique_id port 216105 remote_ip 10.8.0.14 216108 username pourshad 216108 mac 216108 bytes_out 0 216108 bytes_in 0 216108 station_ip 5.120.100.246 216108 port 66 216108 unique_id port 216110 username sabaghnezhad 216110 mac 216110 bytes_out 0 216110 bytes_in 0 216110 station_ip 37.129.168.231 216110 port 105 216110 unique_id port 216110 remote_ip 10.8.0.94 216111 username arash 216111 mac 216111 bytes_out 0 216111 bytes_in 0 216111 station_ip 37.27.2.123 216111 port 95 216111 unique_id port 216111 remote_ip 10.8.0.206 216117 username milan 216117 kill_reason Another user logged on this global unique id 216117 mac 216117 bytes_out 0 216117 bytes_in 0 216117 station_ip 5.120.139.15 216117 port 60 216117 unique_id port 216118 username farhad3 216118 kill_reason Another user logged on this global unique id 216118 mac 216118 bytes_out 0 216118 bytes_in 0 216118 station_ip 5.120.79.174 216118 port 50 216118 unique_id port 216118 remote_ip 10.8.0.98 216121 username barzegar 216121 mac 216121 bytes_out 0 216121 bytes_in 0 216121 station_ip 5.119.128.157 216121 port 88 216121 unique_id port 216121 remote_ip 10.8.0.34 216123 username pourshad 216123 mac 216123 bytes_out 64574 216123 bytes_in 440952 216123 station_ip 5.120.100.246 216123 port 88 216123 unique_id port 216123 remote_ip 10.8.0.122 216126 username saeeddamghani 216126 mac 216126 bytes_out 0 216126 bytes_in 0 216126 station_ip 5.120.30.96 216126 port 109 216126 unique_id port 216126 remote_ip 10.8.0.162 216127 username hosseini0093 216127 mac 216127 bytes_out 0 216127 bytes_in 0 216127 station_ip 5.119.18.11 216127 port 105 216127 unique_id port 216127 remote_ip 10.8.0.226 216131 username mostafa_es78 216131 mac 216131 bytes_out 0 216131 bytes_in 0 216131 station_ip 113.203.107.190 216131 port 88 216131 unique_id port 216131 remote_ip 10.8.0.42 216133 username pourshad 216133 mac 216091 terminate_cause Lost-Carrier 216091 bytes_out 2053334 216091 bytes_in 6895754 216091 station_ip 5.119.142.57 216091 port 15728671 216091 nas_port_type Virtual 216091 remote_ip 5.5.5.248 216092 username shiralinezhad6213 216092 mac 216092 bytes_out 0 216092 bytes_in 0 216092 station_ip 94.24.82.226 216092 port 106 216092 unique_id port 216092 remote_ip 10.8.0.130 216096 username mohammadjavad 216096 mac 216096 bytes_out 0 216096 bytes_in 0 216096 station_ip 37.129.29.95 216096 port 96 216096 unique_id port 216096 remote_ip 10.8.0.138 216097 username yaghobi 216097 mac 216097 bytes_out 0 216097 bytes_in 0 216097 station_ip 83.123.128.200 216097 port 98 216097 unique_id port 216097 remote_ip 10.8.0.106 216100 username meghdad1616 216100 mac 216100 bytes_out 0 216100 bytes_in 0 216100 station_ip 46.225.232.210 216100 port 106 216100 unique_id port 216100 remote_ip 10.8.0.230 216104 username aminvpns6 216104 mac 216104 bytes_out 0 216104 bytes_in 0 216104 station_ip 5.119.24.54 216104 port 99 216104 unique_id port 216104 remote_ip 10.8.0.234 216106 username meghdad1616 216106 mac 216106 bytes_out 135706 216106 bytes_in 362246 216106 station_ip 5.119.154.35 216106 port 99 216106 unique_id port 216106 remote_ip 10.8.0.230 216107 username milan 216107 kill_reason Another user logged on this global unique id 216107 mac 216107 bytes_out 0 216107 bytes_in 0 216107 station_ip 5.120.139.15 216107 port 60 216107 unique_id port 216107 remote_ip 10.8.1.22 216109 username meghdad1616 216109 mac 216109 bytes_out 0 216109 bytes_in 0 216109 station_ip 5.119.154.35 216109 port 99 216109 unique_id port 216109 remote_ip 10.8.0.230 216112 username meghdad1616 216112 mac 216112 bytes_out 91173 216112 bytes_in 1093589 216112 station_ip 5.119.154.35 216112 port 67 216112 unique_id port 216112 remote_ip 10.8.1.122 216113 username meghdad1616 216113 mac 216113 bytes_out 0 216113 bytes_in 0 216113 station_ip 5.119.154.35 216113 port 106 216113 unique_id port 216113 remote_ip 10.8.0.230 216115 username pourshad 216115 mac 216115 bytes_out 0 216115 bytes_in 0 216115 station_ip 5.120.100.246 216115 port 66 216115 unique_id port 216115 remote_ip 10.8.1.10 216122 username motamedi9772 216122 kill_reason Another user logged on this global unique id 216122 mac 216122 bytes_out 0 216122 bytes_in 0 216122 station_ip 83.122.47.157 216122 port 96 216122 unique_id port 216122 remote_ip 10.8.0.86 216124 username malekpoir 216124 kill_reason Maximum check online fails reached 216124 mac 216124 bytes_out 0 216124 bytes_in 0 216124 station_ip 5.120.133.32 216124 port 99 216124 unique_id port 216128 username mostafa_es78 216128 mac 216128 bytes_out 511672 216128 bytes_in 222331 216128 station_ip 113.203.107.190 216128 port 64 216128 unique_id port 216128 remote_ip 10.8.1.202 216135 username farhad3 216135 kill_reason Another user logged on this global unique id 216135 mac 216135 bytes_out 0 216135 bytes_in 0 216135 station_ip 5.120.79.174 216135 port 50 216135 unique_id port 216135 remote_ip 10.8.0.98 216137 username arash 216137 mac 216137 bytes_out 899664 216137 bytes_in 5580535 216137 station_ip 37.27.2.123 216137 port 106 216137 unique_id port 216137 remote_ip 10.8.0.206 216142 username meghdad1616 216142 mac 216142 bytes_out 0 216142 bytes_in 0 216142 station_ip 5.119.154.35 216142 port 67 216142 unique_id port 216142 remote_ip 10.8.1.122 216146 username barzegar 216146 mac 216146 bytes_out 0 216146 bytes_in 0 216146 station_ip 5.119.128.157 216146 port 88 216119 bytes_in 0 216119 station_ip 94.176.8.78 216119 port 103 216119 unique_id port 216120 username saeeddamghani 216120 mac 216120 bytes_out 0 216120 bytes_in 0 216120 station_ip 5.120.30.96 216120 port 99 216120 unique_id port 216120 remote_ip 10.8.0.162 216125 username farhad3 216125 mac 216125 bytes_out 0 216125 bytes_in 0 216125 station_ip 5.120.79.174 216125 port 50 216125 unique_id port 216129 username milan 216129 kill_reason Another user logged on this global unique id 216129 mac 216129 bytes_out 0 216129 bytes_in 0 216129 station_ip 5.120.139.15 216129 port 60 216129 unique_id port 216130 username pourshad 216130 mac 216130 bytes_out 22452 216130 bytes_in 28866 216130 station_ip 5.120.100.246 216130 port 110 216130 unique_id port 216130 remote_ip 10.8.0.122 216132 username barzegar 216132 mac 216132 bytes_out 4120 216132 bytes_in 6571 216132 station_ip 5.119.128.157 216132 port 66 216132 unique_id port 216132 remote_ip 10.8.1.30 216139 username motamedi9772 216139 mac 216139 bytes_out 0 216139 bytes_in 0 216139 station_ip 83.122.47.157 216139 port 96 216139 unique_id port 216140 username barzegar 216140 mac 216140 bytes_out 273362 216140 bytes_in 1492586 216140 station_ip 5.119.128.157 216140 port 88 216140 unique_id port 216140 remote_ip 10.8.0.34 216143 username godarzi 216143 mac 216143 bytes_out 1622012 216143 bytes_in 7727777 216143 station_ip 5.202.65.237 216143 port 102 216143 unique_id port 216143 remote_ip 10.8.0.74 216147 username milan 216147 kill_reason Another user logged on this global unique id 216147 mac 216147 bytes_out 0 216147 bytes_in 0 216147 station_ip 5.120.139.15 216147 port 60 216147 unique_id port 216150 username sobhan 216150 unique_id port 216150 terminate_cause User-Request 216150 bytes_out 5338724 216150 bytes_in 57158455 216150 station_ip 5.119.127.0 216150 port 15728670 216150 nas_port_type Virtual 216150 remote_ip 5.5.5.249 216160 username esmaeilkazemi 216160 mac 216160 bytes_out 0 216160 bytes_in 0 216160 station_ip 37.129.118.48 216160 port 105 216160 unique_id port 216160 remote_ip 10.8.0.66 216161 username barzegar 216161 kill_reason Another user logged on this global unique id 216161 mac 216161 bytes_out 4142342 216161 bytes_in 47186698 216161 station_ip 5.119.128.157 216161 port 96 216161 unique_id port 216161 remote_ip 10.8.0.34 216164 username sabaghnezhad 216164 mac 216164 bytes_out 0 216164 bytes_in 0 216164 station_ip 37.129.168.231 216164 port 88 216164 unique_id port 216164 remote_ip 10.8.0.94 216165 username pourshad 216165 mac 216165 bytes_out 0 216165 bytes_in 0 216165 station_ip 5.120.100.246 216165 port 107 216165 unique_id port 216165 remote_ip 10.8.0.122 216167 username pourshad 216167 mac 216167 bytes_out 318737 216167 bytes_in 3375596 216167 station_ip 5.120.100.246 216167 port 67 216167 unique_id port 216167 remote_ip 10.8.1.10 216171 username pourshad 216171 mac 216171 bytes_out 0 216171 bytes_in 0 216171 station_ip 5.120.100.246 216171 port 67 216171 unique_id port 216171 remote_ip 10.8.1.10 216178 username meghdad1616 216178 mac 216178 bytes_out 1730677 216178 bytes_in 17455667 216178 station_ip 5.119.154.35 216178 port 107 216178 unique_id port 216178 remote_ip 10.8.0.230 216185 username godarzi 216185 mac 216185 bytes_out 0 216185 bytes_in 0 216185 station_ip 5.202.65.237 216185 port 113 216185 unique_id port 216185 remote_ip 10.8.0.74 216191 username aminvpns6 216191 mac 216191 bytes_out 2522881 216191 bytes_in 30434843 216133 bytes_out 36320 216133 bytes_in 41540 216133 station_ip 5.120.100.246 216133 port 88 216133 unique_id port 216133 remote_ip 10.8.0.122 216134 username khademi 216134 mac 216134 bytes_out 99912 216134 bytes_in 159700 216134 station_ip 83.122.221.231 216134 port 107 216134 unique_id port 216134 remote_ip 10.8.0.26 216136 username aminvpns6 216136 mac 216136 bytes_out 81196 216136 bytes_in 496555 216136 station_ip 5.119.24.54 216136 port 105 216136 unique_id port 216136 remote_ip 10.8.0.234 216138 username pourshad 216138 mac 216138 bytes_out 5874 216138 bytes_in 12626 216138 station_ip 5.120.100.246 216138 port 64 216138 unique_id port 216138 remote_ip 10.8.1.10 216141 username pourshad 216141 mac 216141 bytes_out 49771 216141 bytes_in 578381 216141 station_ip 5.120.100.246 216141 port 96 216141 unique_id port 216141 remote_ip 10.8.0.122 216144 username barzegar 216144 mac 216144 bytes_out 0 216144 bytes_in 0 216144 station_ip 5.119.128.157 216144 port 64 216144 unique_id port 216144 remote_ip 10.8.1.30 216145 username farhad3 216145 kill_reason Another user logged on this global unique id 216145 mac 216145 bytes_out 0 216145 bytes_in 0 216145 station_ip 5.120.79.174 216145 port 50 216145 unique_id port 216151 username pourshad 216151 mac 216151 bytes_out 0 216151 bytes_in 0 216151 station_ip 5.120.100.246 216151 port 64 216151 unique_id port 216151 remote_ip 10.8.1.10 216153 username alipour1506 216153 kill_reason Another user logged on this global unique id 216153 mac 216153 bytes_out 0 216153 bytes_in 0 216153 station_ip 94.176.8.78 216153 port 103 216153 unique_id port 216154 username pourshad 216154 mac 216154 bytes_out 11793 216154 bytes_in 23420 216154 station_ip 5.120.100.246 216154 port 64 216154 unique_id port 216154 remote_ip 10.8.1.10 216156 username barzegar 216156 mac 216156 bytes_out 0 216156 bytes_in 0 216156 station_ip 5.119.128.157 216156 port 88 216156 unique_id port 216156 remote_ip 10.8.0.34 216158 username yaghobi 216158 mac 216158 bytes_out 8770 216158 bytes_in 13794 216158 station_ip 83.123.165.72 216158 port 108 216158 unique_id port 216158 remote_ip 10.8.0.106 216159 username charkhandaz3496 216159 mac 216159 bytes_out 0 216159 bytes_in 0 216159 station_ip 5.120.90.174 216159 port 105 216159 unique_id port 216159 remote_ip 10.8.0.218 216162 username mohammadjavad 216162 kill_reason Another user logged on this global unique id 216162 mac 216162 bytes_out 0 216162 bytes_in 0 216162 station_ip 37.129.29.95 216162 port 65 216162 unique_id port 216162 remote_ip 10.8.1.142 216169 username abdolahi0311 216169 kill_reason Maximum check online fails reached 216169 mac 216169 bytes_out 0 216169 bytes_in 0 216169 station_ip 5.120.39.45 216169 port 88 216169 unique_id port 216170 username mohammadjavad 216170 mac 216170 bytes_out 0 216170 bytes_in 0 216170 station_ip 37.129.29.95 216170 port 65 216170 unique_id port 216172 username aminvpns6 216172 mac 216172 bytes_out 0 216172 bytes_in 0 216172 station_ip 5.119.24.54 216172 port 109 216172 unique_id port 216172 remote_ip 10.8.0.234 216174 username aminvpn 216174 kill_reason Wrong password 216174 unique_id port 216174 bytes_out 0 216174 bytes_in 0 216174 station_ip 31.57.142.31 216174 port 15728674 216174 nas_port_type Virtual 216179 username khademi 216179 mac 216179 bytes_out 0 216179 bytes_in 0 216179 station_ip 83.122.221.231 216179 port 64 216179 unique_id port 216179 remote_ip 10.8.1.218 216181 username godarzi 216181 mac 216181 bytes_out 0 216146 unique_id port 216146 remote_ip 10.8.0.34 216148 username meghdad1616 216148 mac 216148 bytes_out 0 216148 bytes_in 0 216148 station_ip 5.119.154.35 216148 port 96 216148 unique_id port 216148 remote_ip 10.8.0.230 216149 username meghdad1616 216149 mac 216149 bytes_out 0 216149 bytes_in 0 216149 station_ip 5.119.154.35 216149 port 96 216149 unique_id port 216149 remote_ip 10.8.0.230 216152 username yaghobi 216152 mac 216152 bytes_out 411273 216152 bytes_in 406666 216152 station_ip 83.123.165.72 216152 port 108 216152 unique_id port 216152 remote_ip 10.8.0.106 216155 username meghdad1616 216155 mac 216155 bytes_out 0 216155 bytes_in 0 216155 station_ip 5.119.154.35 216155 port 96 216155 unique_id port 216155 remote_ip 10.8.0.230 216157 username farhad3 216157 kill_reason Another user logged on this global unique id 216157 mac 216157 bytes_out 0 216157 bytes_in 0 216157 station_ip 5.120.79.174 216157 port 50 216157 unique_id port 216163 username hosseini0093 216163 mac 216163 bytes_out 0 216163 bytes_in 0 216163 station_ip 5.119.18.11 216163 port 109 216163 unique_id port 216163 remote_ip 10.8.0.226 216166 username sabaghnezhad 216166 kill_reason Maximum check online fails reached 216166 mac 216166 bytes_out 0 216166 bytes_in 0 216166 station_ip 37.129.168.231 216166 port 66 216166 unique_id port 216168 username farhad3 216168 kill_reason Another user logged on this global unique id 216168 mac 216168 bytes_out 0 216168 bytes_in 0 216168 station_ip 5.120.79.174 216168 port 50 216168 unique_id port 216173 username aminvpn 216173 kill_reason Wrong password 216173 unique_id port 216173 bytes_out 0 216173 bytes_in 0 216173 station_ip 31.57.142.31 216173 port 15728673 216173 nas_port_type Virtual 216175 username pourshad 216175 mac 216175 bytes_out 0 216175 bytes_in 0 216175 station_ip 5.120.100.246 216175 port 65 216175 unique_id port 216175 remote_ip 10.8.1.10 216176 username barzegar 216176 kill_reason Another user logged on this global unique id 216176 mac 216176 bytes_out 0 216176 bytes_in 0 216176 station_ip 5.119.128.157 216176 port 96 216176 unique_id port 216177 username pourshad 216177 mac 216177 bytes_out 0 216177 bytes_in 0 216177 station_ip 5.120.100.246 216177 port 65 216177 unique_id port 216177 remote_ip 10.8.1.10 216180 username esmaeilkazemi 216180 mac 216180 bytes_out 0 216180 bytes_in 0 216180 station_ip 37.129.118.48 216180 port 111 216180 unique_id port 216180 remote_ip 10.8.0.66 216184 username yaghobi 216184 mac 216184 bytes_out 250213 216184 bytes_in 180576 216184 station_ip 83.123.162.48 216184 port 113 216184 unique_id port 216184 remote_ip 10.8.0.106 216188 username milan 216188 kill_reason Another user logged on this global unique id 216188 mac 216188 bytes_out 0 216188 bytes_in 0 216188 station_ip 5.120.139.15 216188 port 60 216188 unique_id port 216189 username sekonji0496 216189 mac 216189 bytes_out 0 216189 bytes_in 0 216189 station_ip 37.129.109.28 216189 port 113 216189 unique_id port 216189 remote_ip 10.8.0.70 216192 username arash 216192 mac 216192 bytes_out 0 216192 bytes_in 0 216192 station_ip 37.27.2.123 216192 port 108 216192 unique_id port 216192 remote_ip 10.8.0.206 216194 username yaghobi 216194 mac 216194 bytes_out 289982 216194 bytes_in 103793 216194 station_ip 83.123.162.48 216194 port 102 216194 unique_id port 216194 remote_ip 10.8.0.106 216197 username mostafa_es78 216197 mac 216197 bytes_out 0 216197 bytes_in 0 216197 station_ip 113.203.107.190 216197 port 96 216181 bytes_in 0 216181 station_ip 5.202.65.237 216181 port 102 216181 unique_id port 216181 remote_ip 10.8.0.74 216182 username charkhandaz3496 216182 mac 216182 bytes_out 13404 216182 bytes_in 19637 216182 station_ip 5.120.90.174 216182 port 102 216182 unique_id port 216182 remote_ip 10.8.0.218 216183 username yarmohamadi7916 216183 kill_reason Another user logged on this global unique id 216183 mac 216183 bytes_out 0 216183 bytes_in 0 216183 station_ip 5.120.46.14 216183 port 98 216183 unique_id port 216186 username pourshad 216186 mac 216186 bytes_out 0 216186 bytes_in 0 216186 station_ip 5.120.100.246 216186 port 67 216186 unique_id port 216186 remote_ip 10.8.1.10 216187 username meghdad1616 216187 mac 216187 bytes_out 0 216187 bytes_in 0 216187 station_ip 5.119.154.35 216187 port 111 216187 unique_id port 216187 remote_ip 10.8.0.230 216190 username mohammadjavad 216190 mac 216190 bytes_out 0 216190 bytes_in 0 216190 station_ip 37.129.29.95 216190 port 114 216190 unique_id port 216190 remote_ip 10.8.0.138 216196 username mostafa_es78 216196 mac 216196 bytes_out 0 216196 bytes_in 0 216196 station_ip 178.236.35.96 216196 port 110 216196 unique_id port 216196 remote_ip 10.8.0.42 216200 username mostafa_es78 216200 mac 216200 bytes_out 0 216200 bytes_in 0 216200 station_ip 113.203.107.190 216200 port 96 216200 unique_id port 216200 remote_ip 10.8.0.42 216203 username pourshad 216203 kill_reason Another user logged on this global unique id 216203 mac 216203 bytes_out 0 216203 bytes_in 0 216203 station_ip 5.120.100.246 216203 port 65 216203 unique_id port 216203 remote_ip 10.8.1.10 216208 username mostafa_es78 216208 mac 216208 bytes_out 0 216208 bytes_in 0 216208 station_ip 178.236.35.96 216208 port 96 216208 unique_id port 216208 remote_ip 10.8.0.42 216210 username mostafa_es78 216210 mac 216210 bytes_out 0 216210 bytes_in 0 216210 station_ip 113.203.107.190 216210 port 107 216210 unique_id port 216210 remote_ip 10.8.0.42 216211 username mostafa_es78 216211 mac 216211 bytes_out 0 216211 bytes_in 0 216211 station_ip 178.236.35.96 216211 port 95 216211 unique_id port 216211 remote_ip 10.8.0.42 216216 username yaghobi 216216 mac 216216 bytes_out 0 216216 bytes_in 0 216216 station_ip 83.123.162.48 216216 port 67 216216 unique_id port 216216 remote_ip 10.8.1.106 216220 username aminvpns6 216220 mac 216220 bytes_out 0 216220 bytes_in 0 216220 station_ip 5.119.24.54 216220 port 113 216220 unique_id port 216220 remote_ip 10.8.0.234 216221 username mostafa_es78 216221 mac 216221 bytes_out 0 216221 bytes_in 0 216221 station_ip 178.236.35.96 216221 port 107 216221 unique_id port 216221 remote_ip 10.8.0.42 216225 username motamedi9772 216225 kill_reason Another user logged on this global unique id 216225 mac 216225 bytes_out 0 216225 bytes_in 0 216225 station_ip 83.122.19.153 216225 port 95 216225 unique_id port 216225 remote_ip 10.8.0.86 216230 username aminvpns6 216230 mac 216230 bytes_out 0 216230 bytes_in 0 216230 station_ip 5.119.24.54 216230 port 107 216230 unique_id port 216230 remote_ip 10.8.0.234 216232 username khademi 216232 mac 216232 bytes_out 379588 216232 bytes_in 7942719 216232 station_ip 5.202.0.17 216232 port 64 216232 unique_id port 216232 remote_ip 10.8.1.218 216235 username barzegar 216235 mac 216235 bytes_out 0 216235 bytes_in 0 216235 station_ip 5.119.128.157 216235 port 102 216235 unique_id port 216235 remote_ip 10.8.0.34 216237 username farhad3 216237 mac 216191 station_ip 5.119.24.54 216191 port 109 216191 unique_id port 216191 remote_ip 10.8.0.234 216193 username barzegar 216193 mac 216193 bytes_out 0 216193 bytes_in 0 216193 station_ip 5.119.128.157 216193 port 96 216193 unique_id port 216195 username sabaghnezhad 216195 mac 216195 bytes_out 529151 216195 bytes_in 4821357 216195 station_ip 37.129.168.231 216195 port 107 216195 unique_id port 216195 remote_ip 10.8.0.94 216199 username godarzi 216199 mac 216199 bytes_out 0 216199 bytes_in 0 216199 station_ip 5.202.65.237 216199 port 111 216199 unique_id port 216199 remote_ip 10.8.0.74 216202 username mostafa_es78 216202 mac 216202 bytes_out 0 216202 bytes_in 0 216202 station_ip 178.236.35.96 216202 port 107 216202 unique_id port 216202 remote_ip 10.8.0.42 216204 username barzegar 216204 mac 216204 bytes_out 0 216204 bytes_in 0 216204 station_ip 5.119.128.157 216204 port 96 216204 unique_id port 216204 remote_ip 10.8.0.34 216207 username farhad3 216207 kill_reason Another user logged on this global unique id 216207 mac 216207 bytes_out 0 216207 bytes_in 0 216207 station_ip 5.120.79.174 216207 port 50 216207 unique_id port 216214 username mostafa_es78 216214 mac 216214 bytes_out 0 216214 bytes_in 0 216214 station_ip 113.203.107.190 216214 port 108 216214 unique_id port 216214 remote_ip 10.8.0.42 216217 username barzegar 216217 mac 216217 bytes_out 0 216217 bytes_in 0 216217 station_ip 5.119.128.157 216217 port 68 216217 unique_id port 216217 remote_ip 10.8.1.30 216218 username mostafa_es78 216218 mac 216218 bytes_out 12399 216218 bytes_in 54133 216218 station_ip 178.236.35.96 216218 port 107 216218 unique_id port 216218 remote_ip 10.8.0.42 216219 username mostafa_es78 216219 mac 216219 bytes_out 0 216219 bytes_in 0 216219 station_ip 113.203.107.190 216219 port 102 216219 unique_id port 216219 remote_ip 10.8.0.42 216223 username hamid1430 216223 kill_reason Another user logged on this global unique id 216223 mac 216223 bytes_out 0 216223 bytes_in 0 216223 station_ip 83.123.200.102 216223 port 105 216223 unique_id port 216226 username mehrpoyan101 216226 mac 216226 bytes_out 0 216226 bytes_in 0 216226 station_ip 5.120.46.94 216226 port 110 216226 unique_id port 216226 remote_ip 10.8.0.134 216227 username barzegar 216227 mac 216227 bytes_out 587223 216227 bytes_in 211258 216227 station_ip 5.119.128.157 216227 port 106 216227 unique_id port 216227 remote_ip 10.8.0.34 216233 username soleymani5056 216233 mac 216233 bytes_out 265816 216233 bytes_in 799563 216233 station_ip 5.119.74.123 216233 port 102 216233 unique_id port 216233 remote_ip 10.8.0.246 216236 username soleymani5056 216236 mac 216236 bytes_out 306944 216236 bytes_in 1645254 216236 station_ip 5.120.123.126 216236 port 109 216236 unique_id port 216236 remote_ip 10.8.0.246 216238 username mostafa_es78 216238 mac 216238 bytes_out 0 216238 bytes_in 0 216238 station_ip 178.236.35.96 216238 port 68 216238 unique_id port 216238 remote_ip 10.8.1.202 216241 username motamedi9772 216241 mac 216241 bytes_out 0 216241 bytes_in 0 216241 station_ip 83.122.19.153 216241 port 95 216241 unique_id port 216242 username barzegar 216242 mac 216242 bytes_out 0 216242 bytes_in 0 216242 station_ip 5.119.128.157 216242 port 95 216242 unique_id port 216242 remote_ip 10.8.0.34 216249 username askarzadeh9013 216249 kill_reason Another user logged on this global unique id 216249 mac 216249 bytes_out 0 216249 bytes_in 0 216249 station_ip 83.122.85.66 216249 port 106 216197 unique_id port 216197 remote_ip 10.8.0.42 216198 username mostafa_es78 216198 mac 216198 bytes_out 0 216198 bytes_in 0 216198 station_ip 178.236.35.96 216198 port 107 216198 unique_id port 216198 remote_ip 10.8.0.42 216201 username milan 216201 kill_reason Another user logged on this global unique id 216201 mac 216201 bytes_out 0 216201 bytes_in 0 216201 station_ip 5.120.139.15 216201 port 60 216201 unique_id port 216205 username hamid1430 216205 kill_reason Another user logged on this global unique id 216205 mac 216205 bytes_out 0 216205 bytes_in 0 216205 station_ip 83.123.200.102 216205 port 105 216205 unique_id port 216205 remote_ip 10.8.0.166 216206 username mostafa_es78 216206 mac 216206 bytes_out 0 216206 bytes_in 0 216206 station_ip 113.203.107.190 216206 port 108 216206 unique_id port 216206 remote_ip 10.8.0.42 216209 username barzegar8595 216209 mac 216209 bytes_out 0 216209 bytes_in 0 216209 station_ip 46.225.232.210 216209 port 95 216209 unique_id port 216209 remote_ip 10.8.0.170 216212 username mostafa_es78 216212 mac 216212 bytes_out 0 216212 bytes_in 0 216212 station_ip 113.203.107.190 216212 port 96 216212 unique_id port 216212 remote_ip 10.8.0.42 216213 username mostafa_es78 216213 mac 216213 bytes_out 0 216213 bytes_in 0 216213 station_ip 178.236.35.96 216213 port 107 216213 unique_id port 216213 remote_ip 10.8.0.42 216215 username hosseine 216215 mac 216215 bytes_out 38530 216215 bytes_in 87664 216215 station_ip 5.202.10.220 216215 port 102 216215 unique_id port 216215 remote_ip 10.8.0.126 216222 username shafiei3462 216222 mac 216222 bytes_out 2823857 216222 bytes_in 32707041 216222 station_ip 83.123.168.238 216222 port 106 216222 unique_id port 216222 remote_ip 10.8.0.250 216224 username mehrpoyan101 216224 mac 216224 bytes_out 670996 216224 bytes_in 2872614 216224 station_ip 5.120.46.94 216224 port 107 216224 unique_id port 216224 remote_ip 10.8.0.134 216228 username meghdad1616 216228 kill_reason Another user logged on this global unique id 216228 mac 216228 bytes_out 0 216228 bytes_in 0 216228 station_ip 5.119.154.35 216228 port 96 216228 unique_id port 216228 remote_ip 10.8.0.230 216229 username mehrpoyan101 216229 mac 216229 bytes_out 515266 216229 bytes_in 2635087 216229 station_ip 5.120.46.94 216229 port 107 216229 unique_id port 216229 remote_ip 10.8.0.134 216231 username shafiei3462 216231 mac 216231 bytes_out 0 216231 bytes_in 0 216231 station_ip 83.123.168.238 216231 port 109 216231 unique_id port 216231 remote_ip 10.8.0.250 216234 username mehrpoyan101 216234 mac 216234 bytes_out 0 216234 bytes_in 0 216234 station_ip 5.120.46.94 216234 port 106 216234 unique_id port 216234 remote_ip 10.8.0.134 216239 username mehrpoyan101 216239 mac 216239 bytes_out 0 216239 bytes_in 0 216239 station_ip 5.120.46.94 216239 port 110 216239 unique_id port 216239 remote_ip 10.8.0.134 216240 username mostafa_es78 216240 mac 216240 bytes_out 0 216240 bytes_in 0 216240 station_ip 113.203.107.190 216240 port 108 216240 unique_id port 216240 remote_ip 10.8.0.42 216243 username meghdad1616 216243 kill_reason Another user logged on this global unique id 216243 mac 216243 bytes_out 0 216243 bytes_in 0 216243 station_ip 5.119.154.35 216243 port 96 216243 unique_id port 216248 username barzegar 216248 mac 216248 bytes_out 3027 216248 bytes_in 5220 216248 station_ip 5.119.128.157 216248 port 50 216248 unique_id port 216248 remote_ip 10.8.0.34 216252 username barzegar 216252 mac 216252 bytes_out 35367 216237 bytes_out 0 216237 bytes_in 0 216237 station_ip 5.120.79.174 216237 port 50 216237 unique_id port 216244 username askarzadeh9013 216244 kill_reason Another user logged on this global unique id 216244 mac 216244 bytes_out 0 216244 bytes_in 0 216244 station_ip 83.122.85.66 216244 port 106 216244 unique_id port 216244 remote_ip 10.8.0.174 216245 username soleymani5056 216245 mac 216245 bytes_out 89325 216245 bytes_in 92356 216245 station_ip 5.120.191.247 216245 port 102 216245 unique_id port 216245 remote_ip 10.8.0.246 216246 username mehrpoyan101 216246 mac 216246 bytes_out 0 216246 bytes_in 0 216246 station_ip 5.120.46.94 216246 port 50 216246 unique_id port 216246 remote_ip 10.8.0.134 216247 username yaghobi 216247 mac 216247 bytes_out 0 216247 bytes_in 0 216247 station_ip 83.123.162.48 216247 port 67 216247 unique_id port 216247 remote_ip 10.8.1.106 216250 username farhad3 216250 mac 216250 bytes_out 67141 216250 bytes_in 294237 216250 station_ip 5.120.79.174 216250 port 109 216250 unique_id port 216250 remote_ip 10.8.0.98 216253 username mehrpoyan101 216253 mac 216253 bytes_out 225930 216253 bytes_in 1119228 216253 station_ip 5.119.126.227 216253 port 95 216253 unique_id port 216253 remote_ip 10.8.0.134 216254 username mosavi0713 216254 mac 216254 bytes_out 174967 216254 bytes_in 566608 216254 station_ip 83.123.16.235 216254 port 108 216254 unique_id port 216254 remote_ip 10.8.0.186 216256 username yaghobi 216256 mac 216256 bytes_out 0 216256 bytes_in 0 216256 station_ip 83.123.162.48 216256 port 50 216256 unique_id port 216256 remote_ip 10.8.0.106 216258 username askarzadeh9013 216258 kill_reason Another user logged on this global unique id 216258 mac 216258 bytes_out 0 216258 bytes_in 0 216258 station_ip 83.122.85.66 216258 port 106 216258 unique_id port 216261 username arash 216261 mac 216261 bytes_out 281972 216261 bytes_in 1883905 216261 station_ip 37.27.2.123 216261 port 50 216261 unique_id port 216261 remote_ip 10.8.0.206 216263 username meghdad1616 216263 mac 216263 bytes_out 0 216263 bytes_in 0 216263 station_ip 5.119.154.35 216263 port 96 216263 unique_id port 216270 username mehrpoyan101 216270 mac 216270 bytes_out 131430 216270 bytes_in 453109 216270 station_ip 5.120.131.207 216270 port 108 216270 unique_id port 216270 remote_ip 10.8.0.134 216272 username yarmohamadi7916 216272 mac 216272 bytes_out 0 216272 bytes_in 0 216272 station_ip 5.120.46.14 216272 port 98 216272 unique_id port 216278 username mostafa_es78 216278 mac 216278 bytes_out 0 216278 bytes_in 0 216278 station_ip 178.236.35.96 216278 port 110 216278 unique_id port 216278 remote_ip 10.8.0.42 216279 username mehrpoyan101 216279 mac 216279 bytes_out 0 216279 bytes_in 0 216279 station_ip 5.120.156.84 216279 port 106 216279 unique_id port 216279 remote_ip 10.8.0.134 216281 username esmaeilkazemi 216281 mac 216281 bytes_out 0 216281 bytes_in 0 216281 station_ip 37.129.118.48 216281 port 108 216281 unique_id port 216281 remote_ip 10.8.0.66 216284 username jafari 216284 kill_reason Another user logged on this global unique id 216284 mac 216284 bytes_out 0 216284 bytes_in 0 216284 station_ip 89.32.104.207 216284 port 95 216284 unique_id port 216284 remote_ip 10.8.0.110 216288 username hamid1430 216288 mac 216288 bytes_out 0 216288 bytes_in 0 216288 station_ip 83.123.200.102 216288 port 105 216288 unique_id port 216295 username farhad3 216295 mac 216295 bytes_out 176143 216295 bytes_in 568071 216295 station_ip 5.120.79.174 216249 unique_id port 216251 username yaghobi 216251 mac 216251 bytes_out 0 216251 bytes_in 0 216251 station_ip 83.123.162.48 216251 port 50 216251 unique_id port 216251 remote_ip 10.8.0.106 216257 username hosseine 216257 mac 216257 bytes_out 0 216257 bytes_in 0 216257 station_ip 5.202.19.40 216257 port 67 216257 unique_id port 216257 remote_ip 10.8.1.234 216259 username dortaj3792 216259 mac 216259 bytes_out 0 216259 bytes_in 0 216259 station_ip 5.119.169.161 216259 port 112 216259 unique_id port 216259 remote_ip 10.8.0.10 216264 username dortaj3792 216264 mac 216264 bytes_out 0 216264 bytes_in 0 216264 station_ip 5.119.169.161 216264 port 108 216264 unique_id port 216264 remote_ip 10.8.0.10 216265 username barzegar 216265 mac 216265 bytes_out 0 216265 bytes_in 0 216265 station_ip 5.119.128.157 216265 port 50 216265 unique_id port 216265 remote_ip 10.8.0.34 216266 username meghdad1616 216266 mac 216266 bytes_out 0 216266 bytes_in 0 216266 station_ip 5.119.154.35 216266 port 108 216266 unique_id port 216266 remote_ip 10.8.0.230 216268 username barzegar 216268 mac 216268 bytes_out 33861 216268 bytes_in 28590 216268 station_ip 5.119.128.157 216268 port 50 216268 unique_id port 216268 remote_ip 10.8.0.34 216271 username mohammadjavad 216271 mac 216271 bytes_out 0 216271 bytes_in 0 216271 station_ip 83.123.139.102 216271 port 96 216271 unique_id port 216271 remote_ip 10.8.0.138 216275 username malekpoir 216275 mac 216275 bytes_out 100851 216275 bytes_in 380367 216275 station_ip 5.120.133.32 216275 port 109 216275 unique_id port 216275 remote_ip 10.8.0.178 216277 username barzegar 216277 mac 216277 bytes_out 13747 216277 bytes_in 19472 216277 station_ip 5.119.128.157 216277 port 50 216277 unique_id port 216277 remote_ip 10.8.0.34 216282 username shafiei3462 216282 mac 216282 bytes_out 0 216282 bytes_in 0 216282 station_ip 83.123.168.238 216282 port 107 216282 unique_id port 216282 remote_ip 10.8.0.250 216285 username askarzadeh9013 216285 kill_reason Another user logged on this global unique id 216285 mac 216285 bytes_out 0 216285 bytes_in 0 216285 station_ip 83.122.85.66 216285 port 98 216285 unique_id port 216285 remote_ip 10.8.0.174 216287 username mehrpoyan101 216287 mac 216287 bytes_out 447926 216287 bytes_in 3013613 216287 station_ip 5.119.95.111 216287 port 96 216287 unique_id port 216287 remote_ip 10.8.0.134 216293 username meysam 216293 mac 216293 bytes_out 53806 216293 bytes_in 371201 216293 station_ip 5.119.103.209 216293 port 67 216293 unique_id port 216293 remote_ip 10.8.1.6 216294 username jafari 216294 mac 216294 bytes_out 0 216294 bytes_in 0 216294 station_ip 89.32.104.207 216294 port 95 216294 unique_id port 216297 username yaghobi 216297 mac 216297 bytes_out 0 216297 bytes_in 0 216297 station_ip 83.123.168.80 216297 port 106 216297 unique_id port 216297 remote_ip 10.8.0.106 216298 username yaghobi 216298 mac 216298 bytes_out 148334 216298 bytes_in 50593 216298 station_ip 83.123.168.80 216298 port 108 216298 unique_id port 216298 remote_ip 10.8.0.106 216299 username dortaj3792 216299 mac 216299 bytes_out 0 216299 bytes_in 0 216299 station_ip 5.119.169.161 216299 port 50 216299 unique_id port 216299 remote_ip 10.8.0.10 216301 username askarzadeh9013 216301 kill_reason Another user logged on this global unique id 216301 mac 216301 bytes_out 0 216301 bytes_in 0 216301 station_ip 83.122.85.66 216301 port 98 216301 unique_id port 216303 username malekpoir 216252 bytes_in 71881 216252 station_ip 5.119.128.157 216252 port 67 216252 unique_id port 216252 remote_ip 10.8.1.30 216255 username mostafa_es78 216255 mac 216255 bytes_out 0 216255 bytes_in 0 216255 station_ip 178.236.35.96 216255 port 64 216255 unique_id port 216255 remote_ip 10.8.1.202 216260 username mostafa_es78 216260 mac 216260 bytes_out 0 216260 bytes_in 0 216260 station_ip 178.236.35.96 216260 port 64 216260 unique_id port 216260 remote_ip 10.8.1.202 216262 username alipour1506 216262 kill_reason Another user logged on this global unique id 216262 mac 216262 bytes_out 0 216262 bytes_in 0 216262 station_ip 94.176.8.78 216262 port 103 216262 unique_id port 216267 username askarzadeh9013 216267 mac 216267 bytes_out 0 216267 bytes_in 0 216267 station_ip 83.122.85.66 216267 port 106 216267 unique_id port 216269 username askarzadeh9013 216269 mac 216269 bytes_out 0 216269 bytes_in 0 216269 station_ip 83.122.85.66 216269 port 50 216269 unique_id port 216269 remote_ip 10.8.0.174 216273 username mehrpoyan101 216273 mac 216273 bytes_out 0 216273 bytes_in 0 216273 station_ip 5.120.103.99 216273 port 50 216273 unique_id port 216273 remote_ip 10.8.0.134 216274 username askarzadeh9013 216274 mac 216274 bytes_out 876569 216274 bytes_in 14394184 216274 station_ip 83.122.85.66 216274 port 106 216274 unique_id port 216274 remote_ip 10.8.0.174 216276 username mohammadjavad 216276 mac 216276 bytes_out 136544 216276 bytes_in 691458 216276 station_ip 83.123.139.102 216276 port 96 216276 unique_id port 216276 remote_ip 10.8.0.138 216280 username barzegar 216280 mac 216280 bytes_out 0 216280 bytes_in 0 216280 station_ip 5.119.128.157 216280 port 67 216280 unique_id port 216280 remote_ip 10.8.1.30 216283 username esmaeilkazemi 216283 mac 216283 bytes_out 0 216283 bytes_in 0 216283 station_ip 37.129.118.48 216283 port 109 216283 unique_id port 216283 remote_ip 10.8.0.66 216286 username yaghobi 216286 mac 216286 bytes_out 356225 216286 bytes_in 1930687 216286 station_ip 83.123.162.48 216286 port 106 216286 unique_id port 216286 remote_ip 10.8.0.106 216289 username shafiei3462 216289 mac 216289 bytes_out 8217 216289 bytes_in 12726 216289 station_ip 83.123.168.238 216289 port 67 216289 unique_id port 216289 remote_ip 10.8.1.174 216290 username tahmorsi 216290 mac 216290 bytes_out 618765 216290 bytes_in 1886098 216290 station_ip 37.129.93.220 216290 port 50 216290 unique_id port 216290 remote_ip 10.8.0.210 216291 username khademi 216291 kill_reason Another user logged on this global unique id 216291 mac 216291 bytes_out 0 216291 bytes_in 0 216291 station_ip 83.122.211.63 216291 port 69 216291 unique_id port 216291 remote_ip 10.8.1.218 216292 username barzegar 216292 mac 216292 bytes_out 46997 216292 bytes_in 52187 216292 station_ip 5.119.128.157 216292 port 107 216292 unique_id port 216292 remote_ip 10.8.0.34 216296 username meysam 216296 mac 216296 bytes_out 0 216296 bytes_in 0 216296 station_ip 5.119.103.209 216296 port 67 216296 unique_id port 216296 remote_ip 10.8.1.6 216302 username hadibarzegar 216302 mac 216302 bytes_out 0 216302 bytes_in 0 216302 station_ip 83.122.180.7 216302 port 95 216302 unique_id port 216302 remote_ip 10.8.0.154 216304 username kalantary6037 216304 mac 216304 bytes_out 1174569 216304 bytes_in 8771320 216304 station_ip 83.123.145.216 216304 port 106 216304 unique_id port 216304 remote_ip 10.8.0.18 216310 username meysam 216310 mac 216310 bytes_out 442788 216310 bytes_in 5322639 216295 port 106 216295 unique_id port 216295 remote_ip 10.8.0.98 216300 username amiresmaeili0609 216300 mac 216300 bytes_out 0 216300 bytes_in 0 216300 station_ip 83.123.178.235 216300 port 108 216300 unique_id port 216300 remote_ip 10.8.0.202 216308 username askarzadeh9013 216308 mac 216308 bytes_out 0 216308 bytes_in 0 216308 station_ip 83.122.85.66 216308 port 106 216308 unique_id port 216308 remote_ip 10.8.0.174 216311 username jafari 216311 kill_reason Another user logged on this global unique id 216311 mac 216311 bytes_out 0 216311 bytes_in 0 216311 station_ip 89.32.104.207 216311 port 105 216311 unique_id port 216315 username meysam 216315 mac 216315 bytes_out 398455 216315 bytes_in 5285079 216315 station_ip 5.119.125.152 216315 port 106 216315 unique_id port 216315 remote_ip 10.8.0.102 216318 username jafari 216318 kill_reason Another user logged on this global unique id 216318 mac 216318 bytes_out 0 216318 bytes_in 0 216318 station_ip 89.32.104.207 216318 port 105 216318 unique_id port 216319 username soleymani5056 216319 mac 216319 bytes_out 0 216319 bytes_in 0 216319 station_ip 5.120.169.172 216319 port 98 216319 unique_id port 216319 remote_ip 10.8.0.246 216321 username teymori5660 216321 mac 216321 bytes_out 0 216321 bytes_in 0 216321 station_ip 5.119.234.60 216321 port 95 216321 unique_id port 216321 remote_ip 10.8.0.142 216324 username motamedi9772 216324 kill_reason Another user logged on this global unique id 216324 mac 216324 bytes_out 0 216324 bytes_in 0 216324 station_ip 83.122.103.253 216324 port 67 216324 unique_id port 216324 remote_ip 10.8.1.182 216325 username mohammadjavad 216325 mac 216325 bytes_out 9832 216325 bytes_in 13968 216325 station_ip 83.123.162.14 216325 port 50 216325 unique_id port 216325 remote_ip 10.8.0.138 216332 username meysam 216332 mac 216332 bytes_out 292758 216332 bytes_in 2892716 216332 station_ip 5.119.141.127 216332 port 110 216332 unique_id port 216332 remote_ip 10.8.0.102 216337 username alipour1506 216337 kill_reason Another user logged on this global unique id 216337 mac 216337 bytes_out 0 216337 bytes_in 0 216337 station_ip 94.176.8.78 216337 port 103 216337 unique_id port 216339 username motamedi9772 216339 kill_reason Another user logged on this global unique id 216339 mac 216339 bytes_out 0 216339 bytes_in 0 216339 station_ip 83.122.103.253 216339 port 67 216339 unique_id port 216340 username milan 216340 kill_reason Another user logged on this global unique id 216340 mac 216340 bytes_out 0 216340 bytes_in 0 216340 station_ip 5.120.139.15 216340 port 60 216340 unique_id port 216342 username kalantary6037 216342 mac 216342 bytes_out 364346 216342 bytes_in 837681 216342 station_ip 83.123.232.4 216342 port 110 216342 unique_id port 216342 remote_ip 10.8.0.18 216344 username jafari 216344 kill_reason Another user logged on this global unique id 216344 mac 216344 bytes_out 0 216344 bytes_in 0 216344 station_ip 89.32.104.207 216344 port 105 216344 unique_id port 216349 username pourshad 216349 mac 216349 bytes_out 0 216349 bytes_in 0 216349 station_ip 5.120.100.246 216349 port 108 216349 unique_id port 216349 remote_ip 10.8.0.122 216353 username majidsarmast 216353 kill_reason Another user logged on this global unique id 216353 mac 216353 bytes_out 0 216353 bytes_in 0 216353 station_ip 37.129.177.166 216353 port 50 216353 unique_id port 216353 remote_ip 10.8.0.158 216354 username ayobi 216354 mac 216354 bytes_out 0 216354 bytes_in 0 216354 station_ip 83.122.228.40 216354 port 110 216354 unique_id port 216354 remote_ip 10.8.0.222 216303 mac 216303 bytes_out 0 216303 bytes_in 0 216303 station_ip 5.120.133.32 216303 port 64 216303 unique_id port 216303 remote_ip 10.8.1.242 216305 username jafari 216305 kill_reason Another user logged on this global unique id 216305 mac 216305 bytes_out 0 216305 bytes_in 0 216305 station_ip 89.32.104.207 216305 port 105 216305 unique_id port 216305 remote_ip 10.8.0.110 216306 username meysam 216306 mac 216306 bytes_out 0 216306 bytes_in 0 216306 station_ip 5.119.66.248 216306 port 95 216306 unique_id port 216306 remote_ip 10.8.0.102 216307 username askarzadeh9013 216307 mac 216307 bytes_out 0 216307 bytes_in 0 216307 station_ip 83.122.85.66 216307 port 98 216307 unique_id port 216309 username kalantary6037 216309 mac 216309 bytes_out 215426 216309 bytes_in 962845 216309 station_ip 83.123.145.216 216309 port 98 216309 unique_id port 216309 remote_ip 10.8.0.18 216312 username shafiei3462 216312 mac 216312 bytes_out 0 216312 bytes_in 0 216312 station_ip 83.123.138.122 216312 port 68 216312 unique_id port 216312 remote_ip 10.8.1.174 216313 username askarzadeh9013 216313 mac 216313 bytes_out 0 216313 bytes_in 0 216313 station_ip 83.122.85.66 216313 port 108 216313 unique_id port 216313 remote_ip 10.8.0.174 216314 username shafiei3462 216314 mac 216314 bytes_out 40503 216314 bytes_in 201873 216314 station_ip 83.123.138.122 216314 port 95 216314 unique_id port 216314 remote_ip 10.8.0.250 216316 username meysam 216316 mac 216316 bytes_out 601474 216316 bytes_in 6579964 216316 station_ip 5.119.164.111 216316 port 95 216316 unique_id port 216316 remote_ip 10.8.0.102 216322 username khademi 216322 kill_reason Another user logged on this global unique id 216322 mac 216322 bytes_out 0 216322 bytes_in 0 216322 station_ip 83.122.211.63 216322 port 69 216322 unique_id port 216323 username mohammadjavad 216323 mac 216323 bytes_out 0 216323 bytes_in 0 216323 station_ip 83.123.162.14 216323 port 50 216323 unique_id port 216323 remote_ip 10.8.0.138 216326 username meghdad1616 216326 mac 216326 bytes_out 12808 216326 bytes_in 22709 216326 station_ip 5.119.154.35 216326 port 95 216326 unique_id port 216326 remote_ip 10.8.0.230 216333 username barzegar8120 216333 mac 216333 bytes_out 1037845 216333 bytes_in 13453204 216333 station_ip 5.120.16.125 216333 port 109 216333 unique_id port 216333 remote_ip 10.8.0.62 216334 username shafiei3462 216334 mac 216334 bytes_out 124601 216334 bytes_in 721706 216334 station_ip 83.123.138.122 216334 port 68 216334 unique_id port 216334 remote_ip 10.8.1.174 216336 username mohammadjavad 216336 mac 216336 bytes_out 0 216336 bytes_in 0 216336 station_ip 83.123.162.14 216336 port 65 216336 unique_id port 216336 remote_ip 10.8.1.142 216338 username barzegar8595 216338 mac 216338 bytes_out 0 216338 bytes_in 0 216338 station_ip 46.225.211.104 216338 port 102 216338 unique_id port 216338 remote_ip 10.8.0.170 216341 username malekpoir 216341 mac 216341 bytes_out 738842 216341 bytes_in 3707156 216341 station_ip 5.120.133.32 216341 port 64 216341 unique_id port 216341 remote_ip 10.8.1.242 216345 username morteza4424 216345 kill_reason Another user logged on this global unique id 216345 mac 216345 bytes_out 0 216345 bytes_in 0 216345 station_ip 83.123.138.159 216345 port 109 216345 unique_id port 216345 remote_ip 10.8.0.150 216346 username khalili2 216346 mac 216346 bytes_out 0 216346 bytes_in 0 216346 station_ip 5.119.187.48 216346 port 111 216346 unique_id port 216346 remote_ip 10.8.0.190 216310 station_ip 5.120.140.12 216310 port 95 216310 unique_id port 216310 remote_ip 10.8.0.102 216317 username charkhandaz3496 216317 mac 216317 bytes_out 174896 216317 bytes_in 1015750 216317 station_ip 5.120.37.187 216317 port 70 216317 unique_id port 216317 remote_ip 10.8.1.154 216320 username charkhandaz3496 216320 mac 216320 bytes_out 26445 216320 bytes_in 24616 216320 station_ip 5.120.37.187 216320 port 71 216320 unique_id port 216320 remote_ip 10.8.1.154 216327 username meghdad1616 216327 mac 216327 bytes_out 0 216327 bytes_in 0 216327 station_ip 5.119.154.35 216327 port 95 216327 unique_id port 216327 remote_ip 10.8.0.230 216328 username jafari 216328 kill_reason Another user logged on this global unique id 216328 mac 216328 bytes_out 0 216328 bytes_in 0 216328 station_ip 89.32.104.207 216328 port 105 216328 unique_id port 216329 username pourshad 216329 mac 216329 bytes_out 0 216329 bytes_in 0 216329 station_ip 5.120.100.246 216329 port 65 216329 unique_id port 216330 username iranmanesh4443 216330 mac 216330 bytes_out 1395684 216330 bytes_in 9440457 216330 station_ip 5.120.138.226 216330 port 96 216330 unique_id port 216330 remote_ip 10.8.0.198 216331 username kalantary6037 216331 mac 216331 bytes_out 0 216331 bytes_in 0 216331 station_ip 83.123.166.32 216331 port 106 216331 unique_id port 216331 remote_ip 10.8.0.18 216335 username jafari 216335 kill_reason Another user logged on this global unique id 216335 mac 216335 bytes_out 0 216335 bytes_in 0 216335 station_ip 89.32.104.207 216335 port 105 216335 unique_id port 216343 username shafiei3462 216343 mac 216343 bytes_out 15891 216343 bytes_in 35251 216343 station_ip 83.123.138.122 216343 port 68 216343 unique_id port 216343 remote_ip 10.8.1.174 216348 username ayobi 216348 mac 216348 bytes_out 260000 216348 bytes_in 741464 216348 station_ip 83.122.228.40 216348 port 110 216348 unique_id port 216348 remote_ip 10.8.0.222 216351 username alipour1506 216351 kill_reason Another user logged on this global unique id 216351 mac 216351 bytes_out 0 216351 bytes_in 0 216351 station_ip 94.176.8.78 216351 port 103 216351 unique_id port 216352 username shafiei3462 216352 mac 216352 bytes_out 261661 216352 bytes_in 942185 216352 station_ip 83.123.138.122 216352 port 64 216352 unique_id port 216352 remote_ip 10.8.1.174 216364 username motamedi9772 216364 kill_reason Another user logged on this global unique id 216364 mac 216364 bytes_out 0 216364 bytes_in 0 216364 station_ip 83.122.103.253 216364 port 67 216364 unique_id port 216365 username pourshad 216365 mac 216365 bytes_out 92518 216365 bytes_in 150068 216365 station_ip 5.120.100.246 216365 port 65 216365 unique_id port 216365 remote_ip 10.8.1.10 216367 username jafari 216367 mac 216367 bytes_out 0 216367 bytes_in 0 216367 station_ip 89.32.104.207 216367 port 105 216367 unique_id port 216369 username alipour1506 216369 kill_reason Another user logged on this global unique id 216369 mac 216369 bytes_out 0 216369 bytes_in 0 216369 station_ip 94.176.8.78 216369 port 103 216369 unique_id port 216370 username ayobi 216370 mac 216370 bytes_out 172286 216370 bytes_in 1127885 216370 station_ip 83.123.234.188 216370 port 64 216370 unique_id port 216370 remote_ip 10.8.1.50 216377 username khademi 216377 kill_reason Another user logged on this global unique id 216377 mac 216377 bytes_out 0 216377 bytes_in 0 216377 station_ip 83.122.211.63 216377 port 69 216377 unique_id port 216381 username shafiei3462 216381 mac 216381 bytes_out 0 216381 bytes_in 0 216347 username motamedi9772 216347 kill_reason Another user logged on this global unique id 216347 mac 216347 bytes_out 0 216347 bytes_in 0 216347 station_ip 83.122.103.253 216347 port 67 216347 unique_id port 216350 username jafari 216350 kill_reason Another user logged on this global unique id 216350 mac 216350 bytes_out 0 216350 bytes_in 0 216350 station_ip 89.32.104.207 216350 port 105 216350 unique_id port 216355 username majidsarmast 216355 mac 216355 bytes_out 0 216355 bytes_in 0 216355 station_ip 37.129.177.166 216355 port 50 216355 unique_id port 216357 username nasiripour0935 216357 mac 216357 bytes_out 1807510 216357 bytes_in 14268010 216357 station_ip 37.129.227.49 216357 port 108 216357 unique_id port 216357 remote_ip 10.8.0.22 216358 username nasiripour0935 216358 mac 216358 bytes_out 0 216358 bytes_in 0 216358 station_ip 37.129.227.49 216358 port 64 216358 unique_id port 216358 remote_ip 10.8.1.114 216361 username morteza4424 216361 mac 216361 bytes_out 0 216361 bytes_in 0 216361 station_ip 83.123.138.159 216361 port 109 216361 unique_id port 216366 username hosseine 216366 kill_reason Another user logged on this global unique id 216366 mac 216366 bytes_out 0 216366 bytes_in 0 216366 station_ip 83.123.110.35 216366 port 107 216366 unique_id port 216366 remote_ip 10.8.0.126 216371 username milan 216371 kill_reason Another user logged on this global unique id 216371 mac 216371 bytes_out 0 216371 bytes_in 0 216371 station_ip 5.120.139.15 216371 port 60 216371 unique_id port 216372 username ayobi 216372 mac 216372 bytes_out 49571 216372 bytes_in 181755 216372 station_ip 83.123.234.188 216372 port 64 216372 unique_id port 216372 remote_ip 10.8.1.50 216373 username farhad3 216373 mac 216373 bytes_out 195043 216373 bytes_in 1480552 216373 station_ip 5.120.79.174 216373 port 68 216373 unique_id port 216373 remote_ip 10.8.1.86 216374 username khalili2 216374 unique_id port 216374 terminate_cause Lost-Carrier 216374 bytes_out 2637084 216374 bytes_in 93134621 216374 station_ip 5.119.187.48 216374 port 15728678 216374 nas_port_type Virtual 216374 remote_ip 5.5.5.246 216382 username askarzadeh9013 216382 mac 216382 bytes_out 0 216382 bytes_in 0 216382 station_ip 37.129.186.224 216382 port 105 216382 unique_id port 216385 username rahim 216385 mac 216385 bytes_out 0 216385 bytes_in 0 216385 station_ip 5.120.65.0 216385 port 108 216385 unique_id port 216385 remote_ip 10.8.0.6 216386 username hosseine 216386 mac 216386 bytes_out 0 216386 bytes_in 0 216386 station_ip 83.123.110.35 216386 port 107 216386 unique_id port 216390 username mostafa_es78 216390 mac 216390 bytes_out 0 216390 bytes_in 0 216390 station_ip 178.236.35.96 216390 port 110 216390 unique_id port 216390 remote_ip 10.8.0.42 216391 username pourshad 216391 mac 216391 bytes_out 0 216391 bytes_in 0 216391 station_ip 5.120.100.246 216391 port 65 216391 unique_id port 216391 remote_ip 10.8.1.10 216392 username kharazmi2920 216392 mac 216392 bytes_out 0 216392 bytes_in 0 216392 station_ip 89.32.109.94 216392 port 106 216392 unique_id port 216392 remote_ip 10.8.0.54 216393 username barzegar8120 216393 mac 216393 bytes_out 9010 216393 bytes_in 11285 216393 station_ip 5.119.39.67 216393 port 107 216393 unique_id port 216393 remote_ip 10.8.0.62 216394 username godarzi 216394 mac 216394 bytes_out 0 216394 bytes_in 0 216394 station_ip 5.202.65.237 216394 port 96 216394 unique_id port 216395 username teymori5660 216395 mac 216395 bytes_out 0 216395 bytes_in 0 216356 username morteza4424 216356 kill_reason Another user logged on this global unique id 216356 mac 216356 bytes_out 0 216356 bytes_in 0 216356 station_ip 83.123.138.159 216356 port 109 216356 unique_id port 216359 username alipour1506 216359 kill_reason Another user logged on this global unique id 216359 mac 216359 bytes_out 0 216359 bytes_in 0 216359 station_ip 94.176.8.78 216359 port 103 216359 unique_id port 216360 username jafari 216360 kill_reason Another user logged on this global unique id 216360 mac 216360 bytes_out 0 216360 bytes_in 0 216360 station_ip 89.32.104.207 216360 port 105 216360 unique_id port 216362 username godarzi 216362 kill_reason Another user logged on this global unique id 216362 mac 216362 bytes_out 0 216362 bytes_in 0 216362 station_ip 5.202.65.237 216362 port 96 216362 unique_id port 216362 remote_ip 10.8.0.74 216363 username ayobi 216363 mac 216363 bytes_out 17361 216363 bytes_in 28348 216363 station_ip 83.123.234.188 216363 port 110 216363 unique_id port 216363 remote_ip 10.8.0.222 216368 username charkhandaz3496 216368 mac 216368 bytes_out 0 216368 bytes_in 0 216368 station_ip 5.120.37.187 216368 port 108 216368 unique_id port 216368 remote_ip 10.8.0.218 216375 username askarzadeh9013 216375 kill_reason Another user logged on this global unique id 216375 mac 216375 bytes_out 0 216375 bytes_in 0 216375 station_ip 37.129.186.224 216375 port 105 216375 unique_id port 216375 remote_ip 10.8.0.174 216376 username motamedi9772 216376 kill_reason Another user logged on this global unique id 216376 mac 216376 bytes_out 0 216376 bytes_in 0 216376 station_ip 83.122.103.253 216376 port 67 216376 unique_id port 216378 username soleymani5056 216378 mac 216378 bytes_out 240564 216378 bytes_in 1290173 216378 station_ip 5.119.36.27 216378 port 108 216378 unique_id port 216378 remote_ip 10.8.0.246 216379 username shafiei3462 216379 mac 216379 bytes_out 154301 216379 bytes_in 262903 216379 station_ip 83.123.138.122 216379 port 50 216379 unique_id port 216379 remote_ip 10.8.0.250 216380 username mostafa_es78 216380 mac 216380 bytes_out 0 216380 bytes_in 0 216380 station_ip 178.236.35.96 216380 port 110 216380 unique_id port 216380 remote_ip 10.8.0.42 216383 username meghdad1616 216383 mac 216383 bytes_out 896124 216383 bytes_in 4466143 216383 station_ip 5.119.154.35 216383 port 109 216383 unique_id port 216383 remote_ip 10.8.0.230 216384 username tahmorsi 216384 mac 216384 bytes_out 182663 216384 bytes_in 486363 216384 station_ip 86.57.23.121 216384 port 108 216384 unique_id port 216384 remote_ip 10.8.0.210 216388 username askarzadeh9013 216388 mac 216388 bytes_out 1507189 216388 bytes_in 15557231 216388 station_ip 37.129.186.224 216388 port 112 216388 unique_id port 216388 remote_ip 10.8.0.174 216399 username soleymani5056 216399 mac 216399 bytes_out 0 216399 bytes_in 0 216399 station_ip 5.119.79.111 216399 port 110 216399 unique_id port 216399 remote_ip 10.8.0.246 216403 username motamedi9772 216403 mac 216403 bytes_out 0 216403 bytes_in 0 216403 station_ip 83.122.103.253 216403 port 67 216403 unique_id port 216404 username kalantary6037 216404 mac 216404 bytes_out 0 216404 bytes_in 0 216404 station_ip 83.123.187.176 216404 port 105 216404 unique_id port 216404 remote_ip 10.8.0.18 216408 username shafiei3462 216408 mac 216408 bytes_out 120554 216408 bytes_in 259363 216408 station_ip 83.123.138.122 216408 port 111 216408 unique_id port 216408 remote_ip 10.8.0.250 216412 username dortaj3792 216412 mac 216412 bytes_out 0 216412 bytes_in 0 216381 station_ip 83.123.138.122 216381 port 68 216381 unique_id port 216381 remote_ip 10.8.1.174 216387 username kalantary6037 216387 mac 216387 bytes_out 1080289 216387 bytes_in 8454700 216387 station_ip 83.123.166.56 216387 port 105 216387 unique_id port 216387 remote_ip 10.8.0.18 216389 username barzegar8120 216389 mac 216389 bytes_out 1495722 216389 bytes_in 6153108 216389 station_ip 5.119.39.67 216389 port 106 216389 unique_id port 216389 remote_ip 10.8.0.62 216396 username kalantary6037 216396 mac 216396 bytes_out 632367 216396 bytes_in 4986250 216396 station_ip 83.123.224.216 216396 port 106 216396 unique_id port 216396 remote_ip 10.8.0.18 216398 username amiresmaeili0609 216398 mac 216398 bytes_out 0 216398 bytes_in 0 216398 station_ip 83.123.178.235 216398 port 109 216398 unique_id port 216398 remote_ip 10.8.0.202 216402 username farhad3 216402 kill_reason Another user logged on this global unique id 216402 mac 216402 bytes_out 0 216402 bytes_in 0 216402 station_ip 5.120.79.174 216402 port 50 216402 unique_id port 216402 remote_ip 10.8.0.98 216407 username barzegar8120 216407 mac 216407 bytes_out 0 216407 bytes_in 0 216407 station_ip 5.119.78.52 216407 port 107 216407 unique_id port 216407 remote_ip 10.8.0.62 216410 username ayobi 216410 mac 216410 bytes_out 2040313 216410 bytes_in 18130046 216410 station_ip 83.123.234.188 216410 port 64 216410 unique_id port 216410 remote_ip 10.8.1.50 216413 username barzegar8120 216413 mac 216413 bytes_out 0 216413 bytes_in 0 216413 station_ip 5.120.108.174 216413 port 106 216413 unique_id port 216413 remote_ip 10.8.0.62 216417 username khademi 216417 mac 216417 bytes_out 0 216417 bytes_in 0 216417 station_ip 83.122.211.63 216417 port 69 216417 unique_id port 216418 username alipour1506 216418 kill_reason Another user logged on this global unique id 216418 mac 216418 bytes_out 0 216418 bytes_in 0 216418 station_ip 94.176.8.78 216418 port 103 216418 unique_id port 216419 username barzegar8120 216419 mac 216419 bytes_out 296408 216419 bytes_in 1416156 216419 station_ip 5.120.89.187 216419 port 98 216419 unique_id port 216419 remote_ip 10.8.0.62 216420 username motamedi9772 216420 kill_reason Another user logged on this global unique id 216420 mac 216420 bytes_out 0 216420 bytes_in 0 216420 station_ip 83.122.103.253 216420 port 105 216420 unique_id port 216420 remote_ip 10.8.0.86 216424 username moslem6940 216424 mac 216424 bytes_out 2884660 216424 bytes_in 34105336 216424 station_ip 83.123.62.119 216424 port 106 216424 unique_id port 216424 remote_ip 10.8.0.182 216428 username rahim 216428 kill_reason Another user logged on this global unique id 216428 mac 216428 bytes_out 0 216428 bytes_in 0 216428 station_ip 5.120.65.0 216428 port 108 216428 unique_id port 216428 remote_ip 10.8.0.6 216430 username farhad3 216430 mac 216430 bytes_out 2216883 216430 bytes_in 13928465 216430 station_ip 5.120.79.174 216430 port 64 216430 unique_id port 216430 remote_ip 10.8.1.86 216434 username rahim 216434 mac 216434 bytes_out 0 216434 bytes_in 0 216434 station_ip 5.120.65.0 216434 port 108 216434 unique_id port 216435 username amiresmaeili0609 216435 kill_reason Another user logged on this global unique id 216435 mac 216435 bytes_out 0 216435 bytes_in 0 216435 station_ip 83.123.178.235 216435 port 50 216435 unique_id port 216435 remote_ip 10.8.0.202 216438 username yaghobi 216438 mac 216438 bytes_out 817423 216438 bytes_in 1032882 216438 station_ip 37.129.99.92 216438 port 98 216438 unique_id port 216438 remote_ip 10.8.0.106 216395 station_ip 5.119.239.179 216395 port 107 216395 unique_id port 216395 remote_ip 10.8.0.142 216397 username aminvpn2 216397 mac 216397 bytes_out 1894498 216397 bytes_in 50288543 216397 station_ip 5.119.122.138 216397 port 105 216397 unique_id port 216397 remote_ip 10.8.0.146 216400 username khademi 216400 kill_reason Another user logged on this global unique id 216400 mac 216400 bytes_out 0 216400 bytes_in 0 216400 station_ip 83.122.211.63 216400 port 69 216400 unique_id port 216401 username barzegar8120 216401 mac 216401 bytes_out 6204 216401 bytes_in 12927 216401 station_ip 5.119.78.52 216401 port 96 216401 unique_id port 216401 remote_ip 10.8.0.62 216405 username godarzi 216405 mac 216405 bytes_out 0 216405 bytes_in 0 216405 station_ip 5.202.65.237 216405 port 106 216405 unique_id port 216405 remote_ip 10.8.0.74 216406 username barzegar8120 216406 mac 216406 bytes_out 0 216406 bytes_in 0 216406 station_ip 5.119.78.52 216406 port 106 216406 unique_id port 216406 remote_ip 10.8.0.62 216409 username aminvpn 216409 kill_reason Wrong password 216409 mac 216409 bytes_out 0 216409 bytes_in 0 216409 station_ip 37.129.110.27 216409 port 106 216409 unique_id port 216411 username ahmadi1 216411 mac 216411 bytes_out 241266 216411 bytes_in 3088091 216411 station_ip 37.129.244.208 216411 port 106 216411 unique_id port 216411 remote_ip 10.8.0.114 216414 username ayobi 216414 mac 216414 bytes_out 0 216414 bytes_in 0 216414 station_ip 83.122.59.69 216414 port 64 216414 unique_id port 216414 remote_ip 10.8.1.50 216416 username sabaghnezhad 216416 mac 216416 bytes_out 0 216416 bytes_in 0 216416 station_ip 83.122.112.164 216416 port 95 216416 unique_id port 216416 remote_ip 10.8.0.94 216427 username aminvpn 216427 unique_id port 216427 terminate_cause User-Request 216427 bytes_out 14071 216427 bytes_in 340 216427 station_ip 5.120.112.22 216427 port 15728679 216427 nas_port_type Virtual 216427 remote_ip 5.5.5.245 216429 username barzegar8120 216429 mac 216429 bytes_out 0 216429 bytes_in 0 216429 station_ip 5.119.40.163 216429 port 50 216429 unique_id port 216429 remote_ip 10.8.0.62 216432 username farhad3 216432 mac 216432 bytes_out 0 216432 bytes_in 0 216432 station_ip 5.120.79.174 216432 port 64 216432 unique_id port 216432 remote_ip 10.8.1.86 216433 username pourshad 216433 kill_reason Another user logged on this global unique id 216433 mac 216433 bytes_out 0 216433 bytes_in 0 216433 station_ip 5.120.100.246 216433 port 65 216433 unique_id port 216433 remote_ip 10.8.1.10 216437 username farhad3 216437 mac 216437 bytes_out 1166077 216437 bytes_in 5640097 216437 station_ip 5.120.79.174 216437 port 64 216437 unique_id port 216437 remote_ip 10.8.1.86 216441 username yaghobi 216441 mac 216441 bytes_out 43736 216441 bytes_in 78918 216441 station_ip 37.129.99.92 216441 port 98 216441 unique_id port 216441 remote_ip 10.8.0.106 216443 username motamedi9772 216443 kill_reason Another user logged on this global unique id 216443 mac 216443 bytes_out 0 216443 bytes_in 0 216443 station_ip 83.122.103.253 216443 port 105 216443 unique_id port 216444 username soleymani5056 216444 mac 216444 bytes_out 0 216444 bytes_in 0 216444 station_ip 5.119.215.225 216444 port 98 216444 unique_id port 216444 remote_ip 10.8.0.246 216446 username sabaghnezhad 216446 mac 216446 bytes_out 1015264 216446 bytes_in 3784022 216446 station_ip 83.122.112.164 216446 port 95 216446 unique_id port 216446 remote_ip 10.8.0.94 216449 username motamedi9772 216471 port 50 216412 station_ip 5.119.117.158 216412 port 98 216412 unique_id port 216412 remote_ip 10.8.0.10 216415 username mostafa_es78 216415 mac 216415 bytes_out 111359 216415 bytes_in 536522 216415 station_ip 113.203.92.70 216415 port 107 216415 unique_id port 216415 remote_ip 10.8.0.42 216421 username farhad3 216421 mac 216421 bytes_out 0 216421 bytes_in 0 216421 station_ip 5.120.79.174 216421 port 50 216421 unique_id port 216422 username hamid1430 216422 mac 216422 bytes_out 3013421 216422 bytes_in 14223517 216422 station_ip 83.123.158.162 216422 port 96 216422 unique_id port 216422 remote_ip 10.8.0.166 216423 username farhad3 216423 mac 216423 bytes_out 477296 216423 bytes_in 2131821 216423 station_ip 5.120.79.174 216423 port 50 216423 unique_id port 216423 remote_ip 10.8.0.98 216425 username shafiei3462 216425 mac 216425 bytes_out 101687 216425 bytes_in 608523 216425 station_ip 83.123.138.122 216425 port 98 216425 unique_id port 216425 remote_ip 10.8.0.250 216426 username farhad3 216426 mac 216426 bytes_out 0 216426 bytes_in 0 216426 station_ip 5.120.79.174 216426 port 64 216426 unique_id port 216426 remote_ip 10.8.1.86 216431 username farhad3 216431 mac 216431 bytes_out 0 216431 bytes_in 0 216431 station_ip 5.120.79.174 216431 port 64 216431 unique_id port 216431 remote_ip 10.8.1.86 216436 username motamedi9772 216436 kill_reason Another user logged on this global unique id 216436 mac 216436 bytes_out 0 216436 bytes_in 0 216436 station_ip 83.122.103.253 216436 port 105 216436 unique_id port 216439 username amiresmaeili0609 216439 kill_reason Another user logged on this global unique id 216439 mac 216439 bytes_out 0 216439 bytes_in 0 216439 station_ip 83.123.178.235 216439 port 50 216439 unique_id port 216440 username amiresmaeili0609 216440 mac 216440 bytes_out 0 216440 bytes_in 0 216440 station_ip 83.123.178.235 216440 port 50 216440 unique_id port 216450 username farhad3 216450 mac 216450 bytes_out 0 216450 bytes_in 0 216450 station_ip 5.120.86.194 216450 port 50 216450 unique_id port 216450 remote_ip 10.8.0.98 216451 username motamedi9772 216451 kill_reason Another user logged on this global unique id 216451 mac 216451 bytes_out 0 216451 bytes_in 0 216451 station_ip 83.122.103.253 216451 port 105 216451 unique_id port 216458 username motamedi9772 216458 kill_reason Another user logged on this global unique id 216458 mac 216458 bytes_out 0 216458 bytes_in 0 216458 station_ip 83.122.103.253 216458 port 105 216458 unique_id port 216463 username amiresmaeili0609 216463 mac 216463 bytes_out 460674 216463 bytes_in 1082733 216463 station_ip 83.123.178.235 216463 port 106 216463 unique_id port 216463 remote_ip 10.8.0.202 216464 username motamedi9772 216464 mac 216464 bytes_out 0 216464 bytes_in 0 216464 station_ip 83.122.103.253 216464 port 105 216464 unique_id port 216466 username farhad3 216466 mac 216466 bytes_out 0 216466 bytes_in 0 216466 station_ip 5.120.86.194 216466 port 50 216466 unique_id port 216468 username aminvpn 216468 unique_id port 216468 terminate_cause User-Request 216468 bytes_out 528875 216468 bytes_in 935492 216468 station_ip 5.120.112.22 216468 port 15728686 216468 nas_port_type Virtual 216468 remote_ip 5.5.5.245 216470 username aminvpn 216470 unique_id port 216470 terminate_cause User-Request 216470 bytes_out 260959 216470 bytes_in 537305 216470 station_ip 5.120.60.56 216470 port 15728687 216470 nas_port_type Virtual 216470 remote_ip 5.5.5.244 216471 username soleymani5056 216471 mac 216471 bytes_out 0 216471 bytes_in 0 216471 station_ip 5.120.155.62 216442 username amiresmaeili0609 216442 kill_reason Another user logged on this global unique id 216442 mac 216442 bytes_out 0 216442 bytes_in 0 216442 station_ip 83.123.178.235 216442 port 106 216442 unique_id port 216442 remote_ip 10.8.0.202 216445 username motamedi9772 216445 kill_reason Another user logged on this global unique id 216445 mac 216445 bytes_out 0 216445 bytes_in 0 216445 station_ip 83.122.103.253 216445 port 105 216445 unique_id port 216447 username motamedi9772 216447 kill_reason Another user logged on this global unique id 216447 mac 216447 bytes_out 0 216447 bytes_in 0 216447 station_ip 83.122.103.253 216447 port 105 216447 unique_id port 216448 username amiresmaeili0609 216448 kill_reason Another user logged on this global unique id 216448 mac 216448 bytes_out 0 216448 bytes_in 0 216448 station_ip 83.123.178.235 216448 port 106 216448 unique_id port 216453 username motamedi9772 216453 kill_reason Another user logged on this global unique id 216453 mac 216453 bytes_out 0 216453 bytes_in 0 216453 station_ip 83.122.103.253 216453 port 105 216453 unique_id port 216454 username motamedi9772 216454 kill_reason Another user logged on this global unique id 216454 mac 216454 bytes_out 0 216454 bytes_in 0 216454 station_ip 83.122.103.253 216454 port 105 216454 unique_id port 216456 username farhad3 216456 kill_reason Another user logged on this global unique id 216456 mac 216456 bytes_out 0 216456 bytes_in 0 216456 station_ip 5.120.86.194 216456 port 50 216456 unique_id port 216456 remote_ip 10.8.0.98 216460 username farhad3 216460 kill_reason Another user logged on this global unique id 216460 mac 216460 bytes_out 0 216460 bytes_in 0 216460 station_ip 5.120.86.194 216460 port 50 216460 unique_id port 216461 username milan 216461 kill_reason Another user logged on this global unique id 216461 mac 216461 bytes_out 0 216461 bytes_in 0 216461 station_ip 5.120.139.15 216461 port 60 216461 unique_id port 216467 username mosi 216467 kill_reason Another user logged on this global unique id 216467 mac 216467 bytes_out 0 216467 bytes_in 0 216467 station_ip 151.235.82.195 216467 port 95 216467 unique_id port 216467 remote_ip 10.8.0.38 216472 username mosi 216472 mac 216472 bytes_out 0 216472 bytes_in 0 216472 station_ip 151.235.82.195 216472 port 95 216472 unique_id port 216475 username mostafa_es78 216475 mac 216475 bytes_out 0 216475 bytes_in 0 216475 station_ip 113.203.43.230 216475 port 50 216475 unique_id port 216475 remote_ip 10.8.0.42 216476 username alipour1506 216476 kill_reason Another user logged on this global unique id 216476 mac 216476 bytes_out 0 216476 bytes_in 0 216476 station_ip 94.176.8.78 216476 port 103 216476 unique_id port 216477 username farhad3 216477 mac 216477 bytes_out 0 216477 bytes_in 0 216477 station_ip 5.120.86.194 216477 port 105 216477 unique_id port 216477 remote_ip 10.8.0.98 216480 username aminvpn 216480 unique_id port 216480 terminate_cause Lost-Carrier 216480 bytes_out 5622158 216480 bytes_in 249169236 216480 station_ip 5.119.151.92 216480 port 15728689 216480 nas_port_type Virtual 216480 remote_ip 5.5.5.243 216481 username malekpoir 216481 mac 216481 bytes_out 0 216481 bytes_in 0 216481 station_ip 5.120.133.32 216481 port 102 216481 unique_id port 216481 remote_ip 10.8.0.178 216483 username mohammadjavad 216483 kill_reason Another user logged on this global unique id 216483 mac 216483 bytes_out 0 216483 bytes_in 0 216483 station_ip 83.122.7.144 216483 port 95 216483 unique_id port 216483 remote_ip 10.8.0.138 216486 username aminvpn 216486 unique_id port 216486 terminate_cause Lost-Carrier 216486 bytes_out 56945 216486 bytes_in 265061 216486 station_ip 83.122.232.168 216449 kill_reason Another user logged on this global unique id 216449 mac 216449 bytes_out 0 216449 bytes_in 0 216449 station_ip 83.122.103.253 216449 port 105 216449 unique_id port 216452 username amiresmaeili0609 216452 mac 216452 bytes_out 0 216452 bytes_in 0 216452 station_ip 83.123.178.235 216452 port 106 216452 unique_id port 216455 username amiresmaeili0609 216455 mac 216455 bytes_out 0 216455 bytes_in 0 216455 station_ip 83.123.178.235 216455 port 95 216455 unique_id port 216455 remote_ip 10.8.0.202 216457 username mosi 216457 mac 216457 bytes_out 0 216457 bytes_in 0 216457 station_ip 151.235.82.195 216457 port 106 216457 unique_id port 216457 remote_ip 10.8.0.38 216459 username motamedi9772 216459 kill_reason Another user logged on this global unique id 216459 mac 216459 bytes_out 0 216459 bytes_in 0 216459 station_ip 83.122.103.253 216459 port 105 216459 unique_id port 216462 username abdolahi0311 216462 mac 216462 bytes_out 4054049 216462 bytes_in 41279758 216462 station_ip 5.120.39.45 216462 port 98 216462 unique_id port 216462 remote_ip 10.8.0.238 216465 username motamedi9772 216465 mac 216465 bytes_out 0 216465 bytes_in 0 216465 station_ip 83.122.103.253 216465 port 98 216465 unique_id port 216465 remote_ip 10.8.0.86 216469 username farhad3 216469 mac 216469 bytes_out 1158920 216469 bytes_in 5681213 216469 station_ip 5.120.86.194 216469 port 50 216469 unique_id port 216469 remote_ip 10.8.0.98 216473 username motamedi9772 216473 mac 216473 bytes_out 0 216473 bytes_in 0 216473 station_ip 83.122.103.253 216473 port 98 216473 unique_id port 216473 remote_ip 10.8.0.86 216478 username charkhandaz3496 216478 mac 216478 bytes_out 0 216478 bytes_in 0 216478 station_ip 5.120.37.187 216478 port 50 216478 unique_id port 216478 remote_ip 10.8.0.218 216479 username aminvpn 216479 unique_id port 216479 terminate_cause Lost-Carrier 216479 bytes_out 4640143 216479 bytes_in 198641870 216479 station_ip 5.120.60.56 216479 port 15728688 216479 nas_port_type Virtual 216479 remote_ip 5.5.5.244 216482 username aminvpn 216482 unique_id port 216482 terminate_cause Lost-Carrier 216482 bytes_out 7239102 216482 bytes_in 182828744 216482 station_ip 5.119.151.92 216482 port 15728690 216482 nas_port_type Virtual 216482 remote_ip 5.5.5.243 216485 username kamali3 216485 mac 216485 bytes_out 0 216485 bytes_in 0 216485 station_ip 83.122.204.212 216485 port 98 216485 unique_id port 216485 remote_ip 10.8.0.242 216486 port 15728692 216486 nas_port_type Virtual 216486 remote_ip 5.5.5.241 216487 username mohammadjavad 216487 kill_reason Another user logged on this global unique id 216487 mac 216487 bytes_out 0 216487 bytes_in 0 216487 station_ip 83.122.7.144 216487 port 95 216487 unique_id port 216488 username mohammadjavad 216488 mac 216488 bytes_out 0 216488 bytes_in 0 216488 station_ip 83.122.7.144 216488 port 95 216488 unique_id port 216489 username mohammadjavad 216489 kill_reason Another user logged on this global unique id 216489 mac 216489 bytes_out 0 216489 bytes_in 0 216489 station_ip 83.122.115.28 216489 port 95 216489 unique_id port 216489 remote_ip 10.8.0.138 216490 username mohammadjavad 216490 mac 216490 bytes_out 0 216490 bytes_in 0 216490 station_ip 83.122.115.28 216490 port 95 216490 unique_id port 216491 username yaghobi 216491 mac 216491 bytes_out 0 216491 bytes_in 0 216491 station_ip 83.123.85.135 216491 port 95 216491 unique_id port 216491 remote_ip 10.8.0.106 216492 username malekpoir 216492 mac 216492 bytes_out 0 216492 bytes_in 0 216492 station_ip 5.120.133.32 216471 unique_id port 216471 remote_ip 10.8.0.246 216474 username milan 216474 kill_reason Another user logged on this global unique id 216474 mac 216474 bytes_out 0 216474 bytes_in 0 216474 station_ip 5.120.139.15 216474 port 60 216474 unique_id port 216484 username aminvpn 216484 unique_id port 216484 terminate_cause User-Request 216484 bytes_out 2180282 216484 bytes_in 66318876 216484 station_ip 5.119.200.225 216484 port 15728691 216484 nas_port_type Virtual 216484 remote_ip 5.5.5.242 216492 port 50 216492 unique_id port 216492 remote_ip 10.8.0.178 216493 username barzegar8120 216493 mac 216493 bytes_out 476157 216493 bytes_in 589113 216493 station_ip 5.119.40.163 216493 port 50 216493 unique_id port 216493 remote_ip 10.8.0.62 216494 username barzegar8120 216494 mac 216494 bytes_out 83000 216494 bytes_in 157341 216494 station_ip 5.119.40.163 216494 port 102 216494 unique_id port 216494 remote_ip 10.8.0.62 216495 username barzegar8120 216495 mac 216495 bytes_out 39964 216495 bytes_in 27833 216495 station_ip 5.119.40.163 216495 port 102 216495 unique_id port 216495 remote_ip 10.8.0.62 216496 username dortaj3792 216496 mac 216496 bytes_out 0 216496 bytes_in 0 216496 station_ip 5.119.117.158 216496 port 98 216496 unique_id port 216496 remote_ip 10.8.0.10 216497 username kalantary6037 216497 mac 216497 bytes_out 0 216497 bytes_in 0 216497 station_ip 83.123.181.240 216497 port 106 216497 unique_id port 216497 remote_ip 10.8.0.18 216498 username jafari 216498 kill_reason Another user logged on this global unique id 216498 mac 216498 bytes_out 0 216498 bytes_in 0 216498 station_ip 37.137.10.172 216498 port 50 216498 unique_id port 216498 remote_ip 10.8.0.110 216499 username malekpoir 216499 mac 216499 bytes_out 70497 216499 bytes_in 172897 216499 station_ip 5.120.55.166 216499 port 95 216499 unique_id port 216499 remote_ip 10.8.0.178 216500 username alipour1506 216500 kill_reason Another user logged on this global unique id 216500 mac 216500 bytes_out 0 216500 bytes_in 0 216500 station_ip 94.176.8.78 216500 port 103 216500 unique_id port 216501 username safari2994 216501 mac 216501 bytes_out 2423997 216501 bytes_in 3934784 216501 station_ip 5.202.56.65 216501 port 97 216501 unique_id port 216501 remote_ip 10.8.0.118 216502 username sekonji0496 216502 mac 216502 bytes_out 0 216502 bytes_in 0 216502 station_ip 83.123.140.68 216502 port 106 216502 unique_id port 216502 remote_ip 10.8.0.70 216503 username hamid1430 216503 mac 216503 bytes_out 0 216503 bytes_in 0 216503 station_ip 83.123.33.66 216503 port 98 216503 unique_id port 216503 remote_ip 10.8.0.166 216504 username safari2994 216504 mac 216504 bytes_out 1744 216504 bytes_in 3898 216504 station_ip 5.202.56.65 216504 port 98 216504 unique_id port 216504 remote_ip 10.8.0.118 216505 username jafari 216505 mac 216505 bytes_out 0 216505 bytes_in 0 216505 station_ip 37.137.10.172 216505 port 50 216505 unique_id port 216506 username jafari 216506 mac 216506 bytes_out 7397 216506 bytes_in 15765 216506 station_ip 37.137.10.172 216506 port 98 216506 unique_id port 216506 remote_ip 10.8.0.110 216507 username yaghobi 216507 mac 216507 bytes_out 0 216507 bytes_in 0 216507 station_ip 83.123.71.215 216507 port 106 216507 unique_id port 216507 remote_ip 10.8.0.106 216508 username dortaj3792 216508 mac 216508 bytes_out 0 216508 bytes_in 0 216508 station_ip 5.119.117.158 216508 port 95 216508 unique_id port 216508 remote_ip 10.8.0.10 216509 username khorasani9135 216509 mac 216509 bytes_out 0 216509 bytes_in 0 216509 station_ip 83.123.215.186 216509 port 89 216509 unique_id port 216510 username barzegar8120 216510 mac 216510 bytes_out 176702 216510 bytes_in 190345 216510 station_ip 5.119.40.163 216510 port 102 216510 unique_id port 216510 remote_ip 10.8.0.62 216512 username nilufarrajaei 216512 mac 216512 bytes_out 130794 216512 bytes_in 455294 216512 station_ip 37.129.225.113 216512 port 89 216512 unique_id port 216512 remote_ip 10.8.0.50 216515 username jafari 216515 kill_reason Another user logged on this global unique id 216515 mac 216515 bytes_out 0 216515 bytes_in 0 216515 station_ip 37.137.10.172 216515 port 107 216515 unique_id port 216515 remote_ip 10.8.0.110 216516 username mirzaei6046 216516 kill_reason Another user logged on this global unique id 216516 mac 216516 bytes_out 0 216516 bytes_in 0 216516 station_ip 5.120.23.5 216516 port 97 216516 unique_id port 216516 remote_ip 10.8.0.30 216518 username jafari 216518 kill_reason Another user logged on this global unique id 216518 mac 216518 bytes_out 0 216518 bytes_in 0 216518 station_ip 37.137.10.172 216518 port 107 216518 unique_id port 216520 username mohammadjavad 216520 mac 216520 bytes_out 0 216520 bytes_in 0 216520 station_ip 83.122.98.144 216520 port 95 216520 unique_id port 216520 remote_ip 10.8.0.138 216524 username hamid.e 216524 mac 216524 bytes_out 0 216524 bytes_in 0 216524 station_ip 31.56.158.140 216524 port 95 216524 unique_id port 216524 remote_ip 10.8.0.78 216529 username shafiei3462 216529 mac 216529 bytes_out 3078262 216529 bytes_in 30497884 216529 station_ip 83.123.138.122 216529 port 96 216529 unique_id port 216529 remote_ip 10.8.0.250 216530 username barzegar 216530 mac 216530 bytes_out 0 216530 bytes_in 0 216530 station_ip 5.119.46.242 216530 port 96 216530 unique_id port 216530 remote_ip 10.8.0.34 216531 username alipour1506 216531 mac 216531 bytes_out 1923 216531 bytes_in 4717 216531 station_ip 94.183.212.137 216531 port 103 216531 unique_id port 216531 remote_ip 10.8.0.46 216535 username sabaghnezhad 216535 mac 216535 bytes_out 992649 216535 bytes_in 3346259 216535 station_ip 83.123.88.184 216535 port 105 216535 unique_id port 216535 remote_ip 10.8.0.94 216538 username barzegar 216538 mac 216538 bytes_out 0 216538 bytes_in 0 216538 station_ip 5.119.46.242 216538 port 69 216538 unique_id port 216538 remote_ip 10.8.1.30 216540 username nilufarrajaei 216540 mac 216540 bytes_out 2678675 216540 bytes_in 28776389 216540 station_ip 37.129.225.113 216540 port 102 216540 unique_id port 216540 remote_ip 10.8.0.50 216542 username askarzadeh9013 216542 mac 216542 bytes_out 399383 216542 bytes_in 5293986 216542 station_ip 37.129.164.144 216542 port 105 216542 unique_id port 216542 remote_ip 10.8.0.174 216549 username yaghobi 216549 mac 216549 bytes_out 115908 216549 bytes_in 672309 216549 station_ip 83.123.124.11 216549 port 105 216549 unique_id port 216549 remote_ip 10.8.0.106 216550 username malekpoir 216550 kill_reason Another user logged on this global unique id 216550 mac 216550 bytes_out 0 216550 bytes_in 0 216550 station_ip 5.119.229.211 216550 port 89 216550 unique_id port 216551 username dortaj3792 216551 mac 216551 bytes_out 541482 216551 bytes_in 1274975 216551 station_ip 5.119.117.158 216551 port 98 216551 unique_id port 216551 remote_ip 10.8.0.10 216554 username barzegar 216554 mac 216554 bytes_out 0 216554 bytes_in 0 216554 station_ip 5.119.46.242 216554 port 65 216554 unique_id port 216555 username saeeddamghani 216555 mac 216511 username khademi 216511 mac 216511 bytes_out 296385 216511 bytes_in 697039 216511 station_ip 5.202.17.55 216511 port 67 216511 unique_id port 216511 remote_ip 10.8.1.218 216513 username rahim 216513 mac 216513 bytes_out 98361 216513 bytes_in 168059 216513 station_ip 5.120.65.0 216513 port 98 216513 unique_id port 216513 remote_ip 10.8.0.6 216517 username hamid1430 216517 mac 216517 bytes_out 0 216517 bytes_in 0 216517 station_ip 83.123.33.66 216517 port 64 216517 unique_id port 216517 remote_ip 10.8.1.250 216519 username jafari 216519 kill_reason Another user logged on this global unique id 216519 mac 216519 bytes_out 0 216519 bytes_in 0 216519 station_ip 37.137.10.172 216519 port 107 216519 unique_id port 216521 username pourshad 216521 mac 216521 bytes_out 0 216521 bytes_in 0 216521 station_ip 5.120.100.246 216521 port 65 216521 unique_id port 216523 username jafari 216523 mac 216523 bytes_out 0 216523 bytes_in 0 216523 station_ip 37.137.10.172 216523 port 107 216523 unique_id port 216526 username mohammadjavad 216526 mac 216526 bytes_out 79720 216526 bytes_in 232840 216526 station_ip 83.122.113.12 216526 port 95 216526 unique_id port 216526 remote_ip 10.8.0.138 216527 username barzegar 216527 mac 216527 bytes_out 442928 216527 bytes_in 572775 216527 station_ip 5.119.46.242 216527 port 98 216527 unique_id port 216527 remote_ip 10.8.0.34 216533 username shafiei3462 216533 mac 216533 bytes_out 30798 216533 bytes_in 47097 216533 station_ip 83.123.138.122 216533 port 98 216533 unique_id port 216533 remote_ip 10.8.0.250 216534 username barzegar 216534 mac 216534 bytes_out 0 216534 bytes_in 0 216534 station_ip 5.119.46.242 216534 port 98 216534 unique_id port 216534 remote_ip 10.8.0.34 216536 username barzegar 216536 mac 216536 bytes_out 0 216536 bytes_in 0 216536 station_ip 5.119.46.242 216536 port 69 216536 unique_id port 216536 remote_ip 10.8.1.30 216537 username barzegar 216537 mac 216537 bytes_out 0 216537 bytes_in 0 216537 station_ip 5.119.46.242 216537 port 69 216537 unique_id port 216537 remote_ip 10.8.1.30 216539 username rahim 216539 mac 216539 bytes_out 4697840 216539 bytes_in 46850558 216539 station_ip 5.120.65.0 216539 port 96 216539 unique_id port 216539 remote_ip 10.8.0.6 216544 username rahim 216544 mac 216544 bytes_out 0 216544 bytes_in 0 216544 station_ip 5.120.65.0 216544 port 69 216544 unique_id port 216544 remote_ip 10.8.1.146 216545 username rahim 216545 mac 216545 bytes_out 0 216545 bytes_in 0 216545 station_ip 5.120.65.0 216545 port 69 216545 unique_id port 216545 remote_ip 10.8.1.146 216547 username nilufarrajaei 216547 mac 216547 bytes_out 335875 216547 bytes_in 3165330 216547 station_ip 37.129.225.113 216547 port 102 216547 unique_id port 216547 remote_ip 10.8.0.50 216552 username barzegar 216552 kill_reason Another user logged on this global unique id 216552 mac 216552 bytes_out 0 216552 bytes_in 0 216552 station_ip 5.119.46.242 216552 port 65 216552 unique_id port 216552 remote_ip 10.8.1.30 216556 username meysam 216556 kill_reason Another user logged on this global unique id 216556 mac 216556 bytes_out 0 216556 bytes_in 0 216556 station_ip 188.158.49.213 216556 port 105 216556 unique_id port 216556 remote_ip 10.8.0.102 216558 username hosseine 216558 mac 216558 bytes_out 0 216558 bytes_in 0 216558 station_ip 83.123.105.23 216558 port 103 216558 unique_id port 216565 username meysam 216565 kill_reason Another user logged on this global unique id 216565 mac 216514 username yaghobi 216514 mac 216514 bytes_out 0 216514 bytes_in 0 216514 station_ip 83.123.71.215 216514 port 95 216514 unique_id port 216514 remote_ip 10.8.0.106 216522 username alipour1506 216522 mac 216522 bytes_out 0 216522 bytes_in 0 216522 station_ip 94.176.8.78 216522 port 103 216522 unique_id port 216525 username yaghobi 216525 mac 216525 bytes_out 53676 216525 bytes_in 59750 216525 station_ip 83.123.116.175 216525 port 98 216525 unique_id port 216525 remote_ip 10.8.0.106 216528 username barzegar 216528 mac 216528 bytes_out 0 216528 bytes_in 0 216528 station_ip 5.119.46.242 216528 port 98 216528 unique_id port 216528 remote_ip 10.8.0.34 216532 username barzegar 216532 mac 216532 bytes_out 0 216532 bytes_in 0 216532 station_ip 5.119.46.242 216532 port 103 216532 unique_id port 216532 remote_ip 10.8.0.34 216541 username pourshad 216541 mac 216541 bytes_out 0 216541 bytes_in 0 216541 station_ip 5.120.100.246 216541 port 65 216541 unique_id port 216541 remote_ip 10.8.1.10 216543 username rahim 216543 mac 216543 bytes_out 0 216543 bytes_in 0 216543 station_ip 5.120.65.0 216543 port 96 216543 unique_id port 216543 remote_ip 10.8.0.6 216546 username malekpoir 216546 kill_reason Another user logged on this global unique id 216546 mac 216546 bytes_out 0 216546 bytes_in 0 216546 station_ip 5.119.229.211 216546 port 89 216546 unique_id port 216546 remote_ip 10.8.0.178 216548 username godarzi 216548 mac 216548 bytes_out 4204740 216548 bytes_in 25149989 216548 station_ip 5.202.23.105 216548 port 95 216548 unique_id port 216548 remote_ip 10.8.0.74 216553 username hosseine 216553 kill_reason Another user logged on this global unique id 216553 mac 216553 bytes_out 0 216553 bytes_in 0 216553 station_ip 83.123.105.23 216553 port 103 216553 unique_id port 216553 remote_ip 10.8.0.126 216560 username meysam 216560 kill_reason Another user logged on this global unique id 216560 mac 216560 bytes_out 0 216560 bytes_in 0 216560 station_ip 188.158.49.213 216560 port 105 216560 unique_id port 216562 username malekpoir 216562 kill_reason Another user logged on this global unique id 216562 mac 216562 bytes_out 0 216562 bytes_in 0 216562 station_ip 5.119.229.211 216562 port 89 216562 unique_id port 216563 username yaghobi 216563 mac 216563 bytes_out 0 216563 bytes_in 0 216563 station_ip 83.123.22.151 216563 port 95 216563 unique_id port 216563 remote_ip 10.8.0.106 216564 username sabaghnezhad 216564 mac 216564 bytes_out 0 216564 bytes_in 0 216564 station_ip 83.123.250.27 216564 port 102 216564 unique_id port 216564 remote_ip 10.8.0.94 216566 username godarzi 216566 mac 216566 bytes_out 0 216566 bytes_in 0 216566 station_ip 5.202.23.105 216566 port 107 216566 unique_id port 216566 remote_ip 10.8.0.74 216567 username malekpoir 216567 mac 216567 bytes_out 0 216567 bytes_in 0 216567 station_ip 5.119.229.211 216567 port 89 216567 unique_id port 216568 username malekpoir 216568 kill_reason Maximum check online fails reached 216568 mac 216568 bytes_out 0 216568 bytes_in 0 216568 station_ip 5.119.229.211 216568 port 102 216568 unique_id port 216575 username pourshad 216575 mac 216575 bytes_out 19635 216575 bytes_in 80336 216575 station_ip 5.120.100.246 216575 port 69 216575 unique_id port 216575 remote_ip 10.8.1.10 216576 username mehrpoyan101 216576 mac 216576 bytes_out 92226 216576 bytes_in 320911 216576 station_ip 5.120.51.183 216576 port 70 216576 unique_id port 216576 remote_ip 10.8.1.18 216580 username hamid1430 216555 bytes_out 6761545 216555 bytes_in 20621795 216555 station_ip 5.119.126.215 216555 port 95 216555 unique_id port 216555 remote_ip 10.8.0.162 216557 username meysam 216557 kill_reason Another user logged on this global unique id 216557 mac 216557 bytes_out 0 216557 bytes_in 0 216557 station_ip 188.158.49.213 216557 port 105 216557 unique_id port 216559 username barzegar8120 216559 mac 216559 bytes_out 0 216559 bytes_in 0 216559 station_ip 5.119.182.104 216559 port 95 216559 unique_id port 216559 remote_ip 10.8.0.62 216561 username barzegar8120 216561 mac 216561 bytes_out 3145 216561 bytes_in 5326 216561 station_ip 5.119.182.104 216561 port 65 216561 unique_id port 216561 remote_ip 10.8.1.58 216569 username pourshad 216569 mac 216569 bytes_out 0 216569 bytes_in 0 216569 station_ip 5.120.100.246 216569 port 96 216569 unique_id port 216569 remote_ip 10.8.0.122 216570 username rahim 216570 mac 216570 bytes_out 0 216570 bytes_in 0 216570 station_ip 5.120.65.0 216570 port 89 216570 unique_id port 216570 remote_ip 10.8.0.6 216573 username pourshad 216573 mac 216573 bytes_out 79526 216573 bytes_in 956204 216573 station_ip 5.120.100.246 216573 port 69 216573 unique_id port 216573 remote_ip 10.8.1.10 216574 username milan 216574 mac 216574 bytes_out 0 216574 bytes_in 0 216574 station_ip 5.120.139.15 216574 port 60 216574 unique_id port 216579 username pourshad 216579 mac 216579 bytes_out 36109 216579 bytes_in 143268 216579 station_ip 5.120.100.246 216579 port 60 216579 unique_id port 216579 remote_ip 10.8.1.10 216581 username pourshad 216581 mac 216581 bytes_out 112119 216581 bytes_in 40551 216581 station_ip 5.120.100.246 216581 port 60 216581 unique_id port 216581 remote_ip 10.8.1.10 216583 username barzegar 216583 mac 216583 bytes_out 63076 216583 bytes_in 59239 216583 station_ip 5.120.140.14 216583 port 69 216583 unique_id port 216583 remote_ip 10.8.1.30 216585 username barzegar 216585 mac 216585 bytes_out 0 216585 bytes_in 0 216585 station_ip 5.120.140.14 216585 port 107 216585 unique_id port 216585 remote_ip 10.8.0.34 216586 username pourshad 216586 mac 216586 bytes_out 7301 216586 bytes_in 20121 216586 station_ip 5.120.100.246 216586 port 60 216586 unique_id port 216586 remote_ip 10.8.1.10 216590 username barzegar 216590 mac 216590 bytes_out 0 216590 bytes_in 0 216590 station_ip 5.120.140.14 216590 port 108 216590 unique_id port 216590 remote_ip 10.8.0.34 216592 username soleymani5056 216592 mac 216592 bytes_out 0 216592 bytes_in 0 216592 station_ip 5.120.2.154 216592 port 108 216592 unique_id port 216592 remote_ip 10.8.0.246 216595 username hamid1 216595 mac 216595 bytes_out 190700 216595 bytes_in 920818 216595 station_ip 5.119.169.139 216595 port 105 216595 unique_id port 216595 remote_ip 10.8.0.194 216597 username askarzadeh9013 216597 mac 216597 bytes_out 0 216597 bytes_in 0 216597 station_ip 37.129.223.212 216597 port 109 216597 unique_id port 216597 remote_ip 10.8.0.174 216599 username yaghobi 216599 kill_reason Another user logged on this global unique id 216599 mac 216599 bytes_out 0 216599 bytes_in 0 216599 station_ip 83.123.22.151 216599 port 108 216599 unique_id port 216599 remote_ip 10.8.0.106 216600 username barzegar8595 216600 mac 216600 bytes_out 1696800 216600 bytes_in 14507038 216600 station_ip 46.225.213.133 216600 port 95 216600 unique_id port 216600 remote_ip 10.8.0.170 216605 username iranmanesh4443 216605 mac 216605 bytes_out 0 216605 bytes_in 0 216565 bytes_out 0 216565 bytes_in 0 216565 station_ip 188.158.49.213 216565 port 105 216565 unique_id port 216571 username meysam 216571 mac 216571 bytes_out 0 216571 bytes_in 0 216571 station_ip 188.158.49.213 216571 port 105 216571 unique_id port 216572 username alipour1506 216572 mac 216572 bytes_out 0 216572 bytes_in 0 216572 station_ip 83.123.219.255 216572 port 106 216572 unique_id port 216572 remote_ip 10.8.0.46 216577 username nasiripour0935 216577 mac 216577 bytes_out 0 216577 bytes_in 0 216577 station_ip 37.129.144.209 216577 port 103 216577 unique_id port 216577 remote_ip 10.8.0.22 216578 username malekpoir 216578 kill_reason Another user logged on this global unique id 216578 mac 216578 bytes_out 0 216578 bytes_in 0 216578 station_ip 5.119.229.211 216578 port 65 216578 unique_id port 216578 remote_ip 10.8.1.242 216584 username rahim 216584 mac 216584 bytes_out 0 216584 bytes_in 0 216584 station_ip 86.57.18.201 216584 port 108 216584 unique_id port 216584 remote_ip 10.8.0.6 216588 username mohammadjavad 216588 mac 216588 bytes_out 0 216588 bytes_in 0 216588 station_ip 83.122.48.128 216588 port 105 216588 unique_id port 216588 remote_ip 10.8.0.138 216589 username yaghobi 216589 mac 216589 bytes_out 0 216589 bytes_in 0 216589 station_ip 83.123.22.151 216589 port 109 216589 unique_id port 216589 remote_ip 10.8.0.106 216594 username meysam 216594 kill_reason Another user logged on this global unique id 216594 mac 216594 bytes_out 0 216594 bytes_in 0 216594 station_ip 188.158.49.213 216594 port 106 216594 unique_id port 216594 remote_ip 10.8.0.102 216598 username mostafa_es78 216598 mac 216598 bytes_out 0 216598 bytes_in 0 216598 station_ip 113.203.126.22 216598 port 107 216598 unique_id port 216598 remote_ip 10.8.0.42 216602 username barzegar 216602 mac 216602 bytes_out 0 216602 bytes_in 0 216602 station_ip 5.120.140.14 216602 port 95 216602 unique_id port 216602 remote_ip 10.8.0.34 216603 username shafiei3462 216603 mac 216603 bytes_out 9417941 216603 bytes_in 19287962 216603 station_ip 83.123.138.122 216603 port 68 216603 unique_id port 216603 remote_ip 10.8.1.174 216604 username yaghobi 216604 mac 216604 bytes_out 0 216604 bytes_in 0 216604 station_ip 83.123.22.151 216604 port 108 216604 unique_id port 216608 username shafiei3462 216608 mac 216608 bytes_out 0 216608 bytes_in 0 216608 station_ip 83.123.138.122 216608 port 109 216608 unique_id port 216608 remote_ip 10.8.0.250 216610 username meysam 216610 kill_reason Another user logged on this global unique id 216610 mac 216610 bytes_out 0 216610 bytes_in 0 216610 station_ip 188.158.49.213 216610 port 106 216610 unique_id port 216611 username barzegar 216611 mac 216611 bytes_out 0 216611 bytes_in 0 216611 station_ip 5.120.140.14 216611 port 89 216611 unique_id port 216611 remote_ip 10.8.0.34 216613 username meysam 216613 mac 216613 bytes_out 0 216613 bytes_in 0 216613 station_ip 188.158.49.213 216613 port 106 216613 unique_id port 216618 username tahmorsi 216618 mac 216618 bytes_out 0 216618 bytes_in 0 216618 station_ip 86.57.55.113 216618 port 95 216618 unique_id port 216618 remote_ip 10.8.0.210 216622 username barzegar 216622 mac 216622 bytes_out 2212 216622 bytes_in 4646 216622 station_ip 5.120.140.14 216622 port 68 216622 unique_id port 216622 remote_ip 10.8.1.30 216631 username rahim 216631 mac 216631 bytes_out 0 216631 bytes_in 0 216631 station_ip 86.57.18.201 216631 port 89 216580 mac 216580 bytes_out 1225524 216580 bytes_in 6102524 216580 station_ip 83.123.33.66 216580 port 64 216580 unique_id port 216580 remote_ip 10.8.1.250 216582 username yaghobi 216582 mac 216582 bytes_out 0 216582 bytes_in 0 216582 station_ip 83.123.22.151 216582 port 89 216582 unique_id port 216582 remote_ip 10.8.0.106 216587 username esmaeilkazemi 216587 mac 216587 bytes_out 0 216587 bytes_in 0 216587 station_ip 83.122.129.6 216587 port 106 216587 unique_id port 216587 remote_ip 10.8.0.66 216591 username sabaghnezhad 216591 mac 216591 bytes_out 58428 216591 bytes_in 60427 216591 station_ip 37.129.201.56 216591 port 89 216591 unique_id port 216591 remote_ip 10.8.0.94 216593 username sabaghnezhad 216593 mac 216593 bytes_out 0 216593 bytes_in 0 216593 station_ip 37.129.201.56 216593 port 109 216593 unique_id port 216593 remote_ip 10.8.0.94 216596 username barzegar 216596 mac 216596 bytes_out 0 216596 bytes_in 0 216596 station_ip 5.120.140.14 216596 port 89 216596 unique_id port 216596 remote_ip 10.8.0.34 216601 username barzegar 216601 mac 216601 bytes_out 3117 216601 bytes_in 5951 216601 station_ip 5.120.140.14 216601 port 64 216601 unique_id port 216601 remote_ip 10.8.1.30 216606 username askarzadeh9013 216606 kill_reason Another user logged on this global unique id 216606 mac 216606 bytes_out 0 216606 bytes_in 0 216606 station_ip 37.129.223.212 216606 port 105 216606 unique_id port 216606 remote_ip 10.8.0.174 216609 username sabaghnezhad 216609 mac 216609 bytes_out 0 216609 bytes_in 0 216609 station_ip 37.129.201.56 216609 port 110 216609 unique_id port 216609 remote_ip 10.8.0.94 216612 username shafiei3462 216612 mac 216612 bytes_out 11577 216612 bytes_in 13995 216612 station_ip 83.123.138.122 216612 port 64 216612 unique_id port 216612 remote_ip 10.8.1.174 216615 username yaghobi 216615 mac 216615 bytes_out 0 216615 bytes_in 0 216615 station_ip 83.123.22.151 216615 port 107 216615 unique_id port 216615 remote_ip 10.8.0.106 216619 username yarmohamadi7916 216619 mac 216619 bytes_out 0 216619 bytes_in 0 216619 station_ip 5.120.186.188 216619 port 98 216619 unique_id port 216619 remote_ip 10.8.0.214 216624 username barzegar 216624 mac 216624 bytes_out 4331 216624 bytes_in 6953 216624 station_ip 5.120.140.14 216624 port 68 216624 unique_id port 216624 remote_ip 10.8.1.30 216629 username rahim 216629 mac 216629 bytes_out 0 216629 bytes_in 0 216629 station_ip 86.57.18.201 216629 port 105 216629 unique_id port 216629 remote_ip 10.8.0.6 216634 username alipour1506 216634 mac 216634 bytes_out 1815704 216634 bytes_in 17227290 216634 station_ip 83.123.219.255 216634 port 96 216634 unique_id port 216634 remote_ip 10.8.0.46 216635 username afarin1 216635 mac 216635 bytes_out 0 216635 bytes_in 0 216635 station_ip 31.56.156.78 216635 port 89 216635 unique_id port 216635 remote_ip 10.8.0.82 216636 username barzegar 216636 mac 216636 bytes_out 0 216636 bytes_in 0 216636 station_ip 5.120.140.14 216636 port 68 216636 unique_id port 216636 remote_ip 10.8.1.30 216640 username barzegar8595 216640 mac 216640 bytes_out 99128 216640 bytes_in 122550 216640 station_ip 46.225.213.133 216640 port 95 216640 unique_id port 216640 remote_ip 10.8.0.170 216644 username alipour1506 216644 mac 216644 bytes_out 128732 216644 bytes_in 917712 216644 station_ip 83.123.219.255 216644 port 64 216644 unique_id port 216644 remote_ip 10.8.1.158 216646 username alipour1506 216646 kill_reason Maximum check online fails reached 216605 station_ip 5.120.6.208 216605 port 89 216605 unique_id port 216605 remote_ip 10.8.0.198 216607 username barzegar 216607 mac 216607 bytes_out 0 216607 bytes_in 0 216607 station_ip 5.120.140.14 216607 port 107 216607 unique_id port 216607 remote_ip 10.8.0.34 216614 username askarzadeh9013 216614 mac 216614 bytes_out 0 216614 bytes_in 0 216614 station_ip 37.129.223.212 216614 port 105 216614 unique_id port 216616 username askarzadeh9013 216616 mac 216616 bytes_out 0 216616 bytes_in 0 216616 station_ip 37.129.223.212 216616 port 68 216616 unique_id port 216616 remote_ip 10.8.1.198 216617 username barzegar 216617 mac 216617 bytes_out 0 216617 bytes_in 0 216617 station_ip 5.120.140.14 216617 port 68 216617 unique_id port 216617 remote_ip 10.8.1.30 216620 username malekpoir 216620 mac 216620 bytes_out 0 216620 bytes_in 0 216620 station_ip 5.119.229.211 216620 port 65 216620 unique_id port 216621 username mirzaei6046 216621 kill_reason Another user logged on this global unique id 216621 mac 216621 bytes_out 0 216621 bytes_in 0 216621 station_ip 5.120.23.5 216621 port 97 216621 unique_id port 216623 username mohammadjavad 216623 mac 216623 bytes_out 0 216623 bytes_in 0 216623 station_ip 83.122.119.176 216623 port 89 216623 unique_id port 216623 remote_ip 10.8.0.138 216625 username meysam 216625 kill_reason Another user logged on this global unique id 216625 mac 216625 bytes_out 0 216625 bytes_in 0 216625 station_ip 188.158.49.213 216625 port 89 216625 unique_id port 216625 remote_ip 10.8.0.102 216626 username barzegar 216626 mac 216626 bytes_out 0 216626 bytes_in 0 216626 station_ip 5.120.140.14 216626 port 68 216626 unique_id port 216626 remote_ip 10.8.1.30 216627 username godarzi 216627 kill_reason Another user logged on this global unique id 216627 mac 216627 bytes_out 0 216627 bytes_in 0 216627 station_ip 5.202.23.105 216627 port 103 216627 unique_id port 216627 remote_ip 10.8.0.74 216628 username meysam 216628 mac 216628 bytes_out 0 216628 bytes_in 0 216628 station_ip 188.158.49.213 216628 port 89 216628 unique_id port 216630 username rahim 216630 mac 216630 bytes_out 0 216630 bytes_in 0 216630 station_ip 86.57.18.201 216630 port 89 216630 unique_id port 216630 remote_ip 10.8.0.6 216632 username mostafa_es78 216632 mac 216632 bytes_out 0 216632 bytes_in 0 216632 station_ip 178.236.35.96 216632 port 98 216632 unique_id port 216632 remote_ip 10.8.0.42 216633 username shafiei3462 216633 mac 216633 bytes_out 484351 216633 bytes_in 5528088 216633 station_ip 83.123.138.122 216633 port 64 216633 unique_id port 216633 remote_ip 10.8.1.174 216637 username afarin1 216637 mac 216637 bytes_out 0 216637 bytes_in 0 216637 station_ip 31.56.156.78 216637 port 89 216637 unique_id port 216637 remote_ip 10.8.0.82 216641 username shafiei3462 216641 mac 216641 bytes_out 99231 216641 bytes_in 114552 216641 station_ip 83.123.138.122 216641 port 96 216641 unique_id port 216641 remote_ip 10.8.0.250 216645 username hamid.e 216645 mac 216645 bytes_out 0 216645 bytes_in 0 216645 station_ip 151.238.228.84 216645 port 95 216645 unique_id port 216645 remote_ip 10.8.0.78 216649 username mohammadjavad 216649 mac 216649 bytes_out 0 216649 bytes_in 0 216649 station_ip 83.122.2.144 216649 port 95 216649 unique_id port 216649 remote_ip 10.8.0.138 216651 username pourshad 216651 mac 216651 bytes_out 389058 216651 bytes_in 579796 216651 station_ip 5.120.100.246 216651 port 60 216651 unique_id port 216651 remote_ip 10.8.1.10 216631 unique_id port 216631 remote_ip 10.8.0.6 216638 username shafiei3462 216638 mac 216638 bytes_out 0 216638 bytes_in 0 216638 station_ip 83.123.138.122 216638 port 96 216638 unique_id port 216638 remote_ip 10.8.0.250 216639 username afarin1 216639 mac 216639 bytes_out 0 216639 bytes_in 0 216639 station_ip 31.56.156.78 216639 port 89 216639 unique_id port 216639 remote_ip 10.8.0.82 216642 username javadi7073 216642 mac 216642 bytes_out 0 216642 bytes_in 0 216642 station_ip 83.123.165.92 216642 port 98 216642 unique_id port 216642 remote_ip 10.8.0.58 216643 username afarin1 216643 mac 216643 bytes_out 0 216643 bytes_in 0 216643 station_ip 31.56.156.78 216643 port 89 216643 unique_id port 216643 remote_ip 10.8.0.82 216647 username soleymani5056 216647 mac 216647 bytes_out 0 216647 bytes_in 0 216647 station_ip 5.119.75.11 216647 port 105 216647 unique_id port 216647 remote_ip 10.8.0.246 216648 username barzegar 216648 mac 216648 bytes_out 0 216648 bytes_in 0 216648 station_ip 5.120.140.14 216648 port 64 216648 unique_id port 216648 remote_ip 10.8.1.30 216650 username javadi7073 216650 mac 216650 bytes_out 0 216650 bytes_in 0 216650 station_ip 83.123.165.92 216650 port 96 216650 unique_id port 216650 remote_ip 10.8.0.58 216653 username pourshad 216653 mac 216653 bytes_out 0 216653 bytes_in 0 216653 station_ip 5.120.100.246 216653 port 60 216653 unique_id port 216653 remote_ip 10.8.1.10 216654 username motamedi9772 216654 mac 216654 bytes_out 0 216654 bytes_in 0 216654 station_ip 83.122.89.241 216654 port 106 216654 unique_id port 216654 remote_ip 10.8.0.86 216655 username alipour1506 216655 mac 216655 bytes_out 226587 216655 bytes_in 5329360 216655 station_ip 94.183.212.137 216655 port 95 216655 unique_id port 216655 remote_ip 10.8.0.46 216659 username motamedi9772 216659 mac 216659 bytes_out 0 216659 bytes_in 0 216659 station_ip 83.122.32.233 216659 port 95 216659 unique_id port 216659 remote_ip 10.8.0.86 216667 username barzegar 216667 mac 216667 bytes_out 0 216667 bytes_in 0 216667 station_ip 5.120.140.14 216667 port 105 216667 unique_id port 216667 remote_ip 10.8.0.34 216669 username malekpoir 216669 kill_reason Another user logged on this global unique id 216669 mac 216669 bytes_out 0 216669 bytes_in 0 216669 station_ip 5.119.229.211 216669 port 65 216669 unique_id port 216669 remote_ip 10.8.1.242 216672 username alipour1506 216672 mac 216672 bytes_out 57904 216672 bytes_in 92648 216672 station_ip 83.123.219.255 216672 port 60 216672 unique_id port 216672 remote_ip 10.8.1.158 216674 username mohammadjavad 216674 mac 216674 bytes_out 0 216674 bytes_in 0 216674 station_ip 83.122.21.252 216674 port 110 216674 unique_id port 216674 remote_ip 10.8.0.138 216675 username soleymani5056 216675 mac 216675 bytes_out 0 216675 bytes_in 0 216675 station_ip 5.120.153.175 216675 port 96 216675 unique_id port 216675 remote_ip 10.8.0.246 216677 username alipour1506 216677 kill_reason Maximum check online fails reached 216677 mac 216677 bytes_out 0 216677 bytes_in 0 216677 station_ip 83.123.219.255 216677 port 60 216677 unique_id port 216678 username yaghobi 216678 mac 216678 bytes_out 0 216678 bytes_in 0 216678 station_ip 83.123.21.59 216678 port 106 216678 unique_id port 216678 remote_ip 10.8.0.106 216680 username saeeddamghani 216680 kill_reason Another user logged on this global unique id 216680 mac 216680 bytes_out 0 216680 bytes_in 0 216680 station_ip 217.60.175.208 216680 port 108 216646 mac 216646 bytes_out 0 216646 bytes_in 0 216646 station_ip 94.183.212.137 216646 port 89 216646 unique_id port 216652 username alipour1506 216652 mac 216652 bytes_out 0 216652 bytes_in 0 216652 station_ip 83.123.219.255 216652 port 98 216652 unique_id port 216652 remote_ip 10.8.0.46 216656 username alipour1506 216656 mac 216656 bytes_out 0 216656 bytes_in 0 216656 station_ip 83.123.219.255 216656 port 98 216656 unique_id port 216656 remote_ip 10.8.0.46 216662 username alipour1506 216662 mac 216662 bytes_out 117413 216662 bytes_in 326565 216662 station_ip 83.123.219.255 216662 port 60 216662 unique_id port 216662 remote_ip 10.8.1.158 216663 username motamedi9772 216663 mac 216663 bytes_out 0 216663 bytes_in 0 216663 station_ip 83.122.32.233 216663 port 95 216663 unique_id port 216663 remote_ip 10.8.0.86 216664 username javadi7073 216664 mac 216664 bytes_out 0 216664 bytes_in 0 216664 station_ip 83.123.165.92 216664 port 95 216664 unique_id port 216664 remote_ip 10.8.0.58 216666 username motamedi9772 216666 mac 216666 bytes_out 5351 216666 bytes_in 11970 216666 station_ip 83.122.32.233 216666 port 96 216666 unique_id port 216666 remote_ip 10.8.0.86 216668 username barzegar8595 216668 mac 216668 bytes_out 16584 216668 bytes_in 19754 216668 station_ip 46.225.208.16 216668 port 98 216668 unique_id port 216668 remote_ip 10.8.0.170 216671 username yaghobi 216671 mac 216671 bytes_out 0 216671 bytes_in 0 216671 station_ip 83.123.21.59 216671 port 106 216671 unique_id port 216671 remote_ip 10.8.0.106 216679 username soleymani5056 216679 mac 216679 bytes_out 0 216679 bytes_in 0 216679 station_ip 5.119.241.10 216679 port 110 216679 unique_id port 216679 remote_ip 10.8.0.246 216681 username yaghobi 216681 mac 216681 bytes_out 1572 216681 bytes_in 6119 216681 station_ip 83.123.21.59 216681 port 96 216681 unique_id port 216681 remote_ip 10.8.0.106 216686 username saeeddamghani 216686 mac 216686 bytes_out 0 216686 bytes_in 0 216686 station_ip 217.60.175.208 216686 port 108 216686 unique_id port 216689 username barzegar 216689 mac 216689 bytes_out 0 216689 bytes_in 0 216689 station_ip 5.120.140.14 216689 port 68 216689 unique_id port 216689 remote_ip 10.8.1.30 216693 username khalili2 216693 kill_reason Another user logged on this global unique id 216693 mac 216693 bytes_out 0 216693 bytes_in 0 216693 station_ip 5.119.187.48 216693 port 95 216693 unique_id port 216695 username yaghobi 216695 mac 216695 bytes_out 0 216695 bytes_in 0 216695 station_ip 83.123.21.59 216695 port 106 216695 unique_id port 216695 remote_ip 10.8.0.106 216696 username shafiei3462 216696 mac 216696 bytes_out 0 216696 bytes_in 0 216696 station_ip 83.123.138.122 216696 port 105 216696 unique_id port 216696 remote_ip 10.8.0.250 216699 username malekpoir 216699 kill_reason Another user logged on this global unique id 216699 mac 216699 bytes_out 0 216699 bytes_in 0 216699 station_ip 5.119.229.211 216699 port 65 216699 unique_id port 216703 username barzegar 216703 mac 216703 bytes_out 0 216703 bytes_in 0 216703 station_ip 5.120.140.14 216703 port 107 216703 unique_id port 216703 remote_ip 10.8.0.34 216705 username saeeddamghani 216705 mac 216705 bytes_out 0 216705 bytes_in 0 216705 station_ip 5.119.126.215 216705 port 110 216705 unique_id port 216705 remote_ip 10.8.0.162 216706 username yaghobi 216706 mac 216706 bytes_out 0 216706 bytes_in 0 216706 station_ip 83.123.21.59 216706 port 108 216657 username barzegar 216657 mac 216657 bytes_out 0 216657 bytes_in 0 216657 station_ip 5.120.140.14 216657 port 95 216657 unique_id port 216657 remote_ip 10.8.0.34 216658 username barzegar 216658 mac 216658 bytes_out 0 216658 bytes_in 0 216658 station_ip 5.120.140.14 216658 port 64 216658 unique_id port 216658 remote_ip 10.8.1.30 216660 username rahim 216660 mac 216660 bytes_out 87342 216660 bytes_in 81669 216660 station_ip 5.120.65.0 216660 port 98 216660 unique_id port 216660 remote_ip 10.8.0.6 216661 username pourshad 216661 mac 216661 bytes_out 0 216661 bytes_in 0 216661 station_ip 5.120.100.246 216661 port 96 216661 unique_id port 216661 remote_ip 10.8.0.122 216665 username godarzi 216665 kill_reason Another user logged on this global unique id 216665 mac 216665 bytes_out 0 216665 bytes_in 0 216665 station_ip 5.202.23.105 216665 port 103 216665 unique_id port 216670 username meysam 216670 kill_reason Another user logged on this global unique id 216670 mac 216670 bytes_out 0 216670 bytes_in 0 216670 station_ip 188.159.251.67 216670 port 95 216670 unique_id port 216670 remote_ip 10.8.0.102 216673 username barzegar 216673 mac 216673 bytes_out 2684 216673 bytes_in 4993 216673 station_ip 5.120.140.14 216673 port 109 216673 unique_id port 216673 remote_ip 10.8.0.34 216676 username meysam 216676 mac 216676 bytes_out 0 216676 bytes_in 0 216676 station_ip 188.159.251.67 216676 port 95 216676 unique_id port 216684 username khalili2 216684 kill_reason Another user logged on this global unique id 216684 mac 216684 bytes_out 0 216684 bytes_in 0 216684 station_ip 5.119.187.48 216684 port 95 216684 unique_id port 216684 remote_ip 10.8.0.190 216685 username motamedi9772 216685 mac 216685 bytes_out 0 216685 bytes_in 0 216685 station_ip 83.122.32.233 216685 port 98 216685 unique_id port 216688 username mirzaei6046 216688 kill_reason Another user logged on this global unique id 216688 mac 216688 bytes_out 0 216688 bytes_in 0 216688 station_ip 5.120.23.5 216688 port 97 216688 unique_id port 216700 username saeeddamghani 216700 mac 216700 bytes_out 0 216700 bytes_in 0 216700 station_ip 217.60.175.208 216700 port 107 216700 unique_id port 216700 remote_ip 10.8.0.162 216702 username saeeddamghani 216702 mac 216702 bytes_out 0 216702 bytes_in 0 216702 station_ip 5.119.126.215 216702 port 110 216702 unique_id port 216702 remote_ip 10.8.0.162 216680 unique_id port 216680 remote_ip 10.8.0.162 216682 username motamedi9772 216682 kill_reason Another user logged on this global unique id 216682 mac 216682 bytes_out 0 216682 bytes_in 0 216682 station_ip 83.122.32.233 216682 port 98 216682 unique_id port 216682 remote_ip 10.8.0.86 216683 username barzegar 216683 mac 216683 bytes_out 0 216683 bytes_in 0 216683 station_ip 5.120.140.14 216683 port 106 216683 unique_id port 216683 remote_ip 10.8.0.34 216687 username yaghobi 216687 mac 216687 bytes_out 0 216687 bytes_in 0 216687 station_ip 83.123.21.59 216687 port 96 216687 unique_id port 216687 remote_ip 10.8.0.106 216690 username barzegar8595 216690 mac 216690 bytes_out 0 216690 bytes_in 0 216690 station_ip 46.225.208.16 216690 port 105 216690 unique_id port 216690 remote_ip 10.8.0.170 216691 username barzegar 216691 mac 216691 bytes_out 0 216691 bytes_in 0 216691 station_ip 5.120.140.14 216691 port 68 216691 unique_id port 216691 remote_ip 10.8.1.30 216692 username shafiei3462 216692 mac 216692 bytes_out 0 216692 bytes_in 0 216692 station_ip 83.123.138.122 216692 port 107 216692 unique_id port 216692 remote_ip 10.8.0.250 216694 username saeeddamghani 216694 mac 216694 bytes_out 0 216694 bytes_in 0 216694 station_ip 217.60.175.208 216694 port 107 216694 unique_id port 216694 remote_ip 10.8.0.162 216697 username yaghobi 216697 mac 216697 bytes_out 0 216697 bytes_in 0 216697 station_ip 83.123.21.59 216697 port 105 216697 unique_id port 216697 remote_ip 10.8.0.106 216698 username barzegar 216698 mac 216698 bytes_out 0 216698 bytes_in 0 216698 station_ip 5.120.140.14 216698 port 68 216698 unique_id port 216698 remote_ip 10.8.1.30 216701 username khademi 216701 mac 216701 bytes_out 1847999 216701 bytes_in 16693110 216701 station_ip 5.202.17.55 216701 port 67 216701 unique_id port 216701 remote_ip 10.8.1.218 216704 username shafiei3462 216704 mac 216704 bytes_out 0 216704 bytes_in 0 216704 station_ip 83.123.138.122 216704 port 105 216704 unique_id port 216704 remote_ip 10.8.0.250 216706 unique_id port 216706 remote_ip 10.8.0.106 \. -- -- Data for Name: credit_change; Type: TABLE DATA; Schema: public; Owner: ibs -- COPY credit_change (credit_change_id, admin_id, action, per_user_credit, admin_credit, change_time, remote_addr, comment) FROM stdin; 1 0 1 1.00 1.00 2014-09-22 21:05:18.059044 176.9.253.232 2 0 1 1.00 1.00 2015-05-19 17:07:05.715877 188.159.23.29 3 0 1 1.00 1.00 2015-05-19 19:31:58.159808 188.159.23.29 4 0 1 1.00 1.00 2015-05-19 20:07:18.073169 188.159.23.29 5 0 1 1.00 1.00 2015-05-20 12:12:14.792618 89.41.17.252 6 0 1 1.00 1.00 2015-05-20 18:04:47.331154 89.41.17.252 7 0 1 1.00 1.00 2015-05-20 20:13:05.688463 89.41.17.252 8 0 1 1.00 1.00 2015-05-20 20:13:26.613355 89.41.17.252 9 0 1 1.00 1.00 2015-05-21 16:49:10.21292 89.41.235.23 10 0 1 1.00 1.00 2015-05-23 11:04:43.623221 94.176.24.242 11 0 1 1.00 1.00 2015-05-23 14:45:37.48499 94.176.23.165 12 0 1 1.00 1.00 2015-05-23 14:50:05.217733 94.176.23.165 13 0 1 1.00 1.00 2015-05-24 16:21:26.973141 89.43.88.187 14 0 1 1.00 1.00 2015-05-24 17:03:29.547252 89.43.88.187 15 0 1 1.00 1.00 2015-05-24 17:19:59.525647 89.43.88.187 16 0 1 1.00 1.00 2015-05-25 12:44:18.047645 188.159.3.68 17 0 1 1.00 1.00 2015-05-26 10:33:15.342334 188.159.234.23 18 0 1 1.00 1.00 2015-05-26 10:34:00.221929 188.159.234.23 19 0 1 1.00 1.00 2015-05-26 10:38:58.742028 188.159.234.23 20 0 1 1.00 1.00 2015-05-26 21:00:55.558452 188.159.234.23 21 0 1 1.00 1.00 2015-05-28 13:48:50.21133 89.41.17.91 22 0 1 1.00 1.00 2015-05-28 15:25:44.269322 89.43.91.37 23 0 1 1.00 1.00 2015-06-01 21:05:14.177704 89.41.239.169 24 0 1 1.00 1.00 2015-06-02 10:56:17.825219 89.41.226.66 25 0 1 1.00 1.00 2015-06-06 14:21:19.743163 86.57.43.7 26 0 1 1.00 1.00 2015-06-06 19:03:07.974249 188.159.233.116 27 0 1 1.00 1.00 2015-06-06 19:39:15.961732 188.159.233.116 28 0 1 1.00 1.00 2015-06-06 19:39:45.401055 188.159.233.116 29 0 1 1.00 1.00 2015-06-09 20:40:53.325115 89.41.17.204 30 0 1 1.00 1.00 2015-06-10 10:08:00.504212 89.43.91.219 31 0 1 1.00 1.00 2015-06-11 11:09:08.124718 188.159.21.18 32 0 1 1.00 1.00 2015-06-16 20:37:26.998346 89.41.11.9 33 0 1 1.00 1.00 2015-06-18 15:03:24.642847 94.176.35.61 34 0 1 1.00 1.00 2015-06-27 11:06:21.111963 188.159.234.146 35 0 1 1.00 1.00 2015-06-29 11:42:12.307715 89.43.94.234 36 0 1 1.00 1.00 2015-07-07 19:21:49.29182 89.41.230.243 37 0 1 1.00 1.00 2015-07-11 14:15:18.213355 94.176.36.2 38 0 1 1.00 1.00 2015-07-13 13:10:16.2165 188.159.233.228 39 0 1 1.00 1.00 2015-07-14 20:07:12.546395 89.41.22.251 40 0 1 1.00 1.00 2015-07-15 12:57:17.754248 94.177.72.139 41 0 1 1.00 1.00 2015-07-15 18:54:16.213234 94.177.72.139 42 0 1 1.00 1.00 2015-07-23 12:28:37.624692 89.41.225.28 43 0 1 1.00 1.00 2015-07-23 17:59:59.186225 89.41.225.28 44 0 1 1.00 1.00 2015-07-23 19:19:01.768795 89.41.225.28 45 0 1 1.00 1.00 2015-07-25 19:42:16.597076 94.176.24.29 46 0 1 1.00 1.00 2015-07-26 21:38:08.180499 188.159.52.47 47 0 1 1.00 1.00 2015-07-26 21:38:24.322124 188.159.52.47 48 0 1 1.00 1.00 2015-07-31 19:24:33.672474 94.177.79.54 49 0 1 1.00 1.00 2015-08-02 18:35:25.275884 94.177.73.24 50 0 1 1.00 1.00 2015-08-03 14:22:56.72033 188.159.236.157 51 0 1 1.00 1.00 2015-08-07 18:55:01.394939 89.41.224.105 52 0 1 1.00 1.00 2015-08-08 12:16:22.478082 89.41.11.64 53 0 1 1.00 1.00 2015-08-11 19:26:06.682057 93.119.209.192 54 0 1 1.00 1.00 2015-08-18 11:37:47.82796 188.159.17.77 55 0 1 1.00 1.00 2015-08-18 21:12:58.681689 94.176.60.176 56 0 1 1.00 1.00 2015-08-22 16:15:13.968675 188.159.19.90 57 0 1 1.00 1.00 2015-09-01 19:04:11.009792 188.159.25.252 58 0 1 1.00 1.00 2015-09-06 15:37:49.032973 94.176.29.96 59 0 3 0.00 -1.00 2015-09-06 15:55:46.434045 94.176.29.96 60 0 1 1.00 1.00 2015-09-10 19:05:25.686662 89.41.239.178 61 0 1 1.00 1.00 2015-09-20 11:52:01.792158 89.41.15.251 62 0 1 1.00 1.00 2015-09-26 16:45:24.936796 188.159.233.138 63 0 1 1.00 1.00 2015-09-27 18:25:42.434381 188.158.53.131 64 0 1 1.00 1.00 2015-09-29 19:39:56.455197 188.159.4.80 65 0 3 0.00 -1.00 2015-09-29 19:41:40.704679 188.159.4.80 66 0 1 1.00 1.00 2015-09-29 19:41:48.233358 188.159.4.80 67 0 1 1.00 1.00 2015-09-29 19:43:45.452382 188.159.4.80 68 0 3 0.00 -1.00 2015-09-29 19:44:26.863686 188.159.4.80 69 0 1 1.00 1.00 2015-09-29 19:44:35.12188 188.159.4.80 70 0 3 0.00 -1.00 2015-09-29 19:46:22.359593 188.159.4.80 71 0 1 1.00 1.00 2015-09-29 19:46:30.521822 188.159.4.80 72 0 1 1.00 1.00 2015-10-06 16:32:27.811468 94.176.34.200 73 0 1 1.00 1.00 2015-10-08 12:32:10.841842 94.176.38.38 74 0 1 1.00 1.00 2015-10-18 12:07:09.133862 89.41.233.226 75 0 1 1.00 1.00 2015-10-25 15:22:07.245084 188.158.52.97 76 0 1 1.00 1.00 2015-10-28 12:27:40.302891 188.159.5.98 77 0 1 1.00 1.00 2015-10-28 16:04:03.907217 188.159.5.98 78 0 1 1.00 1.00 2015-10-28 16:05:46.319021 188.159.5.98 79 0 1 1.00 1.00 2015-11-03 17:26:38.441806 188.159.81.22 80 0 1 1.00 1.00 2015-11-14 11:58:49.648551 188.159.105.82 81 0 1 1.00 1.00 2015-11-14 15:34:07.088994 144.76.228.6 82 0 1 1.00 1.00 2015-11-17 18:45:09.883648 94.176.89.160 83 0 1 1.00 1.00 2015-11-24 18:25:42.220067 89.41.13.135 84 0 3 0.00 -1.00 2015-11-24 20:55:14.446394 89.41.13.135 85 0 1 1.00 1.00 2015-11-24 20:55:29.701746 89.41.13.135 86 0 1 1.00 1.00 2015-11-26 16:28:27.712861 89.41.230.7 87 0 1 1.00 1.00 2015-11-30 19:47:54.502447 94.176.19.25 88 0 1 1.00 1.00 2015-12-01 16:58:57.475482 94.177.77.137 89 0 1 1.00 1.00 2015-12-07 19:09:37.133065 89.41.232.34 90 0 1 1.00 1.00 2015-12-09 20:25:22.326447 94.176.34.255 91 0 1 1.00 1.00 2015-12-22 16:17:27.260947 94.176.20.155 92 0 1 1.00 1.00 2016-01-02 22:26:55.795609 89.41.11.153 93 0 1 1.00 1.00 2016-01-05 18:29:17.421632 188.159.2.124 94 0 1 1.00 1.00 2016-01-09 19:51:48.667543 188.158.53.250 95 0 1 1.00 1.00 2016-01-14 11:19:00.527335 94.176.87.31 96 0 1 1.00 1.00 2016-01-17 19:21:23.38876 188.159.232.83 97 0 1 1.00 1.00 2016-01-19 13:27:43.890783 188.158.55.207 98 0 1 1.00 1.00 2016-02-06 11:23:01.542077 94.176.81.209 99 0 1 1.00 1.00 2016-02-07 18:53:54.027539 188.159.1.111 100 0 1 1.00 1.00 2016-02-09 19:55:34.253301 94.176.33.90 101 0 1 1.00 1.00 2016-02-14 20:28:16.086383 85.204.77.157 102 0 1 1.00 1.00 2016-02-18 19:08:32.601768 188.159.9.215 103 0 1 1.00 1.00 2016-02-22 06:43:15.447081 188.158.51.238 104 0 3 0.00 -1.00 2016-02-22 07:23:25.559468 188.158.51.238 1 105 0 1 1.00 1.00 2016-02-22 10:15:12.286478 188.158.51.238 106 0 1 1.00 1.00 2016-03-14 07:49:28.907821 188.158.51.120 107 0 1 1.00 1.00 2016-04-05 23:19:54.541993 94.176.23.92 108 0 1 1.00 1.00 2016-04-06 12:07:06.65392 94.176.23.92 109 0 1 1.00 1.00 2016-05-17 10:36:43.487842 188.158.38.189 110 0 1 1.00 1.00 2016-05-20 10:55:55.257023 188.158.32.2 111 0 1 1.00 1.00 2016-05-29 09:06:34.289756 89.165.15.115 112 0 1 1.00 1.00 2016-05-30 09:55:44.225213 94.176.38.27 113 0 1 1.00 1.00 2016-06-14 07:41:01.617647 188.158.3.222 114 0 1 1.00 1.00 2016-06-20 12:23:03.347461 188.158.41.139 115 0 1 1.00 1.00 2016-06-23 10:17:52.893252 89.165.23.239 116 0 3 0.00 -1.00 2016-06-26 11:29:01.388373 188.158.23.51 117 0 1 1.00 1.00 2016-07-19 19:04:22.144776 85.204.76.60 118 0 1 1.00 1.00 2016-08-28 11:21:32.555353 188.158.43.11 119 0 1 1.00 1.00 2016-10-23 21:05:26.691519 94.176.48.65 120 0 1 1.00 1.00 2016-11-07 02:35:12.468103 89.41.19.191 121 0 1 1.00 1.00 2016-11-18 03:50:26.135581 89.41.15.187 122 0 1 1.00 1.00 2016-12-02 03:56:33.356363 188.159.15.252 123 0 1 1.00 1.00 2016-12-10 01:00:31.733861 94.176.54.206 124 0 1 1.00 1.00 2017-01-23 07:19:39.426787 89.41.11.236 125 0 1 1.00 1.00 2017-01-31 15:42:04.516828 94.176.22.153 126 0 1 1.00 1.00 2017-04-09 18:17:13.73234 188.159.15.57 127 0 1 1.00 1.00 2017-06-27 22:00:39.833854 188.159.28.65 128 0 1 1.00 1.00 2017-07-03 06:41:13.408491 89.41.19.107 129 0 1 1.00 1.00 2017-07-22 19:29:54.472198 89.41.8.240 130 0 1 1.00 1.00 2017-07-24 00:53:30.456877 89.41.237.20 131 0 1 1.00 1.00 2017-09-15 23:26:55.137683 188.159.5.138 132 0 1 1.00 1.00 2017-09-18 00:41:30.916798 89.41.23.44 133 0 1 1.00 1.00 2017-10-01 15:23:14.181347 188.159.26.23 134 0 1 1.00 1.00 2017-10-25 20:27:08.038515 188.159.16.32 135 0 1 1.00 1.00 2017-11-04 12:22:32.29163 89.41.23.157 136 0 1 1.00 1.00 2017-12-18 17:43:53.966054 89.199.49.51 137 0 1 1.00 1.00 2018-01-01 10:42:55.607013 89.41.11.30 138 0 1 1.00 1.00 2018-01-03 06:48:32.985494 89.41.22.227 139 0 1 1.00 1.00 2018-01-03 13:25:26.381586 89.41.22.227 140 0 1 1.00 1.00 2018-01-03 16:39:26.770467 89.41.22.227 141 0 1 1.00 1.00 2018-01-03 17:29:26.941701 89.41.22.227 142 0 1 1.00 1.00 2018-01-03 17:44:56.520196 89.41.22.227 143 0 3 0.00 -1.00 2018-01-03 17:48:19.181503 89.41.22.227 144 0 3 0.00 -1.00 2018-01-03 17:48:40.070368 89.41.22.227 145 0 1 1.00 1.00 2018-01-03 17:48:50.356837 89.41.22.227 146 0 1 1.00 1.00 2018-01-03 18:11:41.89874 89.41.22.227 147 0 1 1.00 1.00 2018-01-04 07:00:50.883422 89.41.16.175 148 0 1 1.00 1.00 2018-01-04 09:36:22.656135 89.41.16.175 149 0 1 1.00 1.00 2018-01-04 12:24:11.374582 89.41.16.175 150 0 1 1.00 1.00 2018-01-04 13:29:56.592186 89.41.16.175 151 0 1 1.00 1.00 2018-01-04 19:42:56.39873 188.159.10.174 152 0 1 1.00 1.00 2018-01-06 15:26:04.896026 89.41.231.213 153 0 1 1.00 1.00 2018-01-06 16:48:01.952616 89.41.231.213 154 0 1 1.00 1.00 2018-01-08 08:21:22.111194 89.41.226.32 155 0 1 1.00 1.00 2018-01-10 15:01:39.722491 188.159.14.243 156 0 1 1.00 1.00 2018-01-11 16:09:55.445083 89.41.224.38 157 0 1 1.00 1.00 2018-02-22 09:45:17.13654 89.41.10.187 158 0 1 1.00 1.00 2018-04-17 10:05:36.457274 188.159.20.22 159 0 1 1.00 1.00 2018-05-02 10:58:46.770336 188.159.4.11 160 0 1 1.00 1.00 2018-05-05 12:22:39.385201 188.159.17.95 161 0 1 1.00 1.00 2018-05-05 12:30:13.798886 188.159.17.95 162 0 1 1.00 1.00 2018-05-05 21:02:13.153144 89.41.14.152 163 0 1 1.00 1.00 2018-05-05 21:03:07.89015 89.41.14.152 164 0 1 1.00 1.00 2018-05-07 14:39:10.500305 89.41.20.15 165 0 1 1.00 1.00 2018-05-07 14:48:34.026703 89.41.20.15 166 0 1 1.00 1.00 2018-05-07 14:59:08.672825 89.41.20.15 167 0 1 1.00 1.00 2018-05-08 10:34:07.498554 89.41.237.230 168 0 1 1.00 1.00 2018-05-08 20:05:29.05394 89.41.237.230 169 0 1 1.00 1.00 2018-05-09 20:28:34.716819 188.159.8.123 170 0 1 1.00 1.00 2018-05-09 20:31:52.730605 188.159.8.123 171 0 1 1.00 1.00 2018-05-10 12:13:01.757176 89.41.236.168 172 0 1 1.00 1.00 2018-05-10 19:35:02.002062 89.41.228.17 173 0 1 1.00 1.00 2018-05-10 19:57:20.300431 89.41.228.17 174 0 1 1.00 1.00 2018-05-10 21:41:06.622152 89.41.228.17 175 0 1 1.00 1.00 2018-05-14 18:16:06.267789 188.159.12.90 176 0 1 1.00 1.00 2018-05-19 12:06:30.224651 188.159.1.93 177 0 1 1.00 1.00 2018-05-20 11:41:39.192898 188.159.7.151 178 0 1 1.00 1.00 2018-05-20 18:54:49.704632 188.159.7.151 179 0 1 1.00 1.00 2018-05-21 11:35:59.673435 188.159.23.4 180 0 1 1.00 1.00 2018-05-26 21:05:30.235907 188.159.12.81 181 0 1 1.00 1.00 2018-05-27 12:31:55.978011 89.41.228.59 182 0 1 1.00 1.00 2018-05-27 21:18:47.049958 89.41.228.59 183 0 1 1.00 1.00 2018-05-28 20:59:32.479643 188.159.18.218 184 0 1 1.00 1.00 2018-05-28 21:47:11.66013 188.159.18.218 185 0 1 1.00 1.00 2018-06-09 11:26:31.212676 89.41.19.241 186 0 3 0.00 -1.00 2018-06-09 15:58:48.008256 89.41.19.241 187 0 1 1.00 1.00 2018-06-09 17:42:12.207502 89.41.19.241 188 0 1 1.00 1.00 2018-06-10 11:10:39.464708 89.41.20.25 189 0 1 1.00 1.00 2018-06-14 12:50:21.747379 89.41.20.172 190 0 1 1.00 1.00 2018-06-16 19:32:34.848452 5.237.97.85 191 0 1 1.00 1.00 2018-06-20 19:22:39.024204 89.199.218.191 192 0 1 1.00 1.00 2018-06-27 11:27:09.431955 188.159.8.186 193 0 3 0.00 -1.00 2018-07-05 23:32:14.075204 5.211.146.15 194 0 1 1.00 1.00 2018-07-23 12:23:03.397478 5.210.170.104 195 0 1 1.00 1.00 2018-07-27 19:17:50.048966 89.41.231.114 196 0 1 1.00 1.00 2018-08-02 12:26:15.43215 188.159.18.232 197 0 1 1.00 1.00 2018-08-04 15:14:58.369798 89.41.17.20 198 0 1 1.00 1.00 2018-08-04 22:14:42.101359 89.41.17.20 199 0 1 1.00 1.00 2018-08-06 12:24:01.237328 89.41.239.214 200 0 1 1.00 1.00 2018-08-07 13:19:11.833328 172.80.240.102 201 0 3 0.00 -1.00 2018-08-13 12:43:36.036874 188.159.18.143 202 0 1 1.00 1.00 2018-08-13 12:43:44.652975 188.159.18.143 203 0 3 0.00 -178.00 2018-10-30 11:04:15.985329 185.135.230.230 204 0 1 1.00 1.00 2018-10-30 11:05:18.268477 185.135.230.230 205 0 3 0.00 -1.00 2018-10-30 11:12:47.317291 185.135.230.230 206 0 1 1.00 1.00 2018-10-30 11:13:00.144867 185.135.230.230 207 0 3 0.00 -1.00 2018-10-30 11:14:34.121925 185.135.230.230 208 0 1 1.00 1.00 2018-10-30 11:14:47.318069 185.135.230.230 209 0 3 0.00 -1.00 2018-10-30 11:15:36.902719 185.135.230.230 210 0 1 1.00 1.00 2018-10-30 11:17:16.622699 185.135.230.230 211 0 1 1.00 1.00 2019-01-25 23:56:13.862996 5.218.27.113 212 0 1 1.00 1.00 2019-07-06 15:06:44.497858 5.119.144.134 213 0 1 1.00 2.00 2019-07-06 15:16:49.176886 5.119.144.134 214 0 3 0.00 -1.00 2019-07-06 15:21:55.480004 5.119.144.134 215 0 1 1.00 6.00 2019-07-06 15:22:57.063077 5.119.144.134 216 0 1 3.00 9.00 2019-07-06 15:28:53.396945 5.119.144.134 217 0 1 1.00 3.00 2019-07-06 15:33:29.07557 5.119.144.134 218 0 1 1.00 1.00 2019-07-06 15:57:55.963725 5.119.144.134 219 1 1 3.00 3.00 2019-07-06 20:26:48.823898 80.82.67.103 220 1 1 3.00 3.00 2019-07-06 20:36:56.421614 80.82.67.103 221 0 1 3.00 3.00 2019-07-06 20:38:53.049172 5.119.194.48 222 0 1 3.00 3.00 2019-07-06 20:51:57.810358 5.119.194.48 223 0 3 0.00 -6.00 2019-07-06 20:54:15.191922 5.119.194.48 224 0 3 0.00 -3.00 2019-07-07 09:17:58.635648 5.119.236.220 225 1 1 1.00 1.00 2019-07-07 20:00:12.710382 46.225.209.166 226 1 1 1.00 1.00 2019-07-07 20:53:36.042117 46.225.209.166 227 1 1 3.00 3.00 2019-07-07 21:08:56.537994 46.225.209.166 228 1 1 1.00 1.00 2019-07-10 17:59:21.821663 46.225.213.222 229 1 1 1.00 1.00 2019-07-11 10:59:59.312899 46.225.209.85 230 2 1 1.00 1.00 2019-07-11 12:24:37.782867 5.120.182.105 231 1 1 3.00 3.00 2019-07-11 20:09:30.245282 46.225.209.85 232 0 3 0.00 -1.00 2019-07-11 22:39:50.10045 5.120.51.120 233 0 3 0.00 -1.00 2019-07-11 22:41:35.617368 5.120.51.120 234 1 1 3.00 3.00 2019-07-13 11:16:57.835443 46.225.215.128 235 1 1 1.00 1.00 2019-07-13 16:49:38.19279 46.225.215.128 236 1 3 0.00 -6.00 2019-07-13 16:56:48.329108 46.225.215.128 237 1 1 1.00 1.00 2019-07-13 17:38:19.601332 46.225.215.128 238 1 1 3.00 3.00 2019-07-13 18:07:17.24253 46.225.212.108 239 1 1 1.00 1.00 2019-07-13 19:20:43.057882 80.82.67.103 240 0 1 1.00 30.00 2019-07-14 06:22:29.309504 5.119.136.60 241 1 1 1.00 1.00 2019-07-14 19:10:29.079501 46.225.210.162 242 1 1 1.00 1.00 2019-07-17 12:30:01.50795 80.82.67.103 243 1 1 1.00 1.00 2019-07-17 19:42:06.114545 46.225.209.229 244 1 1 3.00 3.00 2019-07-18 12:11:57.049854 46.225.211.112 245 1 1 3.00 3.00 2019-07-20 10:23:24.693365 46.225.232.215 246 1 1 3.00 3.00 2019-07-20 20:48:03.50149 80.82.67.103 247 1 1 3.00 3.00 2019-07-21 09:26:02.11267 46.225.232.111 248 1 1 3.00 3.00 2019-07-21 12:51:42.052985 46.225.232.111 249 1 1 3.00 3.00 2019-07-21 19:45:46.52244 46.225.232.111 250 1 3 0.00 -3.00 2019-07-21 20:06:29.321017 80.82.67.103 251 1 1 3.00 3.00 2019-07-21 20:06:40.118048 80.82.67.103 252 1 3 0.00 -3.00 2019-07-22 11:35:44.606475 46.225.213.57 253 1 1 1.00 1.00 2019-07-22 12:40:27.369829 46.225.208.29 254 1 1 1.00 1.00 2019-07-23 11:59:04.903437 46.225.214.33 255 1 1 3.00 3.00 2019-07-24 10:41:24.357935 46.225.208.1 256 1 1 1.00 1.00 2019-07-24 11:03:45.976872 46.225.208.1 257 0 1 3.00 3.00 2019-07-25 10:02:43.903952 151.238.243.245 258 0 3 0.00 -3.00 2019-07-25 10:11:03.659177 151.238.243.245 259 0 1 1.00 1.00 2019-07-25 10:11:32.325878 151.238.243.245 260 1 1 1.00 1.00 2019-07-27 13:09:31.312428 46.225.214.133 261 1 1 1.00 1.00 2019-07-27 18:24:31.856797 46.225.214.133 262 1 1 3.00 3.00 2019-07-27 18:37:20.313064 46.225.214.133 263 1 1 1.00 1.00 2019-07-27 18:52:37.48512 46.225.214.133 264 1 3 0.00 -3.00 2019-07-28 20:28:00.328479 46.225.208.39 265 1 1 1.00 1.00 2019-07-29 12:38:44.547869 46.225.208.39 266 1 1 3.00 3.00 2019-07-29 19:15:59.632935 46.225.208.39 267 2 1 1.00 1.00 2019-07-30 00:40:54.662271 5.120.149.40 268 1 1 3.00 3.00 2019-07-30 10:38:41.228849 46.225.208.76 269 1 1 3.00 3.00 2019-07-31 12:26:00.089166 46.225.208.76 270 1 1 3.00 3.00 2019-07-31 19:08:11.87652 46.225.208.76 271 1 1 3.00 3.00 2019-07-31 20:10:29.01709 46.225.208.76 272 1 1 3.00 3.00 2019-08-01 18:08:37.840547 80.82.67.103 273 1 1 3.00 3.00 2019-08-01 19:08:26.425187 46.225.209.96 274 1 1 3.00 3.00 2019-08-01 19:11:23.536478 46.225.209.96 275 1 1 3.00 3.00 2019-08-01 19:52:22.454716 46.225.209.96 276 1 1 1.00 1.00 2019-08-03 19:01:43.390075 80.82.67.103 277 1 1 1.00 1.00 2019-08-04 12:56:51.30347 80.82.67.103 278 1 1 1.00 1.00 2019-08-05 11:11:10.237699 46.225.209.96 279 2 1 1.00 1.00 2019-08-05 12:08:18.925398 5.119.210.24 280 1 1 3.00 3.00 2019-08-05 20:19:41.915278 46.225.209.96 281 1 1 1.00 1.00 2019-08-06 12:37:04.51063 80.82.67.103 282 1 1 3.00 3.00 2019-08-07 11:27:59.178134 46.225.210.196 283 1 1 1.00 1.00 2019-08-07 18:20:39.132282 46.225.210.196 284 1 3 0.00 -1.00 2019-08-07 19:21:26.543227 46.225.210.196 285 1 1 1.00 1.00 2019-08-07 19:22:01.747629 46.225.210.196 286 1 1 1.00 1.00 2019-08-07 20:12:32.044014 46.225.210.196 287 1 1 1.00 1.00 2019-08-07 21:36:08.108801 46.225.214.146 288 1 1 1.00 1.00 2019-08-08 19:03:33.411563 185.125.207.192 289 1 1 1.00 1.00 2019-08-08 20:47:14.383636 46.225.211.54 290 1 1 1.00 1.00 2019-08-10 11:34:52.137149 46.225.209.109 291 2 1 1.00 1.00 2019-08-10 20:02:49.774819 5.120.184.157 292 1 1 1.00 1.00 2019-08-11 12:39:05.988381 46.225.214.119 293 1 1 1.00 1.00 2019-08-11 21:08:23.026542 46.225.214.119 294 0 1 3.00 3.00 2019-08-12 20:52:31.178226 5.233.72.32 295 1 1 1.00 1.00 2019-08-13 10:26:58.045547 46.225.214.119 296 1 1 3.00 3.00 2019-08-13 20:30:10.641191 46.225.214.119 297 1 1 3.00 3.00 2019-08-13 21:44:46.835483 46.225.214.119 298 1 1 3.00 3.00 2019-08-14 17:25:40.251652 46.225.213.109 299 1 1 1.00 1.00 2019-08-14 17:54:52.005705 46.225.213.109 300 1 1 1.00 1.00 2019-08-15 12:18:30.840989 46.225.213.109 301 2 1 1.00 1.00 2019-08-15 15:00:43.246493 5.120.180.146 302 1 1 1.00 1.00 2019-08-15 21:01:05.316668 46.225.213.109 303 2 1 1.00 1.00 2019-08-16 18:08:41.900923 94.183.213.166 304 1 3 0.00 -2.00 2019-08-17 17:44:28.541978 46.225.215.132 305 1 1 3.00 3.00 2019-08-17 17:44:59.252191 46.225.215.132 306 1 3 0.00 -3.00 2019-08-17 20:20:25.123879 46.225.215.132 307 0 3 0.00 -1.00 2019-08-18 17:31:33.219221 5.119.150.126 308 1 1 3.00 3.00 2019-08-22 13:10:01.733174 185.125.207.192 309 0 1 1.00 1.00 2019-08-23 22:34:18.098583 5.120.92.173 310 1 1 1.00 1.00 2019-08-24 10:16:03.326108 46.225.212.118 311 0 1 3.00 3.00 2019-08-24 21:26:37.656106 138.201.2.124 312 1 1 1.00 1.00 2019-08-26 11:20:42.015314 185.125.207.192 313 1 1 1.00 1.00 2019-08-27 17:30:54.876092 46.225.213.76 314 0 3 0.00 -1.00 2019-08-27 20:52:24.684549 5.233.70.139 315 1 1 1.00 1.00 2019-08-28 20:28:03.831415 46.225.213.76 316 1 1 1.00 1.00 2019-08-28 21:10:43.823412 46.225.213.76 317 1 1 3.00 9.00 2019-08-29 11:51:03.205969 46.225.213.76 318 1 1 1.00 1.00 2019-08-29 11:51:52.2878 46.225.213.76 319 1 1 1.00 1.00 2019-08-29 11:52:12.78265 46.225.213.76 320 0 1 1.00 1.00 2019-08-29 12:52:52.836687 138.201.2.124 321 1 1 1.00 1.00 2019-08-29 18:59:30.902795 46.225.213.76 322 1 1 3.00 3.00 2019-08-29 20:36:05.124274 46.225.213.76 323 1 1 1.00 1.00 2019-08-29 21:24:24.415537 46.225.213.76 324 1 1 3.00 3.00 2019-08-31 08:42:49.138329 46.225.212.77 325 1 1 3.00 3.00 2019-08-31 12:34:39.247617 46.225.212.77 326 1 1 1.00 1.00 2019-08-31 18:53:04.634134 46.225.232.80 327 1 1 3.00 3.00 2019-08-31 20:03:14.068611 185.125.207.192 328 1 1 1.00 1.00 2019-09-01 08:55:15.740678 46.225.232.224 329 1 1 1.00 1.00 2019-09-01 12:27:44.850424 46.225.232.224 330 1 1 1.00 1.00 2019-09-01 12:48:31.986126 46.225.232.224 331 1 1 3.00 3.00 2019-09-02 09:25:45.445298 46.225.213.107 332 1 1 1.00 1.00 2019-09-02 17:12:41.816673 46.225.213.107 333 1 1 3.00 3.00 2019-09-02 18:15:55.690278 46.225.213.107 334 1 1 1.00 1.00 2019-09-02 19:45:43.35538 46.225.213.107 335 1 1 3.00 3.00 2019-09-02 20:52:51.189848 46.225.213.107 336 1 3 0.00 -3.00 2019-09-02 20:55:36.397926 46.225.213.107 337 1 1 3.00 3.00 2019-09-03 16:35:49.370912 46.225.214.110 338 1 1 1.00 1.00 2019-09-03 16:36:06.288146 46.225.214.110 339 1 1 3.00 3.00 2019-09-04 11:53:40.575493 46.225.213.123 340 1 1 3.00 3.00 2019-09-05 10:44:54.182784 46.225.210.208 341 1 1 3.00 3.00 2019-09-05 10:48:59.164334 46.225.210.208 342 1 1 3.00 3.00 2019-09-05 12:35:57.061809 185.125.207.192 343 1 1 3.00 3.00 2019-09-05 18:31:41.894452 46.225.210.208 344 2 1 1.00 1.00 2019-09-06 18:32:32.255062 5.120.133.241 345 1 1 1.00 1.00 2019-09-07 18:43:22.913521 46.225.214.62 346 1 1 3.00 3.00 2019-09-07 20:51:22.178448 46.225.214.62 347 2 1 1.00 1.00 2019-09-08 17:56:16.839222 5.119.34.100 348 2 1 1.00 1.00 2019-09-10 17:06:04.750954 5.119.59.89 349 2 1 1.00 1.00 2019-09-12 16:55:21.999636 5.120.189.129 350 2 1 1.00 1.00 2019-09-12 23:46:45.503174 5.119.56.221 351 0 3 0.00 -46.00 2019-09-13 18:02:51.948342 37.129.20.129 352 1 1 1.00 1.00 2019-09-14 19:18:38.375503 185.125.207.192 353 1 1 3.00 3.00 2019-09-15 10:31:13.551626 46.225.215.57 354 1 1 1.00 1.00 2019-09-15 20:12:08.551905 46.225.209.79 355 1 1 1.00 1.00 2019-09-16 21:02:02.555667 46.225.209.172 356 1 1 1.00 1.00 2019-09-17 19:18:54.30533 46.225.208.246 357 1 1 1.00 1.00 2019-09-18 19:06:24.542752 185.125.207.192 358 1 1 1.00 1.00 2019-09-19 09:51:51.420444 185.125.207.192 359 2 1 1.00 1.00 2019-09-20 16:13:27.651177 5.119.22.237 360 1 1 3.00 3.00 2019-09-21 17:09:14.029308 185.125.207.192 361 1 1 1.00 1.00 2019-09-23 19:32:48.963569 46.225.208.13 362 1 1 3.00 3.00 2019-09-23 19:37:02.6793 46.225.208.13 363 1 1 3.00 3.00 2019-09-23 19:42:57.664033 46.225.208.13 364 1 1 3.00 3.00 2019-09-23 19:44:50.588572 46.225.208.13 365 0 1 6.00 6.00 2019-09-23 19:57:12.851298 31.59.36.115 366 1 1 1.00 1.00 2019-09-24 16:58:51.75043 46.225.214.233 367 1 1 3.00 3.00 2019-09-24 20:44:22.201318 46.225.214.233 368 0 1 6.00 36.00 2019-09-25 08:43:36.815907 5.120.29.21 369 0 1 6.00 6.00 2019-09-25 08:43:44.474879 5.120.29.21 370 0 3 0.00 -18.00 2019-09-25 08:44:51.590597 5.120.29.21 371 0 3 0.00 -18.00 2019-09-25 08:45:08.647983 5.120.29.21 372 1 1 3.00 3.00 2019-09-25 12:14:41.142327 46.225.214.253 373 1 1 1.00 1.00 2019-09-25 17:01:38.668517 46.225.214.253 374 1 1 3.00 3.00 2019-09-25 20:16:44.530618 46.225.213.28 375 1 1 1.00 1.00 2019-09-29 08:57:10.581914 46.225.211.34 376 1 1 1.00 1.00 2019-09-29 09:16:10.204268 46.225.211.34 377 0 1 1.00 1.00 2019-09-29 13:01:31.302927 5.119.123.201 378 1 1 1.00 1.00 2019-09-29 17:43:52.083867 46.225.211.34 379 1 1 3.00 3.00 2019-09-29 17:44:01.327626 46.225.211.34 380 1 1 3.00 3.00 2019-09-30 08:37:08.564278 46.225.208.14 381 1 1 3.00 3.00 2019-09-30 11:06:21.293716 46.225.208.14 382 1 1 3.00 3.00 2019-09-30 17:18:50.646766 46.225.208.14 383 1 1 3.00 3.00 2019-09-30 18:02:08.627225 46.225.208.14 384 1 1 3.00 3.00 2019-10-01 08:44:54.688571 46.225.212.179 385 1 1 1.00 1.00 2019-10-02 08:54:14.008567 46.225.208.136 386 1 1 1.00 1.00 2019-10-02 19:09:28.724253 46.225.208.136 387 1 1 3.00 3.00 2019-10-03 09:53:45.423114 46.225.213.88 388 1 1 3.00 3.00 2019-10-03 10:15:04.254849 46.225.213.88 389 1 1 3.00 3.00 2019-10-03 17:22:57.546535 46.225.213.88 390 1 1 3.00 3.00 2019-10-03 20:35:30.378836 185.125.207.192 391 1 1 3.00 3.00 2019-10-03 20:36:50.531641 185.125.207.192 392 1 1 3.00 3.00 2019-10-03 20:39:19.871634 185.125.207.192 393 1 1 3.00 3.00 2019-10-03 20:40:24.104662 185.125.207.192 394 1 1 1.00 1.00 2019-10-05 18:49:33.429919 46.225.232.102 395 1 1 1.00 1.00 2019-10-05 20:17:44.525133 46.225.232.102 396 1 1 3.00 3.00 2019-10-05 20:30:28.31227 46.225.232.102 397 1 1 6.00 6.00 2019-10-06 18:07:11.588419 46.225.213.243 398 1 3 0.00 -6.00 2019-10-06 18:24:01.313106 46.225.213.243 TEST 399 1 1 1.00 1.00 2019-10-06 19:06:51.003177 46.225.213.243 400 0 1 1.00 1.00 2019-10-06 19:13:38.249846 5.120.4.224 401 1 1 3.00 3.00 2019-10-09 09:56:41.445601 46.225.212.173 402 1 1 3.00 3.00 2019-10-09 18:40:11.7232 46.225.215.199 403 1 1 3.00 3.00 2019-10-09 18:41:55.640655 46.225.215.199 404 1 1 3.00 3.00 2019-10-10 20:29:58.850876 46.225.210.120 405 1 1 3.00 3.00 2019-10-10 20:30:04.57493 46.225.210.120 406 1 1 1.00 1.00 2019-10-11 23:29:22.613641 5.200.97.231 407 1 1 1.00 1.00 2019-10-11 23:42:39.068141 5.200.97.231 408 1 1 1.00 1.00 2019-10-12 17:57:51.576999 46.225.214.84 409 1 1 1.00 1.00 2019-10-12 18:03:22.508155 46.225.214.84 410 1 1 3.00 3.00 2019-10-14 12:21:24.735924 185.216.140.227 411 1 3 0.00 -3.00 2019-10-14 12:23:13.231108 185.216.140.227 412 1 1 3.00 3.00 2019-10-14 12:23:51.709651 185.216.140.227 413 1 1 3.00 3.00 2019-10-14 17:39:27.116774 46.225.209.81 414 1 1 3.00 3.00 2019-10-14 19:22:05.420709 46.225.209.81 415 1 1 3.00 3.00 2019-10-15 18:29:57.68287 46.225.209.6 416 1 1 1.00 1.00 2019-10-16 21:10:01.635409 46.225.215.25 417 1 1 1.00 1.00 2019-10-17 18:17:48.54626 46.225.232.147 418 1 3 0.00 -1.00 2019-10-17 18:27:49.094633 46.225.232.147 419 1 1 3.00 3.00 2019-10-19 13:20:59.448087 5.119.1.0 420 1 1 3.00 3.00 2019-10-20 09:16:44.265459 46.225.215.19 421 1 1 3.00 3.00 2019-10-20 10:01:01.138231 46.225.215.19 422 1 1 3.00 3.00 2019-10-20 10:11:18.846706 46.225.215.19 423 1 1 1.00 1.00 2019-10-20 10:12:21.051907 46.225.215.19 424 1 1 1.00 1.00 2019-10-20 12:57:45.839488 46.225.215.19 425 1 1 1.00 1.00 2019-10-20 17:03:42.559771 46.225.215.19 426 1 1 1.00 1.00 2019-10-20 21:15:32.781606 46.225.215.19 427 1 1 1.00 1.00 2019-10-21 10:28:58.913762 185.125.207.192 428 1 1 3.00 3.00 2019-10-22 19:15:27.519721 46.225.214.15 429 1 1 1.00 1.00 2019-10-22 19:39:31.613133 46.225.214.15 430 1 1 1.00 1.00 2019-10-23 12:37:05.92049 46.225.211.30 431 1 1 3.00 3.00 2019-10-24 09:56:01.179722 46.225.210.240 432 1 1 1.00 1.00 2019-10-24 18:45:12.976706 46.225.210.240 433 0 1 1.00 6.00 2019-10-24 19:12:08.368295 5.120.72.205 434 0 3 0.00 -43.00 2019-10-24 19:14:15.363465 5.120.72.205 435 0 1 6.00 6.00 2019-10-24 19:14:41.126599 5.120.72.205 436 1 1 1.00 1.00 2019-10-26 09:38:53.107005 46.225.209.131 437 1 1 3.00 3.00 2019-10-26 16:35:43.293559 185.125.207.192 438 1 1 3.00 3.00 2019-10-26 16:58:03.655925 46.225.209.131 439 1 2 2.00 2.00 2019-10-26 17:04:35.064437 46.225.209.131 ashtebah da entekhab 440 1 1 3.00 3.00 2019-10-26 19:12:20.799733 46.225.209.131 441 1 1 1.00 1.00 2019-10-28 10:37:17.951575 46.225.214.99 442 1 1 1.00 1.00 2019-10-28 10:53:49.295201 46.225.214.99 443 1 1 3.00 3.00 2019-10-28 20:16:48.705558 185.125.207.192 444 1 1 3.00 3.00 2019-10-31 11:11:04.111151 185.125.207.192 445 1 1 1.00 1.00 2019-11-02 09:02:51.515261 5.200.115.21 446 1 1 3.00 3.00 2019-11-02 09:06:30.826328 5.200.115.21 447 1 1 3.00 3.00 2019-11-02 12:43:53.669624 46.225.211.159 448 1 1 1.00 1.00 2019-11-02 16:51:41.315277 46.225.209.243 449 1 1 3.00 3.00 2019-11-03 08:55:03.185728 185.125.207.192 450 1 1 3.00 3.00 2019-11-03 10:47:51.890102 185.125.207.192 451 1 1 3.00 3.00 2019-11-03 17:48:07.841839 185.125.207.192 452 1 1 3.00 3.00 2019-11-04 08:45:50.118532 46.225.232.194 453 1 1 3.00 3.00 2019-11-04 18:25:34.228979 46.225.214.140 454 1 1 1.00 1.00 2019-11-05 20:14:20.950082 46.225.209.210 455 1 1 1.00 1.00 2019-11-05 21:30:11.81666 46.225.209.210 456 1 1 3.00 3.00 2019-11-07 10:31:05.174748 46.225.212.116 457 1 1 1.00 1.00 2019-11-10 11:42:08.309425 46.225.210.207 458 1 1 3.00 3.00 2019-11-10 13:35:52.459146 94.24.90.181 459 0 1 2.00 2.00 2019-11-12 00:23:05.107261 10.8.0.14 460 1 1 1.00 1.00 2019-11-12 11:45:16.089548 185.125.207.192 461 1 1 3.00 3.00 2019-11-12 12:47:16.684656 46.225.210.90 462 1 1 3.00 3.00 2019-11-13 16:49:32.489015 46.225.232.219 463 1 1 1.00 1.00 2019-11-13 19:51:24.266031 46.225.232.219 464 1 1 3.00 3.00 2019-11-14 18:14:40.368182 109.200.30.159 465 0 1 1.00 1.00 2019-11-14 21:30:51.076652 5.119.94.158 466 1 1 1.00 1.00 2019-11-16 12:49:37.384196 109.200.30.159 467 1 1 3.00 3.00 2019-11-16 17:44:07.699753 46.225.209.194 468 0 1 6.00 6.00 2019-11-26 09:08:33.276027 10.8.0.58 469 1 1 1.00 1.00 2019-11-26 20:08:03.315604 46.225.212.174 470 0 1 1.00 1.00 2019-11-28 10:54:52.358717 5.120.56.251 471 1 1 3.00 3.00 2019-11-28 11:36:15.236772 46.225.214.4 472 1 1 1.00 1.00 2019-11-28 12:26:18.940432 46.225.214.4 473 1 1 1.00 1.00 2019-11-28 12:32:43.129923 46.225.214.4 474 1 1 1.00 1.00 2019-11-28 18:16:51.678598 46.225.214.4 475 1 1 1.00 1.00 2019-11-28 18:52:56.211373 46.225.214.4 476 1 1 3.00 3.00 2019-11-28 19:40:36.327328 46.225.215.150 477 1 1 1.00 1.00 2019-11-30 09:34:12.945588 46.225.213.244 478 1 1 3.00 3.00 2019-11-30 17:58:51.06911 46.225.213.158 479 1 1 1.00 1.00 2019-11-30 20:16:06.465165 46.225.213.158 480 1 2 2.00 2.00 2019-12-01 16:32:10.689231 185.125.207.191 481 1 1 1.00 1.00 2019-12-01 17:41:34.056063 46.225.212.179 482 1 1 3.00 3.00 2019-12-01 19:06:21.980583 185.125.207.191 483 1 1 3.00 3.00 2019-12-01 21:17:32.075282 185.125.207.191 484 1 1 3.00 3.00 2019-12-02 09:19:56.196627 46.225.214.179 485 1 1 3.00 3.00 2019-12-02 09:44:21.499211 185.125.207.191 486 1 1 1.00 1.00 2019-12-02 19:01:15.653491 46.225.214.179 487 1 1 3.00 3.00 2019-12-02 19:04:35.675373 46.225.214.179 488 1 3 0.00 -1.00 2019-12-02 19:23:22.698408 46.225.214.179 489 1 1 3.00 3.00 2019-12-02 20:00:03.78457 46.225.214.179 490 1 1 3.00 3.00 2019-12-02 20:00:54.479856 46.225.214.179 491 1 1 1.00 1.00 2019-12-03 08:59:01.822506 46.225.210.247 492 1 3 0.00 -4.00 2019-12-03 09:03:04.808621 46.225.210.247 493 1 1 3.00 3.00 2019-12-03 09:03:12.602078 46.225.210.247 494 1 1 3.00 3.00 2019-12-03 21:07:22.350056 46.225.210.37 495 1 1 1.00 1.00 2019-12-04 19:27:30.26022 46.225.232.125 496 1 1 1.00 1.00 2019-12-04 20:22:33.160794 46.225.232.125 497 1 1 1.00 1.00 2019-12-04 21:07:47.115435 46.225.232.125 498 1 1 3.00 3.00 2019-12-04 21:10:55.971351 46.225.232.125 499 1 1 3.00 3.00 2019-12-04 21:16:25.581153 46.225.232.125 500 1 1 3.00 3.00 2019-12-05 11:36:41.330037 185.125.207.191 501 1 1 3.00 3.00 2019-12-05 11:37:02.118274 185.125.207.191 502 1 1 3.00 3.00 2019-12-05 17:29:02.99235 185.125.207.191 503 1 1 3.00 3.00 2019-12-05 17:30:14.017239 185.125.207.191 504 0 3 0.00 -23.00 2019-12-06 14:26:25.012754 5.120.52.76 505 0 3 0.00 -3.00 2019-12-06 14:27:13.730469 5.120.52.76 506 0 1 1.00 1.00 2019-12-06 14:31:24.374363 10.8.0.234 507 0 1 1.00 1.00 2019-12-06 14:32:35.16694 10.8.0.234 508 0 1 1.00 1.00 2019-12-06 14:33:14.790912 10.8.0.234 509 1 1 1.00 1.00 2019-12-07 12:10:01.530283 185.125.207.191 510 1 1 3.00 3.00 2019-12-08 19:20:11.283486 46.225.215.117 511 1 1 1.00 1.00 2019-12-09 09:12:24.330362 46.225.210.98 512 1 1 1.00 1.00 2019-12-09 11:44:48.872925 185.125.207.191 513 1 1 3.00 3.00 2019-12-10 17:23:00.590702 185.125.207.191 514 1 1 3.00 3.00 2019-12-10 18:22:40.330454 46.225.212.132 515 1 1 1.00 1.00 2019-12-11 12:09:30.926523 46.225.209.72 516 1 1 3.00 3.00 2019-12-12 09:13:06.843397 46.225.232.106 517 1 1 3.00 3.00 2019-12-12 19:31:59.229672 46.225.209.162 518 1 1 3.00 3.00 2019-12-16 18:35:29.649116 185.125.207.191 519 1 1 3.00 3.00 2019-12-18 18:37:16.018624 46.225.232.28 520 1 1 3.00 3.00 2019-12-19 10:12:07.689606 46.225.208.230 521 1 1 3.00 3.00 2019-12-21 17:40:58.290602 46.225.208.254 522 1 1 3.00 3.00 2019-12-21 17:56:05.835654 46.225.208.254 523 1 1 1.00 1.00 2019-12-22 17:20:51.113662 185.125.207.191 524 1 1 1.00 1.00 2019-12-22 18:31:21.894613 46.225.209.107 525 0 1 1.00 1.00 2019-12-24 17:30:15.678891 5.119.61.34 526 1 1 1.00 1.00 2019-12-26 19:22:23.70121 46.225.213.40 527 1 1 1.00 1.00 2019-12-26 19:22:29.048911 46.225.213.40 528 1 1 3.00 3.00 2019-12-28 09:09:10.418361 46.225.214.107 529 1 1 1.00 1.00 2019-12-28 09:09:53.982391 46.225.214.107 530 1 1 1.00 1.00 2019-12-28 10:50:53.874376 46.225.214.107 531 1 1 1.00 1.00 2019-12-28 18:36:17.291001 46.225.211.202 532 1 1 1.00 1.00 2019-12-28 20:21:37.01667 46.225.211.202 533 1 1 1.00 1.00 2019-12-28 20:22:00.920285 46.225.211.202 534 1 1 1.00 1.00 2019-12-29 10:14:22.541228 185.125.207.191 535 1 1 3.00 3.00 2019-12-29 10:14:54.716816 185.125.207.191 536 1 1 3.00 3.00 2019-12-30 16:56:09.733356 46.225.232.210 537 1 1 3.00 3.00 2019-12-30 21:13:04.956197 46.225.211.104 538 1 1 3.00 3.00 2019-12-31 10:35:29.050167 46.225.213.133 \. -- -- Data for Name: credit_change_userid; Type: TABLE DATA; Schema: public; Owner: ibs -- COPY credit_change_userid (credit_change_id, user_id) FROM stdin; 1 1 2 2 3 3 4 4 5 5 6 6 7 7 8 8 9 9 10 10 11 11 12 12 13 13 14 14 15 15 16 16 17 17 18 18 19 19 20 20 21 21 22 22 23 23 24 24 25 25 26 26 27 27 28 28 29 29 30 30 31 31 32 32 33 33 34 34 35 35 36 36 37 37 38 38 39 39 40 40 41 41 42 42 43 43 44 44 45 45 46 46 47 47 48 48 49 49 50 50 51 51 52 52 53 53 54 54 55 55 56 56 57 57 58 58 59 58 60 59 61 60 62 61 63 62 64 63 65 55 66 64 67 65 68 61 69 66 70 60 71 67 72 68 73 69 74 70 75 71 76 72 77 73 78 74 79 75 80 76 81 77 82 78 83 79 84 79 85 80 86 81 87 82 88 83 89 84 90 85 91 86 92 87 93 88 94 89 95 90 96 91 97 92 98 93 99 94 100 95 101 96 102 97 103 98 104 98 105 99 106 100 107 101 108 102 109 103 110 104 111 105 112 106 113 107 114 108 115 109 116 109 117 110 118 111 119 112 120 113 121 114 122 115 123 116 124 118 125 119 126 120 127 121 128 123 129 124 130 125 131 126 132 127 133 128 134 129 135 130 136 131 137 132 138 133 139 134 140 135 141 136 142 137 143 136 144 137 145 138 146 139 147 140 148 141 149 142 150 143 151 144 152 145 153 146 154 147 155 148 156 149 157 150 158 151 159 152 160 153 161 154 162 155 163 156 164 157 165 158 166 159 167 160 168 162 169 163 170 164 171 165 172 166 173 167 174 168 175 169 176 170 177 171 178 172 179 173 180 174 181 175 182 176 183 177 184 178 185 179 186 157 187 180 188 181 189 183 190 184 191 185 192 186 193 185 194 187 195 188 196 190 197 192 198 193 199 194 200 195 201 131 202 196 203 1 203 2 203 3 203 4 203 5 203 6 203 7 203 8 203 9 203 10 203 11 203 12 203 13 203 14 203 15 203 16 203 17 203 18 203 19 203 20 203 21 203 22 203 23 203 24 203 25 203 26 203 27 203 28 203 29 203 30 203 31 203 32 203 33 203 34 203 35 203 36 203 37 203 38 203 39 203 40 203 41 203 42 203 43 203 44 203 45 203 46 203 47 203 48 203 49 203 50 203 51 203 52 203 53 203 54 203 56 203 57 203 59 203 62 203 63 203 64 203 65 203 66 203 67 203 68 203 69 203 70 203 71 203 72 203 73 203 74 203 75 203 76 203 77 203 78 203 80 203 81 203 82 203 83 203 84 203 85 203 86 203 87 203 88 203 89 203 90 203 91 203 92 203 93 203 94 203 95 203 96 203 97 203 99 203 100 203 101 203 102 203 103 203 104 203 105 203 106 203 107 203 108 203 110 203 111 203 112 203 113 203 114 203 115 203 116 203 118 203 119 203 120 203 121 203 123 203 124 203 125 203 126 203 127 203 128 203 129 203 130 203 132 203 133 203 134 203 135 203 138 203 139 203 140 203 141 203 142 203 143 203 144 203 145 203 146 203 147 203 148 203 149 203 150 203 151 203 152 203 153 203 154 203 155 203 156 203 158 203 159 203 160 203 162 203 163 203 164 203 165 203 166 203 167 203 168 203 169 203 170 203 171 203 172 203 173 203 174 203 175 203 176 203 177 203 178 203 179 203 180 203 181 203 183 203 184 203 186 203 187 203 188 203 190 203 192 203 193 203 194 203 195 203 196 204 197 205 197 206 198 207 198 208 199 209 199 210 200 211 201 212 202 213 203 213 204 214 200 215 205 215 206 215 207 215 208 215 209 215 210 216 212 216 213 216 214 217 216 217 217 217 218 218 220 219 222 220 223 221 224 222 226 223 222 223 223 224 226 225 228 226 230 227 232 228 234 229 236 230 238 231 239 232 238 233 201 234 241 235 243 236 239 236 241 237 245 238 247 239 249 240 251 240 252 240 253 240 254 240 255 240 256 240 257 240 258 240 259 240 260 240 261 240 262 240 263 240 264 240 265 240 266 240 267 240 268 240 269 240 270 240 271 240 272 240 273 240 274 240 275 240 276 240 277 240 278 240 279 240 280 241 282 242 284 243 286 244 288 245 290 246 292 247 294 248 296 249 298 250 298 251 300 252 300 253 302 254 304 255 306 256 308 257 310 258 310 259 311 260 312 261 314 262 316 263 318 264 316 265 320 266 322 267 324 268 325 269 327 270 329 271 331 272 333 273 335 274 337 275 339 276 341 277 343 278 345 279 346 280 347 281 349 282 351 283 353 284 228 285 355 286 357 287 359 288 361 289 363 290 365 291 367 292 368 293 370 294 372 295 373 296 375 297 377 298 379 299 381 300 383 301 385 302 386 303 387 304 383 304 386 305 388 306 388 307 387 308 390 309 392 310 393 311 395 312 397 313 398 314 397 315 400 316 402 317 404 317 405 317 406 318 407 319 408 320 410 321 411 322 412 323 414 324 416 325 418 326 420 327 422 328 424 329 426 330 428 331 430 332 432 333 434 334 436 335 438 337 440 338 441 339 443 340 445 341 447 343 451 344 453 345 454 347 458 348 459 349 460 350 461 351 202 351 203 351 204 351 206 351 207 351 209 351 210 351 216 351 217 351 218 351 230 351 234 351 236 351 243 351 245 351 249 351 251 351 261 351 263 351 265 351 269 351 271 351 272 351 284 351 286 351 302 351 304 351 308 351 312 351 314 351 318 351 320 351 324 351 341 351 343 351 346 351 349 351 353 351 355 351 357 351 363 351 365 351 367 351 368 351 373 351 381 352 462 353 464 354 466 355 468 356 470 357 472 358 474 359 476 360 477 361 479 363 483 365 487 366 488 368 492 368 493 368 494 368 495 368 496 368 497 369 498 371 492 371 493 371 494 374 503 375 505 376 506 377 508 378 509 380 512 383 518 384 520 385 522 387 525 388 526 389 528 391 531 392 532 394 534 396 538 397 540 400 544 401 545 403 548 404 550 405 551 406 553 407 554 408 556 409 558 410 560 413 564 414 566 415 568 416 570 417 572 419 574 420 576 422 580 423 581 424 583 425 585 427 589 428 591 430 595 431 597 433 601 433 602 433 603 433 604 433 605 433 606 434 345 434 404 434 405 434 406 434 407 434 440 434 460 434 505 434 509 434 524 434 525 434 531 434 533 434 547 434 550 434 553 434 580 434 601 434 602 434 603 434 604 434 605 434 606 436 609 440 615 441 617 443 621 444 622 445 623 446 625 447 627 449 631 452 637 454 641 455 643 456 645 457 647 458 649 459 651 460 652 462 656 464 660 466 663 468 667 470 670 472 673 473 675 474 677 475 679 476 681 477 683 479 687 480 581 481 689 483 692 336 438 342 449 346 456 362 481 364 485 367 490 370 495 370 496 370 497 372 499 373 501 379 510 381 514 382 516 386 524 390 530 393 533 395 536 398 540 399 542 402 547 411 560 412 562 418 572 421 578 426 587 429 593 432 599 435 607 437 611 438 613 439 488 442 619 448 629 450 633 451 635 453 639 461 654 463 658 465 662 467 665 469 668 471 671 478 685 482 691 484 694 485 696 486 698 487 700 488 208 489 702 490 703 491 705 492 702 492 705 493 707 494 709 495 711 496 713 497 715 498 716 499 718 500 720 501 722 502 724 503 726 504 252 504 253 504 254 504 255 504 256 504 257 504 258 504 259 504 260 504 262 504 264 504 266 504 267 504 268 504 270 504 273 504 274 504 275 504 276 504 277 504 278 504 279 504 280 505 651 505 662 506 728 507 730 508 732 509 734 510 736 511 738 512 740 513 742 514 744 515 746 516 748 517 750 518 752 519 754 520 756 521 758 522 760 523 762 524 763 525 765 526 767 527 768 528 770 529 771 530 773 531 775 532 777 533 779 534 781 535 782 536 784 537 786 538 788 \. -- -- Data for Name: defs; Type: TABLE DATA; Schema: public; Owner: ibs -- COPY defs (name, value, type) FROM stdin; BW_IPTABLES_COMMAND S'iptables'\np0\n. \N BW_TC_COMMAND S'tc'\np0\n. \N CHECK_ONLINE_INTERVAL I60\n. \N CHECK_ONLINE_MAX_FAILS I2\n. \N FASTDIAL_PREFIX S''\np0\n. \N IAS_ENABLED I0\n. \N IBS_SERVER_IP S'127.0.0.1'\np0\n. \N IBS_SERVER_PORT I1235\n. \N KILL_USERS_ON_SHUTDOWN I1\n. \N KILL_USERS_SHUTDOWN_WAIT_TIME I20\n. \N MAX_USER_POOL_SIZE I10000\n. \N RADIUS_SERVER_ACCT_PORT I1813\n. \N RADIUS_SERVER_AUTH_PORT I1812\n. \N RADIUS_SERVER_BIND_IP (lp0\nS'0.0.0.0'\np1\na. \N RADIUS_SERVER_CLEANUP_TIME I20\n. \N RADIUS_SERVER_ENABLED I1\n. \N REALTIME_BW_SNAPSHOT_HOURS I5\n. \N REALTIME_BW_SNAPSHOT_INTERVAL I15\n. \N REALTIME_ONLINES_SNAPSHOT_HOURS I5\n. \N REALTIME_ONLINES_SNAPSHOT_INTERVAL I15\n. \N SNAPSHOT_BW_INTERVAL I60\n. \N SNAPSHOT_ONLINES_INTERVAL I300\n. \N TRUSTED_CLIENTS (lp0\nS'127.0.0.1'\np1\na. \N USER_AUDIT_LOG I1\n. \N WEB_ANALYZER_PASSWORD S'web_analyzer_password'\np0\n. \N \. -- -- Data for Name: group_attrs; Type: TABLE DATA; Schema: public; Owner: ibs -- COPY group_attrs (group_id, attr_name, attr_value) FROM stdin; 1 normal_charge 1 1 multi_login 32 4 multi_login 2 2 normal_charge 1 3 normal_charge 1 4 normal_charge 1 3 multi_login 2 2 multi_login 2 5 normal_charge 1 5 rel_exp_date 15552000 2 rel_exp_date 2851200 3 rel_exp_date 5702400 4 rel_exp_date 8553600 \. -- -- Data for Name: groups; Type: TABLE DATA; Schema: public; Owner: ibs -- COPY groups (group_id, group_name, owner_id, comment) FROM stdin; 1 Unlimited 0 2 1mahe 0 3 2mahe 0 4 3mahe 0 5 6mahe 0 \. -- -- Data for Name: ias_event; Type: TABLE DATA; Schema: public; Owner: ibs -- COPY ias_event (event_id, event_type, event_date, actor, amount, destinations, comment) FROM stdin; \. -- -- Data for Name: ias_event_extended; Type: TABLE DATA; Schema: public; Owner: ibs -- COPY ias_event_extended (event_id, name, value) FROM stdin; \. -- -- Data for Name: ibs_states; Type: TABLE DATA; Schema: public; Owner: ibs -- COPY ibs_states (name, value) FROM stdin; AUTO_CLEAN_WEB_ANALYZER_LOG 1209600 AUTO_CLEAN_CREDIT_CHANGE 0 AUTO_CLEAN_USER_AUDIT_LOG 0 AUTO_CLEAN_CONNECTION_LOG 0 AUTO_CLEAN_SNAPSHOTS 0 LOWLOAD_JOBS 1577752267 MIDNIGHT_JOBS 1577737865 \. -- -- Data for Name: internet_bw_snapshot; Type: TABLE DATA; Schema: public; Owner: ibs -- COPY internet_bw_snapshot (snp_date, user_id, in_rate, out_rate) FROM stdin; \. -- -- Data for Name: internet_charge_rules; Type: TABLE DATA; Schema: public; Owner: ibs -- COPY internet_charge_rules (charge_id, charge_rule_id, start_time, end_time, time_limit, ras_id, cpm, cpk, assumed_kps, bandwidth_limit_kbytes, bw_transmit_leaf_id, bw_receive_leaf_id) FROM stdin; 1 1 00:00:00 23:59:59 \N \N 0.00 0.00 8 0 \N \N \. -- -- Data for Name: internet_onlines_snapshot; Type: TABLE DATA; Schema: public; Owner: ibs -- COPY internet_onlines_snapshot (snp_date, ras_id, value) FROM stdin; 2015-05-19 17:35:23 1 1 2015-05-19 21:55:23 1 1 2015-05-20 15:40:23 1 1 2015-05-20 15:50:23 1 1 2015-05-20 18:35:23 1 1 2015-05-21 16:50:23 1 1 2015-05-21 19:10:23 1 1 2015-05-21 19:45:23 1 1 2015-05-21 20:00:23 1 1 2015-05-21 20:05:23 1 1 2015-05-21 20:40:23 1 1 2015-05-21 21:10:23 1 1 2015-05-21 23:30:23 1 1 2015-05-22 06:20:23 1 1 2015-05-22 14:10:23 1 1 2015-05-22 18:05:23 1 1 2015-05-22 18:30:23 1 1 2015-05-23 10:50:23 1 1 2015-05-23 12:45:23 1 1 2015-05-23 13:50:23 1 1 2015-05-23 16:00:23 1 1 2015-05-23 17:35:23 1 1 2015-05-23 17:40:23 1 1 2015-05-23 22:10:23 1 1 2015-05-23 22:50:23 1 1 2015-05-23 23:15:23 1 1 2015-05-24 00:30:23 1 1 2015-05-24 01:25:23 1 1 2015-05-24 02:25:23 1 1 2015-05-24 09:20:23 1 1 2015-05-24 10:40:23 1 1 2015-05-24 12:40:23 1 1 2015-05-24 13:05:23 1 1 2015-05-24 13:10:23 1 1 2015-05-24 14:35:23 1 1 2015-05-24 14:45:23 1 1 2015-05-24 17:15:23 1 1 2015-05-24 18:10:23 1 1 2015-05-24 18:30:23 1 1 2015-05-24 18:35:23 1 1 2015-05-24 23:55:23 1 1 2015-05-25 00:30:23 1 1 2015-05-25 10:40:23 1 1 2015-05-25 14:05:23 1 1 2015-05-25 14:15:23 1 1 2015-05-25 14:40:23 1 1 2015-05-25 16:00:23 1 1 2015-05-25 17:00:23 1 1 2015-05-25 17:55:23 1 1 2015-05-25 18:05:23 1 1 2015-05-25 20:40:23 1 1 2015-05-25 21:55:23 1 1 2015-05-25 22:50:23 1 1 2015-05-25 23:15:23 1 1 2015-05-26 00:55:23 1 1 2015-05-26 10:35:23 1 1 2015-05-26 11:20:23 1 1 2015-05-26 11:40:23 1 1 2015-05-26 13:10:23 1 1 2015-05-26 13:15:23 1 1 2015-05-26 14:10:23 1 1 2015-05-26 15:20:23 1 1 2015-05-26 15:35:23 1 1 2015-05-26 17:55:23 1 1 2015-05-26 19:30:23 1 1 2015-05-26 21:00:23 1 1 2015-05-26 21:05:23 1 1 2015-05-26 21:30:23 1 1 2015-05-26 22:40:23 1 1 2015-05-26 22:45:23 1 1 2015-05-26 22:55:23 1 1 2015-05-26 23:35:23 1 1 2015-05-26 23:55:23 1 1 2015-05-27 03:15:23 1 1 2015-05-27 09:55:23 1 1 2015-05-27 11:05:23 1 1 2015-05-27 12:05:23 1 1 2015-05-27 12:10:23 1 1 2015-05-27 13:45:23 1 1 2015-05-27 14:15:23 1 1 2015-05-27 16:40:23 1 1 2015-05-27 17:40:23 1 1 2015-05-27 18:25:23 1 1 2015-05-27 21:00:23 1 1 2015-05-27 22:25:23 1 1 2015-05-27 22:30:23 1 1 2015-05-27 23:35:23 1 1 2015-05-28 11:05:23 1 1 2015-05-28 12:25:23 1 1 2015-05-28 13:00:23 1 1 2015-05-28 13:25:23 1 1 2015-05-28 15:30:23 1 1 2015-05-28 17:20:23 1 1 2015-05-28 23:10:23 1 1 2015-05-28 23:40:23 1 1 2015-05-29 00:35:23 1 1 2015-05-29 01:00:23 1 1 2015-05-29 04:15:23 1 1 2015-05-29 07:55:23 1 1 2015-05-29 13:05:23 1 1 2015-05-29 14:20:23 1 1 2015-05-29 18:10:23 1 1 2015-05-29 20:30:23 1 1 2015-05-29 23:25:23 1 1 2015-05-29 23:30:23 1 1 2015-05-30 00:10:23 1 1 2015-05-30 00:55:23 1 1 2015-05-30 02:05:23 1 1 2015-05-30 10:20:23 1 1 2015-05-30 10:30:23 1 1 2015-05-30 12:45:23 1 1 2015-05-30 17:20:23 1 1 2015-05-30 18:25:23 1 1 2015-05-30 19:10:23 1 1 2015-05-30 22:20:23 1 1 2015-05-30 23:20:23 1 1 2015-05-31 01:25:23 1 1 2015-05-31 02:35:23 1 1 2015-05-31 10:00:23 1 1 2015-05-31 10:05:23 1 1 2015-05-31 19:45:23 1 1 2015-05-31 19:50:23 1 1 2015-05-31 22:15:23 1 1 2015-05-31 23:45:23 1 1 2015-06-01 00:00:23 1 1 2015-06-01 00:45:23 1 1 2015-06-01 10:30:23 1 1 2015-06-01 12:35:23 1 1 2015-06-01 14:40:23 1 1 2015-06-01 17:10:23 1 1 2015-06-01 17:30:23 1 1 2015-06-01 19:25:23 1 1 2015-06-01 21:35:23 1 1 2015-06-01 21:45:23 1 1 2015-06-01 21:50:23 1 1 2015-06-02 09:30:23 1 1 2015-06-02 10:40:23 1 1 2015-06-02 15:45:23 1 1 2015-06-02 15:50:23 1 1 2015-06-02 16:55:23 1 1 2015-06-02 17:00:23 1 1 2015-06-02 17:05:23 1 1 2015-06-02 19:00:23 1 1 2015-06-02 20:15:23 1 1 2015-06-02 22:05:23 1 1 2015-06-02 22:10:23 1 1 2015-06-02 22:15:23 1 1 2015-06-02 23:05:23 1 1 2015-06-02 23:10:23 1 1 2015-06-03 00:30:23 1 1 2015-06-03 00:40:23 1 1 2015-06-03 01:00:23 1 1 2015-06-03 02:45:23 1 1 2015-06-03 07:55:23 1 1 2015-06-03 08:15:23 1 1 2015-06-03 12:25:23 1 1 2015-06-03 16:55:23 1 1 2015-06-03 17:25:23 1 1 2015-06-03 18:00:23 1 1 2015-06-03 18:20:23 1 1 2015-06-03 18:25:23 1 1 2015-06-03 19:50:23 1 1 2015-06-03 21:10:23 1 1 2015-06-03 22:45:23 1 1 2015-06-03 22:55:23 1 1 2015-06-04 00:50:23 1 1 2015-06-04 07:50:23 1 1 2015-06-04 13:15:23 1 1 2015-06-04 15:00:23 1 1 2015-06-04 15:10:23 1 1 2015-06-04 16:50:23 1 1 2015-06-04 17:30:23 1 1 2015-06-04 19:25:23 1 1 2015-06-04 22:00:23 1 1 2015-06-04 23:05:23 1 1 2015-06-05 03:05:23 1 1 2015-06-05 08:30:23 1 1 2015-06-05 09:25:23 1 1 2015-06-05 09:45:23 1 1 2015-06-05 10:10:23 1 1 2015-06-05 11:05:23 1 1 2015-06-05 11:50:23 1 1 2015-06-05 15:50:23 1 1 2015-06-05 17:35:23 1 1 2015-06-05 19:00:23 1 1 2015-06-05 19:25:23 1 1 2015-06-05 22:30:23 1 1 2015-06-06 10:05:23 1 1 2015-06-06 12:40:23 1 1 2015-06-06 14:35:23 1 1 2015-06-06 17:30:23 1 1 2015-06-06 19:10:23 1 1 2015-06-06 21:55:23 1 1 2015-06-07 08:50:23 1 1 2015-06-07 19:15:23 1 1 2015-06-07 19:45:23 1 1 2015-06-07 23:10:23 1 1 2015-06-08 07:55:23 1 1 2015-06-08 14:45:23 1 1 2015-06-08 22:45:23 1 1 2015-06-08 23:15:23 1 1 2015-06-08 23:30:23 1 1 2015-06-09 11:05:23 1 1 2015-06-09 12:50:23 1 1 2015-06-09 13:50:23 1 1 2015-06-09 14:45:23 1 1 2015-06-09 19:05:23 1 1 2015-06-09 20:30:23 1 1 2015-06-09 22:45:23 1 1 2015-06-10 00:10:23 1 1 2015-06-10 10:00:23 1 1 2015-06-10 15:25:23 1 1 2015-06-10 19:40:23 1 1 2015-06-11 11:00:23 1 1 2015-06-11 11:40:23 1 1 2015-06-11 14:00:23 1 1 2015-06-11 14:35:23 1 1 2015-06-11 15:00:23 1 1 2015-06-11 16:55:23 1 1 2015-06-11 19:20:23 1 1 2015-06-11 22:45:23 1 1 2015-06-11 23:40:23 1 1 2015-06-12 02:05:23 1 1 2015-06-12 06:05:23 1 1 2015-06-12 07:00:23 1 1 2015-06-12 11:40:23 1 1 2015-06-12 13:35:23 1 1 2015-06-12 18:10:23 1 1 2015-06-12 22:15:23 1 1 2015-06-13 12:00:23 1 1 2015-06-13 15:25:23 1 1 2015-06-13 18:55:23 1 1 2015-06-13 19:25:23 1 1 2015-06-13 23:15:23 1 1 2015-06-14 00:00:23 1 1 2015-06-14 09:15:23 1 1 2015-06-14 21:00:23 1 1 2015-06-14 21:55:23 1 1 2015-06-15 00:30:23 1 1 2015-06-15 00:35:23 1 1 2015-06-15 09:35:23 1 1 2015-06-15 19:15:23 1 1 2015-06-15 21:20:23 1 1 2015-06-15 23:30:23 1 1 2015-06-16 12:00:23 1 1 2015-06-16 20:20:23 1 1 2015-06-16 23:35:23 1 1 2015-06-17 10:10:23 1 1 2015-06-17 14:05:23 1 1 2015-06-17 16:05:23 1 1 2015-06-18 07:00:23 1 1 2015-06-18 11:55:23 1 1 2015-06-18 13:40:23 1 1 2015-06-18 17:40:23 1 1 2015-06-19 03:35:23 1 1 2015-06-19 07:45:23 1 1 2015-06-19 18:00:23 1 1 2015-06-19 19:05:23 1 1 2015-06-19 21:50:23 1 1 2015-06-20 00:25:23 1 1 2015-06-20 09:25:23 1 1 2015-06-20 17:30:23 1 1 2015-06-20 18:45:23 1 1 2015-06-20 20:25:23 1 1 2015-06-20 22:30:23 1 1 2015-06-21 04:35:23 1 1 2015-06-21 10:50:23 1 1 2015-06-22 00:20:23 1 1 2015-06-22 07:45:23 1 1 2015-06-23 07:30:23 1 1 2015-06-23 20:15:23 1 1 2015-06-23 23:20:23 1 1 2015-06-24 07:55:23 1 1 2015-06-24 18:35:23 1 1 2015-06-25 00:20:23 1 1 2015-06-25 01:05:23 1 1 2015-06-25 13:30:23 1 1 2015-06-25 17:20:23 1 1 2015-06-25 22:30:23 1 1 2015-06-26 01:25:23 1 1 2015-06-26 10:10:23 1 1 2015-06-26 23:20:23 1 1 2015-06-27 00:25:23 1 1 2015-06-27 19:15:23 1 1 2015-06-27 23:05:23 1 1 2015-06-28 01:00:23 1 1 2015-06-28 10:55:23 1 1 2015-06-28 14:45:23 1 1 2015-06-28 16:30:23 1 1 2015-06-28 19:10:23 1 1 2015-06-28 23:10:23 1 1 2015-06-28 23:40:23 1 1 2015-06-29 08:55:23 1 1 2015-06-29 09:05:23 1 1 2015-06-29 11:35:23 1 1 2015-06-29 18:25:23 1 1 2015-06-29 21:50:23 1 1 2015-06-30 01:50:23 1 1 2015-06-30 09:15:23 1 1 2015-06-30 19:40:23 1 1 2015-07-01 07:05:23 1 1 2015-07-01 15:35:23 1 1 2015-07-02 07:40:23 1 1 2015-07-02 23:20:23 1 1 2015-07-02 23:40:23 1 1 2015-07-03 06:45:23 1 1 2015-07-03 12:10:23 1 1 2015-07-03 17:15:23 1 1 2015-07-03 21:10:23 1 1 2015-07-04 02:20:23 1 1 2015-07-04 15:15:23 1 1 2015-07-04 23:00:23 1 1 2015-07-05 00:55:23 1 1 2015-07-05 07:10:23 1 1 2015-07-05 21:50:23 1 1 2015-07-06 15:06:34 1 1 2015-07-06 19:06:34 1 1 2015-07-07 07:36:34 1 1 2015-07-07 15:16:34 1 1 2015-07-07 19:51:34 1 1 2015-07-07 21:06:34 1 1 2015-07-07 23:21:34 1 1 2015-07-08 09:41:34 1 1 2015-07-08 20:21:34 1 1 2015-07-09 05:41:34 1 1 2015-07-09 15:21:34 1 1 2015-07-10 01:16:34 1 1 2015-07-10 04:31:34 1 1 2015-07-10 12:36:34 1 1 2015-07-10 13:16:34 1 1 2015-07-10 18:26:34 1 1 2015-07-10 22:21:34 1 1 2015-07-10 23:01:34 1 1 2015-07-11 14:41:34 1 1 2015-07-11 14:51:34 1 1 2015-07-11 21:56:34 1 1 2015-07-12 01:16:34 1 1 2015-07-12 01:31:34 1 1 2015-07-12 08:36:34 1 1 2015-07-12 15:31:34 1 1 2015-07-12 23:51:34 1 1 2015-07-13 01:51:34 1 1 2015-07-13 07:36:34 1 1 2015-07-13 21:56:34 1 1 2015-07-14 01:11:34 1 1 2015-07-14 03:46:34 1 1 2015-07-14 14:16:34 1 1 2015-07-14 19:31:34 1 1 2015-07-14 23:31:34 1 1 2015-07-15 01:26:34 1 1 2015-07-15 07:16:34 1 1 2015-07-15 14:11:34 1 1 2015-07-15 16:31:34 1 1 2015-07-15 21:26:34 1 1 2015-07-16 10:26:34 1 1 2015-07-16 11:26:34 1 1 2015-07-16 11:56:34 1 1 2015-07-16 14:16:34 1 1 2015-07-16 17:06:34 1 1 2015-07-16 21:41:34 1 1 2015-07-17 03:11:34 1 1 2015-07-17 07:01:34 1 1 2015-07-17 10:11:34 1 1 2015-07-17 11:56:34 1 1 2015-07-17 15:11:34 1 1 2015-07-17 19:21:34 1 1 2015-07-17 21:16:34 1 1 2015-07-18 08:26:34 1 1 2015-07-18 15:06:34 1 1 2015-07-18 15:21:34 1 1 2015-06-05 20:40:23 1 1 2015-06-05 21:35:23 1 1 2015-06-05 22:20:23 1 1 2015-06-05 23:50:23 1 1 2015-06-06 12:55:23 1 1 2015-06-06 17:35:23 1 1 2015-06-06 21:35:23 1 1 2015-06-06 23:10:23 1 1 2015-06-07 13:50:23 1 1 2015-06-07 21:40:23 1 1 2015-06-07 23:20:23 1 1 2015-06-08 13:00:23 1 1 2015-06-08 18:50:23 1 1 2015-06-08 21:00:23 1 1 2015-06-08 22:40:23 1 1 2015-06-09 14:50:23 1 1 2015-06-09 20:35:23 1 1 2015-06-09 23:20:23 1 1 2015-06-10 02:25:23 1 1 2015-06-10 10:40:23 1 1 2015-06-10 11:45:23 1 1 2015-06-10 15:05:23 1 1 2015-06-10 22:55:23 1 1 2015-06-11 11:55:23 1 1 2015-06-11 13:25:23 1 1 2015-06-11 18:55:23 1 1 2015-06-11 19:50:23 1 1 2015-06-11 22:55:23 1 1 2015-06-12 00:50:23 1 1 2015-06-12 12:35:23 1 1 2015-06-12 14:30:23 1 1 2015-06-12 18:05:23 1 1 2015-06-12 21:20:23 1 1 2015-06-13 16:00:23 1 1 2015-06-13 18:50:23 1 1 2015-06-13 21:00:23 1 1 2015-06-13 23:25:23 1 1 2015-06-14 01:30:23 1 1 2015-06-14 12:30:23 1 1 2015-06-14 20:35:23 1 1 2015-06-15 10:45:23 1 1 2015-06-15 16:40:23 1 1 2015-06-15 21:35:23 1 1 2015-06-16 13:55:23 1 1 2015-06-16 19:35:23 1 1 2015-06-16 22:50:23 1 1 2015-06-17 11:45:23 1 1 2015-06-17 14:35:23 1 1 2015-06-17 23:45:23 1 1 2015-06-18 01:45:23 1 1 2015-06-18 19:20:23 1 1 2015-06-18 21:15:23 1 1 2015-06-18 23:00:23 1 1 2015-06-19 03:00:23 1 1 2015-06-19 12:55:23 1 1 2015-06-20 00:05:23 1 1 2015-06-20 17:45:23 1 1 2015-06-20 19:25:23 1 1 2015-06-20 20:20:23 1 1 2015-06-20 23:05:23 1 1 2015-06-21 00:05:23 1 1 2015-06-21 01:10:23 1 1 2015-06-21 07:30:23 1 1 2015-06-21 11:20:23 1 1 2015-06-21 13:10:23 1 1 2015-06-21 14:40:23 1 1 2015-06-21 19:30:23 1 1 2015-06-21 22:30:23 1 1 2015-06-23 02:40:23 1 1 2015-06-23 14:20:23 1 1 2015-06-23 17:45:23 1 1 2015-06-24 20:45:23 1 1 2015-06-25 00:25:23 1 1 2015-06-26 00:00:23 1 1 2015-06-26 00:20:23 1 1 2015-06-26 21:10:23 1 1 2015-06-27 00:35:23 1 1 2015-06-27 21:25:23 1 1 2015-06-28 01:35:23 1 1 2015-06-29 11:00:23 1 1 2015-06-29 13:45:23 1 1 2015-06-29 22:40:23 1 1 2015-06-30 10:50:23 1 1 2015-06-30 11:15:23 1 1 2015-07-01 11:40:23 1 1 2015-07-01 13:35:23 1 1 2015-07-01 19:00:23 1 1 2015-07-02 23:00:23 1 1 2015-07-03 08:20:23 1 1 2015-07-03 19:45:23 1 1 2015-07-04 02:25:23 1 1 2015-07-04 17:35:23 1 1 2015-07-04 18:15:23 1 1 2015-07-04 23:35:23 1 1 2015-07-05 07:15:23 1 1 2015-07-06 16:26:34 1 1 2015-07-07 09:51:34 1 1 2015-07-08 11:21:34 1 1 2015-07-08 14:41:34 1 1 2015-07-08 17:31:34 1 1 2015-07-08 18:46:34 1 1 2015-07-09 02:21:34 1 1 2015-07-09 02:46:34 1 1 2015-07-09 09:56:34 1 1 2015-07-10 00:11:34 1 1 2015-07-10 01:26:34 1 1 2015-07-10 02:56:34 1 1 2015-07-10 07:26:34 1 1 2015-07-10 09:51:34 1 1 2015-07-10 11:56:34 1 1 2015-07-10 15:01:34 1 1 2015-07-11 15:11:34 1 1 2015-07-11 20:26:34 1 1 2015-07-12 00:41:34 1 1 2015-07-12 11:56:34 1 1 2015-07-12 12:16:34 1 1 2015-07-12 23:56:34 1 1 2015-07-13 02:51:34 1 1 2015-07-13 11:01:34 1 1 2015-07-13 17:41:34 1 1 2015-07-13 21:31:34 1 1 2015-07-14 18:31:34 1 1 2015-07-14 20:01:34 1 1 2015-07-15 14:41:34 1 1 2015-07-15 16:36:34 1 1 2015-07-15 22:21:34 1 1 2015-07-15 23:01:34 1 1 2015-07-16 00:36:34 1 1 2015-07-16 02:56:34 1 1 2015-07-16 11:16:34 1 1 2015-07-16 14:06:34 1 1 2015-07-16 14:21:34 1 1 2015-07-16 16:46:34 1 1 2015-07-16 20:41:34 1 1 2015-07-17 02:06:34 1 1 2015-07-17 07:41:34 1 1 2015-07-17 17:46:34 1 1 2015-07-17 19:41:34 1 1 2015-07-17 22:11:34 1 1 2015-07-18 09:01:34 1 1 2015-07-18 16:21:34 1 1 2015-07-18 17:41:34 1 1 2015-07-18 18:31:34 1 1 2015-07-18 20:51:34 1 1 2015-07-18 23:41:34 1 1 2015-07-19 00:31:34 1 1 2015-07-19 09:11:34 1 1 2015-07-19 11:56:34 1 1 2015-07-19 15:41:34 1 1 2015-07-19 18:51:34 1 1 2015-07-19 21:01:34 1 1 2015-07-19 22:41:34 1 1 2015-07-20 04:11:34 1 1 2015-07-20 08:56:34 1 1 2015-07-20 17:06:34 1 1 2015-07-20 18:01:34 1 1 2015-07-20 20:01:34 1 1 2015-07-21 10:01:34 1 1 2015-07-21 12:16:34 1 1 2015-07-22 14:36:34 1 1 2015-07-22 16:31:34 1 1 2015-07-22 19:11:34 1 1 2015-07-22 20:56:34 1 1 2015-07-22 21:16:34 1 1 2015-07-22 22:06:34 1 1 2015-07-23 03:56:34 1 1 2015-07-23 09:21:34 1 1 2015-07-23 14:31:34 1 1 2015-07-23 14:51:34 1 1 2015-07-23 15:01:34 1 1 2015-07-23 15:36:34 1 1 2015-07-23 16:01:34 1 1 2015-07-23 23:11:34 1 1 2015-07-23 23:21:34 1 1 2015-07-24 08:06:34 1 1 2015-07-24 11:01:34 1 1 2015-07-24 11:36:34 1 1 2015-07-24 14:51:34 1 1 2015-07-24 15:31:34 1 1 2015-07-24 16:21:34 1 1 2015-07-24 17:01:34 1 1 2015-07-24 17:11:34 1 1 2015-07-24 18:06:34 1 1 2015-07-24 19:06:34 1 1 2015-07-24 19:16:34 1 1 2015-06-05 21:25:23 1 1 2015-06-06 00:15:23 1 1 2015-06-06 13:15:23 1 1 2015-06-06 17:00:23 1 1 2015-06-06 17:50:23 1 1 2015-06-06 19:05:23 1 1 2015-06-06 22:30:23 1 1 2015-06-06 23:55:23 1 1 2015-06-07 18:10:23 1 1 2015-06-07 19:35:23 1 1 2015-06-07 20:40:23 1 1 2015-06-08 19:35:23 1 1 2015-06-08 20:55:23 1 1 2015-06-08 22:50:23 1 1 2015-06-09 22:20:23 1 1 2015-06-09 22:50:23 1 1 2015-06-10 03:05:23 1 1 2015-06-10 19:15:23 1 1 2015-06-10 20:50:23 1 1 2015-06-10 22:00:23 1 1 2015-06-10 23:00:23 1 1 2015-06-11 00:15:23 1 1 2015-06-11 15:20:23 1 1 2015-06-11 18:00:23 1 1 2015-06-12 00:00:23 1 1 2015-06-12 13:45:23 1 1 2015-06-12 16:40:23 1 1 2015-06-12 18:45:23 1 1 2015-06-13 00:15:23 1 1 2015-06-13 02:50:23 1 1 2015-06-13 23:00:23 1 1 2015-06-14 00:45:23 1 1 2015-06-14 13:35:23 1 1 2015-06-14 16:55:23 1 1 2015-06-15 00:50:23 1 1 2015-06-15 13:25:23 1 1 2015-06-15 15:45:23 1 1 2015-06-15 16:10:23 1 1 2015-06-15 22:10:23 1 1 2015-06-15 22:40:23 1 1 2015-06-16 00:10:23 1 1 2015-06-16 23:10:23 1 1 2015-06-17 23:15:23 1 1 2015-06-18 00:25:23 1 1 2015-06-18 00:50:23 1 1 2015-06-18 20:55:23 1 1 2015-06-18 22:50:23 1 1 2015-06-19 13:40:23 1 1 2015-06-19 15:00:23 1 1 2015-06-19 20:55:23 1 1 2015-06-20 00:00:23 1 1 2015-06-20 17:50:23 1 1 2015-06-20 21:45:23 1 1 2015-06-21 11:35:23 1 1 2015-06-21 14:25:23 1 1 2015-06-24 23:00:23 1 1 2015-06-24 23:15:23 1 1 2015-06-24 23:20:23 1 1 2015-06-25 01:00:23 1 1 2015-06-26 00:05:23 1 1 2015-06-29 11:20:23 1 1 2015-06-29 17:35:23 1 1 2015-06-29 22:55:23 1 1 2015-07-01 00:30:23 1 1 2015-07-01 17:55:23 1 1 2015-07-01 23:10:23 1 1 2015-07-02 03:20:23 1 1 2015-07-03 13:35:23 1 1 2015-07-03 15:00:23 1 1 2015-07-03 15:45:23 1 1 2015-07-03 19:30:23 1 1 2015-07-03 22:05:23 1 1 2015-07-03 23:35:23 1 1 2015-07-04 22:55:23 1 1 2015-07-05 01:15:23 1 1 2015-07-05 11:40:23 1 1 2015-07-05 13:50:23 1 1 2015-07-05 18:55:23 1 1 2015-07-06 18:11:34 1 1 2015-07-06 22:16:34 1 1 2015-07-07 11:36:34 1 1 2015-07-07 20:11:34 1 1 2015-07-08 00:56:34 1 1 2015-07-08 13:21:34 1 1 2015-07-08 18:36:34 1 1 2015-07-09 15:26:34 1 1 2015-07-10 00:41:34 1 1 2015-07-10 10:01:34 1 1 2015-07-10 22:51:34 1 1 2015-07-11 20:06:34 1 1 2015-07-11 23:21:34 1 1 2015-07-12 01:06:34 1 1 2015-07-12 01:26:34 1 1 2015-07-12 03:16:34 1 1 2015-07-12 16:56:34 1 1 2015-07-12 19:51:34 1 1 2015-07-12 22:21:34 1 1 2015-07-13 12:16:34 1 1 2015-07-13 21:26:34 1 1 2015-07-14 03:41:34 1 1 2015-07-14 23:16:34 1 1 2015-07-14 23:56:34 1 1 2015-07-15 15:51:34 1 1 2015-07-15 18:46:34 1 1 2015-07-15 19:21:34 1 1 2015-07-15 23:41:34 1 1 2015-07-16 00:56:35 1 1 2015-07-16 17:41:34 1 1 2015-07-16 22:41:34 1 1 2015-07-16 23:56:34 1 1 2015-07-17 00:06:34 1 1 2015-07-17 16:06:34 1 1 2015-07-17 17:16:34 1 1 2015-07-18 02:26:34 1 1 2015-07-18 11:16:34 1 1 2015-07-18 14:11:34 1 1 2015-07-18 15:11:34 1 1 2015-07-18 15:31:34 1 1 2015-07-18 15:46:34 1 1 2015-07-18 16:26:34 1 1 2015-07-18 18:41:34 1 1 2015-07-18 23:01:34 1 1 2015-07-19 00:21:34 1 1 2015-07-19 12:41:34 1 1 2015-07-19 15:36:34 1 1 2015-07-19 20:36:34 1 1 2015-07-19 21:51:34 1 1 2015-07-20 03:01:34 1 1 2015-07-20 09:41:34 1 1 2015-07-20 14:56:34 1 1 2015-07-20 16:01:34 1 1 2015-07-20 18:51:34 1 1 2015-07-20 19:36:34 1 1 2015-07-20 21:06:34 1 1 2015-07-21 15:11:34 1 1 2015-07-21 18:06:34 1 1 2015-07-21 18:56:34 1 1 2015-07-21 19:56:34 1 1 2015-07-21 21:01:34 1 1 2015-07-22 00:46:34 1 1 2015-07-22 00:51:34 1 1 2015-07-22 15:01:34 1 1 2015-07-22 20:46:34 1 1 2015-07-22 21:21:34 1 1 2015-07-23 02:36:34 1 1 2015-07-23 02:51:34 1 1 2015-07-23 10:06:34 1 1 2015-07-23 13:56:34 1 1 2015-07-23 18:01:34 1 1 2015-07-23 19:21:34 1 1 2015-07-23 20:11:34 1 1 2015-07-24 09:21:34 1 1 2015-07-24 11:06:34 1 1 2015-07-24 11:26:34 1 1 2015-07-24 17:06:34 1 1 2015-07-24 17:26:34 1 1 2015-07-24 19:31:34 1 1 2015-07-24 20:06:34 1 1 2015-07-25 07:06:34 1 1 2015-07-25 08:46:34 1 1 2015-07-25 09:31:34 1 1 2015-07-25 13:21:34 1 1 2015-07-25 14:11:34 1 1 2015-07-25 16:11:34 1 1 2015-07-25 19:21:34 1 1 2015-07-25 19:31:34 1 1 2015-07-25 19:36:34 1 1 2015-07-25 21:21:34 1 1 2015-07-26 12:21:34 1 1 2015-07-26 13:36:34 1 1 2015-07-26 14:16:34 1 1 2015-07-26 15:06:34 1 1 2015-07-26 16:16:34 1 1 2015-07-26 19:11:34 1 1 2015-07-26 20:51:34 1 1 2015-07-26 22:11:34 1 1 2015-07-26 22:31:34 1 1 2015-07-26 23:16:34 1 1 2015-07-26 23:21:34 1 1 2015-07-27 09:01:34 1 1 2015-07-27 11:16:34 1 1 2015-07-27 11:26:34 1 1 2015-07-27 13:31:34 1 1 2015-07-27 14:01:34 1 1 2015-07-27 14:21:34 1 1 2015-07-27 15:56:34 1 1 2015-07-27 16:56:34 1 1 2015-07-27 17:06:34 1 1 2015-07-27 21:26:34 1 1 2015-07-27 21:36:34 1 1 2015-07-28 10:31:34 1 1 2015-07-28 12:06:34 1 1 2015-07-28 16:21:34 1 1 2015-07-28 21:56:34 1 1 2015-07-29 01:01:34 1 1 2015-07-29 09:16:34 1 1 2015-07-29 09:56:35 1 1 2015-07-29 13:41:34 1 1 2015-07-29 18:41:34 1 1 2015-07-29 19:16:34 1 1 2015-07-29 21:56:34 1 1 2015-07-29 23:16:34 1 1 2015-07-30 01:56:34 1 1 2015-07-30 05:56:34 1 1 2015-07-30 20:16:34 1 1 2015-07-31 08:46:34 1 1 2015-07-31 15:06:34 1 1 2015-08-01 02:06:34 1 1 2015-08-01 12:11:34 1 1 2015-08-01 15:01:34 1 1 2015-08-01 23:01:34 1 1 2015-08-02 01:06:34 1 1 2015-08-02 01:21:34 1 1 2015-08-02 09:31:34 1 1 2015-08-02 17:26:34 1 1 2015-08-02 18:01:34 1 1 2015-08-03 11:16:34 1 1 2015-08-03 15:46:34 1 1 2015-08-03 22:16:34 1 1 2015-08-03 22:51:34 1 1 2015-08-04 09:26:34 1 1 2015-08-04 18:46:34 1 1 2015-08-05 03:26:34 1 1 2015-08-05 14:26:34 1 1 2015-08-05 22:26:34 1 1 2015-08-06 00:51:34 1 1 2015-08-06 10:21:34 1 1 2015-08-06 15:21:34 1 1 2015-08-06 20:56:34 1 1 2015-08-07 03:11:34 1 1 2015-08-07 04:51:34 1 1 2015-08-07 12:46:34 1 1 2015-08-07 13:21:34 1 1 2015-08-07 14:51:34 1 1 2015-08-07 18:26:34 1 1 2015-08-07 19:06:34 1 1 2015-08-07 21:41:34 1 1 2015-08-08 08:51:34 1 1 2015-08-08 14:21:34 1 1 2015-08-09 01:31:34 1 1 2015-08-09 10:11:34 1 1 2015-08-10 00:16:34 1 1 2015-08-10 12:41:34 1 1 2015-08-10 18:01:34 1 1 2015-08-10 18:46:34 1 1 2015-08-10 20:01:34 1 1 2015-08-10 22:16:34 1 1 2015-08-11 10:56:34 1 1 2015-08-11 11:21:34 1 1 2015-08-11 22:01:34 1 1 2015-08-12 10:51:34 1 1 2015-08-12 12:06:34 1 1 2015-08-13 11:46:34 1 1 2015-08-13 15:06:34 1 1 2015-08-14 02:26:34 1 1 2015-08-14 10:01:34 1 1 2015-08-14 16:11:34 1 1 2015-08-15 12:41:34 1 1 2015-08-15 20:26:34 1 1 2015-08-15 22:06:34 1 1 2015-08-16 12:51:34 1 1 2015-08-16 18:26:34 1 1 2015-08-16 23:46:34 1 1 2015-08-17 11:21:34 1 1 2015-08-17 12:46:34 1 1 2015-08-17 17:11:34 1 1 2015-08-17 20:56:34 1 1 2015-08-18 00:06:34 1 1 2015-08-18 10:01:34 1 1 2015-08-18 12:51:34 1 1 2015-08-18 13:06:34 1 1 2015-08-18 13:21:34 1 1 2015-08-18 13:46:34 1 1 2015-08-18 14:01:34 1 1 2015-08-18 14:16:34 1 1 2015-08-18 14:31:34 1 1 2015-08-18 14:41:34 1 2 2015-08-18 14:46:34 1 1 2015-08-18 15:01:34 1 1 2015-08-18 15:06:34 1 1 2015-08-18 15:21:34 1 1 2015-08-18 15:31:34 1 1 2015-08-18 15:46:34 1 1 2015-08-18 16:01:34 1 2 2015-08-18 16:06:34 1 1 2015-08-18 16:21:34 1 1 2015-08-18 16:26:34 1 2 2015-08-18 16:31:34 1 1 2015-08-18 16:56:34 1 1 2015-08-18 17:11:34 1 1 2015-08-18 17:26:34 1 1 2015-08-18 17:46:34 1 1 2015-08-18 18:16:34 1 1 2015-08-18 18:26:34 1 2 2015-08-18 18:46:34 1 1 2015-08-18 19:01:34 1 1 2015-08-18 19:16:34 1 1 2015-08-18 19:31:34 1 1 2015-08-18 20:06:34 1 2 2015-08-18 20:21:34 1 2 2015-08-18 20:46:34 1 1 2015-08-18 21:01:34 1 1 2015-08-18 21:21:34 1 1 2015-08-18 21:31:34 1 1 2015-08-18 21:41:34 1 3 2015-08-18 21:51:34 1 2 2015-08-18 22:06:34 1 1 2015-08-18 22:11:34 1 2 2015-08-18 22:21:34 1 2 2015-08-18 22:36:34 1 1 2015-08-18 23:06:34 1 1 2015-08-18 23:16:34 1 1 2015-08-18 23:36:34 1 1 2015-08-18 23:46:34 1 1 2015-08-19 00:11:34 1 1 2015-08-19 11:11:34 1 1 2015-08-19 11:26:34 1 1 2015-08-19 12:16:34 1 1 2015-08-19 12:26:34 1 1 2015-08-19 17:41:34 1 1 2015-08-19 19:56:34 1 1 2015-08-19 20:21:34 1 1 2015-08-19 20:31:34 1 1 2015-08-19 21:21:34 1 1 2015-08-19 22:26:34 1 1 2015-08-20 10:06:34 1 1 2015-08-20 13:26:34 1 1 2015-08-20 13:36:34 1 1 2015-08-20 13:51:34 1 1 2015-08-20 14:06:34 1 1 2015-08-20 14:26:34 1 1 2015-08-20 14:51:34 1 1 2015-08-20 15:01:34 1 1 2015-08-20 18:21:34 1 1 2015-08-20 19:51:34 1 1 2015-08-20 21:06:34 1 1 2015-08-20 21:21:34 1 1 2015-08-20 21:36:34 1 2 2015-08-20 21:51:34 1 1 2015-08-21 04:26:34 1 1 2015-08-21 11:46:34 1 1 2015-08-21 12:01:34 1 1 2015-08-21 12:16:34 1 1 2015-08-21 12:31:34 1 1 2015-08-21 12:56:34 1 1 2015-08-21 13:11:34 1 1 2015-08-21 16:51:34 1 1 2015-08-21 19:51:34 1 1 2015-08-21 21:41:34 1 1 2015-08-22 00:36:34 1 1 2015-08-22 01:41:34 1 1 2015-08-22 05:46:34 1 1 2015-08-22 08:56:34 1 1 2015-08-22 09:11:34 1 1 2015-08-22 09:26:34 1 1 2015-08-22 12:16:34 1 1 2015-08-22 12:21:34 1 2 2015-08-22 12:46:34 1 1 2015-08-22 13:16:34 1 1 2015-08-22 15:31:34 1 2 2015-08-22 15:36:34 1 1 2015-08-22 15:51:34 1 1 2015-08-22 17:51:34 1 1 2015-08-22 18:21:34 1 1 2015-08-22 19:41:34 1 1 2015-08-22 19:51:34 1 1 2015-08-22 20:11:34 1 1 2015-08-22 20:26:34 1 1 2015-08-22 20:31:34 1 1 2015-08-22 20:41:34 1 1 2015-07-27 18:16:34 1 1 2015-07-27 19:26:34 1 1 2015-07-28 00:31:34 1 1 2015-07-28 12:46:34 1 1 2015-07-28 17:01:34 1 1 2015-07-28 18:51:34 1 1 2015-07-28 21:21:34 1 1 2015-07-29 00:56:34 1 1 2015-07-29 09:31:34 1 1 2015-07-29 15:36:34 1 1 2015-07-29 21:26:34 1 1 2015-07-29 22:01:34 1 1 2015-07-30 07:46:34 1 1 2015-07-30 09:11:34 1 1 2015-07-30 12:21:34 1 1 2015-07-31 12:56:34 1 1 2015-07-31 16:21:34 1 1 2015-08-01 13:51:34 1 1 2015-08-01 18:06:34 1 1 2015-08-01 19:16:34 1 1 2015-08-01 20:51:34 1 1 2015-08-01 22:26:34 1 1 2015-08-01 23:26:34 1 1 2015-08-02 11:21:34 1 1 2015-08-02 12:16:34 1 1 2015-08-02 17:56:34 1 1 2015-08-02 21:51:34 1 1 2015-08-02 22:56:34 1 1 2015-08-03 13:11:34 1 1 2015-08-03 13:51:34 1 1 2015-08-03 16:11:34 1 1 2015-08-03 19:01:34 1 1 2015-08-03 20:41:34 1 1 2015-08-03 23:16:34 1 1 2015-08-04 09:36:34 1 1 2015-08-04 11:46:34 1 1 2015-08-04 18:21:34 1 1 2015-08-04 19:16:34 1 1 2015-08-04 21:21:34 1 1 2015-08-05 14:36:34 1 1 2015-08-05 22:11:34 1 1 2015-08-05 22:51:34 1 1 2015-08-06 11:56:34 1 1 2015-08-06 18:11:34 1 1 2015-08-06 18:51:34 1 1 2015-08-07 01:26:34 1 1 2015-08-07 12:16:34 1 1 2015-08-07 17:56:34 1 1 2015-08-07 19:31:34 1 1 2015-08-08 11:51:34 1 1 2015-08-08 14:36:34 1 1 2015-08-08 22:56:34 1 1 2015-08-09 03:06:34 1 1 2015-08-09 12:01:34 1 1 2015-08-09 14:36:34 1 1 2015-08-09 16:36:34 1 1 2015-08-09 21:06:34 1 1 2015-08-10 12:46:34 1 1 2015-08-10 17:11:34 1 1 2015-08-10 18:06:34 1 1 2015-08-10 18:26:34 1 1 2015-08-11 20:06:34 1 1 2015-08-12 11:11:34 1 1 2015-08-12 13:36:34 1 1 2015-08-12 21:41:34 1 1 2015-08-13 03:41:34 1 1 2015-08-13 12:06:34 1 1 2015-08-13 16:06:34 1 1 2015-08-14 17:16:34 1 1 2015-08-14 20:21:34 1 1 2015-08-15 20:31:34 1 1 2015-08-16 15:36:34 1 1 2015-08-16 23:26:34 1 1 2015-08-17 11:26:34 1 1 2015-08-17 17:41:34 1 1 2015-08-17 18:31:34 1 1 2015-08-17 21:26:34 1 1 2015-08-18 12:46:34 1 1 2015-08-18 13:11:34 1 1 2015-08-18 13:26:34 1 1 2015-08-18 13:36:34 1 1 2015-08-18 13:51:34 1 1 2015-08-18 14:06:34 1 1 2015-08-18 14:21:34 1 1 2015-08-18 14:51:34 1 1 2015-08-18 15:11:34 1 1 2015-08-18 15:26:34 1 1 2015-08-18 15:36:34 1 1 2015-08-18 15:51:34 1 1 2015-08-18 16:11:34 1 1 2015-08-18 16:36:34 1 1 2015-08-18 16:41:34 1 2 2015-08-18 16:46:34 1 1 2015-08-18 17:01:34 1 1 2015-08-18 17:16:34 1 1 2015-08-18 17:31:34 1 1 2015-08-18 17:41:34 1 1 2015-08-18 17:51:34 1 1 2015-08-18 17:56:34 1 2 2015-08-18 18:01:34 1 1 2015-08-18 18:06:34 1 2 2015-08-18 18:11:34 1 1 2015-08-18 18:21:34 1 2 2015-08-18 18:36:34 1 2 2015-08-18 18:51:34 1 1 2015-08-18 19:06:34 1 1 2015-08-18 19:21:34 1 1 2015-08-18 19:41:34 1 1 2015-08-18 20:01:34 1 2 2015-08-18 20:16:34 1 2 2015-08-18 20:36:34 1 1 2015-08-18 20:51:34 1 1 2015-08-18 21:06:34 1 1 2015-08-18 21:36:34 1 1 2015-08-18 21:46:34 1 2 2015-08-18 22:41:34 1 1 2015-08-18 23:41:34 1 1 2015-08-18 23:51:34 1 1 2015-08-19 00:01:34 1 1 2015-08-19 00:16:34 1 1 2015-08-19 11:16:34 1 1 2015-08-19 11:31:34 1 1 2015-08-19 11:36:34 1 2 2015-08-19 11:41:34 1 1 2015-08-19 12:36:34 1 1 2015-08-19 13:51:34 1 1 2015-08-19 17:31:34 1 1 2015-08-19 18:31:34 1 1 2015-08-19 19:36:34 1 1 2015-08-19 20:11:34 1 1 2015-08-19 20:26:34 1 1 2015-08-19 21:26:34 1 1 2015-08-19 23:11:34 1 1 2015-08-20 01:41:34 1 1 2015-08-20 10:51:34 1 1 2015-08-20 13:16:34 1 1 2015-08-20 13:31:34 1 1 2015-08-20 13:46:34 1 1 2015-08-20 14:01:34 1 1 2015-08-20 14:11:34 1 1 2015-08-20 14:16:34 1 2 2015-08-20 14:21:34 1 1 2015-08-20 14:36:34 1 1 2015-08-20 14:46:34 1 1 2015-08-20 14:56:34 1 1 2015-08-20 16:46:34 1 1 2015-08-20 19:46:34 1 1 2015-08-20 20:26:34 1 1 2015-08-20 21:16:34 1 1 2015-08-20 21:46:34 1 1 2015-08-20 23:01:34 1 1 2015-08-21 00:31:34 1 1 2015-08-21 11:51:34 1 1 2015-08-21 12:06:34 1 1 2015-08-21 12:21:34 1 1 2015-08-21 12:36:34 1 1 2015-08-21 13:01:34 1 1 2015-08-21 13:16:34 1 1 2015-08-21 16:31:34 1 1 2015-08-21 16:56:34 1 1 2015-08-22 08:46:34 1 1 2015-08-22 09:01:34 1 1 2015-08-22 09:16:34 1 1 2015-08-22 09:31:34 1 1 2015-08-22 10:46:34 1 1 2015-08-22 11:26:34 1 1 2015-08-22 12:11:34 1 1 2015-08-22 12:31:34 1 2 2015-08-22 12:36:34 1 1 2015-08-22 13:01:34 1 2 2015-08-22 13:06:34 1 1 2015-08-22 13:21:34 1 1 2015-08-22 13:51:34 1 1 2015-08-22 15:41:34 1 1 2015-08-22 15:56:34 1 1 2015-08-22 16:06:34 1 1 2015-08-22 16:11:34 1 1 2015-08-22 17:31:34 1 1 2015-08-22 17:41:34 1 1 2015-08-22 17:56:34 1 1 2015-08-22 19:21:34 1 1 2015-08-22 19:31:34 1 1 2015-08-22 19:46:34 1 1 2015-08-22 19:56:34 1 1 2015-08-22 20:16:34 1 1 2015-07-28 00:41:34 1 1 2015-07-28 15:56:34 1 1 2015-07-28 19:26:34 1 1 2015-07-28 22:01:34 1 1 2015-07-29 12:21:34 1 1 2015-07-29 17:06:34 1 1 2015-07-29 21:21:34 1 1 2015-07-29 21:36:34 1 1 2015-07-29 22:06:34 1 1 2015-07-30 18:01:34 1 1 2015-07-31 00:51:34 1 1 2015-07-31 14:06:34 1 1 2015-07-31 14:51:34 1 1 2015-07-31 16:46:34 1 1 2015-07-31 17:41:34 1 1 2015-07-31 18:31:34 1 1 2015-08-01 14:31:34 1 1 2015-08-01 18:16:34 1 1 2015-08-01 20:46:34 1 1 2015-08-01 21:01:34 1 1 2015-08-01 22:11:34 1 1 2015-08-02 00:56:34 1 1 2015-08-03 13:16:34 1 1 2015-08-03 16:51:34 1 1 2015-08-03 21:26:34 1 1 2015-08-04 11:21:34 1 1 2015-08-04 14:21:34 1 1 2015-08-04 15:36:34 1 1 2015-08-04 21:36:34 1 1 2015-08-04 23:41:34 1 1 2015-08-05 00:31:34 1 1 2015-08-05 14:41:34 1 1 2015-08-06 01:11:34 1 1 2015-08-06 17:31:34 1 1 2015-08-06 19:31:34 1 1 2015-08-07 15:01:34 1 1 2015-08-08 00:21:34 1 1 2015-08-08 12:06:34 1 1 2015-08-08 22:31:34 1 1 2015-08-09 19:26:34 1 1 2015-08-09 20:46:34 1 1 2015-08-10 00:31:34 1 1 2015-08-10 17:41:34 1 1 2015-08-10 22:41:34 1 1 2015-08-12 18:56:34 1 1 2015-08-13 00:31:34 1 1 2015-08-13 18:21:34 1 1 2015-08-14 00:21:34 1 1 2015-08-14 18:31:34 1 1 2015-08-15 02:41:34 1 1 2015-08-16 23:36:34 1 1 2015-08-17 17:01:34 1 1 2015-08-17 18:56:34 1 1 2015-08-18 13:01:34 1 1 2015-08-18 13:16:34 1 1 2015-08-18 13:31:34 1 1 2015-08-18 13:41:34 1 1 2015-08-18 13:56:34 1 1 2015-08-18 14:11:34 1 1 2015-08-18 14:26:34 1 1 2015-08-18 14:36:34 1 3 2015-08-18 14:56:34 1 1 2015-08-18 15:16:34 1 1 2015-08-18 15:41:34 1 1 2015-08-18 15:56:34 1 1 2015-08-18 16:16:34 1 1 2015-08-18 16:51:34 1 1 2015-08-18 17:06:34 1 1 2015-08-18 17:21:34 1 1 2015-08-18 17:36:34 1 1 2015-08-18 18:31:34 1 2 2015-08-18 18:41:34 1 1 2015-08-18 18:56:34 1 1 2015-08-18 19:11:34 1 1 2015-08-18 19:26:34 1 1 2015-08-18 19:36:34 1 1 2015-08-18 19:46:34 1 1 2015-08-18 19:56:34 1 2 2015-08-18 20:11:34 1 2 2015-08-18 20:26:34 1 2 2015-08-18 20:31:34 1 1 2015-08-18 20:41:34 1 1 2015-08-18 20:56:34 1 1 2015-08-18 21:11:34 1 1 2015-08-18 21:16:34 1 1 2015-08-18 21:26:34 1 1 2015-08-18 21:56:34 1 2 2015-08-18 22:01:34 1 1 2015-08-18 22:16:34 1 2 2015-08-18 22:26:34 1 2 2015-08-18 22:31:34 1 1 2015-08-18 22:46:34 1 1 2015-08-18 23:01:34 1 2 2015-08-18 23:11:34 1 1 2015-08-18 23:31:34 1 1 2015-08-18 23:56:34 1 1 2015-08-19 00:06:34 1 1 2015-08-19 00:21:34 1 1 2015-08-19 11:21:34 1 1 2015-08-19 11:46:34 1 1 2015-08-19 11:51:34 1 2 2015-08-19 12:11:34 1 1 2015-08-19 12:21:34 1 1 2015-08-19 17:36:34 1 1 2015-08-19 19:51:34 1 1 2015-08-19 20:16:34 1 1 2015-08-19 23:21:34 1 1 2015-08-20 02:56:34 1 1 2015-08-20 11:51:34 1 1 2015-08-20 13:41:34 1 1 2015-08-20 13:56:34 1 1 2015-08-20 14:31:34 1 1 2015-08-20 14:41:34 1 1 2015-08-20 15:06:34 1 1 2015-08-20 19:26:34 1 1 2015-08-20 20:11:34 1 1 2015-08-20 21:11:34 1 1 2015-08-20 21:26:34 1 1 2015-08-20 21:31:34 1 2 2015-08-20 21:41:34 1 1 2015-08-20 23:26:34 1 1 2015-08-21 11:56:34 1 1 2015-08-21 12:11:34 1 1 2015-08-21 12:26:34 1 1 2015-08-21 12:41:34 1 1 2015-08-21 12:46:34 1 2 2015-08-21 12:51:34 1 1 2015-08-21 13:06:34 1 1 2015-08-21 13:21:34 1 1 2015-08-21 17:31:34 1 1 2015-08-21 21:31:34 1 1 2015-08-22 00:21:34 1 1 2015-08-22 08:51:34 1 1 2015-08-22 09:06:34 1 1 2015-08-22 09:21:34 1 1 2015-08-22 09:46:34 1 1 2015-08-22 10:56:34 1 1 2015-08-22 11:21:34 1 1 2015-08-22 12:26:34 1 2 2015-08-22 12:41:34 1 1 2015-08-22 12:51:34 1 1 2015-08-22 12:56:34 1 2 2015-08-22 13:11:34 1 1 2015-08-22 13:26:34 1 1 2015-08-22 15:46:34 1 1 2015-08-22 16:01:34 1 1 2015-08-22 17:36:34 1 1 2015-08-22 17:46:34 1 1 2015-08-22 19:26:34 1 1 2015-08-22 19:36:34 1 1 2015-08-22 20:06:34 1 1 2015-08-22 20:21:34 1 1 2015-08-22 20:36:34 1 1 2015-08-22 20:46:34 1 1 2015-08-22 20:51:34 1 2 2015-08-22 20:56:34 1 1 2015-08-22 21:01:34 1 1 2015-08-22 21:06:34 1 1 2015-08-22 21:11:34 1 1 2015-08-22 21:16:34 1 1 2015-08-22 21:21:34 1 1 2015-08-22 23:16:34 1 1 2015-08-22 23:51:34 1 1 2015-08-23 00:16:34 1 1 2015-08-23 00:21:34 1 1 2015-08-23 00:26:34 1 1 2015-08-23 00:31:34 1 1 2015-08-23 09:41:34 1 1 2015-08-23 09:46:34 1 1 2015-08-23 09:51:34 1 1 2015-08-23 09:56:34 1 1 2015-08-23 10:01:34 1 1 2015-08-23 10:06:34 1 1 2015-08-23 10:11:34 1 1 2015-08-23 10:16:34 1 1 2015-08-23 10:21:34 1 1 2015-08-23 10:26:34 1 1 2015-08-23 10:31:34 1 1 2015-08-23 10:36:34 1 1 2015-08-23 10:41:34 1 1 2015-08-23 10:46:34 1 2 2015-08-23 10:51:34 1 1 2015-08-23 10:56:34 1 1 2015-08-23 11:01:34 1 1 2015-08-23 11:06:34 1 1 2015-08-23 11:11:34 1 1 2015-08-23 11:26:34 1 1 2015-08-23 11:41:34 1 1 2015-08-23 11:56:34 1 1 2015-08-23 12:11:34 1 1 2015-08-23 13:01:34 1 1 2015-08-23 13:21:34 1 1 2015-08-23 13:31:34 1 1 2015-08-23 13:46:34 1 1 2015-08-23 14:01:34 1 1 2015-08-23 14:16:34 1 1 2015-08-23 14:51:34 1 1 2015-08-23 23:26:34 1 1 2015-08-23 23:46:34 1 1 2015-08-24 00:01:34 1 2 2015-08-24 00:06:34 1 1 2015-08-24 00:21:34 1 1 2015-08-24 00:36:34 1 1 2015-08-24 00:51:34 1 1 2015-08-24 01:06:34 1 1 2015-08-24 01:21:34 1 1 2015-08-24 01:31:34 1 1 2015-08-24 01:46:34 1 1 2015-08-24 06:36:34 1 1 2015-08-24 10:21:34 1 1 2015-08-24 12:31:34 1 1 2015-08-24 13:36:34 1 1 2015-08-24 14:41:34 1 1 2015-08-24 15:06:34 1 1 2015-08-24 16:36:34 1 1 2015-08-24 18:11:34 1 1 2015-08-24 20:06:34 1 1 2015-08-24 23:51:34 1 1 2015-08-24 23:56:34 1 1 2015-08-25 08:31:34 1 2 2015-08-25 08:51:34 1 2 2015-08-25 09:06:34 1 1 2015-08-25 11:36:34 1 1 2015-08-25 12:06:34 1 1 2015-08-25 12:21:34 1 1 2015-08-25 12:26:34 1 2 2015-08-25 12:31:34 1 1 2015-08-25 12:41:34 1 1 2015-08-25 12:56:34 1 1 2015-08-25 13:11:34 1 1 2015-08-25 13:26:34 1 1 2015-08-25 13:31:34 1 2 2015-08-25 13:36:34 1 1 2015-08-25 14:26:34 1 1 2015-08-25 14:36:34 1 1 2015-08-25 14:51:34 1 1 2015-08-25 14:56:34 1 1 2015-08-25 15:11:34 1 1 2015-08-25 15:21:34 1 1 2015-08-25 15:36:34 1 1 2015-08-25 15:51:34 1 1 2015-08-25 16:16:34 1 1 2015-08-25 16:31:34 1 1 2015-08-25 16:46:34 1 1 2015-08-25 17:01:34 1 1 2015-08-25 17:26:34 1 1 2015-08-25 17:41:34 1 1 2015-08-25 20:26:34 1 1 2015-08-25 22:01:34 1 1 2015-08-25 22:56:34 1 1 2015-08-26 07:56:34 1 1 2015-08-26 10:16:34 1 1 2015-08-26 13:06:34 1 1 2015-08-26 22:11:34 1 1 2015-08-27 01:51:34 1 1 2015-08-27 06:11:34 1 1 2015-08-27 10:16:34 1 1 2015-08-27 12:11:34 1 1 2015-08-27 14:26:34 1 1 2015-08-27 20:31:34 1 1 2015-08-27 22:11:34 1 1 2015-08-27 23:06:34 1 1 2015-08-28 00:46:34 1 1 2015-08-28 09:16:34 1 1 2015-08-28 16:06:34 1 1 2015-08-28 23:31:34 1 1 2015-08-29 12:11:34 1 1 2015-08-29 13:36:34 1 1 2015-08-29 21:46:34 1 1 2015-08-30 09:26:34 1 1 2015-08-30 12:26:34 1 1 2015-08-30 12:36:34 1 1 2015-08-30 13:46:34 1 1 2015-08-30 17:26:34 1 1 2015-08-30 17:31:34 1 1 2015-08-30 20:01:34 1 1 2015-08-30 21:46:34 1 1 2015-08-30 23:11:34 1 1 2015-08-31 10:51:34 1 1 2015-08-31 18:06:34 1 1 2015-08-31 19:46:34 1 1 2015-08-31 23:11:34 1 1 2015-09-01 00:31:34 1 1 2015-09-01 09:36:34 1 1 2015-09-01 13:11:34 1 1 2015-09-01 16:36:34 1 1 2015-09-01 19:11:34 1 1 2015-09-02 08:23:11 1 1 2015-09-02 19:43:11 1 1 2015-09-03 07:28:11 1 1 2015-09-03 11:18:11 1 1 2015-09-04 11:28:11 1 1 2015-09-04 12:28:11 1 1 2015-09-05 10:33:11 1 1 2015-09-05 13:13:11 1 1 2015-09-05 23:48:11 1 1 2015-09-06 01:18:11 1 1 2015-09-06 02:08:11 1 1 2015-09-06 05:58:11 1 1 2015-09-06 16:18:11 1 1 2015-09-06 18:38:11 1 1 2015-09-06 20:58:11 1 1 2015-09-06 22:03:11 1 1 2015-09-06 23:28:11 1 1 2015-09-07 11:18:11 1 1 2015-09-08 12:43:11 1 1 2015-09-08 19:08:11 1 1 2015-09-08 19:33:11 1 1 2015-09-09 09:58:11 1 1 2015-09-09 18:48:11 1 1 2015-09-10 00:33:11 1 1 2015-09-10 00:43:11 1 1 2015-09-10 01:38:11 1 1 2015-09-10 15:38:11 1 1 2015-09-10 19:13:11 1 1 2015-09-10 19:18:11 1 1 2015-09-10 19:38:11 1 1 2015-09-11 05:23:11 1 1 2015-09-11 13:18:11 1 1 2015-09-11 23:28:11 1 1 2015-09-11 23:43:11 1 1 2015-09-12 00:58:11 1 1 2015-09-12 15:48:11 1 1 2015-09-12 19:03:11 1 1 2015-09-12 23:48:11 1 1 2015-09-13 14:03:11 1 1 2015-09-13 16:03:11 1 1 2015-09-13 18:18:11 1 1 2015-09-14 08:33:11 1 1 2015-09-14 12:53:11 1 1 2015-09-14 18:23:11 1 1 2015-09-14 22:58:11 1 1 2015-09-15 01:03:11 1 1 2015-09-15 01:43:11 1 1 2015-09-15 04:08:11 1 1 2015-09-15 21:03:11 1 1 2015-09-15 23:28:11 1 1 2015-09-16 00:48:11 1 1 2015-09-16 02:23:11 1 1 2015-09-16 09:18:11 1 1 2015-09-16 22:03:11 1 1 2015-09-17 11:13:11 1 1 2015-09-17 17:48:11 1 1 2015-09-17 22:38:11 1 1 2015-09-18 09:23:11 1 1 2015-09-18 09:28:11 1 1 2015-09-18 14:18:11 1 1 2015-09-19 01:18:11 1 1 2015-09-19 14:23:11 1 1 2015-09-19 23:58:11 1 1 2015-09-20 00:13:11 1 1 2015-09-20 07:28:11 1 1 2015-09-20 19:28:11 1 1 2015-09-21 18:43:11 1 1 2015-09-22 09:38:11 1 1 2015-09-22 21:53:11 1 1 2015-09-23 07:48:11 1 1 2015-09-23 20:33:11 1 1 2015-09-24 08:08:11 1 1 2015-09-24 13:38:11 1 1 2015-09-24 14:08:11 1 1 2015-09-24 18:48:11 1 1 2015-09-24 19:33:11 1 1 2015-09-25 01:43:11 1 1 2015-09-25 04:48:11 1 1 2015-09-25 06:13:11 1 1 2015-09-25 20:38:11 1 1 2015-09-26 08:48:11 1 1 2015-09-27 10:53:11 1 1 2015-09-27 16:48:11 1 1 2015-08-23 11:16:34 1 1 2015-08-23 11:31:34 1 1 2015-08-23 11:46:34 1 1 2015-08-23 12:01:34 1 1 2015-08-23 12:16:34 1 1 2015-08-23 13:16:34 1 1 2015-08-23 13:26:34 1 1 2015-08-23 13:36:34 1 1 2015-08-23 13:51:34 1 1 2015-08-23 14:06:34 1 1 2015-08-23 14:41:34 1 1 2015-08-23 14:56:34 1 1 2015-08-23 19:16:34 1 1 2015-08-23 22:31:34 1 1 2015-08-23 23:31:34 1 1 2015-08-23 23:51:34 1 1 2015-08-24 00:11:34 1 1 2015-08-24 00:26:34 1 1 2015-08-24 00:41:34 1 1 2015-08-24 00:56:34 1 1 2015-08-24 01:11:34 1 1 2015-08-24 01:36:34 1 1 2015-08-24 03:11:34 1 1 2015-08-24 09:01:34 1 1 2015-08-24 10:16:34 1 1 2015-08-24 10:26:34 1 1 2015-08-24 12:11:34 1 1 2015-08-24 14:46:34 1 1 2015-08-24 14:56:34 1 1 2015-08-24 17:21:34 1 1 2015-08-24 18:51:34 1 1 2015-08-25 08:36:34 1 3 2015-08-25 08:46:34 1 2 2015-08-25 09:11:34 1 1 2015-08-25 11:56:34 1 1 2015-08-25 12:11:34 1 1 2015-08-25 12:46:34 1 1 2015-08-25 13:01:34 1 1 2015-08-25 13:16:34 1 1 2015-08-25 13:41:34 1 1 2015-08-25 13:51:34 1 1 2015-08-25 13:56:34 1 1 2015-08-25 14:01:34 1 2 2015-08-25 14:06:34 1 1 2015-08-25 14:16:34 1 1 2015-08-25 14:41:34 1 1 2015-08-25 15:01:34 1 1 2015-08-25 15:16:34 1 1 2015-08-25 15:26:34 1 1 2015-08-25 15:41:34 1 1 2015-08-25 15:56:34 1 1 2015-08-25 16:21:34 1 1 2015-08-25 16:36:34 1 1 2015-08-25 16:51:34 1 1 2015-08-25 17:06:34 1 1 2015-08-25 17:16:34 1 1 2015-08-25 17:31:34 1 1 2015-08-25 17:46:34 1 1 2015-08-25 20:11:34 1 1 2015-08-26 10:41:34 1 1 2015-08-26 18:11:34 1 1 2015-08-26 22:56:34 1 1 2015-08-27 09:41:34 1 1 2015-08-27 12:01:34 1 1 2015-08-27 12:16:34 1 1 2015-08-27 13:21:34 1 1 2015-08-27 20:26:34 1 1 2015-08-27 23:46:34 1 1 2015-08-28 00:41:34 1 1 2015-08-28 12:41:34 1 1 2015-08-28 13:46:34 1 1 2015-08-28 18:26:34 1 1 2015-08-29 17:01:34 1 1 2015-08-30 11:01:34 1 1 2015-08-30 13:06:34 1 1 2015-08-30 13:11:34 1 1 2015-08-30 14:56:34 1 1 2015-08-30 16:01:34 1 1 2015-08-30 16:36:34 1 1 2015-08-30 18:36:34 1 1 2015-08-30 21:26:34 1 1 2015-08-30 23:06:34 1 1 2015-08-31 00:11:34 1 1 2015-08-31 14:46:34 1 1 2015-08-31 15:56:34 1 1 2015-08-31 21:46:34 1 1 2015-08-31 22:36:34 1 1 2015-08-31 23:16:34 1 1 2015-09-01 13:21:34 1 1 2015-09-01 16:41:34 1 1 2015-09-01 20:21:34 1 1 2015-09-02 09:03:11 1 1 2015-09-02 11:58:11 1 1 2015-09-02 23:13:11 1 1 2015-09-03 00:18:11 1 1 2015-09-03 08:58:11 1 1 2015-09-03 14:18:11 1 1 2015-09-05 00:28:11 1 1 2015-09-05 11:38:11 1 1 2015-09-05 14:23:11 1 1 2015-09-05 23:53:11 1 1 2015-09-06 01:58:11 1 1 2015-09-06 11:53:11 1 1 2015-09-06 14:53:11 1 1 2015-09-06 17:23:11 1 1 2015-09-07 16:48:11 1 1 2015-09-08 13:48:11 1 1 2015-09-08 16:48:11 1 1 2015-09-08 23:53:11 1 1 2015-09-09 01:33:11 1 1 2015-09-09 11:03:11 1 1 2015-09-09 17:48:11 1 1 2015-09-10 19:33:11 1 1 2015-09-11 09:33:11 1 1 2015-09-11 15:03:11 1 1 2015-09-11 20:13:11 1 1 2015-09-11 20:43:11 1 1 2015-09-12 17:28:11 1 1 2015-09-12 20:53:11 1 1 2015-09-12 23:18:11 1 1 2015-09-13 15:43:11 1 1 2015-09-13 17:13:11 1 1 2015-09-14 12:18:11 1 1 2015-09-14 22:03:11 1 1 2015-09-15 23:08:11 1 1 2015-09-16 00:33:11 1 1 2015-09-16 01:08:11 1 1 2015-09-16 12:08:11 1 1 2015-09-16 20:03:11 1 1 2015-09-16 20:53:11 1 1 2015-09-16 22:28:11 1 1 2015-09-17 12:23:11 1 1 2015-09-17 16:23:11 1 1 2015-09-17 21:28:11 1 1 2015-09-18 14:48:11 1 1 2015-09-18 16:18:11 1 1 2015-09-18 19:03:11 1 1 2015-09-19 01:38:11 1 1 2015-09-19 18:13:11 1 1 2015-09-19 18:28:11 1 1 2015-09-20 00:08:11 1 1 2015-09-20 01:23:11 1 1 2015-09-20 08:43:11 1 1 2015-09-20 10:43:11 1 1 2015-09-20 11:48:11 1 1 2015-09-20 18:03:11 1 1 2015-09-20 19:38:11 1 1 2015-09-20 21:23:11 1 1 2015-09-21 21:53:11 1 1 2015-09-21 23:38:11 1 1 2015-09-22 16:13:11 1 1 2015-09-23 00:18:11 1 1 2015-09-24 11:43:11 1 1 2015-09-24 20:13:11 1 1 2015-09-24 21:53:11 1 1 2015-09-25 06:38:11 1 1 2015-09-25 15:38:11 1 1 2015-09-25 16:53:11 1 1 2015-09-25 21:23:11 1 1 2015-09-26 13:08:11 1 1 2015-09-26 18:43:11 1 1 2015-09-27 00:53:11 1 1 2015-09-27 16:43:11 1 1 2015-09-27 21:38:11 1 1 2015-09-27 22:13:11 1 1 2015-09-27 23:28:11 1 1 2015-09-28 09:58:11 1 1 2015-09-28 11:18:11 1 1 2015-09-28 14:33:11 1 1 2015-09-28 17:23:11 1 1 2015-09-28 19:23:11 1 1 2015-09-28 20:58:11 1 1 2015-09-28 21:18:11 1 1 2015-09-28 22:23:11 1 1 2015-09-29 15:58:11 1 1 2015-09-29 20:23:11 1 1 2015-09-30 02:58:11 1 1 2015-09-30 23:58:11 1 1 2015-10-01 02:43:11 1 1 2015-10-01 18:43:11 1 1 2015-10-03 00:08:11 1 1 2015-10-03 08:28:11 1 1 2015-10-03 13:53:11 1 1 2015-10-03 18:53:11 1 1 2015-10-04 01:08:11 1 1 2015-08-23 11:21:34 1 1 2015-08-23 11:36:34 1 1 2015-08-23 11:51:34 1 1 2015-08-23 12:06:34 1 1 2015-08-23 13:41:34 1 1 2015-08-23 13:56:34 1 1 2015-08-23 14:11:34 1 1 2015-08-23 18:21:34 1 1 2015-08-23 23:01:34 1 1 2015-08-23 23:56:34 1 1 2015-08-24 00:16:34 1 1 2015-08-24 00:31:34 1 1 2015-08-24 00:46:34 1 1 2015-08-24 01:01:34 1 1 2015-08-24 01:16:34 1 1 2015-08-24 01:26:34 1 1 2015-08-24 01:41:34 1 1 2015-08-24 10:31:34 1 1 2015-08-24 14:36:34 1 1 2015-08-24 14:51:34 1 1 2015-08-24 15:01:34 1 1 2015-08-24 16:46:34 1 1 2015-08-24 18:41:34 1 1 2015-08-24 18:56:34 1 1 2015-08-24 19:31:34 1 1 2015-08-24 21:36:34 1 1 2015-08-25 03:11:34 1 1 2015-08-25 03:21:34 1 1 2015-08-25 08:41:34 1 2 2015-08-25 08:56:34 1 2 2015-08-25 09:01:34 1 1 2015-08-25 09:16:34 1 1 2015-08-25 12:01:34 1 1 2015-08-25 12:16:34 1 1 2015-08-25 12:36:34 1 1 2015-08-25 12:51:34 1 1 2015-08-25 13:06:34 1 1 2015-08-25 13:21:34 1 1 2015-08-25 13:46:34 1 1 2015-08-25 14:11:34 1 1 2015-08-25 14:21:34 1 1 2015-08-25 14:31:34 1 1 2015-08-25 14:46:34 1 1 2015-08-25 15:06:34 1 1 2015-08-25 15:31:34 1 1 2015-08-25 15:46:34 1 1 2015-08-25 16:01:34 1 1 2015-08-25 16:06:34 1 2 2015-08-25 16:11:34 1 1 2015-08-25 16:26:34 1 1 2015-08-25 16:41:34 1 1 2015-08-25 16:56:34 1 1 2015-08-25 17:11:34 1 1 2015-08-25 17:21:34 1 1 2015-08-25 17:36:34 1 1 2015-08-25 18:16:34 1 1 2015-08-26 19:36:34 1 1 2015-08-26 22:26:34 1 1 2015-08-26 23:16:34 1 1 2015-08-26 23:41:34 1 1 2015-08-27 16:16:34 1 1 2015-08-27 20:21:34 1 1 2015-08-27 22:36:34 1 1 2015-08-27 23:26:34 1 1 2015-08-28 01:06:34 1 1 2015-08-28 13:41:34 1 1 2015-08-28 17:26:34 1 1 2015-08-28 21:36:34 1 1 2015-08-29 19:46:34 1 1 2015-08-30 12:21:34 1 1 2015-08-30 13:16:34 1 1 2015-08-30 17:36:34 1 1 2015-08-31 14:51:34 1 1 2015-08-31 15:01:34 1 1 2015-08-31 17:16:34 1 1 2015-08-31 21:16:34 1 1 2015-08-31 21:51:34 1 1 2015-08-31 23:21:34 1 1 2015-09-01 17:06:34 1 1 2015-09-01 21:51:34 1 1 2015-09-02 16:03:11 1 1 2015-09-02 22:28:11 1 1 2015-09-02 23:58:11 1 1 2015-09-03 02:03:11 1 1 2015-09-03 11:53:11 1 1 2015-09-03 13:18:11 1 1 2015-09-03 16:03:11 1 1 2015-09-03 19:38:11 1 1 2015-09-03 22:03:11 1 1 2015-09-04 01:38:11 1 1 2015-09-05 18:48:11 1 1 2015-09-06 02:03:11 1 1 2015-09-06 19:23:11 1 1 2015-09-06 19:33:11 1 1 2015-09-07 03:58:11 1 1 2015-09-09 11:43:11 1 1 2015-09-09 19:53:11 1 1 2015-09-11 11:38:11 1 1 2015-09-11 20:48:11 1 1 2015-09-11 23:23:11 1 1 2015-09-12 00:03:11 1 1 2015-09-14 12:48:11 1 1 2015-09-14 22:48:11 1 1 2015-09-15 01:28:11 1 1 2015-09-17 23:18:11 1 1 2015-09-18 02:13:11 1 1 2015-09-18 15:08:11 1 1 2015-09-18 21:38:11 1 1 2015-09-19 18:33:11 1 1 2015-09-19 18:53:11 1 1 2015-09-19 23:23:11 1 1 2015-09-20 11:08:11 1 1 2015-09-20 12:38:11 1 1 2015-09-22 00:18:11 1 1 2015-09-22 18:08:11 1 1 2015-09-23 01:23:11 1 1 2015-09-24 13:03:11 1 1 2015-09-24 18:43:11 1 1 2015-09-24 20:03:11 1 1 2015-09-26 01:18:11 1 1 2015-09-27 20:18:11 1 1 2015-09-27 21:48:11 1 1 2015-09-28 11:13:11 1 1 2015-09-28 21:38:11 1 1 2015-09-29 00:18:11 1 1 2015-09-30 00:43:11 1 1 2015-10-01 01:03:11 1 1 2015-10-03 14:03:11 1 1 2015-10-04 00:03:11 1 1 2015-10-04 09:23:11 1 1 2015-10-05 09:13:11 1 1 2015-10-05 16:38:11 1 1 2015-10-05 17:08:11 1 1 2015-10-05 17:33:11 1 1 2015-10-05 18:18:11 1 1 2015-10-05 18:38:11 1 1 2015-10-05 22:18:11 1 1 2015-10-05 23:33:11 1 1 2015-10-06 20:38:11 1 1 2015-10-06 20:43:11 1 1 2015-10-06 21:23:11 1 1 2015-10-06 22:28:11 1 1 2015-10-06 22:53:11 1 1 2015-10-06 23:23:11 1 1 2015-10-07 00:28:11 1 1 2015-10-07 12:23:11 1 1 2015-10-07 16:38:11 1 1 2015-10-07 17:58:11 1 1 2015-10-07 18:03:11 1 1 2015-10-07 18:33:11 1 1 2015-10-07 22:28:11 1 1 2015-10-07 22:43:11 1 1 2015-10-07 23:58:11 1 1 2015-10-08 14:28:11 1 1 2015-10-08 19:18:11 1 1 2015-10-09 18:23:11 1 1 2015-10-10 02:18:11 1 1 2015-10-10 13:03:11 1 1 2015-10-10 22:03:11 1 1 2015-10-10 23:53:11 1 1 2015-10-10 23:58:11 1 1 2015-10-11 11:03:11 1 1 2015-10-11 15:58:11 1 1 2015-10-11 18:38:11 1 1 2015-10-11 19:23:11 1 1 2015-10-11 23:43:11 1 1 2015-10-12 00:43:11 1 1 2015-10-12 10:38:11 1 1 2015-10-12 17:28:11 1 1 2015-10-12 17:38:11 1 1 2015-10-13 17:08:11 1 1 2015-10-13 22:38:11 1 1 2015-10-14 01:18:11 1 1 2015-10-14 19:33:11 1 1 2015-10-15 14:48:11 1 1 2015-10-15 15:18:11 1 1 2015-10-15 23:43:11 1 1 2015-10-16 04:48:11 1 1 2015-10-16 15:38:11 1 1 2015-10-17 09:13:11 1 1 2015-10-18 12:28:11 1 1 2015-10-18 22:48:11 1 1 2015-10-20 11:43:11 1 1 2015-10-20 14:08:11 1 1 2015-10-20 15:33:11 1 1 2015-10-20 19:23:11 1 1 2015-10-21 12:13:11 1 1 2015-10-21 14:18:11 1 1 2015-10-21 19:03:11 1 1 2015-10-21 20:53:11 1 1 2015-10-21 21:13:11 1 1 2015-10-21 22:33:11 1 1 2015-10-21 22:38:11 1 1 2015-10-22 00:23:11 1 1 2015-10-22 00:38:11 1 1 2015-10-22 00:43:11 1 1 2015-10-22 00:48:11 1 1 2015-10-22 00:53:11 1 1 2015-10-22 02:13:11 1 1 2015-10-22 12:38:11 1 1 2015-10-22 14:48:11 1 1 2015-10-22 15:08:11 1 1 2015-10-22 18:28:11 1 1 2015-10-22 20:23:11 1 1 2015-10-23 15:28:11 1 1 2015-10-23 18:08:11 1 1 2015-10-24 19:03:11 1 1 2015-10-24 21:23:11 1 1 2015-10-24 22:18:11 1 1 2015-10-25 14:08:11 1 1 2015-10-25 15:38:11 1 1 2015-10-25 17:08:11 1 1 2015-10-25 18:28:11 1 1 2015-10-25 19:48:11 1 1 2015-10-25 20:28:11 1 1 2015-10-25 21:58:11 1 1 2015-10-26 02:08:11 1 1 2015-10-26 08:43:11 1 1 2015-10-26 10:23:11 1 1 2015-10-26 13:33:11 1 1 2015-10-26 13:48:11 1 1 2015-10-26 14:23:11 1 1 2015-10-26 14:28:11 1 1 2015-10-26 18:33:11 1 1 2015-10-26 19:58:11 1 1 2015-10-26 21:53:11 1 1 2015-10-27 09:08:11 1 1 2015-10-27 13:48:11 1 1 2015-10-27 16:08:11 1 1 2015-10-27 20:18:11 1 1 2015-10-27 22:13:11 1 1 2015-10-28 10:48:11 1 1 2015-10-28 13:23:11 1 1 2015-10-28 15:03:11 1 1 2015-10-28 19:03:11 1 1 2015-10-28 19:23:11 1 1 2015-10-28 19:48:11 1 1 2015-10-28 19:58:11 1 1 2015-10-28 20:13:11 1 1 2015-10-28 23:03:11 1 1 2015-10-28 23:08:11 1 1 2015-10-29 00:08:11 1 1 2015-10-29 00:18:11 1 1 2015-10-29 00:23:11 1 1 2015-10-29 01:48:11 1 1 2015-10-29 03:28:11 1 1 2015-10-29 08:13:11 1 1 2015-10-29 12:28:11 1 1 2015-10-29 13:08:11 1 1 2015-10-29 13:13:11 1 1 2015-10-29 13:23:11 1 1 2015-10-29 13:43:11 1 1 2015-10-29 13:53:11 1 1 2015-10-29 13:58:11 1 1 2015-10-29 14:03:11 1 1 2015-10-29 14:43:11 1 1 2015-10-29 16:23:11 1 1 2015-10-29 18:58:11 1 1 2015-10-29 20:18:11 1 1 2015-10-29 21:23:11 1 1 2015-10-29 22:03:11 1 1 2015-10-29 22:13:11 1 1 2015-10-29 22:53:11 1 1 2015-10-29 23:33:11 1 1 2015-10-29 23:43:11 1 1 2015-10-30 09:08:11 1 1 2015-10-30 11:18:11 1 1 2015-10-30 13:43:11 1 1 2015-10-30 13:58:11 1 1 2015-10-30 14:18:11 1 1 2015-10-30 15:13:11 1 1 2015-10-30 18:43:11 1 1 2015-10-30 21:18:11 1 1 2015-10-30 21:23:11 1 1 2015-10-30 22:53:11 1 1 2015-10-31 07:48:11 1 1 2015-10-31 08:18:11 1 1 2015-10-31 10:18:11 1 1 2015-10-31 12:28:11 1 1 2015-10-31 13:33:11 1 1 2015-10-31 13:43:11 1 1 2015-10-31 16:03:11 1 1 2015-10-31 16:33:11 1 1 2015-10-31 16:43:11 1 1 2015-10-31 17:28:11 1 1 2015-10-31 18:23:11 1 1 2015-10-31 18:28:11 1 1 2015-10-31 18:58:11 1 1 2015-10-31 19:03:11 1 1 2015-10-31 19:43:11 1 1 2015-10-31 19:53:11 1 1 2015-10-31 20:03:11 1 1 2015-10-31 20:33:11 1 1 2015-10-31 22:03:11 1 1 2015-10-31 22:13:11 1 1 2015-10-31 22:28:11 1 1 2015-11-01 01:13:11 1 1 2015-11-01 01:18:11 1 1 2015-11-01 10:28:11 1 1 2015-11-01 18:13:11 1 1 2015-11-01 19:43:11 1 1 2015-11-01 21:33:11 1 1 2015-11-02 02:13:11 1 1 2015-11-02 02:18:11 1 1 2015-11-02 02:48:11 1 1 2015-11-02 11:13:11 1 1 2015-11-02 12:23:11 1 1 2015-11-02 13:23:11 1 1 2015-11-02 16:03:11 1 1 2015-11-02 16:08:11 1 1 2015-11-02 19:48:11 1 1 2015-11-03 00:43:11 1 1 2015-11-03 03:48:11 1 1 2015-11-03 09:03:11 1 1 2015-11-03 13:13:11 1 1 2015-11-03 16:03:11 1 1 2015-11-03 16:23:11 1 1 2015-11-03 16:58:11 1 1 2015-11-03 17:13:11 1 1 2015-11-03 17:38:11 1 1 2015-11-03 18:38:11 1 1 2015-11-03 19:43:11 1 1 2015-11-03 22:18:11 1 1 2015-11-04 01:08:11 1 1 2015-11-04 02:38:11 1 1 2015-11-04 11:03:11 1 1 2015-11-04 11:13:11 1 1 2015-11-04 14:48:11 1 1 2015-11-04 17:43:11 1 1 2015-11-04 18:13:11 1 1 2015-11-04 18:58:11 1 1 2015-11-04 20:58:11 1 1 2015-11-04 21:23:11 1 1 2015-11-04 22:08:11 1 1 2015-11-04 23:53:11 1 1 2015-11-05 01:08:11 1 1 2015-11-05 01:18:11 1 1 2015-11-05 11:08:11 1 1 2015-11-05 12:43:11 1 1 2015-11-05 12:48:11 1 1 2015-11-05 13:58:11 1 1 2015-11-05 17:33:11 1 1 2015-11-05 18:13:11 1 1 2015-11-05 18:58:11 1 1 2015-11-05 19:53:11 1 1 2015-11-05 19:58:11 1 1 2015-11-06 00:48:11 1 1 2015-11-06 00:58:11 1 1 2015-11-06 01:38:11 1 1 2015-11-06 10:53:11 1 1 2015-11-06 13:28:11 1 1 2015-11-06 13:38:11 1 1 2015-11-06 14:13:11 1 1 2015-11-06 18:03:11 1 1 2015-11-06 19:53:11 1 1 2015-11-06 20:28:11 1 1 2015-11-06 23:38:11 1 1 2015-11-07 00:53:11 1 1 2015-11-07 02:43:11 1 1 2015-11-07 09:48:11 1 1 2015-11-07 15:43:11 1 1 2015-11-07 16:33:11 1 1 2015-11-07 21:23:11 1 1 2015-11-08 00:23:11 1 1 2015-11-08 18:08:11 1 1 2015-11-08 23:58:11 1 1 2015-11-09 01:03:11 1 1 2015-11-09 11:48:11 1 1 2015-11-09 15:03:11 1 1 2015-11-09 19:43:11 1 1 2015-11-09 22:23:11 1 1 2015-11-10 01:18:11 1 1 2015-11-10 03:23:11 1 1 2015-11-10 11:43:11 1 1 2015-11-10 15:33:11 1 1 2015-11-10 15:58:11 1 1 2015-11-10 23:28:11 1 1 2015-11-11 09:18:11 1 1 2015-11-11 21:03:11 1 1 2015-11-11 23:33:11 1 1 2015-11-12 00:08:11 1 1 2015-11-12 00:43:11 1 1 2015-11-12 08:38:11 1 1 2015-11-12 13:18:11 1 1 2015-11-12 14:58:11 1 1 2015-11-12 18:53:11 1 1 2015-11-12 19:03:11 1 1 2015-11-12 20:03:11 1 1 2015-11-13 00:08:11 1 1 2015-11-13 03:18:11 1 1 2015-11-13 13:38:11 1 1 2015-11-13 17:38:11 1 1 2015-11-13 20:33:11 1 1 2015-11-14 00:13:11 1 1 2015-11-14 01:53:11 1 1 2015-11-14 12:23:11 1 1 2015-11-15 01:33:11 1 1 2015-11-15 12:53:11 1 1 2015-11-15 13:33:11 1 1 2015-11-15 16:38:11 1 1 2015-11-15 21:38:11 1 1 2015-11-15 22:08:11 1 1 2015-11-15 23:48:11 1 1 2015-11-15 23:53:11 1 1 2015-11-16 01:43:11 1 1 2015-11-16 14:43:11 1 1 2015-11-16 15:13:11 1 1 2015-11-17 05:58:11 1 1 2015-11-17 19:18:11 1 1 2015-11-17 23:23:11 1 1 2015-11-18 12:33:11 1 1 2015-11-18 19:28:11 1 1 2015-11-18 21:48:11 1 1 2015-11-18 22:03:11 1 1 2015-11-18 23:48:11 1 1 2015-11-19 11:03:11 1 1 2015-11-19 14:28:11 1 1 2015-11-19 16:23:11 1 1 2015-11-19 20:28:11 1 1 2015-11-20 00:58:11 1 1 2015-11-20 08:28:11 1 1 2015-11-20 15:08:11 1 1 2015-11-20 23:48:11 1 1 2015-11-21 00:43:11 1 1 2015-11-21 03:23:11 1 1 2015-11-21 09:58:11 1 1 2015-11-22 09:28:11 1 1 2015-11-22 11:28:11 1 1 2015-11-22 13:38:11 1 1 2015-11-23 09:23:11 1 1 2015-11-24 11:28:11 1 1 2015-11-24 23:23:11 1 1 2015-11-24 23:48:11 1 1 2015-11-25 12:08:11 1 1 2015-11-25 13:43:11 1 1 2015-11-25 16:08:11 1 1 2015-11-25 18:33:11 1 1 2015-11-25 22:43:11 1 1 2015-11-26 02:58:11 1 1 2015-11-26 11:43:11 1 1 2015-11-26 16:43:11 1 1 2015-11-26 18:53:11 1 1 2015-11-26 19:33:11 1 1 2015-11-26 20:43:11 1 1 2015-11-27 13:33:11 1 1 2015-11-27 13:48:11 1 1 2015-11-27 22:28:11 1 1 2015-11-28 14:03:11 1 1 2015-11-30 14:48:11 1 1 2015-12-01 11:43:11 1 1 2015-12-02 20:08:11 1 1 2015-12-02 21:43:11 1 1 2015-12-03 06:08:11 1 1 2015-12-03 14:03:11 1 1 2015-12-03 21:23:11 1 1 2015-12-03 22:23:11 1 1 2015-12-04 03:13:11 1 1 2015-12-04 03:33:11 1 1 2015-12-04 17:58:11 1 1 2015-12-04 20:13:11 1 1 2015-12-04 20:48:11 1 1 2015-12-04 22:03:11 1 1 2015-12-04 22:23:11 1 1 2015-12-04 22:43:11 1 1 2015-12-05 00:03:11 1 1 2015-12-05 09:23:11 1 1 2015-12-05 18:03:11 1 1 2015-12-05 19:13:11 1 1 2015-12-05 21:58:11 1 1 2015-12-06 07:53:11 1 1 2015-12-06 19:23:11 1 1 2015-12-06 19:48:11 1 1 2015-12-06 21:18:11 1 1 2015-12-06 22:08:11 1 1 2015-12-06 23:23:11 1 1 2015-12-07 13:43:11 1 1 2015-12-07 20:13:11 1 1 2015-12-07 20:43:11 1 1 2015-12-07 21:53:11 1 1 2015-12-07 22:58:11 1 1 2015-12-07 23:58:11 1 1 2015-12-08 10:28:11 1 1 2015-12-08 13:33:11 1 1 2015-12-08 17:43:11 1 1 2015-12-08 19:13:11 1 1 2015-12-09 01:13:11 1 1 2015-12-09 11:58:11 1 1 2015-12-10 00:08:11 1 1 2015-12-10 05:18:11 1 1 2015-12-10 11:13:11 1 1 2015-12-10 11:28:11 1 1 2015-12-10 16:58:11 1 1 2015-12-10 20:53:11 1 1 2015-12-10 20:58:11 1 1 2015-12-10 21:03:11 1 1 2015-12-10 22:48:11 1 1 2015-12-10 23:28:11 1 1 2015-12-11 01:13:11 1 1 2015-12-11 10:58:11 1 1 2015-12-11 15:43:11 1 1 2015-12-11 15:48:11 1 1 2015-12-11 16:08:11 1 1 2015-12-11 17:48:11 1 1 2015-12-11 19:18:11 1 1 2015-12-11 19:33:11 1 1 2015-12-11 21:48:11 1 1 2015-12-12 11:03:11 1 1 2015-12-12 18:18:11 1 1 2015-12-12 20:13:11 1 1 2015-12-12 22:28:11 1 1 2015-12-13 17:23:11 1 1 2015-12-13 18:18:11 1 1 2015-12-13 20:33:11 1 1 2015-12-14 02:23:11 1 1 2015-12-14 10:23:11 1 1 2015-12-14 12:03:11 1 1 2015-12-15 02:48:11 1 1 2015-12-15 10:28:11 1 1 2015-12-16 21:18:11 1 1 2015-12-17 01:33:11 1 1 2015-12-17 02:23:11 1 1 2015-12-17 03:48:11 1 1 2015-12-17 03:53:11 1 1 2015-12-17 07:13:11 1 1 2015-12-18 13:58:11 1 1 2015-12-18 18:33:11 1 1 2015-12-19 04:48:11 1 1 2015-12-19 22:53:11 1 1 2015-12-20 13:28:11 1 1 2015-12-20 14:33:11 1 1 2015-12-20 19:48:11 1 1 2015-12-20 21:18:11 1 1 2015-12-21 21:38:11 1 1 2015-12-22 02:43:11 1 1 2015-12-22 15:33:11 1 1 2015-12-22 20:58:11 1 1 2015-12-22 21:48:11 1 1 2015-12-22 21:53:11 1 1 2015-12-22 22:38:11 1 1 2015-12-23 02:48:11 1 1 2015-12-23 02:58:11 1 1 2015-12-23 05:03:11 1 1 2015-12-23 10:23:11 1 1 2015-12-23 12:48:11 1 1 2015-12-23 17:23:11 1 1 2015-12-23 17:28:11 1 1 2015-12-23 17:33:11 1 1 2015-12-23 21:48:11 1 1 2015-12-23 23:03:11 1 1 2015-12-24 02:18:11 1 1 2015-12-24 04:13:11 1 1 2015-12-24 15:38:11 1 1 2015-12-24 18:08:11 1 1 2015-12-24 22:33:11 1 1 2015-12-25 03:23:11 1 1 2015-11-10 02:48:11 1 1 2015-11-10 03:13:11 1 1 2015-11-10 13:18:11 1 1 2015-11-10 17:28:11 1 1 2015-11-10 19:13:11 1 1 2015-11-11 09:38:11 1 1 2015-11-11 10:53:11 1 1 2015-11-11 18:08:11 1 1 2015-11-11 20:48:11 1 1 2015-11-11 21:08:11 1 1 2015-11-12 02:28:11 1 1 2015-11-12 14:08:11 1 1 2015-11-12 16:03:11 1 1 2015-11-13 01:33:11 1 1 2015-11-13 14:13:11 1 1 2015-11-13 19:43:11 1 1 2015-11-13 20:53:11 1 1 2015-11-14 12:28:11 1 1 2015-11-15 16:03:11 1 1 2015-11-15 17:48:11 1 1 2015-11-15 21:48:11 1 1 2015-11-15 22:03:11 1 1 2015-11-16 03:28:11 1 1 2015-11-16 20:23:11 1 1 2015-11-17 18:53:11 1 1 2015-11-18 15:38:11 1 1 2015-11-18 20:03:11 1 1 2015-11-19 03:03:11 1 1 2015-11-19 12:13:11 1 1 2015-11-19 17:43:11 1 1 2015-11-19 23:03:11 1 1 2015-11-20 00:38:11 1 1 2015-11-20 03:53:11 1 1 2015-11-20 15:53:11 1 1 2015-11-20 18:53:11 1 1 2015-11-22 02:33:11 1 1 2015-11-22 10:58:11 1 1 2015-11-22 12:18:11 1 1 2015-11-23 02:58:11 1 1 2015-11-23 18:13:11 1 1 2015-11-23 18:18:11 1 1 2015-11-24 12:38:11 1 1 2015-11-24 21:48:11 1 1 2015-11-25 12:53:11 1 1 2015-11-25 15:28:11 1 1 2015-11-25 20:08:11 1 1 2015-11-25 22:23:11 1 1 2015-11-26 13:03:11 1 1 2015-11-27 17:13:11 1 1 2015-11-27 22:13:11 1 1 2015-12-01 17:53:11 1 1 2015-12-01 20:48:11 1 1 2015-12-01 22:13:11 1 1 2015-12-02 21:38:11 1 1 2015-12-03 01:43:11 1 1 2015-12-03 01:48:11 1 1 2015-12-03 13:03:11 1 1 2015-12-03 18:53:11 1 1 2015-12-03 21:08:11 1 1 2015-12-04 02:38:11 1 1 2015-12-04 03:18:11 1 1 2015-12-04 19:43:11 1 1 2015-12-05 18:53:11 1 1 2015-12-06 10:28:11 1 1 2015-12-06 21:23:11 1 1 2015-12-07 18:28:11 1 1 2015-12-07 20:53:11 1 1 2015-12-07 21:03:11 1 1 2015-12-07 21:28:11 1 1 2015-12-08 10:33:11 1 1 2015-12-08 18:33:11 1 1 2015-12-08 22:08:11 1 1 2015-12-09 17:53:11 1 1 2015-12-09 18:53:11 1 1 2015-12-09 21:03:11 1 1 2015-12-10 11:08:11 1 1 2015-12-10 15:58:11 1 1 2015-12-10 16:33:11 1 1 2015-12-10 16:38:11 1 1 2015-12-11 01:33:11 1 1 2015-12-11 15:33:11 1 1 2015-12-11 22:08:11 1 1 2015-12-12 14:48:11 1 1 2015-12-12 21:08:11 1 1 2015-12-12 23:13:11 1 1 2015-12-13 01:38:11 1 1 2015-12-13 22:28:11 1 1 2015-12-14 20:28:11 1 1 2015-12-15 03:23:11 1 1 2015-12-15 12:48:11 1 1 2015-12-15 17:23:11 1 1 2015-12-15 22:53:11 1 1 2015-12-16 01:33:11 1 1 2015-12-16 23:18:11 1 1 2015-12-16 23:48:11 1 1 2015-12-16 23:58:11 1 1 2015-12-17 23:33:11 1 1 2015-12-18 14:03:11 1 1 2015-12-19 02:33:11 1 1 2015-12-19 15:48:11 1 1 2015-12-19 22:33:11 1 1 2015-12-20 20:03:11 1 1 2015-12-20 23:18:11 1 1 2015-12-22 00:13:11 1 1 2015-12-22 19:53:11 1 1 2015-12-22 19:58:11 1 1 2015-12-22 20:53:11 1 1 2015-12-22 22:33:11 1 1 2015-12-22 23:43:11 1 1 2015-12-23 02:43:11 1 1 2015-12-23 14:03:11 1 1 2015-12-23 14:13:11 1 1 2015-12-23 17:43:11 1 1 2015-12-24 10:33:11 1 1 2015-12-24 13:13:11 1 1 2015-12-24 20:33:11 1 1 2015-12-24 22:43:11 1 1 2015-12-24 23:43:11 1 1 2015-12-25 01:18:11 1 1 2015-12-25 03:38:11 1 1 2015-12-25 09:33:11 1 1 2015-12-25 22:23:11 1 1 2015-12-25 22:28:11 1 1 2015-12-25 22:33:11 1 1 2015-12-27 00:58:11 1 1 2015-12-27 02:23:11 1 1 2015-12-27 02:38:11 1 1 2015-12-27 02:43:11 1 1 2015-12-27 12:33:11 1 1 2015-12-27 16:33:11 1 1 2015-12-27 19:23:11 1 1 2015-12-27 22:23:11 1 1 2015-12-28 02:53:11 1 1 2015-12-28 08:48:11 1 1 2015-12-28 20:28:11 1 1 2015-12-28 22:38:11 1 1 2015-12-29 01:48:11 1 1 2015-12-29 03:33:11 1 1 2015-12-29 12:18:11 1 1 2015-12-30 09:13:11 1 1 2015-12-30 14:43:11 1 1 2015-12-30 16:18:11 1 1 2015-12-30 19:38:11 1 1 2015-12-30 21:38:11 1 1 2015-12-30 21:48:11 1 1 2015-12-31 00:33:11 1 1 2015-12-31 00:58:11 1 1 2015-12-31 03:33:11 1 1 2015-12-31 03:48:11 1 1 2015-12-31 04:08:11 1 1 2015-12-31 04:23:11 1 1 2015-12-31 09:38:11 1 1 2016-01-01 01:18:11 1 1 2016-01-01 06:48:11 1 1 2016-01-01 06:53:11 1 1 2016-01-01 06:58:11 1 1 2016-01-01 11:53:11 1 1 2016-01-01 12:33:11 1 1 2016-01-02 00:13:11 1 1 2016-01-02 00:38:11 1 1 2016-01-02 02:53:11 1 1 2016-01-02 10:18:11 1 1 2016-01-02 14:18:11 1 1 2016-01-02 15:38:11 1 1 2016-01-02 17:13:11 1 1 2016-01-02 21:58:11 1 1 2016-01-02 22:18:11 1 1 2016-01-03 13:48:11 1 1 2016-01-04 18:08:11 1 1 2016-01-04 23:43:11 1 1 2016-01-05 21:23:11 1 1 2016-01-05 23:23:11 1 1 2016-01-05 23:28:11 1 1 2016-01-06 00:48:11 1 1 2016-01-06 16:03:11 1 1 2016-01-06 16:08:11 1 1 2016-01-06 17:53:11 1 1 2016-01-06 18:28:11 1 1 2016-01-06 22:58:11 1 1 2016-01-07 19:03:11 1 1 2016-01-08 12:18:11 1 1 2016-01-08 13:03:11 1 1 2016-01-08 15:03:11 1 1 2016-01-08 17:48:11 1 1 2016-01-08 19:58:11 1 1 2016-01-08 20:53:11 1 1 2016-01-09 17:53:11 1 1 2016-01-09 18:23:11 1 1 2016-01-09 18:28:11 1 1 2016-01-09 20:08:11 1 1 2016-01-10 04:23:11 1 1 2016-01-10 11:48:11 1 1 2016-01-10 22:08:11 1 1 2016-01-11 09:48:11 1 1 2016-01-12 13:43:11 1 1 2016-01-13 04:03:11 1 1 2016-01-14 04:38:11 1 1 2016-01-14 14:03:11 1 1 2016-01-14 14:48:11 1 1 2016-01-15 12:43:11 1 1 2016-01-16 18:08:11 1 1 2016-01-16 19:58:11 1 1 2016-01-17 00:03:11 1 1 2016-01-17 14:08:11 1 1 2016-01-17 18:53:11 1 1 2016-01-18 10:03:11 1 1 2016-01-18 18:33:11 1 1 2016-01-18 18:38:11 1 1 2016-01-19 12:58:11 1 1 2016-01-19 16:18:11 1 1 2016-01-19 16:23:11 1 1 2016-01-20 13:03:11 1 1 2016-01-20 21:48:11 1 1 2016-01-21 13:43:12 1 1 2016-01-21 14:03:11 1 1 2016-01-22 18:03:11 1 1 2016-01-22 20:28:11 1 1 2016-01-22 21:18:11 1 1 2016-01-23 01:13:11 1 1 2016-01-23 02:38:11 1 1 2016-01-23 14:08:11 1 1 2016-01-24 01:53:11 1 1 2016-01-24 04:03:11 1 1 2016-01-24 21:58:11 1 1 2016-01-24 22:28:11 1 1 2016-01-25 23:33:11 1 1 2016-01-26 13:28:11 1 1 2016-01-27 00:08:11 1 1 2016-01-27 00:28:11 1 1 2016-01-27 21:03:11 1 1 2016-01-28 02:23:11 1 1 2016-01-28 06:53:11 1 1 2016-01-29 04:28:11 1 1 2016-01-29 11:58:11 1 1 2016-01-29 14:03:11 1 1 2016-01-29 14:48:11 1 1 2016-01-29 17:33:11 1 1 2016-01-29 18:28:11 1 1 2016-01-30 01:48:11 1 1 2016-01-30 10:03:11 1 1 2016-01-30 15:43:11 1 1 2016-01-30 18:43:11 1 1 2016-01-31 12:33:11 1 1 2016-02-01 02:23:11 1 1 2016-02-01 09:28:11 1 1 2016-02-01 17:43:11 1 1 2016-02-02 10:23:11 1 1 2016-02-03 01:18:11 1 1 2016-02-03 11:48:11 1 1 2016-02-03 14:53:11 1 1 2016-02-03 15:08:11 1 1 2016-02-04 09:58:11 1 1 2016-02-04 18:48:11 1 1 2016-02-04 23:43:11 1 1 2016-02-05 01:23:11 1 1 2016-02-05 13:23:11 1 1 2016-02-05 17:33:11 1 1 2016-02-05 23:18:11 1 1 2016-02-06 15:23:11 1 1 2016-02-07 17:03:11 1 1 2016-02-07 21:18:11 1 1 2016-02-08 09:08:11 1 1 2016-02-08 18:58:11 1 1 2016-02-09 09:33:11 1 1 2016-02-09 19:08:11 1 1 2016-02-09 22:53:11 1 1 2016-02-10 13:48:11 1 1 2016-02-10 13:58:11 1 1 2016-02-10 19:58:11 1 1 2016-02-10 20:58:11 1 1 2016-02-10 22:03:11 1 1 2016-02-11 00:18:11 1 1 2016-02-11 20:53:11 1 1 2016-02-12 03:28:11 1 1 2016-02-12 03:38:11 1 1 2016-02-12 13:48:11 1 1 2016-02-12 15:18:11 1 1 2016-02-13 00:18:11 1 1 2016-02-13 12:58:11 1 1 2016-02-14 02:23:11 1 1 2016-02-14 02:28:11 1 1 2016-02-14 02:43:11 1 1 2016-02-14 02:53:11 1 1 2016-02-14 08:08:11 1 1 2016-02-14 12:28:11 1 1 2016-02-14 23:38:11 1 1 2016-02-15 15:08:11 1 1 2016-02-15 23:18:11 1 1 2016-02-16 12:23:11 1 1 2016-02-16 19:28:11 1 1 2016-02-17 00:18:11 1 1 2016-02-17 00:23:11 1 1 2016-02-17 18:13:11 1 1 2016-02-18 01:53:11 1 1 2016-02-18 02:58:11 1 1 2016-02-18 03:48:11 1 1 2016-02-18 08:43:11 1 1 2016-02-18 13:58:11 1 1 2016-02-18 21:08:11 1 1 2016-02-18 21:23:11 1 1 2016-02-19 00:18:11 1 1 2016-02-19 00:28:11 1 1 2016-02-19 02:03:11 1 1 2016-02-19 04:48:11 1 1 2016-02-19 09:18:11 1 1 2016-02-19 16:58:11 1 1 2016-02-19 17:13:11 1 1 2016-02-19 17:58:11 1 1 2016-02-20 17:03:11 1 1 2016-02-21 04:33:11 1 1 2016-02-21 09:48:11 1 1 2016-02-21 10:13:11 1 1 2016-02-21 10:23:11 1 1 2016-02-22 17:23:11 1 1 2016-02-23 02:08:11 1 1 2016-02-23 08:23:11 1 1 2016-02-23 16:03:11 1 1 2016-02-23 16:23:11 1 1 2016-02-24 03:18:11 1 1 2016-02-24 12:28:11 1 1 2016-02-24 12:33:11 1 1 2016-02-24 12:38:11 1 1 2016-02-24 14:53:11 1 1 2016-02-24 16:33:11 1 1 2016-02-24 16:43:11 1 1 2016-02-25 06:53:11 1 1 2016-02-25 08:13:11 1 1 2016-02-26 01:13:11 1 1 2016-02-26 02:53:11 1 1 2016-02-26 02:58:11 1 1 2016-02-26 04:28:11 1 1 2016-02-26 07:18:11 1 1 2016-02-26 09:18:11 1 1 2016-02-26 14:38:11 1 1 2016-02-27 08:28:11 1 1 2016-02-27 14:13:11 1 1 2016-02-29 12:53:11 1 1 2016-03-01 08:53:11 1 1 2016-03-01 19:33:11 1 1 2016-03-02 08:53:11 1 1 2016-03-02 09:33:11 1 1 2016-03-02 12:48:11 1 1 2016-03-02 14:18:11 1 1 2016-03-02 15:03:11 1 1 2016-03-03 03:18:11 1 1 2016-03-03 08:28:11 1 1 2016-03-03 09:38:11 1 1 2016-03-03 10:08:11 1 1 2016-03-03 14:28:11 1 1 2016-03-03 15:43:11 1 1 2016-03-04 07:58:11 1 1 2016-03-04 12:18:11 1 1 2016-03-04 15:23:11 1 1 2016-03-05 12:13:11 1 1 2016-03-06 07:48:11 1 1 2016-03-06 16:18:11 1 1 2016-03-07 07:18:11 1 1 2016-03-08 04:03:11 1 1 2016-03-08 14:28:11 1 1 2016-03-09 12:43:11 1 1 2016-03-09 14:13:11 1 1 2016-03-09 14:18:11 1 1 2016-03-10 03:13:11 1 1 2016-03-10 05:58:11 1 1 2016-03-10 06:23:11 1 1 2016-03-10 08:48:11 1 1 2016-03-10 16:03:11 1 1 2016-03-10 18:48:11 1 1 2016-03-11 02:08:11 1 1 2016-03-11 04:53:11 1 1 2016-01-09 00:48:11 1 1 2016-01-09 18:08:11 1 1 2016-01-10 20:23:11 1 1 2016-01-10 20:33:11 1 1 2016-01-11 00:18:11 1 1 2016-01-11 11:13:11 1 1 2016-01-12 18:18:11 1 1 2016-01-13 04:18:11 1 1 2016-01-14 05:03:11 1 1 2016-01-14 12:18:11 1 1 2016-01-15 02:43:11 1 1 2016-01-15 23:18:11 1 1 2016-01-16 00:58:11 1 1 2016-01-16 22:13:11 1 1 2016-01-17 01:08:11 1 1 2016-01-18 18:03:11 1 1 2016-01-19 15:43:11 1 1 2016-01-19 16:28:11 1 1 2016-01-20 19:18:11 1 1 2016-01-20 23:58:11 1 1 2016-01-22 02:38:11 1 1 2016-01-22 18:08:11 1 1 2016-01-23 02:18:11 1 1 2016-01-24 02:43:11 1 1 2016-01-24 09:43:11 1 1 2016-01-26 23:33:11 1 1 2016-01-27 22:58:11 1 1 2016-01-29 03:53:11 1 1 2016-01-29 04:43:11 1 1 2016-01-29 12:58:11 1 1 2016-01-30 00:18:11 1 1 2016-01-30 18:23:11 1 1 2016-01-31 15:58:11 1 1 2016-01-31 22:33:11 1 1 2016-02-01 15:23:11 1 1 2016-02-02 17:28:11 1 1 2016-02-03 18:48:11 1 1 2016-02-03 20:03:11 1 1 2016-02-04 01:13:11 1 1 2016-02-04 10:48:11 1 1 2016-02-05 19:23:11 1 1 2016-02-06 01:53:11 1 1 2016-02-06 15:28:11 1 1 2016-02-06 20:33:11 1 1 2016-02-08 01:48:11 1 1 2016-02-09 14:13:11 1 1 2016-02-09 15:58:11 1 1 2016-02-09 19:03:11 1 1 2016-02-10 01:23:11 1 1 2016-02-10 21:38:11 1 1 2016-02-12 03:08:11 1 1 2016-02-13 00:53:11 1 1 2016-02-13 13:08:11 1 1 2016-02-13 17:48:11 1 1 2016-02-13 23:28:11 1 1 2016-02-14 02:33:11 1 1 2016-02-14 15:58:11 1 1 2016-02-15 16:08:11 1 1 2016-02-15 18:03:11 1 1 2016-02-15 21:48:11 1 1 2016-02-15 23:23:11 1 1 2016-02-16 01:08:11 1 1 2016-02-16 19:38:11 1 1 2016-02-17 18:18:11 1 1 2016-02-18 03:43:11 1 1 2016-02-18 17:13:11 1 1 2016-02-18 17:43:11 1 1 2016-02-19 15:08:11 1 1 2016-02-19 21:48:11 1 1 2016-02-22 03:08:11 1 1 2016-02-22 20:18:11 1 1 2016-02-23 08:28:11 1 1 2016-02-24 13:03:11 1 1 2016-02-24 18:03:11 1 1 2016-02-24 18:28:11 1 1 2016-02-25 12:08:11 1 1 2016-02-25 15:53:11 1 1 2016-02-26 03:28:11 1 1 2016-02-26 03:38:11 1 1 2016-02-26 05:53:11 1 1 2016-02-26 05:58:11 1 1 2016-02-26 15:48:11 1 1 2016-03-01 15:13:11 1 1 2016-03-01 19:03:11 1 1 2016-03-01 20:18:11 1 1 2016-03-02 10:38:11 1 1 2016-03-02 14:53:11 1 1 2016-03-03 10:18:11 1 1 2016-03-03 16:03:11 1 1 2016-03-04 11:08:11 1 1 2016-03-06 10:03:11 1 1 2016-03-07 12:13:11 1 1 2016-03-08 17:28:11 1 1 2016-03-09 14:33:11 1 1 2016-03-09 15:03:11 1 1 2016-03-10 00:58:11 1 1 2016-03-10 01:13:11 1 1 2016-03-10 13:48:11 1 1 2016-03-10 16:28:11 1 1 2016-03-10 18:03:11 1 1 2016-03-11 06:53:11 1 1 2016-03-11 07:38:11 1 1 2016-03-11 07:48:11 1 1 2016-03-11 08:08:11 1 1 2016-03-11 12:18:11 1 1 2016-03-11 15:28:11 1 1 2016-03-11 17:38:11 1 1 2016-03-12 08:23:11 1 1 2016-03-12 15:23:11 1 1 2016-03-12 18:18:11 1 1 2016-03-12 22:13:11 1 1 2016-03-13 02:03:11 1 1 2016-03-13 02:58:11 1 1 2016-03-13 09:28:11 1 1 2016-03-13 10:53:11 1 1 2016-03-13 18:03:11 1 1 2016-03-13 18:33:11 1 1 2016-03-13 18:38:11 1 1 2016-03-13 18:58:11 1 1 2016-03-13 19:03:11 1 1 2016-03-14 00:38:11 1 1 2016-03-14 11:48:11 1 1 2016-03-14 15:23:11 1 1 2016-03-14 17:18:11 1 1 2016-03-15 01:18:11 1 1 2016-03-15 06:33:11 1 1 2016-03-15 12:18:11 1 1 2016-03-15 12:23:11 1 1 2016-03-15 13:08:11 1 1 2016-03-15 13:13:11 1 1 2016-03-15 14:18:11 1 1 2016-03-15 15:53:11 1 1 2016-03-16 00:38:11 1 1 2016-03-16 07:13:11 1 1 2016-03-16 08:13:11 1 1 2016-03-16 11:23:11 1 1 2016-03-16 12:28:11 1 1 2016-03-16 13:33:11 1 1 2016-03-16 13:43:11 1 1 2016-03-17 08:58:11 1 1 2016-03-17 11:58:11 1 1 2016-03-17 15:18:11 1 1 2016-03-17 17:03:11 1 1 2016-03-17 17:43:11 1 1 2016-03-18 02:18:11 1 1 2016-03-18 09:53:11 1 1 2016-03-18 11:28:11 1 1 2016-03-18 11:43:11 1 1 2016-03-18 17:58:11 1 1 2016-03-18 18:08:11 1 1 2016-03-19 01:53:11 1 1 2016-03-19 03:43:11 1 1 2016-03-19 05:08:11 1 1 2016-03-19 08:08:11 1 1 2016-03-19 10:13:11 1 1 2016-03-19 13:03:11 1 1 2016-03-19 13:58:11 1 1 2016-03-19 15:28:11 1 1 2016-03-20 12:08:11 1 1 2016-03-20 13:28:11 1 1 2016-03-20 13:38:11 1 1 2016-03-20 13:53:11 1 1 2016-03-20 20:48:11 1 1 2016-03-21 08:38:11 1 1 2016-03-21 13:53:11 1 1 2016-03-21 15:53:11 1 1 2016-03-23 06:33:11 1 1 2016-03-23 06:58:11 1 1 2016-03-23 07:18:11 1 1 2016-03-23 08:48:11 1 1 2016-03-23 10:33:11 1 1 2016-03-23 13:13:11 1 1 2016-03-23 16:58:11 1 1 2016-03-23 17:13:11 1 1 2016-03-24 03:53:11 1 1 2016-03-24 04:53:11 1 1 2016-03-24 12:33:11 1 1 2016-03-24 16:43:11 1 1 2016-03-25 14:23:11 1 1 2016-03-26 07:28:11 1 1 2016-03-26 09:43:11 1 1 2016-03-26 12:28:11 1 1 2016-03-27 00:58:11 1 1 2016-03-27 14:58:11 1 1 2016-03-27 15:03:11 1 1 2016-03-28 01:18:11 1 1 2016-03-28 08:23:11 1 1 2016-03-28 16:23:11 1 1 2016-03-29 01:48:11 1 1 2016-03-29 05:38:11 1 1 2016-03-29 05:43:11 1 1 2016-03-29 05:53:11 1 1 2016-03-29 09:28:11 1 1 2016-03-29 11:48:11 1 1 2016-03-29 12:28:11 1 1 2016-03-29 15:43:11 1 1 2016-03-30 06:18:11 1 1 2016-03-30 13:03:11 1 1 2016-03-30 13:18:11 1 1 2016-03-30 15:03:11 1 1 2016-03-30 15:18:11 1 1 2016-03-30 18:03:11 1 1 2016-03-31 08:28:11 1 1 2016-03-31 13:18:11 1 1 2016-03-31 13:28:11 1 1 2016-03-31 15:18:11 1 1 2016-03-31 15:43:11 1 1 2016-03-31 18:33:11 1 1 2016-04-01 04:08:11 1 1 2016-04-01 13:53:11 1 1 2016-04-01 14:58:11 1 1 2016-04-01 22:08:11 1 1 2016-04-02 10:33:11 1 1 2016-04-02 11:03:11 1 1 2016-04-02 11:23:11 1 1 2016-04-02 16:28:11 1 1 2016-04-02 18:58:11 1 1 2016-04-03 12:48:11 1 1 2016-04-03 14:43:11 1 1 2016-04-03 15:23:11 1 1 2016-04-03 17:33:11 1 1 2016-04-03 23:33:11 1 1 2016-04-04 09:03:11 1 1 2016-04-04 10:18:11 1 1 2016-04-04 14:43:11 1 1 2016-04-04 15:18:11 1 1 2016-04-04 16:23:11 1 1 2016-04-05 10:38:11 1 1 2016-04-05 10:43:11 1 1 2016-04-05 16:53:11 1 1 2016-04-06 10:08:11 1 1 2016-04-06 10:23:11 1 1 2016-04-06 15:58:11 1 1 2016-04-06 20:28:11 1 1 2016-04-07 09:28:11 1 1 2016-04-07 11:43:11 1 1 2016-04-08 03:13:11 1 1 2016-04-08 10:43:11 1 1 2016-04-08 14:53:11 1 1 2016-04-09 08:38:11 1 1 2016-04-09 13:38:11 1 1 2016-04-09 14:13:11 1 1 2016-04-09 18:08:11 1 1 2016-04-10 04:53:11 1 1 2016-04-10 06:58:11 1 1 2016-04-10 08:43:11 1 1 2016-04-10 13:08:11 1 1 2016-04-11 12:03:11 1 1 2016-04-11 13:28:11 1 1 2016-04-11 13:33:11 1 1 2016-04-11 14:23:11 1 1 2016-04-11 19:43:11 1 1 2016-04-12 01:23:11 1 1 2016-04-12 03:38:11 1 1 2016-04-12 07:28:11 1 1 2016-04-12 07:48:11 1 1 2016-04-12 10:58:11 1 1 2016-04-12 11:43:11 1 1 2016-04-12 17:58:11 1 1 2016-04-13 00:53:11 1 1 2016-04-14 04:43:11 1 1 2016-04-14 05:18:11 1 1 2016-04-14 05:23:11 1 1 2016-04-14 10:18:11 1 1 2016-04-14 11:48:11 1 1 2016-04-14 13:58:11 1 1 2016-04-14 14:03:11 1 1 2016-04-14 14:13:11 1 1 2016-04-14 14:18:11 1 1 2016-04-14 15:53:11 1 1 2016-04-14 16:03:11 1 1 2016-04-15 02:33:11 1 1 2016-04-15 06:03:11 1 1 2016-04-15 07:48:11 1 1 2016-04-15 11:13:11 1 1 2016-04-15 11:38:11 1 1 2016-04-15 13:53:11 1 1 2016-04-16 12:53:11 1 1 2016-04-16 14:43:11 1 1 2016-04-16 18:18:11 1 1 2016-04-16 22:28:11 1 1 2016-04-17 02:23:11 1 1 2016-04-17 03:38:11 1 1 2016-04-17 12:03:11 1 1 2016-04-17 13:08:11 1 1 2016-04-17 14:53:11 1 1 2016-04-17 15:03:11 1 1 2016-04-17 15:18:11 1 1 2016-04-17 16:38:11 1 1 2016-04-17 16:48:11 1 1 2016-04-17 18:43:11 1 1 2016-04-17 18:53:11 1 1 2016-04-18 01:08:11 1 1 2016-04-18 02:58:11 1 1 2016-04-18 07:08:11 1 1 2016-04-18 08:58:11 1 1 2016-04-18 09:03:11 1 1 2016-04-18 09:58:11 1 1 2016-04-18 12:43:11 1 1 2016-04-18 15:03:11 1 1 2016-04-18 16:38:11 1 1 2016-04-19 06:13:11 1 1 2016-04-19 10:38:11 1 1 2016-04-19 15:03:11 1 1 2016-04-19 17:53:11 1 1 2016-04-20 09:48:11 1 1 2016-04-20 11:53:11 1 1 2016-04-20 12:03:11 1 1 2016-04-20 14:43:11 1 1 2016-04-20 15:23:11 1 1 2016-04-22 02:18:11 1 1 2016-04-22 05:23:11 1 1 2016-04-22 08:28:11 1 1 2016-04-22 12:48:11 1 1 2016-04-22 14:58:11 1 1 2016-04-22 15:33:11 1 1 2016-04-23 10:58:11 1 1 2016-04-23 14:18:11 1 1 2016-04-23 15:13:11 1 1 2016-04-23 15:18:11 1 1 2016-04-24 01:53:11 1 1 2016-04-24 03:23:11 1 1 2016-04-24 08:28:11 1 1 2016-04-24 13:53:11 1 1 2016-04-25 07:23:11 1 1 2016-04-25 15:33:11 1 1 2016-04-26 09:43:11 1 1 2016-04-26 10:28:11 1 1 2016-04-26 15:28:11 1 1 2016-04-27 01:18:11 1 1 2016-04-27 13:48:11 1 1 2016-04-27 16:23:11 1 1 2016-04-28 06:33:11 1 1 2016-04-28 13:33:11 1 1 2016-04-28 14:48:11 1 1 2016-04-28 15:23:11 1 1 2016-04-28 18:23:11 1 1 2016-04-29 07:48:11 1 1 2016-04-29 10:23:11 1 1 2016-04-30 01:08:11 1 1 2016-04-30 11:58:11 1 1 2016-04-30 12:18:11 1 1 2016-04-30 13:53:11 1 1 2016-04-30 19:23:11 1 1 2016-05-01 00:23:11 1 1 2016-05-01 08:43:11 1 1 2016-05-01 09:08:11 1 1 2016-05-01 11:38:11 1 1 2016-05-01 14:43:11 1 1 2016-05-01 14:58:11 1 1 2016-05-01 15:28:11 1 1 2016-05-01 15:33:11 1 1 2016-05-02 08:33:11 1 1 2016-05-02 10:38:11 1 1 2016-05-02 14:48:11 1 1 2016-05-03 01:23:11 1 1 2016-05-03 07:13:11 1 1 2016-05-03 09:33:11 1 1 2016-05-03 09:53:11 1 1 2016-05-03 13:33:11 1 1 2016-05-03 17:28:11 1 1 2016-05-04 11:08:11 1 1 2016-05-05 03:58:11 1 1 2016-05-05 12:18:11 1 1 2016-05-06 05:58:11 1 1 2016-05-06 06:03:11 1 1 2016-05-06 07:03:11 1 1 2016-05-06 15:23:11 1 1 2016-05-07 03:33:11 1 1 2016-05-07 08:03:11 1 1 2016-05-07 13:08:11 1 1 2016-05-07 13:38:11 1 1 2016-05-08 00:08:11 1 1 2016-05-08 00:38:11 1 1 2016-05-08 04:03:11 1 1 2016-05-08 04:58:11 1 1 2016-05-08 13:28:11 1 1 2016-05-08 14:08:11 1 1 2016-05-08 14:53:11 1 1 2016-05-08 15:18:11 1 1 2016-05-09 00:48:11 1 1 2016-05-09 07:03:11 1 1 2016-05-09 08:18:11 1 1 2016-05-09 11:23:11 1 1 2016-05-09 11:33:11 1 1 2016-05-09 14:13:11 1 1 2016-05-09 18:03:11 1 1 2016-05-09 23:23:11 1 1 2016-05-10 07:13:11 1 1 2016-05-10 15:13:11 1 1 2016-05-11 01:03:11 1 1 2016-05-11 08:03:11 1 1 2016-05-11 12:23:11 1 1 2016-05-11 14:23:11 1 1 2016-05-11 17:43:11 1 1 2016-05-12 09:23:11 1 1 2016-05-12 15:23:11 1 1 2016-05-12 18:28:11 1 1 2016-05-12 21:33:11 1 1 2016-05-13 04:38:11 1 1 2016-05-13 05:43:11 1 1 2016-05-13 18:33:11 1 1 2016-05-14 05:43:11 1 1 2016-05-14 13:13:11 1 1 2016-05-15 05:08:11 1 1 2016-05-15 06:48:11 1 1 2016-05-15 10:58:11 1 1 2016-05-15 12:58:11 1 1 2016-05-15 15:53:11 1 1 2016-05-16 09:18:11 1 1 2016-05-17 14:08:11 1 1 2016-05-17 20:58:11 1 1 2016-05-18 00:58:11 1 1 2016-05-18 13:03:11 1 1 2016-05-19 07:08:11 1 1 2016-05-19 07:18:11 1 1 2016-05-19 07:23:11 1 1 2016-05-19 07:28:11 1 1 2016-05-19 07:33:11 1 1 2016-05-19 10:38:11 1 1 2016-05-19 15:38:11 1 1 2016-05-19 15:58:11 1 1 2016-05-19 16:38:11 1 1 2016-05-19 19:13:11 1 1 2016-05-20 08:23:11 1 1 2016-05-20 17:18:11 1 1 2016-05-20 17:23:11 1 1 2016-05-22 07:18:11 1 1 2016-05-22 11:33:11 1 1 2016-05-22 12:08:11 1 1 2016-05-22 14:03:11 1 1 2016-05-23 10:03:11 1 1 2016-05-23 13:08:11 1 1 2016-05-23 15:13:11 1 1 2016-05-23 21:18:11 1 1 2016-05-25 04:43:11 1 1 2016-05-25 17:43:11 1 1 2016-05-25 18:28:11 1 1 2016-05-26 04:33:11 1 1 2016-05-26 14:08:11 1 1 2016-05-26 15:03:11 1 1 2016-05-26 15:38:11 1 1 2016-05-26 21:28:11 1 1 2016-05-27 00:38:11 1 1 2016-05-27 01:03:11 1 1 2016-05-27 05:38:11 1 1 2016-05-27 05:43:11 1 1 2016-05-27 11:03:11 1 1 2016-05-27 13:33:11 1 1 2016-05-27 16:33:11 1 1 2016-05-27 21:13:11 1 1 2016-05-29 01:33:11 1 1 2016-05-29 03:03:11 1 1 2016-05-29 03:33:11 1 1 2016-05-29 03:53:11 1 1 2016-05-29 11:13:11 1 1 2016-05-29 13:18:11 1 1 2016-05-29 16:08:11 1 1 2016-05-30 10:38:11 1 1 2016-05-30 13:58:11 1 1 2016-05-30 15:23:11 1 1 2016-05-30 17:43:11 1 1 2016-05-30 22:38:11 1 1 2016-05-31 06:33:11 1 1 2016-05-31 15:28:11 1 1 2016-06-01 03:23:11 1 1 2016-06-01 05:23:11 1 1 2016-06-01 11:53:11 1 1 2016-06-02 10:58:11 1 1 2016-06-02 11:03:11 1 1 2016-06-02 13:18:11 1 1 2016-06-02 13:48:11 1 1 2016-06-03 04:53:11 1 1 2016-06-03 05:48:11 1 1 2016-06-03 06:18:11 1 1 2016-06-03 11:23:11 1 1 2016-06-04 07:13:11 1 1 2016-06-05 03:28:11 1 1 2016-06-05 06:18:11 1 1 2016-06-05 18:43:11 1 1 2016-06-05 18:58:11 1 1 2016-06-06 01:58:11 1 1 2016-06-06 09:08:11 1 1 2016-06-06 10:13:11 1 1 2016-06-06 11:08:11 1 1 2016-06-07 07:53:11 1 1 2016-06-08 05:23:11 1 1 2016-06-08 09:43:11 1 1 2016-06-08 09:53:11 1 1 2016-06-08 11:03:11 1 1 2016-06-08 13:03:11 1 1 2016-06-08 17:18:11 1 1 2016-06-09 04:03:11 1 1 2016-06-09 05:43:11 1 1 2016-06-09 07:58:11 1 1 2016-06-09 16:38:11 1 1 2016-06-09 19:38:11 1 1 2016-06-10 07:58:11 1 1 2016-06-10 12:08:11 1 1 2016-06-10 18:18:11 1 1 2016-06-11 07:53:11 1 1 2016-06-11 08:33:11 1 1 2016-06-11 10:38:11 1 1 2016-06-11 11:18:11 1 1 2016-06-11 12:13:11 1 1 2016-06-11 16:48:11 1 1 2016-06-12 07:58:11 1 1 2016-06-14 00:53:11 1 1 2016-06-14 02:28:11 1 1 2016-06-14 07:23:11 1 1 2016-06-14 07:53:11 1 1 2016-06-14 09:58:11 1 1 2016-06-14 13:58:11 1 1 2016-06-14 16:48:11 1 1 2016-06-14 17:33:11 1 1 2016-06-15 00:33:11 1 1 2016-06-15 00:38:11 1 1 2016-06-15 02:48:11 1 1 2016-06-15 07:13:11 1 1 2016-06-15 12:03:11 1 1 2016-06-15 14:23:11 1 1 2016-06-15 14:48:11 1 1 2016-06-15 23:38:11 1 1 2016-06-16 02:38:11 1 1 2016-06-16 03:48:11 1 1 2016-06-16 09:43:11 1 1 2016-06-16 14:48:11 1 1 2016-06-18 02:53:11 1 1 2016-06-18 03:03:11 1 1 2016-06-18 03:13:11 1 1 2016-06-18 07:48:11 1 1 2016-06-18 08:03:11 1 1 2016-06-19 04:03:11 1 1 2016-06-19 04:18:11 1 1 2016-06-19 04:23:11 1 1 2016-06-20 01:18:11 1 1 2016-06-20 07:48:11 1 1 2016-06-20 12:33:11 1 1 2016-06-21 05:43:11 1 1 2016-06-21 09:23:11 1 1 2016-06-21 10:23:11 1 1 2016-06-21 10:28:11 1 1 2016-06-21 12:13:11 1 1 2016-06-21 12:38:11 1 1 2016-06-21 13:33:11 1 1 2016-06-21 13:43:11 1 1 2016-06-21 14:38:11 1 1 2016-06-22 04:13:11 1 1 2016-06-22 06:58:11 1 1 2016-06-22 09:33:11 1 1 2016-06-22 11:13:11 1 1 2016-06-23 04:43:11 1 1 2016-06-23 06:08:11 1 1 2016-06-23 11:23:11 1 1 2016-06-23 15:13:11 1 1 2016-06-23 15:23:11 1 1 2016-06-23 16:43:11 1 1 2016-06-24 06:18:11 1 1 2016-06-25 03:58:11 1 1 2016-06-25 12:48:11 1 1 2016-06-26 04:03:11 1 1 2016-06-26 10:58:11 1 1 2016-06-27 02:23:11 1 1 2016-06-27 08:13:11 1 1 2016-06-27 16:03:11 1 1 2016-06-28 03:48:11 1 1 2016-06-28 04:38:11 1 1 2016-06-28 10:48:11 1 1 2016-06-28 12:58:11 1 1 2016-06-29 17:49:41 1 1 2016-06-30 13:29:41 1 1 2016-06-30 17:59:41 1 1 2016-07-01 10:29:41 1 1 2016-07-01 21:44:41 1 1 2016-07-03 00:39:41 1 1 2016-07-03 14:09:41 1 1 2016-07-04 01:44:41 1 1 2016-07-04 05:04:41 1 1 2016-07-04 13:59:41 1 1 2016-07-04 17:09:41 1 1 2016-07-05 00:39:41 1 1 2016-07-05 04:24:41 1 1 2016-07-05 13:29:41 1 1 2016-07-05 20:54:41 1 1 2016-07-06 12:24:41 1 1 2016-07-06 22:29:41 1 1 2016-07-07 12:14:41 1 1 2016-07-07 20:19:41 1 1 2016-07-07 22:09:41 1 1 2016-07-08 15:54:41 1 1 2016-07-09 08:39:41 1 1 2016-07-09 15:29:41 1 1 2016-07-10 13:44:41 1 1 2016-07-10 16:19:41 1 1 2016-07-11 08:44:41 1 1 2016-07-11 09:24:41 1 1 2016-07-11 16:34:41 1 1 2016-07-12 00:14:41 1 1 2016-07-12 07:14:41 1 1 2016-07-12 21:59:41 1 1 2016-07-13 16:54:41 1 1 2016-07-14 08:44:41 1 1 2016-07-14 19:19:41 1 1 2016-07-15 08:39:41 1 1 2016-07-15 18:19:41 1 1 2016-07-16 04:54:41 1 1 2016-07-16 09:49:41 1 1 2016-07-17 12:09:41 1 1 2016-07-17 21:04:41 1 1 2016-07-18 00:39:41 1 1 2016-07-18 09:04:41 1 1 2016-07-19 08:04:41 1 1 2016-07-19 10:09:41 1 1 2016-07-20 00:09:41 1 1 2016-07-20 09:39:41 1 1 2016-07-20 11:44:41 1 1 2016-07-20 13:14:41 1 1 2016-07-20 14:29:41 1 1 2016-07-21 00:49:41 1 1 2016-07-21 11:49:41 1 1 2016-07-21 16:39:41 1 1 2016-07-22 11:59:41 1 1 2016-07-23 11:29:41 1 1 2016-07-24 02:34:41 1 1 2016-07-24 08:09:41 1 1 2016-07-25 08:59:41 1 1 2016-07-25 19:24:41 1 1 2016-07-25 22:59:41 1 1 2016-07-25 23:04:41 1 1 2016-07-26 08:34:41 1 1 2016-07-26 20:29:41 1 1 2016-07-27 11:49:41 1 1 2016-07-27 12:24:41 1 1 2016-07-27 19:29:41 1 1 2016-07-28 09:44:41 1 1 2016-07-28 21:49:41 1 1 2016-07-29 14:14:41 1 1 2016-07-30 09:59:41 1 1 2016-07-30 15:09:41 1 1 2016-07-30 18:29:41 1 1 2016-07-30 21:49:41 1 1 2016-07-31 10:44:41 1 1 2016-07-31 12:44:41 1 1 2016-07-31 12:49:41 1 1 2016-07-31 16:29:41 1 1 2016-07-31 16:44:41 1 1 2016-07-31 20:19:41 1 1 2016-07-31 23:04:41 1 1 2016-08-01 14:09:41 1 1 2016-08-01 16:54:41 1 1 2016-08-01 17:29:41 1 1 2016-08-02 14:49:41 1 1 2016-08-02 17:59:41 1 1 2016-08-02 23:04:41 1 1 2016-08-03 12:19:41 1 1 2016-08-03 17:24:41 1 1 2016-08-04 14:44:41 1 1 2016-08-05 16:09:41 1 1 2016-08-05 17:29:41 1 1 2016-08-06 08:54:41 1 1 2016-08-06 14:54:41 1 1 2016-08-06 17:59:41 1 1 2016-08-07 00:19:41 1 1 2016-08-07 16:24:41 1 1 2016-08-08 17:14:41 1 1 2016-08-09 01:39:41 1 1 2016-08-09 10:09:41 1 1 2016-08-10 02:29:41 1 1 2016-08-10 20:59:41 1 1 2016-08-11 11:04:41 1 1 2016-08-12 15:04:41 1 1 2016-08-13 07:39:41 1 1 2016-08-13 20:34:41 1 1 2016-08-14 11:24:41 1 1 2016-08-15 12:09:41 1 1 2016-08-16 12:19:41 1 1 2016-08-16 15:09:41 1 1 2016-08-17 16:24:41 1 1 2016-08-17 23:24:41 1 1 2016-08-18 13:34:41 1 1 2016-08-20 09:44:41 1 1 2016-08-20 23:59:41 1 1 2016-08-21 10:09:41 1 1 2016-08-21 18:49:41 1 1 2016-08-22 18:04:41 1 1 2016-08-22 20:04:41 1 1 2016-08-23 06:24:41 1 1 2016-08-24 19:04:41 1 1 2016-08-25 12:04:41 1 1 2016-08-25 13:44:41 1 1 2016-08-25 17:19:41 1 1 2016-08-26 08:24:41 1 1 2016-08-26 11:24:41 1 1 2016-08-27 20:24:41 1 1 2016-08-28 13:59:41 1 1 2016-08-29 16:19:41 1 1 2016-08-30 02:34:41 1 1 2016-08-30 04:14:41 1 1 2016-08-31 11:39:41 1 1 2016-09-02 01:44:41 1 1 2016-09-02 13:44:41 1 1 2016-09-03 23:44:41 1 1 2016-09-05 17:44:41 1 1 2016-09-06 08:59:41 1 1 2016-09-06 10:34:41 1 1 2016-09-07 20:54:41 1 1 2016-09-08 13:19:41 1 1 2016-09-09 16:29:41 1 1 2016-09-10 15:24:41 1 1 2016-09-10 22:29:41 1 1 2016-09-11 12:39:41 1 1 2016-09-12 18:04:41 1 1 2016-09-13 21:39:41 1 1 2016-09-14 13:49:41 1 1 2016-09-14 14:19:41 1 1 2016-09-15 14:59:41 1 1 2016-09-17 17:39:41 1 1 2016-09-17 22:34:41 1 1 2016-09-18 23:04:41 1 1 2016-09-20 08:54:41 1 1 2016-09-20 15:04:41 1 1 2016-09-21 08:59:41 1 1 2016-09-22 12:49:41 1 1 2016-09-22 14:49:41 1 1 2016-09-23 18:59:41 1 1 2016-09-24 12:19:41 1 1 2016-09-25 06:39:41 1 1 2016-09-25 11:29:41 1 1 2016-09-26 12:14:41 1 1 2016-09-26 15:04:41 1 1 2016-09-27 11:24:41 1 1 2016-09-28 10:54:41 1 1 2016-09-29 14:14:41 1 1 2016-09-30 15:09:41 1 1 2016-10-01 08:04:41 1 1 2016-10-02 10:54:41 1 1 2016-10-03 20:19:41 1 1 2016-10-04 06:04:41 1 1 2016-10-05 09:24:41 1 1 2016-10-05 18:59:41 1 1 2016-06-23 16:23:11 1 1 2016-06-24 02:13:11 1 1 2016-06-24 06:23:11 1 1 2016-06-25 13:33:11 1 1 2016-06-27 11:58:11 1 1 2016-06-27 13:38:11 1 1 2016-06-27 16:08:11 1 1 2016-06-28 17:33:11 1 1 2016-06-29 03:03:11 1 1 2016-06-29 23:44:41 1 1 2016-06-30 21:29:41 1 1 2016-07-01 13:29:41 1 1 2016-07-01 17:09:41 1 1 2016-07-01 20:49:41 1 1 2016-07-01 22:44:41 1 1 2016-07-02 01:44:42 1 1 2016-07-02 02:19:41 1 1 2016-07-03 16:29:41 1 1 2016-07-04 06:04:41 1 1 2016-07-04 12:59:41 1 1 2016-07-05 09:04:41 1 1 2016-07-05 20:39:41 1 1 2016-07-06 20:34:41 1 1 2016-07-07 16:09:41 1 1 2016-07-08 18:24:41 1 1 2016-07-08 19:49:41 1 1 2016-07-08 22:49:41 1 1 2016-07-09 09:04:41 1 1 2016-07-09 21:09:41 1 1 2016-07-10 14:19:41 1 1 2016-07-10 15:19:41 1 1 2016-07-10 15:49:41 1 1 2016-07-11 09:04:41 1 1 2016-07-11 20:59:41 1 1 2016-07-12 15:19:41 1 1 2016-07-12 22:29:41 1 1 2016-07-13 18:44:41 1 1 2016-07-13 19:59:41 1 1 2016-07-14 09:54:41 1 1 2016-07-14 15:54:41 1 1 2016-07-14 20:49:41 1 1 2016-07-15 08:44:41 1 1 2016-07-15 17:54:41 1 1 2016-07-15 19:04:41 1 1 2016-07-16 09:29:41 1 1 2016-07-16 09:44:41 1 1 2016-07-18 01:04:41 1 1 2016-07-19 13:49:41 1 1 2016-07-19 17:54:41 1 1 2016-07-20 11:49:41 1 1 2016-07-20 14:04:41 1 1 2016-07-20 15:14:41 1 1 2016-07-21 13:34:41 1 1 2016-07-21 18:44:41 1 1 2016-07-22 14:44:41 1 1 2016-07-23 18:04:41 1 1 2016-07-24 10:44:41 1 1 2016-07-24 19:59:41 1 1 2016-07-25 00:19:41 1 1 2016-07-26 14:09:41 1 1 2016-07-27 12:09:41 1 1 2016-07-27 22:54:41 1 1 2016-07-28 11:14:41 1 1 2016-07-28 23:34:41 1 1 2016-07-29 17:59:41 1 1 2016-07-30 02:24:41 1 1 2016-07-30 19:14:41 1 1 2016-07-31 02:19:41 1 1 2016-07-31 13:29:41 1 1 2016-07-31 13:44:41 1 1 2016-07-31 18:34:41 1 1 2016-08-01 16:44:41 1 1 2016-08-01 22:04:41 1 1 2016-08-03 16:29:41 1 1 2016-08-04 14:59:41 1 1 2016-08-05 17:04:41 1 1 2016-08-06 11:49:41 1 1 2016-08-06 16:24:41 1 1 2016-08-08 23:09:41 1 1 2016-08-09 16:24:41 1 1 2016-08-12 18:49:41 1 1 2016-08-14 20:34:41 1 1 2016-08-15 12:14:41 1 1 2016-08-15 14:54:41 1 1 2016-08-16 21:44:41 1 1 2016-08-17 23:19:41 1 1 2016-08-17 23:29:41 1 1 2016-08-21 00:19:41 1 1 2016-08-21 14:54:41 1 1 2016-08-21 19:54:41 1 1 2016-08-22 18:14:41 1 1 2016-08-23 10:59:41 1 1 2016-08-24 19:34:41 1 1 2016-08-25 14:49:41 1 1 2016-08-28 02:44:41 1 1 2016-08-28 18:24:41 1 1 2016-08-29 21:14:41 1 1 2016-08-31 17:34:41 1 1 2016-09-02 02:54:41 1 1 2016-09-05 23:09:41 1 1 2016-09-06 10:09:41 1 1 2016-09-06 11:49:41 1 1 2016-09-07 22:44:41 1 1 2016-09-08 14:09:41 1 1 2016-09-10 23:39:41 1 1 2016-09-11 16:39:41 1 1 2016-09-11 22:54:41 1 1 2016-09-12 19:09:41 1 1 2016-09-14 14:24:41 1 1 2016-09-15 20:29:41 1 1 2016-09-18 23:19:41 1 1 2016-09-20 10:04:41 1 1 2016-09-20 15:39:41 1 1 2016-09-21 10:59:41 1 1 2016-09-22 13:29:41 1 1 2016-09-22 13:44:41 1 1 2016-09-22 14:59:41 1 1 2016-09-25 08:14:41 1 1 2016-09-26 13:09:41 1 1 2016-09-28 15:59:41 1 1 2016-10-01 10:14:41 1 1 2016-10-02 11:29:41 1 1 2016-10-05 11:54:41 1 1 2016-10-06 10:09:41 1 1 2016-10-06 20:54:41 1 1 2016-10-07 12:34:41 1 1 2016-10-08 10:49:41 1 1 2016-10-08 20:59:41 1 1 2016-10-09 06:34:41 1 1 2016-10-11 19:29:41 1 1 2016-10-12 08:59:41 1 1 2016-10-13 13:29:41 1 1 2016-10-14 15:14:41 1 1 2016-10-15 20:14:41 1 1 2016-10-16 17:19:41 1 1 2016-10-17 04:59:41 1 1 2016-10-17 10:29:41 1 1 2016-10-18 11:34:41 1 1 2016-10-20 07:54:41 1 1 2016-10-21 08:54:41 1 1 2016-10-22 10:14:41 1 1 2016-10-23 00:44:41 1 1 2016-10-23 03:39:41 1 1 2016-10-23 05:39:41 1 1 2016-10-23 11:14:41 1 1 2016-10-23 21:34:41 1 1 2016-10-23 21:54:41 1 1 2016-10-24 04:34:41 1 1 2016-10-24 18:04:41 1 1 2016-10-25 06:34:41 1 1 2016-10-26 00:19:41 1 1 2016-10-26 05:19:41 1 1 2016-10-27 04:19:41 1 1 2016-10-27 18:14:41 1 1 2016-10-27 19:29:41 1 1 2016-10-29 02:19:41 1 1 2016-10-29 04:39:41 1 1 2016-10-29 22:24:41 1 1 2016-10-30 07:39:41 1 1 2016-10-31 05:14:41 1 1 2016-11-01 18:59:41 1 1 2016-11-01 19:39:41 1 1 2016-11-01 20:09:41 1 1 2016-11-02 03:59:41 1 1 2016-11-02 11:14:41 1 1 2016-11-03 06:14:41 1 1 2016-11-04 00:49:41 1 1 2016-11-04 06:14:41 1 1 2016-11-04 13:39:41 1 1 2016-11-04 13:44:41 1 1 2016-11-05 05:54:41 1 1 2016-11-07 08:14:41 1 1 2016-11-08 20:29:41 1 1 2016-11-09 10:14:41 1 1 2016-11-09 11:34:41 1 1 2016-11-10 09:24:41 1 1 2016-11-11 09:44:41 1 1 2016-11-11 11:54:41 1 1 2016-11-11 21:14:41 1 1 2016-11-13 15:59:41 1 1 2016-11-15 01:04:41 1 1 2016-11-15 05:19:41 1 1 2016-11-17 00:44:41 1 1 2016-11-18 04:44:41 1 1 2016-11-18 07:54:41 1 1 2016-06-23 16:33:11 1 1 2016-06-29 01:43:11 1 1 2016-06-30 22:24:41 1 1 2016-07-01 19:44:41 1 1 2016-07-02 02:09:41 1 1 2016-07-03 16:49:41 1 1 2016-07-03 16:54:41 1 1 2016-07-04 19:39:41 1 1 2016-07-05 00:49:41 1 1 2016-07-05 21:19:41 1 1 2016-07-07 21:44:41 1 1 2016-07-08 00:09:41 1 1 2016-07-08 00:19:41 1 1 2016-07-08 03:09:41 1 1 2016-07-08 22:19:41 1 1 2016-07-09 02:19:41 1 1 2016-07-09 20:39:41 1 1 2016-07-11 19:44:41 1 1 2016-07-14 14:49:41 1 1 2016-07-15 01:04:41 1 1 2016-07-15 23:49:41 1 1 2016-07-16 09:34:41 1 1 2016-07-16 09:54:41 1 1 2016-07-19 14:34:41 1 1 2016-07-19 17:09:41 1 1 2016-07-20 12:59:41 1 1 2016-07-20 13:49:41 1 1 2016-07-21 17:44:41 1 1 2016-07-21 21:54:41 1 1 2016-07-22 00:44:41 1 1 2016-07-23 01:24:41 1 1 2016-07-23 01:29:41 1 1 2016-07-23 22:09:41 1 1 2016-07-24 02:14:41 1 1 2016-07-24 11:09:41 1 1 2016-07-24 17:29:41 1 1 2016-07-24 20:04:41 1 1 2016-07-25 02:49:41 1 1 2016-07-26 22:14:41 1 1 2016-07-29 03:39:41 1 1 2016-07-29 03:44:41 1 1 2016-07-30 23:09:41 1 1 2016-07-31 00:04:41 1 1 2016-07-31 02:24:41 1 1 2016-07-31 13:34:41 1 1 2016-07-31 16:49:41 1 1 2016-07-31 22:29:41 1 1 2016-07-31 23:09:41 1 1 2016-08-01 01:29:41 1 1 2016-08-03 20:09:41 1 1 2016-08-05 17:24:41 1 1 2016-08-08 23:24:41 1 1 2016-08-09 01:34:41 1 1 2016-08-14 22:59:41 1 1 2016-08-15 12:19:41 1 1 2016-08-15 14:14:41 1 1 2016-08-15 19:04:41 1 1 2016-08-16 00:49:41 1 1 2016-08-17 23:34:41 1 1 2016-08-24 20:19:41 1 1 2016-08-31 21:39:41 1 1 2016-09-11 21:54:41 1 1 2016-09-25 13:14:41 1 1 2016-09-26 15:09:41 1 1 2016-09-26 21:14:41 1 1 2016-09-28 19:49:41 1 1 2016-10-01 21:09:41 1 1 2016-10-02 00:24:41 1 1 2016-10-05 20:54:41 1 1 2016-10-07 14:14:41 1 1 2016-10-08 12:04:41 1 1 2016-10-09 08:49:41 1 1 2016-10-11 21:24:41 1 1 2016-10-12 12:39:41 1 1 2016-10-12 19:39:42 1 1 2016-10-13 13:59:41 1 1 2016-10-17 07:19:41 1 1 2016-10-17 17:29:41 1 1 2016-10-18 20:09:41 1 1 2016-10-20 20:19:41 1 1 2016-10-21 09:59:41 1 1 2016-10-22 19:19:41 1 1 2016-10-23 08:44:41 1 1 2016-10-23 08:59:41 1 1 2016-10-24 04:39:41 1 1 2016-10-26 05:59:41 1 1 2016-10-27 04:59:41 1 1 2016-10-29 09:24:41 1 1 2016-10-29 12:34:41 1 1 2016-11-01 00:54:41 1 1 2016-11-01 19:09:41 1 1 2016-11-03 10:24:41 1 1 2016-11-04 08:29:41 1 1 2016-11-05 06:44:41 1 1 2016-11-09 23:19:41 1 1 2016-11-10 14:49:41 1 1 2016-11-11 11:19:41 1 1 2016-11-15 18:14:41 1 1 2016-11-16 01:29:41 1 1 2016-11-18 07:19:41 1 1 2016-11-18 16:09:41 1 1 2016-11-18 16:14:41 1 1 2016-11-18 16:19:41 1 1 2016-11-18 16:29:41 1 1 2016-11-18 19:19:41 1 1 2016-11-18 19:39:41 1 1 2016-11-18 20:24:41 1 1 2016-11-18 23:34:41 1 1 2016-11-19 00:29:41 1 1 2016-11-19 02:49:41 1 1 2016-11-19 17:19:41 1 1 2016-11-19 20:54:41 1 1 2016-11-20 00:29:41 1 1 2016-11-21 10:09:41 1 1 2016-11-21 23:44:41 1 1 2016-11-22 08:49:41 1 1 2016-11-22 09:19:41 1 1 2016-11-22 10:34:41 1 1 2016-11-22 23:29:41 1 1 2016-11-23 20:34:41 1 1 2016-11-23 22:34:41 1 1 2016-11-23 23:29:41 1 1 2016-11-24 00:49:41 1 1 2016-11-24 05:04:41 1 1 2016-11-25 06:39:41 1 1 2016-11-26 06:19:41 1 1 2016-11-26 20:24:41 1 1 2016-11-27 21:19:42 1 1 2016-11-28 01:34:41 1 1 2016-11-28 23:49:41 1 1 2016-11-30 00:24:41 1 1 2016-11-30 22:54:41 1 1 2016-12-01 17:59:41 1 1 2016-12-01 19:44:41 1 1 2016-12-03 03:19:41 1 1 2016-12-03 13:44:41 1 1 2016-12-03 16:14:41 1 1 2016-12-03 17:49:41 1 1 2016-12-04 03:04:41 1 1 2016-12-04 03:14:41 1 1 2016-12-07 01:34:41 1 1 2016-12-08 03:49:41 1 1 2016-12-08 08:29:41 1 1 2016-12-08 12:44:41 1 1 2016-12-10 02:14:41 1 1 2016-12-10 02:19:41 1 1 2016-12-10 03:34:41 1 1 2016-12-10 14:44:41 1 1 2016-12-10 15:34:41 1 1 2016-12-11 01:39:41 1 1 2016-12-11 22:09:41 1 1 2016-12-12 19:04:41 1 1 2016-12-12 23:44:41 1 1 2016-12-13 00:39:41 1 1 2016-12-13 06:54:41 1 1 2016-12-13 23:34:41 1 1 2016-12-14 00:19:41 1 1 2016-12-14 16:14:41 1 1 2016-12-15 15:59:41 1 1 2016-12-15 23:29:41 1 1 2016-12-16 03:04:41 1 1 2016-12-16 10:39:41 1 1 2016-12-16 14:54:41 1 1 2016-12-17 00:24:41 1 1 2016-12-17 00:49:41 1 1 2016-12-17 05:34:41 1 1 2016-12-17 10:09:41 1 1 2016-12-17 16:34:41 1 1 2016-12-17 19:09:41 1 1 2016-12-19 12:24:41 1 1 2016-12-19 13:34:41 1 1 2016-12-20 15:09:41 1 1 2016-12-20 16:24:41 1 1 2016-12-20 16:59:41 1 1 2016-12-20 19:59:41 1 1 2016-12-21 10:14:41 1 1 2016-12-21 11:44:41 1 1 2016-12-21 12:29:41 1 1 2016-12-22 14:24:41 1 1 2016-12-23 16:54:41 1 1 2016-12-23 17:04:41 1 1 2016-12-24 08:04:41 1 1 2016-12-24 12:59:41 1 1 2016-12-24 13:54:41 1 1 2016-12-24 17:24:41 1 1 2016-12-26 09:39:41 1 1 2016-12-26 12:39:41 1 1 2016-12-26 12:44:41 1 1 2016-12-26 21:04:41 1 1 2016-12-27 13:39:41 1 1 2016-12-27 13:44:41 1 1 2016-12-27 19:59:41 1 1 2016-12-28 13:19:41 1 1 2016-12-28 18:14:41 1 1 2016-12-28 20:49:41 1 1 2016-12-30 05:09:41 1 1 2016-12-30 09:49:41 1 1 2016-12-30 11:34:41 1 1 2016-12-30 12:29:41 1 1 2016-12-30 17:19:41 1 1 2016-12-30 17:54:41 1 1 2016-12-30 23:34:41 1 1 2016-12-31 15:19:41 1 1 2016-12-31 16:44:41 1 1 2016-12-31 17:24:41 1 1 2017-01-02 00:24:41 1 1 2017-01-02 14:54:41 1 1 2017-01-02 14:59:41 1 1 2017-01-03 05:24:41 1 1 2017-01-03 06:39:41 1 1 2017-01-03 12:39:41 1 1 2017-01-03 17:49:41 1 1 2017-01-03 18:19:41 1 1 2017-01-03 20:04:41 1 1 2017-01-04 10:54:41 1 1 2017-01-04 19:29:41 1 1 2017-01-05 05:49:41 1 1 2017-01-06 02:34:41 1 1 2017-01-06 02:44:41 1 1 2017-01-06 13:24:41 1 1 2017-01-06 18:54:41 1 1 2017-01-07 09:19:41 1 1 2017-01-07 13:49:41 1 1 2017-01-08 08:19:41 1 1 2017-01-08 14:19:41 1 1 2017-01-08 19:19:41 1 1 2017-01-08 19:44:41 1 1 2017-01-09 07:39:41 1 1 2017-01-09 08:44:41 1 1 2017-01-09 08:49:41 1 1 2017-01-09 09:49:41 1 1 2017-01-10 09:44:41 1 1 2017-01-11 06:49:41 1 1 2017-01-11 12:29:41 1 1 2017-01-12 00:19:41 1 1 2017-01-12 05:09:41 1 1 2017-01-12 12:09:41 1 1 2017-01-12 16:44:41 1 1 2017-01-12 18:24:41 1 1 2017-01-12 18:49:41 1 1 2017-01-12 18:54:41 1 1 2017-01-13 04:39:41 1 1 2017-01-14 15:29:41 1 1 2017-01-14 15:34:41 1 1 2017-01-14 18:59:41 1 1 2017-01-15 14:54:41 1 1 2017-01-15 20:49:41 1 1 2017-01-16 10:19:41 1 1 2017-01-16 11:09:41 1 1 2017-01-16 17:09:41 1 1 2017-01-16 17:29:41 1 1 2017-01-16 17:49:41 1 1 2017-01-16 18:09:41 1 1 2017-01-17 06:09:41 1 1 2017-01-17 13:09:41 1 1 2017-01-18 17:04:41 1 1 2017-01-19 11:09:41 1 1 2017-01-19 17:59:41 1 1 2017-01-20 10:09:41 1 1 2017-01-20 13:44:41 1 1 2017-01-20 17:54:41 1 1 2017-01-21 11:29:41 1 1 2017-01-21 16:14:41 1 1 2017-01-21 21:24:41 1 1 2017-01-22 17:14:41 1 1 2017-01-22 18:09:41 1 1 2017-01-22 18:14:41 1 1 2017-01-23 19:19:41 1 1 2017-01-24 06:54:41 1 1 2017-01-24 09:09:41 1 1 2017-01-26 11:19:41 1 1 2017-01-26 19:49:41 1 1 2017-01-26 22:39:41 1 1 2017-02-01 11:04:22 1 1 2017-02-02 03:49:22 1 1 2017-02-02 08:59:22 1 1 2017-02-04 09:04:22 1 1 2017-02-04 14:14:22 1 1 2017-02-04 16:59:22 1 1 2017-02-06 11:34:22 1 1 2017-02-06 17:39:22 1 1 2017-02-06 20:19:22 1 1 2017-02-06 21:24:22 1 1 2017-02-06 22:54:22 1 1 2017-02-07 05:44:22 1 1 2017-02-07 10:19:22 1 1 2017-02-07 16:34:22 1 1 2017-02-07 23:14:22 1 1 2017-02-08 22:04:22 1 1 2017-02-10 00:59:22 1 1 2017-02-10 11:54:22 1 1 2017-02-11 02:09:22 1 1 2017-02-11 14:44:22 1 1 2017-02-12 17:04:22 1 1 2017-02-13 13:59:22 1 1 2017-02-17 18:39:22 1 1 2017-02-18 14:49:22 1 1 2017-02-19 18:14:22 1 1 2017-02-22 11:19:22 1 1 2017-02-23 12:39:22 1 1 2017-02-24 20:59:22 1 1 2017-02-25 19:09:22 1 1 2017-02-26 17:44:22 1 1 2017-02-27 10:59:22 1 1 2017-02-28 19:24:22 1 1 2017-03-02 23:49:22 1 1 2017-03-03 16:34:22 1 1 2017-03-05 03:04:22 1 1 2017-03-05 03:09:22 1 1 2017-03-05 16:59:22 1 1 2017-03-08 18:59:22 1 1 2017-03-09 12:49:22 1 1 2017-03-09 17:29:22 1 1 2017-03-09 21:14:22 1 1 2017-03-10 16:29:22 1 1 2017-03-12 17:04:22 1 1 2017-03-12 22:39:22 1 1 2017-03-12 23:49:22 1 1 2017-03-13 19:59:22 1 1 2017-03-13 23:29:22 1 1 2017-03-14 09:44:22 1 1 2017-03-14 21:14:22 1 1 2017-03-14 21:54:22 1 1 2017-03-14 23:19:22 1 1 2017-03-15 14:34:22 1 1 2017-03-17 17:54:22 1 1 2017-03-17 20:49:22 1 1 2017-03-17 21:39:22 1 1 2017-03-17 23:19:22 1 1 2017-03-18 14:09:22 1 1 2017-03-18 16:49:22 1 1 2017-03-19 02:19:22 1 1 2017-03-20 09:19:22 1 1 2017-03-21 19:39:22 1 1 2017-03-22 21:09:22 1 1 2017-03-22 23:24:22 1 1 2017-03-24 04:54:22 1 1 2017-03-24 22:19:22 1 1 2017-03-25 05:49:22 1 1 2017-03-26 15:24:22 1 1 2017-03-27 05:39:22 1 1 2017-03-27 10:34:22 1 1 2017-03-28 22:59:23 1 1 2017-03-29 14:09:23 1 1 2017-03-30 15:34:23 1 1 2017-03-31 21:54:23 1 1 2017-03-31 21:59:23 1 1 2017-04-01 09:34:23 1 1 2017-04-02 12:49:23 1 1 2017-04-02 16:09:23 1 1 2017-04-03 19:49:23 1 1 2017-04-03 22:49:23 1 1 2017-04-03 23:24:23 1 1 2017-04-04 11:54:23 1 1 2017-04-05 19:09:23 1 1 2017-04-07 01:39:23 1 1 2017-04-07 12:44:23 1 1 2017-04-07 13:24:23 1 1 2017-04-07 14:14:23 1 1 2017-04-08 22:39:23 1 1 2017-04-09 17:24:23 1 1 2017-04-09 17:39:23 1 1 2017-04-09 21:44:23 1 1 2017-04-11 05:09:23 1 1 2017-04-11 05:14:23 1 1 2017-04-12 19:04:23 1 1 2017-04-14 18:44:23 1 1 2017-04-14 19:29:23 1 1 2017-04-15 18:29:23 1 1 2017-04-15 20:04:23 1 1 2017-04-16 18:09:23 1 1 2017-04-16 21:14:23 1 1 2017-04-17 09:54:23 1 1 2017-04-18 17:49:23 1 1 2017-04-18 17:59:23 1 1 2017-04-18 22:29:23 1 1 2017-04-19 01:49:23 1 1 2017-04-19 01:54:23 1 1 2017-04-19 12:49:23 1 1 2017-04-20 11:24:23 1 1 2017-04-20 14:44:23 1 1 2017-04-20 16:19:23 1 1 2017-04-20 19:19:23 1 1 2017-04-21 15:39:23 1 1 2017-04-22 05:04:23 1 1 2017-04-22 06:04:23 1 1 2017-04-22 10:34:23 1 1 2017-04-24 07:49:23 1 1 2017-04-24 15:49:23 1 1 2017-04-24 15:54:23 1 1 2017-04-25 09:19:23 1 1 2017-04-25 10:19:23 1 1 2017-04-25 11:24:23 1 1 2017-04-25 11:59:23 1 1 2017-04-25 12:04:23 1 1 2017-04-25 19:09:23 1 1 2017-04-26 15:19:23 1 1 2017-04-27 05:34:23 1 1 2017-04-27 13:49:23 1 1 2017-04-28 16:44:23 1 1 2017-04-29 14:29:23 1 1 2017-04-29 20:19:23 1 1 2017-05-01 15:05:38 1 1 2017-05-01 21:20:38 1 1 2017-05-01 22:25:38 1 1 2017-05-01 22:35:38 1 1 2017-05-01 23:00:38 1 1 2017-05-01 23:20:38 1 1 2017-05-02 23:20:38 1 1 2017-05-02 23:25:38 1 1 2017-05-02 23:50:38 1 1 2017-05-03 23:20:38 1 1 2017-05-04 19:55:38 1 1 2017-05-04 22:35:38 1 1 2017-05-05 00:00:38 1 1 2017-05-05 12:35:38 1 1 2017-05-05 16:45:38 1 1 2017-05-05 23:30:38 1 1 2017-05-06 21:10:38 1 1 2017-05-07 12:45:38 1 1 2017-05-07 21:00:38 1 1 2017-05-07 22:20:38 1 1 2017-05-08 00:15:38 1 1 2017-05-08 00:30:38 1 1 2017-05-08 21:40:38 1 1 2017-05-09 01:45:38 1 1 2017-05-09 11:45:38 1 1 2017-05-09 13:40:38 1 1 2017-05-09 15:20:38 1 1 2017-05-09 19:30:38 1 1 2017-05-09 22:50:38 1 1 2017-05-09 23:20:38 1 1 2017-05-10 21:20:38 1 1 2017-05-10 22:45:38 1 1 2017-05-11 22:10:38 1 1 2017-05-12 00:00:38 1 1 2017-05-12 01:10:38 1 1 2017-05-12 09:10:38 1 1 2017-05-12 11:00:38 1 1 2017-05-12 22:30:38 1 1 2017-05-13 00:30:38 1 1 2017-05-13 18:55:38 1 1 2017-05-15 21:55:38 1 1 2017-05-15 23:45:38 1 1 2017-05-16 19:10:38 1 1 2017-05-17 00:15:38 1 1 2017-05-18 00:30:38 1 1 2017-05-19 01:15:38 1 1 2017-05-19 14:00:38 1 1 2017-05-20 05:55:38 1 1 2017-05-20 17:10:38 1 1 2017-05-20 18:45:38 1 1 2017-05-20 23:10:38 1 1 2017-05-21 07:35:38 1 1 2017-05-21 10:35:38 1 1 2017-05-21 12:40:38 1 1 2017-05-22 19:25:38 1 1 2017-05-22 20:25:38 1 1 2017-05-23 00:35:38 1 1 2017-05-23 08:10:38 1 1 2017-05-23 20:30:38 1 1 2017-05-24 10:50:38 1 1 2017-05-24 13:00:38 1 1 2017-05-24 21:25:38 1 1 2017-05-24 23:45:38 1 1 2017-05-25 16:10:38 1 1 2017-05-25 17:40:38 1 1 2017-05-25 19:20:38 1 1 2017-05-26 13:25:38 1 1 2017-05-26 16:10:38 1 1 2017-05-26 17:25:38 1 1 2017-05-26 19:15:38 1 1 2017-05-26 19:20:38 1 1 2017-05-28 13:45:38 1 1 2017-05-28 22:15:38 1 1 2017-05-28 22:20:38 1 1 2017-05-28 22:40:38 1 1 2017-05-29 17:40:38 1 1 2017-05-29 21:40:38 1 1 2017-05-30 08:10:38 1 1 2017-05-31 01:50:38 1 1 2017-06-01 20:25:38 1 1 2017-06-02 16:00:38 1 1 2017-06-02 20:50:38 1 1 2017-06-03 14:55:39 1 1 2017-06-03 20:20:38 1 1 2017-06-04 12:50:38 1 1 2017-06-04 19:05:38 1 1 2017-06-04 19:50:38 1 1 2017-06-07 19:25:38 1 1 2017-06-07 20:35:38 1 1 2017-06-08 13:25:38 1 1 2017-06-08 15:20:38 1 1 2017-06-09 17:20:38 1 1 2017-06-14 11:30:38 1 1 2017-06-14 11:35:38 1 1 2017-06-14 15:35:38 1 1 2017-06-14 16:25:38 1 1 2017-06-15 18:05:38 1 1 2017-06-16 19:10:38 1 1 2017-06-16 20:55:38 1 1 2017-06-17 07:55:38 1 1 2017-06-18 18:10:38 1 1 2017-06-18 18:20:38 1 1 2017-06-21 08:00:38 1 1 2017-06-21 20:50:38 1 1 2017-06-22 00:55:38 1 1 2017-06-22 21:35:38 1 1 2017-06-22 21:40:38 1 1 2017-06-23 09:05:38 1 1 2017-06-23 11:00:38 1 1 2017-06-26 00:50:38 1 1 2017-06-26 02:20:38 1 1 2017-06-26 03:05:38 1 1 2017-06-29 00:40:38 1 1 2017-06-30 04:55:38 1 1 2017-07-02 03:15:38 1 1 2017-07-02 23:00:38 1 1 2017-07-03 10:15:38 1 1 2017-07-03 10:20:38 1 1 2017-07-03 11:35:38 1 1 2017-07-04 06:30:38 1 1 2017-07-04 21:25:38 1 1 2017-07-05 08:15:38 1 1 2017-07-05 23:00:38 1 1 2017-07-05 23:10:38 1 1 2017-07-06 00:35:38 1 1 2017-07-06 03:50:38 1 1 2017-07-06 04:25:38 1 1 2017-07-06 05:30:38 1 1 2017-07-06 07:10:38 1 1 2017-07-07 02:10:38 1 1 2017-07-07 03:35:38 1 1 2017-07-07 05:20:38 1 1 2017-07-07 10:10:38 1 1 2017-07-08 07:10:38 1 1 2017-07-09 01:00:38 1 1 2017-07-09 05:20:38 1 1 2017-07-09 11:10:38 1 1 2017-07-10 06:45:38 1 1 2017-07-10 08:40:38 1 1 2017-07-12 09:20:38 1 1 2017-07-13 10:25:38 1 1 2017-07-13 22:50:38 1 1 2017-07-14 04:55:38 1 1 2017-07-14 05:00:38 1 1 2017-07-14 09:50:38 1 1 2017-07-14 11:50:38 1 1 2017-07-14 20:25:38 1 1 2017-07-14 23:45:38 1 1 2017-07-15 03:50:38 1 1 2017-07-15 03:55:38 1 1 2017-07-15 17:05:38 1 1 2017-07-15 18:35:38 1 1 2017-07-17 10:05:38 1 1 2017-07-18 07:10:38 1 1 2017-07-18 08:35:38 1 1 2017-07-19 05:45:38 1 1 2017-07-19 07:25:38 1 1 2017-07-19 08:45:38 1 1 2017-07-19 10:30:38 1 1 2017-07-19 17:55:38 1 1 2017-07-20 17:50:38 1 1 2017-07-20 19:10:38 1 1 2017-07-20 22:20:38 1 1 2017-07-21 02:55:38 1 1 2017-07-21 05:35:38 1 1 2017-07-21 17:25:38 1 1 2017-07-21 18:20:38 1 1 2017-07-22 01:20:38 1 1 2017-07-22 01:25:38 1 1 2017-07-22 08:10:38 1 1 2017-07-22 22:15:38 1 1 2017-07-22 22:20:38 1 1 2017-07-23 00:50:38 1 1 2017-07-23 04:45:38 1 1 2017-07-23 09:15:38 1 1 2017-07-23 15:10:38 1 1 2017-07-23 15:25:38 1 1 2017-07-23 18:00:38 1 1 2017-07-23 19:20:38 1 1 2017-07-24 00:55:38 1 1 2017-07-24 03:05:38 1 1 2017-07-24 06:25:38 1 1 2017-07-24 16:15:38 1 1 2017-07-24 19:05:38 1 1 2017-07-25 00:55:38 1 1 2017-07-25 03:30:38 1 1 2017-07-25 05:40:38 1 1 2017-07-25 08:45:38 1 1 2017-07-25 21:00:38 1 1 2017-07-26 02:30:38 1 1 2017-07-26 07:05:38 1 1 2017-07-26 20:00:38 1 1 2017-07-27 01:10:38 1 1 2017-07-27 19:05:38 1 1 2017-07-27 22:05:38 1 1 2017-07-27 23:40:38 1 1 2017-07-28 01:30:38 1 1 2017-07-29 17:10:38 1 1 2017-07-30 02:25:38 1 1 2017-07-30 07:55:38 1 1 2017-07-30 18:25:38 1 1 2017-07-30 21:50:38 1 1 2017-07-31 00:40:38 1 1 2017-07-31 21:40:38 1 1 2017-07-31 22:10:38 1 1 2017-08-01 02:35:38 1 1 2017-08-02 03:25:38 1 1 2017-08-02 08:45:38 1 1 2017-08-02 09:00:38 1 1 2017-08-03 01:20:38 1 1 2017-08-03 01:35:38 1 1 2017-08-03 02:40:38 1 1 2017-08-03 06:00:38 1 1 2017-08-04 01:15:38 1 1 2017-08-04 06:40:38 1 1 2017-08-05 06:00:38 1 1 2017-08-05 08:35:38 1 1 2017-08-06 17:55:38 1 1 2017-08-06 18:20:38 1 1 2017-08-06 18:50:38 1 1 2017-08-07 03:35:38 1 1 2017-08-07 03:50:38 1 1 2017-08-07 05:00:38 1 1 2017-08-09 10:40:38 1 1 2017-08-10 12:00:38 1 1 2017-08-10 12:45:38 1 1 2017-08-11 05:05:38 1 1 2017-08-11 20:50:38 1 1 2017-08-13 09:05:38 1 1 2017-08-13 18:25:38 1 1 2017-08-14 02:15:38 1 1 2017-08-15 07:25:38 1 1 2017-08-16 01:45:38 1 1 2017-08-16 08:55:38 1 1 2017-08-16 12:30:38 1 1 2017-08-17 02:25:38 1 1 2017-08-17 23:25:38 1 1 2017-08-18 00:20:38 1 1 2017-08-18 02:10:38 1 1 2017-08-18 07:50:38 1 1 2017-08-19 18:20:38 1 1 2017-08-20 19:05:38 1 1 2017-08-20 23:55:38 1 1 2017-08-21 00:35:38 1 1 2017-08-21 14:45:38 1 1 2017-08-21 17:00:38 1 1 2017-08-21 18:20:38 1 1 2017-08-21 21:30:38 1 1 2017-08-22 06:50:38 1 1 2017-08-22 10:05:38 1 1 2017-08-23 00:25:38 1 1 2017-08-23 18:30:38 1 1 2017-08-24 15:30:38 1 1 2017-08-25 09:35:38 1 1 2017-08-25 17:20:38 1 1 2017-08-25 17:55:38 1 1 2017-08-25 23:00:38 1 1 2017-08-25 23:50:38 1 1 2017-08-26 00:10:38 1 1 2017-08-26 08:30:38 1 1 2017-08-26 15:40:38 1 1 2017-08-26 16:20:38 1 1 2017-08-26 17:00:38 1 1 2017-08-28 22:10:38 1 1 2017-08-28 23:25:38 1 1 2017-08-29 02:05:38 1 1 2017-08-31 04:30:38 1 1 2017-09-01 02:40:38 1 1 2017-09-01 06:20:38 1 1 2017-09-02 00:05:38 1 1 2017-09-02 02:50:38 1 1 2017-09-02 23:10:38 1 1 2017-09-03 05:55:38 1 1 2017-09-03 15:20:38 1 1 2017-09-03 22:35:38 1 1 2017-09-03 23:40:38 1 1 2017-09-04 00:50:38 1 1 2017-09-04 01:05:38 1 1 2017-09-04 01:30:38 1 1 2017-09-04 01:45:38 1 1 2017-09-04 18:55:38 1 1 2017-09-04 22:35:38 1 1 2017-09-05 01:00:38 1 1 2017-09-06 04:05:38 1 1 2017-09-06 07:05:38 1 1 2017-09-06 19:55:38 1 1 2017-09-06 20:20:38 1 1 2017-09-07 04:15:38 1 1 2017-09-07 11:45:38 1 1 2017-09-07 18:40:38 1 1 2017-09-08 06:15:38 1 1 2017-09-08 07:55:38 1 1 2017-09-08 08:55:38 1 1 2017-09-08 18:30:38 1 1 2017-09-08 23:00:38 1 1 2017-09-09 22:40:38 1 1 2017-09-11 00:50:38 1 1 2017-09-11 22:15:38 1 1 2017-09-11 22:20:38 1 1 2017-09-12 02:35:38 1 1 2017-09-12 07:40:38 1 1 2017-09-12 17:45:38 1 1 2017-09-13 02:15:38 1 1 2017-09-13 06:30:38 1 1 2017-09-13 19:10:38 1 1 2017-09-14 01:50:38 1 1 2017-09-15 00:30:38 1 1 2017-09-15 00:55:38 1 1 2017-09-15 02:35:38 1 1 2017-09-15 18:30:38 1 1 2017-09-15 18:55:38 1 1 2017-09-15 23:40:38 1 1 2017-09-16 03:10:38 1 1 2017-09-17 18:40:38 1 1 2017-09-18 21:45:38 1 1 2017-09-19 03:15:38 1 1 2017-09-19 16:00:38 1 1 2017-09-19 21:20:38 1 1 2017-09-19 21:35:38 1 1 2017-09-19 22:25:38 1 1 2017-09-20 16:50:38 1 1 2017-09-21 09:40:38 1 1 2017-09-22 20:05:38 1 1 2017-09-22 22:00:38 1 1 2017-09-22 22:20:38 1 1 2017-09-22 22:30:38 1 1 2017-09-22 22:35:38 1 1 2017-09-22 22:40:38 1 1 2017-09-22 22:45:38 1 1 2017-09-23 06:30:38 1 1 2017-09-23 20:15:38 1 1 2017-09-24 02:15:38 1 1 2017-09-24 22:20:38 1 1 2017-09-25 00:25:38 1 1 2017-09-25 22:30:38 1 1 2017-09-26 00:30:38 1 1 2017-09-26 23:20:38 1 1 2017-09-27 22:50:38 1 1 2017-09-28 23:30:38 1 1 2017-09-29 05:15:38 1 1 2017-09-29 20:20:38 1 1 2017-09-29 22:10:38 1 1 2017-09-29 23:10:38 1 1 2017-09-30 22:45:38 1 1 2017-10-01 15:35:38 1 1 2017-10-01 17:10:38 1 1 2017-10-01 22:00:38 1 1 2017-10-02 00:00:38 1 1 2017-10-02 01:30:38 1 1 2017-10-02 13:55:38 1 1 2017-10-02 17:20:38 1 1 2017-10-02 18:25:38 1 1 2017-10-02 22:30:38 1 1 2017-10-02 22:35:38 1 1 2017-10-02 22:40:38 1 1 2017-10-03 01:20:38 1 1 2017-10-03 02:20:38 1 1 2017-10-03 03:40:38 1 1 2017-10-03 03:45:38 1 1 2017-10-03 11:30:38 1 1 2017-10-03 11:35:38 1 1 2017-10-03 11:40:38 1 1 2017-10-03 12:55:38 1 1 2017-10-03 15:50:38 1 1 2017-10-03 17:35:38 1 1 2017-10-03 21:55:38 1 1 2017-10-03 23:35:38 1 1 2017-10-04 02:00:38 1 1 2017-10-04 16:15:38 1 1 2017-10-04 17:25:38 1 1 2017-10-04 19:35:38 1 1 2017-10-04 19:55:38 1 1 2017-10-04 20:45:38 1 1 2017-10-04 21:35:38 1 1 2017-10-04 21:40:38 1 1 2017-10-04 23:50:38 1 1 2017-10-05 00:15:38 1 1 2017-10-05 04:25:38 1 1 2017-10-05 10:15:38 1 1 2017-10-05 14:25:38 1 1 2017-10-05 20:05:38 1 1 2017-10-05 23:05:38 1 1 2017-10-05 23:15:38 1 1 2017-10-05 23:40:38 1 1 2017-10-06 00:25:38 1 1 2017-10-06 01:50:38 1 1 2017-10-06 10:05:38 1 1 2017-10-06 11:25:38 1 1 2017-10-06 20:45:38 1 1 2017-10-06 23:25:38 1 1 2017-10-07 00:55:38 1 1 2017-10-07 01:10:38 1 1 2017-10-07 01:30:38 1 1 2017-10-07 19:40:38 1 1 2017-10-07 21:20:38 1 1 2017-10-07 22:35:38 1 1 2017-10-08 01:25:38 1 1 2017-10-08 01:55:38 1 1 2017-10-08 02:20:38 1 1 2017-10-08 02:40:38 1 1 2017-10-08 03:35:38 1 1 2017-10-08 03:50:38 1 1 2017-10-08 04:25:38 1 1 2017-10-08 21:25:38 1 1 2017-10-08 22:45:38 1 1 2017-10-08 22:55:38 1 1 2017-10-09 00:05:38 1 1 2017-10-09 01:05:38 1 1 2017-10-09 01:15:38 1 1 2017-10-09 04:00:38 1 1 2017-10-09 16:15:38 1 1 2017-10-09 16:20:38 1 1 2017-10-09 16:35:38 1 1 2017-10-09 17:30:38 1 1 2017-10-09 21:40:38 1 1 2017-10-09 21:50:38 1 1 2017-10-09 22:55:38 1 1 2017-10-10 01:25:38 1 1 2017-10-10 04:05:38 1 1 2017-10-10 22:15:38 1 1 2017-10-10 23:05:38 1 1 2017-10-10 23:10:38 1 1 2017-10-11 01:20:38 1 1 2017-10-11 02:30:38 1 1 2017-10-11 02:45:38 1 1 2017-10-11 05:30:38 1 1 2017-10-11 10:30:38 1 1 2017-10-11 15:20:38 1 1 2017-10-11 17:55:38 1 1 2017-10-11 22:35:38 1 1 2017-10-11 23:10:38 1 1 2017-10-11 23:15:38 1 1 2017-10-12 01:20:38 1 1 2017-10-12 10:10:38 1 1 2017-10-12 11:20:38 1 1 2017-10-12 15:25:38 1 1 2017-10-12 16:40:38 1 1 2017-10-12 17:10:38 1 1 2017-10-13 06:15:38 1 1 2017-10-13 09:30:38 1 1 2017-10-13 22:35:38 1 1 2017-10-13 23:45:38 1 1 2017-10-14 02:50:38 1 1 2017-10-14 06:55:38 1 1 2017-10-14 10:15:38 1 1 2017-10-14 15:35:38 1 1 2017-10-14 17:15:38 1 1 2017-10-15 05:45:38 1 1 2017-10-15 15:05:38 1 1 2017-10-15 16:15:38 1 1 2017-10-15 17:25:38 1 1 2017-10-15 23:25:38 1 1 2017-10-16 02:50:38 1 1 2017-10-16 03:35:38 1 1 2017-10-16 06:30:38 1 1 2017-10-16 07:10:38 1 1 2017-10-16 11:55:38 1 1 2017-10-16 16:40:38 1 1 2017-10-16 17:20:38 1 1 2017-10-17 12:05:38 1 1 2017-10-17 12:10:38 1 1 2017-10-17 15:10:38 1 1 2017-10-17 17:40:38 1 1 2017-10-18 01:10:38 1 1 2017-10-18 18:05:38 1 1 2017-10-18 18:25:38 1 1 2017-10-18 19:50:38 1 1 2017-10-18 20:20:38 1 1 2017-10-18 22:50:38 1 1 2017-10-18 23:50:38 1 1 2017-10-19 02:55:38 1 1 2017-10-19 03:40:38 1 1 2017-10-19 06:00:38 1 1 2017-10-19 12:50:38 1 1 2017-10-19 17:05:38 1 1 2017-10-19 22:45:38 1 1 2017-10-19 22:50:38 1 1 2017-10-20 15:25:38 1 1 2017-10-20 17:35:38 1 1 2017-10-20 20:20:38 1 1 2017-10-20 21:35:38 1 1 2017-10-20 21:40:38 1 1 2017-10-20 22:45:38 1 1 2017-10-21 06:40:38 1 1 2017-10-22 00:50:38 1 1 2017-10-22 01:40:38 1 1 2017-10-22 06:20:38 1 1 2017-10-23 13:02:30 1 1 2017-10-23 13:12:30 1 1 2017-10-24 00:02:30 1 1 2017-10-24 01:47:30 1 1 2017-10-24 01:52:30 1 1 2017-10-24 07:42:30 1 1 2017-10-24 13:07:30 1 1 2017-10-24 20:47:30 1 1 2017-10-24 23:12:30 1 1 2017-10-25 20:52:30 1 1 2017-10-25 23:47:30 1 1 2017-10-26 00:42:30 1 1 2017-10-26 18:47:30 1 1 2017-10-26 22:07:30 1 1 2017-10-26 22:17:30 1 1 2017-10-27 00:47:30 1 1 2017-10-27 02:42:30 1 1 2017-10-27 08:07:30 1 1 2017-10-27 11:07:30 1 1 2017-10-27 22:27:30 1 1 2017-10-27 22:42:30 1 1 2017-10-28 02:32:30 1 1 2017-10-28 09:57:30 1 1 2017-10-28 15:47:30 1 1 2017-10-28 16:37:30 1 1 2017-10-28 16:47:30 1 1 2017-10-28 17:42:30 1 1 2017-10-29 11:02:30 1 1 2017-10-29 11:47:30 1 1 2017-10-29 11:52:30 1 1 2017-10-30 06:22:30 1 1 2017-10-30 09:07:30 1 1 2017-10-30 10:02:30 1 1 2017-10-30 10:47:30 1 1 2017-10-30 15:32:30 1 1 2017-10-30 15:37:30 1 1 2017-10-30 23:52:30 1 1 2017-10-31 04:32:30 1 1 2017-10-31 11:12:30 1 1 2017-10-31 20:47:30 1 1 2017-11-01 20:27:30 1 1 2017-11-02 10:54:00 1 1 2017-11-02 13:19:00 1 1 2017-11-02 14:24:00 1 1 2017-11-03 08:09:00 1 1 2017-11-03 22:19:00 1 1 2017-11-04 06:59:00 1 1 2017-11-04 10:49:00 1 1 2017-11-04 15:54:00 1 1 2017-11-04 17:44:00 1 1 2017-11-04 21:44:00 1 1 2017-11-05 08:09:00 1 1 2017-11-05 16:04:00 1 1 2017-11-05 17:39:00 1 1 2017-11-05 21:49:00 1 1 2017-11-06 09:29:00 1 1 2017-11-06 11:29:00 1 1 2017-11-07 10:24:00 1 1 2017-11-07 17:44:00 1 1 2017-11-08 14:14:00 1 1 2017-11-08 16:19:00 1 1 2017-11-08 17:19:00 1 1 2017-11-09 07:49:00 1 1 2017-11-09 12:09:00 1 1 2017-11-09 19:24:00 1 1 2017-11-10 01:04:00 1 1 2017-11-10 13:34:00 1 1 2017-11-11 06:34:00 1 1 2017-11-11 11:17:11 1 1 2017-11-11 13:52:11 1 1 2017-11-11 17:27:11 1 1 2017-11-12 09:12:11 1 1 2017-11-12 16:17:11 1 1 2017-11-12 18:47:11 1 1 2017-11-13 05:52:11 1 1 2017-11-13 08:37:11 1 1 2017-11-13 11:47:11 1 1 2017-11-13 15:32:11 1 1 2017-11-13 18:27:11 1 1 2017-11-14 01:47:11 1 1 2017-11-14 10:32:11 1 1 2017-11-14 11:42:11 1 1 2017-11-14 13:07:11 1 1 2017-11-15 01:47:11 1 1 2017-11-15 08:22:11 1 1 2017-11-15 10:47:11 1 1 2017-11-15 21:07:11 1 1 2017-11-16 08:57:11 1 1 2017-11-16 19:52:11 1 1 2017-11-16 23:17:11 1 1 2017-11-17 12:32:11 1 1 2017-11-17 17:52:11 1 1 2017-11-17 18:42:11 1 1 2017-11-18 08:07:11 1 1 2017-11-18 09:22:11 1 1 2017-11-19 07:32:11 1 1 2017-11-19 16:47:11 1 1 2017-11-19 19:42:11 1 1 2017-11-20 12:02:11 1 1 2017-11-20 18:07:11 1 1 2017-11-20 19:37:11 1 1 2017-11-20 22:02:11 1 1 2017-11-21 04:32:11 1 1 2017-11-21 17:32:11 1 1 2017-11-22 15:17:11 1 1 2017-11-22 19:27:11 1 1 2017-11-22 21:37:11 1 1 2017-11-23 07:32:11 1 1 2017-11-23 09:32:11 1 1 2017-11-23 20:32:11 1 1 2017-11-24 02:37:11 1 1 2017-11-24 05:17:11 1 1 2017-11-24 12:27:11 1 1 2017-11-24 16:37:11 1 1 2017-11-24 18:52:11 1 1 2017-11-24 21:32:11 1 1 2017-11-25 09:42:11 1 1 2017-11-25 16:27:11 1 1 2017-11-26 04:57:11 1 1 2017-11-27 06:27:11 1 1 2017-11-27 12:07:11 1 1 2017-11-27 23:32:11 1 1 2017-11-28 01:02:11 1 1 2017-11-28 02:57:11 1 1 2017-11-28 03:02:11 1 1 2017-11-28 12:42:11 1 1 2017-11-29 00:07:11 1 1 2017-11-29 19:07:11 1 1 2017-11-29 20:32:11 1 1 2017-11-29 23:42:11 1 1 2017-11-30 06:02:11 1 1 2017-11-30 17:17:11 1 1 2017-12-01 04:37:11 1 1 2017-12-02 02:07:11 1 1 2017-12-02 10:17:11 1 1 2017-12-02 21:12:11 1 1 2017-12-03 05:02:11 1 1 2017-12-03 16:47:11 1 1 2017-12-04 04:52:11 1 1 2017-12-04 09:02:11 1 1 2017-12-04 12:37:11 1 1 2017-12-04 20:32:11 1 1 2017-12-05 03:17:11 1 1 2017-12-05 07:07:11 1 1 2017-12-05 17:07:11 1 1 2017-12-05 19:37:11 1 1 2017-12-05 19:47:11 1 1 2017-12-05 22:07:11 1 1 2017-12-06 07:57:11 1 1 2017-12-06 15:02:11 1 1 2017-12-06 17:52:11 1 1 2017-12-06 20:07:11 1 1 2017-12-07 07:37:11 1 1 2017-12-07 09:37:11 1 1 2017-12-07 09:42:11 1 1 2017-12-07 15:22:11 1 1 2017-12-07 19:27:11 1 1 2017-12-08 06:12:11 1 1 2017-12-08 09:47:11 1 1 2017-12-08 17:22:11 1 1 2017-12-08 19:22:11 1 1 2017-12-08 21:12:11 1 1 2017-12-09 00:27:11 1 1 2017-12-09 09:47:11 1 1 2017-12-09 15:27:11 1 1 2017-12-09 22:17:11 1 1 2017-12-09 22:47:11 1 1 2017-12-10 05:32:11 1 1 2017-12-10 17:12:11 1 1 2017-12-10 19:37:11 1 1 2017-12-10 22:47:11 1 1 2017-12-11 05:57:11 1 1 2017-12-11 20:07:11 1 1 2017-12-12 07:07:11 1 1 2017-12-12 17:12:11 1 1 2017-12-13 06:02:11 1 1 2017-12-13 12:32:11 1 1 2017-12-13 18:17:11 1 1 2017-12-14 04:17:11 1 1 2017-12-14 17:37:11 1 1 2017-12-14 20:37:11 1 1 2017-12-15 01:07:11 1 1 2017-12-15 04:02:11 1 1 2017-12-15 06:12:11 1 1 2017-12-15 16:27:11 1 1 2017-12-15 18:47:11 1 1 2017-12-15 21:17:11 1 1 2017-12-16 07:27:11 1 1 2017-12-16 19:07:11 1 1 2017-12-16 19:52:11 1 1 2017-12-16 22:57:11 1 1 2017-12-17 11:12:11 1 1 2017-12-17 15:17:11 1 1 2017-12-18 11:12:11 1 1 2017-12-18 14:22:11 1 1 2017-12-18 17:07:11 1 1 2017-12-19 00:57:11 1 1 2017-12-19 23:22:11 1 1 2017-12-20 04:57:11 1 1 2017-12-20 09:02:11 1 1 2017-12-20 10:17:11 1 1 2017-12-20 18:57:11 1 1 2017-12-21 00:27:11 1 1 2017-12-21 04:22:11 1 1 2017-12-21 13:22:11 1 1 2017-12-21 15:37:11 1 1 2017-12-22 04:07:11 1 1 2017-12-22 04:12:11 1 1 2017-12-22 04:27:11 1 1 2017-12-22 09:27:11 1 1 2017-12-23 05:17:11 1 1 2017-12-23 16:32:11 1 1 2017-12-23 17:02:11 1 1 2017-12-23 17:52:11 1 1 2017-12-23 18:27:11 1 1 2017-12-24 09:42:11 1 1 2017-12-24 12:02:11 1 1 2017-12-25 06:52:11 1 1 2017-12-25 14:32:11 1 1 2017-12-25 23:22:11 1 1 2017-12-26 10:47:11 1 1 2017-10-31 01:02:30 1 1 2017-10-31 10:37:30 1 1 2017-11-01 23:17:30 1 1 2017-11-02 12:34:00 1 1 2017-11-02 19:49:00 1 1 2017-11-03 03:59:00 1 1 2017-11-03 13:29:00 1 1 2017-11-03 21:04:00 1 1 2017-11-04 13:14:00 1 1 2017-11-04 19:24:00 1 1 2017-11-05 03:19:00 1 1 2017-11-05 12:29:00 1 1 2017-11-05 20:34:00 1 1 2017-11-06 03:39:00 1 1 2017-11-06 10:24:00 1 1 2017-11-06 17:59:00 1 1 2017-11-07 10:54:00 1 1 2017-11-07 19:14:00 1 1 2017-11-09 10:04:00 1 1 2017-11-09 14:14:00 1 1 2017-11-09 17:39:00 1 1 2017-11-10 16:14:00 1 1 2017-11-10 19:59:00 1 1 2017-11-10 20:44:00 1 1 2017-11-11 08:24:00 1 1 2017-11-11 13:37:11 1 1 2017-11-11 23:12:11 1 1 2017-11-12 12:52:11 1 1 2017-11-13 08:42:11 1 1 2017-11-13 14:37:11 1 1 2017-11-13 18:52:11 1 1 2017-11-13 21:17:11 1 1 2017-11-14 02:37:11 1 1 2017-11-14 10:52:11 1 1 2017-11-14 13:57:11 1 1 2017-11-14 23:07:11 1 1 2017-11-15 00:47:11 1 1 2017-11-16 01:02:11 1 1 2017-11-16 14:42:11 1 1 2017-11-17 19:37:11 1 1 2017-11-18 01:17:11 1 1 2017-11-18 08:37:11 1 1 2017-11-19 18:17:11 1 1 2017-11-20 18:02:11 1 1 2017-11-20 18:17:11 1 1 2017-11-20 21:47:11 1 1 2017-11-21 02:47:11 1 1 2017-11-21 05:27:11 1 1 2017-11-21 06:07:11 1 1 2017-11-21 08:22:11 1 1 2017-11-21 20:57:11 1 1 2017-11-22 03:02:11 1 1 2017-11-22 20:47:11 1 1 2017-11-22 23:42:11 1 1 2017-11-23 07:37:11 1 1 2017-11-23 12:57:11 1 1 2017-11-24 00:02:11 1 1 2017-11-24 13:07:11 1 1 2017-11-24 18:02:11 1 1 2017-11-24 20:27:11 1 1 2017-11-25 11:27:11 1 1 2017-11-25 22:52:11 1 1 2017-11-26 11:57:11 1 1 2017-11-26 12:12:11 1 1 2017-11-26 19:42:11 1 1 2017-11-27 07:42:11 1 1 2017-11-27 20:37:11 1 1 2017-11-28 02:37:11 1 1 2017-11-28 03:12:11 1 1 2017-11-29 21:22:11 1 1 2017-11-29 21:42:11 1 1 2017-11-30 17:12:11 1 1 2017-12-01 18:17:11 1 1 2017-12-02 10:57:11 1 1 2017-12-02 16:17:11 1 1 2017-12-02 22:52:11 1 1 2017-12-03 05:57:11 1 1 2017-12-03 17:32:11 1 1 2017-12-04 01:22:11 1 1 2017-12-04 21:02:11 1 1 2017-12-05 03:12:11 1 1 2017-12-06 01:47:11 1 1 2017-12-06 09:42:11 1 1 2017-12-06 10:22:11 1 1 2017-12-06 12:32:11 1 1 2017-12-06 22:27:11 1 1 2017-12-07 17:57:11 1 1 2017-12-07 21:27:11 1 1 2017-12-08 09:32:11 1 1 2017-12-08 18:02:11 1 1 2017-12-08 20:12:11 1 1 2017-12-09 20:07:11 1 1 2017-12-09 20:57:11 1 1 2017-12-10 07:22:11 1 1 2017-12-10 20:32:11 1 1 2017-12-11 14:42:11 1 1 2017-12-11 15:07:11 1 1 2017-12-12 09:27:11 1 1 2017-12-12 12:47:11 1 1 2017-12-13 12:07:11 1 1 2017-12-14 08:37:11 1 1 2017-12-15 04:42:11 1 1 2017-12-15 06:37:11 1 1 2017-12-15 06:42:11 1 1 2017-12-15 12:02:11 1 1 2017-12-15 16:52:11 1 1 2017-12-15 17:37:11 1 1 2017-12-16 11:17:11 1 1 2017-12-17 14:47:11 1 1 2017-12-17 15:07:11 1 1 2017-12-18 13:27:11 1 1 2017-12-18 16:02:11 1 1 2017-12-20 07:47:11 1 1 2017-12-20 11:57:11 1 1 2017-12-21 05:57:11 1 1 2017-12-21 09:17:11 1 1 2017-12-21 15:42:11 1 1 2017-12-21 17:42:11 1 1 2017-12-22 00:12:11 1 1 2017-12-22 07:57:11 1 1 2017-12-22 10:02:11 1 1 2017-12-22 15:02:11 1 1 2017-12-23 06:22:11 1 1 2017-12-23 08:17:11 1 1 2017-12-23 11:12:11 1 1 2017-12-23 12:57:11 1 1 2017-12-23 14:22:11 1 1 2017-12-23 16:42:11 1 1 2017-12-23 17:07:11 1 1 2017-12-23 17:37:11 1 1 2017-12-24 02:57:11 1 1 2017-12-24 18:32:11 1 1 2017-12-25 15:47:11 1 1 2017-12-26 03:02:11 1 1 2017-12-26 23:27:11 1 1 2017-12-27 07:57:11 1 1 2017-12-27 22:22:11 1 1 2017-12-28 00:02:11 1 1 2017-12-28 06:12:11 1 1 2017-12-28 13:32:11 1 1 2017-12-29 05:47:11 1 1 2017-12-29 08:52:11 1 1 2017-12-29 09:02:11 1 1 2017-12-29 10:17:11 1 1 2017-12-29 10:32:11 1 1 2017-12-29 14:07:11 1 1 2017-12-29 18:27:11 1 1 2017-12-29 19:17:11 1 1 2017-12-30 14:47:11 1 1 2017-12-30 20:12:11 1 1 2017-12-31 10:32:11 1 1 2018-01-01 14:22:11 1 1 2018-01-01 16:22:11 1 1 2018-01-01 20:37:11 1 1 2018-01-01 20:52:11 1 1 2018-01-02 06:17:11 1 1 2018-01-02 18:27:11 1 1 2018-01-02 18:42:11 1 1 2018-01-02 20:42:11 1 1 2018-01-03 06:22:11 1 1 2018-01-03 11:32:11 1 1 2018-01-03 11:47:11 1 1 2018-01-03 17:42:11 1 1 2018-01-03 17:47:11 1 1 2018-01-03 17:57:11 1 1 2018-01-03 18:32:11 1 1 2018-01-03 19:27:11 1 1 2018-01-03 20:07:11 1 1 2018-01-03 20:22:11 1 1 2018-01-04 04:32:11 1 1 2018-01-04 05:17:11 1 1 2018-01-04 06:42:11 1 1 2018-01-04 08:17:11 1 1 2018-01-04 08:32:11 1 1 2018-01-04 10:17:11 1 1 2018-01-04 10:52:11 1 1 2018-01-04 11:57:11 1 1 2018-01-04 12:17:11 1 1 2018-01-04 13:22:11 1 1 2018-01-04 14:12:11 1 1 2018-01-04 14:42:11 1 1 2018-01-04 14:47:11 1 1 2018-01-04 14:52:11 1 1 2018-01-04 16:12:11 1 1 2018-01-04 20:02:11 1 1 2017-10-31 03:17:30 1 1 2017-10-31 11:27:30 1 1 2017-10-31 17:07:30 1 1 2017-11-01 03:17:30 1 1 2017-11-02 12:59:00 1 1 2017-11-02 16:59:00 1 1 2017-11-04 02:09:00 1 1 2017-11-06 12:09:00 1 1 2017-11-06 19:59:00 1 1 2017-11-07 00:44:00 1 1 2017-11-07 11:19:00 1 1 2017-11-07 21:09:00 1 1 2017-11-09 18:54:00 1 1 2017-11-10 02:19:00 1 1 2017-11-10 20:39:00 1 1 2017-11-10 21:54:00 1 1 2017-11-11 02:34:00 1 1 2017-11-11 22:17:11 1 1 2017-11-12 13:07:11 1 1 2017-11-12 15:57:11 1 1 2017-11-12 16:52:11 1 1 2017-11-12 21:27:11 1 1 2017-11-13 09:12:11 1 1 2017-11-13 15:12:11 1 1 2017-11-13 21:22:11 1 1 2017-11-14 12:37:11 1 1 2017-11-14 13:47:11 1 1 2017-11-14 22:07:11 1 1 2017-11-15 00:37:11 1 1 2017-11-16 16:37:11 1 1 2017-11-16 17:02:11 1 1 2017-11-17 21:42:11 1 1 2017-11-18 09:07:11 1 1 2017-11-19 21:17:11 1 1 2017-11-19 22:37:11 1 1 2017-11-21 05:32:11 1 1 2017-11-21 08:17:11 1 1 2017-11-21 20:52:11 1 1 2017-11-21 23:37:11 1 1 2017-11-22 01:37:11 1 1 2017-11-23 12:07:11 1 1 2017-11-23 18:12:11 1 1 2017-11-23 20:27:11 1 1 2017-11-24 17:32:11 1 1 2017-11-24 22:37:11 1 1 2017-11-26 19:27:11 1 1 2017-11-27 10:02:11 1 1 2017-11-27 16:27:11 1 1 2017-11-27 17:37:11 1 1 2017-11-27 21:32:11 1 1 2017-11-29 22:17:11 1 1 2017-11-30 19:27:11 1 1 2017-12-02 00:47:11 1 1 2017-12-02 17:17:11 1 1 2017-12-03 11:57:11 1 1 2017-12-03 16:32:11 1 1 2017-12-03 17:27:11 1 1 2017-12-06 12:22:11 1 1 2017-12-06 14:12:11 1 1 2017-12-07 22:17:11 1 1 2017-12-08 13:52:11 1 1 2017-12-08 17:57:11 1 1 2017-12-08 23:32:11 1 1 2017-12-11 14:52:11 1 1 2017-12-12 00:02:11 1 1 2017-12-12 14:17:11 1 1 2017-12-12 21:37:11 1 1 2017-12-13 02:07:11 1 1 2017-12-14 20:42:11 1 1 2017-12-15 02:42:11 1 1 2017-12-15 14:52:11 1 1 2017-12-15 17:17:11 1 1 2017-12-16 22:12:11 1 1 2017-12-17 14:52:11 1 1 2017-12-17 19:57:11 1 1 2017-12-17 22:02:11 1 1 2017-12-18 17:12:11 1 1 2017-12-21 08:52:11 1 1 2017-12-21 21:02:11 1 1 2017-12-22 18:22:11 1 1 2017-12-22 20:57:11 1 1 2017-12-23 07:52:11 1 1 2017-12-23 08:22:11 1 1 2017-12-23 12:17:11 1 1 2017-12-23 16:27:11 1 1 2017-12-23 17:47:11 1 1 2017-12-24 20:47:11 1 1 2017-12-25 19:32:11 1 1 2017-12-26 02:22:11 1 1 2017-12-27 00:27:11 1 1 2017-12-27 08:52:11 1 1 2017-12-28 09:22:11 1 1 2017-12-28 10:12:11 1 1 2017-12-28 14:07:11 1 1 2017-12-28 19:57:11 1 1 2017-12-29 00:32:11 1 1 2017-12-29 08:37:11 1 1 2017-12-29 09:32:11 1 1 2017-12-29 16:27:11 1 1 2017-12-30 19:27:11 1 1 2017-12-30 21:52:11 1 1 2017-12-31 01:02:11 1 1 2017-12-31 15:47:11 1 1 2018-01-01 17:22:11 1 1 2018-01-02 14:02:11 1 1 2018-01-02 16:47:11 1 1 2018-01-02 20:12:11 1 1 2018-01-03 11:37:11 1 1 2018-01-03 13:27:11 1 1 2018-01-03 15:17:11 1 1 2018-01-03 18:22:11 1 1 2018-01-03 20:32:11 1 1 2018-01-04 03:02:11 1 1 2018-01-04 04:37:11 1 1 2018-01-04 05:02:11 1 1 2018-01-04 05:22:11 1 1 2018-01-04 13:32:11 1 1 2018-01-04 14:22:11 1 1 2018-01-04 19:07:11 1 1 2018-01-04 19:32:11 1 1 2018-01-04 19:42:11 1 1 2018-01-04 20:52:11 1 1 2018-01-05 02:12:11 1 1 2018-01-05 02:42:11 1 1 2018-01-05 05:22:11 1 1 2018-01-05 05:47:11 1 1 2018-01-05 08:02:11 1 1 2018-01-05 08:42:11 1 1 2018-01-05 09:07:11 1 1 2018-01-05 09:47:11 1 1 2018-01-05 10:42:11 1 1 2018-01-05 10:47:11 1 1 2018-01-05 13:17:11 1 1 2018-01-05 13:32:11 1 1 2018-01-05 14:37:11 1 1 2018-01-05 16:47:11 1 1 2018-01-05 17:47:11 1 1 2018-01-05 18:02:11 1 1 2018-01-05 18:42:11 1 1 2018-01-05 18:57:11 1 1 2018-01-05 21:17:11 1 1 2018-01-05 21:22:11 1 1 2018-01-06 04:37:11 1 1 2018-01-06 04:42:11 1 1 2018-01-06 07:17:11 1 1 2018-01-06 08:32:11 1 1 2018-01-06 08:42:11 1 1 2018-01-06 10:17:11 1 1 2018-01-06 10:32:11 1 1 2018-01-06 11:02:11 1 1 2018-01-06 14:12:11 1 1 2018-01-06 14:42:11 1 1 2018-01-06 15:07:11 1 1 2018-01-06 15:22:11 1 1 2018-01-06 15:52:11 1 1 2018-01-06 15:57:11 1 1 2018-01-06 16:42:11 1 1 2018-01-06 16:47:11 1 1 2018-01-06 16:57:11 1 1 2018-01-06 17:02:11 1 1 2018-01-06 17:12:11 1 1 2018-01-06 17:17:11 1 1 2018-01-06 17:32:11 1 1 2018-01-06 17:47:11 1 1 2018-01-06 17:52:11 1 1 2018-01-06 18:02:11 1 1 2018-01-06 19:02:11 1 1 2018-01-06 20:27:11 1 1 2018-01-06 21:12:11 1 1 2018-01-06 21:47:11 1 1 2018-01-06 23:22:11 1 1 2018-01-07 03:17:11 1 1 2018-01-07 04:07:11 1 1 2018-01-07 05:37:11 1 1 2018-01-07 08:37:11 1 1 2018-01-07 08:42:11 1 1 2018-01-07 10:37:11 1 1 2018-01-07 11:02:11 1 1 2018-01-07 13:22:11 1 1 2018-01-07 14:27:11 1 1 2018-01-07 14:37:11 1 1 2018-01-07 14:52:11 1 1 2018-01-07 16:02:11 1 1 2018-01-07 16:22:11 1 1 2018-01-07 17:22:11 1 1 2018-01-07 18:22:11 1 1 2018-01-07 18:52:11 1 1 2018-01-07 19:12:11 1 1 2018-01-07 20:27:11 1 1 2018-01-08 04:57:11 1 1 2018-01-08 06:17:11 1 1 2018-01-08 07:07:11 1 1 2018-01-08 07:47:11 1 1 2018-01-08 08:02:11 1 1 2018-01-08 09:02:11 1 1 2018-01-08 09:32:11 1 1 2018-01-08 09:52:11 1 1 2018-01-08 10:07:11 1 1 2018-01-08 10:37:11 1 1 2018-01-08 10:47:11 1 1 2018-01-08 11:17:11 1 1 2018-01-08 12:12:11 1 1 2018-01-08 13:47:11 1 1 2018-01-08 14:22:11 1 1 2018-01-08 15:42:11 1 1 2018-01-08 17:17:11 1 1 2018-01-08 17:37:11 1 1 2018-01-08 20:12:11 1 1 2018-01-08 21:42:11 1 1 2018-01-09 02:02:11 1 1 2018-01-09 02:57:11 1 1 2018-01-09 06:12:11 1 1 2018-01-09 09:22:11 1 1 2018-01-09 10:07:11 1 1 2018-01-09 10:32:11 1 1 2018-01-09 10:37:11 1 1 2018-01-09 12:12:11 1 1 2018-01-09 12:17:11 1 1 2018-01-09 13:17:11 1 1 2018-01-09 14:22:11 1 1 2018-01-09 16:17:11 1 1 2018-01-09 17:32:11 1 1 2018-01-09 17:52:11 1 1 2018-01-09 18:42:11 1 1 2018-01-09 20:12:11 1 1 2018-01-09 22:32:11 1 1 2018-01-10 04:12:11 1 1 2018-01-10 04:37:11 1 1 2018-01-10 04:42:11 1 1 2018-01-10 04:47:11 1 1 2018-01-10 04:57:11 1 1 2018-01-10 05:12:11 1 1 2018-01-10 06:27:11 1 1 2018-01-10 10:07:11 1 1 2018-01-10 11:02:11 1 1 2018-01-10 12:37:11 1 1 2018-01-10 14:07:11 1 1 2018-01-10 14:32:11 1 1 2018-01-10 14:47:11 1 1 2018-01-10 15:12:11 1 1 2018-01-10 15:17:11 1 1 2018-01-10 16:07:11 1 1 2018-01-10 17:17:11 1 1 2018-01-10 20:12:11 1 1 2018-01-10 20:17:11 1 1 2018-01-10 21:12:11 1 1 2018-01-10 23:32:11 1 1 2018-01-11 02:52:11 1 1 2018-01-11 07:27:11 1 1 2018-01-11 07:47:11 1 1 2018-01-11 08:22:11 1 1 2018-01-11 10:02:11 1 1 2018-01-11 10:27:11 1 1 2018-01-11 11:27:11 1 1 2018-01-11 11:42:11 1 1 2018-01-11 11:52:11 1 1 2018-01-11 12:37:11 1 1 2018-01-11 13:37:11 1 1 2018-01-11 14:12:11 1 1 2018-01-11 14:27:11 1 1 2018-01-11 14:52:11 1 1 2018-01-11 17:27:11 1 1 2018-01-11 18:37:11 1 1 2018-01-11 20:22:11 1 1 2018-01-11 23:27:11 1 1 2018-01-12 04:27:11 1 1 2018-01-12 06:27:11 1 1 2018-01-12 08:47:11 1 1 2018-01-12 09:22:11 1 1 2018-01-12 10:22:11 1 1 2018-01-12 12:52:11 1 1 2018-01-12 14:07:11 1 1 2018-01-12 16:12:11 1 1 2018-01-12 16:32:11 1 1 2018-01-12 16:57:11 1 1 2018-01-12 17:37:11 1 1 2018-01-12 18:57:11 1 1 2018-01-12 19:37:11 1 1 2018-01-12 20:37:11 1 1 2018-01-12 20:42:11 1 1 2018-01-12 23:32:11 1 1 2018-01-13 03:22:11 1 1 2018-01-13 03:27:11 1 1 2018-01-13 03:32:11 1 1 2018-01-13 05:32:11 1 1 2018-01-13 06:57:11 1 1 2018-01-13 07:52:11 1 1 2018-01-13 10:02:11 1 1 2018-01-13 11:27:11 1 1 2018-01-13 12:12:11 1 1 2018-01-13 12:27:11 1 1 2018-01-13 13:22:11 1 1 2018-01-13 13:57:11 1 1 2018-01-13 14:37:11 1 1 2018-01-13 14:57:11 1 1 2018-01-13 15:57:11 1 1 2018-01-13 16:42:11 1 1 2018-01-13 17:17:11 1 1 2018-01-13 20:22:11 1 1 2018-01-14 02:22:11 1 1 2018-01-14 02:27:11 1 1 2018-01-14 04:07:11 1 1 2018-01-14 07:52:11 1 1 2018-01-14 14:37:11 1 1 2018-01-14 15:12:11 1 1 2018-01-14 17:12:11 1 1 2018-01-14 19:27:11 1 1 2018-01-14 19:52:11 1 1 2018-01-15 01:27:11 1 1 2018-01-15 05:17:11 1 1 2018-01-15 07:37:11 1 1 2018-01-15 09:22:11 1 1 2018-01-15 11:07:11 1 1 2018-01-15 14:27:11 1 1 2018-01-15 17:02:11 1 1 2018-01-15 17:22:11 1 1 2018-01-15 22:42:11 1 1 2018-01-16 04:27:11 1 1 2018-01-16 05:42:11 1 1 2018-01-16 09:57:11 1 1 2018-01-16 11:22:11 1 1 2018-01-16 13:47:11 1 1 2018-01-16 16:17:11 1 1 2018-01-16 17:12:11 1 1 2018-01-16 20:47:11 1 1 2018-01-17 06:02:11 1 1 2018-01-17 07:52:11 1 1 2018-01-17 10:57:11 1 1 2018-01-17 13:47:11 1 1 2018-01-17 15:37:11 1 1 2018-01-17 21:47:11 1 1 2018-01-17 21:52:11 1 1 2018-01-18 00:02:11 1 1 2018-01-18 00:07:11 1 1 2018-01-18 11:07:11 1 1 2018-01-18 15:17:11 1 1 2018-01-18 16:02:11 1 1 2018-01-18 16:27:11 1 1 2018-01-18 18:32:11 1 1 2018-01-18 19:52:11 1 1 2018-01-18 20:07:11 1 1 2018-01-18 20:52:11 1 1 2018-01-19 01:42:11 1 1 2018-01-19 08:47:11 1 1 2018-01-19 11:32:11 1 1 2018-01-19 15:47:11 1 1 2018-01-19 17:27:11 1 1 2018-01-19 18:12:11 1 1 2018-01-20 10:47:11 1 1 2018-01-20 19:07:11 1 1 2018-01-20 20:42:11 1 1 2018-01-21 00:27:11 1 1 2018-01-21 02:42:11 1 1 2018-01-21 08:17:11 1 1 2018-01-21 10:52:11 1 1 2018-01-21 13:07:11 1 1 2018-01-21 18:22:11 1 1 2018-01-21 22:37:11 1 1 2018-01-22 09:17:11 1 1 2018-01-22 20:22:11 1 1 2018-01-22 20:32:11 1 1 2018-01-22 23:52:11 1 1 2018-01-23 04:17:11 1 1 2018-01-23 13:42:11 1 1 2018-01-23 19:12:11 1 1 2018-01-24 00:17:11 1 1 2018-01-24 08:07:11 1 1 2018-01-24 15:57:11 1 1 2018-01-24 21:07:11 1 1 2018-01-25 03:32:11 1 1 2018-01-07 19:02:11 1 1 2018-01-08 06:12:11 1 1 2018-01-08 07:52:11 1 1 2018-01-08 08:17:11 1 1 2018-01-08 09:47:11 1 1 2018-01-08 10:52:11 1 1 2018-01-08 17:42:11 1 1 2018-01-08 18:52:11 1 1 2018-01-08 19:12:11 1 1 2018-01-08 20:47:11 1 1 2018-01-08 23:32:11 1 1 2018-01-09 06:52:11 1 1 2018-01-09 07:37:11 1 1 2018-01-09 08:07:11 1 1 2018-01-09 10:02:11 1 1 2018-01-09 10:12:11 1 1 2018-01-09 13:47:11 1 1 2018-01-09 22:22:11 1 1 2018-01-10 01:47:11 1 1 2018-01-10 02:52:11 1 1 2018-01-10 03:02:11 1 1 2018-01-10 04:22:11 1 1 2018-01-10 09:47:11 1 1 2018-01-10 11:32:11 1 1 2018-01-10 12:27:11 1 1 2018-01-11 07:32:11 1 1 2018-01-11 09:12:11 1 1 2018-01-11 09:47:11 1 1 2018-01-11 13:22:11 1 1 2018-01-11 13:27:11 1 1 2018-01-11 13:32:11 1 1 2018-01-11 13:52:11 1 1 2018-01-11 14:32:11 1 1 2018-01-11 16:12:11 1 1 2018-01-11 16:57:11 1 1 2018-01-11 17:12:11 1 1 2018-01-11 19:17:11 1 1 2018-01-11 21:47:11 1 1 2018-01-12 03:07:11 1 1 2018-01-12 06:37:11 1 1 2018-01-12 15:22:11 1 1 2018-01-12 15:52:11 1 1 2018-01-12 18:12:11 1 1 2018-01-12 22:12:11 1 1 2018-01-13 05:52:11 1 1 2018-01-13 05:57:11 1 1 2018-01-13 06:22:11 1 1 2018-01-13 07:17:11 1 1 2018-01-13 09:12:11 1 1 2018-01-13 10:47:11 1 1 2018-01-13 11:12:11 1 1 2018-01-13 12:42:11 1 1 2018-01-13 13:27:11 1 1 2018-01-13 17:52:11 1 1 2018-01-13 20:27:11 1 1 2018-01-14 02:12:11 1 1 2018-01-14 08:32:11 1 1 2018-01-14 14:47:11 1 1 2018-01-14 15:52:11 1 1 2018-01-14 20:52:11 1 1 2018-01-15 02:32:11 1 1 2018-01-15 07:22:11 1 1 2018-01-15 09:17:11 1 1 2018-01-15 14:07:11 1 1 2018-01-16 05:37:11 1 1 2018-01-16 08:47:11 1 1 2018-01-16 10:42:11 1 1 2018-01-16 18:32:11 1 1 2018-01-17 02:37:11 1 1 2018-01-17 07:17:11 1 1 2018-01-17 13:52:11 1 1 2018-01-17 17:37:11 1 1 2018-01-18 00:22:11 1 1 2018-01-18 03:02:11 1 1 2018-01-18 03:47:11 1 1 2018-01-18 13:37:11 1 1 2018-01-18 15:12:11 1 1 2018-01-18 16:47:11 1 1 2018-01-18 19:42:11 1 1 2018-01-18 20:17:11 1 1 2018-01-18 21:22:11 1 1 2018-01-19 11:02:11 1 1 2018-01-20 02:27:11 1 1 2018-01-20 12:07:11 1 1 2018-01-20 15:37:11 1 1 2018-01-21 03:32:11 1 1 2018-01-21 08:22:11 1 1 2018-01-21 12:27:11 1 1 2018-01-21 16:07:11 1 1 2018-01-21 19:32:11 1 1 2018-01-21 20:12:11 1 1 2018-01-22 11:12:11 1 1 2018-01-22 18:42:11 1 1 2018-01-22 21:52:11 1 1 2018-01-23 08:27:11 1 1 2018-01-23 21:22:11 1 1 2018-01-24 08:22:11 1 1 2018-01-24 12:37:11 1 1 2018-01-25 04:37:11 1 1 2018-01-25 05:27:11 1 1 2018-01-25 06:42:11 1 1 2018-01-25 10:47:11 1 1 2018-01-25 11:32:11 1 1 2018-01-25 20:47:11 1 1 2018-01-25 20:52:11 1 1 2018-01-25 20:57:11 1 1 2018-01-25 23:27:11 1 1 2018-01-26 05:47:11 1 1 2018-01-26 12:37:11 1 1 2018-01-26 13:47:11 1 1 2018-01-26 17:42:11 1 1 2018-01-26 19:42:11 1 1 2018-01-27 00:47:11 1 1 2018-01-27 02:52:11 1 1 2018-01-27 04:42:11 1 1 2018-01-27 05:42:11 1 1 2018-01-27 06:12:11 1 1 2018-01-27 11:27:11 1 1 2018-01-27 13:32:11 1 1 2018-01-27 15:02:11 1 1 2018-01-27 17:52:11 1 1 2018-01-27 18:47:11 1 1 2018-01-27 23:22:11 1 1 2018-01-27 23:27:11 1 1 2018-01-28 03:22:11 1 1 2018-01-28 04:47:11 1 1 2018-01-28 05:52:11 1 1 2018-01-28 08:02:11 1 1 2018-01-28 10:47:11 1 1 2018-01-28 12:47:11 1 1 2018-01-28 15:02:11 1 1 2018-01-29 02:52:11 1 1 2018-01-29 03:02:11 1 1 2018-01-29 07:47:11 1 1 2018-01-29 13:22:11 1 1 2018-01-29 14:32:11 1 1 2018-01-29 18:12:11 1 1 2018-01-29 19:12:11 1 1 2018-01-29 20:07:11 1 1 2018-01-30 02:17:11 1 1 2018-01-30 03:47:11 1 1 2018-01-30 05:52:11 1 1 2018-01-30 09:32:11 1 1 2018-01-30 20:12:11 1 1 2018-01-30 20:42:11 1 1 2018-01-30 22:47:11 1 1 2018-01-30 23:42:11 1 1 2018-01-31 02:07:11 1 1 2018-01-31 04:37:11 1 1 2018-01-31 14:57:11 1 1 2018-02-01 00:02:11 1 1 2018-02-01 13:42:11 1 1 2018-02-01 20:42:11 1 1 2018-02-01 23:47:11 1 1 2018-02-02 02:27:11 1 1 2018-02-02 02:52:11 1 1 2018-02-02 04:27:11 1 1 2018-02-02 06:42:11 1 1 2018-02-02 07:57:11 1 1 2018-02-02 08:27:11 1 1 2018-02-02 14:02:11 1 1 2018-02-02 14:12:11 1 1 2018-02-03 02:22:11 1 1 2018-02-03 02:27:11 1 1 2018-02-04 01:52:11 1 1 2018-02-04 03:17:11 1 1 2018-02-04 10:37:11 1 1 2018-02-04 12:52:11 1 1 2018-02-04 13:37:11 1 1 2018-02-04 13:57:11 1 1 2018-02-04 20:47:11 1 1 2018-02-05 02:07:11 1 1 2018-02-05 03:07:11 1 1 2018-02-05 04:02:11 1 1 2018-02-05 04:42:11 1 1 2018-02-05 09:07:11 1 1 2018-02-05 11:07:11 1 1 2018-02-05 11:12:11 1 1 2018-02-05 11:57:11 1 1 2018-02-05 17:27:11 1 1 2018-02-05 19:02:11 1 1 2018-02-05 20:57:11 1 1 2018-02-06 02:27:11 1 1 2018-02-06 06:52:11 1 1 2018-02-06 07:12:11 1 1 2018-02-06 07:17:11 1 1 2018-02-06 07:22:11 1 1 2018-02-06 10:37:11 1 1 2018-02-07 03:07:11 1 1 2018-02-07 04:12:11 1 1 2018-02-07 07:17:11 1 1 2018-02-07 10:57:11 1 1 2018-02-07 11:42:11 1 1 2018-02-07 14:37:11 1 1 2018-02-07 15:32:11 1 1 2018-02-07 17:17:11 1 1 2018-02-07 23:22:11 1 1 2018-02-08 03:47:11 1 1 2018-02-08 05:27:11 1 1 2018-02-08 06:47:11 1 1 2018-02-08 08:12:11 1 1 2018-02-08 13:17:11 1 1 2018-02-08 22:37:11 1 1 2018-02-09 07:27:11 1 1 2018-02-09 23:52:11 1 1 2018-02-10 05:07:11 1 1 2018-02-10 11:07:11 1 1 2018-02-10 12:57:11 1 1 2018-02-10 21:02:11 1 1 2018-02-10 21:37:11 1 1 2018-02-11 00:27:11 1 1 2018-02-11 00:32:11 1 1 2018-02-11 04:12:11 1 1 2018-02-11 05:37:11 1 1 2018-02-11 06:17:11 1 1 2018-02-11 06:57:11 1 1 2018-02-11 08:37:11 1 1 2018-02-11 10:37:11 1 1 2018-02-11 11:27:11 1 1 2018-02-11 22:52:11 1 1 2018-02-12 04:37:11 1 1 2018-02-12 10:42:11 1 1 2018-02-12 14:12:11 1 1 2018-02-12 14:32:11 1 1 2018-02-13 00:02:11 1 1 2018-02-13 09:37:11 1 1 2018-02-13 11:32:11 1 1 2018-02-13 21:37:11 1 1 2018-02-14 05:32:11 1 1 2018-02-14 06:42:11 1 1 2018-02-14 07:52:11 1 1 2018-02-14 11:27:11 1 1 2018-02-15 05:02:11 1 1 2018-02-15 10:37:11 1 1 2018-02-15 17:42:11 1 1 2018-02-15 23:42:11 1 1 2018-02-16 06:27:11 1 1 2018-02-16 13:42:11 1 1 2018-02-16 16:17:11 1 1 2018-02-16 21:57:11 1 1 2018-02-17 04:17:11 1 1 2018-02-18 02:17:11 1 1 2018-02-18 07:42:11 1 1 2018-02-18 11:02:11 1 1 2018-02-18 14:27:11 1 1 2018-02-19 03:12:11 1 1 2018-02-19 03:22:11 1 1 2018-02-19 06:32:11 1 1 2018-02-19 06:42:11 1 1 2018-02-19 14:47:11 1 1 2018-02-19 15:17:11 1 1 2018-02-20 00:22:11 1 1 2018-02-20 03:27:11 1 1 2018-02-20 07:17:11 1 1 2018-02-20 10:07:11 1 1 2018-02-20 15:07:11 1 1 2018-02-21 00:42:11 1 1 2018-02-21 03:37:11 1 1 2018-02-21 07:37:11 1 1 2018-02-22 02:37:11 1 1 2018-02-22 03:27:11 1 1 2018-02-22 03:32:11 1 1 2018-02-22 06:07:11 1 1 2018-02-22 06:12:11 1 1 2018-02-22 07:47:11 1 1 2018-02-22 13:32:11 1 1 2018-02-22 20:47:11 1 1 2018-02-23 10:57:11 1 1 2018-02-24 04:07:11 1 1 2018-02-24 22:42:11 1 1 2018-02-25 00:22:11 1 1 2018-02-25 02:27:11 1 1 2018-02-25 04:32:11 1 1 2018-02-25 12:07:11 1 1 2018-02-25 13:47:11 1 1 2018-02-25 13:52:11 1 1 2018-02-25 15:47:11 1 1 2018-02-26 12:52:11 1 1 2018-02-26 22:47:11 1 1 2018-02-27 00:42:11 1 1 2018-02-27 09:12:11 1 1 2018-02-27 18:42:11 1 1 2018-02-28 11:17:11 1 1 2018-03-01 07:47:11 1 1 2018-03-02 11:32:11 1 1 2018-03-03 04:47:11 1 1 2018-03-03 14:02:11 1 1 2018-03-03 15:07:11 1 1 2018-03-04 13:12:11 1 1 2018-03-04 20:32:11 1 1 2018-03-05 13:57:11 1 1 2018-03-06 02:32:11 1 1 2018-03-06 06:02:11 1 1 2018-03-06 06:52:11 1 1 2018-03-07 01:47:11 1 1 2018-03-07 04:37:12 1 1 2018-03-07 22:52:11 1 1 2018-03-08 04:47:11 1 1 2018-03-08 10:37:11 1 1 2018-03-09 04:02:11 1 1 2018-03-09 11:37:11 1 1 2018-03-10 05:27:11 1 1 2018-03-11 08:12:11 1 1 2018-03-11 09:27:11 1 1 2018-03-11 13:37:11 1 1 2018-03-11 14:42:11 1 1 2018-03-11 14:47:11 1 1 2018-03-12 03:07:11 1 1 2018-03-12 05:32:11 1 1 2018-03-12 12:02:11 1 1 2018-03-13 04:22:11 1 1 2018-03-13 08:27:11 1 1 2018-03-13 12:07:11 1 1 2018-03-13 20:07:11 1 1 2018-03-14 02:52:11 1 1 2018-03-14 03:17:11 1 1 2018-03-14 06:47:11 1 1 2018-03-14 08:57:11 1 1 2018-03-14 09:37:11 1 1 2018-03-14 10:47:11 1 1 2018-03-14 22:07:11 1 1 2018-03-15 03:32:11 1 1 2018-03-15 13:37:11 1 1 2018-03-15 20:37:11 1 1 2018-03-15 22:12:11 1 1 2018-03-16 04:52:11 1 1 2018-03-16 17:22:11 1 1 2018-03-16 21:32:11 1 1 2018-03-16 22:52:11 1 1 2018-03-17 01:47:11 1 1 2018-03-17 02:27:11 1 1 2018-03-17 02:47:11 1 1 2018-03-17 02:52:11 1 1 2018-03-17 05:17:11 1 1 2018-03-17 09:32:11 1 1 2018-03-18 01:42:11 1 1 2018-03-18 05:17:11 1 1 2018-03-18 15:22:11 1 1 2018-03-18 22:57:11 1 1 2018-03-18 23:32:11 1 1 2018-03-19 04:22:11 1 1 2018-03-19 05:17:11 1 1 2018-03-19 07:37:11 1 1 2018-03-19 17:37:11 1 1 2018-03-20 00:12:11 1 1 2018-03-20 00:22:11 1 1 2018-03-20 03:32:11 1 1 2018-03-20 06:07:11 1 1 2018-03-20 08:17:11 1 1 2018-03-20 14:32:11 1 1 2018-03-20 15:32:11 1 1 2018-03-20 15:37:11 1 1 2018-03-20 17:42:11 1 1 2018-03-20 18:07:11 1 1 2018-03-20 18:32:11 1 1 2018-03-21 03:02:11 1 1 2018-03-21 06:37:11 1 1 2018-03-22 03:02:11 1 1 2018-03-22 09:02:11 1 1 2018-03-22 15:02:11 1 1 2018-03-22 15:32:11 1 1 2018-03-23 07:32:11 1 1 2018-03-23 10:32:11 1 1 2018-03-23 11:57:11 1 1 2018-03-23 20:12:11 1 1 2018-03-24 03:47:11 1 1 2018-03-24 13:42:11 1 1 2018-03-24 23:02:11 1 1 2018-03-27 01:32:11 1 1 2018-03-27 03:47:11 1 1 2018-02-06 08:12:11 1 1 2018-02-06 09:22:11 1 1 2018-02-06 13:27:11 1 1 2018-02-06 20:57:11 1 1 2018-02-06 22:57:11 1 1 2018-02-07 00:37:11 1 1 2018-02-07 03:47:11 1 1 2018-02-07 06:47:11 1 1 2018-02-07 23:12:11 1 1 2018-02-08 03:12:11 1 1 2018-02-08 06:37:11 1 1 2018-02-08 19:02:11 1 1 2018-02-08 22:32:11 1 1 2018-02-09 00:47:11 1 1 2018-02-09 19:17:11 1 1 2018-02-09 23:57:11 1 1 2018-02-10 01:57:11 1 1 2018-02-10 08:07:11 1 1 2018-02-10 09:47:11 1 1 2018-02-10 12:47:11 1 1 2018-02-11 00:37:11 1 1 2018-02-11 04:37:11 1 1 2018-02-11 08:02:11 1 1 2018-02-12 08:12:11 1 1 2018-02-13 10:27:11 1 1 2018-02-13 18:57:11 1 1 2018-02-14 02:22:11 1 1 2018-02-14 06:02:11 1 1 2018-02-14 06:07:11 1 1 2018-02-14 06:47:11 1 1 2018-02-15 03:47:11 1 1 2018-02-15 09:47:11 1 1 2018-02-15 22:37:11 1 1 2018-02-16 08:27:11 1 1 2018-02-16 13:52:11 1 1 2018-02-17 04:37:11 1 1 2018-02-17 07:27:11 1 1 2018-02-17 09:22:11 1 1 2018-02-17 13:47:11 1 1 2018-02-18 12:37:11 1 1 2018-02-18 21:52:11 1 1 2018-02-19 06:37:11 1 1 2018-02-20 08:22:11 1 1 2018-02-20 10:37:11 1 1 2018-02-20 13:32:11 1 1 2018-02-20 19:57:11 1 1 2018-02-21 15:12:11 1 1 2018-02-22 00:27:11 1 1 2018-02-22 06:27:11 1 1 2018-02-22 14:02:11 1 1 2018-02-24 00:07:11 1 1 2018-02-24 10:27:11 1 1 2018-02-24 23:47:11 1 1 2018-02-25 03:52:11 1 1 2018-02-25 07:02:11 1 1 2018-02-25 12:12:11 1 1 2018-02-25 12:47:11 1 1 2018-02-25 12:52:11 1 1 2018-02-25 12:57:11 1 1 2018-02-26 23:17:11 1 1 2018-02-27 09:57:11 1 1 2018-02-27 10:12:11 1 1 2018-02-27 19:02:11 1 1 2018-02-27 19:07:11 1 1 2018-03-01 10:37:11 1 1 2018-03-01 16:07:11 1 1 2018-03-01 22:57:11 1 1 2018-03-02 02:52:11 1 1 2018-03-02 14:42:11 1 1 2018-03-03 09:07:11 1 1 2018-03-03 20:07:11 1 1 2018-03-04 14:27:11 1 1 2018-03-04 21:47:11 1 1 2018-03-05 03:12:11 1 1 2018-03-07 09:52:11 1 1 2018-03-08 06:47:11 1 1 2018-03-10 00:07:11 1 1 2018-03-10 01:52:11 1 1 2018-03-11 09:32:11 1 1 2018-03-11 15:22:11 1 1 2018-03-12 00:47:11 1 1 2018-03-12 07:02:11 1 1 2018-03-12 22:47:11 1 1 2018-03-13 12:22:11 1 1 2018-03-14 06:57:11 1 1 2018-03-14 22:02:11 1 1 2018-03-14 22:47:11 1 1 2018-03-15 00:42:11 1 1 2018-03-15 17:42:11 1 1 2018-03-15 20:47:11 1 1 2018-03-15 21:17:11 1 1 2018-03-16 04:57:11 1 1 2018-03-17 02:17:11 1 1 2018-03-17 08:37:11 1 1 2018-03-18 00:42:11 1 1 2018-03-18 08:37:11 1 1 2018-03-18 10:02:11 1 1 2018-03-19 05:27:11 1 1 2018-03-20 01:02:11 1 1 2018-03-20 06:12:11 1 1 2018-03-20 10:07:11 1 1 2018-03-20 12:22:11 1 1 2018-03-20 18:02:11 1 1 2018-03-20 18:27:11 1 1 2018-03-21 02:32:11 1 1 2018-03-21 19:47:11 1 1 2018-03-22 13:07:11 1 1 2018-03-22 14:57:11 1 1 2018-03-23 08:57:11 1 1 2018-03-24 13:57:11 1 1 2018-03-24 22:52:11 1 1 2018-03-27 01:42:11 1 1 2018-03-27 04:57:11 1 1 2018-03-27 20:17:11 1 1 2018-03-27 23:52:11 1 1 2018-03-28 00:02:11 1 1 2018-03-28 00:32:11 1 1 2018-03-28 02:37:11 1 1 2018-03-28 08:07:11 1 1 2018-03-28 09:37:11 1 1 2018-03-28 09:47:11 1 1 2018-03-28 09:57:11 1 1 2018-03-28 10:07:11 1 1 2018-03-28 10:22:11 1 1 2018-03-28 10:37:11 1 1 2018-03-28 22:12:11 1 1 2018-03-29 00:22:11 1 1 2018-03-29 02:42:11 1 1 2018-03-29 03:07:11 1 1 2018-03-29 03:42:11 1 1 2018-03-29 04:57:11 1 1 2018-03-29 05:07:11 1 1 2018-03-29 05:12:11 1 1 2018-03-29 05:17:11 1 1 2018-03-29 07:57:11 1 1 2018-03-29 08:07:11 1 1 2018-03-29 08:57:11 1 1 2018-03-29 09:22:11 1 1 2018-03-29 10:02:11 1 1 2018-03-29 20:47:11 1 1 2018-03-29 20:52:11 1 1 2018-03-29 23:37:11 1 1 2018-03-29 23:42:11 1 1 2018-03-29 23:52:11 1 1 2018-03-30 03:37:11 1 1 2018-03-30 05:47:11 1 1 2018-03-30 06:32:11 1 1 2018-03-30 08:07:11 1 1 2018-03-30 09:07:11 1 1 2018-03-30 14:07:11 1 1 2018-03-30 14:17:11 1 1 2018-03-30 14:37:11 1 1 2018-03-30 18:22:11 1 1 2018-03-30 18:27:11 1 1 2018-03-30 18:32:11 1 1 2018-03-30 18:42:11 1 1 2018-03-30 21:22:11 1 1 2018-03-30 21:52:11 1 1 2018-03-31 00:07:11 1 1 2018-03-31 00:52:11 1 1 2018-03-31 03:37:11 1 1 2018-03-31 04:37:11 1 1 2018-03-31 05:22:11 1 1 2018-03-31 23:12:11 1 1 2018-03-31 23:32:11 1 1 2018-04-01 01:47:11 1 1 2018-04-01 01:52:11 1 1 2018-04-01 01:57:11 1 1 2018-04-01 02:02:11 1 1 2018-04-01 04:52:11 1 1 2018-04-01 05:12:11 1 1 2018-04-01 07:17:11 1 1 2018-04-01 07:22:11 1 1 2018-04-01 07:27:11 1 1 2018-04-01 09:07:11 1 1 2018-04-01 09:12:11 1 1 2018-04-01 10:37:11 1 1 2018-04-01 10:42:11 1 1 2018-04-01 11:22:11 1 1 2018-04-02 00:02:11 1 1 2018-04-02 01:02:11 1 1 2018-04-02 02:32:11 1 1 2018-04-02 02:47:11 1 1 2018-04-02 02:52:11 1 1 2018-04-02 04:52:11 1 1 2018-04-02 05:07:11 1 1 2018-04-02 06:57:11 1 1 2018-04-02 12:07:11 1 1 2018-04-03 06:47:11 1 1 2018-04-03 08:57:11 1 1 2018-04-03 20:12:11 1 1 2018-04-03 23:32:11 1 1 2018-04-04 01:52:11 1 1 2018-04-04 01:57:11 1 1 2018-04-04 06:17:11 1 1 2018-04-04 15:52:11 1 1 2018-04-04 18:17:11 1 1 2018-04-04 20:42:11 1 1 2018-04-05 00:07:11 1 1 2018-04-05 05:02:11 1 1 2018-04-05 05:32:11 1 1 2018-04-05 10:27:11 1 1 2018-04-05 10:57:11 1 1 2018-04-05 21:52:11 1 1 2018-04-05 23:22:11 1 1 2018-04-05 23:42:11 1 1 2018-04-06 08:42:11 1 1 2018-04-06 09:57:11 1 1 2018-04-06 22:47:11 1 1 2018-04-07 00:07:11 1 1 2018-04-07 00:42:11 1 1 2018-04-07 01:37:11 1 1 2018-04-07 02:52:11 1 1 2018-04-07 05:12:11 1 1 2018-04-07 06:32:11 1 1 2018-04-07 08:42:11 1 1 2018-04-07 09:42:11 1 1 2018-04-07 09:47:11 1 1 2018-04-07 23:32:11 1 1 2018-04-08 01:27:11 1 1 2018-04-08 02:37:11 1 1 2018-04-08 04:57:11 1 1 2018-04-08 07:42:11 1 1 2018-04-08 07:47:11 1 1 2018-04-08 08:07:11 1 1 2018-04-08 15:47:11 1 1 2018-04-08 21:52:11 1 1 2018-04-08 22:57:11 1 1 2018-04-08 23:22:11 1 1 2018-04-09 02:17:11 1 1 2018-04-09 13:02:11 1 1 2018-04-09 14:02:11 1 1 2018-04-09 14:37:11 1 1 2018-04-09 20:02:11 1 1 2018-04-09 22:32:11 1 1 2018-04-10 00:37:11 1 1 2018-04-10 01:47:11 1 1 2018-04-10 03:27:11 1 1 2018-04-10 04:37:11 1 1 2018-04-10 06:27:11 1 1 2018-04-10 08:17:11 1 1 2018-04-10 11:12:11 1 1 2018-04-10 13:37:11 1 1 2018-04-10 13:47:11 1 1 2018-04-10 15:02:11 1 1 2018-04-10 20:32:11 1 1 2018-04-10 23:12:11 1 1 2018-04-11 00:37:11 1 1 2018-04-11 01:47:11 1 1 2018-04-11 05:57:11 1 1 2018-04-11 09:27:11 1 1 2018-04-11 23:22:11 1 1 2018-04-12 00:02:11 1 1 2018-04-12 00:07:11 1 1 2018-04-12 00:42:11 1 1 2018-04-12 02:37:11 1 1 2018-04-12 05:07:11 1 1 2018-04-12 07:17:11 1 1 2018-04-12 08:17:11 1 1 2018-04-12 13:37:11 1 1 2018-04-12 20:22:11 1 1 2018-04-13 03:27:11 1 1 2018-04-13 04:17:11 1 1 2018-04-13 04:47:11 1 1 2018-04-13 05:17:11 1 1 2018-04-13 11:27:11 1 1 2018-04-13 21:17:11 1 1 2018-04-14 00:57:11 1 1 2018-04-14 04:17:11 1 1 2018-04-14 13:37:11 1 1 2018-04-14 17:07:11 1 1 2018-04-15 09:47:11 1 1 2018-04-15 20:52:11 1 1 2018-04-16 08:47:11 1 1 2018-04-16 10:27:11 1 1 2018-04-16 21:22:11 1 1 2018-04-16 22:57:11 1 1 2018-04-17 00:12:11 1 1 2018-04-17 00:17:11 1 1 2018-04-17 03:57:11 1 1 2018-04-17 07:32:11 1 1 2018-04-17 09:57:11 1 1 2018-04-17 12:12:11 1 1 2018-04-17 12:47:11 1 1 2018-04-17 13:12:11 1 1 2018-04-18 02:42:11 1 1 2018-04-18 04:57:11 1 1 2018-04-18 10:37:11 1 1 2018-04-18 11:12:11 1 1 2018-04-18 16:47:11 1 1 2018-04-18 22:17:11 1 1 2018-04-18 23:07:11 1 1 2018-04-19 01:02:11 1 1 2018-04-19 01:17:11 1 1 2018-04-19 01:22:11 1 1 2018-04-19 05:47:11 1 1 2018-04-19 10:17:11 1 1 2018-04-19 11:12:11 1 1 2018-04-20 03:27:11 1 1 2018-04-20 06:12:11 1 1 2018-04-20 09:42:11 1 1 2018-04-20 11:12:11 1 1 2018-04-20 11:22:11 1 1 2018-04-20 11:32:11 1 1 2018-04-20 14:27:11 1 1 2018-04-21 02:22:11 1 1 2018-04-21 03:17:11 1 1 2018-04-21 06:12:11 1 1 2018-04-22 03:27:11 1 1 2018-04-22 04:32:11 1 1 2018-04-22 09:12:11 1 1 2018-04-22 21:17:11 1 1 2018-04-22 21:22:11 1 1 2018-04-22 21:42:11 1 1 2018-04-23 04:42:11 1 1 2018-04-24 02:47:11 1 1 2018-04-24 02:52:11 1 1 2018-04-24 08:02:11 1 1 2018-04-24 11:07:11 1 1 2018-04-24 18:37:11 1 1 2018-04-24 19:42:11 1 1 2018-04-25 06:12:11 1 1 2018-04-25 09:42:11 1 1 2018-04-26 04:27:11 1 1 2018-04-27 16:09:16 1 1 2018-04-27 23:14:16 1 1 2018-04-28 06:09:16 1 1 2018-04-28 09:04:16 1 1 2018-04-28 14:34:16 1 1 2018-04-28 15:09:16 1 1 2018-04-29 08:49:16 1 1 2018-04-29 09:29:16 1 1 2018-04-29 09:34:16 1 1 2018-04-29 13:34:16 1 1 2018-04-29 19:04:16 1 1 2018-04-29 19:44:16 1 1 2018-04-29 19:49:16 1 1 2018-04-29 21:19:16 1 1 2018-04-30 06:04:16 1 1 2018-04-30 08:04:16 1 1 2018-04-30 08:49:16 1 1 2018-04-30 12:59:16 1 1 2018-04-30 13:44:16 1 1 2018-04-30 15:24:16 1 1 2018-04-30 16:54:16 1 1 2018-04-30 17:09:16 1 1 2018-04-30 17:14:16 1 1 2018-04-30 19:14:16 1 1 2018-04-30 20:49:16 1 1 2018-05-01 10:24:16 1 1 2018-05-01 12:49:16 1 1 2018-05-01 18:19:16 1 1 2018-05-01 20:40:16 1 1 2018-05-01 22:15:16 1 1 2018-05-01 22:55:16 1 1 2018-05-02 00:05:16 1 1 2018-05-02 06:40:16 1 1 2018-05-02 09:00:16 1 1 2018-05-02 09:35:16 1 1 2018-05-02 11:40:16 1 1 2018-05-02 12:25:16 1 1 2018-05-02 15:50:16 1 1 2018-05-02 17:20:16 1 1 2018-05-02 17:45:16 1 1 2018-05-02 22:01:02 1 1 2018-05-03 10:30:43 1 1 2018-05-03 10:55:43 1 1 2018-05-03 12:00:43 1 1 2018-05-03 12:05:43 1 1 2018-05-03 12:55:43 1 1 2018-04-02 07:02:11 1 1 2018-04-02 08:32:11 1 1 2018-04-02 09:27:11 1 1 2018-04-02 10:47:11 1 1 2018-04-02 11:07:11 1 1 2018-04-02 14:22:11 1 1 2018-04-02 14:47:11 1 1 2018-04-02 14:52:11 1 1 2018-04-03 08:07:11 1 1 2018-04-03 22:37:11 1 1 2018-04-04 03:42:11 1 1 2018-04-04 15:07:11 1 1 2018-04-04 17:52:11 1 1 2018-04-04 17:57:11 1 1 2018-04-05 05:27:11 1 1 2018-04-05 12:07:11 1 1 2018-04-05 13:17:11 1 1 2018-04-05 19:27:11 1 1 2018-04-06 09:37:11 1 1 2018-04-06 23:57:11 1 1 2018-04-07 00:22:11 1 1 2018-04-07 05:27:11 1 1 2018-04-07 06:47:11 1 1 2018-04-07 09:17:11 1 1 2018-04-07 18:47:11 1 1 2018-04-07 22:42:11 1 1 2018-04-08 03:07:11 1 1 2018-04-08 06:22:11 1 1 2018-04-08 07:22:11 1 1 2018-04-08 07:52:11 1 1 2018-04-08 10:27:11 1 1 2018-04-08 22:52:11 1 1 2018-04-09 02:22:11 1 1 2018-04-09 13:32:11 1 1 2018-04-09 14:27:11 1 1 2018-04-10 10:37:11 1 1 2018-04-10 13:27:11 1 1 2018-04-10 21:32:11 1 1 2018-04-10 23:47:11 1 1 2018-04-11 01:02:11 1 1 2018-04-11 01:32:11 1 1 2018-04-11 07:27:11 1 1 2018-04-11 08:37:11 1 1 2018-04-11 22:37:11 1 1 2018-04-12 02:42:11 1 1 2018-04-12 03:07:11 1 1 2018-04-12 06:07:11 1 1 2018-04-12 07:07:11 1 1 2018-04-12 07:22:11 1 1 2018-04-12 08:42:11 1 1 2018-04-13 05:57:11 1 1 2018-04-13 09:37:11 1 1 2018-04-13 14:32:11 1 1 2018-04-14 17:02:11 1 1 2018-04-14 22:17:11 1 1 2018-04-15 01:32:11 1 1 2018-04-15 02:47:11 1 1 2018-04-16 10:42:11 1 1 2018-04-16 20:47:11 1 1 2018-04-16 22:37:11 1 1 2018-04-16 22:42:11 1 1 2018-04-17 09:22:11 1 1 2018-04-17 09:27:11 1 1 2018-04-17 11:27:11 1 1 2018-04-17 12:52:11 1 1 2018-04-17 20:52:11 1 1 2018-04-18 03:02:11 1 1 2018-04-18 05:52:11 1 1 2018-04-18 10:02:11 1 1 2018-04-18 23:47:11 1 1 2018-04-19 09:57:11 1 1 2018-04-20 06:37:11 1 1 2018-04-20 13:42:11 1 1 2018-04-21 10:27:11 1 1 2018-04-21 18:17:11 1 1 2018-04-22 01:57:11 1 1 2018-04-22 07:47:11 1 1 2018-04-22 21:02:11 1 1 2018-04-22 21:57:11 1 1 2018-04-23 00:07:11 1 1 2018-04-23 23:52:11 1 1 2018-04-24 10:37:11 1 1 2018-04-26 03:12:11 1 1 2018-04-26 08:37:11 1 1 2018-04-28 10:04:16 1 1 2018-04-28 18:49:16 1 1 2018-04-29 09:24:16 1 1 2018-04-29 11:54:16 1 1 2018-04-29 19:14:16 1 1 2018-04-30 07:09:16 1 1 2018-04-30 12:39:16 1 1 2018-04-30 16:24:16 1 1 2018-04-30 20:14:16 1 1 2018-04-30 23:39:16 1 1 2018-05-01 14:49:16 1 1 2018-05-01 20:45:16 1 1 2018-05-02 06:45:16 1 1 2018-05-02 12:55:16 1 1 2018-05-02 16:20:16 1 1 2018-05-03 00:16:02 1 1 2018-05-03 10:45:43 1 1 2018-05-03 11:40:43 1 1 2018-05-03 13:45:43 1 1 2018-05-03 16:40:43 1 1 2018-05-03 18:00:43 1 1 2018-05-03 18:20:43 1 1 2018-05-03 18:35:43 1 1 2018-05-03 19:40:43 1 1 2018-05-03 21:30:43 1 1 2018-05-03 22:40:43 1 1 2018-05-04 08:55:43 1 1 2018-05-04 12:10:43 1 1 2018-05-04 14:10:43 1 1 2018-05-04 14:15:43 1 1 2018-05-04 15:00:43 1 1 2018-05-04 17:05:43 1 1 2018-05-04 17:10:43 1 1 2018-05-04 17:45:43 1 1 2018-05-04 18:35:43 1 1 2018-05-04 22:55:43 1 1 2018-05-04 23:50:43 1 1 2018-05-05 01:50:43 1 1 2018-05-05 08:25:43 1 1 2018-05-05 08:50:43 1 1 2018-05-05 10:25:43 1 1 2018-05-05 11:55:43 1 1 2018-05-05 12:20:43 1 1 2018-05-05 12:55:43 1 1 2018-05-05 14:15:43 1 1 2018-05-05 17:30:43 1 1 2018-05-05 17:55:43 1 1 2018-05-05 18:45:43 1 1 2018-05-05 19:10:43 1 1 2018-05-05 19:50:43 1 1 2018-05-05 20:05:43 1 1 2018-05-05 20:15:43 1 1 2018-05-05 20:55:43 1 1 2018-05-05 21:00:43 1 1 2018-05-05 21:05:43 1 1 2018-05-05 21:10:43 1 1 2018-05-05 21:30:43 1 1 2018-05-05 21:50:43 1 1 2018-05-05 21:55:43 1 1 2018-05-05 22:30:43 1 1 2018-05-05 23:35:43 1 1 2018-05-05 23:40:43 1 1 2018-05-06 00:25:43 1 1 2018-05-06 03:55:43 1 1 2018-05-06 07:30:43 1 1 2018-05-06 08:20:43 1 1 2018-05-06 09:40:43 1 1 2018-05-06 11:10:43 1 1 2018-05-06 11:25:43 1 1 2018-05-06 11:40:43 1 1 2018-05-06 11:50:43 1 1 2018-05-06 11:55:43 1 1 2018-05-06 12:35:43 1 1 2018-05-06 12:40:43 1 1 2018-05-06 15:50:43 1 1 2018-05-06 17:10:43 1 1 2018-05-06 17:50:43 1 1 2018-05-06 18:05:43 1 1 2018-05-06 18:10:43 1 1 2018-05-06 18:50:43 1 1 2018-05-06 19:00:43 1 1 2018-05-06 19:30:43 1 1 2018-05-06 20:35:43 1 1 2018-05-06 20:55:43 1 1 2018-05-06 21:10:43 1 1 2018-05-06 21:25:43 1 1 2018-05-06 21:55:43 1 1 2018-05-06 22:05:43 1 1 2018-05-06 22:20:43 1 1 2018-05-06 22:40:43 1 1 2018-05-06 23:40:43 1 1 2018-05-07 01:15:43 1 1 2018-05-07 02:45:43 1 1 2018-05-07 02:55:43 1 1 2018-05-07 08:27:22 1 1 2018-05-07 10:17:22 1 1 2018-05-07 11:37:22 1 1 2018-05-07 12:17:22 1 1 2018-05-07 12:47:22 1 1 2018-05-07 13:22:22 1 1 2018-05-07 13:37:22 1 1 2018-05-07 13:57:22 1 1 2018-05-07 14:37:22 1 1 2018-05-07 15:47:22 1 1 2018-05-07 16:47:22 1 1 2018-05-07 16:52:22 1 1 2018-05-07 17:57:22 1 1 2018-05-07 22:37:22 1 1 2018-05-08 00:57:22 1 1 2018-05-08 08:57:22 1 1 2018-05-08 10:52:22 1 1 2018-05-08 16:12:22 1 1 2018-05-08 16:52:22 1 1 2018-05-08 18:17:22 1 1 2018-05-08 18:42:22 1 1 2018-05-08 20:12:22 1 1 2018-05-08 20:42:22 1 1 2018-05-08 20:52:22 1 1 2018-05-08 21:27:22 1 1 2018-05-08 22:22:22 1 1 2018-05-09 06:32:22 1 1 2018-05-09 10:52:22 1 1 2018-05-09 12:17:22 1 1 2018-05-09 13:22:22 1 1 2018-05-09 14:12:22 1 1 2018-05-09 17:27:22 1 1 2018-05-09 20:47:22 1 1 2018-05-09 21:17:22 1 1 2018-05-09 21:52:22 1 1 2018-05-10 00:22:22 1 1 2018-05-10 01:02:22 1 1 2018-05-10 08:02:22 1 1 2018-05-10 09:27:22 1 1 2018-05-10 10:52:22 1 1 2018-05-10 11:17:22 1 1 2018-05-10 11:52:22 1 1 2018-05-10 12:02:22 1 1 2018-05-10 14:12:22 1 1 2018-05-10 15:27:22 1 1 2018-05-10 20:17:22 1 1 2018-05-10 22:07:22 1 1 2018-05-11 00:02:22 1 1 2018-05-11 00:22:22 1 1 2018-05-11 01:42:22 1 1 2018-05-11 02:52:22 1 1 2018-05-11 07:52:22 1 1 2018-05-11 13:07:22 1 1 2018-05-11 13:47:22 1 1 2018-05-11 17:47:22 1 1 2018-05-11 19:12:22 1 1 2018-05-11 20:37:22 1 1 2018-05-11 21:07:22 1 1 2018-05-11 22:02:22 1 1 2018-05-11 22:47:22 1 1 2018-05-11 23:32:22 1 1 2018-05-12 02:47:22 1 1 2018-05-12 08:52:22 1 1 2018-05-12 10:52:22 1 1 2018-05-12 11:02:22 1 1 2018-05-12 11:52:22 1 1 2018-05-12 14:57:22 1 1 2018-05-12 16:32:22 1 1 2018-05-12 16:57:22 1 1 2018-05-12 20:42:22 1 1 2018-05-12 21:07:22 1 1 2018-05-12 21:17:22 1 1 2018-05-12 21:42:22 1 1 2018-05-12 22:07:22 1 1 2018-05-12 22:12:22 1 1 2018-05-12 23:37:22 1 1 2018-05-13 06:07:22 1 1 2018-05-13 07:37:22 1 1 2018-05-13 09:07:22 1 1 2018-05-13 09:27:22 1 1 2018-05-13 10:27:22 1 1 2018-05-13 12:37:22 1 1 2018-05-13 13:52:22 1 1 2018-05-13 17:47:22 1 1 2018-05-13 18:02:22 1 1 2018-05-13 19:42:22 1 1 2018-05-13 21:17:22 1 1 2018-05-13 23:02:22 1 1 2018-05-14 04:02:22 1 1 2018-05-14 08:17:22 1 1 2018-05-14 09:22:22 1 1 2018-05-14 11:12:22 1 1 2018-05-14 20:02:22 1 1 2018-05-14 21:57:22 1 1 2018-05-14 23:57:22 1 1 2018-05-15 00:17:22 1 1 2018-05-15 07:52:22 1 1 2018-05-15 09:12:22 1 1 2018-05-15 12:47:22 1 1 2018-05-15 15:07:22 1 1 2018-05-15 15:52:22 1 1 2018-05-15 16:17:22 1 1 2018-05-15 19:12:22 1 1 2018-05-15 19:57:22 1 1 2018-05-15 23:27:22 1 1 2018-05-15 23:37:22 1 1 2018-05-16 00:07:22 1 1 2018-05-16 04:07:22 1 1 2018-05-16 09:53:35 1 1 2018-05-16 10:53:35 1 1 2018-05-16 12:03:35 1 1 2018-05-16 19:38:35 1 1 2018-05-16 21:03:35 1 1 2018-05-16 22:33:35 1 1 2018-05-17 01:43:35 1 1 2018-05-17 02:23:35 1 1 2018-05-17 08:38:35 1 1 2018-05-17 09:08:35 1 1 2018-05-17 12:08:35 1 1 2018-05-17 13:23:35 1 1 2018-05-17 15:53:35 1 1 2018-05-17 16:38:35 1 1 2018-05-18 09:38:44 1 1 2018-05-18 16:28:44 1 1 2018-05-18 19:43:44 1 1 2018-05-18 20:33:44 1 1 2018-05-18 20:53:44 1 1 2018-05-18 22:23:44 1 1 2018-05-19 00:13:44 1 1 2018-05-19 08:38:44 1 1 2018-05-19 13:18:44 1 1 2018-05-19 17:33:44 1 1 2018-05-19 19:28:44 1 1 2018-05-20 05:13:44 1 1 2018-05-20 05:28:44 1 1 2018-05-20 08:33:44 1 1 2018-05-20 09:18:44 1 1 2018-05-20 14:58:44 1 1 2018-05-20 19:43:44 1 1 2018-05-20 19:58:44 1 1 2018-05-20 21:03:44 1 1 2018-05-20 21:23:44 1 1 2018-05-20 22:13:44 1 1 2018-05-20 23:13:44 1 1 2018-05-21 03:43:44 1 1 2018-05-21 06:23:44 1 1 2018-05-21 09:33:44 1 1 2018-05-21 10:23:44 1 1 2018-05-21 11:13:44 1 1 2018-05-21 11:38:44 1 1 2018-05-21 12:43:44 1 1 2018-05-21 12:53:44 1 1 2018-05-21 17:08:44 1 1 2018-05-21 18:38:44 1 1 2018-05-21 18:53:44 1 1 2018-05-21 19:23:44 1 1 2018-05-21 22:03:44 1 1 2018-05-22 00:48:44 1 1 2018-05-22 07:13:44 1 1 2018-05-22 10:38:44 1 1 2018-05-22 11:43:44 1 1 2018-05-22 13:23:44 1 1 2018-05-22 13:58:44 1 1 2018-05-22 17:43:44 1 1 2018-05-22 18:18:44 1 1 2018-05-22 19:08:44 1 1 2018-05-22 21:08:44 1 1 2018-05-22 22:18:44 1 1 2018-05-22 23:28:44 1 1 2018-05-23 03:53:44 1 1 2018-05-23 04:58:44 1 1 2018-05-23 13:13:44 1 1 2018-05-23 15:18:44 1 1 2018-05-23 18:58:44 1 1 2018-05-23 19:58:44 1 1 2018-05-23 21:43:44 1 1 2018-05-23 22:33:44 1 1 2018-05-23 22:58:44 1 1 2018-05-23 23:33:44 1 1 2018-05-24 05:08:44 1 1 2018-05-24 13:43:44 1 1 2018-05-24 14:18:44 1 1 2018-05-24 14:58:44 1 1 2018-05-24 16:38:44 1 1 2018-05-24 16:58:44 1 1 2018-05-24 17:53:44 1 1 2018-05-24 19:13:44 1 1 2018-05-24 20:38:44 1 1 2018-05-24 21:53:44 1 1 2018-05-25 02:03:44 1 1 2018-05-25 02:38:44 1 1 2018-05-25 05:03:44 1 1 2018-05-07 14:22:22 1 1 2018-05-07 14:47:22 1 1 2018-05-07 14:57:22 1 1 2018-05-07 15:37:22 1 1 2018-05-07 16:27:22 1 1 2018-05-07 20:12:22 1 1 2018-05-07 23:07:22 1 1 2018-05-08 01:07:22 1 1 2018-05-08 02:32:22 1 1 2018-05-08 11:17:22 1 1 2018-05-08 12:22:22 1 1 2018-05-08 12:52:22 1 1 2018-05-08 15:22:22 1 1 2018-05-08 21:17:22 1 1 2018-05-09 01:22:22 1 1 2018-05-09 01:47:22 1 1 2018-05-09 08:22:22 1 1 2018-05-09 10:17:22 1 1 2018-05-09 10:22:22 1 1 2018-05-09 11:47:22 1 1 2018-05-09 12:47:22 1 1 2018-05-09 14:17:22 1 1 2018-05-09 14:32:22 1 1 2018-05-09 19:02:22 1 1 2018-05-09 19:37:22 1 1 2018-05-09 21:02:22 1 1 2018-05-09 21:22:22 1 1 2018-05-09 21:27:22 1 1 2018-05-09 21:57:22 1 1 2018-05-09 23:57:22 1 1 2018-05-10 00:17:22 1 1 2018-05-10 01:22:22 1 1 2018-05-10 10:32:22 1 1 2018-05-10 10:57:22 1 1 2018-05-10 12:07:22 1 1 2018-05-10 12:47:22 1 1 2018-05-10 15:22:22 1 1 2018-05-10 16:12:22 1 1 2018-05-10 17:07:22 1 1 2018-05-10 18:42:22 1 1 2018-05-10 20:22:22 1 1 2018-05-10 20:42:22 1 1 2018-05-10 21:52:22 1 1 2018-05-10 22:52:22 1 1 2018-05-10 23:42:23 1 1 2018-05-11 02:12:22 1 1 2018-05-11 08:17:22 1 1 2018-05-11 11:27:22 1 1 2018-05-11 12:37:22 1 1 2018-05-11 16:27:22 1 1 2018-05-11 18:37:22 1 1 2018-05-11 20:47:22 1 1 2018-05-11 22:17:22 1 1 2018-05-11 22:52:22 1 1 2018-05-12 00:52:22 1 1 2018-05-12 01:37:22 1 1 2018-05-12 10:17:22 1 1 2018-05-12 14:22:22 1 1 2018-05-12 16:12:22 1 1 2018-05-12 18:52:22 1 1 2018-05-12 20:57:22 1 1 2018-05-12 21:37:22 1 1 2018-05-12 23:22:22 1 1 2018-05-12 23:42:22 1 1 2018-05-13 08:07:22 1 1 2018-05-13 11:22:22 1 1 2018-05-13 12:17:22 1 1 2018-05-13 13:07:22 1 1 2018-05-13 17:37:22 1 1 2018-05-13 19:12:22 1 1 2018-05-13 20:07:22 1 1 2018-05-14 03:47:22 1 1 2018-05-14 03:57:22 1 1 2018-05-14 04:47:22 1 1 2018-05-14 08:37:22 1 1 2018-05-14 13:07:22 1 1 2018-05-14 13:52:22 1 1 2018-05-14 16:27:22 1 1 2018-05-14 16:42:22 1 1 2018-05-14 17:02:22 1 1 2018-05-14 17:32:22 1 1 2018-05-14 17:37:22 1 1 2018-05-14 19:07:22 1 1 2018-05-14 19:12:23 1 1 2018-05-14 22:02:22 1 1 2018-05-14 23:07:22 1 1 2018-05-15 02:17:22 1 1 2018-05-15 08:37:22 1 1 2018-05-15 09:17:22 1 1 2018-05-15 10:17:22 1 1 2018-05-15 11:32:22 1 1 2018-05-15 12:02:22 1 1 2018-05-15 13:12:22 1 1 2018-05-15 18:57:22 1 1 2018-05-15 21:02:22 1 1 2018-05-15 22:17:22 1 1 2018-05-16 00:12:22 1 1 2018-05-16 00:32:22 1 1 2018-05-16 01:57:22 1 1 2018-05-16 10:03:35 1 1 2018-05-16 10:28:35 1 1 2018-05-16 10:38:35 1 1 2018-05-16 13:58:35 1 1 2018-05-16 14:03:35 1 1 2018-05-16 14:13:35 1 1 2018-05-16 19:13:35 1 1 2018-05-16 20:53:35 1 1 2018-05-17 00:23:35 1 1 2018-05-17 01:23:35 1 1 2018-05-17 08:53:35 1 1 2018-05-17 09:58:35 1 1 2018-05-17 11:08:35 1 1 2018-05-17 13:33:35 1 1 2018-05-17 14:38:35 1 1 2018-05-17 16:28:35 1 1 2018-05-17 16:48:35 1 1 2018-05-17 17:03:35 1 1 2018-05-17 17:28:35 1 1 2018-05-17 18:08:35 1 1 2018-05-17 19:33:35 1 1 2018-05-17 22:18:35 1 1 2018-05-17 23:28:35 1 1 2018-05-18 10:08:44 1 1 2018-05-18 11:13:44 1 1 2018-05-18 11:33:44 1 1 2018-05-18 11:53:44 1 1 2018-05-18 12:08:44 1 1 2018-05-18 12:58:44 1 1 2018-05-18 13:53:44 1 1 2018-05-18 16:23:44 1 1 2018-05-18 18:23:44 1 1 2018-05-18 18:33:44 1 1 2018-05-18 22:03:44 1 1 2018-05-19 09:23:44 1 1 2018-05-19 17:13:44 1 1 2018-05-19 18:28:44 1 1 2018-05-19 19:58:44 1 1 2018-05-19 21:03:44 1 1 2018-05-19 22:48:44 1 1 2018-05-19 23:38:44 1 1 2018-05-20 05:18:44 1 1 2018-05-20 07:18:44 1 1 2018-05-20 08:38:44 1 1 2018-05-20 10:38:44 1 1 2018-05-20 11:03:44 1 1 2018-05-20 11:48:44 1 1 2018-05-20 14:18:44 1 1 2018-05-20 17:23:44 1 1 2018-05-20 19:18:44 1 1 2018-05-20 21:48:44 1 1 2018-05-20 23:03:44 1 1 2018-05-20 23:08:44 1 1 2018-05-21 06:58:44 1 1 2018-05-21 09:48:44 1 1 2018-05-21 10:43:44 1 1 2018-05-21 12:03:44 1 1 2018-05-21 12:08:44 1 1 2018-05-21 13:03:44 1 1 2018-05-21 13:38:44 1 1 2018-05-21 15:38:44 1 1 2018-05-21 16:23:44 1 1 2018-05-21 17:13:44 1 1 2018-05-21 18:48:44 1 1 2018-05-21 20:03:44 1 1 2018-05-21 20:23:44 1 1 2018-05-21 22:48:44 1 1 2018-05-22 02:08:44 1 1 2018-05-22 09:23:44 1 1 2018-05-22 14:58:44 1 1 2018-05-22 17:53:44 1 1 2018-05-22 18:23:44 1 1 2018-05-23 00:33:44 1 1 2018-05-23 00:38:44 1 1 2018-05-23 01:58:44 1 1 2018-05-23 08:58:44 1 1 2018-05-23 10:58:44 1 1 2018-05-23 12:23:44 1 1 2018-05-23 14:18:44 1 1 2018-05-23 17:43:44 1 1 2018-05-23 17:53:44 1 1 2018-05-23 20:03:44 1 1 2018-05-23 21:48:44 1 1 2018-05-24 00:38:44 1 1 2018-05-24 02:18:44 1 1 2018-05-24 07:23:44 1 1 2018-05-07 15:02:22 1 1 2018-05-07 15:42:22 1 1 2018-05-07 17:12:22 1 1 2018-05-07 18:27:22 1 1 2018-05-07 19:57:22 1 1 2018-05-07 20:17:22 1 1 2018-05-07 22:02:22 1 1 2018-05-07 23:42:22 1 1 2018-05-08 01:32:22 1 1 2018-05-08 11:32:22 1 1 2018-05-08 12:57:22 1 1 2018-05-08 15:07:22 1 1 2018-05-08 19:12:22 1 1 2018-05-08 21:22:22 1 1 2018-05-09 00:07:22 1 1 2018-05-09 01:37:22 1 1 2018-05-09 10:47:22 1 1 2018-05-09 11:37:22 1 1 2018-05-09 12:22:22 1 1 2018-05-09 13:02:22 1 1 2018-05-09 15:22:22 1 1 2018-05-09 20:07:22 1 1 2018-05-09 22:02:22 1 1 2018-05-09 22:17:22 1 1 2018-05-09 23:27:22 1 1 2018-05-10 00:02:22 1 1 2018-05-10 00:57:22 1 1 2018-05-10 01:12:22 1 1 2018-05-10 12:42:22 1 1 2018-05-10 13:32:22 1 1 2018-05-10 15:07:22 1 1 2018-05-10 15:42:22 1 1 2018-05-10 15:57:22 1 1 2018-05-10 16:37:22 1 1 2018-05-10 17:32:22 1 1 2018-05-10 18:47:22 1 1 2018-05-10 19:17:22 1 1 2018-05-10 19:22:22 1 1 2018-05-10 21:57:22 1 1 2018-05-10 22:17:22 1 1 2018-05-11 01:32:22 1 1 2018-05-11 02:32:22 1 1 2018-05-11 10:02:22 1 1 2018-05-11 14:57:22 1 1 2018-05-11 16:57:22 1 1 2018-05-11 17:37:22 1 1 2018-05-11 19:42:22 1 1 2018-05-11 20:42:22 1 1 2018-05-11 23:12:22 1 1 2018-05-12 12:22:22 1 1 2018-05-12 13:32:22 1 1 2018-05-12 14:27:22 1 1 2018-05-12 15:12:22 1 1 2018-05-12 15:52:22 1 1 2018-05-12 20:52:22 1 1 2018-05-12 22:37:22 1 1 2018-05-12 22:52:22 1 1 2018-05-13 09:17:22 1 1 2018-05-13 09:47:22 1 1 2018-05-13 11:42:22 1 1 2018-05-13 15:32:22 1 1 2018-05-13 21:47:22 1 1 2018-05-14 08:47:22 1 1 2018-05-14 14:07:22 1 1 2018-05-14 14:27:22 1 1 2018-05-14 17:17:22 1 1 2018-05-14 19:02:22 1 1 2018-05-14 19:17:22 1 1 2018-05-14 19:32:22 1 1 2018-05-14 19:42:22 1 1 2018-05-14 21:37:22 1 1 2018-05-15 00:07:22 1 1 2018-05-15 10:57:22 1 1 2018-05-15 12:17:22 1 1 2018-05-15 12:22:22 1 1 2018-05-15 13:17:22 1 1 2018-05-15 15:47:22 1 1 2018-05-15 19:02:22 1 1 2018-05-15 21:07:22 1 1 2018-05-15 21:52:22 1 1 2018-05-15 22:22:22 1 1 2018-05-15 23:32:22 1 1 2018-05-16 00:37:22 1 1 2018-05-16 03:27:22 1 1 2018-05-16 10:18:35 1 1 2018-05-16 20:38:35 1 1 2018-05-17 02:03:35 1 1 2018-05-17 02:28:35 1 1 2018-05-17 12:13:35 1 1 2018-05-17 13:28:35 1 1 2018-05-17 16:23:35 1 1 2018-05-17 17:33:35 1 1 2018-05-17 22:08:35 1 1 2018-05-17 23:13:35 1 1 2018-05-17 23:33:35 1 1 2018-05-18 10:18:44 1 1 2018-05-18 10:53:44 1 1 2018-05-18 12:43:44 1 1 2018-05-18 14:43:44 1 1 2018-05-18 18:03:44 1 1 2018-05-18 19:13:44 1 1 2018-05-18 21:18:44 1 1 2018-05-18 23:33:44 1 1 2018-05-19 09:43:44 1 1 2018-05-19 12:08:44 1 1 2018-05-19 14:08:44 1 1 2018-05-19 15:13:44 1 1 2018-05-19 17:18:44 1 1 2018-05-19 18:38:44 1 1 2018-05-19 19:18:44 1 1 2018-05-20 00:28:44 1 1 2018-05-20 10:28:44 1 1 2018-05-20 11:43:44 1 1 2018-05-20 12:23:44 1 1 2018-05-20 13:28:44 1 1 2018-05-20 14:48:44 1 1 2018-05-20 19:03:44 1 1 2018-05-20 19:33:44 1 1 2018-05-20 20:18:44 1 1 2018-05-20 22:28:44 1 1 2018-05-21 01:33:44 1 1 2018-05-21 09:43:44 1 1 2018-05-21 11:18:44 1 1 2018-05-21 13:13:44 1 1 2018-05-21 15:53:44 1 1 2018-05-21 16:13:44 1 1 2018-05-21 16:33:44 1 1 2018-05-21 17:38:44 1 1 2018-05-21 20:58:44 1 1 2018-05-22 09:28:44 1 1 2018-05-22 19:18:44 1 1 2018-05-22 19:58:44 1 1 2018-05-23 00:08:44 1 1 2018-05-23 00:48:44 1 1 2018-05-23 03:38:44 1 1 2018-05-23 03:43:44 1 1 2018-05-23 11:23:44 1 1 2018-05-23 12:28:44 1 1 2018-05-23 12:58:44 1 1 2018-05-23 14:38:44 1 1 2018-05-23 15:03:44 1 1 2018-05-23 16:53:44 1 1 2018-05-23 20:23:44 1 1 2018-05-23 21:23:44 1 1 2018-05-23 21:58:44 1 1 2018-05-24 12:53:44 1 1 2018-05-24 15:28:44 1 1 2018-05-24 16:28:44 1 1 2018-05-24 17:18:44 1 1 2018-05-24 19:28:44 1 1 2018-05-24 22:13:44 1 1 2018-05-25 08:18:44 1 1 2018-05-25 09:33:44 1 1 2018-05-25 12:43:44 1 1 2018-05-25 12:58:44 1 1 2018-05-25 13:43:44 1 1 2018-05-25 14:28:44 1 1 2018-05-25 15:23:44 1 1 2018-05-25 17:43:44 1 1 2018-05-25 17:48:44 1 1 2018-05-25 18:58:44 1 1 2018-05-25 19:18:44 1 1 2018-05-25 21:28:44 1 1 2018-05-25 21:33:44 1 1 2018-05-25 22:03:44 1 1 2018-05-25 22:28:44 1 1 2018-05-26 01:13:44 1 1 2018-05-26 01:38:44 1 1 2018-05-26 02:03:44 1 1 2018-05-26 02:58:44 1 1 2018-05-26 09:08:44 1 1 2018-05-26 09:53:44 1 1 2018-05-26 12:53:44 1 1 2018-05-26 14:33:44 1 1 2018-05-26 18:53:44 1 1 2018-05-26 19:13:44 1 1 2018-05-26 19:38:44 1 1 2018-05-26 20:03:44 1 1 2018-05-26 20:18:44 1 1 2018-05-26 21:13:44 1 1 2018-05-26 21:23:44 1 1 2018-05-26 21:28:44 1 1 2018-05-26 21:58:44 1 1 2018-05-26 22:08:44 1 1 2018-05-26 22:18:44 1 1 2018-05-26 23:38:44 1 1 2018-05-26 23:58:44 1 1 2018-05-27 01:53:44 1 1 2018-05-27 02:28:44 1 1 2018-05-27 08:13:44 1 1 2018-05-27 11:13:44 1 1 2018-05-27 11:53:44 1 1 2018-05-27 12:08:44 1 1 2018-05-27 12:18:44 1 1 2018-05-27 15:48:44 1 1 2018-05-27 18:28:44 1 1 2018-05-27 20:38:44 1 1 2018-05-27 23:28:44 1 1 2018-05-28 00:33:44 1 1 2018-05-28 08:38:44 1 1 2018-05-28 09:08:44 1 1 2018-05-28 11:43:44 1 1 2018-05-28 12:08:44 1 1 2018-05-28 12:53:44 1 1 2018-05-28 15:03:44 1 1 2018-05-28 15:53:44 1 1 2018-05-28 16:58:44 1 1 2018-05-28 17:38:44 1 1 2018-05-28 18:08:44 1 1 2018-05-28 18:28:44 1 1 2018-05-28 19:48:44 1 1 2018-05-28 20:13:44 1 1 2018-05-28 20:28:44 1 1 2018-05-28 21:48:44 1 1 2018-05-28 22:23:44 1 1 2018-05-28 23:28:44 1 1 2018-05-29 00:13:44 1 1 2018-05-29 09:18:44 1 1 2018-05-29 10:03:44 1 1 2018-05-29 12:23:44 1 1 2018-05-29 13:38:44 1 1 2018-05-29 17:53:44 1 1 2018-05-29 18:23:44 1 1 2018-05-29 21:18:44 1 1 2018-05-29 22:43:44 1 1 2018-05-30 11:53:04 1 1 2018-05-30 12:23:04 1 1 2018-05-30 13:13:04 1 1 2018-05-30 15:48:04 1 1 2018-05-30 16:38:04 1 1 2018-05-30 19:18:04 1 1 2018-05-30 20:08:04 1 1 2018-05-30 21:33:04 1 1 2018-05-30 22:28:04 1 1 2018-05-31 07:28:04 1 1 2018-05-31 09:33:04 1 1 2018-05-31 09:43:04 1 1 2018-05-31 12:43:04 1 1 2018-05-31 14:48:04 1 1 2018-05-31 17:23:04 1 1 2018-05-31 17:58:04 1 1 2018-05-31 19:58:04 1 1 2018-05-31 21:53:04 1 1 2018-06-01 07:43:04 1 1 2018-06-01 10:48:04 1 1 2018-06-01 12:33:04 1 1 2018-06-01 13:03:04 1 1 2018-06-01 13:23:04 1 1 2018-06-01 13:48:04 1 1 2018-06-01 14:23:04 1 1 2018-06-01 15:13:04 1 1 2018-06-01 16:38:04 1 1 2018-06-01 23:53:04 1 1 2018-06-02 08:53:04 1 1 2018-06-02 10:43:04 1 1 2018-06-02 10:48:04 1 1 2018-06-02 11:38:04 1 1 2018-06-02 12:03:04 1 1 2018-06-02 12:38:04 1 1 2018-06-02 13:23:04 1 1 2018-06-02 13:48:04 1 1 2018-06-02 15:18:04 1 1 2018-06-02 19:13:04 1 1 2018-06-02 19:23:04 1 1 2018-06-02 19:58:04 1 1 2018-06-02 21:03:04 1 1 2018-06-02 21:23:04 1 1 2018-06-03 04:03:04 1 1 2018-06-03 13:33:04 1 1 2018-06-03 13:38:04 1 1 2018-06-03 14:18:04 1 1 2018-06-03 16:38:04 1 1 2018-06-03 22:43:04 1 1 2018-06-03 23:53:04 1 1 2018-06-04 05:09:09 1 1 2018-06-04 12:19:09 1 1 2018-06-04 22:54:09 1 1 2018-06-05 01:19:09 1 1 2018-06-05 10:51:39 1 1 2018-06-05 11:11:39 1 1 2018-06-05 12:11:39 1 1 2018-06-05 15:06:39 1 1 2018-06-05 15:16:39 1 1 2018-06-05 20:11:39 1 1 2018-06-05 20:46:39 1 1 2018-06-05 23:16:39 1 1 2018-06-06 00:11:39 1 1 2018-06-06 01:06:39 1 1 2018-06-06 01:11:39 1 1 2018-06-06 04:21:39 1 1 2018-06-06 11:51:39 1 1 2018-06-06 13:06:39 1 1 2018-06-06 13:11:39 1 1 2018-06-06 13:36:39 1 1 2018-06-06 13:41:39 1 1 2018-06-06 14:46:39 1 1 2018-06-06 15:41:39 1 1 2018-06-06 18:01:39 1 1 2018-06-06 18:11:39 1 1 2018-06-06 20:31:39 1 1 2018-06-06 23:26:39 1 1 2018-06-07 00:21:39 1 1 2018-06-07 03:01:35 1 1 2018-06-07 08:16:35 1 1 2018-06-07 10:26:35 1 1 2018-06-07 14:36:35 1 1 2018-06-07 17:16:35 1 1 2018-06-07 23:41:35 1 1 2018-06-08 08:41:35 1 1 2018-06-08 11:46:35 1 1 2018-06-08 14:06:35 1 1 2018-06-08 17:26:35 1 1 2018-06-08 19:31:35 1 1 2018-06-08 20:41:35 1 1 2018-06-09 03:11:35 1 1 2018-06-09 03:56:35 1 1 2018-06-09 04:06:35 1 1 2018-06-09 10:26:35 1 1 2018-06-09 12:21:35 1 1 2018-06-09 14:01:35 1 1 2018-06-09 15:01:35 1 1 2018-06-09 16:56:35 1 1 2018-06-09 18:11:35 1 1 2018-06-09 20:56:35 1 1 2018-06-09 23:01:35 1 1 2018-06-09 23:21:35 1 1 2018-06-10 04:36:35 1 1 2018-06-10 07:51:35 1 1 2018-06-10 09:41:35 1 1 2018-06-10 11:46:35 1 1 2018-06-10 12:21:35 1 1 2018-06-10 12:26:35 1 1 2018-06-10 13:21:35 1 1 2018-06-10 13:56:35 1 1 2018-06-10 14:31:35 1 1 2018-06-10 14:46:35 1 1 2018-06-10 15:16:35 1 1 2018-06-10 16:41:35 1 1 2018-06-10 18:06:35 1 1 2018-06-10 21:21:35 1 1 2018-06-11 09:01:35 1 1 2018-06-11 09:21:35 1 1 2018-06-11 09:26:35 1 1 2018-06-11 13:56:35 1 1 2018-06-11 14:36:35 1 1 2018-06-11 14:56:35 1 1 2018-06-11 16:56:35 1 1 2018-06-11 18:36:35 1 1 2018-06-12 03:41:35 1 1 2018-06-12 08:40:30 1 1 2018-06-12 09:45:30 1 1 2018-06-12 10:30:30 1 1 2018-06-12 14:45:03 1 1 2018-06-12 14:50:03 1 1 2018-06-12 16:35:03 1 1 2018-06-12 17:00:03 1 1 2018-06-12 17:25:03 1 1 2018-06-12 18:30:03 1 1 2018-06-12 19:20:03 1 1 2018-06-12 19:30:03 1 1 2018-06-12 20:25:03 1 1 2018-06-12 21:10:03 1 1 2018-06-12 23:35:03 1 1 2018-06-13 02:52:46 1 1 2018-06-13 07:27:46 1 1 2018-06-13 10:32:46 1 1 2018-06-13 12:42:46 1 1 2018-06-13 13:42:46 1 1 2018-06-13 13:52:46 1 1 2018-06-13 17:42:46 1 1 2018-05-26 23:43:44 1 1 2018-05-27 00:18:44 1 1 2018-05-27 01:48:44 1 1 2018-05-27 02:38:44 1 1 2018-05-27 11:08:44 1 1 2018-05-27 11:38:44 1 1 2018-05-27 11:58:44 1 1 2018-05-27 12:03:44 1 1 2018-05-27 12:28:44 1 1 2018-05-27 12:43:44 1 1 2018-05-27 13:28:44 1 1 2018-05-27 16:23:44 1 1 2018-05-27 17:28:44 1 1 2018-05-27 20:53:44 1 1 2018-05-27 21:08:44 1 1 2018-05-27 23:03:44 1 1 2018-05-27 23:18:44 1 1 2018-05-27 23:38:44 1 1 2018-05-28 08:58:44 1 1 2018-05-28 09:13:44 1 1 2018-05-28 10:58:44 1 1 2018-05-28 14:33:44 1 1 2018-05-28 15:13:44 1 1 2018-05-28 16:33:44 1 1 2018-05-28 18:13:44 1 1 2018-05-28 19:03:44 1 1 2018-05-28 21:43:44 1 1 2018-05-28 22:48:44 1 1 2018-05-28 23:48:44 1 1 2018-05-29 00:18:44 1 1 2018-05-29 10:18:44 1 1 2018-05-29 11:33:44 1 1 2018-05-29 11:53:44 1 1 2018-05-29 13:23:44 1 1 2018-05-29 13:58:44 1 1 2018-05-29 15:08:44 1 1 2018-05-29 15:33:44 1 1 2018-05-29 16:38:44 1 1 2018-05-29 18:03:44 1 1 2018-05-29 22:18:44 1 1 2018-05-29 22:53:44 1 1 2018-05-30 12:08:04 1 1 2018-05-30 12:43:04 1 1 2018-05-30 16:43:04 1 1 2018-05-30 17:13:04 1 1 2018-05-31 00:08:04 1 1 2018-05-31 09:18:04 1 1 2018-05-31 10:23:04 1 1 2018-05-31 10:43:04 1 1 2018-05-31 16:18:04 1 1 2018-05-31 17:08:04 1 1 2018-05-31 17:33:04 1 1 2018-05-31 18:08:04 1 1 2018-05-31 19:53:04 1 1 2018-06-01 01:38:04 1 1 2018-06-01 01:53:04 1 1 2018-06-01 07:58:04 1 1 2018-06-01 09:03:04 1 1 2018-06-01 12:43:04 1 1 2018-06-01 13:28:04 1 1 2018-06-01 13:53:04 1 1 2018-06-01 14:48:04 1 1 2018-06-01 18:33:04 1 1 2018-06-01 19:03:04 1 1 2018-06-01 21:28:04 1 1 2018-06-01 22:43:04 1 1 2018-06-01 23:48:04 1 1 2018-06-02 08:58:04 1 1 2018-06-02 11:03:04 1 1 2018-06-02 12:53:04 1 1 2018-06-02 15:23:04 1 1 2018-06-02 17:28:04 1 1 2018-06-02 19:18:04 1 1 2018-06-02 20:28:04 1 1 2018-06-02 23:03:04 1 1 2018-06-03 02:08:04 1 1 2018-06-03 13:58:04 1 1 2018-06-03 15:23:04 1 1 2018-06-04 09:24:09 1 1 2018-06-04 12:09:09 1 1 2018-06-04 15:29:09 1 1 2018-06-04 21:59:09 1 1 2018-06-05 11:21:39 1 1 2018-06-05 15:31:39 1 1 2018-06-05 16:46:39 1 1 2018-06-05 17:46:39 1 1 2018-06-05 18:16:39 1 1 2018-06-05 18:26:39 1 1 2018-06-05 19:06:39 1 1 2018-06-06 09:01:39 1 1 2018-06-06 12:01:39 1 1 2018-06-06 13:01:39 1 1 2018-06-06 14:31:39 1 1 2018-06-06 18:21:39 1 1 2018-06-06 18:31:39 1 1 2018-06-06 21:21:39 1 1 2018-06-07 10:11:35 1 1 2018-06-07 11:36:35 1 1 2018-06-07 15:16:35 1 1 2018-06-07 16:41:35 1 1 2018-06-07 17:36:35 1 1 2018-06-07 17:56:35 1 1 2018-06-07 23:11:35 1 1 2018-06-08 08:46:35 1 1 2018-06-08 12:46:35 1 1 2018-06-08 13:01:35 1 1 2018-06-08 13:41:35 1 1 2018-06-08 14:36:35 1 1 2018-06-08 17:21:35 1 1 2018-06-08 18:36:36 1 1 2018-06-08 22:56:35 1 1 2018-06-09 00:51:35 1 1 2018-06-09 04:21:35 1 1 2018-06-09 09:36:35 1 1 2018-06-09 10:31:35 1 1 2018-06-09 11:31:35 1 1 2018-06-09 13:36:35 1 1 2018-06-09 16:11:35 1 1 2018-06-09 19:11:35 1 1 2018-06-09 21:56:35 1 1 2018-06-09 23:06:35 1 1 2018-06-10 09:11:35 1 1 2018-06-10 11:06:35 1 1 2018-06-10 12:06:35 1 1 2018-06-10 14:21:35 1 1 2018-06-10 15:31:35 1 1 2018-06-10 15:56:35 1 1 2018-06-10 16:46:35 1 1 2018-06-10 17:46:35 1 1 2018-06-10 20:41:35 1 1 2018-06-11 10:51:35 1 1 2018-06-11 11:41:35 1 1 2018-06-11 12:21:35 1 1 2018-06-11 12:26:35 1 1 2018-06-11 13:01:35 1 1 2018-06-11 16:31:35 1 1 2018-06-11 21:01:35 1 1 2018-06-12 02:31:35 1 1 2018-06-12 08:45:30 1 1 2018-06-12 14:55:03 1 1 2018-06-12 16:40:03 1 1 2018-06-12 17:05:03 1 1 2018-06-12 19:25:03 1 1 2018-06-12 19:40:03 1 1 2018-06-12 20:30:03 1 1 2018-06-12 21:00:03 1 1 2018-06-12 21:05:03 1 1 2018-06-13 08:02:46 1 1 2018-06-13 10:02:46 1 1 2018-06-13 12:12:46 1 1 2018-06-13 16:52:46 1 1 2018-06-13 19:17:46 1 1 2018-06-13 20:07:46 1 1 2018-06-13 20:57:46 1 1 2018-06-13 23:12:46 1 1 2018-06-14 00:27:46 1 1 2018-06-14 04:52:46 1 1 2018-06-14 07:07:46 1 1 2018-06-14 12:17:46 1 1 2018-06-14 12:22:46 1 1 2018-06-14 12:52:46 1 1 2018-06-14 14:47:46 1 1 2018-06-14 15:02:46 1 1 2018-06-14 17:02:46 1 1 2018-06-14 18:17:46 1 1 2018-06-14 19:12:46 1 1 2018-06-14 19:27:46 1 1 2018-06-14 22:32:46 1 1 2018-06-14 22:47:46 1 1 2018-06-14 23:17:46 1 1 2018-06-15 01:52:46 1 1 2018-06-15 10:42:46 1 1 2018-06-15 15:42:46 1 1 2018-06-15 16:42:46 1 1 2018-06-16 01:22:46 1 1 2018-06-16 08:22:46 1 1 2018-06-16 16:52:46 1 1 2018-06-16 18:22:46 1 1 2018-06-16 18:37:46 1 1 2018-06-16 19:37:46 1 1 2018-06-16 19:47:46 1 1 2018-06-16 20:32:46 1 1 2018-06-16 21:47:46 1 1 2018-06-16 22:42:46 1 1 2018-06-17 00:27:46 1 1 2018-05-27 00:03:44 1 1 2018-05-27 02:08:44 1 1 2018-05-27 02:23:44 1 1 2018-05-27 02:48:44 1 1 2018-05-27 11:48:44 1 1 2018-05-27 12:33:44 1 1 2018-05-27 13:33:44 1 1 2018-05-27 14:28:44 1 1 2018-05-27 14:38:44 1 1 2018-05-27 17:03:44 1 1 2018-05-27 17:23:44 1 1 2018-05-27 17:43:44 1 1 2018-05-27 17:58:44 1 1 2018-05-27 18:23:44 1 1 2018-05-27 18:53:44 1 1 2018-05-27 22:38:44 1 1 2018-05-28 00:18:44 1 1 2018-05-28 09:03:44 1 1 2018-05-28 11:08:44 1 1 2018-05-28 11:38:44 1 1 2018-05-28 12:03:44 1 1 2018-05-28 12:58:44 1 1 2018-05-28 15:58:44 1 1 2018-05-28 17:28:44 1 1 2018-05-28 21:28:44 1 1 2018-05-28 21:33:44 1 1 2018-05-28 21:38:44 1 1 2018-05-28 22:38:44 1 1 2018-05-29 01:28:44 1 1 2018-05-29 11:08:44 1 1 2018-05-29 17:18:44 1 1 2018-05-29 18:28:44 1 1 2018-05-30 00:08:44 1 1 2018-05-30 12:13:04 1 1 2018-05-30 12:33:04 1 1 2018-05-30 12:48:04 1 1 2018-05-30 17:48:04 1 1 2018-05-30 21:18:04 1 1 2018-05-31 00:43:04 1 1 2018-05-31 09:28:04 1 1 2018-05-31 11:58:04 1 1 2018-05-31 12:53:04 1 1 2018-05-31 17:43:04 1 1 2018-05-31 17:53:04 1 1 2018-05-31 18:43:04 1 1 2018-05-31 21:03:04 1 1 2018-06-01 08:48:04 1 1 2018-06-01 10:03:04 1 1 2018-06-01 13:58:04 1 1 2018-06-01 17:13:04 1 1 2018-06-01 21:48:04 1 1 2018-06-02 00:28:04 1 1 2018-06-02 01:13:04 1 1 2018-06-02 10:03:04 1 1 2018-06-02 11:43:04 1 1 2018-06-02 12:13:04 1 1 2018-06-02 16:23:04 1 1 2018-06-02 16:58:04 1 1 2018-06-02 22:38:04 1 1 2018-06-02 23:08:04 1 1 2018-06-03 00:58:04 1 1 2018-06-03 15:18:04 1 1 2018-06-03 16:03:04 1 1 2018-06-03 17:18:04 1 1 2018-06-03 23:13:04 1 1 2018-06-04 20:19:09 1 1 2018-06-04 22:09:09 1 1 2018-06-05 01:49:09 1 1 2018-06-05 12:26:39 1 1 2018-06-05 14:31:39 1 1 2018-06-05 20:06:39 1 1 2018-06-05 21:16:39 1 1 2018-06-05 22:46:39 1 1 2018-06-06 00:46:39 1 1 2018-06-06 02:06:39 1 1 2018-06-06 11:56:39 1 1 2018-06-06 12:36:39 1 1 2018-06-06 14:26:39 1 1 2018-06-06 15:16:39 1 1 2018-06-06 15:56:39 1 1 2018-06-06 17:06:39 1 1 2018-06-06 20:16:39 1 1 2018-06-06 23:41:39 1 1 2018-06-07 00:11:39 1 1 2018-06-07 11:21:35 1 1 2018-06-07 14:31:35 1 1 2018-06-07 15:11:35 1 1 2018-06-07 16:46:35 1 1 2018-06-07 16:51:35 1 1 2018-06-07 22:56:35 1 1 2018-06-08 15:21:35 1 1 2018-06-08 18:11:35 1 1 2018-06-08 19:36:35 1 1 2018-06-08 20:31:35 1 1 2018-06-08 22:21:35 1 1 2018-06-09 03:41:35 1 1 2018-06-09 08:26:35 1 1 2018-06-09 12:06:35 1 1 2018-06-09 15:16:35 1 1 2018-06-09 18:16:35 1 1 2018-06-09 20:21:35 1 1 2018-06-09 23:41:35 1 1 2018-06-10 12:16:35 1 1 2018-06-10 13:46:35 1 1 2018-06-10 14:36:35 1 1 2018-06-10 15:46:35 1 1 2018-06-10 18:36:35 1 1 2018-06-10 20:01:35 1 1 2018-06-10 21:16:35 1 1 2018-06-10 22:06:35 1 1 2018-06-11 00:31:35 1 1 2018-06-11 00:56:35 1 1 2018-06-11 12:36:35 1 1 2018-06-11 12:41:35 1 1 2018-06-11 13:36:35 1 1 2018-06-11 13:51:35 1 1 2018-06-11 15:51:35 1 1 2018-06-11 16:06:35 1 1 2018-06-11 19:11:35 1 1 2018-06-11 21:56:35 1 1 2018-06-12 10:25:30 1 1 2018-06-12 15:50:03 1 1 2018-06-12 18:50:03 1 1 2018-06-12 22:25:03 1 1 2018-06-12 23:30:03 1 1 2018-06-12 23:45:03 1 1 2018-06-13 08:22:46 1 1 2018-06-13 11:02:46 1 1 2018-06-13 11:57:46 1 1 2018-06-13 12:37:46 1 1 2018-06-13 13:17:46 1 1 2018-06-13 13:47:46 1 1 2018-06-13 17:02:46 1 1 2018-06-13 17:47:46 1 1 2018-06-13 20:12:46 1 1 2018-06-13 20:42:46 1 1 2018-06-13 21:02:46 1 1 2018-06-14 01:27:46 1 1 2018-06-14 09:32:46 1 1 2018-06-14 13:17:46 1 1 2018-06-14 14:52:46 1 1 2018-06-14 16:17:46 1 1 2018-06-14 16:42:46 1 1 2018-06-15 10:52:46 1 1 2018-06-15 17:47:46 1 1 2018-06-16 00:47:46 1 1 2018-06-16 16:22:46 1 1 2018-06-16 21:22:46 1 1 2018-06-16 23:37:46 1 1 2018-06-17 01:57:46 1 1 2018-06-17 09:22:46 1 1 2018-06-17 10:07:46 1 1 2018-06-17 15:42:46 1 1 2018-06-17 17:07:46 1 1 2018-06-17 17:32:46 1 1 2018-06-17 18:07:46 1 1 2018-06-17 19:17:46 1 1 2018-06-17 21:32:46 1 1 2018-06-17 21:37:46 1 1 2018-06-17 23:17:46 1 1 2018-06-18 00:17:46 1 1 2018-06-18 00:22:46 1 1 2018-06-18 13:12:46 1 1 2018-06-18 13:27:46 1 1 2018-06-18 18:02:46 1 1 2018-06-18 20:57:46 1 1 2018-06-18 23:37:46 1 1 2018-06-19 00:07:46 1 1 2018-06-19 10:02:46 1 1 2018-06-19 15:32:46 1 1 2018-06-19 16:37:46 1 1 2018-06-19 20:12:46 1 1 2018-06-19 22:12:46 1 1 2018-06-19 23:27:46 1 1 2018-06-20 01:02:46 1 1 2018-06-20 04:02:46 1 1 2018-06-20 12:12:46 1 1 2018-06-20 14:02:46 1 1 2018-06-20 15:27:46 1 1 2018-06-20 15:42:46 1 1 2018-06-20 16:02:46 1 1 2018-06-20 16:37:46 1 1 2018-06-20 17:22:46 1 1 2018-06-20 18:32:46 1 1 2018-06-20 20:47:46 1 1 2018-06-20 20:52:46 1 1 2018-06-20 23:27:46 1 1 2018-06-21 06:37:46 1 1 2018-06-21 07:22:46 1 1 2018-06-21 14:47:46 1 1 2018-06-21 18:22:46 1 1 2018-06-21 20:52:46 1 1 2018-06-22 01:47:46 1 1 2018-06-22 08:12:46 1 1 2018-06-22 09:57:46 1 1 2018-06-22 11:42:46 1 1 2018-06-22 12:22:46 1 1 2018-06-22 20:17:46 1 1 2018-06-22 22:32:46 1 1 2018-06-23 09:01:31 1 1 2018-06-23 09:36:31 1 1 2018-06-23 11:56:31 1 1 2018-06-23 13:01:31 1 1 2018-06-23 13:26:31 1 1 2018-06-23 14:01:31 1 1 2018-06-23 18:26:31 1 1 2018-06-23 19:26:31 1 1 2018-06-23 19:56:31 1 1 2018-06-23 20:31:31 1 1 2018-06-23 22:56:31 1 1 2018-06-23 23:46:31 1 1 2018-06-24 00:44:28 1 1 2018-06-24 09:17:35 1 1 2018-06-24 11:37:35 1 1 2018-06-24 19:17:35 1 1 2018-06-24 22:27:35 1 1 2018-06-24 22:57:35 1 1 2018-06-24 23:47:35 1 1 2018-06-25 01:07:35 1 1 2018-06-25 06:37:35 1 1 2018-06-25 08:07:35 1 1 2018-06-25 09:57:35 1 1 2018-06-25 10:42:35 1 1 2018-06-25 13:22:35 1 1 2018-06-25 21:17:35 1 1 2018-06-26 08:32:35 1 1 2018-06-26 09:22:35 1 1 2018-06-26 09:52:35 1 1 2018-06-26 10:07:35 1 1 2018-06-26 12:37:35 1 1 2018-06-26 15:12:35 1 1 2018-06-26 15:37:35 1 1 2018-06-26 16:32:35 1 1 2018-06-26 16:57:35 1 1 2018-06-26 18:27:35 1 1 2018-06-26 19:17:35 1 1 2018-06-26 20:27:35 1 1 2018-06-26 21:32:35 1 1 2018-06-26 22:02:35 1 1 2018-06-26 22:32:35 1 1 2018-06-26 23:17:35 1 1 2018-06-27 00:12:35 1 1 2018-06-27 07:22:35 1 1 2018-06-27 09:17:35 1 1 2018-06-27 10:52:35 1 1 2018-06-27 15:22:35 1 1 2018-06-27 16:42:35 1 1 2018-06-27 18:02:35 1 1 2018-06-27 20:12:35 1 1 2018-06-27 20:27:35 1 1 2018-06-27 22:32:35 1 1 2018-06-28 01:22:35 1 1 2018-06-28 06:47:35 1 1 2018-06-28 08:47:35 1 1 2018-06-28 10:07:35 1 1 2018-06-28 12:22:35 1 1 2018-06-28 15:52:35 1 1 2018-06-28 17:17:35 1 1 2018-06-28 17:52:35 1 1 2018-06-28 22:52:35 1 1 2018-06-29 07:37:35 1 1 2018-06-29 16:02:35 1 1 2018-06-29 17:17:35 1 1 2018-06-29 20:52:35 1 1 2018-06-29 23:42:35 1 1 2018-06-30 02:42:35 1 1 2018-06-30 06:07:35 1 1 2018-06-30 08:07:35 1 1 2018-06-30 10:02:35 1 1 2018-06-30 10:42:35 1 1 2018-06-30 13:02:35 1 1 2018-06-30 14:17:35 1 1 2018-06-30 14:47:35 1 1 2018-06-30 17:57:35 1 1 2018-06-30 18:07:35 1 1 2018-06-30 19:02:35 1 1 2018-06-30 20:27:35 1 1 2018-06-30 20:42:35 1 1 2018-06-30 23:47:35 1 1 2018-07-01 02:52:35 1 1 2018-07-01 03:12:35 1 1 2018-07-01 10:56:06 1 1 2018-07-01 11:41:06 1 1 2018-07-01 16:31:06 1 1 2018-07-02 07:46:06 1 1 2018-07-02 09:56:06 1 1 2018-07-02 10:26:06 1 1 2018-07-02 12:46:06 1 1 2018-07-02 13:06:06 1 1 2018-07-02 13:36:06 1 1 2018-07-02 16:16:06 1 1 2018-07-02 17:56:06 1 1 2018-07-03 01:11:06 1 1 2018-07-03 07:36:06 1 1 2018-07-03 09:51:06 1 1 2018-07-03 11:36:06 1 1 2018-07-03 16:56:06 1 1 2018-07-03 19:36:06 1 1 2018-07-03 20:01:06 1 1 2018-07-03 20:36:06 1 1 2018-07-04 01:36:06 1 1 2018-07-04 03:21:06 1 1 2018-07-04 07:26:06 1 1 2018-07-04 09:06:06 1 1 2018-07-04 09:36:06 1 1 2018-07-04 10:01:06 1 1 2018-07-04 12:01:06 1 1 2018-07-04 16:46:06 1 1 2018-07-04 17:31:06 1 1 2018-07-04 21:26:06 1 1 2018-07-04 23:41:06 1 1 2018-07-05 04:16:06 1 1 2018-07-05 06:51:06 1 1 2018-07-05 11:26:06 1 1 2018-07-05 12:36:06 1 1 2018-07-06 00:51:06 1 1 2018-07-06 09:46:06 1 1 2018-07-06 13:21:06 1 1 2018-07-06 21:41:06 1 1 2018-07-07 11:11:06 1 1 2018-07-07 12:01:06 1 1 2018-07-07 17:16:06 1 1 2018-07-07 19:36:06 1 1 2018-07-07 21:06:06 1 1 2018-07-07 23:46:06 1 1 2018-07-08 09:21:06 1 1 2018-07-08 12:41:06 1 1 2018-07-09 11:39:58 1 1 2018-07-09 17:54:58 1 1 2018-07-09 19:29:58 1 1 2018-07-09 23:24:58 1 1 2018-07-10 11:09:58 1 1 2018-07-10 12:04:58 1 1 2018-07-10 17:04:58 1 1 2018-07-10 20:39:58 1 1 2018-07-10 20:44:58 1 1 2018-07-10 21:49:58 1 1 2018-07-10 22:54:58 1 1 2018-07-11 07:59:58 1 1 2018-07-11 09:09:58 1 1 2018-07-11 10:09:58 1 1 2018-07-11 11:24:58 1 1 2018-07-11 13:14:58 1 1 2018-07-11 13:24:58 1 1 2018-07-11 15:39:58 1 1 2018-07-11 20:14:58 1 1 2018-07-11 22:04:58 1 1 2018-07-11 22:34:58 1 1 2018-07-12 02:14:58 1 1 2018-07-12 09:44:58 1 1 2018-07-12 11:14:58 1 1 2018-07-12 11:49:58 1 1 2018-07-12 15:04:58 1 1 2018-07-12 22:49:58 1 1 2018-07-12 23:44:58 1 1 2018-07-13 10:14:58 1 1 2018-07-13 11:19:58 1 1 2018-07-13 18:09:58 1 1 2018-07-13 23:59:58 1 1 2018-07-14 09:04:58 1 1 2018-07-14 15:09:58 1 1 2018-07-14 19:04:58 1 1 2018-07-14 19:34:58 1 1 2018-07-14 22:29:58 1 1 2018-07-15 00:34:58 1 1 2018-07-15 01:29:58 1 1 2018-07-15 09:49:58 1 1 2018-07-15 12:24:58 1 1 2018-07-15 12:54:58 1 1 2018-07-15 13:09:58 1 1 2018-06-20 21:07:46 1 1 2018-06-20 23:42:46 1 1 2018-06-21 06:47:46 1 1 2018-06-21 14:12:46 1 1 2018-06-21 15:02:46 1 1 2018-06-21 17:22:46 1 1 2018-06-21 17:37:46 1 1 2018-06-22 11:27:46 1 1 2018-06-22 12:52:46 1 1 2018-06-22 15:22:46 1 1 2018-06-22 17:17:46 1 1 2018-06-22 23:02:46 1 1 2018-06-23 09:26:31 1 1 2018-06-23 10:06:31 1 1 2018-06-23 11:51:31 1 1 2018-06-23 12:46:31 1 1 2018-06-23 13:21:31 1 1 2018-06-23 18:41:31 1 1 2018-06-23 19:41:31 1 1 2018-06-23 20:26:31 1 1 2018-06-23 21:31:31 1 1 2018-06-23 22:06:31 1 1 2018-06-23 22:16:31 1 1 2018-06-23 23:31:31 1 1 2018-06-24 00:59:28 1 1 2018-06-24 09:42:35 1 1 2018-06-24 10:02:35 1 1 2018-06-24 11:22:35 1 1 2018-06-24 13:57:35 1 1 2018-06-24 14:22:35 1 1 2018-06-24 15:12:35 1 1 2018-06-24 16:07:35 1 1 2018-06-24 19:12:35 1 1 2018-06-24 20:07:35 1 1 2018-06-24 22:02:35 1 1 2018-06-24 22:47:35 1 1 2018-06-24 23:42:35 1 1 2018-06-25 07:12:35 1 1 2018-06-25 07:57:35 1 1 2018-06-25 10:02:35 1 1 2018-06-25 11:07:35 1 1 2018-06-25 11:27:35 1 1 2018-06-25 13:32:35 1 1 2018-06-25 14:27:35 1 1 2018-06-25 15:47:35 1 1 2018-06-25 15:52:35 1 1 2018-06-25 16:12:35 1 1 2018-06-25 16:42:35 1 1 2018-06-25 19:12:35 1 1 2018-06-25 21:52:35 1 1 2018-06-25 22:57:35 1 1 2018-06-26 01:52:35 1 1 2018-06-26 09:37:35 1 1 2018-06-26 10:32:35 1 1 2018-06-26 11:22:35 1 1 2018-06-26 12:42:35 1 1 2018-06-26 13:32:35 1 1 2018-06-26 15:17:35 1 1 2018-06-26 15:22:35 1 1 2018-06-26 21:12:35 1 1 2018-06-26 22:42:35 1 1 2018-06-26 23:42:35 1 1 2018-06-26 23:47:35 1 1 2018-06-27 10:37:35 1 1 2018-06-27 11:32:35 1 1 2018-06-27 12:22:35 1 1 2018-06-27 12:32:35 1 1 2018-06-27 13:37:35 1 1 2018-06-27 14:02:35 1 1 2018-06-27 14:47:35 1 1 2018-06-27 16:22:35 1 1 2018-06-28 07:27:35 1 1 2018-06-28 09:52:35 1 1 2018-06-28 10:52:35 1 1 2018-06-28 13:32:35 1 1 2018-06-28 16:47:35 1 1 2018-06-28 19:12:35 1 1 2018-06-28 21:12:35 1 1 2018-06-28 22:42:35 1 1 2018-06-29 02:02:35 1 1 2018-06-29 10:57:35 1 1 2018-06-29 13:37:35 1 1 2018-06-29 13:52:35 1 1 2018-06-30 00:12:35 1 1 2018-06-30 09:47:35 1 1 2018-06-30 10:37:35 1 1 2018-06-30 11:47:35 1 1 2018-06-30 12:12:35 1 1 2018-06-30 12:22:35 1 1 2018-06-30 13:37:35 1 1 2018-06-30 15:42:35 1 1 2018-06-30 16:22:35 1 1 2018-06-30 16:57:35 1 1 2018-06-30 18:22:35 1 1 2018-06-30 20:12:35 1 1 2018-06-30 21:57:35 1 1 2018-06-30 23:27:35 1 1 2018-07-01 01:22:35 1 1 2018-07-01 02:47:35 1 1 2018-07-01 11:31:06 1 1 2018-07-01 12:51:06 1 1 2018-07-01 13:06:06 1 1 2018-07-01 13:56:06 1 1 2018-07-01 14:26:06 1 1 2018-07-01 16:56:06 1 1 2018-07-01 18:01:06 1 1 2018-07-01 20:06:06 1 1 2018-07-01 21:16:06 1 1 2018-07-01 21:56:06 1 1 2018-07-02 08:01:07 1 1 2018-07-02 10:01:06 1 1 2018-07-02 12:56:06 1 1 2018-07-02 13:31:06 1 1 2018-07-02 19:11:06 1 1 2018-07-02 19:46:06 1 1 2018-07-03 00:01:06 1 1 2018-07-03 02:36:06 1 1 2018-07-03 08:16:06 1 1 2018-07-03 09:46:06 1 1 2018-07-03 11:31:06 1 1 2018-07-03 21:11:06 1 1 2018-07-04 01:06:06 1 1 2018-07-04 03:06:06 1 1 2018-07-04 09:26:06 1 1 2018-07-04 09:46:06 1 1 2018-07-04 10:31:06 1 1 2018-07-04 16:41:06 1 1 2018-07-04 19:31:06 1 1 2018-07-04 20:16:06 1 1 2018-07-04 21:16:06 1 1 2018-07-05 02:16:06 1 1 2018-07-05 07:51:06 1 1 2018-07-05 12:26:06 1 1 2018-07-05 13:36:06 1 1 2018-07-05 17:01:06 1 1 2018-07-05 18:21:06 1 1 2018-07-05 19:56:06 1 1 2018-07-06 00:21:06 1 1 2018-07-06 12:51:06 1 1 2018-07-07 12:06:06 1 1 2018-07-07 16:11:06 1 1 2018-07-07 20:31:06 1 1 2018-07-08 01:56:06 1 1 2018-07-08 18:01:06 1 1 2018-07-08 19:21:06 1 1 2018-07-09 00:56:06 1 1 2018-07-09 11:59:58 1 1 2018-07-09 17:44:58 1 1 2018-07-10 01:29:58 1 1 2018-07-10 12:34:58 1 1 2018-07-10 13:54:58 1 1 2018-07-10 15:39:58 1 1 2018-07-10 19:34:58 1 1 2018-07-10 23:24:58 1 1 2018-07-11 01:04:58 1 1 2018-07-11 01:54:58 1 1 2018-07-11 09:49:58 1 1 2018-07-11 12:34:58 1 1 2018-07-11 22:19:58 1 1 2018-07-12 11:34:58 1 1 2018-07-12 13:04:58 1 1 2018-07-12 15:44:58 1 1 2018-07-12 19:04:58 1 1 2018-07-12 21:04:58 1 1 2018-07-12 21:54:58 1 1 2018-07-13 03:24:58 1 1 2018-07-13 12:39:58 1 1 2018-07-13 17:44:58 1 1 2018-07-13 18:29:58 1 1 2018-07-13 20:19:58 1 1 2018-07-14 09:44:58 1 1 2018-07-14 09:59:58 1 1 2018-07-14 12:29:58 1 1 2018-07-14 13:14:58 1 1 2018-07-14 18:14:58 1 1 2018-07-14 21:49:58 1 1 2018-07-14 22:39:58 1 1 2018-07-14 23:09:58 1 1 2018-07-14 23:24:58 1 1 2018-07-15 01:19:58 1 1 2018-07-15 01:54:58 1 1 2018-07-15 10:14:58 1 1 2018-07-15 11:44:58 1 1 2018-07-15 12:19:58 1 1 2018-07-15 13:04:58 1 1 2018-06-20 22:07:46 1 1 2018-06-20 23:52:46 1 1 2018-06-21 07:02:46 1 1 2018-06-21 11:42:46 1 1 2018-06-21 17:52:46 1 1 2018-06-21 19:17:46 1 1 2018-06-22 19:17:46 1 1 2018-06-22 21:17:46 1 1 2018-06-22 21:22:46 1 1 2018-06-22 22:42:46 1 1 2018-06-23 00:27:46 1 1 2018-06-23 02:12:46 1 1 2018-06-23 10:56:31 1 1 2018-06-23 11:21:31 1 1 2018-06-23 12:11:31 1 1 2018-06-23 15:11:31 1 1 2018-06-23 17:21:31 1 1 2018-06-23 19:31:31 1 1 2018-06-23 20:16:31 1 1 2018-06-23 21:16:31 1 1 2018-06-23 23:01:31 1 1 2018-06-24 01:14:28 1 1 2018-06-24 10:07:35 1 1 2018-06-24 11:07:35 1 1 2018-06-24 11:32:35 1 1 2018-06-24 12:32:35 1 1 2018-06-24 13:22:35 1 1 2018-06-24 18:07:35 1 1 2018-06-24 18:47:35 1 1 2018-06-24 23:12:35 1 1 2018-06-24 23:37:35 1 1 2018-06-25 01:27:35 1 1 2018-06-25 08:02:35 1 1 2018-06-25 09:27:35 1 1 2018-06-25 10:07:35 1 1 2018-06-25 13:52:35 1 1 2018-06-25 15:12:35 1 1 2018-06-25 20:02:35 1 1 2018-06-25 21:47:35 1 1 2018-06-25 22:37:35 1 1 2018-06-25 23:12:35 1 1 2018-06-25 23:47:35 1 1 2018-06-26 02:22:35 1 1 2018-06-26 11:07:35 1 1 2018-06-26 15:02:35 1 1 2018-06-26 15:52:35 1 1 2018-06-26 16:22:35 1 1 2018-06-26 17:17:35 1 1 2018-06-26 18:12:35 1 1 2018-06-26 19:12:35 1 1 2018-06-26 21:42:35 1 1 2018-06-26 23:07:35 1 1 2018-06-27 01:02:35 1 1 2018-06-27 11:37:35 1 1 2018-06-27 13:27:35 1 1 2018-06-27 14:42:35 1 1 2018-06-27 14:52:35 1 1 2018-06-27 14:57:35 1 1 2018-06-27 15:47:35 1 1 2018-06-27 18:42:35 1 1 2018-06-27 19:57:35 1 1 2018-06-27 20:17:35 1 1 2018-06-27 22:07:35 1 1 2018-06-27 22:57:35 1 1 2018-06-28 02:27:35 1 1 2018-06-28 12:17:35 1 1 2018-06-28 13:47:35 1 1 2018-06-28 15:07:35 1 1 2018-06-28 17:12:35 1 1 2018-06-28 17:42:35 1 1 2018-06-28 17:47:35 1 1 2018-06-28 17:57:35 1 1 2018-06-28 19:02:35 1 1 2018-06-28 23:12:35 1 1 2018-06-29 00:42:35 1 1 2018-06-29 01:57:35 1 1 2018-06-29 12:07:35 1 1 2018-06-29 18:17:35 1 1 2018-06-29 18:37:35 1 1 2018-06-29 20:17:35 1 1 2018-06-29 21:57:35 1 1 2018-06-30 01:52:35 1 1 2018-06-30 10:07:35 1 1 2018-06-30 12:27:35 1 1 2018-06-30 13:32:35 1 1 2018-06-30 13:47:35 1 1 2018-06-30 15:32:35 1 1 2018-06-30 16:27:35 1 1 2018-06-30 17:27:35 1 1 2018-06-30 17:47:35 1 1 2018-06-30 20:22:35 1 1 2018-06-30 20:47:35 1 1 2018-07-01 12:16:06 1 1 2018-07-01 13:11:06 1 1 2018-07-01 15:21:06 1 1 2018-07-01 17:01:06 1 1 2018-07-01 21:31:06 1 1 2018-07-02 09:41:06 1 1 2018-07-02 11:26:06 1 1 2018-07-02 12:31:06 1 1 2018-07-02 14:01:06 1 1 2018-07-02 15:06:06 1 1 2018-07-02 15:56:06 1 1 2018-07-02 17:51:06 1 1 2018-07-02 20:06:06 1 1 2018-07-02 21:26:06 1 1 2018-07-02 23:41:06 1 1 2018-07-03 11:26:06 1 1 2018-07-03 13:11:06 1 1 2018-07-03 15:11:06 1 1 2018-07-03 16:41:06 1 1 2018-07-03 17:21:06 1 1 2018-07-03 17:41:06 1 1 2018-07-03 18:21:06 1 1 2018-07-03 20:16:06 1 1 2018-07-04 01:46:06 1 1 2018-07-04 12:16:06 1 1 2018-07-04 20:51:06 1 1 2018-07-04 21:31:06 1 1 2018-07-04 21:41:06 1 1 2018-07-04 23:46:06 1 1 2018-07-05 16:36:06 1 1 2018-07-05 17:46:06 1 1 2018-07-05 23:21:06 1 1 2018-07-06 13:31:06 1 1 2018-07-06 17:41:06 1 1 2018-07-06 20:56:06 1 1 2018-07-07 13:06:06 1 1 2018-07-07 16:46:06 1 1 2018-07-07 21:41:06 1 1 2018-07-08 20:31:06 1 1 2018-07-08 23:46:06 1 1 2018-07-09 19:09:58 1 1 2018-07-10 00:34:58 1 1 2018-07-10 12:59:58 1 1 2018-07-10 13:59:58 1 1 2018-07-10 19:29:58 1 1 2018-07-10 21:44:58 1 1 2018-07-11 11:19:58 1 1 2018-07-11 15:34:58 1 1 2018-07-11 16:49:58 1 1 2018-07-11 21:49:58 1 1 2018-07-11 22:59:58 1 1 2018-07-11 23:09:58 1 1 2018-07-12 00:29:58 1 1 2018-07-12 13:19:58 1 1 2018-07-12 18:09:58 1 1 2018-07-12 21:14:58 1 1 2018-07-13 22:14:58 1 1 2018-07-14 01:34:58 1 1 2018-07-14 15:14:58 1 1 2018-07-14 20:59:58 1 1 2018-07-14 21:59:58 1 1 2018-07-14 22:24:58 1 1 2018-07-14 22:54:58 1 1 2018-07-14 23:14:58 1 1 2018-07-15 12:49:58 1 1 2018-07-15 13:34:58 1 1 2018-07-15 15:09:58 1 1 2018-07-15 15:14:58 1 1 2018-07-15 16:04:58 1 1 2018-07-15 16:09:58 1 1 2018-07-15 16:54:58 1 1 2018-07-15 16:59:58 1 1 2018-07-15 17:09:58 1 1 2018-07-15 18:29:58 1 1 2018-07-15 23:04:58 1 1 2018-07-16 02:09:58 1 1 2018-07-16 02:14:58 1 1 2018-07-16 02:29:58 1 1 2018-07-16 10:04:58 1 1 2018-07-16 11:39:58 1 1 2018-07-16 13:49:58 1 1 2018-07-16 14:19:58 1 1 2018-07-16 15:19:58 1 1 2018-07-16 16:44:58 1 1 2018-07-16 16:49:59 1 1 2018-07-16 20:19:58 1 1 2018-07-16 23:29:58 1 1 2018-07-17 03:49:58 1 1 2018-07-17 07:14:58 1 1 2018-07-17 09:09:58 1 1 2018-07-17 11:29:58 1 1 2018-07-17 11:54:58 1 1 2018-07-17 11:59:58 1 1 2018-07-17 12:19:58 1 1 2018-07-17 20:29:58 1 1 2018-07-17 20:39:58 1 1 2018-07-17 21:49:58 1 1 2018-07-18 06:44:58 1 1 2018-07-18 09:24:58 1 1 2018-07-18 10:09:58 1 1 2018-07-18 11:09:58 1 1 2018-07-18 11:34:58 1 1 2018-07-18 14:49:58 1 1 2018-07-18 16:49:58 1 1 2018-07-18 17:24:58 1 1 2018-07-18 17:34:58 1 1 2018-07-18 17:59:58 1 1 2018-07-18 19:14:58 1 1 2018-07-18 20:04:58 1 1 2018-07-18 20:29:58 1 1 2018-07-18 21:54:58 1 1 2018-07-18 23:34:58 1 1 2018-07-19 00:44:58 1 1 2018-07-19 07:49:58 1 1 2018-07-19 09:24:58 1 1 2018-07-19 09:29:58 1 1 2018-07-19 14:09:58 1 1 2018-07-19 16:49:58 1 1 2018-07-19 17:44:58 1 1 2018-07-19 19:39:58 1 1 2018-07-19 22:24:58 1 1 2018-07-19 23:04:58 1 1 2018-07-20 09:31:48 1 1 2018-07-20 13:11:48 1 1 2018-07-20 15:11:48 1 1 2018-07-20 16:36:48 1 1 2018-07-20 17:06:48 1 1 2018-07-20 19:41:48 1 1 2018-07-20 21:26:48 1 1 2018-07-20 22:26:48 1 1 2018-07-21 00:16:48 1 1 2018-07-21 07:56:48 1 1 2018-07-21 08:16:48 1 1 2018-07-21 08:36:48 1 1 2018-07-21 10:56:48 1 1 2018-07-21 13:01:48 1 1 2018-07-21 15:26:48 1 1 2018-07-21 15:46:48 1 1 2018-07-21 16:06:48 1 1 2018-07-21 16:11:48 1 1 2018-07-21 17:06:48 1 1 2018-07-21 18:56:48 1 1 2018-07-21 19:06:48 1 1 2018-07-21 19:16:48 1 1 2018-07-21 20:36:48 1 1 2018-07-21 21:21:48 1 1 2018-07-22 05:51:48 1 1 2018-07-22 07:51:48 1 1 2018-07-22 11:56:48 1 1 2018-07-22 12:01:48 1 1 2018-07-22 12:26:48 1 1 2018-07-22 12:31:48 1 1 2018-07-22 13:11:48 1 1 2018-07-22 14:21:48 1 1 2018-07-22 15:36:48 1 1 2018-07-22 16:01:48 1 1 2018-07-22 16:26:48 1 1 2018-07-22 20:01:48 1 1 2018-07-22 23:36:48 1 1 2018-07-23 04:30:28 1 1 2018-07-23 15:55:28 1 1 2018-07-23 16:00:28 1 1 2018-07-23 17:55:28 1 1 2018-07-23 20:35:28 1 1 2018-07-23 22:55:28 1 1 2018-07-24 06:45:33 1 1 2018-07-24 10:20:33 1 1 2018-07-24 13:50:33 1 1 2018-07-24 15:45:33 1 1 2018-07-24 16:00:33 1 1 2018-07-24 16:10:33 1 1 2018-07-24 16:40:33 1 1 2018-07-24 17:15:33 1 1 2018-07-24 18:10:33 1 1 2018-07-24 18:15:33 1 1 2018-07-24 18:20:33 1 1 2018-07-24 18:35:33 1 1 2018-07-24 18:55:33 1 1 2018-07-24 19:45:33 1 1 2018-07-24 20:50:33 1 1 2018-07-24 21:55:33 1 1 2018-07-24 22:10:33 1 1 2018-07-24 23:25:34 1 1 2018-07-25 00:55:33 1 1 2018-07-25 09:50:33 1 1 2018-07-25 10:30:33 1 1 2018-07-25 11:05:33 1 1 2018-07-25 11:55:33 1 1 2018-07-25 13:30:33 1 1 2018-07-25 14:40:33 1 1 2018-07-25 14:55:33 1 1 2018-07-25 15:55:33 1 1 2018-07-25 16:30:33 1 1 2018-07-25 17:20:33 1 1 2018-07-25 17:50:33 1 1 2018-07-25 17:55:33 1 1 2018-07-25 18:55:33 1 1 2018-07-25 19:35:33 1 1 2018-07-25 19:40:33 1 1 2018-07-25 20:30:33 1 1 2018-07-25 22:35:33 1 1 2018-07-26 01:30:33 1 1 2018-07-26 09:00:33 1 1 2018-07-26 11:15:33 1 1 2018-07-26 14:25:33 1 1 2018-07-26 16:10:33 1 1 2018-07-26 18:05:33 1 1 2018-07-26 19:10:33 1 1 2018-07-26 20:53:50 1 1 2018-07-26 22:48:50 1 1 2018-07-27 06:50:09 1 1 2018-07-27 09:20:09 1 1 2018-07-27 10:30:09 1 1 2018-07-27 11:55:09 1 1 2018-07-27 12:35:09 1 1 2018-07-27 13:45:09 1 1 2018-07-27 14:40:09 1 1 2018-07-27 17:00:09 1 1 2018-07-27 18:00:09 1 1 2018-07-27 18:10:09 1 1 2018-07-27 18:45:09 1 1 2018-07-27 19:25:09 1 1 2018-07-27 19:40:09 1 1 2018-07-27 22:35:09 1 1 2018-07-27 23:15:09 1 1 2018-07-27 23:50:09 1 1 2018-07-28 00:50:09 1 1 2018-07-28 09:15:09 1 1 2018-07-28 13:45:09 1 1 2018-07-28 15:20:09 1 1 2018-07-28 17:20:09 1 1 2018-07-28 17:30:09 1 1 2018-07-28 23:40:09 1 1 2018-07-28 23:55:09 1 1 2018-07-29 00:30:09 1 1 2018-07-29 00:45:09 1 1 2018-07-29 01:10:09 1 1 2018-07-29 12:45:09 1 1 2018-07-29 16:50:09 1 1 2018-07-29 17:20:09 1 1 2018-07-29 18:15:09 1 1 2018-07-29 19:30:09 1 1 2018-07-29 20:50:09 1 1 2018-07-29 22:05:09 1 1 2018-07-29 22:10:09 1 1 2018-07-29 23:00:09 1 1 2018-07-29 23:10:09 1 1 2018-07-29 23:15:09 1 1 2018-07-29 23:55:09 1 1 2018-07-30 10:55:09 1 1 2018-07-30 13:55:09 1 1 2018-07-30 17:35:09 1 1 2018-07-30 19:45:09 1 1 2018-07-30 20:25:09 1 1 2018-07-30 22:00:09 1 1 2018-07-30 23:00:09 1 1 2018-07-30 23:10:09 1 1 2018-07-30 23:35:09 1 1 2018-07-31 00:10:09 1 1 2018-07-31 09:20:09 1 1 2018-07-31 10:30:09 1 1 2018-07-31 12:20:09 1 1 2018-07-31 13:55:09 1 1 2018-07-31 14:45:09 1 1 2018-07-31 14:55:09 1 1 2018-07-31 15:30:09 1 1 2018-07-31 17:10:09 1 1 2018-07-31 20:15:09 1 1 2018-07-31 22:55:09 1 1 2018-07-31 23:55:09 1 1 2018-08-01 09:45:09 1 1 2018-08-01 10:05:09 1 1 2018-08-01 11:50:09 1 1 2018-08-01 13:35:09 1 1 2018-08-01 14:00:09 1 1 2018-08-01 15:30:09 1 1 2018-08-01 16:35:09 1 1 2018-08-01 20:20:09 1 1 2018-07-17 13:04:58 1 1 2018-07-17 13:39:58 1 1 2018-07-17 13:59:58 1 1 2018-07-17 15:09:58 1 1 2018-07-17 16:24:58 1 1 2018-07-17 18:14:58 1 1 2018-07-17 18:29:58 1 1 2018-07-17 19:04:58 1 1 2018-07-17 20:34:58 1 1 2018-07-17 20:44:58 1 1 2018-07-17 22:14:58 1 1 2018-07-18 00:19:58 1 1 2018-07-18 09:34:58 1 1 2018-07-18 10:14:58 1 1 2018-07-18 10:24:58 1 1 2018-07-18 10:54:58 1 1 2018-07-18 16:19:58 1 1 2018-07-18 17:54:58 1 1 2018-07-18 18:09:58 1 1 2018-07-18 21:49:58 1 1 2018-07-18 23:24:58 1 1 2018-07-19 08:44:58 1 1 2018-07-19 10:44:58 1 1 2018-07-19 11:59:58 1 1 2018-07-19 12:29:58 1 1 2018-07-19 22:29:58 1 1 2018-07-20 00:39:58 1 1 2018-07-20 12:06:48 1 1 2018-07-20 13:31:48 1 1 2018-07-20 17:11:48 1 1 2018-07-20 22:11:48 1 1 2018-07-21 08:11:48 1 1 2018-07-21 08:51:48 1 1 2018-07-21 10:51:48 1 1 2018-07-21 12:16:48 1 1 2018-07-21 14:16:48 1 1 2018-07-21 17:21:48 1 1 2018-07-21 17:46:48 1 1 2018-07-21 19:21:48 1 1 2018-07-22 07:01:48 1 1 2018-07-22 10:21:48 1 1 2018-07-22 12:06:48 1 1 2018-07-22 15:41:48 1 1 2018-07-23 14:35:28 1 1 2018-07-23 20:25:28 1 1 2018-07-23 22:20:28 1 1 2018-07-24 02:30:28 1 1 2018-07-24 09:45:33 1 1 2018-07-24 12:15:33 1 1 2018-07-24 15:55:33 1 1 2018-07-24 17:25:33 1 1 2018-07-24 22:45:33 1 1 2018-07-25 09:55:33 1 1 2018-07-25 11:30:33 1 1 2018-07-25 12:25:33 1 1 2018-07-25 17:30:33 1 1 2018-07-25 18:10:33 1 1 2018-07-25 18:30:33 1 1 2018-07-25 19:00:33 1 1 2018-07-25 23:05:33 1 1 2018-07-26 00:10:33 1 1 2018-07-26 09:10:33 1 1 2018-07-26 21:58:50 1 1 2018-07-26 22:33:50 1 1 2018-07-27 00:33:50 1 1 2018-07-27 08:15:09 1 1 2018-07-27 11:15:09 1 1 2018-07-27 14:10:09 1 1 2018-07-27 22:55:09 1 1 2018-07-27 23:25:09 1 1 2018-07-28 01:35:09 1 1 2018-07-28 02:25:09 1 1 2018-07-28 03:00:09 1 1 2018-07-28 10:40:09 1 1 2018-07-28 12:25:09 1 1 2018-07-28 13:10:09 1 1 2018-07-28 16:50:09 1 1 2018-07-28 22:55:09 1 1 2018-07-29 14:10:09 1 1 2018-07-29 16:35:09 1 1 2018-07-29 16:45:09 1 1 2018-07-29 17:15:09 1 1 2018-07-29 22:00:09 1 1 2018-07-29 23:20:09 1 1 2018-07-30 11:45:09 1 1 2018-07-30 15:05:09 1 1 2018-07-30 21:20:09 1 1 2018-07-30 21:25:09 1 1 2018-07-30 21:55:09 1 1 2018-07-31 10:40:09 1 1 2018-07-31 12:15:09 1 1 2018-07-31 16:05:09 1 1 2018-07-31 19:00:09 1 1 2018-08-01 11:45:09 1 1 2018-08-01 20:40:09 1 1 2018-08-01 21:00:09 1 1 2018-08-01 22:20:09 1 1 2018-08-01 23:20:09 1 1 2018-08-01 23:45:09 1 1 2018-08-02 11:15:09 1 1 2018-08-02 11:55:09 1 1 2018-08-02 14:20:09 1 1 2018-08-02 17:45:09 1 1 2018-08-02 18:15:09 1 1 2018-08-02 19:10:09 1 1 2018-08-02 20:15:09 1 1 2018-08-02 20:40:09 1 1 2018-08-02 20:45:09 1 1 2018-08-02 20:50:09 1 1 2018-08-02 21:15:09 1 1 2018-08-02 21:35:09 1 1 2018-08-02 22:05:09 1 1 2018-08-03 11:30:09 1 1 2018-08-03 12:45:09 1 1 2018-08-03 13:45:09 1 1 2018-08-03 13:55:09 1 1 2018-08-03 15:25:09 1 1 2018-08-03 15:40:09 1 1 2018-08-03 17:35:09 1 1 2018-08-03 21:10:09 1 1 2018-08-03 22:10:09 1 1 2018-08-03 22:15:09 1 1 2018-08-03 23:40:09 1 1 2018-08-04 00:35:09 1 1 2018-08-04 08:30:09 1 1 2018-08-04 10:00:09 1 1 2018-08-04 10:40:09 1 1 2018-08-04 11:55:09 1 1 2018-08-04 12:40:09 1 1 2018-08-04 15:15:09 1 1 2018-08-04 17:50:09 1 1 2018-08-04 18:45:09 1 1 2018-08-04 19:45:09 1 1 2018-08-04 22:25:09 1 1 2018-08-04 22:35:09 1 1 2018-08-04 23:35:09 1 1 2018-08-05 07:45:09 1 1 2018-08-05 08:25:09 1 1 2018-08-05 12:40:09 1 1 2018-08-05 14:25:09 1 1 2018-08-05 16:25:09 1 1 2018-08-05 17:00:09 1 1 2018-08-05 18:00:09 1 1 2018-08-05 19:20:09 1 1 2018-08-05 20:00:09 1 1 2018-08-05 20:25:09 1 1 2018-08-05 20:35:09 1 1 2018-08-05 21:05:09 1 1 2018-08-05 21:15:09 1 1 2018-08-05 22:20:09 1 1 2018-08-05 23:46:26 1 1 2018-08-06 01:06:26 1 1 2018-08-06 03:11:26 1 1 2018-08-06 07:31:26 1 1 2018-08-06 11:51:26 1 1 2018-08-06 12:06:26 1 1 2018-08-06 12:21:26 1 1 2018-08-06 12:26:26 1 1 2018-08-06 12:31:26 1 1 2018-08-06 12:51:26 1 1 2018-08-06 13:21:26 1 1 2018-08-06 14:46:26 1 1 2018-08-06 15:46:26 1 1 2018-08-06 17:16:26 1 1 2018-08-06 18:06:26 1 1 2018-08-06 18:26:26 1 1 2018-08-06 18:51:26 1 1 2018-08-06 19:21:26 1 1 2018-08-06 19:31:26 1 1 2018-08-06 19:46:26 1 1 2018-08-06 20:01:26 1 1 2018-08-06 20:21:26 1 1 2018-08-07 00:01:26 1 1 2018-08-07 00:51:26 1 1 2018-08-07 00:56:26 1 1 2018-08-07 01:36:26 1 1 2018-08-07 02:46:26 1 1 2018-08-07 03:16:26 1 1 2018-08-07 05:26:26 1 1 2018-08-07 07:41:26 1 1 2018-08-07 08:26:26 1 1 2018-08-07 09:06:26 1 1 2018-08-07 09:41:26 1 1 2018-08-07 10:21:26 1 1 2018-08-07 10:56:26 1 1 2018-08-07 11:11:26 1 1 2018-08-07 18:41:26 1 1 2018-08-07 19:56:26 1 1 2018-08-08 00:11:26 1 1 2018-08-08 06:56:26 1 1 2018-08-08 11:31:26 1 1 2018-08-08 19:11:26 1 1 2018-08-08 23:36:26 1 1 2018-08-09 03:01:26 1 1 2018-08-09 08:01:26 1 1 2018-08-09 09:01:26 1 1 2018-08-09 10:06:26 1 1 2018-08-09 10:31:26 1 1 2018-08-09 12:46:26 1 1 2018-08-09 13:16:26 1 1 2018-08-09 13:51:26 1 1 2018-08-09 14:16:26 1 1 2018-08-09 18:06:26 1 1 2018-08-09 19:16:26 1 1 2018-08-09 20:51:26 1 1 2018-08-09 21:41:26 1 1 2018-08-10 00:21:26 1 1 2018-08-10 07:06:26 1 1 2018-08-10 09:36:26 1 1 2018-08-10 13:06:26 1 1 2018-08-10 16:28:50 1 1 2018-08-10 18:18:50 1 1 2018-08-10 18:33:50 1 1 2018-08-10 19:23:50 1 1 2018-08-10 21:28:50 1 1 2018-08-10 23:08:50 1 1 2018-08-11 04:53:50 1 1 2018-08-11 09:53:50 1 1 2018-08-11 10:38:50 1 1 2018-08-11 12:40:42 1 1 2018-08-11 15:00:42 1 1 2018-08-11 17:35:42 1 1 2018-08-11 19:55:42 1 1 2018-08-11 22:40:42 1 1 2018-08-11 23:25:42 1 1 2018-08-12 02:30:42 1 1 2018-08-12 08:50:42 1 1 2018-08-12 19:20:42 1 1 2018-08-12 19:35:42 1 1 2018-08-12 22:25:42 1 1 2018-08-12 23:30:42 1 1 2018-08-13 00:25:42 1 1 2018-08-13 04:15:42 1 1 2018-08-13 10:35:42 1 1 2018-08-13 10:50:42 1 1 2018-08-13 12:10:42 1 1 2018-08-13 12:50:42 1 1 2018-08-13 13:50:42 1 1 2018-08-13 15:00:42 1 1 2018-08-13 15:30:42 1 1 2018-08-13 19:30:42 1 1 2018-10-30 11:06:23 1 1 2019-01-27 01:41:23 1 1 2019-01-27 02:01:23 1 1 2019-07-06 16:03:37 1 1 2019-07-06 18:38:37 1 1 2019-07-06 22:18:37 2 1 2019-07-06 22:23:37 2 1 2019-07-06 22:28:37 2 1 2019-07-06 22:33:37 2 1 2019-07-06 22:38:37 2 2 2019-07-06 23:13:37 2 1 2019-07-06 23:18:37 2 1 2019-07-06 23:28:37 2 2 2019-07-06 23:48:37 2 3 2019-07-06 23:53:37 2 3 2019-07-06 23:58:37 2 3 2019-07-07 00:08:37 2 1 2019-07-07 00:38:37 2 2 2019-07-07 00:53:37 2 1 2019-07-07 00:58:37 2 1 2019-07-07 01:03:37 2 1 2019-07-07 07:03:37 2 1 2019-07-07 07:58:37 2 2 2019-07-07 08:03:37 2 1 2019-07-07 08:08:37 2 1 2019-07-07 09:38:37 2 2 2019-07-07 09:48:37 2 1 2019-07-07 10:13:37 2 1 2019-07-07 10:28:37 2 1 2019-07-07 10:43:37 2 1 2019-07-07 10:48:37 2 2 2019-07-07 10:53:37 2 2 2019-07-07 10:58:37 2 2 2019-07-07 11:43:37 2 1 2019-07-07 11:48:37 2 1 2019-07-07 11:53:37 2 1 2019-07-07 12:23:37 2 1 2019-07-07 12:28:37 2 1 2019-07-07 12:33:37 2 1 2019-07-07 12:38:37 2 1 2019-07-07 12:53:37 2 2 2019-07-07 13:28:37 2 3 2019-07-07 13:33:37 2 5 2019-07-07 13:38:37 2 7 2019-07-07 13:48:37 2 6 2019-07-07 13:53:37 2 3 2019-07-07 14:28:37 2 2 2019-07-07 15:28:37 2 3 2019-07-07 15:58:37 2 3 2019-07-07 16:23:37 2 2 2019-07-07 16:33:37 2 3 2019-07-07 16:58:37 2 2 2019-07-07 17:03:37 2 2 2019-07-07 17:08:37 2 1 2019-07-07 17:13:37 2 1 2019-07-07 18:03:37 2 1 2019-07-07 18:28:37 2 4 2019-07-07 18:38:37 2 4 2019-07-07 18:43:37 2 4 2019-07-07 18:53:37 2 3 2019-07-07 18:58:37 2 3 2019-07-07 19:03:37 2 3 2019-07-07 19:08:37 2 3 2019-07-07 19:13:37 2 3 2019-07-07 19:18:37 2 3 2019-07-07 19:23:37 2 3 2019-07-07 19:28:37 2 3 2019-07-07 19:33:37 2 3 2019-07-07 19:43:37 2 4 2019-07-07 19:48:37 2 4 2019-07-07 20:23:37 2 3 2019-07-07 20:33:37 2 2 2019-07-07 20:53:37 2 2 2019-07-07 20:58:37 2 3 2019-07-07 21:13:37 2 5 2019-07-07 21:18:37 2 2 2019-07-07 21:58:37 2 3 2019-07-07 22:03:37 2 4 2019-07-07 22:08:37 2 5 2019-07-07 22:23:37 2 5 2019-07-07 22:48:37 2 5 2019-07-07 22:53:37 2 5 2019-07-07 22:58:37 2 6 2019-07-07 23:13:37 2 6 2019-07-07 23:23:37 2 5 2019-07-07 23:33:37 2 6 2019-07-07 23:48:37 2 7 2019-07-08 00:03:37 2 7 2019-07-08 00:08:37 2 4 2019-07-08 00:18:37 2 5 2019-07-08 00:43:37 2 6 2019-07-08 00:53:37 2 5 2019-07-08 02:03:37 2 2 2019-07-08 02:08:37 2 2 2019-07-08 02:13:37 2 2 2019-07-08 02:28:37 2 1 2019-07-08 02:33:37 2 1 2019-07-08 02:38:37 2 1 2019-07-08 02:43:37 2 1 2019-07-08 02:48:37 2 1 2019-07-08 02:53:37 2 1 2019-07-08 02:58:37 2 1 2019-07-08 03:03:37 2 1 2019-07-08 03:08:37 2 1 2019-07-08 03:13:37 2 1 2019-07-08 03:18:37 2 1 2019-07-08 03:23:37 2 1 2019-07-08 03:28:37 2 1 2019-07-08 03:33:37 2 1 2019-07-08 03:38:37 2 1 2019-07-08 03:43:37 2 1 2019-07-08 03:48:37 2 1 2019-07-08 03:53:37 2 1 2019-07-08 03:58:37 2 1 2019-07-08 04:03:37 2 1 2019-07-08 04:08:37 2 1 2019-07-08 04:13:37 2 1 2019-07-08 04:18:37 2 1 2019-07-08 04:23:37 2 1 2019-07-08 04:28:37 2 1 2019-07-08 04:33:37 2 1 2019-07-08 04:38:37 2 1 2019-07-08 04:43:37 2 1 2019-07-08 04:48:37 2 1 2019-07-08 04:53:37 2 1 2019-07-08 04:58:37 2 1 2019-07-08 05:03:37 2 1 2019-07-08 05:08:37 2 1 2019-07-08 05:13:37 2 1 2018-08-07 13:21:26 1 1 2018-08-07 14:21:26 1 1 2018-08-07 14:31:26 1 1 2018-08-07 16:21:26 1 1 2018-08-07 17:26:26 1 1 2018-08-07 17:46:26 1 1 2018-08-07 18:01:26 1 1 2018-08-07 20:01:26 1 1 2018-08-07 22:06:26 1 1 2018-08-07 22:56:26 1 1 2018-08-08 12:16:26 1 1 2018-08-08 14:26:26 1 1 2018-08-08 16:31:26 1 1 2018-08-08 17:51:26 1 1 2018-08-08 19:46:26 1 1 2018-08-08 20:26:26 1 1 2018-08-09 02:16:26 1 1 2018-08-09 09:26:26 1 1 2018-08-09 14:36:26 1 1 2018-08-09 15:36:26 1 1 2018-08-09 19:46:26 1 1 2018-08-09 22:21:26 1 1 2018-08-10 02:11:26 1 1 2018-08-10 11:16:26 1 1 2018-08-10 12:56:26 1 1 2018-08-10 15:06:26 1 1 2018-08-10 17:18:50 1 1 2018-08-10 19:18:50 1 1 2018-08-10 20:03:50 1 1 2018-08-11 08:08:50 1 1 2018-08-11 11:28:50 1 1 2018-08-11 15:05:42 1 1 2018-08-11 18:10:42 1 1 2018-08-11 19:15:42 1 1 2018-08-12 01:30:42 1 1 2018-08-12 09:00:42 1 1 2018-08-12 13:30:42 1 1 2018-08-12 13:50:42 1 1 2018-08-12 16:00:42 1 1 2018-08-12 16:05:42 1 1 2018-08-12 16:30:42 1 1 2018-08-12 18:30:42 1 1 2018-08-12 19:00:42 1 1 2018-08-12 19:45:42 1 1 2018-08-13 00:15:42 1 1 2018-08-13 08:05:42 1 1 2018-08-13 10:30:42 1 1 2018-08-13 11:15:42 1 1 2018-08-13 14:25:42 1 1 2018-08-13 18:15:42 1 1 2019-01-27 01:56:23 1 1 2019-07-06 16:08:37 1 1 2019-07-06 16:13:37 1 1 2019-07-06 16:18:37 1 1 2019-07-06 16:23:37 1 1 2019-07-06 16:28:37 1 1 2019-07-06 16:33:37 1 1 2019-07-06 16:38:37 1 1 2019-07-06 16:43:37 1 1 2019-07-06 16:48:37 1 1 2019-07-06 16:53:37 1 1 2019-07-06 16:58:37 1 1 2019-07-06 17:03:37 1 1 2019-07-06 17:08:37 1 1 2019-07-06 17:13:37 1 1 2019-07-06 17:18:37 1 1 2019-07-06 17:23:37 1 1 2019-07-06 17:28:37 1 1 2019-07-06 17:33:37 1 1 2019-07-06 17:38:37 1 1 2019-07-06 17:43:37 1 1 2019-07-06 17:48:37 1 1 2019-07-06 17:53:37 1 1 2019-07-06 17:58:37 1 1 2019-07-06 18:03:37 1 1 2019-07-06 18:08:37 1 1 2019-07-06 18:13:37 1 1 2019-07-06 18:18:37 1 1 2019-07-06 18:23:37 1 1 2019-07-06 18:28:37 1 1 2019-07-06 18:33:37 1 1 2019-07-06 18:43:37 1 1 2019-07-06 18:48:37 1 1 2019-07-06 18:53:37 1 1 2019-07-06 18:58:37 1 1 2019-07-06 19:03:37 1 1 2019-07-06 22:03:37 2 1 2019-07-06 22:08:37 2 1 2019-07-06 22:13:37 2 1 2019-07-06 22:48:37 2 2 2019-07-06 22:53:37 2 2 2019-07-06 22:58:37 2 2 2019-07-07 00:03:37 2 3 2019-07-07 00:13:37 2 1 2019-07-07 00:28:37 2 2 2019-07-07 00:43:37 2 1 2019-07-07 00:48:37 2 1 2019-07-07 01:38:37 2 1 2019-07-07 01:43:37 2 1 2019-07-07 01:48:37 2 1 2019-07-07 01:53:37 2 1 2019-07-07 01:58:37 2 1 2019-07-07 02:03:37 2 1 2019-07-07 02:08:37 2 1 2019-07-07 02:13:37 2 1 2019-07-07 02:18:37 2 1 2019-07-07 02:23:37 2 1 2019-07-07 02:28:37 2 1 2019-07-07 02:33:37 2 1 2019-07-07 02:38:37 2 1 2019-07-07 02:43:37 2 1 2019-07-07 02:48:37 2 1 2019-07-07 02:53:37 2 1 2019-07-07 02:58:37 2 1 2019-07-07 03:03:37 2 1 2019-07-07 03:08:37 2 1 2019-07-07 03:13:37 2 1 2019-07-07 03:18:37 2 1 2019-07-07 03:23:37 2 1 2019-07-07 03:28:37 2 1 2019-07-07 07:48:37 2 1 2019-07-07 08:13:37 2 1 2019-07-07 09:13:37 2 2 2019-07-07 09:28:37 2 4 2019-07-07 09:33:37 2 3 2019-07-07 09:43:37 2 2 2019-07-07 09:58:37 2 1 2019-07-07 10:03:37 2 1 2019-07-07 10:18:37 2 2 2019-07-07 10:23:37 2 2 2019-07-07 10:38:37 2 3 2019-07-07 11:03:37 2 2 2019-07-07 11:13:37 2 1 2019-07-07 11:18:37 2 2 2019-07-07 12:08:37 2 1 2019-07-07 12:43:37 2 1 2019-07-07 12:48:37 2 1 2019-07-07 13:08:37 2 3 2019-07-07 13:13:37 2 3 2019-07-07 13:23:37 2 3 2019-07-07 13:43:37 2 5 2019-07-07 13:58:37 2 3 2019-07-07 14:18:37 2 3 2019-07-07 14:23:37 2 3 2019-07-07 15:33:37 2 1 2019-07-07 16:18:37 2 1 2019-07-07 16:43:37 2 1 2019-07-07 16:48:37 2 1 2019-07-07 16:53:37 2 1 2019-07-07 17:18:37 2 1 2019-07-07 17:23:37 2 1 2019-07-07 17:28:37 2 1 2019-07-07 17:33:37 2 1 2019-07-07 17:38:37 2 1 2019-07-07 17:53:37 2 2 2019-07-07 17:58:37 2 2 2019-07-07 18:18:37 2 3 2019-07-07 18:23:37 2 3 2019-07-07 18:33:37 2 3 2019-07-07 19:38:37 2 3 2019-07-07 20:03:37 2 3 2019-07-07 20:08:37 2 4 2019-07-07 20:13:37 2 4 2019-07-07 20:18:37 2 4 2019-07-07 20:28:37 2 3 2019-07-07 20:38:37 2 2 2019-07-07 20:48:37 2 3 2019-07-07 21:03:37 2 3 2019-07-07 21:28:37 2 2 2019-07-07 21:33:37 2 2 2019-07-07 21:43:37 2 1 2019-07-07 21:53:37 2 4 2019-07-07 22:13:37 2 6 2019-07-07 22:38:37 2 4 2019-07-07 22:43:37 2 4 2019-07-07 23:03:37 2 7 2019-07-07 23:08:37 2 7 2019-07-07 23:18:37 2 6 2019-07-07 23:28:37 2 5 2019-07-07 23:43:37 2 6 2019-07-07 23:58:37 2 6 2019-07-08 00:23:37 2 5 2019-07-08 00:38:37 2 5 2019-07-08 01:58:37 2 3 2019-07-08 02:23:37 2 2 2018-08-07 16:31:26 1 1 2018-08-07 17:16:26 1 1 2018-08-07 17:31:26 1 1 2018-08-07 20:16:26 1 1 2018-08-07 22:36:26 1 1 2018-08-07 23:26:26 1 1 2018-08-08 01:41:26 1 1 2018-08-08 13:36:26 1 1 2018-08-08 16:06:26 1 1 2018-08-08 18:41:26 1 1 2018-08-08 20:16:26 1 1 2018-08-08 20:56:26 1 1 2018-08-08 23:46:26 1 1 2018-08-09 00:01:26 1 1 2018-08-09 01:46:26 1 1 2018-08-09 09:56:26 1 1 2018-08-09 10:16:26 1 1 2018-08-09 11:21:26 1 1 2018-08-09 12:51:26 1 1 2018-08-09 14:11:26 1 1 2018-08-09 14:31:26 1 1 2018-08-09 15:16:26 1 1 2018-08-09 19:31:26 1 1 2018-08-10 00:51:26 1 1 2018-08-10 19:48:51 1 1 2018-08-11 00:48:50 1 1 2018-08-11 10:23:50 1 1 2018-08-11 16:30:42 1 1 2018-08-11 19:20:42 1 1 2018-08-11 20:00:42 1 1 2018-08-11 22:25:42 1 1 2018-08-11 23:35:42 1 1 2018-08-12 01:40:42 1 1 2018-08-12 11:10:42 1 1 2018-08-12 13:20:42 1 1 2018-08-12 14:05:42 1 1 2018-08-12 14:10:42 1 1 2018-08-12 15:25:42 1 1 2018-08-12 16:25:42 1 1 2018-08-12 18:35:42 1 1 2018-08-12 19:25:42 1 1 2018-08-12 22:50:42 1 1 2018-08-12 23:35:42 1 1 2018-08-13 11:50:42 1 1 2018-08-13 14:40:42 1 1 2018-08-13 18:05:42 1 1 2018-08-13 18:45:42 1 1 2019-07-06 22:43:37 2 2 2019-07-06 23:03:37 2 1 2019-07-06 23:08:37 2 2 2019-07-06 23:23:37 2 1 2019-07-06 23:33:37 2 2 2019-07-06 23:38:37 2 2 2019-07-06 23:43:37 2 2 2019-07-07 00:18:37 2 2 2019-07-07 00:23:37 2 2 2019-07-07 00:33:37 2 3 2019-07-07 01:08:37 2 1 2019-07-07 01:13:37 2 1 2019-07-07 01:18:37 2 1 2019-07-07 01:23:37 2 1 2019-07-07 01:28:37 2 1 2019-07-07 01:33:37 2 1 2019-07-07 07:53:37 2 2 2019-07-07 08:43:37 2 1 2019-07-07 09:03:37 2 1 2019-07-07 09:08:37 2 2 2019-07-07 09:18:37 2 2 2019-07-07 09:23:37 2 3 2019-07-07 10:33:37 2 3 2019-07-07 11:08:37 2 2 2019-07-07 11:23:37 2 1 2019-07-07 12:13:37 2 1 2019-07-07 12:18:37 2 1 2019-07-07 12:58:37 2 2 2019-07-07 13:03:37 2 2 2019-07-07 13:18:37 2 3 2019-07-07 14:03:37 2 3 2019-07-07 14:08:37 2 3 2019-07-07 14:13:37 2 4 2019-07-07 14:33:37 2 1 2019-07-07 14:38:37 2 1 2019-07-07 14:43:37 2 1 2019-07-07 15:23:37 2 1 2019-07-07 15:53:37 2 1 2019-07-07 16:03:37 2 4 2019-07-07 16:08:37 2 4 2019-07-07 16:13:37 2 2 2019-07-07 16:28:37 2 3 2019-07-07 16:38:37 2 2 2019-07-07 17:43:37 2 1 2019-07-07 17:48:37 2 1 2019-07-07 18:08:37 2 2 2019-07-07 18:13:37 2 2 2019-07-07 18:48:37 2 3 2019-07-07 19:53:37 2 3 2019-07-07 19:58:37 2 3 2019-07-07 20:43:37 2 4 2019-07-07 21:08:37 2 4 2019-07-07 21:23:37 2 2 2019-07-07 21:38:37 2 2 2019-07-07 21:48:37 2 3 2019-07-07 22:18:37 2 6 2019-07-07 22:28:37 2 6 2019-07-07 22:33:37 2 4 2019-07-07 23:38:37 2 6 2019-07-07 23:53:37 2 6 2019-07-08 00:13:37 2 5 2019-07-08 00:28:37 2 5 2019-07-08 00:33:37 2 4 2019-07-08 00:48:37 2 6 2019-07-08 00:58:37 2 4 2019-07-08 01:03:37 2 4 2019-07-08 01:08:37 2 4 2019-07-08 01:13:37 2 4 2019-07-08 01:18:37 2 4 2019-07-08 01:23:37 2 4 2019-07-08 01:28:37 2 4 2019-07-08 01:33:37 2 4 2019-07-08 01:38:37 2 4 2019-07-08 01:43:37 2 4 2019-07-08 01:48:37 2 4 2019-07-08 01:53:37 2 4 2019-07-08 02:18:37 2 3 2019-07-08 05:18:37 2 1 2019-07-08 05:23:37 2 1 2019-07-08 05:28:37 2 1 2019-07-08 05:33:37 2 1 2019-07-08 05:38:37 2 2 2019-07-08 05:43:37 2 1 2019-07-08 05:48:37 2 1 2019-07-08 05:53:37 2 1 2019-07-08 05:58:37 2 1 2019-07-08 06:03:37 2 1 2019-07-08 06:08:37 2 1 2019-07-08 06:13:37 2 1 2019-07-08 06:18:37 2 1 2019-07-08 06:23:37 2 2 2019-07-08 06:28:37 2 2 2019-07-08 06:33:37 2 2 2019-07-08 06:38:37 2 2 2019-07-08 06:43:37 2 2 2019-07-08 06:48:37 2 2 2019-07-08 06:53:37 2 2 2019-07-08 06:58:37 2 1 2019-07-08 07:03:37 2 1 2019-07-08 07:08:37 2 1 2019-07-08 07:13:37 2 2 2019-07-08 07:18:37 2 2 2019-07-08 07:23:37 2 2 2019-07-08 07:28:37 2 2 2019-07-08 07:33:37 2 2 2019-07-08 07:48:37 2 1 2019-07-08 08:08:37 2 1 2019-07-08 08:13:37 2 3 2019-07-08 08:18:37 2 3 2019-07-08 08:23:37 2 1 2019-07-08 08:28:37 2 1 2019-07-08 08:33:37 2 2 2019-07-08 08:38:37 2 2 2019-07-08 08:43:37 2 1 2019-07-08 08:48:37 2 1 2019-07-08 08:53:37 2 2 2019-07-08 08:58:37 2 2 2019-07-08 09:03:37 2 3 2019-07-08 09:08:37 2 3 2019-07-08 09:13:37 2 5 2019-07-08 09:18:37 2 4 2019-07-08 09:23:37 2 3 2019-07-08 09:28:37 2 4 2019-07-08 09:33:37 2 4 2019-07-08 09:38:37 2 4 2019-07-08 09:43:37 2 4 2019-07-08 09:48:37 2 5 2019-07-08 09:53:37 2 5 2019-07-08 09:58:37 2 3 2019-07-08 10:03:37 2 3 2019-07-08 10:08:37 2 3 2019-07-08 10:13:37 2 3 2019-07-08 10:18:37 2 2 2019-07-08 10:23:37 2 3 2019-07-08 10:28:37 2 2 2019-07-08 10:33:37 2 2 2019-07-08 10:38:37 2 2 2019-07-08 10:43:37 2 2 2019-07-08 10:48:37 2 1 2019-07-08 11:03:37 2 2 2019-07-08 11:08:37 2 3 2019-07-08 11:28:37 2 4 2019-07-08 11:33:37 2 4 2019-07-08 11:38:37 2 4 2019-07-08 11:53:37 2 3 2019-07-08 12:08:37 2 3 2019-07-08 12:48:37 2 2 2019-07-08 13:03:37 2 4 2019-07-08 13:18:37 2 4 2019-07-08 13:33:37 2 8 2019-07-08 14:13:37 2 4 2019-07-08 14:18:37 2 3 2019-07-08 14:33:37 2 3 2019-07-08 14:48:37 2 4 2019-07-08 14:53:37 2 3 2019-07-08 14:58:37 2 4 2019-07-08 15:08:37 2 3 2019-07-08 15:48:37 2 3 2019-07-08 15:53:37 2 3 2019-07-08 15:58:37 2 4 2019-07-08 16:08:37 2 5 2019-07-08 16:13:37 2 5 2019-07-08 16:43:37 2 5 2019-07-08 16:53:37 2 4 2019-07-08 16:58:37 2 4 2019-07-08 17:03:37 2 5 2019-07-08 17:18:37 2 5 2019-07-08 17:23:37 2 5 2019-07-08 17:33:37 2 4 2019-07-08 17:38:37 2 4 2019-07-08 17:43:37 2 4 2019-07-08 18:08:37 2 4 2019-07-08 18:38:37 2 4 2019-07-08 18:53:37 1 1 2019-07-08 18:53:37 2 5 2019-07-08 19:23:37 1 1 2019-07-08 19:23:37 2 4 2019-07-08 19:28:37 1 1 2019-07-08 19:28:37 2 5 2019-07-08 19:53:37 1 1 2019-07-08 19:53:37 2 3 2019-07-08 19:58:37 1 1 2019-07-08 19:58:37 2 3 2019-07-08 20:28:37 1 1 2019-07-08 20:28:37 2 3 2019-07-08 22:18:37 1 1 2019-07-08 22:18:37 2 4 2019-07-08 22:23:37 1 1 2019-07-08 22:23:37 2 5 2019-07-08 22:43:37 1 1 2019-07-08 22:43:37 2 3 2019-07-08 22:58:37 1 1 2019-07-08 22:58:37 2 4 2019-07-08 23:38:37 2 5 2019-07-08 23:53:37 2 5 2019-07-09 00:08:37 2 4 2019-07-09 00:13:37 2 5 2019-07-09 00:58:37 2 2 2019-07-09 01:03:37 2 2 2019-07-09 01:08:37 2 2 2019-07-09 01:13:37 2 2 2019-07-09 01:33:37 2 3 2019-07-09 01:48:37 2 2 2019-07-09 02:03:37 2 1 2019-07-09 02:08:37 2 1 2019-07-09 06:48:37 2 1 2019-07-09 07:13:37 2 1 2019-07-09 08:53:37 2 3 2019-07-09 09:03:37 2 2 2019-07-09 09:08:37 2 1 2019-07-09 09:13:37 2 1 2019-07-09 09:18:37 2 2 2019-07-09 09:28:37 2 3 2019-07-09 09:43:37 2 2 2019-07-09 09:58:37 2 2 2019-07-09 10:28:37 2 3 2019-07-09 10:48:37 2 2 2019-07-09 10:58:37 2 3 2019-07-09 11:28:37 2 4 2019-07-09 12:13:37 2 6 2019-07-09 12:58:37 2 2 2019-07-09 13:08:38 2 3 2019-07-09 13:13:37 2 2 2019-07-09 13:33:37 2 3 2019-07-09 13:38:37 2 3 2019-07-09 13:53:37 2 4 2019-07-09 14:43:37 2 2 2019-07-09 14:48:37 2 2 2019-07-09 14:53:37 2 2 2019-07-09 15:03:37 2 6 2019-07-09 15:08:37 2 6 2019-07-09 15:58:37 2 4 2019-07-09 16:03:37 2 4 2019-07-09 17:28:37 2 3 2019-07-09 17:48:37 2 4 2019-07-09 17:58:37 2 3 2019-07-09 19:03:37 2 3 2019-07-09 19:08:37 2 3 2019-07-09 19:13:37 2 3 2019-07-09 19:43:37 2 5 2019-07-09 20:23:37 2 2 2019-07-09 20:38:37 2 3 2019-07-09 21:23:37 2 2 2019-07-09 21:28:37 2 2 2019-07-09 21:53:37 2 1 2019-07-09 22:13:37 2 3 2019-07-09 22:43:37 2 1 2019-07-09 22:53:37 2 2 2019-07-09 22:58:37 2 1 2019-07-09 23:03:37 2 2 2019-07-09 23:08:37 2 1 2019-07-09 23:23:37 2 4 2019-07-09 23:38:37 2 2 2019-07-09 23:58:37 2 2 2019-07-10 00:08:37 2 1 2019-07-10 00:13:37 2 1 2019-07-10 00:18:37 2 1 2019-07-10 00:28:37 2 1 2019-07-10 00:38:37 2 1 2019-07-10 00:43:37 2 2 2019-07-10 00:53:37 2 2 2019-07-10 00:58:37 2 2 2019-07-10 01:03:37 2 2 2019-07-10 01:08:37 2 2 2019-07-10 01:13:37 2 2 2019-07-10 01:38:37 2 1 2019-07-10 02:33:37 2 1 2019-07-10 02:58:37 2 2 2019-07-10 03:03:37 2 2 2019-07-10 03:08:37 2 2 2019-07-10 03:13:37 2 2 2019-07-10 03:18:37 2 2 2019-07-10 03:23:37 2 2 2019-07-10 03:28:37 2 2 2019-07-10 03:33:37 2 2 2019-07-10 03:38:37 2 2 2019-07-10 03:43:37 2 2 2019-07-10 03:48:37 2 2 2019-07-10 03:53:37 2 2 2019-07-10 03:58:37 2 2 2019-07-10 04:03:37 2 2 2019-07-10 04:08:37 2 2 2019-07-10 04:13:37 2 2 2019-07-10 04:18:37 2 2 2019-07-10 04:23:37 2 2 2019-07-10 04:28:37 2 2 2019-07-10 04:33:37 2 2 2019-07-10 04:38:37 2 2 2019-07-10 04:43:37 2 2 2019-07-10 04:48:37 2 2 2019-07-10 04:53:37 2 2 2019-07-10 04:58:37 2 2 2019-07-10 05:03:37 2 2 2019-07-10 05:08:37 2 2 2019-07-10 05:13:37 2 2 2019-07-10 05:18:37 2 2 2019-07-10 05:23:37 2 2 2019-07-10 05:28:37 2 2 2019-07-10 05:33:37 2 2 2019-07-10 05:38:37 2 2 2019-07-10 05:43:37 2 2 2019-07-10 05:48:37 2 2 2019-07-10 05:53:37 2 2 2019-07-10 05:58:37 2 2 2019-07-10 06:03:37 2 2 2019-07-10 06:08:37 2 2 2019-07-10 06:23:37 2 2 2019-07-10 06:28:37 2 2 2019-07-10 06:33:37 2 2 2019-07-10 06:38:37 2 2 2019-07-10 06:43:37 2 3 2019-07-10 06:53:37 2 2 2019-07-10 06:58:37 2 2 2019-07-10 07:08:37 2 1 2019-07-10 07:13:37 2 1 2019-07-10 07:18:37 2 1 2019-07-10 07:23:37 2 1 2019-07-10 07:28:37 2 1 2019-07-10 07:33:37 2 2 2019-07-10 07:58:37 2 1 2019-07-10 08:08:37 2 1 2019-07-10 08:28:37 2 1 2019-07-10 08:43:37 2 3 2019-07-08 10:53:37 2 1 2019-07-08 10:58:37 2 1 2019-07-08 11:23:37 2 3 2019-07-08 12:28:37 2 1 2019-07-08 12:33:37 2 2 2019-07-08 12:43:37 2 3 2019-07-08 12:53:37 2 5 2019-07-08 12:58:37 2 4 2019-07-08 13:43:37 2 5 2019-07-08 13:53:37 2 4 2019-07-08 13:58:37 2 5 2019-07-08 14:03:37 2 6 2019-07-08 14:08:37 2 5 2019-07-08 14:23:37 2 3 2019-07-08 14:28:37 2 3 2019-07-08 14:38:37 2 3 2019-07-08 14:43:37 2 5 2019-07-08 15:23:37 2 3 2019-07-08 15:28:37 2 4 2019-07-08 15:38:37 2 4 2019-07-08 16:23:37 2 7 2019-07-08 16:33:37 2 6 2019-07-08 16:38:37 2 6 2019-07-08 16:48:37 2 5 2019-07-08 17:13:37 2 4 2019-07-08 17:28:37 2 5 2019-07-08 17:48:37 2 4 2019-07-08 17:53:37 2 4 2019-07-08 18:13:37 2 4 2019-07-08 19:13:37 1 1 2019-07-08 19:13:37 2 6 2019-07-08 19:18:37 1 1 2019-07-08 19:18:37 2 5 2019-07-08 19:33:37 1 1 2019-07-08 19:33:37 2 5 2019-07-08 19:38:37 1 1 2019-07-08 19:38:37 2 5 2019-07-08 19:43:37 1 1 2019-07-08 19:43:37 2 5 2019-07-08 20:03:37 1 1 2019-07-08 20:03:37 2 3 2019-07-08 20:08:37 1 1 2019-07-08 20:08:37 2 3 2019-07-08 20:13:37 1 1 2019-07-08 20:13:37 2 3 2019-07-08 20:18:37 1 1 2019-07-08 20:18:37 2 4 2019-07-08 20:23:37 1 1 2019-07-08 20:23:37 2 4 2019-07-08 20:33:37 1 1 2019-07-08 20:33:37 2 2 2019-07-08 21:03:37 1 1 2019-07-08 21:03:37 2 2 2019-07-08 21:08:37 1 1 2019-07-08 21:08:37 2 2 2019-07-08 21:13:37 1 1 2019-07-08 21:13:37 2 2 2019-07-08 21:18:37 1 1 2019-07-08 21:18:37 2 2 2019-07-08 21:23:37 1 1 2019-07-08 21:23:37 2 2 2019-07-08 21:28:37 1 1 2019-07-08 21:28:37 2 2 2019-07-08 21:33:37 1 1 2019-07-08 21:33:37 2 3 2019-07-08 21:38:37 1 1 2019-07-08 21:38:37 2 2 2019-07-08 21:48:37 1 1 2019-07-08 21:48:37 2 1 2019-07-08 21:53:37 1 1 2019-07-08 21:53:37 2 1 2019-07-08 21:58:37 1 1 2019-07-08 21:58:37 2 2 2019-07-08 22:03:37 1 1 2019-07-08 22:03:37 2 2 2019-07-08 22:08:37 1 1 2019-07-08 22:08:37 2 2 2019-07-08 22:28:37 1 1 2019-07-08 22:28:37 2 3 2019-07-08 22:53:37 1 1 2019-07-08 22:53:37 2 3 2019-07-08 23:03:37 2 3 2019-07-08 23:08:37 2 4 2019-07-08 23:18:37 2 4 2019-07-08 23:43:37 2 5 2019-07-08 23:58:37 2 5 2019-07-09 00:23:37 2 4 2019-07-09 00:28:37 2 4 2019-07-09 00:33:37 2 4 2019-07-09 00:38:37 2 4 2019-07-09 00:43:37 2 4 2019-07-09 00:48:37 2 4 2019-07-09 01:38:37 2 3 2019-07-09 01:43:37 2 3 2019-07-09 01:53:37 2 2 2019-07-09 01:58:37 2 2 2019-07-09 02:28:37 2 1 2019-07-09 02:33:37 2 1 2019-07-09 02:38:37 2 1 2019-07-09 06:58:37 2 1 2019-07-09 07:18:37 2 1 2019-07-09 08:38:37 2 1 2019-07-09 08:48:37 2 3 2019-07-09 08:58:37 2 4 2019-07-09 09:23:37 2 1 2019-07-09 09:33:37 2 2 2019-07-09 09:38:37 2 2 2019-07-09 09:53:37 2 2 2019-07-09 10:03:37 2 3 2019-07-09 10:18:37 2 4 2019-07-09 10:43:37 2 2 2019-07-09 11:03:37 2 2 2019-07-09 11:08:37 2 2 2019-07-09 11:13:37 2 2 2019-07-09 11:18:37 2 2 2019-07-09 11:23:37 2 2 2019-07-09 11:33:37 2 4 2019-07-09 11:48:37 2 3 2019-07-09 11:53:37 2 3 2019-07-09 12:23:37 2 2 2019-07-09 12:48:37 2 2 2019-07-09 12:53:37 2 2 2019-07-09 13:03:37 2 3 2019-07-09 13:18:37 2 3 2019-07-09 13:23:37 2 4 2019-07-09 13:28:37 2 4 2019-07-09 13:43:37 2 4 2019-07-09 13:48:37 2 4 2019-07-09 13:58:37 2 3 2019-07-09 14:03:37 2 3 2019-07-09 14:23:37 2 2 2019-07-09 14:28:37 2 2 2019-07-09 14:33:37 2 3 2019-07-09 14:38:37 2 3 2019-07-09 14:58:37 2 3 2019-07-09 15:13:37 2 5 2019-07-09 16:08:37 2 3 2019-07-09 16:13:37 2 3 2019-07-09 16:18:37 2 3 2019-07-09 17:33:37 2 2 2019-07-09 17:53:37 2 3 2019-07-09 18:03:37 2 2 2019-07-09 18:18:37 2 1 2019-07-09 18:28:37 2 2 2019-07-09 18:33:37 2 3 2019-07-09 18:48:37 2 5 2019-07-09 18:53:37 2 5 2019-07-09 19:23:37 2 3 2019-07-09 19:28:37 2 3 2019-07-09 19:53:37 2 6 2019-07-09 20:08:37 2 2 2019-07-09 20:13:37 2 2 2019-07-09 20:28:37 2 3 2019-07-09 20:33:37 2 3 2019-07-09 20:43:37 2 4 2019-07-09 20:48:37 2 3 2019-07-09 20:58:37 2 2 2019-07-09 21:03:37 2 2 2019-07-09 21:08:37 2 2 2019-07-09 21:33:37 2 1 2019-07-09 21:38:37 2 1 2019-07-09 21:43:37 2 1 2019-07-09 21:48:37 2 1 2019-07-09 21:58:37 2 2 2019-07-09 22:08:37 2 3 2019-07-09 22:23:37 2 1 2019-07-09 22:28:37 2 1 2019-07-09 22:33:37 2 1 2019-07-09 22:38:37 2 1 2019-07-09 23:33:37 2 2 2019-07-09 23:53:37 2 3 2019-07-10 00:23:37 2 1 2019-07-10 00:33:37 2 2 2019-07-10 01:18:37 2 1 2019-07-10 01:23:37 2 1 2019-07-10 01:28:37 2 1 2019-07-10 01:43:37 2 2 2019-07-10 01:48:37 2 2 2019-07-10 01:53:37 2 2 2019-07-10 01:58:37 2 2 2019-07-10 02:28:37 2 3 2019-07-10 02:38:37 2 2 2019-07-10 02:43:37 2 2 2019-07-10 02:48:37 2 2 2019-07-10 02:53:37 2 2 2019-07-08 11:13:37 2 2 2019-07-08 11:18:37 2 4 2019-07-08 11:43:37 2 3 2019-07-08 11:48:37 2 3 2019-07-08 11:58:37 2 3 2019-07-08 12:03:37 2 3 2019-07-08 12:13:37 2 2 2019-07-08 12:18:37 2 2 2019-07-08 12:23:37 2 2 2019-07-08 12:38:37 2 2 2019-07-08 13:08:37 2 6 2019-07-08 13:13:37 2 6 2019-07-08 13:23:37 2 5 2019-07-08 13:28:37 2 6 2019-07-08 13:38:37 2 7 2019-07-08 13:48:37 2 5 2019-07-08 15:03:37 2 3 2019-07-08 15:13:37 2 2 2019-07-08 15:18:37 2 2 2019-07-08 15:33:37 2 3 2019-07-08 15:43:37 2 5 2019-07-08 16:03:37 2 5 2019-07-08 16:18:37 2 6 2019-07-08 16:28:37 2 7 2019-07-08 17:08:37 2 4 2019-07-08 17:58:37 2 4 2019-07-08 18:03:38 2 4 2019-07-08 18:18:37 2 4 2019-07-08 18:23:37 2 4 2019-07-08 18:28:37 2 4 2019-07-08 18:33:37 2 4 2019-07-08 18:43:37 2 5 2019-07-08 18:48:37 1 1 2019-07-08 18:48:37 2 4 2019-07-08 18:58:37 1 1 2019-07-08 18:58:37 2 5 2019-07-08 19:03:37 1 1 2019-07-08 19:03:37 2 5 2019-07-08 19:08:37 1 1 2019-07-08 19:08:37 2 5 2019-07-08 19:48:37 1 1 2019-07-08 19:48:37 2 5 2019-07-08 20:38:37 1 1 2019-07-08 20:38:37 2 2 2019-07-08 20:43:37 1 1 2019-07-08 20:43:37 2 2 2019-07-08 20:48:37 1 1 2019-07-08 20:48:37 2 2 2019-07-08 20:53:37 1 1 2019-07-08 20:53:37 2 2 2019-07-08 20:58:37 1 1 2019-07-08 20:58:37 2 3 2019-07-08 21:43:37 1 1 2019-07-08 21:43:37 2 2 2019-07-08 22:13:37 1 1 2019-07-08 22:13:37 2 2 2019-07-08 22:33:37 1 1 2019-07-08 22:33:37 2 3 2019-07-08 22:38:37 1 1 2019-07-08 22:38:37 2 3 2019-07-08 22:48:37 1 1 2019-07-08 22:48:37 2 4 2019-07-08 23:13:37 2 4 2019-07-08 23:23:37 2 4 2019-07-08 23:28:37 2 5 2019-07-08 23:33:37 2 5 2019-07-08 23:48:37 2 5 2019-07-09 00:03:37 2 4 2019-07-09 00:18:37 2 4 2019-07-09 00:53:37 2 4 2019-07-09 01:18:37 2 3 2019-07-09 01:23:37 2 3 2019-07-09 01:28:37 2 3 2019-07-09 02:53:37 2 1 2019-07-09 02:58:37 2 1 2019-07-09 08:33:37 2 1 2019-07-09 08:43:37 2 2 2019-07-09 09:48:37 2 2 2019-07-09 10:08:37 2 2 2019-07-09 10:13:37 2 2 2019-07-09 10:23:37 2 3 2019-07-09 10:33:37 2 2 2019-07-09 10:38:37 2 2 2019-07-09 10:53:37 2 2 2019-07-09 11:38:37 2 3 2019-07-09 11:43:37 2 3 2019-07-09 11:58:37 2 4 2019-07-09 12:03:37 2 5 2019-07-09 12:08:37 2 3 2019-07-09 12:18:37 2 4 2019-07-09 12:28:37 2 3 2019-07-09 12:33:37 2 3 2019-07-09 12:38:37 2 2 2019-07-09 12:43:37 2 2 2019-07-09 14:08:37 2 2 2019-07-09 14:13:37 2 2 2019-07-09 14:18:37 2 2 2019-07-09 15:18:37 2 4 2019-07-09 15:23:37 2 5 2019-07-09 15:28:37 2 5 2019-07-09 15:33:37 2 4 2019-07-09 15:38:37 2 4 2019-07-09 15:43:37 2 4 2019-07-09 15:48:37 2 4 2019-07-09 15:53:37 2 4 2019-07-09 16:23:37 2 2 2019-07-09 16:28:37 2 2 2019-07-09 16:33:37 2 2 2019-07-09 16:38:37 2 2 2019-07-09 16:43:37 2 2 2019-07-09 16:48:37 2 2 2019-07-09 16:53:37 2 2 2019-07-09 16:58:37 2 2 2019-07-09 17:03:37 2 2 2019-07-09 17:08:37 2 2 2019-07-09 17:13:37 2 2 2019-07-09 17:18:37 2 2 2019-07-09 17:23:37 2 2 2019-07-09 17:38:37 2 3 2019-07-09 17:43:37 2 3 2019-07-09 18:08:37 2 1 2019-07-09 18:13:37 2 1 2019-07-09 18:23:37 2 2 2019-07-09 18:38:37 2 4 2019-07-09 18:43:37 2 4 2019-07-09 18:58:37 2 4 2019-07-09 19:18:37 2 3 2019-07-09 19:33:37 2 4 2019-07-09 19:38:37 2 4 2019-07-09 19:48:37 2 6 2019-07-09 19:58:37 2 2 2019-07-09 20:03:37 2 2 2019-07-09 20:18:37 2 3 2019-07-09 20:53:37 2 2 2019-07-09 21:13:37 2 1 2019-07-09 21:18:37 2 1 2019-07-09 22:03:37 2 3 2019-07-09 22:18:37 2 1 2019-07-09 22:48:37 2 1 2019-07-09 23:13:37 2 1 2019-07-09 23:18:37 2 2 2019-07-09 23:28:37 2 4 2019-07-09 23:43:37 2 3 2019-07-09 23:48:37 2 4 2019-07-10 00:03:37 2 2 2019-07-10 00:48:37 2 2 2019-07-10 01:33:37 2 2 2019-07-10 02:03:37 2 3 2019-07-10 02:08:37 2 3 2019-07-10 02:13:37 2 3 2019-07-10 02:18:37 2 3 2019-07-10 02:23:37 2 3 2019-07-10 06:13:37 2 3 2019-07-10 06:18:37 2 3 2019-07-10 06:48:37 2 2 2019-07-10 07:03:37 2 2 2019-07-10 08:13:37 2 2 2019-07-10 08:18:37 2 2 2019-07-10 08:33:37 2 2 2019-07-10 08:38:37 2 2 2019-07-10 08:48:37 2 3 2019-07-10 08:53:37 2 3 2019-07-10 08:58:37 2 3 2019-07-10 09:03:37 2 2 2019-07-10 09:08:37 2 2 2019-07-10 09:13:37 2 3 2019-07-10 09:18:37 2 3 2019-07-10 09:23:37 2 3 2019-07-10 09:28:37 2 3 2019-07-10 09:33:37 2 3 2019-07-10 09:38:37 2 3 2019-07-10 09:43:37 2 3 2019-07-10 09:48:37 2 2 2019-07-10 09:53:37 2 2 2019-07-10 09:58:37 2 3 2019-07-10 10:03:37 2 4 2019-07-10 10:08:37 2 5 2019-07-10 10:13:37 2 4 2019-07-10 10:18:37 2 3 2019-07-10 10:23:37 2 3 2019-07-10 10:28:37 2 3 2019-07-10 10:33:37 2 3 2019-07-10 10:38:37 2 3 2019-07-10 10:43:37 2 3 2019-07-10 10:48:37 2 3 2019-07-10 10:53:37 2 2 2019-07-10 10:58:37 2 2 2019-07-10 11:03:37 2 3 2019-07-10 11:38:37 2 3 2019-07-10 11:43:37 2 3 2019-07-10 11:48:37 2 3 2019-07-10 11:53:37 2 3 2019-07-10 12:18:37 2 5 2019-07-10 12:23:37 2 5 2019-07-10 12:43:37 2 3 2019-07-10 12:48:37 2 3 2019-07-10 12:53:37 2 3 2019-07-10 12:58:37 2 3 2019-07-10 13:03:37 2 3 2019-07-10 13:13:37 2 2 2019-07-10 13:33:37 2 5 2019-07-10 13:43:37 2 3 2019-07-10 13:58:37 2 4 2019-07-10 14:03:37 2 5 2019-07-10 14:08:37 2 5 2019-07-10 14:13:37 2 5 2019-07-10 14:18:37 2 5 2019-07-10 14:23:37 2 5 2019-07-10 14:28:37 2 5 2019-07-10 14:33:37 2 6 2019-07-10 14:43:37 2 5 2019-07-10 14:48:37 1 1 2019-07-10 14:48:37 2 5 2019-07-10 14:53:37 2 4 2019-07-10 14:58:37 2 5 2019-07-10 15:13:37 2 1 2019-07-10 15:23:37 2 2 2019-07-10 15:33:37 2 2 2019-07-10 15:38:37 2 2 2019-07-10 15:48:37 2 1 2019-07-10 16:28:37 2 2 2019-07-10 16:48:37 1 1 2019-07-10 16:48:37 2 2 2019-07-10 17:18:37 2 4 2019-07-10 17:23:37 1 1 2019-07-10 17:23:37 2 4 2019-07-10 18:08:37 2 6 2019-07-10 19:03:37 2 5 2019-07-10 19:08:37 2 5 2019-07-10 19:58:37 2 4 2019-07-10 20:28:37 2 4 2019-07-10 20:38:37 2 3 2019-07-10 20:48:37 2 4 2019-07-10 20:58:37 2 4 2019-07-10 21:03:37 2 4 2019-07-10 21:08:37 2 3 2019-07-10 21:28:37 2 2 2019-07-10 21:43:37 2 2 2019-07-10 21:48:37 1 1 2019-07-10 21:48:37 2 2 2019-07-10 21:53:37 1 1 2019-07-10 21:53:37 2 2 2019-07-10 22:13:37 1 1 2019-07-10 22:13:37 2 3 2019-07-10 22:18:37 1 1 2019-07-10 22:18:37 2 3 2019-07-10 22:33:37 1 1 2019-07-10 22:33:37 2 4 2019-07-10 22:48:37 1 1 2019-07-10 22:48:37 2 3 2019-07-10 23:13:37 2 5 2019-07-10 23:28:37 2 4 2019-07-11 00:03:37 2 4 2019-07-11 00:08:37 2 4 2019-07-11 00:28:37 2 5 2019-07-11 00:33:37 2 2 2019-07-11 00:38:37 2 2 2019-07-11 01:23:37 2 4 2019-07-11 01:28:37 2 3 2019-07-11 01:43:37 2 2 2019-07-11 01:48:37 2 3 2019-07-11 02:03:37 2 4 2019-07-11 02:23:37 2 2 2019-07-11 02:28:37 2 2 2019-07-11 04:03:37 2 1 2019-07-11 04:08:37 2 1 2019-07-11 04:13:37 2 1 2019-07-11 04:18:37 2 1 2019-07-11 04:23:37 2 1 2019-07-11 04:28:37 2 1 2019-07-11 04:33:37 2 1 2019-07-11 04:38:37 2 1 2019-07-11 04:43:37 2 1 2019-07-11 04:48:37 2 1 2019-07-11 04:53:37 2 1 2019-07-11 04:58:37 2 1 2019-07-11 05:03:37 2 1 2019-07-11 05:08:37 2 1 2019-07-11 05:13:37 2 1 2019-07-11 05:18:37 2 1 2019-07-11 05:23:37 2 1 2019-07-11 05:28:37 2 1 2019-07-11 05:33:37 2 1 2019-07-11 05:38:37 2 1 2019-07-11 05:43:37 2 1 2019-07-11 05:48:37 2 1 2019-07-11 05:53:37 2 1 2019-07-11 05:58:37 2 1 2019-07-11 06:03:37 2 1 2019-07-11 06:08:37 2 1 2019-07-11 06:13:37 2 1 2019-07-11 06:18:37 2 1 2019-07-11 06:23:37 2 1 2019-07-11 06:28:37 2 1 2019-07-11 06:33:37 2 1 2019-07-11 06:38:37 2 1 2019-07-11 06:43:37 2 1 2019-07-11 06:48:37 2 1 2019-07-11 06:53:37 2 1 2019-07-11 06:58:37 2 1 2019-07-11 07:03:37 2 1 2019-07-11 07:08:37 2 1 2019-07-11 07:13:37 2 1 2019-07-11 07:18:37 2 2 2019-07-11 07:23:37 2 2 2019-07-11 09:38:37 2 3 2019-07-11 10:03:37 2 2 2019-07-11 10:08:37 2 2 2019-07-11 10:13:37 2 3 2019-07-11 10:28:37 2 2 2019-07-11 10:58:37 2 3 2019-07-11 11:13:37 2 5 2019-07-11 11:18:37 2 5 2019-07-11 11:23:37 2 5 2019-07-11 11:28:37 2 5 2019-07-11 11:33:37 2 5 2019-07-11 11:38:37 2 5 2019-07-11 12:03:37 2 6 2019-07-11 12:33:37 2 4 2019-07-11 12:58:37 1 2 2019-07-11 12:58:37 2 5 2019-07-11 13:28:37 2 4 2019-07-11 13:43:37 2 4 2019-07-11 13:53:37 2 4 2019-07-11 14:13:37 2 4 2019-07-11 14:18:37 2 4 2019-07-11 14:23:37 2 4 2019-07-11 14:43:37 2 4 2019-07-11 15:18:37 2 3 2019-07-11 15:33:37 1 1 2019-07-11 15:33:37 2 4 2019-07-11 15:43:37 1 1 2019-07-11 15:43:37 2 3 2019-07-11 15:53:37 2 4 2019-07-11 15:58:37 2 4 2019-07-11 16:03:37 2 3 2019-07-11 16:08:37 2 3 2019-07-11 16:23:37 1 1 2019-07-11 16:23:37 2 3 2019-07-11 16:38:37 1 1 2019-07-11 16:38:37 2 1 2019-07-11 16:48:37 2 3 2019-07-11 16:53:37 2 3 2019-07-11 17:23:37 1 1 2019-07-11 17:23:37 2 4 2019-07-11 17:33:37 1 1 2019-07-11 17:33:37 2 5 2019-07-11 17:43:37 1 1 2019-07-11 17:43:37 2 4 2019-07-11 17:48:37 1 1 2019-07-11 17:48:37 2 5 2019-07-11 17:53:37 2 5 2019-07-11 17:58:37 2 5 2019-07-11 18:03:37 2 5 2019-07-11 18:08:37 2 5 2019-07-11 18:48:37 2 4 2019-07-11 18:58:38 2 3 2019-07-11 19:13:37 2 4 2019-07-11 19:18:37 2 4 2019-07-11 19:43:37 2 3 2019-07-11 21:08:37 2 4 2019-07-11 21:43:37 2 4 2019-07-11 22:18:37 2 2 2019-07-11 22:23:37 2 1 2019-07-11 22:43:37 2 2 2019-07-11 22:48:37 1 1 2019-07-11 22:48:37 2 3 2019-07-11 23:03:37 2 5 2019-07-11 23:18:37 2 5 2019-07-11 23:33:37 2 5 2019-07-10 11:08:37 2 2 2019-07-10 11:23:37 2 1 2019-07-10 11:28:37 2 1 2019-07-10 11:58:37 2 2 2019-07-10 12:13:37 2 3 2019-07-10 12:28:37 2 5 2019-07-10 13:48:37 2 4 2019-07-10 13:53:37 2 4 2019-07-10 14:38:37 1 1 2019-07-10 14:38:37 2 6 2019-07-10 15:03:37 1 1 2019-07-10 15:03:37 2 2 2019-07-10 15:28:37 2 2 2019-07-10 16:03:37 1 1 2019-07-10 16:03:37 2 2 2019-07-10 16:18:37 2 1 2019-07-10 16:23:37 2 2 2019-07-10 16:33:37 2 1 2019-07-10 16:38:37 2 2 2019-07-10 16:43:37 1 1 2019-07-10 16:43:37 2 2 2019-07-10 16:53:37 1 1 2019-07-10 16:53:37 2 2 2019-07-10 17:03:37 2 4 2019-07-10 17:13:37 2 4 2019-07-10 17:28:37 2 3 2019-07-10 17:38:37 1 1 2019-07-10 17:38:37 2 5 2019-07-10 17:53:37 1 1 2019-07-10 17:53:37 2 4 2019-07-10 18:13:37 2 6 2019-07-10 18:23:37 2 5 2019-07-10 18:28:37 2 6 2019-07-10 18:53:37 2 5 2019-07-10 18:58:37 2 5 2019-07-10 19:13:37 1 1 2019-07-10 19:13:37 2 5 2019-07-10 19:18:37 2 5 2019-07-10 19:28:37 2 4 2019-07-10 19:33:37 2 4 2019-07-10 19:53:37 2 6 2019-07-10 20:03:37 2 4 2019-07-10 20:13:37 2 3 2019-07-10 20:33:37 2 3 2019-07-10 20:43:37 2 4 2019-07-10 20:53:37 2 4 2019-07-10 21:18:37 2 3 2019-07-10 21:33:37 1 1 2019-07-10 21:33:37 2 2 2019-07-10 22:23:37 1 1 2019-07-10 22:23:37 2 2 2019-07-10 22:28:37 1 1 2019-07-10 22:28:37 2 2 2019-07-10 22:38:37 1 1 2019-07-10 22:38:37 2 5 2019-07-10 22:43:37 1 1 2019-07-10 22:43:37 2 3 2019-07-10 23:18:37 2 4 2019-07-10 23:33:37 2 3 2019-07-10 23:38:37 2 3 2019-07-10 23:43:37 2 3 2019-07-10 23:53:37 2 4 2019-07-10 23:58:37 2 3 2019-07-11 00:13:37 2 5 2019-07-11 01:08:37 2 2 2019-07-11 01:53:37 2 4 2019-07-11 02:08:37 2 3 2019-07-11 02:33:37 2 1 2019-07-11 02:38:37 2 1 2019-07-11 02:43:37 2 1 2019-07-11 02:48:37 2 1 2019-07-11 02:53:37 2 1 2019-07-11 02:58:37 2 1 2019-07-11 03:03:37 2 1 2019-07-11 03:08:37 2 2 2019-07-11 03:13:37 2 2 2019-07-11 07:28:37 2 2 2019-07-11 09:33:37 2 2 2019-07-11 09:43:37 2 3 2019-07-11 09:48:37 2 2 2019-07-11 09:53:37 2 2 2019-07-11 10:23:37 2 3 2019-07-11 10:33:37 2 2 2019-07-11 10:38:37 2 2 2019-07-11 10:43:37 2 2 2019-07-11 10:48:37 2 2 2019-07-11 10:53:37 2 2 2019-07-11 11:03:37 2 4 2019-07-11 11:08:37 2 5 2019-07-11 11:53:37 2 8 2019-07-11 11:58:37 2 7 2019-07-11 12:08:37 2 6 2019-07-11 12:13:37 1 1 2019-07-11 12:13:37 2 6 2019-07-11 12:18:37 1 1 2019-07-11 12:18:37 2 5 2019-07-11 12:28:37 1 1 2019-07-11 12:28:37 2 5 2019-07-11 12:48:37 1 2 2019-07-11 12:48:37 2 3 2019-07-11 12:53:37 1 2 2019-07-11 12:53:37 2 4 2019-07-11 13:08:37 1 1 2019-07-11 13:08:37 2 5 2019-07-11 13:13:37 2 5 2019-07-11 13:33:37 2 4 2019-07-11 13:48:37 2 4 2019-07-11 13:58:37 1 2 2019-07-11 13:58:37 2 4 2019-07-11 14:03:37 2 5 2019-07-11 14:08:37 2 5 2019-07-11 14:33:37 2 5 2019-07-11 14:38:37 2 5 2019-07-11 14:53:38 1 1 2019-07-11 14:53:38 2 3 2019-07-11 14:58:37 1 1 2019-07-11 14:58:37 2 4 2019-07-11 15:03:37 2 4 2019-07-11 15:23:37 2 3 2019-07-11 15:28:37 1 1 2019-07-11 15:28:37 2 3 2019-07-11 16:18:37 1 1 2019-07-11 16:18:37 2 2 2019-07-11 16:28:37 1 1 2019-07-11 16:28:37 2 3 2019-07-11 16:43:37 2 2 2019-07-11 17:03:37 2 3 2019-07-11 17:08:37 2 3 2019-07-11 17:18:37 2 4 2019-07-11 17:38:37 1 1 2019-07-11 17:38:37 2 3 2019-07-11 18:13:37 2 3 2019-07-11 18:18:37 2 3 2019-07-11 18:23:37 2 3 2019-07-11 18:28:37 2 3 2019-07-11 18:38:37 2 3 2019-07-11 18:43:37 1 1 2019-07-11 18:43:37 2 4 2019-07-11 19:33:37 2 2 2019-07-11 19:38:37 2 2 2019-07-11 20:08:37 2 1 2019-07-11 20:23:37 2 1 2019-07-11 20:28:37 2 1 2019-07-11 20:33:37 2 1 2019-07-11 20:43:37 2 2 2019-07-11 21:03:37 2 3 2019-07-11 21:13:37 2 2 2019-07-11 21:18:37 2 2 2019-07-11 21:33:37 2 4 2019-07-11 21:53:37 2 4 2019-07-11 22:08:37 2 3 2019-07-11 22:13:37 2 3 2019-07-11 22:28:37 2 1 2019-07-11 22:33:37 2 4 2019-07-11 22:53:37 2 4 2019-07-11 22:58:37 2 5 2019-07-11 23:13:37 2 5 2019-07-11 23:23:37 2 4 2019-07-11 23:38:37 2 5 2019-07-11 23:58:37 2 4 2019-07-12 00:03:37 2 3 2019-07-12 00:08:37 2 2 2019-07-12 00:13:37 2 2 2019-07-12 00:18:37 2 4 2019-07-12 00:23:37 2 5 2019-07-12 00:28:37 2 2 2019-07-12 00:33:37 2 3 2019-07-12 00:38:37 2 3 2019-07-12 00:43:37 2 2 2019-07-12 00:53:37 2 2 2019-07-12 00:58:37 2 2 2019-07-12 01:03:37 2 2 2019-07-12 01:08:37 2 1 2019-07-12 01:13:37 2 1 2019-07-12 01:18:37 2 2 2019-07-12 01:23:37 2 2 2019-07-12 01:28:37 2 2 2019-07-12 01:33:37 2 2 2019-07-12 02:23:37 2 1 2019-07-12 02:28:37 2 1 2019-07-12 02:33:37 2 1 2019-07-12 02:38:37 2 1 2019-07-12 02:43:37 2 1 2019-07-12 02:48:37 2 1 2019-07-12 02:53:37 2 1 2019-07-10 11:13:37 2 1 2019-07-10 11:18:37 2 1 2019-07-10 11:33:37 2 2 2019-07-10 12:03:37 2 1 2019-07-10 12:08:37 2 1 2019-07-10 12:33:37 2 4 2019-07-10 12:38:37 2 4 2019-07-10 13:08:37 2 1 2019-07-10 13:18:37 2 4 2019-07-10 13:23:37 2 4 2019-07-10 13:28:37 2 4 2019-07-10 13:38:37 2 4 2019-07-10 15:08:37 2 2 2019-07-10 15:18:37 2 3 2019-07-10 15:43:37 2 2 2019-07-10 15:53:37 2 1 2019-07-10 15:58:37 2 2 2019-07-10 16:08:37 2 1 2019-07-10 16:13:37 2 1 2019-07-10 16:58:37 2 2 2019-07-10 17:08:37 2 4 2019-07-10 17:33:37 2 4 2019-07-10 17:43:37 1 1 2019-07-10 17:43:37 2 4 2019-07-10 17:48:37 1 1 2019-07-10 17:48:37 2 4 2019-07-10 17:58:37 2 5 2019-07-10 18:03:37 2 5 2019-07-10 18:18:37 2 5 2019-07-10 18:33:37 2 5 2019-07-10 18:38:37 2 4 2019-07-10 18:43:37 2 4 2019-07-10 18:48:37 2 5 2019-07-10 19:23:37 2 4 2019-07-10 19:38:37 2 4 2019-07-10 19:43:37 2 3 2019-07-10 19:48:37 2 5 2019-07-10 20:08:37 2 3 2019-07-10 20:18:37 2 3 2019-07-10 20:23:37 2 3 2019-07-10 21:13:37 2 3 2019-07-10 21:23:37 2 2 2019-07-10 21:38:37 1 1 2019-07-10 21:38:37 2 1 2019-07-10 21:58:37 1 1 2019-07-10 21:58:37 2 2 2019-07-10 22:03:37 1 1 2019-07-10 22:03:37 2 4 2019-07-10 22:08:37 1 1 2019-07-10 22:08:37 2 3 2019-07-10 22:53:37 2 4 2019-07-10 22:58:37 2 4 2019-07-10 23:03:37 2 4 2019-07-10 23:08:37 2 4 2019-07-10 23:23:37 2 3 2019-07-10 23:48:37 2 2 2019-07-11 00:18:37 2 4 2019-07-11 00:23:37 2 3 2019-07-11 00:43:37 2 2 2019-07-11 00:48:37 2 2 2019-07-11 00:53:37 2 2 2019-07-11 00:58:37 2 2 2019-07-11 01:03:37 2 2 2019-07-11 01:13:37 2 3 2019-07-11 01:18:37 2 3 2019-07-11 01:33:37 2 1 2019-07-11 01:38:37 2 1 2019-07-11 01:58:37 2 5 2019-07-11 02:13:37 2 2 2019-07-11 02:18:37 2 2 2019-07-11 03:18:37 2 1 2019-07-11 03:23:37 2 1 2019-07-11 03:28:37 2 1 2019-07-11 03:33:37 2 1 2019-07-11 03:38:37 2 1 2019-07-11 03:43:37 2 1 2019-07-11 03:48:37 2 1 2019-07-11 03:53:37 2 1 2019-07-11 03:58:37 2 1 2019-07-11 07:33:38 2 2 2019-07-11 08:53:37 2 1 2019-07-11 08:58:37 2 1 2019-07-11 09:03:37 2 1 2019-07-11 09:08:37 2 1 2019-07-11 09:13:37 2 1 2019-07-11 09:18:37 2 1 2019-07-11 09:23:37 2 1 2019-07-11 09:28:37 2 1 2019-07-11 09:58:37 2 2 2019-07-11 10:18:37 2 4 2019-07-11 11:43:37 2 6 2019-07-11 11:48:37 2 7 2019-07-11 12:23:37 1 1 2019-07-11 12:23:37 2 4 2019-07-11 12:38:37 1 2 2019-07-11 12:38:37 2 4 2019-07-11 12:43:37 1 2 2019-07-11 12:43:37 2 4 2019-07-11 13:03:37 1 2 2019-07-11 13:03:37 2 5 2019-07-11 13:18:37 2 5 2019-07-11 13:23:37 2 4 2019-07-11 13:38:37 2 4 2019-07-11 14:28:37 2 5 2019-07-11 14:48:37 2 3 2019-07-11 15:08:37 2 5 2019-07-11 15:13:37 2 4 2019-07-11 15:38:37 1 1 2019-07-11 15:38:37 2 3 2019-07-11 15:48:37 1 2 2019-07-11 15:48:37 2 3 2019-07-11 16:13:37 1 1 2019-07-11 16:13:37 2 3 2019-07-11 16:33:37 1 1 2019-07-11 16:33:37 2 3 2019-07-11 16:58:37 2 2 2019-07-11 17:13:37 2 5 2019-07-11 17:28:37 1 1 2019-07-11 17:28:37 2 5 2019-07-11 18:33:37 2 3 2019-07-11 18:53:37 2 3 2019-07-11 19:03:37 2 2 2019-07-11 19:08:37 2 2 2019-07-11 19:23:37 2 3 2019-07-11 19:28:37 2 3 2019-07-11 19:48:37 2 2 2019-07-11 19:53:37 2 2 2019-07-11 19:58:37 2 2 2019-07-11 20:03:37 2 2 2019-07-11 20:38:37 2 3 2019-07-11 20:48:37 2 2 2019-07-11 20:53:37 2 2 2019-07-11 20:58:37 2 2 2019-07-11 21:23:37 2 4 2019-07-11 21:28:37 2 5 2019-07-11 21:38:37 2 4 2019-07-11 21:48:37 2 3 2019-07-11 21:58:37 2 5 2019-07-11 22:03:37 2 4 2019-07-11 22:38:37 2 2 2019-07-11 23:08:37 2 5 2019-07-11 23:28:37 2 4 2019-07-11 23:43:37 2 4 2019-07-11 23:48:37 2 5 2019-07-11 23:53:37 2 4 2019-07-12 00:48:37 2 2 2019-07-12 01:38:37 2 1 2019-07-12 01:43:37 2 1 2019-07-12 01:48:37 2 1 2019-07-12 01:53:37 2 1 2019-07-12 01:58:37 2 1 2019-07-12 02:03:37 2 1 2019-07-12 02:08:37 2 1 2019-07-12 02:13:37 2 1 2019-07-12 02:18:37 2 1 2019-07-12 02:58:37 2 1 2019-07-12 03:03:37 2 1 2019-07-12 03:08:37 2 1 2019-07-12 03:13:37 2 1 2019-07-12 03:18:37 2 1 2019-07-12 03:23:37 2 1 2019-07-12 03:28:37 2 1 2019-07-12 03:33:37 2 1 2019-07-12 03:38:37 2 1 2019-07-12 03:43:37 2 1 2019-07-12 03:48:37 2 1 2019-07-12 03:53:37 2 1 2019-07-12 03:58:37 2 1 2019-07-12 04:03:37 1 1 2019-07-12 04:03:37 2 1 2019-07-12 04:08:37 1 1 2019-07-12 04:08:37 2 1 2019-07-12 04:13:37 1 1 2019-07-12 04:13:37 2 1 2019-07-12 04:18:37 1 1 2019-07-12 04:18:37 2 1 2019-07-12 04:23:37 1 1 2019-07-12 04:23:37 2 1 2019-07-12 04:28:37 1 1 2019-07-12 04:28:37 2 1 2019-07-12 04:33:37 1 1 2019-07-12 04:33:37 2 1 2019-07-12 04:38:37 1 1 2019-07-12 04:38:37 2 1 2019-07-12 04:43:37 1 1 2019-07-12 04:43:37 2 1 2019-07-12 04:48:37 1 1 2019-07-12 04:48:37 2 1 2019-07-12 04:53:37 1 1 2019-07-12 04:53:37 2 1 2019-07-12 05:08:37 2 1 2019-07-12 05:13:37 2 1 2019-07-12 05:58:37 2 1 2019-07-12 06:18:37 2 1 2019-07-12 07:03:37 2 1 2019-07-12 07:23:37 2 1 2019-07-12 07:28:37 2 1 2019-07-12 07:48:37 2 1 2019-07-12 08:13:37 2 1 2019-07-12 08:28:37 2 1 2019-07-12 08:33:37 2 2 2019-07-12 09:23:37 1 1 2019-07-12 09:23:37 2 1 2019-07-12 10:28:37 1 1 2019-07-12 10:33:37 1 1 2019-07-12 10:38:37 1 1 2019-07-12 10:53:37 1 1 2019-07-12 10:53:37 2 1 2019-07-12 10:58:37 1 1 2019-07-12 10:58:37 2 1 2019-07-12 11:23:37 1 1 2019-07-12 11:23:37 2 2 2019-07-12 11:28:37 1 1 2019-07-12 11:28:37 2 1 2019-07-12 11:38:37 2 2 2019-07-12 11:48:37 1 1 2019-07-12 11:53:37 1 1 2019-07-12 11:58:37 1 1 2019-07-12 11:58:37 2 1 2019-07-12 12:23:37 1 1 2019-07-12 12:23:37 2 1 2019-07-12 12:33:37 1 1 2019-07-12 13:03:37 1 1 2019-07-12 13:03:37 2 1 2019-07-12 13:13:37 1 1 2019-07-12 14:13:37 1 1 2019-07-12 14:18:37 1 1 2019-07-12 14:23:37 1 1 2019-07-12 14:28:37 1 1 2019-07-12 14:33:37 1 1 2019-07-12 14:38:37 1 1 2019-07-12 14:53:37 1 1 2019-07-12 14:53:37 2 1 2019-07-12 14:58:37 1 1 2019-07-12 14:58:37 2 1 2019-07-12 15:03:37 1 1 2019-07-12 15:03:37 2 1 2019-07-12 15:08:37 1 1 2019-07-12 15:08:37 2 1 2019-07-12 15:13:37 1 1 2019-07-12 15:13:37 2 1 2019-07-12 15:18:37 1 1 2019-07-12 15:18:37 2 1 2019-07-12 15:23:37 1 1 2019-07-12 15:23:37 2 1 2019-07-12 15:28:37 1 1 2019-07-12 15:28:37 2 1 2019-07-12 15:33:37 1 1 2019-07-12 15:33:37 2 1 2019-07-12 15:48:37 1 1 2019-07-12 15:48:37 2 1 2019-07-12 15:53:37 1 1 2019-07-12 15:53:37 2 1 2019-07-12 15:58:37 1 1 2019-07-12 15:58:37 2 1 2019-07-12 16:03:37 1 1 2019-07-12 16:03:37 2 1 2019-07-12 16:08:37 1 1 2019-07-12 16:08:37 2 1 2019-07-12 17:43:37 2 2 2019-07-12 17:58:37 2 1 2019-07-12 18:03:37 2 1 2019-07-12 18:08:37 2 1 2019-07-12 18:28:37 1 1 2019-07-12 18:28:37 2 1 2019-07-12 19:03:37 2 1 2019-07-12 19:08:37 2 1 2019-07-12 19:13:37 2 1 2019-07-12 19:18:37 2 1 2019-07-12 19:23:37 2 1 2019-07-12 19:28:37 2 1 2019-07-12 19:33:37 2 1 2019-07-12 20:03:37 2 1 2019-07-12 20:08:37 2 1 2019-07-12 20:13:37 2 1 2019-07-12 20:18:37 2 1 2019-07-12 21:58:37 2 1 2019-07-12 23:43:37 2 2 2019-07-13 00:03:37 1 1 2019-07-13 00:03:37 2 1 2019-07-13 01:38:37 2 1 2019-07-13 01:43:37 2 1 2019-07-13 01:48:37 2 1 2019-07-13 07:23:37 2 1 2019-07-13 07:28:37 2 1 2019-07-13 07:33:37 2 1 2019-07-13 11:03:37 2 1 2019-07-13 11:28:37 2 1 2019-07-13 12:38:37 2 1 2019-07-13 13:08:37 2 1 2019-07-13 13:33:37 2 1 2019-07-13 13:38:37 2 1 2019-07-13 13:43:37 2 1 2019-07-13 13:48:37 2 1 2019-07-13 13:53:37 2 1 2019-07-13 13:58:37 2 1 2019-07-13 14:58:37 2 1 2019-07-13 15:28:37 1 1 2019-07-13 15:28:37 2 1 2019-07-13 16:28:37 2 1 2019-07-13 16:33:37 2 1 2019-07-13 16:38:37 2 1 2019-07-13 16:43:37 2 1 2019-07-13 16:48:37 2 1 2019-07-13 17:43:37 2 1 2019-07-13 18:03:37 2 3 2019-07-13 18:43:37 2 2 2019-07-13 19:23:37 2 2 2019-07-13 19:33:37 2 4 2019-07-13 19:48:37 2 4 2019-07-13 19:53:37 2 4 2019-07-13 19:58:37 2 2 2019-07-13 20:23:37 2 1 2019-07-13 20:53:37 2 1 2019-07-13 21:03:37 2 2 2019-07-13 21:53:37 2 4 2019-07-13 21:58:37 2 4 2019-07-13 22:23:37 2 5 2019-07-13 22:38:37 2 5 2019-07-13 22:53:37 2 7 2019-07-13 23:08:37 2 6 2019-07-13 23:38:37 1 1 2019-07-13 23:38:37 2 4 2019-07-13 23:43:37 1 1 2019-07-13 23:43:37 2 3 2019-07-13 23:53:37 1 1 2019-07-13 23:53:37 2 3 2019-07-13 23:58:37 1 1 2019-07-13 23:58:37 2 3 2019-07-14 00:53:37 2 1 2019-07-14 01:08:37 2 1 2019-07-14 01:13:37 2 1 2019-07-14 01:43:37 2 1 2019-07-14 02:18:37 2 2 2019-07-14 02:33:37 2 1 2019-07-14 02:38:37 1 1 2019-07-14 02:38:37 2 1 2019-07-14 04:28:37 1 1 2019-07-14 05:28:37 1 1 2019-07-14 05:33:37 1 1 2019-07-14 08:18:37 1 1 2019-07-14 08:18:37 2 2 2019-07-14 08:23:37 2 1 2019-07-14 08:33:37 1 1 2019-07-14 08:33:37 2 2 2019-07-14 08:38:37 2 1 2019-07-14 08:43:37 2 2 2019-07-14 08:48:37 2 1 2019-07-14 09:33:37 2 3 2019-07-14 09:48:37 2 2 2019-07-14 09:53:37 2 3 2019-07-14 10:03:37 2 2 2019-07-14 10:38:37 2 2 2019-07-14 10:48:37 2 1 2019-07-14 10:53:37 2 1 2019-07-14 10:58:37 2 2 2019-07-14 11:43:37 1 1 2019-07-14 11:43:37 2 4 2019-07-14 12:28:37 2 3 2019-07-14 12:48:37 2 4 2019-07-14 12:58:37 1 1 2019-07-14 12:58:37 2 4 2019-07-14 13:18:37 2 2 2019-07-14 13:38:37 1 1 2019-07-14 13:38:37 2 2 2019-07-14 14:13:37 2 3 2019-07-14 14:18:37 1 1 2019-07-14 14:18:37 2 3 2019-07-14 14:33:37 2 4 2019-07-14 14:43:37 2 3 2019-07-12 04:58:37 2 1 2019-07-12 05:03:37 2 1 2019-07-12 05:18:37 2 1 2019-07-12 05:23:37 2 1 2019-07-12 05:28:37 1 1 2019-07-12 05:28:37 2 1 2019-07-12 05:43:37 2 1 2019-07-12 05:53:37 2 1 2019-07-12 06:08:37 2 1 2019-07-12 06:13:37 2 1 2019-07-12 06:28:37 2 1 2019-07-12 06:43:37 2 1 2019-07-12 06:48:37 2 1 2019-07-12 06:53:37 2 1 2019-07-12 07:13:37 2 1 2019-07-12 07:18:37 2 1 2019-07-12 08:08:37 2 1 2019-07-12 08:23:37 2 1 2019-07-12 08:48:37 2 1 2019-07-12 08:58:37 2 2 2019-07-12 09:08:37 2 1 2019-07-12 09:13:37 2 1 2019-07-12 09:43:37 1 1 2019-07-12 11:03:37 1 1 2019-07-12 11:03:37 2 1 2019-07-12 11:08:37 1 1 2019-07-12 11:08:37 2 1 2019-07-12 11:18:37 1 1 2019-07-12 11:18:37 2 2 2019-07-12 12:03:37 1 1 2019-07-12 12:03:37 2 2 2019-07-12 12:08:37 1 1 2019-07-12 12:08:37 2 1 2019-07-12 12:13:37 1 1 2019-07-12 12:13:37 2 1 2019-07-12 12:18:37 1 1 2019-07-12 12:18:37 2 1 2019-07-12 13:08:37 1 1 2019-07-12 13:18:37 1 1 2019-07-12 13:18:37 2 1 2019-07-12 13:23:37 1 1 2019-07-12 13:23:37 2 1 2019-07-12 13:48:37 1 1 2019-07-12 13:53:37 1 1 2019-07-12 13:58:37 1 1 2019-07-12 14:03:37 1 1 2019-07-12 14:43:37 1 1 2019-07-12 14:43:37 2 1 2019-07-12 14:48:37 1 1 2019-07-12 14:48:37 2 1 2019-07-12 16:13:37 1 1 2019-07-12 17:48:37 2 3 2019-07-12 18:33:37 1 1 2019-07-12 18:38:37 1 1 2019-07-12 18:48:37 1 1 2019-07-12 18:53:37 1 1 2019-07-12 19:58:37 2 1 2019-07-12 21:43:37 2 1 2019-07-12 22:23:37 2 1 2019-07-12 22:28:37 2 1 2019-07-12 22:33:37 2 1 2019-07-12 23:33:37 2 2 2019-07-12 23:38:37 2 2 2019-07-12 23:48:37 2 1 2019-07-13 08:08:37 2 1 2019-07-13 08:43:37 2 1 2019-07-13 12:43:37 2 1 2019-07-13 14:13:37 1 1 2019-07-13 14:18:37 1 1 2019-07-13 14:23:37 1 1 2019-07-13 14:28:37 1 1 2019-07-13 14:33:37 1 1 2019-07-13 15:18:37 2 1 2019-07-13 17:03:37 2 1 2019-07-13 17:08:37 2 1 2019-07-13 17:13:37 2 1 2019-07-13 17:18:37 2 1 2019-07-13 17:23:37 2 1 2019-07-13 17:28:37 2 1 2019-07-13 17:33:37 2 1 2019-07-13 17:38:37 2 1 2019-07-13 17:48:37 2 1 2019-07-13 17:53:37 2 1 2019-07-13 17:58:37 2 1 2019-07-13 18:08:37 2 2 2019-07-13 19:03:37 2 1 2019-07-13 19:08:37 2 1 2019-07-13 19:13:37 2 1 2019-07-13 19:18:37 2 2 2019-07-13 19:43:37 2 3 2019-07-13 20:48:37 2 2 2019-07-13 21:18:37 2 4 2019-07-13 21:28:37 2 4 2019-07-13 21:33:37 2 4 2019-07-13 21:38:37 2 4 2019-07-13 21:43:37 2 4 2019-07-13 21:48:37 2 4 2019-07-13 22:18:37 2 4 2019-07-13 22:33:37 2 4 2019-07-13 22:48:37 2 6 2019-07-13 23:28:37 1 1 2019-07-13 23:28:37 2 4 2019-07-13 23:33:37 1 1 2019-07-13 23:33:37 2 3 2019-07-14 00:08:37 1 2 2019-07-14 00:08:37 2 3 2019-07-14 00:13:37 1 1 2019-07-14 00:13:37 2 3 2019-07-14 00:33:37 1 1 2019-07-14 00:33:37 2 3 2019-07-14 00:48:37 2 3 2019-07-14 00:58:37 2 1 2019-07-14 01:03:37 2 1 2019-07-14 01:23:37 2 1 2019-07-14 01:28:37 2 1 2019-07-14 01:48:37 2 1 2019-07-14 02:08:37 2 1 2019-07-14 02:13:37 2 1 2019-07-14 02:28:37 2 1 2019-07-14 02:53:37 1 1 2019-07-14 03:08:37 1 1 2019-07-14 03:28:37 1 1 2019-07-14 05:18:37 2 1 2019-07-14 05:23:37 2 1 2019-07-14 08:03:37 2 1 2019-07-14 08:08:37 2 2 2019-07-14 08:13:37 2 2 2019-07-14 09:08:37 2 1 2019-07-14 09:13:37 2 1 2019-07-14 09:18:37 2 1 2019-07-14 09:23:37 2 1 2019-07-14 09:38:37 2 1 2019-07-14 09:43:37 2 1 2019-07-14 09:58:37 2 2 2019-07-14 10:23:37 2 3 2019-07-14 10:43:37 2 1 2019-07-14 11:03:37 2 2 2019-07-14 11:28:37 2 4 2019-07-14 11:33:37 2 4 2019-07-14 11:48:37 2 4 2019-07-14 11:53:37 2 5 2019-07-14 11:58:37 2 3 2019-07-14 12:03:37 2 4 2019-07-14 12:08:37 2 3 2019-07-14 12:13:37 2 3 2019-07-14 12:18:37 2 3 2019-07-14 12:23:37 2 3 2019-07-14 12:38:37 1 1 2019-07-14 12:38:37 2 3 2019-07-14 12:53:37 2 4 2019-07-14 13:13:37 2 2 2019-07-14 13:28:37 2 2 2019-07-14 13:33:37 2 4 2019-07-14 13:43:37 2 3 2019-07-14 13:48:37 2 4 2019-07-14 13:53:37 1 1 2019-07-14 13:53:37 2 3 2019-07-14 14:03:37 2 3 2019-07-14 14:28:37 2 3 2019-07-14 14:38:37 2 3 2019-07-14 14:48:37 2 3 2019-07-14 14:53:37 2 3 2019-07-14 14:58:37 1 1 2019-07-14 14:58:37 2 4 2019-07-14 15:03:37 2 4 2019-07-14 15:18:37 1 1 2019-07-14 15:18:37 2 5 2019-07-14 15:28:37 2 5 2019-07-14 15:33:37 1 1 2019-07-14 15:33:37 2 4 2019-07-14 15:43:37 1 1 2019-07-14 15:43:37 2 4 2019-07-14 15:48:37 1 1 2019-07-14 15:48:37 2 4 2019-07-14 16:03:37 2 3 2019-07-14 16:13:37 2 5 2019-07-14 16:18:37 2 4 2019-07-14 16:23:37 2 4 2019-07-14 16:33:37 2 3 2019-07-14 16:38:37 1 1 2019-07-14 16:38:37 2 4 2019-07-14 16:43:37 2 4 2019-07-14 16:48:37 2 4 2019-07-14 16:58:37 2 2 2019-07-14 17:03:37 2 2 2019-07-12 05:33:37 2 1 2019-07-12 05:38:37 2 1 2019-07-12 05:48:37 2 2 2019-07-12 06:03:37 2 1 2019-07-12 06:23:37 2 1 2019-07-12 06:33:37 2 1 2019-07-12 06:38:37 2 1 2019-07-12 06:58:37 2 2 2019-07-12 07:08:37 2 1 2019-07-12 07:33:37 2 1 2019-07-12 07:53:37 2 1 2019-07-12 08:38:37 2 1 2019-07-12 08:43:37 2 1 2019-07-12 08:53:37 2 2 2019-07-12 09:03:37 2 1 2019-07-12 09:18:37 2 1 2019-07-12 09:28:37 1 1 2019-07-12 09:28:37 2 2 2019-07-12 09:33:37 1 1 2019-07-12 09:33:37 2 2 2019-07-12 09:38:37 1 1 2019-07-12 09:38:37 2 1 2019-07-12 10:43:37 1 1 2019-07-12 10:48:37 1 1 2019-07-12 11:13:37 1 1 2019-07-12 11:33:37 2 2 2019-07-12 12:28:37 1 1 2019-07-12 12:28:37 2 1 2019-07-12 12:48:37 2 1 2019-07-12 12:53:37 2 1 2019-07-12 12:58:37 2 1 2019-07-12 13:28:37 1 1 2019-07-12 13:33:37 1 1 2019-07-12 13:38:37 1 1 2019-07-12 13:43:37 1 1 2019-07-12 14:08:37 1 1 2019-07-12 14:08:37 2 1 2019-07-12 15:38:37 1 1 2019-07-12 15:38:37 2 1 2019-07-12 15:43:37 1 1 2019-07-12 15:43:37 2 2 2019-07-12 17:08:37 2 1 2019-07-12 17:13:37 2 1 2019-07-12 17:18:37 2 1 2019-07-12 17:23:37 2 1 2019-07-12 17:28:37 2 1 2019-07-12 17:33:37 2 1 2019-07-12 17:38:37 2 1 2019-07-12 17:53:37 2 2 2019-07-12 18:43:37 1 1 2019-07-12 19:53:37 2 2 2019-07-12 21:38:37 2 1 2019-07-12 22:03:37 2 1 2019-07-12 22:08:37 2 1 2019-07-12 22:13:37 2 1 2019-07-12 22:18:37 2 1 2019-07-12 23:53:37 1 1 2019-07-12 23:53:37 2 1 2019-07-12 23:58:37 1 1 2019-07-12 23:58:37 2 1 2019-07-13 00:08:37 1 1 2019-07-13 00:08:37 2 1 2019-07-13 00:28:37 2 1 2019-07-13 09:18:37 2 1 2019-07-13 09:23:37 2 1 2019-07-13 09:28:37 2 1 2019-07-13 09:33:37 2 1 2019-07-13 09:38:37 2 1 2019-07-13 11:23:37 2 1 2019-07-13 11:33:37 2 1 2019-07-13 13:13:37 2 1 2019-07-13 14:48:37 1 1 2019-07-13 15:23:37 1 1 2019-07-13 15:23:37 2 1 2019-07-13 15:33:37 1 1 2019-07-13 15:38:37 1 1 2019-07-13 15:48:37 2 1 2019-07-13 15:53:37 2 1 2019-07-13 15:58:37 2 1 2019-07-13 16:03:37 2 1 2019-07-13 16:08:37 2 1 2019-07-13 16:13:37 2 1 2019-07-13 16:18:37 2 1 2019-07-13 16:23:37 2 1 2019-07-13 16:53:37 2 1 2019-07-13 16:58:37 2 2 2019-07-13 18:13:37 2 2 2019-07-13 18:18:37 2 2 2019-07-13 18:23:37 2 2 2019-07-13 18:28:37 2 2 2019-07-13 18:33:37 2 2 2019-07-13 18:38:37 2 3 2019-07-13 18:48:37 2 3 2019-07-13 18:53:37 2 2 2019-07-13 18:58:37 2 2 2019-07-13 19:28:37 2 3 2019-07-13 19:38:37 2 3 2019-07-13 20:03:37 2 1 2019-07-13 20:08:37 2 1 2019-07-13 20:13:37 2 1 2019-07-13 20:18:37 2 1 2019-07-13 20:28:37 2 2 2019-07-13 20:33:37 2 2 2019-07-13 20:38:37 2 2 2019-07-13 20:43:37 2 2 2019-07-13 20:58:37 2 2 2019-07-13 21:08:37 2 3 2019-07-13 21:13:37 2 3 2019-07-13 21:23:37 2 4 2019-07-13 22:03:37 2 5 2019-07-13 22:08:37 2 5 2019-07-13 22:13:37 2 5 2019-07-13 22:28:37 2 4 2019-07-13 22:43:38 2 5 2019-07-13 22:58:37 2 6 2019-07-13 23:03:37 2 6 2019-07-13 23:13:37 2 5 2019-07-13 23:18:37 2 5 2019-07-13 23:23:37 2 5 2019-07-13 23:48:37 2 2 2019-07-14 00:03:37 1 2 2019-07-14 00:03:37 2 2 2019-07-14 00:18:37 1 1 2019-07-14 00:18:37 2 3 2019-07-14 00:23:37 1 1 2019-07-14 00:23:37 2 3 2019-07-14 00:28:37 2 3 2019-07-14 00:38:37 1 1 2019-07-14 00:38:37 2 3 2019-07-14 00:43:37 1 1 2019-07-14 00:43:37 2 3 2019-07-14 01:18:37 2 1 2019-07-14 01:33:37 2 1 2019-07-14 01:38:37 2 1 2019-07-14 01:53:37 2 1 2019-07-14 01:58:37 2 1 2019-07-14 02:03:37 2 1 2019-07-14 02:23:37 1 1 2019-07-14 02:23:37 2 1 2019-07-14 03:03:37 1 1 2019-07-14 06:28:37 1 1 2019-07-14 08:28:37 1 1 2019-07-14 08:28:37 2 1 2019-07-14 08:53:37 2 1 2019-07-14 08:58:37 1 1 2019-07-14 08:58:37 2 1 2019-07-14 09:03:37 2 1 2019-07-14 09:28:37 2 2 2019-07-14 10:08:37 2 2 2019-07-14 10:13:37 2 2 2019-07-14 10:18:37 2 3 2019-07-14 10:28:37 1 1 2019-07-14 10:28:37 2 2 2019-07-14 10:33:37 2 2 2019-07-14 11:08:37 1 1 2019-07-14 11:08:37 2 3 2019-07-14 11:13:37 2 3 2019-07-14 11:18:37 2 4 2019-07-14 11:23:37 2 4 2019-07-14 11:38:37 2 4 2019-07-14 12:33:37 2 3 2019-07-14 12:43:37 1 1 2019-07-14 12:43:37 2 3 2019-07-14 13:03:37 1 1 2019-07-14 13:03:37 2 5 2019-07-14 13:08:37 2 4 2019-07-14 13:23:37 1 1 2019-07-14 13:23:37 2 2 2019-07-14 13:58:37 2 3 2019-07-14 14:08:37 2 2 2019-07-14 14:23:37 2 3 2019-07-14 15:08:37 2 5 2019-07-14 15:13:37 2 4 2019-07-14 15:23:37 2 5 2019-07-14 15:38:37 2 5 2019-07-14 15:53:37 1 1 2019-07-14 15:53:37 2 4 2019-07-14 15:58:37 2 4 2019-07-14 16:08:37 2 5 2019-07-14 16:28:37 2 3 2019-07-14 16:53:37 2 2 2019-07-14 17:08:37 2 1 2019-07-14 17:13:37 2 1 2019-07-14 17:18:37 2 1 2019-07-14 17:23:37 2 1 2019-07-14 17:28:37 2 1 2019-07-14 17:33:37 2 1 2019-07-14 17:43:37 2 2 2019-07-14 17:48:37 1 1 2019-07-14 17:48:37 2 2 2019-07-14 17:53:37 1 1 2019-07-14 17:53:37 2 1 2019-07-14 17:58:37 2 1 2019-07-14 18:03:37 2 1 2019-07-14 18:28:37 2 1 2019-07-14 18:38:37 2 1 2019-07-14 18:43:37 2 1 2019-07-14 19:08:37 2 4 2019-07-14 19:13:37 2 3 2019-07-14 19:48:37 1 1 2019-07-14 19:48:37 2 3 2019-07-14 20:23:37 1 2 2019-07-14 20:23:37 2 3 2019-07-14 20:38:37 2 3 2019-07-14 21:03:37 2 1 2019-07-14 21:13:37 2 1 2019-07-14 21:18:37 2 1 2019-07-14 21:33:37 2 1 2019-07-14 22:08:37 2 2 2019-07-14 22:33:37 2 2 2019-07-14 23:23:37 2 5 2019-07-14 23:28:37 2 5 2019-07-15 00:08:37 2 4 2019-07-15 00:13:37 2 4 2019-07-15 00:18:37 2 4 2019-07-15 00:23:37 2 4 2019-07-15 00:33:37 2 3 2019-07-15 00:38:37 2 2 2019-07-15 00:53:37 2 1 2019-07-15 00:58:37 2 2 2019-07-15 01:03:37 2 3 2019-07-15 01:18:37 2 2 2019-07-15 01:53:37 2 1 2019-07-15 01:58:37 2 1 2019-07-15 02:08:37 1 1 2019-07-15 02:08:37 2 2 2019-07-15 05:43:37 2 2 2019-07-15 07:18:37 2 1 2019-07-15 07:23:37 2 1 2019-07-15 09:13:37 2 5 2019-07-15 09:28:37 2 4 2019-07-15 10:18:37 2 1 2019-07-15 10:38:37 2 1 2019-07-15 10:43:37 2 1 2019-07-15 10:48:37 2 1 2019-07-15 10:58:37 2 2 2019-07-15 11:03:37 2 2 2019-07-15 11:08:37 2 2 2019-07-15 11:13:37 2 2 2019-07-15 11:18:37 2 2 2019-07-15 11:23:37 2 3 2019-07-15 11:48:37 2 5 2019-07-15 11:58:37 2 5 2019-07-15 12:03:37 2 5 2019-07-15 12:23:37 2 5 2019-07-15 12:28:37 2 5 2019-07-15 12:38:37 2 4 2019-07-15 12:48:37 2 5 2019-07-15 13:13:37 1 1 2019-07-15 13:13:37 2 6 2019-07-15 13:18:37 2 7 2019-07-15 13:28:37 2 6 2019-07-15 13:33:37 2 6 2019-07-15 13:43:37 1 1 2019-07-15 13:43:37 2 7 2019-07-15 13:48:37 2 8 2019-07-15 14:23:37 2 3 2019-07-15 14:33:37 2 2 2019-07-15 14:38:37 2 2 2019-07-15 14:43:37 2 2 2019-07-15 14:48:37 2 2 2019-07-15 14:53:37 2 2 2019-07-15 14:58:37 2 3 2019-07-15 15:13:37 2 2 2019-07-15 15:18:37 2 2 2019-07-15 15:23:37 2 2 2019-07-15 15:43:37 2 3 2019-07-15 16:23:37 2 3 2019-07-15 16:28:37 2 3 2019-07-15 16:33:37 2 3 2019-07-15 16:38:37 2 3 2019-07-15 17:03:37 2 5 2019-07-15 17:08:37 2 5 2019-07-15 17:33:37 2 4 2019-07-15 18:13:37 2 2 2019-07-15 18:18:37 2 2 2019-07-15 18:23:37 2 2 2019-07-15 18:43:37 2 3 2019-07-15 19:18:37 2 4 2019-07-15 20:23:37 2 1 2019-07-15 20:28:37 2 1 2019-07-15 20:33:37 2 1 2019-07-15 21:13:37 2 1 2019-07-15 21:18:37 2 2 2019-07-15 21:23:37 2 2 2019-07-15 21:28:37 2 2 2019-07-15 21:33:37 2 2 2019-07-15 21:38:37 2 2 2019-07-15 21:53:37 2 2 2019-07-15 22:18:37 2 3 2019-07-15 22:23:37 2 3 2019-07-15 22:28:37 2 3 2019-07-15 22:33:37 2 3 2019-07-15 22:48:37 2 3 2019-07-15 22:53:37 2 2 2019-07-15 22:58:37 2 2 2019-07-15 23:18:37 2 1 2019-07-15 23:43:37 2 3 2019-07-16 00:13:37 2 4 2019-07-16 00:18:37 2 5 2019-07-16 00:43:37 2 7 2019-07-16 01:13:37 2 3 2019-07-16 03:08:37 2 1 2019-07-16 03:13:37 2 1 2019-07-16 03:18:37 2 1 2019-07-16 03:23:37 2 1 2019-07-16 04:03:37 2 1 2019-07-16 08:23:37 2 1 2019-07-16 08:28:37 2 1 2019-07-16 08:33:37 2 1 2019-07-16 08:38:37 2 1 2019-07-16 08:43:37 2 1 2019-07-16 08:48:37 2 1 2019-07-16 08:53:37 2 1 2019-07-16 08:58:37 2 1 2019-07-16 09:08:37 2 2 2019-07-16 09:18:37 2 1 2019-07-16 10:18:37 2 2 2019-07-16 10:23:37 2 2 2019-07-16 10:28:37 2 2 2019-07-16 10:33:37 2 2 2019-07-16 10:43:37 2 3 2019-07-16 10:48:37 2 3 2019-07-16 10:53:37 2 3 2019-07-16 10:58:37 2 3 2019-07-16 11:58:37 2 4 2019-07-16 12:03:37 2 4 2019-07-16 12:23:37 2 7 2019-07-16 12:28:37 2 7 2019-07-16 12:33:37 2 7 2019-07-16 13:58:37 2 6 2019-07-16 14:08:37 2 6 2019-07-16 14:13:37 2 3 2019-07-16 14:18:37 2 3 2019-07-16 14:23:37 2 3 2019-07-16 14:28:37 2 4 2019-07-16 14:33:37 2 5 2019-07-16 14:38:37 2 4 2019-07-16 14:48:37 2 3 2019-07-16 14:53:37 2 3 2019-07-16 15:03:37 2 2 2019-07-16 15:08:37 2 2 2019-07-16 15:18:37 2 3 2019-07-16 15:53:37 2 5 2019-07-16 16:13:37 1 1 2019-07-16 16:13:37 2 5 2019-07-16 16:18:37 1 1 2019-07-16 16:18:37 2 5 2019-07-16 16:28:37 2 4 2019-07-16 16:33:37 1 1 2019-07-16 16:33:37 2 3 2019-07-16 16:58:37 1 1 2019-07-16 16:58:37 2 1 2019-07-16 17:13:37 1 1 2019-07-16 17:13:37 2 2 2019-07-16 17:18:37 1 1 2019-07-16 17:18:37 2 2 2019-07-16 17:38:37 2 4 2019-07-16 17:48:37 2 3 2019-07-16 17:53:37 2 3 2019-07-16 18:03:37 2 4 2019-07-16 18:48:37 2 5 2019-07-16 20:03:37 2 3 2019-07-16 20:08:37 2 3 2019-07-16 20:13:37 2 3 2019-07-16 20:18:37 2 2 2019-07-16 20:23:37 2 2 2019-07-16 20:28:37 2 2 2019-07-16 20:38:37 2 2 2019-07-16 20:43:37 2 2 2019-07-14 17:38:37 2 1 2019-07-14 18:13:37 2 1 2019-07-14 18:53:37 2 3 2019-07-14 19:03:37 1 1 2019-07-14 19:03:37 2 3 2019-07-14 19:33:37 1 2 2019-07-14 19:33:37 2 3 2019-07-14 19:43:37 1 1 2019-07-14 19:43:37 2 5 2019-07-14 19:58:37 1 1 2019-07-14 19:58:37 2 3 2019-07-14 20:03:37 1 1 2019-07-14 20:03:37 2 3 2019-07-14 20:08:37 1 1 2019-07-14 20:08:37 2 1 2019-07-14 20:28:37 1 1 2019-07-14 20:28:37 2 1 2019-07-14 20:33:37 2 1 2019-07-14 20:43:37 2 1 2019-07-14 20:58:37 2 1 2019-07-14 21:48:37 1 1 2019-07-14 21:48:37 2 3 2019-07-14 21:58:37 1 1 2019-07-14 21:58:37 2 3 2019-07-14 22:13:37 2 2 2019-07-14 22:18:37 2 2 2019-07-14 22:28:37 2 2 2019-07-14 22:43:37 2 3 2019-07-14 22:48:37 2 2 2019-07-14 23:03:37 2 3 2019-07-14 23:33:37 2 4 2019-07-14 23:38:37 2 3 2019-07-14 23:43:37 2 3 2019-07-14 23:48:37 2 4 2019-07-14 23:53:37 1 1 2019-07-14 23:53:37 2 4 2019-07-15 00:03:37 1 1 2019-07-15 00:03:37 2 5 2019-07-15 00:28:37 2 4 2019-07-15 00:43:37 2 2 2019-07-15 01:08:37 2 3 2019-07-15 01:13:37 2 3 2019-07-15 01:23:37 2 3 2019-07-15 01:28:37 2 3 2019-07-15 01:38:37 1 1 2019-07-15 01:38:37 2 1 2019-07-15 01:48:37 2 1 2019-07-15 02:13:37 1 1 2019-07-15 02:13:37 2 1 2019-07-15 03:33:37 1 1 2019-07-15 05:48:37 2 1 2019-07-15 07:33:37 2 1 2019-07-15 09:08:37 2 3 2019-07-15 09:33:37 2 4 2019-07-15 09:38:37 2 1 2019-07-15 09:43:37 2 1 2019-07-15 09:48:37 2 1 2019-07-15 09:53:37 2 1 2019-07-15 09:58:37 2 1 2019-07-15 10:03:37 2 1 2019-07-15 10:08:37 2 2 2019-07-15 10:13:37 2 2 2019-07-15 10:28:37 2 1 2019-07-15 11:43:37 2 3 2019-07-15 11:53:37 2 5 2019-07-15 12:08:37 2 5 2019-07-15 12:13:37 2 5 2019-07-15 12:33:37 2 5 2019-07-15 12:58:37 2 5 2019-07-15 13:08:37 2 5 2019-07-15 13:53:37 2 7 2019-07-15 14:03:37 2 6 2019-07-15 14:08:37 2 5 2019-07-15 14:13:37 2 4 2019-07-15 14:18:37 2 5 2019-07-15 15:03:37 2 3 2019-07-15 15:08:37 2 3 2019-07-15 15:28:37 2 2 2019-07-15 15:38:37 2 2 2019-07-15 16:13:37 2 4 2019-07-15 16:18:37 2 4 2019-07-15 16:53:37 2 5 2019-07-15 16:58:37 2 5 2019-07-15 17:13:37 2 5 2019-07-15 17:18:37 2 5 2019-07-15 17:38:37 2 4 2019-07-15 17:43:37 2 4 2019-07-15 17:48:37 2 4 2019-07-15 17:53:37 2 5 2019-07-15 17:58:37 2 5 2019-07-15 18:33:37 2 4 2019-07-15 18:38:37 2 4 2019-07-15 19:08:37 2 3 2019-07-15 19:13:37 2 3 2019-07-15 19:28:37 2 4 2019-07-15 19:43:37 2 1 2019-07-15 20:13:37 2 2 2019-07-15 20:18:37 2 2 2019-07-15 21:43:37 2 2 2019-07-15 21:48:37 2 2 2019-07-15 22:08:37 2 4 2019-07-15 22:13:37 2 4 2019-07-15 22:38:37 2 3 2019-07-15 23:03:37 2 2 2019-07-15 23:08:37 2 3 2019-07-15 23:28:37 2 1 2019-07-15 23:33:37 2 2 2019-07-15 23:38:37 2 2 2019-07-15 23:58:37 2 3 2019-07-16 00:03:37 2 3 2019-07-16 00:08:37 2 3 2019-07-16 00:23:37 2 6 2019-07-16 00:28:37 2 7 2019-07-16 00:33:37 2 6 2019-07-16 00:38:37 2 6 2019-07-16 00:48:37 2 5 2019-07-16 00:58:37 2 5 2019-07-16 01:08:37 2 2 2019-07-16 01:28:37 2 1 2019-07-16 01:33:37 2 1 2019-07-16 01:38:37 2 1 2019-07-16 01:43:37 2 1 2019-07-16 01:48:37 2 1 2019-07-16 01:53:37 2 1 2019-07-16 01:58:37 2 1 2019-07-16 02:48:37 2 2 2019-07-16 02:53:37 2 2 2019-07-16 02:58:37 2 2 2019-07-16 03:03:37 2 2 2019-07-16 03:48:37 2 1 2019-07-16 03:53:37 2 1 2019-07-16 03:58:37 2 1 2019-07-16 05:28:37 2 1 2019-07-16 05:33:37 2 1 2019-07-16 05:38:37 2 1 2019-07-16 07:43:37 2 1 2019-07-16 09:53:37 2 1 2019-07-16 09:58:37 2 1 2019-07-16 10:03:37 2 1 2019-07-16 10:08:37 2 1 2019-07-16 10:13:37 2 1 2019-07-16 11:03:37 2 3 2019-07-16 11:18:37 2 2 2019-07-16 11:33:37 2 3 2019-07-16 11:38:37 2 3 2019-07-16 11:43:37 2 3 2019-07-16 11:48:37 2 3 2019-07-16 11:53:37 2 3 2019-07-16 12:08:37 2 6 2019-07-16 12:13:37 1 1 2019-07-16 12:13:37 2 6 2019-07-16 12:18:37 1 1 2019-07-16 12:18:37 2 6 2019-07-16 12:43:37 2 7 2019-07-16 12:48:37 2 7 2019-07-16 12:53:37 2 7 2019-07-16 12:58:37 2 7 2019-07-16 13:03:37 2 7 2019-07-16 13:38:37 2 3 2019-07-16 13:43:37 2 3 2019-07-16 13:53:37 2 4 2019-07-16 15:13:37 2 2 2019-07-16 15:23:37 2 5 2019-07-16 15:38:37 2 5 2019-07-16 15:43:37 2 4 2019-07-16 15:48:37 2 4 2019-07-16 16:08:37 2 5 2019-07-16 16:38:37 1 1 2019-07-16 16:38:37 2 3 2019-07-16 16:43:37 1 1 2019-07-16 16:43:37 2 3 2019-07-16 16:48:37 1 1 2019-07-16 16:48:37 2 3 2019-07-16 17:03:37 2 2 2019-07-16 17:08:37 2 2 2019-07-16 17:33:37 2 3 2019-07-16 19:08:37 2 3 2019-07-16 19:13:37 2 3 2019-07-16 19:18:37 2 3 2019-07-16 19:23:37 2 3 2019-07-16 19:28:37 2 3 2019-07-16 19:33:37 2 3 2019-07-16 19:38:37 2 4 2019-07-16 19:43:37 2 4 2019-07-16 19:58:37 2 3 2019-07-14 18:08:37 2 1 2019-07-14 18:18:37 2 2 2019-07-14 18:23:37 2 1 2019-07-14 18:33:37 2 1 2019-07-14 18:48:37 1 1 2019-07-14 18:48:37 2 2 2019-07-14 18:58:37 2 3 2019-07-14 19:18:37 2 2 2019-07-14 19:23:37 1 1 2019-07-14 19:23:37 2 2 2019-07-14 19:28:37 1 1 2019-07-14 19:28:37 2 3 2019-07-14 19:38:37 1 1 2019-07-14 19:38:37 2 4 2019-07-14 19:53:37 1 3 2019-07-14 19:53:37 2 3 2019-07-14 20:13:37 1 1 2019-07-14 20:13:37 2 1 2019-07-14 20:18:37 1 1 2019-07-14 20:18:37 2 1 2019-07-14 20:48:37 2 1 2019-07-14 20:53:37 1 1 2019-07-14 20:53:37 2 1 2019-07-14 21:08:37 1 1 2019-07-14 21:08:37 2 1 2019-07-14 21:23:37 2 1 2019-07-14 21:28:37 2 1 2019-07-14 21:38:37 2 2 2019-07-14 21:43:37 2 2 2019-07-14 21:53:37 1 1 2019-07-14 21:53:37 2 4 2019-07-14 22:03:37 2 2 2019-07-14 22:23:37 2 2 2019-07-14 22:38:37 2 2 2019-07-14 22:53:37 2 5 2019-07-14 22:58:37 2 4 2019-07-14 23:08:37 2 3 2019-07-14 23:13:37 2 4 2019-07-14 23:18:37 2 3 2019-07-14 23:58:37 1 1 2019-07-14 23:58:37 2 5 2019-07-15 00:48:37 1 1 2019-07-15 00:48:37 2 1 2019-07-15 01:33:37 2 3 2019-07-15 01:43:37 1 1 2019-07-15 01:43:37 2 1 2019-07-15 02:03:37 2 1 2019-07-15 02:48:37 1 1 2019-07-15 03:28:37 1 1 2019-07-15 03:38:37 1 1 2019-07-15 07:28:37 2 2 2019-07-15 08:58:37 2 1 2019-07-15 09:03:37 2 4 2019-07-15 09:18:37 2 4 2019-07-15 09:23:37 2 4 2019-07-15 10:23:37 2 2 2019-07-15 10:33:37 2 1 2019-07-15 10:53:37 2 2 2019-07-15 11:28:37 2 2 2019-07-15 11:33:37 2 2 2019-07-15 11:38:37 2 2 2019-07-15 12:18:37 2 5 2019-07-15 12:43:37 2 5 2019-07-15 12:53:37 2 6 2019-07-15 13:03:37 1 1 2019-07-15 13:03:37 2 5 2019-07-15 13:23:37 2 5 2019-07-15 13:38:37 1 1 2019-07-15 13:38:37 2 7 2019-07-15 13:58:37 2 6 2019-07-15 14:28:37 2 2 2019-07-15 15:33:37 2 3 2019-07-15 15:48:37 2 4 2019-07-15 15:53:37 2 4 2019-07-15 15:58:37 2 5 2019-07-15 16:03:37 2 5 2019-07-15 16:08:37 2 5 2019-07-15 16:43:37 2 4 2019-07-15 16:48:37 2 4 2019-07-15 17:23:37 2 5 2019-07-15 17:28:37 2 5 2019-07-15 18:03:37 2 5 2019-07-15 18:08:37 2 3 2019-07-15 18:28:37 2 3 2019-07-15 18:48:37 2 4 2019-07-15 18:53:37 2 4 2019-07-15 18:58:37 2 4 2019-07-15 19:03:37 2 4 2019-07-15 19:23:37 2 5 2019-07-15 19:33:37 2 2 2019-07-15 19:38:37 2 2 2019-07-15 19:48:37 2 1 2019-07-15 19:53:37 2 1 2019-07-15 19:58:37 2 1 2019-07-15 20:08:37 2 1 2019-07-15 21:58:37 2 3 2019-07-15 22:03:37 2 3 2019-07-15 22:43:37 2 5 2019-07-15 23:13:37 2 1 2019-07-15 23:23:37 2 2 2019-07-15 23:48:37 2 4 2019-07-15 23:53:37 2 4 2019-07-16 00:53:37 2 5 2019-07-16 01:03:38 2 3 2019-07-16 01:18:37 2 2 2019-07-16 01:23:37 2 3 2019-07-16 02:03:37 2 1 2019-07-16 02:08:37 2 1 2019-07-16 02:13:37 2 1 2019-07-16 02:18:37 2 1 2019-07-16 02:23:37 2 1 2019-07-16 02:28:37 2 1 2019-07-16 02:33:37 2 1 2019-07-16 02:38:37 2 1 2019-07-16 02:43:37 2 1 2019-07-16 05:48:37 2 1 2019-07-16 05:53:37 2 1 2019-07-16 05:58:37 2 1 2019-07-16 06:03:37 2 1 2019-07-16 06:08:37 2 1 2019-07-16 06:13:37 2 1 2019-07-16 06:18:37 2 1 2019-07-16 06:23:37 2 1 2019-07-16 06:28:37 2 1 2019-07-16 07:48:37 2 1 2019-07-16 07:53:37 2 1 2019-07-16 07:58:37 2 1 2019-07-16 08:03:37 2 1 2019-07-16 08:08:37 2 1 2019-07-16 08:13:37 2 1 2019-07-16 08:18:37 2 1 2019-07-16 09:03:37 2 2 2019-07-16 09:13:37 2 1 2019-07-16 09:23:37 2 2 2019-07-16 09:28:37 2 2 2019-07-16 09:33:37 2 2 2019-07-16 09:38:37 2 2 2019-07-16 09:43:37 2 2 2019-07-16 09:48:37 2 2 2019-07-16 10:38:37 2 3 2019-07-16 11:08:37 2 3 2019-07-16 11:13:37 2 3 2019-07-16 11:23:37 2 4 2019-07-16 11:28:37 2 3 2019-07-16 12:38:37 2 8 2019-07-16 13:08:37 2 4 2019-07-16 13:13:37 2 4 2019-07-16 13:18:37 2 4 2019-07-16 13:23:37 2 4 2019-07-16 13:28:37 2 4 2019-07-16 13:33:37 2 4 2019-07-16 13:48:37 2 3 2019-07-16 14:03:37 2 6 2019-07-16 14:43:37 2 3 2019-07-16 14:58:37 2 4 2019-07-16 15:28:37 2 5 2019-07-16 15:33:37 2 6 2019-07-16 15:58:37 2 4 2019-07-16 16:03:37 2 4 2019-07-16 16:23:37 1 1 2019-07-16 16:23:37 2 4 2019-07-16 16:53:37 1 1 2019-07-16 16:53:37 2 1 2019-07-16 17:23:37 2 2 2019-07-16 17:28:37 2 2 2019-07-16 17:43:37 2 3 2019-07-16 17:58:37 2 3 2019-07-16 18:08:37 2 3 2019-07-16 18:13:37 2 3 2019-07-16 18:18:37 2 3 2019-07-16 18:23:37 2 3 2019-07-16 18:28:37 2 3 2019-07-16 18:33:37 2 3 2019-07-16 18:38:37 2 3 2019-07-16 18:43:37 2 3 2019-07-16 18:53:37 2 4 2019-07-16 18:58:37 2 4 2019-07-16 19:03:37 2 4 2019-07-16 19:48:37 2 4 2019-07-16 19:53:37 2 4 2019-07-16 20:33:37 2 3 2019-07-16 20:48:37 2 2 2019-07-16 20:53:37 2 1 2019-07-16 20:58:37 2 1 2019-07-16 21:03:37 2 2 2019-07-16 21:08:37 2 2 2019-07-16 21:23:37 2 3 2019-07-16 21:28:37 2 3 2019-07-16 22:03:37 2 3 2019-07-16 22:53:37 2 5 2019-07-16 22:58:37 2 6 2019-07-16 23:38:37 2 5 2019-07-17 00:03:37 2 4 2019-07-17 00:48:37 2 3 2019-07-17 01:13:37 2 2 2019-07-17 01:23:37 2 3 2019-07-17 01:28:37 2 3 2019-07-17 01:53:37 2 2 2019-07-17 01:58:37 2 2 2019-07-17 02:28:37 2 1 2019-07-17 02:33:37 2 1 2019-07-17 02:38:37 2 1 2019-07-17 02:43:37 2 1 2019-07-17 02:48:37 2 1 2019-07-17 02:53:37 2 1 2019-07-17 02:58:37 2 1 2019-07-17 03:03:37 2 1 2019-07-17 05:38:37 2 1 2019-07-17 07:53:37 2 2 2019-07-17 07:58:37 2 2 2019-07-17 08:08:37 2 3 2019-07-17 08:13:37 2 3 2019-07-17 08:18:37 2 3 2019-07-17 09:03:37 2 4 2019-07-17 09:08:37 2 4 2019-07-17 09:28:37 2 3 2019-07-17 09:33:37 2 3 2019-07-17 09:58:37 2 4 2019-07-17 10:13:37 2 3 2019-07-17 10:18:37 2 3 2019-07-17 10:33:37 2 2 2019-07-17 11:03:37 2 5 2019-07-17 11:08:37 2 5 2019-07-17 11:13:37 2 5 2019-07-17 11:18:37 2 5 2019-07-17 11:23:37 2 5 2019-07-17 11:28:37 2 5 2019-07-17 11:33:37 2 4 2019-07-17 12:13:37 2 5 2019-07-17 12:23:37 2 2 2019-07-17 13:23:37 2 3 2019-07-17 13:28:37 2 6 2019-07-17 14:23:37 2 6 2019-07-17 14:28:37 2 6 2019-07-17 14:33:37 2 6 2019-07-17 14:43:37 2 5 2019-07-17 15:08:37 2 5 2019-07-17 15:33:37 2 6 2019-07-17 15:38:37 2 6 2019-07-17 15:43:37 2 6 2019-07-17 15:48:37 2 6 2019-07-17 15:53:37 2 6 2019-07-17 15:58:37 2 6 2019-07-17 16:58:37 2 4 2019-07-17 17:28:37 2 5 2019-07-17 17:38:37 2 4 2019-07-17 17:43:37 2 4 2019-07-17 17:48:37 2 4 2019-07-17 17:53:37 2 4 2019-07-17 17:58:37 2 4 2019-07-17 18:03:37 2 4 2019-07-17 18:23:37 2 4 2019-07-17 18:33:37 2 5 2019-07-17 18:38:37 2 5 2019-07-17 18:43:37 2 5 2019-07-17 19:08:37 2 3 2019-07-17 19:13:37 2 3 2019-07-17 19:18:37 2 3 2019-07-17 19:23:37 2 3 2019-07-17 19:38:37 2 4 2019-07-17 19:48:37 2 3 2019-07-17 20:03:37 2 4 2019-07-17 20:08:37 2 4 2019-07-17 20:18:37 2 5 2019-07-17 20:23:37 2 5 2019-07-17 20:58:37 2 5 2019-07-17 21:13:37 2 3 2019-07-17 21:28:37 2 4 2019-07-17 21:33:37 2 4 2019-07-17 21:38:37 2 4 2019-07-17 22:03:37 2 4 2019-07-17 22:13:37 2 5 2019-07-17 22:43:37 2 4 2019-07-17 22:53:37 2 3 2019-07-17 22:58:37 2 3 2019-07-17 23:08:37 2 6 2019-07-17 23:18:37 2 5 2019-07-17 23:23:37 2 5 2019-07-18 00:03:37 2 4 2019-07-18 00:08:37 2 4 2019-07-18 00:13:37 2 4 2019-07-18 00:23:37 2 4 2019-07-18 00:28:37 2 4 2019-07-18 00:33:37 2 4 2019-07-18 01:28:37 2 4 2019-07-18 01:33:37 2 4 2019-07-18 01:38:37 2 4 2019-07-18 01:43:37 2 4 2019-07-18 01:58:37 2 3 2019-07-18 02:03:37 2 3 2019-07-18 02:08:37 2 3 2019-07-18 04:03:37 2 1 2019-07-18 04:08:37 2 1 2019-07-18 04:13:37 2 1 2019-07-18 04:18:37 2 1 2019-07-18 04:23:37 2 1 2019-07-18 04:28:37 2 1 2019-07-18 04:33:37 2 1 2019-07-18 04:38:37 2 1 2019-07-18 04:43:37 2 1 2019-07-18 04:48:37 2 1 2019-07-18 04:53:37 2 1 2019-07-18 04:58:37 2 1 2019-07-18 05:03:37 2 1 2019-07-18 05:08:37 2 1 2019-07-18 05:13:37 2 1 2019-07-18 05:18:37 2 1 2019-07-18 05:23:37 2 1 2019-07-18 05:28:37 2 1 2019-07-18 06:08:37 2 2 2019-07-18 06:13:37 2 2 2019-07-18 06:18:37 2 2 2019-07-18 08:18:37 2 1 2019-07-18 08:23:37 2 1 2019-07-18 09:13:37 2 1 2019-07-18 09:18:37 2 1 2019-07-18 09:23:37 2 1 2019-07-18 09:28:37 2 1 2019-07-18 09:33:37 2 1 2019-07-18 09:43:37 2 2 2019-07-18 10:13:37 1 1 2019-07-18 10:13:37 2 2 2019-07-18 10:38:37 2 3 2019-07-18 10:48:37 1 1 2019-07-18 10:48:37 2 4 2019-07-18 11:03:37 1 1 2019-07-18 11:03:37 2 2 2019-07-18 11:23:37 2 4 2019-07-18 11:53:37 2 2 2019-07-18 12:03:37 2 3 2019-07-18 12:08:37 2 3 2019-07-18 12:28:37 1 1 2019-07-18 12:28:37 2 3 2019-07-18 14:33:37 2 6 2019-07-18 14:58:37 2 5 2019-07-18 15:13:37 2 4 2019-07-18 15:23:37 2 5 2019-07-18 15:28:37 2 6 2019-07-18 15:58:37 2 4 2019-07-18 16:38:37 2 3 2019-07-18 16:43:37 2 3 2019-07-18 16:53:37 2 3 2019-07-18 16:58:37 2 4 2019-07-18 17:23:37 2 3 2019-07-18 17:58:37 2 3 2019-07-18 18:08:37 2 2 2019-07-18 18:13:37 2 2 2019-07-18 18:23:37 2 4 2019-07-18 18:33:37 2 4 2019-07-18 18:38:37 2 4 2019-07-18 19:03:37 2 2 2019-07-18 19:13:37 2 3 2019-07-18 19:38:37 2 3 2019-07-18 20:33:37 2 2 2019-07-18 20:38:37 2 2 2019-07-18 21:38:37 2 2 2019-07-18 21:43:37 2 2 2019-07-18 21:58:37 2 4 2019-07-18 22:03:37 2 4 2019-07-18 22:08:37 2 3 2019-07-18 22:13:37 2 1 2019-07-18 22:18:37 2 1 2019-07-18 22:23:37 2 2 2019-07-18 22:28:37 2 4 2019-07-18 22:33:37 2 3 2019-07-18 22:43:37 2 2 2019-07-18 22:48:37 2 2 2019-07-18 22:53:37 2 2 2019-07-18 22:58:37 2 2 2019-07-18 23:03:37 2 2 2019-07-16 21:13:37 2 3 2019-07-16 21:33:37 2 4 2019-07-16 21:38:37 2 3 2019-07-16 22:08:37 2 2 2019-07-16 22:18:37 2 4 2019-07-16 22:38:37 2 3 2019-07-16 23:03:37 2 5 2019-07-16 23:08:37 2 5 2019-07-16 23:13:37 2 6 2019-07-16 23:23:37 2 5 2019-07-16 23:28:37 2 5 2019-07-16 23:43:37 2 6 2019-07-16 23:48:37 2 5 2019-07-16 23:58:37 2 4 2019-07-17 00:53:37 2 2 2019-07-17 00:58:37 2 2 2019-07-17 01:18:37 2 3 2019-07-17 01:33:37 2 2 2019-07-17 01:38:37 2 2 2019-07-17 01:43:37 2 2 2019-07-17 01:48:37 2 2 2019-07-17 02:03:37 2 3 2019-07-17 02:08:37 2 3 2019-07-17 07:38:37 2 1 2019-07-17 07:43:37 2 1 2019-07-17 07:48:37 2 1 2019-07-17 08:03:37 2 4 2019-07-17 08:48:37 2 4 2019-07-17 09:23:37 2 4 2019-07-17 09:38:37 2 3 2019-07-17 09:43:37 2 3 2019-07-17 09:48:37 2 3 2019-07-17 09:53:37 2 3 2019-07-17 10:08:37 2 4 2019-07-17 10:28:37 2 3 2019-07-17 10:58:37 2 4 2019-07-17 11:38:37 2 4 2019-07-17 11:43:37 2 5 2019-07-17 11:48:37 2 5 2019-07-17 11:53:37 2 5 2019-07-17 12:03:37 2 4 2019-07-17 12:08:37 2 4 2019-07-17 12:18:37 2 3 2019-07-17 12:33:37 2 3 2019-07-17 12:48:37 2 5 2019-07-17 12:53:37 2 5 2019-07-17 12:58:37 2 5 2019-07-17 13:18:37 2 2 2019-07-17 13:33:37 2 6 2019-07-17 13:38:37 2 5 2019-07-17 13:43:37 2 5 2019-07-17 14:48:37 2 5 2019-07-17 14:53:37 2 5 2019-07-17 15:03:37 2 5 2019-07-17 15:13:37 2 5 2019-07-17 15:18:37 2 7 2019-07-17 16:03:37 2 6 2019-07-17 16:13:37 2 7 2019-07-17 16:23:37 2 3 2019-07-17 16:33:37 2 4 2019-07-17 16:48:37 2 3 2019-07-17 16:53:37 2 3 2019-07-17 17:23:37 2 5 2019-07-17 17:33:37 2 5 2019-07-17 18:08:37 2 4 2019-07-17 18:18:37 2 5 2019-07-17 18:53:37 2 5 2019-07-17 18:58:37 2 4 2019-07-17 19:03:37 2 4 2019-07-17 19:33:37 2 3 2019-07-17 19:53:37 2 5 2019-07-17 19:58:37 2 5 2019-07-17 20:13:37 2 6 2019-07-17 20:28:37 2 4 2019-07-17 20:33:37 2 4 2019-07-17 20:53:37 2 3 2019-07-17 21:03:37 2 5 2019-07-17 21:23:37 2 5 2019-07-17 21:48:37 2 4 2019-07-17 21:53:37 2 3 2019-07-17 21:58:37 2 3 2019-07-17 22:08:37 2 4 2019-07-17 22:33:37 2 4 2019-07-17 23:33:37 2 5 2019-07-17 23:38:37 2 5 2019-07-17 23:43:37 2 5 2019-07-17 23:48:37 2 5 2019-07-18 00:18:37 2 4 2019-07-18 00:53:37 2 4 2019-07-18 01:08:37 2 5 2019-07-18 01:13:37 2 5 2019-07-18 01:18:37 2 5 2019-07-18 01:23:37 2 5 2019-07-18 02:18:37 2 1 2019-07-18 02:23:37 2 1 2019-07-18 02:28:37 2 1 2019-07-18 02:33:37 2 1 2019-07-18 02:38:37 2 1 2019-07-18 02:43:37 2 1 2019-07-18 02:48:37 2 1 2019-07-18 02:53:37 2 1 2019-07-18 02:58:37 2 1 2019-07-18 03:03:37 2 1 2019-07-18 03:08:37 2 1 2019-07-18 03:13:37 2 1 2019-07-18 03:18:37 2 1 2019-07-18 03:23:37 2 1 2019-07-18 03:28:37 2 1 2019-07-18 03:33:37 2 1 2019-07-18 03:38:37 2 1 2019-07-18 03:43:37 2 1 2019-07-18 03:48:37 2 1 2019-07-18 03:53:37 2 1 2019-07-18 03:58:37 2 1 2019-07-18 05:33:37 2 2 2019-07-18 05:38:37 2 2 2019-07-18 05:43:37 2 2 2019-07-18 06:23:37 2 1 2019-07-18 06:28:37 2 1 2019-07-18 06:33:37 2 1 2019-07-18 06:38:37 2 1 2019-07-18 06:43:37 2 1 2019-07-18 06:48:37 2 1 2019-07-18 06:53:37 2 1 2019-07-18 06:58:37 2 1 2019-07-18 07:03:37 2 1 2019-07-18 07:08:37 2 1 2019-07-18 09:48:37 2 3 2019-07-18 10:18:37 1 1 2019-07-18 10:18:37 2 2 2019-07-18 10:23:37 1 1 2019-07-18 10:23:37 2 2 2019-07-18 10:28:37 2 2 2019-07-18 10:33:37 2 3 2019-07-18 10:43:37 2 3 2019-07-18 10:58:37 2 3 2019-07-18 11:18:37 2 4 2019-07-18 11:43:37 2 3 2019-07-18 11:58:37 2 2 2019-07-18 12:13:37 2 2 2019-07-18 12:33:37 1 1 2019-07-18 12:33:37 2 3 2019-07-18 12:58:37 2 3 2019-07-18 13:03:37 2 2 2019-07-18 13:08:37 2 2 2019-07-18 13:13:37 2 2 2019-07-18 13:33:37 2 3 2019-07-18 13:43:37 2 6 2019-07-18 13:48:37 2 7 2019-07-18 13:53:37 2 8 2019-07-18 13:58:37 2 7 2019-07-18 14:08:37 2 8 2019-07-18 14:18:37 2 8 2019-07-18 14:23:37 2 7 2019-07-18 14:28:37 2 7 2019-07-18 14:38:37 2 7 2019-07-18 14:43:37 2 7 2019-07-18 15:18:37 2 5 2019-07-18 15:33:37 2 5 2019-07-18 15:48:37 2 5 2019-07-18 16:08:37 2 3 2019-07-18 16:18:37 2 3 2019-07-18 16:48:37 2 3 2019-07-18 17:03:37 2 3 2019-07-18 17:08:37 2 3 2019-07-18 17:43:37 2 3 2019-07-18 17:48:37 2 4 2019-07-18 17:53:37 2 3 2019-07-18 18:18:37 2 4 2019-07-18 18:43:37 2 3 2019-07-18 19:08:37 2 2 2019-07-18 19:28:37 2 4 2019-07-18 19:33:37 2 3 2019-07-18 19:43:37 2 4 2019-07-18 19:48:37 2 4 2019-07-18 19:58:37 2 3 2019-07-18 20:03:37 2 3 2019-07-18 20:08:37 2 3 2019-07-18 20:13:37 2 2 2019-07-18 20:18:37 2 1 2019-07-18 20:53:37 2 2 2019-07-18 20:58:37 2 2 2019-07-18 21:03:37 2 2 2019-07-18 21:08:37 2 2 2019-07-18 21:48:37 2 3 2019-07-16 21:18:37 2 4 2019-07-16 21:43:37 2 2 2019-07-16 21:48:37 2 2 2019-07-16 21:53:37 2 2 2019-07-16 21:58:37 2 2 2019-07-16 22:13:37 2 3 2019-07-16 22:23:37 2 5 2019-07-16 22:28:37 2 2 2019-07-16 22:33:37 2 3 2019-07-16 22:43:37 2 4 2019-07-16 22:48:37 2 5 2019-07-16 23:18:37 2 5 2019-07-16 23:33:37 2 6 2019-07-16 23:53:37 2 4 2019-07-17 00:08:37 2 2 2019-07-17 00:13:37 2 2 2019-07-17 00:18:37 2 3 2019-07-17 00:23:37 2 3 2019-07-17 00:28:37 2 3 2019-07-17 00:33:37 2 3 2019-07-17 00:38:37 2 4 2019-07-17 00:43:37 2 4 2019-07-17 01:03:37 2 3 2019-07-17 01:08:37 2 3 2019-07-17 02:13:37 2 2 2019-07-17 02:18:37 2 2 2019-07-17 02:23:37 2 2 2019-07-17 08:23:37 2 4 2019-07-17 08:28:37 2 3 2019-07-17 08:33:37 2 3 2019-07-17 08:38:37 2 3 2019-07-17 08:43:37 2 3 2019-07-17 08:53:37 2 4 2019-07-17 08:58:37 2 4 2019-07-17 09:13:37 2 3 2019-07-17 09:18:37 2 3 2019-07-17 10:03:37 2 5 2019-07-17 10:23:37 2 4 2019-07-17 10:38:37 2 3 2019-07-17 10:43:37 2 3 2019-07-17 10:48:37 2 3 2019-07-17 10:53:37 2 3 2019-07-17 11:58:37 2 5 2019-07-17 12:28:37 2 3 2019-07-17 12:38:37 2 5 2019-07-17 12:43:37 2 4 2019-07-17 13:03:37 2 3 2019-07-17 13:08:37 2 3 2019-07-17 13:13:37 2 3 2019-07-17 13:48:37 2 5 2019-07-17 13:53:37 2 5 2019-07-17 13:58:37 2 5 2019-07-17 14:03:37 2 5 2019-07-17 14:08:37 2 5 2019-07-17 14:13:37 2 6 2019-07-17 14:18:37 2 6 2019-07-17 14:38:37 2 6 2019-07-17 14:58:37 2 5 2019-07-17 15:23:37 2 7 2019-07-17 15:28:37 2 4 2019-07-17 16:08:37 2 6 2019-07-17 16:18:37 2 4 2019-07-17 16:28:37 2 5 2019-07-17 16:38:37 2 4 2019-07-17 16:43:37 2 4 2019-07-17 17:03:37 2 3 2019-07-17 17:08:37 2 3 2019-07-17 17:13:37 2 3 2019-07-17 17:18:37 2 4 2019-07-17 18:13:37 2 4 2019-07-17 18:28:37 2 5 2019-07-17 18:48:37 2 6 2019-07-17 19:28:37 2 4 2019-07-17 19:43:37 2 4 2019-07-17 20:38:37 2 4 2019-07-17 20:43:37 2 4 2019-07-17 20:48:37 2 4 2019-07-17 21:08:37 2 4 2019-07-17 21:18:37 2 4 2019-07-17 21:43:37 2 3 2019-07-17 22:18:37 2 4 2019-07-17 22:23:37 2 4 2019-07-17 22:28:37 2 5 2019-07-17 22:38:37 2 4 2019-07-17 22:48:37 2 3 2019-07-17 23:03:37 2 4 2019-07-17 23:13:37 2 6 2019-07-17 23:28:37 2 4 2019-07-17 23:53:37 2 5 2019-07-17 23:58:37 2 4 2019-07-18 00:38:37 2 5 2019-07-18 00:43:37 2 5 2019-07-18 00:48:37 2 5 2019-07-18 00:58:37 2 4 2019-07-18 01:03:37 2 4 2019-07-18 01:48:37 2 3 2019-07-18 01:53:37 2 3 2019-07-18 02:13:37 2 2 2019-07-18 05:48:37 2 1 2019-07-18 05:53:37 2 1 2019-07-18 05:58:37 2 1 2019-07-18 06:03:37 2 1 2019-07-18 07:13:37 2 2 2019-07-18 07:18:37 2 2 2019-07-18 07:23:37 2 2 2019-07-18 07:28:37 2 2 2019-07-18 07:33:37 2 2 2019-07-18 08:03:37 2 2 2019-07-18 08:08:37 2 2 2019-07-18 08:13:38 2 2 2019-07-18 08:28:37 2 1 2019-07-18 08:58:37 2 1 2019-07-18 09:03:37 2 1 2019-07-18 09:38:37 2 1 2019-07-18 09:53:37 2 2 2019-07-18 09:58:37 2 2 2019-07-18 10:03:37 2 2 2019-07-18 10:08:37 2 2 2019-07-18 10:53:37 2 4 2019-07-18 11:08:37 1 1 2019-07-18 11:08:37 2 2 2019-07-18 11:13:37 1 1 2019-07-18 11:13:37 2 3 2019-07-18 11:28:37 2 4 2019-07-18 11:33:37 2 4 2019-07-18 11:38:37 2 4 2019-07-18 11:48:37 2 3 2019-07-18 12:18:37 2 3 2019-07-18 12:23:37 2 3 2019-07-18 12:38:37 1 1 2019-07-18 12:38:37 2 4 2019-07-18 12:43:37 2 3 2019-07-18 12:48:37 2 4 2019-07-18 12:53:37 2 3 2019-07-18 13:18:37 2 3 2019-07-18 13:23:37 2 3 2019-07-18 13:28:37 2 3 2019-07-18 13:38:37 2 4 2019-07-18 14:03:37 2 7 2019-07-18 14:13:37 2 6 2019-07-18 14:48:37 2 6 2019-07-18 14:53:37 2 6 2019-07-18 15:03:37 2 5 2019-07-18 15:08:37 2 5 2019-07-18 15:38:37 2 5 2019-07-18 15:43:37 2 5 2019-07-18 15:53:37 2 4 2019-07-18 16:03:37 1 1 2019-07-18 16:03:37 2 4 2019-07-18 16:13:37 1 1 2019-07-18 16:13:37 2 3 2019-07-18 16:23:37 2 2 2019-07-18 16:28:37 2 2 2019-07-18 16:33:37 2 2 2019-07-18 17:13:37 2 2 2019-07-18 17:18:37 2 2 2019-07-18 17:28:37 2 3 2019-07-18 17:33:37 2 3 2019-07-18 17:38:37 2 3 2019-07-18 18:03:37 2 3 2019-07-18 18:28:37 2 3 2019-07-18 18:48:37 2 1 2019-07-18 18:53:37 2 1 2019-07-18 18:58:37 2 2 2019-07-18 19:18:37 2 4 2019-07-18 19:23:37 2 2 2019-07-18 19:53:37 2 3 2019-07-18 20:23:37 2 1 2019-07-18 20:28:37 2 1 2019-07-18 20:43:37 2 2 2019-07-18 20:48:37 2 2 2019-07-18 21:13:37 2 1 2019-07-18 21:18:37 2 1 2019-07-18 21:23:37 2 1 2019-07-18 21:28:37 2 1 2019-07-18 21:33:37 2 1 2019-07-18 21:53:37 2 4 2019-07-18 22:38:37 2 2 2019-07-18 23:08:37 2 2 2019-07-18 23:13:37 2 2 2019-07-18 23:18:37 2 3 2019-07-18 23:23:37 2 3 2019-07-18 23:28:37 2 3 2019-07-18 23:33:37 2 3 2019-07-18 23:38:37 2 3 2019-07-18 23:43:37 2 2 2019-07-19 00:13:37 2 1 2019-07-19 00:28:37 2 1 2019-07-19 00:43:37 2 2 2019-07-19 00:48:37 2 1 2019-07-19 00:53:37 2 1 2019-07-19 00:58:37 2 1 2019-07-19 01:03:37 2 1 2019-07-19 01:08:37 2 1 2019-07-19 01:38:37 2 2 2019-07-19 01:43:37 2 2 2019-07-19 03:08:37 2 2 2019-07-19 03:13:37 2 3 2019-07-19 06:18:37 2 2 2019-07-19 06:23:37 2 2 2019-07-19 06:28:37 2 2 2019-07-19 06:33:37 2 2 2019-07-19 06:38:37 2 2 2019-07-19 06:43:37 2 2 2019-07-19 08:53:37 2 1 2019-07-19 09:18:37 2 2 2019-07-19 09:23:37 2 1 2019-07-19 09:43:37 2 3 2019-07-19 10:18:37 2 5 2019-07-19 10:23:37 2 4 2019-07-19 10:48:37 1 1 2019-07-19 10:48:37 2 6 2019-07-19 11:18:37 1 1 2019-07-19 11:18:37 2 3 2019-07-19 11:38:37 1 1 2019-07-19 11:38:37 2 5 2019-07-19 11:43:37 1 1 2019-07-19 11:43:37 2 4 2019-07-19 12:03:37 1 1 2019-07-19 12:03:37 2 2 2019-07-19 12:13:37 1 1 2019-07-19 12:13:37 2 2 2019-07-19 12:23:37 2 2 2019-07-19 13:03:37 2 4 2019-07-19 13:33:37 2 2 2019-07-19 13:48:37 2 2 2019-07-19 13:53:37 2 2 2019-07-19 13:58:37 2 2 2019-07-19 14:03:37 2 2 2019-07-19 14:13:37 2 2 2019-07-19 14:43:37 2 2 2019-07-19 14:53:37 2 3 2019-07-19 14:58:37 2 3 2019-07-19 15:03:37 2 3 2019-07-19 15:08:37 2 3 2019-07-19 15:23:37 2 3 2019-07-19 15:28:37 2 2 2019-07-19 15:38:37 2 2 2019-07-19 15:53:37 2 3 2019-07-19 15:58:37 2 3 2019-07-19 16:38:37 2 6 2019-07-19 16:43:37 2 5 2019-07-19 17:03:37 2 5 2019-07-19 17:08:37 2 4 2019-07-19 17:13:37 2 4 2019-07-19 17:38:37 2 2 2019-07-19 17:48:37 2 3 2019-07-19 17:53:37 2 3 2019-07-19 17:58:37 2 2 2019-07-19 18:23:37 2 3 2019-07-19 18:38:37 2 3 2019-07-19 18:48:37 2 2 2019-07-19 18:53:37 2 1 2019-07-19 18:58:37 2 1 2019-07-19 19:03:37 2 1 2019-07-19 19:23:37 2 2 2019-07-19 19:33:37 2 4 2019-07-19 19:38:37 2 3 2019-07-19 19:48:37 2 3 2019-07-19 19:53:37 2 2 2019-07-19 20:03:37 2 1 2019-07-19 20:08:37 2 2 2019-07-19 20:38:37 2 2 2019-07-19 20:48:37 2 3 2019-07-19 22:13:37 2 4 2019-07-19 22:23:37 2 3 2019-07-19 22:38:37 2 4 2019-07-19 23:03:37 2 3 2019-07-19 23:08:37 2 4 2019-07-19 23:13:37 2 4 2019-07-19 23:18:37 2 5 2019-07-19 23:23:37 2 5 2019-07-19 23:28:37 2 6 2019-07-20 00:03:37 2 5 2019-07-20 00:08:37 2 4 2019-07-20 00:13:37 2 3 2019-07-20 00:18:37 2 3 2019-07-20 00:23:37 2 4 2019-07-20 00:28:37 2 4 2019-07-20 00:33:37 2 4 2019-07-20 01:03:37 2 5 2019-07-20 01:38:37 2 1 2019-07-20 01:43:37 2 1 2019-07-20 01:48:37 2 1 2019-07-20 01:53:37 2 1 2019-07-20 02:03:37 2 2 2019-07-20 02:08:37 2 1 2019-07-20 02:13:37 2 1 2019-07-20 02:18:37 2 1 2019-07-20 02:23:37 2 1 2019-07-20 02:28:37 2 1 2019-07-20 02:33:37 2 1 2019-07-20 02:38:37 2 1 2019-07-20 02:43:37 2 1 2019-07-20 02:48:37 2 1 2019-07-20 02:53:37 2 1 2019-07-20 02:58:37 2 1 2019-07-20 03:03:37 2 1 2019-07-20 03:08:37 2 1 2019-07-20 03:13:37 2 1 2019-07-20 03:18:37 2 1 2019-07-20 03:23:37 2 1 2019-07-20 03:28:37 2 1 2019-07-20 03:33:37 2 1 2019-07-20 03:38:37 2 1 2019-07-20 03:43:37 2 1 2019-07-20 03:48:37 2 1 2019-07-20 03:53:37 2 1 2019-07-20 07:23:37 2 1 2019-07-20 07:28:37 2 1 2019-07-20 08:13:37 2 1 2019-07-20 08:18:37 2 1 2019-07-20 09:03:37 2 2 2019-07-20 09:13:37 2 3 2019-07-20 09:18:37 2 3 2019-07-20 10:08:37 2 2 2019-07-20 10:13:37 2 2 2019-07-20 11:08:37 2 5 2019-07-20 11:13:37 2 5 2019-07-20 11:43:37 2 4 2019-07-20 11:53:37 2 5 2019-07-20 12:03:37 2 4 2019-07-20 12:13:37 2 3 2019-07-20 12:18:37 2 3 2019-07-20 12:23:37 2 6 2019-07-20 12:43:37 2 6 2019-07-20 12:48:37 2 7 2019-07-20 12:53:37 2 6 2019-07-20 13:08:37 2 6 2019-07-20 13:28:37 2 2 2019-07-20 13:43:37 2 3 2019-07-20 13:48:37 2 4 2019-07-20 13:58:37 2 5 2019-07-20 14:03:37 2 5 2019-07-20 14:13:37 2 4 2019-07-20 14:18:37 2 4 2019-07-20 14:23:37 2 4 2019-07-20 15:08:37 2 4 2019-07-20 15:13:37 2 4 2019-07-20 15:23:37 2 3 2019-07-20 15:38:37 2 4 2019-07-20 15:53:37 2 7 2019-07-20 16:08:37 2 4 2019-07-20 16:33:37 2 7 2019-07-20 17:03:37 2 6 2019-07-20 17:38:37 2 4 2019-07-20 18:13:37 2 3 2019-07-20 18:18:37 2 3 2019-07-20 18:23:37 2 3 2019-07-20 19:43:37 2 1 2019-07-20 20:53:37 2 1 2019-07-20 20:58:37 2 1 2019-07-20 21:18:37 2 1 2019-07-20 21:23:37 2 1 2019-07-20 21:28:37 2 2 2019-07-20 21:33:37 2 3 2019-07-20 21:48:37 2 2 2019-07-20 22:08:37 2 1 2019-07-20 22:18:37 2 2 2019-07-20 22:28:37 2 3 2019-07-20 22:43:37 2 1 2019-07-20 22:58:37 2 4 2019-07-20 23:08:37 2 6 2019-07-20 23:28:37 2 5 2019-07-20 23:43:37 2 5 2019-07-20 23:48:37 2 6 2019-07-21 00:18:37 2 3 2019-07-21 01:38:37 2 1 2019-07-21 01:43:37 2 1 2019-07-21 01:48:37 2 1 2019-07-18 23:48:37 2 1 2019-07-18 23:53:37 2 1 2019-07-19 00:33:37 2 2 2019-07-19 00:38:37 2 2 2019-07-19 02:23:37 2 1 2019-07-19 02:28:37 2 1 2019-07-19 02:33:37 2 1 2019-07-19 02:38:37 2 1 2019-07-19 02:43:37 2 2 2019-07-19 02:48:37 2 2 2019-07-19 02:53:37 2 2 2019-07-19 02:58:37 2 2 2019-07-19 03:03:37 2 2 2019-07-19 03:18:37 2 2 2019-07-19 03:23:37 2 2 2019-07-19 06:48:37 2 1 2019-07-19 08:58:37 2 2 2019-07-19 09:03:37 2 2 2019-07-19 09:08:37 2 2 2019-07-19 09:13:37 2 2 2019-07-19 09:48:37 2 2 2019-07-19 09:53:37 2 2 2019-07-19 09:58:37 2 5 2019-07-19 10:03:37 2 5 2019-07-19 10:08:37 2 5 2019-07-19 10:13:37 2 5 2019-07-19 10:53:37 1 1 2019-07-19 10:53:37 2 4 2019-07-19 11:08:37 1 1 2019-07-19 11:08:37 2 4 2019-07-19 11:28:37 1 1 2019-07-19 11:28:37 2 5 2019-07-19 11:33:37 1 1 2019-07-19 11:33:37 2 5 2019-07-19 11:48:37 1 1 2019-07-19 11:48:37 2 3 2019-07-19 11:58:37 1 1 2019-07-19 11:58:37 2 2 2019-07-19 12:18:37 2 3 2019-07-19 12:28:37 2 1 2019-07-19 12:33:37 2 1 2019-07-19 12:38:37 2 1 2019-07-19 12:43:37 2 1 2019-07-19 12:48:37 2 1 2019-07-19 12:53:37 2 2 2019-07-19 12:58:37 2 2 2019-07-19 13:18:37 2 2 2019-07-19 13:23:37 2 2 2019-07-19 13:28:37 2 2 2019-07-19 13:38:37 2 3 2019-07-19 13:43:37 2 3 2019-07-19 14:18:37 2 3 2019-07-19 14:28:37 2 2 2019-07-19 14:33:37 2 2 2019-07-19 14:48:37 2 3 2019-07-19 15:13:37 2 2 2019-07-19 16:23:37 2 3 2019-07-19 16:48:37 2 5 2019-07-19 16:53:37 2 4 2019-07-19 17:43:37 2 3 2019-07-19 18:08:37 2 2 2019-07-19 18:13:37 2 1 2019-07-19 18:33:37 2 2 2019-07-19 19:08:37 2 1 2019-07-19 19:13:37 2 2 2019-07-19 19:28:37 2 3 2019-07-19 19:43:37 2 3 2019-07-19 20:13:37 2 1 2019-07-19 20:18:37 2 2 2019-07-19 20:23:37 2 2 2019-07-19 20:28:37 2 2 2019-07-19 20:33:37 2 2 2019-07-19 20:53:37 2 2 2019-07-19 22:28:37 2 3 2019-07-19 22:43:37 2 3 2019-07-19 23:33:37 2 5 2019-07-19 23:38:37 2 4 2019-07-19 23:53:37 2 5 2019-07-19 23:58:37 2 5 2019-07-20 00:43:37 2 5 2019-07-20 00:48:37 2 5 2019-07-20 01:58:37 2 2 2019-07-20 07:33:37 2 1 2019-07-20 07:53:37 2 1 2019-07-20 08:48:37 2 1 2019-07-20 08:53:37 2 1 2019-07-20 08:58:37 2 1 2019-07-20 09:08:37 2 2 2019-07-20 09:43:37 2 3 2019-07-20 09:48:37 2 2 2019-07-20 09:53:37 2 2 2019-07-20 09:58:37 2 2 2019-07-20 10:18:37 2 2 2019-07-20 10:23:37 2 2 2019-07-20 10:28:37 2 3 2019-07-20 10:38:37 2 3 2019-07-20 10:58:37 2 3 2019-07-20 11:18:37 2 5 2019-07-20 11:23:37 2 5 2019-07-20 11:28:37 2 5 2019-07-20 11:33:37 2 5 2019-07-20 11:38:37 2 5 2019-07-20 11:58:37 2 4 2019-07-20 12:08:37 2 4 2019-07-20 12:58:37 2 4 2019-07-20 13:18:37 2 3 2019-07-20 13:23:37 2 3 2019-07-20 13:38:37 2 4 2019-07-20 14:48:37 2 4 2019-07-20 14:58:37 2 3 2019-07-20 15:03:37 2 3 2019-07-20 15:33:37 2 3 2019-07-20 15:43:37 2 4 2019-07-20 15:58:37 2 5 2019-07-20 16:03:37 2 5 2019-07-20 16:13:37 2 4 2019-07-20 16:53:37 2 4 2019-07-20 16:58:37 2 4 2019-07-20 17:08:37 2 4 2019-07-20 17:23:37 2 4 2019-07-20 17:28:37 2 4 2019-07-20 17:43:37 2 4 2019-07-20 17:48:37 2 4 2019-07-20 17:53:37 2 4 2019-07-20 17:58:37 2 4 2019-07-20 18:03:37 2 4 2019-07-20 18:08:37 2 4 2019-07-20 18:28:37 2 3 2019-07-20 18:33:37 2 3 2019-07-20 18:38:37 2 3 2019-07-20 18:43:37 2 4 2019-07-20 18:53:37 2 4 2019-07-20 19:03:37 2 2 2019-07-20 19:08:37 2 1 2019-07-20 19:13:37 2 1 2019-07-20 19:18:37 2 1 2019-07-20 19:48:37 2 1 2019-07-20 21:58:37 2 2 2019-07-20 22:03:37 2 2 2019-07-20 22:13:37 2 3 2019-07-20 22:23:37 2 2 2019-07-20 22:33:37 2 2 2019-07-20 22:38:37 2 2 2019-07-20 23:03:37 2 4 2019-07-20 23:13:37 2 5 2019-07-20 23:23:37 2 4 2019-07-20 23:38:37 2 4 2019-07-20 23:58:37 2 4 2019-07-21 00:13:37 2 3 2019-07-21 00:28:37 2 4 2019-07-21 00:33:37 2 4 2019-07-21 00:43:37 2 2 2019-07-21 00:48:37 2 2 2019-07-21 00:53:37 2 2 2019-07-21 01:18:37 2 2 2019-07-21 01:23:37 2 2 2019-07-21 01:28:37 2 2 2019-07-21 01:33:37 2 2 2019-07-21 04:13:37 2 1 2019-07-21 04:18:37 2 1 2019-07-21 04:23:37 2 1 2019-07-21 04:28:37 2 1 2019-07-21 04:33:37 2 1 2019-07-21 04:38:37 2 1 2019-07-21 07:08:37 2 1 2019-07-21 07:13:37 2 2 2019-07-21 07:38:37 2 1 2019-07-21 07:43:37 2 1 2019-07-21 07:53:37 2 1 2019-07-21 07:58:37 2 2 2019-07-21 08:03:37 2 3 2019-07-21 08:08:37 2 3 2019-07-21 08:13:37 2 3 2019-07-21 08:18:37 2 4 2019-07-21 08:23:37 2 4 2019-07-21 08:28:37 2 4 2019-07-21 08:33:37 2 4 2019-07-21 08:38:37 2 3 2019-07-21 08:48:37 2 3 2019-07-21 08:53:37 2 5 2019-07-21 08:58:37 2 2 2019-07-21 09:03:37 2 4 2019-07-21 09:08:37 2 4 2019-07-21 09:13:37 2 4 2019-07-21 09:18:37 2 2 2019-07-18 23:58:37 2 2 2019-07-19 00:03:37 2 1 2019-07-19 01:13:37 2 1 2019-07-19 01:18:37 2 1 2019-07-19 01:23:37 2 1 2019-07-19 01:28:37 2 1 2019-07-19 01:33:37 2 1 2019-07-19 03:28:37 2 1 2019-07-19 09:28:37 2 3 2019-07-19 09:33:37 2 4 2019-07-19 09:38:37 2 4 2019-07-19 10:28:37 2 4 2019-07-19 10:33:37 1 1 2019-07-19 10:33:37 2 3 2019-07-19 10:38:37 2 5 2019-07-19 10:43:37 2 5 2019-07-19 10:58:37 1 1 2019-07-19 10:58:37 2 2 2019-07-19 11:03:37 2 4 2019-07-19 11:13:37 1 1 2019-07-19 11:13:37 2 3 2019-07-19 11:23:37 2 4 2019-07-19 11:53:37 1 1 2019-07-19 11:53:37 2 3 2019-07-19 12:08:37 1 1 2019-07-19 12:08:37 2 2 2019-07-19 13:08:37 2 2 2019-07-19 13:13:37 2 2 2019-07-19 14:08:37 2 2 2019-07-19 14:23:37 2 2 2019-07-19 14:38:37 2 3 2019-07-19 15:18:37 2 3 2019-07-19 15:33:37 2 3 2019-07-19 15:43:37 2 2 2019-07-19 15:48:37 2 2 2019-07-19 16:03:37 2 3 2019-07-19 16:08:37 2 3 2019-07-19 16:13:37 2 3 2019-07-19 16:18:37 2 3 2019-07-19 16:28:37 2 2 2019-07-19 16:33:37 2 3 2019-07-19 16:58:37 2 4 2019-07-19 17:18:37 2 4 2019-07-19 17:23:37 2 4 2019-07-19 17:28:37 2 4 2019-07-19 17:33:37 2 3 2019-07-19 18:03:37 2 2 2019-07-19 18:18:37 2 2 2019-07-19 18:28:37 2 2 2019-07-19 18:43:37 2 2 2019-07-19 19:18:37 2 3 2019-07-19 20:43:37 2 4 2019-07-19 20:58:37 2 1 2019-07-19 21:03:37 2 1 2019-07-19 21:08:37 2 1 2019-07-19 21:13:37 2 1 2019-07-19 21:18:37 2 1 2019-07-19 21:23:37 2 1 2019-07-19 21:28:37 2 1 2019-07-19 21:33:37 2 1 2019-07-19 21:38:37 2 1 2019-07-19 21:43:37 2 1 2019-07-19 21:48:37 2 1 2019-07-19 21:53:37 2 1 2019-07-19 21:58:37 2 1 2019-07-19 22:03:37 2 2 2019-07-19 22:08:37 2 3 2019-07-19 22:18:37 2 2 2019-07-19 22:33:37 2 4 2019-07-19 22:48:37 2 4 2019-07-19 22:53:37 2 3 2019-07-19 22:58:37 2 4 2019-07-19 23:43:37 2 5 2019-07-19 23:48:37 2 5 2019-07-20 00:38:37 2 5 2019-07-20 00:53:37 2 4 2019-07-20 00:58:37 2 4 2019-07-20 01:08:37 2 5 2019-07-20 01:13:37 2 5 2019-07-20 01:18:37 2 5 2019-07-20 01:23:37 2 5 2019-07-20 01:28:37 2 2 2019-07-20 01:33:37 2 2 2019-07-20 07:38:37 2 1 2019-07-20 08:28:37 2 1 2019-07-20 08:33:37 2 1 2019-07-20 08:38:37 2 1 2019-07-20 09:23:37 2 3 2019-07-20 09:28:37 2 3 2019-07-20 09:33:37 2 3 2019-07-20 09:38:37 2 4 2019-07-20 10:03:37 2 2 2019-07-20 10:33:37 2 3 2019-07-20 10:43:37 2 3 2019-07-20 10:48:37 2 4 2019-07-20 10:53:37 2 2 2019-07-20 11:03:37 2 5 2019-07-20 11:48:37 2 5 2019-07-20 12:28:37 2 7 2019-07-20 12:33:37 2 7 2019-07-20 12:38:37 2 6 2019-07-20 13:03:37 2 4 2019-07-20 13:13:37 2 5 2019-07-20 13:33:37 2 3 2019-07-20 13:53:37 2 5 2019-07-20 14:08:37 2 4 2019-07-20 14:28:37 2 5 2019-07-20 14:33:37 2 4 2019-07-20 14:38:37 2 4 2019-07-20 14:43:37 2 4 2019-07-20 14:53:37 2 4 2019-07-20 15:18:37 2 3 2019-07-20 15:28:37 2 4 2019-07-20 15:48:37 2 4 2019-07-20 16:18:37 2 6 2019-07-20 16:23:37 2 6 2019-07-20 16:28:37 2 7 2019-07-20 16:38:37 2 5 2019-07-20 16:43:37 2 6 2019-07-20 16:48:37 2 5 2019-07-20 17:13:37 2 4 2019-07-20 17:18:37 2 4 2019-07-20 17:33:37 2 4 2019-07-20 18:48:37 2 5 2019-07-20 18:58:37 2 3 2019-07-20 20:03:37 2 1 2019-07-20 20:33:37 2 1 2019-07-20 20:38:37 2 1 2019-07-20 20:43:37 2 1 2019-07-20 20:48:37 2 1 2019-07-20 21:03:37 2 1 2019-07-20 21:08:37 2 2 2019-07-20 21:13:37 2 1 2019-07-20 21:38:37 2 1 2019-07-20 21:43:37 2 2 2019-07-20 21:53:37 2 1 2019-07-20 22:48:37 2 2 2019-07-20 22:53:37 2 2 2019-07-20 23:18:37 2 5 2019-07-20 23:33:37 2 4 2019-07-20 23:53:37 2 5 2019-07-21 00:03:37 2 4 2019-07-21 00:08:37 2 4 2019-07-21 00:23:37 2 5 2019-07-21 00:38:37 2 4 2019-07-21 00:58:37 2 1 2019-07-21 01:03:37 2 1 2019-07-21 01:08:37 2 1 2019-07-21 01:13:37 2 1 2019-07-21 01:53:37 2 2 2019-07-21 01:58:37 2 2 2019-07-21 06:43:37 2 1 2019-07-21 07:23:37 2 1 2019-07-21 07:33:37 2 1 2019-07-21 07:48:37 2 2 2019-07-21 08:43:37 2 4 2019-07-21 09:23:37 2 2 2019-07-21 09:28:37 2 2 2019-07-21 09:33:37 2 3 2019-07-21 09:38:37 2 2 2019-07-21 09:43:38 2 2 2019-07-21 09:48:37 2 2 2019-07-21 09:53:37 2 2 2019-07-21 09:58:37 2 3 2019-07-21 10:03:37 2 3 2019-07-21 10:08:37 2 2 2019-07-21 10:13:37 2 2 2019-07-21 10:18:37 2 4 2019-07-21 10:23:37 2 3 2019-07-21 10:28:37 2 3 2019-07-21 10:33:37 2 3 2019-07-21 10:38:37 2 3 2019-07-21 10:43:37 2 3 2019-07-21 10:48:37 2 3 2019-07-21 10:53:37 2 3 2019-07-21 10:58:37 2 3 2019-07-21 11:03:37 2 4 2019-07-21 11:08:37 2 4 2019-07-21 11:13:37 2 4 2019-07-21 11:18:37 2 4 2019-07-21 11:23:37 2 3 2019-07-21 11:28:37 2 3 2019-07-21 11:33:37 2 3 2019-07-21 11:38:37 2 2 2019-07-21 11:43:37 2 2 2019-07-21 11:48:37 2 3 2019-07-21 11:53:37 2 3 2019-07-21 12:28:37 2 3 2019-07-21 12:33:37 2 3 2019-07-21 12:38:37 2 4 2019-07-21 12:43:37 2 3 2019-07-21 12:48:37 2 3 2019-07-21 13:33:37 2 5 2019-07-21 14:08:37 2 1 2019-07-21 14:13:37 2 1 2019-07-21 14:18:37 2 2 2019-07-21 14:23:37 2 2 2019-07-21 15:03:37 2 5 2019-07-21 15:18:37 2 4 2019-07-21 15:28:37 2 3 2019-07-21 16:13:37 2 4 2019-07-21 16:38:37 2 3 2019-07-21 16:53:37 2 2 2019-07-21 17:03:37 2 4 2019-07-21 17:43:37 2 4 2019-07-21 17:48:38 2 7 2019-07-21 17:53:37 2 7 2019-07-21 17:58:37 2 7 2019-07-21 18:03:37 2 10 2019-07-21 18:08:37 2 9 2019-07-21 18:18:37 2 8 2019-07-21 18:43:37 2 7 2019-07-21 19:58:37 2 3 2019-07-21 20:08:37 2 4 2019-07-21 20:33:37 2 4 2019-07-21 20:38:37 2 5 2019-07-21 20:53:37 2 5 2019-07-21 21:38:37 2 4 2019-07-21 22:18:37 2 3 2019-07-21 22:23:37 2 3 2019-07-21 22:38:37 2 3 2019-07-21 23:23:37 2 4 2019-07-21 23:38:37 2 4 2019-07-21 23:43:37 2 3 2019-07-21 23:48:37 2 3 2019-07-22 00:23:37 2 4 2019-07-22 00:53:37 2 2 2019-07-22 00:58:37 2 2 2019-07-22 01:03:37 2 2 2019-07-22 01:08:37 2 2 2019-07-22 06:53:37 2 1 2019-07-22 06:58:37 2 1 2019-07-22 07:03:37 2 1 2019-07-22 07:08:37 2 1 2019-07-22 07:13:37 2 1 2019-07-22 07:18:37 2 1 2019-07-22 07:23:37 2 1 2019-07-22 07:28:37 2 1 2019-07-22 07:33:37 2 1 2019-07-22 07:58:37 2 1 2019-07-22 08:28:37 2 3 2019-07-22 08:43:37 2 1 2019-07-22 09:43:37 2 4 2019-07-22 10:43:37 2 2 2019-07-22 10:58:37 2 2 2019-07-22 11:03:37 2 1 2019-07-22 11:08:37 2 1 2019-07-22 12:08:37 2 1 2019-07-22 12:18:37 2 4 2019-07-22 12:53:37 2 3 2019-07-22 12:58:37 2 3 2019-07-22 13:38:37 2 2 2019-07-22 14:03:37 2 1 2019-07-22 14:08:37 2 1 2019-07-22 14:13:37 2 1 2019-07-22 14:38:37 2 2 2019-07-22 14:43:37 2 2 2019-07-22 14:48:37 2 2 2019-07-22 15:33:37 2 3 2019-07-22 15:58:37 2 5 2019-07-22 16:03:37 2 4 2019-07-22 16:38:37 2 5 2019-07-22 16:48:37 2 6 2019-07-22 16:58:37 2 6 2019-07-22 18:13:37 2 3 2019-07-22 18:18:37 2 2 2019-07-22 18:23:37 2 2 2019-07-22 18:38:37 2 2 2019-07-22 19:03:37 2 3 2019-07-22 19:33:37 2 3 2019-07-22 20:18:37 2 1 2019-07-22 20:23:37 2 1 2019-07-22 20:43:37 2 1 2019-07-22 21:18:37 2 1 2019-07-22 21:23:37 2 1 2019-07-22 21:28:37 2 1 2019-07-22 21:33:37 2 1 2019-07-22 21:38:37 2 1 2019-07-22 21:53:37 2 1 2019-07-22 22:08:37 2 1 2019-07-22 22:18:37 2 2 2019-07-22 22:28:37 2 1 2019-07-22 22:38:37 2 2 2019-07-22 22:53:37 2 1 2019-07-22 23:58:37 2 3 2019-07-23 00:08:37 2 4 2019-07-23 00:28:37 2 4 2019-07-23 01:03:37 2 3 2019-07-23 02:13:37 2 2 2019-07-23 02:18:37 2 2 2019-07-23 02:23:37 2 2 2019-07-23 02:28:37 2 2 2019-07-23 02:43:37 2 1 2019-07-23 02:48:37 2 1 2019-07-23 02:53:37 2 1 2019-07-23 02:58:37 2 1 2019-07-23 03:03:37 2 1 2019-07-23 03:08:37 2 1 2019-07-23 03:13:37 2 1 2019-07-23 03:53:37 2 1 2019-07-23 03:58:37 2 1 2019-07-23 04:03:37 2 1 2019-07-23 06:58:37 2 2 2019-07-23 07:23:37 2 2 2019-07-23 07:48:37 2 2 2019-07-23 07:58:37 2 1 2019-07-23 08:03:37 2 1 2019-07-23 08:08:37 2 1 2019-07-23 08:13:37 2 1 2019-07-23 08:18:37 2 1 2019-07-23 08:38:37 2 1 2019-07-23 09:18:37 2 2 2019-07-23 09:28:37 2 1 2019-07-23 10:23:37 2 3 2019-07-23 10:28:37 2 3 2019-07-23 11:08:37 2 5 2019-07-23 11:18:37 2 6 2019-07-23 11:23:37 2 4 2019-07-23 11:53:37 2 2 2019-07-23 11:58:37 2 3 2019-07-23 12:13:37 2 3 2019-07-23 12:28:37 2 4 2019-07-23 12:33:37 2 7 2019-07-23 12:53:37 2 6 2019-07-23 13:08:37 2 4 2019-07-23 13:13:37 2 4 2019-07-23 13:48:37 2 4 2019-07-23 13:58:37 2 2 2019-07-23 14:03:37 2 3 2019-07-23 14:08:37 2 4 2019-07-23 14:13:37 2 3 2019-07-23 14:28:37 2 3 2019-07-23 14:48:37 2 4 2019-07-23 15:03:37 2 4 2019-07-23 15:38:37 2 5 2019-07-23 15:48:37 2 4 2019-07-23 15:58:37 2 3 2019-07-23 16:03:37 2 3 2019-07-23 16:08:37 2 1 2019-07-23 16:13:37 2 1 2019-07-23 16:18:37 2 1 2019-07-23 16:28:37 2 2 2019-07-23 16:33:37 2 2 2019-07-23 16:38:38 2 2 2019-07-23 16:58:37 2 4 2019-07-23 17:03:37 2 4 2019-07-23 17:18:37 2 3 2019-07-23 17:23:37 2 3 2019-07-23 17:28:37 2 3 2019-07-23 17:48:37 2 2 2019-07-23 17:53:37 2 2 2019-07-23 17:58:37 2 2 2019-07-23 18:03:37 2 2 2019-07-23 18:08:37 2 2 2019-07-23 18:13:37 2 2 2019-07-23 18:18:37 2 2 2019-07-23 18:23:37 2 2 2019-07-23 18:58:37 2 4 2019-07-23 19:03:37 2 5 2019-07-23 19:08:37 2 5 2019-07-23 19:13:37 2 7 2019-07-23 19:18:37 2 6 2019-07-23 19:23:37 2 6 2019-07-23 19:28:37 2 5 2019-07-23 19:33:37 2 5 2019-07-23 19:38:37 2 3 2019-07-23 19:43:37 2 4 2019-07-23 19:48:37 2 4 2019-07-23 19:53:37 2 4 2019-07-23 19:58:37 2 3 2019-07-21 11:58:37 2 3 2019-07-21 12:18:37 2 2 2019-07-21 12:53:37 2 4 2019-07-21 12:58:37 2 5 2019-07-21 13:03:37 2 5 2019-07-21 13:13:37 2 4 2019-07-21 13:23:37 2 3 2019-07-21 13:28:37 2 3 2019-07-21 13:43:37 2 4 2019-07-21 13:53:37 2 3 2019-07-21 14:33:37 2 4 2019-07-21 15:08:37 2 4 2019-07-21 15:13:37 2 5 2019-07-21 15:38:37 2 3 2019-07-21 15:48:37 2 5 2019-07-21 15:53:37 2 5 2019-07-21 16:03:37 2 7 2019-07-21 16:18:37 2 3 2019-07-21 16:58:37 2 4 2019-07-21 17:08:37 2 3 2019-07-21 17:13:37 2 3 2019-07-21 17:18:37 2 4 2019-07-21 17:23:37 2 5 2019-07-21 18:33:37 2 6 2019-07-21 18:48:37 2 6 2019-07-21 18:53:37 2 6 2019-07-21 18:58:37 2 6 2019-07-21 19:03:37 2 6 2019-07-21 19:08:37 2 6 2019-07-21 19:18:37 2 5 2019-07-21 19:33:37 2 6 2019-07-21 19:38:37 2 5 2019-07-21 19:43:37 2 5 2019-07-21 19:48:37 2 5 2019-07-21 19:53:37 2 4 2019-07-21 20:18:37 2 4 2019-07-21 20:23:37 2 4 2019-07-21 20:48:37 2 5 2019-07-21 21:08:37 2 5 2019-07-21 21:23:37 2 4 2019-07-21 21:28:37 2 4 2019-07-21 21:33:37 2 4 2019-07-21 21:43:37 2 3 2019-07-21 21:48:37 2 3 2019-07-21 21:53:37 2 3 2019-07-21 22:03:37 2 3 2019-07-21 22:08:37 2 3 2019-07-21 22:28:37 2 3 2019-07-21 22:53:37 2 6 2019-07-21 22:58:37 2 5 2019-07-21 23:03:37 2 4 2019-07-21 23:33:37 2 4 2019-07-21 23:58:37 2 2 2019-07-22 00:03:37 2 1 2019-07-22 00:08:37 2 1 2019-07-22 00:28:37 2 2 2019-07-22 00:33:37 2 2 2019-07-22 00:38:37 2 3 2019-07-22 07:43:37 2 1 2019-07-22 08:03:37 2 2 2019-07-22 08:08:37 2 2 2019-07-22 08:13:37 2 2 2019-07-22 08:18:37 2 2 2019-07-22 08:33:37 2 1 2019-07-22 09:23:37 2 1 2019-07-22 09:28:37 2 1 2019-07-22 09:33:37 2 1 2019-07-22 09:38:37 2 2 2019-07-22 10:38:37 2 2 2019-07-22 11:13:37 2 2 2019-07-22 11:18:37 2 3 2019-07-22 11:38:37 2 2 2019-07-22 11:48:37 2 1 2019-07-22 12:13:37 2 2 2019-07-22 12:23:37 2 6 2019-07-22 12:28:37 2 4 2019-07-22 12:33:37 2 3 2019-07-22 13:08:37 2 2 2019-07-22 13:13:37 2 2 2019-07-22 13:18:37 2 2 2019-07-22 13:23:37 2 2 2019-07-22 13:28:37 2 2 2019-07-22 13:33:37 2 2 2019-07-22 13:43:37 2 3 2019-07-22 13:48:37 2 3 2019-07-22 14:33:37 2 2 2019-07-22 14:53:37 2 1 2019-07-22 14:58:37 2 1 2019-07-22 15:03:37 2 1 2019-07-22 15:08:37 2 1 2019-07-22 15:13:37 2 1 2019-07-22 15:18:37 2 1 2019-07-22 15:23:37 2 1 2019-07-22 15:28:37 2 1 2019-07-22 15:38:37 2 4 2019-07-22 15:48:37 2 5 2019-07-22 16:08:37 2 3 2019-07-22 16:13:37 2 3 2019-07-22 16:43:37 2 4 2019-07-22 17:03:37 2 5 2019-07-22 17:18:37 2 5 2019-07-22 17:23:37 2 5 2019-07-22 17:28:37 2 4 2019-07-22 17:33:37 2 3 2019-07-22 17:38:37 2 3 2019-07-22 18:03:37 2 3 2019-07-22 18:28:37 2 2 2019-07-22 18:43:37 2 1 2019-07-22 19:18:37 2 2 2019-07-22 19:23:37 2 2 2019-07-22 19:28:37 2 1 2019-07-22 20:33:37 2 1 2019-07-22 20:38:37 2 1 2019-07-22 20:48:37 2 2 2019-07-22 21:08:37 2 1 2019-07-22 21:13:37 2 1 2019-07-22 21:43:37 2 2 2019-07-22 21:58:37 2 2 2019-07-22 22:03:37 2 1 2019-07-22 22:13:37 2 2 2019-07-22 22:23:37 2 1 2019-07-22 23:33:37 2 1 2019-07-22 23:38:37 2 4 2019-07-22 23:43:37 2 4 2019-07-22 23:48:37 2 4 2019-07-23 00:23:37 2 4 2019-07-23 00:33:37 2 3 2019-07-23 00:48:37 2 4 2019-07-23 00:53:37 2 3 2019-07-23 01:08:37 2 2 2019-07-23 01:13:37 2 2 2019-07-23 01:38:37 2 1 2019-07-23 01:43:37 2 1 2019-07-23 02:33:37 2 3 2019-07-23 03:18:37 2 2 2019-07-23 03:23:37 2 2 2019-07-23 03:28:37 2 2 2019-07-23 03:33:37 2 2 2019-07-23 03:38:37 2 2 2019-07-23 06:33:37 2 1 2019-07-23 06:38:37 2 1 2019-07-23 06:43:37 2 1 2019-07-23 06:48:37 2 1 2019-07-23 06:53:37 2 1 2019-07-23 07:08:37 2 2 2019-07-23 07:13:37 2 1 2019-07-23 07:18:37 2 1 2019-07-23 08:23:37 2 1 2019-07-23 08:28:37 2 2 2019-07-23 08:43:37 2 1 2019-07-23 08:48:37 2 1 2019-07-23 09:13:37 2 1 2019-07-23 09:48:37 2 2 2019-07-23 09:58:37 2 3 2019-07-23 10:03:37 2 3 2019-07-23 10:08:37 2 3 2019-07-23 10:18:37 2 4 2019-07-23 10:38:37 2 4 2019-07-23 10:48:37 2 3 2019-07-23 10:53:37 2 3 2019-07-23 11:03:37 2 4 2019-07-23 11:13:37 2 5 2019-07-23 11:28:37 2 4 2019-07-23 11:48:37 2 4 2019-07-23 12:23:37 2 3 2019-07-23 12:38:37 2 5 2019-07-23 12:48:37 2 4 2019-07-23 12:58:37 2 8 2019-07-23 13:03:37 2 8 2019-07-23 13:23:37 2 3 2019-07-23 13:43:37 2 5 2019-07-23 14:18:37 2 3 2019-07-23 14:23:37 2 3 2019-07-23 14:33:37 2 3 2019-07-23 14:38:37 2 3 2019-07-23 15:18:37 2 4 2019-07-23 15:33:37 2 5 2019-07-23 15:53:37 2 2 2019-07-23 16:23:37 2 3 2019-07-23 16:48:37 2 4 2019-07-23 16:53:37 2 3 2019-07-23 17:13:37 2 4 2019-07-23 17:33:37 2 4 2019-07-23 17:43:37 2 3 2019-07-23 18:43:37 2 4 2019-07-21 12:03:37 2 2 2019-07-21 12:08:37 2 2 2019-07-21 12:13:37 2 2 2019-07-21 12:23:37 2 2 2019-07-21 13:08:37 2 4 2019-07-21 13:18:37 2 3 2019-07-21 13:38:37 2 4 2019-07-21 13:48:37 2 3 2019-07-21 13:58:37 2 2 2019-07-21 14:03:37 2 2 2019-07-21 14:28:37 2 2 2019-07-21 14:38:37 2 5 2019-07-21 14:43:37 2 4 2019-07-21 14:48:37 2 4 2019-07-21 14:53:37 2 4 2019-07-21 14:58:37 2 3 2019-07-21 15:23:37 2 4 2019-07-21 15:33:37 2 3 2019-07-21 15:43:37 2 5 2019-07-21 15:58:37 2 6 2019-07-21 16:08:37 2 5 2019-07-21 16:23:37 2 2 2019-07-21 16:28:37 2 2 2019-07-21 16:33:37 2 2 2019-07-21 16:43:37 2 1 2019-07-21 16:48:37 2 1 2019-07-21 17:28:37 2 3 2019-07-21 17:33:37 2 3 2019-07-21 17:38:37 2 3 2019-07-21 18:13:37 2 9 2019-07-21 18:23:37 2 6 2019-07-21 18:28:37 2 6 2019-07-21 18:38:37 2 7 2019-07-21 19:13:37 2 5 2019-07-21 19:23:37 2 6 2019-07-21 19:28:37 2 7 2019-07-21 20:03:37 2 4 2019-07-21 20:13:37 2 4 2019-07-21 20:28:37 2 3 2019-07-21 20:43:37 2 5 2019-07-21 20:58:37 2 5 2019-07-21 21:03:37 2 5 2019-07-21 21:13:37 2 4 2019-07-21 21:18:37 2 3 2019-07-21 21:58:37 2 2 2019-07-21 22:13:37 2 4 2019-07-21 22:33:37 2 3 2019-07-21 22:43:37 2 5 2019-07-21 22:48:37 2 5 2019-07-21 23:08:37 2 3 2019-07-21 23:13:37 2 3 2019-07-21 23:18:37 2 3 2019-07-21 23:28:37 2 4 2019-07-21 23:53:37 2 2 2019-07-22 00:13:37 2 2 2019-07-22 00:18:37 2 3 2019-07-22 00:43:37 2 3 2019-07-22 00:48:37 2 3 2019-07-22 01:13:37 2 2 2019-07-22 01:18:37 2 2 2019-07-22 02:38:37 2 1 2019-07-22 02:43:37 2 1 2019-07-22 02:48:37 2 1 2019-07-22 02:53:37 2 1 2019-07-22 07:48:37 2 2 2019-07-22 07:53:37 2 2 2019-07-22 08:23:37 2 2 2019-07-22 08:38:37 2 2 2019-07-22 08:48:37 2 1 2019-07-22 09:48:37 2 3 2019-07-22 09:53:37 2 2 2019-07-22 09:58:37 2 1 2019-07-22 10:03:37 2 1 2019-07-22 10:08:37 2 2 2019-07-22 10:13:37 2 2 2019-07-22 10:18:37 2 2 2019-07-22 10:23:37 2 2 2019-07-22 10:28:37 2 2 2019-07-22 10:33:37 2 2 2019-07-22 10:48:37 2 3 2019-07-22 10:53:37 2 3 2019-07-22 11:23:37 2 4 2019-07-22 11:28:37 2 3 2019-07-22 11:33:37 2 3 2019-07-22 11:43:37 2 1 2019-07-22 12:38:37 2 2 2019-07-22 12:43:37 2 2 2019-07-22 12:48:37 2 2 2019-07-22 13:03:37 2 3 2019-07-22 13:53:37 2 2 2019-07-22 13:58:37 2 2 2019-07-22 14:18:37 2 3 2019-07-22 14:23:37 2 4 2019-07-22 14:28:37 2 4 2019-07-22 15:43:37 2 5 2019-07-22 15:53:37 2 4 2019-07-22 16:18:37 2 4 2019-07-22 16:23:37 2 4 2019-07-22 16:28:37 2 4 2019-07-22 16:33:37 2 4 2019-07-22 16:53:37 2 6 2019-07-22 17:08:37 2 4 2019-07-22 17:13:37 2 5 2019-07-22 17:43:37 2 4 2019-07-22 17:48:37 2 4 2019-07-22 17:53:37 2 4 2019-07-22 17:58:37 2 3 2019-07-22 18:08:37 2 2 2019-07-22 18:33:37 2 3 2019-07-22 18:48:37 2 2 2019-07-22 18:53:37 2 3 2019-07-22 18:58:37 2 4 2019-07-22 19:08:37 2 2 2019-07-22 19:13:37 2 2 2019-07-22 19:38:37 2 1 2019-07-22 19:43:37 2 1 2019-07-22 21:48:37 2 1 2019-07-22 22:33:37 2 2 2019-07-22 22:43:37 2 2 2019-07-22 22:48:37 2 2 2019-07-22 22:58:37 2 1 2019-07-22 23:28:37 2 1 2019-07-22 23:53:37 2 4 2019-07-23 00:03:37 2 3 2019-07-23 00:13:37 2 4 2019-07-23 00:18:37 2 4 2019-07-23 00:38:37 2 2 2019-07-23 00:43:37 2 2 2019-07-23 00:58:37 2 2 2019-07-23 01:48:37 2 1 2019-07-23 01:53:37 2 1 2019-07-23 01:58:37 2 1 2019-07-23 02:03:37 2 1 2019-07-23 02:08:37 2 1 2019-07-23 02:38:37 2 2 2019-07-23 03:43:37 2 1 2019-07-23 03:48:37 2 1 2019-07-23 07:03:37 2 1 2019-07-23 07:28:37 2 1 2019-07-23 07:33:37 2 2 2019-07-23 07:38:37 2 1 2019-07-23 07:53:37 2 1 2019-07-23 08:33:37 2 2 2019-07-23 09:43:37 2 1 2019-07-23 09:53:38 2 2 2019-07-23 10:13:37 2 3 2019-07-23 10:33:37 2 2 2019-07-23 10:43:37 2 2 2019-07-23 10:58:37 2 5 2019-07-23 11:33:37 2 4 2019-07-23 11:38:37 2 3 2019-07-23 11:43:37 2 3 2019-07-23 12:03:37 2 3 2019-07-23 12:08:37 2 3 2019-07-23 12:18:37 2 4 2019-07-23 12:43:37 2 5 2019-07-23 13:18:37 2 4 2019-07-23 13:28:37 2 3 2019-07-23 13:33:37 2 4 2019-07-23 13:38:37 2 4 2019-07-23 13:53:37 2 2 2019-07-23 14:43:37 2 4 2019-07-23 14:53:37 2 5 2019-07-23 14:58:37 2 4 2019-07-23 15:08:37 2 5 2019-07-23 15:13:37 2 5 2019-07-23 15:23:37 2 4 2019-07-23 15:28:37 2 4 2019-07-23 15:43:37 2 6 2019-07-23 16:43:37 2 3 2019-07-23 17:08:37 2 3 2019-07-23 17:38:37 2 4 2019-07-23 18:28:37 2 3 2019-07-23 18:33:37 2 3 2019-07-23 18:38:37 2 3 2019-07-23 18:48:37 2 4 2019-07-23 18:53:37 2 3 2019-07-23 20:03:37 2 3 2019-07-23 20:08:37 2 3 2019-07-23 20:13:37 2 4 2019-07-23 20:18:37 2 4 2019-07-23 20:23:37 2 5 2019-07-23 20:28:37 2 5 2019-07-23 20:33:37 2 5 2019-07-23 20:38:37 2 4 2019-07-23 20:43:37 2 4 2019-07-23 20:48:37 2 4 2019-07-23 21:18:37 2 2 2019-07-23 21:43:38 2 2 2019-07-23 22:03:37 2 5 2019-07-23 22:08:37 2 6 2019-07-23 22:18:37 2 5 2019-07-23 22:23:37 2 6 2019-07-23 22:38:37 2 3 2019-07-23 22:48:37 2 4 2019-07-23 22:58:37 2 4 2019-07-23 23:03:37 2 3 2019-07-23 23:13:37 2 3 2019-07-23 23:18:37 2 4 2019-07-23 23:23:37 2 7 2019-07-23 23:33:37 2 4 2019-07-23 23:38:37 2 4 2019-07-23 23:43:37 2 4 2019-07-24 00:28:37 2 2 2019-07-24 00:33:37 2 2 2019-07-24 01:13:37 2 4 2019-07-24 01:18:37 2 3 2019-07-24 01:48:37 2 2 2019-07-24 01:53:37 2 2 2019-07-24 01:58:37 2 2 2019-07-24 02:03:37 2 2 2019-07-24 02:18:37 2 1 2019-07-24 02:23:37 2 1 2019-07-24 02:28:37 2 1 2019-07-24 02:33:37 2 1 2019-07-24 02:38:37 2 1 2019-07-24 02:43:37 2 1 2019-07-24 02:48:37 2 1 2019-07-24 02:53:37 2 1 2019-07-24 02:58:37 2 1 2019-07-24 03:03:37 2 1 2019-07-24 03:08:37 2 1 2019-07-24 03:13:37 2 1 2019-07-24 03:18:37 2 1 2019-07-24 04:03:37 2 1 2019-07-24 04:08:37 2 1 2019-07-24 04:13:37 2 1 2019-07-24 04:18:37 2 1 2019-07-24 04:23:37 2 1 2019-07-24 04:28:37 2 1 2019-07-24 04:33:37 2 1 2019-07-24 04:38:37 2 1 2019-07-24 04:43:37 2 1 2019-07-24 04:48:37 2 1 2019-07-24 04:53:37 2 1 2019-07-24 04:58:37 2 1 2019-07-24 05:03:37 2 1 2019-07-24 05:08:37 2 1 2019-07-24 05:13:37 2 1 2019-07-24 05:18:37 2 1 2019-07-24 05:23:37 2 1 2019-07-24 05:28:37 2 1 2019-07-24 05:33:37 2 1 2019-07-24 05:38:37 2 1 2019-07-24 05:43:37 2 1 2019-07-24 05:48:37 2 1 2019-07-24 05:53:37 2 1 2019-07-24 05:58:37 2 1 2019-07-24 06:03:37 2 1 2019-07-24 06:08:37 2 1 2019-07-24 06:13:37 2 1 2019-07-24 06:18:37 2 1 2019-07-24 06:23:37 2 1 2019-07-24 06:28:37 2 1 2019-07-24 06:33:37 2 1 2019-07-24 06:38:37 2 1 2019-07-24 06:43:37 2 1 2019-07-24 06:48:37 2 1 2019-07-24 06:53:37 2 1 2019-07-24 06:58:37 2 1 2019-07-24 07:03:37 2 1 2019-07-24 07:48:37 2 2 2019-07-24 08:08:37 2 1 2019-07-24 08:13:37 2 1 2019-07-24 08:33:37 2 2 2019-07-24 08:38:37 2 1 2019-07-24 09:08:37 2 4 2019-07-24 09:23:37 2 4 2019-07-24 09:28:37 2 4 2019-07-24 09:43:37 2 4 2019-07-24 09:58:37 2 4 2019-07-24 10:03:37 2 4 2019-07-24 10:08:37 2 5 2019-07-24 10:18:37 2 6 2019-07-24 10:23:37 2 3 2019-07-24 10:28:37 2 3 2019-07-24 10:33:37 2 4 2019-07-24 10:48:37 2 4 2019-07-24 10:53:37 2 4 2019-07-24 10:58:37 2 4 2019-07-24 11:13:37 2 3 2019-07-24 11:23:37 2 3 2019-07-24 11:28:37 2 3 2019-07-24 11:33:37 2 2 2019-07-24 11:38:37 2 2 2019-07-24 11:43:37 2 2 2019-07-24 11:48:37 2 2 2019-07-24 11:53:37 2 3 2019-07-24 12:03:37 2 4 2019-07-24 12:13:37 2 3 2019-07-24 12:18:37 2 3 2019-07-24 12:38:37 2 4 2019-07-24 12:48:37 2 1 2019-07-24 13:08:37 2 2 2019-07-24 13:48:37 2 3 2019-07-24 14:08:37 2 3 2019-07-24 14:13:37 2 3 2019-07-24 14:18:37 2 2 2019-07-24 14:28:37 2 3 2019-07-24 14:33:37 2 4 2019-07-24 14:48:37 2 3 2019-07-24 14:53:37 2 3 2019-07-24 15:18:37 2 4 2019-07-24 15:33:37 2 6 2019-07-24 15:38:37 2 5 2019-07-24 16:03:37 2 4 2019-07-24 16:18:37 2 3 2019-07-24 16:23:37 2 4 2019-07-24 17:03:37 2 2 2019-07-24 17:23:37 2 7 2019-07-24 17:28:37 2 6 2019-07-24 17:38:37 2 6 2019-07-24 17:53:37 2 5 2019-07-24 18:03:37 2 7 2019-07-24 18:28:37 2 4 2019-07-24 18:43:37 2 4 2019-07-24 18:48:37 2 4 2019-07-24 18:58:37 2 4 2019-07-24 19:18:37 2 4 2019-07-24 19:58:37 2 3 2019-07-24 20:13:37 2 3 2019-07-24 20:18:37 2 3 2019-07-24 20:23:37 2 3 2019-07-24 20:28:37 2 3 2019-07-24 20:43:37 2 3 2019-07-24 21:08:37 2 2 2019-07-24 21:18:37 2 3 2019-07-24 21:23:37 2 3 2019-07-24 21:28:37 2 4 2019-07-24 21:48:37 2 4 2019-07-24 21:58:37 2 4 2019-07-24 22:18:37 2 5 2019-07-24 22:48:37 2 4 2019-07-24 23:03:37 2 3 2019-07-24 23:08:37 2 3 2019-07-24 23:13:37 2 4 2019-07-24 23:28:37 2 3 2019-07-25 00:08:37 2 4 2019-07-25 00:13:37 2 4 2019-07-25 00:23:38 2 3 2019-07-25 01:23:37 2 1 2019-07-25 01:53:37 2 2 2019-07-25 01:58:37 2 2 2019-07-25 02:03:37 2 2 2019-07-25 02:08:37 2 2 2019-07-25 02:13:37 2 2 2019-07-25 02:18:37 2 2 2019-07-25 02:23:37 2 2 2019-07-25 02:28:37 2 2 2019-07-25 02:33:37 2 2 2019-07-25 02:38:37 2 2 2019-07-25 02:43:37 2 2 2019-07-25 03:28:37 2 3 2019-07-25 03:33:37 2 3 2019-07-25 03:53:37 2 2 2019-07-25 04:03:37 2 1 2019-07-25 04:08:37 2 1 2019-07-25 07:43:37 2 1 2019-07-25 07:48:37 2 1 2019-07-25 07:53:37 2 1 2019-07-25 07:58:37 2 1 2019-07-25 08:03:37 2 1 2019-07-25 08:08:37 2 1 2019-07-25 08:13:37 2 1 2019-07-25 08:18:37 2 1 2019-07-25 09:18:37 2 1 2019-07-25 09:38:37 2 1 2019-07-25 09:48:37 2 2 2019-07-25 09:53:37 2 2 2019-07-25 10:13:37 2 2 2019-07-23 20:53:37 2 5 2019-07-23 21:03:37 2 4 2019-07-23 21:13:37 2 4 2019-07-23 21:28:37 2 2 2019-07-23 21:33:37 2 2 2019-07-23 21:38:37 2 2 2019-07-23 21:48:37 2 3 2019-07-23 22:13:37 2 6 2019-07-23 22:28:37 2 7 2019-07-23 22:53:37 2 5 2019-07-23 23:08:37 2 3 2019-07-23 23:28:37 2 6 2019-07-23 23:53:37 2 2 2019-07-24 00:08:37 2 2 2019-07-24 00:53:37 2 2 2019-07-24 00:58:37 2 2 2019-07-24 01:03:37 2 2 2019-07-24 01:23:37 2 2 2019-07-24 01:28:37 2 2 2019-07-24 01:33:37 2 2 2019-07-24 01:38:37 2 2 2019-07-24 01:43:37 2 2 2019-07-24 02:08:37 2 3 2019-07-24 03:58:37 2 1 2019-07-24 07:08:37 2 1 2019-07-24 07:13:37 2 1 2019-07-24 07:18:37 2 1 2019-07-24 07:23:37 2 1 2019-07-24 07:28:37 2 1 2019-07-24 08:03:37 2 2 2019-07-24 08:28:37 2 3 2019-07-24 08:48:37 2 1 2019-07-24 09:03:37 2 2 2019-07-24 09:13:37 2 2 2019-07-24 09:18:37 2 3 2019-07-24 09:48:37 2 4 2019-07-24 09:53:37 2 4 2019-07-24 10:13:37 2 7 2019-07-24 11:03:37 2 6 2019-07-24 11:08:37 2 5 2019-07-24 12:33:37 2 3 2019-07-24 12:43:37 2 5 2019-07-24 12:53:37 2 1 2019-07-24 12:58:37 2 1 2019-07-24 13:03:37 2 1 2019-07-24 13:18:37 2 2 2019-07-24 13:23:37 2 2 2019-07-24 13:38:37 2 2 2019-07-24 13:43:37 2 2 2019-07-24 14:03:37 2 4 2019-07-24 14:23:37 2 2 2019-07-24 14:43:37 2 4 2019-07-24 14:58:37 2 4 2019-07-24 15:08:37 2 5 2019-07-24 15:28:37 2 6 2019-07-24 15:48:37 2 5 2019-07-24 15:53:37 2 5 2019-07-24 15:58:37 2 5 2019-07-24 16:13:37 2 3 2019-07-24 16:33:37 2 2 2019-07-24 16:38:37 2 2 2019-07-24 17:08:37 2 4 2019-07-24 17:43:37 2 6 2019-07-24 17:48:37 2 6 2019-07-24 17:58:37 2 7 2019-07-24 18:23:37 2 5 2019-07-24 18:38:37 2 4 2019-07-24 18:53:37 2 4 2019-07-24 19:13:37 2 5 2019-07-24 19:38:37 2 2 2019-07-24 19:43:37 2 2 2019-07-24 19:48:37 2 3 2019-07-24 20:03:37 2 2 2019-07-24 20:08:37 2 2 2019-07-24 20:53:37 2 3 2019-07-24 20:58:37 2 3 2019-07-24 21:38:37 2 3 2019-07-24 21:43:37 2 4 2019-07-24 21:53:37 2 5 2019-07-24 22:08:37 2 3 2019-07-24 22:28:37 2 4 2019-07-24 22:33:37 2 4 2019-07-24 22:43:37 2 5 2019-07-24 23:18:37 2 4 2019-07-24 23:23:37 2 3 2019-07-24 23:38:37 2 4 2019-07-24 23:43:37 2 3 2019-07-24 23:53:37 2 3 2019-07-25 00:03:37 2 4 2019-07-25 00:18:37 2 2 2019-07-25 00:43:37 2 1 2019-07-25 00:48:37 2 1 2019-07-25 00:53:37 2 1 2019-07-25 00:58:37 2 1 2019-07-25 01:03:37 2 1 2019-07-25 01:08:37 2 1 2019-07-25 01:13:37 2 2 2019-07-25 01:18:37 2 2 2019-07-25 03:23:37 2 2 2019-07-25 03:38:37 2 3 2019-07-25 03:43:37 2 3 2019-07-25 03:48:37 2 3 2019-07-25 04:13:37 2 2 2019-07-25 04:18:37 2 2 2019-07-25 04:23:37 2 2 2019-07-25 04:28:37 2 2 2019-07-25 04:33:37 2 2 2019-07-25 04:38:37 2 2 2019-07-25 04:43:37 2 2 2019-07-25 04:48:37 2 2 2019-07-25 04:53:37 2 2 2019-07-25 07:38:37 2 1 2019-07-25 08:23:37 2 2 2019-07-25 09:03:37 2 1 2019-07-25 09:23:37 2 3 2019-07-25 09:28:37 2 3 2019-07-25 10:08:37 2 3 2019-07-25 10:18:37 2 3 2019-07-25 10:28:37 2 2 2019-07-25 10:33:37 2 2 2019-07-25 10:38:37 2 2 2019-07-25 10:43:37 2 2 2019-07-25 10:48:37 2 2 2019-07-25 10:53:37 2 3 2019-07-25 11:18:37 2 6 2019-07-25 11:23:37 2 5 2019-07-25 11:28:37 2 3 2019-07-25 11:33:37 2 3 2019-07-25 11:38:37 2 4 2019-07-25 11:43:37 2 4 2019-07-25 11:58:37 2 4 2019-07-25 12:03:37 2 5 2019-07-25 12:08:37 2 5 2019-07-25 12:13:37 2 6 2019-07-25 12:18:37 2 4 2019-07-25 12:23:37 2 5 2019-07-25 12:28:37 2 4 2019-07-25 13:03:37 2 6 2019-07-25 13:13:37 2 5 2019-07-25 13:18:37 2 4 2019-07-25 13:23:37 2 4 2019-07-25 13:28:37 2 4 2019-07-25 13:33:37 2 4 2019-07-25 13:43:37 2 8 2019-07-25 13:58:37 2 6 2019-07-25 14:08:37 2 6 2019-07-25 14:13:37 2 6 2019-07-25 14:18:37 2 6 2019-07-25 14:28:37 2 8 2019-07-25 14:33:37 2 5 2019-07-25 14:38:37 2 5 2019-07-25 14:48:37 2 6 2019-07-25 14:53:37 2 7 2019-07-25 15:03:37 2 6 2019-07-25 15:08:37 2 5 2019-07-25 15:23:37 2 4 2019-07-25 15:28:37 2 4 2019-07-25 15:33:37 2 4 2019-07-25 15:38:37 2 3 2019-07-25 15:43:37 2 3 2019-07-25 15:48:37 2 4 2019-07-25 15:53:37 2 4 2019-07-25 16:03:37 2 4 2019-07-25 16:13:37 2 3 2019-07-25 16:18:37 2 3 2019-07-25 16:23:37 2 3 2019-07-25 16:28:37 2 3 2019-07-25 16:33:37 2 3 2019-07-25 16:38:37 2 2 2019-07-25 16:43:37 2 2 2019-07-25 17:08:37 2 3 2019-07-25 17:13:37 2 2 2019-07-25 17:18:37 2 2 2019-07-25 18:23:37 2 1 2019-07-25 18:28:37 2 1 2019-07-25 18:38:37 2 5 2019-07-25 18:58:37 2 2 2019-07-25 19:03:37 2 2 2019-07-25 19:08:37 2 2 2019-07-25 19:13:37 2 2 2019-07-25 19:18:37 2 2 2019-07-25 19:23:37 2 1 2019-07-25 19:28:37 2 2 2019-07-25 19:43:37 2 3 2019-07-25 19:53:37 2 4 2019-07-23 20:58:37 2 4 2019-07-23 21:08:37 2 5 2019-07-23 21:23:37 2 2 2019-07-23 21:53:37 2 5 2019-07-23 21:58:37 2 5 2019-07-23 22:33:37 2 5 2019-07-23 22:43:37 2 5 2019-07-23 23:48:37 2 2 2019-07-23 23:58:37 2 3 2019-07-24 00:03:37 2 2 2019-07-24 00:13:37 2 3 2019-07-24 00:18:37 2 4 2019-07-24 00:23:37 2 3 2019-07-24 00:38:37 2 2 2019-07-24 00:43:37 2 2 2019-07-24 00:48:37 2 2 2019-07-24 01:08:37 2 3 2019-07-24 02:13:37 2 2 2019-07-24 03:23:37 2 1 2019-07-24 07:33:37 2 1 2019-07-24 07:58:37 2 2 2019-07-24 08:18:37 2 2 2019-07-24 08:23:37 2 2 2019-07-24 08:58:37 2 1 2019-07-24 09:33:37 2 3 2019-07-24 09:38:37 2 6 2019-07-24 10:38:37 2 5 2019-07-24 10:43:37 2 4 2019-07-24 11:18:37 2 3 2019-07-24 11:58:37 2 4 2019-07-24 12:08:37 2 3 2019-07-24 12:23:37 2 2 2019-07-24 12:28:37 2 2 2019-07-24 13:13:37 2 3 2019-07-24 13:28:37 2 2 2019-07-24 13:33:37 2 2 2019-07-24 13:53:37 2 4 2019-07-24 13:58:37 2 4 2019-07-24 14:38:37 2 3 2019-07-24 15:03:37 2 5 2019-07-24 15:13:37 2 4 2019-07-24 15:23:37 2 5 2019-07-24 15:43:37 2 4 2019-07-24 16:08:37 2 4 2019-07-24 16:28:37 2 3 2019-07-24 16:43:37 2 2 2019-07-24 16:48:37 2 2 2019-07-24 16:53:37 2 2 2019-07-24 16:58:37 2 2 2019-07-24 17:13:37 2 6 2019-07-24 17:18:37 2 7 2019-07-24 17:33:37 2 6 2019-07-24 18:08:37 2 5 2019-07-24 18:13:37 2 6 2019-07-24 18:18:37 2 6 2019-07-24 18:33:37 2 5 2019-07-24 19:03:37 2 3 2019-07-24 19:08:37 2 4 2019-07-24 19:23:37 2 3 2019-07-24 19:28:37 2 3 2019-07-24 19:33:37 2 3 2019-07-24 19:53:37 2 3 2019-07-24 20:33:37 2 4 2019-07-24 20:38:37 2 5 2019-07-24 20:48:37 2 2 2019-07-24 21:03:37 2 2 2019-07-24 21:13:37 2 4 2019-07-24 21:33:37 2 3 2019-07-24 22:03:37 2 3 2019-07-24 22:13:37 2 3 2019-07-24 22:23:37 2 4 2019-07-24 22:38:37 2 6 2019-07-24 22:53:37 2 3 2019-07-24 22:58:37 2 3 2019-07-24 23:33:37 2 4 2019-07-24 23:48:37 2 2 2019-07-24 23:58:37 2 4 2019-07-25 00:28:37 2 2 2019-07-25 00:33:37 2 2 2019-07-25 00:38:37 2 2 2019-07-25 01:28:37 2 2 2019-07-25 01:33:37 2 2 2019-07-25 01:38:37 2 2 2019-07-25 01:43:37 2 3 2019-07-25 01:48:37 2 2 2019-07-25 02:48:37 2 1 2019-07-25 02:53:37 2 1 2019-07-25 02:58:37 2 1 2019-07-25 03:03:37 2 1 2019-07-25 03:08:37 2 1 2019-07-25 03:13:37 2 1 2019-07-25 03:18:37 2 1 2019-07-25 03:58:37 2 1 2019-07-25 04:58:37 2 1 2019-07-25 05:03:37 2 1 2019-07-25 05:08:37 2 1 2019-07-25 05:13:37 2 1 2019-07-25 05:18:37 2 1 2019-07-25 05:23:37 2 1 2019-07-25 05:28:37 2 1 2019-07-25 05:33:37 2 1 2019-07-25 05:38:37 2 1 2019-07-25 05:43:37 2 1 2019-07-25 05:48:37 2 1 2019-07-25 05:53:37 2 1 2019-07-25 05:58:37 2 1 2019-07-25 06:03:37 2 1 2019-07-25 06:08:37 2 1 2019-07-25 06:13:37 2 1 2019-07-25 06:18:37 2 1 2019-07-25 06:23:37 2 1 2019-07-25 06:28:37 2 1 2019-07-25 06:33:37 2 1 2019-07-25 06:38:37 2 1 2019-07-25 06:43:37 2 1 2019-07-25 06:48:37 2 1 2019-07-25 06:53:37 2 1 2019-07-25 06:58:37 2 1 2019-07-25 07:03:37 2 1 2019-07-25 07:08:37 2 1 2019-07-25 07:13:37 2 1 2019-07-25 07:18:37 2 1 2019-07-25 07:23:37 2 1 2019-07-25 07:28:37 2 1 2019-07-25 07:33:37 2 1 2019-07-25 08:28:37 2 1 2019-07-25 08:33:37 2 1 2019-07-25 09:08:37 2 2 2019-07-25 09:13:37 2 2 2019-07-25 09:33:37 2 2 2019-07-25 09:43:37 2 3 2019-07-25 09:58:37 2 2 2019-07-25 10:03:37 2 2 2019-07-25 10:23:37 2 2 2019-07-25 10:58:37 2 2 2019-07-25 11:03:37 2 2 2019-07-25 11:08:37 2 3 2019-07-25 11:13:37 2 5 2019-07-25 11:48:37 2 2 2019-07-25 11:53:37 2 3 2019-07-25 12:33:37 2 4 2019-07-25 12:38:37 2 5 2019-07-25 12:43:37 2 5 2019-07-25 12:48:37 2 7 2019-07-25 12:53:37 2 5 2019-07-25 12:58:37 2 5 2019-07-25 13:08:37 2 7 2019-07-25 13:38:37 2 5 2019-07-25 13:48:37 2 7 2019-07-25 13:53:37 2 6 2019-07-25 14:03:37 2 6 2019-07-25 14:23:37 2 8 2019-07-25 14:43:37 2 5 2019-07-25 14:58:37 2 6 2019-07-25 15:13:37 2 6 2019-07-25 15:18:37 2 5 2019-07-25 15:58:37 2 3 2019-07-25 16:08:37 2 4 2019-07-25 16:48:37 2 3 2019-07-25 16:53:37 2 3 2019-07-25 16:58:37 2 3 2019-07-25 17:03:37 2 4 2019-07-25 17:23:37 2 1 2019-07-25 17:28:37 2 1 2019-07-25 17:33:37 2 1 2019-07-25 17:38:37 2 1 2019-07-25 17:43:37 2 1 2019-07-25 17:48:37 2 1 2019-07-25 17:53:37 2 1 2019-07-25 17:58:37 2 1 2019-07-25 18:03:37 2 1 2019-07-25 18:08:37 2 2 2019-07-25 18:13:37 2 1 2019-07-25 18:18:37 2 1 2019-07-25 18:33:37 2 3 2019-07-25 18:43:37 2 4 2019-07-25 18:48:37 2 3 2019-07-25 18:53:37 2 3 2019-07-25 19:33:37 2 3 2019-07-25 19:38:37 2 2 2019-07-25 19:48:37 2 5 2019-07-25 19:58:37 2 6 2019-07-25 20:03:37 2 5 2019-07-25 20:08:37 2 5 2019-07-25 20:13:37 2 6 2019-07-25 20:18:37 2 5 2019-07-25 20:23:37 2 5 2019-07-25 20:38:37 2 6 2019-07-25 21:58:37 2 3 2019-07-25 22:03:37 2 3 2019-07-25 22:23:37 2 4 2019-07-25 22:38:37 2 4 2019-07-25 22:43:37 2 3 2019-07-25 22:48:37 2 3 2019-07-25 23:33:37 2 6 2019-07-25 23:43:37 2 4 2019-07-25 23:48:37 2 4 2019-07-26 00:03:37 2 3 2019-07-26 00:28:37 2 7 2019-07-26 00:48:37 2 5 2019-07-26 00:58:37 2 3 2019-07-26 01:03:37 2 3 2019-07-26 01:18:37 2 2 2019-07-26 01:53:37 2 2 2019-07-26 01:58:37 2 2 2019-07-26 02:03:37 2 2 2019-07-26 02:08:37 2 2 2019-07-26 02:13:37 2 2 2019-07-26 03:08:37 2 1 2019-07-26 03:13:37 2 1 2019-07-26 03:18:37 2 1 2019-07-26 07:08:37 2 1 2019-07-26 07:13:37 2 1 2019-07-26 07:18:37 2 1 2019-07-26 07:23:37 2 1 2019-07-26 07:28:37 2 1 2019-07-26 07:33:37 2 1 2019-07-26 07:48:37 2 2 2019-07-26 07:53:37 2 2 2019-07-26 07:58:37 2 2 2019-07-26 08:03:37 2 2 2019-07-26 08:18:37 2 2 2019-07-26 08:23:37 2 2 2019-07-26 08:28:37 2 2 2019-07-26 08:33:37 2 2 2019-07-26 08:43:37 2 3 2019-07-26 09:23:37 2 3 2019-07-26 09:28:37 2 2 2019-07-26 09:38:37 2 2 2019-07-26 09:53:37 2 1 2019-07-26 09:58:37 2 1 2019-07-26 10:23:37 2 2 2019-07-26 10:38:37 2 3 2019-07-26 10:53:37 2 4 2019-07-26 10:58:37 2 3 2019-07-26 11:08:37 2 5 2019-07-26 11:43:37 2 5 2019-07-26 11:48:37 2 4 2019-07-26 11:53:37 2 4 2019-07-26 12:13:37 2 6 2019-07-26 12:18:37 2 5 2019-07-26 12:28:37 2 4 2019-07-26 12:33:37 2 3 2019-07-26 12:38:37 2 3 2019-07-26 12:43:37 2 3 2019-07-26 12:58:37 2 3 2019-07-26 13:08:37 2 4 2019-07-26 13:18:37 2 3 2019-07-26 13:23:37 2 3 2019-07-26 13:28:37 2 3 2019-07-26 13:33:37 2 3 2019-07-26 13:38:37 2 2 2019-07-26 13:48:37 2 2 2019-07-26 14:23:37 2 3 2019-07-26 14:28:37 2 3 2019-07-26 14:33:37 2 2 2019-07-26 14:58:37 2 2 2019-07-26 15:03:37 2 3 2019-07-26 15:13:37 2 5 2019-07-26 15:48:37 2 4 2019-07-26 15:53:37 2 4 2019-07-26 15:58:37 2 4 2019-07-26 16:13:37 2 3 2019-07-26 16:28:37 2 3 2019-07-26 16:33:37 2 2 2019-07-26 16:38:37 2 2 2019-07-26 16:48:37 2 4 2019-07-26 17:23:37 2 3 2019-07-26 18:33:37 2 2 2019-07-26 18:38:37 2 3 2019-07-26 18:53:37 2 2 2019-07-26 19:08:37 2 1 2019-07-26 19:18:37 2 1 2019-07-26 19:28:37 2 1 2019-07-26 19:33:37 2 1 2019-07-26 20:28:37 2 4 2019-07-26 20:38:37 2 2 2019-07-26 20:48:37 2 4 2019-07-26 20:53:37 2 5 2019-07-26 22:23:37 2 3 2019-07-26 22:28:37 2 5 2019-07-26 22:58:37 2 5 2019-07-26 23:13:37 2 4 2019-07-26 23:23:37 2 5 2019-07-26 23:38:37 2 5 2019-07-26 23:48:37 2 5 2019-07-27 00:28:37 2 3 2019-07-27 02:43:37 2 2 2019-07-27 02:48:37 2 2 2019-07-27 02:53:37 2 2 2019-07-27 02:58:37 2 2 2019-07-27 03:03:37 2 2 2019-07-27 03:08:37 2 2 2019-07-27 03:13:37 2 2 2019-07-27 03:23:37 2 3 2019-07-27 03:43:37 2 1 2019-07-27 04:03:37 2 4 2019-07-27 04:08:37 2 4 2019-07-27 04:13:37 2 4 2019-07-27 04:23:37 2 5 2019-07-27 05:33:37 2 4 2019-07-27 05:38:37 2 4 2019-07-27 05:43:37 2 4 2019-07-27 05:48:37 2 4 2019-07-27 06:03:37 2 1 2019-07-27 06:08:37 2 1 2019-07-27 06:13:37 2 1 2019-07-27 06:18:37 2 1 2019-07-27 06:23:37 2 1 2019-07-27 06:28:37 2 1 2019-07-27 06:33:37 2 1 2019-07-27 06:38:37 2 1 2019-07-27 06:43:37 2 1 2019-07-27 06:48:37 2 1 2019-07-27 06:53:37 2 1 2019-07-27 06:58:37 2 1 2019-07-27 07:03:37 2 1 2019-07-27 07:08:37 2 1 2019-07-27 07:13:37 2 1 2019-07-27 07:18:37 2 1 2019-07-27 07:23:37 2 1 2019-07-27 08:03:37 2 2 2019-07-27 08:33:37 2 3 2019-07-27 09:08:37 2 2 2019-07-27 09:33:37 2 3 2019-07-27 09:43:37 2 3 2019-07-27 10:08:37 2 4 2019-07-27 10:13:37 2 3 2019-07-27 10:18:37 2 6 2019-07-27 10:38:37 2 4 2019-07-27 10:48:37 2 5 2019-07-27 10:53:37 2 4 2019-07-27 11:48:37 2 6 2019-07-27 12:03:37 2 7 2019-07-27 12:18:37 2 5 2019-07-27 12:28:37 2 5 2019-07-27 12:33:37 2 4 2019-07-27 12:38:37 2 6 2019-07-27 12:48:37 2 5 2019-07-27 13:08:37 2 5 2019-07-27 13:23:37 2 5 2019-07-27 13:43:37 2 4 2019-07-27 14:18:37 2 2 2019-07-27 14:28:37 2 2 2019-07-27 14:53:37 2 4 2019-07-27 15:08:37 2 2 2019-07-27 15:23:37 2 2 2019-07-27 15:33:37 2 3 2019-07-27 15:38:37 2 3 2019-07-27 15:53:37 2 3 2019-07-27 16:13:37 2 3 2019-07-27 16:28:37 2 3 2019-07-27 16:43:37 2 7 2019-07-27 16:58:37 2 5 2019-07-27 17:38:37 2 8 2019-07-27 17:43:37 2 7 2019-07-27 17:48:37 2 5 2019-07-27 17:58:37 2 4 2019-07-27 18:13:37 2 4 2019-07-27 18:18:37 2 3 2019-07-27 18:33:37 2 4 2019-07-27 18:48:37 2 1 2019-07-27 18:58:37 2 3 2019-07-27 19:03:37 2 3 2019-07-27 19:08:37 2 3 2019-07-27 19:13:37 2 3 2019-07-27 19:28:37 2 3 2019-07-27 19:43:37 2 4 2019-07-27 20:13:37 2 4 2019-07-27 20:33:37 2 6 2019-07-25 20:28:37 2 6 2019-07-25 20:33:37 2 7 2019-07-25 20:53:37 2 4 2019-07-25 21:13:37 2 3 2019-07-25 21:53:37 2 3 2019-07-25 22:08:37 2 4 2019-07-25 22:13:37 2 4 2019-07-25 22:18:37 2 4 2019-07-25 22:28:37 2 5 2019-07-25 22:33:37 2 6 2019-07-25 22:53:37 2 4 2019-07-25 22:58:37 2 4 2019-07-25 23:18:37 2 5 2019-07-25 23:23:37 2 6 2019-07-25 23:38:37 2 4 2019-07-25 23:53:37 2 3 2019-07-25 23:58:37 2 3 2019-07-26 00:23:37 2 6 2019-07-26 01:23:37 2 1 2019-07-26 01:28:37 2 1 2019-07-26 01:33:37 2 1 2019-07-26 02:18:37 2 1 2019-07-26 02:23:37 2 1 2019-07-26 02:28:37 2 1 2019-07-26 02:33:37 2 1 2019-07-26 02:38:37 2 1 2019-07-26 02:43:37 2 1 2019-07-26 02:48:37 2 1 2019-07-26 07:38:37 2 1 2019-07-26 07:43:37 2 1 2019-07-26 08:13:37 2 2 2019-07-26 08:53:37 2 3 2019-07-26 09:33:37 2 2 2019-07-26 09:43:37 2 1 2019-07-26 10:03:37 2 1 2019-07-26 10:08:37 2 1 2019-07-26 10:13:37 2 2 2019-07-26 10:18:37 2 3 2019-07-26 10:33:37 2 4 2019-07-26 11:03:37 2 3 2019-07-26 11:38:37 2 4 2019-07-26 11:58:37 2 4 2019-07-26 12:03:37 2 4 2019-07-26 12:08:37 2 5 2019-07-26 12:23:37 2 5 2019-07-26 12:48:37 2 3 2019-07-26 13:13:37 2 4 2019-07-26 13:43:37 2 2 2019-07-26 13:58:37 2 1 2019-07-26 14:03:37 2 1 2019-07-26 14:08:37 2 3 2019-07-26 14:13:37 2 2 2019-07-26 14:18:37 2 2 2019-07-26 14:53:37 2 3 2019-07-26 15:08:37 2 4 2019-07-26 15:18:37 2 3 2019-07-26 15:23:37 2 2 2019-07-26 15:28:37 2 5 2019-07-26 15:33:37 2 5 2019-07-26 15:43:37 2 5 2019-07-26 16:03:37 2 4 2019-07-26 16:08:37 2 4 2019-07-26 16:53:37 2 4 2019-07-26 17:18:37 2 1 2019-07-26 17:43:37 2 1 2019-07-26 18:18:37 2 1 2019-07-26 18:23:37 2 1 2019-07-26 18:28:37 2 1 2019-07-26 18:48:37 2 3 2019-07-26 19:03:37 2 2 2019-07-26 19:13:37 2 1 2019-07-26 19:43:37 2 3 2019-07-26 20:08:37 2 3 2019-07-26 20:13:37 2 3 2019-07-26 20:18:37 2 3 2019-07-26 20:33:37 2 4 2019-07-26 21:08:37 2 2 2019-07-26 21:13:37 2 4 2019-07-26 21:18:37 2 5 2019-07-26 21:23:37 2 5 2019-07-26 21:33:37 2 2 2019-07-26 21:38:37 2 3 2019-07-26 21:48:37 2 2 2019-07-26 21:53:37 2 2 2019-07-26 21:58:37 2 1 2019-07-26 22:03:37 2 1 2019-07-26 22:08:37 2 2 2019-07-26 22:13:37 2 2 2019-07-26 22:43:37 2 5 2019-07-26 22:53:37 2 6 2019-07-26 23:08:37 2 3 2019-07-26 23:18:37 2 4 2019-07-26 23:33:37 2 5 2019-07-26 23:43:38 2 4 2019-07-27 00:08:37 2 5 2019-07-27 00:18:37 2 5 2019-07-27 00:53:37 2 5 2019-07-27 01:08:37 2 5 2019-07-27 01:28:37 2 2 2019-07-27 01:33:37 2 2 2019-07-27 01:38:37 2 2 2019-07-27 01:48:37 2 1 2019-07-27 01:53:37 2 1 2019-07-27 01:58:37 2 1 2019-07-27 02:03:37 2 1 2019-07-27 02:33:37 2 1 2019-07-27 02:38:37 2 1 2019-07-27 03:33:37 2 3 2019-07-27 03:53:37 2 1 2019-07-27 04:18:37 2 4 2019-07-27 05:58:37 2 2 2019-07-27 07:28:37 2 1 2019-07-27 07:58:37 2 3 2019-07-27 08:23:37 2 1 2019-07-27 08:28:37 2 1 2019-07-27 08:43:37 2 1 2019-07-27 08:48:37 2 4 2019-07-27 08:58:37 2 1 2019-07-27 09:03:37 2 1 2019-07-27 09:18:37 2 3 2019-07-27 09:23:37 2 2 2019-07-27 09:28:37 2 2 2019-07-27 09:48:37 2 3 2019-07-27 09:58:37 2 4 2019-07-27 10:33:37 2 5 2019-07-27 11:08:37 2 3 2019-07-27 11:13:37 2 4 2019-07-27 11:23:37 2 3 2019-07-27 11:28:37 2 4 2019-07-27 11:38:37 2 5 2019-07-27 11:43:37 2 5 2019-07-27 11:53:37 2 5 2019-07-27 11:58:37 2 5 2019-07-27 12:13:38 2 7 2019-07-27 12:23:37 2 6 2019-07-27 12:58:37 2 5 2019-07-27 13:03:37 2 4 2019-07-27 13:18:37 2 6 2019-07-27 13:28:37 2 5 2019-07-27 13:33:37 2 6 2019-07-27 13:38:37 2 6 2019-07-27 13:53:37 2 6 2019-07-27 13:58:37 2 4 2019-07-27 14:03:37 2 4 2019-07-27 14:38:37 2 3 2019-07-27 15:03:37 2 2 2019-07-27 15:18:37 2 3 2019-07-27 15:48:37 2 2 2019-07-27 15:58:37 2 5 2019-07-27 16:03:37 2 4 2019-07-27 16:23:37 2 3 2019-07-27 16:38:37 2 8 2019-07-27 17:03:37 2 5 2019-07-27 17:08:37 2 5 2019-07-27 17:13:37 2 5 2019-07-27 17:23:37 2 6 2019-07-27 17:28:37 2 6 2019-07-27 17:53:37 2 5 2019-07-27 18:08:37 2 4 2019-07-27 18:38:37 2 4 2019-07-27 18:53:37 2 1 2019-07-27 19:18:37 2 3 2019-07-27 19:23:37 2 3 2019-07-27 19:33:37 2 5 2019-07-27 19:38:37 2 5 2019-07-27 19:53:37 2 7 2019-07-27 19:58:37 2 6 2019-07-27 20:08:37 2 5 2019-07-27 20:48:37 2 2 2019-07-27 20:53:37 2 2 2019-07-27 20:58:37 2 2 2019-07-27 21:03:37 2 1 2019-07-27 21:08:37 2 1 2019-07-27 21:13:37 2 1 2019-07-27 21:18:37 2 2 2019-07-27 21:23:37 2 3 2019-07-27 21:33:37 2 2 2019-07-27 21:43:37 2 1 2019-07-27 21:48:37 2 3 2019-07-27 21:53:37 2 3 2019-07-27 22:03:37 2 5 2019-07-27 22:13:37 2 4 2019-07-27 22:23:37 2 6 2019-07-27 22:28:37 2 8 2019-07-27 22:38:37 2 7 2019-07-25 20:43:37 2 7 2019-07-25 20:48:37 2 6 2019-07-25 20:58:37 2 7 2019-07-25 21:03:37 2 4 2019-07-25 21:08:37 2 3 2019-07-25 21:18:37 2 2 2019-07-25 21:23:37 2 1 2019-07-25 21:28:37 2 1 2019-07-25 21:33:37 2 1 2019-07-25 21:38:37 2 3 2019-07-25 21:43:37 2 3 2019-07-25 21:48:37 2 3 2019-07-25 23:03:37 2 5 2019-07-25 23:08:37 2 5 2019-07-25 23:13:37 2 5 2019-07-25 23:28:37 2 6 2019-07-26 00:08:37 2 3 2019-07-26 00:13:37 2 6 2019-07-26 00:18:37 2 6 2019-07-26 00:33:37 2 5 2019-07-26 00:38:37 2 4 2019-07-26 00:43:37 2 5 2019-07-26 00:53:37 2 3 2019-07-26 01:08:37 2 1 2019-07-26 01:13:37 2 1 2019-07-26 01:38:37 2 2 2019-07-26 02:53:37 2 2 2019-07-26 02:58:37 2 2 2019-07-26 03:03:37 2 2 2019-07-26 08:08:37 2 3 2019-07-26 08:38:37 2 3 2019-07-26 08:48:37 2 4 2019-07-26 08:58:37 2 1 2019-07-26 09:18:37 2 1 2019-07-26 09:48:37 2 1 2019-07-26 10:28:37 2 3 2019-07-26 10:43:37 2 4 2019-07-26 10:48:37 2 4 2019-07-26 11:13:37 2 5 2019-07-26 11:18:37 2 6 2019-07-26 11:23:37 2 4 2019-07-26 11:28:37 2 2 2019-07-26 11:33:37 2 3 2019-07-26 12:53:37 2 3 2019-07-26 13:03:37 2 4 2019-07-26 13:53:37 2 2 2019-07-26 14:38:37 2 3 2019-07-26 14:43:37 2 3 2019-07-26 14:48:37 2 4 2019-07-26 15:38:37 2 6 2019-07-26 16:18:37 2 4 2019-07-26 16:23:37 2 3 2019-07-26 16:43:37 2 2 2019-07-26 16:58:37 2 4 2019-07-26 17:03:37 2 4 2019-07-26 17:08:37 2 5 2019-07-26 17:13:37 2 2 2019-07-26 17:28:38 2 2 2019-07-26 17:33:37 2 2 2019-07-26 17:38:37 2 2 2019-07-26 18:08:37 2 2 2019-07-26 18:13:37 2 2 2019-07-26 18:43:37 2 2 2019-07-26 18:58:37 2 1 2019-07-26 19:23:37 2 1 2019-07-26 19:38:37 2 2 2019-07-26 19:48:37 2 3 2019-07-26 19:53:37 2 3 2019-07-26 19:58:37 2 4 2019-07-26 20:03:37 2 4 2019-07-26 20:23:37 2 3 2019-07-26 20:43:37 2 3 2019-07-26 20:58:37 2 4 2019-07-26 21:03:37 2 1 2019-07-26 21:28:37 2 3 2019-07-26 21:43:37 2 3 2019-07-26 22:18:37 2 2 2019-07-26 22:33:37 2 7 2019-07-26 22:38:37 2 6 2019-07-26 22:48:37 2 5 2019-07-26 23:03:37 2 4 2019-07-26 23:28:37 2 4 2019-07-26 23:53:37 2 6 2019-07-26 23:58:37 2 3 2019-07-27 00:03:37 2 4 2019-07-27 00:13:37 2 3 2019-07-27 00:23:37 2 3 2019-07-27 00:33:37 2 4 2019-07-27 00:38:37 2 4 2019-07-27 00:43:37 2 4 2019-07-27 00:48:37 2 4 2019-07-27 00:58:37 2 4 2019-07-27 01:03:37 2 5 2019-07-27 01:13:37 2 3 2019-07-27 01:18:37 2 3 2019-07-27 01:23:37 2 3 2019-07-27 01:43:37 2 2 2019-07-27 03:18:37 2 3 2019-07-27 03:28:37 2 4 2019-07-27 03:38:37 2 1 2019-07-27 03:48:37 2 2 2019-07-27 03:58:37 2 3 2019-07-27 04:28:37 2 4 2019-07-27 04:33:37 2 4 2019-07-27 04:38:37 2 4 2019-07-27 04:43:37 2 4 2019-07-27 04:48:37 2 4 2019-07-27 04:53:37 2 4 2019-07-27 04:58:37 2 4 2019-07-27 05:03:37 2 4 2019-07-27 05:08:37 2 4 2019-07-27 05:13:38 2 4 2019-07-27 05:18:37 2 4 2019-07-27 05:23:37 2 4 2019-07-27 05:28:37 2 4 2019-07-27 05:53:37 2 3 2019-07-27 07:33:37 2 1 2019-07-27 07:53:37 2 2 2019-07-27 08:08:37 2 2 2019-07-27 08:13:37 2 2 2019-07-27 08:18:37 2 2 2019-07-27 08:38:37 2 2 2019-07-27 08:53:37 2 2 2019-07-27 09:13:37 2 4 2019-07-27 09:38:37 2 3 2019-07-27 09:53:37 2 4 2019-07-27 10:03:37 2 4 2019-07-27 10:23:37 2 5 2019-07-27 10:28:37 2 4 2019-07-27 10:43:37 2 5 2019-07-27 10:58:37 2 3 2019-07-27 11:03:37 2 2 2019-07-27 11:18:37 2 4 2019-07-27 11:33:37 2 4 2019-07-27 12:08:37 2 6 2019-07-27 12:43:37 2 5 2019-07-27 12:53:37 2 6 2019-07-27 13:13:37 2 6 2019-07-27 13:48:37 2 5 2019-07-27 14:08:37 2 4 2019-07-27 14:13:37 2 4 2019-07-27 14:23:37 2 3 2019-07-27 14:33:37 2 3 2019-07-27 14:43:37 2 3 2019-07-27 14:48:37 2 2 2019-07-27 14:58:37 2 4 2019-07-27 15:13:37 2 4 2019-07-27 15:28:37 2 3 2019-07-27 15:43:37 2 3 2019-07-27 16:08:37 2 3 2019-07-27 16:18:37 2 3 2019-07-27 16:33:37 2 4 2019-07-27 16:48:37 2 6 2019-07-27 16:53:37 2 5 2019-07-27 17:18:37 2 7 2019-07-27 17:33:37 2 8 2019-07-27 18:03:37 2 6 2019-07-27 18:23:37 2 2 2019-07-27 18:28:37 2 3 2019-07-27 18:43:37 2 4 2019-07-27 19:48:37 2 6 2019-07-27 20:03:37 2 6 2019-07-27 20:18:37 2 3 2019-07-27 20:23:37 2 6 2019-07-27 20:28:37 2 6 2019-07-27 20:38:37 2 4 2019-07-27 20:43:37 2 3 2019-07-27 21:28:37 2 2 2019-07-27 21:38:37 2 1 2019-07-27 21:58:37 2 5 2019-07-27 22:08:37 2 4 2019-07-27 22:18:37 2 5 2019-07-27 22:33:37 2 8 2019-07-27 22:43:37 2 5 2019-07-27 22:48:37 2 6 2019-07-27 22:53:37 2 5 2019-07-27 22:58:37 2 5 2019-07-27 23:03:37 2 6 2019-07-27 23:08:37 2 4 2019-07-27 23:13:37 2 6 2019-07-27 23:18:37 2 6 2019-07-27 23:23:37 2 6 2019-07-27 23:28:37 2 6 2019-07-27 23:33:37 2 5 2019-07-27 23:38:37 2 4 2019-07-27 23:43:37 2 3 2019-07-27 23:48:37 2 3 2019-07-27 23:53:37 2 3 2019-07-27 23:58:37 2 3 2019-07-28 00:08:37 2 3 2019-07-28 00:13:37 2 6 2019-07-28 01:03:37 2 3 2019-07-28 01:08:37 2 3 2019-07-28 01:13:37 2 3 2019-07-28 01:18:37 2 3 2019-07-28 01:33:37 2 4 2019-07-28 01:38:37 2 4 2019-07-28 01:43:37 2 4 2019-07-28 02:28:37 2 1 2019-07-28 02:33:37 2 1 2019-07-28 02:38:37 2 1 2019-07-28 04:03:37 2 2 2019-07-28 06:28:37 2 1 2019-07-28 06:33:37 2 1 2019-07-28 06:38:37 2 1 2019-07-28 06:43:37 2 1 2019-07-28 07:18:37 2 3 2019-07-28 07:28:37 2 4 2019-07-28 07:48:37 2 2 2019-07-28 07:53:37 2 2 2019-07-28 07:58:37 2 2 2019-07-28 08:03:37 2 4 2019-07-28 08:33:37 2 2 2019-07-28 08:38:37 2 2 2019-07-28 08:43:37 2 2 2019-07-28 09:03:37 2 4 2019-07-28 09:13:37 2 2 2019-07-28 09:18:37 2 4 2019-07-28 09:28:37 2 4 2019-07-28 09:33:37 2 4 2019-07-28 09:43:37 2 4 2019-07-28 09:58:37 2 4 2019-07-28 10:03:37 2 6 2019-07-28 10:18:37 2 6 2019-07-28 10:43:37 2 6 2019-07-28 10:53:37 2 4 2019-07-28 11:13:37 2 4 2019-07-28 11:23:37 2 4 2019-07-28 11:38:37 2 6 2019-07-28 11:43:37 2 6 2019-07-28 12:08:37 2 6 2019-07-28 12:13:37 2 6 2019-07-28 12:18:37 2 6 2019-07-28 12:23:37 2 6 2019-07-28 12:28:37 2 6 2019-07-28 12:38:37 2 4 2019-07-28 12:43:37 2 4 2019-07-28 12:53:37 2 7 2019-07-28 12:58:37 2 5 2019-07-28 13:03:37 2 5 2019-07-28 13:08:37 2 5 2019-07-28 13:23:37 2 7 2019-07-28 13:53:37 2 5 2019-07-28 13:58:37 2 3 2019-07-28 14:03:37 2 5 2019-07-28 14:08:37 2 5 2019-07-28 14:23:37 2 7 2019-07-28 14:33:37 2 7 2019-07-28 14:43:37 2 5 2019-07-28 14:48:37 2 5 2019-07-28 14:58:37 2 1 2019-07-28 15:28:37 2 3 2019-07-28 15:38:37 2 3 2019-07-28 15:53:37 2 3 2019-07-28 16:18:37 2 1 2019-07-28 16:48:37 2 3 2019-07-28 16:53:37 2 3 2019-07-28 17:28:37 2 3 2019-07-28 17:33:37 2 3 2019-07-28 17:43:37 2 3 2019-07-28 17:53:37 2 1 2019-07-28 18:13:37 2 3 2019-07-28 18:18:37 2 3 2019-07-28 18:23:37 2 1 2019-07-28 18:33:37 2 3 2019-07-28 18:38:37 2 3 2019-07-28 18:43:37 2 3 2019-07-28 19:03:37 2 5 2019-07-28 19:33:37 2 1 2019-07-28 19:53:37 2 3 2019-07-28 19:58:37 2 1 2019-07-28 20:03:37 2 1 2019-07-28 20:08:37 2 1 2019-07-28 20:13:37 2 1 2019-07-28 20:28:37 2 2 2019-07-28 20:33:37 2 2 2019-07-28 20:53:37 2 3 2019-07-28 20:58:37 2 5 2019-07-28 21:03:37 2 2 2019-07-28 21:08:37 2 2 2019-07-28 21:28:37 2 2 2019-07-28 21:38:37 2 2 2019-07-28 21:58:37 2 4 2019-07-28 22:03:37 2 2 2019-07-28 22:23:37 2 3 2019-07-28 22:38:37 2 5 2019-07-28 22:48:37 2 3 2019-07-28 22:58:37 2 3 2019-07-28 23:03:37 2 5 2019-07-28 23:08:37 2 3 2019-07-28 23:13:37 2 5 2019-07-28 23:18:37 2 5 2019-07-28 23:28:37 2 5 2019-07-28 23:33:37 2 3 2019-07-28 23:38:37 2 3 2019-07-28 23:48:37 2 3 2019-07-28 23:58:37 2 5 2019-07-29 00:08:37 2 5 2019-07-29 00:13:37 2 3 2019-07-29 00:43:37 2 5 2019-07-29 00:48:37 2 5 2019-07-29 01:13:37 2 3 2019-07-29 01:43:37 2 3 2019-07-29 02:23:37 2 4 2019-07-29 02:28:37 2 4 2019-07-29 02:43:37 2 2 2019-07-29 04:03:37 2 1 2019-07-29 04:13:37 2 1 2019-07-29 04:23:37 2 1 2019-07-29 04:33:37 2 1 2019-07-29 04:43:37 2 1 2019-07-29 04:53:37 2 1 2019-07-29 05:03:37 2 1 2019-07-29 05:13:38 2 1 2019-07-29 05:23:37 2 1 2019-07-29 05:33:37 2 1 2019-07-29 05:43:37 2 1 2019-07-29 05:53:37 2 2 2019-07-29 06:03:37 2 1 2019-07-29 06:13:37 2 1 2019-07-29 06:23:37 2 1 2019-07-29 06:33:37 2 1 2019-07-29 06:43:37 2 1 2019-07-29 06:48:37 2 1 2019-07-29 06:58:37 2 1 2019-07-29 07:08:37 2 1 2019-07-29 07:23:37 2 4 2019-07-29 07:28:37 2 3 2019-07-29 08:08:37 2 2 2019-07-29 08:13:37 2 2 2019-07-29 08:23:37 2 4 2019-07-29 08:38:37 2 2 2019-07-29 08:48:37 2 2 2019-07-29 08:53:37 2 2 2019-07-29 09:23:37 2 6 2019-07-29 09:38:37 2 6 2019-07-29 10:13:37 2 3 2019-07-29 10:18:37 2 4 2019-07-29 10:33:37 2 2 2019-07-29 10:43:37 2 2 2019-07-29 10:53:37 2 3 2019-07-29 11:03:37 2 3 2019-07-29 11:13:37 2 6 2019-07-29 11:23:37 2 4 2019-07-29 11:28:37 2 3 2019-07-29 11:38:37 2 4 2019-07-29 11:48:37 2 5 2019-07-29 11:58:37 2 4 2019-07-29 12:18:37 2 4 2019-07-29 12:23:37 2 4 2019-07-29 12:38:37 2 3 2019-07-29 12:48:37 2 3 2019-07-29 12:53:37 2 2 2019-07-29 12:58:37 2 3 2019-07-29 13:13:37 2 3 2019-07-29 13:18:37 2 2 2019-07-29 13:38:37 2 3 2019-07-29 13:48:37 2 3 2019-07-29 13:53:37 2 3 2019-07-29 14:18:37 2 6 2019-07-29 14:28:37 2 4 2019-07-29 14:38:37 2 5 2019-07-29 14:53:37 2 8 2019-07-29 15:03:37 2 7 2019-07-29 15:13:37 2 6 2019-07-29 15:18:37 2 4 2019-07-29 15:43:37 2 5 2019-07-29 15:53:37 2 4 2019-07-29 16:03:37 2 5 2019-07-29 16:08:37 2 4 2019-07-28 00:03:37 2 3 2019-07-28 00:28:37 2 5 2019-07-28 00:33:37 2 4 2019-07-28 00:38:37 2 4 2019-07-28 00:43:37 2 5 2019-07-28 00:48:37 2 5 2019-07-28 00:58:37 2 4 2019-07-28 01:48:37 2 3 2019-07-28 01:53:37 2 3 2019-07-28 01:58:37 2 3 2019-07-28 02:03:37 2 3 2019-07-28 02:08:37 2 3 2019-07-28 02:13:37 2 3 2019-07-28 04:08:37 2 1 2019-07-28 04:13:37 2 1 2019-07-28 04:18:37 2 1 2019-07-28 04:23:37 2 1 2019-07-28 04:28:37 2 1 2019-07-28 04:33:37 2 1 2019-07-28 04:38:37 2 1 2019-07-28 04:43:37 2 1 2019-07-28 04:48:37 2 1 2019-07-28 04:53:37 2 1 2019-07-28 04:58:37 2 1 2019-07-28 05:03:37 2 1 2019-07-28 05:08:37 2 1 2019-07-28 05:13:37 2 1 2019-07-28 05:18:37 2 1 2019-07-28 05:23:37 2 1 2019-07-28 05:28:37 2 1 2019-07-28 05:33:37 2 1 2019-07-28 05:38:37 2 1 2019-07-28 05:43:37 2 1 2019-07-28 05:48:37 2 1 2019-07-28 05:53:37 2 1 2019-07-28 05:58:37 2 1 2019-07-28 06:03:37 2 1 2019-07-28 06:08:37 2 1 2019-07-28 06:13:37 2 1 2019-07-28 06:48:37 2 2 2019-07-28 06:53:37 2 2 2019-07-28 06:58:37 2 2 2019-07-28 07:23:37 2 4 2019-07-28 07:38:37 2 1 2019-07-28 08:18:37 2 3 2019-07-28 08:28:37 2 3 2019-07-28 08:53:37 2 3 2019-07-28 08:58:37 2 1 2019-07-28 09:08:37 2 5 2019-07-28 09:23:37 2 5 2019-07-28 09:38:37 2 3 2019-07-28 09:48:37 2 3 2019-07-28 10:13:37 2 5 2019-07-28 10:23:37 2 7 2019-07-28 10:28:37 2 5 2019-07-28 10:48:37 2 5 2019-07-28 11:08:37 2 5 2019-07-28 11:28:37 2 3 2019-07-28 11:53:37 2 5 2019-07-28 12:03:37 2 5 2019-07-28 12:33:37 2 5 2019-07-28 13:13:37 2 6 2019-07-28 13:48:37 2 6 2019-07-28 14:18:37 2 8 2019-07-28 15:03:37 2 2 2019-07-28 15:13:37 2 4 2019-07-28 15:23:37 2 4 2019-07-28 15:43:37 2 4 2019-07-28 15:58:37 2 4 2019-07-28 16:03:37 2 2 2019-07-28 16:13:37 2 2 2019-07-28 16:23:37 2 2 2019-07-28 16:33:37 2 2 2019-07-28 16:43:37 2 2 2019-07-28 17:03:37 2 2 2019-07-28 17:13:37 2 2 2019-07-28 17:23:37 2 2 2019-07-28 17:38:37 2 4 2019-07-28 18:08:37 2 4 2019-07-28 18:28:37 2 2 2019-07-28 18:48:37 2 4 2019-07-28 18:58:37 2 4 2019-07-28 19:08:37 2 4 2019-07-28 19:18:37 2 4 2019-07-28 19:23:37 2 2 2019-07-28 19:43:37 2 2 2019-07-28 19:48:37 2 4 2019-07-28 20:23:37 2 2 2019-07-28 20:38:37 2 2 2019-07-28 20:43:37 2 2 2019-07-28 20:48:37 2 2 2019-07-28 21:18:37 2 3 2019-07-28 21:48:37 2 3 2019-07-28 22:08:37 2 2 2019-07-28 22:18:37 2 2 2019-07-28 22:33:37 2 4 2019-07-28 23:23:37 2 4 2019-07-28 23:43:38 2 4 2019-07-29 00:23:37 2 4 2019-07-29 00:33:37 2 4 2019-07-29 00:53:37 2 6 2019-07-29 00:58:37 2 4 2019-07-29 01:08:37 2 4 2019-07-29 01:23:37 2 2 2019-07-29 01:33:37 2 2 2019-07-29 01:48:37 2 4 2019-07-29 01:58:37 2 4 2019-07-29 02:08:37 2 3 2019-07-29 02:18:37 2 3 2019-07-29 02:38:37 2 3 2019-07-29 02:53:37 2 1 2019-07-29 03:03:37 2 1 2019-07-29 03:13:37 2 1 2019-07-29 03:23:37 2 1 2019-07-29 03:33:37 2 1 2019-07-29 03:43:37 2 1 2019-07-29 03:53:37 2 1 2019-07-29 04:08:37 2 1 2019-07-29 04:18:37 2 1 2019-07-29 04:28:37 2 1 2019-07-29 04:38:37 2 1 2019-07-29 04:48:37 2 1 2019-07-29 04:58:37 2 1 2019-07-29 05:08:37 2 1 2019-07-29 05:18:37 2 1 2019-07-29 05:28:37 2 1 2019-07-29 05:38:37 2 1 2019-07-29 05:58:37 2 1 2019-07-29 06:08:37 2 1 2019-07-29 06:18:37 2 1 2019-07-29 06:28:37 2 1 2019-07-29 06:38:37 2 1 2019-07-29 07:53:37 2 1 2019-07-29 08:03:37 2 1 2019-07-29 08:28:37 2 5 2019-07-29 08:33:37 2 5 2019-07-29 09:08:37 2 3 2019-07-29 09:28:37 2 7 2019-07-29 09:33:37 2 5 2019-07-29 09:43:37 2 7 2019-07-29 09:48:37 2 5 2019-07-29 09:58:37 2 4 2019-07-29 10:28:37 2 2 2019-07-29 10:38:37 2 2 2019-07-29 11:18:37 2 4 2019-07-29 11:53:37 2 4 2019-07-29 12:13:37 2 4 2019-07-29 12:28:37 2 4 2019-07-29 12:33:37 2 2 2019-07-29 13:33:37 2 6 2019-07-29 14:03:37 2 6 2019-07-29 14:23:37 2 4 2019-07-29 14:48:37 2 6 2019-07-29 14:58:37 2 10 2019-07-29 15:23:37 2 4 2019-07-29 15:33:37 2 6 2019-07-29 16:13:37 2 5 2019-07-29 16:18:37 2 3 2019-07-29 16:28:37 2 3 2019-07-29 16:33:37 2 5 2019-07-29 16:38:37 2 5 2019-07-29 16:58:37 2 3 2019-07-29 17:03:37 2 3 2019-07-29 17:08:37 2 5 2019-07-29 17:13:37 2 5 2019-07-29 17:28:37 2 3 2019-07-29 17:33:37 2 3 2019-07-29 17:38:37 2 3 2019-07-29 17:53:37 2 5 2019-07-29 18:13:37 2 9 2019-07-29 18:28:37 2 5 2019-07-29 18:33:37 2 5 2019-07-29 18:38:37 2 5 2019-07-29 18:43:37 2 5 2019-07-29 18:48:37 2 5 2019-07-29 18:58:37 2 5 2019-07-29 19:13:37 2 5 2019-07-29 19:18:37 2 6 2019-07-29 19:28:37 2 4 2019-07-29 19:33:37 2 4 2019-07-29 19:48:37 2 5 2019-07-29 19:58:37 2 5 2019-07-29 20:08:37 2 5 2019-07-29 20:23:37 2 3 2019-07-29 20:33:37 2 5 2019-07-28 00:18:37 2 4 2019-07-28 00:23:37 2 5 2019-07-28 00:53:37 2 4 2019-07-28 01:23:37 2 3 2019-07-28 01:28:37 2 3 2019-07-28 02:18:37 2 2 2019-07-28 02:23:37 2 2 2019-07-28 03:48:37 2 1 2019-07-28 03:53:37 2 1 2019-07-28 03:58:37 2 1 2019-07-28 07:03:37 2 1 2019-07-28 07:13:37 2 2 2019-07-28 07:33:37 2 4 2019-07-28 07:43:37 2 3 2019-07-28 08:08:37 2 5 2019-07-28 08:13:37 2 3 2019-07-28 08:23:37 2 3 2019-07-28 08:48:37 2 1 2019-07-28 09:53:37 2 5 2019-07-28 10:08:37 2 5 2019-07-28 10:33:37 2 7 2019-07-28 10:38:37 2 5 2019-07-28 10:58:37 2 5 2019-07-28 11:03:37 2 5 2019-07-28 11:18:37 2 5 2019-07-28 11:33:37 2 3 2019-07-28 11:48:37 2 5 2019-07-28 11:58:37 2 5 2019-07-28 12:48:37 2 6 2019-07-28 13:18:37 2 6 2019-07-28 13:28:37 2 8 2019-07-28 13:33:37 2 10 2019-07-28 13:38:37 2 8 2019-07-28 13:43:37 2 6 2019-07-28 14:13:37 2 8 2019-07-28 14:28:37 2 6 2019-07-28 14:38:37 2 6 2019-07-28 15:08:37 2 4 2019-07-28 15:18:37 2 4 2019-07-28 15:33:37 2 2 2019-07-28 15:48:37 2 2 2019-07-28 16:08:37 2 2 2019-07-28 16:28:37 2 2 2019-07-28 16:38:37 2 2 2019-07-28 16:58:37 2 2 2019-07-28 17:08:37 2 2 2019-07-28 17:18:37 2 2 2019-07-28 17:48:37 2 2 2019-07-28 17:58:37 2 2 2019-07-28 18:03:37 2 4 2019-07-28 18:53:37 2 4 2019-07-28 19:13:37 2 4 2019-07-28 19:28:37 2 2 2019-07-28 19:38:37 2 2 2019-07-28 20:18:37 2 2 2019-07-28 21:13:37 2 3 2019-07-28 21:23:37 2 3 2019-07-28 21:33:37 2 3 2019-07-28 21:43:37 2 3 2019-07-28 21:53:37 2 3 2019-07-28 22:13:37 2 2 2019-07-28 22:28:37 2 4 2019-07-28 22:43:37 2 4 2019-07-28 22:53:37 2 4 2019-07-28 23:53:37 2 2 2019-07-29 00:03:37 2 6 2019-07-29 00:18:37 2 4 2019-07-29 00:28:37 2 4 2019-07-29 00:38:37 2 4 2019-07-29 01:03:37 2 4 2019-07-29 01:18:37 2 2 2019-07-29 01:28:37 2 2 2019-07-29 01:38:37 2 2 2019-07-29 01:53:37 2 4 2019-07-29 02:03:37 2 3 2019-07-29 02:13:37 2 3 2019-07-29 02:33:37 2 3 2019-07-29 02:48:37 2 1 2019-07-29 02:58:37 2 1 2019-07-29 03:08:37 2 1 2019-07-29 03:18:37 2 1 2019-07-29 03:28:37 2 1 2019-07-29 03:38:37 2 1 2019-07-29 03:48:37 2 1 2019-07-29 03:58:37 2 1 2019-07-29 05:48:37 2 2 2019-07-29 06:53:37 2 1 2019-07-29 07:03:37 2 1 2019-07-29 07:13:37 2 1 2019-07-29 07:18:38 2 3 2019-07-29 07:33:37 2 3 2019-07-29 07:58:37 2 1 2019-07-29 08:18:37 2 3 2019-07-29 08:43:37 2 3 2019-07-29 08:58:37 2 3 2019-07-29 09:03:37 2 1 2019-07-29 09:13:37 2 7 2019-07-29 09:18:37 2 5 2019-07-29 09:53:37 2 5 2019-07-29 10:03:37 2 5 2019-07-29 10:08:37 2 7 2019-07-29 10:23:37 2 5 2019-07-29 10:48:37 2 3 2019-07-29 10:58:37 2 3 2019-07-29 11:08:37 2 5 2019-07-29 11:33:37 2 5 2019-07-29 11:43:37 2 5 2019-07-29 12:03:37 2 3 2019-07-29 12:08:37 2 3 2019-07-29 12:43:37 2 3 2019-07-29 13:03:37 2 4 2019-07-29 13:08:37 2 4 2019-07-29 13:23:37 2 4 2019-07-29 13:28:37 2 6 2019-07-29 13:43:37 2 3 2019-07-29 13:58:37 2 5 2019-07-29 14:08:37 2 5 2019-07-29 14:13:37 2 5 2019-07-29 14:33:37 2 5 2019-07-29 14:43:37 2 5 2019-07-29 15:08:37 2 7 2019-07-29 15:28:37 2 5 2019-07-29 15:38:37 2 5 2019-07-29 15:48:37 2 5 2019-07-29 15:58:37 2 5 2019-07-29 16:23:37 2 2 2019-07-29 16:43:37 2 4 2019-07-29 16:48:37 2 4 2019-07-29 16:53:37 2 4 2019-07-29 17:18:37 2 4 2019-07-29 17:23:37 2 4 2019-07-29 17:43:37 2 4 2019-07-29 17:48:37 2 6 2019-07-29 17:58:37 2 6 2019-07-29 18:03:37 2 6 2019-07-29 18:08:37 2 8 2019-07-29 18:18:37 2 8 2019-07-29 18:23:37 2 6 2019-07-29 18:53:37 2 6 2019-07-29 19:03:37 2 4 2019-07-29 19:08:37 2 4 2019-07-29 19:23:37 2 7 2019-07-29 19:38:37 2 5 2019-07-29 19:43:37 2 5 2019-07-29 19:53:37 2 5 2019-07-29 20:03:37 2 4 2019-07-29 20:13:37 2 4 2019-07-29 20:18:37 2 4 2019-07-29 20:28:37 2 4 2019-07-29 20:38:37 2 5 2019-07-29 20:43:37 2 4 2019-07-29 20:48:37 2 4 2019-07-29 20:53:37 2 5 2019-07-29 20:58:37 2 6 2019-07-29 21:03:37 2 6 2019-07-29 21:08:37 2 6 2019-07-29 21:13:37 2 4 2019-07-29 21:18:37 2 4 2019-07-29 21:23:37 2 4 2019-07-29 21:28:37 2 5 2019-07-29 21:33:37 2 6 2019-07-29 21:38:37 2 4 2019-07-29 21:43:37 2 3 2019-07-29 21:48:37 2 3 2019-07-29 21:53:37 2 5 2019-07-29 21:58:37 2 4 2019-07-29 22:03:37 2 3 2019-07-29 22:08:37 2 4 2019-07-29 22:13:37 2 6 2019-07-29 22:18:37 2 8 2019-07-29 22:23:37 2 6 2019-07-29 22:28:37 2 7 2019-07-29 22:33:38 2 8 2019-07-29 22:38:37 2 8 2019-07-29 22:43:37 2 8 2019-07-29 22:48:37 2 7 2019-07-29 22:53:37 2 6 2019-07-29 22:58:37 2 5 2019-07-29 23:03:37 2 7 2019-07-29 23:08:37 2 6 2019-07-29 23:13:38 2 6 2019-07-29 23:18:37 2 4 2019-07-29 23:23:37 2 4 2019-07-29 23:28:37 2 3 2019-07-29 23:33:37 2 5 2019-07-29 23:38:37 2 5 2019-07-29 23:43:37 2 5 2019-07-29 23:48:37 2 3 2019-07-29 23:58:37 2 3 2019-07-30 00:33:37 2 5 2019-07-30 00:43:37 2 6 2019-07-30 00:48:37 2 4 2019-07-30 01:03:37 2 4 2019-07-30 01:13:37 2 2 2019-07-30 01:48:37 2 2 2019-07-30 01:58:37 2 2 2019-07-30 02:28:37 2 4 2019-07-30 02:53:37 2 2 2019-07-30 03:08:37 2 4 2019-07-30 03:33:37 2 2 2019-07-30 04:03:37 2 3 2019-07-30 04:13:37 2 3 2019-07-30 04:23:37 2 3 2019-07-30 04:33:37 2 3 2019-07-30 04:43:37 2 3 2019-07-30 04:53:37 2 3 2019-07-30 05:03:37 2 3 2019-07-30 05:13:37 2 3 2019-07-30 05:23:37 2 3 2019-07-30 06:43:37 2 2 2019-07-30 06:53:37 2 2 2019-07-30 07:28:37 2 4 2019-07-30 07:33:37 2 4 2019-07-30 07:58:37 2 2 2019-07-30 08:08:37 2 2 2019-07-30 08:18:37 2 2 2019-07-30 08:28:37 2 2 2019-07-30 08:48:37 2 1 2019-07-30 09:33:37 2 3 2019-07-30 09:43:37 2 3 2019-07-30 10:33:37 2 1 2019-07-30 10:48:37 2 2 2019-07-30 11:23:37 2 4 2019-07-30 11:28:37 2 2 2019-07-30 11:43:37 2 4 2019-07-30 12:03:37 2 4 2019-07-30 12:33:37 2 6 2019-07-30 12:43:37 2 6 2019-07-30 13:03:37 2 10 2019-07-30 13:23:37 2 6 2019-07-30 13:33:37 2 6 2019-07-30 13:53:37 2 8 2019-07-30 14:13:37 2 6 2019-07-30 14:43:37 2 6 2019-07-30 14:53:37 2 8 2019-07-30 15:03:37 2 10 2019-07-30 15:08:37 2 10 2019-07-30 15:13:38 2 10 2019-07-30 15:53:37 2 6 2019-07-30 16:23:37 2 6 2019-07-30 16:43:37 2 4 2019-07-30 17:18:37 2 6 2019-07-30 18:38:37 2 6 2019-07-30 18:48:37 2 6 2019-07-30 18:58:37 2 6 2019-07-30 19:13:37 2 4 2019-07-30 19:18:37 2 4 2019-07-30 19:38:37 2 4 2019-07-30 20:03:37 2 6 2019-07-30 20:28:37 2 4 2019-07-30 21:13:37 2 6 2019-07-30 21:18:37 2 4 2019-07-30 21:23:37 2 6 2019-07-30 22:13:37 2 4 2019-07-30 22:28:37 2 6 2019-07-30 22:33:37 2 8 2019-07-30 22:43:37 2 8 2019-07-30 23:13:37 2 5 2019-07-30 23:18:37 2 5 2019-07-30 23:28:37 2 5 2019-07-30 23:33:37 2 7 2019-07-30 23:53:37 2 5 2019-07-31 00:13:37 2 3 2019-07-31 00:18:37 2 5 2019-07-31 00:23:37 2 5 2019-07-31 00:43:37 2 3 2019-07-31 02:23:37 2 5 2019-07-31 03:48:37 2 1 2019-07-31 03:58:37 2 1 2019-07-31 04:03:37 2 1 2019-07-31 04:13:37 2 1 2019-07-31 04:23:37 2 1 2019-07-31 04:33:37 2 1 2019-07-31 04:43:37 2 1 2019-07-31 04:53:37 2 1 2019-07-31 05:03:37 2 1 2019-07-31 05:13:37 2 1 2019-07-31 05:23:37 2 1 2019-07-31 05:33:37 2 1 2019-07-31 06:08:37 2 3 2019-07-31 07:03:37 2 1 2019-07-31 07:18:37 2 3 2019-07-31 08:43:37 2 1 2019-07-31 09:03:37 2 1 2019-07-31 09:08:37 2 3 2019-07-31 09:48:37 2 4 2019-07-31 09:58:37 2 4 2019-07-31 10:03:37 2 4 2019-07-31 10:13:37 2 2 2019-07-31 10:23:37 2 2 2019-07-31 11:08:37 2 3 2019-07-31 11:13:37 2 5 2019-07-31 11:43:37 2 3 2019-07-31 11:53:37 2 3 2019-07-31 12:23:37 2 3 2019-07-31 12:43:37 2 4 2019-07-31 12:53:37 2 4 2019-07-31 13:23:37 2 6 2019-07-31 13:28:37 2 4 2019-07-31 13:38:37 2 4 2019-07-31 14:33:37 2 4 2019-07-31 14:43:37 2 4 2019-07-31 15:03:37 2 4 2019-07-31 15:08:37 2 2 2019-07-31 15:28:37 2 2 2019-07-31 15:38:37 2 2 2019-07-31 15:43:37 2 4 2019-07-31 15:58:37 2 6 2019-07-31 16:03:37 2 4 2019-07-31 16:23:37 2 4 2019-07-31 16:38:37 2 6 2019-07-31 16:58:37 2 6 2019-07-31 17:28:37 2 3 2019-07-31 17:38:37 2 3 2019-07-31 18:28:37 2 5 2019-07-31 18:48:37 2 7 2019-07-31 19:03:37 2 5 2019-07-31 19:13:37 2 6 2019-07-31 19:18:37 2 8 2019-07-31 19:38:37 2 4 2019-07-31 20:03:37 2 4 2019-07-31 20:13:37 2 5 2019-07-31 20:33:37 2 5 2019-07-31 21:23:37 2 5 2019-07-31 21:28:37 2 5 2019-07-31 21:53:37 2 7 2019-07-31 22:03:37 2 7 2019-07-31 22:48:37 2 5 2019-07-31 22:53:37 2 5 2019-07-31 23:23:37 2 7 2019-07-31 23:58:37 2 5 2019-08-01 00:03:37 2 5 2019-08-01 00:13:37 2 5 2019-08-01 00:18:37 2 5 2019-08-01 00:38:37 2 1 2019-08-01 00:53:37 2 3 2019-08-01 01:48:37 2 3 2019-08-01 02:23:37 2 1 2019-08-01 03:03:37 2 1 2019-08-01 03:13:37 2 1 2019-08-01 03:53:37 2 1 2019-08-01 04:03:37 2 1 2019-08-01 04:23:37 2 1 2019-08-01 08:33:37 2 2 2019-08-01 09:08:37 2 2 2019-08-01 09:18:37 2 4 2019-08-01 09:58:37 2 4 2019-08-01 10:18:37 2 2 2019-08-01 10:43:37 2 2 2019-08-01 11:23:37 2 6 2019-08-01 11:38:37 2 8 2019-08-01 12:03:37 2 6 2019-08-01 12:28:37 2 6 2019-08-01 12:48:37 2 8 2019-08-01 12:58:37 2 8 2019-08-01 13:13:37 2 8 2019-08-01 13:18:37 2 6 2019-08-01 13:23:37 2 6 2019-08-01 14:03:37 2 10 2019-08-01 14:23:37 2 7 2019-08-01 14:33:37 2 7 2019-08-01 14:38:37 2 9 2019-08-01 15:03:38 2 5 2019-08-01 15:23:37 2 7 2019-08-01 15:28:37 2 5 2019-08-01 16:08:37 2 5 2019-08-01 16:13:37 2 5 2019-08-01 16:23:37 2 5 2019-08-01 16:28:37 2 5 2019-08-01 16:33:37 2 5 2019-07-29 23:53:37 2 3 2019-07-30 00:23:37 2 7 2019-07-30 00:38:37 2 5 2019-07-30 01:18:37 2 2 2019-07-30 01:53:37 2 2 2019-07-30 02:03:37 2 2 2019-07-30 02:23:37 2 4 2019-07-30 02:33:37 2 4 2019-07-30 02:48:37 2 2 2019-07-30 04:08:37 2 3 2019-07-30 04:18:37 2 3 2019-07-30 04:28:37 2 3 2019-07-30 04:38:37 2 3 2019-07-30 04:48:37 2 3 2019-07-30 04:58:37 2 3 2019-07-30 05:08:37 2 3 2019-07-30 05:18:37 2 3 2019-07-30 06:48:37 2 2 2019-07-30 08:13:37 2 2 2019-07-30 08:23:37 2 2 2019-07-30 08:53:37 2 1 2019-07-30 09:38:37 2 3 2019-07-30 09:48:37 2 5 2019-07-30 09:53:37 2 3 2019-07-30 10:13:37 2 3 2019-07-30 10:28:37 2 1 2019-07-30 10:53:37 2 2 2019-07-30 12:08:37 2 8 2019-07-30 12:13:37 2 6 2019-07-30 12:23:37 2 6 2019-07-30 12:38:37 2 6 2019-07-30 12:53:37 2 8 2019-07-30 13:18:37 2 6 2019-07-30 13:48:37 2 6 2019-07-30 14:23:37 2 4 2019-07-30 14:48:37 2 6 2019-07-30 14:58:37 2 8 2019-07-30 15:18:37 2 10 2019-07-30 15:33:37 2 8 2019-07-30 15:38:37 2 6 2019-07-30 16:48:37 2 4 2019-07-30 17:08:37 2 8 2019-07-30 17:58:37 2 4 2019-07-30 18:03:37 2 2 2019-07-30 18:08:37 2 4 2019-07-30 18:13:37 2 4 2019-07-30 18:28:37 2 8 2019-07-30 18:43:37 2 6 2019-07-30 19:08:37 2 4 2019-07-30 19:23:37 2 4 2019-07-30 19:43:37 2 4 2019-07-30 19:58:37 2 6 2019-07-30 20:08:37 2 6 2019-07-30 20:23:37 2 4 2019-07-30 20:33:37 2 4 2019-07-30 20:53:37 2 6 2019-07-30 21:43:37 2 4 2019-07-30 21:53:37 2 4 2019-07-30 22:23:37 2 4 2019-07-30 22:38:37 2 8 2019-07-30 22:53:37 2 8 2019-07-30 23:08:37 2 5 2019-07-30 23:58:37 2 5 2019-07-31 00:03:37 2 5 2019-07-31 00:08:37 2 3 2019-07-31 02:28:37 2 5 2019-07-31 02:33:37 2 5 2019-07-31 03:53:37 2 1 2019-07-31 04:08:37 2 1 2019-07-31 04:18:37 2 1 2019-07-31 04:28:37 2 1 2019-07-31 04:38:37 2 1 2019-07-31 04:48:37 2 1 2019-07-31 04:58:37 2 1 2019-07-31 05:08:37 2 1 2019-07-31 05:18:37 2 1 2019-07-31 05:28:37 2 1 2019-07-31 05:48:37 2 1 2019-07-31 06:03:37 2 3 2019-07-31 06:58:37 2 1 2019-07-31 07:08:37 2 1 2019-07-31 07:23:37 2 3 2019-07-31 07:58:37 2 1 2019-07-31 08:08:37 2 1 2019-07-31 08:58:37 2 1 2019-07-31 09:18:37 2 2 2019-07-31 09:28:37 2 2 2019-07-31 09:33:37 2 2 2019-07-31 09:53:37 2 5 2019-07-31 10:08:37 2 3 2019-07-31 10:33:37 2 3 2019-07-31 10:53:37 2 4 2019-07-31 11:28:37 2 6 2019-07-31 11:58:37 2 4 2019-07-31 12:13:37 2 2 2019-07-31 12:33:37 2 3 2019-07-31 12:48:37 2 5 2019-07-31 12:58:37 2 5 2019-07-31 13:33:37 2 5 2019-07-31 14:03:37 2 3 2019-07-31 14:18:37 2 5 2019-07-31 14:28:37 2 5 2019-07-31 14:38:37 2 5 2019-07-31 14:53:37 2 3 2019-07-31 15:18:37 2 1 2019-07-31 16:08:37 2 5 2019-07-31 16:48:37 2 5 2019-07-31 17:13:37 2 5 2019-07-31 17:18:37 2 3 2019-07-31 17:43:37 2 4 2019-07-31 18:08:37 2 4 2019-07-31 18:18:37 2 4 2019-07-31 18:58:37 2 6 2019-07-31 19:08:37 2 5 2019-07-31 19:28:37 2 7 2019-07-31 19:48:37 2 7 2019-07-31 20:23:37 2 4 2019-07-31 20:43:37 2 4 2019-07-31 21:33:37 2 6 2019-07-31 21:43:37 2 6 2019-07-31 22:08:37 2 8 2019-07-31 22:13:37 2 6 2019-07-31 22:28:37 2 8 2019-07-31 22:33:37 2 6 2019-07-31 23:13:37 2 6 2019-07-31 23:18:37 2 8 2019-07-31 23:53:37 2 6 2019-08-01 00:33:37 2 2 2019-08-01 00:43:37 2 2 2019-08-01 01:08:37 2 4 2019-08-01 01:13:37 2 4 2019-08-01 01:28:37 2 2 2019-08-01 01:38:37 2 2 2019-08-01 01:58:37 2 2 2019-08-01 02:08:37 2 2 2019-08-01 02:28:37 2 2 2019-08-01 02:38:37 2 2 2019-08-01 02:48:37 2 2 2019-08-01 05:48:37 2 1 2019-08-01 05:58:37 2 1 2019-08-01 06:08:37 2 1 2019-08-01 06:38:37 2 1 2019-08-01 09:03:37 2 3 2019-08-01 09:13:37 2 3 2019-08-01 09:23:37 2 3 2019-08-01 09:28:37 2 3 2019-08-01 09:48:37 2 3 2019-08-01 10:13:37 2 3 2019-08-01 10:33:37 2 3 2019-08-01 10:38:37 2 3 2019-08-01 10:48:37 2 3 2019-08-01 11:43:37 2 9 2019-08-01 12:08:37 2 7 2019-08-01 13:33:37 2 5 2019-08-01 13:38:37 2 7 2019-08-01 14:53:37 2 6 2019-08-01 14:58:37 2 6 2019-08-01 15:08:37 2 6 2019-08-01 15:13:37 2 4 2019-08-01 15:33:37 2 6 2019-08-01 15:58:37 2 6 2019-08-01 16:03:37 2 4 2019-08-01 16:18:37 2 4 2019-08-01 16:38:37 2 2 2019-08-01 16:43:37 2 2 2019-08-01 16:48:37 2 2 2019-08-01 16:53:37 2 3 2019-08-01 16:58:37 2 2 2019-08-01 17:03:37 2 2 2019-08-01 17:08:37 2 2 2019-08-01 17:13:37 2 2 2019-08-01 17:18:37 2 1 2019-08-01 17:23:37 2 3 2019-08-01 17:28:37 2 3 2019-08-01 17:33:37 2 1 2019-08-01 17:38:37 2 1 2019-08-01 17:43:37 2 2 2019-08-01 17:48:37 2 2 2019-08-01 17:53:37 2 1 2019-08-01 17:58:37 2 2 2019-08-01 18:03:37 2 2 2019-08-01 18:08:37 2 2 2019-08-01 18:13:37 2 4 2019-08-01 18:18:37 2 5 2019-08-01 18:23:37 2 5 2019-07-30 00:03:37 2 3 2019-07-30 00:28:37 2 6 2019-07-30 00:58:37 2 3 2019-07-30 01:23:37 2 1 2019-07-30 01:33:37 2 1 2019-07-30 01:43:37 2 1 2019-07-30 02:08:37 2 3 2019-07-30 02:18:37 2 3 2019-07-30 02:38:37 2 3 2019-07-30 03:18:37 2 3 2019-07-30 03:28:37 2 3 2019-07-30 03:38:37 2 3 2019-07-30 03:48:37 2 3 2019-07-30 03:58:37 2 3 2019-07-30 05:28:37 2 3 2019-07-30 05:38:37 2 3 2019-07-30 05:48:37 2 3 2019-07-30 05:58:37 2 3 2019-07-30 06:08:37 2 3 2019-07-30 06:18:37 2 3 2019-07-30 06:28:37 2 3 2019-07-30 06:38:37 2 3 2019-07-30 06:58:37 2 3 2019-07-30 07:08:37 2 3 2019-07-30 07:18:37 2 3 2019-07-30 07:43:37 2 1 2019-07-30 07:53:37 2 3 2019-07-30 08:38:37 2 2 2019-07-30 09:18:37 2 2 2019-07-30 09:28:37 2 2 2019-07-30 10:08:37 2 2 2019-07-30 10:23:37 2 2 2019-07-30 10:38:37 2 2 2019-07-30 11:03:37 2 1 2019-07-30 11:13:37 2 1 2019-07-30 11:18:37 2 3 2019-07-30 11:33:37 2 1 2019-07-30 11:38:37 2 3 2019-07-30 11:48:37 2 3 2019-07-30 11:58:37 2 3 2019-07-30 12:58:37 2 9 2019-07-30 13:08:37 2 9 2019-07-30 13:13:37 2 7 2019-07-30 13:28:37 2 5 2019-07-30 13:43:37 2 7 2019-07-30 13:58:37 2 7 2019-07-30 14:03:37 2 5 2019-07-30 14:08:37 2 7 2019-07-30 14:33:37 2 5 2019-07-30 15:23:37 2 9 2019-07-30 15:28:37 2 9 2019-07-30 15:43:37 2 7 2019-07-30 15:58:37 2 5 2019-07-30 16:08:37 2 5 2019-07-30 16:18:37 2 5 2019-07-30 16:28:37 2 5 2019-07-30 16:33:37 2 5 2019-07-30 16:53:37 2 5 2019-07-30 17:03:37 2 7 2019-07-30 17:23:37 2 5 2019-07-30 17:33:37 2 5 2019-07-30 17:43:37 2 5 2019-07-30 17:53:37 2 5 2019-07-30 18:23:37 2 5 2019-07-30 18:53:37 2 5 2019-07-30 19:03:37 2 5 2019-07-30 19:28:37 2 5 2019-07-30 19:48:37 2 5 2019-07-30 20:18:37 2 5 2019-07-30 20:38:37 2 5 2019-07-30 20:43:37 2 5 2019-07-30 21:03:37 2 5 2019-07-30 21:33:37 2 3 2019-07-30 21:48:37 2 5 2019-07-30 21:58:37 2 5 2019-07-30 22:03:37 2 7 2019-07-30 22:08:37 2 5 2019-07-30 22:18:37 2 3 2019-07-30 22:48:37 2 7 2019-07-30 23:03:37 2 6 2019-07-30 23:38:37 2 8 2019-07-30 23:43:37 2 6 2019-07-31 00:28:37 2 4 2019-07-31 00:38:37 2 6 2019-07-31 00:53:37 2 4 2019-07-31 01:03:37 2 4 2019-07-31 01:13:38 2 4 2019-07-31 01:23:37 2 4 2019-07-31 01:33:37 2 4 2019-07-31 01:43:37 2 4 2019-07-31 01:53:37 2 4 2019-07-31 02:03:37 2 4 2019-07-31 02:13:37 2 4 2019-07-31 02:43:37 2 4 2019-07-31 02:58:37 2 2 2019-07-31 03:08:37 2 2 2019-07-31 03:18:37 2 2 2019-07-31 03:28:37 2 2 2019-07-31 03:38:37 2 2 2019-07-31 05:38:37 2 2 2019-07-31 05:58:37 2 2 2019-07-31 06:18:37 2 2 2019-07-31 06:28:37 2 2 2019-07-31 06:38:37 2 2 2019-07-31 06:48:37 2 2 2019-07-31 07:28:37 2 2 2019-07-31 07:53:37 2 1 2019-07-31 08:03:37 2 1 2019-07-31 08:48:37 2 1 2019-07-31 09:23:37 2 2 2019-07-31 09:38:37 2 2 2019-07-31 10:28:37 2 3 2019-07-31 10:48:37 2 2 2019-07-31 11:18:37 2 4 2019-07-31 11:23:37 2 6 2019-07-31 12:03:37 2 4 2019-07-31 13:03:37 2 5 2019-07-31 13:18:37 2 5 2019-07-31 13:43:37 2 5 2019-07-31 13:48:37 2 3 2019-07-31 13:53:37 2 5 2019-07-31 14:13:37 2 5 2019-07-31 15:48:37 2 5 2019-07-31 15:53:37 2 5 2019-07-31 16:13:37 2 5 2019-07-31 16:43:37 2 5 2019-07-31 16:53:37 2 5 2019-07-31 17:03:37 2 5 2019-07-31 17:08:37 2 5 2019-07-31 17:53:37 2 6 2019-07-31 18:13:37 2 4 2019-07-31 18:23:37 2 4 2019-07-31 18:33:37 2 6 2019-07-31 18:38:37 2 4 2019-07-31 18:43:37 2 6 2019-07-31 19:23:37 2 7 2019-07-31 19:53:37 2 9 2019-07-31 20:28:37 2 4 2019-07-31 20:38:37 2 4 2019-07-31 20:48:37 2 4 2019-07-31 20:58:37 2 4 2019-07-31 21:18:37 2 4 2019-07-31 21:38:37 2 6 2019-07-31 22:23:37 2 8 2019-07-31 22:38:37 2 6 2019-07-31 23:28:37 2 6 2019-07-31 23:33:37 2 6 2019-07-31 23:43:37 2 6 2019-08-01 00:08:37 2 4 2019-08-01 00:48:37 2 2 2019-08-01 01:18:37 2 4 2019-08-01 01:23:37 2 2 2019-08-01 01:33:37 2 2 2019-08-01 01:53:37 2 2 2019-08-01 02:03:37 2 2 2019-08-01 02:13:37 2 2 2019-08-01 02:33:37 2 2 2019-08-01 02:43:37 2 2 2019-08-01 02:53:37 2 2 2019-08-01 05:53:37 2 1 2019-08-01 06:03:37 2 1 2019-08-01 06:43:37 2 1 2019-08-01 08:23:37 2 1 2019-08-01 09:33:37 2 3 2019-08-01 09:38:37 2 3 2019-08-01 09:53:37 2 3 2019-08-01 10:23:37 2 3 2019-08-01 10:53:37 2 3 2019-08-01 10:58:37 2 3 2019-08-01 11:03:37 2 5 2019-08-01 11:08:37 2 5 2019-08-01 11:18:37 2 4 2019-08-01 11:33:37 2 7 2019-08-01 12:13:37 2 9 2019-08-01 12:53:37 2 7 2019-08-01 13:08:37 2 11 2019-08-01 13:48:37 2 9 2019-08-01 14:08:37 2 11 2019-08-01 14:13:37 2 9 2019-08-01 14:18:37 2 8 2019-08-01 14:28:37 2 6 2019-08-01 14:43:37 2 8 2019-08-01 15:38:37 2 6 2019-08-01 15:48:37 2 6 2019-08-01 15:53:37 2 6 2019-07-30 00:08:37 2 4 2019-07-30 00:13:37 2 6 2019-07-30 00:18:37 2 6 2019-07-30 00:53:37 2 3 2019-07-30 01:08:37 2 3 2019-07-30 01:28:37 2 1 2019-07-30 01:38:37 2 1 2019-07-30 02:13:37 2 3 2019-07-30 02:43:37 2 3 2019-07-30 02:58:37 2 3 2019-07-30 03:03:37 2 3 2019-07-30 03:13:37 2 3 2019-07-30 03:23:37 2 3 2019-07-30 03:43:37 2 3 2019-07-30 03:53:37 2 3 2019-07-30 05:33:37 2 3 2019-07-30 05:43:37 2 3 2019-07-30 05:53:37 2 3 2019-07-30 06:03:37 2 3 2019-07-30 06:13:37 2 3 2019-07-30 06:23:37 2 3 2019-07-30 06:33:37 2 3 2019-07-30 07:03:37 2 3 2019-07-30 07:13:37 2 3 2019-07-30 07:23:37 2 3 2019-07-30 07:38:37 2 1 2019-07-30 07:48:37 2 1 2019-07-30 08:03:37 2 3 2019-07-30 08:33:37 2 2 2019-07-30 08:43:37 2 2 2019-07-30 09:23:37 2 2 2019-07-30 09:58:37 2 4 2019-07-30 10:03:37 2 2 2019-07-30 10:18:37 2 2 2019-07-30 10:43:37 2 3 2019-07-30 10:58:37 2 1 2019-07-30 11:08:37 2 1 2019-07-30 11:53:37 2 3 2019-07-30 12:18:37 2 5 2019-07-30 12:28:37 2 7 2019-07-30 12:48:37 2 7 2019-07-30 13:38:37 2 7 2019-07-30 14:18:37 2 5 2019-07-30 14:28:37 2 7 2019-07-30 14:38:37 2 7 2019-07-30 15:48:37 2 7 2019-07-30 16:03:37 2 5 2019-07-30 16:13:37 2 5 2019-07-30 16:38:37 2 5 2019-07-30 16:58:37 2 5 2019-07-30 17:13:37 2 7 2019-07-30 17:28:37 2 5 2019-07-30 17:38:37 2 5 2019-07-30 17:48:37 2 5 2019-07-30 18:18:37 2 5 2019-07-30 18:33:37 2 7 2019-07-30 19:33:37 2 5 2019-07-30 19:53:37 2 5 2019-07-30 20:13:37 2 5 2019-07-30 20:48:37 2 5 2019-07-30 20:58:37 2 5 2019-07-30 21:08:37 2 7 2019-07-30 21:28:37 2 7 2019-07-30 21:38:37 2 3 2019-07-30 22:58:37 2 6 2019-07-30 23:23:37 2 6 2019-07-30 23:48:37 2 6 2019-07-31 00:33:37 2 6 2019-07-31 00:48:37 2 4 2019-07-31 00:58:37 2 4 2019-07-31 01:08:37 2 4 2019-07-31 01:18:37 2 4 2019-07-31 01:28:37 2 4 2019-07-31 01:38:37 2 4 2019-07-31 01:48:37 2 4 2019-07-31 01:58:37 2 4 2019-07-31 02:08:37 2 4 2019-07-31 02:18:37 2 4 2019-07-31 02:38:37 2 4 2019-07-31 02:48:37 2 4 2019-07-31 02:53:37 2 2 2019-07-31 03:03:37 2 2 2019-07-31 03:13:37 2 2 2019-07-31 03:23:37 2 2 2019-07-31 03:33:37 2 2 2019-07-31 03:43:37 2 2 2019-07-31 05:43:37 2 2 2019-07-31 05:53:37 2 2 2019-07-31 06:13:37 2 2 2019-07-31 06:23:37 2 2 2019-07-31 06:33:37 2 2 2019-07-31 06:43:37 2 2 2019-07-31 06:53:37 2 2 2019-07-31 07:13:37 2 2 2019-07-31 07:33:37 2 2 2019-07-31 08:33:37 2 1 2019-07-31 08:38:37 2 1 2019-07-31 08:53:37 2 1 2019-07-31 09:13:37 2 3 2019-07-31 09:43:37 2 4 2019-07-31 10:18:37 2 2 2019-07-31 10:38:37 2 4 2019-07-31 10:43:38 2 4 2019-07-31 10:58:37 2 5 2019-07-31 11:03:37 2 3 2019-07-31 11:33:37 2 3 2019-07-31 11:38:37 2 3 2019-07-31 11:48:37 2 3 2019-07-31 12:08:37 2 3 2019-07-31 12:18:37 2 3 2019-07-31 12:28:37 2 2 2019-07-31 12:38:37 2 4 2019-07-31 13:08:37 2 6 2019-07-31 13:13:37 2 4 2019-07-31 13:58:37 2 4 2019-07-31 14:08:37 2 4 2019-07-31 14:23:37 2 6 2019-07-31 14:48:37 2 4 2019-07-31 14:58:37 2 4 2019-07-31 15:13:37 2 2 2019-07-31 15:23:37 2 2 2019-07-31 15:33:37 2 2 2019-07-31 16:18:37 2 4 2019-07-31 16:28:37 2 4 2019-07-31 16:33:37 2 4 2019-07-31 17:23:37 2 3 2019-07-31 17:33:37 2 3 2019-07-31 17:48:37 2 5 2019-07-31 17:58:37 2 5 2019-07-31 18:03:37 2 5 2019-07-31 18:53:37 2 7 2019-07-31 19:33:37 2 6 2019-07-31 19:43:37 2 4 2019-07-31 19:58:37 2 8 2019-07-31 20:08:37 2 4 2019-07-31 20:18:37 2 5 2019-07-31 20:53:37 2 3 2019-07-31 21:03:37 2 3 2019-07-31 21:08:37 2 5 2019-07-31 21:13:37 2 3 2019-07-31 21:48:37 2 7 2019-07-31 21:58:37 2 7 2019-07-31 22:18:37 2 7 2019-07-31 22:43:37 2 5 2019-07-31 22:58:37 2 7 2019-07-31 23:03:37 2 5 2019-07-31 23:08:37 2 7 2019-07-31 23:38:37 2 5 2019-07-31 23:48:37 2 7 2019-08-01 00:23:37 2 5 2019-08-01 00:28:37 2 3 2019-08-01 00:58:37 2 3 2019-08-01 01:03:37 2 5 2019-08-01 01:43:37 2 3 2019-08-01 02:18:37 2 1 2019-08-01 02:58:37 2 1 2019-08-01 03:08:37 2 1 2019-08-01 03:18:37 2 1 2019-08-01 03:58:37 2 1 2019-08-01 08:28:37 2 2 2019-08-01 08:48:37 2 2 2019-08-01 08:53:37 2 4 2019-08-01 08:58:37 2 2 2019-08-01 09:43:37 2 2 2019-08-01 10:03:37 2 4 2019-08-01 10:08:37 2 4 2019-08-01 10:28:37 2 4 2019-08-01 11:13:37 2 4 2019-08-01 11:28:37 2 6 2019-08-01 11:48:37 2 10 2019-08-01 11:53:37 2 8 2019-08-01 11:58:37 2 6 2019-08-01 12:18:37 2 8 2019-08-01 12:23:37 2 6 2019-08-01 12:33:37 2 6 2019-08-01 12:38:37 2 8 2019-08-01 12:43:37 2 8 2019-08-01 13:03:37 2 10 2019-08-01 13:28:37 2 6 2019-08-01 13:43:37 2 8 2019-08-01 13:53:37 2 10 2019-08-01 13:58:37 2 10 2019-08-01 14:48:37 2 7 2019-08-01 15:18:37 2 7 2019-08-01 15:43:37 2 5 2019-08-01 18:28:37 2 8 2019-08-01 18:43:37 2 8 2019-08-01 18:58:37 2 6 2019-08-01 19:13:37 2 8 2019-08-01 19:18:37 2 6 2019-08-01 19:28:37 2 4 2019-08-01 19:43:37 2 6 2019-08-01 19:53:37 2 7 2019-08-01 20:03:37 1 1 2019-08-01 20:03:37 2 6 2019-08-01 20:18:37 1 1 2019-08-01 20:18:37 2 4 2019-08-01 20:33:37 1 1 2019-08-01 20:33:37 2 6 2019-08-01 20:43:37 1 1 2019-08-01 20:43:37 2 6 2019-08-01 20:53:37 1 1 2019-08-01 20:53:37 2 6 2019-08-01 21:03:37 1 1 2019-08-01 21:03:37 2 6 2019-08-01 21:18:37 1 1 2019-08-01 21:18:37 2 6 2019-08-01 21:28:37 2 7 2019-08-01 21:58:37 2 5 2019-08-01 23:08:37 2 6 2019-08-01 23:18:37 2 6 2019-08-01 23:43:37 2 8 2019-08-02 00:18:37 2 6 2019-08-02 00:53:37 2 4 2019-08-02 01:43:37 2 4 2019-08-02 01:53:37 2 4 2019-08-02 02:38:37 2 4 2019-08-02 03:33:37 2 2 2019-08-02 03:53:37 2 2 2019-08-02 04:03:37 2 2 2019-08-02 04:13:37 2 2 2019-08-02 05:03:37 2 2 2019-08-02 05:13:37 2 2 2019-08-02 05:23:37 2 2 2019-08-02 05:43:37 2 2 2019-08-02 06:23:37 2 1 2019-08-02 06:33:37 2 1 2019-08-02 07:23:37 2 1 2019-08-02 08:28:37 2 3 2019-08-02 08:58:37 2 3 2019-08-02 09:28:37 2 3 2019-08-02 10:28:37 2 3 2019-08-02 10:33:37 2 5 2019-08-02 10:53:37 2 3 2019-08-02 11:03:37 2 5 2019-08-02 11:28:37 2 3 2019-08-02 11:38:37 2 3 2019-08-02 11:48:37 2 3 2019-08-02 12:08:37 2 3 2019-08-02 12:18:37 2 5 2019-08-02 12:43:37 2 6 2019-08-02 12:48:37 2 4 2019-08-02 13:18:37 2 4 2019-08-02 13:28:37 2 4 2019-08-02 14:28:37 2 4 2019-08-02 14:33:37 2 6 2019-08-02 14:48:37 2 4 2019-08-02 14:58:37 2 8 2019-08-02 15:03:37 2 6 2019-08-02 15:18:37 2 4 2019-08-02 15:53:37 2 6 2019-08-02 16:03:37 2 6 2019-08-02 16:13:37 2 6 2019-08-02 16:23:37 2 6 2019-08-02 16:38:37 2 4 2019-08-02 17:43:37 2 4 2019-08-02 17:53:37 2 4 2019-08-02 18:13:37 2 4 2019-08-02 18:33:37 2 4 2019-08-02 18:43:37 2 4 2019-08-02 19:23:37 2 4 2019-08-02 19:33:37 2 4 2019-08-02 19:43:37 2 4 2019-08-02 20:18:37 2 6 2019-08-02 20:23:37 2 6 2019-08-02 20:33:37 1 1 2019-08-02 20:33:37 2 5 2019-08-02 20:48:37 1 1 2019-08-02 20:48:37 2 5 2019-08-02 20:58:37 1 1 2019-08-02 20:58:37 2 4 2019-08-02 21:03:37 1 1 2019-08-02 21:03:37 2 6 2019-08-02 21:43:37 1 1 2019-08-02 21:43:37 2 6 2019-08-02 21:48:37 1 1 2019-08-02 21:48:37 2 4 2019-08-02 22:23:37 1 1 2019-08-02 22:23:37 2 8 2019-08-02 22:28:37 1 1 2019-08-02 22:28:37 2 6 2019-08-02 23:08:37 2 5 2019-08-03 00:03:37 2 7 2019-08-03 00:13:37 2 3 2019-08-03 00:23:37 2 5 2019-08-03 00:58:37 2 7 2019-08-03 02:08:37 2 3 2019-08-03 02:13:37 2 3 2019-08-03 02:58:37 2 3 2019-08-03 03:13:37 2 3 2019-08-03 03:23:37 2 3 2019-08-03 04:03:37 2 2 2019-08-03 08:28:37 2 2 2019-08-03 08:43:37 2 4 2019-08-03 08:58:37 2 4 2019-08-03 09:13:37 2 8 2019-08-03 09:48:37 2 2 2019-08-03 09:58:37 2 4 2019-08-03 10:28:37 2 4 2019-08-03 10:43:37 2 6 2019-08-03 10:58:37 2 4 2019-08-03 11:03:37 2 6 2019-08-03 11:23:37 2 6 2019-08-03 11:28:37 2 4 2019-08-03 11:38:37 2 4 2019-08-03 11:53:37 2 6 2019-08-03 12:23:37 2 8 2019-08-03 12:48:37 2 10 2019-08-03 13:03:37 2 10 2019-08-03 13:08:37 2 8 2019-08-03 13:13:37 2 8 2019-08-03 14:08:37 2 8 2019-08-03 14:23:37 2 10 2019-08-03 14:28:37 2 8 2019-08-03 14:33:37 2 8 2019-08-03 14:43:37 2 10 2019-08-03 15:13:37 2 8 2019-08-03 15:23:37 2 4 2019-08-03 15:48:37 2 6 2019-08-03 15:53:37 2 6 2019-08-03 16:23:37 2 6 2019-08-03 16:33:37 2 6 2019-08-03 17:08:37 2 2 2019-08-03 17:23:37 2 4 2019-08-03 17:43:37 2 6 2019-08-03 18:13:37 1 1 2019-08-03 18:13:37 2 5 2019-08-03 18:33:37 1 1 2019-08-03 18:33:37 2 4 2019-08-03 18:43:37 1 1 2019-08-03 18:43:37 2 4 2019-08-03 18:58:37 1 1 2019-08-03 18:58:37 2 8 2019-08-03 19:08:37 1 1 2019-08-03 19:08:37 2 7 2019-08-03 20:28:37 1 1 2019-08-03 20:28:37 2 7 2019-08-03 20:48:37 1 1 2019-08-03 20:48:37 2 6 2019-08-03 20:53:37 1 1 2019-08-03 20:53:37 2 6 2019-08-03 20:58:37 1 1 2019-08-03 20:58:37 2 6 2019-08-03 21:13:37 1 1 2019-08-03 21:13:37 2 10 2019-08-03 21:38:37 1 1 2019-08-03 21:38:37 2 8 2019-08-03 21:48:37 1 1 2019-08-03 21:48:37 2 8 2019-08-03 21:53:37 1 1 2019-08-03 21:53:37 2 6 2019-08-03 22:03:37 1 1 2019-08-03 22:03:37 2 6 2019-08-03 22:28:37 1 1 2019-08-03 22:28:37 2 8 2019-08-03 22:58:37 1 1 2019-08-03 22:58:37 2 8 2019-08-03 23:33:37 1 1 2019-08-03 23:33:37 2 8 2019-08-03 23:38:37 1 1 2019-08-03 23:38:37 2 10 2019-08-03 23:48:37 2 9 2019-08-04 00:03:37 1 1 2019-08-04 00:03:37 2 9 2019-08-04 00:28:37 2 9 2019-08-04 00:38:37 2 8 2019-08-04 00:43:37 2 6 2019-08-04 00:48:37 2 3 2019-08-04 00:58:37 2 5 2019-08-04 01:08:37 2 2 2019-08-01 18:33:37 2 5 2019-08-01 18:53:37 2 7 2019-08-01 20:13:37 1 1 2019-08-01 20:13:37 2 5 2019-08-01 20:23:37 1 1 2019-08-01 20:23:37 2 5 2019-08-01 21:13:37 1 1 2019-08-01 21:13:37 2 7 2019-08-01 21:23:37 1 1 2019-08-01 21:23:37 2 7 2019-08-01 21:38:37 2 8 2019-08-01 22:03:37 2 6 2019-08-01 22:13:37 2 6 2019-08-01 22:28:37 2 8 2019-08-01 22:33:37 2 10 2019-08-01 22:53:37 2 6 2019-08-01 23:03:37 2 7 2019-08-01 23:28:38 2 5 2019-08-01 23:58:37 2 5 2019-08-02 00:23:37 2 7 2019-08-02 00:38:37 2 5 2019-08-02 01:03:37 2 3 2019-08-02 01:13:37 2 3 2019-08-02 01:23:37 2 3 2019-08-02 01:38:37 2 5 2019-08-02 02:03:37 2 3 2019-08-02 02:13:37 2 3 2019-08-02 02:33:37 2 3 2019-08-02 02:48:37 2 3 2019-08-02 02:58:37 2 3 2019-08-02 03:08:37 2 3 2019-08-02 03:18:37 2 3 2019-08-02 03:48:37 2 3 2019-08-02 04:08:37 2 2 2019-08-02 04:18:37 2 2 2019-08-02 04:58:37 2 2 2019-08-02 05:08:37 2 2 2019-08-02 05:38:37 2 2 2019-08-02 06:18:37 2 1 2019-08-02 06:28:37 2 1 2019-08-02 06:38:37 2 1 2019-08-02 07:08:37 2 1 2019-08-02 07:28:37 2 1 2019-08-02 08:23:37 2 3 2019-08-02 08:53:37 2 3 2019-08-02 09:03:37 2 3 2019-08-02 09:08:37 2 1 2019-08-02 09:23:37 2 3 2019-08-02 09:33:37 2 3 2019-08-02 09:43:37 2 3 2019-08-02 10:38:37 2 5 2019-08-02 10:58:37 2 3 2019-08-02 11:08:37 2 5 2019-08-02 11:53:37 2 3 2019-08-02 12:03:37 2 3 2019-08-02 12:38:37 2 6 2019-08-02 12:53:37 2 4 2019-08-02 13:03:37 2 4 2019-08-02 13:13:37 2 4 2019-08-02 13:23:37 2 4 2019-08-02 13:38:37 2 2 2019-08-02 13:43:37 2 2 2019-08-02 13:53:37 2 4 2019-08-02 14:08:37 2 4 2019-08-02 14:43:37 2 4 2019-08-02 14:53:37 2 6 2019-08-02 15:23:37 2 4 2019-08-02 15:28:37 2 6 2019-08-02 15:33:37 2 4 2019-08-02 15:58:38 2 6 2019-08-02 16:18:37 2 6 2019-08-02 17:33:37 2 2 2019-08-02 18:18:37 2 4 2019-08-02 18:38:37 2 4 2019-08-02 18:58:37 2 4 2019-08-02 19:03:37 2 2 2019-08-02 20:13:37 2 6 2019-08-02 20:28:37 2 4 2019-08-02 20:38:37 1 1 2019-08-02 20:38:37 2 7 2019-08-02 20:43:37 1 1 2019-08-02 20:43:37 2 5 2019-08-02 20:53:37 1 1 2019-08-02 20:53:37 2 5 2019-08-02 21:18:37 1 1 2019-08-02 21:18:37 2 4 2019-08-02 21:33:37 1 1 2019-08-02 21:33:37 2 8 2019-08-02 21:38:37 1 1 2019-08-02 21:38:37 2 8 2019-08-02 22:08:37 1 1 2019-08-02 22:08:37 2 4 2019-08-02 22:18:37 1 1 2019-08-02 22:18:37 2 6 2019-08-02 23:13:37 2 5 2019-08-02 23:18:37 2 7 2019-08-02 23:23:37 2 5 2019-08-02 23:53:37 2 7 2019-08-03 00:18:37 2 3 2019-08-03 00:33:37 2 4 2019-08-03 00:53:37 2 7 2019-08-03 01:08:37 2 5 2019-08-03 01:23:37 2 3 2019-08-03 01:33:37 2 5 2019-08-03 02:53:37 2 3 2019-08-03 03:08:37 2 3 2019-08-03 03:18:37 2 3 2019-08-03 03:28:37 2 3 2019-08-03 04:08:37 2 2 2019-08-03 07:28:37 2 2 2019-08-03 08:38:37 2 4 2019-08-03 09:08:37 2 4 2019-08-03 09:18:37 2 4 2019-08-03 09:23:37 2 2 2019-08-03 09:28:37 2 4 2019-08-03 09:33:37 2 4 2019-08-03 09:38:37 2 2 2019-08-03 10:03:37 2 4 2019-08-03 10:18:37 2 6 2019-08-03 10:23:37 2 4 2019-08-03 10:53:37 2 4 2019-08-03 11:08:37 2 6 2019-08-03 11:13:37 2 6 2019-08-03 11:18:37 2 4 2019-08-03 11:33:37 2 4 2019-08-03 11:58:37 2 10 2019-08-03 12:03:37 2 10 2019-08-03 12:18:37 2 8 2019-08-03 12:28:37 2 8 2019-08-03 12:33:37 2 6 2019-08-03 13:18:37 2 8 2019-08-03 13:28:37 2 8 2019-08-03 13:38:37 2 8 2019-08-03 13:48:37 2 6 2019-08-03 13:53:37 2 8 2019-08-03 14:03:37 2 10 2019-08-03 14:13:37 2 8 2019-08-03 15:03:37 2 10 2019-08-03 15:08:37 2 8 2019-08-03 15:58:37 2 6 2019-08-03 16:03:37 2 4 2019-08-03 16:08:37 2 6 2019-08-03 16:18:37 2 6 2019-08-03 16:38:37 2 6 2019-08-03 16:48:37 2 4 2019-08-03 17:18:37 2 4 2019-08-03 17:48:37 2 6 2019-08-03 18:03:37 2 4 2019-08-03 18:18:37 1 1 2019-08-03 18:18:37 2 6 2019-08-03 19:18:37 1 1 2019-08-03 19:18:37 2 7 2019-08-03 19:23:37 1 1 2019-08-03 19:23:37 2 5 2019-08-03 20:08:37 1 1 2019-08-03 20:08:37 2 7 2019-08-03 20:33:37 1 1 2019-08-03 20:33:37 2 8 2019-08-03 20:38:37 1 1 2019-08-03 20:38:37 2 8 2019-08-03 20:43:37 1 1 2019-08-03 20:43:37 2 6 2019-08-03 21:03:37 1 1 2019-08-03 21:03:37 2 6 2019-08-03 21:23:37 1 1 2019-08-03 21:23:37 2 10 2019-08-03 21:28:37 1 1 2019-08-03 21:28:37 2 10 2019-08-03 21:43:37 1 1 2019-08-03 21:43:37 2 8 2019-08-03 23:03:37 1 1 2019-08-03 23:03:37 2 8 2019-08-03 23:08:37 1 1 2019-08-03 23:08:37 2 10 2019-08-03 23:13:37 1 1 2019-08-03 23:13:37 2 12 2019-08-03 23:23:37 1 1 2019-08-03 23:23:37 2 12 2019-08-03 23:53:37 1 1 2019-08-03 23:53:37 2 10 2019-08-03 23:58:37 1 1 2019-08-03 23:58:37 2 10 2019-08-04 00:13:37 2 11 2019-08-04 00:53:37 2 3 2019-08-04 01:18:37 2 2 2019-08-01 18:38:37 2 6 2019-08-01 18:48:37 2 8 2019-08-01 19:48:37 2 6 2019-08-01 20:08:37 1 1 2019-08-01 20:08:37 2 6 2019-08-01 20:28:37 1 1 2019-08-01 20:28:37 2 6 2019-08-01 20:38:37 1 1 2019-08-01 20:38:37 2 6 2019-08-01 20:48:37 1 1 2019-08-01 20:48:37 2 6 2019-08-01 20:58:37 1 1 2019-08-01 20:58:37 2 6 2019-08-01 21:08:37 1 1 2019-08-01 21:08:37 2 6 2019-08-01 21:33:37 2 7 2019-08-01 21:43:37 2 7 2019-08-01 21:48:37 2 5 2019-08-01 21:53:37 2 5 2019-08-01 22:18:37 2 7 2019-08-01 22:23:37 2 9 2019-08-01 22:38:37 2 11 2019-08-01 22:48:37 2 7 2019-08-01 23:13:37 2 6 2019-08-01 23:23:37 2 6 2019-08-01 23:33:37 2 6 2019-08-01 23:53:37 2 6 2019-08-02 00:28:37 2 4 2019-08-02 00:48:37 2 4 2019-08-02 00:58:37 2 4 2019-08-02 01:48:37 2 4 2019-08-02 01:58:37 2 4 2019-08-02 02:08:37 2 4 2019-08-02 02:23:37 2 2 2019-08-02 03:28:37 2 2 2019-08-02 03:38:37 2 2 2019-08-02 03:58:37 2 2 2019-08-02 04:23:37 2 1 2019-08-02 04:33:37 2 1 2019-08-02 04:43:37 2 1 2019-08-02 04:53:37 2 1 2019-08-02 05:18:37 2 3 2019-08-02 05:28:37 2 3 2019-08-02 05:53:37 2 1 2019-08-02 06:03:37 2 1 2019-08-02 06:13:37 2 1 2019-08-02 08:08:37 2 2 2019-08-02 08:18:37 2 2 2019-08-02 08:38:37 2 2 2019-08-02 08:48:37 2 2 2019-08-02 09:18:37 2 2 2019-08-02 09:53:37 2 4 2019-08-02 10:03:37 2 4 2019-08-02 10:13:37 2 4 2019-08-02 10:23:37 2 4 2019-08-02 10:48:37 2 4 2019-08-02 11:13:37 2 4 2019-08-02 11:33:37 2 4 2019-08-02 11:58:37 2 2 2019-08-02 12:33:37 2 5 2019-08-02 12:58:37 2 3 2019-08-02 13:08:37 2 3 2019-08-02 13:58:37 2 3 2019-08-02 14:03:37 2 5 2019-08-02 14:23:37 2 5 2019-08-02 15:13:37 2 5 2019-08-02 15:43:37 2 5 2019-08-02 16:33:37 2 5 2019-08-02 16:43:37 2 5 2019-08-02 16:53:37 2 5 2019-08-02 17:03:37 2 5 2019-08-02 17:13:37 2 5 2019-08-02 17:18:37 2 5 2019-08-02 17:23:37 2 3 2019-08-02 17:48:37 2 5 2019-08-02 18:03:37 2 3 2019-08-02 18:28:37 2 5 2019-08-02 18:48:37 2 5 2019-08-02 19:13:37 2 3 2019-08-02 19:48:37 2 5 2019-08-02 19:58:37 2 5 2019-08-02 20:03:37 2 7 2019-08-02 21:28:37 1 1 2019-08-02 21:28:37 2 9 2019-08-02 21:53:37 1 1 2019-08-02 21:53:37 2 5 2019-08-02 22:13:37 1 1 2019-08-02 22:13:37 2 3 2019-08-02 22:33:37 1 1 2019-08-02 22:33:37 2 7 2019-08-02 22:38:37 1 1 2019-08-02 22:38:37 2 9 2019-08-02 22:48:37 2 8 2019-08-02 22:58:37 2 8 2019-08-02 23:03:37 2 6 2019-08-02 23:33:37 2 4 2019-08-02 23:38:37 2 2 2019-08-02 23:48:37 2 4 2019-08-02 23:58:37 2 6 2019-08-03 00:08:37 2 4 2019-08-03 00:28:37 2 5 2019-08-03 00:43:37 2 5 2019-08-03 01:18:37 2 2 2019-08-03 01:28:37 2 4 2019-08-03 01:38:37 2 4 2019-08-03 01:48:37 2 4 2019-08-03 01:58:37 2 4 2019-08-03 02:18:37 2 2 2019-08-03 02:23:37 2 4 2019-08-03 02:43:37 2 4 2019-08-03 03:33:37 2 2 2019-08-03 03:43:37 2 2 2019-08-03 03:53:37 2 2 2019-08-03 04:13:37 2 1 2019-08-03 04:23:37 2 1 2019-08-03 04:33:37 2 1 2019-08-03 04:43:37 2 1 2019-08-03 06:03:37 2 1 2019-08-03 06:33:37 2 1 2019-08-03 06:43:37 2 1 2019-08-03 07:13:37 2 1 2019-08-03 07:48:37 2 1 2019-08-03 07:58:37 2 1 2019-08-03 08:03:37 2 3 2019-08-03 08:13:37 2 3 2019-08-03 08:23:37 2 3 2019-08-03 08:53:37 2 5 2019-08-03 09:03:37 2 1 2019-08-03 09:43:37 2 3 2019-08-03 09:53:37 2 3 2019-08-03 11:43:37 2 5 2019-08-03 12:08:37 2 7 2019-08-03 12:13:37 2 7 2019-08-03 12:38:37 2 7 2019-08-03 12:53:37 2 11 2019-08-03 13:33:37 2 7 2019-08-03 13:43:37 2 9 2019-08-03 14:38:37 2 9 2019-08-03 14:58:37 2 9 2019-08-03 15:18:37 2 5 2019-08-03 15:28:37 2 5 2019-08-03 15:43:37 2 5 2019-08-03 16:13:37 2 5 2019-08-03 16:53:37 2 5 2019-08-03 17:13:37 2 3 2019-08-03 17:38:37 2 5 2019-08-03 17:53:37 2 5 2019-08-03 18:53:37 1 1 2019-08-03 18:53:37 2 7 2019-08-03 19:13:37 1 1 2019-08-03 19:13:37 2 10 2019-08-03 19:38:37 1 1 2019-08-03 19:38:37 2 8 2019-08-03 19:48:37 1 1 2019-08-03 19:48:37 2 8 2019-08-03 19:53:37 1 1 2019-08-03 19:53:37 2 6 2019-08-03 20:03:37 1 1 2019-08-03 20:03:37 2 6 2019-08-03 20:18:37 1 1 2019-08-03 20:18:37 2 8 2019-08-03 20:23:37 1 1 2019-08-03 20:23:37 2 6 2019-08-03 21:33:37 1 1 2019-08-03 21:33:37 2 9 2019-08-03 21:58:37 1 1 2019-08-03 21:58:37 2 7 2019-08-03 22:23:37 1 1 2019-08-03 22:23:37 2 9 2019-08-03 22:38:37 1 1 2019-08-03 22:38:37 2 7 2019-08-03 22:48:37 1 1 2019-08-03 22:48:37 2 7 2019-08-03 23:28:37 1 1 2019-08-03 23:28:37 2 9 2019-08-04 00:08:37 1 1 2019-08-04 00:08:37 2 11 2019-08-04 00:18:37 2 10 2019-08-04 00:23:37 2 8 2019-08-04 00:33:37 2 8 2019-08-04 01:03:37 2 6 2019-08-04 01:13:37 2 2 2019-08-04 01:23:37 2 2 2019-08-04 01:28:37 2 2 2019-08-04 01:33:37 2 3 2019-08-01 19:03:37 2 5 2019-08-01 19:08:37 2 6 2019-08-01 19:23:37 2 3 2019-08-01 19:33:37 2 7 2019-08-01 19:38:37 2 5 2019-08-01 19:58:37 1 1 2019-08-01 19:58:37 2 7 2019-08-01 22:08:37 2 6 2019-08-01 22:43:37 2 8 2019-08-01 22:58:37 2 6 2019-08-01 23:38:37 2 7 2019-08-01 23:48:37 2 7 2019-08-02 00:03:37 2 7 2019-08-02 00:08:37 2 9 2019-08-02 00:13:37 2 7 2019-08-02 00:33:37 2 5 2019-08-02 00:43:37 2 5 2019-08-02 01:08:37 2 3 2019-08-02 01:18:37 2 3 2019-08-02 01:28:37 2 3 2019-08-02 01:33:37 2 5 2019-08-02 02:18:37 2 3 2019-08-02 02:28:37 2 3 2019-08-02 02:43:37 2 3 2019-08-02 02:53:37 2 3 2019-08-02 03:03:37 2 3 2019-08-02 03:13:37 2 3 2019-08-02 03:23:37 2 3 2019-08-02 03:43:37 2 3 2019-08-02 04:28:37 2 1 2019-08-02 04:38:37 2 1 2019-08-02 04:48:37 2 1 2019-08-02 05:33:37 2 3 2019-08-02 05:48:37 2 1 2019-08-02 05:58:37 2 1 2019-08-02 06:08:37 2 1 2019-08-02 07:33:37 2 2 2019-08-02 08:13:37 2 2 2019-08-02 08:33:37 2 2 2019-08-02 08:43:37 2 2 2019-08-02 09:13:37 2 2 2019-08-02 09:38:37 2 4 2019-08-02 09:48:37 2 4 2019-08-02 09:58:37 2 4 2019-08-02 10:08:37 2 4 2019-08-02 10:18:37 2 4 2019-08-02 10:43:37 2 4 2019-08-02 11:18:37 2 4 2019-08-02 11:23:37 2 6 2019-08-02 11:43:37 2 2 2019-08-02 12:13:37 2 4 2019-08-02 12:23:37 2 4 2019-08-02 12:28:37 2 5 2019-08-02 13:33:37 2 3 2019-08-02 13:48:37 2 3 2019-08-02 14:13:37 2 7 2019-08-02 14:18:37 2 5 2019-08-02 14:38:37 2 5 2019-08-02 15:08:37 2 5 2019-08-02 15:38:37 2 5 2019-08-02 15:48:37 2 5 2019-08-02 16:08:37 2 5 2019-08-02 16:28:37 2 5 2019-08-02 16:48:37 2 5 2019-08-02 16:58:37 2 5 2019-08-02 17:08:37 2 5 2019-08-02 17:28:37 2 3 2019-08-02 17:38:37 2 3 2019-08-02 17:58:37 2 3 2019-08-02 18:08:37 2 3 2019-08-02 18:23:37 2 5 2019-08-02 18:53:37 2 5 2019-08-02 19:08:37 2 3 2019-08-02 19:18:37 2 3 2019-08-02 19:28:37 2 3 2019-08-02 19:38:37 2 3 2019-08-02 19:53:37 2 5 2019-08-02 20:08:37 2 7 2019-08-02 21:08:37 1 1 2019-08-02 21:08:37 2 5 2019-08-02 21:13:37 1 1 2019-08-02 21:13:37 2 5 2019-08-02 21:23:37 1 1 2019-08-02 21:23:37 2 7 2019-08-02 21:58:37 1 1 2019-08-02 21:58:37 2 5 2019-08-02 22:03:37 1 1 2019-08-02 22:03:37 2 3 2019-08-02 22:43:37 2 8 2019-08-02 22:53:37 2 8 2019-08-02 23:28:37 2 4 2019-08-02 23:43:37 2 4 2019-08-03 00:38:37 2 5 2019-08-03 00:48:37 2 6 2019-08-03 01:03:37 2 6 2019-08-03 01:13:37 2 2 2019-08-03 01:43:37 2 4 2019-08-03 01:53:37 2 4 2019-08-03 02:03:37 2 4 2019-08-03 02:28:37 2 4 2019-08-03 02:33:37 2 4 2019-08-03 02:38:37 2 6 2019-08-03 02:48:37 2 4 2019-08-03 03:03:37 2 4 2019-08-03 03:38:37 2 2 2019-08-03 03:48:37 2 2 2019-08-03 03:58:37 2 2 2019-08-03 04:18:37 2 1 2019-08-03 04:28:37 2 1 2019-08-03 04:38:37 2 1 2019-08-03 04:48:37 2 1 2019-08-03 06:08:37 2 1 2019-08-03 06:38:37 2 1 2019-08-03 06:48:37 2 1 2019-08-03 07:18:37 2 1 2019-08-03 07:23:37 2 3 2019-08-03 07:43:37 2 1 2019-08-03 08:08:37 2 3 2019-08-03 08:18:37 2 3 2019-08-03 08:33:37 2 1 2019-08-03 08:48:37 2 5 2019-08-03 10:08:37 2 5 2019-08-03 10:13:37 2 7 2019-08-03 10:33:37 2 3 2019-08-03 10:38:37 2 5 2019-08-03 10:48:37 2 5 2019-08-03 11:48:37 2 5 2019-08-03 12:43:37 2 7 2019-08-03 12:58:37 2 7 2019-08-03 13:23:37 2 9 2019-08-03 13:58:37 2 9 2019-08-03 14:18:37 2 9 2019-08-03 14:48:37 2 9 2019-08-03 14:53:37 2 9 2019-08-03 15:33:37 2 7 2019-08-03 15:38:37 2 5 2019-08-03 16:28:37 2 5 2019-08-03 16:43:37 2 5 2019-08-03 16:58:37 2 7 2019-08-03 17:03:37 2 5 2019-08-03 17:28:37 2 7 2019-08-03 17:33:37 2 5 2019-08-03 17:58:37 2 5 2019-08-03 18:08:37 1 1 2019-08-03 18:08:37 2 4 2019-08-03 18:23:37 1 1 2019-08-03 18:23:37 2 7 2019-08-03 18:28:37 1 1 2019-08-03 18:28:37 2 5 2019-08-03 18:38:37 1 1 2019-08-03 18:38:37 2 3 2019-08-03 18:48:37 1 1 2019-08-03 18:48:37 2 7 2019-08-03 19:03:37 1 1 2019-08-03 19:03:37 2 6 2019-08-03 19:28:38 1 1 2019-08-03 19:28:38 2 6 2019-08-03 19:33:37 1 1 2019-08-03 19:33:37 2 8 2019-08-03 19:43:37 1 1 2019-08-03 19:43:37 2 8 2019-08-03 19:58:37 1 1 2019-08-03 19:58:37 2 6 2019-08-03 20:13:37 1 1 2019-08-03 20:13:37 2 8 2019-08-03 21:08:37 1 1 2019-08-03 21:08:37 2 7 2019-08-03 21:18:37 1 1 2019-08-03 21:18:37 2 9 2019-08-03 22:08:37 1 1 2019-08-03 22:08:37 2 5 2019-08-03 22:13:37 1 1 2019-08-03 22:13:37 2 7 2019-08-03 22:18:37 1 1 2019-08-03 22:18:37 2 9 2019-08-03 22:33:37 1 1 2019-08-03 22:33:37 2 7 2019-08-03 22:43:37 1 1 2019-08-03 22:43:37 2 7 2019-08-03 22:53:37 1 1 2019-08-03 22:53:37 2 7 2019-08-03 23:18:37 1 1 2019-08-03 23:18:37 2 13 2019-08-03 23:43:37 2 10 2019-08-03 23:48:37 1 1 2019-08-04 01:38:37 2 4 2019-08-04 02:03:37 2 4 2019-08-04 02:18:37 2 2 2019-08-04 02:48:37 2 4 2019-08-04 03:03:37 2 4 2019-08-04 03:13:37 2 4 2019-08-04 03:28:37 2 2 2019-08-04 04:03:37 2 2 2019-08-04 04:28:37 2 2 2019-08-04 04:38:37 2 2 2019-08-04 04:48:37 2 2 2019-08-04 04:58:37 2 2 2019-08-04 07:18:37 2 2 2019-08-04 07:53:37 2 1 2019-08-04 09:08:37 2 2 2019-08-04 09:18:37 2 2 2019-08-04 09:28:37 2 4 2019-08-04 10:03:37 2 4 2019-08-04 10:38:37 2 4 2019-08-04 10:48:37 2 4 2019-08-04 10:58:37 2 4 2019-08-04 11:18:37 2 8 2019-08-04 11:43:37 2 12 2019-08-04 12:03:37 2 12 2019-08-04 12:08:37 2 10 2019-08-04 12:48:37 2 12 2019-08-04 13:28:37 2 11 2019-08-04 13:33:37 2 13 2019-08-04 13:53:37 2 13 2019-08-04 14:13:37 2 13 2019-08-04 14:23:37 2 13 2019-08-04 14:28:37 2 11 2019-08-04 14:33:37 2 13 2019-08-04 14:58:37 2 9 2019-08-04 15:08:37 2 11 2019-08-04 15:13:37 2 8 2019-08-04 15:48:37 2 8 2019-08-04 16:03:37 2 6 2019-08-04 16:18:37 2 6 2019-08-04 16:28:37 2 8 2019-08-04 17:13:37 2 4 2019-08-04 17:33:37 2 4 2019-08-04 18:48:37 2 4 2019-08-04 19:08:37 2 8 2019-08-04 19:28:37 2 9 2019-08-04 19:43:37 2 5 2019-08-04 20:28:37 2 7 2019-08-04 20:48:37 2 7 2019-08-04 20:58:37 2 7 2019-08-04 21:03:37 2 7 2019-08-04 21:18:37 2 7 2019-08-04 21:23:37 1 1 2019-08-04 21:23:37 2 8 2019-08-04 21:38:37 1 1 2019-08-04 21:38:37 2 8 2019-08-04 21:58:37 2 7 2019-08-04 22:23:37 1 1 2019-08-04 22:23:37 2 6 2019-08-04 23:18:37 2 11 2019-08-04 23:23:37 2 9 2019-08-04 23:43:37 2 9 2019-08-04 23:53:37 2 9 2019-08-05 00:03:37 2 9 2019-08-05 00:18:37 2 13 2019-08-05 00:43:37 2 5 2019-08-05 01:13:37 2 5 2019-08-05 01:53:37 2 3 2019-08-05 02:03:37 2 3 2019-08-05 02:13:37 2 3 2019-08-05 02:23:37 2 3 2019-08-05 03:33:37 2 2 2019-08-05 03:43:37 2 2 2019-08-05 03:53:37 2 2 2019-08-05 04:03:37 2 2 2019-08-05 05:03:37 2 2 2019-08-05 07:38:37 2 2 2019-08-05 07:48:37 2 2 2019-08-05 08:28:37 2 2 2019-08-05 09:08:37 2 2 2019-08-05 09:18:37 1 1 2019-08-05 09:18:37 2 3 2019-08-05 09:23:37 1 1 2019-08-05 09:23:37 2 5 2019-08-05 09:28:37 1 2 2019-08-05 09:28:37 2 4 2019-08-05 09:38:37 1 1 2019-08-05 09:38:37 2 5 2019-08-05 09:48:37 2 4 2019-08-05 10:13:37 2 6 2019-08-05 10:18:37 2 6 2019-08-05 10:48:37 2 8 2019-08-05 12:08:37 2 5 2019-08-05 12:13:37 2 6 2019-08-05 12:28:37 2 6 2019-08-05 12:38:37 2 8 2019-08-05 12:48:37 2 8 2019-08-05 13:08:37 2 10 2019-08-05 13:13:37 2 10 2019-08-05 13:18:37 2 12 2019-08-05 13:38:37 2 10 2019-08-05 13:48:37 2 10 2019-08-05 13:53:37 2 10 2019-08-05 14:28:37 2 11 2019-08-05 14:33:37 2 13 2019-08-05 14:48:37 2 13 2019-08-05 14:58:37 2 13 2019-08-05 15:13:37 2 11 2019-08-05 15:33:37 2 11 2019-08-05 15:53:37 2 11 2019-08-05 16:28:37 2 7 2019-08-05 16:38:37 2 9 2019-08-05 16:48:37 2 9 2019-08-05 17:28:37 2 11 2019-08-05 18:18:37 2 7 2019-08-05 18:23:37 2 9 2019-08-05 19:03:37 2 10 2019-08-05 19:08:37 2 10 2019-08-05 19:18:37 2 6 2019-08-05 19:23:37 2 6 2019-08-05 19:38:37 2 6 2019-08-05 19:43:37 2 4 2019-08-05 19:58:37 2 6 2019-08-05 20:13:37 2 6 2019-08-05 20:28:37 2 5 2019-08-05 20:48:37 2 7 2019-08-05 21:03:37 2 7 2019-08-05 21:08:37 2 5 2019-08-05 21:48:37 2 7 2019-08-05 21:58:37 2 9 2019-08-05 23:23:37 2 3 2019-08-05 23:53:37 2 6 2019-08-06 00:13:37 2 6 2019-08-06 00:18:37 2 6 2019-08-06 00:33:37 2 4 2019-08-06 00:43:37 2 4 2019-08-06 01:03:37 2 4 2019-08-06 01:38:37 2 4 2019-08-06 01:58:37 2 3 2019-08-06 02:03:37 2 1 2019-08-06 02:18:37 2 1 2019-08-06 02:33:37 2 1 2019-08-06 02:43:37 2 1 2019-08-06 03:43:38 2 1 2019-08-06 04:03:37 2 2 2019-08-06 06:03:37 2 2 2019-08-06 06:13:37 2 2 2019-08-06 06:23:37 2 2 2019-08-06 06:33:37 2 2 2019-08-06 06:43:37 2 3 2019-08-06 07:33:37 2 1 2019-08-06 07:58:37 2 1 2019-08-06 08:13:37 2 1 2019-08-06 08:28:37 2 1 2019-08-06 08:58:37 2 1 2019-08-06 09:08:37 2 1 2019-08-06 09:13:37 2 3 2019-08-06 09:28:37 2 1 2019-08-06 10:08:37 2 3 2019-08-06 10:13:37 2 3 2019-08-06 10:23:37 2 3 2019-08-06 10:43:37 2 1 2019-08-06 11:03:37 1 1 2019-08-06 11:03:37 2 2 2019-08-06 11:13:37 2 4 2019-08-06 11:18:37 2 3 2019-08-06 11:38:37 2 1 2019-08-06 11:48:37 1 1 2019-08-06 11:48:37 2 2 2019-08-06 11:53:37 1 1 2019-08-06 11:53:37 2 4 2019-08-06 11:58:37 1 1 2019-08-06 11:58:37 2 4 2019-08-06 12:03:37 1 1 2019-08-06 12:03:37 2 4 2019-08-06 12:13:37 1 1 2019-08-06 12:13:37 2 6 2019-08-06 12:18:37 1 1 2019-08-06 12:18:37 2 6 2019-08-06 12:23:37 1 1 2019-08-06 12:23:37 2 4 2019-08-06 12:38:37 1 1 2019-08-06 12:38:37 2 5 2019-08-06 13:03:37 2 7 2019-08-06 13:08:37 2 7 2019-08-06 13:18:37 1 1 2019-08-04 01:43:37 2 4 2019-08-04 02:13:37 2 2 2019-08-04 02:33:37 2 4 2019-08-04 02:43:37 2 4 2019-08-04 02:53:37 2 4 2019-08-04 03:08:37 2 4 2019-08-04 03:33:37 2 2 2019-08-04 04:08:37 2 2 2019-08-04 04:23:37 2 2 2019-08-04 04:33:37 2 2 2019-08-04 04:43:37 2 2 2019-08-04 04:53:37 2 2 2019-08-04 07:03:37 2 2 2019-08-04 07:13:37 2 2 2019-08-04 07:23:37 2 2 2019-08-04 07:33:37 2 2 2019-08-04 07:43:37 2 2 2019-08-04 07:58:37 2 1 2019-08-04 08:43:37 2 3 2019-08-04 08:53:37 2 3 2019-08-04 09:48:37 2 3 2019-08-04 09:53:37 2 1 2019-08-04 10:08:37 2 5 2019-08-04 10:43:37 2 3 2019-08-04 11:08:37 2 7 2019-08-04 11:23:37 2 9 2019-08-04 11:38:37 2 11 2019-08-04 11:48:37 2 11 2019-08-04 12:13:37 2 11 2019-08-04 12:18:37 2 9 2019-08-04 12:53:37 2 9 2019-08-04 12:58:37 2 10 2019-08-04 13:13:37 2 10 2019-08-04 13:23:37 2 10 2019-08-04 13:43:37 2 12 2019-08-04 14:53:37 2 8 2019-08-04 15:28:37 2 7 2019-08-04 15:38:37 2 7 2019-08-04 15:58:37 2 9 2019-08-04 16:08:37 2 7 2019-08-04 16:48:37 2 5 2019-08-04 17:03:37 2 5 2019-08-04 17:08:37 2 5 2019-08-04 17:23:37 2 5 2019-08-04 17:38:37 2 5 2019-08-04 17:43:37 2 3 2019-08-04 17:53:37 2 3 2019-08-04 18:03:37 2 3 2019-08-04 18:08:37 2 5 2019-08-04 18:23:37 2 5 2019-08-04 18:38:37 2 7 2019-08-04 19:18:37 2 9 2019-08-04 20:03:37 2 4 2019-08-04 20:08:37 2 6 2019-08-04 20:43:37 2 8 2019-08-04 21:43:37 1 1 2019-08-04 21:43:37 2 7 2019-08-04 21:48:37 1 1 2019-08-04 21:48:37 2 7 2019-08-04 22:28:37 2 6 2019-08-04 22:53:37 1 1 2019-08-04 22:53:37 2 9 2019-08-04 23:03:37 1 1 2019-08-04 23:03:37 2 11 2019-08-04 23:08:37 1 1 2019-08-04 23:08:37 2 9 2019-08-04 23:13:37 2 10 2019-08-04 23:58:37 2 8 2019-08-05 00:08:37 2 10 2019-08-05 00:13:37 2 10 2019-08-05 00:23:37 2 12 2019-08-05 00:28:37 2 8 2019-08-05 00:48:37 2 4 2019-08-05 00:58:37 2 4 2019-08-05 01:08:37 2 4 2019-08-05 01:18:37 2 4 2019-08-05 01:28:37 2 4 2019-08-05 01:33:37 2 4 2019-08-05 01:38:37 2 4 2019-08-05 01:43:37 2 4 2019-08-05 02:33:37 2 3 2019-08-05 02:43:37 2 3 2019-08-05 02:53:37 2 3 2019-08-05 03:03:37 2 3 2019-08-05 03:13:37 2 3 2019-08-05 03:23:37 2 3 2019-08-05 04:08:37 2 2 2019-08-05 04:33:37 2 4 2019-08-05 05:13:37 2 2 2019-08-05 07:43:37 2 2 2019-08-05 08:23:37 2 2 2019-08-05 08:38:37 2 2 2019-08-05 08:53:37 2 6 2019-08-05 09:43:37 2 4 2019-08-05 10:03:37 2 4 2019-08-05 10:23:37 1 1 2019-08-05 10:23:37 2 5 2019-08-05 10:43:37 2 6 2019-08-05 11:18:37 2 7 2019-08-05 11:28:37 2 7 2019-08-05 11:53:37 2 5 2019-08-05 12:23:37 2 6 2019-08-05 12:33:37 2 8 2019-08-05 13:28:37 2 10 2019-08-05 13:33:37 2 10 2019-08-05 14:38:37 2 13 2019-08-05 15:08:37 2 11 2019-08-05 15:58:37 2 13 2019-08-05 16:13:37 2 9 2019-08-05 16:18:37 2 9 2019-08-05 16:53:37 2 9 2019-08-05 17:03:37 2 9 2019-08-05 17:13:37 2 9 2019-08-05 17:43:37 2 9 2019-08-05 17:53:37 2 9 2019-08-05 17:58:37 2 7 2019-08-05 18:08:37 2 9 2019-08-05 18:28:37 2 11 2019-08-05 18:33:37 2 10 2019-08-05 18:38:37 2 8 2019-08-05 20:08:37 2 6 2019-08-05 20:23:37 2 5 2019-08-05 21:43:37 2 7 2019-08-05 22:03:37 2 9 2019-08-05 22:08:37 2 7 2019-08-05 22:33:37 2 5 2019-08-05 22:48:37 2 7 2019-08-05 23:13:37 2 5 2019-08-05 23:18:37 2 3 2019-08-05 23:28:37 2 3 2019-08-05 23:33:37 2 5 2019-08-05 23:58:37 2 6 2019-08-06 00:38:37 2 4 2019-08-06 00:48:37 2 4 2019-08-06 00:58:37 2 4 2019-08-06 01:28:37 2 4 2019-08-06 02:08:37 2 1 2019-08-06 02:13:37 2 1 2019-08-06 02:23:37 2 1 2019-08-06 02:28:37 2 1 2019-08-06 02:48:37 2 1 2019-08-06 03:48:37 2 1 2019-08-06 04:08:37 2 1 2019-08-06 04:18:37 2 1 2019-08-06 04:28:37 2 1 2019-08-06 04:38:37 2 1 2019-08-06 04:48:37 2 1 2019-08-06 04:58:37 2 1 2019-08-06 05:08:37 2 1 2019-08-06 05:18:37 2 1 2019-08-06 05:28:37 2 1 2019-08-06 05:38:37 2 1 2019-08-06 05:48:37 2 1 2019-08-06 05:58:37 2 1 2019-08-06 07:23:37 2 2 2019-08-06 08:08:37 2 2 2019-08-06 08:18:37 2 2 2019-08-06 09:38:37 2 2 2019-08-06 09:48:37 2 4 2019-08-06 10:33:37 2 4 2019-08-06 10:53:37 2 4 2019-08-06 11:33:37 2 4 2019-08-06 11:43:37 2 2 2019-08-06 12:08:37 1 1 2019-08-06 12:08:37 2 5 2019-08-06 12:28:37 1 1 2019-08-06 12:28:37 2 5 2019-08-06 12:43:37 1 1 2019-08-06 12:43:37 2 6 2019-08-06 12:48:37 2 6 2019-08-06 12:53:37 2 4 2019-08-06 12:58:37 2 6 2019-08-06 13:13:37 2 6 2019-08-06 13:18:37 2 8 2019-08-06 13:23:37 1 1 2019-08-06 13:23:37 2 7 2019-08-06 13:28:37 1 1 2019-08-06 13:28:37 2 7 2019-08-06 13:33:37 1 1 2019-08-06 13:33:37 2 8 2019-08-06 13:38:37 1 1 2019-08-06 13:38:37 2 7 2019-08-06 13:43:37 1 1 2019-08-06 13:43:37 2 9 2019-08-06 13:48:37 1 1 2019-08-04 01:48:37 2 3 2019-08-04 01:58:37 2 3 2019-08-04 02:08:37 2 3 2019-08-04 02:28:37 2 3 2019-08-04 02:38:37 2 5 2019-08-04 03:18:37 2 3 2019-08-04 03:43:37 2 1 2019-08-04 03:53:37 2 1 2019-08-04 04:13:37 2 3 2019-08-04 05:08:37 2 1 2019-08-04 05:18:37 2 1 2019-08-04 05:28:37 2 1 2019-08-04 05:38:37 2 1 2019-08-04 05:48:37 2 1 2019-08-04 05:58:37 2 1 2019-08-04 06:58:37 2 1 2019-08-04 07:08:37 2 1 2019-08-04 07:38:37 2 1 2019-08-04 07:48:37 2 1 2019-08-04 08:08:37 2 2 2019-08-04 08:13:37 2 4 2019-08-04 08:28:37 2 4 2019-08-04 09:13:37 2 2 2019-08-04 09:23:37 2 2 2019-08-04 09:38:37 2 2 2019-08-04 09:58:37 2 2 2019-08-04 10:18:37 2 6 2019-08-04 10:53:37 2 4 2019-08-04 11:03:37 2 4 2019-08-04 11:28:37 2 8 2019-08-04 11:58:37 2 12 2019-08-04 12:43:37 2 12 2019-08-04 13:03:37 2 13 2019-08-04 13:08:37 2 11 2019-08-04 13:18:37 2 9 2019-08-04 14:08:37 2 13 2019-08-04 14:18:37 2 13 2019-08-04 14:38:37 2 9 2019-08-04 14:43:37 2 7 2019-08-04 15:18:37 2 8 2019-08-04 15:53:37 2 8 2019-08-04 16:33:37 2 8 2019-08-04 16:38:37 2 6 2019-08-04 16:58:37 2 6 2019-08-04 17:18:37 2 4 2019-08-04 18:13:37 2 6 2019-08-04 18:28:37 2 4 2019-08-04 18:33:37 2 6 2019-08-04 19:23:37 2 9 2019-08-04 19:38:37 2 5 2019-08-04 19:53:37 2 5 2019-08-04 20:13:37 2 5 2019-08-04 20:18:37 2 5 2019-08-04 20:33:37 2 9 2019-08-04 20:38:37 2 9 2019-08-04 21:08:37 2 7 2019-08-04 21:28:37 1 1 2019-08-04 21:28:37 2 8 2019-08-04 22:03:37 2 7 2019-08-04 22:18:37 2 7 2019-08-04 22:43:37 1 1 2019-08-04 22:43:37 2 8 2019-08-04 22:48:37 1 1 2019-08-04 22:48:37 2 8 2019-08-04 23:28:37 2 9 2019-08-04 23:33:37 2 11 2019-08-04 23:38:37 2 9 2019-08-05 00:33:37 2 7 2019-08-05 01:23:37 2 5 2019-08-05 01:48:37 2 3 2019-08-05 01:58:37 2 3 2019-08-05 02:08:37 2 3 2019-08-05 02:18:37 2 3 2019-08-05 02:28:37 2 3 2019-08-05 03:28:37 2 2 2019-08-05 03:38:37 2 2 2019-08-05 03:48:37 2 2 2019-08-05 03:58:37 2 2 2019-08-05 04:13:37 2 3 2019-08-05 04:23:37 2 3 2019-08-05 04:43:37 2 3 2019-08-05 04:53:37 2 3 2019-08-05 05:08:37 2 3 2019-08-05 05:23:37 2 1 2019-08-05 05:33:37 2 1 2019-08-05 06:03:37 2 1 2019-08-05 06:43:37 2 1 2019-08-05 07:23:37 2 1 2019-08-05 07:33:37 2 1 2019-08-05 07:53:37 2 1 2019-08-05 08:03:37 2 1 2019-08-05 08:13:37 2 1 2019-08-05 08:33:37 2 3 2019-08-05 08:48:37 2 3 2019-08-05 09:13:37 1 1 2019-08-05 09:13:37 2 2 2019-08-05 09:33:37 1 1 2019-08-05 09:33:37 2 4 2019-08-05 09:53:37 2 5 2019-08-05 09:58:37 2 5 2019-08-05 10:33:37 1 1 2019-08-05 10:33:37 2 6 2019-08-05 10:53:37 2 7 2019-08-05 10:58:37 2 7 2019-08-05 11:03:37 2 5 2019-08-05 11:08:37 2 5 2019-08-05 11:33:37 2 6 2019-08-05 11:38:37 2 8 2019-08-05 11:48:37 2 4 2019-08-05 12:03:37 2 4 2019-08-05 12:18:37 2 5 2019-08-05 12:43:37 2 7 2019-08-05 12:53:37 2 7 2019-08-05 12:58:37 2 9 2019-08-05 13:03:37 2 9 2019-08-05 13:23:37 2 11 2019-08-05 13:43:37 2 9 2019-08-05 13:58:37 2 9 2019-08-05 14:03:37 2 11 2019-08-05 14:18:37 2 12 2019-08-05 15:03:37 2 12 2019-08-05 15:23:37 2 10 2019-08-05 15:28:37 2 10 2019-08-05 15:38:37 2 10 2019-08-05 15:48:37 2 10 2019-08-05 16:33:37 2 8 2019-08-05 17:18:37 2 10 2019-08-05 17:38:37 2 8 2019-08-05 17:48:37 2 10 2019-08-05 18:03:37 2 8 2019-08-05 18:48:37 2 7 2019-08-05 18:58:37 2 7 2019-08-05 19:13:37 2 9 2019-08-05 19:48:37 2 7 2019-08-05 20:03:37 2 7 2019-08-05 20:18:37 2 5 2019-08-05 20:33:37 2 6 2019-08-05 20:53:37 2 6 2019-08-05 21:13:37 2 4 2019-08-05 21:28:37 2 8 2019-08-05 21:33:37 2 6 2019-08-05 22:28:37 2 6 2019-08-05 22:38:37 2 6 2019-08-05 22:58:37 2 6 2019-08-05 23:43:37 2 6 2019-08-06 00:23:37 2 5 2019-08-06 00:53:37 2 5 2019-08-06 01:08:37 2 3 2019-08-06 01:18:37 2 3 2019-08-06 01:43:37 2 5 2019-08-06 01:48:37 2 3 2019-08-06 02:53:37 2 2 2019-08-06 03:03:37 2 2 2019-08-06 03:13:37 2 2 2019-08-06 03:23:37 2 2 2019-08-06 03:33:37 2 2 2019-08-06 03:53:37 2 2 2019-08-06 04:13:37 2 1 2019-08-06 04:23:37 2 1 2019-08-06 04:33:37 2 1 2019-08-06 04:43:37 2 1 2019-08-06 04:53:37 2 1 2019-08-06 05:03:37 2 1 2019-08-06 05:13:37 2 1 2019-08-06 05:23:37 2 1 2019-08-06 05:33:37 2 1 2019-08-06 05:43:37 2 1 2019-08-06 05:53:37 2 1 2019-08-06 06:53:37 2 4 2019-08-06 06:58:37 2 2 2019-08-06 08:23:37 2 2 2019-08-06 09:23:37 2 2 2019-08-06 09:43:37 2 2 2019-08-06 09:58:37 2 2 2019-08-06 10:03:37 2 4 2019-08-06 10:38:37 2 2 2019-08-06 10:58:37 1 1 2019-08-06 10:58:37 2 3 2019-08-06 11:08:37 1 1 2019-08-06 11:08:37 2 3 2019-08-06 11:23:37 2 4 2019-08-06 11:28:37 1 1 2019-08-06 11:28:37 2 5 2019-08-06 12:33:37 1 1 2019-08-06 12:33:37 2 5 2019-08-04 01:53:37 2 3 2019-08-04 02:23:37 2 3 2019-08-04 02:58:37 2 3 2019-08-04 03:23:37 2 3 2019-08-04 03:38:37 2 1 2019-08-04 03:48:37 2 1 2019-08-04 03:58:37 2 1 2019-08-04 04:18:37 2 3 2019-08-04 05:03:37 2 1 2019-08-04 05:13:37 2 1 2019-08-04 05:23:37 2 1 2019-08-04 05:33:37 2 1 2019-08-04 05:43:37 2 1 2019-08-04 05:53:37 2 1 2019-08-04 07:28:37 2 3 2019-08-04 08:03:37 2 1 2019-08-04 08:18:37 2 5 2019-08-04 08:23:37 2 3 2019-08-04 08:33:37 2 5 2019-08-04 08:38:37 2 3 2019-08-04 08:48:37 2 3 2019-08-04 08:58:37 2 3 2019-08-04 09:03:37 2 3 2019-08-04 09:33:37 2 5 2019-08-04 09:43:37 2 3 2019-08-04 10:13:37 2 5 2019-08-04 10:23:37 2 5 2019-08-04 10:28:37 2 3 2019-08-04 10:33:37 2 5 2019-08-04 11:13:37 2 11 2019-08-04 11:33:37 2 9 2019-08-04 11:53:37 2 11 2019-08-04 12:23:37 2 11 2019-08-04 12:28:37 2 13 2019-08-04 12:33:37 2 11 2019-08-04 12:38:37 2 11 2019-08-04 13:38:37 2 12 2019-08-04 13:48:37 2 12 2019-08-04 13:58:37 2 14 2019-08-04 14:03:37 2 16 2019-08-04 14:48:37 2 6 2019-08-04 15:03:37 2 12 2019-08-04 15:23:37 2 7 2019-08-04 15:33:37 2 7 2019-08-04 15:43:37 2 9 2019-08-04 16:13:37 2 7 2019-08-04 16:23:37 2 7 2019-08-04 16:43:37 2 5 2019-08-04 16:53:37 2 5 2019-08-04 17:28:37 2 5 2019-08-04 17:48:37 2 3 2019-08-04 17:58:37 2 3 2019-08-04 18:18:37 2 5 2019-08-04 18:43:37 2 5 2019-08-04 18:53:37 2 5 2019-08-04 18:58:37 2 7 2019-08-04 19:03:37 2 9 2019-08-04 19:13:37 2 9 2019-08-04 19:33:37 2 6 2019-08-04 19:48:37 2 4 2019-08-04 19:58:37 2 4 2019-08-04 20:23:37 2 6 2019-08-04 20:53:37 2 6 2019-08-04 21:13:37 2 8 2019-08-04 21:33:37 1 1 2019-08-04 21:33:37 2 9 2019-08-04 21:53:37 1 1 2019-08-04 21:53:37 2 7 2019-08-04 22:08:37 2 8 2019-08-04 22:13:37 2 6 2019-08-04 22:33:37 1 1 2019-08-04 22:33:37 2 7 2019-08-04 22:38:37 1 1 2019-08-04 22:38:37 2 7 2019-08-04 22:58:37 1 1 2019-08-04 22:58:37 2 9 2019-08-04 23:48:37 2 10 2019-08-05 00:38:37 2 6 2019-08-05 00:53:37 2 4 2019-08-05 01:03:37 2 4 2019-08-05 02:38:37 2 3 2019-08-05 02:48:37 2 3 2019-08-05 02:58:37 2 3 2019-08-05 03:08:37 2 3 2019-08-05 03:18:37 2 3 2019-08-05 04:18:37 2 3 2019-08-05 04:28:37 2 3 2019-08-05 04:38:37 2 3 2019-08-05 04:48:37 2 3 2019-08-05 04:58:37 2 3 2019-08-05 05:18:37 2 1 2019-08-05 05:28:37 2 1 2019-08-05 05:38:37 2 1 2019-08-05 05:58:37 2 1 2019-08-05 06:48:37 2 1 2019-08-05 07:18:37 2 1 2019-08-05 07:28:37 2 1 2019-08-05 07:58:37 2 1 2019-08-05 08:08:37 2 1 2019-08-05 08:18:37 2 1 2019-08-05 08:43:37 2 3 2019-08-05 08:58:37 2 5 2019-08-05 09:03:37 2 3 2019-08-05 10:08:37 2 5 2019-08-05 10:28:37 1 1 2019-08-05 10:28:37 2 4 2019-08-05 10:38:37 1 1 2019-08-05 10:38:37 2 6 2019-08-05 11:13:37 2 6 2019-08-05 11:23:37 2 6 2019-08-05 11:43:37 2 8 2019-08-05 11:58:37 2 4 2019-08-05 14:08:37 2 14 2019-08-05 14:13:37 2 12 2019-08-05 14:23:37 2 12 2019-08-05 14:43:37 2 14 2019-08-05 14:53:37 2 14 2019-08-05 15:18:37 2 10 2019-08-05 15:43:37 2 10 2019-08-05 16:03:37 2 12 2019-08-05 16:08:37 2 12 2019-08-05 16:23:37 2 8 2019-08-05 16:43:37 2 10 2019-08-05 16:58:37 2 8 2019-08-05 17:08:37 2 8 2019-08-05 17:23:37 2 12 2019-08-05 17:33:37 2 8 2019-08-05 18:13:37 2 8 2019-08-05 18:43:37 2 7 2019-08-05 18:53:37 2 5 2019-08-05 19:28:37 2 5 2019-08-05 19:33:37 2 7 2019-08-05 19:53:37 2 7 2019-08-05 20:38:37 2 8 2019-08-05 20:43:37 2 6 2019-08-05 20:58:37 2 6 2019-08-05 21:18:37 2 4 2019-08-05 21:23:37 2 6 2019-08-05 21:38:37 2 6 2019-08-05 21:53:37 2 8 2019-08-05 22:13:37 2 8 2019-08-05 22:18:37 2 6 2019-08-05 22:23:37 2 6 2019-08-05 22:43:37 2 6 2019-08-05 22:53:37 2 8 2019-08-05 23:03:37 2 6 2019-08-05 23:08:37 2 4 2019-08-05 23:38:37 2 4 2019-08-05 23:48:37 2 6 2019-08-06 00:03:37 2 7 2019-08-06 00:08:37 2 7 2019-08-06 00:28:37 2 5 2019-08-06 01:13:37 2 3 2019-08-06 01:23:37 2 3 2019-08-06 01:33:37 2 5 2019-08-06 01:53:37 2 3 2019-08-06 02:38:37 2 2 2019-08-06 02:58:37 2 2 2019-08-06 03:08:37 2 2 2019-08-06 03:18:37 2 2 2019-08-06 03:28:37 2 2 2019-08-06 03:38:37 2 2 2019-08-06 03:58:37 2 2 2019-08-06 06:08:37 2 2 2019-08-06 06:18:37 2 2 2019-08-06 06:28:37 2 2 2019-08-06 06:38:37 2 2 2019-08-06 06:48:37 2 3 2019-08-06 07:03:37 2 1 2019-08-06 07:18:37 2 1 2019-08-06 07:28:37 2 1 2019-08-06 07:48:37 2 1 2019-08-06 07:53:37 2 1 2019-08-06 08:03:37 2 1 2019-08-06 08:33:37 2 1 2019-08-06 08:48:37 2 1 2019-08-06 08:53:37 2 1 2019-08-06 09:03:37 2 1 2019-08-06 09:18:37 2 3 2019-08-06 09:33:37 2 1 2019-08-06 09:53:37 2 3 2019-08-06 10:18:37 2 3 2019-08-06 10:28:37 2 5 2019-08-06 10:48:37 2 1 2019-08-06 11:13:37 1 1 2019-08-06 13:48:37 2 9 2019-08-06 14:03:37 1 1 2019-08-06 14:03:37 2 7 2019-08-06 14:58:37 1 1 2019-08-06 14:58:37 2 7 2019-08-06 15:13:37 2 6 2019-08-06 15:53:37 2 4 2019-08-06 16:13:37 2 4 2019-08-06 16:28:37 2 6 2019-08-06 17:13:37 2 6 2019-08-06 17:18:37 2 4 2019-08-06 17:28:37 2 4 2019-08-06 17:53:37 2 4 2019-08-06 19:08:37 2 4 2019-08-06 19:38:37 2 8 2019-08-06 19:48:37 2 6 2019-08-06 19:58:37 2 6 2019-08-06 20:13:37 2 6 2019-08-06 21:08:37 1 1 2019-08-06 21:08:37 2 5 2019-08-06 21:18:37 1 1 2019-08-06 21:18:37 2 7 2019-08-06 21:58:37 1 1 2019-08-06 21:58:37 2 3 2019-08-06 22:23:37 2 4 2019-08-06 22:28:37 2 2 2019-08-06 22:33:37 2 4 2019-08-06 22:38:37 2 4 2019-08-06 23:08:37 2 4 2019-08-06 23:28:37 2 2 2019-08-06 23:33:37 2 4 2019-08-07 00:13:37 2 2 2019-08-07 01:28:37 2 2 2019-08-07 03:18:37 2 2 2019-08-07 03:28:37 2 2 2019-08-07 04:03:37 2 4 2019-08-07 04:13:37 2 4 2019-08-07 04:23:37 2 4 2019-08-07 04:33:37 2 4 2019-08-07 04:48:37 2 2 2019-08-07 04:58:37 2 2 2019-08-07 08:08:37 2 2 2019-08-07 08:18:37 2 2 2019-08-07 08:28:37 2 4 2019-08-07 09:33:37 2 2 2019-08-07 10:13:37 1 1 2019-08-07 10:13:37 2 1 2019-08-07 10:28:37 2 5 2019-08-07 10:33:37 2 3 2019-08-07 11:28:37 2 2 2019-08-07 11:33:37 2 3 2019-08-07 11:48:37 2 5 2019-08-07 11:53:37 2 5 2019-08-07 12:03:37 2 5 2019-08-07 12:13:37 2 5 2019-08-07 12:28:37 2 7 2019-08-07 12:58:37 2 7 2019-08-07 13:18:37 2 5 2019-08-07 13:38:37 2 5 2019-08-07 13:53:37 2 3 2019-08-07 13:58:37 2 3 2019-08-07 14:18:37 2 1 2019-08-07 14:43:37 2 5 2019-08-07 14:48:37 2 5 2019-08-07 15:13:37 1 1 2019-08-07 15:13:37 2 2 2019-08-07 15:48:37 2 5 2019-08-07 16:13:37 2 1 2019-08-07 16:28:37 2 3 2019-08-07 16:38:37 2 3 2019-08-07 16:53:37 2 5 2019-08-07 17:08:37 2 5 2019-08-07 18:33:37 2 6 2019-08-07 18:43:37 2 4 2019-08-07 18:53:37 2 4 2019-08-07 19:03:37 2 4 2019-08-07 19:28:37 2 3 2019-08-07 19:48:37 2 1 2019-08-07 20:03:37 2 3 2019-08-07 20:13:37 2 1 2019-08-07 20:18:37 2 2 2019-08-07 20:28:37 2 4 2019-08-07 20:33:37 2 4 2019-08-07 21:28:37 2 6 2019-08-07 21:48:37 2 8 2019-08-07 21:58:37 1 1 2019-08-07 21:58:37 2 9 2019-08-07 22:18:37 1 1 2019-08-07 22:18:37 2 9 2019-08-07 22:23:37 1 1 2019-08-07 22:23:37 2 7 2019-08-07 22:58:37 2 8 2019-08-07 23:08:37 2 8 2019-08-07 23:18:37 2 8 2019-08-08 00:03:37 2 6 2019-08-08 00:23:37 2 4 2019-08-08 00:28:37 2 4 2019-08-08 01:13:37 2 2 2019-08-08 01:23:37 2 2 2019-08-08 01:33:37 2 2 2019-08-08 01:43:37 2 2 2019-08-08 01:53:37 2 2 2019-08-08 02:13:37 2 4 2019-08-08 02:53:37 2 4 2019-08-08 03:03:37 2 4 2019-08-08 03:13:37 2 4 2019-08-08 03:23:37 2 4 2019-08-08 03:33:37 2 4 2019-08-08 03:43:37 2 4 2019-08-08 03:53:37 2 4 2019-08-08 04:03:37 2 3 2019-08-08 04:13:37 2 3 2019-08-08 05:03:37 2 3 2019-08-08 05:28:37 2 1 2019-08-08 05:38:37 2 1 2019-08-08 05:58:37 2 1 2019-08-08 06:08:37 2 1 2019-08-08 08:03:37 2 2 2019-08-08 08:53:38 2 4 2019-08-08 09:03:37 2 6 2019-08-08 09:08:37 2 4 2019-08-08 09:33:37 2 6 2019-08-08 09:53:37 2 2 2019-08-08 10:13:37 2 1 2019-08-08 10:23:37 2 1 2019-08-08 10:53:37 2 3 2019-08-08 11:18:37 2 6 2019-08-08 11:33:37 2 4 2019-08-08 11:48:37 2 4 2019-08-08 12:53:37 1 1 2019-08-08 12:53:37 2 5 2019-08-08 13:03:37 1 1 2019-08-08 13:03:37 2 5 2019-08-08 13:08:37 1 1 2019-08-08 13:08:37 2 7 2019-08-08 13:13:37 1 1 2019-08-08 13:13:37 2 9 2019-08-08 13:28:37 1 1 2019-08-08 13:28:37 2 6 2019-08-08 14:13:37 1 1 2019-08-08 14:13:37 2 7 2019-08-08 14:38:37 1 1 2019-08-08 14:38:37 2 7 2019-08-08 14:48:37 1 1 2019-08-08 14:48:37 2 7 2019-08-08 15:53:37 2 4 2019-08-08 16:08:37 2 6 2019-08-08 16:28:37 2 6 2019-08-08 16:48:37 2 2 2019-08-08 17:13:37 2 4 2019-08-08 17:38:37 1 1 2019-08-08 17:38:37 2 6 2019-08-08 17:43:37 2 5 2019-08-08 17:53:37 2 5 2019-08-08 17:58:37 2 5 2019-08-08 18:03:37 2 7 2019-08-08 18:08:37 2 6 2019-08-08 18:13:37 2 3 2019-08-08 18:18:37 2 4 2019-08-08 18:28:37 2 5 2019-08-08 18:48:37 2 1 2019-08-08 18:53:37 2 2 2019-08-08 19:03:37 2 3 2019-08-08 19:08:37 2 4 2019-08-08 19:18:37 2 7 2019-08-08 19:23:37 2 9 2019-08-08 19:28:37 2 7 2019-08-08 19:43:37 2 5 2019-08-08 20:23:37 1 1 2019-08-08 20:23:37 2 4 2019-08-08 20:28:37 2 4 2019-08-08 20:48:37 2 5 2019-08-08 20:53:37 2 4 2019-08-08 21:03:37 2 8 2019-08-08 21:13:37 2 7 2019-08-08 21:18:37 2 6 2019-08-08 21:23:37 2 7 2019-08-08 21:43:37 2 9 2019-08-08 21:48:37 2 8 2019-08-08 22:08:37 2 8 2019-08-08 22:13:37 2 9 2019-08-08 22:18:37 2 10 2019-08-08 22:43:37 2 8 2019-08-08 22:53:37 2 9 2019-08-08 23:03:37 2 11 2019-08-06 13:53:37 1 1 2019-08-06 13:53:37 2 6 2019-08-06 14:13:37 1 1 2019-08-06 14:13:37 2 6 2019-08-06 14:33:37 1 1 2019-08-06 14:33:37 2 6 2019-08-06 14:43:37 1 1 2019-08-06 14:43:37 2 8 2019-08-06 14:48:37 1 1 2019-08-06 14:48:37 2 6 2019-08-06 15:08:37 2 7 2019-08-06 15:28:37 2 7 2019-08-06 15:48:37 2 5 2019-08-06 16:03:37 2 3 2019-08-06 17:03:37 2 5 2019-08-06 17:38:37 2 3 2019-08-06 17:43:37 2 3 2019-08-06 18:33:37 2 1 2019-08-06 18:53:37 2 1 2019-08-06 19:03:37 2 1 2019-08-06 19:13:37 2 3 2019-08-06 19:18:37 2 1 2019-08-06 19:23:37 2 3 2019-08-06 20:08:37 2 7 2019-08-06 20:23:37 2 5 2019-08-06 20:38:37 2 3 2019-08-06 20:48:37 2 5 2019-08-06 20:58:37 2 5 2019-08-06 21:48:37 1 1 2019-08-06 21:48:37 2 2 2019-08-06 22:08:37 1 1 2019-08-06 22:08:37 2 2 2019-08-06 22:18:37 2 5 2019-08-06 22:43:38 2 7 2019-08-06 22:58:37 2 5 2019-08-06 23:48:37 2 3 2019-08-06 23:53:37 2 3 2019-08-07 00:03:37 2 1 2019-08-07 00:18:37 2 3 2019-08-07 00:28:37 2 3 2019-08-07 00:33:37 2 1 2019-08-07 00:43:37 2 1 2019-08-07 00:48:37 2 1 2019-08-07 00:58:37 2 1 2019-08-07 01:18:37 2 1 2019-08-07 01:38:37 2 1 2019-08-07 01:48:37 2 1 2019-08-07 02:48:37 2 1 2019-08-07 02:58:37 2 1 2019-08-07 03:08:37 2 1 2019-08-07 03:43:37 2 3 2019-08-07 03:53:37 2 3 2019-08-07 04:08:37 2 4 2019-08-07 04:18:37 2 4 2019-08-07 04:28:37 2 4 2019-08-07 04:38:37 2 4 2019-08-07 04:53:37 2 2 2019-08-07 05:03:37 2 2 2019-08-07 05:33:37 2 2 2019-08-07 07:58:37 2 2 2019-08-07 08:43:37 2 1 2019-08-07 08:58:37 2 3 2019-08-07 09:03:37 2 3 2019-08-07 09:08:37 2 3 2019-08-07 09:13:37 2 1 2019-08-07 09:53:37 2 1 2019-08-07 10:03:37 2 1 2019-08-07 10:58:37 1 1 2019-08-07 10:58:37 2 1 2019-08-07 11:03:37 2 4 2019-08-07 11:18:37 2 4 2019-08-07 11:23:37 2 2 2019-08-07 12:53:37 2 8 2019-08-07 13:08:37 2 6 2019-08-07 13:23:37 2 6 2019-08-07 13:28:37 2 4 2019-08-07 14:08:37 2 2 2019-08-07 14:13:37 2 2 2019-08-07 14:23:37 2 2 2019-08-07 14:38:37 2 2 2019-08-07 15:03:37 1 1 2019-08-07 15:03:37 2 1 2019-08-07 15:23:37 1 1 2019-08-07 15:23:37 2 1 2019-08-07 15:38:37 1 1 2019-08-07 15:38:37 2 5 2019-08-07 16:03:37 2 3 2019-08-07 16:08:37 2 2 2019-08-07 16:18:37 2 2 2019-08-07 17:33:37 2 6 2019-08-07 18:18:37 2 7 2019-08-07 18:28:37 2 7 2019-08-07 18:38:37 2 5 2019-08-07 18:48:37 2 5 2019-08-07 18:58:37 2 5 2019-08-07 20:23:37 2 5 2019-08-07 20:43:37 2 7 2019-08-07 20:48:37 2 7 2019-08-07 21:03:37 2 5 2019-08-07 21:23:37 2 7 2019-08-07 21:53:37 1 1 2019-08-07 21:53:37 2 8 2019-08-07 22:03:37 1 1 2019-08-07 22:03:37 2 6 2019-08-07 22:08:37 2 7 2019-08-07 22:48:37 1 1 2019-08-07 22:48:37 2 8 2019-08-07 23:23:37 2 9 2019-08-07 23:38:37 2 7 2019-08-07 23:48:37 2 7 2019-08-07 23:53:37 2 7 2019-08-08 00:18:37 2 5 2019-08-08 00:43:37 2 5 2019-08-08 00:58:37 2 3 2019-08-08 01:48:37 2 3 2019-08-08 02:03:37 2 3 2019-08-08 02:23:37 2 3 2019-08-08 02:33:37 2 3 2019-08-08 02:43:37 2 3 2019-08-08 02:58:37 2 5 2019-08-08 04:08:37 2 3 2019-08-08 04:18:37 2 3 2019-08-08 04:38:37 2 3 2019-08-08 05:08:37 2 3 2019-08-08 05:33:37 2 1 2019-08-08 05:43:37 2 1 2019-08-08 05:53:37 2 1 2019-08-08 06:03:37 2 1 2019-08-08 07:58:37 2 2 2019-08-08 09:13:37 2 6 2019-08-08 09:18:37 2 6 2019-08-08 09:23:37 2 6 2019-08-08 09:43:37 2 4 2019-08-08 09:58:37 2 2 2019-08-08 10:18:37 2 1 2019-08-08 10:38:37 2 5 2019-08-08 11:03:37 2 3 2019-08-08 11:08:37 2 3 2019-08-08 11:13:37 2 5 2019-08-08 11:23:37 2 5 2019-08-08 11:38:37 2 6 2019-08-08 11:58:37 2 4 2019-08-08 12:48:37 1 1 2019-08-08 12:48:37 2 5 2019-08-08 13:18:37 1 1 2019-08-08 13:18:37 2 5 2019-08-08 13:23:37 1 1 2019-08-08 13:23:37 2 5 2019-08-08 13:58:37 2 8 2019-08-08 14:03:37 2 6 2019-08-08 14:23:37 1 1 2019-08-08 14:23:37 2 7 2019-08-08 14:28:37 2 8 2019-08-08 14:33:37 1 1 2019-08-08 14:33:37 2 7 2019-08-08 14:43:37 1 1 2019-08-08 14:43:37 2 7 2019-08-08 15:08:37 2 6 2019-08-08 15:48:37 2 4 2019-08-08 16:03:37 2 6 2019-08-08 16:23:37 2 6 2019-08-08 16:38:37 2 4 2019-08-08 17:03:37 2 2 2019-08-08 18:33:37 2 5 2019-08-08 18:38:37 2 3 2019-08-08 19:48:37 2 6 2019-08-08 20:03:37 2 4 2019-08-08 20:13:37 1 1 2019-08-08 20:13:37 2 5 2019-08-08 20:18:37 1 1 2019-08-08 20:18:37 2 5 2019-08-08 20:43:37 2 4 2019-08-08 21:53:37 2 8 2019-08-08 21:58:37 2 10 2019-08-08 22:03:37 2 8 2019-08-08 22:33:37 2 12 2019-08-08 22:38:37 2 10 2019-08-08 22:48:37 2 9 2019-08-08 22:58:37 2 11 2019-08-08 23:08:37 2 11 2019-08-08 23:13:37 2 10 2019-08-08 23:18:37 2 9 2019-08-08 23:23:37 2 9 2019-08-08 23:28:37 2 9 2019-08-08 23:33:37 2 8 2019-08-06 13:58:37 1 1 2019-08-06 13:58:37 2 6 2019-08-06 14:18:37 1 1 2019-08-06 14:18:37 2 6 2019-08-06 14:23:37 1 1 2019-08-06 14:23:37 2 6 2019-08-06 14:28:37 1 1 2019-08-06 14:28:37 2 6 2019-08-06 15:23:37 2 7 2019-08-06 15:38:37 2 3 2019-08-06 15:43:37 2 5 2019-08-06 16:08:37 2 3 2019-08-06 16:43:37 2 7 2019-08-06 16:53:37 2 5 2019-08-06 17:23:37 2 5 2019-08-06 17:48:37 2 3 2019-08-06 17:58:37 2 3 2019-08-06 18:03:37 2 5 2019-08-06 18:13:37 2 3 2019-08-06 18:38:37 2 1 2019-08-06 18:48:37 2 1 2019-08-06 18:58:37 2 1 2019-08-06 19:33:37 2 7 2019-08-06 20:03:37 2 7 2019-08-06 20:18:37 2 5 2019-08-06 21:13:37 1 1 2019-08-06 21:13:37 2 8 2019-08-06 21:23:37 1 1 2019-08-06 21:23:37 2 6 2019-08-06 21:28:37 1 1 2019-08-06 21:28:37 2 4 2019-08-06 21:33:37 1 1 2019-08-06 21:33:37 2 4 2019-08-06 21:38:37 1 1 2019-08-06 21:38:37 2 4 2019-08-06 21:53:37 1 1 2019-08-06 21:53:37 2 2 2019-08-06 22:48:37 2 7 2019-08-06 23:03:37 2 5 2019-08-06 23:13:37 2 3 2019-08-06 23:18:37 2 3 2019-08-06 23:38:37 2 3 2019-08-06 23:43:37 2 3 2019-08-06 23:58:37 2 1 2019-08-07 00:08:37 2 1 2019-08-07 00:23:37 2 3 2019-08-07 00:38:37 2 1 2019-08-07 00:53:37 2 1 2019-08-07 01:23:37 2 1 2019-08-07 01:43:37 2 1 2019-08-07 02:53:37 2 1 2019-08-07 03:03:37 2 1 2019-08-07 03:13:37 2 1 2019-08-07 03:38:37 2 3 2019-08-07 03:48:37 2 3 2019-08-07 04:43:37 2 3 2019-08-07 05:08:37 2 1 2019-08-07 05:18:37 2 1 2019-08-07 05:28:37 2 1 2019-08-07 05:38:37 2 1 2019-08-07 05:48:37 2 1 2019-08-07 06:08:37 1 1 2019-08-07 06:18:37 1 1 2019-08-07 06:33:37 2 1 2019-08-07 06:43:37 2 1 2019-08-07 07:53:37 2 2 2019-08-07 08:33:37 2 5 2019-08-07 08:53:37 2 3 2019-08-07 09:18:37 2 3 2019-08-07 09:58:37 2 1 2019-08-07 10:08:37 2 1 2019-08-07 10:48:37 1 1 2019-08-07 10:48:37 2 1 2019-08-07 11:58:37 2 4 2019-08-07 12:18:37 2 4 2019-08-07 12:33:37 2 6 2019-08-07 12:38:37 2 8 2019-08-07 12:43:37 2 8 2019-08-07 13:13:37 2 6 2019-08-07 13:33:37 2 6 2019-08-07 13:43:37 2 4 2019-08-07 14:03:37 2 2 2019-08-07 14:53:37 1 1 2019-08-07 14:53:37 2 3 2019-08-07 15:08:37 1 1 2019-08-07 15:08:37 2 1 2019-08-07 15:53:37 2 4 2019-08-07 15:58:37 2 2 2019-08-07 16:58:37 2 4 2019-08-07 17:13:37 2 6 2019-08-07 17:18:37 2 6 2019-08-07 17:28:37 2 6 2019-08-07 17:43:37 2 8 2019-08-07 17:48:37 2 8 2019-08-07 17:53:37 2 10 2019-08-07 18:08:37 2 6 2019-08-07 19:08:37 2 3 2019-08-07 19:18:37 2 3 2019-08-07 19:38:37 2 2 2019-08-07 19:53:37 2 2 2019-08-07 20:08:37 2 2 2019-08-07 20:58:37 2 5 2019-08-07 21:08:37 2 7 2019-08-07 21:18:37 2 7 2019-08-07 22:33:37 1 1 2019-08-07 22:33:37 2 8 2019-08-07 22:53:37 1 1 2019-08-07 22:53:37 2 10 2019-08-07 23:03:37 2 7 2019-08-07 23:28:37 2 9 2019-08-07 23:43:37 2 7 2019-08-07 23:58:37 2 7 2019-08-08 00:08:37 2 5 2019-08-08 00:38:38 2 5 2019-08-08 00:48:37 2 5 2019-08-08 00:53:37 2 3 2019-08-08 01:03:37 2 3 2019-08-08 02:08:37 2 3 2019-08-08 02:28:37 2 3 2019-08-08 02:38:37 2 3 2019-08-08 02:48:37 2 3 2019-08-08 03:58:37 2 3 2019-08-08 04:23:37 2 4 2019-08-08 04:33:37 2 4 2019-08-08 04:43:37 2 4 2019-08-08 04:53:37 2 4 2019-08-08 05:18:37 2 2 2019-08-08 06:18:37 2 1 2019-08-08 07:18:37 2 1 2019-08-08 07:28:37 2 1 2019-08-08 07:38:37 2 1 2019-08-08 07:48:37 2 1 2019-08-08 07:53:37 2 3 2019-08-08 08:13:37 2 3 2019-08-08 08:28:37 2 3 2019-08-08 08:38:37 2 3 2019-08-08 08:48:37 2 3 2019-08-08 08:58:37 2 5 2019-08-08 09:28:37 2 5 2019-08-08 09:38:37 2 3 2019-08-08 09:48:37 2 5 2019-08-08 11:43:37 2 7 2019-08-08 12:28:37 2 3 2019-08-08 12:38:37 2 3 2019-08-08 12:58:37 1 1 2019-08-08 12:58:37 2 4 2019-08-08 13:38:37 1 1 2019-08-08 13:38:37 2 6 2019-08-08 14:08:37 2 9 2019-08-08 14:18:37 1 1 2019-08-08 14:18:37 2 6 2019-08-08 14:53:37 1 1 2019-08-08 14:53:37 2 8 2019-08-08 15:13:38 1 1 2019-08-08 15:13:38 2 4 2019-08-08 15:23:37 1 1 2019-08-08 15:23:37 2 4 2019-08-08 15:38:37 1 1 2019-08-08 15:38:37 2 4 2019-08-08 15:43:37 1 1 2019-08-08 15:43:37 2 4 2019-08-08 16:13:37 2 7 2019-08-08 16:58:37 2 3 2019-08-08 17:23:37 2 5 2019-08-08 17:33:37 2 5 2019-08-08 17:48:37 2 5 2019-08-08 18:23:37 2 4 2019-08-08 18:43:37 2 4 2019-08-08 18:58:37 2 2 2019-08-08 19:13:37 2 5 2019-08-08 19:33:37 2 7 2019-08-08 19:38:37 2 5 2019-08-08 19:53:37 2 7 2019-08-08 19:58:37 2 5 2019-08-08 20:08:37 1 1 2019-08-08 20:08:37 2 4 2019-08-08 20:33:37 2 3 2019-08-08 20:38:37 2 5 2019-08-08 20:58:37 2 7 2019-08-08 21:08:37 2 7 2019-08-08 21:28:37 2 5 2019-08-08 21:33:37 2 7 2019-08-08 21:38:37 2 9 2019-08-08 22:23:37 2 13 2019-08-08 22:28:37 2 11 2019-08-06 14:08:37 1 1 2019-08-06 14:08:37 2 7 2019-08-06 14:38:37 1 1 2019-08-06 14:38:37 2 7 2019-08-06 14:53:37 1 1 2019-08-06 14:53:37 2 7 2019-08-06 15:03:37 1 1 2019-08-06 15:03:37 2 7 2019-08-06 15:18:37 2 6 2019-08-06 15:33:37 2 4 2019-08-06 15:58:37 2 4 2019-08-06 16:18:37 2 4 2019-08-06 16:23:37 2 6 2019-08-06 16:33:37 2 6 2019-08-06 16:38:37 2 8 2019-08-06 16:48:37 2 8 2019-08-06 16:58:37 2 6 2019-08-06 17:08:37 2 6 2019-08-06 17:33:37 2 4 2019-08-06 18:08:37 2 4 2019-08-06 18:18:37 2 2 2019-08-06 19:28:37 2 4 2019-08-06 19:43:37 2 6 2019-08-06 19:53:37 2 6 2019-08-06 20:28:37 2 6 2019-08-06 20:33:37 2 4 2019-08-06 20:43:37 2 4 2019-08-06 20:53:37 2 6 2019-08-06 21:03:37 2 4 2019-08-06 21:43:37 1 1 2019-08-06 21:43:37 2 3 2019-08-06 22:03:37 1 1 2019-08-06 22:03:37 2 3 2019-08-06 22:13:37 2 2 2019-08-06 22:53:37 2 6 2019-08-06 23:23:37 2 2 2019-08-07 01:33:37 2 2 2019-08-07 03:23:37 2 2 2019-08-07 03:33:37 2 2 2019-08-07 03:58:37 1 1 2019-08-07 03:58:37 2 3 2019-08-07 05:13:37 2 1 2019-08-07 05:23:37 2 1 2019-08-07 05:43:37 2 1 2019-08-07 06:28:37 2 1 2019-08-07 06:38:37 2 1 2019-08-07 07:28:37 2 1 2019-08-07 07:33:37 1 1 2019-08-07 07:33:37 2 2 2019-08-07 07:48:37 2 1 2019-08-07 08:03:37 2 2 2019-08-07 08:13:37 2 2 2019-08-07 08:23:37 2 2 2019-08-07 08:38:37 2 2 2019-08-07 09:23:37 2 2 2019-08-07 09:28:37 2 2 2019-08-07 10:18:37 2 3 2019-08-07 10:23:37 1 1 2019-08-07 10:23:37 2 4 2019-08-07 10:38:37 2 3 2019-08-07 10:43:37 2 1 2019-08-07 10:53:37 2 1 2019-08-07 11:08:37 2 5 2019-08-07 11:13:37 2 5 2019-08-07 11:38:37 2 5 2019-08-07 11:43:37 2 5 2019-08-07 12:08:37 2 5 2019-08-07 12:23:37 2 5 2019-08-07 12:48:37 2 7 2019-08-07 13:03:37 2 7 2019-08-07 13:48:37 2 3 2019-08-07 14:28:37 2 3 2019-08-07 14:33:37 2 3 2019-08-07 14:58:37 1 1 2019-08-07 14:58:37 2 2 2019-08-07 15:18:37 1 1 2019-08-07 15:18:37 2 2 2019-08-07 15:28:37 1 1 2019-08-07 15:28:37 2 2 2019-08-07 15:33:37 1 1 2019-08-07 15:33:37 2 2 2019-08-07 15:43:37 1 1 2019-08-07 15:43:37 2 6 2019-08-07 16:23:37 2 3 2019-08-07 16:33:37 2 3 2019-08-07 16:43:37 2 3 2019-08-07 16:48:37 2 5 2019-08-07 17:03:37 2 5 2019-08-07 17:23:37 2 7 2019-08-07 17:38:37 2 9 2019-08-07 17:58:37 2 9 2019-08-07 18:03:37 2 9 2019-08-07 18:13:37 2 7 2019-08-07 18:23:37 2 6 2019-08-07 19:13:37 2 2 2019-08-07 19:23:37 2 3 2019-08-07 19:33:37 2 3 2019-08-07 19:43:37 2 1 2019-08-07 19:58:37 2 3 2019-08-07 20:38:37 2 4 2019-08-07 20:53:37 2 8 2019-08-07 21:13:37 2 8 2019-08-07 21:33:37 2 6 2019-08-07 21:38:37 2 8 2019-08-07 21:43:37 2 8 2019-08-07 22:13:37 2 8 2019-08-07 22:28:37 1 1 2019-08-07 22:28:37 2 7 2019-08-07 22:38:37 1 1 2019-08-07 22:38:37 2 7 2019-08-07 22:43:37 1 1 2019-08-07 22:43:37 2 9 2019-08-07 23:13:37 2 8 2019-08-07 23:33:37 2 8 2019-08-08 00:13:37 2 4 2019-08-08 00:33:37 2 4 2019-08-08 01:08:37 2 2 2019-08-08 01:18:37 2 2 2019-08-08 01:28:37 2 2 2019-08-08 01:38:37 2 2 2019-08-08 01:58:37 2 2 2019-08-08 02:18:37 2 4 2019-08-08 03:08:37 2 4 2019-08-08 03:18:37 2 4 2019-08-08 03:28:37 2 4 2019-08-08 03:38:37 2 4 2019-08-08 03:48:37 2 4 2019-08-08 04:28:37 2 4 2019-08-08 04:48:37 2 4 2019-08-08 04:58:37 2 4 2019-08-08 05:13:37 2 2 2019-08-08 05:23:37 2 2 2019-08-08 06:13:37 2 1 2019-08-08 07:13:37 2 1 2019-08-08 07:23:37 2 1 2019-08-08 07:33:37 2 1 2019-08-08 07:43:37 2 1 2019-08-08 08:08:37 2 3 2019-08-08 08:18:37 2 3 2019-08-08 08:23:37 2 3 2019-08-08 08:33:37 2 3 2019-08-08 08:43:37 2 3 2019-08-08 10:03:37 2 1 2019-08-08 10:08:37 2 2 2019-08-08 10:28:37 2 2 2019-08-08 10:33:37 2 4 2019-08-08 10:43:37 2 6 2019-08-08 10:48:37 2 4 2019-08-08 10:58:37 2 4 2019-08-08 11:28:37 2 5 2019-08-08 11:53:37 2 5 2019-08-08 12:03:37 2 5 2019-08-08 12:08:37 2 5 2019-08-08 12:13:37 2 3 2019-08-08 12:18:37 2 3 2019-08-08 12:23:37 2 3 2019-08-08 12:33:37 2 3 2019-08-08 12:43:37 1 1 2019-08-08 12:43:37 2 4 2019-08-08 13:33:37 1 1 2019-08-08 13:33:37 2 6 2019-08-08 13:43:37 1 1 2019-08-08 13:43:37 2 6 2019-08-08 13:48:37 1 1 2019-08-08 13:48:37 2 6 2019-08-08 13:53:37 2 7 2019-08-08 14:58:37 1 1 2019-08-08 14:58:37 2 8 2019-08-08 15:03:37 1 1 2019-08-08 15:03:37 2 6 2019-08-08 15:18:37 1 1 2019-08-08 15:18:37 2 4 2019-08-08 15:28:37 1 1 2019-08-08 15:28:37 2 6 2019-08-08 15:33:37 1 1 2019-08-08 15:33:37 2 4 2019-08-08 15:58:37 2 5 2019-08-08 16:18:37 2 7 2019-08-08 16:33:37 1 1 2019-08-08 16:33:37 2 6 2019-08-08 16:43:37 2 3 2019-08-08 16:53:37 2 3 2019-08-08 17:08:37 2 5 2019-08-08 17:18:37 2 5 2019-08-08 17:28:37 2 5 2019-08-08 23:38:37 2 7 2019-08-08 23:53:37 2 9 2019-08-09 00:13:37 2 6 2019-08-09 00:28:37 2 6 2019-08-09 00:33:37 2 8 2019-08-09 00:48:37 2 6 2019-08-09 01:03:37 2 6 2019-08-09 01:18:37 2 4 2019-08-09 01:48:37 2 4 2019-08-09 01:58:37 2 4 2019-08-09 02:23:37 2 4 2019-08-09 02:43:37 2 4 2019-08-09 03:18:37 2 5 2019-08-09 03:53:37 2 5 2019-08-09 04:03:37 2 5 2019-08-09 04:13:37 2 5 2019-08-09 05:38:37 2 2 2019-08-09 05:48:37 2 2 2019-08-09 05:58:37 2 2 2019-08-09 06:08:37 2 2 2019-08-09 06:18:37 2 2 2019-08-09 06:28:37 2 2 2019-08-09 06:38:37 2 2 2019-08-09 06:48:37 2 2 2019-08-09 06:58:37 2 2 2019-08-09 07:08:37 2 2 2019-08-09 07:18:37 2 2 2019-08-09 08:23:37 2 1 2019-08-09 08:28:37 2 3 2019-08-09 09:13:37 2 1 2019-08-09 09:23:37 2 1 2019-08-09 09:43:37 2 1 2019-08-09 10:03:37 2 3 2019-08-09 10:28:37 2 3 2019-08-09 10:38:37 2 7 2019-08-09 10:53:37 2 5 2019-08-09 11:03:37 2 5 2019-08-09 11:33:37 1 1 2019-08-09 11:33:37 2 6 2019-08-09 11:43:37 1 1 2019-08-09 11:43:37 2 6 2019-08-09 12:18:37 1 1 2019-08-09 12:18:37 2 6 2019-08-09 12:33:37 1 1 2019-08-09 12:33:37 2 8 2019-08-09 12:48:37 1 1 2019-08-09 12:48:37 2 6 2019-08-09 13:13:37 1 1 2019-08-09 13:13:37 2 8 2019-08-09 13:28:37 1 1 2019-08-09 13:28:37 2 8 2019-08-09 13:33:37 1 1 2019-08-09 13:33:37 2 8 2019-08-09 13:58:37 1 1 2019-08-09 13:58:37 2 6 2019-08-09 14:28:37 1 1 2019-08-09 14:28:37 2 8 2019-08-09 14:38:37 1 1 2019-08-09 14:38:37 2 8 2019-08-09 14:43:37 1 1 2019-08-09 14:43:37 2 6 2019-08-09 14:53:37 1 1 2019-08-09 14:53:37 2 6 2019-08-09 15:18:37 1 1 2019-08-09 15:18:37 2 4 2019-08-09 15:33:37 1 1 2019-08-09 15:33:37 2 6 2019-08-09 15:53:37 1 1 2019-08-09 15:53:37 2 6 2019-08-09 16:13:37 1 1 2019-08-09 16:13:37 2 2 2019-08-09 16:18:37 1 1 2019-08-09 16:18:37 2 4 2019-08-09 16:43:37 1 1 2019-08-09 16:43:37 2 3 2019-08-09 16:53:37 1 1 2019-08-09 16:53:37 2 7 2019-08-09 16:58:37 1 1 2019-08-09 16:58:37 2 5 2019-08-09 17:23:37 1 1 2019-08-09 17:23:37 2 5 2019-08-09 17:43:37 2 2 2019-08-09 17:48:37 2 2 2019-08-09 17:58:37 2 4 2019-08-09 18:08:37 2 4 2019-08-09 18:18:37 2 4 2019-08-09 18:33:37 2 2 2019-08-09 18:48:37 2 6 2019-08-09 18:58:37 2 6 2019-08-09 19:03:37 2 8 2019-08-09 19:18:37 2 6 2019-08-09 19:33:37 2 6 2019-08-09 20:38:37 1 1 2019-08-09 20:38:37 2 8 2019-08-09 20:43:37 1 1 2019-08-09 20:43:37 2 8 2019-08-09 20:58:37 1 1 2019-08-09 20:58:37 2 8 2019-08-09 21:43:37 1 1 2019-08-09 21:43:37 2 6 2019-08-09 21:53:37 1 1 2019-08-09 21:53:37 2 6 2019-08-09 22:23:37 1 1 2019-08-09 22:23:37 2 4 2019-08-09 22:28:37 1 1 2019-08-09 22:28:37 2 4 2019-08-09 22:43:37 1 1 2019-08-09 22:43:37 2 6 2019-08-09 23:03:37 1 1 2019-08-09 23:03:37 2 10 2019-08-09 23:08:37 1 1 2019-08-09 23:08:37 2 10 2019-08-09 23:48:37 1 1 2019-08-09 23:48:37 2 10 2019-08-09 23:53:37 2 9 2019-08-10 00:03:37 1 1 2019-08-10 00:03:37 2 8 2019-08-10 00:08:37 2 7 2019-08-10 00:33:37 2 5 2019-08-10 00:43:37 2 5 2019-08-10 01:28:37 2 7 2019-08-10 01:43:37 2 5 2019-08-10 01:53:37 2 5 2019-08-10 02:13:37 2 7 2019-08-10 02:43:37 2 3 2019-08-10 02:58:37 2 5 2019-08-10 03:08:37 2 5 2019-08-10 03:13:37 2 3 2019-08-10 03:33:37 2 3 2019-08-10 03:43:37 2 3 2019-08-10 03:53:37 2 3 2019-08-10 04:03:37 2 2 2019-08-10 04:13:37 2 2 2019-08-10 04:33:37 2 2 2019-08-10 04:43:37 2 2 2019-08-10 04:53:37 2 2 2019-08-10 05:03:37 2 2 2019-08-10 05:13:37 2 2 2019-08-10 05:23:37 2 2 2019-08-10 05:33:37 2 2 2019-08-10 05:43:37 2 2 2019-08-10 05:53:37 2 2 2019-08-10 06:23:37 2 2 2019-08-10 06:33:37 2 2 2019-08-10 06:43:37 2 2 2019-08-10 07:13:37 2 2 2019-08-10 07:28:37 2 1 2019-08-10 07:48:37 2 3 2019-08-10 08:03:37 2 1 2019-08-10 08:28:37 2 1 2019-08-10 08:38:37 2 1 2019-08-10 08:48:37 2 1 2019-08-10 08:58:37 2 1 2019-08-10 09:18:37 2 1 2019-08-10 09:28:37 2 1 2019-08-10 09:58:37 2 1 2019-08-10 10:08:37 2 1 2019-08-10 10:38:37 2 1 2019-08-10 10:48:37 2 1 2019-08-10 11:08:37 2 1 2019-08-10 11:28:37 2 1 2019-08-10 11:38:37 2 3 2019-08-10 12:03:37 2 5 2019-08-10 12:13:37 2 5 2019-08-10 13:03:37 2 7 2019-08-10 13:08:37 2 9 2019-08-10 13:53:37 2 4 2019-08-10 14:03:37 2 4 2019-08-10 14:13:37 2 4 2019-08-10 14:23:37 2 4 2019-08-10 14:28:37 2 5 2019-08-10 14:48:37 2 5 2019-08-10 14:53:37 2 5 2019-08-10 15:08:37 2 7 2019-08-10 15:23:37 2 7 2019-08-10 15:28:37 2 5 2019-08-10 15:38:37 2 5 2019-08-10 15:48:37 2 5 2019-08-10 15:58:37 2 5 2019-08-10 16:08:37 2 5 2019-08-10 16:43:37 2 1 2019-08-10 16:53:37 2 3 2019-08-10 16:58:37 2 1 2019-08-10 17:08:37 2 1 2019-08-10 17:23:37 2 3 2019-08-08 23:43:37 2 9 2019-08-08 23:48:37 2 9 2019-08-08 23:58:37 2 8 2019-08-09 00:08:37 2 6 2019-08-09 00:58:37 2 4 2019-08-09 01:33:37 2 4 2019-08-09 01:53:37 2 4 2019-08-09 02:28:37 2 4 2019-08-09 03:33:37 2 3 2019-08-09 03:48:37 2 5 2019-08-09 03:58:37 2 5 2019-08-09 04:08:37 2 5 2019-08-09 04:43:37 2 3 2019-08-09 04:48:37 2 4 2019-08-09 05:43:37 2 2 2019-08-09 05:53:37 2 2 2019-08-09 06:03:37 2 2 2019-08-09 06:13:37 2 2 2019-08-09 06:23:37 2 2 2019-08-09 06:33:37 2 2 2019-08-09 06:43:37 2 2 2019-08-09 06:53:37 2 2 2019-08-09 07:03:37 2 2 2019-08-09 07:13:37 2 2 2019-08-09 07:23:37 2 2 2019-08-09 08:13:37 2 2 2019-08-09 08:48:37 2 2 2019-08-09 09:03:37 2 2 2019-08-09 09:53:37 2 4 2019-08-09 09:58:37 2 2 2019-08-09 11:08:37 2 4 2019-08-09 11:13:37 2 4 2019-08-09 11:23:37 2 4 2019-08-09 11:28:37 1 1 2019-08-09 11:28:37 2 3 2019-08-09 11:38:37 1 1 2019-08-09 11:38:37 2 5 2019-08-09 11:53:37 1 1 2019-08-09 11:53:37 2 7 2019-08-09 12:38:37 1 1 2019-08-09 12:38:37 2 7 2019-08-09 12:43:37 1 1 2019-08-09 12:43:37 2 7 2019-08-09 12:53:37 1 1 2019-08-09 12:53:37 2 7 2019-08-09 14:08:37 1 1 2019-08-09 14:08:37 2 7 2019-08-09 14:18:37 1 1 2019-08-09 14:18:37 2 7 2019-08-09 15:08:37 1 1 2019-08-09 15:08:37 2 5 2019-08-09 15:28:37 1 1 2019-08-09 15:28:37 2 5 2019-08-09 15:38:37 1 1 2019-08-09 15:38:37 2 5 2019-08-09 15:48:37 1 1 2019-08-09 15:48:37 2 5 2019-08-09 15:58:37 1 1 2019-08-09 15:58:37 2 5 2019-08-09 16:23:37 1 1 2019-08-09 16:23:37 2 3 2019-08-09 16:48:37 1 1 2019-08-09 16:48:37 2 6 2019-08-09 17:08:37 1 1 2019-08-09 17:08:37 2 6 2019-08-09 17:13:37 1 1 2019-08-09 17:13:37 2 4 2019-08-09 17:33:37 1 1 2019-08-09 17:33:37 2 4 2019-08-09 18:03:37 2 3 2019-08-09 18:13:37 2 3 2019-08-09 18:53:37 2 5 2019-08-09 19:13:37 2 9 2019-08-09 19:38:37 2 5 2019-08-09 20:03:37 2 7 2019-08-09 20:08:37 2 5 2019-08-09 20:18:37 2 7 2019-08-09 21:23:37 1 1 2019-08-09 21:23:37 2 7 2019-08-09 21:33:37 1 1 2019-08-09 21:33:37 2 7 2019-08-09 22:03:37 2 6 2019-08-09 22:18:37 1 1 2019-08-09 22:18:37 2 5 2019-08-09 22:38:37 1 1 2019-08-09 22:38:37 2 5 2019-08-09 22:53:37 1 1 2019-08-09 22:53:37 2 7 2019-08-09 23:28:37 1 1 2019-08-09 23:28:37 2 7 2019-08-09 23:43:37 1 1 2019-08-09 23:43:37 2 9 2019-08-10 00:13:37 2 6 2019-08-10 00:38:37 2 4 2019-08-10 00:58:37 2 6 2019-08-10 01:08:37 2 6 2019-08-10 01:18:37 2 6 2019-08-10 01:38:37 2 4 2019-08-10 01:48:37 2 4 2019-08-10 02:18:37 2 6 2019-08-10 02:28:37 2 6 2019-08-10 02:33:37 2 4 2019-08-10 03:28:37 2 2 2019-08-10 03:58:37 2 2 2019-08-10 04:08:37 2 2 2019-08-10 04:28:37 2 2 2019-08-10 04:38:37 2 2 2019-08-10 04:48:37 2 2 2019-08-10 04:58:37 2 2 2019-08-10 05:08:37 2 2 2019-08-10 05:18:37 2 2 2019-08-10 05:28:37 2 2 2019-08-10 05:38:37 2 2 2019-08-10 05:48:37 2 2 2019-08-10 05:58:37 2 2 2019-08-10 06:28:37 2 2 2019-08-10 06:38:37 2 2 2019-08-10 07:08:37 2 2 2019-08-10 07:33:37 2 1 2019-08-10 07:43:37 2 1 2019-08-10 07:58:37 2 1 2019-08-10 08:23:37 2 1 2019-08-10 08:33:37 2 1 2019-08-10 08:53:37 2 1 2019-08-10 09:33:37 2 1 2019-08-10 10:03:37 2 1 2019-08-10 10:13:37 2 1 2019-08-10 10:23:37 2 1 2019-08-10 10:53:37 2 1 2019-08-10 11:58:37 2 5 2019-08-10 12:28:37 2 7 2019-08-10 12:48:37 2 7 2019-08-10 12:58:37 2 7 2019-08-10 13:18:37 2 8 2019-08-10 13:33:37 2 6 2019-08-10 13:43:37 2 6 2019-08-10 13:58:37 2 4 2019-08-10 14:08:37 2 4 2019-08-10 14:18:37 2 4 2019-08-10 14:33:37 2 5 2019-08-10 15:13:37 2 7 2019-08-10 15:43:37 2 5 2019-08-10 16:03:37 2 5 2019-08-10 16:13:37 2 5 2019-08-10 16:23:37 2 7 2019-08-10 16:28:37 2 5 2019-08-10 16:33:37 2 3 2019-08-10 16:48:37 2 3 2019-08-10 17:03:37 2 1 2019-08-10 17:13:37 2 5 2019-08-10 17:28:37 2 3 2019-08-10 17:33:37 2 3 2019-08-10 17:48:37 2 5 2019-08-10 18:03:37 2 7 2019-08-10 18:08:37 2 7 2019-08-10 18:13:37 2 5 2019-08-10 18:23:37 2 5 2019-08-10 18:28:37 2 3 2019-08-10 18:33:37 2 5 2019-08-10 18:38:37 2 5 2019-08-10 19:03:37 2 7 2019-08-10 19:08:37 2 5 2019-08-10 19:23:37 2 5 2019-08-10 19:28:37 2 3 2019-08-10 19:38:37 2 3 2019-08-10 19:43:37 2 3 2019-08-10 19:48:37 2 3 2019-08-10 20:28:37 2 6 2019-08-10 20:38:37 2 4 2019-08-10 20:43:37 2 4 2019-08-10 20:48:37 2 4 2019-08-10 20:53:37 2 6 2019-08-10 20:58:37 2 8 2019-08-10 21:18:37 2 4 2019-08-10 21:33:37 1 1 2019-08-10 21:33:37 2 3 2019-08-10 21:38:37 1 1 2019-08-10 21:38:37 2 3 2019-08-10 21:48:37 1 1 2019-08-10 21:48:37 2 5 2019-08-10 21:53:37 1 1 2019-08-10 21:53:37 2 7 2019-08-10 22:08:37 1 1 2019-08-10 22:08:37 2 3 2019-08-10 22:18:37 1 1 2019-08-09 00:03:37 2 7 2019-08-09 00:23:37 2 5 2019-08-09 00:38:37 2 7 2019-08-09 00:53:37 2 7 2019-08-09 01:08:37 2 5 2019-08-09 01:23:37 2 3 2019-08-09 01:38:37 2 5 2019-08-09 02:03:37 2 3 2019-08-09 02:13:37 2 5 2019-08-09 02:33:37 2 5 2019-08-09 02:48:37 2 3 2019-08-09 02:58:37 2 3 2019-08-09 03:08:37 2 3 2019-08-09 03:13:37 2 4 2019-08-09 03:23:37 2 4 2019-08-09 03:28:37 2 2 2019-08-09 03:38:37 2 4 2019-08-09 04:18:37 2 4 2019-08-09 04:28:37 2 4 2019-08-09 04:38:37 2 4 2019-08-09 04:58:37 2 3 2019-08-09 05:08:37 2 3 2019-08-09 05:18:37 2 3 2019-08-09 05:28:37 2 3 2019-08-09 07:28:37 2 3 2019-08-09 08:38:37 2 2 2019-08-09 08:43:38 2 2 2019-08-09 08:53:37 2 2 2019-08-09 08:58:37 2 2 2019-08-09 09:48:37 2 2 2019-08-09 10:08:37 2 4 2019-08-09 10:13:38 2 4 2019-08-09 10:48:37 2 6 2019-08-09 10:58:37 2 6 2019-08-09 11:18:37 2 4 2019-08-09 11:58:37 1 1 2019-08-09 11:58:37 2 7 2019-08-09 12:03:37 1 1 2019-08-09 12:03:37 2 7 2019-08-09 12:13:37 1 1 2019-08-09 12:13:37 2 7 2019-08-09 12:23:37 1 1 2019-08-09 12:23:37 2 7 2019-08-09 12:58:37 1 1 2019-08-09 12:58:37 2 5 2019-08-09 13:08:37 1 1 2019-08-09 13:08:37 2 5 2019-08-09 13:38:37 1 1 2019-08-09 13:38:37 2 9 2019-08-09 13:43:37 1 1 2019-08-09 13:43:37 2 9 2019-08-09 13:48:37 1 1 2019-08-09 13:48:37 2 7 2019-08-09 13:53:37 1 1 2019-08-09 13:53:37 2 7 2019-08-09 14:03:37 1 1 2019-08-09 14:03:37 2 7 2019-08-09 14:13:37 1 1 2019-08-09 14:13:37 2 7 2019-08-09 14:23:37 1 1 2019-08-09 14:23:37 2 7 2019-08-09 14:48:37 1 1 2019-08-09 14:48:37 2 7 2019-08-09 15:03:37 1 1 2019-08-09 15:03:37 2 5 2019-08-09 15:13:37 1 1 2019-08-09 15:13:37 2 5 2019-08-09 16:33:37 1 1 2019-08-09 16:33:37 2 3 2019-08-09 17:18:37 1 1 2019-08-09 17:18:37 2 4 2019-08-09 17:28:37 1 1 2019-08-09 17:28:37 2 2 2019-08-09 18:28:37 2 3 2019-08-09 18:38:37 2 5 2019-08-09 19:08:37 2 9 2019-08-09 19:28:37 2 7 2019-08-09 19:53:37 2 5 2019-08-09 20:13:37 2 7 2019-08-09 20:23:37 1 1 2019-08-09 20:23:37 2 5 2019-08-09 20:28:37 1 1 2019-08-09 20:28:37 2 5 2019-08-09 20:33:37 1 1 2019-08-09 20:33:37 2 7 2019-08-09 20:48:37 1 1 2019-08-09 20:48:37 2 5 2019-08-09 21:03:37 1 1 2019-08-09 21:03:37 2 7 2019-08-09 21:08:37 1 1 2019-08-09 21:08:37 2 5 2019-08-09 21:13:37 1 1 2019-08-09 21:13:37 2 9 2019-08-09 21:38:37 1 1 2019-08-09 21:38:37 2 7 2019-08-09 22:08:37 2 6 2019-08-09 22:13:37 1 1 2019-08-09 22:13:37 2 5 2019-08-09 22:58:37 1 1 2019-08-09 22:58:37 2 7 2019-08-09 23:18:37 1 1 2019-08-09 23:18:37 2 9 2019-08-09 23:23:37 1 1 2019-08-09 23:23:37 2 7 2019-08-09 23:33:37 1 1 2019-08-09 23:33:37 2 9 2019-08-09 23:38:37 1 1 2019-08-09 23:38:37 2 9 2019-08-10 00:18:37 2 6 2019-08-10 00:53:37 2 6 2019-08-10 01:03:37 2 6 2019-08-10 01:13:37 2 6 2019-08-10 01:23:37 2 8 2019-08-10 01:33:37 2 4 2019-08-10 01:58:37 2 6 2019-08-10 02:08:37 2 8 2019-08-10 02:23:37 2 6 2019-08-10 02:38:37 2 4 2019-08-10 02:48:37 2 4 2019-08-10 03:23:37 2 2 2019-08-10 04:18:37 2 3 2019-08-10 06:08:37 2 3 2019-08-10 06:18:37 2 3 2019-08-10 06:53:37 2 1 2019-08-10 07:03:37 2 1 2019-08-10 07:23:37 2 1 2019-08-10 08:08:37 2 2 2019-08-10 08:13:37 2 2 2019-08-10 08:43:37 2 2 2019-08-10 09:03:37 2 2 2019-08-10 09:13:37 2 2 2019-08-10 09:48:37 2 2 2019-08-10 09:53:37 2 2 2019-08-10 10:33:37 2 2 2019-08-10 11:03:37 2 2 2019-08-10 11:33:37 2 2 2019-08-10 11:43:37 2 4 2019-08-10 11:48:37 2 6 2019-08-10 12:18:37 2 6 2019-08-10 12:43:37 2 6 2019-08-10 12:53:37 2 6 2019-08-10 13:23:37 2 7 2019-08-10 13:28:37 2 5 2019-08-10 13:38:37 2 5 2019-08-10 13:48:37 2 5 2019-08-10 14:38:37 2 4 2019-08-10 15:03:37 2 8 2019-08-10 15:18:37 2 8 2019-08-10 15:53:37 2 6 2019-08-10 16:18:37 2 6 2019-08-10 16:38:37 2 2 2019-08-10 17:18:37 2 4 2019-08-10 17:38:37 2 4 2019-08-10 17:58:37 2 6 2019-08-10 18:48:37 2 4 2019-08-10 19:18:37 2 4 2019-08-10 19:33:37 2 2 2019-08-10 19:53:37 2 2 2019-08-10 20:08:37 2 3 2019-08-10 20:18:37 2 3 2019-08-10 20:33:37 2 7 2019-08-10 21:03:37 2 7 2019-08-10 21:13:37 2 5 2019-08-10 21:23:37 1 1 2019-08-10 21:23:37 2 2 2019-08-10 21:43:37 1 1 2019-08-10 21:43:37 2 2 2019-08-10 22:03:37 1 1 2019-08-10 22:03:37 2 4 2019-08-10 22:13:37 1 1 2019-08-10 22:13:37 2 4 2019-08-10 22:18:37 2 7 2019-08-10 22:28:37 2 4 2019-08-10 22:33:37 2 5 2019-08-10 23:13:37 1 1 2019-08-10 23:13:37 2 4 2019-08-10 23:43:37 2 4 2019-08-10 23:48:37 2 6 2019-08-11 00:08:37 2 5 2019-08-11 00:18:37 2 4 2019-08-11 00:33:37 2 6 2019-08-11 00:43:37 2 6 2019-08-11 00:53:37 2 6 2019-08-11 01:03:37 2 6 2019-08-11 01:08:37 2 4 2019-08-09 00:18:37 2 5 2019-08-09 00:43:37 2 7 2019-08-09 01:13:37 2 5 2019-08-09 01:28:37 2 3 2019-08-09 01:43:37 2 5 2019-08-09 02:08:37 2 3 2019-08-09 02:18:37 2 5 2019-08-09 02:38:37 2 5 2019-08-09 02:53:37 2 3 2019-08-09 03:03:37 2 3 2019-08-09 03:43:37 2 4 2019-08-09 04:23:37 2 4 2019-08-09 04:33:37 2 4 2019-08-09 04:53:37 2 3 2019-08-09 05:03:37 2 3 2019-08-09 05:13:37 2 3 2019-08-09 05:23:37 2 3 2019-08-09 05:33:37 2 3 2019-08-09 07:33:37 2 3 2019-08-09 08:08:37 2 1 2019-08-09 08:18:37 2 1 2019-08-09 08:33:37 2 3 2019-08-09 09:08:37 2 1 2019-08-09 09:28:37 2 1 2019-08-09 10:18:37 2 5 2019-08-09 10:23:37 2 3 2019-08-09 10:33:37 2 3 2019-08-09 10:43:37 2 7 2019-08-09 11:48:37 1 1 2019-08-09 11:48:37 2 6 2019-08-09 12:08:37 1 1 2019-08-09 12:08:37 2 8 2019-08-09 12:28:37 1 1 2019-08-09 12:28:37 2 8 2019-08-09 13:03:37 1 1 2019-08-09 13:03:37 2 6 2019-08-09 13:18:37 1 1 2019-08-09 13:18:37 2 8 2019-08-09 13:23:37 1 1 2019-08-09 13:23:37 2 8 2019-08-09 14:33:37 1 1 2019-08-09 14:33:37 2 8 2019-08-09 14:58:37 1 1 2019-08-09 14:58:37 2 6 2019-08-09 15:23:37 1 1 2019-08-09 15:23:37 2 4 2019-08-09 15:43:37 1 1 2019-08-09 15:43:37 2 4 2019-08-09 16:03:37 1 1 2019-08-09 16:03:37 2 4 2019-08-09 16:08:37 1 1 2019-08-09 16:08:37 2 2 2019-08-09 16:28:37 1 1 2019-08-09 16:28:37 2 4 2019-08-09 16:38:37 1 1 2019-08-09 16:38:37 2 4 2019-08-09 17:03:37 1 1 2019-08-09 17:03:37 2 5 2019-08-09 17:38:37 1 1 2019-08-09 17:38:37 2 5 2019-08-09 17:53:37 2 2 2019-08-09 18:23:37 2 4 2019-08-09 18:43:37 2 6 2019-08-09 19:23:37 2 6 2019-08-09 19:43:37 2 4 2019-08-09 19:48:37 2 4 2019-08-09 19:58:37 2 6 2019-08-09 20:53:37 1 1 2019-08-09 20:53:37 2 6 2019-08-09 21:18:37 1 1 2019-08-09 21:18:37 2 10 2019-08-09 21:28:37 1 1 2019-08-09 21:28:37 2 6 2019-08-09 21:48:37 1 1 2019-08-09 21:48:37 2 6 2019-08-09 21:58:37 1 1 2019-08-09 21:58:37 2 6 2019-08-09 22:33:37 1 1 2019-08-09 22:33:37 2 4 2019-08-09 22:48:37 1 1 2019-08-09 22:48:37 2 6 2019-08-09 23:13:37 1 1 2019-08-09 23:13:37 2 10 2019-08-09 23:58:37 1 1 2019-08-09 23:58:37 2 8 2019-08-10 00:23:37 2 7 2019-08-10 00:28:37 2 5 2019-08-10 00:48:37 2 5 2019-08-10 02:03:37 2 7 2019-08-10 02:53:37 2 5 2019-08-10 03:03:37 2 5 2019-08-10 03:18:37 2 3 2019-08-10 03:38:37 2 3 2019-08-10 03:48:37 2 3 2019-08-10 04:23:37 2 3 2019-08-10 06:03:37 2 3 2019-08-10 06:13:37 2 3 2019-08-10 06:48:37 2 1 2019-08-10 06:58:37 2 1 2019-08-10 07:18:37 2 1 2019-08-10 07:53:37 2 2 2019-08-10 08:18:37 2 2 2019-08-10 09:08:37 2 2 2019-08-10 09:38:37 2 4 2019-08-10 09:43:37 2 2 2019-08-10 10:18:37 2 2 2019-08-10 10:28:37 2 2 2019-08-10 10:58:37 2 2 2019-08-10 11:53:37 2 6 2019-08-10 12:08:37 2 4 2019-08-10 12:23:37 2 6 2019-08-10 12:33:37 2 8 2019-08-10 12:38:37 2 6 2019-08-10 13:13:37 2 7 2019-08-10 14:43:37 2 6 2019-08-10 14:58:37 2 8 2019-08-10 15:33:37 2 4 2019-08-10 17:43:37 2 4 2019-08-10 17:53:37 2 4 2019-08-10 18:18:37 2 6 2019-08-10 18:43:37 2 4 2019-08-10 18:53:37 2 4 2019-08-10 18:58:37 2 6 2019-08-10 19:13:37 2 4 2019-08-10 19:58:37 2 2 2019-08-10 20:03:37 2 3 2019-08-10 20:13:37 2 3 2019-08-10 20:23:37 2 5 2019-08-10 21:08:37 2 3 2019-08-10 21:28:37 1 1 2019-08-10 21:28:37 2 2 2019-08-10 21:58:37 1 1 2019-08-10 21:58:37 2 4 2019-08-10 22:23:37 2 4 2019-08-10 22:38:37 2 4 2019-08-10 22:43:37 1 1 2019-08-10 22:43:37 2 5 2019-08-10 22:48:37 1 1 2019-08-10 22:48:37 2 7 2019-08-10 22:53:37 1 1 2019-08-10 22:53:37 2 5 2019-08-10 22:58:37 1 1 2019-08-10 22:58:37 2 7 2019-08-10 23:03:37 1 1 2019-08-10 23:03:37 2 6 2019-08-10 23:08:37 1 1 2019-08-10 23:08:37 2 4 2019-08-10 23:18:37 1 1 2019-08-10 23:18:37 2 4 2019-08-10 23:23:37 1 1 2019-08-10 23:23:37 2 6 2019-08-10 23:28:37 1 1 2019-08-10 23:28:37 2 3 2019-08-10 23:33:37 2 3 2019-08-10 23:38:37 2 4 2019-08-10 23:53:37 2 3 2019-08-10 23:58:37 2 4 2019-08-11 00:03:37 2 4 2019-08-11 00:13:37 2 5 2019-08-11 00:23:37 2 5 2019-08-11 00:28:37 2 6 2019-08-11 00:38:37 2 6 2019-08-11 00:48:37 2 6 2019-08-11 00:58:37 2 6 2019-08-11 01:13:37 2 4 2019-08-11 01:18:37 2 3 2019-08-11 01:23:37 2 3 2019-08-11 01:28:37 2 5 2019-08-11 01:33:37 2 5 2019-08-11 01:38:37 2 5 2019-08-11 01:43:37 2 5 2019-08-11 01:48:37 2 5 2019-08-11 01:53:37 2 5 2019-08-11 01:58:37 2 5 2019-08-11 02:03:37 2 5 2019-08-11 02:08:37 2 4 2019-08-11 02:13:37 2 4 2019-08-11 02:18:37 2 4 2019-08-11 02:23:37 2 4 2019-08-11 02:28:37 2 4 2019-08-11 02:33:37 2 3 2019-08-11 02:38:37 2 3 2019-08-11 02:43:37 2 4 2019-08-11 02:48:37 2 5 2019-08-11 02:53:37 2 4 2019-08-11 02:58:37 2 3 2019-08-11 03:08:37 2 3 2019-08-11 03:23:37 2 3 2019-08-11 03:38:37 2 3 2019-08-11 03:43:37 2 3 2019-08-11 04:03:37 2 2 2019-08-11 04:13:37 2 2 2019-08-11 04:23:37 2 2 2019-08-11 04:53:37 2 2 2019-08-11 05:03:37 2 2 2019-08-11 05:13:37 2 2 2019-08-11 07:58:37 2 2 2019-08-11 08:03:37 2 2 2019-08-11 08:28:37 2 3 2019-08-11 08:38:37 2 3 2019-08-11 09:03:37 1 1 2019-08-11 09:03:37 2 2 2019-08-11 09:08:37 2 3 2019-08-11 09:33:37 2 5 2019-08-11 09:38:37 2 3 2019-08-11 09:53:37 2 1 2019-08-11 09:58:37 1 1 2019-08-11 09:58:37 2 2 2019-08-11 10:23:37 2 3 2019-08-11 10:33:37 2 3 2019-08-11 10:53:37 2 3 2019-08-11 11:03:37 2 3 2019-08-11 11:28:37 2 3 2019-08-11 11:48:37 2 5 2019-08-11 11:58:37 2 5 2019-08-11 12:08:37 2 5 2019-08-11 12:13:37 2 3 2019-08-11 12:23:37 2 2 2019-08-11 12:53:37 1 1 2019-08-11 12:53:37 2 4 2019-08-11 13:13:37 1 1 2019-08-11 13:13:37 2 4 2019-08-11 13:18:37 1 1 2019-08-11 13:18:37 2 6 2019-08-11 13:38:37 1 1 2019-08-11 13:38:37 2 8 2019-08-11 13:53:37 2 3 2019-08-11 13:58:37 2 5 2019-08-11 14:08:37 2 5 2019-08-11 14:18:37 2 5 2019-08-11 14:28:37 2 7 2019-08-11 14:43:37 2 7 2019-08-11 14:53:37 2 7 2019-08-11 14:58:37 1 1 2019-08-11 14:58:37 2 8 2019-08-11 15:08:37 2 9 2019-08-11 15:53:37 2 5 2019-08-11 16:28:37 2 3 2019-08-11 17:53:37 2 5 2019-08-11 19:13:37 2 5 2019-08-11 20:03:37 2 9 2019-08-11 20:28:37 2 7 2019-08-11 20:58:37 1 1 2019-08-11 20:58:37 2 6 2019-08-11 21:53:37 2 6 2019-08-11 22:18:37 2 6 2019-08-11 22:28:37 2 8 2019-08-11 23:08:37 2 6 2019-08-12 00:08:37 2 2 2019-08-12 00:18:37 2 2 2019-08-12 00:38:37 2 3 2019-08-12 01:03:37 2 1 2019-08-12 01:13:37 2 1 2019-08-12 01:43:37 2 1 2019-08-12 01:53:37 2 1 2019-08-12 01:58:37 2 3 2019-08-12 02:23:37 2 3 2019-08-12 03:03:37 2 5 2019-08-12 03:23:37 2 5 2019-08-12 04:03:37 2 3 2019-08-12 04:13:37 2 3 2019-08-12 04:23:37 2 3 2019-08-12 04:33:37 2 3 2019-08-12 04:43:37 2 3 2019-08-12 04:53:37 2 3 2019-08-12 05:03:37 2 3 2019-08-12 05:38:37 2 4 2019-08-12 06:28:37 2 3 2019-08-12 06:38:37 2 3 2019-08-12 06:48:37 2 3 2019-08-12 06:58:37 2 3 2019-08-12 07:08:37 2 3 2019-08-12 07:18:37 2 3 2019-08-12 07:28:37 2 3 2019-08-12 08:03:37 2 2 2019-08-12 08:13:37 2 2 2019-08-12 08:43:37 2 2 2019-08-12 08:53:37 1 1 2019-08-12 08:53:37 2 1 2019-08-12 09:03:37 1 1 2019-08-12 09:03:37 2 1 2019-08-12 09:13:37 1 1 2019-08-12 09:13:37 2 1 2019-08-12 09:23:37 1 1 2019-08-12 09:23:37 2 1 2019-08-12 09:38:37 2 4 2019-08-12 09:48:37 2 4 2019-08-12 09:58:37 2 4 2019-08-12 10:03:37 2 2 2019-08-12 10:13:37 2 6 2019-08-12 10:18:37 2 6 2019-08-12 10:23:37 2 4 2019-08-12 10:53:37 2 4 2019-08-12 11:23:37 2 6 2019-08-12 11:28:37 2 4 2019-08-12 11:38:37 2 4 2019-08-12 12:13:37 2 6 2019-08-12 12:33:37 2 6 2019-08-12 12:58:37 2 4 2019-08-12 13:18:37 2 2 2019-08-12 13:23:37 2 4 2019-08-12 13:28:37 2 2 2019-08-12 13:53:37 2 4 2019-08-12 14:08:37 2 5 2019-08-12 14:18:37 2 5 2019-08-12 14:33:37 2 3 2019-08-12 14:48:37 2 5 2019-08-12 14:58:37 2 5 2019-08-12 16:18:37 2 7 2019-08-12 17:48:37 2 7 2019-08-12 18:03:37 2 5 2019-08-12 19:18:37 2 5 2019-08-12 19:38:37 2 5 2019-08-12 19:48:37 2 2 2019-08-12 20:08:37 2 2 2019-08-12 21:33:37 2 10 2019-08-12 21:48:37 2 8 2019-08-12 21:53:37 2 6 2019-08-12 22:28:37 2 4 2019-08-12 23:28:37 1 1 2019-08-12 23:28:37 2 5 2019-08-13 00:08:37 2 8 2019-08-13 00:28:37 2 6 2019-08-13 00:48:37 2 2 2019-08-13 00:58:37 2 4 2019-08-13 02:53:37 2 2 2019-08-13 03:03:37 2 2 2019-08-13 03:13:37 2 2 2019-08-13 03:23:37 2 2 2019-08-13 03:53:37 2 2 2019-08-13 04:03:37 2 3 2019-08-13 04:48:37 2 1 2019-08-13 04:58:37 2 1 2019-08-13 05:08:37 2 1 2019-08-13 05:18:37 2 1 2019-08-13 05:28:37 2 1 2019-08-13 05:38:37 2 1 2019-08-13 05:48:37 2 1 2019-08-13 05:58:37 2 1 2019-08-13 06:08:37 2 1 2019-08-13 06:18:37 2 1 2019-08-13 06:28:37 2 1 2019-08-13 06:53:37 2 3 2019-08-13 07:13:37 2 3 2019-08-13 08:08:37 2 1 2019-08-13 08:33:37 2 1 2019-08-13 08:58:37 2 5 2019-08-13 09:03:37 2 3 2019-08-13 09:08:37 2 1 2019-08-13 09:18:37 2 1 2019-08-13 09:33:37 2 1 2019-08-13 09:38:37 2 1 2019-08-13 09:43:37 2 1 2019-08-13 10:03:37 2 5 2019-08-13 10:13:37 2 7 2019-08-13 10:18:38 2 7 2019-08-13 10:23:37 2 7 2019-08-13 10:33:37 2 5 2019-08-13 10:43:37 2 7 2019-08-13 10:48:37 2 5 2019-08-13 10:58:37 2 3 2019-08-13 11:03:37 2 3 2019-08-13 11:13:37 2 3 2019-08-13 11:18:37 2 3 2019-08-13 11:28:37 2 3 2019-08-13 11:33:37 2 3 2019-08-13 11:38:37 2 3 2019-08-13 11:48:37 2 1 2019-08-13 11:53:37 2 3 2019-08-13 11:58:37 1 1 2019-08-11 03:03:37 2 3 2019-08-11 03:13:37 2 3 2019-08-11 03:28:37 2 3 2019-08-11 03:33:37 2 3 2019-08-11 04:08:37 2 2 2019-08-11 04:18:37 2 2 2019-08-11 04:58:37 2 2 2019-08-11 05:08:37 2 2 2019-08-11 06:48:37 1 1 2019-08-11 06:48:37 2 1 2019-08-11 07:53:37 2 2 2019-08-11 08:18:37 2 2 2019-08-11 08:33:37 2 3 2019-08-11 09:23:37 2 3 2019-08-11 09:28:37 2 5 2019-08-11 09:48:37 2 1 2019-08-11 10:13:37 2 3 2019-08-11 10:48:37 2 3 2019-08-11 11:08:37 2 3 2019-08-11 11:43:37 2 5 2019-08-11 11:53:37 2 5 2019-08-11 12:28:37 2 2 2019-08-11 12:33:37 1 1 2019-08-11 12:33:37 2 1 2019-08-11 12:58:37 1 1 2019-08-11 12:58:37 2 4 2019-08-11 13:08:37 1 1 2019-08-11 13:08:37 2 4 2019-08-11 13:23:37 1 1 2019-08-11 13:23:37 2 6 2019-08-11 14:03:37 2 5 2019-08-11 14:38:37 2 7 2019-08-11 15:03:37 1 1 2019-08-11 15:03:37 2 8 2019-08-11 15:18:37 2 7 2019-08-11 15:23:37 2 5 2019-08-11 15:33:37 2 7 2019-08-11 15:43:37 2 7 2019-08-11 15:48:37 2 5 2019-08-11 16:13:37 2 3 2019-08-11 16:23:37 2 3 2019-08-11 16:33:37 2 3 2019-08-11 16:58:37 2 3 2019-08-11 17:03:37 2 3 2019-08-11 17:13:37 2 3 2019-08-11 17:48:37 2 5 2019-08-11 17:58:37 2 5 2019-08-11 18:03:37 1 1 2019-08-11 18:03:37 2 6 2019-08-11 18:08:37 2 5 2019-08-11 18:13:37 2 7 2019-08-11 18:28:37 2 5 2019-08-11 18:43:37 2 3 2019-08-11 18:58:37 2 5 2019-08-11 19:53:37 1 1 2019-08-11 19:53:37 2 6 2019-08-11 21:28:37 2 6 2019-08-11 21:43:37 2 8 2019-08-11 21:48:37 2 6 2019-08-11 21:58:37 2 6 2019-08-11 22:23:37 2 6 2019-08-11 22:38:37 2 6 2019-08-11 23:03:37 2 6 2019-08-11 23:13:37 2 6 2019-08-11 23:18:37 2 4 2019-08-11 23:48:37 1 1 2019-08-11 23:48:37 2 3 2019-08-11 23:53:37 1 1 2019-08-11 23:53:37 2 3 2019-08-12 00:13:37 2 2 2019-08-12 00:28:37 2 4 2019-08-12 00:43:37 2 3 2019-08-12 01:08:37 2 1 2019-08-12 01:48:37 2 1 2019-08-12 02:03:37 2 3 2019-08-12 02:28:37 2 3 2019-08-12 02:53:37 2 3 2019-08-12 02:58:37 2 5 2019-08-12 03:08:37 2 5 2019-08-12 03:28:37 2 5 2019-08-12 03:38:37 2 7 2019-08-12 04:08:37 2 3 2019-08-12 04:18:37 2 3 2019-08-12 04:28:37 2 3 2019-08-12 04:38:37 2 3 2019-08-12 04:48:37 2 3 2019-08-12 04:58:37 2 3 2019-08-12 05:43:37 2 4 2019-08-12 06:33:37 2 3 2019-08-12 06:43:37 2 3 2019-08-12 06:53:37 2 3 2019-08-12 07:03:37 2 3 2019-08-12 07:13:37 2 3 2019-08-12 07:23:37 2 3 2019-08-12 08:58:37 1 1 2019-08-12 08:58:37 2 1 2019-08-12 09:08:37 1 1 2019-08-12 09:08:37 2 1 2019-08-12 09:18:37 1 1 2019-08-12 09:18:37 2 1 2019-08-12 09:43:37 2 4 2019-08-12 09:53:37 2 4 2019-08-12 11:08:37 2 4 2019-08-12 11:18:37 2 4 2019-08-12 11:33:37 2 4 2019-08-12 11:43:37 2 4 2019-08-12 11:48:37 2 6 2019-08-12 11:53:37 2 4 2019-08-12 11:58:37 2 6 2019-08-12 12:18:37 2 6 2019-08-12 12:28:37 2 6 2019-08-12 12:43:37 2 4 2019-08-12 12:53:37 2 4 2019-08-12 13:03:37 2 4 2019-08-12 13:13:37 2 2 2019-08-12 13:33:37 2 2 2019-08-12 13:38:37 2 4 2019-08-12 14:03:37 2 5 2019-08-12 14:13:37 2 5 2019-08-12 14:23:37 2 5 2019-08-12 14:38:37 2 3 2019-08-12 15:03:37 2 5 2019-08-12 15:08:37 2 7 2019-08-12 15:18:37 2 7 2019-08-12 16:08:37 2 7 2019-08-12 16:13:37 2 7 2019-08-12 16:23:37 2 7 2019-08-12 16:58:37 2 5 2019-08-12 17:03:37 2 3 2019-08-12 17:18:37 2 5 2019-08-12 17:28:37 2 5 2019-08-12 17:43:37 2 7 2019-08-12 17:53:37 2 7 2019-08-12 17:58:37 2 5 2019-08-12 18:18:37 2 5 2019-08-12 18:38:37 2 5 2019-08-12 18:43:37 2 7 2019-08-12 19:03:37 2 5 2019-08-12 19:13:37 2 5 2019-08-12 19:23:37 2 5 2019-08-12 19:33:37 2 5 2019-08-12 19:58:37 2 3 2019-08-12 20:03:37 2 2 2019-08-12 20:13:37 2 2 2019-08-12 20:38:37 2 4 2019-08-12 20:43:37 2 4 2019-08-12 20:58:37 2 4 2019-08-12 21:18:37 2 6 2019-08-12 21:58:37 2 6 2019-08-12 22:03:37 2 4 2019-08-12 22:13:37 2 4 2019-08-12 22:23:37 2 4 2019-08-12 22:38:37 2 2 2019-08-12 22:48:37 2 4 2019-08-12 23:33:37 1 1 2019-08-12 23:33:37 2 7 2019-08-12 23:48:37 1 1 2019-08-12 23:48:37 2 7 2019-08-13 00:23:37 2 6 2019-08-13 00:38:37 2 4 2019-08-13 02:58:37 2 2 2019-08-13 03:08:37 2 2 2019-08-13 03:18:37 2 2 2019-08-13 03:28:37 2 2 2019-08-13 04:08:37 2 3 2019-08-13 04:53:37 2 1 2019-08-13 05:03:37 2 1 2019-08-13 05:13:37 2 1 2019-08-13 05:23:37 2 1 2019-08-13 05:33:37 2 1 2019-08-13 05:43:37 2 1 2019-08-13 05:53:37 2 1 2019-08-13 06:03:37 2 1 2019-08-13 06:13:37 2 1 2019-08-13 06:23:37 2 1 2019-08-13 06:33:37 2 1 2019-08-13 06:48:37 2 3 2019-08-13 07:18:37 2 3 2019-08-13 07:58:37 2 2 2019-08-13 08:23:37 2 2 2019-08-13 08:43:37 2 2 2019-08-13 08:48:37 2 4 2019-08-13 09:23:37 2 2 2019-08-13 10:08:37 2 6 2019-08-13 10:53:37 2 4 2019-08-11 03:18:37 2 4 2019-08-11 03:53:37 2 2 2019-08-11 04:28:37 2 1 2019-08-11 04:38:37 2 1 2019-08-11 04:48:37 2 1 2019-08-11 05:18:37 2 1 2019-08-11 05:28:37 2 1 2019-08-11 05:38:37 2 1 2019-08-11 05:48:37 2 1 2019-08-11 05:58:37 2 1 2019-08-11 06:38:37 2 1 2019-08-11 07:23:37 2 1 2019-08-11 07:28:37 2 1 2019-08-11 07:38:37 2 1 2019-08-11 08:13:37 2 3 2019-08-11 08:23:37 1 1 2019-08-11 08:23:37 2 2 2019-08-11 08:53:37 2 2 2019-08-11 09:43:37 1 1 2019-08-11 09:43:37 2 1 2019-08-11 10:28:37 1 1 2019-08-11 10:28:37 2 3 2019-08-11 10:38:37 2 2 2019-08-11 10:58:37 2 2 2019-08-11 11:18:37 2 2 2019-08-11 11:38:37 2 4 2019-08-11 12:03:37 2 4 2019-08-11 12:38:37 1 1 2019-08-11 12:38:37 2 2 2019-08-11 12:48:37 2 4 2019-08-11 13:28:37 1 1 2019-08-11 13:28:37 2 7 2019-08-11 14:23:37 2 6 2019-08-11 14:33:37 2 8 2019-08-11 15:13:37 2 8 2019-08-11 15:28:37 2 6 2019-08-11 16:43:37 2 2 2019-08-11 17:08:37 2 4 2019-08-11 17:18:37 2 4 2019-08-11 17:23:37 2 6 2019-08-11 17:38:37 2 4 2019-08-11 18:38:37 2 4 2019-08-11 18:48:37 2 4 2019-08-11 19:08:37 2 4 2019-08-11 19:28:37 2 4 2019-08-11 19:38:37 2 6 2019-08-11 19:48:37 1 1 2019-08-11 19:48:37 2 7 2019-08-11 20:13:37 2 8 2019-08-11 20:18:37 2 6 2019-08-11 20:23:37 2 8 2019-08-11 20:48:37 2 8 2019-08-11 20:53:37 2 6 2019-08-11 21:18:37 1 1 2019-08-11 21:18:37 2 6 2019-08-11 21:23:37 2 5 2019-08-11 22:08:37 2 5 2019-08-11 22:33:37 2 7 2019-08-11 22:48:37 2 7 2019-08-11 22:53:37 2 7 2019-08-11 22:58:37 2 7 2019-08-11 23:28:37 2 3 2019-08-11 23:33:37 2 5 2019-08-11 23:38:37 2 3 2019-08-12 00:03:37 2 5 2019-08-12 00:53:37 2 2 2019-08-12 01:23:37 2 2 2019-08-12 01:33:37 2 2 2019-08-12 02:13:37 2 2 2019-08-12 02:38:37 2 4 2019-08-12 03:18:37 2 4 2019-08-12 03:33:37 2 6 2019-08-12 03:48:37 2 6 2019-08-12 05:08:37 2 3 2019-08-12 05:18:37 2 3 2019-08-12 05:28:37 2 3 2019-08-12 05:48:37 2 3 2019-08-12 05:58:37 2 3 2019-08-12 06:08:37 2 3 2019-08-12 06:18:37 2 3 2019-08-12 07:33:37 2 4 2019-08-12 07:43:37 2 1 2019-08-12 07:53:37 2 1 2019-08-12 08:08:37 2 3 2019-08-12 08:23:37 2 1 2019-08-12 08:33:37 2 1 2019-08-12 08:48:37 1 1 2019-08-12 08:48:37 2 2 2019-08-12 10:08:37 2 7 2019-08-12 10:33:37 2 5 2019-08-12 10:48:37 2 5 2019-08-12 10:58:37 2 5 2019-08-12 11:03:37 2 3 2019-08-12 12:08:37 2 7 2019-08-12 13:08:37 2 3 2019-08-12 13:48:37 2 5 2019-08-12 13:58:37 2 5 2019-08-12 14:28:37 2 4 2019-08-12 14:53:37 2 6 2019-08-12 15:13:37 2 6 2019-08-12 15:28:37 2 8 2019-08-12 15:38:37 2 8 2019-08-12 15:48:37 2 8 2019-08-12 16:28:37 2 6 2019-08-12 16:33:37 2 4 2019-08-12 16:43:37 2 4 2019-08-12 17:23:37 2 4 2019-08-12 17:38:37 2 6 2019-08-12 18:13:37 2 4 2019-08-12 18:48:37 2 6 2019-08-12 18:53:37 2 6 2019-08-12 19:08:37 2 4 2019-08-12 19:28:37 2 4 2019-08-12 19:43:37 2 2 2019-08-12 19:53:37 2 2 2019-08-12 20:18:37 2 1 2019-08-12 20:28:37 2 1 2019-08-12 20:33:37 2 3 2019-08-12 21:13:37 2 5 2019-08-12 21:38:37 2 7 2019-08-12 23:03:37 1 1 2019-08-12 23:03:37 2 6 2019-08-12 23:08:37 1 1 2019-08-12 23:08:37 2 4 2019-08-12 23:23:37 1 1 2019-08-12 23:23:37 2 4 2019-08-12 23:43:37 1 1 2019-08-12 23:43:37 2 6 2019-08-12 23:53:37 2 7 2019-08-12 23:58:37 2 9 2019-08-13 00:03:37 2 9 2019-08-13 00:43:37 2 3 2019-08-13 00:53:37 2 3 2019-08-13 01:08:37 2 3 2019-08-13 01:23:37 2 1 2019-08-13 01:43:37 2 1 2019-08-13 01:53:37 2 1 2019-08-13 02:03:37 2 1 2019-08-13 02:13:37 2 1 2019-08-13 02:23:37 2 1 2019-08-13 02:33:37 2 1 2019-08-13 02:43:37 2 1 2019-08-13 03:38:37 2 3 2019-08-13 03:48:37 2 3 2019-08-13 03:58:37 2 3 2019-08-13 04:13:37 2 2 2019-08-13 04:23:37 2 2 2019-08-13 04:33:37 2 2 2019-08-13 04:43:37 2 2 2019-08-13 06:43:37 2 2 2019-08-13 07:03:37 2 2 2019-08-13 07:23:37 2 2 2019-08-13 07:33:37 2 2 2019-08-13 08:03:38 2 2 2019-08-13 09:13:37 2 2 2019-08-13 09:28:37 2 2 2019-08-13 09:48:37 2 2 2019-08-13 09:53:37 2 4 2019-08-13 09:58:37 2 6 2019-08-13 10:28:37 2 8 2019-08-13 10:38:37 2 6 2019-08-13 11:08:37 2 4 2019-08-13 11:23:37 2 2 2019-08-13 11:43:37 2 2 2019-08-13 11:58:37 2 2 2019-08-13 12:03:37 1 1 2019-08-13 12:03:37 2 3 2019-08-13 12:08:37 1 1 2019-08-13 12:08:37 2 4 2019-08-13 12:13:37 1 1 2019-08-13 12:13:37 2 3 2019-08-13 12:18:37 1 1 2019-08-13 12:18:37 2 2 2019-08-13 12:23:37 2 3 2019-08-13 12:28:37 1 1 2019-08-13 12:28:37 2 3 2019-08-13 12:33:37 1 1 2019-08-13 12:33:37 2 4 2019-08-13 12:38:37 1 1 2019-08-13 12:38:37 2 5 2019-08-13 12:43:37 1 1 2019-08-13 12:43:37 2 4 2019-08-13 12:48:37 1 1 2019-08-13 12:48:37 2 4 2019-08-13 12:53:37 2 5 2019-08-11 03:48:37 2 2 2019-08-11 03:58:37 2 2 2019-08-11 04:33:37 2 1 2019-08-11 04:43:37 2 1 2019-08-11 05:23:37 2 1 2019-08-11 05:33:37 2 1 2019-08-11 05:43:37 2 1 2019-08-11 05:53:37 2 1 2019-08-11 06:23:37 1 1 2019-08-11 06:43:37 2 1 2019-08-11 06:53:37 2 1 2019-08-11 07:18:37 2 1 2019-08-11 07:33:37 2 1 2019-08-11 07:43:37 2 1 2019-08-11 07:48:37 2 1 2019-08-11 08:08:37 2 3 2019-08-11 08:43:37 2 4 2019-08-11 08:48:37 2 2 2019-08-11 08:58:37 2 2 2019-08-11 09:13:37 1 1 2019-08-11 09:13:37 2 3 2019-08-11 09:18:37 2 2 2019-08-11 10:03:37 1 1 2019-08-11 10:03:37 2 3 2019-08-11 10:08:37 2 2 2019-08-11 10:18:37 2 4 2019-08-11 10:43:37 2 2 2019-08-11 11:13:37 2 2 2019-08-11 11:23:37 2 2 2019-08-11 11:33:37 1 1 2019-08-11 11:33:37 2 3 2019-08-11 12:43:37 1 1 2019-08-11 12:43:37 2 3 2019-08-11 13:03:37 1 1 2019-08-11 13:03:37 2 3 2019-08-11 13:33:37 1 1 2019-08-11 13:33:37 2 7 2019-08-11 13:43:37 2 6 2019-08-11 13:48:37 2 4 2019-08-11 14:13:37 2 6 2019-08-11 14:48:37 2 8 2019-08-11 15:38:37 2 6 2019-08-11 15:58:37 2 6 2019-08-11 16:03:37 2 4 2019-08-11 16:08:37 2 2 2019-08-11 16:18:37 2 2 2019-08-11 16:38:37 2 2 2019-08-11 16:48:37 2 4 2019-08-11 16:53:37 2 6 2019-08-11 17:28:37 2 6 2019-08-11 17:33:37 2 4 2019-08-11 17:43:37 2 4 2019-08-11 18:18:37 2 6 2019-08-11 18:23:37 2 4 2019-08-11 18:33:37 2 4 2019-08-11 18:53:37 2 4 2019-08-11 19:03:37 2 4 2019-08-11 19:18:37 2 5 2019-08-11 19:23:37 2 4 2019-08-11 19:33:37 2 4 2019-08-11 19:43:37 1 1 2019-08-11 19:43:37 2 7 2019-08-11 19:58:37 2 8 2019-08-11 20:08:37 2 8 2019-08-11 20:33:37 2 10 2019-08-11 20:38:37 2 10 2019-08-11 20:43:37 2 8 2019-08-11 21:03:37 2 6 2019-08-11 21:08:37 1 1 2019-08-11 21:08:37 2 7 2019-08-11 21:13:37 1 1 2019-08-11 21:13:37 2 6 2019-08-11 21:33:37 2 5 2019-08-11 21:38:37 2 7 2019-08-11 22:03:37 2 5 2019-08-11 22:13:37 2 5 2019-08-11 22:43:37 2 7 2019-08-11 23:23:37 2 3 2019-08-11 23:43:37 2 3 2019-08-11 23:58:37 1 1 2019-08-11 23:58:37 2 6 2019-08-12 00:23:37 2 3 2019-08-12 00:33:37 2 3 2019-08-12 00:48:37 2 2 2019-08-12 00:58:37 2 2 2019-08-12 01:18:37 2 2 2019-08-12 01:28:37 2 2 2019-08-12 01:38:37 2 2 2019-08-12 02:08:37 2 2 2019-08-12 02:18:37 2 2 2019-08-12 02:33:37 2 4 2019-08-12 02:43:37 2 4 2019-08-12 02:48:37 2 2 2019-08-12 03:13:37 2 4 2019-08-12 03:43:37 2 6 2019-08-12 03:53:37 2 6 2019-08-12 03:58:37 2 4 2019-08-12 05:13:37 2 3 2019-08-12 05:23:37 2 3 2019-08-12 05:33:37 2 3 2019-08-12 05:53:37 2 3 2019-08-12 06:03:37 2 3 2019-08-12 06:13:37 2 3 2019-08-12 06:23:37 2 3 2019-08-12 07:38:37 2 1 2019-08-12 07:48:37 2 1 2019-08-12 07:58:37 2 1 2019-08-12 08:18:37 2 1 2019-08-12 08:28:37 2 1 2019-08-12 08:38:37 2 1 2019-08-12 09:28:37 2 1 2019-08-12 09:33:37 2 3 2019-08-12 10:28:37 2 5 2019-08-12 10:38:37 2 5 2019-08-12 10:43:37 2 5 2019-08-12 11:13:37 2 5 2019-08-12 12:03:37 2 7 2019-08-12 12:23:37 2 7 2019-08-12 12:38:37 2 5 2019-08-12 12:48:37 2 5 2019-08-12 13:43:37 2 5 2019-08-12 14:43:37 2 4 2019-08-12 15:23:37 2 8 2019-08-12 15:33:37 2 8 2019-08-12 15:43:37 2 8 2019-08-12 15:53:37 2 8 2019-08-12 15:58:37 2 8 2019-08-12 16:03:37 2 8 2019-08-12 16:38:37 2 4 2019-08-12 16:48:37 2 4 2019-08-12 16:53:37 2 6 2019-08-12 17:08:37 2 4 2019-08-12 17:13:37 2 6 2019-08-12 17:33:37 2 6 2019-08-12 18:08:37 2 4 2019-08-12 18:23:37 2 6 2019-08-12 18:28:37 2 4 2019-08-12 18:33:37 2 6 2019-08-12 18:58:37 2 6 2019-08-12 20:23:37 2 1 2019-08-12 20:48:37 2 5 2019-08-12 20:53:37 2 3 2019-08-12 21:03:37 2 5 2019-08-12 21:08:37 2 5 2019-08-12 21:23:37 2 7 2019-08-12 21:28:37 2 9 2019-08-12 21:43:37 2 7 2019-08-12 22:08:37 2 5 2019-08-12 22:18:37 2 5 2019-08-12 22:33:37 2 3 2019-08-12 22:43:37 2 5 2019-08-12 22:53:37 2 3 2019-08-12 22:58:37 2 5 2019-08-12 23:13:37 1 1 2019-08-12 23:13:37 2 4 2019-08-12 23:18:37 1 1 2019-08-12 23:18:37 2 4 2019-08-12 23:38:37 1 1 2019-08-12 23:38:37 2 6 2019-08-13 00:13:37 2 7 2019-08-13 00:18:37 2 7 2019-08-13 00:33:37 2 5 2019-08-13 01:03:37 2 3 2019-08-13 01:28:37 2 1 2019-08-13 01:38:37 2 1 2019-08-13 01:48:37 2 1 2019-08-13 01:58:37 2 1 2019-08-13 02:08:37 2 1 2019-08-13 02:18:37 2 1 2019-08-13 02:28:37 2 1 2019-08-13 02:38:37 2 1 2019-08-13 02:48:37 2 1 2019-08-13 03:33:37 2 3 2019-08-13 03:43:37 2 3 2019-08-13 04:18:37 2 2 2019-08-13 04:28:37 2 2 2019-08-13 04:38:37 2 2 2019-08-13 06:38:37 2 2 2019-08-13 06:58:37 2 2 2019-08-13 07:08:37 2 2 2019-08-13 07:28:37 2 2 2019-08-13 08:18:37 2 1 2019-08-13 08:28:37 2 1 2019-08-13 08:38:37 2 1 2019-08-13 08:53:37 2 3 2019-08-13 12:58:37 2 6 2019-08-13 13:08:37 2 6 2019-08-13 13:38:37 1 1 2019-08-13 13:38:37 2 7 2019-08-13 13:53:37 1 2 2019-08-13 13:53:37 2 6 2019-08-13 13:58:37 1 2 2019-08-13 13:58:37 2 6 2019-08-13 14:18:37 1 1 2019-08-13 14:18:37 2 7 2019-08-13 15:08:37 1 1 2019-08-13 15:08:37 2 1 2019-08-13 15:48:37 2 2 2019-08-13 15:58:37 2 2 2019-08-13 16:03:37 1 1 2019-08-13 16:03:37 2 3 2019-08-13 16:28:37 2 4 2019-08-13 16:48:37 2 6 2019-08-13 16:53:37 2 6 2019-08-13 17:23:37 2 6 2019-08-13 17:43:37 1 1 2019-08-13 17:43:37 2 5 2019-08-13 17:53:37 1 1 2019-08-13 17:53:37 2 3 2019-08-13 18:03:37 1 1 2019-08-13 18:03:37 2 5 2019-08-13 18:38:37 1 2 2019-08-13 18:38:37 2 6 2019-08-13 18:43:37 1 2 2019-08-13 18:43:37 2 8 2019-08-13 19:13:37 1 1 2019-08-13 19:13:37 2 5 2019-08-13 19:28:37 1 1 2019-08-13 19:28:37 2 3 2019-08-13 19:38:37 1 2 2019-08-13 19:38:37 2 2 2019-08-13 19:58:37 1 2 2019-08-13 19:58:37 2 2 2019-08-13 20:08:37 1 2 2019-08-13 20:08:37 2 2 2019-08-13 20:23:37 1 2 2019-08-13 20:23:37 2 4 2019-08-13 20:28:37 1 1 2019-08-13 20:28:37 2 3 2019-08-13 20:43:37 2 4 2019-08-13 20:48:37 2 6 2019-08-13 21:03:37 2 4 2019-08-13 21:13:37 1 1 2019-08-13 21:13:37 2 3 2019-08-13 21:23:37 2 4 2019-08-13 21:58:37 2 5 2019-08-13 22:13:37 2 4 2019-08-13 22:43:37 2 8 2019-08-13 22:58:37 2 6 2019-08-13 23:18:37 2 8 2019-08-13 23:43:37 2 6 2019-08-13 23:58:37 2 4 2019-08-14 01:03:37 2 4 2019-08-14 01:23:37 2 4 2019-08-14 01:33:37 2 4 2019-08-14 02:08:37 2 6 2019-08-14 02:43:37 2 6 2019-08-14 03:18:37 2 4 2019-08-14 03:28:37 2 4 2019-08-14 03:38:37 2 4 2019-08-14 03:48:37 2 4 2019-08-14 03:58:37 2 4 2019-08-14 04:03:37 2 4 2019-08-14 04:13:37 2 4 2019-08-14 04:23:37 2 4 2019-08-14 04:33:37 2 4 2019-08-14 04:43:37 2 4 2019-08-14 04:53:37 2 4 2019-08-14 05:03:37 2 4 2019-08-14 05:13:37 2 4 2019-08-14 05:23:37 2 4 2019-08-14 05:33:37 2 4 2019-08-14 06:23:37 1 1 2019-08-14 06:23:37 2 3 2019-08-14 07:03:37 2 3 2019-08-14 07:33:37 2 3 2019-08-14 07:38:37 2 1 2019-08-14 07:53:37 2 3 2019-08-14 08:33:37 2 1 2019-08-14 08:38:37 2 3 2019-08-14 08:53:37 2 1 2019-08-14 09:28:37 2 3 2019-08-14 09:38:37 2 3 2019-08-14 09:43:37 2 5 2019-08-14 09:58:37 2 5 2019-08-14 10:28:37 2 3 2019-08-14 11:03:37 2 3 2019-08-14 11:23:37 2 2 2019-08-14 11:33:37 2 2 2019-08-14 11:43:37 2 2 2019-08-14 12:08:37 2 2 2019-08-14 12:23:37 2 6 2019-08-14 12:28:37 2 4 2019-08-14 12:48:37 2 4 2019-08-14 13:03:37 2 4 2019-08-14 13:08:37 2 4 2019-08-14 13:23:37 2 2 2019-08-14 13:33:37 1 1 2019-08-14 13:33:37 2 1 2019-08-14 13:58:37 2 6 2019-08-14 14:08:37 2 6 2019-08-14 14:48:37 2 4 2019-08-14 14:58:37 2 4 2019-08-14 15:08:37 2 4 2019-08-14 15:18:37 2 4 2019-08-14 15:48:37 2 6 2019-08-14 16:03:37 2 4 2019-08-14 17:23:37 2 7 2019-08-14 17:43:37 2 8 2019-08-14 18:08:37 2 7 2019-08-14 18:43:37 2 5 2019-08-14 18:53:37 2 5 2019-08-14 19:03:37 2 5 2019-08-14 19:08:37 2 3 2019-08-14 19:18:37 2 3 2019-08-14 19:28:37 2 3 2019-08-14 19:53:37 2 3 2019-08-14 20:13:37 2 3 2019-08-14 20:38:37 2 7 2019-08-14 20:58:37 2 5 2019-08-14 21:03:37 2 5 2019-08-14 21:18:37 2 3 2019-08-14 21:28:37 2 3 2019-08-14 22:13:37 1 2 2019-08-14 22:13:37 2 5 2019-08-14 22:18:37 1 2 2019-08-14 22:18:37 2 5 2019-08-14 22:23:37 1 2 2019-08-14 22:23:37 2 7 2019-08-14 22:48:37 1 1 2019-08-14 22:48:37 2 6 2019-08-14 22:53:37 2 5 2019-08-14 23:58:37 2 5 2019-08-15 00:18:37 2 7 2019-08-15 00:33:37 2 11 2019-08-15 00:58:37 2 11 2019-08-15 01:08:37 2 7 2019-08-15 01:18:37 2 5 2019-08-15 01:33:37 2 3 2019-08-15 02:13:37 2 5 2019-08-15 03:43:37 2 1 2019-08-15 03:53:37 2 1 2019-08-15 04:03:37 2 1 2019-08-15 04:28:37 2 1 2019-08-15 04:38:37 2 1 2019-08-15 04:48:37 2 1 2019-08-15 04:58:37 2 1 2019-08-15 05:08:37 2 1 2019-08-15 05:18:37 2 1 2019-08-15 05:28:37 2 1 2019-08-15 05:38:37 2 1 2019-08-15 05:48:37 2 1 2019-08-15 05:58:37 2 1 2019-08-15 06:08:37 2 1 2019-08-15 06:18:37 2 1 2019-08-15 06:23:37 2 3 2019-08-15 06:33:37 2 3 2019-08-15 06:48:37 2 3 2019-08-15 06:58:37 2 3 2019-08-15 07:13:37 2 5 2019-08-15 07:38:37 2 1 2019-08-15 07:48:37 2 1 2019-08-15 08:18:37 2 1 2019-08-15 08:28:37 2 1 2019-08-15 08:38:37 2 1 2019-08-15 08:48:37 2 1 2019-08-15 09:18:37 2 1 2019-08-15 10:13:37 2 3 2019-08-15 10:38:37 2 5 2019-08-15 11:33:37 2 6 2019-08-15 12:03:37 2 4 2019-08-15 12:08:37 2 4 2019-08-15 12:13:37 2 4 2019-08-15 12:18:37 2 5 2019-08-15 12:33:37 2 3 2019-08-15 12:38:37 2 3 2019-08-15 12:43:37 2 5 2019-08-15 12:53:37 2 5 2019-08-15 13:08:37 2 5 2019-08-15 13:13:37 2 3 2019-08-13 13:03:37 2 5 2019-08-13 13:28:37 1 1 2019-08-13 13:28:37 2 8 2019-08-13 14:08:37 1 1 2019-08-13 14:08:37 2 6 2019-08-13 14:13:37 1 1 2019-08-13 14:13:37 2 6 2019-08-13 14:33:37 1 1 2019-08-13 14:33:37 2 6 2019-08-13 14:43:37 1 1 2019-08-13 14:43:37 2 6 2019-08-13 14:48:37 1 1 2019-08-13 14:48:37 2 4 2019-08-13 14:58:37 1 2 2019-08-13 14:58:37 2 3 2019-08-13 15:13:37 1 1 2019-08-13 15:13:37 2 2 2019-08-13 15:28:37 1 1 2019-08-13 16:23:37 2 3 2019-08-13 16:38:37 2 5 2019-08-13 17:08:37 2 5 2019-08-13 17:13:37 2 7 2019-08-13 18:13:37 2 7 2019-08-13 18:28:37 1 1 2019-08-13 18:28:37 2 8 2019-08-13 18:53:37 1 2 2019-08-13 18:53:37 2 9 2019-08-13 18:58:37 1 2 2019-08-13 18:58:37 2 7 2019-08-13 19:33:37 1 1 2019-08-13 19:33:37 2 2 2019-08-13 19:48:37 1 2 2019-08-13 19:48:37 2 3 2019-08-13 20:38:37 2 3 2019-08-13 21:08:37 2 5 2019-08-13 21:28:37 2 3 2019-08-13 21:33:37 1 1 2019-08-13 21:33:37 2 4 2019-08-13 21:43:37 1 1 2019-08-13 21:43:37 2 6 2019-08-13 21:53:37 1 1 2019-08-13 21:53:37 2 5 2019-08-13 22:03:37 2 5 2019-08-13 22:28:37 2 7 2019-08-13 22:38:37 2 7 2019-08-13 22:48:37 2 7 2019-08-13 23:23:37 2 7 2019-08-13 23:33:37 2 7 2019-08-13 23:48:37 2 5 2019-08-14 00:03:37 2 5 2019-08-14 00:23:37 1 1 2019-08-14 00:23:37 2 2 2019-08-14 00:38:37 1 1 2019-08-14 00:38:37 2 4 2019-08-14 01:53:37 2 5 2019-08-14 02:13:37 2 5 2019-08-14 02:23:37 2 5 2019-08-14 02:33:37 2 7 2019-08-14 02:48:37 2 5 2019-08-14 02:58:38 2 5 2019-08-14 03:08:37 2 5 2019-08-14 04:08:37 2 4 2019-08-14 04:18:37 2 4 2019-08-14 04:28:37 2 4 2019-08-14 04:38:37 2 4 2019-08-14 04:48:37 2 4 2019-08-14 04:58:37 2 4 2019-08-14 05:08:37 2 4 2019-08-14 05:18:37 2 4 2019-08-14 05:28:37 2 4 2019-08-14 06:18:37 1 1 2019-08-14 06:18:37 2 3 2019-08-14 07:08:37 2 3 2019-08-14 07:18:37 2 3 2019-08-14 08:08:37 2 2 2019-08-14 08:48:37 2 2 2019-08-14 09:13:37 2 4 2019-08-14 09:18:37 2 2 2019-08-14 09:33:37 2 4 2019-08-14 09:53:37 2 6 2019-08-14 10:08:37 2 6 2019-08-14 10:38:37 2 2 2019-08-14 10:43:37 2 4 2019-08-14 11:18:37 2 3 2019-08-14 11:28:37 2 3 2019-08-14 11:53:37 2 1 2019-08-14 12:03:37 2 3 2019-08-14 12:13:37 2 3 2019-08-14 12:18:37 2 5 2019-08-14 12:38:37 2 3 2019-08-14 13:18:37 2 3 2019-08-14 14:18:38 2 7 2019-08-14 14:23:37 2 9 2019-08-14 14:53:37 2 5 2019-08-14 15:03:37 2 5 2019-08-14 15:13:37 2 5 2019-08-14 15:23:37 2 5 2019-08-14 15:38:37 2 3 2019-08-14 15:43:37 2 5 2019-08-14 15:53:37 2 5 2019-08-14 15:58:37 2 5 2019-08-14 16:13:37 2 3 2019-08-14 16:58:37 2 6 2019-08-14 17:33:37 2 9 2019-08-14 17:38:37 2 9 2019-08-14 17:58:37 2 8 2019-08-14 18:28:37 2 4 2019-08-14 18:33:37 2 4 2019-08-14 18:58:37 2 6 2019-08-14 19:23:37 2 4 2019-08-14 19:33:37 2 4 2019-08-14 20:08:37 2 4 2019-08-14 20:53:37 2 4 2019-08-14 21:43:37 2 4 2019-08-14 21:53:37 2 4 2019-08-14 22:08:37 1 1 2019-08-14 22:08:37 2 3 2019-08-14 22:33:37 1 1 2019-08-14 22:33:37 2 7 2019-08-14 22:43:37 1 1 2019-08-14 22:43:37 2 7 2019-08-14 23:03:37 2 12 2019-08-14 23:08:37 2 10 2019-08-14 23:28:37 2 6 2019-08-14 23:33:37 2 6 2019-08-14 23:53:37 2 6 2019-08-15 00:23:37 2 8 2019-08-15 00:28:37 2 10 2019-08-15 00:53:37 2 10 2019-08-15 01:13:37 2 6 2019-08-15 01:43:37 2 2 2019-08-15 01:58:37 2 4 2019-08-15 02:08:37 2 4 2019-08-15 02:23:37 2 4 2019-08-15 02:33:37 2 4 2019-08-15 02:43:37 2 4 2019-08-15 02:48:37 2 2 2019-08-15 02:58:37 2 2 2019-08-15 03:18:37 2 2 2019-08-15 04:08:37 2 2 2019-08-15 04:23:37 2 2 2019-08-15 06:43:37 1 1 2019-08-15 06:43:37 2 3 2019-08-15 07:03:37 2 4 2019-08-15 07:23:37 2 4 2019-08-15 07:33:37 2 4 2019-08-15 07:58:37 2 2 2019-08-15 08:08:37 2 2 2019-08-15 09:13:37 2 2 2019-08-15 09:28:37 2 2 2019-08-15 09:38:37 2 2 2019-08-15 09:43:37 2 2 2019-08-15 09:48:37 2 4 2019-08-15 09:58:37 2 4 2019-08-15 10:23:37 2 4 2019-08-15 10:28:37 2 6 2019-08-15 10:43:37 2 4 2019-08-15 11:28:37 2 5 2019-08-15 11:58:37 1 1 2019-08-15 11:58:37 2 6 2019-08-15 12:28:37 2 2 2019-08-15 13:18:37 2 5 2019-08-15 13:28:37 2 6 2019-08-15 13:33:37 2 4 2019-08-15 13:38:37 1 1 2019-08-15 13:38:37 2 4 2019-08-15 13:43:37 1 1 2019-08-15 13:43:37 2 6 2019-08-15 13:53:37 1 1 2019-08-15 13:53:37 2 5 2019-08-15 14:08:37 1 1 2019-08-15 14:08:37 2 6 2019-08-15 14:38:37 1 1 2019-08-15 14:38:37 2 9 2019-08-15 14:48:37 1 1 2019-08-15 14:48:37 2 10 2019-08-15 14:53:37 1 1 2019-08-15 14:53:37 2 9 2019-08-15 15:03:37 1 1 2019-08-15 15:03:37 2 5 2019-08-15 15:08:37 1 1 2019-08-15 15:08:37 2 7 2019-08-15 15:13:37 1 1 2019-08-15 15:13:37 2 7 2019-08-15 15:18:37 1 1 2019-08-13 13:13:37 1 1 2019-08-13 13:13:37 2 6 2019-08-13 13:23:37 1 1 2019-08-13 13:23:37 2 8 2019-08-13 13:33:37 1 1 2019-08-13 13:33:37 2 8 2019-08-13 14:23:37 1 1 2019-08-13 14:23:37 2 8 2019-08-13 15:43:37 2 2 2019-08-13 15:53:37 2 2 2019-08-13 16:43:37 2 6 2019-08-13 16:58:37 2 6 2019-08-13 17:18:37 2 6 2019-08-13 17:38:37 1 1 2019-08-13 17:38:37 2 5 2019-08-13 17:48:37 2 4 2019-08-13 17:58:37 1 1 2019-08-13 17:58:37 2 3 2019-08-13 18:08:37 1 1 2019-08-13 18:08:37 2 5 2019-08-13 18:33:37 1 1 2019-08-13 18:33:37 2 7 2019-08-13 18:48:37 1 2 2019-08-13 18:48:37 2 8 2019-08-13 19:43:37 1 2 2019-08-13 19:43:37 2 2 2019-08-13 19:53:37 1 2 2019-08-13 19:53:37 2 2 2019-08-13 20:03:37 1 2 2019-08-13 20:03:37 2 2 2019-08-13 20:58:37 2 4 2019-08-13 22:23:37 2 6 2019-08-13 23:03:37 2 6 2019-08-13 23:13:37 2 10 2019-08-13 23:38:37 2 6 2019-08-14 00:13:37 1 1 2019-08-14 00:13:37 2 5 2019-08-14 00:33:37 1 1 2019-08-14 00:33:37 2 3 2019-08-14 00:43:37 1 1 2019-08-14 00:43:37 2 5 2019-08-14 00:48:37 2 4 2019-08-14 00:58:37 2 4 2019-08-14 01:08:37 2 4 2019-08-14 01:18:37 2 4 2019-08-14 01:28:37 2 4 2019-08-14 01:38:37 2 4 2019-08-14 01:43:37 2 6 2019-08-14 02:03:37 2 6 2019-08-14 03:13:37 2 4 2019-08-14 03:23:37 2 4 2019-08-14 03:33:37 2 4 2019-08-14 03:43:37 2 4 2019-08-14 03:53:37 2 4 2019-08-14 05:38:37 2 3 2019-08-14 05:48:37 2 3 2019-08-14 05:58:37 2 3 2019-08-14 06:08:37 2 3 2019-08-14 06:33:37 1 1 2019-08-14 06:33:37 2 3 2019-08-14 06:43:37 1 1 2019-08-14 06:43:37 2 3 2019-08-14 06:53:37 1 1 2019-08-14 06:53:37 2 3 2019-08-14 07:13:37 1 1 2019-08-14 07:13:37 2 3 2019-08-14 07:28:37 2 2 2019-08-14 07:43:37 2 1 2019-08-14 08:18:37 2 1 2019-08-14 08:28:37 2 1 2019-08-14 09:03:37 2 3 2019-08-14 10:03:37 2 7 2019-08-14 10:18:37 2 5 2019-08-14 10:23:37 2 3 2019-08-14 10:58:37 2 5 2019-08-14 11:08:37 2 3 2019-08-14 11:38:37 2 2 2019-08-14 12:33:37 2 4 2019-08-14 12:53:37 2 6 2019-08-14 12:58:37 2 4 2019-08-14 13:13:37 2 4 2019-08-14 13:38:37 1 1 2019-08-14 13:38:37 2 1 2019-08-14 13:43:37 1 1 2019-08-14 13:43:37 2 3 2019-08-14 13:48:37 2 4 2019-08-14 14:03:37 2 6 2019-08-14 14:43:37 2 4 2019-08-14 15:33:37 2 4 2019-08-14 16:38:37 2 6 2019-08-14 16:48:37 2 5 2019-08-14 17:03:37 2 7 2019-08-14 17:13:37 2 9 2019-08-14 17:18:37 2 7 2019-08-14 17:28:37 2 7 2019-08-14 17:53:37 2 8 2019-08-14 18:18:37 2 3 2019-08-14 18:48:37 2 5 2019-08-14 19:13:37 2 3 2019-08-14 19:38:37 2 5 2019-08-14 19:43:37 2 5 2019-08-14 20:18:37 2 7 2019-08-14 20:43:37 2 7 2019-08-14 20:48:37 2 5 2019-08-14 21:13:37 2 3 2019-08-14 21:23:37 2 3 2019-08-14 21:33:37 2 3 2019-08-14 21:48:37 2 5 2019-08-14 22:03:37 1 1 2019-08-14 22:03:37 2 4 2019-08-14 22:28:37 1 2 2019-08-14 22:28:37 2 7 2019-08-14 23:13:37 2 7 2019-08-14 23:23:37 2 9 2019-08-14 23:38:37 2 7 2019-08-14 23:48:37 1 1 2019-08-14 23:48:37 2 6 2019-08-15 00:03:37 2 7 2019-08-15 00:13:37 2 7 2019-08-15 00:48:37 2 9 2019-08-15 01:03:37 2 9 2019-08-15 01:28:37 2 3 2019-08-15 01:38:37 2 3 2019-08-15 01:48:37 2 3 2019-08-15 03:28:37 2 1 2019-08-15 03:38:37 2 1 2019-08-15 03:48:37 2 1 2019-08-15 03:58:37 2 1 2019-08-15 04:13:37 2 2 2019-08-15 07:28:37 2 4 2019-08-15 07:53:37 2 2 2019-08-15 08:13:37 2 2 2019-08-15 08:58:37 2 2 2019-08-15 09:08:37 2 2 2019-08-15 09:23:37 2 2 2019-08-15 09:33:37 2 2 2019-08-15 10:03:37 2 4 2019-08-15 10:18:37 2 4 2019-08-15 10:48:37 2 4 2019-08-15 10:58:37 2 4 2019-08-15 11:03:37 2 6 2019-08-15 11:08:37 2 4 2019-08-15 11:23:37 2 5 2019-08-15 11:43:37 1 1 2019-08-15 11:43:37 2 4 2019-08-15 11:53:37 1 1 2019-08-15 11:53:37 2 6 2019-08-15 12:23:37 2 6 2019-08-15 12:48:37 2 4 2019-08-15 12:58:37 2 4 2019-08-15 13:03:37 2 6 2019-08-15 13:23:37 2 5 2019-08-15 13:48:37 1 1 2019-08-15 13:48:37 2 6 2019-08-15 13:58:37 1 1 2019-08-15 13:58:37 2 5 2019-08-15 14:03:37 1 1 2019-08-15 14:03:37 2 6 2019-08-15 14:13:37 1 1 2019-08-15 14:13:37 2 5 2019-08-15 14:18:37 1 1 2019-08-15 14:18:37 2 6 2019-08-15 14:23:37 1 1 2019-08-15 14:23:37 2 7 2019-08-15 14:28:37 1 1 2019-08-15 14:28:37 2 7 2019-08-15 14:33:37 1 1 2019-08-15 14:33:37 2 7 2019-08-15 14:43:37 1 1 2019-08-15 14:43:37 2 9 2019-08-15 14:58:37 1 1 2019-08-15 14:58:37 2 8 2019-08-15 15:18:37 2 5 2019-08-15 15:23:37 2 4 2019-08-15 15:28:37 2 3 2019-08-15 15:33:37 2 4 2019-08-15 15:38:37 2 4 2019-08-15 15:43:37 2 3 2019-08-15 15:48:37 2 3 2019-08-15 15:53:37 2 3 2019-08-15 15:58:37 2 3 2019-08-15 16:03:37 2 4 2019-08-15 16:08:37 2 3 2019-08-15 16:13:37 2 5 2019-08-15 16:18:37 2 6 2019-08-13 13:18:37 1 1 2019-08-13 13:18:37 2 7 2019-08-13 13:43:37 1 1 2019-08-13 13:43:37 2 5 2019-08-13 13:48:37 1 2 2019-08-13 13:48:37 2 6 2019-08-13 14:03:37 1 2 2019-08-13 14:03:37 2 6 2019-08-13 14:28:37 1 1 2019-08-13 14:28:37 2 6 2019-08-13 14:38:37 1 1 2019-08-13 14:38:37 2 6 2019-08-13 14:53:37 1 1 2019-08-13 14:53:37 2 4 2019-08-13 15:03:37 1 1 2019-08-13 15:03:37 2 2 2019-08-13 15:18:37 1 1 2019-08-13 15:18:37 2 2 2019-08-13 15:23:37 1 1 2019-08-13 16:08:37 1 1 2019-08-13 16:08:37 2 4 2019-08-13 16:13:37 2 3 2019-08-13 16:18:37 2 3 2019-08-13 16:33:37 2 5 2019-08-13 17:03:37 2 5 2019-08-13 17:28:37 1 1 2019-08-13 17:28:37 2 6 2019-08-13 17:33:37 1 1 2019-08-13 17:33:37 2 4 2019-08-13 18:18:37 1 1 2019-08-13 18:18:37 2 6 2019-08-13 18:23:37 1 1 2019-08-13 18:23:37 2 8 2019-08-13 19:03:37 1 2 2019-08-13 19:03:37 2 7 2019-08-13 19:08:37 1 2 2019-08-13 19:08:37 2 5 2019-08-13 19:18:37 1 1 2019-08-13 19:18:37 2 6 2019-08-13 19:23:37 1 1 2019-08-13 19:23:37 2 4 2019-08-13 20:13:37 1 2 2019-08-13 20:13:37 2 3 2019-08-13 20:18:37 1 2 2019-08-13 20:18:37 2 3 2019-08-13 20:33:37 2 3 2019-08-13 20:53:37 2 3 2019-08-13 21:18:37 1 1 2019-08-13 21:18:37 2 4 2019-08-13 21:38:37 1 1 2019-08-13 21:38:37 2 4 2019-08-13 21:48:37 1 1 2019-08-13 21:48:37 2 7 2019-08-13 22:08:37 2 5 2019-08-13 22:18:37 2 5 2019-08-13 22:33:37 2 7 2019-08-13 22:53:37 2 7 2019-08-13 23:08:37 2 9 2019-08-13 23:28:37 2 7 2019-08-13 23:53:37 2 5 2019-08-14 00:08:37 2 5 2019-08-14 00:18:37 1 1 2019-08-14 00:18:37 2 2 2019-08-14 00:28:37 1 1 2019-08-14 00:28:37 2 2 2019-08-14 00:53:37 2 3 2019-08-14 01:13:37 2 3 2019-08-14 01:48:37 2 5 2019-08-14 01:58:37 2 5 2019-08-14 02:18:37 2 5 2019-08-14 02:28:37 2 5 2019-08-14 02:38:37 2 7 2019-08-14 02:53:37 2 5 2019-08-14 03:03:37 2 5 2019-08-14 05:43:37 2 3 2019-08-14 05:53:37 2 3 2019-08-14 06:03:37 2 3 2019-08-14 06:13:37 2 3 2019-08-14 06:28:37 1 1 2019-08-14 06:28:37 2 3 2019-08-14 06:38:37 1 1 2019-08-14 06:38:37 2 3 2019-08-14 06:48:37 1 1 2019-08-14 06:48:37 2 3 2019-08-14 06:58:37 1 1 2019-08-14 06:58:37 2 3 2019-08-14 07:23:37 2 2 2019-08-14 07:48:37 2 2 2019-08-14 07:58:37 2 4 2019-08-14 08:03:37 2 2 2019-08-14 08:13:37 2 2 2019-08-14 08:43:37 2 2 2019-08-14 08:58:37 2 4 2019-08-14 09:08:37 2 4 2019-08-14 09:23:37 2 2 2019-08-14 09:48:37 2 6 2019-08-14 10:13:37 2 6 2019-08-14 10:33:37 2 2 2019-08-14 10:48:37 2 4 2019-08-14 10:53:37 2 6 2019-08-14 11:13:37 2 3 2019-08-14 11:48:37 2 1 2019-08-14 11:58:37 2 1 2019-08-14 12:43:37 2 3 2019-08-14 13:28:37 2 1 2019-08-14 13:53:37 2 5 2019-08-14 14:13:37 2 5 2019-08-14 14:28:37 2 9 2019-08-14 14:33:37 2 7 2019-08-14 14:38:37 2 5 2019-08-14 15:28:37 2 5 2019-08-14 16:08:37 2 3 2019-08-14 16:18:37 2 3 2019-08-14 16:23:37 2 1 2019-08-14 16:28:37 2 3 2019-08-14 16:33:37 2 5 2019-08-14 16:43:37 2 6 2019-08-14 16:53:37 2 6 2019-08-14 17:08:37 2 10 2019-08-14 17:48:37 2 7 2019-08-14 18:03:37 2 8 2019-08-14 18:13:37 2 4 2019-08-14 18:23:37 2 4 2019-08-14 18:38:37 2 4 2019-08-14 19:48:37 2 6 2019-08-14 19:58:37 2 4 2019-08-14 20:03:37 2 4 2019-08-14 20:23:37 2 8 2019-08-14 20:28:37 2 8 2019-08-14 20:33:37 2 6 2019-08-14 21:08:37 2 4 2019-08-14 21:38:37 2 4 2019-08-14 21:58:37 2 4 2019-08-14 22:38:37 1 1 2019-08-14 22:38:37 2 7 2019-08-14 22:58:37 2 8 2019-08-14 23:18:37 2 6 2019-08-14 23:43:37 2 6 2019-08-15 00:08:37 2 8 2019-08-15 00:38:37 2 10 2019-08-15 00:43:37 2 10 2019-08-15 01:23:37 2 4 2019-08-15 01:53:37 2 4 2019-08-15 02:03:37 2 4 2019-08-15 02:18:37 2 4 2019-08-15 02:28:37 2 4 2019-08-15 02:38:37 2 4 2019-08-15 02:53:37 2 2 2019-08-15 03:13:37 2 2 2019-08-15 03:23:37 2 2 2019-08-15 03:33:37 2 2 2019-08-15 04:18:37 2 3 2019-08-15 04:33:37 2 1 2019-08-15 04:43:37 2 1 2019-08-15 04:53:37 2 1 2019-08-15 05:03:37 2 1 2019-08-15 05:13:37 2 1 2019-08-15 05:23:37 2 1 2019-08-15 05:33:37 2 1 2019-08-15 05:43:37 2 1 2019-08-15 05:53:37 2 1 2019-08-15 06:03:37 2 1 2019-08-15 06:13:37 2 1 2019-08-15 06:28:37 2 3 2019-08-15 06:38:37 2 3 2019-08-15 06:53:37 2 3 2019-08-15 07:08:37 2 5 2019-08-15 07:18:37 2 5 2019-08-15 07:43:37 2 1 2019-08-15 08:03:37 2 1 2019-08-15 08:23:37 2 1 2019-08-15 08:33:37 2 1 2019-08-15 08:43:37 2 1 2019-08-15 08:53:37 2 1 2019-08-15 09:03:37 2 3 2019-08-15 09:53:37 2 3 2019-08-15 10:08:37 2 3 2019-08-15 10:33:37 2 5 2019-08-15 10:53:37 2 5 2019-08-15 11:13:37 2 4 2019-08-15 11:18:37 2 6 2019-08-15 11:38:37 1 1 2019-08-15 11:38:37 2 5 2019-08-15 11:48:37 1 1 2019-08-15 11:48:37 2 5 2019-08-15 16:23:37 2 5 2019-08-15 16:38:37 2 5 2019-08-15 17:03:37 2 5 2019-08-15 18:03:37 2 3 2019-08-15 18:18:37 2 5 2019-08-15 18:43:37 2 5 2019-08-15 19:23:37 2 7 2019-08-15 19:28:37 2 7 2019-08-15 19:33:37 2 7 2019-08-15 20:13:37 2 3 2019-08-15 20:28:37 2 3 2019-08-15 21:13:37 2 7 2019-08-15 21:18:37 2 7 2019-08-15 21:38:37 2 5 2019-08-15 21:43:37 2 5 2019-08-15 22:13:37 1 1 2019-08-15 22:13:37 2 6 2019-08-15 22:18:37 2 5 2019-08-15 22:28:37 2 7 2019-08-15 22:38:37 1 1 2019-08-15 22:38:37 2 6 2019-08-15 23:08:37 2 5 2019-08-15 23:13:38 2 7 2019-08-15 23:48:37 2 7 2019-08-15 23:58:37 2 7 2019-08-16 00:03:37 2 7 2019-08-16 00:48:37 2 4 2019-08-16 00:58:37 2 4 2019-08-16 01:08:37 2 4 2019-08-16 01:18:37 2 4 2019-08-16 01:28:37 2 6 2019-08-16 01:53:37 2 6 2019-08-16 02:08:37 2 4 2019-08-16 02:28:37 2 4 2019-08-16 02:38:37 2 4 2019-08-16 02:48:37 2 4 2019-08-16 03:08:37 2 4 2019-08-16 03:23:37 2 2 2019-08-16 03:38:37 2 2 2019-08-16 04:03:37 2 3 2019-08-16 04:08:37 2 3 2019-08-16 04:28:37 2 1 2019-08-16 04:48:37 2 1 2019-08-16 04:58:37 2 1 2019-08-16 05:08:37 2 1 2019-08-16 05:18:37 2 1 2019-08-16 05:28:37 2 1 2019-08-16 05:38:37 2 1 2019-08-16 05:58:37 2 1 2019-08-16 06:08:37 2 1 2019-08-16 06:18:37 2 1 2019-08-16 06:28:37 2 1 2019-08-16 06:38:37 2 1 2019-08-16 06:48:37 2 1 2019-08-16 06:58:37 2 1 2019-08-16 07:48:37 2 1 2019-08-16 08:38:37 2 1 2019-08-16 08:58:37 2 3 2019-08-16 09:13:37 2 3 2019-08-16 09:23:37 2 3 2019-08-16 09:33:37 2 3 2019-08-16 09:43:37 2 3 2019-08-16 09:53:37 2 3 2019-08-16 10:18:37 1 1 2019-08-16 10:18:37 2 2 2019-08-16 10:28:37 1 1 2019-08-16 10:28:37 2 2 2019-08-16 10:38:37 1 1 2019-08-16 10:38:37 2 2 2019-08-16 10:43:37 1 1 2019-08-16 10:43:37 2 4 2019-08-16 10:53:37 2 3 2019-08-16 11:03:37 1 1 2019-08-16 11:03:37 2 4 2019-08-16 11:23:37 2 3 2019-08-16 11:58:37 2 5 2019-08-16 12:03:37 2 5 2019-08-16 12:18:37 2 5 2019-08-16 12:38:37 2 7 2019-08-16 12:48:37 2 7 2019-08-16 13:18:37 2 7 2019-08-16 13:53:37 2 5 2019-08-16 14:03:37 2 5 2019-08-16 14:08:37 2 7 2019-08-16 14:33:37 2 7 2019-08-16 14:48:37 2 7 2019-08-16 14:53:37 2 9 2019-08-16 15:03:37 2 5 2019-08-16 15:13:37 1 1 2019-08-16 15:13:37 2 4 2019-08-16 15:43:37 1 1 2019-08-16 15:43:37 2 4 2019-08-16 16:18:37 2 5 2019-08-16 16:38:37 2 5 2019-08-16 17:08:37 1 1 2019-08-16 17:08:37 2 6 2019-08-16 17:33:37 2 9 2019-08-16 17:53:37 2 9 2019-08-16 18:28:37 2 5 2019-08-16 18:33:37 1 1 2019-08-16 18:33:37 2 6 2019-08-16 18:38:37 2 5 2019-08-16 18:43:37 2 5 2019-08-16 19:23:37 2 3 2019-08-16 19:43:37 2 7 2019-08-16 19:53:37 2 5 2019-08-16 20:08:37 1 1 2019-08-16 20:08:37 2 4 2019-08-16 20:18:37 2 3 2019-08-16 20:28:37 1 1 2019-08-16 20:28:37 2 4 2019-08-16 20:43:37 1 1 2019-08-16 20:43:37 2 6 2019-08-16 20:48:37 1 1 2019-08-16 20:48:37 2 4 2019-08-16 21:03:37 1 1 2019-08-16 21:03:37 2 4 2019-08-16 21:28:37 2 5 2019-08-16 21:38:37 2 7 2019-08-16 21:58:37 2 5 2019-08-16 22:58:37 2 5 2019-08-16 23:13:37 2 5 2019-08-16 23:58:37 2 9 2019-08-17 00:13:37 2 9 2019-08-17 01:08:37 2 7 2019-08-17 01:28:37 2 7 2019-08-17 01:48:37 2 5 2019-08-17 02:28:37 2 5 2019-08-17 02:38:37 2 5 2019-08-17 02:48:37 2 5 2019-08-17 02:58:37 2 5 2019-08-17 03:08:37 2 5 2019-08-17 03:43:37 2 3 2019-08-17 04:03:37 2 2 2019-08-17 04:13:37 2 2 2019-08-17 04:23:37 1 1 2019-08-17 04:23:37 2 1 2019-08-17 06:13:37 2 1 2019-08-17 06:23:37 2 1 2019-08-17 06:33:37 2 1 2019-08-17 07:08:37 1 1 2019-08-17 07:18:37 1 1 2019-08-17 07:43:37 1 1 2019-08-17 07:48:37 1 1 2019-08-17 07:48:37 2 2 2019-08-17 07:58:37 1 1 2019-08-17 07:58:37 2 2 2019-08-17 08:13:37 1 1 2019-08-17 08:13:37 2 2 2019-08-17 08:33:37 1 1 2019-08-17 08:33:37 2 1 2019-08-17 08:43:37 1 1 2019-08-17 08:43:37 2 3 2019-08-17 09:08:37 1 1 2019-08-17 09:08:37 2 2 2019-08-17 09:38:37 1 1 2019-08-17 09:38:37 2 2 2019-08-17 09:58:37 1 1 2019-08-17 09:58:37 2 2 2019-08-17 12:08:37 1 1 2019-08-17 12:08:37 2 2 2019-08-17 12:18:37 1 1 2019-08-17 12:18:37 2 6 2019-08-17 12:23:37 1 1 2019-08-17 12:23:37 2 8 2019-08-17 12:58:37 1 1 2019-08-17 12:58:37 2 6 2019-08-17 13:33:37 1 1 2019-08-17 13:33:37 2 8 2019-08-17 14:03:37 1 1 2019-08-17 14:03:37 2 8 2019-08-17 14:13:37 1 1 2019-08-17 14:13:37 2 8 2019-08-17 14:28:37 1 1 2019-08-17 14:28:37 2 8 2019-08-17 14:33:37 2 8 2019-08-17 14:48:37 1 1 2019-08-17 14:48:37 2 8 2019-08-17 14:58:37 1 1 2019-08-17 14:58:37 2 6 2019-08-17 15:03:37 1 1 2019-08-17 15:03:37 2 6 2019-08-17 15:13:37 1 1 2019-08-17 15:13:37 2 6 2019-08-17 15:18:37 1 1 2019-08-15 16:28:37 2 6 2019-08-15 16:33:37 2 6 2019-08-15 16:43:37 2 6 2019-08-15 16:53:37 2 8 2019-08-15 16:58:37 2 6 2019-08-15 17:33:37 2 2 2019-08-15 17:43:37 2 2 2019-08-15 17:53:37 2 2 2019-08-15 18:13:37 2 2 2019-08-15 18:28:37 2 4 2019-08-15 18:53:37 2 4 2019-08-15 18:58:37 2 4 2019-08-15 19:08:37 2 4 2019-08-15 19:18:37 2 8 2019-08-15 20:08:37 2 4 2019-08-15 20:38:37 2 2 2019-08-15 20:48:37 1 1 2019-08-15 20:48:37 2 1 2019-08-15 21:03:37 1 1 2019-08-15 21:03:37 2 3 2019-08-15 21:08:37 2 8 2019-08-15 21:28:37 2 4 2019-08-15 21:33:37 2 6 2019-08-15 21:53:37 2 4 2019-08-15 22:03:37 2 4 2019-08-15 22:23:37 2 6 2019-08-15 22:33:37 1 1 2019-08-15 22:33:37 2 7 2019-08-15 23:03:37 2 6 2019-08-15 23:28:37 2 6 2019-08-15 23:53:37 2 8 2019-08-16 00:13:37 2 6 2019-08-16 00:18:37 2 4 2019-08-16 00:28:37 2 4 2019-08-16 00:38:37 2 3 2019-08-16 01:13:37 1 1 2019-08-16 01:13:37 2 4 2019-08-16 01:38:37 2 5 2019-08-16 01:58:37 2 7 2019-08-16 02:03:37 2 5 2019-08-16 02:18:37 2 3 2019-08-16 02:23:37 2 5 2019-08-16 02:33:37 1 1 2019-08-16 02:33:37 2 4 2019-08-16 02:43:37 1 1 2019-08-16 02:43:37 2 4 2019-08-16 02:58:37 2 3 2019-08-16 03:28:37 2 1 2019-08-16 03:53:37 2 3 2019-08-16 03:58:37 2 3 2019-08-16 04:13:37 2 1 2019-08-16 04:33:37 2 1 2019-08-16 04:43:37 2 1 2019-08-16 05:03:37 2 1 2019-08-16 05:13:37 2 1 2019-08-16 05:23:37 2 1 2019-08-16 05:33:37 2 1 2019-08-16 05:43:37 2 1 2019-08-16 05:53:37 2 1 2019-08-16 06:03:37 2 1 2019-08-16 06:13:37 2 1 2019-08-16 06:23:37 2 1 2019-08-16 06:33:37 2 1 2019-08-16 06:43:37 2 1 2019-08-16 06:53:37 2 1 2019-08-16 07:33:37 1 1 2019-08-16 07:43:37 2 1 2019-08-16 08:23:37 2 1 2019-08-16 08:33:37 2 1 2019-08-16 08:43:37 2 1 2019-08-16 08:53:37 2 3 2019-08-16 09:08:37 2 3 2019-08-16 09:18:37 2 3 2019-08-16 09:28:37 2 3 2019-08-16 09:38:37 2 3 2019-08-16 10:23:37 1 1 2019-08-16 10:23:37 2 2 2019-08-16 12:08:37 2 9 2019-08-16 12:23:37 2 7 2019-08-16 13:03:37 2 7 2019-08-16 13:58:37 2 5 2019-08-16 14:58:37 2 5 2019-08-16 15:08:37 2 5 2019-08-16 15:33:37 1 1 2019-08-16 15:33:37 2 6 2019-08-16 15:48:37 1 1 2019-08-16 15:48:37 2 4 2019-08-16 16:13:37 2 5 2019-08-16 16:33:37 2 5 2019-08-16 16:43:37 2 5 2019-08-16 16:48:37 1 1 2019-08-16 16:48:37 2 4 2019-08-16 17:23:37 1 1 2019-08-16 17:23:37 2 6 2019-08-16 18:03:37 2 7 2019-08-16 18:13:37 2 11 2019-08-16 18:18:37 2 7 2019-08-16 19:03:37 2 3 2019-08-16 19:13:37 2 5 2019-08-16 19:58:37 2 5 2019-08-16 20:13:37 1 1 2019-08-16 20:13:37 2 4 2019-08-16 20:23:37 1 1 2019-08-16 20:23:37 2 4 2019-08-16 20:38:37 1 1 2019-08-16 20:38:37 2 10 2019-08-16 20:53:37 1 1 2019-08-16 20:53:37 2 4 2019-08-16 20:58:37 1 1 2019-08-16 20:58:37 2 4 2019-08-16 21:48:37 1 1 2019-08-16 21:48:37 2 4 2019-08-16 22:03:37 1 1 2019-08-16 22:03:37 2 6 2019-08-16 22:08:37 1 1 2019-08-16 22:08:37 2 6 2019-08-16 22:18:37 1 1 2019-08-16 22:18:37 2 4 2019-08-16 22:23:37 1 1 2019-08-16 22:23:37 2 4 2019-08-16 22:28:37 1 2 2019-08-16 22:28:37 2 5 2019-08-16 22:38:37 1 1 2019-08-16 22:38:37 2 6 2019-08-16 23:18:37 2 5 2019-08-16 23:28:37 2 5 2019-08-16 23:33:37 2 7 2019-08-16 23:48:38 2 9 2019-08-16 23:53:37 2 7 2019-08-17 00:08:37 2 9 2019-08-17 00:58:37 2 7 2019-08-17 01:13:37 2 7 2019-08-17 01:23:37 2 7 2019-08-17 01:33:37 2 7 2019-08-17 01:38:37 2 7 2019-08-17 01:43:37 1 1 2019-08-17 01:43:37 2 8 2019-08-17 01:53:37 2 5 2019-08-17 02:08:37 2 7 2019-08-17 02:33:37 2 5 2019-08-17 02:43:37 2 5 2019-08-17 02:53:37 2 5 2019-08-17 03:03:37 2 5 2019-08-17 03:13:37 2 5 2019-08-17 03:38:37 2 3 2019-08-17 04:08:37 2 2 2019-08-17 04:18:37 2 2 2019-08-17 06:08:37 2 1 2019-08-17 06:18:37 2 1 2019-08-17 06:28:37 2 1 2019-08-17 07:03:37 2 1 2019-08-17 07:13:37 1 1 2019-08-17 07:23:37 1 1 2019-08-17 07:33:37 1 1 2019-08-17 07:33:37 2 2 2019-08-17 07:38:37 1 1 2019-08-17 07:53:37 1 1 2019-08-17 07:53:37 2 2 2019-08-17 08:03:37 1 1 2019-08-17 08:03:37 2 2 2019-08-17 08:48:37 1 1 2019-08-17 08:48:37 2 2 2019-08-17 09:03:37 1 1 2019-08-17 09:03:37 2 2 2019-08-17 09:33:37 1 1 2019-08-17 09:33:37 2 2 2019-08-17 10:03:37 1 1 2019-08-17 10:03:37 2 2 2019-08-17 10:13:37 1 1 2019-08-17 10:13:37 2 2 2019-08-17 11:13:37 1 1 2019-08-17 11:13:37 2 4 2019-08-17 11:38:37 1 1 2019-08-17 11:38:37 2 2 2019-08-17 11:58:37 1 1 2019-08-17 11:58:37 2 4 2019-08-17 13:13:37 1 1 2019-08-17 13:13:37 2 6 2019-08-17 13:43:37 1 1 2019-08-17 13:43:37 2 10 2019-08-17 13:48:37 1 1 2019-08-17 13:48:37 2 8 2019-08-17 13:53:37 1 1 2019-08-17 13:53:37 2 8 2019-08-17 14:33:37 1 1 2019-08-15 16:48:37 2 8 2019-08-15 17:18:37 2 4 2019-08-15 17:38:37 2 2 2019-08-15 17:58:37 2 2 2019-08-15 18:08:37 2 2 2019-08-15 18:38:37 2 4 2019-08-15 18:48:37 2 4 2019-08-15 19:03:37 2 4 2019-08-15 19:13:37 2 4 2019-08-15 19:38:37 2 6 2019-08-15 19:48:37 2 6 2019-08-15 19:58:37 2 6 2019-08-15 20:03:37 2 4 2019-08-15 20:33:37 2 2 2019-08-15 20:58:37 1 1 2019-08-15 20:58:37 2 3 2019-08-15 21:58:37 2 4 2019-08-15 22:43:37 2 6 2019-08-15 22:48:37 2 6 2019-08-15 22:58:37 1 1 2019-08-15 22:58:37 2 5 2019-08-15 23:33:37 1 1 2019-08-15 23:33:37 2 5 2019-08-16 01:33:37 2 5 2019-08-16 01:43:37 2 5 2019-08-16 02:53:37 2 3 2019-08-16 03:13:37 2 3 2019-08-16 03:33:37 2 1 2019-08-16 03:43:37 2 3 2019-08-16 04:18:37 2 2 2019-08-16 04:38:37 2 2 2019-08-16 05:48:37 2 2 2019-08-16 09:03:37 2 4 2019-08-16 09:58:37 2 2 2019-08-16 10:08:37 2 2 2019-08-16 10:13:37 1 1 2019-08-16 10:13:37 2 3 2019-08-16 10:33:37 1 1 2019-08-16 10:33:37 2 3 2019-08-16 11:08:37 1 1 2019-08-16 11:08:37 2 5 2019-08-16 11:18:37 1 1 2019-08-16 11:18:37 2 3 2019-08-16 11:33:37 1 1 2019-08-16 11:33:37 2 3 2019-08-16 11:43:37 2 4 2019-08-16 11:48:37 2 2 2019-08-16 11:53:38 2 6 2019-08-16 12:33:37 2 6 2019-08-16 12:43:37 2 6 2019-08-16 12:58:37 2 8 2019-08-16 13:08:37 2 4 2019-08-16 13:13:37 2 6 2019-08-16 13:23:37 2 6 2019-08-16 13:33:37 2 6 2019-08-16 13:48:37 2 8 2019-08-16 14:13:37 2 6 2019-08-16 14:18:37 2 6 2019-08-16 14:28:37 2 6 2019-08-16 14:38:37 2 6 2019-08-16 14:43:37 2 6 2019-08-16 15:18:37 1 1 2019-08-16 15:18:37 2 5 2019-08-16 15:58:37 2 4 2019-08-16 16:03:37 2 6 2019-08-16 16:23:37 2 4 2019-08-16 16:58:37 2 4 2019-08-16 17:03:37 1 1 2019-08-16 17:03:37 2 7 2019-08-16 17:28:37 1 1 2019-08-16 17:28:37 2 9 2019-08-16 17:38:37 2 8 2019-08-16 17:58:37 2 8 2019-08-16 18:08:37 2 8 2019-08-16 18:48:37 2 4 2019-08-16 18:53:37 2 2 2019-08-16 19:33:37 2 4 2019-08-16 19:38:37 2 6 2019-08-16 21:13:37 1 1 2019-08-16 21:13:37 2 5 2019-08-16 21:18:37 1 1 2019-08-16 21:18:37 2 5 2019-08-16 23:23:37 2 6 2019-08-16 23:38:37 2 8 2019-08-17 00:03:37 2 10 2019-08-17 00:23:37 2 10 2019-08-17 00:28:37 2 10 2019-08-17 00:43:37 2 8 2019-08-17 00:53:37 2 8 2019-08-17 01:58:37 2 6 2019-08-17 02:18:37 2 6 2019-08-17 03:23:37 2 4 2019-08-17 03:33:37 2 4 2019-08-17 03:48:37 2 2 2019-08-17 03:58:37 2 2 2019-08-17 04:28:37 2 1 2019-08-17 04:38:37 2 1 2019-08-17 06:38:37 1 1 2019-08-17 06:38:37 2 1 2019-08-17 06:48:37 1 1 2019-08-17 06:48:37 2 1 2019-08-17 06:53:37 1 1 2019-08-17 06:53:37 2 1 2019-08-17 07:28:37 1 1 2019-08-17 07:28:37 2 1 2019-08-17 08:18:37 1 1 2019-08-17 08:18:37 2 1 2019-08-17 08:53:37 1 1 2019-08-17 08:53:37 2 3 2019-08-17 09:13:37 1 1 2019-08-17 09:13:37 2 1 2019-08-17 09:23:37 1 1 2019-08-17 09:23:37 2 1 2019-08-17 09:43:37 1 1 2019-08-17 09:43:37 2 1 2019-08-17 09:53:37 1 1 2019-08-17 09:53:37 2 1 2019-08-17 10:18:37 1 1 2019-08-17 10:18:37 2 3 2019-08-17 10:23:37 1 1 2019-08-17 10:23:37 2 3 2019-08-17 10:28:37 1 1 2019-08-17 10:28:37 2 3 2019-08-17 10:33:37 1 1 2019-08-17 10:33:37 2 1 2019-08-17 10:43:37 1 1 2019-08-17 10:43:37 2 3 2019-08-17 10:53:37 1 2 2019-08-17 10:53:37 2 2 2019-08-17 11:03:37 1 1 2019-08-17 11:03:37 2 3 2019-08-17 11:18:37 1 1 2019-08-17 11:18:37 2 3 2019-08-17 11:28:37 1 1 2019-08-17 11:28:37 2 3 2019-08-17 11:33:37 1 1 2019-08-17 11:33:37 2 3 2019-08-17 11:43:37 1 1 2019-08-17 11:43:37 2 3 2019-08-17 11:48:37 1 1 2019-08-17 11:48:37 2 3 2019-08-17 12:28:37 1 1 2019-08-17 12:28:37 2 9 2019-08-17 12:43:37 1 1 2019-08-17 12:43:37 2 5 2019-08-17 12:48:37 1 1 2019-08-17 12:48:37 2 7 2019-08-17 13:03:37 1 1 2019-08-17 13:03:37 2 9 2019-08-17 13:08:37 1 1 2019-08-17 13:08:37 2 7 2019-08-17 13:18:37 1 1 2019-08-17 13:18:37 2 7 2019-08-17 13:28:37 1 1 2019-08-17 13:28:37 2 7 2019-08-17 13:38:37 1 2 2019-08-17 13:38:37 2 8 2019-08-17 14:43:37 1 1 2019-08-17 14:43:37 2 9 2019-08-17 14:53:37 1 1 2019-08-17 14:53:37 2 7 2019-08-17 15:08:37 1 1 2019-08-17 15:08:37 2 7 2019-08-17 15:18:37 2 8 2019-08-17 15:23:37 1 1 2019-08-17 15:23:37 2 6 2019-08-17 15:33:37 1 1 2019-08-17 15:33:37 2 6 2019-08-17 15:48:37 1 1 2019-08-17 15:48:37 2 3 2019-08-17 15:53:37 1 1 2019-08-17 15:53:37 2 2 2019-08-17 15:58:37 2 3 2019-08-17 16:13:37 2 4 2019-08-17 16:23:37 2 4 2019-08-17 16:28:37 2 4 2019-08-17 16:33:37 2 4 2019-08-17 16:38:37 2 5 2019-08-17 16:43:37 2 5 2019-08-17 16:48:37 2 5 2019-08-17 16:53:37 2 5 2019-08-17 16:58:37 2 4 2019-08-17 17:03:37 2 4 2019-08-17 17:08:37 2 6 2019-08-17 17:13:37 2 6 2019-08-15 17:08:37 2 5 2019-08-15 17:13:37 2 3 2019-08-15 17:23:37 2 5 2019-08-15 17:28:37 2 3 2019-08-15 17:48:37 2 3 2019-08-15 18:23:37 2 5 2019-08-15 18:33:37 1 1 2019-08-15 18:33:37 2 4 2019-08-15 19:43:37 2 5 2019-08-15 19:53:37 2 5 2019-08-15 20:18:37 2 3 2019-08-15 20:23:37 2 3 2019-08-15 20:43:37 1 1 2019-08-15 20:43:37 2 2 2019-08-15 20:53:37 2 3 2019-08-15 21:23:37 2 5 2019-08-15 21:48:37 2 5 2019-08-15 22:08:37 2 5 2019-08-15 22:53:37 2 5 2019-08-15 23:18:37 1 1 2019-08-15 23:18:37 2 6 2019-08-15 23:23:37 1 1 2019-08-15 23:23:37 2 6 2019-08-15 23:38:37 1 1 2019-08-15 23:38:37 2 6 2019-08-15 23:43:37 2 7 2019-08-16 00:08:37 2 7 2019-08-16 00:23:37 2 5 2019-08-16 00:33:37 2 4 2019-08-16 00:43:37 2 4 2019-08-16 00:53:37 2 4 2019-08-16 01:03:37 2 4 2019-08-16 01:23:37 2 4 2019-08-16 01:48:37 2 6 2019-08-16 02:13:37 2 4 2019-08-16 03:03:37 2 4 2019-08-16 03:18:37 2 2 2019-08-16 03:48:37 2 2 2019-08-16 04:23:37 2 2 2019-08-16 04:53:37 1 1 2019-08-16 04:53:37 2 1 2019-08-16 08:48:37 2 2 2019-08-16 09:48:37 2 4 2019-08-16 10:03:37 2 2 2019-08-16 10:48:37 1 2 2019-08-16 10:48:37 2 4 2019-08-16 10:58:37 1 1 2019-08-16 10:58:37 2 3 2019-08-16 11:13:37 1 1 2019-08-16 11:13:37 2 3 2019-08-16 11:28:37 1 1 2019-08-16 11:28:37 2 3 2019-08-16 11:38:37 2 4 2019-08-16 12:13:37 2 6 2019-08-16 12:28:37 2 6 2019-08-16 12:53:37 2 8 2019-08-16 13:28:37 2 6 2019-08-16 13:38:37 2 6 2019-08-16 13:43:37 2 8 2019-08-16 14:23:37 2 6 2019-08-16 15:23:37 1 1 2019-08-16 15:23:37 2 5 2019-08-16 15:28:37 1 1 2019-08-16 15:28:37 2 5 2019-08-16 15:38:37 2 6 2019-08-16 15:53:37 2 4 2019-08-16 16:08:37 2 8 2019-08-16 16:28:37 2 4 2019-08-16 16:53:37 2 4 2019-08-16 17:13:37 1 1 2019-08-16 17:13:37 2 5 2019-08-16 17:18:37 1 1 2019-08-16 17:18:37 2 5 2019-08-16 17:43:37 2 8 2019-08-16 17:48:37 2 10 2019-08-16 18:23:37 2 6 2019-08-16 18:58:37 2 2 2019-08-16 19:08:37 2 4 2019-08-16 19:18:37 2 4 2019-08-16 19:28:37 2 4 2019-08-16 19:48:37 2 6 2019-08-16 20:03:37 1 1 2019-08-16 20:03:37 2 3 2019-08-16 20:33:37 1 1 2019-08-16 20:33:37 2 9 2019-08-16 21:08:37 1 1 2019-08-16 21:08:37 2 5 2019-08-16 21:23:37 2 6 2019-08-16 21:33:37 2 8 2019-08-16 21:43:37 2 6 2019-08-16 21:53:37 2 4 2019-08-16 22:13:37 1 1 2019-08-16 22:13:37 2 5 2019-08-16 22:33:37 1 1 2019-08-16 22:33:37 2 5 2019-08-16 22:43:37 1 1 2019-08-16 22:43:37 2 7 2019-08-16 22:48:37 1 1 2019-08-16 22:48:37 2 7 2019-08-16 22:53:37 2 6 2019-08-16 23:03:37 1 1 2019-08-16 23:03:37 2 5 2019-08-16 23:08:37 2 6 2019-08-16 23:43:37 2 8 2019-08-17 00:18:37 1 1 2019-08-17 00:18:37 2 9 2019-08-17 00:33:37 2 10 2019-08-17 00:38:37 2 8 2019-08-17 00:48:37 2 8 2019-08-17 01:03:37 2 8 2019-08-17 01:18:37 2 6 2019-08-17 02:03:37 2 6 2019-08-17 02:13:37 2 6 2019-08-17 02:23:37 1 1 2019-08-17 02:23:37 2 5 2019-08-17 03:18:37 2 4 2019-08-17 03:28:37 2 4 2019-08-17 03:53:37 2 2 2019-08-17 04:33:37 2 1 2019-08-17 05:23:37 1 1 2019-08-17 06:43:37 1 1 2019-08-17 06:43:37 2 1 2019-08-17 06:58:37 1 1 2019-08-17 06:58:37 2 1 2019-08-17 08:08:37 1 1 2019-08-17 08:08:37 2 1 2019-08-17 08:23:37 1 1 2019-08-17 08:23:37 2 1 2019-08-17 08:28:37 1 1 2019-08-17 08:28:37 2 2 2019-08-17 08:38:37 1 1 2019-08-17 08:38:37 2 2 2019-08-17 08:58:37 1 1 2019-08-17 08:58:37 2 3 2019-08-17 09:18:37 1 1 2019-08-17 09:18:37 2 1 2019-08-17 09:28:37 1 1 2019-08-17 09:28:37 2 1 2019-08-17 09:48:37 1 1 2019-08-17 09:48:37 2 1 2019-08-17 10:08:37 1 1 2019-08-17 10:08:37 2 1 2019-08-17 10:38:37 1 1 2019-08-17 10:38:37 2 1 2019-08-17 10:48:37 1 2 2019-08-17 10:48:37 2 2 2019-08-17 10:58:37 1 1 2019-08-17 10:58:37 2 3 2019-08-17 11:08:37 1 1 2019-08-17 11:08:37 2 3 2019-08-17 11:23:37 1 1 2019-08-17 11:23:37 2 3 2019-08-17 11:53:37 1 1 2019-08-17 11:53:37 2 3 2019-08-17 12:03:37 1 1 2019-08-17 12:03:37 2 3 2019-08-17 12:13:37 1 1 2019-08-17 12:13:37 2 3 2019-08-17 12:33:37 1 1 2019-08-17 12:33:37 2 7 2019-08-17 12:38:37 1 1 2019-08-17 12:38:37 2 5 2019-08-17 12:53:37 1 1 2019-08-17 12:53:37 2 7 2019-08-17 13:23:37 1 1 2019-08-17 13:23:37 2 7 2019-08-17 13:58:37 1 1 2019-08-17 13:58:37 2 7 2019-08-17 14:08:37 1 1 2019-08-17 14:08:37 2 9 2019-08-17 14:18:37 1 1 2019-08-17 14:18:37 2 7 2019-08-17 14:23:38 1 1 2019-08-17 14:23:38 2 9 2019-08-17 14:38:37 1 1 2019-08-17 14:38:37 2 7 2019-08-17 15:28:37 1 1 2019-08-17 15:28:37 2 6 2019-08-17 15:38:37 1 1 2019-08-17 15:38:37 2 5 2019-08-17 15:43:37 1 1 2019-08-17 15:43:37 2 3 2019-08-17 16:03:37 2 3 2019-08-17 16:08:37 2 4 2019-08-17 16:18:37 2 4 2019-08-17 17:18:37 2 4 2019-08-17 17:23:37 1 1 2019-08-17 17:23:37 2 5 2019-08-17 17:33:37 2 6 2019-08-17 18:38:37 2 8 2019-08-17 19:13:37 2 4 2019-08-17 19:28:37 2 4 2019-08-17 19:43:37 2 6 2019-08-17 20:03:37 2 6 2019-08-17 20:58:37 2 5 2019-08-17 21:08:37 1 2 2019-08-17 21:08:37 2 5 2019-08-17 21:18:37 1 1 2019-08-17 21:18:37 2 4 2019-08-17 21:23:37 1 1 2019-08-17 21:23:37 2 2 2019-08-17 21:33:37 1 1 2019-08-17 21:33:37 2 2 2019-08-17 21:58:37 1 1 2019-08-17 21:58:37 2 4 2019-08-17 22:18:37 1 1 2019-08-17 22:18:37 2 4 2019-08-17 22:28:37 1 1 2019-08-17 22:28:37 2 4 2019-08-17 22:43:37 1 1 2019-08-17 22:43:37 2 4 2019-08-17 22:58:37 1 1 2019-08-17 22:58:37 2 4 2019-08-17 23:08:37 2 5 2019-08-17 23:28:37 2 5 2019-08-18 00:03:37 2 5 2019-08-18 00:23:37 2 4 2019-08-18 00:43:37 2 4 2019-08-18 01:03:37 2 4 2019-08-18 01:13:37 2 4 2019-08-18 01:23:37 2 4 2019-08-18 01:38:37 2 2 2019-08-18 01:48:37 2 2 2019-08-18 01:58:37 2 2 2019-08-18 02:08:37 2 2 2019-08-18 02:18:37 2 2 2019-08-18 02:58:37 2 2 2019-08-18 03:08:37 2 2 2019-08-18 03:18:37 2 2 2019-08-18 03:28:37 2 2 2019-08-18 03:38:37 2 2 2019-08-18 03:48:37 2 2 2019-08-18 03:58:37 2 2 2019-08-18 04:03:37 2 2 2019-08-18 04:13:37 2 2 2019-08-18 04:23:37 2 2 2019-08-18 04:33:37 2 2 2019-08-18 04:43:37 2 2 2019-08-18 04:53:37 2 2 2019-08-18 05:03:37 2 2 2019-08-18 05:13:37 2 2 2019-08-18 05:23:37 2 2 2019-08-18 05:33:37 2 2 2019-08-18 05:43:37 2 2 2019-08-18 05:53:37 2 2 2019-08-18 07:03:37 2 2 2019-08-18 07:13:37 2 2 2019-08-18 07:23:37 2 2 2019-08-18 08:18:37 1 1 2019-08-18 08:18:37 2 2 2019-08-18 08:38:37 1 1 2019-08-18 08:48:38 1 1 2019-08-18 08:53:37 1 1 2019-08-18 08:58:37 1 1 2019-08-18 09:08:37 1 1 2019-08-18 09:18:37 1 1 2019-08-18 10:38:37 1 1 2019-08-18 10:38:37 2 4 2019-08-18 10:53:37 1 1 2019-08-18 10:53:37 2 6 2019-08-18 10:58:37 1 1 2019-08-18 10:58:37 2 4 2019-08-18 11:08:37 1 1 2019-08-18 11:08:37 2 4 2019-08-18 11:18:37 1 1 2019-08-18 11:18:37 2 4 2019-08-18 11:28:37 1 1 2019-08-18 11:28:37 2 4 2019-08-18 11:38:37 1 1 2019-08-18 11:38:37 2 4 2019-08-18 11:48:37 2 5 2019-08-18 11:58:37 1 1 2019-08-18 11:58:37 2 5 2019-08-18 12:08:37 1 1 2019-08-18 12:08:37 2 7 2019-08-18 12:23:37 1 1 2019-08-18 12:23:37 2 5 2019-08-18 12:53:37 1 1 2019-08-18 12:53:37 2 5 2019-08-18 13:23:37 1 1 2019-08-18 13:23:37 2 4 2019-08-18 13:58:37 1 1 2019-08-18 13:58:37 2 8 2019-08-18 14:18:37 1 2 2019-08-18 14:18:37 2 5 2019-08-18 14:38:37 1 2 2019-08-18 14:38:37 2 5 2019-08-18 14:43:37 1 2 2019-08-18 14:43:37 2 5 2019-08-18 15:18:37 1 2 2019-08-18 15:18:37 2 5 2019-08-18 15:28:37 1 2 2019-08-18 15:28:37 2 5 2019-08-18 15:43:37 1 2 2019-08-18 15:43:37 2 7 2019-08-18 15:58:37 1 2 2019-08-18 15:58:37 2 5 2019-08-18 16:13:37 1 2 2019-08-18 16:13:37 2 5 2019-08-18 16:23:37 1 2 2019-08-18 16:23:37 2 5 2019-08-18 16:33:37 1 2 2019-08-18 16:33:37 2 7 2019-08-18 16:38:37 1 2 2019-08-18 16:38:37 2 5 2019-08-18 16:53:37 1 2 2019-08-18 16:53:37 2 7 2019-08-18 16:58:37 1 2 2019-08-18 16:58:37 2 7 2019-08-18 17:58:37 1 1 2019-08-18 17:58:37 2 6 2019-08-18 18:28:37 2 11 2019-08-18 18:48:38 1 1 2019-08-18 18:48:38 2 10 2019-08-18 19:08:37 1 2 2019-08-18 19:08:37 2 9 2019-08-18 19:18:37 1 2 2019-08-18 19:18:37 2 9 2019-08-18 19:23:37 1 2 2019-08-18 19:23:37 2 7 2019-08-18 19:33:37 1 1 2019-08-18 19:33:37 2 6 2019-08-18 19:48:37 2 5 2019-08-18 20:38:37 2 3 2019-08-18 21:03:37 2 3 2019-08-18 21:18:37 2 5 2019-08-18 21:33:37 1 1 2019-08-18 21:33:37 2 8 2019-08-18 22:13:37 1 2 2019-08-18 22:13:37 2 7 2019-08-18 22:18:37 1 2 2019-08-18 22:18:37 2 7 2019-08-18 22:48:37 1 1 2019-08-18 22:48:37 2 4 2019-08-18 23:03:37 2 5 2019-08-18 23:33:37 2 7 2019-08-18 23:43:37 2 7 2019-08-18 23:58:37 2 7 2019-08-19 01:23:37 2 9 2019-08-19 01:33:37 2 9 2019-08-19 02:28:37 2 5 2019-08-19 02:38:37 2 5 2019-08-19 02:48:37 2 5 2019-08-19 04:03:37 2 3 2019-08-19 04:13:37 2 3 2019-08-19 04:23:37 2 3 2019-08-19 04:33:37 2 3 2019-08-19 05:23:37 2 1 2019-08-19 05:28:37 2 1 2019-08-19 05:33:37 2 1 2019-08-19 05:38:37 2 1 2019-08-19 05:43:37 2 1 2019-08-19 05:48:37 2 1 2019-08-19 05:53:37 2 1 2019-08-19 05:58:37 2 1 2019-08-19 06:03:37 2 1 2019-08-19 06:13:37 1 1 2019-08-19 06:13:37 2 2 2019-08-19 06:18:37 1 1 2019-08-19 06:18:37 2 2 2019-08-19 06:23:37 1 1 2019-08-19 06:23:37 2 2 2019-08-19 06:38:37 1 1 2019-08-19 06:38:37 2 2 2019-08-19 06:48:37 2 1 2019-08-19 06:53:37 2 1 2019-08-19 06:58:37 2 1 2019-08-19 07:03:37 2 1 2019-08-19 07:08:37 2 1 2019-08-19 07:13:37 2 1 2019-08-17 17:28:37 1 1 2019-08-17 17:28:37 2 5 2019-08-17 17:38:37 2 6 2019-08-17 17:48:37 2 7 2019-08-17 17:53:37 2 7 2019-08-17 17:58:37 2 9 2019-08-17 18:08:37 2 8 2019-08-17 18:43:37 2 6 2019-08-17 19:03:37 2 6 2019-08-17 19:23:37 2 4 2019-08-17 19:38:37 2 6 2019-08-17 19:58:37 2 6 2019-08-17 20:18:37 1 1 2019-08-17 20:18:37 2 6 2019-08-17 20:23:37 1 1 2019-08-17 20:23:37 2 8 2019-08-17 20:33:37 2 5 2019-08-17 21:28:37 1 1 2019-08-17 21:28:37 2 2 2019-08-17 21:48:37 1 1 2019-08-17 21:48:37 2 2 2019-08-17 22:03:37 1 1 2019-08-17 22:03:37 2 4 2019-08-17 22:33:37 1 1 2019-08-17 22:33:37 2 4 2019-08-17 22:38:37 1 1 2019-08-17 22:38:37 2 4 2019-08-17 22:53:37 1 1 2019-08-17 22:53:37 2 4 2019-08-17 23:33:37 2 5 2019-08-17 23:48:37 2 3 2019-08-18 00:08:37 2 3 2019-08-18 00:18:37 2 4 2019-08-18 00:33:37 2 6 2019-08-18 00:48:37 2 4 2019-08-18 01:08:37 2 4 2019-08-18 01:18:37 2 4 2019-08-18 01:28:37 2 4 2019-08-18 01:43:37 2 2 2019-08-18 01:53:37 2 2 2019-08-18 02:03:37 2 2 2019-08-18 02:13:37 2 2 2019-08-18 03:03:37 2 2 2019-08-18 03:13:37 2 2 2019-08-18 03:23:37 2 2 2019-08-18 03:33:37 2 2 2019-08-18 03:43:37 2 2 2019-08-18 03:53:37 2 2 2019-08-18 04:08:37 2 2 2019-08-18 04:18:37 2 2 2019-08-18 04:28:37 2 2 2019-08-18 04:38:37 2 2 2019-08-18 04:48:37 2 2 2019-08-18 04:58:37 2 2 2019-08-18 05:08:37 2 2 2019-08-18 05:18:37 2 2 2019-08-18 05:28:37 2 2 2019-08-18 05:38:37 2 2 2019-08-18 05:48:37 2 2 2019-08-18 05:58:37 2 2 2019-08-18 06:18:37 2 2 2019-08-18 06:38:37 2 2 2019-08-18 07:08:37 2 2 2019-08-18 07:18:37 2 2 2019-08-18 08:33:37 1 1 2019-08-18 08:33:37 2 1 2019-08-18 08:43:37 1 1 2019-08-18 08:43:37 2 1 2019-08-18 09:13:37 1 1 2019-08-18 09:13:37 2 1 2019-08-18 09:23:37 1 1 2019-08-18 09:23:37 2 1 2019-08-18 09:43:37 1 2 2019-08-18 09:43:37 2 4 2019-08-18 10:13:37 1 1 2019-08-18 10:13:37 2 3 2019-08-18 10:23:37 1 1 2019-08-18 10:23:37 2 5 2019-08-18 10:33:37 1 1 2019-08-18 10:33:37 2 5 2019-08-18 10:43:37 1 1 2019-08-18 10:43:37 2 5 2019-08-18 10:48:37 1 1 2019-08-18 10:48:37 2 7 2019-08-18 11:03:37 1 1 2019-08-18 11:03:37 2 5 2019-08-18 11:53:37 1 1 2019-08-18 11:53:37 2 6 2019-08-18 12:28:37 1 1 2019-08-18 12:28:37 2 6 2019-08-18 12:33:37 1 1 2019-08-18 12:33:37 2 6 2019-08-18 12:38:37 1 1 2019-08-18 12:38:37 2 4 2019-08-18 13:03:37 1 1 2019-08-18 13:03:37 2 4 2019-08-18 13:08:37 1 1 2019-08-18 13:08:37 2 6 2019-08-18 13:13:37 1 1 2019-08-18 13:13:37 2 4 2019-08-18 13:43:37 1 1 2019-08-18 13:43:37 2 7 2019-08-18 13:48:37 1 1 2019-08-18 13:48:37 2 5 2019-08-18 13:53:37 1 1 2019-08-18 13:53:37 2 7 2019-08-18 15:03:37 1 2 2019-08-18 15:03:37 2 4 2019-08-18 15:13:37 1 2 2019-08-18 15:13:37 2 4 2019-08-18 16:08:37 1 2 2019-08-18 16:08:37 2 6 2019-08-18 16:28:37 1 2 2019-08-18 16:28:37 2 8 2019-08-18 16:43:37 1 2 2019-08-18 16:43:37 2 6 2019-08-18 16:48:37 1 2 2019-08-18 16:48:37 2 8 2019-08-18 17:08:37 1 2 2019-08-18 17:08:37 2 6 2019-08-18 17:33:37 1 1 2019-08-18 17:33:37 2 7 2019-08-18 17:38:37 1 1 2019-08-18 17:38:37 2 7 2019-08-18 17:48:37 1 1 2019-08-18 17:48:37 2 7 2019-08-18 18:38:37 2 10 2019-08-18 18:58:37 1 1 2019-08-18 18:58:37 2 11 2019-08-18 19:03:37 1 1 2019-08-18 19:03:37 2 9 2019-08-18 19:28:37 1 1 2019-08-18 19:28:37 2 7 2019-08-18 19:43:37 1 1 2019-08-18 19:43:37 2 5 2019-08-18 19:53:37 2 6 2019-08-18 20:03:37 2 4 2019-08-18 20:13:37 2 4 2019-08-18 20:23:37 2 4 2019-08-18 20:28:37 2 2 2019-08-18 20:48:37 2 4 2019-08-18 21:23:37 1 1 2019-08-18 21:23:37 2 5 2019-08-18 21:43:37 1 1 2019-08-18 21:43:37 2 7 2019-08-18 21:48:37 1 2 2019-08-18 21:48:37 2 6 2019-08-18 21:58:37 1 2 2019-08-18 21:58:37 2 6 2019-08-18 22:03:37 1 2 2019-08-18 22:03:37 2 6 2019-08-18 22:23:37 1 1 2019-08-18 22:23:37 2 5 2019-08-18 22:33:37 1 1 2019-08-18 22:33:37 2 5 2019-08-18 22:43:37 1 1 2019-08-18 22:43:37 2 5 2019-08-18 23:13:37 2 6 2019-08-18 23:23:37 2 6 2019-08-18 23:28:37 2 8 2019-08-19 00:03:37 1 1 2019-08-19 00:03:37 2 5 2019-08-19 00:23:37 1 1 2019-08-19 00:23:37 2 5 2019-08-19 00:38:37 1 1 2019-08-19 00:38:37 2 5 2019-08-19 00:48:37 1 1 2019-08-19 00:48:37 2 5 2019-08-19 00:58:37 1 1 2019-08-19 00:58:37 2 7 2019-08-19 01:43:37 2 8 2019-08-19 01:48:38 2 6 2019-08-19 01:58:37 2 6 2019-08-19 02:08:37 2 8 2019-08-19 02:13:37 2 6 2019-08-19 02:58:37 2 4 2019-08-19 03:08:37 2 4 2019-08-19 03:18:37 2 4 2019-08-19 03:28:37 2 4 2019-08-19 03:38:37 2 4 2019-08-19 03:48:37 2 4 2019-08-19 04:08:37 2 3 2019-08-19 04:18:37 2 3 2019-08-19 04:28:37 2 3 2019-08-19 04:38:37 2 3 2019-08-17 17:43:37 2 7 2019-08-17 18:13:37 2 7 2019-08-17 18:23:37 1 1 2019-08-17 18:23:37 2 6 2019-08-17 18:28:37 2 7 2019-08-17 18:48:37 2 5 2019-08-17 18:58:37 2 5 2019-08-17 19:08:37 2 5 2019-08-17 19:18:37 2 5 2019-08-17 19:33:37 2 5 2019-08-17 19:53:37 2 5 2019-08-17 20:28:37 1 1 2019-08-17 20:28:37 2 7 2019-08-17 20:48:37 2 4 2019-08-17 21:03:37 1 1 2019-08-17 21:03:37 2 5 2019-08-17 21:13:37 1 1 2019-08-17 21:13:37 2 5 2019-08-17 21:38:37 1 1 2019-08-17 21:38:37 2 3 2019-08-17 21:43:37 1 1 2019-08-17 21:43:37 2 1 2019-08-17 21:53:37 1 1 2019-08-17 21:53:37 2 1 2019-08-17 22:23:37 1 1 2019-08-17 22:23:37 2 5 2019-08-17 22:48:37 1 1 2019-08-17 22:48:37 2 3 2019-08-17 23:03:37 1 1 2019-08-17 23:03:37 2 5 2019-08-17 23:18:37 2 4 2019-08-17 23:23:37 2 6 2019-08-17 23:38:37 2 4 2019-08-17 23:53:37 2 2 2019-08-17 23:58:37 2 4 2019-08-18 00:28:37 2 5 2019-08-18 00:38:37 2 5 2019-08-18 00:53:37 2 3 2019-08-18 01:33:37 2 3 2019-08-18 02:23:37 2 3 2019-08-18 02:38:37 2 1 2019-08-18 02:48:37 2 1 2019-08-18 06:03:37 2 1 2019-08-18 06:13:37 2 1 2019-08-18 06:23:37 2 1 2019-08-18 06:33:37 2 1 2019-08-18 06:43:37 2 1 2019-08-18 06:53:37 2 1 2019-08-18 07:28:37 2 3 2019-08-18 08:23:37 1 1 2019-08-18 08:23:37 2 3 2019-08-18 09:33:37 1 2 2019-08-18 09:33:37 2 2 2019-08-18 09:38:37 1 2 2019-08-18 09:38:37 2 2 2019-08-18 09:53:37 1 2 2019-08-18 09:53:37 2 2 2019-08-18 10:03:37 1 2 2019-08-18 10:03:37 2 4 2019-08-18 10:18:37 1 2 2019-08-18 10:18:37 2 4 2019-08-18 12:03:37 1 1 2019-08-18 12:03:37 2 6 2019-08-18 12:13:37 1 1 2019-08-18 12:13:37 2 6 2019-08-18 12:18:37 1 1 2019-08-18 12:18:37 2 6 2019-08-18 12:48:37 1 1 2019-08-18 12:48:37 2 4 2019-08-18 12:58:37 2 5 2019-08-18 13:18:37 1 1 2019-08-18 13:18:37 2 4 2019-08-18 13:33:37 1 1 2019-08-18 13:33:37 2 7 2019-08-18 14:03:37 1 1 2019-08-18 14:03:37 2 7 2019-08-18 14:08:37 1 1 2019-08-18 14:08:37 2 5 2019-08-18 14:23:37 1 2 2019-08-18 14:23:37 2 6 2019-08-18 15:38:37 1 2 2019-08-18 15:38:37 2 6 2019-08-18 15:48:37 1 2 2019-08-18 15:48:37 2 6 2019-08-18 16:03:37 1 2 2019-08-18 16:03:37 2 6 2019-08-18 16:18:37 1 2 2019-08-18 16:18:37 2 4 2019-08-18 17:23:37 1 1 2019-08-18 17:23:37 2 5 2019-08-18 17:43:37 1 1 2019-08-18 17:43:37 2 7 2019-08-18 17:53:37 1 1 2019-08-18 17:53:37 2 5 2019-08-18 18:03:37 1 1 2019-08-18 18:03:37 2 5 2019-08-18 18:13:37 1 1 2019-08-18 18:13:37 2 7 2019-08-18 18:23:37 1 1 2019-08-18 18:23:37 2 7 2019-08-18 18:33:37 2 10 2019-08-18 19:58:37 2 4 2019-08-18 20:08:37 2 4 2019-08-18 20:18:37 2 4 2019-08-18 20:53:37 2 4 2019-08-18 20:58:37 2 2 2019-08-18 21:38:37 1 1 2019-08-18 21:38:37 2 7 2019-08-18 22:08:37 1 2 2019-08-18 22:08:37 2 6 2019-08-18 22:28:37 1 1 2019-08-18 22:28:37 2 5 2019-08-18 22:38:37 1 1 2019-08-18 22:38:37 2 5 2019-08-18 23:08:37 2 4 2019-08-18 23:18:37 2 6 2019-08-19 00:08:37 1 1 2019-08-19 00:08:37 2 5 2019-08-19 00:13:37 1 1 2019-08-19 00:13:37 2 7 2019-08-19 00:28:37 1 1 2019-08-19 00:28:37 2 5 2019-08-19 00:33:37 1 1 2019-08-19 00:33:37 2 5 2019-08-19 00:43:37 1 1 2019-08-19 00:43:37 2 5 2019-08-19 01:03:37 1 1 2019-08-19 01:03:37 2 9 2019-08-19 01:08:37 2 8 2019-08-19 01:28:37 2 8 2019-08-19 01:38:37 2 8 2019-08-19 01:53:37 2 6 2019-08-19 03:03:37 2 4 2019-08-19 03:13:37 2 4 2019-08-19 03:23:37 2 4 2019-08-19 03:33:37 2 4 2019-08-19 03:43:37 2 4 2019-08-19 03:53:37 2 4 2019-08-19 04:43:37 2 2 2019-08-19 04:53:37 2 2 2019-08-19 05:03:37 2 2 2019-08-19 05:13:37 2 2 2019-08-19 06:33:37 1 1 2019-08-19 06:33:37 2 1 2019-08-19 06:43:37 2 2 2019-08-19 07:18:37 2 1 2019-08-19 07:33:37 2 3 2019-08-19 07:38:37 2 1 2019-08-19 07:48:37 2 1 2019-08-19 07:53:37 2 2 2019-08-19 08:03:37 2 2 2019-08-19 08:13:37 2 2 2019-08-19 08:23:37 2 3 2019-08-19 08:33:37 2 6 2019-08-19 08:43:37 2 3 2019-08-19 08:53:37 2 2 2019-08-19 09:03:37 2 2 2019-08-19 09:08:37 2 4 2019-08-19 09:13:37 2 3 2019-08-19 09:23:37 2 3 2019-08-19 09:28:37 2 5 2019-08-19 09:33:37 1 1 2019-08-19 09:33:37 2 7 2019-08-19 09:38:37 1 1 2019-08-19 09:38:37 2 5 2019-08-19 09:53:37 1 1 2019-08-19 09:53:37 2 5 2019-08-19 10:03:37 1 1 2019-08-19 10:03:37 2 6 2019-08-19 10:13:37 1 1 2019-08-19 10:13:37 2 5 2019-08-19 10:23:37 2 6 2019-08-19 10:28:37 2 5 2019-08-19 10:33:37 2 6 2019-08-19 10:43:37 1 1 2019-08-19 10:43:37 2 7 2019-08-19 10:48:37 2 6 2019-08-19 11:03:37 1 1 2019-08-19 11:03:37 2 6 2019-08-19 11:08:37 1 1 2019-08-19 11:08:37 2 6 2019-08-19 11:13:37 1 1 2019-08-19 11:13:37 2 5 2019-08-19 11:18:37 1 1 2019-08-19 11:18:37 2 7 2019-08-17 18:03:37 2 8 2019-08-17 18:18:37 2 7 2019-08-17 18:33:37 2 7 2019-08-17 18:53:37 2 5 2019-08-17 19:48:37 2 5 2019-08-17 20:08:37 2 6 2019-08-17 20:13:37 1 1 2019-08-17 20:13:37 2 7 2019-08-17 20:38:37 2 6 2019-08-17 20:43:37 2 8 2019-08-17 20:53:37 2 4 2019-08-17 22:08:37 1 1 2019-08-17 22:08:37 2 3 2019-08-17 22:13:37 1 1 2019-08-17 22:13:37 2 3 2019-08-17 23:13:37 2 4 2019-08-17 23:43:37 2 4 2019-08-18 00:13:37 2 5 2019-08-18 00:58:37 2 3 2019-08-18 02:28:37 2 3 2019-08-18 02:33:37 2 1 2019-08-18 02:43:37 2 1 2019-08-18 02:53:37 2 1 2019-08-18 06:08:37 2 1 2019-08-18 06:28:37 2 1 2019-08-18 06:48:37 2 1 2019-08-18 06:58:37 2 1 2019-08-18 07:33:37 2 3 2019-08-18 08:08:37 1 1 2019-08-18 08:13:37 1 1 2019-08-18 08:13:37 2 2 2019-08-18 08:28:37 1 1 2019-08-18 08:28:37 2 2 2019-08-18 09:03:37 1 1 2019-08-18 09:28:37 1 2 2019-08-18 09:28:37 2 1 2019-08-18 09:48:37 1 2 2019-08-18 09:48:37 2 5 2019-08-18 09:58:37 1 2 2019-08-18 09:58:37 2 3 2019-08-18 10:08:37 1 1 2019-08-18 10:08:37 2 4 2019-08-18 10:28:37 1 1 2019-08-18 10:28:37 2 6 2019-08-18 11:13:37 1 1 2019-08-18 11:13:37 2 4 2019-08-18 11:23:37 1 1 2019-08-18 11:23:37 2 4 2019-08-18 11:33:37 1 1 2019-08-18 11:33:37 2 4 2019-08-18 11:43:37 2 5 2019-08-18 12:43:37 1 1 2019-08-18 12:43:37 2 5 2019-08-18 13:28:37 1 1 2019-08-18 13:28:37 2 4 2019-08-18 13:38:37 1 1 2019-08-18 13:38:37 2 6 2019-08-18 14:13:37 1 2 2019-08-18 14:13:37 2 5 2019-08-18 14:28:37 1 2 2019-08-18 14:28:37 2 5 2019-08-18 14:33:37 1 2 2019-08-18 14:33:37 2 5 2019-08-18 14:48:37 1 2 2019-08-18 14:48:37 2 5 2019-08-18 14:53:37 1 2 2019-08-18 14:53:37 2 3 2019-08-18 14:58:37 1 2 2019-08-18 14:58:37 2 3 2019-08-18 15:08:37 1 2 2019-08-18 15:08:37 2 5 2019-08-18 15:23:37 1 2 2019-08-18 15:23:37 2 5 2019-08-18 15:33:37 1 2 2019-08-18 15:33:37 2 5 2019-08-18 15:53:37 1 2 2019-08-18 15:53:37 2 5 2019-08-18 17:03:37 1 2 2019-08-18 17:03:37 2 7 2019-08-18 17:13:37 1 2 2019-08-18 17:13:37 2 7 2019-08-18 17:18:37 1 2 2019-08-18 17:18:37 2 7 2019-08-18 17:28:37 1 1 2019-08-18 17:28:37 2 6 2019-08-18 18:08:37 1 1 2019-08-18 18:08:37 2 4 2019-08-18 18:18:37 1 1 2019-08-18 18:18:37 2 6 2019-08-18 18:43:37 1 1 2019-08-18 18:43:37 2 10 2019-08-18 18:53:37 1 1 2019-08-18 18:53:37 2 10 2019-08-18 19:13:37 1 2 2019-08-18 19:13:37 2 9 2019-08-18 19:38:37 1 1 2019-08-18 19:38:37 2 6 2019-08-18 20:33:37 2 3 2019-08-18 20:43:37 2 3 2019-08-18 21:08:37 2 3 2019-08-18 21:13:37 2 5 2019-08-18 21:28:37 1 1 2019-08-18 21:28:37 2 8 2019-08-18 21:53:37 1 2 2019-08-18 21:53:37 2 7 2019-08-18 22:53:37 1 1 2019-08-18 22:53:37 2 4 2019-08-18 22:58:37 2 5 2019-08-18 23:38:37 2 7 2019-08-18 23:48:37 2 7 2019-08-18 23:53:37 2 7 2019-08-19 00:18:37 1 1 2019-08-19 00:18:37 2 6 2019-08-19 00:53:37 1 1 2019-08-19 00:53:37 2 6 2019-08-19 01:13:37 2 7 2019-08-19 01:18:37 2 9 2019-08-19 02:03:37 2 9 2019-08-19 02:18:37 2 7 2019-08-19 02:23:37 2 5 2019-08-19 02:33:37 2 5 2019-08-19 02:43:37 2 5 2019-08-19 02:53:37 2 5 2019-08-19 03:58:37 2 3 2019-08-19 04:48:37 2 2 2019-08-19 04:58:37 2 2 2019-08-19 05:08:37 2 2 2019-08-19 05:18:37 2 2 2019-08-19 06:08:37 2 2 2019-08-19 06:28:37 1 1 2019-08-19 06:28:37 2 1 2019-08-19 07:23:37 2 1 2019-08-19 07:28:37 2 3 2019-08-19 07:43:37 2 1 2019-08-19 07:58:37 2 2 2019-08-19 08:08:37 2 2 2019-08-19 08:18:37 2 2 2019-08-19 08:28:37 2 4 2019-08-19 08:38:37 2 3 2019-08-19 08:48:37 2 2 2019-08-19 08:58:37 2 2 2019-08-19 09:18:37 2 2 2019-08-19 09:43:37 1 1 2019-08-19 09:43:37 2 4 2019-08-19 09:48:37 1 1 2019-08-19 09:48:37 2 6 2019-08-19 09:58:37 1 1 2019-08-19 09:58:37 2 6 2019-08-19 10:08:37 1 1 2019-08-19 10:08:37 2 5 2019-08-19 10:18:37 2 6 2019-08-19 10:38:37 1 1 2019-08-19 10:38:37 2 7 2019-08-19 10:53:37 1 1 2019-08-19 10:53:37 2 6 2019-08-19 10:58:37 1 1 2019-08-19 10:58:37 2 7 2019-08-19 11:23:37 1 1 2019-08-19 11:23:37 2 6 2019-08-19 11:28:37 1 1 2019-08-19 11:28:37 2 6 2019-08-19 11:33:37 1 1 2019-08-19 11:33:37 2 5 2019-08-19 11:38:37 1 1 2019-08-19 11:38:37 2 4 2019-08-19 11:43:37 1 1 2019-08-19 11:43:37 2 5 2019-08-19 11:48:37 1 1 2019-08-19 11:48:37 2 7 2019-08-19 11:53:37 1 1 2019-08-19 11:53:37 2 6 2019-08-19 11:58:37 1 1 2019-08-19 11:58:37 2 7 2019-08-19 12:03:37 1 1 2019-08-19 12:03:37 2 6 2019-08-19 12:08:37 1 1 2019-08-19 12:08:37 2 7 2019-08-19 12:13:37 1 2 2019-08-19 12:13:37 2 8 2019-08-19 12:18:37 1 1 2019-08-19 12:18:37 2 6 2019-08-19 12:23:37 1 2 2019-08-19 12:23:37 2 6 2019-08-19 12:28:37 1 2 2019-08-19 12:28:37 2 6 2019-08-19 12:33:37 1 2 2019-08-19 12:33:37 2 6 2019-08-19 12:58:37 1 2 2019-08-19 12:58:37 2 6 2019-08-19 13:03:37 1 2 2019-08-19 13:03:37 2 8 2019-08-19 13:18:37 1 2 2019-08-19 13:18:37 2 8 2019-08-19 14:08:37 1 1 2019-08-19 14:08:37 2 7 2019-08-19 14:13:37 1 1 2019-08-19 14:13:37 2 7 2019-08-19 14:23:37 1 1 2019-08-19 14:23:37 2 7 2019-08-19 14:33:37 1 2 2019-08-19 14:33:37 2 6 2019-08-19 14:38:37 1 2 2019-08-19 14:38:37 2 4 2019-08-19 14:48:37 1 2 2019-08-19 14:48:37 2 4 2019-08-19 15:03:37 1 1 2019-08-19 15:03:37 2 3 2019-08-19 15:18:37 1 1 2019-08-19 15:18:37 2 3 2019-08-19 15:28:37 1 1 2019-08-19 15:28:37 2 3 2019-08-19 15:33:37 1 1 2019-08-19 15:33:37 2 3 2019-08-19 15:38:37 1 1 2019-08-19 15:38:37 2 3 2019-08-19 15:58:37 1 1 2019-08-19 15:58:37 2 5 2019-08-19 16:03:37 1 1 2019-08-19 16:03:37 2 7 2019-08-19 16:08:37 1 1 2019-08-19 16:08:37 2 7 2019-08-19 17:08:37 1 1 2019-08-19 17:08:37 2 7 2019-08-19 17:18:37 1 1 2019-08-19 17:18:37 2 5 2019-08-19 17:33:37 1 1 2019-08-19 17:33:37 2 5 2019-08-19 18:43:37 2 10 2019-08-19 18:53:37 1 1 2019-08-19 18:53:37 2 11 2019-08-19 19:13:37 1 1 2019-08-19 19:13:37 2 7 2019-08-19 19:18:37 1 1 2019-08-19 19:18:37 2 9 2019-08-19 19:53:37 1 1 2019-08-19 19:53:37 2 4 2019-08-19 20:03:37 1 1 2019-08-19 20:03:37 2 4 2019-08-19 20:13:37 1 1 2019-08-19 20:13:37 2 4 2019-08-19 20:23:38 1 1 2019-08-19 20:23:38 2 3 2019-08-19 20:43:37 1 1 2019-08-19 20:43:37 2 7 2019-08-19 20:48:37 2 6 2019-08-19 21:03:37 2 6 2019-08-19 21:08:37 2 6 2019-08-19 21:23:37 2 8 2019-08-19 21:38:37 1 1 2019-08-19 21:38:37 2 7 2019-08-19 21:43:37 1 1 2019-08-19 21:43:37 2 9 2019-08-19 22:13:37 1 1 2019-08-19 22:13:37 2 7 2019-08-19 23:28:37 2 2 2019-08-19 23:38:37 2 2 2019-08-20 00:33:37 1 1 2019-08-20 00:33:37 2 3 2019-08-20 00:38:37 1 1 2019-08-20 00:38:37 2 5 2019-08-20 00:53:37 1 1 2019-08-20 00:53:37 2 3 2019-08-20 01:03:37 2 2 2019-08-20 01:18:37 2 4 2019-08-20 01:28:37 2 4 2019-08-20 01:38:37 1 1 2019-08-20 01:38:37 2 3 2019-08-20 01:48:37 1 1 2019-08-20 01:48:37 2 3 2019-08-20 01:58:37 1 1 2019-08-20 01:58:37 2 3 2019-08-20 02:08:37 1 1 2019-08-20 02:08:37 2 3 2019-08-20 02:18:37 1 1 2019-08-20 02:18:37 2 3 2019-08-20 02:53:37 1 1 2019-08-20 02:53:37 2 5 2019-08-20 03:03:37 1 1 2019-08-20 03:03:37 2 5 2019-08-20 03:13:37 1 1 2019-08-20 03:13:37 2 7 2019-08-20 03:18:37 1 1 2019-08-20 03:18:37 2 5 2019-08-20 03:28:37 1 1 2019-08-20 03:28:37 2 5 2019-08-20 03:53:37 1 1 2019-08-20 03:53:37 2 3 2019-08-20 04:03:37 1 1 2019-08-20 04:03:37 2 3 2019-08-20 04:13:37 1 1 2019-08-20 04:13:37 2 3 2019-08-20 05:13:37 1 1 2019-08-20 05:13:37 2 3 2019-08-20 05:33:37 1 1 2019-08-20 05:33:37 2 3 2019-08-20 05:43:37 1 1 2019-08-20 05:43:37 2 3 2019-08-20 07:33:37 1 1 2019-08-20 07:33:37 2 3 2019-08-20 09:08:37 1 1 2019-08-20 09:08:37 2 1 2019-08-20 09:13:37 1 1 2019-08-20 09:13:37 2 1 2019-08-20 09:33:37 1 1 2019-08-20 09:33:37 2 3 2019-08-20 09:58:37 1 1 2019-08-20 09:58:37 2 5 2019-08-20 10:28:37 2 4 2019-08-20 10:38:37 2 4 2019-08-20 11:13:37 2 6 2019-08-20 11:28:37 2 8 2019-08-20 11:33:37 2 8 2019-08-20 11:38:38 2 6 2019-08-20 12:13:37 2 6 2019-08-20 13:03:37 2 4 2019-08-20 13:28:37 2 6 2019-08-20 13:38:37 2 6 2019-08-20 14:03:37 2 8 2019-08-20 14:18:37 2 10 2019-08-20 14:43:37 2 9 2019-08-20 14:53:37 2 9 2019-08-20 14:58:37 2 7 2019-08-20 15:08:37 2 7 2019-08-20 15:18:37 2 5 2019-08-20 15:33:37 1 1 2019-08-20 15:33:37 2 6 2019-08-20 15:38:37 1 1 2019-08-20 15:38:37 2 6 2019-08-20 16:03:37 2 5 2019-08-20 16:23:37 2 5 2019-08-20 16:33:37 2 5 2019-08-20 16:48:37 2 7 2019-08-20 16:58:37 2 5 2019-08-20 17:18:37 2 3 2019-08-20 17:23:37 2 5 2019-08-20 17:38:37 1 1 2019-08-20 17:38:37 2 4 2019-08-20 17:48:37 1 1 2019-08-20 17:48:37 2 4 2019-08-20 17:58:37 1 1 2019-08-20 17:58:37 2 4 2019-08-20 18:13:37 2 1 2019-08-20 18:43:37 2 1 2019-08-20 18:48:37 2 3 2019-08-20 19:03:37 2 5 2019-08-20 19:13:37 2 5 2019-08-20 19:18:37 2 7 2019-08-20 20:13:37 1 1 2019-08-20 20:13:37 2 4 2019-08-20 20:48:37 2 6 2019-08-20 21:08:37 1 1 2019-08-20 21:08:37 2 7 2019-08-20 21:18:37 1 1 2019-08-20 21:18:37 2 9 2019-08-20 21:38:37 2 8 2019-08-20 21:58:37 2 6 2019-08-20 22:23:37 2 4 2019-08-20 22:48:37 2 7 2019-08-20 23:08:37 2 6 2019-08-20 23:13:37 2 8 2019-08-20 23:53:37 2 11 2019-08-20 23:58:37 2 10 2019-08-21 00:08:37 1 1 2019-08-21 00:08:37 2 5 2019-08-21 00:13:37 2 4 2019-08-21 00:23:37 2 4 2019-08-21 00:33:37 2 4 2019-08-21 00:43:37 2 4 2019-08-21 00:48:37 2 6 2019-08-21 00:58:37 1 1 2019-08-19 12:38:37 1 2 2019-08-19 12:38:37 2 7 2019-08-19 12:53:37 1 2 2019-08-19 12:53:37 2 7 2019-08-19 13:08:37 1 2 2019-08-19 13:08:37 2 7 2019-08-19 13:13:37 1 2 2019-08-19 13:13:37 2 9 2019-08-19 13:33:37 1 1 2019-08-19 13:33:37 2 8 2019-08-19 13:38:37 1 1 2019-08-19 13:38:37 2 6 2019-08-19 13:58:37 1 1 2019-08-19 13:58:37 2 8 2019-08-19 15:13:37 1 1 2019-08-19 15:13:37 2 2 2019-08-19 15:48:37 1 1 2019-08-19 15:48:37 2 8 2019-08-19 16:13:37 1 1 2019-08-19 16:13:37 2 4 2019-08-19 16:23:37 1 1 2019-08-19 16:23:37 2 4 2019-08-19 16:33:37 1 1 2019-08-19 16:33:37 2 6 2019-08-19 16:38:37 1 1 2019-08-19 16:38:37 2 8 2019-08-19 17:13:37 1 1 2019-08-19 17:13:37 2 6 2019-08-19 17:43:37 1 1 2019-08-19 17:43:37 2 6 2019-08-19 17:53:37 1 1 2019-08-19 17:53:37 2 6 2019-08-19 18:13:37 1 1 2019-08-19 18:13:37 2 6 2019-08-19 18:58:37 1 1 2019-08-19 18:58:37 2 8 2019-08-19 19:03:37 1 1 2019-08-19 19:03:37 2 6 2019-08-19 19:28:37 1 1 2019-08-19 19:28:37 2 4 2019-08-19 19:38:37 1 1 2019-08-19 19:38:37 2 4 2019-08-19 19:48:37 1 1 2019-08-19 19:48:37 2 5 2019-08-19 19:58:37 1 1 2019-08-19 19:58:37 2 5 2019-08-19 20:28:37 1 1 2019-08-19 20:28:37 2 4 2019-08-19 20:33:37 1 1 2019-08-19 20:33:37 2 6 2019-08-19 20:38:37 1 1 2019-08-19 20:38:37 2 8 2019-08-19 20:53:37 2 7 2019-08-19 21:13:37 2 7 2019-08-19 21:48:37 1 1 2019-08-19 21:48:37 2 10 2019-08-19 22:28:37 1 1 2019-08-19 22:28:37 2 8 2019-08-19 22:33:37 1 1 2019-08-19 22:33:37 2 6 2019-08-19 22:43:37 1 1 2019-08-19 22:43:37 2 6 2019-08-19 22:58:37 1 1 2019-08-19 22:58:37 2 4 2019-08-19 23:13:37 2 3 2019-08-19 23:53:37 1 1 2019-08-19 23:53:37 2 2 2019-08-20 00:08:37 1 1 2019-08-20 00:08:37 2 2 2019-08-20 00:28:37 1 1 2019-08-20 00:28:37 2 4 2019-08-20 00:58:37 2 5 2019-08-20 01:08:37 2 3 2019-08-20 02:33:37 1 1 2019-08-20 02:33:37 2 4 2019-08-20 02:43:37 1 1 2019-08-20 02:43:37 2 4 2019-08-20 03:23:37 1 1 2019-08-20 03:23:37 2 6 2019-08-20 03:38:37 1 1 2019-08-20 03:38:37 2 4 2019-08-20 04:08:37 1 1 2019-08-20 04:08:37 2 3 2019-08-20 04:18:37 1 1 2019-08-20 04:18:37 2 3 2019-08-20 05:18:37 1 1 2019-08-20 05:18:37 2 3 2019-08-20 05:38:37 1 1 2019-08-20 05:38:37 2 3 2019-08-20 07:28:37 1 1 2019-08-20 07:28:37 2 3 2019-08-20 09:28:37 1 1 2019-08-20 09:28:37 2 3 2019-08-20 09:43:37 1 1 2019-08-20 09:43:37 2 5 2019-08-20 09:53:37 1 1 2019-08-20 09:53:37 2 5 2019-08-20 10:18:37 1 1 2019-08-20 10:18:37 2 5 2019-08-20 10:33:37 2 4 2019-08-20 10:43:37 2 4 2019-08-20 10:48:37 2 6 2019-08-20 11:03:37 2 6 2019-08-20 11:18:37 2 6 2019-08-20 12:08:37 2 6 2019-08-20 12:43:37 1 1 2019-08-20 12:43:37 2 5 2019-08-20 13:33:37 2 6 2019-08-20 13:58:37 2 8 2019-08-20 14:08:37 2 8 2019-08-20 14:13:37 2 10 2019-08-20 14:33:37 2 7 2019-08-20 14:48:37 2 9 2019-08-20 15:03:37 2 7 2019-08-20 15:43:37 1 1 2019-08-20 15:43:37 2 6 2019-08-20 15:48:37 2 5 2019-08-20 16:28:37 2 5 2019-08-20 17:13:37 2 3 2019-08-20 17:43:37 1 1 2019-08-20 17:43:37 2 4 2019-08-20 18:03:37 1 1 2019-08-20 18:03:37 2 4 2019-08-20 18:38:37 2 1 2019-08-20 19:08:37 2 5 2019-08-20 19:23:37 2 7 2019-08-20 19:58:37 2 5 2019-08-20 20:08:37 2 5 2019-08-20 20:28:37 1 1 2019-08-20 20:28:37 2 6 2019-08-20 20:38:37 1 1 2019-08-20 20:38:37 2 7 2019-08-20 20:53:37 2 6 2019-08-20 21:23:37 1 1 2019-08-20 21:23:37 2 9 2019-08-20 21:43:37 2 8 2019-08-20 22:38:37 2 6 2019-08-20 22:58:37 2 6 2019-08-20 23:03:37 2 7 2019-08-20 23:23:37 2 7 2019-08-20 23:28:37 2 5 2019-08-20 23:38:37 2 7 2019-08-20 23:43:37 2 9 2019-08-20 23:48:37 2 11 2019-08-21 00:28:37 2 5 2019-08-21 00:58:37 2 5 2019-08-21 01:08:37 1 1 2019-08-21 01:08:37 2 4 2019-08-21 01:23:37 1 1 2019-08-21 01:23:37 2 4 2019-08-21 01:38:37 1 1 2019-08-21 01:38:37 2 5 2019-08-21 01:53:37 2 5 2019-08-21 01:58:37 1 1 2019-08-21 01:58:37 2 6 2019-08-21 02:03:37 1 1 2019-08-21 02:03:37 2 3 2019-08-21 02:08:37 1 1 2019-08-21 02:08:37 2 3 2019-08-21 02:13:37 1 1 2019-08-21 02:13:37 2 4 2019-08-21 02:18:37 1 1 2019-08-21 02:18:37 2 3 2019-08-21 02:23:37 1 1 2019-08-21 02:23:37 2 4 2019-08-21 02:28:37 1 1 2019-08-21 02:28:37 2 4 2019-08-21 02:33:37 1 1 2019-08-21 02:33:37 2 3 2019-08-21 02:38:37 1 1 2019-08-21 02:38:37 2 4 2019-08-21 02:43:37 1 1 2019-08-21 02:43:37 2 3 2019-08-21 02:48:37 1 1 2019-08-21 02:48:37 2 3 2019-08-21 02:53:37 1 1 2019-08-21 02:53:37 2 2 2019-08-21 02:58:37 2 3 2019-08-21 03:03:37 2 3 2019-08-21 03:08:37 2 5 2019-08-21 03:13:37 2 5 2019-08-21 03:18:37 2 4 2019-08-21 03:23:37 2 4 2019-08-21 03:28:37 2 3 2019-08-21 03:33:37 2 3 2019-08-19 12:43:37 1 2 2019-08-19 12:43:37 2 7 2019-08-19 13:28:37 1 1 2019-08-19 13:28:37 2 8 2019-08-19 13:43:37 1 1 2019-08-19 13:43:37 2 6 2019-08-19 13:48:37 1 1 2019-08-19 13:48:37 2 8 2019-08-19 13:53:37 1 1 2019-08-19 13:53:37 2 8 2019-08-19 14:03:37 1 1 2019-08-19 14:03:37 2 8 2019-08-19 14:28:37 1 1 2019-08-19 14:28:37 2 6 2019-08-19 14:43:37 1 2 2019-08-19 14:43:37 2 3 2019-08-19 14:53:37 1 2 2019-08-19 14:53:37 2 3 2019-08-19 15:23:37 1 1 2019-08-19 15:23:37 2 2 2019-08-19 15:43:37 1 1 2019-08-19 15:43:37 2 6 2019-08-19 15:53:37 1 1 2019-08-19 15:53:37 2 6 2019-08-19 16:43:37 1 1 2019-08-19 16:43:37 2 8 2019-08-19 16:53:37 1 1 2019-08-19 16:53:37 2 6 2019-08-19 17:03:37 1 1 2019-08-19 17:03:37 2 8 2019-08-19 17:38:37 1 1 2019-08-19 17:38:37 2 4 2019-08-19 17:48:37 1 1 2019-08-19 17:48:37 2 6 2019-08-19 17:58:37 1 1 2019-08-19 17:58:37 2 6 2019-08-19 18:08:37 1 1 2019-08-19 18:08:37 2 6 2019-08-19 18:18:37 2 7 2019-08-19 18:28:37 1 1 2019-08-19 18:28:37 2 8 2019-08-19 18:38:37 1 1 2019-08-19 18:38:37 2 8 2019-08-19 18:48:37 1 1 2019-08-19 18:48:37 2 12 2019-08-19 19:08:37 1 1 2019-08-19 19:08:37 2 6 2019-08-19 19:23:37 1 1 2019-08-19 19:23:37 2 8 2019-08-19 19:33:37 1 1 2019-08-19 19:33:37 2 4 2019-08-19 20:08:37 1 1 2019-08-19 20:08:37 2 5 2019-08-19 21:28:37 1 1 2019-08-19 21:28:37 2 8 2019-08-19 21:33:37 1 1 2019-08-19 21:33:37 2 6 2019-08-19 21:53:37 1 1 2019-08-19 21:53:37 2 10 2019-08-19 21:58:37 1 1 2019-08-19 21:58:37 2 10 2019-08-19 22:03:37 1 1 2019-08-19 22:03:37 2 8 2019-08-19 22:38:37 1 1 2019-08-19 22:38:37 2 6 2019-08-19 22:48:37 1 1 2019-08-19 22:48:37 2 6 2019-08-19 23:03:37 1 1 2019-08-19 23:03:37 2 4 2019-08-19 23:08:37 1 1 2019-08-19 23:08:37 2 6 2019-08-19 23:18:37 2 3 2019-08-19 23:58:37 1 1 2019-08-19 23:58:37 2 2 2019-08-20 00:03:37 1 1 2019-08-20 00:03:37 2 2 2019-08-20 00:23:37 1 1 2019-08-20 00:23:37 2 4 2019-08-20 00:43:38 1 1 2019-08-20 00:43:38 2 4 2019-08-20 01:13:37 2 3 2019-08-20 01:33:37 2 3 2019-08-20 02:28:37 1 1 2019-08-20 02:28:37 2 4 2019-08-20 02:38:37 1 1 2019-08-20 02:38:37 2 4 2019-08-20 03:43:37 1 1 2019-08-20 03:43:37 2 4 2019-08-20 04:23:37 1 1 2019-08-20 04:23:37 2 2 2019-08-20 04:33:37 1 1 2019-08-20 04:33:37 2 2 2019-08-20 04:43:37 1 1 2019-08-20 04:43:37 2 2 2019-08-20 04:53:37 1 1 2019-08-20 04:53:37 2 2 2019-08-20 05:03:37 1 1 2019-08-20 05:03:37 2 2 2019-08-20 05:23:37 1 1 2019-08-20 05:23:37 2 2 2019-08-20 05:53:37 1 1 2019-08-20 05:53:37 2 2 2019-08-20 06:03:37 1 1 2019-08-20 06:03:37 2 2 2019-08-20 06:13:37 1 1 2019-08-20 06:13:37 2 2 2019-08-20 06:23:37 1 1 2019-08-20 06:23:37 2 2 2019-08-20 06:33:37 1 1 2019-08-20 06:33:37 2 2 2019-08-20 06:43:37 1 1 2019-08-20 06:43:37 2 2 2019-08-20 06:53:37 1 1 2019-08-20 06:53:37 2 2 2019-08-20 07:03:37 1 1 2019-08-20 07:03:37 2 2 2019-08-20 07:13:37 1 1 2019-08-20 07:13:37 2 2 2019-08-20 07:23:37 1 1 2019-08-20 07:23:37 2 2 2019-08-20 07:38:37 1 1 2019-08-20 07:48:37 1 1 2019-08-20 07:58:37 1 1 2019-08-20 08:08:37 1 1 2019-08-20 08:18:37 1 1 2019-08-20 08:28:37 1 1 2019-08-20 09:18:37 1 1 2019-08-20 09:18:37 2 2 2019-08-20 09:38:37 1 1 2019-08-20 09:38:37 2 4 2019-08-20 10:03:37 1 1 2019-08-20 10:03:37 2 6 2019-08-20 10:13:37 1 1 2019-08-20 10:13:37 2 4 2019-08-20 10:23:37 1 1 2019-08-20 10:23:37 2 4 2019-08-20 10:53:37 2 5 2019-08-20 11:08:37 2 7 2019-08-20 11:53:37 2 5 2019-08-20 12:03:37 2 5 2019-08-20 12:23:37 1 1 2019-08-20 12:23:37 2 8 2019-08-20 12:48:37 2 5 2019-08-20 12:58:37 2 5 2019-08-20 13:08:37 2 5 2019-08-20 13:18:37 2 5 2019-08-20 13:43:37 2 7 2019-08-20 13:48:37 2 11 2019-08-20 13:53:37 2 11 2019-08-20 14:23:37 2 10 2019-08-20 14:38:37 2 10 2019-08-20 15:13:37 2 6 2019-08-20 15:23:37 2 6 2019-08-20 15:28:37 1 1 2019-08-20 15:28:37 2 7 2019-08-20 15:53:37 2 4 2019-08-20 16:13:37 2 4 2019-08-20 16:38:37 2 6 2019-08-20 16:43:37 2 8 2019-08-20 16:53:37 2 6 2019-08-20 17:03:37 2 6 2019-08-20 17:08:37 1 1 2019-08-20 17:08:37 2 3 2019-08-20 17:33:37 1 1 2019-08-20 17:33:37 2 5 2019-08-20 17:53:37 1 1 2019-08-20 17:53:37 2 5 2019-08-20 18:18:37 2 2 2019-08-20 18:28:37 2 2 2019-08-20 18:53:37 2 4 2019-08-20 19:48:37 2 6 2019-08-20 20:03:37 2 4 2019-08-20 20:33:37 2 6 2019-08-20 20:43:37 1 1 2019-08-20 20:43:37 2 6 2019-08-20 20:58:37 1 1 2019-08-20 20:58:37 2 8 2019-08-20 21:03:37 1 1 2019-08-20 21:03:37 2 8 2019-08-20 21:48:37 2 7 2019-08-20 21:53:37 1 1 2019-08-20 21:53:37 2 6 2019-08-20 22:08:37 2 5 2019-08-20 22:18:37 2 5 2019-08-20 22:28:37 2 5 2019-08-19 12:48:37 1 2 2019-08-19 12:48:37 2 8 2019-08-19 13:23:37 1 1 2019-08-19 13:23:37 2 9 2019-08-19 14:18:37 1 1 2019-08-19 14:18:37 2 7 2019-08-19 14:58:38 1 2 2019-08-19 14:58:38 2 2 2019-08-19 15:08:37 1 1 2019-08-19 15:08:37 2 3 2019-08-19 16:18:37 1 1 2019-08-19 16:18:37 2 3 2019-08-19 16:28:37 1 1 2019-08-19 16:28:37 2 5 2019-08-19 16:48:37 1 1 2019-08-19 16:48:37 2 7 2019-08-19 16:58:37 1 1 2019-08-19 16:58:37 2 7 2019-08-19 17:23:37 1 1 2019-08-19 17:23:37 2 5 2019-08-19 17:28:37 1 1 2019-08-19 17:28:37 2 5 2019-08-19 18:03:37 1 1 2019-08-19 18:03:37 2 5 2019-08-19 18:23:37 2 8 2019-08-19 18:33:37 1 1 2019-08-19 18:33:37 2 7 2019-08-19 19:43:37 1 1 2019-08-19 19:43:37 2 5 2019-08-19 20:18:37 1 1 2019-08-19 20:18:37 2 3 2019-08-19 20:58:37 2 6 2019-08-19 21:18:37 2 8 2019-08-19 22:08:37 1 1 2019-08-19 22:08:37 2 7 2019-08-19 22:18:37 1 1 2019-08-19 22:18:37 2 7 2019-08-19 22:23:37 1 1 2019-08-19 22:23:37 2 9 2019-08-19 22:53:37 1 1 2019-08-19 22:53:37 2 5 2019-08-19 23:23:37 2 2 2019-08-19 23:33:37 2 2 2019-08-19 23:43:37 2 2 2019-08-19 23:48:37 1 1 2019-08-19 23:48:37 2 3 2019-08-20 00:13:37 1 1 2019-08-20 00:13:37 2 3 2019-08-20 00:18:37 1 1 2019-08-20 00:18:37 2 3 2019-08-20 00:48:37 1 1 2019-08-20 00:48:37 2 3 2019-08-20 01:23:37 2 4 2019-08-20 01:43:37 1 1 2019-08-20 01:43:37 2 3 2019-08-20 01:53:37 1 1 2019-08-20 01:53:37 2 3 2019-08-20 02:03:37 1 1 2019-08-20 02:03:37 2 3 2019-08-20 02:13:37 1 1 2019-08-20 02:13:37 2 3 2019-08-20 02:23:37 1 1 2019-08-20 02:23:37 2 3 2019-08-20 02:48:37 1 1 2019-08-20 02:48:37 2 5 2019-08-20 02:58:37 1 1 2019-08-20 02:58:37 2 5 2019-08-20 03:08:37 1 1 2019-08-20 03:08:37 2 7 2019-08-20 03:33:37 1 1 2019-08-20 03:33:37 2 5 2019-08-20 03:48:37 1 1 2019-08-20 03:48:37 2 3 2019-08-20 03:58:37 1 1 2019-08-20 03:58:37 2 3 2019-08-20 04:28:37 1 1 2019-08-20 04:28:37 2 2 2019-08-20 04:38:37 1 1 2019-08-20 04:38:37 2 2 2019-08-20 04:48:37 1 1 2019-08-20 04:48:37 2 2 2019-08-20 04:58:37 1 1 2019-08-20 04:58:37 2 2 2019-08-20 05:08:37 1 1 2019-08-20 05:08:37 2 2 2019-08-20 05:28:37 1 1 2019-08-20 05:28:37 2 2 2019-08-20 05:48:37 1 1 2019-08-20 05:48:37 2 2 2019-08-20 05:58:37 1 1 2019-08-20 05:58:37 2 2 2019-08-20 06:08:37 1 1 2019-08-20 06:08:37 2 2 2019-08-20 06:18:37 1 1 2019-08-20 06:18:37 2 2 2019-08-20 06:28:37 1 1 2019-08-20 06:28:37 2 2 2019-08-20 06:38:37 1 1 2019-08-20 06:38:37 2 2 2019-08-20 06:48:37 1 1 2019-08-20 06:48:37 2 2 2019-08-20 06:58:37 1 1 2019-08-20 06:58:37 2 2 2019-08-20 07:08:37 1 1 2019-08-20 07:08:37 2 2 2019-08-20 07:18:37 1 1 2019-08-20 07:18:37 2 2 2019-08-20 07:43:37 1 1 2019-08-20 07:53:37 1 1 2019-08-20 08:03:37 1 1 2019-08-20 08:13:37 1 1 2019-08-20 08:23:37 1 1 2019-08-20 08:33:37 1 1 2019-08-20 09:23:37 1 1 2019-08-20 09:23:37 2 4 2019-08-20 09:48:37 1 1 2019-08-20 09:48:37 2 6 2019-08-20 10:08:37 1 1 2019-08-20 10:08:37 2 4 2019-08-20 10:58:37 2 7 2019-08-20 11:23:37 2 7 2019-08-20 11:43:37 2 5 2019-08-20 11:48:37 2 5 2019-08-20 11:58:37 2 5 2019-08-20 12:18:37 1 1 2019-08-20 12:18:37 2 8 2019-08-20 12:28:37 1 1 2019-08-20 12:28:37 2 10 2019-08-20 12:33:37 1 1 2019-08-20 12:33:37 2 12 2019-08-20 12:38:37 1 1 2019-08-20 12:38:37 2 10 2019-08-20 12:53:37 2 5 2019-08-20 13:13:37 2 5 2019-08-20 13:23:37 2 5 2019-08-20 14:28:37 2 10 2019-08-20 15:58:37 2 4 2019-08-20 16:08:37 2 4 2019-08-20 16:18:37 2 4 2019-08-20 17:28:37 2 4 2019-08-20 18:08:37 1 1 2019-08-20 18:08:37 2 3 2019-08-20 18:23:37 2 2 2019-08-20 18:58:37 2 4 2019-08-20 19:28:37 2 8 2019-08-20 19:33:37 2 6 2019-08-20 19:38:37 2 8 2019-08-20 19:43:37 2 6 2019-08-20 19:53:37 2 6 2019-08-20 20:18:37 1 1 2019-08-20 20:18:37 2 5 2019-08-20 20:23:37 1 1 2019-08-20 20:23:37 2 7 2019-08-20 21:13:37 1 1 2019-08-20 21:13:37 2 6 2019-08-20 21:28:37 1 1 2019-08-20 21:28:37 2 10 2019-08-20 21:33:37 2 11 2019-08-20 22:03:37 2 5 2019-08-20 22:13:37 2 5 2019-08-20 22:33:37 2 5 2019-08-20 22:43:37 2 7 2019-08-20 22:53:37 2 7 2019-08-20 23:18:37 2 8 2019-08-20 23:33:37 2 6 2019-08-21 00:03:37 2 6 2019-08-21 00:18:37 2 4 2019-08-21 00:38:37 2 4 2019-08-21 00:53:37 1 1 2019-08-21 00:53:37 2 5 2019-08-21 01:03:37 1 1 2019-08-21 01:03:37 2 5 2019-08-21 01:13:37 1 1 2019-08-21 01:13:37 2 4 2019-08-21 01:18:37 1 1 2019-08-21 01:18:37 2 4 2019-08-21 01:28:37 1 1 2019-08-21 01:28:37 2 4 2019-08-21 01:33:37 1 1 2019-08-21 01:33:37 2 4 2019-08-21 01:43:37 1 1 2019-08-21 01:43:37 2 5 2019-08-21 01:48:37 1 1 2019-08-21 01:48:37 2 6 2019-08-21 01:53:37 1 1 2019-08-21 03:38:37 2 3 2019-08-21 03:58:37 2 3 2019-08-21 04:03:37 2 3 2019-08-21 04:18:37 2 2 2019-08-21 04:23:37 2 3 2019-08-21 04:33:37 2 3 2019-08-21 04:43:37 2 3 2019-08-21 04:58:37 2 2 2019-08-21 05:08:37 2 1 2019-08-21 05:18:37 2 1 2019-08-21 06:48:37 2 1 2019-08-21 06:58:37 2 2 2019-08-21 07:08:37 2 2 2019-08-21 07:18:37 2 3 2019-08-21 07:33:37 2 2 2019-08-21 07:43:37 2 2 2019-08-21 07:48:37 2 3 2019-08-21 07:58:37 2 3 2019-08-21 08:03:37 2 1 2019-08-21 08:13:37 2 1 2019-08-21 08:28:37 2 3 2019-08-21 08:43:37 2 2 2019-08-21 09:08:37 1 1 2019-08-21 09:08:37 2 3 2019-08-21 09:13:37 1 1 2019-08-21 09:13:37 2 4 2019-08-21 09:18:37 1 1 2019-08-21 09:18:37 2 3 2019-08-21 09:23:37 1 1 2019-08-21 09:23:37 2 3 2019-08-21 09:33:37 1 1 2019-08-21 09:33:37 2 3 2019-08-21 09:48:37 1 1 2019-08-21 09:48:37 2 4 2019-08-21 09:53:37 1 1 2019-08-21 09:53:37 2 2 2019-08-21 10:13:37 1 1 2019-08-21 10:13:37 2 2 2019-08-21 10:23:37 1 1 2019-08-21 10:23:37 2 3 2019-08-21 10:28:37 1 1 2019-08-21 10:28:37 2 4 2019-08-21 10:33:37 1 1 2019-08-21 10:33:37 2 5 2019-08-21 10:38:37 1 1 2019-08-21 10:38:37 2 5 2019-08-21 10:48:37 1 1 2019-08-21 10:48:37 2 5 2019-08-21 10:53:37 1 1 2019-08-21 10:53:37 2 7 2019-08-21 11:03:37 1 1 2019-08-21 11:03:37 2 5 2019-08-21 11:23:37 1 1 2019-08-21 11:23:37 2 6 2019-08-21 11:28:37 1 1 2019-08-21 11:28:37 2 7 2019-08-21 11:38:37 1 1 2019-08-21 11:38:37 2 8 2019-08-21 11:58:37 1 2 2019-08-21 11:58:37 2 6 2019-08-21 12:03:37 1 2 2019-08-21 12:03:37 2 8 2019-08-21 12:08:37 1 2 2019-08-21 12:08:37 2 7 2019-08-21 12:33:37 1 1 2019-08-21 12:33:37 2 6 2019-08-21 12:38:37 2 5 2019-08-21 12:48:37 2 5 2019-08-21 12:53:37 2 8 2019-08-21 12:58:37 2 8 2019-08-21 13:03:37 2 6 2019-08-21 13:08:37 2 7 2019-08-21 13:13:37 2 5 2019-08-21 13:18:37 2 4 2019-08-21 13:28:37 2 4 2019-08-21 13:43:37 2 6 2019-08-21 13:53:37 2 6 2019-08-21 14:03:37 2 8 2019-08-21 14:08:37 2 5 2019-08-21 14:18:37 2 5 2019-08-21 14:23:37 2 4 2019-08-21 14:38:37 2 8 2019-08-21 14:43:37 1 1 2019-08-21 14:43:37 2 6 2019-08-21 14:58:37 1 1 2019-08-21 14:58:37 2 7 2019-08-21 15:08:37 1 1 2019-08-21 15:08:37 2 6 2019-08-21 15:18:37 2 7 2019-08-21 15:23:37 2 5 2019-08-21 15:28:37 2 7 2019-08-21 15:48:37 1 1 2019-08-21 15:48:37 2 2 2019-08-21 16:03:37 1 1 2019-08-21 16:03:37 2 1 2019-08-21 16:08:37 2 3 2019-08-21 16:13:37 2 5 2019-08-21 16:23:37 1 1 2019-08-21 16:23:37 2 6 2019-08-21 16:33:37 1 1 2019-08-21 16:33:37 2 8 2019-08-21 16:43:37 1 1 2019-08-21 16:43:37 2 6 2019-08-21 16:48:37 2 5 2019-08-21 16:58:37 1 1 2019-08-21 16:58:37 2 5 2019-08-21 17:03:37 1 1 2019-08-21 17:03:37 2 4 2019-08-21 17:13:37 1 1 2019-08-21 17:13:37 2 5 2019-08-21 17:28:37 1 1 2019-08-21 17:28:37 2 7 2019-08-21 17:38:37 1 1 2019-08-21 17:38:37 2 8 2019-08-21 17:58:37 1 1 2019-08-21 17:58:37 2 7 2019-08-21 18:08:37 1 1 2019-08-21 18:08:37 2 9 2019-08-21 18:23:37 1 1 2019-08-21 18:23:37 2 6 2019-08-21 18:33:37 1 1 2019-08-21 18:33:37 2 6 2019-08-21 18:48:37 1 1 2019-08-21 18:48:37 2 5 2019-08-21 18:53:37 1 1 2019-08-21 18:53:37 2 6 2019-08-21 18:58:37 1 1 2019-08-21 18:58:37 2 5 2019-08-21 19:03:37 1 1 2019-08-21 19:03:37 2 7 2019-08-21 19:08:37 1 1 2019-08-21 19:08:37 2 6 2019-08-21 19:18:37 1 1 2019-08-21 19:18:37 2 3 2019-08-21 19:33:37 1 1 2019-08-21 19:33:37 2 3 2019-08-21 19:48:37 1 1 2019-08-21 19:48:37 2 3 2019-08-21 19:53:37 1 1 2019-08-21 19:53:37 2 4 2019-08-21 19:58:37 2 4 2019-08-21 20:03:37 2 5 2019-08-21 20:18:37 2 4 2019-08-21 20:23:37 2 6 2019-08-21 20:38:37 2 5 2019-08-21 20:48:37 2 5 2019-08-21 20:53:37 2 4 2019-08-21 21:03:37 2 4 2019-08-21 21:13:37 2 3 2019-08-21 21:28:37 1 1 2019-08-21 21:28:37 2 5 2019-08-21 21:48:37 1 1 2019-08-21 21:48:37 2 5 2019-08-21 22:03:37 1 1 2019-08-21 22:03:37 2 5 2019-08-21 22:08:37 1 1 2019-08-21 22:08:37 2 5 2019-08-21 22:18:37 1 1 2019-08-21 22:18:37 2 5 2019-08-21 22:23:37 1 1 2019-08-21 22:23:37 2 3 2019-08-21 22:28:37 1 1 2019-08-21 22:28:37 2 5 2019-08-21 22:38:37 1 1 2019-08-21 22:38:37 2 5 2019-08-21 22:43:37 1 1 2019-08-21 22:43:37 2 6 2019-08-21 22:53:37 1 1 2019-08-21 22:53:37 2 6 2019-08-21 22:58:37 1 1 2019-08-21 22:58:37 2 7 2019-08-21 23:03:37 1 1 2019-08-21 23:03:37 2 9 2019-08-21 23:23:37 1 1 2019-08-21 23:23:37 2 5 2019-08-21 23:33:37 1 1 2019-08-21 23:33:37 2 5 2019-08-21 23:48:37 1 1 2019-08-21 23:48:37 2 5 2019-08-22 00:03:37 1 1 2019-08-22 00:03:37 2 4 2019-08-22 00:08:37 1 1 2019-08-22 00:08:37 2 3 2019-08-22 00:28:37 1 1 2019-08-22 00:28:37 2 2 2019-08-21 03:43:37 2 2 2019-08-21 03:53:37 2 2 2019-08-21 04:08:37 2 3 2019-08-21 04:28:37 2 3 2019-08-21 04:38:37 2 3 2019-08-21 04:48:37 2 3 2019-08-21 05:03:37 2 1 2019-08-21 05:13:37 2 1 2019-08-21 05:23:37 2 1 2019-08-21 06:43:37 2 1 2019-08-21 07:23:37 2 3 2019-08-21 08:08:37 2 1 2019-08-21 08:23:37 2 2 2019-08-21 09:03:37 1 1 2019-08-21 09:03:37 2 6 2019-08-21 09:28:37 1 1 2019-08-21 09:28:37 2 2 2019-08-21 09:43:37 1 1 2019-08-21 09:43:37 2 4 2019-08-21 09:58:37 1 1 2019-08-21 09:58:37 2 4 2019-08-21 11:08:37 1 1 2019-08-21 11:08:37 2 6 2019-08-21 11:18:37 1 1 2019-08-21 11:18:37 2 4 2019-08-21 11:33:37 1 1 2019-08-21 11:33:37 2 8 2019-08-21 11:43:37 1 1 2019-08-21 11:43:37 2 6 2019-08-21 11:48:37 1 2 2019-08-21 11:48:37 2 5 2019-08-21 12:13:37 1 1 2019-08-21 12:13:37 2 6 2019-08-21 12:18:37 1 2 2019-08-21 12:18:37 2 5 2019-08-21 12:28:37 1 1 2019-08-21 12:28:37 2 6 2019-08-21 12:43:37 2 5 2019-08-21 13:38:37 2 5 2019-08-21 13:48:37 2 5 2019-08-21 13:58:37 2 5 2019-08-21 14:13:37 2 5 2019-08-21 14:53:37 1 1 2019-08-21 14:53:37 2 6 2019-08-21 15:03:37 1 1 2019-08-21 15:03:37 2 6 2019-08-21 15:13:37 2 7 2019-08-21 15:38:37 1 1 2019-08-21 15:38:37 2 4 2019-08-21 15:43:37 1 1 2019-08-21 15:43:37 2 2 2019-08-21 15:53:37 1 1 2019-08-21 15:53:37 2 2 2019-08-21 16:18:37 2 5 2019-08-21 16:38:37 1 1 2019-08-21 16:38:37 2 6 2019-08-21 16:53:37 1 1 2019-08-21 16:53:37 2 4 2019-08-21 17:08:37 1 1 2019-08-21 17:08:37 2 4 2019-08-21 17:18:37 1 1 2019-08-21 17:18:37 2 4 2019-08-21 17:23:37 1 1 2019-08-21 17:23:37 2 6 2019-08-21 17:48:37 1 1 2019-08-21 17:48:37 2 6 2019-08-21 18:03:37 1 1 2019-08-21 18:03:37 2 6 2019-08-21 18:18:37 1 1 2019-08-21 18:18:37 2 6 2019-08-21 18:28:37 1 1 2019-08-21 18:28:37 2 6 2019-08-21 18:38:37 1 1 2019-08-21 18:38:37 2 6 2019-08-21 19:13:37 1 1 2019-08-21 19:13:37 2 6 2019-08-21 19:28:37 1 1 2019-08-21 19:28:37 2 2 2019-08-21 19:38:37 1 1 2019-08-21 19:38:37 2 2 2019-08-21 21:38:37 1 1 2019-08-21 21:38:37 2 6 2019-08-21 21:53:37 1 1 2019-08-21 21:53:37 2 4 2019-08-21 22:33:37 1 1 2019-08-21 22:33:37 2 4 2019-08-21 22:48:37 1 1 2019-08-21 22:48:37 2 6 2019-08-21 23:08:37 1 1 2019-08-21 23:08:37 2 6 2019-08-21 23:13:37 1 1 2019-08-21 23:13:37 2 6 2019-08-21 23:28:37 1 1 2019-08-21 23:28:37 2 4 2019-08-21 23:43:37 1 1 2019-08-21 23:43:37 2 8 2019-08-21 23:53:37 1 1 2019-08-21 23:53:37 2 4 2019-08-22 00:18:37 1 1 2019-08-22 00:18:37 2 4 2019-08-22 00:23:37 1 1 2019-08-22 00:23:37 2 2 2019-08-22 00:43:37 1 1 2019-08-22 00:43:37 2 6 2019-08-22 00:58:37 2 5 2019-08-22 01:33:37 2 3 2019-08-22 01:43:37 2 3 2019-08-22 02:03:37 2 3 2019-08-22 02:28:37 2 2 2019-08-22 03:03:37 2 2 2019-08-22 03:08:37 2 2 2019-08-22 03:13:37 2 2 2019-08-22 03:18:37 2 2 2019-08-22 03:23:37 2 2 2019-08-22 03:48:37 2 2 2019-08-22 06:18:37 2 1 2019-08-22 06:58:37 1 1 2019-08-22 07:08:37 1 1 2019-08-22 07:18:37 1 1 2019-08-22 07:28:37 1 1 2019-08-22 07:53:37 2 2 2019-08-22 08:03:37 2 3 2019-08-22 08:23:37 2 5 2019-08-22 08:38:37 2 2 2019-08-22 08:58:37 2 2 2019-08-22 09:13:37 1 1 2019-08-22 09:13:37 2 5 2019-08-22 09:28:37 1 1 2019-08-22 09:28:37 2 2 2019-08-22 09:43:37 2 1 2019-08-22 09:48:37 1 1 2019-08-22 09:48:37 2 1 2019-08-22 10:03:37 1 1 2019-08-22 10:08:37 1 1 2019-08-22 10:08:37 2 1 2019-08-22 10:18:37 1 1 2019-08-22 10:18:37 2 4 2019-08-22 10:28:37 1 1 2019-08-22 10:28:37 2 2 2019-08-22 10:33:37 1 1 2019-08-22 10:33:37 2 2 2019-08-22 10:48:37 1 1 2019-08-22 10:48:37 2 1 2019-08-22 10:58:37 1 1 2019-08-22 10:58:37 2 2 2019-08-22 11:03:37 1 1 2019-08-22 11:03:37 2 4 2019-08-22 11:08:37 1 1 2019-08-22 11:08:37 2 3 2019-08-22 11:13:37 1 1 2019-08-22 11:13:37 2 2 2019-08-22 11:18:37 1 1 2019-08-22 11:18:37 2 3 2019-08-22 11:23:37 2 2 2019-08-22 11:43:37 1 1 2019-08-22 11:43:37 2 2 2019-08-22 11:58:37 1 1 2019-08-22 11:58:37 2 3 2019-08-22 12:18:37 1 1 2019-08-22 12:18:37 2 4 2019-08-22 12:28:37 1 1 2019-08-22 12:28:37 2 3 2019-08-22 12:53:37 1 1 2019-08-22 12:53:37 2 6 2019-08-22 12:58:37 2 5 2019-08-22 13:08:37 2 5 2019-08-22 13:13:37 2 5 2019-08-22 13:18:37 2 5 2019-08-22 13:23:37 2 5 2019-08-22 13:33:37 2 4 2019-08-22 13:38:37 2 5 2019-08-22 13:43:37 2 4 2019-08-22 13:48:37 2 7 2019-08-22 13:53:37 2 7 2019-08-22 13:58:37 1 1 2019-08-22 13:58:37 2 8 2019-08-22 14:03:37 1 1 2019-08-22 14:03:37 2 7 2019-08-22 14:08:37 2 8 2019-08-22 14:13:37 2 7 2019-08-22 14:18:37 2 11 2019-08-22 14:23:37 2 8 2019-08-22 14:28:37 2 10 2019-08-22 14:33:37 2 10 2019-08-22 14:38:37 2 11 2019-08-21 03:48:37 2 2 2019-08-21 04:13:37 2 2 2019-08-21 04:53:37 2 2 2019-08-21 06:53:37 2 2 2019-08-21 07:03:37 2 2 2019-08-21 07:13:37 1 1 2019-08-21 07:13:37 2 1 2019-08-21 07:28:37 2 2 2019-08-21 07:38:37 2 2 2019-08-21 07:53:37 2 4 2019-08-21 08:18:37 2 2 2019-08-21 08:33:37 2 4 2019-08-21 08:38:37 2 2 2019-08-21 08:48:37 2 2 2019-08-21 08:53:37 1 1 2019-08-21 08:53:37 2 3 2019-08-21 08:58:37 1 1 2019-08-21 08:58:37 2 5 2019-08-21 09:38:37 2 2 2019-08-21 10:03:37 1 1 2019-08-21 10:03:37 2 3 2019-08-21 10:08:37 1 1 2019-08-21 10:08:37 2 3 2019-08-21 10:18:37 1 1 2019-08-21 10:18:37 2 3 2019-08-21 10:43:37 1 1 2019-08-21 10:43:37 2 5 2019-08-21 10:58:37 1 1 2019-08-21 10:58:37 2 7 2019-08-21 11:13:37 1 1 2019-08-21 11:13:37 2 5 2019-08-21 11:53:37 1 2 2019-08-21 11:53:37 2 7 2019-08-21 12:23:37 1 1 2019-08-21 12:23:37 2 5 2019-08-21 13:23:37 2 4 2019-08-21 13:33:37 2 4 2019-08-21 14:28:37 2 4 2019-08-21 14:33:37 2 8 2019-08-21 14:48:37 1 1 2019-08-21 14:48:37 2 7 2019-08-21 15:33:37 2 4 2019-08-21 15:58:37 1 1 2019-08-21 15:58:37 2 1 2019-08-21 16:28:37 1 1 2019-08-21 16:28:37 2 9 2019-08-21 17:33:37 1 1 2019-08-21 17:33:37 2 7 2019-08-21 17:43:37 1 1 2019-08-21 17:43:37 2 5 2019-08-21 17:53:37 1 1 2019-08-21 17:53:37 2 5 2019-08-21 18:13:37 1 1 2019-08-21 18:13:37 2 7 2019-08-21 18:43:37 1 1 2019-08-21 18:43:37 2 5 2019-08-21 19:23:37 1 1 2019-08-21 19:23:37 2 3 2019-08-21 19:43:37 1 1 2019-08-21 19:43:37 2 3 2019-08-21 20:08:37 2 6 2019-08-21 20:13:37 2 4 2019-08-21 20:28:37 2 6 2019-08-21 20:33:37 2 6 2019-08-21 20:43:37 2 6 2019-08-21 20:58:37 2 4 2019-08-21 21:08:37 2 4 2019-08-21 21:18:37 1 1 2019-08-21 21:18:37 2 3 2019-08-21 21:23:37 1 1 2019-08-21 21:23:37 2 5 2019-08-21 21:33:37 1 1 2019-08-21 21:33:37 2 5 2019-08-21 21:43:37 1 1 2019-08-21 21:43:37 2 5 2019-08-21 21:58:37 1 1 2019-08-21 21:58:37 2 3 2019-08-21 22:13:37 1 1 2019-08-21 22:13:37 2 5 2019-08-21 23:18:37 1 1 2019-08-21 23:18:37 2 5 2019-08-21 23:38:37 1 1 2019-08-21 23:38:37 2 7 2019-08-21 23:58:37 1 1 2019-08-21 23:58:37 2 3 2019-08-22 00:13:37 1 1 2019-08-22 00:13:37 2 3 2019-08-22 00:33:37 1 1 2019-08-22 00:33:37 2 3 2019-08-22 00:38:37 1 1 2019-08-22 00:38:37 2 5 2019-08-22 00:48:37 2 6 2019-08-22 00:53:37 2 6 2019-08-22 01:03:37 2 6 2019-08-22 01:08:37 2 4 2019-08-22 01:13:37 2 4 2019-08-22 01:18:37 2 4 2019-08-22 01:23:37 2 4 2019-08-22 01:28:37 2 4 2019-08-22 01:38:37 2 2 2019-08-22 01:48:37 2 4 2019-08-22 01:53:37 2 2 2019-08-22 01:58:37 2 2 2019-08-22 02:08:37 2 2 2019-08-22 02:13:37 2 1 2019-08-22 02:18:37 2 1 2019-08-22 02:23:37 2 1 2019-08-22 02:33:37 2 1 2019-08-22 02:38:37 2 1 2019-08-22 02:43:37 2 1 2019-08-22 02:48:37 2 1 2019-08-22 02:53:37 2 1 2019-08-22 02:58:37 2 1 2019-08-22 03:28:37 2 3 2019-08-22 03:33:37 2 1 2019-08-22 03:43:37 2 1 2019-08-22 03:53:37 2 1 2019-08-22 03:58:37 2 1 2019-08-22 06:53:37 1 1 2019-08-22 07:03:37 1 1 2019-08-22 07:13:37 1 1 2019-08-22 07:23:37 1 1 2019-08-22 07:33:37 1 1 2019-08-22 07:38:37 1 1 2019-08-22 07:38:37 2 1 2019-08-22 07:43:37 2 1 2019-08-22 07:48:37 2 2 2019-08-22 07:58:37 2 2 2019-08-22 08:08:37 2 3 2019-08-22 08:13:37 2 2 2019-08-22 08:18:37 2 3 2019-08-22 08:28:37 2 4 2019-08-22 08:33:37 2 2 2019-08-22 08:43:37 2 2 2019-08-22 08:48:37 2 1 2019-08-22 08:53:37 2 2 2019-08-22 09:03:37 1 1 2019-08-22 09:03:37 2 2 2019-08-22 09:08:37 1 1 2019-08-22 09:08:37 2 3 2019-08-22 09:18:37 1 1 2019-08-22 09:18:37 2 4 2019-08-22 09:23:37 2 3 2019-08-22 09:33:37 1 1 2019-08-22 09:33:37 2 2 2019-08-22 09:38:37 2 1 2019-08-22 09:53:37 1 1 2019-08-22 09:53:37 2 2 2019-08-22 09:58:37 1 1 2019-08-22 10:13:37 1 1 2019-08-22 10:13:37 2 2 2019-08-22 10:23:37 1 1 2019-08-22 10:23:37 2 2 2019-08-22 10:38:37 1 1 2019-08-22 10:38:37 2 2 2019-08-22 10:43:37 1 1 2019-08-22 10:43:37 2 1 2019-08-22 10:53:37 2 1 2019-08-22 11:28:37 2 2 2019-08-22 11:33:37 1 1 2019-08-22 11:33:37 2 4 2019-08-22 11:38:37 1 1 2019-08-22 11:38:37 2 2 2019-08-22 11:48:37 1 1 2019-08-22 11:48:37 2 2 2019-08-22 11:53:37 1 1 2019-08-22 11:53:37 2 4 2019-08-22 12:03:37 1 1 2019-08-22 12:03:37 2 5 2019-08-22 12:08:37 1 1 2019-08-22 12:08:37 2 7 2019-08-22 12:13:37 1 1 2019-08-22 12:13:37 2 4 2019-08-22 12:23:37 1 1 2019-08-22 12:23:37 2 3 2019-08-22 12:33:37 1 1 2019-08-22 12:33:37 2 3 2019-08-22 12:38:37 1 1 2019-08-22 12:38:37 2 6 2019-08-22 12:43:37 1 1 2019-08-22 12:43:37 2 7 2019-08-22 12:48:37 1 1 2019-08-22 12:48:37 2 6 2019-08-22 13:03:37 2 5 2019-08-22 13:28:37 2 5 2019-08-22 14:43:37 2 10 2019-08-22 14:58:37 2 8 2019-08-22 15:28:37 1 1 2019-08-22 15:28:37 2 3 2019-08-22 15:48:37 1 1 2019-08-22 15:48:37 2 5 2019-08-22 15:53:37 1 1 2019-08-22 15:53:37 2 6 2019-08-22 16:43:37 2 7 2019-08-22 17:03:37 2 7 2019-08-22 17:23:37 2 7 2019-08-22 18:03:37 2 9 2019-08-22 18:28:37 2 7 2019-08-22 18:43:37 1 1 2019-08-22 18:43:37 2 4 2019-08-22 19:28:37 2 5 2019-08-22 19:38:37 2 5 2019-08-22 19:48:37 2 5 2019-08-22 19:53:37 2 7 2019-08-22 20:28:37 1 1 2019-08-22 20:28:37 2 6 2019-08-22 21:08:37 1 2 2019-08-22 21:08:37 2 5 2019-08-22 21:33:37 1 2 2019-08-22 21:33:37 2 9 2019-08-22 21:38:37 1 2 2019-08-22 21:38:37 2 9 2019-08-22 21:48:37 1 1 2019-08-22 21:48:37 2 10 2019-08-22 21:53:37 1 1 2019-08-22 21:53:37 2 8 2019-08-22 22:03:37 1 1 2019-08-22 22:03:37 2 10 2019-08-22 22:18:37 1 1 2019-08-22 22:18:37 2 6 2019-08-22 22:28:37 2 6 2019-08-22 22:38:37 2 6 2019-08-22 22:48:37 1 1 2019-08-22 22:48:37 2 5 2019-08-22 23:23:37 1 1 2019-08-22 23:23:37 2 5 2019-08-22 23:28:37 1 1 2019-08-22 23:28:37 2 7 2019-08-22 23:33:37 1 1 2019-08-22 23:33:37 2 5 2019-08-23 00:38:37 2 4 2019-08-23 01:58:37 2 7 2019-08-23 02:13:37 2 9 2019-08-23 02:28:37 2 5 2019-08-23 02:38:37 2 5 2019-08-23 02:48:37 2 5 2019-08-23 02:58:37 2 5 2019-08-23 03:08:37 2 5 2019-08-23 03:23:37 2 3 2019-08-23 03:33:37 2 3 2019-08-23 04:03:37 2 1 2019-08-23 04:13:37 2 1 2019-08-23 04:23:37 2 1 2019-08-23 06:13:37 2 1 2019-08-23 07:33:37 2 1 2019-08-23 09:18:37 2 3 2019-08-23 09:38:37 2 3 2019-08-23 10:48:37 1 1 2019-08-23 10:48:37 2 6 2019-08-23 11:08:37 1 1 2019-08-23 11:08:37 2 8 2019-08-23 11:13:37 1 1 2019-08-23 11:13:37 2 8 2019-08-23 11:38:37 1 1 2019-08-23 11:38:37 2 6 2019-08-23 11:53:37 1 1 2019-08-23 11:53:37 2 8 2019-08-23 11:58:37 1 1 2019-08-23 11:58:37 2 6 2019-08-23 12:13:37 1 1 2019-08-23 12:13:37 2 6 2019-08-23 13:03:37 2 5 2019-08-23 13:23:37 2 5 2019-08-23 13:28:37 2 3 2019-08-23 14:18:37 2 3 2019-08-23 14:48:37 2 3 2019-08-23 15:03:37 2 5 2019-08-23 15:28:37 1 1 2019-08-23 15:28:37 2 6 2019-08-23 15:43:37 2 7 2019-08-23 15:58:37 2 5 2019-08-23 16:18:37 2 5 2019-08-23 16:38:37 2 5 2019-08-23 17:13:37 1 1 2019-08-23 17:13:37 2 4 2019-08-23 17:43:37 1 1 2019-08-23 17:43:37 2 4 2019-08-23 18:08:37 1 1 2019-08-23 18:08:37 2 4 2019-08-23 18:23:38 1 1 2019-08-23 18:23:38 2 4 2019-08-23 18:43:37 1 1 2019-08-23 18:43:37 2 4 2019-08-23 19:03:37 2 7 2019-08-23 19:18:37 2 5 2019-08-23 19:38:37 2 2 2019-08-23 20:23:37 1 1 2019-08-23 20:23:37 2 5 2019-08-23 20:33:37 1 1 2019-08-23 20:33:37 2 5 2019-08-23 20:43:37 1 1 2019-08-23 20:43:37 2 5 2019-08-23 20:58:37 1 1 2019-08-23 20:58:37 2 3 2019-08-23 21:13:37 1 1 2019-08-23 21:13:37 2 5 2019-08-23 21:23:37 1 1 2019-08-23 21:23:37 2 7 2019-08-23 21:28:37 1 1 2019-08-23 21:28:37 2 7 2019-08-23 21:58:37 1 1 2019-08-23 21:58:37 2 3 2019-08-23 22:03:37 1 2 2019-08-23 22:03:37 2 4 2019-08-23 23:08:37 1 1 2019-08-23 23:08:37 2 5 2019-08-23 23:13:37 1 1 2019-08-23 23:13:37 2 7 2019-08-23 23:23:37 1 1 2019-08-23 23:23:37 2 7 2019-08-23 23:38:37 2 4 2019-08-23 23:48:37 2 4 2019-08-24 00:43:37 2 4 2019-08-24 00:53:37 2 4 2019-08-24 01:03:37 2 4 2019-08-24 01:23:37 2 4 2019-08-24 01:33:37 2 4 2019-08-24 01:48:37 2 6 2019-08-24 01:53:37 2 4 2019-08-24 02:03:37 2 4 2019-08-24 02:13:37 2 6 2019-08-24 02:18:37 2 6 2019-08-24 03:13:37 2 4 2019-08-24 03:23:37 2 4 2019-08-24 03:58:37 2 2 2019-08-24 04:03:37 2 2 2019-08-24 04:13:37 2 2 2019-08-24 04:23:37 2 2 2019-08-24 04:33:37 2 2 2019-08-24 04:43:37 2 2 2019-08-24 04:53:37 2 2 2019-08-24 05:03:37 2 2 2019-08-24 05:13:37 2 2 2019-08-24 06:13:37 2 1 2019-08-24 06:23:37 2 1 2019-08-24 06:33:37 2 1 2019-08-24 06:43:37 2 1 2019-08-24 06:53:37 2 1 2019-08-24 07:03:37 2 1 2019-08-24 07:13:37 2 1 2019-08-24 07:23:37 2 1 2019-08-24 07:33:37 2 1 2019-08-24 07:53:37 2 1 2019-08-24 08:03:37 2 1 2019-08-24 08:18:37 2 3 2019-08-24 08:23:37 2 1 2019-08-24 08:58:37 1 1 2019-08-24 08:58:37 2 2 2019-08-24 09:08:37 1 1 2019-08-24 09:08:37 2 2 2019-08-24 09:28:37 1 1 2019-08-24 09:28:37 2 4 2019-08-24 10:13:37 1 1 2019-08-24 10:13:37 2 4 2019-08-24 10:53:37 2 4 2019-08-24 11:18:37 2 4 2019-08-24 11:33:37 1 1 2019-08-24 11:33:37 2 5 2019-08-24 11:38:37 1 1 2019-08-24 11:38:37 2 3 2019-08-24 11:53:37 1 2 2019-08-24 11:53:37 2 6 2019-08-24 12:13:37 1 1 2019-08-24 12:13:37 2 7 2019-08-24 12:18:37 1 1 2019-08-24 12:18:37 2 9 2019-08-24 12:33:37 1 1 2019-08-24 12:33:37 2 7 2019-08-24 12:58:37 1 1 2019-08-24 12:58:37 2 7 2019-08-22 14:48:37 2 10 2019-08-22 14:53:37 2 8 2019-08-22 15:03:37 2 8 2019-08-22 15:13:37 1 1 2019-08-22 15:13:37 2 7 2019-08-22 15:38:37 1 1 2019-08-22 15:38:37 2 5 2019-08-22 15:43:37 1 1 2019-08-22 15:43:37 2 5 2019-08-22 16:08:37 2 6 2019-08-22 16:23:37 2 8 2019-08-22 16:33:37 2 8 2019-08-22 16:48:37 2 8 2019-08-22 17:08:37 2 8 2019-08-22 17:28:37 2 8 2019-08-22 17:43:37 2 10 2019-08-22 17:53:37 2 10 2019-08-22 17:58:37 2 10 2019-08-22 18:13:37 2 8 2019-08-22 18:38:37 2 6 2019-08-22 18:48:37 1 1 2019-08-22 18:48:37 2 5 2019-08-22 18:58:37 1 1 2019-08-22 18:58:37 2 5 2019-08-22 19:58:37 2 8 2019-08-22 20:08:37 1 2 2019-08-22 20:08:37 2 8 2019-08-22 20:23:37 1 1 2019-08-22 20:23:37 2 7 2019-08-22 20:33:37 1 1 2019-08-22 20:33:37 2 7 2019-08-22 22:23:38 2 7 2019-08-22 22:33:37 2 7 2019-08-22 22:58:37 1 1 2019-08-22 22:58:37 2 4 2019-08-22 23:08:37 1 1 2019-08-22 23:08:37 2 4 2019-08-22 23:18:37 1 1 2019-08-22 23:18:37 2 4 2019-08-22 23:43:37 1 1 2019-08-22 23:43:37 2 4 2019-08-23 00:18:37 2 5 2019-08-23 00:33:37 2 5 2019-08-23 00:43:37 2 5 2019-08-23 00:53:37 2 5 2019-08-23 01:08:37 2 3 2019-08-23 01:28:37 2 5 2019-08-23 01:48:37 2 6 2019-08-23 02:18:37 2 6 2019-08-23 03:18:37 2 4 2019-08-23 03:58:37 2 2 2019-08-23 04:08:37 2 1 2019-08-23 04:18:37 2 1 2019-08-23 06:08:37 2 1 2019-08-23 07:08:37 2 1 2019-08-23 07:38:37 2 1 2019-08-23 09:13:37 2 3 2019-08-23 09:33:37 2 3 2019-08-23 09:48:37 2 5 2019-08-23 09:58:37 2 3 2019-08-23 10:03:37 2 5 2019-08-23 10:28:37 2 3 2019-08-23 10:38:37 1 1 2019-08-23 10:38:37 2 4 2019-08-23 10:53:37 1 1 2019-08-23 10:53:37 2 6 2019-08-23 11:03:37 1 2 2019-08-23 11:03:37 2 7 2019-08-23 11:43:37 1 1 2019-08-23 11:43:37 2 8 2019-08-23 12:03:37 1 1 2019-08-23 12:03:37 2 6 2019-08-23 12:08:37 1 1 2019-08-23 12:08:37 2 6 2019-08-23 12:48:37 1 1 2019-08-23 12:48:37 2 4 2019-08-23 12:53:37 2 3 2019-08-23 12:58:37 2 5 2019-08-23 13:18:37 2 5 2019-08-23 13:33:37 2 3 2019-08-23 13:48:37 2 5 2019-08-23 14:23:37 2 3 2019-08-23 14:58:37 2 5 2019-08-23 15:53:37 2 5 2019-08-23 16:08:37 2 7 2019-08-23 16:13:37 2 5 2019-08-23 16:33:37 2 5 2019-08-23 17:08:37 1 1 2019-08-23 17:08:37 2 4 2019-08-23 17:18:37 1 1 2019-08-23 17:18:37 2 4 2019-08-23 17:23:37 1 1 2019-08-23 17:23:37 2 4 2019-08-23 17:48:37 1 1 2019-08-23 17:48:37 2 4 2019-08-23 17:53:37 1 1 2019-08-23 17:53:37 2 4 2019-08-23 17:58:37 1 1 2019-08-23 17:58:37 2 4 2019-08-23 18:03:37 1 1 2019-08-23 18:03:37 2 4 2019-08-23 19:28:37 2 3 2019-08-23 19:33:37 2 2 2019-08-23 19:43:37 2 2 2019-08-23 19:53:37 2 2 2019-08-23 19:58:37 2 2 2019-08-23 20:03:37 2 2 2019-08-23 20:08:37 2 4 2019-08-23 20:13:37 1 1 2019-08-23 20:13:37 2 5 2019-08-23 20:18:37 1 1 2019-08-23 20:18:37 2 5 2019-08-23 20:28:37 1 1 2019-08-23 20:28:37 2 5 2019-08-23 20:53:37 1 1 2019-08-23 20:53:37 2 3 2019-08-23 21:03:37 1 1 2019-08-23 21:03:37 2 3 2019-08-23 21:38:37 1 1 2019-08-23 21:38:37 2 5 2019-08-23 21:53:37 1 1 2019-08-23 21:53:37 2 3 2019-08-23 22:13:37 1 1 2019-08-23 22:13:37 2 3 2019-08-23 22:23:37 1 1 2019-08-23 22:23:37 2 7 2019-08-23 22:33:37 1 1 2019-08-23 22:33:37 2 3 2019-08-23 22:53:37 1 1 2019-08-23 22:53:37 2 5 2019-08-24 00:18:37 2 4 2019-08-24 00:28:37 2 4 2019-08-24 00:38:37 2 4 2019-08-24 00:58:37 2 4 2019-08-24 01:28:37 2 4 2019-08-24 01:38:37 2 4 2019-08-24 01:43:37 2 6 2019-08-24 01:58:38 2 4 2019-08-24 02:58:37 2 4 2019-08-24 03:18:37 2 4 2019-08-24 03:28:37 2 4 2019-08-24 04:08:37 2 2 2019-08-24 04:18:37 2 2 2019-08-24 04:28:37 2 2 2019-08-24 04:38:37 2 2 2019-08-24 04:48:37 2 2 2019-08-24 04:58:37 2 2 2019-08-24 05:08:37 2 2 2019-08-24 06:18:37 2 1 2019-08-24 06:28:37 2 1 2019-08-24 06:38:37 2 1 2019-08-24 06:48:37 2 1 2019-08-24 06:58:37 2 1 2019-08-24 07:08:37 2 1 2019-08-24 07:18:37 2 1 2019-08-24 07:58:37 2 1 2019-08-24 08:08:37 2 1 2019-08-24 08:13:37 2 3 2019-08-24 08:33:37 1 1 2019-08-24 08:33:37 2 2 2019-08-24 09:03:37 1 1 2019-08-24 09:03:37 2 2 2019-08-24 09:13:37 1 1 2019-08-24 09:13:37 2 2 2019-08-24 09:48:37 1 1 2019-08-24 09:48:37 2 4 2019-08-24 09:58:37 1 1 2019-08-24 09:58:37 2 4 2019-08-24 10:28:37 1 1 2019-08-24 10:28:37 2 5 2019-08-24 10:33:37 1 1 2019-08-24 10:33:37 2 5 2019-08-24 10:38:37 1 1 2019-08-24 10:38:37 2 3 2019-08-24 11:13:37 2 4 2019-08-24 12:03:37 1 2 2019-08-24 12:03:37 2 6 2019-08-24 12:38:37 1 1 2019-08-24 12:38:37 2 7 2019-08-24 12:43:37 1 1 2019-08-24 12:43:37 2 7 2019-08-24 12:48:37 1 2 2019-08-24 12:48:37 2 8 2019-08-24 12:53:37 1 1 2019-08-24 12:53:37 2 9 2019-08-22 15:08:37 1 1 2019-08-22 15:08:37 2 8 2019-08-22 16:13:37 2 7 2019-08-22 16:18:37 2 7 2019-08-22 16:58:37 2 7 2019-08-22 17:18:37 2 7 2019-08-22 17:38:37 2 7 2019-08-22 18:23:37 2 7 2019-08-22 19:03:37 1 1 2019-08-22 19:03:37 2 6 2019-08-22 19:13:37 2 9 2019-08-22 19:23:37 2 5 2019-08-22 19:33:37 2 5 2019-08-22 19:43:37 2 5 2019-08-22 20:13:37 1 1 2019-08-22 20:13:37 2 6 2019-08-22 20:43:37 1 1 2019-08-22 20:43:37 2 6 2019-08-22 20:48:37 1 1 2019-08-22 20:48:37 2 4 2019-08-22 20:58:37 1 1 2019-08-22 20:58:37 2 6 2019-08-22 21:13:37 1 2 2019-08-22 21:13:37 2 5 2019-08-22 21:18:37 1 2 2019-08-22 21:18:37 2 7 2019-08-22 21:28:37 1 2 2019-08-22 21:28:37 2 7 2019-08-22 22:13:37 1 1 2019-08-22 22:13:37 2 6 2019-08-22 22:43:37 1 1 2019-08-22 22:43:37 2 5 2019-08-22 23:38:37 1 1 2019-08-22 23:38:37 2 5 2019-08-22 23:58:37 2 2 2019-08-23 00:03:37 2 2 2019-08-23 00:08:37 2 4 2019-08-23 00:13:37 2 6 2019-08-23 00:23:37 2 6 2019-08-23 01:18:37 2 4 2019-08-23 01:38:37 2 4 2019-08-23 01:53:37 2 7 2019-08-23 02:03:37 2 7 2019-08-23 02:08:37 2 7 2019-08-23 02:33:37 2 5 2019-08-23 02:43:37 2 5 2019-08-23 02:53:37 2 5 2019-08-23 03:03:37 2 5 2019-08-23 03:28:37 2 3 2019-08-23 03:38:37 2 3 2019-08-23 03:43:37 2 1 2019-08-23 03:53:37 2 3 2019-08-23 09:03:37 1 1 2019-08-23 09:03:37 2 1 2019-08-23 09:23:37 2 2 2019-08-23 09:28:37 2 2 2019-08-23 09:53:37 2 4 2019-08-23 10:13:37 2 4 2019-08-23 10:23:37 2 4 2019-08-23 10:33:37 2 4 2019-08-23 10:43:37 1 1 2019-08-23 10:43:37 2 5 2019-08-23 10:58:37 1 1 2019-08-23 10:58:37 2 7 2019-08-23 11:23:37 1 1 2019-08-23 11:23:37 2 9 2019-08-23 11:48:37 1 1 2019-08-23 11:48:37 2 7 2019-08-23 12:18:37 1 1 2019-08-23 12:18:37 2 5 2019-08-23 12:38:37 1 1 2019-08-23 12:38:37 2 5 2019-08-23 13:08:37 2 4 2019-08-23 13:38:37 2 4 2019-08-23 13:58:37 2 4 2019-08-23 14:08:37 1 1 2019-08-23 14:08:37 2 5 2019-08-23 14:28:37 2 4 2019-08-23 14:38:37 2 4 2019-08-23 15:08:37 1 1 2019-08-23 15:08:37 2 5 2019-08-23 15:18:37 1 1 2019-08-23 15:18:37 2 7 2019-08-23 15:33:37 2 6 2019-08-23 15:48:37 2 6 2019-08-23 16:43:37 2 4 2019-08-23 16:53:37 2 4 2019-08-23 17:03:37 1 1 2019-08-23 17:03:37 2 5 2019-08-23 17:28:37 1 1 2019-08-23 17:28:37 2 5 2019-08-23 17:33:37 1 1 2019-08-23 17:33:37 2 5 2019-08-23 17:38:37 1 1 2019-08-23 17:38:37 2 5 2019-08-23 18:18:37 1 1 2019-08-23 18:18:37 2 3 2019-08-23 18:33:37 1 1 2019-08-23 18:33:37 2 5 2019-08-23 18:38:37 1 1 2019-08-23 18:38:37 2 3 2019-08-23 18:53:37 1 1 2019-08-23 18:53:37 2 3 2019-08-23 19:13:37 2 4 2019-08-23 20:38:37 1 1 2019-08-23 20:38:37 2 4 2019-08-23 21:08:37 1 1 2019-08-23 21:08:37 2 4 2019-08-23 21:33:37 1 1 2019-08-23 21:33:37 2 6 2019-08-23 21:43:37 1 1 2019-08-23 21:43:37 2 4 2019-08-23 22:08:37 1 1 2019-08-23 22:08:37 2 4 2019-08-23 22:38:37 1 2 2019-08-23 22:38:37 2 5 2019-08-23 22:48:37 1 1 2019-08-23 22:48:37 2 6 2019-08-23 23:18:37 1 1 2019-08-23 23:18:37 2 6 2019-08-23 23:28:37 1 1 2019-08-23 23:28:37 2 4 2019-08-23 23:43:37 2 3 2019-08-23 23:53:37 2 5 2019-08-23 23:58:37 2 7 2019-08-24 00:13:37 2 5 2019-08-24 00:23:37 2 5 2019-08-24 00:33:37 2 5 2019-08-24 01:08:37 2 3 2019-08-24 01:18:37 2 3 2019-08-24 02:08:37 2 3 2019-08-24 02:23:37 2 5 2019-08-24 02:33:37 2 5 2019-08-24 02:43:37 2 5 2019-08-24 02:53:37 2 5 2019-08-24 03:38:37 2 3 2019-08-24 03:48:37 2 3 2019-08-24 05:18:37 2 1 2019-08-24 05:28:37 2 1 2019-08-24 05:38:37 2 1 2019-08-24 05:48:37 2 1 2019-08-24 05:58:37 2 1 2019-08-24 06:08:37 2 1 2019-08-24 08:43:37 1 1 2019-08-24 08:43:37 2 1 2019-08-24 08:53:37 1 1 2019-08-24 08:53:37 2 1 2019-08-24 09:23:37 1 1 2019-08-24 09:23:37 2 3 2019-08-24 09:33:37 1 1 2019-08-24 09:33:37 2 3 2019-08-24 09:43:37 1 1 2019-08-24 09:43:37 2 3 2019-08-24 10:08:37 1 1 2019-08-24 10:08:37 2 3 2019-08-24 10:18:37 1 1 2019-08-24 10:18:37 2 4 2019-08-24 10:43:37 1 1 2019-08-24 10:43:37 2 4 2019-08-24 10:58:37 2 5 2019-08-24 11:08:37 2 5 2019-08-24 11:28:37 1 1 2019-08-24 11:28:37 2 4 2019-08-24 11:43:37 1 1 2019-08-24 11:43:37 2 4 2019-08-24 11:58:37 1 2 2019-08-24 11:58:37 2 7 2019-08-24 12:23:37 1 1 2019-08-24 12:23:37 2 8 2019-08-24 13:03:37 1 1 2019-08-24 13:03:37 2 5 2019-08-24 13:08:37 1 1 2019-08-24 13:08:37 2 6 2019-08-24 13:23:37 1 1 2019-08-24 13:23:37 2 4 2019-08-24 13:28:37 1 1 2019-08-24 13:28:37 2 5 2019-08-24 13:33:37 1 1 2019-08-24 13:33:37 2 5 2019-08-24 13:43:37 1 1 2019-08-24 13:43:37 2 5 2019-08-24 13:53:37 1 1 2019-08-24 13:53:37 2 6 2019-08-24 14:13:37 1 1 2019-08-24 14:13:37 2 6 2019-08-22 15:18:37 1 1 2019-08-22 15:18:37 2 6 2019-08-22 15:23:37 1 1 2019-08-22 15:23:37 2 4 2019-08-22 15:33:37 1 1 2019-08-22 15:33:37 2 4 2019-08-22 15:58:37 1 1 2019-08-22 15:58:37 2 5 2019-08-22 16:03:37 1 1 2019-08-22 16:03:37 2 5 2019-08-22 16:28:37 2 8 2019-08-22 16:38:37 2 8 2019-08-22 16:53:37 2 8 2019-08-22 17:13:37 2 8 2019-08-22 17:33:37 2 8 2019-08-22 17:48:37 2 10 2019-08-22 18:08:37 2 8 2019-08-22 18:18:37 2 8 2019-08-22 18:33:37 2 6 2019-08-22 18:53:37 1 1 2019-08-22 18:53:37 2 5 2019-08-22 19:08:37 2 8 2019-08-22 19:18:37 2 6 2019-08-22 20:03:37 2 8 2019-08-22 20:18:37 1 1 2019-08-22 20:18:37 2 7 2019-08-22 20:38:37 1 1 2019-08-22 20:38:37 2 7 2019-08-22 20:53:37 1 1 2019-08-22 20:53:37 2 7 2019-08-22 21:03:37 1 2 2019-08-22 21:03:37 2 4 2019-08-22 21:23:37 1 2 2019-08-22 21:23:37 2 8 2019-08-22 21:43:37 1 1 2019-08-22 21:43:37 2 9 2019-08-22 21:58:37 1 1 2019-08-22 21:58:37 2 9 2019-08-22 22:08:37 1 1 2019-08-22 22:08:37 2 7 2019-08-22 22:53:37 1 1 2019-08-22 22:53:37 2 4 2019-08-22 23:03:37 1 1 2019-08-22 23:03:37 2 4 2019-08-22 23:13:37 1 1 2019-08-22 23:13:37 2 4 2019-08-22 23:48:37 1 1 2019-08-22 23:48:37 2 4 2019-08-22 23:53:37 2 3 2019-08-23 00:28:37 2 7 2019-08-23 00:48:37 2 5 2019-08-23 00:58:37 2 5 2019-08-23 01:03:37 2 3 2019-08-23 01:13:37 2 5 2019-08-23 01:23:37 2 5 2019-08-23 01:33:37 2 5 2019-08-23 01:43:37 2 7 2019-08-23 02:23:37 2 6 2019-08-23 03:13:37 2 4 2019-08-23 03:48:37 2 2 2019-08-23 09:08:37 2 2 2019-08-23 09:43:37 2 4 2019-08-23 10:08:37 2 4 2019-08-23 10:18:37 2 4 2019-08-23 11:18:37 1 1 2019-08-23 11:18:37 2 9 2019-08-23 11:28:37 1 1 2019-08-23 11:28:37 2 7 2019-08-23 11:33:37 1 1 2019-08-23 11:33:37 2 7 2019-08-23 12:23:37 1 1 2019-08-23 12:23:37 2 5 2019-08-23 12:28:37 1 1 2019-08-23 12:28:37 2 5 2019-08-23 12:33:37 1 1 2019-08-23 12:33:37 2 5 2019-08-23 12:43:37 1 1 2019-08-23 12:43:37 2 5 2019-08-23 13:13:37 2 4 2019-08-23 13:43:37 2 4 2019-08-23 13:53:37 2 4 2019-08-23 14:03:37 1 1 2019-08-23 14:03:37 2 5 2019-08-23 14:13:37 1 1 2019-08-23 14:13:37 2 3 2019-08-23 14:33:37 2 4 2019-08-23 14:43:37 2 4 2019-08-23 14:53:37 2 4 2019-08-23 15:13:37 1 1 2019-08-23 15:13:37 2 7 2019-08-23 15:23:37 1 1 2019-08-23 15:23:37 2 7 2019-08-23 15:38:37 1 1 2019-08-23 15:38:37 2 7 2019-08-23 16:03:37 2 6 2019-08-23 16:23:37 2 6 2019-08-23 16:28:37 2 4 2019-08-23 16:48:37 2 4 2019-08-23 16:58:37 2 4 2019-08-23 18:13:37 1 1 2019-08-23 18:13:37 2 3 2019-08-23 18:28:37 1 1 2019-08-23 18:28:37 2 5 2019-08-23 18:48:37 1 1 2019-08-23 18:48:37 2 3 2019-08-23 18:58:37 2 4 2019-08-23 19:08:37 2 6 2019-08-23 19:23:37 2 3 2019-08-23 19:48:37 2 1 2019-08-23 20:48:37 1 1 2019-08-23 20:48:37 2 4 2019-08-23 21:18:37 1 1 2019-08-23 21:18:37 2 6 2019-08-23 21:48:37 1 1 2019-08-23 21:48:37 2 2 2019-08-23 22:18:37 1 1 2019-08-23 22:18:37 2 4 2019-08-23 22:28:37 1 1 2019-08-23 22:28:37 2 4 2019-08-23 22:43:37 1 2 2019-08-23 22:43:37 2 5 2019-08-23 22:58:37 1 1 2019-08-23 22:58:37 2 6 2019-08-23 23:03:37 1 1 2019-08-23 23:03:37 2 4 2019-08-23 23:33:37 1 1 2019-08-23 23:33:37 2 4 2019-08-24 00:03:37 2 5 2019-08-24 00:08:37 2 5 2019-08-24 00:48:37 2 5 2019-08-24 01:13:37 2 3 2019-08-24 02:28:37 2 5 2019-08-24 02:38:37 2 5 2019-08-24 02:48:37 2 5 2019-08-24 03:03:37 2 5 2019-08-24 03:08:37 2 5 2019-08-24 03:33:37 2 3 2019-08-24 03:43:37 2 3 2019-08-24 03:53:37 2 3 2019-08-24 05:23:37 2 1 2019-08-24 05:33:37 2 1 2019-08-24 05:43:37 2 1 2019-08-24 05:53:37 2 1 2019-08-24 06:03:37 2 1 2019-08-24 07:28:37 2 2 2019-08-24 08:28:37 1 1 2019-08-24 08:28:37 2 1 2019-08-24 08:38:37 1 1 2019-08-24 08:38:37 2 1 2019-08-24 08:48:37 1 1 2019-08-24 08:48:37 2 1 2019-08-24 09:18:37 1 1 2019-08-24 09:18:37 2 3 2019-08-24 09:38:37 1 1 2019-08-24 09:38:37 2 3 2019-08-24 09:53:37 1 1 2019-08-24 09:53:37 2 3 2019-08-24 10:03:37 1 1 2019-08-24 10:03:37 2 3 2019-08-24 10:23:37 1 1 2019-08-24 10:23:37 2 4 2019-08-24 10:48:37 2 5 2019-08-24 11:03:37 2 5 2019-08-24 11:23:37 1 1 2019-08-24 11:23:37 2 4 2019-08-24 11:48:37 1 2 2019-08-24 11:48:37 2 5 2019-08-24 12:08:37 1 1 2019-08-24 12:08:37 2 10 2019-08-24 12:28:37 1 1 2019-08-24 12:28:37 2 8 2019-08-24 13:13:37 1 1 2019-08-24 13:13:37 2 5 2019-08-24 13:18:37 1 1 2019-08-24 13:18:37 2 4 2019-08-24 13:38:37 1 1 2019-08-24 13:38:37 2 6 2019-08-24 13:48:37 1 1 2019-08-24 13:48:37 2 6 2019-08-24 13:58:37 1 1 2019-08-24 13:58:37 2 6 2019-08-24 14:03:37 2 5 2019-08-24 14:08:37 1 1 2019-08-24 14:08:37 2 6 2019-08-24 14:18:37 1 1 2019-08-24 14:18:37 2 8 2019-08-24 15:03:37 1 1 2019-08-24 15:03:37 2 8 2019-08-24 15:08:37 1 1 2019-08-24 15:08:37 2 6 2019-08-24 15:53:37 1 1 2019-08-24 15:53:37 2 4 2019-08-24 16:13:37 2 5 2019-08-24 16:28:37 2 3 2019-08-24 16:38:37 2 3 2019-08-24 16:48:37 2 3 2019-08-24 17:08:37 2 3 2019-08-24 17:18:37 2 3 2019-08-24 17:53:37 2 5 2019-08-24 18:08:37 1 1 2019-08-24 18:08:37 2 8 2019-08-24 18:18:37 1 1 2019-08-24 18:18:37 2 8 2019-08-24 18:38:37 1 1 2019-08-24 18:38:37 2 6 2019-08-24 18:43:37 1 1 2019-08-24 18:43:37 2 3 2019-08-24 18:53:37 1 1 2019-08-24 18:53:37 2 5 2019-08-24 19:23:37 1 1 2019-08-24 19:23:37 2 5 2019-08-24 19:48:37 1 1 2019-08-24 19:48:37 2 5 2019-08-24 20:03:37 1 1 2019-08-24 20:03:37 2 5 2019-08-24 20:43:37 2 2 2019-08-24 20:53:37 2 2 2019-08-24 21:03:37 2 4 2019-08-24 21:53:37 1 1 2019-08-24 21:53:37 2 6 2019-08-24 22:13:37 1 1 2019-08-24 22:13:37 2 6 2019-08-24 22:38:37 1 1 2019-08-24 22:38:37 2 8 2019-08-24 22:43:37 1 1 2019-08-24 22:43:37 2 6 2019-08-24 23:08:37 1 1 2019-08-24 23:08:37 2 6 2019-08-24 23:13:37 1 1 2019-08-24 23:13:37 2 4 2019-08-24 23:23:37 1 1 2019-08-24 23:23:37 2 4 2019-08-25 00:18:37 2 7 2019-08-25 00:33:37 2 5 2019-08-25 01:03:37 2 5 2019-08-25 01:08:37 2 3 2019-08-25 01:28:37 2 3 2019-08-25 01:48:37 2 3 2019-08-25 02:03:37 2 3 2019-08-25 02:33:37 2 3 2019-08-25 02:53:37 2 2 2019-08-25 03:03:37 2 2 2019-08-25 03:33:37 2 2 2019-08-25 04:03:37 2 1 2019-08-25 04:13:37 2 1 2019-08-25 04:23:37 2 1 2019-08-25 04:33:37 2 1 2019-08-25 04:43:37 2 1 2019-08-25 04:58:37 2 2 2019-08-25 05:08:37 2 2 2019-08-25 05:18:37 2 2 2019-08-25 05:28:37 2 2 2019-08-25 06:28:37 1 1 2019-08-25 06:28:37 2 1 2019-08-25 07:28:37 1 1 2019-08-25 07:28:37 2 1 2019-08-25 07:38:37 1 1 2019-08-25 07:38:37 2 1 2019-08-25 07:58:37 1 1 2019-08-25 07:58:37 2 3 2019-08-25 08:28:37 1 1 2019-08-25 08:28:37 2 4 2019-08-25 08:33:37 1 1 2019-08-25 08:33:37 2 3 2019-08-25 08:38:37 1 1 2019-08-25 08:38:37 2 3 2019-08-25 08:43:37 1 1 2019-08-25 08:43:37 2 1 2019-08-25 08:53:37 1 1 2019-08-25 08:53:37 2 1 2019-08-25 09:18:37 1 1 2019-08-25 09:18:37 2 3 2019-08-25 09:38:37 1 1 2019-08-25 09:38:37 2 2 2019-08-25 09:43:37 1 1 2019-08-25 09:43:37 2 4 2019-08-25 09:48:37 1 1 2019-08-25 09:48:37 2 2 2019-08-25 09:53:37 1 1 2019-08-25 09:53:37 2 2 2019-08-25 10:13:37 1 2 2019-08-25 10:13:37 2 3 2019-08-25 10:18:37 1 2 2019-08-25 10:18:37 2 3 2019-08-25 10:28:37 1 2 2019-08-25 10:28:37 2 3 2019-08-25 10:38:37 1 2 2019-08-25 10:38:37 2 3 2019-08-25 10:48:37 1 2 2019-08-25 10:48:37 2 5 2019-08-25 11:38:37 1 1 2019-08-25 11:38:37 2 6 2019-08-25 11:43:38 1 1 2019-08-25 11:43:38 2 6 2019-08-25 11:58:37 1 1 2019-08-25 11:58:37 2 6 2019-08-25 12:03:37 1 1 2019-08-25 12:03:37 2 4 2019-08-25 12:38:37 1 1 2019-08-25 12:38:37 2 4 2019-08-25 12:58:37 2 5 2019-08-25 13:13:37 2 5 2019-08-25 13:43:37 2 1 2019-08-25 14:08:37 2 5 2019-08-25 14:28:37 1 1 2019-08-25 14:28:37 2 2 2019-08-25 14:58:38 2 3 2019-08-25 15:48:37 2 3 2019-08-25 15:58:37 2 3 2019-08-25 16:08:37 2 3 2019-08-25 16:18:37 2 3 2019-08-25 16:33:37 2 5 2019-08-25 17:13:37 2 3 2019-08-25 17:28:37 2 1 2019-08-25 18:13:37 2 3 2019-08-25 19:08:37 2 5 2019-08-25 19:13:37 2 5 2019-08-25 19:48:37 2 1 2019-08-25 19:58:37 2 3 2019-08-25 20:13:37 2 3 2019-08-25 20:23:37 2 5 2019-08-25 20:33:37 1 1 2019-08-25 20:33:37 2 4 2019-08-25 20:48:37 1 1 2019-08-25 20:48:37 2 2 2019-08-25 21:03:37 1 1 2019-08-25 21:03:37 2 4 2019-08-25 21:13:37 1 1 2019-08-25 21:13:37 2 4 2019-08-25 21:38:37 1 1 2019-08-25 21:38:37 2 4 2019-08-25 21:43:37 2 3 2019-08-25 22:13:37 1 1 2019-08-25 22:13:37 2 4 2019-08-25 22:28:37 1 1 2019-08-25 22:28:37 2 2 2019-08-25 23:03:37 1 1 2019-08-25 23:03:37 2 4 2019-08-25 23:23:37 2 3 2019-08-25 23:33:37 2 3 2019-08-25 23:58:37 2 3 2019-08-26 00:28:37 2 1 2019-08-26 01:03:37 2 3 2019-08-26 01:13:37 2 3 2019-08-26 01:18:37 2 5 2019-08-26 01:23:37 2 3 2019-08-26 01:58:37 2 3 2019-08-26 02:13:37 2 1 2019-08-26 02:23:37 2 1 2019-08-26 02:33:37 2 1 2019-08-26 02:48:37 2 1 2019-08-26 03:23:37 2 1 2019-08-26 03:53:37 2 1 2019-08-26 04:03:37 2 1 2019-08-26 04:13:37 2 1 2019-08-26 06:58:37 2 2 2019-08-26 07:08:37 2 2 2019-08-26 07:18:37 2 2 2019-08-26 07:28:37 2 2 2019-08-26 07:43:37 1 1 2019-08-26 07:48:37 1 1 2019-08-26 07:53:37 1 1 2019-08-26 08:03:37 1 1 2019-08-26 08:13:37 1 1 2019-08-26 08:23:37 2 1 2019-08-26 08:48:37 1 1 2019-08-26 08:53:37 1 1 2019-08-26 08:53:37 2 2 2019-08-26 08:58:37 1 1 2019-08-26 09:08:37 2 1 2019-08-24 14:23:37 1 1 2019-08-24 14:23:37 2 9 2019-08-24 14:43:37 1 1 2019-08-24 14:43:37 2 5 2019-08-24 14:48:37 1 1 2019-08-24 14:48:37 2 5 2019-08-24 15:28:37 2 6 2019-08-24 15:43:37 2 4 2019-08-24 16:53:37 2 2 2019-08-24 17:03:37 2 2 2019-08-24 17:33:37 2 6 2019-08-24 17:43:37 1 1 2019-08-24 17:43:37 2 5 2019-08-24 17:58:37 2 6 2019-08-24 18:23:37 1 1 2019-08-24 18:23:37 2 7 2019-08-24 18:48:37 1 1 2019-08-24 18:48:37 2 5 2019-08-24 18:58:37 1 1 2019-08-24 18:58:37 2 5 2019-08-24 19:28:37 1 1 2019-08-24 19:28:37 2 5 2019-08-24 19:38:37 1 1 2019-08-24 19:38:37 2 5 2019-08-24 19:43:37 1 1 2019-08-24 19:43:37 2 3 2019-08-24 19:53:37 1 1 2019-08-24 19:53:37 2 5 2019-08-24 20:23:37 2 4 2019-08-24 20:38:37 2 2 2019-08-24 20:48:37 2 2 2019-08-24 20:58:37 2 4 2019-08-24 21:23:37 1 1 2019-08-24 21:23:37 2 5 2019-08-24 21:58:37 1 1 2019-08-24 21:58:37 2 6 2019-08-24 22:18:37 1 1 2019-08-24 22:18:37 2 6 2019-08-24 22:23:37 1 1 2019-08-24 22:23:37 2 8 2019-08-24 22:28:37 1 1 2019-08-24 22:28:37 2 8 2019-08-24 22:33:37 1 1 2019-08-24 22:33:37 2 8 2019-08-24 22:48:37 1 1 2019-08-24 22:48:37 2 8 2019-08-24 22:53:37 1 2 2019-08-24 22:53:37 2 7 2019-08-24 22:58:37 1 2 2019-08-24 22:58:37 2 5 2019-08-24 23:18:37 1 1 2019-08-24 23:18:37 2 4 2019-08-24 23:28:37 1 1 2019-08-24 23:28:37 2 4 2019-08-24 23:33:37 1 1 2019-08-24 23:33:37 2 6 2019-08-24 23:43:37 1 1 2019-08-24 23:43:37 2 6 2019-08-25 00:13:37 2 7 2019-08-25 00:23:37 2 7 2019-08-25 00:38:37 2 5 2019-08-25 00:58:37 2 5 2019-08-25 01:38:37 2 1 2019-08-25 01:53:37 2 3 2019-08-25 01:58:37 2 3 2019-08-25 02:18:37 2 3 2019-08-25 02:58:37 2 2 2019-08-25 03:08:37 2 2 2019-08-25 03:13:37 2 4 2019-08-25 03:38:37 2 2 2019-08-25 04:08:37 2 1 2019-08-25 04:18:37 2 1 2019-08-25 04:28:37 2 1 2019-08-25 04:38:37 2 1 2019-08-25 04:53:37 2 2 2019-08-25 05:03:37 2 2 2019-08-25 05:13:37 2 2 2019-08-25 05:23:37 2 2 2019-08-25 07:33:37 1 1 2019-08-25 07:33:37 2 1 2019-08-25 07:53:37 1 1 2019-08-25 07:53:37 2 3 2019-08-25 08:08:37 1 1 2019-08-25 08:08:37 2 5 2019-08-25 08:58:37 1 1 2019-08-25 08:58:37 2 2 2019-08-25 09:03:37 1 1 2019-08-25 09:03:37 2 2 2019-08-25 09:13:37 1 1 2019-08-25 09:13:37 2 2 2019-08-25 09:28:37 1 1 2019-08-25 09:28:37 2 2 2019-08-25 10:08:37 1 2 2019-08-25 10:08:37 2 4 2019-08-25 11:08:37 1 2 2019-08-25 11:08:37 2 4 2019-08-25 11:23:37 1 1 2019-08-25 11:23:37 2 3 2019-08-25 11:33:37 1 1 2019-08-25 11:33:37 2 5 2019-08-25 11:53:37 1 1 2019-08-25 11:53:37 2 5 2019-08-25 12:23:37 1 1 2019-08-25 12:23:37 2 5 2019-08-25 12:48:37 1 1 2019-08-25 12:48:37 2 3 2019-08-25 13:28:37 2 2 2019-08-25 13:38:37 2 2 2019-08-25 13:48:37 2 2 2019-08-25 13:58:37 2 2 2019-08-25 14:43:37 1 1 2019-08-25 14:43:37 2 3 2019-08-25 15:18:37 2 2 2019-08-25 15:53:37 2 4 2019-08-25 16:43:37 2 4 2019-08-25 16:53:37 2 6 2019-08-25 17:23:37 2 2 2019-08-25 18:03:37 2 2 2019-08-25 18:18:37 2 4 2019-08-25 18:38:37 2 6 2019-08-25 18:48:37 2 6 2019-08-25 19:23:37 2 4 2019-08-25 19:33:37 2 2 2019-08-25 19:53:37 2 2 2019-08-25 20:08:37 2 4 2019-08-25 20:18:37 2 4 2019-08-25 21:08:37 1 1 2019-08-25 21:08:37 2 5 2019-08-25 21:23:37 1 1 2019-08-25 21:23:37 2 3 2019-08-25 21:48:37 2 4 2019-08-25 22:08:37 1 1 2019-08-25 22:08:37 2 3 2019-08-25 22:53:37 1 1 2019-08-25 22:53:37 2 3 2019-08-25 23:18:37 1 1 2019-08-25 23:18:37 2 3 2019-08-25 23:28:37 2 4 2019-08-25 23:38:37 2 4 2019-08-25 23:53:37 2 4 2019-08-26 00:18:37 1 1 2019-08-26 00:18:37 2 3 2019-08-26 00:23:37 2 2 2019-08-26 00:43:37 2 2 2019-08-26 00:53:38 2 2 2019-08-26 01:28:37 2 4 2019-08-26 02:43:37 2 2 2019-08-26 02:53:37 2 2 2019-08-26 03:03:37 2 2 2019-08-26 03:08:37 2 2 2019-08-26 04:08:37 2 1 2019-08-26 06:53:37 2 2 2019-08-26 07:03:37 2 2 2019-08-26 07:13:37 2 2 2019-08-26 07:23:37 2 2 2019-08-26 07:33:37 2 2 2019-08-26 08:33:37 1 1 2019-08-26 08:33:37 2 1 2019-08-26 09:18:37 1 1 2019-08-26 09:18:37 2 1 2019-08-26 09:23:37 1 1 2019-08-26 09:23:37 2 4 2019-08-26 09:33:37 2 4 2019-08-26 09:38:37 2 5 2019-08-26 09:48:37 1 1 2019-08-26 09:48:37 2 5 2019-08-26 09:53:37 1 1 2019-08-26 09:53:37 2 4 2019-08-26 09:58:37 1 1 2019-08-26 09:58:37 2 4 2019-08-26 10:13:37 1 1 2019-08-26 10:13:37 2 5 2019-08-26 10:18:37 1 2 2019-08-26 10:18:37 2 4 2019-08-26 10:33:37 1 2 2019-08-26 10:33:37 2 5 2019-08-26 10:38:37 1 2 2019-08-26 10:38:37 2 5 2019-08-26 10:53:37 1 1 2019-08-26 10:53:37 2 5 2019-08-26 11:13:37 1 1 2019-08-26 11:13:37 2 5 2019-08-26 11:18:37 1 1 2019-08-26 11:18:37 2 6 2019-08-26 11:28:37 1 2 2019-08-24 14:28:37 1 1 2019-08-24 14:28:37 2 9 2019-08-24 14:38:37 1 1 2019-08-24 14:38:37 2 9 2019-08-24 15:13:37 1 1 2019-08-24 15:13:37 2 5 2019-08-24 15:18:37 2 6 2019-08-24 15:38:37 2 4 2019-08-24 16:03:37 2 4 2019-08-24 16:08:37 2 6 2019-08-24 16:58:37 2 2 2019-08-24 17:13:37 2 4 2019-08-24 17:23:37 2 4 2019-08-24 17:28:37 2 6 2019-08-24 17:48:37 1 1 2019-08-24 17:48:37 2 5 2019-08-24 18:33:37 1 1 2019-08-24 18:33:37 2 5 2019-08-24 19:08:37 1 1 2019-08-24 19:08:37 2 6 2019-08-24 19:13:37 1 1 2019-08-24 19:13:37 2 6 2019-08-24 19:33:37 1 1 2019-08-24 19:33:37 2 6 2019-08-24 20:08:37 1 1 2019-08-24 20:08:37 2 4 2019-08-24 20:18:37 2 5 2019-08-24 20:33:37 2 3 2019-08-24 21:33:37 1 1 2019-08-24 21:33:37 2 5 2019-08-24 21:43:37 1 1 2019-08-24 21:43:37 2 7 2019-08-24 21:48:37 1 1 2019-08-24 21:48:37 2 5 2019-08-24 23:53:37 1 1 2019-08-24 23:53:37 2 7 2019-08-25 00:08:37 1 1 2019-08-25 00:08:37 2 7 2019-08-25 00:43:37 2 2 2019-08-25 01:13:37 2 2 2019-08-25 01:23:37 2 2 2019-08-25 01:33:37 2 2 2019-08-25 01:43:37 2 2 2019-08-25 02:08:37 2 2 2019-08-25 02:23:37 2 4 2019-08-25 02:38:37 2 2 2019-08-25 02:48:37 2 2 2019-08-25 03:23:37 2 3 2019-08-25 03:48:37 2 1 2019-08-25 03:58:37 2 1 2019-08-25 04:48:37 2 1 2019-08-25 05:58:37 2 1 2019-08-25 06:08:37 2 1 2019-08-25 06:18:37 2 1 2019-08-25 06:38:37 2 1 2019-08-25 06:48:37 2 1 2019-08-25 06:58:37 2 1 2019-08-25 07:43:37 1 1 2019-08-25 07:43:37 2 2 2019-08-25 08:03:37 1 1 2019-08-25 08:03:37 2 4 2019-08-25 08:23:37 1 1 2019-08-25 08:23:37 2 5 2019-08-25 08:48:37 1 1 2019-08-25 08:48:37 2 2 2019-08-25 09:08:37 1 1 2019-08-25 09:08:37 2 4 2019-08-25 10:03:37 1 2 2019-08-25 10:03:37 2 2 2019-08-25 10:33:37 1 2 2019-08-25 10:33:37 2 4 2019-08-25 10:53:37 1 2 2019-08-25 10:53:37 2 4 2019-08-25 10:58:37 1 2 2019-08-25 10:58:37 2 4 2019-08-25 11:03:37 1 2 2019-08-25 11:03:37 2 4 2019-08-25 11:13:37 1 2 2019-08-25 11:13:37 2 4 2019-08-25 11:18:37 1 1 2019-08-25 11:18:37 2 3 2019-08-25 11:28:37 1 2 2019-08-25 11:28:37 2 4 2019-08-25 11:48:37 1 1 2019-08-25 11:48:37 2 5 2019-08-25 12:13:37 1 1 2019-08-25 12:13:37 2 5 2019-08-25 12:53:37 1 1 2019-08-25 12:53:37 2 3 2019-08-25 13:03:37 2 4 2019-08-25 13:23:37 2 2 2019-08-25 13:33:37 2 2 2019-08-25 14:03:37 2 2 2019-08-25 14:13:37 1 1 2019-08-25 14:13:37 2 3 2019-08-25 14:18:37 1 1 2019-08-25 14:18:37 2 1 2019-08-25 14:48:37 2 4 2019-08-25 15:03:37 2 2 2019-08-25 15:13:37 2 2 2019-08-25 15:23:37 2 2 2019-08-25 15:33:37 2 2 2019-08-25 15:43:37 2 2 2019-08-25 16:38:37 2 4 2019-08-25 16:48:37 2 4 2019-08-25 16:58:37 2 6 2019-08-25 18:08:37 2 2 2019-08-25 18:23:37 2 4 2019-08-25 18:28:37 2 6 2019-08-25 19:18:37 2 4 2019-08-25 19:38:37 2 2 2019-08-25 20:03:37 2 4 2019-08-25 20:58:37 1 1 2019-08-25 20:58:37 2 3 2019-08-25 21:28:37 1 1 2019-08-25 21:28:37 2 3 2019-08-25 21:53:37 1 1 2019-08-25 21:53:37 2 5 2019-08-25 22:18:37 1 1 2019-08-25 22:18:37 2 3 2019-08-25 22:33:37 1 1 2019-08-25 22:33:37 2 3 2019-08-25 22:38:37 1 1 2019-08-25 22:38:37 2 3 2019-08-25 22:43:37 1 1 2019-08-25 22:43:37 2 5 2019-08-25 22:48:37 1 1 2019-08-25 22:48:37 2 5 2019-08-25 23:43:37 2 6 2019-08-26 00:03:37 2 4 2019-08-26 00:13:37 1 1 2019-08-26 00:13:37 2 3 2019-08-26 00:38:37 2 2 2019-08-26 00:48:37 2 2 2019-08-26 01:33:37 2 4 2019-08-26 01:43:37 2 4 2019-08-26 01:48:37 2 2 2019-08-26 02:38:37 2 2 2019-08-26 02:58:37 2 2 2019-08-26 03:13:37 2 2 2019-08-26 06:43:37 2 1 2019-08-26 07:38:37 1 1 2019-08-26 07:38:37 2 1 2019-08-26 08:43:37 1 1 2019-08-26 08:43:37 2 1 2019-08-26 09:03:37 1 1 2019-08-26 09:03:37 2 1 2019-08-26 09:13:37 2 2 2019-08-26 09:43:37 1 1 2019-08-26 09:43:37 2 5 2019-08-26 10:03:37 1 1 2019-08-26 10:03:37 2 5 2019-08-26 10:08:37 1 1 2019-08-26 10:08:37 2 5 2019-08-26 10:23:37 1 2 2019-08-26 10:23:37 2 4 2019-08-26 10:28:37 1 2 2019-08-26 10:28:37 2 6 2019-08-26 11:08:37 1 1 2019-08-26 11:08:37 2 5 2019-08-26 11:28:37 2 6 2019-08-26 11:38:37 1 1 2019-08-26 11:38:37 2 8 2019-08-26 11:43:37 1 1 2019-08-26 11:43:37 2 6 2019-08-26 11:48:37 1 1 2019-08-26 11:48:37 2 5 2019-08-26 11:58:37 1 2 2019-08-26 11:58:37 2 3 2019-08-26 12:03:37 1 2 2019-08-26 12:03:37 2 3 2019-08-26 12:13:37 1 2 2019-08-26 12:13:37 2 6 2019-08-26 12:23:37 1 2 2019-08-26 12:23:37 2 7 2019-08-26 12:28:37 1 2 2019-08-26 12:28:37 2 7 2019-08-26 12:33:37 1 2 2019-08-26 12:33:37 2 5 2019-08-26 12:38:37 1 1 2019-08-26 12:38:37 2 4 2019-08-26 12:43:37 2 3 2019-08-26 12:48:37 2 3 2019-08-26 12:53:37 2 3 2019-08-26 12:58:37 2 1 2019-08-24 14:33:37 1 1 2019-08-24 14:33:37 2 10 2019-08-24 14:53:37 1 1 2019-08-24 14:53:37 2 8 2019-08-24 14:58:37 2 5 2019-08-24 15:23:37 2 7 2019-08-24 15:33:37 2 5 2019-08-24 15:48:37 1 1 2019-08-24 15:48:37 2 4 2019-08-24 15:58:37 1 1 2019-08-24 15:58:37 2 4 2019-08-24 16:18:37 2 5 2019-08-24 16:23:37 2 3 2019-08-24 16:33:37 2 3 2019-08-24 16:43:37 2 3 2019-08-24 17:38:37 2 5 2019-08-24 18:03:37 1 1 2019-08-24 18:03:37 2 8 2019-08-24 18:13:37 1 1 2019-08-24 18:13:37 2 8 2019-08-24 18:28:37 1 1 2019-08-24 18:28:37 2 6 2019-08-24 19:03:37 1 1 2019-08-24 19:03:37 2 6 2019-08-24 19:18:37 1 1 2019-08-24 19:18:37 2 6 2019-08-24 19:58:37 1 1 2019-08-24 19:58:37 2 4 2019-08-24 20:13:37 2 5 2019-08-24 20:28:37 2 3 2019-08-24 21:08:37 2 5 2019-08-24 21:13:37 2 5 2019-08-24 21:18:37 1 1 2019-08-24 21:18:37 2 4 2019-08-24 21:28:37 1 1 2019-08-24 21:28:37 2 5 2019-08-24 21:38:37 1 1 2019-08-24 21:38:37 2 5 2019-08-24 22:03:37 1 1 2019-08-24 22:03:37 2 5 2019-08-24 22:08:37 1 1 2019-08-24 22:08:37 2 5 2019-08-24 23:03:37 1 1 2019-08-24 23:03:37 2 5 2019-08-24 23:38:37 1 1 2019-08-24 23:38:37 2 5 2019-08-24 23:48:37 1 1 2019-08-24 23:48:37 2 7 2019-08-24 23:58:37 1 1 2019-08-24 23:58:37 2 7 2019-08-25 00:03:37 1 1 2019-08-25 00:03:37 2 7 2019-08-25 00:28:37 2 6 2019-08-25 00:48:37 2 2 2019-08-25 00:53:37 2 4 2019-08-25 01:18:37 2 2 2019-08-25 02:13:37 2 2 2019-08-25 02:28:37 2 4 2019-08-25 02:43:37 2 2 2019-08-25 03:18:37 2 3 2019-08-25 03:28:37 2 3 2019-08-25 03:43:37 2 1 2019-08-25 03:53:37 2 1 2019-08-25 05:33:37 2 1 2019-08-25 06:03:37 2 1 2019-08-25 06:13:37 2 1 2019-08-25 06:23:37 2 1 2019-08-25 06:33:37 2 1 2019-08-25 06:43:37 2 1 2019-08-25 06:53:37 2 1 2019-08-25 07:23:37 1 1 2019-08-25 07:48:37 1 1 2019-08-25 07:48:37 2 2 2019-08-25 08:13:37 1 1 2019-08-25 08:13:37 2 5 2019-08-25 08:18:37 1 1 2019-08-25 08:18:37 2 5 2019-08-25 09:23:37 1 1 2019-08-25 09:23:37 2 3 2019-08-25 09:33:37 1 1 2019-08-25 09:33:37 2 2 2019-08-25 09:58:37 1 1 2019-08-25 09:58:37 2 2 2019-08-25 10:23:37 1 2 2019-08-25 10:23:37 2 3 2019-08-25 10:43:37 1 2 2019-08-25 10:43:37 2 5 2019-08-25 12:08:37 1 1 2019-08-25 12:08:37 2 4 2019-08-25 12:18:37 1 1 2019-08-25 12:18:37 2 6 2019-08-25 12:28:37 1 1 2019-08-25 12:28:37 2 6 2019-08-25 12:33:37 1 1 2019-08-25 12:33:37 2 4 2019-08-25 12:43:37 1 1 2019-08-25 12:43:37 2 4 2019-08-25 13:08:37 2 5 2019-08-25 13:18:37 2 1 2019-08-25 13:53:37 2 3 2019-08-25 14:23:37 1 1 2019-08-25 14:23:37 2 2 2019-08-25 14:33:37 1 1 2019-08-25 14:33:37 2 2 2019-08-25 14:38:37 1 1 2019-08-25 14:38:37 2 4 2019-08-25 14:53:37 2 3 2019-08-25 15:08:37 2 1 2019-08-25 15:28:37 2 1 2019-08-25 15:38:37 2 1 2019-08-25 16:03:37 2 3 2019-08-25 16:13:37 2 3 2019-08-25 16:23:37 2 3 2019-08-25 16:28:37 2 5 2019-08-25 17:03:37 2 5 2019-08-25 17:08:37 2 3 2019-08-25 17:18:37 2 3 2019-08-25 18:33:37 2 5 2019-08-25 18:43:37 2 7 2019-08-25 18:53:37 2 7 2019-08-25 18:58:37 2 5 2019-08-25 19:03:37 2 7 2019-08-25 19:28:37 2 3 2019-08-25 19:43:37 2 1 2019-08-25 20:28:37 1 1 2019-08-25 20:28:37 2 4 2019-08-25 20:38:37 1 1 2019-08-25 20:38:37 2 4 2019-08-25 20:43:37 1 1 2019-08-25 20:43:37 2 2 2019-08-25 20:53:37 1 1 2019-08-25 20:53:37 2 2 2019-08-25 21:18:37 1 1 2019-08-25 21:18:37 2 4 2019-08-25 21:33:37 2 3 2019-08-25 21:58:37 1 1 2019-08-25 21:58:37 2 6 2019-08-25 22:03:37 1 1 2019-08-25 22:03:37 2 4 2019-08-25 22:23:37 1 1 2019-08-25 22:23:37 2 2 2019-08-25 22:58:37 1 1 2019-08-25 22:58:37 2 4 2019-08-25 23:08:37 1 1 2019-08-25 23:08:37 2 4 2019-08-25 23:13:37 1 1 2019-08-25 23:13:37 2 4 2019-08-25 23:48:37 2 5 2019-08-26 00:08:37 1 1 2019-08-26 00:08:37 2 2 2019-08-26 00:33:37 2 1 2019-08-26 00:58:37 2 3 2019-08-26 01:08:37 2 3 2019-08-26 01:38:37 2 3 2019-08-26 01:53:37 2 3 2019-08-26 02:03:37 2 3 2019-08-26 02:08:37 2 1 2019-08-26 03:58:37 2 1 2019-08-26 06:48:37 2 1 2019-08-26 07:58:37 1 1 2019-08-26 08:08:37 1 1 2019-08-26 08:18:37 2 1 2019-08-26 08:28:37 2 1 2019-08-26 08:38:37 1 1 2019-08-26 08:38:37 2 2 2019-08-26 09:28:37 1 1 2019-08-26 09:28:37 2 6 2019-08-26 10:43:37 1 2 2019-08-26 10:43:37 2 5 2019-08-26 10:48:37 1 1 2019-08-26 10:48:37 2 4 2019-08-26 10:58:37 1 1 2019-08-26 10:58:37 2 6 2019-08-26 11:03:37 1 1 2019-08-26 11:03:37 2 6 2019-08-26 11:23:37 1 1 2019-08-26 11:23:37 2 7 2019-08-26 11:33:37 1 2 2019-08-26 11:33:37 2 7 2019-08-26 11:53:37 1 1 2019-08-26 11:53:37 2 4 2019-08-26 12:08:37 1 2 2019-08-26 12:08:37 2 6 2019-08-26 12:18:37 1 2 2019-08-26 12:18:37 2 6 2019-08-26 13:03:37 2 2 2019-08-26 13:28:37 1 1 2019-08-26 13:28:37 2 3 2019-08-26 14:08:37 1 1 2019-08-26 14:08:37 2 3 2019-08-26 14:33:37 1 1 2019-08-26 14:33:37 2 5 2019-08-26 14:43:37 1 1 2019-08-26 14:43:37 2 5 2019-08-26 14:48:37 1 1 2019-08-26 14:48:37 2 5 2019-08-26 15:03:37 1 1 2019-08-26 15:03:37 2 7 2019-08-26 15:28:37 1 1 2019-08-26 15:28:37 2 5 2019-08-26 15:48:37 1 1 2019-08-26 15:48:37 2 5 2019-08-26 15:53:37 1 1 2019-08-26 15:53:37 2 3 2019-08-26 16:08:37 1 1 2019-08-26 16:08:37 2 5 2019-08-26 16:23:37 2 4 2019-08-26 16:28:37 1 1 2019-08-26 16:28:37 2 5 2019-08-26 16:38:37 1 1 2019-08-26 16:38:37 2 5 2019-08-26 16:43:37 1 2 2019-08-26 16:43:37 2 4 2019-08-26 16:48:37 1 2 2019-08-26 16:48:37 2 6 2019-08-26 17:08:37 1 2 2019-08-26 17:08:37 2 2 2019-08-26 17:13:37 1 2 2019-08-26 17:13:37 2 3 2019-08-26 17:38:37 1 1 2019-08-26 17:38:37 2 4 2019-08-26 18:03:37 1 1 2019-08-26 18:03:37 2 6 2019-08-26 18:13:37 2 7 2019-08-26 18:43:37 1 1 2019-08-26 18:43:37 2 4 2019-08-26 19:03:37 1 1 2019-08-26 19:03:37 2 6 2019-08-26 19:13:37 1 1 2019-08-26 19:13:37 2 6 2019-08-26 19:28:37 1 1 2019-08-26 19:28:37 2 4 2019-08-26 19:38:37 1 1 2019-08-26 19:38:37 2 4 2019-08-26 19:58:37 1 1 2019-08-26 19:58:37 2 4 2019-08-26 20:08:37 1 1 2019-08-26 20:08:37 2 4 2019-08-26 20:18:37 1 1 2019-08-26 20:18:37 2 4 2019-08-26 20:48:37 1 1 2019-08-26 20:48:37 2 4 2019-08-26 20:58:37 1 1 2019-08-26 20:58:37 2 4 2019-08-26 21:18:37 1 1 2019-08-26 21:18:37 2 8 2019-08-26 21:23:37 1 1 2019-08-26 21:23:37 2 6 2019-08-26 21:28:37 1 1 2019-08-26 21:28:37 2 8 2019-08-26 21:33:37 1 1 2019-08-26 21:33:37 2 8 2019-08-26 21:38:37 1 1 2019-08-26 21:38:37 2 6 2019-08-26 22:08:37 2 5 2019-08-26 22:28:37 2 5 2019-08-26 23:38:37 1 1 2019-08-26 23:38:37 2 7 2019-08-27 00:43:38 1 1 2019-08-27 00:43:38 2 5 2019-08-27 00:48:37 1 1 2019-08-27 00:48:37 2 5 2019-08-27 00:58:37 1 1 2019-08-27 00:58:37 2 5 2019-08-27 01:08:37 2 5 2019-08-27 01:23:37 1 1 2019-08-27 01:23:37 2 6 2019-08-27 01:33:37 1 1 2019-08-27 01:33:37 2 6 2019-08-27 01:43:37 2 3 2019-08-27 01:48:37 2 5 2019-08-27 01:58:37 2 5 2019-08-27 02:08:37 2 5 2019-08-27 02:18:37 2 5 2019-08-27 02:58:37 2 5 2019-08-27 03:08:37 2 5 2019-08-27 03:18:37 2 5 2019-08-27 03:58:37 2 3 2019-08-27 04:03:37 2 3 2019-08-27 04:43:37 2 3 2019-08-27 06:38:37 2 1 2019-08-27 06:48:37 2 1 2019-08-27 07:08:37 2 3 2019-08-27 07:18:37 2 3 2019-08-27 08:08:37 2 2 2019-08-27 09:28:37 1 1 2019-08-27 09:28:37 2 1 2019-08-27 09:48:37 1 1 2019-08-27 09:48:37 2 1 2019-08-27 10:08:37 1 1 2019-08-27 10:08:37 2 1 2019-08-27 10:28:37 1 1 2019-08-27 10:28:37 2 1 2019-08-27 11:48:37 2 5 2019-08-27 12:03:37 1 1 2019-08-27 12:03:37 2 4 2019-08-27 12:28:37 1 1 2019-08-27 12:28:37 2 6 2019-08-27 12:53:37 1 1 2019-08-27 12:53:37 2 6 2019-08-27 13:03:37 1 1 2019-08-27 13:03:37 2 6 2019-08-27 13:48:37 1 1 2019-08-27 13:48:37 2 4 2019-08-27 14:23:37 1 1 2019-08-27 14:23:37 2 7 2019-08-27 14:53:37 1 1 2019-08-27 14:53:37 2 5 2019-08-27 15:48:37 2 4 2019-08-27 15:58:37 2 4 2019-08-27 16:08:37 2 4 2019-08-27 16:13:37 2 6 2019-08-27 16:23:37 2 4 2019-08-27 16:33:37 2 4 2019-08-27 16:58:37 2 6 2019-08-27 17:18:37 2 4 2019-08-27 18:03:37 2 7 2019-08-27 18:13:37 2 7 2019-08-27 18:28:37 2 9 2019-08-27 18:38:37 2 7 2019-08-27 18:58:37 2 5 2019-08-27 19:18:37 2 9 2019-08-27 19:33:37 2 5 2019-08-27 20:53:37 1 1 2019-08-27 20:53:37 2 4 2019-08-27 21:03:37 1 1 2019-08-27 21:03:37 2 4 2019-08-27 21:53:37 1 2 2019-08-27 21:53:37 2 7 2019-08-27 22:23:37 1 2 2019-08-27 22:23:37 2 7 2019-08-27 22:43:37 1 2 2019-08-27 22:43:37 2 7 2019-08-27 22:48:37 1 1 2019-08-27 22:48:37 2 6 2019-08-27 23:58:37 2 3 2019-08-28 00:03:37 2 3 2019-08-28 00:13:37 2 3 2019-08-28 01:13:37 2 5 2019-08-28 01:28:37 2 5 2019-08-28 01:48:37 2 7 2019-08-28 01:53:37 2 7 2019-08-28 02:03:37 2 9 2019-08-28 02:08:37 2 9 2019-08-28 02:13:37 2 7 2019-08-28 02:18:37 2 5 2019-08-28 02:38:37 2 5 2019-08-28 03:18:37 2 5 2019-08-28 03:43:37 2 3 2019-08-28 04:03:37 2 2 2019-08-28 04:38:37 2 1 2019-08-28 04:53:37 1 1 2019-08-28 04:53:37 2 1 2019-08-28 05:03:37 1 1 2019-08-28 05:03:37 2 1 2019-08-28 05:13:37 1 1 2019-08-28 05:13:37 2 1 2019-08-28 05:23:37 1 1 2019-08-28 05:23:37 2 1 2019-08-28 05:33:37 2 1 2019-08-28 05:43:37 2 2 2019-08-28 05:53:37 2 2 2019-08-28 06:03:37 2 2 2019-08-28 06:13:37 2 2 2019-08-28 06:23:37 2 2 2019-08-28 06:33:37 2 2 2019-08-28 06:43:37 2 1 2019-08-28 06:53:37 2 1 2019-08-28 07:03:37 2 2 2019-08-28 07:18:37 2 3 2019-08-26 13:08:37 2 1 2019-08-26 13:13:37 2 3 2019-08-26 13:23:37 2 3 2019-08-26 13:38:37 1 1 2019-08-26 13:38:37 2 4 2019-08-26 14:13:37 2 3 2019-08-26 14:58:37 1 1 2019-08-26 14:58:37 2 6 2019-08-26 15:13:37 1 1 2019-08-26 15:13:37 2 6 2019-08-26 15:43:37 1 1 2019-08-26 15:43:37 2 4 2019-08-26 16:03:37 2 5 2019-08-26 16:53:37 1 2 2019-08-26 16:53:37 2 5 2019-08-26 16:58:37 1 2 2019-08-26 16:58:37 2 3 2019-08-26 17:23:37 1 2 2019-08-26 17:23:37 2 4 2019-08-26 17:48:37 1 1 2019-08-26 17:48:37 2 5 2019-08-26 18:18:37 2 6 2019-08-26 18:23:37 2 4 2019-08-26 18:33:37 2 4 2019-08-26 19:48:37 1 1 2019-08-26 19:48:37 2 5 2019-08-26 20:23:37 1 1 2019-08-26 20:23:37 2 5 2019-08-26 20:33:37 1 1 2019-08-26 20:33:37 2 5 2019-08-26 20:53:37 1 1 2019-08-26 20:53:37 2 3 2019-08-26 21:13:37 1 1 2019-08-26 21:13:37 2 7 2019-08-26 21:43:37 2 6 2019-08-26 21:53:37 2 8 2019-08-26 22:18:37 2 6 2019-08-26 22:43:37 2 4 2019-08-26 23:03:37 2 6 2019-08-26 23:13:37 2 5 2019-08-26 23:18:37 2 7 2019-08-26 23:43:37 1 1 2019-08-26 23:43:37 2 6 2019-08-27 00:03:37 1 1 2019-08-27 00:03:37 2 6 2019-08-27 00:13:37 1 1 2019-08-27 00:13:37 2 6 2019-08-27 00:23:37 1 1 2019-08-27 00:23:37 2 6 2019-08-27 00:33:37 1 1 2019-08-27 00:33:37 2 6 2019-08-27 00:53:37 1 1 2019-08-27 00:53:37 2 4 2019-08-27 02:28:37 2 6 2019-08-27 02:38:37 2 6 2019-08-27 02:48:37 2 6 2019-08-27 03:23:37 2 4 2019-08-27 03:33:37 2 4 2019-08-27 03:38:37 2 4 2019-08-27 03:48:37 2 4 2019-08-27 04:08:37 2 4 2019-08-27 04:18:37 2 4 2019-08-27 04:28:37 2 4 2019-08-27 04:53:37 2 2 2019-08-27 05:03:37 2 2 2019-08-27 05:13:37 2 2 2019-08-27 05:23:37 2 2 2019-08-27 05:33:37 2 2 2019-08-27 05:43:37 2 2 2019-08-27 05:53:37 2 2 2019-08-27 06:03:37 2 2 2019-08-27 06:13:37 2 2 2019-08-27 06:23:37 2 2 2019-08-27 07:28:37 2 2 2019-08-27 08:48:37 1 1 2019-08-27 08:48:37 2 2 2019-08-27 08:58:37 1 1 2019-08-27 08:58:37 2 2 2019-08-27 09:08:37 1 1 2019-08-27 09:08:37 2 2 2019-08-27 09:58:37 1 1 2019-08-27 09:58:37 2 2 2019-08-27 10:58:37 2 6 2019-08-27 11:13:37 2 4 2019-08-27 11:33:37 2 4 2019-08-27 11:53:37 1 1 2019-08-27 11:53:37 2 5 2019-08-27 12:13:37 1 1 2019-08-27 12:13:37 2 5 2019-08-27 12:48:37 1 1 2019-08-27 12:48:37 2 7 2019-08-27 13:38:37 1 1 2019-08-27 13:38:37 2 5 2019-08-27 14:03:37 2 6 2019-08-27 14:08:37 1 1 2019-08-27 14:08:37 2 6 2019-08-27 14:33:37 1 1 2019-08-27 14:33:37 2 4 2019-08-27 14:58:37 1 1 2019-08-27 14:58:37 2 4 2019-08-27 15:13:37 1 1 2019-08-27 15:13:37 2 6 2019-08-27 15:23:37 1 1 2019-08-27 15:23:37 2 6 2019-08-27 15:33:37 1 1 2019-08-27 15:33:37 2 6 2019-08-27 16:03:37 2 3 2019-08-27 16:53:37 2 5 2019-08-27 17:08:37 2 5 2019-08-27 17:23:37 2 3 2019-08-27 17:33:37 2 4 2019-08-27 18:08:37 2 6 2019-08-27 18:23:37 2 8 2019-08-27 18:33:37 2 8 2019-08-27 19:23:37 2 6 2019-08-27 19:28:37 2 8 2019-08-27 19:43:37 2 6 2019-08-27 19:48:37 1 1 2019-08-27 19:48:37 2 7 2019-08-27 20:03:37 2 6 2019-08-27 20:18:37 1 1 2019-08-27 20:18:37 2 7 2019-08-27 21:13:37 1 1 2019-08-27 21:13:37 2 3 2019-08-27 21:18:37 1 1 2019-08-27 21:18:37 2 3 2019-08-27 21:28:37 1 2 2019-08-27 21:28:37 2 4 2019-08-27 21:33:37 1 2 2019-08-27 21:33:37 2 4 2019-08-27 21:58:37 1 2 2019-08-27 21:58:37 2 6 2019-08-27 22:08:37 1 2 2019-08-27 22:08:37 2 8 2019-08-27 22:28:37 1 2 2019-08-27 22:28:37 2 6 2019-08-27 22:38:37 1 2 2019-08-27 22:38:37 2 6 2019-08-27 23:03:37 1 1 2019-08-27 23:03:37 2 7 2019-08-27 23:08:37 1 1 2019-08-27 23:08:37 2 7 2019-08-27 23:13:37 1 1 2019-08-27 23:13:37 2 5 2019-08-27 23:23:37 1 1 2019-08-27 23:23:37 2 5 2019-08-27 23:33:37 2 8 2019-08-28 00:23:37 2 4 2019-08-28 00:38:37 2 4 2019-08-28 00:58:37 1 1 2019-08-28 00:58:37 2 5 2019-08-28 01:08:37 2 4 2019-08-28 01:18:37 2 4 2019-08-28 01:23:37 2 4 2019-08-28 02:23:37 2 4 2019-08-28 02:33:37 2 4 2019-08-28 02:48:37 2 6 2019-08-28 02:53:37 2 4 2019-08-28 03:03:37 2 4 2019-08-28 03:33:37 2 4 2019-08-28 03:58:37 2 2 2019-08-28 04:08:37 2 2 2019-08-28 04:18:37 2 2 2019-08-28 04:48:37 1 1 2019-08-28 04:48:37 2 1 2019-08-28 04:58:37 1 1 2019-08-28 04:58:37 2 1 2019-08-28 05:08:37 1 1 2019-08-28 05:08:37 2 1 2019-08-28 05:28:37 2 1 2019-08-28 05:38:37 2 1 2019-08-28 06:28:37 2 2 2019-08-28 06:38:37 2 2 2019-08-28 06:48:37 2 1 2019-08-28 06:58:37 2 2 2019-08-28 07:08:37 2 2 2019-08-28 07:13:37 2 3 2019-08-28 07:23:37 2 3 2019-08-28 07:28:37 2 2 2019-08-28 07:33:37 2 3 2019-08-28 07:48:37 1 1 2019-08-28 07:48:37 2 1 2019-08-28 07:53:37 1 1 2019-08-28 07:53:37 2 1 2019-08-28 07:58:37 1 1 2019-08-26 13:18:37 2 2 2019-08-26 13:43:37 1 1 2019-08-26 13:43:37 2 3 2019-08-26 14:23:37 1 1 2019-08-26 14:23:37 2 3 2019-08-26 14:28:37 1 1 2019-08-26 14:28:37 2 5 2019-08-26 14:38:37 1 1 2019-08-26 14:38:37 2 5 2019-08-26 14:53:37 1 1 2019-08-26 14:53:37 2 5 2019-08-26 15:33:37 1 1 2019-08-26 15:33:37 2 5 2019-08-26 15:38:37 1 1 2019-08-26 15:38:37 2 3 2019-08-26 16:13:37 1 1 2019-08-26 16:13:37 2 5 2019-08-26 17:18:37 1 2 2019-08-26 17:18:37 2 3 2019-08-26 17:43:37 1 1 2019-08-26 17:43:37 2 4 2019-08-26 17:53:37 1 1 2019-08-26 17:53:37 2 4 2019-08-26 17:58:37 1 1 2019-08-26 17:58:37 2 6 2019-08-26 18:28:37 2 3 2019-08-26 18:38:37 2 3 2019-08-26 18:48:37 1 1 2019-08-26 18:48:37 2 4 2019-08-26 18:53:37 1 1 2019-08-26 18:53:37 2 4 2019-08-26 19:08:37 1 1 2019-08-26 19:08:37 2 6 2019-08-26 19:18:37 1 1 2019-08-26 19:18:37 2 6 2019-08-26 19:33:37 1 1 2019-08-26 19:33:37 2 4 2019-08-26 19:43:37 1 1 2019-08-26 19:43:37 2 4 2019-08-26 20:13:37 1 1 2019-08-26 20:13:37 2 4 2019-08-26 20:28:37 1 1 2019-08-26 20:28:37 2 4 2019-08-26 20:43:37 1 1 2019-08-26 20:43:37 2 4 2019-08-26 21:58:37 2 7 2019-08-26 22:03:37 2 5 2019-08-26 22:33:37 2 5 2019-08-26 22:53:37 1 1 2019-08-26 22:53:37 2 6 2019-08-26 22:58:37 1 1 2019-08-26 22:58:37 2 6 2019-08-26 23:08:37 2 5 2019-08-26 23:23:37 2 6 2019-08-26 23:28:37 1 1 2019-08-26 23:28:37 2 7 2019-08-27 00:38:37 1 1 2019-08-27 00:38:37 2 5 2019-08-27 01:53:37 2 5 2019-08-27 02:03:37 2 5 2019-08-27 02:13:37 2 5 2019-08-27 02:23:37 2 5 2019-08-27 02:53:37 2 5 2019-08-27 03:03:37 2 5 2019-08-27 03:13:37 2 5 2019-08-27 04:13:37 2 4 2019-08-27 04:23:37 2 4 2019-08-27 04:33:37 2 4 2019-08-27 04:58:37 2 2 2019-08-27 05:08:37 2 2 2019-08-27 05:18:37 2 2 2019-08-27 05:28:37 2 2 2019-08-27 05:38:37 2 2 2019-08-27 05:48:37 2 2 2019-08-27 05:58:37 2 2 2019-08-27 06:08:37 2 2 2019-08-27 06:18:37 2 2 2019-08-27 06:28:37 2 2 2019-08-27 06:58:37 2 2 2019-08-27 07:03:37 2 2 2019-08-27 07:33:37 2 2 2019-08-27 08:43:37 1 1 2019-08-27 08:43:37 2 1 2019-08-27 09:18:37 1 1 2019-08-27 09:18:37 2 3 2019-08-27 10:03:37 1 1 2019-08-27 10:03:37 2 1 2019-08-27 10:13:37 1 1 2019-08-27 10:13:37 2 1 2019-08-27 10:38:37 1 1 2019-08-27 10:38:37 2 3 2019-08-27 10:43:37 1 1 2019-08-27 10:43:37 2 4 2019-08-27 10:53:38 2 5 2019-08-27 11:03:37 2 5 2019-08-27 11:18:37 2 3 2019-08-27 11:28:37 2 3 2019-08-27 11:38:37 2 3 2019-08-27 12:23:37 1 1 2019-08-27 12:23:37 2 6 2019-08-27 12:33:37 1 1 2019-08-27 12:33:37 2 6 2019-08-27 12:38:37 1 1 2019-08-27 12:38:37 2 8 2019-08-27 12:58:37 1 1 2019-08-27 12:58:37 2 6 2019-08-27 13:13:37 1 1 2019-08-27 13:13:37 2 6 2019-08-27 13:18:37 1 1 2019-08-27 13:18:37 2 4 2019-08-27 13:33:37 1 1 2019-08-27 13:33:37 2 4 2019-08-27 13:43:37 1 1 2019-08-27 13:43:37 2 4 2019-08-27 13:53:37 2 5 2019-08-27 13:58:37 2 5 2019-08-27 14:48:37 1 1 2019-08-27 14:48:37 2 7 2019-08-27 15:08:37 1 1 2019-08-27 15:08:37 2 5 2019-08-27 15:28:37 1 1 2019-08-27 15:28:37 2 5 2019-08-27 15:38:37 1 1 2019-08-27 15:38:37 2 5 2019-08-27 15:53:37 2 4 2019-08-27 16:18:37 2 4 2019-08-27 16:28:37 2 4 2019-08-27 16:38:37 2 4 2019-08-27 16:48:37 2 4 2019-08-27 17:13:37 2 4 2019-08-27 17:28:37 2 2 2019-08-27 17:38:37 2 3 2019-08-27 17:43:37 2 5 2019-08-27 17:53:37 2 5 2019-08-27 17:58:37 2 7 2019-08-27 18:18:37 2 7 2019-08-27 18:43:37 2 7 2019-08-27 18:48:37 2 7 2019-08-27 18:53:37 2 5 2019-08-27 19:03:37 2 5 2019-08-27 19:13:37 2 9 2019-08-27 19:38:37 2 9 2019-08-27 19:53:37 1 1 2019-08-27 19:53:37 2 6 2019-08-27 20:08:37 2 5 2019-08-27 20:23:37 1 1 2019-08-27 20:23:37 2 6 2019-08-27 20:33:37 1 1 2019-08-27 20:33:37 2 6 2019-08-27 20:43:37 1 1 2019-08-27 20:43:37 2 6 2019-08-27 20:58:37 1 1 2019-08-27 20:58:37 2 4 2019-08-27 21:38:37 1 2 2019-08-27 21:38:37 2 5 2019-08-27 21:43:37 1 2 2019-08-27 21:43:37 2 5 2019-08-27 22:13:37 1 2 2019-08-27 22:13:37 2 7 2019-08-27 22:53:37 1 1 2019-08-27 22:53:37 2 6 2019-08-27 23:18:37 1 1 2019-08-27 23:18:37 2 6 2019-08-27 23:28:37 2 5 2019-08-27 23:38:37 2 7 2019-08-27 23:53:37 2 3 2019-08-28 00:08:37 2 3 2019-08-28 00:28:37 2 5 2019-08-28 00:43:37 2 3 2019-08-28 00:48:37 2 5 2019-08-28 01:03:37 1 1 2019-08-28 01:03:37 2 4 2019-08-28 03:13:37 2 5 2019-08-28 03:23:37 2 5 2019-08-28 03:48:37 2 3 2019-08-28 04:13:37 2 1 2019-08-28 04:23:37 2 1 2019-08-28 04:33:37 2 1 2019-08-28 04:43:37 2 1 2019-08-28 05:18:37 1 1 2019-08-28 05:18:37 2 1 2019-08-28 05:48:37 2 2 2019-08-28 05:58:37 2 2 2019-08-28 06:08:37 2 2 2019-08-28 06:18:37 2 2 2019-08-26 13:33:37 1 1 2019-08-26 13:33:37 2 4 2019-08-26 13:48:37 1 2 2019-08-26 13:48:37 2 3 2019-08-26 13:53:37 1 2 2019-08-26 13:53:37 2 3 2019-08-26 13:58:37 2 3 2019-08-26 14:03:37 1 1 2019-08-26 14:03:37 2 4 2019-08-26 14:18:37 2 3 2019-08-26 15:08:37 1 1 2019-08-26 15:08:37 2 8 2019-08-26 15:18:37 1 1 2019-08-26 15:18:37 2 6 2019-08-26 15:23:37 2 5 2019-08-26 15:58:37 1 1 2019-08-26 15:58:37 2 4 2019-08-26 16:18:37 1 1 2019-08-26 16:18:37 2 4 2019-08-26 16:33:37 1 1 2019-08-26 16:33:37 2 6 2019-08-26 17:03:37 1 2 2019-08-26 17:03:37 2 3 2019-08-26 17:28:37 1 1 2019-08-26 17:28:37 2 7 2019-08-26 17:33:37 1 1 2019-08-26 17:33:37 2 5 2019-08-26 18:08:37 1 1 2019-08-26 18:08:37 2 7 2019-08-26 18:58:37 1 1 2019-08-26 18:58:37 2 3 2019-08-26 19:23:37 1 1 2019-08-26 19:23:37 2 5 2019-08-26 19:53:37 1 1 2019-08-26 19:53:37 2 5 2019-08-26 20:03:37 1 1 2019-08-26 20:03:37 2 3 2019-08-26 20:38:37 1 1 2019-08-26 20:38:37 2 5 2019-08-26 21:03:37 1 1 2019-08-26 21:03:37 2 5 2019-08-26 21:08:37 1 1 2019-08-26 21:08:37 2 5 2019-08-26 21:48:37 2 8 2019-08-26 22:13:37 2 6 2019-08-26 22:23:37 2 6 2019-08-26 22:38:37 2 4 2019-08-26 22:48:37 1 1 2019-08-26 22:48:37 2 5 2019-08-26 23:33:37 1 1 2019-08-26 23:33:37 2 8 2019-08-26 23:48:37 1 1 2019-08-26 23:48:37 2 6 2019-08-26 23:53:37 1 1 2019-08-26 23:53:37 2 6 2019-08-26 23:58:37 1 1 2019-08-26 23:58:37 2 8 2019-08-27 00:08:37 1 1 2019-08-27 00:08:37 2 6 2019-08-27 00:18:37 1 1 2019-08-27 00:18:37 2 6 2019-08-27 00:28:37 1 1 2019-08-27 00:28:37 2 6 2019-08-27 01:03:37 1 1 2019-08-27 01:03:37 2 5 2019-08-27 01:13:37 2 6 2019-08-27 01:18:37 1 1 2019-08-27 01:18:37 2 7 2019-08-27 01:28:37 1 1 2019-08-27 01:28:37 2 7 2019-08-27 01:38:37 2 4 2019-08-27 02:33:37 2 6 2019-08-27 02:43:37 2 6 2019-08-27 03:28:37 2 4 2019-08-27 03:43:37 2 4 2019-08-27 03:53:37 2 4 2019-08-27 04:38:37 2 3 2019-08-27 04:48:37 2 3 2019-08-27 06:33:37 2 1 2019-08-27 06:43:37 2 1 2019-08-27 06:53:37 2 1 2019-08-27 07:13:37 2 3 2019-08-27 07:23:37 2 3 2019-08-27 08:38:37 1 1 2019-08-27 08:53:37 1 1 2019-08-27 08:53:37 2 2 2019-08-27 09:03:37 1 1 2019-08-27 09:03:37 2 2 2019-08-27 09:13:37 1 1 2019-08-27 09:13:37 2 2 2019-08-27 09:23:37 1 1 2019-08-27 09:23:37 2 2 2019-08-27 09:33:37 1 1 2019-08-27 09:33:37 2 2 2019-08-27 09:38:37 1 1 2019-08-27 09:38:37 2 4 2019-08-27 09:43:37 1 1 2019-08-27 09:43:37 2 2 2019-08-27 09:53:37 1 1 2019-08-27 09:53:37 2 2 2019-08-27 10:18:37 2 1 2019-08-27 10:23:37 1 1 2019-08-27 10:23:37 2 2 2019-08-27 10:33:37 1 1 2019-08-27 10:33:37 2 2 2019-08-27 10:48:37 2 4 2019-08-27 11:08:37 2 4 2019-08-27 11:23:37 2 2 2019-08-27 11:43:37 2 4 2019-08-27 11:58:37 1 1 2019-08-27 11:58:37 2 5 2019-08-27 12:08:37 1 1 2019-08-27 12:08:37 2 5 2019-08-27 12:18:37 1 1 2019-08-27 12:18:37 2 5 2019-08-27 12:43:37 1 1 2019-08-27 12:43:37 2 7 2019-08-27 13:08:37 1 1 2019-08-27 13:08:37 2 5 2019-08-27 13:23:37 1 1 2019-08-27 13:23:37 2 5 2019-08-27 13:28:37 1 1 2019-08-27 13:28:37 2 3 2019-08-27 14:13:37 1 1 2019-08-27 14:13:37 2 6 2019-08-27 14:18:37 1 1 2019-08-27 14:18:37 2 4 2019-08-27 14:28:37 1 1 2019-08-27 14:28:37 2 4 2019-08-27 14:38:37 1 1 2019-08-27 14:38:37 2 4 2019-08-27 14:43:37 1 1 2019-08-27 14:43:37 2 6 2019-08-27 15:03:37 1 1 2019-08-27 15:03:37 2 4 2019-08-27 15:18:37 1 1 2019-08-27 15:18:37 2 6 2019-08-27 15:43:37 1 1 2019-08-27 15:43:37 2 4 2019-08-27 16:43:37 2 3 2019-08-27 17:03:37 1 1 2019-08-27 17:03:37 2 4 2019-08-27 17:48:37 2 4 2019-08-27 19:08:37 2 8 2019-08-27 19:58:37 1 1 2019-08-27 19:58:37 2 5 2019-08-27 20:13:37 2 6 2019-08-27 20:28:37 1 1 2019-08-27 20:28:37 2 5 2019-08-27 20:38:37 1 1 2019-08-27 20:38:37 2 5 2019-08-27 20:48:37 1 1 2019-08-27 20:48:37 2 5 2019-08-27 21:08:37 1 1 2019-08-27 21:08:37 2 3 2019-08-27 21:23:37 1 1 2019-08-27 21:23:37 2 3 2019-08-27 21:48:37 1 2 2019-08-27 21:48:37 2 6 2019-08-27 22:03:37 1 2 2019-08-27 22:03:37 2 8 2019-08-27 22:18:37 1 2 2019-08-27 22:18:37 2 8 2019-08-27 22:33:37 1 2 2019-08-27 22:33:37 2 6 2019-08-27 22:58:37 1 1 2019-08-27 22:58:37 2 7 2019-08-27 23:43:37 2 4 2019-08-27 23:48:37 2 2 2019-08-28 00:18:37 2 4 2019-08-28 00:33:37 2 4 2019-08-28 00:53:37 1 1 2019-08-28 00:53:37 2 3 2019-08-28 01:33:37 2 6 2019-08-28 01:38:37 2 6 2019-08-28 01:43:37 2 6 2019-08-28 01:58:37 2 8 2019-08-28 02:28:37 2 4 2019-08-28 02:43:37 2 6 2019-08-28 02:58:37 2 4 2019-08-28 03:08:37 2 4 2019-08-28 03:28:37 2 4 2019-08-28 03:38:37 2 4 2019-08-28 03:53:37 2 2 2019-08-28 04:28:37 2 1 2019-08-28 07:58:37 2 1 2019-08-28 08:18:37 1 1 2019-08-28 08:18:37 2 1 2019-08-28 08:23:37 1 1 2019-08-28 08:23:37 2 1 2019-08-28 08:33:37 1 1 2019-08-28 08:33:37 2 3 2019-08-28 08:48:37 1 1 2019-08-28 08:48:37 2 3 2019-08-28 10:03:37 1 1 2019-08-28 10:03:37 2 3 2019-08-28 10:13:37 1 1 2019-08-28 10:13:37 2 3 2019-08-28 10:28:37 1 1 2019-08-28 10:28:37 2 5 2019-08-28 10:43:37 1 1 2019-08-28 10:43:37 2 5 2019-08-28 10:53:37 1 1 2019-08-28 10:53:37 2 5 2019-08-28 11:18:37 1 1 2019-08-28 11:18:37 2 7 2019-08-28 11:23:37 1 1 2019-08-28 11:23:37 2 7 2019-08-28 11:28:37 1 1 2019-08-28 11:28:37 2 7 2019-08-28 11:48:37 1 1 2019-08-28 11:48:37 2 7 2019-08-28 12:08:37 1 1 2019-08-28 12:08:37 2 6 2019-08-28 12:38:37 1 1 2019-08-28 12:38:37 2 10 2019-08-28 12:43:37 1 1 2019-08-28 12:43:37 2 8 2019-08-28 12:48:37 2 7 2019-08-28 12:53:37 1 1 2019-08-28 12:53:37 2 8 2019-08-28 13:08:37 1 1 2019-08-28 13:08:37 2 8 2019-08-28 13:13:37 1 1 2019-08-28 13:13:37 2 8 2019-08-28 13:18:37 1 1 2019-08-28 13:18:37 2 6 2019-08-28 13:23:37 1 1 2019-08-28 13:23:37 2 4 2019-08-28 13:33:37 1 1 2019-08-28 13:33:37 2 4 2019-08-28 13:38:37 1 1 2019-08-28 13:38:37 2 2 2019-08-28 14:13:37 1 1 2019-08-28 14:13:37 2 4 2019-08-28 14:18:37 1 1 2019-08-28 14:18:37 2 6 2019-08-28 14:23:37 1 1 2019-08-28 14:23:37 2 4 2019-08-28 15:18:37 1 1 2019-08-28 15:18:37 2 4 2019-08-28 15:33:37 1 1 2019-08-28 15:33:37 2 4 2019-08-28 15:43:37 2 5 2019-08-28 15:48:37 2 7 2019-08-28 16:33:37 2 5 2019-08-28 17:33:37 1 1 2019-08-28 17:33:37 2 8 2019-08-28 17:58:38 1 1 2019-08-28 17:58:38 2 10 2019-08-28 18:03:37 1 1 2019-08-28 18:03:37 2 8 2019-08-28 18:18:37 1 1 2019-08-28 18:18:37 2 6 2019-08-28 18:38:37 2 7 2019-08-28 18:53:37 1 1 2019-08-28 18:53:37 2 6 2019-08-28 18:58:37 1 1 2019-08-28 18:58:37 2 4 2019-08-28 19:03:37 1 1 2019-08-28 19:03:37 2 4 2019-08-28 19:23:37 1 1 2019-08-28 19:23:37 2 4 2019-08-28 19:38:37 1 1 2019-08-28 19:38:37 2 6 2019-08-28 19:58:37 1 1 2019-08-28 19:58:37 2 6 2019-08-28 20:18:37 2 6 2019-08-28 20:28:37 2 6 2019-08-28 20:58:37 1 1 2019-08-28 20:58:37 2 5 2019-08-28 21:13:37 1 1 2019-08-28 21:13:37 2 6 2019-08-28 21:48:37 1 2 2019-08-28 21:48:37 2 7 2019-08-28 21:58:37 1 2 2019-08-28 21:58:37 2 7 2019-08-28 22:28:37 1 1 2019-08-28 22:28:37 2 6 2019-08-28 22:38:37 2 7 2019-08-28 23:08:37 2 7 2019-08-29 00:28:37 2 7 2019-08-29 00:53:37 1 1 2019-08-29 00:53:37 2 8 2019-08-29 01:13:37 1 1 2019-08-29 01:13:37 2 4 2019-08-29 01:43:37 2 3 2019-08-29 01:53:37 2 3 2019-08-29 02:23:37 1 1 2019-08-29 02:23:37 2 2 2019-08-29 02:28:37 2 1 2019-08-29 02:33:37 2 1 2019-08-29 02:43:37 2 1 2019-08-29 03:13:37 2 1 2019-08-29 03:23:37 2 1 2019-08-29 03:33:37 2 1 2019-08-29 03:43:37 2 1 2019-08-29 03:53:37 2 1 2019-08-29 04:03:37 2 1 2019-08-29 04:13:37 2 1 2019-08-29 04:23:37 2 1 2019-08-29 04:33:37 2 1 2019-08-29 04:43:37 2 1 2019-08-29 04:53:37 2 1 2019-08-29 05:03:37 2 1 2019-08-29 05:13:37 2 1 2019-08-29 05:23:37 2 1 2019-08-29 05:33:37 2 1 2019-08-29 05:43:37 2 1 2019-08-29 05:53:37 2 1 2019-08-29 06:03:37 2 1 2019-08-29 06:13:37 2 1 2019-08-29 06:23:37 2 1 2019-08-29 07:13:37 2 1 2019-08-29 07:23:37 2 1 2019-08-29 07:53:37 2 1 2019-08-29 08:03:37 2 1 2019-08-29 08:23:37 2 3 2019-08-29 08:28:37 2 5 2019-08-29 08:38:37 2 1 2019-08-29 09:03:37 1 1 2019-08-29 09:03:37 2 2 2019-08-29 09:33:37 1 1 2019-08-29 09:33:37 2 2 2019-08-29 09:43:37 1 1 2019-08-29 09:43:37 2 4 2019-08-29 10:08:37 2 3 2019-08-29 10:23:37 1 1 2019-08-29 10:23:37 2 4 2019-08-29 10:28:37 1 1 2019-08-29 10:28:37 2 4 2019-08-29 10:43:37 1 1 2019-08-29 10:43:37 2 4 2019-08-29 10:53:37 1 1 2019-08-29 10:53:37 2 4 2019-08-29 11:43:37 1 1 2019-08-29 11:43:37 2 4 2019-08-29 12:03:37 1 1 2019-08-29 12:03:37 2 6 2019-08-29 12:18:37 1 1 2019-08-29 12:18:37 2 6 2019-08-29 12:38:37 1 1 2019-08-29 12:38:37 2 6 2019-08-29 12:58:37 1 2 2019-08-29 12:58:37 2 11 2019-08-29 13:08:37 1 1 2019-08-29 13:08:37 2 8 2019-08-29 13:18:37 1 1 2019-08-29 13:18:37 2 6 2019-08-29 13:33:37 2 7 2019-08-29 13:58:37 2 5 2019-08-29 14:13:37 2 3 2019-08-29 14:28:37 1 1 2019-08-29 14:28:37 2 6 2019-08-29 14:33:37 1 1 2019-08-29 14:33:37 2 8 2019-08-29 14:53:37 2 9 2019-08-29 15:53:37 2 5 2019-08-29 16:08:37 2 3 2019-08-29 16:18:37 2 3 2019-08-29 21:42:54 1 2 2019-08-29 21:42:54 2 4 2019-08-29 21:57:54 1 2 2019-08-29 21:57:54 2 4 2019-08-29 22:22:54 1 3 2019-08-29 22:22:54 2 4 2019-08-29 22:52:54 1 2 2019-08-29 22:52:54 2 4 2019-08-29 23:02:54 1 2 2019-08-29 23:02:54 2 4 2019-08-28 08:03:37 1 1 2019-08-28 08:53:37 1 1 2019-08-28 08:53:37 2 2 2019-08-28 09:08:37 1 1 2019-08-28 09:08:37 2 2 2019-08-28 09:28:37 1 1 2019-08-28 09:28:37 2 2 2019-08-28 10:33:37 1 1 2019-08-28 10:33:37 2 6 2019-08-28 11:03:37 1 1 2019-08-28 11:03:37 2 6 2019-08-28 11:38:37 1 2 2019-08-28 11:38:37 2 7 2019-08-28 11:43:37 1 2 2019-08-28 11:43:37 2 7 2019-08-28 12:03:37 1 1 2019-08-28 12:03:37 2 8 2019-08-28 12:33:37 1 2 2019-08-28 12:33:37 2 8 2019-08-28 13:03:37 1 1 2019-08-28 13:03:37 2 9 2019-08-28 13:28:37 1 1 2019-08-28 13:28:37 2 3 2019-08-28 13:48:37 1 1 2019-08-28 13:48:37 2 3 2019-08-28 14:03:37 1 1 2019-08-28 14:03:37 2 5 2019-08-28 14:28:37 1 1 2019-08-28 14:28:37 2 5 2019-08-28 14:48:37 2 6 2019-08-28 15:08:37 2 4 2019-08-28 15:13:37 1 1 2019-08-28 15:13:37 2 5 2019-08-28 15:23:37 1 1 2019-08-28 15:23:37 2 5 2019-08-28 15:53:37 2 6 2019-08-28 15:58:37 2 6 2019-08-28 16:03:37 2 6 2019-08-28 16:18:37 2 4 2019-08-28 16:48:37 2 6 2019-08-28 17:03:37 2 8 2019-08-28 17:18:37 2 10 2019-08-28 17:23:37 2 10 2019-08-28 17:28:37 2 8 2019-08-28 17:38:37 1 1 2019-08-28 17:38:37 2 9 2019-08-28 17:53:37 1 1 2019-08-28 17:53:37 2 9 2019-08-28 18:43:37 2 6 2019-08-28 19:18:37 1 1 2019-08-28 19:18:37 2 3 2019-08-28 19:43:37 1 1 2019-08-28 19:43:37 2 5 2019-08-28 19:48:37 1 1 2019-08-28 19:48:37 2 5 2019-08-28 20:03:37 2 6 2019-08-28 20:08:37 2 7 2019-08-28 20:13:37 2 5 2019-08-28 20:23:37 2 5 2019-08-28 20:53:37 1 1 2019-08-28 20:53:37 2 6 2019-08-28 22:13:37 1 2 2019-08-28 22:13:37 2 8 2019-08-28 22:18:37 1 1 2019-08-28 22:18:37 2 7 2019-08-28 22:33:37 2 6 2019-08-28 22:43:37 2 6 2019-08-28 23:03:37 2 6 2019-08-28 23:13:37 2 8 2019-08-28 23:23:37 1 1 2019-08-28 23:23:37 2 7 2019-08-28 23:28:37 1 1 2019-08-28 23:28:37 2 9 2019-08-28 23:38:37 1 1 2019-08-28 23:38:37 2 9 2019-08-28 23:48:37 1 1 2019-08-28 23:48:37 2 9 2019-08-29 00:08:37 2 8 2019-08-29 00:23:37 2 6 2019-08-29 00:43:37 1 1 2019-08-29 00:43:37 2 7 2019-08-29 01:03:37 1 1 2019-08-29 01:03:37 2 5 2019-08-29 01:18:37 1 1 2019-08-29 01:18:37 2 3 2019-08-29 01:33:37 1 1 2019-08-29 01:33:37 2 3 2019-08-29 01:58:37 2 2 2019-08-29 02:08:37 2 2 2019-08-29 02:18:37 2 2 2019-08-29 02:53:37 2 2 2019-08-29 03:03:37 2 2 2019-08-29 04:08:37 2 1 2019-08-29 04:18:37 2 1 2019-08-29 04:28:37 2 1 2019-08-29 04:38:37 2 1 2019-08-29 04:48:37 2 1 2019-08-29 04:58:37 2 1 2019-08-29 05:08:37 2 1 2019-08-29 05:18:37 2 1 2019-08-29 05:28:37 2 1 2019-08-29 05:38:37 2 1 2019-08-29 05:48:37 2 1 2019-08-29 05:58:37 2 1 2019-08-29 06:08:37 2 1 2019-08-29 06:18:37 2 1 2019-08-29 06:28:37 2 1 2019-08-29 07:28:37 2 1 2019-08-29 07:48:37 2 1 2019-08-29 07:58:37 2 1 2019-08-29 09:08:37 1 1 2019-08-29 09:08:37 2 2 2019-08-29 09:13:37 1 1 2019-08-29 09:13:37 2 2 2019-08-29 09:18:37 1 1 2019-08-29 09:18:37 2 2 2019-08-29 09:38:37 1 1 2019-08-29 09:38:37 2 4 2019-08-29 09:53:37 1 1 2019-08-29 09:53:37 2 4 2019-08-29 10:03:37 1 1 2019-08-29 10:03:37 2 4 2019-08-29 11:03:37 1 1 2019-08-29 11:03:37 2 4 2019-08-29 11:08:37 1 1 2019-08-29 11:08:37 2 4 2019-08-29 11:13:37 1 1 2019-08-29 11:13:37 2 4 2019-08-29 11:53:37 1 1 2019-08-29 11:53:37 2 4 2019-08-29 12:53:37 1 1 2019-08-29 12:53:37 2 10 2019-08-29 13:43:37 2 5 2019-08-29 14:23:37 2 7 2019-08-29 14:38:37 2 9 2019-08-29 14:43:37 2 7 2019-08-29 14:58:37 2 9 2019-08-29 15:03:37 2 7 2019-08-29 15:13:37 2 7 2019-08-29 15:28:37 2 5 2019-08-29 15:48:37 2 5 2019-08-29 16:23:37 2 3 2019-08-29 16:38:37 2 5 2019-08-29 18:17:54 2 1 2019-08-29 18:27:54 1 1 2019-08-29 18:27:54 2 4 2019-08-29 18:32:54 1 1 2019-08-29 18:32:54 2 4 2019-08-29 18:37:54 1 1 2019-08-29 18:37:54 2 3 2019-08-29 18:52:54 1 1 2019-08-29 18:52:54 2 5 2019-08-29 18:57:54 2 3 2019-08-29 19:12:54 2 1 2019-08-29 19:37:54 1 1 2019-08-29 19:57:54 1 2 2019-08-29 19:57:54 2 2 2019-08-29 20:02:54 1 2 2019-08-29 20:02:54 2 2 2019-08-29 20:12:54 1 2 2019-08-29 20:12:54 2 4 2019-08-29 20:52:54 1 3 2019-08-29 20:52:54 2 3 2019-08-29 21:17:54 1 2 2019-08-29 21:17:54 2 4 2019-08-29 21:32:54 1 2 2019-08-29 21:32:54 2 4 2019-08-29 21:47:54 1 2 2019-08-29 21:47:54 2 4 2019-08-29 22:07:54 1 2 2019-08-29 22:07:54 2 2 2019-08-29 22:12:54 1 2 2019-08-29 22:12:54 2 2 2019-08-29 22:27:54 1 3 2019-08-29 22:27:54 2 3 2019-08-29 22:32:54 1 3 2019-08-29 22:32:54 2 4 2019-08-29 22:42:54 1 2 2019-08-29 22:42:54 2 4 2019-08-29 22:47:54 1 2 2019-08-29 22:47:54 2 4 2019-08-29 22:57:54 1 2 2019-08-29 22:57:54 2 3 2019-08-29 23:07:54 1 2 2019-08-29 23:07:54 2 4 2019-08-28 08:08:37 1 1 2019-08-28 08:13:37 1 1 2019-08-28 08:13:37 2 2 2019-08-28 08:58:37 1 1 2019-08-28 08:58:37 2 2 2019-08-28 09:03:37 1 1 2019-08-28 09:03:37 2 2 2019-08-28 09:13:37 1 1 2019-08-28 09:13:37 2 2 2019-08-28 09:23:37 1 1 2019-08-28 09:23:37 2 2 2019-08-28 09:33:37 1 1 2019-08-28 09:33:37 2 2 2019-08-28 09:38:37 1 1 2019-08-28 09:38:37 2 4 2019-08-28 09:43:37 1 1 2019-08-28 09:43:37 2 6 2019-08-28 09:48:37 1 1 2019-08-28 09:48:37 2 4 2019-08-28 09:53:37 1 1 2019-08-28 09:53:37 2 4 2019-08-28 09:58:37 1 1 2019-08-28 09:58:37 2 4 2019-08-28 10:08:37 1 1 2019-08-28 10:08:37 2 4 2019-08-28 11:08:37 1 1 2019-08-28 11:08:37 2 6 2019-08-28 11:13:37 1 1 2019-08-28 11:13:37 2 8 2019-08-28 11:53:37 1 2 2019-08-28 11:53:37 2 9 2019-08-28 12:18:37 1 2 2019-08-28 12:18:37 2 6 2019-08-28 12:28:37 1 2 2019-08-28 12:28:37 2 8 2019-08-28 13:43:37 1 1 2019-08-28 13:43:37 2 3 2019-08-28 13:53:37 1 1 2019-08-28 13:53:37 2 3 2019-08-28 13:58:37 1 1 2019-08-28 13:58:37 2 3 2019-08-28 14:08:37 1 1 2019-08-28 14:08:37 2 5 2019-08-28 14:38:37 2 6 2019-08-28 14:43:37 2 6 2019-08-28 14:53:37 2 6 2019-08-28 14:58:37 2 6 2019-08-28 16:13:37 2 4 2019-08-28 16:23:37 2 4 2019-08-28 16:43:37 2 6 2019-08-28 16:53:37 2 6 2019-08-28 17:13:37 2 10 2019-08-28 18:08:37 1 1 2019-08-28 18:08:37 2 9 2019-08-28 18:48:37 2 6 2019-08-28 19:28:37 1 1 2019-08-28 19:28:37 2 5 2019-08-28 19:33:37 1 1 2019-08-28 19:33:37 2 7 2019-08-28 19:53:37 1 1 2019-08-28 19:53:37 2 5 2019-08-28 20:33:37 2 7 2019-08-28 20:38:37 2 9 2019-08-28 20:48:37 2 7 2019-08-28 21:08:37 1 1 2019-08-28 21:08:37 2 4 2019-08-28 21:18:37 1 1 2019-08-28 21:18:37 2 7 2019-08-28 21:23:37 1 1 2019-08-28 21:23:37 2 7 2019-08-28 21:28:37 1 1 2019-08-28 21:28:37 2 7 2019-08-28 21:33:37 1 1 2019-08-28 21:33:37 2 7 2019-08-28 22:08:37 1 2 2019-08-28 22:08:37 2 6 2019-08-28 22:23:37 1 1 2019-08-28 22:23:37 2 7 2019-08-28 22:48:37 2 6 2019-08-28 22:58:37 2 6 2019-08-28 23:33:37 1 1 2019-08-28 23:33:37 2 9 2019-08-28 23:43:37 1 1 2019-08-28 23:43:37 2 9 2019-08-28 23:53:37 1 1 2019-08-28 23:53:37 2 9 2019-08-28 23:58:37 1 1 2019-08-28 23:58:37 2 7 2019-08-29 00:13:37 2 8 2019-08-29 00:18:37 2 6 2019-08-29 00:33:37 1 1 2019-08-29 00:33:37 2 7 2019-08-29 00:38:37 1 1 2019-08-29 00:38:37 2 7 2019-08-29 00:48:37 1 1 2019-08-29 00:48:37 2 7 2019-08-29 01:08:37 1 1 2019-08-29 01:08:37 2 5 2019-08-29 01:28:37 1 1 2019-08-29 01:28:37 2 3 2019-08-29 01:38:37 1 1 2019-08-29 01:38:37 2 3 2019-08-29 02:03:37 2 2 2019-08-29 02:13:37 2 2 2019-08-29 02:48:37 2 2 2019-08-29 02:58:37 2 2 2019-08-29 07:18:37 2 2 2019-08-29 08:08:37 2 2 2019-08-29 08:13:37 2 4 2019-08-29 08:18:37 2 4 2019-08-29 08:33:37 2 2 2019-08-29 08:43:37 2 2 2019-08-29 08:48:37 2 4 2019-08-29 08:53:37 2 2 2019-08-29 09:48:37 1 1 2019-08-29 09:48:37 2 5 2019-08-29 09:58:37 1 1 2019-08-29 09:58:37 2 3 2019-08-29 10:33:37 1 1 2019-08-29 10:33:37 2 5 2019-08-29 10:48:37 1 1 2019-08-29 10:48:37 2 5 2019-08-29 10:58:37 1 1 2019-08-29 10:58:37 2 5 2019-08-29 11:18:37 1 1 2019-08-29 11:18:37 2 3 2019-08-29 11:28:37 1 1 2019-08-29 11:28:37 2 3 2019-08-29 11:33:37 1 1 2019-08-29 11:33:37 2 3 2019-08-29 11:48:37 1 1 2019-08-29 11:48:37 2 5 2019-08-29 11:58:37 1 1 2019-08-29 11:58:37 2 5 2019-08-29 12:08:37 1 1 2019-08-29 12:08:37 2 5 2019-08-29 12:13:37 1 1 2019-08-29 12:13:37 2 7 2019-08-29 12:33:37 1 1 2019-08-29 12:33:37 2 5 2019-08-29 12:48:37 1 1 2019-08-29 12:48:37 2 9 2019-08-29 13:03:37 1 1 2019-08-29 13:03:37 2 9 2019-08-29 13:13:37 1 1 2019-08-29 13:13:37 2 7 2019-08-29 13:23:38 2 6 2019-08-29 13:28:37 2 6 2019-08-29 13:38:37 2 8 2019-08-29 13:48:37 2 4 2019-08-29 14:08:37 2 4 2019-08-29 14:18:37 2 8 2019-08-29 15:18:37 2 8 2019-08-29 15:38:37 2 6 2019-08-29 15:58:37 2 6 2019-08-29 16:03:37 2 4 2019-08-29 16:13:37 1 1 2019-08-29 16:13:37 2 3 2019-08-29 16:28:37 2 4 2019-08-29 16:33:37 2 4 2019-08-29 18:22:54 2 2 2019-08-29 18:42:54 1 1 2019-08-29 18:42:54 2 4 2019-08-29 19:02:54 2 3 2019-08-29 19:07:54 2 3 2019-08-29 19:32:54 1 1 2019-08-29 19:32:54 2 2 2019-08-29 19:42:54 1 1 2019-08-29 19:42:54 2 1 2019-08-29 19:47:54 1 1 2019-08-29 19:47:54 2 1 2019-08-29 19:52:54 1 2 2019-08-29 19:52:54 2 1 2019-08-29 20:17:54 1 2 2019-08-29 20:17:54 2 3 2019-08-29 20:42:54 1 2 2019-08-29 20:42:54 2 3 2019-08-29 20:57:54 1 3 2019-08-29 20:57:54 2 4 2019-08-29 21:07:54 1 3 2019-08-29 21:07:54 2 2 2019-08-29 21:12:54 1 3 2019-08-29 21:12:54 2 3 2019-08-29 21:22:54 1 2 2019-08-29 21:22:54 2 5 2019-08-28 08:28:37 1 1 2019-08-28 08:28:37 2 3 2019-08-28 08:38:37 1 1 2019-08-28 08:38:37 2 5 2019-08-28 08:43:37 1 1 2019-08-28 08:43:37 2 3 2019-08-28 09:18:37 1 1 2019-08-28 09:18:37 2 3 2019-08-28 10:18:37 1 1 2019-08-28 10:18:37 2 3 2019-08-28 10:23:37 1 1 2019-08-28 10:23:37 2 5 2019-08-28 10:38:37 1 1 2019-08-28 10:38:37 2 5 2019-08-28 10:48:37 1 1 2019-08-28 10:48:37 2 5 2019-08-28 10:58:37 1 1 2019-08-28 10:58:37 2 5 2019-08-28 11:33:37 1 1 2019-08-28 11:33:37 2 7 2019-08-28 11:58:37 1 1 2019-08-28 11:58:37 2 7 2019-08-28 12:13:37 1 1 2019-08-28 12:13:37 2 6 2019-08-28 12:23:37 1 2 2019-08-28 12:23:37 2 7 2019-08-28 12:58:37 1 1 2019-08-28 12:58:37 2 8 2019-08-28 14:33:37 2 5 2019-08-28 15:03:37 2 3 2019-08-28 15:28:37 1 1 2019-08-28 15:28:37 2 4 2019-08-28 15:38:37 2 3 2019-08-28 16:08:37 2 5 2019-08-28 16:28:37 2 5 2019-08-28 16:38:38 2 5 2019-08-28 16:58:37 2 7 2019-08-28 17:08:37 2 9 2019-08-28 17:43:37 1 1 2019-08-28 17:43:37 2 8 2019-08-28 17:48:37 1 1 2019-08-28 17:48:37 2 8 2019-08-28 18:13:37 1 1 2019-08-28 18:13:37 2 6 2019-08-28 18:23:37 1 1 2019-08-28 18:23:37 2 6 2019-08-28 18:28:37 1 1 2019-08-28 18:28:37 2 6 2019-08-28 18:33:37 1 1 2019-08-28 18:33:37 2 6 2019-08-28 19:08:37 1 1 2019-08-28 19:08:37 2 4 2019-08-28 19:13:37 1 1 2019-08-28 19:13:37 2 2 2019-08-28 20:43:37 2 8 2019-08-28 21:03:37 1 1 2019-08-28 21:03:37 2 5 2019-08-28 21:38:37 1 1 2019-08-28 21:38:37 2 6 2019-08-28 21:43:37 1 1 2019-08-28 21:43:37 2 6 2019-08-28 21:53:37 1 2 2019-08-28 21:53:37 2 7 2019-08-28 22:03:37 1 2 2019-08-28 22:03:37 2 5 2019-08-28 22:53:37 2 7 2019-08-28 23:18:37 2 7 2019-08-29 00:03:37 2 7 2019-08-29 00:58:37 1 1 2019-08-29 00:58:37 2 8 2019-08-29 01:23:37 1 1 2019-08-29 01:23:37 2 4 2019-08-29 01:48:37 2 3 2019-08-29 02:38:37 2 1 2019-08-29 03:08:37 2 1 2019-08-29 03:18:37 2 1 2019-08-29 03:28:37 2 1 2019-08-29 03:38:37 2 1 2019-08-29 03:48:37 2 1 2019-08-29 03:58:37 2 1 2019-08-29 07:33:37 2 2 2019-08-29 08:58:37 2 2 2019-08-29 09:23:37 1 1 2019-08-29 09:23:37 2 1 2019-08-29 09:28:37 1 1 2019-08-29 09:28:37 2 3 2019-08-29 10:13:37 1 1 2019-08-29 10:13:37 2 5 2019-08-29 10:18:37 1 1 2019-08-29 10:18:37 2 3 2019-08-29 10:38:37 1 1 2019-08-29 10:38:37 2 5 2019-08-29 11:23:37 1 1 2019-08-29 11:23:37 2 5 2019-08-29 11:38:37 1 1 2019-08-29 11:38:37 2 3 2019-08-29 12:23:37 1 1 2019-08-29 12:23:37 2 5 2019-08-29 12:28:37 1 1 2019-08-29 12:28:37 2 5 2019-08-29 12:43:37 1 1 2019-08-29 12:43:37 2 7 2019-08-29 13:53:37 2 4 2019-08-29 14:03:37 2 4 2019-08-29 14:48:37 2 8 2019-08-29 15:08:37 2 4 2019-08-29 15:23:37 2 8 2019-08-29 15:33:37 2 6 2019-08-29 15:43:37 2 6 2019-08-29 16:43:37 2 6 2019-08-29 18:47:54 1 1 2019-08-29 18:47:54 2 4 2019-08-29 19:17:54 2 1 2019-08-29 19:22:54 1 1 2019-08-29 19:22:54 2 4 2019-08-29 19:27:54 1 1 2019-08-29 19:27:54 2 4 2019-08-29 20:07:54 1 2 2019-08-29 20:07:54 2 2 2019-08-29 20:22:54 1 2 2019-08-29 20:22:54 2 4 2019-08-29 20:27:54 1 2 2019-08-29 20:27:54 2 5 2019-08-29 20:32:54 1 2 2019-08-29 20:32:54 2 2 2019-08-29 20:37:54 1 2 2019-08-29 20:37:54 2 1 2019-08-29 20:47:54 1 3 2019-08-29 20:47:54 2 4 2019-08-29 21:02:54 1 3 2019-08-29 21:02:54 2 4 2019-08-29 21:27:54 1 2 2019-08-29 21:27:54 2 5 2019-08-29 21:37:54 1 2 2019-08-29 21:37:54 2 4 2019-08-29 21:52:54 1 2 2019-08-29 21:52:54 2 4 2019-08-29 22:02:54 1 2 2019-08-29 22:02:54 2 3 2019-08-29 22:17:54 1 2 2019-08-29 22:17:54 2 2 2019-08-29 22:37:54 1 2 2019-08-29 22:37:54 2 2 2019-08-29 23:12:54 1 2 2019-08-29 23:12:54 2 4 2019-08-29 23:17:54 1 2 2019-08-29 23:17:54 2 6 2019-08-29 23:22:54 1 2 2019-08-29 23:22:54 2 6 2019-08-29 23:27:54 1 1 2019-08-29 23:27:54 2 6 2019-08-29 23:32:54 1 1 2019-08-29 23:32:54 2 5 2019-08-29 23:37:54 1 1 2019-08-29 23:37:54 2 5 2019-08-29 23:42:54 1 1 2019-08-29 23:42:54 2 7 2019-08-29 23:47:54 1 2 2019-08-29 23:47:54 2 7 2019-08-29 23:52:54 1 2 2019-08-29 23:52:54 2 5 2019-08-29 23:57:54 1 2 2019-08-29 23:57:54 2 6 2019-08-30 00:02:54 1 2 2019-08-30 00:02:54 2 8 2019-08-30 00:07:54 1 2 2019-08-30 00:07:54 2 8 2019-08-30 00:12:54 1 2 2019-08-30 00:12:54 2 6 2019-08-30 00:17:54 1 2 2019-08-30 00:17:54 2 5 2019-08-30 00:22:54 1 2 2019-08-30 00:22:54 2 5 2019-08-30 00:27:54 1 2 2019-08-30 00:27:54 2 7 2019-08-30 00:32:54 1 2 2019-08-30 00:32:54 2 5 2019-08-30 00:37:54 1 2 2019-08-30 00:37:54 2 4 2019-08-30 00:42:54 1 2 2019-08-30 00:42:54 2 2 2019-08-30 00:47:54 1 2 2019-08-30 00:47:54 2 2 2019-08-30 00:52:54 1 2 2019-08-30 00:52:54 2 2 2019-08-30 00:57:54 1 2 2019-08-30 00:57:54 2 3 2019-08-30 01:32:54 1 1 2019-08-30 01:32:54 2 5 2019-08-30 01:52:54 1 1 2019-08-30 01:52:54 2 5 2019-08-30 01:57:54 1 1 2019-08-30 01:57:54 2 5 2019-08-30 02:02:54 1 1 2019-08-30 02:02:54 2 4 2019-08-30 02:07:54 1 1 2019-08-30 02:07:54 2 4 2019-08-30 02:27:54 1 1 2019-08-30 02:27:54 2 5 2019-08-30 02:42:54 1 1 2019-08-30 02:42:54 2 3 2019-08-30 03:07:54 1 1 2019-08-30 03:07:54 2 4 2019-08-30 04:02:54 1 1 2019-08-30 04:02:54 2 2 2019-08-30 04:07:54 1 1 2019-08-30 04:07:54 2 2 2019-08-30 06:37:54 1 1 2019-08-30 06:37:54 2 1 2019-08-30 06:42:54 1 1 2019-08-30 06:42:54 2 1 2019-08-30 06:47:54 1 1 2019-08-30 06:47:54 2 1 2019-08-30 06:52:54 1 2 2019-08-30 06:52:54 2 1 2019-08-30 07:12:54 1 1 2019-08-30 07:12:54 2 2 2019-08-30 07:17:54 1 1 2019-08-30 07:17:54 2 2 2019-08-30 07:22:54 1 1 2019-08-30 07:22:54 2 2 2019-08-30 07:27:54 1 1 2019-08-30 07:27:54 2 2 2019-08-30 07:32:54 1 1 2019-08-30 07:32:54 2 2 2019-08-30 07:52:54 1 1 2019-08-30 07:52:54 2 1 2019-08-30 07:57:54 1 1 2019-08-30 07:57:54 2 1 2019-08-30 08:02:54 1 1 2019-08-30 08:02:54 2 1 2019-08-30 08:07:54 1 1 2019-08-30 08:07:54 2 1 2019-08-30 08:47:54 1 3 2019-08-30 08:47:54 2 2 2019-08-30 08:52:54 1 3 2019-08-30 08:52:54 2 1 2019-08-30 08:57:54 1 3 2019-08-30 08:57:54 2 1 2019-08-30 09:17:54 1 3 2019-08-30 09:17:54 2 5 2019-08-30 09:22:54 1 3 2019-08-30 09:22:54 2 5 2019-08-30 09:37:54 1 3 2019-08-30 09:37:54 2 4 2019-08-30 09:42:54 1 3 2019-08-30 09:42:54 2 6 2019-08-30 09:52:54 1 2 2019-08-30 09:52:54 2 3 2019-08-30 09:57:54 1 2 2019-08-30 09:57:54 2 4 2019-08-30 10:02:54 1 2 2019-08-30 10:02:54 2 3 2019-08-30 10:12:54 1 2 2019-08-30 10:12:54 2 5 2019-08-30 10:17:54 1 2 2019-08-30 10:17:54 2 3 2019-08-30 10:37:54 1 2 2019-08-30 10:37:54 2 1 2019-08-30 10:42:54 1 2 2019-08-30 10:42:54 2 2 2019-08-30 10:52:54 1 2 2019-08-30 10:52:54 2 2 2019-08-30 11:02:55 1 2 2019-08-30 11:02:55 2 2 2019-08-30 11:12:54 1 1 2019-08-30 11:12:54 2 3 2019-08-30 11:17:54 1 2 2019-08-30 11:17:54 2 3 2019-08-30 11:32:54 1 1 2019-08-30 11:32:54 2 3 2019-08-30 11:37:54 1 1 2019-08-30 11:37:54 2 3 2019-08-30 11:52:54 1 1 2019-08-30 11:52:54 2 2 2019-08-30 12:02:54 1 1 2019-08-30 12:02:54 2 1 2019-08-30 12:07:54 1 1 2019-08-30 12:07:54 2 1 2019-08-30 12:17:54 1 2 2019-08-30 12:17:54 2 1 2019-08-30 12:52:54 1 1 2019-08-30 12:52:54 2 1 2019-08-30 13:02:54 1 1 2019-08-30 13:22:54 1 2 2019-08-30 13:22:54 2 4 2019-08-30 13:57:54 1 1 2019-08-30 13:57:54 2 4 2019-08-30 14:07:54 1 1 2019-08-30 14:07:54 2 3 2019-08-30 14:17:54 1 1 2019-08-30 14:17:54 2 5 2019-08-30 14:27:54 1 1 2019-08-30 14:27:54 2 4 2019-08-30 14:37:54 1 1 2019-08-30 14:37:54 2 4 2019-08-30 15:07:54 1 3 2019-08-30 15:07:54 2 2 2019-08-30 15:27:54 1 3 2019-08-30 15:27:54 2 3 2019-08-30 15:42:54 1 2 2019-08-30 15:42:54 2 6 2019-08-30 15:52:54 1 2 2019-08-30 15:52:54 2 4 2019-08-30 16:07:54 1 2 2019-08-30 16:07:54 2 3 2019-08-30 16:22:54 1 2 2019-08-30 16:22:54 2 4 2019-08-30 16:37:54 1 2 2019-08-30 16:37:54 2 4 2019-08-30 17:12:54 1 1 2019-08-30 17:12:54 2 3 2019-08-30 17:17:54 1 1 2019-08-30 17:17:54 2 3 2019-08-30 17:27:54 1 1 2019-08-30 17:27:54 2 2 2019-08-30 17:32:54 1 1 2019-08-30 17:32:54 2 2 2019-08-30 17:42:54 1 3 2019-08-30 17:42:54 2 1 2019-08-30 17:47:54 1 3 2019-08-30 17:47:54 2 2 2019-08-30 17:57:54 1 2 2019-08-30 17:57:54 2 2 2019-08-30 18:12:54 1 2 2019-08-30 18:12:54 2 7 2019-08-30 18:22:54 1 2 2019-08-30 18:22:54 2 5 2019-08-30 18:52:54 1 3 2019-08-30 18:52:54 2 7 2019-08-30 18:57:54 1 3 2019-08-30 18:57:54 2 7 2019-08-30 19:07:54 1 3 2019-08-30 19:07:54 2 7 2019-08-30 19:12:54 1 3 2019-08-30 19:12:54 2 7 2019-08-30 19:27:54 1 3 2019-08-30 19:27:54 2 7 2019-08-30 19:37:54 1 3 2019-08-30 19:37:54 2 7 2019-08-30 19:47:54 1 2 2019-08-30 19:47:54 2 5 2019-08-30 19:52:54 1 1 2019-08-30 19:52:54 2 7 2019-08-30 20:27:54 1 1 2019-08-30 20:27:54 2 3 2019-08-30 21:02:54 1 2 2019-08-30 21:02:54 2 5 2019-08-30 21:17:54 1 2 2019-08-30 21:17:54 2 7 2019-08-30 21:22:54 1 2 2019-08-30 21:22:54 2 8 2019-08-30 21:27:54 2 8 2019-08-30 21:37:54 2 9 2019-08-30 21:42:54 2 8 2019-08-30 21:47:54 1 1 2019-08-30 21:47:54 2 8 2019-08-30 21:52:54 2 8 2019-08-30 21:57:54 1 1 2019-08-30 21:57:54 2 7 2019-08-30 22:02:54 1 1 2019-08-30 22:02:54 2 7 2019-08-30 22:07:54 1 2 2019-08-30 22:07:54 2 7 2019-08-30 22:17:54 1 2 2019-08-30 22:17:54 2 6 2019-08-30 22:32:54 1 3 2019-08-30 22:32:54 2 7 2019-08-30 22:47:54 1 3 2019-08-30 22:47:54 2 4 2019-08-30 01:02:54 1 2 2019-08-30 01:02:54 2 4 2019-08-30 01:07:54 1 2 2019-08-30 01:07:54 2 4 2019-08-30 01:42:54 1 1 2019-08-30 01:42:54 2 5 2019-08-30 01:47:54 1 1 2019-08-30 01:47:54 2 5 2019-08-30 02:12:54 1 1 2019-08-30 02:12:54 2 3 2019-08-30 02:37:54 1 1 2019-08-30 02:37:54 2 5 2019-08-30 02:47:54 1 1 2019-08-30 02:47:54 2 2 2019-08-30 02:52:54 1 1 2019-08-30 02:52:54 2 2 2019-08-30 03:12:54 1 1 2019-08-30 03:12:54 2 3 2019-08-30 03:17:54 1 1 2019-08-30 03:17:54 2 3 2019-08-30 03:42:54 1 1 2019-08-30 03:42:54 2 2 2019-08-30 03:47:54 1 1 2019-08-30 03:47:54 2 2 2019-08-30 03:52:54 1 1 2019-08-30 03:52:54 2 2 2019-08-30 03:57:54 1 1 2019-08-30 03:57:54 2 2 2019-08-30 04:12:54 1 1 2019-08-30 04:12:54 2 3 2019-08-30 04:17:54 1 1 2019-08-30 04:17:54 2 3 2019-08-30 04:27:54 1 1 2019-08-30 04:27:54 2 2 2019-08-30 06:17:54 1 1 2019-08-30 06:17:54 2 1 2019-08-30 06:22:54 1 1 2019-08-30 06:22:54 2 1 2019-08-30 06:27:54 1 1 2019-08-30 06:27:54 2 1 2019-08-30 06:32:54 1 1 2019-08-30 06:32:54 2 1 2019-08-30 08:12:54 1 1 2019-08-30 08:12:54 2 2 2019-08-30 08:17:54 1 1 2019-08-30 08:17:54 2 1 2019-08-30 08:27:54 1 3 2019-08-30 08:27:54 2 2 2019-08-30 09:02:54 1 3 2019-08-30 09:02:54 2 3 2019-08-30 09:07:54 1 2 2019-08-30 09:07:54 2 3 2019-08-30 09:12:54 1 3 2019-08-30 09:12:54 2 5 2019-08-30 09:27:54 1 3 2019-08-30 09:27:54 2 4 2019-08-30 09:32:54 1 3 2019-08-30 09:32:54 2 4 2019-08-30 09:47:54 1 1 2019-08-30 09:47:54 2 5 2019-08-30 10:22:54 1 1 2019-08-30 10:22:54 2 3 2019-08-30 10:27:54 1 1 2019-08-30 10:27:54 2 3 2019-08-30 10:32:54 1 1 2019-08-30 10:32:54 2 2 2019-08-30 10:57:54 1 1 2019-08-30 10:57:54 2 2 2019-08-30 11:42:54 1 1 2019-08-30 11:42:54 2 2 2019-08-30 12:22:54 1 1 2019-08-30 12:22:54 2 1 2019-08-30 12:27:54 1 1 2019-08-30 12:27:54 2 1 2019-08-30 12:32:54 1 1 2019-08-30 12:32:54 2 1 2019-08-30 12:37:54 1 1 2019-08-30 12:37:54 2 1 2019-08-30 12:42:54 1 1 2019-08-30 12:42:54 2 1 2019-08-30 12:47:54 1 1 2019-08-30 12:47:54 2 1 2019-08-30 13:07:54 1 1 2019-08-30 13:07:54 2 1 2019-08-30 13:32:54 1 1 2019-08-30 13:32:54 2 4 2019-08-30 13:42:54 1 1 2019-08-30 13:42:54 2 3 2019-08-30 13:47:54 1 1 2019-08-30 13:47:54 2 4 2019-08-30 13:52:54 1 1 2019-08-30 13:52:54 2 4 2019-08-30 14:47:54 1 1 2019-08-30 14:47:54 2 4 2019-08-30 14:52:54 1 1 2019-08-30 14:52:54 2 2 2019-08-30 15:12:54 1 2 2019-08-30 15:12:54 2 1 2019-08-30 15:32:54 1 2 2019-08-30 15:32:54 2 3 2019-08-30 15:47:54 1 2 2019-08-30 15:47:54 2 4 2019-08-30 16:02:54 1 2 2019-08-30 16:02:54 2 3 2019-08-30 16:47:54 1 2 2019-08-30 16:47:54 2 5 2019-08-30 16:57:54 1 2 2019-08-30 16:57:54 2 4 2019-08-30 17:02:54 1 1 2019-08-30 17:02:54 2 3 2019-08-30 17:07:54 1 1 2019-08-30 17:07:54 2 3 2019-08-30 17:22:54 1 1 2019-08-30 17:22:54 2 2 2019-08-30 18:02:54 1 2 2019-08-30 18:02:54 2 3 2019-08-30 18:07:54 1 2 2019-08-30 18:07:54 2 4 2019-08-30 18:17:54 1 2 2019-08-30 18:17:54 2 7 2019-08-30 18:42:54 1 3 2019-08-30 18:42:54 2 6 2019-08-30 18:47:54 1 3 2019-08-30 18:47:54 2 7 2019-08-30 19:32:54 1 3 2019-08-30 19:32:54 2 6 2019-08-30 20:02:54 1 2 2019-08-30 20:02:54 2 5 2019-08-30 20:07:54 1 2 2019-08-30 20:07:54 2 4 2019-08-30 20:17:54 1 2 2019-08-30 20:17:54 2 2 2019-08-30 20:52:54 1 2 2019-08-30 20:52:54 2 5 2019-08-30 20:57:54 1 2 2019-08-30 20:57:54 2 5 2019-08-30 21:07:54 1 2 2019-08-30 21:07:54 2 6 2019-08-30 22:12:54 1 2 2019-08-30 22:12:54 2 7 2019-08-30 22:22:54 1 2 2019-08-30 22:22:54 2 7 2019-08-30 22:27:54 1 2 2019-08-30 22:27:54 2 8 2019-08-30 22:37:54 1 3 2019-08-30 22:37:54 2 6 2019-08-30 22:42:54 1 3 2019-08-30 22:42:54 2 5 2019-08-30 22:52:54 1 3 2019-08-30 22:52:54 2 7 2019-08-30 22:57:54 1 2 2019-08-30 22:57:54 2 6 2019-08-30 23:02:54 1 2 2019-08-30 23:02:54 2 5 2019-08-30 23:07:54 1 2 2019-08-30 23:07:54 2 6 2019-08-30 23:12:54 1 2 2019-08-30 23:12:54 2 7 2019-08-30 23:17:54 1 1 2019-08-30 23:17:54 2 7 2019-08-30 23:22:54 1 2 2019-08-30 23:22:54 2 6 2019-08-30 23:27:54 1 1 2019-08-30 23:27:54 2 7 2019-08-30 23:32:54 1 2 2019-08-30 23:32:54 2 7 2019-08-30 23:37:54 1 2 2019-08-30 23:37:54 2 6 2019-08-30 23:42:54 1 2 2019-08-30 23:42:54 2 7 2019-08-30 23:47:54 1 2 2019-08-30 23:47:54 2 7 2019-08-30 23:52:54 1 2 2019-08-30 23:52:54 2 6 2019-08-30 23:57:54 1 2 2019-08-30 23:57:54 2 6 2019-08-31 00:02:54 1 2 2019-08-31 00:02:54 2 8 2019-08-31 00:07:54 1 2 2019-08-31 00:07:54 2 7 2019-08-31 00:12:54 1 1 2019-08-31 00:12:54 2 5 2019-08-31 00:17:54 1 1 2019-08-31 00:17:54 2 5 2019-08-31 00:22:54 1 2 2019-08-30 01:12:54 1 2 2019-08-30 01:12:54 2 4 2019-08-30 01:17:54 1 1 2019-08-30 01:17:54 2 4 2019-08-30 01:22:54 1 1 2019-08-30 01:22:54 2 4 2019-08-30 01:27:54 1 1 2019-08-30 01:27:54 2 4 2019-08-30 01:37:54 1 1 2019-08-30 01:37:54 2 5 2019-08-30 02:17:54 1 1 2019-08-30 02:17:54 2 4 2019-08-30 02:22:54 1 1 2019-08-30 02:22:54 2 4 2019-08-30 02:32:54 1 1 2019-08-30 02:32:54 2 5 2019-08-30 02:57:54 1 1 2019-08-30 02:57:54 2 3 2019-08-30 03:02:54 1 1 2019-08-30 03:02:54 2 3 2019-08-30 03:22:54 1 1 2019-08-30 03:22:54 2 2 2019-08-30 03:27:54 1 1 2019-08-30 03:27:54 2 2 2019-08-30 03:32:54 1 1 2019-08-30 03:32:54 2 2 2019-08-30 03:37:54 1 1 2019-08-30 03:37:54 2 2 2019-08-30 04:22:54 1 1 2019-08-30 04:22:54 2 4 2019-08-30 04:32:54 1 1 2019-08-30 04:32:54 2 1 2019-08-30 04:37:54 1 1 2019-08-30 04:37:54 2 1 2019-08-30 04:42:54 1 1 2019-08-30 04:42:54 2 1 2019-08-30 04:47:54 1 1 2019-08-30 04:47:54 2 1 2019-08-30 04:52:54 1 1 2019-08-30 04:52:54 2 1 2019-08-30 04:57:54 1 1 2019-08-30 04:57:54 2 1 2019-08-30 05:02:54 1 1 2019-08-30 05:02:54 2 1 2019-08-30 05:07:54 1 1 2019-08-30 05:07:54 2 1 2019-08-30 05:12:54 1 1 2019-08-30 05:12:54 2 1 2019-08-30 05:17:54 1 1 2019-08-30 05:17:54 2 1 2019-08-30 05:22:54 1 1 2019-08-30 05:22:54 2 1 2019-08-30 05:27:54 1 1 2019-08-30 05:27:54 2 1 2019-08-30 05:32:54 1 1 2019-08-30 05:32:54 2 1 2019-08-30 05:37:54 1 1 2019-08-30 05:37:54 2 1 2019-08-30 05:42:54 1 1 2019-08-30 05:42:54 2 1 2019-08-30 05:47:54 1 1 2019-08-30 05:47:54 2 1 2019-08-30 05:52:54 1 1 2019-08-30 05:52:54 2 1 2019-08-30 05:57:54 1 1 2019-08-30 05:57:54 2 1 2019-08-30 06:02:54 1 1 2019-08-30 06:02:54 2 1 2019-08-30 06:07:54 1 1 2019-08-30 06:07:54 2 1 2019-08-30 06:12:54 1 1 2019-08-30 06:12:54 2 1 2019-08-30 06:57:54 1 2 2019-08-30 06:57:54 2 1 2019-08-30 07:02:54 1 2 2019-08-30 07:02:54 2 2 2019-08-30 07:07:54 1 2 2019-08-30 07:07:54 2 2 2019-08-30 07:37:54 1 1 2019-08-30 07:42:54 1 1 2019-08-30 07:47:54 1 1 2019-08-30 08:22:54 1 2 2019-08-30 08:22:54 2 1 2019-08-30 08:32:54 1 3 2019-08-30 08:32:54 2 2 2019-08-30 08:37:54 1 3 2019-08-30 08:37:54 2 2 2019-08-30 08:42:54 1 3 2019-08-30 08:42:54 2 3 2019-08-30 10:07:54 1 2 2019-08-30 10:07:54 2 6 2019-08-30 10:47:54 1 2 2019-08-30 10:47:54 2 2 2019-08-30 11:07:54 1 2 2019-08-30 11:07:54 2 2 2019-08-30 11:22:54 1 2 2019-08-30 11:22:54 2 2 2019-08-30 11:27:54 1 2 2019-08-30 11:27:54 2 1 2019-08-30 11:47:54 1 1 2019-08-30 11:47:54 2 3 2019-08-30 11:57:54 1 1 2019-08-30 11:57:54 2 2 2019-08-30 12:12:54 1 1 2019-08-30 12:12:54 2 1 2019-08-30 12:57:54 1 1 2019-08-30 12:57:54 2 1 2019-08-30 13:12:54 1 2 2019-08-30 13:12:54 2 2 2019-08-30 13:17:54 1 2 2019-08-30 13:17:54 2 3 2019-08-30 13:27:54 1 1 2019-08-30 13:27:54 2 5 2019-08-30 13:37:54 1 1 2019-08-30 13:37:54 2 5 2019-08-30 14:02:54 1 1 2019-08-30 14:02:54 2 4 2019-08-30 14:12:54 1 1 2019-08-30 14:12:54 2 3 2019-08-30 14:22:54 1 1 2019-08-30 14:22:54 2 5 2019-08-30 14:32:54 1 1 2019-08-30 14:32:54 2 4 2019-08-30 14:42:54 1 1 2019-08-30 14:42:54 2 4 2019-08-30 14:57:54 1 2 2019-08-30 14:57:54 2 5 2019-08-30 15:02:54 1 3 2019-08-30 15:02:54 2 2 2019-08-30 15:17:54 1 3 2019-08-30 15:17:54 2 3 2019-08-30 15:22:54 1 3 2019-08-30 15:22:54 2 4 2019-08-30 15:37:54 1 2 2019-08-30 15:37:54 2 4 2019-08-30 15:57:54 1 3 2019-08-30 15:57:54 2 4 2019-08-30 16:12:54 1 2 2019-08-30 16:12:54 2 3 2019-08-30 16:17:54 1 2 2019-08-30 16:17:54 2 3 2019-08-30 16:27:54 1 2 2019-08-30 16:27:54 2 4 2019-08-30 16:32:54 1 2 2019-08-30 16:32:54 2 2 2019-08-30 16:42:54 1 3 2019-08-30 16:42:54 2 4 2019-08-30 16:52:54 1 2 2019-08-30 16:52:54 2 5 2019-08-30 17:37:54 1 2 2019-08-30 17:37:54 2 1 2019-08-30 17:52:54 1 3 2019-08-30 17:52:54 2 4 2019-08-30 18:27:54 1 2 2019-08-30 18:27:54 2 6 2019-08-30 18:32:55 1 3 2019-08-30 18:32:55 2 6 2019-08-30 18:37:54 1 3 2019-08-30 18:37:54 2 6 2019-08-30 19:02:54 1 3 2019-08-30 19:02:54 2 6 2019-08-30 19:17:54 1 3 2019-08-30 19:17:54 2 6 2019-08-30 19:22:54 1 3 2019-08-30 19:22:54 2 5 2019-08-30 19:42:54 1 3 2019-08-30 19:42:54 2 5 2019-08-30 19:57:54 1 1 2019-08-30 19:57:54 2 5 2019-08-30 20:12:54 1 2 2019-08-30 20:12:54 2 4 2019-08-30 20:22:54 1 1 2019-08-30 20:22:54 2 2 2019-08-30 20:32:54 1 1 2019-08-30 20:32:54 2 4 2019-08-30 20:37:54 1 2 2019-08-30 20:37:54 2 4 2019-08-30 20:42:54 1 2 2019-08-30 20:42:54 2 4 2019-08-30 20:47:54 1 2 2019-08-30 20:47:54 2 3 2019-08-30 21:12:54 1 2 2019-08-30 21:12:54 2 7 2019-08-30 21:32:54 2 9 2019-08-30 21:52:54 1 1 2019-08-31 00:22:54 2 6 2019-08-31 00:27:54 1 2 2019-08-31 00:27:54 2 5 2019-08-31 00:57:54 1 1 2019-08-31 00:57:54 2 6 2019-08-31 01:02:54 2 6 2019-08-31 01:07:54 2 6 2019-08-31 01:12:54 2 6 2019-08-31 01:17:54 2 6 2019-08-31 01:42:54 2 5 2019-08-31 01:47:54 2 5 2019-08-31 01:52:54 2 5 2019-08-31 01:57:54 2 5 2019-08-31 02:02:54 2 5 2019-08-31 02:07:54 2 5 2019-08-31 02:27:54 1 1 2019-08-31 02:27:54 2 6 2019-08-31 03:17:54 1 1 2019-08-31 03:17:54 2 5 2019-08-31 03:37:54 1 1 2019-08-31 03:37:54 2 3 2019-08-31 03:42:54 1 1 2019-08-31 03:42:54 2 3 2019-08-31 04:02:54 1 1 2019-08-31 04:02:54 2 3 2019-08-31 04:07:54 1 1 2019-08-31 04:07:54 2 3 2019-08-31 04:12:54 1 1 2019-08-31 04:12:54 2 3 2019-08-31 04:17:54 1 1 2019-08-31 04:17:54 2 3 2019-08-31 04:22:54 1 1 2019-08-31 04:22:54 2 3 2019-08-31 04:27:54 1 1 2019-08-31 04:27:54 2 3 2019-08-31 04:32:54 1 1 2019-08-31 04:32:54 2 3 2019-08-31 04:37:54 1 1 2019-08-31 04:37:54 2 3 2019-08-31 04:42:54 1 1 2019-08-31 04:42:54 2 3 2019-08-31 04:47:54 1 1 2019-08-31 04:47:54 2 3 2019-08-31 04:52:54 1 1 2019-08-31 04:52:54 2 3 2019-08-31 04:57:54 1 1 2019-08-31 04:57:54 2 3 2019-08-31 05:02:54 1 1 2019-08-31 05:02:54 2 3 2019-08-31 05:07:54 1 1 2019-08-31 05:07:54 2 3 2019-08-31 05:12:54 1 1 2019-08-31 05:12:54 2 3 2019-08-31 05:52:54 1 2 2019-08-31 05:52:54 2 3 2019-08-31 06:27:54 1 2 2019-08-31 06:27:54 2 1 2019-08-31 06:32:54 1 2 2019-08-31 06:32:54 2 1 2019-08-31 07:02:54 1 2 2019-08-31 07:02:54 2 1 2019-08-31 07:32:54 1 1 2019-08-31 07:32:54 2 1 2019-08-31 08:07:54 1 2 2019-08-31 08:07:54 2 2 2019-08-31 08:22:54 1 1 2019-08-31 08:22:54 2 2 2019-08-31 08:27:54 1 1 2019-08-31 08:27:54 2 2 2019-08-31 08:42:54 1 3 2019-08-31 08:42:54 2 2 2019-08-31 08:52:54 1 4 2019-08-31 08:52:54 2 4 2019-08-31 09:02:54 1 4 2019-08-31 09:02:54 2 3 2019-08-31 09:22:54 1 2 2019-08-31 09:22:54 2 3 2019-08-31 10:07:54 2 5 2019-08-31 10:17:54 1 1 2019-08-31 10:17:54 2 3 2019-08-31 10:22:54 1 2 2019-08-31 10:22:54 2 3 2019-08-31 10:37:54 1 2 2019-08-31 10:37:54 2 4 2019-08-31 10:52:54 1 2 2019-08-31 10:52:54 2 4 2019-08-31 10:57:54 1 2 2019-08-31 10:57:54 2 3 2019-08-31 11:02:54 1 2 2019-08-31 11:02:54 2 3 2019-08-31 11:22:54 1 1 2019-08-31 11:22:54 2 1 2019-08-31 11:47:54 1 2 2019-08-31 11:47:54 2 7 2019-08-31 11:52:54 1 1 2019-08-31 11:52:54 2 5 2019-08-31 12:07:54 1 1 2019-08-31 12:07:54 2 3 2019-08-31 12:22:54 1 1 2019-08-31 12:22:54 2 3 2019-08-31 12:27:54 1 1 2019-08-31 12:27:54 2 3 2019-08-31 12:42:54 1 2 2019-08-31 12:42:54 2 1 2019-08-31 12:47:54 1 1 2019-08-31 12:47:54 2 1 2019-08-31 12:52:54 1 1 2019-08-31 12:52:54 2 1 2019-08-31 12:57:54 1 1 2019-08-31 12:57:54 2 1 2019-08-31 13:17:54 1 1 2019-08-31 13:17:54 2 4 2019-08-31 13:22:54 1 1 2019-08-31 13:22:54 2 4 2019-08-31 13:42:54 1 2 2019-08-31 13:42:54 2 5 2019-08-31 13:47:54 1 1 2019-08-31 13:47:54 2 5 2019-08-31 14:02:54 1 1 2019-08-31 14:02:54 2 5 2019-08-31 14:07:54 1 1 2019-08-31 14:07:54 2 4 2019-08-31 14:17:54 2 7 2019-08-31 14:37:54 1 1 2019-08-31 14:37:54 2 4 2019-08-31 14:47:54 1 1 2019-08-31 14:47:54 2 8 2019-08-31 14:52:54 1 2 2019-08-31 14:52:54 2 8 2019-08-31 15:02:54 1 2 2019-08-31 15:02:54 2 7 2019-08-31 15:07:54 1 2 2019-08-31 15:07:54 2 7 2019-08-31 15:22:54 1 2 2019-08-31 15:22:54 2 7 2019-08-31 15:57:54 1 1 2019-08-31 15:57:54 2 6 2019-08-31 16:02:54 1 2 2019-08-31 16:02:54 2 4 2019-08-31 16:27:54 1 2 2019-08-31 16:27:54 2 5 2019-08-31 16:57:54 1 2 2019-08-31 16:57:54 2 1 2019-08-31 17:02:54 1 1 2019-08-31 17:02:54 2 3 2019-08-31 17:07:54 1 2 2019-08-31 17:07:54 2 2 2019-08-31 17:17:54 1 2 2019-08-31 17:17:54 2 1 2019-08-31 18:17:54 1 2 2019-08-31 18:17:54 2 4 2019-08-31 18:37:54 2 5 2019-08-31 18:42:54 2 4 2019-08-31 18:47:55 2 3 2019-08-31 19:02:54 2 1 2019-08-31 19:22:54 2 5 2019-08-31 19:47:54 2 6 2019-08-31 20:07:54 1 1 2019-08-31 20:07:54 2 10 2019-08-31 20:12:54 2 10 2019-08-31 20:17:54 2 8 2019-08-31 20:22:54 2 6 2019-08-31 20:47:54 2 3 2019-08-31 20:52:54 2 4 2019-08-31 20:57:54 2 4 2019-08-31 21:12:54 2 8 2019-08-31 21:32:54 1 1 2019-08-31 21:32:54 2 9 2019-08-31 21:37:54 1 1 2019-08-31 21:37:54 2 10 2019-08-31 22:12:54 1 1 2019-08-31 22:12:54 2 8 2019-08-31 23:22:54 1 2 2019-08-31 23:22:54 2 8 2019-08-31 23:52:54 1 1 2019-08-31 23:52:54 2 5 2019-09-01 00:17:54 1 2 2019-09-01 00:17:54 2 4 2019-09-01 00:22:54 1 2 2019-09-01 00:22:54 2 4 2019-09-01 00:27:54 1 2 2019-09-01 00:27:54 2 6 2019-09-01 00:37:54 1 1 2019-09-01 00:37:54 2 6 2019-09-01 00:47:54 1 1 2019-08-31 00:32:54 1 1 2019-08-31 00:32:54 2 5 2019-08-31 00:42:54 1 1 2019-08-31 00:42:54 2 5 2019-08-31 01:37:54 2 4 2019-08-31 02:12:54 2 5 2019-08-31 02:22:54 1 1 2019-08-31 02:22:54 2 7 2019-08-31 02:42:54 1 1 2019-08-31 02:42:54 2 4 2019-08-31 02:47:54 1 1 2019-08-31 02:47:54 2 4 2019-08-31 02:52:54 1 1 2019-08-31 02:52:54 2 4 2019-08-31 02:57:54 1 1 2019-08-31 02:57:54 2 4 2019-08-31 03:02:54 1 1 2019-08-31 03:02:54 2 4 2019-08-31 03:07:54 1 1 2019-08-31 03:07:54 2 4 2019-08-31 03:12:54 1 1 2019-08-31 03:12:54 2 4 2019-08-31 03:22:54 1 1 2019-08-31 03:22:54 2 5 2019-08-31 03:32:54 1 1 2019-08-31 03:32:54 2 4 2019-08-31 03:47:54 1 1 2019-08-31 03:47:54 2 3 2019-08-31 03:52:54 1 1 2019-08-31 03:52:54 2 3 2019-08-31 05:17:54 1 1 2019-08-31 05:17:54 2 3 2019-08-31 05:22:54 1 1 2019-08-31 05:22:54 2 3 2019-08-31 05:27:54 1 1 2019-08-31 05:27:54 2 3 2019-08-31 05:32:54 1 1 2019-08-31 05:32:54 2 3 2019-08-31 05:37:54 1 1 2019-08-31 05:37:54 2 3 2019-08-31 05:42:54 1 1 2019-08-31 05:42:54 2 3 2019-08-31 05:47:54 1 1 2019-08-31 05:47:54 2 3 2019-08-31 05:57:54 1 2 2019-08-31 05:57:54 2 3 2019-08-31 06:02:54 1 2 2019-08-31 06:02:54 2 3 2019-08-31 06:22:54 1 2 2019-08-31 06:22:54 2 2 2019-08-31 06:42:54 1 1 2019-08-31 06:42:54 2 2 2019-08-31 06:47:54 1 1 2019-08-31 06:47:54 2 2 2019-08-31 07:07:54 1 2 2019-08-31 07:07:54 2 1 2019-08-31 07:12:54 1 2 2019-08-31 07:12:54 2 1 2019-08-31 07:17:54 1 2 2019-08-31 07:17:54 2 1 2019-08-31 07:22:54 1 2 2019-08-31 07:22:54 2 1 2019-08-31 07:27:54 1 2 2019-08-31 07:27:54 2 1 2019-08-31 07:57:54 1 2 2019-08-31 08:02:54 1 2 2019-08-31 08:02:54 2 1 2019-08-31 08:12:54 1 1 2019-08-31 08:12:54 2 1 2019-08-31 08:17:54 1 1 2019-08-31 08:17:54 2 1 2019-08-31 08:32:54 1 2 2019-08-31 08:32:54 2 1 2019-08-31 08:37:54 1 3 2019-08-31 08:37:54 2 1 2019-08-31 08:47:54 1 3 2019-08-31 08:47:54 2 3 2019-08-31 09:17:54 1 3 2019-08-31 09:17:54 2 3 2019-08-31 09:32:54 1 3 2019-08-31 09:32:54 2 4 2019-08-31 09:37:54 1 2 2019-08-31 09:37:54 2 4 2019-08-31 09:42:54 1 1 2019-08-31 09:42:54 2 4 2019-08-31 10:02:54 2 4 2019-08-31 10:27:54 1 1 2019-08-31 10:27:54 2 3 2019-08-31 11:07:54 1 2 2019-08-31 11:07:54 2 3 2019-08-31 11:12:54 1 3 2019-08-31 11:12:54 2 2 2019-08-31 11:17:54 1 2 2019-08-31 11:17:54 2 2 2019-08-31 11:32:54 1 2 2019-08-31 11:32:54 2 4 2019-08-31 12:37:54 1 1 2019-08-31 12:37:54 2 2 2019-08-31 13:02:54 1 1 2019-08-31 13:02:54 2 1 2019-08-31 13:12:54 1 1 2019-08-31 13:12:54 2 3 2019-08-31 13:32:54 1 1 2019-08-31 13:32:54 2 6 2019-08-31 13:37:54 1 1 2019-08-31 13:37:54 2 5 2019-08-31 14:27:54 1 1 2019-08-31 14:27:54 2 6 2019-08-31 14:32:54 1 1 2019-08-31 14:32:54 2 5 2019-08-31 14:57:54 1 2 2019-08-31 14:57:54 2 7 2019-08-31 15:12:54 1 2 2019-08-31 15:12:54 2 8 2019-08-31 15:17:54 1 2 2019-08-31 15:17:54 2 8 2019-08-31 15:47:54 1 2 2019-08-31 15:47:54 2 7 2019-08-31 16:22:54 1 2 2019-08-31 16:22:54 2 3 2019-08-31 16:37:54 1 2 2019-08-31 16:37:54 2 3 2019-08-31 16:42:54 1 2 2019-08-31 16:42:54 2 3 2019-08-31 16:47:54 1 2 2019-08-31 16:47:54 2 2 2019-08-31 17:27:54 1 2 2019-08-31 17:27:54 2 2 2019-08-31 17:52:54 2 9 2019-08-31 17:57:54 2 6 2019-08-31 18:12:54 1 2 2019-08-31 18:12:54 2 5 2019-08-31 18:22:54 2 4 2019-08-31 18:27:54 1 1 2019-08-31 18:27:54 2 4 2019-08-31 18:57:54 2 2 2019-08-31 19:32:54 2 6 2019-08-31 19:42:54 2 6 2019-08-31 19:52:54 2 7 2019-08-31 20:02:54 1 1 2019-08-31 20:02:54 2 6 2019-08-31 20:32:54 2 4 2019-08-31 20:42:54 2 3 2019-08-31 21:02:54 2 5 2019-08-31 21:07:54 2 7 2019-08-31 21:17:54 2 8 2019-08-31 21:52:54 2 8 2019-08-31 21:57:54 2 4 2019-08-31 22:02:54 2 7 2019-08-31 22:07:54 2 7 2019-08-31 22:17:54 1 1 2019-08-31 22:17:54 2 8 2019-08-31 22:42:54 1 3 2019-08-31 22:42:54 2 8 2019-08-31 22:52:54 1 3 2019-08-31 22:52:54 2 9 2019-08-31 23:27:54 1 2 2019-08-31 23:27:54 2 8 2019-08-31 23:32:54 1 2 2019-08-31 23:32:54 2 8 2019-08-31 23:37:54 1 1 2019-08-31 23:37:54 2 8 2019-08-31 23:47:54 1 1 2019-08-31 23:47:54 2 6 2019-08-31 23:57:54 1 1 2019-08-31 23:57:54 2 5 2019-09-01 00:02:54 1 1 2019-09-01 00:02:54 2 6 2019-09-01 00:47:54 2 6 2019-09-01 00:52:54 1 1 2019-09-01 00:52:54 2 6 2019-09-01 00:57:54 1 2 2019-09-01 00:57:54 2 6 2019-09-01 01:02:54 1 2 2019-09-01 01:02:54 2 6 2019-09-01 01:07:54 1 2 2019-09-01 01:07:54 2 6 2019-09-01 01:17:54 1 2 2019-09-01 01:17:54 2 6 2019-09-01 01:22:54 1 2 2019-09-01 01:22:54 2 6 2019-09-01 01:27:54 1 2 2019-09-01 01:27:54 2 6 2019-09-01 01:32:54 1 2 2019-09-01 01:32:54 2 5 2019-08-31 00:37:54 1 1 2019-08-31 00:37:54 2 6 2019-08-31 00:47:54 1 1 2019-08-31 00:47:54 2 6 2019-08-31 00:52:54 1 1 2019-08-31 00:52:54 2 6 2019-08-31 01:22:54 2 5 2019-08-31 01:27:54 2 5 2019-08-31 01:32:54 2 5 2019-08-31 02:17:54 1 1 2019-08-31 02:17:54 2 6 2019-08-31 02:32:54 1 1 2019-08-31 02:32:54 2 5 2019-08-31 02:37:54 1 1 2019-08-31 02:37:54 2 5 2019-08-31 03:27:54 1 1 2019-08-31 03:27:54 2 5 2019-08-31 03:57:54 1 1 2019-08-31 03:57:54 2 3 2019-08-31 06:07:54 1 2 2019-08-31 06:07:54 2 3 2019-08-31 06:12:54 1 2 2019-08-31 06:12:54 2 3 2019-08-31 06:17:54 1 2 2019-08-31 06:17:54 2 3 2019-08-31 06:37:54 1 1 2019-08-31 06:37:54 2 1 2019-08-31 06:52:54 1 2 2019-08-31 06:52:54 2 1 2019-08-31 06:57:54 1 2 2019-08-31 06:57:54 2 1 2019-08-31 07:37:54 1 1 2019-08-31 07:42:54 1 1 2019-08-31 07:47:54 1 1 2019-08-31 07:52:54 1 2 2019-08-31 08:57:54 1 4 2019-08-31 08:57:54 2 3 2019-08-31 09:07:54 1 4 2019-08-31 09:07:54 2 4 2019-08-31 09:12:54 1 3 2019-08-31 09:12:54 2 3 2019-08-31 09:27:54 1 3 2019-08-31 09:27:54 2 3 2019-08-31 09:47:54 1 1 2019-08-31 09:47:54 2 4 2019-08-31 09:52:54 1 1 2019-08-31 09:52:54 2 4 2019-08-31 09:57:54 1 1 2019-08-31 09:57:54 2 4 2019-08-31 10:12:54 1 1 2019-08-31 10:12:54 2 4 2019-08-31 10:32:54 1 1 2019-08-31 10:32:54 2 5 2019-08-31 10:42:54 1 2 2019-08-31 10:42:54 2 3 2019-08-31 10:47:54 1 2 2019-08-31 10:47:54 2 3 2019-08-31 11:27:54 1 2 2019-08-31 11:27:54 2 3 2019-08-31 11:37:54 1 2 2019-08-31 11:37:54 2 5 2019-08-31 11:42:54 1 2 2019-08-31 11:42:54 2 6 2019-08-31 11:57:54 1 1 2019-08-31 11:57:54 2 4 2019-08-31 12:02:54 1 1 2019-08-31 12:02:54 2 3 2019-08-31 12:12:54 1 1 2019-08-31 12:12:54 2 4 2019-08-31 12:17:54 1 1 2019-08-31 12:17:54 2 4 2019-08-31 12:32:54 1 1 2019-08-31 12:32:54 2 2 2019-08-31 13:07:54 1 1 2019-08-31 13:07:54 2 1 2019-08-31 13:27:54 1 2 2019-08-31 13:27:54 2 5 2019-08-31 13:52:54 1 2 2019-08-31 13:52:54 2 7 2019-08-31 13:57:54 1 2 2019-08-31 13:57:54 2 5 2019-08-31 14:12:54 1 1 2019-08-31 14:12:54 2 5 2019-08-31 14:22:54 1 1 2019-08-31 14:22:54 2 7 2019-08-31 14:42:54 1 1 2019-08-31 14:42:54 2 8 2019-08-31 15:27:54 1 2 2019-08-31 15:27:54 2 6 2019-08-31 15:32:54 1 2 2019-08-31 15:32:54 2 7 2019-08-31 15:37:54 1 2 2019-08-31 15:37:54 2 6 2019-08-31 15:42:54 1 2 2019-08-31 15:42:54 2 6 2019-08-31 15:52:54 1 2 2019-08-31 15:52:54 2 7 2019-08-31 16:07:54 1 2 2019-08-31 16:07:54 2 3 2019-08-31 16:12:54 1 2 2019-08-31 16:12:54 2 3 2019-08-31 16:17:54 1 2 2019-08-31 16:17:54 2 3 2019-08-31 16:32:54 1 2 2019-08-31 16:32:54 2 4 2019-08-31 16:52:54 1 2 2019-08-31 16:52:54 2 2 2019-08-31 17:12:54 1 2 2019-08-31 17:12:54 2 3 2019-08-31 17:22:54 1 2 2019-08-31 17:22:54 2 2 2019-08-31 17:32:54 1 2 2019-08-31 17:32:54 2 2 2019-08-31 17:37:54 1 2 2019-08-31 17:37:54 2 3 2019-08-31 17:42:54 1 2 2019-08-31 17:42:54 2 4 2019-08-31 17:47:54 2 6 2019-08-31 18:02:54 2 6 2019-08-31 18:07:54 1 1 2019-08-31 18:07:54 2 8 2019-08-31 18:32:54 2 3 2019-08-31 18:52:54 2 2 2019-08-31 19:07:54 1 1 2019-08-31 19:07:54 2 1 2019-08-31 19:12:54 1 1 2019-08-31 19:12:54 2 4 2019-08-31 19:17:54 1 1 2019-08-31 19:17:54 2 5 2019-08-31 19:27:54 2 6 2019-08-31 19:37:54 2 5 2019-08-31 19:57:54 2 7 2019-08-31 20:27:54 2 5 2019-08-31 20:37:54 2 4 2019-08-31 21:22:54 2 9 2019-08-31 21:27:54 2 9 2019-08-31 21:42:54 1 1 2019-08-31 21:42:54 2 9 2019-08-31 21:47:54 2 8 2019-08-31 22:22:54 1 1 2019-08-31 22:22:54 2 8 2019-08-31 22:27:54 1 2 2019-08-31 22:27:54 2 7 2019-08-31 22:32:54 1 2 2019-08-31 22:32:54 2 6 2019-08-31 22:37:54 1 3 2019-08-31 22:37:54 2 6 2019-08-31 22:47:54 1 3 2019-08-31 22:47:54 2 6 2019-08-31 22:57:54 1 2 2019-08-31 22:57:54 2 9 2019-08-31 23:02:54 1 2 2019-08-31 23:02:54 2 10 2019-08-31 23:07:54 1 2 2019-08-31 23:07:54 2 10 2019-08-31 23:12:54 1 2 2019-08-31 23:12:54 2 8 2019-08-31 23:17:54 1 2 2019-08-31 23:17:54 2 9 2019-08-31 23:42:54 1 1 2019-08-31 23:42:54 2 7 2019-09-01 00:07:54 1 1 2019-09-01 00:07:54 2 7 2019-09-01 00:12:54 1 1 2019-09-01 00:12:54 2 5 2019-09-01 00:32:54 1 1 2019-09-01 00:32:54 2 6 2019-09-01 00:42:54 1 1 2019-09-01 00:42:54 2 5 2019-09-01 01:12:54 1 2 2019-09-01 01:12:54 2 5 2019-09-01 01:37:54 1 2 2019-09-01 01:37:54 2 6 2019-09-01 01:42:54 1 2 2019-09-01 01:42:54 2 4 2019-09-01 01:47:54 1 2 2019-09-01 01:47:54 2 5 2019-09-01 01:52:54 1 2 2019-09-01 01:52:54 2 5 2019-09-01 01:57:54 1 2 2019-09-01 01:57:54 2 4 2019-09-01 02:02:54 1 2 2019-09-01 02:02:54 2 4 2019-09-01 02:07:54 1 2 2019-09-01 02:07:54 2 3 2019-09-01 02:12:54 1 2 2019-09-01 02:12:54 2 4 2019-09-01 02:17:54 1 2 2019-09-01 02:17:54 2 3 2019-09-01 02:37:54 1 2 2019-09-01 02:37:54 2 3 2019-09-01 02:42:54 1 2 2019-09-01 02:42:54 2 3 2019-09-01 02:47:54 1 2 2019-09-01 02:47:54 2 3 2019-09-01 02:52:54 1 2 2019-09-01 02:52:54 2 3 2019-09-01 02:57:54 1 2 2019-09-01 02:57:54 2 3 2019-09-01 03:02:54 1 2 2019-09-01 03:02:54 2 3 2019-09-01 03:52:54 1 2 2019-09-01 03:52:54 2 2 2019-09-01 03:57:54 1 2 2019-09-01 03:57:54 2 2 2019-09-01 04:02:54 1 2 2019-09-01 04:02:54 2 2 2019-09-01 04:07:54 1 2 2019-09-01 04:07:54 2 2 2019-09-01 04:12:54 1 2 2019-09-01 04:12:54 2 2 2019-09-01 04:17:54 1 2 2019-09-01 04:17:54 2 2 2019-09-01 05:27:54 1 2 2019-09-01 05:27:54 2 2 2019-09-01 05:32:54 1 2 2019-09-01 05:32:54 2 2 2019-09-01 05:47:54 1 2 2019-09-01 05:47:54 2 1 2019-09-01 05:52:54 1 2 2019-09-01 05:52:54 2 1 2019-09-01 05:57:54 1 2 2019-09-01 05:57:54 2 1 2019-09-01 06:02:54 1 2 2019-09-01 06:02:54 2 1 2019-09-01 06:07:54 1 2 2019-09-01 06:07:54 2 1 2019-09-01 06:12:54 1 2 2019-09-01 06:12:54 2 1 2019-09-01 06:17:54 1 2 2019-09-01 06:17:54 2 1 2019-09-01 06:22:54 1 2 2019-09-01 06:22:54 2 1 2019-09-01 07:12:54 1 3 2019-09-01 07:12:54 2 1 2019-09-01 07:47:54 1 2 2019-09-01 07:47:54 2 2 2019-09-01 07:52:54 1 2 2019-09-01 07:52:54 2 2 2019-09-01 07:57:54 1 2 2019-09-01 07:57:54 2 1 2019-09-01 08:17:54 1 2 2019-09-01 08:17:54 2 4 2019-09-01 08:37:54 1 2 2019-09-01 08:37:54 2 2 2019-09-01 08:42:54 1 2 2019-09-01 08:42:54 2 2 2019-09-01 08:52:54 1 2 2019-09-01 08:52:54 2 2 2019-09-01 09:17:54 1 2 2019-09-01 09:17:54 2 4 2019-09-01 09:57:54 1 3 2019-09-01 09:57:54 2 5 2019-09-01 10:12:54 1 2 2019-09-01 10:12:54 2 4 2019-09-01 10:17:54 1 2 2019-09-01 10:17:54 2 4 2019-09-01 10:42:54 1 2 2019-09-01 10:42:54 2 2 2019-09-01 10:47:54 1 3 2019-09-01 10:47:54 2 2 2019-09-01 10:57:54 1 3 2019-09-01 10:57:54 2 2 2019-09-01 11:12:54 1 3 2019-09-01 11:12:54 2 4 2019-09-01 11:42:54 1 3 2019-09-01 11:42:54 2 4 2019-09-01 11:47:54 1 3 2019-09-01 11:47:54 2 4 2019-09-01 11:52:54 1 3 2019-09-01 11:52:54 2 4 2019-09-01 12:02:54 1 3 2019-09-01 12:02:54 2 3 2019-09-01 12:27:54 1 3 2019-09-01 12:27:54 2 2 2019-09-01 12:57:54 1 3 2019-09-01 12:57:54 2 4 2019-09-01 13:02:54 1 3 2019-09-01 13:02:54 2 4 2019-09-01 13:07:54 1 3 2019-09-01 13:07:54 2 4 2019-09-01 13:27:54 1 2 2019-09-01 13:27:54 2 3 2019-09-01 13:37:54 1 2 2019-09-01 13:37:54 2 4 2019-09-01 13:47:54 1 2 2019-09-01 13:47:54 2 4 2019-09-01 13:52:54 1 2 2019-09-01 13:52:54 2 6 2019-09-01 14:02:54 1 3 2019-09-01 14:02:54 2 3 2019-09-01 14:12:54 1 3 2019-09-01 14:12:54 2 3 2019-09-01 14:17:54 1 3 2019-09-01 14:17:54 2 5 2019-09-01 14:52:54 1 4 2019-09-01 14:52:54 2 3 2019-09-01 15:02:54 1 3 2019-09-01 15:02:54 2 6 2019-09-01 15:27:54 1 4 2019-09-01 15:27:54 2 8 2019-09-01 15:32:54 1 4 2019-09-01 15:32:54 2 9 2019-09-01 15:37:54 1 3 2019-09-01 15:37:54 2 7 2019-09-01 15:47:54 1 3 2019-09-01 15:47:54 2 8 2019-09-01 15:52:54 1 3 2019-09-01 15:52:54 2 7 2019-09-01 16:02:54 1 1 2019-09-01 16:02:54 2 8 2019-09-01 16:32:54 1 2 2019-09-01 16:32:54 2 8 2019-09-01 16:47:54 1 3 2019-09-01 16:47:54 2 9 2019-09-01 16:52:54 1 3 2019-09-01 16:52:54 2 9 2019-09-01 17:07:54 1 3 2019-09-01 17:07:54 2 8 2019-09-01 18:07:54 1 3 2019-09-01 18:07:54 2 5 2019-09-01 18:12:54 1 3 2019-09-01 18:12:54 2 5 2019-09-01 18:37:54 1 3 2019-09-01 18:37:54 2 5 2019-09-01 18:42:54 1 2 2019-09-01 18:42:54 2 7 2019-09-01 18:52:54 1 3 2019-09-01 18:52:54 2 6 2019-09-01 19:07:54 1 3 2019-09-01 19:07:54 2 5 2019-09-01 19:12:54 1 3 2019-09-01 19:12:54 2 6 2019-09-01 19:22:54 1 3 2019-09-01 19:22:54 2 9 2019-09-01 19:42:54 1 2 2019-09-01 19:42:54 2 8 2019-09-01 19:52:54 1 1 2019-09-01 19:52:54 2 8 2019-09-01 19:57:54 1 1 2019-09-01 19:57:54 2 8 2019-09-01 20:17:54 1 2 2019-09-01 20:17:54 2 7 2019-09-01 20:52:54 1 3 2019-09-01 20:52:54 2 4 2019-09-01 20:57:54 1 3 2019-09-01 20:57:54 2 4 2019-09-01 21:07:54 1 3 2019-09-01 21:07:54 2 3 2019-09-01 21:22:54 1 3 2019-09-01 21:22:54 2 3 2019-09-01 21:32:54 1 3 2019-09-01 21:32:54 2 5 2019-09-01 21:42:54 1 2 2019-09-01 21:42:54 2 4 2019-09-01 21:47:54 1 2 2019-09-01 21:47:54 2 3 2019-09-01 22:02:54 1 2 2019-09-01 22:02:54 2 4 2019-09-01 22:12:54 1 2 2019-09-01 22:12:54 2 6 2019-09-01 23:22:54 1 1 2019-09-01 23:22:54 2 4 2019-09-01 23:42:54 1 1 2019-09-01 23:42:54 2 6 2019-09-01 23:57:54 1 1 2019-09-01 23:57:54 2 2 2019-09-02 00:07:54 1 1 2019-09-02 00:07:54 2 3 2019-09-02 00:12:54 1 1 2019-09-01 02:22:54 1 3 2019-09-01 02:22:54 2 3 2019-09-01 03:07:54 1 2 2019-09-01 03:07:54 2 2 2019-09-01 03:12:54 1 2 2019-09-01 03:12:54 2 2 2019-09-01 03:17:54 1 2 2019-09-01 03:17:54 2 2 2019-09-01 03:22:54 1 2 2019-09-01 03:22:54 2 2 2019-09-01 04:22:54 1 2 2019-09-01 04:22:54 2 2 2019-09-01 04:27:54 1 2 2019-09-01 04:27:54 2 2 2019-09-01 04:32:54 1 2 2019-09-01 04:32:54 2 2 2019-09-01 04:37:54 1 2 2019-09-01 04:37:54 2 2 2019-09-01 04:42:54 1 2 2019-09-01 04:42:54 2 2 2019-09-01 04:47:54 1 2 2019-09-01 04:47:54 2 2 2019-09-01 04:52:54 1 2 2019-09-01 04:52:54 2 1 2019-09-01 04:57:54 1 2 2019-09-01 04:57:54 2 1 2019-09-01 05:02:54 1 2 2019-09-01 05:02:54 2 1 2019-09-01 05:07:54 1 2 2019-09-01 05:07:54 2 1 2019-09-01 05:12:54 1 2 2019-09-01 05:12:54 2 1 2019-09-01 05:17:54 1 2 2019-09-01 05:17:54 2 1 2019-09-01 05:22:54 1 2 2019-09-01 05:22:54 2 1 2019-09-01 06:32:54 1 2 2019-09-01 06:32:54 2 1 2019-09-01 06:37:54 1 2 2019-09-01 06:37:54 2 1 2019-09-01 06:42:54 1 3 2019-09-01 06:42:54 2 1 2019-09-01 07:02:54 1 3 2019-09-01 07:02:54 2 2 2019-09-01 07:07:54 1 3 2019-09-01 07:07:54 2 1 2019-09-01 07:42:54 1 2 2019-09-01 07:42:54 2 1 2019-09-01 08:07:54 1 2 2019-09-01 08:07:54 2 4 2019-09-01 08:12:54 1 2 2019-09-01 08:12:54 2 4 2019-09-01 08:32:54 1 2 2019-09-01 08:32:54 2 3 2019-09-01 08:57:54 1 2 2019-09-01 08:57:54 2 3 2019-09-01 09:12:54 1 2 2019-09-01 09:12:54 2 3 2019-09-01 10:02:54 1 3 2019-09-01 10:02:54 2 3 2019-09-01 11:22:54 1 3 2019-09-01 11:22:54 2 4 2019-09-01 11:32:54 1 3 2019-09-01 11:32:54 2 4 2019-09-01 11:37:54 1 3 2019-09-01 11:37:54 2 4 2019-09-01 12:32:54 1 3 2019-09-01 12:32:54 2 2 2019-09-01 12:37:54 1 3 2019-09-01 12:37:54 2 2 2019-09-01 12:42:54 1 3 2019-09-01 12:42:54 2 2 2019-09-01 12:47:54 1 3 2019-09-01 12:47:54 2 2 2019-09-01 12:52:54 1 4 2019-09-01 12:52:54 2 4 2019-09-01 13:22:54 1 2 2019-09-01 13:22:54 2 4 2019-09-01 13:42:54 1 2 2019-09-01 13:42:54 2 4 2019-09-01 14:27:54 1 4 2019-09-01 14:27:54 2 5 2019-09-01 14:32:54 1 4 2019-09-01 14:32:54 2 6 2019-09-01 14:47:54 1 5 2019-09-01 14:47:54 2 4 2019-09-01 14:57:54 1 3 2019-09-01 14:57:54 2 5 2019-09-01 15:07:54 1 3 2019-09-01 15:07:54 2 6 2019-09-01 15:57:54 1 2 2019-09-01 15:57:54 2 8 2019-09-01 16:07:54 1 2 2019-09-01 16:07:54 2 7 2019-09-01 16:12:54 1 2 2019-09-01 16:12:54 2 6 2019-09-01 16:22:54 1 3 2019-09-01 16:22:54 2 7 2019-09-01 16:37:54 1 2 2019-09-01 16:37:54 2 8 2019-09-01 16:42:54 1 2 2019-09-01 16:42:54 2 8 2019-09-01 16:57:54 1 3 2019-09-01 16:57:54 2 8 2019-09-01 17:12:54 1 3 2019-09-01 17:12:54 2 8 2019-09-01 17:27:54 1 3 2019-09-01 17:27:54 2 7 2019-09-01 17:32:54 1 3 2019-09-01 17:32:54 2 6 2019-09-01 17:42:54 1 3 2019-09-01 17:42:54 2 6 2019-09-01 17:57:54 1 3 2019-09-01 17:57:54 2 5 2019-09-01 18:02:54 1 3 2019-09-01 18:02:54 2 6 2019-09-01 18:17:54 1 3 2019-09-01 18:17:54 2 5 2019-09-01 18:47:54 1 3 2019-09-01 18:47:54 2 5 2019-09-01 18:57:54 1 3 2019-09-01 18:57:54 2 6 2019-09-01 19:02:54 1 3 2019-09-01 19:02:54 2 5 2019-09-01 19:37:54 1 3 2019-09-01 19:37:54 2 8 2019-09-01 19:47:54 1 1 2019-09-01 19:47:54 2 9 2019-09-01 20:07:54 1 1 2019-09-01 20:07:54 2 8 2019-09-01 20:12:54 1 2 2019-09-01 20:12:54 2 6 2019-09-01 20:22:54 1 2 2019-09-01 20:22:54 2 7 2019-09-01 20:37:54 1 3 2019-09-01 20:37:54 2 6 2019-09-01 21:02:54 1 3 2019-09-01 21:02:54 2 4 2019-09-01 21:12:54 1 3 2019-09-01 21:12:54 2 3 2019-09-01 21:17:54 1 3 2019-09-01 21:17:54 2 3 2019-09-01 21:27:54 1 3 2019-09-01 21:27:54 2 5 2019-09-01 22:27:54 1 2 2019-09-01 22:27:54 2 6 2019-09-01 22:37:54 1 2 2019-09-01 22:37:54 2 7 2019-09-01 22:42:54 1 2 2019-09-01 22:42:54 2 5 2019-09-01 22:47:54 1 2 2019-09-01 22:47:54 2 6 2019-09-01 23:02:54 1 1 2019-09-01 23:02:54 2 4 2019-09-01 23:12:54 1 1 2019-09-01 23:12:54 2 7 2019-09-01 23:37:54 1 1 2019-09-01 23:37:54 2 6 2019-09-01 23:47:54 1 1 2019-09-01 23:47:54 2 4 2019-09-02 00:02:54 1 1 2019-09-02 00:02:54 2 4 2019-09-02 00:12:54 2 4 2019-09-02 00:17:54 1 1 2019-09-02 00:17:54 2 3 2019-09-02 00:22:54 1 1 2019-09-02 00:22:54 2 3 2019-09-02 00:27:54 1 1 2019-09-02 00:27:54 2 1 2019-09-02 00:32:54 1 1 2019-09-02 00:32:54 2 2 2019-09-02 00:37:54 1 1 2019-09-02 00:37:54 2 2 2019-09-02 00:42:54 1 1 2019-09-02 00:42:54 2 3 2019-09-02 00:47:54 1 1 2019-09-02 00:47:54 2 2 2019-09-02 01:07:54 1 1 2019-09-02 01:07:54 2 3 2019-09-02 01:12:54 1 1 2019-09-02 01:12:54 2 3 2019-09-02 01:17:54 2 3 2019-09-02 01:22:54 1 1 2019-09-02 01:22:54 2 3 2019-09-02 01:27:54 1 1 2019-09-01 02:27:54 1 3 2019-09-01 02:27:54 2 2 2019-09-01 02:32:54 1 3 2019-09-01 02:32:54 2 2 2019-09-01 03:27:54 1 2 2019-09-01 03:27:54 2 1 2019-09-01 03:32:54 1 2 2019-09-01 03:32:54 2 1 2019-09-01 03:37:54 1 2 2019-09-01 03:37:54 2 1 2019-09-01 03:42:54 1 2 2019-09-01 03:42:54 2 1 2019-09-01 03:47:54 1 2 2019-09-01 03:47:54 2 1 2019-09-01 05:37:54 1 2 2019-09-01 05:37:54 2 1 2019-09-01 05:42:54 1 2 2019-09-01 05:42:54 2 1 2019-09-01 06:27:54 1 2 2019-09-01 06:47:54 1 3 2019-09-01 06:52:54 1 3 2019-09-01 06:57:54 1 3 2019-09-01 06:57:54 2 1 2019-09-01 07:17:54 1 3 2019-09-01 07:17:54 2 1 2019-09-01 07:22:54 1 3 2019-09-01 07:22:54 2 1 2019-09-01 07:27:54 1 2 2019-09-01 07:27:54 2 1 2019-09-01 07:32:54 1 2 2019-09-01 07:32:54 2 1 2019-09-01 07:37:54 1 2 2019-09-01 08:02:54 1 2 2019-09-01 08:02:54 2 3 2019-09-01 08:22:54 1 2 2019-09-01 08:22:54 2 2 2019-09-01 08:27:54 1 2 2019-09-01 08:27:54 2 2 2019-09-01 08:47:54 1 2 2019-09-01 08:47:54 2 1 2019-09-01 09:02:54 1 2 2019-09-01 09:02:54 2 3 2019-09-01 09:07:54 1 2 2019-09-01 09:07:54 2 3 2019-09-01 09:22:54 1 3 2019-09-01 09:22:54 2 3 2019-09-01 09:27:54 1 3 2019-09-01 09:27:54 2 3 2019-09-01 09:32:54 1 3 2019-09-01 09:32:54 2 4 2019-09-01 09:37:54 1 3 2019-09-01 09:37:54 2 5 2019-09-01 09:42:54 1 3 2019-09-01 09:42:54 2 6 2019-09-01 09:47:54 1 3 2019-09-01 09:47:54 2 5 2019-09-01 09:52:54 1 3 2019-09-01 09:52:54 2 7 2019-09-01 10:07:54 1 3 2019-09-01 10:07:54 2 3 2019-09-01 10:22:54 1 2 2019-09-01 10:22:54 2 3 2019-09-01 10:27:54 1 2 2019-09-01 10:27:54 2 3 2019-09-01 10:32:54 1 2 2019-09-01 10:32:54 2 3 2019-09-01 10:37:54 1 2 2019-09-01 10:37:54 2 2 2019-09-01 10:52:54 1 3 2019-09-01 10:52:54 2 2 2019-09-01 11:02:54 1 3 2019-09-01 11:02:54 2 3 2019-09-01 11:07:54 1 3 2019-09-01 11:07:54 2 4 2019-09-01 11:17:54 1 3 2019-09-01 11:17:54 2 5 2019-09-01 11:27:54 1 3 2019-09-01 11:27:54 2 5 2019-09-01 11:57:54 1 3 2019-09-01 11:57:54 2 3 2019-09-01 12:07:54 1 3 2019-09-01 12:07:54 2 2 2019-09-01 12:12:54 1 3 2019-09-01 12:12:54 2 2 2019-09-01 12:17:55 1 3 2019-09-01 12:17:55 2 2 2019-09-01 12:22:54 1 3 2019-09-01 12:22:54 2 2 2019-09-01 13:12:54 1 3 2019-09-01 13:12:54 2 5 2019-09-01 13:17:54 1 2 2019-09-01 13:17:54 2 2 2019-09-01 13:32:54 1 2 2019-09-01 13:32:54 2 4 2019-09-01 13:57:54 1 3 2019-09-01 13:57:54 2 3 2019-09-01 14:07:54 1 2 2019-09-01 14:07:54 2 3 2019-09-01 14:22:54 1 4 2019-09-01 14:22:54 2 4 2019-09-01 14:37:54 1 5 2019-09-01 14:37:54 2 5 2019-09-01 14:42:54 1 5 2019-09-01 14:42:54 2 4 2019-09-01 15:12:54 1 3 2019-09-01 15:12:54 2 6 2019-09-01 15:17:54 1 3 2019-09-01 15:17:54 2 6 2019-09-01 15:22:54 1 3 2019-09-01 15:22:54 2 8 2019-09-01 15:42:54 1 4 2019-09-01 15:42:54 2 10 2019-09-01 16:17:54 1 2 2019-09-01 16:17:54 2 6 2019-09-01 16:27:54 1 2 2019-09-01 16:27:54 2 6 2019-09-01 17:02:54 1 3 2019-09-01 17:02:54 2 8 2019-09-01 17:17:54 1 3 2019-09-01 17:17:54 2 9 2019-09-01 17:22:54 1 3 2019-09-01 17:22:54 2 8 2019-09-01 17:37:54 1 2 2019-09-01 17:37:54 2 6 2019-09-01 17:47:54 1 3 2019-09-01 17:47:54 2 4 2019-09-01 17:52:55 1 3 2019-09-01 17:52:55 2 4 2019-09-01 18:22:54 1 3 2019-09-01 18:22:54 2 5 2019-09-01 18:27:54 1 3 2019-09-01 18:27:54 2 5 2019-09-01 18:32:54 1 3 2019-09-01 18:32:54 2 5 2019-09-01 19:17:54 1 3 2019-09-01 19:17:54 2 8 2019-09-01 19:27:54 1 3 2019-09-01 19:27:54 2 8 2019-09-01 19:32:54 1 3 2019-09-01 19:32:54 2 8 2019-09-01 20:02:54 1 1 2019-09-01 20:02:54 2 10 2019-09-01 20:27:54 1 2 2019-09-01 20:27:54 2 7 2019-09-01 20:32:54 1 2 2019-09-01 20:32:54 2 6 2019-09-01 20:42:54 1 3 2019-09-01 20:42:54 2 4 2019-09-01 20:47:54 1 3 2019-09-01 20:47:54 2 4 2019-09-01 21:37:54 1 3 2019-09-01 21:37:54 2 6 2019-09-01 21:52:54 1 2 2019-09-01 21:52:54 2 4 2019-09-01 21:57:54 1 2 2019-09-01 21:57:54 2 4 2019-09-01 22:07:54 1 2 2019-09-01 22:07:54 2 7 2019-09-01 22:17:54 1 2 2019-09-01 22:17:54 2 6 2019-09-01 22:22:54 1 1 2019-09-01 22:22:54 2 5 2019-09-01 22:32:54 1 2 2019-09-01 22:32:54 2 8 2019-09-01 22:52:54 1 2 2019-09-01 22:52:54 2 5 2019-09-01 22:57:54 1 2 2019-09-01 22:57:54 2 4 2019-09-01 23:07:54 1 1 2019-09-01 23:07:54 2 4 2019-09-01 23:17:54 1 1 2019-09-01 23:17:54 2 5 2019-09-01 23:27:54 1 1 2019-09-01 23:27:54 2 6 2019-09-01 23:32:54 1 1 2019-09-01 23:32:54 2 5 2019-09-01 23:52:54 1 1 2019-09-01 23:52:54 2 4 2019-09-02 00:52:54 1 1 2019-09-02 00:52:54 2 2 2019-09-02 00:57:54 1 1 2019-09-02 00:57:54 2 2 2019-09-02 01:02:54 1 1 2019-09-02 01:02:54 2 2 2019-09-02 01:17:54 1 1 2019-09-02 01:27:54 2 3 2019-09-02 01:32:54 1 1 2019-09-02 01:32:54 2 3 2019-09-02 01:37:54 1 1 2019-09-02 01:37:54 2 3 2019-09-02 02:17:54 1 1 2019-09-02 02:22:54 1 1 2019-09-02 02:27:54 1 1 2019-09-02 02:32:54 1 1 2019-09-02 02:37:54 1 1 2019-09-02 02:42:54 1 1 2019-09-02 02:47:54 1 1 2019-09-02 02:52:54 1 1 2019-09-02 02:57:54 1 1 2019-09-02 03:02:54 1 1 2019-09-02 03:07:54 1 1 2019-09-02 03:12:54 1 1 2019-09-02 03:17:54 1 1 2019-09-02 04:02:54 1 1 2019-09-02 04:02:54 2 1 2019-09-02 04:07:54 1 1 2019-09-02 04:07:54 2 1 2019-09-02 04:12:54 1 1 2019-09-02 04:12:54 2 1 2019-09-02 04:17:54 1 1 2019-09-02 04:17:54 2 1 2019-09-02 04:22:54 1 1 2019-09-02 04:22:54 2 1 2019-09-02 04:27:54 1 1 2019-09-02 04:27:54 2 1 2019-09-02 04:32:54 1 1 2019-09-02 04:32:54 2 1 2019-09-02 04:37:54 1 1 2019-09-02 04:37:54 2 1 2019-09-02 04:42:54 1 1 2019-09-02 04:42:54 2 1 2019-09-02 04:47:54 1 1 2019-09-02 04:47:54 2 1 2019-09-02 04:52:54 1 1 2019-09-02 04:52:54 2 1 2019-09-02 04:57:54 1 1 2019-09-02 04:57:54 2 1 2019-09-02 05:02:54 1 1 2019-09-02 05:02:54 2 1 2019-09-02 05:07:54 1 1 2019-09-02 05:07:54 2 1 2019-09-02 05:12:54 1 1 2019-09-02 05:12:54 2 1 2019-09-02 05:17:54 1 1 2019-09-02 05:17:54 2 1 2019-09-02 05:22:54 1 1 2019-09-02 05:22:54 2 1 2019-09-02 05:27:54 1 1 2019-09-02 05:27:54 2 1 2019-09-02 05:32:54 1 1 2019-09-02 05:32:54 2 1 2019-09-02 05:37:54 1 1 2019-09-02 05:37:54 2 1 2019-09-02 05:42:54 1 1 2019-09-02 05:42:54 2 1 2019-09-02 05:47:54 1 1 2019-09-02 05:47:54 2 1 2019-09-02 06:02:54 1 2 2019-09-02 06:02:54 2 1 2019-09-02 06:27:54 1 2 2019-09-02 06:27:54 2 2 2019-09-02 07:07:54 1 1 2019-09-02 07:07:54 2 3 2019-09-02 07:12:54 1 1 2019-09-02 07:12:54 2 3 2019-09-02 07:17:54 1 1 2019-09-02 07:17:54 2 3 2019-09-02 07:22:54 1 1 2019-09-02 07:22:54 2 3 2019-09-02 07:27:54 1 1 2019-09-02 07:27:54 2 3 2019-09-02 07:32:54 1 1 2019-09-02 07:32:54 2 3 2019-09-02 07:42:54 1 1 2019-09-02 07:47:54 1 1 2019-09-02 07:57:54 1 1 2019-09-02 07:57:54 2 3 2019-09-02 08:02:54 1 1 2019-09-02 08:02:54 2 2 2019-09-02 08:07:54 1 1 2019-09-02 08:07:54 2 2 2019-09-02 08:12:54 1 1 2019-09-02 08:12:54 2 2 2019-09-02 08:32:54 1 1 2019-09-02 08:32:54 2 3 2019-09-02 08:37:54 1 1 2019-09-02 08:37:54 2 3 2019-09-02 08:42:54 1 1 2019-09-02 08:42:54 2 3 2019-09-02 08:47:54 1 1 2019-09-02 08:47:54 2 4 2019-09-02 09:22:54 1 1 2019-09-02 09:22:54 2 3 2019-09-02 09:37:54 1 1 2019-09-02 09:37:54 2 3 2019-09-02 09:42:54 1 1 2019-09-02 09:42:54 2 3 2019-09-02 10:02:54 1 3 2019-09-02 10:02:54 2 2 2019-09-02 10:17:54 1 2 2019-09-02 10:17:54 2 1 2019-09-02 10:52:54 1 1 2019-09-02 10:52:54 2 3 2019-09-02 11:12:54 1 2 2019-09-02 11:12:54 2 1 2019-09-02 11:27:54 2 1 2019-09-02 11:52:54 1 2 2019-09-02 11:52:54 2 5 2019-09-02 11:57:54 1 2 2019-09-02 11:57:54 2 5 2019-09-02 12:12:54 1 3 2019-09-02 12:12:54 2 6 2019-09-02 12:27:54 1 3 2019-09-02 12:27:54 2 4 2019-09-02 12:32:54 1 3 2019-09-02 12:32:54 2 3 2019-09-02 12:52:54 1 3 2019-09-02 12:52:54 2 2 2019-09-02 13:02:54 1 1 2019-09-02 13:02:54 2 3 2019-09-02 13:47:54 1 3 2019-09-02 13:47:54 2 8 2019-09-02 13:52:54 1 4 2019-09-02 13:52:54 2 9 2019-09-02 13:57:54 1 5 2019-09-02 13:57:54 2 9 2019-09-02 14:07:54 1 4 2019-09-02 14:07:54 2 9 2019-09-02 14:17:54 1 4 2019-09-02 14:17:54 2 7 2019-09-02 14:47:54 1 2 2019-09-02 14:47:54 2 11 2019-09-02 15:12:54 1 4 2019-09-02 15:12:54 2 6 2019-09-02 15:17:54 1 4 2019-09-02 15:17:54 2 7 2019-09-02 15:27:54 1 2 2019-09-02 15:27:54 2 6 2019-09-02 15:32:54 1 2 2019-09-02 15:32:54 2 6 2019-09-02 16:02:54 1 2 2019-09-02 16:02:54 2 5 2019-09-02 16:07:54 1 2 2019-09-02 16:07:54 2 5 2019-09-02 16:12:54 1 2 2019-09-02 16:12:54 2 5 2019-09-02 16:17:54 1 2 2019-09-02 16:17:54 2 4 2019-09-02 16:37:54 1 2 2019-09-02 16:37:54 2 5 2019-09-02 16:52:54 1 4 2019-09-02 16:52:54 2 4 2019-09-02 17:02:54 1 4 2019-09-02 17:02:54 2 4 2019-09-02 17:17:54 1 4 2019-09-02 17:17:54 2 6 2019-09-02 17:22:54 1 5 2019-09-02 17:22:54 2 5 2019-09-02 17:27:54 1 4 2019-09-02 17:27:54 2 5 2019-09-02 17:42:54 1 4 2019-09-02 17:42:54 2 6 2019-09-02 19:02:54 1 5 2019-09-02 19:02:54 2 3 2019-09-02 19:17:54 1 3 2019-09-02 19:17:54 2 3 2019-09-02 19:37:54 1 3 2019-09-02 19:37:54 2 4 2019-09-02 19:52:54 1 4 2019-09-02 19:52:54 2 3 2019-09-02 19:57:54 1 3 2019-09-02 19:57:54 2 4 2019-09-02 20:02:54 1 4 2019-09-02 20:02:54 2 6 2019-09-02 20:07:54 1 3 2019-09-02 20:07:54 2 7 2019-09-02 20:27:54 1 5 2019-09-02 20:27:54 2 5 2019-09-02 20:32:54 1 2 2019-09-02 20:32:54 2 5 2019-09-02 01:42:54 1 1 2019-09-02 01:42:54 2 2 2019-09-02 01:47:54 1 1 2019-09-02 01:47:54 2 2 2019-09-02 01:52:54 1 1 2019-09-02 01:52:54 2 2 2019-09-02 03:22:54 1 1 2019-09-02 03:22:54 2 1 2019-09-02 03:27:54 1 1 2019-09-02 03:27:54 2 1 2019-09-02 03:32:54 1 1 2019-09-02 03:32:54 2 1 2019-09-02 03:37:54 1 1 2019-09-02 03:37:54 2 1 2019-09-02 03:47:54 1 1 2019-09-02 03:47:54 2 2 2019-09-02 05:52:54 1 2 2019-09-02 05:52:54 2 1 2019-09-02 05:57:54 1 2 2019-09-02 05:57:54 2 1 2019-09-02 06:07:54 1 1 2019-09-02 06:07:54 2 1 2019-09-02 06:12:54 1 1 2019-09-02 06:12:54 2 1 2019-09-02 06:17:54 1 1 2019-09-02 06:17:54 2 1 2019-09-02 06:37:54 1 2 2019-09-02 06:37:54 2 2 2019-09-02 06:42:54 1 2 2019-09-02 06:42:54 2 2 2019-09-02 06:47:54 1 2 2019-09-02 06:47:54 2 3 2019-09-02 06:52:54 1 2 2019-09-02 06:52:54 2 3 2019-09-02 06:57:54 1 1 2019-09-02 06:57:54 2 3 2019-09-02 07:02:54 1 1 2019-09-02 07:02:54 2 3 2019-09-02 07:52:54 1 1 2019-09-02 07:52:54 2 2 2019-09-02 08:27:54 1 1 2019-09-02 08:27:54 2 2 2019-09-02 08:57:54 1 1 2019-09-02 08:57:54 2 3 2019-09-02 09:12:54 1 1 2019-09-02 09:12:54 2 3 2019-09-02 09:27:54 1 1 2019-09-02 09:27:54 2 3 2019-09-02 09:32:54 1 1 2019-09-02 09:32:54 2 3 2019-09-02 09:47:54 1 2 2019-09-02 09:47:54 2 3 2019-09-02 10:07:54 1 3 2019-09-02 10:07:54 2 3 2019-09-02 10:12:54 1 3 2019-09-02 10:12:54 2 2 2019-09-02 10:22:54 1 2 2019-09-02 10:22:54 2 1 2019-09-02 10:27:54 1 2 2019-09-02 10:27:54 2 4 2019-09-02 10:37:54 1 2 2019-09-02 10:37:54 2 3 2019-09-02 10:47:54 1 1 2019-09-02 10:47:54 2 3 2019-09-02 11:42:54 2 2 2019-09-02 11:47:54 1 1 2019-09-02 11:47:54 2 2 2019-09-02 12:22:54 1 3 2019-09-02 12:22:54 2 5 2019-09-02 12:37:54 1 2 2019-09-02 12:37:54 2 2 2019-09-02 12:57:54 1 1 2019-09-02 12:57:54 2 2 2019-09-02 13:12:54 1 1 2019-09-02 13:12:54 2 4 2019-09-02 13:17:54 1 1 2019-09-02 13:17:54 2 5 2019-09-02 13:27:54 1 3 2019-09-02 13:27:54 2 5 2019-09-02 13:37:54 1 3 2019-09-02 13:37:54 2 9 2019-09-02 13:42:54 1 3 2019-09-02 13:42:54 2 8 2019-09-02 14:12:54 1 4 2019-09-02 14:12:54 2 7 2019-09-02 14:27:54 1 3 2019-09-02 14:27:54 2 8 2019-09-02 14:42:54 1 2 2019-09-02 14:42:54 2 10 2019-09-02 14:52:54 1 2 2019-09-02 14:52:54 2 11 2019-09-02 15:02:54 1 2 2019-09-02 15:02:54 2 8 2019-09-02 15:07:54 1 4 2019-09-02 15:07:54 2 8 2019-09-02 15:37:54 1 2 2019-09-02 15:37:54 2 8 2019-09-02 15:42:54 1 2 2019-09-02 15:42:54 2 8 2019-09-02 15:57:54 1 3 2019-09-02 15:57:54 2 6 2019-09-02 16:27:54 1 2 2019-09-02 16:27:54 2 4 2019-09-02 16:32:54 1 2 2019-09-02 16:32:54 2 4 2019-09-02 16:42:54 1 3 2019-09-02 16:42:54 2 4 2019-09-02 16:47:54 1 3 2019-09-02 16:47:54 2 4 2019-09-02 16:57:54 1 4 2019-09-02 16:57:54 2 4 2019-09-02 17:07:54 1 4 2019-09-02 17:07:54 2 4 2019-09-02 17:32:54 1 4 2019-09-02 17:32:54 2 6 2019-09-02 17:37:54 1 4 2019-09-02 17:37:54 2 6 2019-09-02 17:47:54 1 4 2019-09-02 17:47:54 2 5 2019-09-02 18:07:54 1 3 2019-09-02 18:07:54 2 3 2019-09-02 18:12:54 1 4 2019-09-02 18:12:54 2 4 2019-09-02 18:22:54 1 3 2019-09-02 18:22:54 2 4 2019-09-02 18:27:54 1 3 2019-09-02 18:27:54 2 5 2019-09-02 18:52:54 1 3 2019-09-02 18:52:54 2 2 2019-09-02 18:57:54 1 5 2019-09-02 18:57:54 2 3 2019-09-02 19:12:54 1 3 2019-09-02 19:12:54 2 4 2019-09-02 19:32:54 1 3 2019-09-02 19:32:54 2 3 2019-09-02 19:47:54 1 4 2019-09-02 19:47:54 2 4 2019-09-02 20:17:54 1 4 2019-09-02 20:17:54 2 8 2019-09-02 20:47:54 1 2 2019-09-02 20:47:54 2 7 2019-09-02 20:52:54 1 3 2019-09-02 20:52:54 2 4 2019-09-02 21:02:54 1 3 2019-09-02 21:02:54 2 6 2019-09-02 21:07:54 1 3 2019-09-02 21:07:54 2 6 2019-09-02 21:12:54 1 3 2019-09-02 21:12:54 2 5 2019-09-02 21:22:54 1 2 2019-09-02 21:22:54 2 4 2019-09-02 21:32:54 1 3 2019-09-02 21:32:54 2 6 2019-09-02 21:42:54 1 2 2019-09-02 21:42:54 2 6 2019-09-02 21:47:54 1 2 2019-09-02 21:47:54 2 7 2019-09-02 21:52:54 1 2 2019-09-02 21:52:54 2 7 2019-09-02 21:57:54 1 2 2019-09-02 21:57:54 2 5 2019-09-02 22:02:54 1 3 2019-09-02 22:02:54 2 4 2019-09-02 22:07:54 1 3 2019-09-02 22:07:54 2 5 2019-09-02 22:12:54 1 4 2019-09-02 22:12:54 2 5 2019-09-02 22:37:54 1 4 2019-09-02 22:37:54 2 6 2019-09-02 22:42:54 1 4 2019-09-02 22:42:54 2 6 2019-09-02 22:47:54 1 3 2019-09-02 22:47:54 2 6 2019-09-02 22:57:54 1 3 2019-09-02 22:57:54 2 5 2019-09-02 23:02:54 1 3 2019-09-02 23:02:54 2 6 2019-09-02 23:12:54 1 3 2019-09-02 23:12:54 2 6 2019-09-02 23:17:54 1 4 2019-09-02 23:17:54 2 4 2019-09-02 23:22:54 1 4 2019-09-02 23:22:54 2 4 2019-09-02 23:37:54 1 3 2019-09-02 23:37:54 2 7 2019-09-02 01:57:54 1 1 2019-09-02 01:57:54 2 1 2019-09-02 02:02:54 1 1 2019-09-02 02:02:54 2 1 2019-09-02 02:07:54 1 1 2019-09-02 02:07:54 2 1 2019-09-02 02:12:54 1 1 2019-09-02 02:12:54 2 1 2019-09-02 03:42:54 1 1 2019-09-02 03:42:54 2 2 2019-09-02 03:52:54 1 1 2019-09-02 03:52:54 2 1 2019-09-02 03:57:54 1 1 2019-09-02 03:57:54 2 1 2019-09-02 06:22:54 1 2 2019-09-02 06:22:54 2 1 2019-09-02 06:32:54 1 2 2019-09-02 06:32:54 2 2 2019-09-02 07:37:54 1 1 2019-09-02 08:17:54 1 1 2019-09-02 08:17:54 2 3 2019-09-02 08:22:54 1 1 2019-09-02 08:22:54 2 1 2019-09-02 08:52:54 1 1 2019-09-02 08:52:54 2 4 2019-09-02 09:02:54 1 1 2019-09-02 09:02:54 2 3 2019-09-02 09:07:54 1 1 2019-09-02 09:07:54 2 2 2019-09-02 09:17:54 1 1 2019-09-02 09:17:54 2 3 2019-09-02 09:52:54 1 2 2019-09-02 09:52:54 2 3 2019-09-02 09:57:54 1 2 2019-09-02 09:57:54 2 3 2019-09-02 10:32:54 1 2 2019-09-02 10:32:54 2 4 2019-09-02 10:42:54 1 2 2019-09-02 10:42:54 2 2 2019-09-02 10:57:54 1 1 2019-09-02 10:57:54 2 4 2019-09-02 11:02:54 1 1 2019-09-02 11:02:54 2 4 2019-09-02 11:07:54 1 1 2019-09-02 11:07:54 2 2 2019-09-02 11:17:54 1 2 2019-09-02 11:17:54 2 2 2019-09-02 11:22:54 1 2 2019-09-02 11:22:54 2 1 2019-09-02 11:32:54 2 3 2019-09-02 11:37:54 2 3 2019-09-02 12:02:54 1 2 2019-09-02 12:02:54 2 6 2019-09-02 12:07:54 1 2 2019-09-02 12:07:54 2 5 2019-09-02 12:17:54 1 2 2019-09-02 12:17:54 2 5 2019-09-02 12:42:54 1 3 2019-09-02 12:42:54 2 3 2019-09-02 12:47:54 1 3 2019-09-02 12:47:54 2 3 2019-09-02 13:07:54 1 1 2019-09-02 13:07:54 2 3 2019-09-02 13:22:54 1 3 2019-09-02 13:22:54 2 5 2019-09-02 13:32:54 1 3 2019-09-02 13:32:54 2 7 2019-09-02 14:02:54 1 4 2019-09-02 14:02:54 2 9 2019-09-02 14:22:54 1 3 2019-09-02 14:22:54 2 7 2019-09-02 14:32:54 1 2 2019-09-02 14:32:54 2 9 2019-09-02 14:37:54 1 2 2019-09-02 14:37:54 2 9 2019-09-02 14:57:54 1 2 2019-09-02 14:57:54 2 9 2019-09-02 15:22:54 1 3 2019-09-02 15:22:54 2 8 2019-09-02 15:47:54 1 2 2019-09-02 15:47:54 2 9 2019-09-02 15:52:54 1 3 2019-09-02 15:52:54 2 8 2019-09-02 16:22:54 1 2 2019-09-02 16:22:54 2 3 2019-09-02 17:12:54 1 4 2019-09-02 17:12:54 2 5 2019-09-02 17:52:54 1 4 2019-09-02 17:52:54 2 4 2019-09-02 17:57:54 1 3 2019-09-02 17:57:54 2 4 2019-09-02 18:02:54 1 2 2019-09-02 18:02:54 2 3 2019-09-02 18:17:54 1 4 2019-09-02 18:17:54 2 3 2019-09-02 18:32:54 1 2 2019-09-02 18:32:54 2 4 2019-09-02 18:37:54 1 3 2019-09-02 18:37:54 2 3 2019-09-02 18:42:54 1 3 2019-09-02 18:42:54 2 2 2019-09-02 18:47:54 1 3 2019-09-02 18:47:54 2 1 2019-09-02 19:07:54 1 2 2019-09-02 19:07:54 2 3 2019-09-02 19:22:54 1 3 2019-09-02 19:22:54 2 4 2019-09-02 19:27:54 1 3 2019-09-02 19:27:54 2 4 2019-09-02 19:42:54 1 3 2019-09-02 19:42:54 2 5 2019-09-02 20:12:54 1 4 2019-09-02 20:12:54 2 7 2019-09-02 20:22:54 1 4 2019-09-02 20:22:54 2 8 2019-09-02 20:37:54 1 3 2019-09-02 20:37:54 2 6 2019-09-02 20:42:54 1 3 2019-09-02 20:42:54 2 6 2019-09-02 20:57:54 1 3 2019-09-02 20:57:54 2 4 2019-09-02 21:17:54 1 2 2019-09-02 21:17:54 2 4 2019-09-02 21:27:54 1 3 2019-09-02 21:27:54 2 4 2019-09-02 21:37:54 1 2 2019-09-02 21:37:54 2 6 2019-09-02 22:17:54 1 4 2019-09-02 22:17:54 2 4 2019-09-02 22:22:54 1 4 2019-09-02 22:22:54 2 4 2019-09-02 22:27:54 1 4 2019-09-02 22:27:54 2 7 2019-09-02 22:32:54 1 4 2019-09-02 22:32:54 2 6 2019-09-02 22:52:54 1 3 2019-09-02 22:52:54 2 5 2019-09-02 23:07:54 1 3 2019-09-02 23:07:54 2 6 2019-09-02 23:27:54 1 3 2019-09-02 23:27:54 2 4 2019-09-02 23:32:54 1 3 2019-09-02 23:32:54 2 6 2019-09-02 23:42:54 1 3 2019-09-02 23:42:54 2 8 2019-09-02 23:47:54 1 3 2019-09-02 23:47:54 2 8 2019-09-02 23:52:54 1 4 2019-09-02 23:52:54 2 7 2019-09-02 23:57:54 1 4 2019-09-02 23:57:54 2 7 2019-09-03 00:02:54 1 4 2019-09-03 00:02:54 2 6 2019-09-03 00:07:54 1 3 2019-09-03 00:07:54 2 6 2019-09-03 00:12:54 1 3 2019-09-03 00:12:54 2 6 2019-09-03 00:17:54 1 3 2019-09-03 00:17:54 2 7 2019-09-03 00:22:54 1 3 2019-09-03 00:22:54 2 8 2019-09-03 00:27:54 1 3 2019-09-03 00:27:54 2 7 2019-09-03 00:32:54 1 3 2019-09-03 00:32:54 2 5 2019-09-03 00:37:54 1 3 2019-09-03 00:37:54 2 5 2019-09-03 00:42:54 1 3 2019-09-03 00:42:54 2 5 2019-09-03 00:47:54 1 2 2019-09-03 00:47:54 2 5 2019-09-03 00:52:54 1 2 2019-09-03 00:52:54 2 5 2019-09-03 00:57:54 1 2 2019-09-03 00:57:54 2 6 2019-09-03 01:02:54 1 2 2019-09-03 01:02:54 2 5 2019-09-03 01:07:54 1 2 2019-09-03 01:07:54 2 5 2019-09-03 01:12:54 1 2 2019-09-03 01:12:54 2 5 2019-09-03 01:17:54 1 2 2019-09-03 01:17:54 2 5 2019-09-03 01:22:54 1 2 2019-09-03 01:22:54 2 5 2019-09-03 01:27:54 1 2 2019-09-03 01:27:54 2 5 2019-09-03 01:37:54 1 2 2019-09-03 01:37:54 2 4 2019-09-03 02:02:54 1 2 2019-09-03 02:02:54 2 4 2019-09-03 02:07:54 1 2 2019-09-03 02:07:54 2 4 2019-09-03 02:12:54 1 2 2019-09-03 02:12:54 2 4 2019-09-03 02:17:54 1 2 2019-09-03 02:17:54 2 4 2019-09-03 02:32:54 1 3 2019-09-03 02:32:54 2 4 2019-09-03 02:37:54 1 3 2019-09-03 02:37:54 2 4 2019-09-03 03:27:54 1 3 2019-09-03 03:27:54 2 3 2019-09-03 03:32:54 1 3 2019-09-03 03:32:54 2 3 2019-09-03 03:37:54 1 3 2019-09-03 03:37:54 2 3 2019-09-03 04:02:54 1 3 2019-09-03 04:02:54 2 1 2019-09-03 04:07:54 1 3 2019-09-03 04:07:54 2 1 2019-09-03 04:12:54 1 3 2019-09-03 04:12:54 2 1 2019-09-03 04:17:54 1 3 2019-09-03 04:17:54 2 1 2019-09-03 04:22:54 1 3 2019-09-03 04:22:54 2 1 2019-09-03 04:27:54 1 3 2019-09-03 04:27:54 2 1 2019-09-03 04:32:54 1 3 2019-09-03 04:32:54 2 2 2019-09-03 04:42:54 1 3 2019-09-03 04:42:54 2 3 2019-09-03 04:47:54 1 3 2019-09-03 04:47:54 2 3 2019-09-03 04:52:54 1 3 2019-09-03 04:52:54 2 3 2019-09-03 05:17:54 1 2 2019-09-03 05:17:54 2 3 2019-09-03 05:52:54 1 3 2019-09-03 05:52:54 2 3 2019-09-03 05:57:54 1 4 2019-09-03 05:57:54 2 3 2019-09-03 06:12:54 1 3 2019-09-03 06:12:54 2 3 2019-09-03 06:22:54 1 2 2019-09-03 06:22:54 2 4 2019-09-03 06:27:54 1 3 2019-09-03 06:27:54 2 5 2019-09-03 06:32:54 1 4 2019-09-03 06:32:54 2 5 2019-09-03 06:52:54 1 3 2019-09-03 06:52:54 2 5 2019-09-03 07:47:54 1 3 2019-09-03 07:47:54 2 2 2019-09-03 07:52:54 1 3 2019-09-03 07:52:54 2 2 2019-09-03 07:57:54 1 3 2019-09-03 07:57:54 2 1 2019-09-03 08:02:54 1 3 2019-09-03 08:02:54 2 1 2019-09-03 08:07:54 1 3 2019-09-03 08:07:54 2 1 2019-09-03 08:32:55 1 2 2019-09-03 08:32:55 2 3 2019-09-03 08:37:54 1 2 2019-09-03 08:37:54 2 3 2019-09-03 08:42:54 1 2 2019-09-03 08:42:54 2 3 2019-09-03 09:22:54 1 3 2019-09-03 09:22:54 2 3 2019-09-03 09:27:54 1 4 2019-09-03 09:27:54 2 3 2019-09-03 09:32:54 1 4 2019-09-03 09:32:54 2 3 2019-09-03 09:42:54 1 3 2019-09-03 09:42:54 2 3 2019-09-03 09:57:54 1 4 2019-09-03 09:57:54 2 2 2019-09-03 10:07:54 1 4 2019-09-03 10:07:54 2 2 2019-09-03 10:12:54 1 4 2019-09-03 10:12:54 2 2 2019-09-03 10:22:54 1 2 2019-09-03 10:22:54 2 2 2019-09-03 10:27:54 1 2 2019-09-03 10:27:54 2 2 2019-09-03 10:52:54 2 2 2019-09-03 10:57:54 1 1 2019-09-03 10:57:54 2 4 2019-09-03 11:07:54 1 2 2019-09-03 11:07:54 2 3 2019-09-03 11:32:54 1 1 2019-09-03 11:32:54 2 7 2019-09-03 11:52:54 2 3 2019-09-03 12:07:54 1 1 2019-09-03 12:07:54 2 4 2019-09-03 12:22:54 1 1 2019-09-03 12:22:54 2 4 2019-09-03 12:32:54 1 1 2019-09-03 12:32:54 2 5 2019-09-03 12:42:54 1 1 2019-09-03 12:42:54 2 5 2019-09-03 12:47:54 1 1 2019-09-03 12:47:54 2 4 2019-09-03 12:52:54 1 1 2019-09-03 12:52:54 2 3 2019-09-03 13:22:54 1 2 2019-09-03 13:22:54 2 4 2019-09-03 13:27:54 1 2 2019-09-03 13:27:54 2 4 2019-09-03 13:32:54 1 2 2019-09-03 13:32:54 2 3 2019-09-03 14:32:54 1 2 2019-09-03 14:32:54 2 5 2019-09-03 14:37:54 1 2 2019-09-03 14:37:54 2 5 2019-09-03 14:47:54 1 1 2019-09-03 14:47:54 2 5 2019-09-03 14:57:54 1 1 2019-09-03 14:57:54 2 4 2019-09-03 15:12:54 1 1 2019-09-03 15:12:54 2 5 2019-09-03 15:17:54 1 1 2019-09-03 15:17:54 2 5 2019-09-03 15:32:54 2 5 2019-09-03 15:57:54 1 1 2019-09-03 15:57:54 2 5 2019-09-03 16:17:54 1 1 2019-09-03 16:17:54 2 3 2019-09-03 16:27:54 2 4 2019-09-03 16:32:54 2 4 2019-09-03 16:42:54 2 6 2019-09-03 16:52:54 2 7 2019-09-03 16:57:54 1 1 2019-09-03 16:57:54 2 7 2019-09-03 17:17:54 1 2 2019-09-03 17:17:54 2 9 2019-09-03 18:12:54 1 1 2019-09-03 18:12:54 2 6 2019-09-03 18:27:54 1 2 2019-09-03 18:27:54 2 5 2019-09-03 18:42:54 1 1 2019-09-03 18:42:54 2 5 2019-09-03 18:47:54 1 1 2019-09-03 18:47:54 2 4 2019-09-03 18:52:54 1 2 2019-09-03 18:52:54 2 3 2019-09-03 18:57:54 1 2 2019-09-03 18:57:54 2 3 2019-09-03 19:02:54 1 3 2019-09-03 19:02:54 2 4 2019-09-03 19:37:54 1 3 2019-09-03 19:37:54 2 3 2019-09-03 19:47:54 1 2 2019-09-03 19:47:54 2 3 2019-09-03 20:27:54 1 4 2019-09-03 20:27:54 2 4 2019-09-03 20:32:54 1 4 2019-09-03 20:32:54 2 4 2019-09-03 20:37:54 1 4 2019-09-03 20:37:54 2 4 2019-09-03 20:47:54 1 2 2019-09-03 20:47:54 2 4 2019-09-03 20:57:54 1 3 2019-09-03 20:57:54 2 3 2019-09-03 21:57:54 1 5 2019-09-03 21:57:54 2 3 2019-09-03 22:17:54 1 4 2019-09-03 22:17:54 2 5 2019-09-03 22:32:54 1 5 2019-09-03 22:32:54 2 2 2019-09-03 22:37:54 1 3 2019-09-03 22:37:54 2 4 2019-09-03 22:47:54 1 3 2019-09-03 22:47:54 2 4 2019-09-03 23:02:54 1 4 2019-09-03 23:02:54 2 3 2019-09-03 23:07:54 1 5 2019-09-03 23:07:54 2 3 2019-09-03 01:32:54 1 3 2019-09-03 01:32:54 2 4 2019-09-03 01:42:54 1 2 2019-09-03 01:42:54 2 4 2019-09-03 01:47:54 1 2 2019-09-03 01:47:54 2 4 2019-09-03 01:52:54 1 2 2019-09-03 01:52:54 2 4 2019-09-03 01:57:54 1 2 2019-09-03 01:57:54 2 3 2019-09-03 02:57:54 1 3 2019-09-03 02:57:54 2 2 2019-09-03 03:02:54 1 3 2019-09-03 03:02:54 2 2 2019-09-03 03:07:54 1 3 2019-09-03 03:07:54 2 2 2019-09-03 03:12:54 1 3 2019-09-03 03:12:54 2 2 2019-09-03 03:17:54 1 3 2019-09-03 03:17:54 2 2 2019-09-03 03:22:54 1 3 2019-09-03 03:22:54 2 2 2019-09-03 03:57:54 1 3 2019-09-03 03:57:54 2 1 2019-09-03 04:37:54 1 3 2019-09-03 04:37:54 2 2 2019-09-03 04:57:54 1 3 2019-09-03 04:57:54 2 3 2019-09-03 05:02:54 1 3 2019-09-03 05:02:54 2 3 2019-09-03 05:07:54 1 3 2019-09-03 05:07:54 2 3 2019-09-03 05:12:54 1 3 2019-09-03 05:12:54 2 3 2019-09-03 05:32:54 1 2 2019-09-03 05:32:54 2 3 2019-09-03 05:37:54 1 3 2019-09-03 05:37:54 2 3 2019-09-03 05:42:54 1 3 2019-09-03 05:42:54 2 3 2019-09-03 06:42:54 1 4 2019-09-03 06:42:54 2 5 2019-09-03 06:47:54 1 4 2019-09-03 06:47:54 2 5 2019-09-03 06:57:54 1 3 2019-09-03 06:57:54 2 5 2019-09-03 07:12:54 1 3 2019-09-03 07:12:54 2 4 2019-09-03 07:22:54 1 3 2019-09-03 07:22:54 2 5 2019-09-03 07:27:54 1 3 2019-09-03 07:27:54 2 6 2019-09-03 07:32:54 1 3 2019-09-03 07:32:54 2 6 2019-09-03 07:37:54 1 3 2019-09-03 07:37:54 2 1 2019-09-03 07:42:54 1 3 2019-09-03 07:42:54 2 1 2019-09-03 08:22:54 1 2 2019-09-03 08:22:54 2 2 2019-09-03 08:27:54 1 2 2019-09-03 08:27:54 2 2 2019-09-03 09:12:54 1 3 2019-09-03 09:12:54 2 3 2019-09-03 09:37:54 1 4 2019-09-03 09:37:54 2 3 2019-09-03 09:52:54 1 5 2019-09-03 09:52:54 2 3 2019-09-03 10:37:54 1 1 2019-09-03 10:37:54 2 1 2019-09-03 11:02:54 1 1 2019-09-03 11:02:54 2 3 2019-09-03 11:17:54 1 1 2019-09-03 11:17:54 2 6 2019-09-03 11:22:54 1 1 2019-09-03 11:22:54 2 7 2019-09-03 11:27:54 1 1 2019-09-03 11:27:54 2 6 2019-09-03 11:37:54 1 1 2019-09-03 11:37:54 2 2 2019-09-03 11:47:54 2 4 2019-09-03 12:02:54 2 4 2019-09-03 12:17:54 1 1 2019-09-03 12:17:54 2 3 2019-09-03 12:27:54 1 1 2019-09-03 12:27:54 2 6 2019-09-03 12:37:54 1 1 2019-09-03 12:37:54 2 4 2019-09-03 13:37:54 1 2 2019-09-03 13:37:54 2 5 2019-09-03 13:42:54 1 2 2019-09-03 13:42:54 2 4 2019-09-03 13:57:54 1 1 2019-09-03 13:57:54 2 5 2019-09-03 14:22:54 1 2 2019-09-03 14:22:54 2 5 2019-09-03 15:07:54 1 1 2019-09-03 15:07:54 2 4 2019-09-03 15:27:54 2 5 2019-09-03 15:42:54 1 2 2019-09-03 15:42:54 2 5 2019-09-03 15:47:54 1 2 2019-09-03 15:47:54 2 5 2019-09-03 15:52:54 1 2 2019-09-03 15:52:54 2 5 2019-09-03 16:02:54 1 1 2019-09-03 16:02:54 2 3 2019-09-03 16:12:54 1 1 2019-09-03 16:12:54 2 2 2019-09-03 16:22:54 2 2 2019-09-03 16:47:54 2 9 2019-09-03 17:02:54 1 1 2019-09-03 17:02:54 2 8 2019-09-03 17:12:54 1 1 2019-09-03 17:12:54 2 9 2019-09-03 17:22:54 1 2 2019-09-03 17:22:54 2 8 2019-09-03 17:27:54 1 1 2019-09-03 17:27:54 2 9 2019-09-03 17:32:54 1 2 2019-09-03 17:32:54 2 9 2019-09-03 17:37:54 1 2 2019-09-03 17:37:54 2 10 2019-09-03 17:42:54 1 3 2019-09-03 17:42:54 2 8 2019-09-03 17:47:54 1 3 2019-09-03 17:47:54 2 9 2019-09-03 17:52:54 1 3 2019-09-03 17:52:54 2 9 2019-09-03 18:02:54 1 4 2019-09-03 18:02:54 2 9 2019-09-03 18:22:54 1 3 2019-09-03 18:22:54 2 6 2019-09-03 18:32:54 1 1 2019-09-03 18:32:54 2 6 2019-09-03 18:37:54 1 1 2019-09-03 18:37:54 2 5 2019-09-03 19:12:54 1 3 2019-09-03 19:12:54 2 4 2019-09-03 19:22:54 1 2 2019-09-03 19:22:54 2 5 2019-09-03 19:27:54 1 2 2019-09-03 19:27:54 2 5 2019-09-03 19:32:54 1 3 2019-09-03 19:32:54 2 5 2019-09-03 19:42:54 1 3 2019-09-03 19:42:54 2 3 2019-09-03 19:57:54 1 2 2019-09-03 19:57:54 2 3 2019-09-03 20:42:54 1 2 2019-09-03 20:42:54 2 4 2019-09-03 21:27:54 1 2 2019-09-03 21:27:54 2 3 2019-09-03 21:32:54 1 2 2019-09-03 21:32:54 2 2 2019-09-03 21:37:54 1 3 2019-09-03 21:37:54 2 2 2019-09-03 21:42:54 1 3 2019-09-03 21:42:54 2 3 2019-09-03 21:47:54 1 3 2019-09-03 21:47:54 2 2 2019-09-03 21:52:54 1 2 2019-09-03 21:52:54 2 3 2019-09-03 22:12:54 1 3 2019-09-03 22:12:54 2 4 2019-09-03 22:52:54 1 3 2019-09-03 22:52:54 2 5 2019-09-03 22:57:54 1 4 2019-09-03 22:57:54 2 5 2019-09-03 23:12:54 1 5 2019-09-03 23:12:54 2 3 2019-09-03 23:17:54 1 5 2019-09-03 23:17:54 2 5 2019-09-03 23:27:54 1 4 2019-09-03 23:27:54 2 3 2019-09-03 23:32:54 1 4 2019-09-03 23:32:54 2 3 2019-09-03 23:37:54 1 4 2019-09-03 23:37:54 2 3 2019-09-03 23:42:54 1 4 2019-09-03 23:42:54 2 4 2019-09-03 23:47:54 1 4 2019-09-03 23:47:54 2 4 2019-09-04 00:02:54 1 3 2019-09-04 00:02:54 2 5 2019-09-03 02:22:54 1 3 2019-09-03 02:22:54 2 4 2019-09-03 02:27:54 1 3 2019-09-03 02:27:54 2 5 2019-09-03 02:42:54 1 3 2019-09-03 02:42:54 2 3 2019-09-03 02:47:54 1 3 2019-09-03 02:47:54 2 3 2019-09-03 02:52:54 1 3 2019-09-03 02:52:54 2 3 2019-09-03 03:42:54 1 3 2019-09-03 03:42:54 2 2 2019-09-03 03:47:54 1 3 2019-09-03 03:47:54 2 2 2019-09-03 03:52:54 1 3 2019-09-03 03:52:54 2 2 2019-09-03 05:22:54 1 3 2019-09-03 05:22:54 2 3 2019-09-03 05:27:54 1 3 2019-09-03 05:27:54 2 3 2019-09-03 05:47:54 1 3 2019-09-03 05:47:54 2 3 2019-09-03 06:02:54 1 3 2019-09-03 06:02:54 2 3 2019-09-03 06:07:54 1 2 2019-09-03 06:07:54 2 3 2019-09-03 06:17:54 1 3 2019-09-03 06:17:54 2 3 2019-09-03 06:37:54 1 4 2019-09-03 06:37:54 2 5 2019-09-03 07:02:54 1 3 2019-09-03 07:02:54 2 5 2019-09-03 07:07:54 1 3 2019-09-03 07:07:54 2 5 2019-09-03 07:17:54 1 3 2019-09-03 07:17:54 2 4 2019-09-03 08:12:54 1 2 2019-09-03 08:12:54 2 1 2019-09-03 08:17:54 1 2 2019-09-03 08:17:54 2 1 2019-09-03 08:47:54 1 3 2019-09-03 08:47:54 2 3 2019-09-03 08:52:54 1 3 2019-09-03 08:52:54 2 3 2019-09-03 08:57:54 1 3 2019-09-03 08:57:54 2 3 2019-09-03 09:02:54 1 3 2019-09-03 09:02:54 2 2 2019-09-03 09:07:54 1 3 2019-09-03 09:07:54 2 2 2019-09-03 09:17:54 1 3 2019-09-03 09:17:54 2 1 2019-09-03 09:47:54 1 4 2019-09-03 09:47:54 2 2 2019-09-03 10:02:54 1 4 2019-09-03 10:02:54 2 3 2019-09-03 10:17:54 1 2 2019-09-03 10:17:54 2 2 2019-09-03 10:32:54 1 3 2019-09-03 10:32:54 2 1 2019-09-03 10:42:54 1 1 2019-09-03 10:42:54 2 2 2019-09-03 10:47:54 2 4 2019-09-03 11:12:54 1 2 2019-09-03 11:12:54 2 4 2019-09-03 11:42:54 1 1 2019-09-03 11:42:54 2 4 2019-09-03 11:57:54 2 5 2019-09-03 12:12:54 1 2 2019-09-03 12:12:54 2 2 2019-09-03 12:57:54 1 1 2019-09-03 12:57:54 2 2 2019-09-03 13:02:54 1 1 2019-09-03 13:02:54 2 2 2019-09-03 13:07:54 1 1 2019-09-03 13:07:54 2 2 2019-09-03 13:12:54 1 1 2019-09-03 13:12:54 2 3 2019-09-03 13:17:54 1 1 2019-09-03 13:17:54 2 3 2019-09-03 13:47:54 1 2 2019-09-03 13:47:54 2 3 2019-09-03 13:52:54 1 2 2019-09-03 13:52:54 2 4 2019-09-03 14:02:54 1 3 2019-09-03 14:02:54 2 7 2019-09-03 14:07:54 1 3 2019-09-03 14:07:54 2 6 2019-09-03 14:12:54 1 3 2019-09-03 14:12:54 2 6 2019-09-03 14:17:54 1 2 2019-09-03 14:17:54 2 5 2019-09-03 14:27:54 1 3 2019-09-03 14:27:54 2 6 2019-09-03 14:42:54 1 1 2019-09-03 14:42:54 2 5 2019-09-03 14:52:54 1 2 2019-09-03 14:52:54 2 6 2019-09-03 15:02:54 1 1 2019-09-03 15:02:54 2 3 2019-09-03 15:22:54 2 6 2019-09-03 15:37:54 1 2 2019-09-03 15:37:54 2 5 2019-09-03 16:07:54 1 1 2019-09-03 16:07:54 2 3 2019-09-03 16:37:54 2 4 2019-09-03 17:07:54 1 1 2019-09-03 17:07:54 2 8 2019-09-03 17:57:54 1 3 2019-09-03 17:57:54 2 9 2019-09-03 18:07:54 1 4 2019-09-03 18:07:54 2 8 2019-09-03 18:17:54 1 3 2019-09-03 18:17:54 2 7 2019-09-03 19:07:54 1 3 2019-09-03 19:07:54 2 3 2019-09-03 19:17:54 1 2 2019-09-03 19:17:54 2 4 2019-09-03 19:52:54 1 2 2019-09-03 19:52:54 2 3 2019-09-03 20:02:54 1 2 2019-09-03 20:02:54 2 3 2019-09-03 20:07:54 1 4 2019-09-03 20:07:54 2 3 2019-09-03 20:12:54 1 4 2019-09-03 20:12:54 2 3 2019-09-03 20:17:54 1 3 2019-09-03 20:17:54 2 3 2019-09-03 20:22:54 1 3 2019-09-03 20:22:54 2 3 2019-09-03 20:52:54 1 3 2019-09-03 20:52:54 2 4 2019-09-03 21:02:54 1 2 2019-09-03 21:02:54 2 3 2019-09-03 21:07:54 1 2 2019-09-03 21:07:54 2 4 2019-09-03 21:12:54 1 1 2019-09-03 21:12:54 2 3 2019-09-03 21:17:54 1 3 2019-09-03 21:17:54 2 3 2019-09-03 21:22:54 1 2 2019-09-03 21:22:54 2 4 2019-09-03 22:02:54 1 3 2019-09-03 22:02:54 2 3 2019-09-03 22:07:54 1 3 2019-09-03 22:07:54 2 4 2019-09-03 22:22:54 1 4 2019-09-03 22:22:54 2 2 2019-09-03 22:27:54 1 5 2019-09-03 22:27:54 2 2 2019-09-03 22:42:54 1 4 2019-09-03 22:42:54 2 4 2019-09-03 23:22:54 1 5 2019-09-03 23:22:54 2 4 2019-09-03 23:52:54 1 4 2019-09-03 23:52:54 2 5 2019-09-03 23:57:54 1 3 2019-09-03 23:57:54 2 5 2019-09-04 00:07:54 1 3 2019-09-04 00:07:54 2 5 2019-09-04 00:12:54 1 3 2019-09-04 00:12:54 2 4 2019-09-04 00:17:54 1 3 2019-09-04 00:17:54 2 4 2019-09-04 00:22:54 1 3 2019-09-04 00:22:54 2 4 2019-09-04 00:27:54 1 3 2019-09-04 00:27:54 2 5 2019-09-04 00:32:54 1 3 2019-09-04 00:32:54 2 6 2019-09-04 00:37:54 1 2 2019-09-04 00:37:54 2 5 2019-09-04 00:42:54 1 2 2019-09-04 00:42:54 2 5 2019-09-04 00:47:54 1 2 2019-09-04 00:47:54 2 5 2019-09-04 00:52:54 1 2 2019-09-04 00:52:54 2 5 2019-09-04 00:57:54 1 2 2019-09-04 00:57:54 2 4 2019-09-04 01:02:54 1 2 2019-09-04 01:02:54 2 4 2019-09-04 01:07:54 1 2 2019-09-04 01:07:54 2 3 2019-09-04 01:12:54 1 2 2019-09-04 01:12:54 2 4 2019-09-04 01:47:54 1 3 2019-09-04 01:47:54 2 5 2019-09-04 01:57:54 1 2 2019-09-04 01:57:54 2 5 2019-09-04 02:02:54 1 2 2019-09-04 02:02:54 2 5 2019-09-04 02:07:54 1 2 2019-09-04 02:07:54 2 5 2019-09-04 02:22:54 1 2 2019-09-04 02:22:54 2 4 2019-09-04 02:27:54 1 2 2019-09-04 02:27:54 2 5 2019-09-04 02:42:54 1 2 2019-09-04 02:42:54 2 6 2019-09-04 02:47:54 1 2 2019-09-04 02:47:54 2 6 2019-09-04 03:02:54 1 2 2019-09-04 03:02:54 2 5 2019-09-04 03:07:54 1 2 2019-09-04 03:07:54 2 5 2019-09-04 04:02:54 1 2 2019-09-04 04:02:54 2 2 2019-09-04 04:07:54 1 2 2019-09-04 04:07:54 2 2 2019-09-04 04:12:54 1 2 2019-09-04 04:12:54 2 2 2019-09-04 04:17:54 1 2 2019-09-04 04:17:54 2 2 2019-09-04 04:22:54 1 2 2019-09-04 04:22:54 2 2 2019-09-04 04:27:54 1 2 2019-09-04 04:27:54 2 2 2019-09-04 04:32:54 1 2 2019-09-04 04:32:54 2 2 2019-09-04 04:37:54 1 2 2019-09-04 04:37:54 2 2 2019-09-04 04:42:54 1 2 2019-09-04 04:42:54 2 2 2019-09-04 04:47:54 1 2 2019-09-04 04:47:54 2 2 2019-09-04 05:07:54 1 3 2019-09-04 05:07:54 2 2 2019-09-04 05:17:54 1 3 2019-09-04 05:17:54 2 2 2019-09-04 05:37:54 1 3 2019-09-04 05:37:54 2 2 2019-09-04 05:42:54 1 3 2019-09-04 05:42:54 2 2 2019-09-04 05:47:54 1 3 2019-09-04 05:47:54 2 2 2019-09-04 05:52:54 1 2 2019-09-04 05:52:54 2 2 2019-09-04 06:12:54 1 2 2019-09-04 06:12:54 2 2 2019-09-04 06:37:54 1 3 2019-09-04 06:37:54 2 4 2019-09-04 07:12:54 1 3 2019-09-04 07:12:54 2 3 2019-09-04 07:17:54 1 3 2019-09-04 07:17:54 2 4 2019-09-04 07:42:54 1 4 2019-09-04 07:42:54 2 1 2019-09-04 07:52:54 1 3 2019-09-04 07:52:54 2 2 2019-09-04 07:57:54 1 3 2019-09-04 07:57:54 2 2 2019-09-04 08:37:54 1 3 2019-09-04 08:37:54 2 5 2019-09-04 08:52:54 1 2 2019-09-04 08:52:54 2 6 2019-09-04 09:12:54 1 2 2019-09-04 09:12:54 2 3 2019-09-04 09:32:54 1 2 2019-09-04 09:32:54 2 2 2019-09-04 09:37:54 1 3 2019-09-04 09:47:54 1 2 2019-09-04 09:52:54 1 2 2019-09-04 10:07:54 1 2 2019-09-04 10:07:54 2 2 2019-09-04 10:22:54 1 1 2019-09-04 10:22:54 2 2 2019-09-04 10:42:54 1 1 2019-09-04 10:42:54 2 2 2019-09-04 10:57:54 1 1 2019-09-04 10:57:54 2 4 2019-09-04 11:17:54 1 1 2019-09-04 11:17:54 2 3 2019-09-04 11:22:54 1 3 2019-09-04 11:22:54 2 2 2019-09-04 11:42:54 1 1 2019-09-04 11:42:54 2 3 2019-09-04 11:47:54 1 1 2019-09-04 11:47:54 2 3 2019-09-04 12:02:54 1 1 2019-09-04 12:02:54 2 3 2019-09-04 12:07:54 1 1 2019-09-04 12:07:54 2 4 2019-09-04 12:17:54 1 1 2019-09-04 12:17:54 2 4 2019-09-04 12:32:54 1 1 2019-09-04 12:32:54 2 2 2019-09-04 12:42:54 1 1 2019-09-04 12:42:54 2 3 2019-09-04 13:12:54 1 2 2019-09-04 13:12:54 2 1 2019-09-04 13:27:54 1 2 2019-09-04 13:27:54 2 2 2019-09-04 13:52:54 1 1 2019-09-04 13:52:54 2 1 2019-09-04 13:57:54 1 2 2019-09-04 13:57:54 2 3 2019-09-04 14:02:54 1 3 2019-09-04 14:02:54 2 5 2019-09-04 14:12:54 1 2 2019-09-04 14:12:54 2 3 2019-09-04 14:27:54 1 1 2019-09-04 14:27:54 2 4 2019-09-04 14:47:54 1 1 2019-09-04 14:47:54 2 5 2019-09-04 15:02:54 1 1 2019-09-04 15:02:54 2 6 2019-09-04 15:22:54 1 1 2019-09-04 15:22:54 2 4 2019-09-04 15:37:54 1 1 2019-09-04 15:37:54 2 2 2019-09-04 15:42:54 1 1 2019-09-04 15:42:54 2 2 2019-09-04 16:02:54 1 1 2019-09-04 16:02:54 2 4 2019-09-04 16:07:54 1 1 2019-09-04 16:07:54 2 3 2019-09-04 16:17:54 1 1 2019-09-04 16:17:54 2 2 2019-09-04 16:42:54 1 1 2019-09-04 16:42:54 2 7 2019-09-04 16:52:54 1 2 2019-09-04 16:52:54 2 5 2019-09-04 17:12:54 1 3 2019-09-04 17:12:54 2 5 2019-09-04 17:22:54 1 3 2019-09-04 17:22:54 2 5 2019-09-04 17:37:54 1 1 2019-09-04 17:37:54 2 3 2019-09-04 17:57:54 1 1 2019-09-04 17:57:54 2 3 2019-09-04 18:02:54 1 1 2019-09-04 18:02:54 2 4 2019-09-04 18:32:54 1 2 2019-09-04 18:32:54 2 5 2019-09-04 18:57:54 1 1 2019-09-04 18:57:54 2 4 2019-09-04 19:02:54 1 1 2019-09-04 19:02:54 2 4 2019-09-04 19:17:54 1 1 2019-09-04 19:17:54 2 3 2019-09-04 19:42:54 1 1 2019-09-04 19:42:54 2 1 2019-09-04 19:57:54 1 2 2019-09-04 19:57:54 2 2 2019-09-04 20:22:54 1 2 2019-09-04 20:22:54 2 3 2019-09-04 20:27:54 1 2 2019-09-04 20:27:54 2 2 2019-09-04 20:42:54 1 3 2019-09-04 20:42:54 2 1 2019-09-04 21:22:54 1 2 2019-09-04 21:22:54 2 2 2019-09-04 21:27:54 1 1 2019-09-04 21:27:54 2 2 2019-09-04 21:32:54 1 2 2019-09-04 21:32:54 2 2 2019-09-04 21:57:54 1 2 2019-09-04 21:57:54 2 3 2019-09-04 22:22:54 1 4 2019-09-04 22:22:54 2 4 2019-09-04 22:27:54 1 4 2019-09-04 22:27:54 2 4 2019-09-04 22:37:54 1 2 2019-09-04 22:37:54 2 4 2019-09-04 22:47:54 1 3 2019-09-04 22:47:54 2 4 2019-09-04 23:22:54 1 1 2019-09-04 23:22:54 2 5 2019-09-04 23:47:54 2 4 2019-09-04 01:17:54 1 3 2019-09-04 01:17:54 2 3 2019-09-04 01:22:54 1 3 2019-09-04 01:22:54 2 3 2019-09-04 01:32:54 1 3 2019-09-04 01:32:54 2 5 2019-09-04 01:37:54 1 3 2019-09-04 01:37:54 2 6 2019-09-04 01:42:54 1 3 2019-09-04 01:42:54 2 6 2019-09-04 02:17:54 1 2 2019-09-04 02:17:54 2 5 2019-09-04 02:32:54 1 2 2019-09-04 02:32:54 2 5 2019-09-04 02:37:54 1 2 2019-09-04 02:37:54 2 5 2019-09-04 02:52:54 1 2 2019-09-04 02:52:54 2 6 2019-09-04 02:57:54 1 2 2019-09-04 02:57:54 2 6 2019-09-04 04:52:54 1 3 2019-09-04 04:52:54 2 2 2019-09-04 04:57:54 1 3 2019-09-04 04:57:54 2 2 2019-09-04 05:12:54 1 4 2019-09-04 05:12:54 2 2 2019-09-04 05:22:54 1 3 2019-09-04 05:22:54 2 2 2019-09-04 05:32:54 1 3 2019-09-04 05:32:54 2 2 2019-09-04 06:02:54 1 2 2019-09-04 06:02:54 2 2 2019-09-04 06:07:54 1 2 2019-09-04 06:07:54 2 2 2019-09-04 06:17:54 1 2 2019-09-04 06:17:54 2 3 2019-09-04 06:22:54 1 2 2019-09-04 06:22:54 2 3 2019-09-04 06:27:54 1 2 2019-09-04 06:27:54 2 3 2019-09-04 06:32:54 1 2 2019-09-04 06:32:54 2 3 2019-09-04 07:32:54 1 4 2019-09-04 07:32:54 2 3 2019-09-04 07:37:54 1 4 2019-09-04 07:37:54 2 1 2019-09-04 08:02:54 1 3 2019-09-04 08:02:54 2 3 2019-09-04 08:12:54 1 3 2019-09-04 08:12:54 2 2 2019-09-04 08:17:54 1 3 2019-09-04 08:17:54 2 2 2019-09-04 08:22:54 1 3 2019-09-04 08:22:54 2 2 2019-09-04 08:32:54 1 3 2019-09-04 08:32:54 2 3 2019-09-04 08:42:54 1 3 2019-09-04 08:42:54 2 3 2019-09-04 08:47:54 1 2 2019-09-04 08:47:54 2 4 2019-09-04 08:57:54 1 3 2019-09-04 08:57:54 2 5 2019-09-04 09:17:54 1 3 2019-09-04 09:17:54 2 2 2019-09-04 09:22:54 1 3 2019-09-04 09:22:54 2 2 2019-09-04 09:42:54 1 2 2019-09-04 09:57:54 1 1 2019-09-04 09:57:54 2 1 2019-09-04 10:02:54 1 1 2019-09-04 10:02:54 2 2 2019-09-04 10:12:54 1 1 2019-09-04 10:12:54 2 2 2019-09-04 10:27:54 1 1 2019-09-04 10:27:54 2 2 2019-09-04 10:37:54 1 1 2019-09-04 10:37:54 2 2 2019-09-04 10:47:54 1 1 2019-09-04 10:47:54 2 2 2019-09-04 10:52:54 1 1 2019-09-04 10:52:54 2 2 2019-09-04 11:02:54 1 1 2019-09-04 11:02:54 2 3 2019-09-04 11:07:54 1 1 2019-09-04 11:07:54 2 3 2019-09-04 11:32:54 1 2 2019-09-04 11:32:54 2 3 2019-09-04 11:37:54 1 1 2019-09-04 11:37:54 2 4 2019-09-04 11:57:54 1 1 2019-09-04 11:57:54 2 3 2019-09-04 12:22:54 1 1 2019-09-04 12:22:54 2 3 2019-09-04 12:27:54 1 1 2019-09-04 12:27:54 2 2 2019-09-04 12:47:54 1 2 2019-09-04 12:47:54 2 3 2019-09-04 12:57:54 1 1 2019-09-04 12:57:54 2 1 2019-09-04 13:02:54 1 1 2019-09-04 13:07:54 1 1 2019-09-04 13:17:54 1 2 2019-09-04 13:32:54 1 2 2019-09-04 13:32:54 2 4 2019-09-04 13:42:54 1 1 2019-09-04 13:42:54 2 1 2019-09-04 14:07:54 1 3 2019-09-04 14:07:54 2 3 2019-09-04 14:22:54 1 1 2019-09-04 14:22:54 2 4 2019-09-04 14:32:54 1 1 2019-09-04 14:32:54 2 5 2019-09-04 14:52:54 1 1 2019-09-04 14:52:54 2 4 2019-09-04 14:57:54 1 2 2019-09-04 14:57:54 2 5 2019-09-04 15:07:54 1 1 2019-09-04 15:07:54 2 5 2019-09-04 15:27:54 1 1 2019-09-04 15:27:54 2 3 2019-09-04 15:32:54 1 1 2019-09-04 15:32:54 2 2 2019-09-04 15:47:54 1 1 2019-09-04 15:47:54 2 1 2019-09-04 15:52:54 1 1 2019-09-04 15:52:54 2 2 2019-09-04 16:12:54 1 1 2019-09-04 16:12:54 2 4 2019-09-04 16:22:54 1 1 2019-09-04 16:22:54 2 3 2019-09-04 16:27:54 1 1 2019-09-04 16:27:54 2 6 2019-09-04 16:32:54 1 1 2019-09-04 16:32:54 2 7 2019-09-04 16:37:55 1 1 2019-09-04 16:37:55 2 7 2019-09-04 16:47:54 1 1 2019-09-04 16:47:54 2 6 2019-09-04 17:32:54 1 2 2019-09-04 17:32:54 2 4 2019-09-04 17:42:54 1 1 2019-09-04 17:42:54 2 4 2019-09-04 18:17:54 1 3 2019-09-04 18:17:54 2 3 2019-09-04 19:07:54 1 1 2019-09-04 19:07:54 2 3 2019-09-04 20:07:54 1 2 2019-09-04 20:07:54 2 4 2019-09-04 20:17:54 1 2 2019-09-04 20:17:54 2 3 2019-09-04 20:32:54 1 2 2019-09-04 20:32:54 2 1 2019-09-04 20:47:54 1 2 2019-09-04 20:47:54 2 1 2019-09-04 20:52:54 1 3 2019-09-04 20:52:54 2 1 2019-09-04 20:57:54 1 2 2019-09-04 20:57:54 2 1 2019-09-04 21:12:54 1 2 2019-09-04 21:12:54 2 2 2019-09-04 21:37:54 1 2 2019-09-04 21:37:54 2 2 2019-09-04 21:47:54 1 3 2019-09-04 21:47:54 2 2 2019-09-04 21:52:54 1 3 2019-09-04 21:52:54 2 2 2019-09-04 22:12:54 1 3 2019-09-04 22:12:54 2 5 2019-09-04 22:32:54 1 1 2019-09-04 22:32:54 2 3 2019-09-04 22:57:54 1 3 2019-09-04 22:57:54 2 4 2019-09-04 23:02:54 1 1 2019-09-04 23:02:54 2 4 2019-09-04 23:12:54 1 2 2019-09-04 23:12:54 2 3 2019-09-04 23:27:54 2 5 2019-09-04 23:32:54 2 4 2019-09-04 23:52:54 2 3 2019-09-05 00:07:54 1 1 2019-09-05 00:07:54 2 4 2019-09-05 00:12:54 1 1 2019-09-05 00:12:54 2 5 2019-09-05 00:32:54 2 6 2019-09-05 00:47:54 2 6 2019-09-04 01:27:54 1 2 2019-09-04 01:27:54 2 5 2019-09-04 01:52:54 1 3 2019-09-04 01:52:54 2 4 2019-09-04 02:12:54 1 3 2019-09-04 02:12:54 2 5 2019-09-04 03:12:54 1 2 2019-09-04 03:12:54 2 4 2019-09-04 03:17:54 1 2 2019-09-04 03:17:54 2 4 2019-09-04 03:22:54 1 2 2019-09-04 03:22:54 2 4 2019-09-04 03:27:54 1 2 2019-09-04 03:27:54 2 3 2019-09-04 03:32:54 1 2 2019-09-04 03:32:54 2 3 2019-09-04 03:37:54 1 2 2019-09-04 03:37:54 2 3 2019-09-04 03:42:54 1 2 2019-09-04 03:42:54 2 3 2019-09-04 03:47:54 1 2 2019-09-04 03:47:54 2 3 2019-09-04 03:52:54 1 2 2019-09-04 03:52:54 2 3 2019-09-04 03:57:54 1 2 2019-09-04 03:57:54 2 3 2019-09-04 05:02:54 1 4 2019-09-04 05:02:54 2 2 2019-09-04 05:27:54 1 4 2019-09-04 05:27:54 2 2 2019-09-04 05:57:54 1 2 2019-09-04 05:57:54 2 2 2019-09-04 06:42:54 1 3 2019-09-04 06:42:54 2 2 2019-09-04 06:47:54 1 3 2019-09-04 06:47:54 2 2 2019-09-04 06:52:54 1 3 2019-09-04 06:52:54 2 2 2019-09-04 06:57:54 1 3 2019-09-04 06:57:54 2 2 2019-09-04 07:02:54 1 3 2019-09-04 07:02:54 2 2 2019-09-04 07:07:54 1 3 2019-09-04 07:07:54 2 2 2019-09-04 07:22:54 1 3 2019-09-04 07:22:54 2 4 2019-09-04 07:27:54 1 3 2019-09-04 07:27:54 2 4 2019-09-04 07:47:54 1 4 2019-09-04 07:47:54 2 1 2019-09-04 08:07:54 1 3 2019-09-04 08:07:54 2 2 2019-09-04 08:27:54 1 3 2019-09-04 08:27:54 2 1 2019-09-04 09:02:54 1 3 2019-09-04 09:02:54 2 5 2019-09-04 09:07:54 1 3 2019-09-04 09:07:54 2 4 2019-09-04 09:27:54 1 3 2019-09-04 09:27:54 2 2 2019-09-04 10:17:54 1 1 2019-09-04 10:17:54 2 3 2019-09-04 10:32:54 1 1 2019-09-04 10:32:54 2 2 2019-09-04 11:12:54 1 1 2019-09-04 11:12:54 2 5 2019-09-04 11:27:54 1 1 2019-09-04 11:27:54 2 3 2019-09-04 11:52:54 1 1 2019-09-04 11:52:54 2 4 2019-09-04 12:12:54 1 1 2019-09-04 12:12:54 2 7 2019-09-04 12:37:54 1 1 2019-09-04 12:37:54 2 2 2019-09-04 12:52:54 1 1 2019-09-04 12:52:54 2 3 2019-09-04 13:22:54 1 2 2019-09-04 13:22:54 2 1 2019-09-04 13:37:54 1 1 2019-09-04 13:37:54 2 3 2019-09-04 13:47:54 1 1 2019-09-04 13:47:54 2 2 2019-09-04 14:17:54 1 1 2019-09-04 14:17:54 2 2 2019-09-04 14:37:54 1 1 2019-09-04 14:37:54 2 4 2019-09-04 14:42:54 1 1 2019-09-04 14:42:54 2 4 2019-09-04 15:12:54 1 2 2019-09-04 15:12:54 2 5 2019-09-04 15:17:54 1 1 2019-09-04 15:17:54 2 5 2019-09-04 15:57:54 1 1 2019-09-04 15:57:54 2 3 2019-09-04 16:57:54 1 3 2019-09-04 16:57:54 2 4 2019-09-04 17:02:54 1 3 2019-09-04 17:02:54 2 4 2019-09-04 17:07:54 1 3 2019-09-04 17:07:54 2 4 2019-09-04 17:17:54 1 3 2019-09-04 17:17:54 2 6 2019-09-04 17:27:54 1 4 2019-09-04 17:27:54 2 4 2019-09-04 17:47:54 1 1 2019-09-04 17:47:54 2 2 2019-09-04 17:52:54 1 1 2019-09-04 17:52:54 2 2 2019-09-04 18:07:54 1 1 2019-09-04 18:07:54 2 4 2019-09-04 18:12:54 1 2 2019-09-04 18:12:54 2 4 2019-09-04 18:22:54 1 3 2019-09-04 18:22:54 2 4 2019-09-04 18:27:54 1 3 2019-09-04 18:27:54 2 4 2019-09-04 18:37:54 1 1 2019-09-04 18:37:54 2 4 2019-09-04 18:42:54 1 1 2019-09-04 18:42:54 2 4 2019-09-04 18:47:54 1 1 2019-09-04 18:47:54 2 5 2019-09-04 18:52:54 1 1 2019-09-04 18:52:54 2 5 2019-09-04 19:12:54 1 1 2019-09-04 19:12:54 2 2 2019-09-04 19:22:54 1 2 2019-09-04 19:22:54 2 4 2019-09-04 19:27:54 1 3 2019-09-04 19:27:54 2 3 2019-09-04 19:32:54 1 3 2019-09-04 19:32:54 2 2 2019-09-04 19:37:54 1 1 2019-09-04 19:37:54 2 3 2019-09-04 19:47:54 1 1 2019-09-04 19:47:54 2 1 2019-09-04 19:52:54 1 1 2019-09-04 19:52:54 2 1 2019-09-04 20:02:54 1 2 2019-09-04 20:02:54 2 2 2019-09-04 20:12:54 1 2 2019-09-04 20:12:54 2 5 2019-09-04 20:37:54 1 2 2019-09-04 21:02:54 1 3 2019-09-04 21:02:54 2 1 2019-09-04 21:07:54 1 3 2019-09-04 21:07:54 2 2 2019-09-04 21:17:54 1 1 2019-09-04 21:17:54 2 3 2019-09-04 21:42:54 1 1 2019-09-04 21:42:54 2 4 2019-09-04 22:02:54 1 3 2019-09-04 22:02:54 2 3 2019-09-04 22:07:54 1 2 2019-09-04 22:07:54 2 4 2019-09-04 22:17:54 1 3 2019-09-04 22:17:54 2 4 2019-09-04 22:42:54 1 1 2019-09-04 22:42:54 2 4 2019-09-04 22:52:54 1 3 2019-09-04 22:52:54 2 4 2019-09-04 23:07:54 1 1 2019-09-04 23:07:54 2 4 2019-09-04 23:17:54 1 2 2019-09-04 23:17:54 2 3 2019-09-04 23:37:54 2 5 2019-09-04 23:42:54 2 5 2019-09-04 23:57:54 2 4 2019-09-05 00:02:54 1 1 2019-09-05 00:02:54 2 4 2019-09-05 00:17:54 2 5 2019-09-05 00:22:54 2 6 2019-09-05 00:27:54 2 5 2019-09-05 00:37:54 2 6 2019-09-05 00:42:54 2 6 2019-09-05 00:52:54 1 1 2019-09-05 00:52:54 2 4 2019-09-05 00:57:54 2 5 2019-09-05 01:02:54 2 6 2019-09-05 01:07:54 2 6 2019-09-05 01:12:54 2 6 2019-09-05 01:17:54 2 5 2019-09-05 01:22:54 2 4 2019-09-05 01:27:54 2 4 2019-09-05 01:32:54 2 4 2019-09-05 01:37:55 2 3 2019-09-05 01:42:54 2 3 2019-09-05 02:07:54 2 2 2019-09-05 04:02:54 2 1 2019-09-05 04:07:54 2 1 2019-09-05 05:27:54 1 1 2019-09-05 05:37:54 1 1 2019-09-05 05:42:54 1 1 2019-09-05 05:57:54 1 1 2019-09-05 06:42:54 2 1 2019-09-05 06:47:54 2 1 2019-09-05 06:57:54 2 2 2019-09-05 07:07:54 2 1 2019-09-05 07:12:54 2 1 2019-09-05 07:17:54 2 1 2019-09-05 07:22:54 2 1 2019-09-05 07:52:54 1 1 2019-09-05 07:57:54 1 1 2019-09-05 08:07:54 1 2 2019-09-05 08:27:54 1 1 2019-09-05 08:32:54 1 4 2019-09-05 08:42:54 1 4 2019-09-05 08:42:54 2 1 2019-09-05 08:57:54 1 3 2019-09-05 08:57:54 2 1 2019-09-05 09:02:54 1 3 2019-09-05 09:02:54 2 1 2019-09-05 09:07:54 1 3 2019-09-05 09:07:54 2 1 2019-09-05 09:32:54 1 2 2019-09-05 09:32:54 2 2 2019-09-05 09:37:54 1 3 2019-09-05 09:37:54 2 2 2019-09-05 09:42:54 1 2 2019-09-05 09:42:54 2 4 2019-09-05 09:52:54 1 2 2019-09-05 09:52:54 2 3 2019-09-05 10:07:54 1 2 2019-09-05 10:07:54 2 4 2019-09-05 10:17:54 1 4 2019-09-05 10:17:54 2 5 2019-09-05 10:27:54 1 3 2019-09-05 10:27:54 2 4 2019-09-05 10:32:54 1 3 2019-09-05 10:32:54 2 6 2019-09-05 10:42:54 1 3 2019-09-05 10:42:54 2 5 2019-09-05 11:12:54 1 6 2019-09-05 11:12:54 2 4 2019-09-05 11:47:54 1 6 2019-09-05 11:47:54 2 6 2019-09-05 12:07:54 1 5 2019-09-05 12:07:54 2 4 2019-09-05 12:12:54 1 3 2019-09-05 12:12:54 2 4 2019-09-05 12:22:54 1 3 2019-09-05 12:22:54 2 5 2019-09-05 12:27:54 1 3 2019-09-05 12:27:54 2 4 2019-09-05 13:37:54 1 3 2019-09-05 13:37:54 2 5 2019-09-05 13:42:54 1 3 2019-09-05 13:42:54 2 5 2019-09-05 13:47:54 1 3 2019-09-05 13:47:54 2 5 2019-09-05 13:52:54 1 3 2019-09-05 13:52:54 2 5 2019-09-05 13:57:54 1 3 2019-09-05 13:57:54 2 5 2019-09-05 14:27:54 1 3 2019-09-05 14:27:54 2 4 2019-09-05 14:37:54 1 4 2019-09-05 14:37:54 2 6 2019-09-05 14:42:54 1 4 2019-09-05 14:42:54 2 6 2019-09-05 15:02:54 1 4 2019-09-05 15:02:54 2 8 2019-09-05 15:07:54 1 4 2019-09-05 15:07:54 2 5 2019-09-05 15:22:54 1 5 2019-09-05 15:22:54 2 6 2019-09-05 15:37:54 1 4 2019-09-05 15:37:54 2 6 2019-09-05 15:42:54 1 4 2019-09-05 15:42:54 2 5 2019-09-05 15:47:54 1 4 2019-09-05 15:47:54 2 5 2019-09-05 15:52:54 1 4 2019-09-05 15:52:54 2 5 2019-09-05 16:22:54 1 4 2019-09-05 16:22:54 2 5 2019-09-05 16:27:54 1 4 2019-09-05 16:27:54 2 5 2019-09-05 16:37:54 1 5 2019-09-05 16:37:54 2 4 2019-09-05 16:42:54 1 4 2019-09-05 16:42:54 2 4 2019-09-05 17:02:54 1 3 2019-09-05 17:02:54 2 2 2019-09-05 17:27:54 1 4 2019-09-05 17:27:54 2 2 2019-09-05 17:37:54 1 3 2019-09-05 17:37:54 2 2 2019-09-05 17:47:54 1 3 2019-09-05 17:47:54 2 3 2019-09-05 17:52:54 1 3 2019-09-05 17:52:54 2 3 2019-09-05 17:57:54 1 3 2019-09-05 17:57:54 2 3 2019-09-05 18:32:54 1 3 2019-09-05 18:32:54 2 2 2019-09-05 18:52:54 1 3 2019-09-05 18:52:54 2 2 2019-09-05 19:27:54 1 5 2019-09-05 19:27:54 2 3 2019-09-05 19:32:54 1 3 2019-09-05 19:32:54 2 1 2019-09-05 20:17:54 1 6 2019-09-05 20:17:54 2 2 2019-09-05 20:52:54 1 4 2019-09-05 20:52:54 2 3 2019-09-05 21:07:54 1 5 2019-09-05 21:07:54 2 2 2019-09-05 21:12:54 1 5 2019-09-05 21:12:54 2 3 2019-09-05 21:22:54 1 4 2019-09-05 21:22:54 2 3 2019-09-05 21:27:54 1 5 2019-09-05 21:27:54 2 4 2019-09-05 22:02:54 1 2 2019-09-05 22:02:54 2 2 2019-09-05 22:12:54 1 1 2019-09-05 22:12:54 2 3 2019-09-05 22:32:54 1 2 2019-09-05 22:32:54 2 4 2019-09-05 23:02:54 1 3 2019-09-05 23:02:54 2 3 2019-09-05 23:07:54 1 2 2019-09-05 23:07:54 2 3 2019-09-05 23:27:54 1 2 2019-09-05 23:27:54 2 2 2019-09-05 23:37:54 1 2 2019-09-05 23:37:54 2 3 2019-09-05 23:52:54 1 2 2019-09-05 23:52:54 2 5 2019-09-06 00:02:54 1 1 2019-09-06 00:02:54 2 4 2019-09-06 00:07:54 1 1 2019-09-06 00:07:54 2 5 2019-09-06 00:12:54 1 3 2019-09-06 00:12:54 2 3 2019-09-06 00:17:54 1 2 2019-09-06 00:17:54 2 3 2019-09-06 00:32:54 1 1 2019-09-06 00:32:54 2 6 2019-09-06 00:37:54 1 1 2019-09-06 00:37:54 2 6 2019-09-06 00:47:54 1 2 2019-09-06 00:47:54 2 4 2019-09-06 01:02:54 2 5 2019-09-06 01:37:54 2 4 2019-09-06 01:42:54 2 4 2019-09-06 02:22:54 2 4 2019-09-06 02:57:54 2 4 2019-09-06 03:02:54 2 4 2019-09-06 03:07:54 2 4 2019-09-06 03:22:54 2 3 2019-09-06 03:27:54 2 3 2019-09-06 04:02:54 2 2 2019-09-06 06:22:54 2 3 2019-09-06 06:27:54 2 3 2019-09-06 06:32:54 2 3 2019-09-06 06:37:54 2 3 2019-09-06 07:12:54 1 1 2019-09-06 07:12:54 2 2 2019-09-06 07:17:54 1 1 2019-09-06 07:17:54 2 2 2019-09-06 07:42:54 1 1 2019-09-06 08:37:54 1 1 2019-09-06 08:37:54 2 4 2019-09-06 08:42:54 1 1 2019-09-06 08:42:54 2 4 2019-09-06 08:47:54 1 1 2019-09-06 08:47:54 2 4 2019-09-06 08:52:54 2 4 2019-09-05 01:47:54 2 3 2019-09-05 01:52:54 2 3 2019-09-05 01:57:54 2 3 2019-09-05 02:02:54 2 3 2019-09-05 02:17:54 2 4 2019-09-05 02:22:54 2 4 2019-09-05 02:27:54 2 4 2019-09-05 02:32:54 2 4 2019-09-05 02:37:54 2 4 2019-09-05 03:02:54 2 1 2019-09-05 03:07:54 2 1 2019-09-05 05:17:54 1 1 2019-09-05 06:22:54 2 1 2019-09-05 06:27:54 2 1 2019-09-05 06:37:54 2 2 2019-09-05 06:52:54 2 1 2019-09-05 07:27:54 1 1 2019-09-05 07:32:54 1 1 2019-09-05 08:17:54 1 1 2019-09-05 08:17:54 2 1 2019-09-05 08:22:54 1 1 2019-09-05 08:22:54 2 2 2019-09-05 08:47:54 1 4 2019-09-05 08:52:54 1 3 2019-09-05 08:52:54 2 1 2019-09-05 09:17:54 1 3 2019-09-05 09:17:54 2 1 2019-09-05 09:27:54 1 3 2019-09-05 09:27:54 2 2 2019-09-05 09:47:54 1 2 2019-09-05 09:47:54 2 4 2019-09-05 10:12:54 1 2 2019-09-05 10:12:54 2 4 2019-09-05 10:22:54 1 3 2019-09-05 10:22:54 2 6 2019-09-05 10:47:54 1 4 2019-09-05 10:47:54 2 4 2019-09-05 10:57:54 1 5 2019-09-05 10:57:54 2 3 2019-09-05 11:22:54 1 6 2019-09-05 11:22:54 2 4 2019-09-05 11:37:54 1 6 2019-09-05 11:37:54 2 3 2019-09-05 12:17:54 1 3 2019-09-05 12:17:54 2 4 2019-09-05 12:32:54 1 3 2019-09-05 12:32:54 2 2 2019-09-05 12:37:54 1 2 2019-09-05 12:37:54 2 2 2019-09-05 12:52:54 1 3 2019-09-05 12:52:54 2 1 2019-09-05 13:02:54 1 3 2019-09-05 13:02:54 2 1 2019-09-05 13:17:54 1 4 2019-09-05 13:17:54 2 2 2019-09-05 13:22:54 1 4 2019-09-05 13:22:54 2 3 2019-09-05 13:27:54 1 4 2019-09-05 13:27:54 2 5 2019-09-05 14:02:54 1 3 2019-09-05 14:02:54 2 6 2019-09-05 14:12:54 1 4 2019-09-05 14:12:54 2 6 2019-09-05 14:17:54 1 3 2019-09-05 14:17:54 2 6 2019-09-05 14:22:54 1 3 2019-09-05 14:22:54 2 5 2019-09-05 14:47:54 1 3 2019-09-05 14:47:54 2 6 2019-09-05 15:12:54 1 5 2019-09-05 15:12:54 2 7 2019-09-05 15:32:54 1 4 2019-09-05 15:32:54 2 7 2019-09-05 16:07:54 1 3 2019-09-05 16:07:54 2 5 2019-09-05 16:52:54 1 3 2019-09-05 16:52:54 2 2 2019-09-05 17:12:54 1 4 2019-09-05 17:12:54 2 3 2019-09-05 17:42:54 1 3 2019-09-05 17:42:54 2 2 2019-09-05 18:02:54 1 3 2019-09-05 18:02:54 2 3 2019-09-05 18:07:54 1 3 2019-09-05 18:07:54 2 2 2019-09-05 18:17:54 1 3 2019-09-05 18:17:54 2 3 2019-09-05 18:22:54 1 3 2019-09-05 18:22:54 2 3 2019-09-05 18:27:54 1 3 2019-09-05 18:27:54 2 3 2019-09-05 19:02:54 1 4 2019-09-05 19:02:54 2 3 2019-09-05 19:12:54 1 4 2019-09-05 19:12:54 2 2 2019-09-05 19:22:54 1 4 2019-09-05 19:22:54 2 3 2019-09-05 19:37:54 1 5 2019-09-05 19:37:54 2 1 2019-09-05 19:47:54 1 4 2019-09-05 19:47:54 2 3 2019-09-05 20:07:54 1 5 2019-09-05 20:07:54 2 1 2019-09-05 20:12:54 1 5 2019-09-05 20:12:54 2 1 2019-09-05 20:22:54 1 5 2019-09-05 20:22:54 2 3 2019-09-05 20:27:54 1 5 2019-09-05 20:27:54 2 4 2019-09-05 20:57:54 1 5 2019-09-05 20:57:54 2 3 2019-09-05 21:02:54 1 5 2019-09-05 21:02:54 2 2 2019-09-05 21:17:54 1 5 2019-09-05 21:17:54 2 3 2019-09-05 21:32:54 1 4 2019-09-05 21:32:54 2 3 2019-09-05 21:37:54 1 4 2019-09-05 21:37:54 2 3 2019-09-05 21:47:54 1 4 2019-09-05 21:47:54 2 3 2019-09-05 21:57:54 1 2 2019-09-05 21:57:54 2 2 2019-09-05 22:07:54 1 2 2019-09-05 22:07:54 2 2 2019-09-05 22:37:54 1 3 2019-09-05 22:37:54 2 3 2019-09-05 22:42:54 1 3 2019-09-05 22:42:54 2 4 2019-09-05 22:52:54 1 2 2019-09-05 22:52:54 2 6 2019-09-05 22:57:54 1 2 2019-09-05 22:57:54 2 4 2019-09-05 23:42:54 1 2 2019-09-05 23:42:54 2 6 2019-09-05 23:57:54 1 2 2019-09-05 23:57:54 2 6 2019-09-06 00:27:54 1 2 2019-09-06 00:27:54 2 6 2019-09-06 00:57:54 1 1 2019-09-06 00:57:54 2 5 2019-09-06 02:17:54 2 5 2019-09-06 02:27:54 2 4 2019-09-06 02:32:54 2 4 2019-09-06 02:37:54 2 4 2019-09-06 02:52:54 2 3 2019-09-06 03:17:54 2 4 2019-09-06 03:42:54 2 1 2019-09-06 03:52:54 2 2 2019-09-06 04:07:54 2 1 2019-09-06 04:12:54 2 1 2019-09-06 04:17:54 2 1 2019-09-06 04:22:54 2 1 2019-09-06 04:27:54 2 1 2019-09-06 04:32:54 2 1 2019-09-06 04:37:54 2 1 2019-09-06 04:42:54 2 1 2019-09-06 04:47:54 2 1 2019-09-06 04:52:54 2 1 2019-09-06 04:57:54 2 1 2019-09-06 05:02:54 2 1 2019-09-06 05:07:54 2 1 2019-09-06 05:12:54 2 1 2019-09-06 05:17:54 2 1 2019-09-06 05:22:54 2 1 2019-09-06 05:27:54 2 1 2019-09-06 05:32:54 2 1 2019-09-06 05:37:54 2 1 2019-09-06 05:42:54 2 1 2019-09-06 05:47:54 2 1 2019-09-06 06:57:54 1 1 2019-09-06 06:57:54 2 2 2019-09-06 07:02:54 1 1 2019-09-06 07:02:54 2 2 2019-09-06 07:07:54 1 1 2019-09-06 07:07:54 2 2 2019-09-06 07:22:54 1 1 2019-09-06 07:22:54 2 1 2019-09-06 07:27:54 2 1 2019-09-06 07:32:54 2 1 2019-09-06 08:07:54 2 1 2019-09-06 08:12:54 2 2 2019-09-06 08:27:54 2 4 2019-09-06 08:57:54 1 1 2019-09-06 08:57:54 2 3 2019-09-05 02:12:54 2 3 2019-09-05 02:42:54 2 2 2019-09-05 02:47:54 2 2 2019-09-05 02:52:54 2 2 2019-09-05 02:57:54 2 2 2019-09-05 03:47:54 2 1 2019-09-05 03:52:54 2 1 2019-09-05 03:57:54 2 1 2019-09-05 05:22:54 1 1 2019-09-05 05:47:54 2 1 2019-09-05 05:52:54 2 1 2019-09-05 06:32:54 2 2 2019-09-05 07:02:54 2 1 2019-09-05 08:02:54 1 2 2019-09-05 08:12:54 1 1 2019-09-05 08:37:54 1 3 2019-09-05 09:12:54 1 2 2019-09-05 09:12:54 2 1 2019-09-05 09:22:54 1 3 2019-09-05 09:22:54 2 2 2019-09-05 09:57:54 1 3 2019-09-05 09:57:54 2 3 2019-09-05 10:02:54 1 3 2019-09-05 10:02:54 2 3 2019-09-05 10:37:54 1 3 2019-09-05 10:37:54 2 5 2019-09-05 10:52:54 1 4 2019-09-05 10:52:54 2 3 2019-09-05 11:02:54 1 5 2019-09-05 11:02:54 2 3 2019-09-05 11:07:54 1 5 2019-09-05 11:07:54 2 5 2019-09-05 11:17:54 1 6 2019-09-05 11:17:54 2 4 2019-09-05 11:27:54 1 6 2019-09-05 11:27:54 2 4 2019-09-05 11:32:54 1 6 2019-09-05 11:32:54 2 3 2019-09-05 11:42:54 1 7 2019-09-05 11:42:54 2 5 2019-09-05 11:52:54 1 5 2019-09-05 11:52:54 2 7 2019-09-05 11:57:54 1 4 2019-09-05 11:57:54 2 5 2019-09-05 12:02:54 1 5 2019-09-05 12:02:54 2 5 2019-09-05 12:42:54 1 2 2019-09-05 12:42:54 2 1 2019-09-05 12:47:54 1 3 2019-09-05 12:47:54 2 1 2019-09-05 12:57:54 1 3 2019-09-05 12:57:54 2 1 2019-09-05 13:07:54 1 4 2019-09-05 13:12:54 1 4 2019-09-05 13:12:54 2 1 2019-09-05 13:32:54 1 3 2019-09-05 13:32:54 2 5 2019-09-05 14:07:54 1 3 2019-09-05 14:07:54 2 6 2019-09-05 14:32:54 1 4 2019-09-05 14:32:54 2 4 2019-09-05 14:52:54 1 4 2019-09-05 14:52:54 2 6 2019-09-05 14:57:54 1 4 2019-09-05 14:57:54 2 7 2019-09-05 15:17:54 1 4 2019-09-05 15:17:54 2 7 2019-09-05 15:27:54 1 5 2019-09-05 15:27:54 2 6 2019-09-05 15:57:54 1 2 2019-09-05 15:57:54 2 4 2019-09-05 16:02:54 1 3 2019-09-05 16:02:54 2 4 2019-09-05 16:12:54 1 4 2019-09-05 16:12:54 2 4 2019-09-05 16:17:54 1 4 2019-09-05 16:17:54 2 4 2019-09-05 16:32:54 1 3 2019-09-05 16:32:54 2 3 2019-09-05 16:47:54 1 3 2019-09-05 16:47:54 2 4 2019-09-05 16:57:54 1 3 2019-09-05 16:57:54 2 2 2019-09-05 17:07:54 1 4 2019-09-05 17:07:54 2 3 2019-09-05 17:17:54 1 4 2019-09-05 17:17:54 2 3 2019-09-05 17:22:54 1 4 2019-09-05 17:22:54 2 1 2019-09-05 17:32:54 1 3 2019-09-05 17:32:54 2 2 2019-09-05 18:12:54 1 3 2019-09-05 18:12:54 2 2 2019-09-05 18:37:54 1 3 2019-09-05 18:37:54 2 2 2019-09-05 18:42:54 1 3 2019-09-05 18:42:54 2 2 2019-09-05 18:47:54 1 3 2019-09-05 18:47:54 2 2 2019-09-05 18:57:54 1 4 2019-09-05 18:57:54 2 2 2019-09-05 19:07:54 1 4 2019-09-05 19:07:54 2 3 2019-09-05 19:17:54 1 4 2019-09-05 19:17:54 2 2 2019-09-05 19:42:54 1 4 2019-09-05 19:42:54 2 2 2019-09-05 19:52:54 1 5 2019-09-05 19:52:54 2 3 2019-09-05 19:57:54 1 5 2019-09-05 19:57:54 2 2 2019-09-05 20:02:54 1 5 2019-09-05 20:02:54 2 2 2019-09-05 20:32:54 1 6 2019-09-05 20:32:54 2 4 2019-09-05 20:37:54 1 5 2019-09-05 20:37:54 2 6 2019-09-05 20:42:54 1 5 2019-09-05 20:42:54 2 6 2019-09-05 20:47:54 1 5 2019-09-05 20:47:54 2 3 2019-09-05 21:42:54 1 5 2019-09-05 21:42:54 2 3 2019-09-05 21:52:54 1 2 2019-09-05 21:52:54 2 5 2019-09-05 22:17:54 1 1 2019-09-05 22:17:54 2 3 2019-09-05 22:22:54 1 2 2019-09-05 22:22:54 2 5 2019-09-05 22:27:54 1 2 2019-09-05 22:27:54 2 4 2019-09-05 22:47:54 1 2 2019-09-05 22:47:54 2 6 2019-09-05 23:12:54 1 3 2019-09-05 23:12:54 2 4 2019-09-05 23:17:54 1 2 2019-09-05 23:17:54 2 5 2019-09-05 23:22:54 1 2 2019-09-05 23:22:54 2 4 2019-09-05 23:32:54 1 2 2019-09-05 23:32:54 2 2 2019-09-05 23:47:54 1 2 2019-09-05 23:47:54 2 5 2019-09-06 00:22:54 1 2 2019-09-06 00:22:54 2 4 2019-09-06 00:42:54 1 1 2019-09-06 00:42:54 2 5 2019-09-06 00:52:54 1 2 2019-09-06 00:52:54 2 5 2019-09-06 01:07:54 2 4 2019-09-06 01:12:54 2 4 2019-09-06 01:17:54 2 4 2019-09-06 01:22:54 2 4 2019-09-06 01:27:54 2 4 2019-09-06 01:32:54 2 4 2019-09-06 01:47:54 2 3 2019-09-06 01:52:54 2 4 2019-09-06 01:57:54 2 4 2019-09-06 02:02:54 2 4 2019-09-06 02:07:54 2 4 2019-09-06 02:12:54 2 4 2019-09-06 02:42:54 2 4 2019-09-06 02:47:54 2 4 2019-09-06 03:12:54 2 3 2019-09-06 03:32:54 2 2 2019-09-06 03:37:54 2 2 2019-09-06 03:47:54 1 1 2019-09-06 03:47:54 2 2 2019-09-06 03:57:54 2 2 2019-09-06 05:52:54 2 2 2019-09-06 05:57:54 2 2 2019-09-06 06:02:54 2 2 2019-09-06 06:07:54 2 2 2019-09-06 06:12:54 2 2 2019-09-06 06:17:54 2 2 2019-09-06 06:42:54 1 1 2019-09-06 06:42:54 2 2 2019-09-06 06:47:54 1 1 2019-09-06 06:47:54 2 2 2019-09-06 06:52:54 1 1 2019-09-06 06:52:54 2 2 2019-09-06 08:17:54 2 3 2019-09-06 08:22:54 2 4 2019-09-06 08:32:54 2 4 2019-09-06 08:52:54 1 1 2019-09-06 09:02:54 2 3 2019-09-06 09:12:54 1 1 2019-09-06 09:12:54 2 3 2019-09-06 09:32:54 2 5 2019-09-06 09:37:54 2 5 2019-09-06 09:52:54 1 1 2019-09-06 09:52:54 2 3 2019-09-06 09:57:54 1 1 2019-09-06 09:57:54 2 3 2019-09-06 10:22:54 2 3 2019-09-06 10:32:54 2 3 2019-09-06 10:42:54 1 1 2019-09-06 10:42:54 2 2 2019-09-06 11:02:54 1 2 2019-09-06 11:02:54 2 2 2019-09-06 11:07:54 1 2 2019-09-06 11:07:54 2 3 2019-09-06 11:27:54 1 2 2019-09-06 11:27:54 2 4 2019-09-06 11:32:54 1 2 2019-09-06 11:32:54 2 4 2019-09-06 11:37:54 1 3 2019-09-06 11:37:54 2 3 2019-09-06 11:42:54 1 3 2019-09-06 11:42:54 2 4 2019-09-06 11:47:54 1 3 2019-09-06 11:47:54 2 2 2019-09-06 11:52:54 1 3 2019-09-06 11:52:54 2 3 2019-09-06 12:17:54 1 3 2019-09-06 12:17:54 2 5 2019-09-06 12:27:54 1 3 2019-09-06 12:27:54 2 7 2019-09-06 12:47:54 1 2 2019-09-06 12:47:54 2 6 2019-09-06 12:52:54 1 2 2019-09-06 12:52:54 2 6 2019-09-06 13:02:54 1 3 2019-09-06 13:02:54 2 5 2019-09-06 13:12:54 1 2 2019-09-06 13:12:54 2 5 2019-09-06 13:17:54 1 3 2019-09-06 13:17:54 2 5 2019-09-06 13:37:54 1 2 2019-09-06 13:37:54 2 4 2019-09-06 14:12:54 1 1 2019-09-06 14:12:54 2 4 2019-09-06 14:27:54 1 2 2019-09-06 14:27:54 2 4 2019-09-06 14:37:54 1 1 2019-09-06 14:37:54 2 3 2019-09-06 14:42:54 1 1 2019-09-06 14:42:54 2 3 2019-09-06 15:02:54 1 2 2019-09-06 15:02:54 2 3 2019-09-06 15:07:54 1 1 2019-09-06 15:07:54 2 5 2019-09-06 15:17:54 1 1 2019-09-06 15:17:54 2 4 2019-09-06 15:57:54 1 2 2019-09-06 16:47:54 1 2 2019-09-06 16:47:54 2 3 2019-09-06 16:52:54 1 2 2019-09-06 16:52:54 2 2 2019-09-06 17:02:54 1 3 2019-09-06 17:02:54 2 4 2019-09-06 17:07:54 1 3 2019-09-06 17:07:54 2 5 2019-09-06 17:22:54 1 2 2019-09-06 17:22:54 2 3 2019-09-06 17:27:54 1 3 2019-09-06 17:27:54 2 3 2019-09-06 17:42:54 1 3 2019-09-06 17:42:54 2 3 2019-09-06 17:57:54 1 2 2019-09-06 17:57:54 2 4 2019-09-06 18:02:54 1 2 2019-09-06 18:02:54 2 4 2019-09-06 18:07:54 1 3 2019-09-06 18:07:54 2 4 2019-09-06 18:17:54 1 2 2019-09-06 18:17:54 2 5 2019-09-06 18:22:54 1 2 2019-09-06 18:22:54 2 5 2019-09-06 18:37:54 1 2 2019-09-06 18:37:54 2 5 2019-09-06 19:02:54 1 2 2019-09-06 19:02:54 2 7 2019-09-06 19:12:54 1 3 2019-09-06 19:12:54 2 3 2019-09-06 19:32:54 1 2 2019-09-06 19:32:54 2 7 2019-09-06 19:42:54 1 2 2019-09-06 19:42:54 2 6 2019-09-06 20:02:54 1 1 2019-09-06 20:02:54 2 4 2019-09-06 20:32:54 1 1 2019-09-06 20:32:54 2 4 2019-09-06 20:42:54 1 2 2019-09-06 20:42:54 2 5 2019-09-06 20:57:54 2 2 2019-09-06 21:17:54 2 2 2019-09-06 21:22:54 2 3 2019-09-06 21:37:54 1 1 2019-09-06 21:37:54 2 4 2019-09-06 21:47:54 1 1 2019-09-06 21:47:54 2 4 2019-09-06 22:12:54 1 3 2019-09-06 22:12:54 2 5 2019-09-06 22:17:54 2 4 2019-09-06 22:22:54 2 5 2019-09-06 22:27:54 1 1 2019-09-06 22:27:54 2 5 2019-09-06 22:32:54 1 2 2019-09-06 22:32:54 2 5 2019-09-06 22:57:54 1 2 2019-09-06 22:57:54 2 4 2019-09-06 23:27:54 1 3 2019-09-06 23:27:54 2 1 2019-09-06 23:32:54 1 3 2019-09-06 23:32:54 2 1 2019-09-06 23:37:54 1 3 2019-09-06 23:37:54 2 2 2019-09-06 23:52:54 1 2 2019-09-06 23:52:54 2 2 2019-09-07 00:07:54 1 2 2019-09-07 00:07:54 2 3 2019-09-07 00:22:54 1 1 2019-09-07 00:22:54 2 4 2019-09-07 00:32:54 1 2 2019-09-07 00:32:54 2 3 2019-09-07 00:37:54 1 2 2019-09-07 00:37:54 2 3 2019-09-07 00:42:54 1 2 2019-09-07 00:42:54 2 4 2019-09-07 00:52:54 1 2 2019-09-07 00:52:54 2 3 2019-09-07 00:57:54 1 2 2019-09-07 00:57:54 2 3 2019-09-07 01:47:54 1 2 2019-09-07 01:47:54 2 4 2019-09-07 01:52:54 1 2 2019-09-07 01:52:54 2 4 2019-09-07 02:02:55 1 2 2019-09-07 02:02:55 2 3 2019-09-07 02:17:54 1 1 2019-09-07 02:17:54 2 2 2019-09-07 02:22:54 1 1 2019-09-07 02:22:54 2 2 2019-09-07 02:27:54 1 1 2019-09-07 02:27:54 2 2 2019-09-07 02:32:54 1 1 2019-09-07 02:32:54 2 2 2019-09-07 02:47:54 1 1 2019-09-07 02:47:54 2 1 2019-09-07 02:52:54 1 1 2019-09-07 02:52:54 2 1 2019-09-07 04:02:54 1 1 2019-09-07 04:02:54 2 1 2019-09-07 04:07:54 1 1 2019-09-07 04:07:54 2 1 2019-09-07 04:12:54 1 1 2019-09-07 04:12:54 2 1 2019-09-07 04:17:54 1 1 2019-09-07 04:17:54 2 1 2019-09-07 04:22:54 1 1 2019-09-07 04:22:54 2 1 2019-09-07 04:27:54 1 1 2019-09-07 04:27:54 2 1 2019-09-07 04:32:54 1 1 2019-09-07 04:32:54 2 1 2019-09-07 04:37:54 1 1 2019-09-07 04:37:54 2 1 2019-09-07 04:57:54 1 1 2019-09-07 05:02:54 1 1 2019-09-07 05:07:54 1 1 2019-09-07 05:12:54 1 1 2019-09-07 05:17:54 1 1 2019-09-07 06:17:54 1 2 2019-09-07 06:27:54 1 2 2019-09-07 06:42:54 1 2 2019-09-07 06:42:54 2 1 2019-09-07 07:52:54 1 2 2019-09-07 07:52:54 2 2 2019-09-07 08:22:54 1 2 2019-09-06 09:07:54 1 2 2019-09-06 09:07:54 2 4 2019-09-06 09:22:54 1 1 2019-09-06 09:22:54 2 4 2019-09-06 09:27:54 1 1 2019-09-06 09:27:54 2 7 2019-09-06 09:42:54 1 1 2019-09-06 09:42:54 2 4 2019-09-06 10:17:54 2 2 2019-09-06 10:27:54 2 1 2019-09-06 10:52:54 1 2 2019-09-06 10:52:54 2 1 2019-09-06 10:57:54 1 3 2019-09-06 10:57:54 2 2 2019-09-06 11:12:54 1 2 2019-09-06 11:12:54 2 4 2019-09-06 11:22:54 1 2 2019-09-06 11:22:54 2 3 2019-09-06 11:57:54 1 4 2019-09-06 11:57:54 2 4 2019-09-06 12:02:54 1 4 2019-09-06 12:02:54 2 5 2019-09-06 12:42:54 1 3 2019-09-06 12:42:54 2 6 2019-09-06 12:57:54 1 2 2019-09-06 12:57:54 2 5 2019-09-06 13:07:54 1 2 2019-09-06 13:07:54 2 5 2019-09-06 13:42:54 1 3 2019-09-06 13:42:54 2 5 2019-09-06 13:52:54 1 3 2019-09-06 13:52:54 2 3 2019-09-06 14:07:54 1 2 2019-09-06 14:07:54 2 4 2019-09-06 14:32:54 1 2 2019-09-06 14:32:54 2 4 2019-09-06 15:12:54 1 1 2019-09-06 15:12:54 2 5 2019-09-06 15:27:54 1 2 2019-09-06 15:27:54 2 4 2019-09-06 15:32:54 1 2 2019-09-06 15:32:54 2 2 2019-09-06 15:47:54 1 1 2019-09-06 15:47:54 2 3 2019-09-06 15:52:54 1 1 2019-09-06 16:07:54 1 2 2019-09-06 16:07:54 2 2 2019-09-06 16:12:54 1 3 2019-09-06 16:12:54 2 3 2019-09-06 16:17:54 1 3 2019-09-06 16:17:54 2 1 2019-09-06 16:32:54 1 1 2019-09-06 16:32:54 2 3 2019-09-06 16:37:54 1 1 2019-09-06 16:37:54 2 3 2019-09-06 16:42:54 1 2 2019-09-06 16:42:54 2 2 2019-09-06 16:57:54 1 1 2019-09-06 16:57:54 2 2 2019-09-06 17:12:54 1 3 2019-09-06 17:12:54 2 3 2019-09-06 17:17:54 1 3 2019-09-06 17:17:54 2 3 2019-09-06 17:37:54 1 2 2019-09-06 17:37:54 2 4 2019-09-06 17:47:54 1 4 2019-09-06 17:47:54 2 5 2019-09-06 18:12:54 1 2 2019-09-06 18:12:54 2 5 2019-09-06 18:27:54 1 2 2019-09-06 18:27:54 2 7 2019-09-06 18:32:54 1 3 2019-09-06 18:32:54 2 6 2019-09-06 18:47:54 1 2 2019-09-06 18:47:54 2 5 2019-09-06 18:52:54 1 3 2019-09-06 18:52:54 2 5 2019-09-06 19:37:54 1 1 2019-09-06 19:37:54 2 6 2019-09-06 19:52:54 1 1 2019-09-06 19:52:54 2 5 2019-09-06 20:12:54 1 1 2019-09-06 20:12:54 2 4 2019-09-06 20:22:54 1 1 2019-09-06 20:22:54 2 4 2019-09-06 20:27:54 1 1 2019-09-06 20:27:54 2 4 2019-09-06 20:52:54 1 1 2019-09-06 20:52:54 2 2 2019-09-06 21:02:54 2 2 2019-09-06 21:07:54 2 3 2019-09-06 21:12:54 2 3 2019-09-06 21:32:54 2 3 2019-09-06 21:52:54 1 1 2019-09-06 21:52:54 2 4 2019-09-06 22:02:54 1 3 2019-09-06 22:02:54 2 5 2019-09-06 22:07:54 1 3 2019-09-06 22:07:54 2 5 2019-09-06 22:37:54 1 1 2019-09-06 22:37:54 2 6 2019-09-06 23:07:54 1 2 2019-09-06 23:07:54 2 1 2019-09-06 23:12:54 1 1 2019-09-06 23:12:54 2 1 2019-09-06 23:22:54 1 2 2019-09-06 23:22:54 2 1 2019-09-06 23:57:54 1 2 2019-09-06 23:57:54 2 2 2019-09-07 00:02:54 1 2 2019-09-07 00:02:54 2 4 2019-09-07 00:12:54 1 3 2019-09-07 00:12:54 2 4 2019-09-07 00:27:54 1 1 2019-09-07 00:27:54 2 4 2019-09-07 01:07:54 1 2 2019-09-07 01:07:54 2 3 2019-09-07 01:12:54 1 2 2019-09-07 01:12:54 2 3 2019-09-07 01:37:54 1 2 2019-09-07 01:37:54 2 4 2019-09-07 01:42:54 1 2 2019-09-07 01:42:54 2 3 2019-09-07 02:12:54 1 2 2019-09-07 02:12:54 2 2 2019-09-07 02:42:54 1 1 2019-09-07 02:42:54 2 2 2019-09-07 03:27:54 1 1 2019-09-07 03:27:54 2 1 2019-09-07 03:32:54 1 1 2019-09-07 03:32:54 2 1 2019-09-07 03:37:54 1 1 2019-09-07 03:37:54 2 1 2019-09-07 03:42:54 1 1 2019-09-07 03:42:54 2 1 2019-09-07 03:47:54 1 1 2019-09-07 03:47:54 2 1 2019-09-07 03:52:54 1 1 2019-09-07 03:52:54 2 1 2019-09-07 03:57:54 1 1 2019-09-07 03:57:54 2 1 2019-09-07 04:42:54 1 1 2019-09-07 04:42:54 2 1 2019-09-07 04:47:54 1 1 2019-09-07 04:47:54 2 1 2019-09-07 04:52:54 1 1 2019-09-07 04:52:54 2 1 2019-09-07 05:27:54 1 1 2019-09-07 05:32:54 1 1 2019-09-07 05:37:54 1 1 2019-09-07 05:42:54 1 1 2019-09-07 05:47:54 1 1 2019-09-07 05:52:54 1 1 2019-09-07 05:57:54 1 1 2019-09-07 06:02:54 1 1 2019-09-07 06:07:54 1 1 2019-09-07 06:12:54 1 1 2019-09-07 06:52:54 1 2 2019-09-07 06:52:54 2 1 2019-09-07 07:17:54 1 1 2019-09-07 07:17:54 2 1 2019-09-07 07:22:54 1 1 2019-09-07 07:22:54 2 1 2019-09-07 07:32:54 1 1 2019-09-07 07:32:54 2 2 2019-09-07 08:17:54 1 2 2019-09-07 08:17:54 2 3 2019-09-07 08:22:54 2 3 2019-09-07 08:27:54 1 3 2019-09-07 08:27:54 2 3 2019-09-07 08:32:54 1 3 2019-09-07 08:32:54 2 3 2019-09-07 08:37:54 1 3 2019-09-07 08:37:54 2 5 2019-09-07 08:42:54 1 3 2019-09-07 08:42:54 2 5 2019-09-07 08:52:54 1 3 2019-09-07 08:52:54 2 3 2019-09-07 09:02:54 1 4 2019-09-07 09:02:54 2 2 2019-09-07 09:07:54 1 4 2019-09-07 09:07:54 2 3 2019-09-07 09:17:54 1 3 2019-09-07 09:17:54 2 4 2019-09-07 09:22:54 1 3 2019-09-06 09:17:54 1 1 2019-09-06 09:17:54 2 2 2019-09-06 09:47:54 2 4 2019-09-06 10:02:54 2 4 2019-09-06 10:07:54 1 1 2019-09-06 10:07:54 2 2 2019-09-06 10:12:54 1 1 2019-09-06 10:12:54 2 3 2019-09-06 10:37:54 2 1 2019-09-06 10:47:54 1 2 2019-09-06 10:47:54 2 2 2019-09-06 11:17:54 1 2 2019-09-06 11:17:54 2 4 2019-09-06 12:07:54 1 4 2019-09-06 12:07:54 2 6 2019-09-06 12:12:54 1 5 2019-09-06 12:12:54 2 3 2019-09-06 12:22:54 1 3 2019-09-06 12:22:54 2 6 2019-09-06 12:32:54 1 4 2019-09-06 12:32:54 2 6 2019-09-06 12:37:54 1 3 2019-09-06 12:37:54 2 5 2019-09-06 13:22:54 1 3 2019-09-06 13:22:54 2 5 2019-09-06 13:27:54 1 3 2019-09-06 13:27:54 2 4 2019-09-06 13:32:54 1 2 2019-09-06 13:32:54 2 4 2019-09-06 13:47:54 1 2 2019-09-06 13:47:54 2 4 2019-09-06 13:57:54 1 2 2019-09-06 13:57:54 2 4 2019-09-06 14:02:54 1 2 2019-09-06 14:02:54 2 5 2019-09-06 14:17:54 1 1 2019-09-06 14:17:54 2 5 2019-09-06 14:22:54 1 2 2019-09-06 14:22:54 2 4 2019-09-06 14:47:54 1 2 2019-09-06 14:47:54 2 4 2019-09-06 14:52:54 1 1 2019-09-06 14:52:54 2 3 2019-09-06 14:57:54 1 2 2019-09-06 14:57:54 2 3 2019-09-06 15:22:54 1 2 2019-09-06 15:22:54 2 4 2019-09-06 15:37:54 1 1 2019-09-06 15:37:54 2 4 2019-09-06 15:42:54 1 1 2019-09-06 15:42:54 2 4 2019-09-06 16:02:54 1 2 2019-09-06 16:02:54 2 1 2019-09-06 16:22:54 1 3 2019-09-06 16:22:54 2 3 2019-09-06 16:27:54 1 3 2019-09-06 16:27:54 2 3 2019-09-06 17:32:54 1 2 2019-09-06 17:32:54 2 3 2019-09-06 17:52:54 1 2 2019-09-06 17:52:54 2 4 2019-09-06 18:42:54 1 1 2019-09-06 18:42:54 2 6 2019-09-06 18:57:54 1 3 2019-09-06 18:57:54 2 6 2019-09-06 19:07:54 1 2 2019-09-06 19:07:54 2 5 2019-09-06 19:17:54 1 1 2019-09-06 19:17:54 2 5 2019-09-06 19:22:54 1 2 2019-09-06 19:22:54 2 4 2019-09-06 19:27:54 1 2 2019-09-06 19:27:54 2 6 2019-09-06 19:47:54 1 1 2019-09-06 19:47:54 2 5 2019-09-06 19:57:54 1 1 2019-09-06 19:57:54 2 4 2019-09-06 20:07:54 1 1 2019-09-06 20:07:54 2 3 2019-09-06 20:17:54 1 1 2019-09-06 20:17:54 2 2 2019-09-06 20:37:54 1 1 2019-09-06 20:37:54 2 5 2019-09-06 20:47:54 1 1 2019-09-06 20:47:54 2 4 2019-09-06 21:27:54 2 4 2019-09-06 21:42:54 1 2 2019-09-06 21:42:54 2 3 2019-09-06 21:57:54 1 3 2019-09-06 21:57:54 2 5 2019-09-06 22:42:54 1 1 2019-09-06 22:42:54 2 3 2019-09-06 22:47:54 1 1 2019-09-06 22:47:54 2 4 2019-09-06 22:52:54 1 2 2019-09-06 22:52:54 2 4 2019-09-06 23:02:54 1 2 2019-09-06 23:02:54 2 2 2019-09-06 23:17:54 1 1 2019-09-06 23:17:54 2 2 2019-09-06 23:42:54 1 3 2019-09-06 23:42:54 2 4 2019-09-06 23:47:54 1 3 2019-09-06 23:47:54 2 3 2019-09-07 00:17:54 1 1 2019-09-07 00:17:54 2 4 2019-09-07 00:47:54 1 2 2019-09-07 00:47:54 2 3 2019-09-07 01:02:54 1 2 2019-09-07 01:02:54 2 4 2019-09-07 01:17:54 1 2 2019-09-07 01:17:54 2 3 2019-09-07 01:22:54 1 2 2019-09-07 01:22:54 2 3 2019-09-07 01:27:54 1 2 2019-09-07 01:27:54 2 4 2019-09-07 01:32:54 1 2 2019-09-07 01:32:54 2 4 2019-09-07 01:57:54 1 2 2019-09-07 01:57:54 2 3 2019-09-07 02:07:54 1 2 2019-09-07 02:07:54 2 3 2019-09-07 02:37:54 1 1 2019-09-07 02:37:54 2 3 2019-09-07 02:57:54 1 1 2019-09-07 03:02:54 1 1 2019-09-07 03:07:54 1 1 2019-09-07 03:12:54 1 1 2019-09-07 03:17:54 1 1 2019-09-07 03:22:54 1 1 2019-09-07 05:22:54 1 2 2019-09-07 06:22:54 1 3 2019-09-07 06:32:54 1 1 2019-09-07 06:37:54 1 1 2019-09-07 06:47:54 1 2 2019-09-07 06:47:54 2 1 2019-09-07 06:57:54 1 1 2019-09-07 06:57:54 2 2 2019-09-07 07:02:54 1 1 2019-09-07 07:02:54 2 2 2019-09-07 07:07:54 1 1 2019-09-07 07:07:54 2 2 2019-09-07 07:12:54 1 1 2019-09-07 07:12:54 2 2 2019-09-07 07:27:54 1 1 2019-09-07 07:27:54 2 1 2019-09-07 07:37:54 1 1 2019-09-07 07:37:54 2 1 2019-09-07 07:42:54 1 1 2019-09-07 07:42:54 2 2 2019-09-07 07:47:54 1 1 2019-09-07 07:47:54 2 2 2019-09-07 07:57:54 1 2 2019-09-07 07:57:54 2 4 2019-09-07 08:02:54 1 2 2019-09-07 08:02:54 2 2 2019-09-07 08:07:54 1 2 2019-09-07 08:07:54 2 2 2019-09-07 08:12:54 1 2 2019-09-07 08:12:54 2 2 2019-09-07 08:47:54 1 3 2019-09-07 08:47:54 2 3 2019-09-07 08:57:54 1 3 2019-09-07 08:57:54 2 2 2019-09-07 09:12:54 1 3 2019-09-07 09:12:54 2 3 2019-09-07 09:22:54 2 5 2019-09-07 09:27:54 1 4 2019-09-07 09:27:54 2 2 2019-09-07 09:32:54 1 3 2019-09-07 09:32:54 2 2 2019-09-07 09:37:54 1 2 2019-09-07 09:37:54 2 2 2019-09-07 09:42:54 1 2 2019-09-07 09:42:54 2 2 2019-09-07 09:47:54 1 2 2019-09-07 09:47:54 2 3 2019-09-07 09:52:54 1 3 2019-09-07 09:52:54 2 4 2019-09-07 09:57:54 1 4 2019-09-07 09:57:54 2 3 2019-09-07 10:02:54 1 3 2019-09-07 10:02:54 2 2 2019-09-07 10:07:54 1 3 2019-09-07 10:07:54 2 2 2019-09-07 10:12:54 1 3 2019-09-07 10:12:54 2 3 2019-09-07 10:17:54 1 5 2019-09-07 10:17:54 2 2 2019-09-07 10:22:54 1 2 2019-09-07 10:22:54 2 2 2019-09-07 10:37:54 1 4 2019-09-07 10:37:54 2 3 2019-09-07 11:02:54 1 6 2019-09-07 11:02:54 2 4 2019-09-07 11:37:54 1 6 2019-09-07 11:37:54 2 3 2019-09-07 11:42:54 1 5 2019-09-07 11:42:54 2 3 2019-09-07 11:47:54 1 5 2019-09-07 11:47:54 2 2 2019-09-07 11:52:54 1 5 2019-09-07 11:52:54 2 3 2019-09-07 12:02:54 1 5 2019-09-07 12:02:54 2 4 2019-09-07 12:12:54 1 6 2019-09-07 12:12:54 2 9 2019-09-07 12:17:54 1 6 2019-09-07 12:17:54 2 6 2019-09-07 12:22:54 1 5 2019-09-07 12:22:54 2 6 2019-09-07 12:52:54 1 3 2019-09-07 12:52:54 2 4 2019-09-07 12:57:54 1 3 2019-09-07 12:57:54 2 3 2019-09-07 13:07:54 1 3 2019-09-07 13:07:54 2 4 2019-09-07 13:12:54 1 3 2019-09-07 13:12:54 2 4 2019-09-07 13:47:54 1 5 2019-09-07 13:47:54 2 3 2019-09-07 13:52:54 1 5 2019-09-07 13:52:54 2 3 2019-09-07 14:17:54 1 5 2019-09-07 14:17:54 2 5 2019-09-07 14:42:54 1 5 2019-09-07 14:42:54 2 6 2019-09-07 14:57:54 1 4 2019-09-07 14:57:54 2 3 2019-09-07 15:02:54 1 4 2019-09-07 15:02:54 2 3 2019-09-07 15:32:54 1 3 2019-09-07 15:32:54 2 2 2019-09-07 15:37:54 1 2 2019-09-07 15:37:54 2 2 2019-09-07 15:42:54 1 4 2019-09-07 15:42:54 2 2 2019-09-07 16:27:54 1 4 2019-09-07 16:27:54 2 4 2019-09-07 16:42:54 1 4 2019-09-07 16:42:54 2 5 2019-09-07 16:47:54 1 4 2019-09-07 16:47:54 2 3 2019-09-07 16:52:54 1 4 2019-09-07 16:52:54 2 3 2019-09-07 16:57:54 1 3 2019-09-07 16:57:54 2 4 2019-09-07 17:12:54 1 4 2019-09-07 17:12:54 2 3 2019-09-07 17:52:54 1 3 2019-09-07 17:52:54 2 5 2019-09-07 18:17:54 1 3 2019-09-07 18:17:54 2 5 2019-09-07 18:27:54 1 5 2019-09-07 18:27:54 2 6 2019-09-07 18:32:54 1 5 2019-09-07 18:32:54 2 5 2019-09-07 18:37:54 1 3 2019-09-07 18:37:54 2 6 2019-09-07 18:42:54 1 3 2019-09-07 18:42:54 2 4 2019-09-07 18:52:54 1 4 2019-09-07 18:52:54 2 4 2019-09-07 19:07:54 1 3 2019-09-07 19:07:54 2 5 2019-09-07 19:22:54 1 3 2019-09-07 19:22:54 2 5 2019-09-07 19:27:54 1 4 2019-09-07 19:27:54 2 6 2019-09-07 19:32:54 1 4 2019-09-07 19:32:54 2 6 2019-09-07 19:37:54 1 3 2019-09-07 19:37:54 2 4 2019-09-07 19:42:54 1 3 2019-09-07 19:42:54 2 3 2019-09-07 19:57:54 1 4 2019-09-07 19:57:54 2 4 2019-09-07 20:52:54 1 4 2019-09-07 20:52:54 2 6 2019-09-07 21:07:54 1 4 2019-09-07 21:07:54 2 7 2019-09-07 21:22:54 1 5 2019-09-07 21:22:54 2 5 2019-09-07 21:37:54 1 4 2019-09-07 21:37:54 2 5 2019-09-07 21:42:54 1 5 2019-09-07 21:42:54 2 6 2019-09-07 21:52:54 1 4 2019-09-07 21:52:54 2 5 2019-09-07 22:07:54 1 4 2019-09-07 22:07:54 2 4 2019-09-07 22:37:54 1 5 2019-09-07 22:37:54 2 4 2019-09-07 22:47:54 1 7 2019-09-07 22:47:54 2 5 2019-09-07 22:52:54 1 6 2019-09-07 22:52:54 2 3 2019-09-07 23:27:54 1 4 2019-09-07 23:27:54 2 4 2019-09-07 23:42:54 1 5 2019-09-07 23:42:54 2 5 2019-09-07 23:47:54 1 5 2019-09-07 23:47:54 2 5 2019-09-08 00:22:54 1 5 2019-09-08 00:22:54 2 5 2019-09-08 00:27:54 1 5 2019-09-08 00:27:54 2 5 2019-09-08 00:42:54 1 4 2019-09-08 00:42:54 2 6 2019-09-08 00:52:54 1 4 2019-09-08 00:52:54 2 6 2019-09-08 00:57:54 1 4 2019-09-08 00:57:54 2 5 2019-09-08 01:02:54 1 4 2019-09-08 01:02:54 2 4 2019-09-08 01:07:54 1 4 2019-09-08 01:07:54 2 5 2019-09-08 01:12:54 1 4 2019-09-08 01:12:54 2 4 2019-09-08 01:22:54 1 3 2019-09-08 01:22:54 2 4 2019-09-08 01:32:54 1 4 2019-09-08 01:32:54 2 2 2019-09-08 01:37:54 1 4 2019-09-08 01:37:54 2 2 2019-09-08 01:42:54 1 4 2019-09-08 01:42:54 2 2 2019-09-08 01:47:54 1 4 2019-09-08 01:47:54 2 2 2019-09-08 01:57:54 1 3 2019-09-08 01:57:54 2 2 2019-09-08 02:27:54 1 3 2019-09-08 02:27:54 2 2 2019-09-08 02:32:54 1 3 2019-09-08 02:32:54 2 2 2019-09-08 02:37:54 1 3 2019-09-08 02:37:54 2 1 2019-09-08 02:42:54 1 3 2019-09-08 02:42:54 2 1 2019-09-08 04:02:54 1 2 2019-09-08 04:02:54 2 1 2019-09-08 04:07:54 1 2 2019-09-08 04:07:54 2 1 2019-09-08 04:12:54 1 2 2019-09-08 04:12:54 2 1 2019-09-08 07:22:54 1 3 2019-09-08 07:22:54 2 1 2019-09-08 07:27:54 1 3 2019-09-08 07:27:54 2 1 2019-09-08 07:47:54 1 4 2019-09-08 07:52:54 1 4 2019-09-08 08:12:54 1 3 2019-09-08 08:12:54 2 2 2019-09-08 08:17:54 1 3 2019-09-08 08:17:54 2 4 2019-09-08 08:32:54 1 4 2019-09-08 08:32:54 2 2 2019-09-08 08:37:54 1 5 2019-09-08 08:37:54 2 2 2019-09-08 08:42:54 1 5 2019-09-08 08:42:54 2 2 2019-09-08 08:47:54 1 5 2019-09-08 08:47:54 2 3 2019-09-08 09:12:54 2 2 2019-09-08 09:17:54 1 5 2019-09-08 09:17:54 2 1 2019-09-08 09:22:54 2 1 2019-09-08 09:27:54 1 4 2019-09-08 09:27:54 2 1 2019-09-08 09:32:54 1 4 2019-09-07 10:27:54 1 4 2019-09-07 10:27:54 2 3 2019-09-07 10:32:54 1 5 2019-09-07 10:32:54 2 3 2019-09-07 10:47:54 1 6 2019-09-07 10:47:54 2 4 2019-09-07 10:52:54 1 6 2019-09-07 10:52:54 2 4 2019-09-07 10:57:54 1 6 2019-09-07 10:57:54 2 5 2019-09-07 11:07:54 1 6 2019-09-07 11:07:54 2 3 2019-09-07 11:17:54 1 5 2019-09-07 11:17:54 2 3 2019-09-07 11:27:54 1 5 2019-09-07 11:27:54 2 5 2019-09-07 12:32:54 1 3 2019-09-07 12:32:54 2 3 2019-09-07 13:02:54 1 4 2019-09-07 13:02:54 2 4 2019-09-07 13:27:54 1 2 2019-09-07 13:27:54 2 3 2019-09-07 13:42:54 1 3 2019-09-07 13:42:54 2 3 2019-09-07 13:57:54 1 5 2019-09-07 13:57:54 2 3 2019-09-07 14:02:54 1 4 2019-09-07 14:02:54 2 3 2019-09-07 14:12:54 1 5 2019-09-07 14:12:54 2 3 2019-09-07 14:22:54 1 6 2019-09-07 14:22:54 2 6 2019-09-07 14:37:54 1 4 2019-09-07 14:37:54 2 7 2019-09-07 14:47:54 1 3 2019-09-07 14:47:54 2 2 2019-09-07 14:52:54 1 4 2019-09-07 14:52:54 2 3 2019-09-07 15:07:54 1 6 2019-09-07 15:07:54 2 4 2019-09-07 15:12:54 1 4 2019-09-07 15:12:54 2 5 2019-09-07 15:27:54 1 4 2019-09-07 15:27:54 2 4 2019-09-07 15:47:54 1 5 2019-09-07 15:47:54 2 2 2019-09-07 16:02:54 1 5 2019-09-07 16:02:54 2 2 2019-09-07 16:12:54 1 6 2019-09-07 16:12:54 2 2 2019-09-07 16:17:54 1 5 2019-09-07 16:17:54 2 2 2019-09-07 16:37:54 1 4 2019-09-07 16:37:54 2 5 2019-09-07 17:02:54 1 3 2019-09-07 17:02:54 2 2 2019-09-07 17:27:54 1 4 2019-09-07 17:27:54 2 3 2019-09-07 17:32:54 1 4 2019-09-07 17:32:54 2 2 2019-09-07 17:37:54 1 3 2019-09-07 17:37:54 2 2 2019-09-07 17:42:54 1 5 2019-09-07 17:42:54 2 3 2019-09-07 17:47:54 1 4 2019-09-07 17:47:54 2 4 2019-09-07 17:57:54 1 4 2019-09-07 17:57:54 2 4 2019-09-07 18:02:54 1 4 2019-09-07 18:02:54 2 4 2019-09-07 18:12:54 1 3 2019-09-07 18:12:54 2 4 2019-09-07 18:47:54 1 3 2019-09-07 18:47:54 2 4 2019-09-07 18:57:54 1 3 2019-09-07 18:57:54 2 6 2019-09-07 19:02:54 1 3 2019-09-07 19:02:54 2 6 2019-09-07 19:12:54 1 3 2019-09-07 19:12:54 2 6 2019-09-07 20:07:54 1 4 2019-09-07 20:07:54 2 5 2019-09-07 20:17:54 1 3 2019-09-07 20:17:54 2 2 2019-09-07 20:22:54 1 3 2019-09-07 20:22:54 2 3 2019-09-07 20:27:54 1 5 2019-09-07 20:27:54 2 4 2019-09-07 20:47:54 1 4 2019-09-07 20:47:54 2 6 2019-09-07 20:57:54 1 5 2019-09-07 20:57:54 2 5 2019-09-07 21:02:54 1 5 2019-09-07 21:02:54 2 6 2019-09-07 21:12:54 1 4 2019-09-07 21:12:54 2 7 2019-09-07 21:27:54 1 6 2019-09-07 21:27:54 2 4 2019-09-07 21:32:54 1 5 2019-09-07 21:32:54 2 5 2019-09-07 21:47:54 1 4 2019-09-07 21:47:54 2 7 2019-09-07 22:02:54 1 4 2019-09-07 22:02:54 2 5 2019-09-07 22:12:54 1 4 2019-09-07 22:12:54 2 4 2019-09-07 22:22:54 1 4 2019-09-07 22:22:54 2 3 2019-09-07 22:27:54 1 5 2019-09-07 22:27:54 2 4 2019-09-07 22:32:54 1 6 2019-09-07 22:32:54 2 3 2019-09-07 22:57:54 1 6 2019-09-07 22:57:54 2 4 2019-09-07 23:02:54 1 6 2019-09-07 23:02:54 2 5 2019-09-07 23:22:54 1 5 2019-09-07 23:22:54 2 4 2019-09-07 23:32:54 1 4 2019-09-07 23:32:54 2 4 2019-09-07 23:37:54 1 4 2019-09-07 23:37:54 2 4 2019-09-08 00:02:54 1 5 2019-09-08 00:02:54 2 6 2019-09-08 00:37:54 1 5 2019-09-08 00:37:54 2 5 2019-09-08 02:07:54 1 3 2019-09-08 02:07:54 2 2 2019-09-08 02:57:54 1 2 2019-09-08 02:57:54 2 2 2019-09-08 03:02:54 1 2 2019-09-08 03:02:54 2 2 2019-09-08 03:07:54 1 2 2019-09-08 03:07:54 2 1 2019-09-08 03:12:54 1 2 2019-09-08 03:12:54 2 1 2019-09-08 03:17:54 1 2 2019-09-08 03:17:54 2 1 2019-09-08 03:22:54 1 2 2019-09-08 03:22:54 2 1 2019-09-08 03:27:54 1 2 2019-09-08 03:27:54 2 1 2019-09-08 03:32:54 1 2 2019-09-08 03:32:54 2 1 2019-09-08 03:37:54 1 2 2019-09-08 03:37:54 2 1 2019-09-08 03:42:54 1 2 2019-09-08 03:42:54 2 1 2019-09-08 03:47:54 1 2 2019-09-08 03:47:54 2 1 2019-09-08 03:52:54 1 2 2019-09-08 03:52:54 2 1 2019-09-08 03:57:54 1 2 2019-09-08 03:57:54 2 1 2019-09-08 04:17:54 1 2 2019-09-08 04:17:54 2 2 2019-09-08 04:22:54 1 2 2019-09-08 04:22:54 2 2 2019-09-08 04:27:54 1 2 2019-09-08 04:27:54 2 2 2019-09-08 04:32:54 1 2 2019-09-08 04:32:54 2 2 2019-09-08 04:37:54 1 2 2019-09-08 04:37:54 2 2 2019-09-08 04:42:54 1 2 2019-09-08 04:42:54 2 2 2019-09-08 04:47:54 1 2 2019-09-08 04:47:54 2 2 2019-09-08 05:12:54 1 2 2019-09-08 05:12:54 2 2 2019-09-08 06:47:54 1 2 2019-09-08 06:47:54 2 1 2019-09-08 06:57:54 1 2 2019-09-08 06:57:54 2 1 2019-09-08 07:02:54 1 2 2019-09-08 07:02:54 2 1 2019-09-08 07:12:54 1 2 2019-09-08 07:12:54 2 1 2019-09-08 07:37:55 1 2 2019-09-08 07:57:54 1 5 2019-09-08 08:52:54 1 5 2019-09-08 08:52:54 2 3 2019-09-08 09:02:54 1 6 2019-09-08 09:02:54 2 2 2019-09-08 09:22:54 1 4 2019-09-07 10:42:54 1 4 2019-09-07 10:42:54 2 4 2019-09-07 11:12:54 1 6 2019-09-07 11:12:54 2 5 2019-09-07 11:22:54 1 6 2019-09-07 11:22:54 2 4 2019-09-07 11:32:54 1 5 2019-09-07 11:32:54 2 4 2019-09-07 11:57:54 1 5 2019-09-07 11:57:54 2 4 2019-09-07 12:07:54 1 7 2019-09-07 12:07:54 2 5 2019-09-07 12:27:54 1 3 2019-09-07 12:27:54 2 7 2019-09-07 12:37:54 1 4 2019-09-07 12:37:54 2 3 2019-09-07 12:42:54 1 5 2019-09-07 12:42:54 2 3 2019-09-07 12:47:54 1 3 2019-09-07 12:47:54 2 3 2019-09-07 13:17:54 1 3 2019-09-07 13:17:54 2 3 2019-09-07 13:22:54 1 2 2019-09-07 13:22:54 2 3 2019-09-07 13:32:54 1 2 2019-09-07 13:32:54 2 3 2019-09-07 13:37:54 1 3 2019-09-07 13:37:54 2 1 2019-09-07 14:07:54 1 6 2019-09-07 14:07:54 2 3 2019-09-07 14:27:54 1 6 2019-09-07 14:27:54 2 4 2019-09-07 14:32:54 1 4 2019-09-07 14:32:54 2 6 2019-09-07 15:17:54 1 4 2019-09-07 15:17:54 2 6 2019-09-07 15:22:54 1 6 2019-09-07 15:22:54 2 6 2019-09-07 15:52:54 1 5 2019-09-07 15:52:54 2 2 2019-09-07 15:57:54 1 5 2019-09-07 15:57:54 2 2 2019-09-07 16:07:54 1 4 2019-09-07 16:07:54 2 2 2019-09-07 16:22:54 1 4 2019-09-07 16:22:54 2 2 2019-09-07 16:32:54 1 4 2019-09-07 16:32:54 2 4 2019-09-07 17:07:54 1 3 2019-09-07 17:07:54 2 2 2019-09-07 17:17:54 1 4 2019-09-07 17:17:54 2 4 2019-09-07 17:22:54 1 4 2019-09-07 17:22:54 2 4 2019-09-07 18:07:54 1 6 2019-09-07 18:07:54 2 2 2019-09-07 18:22:54 1 4 2019-09-07 18:22:54 2 4 2019-09-07 19:17:54 1 3 2019-09-07 19:17:54 2 7 2019-09-07 19:47:54 1 3 2019-09-07 19:47:54 2 3 2019-09-07 19:52:54 1 3 2019-09-07 19:52:54 2 3 2019-09-07 20:02:54 1 4 2019-09-07 20:02:54 2 4 2019-09-07 20:12:54 1 3 2019-09-07 20:12:54 2 4 2019-09-07 20:32:54 1 5 2019-09-07 20:32:54 2 5 2019-09-07 20:37:54 1 4 2019-09-07 20:37:54 2 5 2019-09-07 20:42:54 1 4 2019-09-07 20:42:54 2 5 2019-09-07 21:17:54 1 4 2019-09-07 21:17:54 2 6 2019-09-07 21:57:54 1 4 2019-09-07 21:57:54 2 4 2019-09-07 22:17:54 1 3 2019-09-07 22:17:54 2 3 2019-09-07 22:42:54 1 8 2019-09-07 22:42:54 2 3 2019-09-07 23:07:54 1 6 2019-09-07 23:07:54 2 5 2019-09-07 23:12:54 1 6 2019-09-07 23:12:54 2 7 2019-09-07 23:17:54 1 6 2019-09-07 23:17:54 2 5 2019-09-07 23:52:54 1 7 2019-09-07 23:52:54 2 6 2019-09-07 23:57:54 1 6 2019-09-07 23:57:54 2 6 2019-09-08 00:07:54 1 5 2019-09-08 00:07:54 2 6 2019-09-08 00:12:54 1 5 2019-09-08 00:12:54 2 6 2019-09-08 00:17:54 1 5 2019-09-08 00:17:54 2 5 2019-09-08 00:32:54 1 4 2019-09-08 00:32:54 2 5 2019-09-08 00:47:54 1 4 2019-09-08 00:47:54 2 6 2019-09-08 01:17:54 1 4 2019-09-08 01:17:54 2 5 2019-09-08 01:27:54 1 4 2019-09-08 01:27:54 2 4 2019-09-08 01:52:54 1 3 2019-09-08 01:52:54 2 2 2019-09-08 02:02:54 1 3 2019-09-08 02:02:54 2 3 2019-09-08 02:12:54 1 3 2019-09-08 02:12:54 2 2 2019-09-08 02:17:54 1 3 2019-09-08 02:17:54 2 2 2019-09-08 02:22:54 1 3 2019-09-08 02:22:54 2 2 2019-09-08 02:47:54 1 2 2019-09-08 02:47:54 2 1 2019-09-08 02:52:54 1 2 2019-09-08 02:52:54 2 1 2019-09-08 04:52:54 1 3 2019-09-08 04:52:54 2 2 2019-09-08 04:57:54 1 3 2019-09-08 04:57:54 2 2 2019-09-08 05:02:54 1 3 2019-09-08 05:02:54 2 2 2019-09-08 05:07:54 1 2 2019-09-08 05:07:54 2 2 2019-09-08 05:17:54 1 2 2019-09-08 05:17:54 2 1 2019-09-08 05:22:54 1 2 2019-09-08 05:22:54 2 1 2019-09-08 05:27:54 1 2 2019-09-08 05:27:54 2 1 2019-09-08 05:32:54 1 2 2019-09-08 05:32:54 2 1 2019-09-08 05:37:54 1 2 2019-09-08 05:37:54 2 1 2019-09-08 05:42:54 1 2 2019-09-08 05:42:54 2 1 2019-09-08 05:47:54 1 2 2019-09-08 05:47:54 2 1 2019-09-08 05:52:54 1 2 2019-09-08 05:52:54 2 1 2019-09-08 05:57:54 1 2 2019-09-08 05:57:54 2 1 2019-09-08 06:02:54 1 2 2019-09-08 06:02:54 2 1 2019-09-08 06:07:54 1 2 2019-09-08 06:07:54 2 1 2019-09-08 06:12:54 1 2 2019-09-08 06:12:54 2 1 2019-09-08 06:17:54 1 2 2019-09-08 06:17:54 2 1 2019-09-08 06:22:54 1 2 2019-09-08 06:22:54 2 1 2019-09-08 06:27:54 1 2 2019-09-08 06:27:54 2 1 2019-09-08 06:32:54 1 2 2019-09-08 06:32:54 2 1 2019-09-08 06:37:54 1 2 2019-09-08 06:37:54 2 1 2019-09-08 06:42:54 1 2 2019-09-08 06:42:54 2 1 2019-09-08 06:52:54 1 3 2019-09-08 06:52:54 2 1 2019-09-08 07:07:54 1 2 2019-09-08 07:07:54 2 2 2019-09-08 07:17:54 1 2 2019-09-08 07:17:54 2 1 2019-09-08 07:32:54 1 3 2019-09-08 07:32:54 2 1 2019-09-08 07:42:54 1 3 2019-09-08 08:02:54 1 3 2019-09-08 08:07:54 1 3 2019-09-08 08:07:54 2 2 2019-09-08 08:22:54 1 3 2019-09-08 08:22:54 2 3 2019-09-08 08:27:54 1 3 2019-09-08 08:27:54 2 2 2019-09-08 08:57:54 1 5 2019-09-08 08:57:54 2 3 2019-09-08 09:07:54 1 6 2019-09-08 09:07:54 2 2 2019-09-08 09:12:54 1 6 2019-09-08 09:32:54 2 1 2019-09-08 09:37:54 1 4 2019-09-08 09:37:54 2 1 2019-09-08 10:12:54 1 4 2019-09-08 10:12:54 2 1 2019-09-08 10:47:54 1 6 2019-09-08 10:47:54 2 1 2019-09-08 10:52:54 1 6 2019-09-08 10:57:54 1 5 2019-09-08 11:07:54 1 5 2019-09-08 11:12:54 1 4 2019-09-08 11:22:54 1 6 2019-09-08 11:22:54 2 1 2019-09-08 11:37:54 1 5 2019-09-08 11:37:54 2 1 2019-09-08 11:42:54 1 5 2019-09-08 11:42:54 2 1 2019-09-08 11:52:54 1 5 2019-09-08 11:52:54 2 2 2019-09-08 12:02:54 1 4 2019-09-08 12:02:54 2 2 2019-09-08 12:42:54 1 6 2019-09-08 12:42:54 2 2 2019-09-08 12:52:54 1 6 2019-09-08 12:52:54 2 1 2019-09-08 13:02:54 1 5 2019-09-08 13:02:54 2 1 2019-09-08 13:12:54 1 6 2019-09-08 13:12:54 2 2 2019-09-08 13:17:54 1 6 2019-09-08 13:17:54 2 3 2019-09-08 13:27:54 1 5 2019-09-08 13:27:54 2 3 2019-09-08 13:37:54 1 4 2019-09-08 13:37:54 2 1 2019-09-08 13:57:54 1 5 2019-09-08 13:57:54 2 2 2019-09-08 14:02:54 1 6 2019-09-08 14:02:54 2 2 2019-09-08 14:12:54 1 5 2019-09-08 14:12:54 2 3 2019-09-08 14:37:54 1 5 2019-09-08 14:37:54 2 3 2019-09-08 14:52:54 1 7 2019-09-08 14:52:54 2 4 2019-09-08 15:02:54 1 6 2019-09-08 15:02:54 2 3 2019-09-08 15:27:54 1 5 2019-09-08 15:27:54 2 6 2019-09-08 15:32:54 1 5 2019-09-08 15:32:54 2 5 2019-09-08 15:37:54 1 5 2019-09-08 15:37:54 2 6 2019-09-08 15:57:54 1 4 2019-09-08 15:57:54 2 5 2019-09-08 16:02:54 1 4 2019-09-08 16:02:54 2 5 2019-09-08 16:22:54 1 3 2019-09-08 16:22:54 2 6 2019-09-08 16:32:54 1 4 2019-09-08 16:32:54 2 5 2019-09-08 17:02:54 1 4 2019-09-08 17:02:54 2 4 2019-09-08 17:27:54 1 4 2019-09-08 17:27:54 2 7 2019-09-08 17:57:54 1 5 2019-09-08 17:57:54 2 4 2019-09-08 18:02:54 1 6 2019-09-08 18:02:54 2 4 2019-09-08 18:07:54 1 6 2019-09-08 18:07:54 2 3 2019-09-08 18:32:54 1 5 2019-09-08 18:32:54 2 2 2019-09-08 18:37:54 1 5 2019-09-08 18:37:54 2 1 2019-09-08 18:52:54 1 5 2019-09-08 18:52:54 2 1 2019-09-08 18:57:54 1 4 2019-09-08 18:57:54 2 1 2019-09-08 19:17:54 1 4 2019-09-08 19:17:54 2 3 2019-09-08 19:22:54 1 3 2019-09-08 19:22:54 2 1 2019-09-08 19:32:54 1 2 2019-09-08 19:32:54 2 3 2019-09-08 19:52:54 1 3 2019-09-08 19:52:54 2 4 2019-09-08 19:57:54 1 3 2019-09-08 19:57:54 2 4 2019-09-08 20:12:54 1 3 2019-09-08 20:12:54 2 2 2019-09-08 20:27:54 1 3 2019-09-08 20:27:54 2 2 2019-09-08 20:32:54 1 3 2019-09-08 20:32:54 2 3 2019-09-08 20:42:54 1 2 2019-09-08 20:42:54 2 3 2019-09-08 20:57:54 1 2 2019-09-08 20:57:54 2 3 2019-09-08 21:02:54 1 3 2019-09-08 21:02:54 2 4 2019-09-08 21:12:54 1 4 2019-09-08 21:12:54 2 3 2019-09-08 21:22:54 1 3 2019-09-08 21:22:54 2 3 2019-09-08 21:42:54 1 3 2019-09-08 21:42:54 2 1 2019-09-08 21:57:54 1 4 2019-09-08 21:57:54 2 2 2019-09-08 22:27:54 1 4 2019-09-08 22:27:54 2 3 2019-09-08 22:42:54 1 4 2019-09-08 22:42:54 2 3 2019-09-08 22:47:54 1 4 2019-09-08 22:47:54 2 3 2019-09-08 22:52:54 1 4 2019-09-08 22:52:54 2 3 2019-09-08 23:22:54 1 4 2019-09-08 23:22:54 2 3 2019-09-08 23:27:54 1 4 2019-09-08 23:27:54 2 2 2019-09-08 23:57:54 1 4 2019-09-09 00:12:54 1 4 2019-09-09 00:27:54 1 3 2019-09-09 00:27:54 2 1 2019-09-09 00:32:54 1 3 2019-09-09 00:32:54 2 1 2019-09-09 00:42:54 1 3 2019-09-09 00:42:54 2 1 2019-09-09 00:47:54 1 3 2019-09-09 00:47:54 2 1 2019-09-09 01:27:54 1 2 2019-09-09 01:27:54 2 2 2019-09-09 01:32:54 1 2 2019-09-09 01:32:54 2 2 2019-09-09 01:47:54 1 3 2019-09-09 01:47:54 2 1 2019-09-09 01:52:54 1 3 2019-09-09 01:52:54 2 1 2019-09-09 02:12:54 1 2 2019-09-09 02:12:54 2 2 2019-09-09 02:17:54 1 2 2019-09-09 02:17:54 2 2 2019-09-09 02:22:54 1 2 2019-09-09 02:22:54 2 2 2019-09-09 04:02:54 1 2 2019-09-09 04:02:54 2 2 2019-09-09 04:07:54 1 2 2019-09-09 04:07:54 2 2 2019-09-09 04:12:54 1 2 2019-09-09 04:12:54 2 2 2019-09-09 04:17:54 1 2 2019-09-09 04:17:54 2 2 2019-09-09 04:22:54 1 2 2019-09-09 04:22:54 2 2 2019-09-09 04:27:54 1 2 2019-09-09 04:27:54 2 2 2019-09-09 04:32:54 1 2 2019-09-09 04:32:54 2 2 2019-09-09 04:37:54 1 2 2019-09-09 04:37:54 2 2 2019-09-09 04:42:54 1 2 2019-09-09 04:42:54 2 2 2019-09-09 04:47:54 1 2 2019-09-09 04:47:54 2 2 2019-09-09 04:52:54 1 2 2019-09-09 04:52:54 2 2 2019-09-09 05:57:54 1 3 2019-09-09 05:57:54 2 1 2019-09-09 06:07:54 1 2 2019-09-09 06:07:54 2 1 2019-09-09 06:12:54 1 2 2019-09-09 06:12:54 2 1 2019-09-09 06:17:54 1 2 2019-09-09 06:17:54 2 1 2019-09-09 06:22:54 1 2 2019-09-09 06:22:54 2 1 2019-09-09 06:27:54 1 2 2019-09-09 06:27:54 2 1 2019-09-09 07:07:54 1 1 2019-09-09 07:07:54 2 1 2019-09-09 07:52:54 1 1 2019-09-09 07:52:54 2 3 2019-09-09 08:07:54 2 2 2019-09-09 08:17:54 1 3 2019-09-08 09:42:54 1 4 2019-09-08 09:42:54 2 2 2019-09-08 09:47:54 1 4 2019-09-08 09:47:54 2 1 2019-09-08 09:57:54 1 4 2019-09-08 09:57:54 2 2 2019-09-08 10:17:54 1 5 2019-09-08 10:27:54 1 7 2019-09-08 10:27:54 2 1 2019-09-08 10:32:54 1 7 2019-09-08 10:32:54 2 1 2019-09-08 10:42:54 1 6 2019-09-08 10:42:54 2 1 2019-09-08 11:02:54 1 5 2019-09-08 11:02:54 2 1 2019-09-08 11:32:54 1 5 2019-09-08 11:32:54 2 1 2019-09-08 11:47:54 1 6 2019-09-08 11:47:54 2 2 2019-09-08 12:07:54 1 4 2019-09-08 12:07:54 2 2 2019-09-08 12:12:54 1 4 2019-09-08 12:12:54 2 2 2019-09-08 12:27:54 1 5 2019-09-08 12:27:54 2 2 2019-09-08 13:32:54 1 3 2019-09-08 13:32:54 2 2 2019-09-08 13:47:54 1 5 2019-09-08 13:47:54 2 2 2019-09-08 13:52:54 1 5 2019-09-08 13:52:54 2 2 2019-09-08 14:07:54 1 5 2019-09-08 14:07:54 2 3 2019-09-08 14:22:54 1 5 2019-09-08 14:22:54 2 4 2019-09-08 14:47:54 1 6 2019-09-08 14:47:54 2 3 2019-09-08 15:12:54 1 6 2019-09-08 15:12:54 2 3 2019-09-08 15:17:54 1 4 2019-09-08 15:17:54 2 3 2019-09-08 15:42:54 1 5 2019-09-08 15:42:54 2 6 2019-09-08 15:47:54 1 4 2019-09-08 15:47:54 2 6 2019-09-08 15:52:54 1 4 2019-09-08 15:52:54 2 5 2019-09-08 16:17:54 1 5 2019-09-08 16:17:54 2 6 2019-09-08 16:42:54 1 3 2019-09-08 16:42:54 2 5 2019-09-08 16:47:54 1 4 2019-09-08 16:47:54 2 6 2019-09-08 16:57:54 1 4 2019-09-08 16:57:54 2 5 2019-09-08 17:07:54 1 4 2019-09-08 17:07:54 2 4 2019-09-08 17:12:54 1 3 2019-09-08 17:12:54 2 6 2019-09-08 17:32:54 1 4 2019-09-08 17:32:54 2 7 2019-09-08 17:37:54 1 4 2019-09-08 17:37:54 2 4 2019-09-08 18:17:54 1 5 2019-09-08 18:17:54 2 4 2019-09-08 18:27:54 1 4 2019-09-08 18:27:54 2 3 2019-09-08 18:42:54 1 4 2019-09-08 18:47:54 1 4 2019-09-08 18:47:54 2 1 2019-09-08 19:07:54 1 4 2019-09-08 19:07:54 2 2 2019-09-08 19:12:54 1 3 2019-09-08 19:12:54 2 2 2019-09-08 19:27:54 1 4 2019-09-08 19:27:54 2 3 2019-09-08 19:42:54 1 3 2019-09-08 19:42:54 2 2 2019-09-08 20:17:54 1 3 2019-09-08 20:17:54 2 2 2019-09-08 20:47:54 1 3 2019-09-08 20:47:54 2 2 2019-09-08 20:52:54 1 3 2019-09-08 20:52:54 2 1 2019-09-08 21:17:54 1 3 2019-09-08 21:17:54 2 3 2019-09-08 21:27:54 1 2 2019-09-08 21:27:54 2 3 2019-09-08 21:32:54 1 2 2019-09-08 21:32:54 2 3 2019-09-08 22:02:54 1 4 2019-09-08 22:02:54 2 2 2019-09-08 23:32:54 1 4 2019-09-08 23:32:54 2 1 2019-09-08 23:37:54 1 4 2019-09-08 23:37:54 2 1 2019-09-08 23:47:54 1 4 2019-09-08 23:47:54 2 1 2019-09-09 00:02:54 1 4 2019-09-09 00:17:54 1 2 2019-09-09 00:22:54 1 2 2019-09-09 00:22:54 2 2 2019-09-09 00:57:54 1 3 2019-09-09 00:57:54 2 1 2019-09-09 01:02:54 1 3 2019-09-09 01:02:54 2 1 2019-09-09 02:07:54 1 2 2019-09-09 02:07:54 2 2 2019-09-09 02:37:54 1 2 2019-09-09 02:37:54 2 2 2019-09-09 02:52:54 1 2 2019-09-09 02:52:54 2 1 2019-09-09 02:57:54 1 2 2019-09-09 02:57:54 2 1 2019-09-09 03:02:54 1 2 2019-09-09 03:02:54 2 1 2019-09-09 03:07:54 1 2 2019-09-09 03:07:54 2 1 2019-09-09 03:12:54 1 2 2019-09-09 03:12:54 2 1 2019-09-09 03:17:54 1 2 2019-09-09 03:17:54 2 1 2019-09-09 03:22:54 1 2 2019-09-09 03:22:54 2 1 2019-09-09 03:27:54 1 2 2019-09-09 03:27:54 2 1 2019-09-09 03:32:54 1 2 2019-09-09 03:32:54 2 1 2019-09-09 03:37:54 1 2 2019-09-09 03:37:54 2 1 2019-09-09 04:57:54 1 2 2019-09-09 04:57:54 2 1 2019-09-09 05:02:54 1 2 2019-09-09 05:02:54 2 1 2019-09-09 05:12:54 1 2 2019-09-09 05:12:54 2 2 2019-09-09 05:17:54 1 2 2019-09-09 05:17:54 2 2 2019-09-09 05:22:54 1 2 2019-09-09 05:22:54 2 2 2019-09-09 06:32:54 1 1 2019-09-09 06:32:54 2 1 2019-09-09 06:37:54 1 1 2019-09-09 06:37:54 2 1 2019-09-09 06:42:54 1 1 2019-09-09 06:42:54 2 1 2019-09-09 06:47:54 1 1 2019-09-09 06:47:54 2 1 2019-09-09 06:52:54 1 1 2019-09-09 06:52:54 2 1 2019-09-09 06:57:54 1 1 2019-09-09 06:57:54 2 1 2019-09-09 07:02:54 1 1 2019-09-09 07:02:54 2 1 2019-09-09 07:12:54 1 1 2019-09-09 07:12:54 2 2 2019-09-09 07:17:54 1 1 2019-09-09 07:17:54 2 2 2019-09-09 07:22:54 1 1 2019-09-09 07:22:54 2 2 2019-09-09 07:27:54 1 1 2019-09-09 07:27:54 2 2 2019-09-09 08:12:54 1 2 2019-09-09 08:12:54 2 2 2019-09-09 08:17:54 2 3 2019-09-09 08:22:54 1 2 2019-09-09 08:22:54 2 2 2019-09-09 08:27:54 1 2 2019-09-09 08:27:54 2 2 2019-09-09 08:32:54 1 2 2019-09-09 08:32:54 2 2 2019-09-09 08:37:54 1 2 2019-09-09 08:37:54 2 2 2019-09-09 08:42:54 1 2 2019-09-09 08:42:54 2 2 2019-09-09 08:47:54 1 2 2019-09-09 08:47:54 2 3 2019-09-09 08:52:54 1 2 2019-09-09 08:52:54 2 1 2019-09-09 08:57:54 1 2 2019-09-09 08:57:54 2 1 2019-09-09 09:02:54 1 2 2019-09-09 09:02:54 2 1 2019-09-09 09:07:54 1 2 2019-09-09 09:07:54 2 2 2019-09-08 09:52:54 1 5 2019-09-08 09:52:54 2 1 2019-09-08 10:02:54 1 4 2019-09-08 10:02:54 2 1 2019-09-08 10:07:54 1 3 2019-09-08 10:07:54 2 1 2019-09-08 10:22:54 1 7 2019-09-08 10:37:54 1 5 2019-09-08 10:37:54 2 1 2019-09-08 11:17:54 1 5 2019-09-08 11:17:54 2 1 2019-09-08 11:27:54 1 6 2019-09-08 11:27:54 2 1 2019-09-08 11:57:54 1 5 2019-09-08 11:57:54 2 2 2019-09-08 12:17:54 1 5 2019-09-08 12:17:54 2 2 2019-09-08 12:22:54 1 5 2019-09-08 12:22:54 2 2 2019-09-08 12:32:54 1 5 2019-09-08 12:32:54 2 2 2019-09-08 12:37:54 1 5 2019-09-08 12:37:54 2 2 2019-09-08 12:47:54 1 5 2019-09-08 12:47:54 2 1 2019-09-08 12:57:54 1 6 2019-09-08 12:57:54 2 1 2019-09-08 13:07:54 1 7 2019-09-08 13:07:54 2 2 2019-09-08 13:22:54 1 7 2019-09-08 13:22:54 2 3 2019-09-08 13:42:54 1 4 2019-09-08 13:42:54 2 3 2019-09-08 14:17:54 1 5 2019-09-08 14:17:54 2 3 2019-09-08 14:27:54 1 5 2019-09-08 14:27:54 2 3 2019-09-08 14:32:54 1 5 2019-09-08 14:32:54 2 3 2019-09-08 14:42:54 1 5 2019-09-08 14:42:54 2 3 2019-09-08 14:57:54 1 5 2019-09-08 14:57:54 2 4 2019-09-08 15:07:54 1 6 2019-09-08 15:07:54 2 3 2019-09-08 15:22:54 1 5 2019-09-08 15:22:54 2 4 2019-09-08 16:07:54 1 4 2019-09-08 16:07:54 2 6 2019-09-08 16:12:54 1 4 2019-09-08 16:12:54 2 6 2019-09-08 16:27:54 1 3 2019-09-08 16:27:54 2 5 2019-09-08 16:37:54 1 3 2019-09-08 16:37:54 2 6 2019-09-08 16:52:54 1 4 2019-09-08 16:52:54 2 7 2019-09-08 17:17:54 1 3 2019-09-08 17:17:54 2 7 2019-09-08 17:22:54 1 4 2019-09-08 17:22:54 2 7 2019-09-08 17:42:54 1 5 2019-09-08 17:42:54 2 4 2019-09-08 17:47:54 1 5 2019-09-08 17:47:54 2 3 2019-09-08 17:52:54 1 5 2019-09-08 17:52:54 2 3 2019-09-08 18:12:54 1 5 2019-09-08 18:12:54 2 2 2019-09-08 18:22:54 1 5 2019-09-08 18:22:54 2 4 2019-09-08 19:02:54 1 4 2019-09-08 19:02:54 2 1 2019-09-08 19:37:54 1 3 2019-09-08 19:37:54 2 3 2019-09-08 19:47:54 1 3 2019-09-08 19:47:54 2 3 2019-09-08 20:02:54 1 3 2019-09-08 20:02:54 2 4 2019-09-08 20:07:54 1 3 2019-09-08 20:07:54 2 5 2019-09-08 20:22:54 1 3 2019-09-08 20:22:54 2 3 2019-09-08 20:37:54 1 2 2019-09-08 20:37:54 2 3 2019-09-08 21:07:54 1 3 2019-09-08 21:07:54 2 3 2019-09-08 21:37:54 1 2 2019-09-08 21:37:54 2 1 2019-09-08 21:47:54 1 3 2019-09-08 21:47:54 2 1 2019-09-08 21:52:54 1 3 2019-09-08 21:52:54 2 2 2019-09-08 22:07:54 1 4 2019-09-08 22:07:54 2 2 2019-09-08 22:12:54 1 4 2019-09-08 22:12:54 2 2 2019-09-08 22:17:54 1 4 2019-09-08 22:17:54 2 2 2019-09-08 22:22:54 1 4 2019-09-08 22:22:54 2 3 2019-09-08 22:32:54 1 4 2019-09-08 22:32:54 2 3 2019-09-08 22:37:54 1 5 2019-09-08 22:37:54 2 3 2019-09-08 22:57:54 1 5 2019-09-08 22:57:54 2 4 2019-09-08 23:02:54 1 4 2019-09-08 23:02:54 2 4 2019-09-08 23:07:54 1 4 2019-09-08 23:07:54 2 4 2019-09-08 23:12:54 1 4 2019-09-08 23:12:54 2 4 2019-09-08 23:17:54 1 3 2019-09-08 23:17:54 2 4 2019-09-08 23:42:54 1 4 2019-09-08 23:42:54 2 1 2019-09-08 23:52:54 1 5 2019-09-08 23:52:54 2 1 2019-09-09 00:07:54 1 4 2019-09-09 00:37:54 1 3 2019-09-09 00:37:54 2 1 2019-09-09 00:52:54 1 3 2019-09-09 00:52:54 2 1 2019-09-09 01:07:54 1 2 2019-09-09 01:07:54 2 1 2019-09-09 01:12:54 1 2 2019-09-09 01:12:54 2 1 2019-09-09 01:17:54 1 2 2019-09-09 01:17:54 2 1 2019-09-09 01:22:54 1 2 2019-09-09 01:22:54 2 1 2019-09-09 01:37:54 1 3 2019-09-09 01:37:54 2 1 2019-09-09 01:42:54 1 3 2019-09-09 01:42:54 2 1 2019-09-09 01:57:54 1 3 2019-09-09 01:57:54 2 1 2019-09-09 02:02:54 1 3 2019-09-09 02:02:54 2 1 2019-09-09 02:27:54 1 2 2019-09-09 02:27:54 2 2 2019-09-09 02:32:54 1 2 2019-09-09 02:32:54 2 2 2019-09-09 02:42:54 1 2 2019-09-09 02:42:54 2 1 2019-09-09 02:47:54 1 2 2019-09-09 02:47:54 2 1 2019-09-09 03:42:54 1 2 2019-09-09 03:42:54 2 2 2019-09-09 03:47:54 1 2 2019-09-09 03:47:54 2 2 2019-09-09 03:52:54 1 2 2019-09-09 03:52:54 2 2 2019-09-09 03:57:54 1 2 2019-09-09 03:57:54 2 2 2019-09-09 05:07:54 1 2 2019-09-09 05:07:54 2 2 2019-09-09 05:27:54 1 2 2019-09-09 05:27:54 2 1 2019-09-09 05:32:54 1 2 2019-09-09 05:32:54 2 1 2019-09-09 05:37:54 1 2 2019-09-09 05:37:54 2 1 2019-09-09 05:42:54 1 2 2019-09-09 05:42:54 2 1 2019-09-09 05:47:54 1 2 2019-09-09 05:47:54 2 1 2019-09-09 05:52:54 1 2 2019-09-09 05:52:54 2 1 2019-09-09 06:02:54 1 3 2019-09-09 06:02:54 2 1 2019-09-09 07:32:54 1 1 2019-09-09 07:32:54 2 3 2019-09-09 07:37:54 1 1 2019-09-09 07:37:54 2 2 2019-09-09 07:42:54 1 1 2019-09-09 07:42:54 2 2 2019-09-09 07:47:54 1 1 2019-09-09 07:47:54 2 2 2019-09-09 07:57:54 1 2 2019-09-09 07:57:54 2 2 2019-09-09 08:02:54 1 2 2019-09-09 08:02:54 2 2 2019-09-09 08:07:54 1 2 2019-09-09 09:12:54 1 2 2019-09-09 09:12:54 2 2 2019-09-09 09:32:54 1 2 2019-09-09 09:32:54 2 2 2019-09-09 09:52:54 1 1 2019-09-09 09:52:54 2 3 2019-09-09 09:57:54 1 1 2019-09-09 09:57:54 2 3 2019-09-09 10:02:54 1 1 2019-09-09 10:02:54 2 3 2019-09-09 10:22:54 1 3 2019-09-09 10:22:54 2 2 2019-09-09 10:27:54 1 4 2019-09-09 10:27:54 2 2 2019-09-09 10:32:54 1 3 2019-09-09 10:32:54 2 2 2019-09-09 10:57:54 1 3 2019-09-09 10:57:54 2 1 2019-09-09 11:12:54 1 3 2019-09-09 11:17:54 1 4 2019-09-09 11:27:54 1 3 2019-09-09 11:47:54 1 4 2019-09-09 11:47:54 2 2 2019-09-09 11:52:54 1 4 2019-09-09 11:52:54 2 1 2019-09-09 12:02:54 1 3 2019-09-09 12:02:54 2 1 2019-09-09 12:07:54 1 3 2019-09-09 12:07:54 2 2 2019-09-09 12:27:54 1 3 2019-09-09 12:27:54 2 4 2019-09-09 12:42:54 1 4 2019-09-09 12:42:54 2 4 2019-09-09 12:57:54 1 2 2019-09-09 12:57:54 2 4 2019-09-09 13:22:54 1 2 2019-09-09 13:22:54 2 3 2019-09-09 13:27:54 1 2 2019-09-09 13:27:54 2 2 2019-09-09 14:27:54 1 2 2019-09-09 14:27:54 2 2 2019-09-09 14:37:54 1 3 2019-09-09 14:37:54 2 2 2019-09-09 15:22:54 1 4 2019-09-09 15:22:54 2 3 2019-09-09 15:27:54 1 4 2019-09-09 15:27:54 2 3 2019-09-09 15:37:54 1 4 2019-09-09 15:37:54 2 2 2019-09-09 15:42:54 1 3 2019-09-09 15:42:54 2 2 2019-09-09 15:47:54 1 4 2019-09-09 15:47:54 2 2 2019-09-09 15:57:54 1 4 2019-09-09 15:57:54 2 1 2019-09-09 16:42:54 1 3 2019-09-09 16:42:54 2 2 2019-09-09 16:47:54 1 3 2019-09-09 16:47:54 2 2 2019-09-09 16:57:54 1 3 2019-09-09 16:57:54 2 2 2019-09-09 17:07:54 1 3 2019-09-09 17:07:54 2 2 2019-09-09 17:22:54 1 4 2019-09-09 17:52:54 1 3 2019-09-09 17:52:54 2 2 2019-09-09 17:57:54 1 3 2019-09-09 17:57:54 2 2 2019-09-09 18:07:54 1 3 2019-09-09 18:07:54 2 4 2019-09-09 18:12:54 1 3 2019-09-09 18:12:54 2 4 2019-09-09 18:27:54 1 4 2019-09-09 18:27:54 2 2 2019-09-09 18:47:54 1 3 2019-09-09 18:47:54 2 2 2019-09-09 19:07:54 1 2 2019-09-09 19:07:54 2 2 2019-09-09 19:22:54 1 2 2019-09-09 19:22:54 2 1 2019-09-09 19:27:54 1 2 2019-09-09 19:27:54 2 2 2019-09-09 19:42:54 1 3 2019-09-09 19:42:54 2 3 2019-09-09 19:52:54 1 3 2019-09-09 20:02:54 1 4 2019-09-09 20:02:54 2 1 2019-09-09 20:07:54 1 3 2019-09-09 20:07:54 2 2 2019-09-09 20:32:54 1 2 2019-09-09 20:32:54 2 3 2019-09-09 20:37:54 1 3 2019-09-09 20:37:54 2 3 2019-09-09 20:42:54 1 2 2019-09-09 20:42:54 2 3 2019-09-09 20:52:54 1 5 2019-09-09 20:52:54 2 3 2019-09-09 20:57:54 1 5 2019-09-09 20:57:54 2 2 2019-09-09 21:42:54 1 5 2019-09-09 21:42:54 2 4 2019-09-09 22:07:54 1 4 2019-09-09 22:07:54 2 3 2019-09-09 22:17:54 1 4 2019-09-09 22:17:54 2 4 2019-09-09 22:27:54 1 5 2019-09-09 22:27:54 2 2 2019-09-09 22:32:54 1 5 2019-09-09 22:32:54 2 2 2019-09-09 22:37:54 1 4 2019-09-09 22:37:54 2 2 2019-09-09 22:42:54 1 2 2019-09-09 22:42:54 2 2 2019-09-09 22:57:54 1 2 2019-09-09 22:57:54 2 3 2019-09-09 23:02:54 1 2 2019-09-09 23:02:54 2 2 2019-09-09 23:32:54 1 3 2019-09-09 23:32:54 2 2 2019-09-09 23:42:54 1 4 2019-09-09 23:42:54 2 2 2019-09-10 01:17:54 1 5 2019-09-10 01:17:54 2 3 2019-09-10 01:42:54 1 5 2019-09-10 01:42:54 2 2 2019-09-10 01:57:54 1 3 2019-09-10 01:57:54 2 2 2019-09-10 02:27:54 1 3 2019-09-10 02:27:54 2 1 2019-09-10 02:32:54 1 3 2019-09-10 02:32:54 2 1 2019-09-10 02:42:54 1 3 2019-09-10 02:47:54 1 3 2019-09-10 02:52:54 1 3 2019-09-10 03:22:54 1 3 2019-09-10 03:27:54 1 3 2019-09-10 03:32:54 1 3 2019-09-10 04:02:54 1 2 2019-09-10 04:02:54 2 1 2019-09-10 04:07:54 1 2 2019-09-10 04:07:54 2 1 2019-09-10 04:22:54 1 2 2019-09-10 04:27:54 1 2 2019-09-10 04:32:54 1 2 2019-09-10 04:37:54 1 2 2019-09-10 04:42:54 1 2 2019-09-10 04:47:54 1 2 2019-09-10 04:52:54 1 2 2019-09-10 04:57:54 1 2 2019-09-10 05:02:54 1 2 2019-09-10 05:07:54 1 2 2019-09-10 05:12:54 1 2 2019-09-10 05:17:54 1 2 2019-09-10 06:22:54 1 1 2019-09-10 06:27:54 1 1 2019-09-10 06:32:54 1 1 2019-09-10 06:37:54 1 1 2019-09-10 06:42:54 1 1 2019-09-10 06:47:54 1 1 2019-09-10 06:52:54 1 1 2019-09-10 06:57:54 1 1 2019-09-10 07:37:54 1 1 2019-09-10 08:02:54 1 1 2019-09-10 08:02:54 2 1 2019-09-10 08:07:54 1 1 2019-09-10 08:07:54 2 1 2019-09-10 08:12:54 1 1 2019-09-10 08:17:54 1 1 2019-09-10 08:27:54 1 1 2019-09-10 09:02:54 1 2 2019-09-10 09:17:54 1 3 2019-09-10 09:22:54 1 3 2019-09-10 09:42:54 1 2 2019-09-10 09:42:54 2 2 2019-09-10 09:47:54 1 2 2019-09-10 09:47:54 2 2 2019-09-10 09:57:54 1 4 2019-09-10 09:57:54 2 1 2019-09-10 10:02:54 1 4 2019-09-10 10:02:54 2 1 2019-09-10 10:12:54 1 3 2019-09-10 10:12:54 2 2 2019-09-10 10:17:54 1 4 2019-09-10 10:17:54 2 2 2019-09-10 10:22:54 1 4 2019-09-09 09:17:54 1 1 2019-09-09 09:17:54 2 2 2019-09-09 09:22:54 1 1 2019-09-09 09:22:54 2 2 2019-09-09 09:27:54 1 2 2019-09-09 09:27:54 2 2 2019-09-09 09:42:54 1 2 2019-09-09 09:42:54 2 2 2019-09-09 10:12:54 1 2 2019-09-09 10:12:54 2 2 2019-09-09 10:17:54 1 5 2019-09-09 10:17:54 2 2 2019-09-09 10:42:54 1 3 2019-09-09 10:42:54 2 3 2019-09-09 11:42:54 1 5 2019-09-09 11:42:54 2 1 2019-09-09 11:57:54 1 3 2019-09-09 11:57:54 2 1 2019-09-09 12:12:54 1 1 2019-09-09 12:12:54 2 2 2019-09-09 12:17:54 1 1 2019-09-09 12:17:54 2 3 2019-09-09 12:32:54 1 2 2019-09-09 12:32:54 2 5 2019-09-09 13:07:54 1 1 2019-09-09 13:07:54 2 5 2019-09-09 13:12:54 1 2 2019-09-09 13:12:54 2 3 2019-09-09 13:32:54 1 2 2019-09-09 13:32:54 2 2 2019-09-09 13:37:54 1 2 2019-09-09 13:37:54 2 2 2019-09-09 13:47:54 1 2 2019-09-09 13:47:54 2 2 2019-09-09 13:57:54 1 4 2019-09-09 13:57:54 2 1 2019-09-09 14:02:54 1 5 2019-09-09 14:02:54 2 1 2019-09-09 14:07:54 1 5 2019-09-09 14:07:54 2 1 2019-09-09 14:17:54 1 4 2019-09-09 14:17:54 2 3 2019-09-09 14:22:54 1 4 2019-09-09 14:22:54 2 2 2019-09-09 14:42:54 1 2 2019-09-09 14:42:54 2 2 2019-09-09 14:47:54 1 2 2019-09-09 14:47:54 2 2 2019-09-09 14:52:54 1 2 2019-09-09 14:52:54 2 1 2019-09-09 14:57:54 1 2 2019-09-09 14:57:54 2 1 2019-09-09 15:02:54 1 2 2019-09-09 15:02:54 2 1 2019-09-09 15:12:54 1 2 2019-09-09 15:12:54 2 2 2019-09-09 15:17:54 1 4 2019-09-09 15:17:54 2 3 2019-09-09 15:52:54 1 4 2019-09-09 15:52:54 2 1 2019-09-09 16:07:54 1 3 2019-09-09 16:07:54 2 1 2019-09-09 16:12:54 1 2 2019-09-09 16:12:54 2 1 2019-09-09 16:22:54 1 2 2019-09-09 16:22:54 2 2 2019-09-09 17:02:54 1 3 2019-09-09 17:02:54 2 3 2019-09-09 17:12:54 1 4 2019-09-09 17:12:54 2 2 2019-09-09 17:37:54 1 4 2019-09-09 17:37:54 2 1 2019-09-09 18:02:54 1 4 2019-09-09 18:02:54 2 2 2019-09-09 18:57:54 1 3 2019-09-09 18:57:54 2 1 2019-09-09 19:17:54 1 2 2019-09-09 19:17:54 2 1 2019-09-09 20:27:54 1 2 2019-09-09 20:27:54 2 1 2019-09-09 21:02:54 1 4 2019-09-09 21:02:54 2 2 2019-09-09 21:07:54 1 4 2019-09-09 21:07:54 2 3 2019-09-09 21:12:54 1 4 2019-09-09 21:12:54 2 3 2019-09-09 21:17:54 1 4 2019-09-09 21:17:54 2 4 2019-09-09 21:22:54 1 4 2019-09-09 21:22:54 2 5 2019-09-09 21:52:54 1 5 2019-09-09 21:52:54 2 4 2019-09-09 21:57:54 1 4 2019-09-09 21:57:54 2 3 2019-09-09 22:12:54 1 5 2019-09-09 22:12:54 2 4 2019-09-09 22:22:54 1 5 2019-09-09 22:22:54 2 2 2019-09-09 23:17:54 1 2 2019-09-09 23:17:54 2 2 2019-09-09 23:22:54 1 2 2019-09-09 23:22:54 2 2 2019-09-09 23:27:54 1 3 2019-09-09 23:27:54 2 2 2019-09-09 23:37:54 1 4 2019-09-09 23:37:54 2 2 2019-09-09 23:47:54 1 3 2019-09-09 23:47:54 2 2 2019-09-10 00:12:54 1 3 2019-09-10 00:12:54 2 3 2019-09-10 00:17:54 1 3 2019-09-10 00:17:54 2 3 2019-09-10 00:27:54 1 3 2019-09-10 00:27:54 2 4 2019-09-10 00:32:54 1 3 2019-09-10 00:32:54 2 3 2019-09-10 00:47:54 1 3 2019-09-10 00:47:54 2 4 2019-09-10 00:57:54 1 4 2019-09-10 00:57:54 2 6 2019-09-10 01:12:54 1 5 2019-09-10 01:12:54 2 3 2019-09-10 01:22:54 1 5 2019-09-10 01:22:54 2 3 2019-09-10 01:27:54 1 5 2019-09-10 01:27:54 2 3 2019-09-10 01:32:54 1 5 2019-09-10 01:32:54 2 2 2019-09-10 01:37:54 1 5 2019-09-10 01:37:54 2 2 2019-09-10 02:02:54 1 2 2019-09-10 02:02:54 2 2 2019-09-10 03:07:54 1 3 2019-09-10 03:12:54 1 3 2019-09-10 03:17:54 1 3 2019-09-10 03:37:54 1 2 2019-09-10 04:12:54 1 2 2019-09-10 05:22:54 1 3 2019-09-10 05:27:54 1 3 2019-09-10 07:02:54 1 1 2019-09-10 07:02:54 2 1 2019-09-10 07:07:54 1 1 2019-09-10 07:07:54 2 1 2019-09-10 07:12:54 1 1 2019-09-10 07:12:54 2 1 2019-09-10 07:17:54 1 1 2019-09-10 07:17:54 2 1 2019-09-10 07:22:54 1 1 2019-09-10 07:22:54 2 1 2019-09-10 07:27:54 1 1 2019-09-10 07:27:54 2 1 2019-09-10 07:42:54 1 1 2019-09-10 07:42:54 2 1 2019-09-10 07:47:54 1 1 2019-09-10 07:47:54 2 1 2019-09-10 08:22:54 1 2 2019-09-10 08:42:54 1 2 2019-09-10 08:47:54 1 2 2019-09-10 08:52:54 1 2 2019-09-10 09:07:54 1 2 2019-09-10 09:07:54 2 3 2019-09-10 09:12:54 1 2 2019-09-10 09:12:54 2 2 2019-09-10 09:52:54 1 4 2019-09-10 09:52:54 2 1 2019-09-10 10:07:54 1 5 2019-09-10 10:07:54 2 1 2019-09-10 10:22:54 2 3 2019-09-10 10:27:54 1 5 2019-09-10 10:27:54 2 2 2019-09-10 10:32:54 1 4 2019-09-10 10:32:54 2 2 2019-09-10 10:37:54 1 3 2019-09-10 10:37:54 2 2 2019-09-10 10:42:54 1 5 2019-09-10 10:42:54 2 2 2019-09-10 10:47:54 1 4 2019-09-10 10:47:54 2 2 2019-09-10 10:52:54 1 4 2019-09-10 10:52:54 2 2 2019-09-10 10:57:54 1 4 2019-09-10 10:57:54 2 2 2019-09-10 11:02:54 1 4 2019-09-10 11:02:54 2 2 2019-09-10 11:07:54 1 3 2019-09-09 09:37:54 1 2 2019-09-09 09:37:54 2 2 2019-09-09 09:47:54 1 1 2019-09-09 09:47:54 2 2 2019-09-09 10:07:54 1 2 2019-09-09 10:07:54 2 2 2019-09-09 10:37:54 1 3 2019-09-09 10:37:54 2 2 2019-09-09 10:47:54 1 3 2019-09-09 10:47:54 2 1 2019-09-09 10:52:54 1 4 2019-09-09 10:52:54 2 1 2019-09-09 11:02:54 1 3 2019-09-09 11:02:54 2 1 2019-09-09 11:07:54 1 4 2019-09-09 11:07:54 2 1 2019-09-09 11:22:54 1 5 2019-09-09 11:32:54 1 3 2019-09-09 11:32:54 2 1 2019-09-09 11:37:54 1 4 2019-09-09 11:37:54 2 1 2019-09-09 12:22:54 1 2 2019-09-09 12:22:54 2 5 2019-09-09 12:37:54 1 3 2019-09-09 12:37:54 2 4 2019-09-09 12:47:54 1 3 2019-09-09 12:47:54 2 3 2019-09-09 12:52:54 1 3 2019-09-09 12:52:54 2 3 2019-09-09 13:02:54 1 3 2019-09-09 13:02:54 2 5 2019-09-09 13:17:54 1 1 2019-09-09 13:17:54 2 4 2019-09-09 13:42:54 1 3 2019-09-09 13:42:54 2 3 2019-09-09 13:52:54 1 2 2019-09-09 13:52:54 2 1 2019-09-09 14:12:54 1 5 2019-09-09 14:12:54 2 2 2019-09-09 14:32:54 1 3 2019-09-09 14:32:54 2 3 2019-09-09 15:07:54 1 2 2019-09-09 15:07:54 2 2 2019-09-09 15:32:54 1 4 2019-09-09 15:32:54 2 2 2019-09-09 16:02:54 1 4 2019-09-09 16:02:54 2 1 2019-09-09 16:17:54 1 2 2019-09-09 16:17:54 2 2 2019-09-09 16:27:54 1 3 2019-09-09 16:27:54 2 2 2019-09-09 16:32:54 1 4 2019-09-09 16:32:54 2 2 2019-09-09 16:37:54 1 4 2019-09-09 16:37:54 2 2 2019-09-09 16:52:54 1 3 2019-09-09 16:52:54 2 3 2019-09-09 17:17:54 1 3 2019-09-09 17:17:54 2 1 2019-09-09 17:27:54 1 4 2019-09-09 17:27:54 2 1 2019-09-09 17:32:54 1 4 2019-09-09 17:32:54 2 1 2019-09-09 17:42:54 1 4 2019-09-09 17:42:54 2 1 2019-09-09 17:47:54 1 3 2019-09-09 17:47:54 2 3 2019-09-09 18:17:54 1 4 2019-09-09 18:17:54 2 4 2019-09-09 18:22:54 1 4 2019-09-09 18:22:54 2 3 2019-09-09 18:32:54 1 4 2019-09-09 18:32:54 2 2 2019-09-09 18:37:54 1 2 2019-09-09 18:37:54 2 3 2019-09-09 18:42:54 1 3 2019-09-09 18:42:54 2 3 2019-09-09 18:52:54 1 3 2019-09-09 18:52:54 2 2 2019-09-09 19:02:54 1 3 2019-09-09 19:02:54 2 2 2019-09-09 19:12:54 1 3 2019-09-09 19:12:54 2 1 2019-09-09 19:32:54 1 3 2019-09-09 19:32:54 2 2 2019-09-09 19:37:54 1 4 2019-09-09 19:37:54 2 1 2019-09-09 19:47:54 1 4 2019-09-09 19:47:54 2 1 2019-09-09 19:57:54 1 4 2019-09-09 19:57:54 2 1 2019-09-09 20:12:54 1 3 2019-09-09 20:12:54 2 2 2019-09-09 20:17:54 1 4 2019-09-09 20:17:54 2 1 2019-09-09 20:22:54 1 3 2019-09-09 20:22:54 2 1 2019-09-09 20:47:54 1 4 2019-09-09 20:47:54 2 3 2019-09-09 21:27:54 1 4 2019-09-09 21:27:54 2 4 2019-09-09 21:32:54 1 6 2019-09-09 21:32:54 2 4 2019-09-09 21:37:54 1 4 2019-09-09 21:37:54 2 5 2019-09-09 21:47:54 1 5 2019-09-09 21:47:54 2 4 2019-09-09 22:02:54 1 3 2019-09-09 22:02:54 2 3 2019-09-09 22:47:54 1 1 2019-09-09 22:47:54 2 3 2019-09-09 22:52:54 1 2 2019-09-09 22:52:54 2 3 2019-09-09 23:07:54 1 2 2019-09-09 23:07:54 2 2 2019-09-09 23:12:54 1 2 2019-09-09 23:12:54 2 2 2019-09-09 23:52:54 1 3 2019-09-09 23:52:54 2 1 2019-09-09 23:57:54 1 3 2019-09-09 23:57:54 2 1 2019-09-10 00:02:54 1 2 2019-09-10 00:02:54 2 1 2019-09-10 00:07:54 1 2 2019-09-10 00:07:54 2 3 2019-09-10 00:22:54 1 3 2019-09-10 00:22:54 2 3 2019-09-10 00:37:54 1 3 2019-09-10 00:37:54 2 4 2019-09-10 00:42:54 1 3 2019-09-10 00:42:54 2 3 2019-09-10 00:52:54 1 3 2019-09-10 00:52:54 2 5 2019-09-10 01:02:54 1 4 2019-09-10 01:02:54 2 5 2019-09-10 01:07:54 1 5 2019-09-10 01:07:54 2 3 2019-09-10 01:47:54 1 5 2019-09-10 01:47:54 2 2 2019-09-10 01:52:54 1 4 2019-09-10 01:52:54 2 2 2019-09-10 02:07:54 1 3 2019-09-10 02:07:54 2 2 2019-09-10 02:12:54 1 3 2019-09-10 02:12:54 2 2 2019-09-10 02:17:54 1 3 2019-09-10 02:17:54 2 2 2019-09-10 02:22:54 1 3 2019-09-10 02:22:54 2 2 2019-09-10 02:37:54 1 3 2019-09-10 02:37:54 2 1 2019-09-10 02:57:54 1 3 2019-09-10 03:02:54 1 3 2019-09-10 03:42:54 1 2 2019-09-10 03:42:54 2 1 2019-09-10 03:47:54 1 2 2019-09-10 03:47:54 2 1 2019-09-10 03:52:54 1 2 2019-09-10 03:52:54 2 1 2019-09-10 03:57:54 1 2 2019-09-10 03:57:54 2 1 2019-09-10 04:17:54 1 3 2019-09-10 05:32:54 1 2 2019-09-10 05:37:54 1 2 2019-09-10 05:42:54 1 2 2019-09-10 05:47:54 1 2 2019-09-10 05:52:54 1 2 2019-09-10 05:57:54 1 2 2019-09-10 06:02:54 1 2 2019-09-10 06:07:54 1 2 2019-09-10 06:12:54 1 2 2019-09-10 06:17:54 1 2 2019-09-10 07:32:54 1 1 2019-09-10 07:32:54 2 1 2019-09-10 07:52:54 1 1 2019-09-10 07:57:54 1 1 2019-09-10 08:32:54 1 2 2019-09-10 08:37:54 1 2 2019-09-10 08:57:54 1 2 2019-09-10 08:57:54 2 1 2019-09-10 09:27:54 1 3 2019-09-10 09:32:54 1 2 2019-09-10 09:32:54 2 1 2019-09-10 09:37:54 1 3 2019-09-10 09:37:54 2 2 2019-09-10 11:07:54 2 2 2019-09-10 11:12:54 1 3 2019-09-10 11:12:54 2 2 2019-09-10 11:52:54 1 3 2019-09-10 11:57:54 1 2 2019-09-10 12:17:54 1 3 2019-09-10 12:32:54 1 5 2019-09-10 12:42:54 1 4 2019-09-10 13:12:54 1 5 2019-09-10 13:17:54 1 4 2019-09-10 13:27:54 1 3 2019-09-10 13:32:54 1 3 2019-09-10 13:37:54 1 4 2019-09-10 14:02:54 1 4 2019-09-10 14:22:54 1 3 2019-09-10 14:32:54 1 2 2019-09-10 14:37:54 1 3 2019-09-10 14:47:54 1 5 2019-09-10 14:57:54 1 4 2019-09-10 15:32:54 1 4 2019-09-10 15:37:54 1 4 2019-09-10 16:02:54 1 2 2019-09-10 16:22:54 1 4 2019-09-10 17:02:54 1 3 2019-09-10 17:37:54 1 4 2019-09-10 17:52:54 1 3 2019-09-10 17:57:54 1 3 2019-09-10 18:12:54 1 3 2019-09-10 18:17:54 1 4 2019-09-10 18:22:54 1 4 2019-09-10 18:27:54 1 4 2019-09-10 18:37:54 1 4 2019-09-10 18:57:54 1 4 2019-09-10 19:02:54 1 4 2019-09-10 19:07:54 1 3 2019-09-10 19:17:54 1 4 2019-09-10 19:32:54 1 3 2019-09-10 19:37:54 1 2 2019-09-10 19:42:54 1 3 2019-09-10 20:22:54 1 2 2019-09-10 20:27:54 1 2 2019-09-10 20:47:54 1 2 2019-09-10 21:27:54 1 3 2019-09-10 21:32:54 1 3 2019-09-10 21:37:54 1 4 2019-09-10 22:17:54 1 2 2019-09-10 22:32:54 1 3 2019-09-10 22:37:54 1 3 2019-09-10 22:47:54 1 4 2019-09-10 23:07:54 1 3 2019-09-10 23:12:54 1 3 2019-09-10 23:32:54 1 2 2019-09-10 23:37:54 1 2 2019-09-10 23:42:54 1 2 2019-09-10 23:47:54 1 2 2019-09-11 00:22:54 1 2 2019-09-11 00:27:54 1 2 2019-09-11 00:32:54 1 2 2019-09-11 00:37:54 1 2 2019-09-11 00:57:54 1 2 2019-09-11 01:02:54 1 2 2019-09-11 03:07:54 1 1 2019-09-11 03:52:54 1 3 2019-09-11 04:02:54 1 3 2019-09-11 04:42:54 1 2 2019-09-11 04:47:54 1 2 2019-09-11 04:52:54 1 2 2019-09-11 04:57:54 1 2 2019-09-11 05:02:54 1 2 2019-09-11 05:07:54 1 2 2019-09-11 05:12:54 1 2 2019-09-11 05:17:54 1 2 2019-09-11 05:22:54 1 2 2019-09-11 05:27:54 1 2 2019-09-11 05:32:54 1 2 2019-09-11 05:37:54 1 2 2019-09-11 05:42:54 1 2 2019-09-11 05:47:54 1 2 2019-09-11 05:52:54 1 2 2019-09-11 05:57:54 1 2 2019-09-11 06:02:54 1 2 2019-09-11 06:07:54 1 2 2019-09-11 06:12:54 1 2 2019-09-11 06:57:54 1 2 2019-09-11 08:42:54 1 1 2019-09-11 08:47:54 1 1 2019-09-11 09:27:54 1 1 2019-09-11 09:32:54 1 1 2019-09-11 09:37:54 1 1 2019-09-11 10:12:54 1 2 2019-09-11 10:32:54 1 2 2019-09-11 10:52:54 1 2 2019-09-11 10:57:54 1 2 2019-09-11 11:12:54 1 2 2019-09-11 11:22:54 1 2 2019-09-11 11:27:54 1 2 2019-09-11 11:32:54 1 2 2019-09-11 11:37:54 1 2 2019-09-11 11:52:54 1 4 2019-09-11 12:02:54 1 3 2019-09-11 12:22:54 1 3 2019-09-11 12:52:54 1 4 2019-09-11 13:07:54 1 3 2019-09-11 13:12:54 1 4 2019-09-11 13:17:54 1 3 2019-09-11 13:22:54 1 3 2019-09-11 13:37:54 1 3 2019-09-11 14:32:54 1 5 2019-09-11 15:07:54 1 3 2019-09-11 15:42:54 1 4 2019-09-11 16:07:54 1 4 2019-09-11 16:17:54 1 3 2019-09-11 16:22:54 1 3 2019-09-11 16:27:54 1 3 2019-09-11 17:12:54 1 4 2019-09-11 17:32:54 1 7 2019-09-11 17:37:54 1 6 2019-09-11 17:42:54 1 5 2019-09-11 17:57:54 1 4 2019-09-11 18:12:54 1 3 2019-09-11 18:22:54 1 2 2019-09-11 18:37:54 1 3 2019-09-11 19:02:54 1 3 2019-09-12 14:30:14 1 1 2019-09-12 14:50:14 1 1 2019-09-12 14:50:14 2 1 2019-09-12 15:15:14 1 3 2019-09-12 15:30:14 1 2 2019-09-12 15:50:14 1 2 2019-09-12 16:15:14 1 3 2019-09-12 16:30:14 1 1 2019-09-12 16:40:14 1 2 2019-09-12 16:45:14 1 2 2019-09-12 16:55:14 1 2 2019-09-12 17:15:14 1 2 2019-09-12 17:20:14 1 3 2019-09-12 17:45:14 1 3 2019-09-12 17:55:14 1 2 2019-09-12 18:00:14 1 3 2019-09-12 18:20:14 1 3 2019-09-12 18:30:14 1 2 2019-09-12 18:45:14 1 1 2019-09-12 19:05:14 1 2 2019-09-12 19:05:14 2 2 2019-09-12 19:20:14 1 2 2019-09-12 19:20:14 2 1 2019-09-12 19:25:14 1 2 2019-09-12 19:25:14 2 1 2019-09-12 19:40:14 1 4 2019-09-12 19:40:14 2 1 2019-09-12 20:00:14 1 2 2019-09-12 20:00:14 2 1 2019-09-12 20:15:14 2 1 2019-09-12 20:35:14 1 2 2019-09-12 20:35:14 2 2 2019-09-12 20:50:14 1 3 2019-09-12 20:50:14 2 1 2019-09-12 20:55:14 1 3 2019-09-12 20:55:14 2 1 2019-09-12 21:00:14 1 3 2019-09-12 21:00:14 2 1 2019-09-12 21:05:14 1 3 2019-09-12 21:05:14 2 1 2019-09-12 21:10:14 1 3 2019-09-12 21:10:14 2 1 2019-09-12 21:15:14 1 4 2019-09-12 21:15:14 2 1 2019-09-12 21:20:14 1 4 2019-09-12 21:20:14 2 1 2019-09-12 21:25:14 1 3 2019-09-12 21:25:14 2 1 2019-09-12 21:35:14 1 5 2019-09-12 21:35:14 2 1 2019-09-12 21:40:14 1 6 2019-09-12 21:40:14 2 1 2019-09-12 21:45:14 1 7 2019-09-12 21:45:14 2 1 2019-09-12 21:50:14 1 5 2019-09-12 21:50:14 2 1 2019-09-12 22:00:14 1 4 2019-09-12 22:00:14 2 2 2019-09-12 22:05:14 1 4 2019-09-12 22:05:14 2 3 2019-09-12 22:10:14 1 4 2019-09-12 22:10:14 2 3 2019-09-10 11:17:54 1 3 2019-09-10 11:17:54 2 1 2019-09-10 11:22:54 1 3 2019-09-10 11:22:54 2 1 2019-09-10 11:37:54 1 3 2019-09-10 11:37:54 2 2 2019-09-10 11:47:54 1 3 2019-09-10 11:47:54 2 2 2019-09-10 12:02:54 1 2 2019-09-10 12:22:54 1 3 2019-09-10 12:27:54 1 3 2019-09-10 12:47:54 1 4 2019-09-10 13:22:54 1 4 2019-09-10 14:07:54 1 3 2019-09-10 14:12:54 1 3 2019-09-10 14:27:54 1 3 2019-09-10 14:42:54 1 4 2019-09-10 14:52:54 1 4 2019-09-10 15:02:54 1 4 2019-09-10 15:17:54 1 2 2019-09-10 15:22:54 1 2 2019-09-10 15:27:54 1 3 2019-09-10 15:47:54 1 4 2019-09-10 15:57:54 1 3 2019-09-10 16:27:54 1 4 2019-09-10 16:32:54 1 3 2019-09-10 16:37:54 1 3 2019-09-10 16:42:54 1 3 2019-09-10 16:47:54 1 3 2019-09-10 16:52:54 1 4 2019-09-10 16:57:54 1 4 2019-09-10 17:12:54 1 3 2019-09-10 17:17:54 1 3 2019-09-10 17:22:54 1 3 2019-09-10 17:27:54 1 3 2019-09-10 17:32:54 1 3 2019-09-10 17:42:54 1 4 2019-09-10 18:02:54 1 3 2019-09-10 18:42:54 1 4 2019-09-10 18:52:54 1 3 2019-09-10 19:22:54 1 4 2019-09-10 19:27:54 1 3 2019-09-10 19:52:54 1 3 2019-09-10 20:02:54 1 2 2019-09-10 20:07:54 1 2 2019-09-10 20:12:54 1 2 2019-09-10 20:52:54 1 2 2019-09-10 20:57:54 1 2 2019-09-10 21:12:54 1 3 2019-09-10 21:17:54 1 3 2019-09-10 21:22:54 1 3 2019-09-10 21:42:54 1 2 2019-09-10 21:47:54 1 2 2019-09-10 22:27:54 1 2 2019-09-10 23:22:54 1 3 2019-09-10 23:27:54 1 3 2019-09-10 23:52:54 1 2 2019-09-10 23:57:54 1 2 2019-09-11 00:42:54 1 2 2019-09-11 01:07:54 1 2 2019-09-11 01:12:54 1 2 2019-09-11 01:17:54 1 2 2019-09-11 01:22:54 1 2 2019-09-11 01:27:54 1 2 2019-09-11 01:32:54 1 2 2019-09-11 01:37:54 1 2 2019-09-11 01:42:54 1 2 2019-09-11 01:47:54 1 2 2019-09-11 01:52:54 1 2 2019-09-11 01:57:54 1 2 2019-09-11 02:02:54 1 2 2019-09-11 02:07:54 1 2 2019-09-11 02:12:54 1 2 2019-09-11 02:17:54 1 2 2019-09-11 02:22:54 1 2 2019-09-11 02:27:54 1 2 2019-09-11 02:32:54 1 2 2019-09-11 02:37:54 1 2 2019-09-11 02:42:54 1 2 2019-09-11 02:47:54 1 2 2019-09-11 02:52:54 1 2 2019-09-11 02:57:54 1 2 2019-09-11 03:02:54 1 2 2019-09-11 03:57:54 1 3 2019-09-11 04:07:54 1 3 2019-09-11 04:12:54 1 3 2019-09-11 04:17:54 1 2 2019-09-11 06:17:54 1 2 2019-09-11 06:22:54 1 2 2019-09-11 06:42:54 1 3 2019-09-11 06:47:54 1 3 2019-09-11 06:52:54 1 3 2019-09-11 07:02:54 1 2 2019-09-11 07:07:54 1 2 2019-09-11 07:12:54 1 2 2019-09-11 07:17:54 1 2 2019-09-11 07:22:54 1 2 2019-09-11 07:27:54 1 2 2019-09-11 07:32:54 1 2 2019-09-11 07:37:54 1 2 2019-09-11 07:42:54 1 2 2019-09-11 07:47:54 1 2 2019-09-11 07:52:54 1 2 2019-09-11 07:57:54 1 2 2019-09-11 08:02:54 1 2 2019-09-11 08:07:54 1 2 2019-09-11 08:12:54 1 2 2019-09-11 08:17:54 1 2 2019-09-11 08:22:54 1 2 2019-09-11 08:27:54 1 2 2019-09-11 08:52:54 1 1 2019-09-11 08:57:54 1 1 2019-09-11 09:02:54 1 1 2019-09-11 09:52:54 1 3 2019-09-11 10:02:54 1 2 2019-09-11 10:07:54 1 2 2019-09-11 10:22:54 1 2 2019-09-11 10:27:54 1 2 2019-09-11 10:37:54 1 2 2019-09-11 10:47:54 1 2 2019-09-11 11:02:54 1 2 2019-09-11 11:07:54 1 2 2019-09-11 11:42:54 1 4 2019-09-11 11:47:54 1 3 2019-09-11 11:57:54 1 5 2019-09-11 12:17:54 1 2 2019-09-11 12:27:54 1 3 2019-09-11 12:32:54 1 3 2019-09-11 12:37:54 1 2 2019-09-11 12:57:54 1 3 2019-09-11 13:27:54 1 3 2019-09-11 13:32:54 1 4 2019-09-11 13:42:54 1 4 2019-09-11 13:47:54 1 3 2019-09-11 13:52:54 1 3 2019-09-11 13:57:54 1 3 2019-09-11 14:02:54 1 3 2019-09-11 14:12:54 1 3 2019-09-11 14:17:54 1 3 2019-09-11 14:27:54 1 4 2019-09-11 14:37:54 1 5 2019-09-11 14:57:54 1 2 2019-09-11 15:02:54 1 2 2019-09-11 15:22:54 1 3 2019-09-11 15:52:54 1 4 2019-09-11 15:57:54 1 6 2019-09-11 16:12:54 1 4 2019-09-11 16:32:54 1 3 2019-09-11 16:37:54 1 3 2019-09-11 16:42:54 1 3 2019-09-11 16:47:54 1 3 2019-09-11 16:52:54 1 4 2019-09-11 17:27:54 1 6 2019-09-11 17:47:54 1 5 2019-09-11 17:52:54 1 4 2019-09-11 18:17:54 1 3 2019-09-11 18:32:54 1 2 2019-09-11 18:47:54 1 3 2019-09-11 18:57:54 1 2 2019-09-12 14:55:14 1 2 2019-09-12 14:55:14 2 1 2019-09-12 15:00:14 1 2 2019-09-12 15:00:14 2 1 2019-09-12 15:05:14 1 2 2019-09-12 15:25:14 1 2 2019-09-12 15:45:14 1 2 2019-09-12 16:20:14 1 1 2019-09-12 16:25:14 1 1 2019-09-12 17:25:14 1 3 2019-09-12 17:30:14 1 3 2019-09-12 17:50:14 1 2 2019-09-12 18:10:14 1 3 2019-09-12 18:15:14 1 2 2019-09-12 18:25:14 1 2 2019-09-12 18:35:14 1 3 2019-09-12 18:40:14 1 1 2019-09-12 19:10:14 1 2 2019-09-12 19:10:14 2 2 2019-09-12 19:15:14 1 2 2019-09-12 19:15:14 2 2 2019-09-12 19:35:14 1 4 2019-09-12 19:35:14 2 1 2019-09-12 19:45:14 1 3 2019-09-12 19:45:14 2 1 2019-09-12 20:15:14 1 2 2019-09-10 11:27:54 1 3 2019-09-10 11:32:54 1 3 2019-09-10 11:32:54 2 2 2019-09-10 11:42:54 1 3 2019-09-10 11:42:54 2 3 2019-09-10 12:07:54 1 4 2019-09-10 12:12:54 1 3 2019-09-10 12:37:54 1 5 2019-09-10 12:52:54 1 4 2019-09-10 12:57:54 1 5 2019-09-10 13:02:54 1 4 2019-09-10 13:07:54 1 4 2019-09-10 13:42:54 1 3 2019-09-10 13:47:54 1 3 2019-09-10 13:52:54 1 4 2019-09-10 13:57:54 1 4 2019-09-10 14:17:54 1 3 2019-09-10 15:07:54 1 3 2019-09-10 15:12:54 1 3 2019-09-10 15:42:54 1 3 2019-09-10 15:52:54 1 4 2019-09-10 16:07:54 1 3 2019-09-10 16:12:54 1 3 2019-09-10 16:17:54 1 4 2019-09-10 17:07:54 1 4 2019-09-10 17:47:54 1 3 2019-09-10 18:07:54 1 3 2019-09-10 18:32:54 1 5 2019-09-10 18:47:54 1 4 2019-09-10 19:12:54 1 4 2019-09-10 19:47:54 1 2 2019-09-10 19:57:54 1 3 2019-09-10 20:17:54 1 2 2019-09-10 20:32:54 1 2 2019-09-10 20:37:54 1 2 2019-09-10 20:42:54 1 2 2019-09-10 21:02:54 1 2 2019-09-10 21:07:54 1 2 2019-09-10 21:52:54 1 2 2019-09-10 21:57:54 1 2 2019-09-10 22:02:54 1 2 2019-09-10 22:07:54 1 2 2019-09-10 22:12:54 1 2 2019-09-10 22:22:54 1 3 2019-09-10 22:42:54 1 4 2019-09-10 22:52:54 1 3 2019-09-10 22:57:54 1 3 2019-09-10 23:02:54 1 3 2019-09-10 23:17:54 1 4 2019-09-11 00:02:54 1 2 2019-09-11 00:07:54 1 2 2019-09-11 00:12:54 1 2 2019-09-11 00:17:54 1 2 2019-09-11 00:47:54 1 2 2019-09-11 00:52:54 1 2 2019-09-11 03:12:54 1 2 2019-09-11 03:17:54 1 2 2019-09-11 03:22:54 1 2 2019-09-11 03:27:54 1 2 2019-09-11 03:32:54 1 2 2019-09-11 03:37:54 1 2 2019-09-11 03:42:54 1 2 2019-09-11 03:47:54 1 2 2019-09-11 04:22:54 1 2 2019-09-11 04:27:54 1 2 2019-09-11 04:32:54 1 2 2019-09-11 04:37:54 1 2 2019-09-11 06:27:54 1 2 2019-09-11 06:32:54 1 2 2019-09-11 06:37:54 1 2 2019-09-11 08:32:54 1 2 2019-09-11 08:37:54 1 1 2019-09-11 09:07:54 1 1 2019-09-11 09:12:54 1 1 2019-09-11 09:17:54 1 1 2019-09-11 09:22:54 1 1 2019-09-11 09:42:54 1 2 2019-09-11 09:47:54 1 2 2019-09-11 09:57:54 1 3 2019-09-11 10:17:54 1 3 2019-09-11 10:42:54 1 2 2019-09-11 11:17:54 1 3 2019-09-11 12:07:54 1 4 2019-09-11 12:12:54 1 4 2019-09-11 12:42:54 1 4 2019-09-11 12:47:54 1 4 2019-09-11 13:02:54 1 3 2019-09-11 14:07:54 1 3 2019-09-11 14:22:54 1 5 2019-09-11 14:42:54 1 3 2019-09-11 14:47:54 1 3 2019-09-11 14:52:54 1 3 2019-09-11 15:12:54 1 2 2019-09-11 15:17:54 1 2 2019-09-11 15:27:54 1 5 2019-09-11 15:32:54 1 5 2019-09-11 15:37:54 1 4 2019-09-11 15:47:54 1 3 2019-09-11 16:02:54 1 4 2019-09-11 16:57:54 1 4 2019-09-11 17:02:54 1 4 2019-09-11 17:07:54 1 4 2019-09-11 17:17:54 1 5 2019-09-11 17:22:54 1 5 2019-09-11 18:02:54 1 3 2019-09-11 18:07:54 1 3 2019-09-11 18:27:54 1 3 2019-09-11 18:42:54 1 4 2019-09-11 18:52:54 1 3 2019-09-12 15:10:14 1 2 2019-09-12 15:20:14 1 3 2019-09-12 15:20:14 2 1 2019-09-12 15:35:14 1 1 2019-09-12 15:40:14 1 1 2019-09-12 15:55:14 1 3 2019-09-12 15:55:14 2 1 2019-09-12 16:00:14 1 3 2019-09-12 16:00:14 2 1 2019-09-12 16:05:14 1 2 2019-09-12 16:05:14 2 1 2019-09-12 16:10:14 1 2 2019-09-12 16:35:14 1 3 2019-09-12 16:50:14 1 2 2019-09-12 17:00:14 1 2 2019-09-12 17:05:14 1 2 2019-09-12 17:10:14 1 2 2019-09-12 17:35:14 1 3 2019-09-12 17:40:14 1 3 2019-09-12 18:05:14 1 3 2019-09-12 18:50:14 1 2 2019-09-12 18:55:14 1 2 2019-09-12 19:00:14 1 2 2019-09-12 19:00:14 2 1 2019-09-12 19:30:14 1 4 2019-09-12 19:30:14 2 1 2019-09-12 19:50:14 1 2 2019-09-12 19:50:14 2 1 2019-09-12 19:55:14 1 3 2019-09-12 19:55:14 2 1 2019-09-12 20:05:14 1 2 2019-09-12 20:05:14 2 1 2019-09-12 20:10:14 1 3 2019-09-12 20:10:14 2 1 2019-09-12 20:20:14 1 2 2019-09-12 20:20:14 2 2 2019-09-12 20:25:14 1 2 2019-09-12 20:25:14 2 2 2019-09-12 20:30:14 1 2 2019-09-12 20:30:14 2 2 2019-09-12 20:40:14 1 2 2019-09-12 20:40:14 2 2 2019-09-12 20:45:14 1 3 2019-09-12 20:45:14 2 2 2019-09-12 21:30:14 1 3 2019-09-12 21:30:14 2 1 2019-09-12 21:55:14 1 5 2019-09-12 21:55:14 2 2 2019-09-12 22:15:14 1 4 2019-09-12 22:15:14 2 3 2019-09-12 22:20:14 1 4 2019-09-12 22:20:14 2 3 2019-09-12 22:25:14 1 4 2019-09-12 22:25:14 2 2 2019-09-12 22:30:14 1 4 2019-09-12 22:30:14 2 2 2019-09-12 22:35:14 1 4 2019-09-12 22:35:14 2 1 2019-09-12 22:40:14 1 3 2019-09-12 22:40:14 2 1 2019-09-12 22:45:14 1 5 2019-09-12 22:45:14 2 1 2019-09-12 22:50:14 1 6 2019-09-12 22:50:14 2 1 2019-09-12 22:55:14 1 3 2019-09-12 22:55:14 2 1 2019-09-12 23:00:14 1 4 2019-09-12 23:00:14 2 1 2019-09-12 23:05:14 1 4 2019-09-12 23:05:14 2 1 2019-09-12 23:10:14 1 3 2019-09-12 23:10:14 2 1 2019-09-12 23:15:14 1 3 2019-09-12 23:15:14 2 1 2019-09-12 23:20:14 1 3 2019-09-12 23:20:14 2 1 2019-09-12 23:25:14 1 3 2019-09-12 23:25:14 2 1 2019-09-12 23:30:14 1 3 2019-09-12 23:30:14 2 1 2019-09-12 23:40:14 1 4 2019-09-12 23:40:14 2 1 2019-09-12 23:45:14 1 4 2019-09-12 23:45:14 2 1 2019-09-12 23:55:14 1 3 2019-09-12 23:55:14 2 2 2019-09-13 00:00:14 1 3 2019-09-13 00:00:14 2 2 2019-09-13 00:05:14 1 3 2019-09-13 00:05:14 2 3 2019-09-13 00:15:14 1 3 2019-09-13 00:15:14 2 3 2019-09-13 00:45:14 1 4 2019-09-13 00:45:14 2 2 2019-09-13 01:05:14 1 4 2019-09-13 01:05:14 2 2 2019-09-13 01:25:14 1 2 2019-09-13 01:25:14 2 2 2019-09-13 01:45:14 1 3 2019-09-13 01:45:14 2 2 2019-09-13 01:50:14 1 3 2019-09-13 01:50:14 2 2 2019-09-13 02:05:14 1 2 2019-09-13 02:05:14 2 2 2019-09-13 02:10:14 1 2 2019-09-13 02:10:14 2 2 2019-09-13 02:15:14 1 1 2019-09-13 02:15:14 2 2 2019-09-13 02:20:14 1 1 2019-09-13 02:20:14 2 2 2019-09-13 02:25:14 1 1 2019-09-13 02:25:14 2 2 2019-09-13 02:30:14 1 1 2019-09-13 02:30:14 2 2 2019-09-13 02:40:14 1 2 2019-09-13 02:40:14 2 2 2019-09-13 02:45:14 1 2 2019-09-13 02:45:14 2 2 2019-09-13 02:50:14 1 1 2019-09-13 02:50:14 2 2 2019-09-13 02:55:14 1 1 2019-09-13 02:55:14 2 2 2019-09-13 03:10:14 1 1 2019-09-13 03:10:14 2 2 2019-09-13 03:30:14 1 1 2019-09-13 03:30:14 2 2 2019-09-13 04:05:14 1 1 2019-09-13 04:05:14 2 1 2019-09-13 04:20:14 1 1 2019-09-13 04:20:14 2 1 2019-09-13 04:25:14 1 1 2019-09-13 04:25:14 2 1 2019-09-13 04:35:14 1 1 2019-09-13 04:35:14 2 1 2019-09-13 04:50:14 1 1 2019-09-13 04:50:14 2 1 2019-09-13 05:00:14 1 1 2019-09-13 05:00:14 2 1 2019-09-13 05:10:14 1 2 2019-09-13 05:10:14 2 1 2019-09-13 05:25:14 1 1 2019-09-13 05:25:14 2 1 2019-09-13 05:30:14 1 1 2019-09-13 05:30:14 2 1 2019-09-13 05:50:14 1 1 2019-09-13 05:50:14 2 1 2019-09-13 05:55:14 1 1 2019-09-13 05:55:14 2 1 2019-09-13 06:10:14 1 1 2019-09-13 06:10:14 2 1 2019-09-13 06:35:14 1 2 2019-09-13 06:35:14 2 1 2019-09-13 06:40:14 1 2 2019-09-13 06:40:14 2 1 2019-09-13 06:45:14 1 2 2019-09-13 06:45:14 2 1 2019-09-13 06:50:14 1 2 2019-09-13 06:50:14 2 1 2019-09-13 06:55:14 1 2 2019-09-13 06:55:14 2 1 2019-09-13 07:05:14 1 1 2019-09-13 07:05:14 2 1 2019-09-13 07:30:14 1 1 2019-09-13 07:30:14 2 1 2019-09-13 07:35:14 1 1 2019-09-13 07:35:14 2 1 2019-09-13 08:05:14 1 1 2019-09-13 08:05:14 2 1 2019-09-13 08:10:14 1 1 2019-09-13 08:10:14 2 1 2019-09-13 08:20:14 1 1 2019-09-13 08:20:14 2 2 2019-09-13 09:05:14 1 2 2019-09-13 09:05:14 2 1 2019-09-13 09:15:14 1 2 2019-09-13 09:20:14 1 3 2019-09-13 09:25:14 1 3 2019-09-13 09:30:14 1 3 2019-09-13 09:50:14 1 5 2019-09-13 09:50:14 2 2 2019-09-13 09:55:14 1 4 2019-09-13 09:55:14 2 2 2019-09-13 10:35:14 1 2 2019-09-13 10:35:14 2 2 2019-09-13 10:40:14 1 2 2019-09-13 10:40:14 2 2 2019-09-13 10:50:14 1 4 2019-09-13 10:50:14 2 2 2019-09-13 11:05:14 1 5 2019-09-13 11:05:14 2 1 2019-09-13 11:15:14 1 4 2019-09-13 11:15:14 2 1 2019-09-13 11:25:14 1 3 2019-09-13 11:25:14 2 1 2019-09-13 11:50:14 1 4 2019-09-13 11:55:14 1 4 2019-09-13 12:05:14 1 6 2019-09-13 12:40:14 1 4 2019-09-13 13:00:14 1 5 2019-09-13 13:20:14 1 4 2019-09-13 13:40:14 1 2 2019-09-13 13:40:14 2 1 2019-09-13 13:45:14 1 2 2019-09-13 13:45:14 2 1 2019-09-13 13:50:14 1 2 2019-09-13 13:50:14 2 1 2019-09-13 13:55:14 1 1 2019-09-13 14:10:14 1 1 2019-09-13 14:10:14 2 1 2019-09-13 14:15:14 1 2 2019-09-13 14:15:14 2 1 2019-09-13 14:35:14 1 2 2019-09-13 14:35:14 2 1 2019-09-13 15:00:14 1 3 2019-09-13 15:00:14 2 1 2019-09-13 15:20:14 1 3 2019-09-13 15:20:14 2 2 2019-09-13 15:25:14 1 2 2019-09-13 15:25:14 2 2 2019-09-13 15:40:14 1 3 2019-09-13 15:40:14 2 2 2019-09-13 15:45:14 1 2 2019-09-13 15:45:14 2 2 2019-09-13 15:50:14 1 2 2019-09-13 15:50:14 2 2 2019-09-13 16:00:14 1 2 2019-09-13 16:00:14 2 1 2019-09-13 16:10:14 1 1 2019-09-13 16:10:14 2 1 2019-09-13 16:15:14 1 2 2019-09-13 16:15:14 2 1 2019-09-13 16:20:14 1 2 2019-09-13 16:20:14 2 1 2019-09-13 16:30:14 1 1 2019-09-13 16:30:14 2 1 2019-09-13 16:45:14 1 2 2019-09-13 16:55:14 1 2 2019-09-13 17:05:14 1 2 2019-09-13 17:20:14 1 2 2019-09-13 17:35:14 1 3 2019-09-13 18:00:14 1 4 2019-09-13 18:10:14 1 2 2019-09-13 18:15:14 1 2 2019-09-13 18:40:14 1 3 2019-09-13 18:40:14 2 1 2019-09-13 19:25:14 1 1 2019-09-13 19:35:14 1 4 2019-09-13 19:45:14 1 6 2019-09-13 19:50:14 1 6 2019-09-13 19:55:14 1 4 2019-09-13 19:55:14 2 1 2019-09-13 20:30:14 1 4 2019-09-13 20:30:14 2 1 2019-09-13 20:50:14 1 5 2019-09-13 20:50:14 2 1 2019-09-13 21:15:14 1 4 2019-09-13 21:15:14 2 1 2019-09-13 21:20:14 1 4 2019-09-13 21:30:14 1 5 2019-09-13 21:50:14 1 6 2019-09-13 21:55:14 1 3 2019-09-12 23:35:14 1 3 2019-09-12 23:35:14 2 2 2019-09-13 00:10:14 1 4 2019-09-13 00:10:14 2 3 2019-09-13 00:20:14 1 4 2019-09-13 00:20:14 2 3 2019-09-13 00:30:14 1 4 2019-09-13 00:30:14 2 2 2019-09-13 00:35:14 1 4 2019-09-13 00:35:14 2 2 2019-09-13 00:40:14 1 4 2019-09-13 00:40:14 2 2 2019-09-13 00:50:14 1 4 2019-09-13 00:50:14 2 2 2019-09-13 01:10:14 1 4 2019-09-13 01:10:14 2 2 2019-09-13 02:00:14 1 3 2019-09-13 02:00:14 2 2 2019-09-13 03:15:14 1 1 2019-09-13 03:15:14 2 2 2019-09-13 03:20:14 1 1 2019-09-13 03:20:14 2 2 2019-09-13 03:25:14 1 1 2019-09-13 03:25:14 2 2 2019-09-13 03:35:14 1 1 2019-09-13 03:35:14 2 1 2019-09-13 03:50:14 1 1 2019-09-13 03:50:14 2 1 2019-09-13 03:55:14 1 1 2019-09-13 03:55:14 2 1 2019-09-13 04:00:14 1 1 2019-09-13 04:00:14 2 1 2019-09-13 04:10:14 1 1 2019-09-13 04:10:14 2 1 2019-09-13 04:15:14 1 1 2019-09-13 04:15:14 2 1 2019-09-13 04:40:14 1 1 2019-09-13 04:40:14 2 1 2019-09-13 05:15:14 1 2 2019-09-13 05:15:14 2 1 2019-09-13 05:20:14 1 1 2019-09-13 05:20:14 2 1 2019-09-13 05:35:14 1 1 2019-09-13 05:35:14 2 1 2019-09-13 05:40:14 1 1 2019-09-13 05:40:14 2 1 2019-09-13 06:00:14 1 1 2019-09-13 06:00:14 2 1 2019-09-13 06:05:14 1 1 2019-09-13 06:05:14 2 1 2019-09-13 06:15:14 1 1 2019-09-13 06:15:14 2 1 2019-09-13 06:30:14 1 1 2019-09-13 06:30:14 2 1 2019-09-13 07:00:14 1 2 2019-09-13 07:00:14 2 1 2019-09-13 07:10:14 1 1 2019-09-13 07:10:14 2 1 2019-09-13 07:15:14 1 1 2019-09-13 07:15:14 2 1 2019-09-13 07:40:14 1 1 2019-09-13 07:40:14 2 1 2019-09-13 07:45:14 1 1 2019-09-13 07:45:14 2 1 2019-09-13 07:50:14 1 1 2019-09-13 07:50:14 2 1 2019-09-13 08:15:14 1 1 2019-09-13 08:15:14 2 1 2019-09-13 08:25:14 1 1 2019-09-13 08:25:14 2 2 2019-09-13 08:30:14 1 1 2019-09-13 08:30:14 2 1 2019-09-13 08:40:14 1 2 2019-09-13 08:40:14 2 1 2019-09-13 08:55:14 1 2 2019-09-13 08:55:14 2 1 2019-09-13 09:10:14 1 2 2019-09-13 09:10:14 2 1 2019-09-13 09:35:14 1 4 2019-09-13 09:35:14 2 1 2019-09-13 10:00:14 1 4 2019-09-13 10:00:14 2 2 2019-09-13 10:10:14 1 5 2019-09-13 10:10:14 2 1 2019-09-13 10:15:14 1 4 2019-09-13 10:15:14 2 1 2019-09-13 10:25:14 1 3 2019-09-13 10:25:14 2 2 2019-09-13 10:45:14 1 2 2019-09-13 10:45:14 2 2 2019-09-13 11:00:14 1 4 2019-09-13 11:00:14 2 1 2019-09-13 11:10:14 1 4 2019-09-13 11:10:14 2 1 2019-09-13 11:20:14 1 3 2019-09-13 11:20:14 2 1 2019-09-13 11:40:14 1 3 2019-09-13 11:45:14 1 4 2019-09-13 12:00:14 1 5 2019-09-13 12:15:14 1 5 2019-09-13 12:25:14 1 4 2019-09-13 12:25:14 2 1 2019-09-13 12:30:14 1 5 2019-09-13 12:45:14 1 5 2019-09-13 13:35:14 1 1 2019-09-13 13:35:14 2 1 2019-09-13 14:00:14 1 1 2019-09-13 14:25:14 1 1 2019-09-13 14:25:14 2 1 2019-09-13 14:40:14 1 1 2019-09-13 14:40:14 2 1 2019-09-13 14:50:14 1 3 2019-09-13 14:50:14 2 1 2019-09-13 15:05:14 1 3 2019-09-13 15:05:14 2 1 2019-09-13 15:10:14 1 4 2019-09-13 15:10:14 2 1 2019-09-13 15:55:14 1 2 2019-09-13 15:55:14 2 2 2019-09-13 16:25:14 1 2 2019-09-13 16:25:14 2 1 2019-09-13 16:35:14 1 2 2019-09-13 16:35:14 2 1 2019-09-13 16:40:14 1 2 2019-09-13 16:50:14 1 2 2019-09-13 17:10:14 1 2 2019-09-13 17:15:14 1 2 2019-09-13 17:30:14 1 2 2019-09-13 17:40:14 1 4 2019-09-13 17:55:14 1 4 2019-09-13 18:05:14 1 3 2019-09-13 18:20:14 1 1 2019-09-13 18:25:14 1 1 2019-09-13 18:30:14 1 2 2019-09-13 18:35:14 1 3 2019-09-13 18:45:14 1 3 2019-09-13 19:05:14 1 2 2019-09-13 19:15:14 1 1 2019-09-13 19:20:14 1 2 2019-09-13 19:40:14 1 4 2019-09-13 20:00:14 1 4 2019-09-13 20:00:14 2 1 2019-09-13 20:15:14 1 2 2019-09-13 20:15:14 2 1 2019-09-13 20:20:14 1 4 2019-09-13 20:20:14 2 1 2019-09-13 21:25:14 1 4 2019-09-13 21:55:14 2 1 2019-09-13 22:00:14 1 3 2019-09-13 22:00:14 2 1 2019-09-13 22:10:14 1 3 2019-09-13 22:15:14 1 4 2019-09-13 22:35:14 1 4 2019-09-13 22:40:14 1 5 2019-09-13 22:40:14 2 1 2019-09-13 22:45:14 1 6 2019-09-13 22:45:14 2 1 2019-09-13 22:50:14 1 4 2019-09-13 22:50:14 2 1 2019-09-13 22:55:14 1 4 2019-09-13 22:55:14 2 1 2019-09-13 23:00:14 1 4 2019-09-13 23:00:14 2 1 2019-09-13 23:05:14 1 6 2019-09-13 23:05:14 2 1 2019-09-13 23:10:14 1 5 2019-09-13 23:10:14 2 1 2019-09-13 23:15:14 1 4 2019-09-13 23:15:14 2 1 2019-09-13 23:20:14 1 4 2019-09-13 23:20:14 2 1 2019-09-13 23:30:14 1 5 2019-09-13 23:30:14 2 1 2019-09-13 23:40:14 1 5 2019-09-13 23:40:14 2 1 2019-09-13 23:45:14 1 5 2019-09-13 23:45:14 2 2 2019-09-13 23:50:14 1 5 2019-09-13 23:50:14 2 2 2019-09-14 00:00:14 1 4 2019-09-14 00:00:14 2 2 2019-09-14 00:10:14 1 5 2019-09-14 00:10:14 2 2 2019-09-14 00:15:14 1 7 2019-09-14 00:15:14 2 2 2019-09-12 23:50:14 1 3 2019-09-12 23:50:14 2 1 2019-09-13 00:25:14 1 3 2019-09-13 00:25:14 2 2 2019-09-13 00:55:14 1 4 2019-09-13 00:55:14 2 1 2019-09-13 01:00:14 1 4 2019-09-13 01:00:14 2 1 2019-09-13 01:15:14 1 3 2019-09-13 01:15:14 2 2 2019-09-13 01:20:14 1 2 2019-09-13 01:20:14 2 2 2019-09-13 01:30:14 1 2 2019-09-13 01:30:14 2 2 2019-09-13 01:35:14 1 2 2019-09-13 01:35:14 2 2 2019-09-13 01:40:14 1 3 2019-09-13 01:40:14 2 2 2019-09-13 01:55:14 1 3 2019-09-13 01:55:14 2 2 2019-09-13 02:35:14 1 2 2019-09-13 02:35:14 2 2 2019-09-13 03:00:14 1 1 2019-09-13 03:00:14 2 2 2019-09-13 03:05:14 1 1 2019-09-13 03:05:14 2 2 2019-09-13 03:40:14 1 1 2019-09-13 03:40:14 2 1 2019-09-13 03:45:14 1 1 2019-09-13 03:45:14 2 1 2019-09-13 04:30:14 1 1 2019-09-13 04:30:14 2 1 2019-09-13 04:45:14 1 1 2019-09-13 04:45:14 2 1 2019-09-13 04:55:14 1 1 2019-09-13 04:55:14 2 1 2019-09-13 05:05:14 1 2 2019-09-13 05:05:14 2 1 2019-09-13 05:45:14 1 1 2019-09-13 05:45:14 2 1 2019-09-13 06:20:14 1 1 2019-09-13 06:20:14 2 1 2019-09-13 06:25:14 1 1 2019-09-13 06:25:14 2 1 2019-09-13 07:20:14 1 1 2019-09-13 07:20:14 2 1 2019-09-13 07:25:14 1 1 2019-09-13 07:25:14 2 1 2019-09-13 07:55:14 1 1 2019-09-13 07:55:14 2 1 2019-09-13 08:00:14 1 1 2019-09-13 08:00:14 2 1 2019-09-13 08:35:14 1 1 2019-09-13 08:35:14 2 1 2019-09-13 08:45:14 1 2 2019-09-13 08:45:14 2 1 2019-09-13 08:50:14 1 2 2019-09-13 08:50:14 2 1 2019-09-13 09:00:14 1 2 2019-09-13 09:00:14 2 1 2019-09-13 09:40:14 1 6 2019-09-13 09:40:14 2 1 2019-09-13 09:45:14 1 6 2019-09-13 09:45:14 2 2 2019-09-13 10:05:14 1 4 2019-09-13 10:05:14 2 2 2019-09-13 10:20:14 1 4 2019-09-13 10:20:14 2 1 2019-09-13 10:30:14 1 3 2019-09-13 10:30:14 2 2 2019-09-13 10:55:14 1 3 2019-09-13 10:55:14 2 2 2019-09-13 11:30:14 1 5 2019-09-13 11:30:14 2 1 2019-09-13 11:35:14 1 4 2019-09-13 11:35:14 2 1 2019-09-13 12:10:14 1 7 2019-09-13 12:20:14 1 4 2019-09-13 12:20:14 2 1 2019-09-13 12:35:14 1 5 2019-09-13 12:50:14 1 4 2019-09-13 12:55:14 1 5 2019-09-13 13:05:14 1 3 2019-09-13 13:10:14 1 2 2019-09-13 13:15:14 1 2 2019-09-13 13:25:14 1 4 2019-09-13 13:30:14 1 1 2019-09-13 13:30:14 2 1 2019-09-13 14:05:14 1 2 2019-09-13 14:05:14 2 1 2019-09-13 14:20:14 1 2 2019-09-13 14:20:14 2 1 2019-09-13 14:30:14 1 1 2019-09-13 14:30:14 2 1 2019-09-13 14:45:14 1 2 2019-09-13 14:45:14 2 1 2019-09-13 14:55:14 1 3 2019-09-13 14:55:14 2 1 2019-09-13 15:15:14 1 3 2019-09-13 15:15:14 2 2 2019-09-13 15:30:14 1 3 2019-09-13 15:30:14 2 2 2019-09-13 15:35:14 1 3 2019-09-13 15:35:14 2 3 2019-09-13 16:05:14 1 2 2019-09-13 16:05:14 2 1 2019-09-13 17:00:14 1 2 2019-09-13 17:25:14 1 3 2019-09-13 17:45:14 1 3 2019-09-13 17:50:14 1 3 2019-09-13 18:50:14 1 2 2019-09-13 18:55:14 1 2 2019-09-13 18:55:14 2 1 2019-09-13 19:00:14 1 4 2019-09-13 19:10:14 1 3 2019-09-13 19:30:14 1 2 2019-09-13 20:05:14 1 4 2019-09-13 20:05:14 2 1 2019-09-13 20:10:14 1 4 2019-09-13 20:10:14 2 1 2019-09-13 20:25:14 1 4 2019-09-13 20:25:14 2 1 2019-09-13 20:35:14 1 4 2019-09-13 20:35:14 2 1 2019-09-13 20:40:14 1 5 2019-09-13 20:40:14 2 1 2019-09-13 20:45:14 1 5 2019-09-13 20:45:14 2 1 2019-09-13 20:55:14 1 4 2019-09-13 20:55:14 2 1 2019-09-13 21:00:14 1 4 2019-09-13 21:00:14 2 1 2019-09-13 21:05:14 1 4 2019-09-13 21:05:14 2 1 2019-09-13 21:10:14 1 4 2019-09-13 21:10:14 2 1 2019-09-13 21:35:14 1 5 2019-09-13 21:40:14 1 6 2019-09-13 21:45:14 1 5 2019-09-13 22:05:14 1 3 2019-09-13 22:20:14 1 5 2019-09-13 22:20:14 2 1 2019-09-13 22:25:14 1 4 2019-09-13 22:25:14 2 2 2019-09-13 22:30:14 1 4 2019-09-13 23:25:14 1 4 2019-09-13 23:35:14 1 5 2019-09-13 23:35:14 2 1 2019-09-13 23:55:14 1 5 2019-09-13 23:55:14 2 2 2019-09-14 00:05:14 1 5 2019-09-14 00:05:14 2 2 2019-09-14 00:20:14 1 7 2019-09-14 00:20:14 2 2 2019-09-14 00:25:14 1 7 2019-09-14 00:25:14 2 1 2019-09-14 00:30:14 1 6 2019-09-14 00:30:14 2 1 2019-09-14 00:35:14 1 5 2019-09-14 00:35:14 2 1 2019-09-14 00:40:14 1 5 2019-09-14 00:40:14 2 1 2019-09-14 00:45:14 1 6 2019-09-14 00:45:14 2 1 2019-09-14 00:50:14 1 4 2019-09-14 00:55:14 1 4 2019-09-14 01:00:14 1 5 2019-09-14 01:05:14 1 4 2019-09-14 01:10:14 1 4 2019-09-14 01:15:14 1 4 2019-09-14 01:20:14 1 3 2019-09-14 01:25:14 1 4 2019-09-14 01:30:14 1 4 2019-09-14 01:35:14 1 4 2019-09-14 01:40:14 1 3 2019-09-14 01:45:14 1 3 2019-09-14 01:50:14 1 3 2019-09-14 01:55:14 1 3 2019-09-14 01:55:14 2 1 2019-09-14 02:00:14 1 3 2019-09-14 02:00:14 2 1 2019-09-14 02:05:14 1 3 2019-09-14 02:05:14 2 1 2019-09-14 02:10:14 1 3 2019-09-14 02:10:14 2 1 2019-09-14 02:15:14 1 3 2019-09-14 02:15:14 2 1 2019-09-14 02:20:14 1 3 2019-09-14 02:20:14 2 1 2019-09-14 02:35:14 1 3 2019-09-14 02:40:14 1 4 2019-09-14 03:30:14 1 2 2019-09-14 03:30:14 2 1 2019-09-14 03:50:14 1 2 2019-09-14 04:05:14 1 1 2019-09-14 04:15:14 1 1 2019-09-14 04:25:14 1 1 2019-09-14 04:25:14 2 1 2019-09-14 04:30:14 1 1 2019-09-14 04:30:14 2 1 2019-09-14 04:50:14 1 2 2019-09-14 05:15:14 1 2 2019-09-14 05:20:14 1 2 2019-09-14 05:35:14 1 2 2019-09-14 05:40:14 1 2 2019-09-14 06:00:14 1 2 2019-09-14 06:05:14 1 2 2019-09-14 06:10:14 1 2 2019-09-14 06:45:14 1 3 2019-09-14 06:50:14 1 3 2019-09-14 06:55:14 1 3 2019-09-14 07:00:14 1 3 2019-09-14 07:25:14 1 3 2019-09-14 07:35:14 1 1 2019-09-14 07:50:14 1 2 2019-09-14 08:00:14 1 3 2019-09-14 08:00:14 2 1 2019-09-14 08:20:14 1 4 2019-09-14 08:20:14 2 1 2019-09-14 09:20:14 1 3 2019-09-14 09:20:14 2 1 2019-09-14 09:35:14 1 4 2019-09-14 09:35:14 2 1 2019-09-14 09:40:14 1 4 2019-09-14 09:40:14 2 1 2019-09-14 09:55:14 1 4 2019-09-14 09:55:14 2 1 2019-09-14 10:00:14 1 4 2019-09-14 10:00:14 2 1 2019-09-14 10:15:14 1 4 2019-09-14 10:15:14 2 1 2019-09-14 10:30:14 1 3 2019-09-14 10:30:14 2 1 2019-09-14 10:45:14 1 4 2019-09-14 10:45:14 2 1 2019-09-14 10:50:14 1 5 2019-09-14 10:50:14 2 1 2019-09-14 10:55:14 1 4 2019-09-14 10:55:14 2 1 2019-09-14 11:05:14 1 4 2019-09-14 11:05:14 2 1 2019-09-14 11:10:14 1 4 2019-09-14 11:20:14 1 4 2019-09-14 11:20:14 2 1 2019-09-14 11:25:14 1 4 2019-09-14 11:30:14 1 5 2019-09-14 11:30:14 2 1 2019-09-14 11:45:14 1 7 2019-09-14 12:20:14 1 5 2019-09-14 12:45:14 1 6 2019-09-14 13:20:14 1 4 2019-09-14 13:20:14 2 1 2019-09-14 13:25:14 1 6 2019-09-14 13:25:14 2 1 2019-09-14 13:40:14 1 6 2019-09-14 13:40:14 2 1 2019-09-14 13:55:14 1 7 2019-09-14 14:25:14 1 7 2019-09-14 14:30:14 1 6 2019-09-14 14:40:14 1 5 2019-09-14 14:40:14 2 1 2019-09-14 14:45:14 1 5 2019-09-14 14:45:14 2 2 2019-09-14 14:50:14 1 5 2019-09-14 14:50:14 2 2 2019-09-14 15:05:14 1 7 2019-09-14 15:05:14 2 2 2019-09-14 15:20:14 1 5 2019-09-14 15:20:14 2 1 2019-09-14 15:25:14 1 6 2019-09-14 15:25:14 2 1 2019-09-14 15:35:14 1 4 2019-09-14 15:35:14 2 1 2019-09-14 15:50:14 1 4 2019-09-14 15:50:14 2 1 2019-09-14 15:55:14 1 4 2019-09-14 16:00:14 1 4 2019-09-14 16:25:14 1 5 2019-09-14 16:25:14 2 1 2019-09-14 16:30:14 1 4 2019-09-14 16:30:14 2 1 2019-09-14 16:50:14 1 4 2019-09-14 16:55:14 1 3 2019-09-14 17:00:14 1 3 2019-09-14 17:10:14 1 4 2019-09-14 17:10:14 2 1 2019-09-14 17:30:14 1 4 2019-09-14 17:30:14 2 1 2019-09-14 17:45:14 1 3 2019-09-14 18:00:14 1 3 2019-09-14 19:05:14 1 4 2019-09-14 19:10:14 1 2 2019-09-14 19:20:14 1 2 2019-09-14 19:20:14 2 1 2019-09-14 19:35:14 1 4 2019-09-14 19:40:14 1 5 2019-09-14 19:45:14 1 5 2019-09-14 20:45:14 1 4 2019-09-14 20:55:14 1 5 2019-09-14 21:00:14 1 3 2019-09-14 21:10:14 1 4 2019-09-14 21:15:14 1 3 2019-09-14 21:25:14 1 4 2019-09-14 22:00:14 1 4 2019-09-14 22:00:14 2 1 2019-09-14 22:10:14 1 3 2019-09-14 22:10:14 2 1 2019-09-14 23:00:14 1 6 2019-09-14 23:00:14 2 1 2019-09-14 23:10:14 1 7 2019-09-14 23:10:14 2 1 2019-09-14 23:30:14 1 7 2019-09-15 00:10:14 1 6 2019-09-15 00:15:14 1 5 2019-09-15 00:20:14 1 5 2019-09-15 00:35:14 1 6 2019-09-15 01:20:14 1 6 2019-09-15 01:55:14 1 5 2019-09-15 02:00:14 1 5 2019-09-15 02:05:14 1 5 2019-09-15 02:10:14 1 5 2019-09-15 02:15:14 1 5 2019-09-15 02:20:14 1 5 2019-09-15 02:25:14 1 5 2019-09-15 02:30:14 1 5 2019-09-15 04:05:14 1 5 2019-09-15 04:10:14 1 5 2019-09-15 04:15:14 1 5 2019-09-15 04:20:14 1 5 2019-09-15 04:25:14 1 5 2019-09-15 04:30:14 1 5 2019-09-15 05:00:14 1 5 2019-09-15 05:05:14 1 5 2019-09-15 05:10:14 1 5 2019-09-15 05:15:14 1 5 2019-09-15 05:20:14 1 5 2019-09-15 05:25:14 1 5 2019-09-15 05:30:14 1 5 2019-09-15 06:05:14 1 4 2019-09-15 06:10:14 1 4 2019-09-15 06:15:14 1 4 2019-09-15 06:20:14 1 4 2019-09-15 06:40:14 1 3 2019-09-15 06:45:14 1 3 2019-09-15 06:50:14 1 3 2019-09-15 06:55:14 1 3 2019-09-15 07:35:14 1 2 2019-09-15 07:40:14 1 2 2019-09-15 07:45:14 1 2 2019-09-15 07:50:14 1 2 2019-09-15 08:40:14 1 3 2019-09-15 08:55:14 1 3 2019-09-15 09:15:14 1 4 2019-09-15 09:40:14 1 4 2019-09-15 09:55:14 1 4 2019-09-15 09:55:14 2 1 2019-09-15 10:15:14 1 5 2019-09-15 10:15:14 2 1 2019-09-15 10:20:14 1 5 2019-09-15 10:20:14 2 1 2019-09-15 10:35:14 1 6 2019-09-15 10:40:14 1 6 2019-09-15 10:50:14 1 6 2019-09-15 10:55:14 1 6 2019-09-15 11:00:14 1 6 2019-09-15 11:20:14 1 3 2019-09-15 11:25:14 1 4 2019-09-15 11:40:14 1 4 2019-09-15 11:55:14 1 4 2019-09-15 12:00:14 1 5 2019-09-14 02:25:14 1 3 2019-09-14 02:25:14 2 1 2019-09-14 02:50:14 1 4 2019-09-14 02:50:14 2 1 2019-09-14 02:55:14 1 3 2019-09-14 02:55:14 2 1 2019-09-14 03:05:15 1 3 2019-09-14 03:05:15 2 1 2019-09-14 03:10:14 1 3 2019-09-14 03:10:14 2 1 2019-09-14 03:15:14 1 3 2019-09-14 03:15:14 2 1 2019-09-14 03:45:14 1 2 2019-09-14 04:10:14 1 1 2019-09-14 04:35:14 1 1 2019-09-14 04:35:14 2 1 2019-09-14 04:40:14 1 1 2019-09-14 04:40:14 2 1 2019-09-14 04:45:14 1 1 2019-09-14 04:55:14 1 2 2019-09-14 05:00:14 1 2 2019-09-14 05:05:14 1 2 2019-09-14 05:10:14 1 2 2019-09-14 06:35:14 1 3 2019-09-14 07:05:14 1 3 2019-09-14 07:10:14 1 3 2019-09-14 07:45:14 1 2 2019-09-14 07:55:14 1 2 2019-09-14 08:05:14 1 4 2019-09-14 08:05:14 2 2 2019-09-14 08:10:14 1 2 2019-09-14 08:10:14 2 1 2019-09-14 08:15:14 1 3 2019-09-14 08:15:14 2 1 2019-09-14 08:25:14 1 3 2019-09-14 08:25:14 2 1 2019-09-14 08:40:14 1 3 2019-09-14 08:40:14 2 2 2019-09-14 09:05:14 1 2 2019-09-14 09:05:14 2 1 2019-09-14 09:10:14 1 2 2019-09-14 09:10:14 2 1 2019-09-14 09:25:14 1 3 2019-09-14 09:25:14 2 2 2019-09-14 09:50:14 1 4 2019-09-14 09:50:14 2 1 2019-09-14 10:20:14 1 5 2019-09-14 10:20:14 2 1 2019-09-14 10:25:14 1 5 2019-09-14 10:25:14 2 1 2019-09-14 10:40:14 1 4 2019-09-14 10:40:14 2 1 2019-09-14 11:15:14 1 5 2019-09-14 12:10:14 1 6 2019-09-14 12:15:14 1 7 2019-09-14 12:30:14 1 6 2019-09-14 12:35:14 1 5 2019-09-14 13:00:14 1 6 2019-09-14 13:00:14 2 1 2019-09-14 13:05:14 1 7 2019-09-14 13:05:14 2 1 2019-09-14 13:10:14 1 7 2019-09-14 13:10:14 2 1 2019-09-14 13:15:14 1 7 2019-09-14 13:15:14 2 1 2019-09-14 13:30:14 1 7 2019-09-14 13:30:14 2 1 2019-09-14 13:35:14 1 6 2019-09-14 13:35:14 2 1 2019-09-14 13:50:14 1 6 2019-09-14 14:00:14 1 7 2019-09-14 14:00:14 2 1 2019-09-14 14:05:14 1 7 2019-09-14 14:05:14 2 1 2019-09-14 14:15:14 1 8 2019-09-14 14:35:14 1 5 2019-09-14 15:00:14 1 6 2019-09-14 15:00:14 2 2 2019-09-14 15:15:14 1 6 2019-09-14 15:15:14 2 2 2019-09-14 15:30:14 1 6 2019-09-14 15:30:14 2 1 2019-09-14 15:40:14 1 4 2019-09-14 15:40:14 2 1 2019-09-14 15:45:14 1 5 2019-09-14 15:45:14 2 1 2019-09-14 16:05:14 1 3 2019-09-14 16:10:14 1 3 2019-09-14 16:10:14 2 1 2019-09-14 16:35:14 1 4 2019-09-14 16:35:14 2 1 2019-09-14 17:35:14 1 4 2019-09-14 17:50:14 1 3 2019-09-14 17:55:14 1 4 2019-09-14 18:30:14 1 3 2019-09-14 18:30:14 2 1 2019-09-14 18:35:14 1 3 2019-09-14 18:35:14 2 1 2019-09-14 18:45:14 1 4 2019-09-14 18:55:14 1 4 2019-09-14 19:00:14 1 4 2019-09-14 19:30:14 1 3 2019-09-14 19:50:14 1 5 2019-09-14 19:55:14 1 4 2019-09-14 20:15:14 1 3 2019-09-14 20:20:14 1 3 2019-09-14 20:25:14 1 3 2019-09-14 20:30:14 1 4 2019-09-14 20:40:14 1 5 2019-09-14 20:50:14 1 4 2019-09-14 21:05:14 1 2 2019-09-14 21:30:14 1 4 2019-09-14 21:35:14 1 4 2019-09-14 21:40:14 1 4 2019-09-14 21:45:14 1 4 2019-09-14 21:50:14 1 4 2019-09-14 21:50:14 2 1 2019-09-14 21:55:14 1 5 2019-09-14 21:55:14 2 1 2019-09-14 22:25:14 1 3 2019-09-14 22:25:14 2 2 2019-09-14 22:30:14 1 4 2019-09-14 22:30:14 2 2 2019-09-14 22:40:14 1 4 2019-09-14 22:40:14 2 2 2019-09-14 22:45:14 1 6 2019-09-14 22:45:14 2 2 2019-09-14 22:55:14 1 5 2019-09-14 22:55:14 2 1 2019-09-14 23:15:14 1 7 2019-09-14 23:15:14 2 2 2019-09-14 23:25:14 1 8 2019-09-14 23:40:14 1 8 2019-09-14 23:45:14 1 5 2019-09-14 23:50:14 1 6 2019-09-15 00:00:14 1 5 2019-09-15 00:25:14 1 6 2019-09-15 00:30:14 1 6 2019-09-15 00:45:14 1 5 2019-09-15 00:50:14 1 5 2019-09-15 01:35:14 1 5 2019-09-15 01:50:14 1 6 2019-09-15 02:35:14 1 5 2019-09-15 02:40:14 1 5 2019-09-15 02:45:14 1 5 2019-09-15 02:50:14 1 5 2019-09-15 02:55:14 1 5 2019-09-15 04:35:14 1 5 2019-09-15 05:35:14 1 5 2019-09-15 05:40:14 1 5 2019-09-15 05:45:14 1 5 2019-09-15 05:50:14 1 5 2019-09-15 05:55:14 1 5 2019-09-15 06:00:14 1 5 2019-09-15 07:30:14 1 3 2019-09-15 08:00:14 1 2 2019-09-15 08:05:14 1 2 2019-09-15 08:10:14 1 2 2019-09-15 08:15:14 1 2 2019-09-15 08:20:14 1 2 2019-09-15 08:30:14 1 3 2019-09-15 08:35:14 1 3 2019-09-15 08:45:14 1 1 2019-09-15 09:20:14 1 4 2019-09-15 09:25:14 1 5 2019-09-15 09:35:14 1 5 2019-09-15 10:05:14 1 5 2019-09-15 10:05:14 2 1 2019-09-15 10:10:14 1 4 2019-09-15 10:10:14 2 1 2019-09-15 10:25:14 1 5 2019-09-15 10:25:14 2 1 2019-09-15 10:30:14 1 3 2019-09-15 10:30:14 2 2 2019-09-15 11:10:14 1 6 2019-09-15 11:30:14 1 4 2019-09-15 11:35:14 1 4 2019-09-15 11:45:14 1 4 2019-09-15 11:50:14 1 3 2019-09-15 12:15:14 1 6 2019-09-15 12:20:14 1 6 2019-09-15 12:25:14 1 5 2019-09-15 12:35:14 1 5 2019-09-15 12:40:14 1 6 2019-09-15 12:45:14 1 4 2019-09-14 02:30:14 1 3 2019-09-14 02:45:14 1 3 2019-09-14 03:00:14 1 3 2019-09-14 03:00:14 2 1 2019-09-14 03:20:14 1 3 2019-09-14 03:20:14 2 1 2019-09-14 03:25:14 1 3 2019-09-14 03:25:14 2 1 2019-09-14 03:35:14 1 2 2019-09-14 03:35:14 2 1 2019-09-14 03:40:14 1 2 2019-09-14 03:40:14 2 1 2019-09-14 03:55:14 1 1 2019-09-14 04:00:14 1 1 2019-09-14 04:20:14 1 1 2019-09-14 04:20:14 2 1 2019-09-14 05:25:14 1 2 2019-09-14 05:30:14 1 2 2019-09-14 05:45:14 1 3 2019-09-14 05:50:14 1 2 2019-09-14 05:55:14 1 2 2019-09-14 06:15:14 1 3 2019-09-14 06:20:14 1 3 2019-09-14 06:25:14 1 3 2019-09-14 06:30:14 1 2 2019-09-14 06:40:14 1 3 2019-09-14 07:15:14 1 2 2019-09-14 07:20:14 1 2 2019-09-14 07:30:14 1 2 2019-09-14 07:40:14 1 2 2019-09-14 08:30:14 1 3 2019-09-14 08:30:14 2 1 2019-09-14 08:35:14 1 3 2019-09-14 08:35:14 2 1 2019-09-14 08:45:14 1 3 2019-09-14 08:45:14 2 1 2019-09-14 08:50:14 1 3 2019-09-14 08:50:14 2 1 2019-09-14 08:55:14 1 2 2019-09-14 08:55:14 2 1 2019-09-14 09:00:14 1 2 2019-09-14 09:00:14 2 1 2019-09-14 09:15:14 1 2 2019-09-14 09:15:14 2 1 2019-09-14 09:30:14 1 4 2019-09-14 09:30:14 2 1 2019-09-14 09:45:14 1 4 2019-09-14 09:45:14 2 1 2019-09-14 10:05:14 1 4 2019-09-14 10:10:14 1 4 2019-09-14 10:10:14 2 1 2019-09-14 10:35:14 1 4 2019-09-14 10:35:14 2 1 2019-09-14 11:00:14 1 4 2019-09-14 11:00:14 2 1 2019-09-14 11:35:14 1 4 2019-09-14 11:35:14 2 1 2019-09-14 11:40:14 1 5 2019-09-14 11:50:14 1 5 2019-09-14 11:55:14 1 4 2019-09-14 12:00:14 1 5 2019-09-14 12:05:14 1 6 2019-09-14 12:25:14 1 5 2019-09-14 12:40:14 1 7 2019-09-14 12:50:14 1 7 2019-09-14 12:50:14 2 1 2019-09-14 12:55:14 1 4 2019-09-14 12:55:14 2 2 2019-09-14 13:45:14 1 6 2019-09-14 14:10:14 1 6 2019-09-14 14:20:14 1 9 2019-09-14 14:55:14 1 6 2019-09-14 14:55:14 2 2 2019-09-14 15:10:14 1 7 2019-09-14 15:10:14 2 2 2019-09-14 16:15:14 1 4 2019-09-14 16:15:14 2 1 2019-09-14 16:20:14 1 5 2019-09-14 16:20:14 2 1 2019-09-14 16:40:14 1 4 2019-09-14 16:40:14 2 1 2019-09-14 16:45:14 1 3 2019-09-14 16:45:14 2 1 2019-09-14 17:05:14 1 4 2019-09-14 17:15:14 1 4 2019-09-14 17:15:14 2 2 2019-09-14 17:20:14 1 5 2019-09-14 17:20:14 2 2 2019-09-14 17:25:14 1 4 2019-09-14 17:25:14 2 2 2019-09-14 17:40:14 1 5 2019-09-14 18:05:14 1 4 2019-09-14 18:05:14 2 1 2019-09-14 18:10:14 1 2 2019-09-14 18:10:14 2 1 2019-09-14 18:15:14 1 3 2019-09-14 18:20:14 1 4 2019-09-14 18:25:14 1 4 2019-09-14 18:40:14 1 3 2019-09-14 18:40:14 2 1 2019-09-14 18:50:14 1 4 2019-09-14 19:15:14 1 3 2019-09-14 19:25:14 1 3 2019-09-14 20:00:14 1 4 2019-09-14 20:05:14 1 3 2019-09-14 20:10:14 1 4 2019-09-14 20:10:14 2 1 2019-09-14 20:35:14 1 4 2019-09-14 21:20:14 1 4 2019-09-14 22:05:14 1 4 2019-09-14 22:05:14 2 2 2019-09-14 22:15:14 1 4 2019-09-14 22:15:14 2 1 2019-09-14 22:20:14 1 3 2019-09-14 22:20:14 2 1 2019-09-14 22:35:14 1 4 2019-09-14 22:35:14 2 3 2019-09-14 22:50:14 1 6 2019-09-14 22:50:14 2 1 2019-09-14 23:05:14 1 6 2019-09-14 23:05:14 2 1 2019-09-14 23:20:14 1 7 2019-09-14 23:20:14 2 1 2019-09-14 23:35:14 1 8 2019-09-14 23:55:14 1 5 2019-09-15 00:05:14 1 5 2019-09-15 00:40:14 1 6 2019-09-15 00:55:14 1 5 2019-09-15 01:00:14 1 5 2019-09-15 01:05:14 1 5 2019-09-15 01:10:14 1 5 2019-09-15 01:15:14 1 5 2019-09-15 01:25:14 1 5 2019-09-15 01:30:14 1 5 2019-09-15 01:40:14 1 5 2019-09-15 01:45:14 1 5 2019-09-15 03:00:14 1 5 2019-09-15 03:05:14 1 5 2019-09-15 03:10:14 1 5 2019-09-15 03:15:14 1 5 2019-09-15 03:20:14 1 5 2019-09-15 03:25:14 1 5 2019-09-15 03:30:14 1 5 2019-09-15 03:35:14 1 5 2019-09-15 03:40:14 1 5 2019-09-15 03:45:14 1 5 2019-09-15 03:50:14 1 5 2019-09-15 03:55:14 1 5 2019-09-15 04:00:14 1 5 2019-09-15 04:40:14 1 5 2019-09-15 04:45:14 1 5 2019-09-15 04:50:14 1 5 2019-09-15 04:55:14 1 5 2019-09-15 06:25:14 1 3 2019-09-15 06:30:14 1 3 2019-09-15 06:35:14 1 3 2019-09-15 07:00:14 1 2 2019-09-15 07:05:14 1 2 2019-09-15 07:10:14 1 2 2019-09-15 07:15:14 1 2 2019-09-15 07:20:14 1 2 2019-09-15 07:25:14 1 2 2019-09-15 07:55:14 1 3 2019-09-15 08:25:14 1 2 2019-09-15 08:50:14 1 3 2019-09-15 09:00:14 1 4 2019-09-15 09:05:14 1 4 2019-09-15 09:10:14 1 4 2019-09-15 09:30:14 1 5 2019-09-15 09:45:14 1 4 2019-09-15 09:50:14 1 4 2019-09-15 09:50:14 2 1 2019-09-15 10:00:14 1 3 2019-09-15 10:00:14 2 1 2019-09-15 10:45:14 1 7 2019-09-15 11:05:14 1 6 2019-09-15 11:15:14 1 5 2019-09-15 12:05:14 1 4 2019-09-15 12:10:14 1 5 2019-09-15 12:30:14 1 5 2019-09-15 12:50:14 1 6 2019-09-15 12:55:14 1 5 2019-09-15 13:00:14 1 5 2019-09-15 13:05:14 1 6 2019-09-15 13:10:14 1 6 2019-09-15 13:15:14 1 7 2019-09-15 13:25:14 1 5 2019-09-15 13:30:14 1 7 2019-09-15 13:35:14 1 7 2019-09-15 13:45:14 1 5 2019-09-15 13:50:14 1 6 2019-09-15 14:10:14 1 6 2019-09-15 14:15:14 1 7 2019-09-15 14:20:14 1 5 2019-09-15 14:25:14 1 8 2019-09-15 14:45:14 1 7 2019-09-15 14:55:14 1 8 2019-09-15 15:00:14 1 8 2019-09-15 15:20:14 1 7 2019-09-15 15:35:14 1 7 2019-09-15 16:00:14 1 6 2019-09-15 16:10:14 1 7 2019-09-15 16:25:14 1 6 2019-09-15 16:25:14 2 1 2019-09-15 16:40:14 1 8 2019-09-15 16:40:14 2 1 2019-09-15 16:45:14 1 8 2019-09-15 16:45:14 2 1 2019-09-15 16:55:14 1 9 2019-09-15 16:55:14 2 1 2019-09-15 17:10:14 1 8 2019-09-15 17:10:14 2 1 2019-09-15 17:20:14 1 9 2019-09-15 17:20:14 2 1 2019-09-15 17:25:14 1 8 2019-09-15 17:25:14 2 1 2019-09-15 17:35:14 1 7 2019-09-15 17:35:14 2 1 2019-09-15 17:45:14 1 10 2019-09-15 17:45:14 2 1 2019-09-15 17:55:14 1 4 2019-09-15 17:55:14 2 1 2019-09-15 18:05:14 1 7 2019-09-15 18:05:14 2 1 2019-09-15 18:15:14 1 7 2019-09-15 18:15:14 2 1 2019-09-15 18:20:14 1 6 2019-09-15 18:20:14 2 1 2019-09-15 18:30:14 1 7 2019-09-15 18:30:14 2 1 2019-09-15 18:40:14 1 7 2019-09-15 18:40:14 2 2 2019-09-15 18:45:14 1 7 2019-09-15 18:45:14 2 1 2019-09-15 18:55:14 1 7 2019-09-15 18:55:14 2 1 2019-09-15 19:00:14 1 6 2019-09-15 19:00:14 2 1 2019-09-15 19:05:14 1 6 2019-09-15 19:05:14 2 1 2019-09-15 19:15:14 1 5 2019-09-15 19:15:14 2 1 2019-09-15 19:20:14 1 6 2019-09-15 19:20:14 2 1 2019-09-15 19:25:14 1 4 2019-09-15 19:45:14 1 5 2019-09-15 19:45:14 2 1 2019-09-15 20:00:14 1 4 2019-09-15 20:00:14 2 1 2019-09-15 21:10:14 1 4 2019-09-15 21:30:14 1 4 2019-09-15 21:45:14 1 6 2019-09-15 21:50:14 1 6 2019-09-15 21:50:14 2 1 2019-09-15 22:05:14 1 6 2019-09-15 22:15:14 1 5 2019-09-15 22:45:14 1 6 2019-09-15 23:00:14 1 5 2019-09-15 23:25:14 1 6 2019-09-15 23:25:14 2 1 2019-09-15 23:35:14 1 6 2019-09-15 23:35:14 2 1 2019-09-15 23:40:14 1 5 2019-09-15 23:40:14 2 1 2019-09-15 23:45:14 1 5 2019-09-15 23:45:14 2 1 2019-09-16 00:00:14 1 4 2019-09-16 00:00:14 2 1 2019-09-16 00:05:14 1 5 2019-09-16 00:05:14 2 1 2019-09-16 00:20:14 1 4 2019-09-16 00:20:14 2 2 2019-09-16 00:30:14 1 3 2019-09-16 00:30:14 2 1 2019-09-16 00:50:14 1 4 2019-09-16 00:50:14 2 1 2019-09-16 01:15:14 1 3 2019-09-16 01:15:14 2 1 2019-09-16 01:20:14 1 3 2019-09-16 01:20:14 2 1 2019-09-16 01:45:14 1 3 2019-09-16 01:45:14 2 1 2019-09-16 02:15:14 1 2 2019-09-16 02:15:14 2 1 2019-09-16 02:30:14 1 2 2019-09-16 02:30:14 2 1 2019-09-16 02:35:14 1 2 2019-09-16 02:35:14 2 1 2019-09-16 02:40:14 1 2 2019-09-16 02:40:14 2 1 2019-09-16 02:45:14 1 2 2019-09-16 02:45:14 2 1 2019-09-16 03:05:14 1 2 2019-09-16 03:05:14 2 1 2019-09-16 03:10:14 1 2 2019-09-16 03:10:14 2 1 2019-09-16 03:25:14 1 2 2019-09-16 03:25:14 2 1 2019-09-16 03:35:14 1 2 2019-09-16 03:35:14 2 1 2019-09-16 03:40:14 1 2 2019-09-16 03:40:14 2 1 2019-09-16 03:55:14 1 2 2019-09-16 03:55:14 2 1 2019-09-16 04:00:14 1 2 2019-09-16 04:00:14 2 1 2019-09-16 04:05:14 1 2 2019-09-16 04:05:14 2 1 2019-09-16 04:10:14 1 2 2019-09-16 04:10:14 2 1 2019-09-16 04:35:14 1 2 2019-09-16 04:35:14 2 1 2019-09-16 04:40:14 1 2 2019-09-16 04:40:14 2 1 2019-09-16 04:55:14 1 2 2019-09-16 04:55:14 2 1 2019-09-16 05:00:14 1 2 2019-09-16 05:00:14 2 1 2019-09-16 05:25:14 1 2 2019-09-16 05:25:14 2 1 2019-09-16 05:30:14 1 2 2019-09-16 05:30:14 2 1 2019-09-16 07:05:14 1 2 2019-09-16 07:05:14 2 1 2019-09-16 07:10:14 1 2 2019-09-16 07:10:14 2 1 2019-09-16 07:15:14 1 2 2019-09-16 07:15:14 2 1 2019-09-16 07:20:14 1 2 2019-09-16 07:20:14 2 1 2019-09-16 07:25:14 1 2 2019-09-16 07:25:14 2 1 2019-09-16 07:30:14 1 2 2019-09-16 07:30:14 2 1 2019-09-16 07:45:14 1 3 2019-09-16 07:45:14 2 1 2019-09-16 07:55:14 1 2 2019-09-16 07:55:14 2 1 2019-09-16 08:10:14 1 5 2019-09-16 08:10:14 2 1 2019-09-16 08:20:14 1 4 2019-09-16 08:20:14 2 1 2019-09-16 08:35:14 1 3 2019-09-16 08:35:14 2 1 2019-09-16 08:45:14 1 4 2019-09-16 08:45:14 2 1 2019-09-16 09:00:14 1 4 2019-09-16 09:15:14 1 1 2019-09-16 09:15:14 2 1 2019-09-16 09:20:14 1 1 2019-09-16 09:20:14 2 1 2019-09-16 09:30:14 1 2 2019-09-16 09:30:14 2 1 2019-09-16 09:40:14 1 2 2019-09-16 09:40:14 2 2 2019-09-16 09:50:14 1 3 2019-09-16 09:50:14 2 2 2019-09-16 10:15:14 1 4 2019-09-16 10:15:14 2 1 2019-09-16 10:25:14 1 5 2019-09-16 10:25:14 2 1 2019-09-16 10:30:14 1 5 2019-09-16 10:40:14 1 4 2019-09-16 10:55:14 1 4 2019-09-16 11:40:14 1 3 2019-09-16 11:55:14 1 4 2019-09-16 12:05:14 1 4 2019-09-16 12:15:14 1 6 2019-09-16 12:25:14 1 4 2019-09-16 12:30:14 1 4 2019-09-15 13:20:14 1 5 2019-09-15 14:30:14 1 7 2019-09-15 14:40:14 1 6 2019-09-15 15:05:14 1 6 2019-09-15 15:15:14 1 7 2019-09-15 15:25:14 1 7 2019-09-15 15:40:14 1 7 2019-09-15 15:50:14 1 7 2019-09-15 15:55:14 1 7 2019-09-15 16:35:14 1 8 2019-09-15 16:35:14 2 1 2019-09-15 16:50:14 1 7 2019-09-15 16:50:14 2 2 2019-09-15 17:00:14 1 7 2019-09-15 17:00:14 2 1 2019-09-15 17:05:14 1 7 2019-09-15 17:30:14 1 8 2019-09-15 17:30:14 2 1 2019-09-15 18:00:14 1 7 2019-09-15 18:00:14 2 1 2019-09-15 19:40:14 1 6 2019-09-15 19:50:14 1 5 2019-09-15 19:50:14 2 1 2019-09-15 19:55:14 1 4 2019-09-15 19:55:14 2 1 2019-09-15 20:10:14 1 3 2019-09-15 20:25:14 1 6 2019-09-15 20:25:14 2 1 2019-09-15 20:30:14 1 6 2019-09-15 20:35:14 1 5 2019-09-15 20:40:14 1 5 2019-09-15 20:55:14 1 3 2019-09-15 21:40:14 1 5 2019-09-15 22:00:14 1 6 2019-09-15 22:30:14 1 5 2019-09-15 22:35:14 1 5 2019-09-15 22:40:14 1 5 2019-09-15 22:50:14 1 5 2019-09-15 23:05:14 1 6 2019-09-15 23:15:14 1 7 2019-09-15 23:15:14 2 1 2019-09-15 23:30:14 1 6 2019-09-15 23:30:14 2 1 2019-09-16 00:15:14 1 5 2019-09-16 00:15:14 2 2 2019-09-16 00:25:14 1 4 2019-09-16 00:25:14 2 2 2019-09-16 00:35:14 1 5 2019-09-16 00:35:14 2 1 2019-09-16 00:45:14 1 5 2019-09-16 00:45:14 2 1 2019-09-16 00:55:14 1 3 2019-09-16 00:55:14 2 1 2019-09-16 01:05:14 1 3 2019-09-16 01:05:14 2 1 2019-09-16 01:25:14 1 3 2019-09-16 01:25:14 2 1 2019-09-16 01:30:14 1 3 2019-09-16 01:30:14 2 1 2019-09-16 01:50:14 1 3 2019-09-16 01:50:14 2 1 2019-09-16 01:55:14 1 2 2019-09-16 01:55:14 2 1 2019-09-16 02:00:14 1 2 2019-09-16 02:00:14 2 1 2019-09-16 02:05:14 1 2 2019-09-16 02:05:14 2 1 2019-09-16 02:20:14 1 2 2019-09-16 02:20:14 2 1 2019-09-16 02:25:14 1 2 2019-09-16 02:25:14 2 1 2019-09-16 03:30:14 1 2 2019-09-16 03:30:14 2 1 2019-09-16 04:15:14 1 2 2019-09-16 04:15:14 2 1 2019-09-16 04:20:14 1 2 2019-09-16 04:20:14 2 1 2019-09-16 04:25:14 1 3 2019-09-16 04:25:14 2 1 2019-09-16 04:45:14 1 2 2019-09-16 04:45:14 2 1 2019-09-16 04:50:14 1 2 2019-09-16 04:50:14 2 1 2019-09-16 05:05:14 1 2 2019-09-16 05:05:14 2 1 2019-09-16 05:10:14 1 2 2019-09-16 05:10:14 2 1 2019-09-16 05:35:14 1 2 2019-09-16 05:35:14 2 1 2019-09-16 05:40:14 1 2 2019-09-16 05:40:14 2 1 2019-09-16 05:45:14 1 2 2019-09-16 05:45:14 2 1 2019-09-16 05:50:14 1 2 2019-09-16 05:50:14 2 1 2019-09-16 05:55:14 1 2 2019-09-16 05:55:14 2 1 2019-09-16 06:00:14 1 2 2019-09-16 06:00:14 2 1 2019-09-16 06:05:14 1 2 2019-09-16 06:05:14 2 1 2019-09-16 06:10:14 1 3 2019-09-16 06:10:14 2 1 2019-09-16 06:15:14 1 3 2019-09-16 06:15:14 2 1 2019-09-16 06:20:14 1 3 2019-09-16 06:20:14 2 1 2019-09-16 06:25:14 1 3 2019-09-16 06:25:14 2 1 2019-09-16 06:30:14 1 3 2019-09-16 06:30:14 2 1 2019-09-16 06:35:14 1 3 2019-09-16 06:35:14 2 1 2019-09-16 06:40:14 1 3 2019-09-16 06:40:14 2 1 2019-09-16 06:45:14 1 4 2019-09-16 06:45:14 2 1 2019-09-16 06:50:14 1 4 2019-09-16 06:50:14 2 1 2019-09-16 06:55:14 1 4 2019-09-16 06:55:14 2 1 2019-09-16 07:50:14 1 3 2019-09-16 07:50:14 2 1 2019-09-16 08:05:14 1 4 2019-09-16 08:05:14 2 1 2019-09-16 08:15:14 1 5 2019-09-16 08:15:14 2 1 2019-09-16 08:40:14 1 5 2019-09-16 08:40:14 2 1 2019-09-16 09:10:14 1 2 2019-09-16 09:35:14 1 4 2019-09-16 09:35:14 2 2 2019-09-16 09:55:14 1 2 2019-09-16 09:55:14 2 1 2019-09-16 10:05:14 1 3 2019-09-16 10:05:14 2 1 2019-09-16 10:10:14 1 3 2019-09-16 10:10:14 2 1 2019-09-16 10:20:14 1 4 2019-09-16 10:20:14 2 1 2019-09-16 11:35:15 1 4 2019-09-16 11:50:14 1 3 2019-09-16 12:00:14 1 4 2019-09-16 12:20:14 1 5 2019-09-16 12:30:14 2 1 2019-09-16 12:35:14 1 5 2019-09-16 12:35:14 2 1 2019-09-16 12:45:14 1 3 2019-09-16 13:00:14 1 5 2019-09-16 13:05:14 1 4 2019-09-16 13:10:14 1 4 2019-09-16 13:30:14 1 5 2019-09-16 13:30:14 2 1 2019-09-16 13:35:14 1 5 2019-09-16 13:35:14 2 1 2019-09-16 13:55:14 1 6 2019-09-16 13:55:14 2 1 2019-09-16 14:00:14 1 6 2019-09-16 14:00:14 2 1 2019-09-16 14:10:14 1 4 2019-09-16 14:10:14 2 3 2019-09-16 14:25:14 1 2 2019-09-16 14:25:14 2 1 2019-09-16 14:30:14 1 2 2019-09-16 14:30:14 2 1 2019-09-16 14:35:14 1 3 2019-09-16 14:35:14 2 1 2019-09-16 14:40:14 1 4 2019-09-16 14:40:14 2 1 2019-09-16 14:45:14 1 3 2019-09-16 14:45:14 2 1 2019-09-16 14:55:14 1 2 2019-09-16 14:55:14 2 1 2019-09-16 15:00:14 1 2 2019-09-16 15:00:14 2 2 2019-09-16 15:10:14 1 6 2019-09-16 15:10:14 2 2 2019-09-16 15:15:14 1 5 2019-09-16 15:15:14 2 2 2019-09-16 15:20:14 1 5 2019-09-16 15:20:14 2 2 2019-09-16 15:30:14 1 6 2019-09-16 15:30:14 2 1 2019-09-16 15:35:14 1 6 2019-09-16 15:35:14 2 1 2019-09-15 13:40:14 1 6 2019-09-15 13:55:14 1 5 2019-09-15 14:00:14 1 6 2019-09-15 14:05:14 1 5 2019-09-15 14:35:14 1 6 2019-09-15 14:50:14 1 7 2019-09-15 15:10:14 1 7 2019-09-15 15:30:14 1 7 2019-09-15 15:45:14 1 7 2019-09-15 16:05:14 1 7 2019-09-15 16:15:14 1 6 2019-09-15 16:15:14 2 1 2019-09-15 16:20:14 1 7 2019-09-15 16:20:14 2 1 2019-09-15 16:30:14 1 7 2019-09-15 16:30:14 2 1 2019-09-15 17:15:14 1 8 2019-09-15 17:15:14 2 1 2019-09-15 17:40:14 1 7 2019-09-15 17:40:14 2 1 2019-09-15 17:50:14 1 5 2019-09-15 17:50:14 2 1 2019-09-15 18:10:14 1 9 2019-09-15 18:10:14 2 1 2019-09-15 18:25:14 1 6 2019-09-15 18:25:14 2 1 2019-09-15 18:35:14 1 7 2019-09-15 18:35:14 2 2 2019-09-15 18:50:14 1 7 2019-09-15 18:50:14 2 1 2019-09-15 19:10:14 1 5 2019-09-15 19:10:14 2 1 2019-09-15 19:30:14 1 5 2019-09-15 19:35:14 1 5 2019-09-15 20:05:14 1 3 2019-09-15 20:05:14 2 1 2019-09-15 20:15:14 1 5 2019-09-15 20:20:14 1 6 2019-09-15 20:45:14 1 6 2019-09-15 20:50:14 1 4 2019-09-15 21:00:14 1 3 2019-09-15 21:05:14 1 4 2019-09-15 21:15:14 1 4 2019-09-15 21:20:14 1 5 2019-09-15 21:20:14 2 1 2019-09-15 21:25:14 1 4 2019-09-15 21:35:14 1 6 2019-09-15 21:55:14 1 7 2019-09-15 22:10:14 1 5 2019-09-15 22:20:14 1 3 2019-09-15 22:25:14 1 4 2019-09-15 22:55:14 1 5 2019-09-15 23:10:14 1 7 2019-09-15 23:20:14 1 7 2019-09-15 23:20:14 2 1 2019-09-15 23:50:14 1 5 2019-09-15 23:50:14 2 1 2019-09-15 23:55:14 1 7 2019-09-15 23:55:14 2 1 2019-09-16 00:10:14 1 4 2019-09-16 00:10:14 2 2 2019-09-16 00:40:14 1 5 2019-09-16 00:40:14 2 1 2019-09-16 01:00:14 1 4 2019-09-16 01:00:14 2 1 2019-09-16 01:10:14 1 4 2019-09-16 01:10:14 2 1 2019-09-16 01:35:14 1 3 2019-09-16 01:35:14 2 1 2019-09-16 01:40:14 1 3 2019-09-16 01:40:14 2 1 2019-09-16 02:10:14 1 2 2019-09-16 02:10:14 2 1 2019-09-16 02:50:14 1 2 2019-09-16 02:50:14 2 1 2019-09-16 02:55:14 1 2 2019-09-16 02:55:14 2 1 2019-09-16 03:00:14 1 2 2019-09-16 03:00:14 2 1 2019-09-16 03:15:14 1 2 2019-09-16 03:15:14 2 1 2019-09-16 03:20:14 1 2 2019-09-16 03:20:14 2 1 2019-09-16 03:45:14 1 2 2019-09-16 03:45:14 2 1 2019-09-16 03:50:14 1 2 2019-09-16 03:50:14 2 1 2019-09-16 04:30:14 1 2 2019-09-16 04:30:14 2 1 2019-09-16 05:15:14 1 2 2019-09-16 05:15:14 2 1 2019-09-16 05:20:14 1 2 2019-09-16 05:20:14 2 1 2019-09-16 07:00:14 1 4 2019-09-16 07:00:14 2 1 2019-09-16 07:35:14 1 4 2019-09-16 07:35:14 2 1 2019-09-16 07:40:14 1 3 2019-09-16 07:40:14 2 1 2019-09-16 08:00:14 1 3 2019-09-16 08:00:14 2 1 2019-09-16 08:25:14 1 3 2019-09-16 08:25:14 2 1 2019-09-16 08:30:14 1 3 2019-09-16 08:30:14 2 1 2019-09-16 08:50:14 1 4 2019-09-16 08:55:14 1 4 2019-09-16 09:05:14 1 3 2019-09-16 09:25:14 1 2 2019-09-16 09:25:14 2 1 2019-09-16 09:45:14 1 3 2019-09-16 09:45:14 2 2 2019-09-16 10:00:14 1 2 2019-09-16 10:00:14 2 1 2019-09-16 10:35:14 1 4 2019-09-16 10:45:14 1 3 2019-09-16 10:50:14 1 4 2019-09-16 11:00:14 1 4 2019-09-16 11:05:14 1 3 2019-09-16 11:10:14 1 3 2019-09-16 11:15:14 1 4 2019-09-16 11:20:14 1 3 2019-09-16 11:25:14 1 3 2019-09-16 11:30:14 1 3 2019-09-16 11:45:14 1 4 2019-09-16 12:10:14 1 3 2019-09-16 12:40:14 1 3 2019-09-16 12:40:14 2 1 2019-09-16 12:50:14 1 3 2019-09-16 12:55:14 1 3 2019-09-16 13:15:14 1 4 2019-09-16 13:20:14 1 5 2019-09-16 13:25:14 1 4 2019-09-16 13:40:14 1 5 2019-09-16 13:40:14 2 1 2019-09-16 13:45:14 1 6 2019-09-16 13:45:14 2 1 2019-09-16 13:50:14 1 5 2019-09-16 13:50:14 2 1 2019-09-16 14:05:14 1 4 2019-09-16 14:05:14 2 2 2019-09-16 14:15:14 1 3 2019-09-16 14:15:14 2 2 2019-09-16 14:20:14 1 2 2019-09-16 14:20:14 2 1 2019-09-16 14:50:14 1 3 2019-09-16 14:50:14 2 1 2019-09-16 15:05:14 1 5 2019-09-16 15:05:14 2 3 2019-09-16 15:25:14 1 5 2019-09-16 15:25:14 2 2 2019-09-16 15:40:14 1 5 2019-09-16 15:40:14 2 1 2019-09-16 15:45:14 1 4 2019-09-16 15:45:14 2 1 2019-09-16 15:50:14 1 4 2019-09-16 15:50:14 2 1 2019-09-16 15:55:14 1 5 2019-09-16 15:55:14 2 1 2019-09-16 16:00:14 1 6 2019-09-16 16:05:14 1 7 2019-09-16 16:10:14 1 7 2019-09-16 16:15:14 1 7 2019-09-16 16:20:14 1 8 2019-09-16 16:25:14 1 7 2019-09-16 16:30:14 1 8 2019-09-16 16:35:14 1 8 2019-09-16 16:40:14 1 9 2019-09-16 16:45:14 1 7 2019-09-16 16:50:14 1 7 2019-09-16 16:55:14 1 8 2019-09-16 16:55:14 2 1 2019-09-16 17:00:14 1 6 2019-09-16 17:00:14 2 1 2019-09-16 17:05:14 1 7 2019-09-16 17:05:14 2 2 2019-09-16 17:10:14 1 8 2019-09-16 17:15:14 1 8 2019-09-16 17:20:14 1 8 2019-09-16 17:25:14 1 7 2019-09-16 17:30:14 1 6 2019-09-16 17:35:14 1 6 2019-09-16 17:40:14 1 6 2019-09-16 17:45:14 1 7 2019-09-16 17:50:14 1 8 2019-09-16 17:50:14 2 1 2019-09-16 18:00:14 1 5 2019-09-16 18:00:14 2 1 2019-09-16 18:20:14 1 7 2019-09-16 18:20:14 2 1 2019-09-16 18:30:14 1 8 2019-09-16 18:30:14 2 1 2019-09-16 19:05:14 1 6 2019-09-16 19:25:14 1 4 2019-09-16 19:25:14 2 1 2019-09-16 20:20:14 1 3 2019-09-16 20:20:14 2 2 2019-09-16 20:25:14 1 4 2019-09-16 20:25:14 2 2 2019-09-16 20:55:14 1 2 2019-09-16 20:55:14 2 2 2019-09-16 21:00:15 1 2 2019-09-16 21:00:15 2 1 2019-09-16 21:50:14 1 6 2019-09-16 22:15:14 1 3 2019-09-16 22:15:14 2 4 2019-09-16 22:25:14 1 3 2019-09-16 22:25:14 2 3 2019-09-16 22:35:14 1 3 2019-09-16 22:35:14 2 4 2019-09-16 23:00:14 1 5 2019-09-16 23:00:14 2 1 2019-09-16 23:35:14 1 7 2019-09-16 23:35:14 2 2 2019-09-16 23:40:14 1 6 2019-09-16 23:40:14 2 1 2019-09-16 23:45:14 1 6 2019-09-16 23:45:14 2 1 2019-09-17 00:10:14 1 4 2019-09-17 01:00:14 1 3 2019-09-17 01:00:14 2 1 2019-09-17 01:10:14 1 4 2019-09-17 01:10:14 2 1 2019-09-17 01:30:14 1 4 2019-09-17 02:05:14 1 5 2019-09-17 02:05:14 2 1 2019-09-17 02:10:14 1 5 2019-09-17 02:10:14 2 1 2019-09-17 02:15:14 1 5 2019-09-17 02:15:14 2 1 2019-09-17 02:25:14 1 4 2019-09-17 02:25:14 2 1 2019-09-17 02:30:14 1 4 2019-09-17 02:30:14 2 1 2019-09-17 04:00:14 1 3 2019-09-17 04:05:14 1 3 2019-09-17 04:10:14 1 3 2019-09-17 05:05:14 1 1 2019-09-17 05:10:14 1 1 2019-09-17 05:15:14 1 1 2019-09-17 07:00:14 1 1 2019-09-17 07:00:14 2 1 2019-09-17 07:05:14 1 1 2019-09-17 07:05:14 2 1 2019-09-17 08:05:14 1 3 2019-09-17 08:10:14 1 3 2019-09-17 08:20:14 1 3 2019-09-17 08:25:14 1 3 2019-09-17 08:30:14 1 3 2019-09-17 08:35:14 1 3 2019-09-17 08:40:14 1 3 2019-09-17 09:15:14 1 5 2019-09-17 09:20:14 1 5 2019-09-17 09:30:14 1 8 2019-09-17 09:40:14 1 10 2019-09-17 09:45:14 1 8 2019-09-17 10:00:14 1 5 2019-09-17 10:15:14 1 5 2019-09-17 11:00:14 1 8 2019-09-17 11:10:14 1 7 2019-09-17 11:25:14 1 7 2019-09-17 11:30:14 1 8 2019-09-17 11:35:14 1 7 2019-09-17 12:00:14 1 7 2019-09-17 12:05:14 1 8 2019-09-17 12:20:14 1 8 2019-09-17 12:30:14 1 9 2019-09-17 12:35:14 1 7 2019-09-17 12:40:14 1 7 2019-09-17 12:55:14 1 9 2019-09-17 13:00:14 1 9 2019-09-17 13:10:14 1 9 2019-09-17 13:25:14 1 10 2019-09-17 13:25:14 2 1 2019-09-17 13:30:14 1 9 2019-09-17 13:30:14 2 1 2019-09-17 13:35:14 1 9 2019-09-17 13:35:14 2 1 2019-09-17 13:40:14 1 9 2019-09-17 13:40:14 2 1 2019-09-17 13:50:14 1 8 2019-09-17 13:50:14 2 1 2019-09-17 13:55:14 1 8 2019-09-17 13:55:14 2 2 2019-09-17 14:15:14 1 8 2019-09-17 14:15:14 2 1 2019-09-17 14:25:14 1 7 2019-09-17 14:25:14 2 1 2019-09-17 14:30:14 1 6 2019-09-17 14:30:14 2 1 2019-09-17 15:30:14 1 7 2019-09-17 15:30:14 2 2 2019-09-17 15:55:14 1 7 2019-09-17 15:55:14 2 1 2019-09-17 16:05:14 1 7 2019-09-17 16:20:14 1 6 2019-09-17 16:25:14 1 7 2019-09-17 16:40:14 1 5 2019-09-17 16:55:14 1 6 2019-09-17 17:05:14 1 8 2019-09-17 17:10:14 1 8 2019-09-17 17:20:14 1 9 2019-09-17 17:25:14 1 7 2019-09-17 18:20:14 1 6 2019-09-17 18:30:15 1 6 2019-09-17 18:40:14 1 8 2019-09-17 18:45:14 1 6 2019-09-17 18:50:14 1 8 2019-09-17 19:10:14 1 5 2019-09-17 19:10:14 2 1 2019-09-17 19:15:14 1 6 2019-09-17 19:15:14 2 1 2019-09-17 19:20:14 1 6 2019-09-17 19:20:14 2 1 2019-09-17 19:30:14 1 7 2019-09-17 19:30:14 2 1 2019-09-17 19:40:14 1 6 2019-09-17 19:40:14 2 1 2019-09-17 19:50:14 1 6 2019-09-17 20:00:14 1 5 2019-09-17 20:15:14 1 5 2019-09-17 20:15:14 2 1 2019-09-17 20:20:14 1 4 2019-09-17 20:20:14 2 1 2019-09-17 20:40:14 1 5 2019-09-17 20:40:14 2 1 2019-09-17 20:50:14 1 6 2019-09-17 21:05:14 1 6 2019-09-17 21:15:14 1 6 2019-09-17 21:15:14 2 1 2019-09-17 21:35:14 2 1 2019-09-17 21:45:14 1 6 2019-09-17 21:50:14 1 5 2019-09-17 21:50:14 2 1 2019-09-17 21:55:14 1 5 2019-09-17 21:55:14 2 1 2019-09-17 22:05:14 1 5 2019-09-17 22:05:14 2 1 2019-09-17 22:10:14 1 6 2019-09-17 22:10:14 2 1 2019-09-17 22:15:14 1 6 2019-09-17 22:15:14 2 1 2019-09-17 22:25:14 1 5 2019-09-17 22:25:14 2 1 2019-09-17 22:30:14 1 5 2019-09-17 22:30:14 2 1 2019-09-17 22:40:14 1 5 2019-09-17 22:40:14 2 1 2019-09-17 22:50:14 1 5 2019-09-17 22:50:14 2 2 2019-09-17 22:55:14 1 7 2019-09-17 22:55:14 2 2 2019-09-17 23:05:14 1 5 2019-09-17 23:05:14 2 2 2019-09-17 23:10:14 1 5 2019-09-17 23:10:14 2 2 2019-09-17 23:15:14 1 6 2019-09-17 23:15:14 2 2 2019-09-17 23:30:14 1 6 2019-09-17 23:30:14 2 3 2019-09-17 23:35:14 1 4 2019-09-17 23:35:14 2 3 2019-09-18 00:00:14 1 4 2019-09-18 00:15:14 1 5 2019-09-18 00:15:14 2 1 2019-09-18 00:20:14 1 4 2019-09-18 00:25:14 1 7 2019-09-18 00:30:14 1 5 2019-09-18 00:35:14 1 5 2019-09-18 00:40:14 1 5 2019-09-16 17:55:14 1 6 2019-09-16 17:55:14 2 1 2019-09-16 18:05:14 1 5 2019-09-16 18:05:14 2 1 2019-09-16 18:15:14 1 7 2019-09-16 18:15:14 2 1 2019-09-16 18:25:14 1 7 2019-09-16 18:25:14 2 1 2019-09-16 18:35:14 1 7 2019-09-16 18:35:14 2 1 2019-09-16 18:40:14 1 8 2019-09-16 18:40:14 2 1 2019-09-16 18:45:14 1 6 2019-09-16 19:00:14 1 7 2019-09-16 19:00:14 2 1 2019-09-16 19:15:14 1 6 2019-09-16 19:20:14 1 6 2019-09-16 19:20:14 2 1 2019-09-16 19:35:14 1 4 2019-09-16 19:35:14 2 1 2019-09-16 19:40:14 1 5 2019-09-16 19:40:14 2 1 2019-09-16 19:50:14 1 4 2019-09-16 19:50:14 2 1 2019-09-16 20:05:14 1 4 2019-09-16 20:05:14 2 1 2019-09-16 20:15:14 1 4 2019-09-16 20:15:14 2 1 2019-09-16 20:35:14 1 3 2019-09-16 20:35:14 2 2 2019-09-16 20:45:14 1 5 2019-09-16 20:45:14 2 2 2019-09-16 20:50:14 1 4 2019-09-16 20:50:14 2 2 2019-09-16 21:05:14 1 4 2019-09-16 21:05:14 2 2 2019-09-16 21:10:14 1 5 2019-09-16 21:10:14 2 2 2019-09-16 21:15:14 1 4 2019-09-16 21:15:14 2 2 2019-09-16 21:25:14 1 5 2019-09-16 21:25:14 2 2 2019-09-16 21:35:14 1 6 2019-09-16 21:35:14 2 2 2019-09-16 21:40:14 1 6 2019-09-16 21:40:14 2 2 2019-09-16 21:45:14 1 7 2019-09-16 21:45:14 2 2 2019-09-16 21:55:14 1 6 2019-09-16 21:55:14 2 1 2019-09-16 22:00:14 1 6 2019-09-16 22:20:14 1 4 2019-09-16 22:20:14 2 4 2019-09-16 22:45:14 1 6 2019-09-16 22:45:14 2 3 2019-09-16 22:55:14 1 5 2019-09-16 22:55:14 2 2 2019-09-16 23:20:14 1 7 2019-09-16 23:20:14 2 2 2019-09-16 23:30:14 1 7 2019-09-16 23:30:14 2 3 2019-09-16 23:50:14 1 8 2019-09-16 23:50:14 2 1 2019-09-17 00:00:14 1 5 2019-09-17 00:25:14 1 4 2019-09-17 00:30:14 1 4 2019-09-17 00:35:14 1 4 2019-09-17 00:40:14 1 4 2019-09-17 00:45:14 1 4 2019-09-17 00:50:14 1 4 2019-09-17 00:55:14 1 4 2019-09-17 01:15:14 1 4 2019-09-17 01:15:14 2 2 2019-09-17 01:20:14 1 4 2019-09-17 01:20:14 2 2 2019-09-17 01:25:14 1 4 2019-09-17 01:25:14 2 2 2019-09-17 01:35:14 1 4 2019-09-17 01:35:14 2 1 2019-09-17 01:40:14 1 4 2019-09-17 01:40:14 2 1 2019-09-17 01:55:14 1 5 2019-09-17 01:55:14 2 1 2019-09-17 02:00:14 1 5 2019-09-17 02:00:14 2 1 2019-09-17 02:20:14 1 4 2019-09-17 02:20:14 2 1 2019-09-17 02:40:14 1 3 2019-09-17 02:45:14 1 3 2019-09-17 02:50:14 1 3 2019-09-17 02:55:14 1 3 2019-09-17 03:00:14 1 3 2019-09-17 03:05:14 1 3 2019-09-17 03:15:14 1 4 2019-09-17 03:55:14 1 3 2019-09-17 04:15:14 1 2 2019-09-17 04:20:14 1 2 2019-09-17 04:25:14 1 2 2019-09-17 04:30:14 1 2 2019-09-17 07:10:14 1 1 2019-09-17 07:15:14 1 1 2019-09-17 07:20:14 1 1 2019-09-17 07:25:14 1 1 2019-09-17 07:30:14 1 1 2019-09-17 07:35:14 1 1 2019-09-17 07:40:14 1 1 2019-09-17 07:45:14 1 1 2019-09-17 07:50:14 1 1 2019-09-17 07:55:14 1 2 2019-09-17 08:00:14 1 3 2019-09-17 08:45:14 1 4 2019-09-17 08:50:14 1 4 2019-09-17 08:55:14 1 5 2019-09-17 09:00:14 1 4 2019-09-17 09:05:14 1 3 2019-09-17 09:35:14 1 9 2019-09-17 10:10:14 1 6 2019-09-17 10:10:14 2 1 2019-09-17 10:25:14 1 8 2019-09-17 10:30:14 1 8 2019-09-17 10:45:14 1 9 2019-09-17 10:55:14 1 7 2019-09-17 11:05:14 1 8 2019-09-17 11:15:14 1 7 2019-09-17 11:50:14 1 7 2019-09-17 11:55:14 1 7 2019-09-17 12:10:14 1 8 2019-09-17 12:25:14 1 10 2019-09-17 12:45:14 1 8 2019-09-17 12:50:14 1 8 2019-09-17 13:05:14 1 11 2019-09-17 14:00:14 1 8 2019-09-17 14:00:14 2 1 2019-09-17 14:05:14 1 7 2019-09-17 14:05:14 2 1 2019-09-17 14:20:14 1 8 2019-09-17 14:20:14 2 1 2019-09-17 14:35:14 1 8 2019-09-17 14:35:14 2 1 2019-09-17 14:45:14 1 9 2019-09-17 14:45:14 2 1 2019-09-17 14:50:14 1 7 2019-09-17 14:50:14 2 1 2019-09-17 15:00:14 1 8 2019-09-17 15:00:14 2 1 2019-09-17 15:05:14 1 8 2019-09-17 15:05:14 2 1 2019-09-17 15:20:14 1 9 2019-09-17 15:20:14 2 1 2019-09-17 15:35:14 1 8 2019-09-17 15:35:14 2 2 2019-09-17 15:40:14 1 7 2019-09-17 15:40:14 2 1 2019-09-17 15:50:14 1 9 2019-09-17 15:50:14 2 1 2019-09-17 16:00:14 1 6 2019-09-17 16:00:14 2 1 2019-09-17 16:10:14 1 7 2019-09-17 16:30:14 1 7 2019-09-17 16:50:14 1 6 2019-09-17 17:00:14 1 7 2019-09-17 17:30:14 1 8 2019-09-17 17:40:14 1 8 2019-09-17 17:45:14 1 7 2019-09-17 17:55:14 1 7 2019-09-17 18:00:14 1 7 2019-09-17 18:55:14 1 8 2019-09-17 19:00:14 1 7 2019-09-17 19:05:14 1 5 2019-09-17 19:05:14 2 1 2019-09-17 19:25:14 1 5 2019-09-17 19:25:14 2 1 2019-09-17 19:35:14 1 6 2019-09-17 19:35:14 2 1 2019-09-17 19:45:14 1 6 2019-09-17 19:55:14 1 7 2019-09-17 20:25:14 1 4 2019-09-17 20:25:14 2 1 2019-09-17 20:45:14 1 5 2019-09-17 20:45:14 2 1 2019-09-17 21:20:14 1 5 2019-09-17 21:20:14 2 1 2019-09-17 21:25:14 1 5 2019-09-17 21:25:14 2 1 2019-09-17 21:35:14 1 7 2019-09-16 18:10:14 1 6 2019-09-16 18:10:14 2 1 2019-09-16 18:50:14 1 6 2019-09-16 18:55:14 1 7 2019-09-16 19:10:14 1 6 2019-09-16 19:30:14 1 4 2019-09-16 19:30:14 2 1 2019-09-16 19:45:14 1 5 2019-09-16 19:45:14 2 1 2019-09-16 19:55:14 1 4 2019-09-16 19:55:14 2 1 2019-09-16 20:00:14 1 4 2019-09-16 20:00:14 2 1 2019-09-16 20:10:14 1 2 2019-09-16 20:10:14 2 1 2019-09-16 20:30:14 1 3 2019-09-16 20:30:14 2 2 2019-09-16 20:40:14 1 3 2019-09-16 20:40:14 2 2 2019-09-16 21:20:14 1 5 2019-09-16 21:20:14 2 2 2019-09-16 21:30:14 1 4 2019-09-16 21:30:14 2 2 2019-09-16 22:05:14 1 5 2019-09-16 22:05:14 2 3 2019-09-16 22:10:14 1 5 2019-09-16 22:10:14 2 3 2019-09-16 22:30:14 1 4 2019-09-16 22:30:14 2 3 2019-09-16 22:40:14 1 4 2019-09-16 22:40:14 2 4 2019-09-16 22:50:14 1 5 2019-09-16 22:50:14 2 3 2019-09-16 23:05:14 1 6 2019-09-16 23:05:14 2 1 2019-09-16 23:10:14 1 6 2019-09-16 23:10:14 2 1 2019-09-16 23:15:14 1 7 2019-09-16 23:15:14 2 1 2019-09-16 23:25:14 1 8 2019-09-16 23:25:14 2 1 2019-09-16 23:55:14 1 7 2019-09-17 00:05:14 1 5 2019-09-17 00:15:14 1 4 2019-09-17 00:20:14 1 4 2019-09-17 01:05:14 1 3 2019-09-17 01:05:14 2 1 2019-09-17 01:45:14 1 5 2019-09-17 01:45:14 2 1 2019-09-17 01:50:14 1 5 2019-09-17 01:50:14 2 1 2019-09-17 02:35:14 1 4 2019-09-17 02:35:14 2 1 2019-09-17 03:10:14 1 4 2019-09-17 03:20:14 1 3 2019-09-17 03:25:14 1 3 2019-09-17 03:30:14 1 3 2019-09-17 03:35:14 1 3 2019-09-17 03:40:14 1 3 2019-09-17 03:45:14 1 3 2019-09-17 03:50:14 1 3 2019-09-17 04:35:14 1 1 2019-09-17 04:40:14 1 1 2019-09-17 04:45:14 1 1 2019-09-17 04:50:14 1 1 2019-09-17 04:55:14 1 1 2019-09-17 05:00:14 1 1 2019-09-17 05:20:14 1 1 2019-09-17 05:25:14 1 1 2019-09-17 05:30:14 1 1 2019-09-17 05:35:14 1 1 2019-09-17 05:40:14 1 1 2019-09-17 05:45:14 1 1 2019-09-17 05:50:14 1 1 2019-09-17 05:55:14 1 1 2019-09-17 06:00:14 1 1 2019-09-17 06:05:14 1 1 2019-09-17 06:10:14 1 1 2019-09-17 06:15:14 1 1 2019-09-17 06:20:14 1 1 2019-09-17 06:25:14 1 1 2019-09-17 06:30:14 1 1 2019-09-17 06:35:14 1 1 2019-09-17 06:40:14 1 1 2019-09-17 06:45:14 1 1 2019-09-17 06:50:14 1 1 2019-09-17 06:55:14 1 1 2019-09-17 08:15:14 1 2 2019-09-17 09:10:14 1 4 2019-09-17 09:25:14 1 7 2019-09-17 09:50:14 1 8 2019-09-17 09:55:14 1 7 2019-09-17 10:05:14 1 7 2019-09-17 10:20:14 1 8 2019-09-17 10:35:14 1 8 2019-09-17 10:40:14 1 9 2019-09-17 10:50:14 1 8 2019-09-17 11:20:14 1 8 2019-09-17 11:40:14 1 7 2019-09-17 11:45:14 1 7 2019-09-17 12:15:14 1 9 2019-09-17 13:15:14 1 8 2019-09-17 13:15:14 2 1 2019-09-17 13:20:14 1 9 2019-09-17 13:45:14 1 8 2019-09-17 13:45:14 2 1 2019-09-17 14:10:14 1 8 2019-09-17 14:10:14 2 1 2019-09-17 14:40:14 1 9 2019-09-17 14:40:14 2 1 2019-09-17 14:55:14 1 9 2019-09-17 14:55:14 2 1 2019-09-17 15:10:14 1 9 2019-09-17 15:10:14 2 2 2019-09-17 15:15:14 1 9 2019-09-17 15:15:14 2 1 2019-09-17 15:25:14 1 8 2019-09-17 15:25:14 2 2 2019-09-17 15:45:14 1 8 2019-09-17 15:45:14 2 1 2019-09-17 16:15:14 1 7 2019-09-17 16:35:14 1 5 2019-09-17 16:45:14 1 7 2019-09-17 17:15:14 1 8 2019-09-17 17:35:14 1 7 2019-09-17 17:50:14 1 7 2019-09-17 18:05:14 1 7 2019-09-17 18:10:14 1 6 2019-09-17 18:10:14 2 2 2019-09-17 18:15:14 1 6 2019-09-17 18:15:14 2 1 2019-09-17 18:25:14 1 5 2019-09-17 18:35:14 1 8 2019-09-17 20:05:14 1 5 2019-09-17 20:10:14 1 6 2019-09-17 20:30:14 1 4 2019-09-17 20:35:14 1 4 2019-09-17 20:55:14 1 4 2019-09-17 21:00:14 1 6 2019-09-17 21:10:14 1 5 2019-09-17 21:30:14 1 5 2019-09-17 21:30:14 2 1 2019-09-17 21:40:14 1 7 2019-09-17 21:40:14 2 1 2019-09-17 22:00:14 1 6 2019-09-17 22:00:14 2 1 2019-09-17 22:20:14 1 6 2019-09-17 22:20:14 2 2 2019-09-17 22:35:14 1 6 2019-09-17 22:35:14 2 1 2019-09-17 22:45:14 1 5 2019-09-17 22:45:14 2 1 2019-09-17 23:00:14 1 6 2019-09-17 23:00:14 2 2 2019-09-17 23:20:14 1 4 2019-09-17 23:20:14 2 2 2019-09-17 23:25:14 1 5 2019-09-17 23:25:14 2 2 2019-09-17 23:40:14 1 5 2019-09-17 23:40:14 2 2 2019-09-17 23:45:14 1 4 2019-09-17 23:50:14 1 5 2019-09-17 23:55:14 1 4 2019-09-18 00:05:14 1 5 2019-09-18 00:10:14 1 5 2019-09-18 00:45:14 1 5 2019-09-18 00:50:14 1 6 2019-09-18 00:55:14 1 5 2019-09-18 01:00:14 1 5 2019-09-18 01:05:14 1 4 2019-09-18 01:10:14 1 3 2019-09-18 01:15:14 1 4 2019-09-18 01:20:14 1 4 2019-09-18 01:25:14 1 4 2019-09-18 01:30:14 1 3 2019-09-18 01:35:14 1 2 2019-09-18 01:40:14 1 2 2019-09-18 01:45:14 1 2 2019-09-18 01:50:14 1 2 2019-09-18 01:55:14 1 2 2019-09-18 02:00:14 1 2 2019-09-18 02:05:14 1 2 2019-09-18 02:10:14 1 2 2019-09-18 02:15:14 1 2 2019-09-18 02:20:14 1 2 2019-09-18 02:25:14 1 2 2019-09-18 02:30:14 1 1 2019-09-18 02:35:14 1 1 2019-09-18 02:40:14 1 1 2019-09-18 02:45:14 1 1 2019-09-18 02:50:14 1 1 2019-09-18 04:05:14 1 1 2019-09-18 04:10:14 1 1 2019-09-18 04:15:14 1 1 2019-09-18 04:20:14 1 1 2019-09-18 04:25:14 1 1 2019-09-18 04:30:14 1 1 2019-09-18 04:35:14 1 1 2019-09-18 04:40:14 1 1 2019-09-18 04:45:14 1 1 2019-09-18 04:50:14 1 1 2019-09-18 04:55:14 1 1 2019-09-18 05:00:14 1 1 2019-09-18 05:05:14 1 1 2019-09-18 05:10:14 1 1 2019-09-18 05:15:14 1 1 2019-09-18 05:20:14 1 1 2019-09-18 05:25:14 1 1 2019-09-18 05:30:14 1 1 2019-09-18 05:35:14 1 1 2019-09-18 05:40:14 1 1 2019-09-18 05:45:14 1 1 2019-09-18 05:50:14 1 1 2019-09-18 05:55:14 1 1 2019-09-18 06:00:14 1 1 2019-09-18 06:05:14 1 1 2019-09-18 06:10:14 1 1 2019-09-18 06:15:14 1 1 2019-09-18 06:25:14 1 2 2019-09-18 06:30:14 1 3 2019-09-18 06:55:14 1 1 2019-09-18 07:05:14 1 1 2019-09-18 07:20:14 1 2 2019-09-18 07:40:14 1 2 2019-09-18 07:50:14 1 3 2019-09-18 08:00:14 1 3 2019-09-18 08:15:14 1 3 2019-09-18 08:20:14 1 3 2019-09-18 08:30:14 1 3 2019-09-18 08:45:14 1 3 2019-09-18 08:55:14 1 5 2019-09-18 08:55:14 2 1 2019-09-18 09:00:14 1 6 2019-09-18 09:00:14 2 1 2019-09-18 09:25:14 1 8 2019-09-18 09:25:14 2 2 2019-09-18 09:35:14 1 6 2019-09-18 09:35:14 2 2 2019-09-18 09:45:14 1 5 2019-09-18 09:45:14 2 3 2019-09-18 10:10:14 1 3 2019-09-18 10:10:14 2 1 2019-09-18 10:40:14 1 7 2019-09-18 10:50:14 1 8 2019-09-18 11:20:14 1 9 2019-09-18 11:25:14 1 9 2019-09-18 11:50:14 1 8 2019-09-18 11:50:14 2 1 2019-09-18 12:10:14 1 8 2019-09-18 12:10:14 2 2 2019-09-18 12:15:14 1 9 2019-09-18 12:15:14 2 2 2019-09-18 12:50:14 1 8 2019-09-18 12:50:14 2 2 2019-09-18 13:20:14 1 6 2019-09-18 13:20:14 2 4 2019-09-18 13:40:14 1 6 2019-09-18 13:40:14 2 3 2019-09-18 13:45:14 1 6 2019-09-18 13:45:14 2 3 2019-09-18 14:10:14 1 6 2019-09-18 14:10:14 2 3 2019-09-18 14:25:14 1 9 2019-09-18 14:25:14 2 3 2019-09-18 14:30:14 1 7 2019-09-18 14:30:14 2 3 2019-09-18 14:40:14 1 7 2019-09-18 14:40:14 2 3 2019-09-18 14:45:14 1 7 2019-09-18 14:45:14 2 3 2019-09-18 14:50:14 1 8 2019-09-18 14:50:14 2 3 2019-09-18 15:00:14 1 10 2019-09-18 15:00:14 2 3 2019-09-18 15:10:14 1 11 2019-09-18 15:10:14 2 2 2019-09-18 15:35:14 1 7 2019-09-18 15:35:14 2 2 2019-09-18 15:40:14 1 6 2019-09-18 15:40:14 2 2 2019-09-18 15:45:14 1 6 2019-09-18 15:45:14 2 2 2019-09-18 15:55:14 1 6 2019-09-18 15:55:14 2 2 2019-09-18 16:00:14 1 7 2019-09-18 16:00:14 2 2 2019-09-18 16:15:14 1 6 2019-09-18 16:15:14 2 2 2019-09-18 16:40:14 1 8 2019-09-18 16:40:14 2 1 2019-09-18 16:45:14 1 7 2019-09-18 16:45:14 2 1 2019-09-18 16:50:14 1 8 2019-09-18 16:50:14 2 1 2019-09-18 17:05:14 1 7 2019-09-18 17:05:14 2 1 2019-09-18 17:15:14 1 6 2019-09-18 17:15:14 2 1 2019-09-18 17:20:14 1 7 2019-09-18 17:20:14 2 2 2019-09-18 17:40:14 1 7 2019-09-18 17:40:14 2 2 2019-09-18 18:10:14 1 8 2019-09-18 18:10:14 2 1 2019-09-18 19:00:14 1 7 2019-09-18 19:05:14 1 7 2019-09-18 19:15:14 1 7 2019-09-18 19:20:14 1 7 2019-09-18 19:20:14 2 1 2019-09-18 19:35:14 1 10 2019-09-18 19:40:14 1 9 2019-09-18 19:45:14 1 8 2019-09-18 19:55:14 1 8 2019-09-18 20:05:14 1 8 2019-09-18 20:10:14 1 8 2019-09-18 20:25:14 1 7 2019-09-18 20:30:14 1 7 2019-09-18 20:45:14 1 8 2019-09-18 21:00:14 1 6 2019-09-18 21:00:14 2 1 2019-09-18 21:05:14 1 7 2019-09-18 21:05:14 2 1 2019-09-18 21:15:14 1 5 2019-09-18 21:15:14 2 2 2019-09-18 21:20:14 1 6 2019-09-18 21:20:14 2 2 2019-09-18 21:35:14 1 7 2019-09-18 21:45:14 1 8 2019-09-18 22:00:14 1 6 2019-09-18 22:25:14 1 7 2019-09-18 22:25:14 2 1 2019-09-18 22:55:14 1 8 2019-09-18 22:55:14 2 4 2019-09-18 23:05:14 1 9 2019-09-18 23:05:14 2 3 2019-09-18 23:40:14 1 5 2019-09-18 23:40:14 2 1 2019-09-18 23:50:14 1 6 2019-09-18 23:50:14 2 1 2019-09-19 00:00:14 1 6 2019-09-19 00:00:14 2 1 2019-09-19 00:20:14 1 7 2019-09-19 00:20:14 2 1 2019-09-19 00:40:14 1 4 2019-09-19 00:40:14 2 1 2019-09-19 00:50:14 1 5 2019-09-19 00:50:14 2 1 2019-09-19 01:00:14 1 4 2019-09-19 01:00:14 2 1 2019-09-19 01:05:14 1 4 2019-09-19 01:05:14 2 1 2019-09-19 01:15:14 1 3 2019-09-19 01:15:14 2 1 2019-09-19 01:50:14 1 5 2019-09-19 01:50:14 2 1 2019-09-19 02:05:14 1 5 2019-09-19 02:05:14 2 1 2019-09-19 02:10:14 1 5 2019-09-19 02:10:14 2 1 2019-09-19 02:15:14 1 5 2019-09-19 02:15:14 2 1 2019-09-19 02:20:14 1 5 2019-09-19 02:20:14 2 1 2019-09-19 03:10:14 1 5 2019-09-19 03:10:14 2 1 2019-09-19 03:15:14 1 5 2019-09-19 03:15:14 2 1 2019-09-19 03:30:14 1 4 2019-09-19 03:30:14 2 1 2019-09-19 03:35:14 1 4 2019-09-18 02:55:14 1 1 2019-09-18 03:00:14 1 1 2019-09-18 03:05:14 1 1 2019-09-18 03:10:14 1 1 2019-09-18 03:15:14 1 1 2019-09-18 03:20:14 1 1 2019-09-18 03:25:14 1 1 2019-09-18 06:20:14 1 2 2019-09-18 06:35:14 1 2 2019-09-18 06:45:14 1 1 2019-09-18 06:50:14 1 1 2019-09-18 07:10:14 1 1 2019-09-18 07:30:14 1 3 2019-09-18 07:55:14 1 3 2019-09-18 08:05:14 1 3 2019-09-18 08:10:14 1 3 2019-09-18 08:35:14 1 3 2019-09-18 08:40:14 1 3 2019-09-18 08:50:14 1 5 2019-09-18 09:10:14 1 6 2019-09-18 09:10:14 2 1 2019-09-18 09:20:14 1 7 2019-09-18 09:20:14 2 1 2019-09-18 09:30:14 1 6 2019-09-18 09:30:14 2 2 2019-09-18 10:00:14 1 6 2019-09-18 10:00:14 2 1 2019-09-18 10:05:14 1 6 2019-09-18 10:05:14 2 1 2019-09-18 10:35:14 1 7 2019-09-18 10:35:14 2 1 2019-09-18 10:55:14 1 9 2019-09-18 11:00:14 1 9 2019-09-18 11:10:14 1 8 2019-09-18 11:15:14 1 8 2019-09-18 11:35:14 1 8 2019-09-18 11:35:14 2 1 2019-09-18 11:40:14 1 8 2019-09-18 11:40:14 2 1 2019-09-18 11:45:14 1 8 2019-09-18 11:45:14 2 1 2019-09-18 11:55:14 1 8 2019-09-18 11:55:14 2 1 2019-09-18 12:00:14 1 7 2019-09-18 12:00:14 2 1 2019-09-18 12:05:14 1 8 2019-09-18 12:05:14 2 1 2019-09-18 12:25:14 1 6 2019-09-18 12:25:14 2 2 2019-09-18 12:30:14 1 6 2019-09-18 12:30:14 2 2 2019-09-18 12:40:14 1 7 2019-09-18 12:40:14 2 2 2019-09-18 12:55:14 1 6 2019-09-18 12:55:14 2 3 2019-09-18 13:00:14 1 6 2019-09-18 13:00:14 2 3 2019-09-18 13:10:14 1 8 2019-09-18 13:10:14 2 5 2019-09-18 13:30:14 1 7 2019-09-18 13:30:14 2 3 2019-09-18 13:35:14 1 7 2019-09-18 13:35:14 2 3 2019-09-18 14:00:14 1 8 2019-09-18 14:00:14 2 3 2019-09-18 14:05:14 1 8 2019-09-18 14:05:14 2 3 2019-09-18 14:15:14 1 6 2019-09-18 14:15:14 2 3 2019-09-18 14:35:14 1 7 2019-09-18 14:35:14 2 3 2019-09-18 14:55:14 1 10 2019-09-18 14:55:14 2 3 2019-09-18 15:15:14 1 9 2019-09-18 15:15:14 2 2 2019-09-18 15:20:14 1 8 2019-09-18 15:20:14 2 2 2019-09-18 15:25:14 1 7 2019-09-18 15:25:14 2 2 2019-09-18 16:20:14 1 8 2019-09-18 16:20:14 2 2 2019-09-18 16:55:14 1 7 2019-09-18 16:55:14 2 1 2019-09-18 17:00:14 1 6 2019-09-18 17:00:14 2 2 2019-09-18 17:25:14 1 7 2019-09-18 17:25:14 2 2 2019-09-18 17:35:14 1 8 2019-09-18 17:35:14 2 2 2019-09-18 18:00:14 1 7 2019-09-18 18:00:14 2 1 2019-09-18 18:05:14 1 8 2019-09-18 18:05:14 2 1 2019-09-18 18:30:14 1 8 2019-09-18 18:30:14 2 1 2019-09-18 18:35:14 1 7 2019-09-18 18:35:14 2 1 2019-09-18 18:45:14 1 8 2019-09-18 18:45:14 2 1 2019-09-18 18:50:14 1 7 2019-09-18 18:55:14 1 8 2019-09-18 19:25:14 1 7 2019-09-18 19:25:14 2 1 2019-09-18 19:30:14 1 7 2019-09-18 20:15:14 1 9 2019-09-18 20:55:14 1 6 2019-09-18 20:55:14 2 1 2019-09-18 21:25:14 1 6 2019-09-18 21:25:14 2 1 2019-09-18 21:30:14 1 6 2019-09-18 22:15:14 1 6 2019-09-18 22:15:14 2 1 2019-09-18 22:30:14 1 6 2019-09-18 22:30:14 2 1 2019-09-18 23:10:14 1 9 2019-09-18 23:10:14 2 2 2019-09-18 23:15:14 1 7 2019-09-18 23:15:14 2 1 2019-09-18 23:25:14 1 6 2019-09-18 23:25:14 2 2 2019-09-18 23:35:14 1 6 2019-09-18 23:35:14 2 1 2019-09-18 23:55:14 1 5 2019-09-19 00:10:14 1 5 2019-09-19 00:10:14 2 1 2019-09-19 00:25:14 1 6 2019-09-19 00:25:14 2 1 2019-09-19 00:45:14 1 5 2019-09-19 00:45:14 2 1 2019-09-19 01:10:14 1 5 2019-09-19 01:10:14 2 1 2019-09-19 01:55:14 1 5 2019-09-19 01:55:14 2 1 2019-09-19 02:00:14 1 5 2019-09-19 02:00:14 2 1 2019-09-19 03:00:14 1 5 2019-09-19 03:00:14 2 1 2019-09-19 03:05:14 1 5 2019-09-19 03:05:14 2 1 2019-09-19 03:35:14 2 1 2019-09-19 03:40:14 1 4 2019-09-19 03:40:14 2 1 2019-09-19 03:45:14 1 4 2019-09-19 03:45:14 2 1 2019-09-19 03:50:14 1 4 2019-09-19 03:50:14 2 1 2019-09-19 03:55:14 1 4 2019-09-19 03:55:14 2 1 2019-09-19 04:00:14 1 4 2019-09-19 04:00:14 2 1 2019-09-19 04:05:14 1 4 2019-09-19 04:05:14 2 1 2019-09-19 04:10:14 1 4 2019-09-19 04:10:14 2 1 2019-09-19 04:40:14 1 3 2019-09-19 04:40:14 2 1 2019-09-19 04:45:14 1 3 2019-09-19 04:45:14 2 1 2019-09-19 04:50:14 1 3 2019-09-19 04:50:14 2 1 2019-09-19 04:55:14 1 3 2019-09-19 04:55:14 2 1 2019-09-19 05:00:14 1 3 2019-09-19 05:00:14 2 1 2019-09-19 05:05:14 1 3 2019-09-19 05:05:14 2 1 2019-09-19 05:10:14 1 3 2019-09-19 05:10:14 2 1 2019-09-19 05:15:14 1 3 2019-09-19 05:15:14 2 1 2019-09-19 05:20:14 1 3 2019-09-19 05:20:14 2 1 2019-09-19 05:25:14 1 3 2019-09-19 05:25:14 2 1 2019-09-19 05:30:14 1 3 2019-09-19 05:30:14 2 1 2019-09-19 05:35:14 1 3 2019-09-19 05:35:14 2 1 2019-09-19 05:40:14 1 3 2019-09-19 05:40:14 2 1 2019-09-19 05:45:14 1 3 2019-09-19 05:45:14 2 1 2019-09-19 05:50:14 1 3 2019-09-19 05:50:14 2 1 2019-09-19 05:55:14 1 3 2019-09-18 03:30:14 1 1 2019-09-18 03:35:14 1 1 2019-09-18 03:40:14 1 1 2019-09-18 03:45:14 1 1 2019-09-18 03:50:14 1 1 2019-09-18 03:55:14 1 1 2019-09-18 04:00:14 1 1 2019-09-18 06:40:14 1 1 2019-09-18 07:00:14 1 1 2019-09-18 07:15:14 1 2 2019-09-18 07:25:14 1 2 2019-09-18 07:35:14 1 2 2019-09-18 07:45:14 1 2 2019-09-18 08:25:14 1 3 2019-09-18 09:05:14 1 6 2019-09-18 09:05:14 2 1 2019-09-18 09:15:14 1 5 2019-09-18 09:15:14 2 1 2019-09-18 09:40:14 1 5 2019-09-18 09:40:14 2 2 2019-09-18 09:50:14 1 5 2019-09-18 09:50:14 2 3 2019-09-18 09:55:14 1 6 2019-09-18 09:55:14 2 1 2019-09-18 10:15:14 1 3 2019-09-18 10:15:14 2 1 2019-09-18 10:20:14 1 4 2019-09-18 10:20:14 2 1 2019-09-18 10:25:14 1 4 2019-09-18 10:25:14 2 1 2019-09-18 10:30:14 1 5 2019-09-18 10:30:14 2 1 2019-09-18 10:45:14 1 7 2019-09-18 11:05:14 1 8 2019-09-18 11:30:14 1 8 2019-09-18 11:30:14 2 1 2019-09-18 12:20:14 1 8 2019-09-18 12:20:14 2 2 2019-09-18 12:35:14 1 7 2019-09-18 12:35:14 2 2 2019-09-18 12:45:14 1 7 2019-09-18 12:45:14 2 2 2019-09-18 13:05:14 1 7 2019-09-18 13:05:14 2 3 2019-09-18 13:15:14 1 7 2019-09-18 13:15:14 2 4 2019-09-18 13:25:14 1 7 2019-09-18 13:25:14 2 3 2019-09-18 13:50:14 1 5 2019-09-18 13:50:14 2 3 2019-09-18 13:55:14 1 7 2019-09-18 13:55:14 2 3 2019-09-18 14:20:14 1 6 2019-09-18 14:20:14 2 3 2019-09-18 15:05:14 1 10 2019-09-18 15:05:14 2 2 2019-09-18 15:30:14 1 7 2019-09-18 15:30:14 2 2 2019-09-18 15:50:14 1 7 2019-09-18 15:50:14 2 2 2019-09-18 16:05:14 1 7 2019-09-18 16:05:14 2 2 2019-09-18 16:10:14 1 6 2019-09-18 16:10:14 2 2 2019-09-18 16:25:14 1 7 2019-09-18 16:25:14 2 1 2019-09-18 16:30:14 1 8 2019-09-18 16:30:14 2 1 2019-09-18 16:35:14 1 7 2019-09-18 16:35:14 2 1 2019-09-18 17:10:14 1 8 2019-09-18 17:10:14 2 1 2019-09-18 17:30:14 1 7 2019-09-18 17:30:14 2 2 2019-09-18 17:45:14 1 7 2019-09-18 17:45:14 2 1 2019-09-18 17:50:14 1 8 2019-09-18 17:50:14 2 1 2019-09-18 17:55:14 1 8 2019-09-18 17:55:14 2 1 2019-09-18 18:15:14 1 7 2019-09-18 18:15:14 2 2 2019-09-18 18:20:14 1 7 2019-09-18 18:25:14 1 8 2019-09-18 18:40:14 1 8 2019-09-18 18:40:14 2 1 2019-09-18 19:10:14 1 6 2019-09-18 19:50:14 1 9 2019-09-18 20:00:14 1 8 2019-09-18 20:20:14 1 8 2019-09-18 20:35:14 1 8 2019-09-18 20:35:14 2 1 2019-09-18 20:40:14 1 5 2019-09-18 20:50:14 1 5 2019-09-18 20:50:14 2 1 2019-09-18 21:10:14 1 5 2019-09-18 21:10:14 2 1 2019-09-18 21:40:14 1 7 2019-09-18 21:50:14 1 9 2019-09-18 21:55:14 1 7 2019-09-18 22:05:14 1 8 2019-09-18 22:05:14 2 1 2019-09-18 22:10:14 1 8 2019-09-18 22:10:14 2 1 2019-09-18 22:20:14 1 7 2019-09-18 22:20:14 2 1 2019-09-18 22:35:14 1 5 2019-09-18 22:35:14 2 1 2019-09-18 22:40:14 1 6 2019-09-18 22:40:14 2 1 2019-09-18 22:45:14 1 6 2019-09-18 22:45:14 2 1 2019-09-18 22:50:14 1 5 2019-09-18 22:50:14 2 2 2019-09-18 23:00:14 1 9 2019-09-18 23:00:14 2 2 2019-09-18 23:20:14 1 6 2019-09-18 23:20:14 2 1 2019-09-18 23:30:14 1 6 2019-09-18 23:45:14 1 6 2019-09-18 23:45:14 2 1 2019-09-19 00:05:14 1 6 2019-09-19 00:05:14 2 1 2019-09-19 00:15:14 1 7 2019-09-19 00:15:14 2 1 2019-09-19 00:30:14 1 6 2019-09-19 00:30:14 2 1 2019-09-19 00:35:14 1 6 2019-09-19 00:35:14 2 1 2019-09-19 00:55:14 1 5 2019-09-19 00:55:14 2 1 2019-09-19 01:20:14 1 5 2019-09-19 01:20:14 2 1 2019-09-19 01:25:14 1 5 2019-09-19 01:25:14 2 1 2019-09-19 01:30:14 1 5 2019-09-19 01:30:14 2 1 2019-09-19 01:35:14 1 5 2019-09-19 01:35:14 2 1 2019-09-19 01:40:14 1 5 2019-09-19 01:40:14 2 1 2019-09-19 01:45:14 1 5 2019-09-19 01:45:14 2 1 2019-09-19 02:25:14 1 5 2019-09-19 02:25:14 2 1 2019-09-19 02:30:14 1 5 2019-09-19 02:30:14 2 1 2019-09-19 02:35:14 1 5 2019-09-19 02:35:14 2 1 2019-09-19 02:40:14 1 5 2019-09-19 02:40:14 2 1 2019-09-19 02:45:14 1 5 2019-09-19 02:45:14 2 1 2019-09-19 02:50:14 1 5 2019-09-19 02:50:14 2 1 2019-09-19 02:55:14 1 5 2019-09-19 02:55:14 2 1 2019-09-19 03:20:14 1 5 2019-09-19 03:20:14 2 1 2019-09-19 03:25:14 1 5 2019-09-19 03:25:14 2 1 2019-09-19 04:15:14 1 4 2019-09-19 04:15:14 2 1 2019-09-19 04:20:14 1 4 2019-09-19 04:20:14 2 1 2019-09-19 04:25:14 1 4 2019-09-19 04:25:14 2 1 2019-09-19 04:30:14 1 4 2019-09-19 04:30:14 2 1 2019-09-19 04:35:14 1 4 2019-09-19 04:35:14 2 1 2019-09-19 05:55:14 2 1 2019-09-19 06:00:14 1 3 2019-09-19 06:00:14 2 1 2019-09-19 06:05:14 1 3 2019-09-19 06:05:14 2 1 2019-09-19 06:10:14 1 3 2019-09-19 06:15:14 1 3 2019-09-19 06:20:14 1 3 2019-09-19 06:25:14 1 4 2019-09-19 06:25:14 2 1 2019-09-19 06:30:14 1 4 2019-09-19 06:30:14 2 1 2019-09-19 06:35:14 1 3 2019-09-19 06:35:14 2 1 2019-09-19 06:40:14 1 2 2019-09-19 06:40:14 2 1 2019-09-19 07:50:14 1 4 2019-09-19 08:15:14 1 3 2019-09-19 08:20:14 1 3 2019-09-19 08:25:14 1 4 2019-09-19 09:05:14 1 4 2019-09-19 09:15:14 1 5 2019-09-19 09:20:14 1 5 2019-09-19 09:25:14 1 5 2019-09-19 09:50:14 1 5 2019-09-19 09:50:14 2 1 2019-09-19 09:55:14 1 5 2019-09-19 09:55:14 2 1 2019-09-19 10:05:14 1 4 2019-09-19 10:45:14 1 4 2019-09-19 10:45:14 2 1 2019-09-19 10:50:14 1 6 2019-09-19 10:50:14 2 1 2019-09-19 11:05:14 1 7 2019-09-19 11:05:14 2 1 2019-09-19 11:10:14 1 7 2019-09-19 11:20:14 1 6 2019-09-19 11:35:14 1 8 2019-09-19 12:10:14 1 5 2019-09-19 12:10:14 2 1 2019-09-19 12:15:14 1 6 2019-09-19 12:15:14 2 2 2019-09-19 12:20:14 1 6 2019-09-19 12:20:14 2 2 2019-09-19 12:35:14 1 7 2019-09-19 12:35:14 2 3 2019-09-19 13:00:14 1 7 2019-09-19 13:00:14 2 5 2019-09-19 13:40:14 1 8 2019-09-19 13:40:14 2 4 2019-09-19 15:00:14 1 4 2019-09-19 15:00:14 2 2 2019-09-19 15:05:14 1 7 2019-09-19 15:05:14 2 2 2019-09-19 15:15:14 1 5 2019-09-19 15:15:14 2 2 2019-09-19 15:35:14 1 6 2019-09-19 15:35:14 2 2 2019-09-19 15:40:14 1 6 2019-09-19 15:40:14 2 2 2019-09-19 15:45:14 1 6 2019-09-19 15:45:14 2 2 2019-09-19 16:00:14 1 6 2019-09-19 16:00:14 2 3 2019-09-19 16:35:14 1 6 2019-09-19 16:35:14 2 1 2019-09-19 16:45:14 1 6 2019-09-19 16:45:14 2 1 2019-09-19 16:50:14 1 5 2019-09-19 16:50:14 2 1 2019-09-19 16:55:14 1 6 2019-09-19 16:55:14 2 1 2019-09-19 17:10:14 1 6 2019-09-19 17:10:14 2 1 2019-09-19 17:15:14 1 7 2019-09-19 17:15:14 2 1 2019-09-19 17:35:14 1 6 2019-09-19 17:35:14 2 1 2019-09-19 17:40:14 1 5 2019-09-19 17:40:14 2 1 2019-09-19 17:50:14 1 6 2019-09-19 17:50:14 2 1 2019-09-19 17:55:14 1 6 2019-09-19 17:55:14 2 1 2019-09-19 18:15:14 1 5 2019-09-19 18:15:14 2 3 2019-09-19 18:30:14 1 8 2019-09-19 18:30:14 2 2 2019-09-19 18:35:14 1 8 2019-09-19 18:35:14 2 2 2019-09-19 18:55:14 1 5 2019-09-19 18:55:14 2 2 2019-09-19 19:15:14 1 4 2019-09-19 19:15:14 2 2 2019-09-19 19:25:14 1 5 2019-09-19 19:25:14 2 2 2019-09-19 19:40:14 1 6 2019-09-19 19:40:14 2 2 2019-09-19 19:50:14 1 8 2019-09-19 19:50:14 2 2 2019-09-19 20:10:14 1 7 2019-09-19 20:10:14 2 2 2019-09-19 20:45:14 1 9 2019-09-19 20:45:14 2 2 2019-09-19 21:10:14 1 9 2019-09-19 21:10:14 2 2 2019-09-19 21:30:14 1 9 2019-09-19 21:30:14 2 1 2019-09-19 22:25:14 1 9 2019-09-19 22:25:14 2 2 2019-09-19 22:35:14 1 5 2019-09-19 22:35:14 2 2 2019-09-19 22:40:14 1 6 2019-09-19 22:40:14 2 2 2019-09-19 23:05:14 1 6 2019-09-19 23:10:14 1 7 2019-09-19 23:15:14 1 6 2019-09-19 23:30:14 1 7 2019-09-19 23:30:14 2 1 2019-09-19 23:45:14 1 7 2019-09-19 23:45:14 2 1 2019-09-19 23:50:14 1 8 2019-09-19 23:50:14 2 1 2019-09-20 00:00:14 1 7 2019-09-20 00:00:14 2 1 2019-09-20 00:15:14 1 6 2019-09-20 00:15:14 2 1 2019-09-20 00:20:14 1 5 2019-09-20 00:20:14 2 1 2019-09-20 00:50:14 1 4 2019-09-20 00:50:14 2 1 2019-09-20 01:00:14 1 4 2019-09-20 01:00:14 2 1 2019-09-20 01:05:14 1 4 2019-09-20 01:05:14 2 1 2019-09-20 01:10:14 1 4 2019-09-20 01:10:14 2 1 2019-09-20 01:15:14 1 4 2019-09-20 01:15:14 2 1 2019-09-20 01:20:14 1 4 2019-09-20 01:20:14 2 1 2019-09-20 01:25:14 1 4 2019-09-20 01:25:14 2 1 2019-09-20 01:30:14 1 4 2019-09-20 01:30:14 2 1 2019-09-20 01:35:14 1 4 2019-09-20 01:35:14 2 1 2019-09-20 01:40:14 1 4 2019-09-20 01:40:14 2 1 2019-09-20 01:45:14 1 4 2019-09-20 01:45:14 2 1 2019-09-20 01:50:14 1 4 2019-09-20 01:50:14 2 1 2019-09-20 01:55:14 1 4 2019-09-20 01:55:14 2 1 2019-09-20 02:35:14 1 4 2019-09-20 02:35:14 2 2 2019-09-20 02:50:14 1 3 2019-09-20 02:50:14 2 1 2019-09-20 03:15:14 1 2 2019-09-20 04:00:14 1 3 2019-09-20 04:05:14 1 3 2019-09-20 04:20:14 1 2 2019-09-20 04:25:14 1 2 2019-09-20 04:30:14 1 2 2019-09-20 04:35:14 1 2 2019-09-20 04:40:14 1 2 2019-09-20 04:45:14 1 2 2019-09-20 04:50:14 1 2 2019-09-20 04:55:14 1 2 2019-09-20 05:00:14 1 2 2019-09-20 05:05:14 1 2 2019-09-20 05:10:14 1 2 2019-09-20 05:15:14 1 2 2019-09-20 05:20:14 1 2 2019-09-20 05:25:14 1 2 2019-09-20 05:30:14 1 2 2019-09-20 05:45:14 1 3 2019-09-20 06:40:14 1 3 2019-09-20 07:10:14 1 2 2019-09-20 07:25:14 1 3 2019-09-20 07:30:14 1 3 2019-09-20 07:40:14 1 4 2019-09-20 07:50:14 1 3 2019-09-20 07:55:14 1 3 2019-09-20 08:05:14 1 2 2019-09-20 08:05:14 2 1 2019-09-20 08:10:14 1 2 2019-09-20 08:10:14 2 1 2019-09-20 09:10:14 1 3 2019-09-20 09:15:14 1 4 2019-09-20 09:15:14 2 1 2019-09-20 09:20:14 1 3 2019-09-20 09:20:14 2 1 2019-09-20 09:30:14 1 3 2019-09-20 09:30:14 2 2 2019-09-20 09:45:14 1 5 2019-09-20 09:45:14 2 3 2019-09-20 09:55:14 1 5 2019-09-19 06:45:14 1 2 2019-09-19 06:50:14 1 2 2019-09-19 06:55:14 1 2 2019-09-19 07:00:14 1 2 2019-09-19 07:05:14 1 2 2019-09-19 07:10:14 1 2 2019-09-19 07:15:14 1 2 2019-09-19 07:20:14 1 2 2019-09-19 07:25:14 1 2 2019-09-19 07:30:14 1 2 2019-09-19 07:35:14 1 2 2019-09-19 07:40:14 1 2 2019-09-19 07:45:14 1 2 2019-09-19 08:00:14 1 3 2019-09-19 08:30:14 1 4 2019-09-19 08:35:14 1 4 2019-09-19 09:00:14 1 4 2019-09-19 09:10:14 1 5 2019-09-19 09:30:14 1 4 2019-09-19 09:45:14 1 5 2019-09-19 10:10:14 1 5 2019-09-19 10:15:14 1 6 2019-09-19 10:20:14 1 6 2019-09-19 10:20:14 2 1 2019-09-19 10:30:14 1 4 2019-09-19 10:30:14 2 1 2019-09-19 11:15:14 1 7 2019-09-19 11:40:14 1 7 2019-09-19 11:50:14 1 7 2019-09-19 12:00:14 1 5 2019-09-19 12:25:14 1 7 2019-09-19 12:25:14 2 3 2019-09-19 12:30:14 1 7 2019-09-19 12:30:14 2 3 2019-09-19 12:45:14 1 7 2019-09-19 12:45:14 2 3 2019-09-19 12:50:14 1 7 2019-09-19 12:50:14 2 4 2019-09-19 12:55:14 1 6 2019-09-19 12:55:14 2 4 2019-09-19 13:10:14 1 7 2019-09-19 13:10:14 2 4 2019-09-19 13:20:14 1 5 2019-09-19 13:20:14 2 4 2019-09-19 13:25:14 1 5 2019-09-19 13:25:14 2 4 2019-09-19 13:55:14 1 9 2019-09-19 13:55:14 2 4 2019-09-19 14:05:14 1 7 2019-09-19 14:05:14 2 4 2019-09-19 14:10:14 1 5 2019-09-19 14:10:14 2 4 2019-09-19 14:15:14 1 4 2019-09-19 14:15:14 2 4 2019-09-19 14:35:14 1 3 2019-09-19 14:35:14 2 3 2019-09-19 14:45:14 1 5 2019-09-19 14:45:14 2 3 2019-09-19 15:50:14 1 7 2019-09-19 15:50:14 2 2 2019-09-19 15:55:14 1 7 2019-09-19 15:55:14 2 2 2019-09-19 16:15:14 1 7 2019-09-19 16:15:14 2 2 2019-09-19 16:25:14 1 7 2019-09-19 16:25:14 2 2 2019-09-19 17:20:14 1 6 2019-09-19 17:20:14 2 2 2019-09-19 17:45:14 1 6 2019-09-19 17:45:14 2 1 2019-09-19 18:00:14 1 6 2019-09-19 18:00:14 2 1 2019-09-19 18:10:14 1 6 2019-09-19 18:10:14 2 3 2019-09-19 18:20:14 1 5 2019-09-19 18:20:14 2 2 2019-09-19 18:25:14 1 6 2019-09-19 18:25:14 2 2 2019-09-19 18:50:14 1 6 2019-09-19 18:50:14 2 2 2019-09-19 19:20:14 1 5 2019-09-19 19:20:14 2 2 2019-09-19 19:45:14 1 7 2019-09-19 19:45:14 2 2 2019-09-19 20:05:14 1 9 2019-09-19 20:05:14 2 1 2019-09-19 20:15:14 1 8 2019-09-19 20:15:14 2 1 2019-09-19 20:35:14 1 8 2019-09-19 20:35:14 2 2 2019-09-19 20:50:14 1 7 2019-09-19 20:50:14 2 3 2019-09-19 21:00:14 1 8 2019-09-19 21:00:14 2 3 2019-09-19 21:15:14 1 9 2019-09-19 21:15:14 2 3 2019-09-19 21:20:14 1 10 2019-09-19 21:20:14 2 3 2019-09-19 21:35:14 1 10 2019-09-19 21:35:14 2 1 2019-09-19 21:40:14 1 10 2019-09-19 21:50:14 1 8 2019-09-19 22:00:14 1 10 2019-09-19 22:05:14 1 10 2019-09-19 22:05:14 2 1 2019-09-19 22:10:14 1 11 2019-09-19 22:10:14 2 2 2019-09-19 22:15:14 1 11 2019-09-19 22:15:14 2 2 2019-09-19 22:50:14 1 5 2019-09-19 22:50:14 2 2 2019-09-19 23:00:14 1 7 2019-09-19 23:00:14 2 2 2019-09-19 23:20:14 1 6 2019-09-19 23:35:14 1 8 2019-09-19 23:35:14 2 1 2019-09-19 23:55:14 1 7 2019-09-19 23:55:14 2 1 2019-09-20 00:05:14 1 7 2019-09-20 00:05:14 2 1 2019-09-20 00:25:14 1 6 2019-09-20 00:25:14 2 1 2019-09-20 00:30:14 1 5 2019-09-20 00:30:14 2 1 2019-09-20 00:35:14 1 4 2019-09-20 00:35:14 2 1 2019-09-20 00:55:14 1 4 2019-09-20 00:55:14 2 1 2019-09-20 02:05:14 1 4 2019-09-20 02:05:14 2 1 2019-09-20 02:15:14 1 2 2019-09-20 02:15:14 2 2 2019-09-20 02:20:14 1 3 2019-09-20 02:20:14 2 2 2019-09-20 02:30:14 1 4 2019-09-20 02:30:14 2 2 2019-09-20 03:00:14 1 2 2019-09-20 03:05:14 1 2 2019-09-20 03:10:14 1 2 2019-09-20 03:20:14 1 1 2019-09-20 04:10:14 1 4 2019-09-20 05:35:14 1 3 2019-09-20 05:50:14 1 2 2019-09-20 05:55:14 1 2 2019-09-20 06:00:14 1 2 2019-09-20 06:05:14 1 2 2019-09-20 06:10:14 1 2 2019-09-20 06:15:14 1 2 2019-09-20 06:20:14 1 2 2019-09-20 06:30:14 1 3 2019-09-20 06:35:14 1 3 2019-09-20 07:15:14 1 3 2019-09-20 07:20:14 1 3 2019-09-20 08:00:14 1 3 2019-09-20 08:15:14 1 3 2019-09-20 08:15:14 2 1 2019-09-20 08:30:14 1 3 2019-09-20 08:45:14 1 5 2019-09-20 08:50:14 1 4 2019-09-20 08:55:14 1 4 2019-09-20 09:00:14 1 3 2019-09-20 09:05:14 1 3 2019-09-20 09:35:14 1 4 2019-09-20 09:35:14 2 2 2019-09-20 09:50:14 1 5 2019-09-20 09:50:14 2 2 2019-09-20 09:55:14 2 2 2019-09-20 10:05:14 1 6 2019-09-20 10:05:14 2 2 2019-09-20 10:15:14 1 4 2019-09-20 10:15:14 2 1 2019-09-20 10:20:14 1 3 2019-09-20 10:20:14 2 1 2019-09-20 10:25:14 1 3 2019-09-20 10:25:14 2 1 2019-09-20 10:30:14 1 4 2019-09-20 10:30:14 2 1 2019-09-20 10:40:14 1 2 2019-09-20 10:45:14 1 2 2019-09-20 10:55:14 1 2 2019-09-20 10:55:14 2 1 2019-09-20 11:00:14 1 2 2019-09-20 11:05:14 1 4 2019-09-20 11:10:14 1 4 2019-09-20 11:15:14 1 4 2019-09-19 07:55:14 1 3 2019-09-19 08:05:14 1 2 2019-09-19 08:10:14 1 2 2019-09-19 08:40:14 1 3 2019-09-19 08:45:14 1 4 2019-09-19 08:50:14 1 4 2019-09-19 08:55:14 1 4 2019-09-19 09:35:14 1 5 2019-09-19 09:40:14 1 5 2019-09-19 10:00:14 1 4 2019-09-19 10:25:14 1 7 2019-09-19 10:25:14 2 1 2019-09-19 10:35:14 1 5 2019-09-19 10:35:14 2 1 2019-09-19 10:40:14 1 5 2019-09-19 10:55:14 1 6 2019-09-19 11:00:14 1 8 2019-09-19 11:00:14 2 1 2019-09-19 11:25:14 1 8 2019-09-19 11:30:14 1 8 2019-09-19 11:45:14 1 6 2019-09-19 11:55:14 1 6 2019-09-19 11:55:14 2 1 2019-09-19 12:05:14 1 4 2019-09-19 12:40:14 1 7 2019-09-19 12:40:14 2 3 2019-09-19 13:05:14 1 6 2019-09-19 13:05:14 2 5 2019-09-19 13:15:14 1 7 2019-09-19 13:15:14 2 4 2019-09-19 13:30:14 1 5 2019-09-19 13:30:14 2 4 2019-09-19 13:35:14 1 6 2019-09-19 13:35:14 2 4 2019-09-19 13:45:14 1 9 2019-09-19 13:45:14 2 4 2019-09-19 13:50:14 1 10 2019-09-19 13:50:14 2 4 2019-09-19 14:00:14 1 6 2019-09-19 14:00:14 2 4 2019-09-19 14:20:14 1 6 2019-09-19 14:20:14 2 4 2019-09-19 14:25:14 1 6 2019-09-19 14:25:14 2 4 2019-09-19 14:30:14 1 4 2019-09-19 14:30:14 2 4 2019-09-19 14:40:14 1 5 2019-09-19 14:40:14 2 3 2019-09-19 14:50:14 1 4 2019-09-19 14:50:14 2 3 2019-09-19 14:55:14 1 4 2019-09-19 14:55:14 2 2 2019-09-19 15:10:14 1 5 2019-09-19 15:10:14 2 2 2019-09-19 15:20:14 1 4 2019-09-19 15:20:14 2 2 2019-09-19 15:25:14 1 4 2019-09-19 15:25:14 2 2 2019-09-19 15:30:14 1 5 2019-09-19 15:30:14 2 2 2019-09-19 16:05:14 1 8 2019-09-19 16:05:14 2 3 2019-09-19 16:10:14 1 8 2019-09-19 16:10:14 2 3 2019-09-19 16:20:14 1 8 2019-09-19 16:20:14 2 2 2019-09-19 16:30:14 1 7 2019-09-19 16:30:14 2 1 2019-09-19 16:40:14 1 6 2019-09-19 16:40:14 2 2 2019-09-19 17:00:14 1 5 2019-09-19 17:00:14 2 1 2019-09-19 17:05:14 1 4 2019-09-19 17:05:14 2 1 2019-09-19 17:25:14 1 7 2019-09-19 17:25:14 2 1 2019-09-19 17:30:14 1 8 2019-09-19 17:30:14 2 1 2019-09-19 18:05:14 1 7 2019-09-19 18:05:14 2 2 2019-09-19 18:40:14 1 8 2019-09-19 18:40:14 2 2 2019-09-19 18:45:14 1 8 2019-09-19 18:45:14 2 2 2019-09-19 19:00:14 1 6 2019-09-19 19:00:14 2 2 2019-09-19 19:05:14 1 6 2019-09-19 19:05:14 2 3 2019-09-19 19:10:14 1 6 2019-09-19 19:10:14 2 3 2019-09-19 19:30:14 1 7 2019-09-19 19:30:14 2 2 2019-09-19 19:35:14 1 8 2019-09-19 19:35:14 2 2 2019-09-19 19:55:14 1 10 2019-09-19 19:55:14 2 1 2019-09-19 20:00:14 1 10 2019-09-19 20:00:14 2 1 2019-09-19 20:20:14 1 8 2019-09-19 20:25:14 1 9 2019-09-19 20:25:14 2 1 2019-09-19 20:30:14 1 9 2019-09-19 20:30:14 2 1 2019-09-19 20:40:14 1 8 2019-09-19 20:40:14 2 2 2019-09-19 20:55:14 1 11 2019-09-19 20:55:14 2 3 2019-09-19 21:05:14 1 9 2019-09-19 21:05:14 2 2 2019-09-19 21:25:14 1 8 2019-09-19 21:25:14 2 3 2019-09-19 21:45:14 1 9 2019-09-19 21:55:14 1 9 2019-09-19 22:20:14 1 9 2019-09-19 22:20:14 2 2 2019-09-19 22:30:14 1 6 2019-09-19 22:30:14 2 2 2019-09-19 22:45:14 1 5 2019-09-19 22:45:14 2 2 2019-09-19 22:55:14 1 6 2019-09-19 22:55:14 2 2 2019-09-19 23:25:14 1 7 2019-09-19 23:40:14 1 7 2019-09-19 23:40:14 2 1 2019-09-20 00:10:14 1 5 2019-09-20 00:10:14 2 1 2019-09-20 00:40:14 1 2 2019-09-20 00:40:14 2 1 2019-09-20 00:45:14 1 5 2019-09-20 00:45:14 2 1 2019-09-20 02:00:14 1 4 2019-09-20 02:00:14 2 1 2019-09-20 02:10:14 1 4 2019-09-20 02:10:14 2 2 2019-09-20 02:25:14 1 4 2019-09-20 02:25:14 2 2 2019-09-20 02:40:14 1 2 2019-09-20 02:40:14 2 2 2019-09-20 02:45:14 1 3 2019-09-20 02:45:14 2 2 2019-09-20 02:55:14 1 2 2019-09-20 03:25:14 1 2 2019-09-20 03:30:14 1 2 2019-09-20 03:35:14 1 2 2019-09-20 03:40:14 1 2 2019-09-20 03:45:14 1 2 2019-09-20 03:50:14 1 2 2019-09-20 03:55:14 1 2 2019-09-20 04:15:14 1 3 2019-09-20 05:40:14 1 2 2019-09-20 06:25:14 1 3 2019-09-20 06:45:14 1 3 2019-09-20 06:50:14 1 3 2019-09-20 06:55:14 1 3 2019-09-20 07:00:14 1 3 2019-09-20 07:05:14 1 3 2019-09-20 07:35:14 1 3 2019-09-20 07:45:14 1 4 2019-09-20 08:20:14 1 3 2019-09-20 08:25:14 1 3 2019-09-20 08:35:14 1 4 2019-09-20 08:40:14 1 4 2019-09-20 09:25:14 1 4 2019-09-20 09:25:14 2 2 2019-09-20 09:40:14 1 5 2019-09-20 09:40:14 2 2 2019-09-20 10:00:14 1 5 2019-09-20 10:00:14 2 3 2019-09-20 10:10:14 1 5 2019-09-20 10:10:14 2 1 2019-09-20 10:35:14 1 3 2019-09-20 10:35:14 2 1 2019-09-20 10:50:14 1 3 2019-09-20 10:50:14 2 1 2019-09-20 11:20:14 1 4 2019-09-20 11:25:14 1 4 2019-09-20 11:30:15 1 3 2019-09-20 11:30:15 2 1 2019-09-20 11:35:14 1 5 2019-09-20 11:35:14 2 1 2019-09-20 11:40:14 1 5 2019-09-20 11:40:14 2 1 2019-09-20 11:45:14 1 5 2019-09-20 11:45:14 2 2 2019-09-20 11:50:14 1 5 2019-09-20 11:50:14 2 2 2019-09-20 12:05:14 1 3 2019-09-20 12:05:14 2 1 2019-09-20 12:10:14 1 5 2019-09-20 12:10:14 2 1 2019-09-20 12:25:14 1 4 2019-09-20 12:25:14 2 2 2019-09-20 12:30:14 1 7 2019-09-20 12:30:14 2 2 2019-09-20 12:55:14 1 4 2019-09-20 12:55:14 2 5 2019-09-20 13:05:14 1 3 2019-09-20 13:05:14 2 2 2019-09-20 13:15:14 1 5 2019-09-20 13:15:14 2 2 2019-09-20 13:30:14 1 5 2019-09-20 13:30:14 2 3 2019-09-20 13:50:14 1 6 2019-09-20 13:50:14 2 3 2019-09-20 14:00:14 1 5 2019-09-20 14:00:14 2 4 2019-09-20 14:25:14 1 7 2019-09-20 14:25:14 2 3 2019-09-20 14:35:14 1 7 2019-09-20 14:35:14 2 4 2019-09-20 14:50:14 1 6 2019-09-20 14:50:14 2 2 2019-09-20 15:00:14 1 6 2019-09-20 15:00:14 2 2 2019-09-20 15:20:14 1 5 2019-09-20 15:20:14 2 5 2019-09-20 15:30:14 1 4 2019-09-20 15:30:14 2 5 2019-09-20 15:50:14 1 4 2019-09-20 15:50:14 2 3 2019-09-20 16:05:14 1 3 2019-09-20 16:05:14 2 3 2019-09-20 16:20:14 1 4 2019-09-20 16:20:14 2 1 2019-09-20 16:30:14 1 5 2019-09-20 16:30:14 2 1 2019-09-20 16:45:14 1 4 2019-09-20 16:45:14 2 1 2019-09-20 17:00:14 1 4 2019-09-20 17:00:14 2 1 2019-09-20 17:15:14 1 4 2019-09-20 18:15:14 1 6 2019-09-20 18:15:14 2 1 2019-09-20 18:20:14 1 5 2019-09-20 18:20:14 2 1 2019-09-20 18:35:14 1 6 2019-09-20 18:55:14 1 3 2019-09-20 19:00:14 1 4 2019-09-20 19:20:14 1 7 2019-09-20 19:20:14 2 1 2019-09-20 20:00:14 1 6 2019-09-20 20:00:14 2 3 2019-09-20 20:15:14 1 4 2019-09-20 20:15:14 2 2 2019-09-20 20:25:14 1 5 2019-09-20 20:25:14 2 1 2019-09-20 20:35:14 1 5 2019-09-20 20:35:14 2 1 2019-09-20 20:40:14 1 5 2019-09-20 20:40:14 2 1 2019-09-20 20:50:14 1 5 2019-09-20 20:50:14 2 1 2019-09-20 21:10:14 1 6 2019-09-20 21:10:14 2 2 2019-09-20 21:15:14 1 5 2019-09-20 21:15:14 2 2 2019-09-20 21:20:14 1 5 2019-09-20 21:20:14 2 2 2019-09-20 21:30:14 1 7 2019-09-20 21:30:14 2 2 2019-09-20 21:40:14 1 7 2019-09-20 21:40:14 2 2 2019-09-20 22:25:14 1 4 2019-09-20 22:25:14 2 3 2019-09-20 22:45:14 1 3 2019-09-20 22:45:14 2 4 2019-09-20 23:10:14 1 3 2019-09-20 23:10:14 2 2 2019-09-20 23:15:14 1 4 2019-09-20 23:15:14 2 2 2019-09-20 23:20:14 1 3 2019-09-20 23:20:14 2 3 2019-09-20 23:25:14 1 4 2019-09-20 23:25:14 2 3 2019-09-20 23:50:14 1 5 2019-09-20 23:50:14 2 2 2019-09-21 00:00:14 1 6 2019-09-21 00:00:14 2 1 2019-09-21 00:25:14 1 6 2019-09-21 00:30:14 1 6 2019-09-21 00:40:14 1 5 2019-09-21 00:45:14 1 5 2019-09-21 00:50:14 1 5 2019-09-21 01:30:14 1 6 2019-09-21 01:40:14 1 5 2019-09-21 01:45:14 1 4 2019-09-21 01:50:14 1 4 2019-09-21 02:00:14 1 4 2019-09-21 02:00:14 2 1 2019-09-21 02:05:14 1 3 2019-09-21 02:05:14 2 1 2019-09-21 02:10:14 1 3 2019-09-21 02:10:14 2 1 2019-09-21 02:15:14 1 3 2019-09-21 02:15:14 2 1 2019-09-21 03:15:14 1 3 2019-09-21 04:05:14 1 3 2019-09-21 04:05:14 2 1 2019-09-21 04:15:14 1 3 2019-09-21 04:20:14 1 3 2019-09-21 04:30:14 1 2 2019-09-21 04:35:14 1 2 2019-09-21 04:40:14 1 2 2019-09-21 04:45:14 1 2 2019-09-21 06:20:14 1 3 2019-09-21 06:20:14 2 1 2019-09-21 06:45:14 1 4 2019-09-21 06:45:14 2 1 2019-09-21 06:50:14 1 4 2019-09-21 06:50:14 2 1 2019-09-21 06:55:14 1 4 2019-09-21 06:55:14 2 1 2019-09-21 07:20:14 1 3 2019-09-21 07:20:14 2 1 2019-09-21 07:25:14 1 3 2019-09-21 07:25:14 2 1 2019-09-21 07:35:14 1 3 2019-09-21 08:00:14 1 4 2019-09-21 08:00:14 2 1 2019-09-21 08:05:14 1 4 2019-09-21 08:05:14 2 1 2019-09-21 08:10:14 1 4 2019-09-21 08:10:14 2 1 2019-09-21 08:30:14 1 5 2019-09-21 08:55:14 1 5 2019-09-21 09:20:14 1 8 2019-09-21 09:20:14 2 2 2019-09-21 09:55:14 1 7 2019-09-21 09:55:14 2 1 2019-09-21 10:00:14 1 7 2019-09-21 10:00:14 2 1 2019-09-21 10:05:14 1 7 2019-09-21 10:05:14 2 1 2019-09-21 11:05:14 1 6 2019-09-21 11:35:14 1 8 2019-09-21 11:40:14 1 7 2019-09-21 11:45:14 1 10 2019-09-21 11:45:14 2 2 2019-09-21 11:50:14 1 8 2019-09-21 11:50:14 2 1 2019-09-21 12:10:14 1 7 2019-09-21 12:15:14 1 8 2019-09-21 12:15:14 2 1 2019-09-21 12:20:14 1 8 2019-09-21 12:40:14 1 5 2019-09-21 12:45:14 1 7 2019-09-21 12:45:14 2 2 2019-09-21 12:50:14 1 6 2019-09-21 12:50:14 2 2 2019-09-21 12:55:14 1 6 2019-09-21 12:55:14 2 2 2019-09-21 13:05:14 1 4 2019-09-21 13:05:14 2 2 2019-09-21 13:10:14 1 6 2019-09-21 13:10:14 2 1 2019-09-21 13:15:14 1 10 2019-09-21 13:20:14 1 9 2019-09-21 13:30:14 1 8 2019-09-21 13:30:14 2 1 2019-09-21 13:40:14 1 7 2019-09-21 13:40:14 2 1 2019-09-21 13:50:14 1 7 2019-09-21 13:50:14 2 1 2019-09-21 14:00:14 1 7 2019-09-21 14:00:14 2 1 2019-09-21 14:05:14 1 8 2019-09-21 14:05:14 2 2 2019-09-21 14:10:14 1 8 2019-09-21 14:10:14 2 1 2019-09-21 14:15:14 1 7 2019-09-20 11:55:14 1 5 2019-09-20 11:55:14 2 2 2019-09-20 12:00:14 1 5 2019-09-20 12:00:14 2 1 2019-09-20 12:20:14 1 6 2019-09-20 12:20:14 2 2 2019-09-20 12:35:14 1 6 2019-09-20 12:35:14 2 4 2019-09-20 12:45:14 1 5 2019-09-20 12:45:14 2 5 2019-09-20 12:50:14 1 4 2019-09-20 12:50:14 2 5 2019-09-20 13:00:14 1 4 2019-09-20 13:00:14 2 6 2019-09-20 13:10:14 1 4 2019-09-20 13:10:14 2 2 2019-09-20 13:25:14 1 6 2019-09-20 13:25:14 2 2 2019-09-20 13:35:14 1 5 2019-09-20 13:35:14 2 3 2019-09-20 13:40:14 1 7 2019-09-20 13:40:14 2 3 2019-09-20 13:45:14 1 6 2019-09-20 13:45:14 2 3 2019-09-20 14:05:14 1 5 2019-09-20 14:05:14 2 2 2019-09-20 14:30:14 1 7 2019-09-20 14:30:14 2 3 2019-09-20 14:40:14 1 6 2019-09-20 14:40:14 2 3 2019-09-20 14:45:14 1 6 2019-09-20 14:45:14 2 3 2019-09-20 15:10:14 1 6 2019-09-20 15:10:14 2 4 2019-09-20 15:25:14 1 3 2019-09-20 15:25:14 2 3 2019-09-20 15:40:14 1 7 2019-09-20 15:40:14 2 4 2019-09-20 15:45:14 1 6 2019-09-20 15:45:14 2 4 2019-09-20 15:55:14 1 4 2019-09-20 15:55:14 2 4 2019-09-20 16:00:14 1 3 2019-09-20 16:00:14 2 3 2019-09-20 16:15:14 1 3 2019-09-20 16:15:14 2 1 2019-09-20 16:25:14 1 5 2019-09-20 16:25:14 2 1 2019-09-20 16:35:14 1 4 2019-09-20 16:35:14 2 1 2019-09-20 17:10:14 1 4 2019-09-20 17:50:14 1 4 2019-09-20 17:50:14 2 1 2019-09-20 17:55:14 1 4 2019-09-20 17:55:14 2 2 2019-09-20 18:05:14 1 6 2019-09-20 18:05:14 2 3 2019-09-20 18:30:14 1 6 2019-09-20 18:40:14 1 4 2019-09-20 18:45:14 1 4 2019-09-20 19:10:14 1 6 2019-09-20 19:25:14 1 6 2019-09-20 19:25:14 2 2 2019-09-20 19:35:14 1 6 2019-09-20 19:35:14 2 2 2019-09-20 19:40:14 1 6 2019-09-20 19:40:14 2 2 2019-09-20 19:45:14 1 6 2019-09-20 19:45:14 2 3 2019-09-20 19:55:14 1 5 2019-09-20 19:55:14 2 3 2019-09-20 21:05:14 1 5 2019-09-20 21:05:14 2 2 2019-09-20 22:05:14 1 4 2019-09-20 22:05:14 2 2 2019-09-20 22:10:14 1 4 2019-09-20 22:10:14 2 2 2019-09-20 22:35:14 1 5 2019-09-20 22:35:14 2 3 2019-09-20 22:55:14 1 5 2019-09-20 22:55:14 2 4 2019-09-20 23:00:14 1 4 2019-09-20 23:00:14 2 4 2019-09-20 23:05:14 1 5 2019-09-20 23:05:14 2 1 2019-09-20 23:30:14 1 3 2019-09-20 23:30:14 2 2 2019-09-20 23:35:14 1 4 2019-09-20 23:35:14 2 2 2019-09-20 23:40:14 1 5 2019-09-20 23:40:14 2 2 2019-09-21 00:20:14 1 8 2019-09-21 00:55:14 1 5 2019-09-21 00:55:14 2 1 2019-09-21 01:00:14 1 5 2019-09-21 01:00:14 2 1 2019-09-21 01:35:14 1 5 2019-09-21 02:20:14 1 4 2019-09-21 02:20:14 2 1 2019-09-21 03:20:14 1 3 2019-09-21 03:20:14 2 1 2019-09-21 03:25:14 1 3 2019-09-21 03:25:14 2 1 2019-09-21 03:30:14 1 3 2019-09-21 03:30:14 2 1 2019-09-21 03:35:14 1 3 2019-09-21 03:35:14 2 1 2019-09-21 03:40:14 1 3 2019-09-21 03:40:14 2 1 2019-09-21 03:45:14 1 3 2019-09-21 03:45:14 2 1 2019-09-21 03:50:14 1 3 2019-09-21 03:50:14 2 1 2019-09-21 03:55:14 1 3 2019-09-21 03:55:14 2 1 2019-09-21 04:00:14 1 3 2019-09-21 04:00:14 2 1 2019-09-21 04:10:14 1 3 2019-09-21 04:50:14 1 2 2019-09-21 04:55:14 1 2 2019-09-21 05:00:14 1 2 2019-09-21 05:05:14 1 2 2019-09-21 05:10:14 1 2 2019-09-21 05:15:14 1 2 2019-09-21 05:20:14 1 2 2019-09-21 05:25:14 1 2 2019-09-21 05:30:14 1 2 2019-09-21 05:35:14 1 2 2019-09-21 05:40:14 1 2 2019-09-21 05:45:14 1 2 2019-09-21 05:50:14 1 2 2019-09-21 05:55:14 1 2 2019-09-21 06:00:14 1 2 2019-09-21 06:05:14 1 2 2019-09-21 06:25:14 1 4 2019-09-21 06:25:14 2 2 2019-09-21 06:30:14 1 4 2019-09-21 06:30:14 2 2 2019-09-21 06:35:14 1 4 2019-09-21 06:35:14 2 2 2019-09-21 06:40:14 1 4 2019-09-21 06:40:14 2 1 2019-09-21 07:10:14 1 3 2019-09-21 07:10:14 2 1 2019-09-21 07:15:14 1 3 2019-09-21 07:15:14 2 1 2019-09-21 07:30:14 1 3 2019-09-21 07:50:14 1 3 2019-09-21 08:15:14 1 4 2019-09-21 08:15:14 2 1 2019-09-21 08:25:14 1 5 2019-09-21 08:40:14 1 3 2019-09-21 09:00:14 1 7 2019-09-21 09:10:14 1 8 2019-09-21 09:10:14 2 1 2019-09-21 09:25:14 1 9 2019-09-21 09:25:14 2 1 2019-09-21 09:30:14 1 9 2019-09-21 09:30:14 2 2 2019-09-21 09:40:14 1 7 2019-09-21 09:40:14 2 2 2019-09-21 09:45:14 1 8 2019-09-21 09:45:14 2 2 2019-09-21 09:50:14 1 8 2019-09-21 09:50:14 2 1 2019-09-21 10:15:14 1 7 2019-09-21 10:15:14 2 1 2019-09-21 10:20:14 1 7 2019-09-21 10:20:14 2 1 2019-09-21 10:25:14 1 7 2019-09-21 10:25:14 2 2 2019-09-21 10:30:14 1 7 2019-09-21 10:40:14 1 7 2019-09-21 10:40:14 2 2 2019-09-21 10:45:14 1 7 2019-09-21 10:45:14 2 1 2019-09-21 10:50:14 1 7 2019-09-21 10:50:14 2 2 2019-09-21 11:00:14 1 7 2019-09-21 11:00:14 2 1 2019-09-21 11:10:14 1 7 2019-09-21 11:15:14 1 7 2019-09-21 11:20:14 1 7 2019-09-21 11:25:14 1 8 2019-09-21 11:30:14 1 8 2019-09-20 12:15:14 1 6 2019-09-20 12:15:14 2 1 2019-09-20 12:40:14 1 5 2019-09-20 12:40:14 2 5 2019-09-20 13:20:14 1 5 2019-09-20 13:20:14 2 2 2019-09-20 13:55:14 1 7 2019-09-20 13:55:14 2 4 2019-09-20 14:10:14 1 6 2019-09-20 14:10:14 2 2 2019-09-20 14:15:14 1 6 2019-09-20 14:15:14 2 2 2019-09-20 14:20:14 1 7 2019-09-20 14:20:14 2 2 2019-09-20 14:55:14 1 6 2019-09-20 14:55:14 2 2 2019-09-20 15:05:14 1 6 2019-09-20 15:05:14 2 3 2019-09-20 15:15:14 1 5 2019-09-20 15:15:14 2 5 2019-09-20 15:35:14 1 6 2019-09-20 15:35:14 2 5 2019-09-20 16:10:14 1 3 2019-09-20 16:10:14 2 3 2019-09-20 16:40:14 1 3 2019-09-20 16:40:14 2 1 2019-09-20 16:50:14 1 5 2019-09-20 16:50:14 2 1 2019-09-20 16:55:14 1 5 2019-09-20 16:55:14 2 1 2019-09-20 17:05:14 1 3 2019-09-20 17:20:14 1 3 2019-09-20 17:20:14 2 1 2019-09-20 17:25:14 1 3 2019-09-20 17:25:14 2 1 2019-09-20 17:30:14 1 3 2019-09-20 17:30:14 2 1 2019-09-20 17:35:14 1 3 2019-09-20 17:35:14 2 2 2019-09-20 17:40:14 1 4 2019-09-20 17:40:14 2 2 2019-09-20 17:45:14 1 4 2019-09-20 17:45:14 2 1 2019-09-20 18:00:14 1 5 2019-09-20 18:00:14 2 2 2019-09-20 18:10:14 1 6 2019-09-20 18:10:14 2 1 2019-09-20 18:25:14 1 6 2019-09-20 18:25:14 2 1 2019-09-20 18:50:14 1 3 2019-09-20 19:05:14 1 6 2019-09-20 19:15:14 1 7 2019-09-20 19:30:14 1 6 2019-09-20 19:30:14 2 2 2019-09-20 19:50:14 1 6 2019-09-20 19:50:14 2 3 2019-09-20 20:05:14 1 6 2019-09-20 20:05:14 2 2 2019-09-20 20:10:14 1 5 2019-09-20 20:10:14 2 2 2019-09-20 20:20:14 1 5 2019-09-20 20:20:14 2 2 2019-09-20 20:30:14 1 6 2019-09-20 20:30:14 2 1 2019-09-20 20:45:14 1 5 2019-09-20 20:45:14 2 1 2019-09-20 20:55:14 1 6 2019-09-20 20:55:14 2 2 2019-09-20 21:00:14 1 5 2019-09-20 21:00:14 2 3 2019-09-20 21:25:14 1 7 2019-09-20 21:25:14 2 2 2019-09-20 21:35:14 1 7 2019-09-20 21:35:14 2 2 2019-09-20 21:45:14 1 6 2019-09-20 21:45:14 2 2 2019-09-20 21:50:14 1 7 2019-09-20 21:50:14 2 2 2019-09-20 21:55:14 1 8 2019-09-20 21:55:14 2 2 2019-09-20 22:00:14 1 5 2019-09-20 22:00:14 2 2 2019-09-20 22:15:14 1 5 2019-09-20 22:15:14 2 2 2019-09-20 22:20:14 1 4 2019-09-20 22:20:14 2 3 2019-09-20 22:30:14 1 5 2019-09-20 22:30:14 2 3 2019-09-20 22:40:14 1 4 2019-09-20 22:40:14 2 4 2019-09-20 22:50:14 1 4 2019-09-20 22:50:14 2 3 2019-09-20 23:45:14 1 5 2019-09-20 23:45:14 2 2 2019-09-20 23:55:14 1 6 2019-09-20 23:55:14 2 1 2019-09-21 00:05:14 1 7 2019-09-21 00:05:14 2 1 2019-09-21 00:10:14 1 8 2019-09-21 00:10:14 2 2 2019-09-21 00:15:14 1 8 2019-09-21 00:15:14 2 1 2019-09-21 00:35:14 1 6 2019-09-21 01:05:14 1 5 2019-09-21 01:10:14 1 5 2019-09-21 01:15:14 1 5 2019-09-21 01:20:14 1 5 2019-09-21 01:25:14 1 5 2019-09-21 01:55:14 1 4 2019-09-21 02:25:14 1 3 2019-09-21 02:25:14 2 1 2019-09-21 02:30:14 1 3 2019-09-21 02:30:14 2 1 2019-09-21 02:35:14 1 3 2019-09-21 02:35:14 2 1 2019-09-21 02:40:14 1 3 2019-09-21 02:40:14 2 1 2019-09-21 02:45:14 1 3 2019-09-21 02:45:14 2 1 2019-09-21 02:50:14 1 3 2019-09-21 02:50:14 2 1 2019-09-21 02:55:14 1 3 2019-09-21 02:55:14 2 1 2019-09-21 03:00:14 1 3 2019-09-21 03:00:14 2 1 2019-09-21 03:05:14 1 3 2019-09-21 03:05:14 2 1 2019-09-21 03:10:14 1 3 2019-09-21 03:10:14 2 1 2019-09-21 04:25:14 1 3 2019-09-21 06:10:14 1 2 2019-09-21 06:10:14 2 1 2019-09-21 06:15:14 1 2 2019-09-21 06:15:14 2 1 2019-09-21 07:00:14 1 3 2019-09-21 07:00:14 2 1 2019-09-21 07:05:14 1 3 2019-09-21 07:05:14 2 1 2019-09-21 07:40:14 1 3 2019-09-21 07:45:14 1 3 2019-09-21 07:55:14 1 3 2019-09-21 07:55:14 2 1 2019-09-21 08:20:14 1 5 2019-09-21 08:35:14 1 5 2019-09-21 08:45:14 1 4 2019-09-21 08:45:14 2 1 2019-09-21 08:50:14 1 4 2019-09-21 08:50:14 2 1 2019-09-21 09:05:14 1 7 2019-09-21 09:15:14 1 8 2019-09-21 09:15:14 2 2 2019-09-21 09:35:14 1 8 2019-09-21 09:35:14 2 2 2019-09-21 10:10:14 1 8 2019-09-21 10:10:14 2 1 2019-09-21 10:35:14 1 7 2019-09-21 10:55:14 1 8 2019-09-21 10:55:14 2 1 2019-09-21 11:55:14 1 7 2019-09-21 11:55:14 2 1 2019-09-21 12:00:14 1 7 2019-09-21 12:00:14 2 1 2019-09-21 12:05:14 1 8 2019-09-21 12:05:14 2 1 2019-09-21 12:25:14 1 6 2019-09-21 12:30:14 1 6 2019-09-21 12:35:14 1 6 2019-09-21 13:00:14 1 8 2019-09-21 13:00:14 2 1 2019-09-21 13:25:14 1 7 2019-09-21 13:35:14 1 9 2019-09-21 13:35:14 2 1 2019-09-21 13:45:14 1 8 2019-09-21 13:45:14 2 2 2019-09-21 13:55:14 1 8 2019-09-21 13:55:14 2 1 2019-09-21 14:15:14 2 1 2019-09-21 14:20:14 1 5 2019-09-21 14:20:14 2 1 2019-09-21 14:25:14 1 8 2019-09-21 14:25:14 2 1 2019-09-21 14:30:14 1 8 2019-09-21 14:30:14 2 1 2019-09-21 14:35:14 1 7 2019-09-21 14:35:14 2 2 2019-09-21 14:40:14 1 8 2019-09-21 14:40:14 2 3 2019-09-21 14:45:14 1 7 2019-09-21 14:45:14 2 3 2019-09-21 15:10:14 1 7 2019-09-21 15:10:14 2 3 2019-09-21 15:15:14 1 7 2019-09-21 15:15:14 2 1 2019-09-21 15:30:14 1 6 2019-09-21 15:40:14 1 7 2019-09-21 16:10:14 1 7 2019-09-21 16:10:14 2 1 2019-09-21 16:25:14 1 6 2019-09-21 16:25:14 2 1 2019-09-21 16:30:14 1 7 2019-09-21 16:30:14 2 1 2019-09-21 16:55:14 1 9 2019-09-21 16:55:14 2 2 2019-09-21 17:30:14 1 6 2019-09-21 17:30:14 2 2 2019-09-21 17:35:14 1 7 2019-09-21 17:35:14 2 2 2019-09-21 17:45:14 1 6 2019-09-21 17:45:14 2 2 2019-09-21 17:50:14 1 7 2019-09-21 17:50:14 2 4 2019-09-21 18:05:14 1 8 2019-09-21 18:05:14 2 3 2019-09-21 18:20:14 1 6 2019-09-21 18:20:14 2 1 2019-09-21 18:30:14 1 6 2019-09-21 18:30:14 2 2 2019-09-21 18:45:14 1 6 2019-09-21 18:45:14 2 2 2019-09-21 19:00:14 1 5 2019-09-21 19:00:14 2 2 2019-09-21 19:20:14 1 5 2019-09-21 19:20:14 2 2 2019-09-21 19:40:14 1 6 2019-09-21 19:40:14 2 1 2019-09-21 19:50:14 1 5 2019-09-21 19:50:14 2 2 2019-09-21 20:05:14 1 7 2019-09-21 20:05:14 2 1 2019-09-21 20:10:14 1 11 2019-09-21 20:10:14 2 1 2019-09-21 20:25:14 1 10 2019-09-21 20:25:14 2 1 2019-09-21 21:10:14 1 7 2019-09-21 21:10:14 2 2 2019-09-21 21:20:14 1 9 2019-09-21 21:20:14 2 4 2019-09-21 21:35:14 1 8 2019-09-21 21:35:14 2 4 2019-09-21 22:30:14 1 8 2019-09-21 22:30:14 2 5 2019-09-21 22:55:14 1 7 2019-09-21 22:55:14 2 5 2019-09-21 23:15:14 1 7 2019-09-21 23:15:14 2 2 2019-09-21 23:25:14 1 8 2019-09-21 23:25:14 2 2 2019-09-21 23:35:14 1 8 2019-09-21 23:35:14 2 2 2019-09-21 23:50:14 1 8 2019-09-21 23:50:14 2 3 2019-09-21 23:55:14 1 9 2019-09-21 23:55:14 2 2 2019-09-22 03:05:14 1 5 2019-09-22 03:10:14 1 5 2019-09-22 00:05:14 1 8 2019-09-22 00:05:14 2 2 2019-09-22 00:10:14 1 8 2019-09-22 00:10:14 2 2 2019-09-22 00:15:14 1 8 2019-09-22 00:15:14 2 2 2019-09-22 00:25:14 1 7 2019-09-22 00:25:14 2 2 2019-09-22 00:50:14 1 7 2019-09-22 00:50:14 2 3 2019-09-22 00:55:14 1 7 2019-09-22 00:55:14 2 3 2019-09-22 01:30:14 1 6 2019-09-22 01:30:14 2 1 2019-09-22 01:35:14 1 6 2019-09-22 01:35:14 2 1 2019-09-22 01:40:14 1 6 2019-09-22 01:40:14 2 1 2019-09-22 01:45:14 1 6 2019-09-22 01:45:14 2 1 2019-09-22 01:50:14 1 6 2019-09-22 01:50:14 2 1 2019-09-22 02:30:14 1 6 2019-09-22 02:35:14 1 6 2019-09-22 02:40:14 1 6 2019-09-22 03:15:14 1 5 2019-09-22 03:20:14 1 5 2019-09-22 03:25:14 1 5 2019-09-22 03:30:14 1 5 2019-09-22 03:35:14 1 5 2019-09-22 03:40:14 1 5 2019-09-22 03:45:14 1 5 2019-09-22 04:00:14 1 4 2019-09-22 04:05:14 1 4 2019-09-22 04:10:14 1 4 2019-09-22 04:15:14 1 4 2019-09-22 04:45:14 1 4 2019-09-22 04:45:14 2 1 2019-09-22 05:15:14 1 3 2019-09-22 05:15:14 2 2 2019-09-22 05:40:14 1 5 2019-09-22 05:40:14 2 2 2019-09-22 06:05:14 1 4 2019-09-22 06:05:14 2 1 2019-09-22 06:10:14 1 4 2019-09-22 06:10:14 2 1 2019-09-22 06:15:14 1 4 2019-09-22 06:15:14 2 1 2019-09-22 06:20:14 1 5 2019-09-22 06:20:14 2 1 2019-09-22 06:50:14 1 6 2019-09-22 06:50:14 2 1 2019-09-22 07:05:14 1 7 2019-09-22 07:05:14 2 1 2019-09-22 07:15:14 1 6 2019-09-22 07:20:14 1 6 2019-09-22 07:25:14 1 8 2019-09-22 07:25:14 2 1 2019-09-22 07:30:14 1 7 2019-09-22 07:30:14 2 1 2019-09-22 08:35:14 1 6 2019-09-22 08:40:14 1 7 2019-09-22 08:40:14 2 1 2019-09-22 08:50:14 1 8 2019-09-22 08:50:14 2 2 2019-09-22 09:00:14 1 8 2019-09-22 09:00:14 2 2 2019-09-22 09:10:14 1 9 2019-09-22 09:10:14 2 2 2019-09-22 09:15:14 1 9 2019-09-22 09:15:14 2 1 2019-09-22 09:35:14 1 9 2019-09-22 09:35:14 2 1 2019-09-22 09:45:14 1 8 2019-09-22 09:45:14 2 2 2019-09-22 09:50:14 1 8 2019-09-22 09:50:14 2 2 2019-09-22 09:55:14 1 8 2019-09-22 09:55:14 2 2 2019-09-22 10:00:14 1 7 2019-09-22 10:00:14 2 2 2019-09-22 10:35:14 1 8 2019-09-22 10:35:14 2 3 2019-09-22 10:55:14 1 8 2019-09-22 10:55:14 2 3 2019-09-22 11:00:14 1 8 2019-09-22 11:00:14 2 3 2019-09-22 11:05:14 1 8 2019-09-22 11:05:14 2 2 2019-09-22 11:15:14 1 7 2019-09-22 11:15:14 2 2 2019-09-22 11:25:14 1 7 2019-09-22 11:25:14 2 3 2019-09-22 11:30:14 1 8 2019-09-22 11:30:14 2 5 2019-09-22 11:55:14 1 6 2019-09-22 11:55:14 2 4 2019-09-22 12:05:14 1 5 2019-09-22 12:05:14 2 2 2019-09-22 12:35:14 1 6 2019-09-22 12:35:14 2 3 2019-09-22 12:55:14 1 8 2019-09-22 12:55:14 2 4 2019-09-22 13:05:14 1 9 2019-09-22 13:05:14 2 4 2019-09-22 13:45:14 1 6 2019-09-22 13:45:14 2 4 2019-09-22 14:20:14 1 10 2019-09-22 14:20:14 2 7 2019-09-22 14:50:14 1 9 2019-09-22 14:50:14 2 5 2019-09-22 15:00:14 1 7 2019-09-22 15:00:14 2 5 2019-09-22 15:25:14 1 7 2019-09-22 15:25:14 2 4 2019-09-21 14:50:14 1 7 2019-09-21 14:50:14 2 3 2019-09-21 14:55:14 1 7 2019-09-21 14:55:14 2 3 2019-09-21 15:05:14 1 7 2019-09-21 15:05:14 2 3 2019-09-21 15:20:14 1 5 2019-09-21 15:55:14 1 5 2019-09-21 16:15:14 1 6 2019-09-21 16:15:14 2 1 2019-09-21 16:50:14 1 8 2019-09-21 16:50:14 2 1 2019-09-21 17:10:14 1 6 2019-09-21 17:10:14 2 2 2019-09-21 17:20:14 1 6 2019-09-21 17:20:14 2 3 2019-09-21 17:40:14 1 7 2019-09-21 17:40:14 2 2 2019-09-21 18:10:14 1 6 2019-09-21 18:10:14 2 2 2019-09-21 18:15:15 1 7 2019-09-21 18:15:15 2 1 2019-09-21 18:40:14 1 5 2019-09-21 18:40:14 2 2 2019-09-21 18:50:14 1 6 2019-09-21 18:50:14 2 2 2019-09-21 19:10:14 1 5 2019-09-21 19:10:14 2 2 2019-09-21 19:15:14 1 7 2019-09-21 19:15:14 2 2 2019-09-21 19:25:14 1 5 2019-09-21 19:25:14 2 2 2019-09-21 19:35:14 1 8 2019-09-21 19:35:14 2 1 2019-09-21 19:45:14 1 6 2019-09-21 19:45:14 2 2 2019-09-21 19:55:14 1 6 2019-09-21 19:55:14 2 2 2019-09-21 20:00:14 1 6 2019-09-21 20:00:14 2 2 2019-09-21 20:15:14 1 11 2019-09-21 20:15:14 2 1 2019-09-21 20:35:14 1 10 2019-09-21 20:35:14 2 2 2019-09-21 20:40:14 1 9 2019-09-21 20:40:14 2 1 2019-09-21 20:45:14 1 8 2019-09-21 20:45:14 2 2 2019-09-21 20:55:14 1 8 2019-09-21 20:55:14 2 3 2019-09-21 21:00:14 1 7 2019-09-21 21:00:14 2 3 2019-09-21 21:15:14 1 8 2019-09-21 21:15:14 2 3 2019-09-21 21:25:14 1 8 2019-09-21 21:25:14 2 3 2019-09-21 21:30:14 1 8 2019-09-21 21:30:14 2 4 2019-09-21 21:40:14 1 7 2019-09-21 21:40:14 2 4 2019-09-21 21:50:14 1 7 2019-09-21 21:50:14 2 4 2019-09-21 22:00:14 1 7 2019-09-21 22:00:14 2 3 2019-09-21 22:05:14 1 7 2019-09-21 22:05:14 2 3 2019-09-21 22:10:14 1 8 2019-09-21 22:10:14 2 3 2019-09-21 22:40:14 1 9 2019-09-21 22:40:14 2 3 2019-09-21 22:45:14 1 10 2019-09-21 22:45:14 2 4 2019-09-21 23:00:14 1 7 2019-09-21 23:00:14 2 4 2019-09-21 23:05:14 1 7 2019-09-21 23:05:14 2 4 2019-09-21 23:10:14 1 6 2019-09-21 23:10:14 2 3 2019-09-21 23:45:14 1 9 2019-09-21 23:45:14 2 2 2019-09-22 03:50:14 1 4 2019-09-22 00:45:14 1 8 2019-09-22 00:45:14 2 3 2019-09-22 01:15:14 1 6 2019-09-22 01:15:14 2 2 2019-09-22 01:20:14 1 6 2019-09-22 01:20:14 2 2 2019-09-22 01:25:14 1 6 2019-09-22 01:25:14 2 2 2019-09-22 02:10:14 1 6 2019-09-22 02:10:14 2 1 2019-09-22 02:15:14 1 6 2019-09-22 02:15:14 2 1 2019-09-22 02:20:14 1 6 2019-09-22 02:20:14 2 1 2019-09-22 02:25:14 1 6 2019-09-22 02:25:14 2 1 2019-09-22 03:55:14 1 4 2019-09-22 04:20:14 1 4 2019-09-22 04:25:14 1 4 2019-09-22 04:30:14 1 4 2019-09-22 04:35:14 1 4 2019-09-22 04:40:14 1 4 2019-09-22 05:00:14 1 4 2019-09-22 05:00:14 2 1 2019-09-22 05:05:14 1 4 2019-09-22 05:05:14 2 1 2019-09-22 05:10:14 1 4 2019-09-22 05:10:14 2 1 2019-09-22 05:25:14 1 3 2019-09-22 05:25:14 2 2 2019-09-22 05:30:14 1 4 2019-09-22 05:30:14 2 2 2019-09-22 05:35:14 1 4 2019-09-22 05:35:14 2 2 2019-09-22 05:55:14 1 5 2019-09-22 05:55:14 2 1 2019-09-22 06:00:14 1 5 2019-09-22 06:00:14 2 1 2019-09-22 07:00:14 1 7 2019-09-22 07:35:14 1 6 2019-09-22 07:35:14 2 1 2019-09-22 07:40:14 1 7 2019-09-22 07:40:14 2 1 2019-09-22 07:50:14 1 6 2019-09-22 08:15:14 1 6 2019-09-22 08:15:14 2 2 2019-09-22 08:25:14 1 7 2019-09-22 08:45:14 1 8 2019-09-22 08:45:14 2 1 2019-09-22 08:55:14 1 8 2019-09-22 08:55:14 2 2 2019-09-22 09:05:14 1 8 2019-09-22 09:05:14 2 2 2019-09-22 09:25:14 1 8 2019-09-22 09:25:14 2 2 2019-09-22 09:40:14 1 9 2019-09-22 09:40:14 2 2 2019-09-22 10:05:14 1 7 2019-09-22 10:05:14 2 2 2019-09-22 10:10:14 1 6 2019-09-22 10:10:14 2 2 2019-09-22 10:20:14 1 7 2019-09-22 10:20:14 2 3 2019-09-22 10:45:14 1 7 2019-09-22 10:45:14 2 4 2019-09-22 11:10:14 1 8 2019-09-22 11:10:14 2 2 2019-09-22 12:00:14 1 5 2019-09-22 12:00:14 2 2 2019-09-22 12:40:14 1 8 2019-09-22 12:40:14 2 3 2019-09-22 12:45:14 1 7 2019-09-22 12:45:14 2 2 2019-09-22 13:00:14 1 8 2019-09-22 13:00:14 2 5 2019-09-22 13:15:14 1 9 2019-09-22 13:15:14 2 4 2019-09-22 13:25:14 1 9 2019-09-22 13:25:14 2 5 2019-09-22 13:30:14 1 8 2019-09-22 13:30:14 2 5 2019-09-22 13:35:14 1 6 2019-09-22 13:35:14 2 5 2019-09-22 13:40:14 1 6 2019-09-22 13:40:14 2 4 2019-09-22 14:00:14 1 7 2019-09-22 14:00:14 2 6 2019-09-22 14:15:14 1 6 2019-09-22 14:15:14 2 7 2019-09-22 14:25:14 1 9 2019-09-22 14:25:14 2 6 2019-09-22 14:40:14 1 7 2019-09-22 14:40:14 2 3 2019-09-22 14:55:14 1 8 2019-09-22 14:55:14 2 6 2019-09-22 15:05:14 1 9 2019-09-22 15:05:14 2 4 2019-09-22 15:15:14 1 9 2019-09-22 15:15:14 2 3 2019-09-22 15:30:14 1 8 2019-09-22 15:30:14 2 2 2019-09-22 15:35:14 1 8 2019-09-22 15:35:14 2 2 2019-09-22 15:40:14 1 9 2019-09-21 15:00:14 1 7 2019-09-21 15:00:14 2 3 2019-09-21 15:25:14 1 6 2019-09-21 15:35:14 1 6 2019-09-21 15:45:14 1 5 2019-09-21 15:50:14 1 6 2019-09-21 16:00:14 1 6 2019-09-21 16:00:14 2 1 2019-09-21 16:05:14 1 6 2019-09-21 16:05:14 2 1 2019-09-21 16:20:14 1 5 2019-09-21 16:20:14 2 1 2019-09-21 16:35:14 1 7 2019-09-21 16:35:14 2 1 2019-09-21 16:40:14 1 7 2019-09-21 16:45:14 1 8 2019-09-21 16:45:14 2 1 2019-09-21 17:00:14 1 9 2019-09-21 17:00:14 2 3 2019-09-21 17:05:14 1 8 2019-09-21 17:05:14 2 3 2019-09-21 17:15:14 1 6 2019-09-21 17:15:14 2 2 2019-09-21 17:25:14 1 7 2019-09-21 17:25:14 2 3 2019-09-21 17:55:14 1 7 2019-09-21 17:55:14 2 2 2019-09-21 18:00:14 1 7 2019-09-21 18:00:14 2 3 2019-09-21 18:25:14 1 5 2019-09-21 18:25:14 2 1 2019-09-21 18:35:14 1 6 2019-09-21 18:35:14 2 2 2019-09-21 18:55:14 1 7 2019-09-21 18:55:14 2 2 2019-09-21 19:05:14 1 5 2019-09-21 19:05:14 2 2 2019-09-21 19:30:14 1 6 2019-09-21 19:30:14 2 1 2019-09-21 20:20:14 1 11 2019-09-21 20:20:14 2 1 2019-09-21 20:30:14 1 9 2019-09-21 20:30:14 2 1 2019-09-21 20:50:14 1 7 2019-09-21 20:50:14 2 4 2019-09-21 21:05:15 1 7 2019-09-21 21:05:15 2 2 2019-09-21 21:45:14 1 7 2019-09-21 21:45:14 2 4 2019-09-21 21:55:14 1 9 2019-09-21 21:55:14 2 4 2019-09-21 22:15:14 1 8 2019-09-21 22:15:14 2 3 2019-09-21 22:20:14 1 8 2019-09-21 22:20:14 2 4 2019-09-21 22:25:14 1 8 2019-09-21 22:25:14 2 4 2019-09-21 22:35:14 1 9 2019-09-21 22:35:14 2 4 2019-09-21 22:50:14 1 9 2019-09-21 22:50:14 2 5 2019-09-21 23:20:14 1 7 2019-09-21 23:20:14 2 3 2019-09-21 23:30:14 1 8 2019-09-21 23:30:14 2 2 2019-09-21 23:40:14 1 10 2019-09-21 23:40:14 2 2 2019-09-22 04:50:14 1 4 2019-09-22 04:55:14 1 4 2019-09-22 05:20:14 1 3 2019-09-22 05:20:14 2 3 2019-09-22 05:45:14 1 5 2019-09-22 05:45:14 2 1 2019-09-22 05:50:14 1 5 2019-09-22 05:50:14 2 1 2019-09-22 06:25:14 1 5 2019-09-22 00:00:14 1 104 2019-09-22 00:00:14 2 41 2019-09-22 00:20:14 1 8 2019-09-22 00:20:14 2 3 2019-09-22 00:30:14 1 7 2019-09-22 00:30:14 2 3 2019-09-22 00:35:14 1 7 2019-09-22 00:35:14 2 3 2019-09-22 00:40:14 1 7 2019-09-22 00:40:14 2 3 2019-09-22 01:00:14 1 7 2019-09-22 01:00:14 2 2 2019-09-22 01:05:14 1 7 2019-09-22 01:05:14 2 2 2019-09-22 01:10:14 1 7 2019-09-22 01:10:14 2 2 2019-09-22 01:55:14 1 6 2019-09-22 02:00:14 1 6 2019-09-22 02:05:14 1 6 2019-09-22 02:45:14 1 5 2019-09-22 02:50:14 1 5 2019-09-22 02:55:14 1 5 2019-09-22 03:00:14 1 5 2019-09-22 06:30:14 1 5 2019-09-22 06:35:14 1 5 2019-09-22 06:35:14 2 1 2019-09-22 06:40:14 1 6 2019-09-22 06:40:14 2 1 2019-09-22 06:45:14 1 6 2019-09-22 06:45:14 2 1 2019-09-22 06:55:14 1 6 2019-09-22 07:10:14 1 6 2019-09-22 07:10:14 2 1 2019-09-22 07:45:14 1 6 2019-09-22 07:55:14 1 7 2019-09-22 08:00:14 1 7 2019-09-22 08:05:14 1 6 2019-09-22 08:10:14 1 6 2019-09-22 08:10:14 2 1 2019-09-22 08:20:14 1 8 2019-09-22 08:30:14 1 8 2019-09-22 09:20:14 1 9 2019-09-22 09:20:14 2 2 2019-09-22 09:30:14 1 7 2019-09-22 09:30:14 2 1 2019-09-22 10:15:14 1 7 2019-09-22 10:15:14 2 2 2019-09-22 10:25:14 1 7 2019-09-22 10:25:14 2 4 2019-09-22 10:30:14 1 6 2019-09-22 10:30:14 2 4 2019-09-22 10:40:14 1 8 2019-09-22 10:40:14 2 3 2019-09-22 10:50:14 1 7 2019-09-22 10:50:14 2 5 2019-09-22 11:20:14 1 7 2019-09-22 11:20:14 2 3 2019-09-22 11:35:14 1 7 2019-09-22 11:35:14 2 5 2019-09-22 11:40:14 1 9 2019-09-22 11:40:14 2 4 2019-09-22 11:45:14 1 5 2019-09-22 11:45:14 2 5 2019-09-22 11:50:14 1 6 2019-09-22 11:50:14 2 5 2019-09-22 12:10:14 1 6 2019-09-22 12:10:14 2 2 2019-09-22 12:15:14 1 5 2019-09-22 12:15:14 2 2 2019-09-22 12:20:14 1 5 2019-09-22 12:20:14 2 2 2019-09-22 12:25:14 1 5 2019-09-22 12:25:14 2 3 2019-09-22 12:30:14 1 6 2019-09-22 12:30:14 2 3 2019-09-22 12:50:14 1 8 2019-09-22 12:50:14 2 2 2019-09-22 13:10:14 1 9 2019-09-22 13:10:14 2 4 2019-09-22 13:20:14 1 9 2019-09-22 13:20:14 2 5 2019-09-22 13:50:14 1 8 2019-09-22 13:50:14 2 4 2019-09-22 13:55:14 1 9 2019-09-22 13:55:14 2 4 2019-09-22 14:05:14 1 7 2019-09-22 14:05:14 2 7 2019-09-22 14:10:14 1 7 2019-09-22 14:10:14 2 5 2019-09-22 14:30:14 1 8 2019-09-22 14:30:14 2 4 2019-09-22 14:35:14 1 7 2019-09-22 14:35:14 2 4 2019-09-22 14:45:14 1 8 2019-09-22 14:45:14 2 5 2019-09-22 15:10:14 1 9 2019-09-22 15:10:14 2 3 2019-09-22 15:20:14 1 9 2019-09-22 15:20:14 2 4 2019-09-22 15:40:14 2 2 2019-09-22 15:45:14 1 8 2019-09-22 15:45:14 2 1 2019-09-22 15:50:14 1 7 2019-09-22 15:50:14 2 1 2019-09-22 15:55:14 1 9 2019-09-22 16:00:14 1 8 2019-09-22 16:00:14 2 1 2019-09-22 16:05:14 1 9 2019-09-22 16:05:14 2 1 2019-09-22 16:10:14 1 7 2019-09-22 16:10:14 2 1 2019-09-22 16:35:14 1 8 2019-09-22 16:35:14 2 2 2019-09-22 16:45:14 1 8 2019-09-22 16:45:14 2 2 2019-09-22 16:55:14 1 8 2019-09-22 16:55:14 2 1 2019-09-22 17:10:14 1 10 2019-09-22 17:15:14 1 9 2019-09-22 17:20:14 1 8 2019-09-22 17:30:14 1 9 2019-09-22 17:30:14 2 1 2019-09-22 17:35:14 1 9 2019-09-22 17:50:14 1 8 2019-09-22 17:55:14 1 8 2019-09-22 17:55:14 2 1 2019-09-22 18:10:14 1 7 2019-09-22 18:10:14 2 1 2019-09-22 18:15:14 1 7 2019-09-22 18:15:14 2 2 2019-09-22 18:20:14 1 6 2019-09-22 18:20:14 2 1 2019-09-22 18:35:14 1 5 2019-09-22 18:35:14 2 3 2019-09-22 18:50:14 1 6 2019-09-22 18:50:14 2 4 2019-09-22 19:00:14 1 5 2019-09-22 19:00:14 2 4 2019-09-22 19:30:14 1 7 2019-09-22 19:30:14 2 4 2019-09-22 19:35:14 1 8 2019-09-22 19:35:14 2 5 2019-09-22 19:40:14 1 8 2019-09-22 19:40:14 2 3 2019-09-22 19:45:14 1 8 2019-09-22 19:45:14 2 4 2019-09-22 19:50:14 1 8 2019-09-22 19:50:14 2 3 2019-09-22 19:55:14 1 7 2019-09-22 19:55:14 2 3 2019-09-22 20:40:14 1 5 2019-09-22 20:40:14 2 4 2019-09-22 20:55:14 1 5 2019-09-22 20:55:14 2 4 2019-09-22 21:05:14 1 6 2019-09-22 21:05:14 2 5 2019-09-22 21:10:14 1 6 2019-09-22 21:10:14 2 4 2019-09-22 21:15:14 1 6 2019-09-22 21:15:14 2 4 2019-09-22 21:30:14 1 7 2019-09-22 21:30:14 2 5 2019-09-22 21:40:14 1 6 2019-09-22 21:40:14 2 4 2019-09-22 21:50:14 1 7 2019-09-22 21:50:14 2 5 2019-09-22 22:30:14 1 5 2019-09-22 22:30:14 2 3 2019-09-22 22:35:14 1 6 2019-09-22 22:35:14 2 5 2019-09-22 22:45:14 1 5 2019-09-22 22:45:14 2 4 2019-09-22 23:20:14 1 5 2019-09-22 23:20:14 2 5 2019-09-22 23:45:14 1 3 2019-09-22 23:45:14 2 4 2019-09-23 01:00:14 1 2 2019-09-23 01:00:14 2 1 2019-09-23 01:05:14 1 2 2019-09-23 01:05:14 2 1 2019-09-23 02:00:14 1 2 2019-09-23 02:00:14 2 2 2019-09-23 02:05:14 1 2 2019-09-23 02:05:14 2 2 2019-09-23 02:10:14 1 2 2019-09-23 02:10:14 2 2 2019-09-23 03:15:14 1 1 2019-09-23 03:15:14 2 1 2019-09-23 03:20:14 1 1 2019-09-23 03:20:14 2 1 2019-09-23 03:25:14 1 1 2019-09-23 03:25:14 2 1 2019-09-23 03:30:14 1 1 2019-09-23 03:30:14 2 1 2019-09-23 04:55:14 1 1 2019-09-23 05:00:14 1 1 2019-09-23 05:05:14 1 1 2019-09-23 05:10:14 1 1 2019-09-23 05:25:14 1 2 2019-09-23 06:00:14 1 2 2019-09-23 06:00:14 2 2 2019-09-23 06:05:14 1 2 2019-09-23 06:05:14 2 2 2019-09-23 06:25:14 2 2 2019-09-23 06:40:14 1 1 2019-09-23 06:40:14 2 2 2019-09-23 07:10:14 1 2 2019-09-23 07:10:14 2 1 2019-09-23 07:30:14 1 3 2019-09-23 07:30:14 2 1 2019-09-23 07:35:14 1 2 2019-09-23 07:35:14 2 1 2019-09-23 07:45:14 1 4 2019-09-23 07:45:14 2 2 2019-09-23 07:50:14 1 3 2019-09-23 07:50:14 2 2 2019-09-23 07:55:14 1 3 2019-09-23 07:55:14 2 2 2019-09-23 08:35:14 1 4 2019-09-23 08:35:14 2 1 2019-09-23 08:40:14 1 5 2019-09-23 08:40:14 2 2 2019-09-23 08:45:14 1 4 2019-09-23 08:45:14 2 2 2019-09-23 08:50:14 1 5 2019-09-23 09:05:14 1 2 2019-09-23 09:20:14 1 2 2019-09-23 09:35:14 1 3 2019-09-23 09:35:14 2 2 2019-09-23 09:50:14 1 3 2019-09-23 09:50:14 2 3 2019-09-23 10:10:14 1 4 2019-09-23 10:10:14 2 2 2019-09-23 10:15:14 1 3 2019-09-23 10:15:14 2 2 2019-09-23 10:25:14 1 3 2019-09-23 10:25:14 2 3 2019-09-23 10:30:14 1 4 2019-09-23 10:30:14 2 2 2019-09-23 10:55:14 1 7 2019-09-23 10:55:14 2 2 2019-09-23 11:00:14 1 7 2019-09-23 11:00:14 2 2 2019-09-23 11:10:14 1 7 2019-09-23 11:10:14 2 1 2019-09-23 11:35:14 1 8 2019-09-23 11:35:14 2 1 2019-09-23 11:50:14 1 5 2019-09-23 11:50:14 2 1 2019-09-23 12:10:14 1 6 2019-09-23 12:10:14 2 1 2019-09-23 12:15:14 1 7 2019-09-23 12:15:14 2 1 2019-09-23 12:20:14 1 8 2019-09-23 12:20:14 2 1 2019-09-23 12:30:14 1 7 2019-09-23 12:30:14 2 1 2019-09-23 12:40:14 1 10 2019-09-23 12:40:14 2 3 2019-09-23 12:50:14 1 10 2019-09-23 12:50:14 2 2 2019-09-23 13:05:14 1 8 2019-09-23 13:05:14 2 1 2019-09-23 13:15:14 2 3 2019-09-23 13:25:14 1 11 2019-09-23 13:25:14 2 3 2019-09-23 13:30:14 1 12 2019-09-23 13:30:14 2 2 2019-09-23 13:35:14 1 11 2019-09-23 13:35:14 2 2 2019-09-23 13:40:14 1 10 2019-09-23 13:40:14 2 3 2019-09-23 13:45:14 1 9 2019-09-23 13:45:14 2 3 2019-09-23 14:00:14 1 8 2019-09-23 14:00:14 2 2 2019-09-23 14:10:14 1 8 2019-09-23 14:10:14 2 1 2019-09-23 14:15:14 1 9 2019-09-23 14:15:14 2 2 2019-09-23 14:20:14 1 10 2019-09-23 14:20:14 2 2 2019-09-23 14:25:14 1 8 2019-09-23 14:25:14 2 1 2019-09-23 14:30:14 1 9 2019-09-23 14:30:14 2 1 2019-09-23 14:35:14 1 8 2019-09-23 14:35:14 2 1 2019-09-23 14:40:14 1 9 2019-09-23 14:40:14 2 1 2019-09-23 14:55:14 1 9 2019-09-23 14:55:14 2 1 2019-09-23 15:00:14 1 9 2019-09-23 15:05:14 1 9 2019-09-22 16:15:14 1 9 2019-09-22 16:15:14 2 3 2019-09-22 17:00:14 1 10 2019-09-22 18:40:14 1 6 2019-09-22 18:40:14 2 3 2019-09-22 18:45:14 1 6 2019-09-22 18:45:14 2 4 2019-09-22 19:20:14 1 7 2019-09-22 19:20:14 2 3 2019-09-22 19:25:14 1 7 2019-09-22 19:25:14 2 3 2019-09-22 20:05:14 1 7 2019-09-22 20:05:14 2 3 2019-09-22 20:15:14 1 5 2019-09-22 20:15:14 2 2 2019-09-22 20:20:14 1 5 2019-09-22 20:20:14 2 3 2019-09-22 20:25:14 1 5 2019-09-22 20:25:14 2 3 2019-09-22 21:25:14 1 7 2019-09-22 21:25:14 2 3 2019-09-22 21:35:14 1 7 2019-09-22 21:35:14 2 4 2019-09-22 21:45:14 1 6 2019-09-22 21:45:14 2 3 2019-09-22 21:55:14 1 6 2019-09-22 21:55:14 2 5 2019-09-22 22:00:14 1 7 2019-09-22 22:00:14 2 3 2019-09-22 22:15:14 1 9 2019-09-22 22:15:14 2 4 2019-09-22 22:40:14 1 6 2019-09-22 22:40:14 2 3 2019-09-22 23:00:14 1 5 2019-09-22 23:00:14 2 4 2019-09-22 23:15:14 1 4 2019-09-22 23:15:14 2 4 2019-09-22 23:30:14 1 4 2019-09-22 23:30:14 2 5 2019-09-22 23:35:15 1 4 2019-09-22 23:35:15 2 5 2019-09-22 23:40:14 1 4 2019-09-22 23:40:14 2 4 2019-09-23 00:45:14 1 3 2019-09-23 00:45:14 2 2 2019-09-23 01:10:14 1 2 2019-09-23 01:15:14 1 2 2019-09-23 01:20:14 1 2 2019-09-23 01:25:14 1 2 2019-09-23 01:30:14 1 2 2019-09-23 01:35:14 1 2 2019-09-23 02:15:14 1 2 2019-09-23 02:15:14 2 1 2019-09-23 03:05:14 1 1 2019-09-23 03:05:14 2 1 2019-09-23 03:10:14 1 1 2019-09-23 03:10:14 2 1 2019-09-23 03:35:14 1 1 2019-09-23 03:40:14 1 1 2019-09-23 03:45:14 1 1 2019-09-23 05:15:14 1 1 2019-09-23 05:20:14 1 1 2019-09-23 05:35:14 1 3 2019-09-23 05:35:14 2 1 2019-09-23 06:10:14 1 2 2019-09-23 06:10:14 2 2 2019-09-23 06:35:14 1 1 2019-09-23 06:35:14 2 3 2019-09-23 06:50:14 1 1 2019-09-23 06:50:14 2 2 2019-09-23 07:05:14 1 1 2019-09-23 07:05:14 2 1 2019-09-23 07:20:14 1 1 2019-09-23 07:20:14 2 1 2019-09-23 07:25:14 1 1 2019-09-23 07:25:14 2 1 2019-09-23 08:55:14 1 5 2019-09-23 09:00:14 1 4 2019-09-23 09:30:14 1 3 2019-09-23 09:30:14 2 1 2019-09-23 09:40:14 1 3 2019-09-23 09:40:14 2 2 2019-09-23 10:20:14 1 4 2019-09-23 10:20:14 2 3 2019-09-23 10:35:14 1 5 2019-09-23 10:35:14 2 1 2019-09-23 10:50:14 1 6 2019-09-23 10:50:14 2 2 2019-09-23 11:05:14 1 7 2019-09-23 11:05:14 2 3 2019-09-23 11:25:14 1 8 2019-09-23 11:25:14 2 1 2019-09-23 11:40:14 1 7 2019-09-23 11:40:14 2 2 2019-09-23 11:55:14 1 6 2019-09-23 11:55:14 2 1 2019-09-23 12:00:14 1 6 2019-09-23 12:00:14 2 1 2019-09-23 12:05:14 1 7 2019-09-23 12:05:14 2 1 2019-09-23 12:35:14 1 8 2019-09-23 12:35:14 2 1 2019-09-23 13:00:14 1 8 2019-09-23 13:00:14 2 2 2019-09-23 13:10:14 1 10 2019-09-23 13:10:14 2 1 2019-09-23 13:20:14 1 10 2019-09-23 13:20:14 2 3 2019-09-23 13:50:14 1 9 2019-09-23 13:50:14 2 2 2019-09-23 13:55:14 1 8 2019-09-23 13:55:14 2 2 2019-09-23 14:05:14 1 8 2019-09-23 14:05:14 2 2 2019-09-23 14:45:14 1 8 2019-09-23 14:45:14 2 1 2019-09-23 14:50:14 1 7 2019-09-23 14:50:14 2 2 2019-09-23 15:10:14 1 9 2019-09-23 15:15:14 1 7 2019-09-23 15:20:14 1 7 2019-09-23 15:25:14 1 7 2019-09-23 15:25:14 2 1 2019-09-23 15:30:14 1 8 2019-09-23 15:30:14 2 1 2019-09-23 15:35:14 1 7 2019-09-23 15:40:14 1 8 2019-09-23 15:45:14 1 7 2019-09-23 15:50:14 1 8 2019-09-23 15:50:14 2 1 2019-09-23 15:55:14 1 7 2019-09-23 15:55:14 2 1 2019-09-23 16:00:14 1 9 2019-09-23 16:05:14 1 9 2019-09-23 16:10:14 1 8 2019-09-23 16:15:14 1 10 2019-09-23 16:20:14 1 10 2019-09-23 16:25:14 1 10 2019-09-23 16:25:14 2 1 2019-09-23 16:30:14 1 9 2019-09-23 16:35:14 1 9 2019-09-23 16:40:14 1 9 2019-09-23 16:45:14 1 10 2019-09-23 16:50:14 1 10 2019-09-23 16:55:14 1 8 2019-09-23 17:00:14 1 9 2019-09-23 17:00:14 2 1 2019-09-23 17:05:14 1 8 2019-09-23 17:05:14 2 1 2019-09-23 17:10:15 1 6 2019-09-23 17:10:15 2 1 2019-09-23 17:15:14 1 8 2019-09-23 17:15:14 2 1 2019-09-23 17:20:14 1 6 2019-09-23 17:20:14 2 1 2019-09-23 17:25:14 1 8 2019-09-23 17:25:14 2 1 2019-09-23 17:30:14 1 8 2019-09-23 17:35:14 1 8 2019-09-23 17:40:14 1 8 2019-09-23 17:45:14 1 7 2019-09-23 17:50:14 1 7 2019-09-23 17:55:14 1 7 2019-09-23 17:55:14 2 1 2019-09-23 18:00:14 1 8 2019-09-23 18:00:14 2 1 2019-09-23 18:05:14 1 9 2019-09-23 18:05:14 2 1 2019-09-23 18:10:14 1 8 2019-09-23 18:10:14 2 1 2019-09-23 18:15:14 1 9 2019-09-23 18:15:14 2 1 2019-09-23 18:20:14 1 9 2019-09-23 18:20:14 2 1 2019-09-23 18:25:14 1 7 2019-09-23 18:25:14 2 1 2019-09-23 18:30:14 1 9 2019-09-23 18:30:14 2 1 2019-09-23 18:35:14 1 9 2019-09-23 18:35:14 2 1 2019-09-23 18:40:14 1 9 2019-09-23 18:40:14 2 1 2019-09-23 18:45:14 1 10 2019-09-23 18:45:14 2 2 2019-09-23 18:50:14 1 10 2019-09-22 16:20:14 1 9 2019-09-22 16:20:14 2 2 2019-09-22 16:25:14 1 9 2019-09-22 16:25:14 2 3 2019-09-22 16:30:14 1 8 2019-09-22 16:30:14 2 2 2019-09-22 16:40:14 1 8 2019-09-22 16:40:14 2 2 2019-09-22 16:50:14 1 8 2019-09-22 16:50:14 2 2 2019-09-22 17:05:14 1 11 2019-09-22 17:25:14 1 9 2019-09-22 17:40:14 1 9 2019-09-22 17:45:14 1 8 2019-09-22 18:00:14 1 8 2019-09-22 18:00:14 2 1 2019-09-22 18:05:14 1 8 2019-09-22 18:05:14 2 1 2019-09-22 18:25:14 1 5 2019-09-22 18:25:14 2 1 2019-09-22 18:30:14 1 5 2019-09-22 18:30:14 2 2 2019-09-22 18:55:14 1 5 2019-09-22 18:55:14 2 3 2019-09-22 19:05:14 1 6 2019-09-22 19:05:14 2 3 2019-09-22 19:10:14 1 7 2019-09-22 19:10:14 2 3 2019-09-22 19:15:14 1 8 2019-09-22 19:15:14 2 3 2019-09-22 20:00:14 1 8 2019-09-22 20:00:14 2 3 2019-09-22 20:10:14 1 7 2019-09-22 20:10:14 2 3 2019-09-22 20:30:14 1 4 2019-09-22 20:30:14 2 3 2019-09-22 20:35:14 1 5 2019-09-22 20:35:14 2 3 2019-09-22 20:45:14 1 6 2019-09-22 20:45:14 2 4 2019-09-22 20:50:14 1 6 2019-09-22 20:50:14 2 5 2019-09-22 21:00:14 1 5 2019-09-22 21:00:14 2 4 2019-09-22 21:20:14 1 6 2019-09-22 21:20:14 2 3 2019-09-22 22:05:14 1 9 2019-09-22 22:05:14 2 4 2019-09-22 22:10:14 1 8 2019-09-22 22:10:14 2 5 2019-09-22 22:20:14 1 7 2019-09-22 22:20:14 2 4 2019-09-22 22:25:14 1 5 2019-09-22 22:25:14 2 3 2019-09-22 22:50:14 1 5 2019-09-22 22:50:14 2 4 2019-09-22 22:55:14 1 5 2019-09-22 22:55:14 2 4 2019-09-22 23:05:14 1 4 2019-09-22 23:05:14 2 3 2019-09-22 23:10:14 1 4 2019-09-22 23:10:14 2 4 2019-09-22 23:25:14 1 5 2019-09-22 23:25:14 2 5 2019-09-22 23:50:14 1 3 2019-09-22 23:50:14 2 4 2019-09-22 23:55:14 1 2 2019-09-22 23:55:14 2 2 2019-09-23 00:00:14 1 2 2019-09-23 00:00:14 2 2 2019-09-23 00:05:14 1 2 2019-09-23 00:05:14 2 1 2019-09-23 00:10:14 1 2 2019-09-23 00:10:14 2 2 2019-09-23 00:15:14 1 2 2019-09-23 00:15:14 2 2 2019-09-23 00:20:14 1 2 2019-09-23 00:20:14 2 2 2019-09-23 00:25:14 1 2 2019-09-23 00:25:14 2 2 2019-09-23 00:30:14 1 2 2019-09-23 00:30:14 2 2 2019-09-23 00:35:14 1 2 2019-09-23 00:35:14 2 2 2019-09-23 00:40:14 1 3 2019-09-23 00:40:14 2 2 2019-09-23 00:50:14 1 2 2019-09-23 00:50:14 2 2 2019-09-23 00:55:14 1 2 2019-09-23 00:55:14 2 2 2019-09-23 01:40:14 1 2 2019-09-23 01:40:14 2 1 2019-09-23 01:45:14 1 2 2019-09-23 01:45:14 2 1 2019-09-23 01:50:14 1 2 2019-09-23 01:50:14 2 1 2019-09-23 01:55:14 1 2 2019-09-23 01:55:14 2 1 2019-09-23 02:20:14 1 1 2019-09-23 02:20:14 2 1 2019-09-23 02:25:14 1 1 2019-09-23 02:25:14 2 1 2019-09-23 02:30:14 1 1 2019-09-23 02:30:14 2 1 2019-09-23 02:35:14 1 1 2019-09-23 02:35:14 2 1 2019-09-23 02:40:14 1 1 2019-09-23 02:40:14 2 1 2019-09-23 02:45:14 1 1 2019-09-23 02:45:14 2 1 2019-09-23 02:50:14 1 1 2019-09-23 02:50:14 2 1 2019-09-23 02:55:14 1 1 2019-09-23 02:55:14 2 1 2019-09-23 03:00:14 1 1 2019-09-23 03:00:14 2 1 2019-09-23 05:30:14 1 2 2019-09-23 05:30:14 2 1 2019-09-23 05:40:14 1 2 2019-09-23 05:40:14 2 3 2019-09-23 05:45:14 1 2 2019-09-23 05:45:14 2 3 2019-09-23 05:50:14 1 2 2019-09-23 05:50:14 2 2 2019-09-23 05:55:14 1 2 2019-09-23 05:55:14 2 2 2019-09-23 06:15:14 1 1 2019-09-23 06:15:14 2 3 2019-09-23 06:20:14 1 1 2019-09-23 06:20:14 2 3 2019-09-23 06:30:14 1 1 2019-09-23 06:30:14 2 3 2019-09-23 06:45:14 1 2 2019-09-23 06:45:14 2 2 2019-09-23 06:55:14 1 2 2019-09-23 06:55:14 2 1 2019-09-23 07:00:14 1 2 2019-09-23 07:00:14 2 1 2019-09-23 07:15:14 1 1 2019-09-23 07:40:14 1 3 2019-09-23 07:40:14 2 1 2019-09-23 08:00:14 1 3 2019-09-23 08:00:14 2 3 2019-09-23 08:05:14 1 3 2019-09-23 08:05:14 2 4 2019-09-23 08:10:14 1 4 2019-09-23 08:10:14 2 4 2019-09-23 08:15:14 1 4 2019-09-23 08:15:14 2 3 2019-09-23 08:20:14 1 4 2019-09-23 08:20:14 2 3 2019-09-23 08:25:14 1 4 2019-09-23 08:25:14 2 2 2019-09-23 08:30:14 1 3 2019-09-23 08:30:14 2 2 2019-09-23 09:10:14 1 3 2019-09-23 09:15:14 1 3 2019-09-23 09:25:14 1 3 2019-09-23 09:45:14 1 3 2019-09-23 09:45:14 2 2 2019-09-23 09:55:14 1 3 2019-09-23 09:55:14 2 3 2019-09-23 10:00:14 1 3 2019-09-23 10:00:14 2 2 2019-09-23 10:05:14 1 3 2019-09-23 10:05:14 2 2 2019-09-23 10:40:14 1 5 2019-09-23 10:40:14 2 1 2019-09-23 10:45:14 1 6 2019-09-23 10:45:14 2 1 2019-09-23 11:15:14 1 7 2019-09-23 11:15:14 2 1 2019-09-23 11:20:14 1 8 2019-09-23 11:20:14 2 1 2019-09-23 11:30:14 1 8 2019-09-23 11:30:14 2 1 2019-09-23 11:45:14 1 7 2019-09-23 11:45:14 2 2 2019-09-23 12:25:14 1 8 2019-09-23 12:25:14 2 1 2019-09-23 12:45:15 1 12 2019-09-23 12:45:15 2 3 2019-09-23 12:55:14 1 8 2019-09-23 12:55:14 2 2 2019-09-23 13:15:14 1 10 2019-09-23 18:50:14 2 2 2019-09-23 19:10:14 1 6 2019-09-23 19:10:14 2 4 2019-09-23 19:15:14 1 6 2019-09-23 19:15:14 2 3 2019-09-23 19:55:14 1 11 2019-09-23 19:55:14 2 2 2019-09-23 20:05:14 1 9 2019-09-23 20:05:14 2 2 2019-09-23 21:05:14 1 9 2019-09-23 21:05:14 2 2 2019-09-23 21:25:14 1 9 2019-09-23 21:25:14 2 4 2019-09-23 21:35:14 1 10 2019-09-23 21:35:14 2 3 2019-09-23 22:10:14 1 11 2019-09-23 22:10:14 2 4 2019-09-23 22:25:14 1 9 2019-09-23 22:25:14 2 5 2019-09-23 22:35:14 1 9 2019-09-23 22:35:14 2 2 2019-09-23 22:55:14 1 11 2019-09-23 22:55:14 2 2 2019-09-23 23:05:14 1 10 2019-09-23 23:05:14 2 3 2019-09-23 23:10:14 1 10 2019-09-23 23:10:14 2 3 2019-09-23 23:35:14 1 6 2019-09-23 23:35:14 2 2 2019-09-23 23:40:14 1 6 2019-09-23 23:40:14 2 2 2019-09-23 23:50:14 1 8 2019-09-23 23:50:14 2 2 2019-09-23 23:55:14 1 7 2019-09-23 23:55:14 2 2 2019-09-24 00:25:14 1 8 2019-09-24 00:25:14 2 1 2019-09-24 00:35:14 1 7 2019-09-24 00:35:14 2 1 2019-09-24 01:00:14 1 5 2019-09-24 01:05:14 1 5 2019-09-24 01:10:14 1 5 2019-09-24 01:15:14 1 5 2019-09-24 04:05:14 1 4 2019-09-24 04:10:14 1 4 2019-09-24 04:15:14 1 4 2019-09-24 04:20:14 1 4 2019-09-24 04:25:14 1 4 2019-09-24 04:30:14 1 4 2019-09-24 04:35:14 1 4 2019-09-24 04:40:14 1 4 2019-09-24 04:45:14 1 4 2019-09-24 04:50:14 1 4 2019-09-24 04:55:14 1 4 2019-09-24 05:00:14 1 4 2019-09-24 05:05:14 1 4 2019-09-24 05:10:14 1 4 2019-09-24 05:15:14 1 4 2019-09-24 05:20:14 1 4 2019-09-24 05:25:14 1 4 2019-09-24 05:45:14 1 7 2019-09-24 05:55:14 1 8 2019-09-24 06:15:14 1 5 2019-09-24 07:25:14 1 6 2019-09-24 07:25:14 2 1 2019-09-24 07:35:14 1 7 2019-09-24 07:35:14 2 1 2019-09-24 07:40:14 1 5 2019-09-24 07:40:14 2 1 2019-09-24 07:45:14 1 4 2019-09-24 07:45:14 2 2 2019-09-24 07:50:14 1 5 2019-09-24 07:50:14 2 2 2019-09-24 07:55:14 1 5 2019-09-24 07:55:14 2 1 2019-09-24 08:00:14 1 5 2019-09-24 08:00:14 2 1 2019-09-24 09:00:14 1 7 2019-09-24 09:00:14 2 1 2019-09-24 09:10:14 1 9 2019-09-24 09:10:14 2 1 2019-09-24 09:35:14 1 6 2019-09-24 09:35:14 2 1 2019-09-24 09:50:14 1 6 2019-09-24 10:25:14 1 8 2019-09-24 10:25:14 2 1 2019-09-24 10:55:14 1 8 2019-09-24 10:55:14 2 1 2019-09-24 11:05:14 1 7 2019-09-24 11:05:14 2 1 2019-09-24 11:15:14 1 9 2019-09-24 11:15:14 2 1 2019-09-24 11:20:14 1 8 2019-09-24 11:25:14 1 9 2019-09-24 11:40:14 1 7 2019-09-24 11:40:14 2 1 2019-09-24 11:50:14 1 5 2019-09-24 11:50:14 2 1 2019-09-24 11:55:14 1 8 2019-09-24 11:55:14 2 1 2019-09-24 12:00:14 1 7 2019-09-24 12:10:14 1 9 2019-09-24 12:10:14 2 1 2019-09-24 12:25:14 1 9 2019-09-24 12:30:14 1 10 2019-09-24 12:35:14 1 8 2019-09-24 12:45:14 1 9 2019-09-24 13:05:14 1 9 2019-09-24 13:10:14 1 8 2019-09-24 13:20:14 1 10 2019-09-24 13:55:14 1 7 2019-09-24 13:55:14 2 1 2019-09-24 14:10:14 1 7 2019-09-24 14:10:14 2 1 2019-09-24 14:20:14 1 9 2019-09-24 14:20:14 2 1 2019-09-24 15:10:14 1 6 2019-09-24 15:10:14 2 1 2019-09-24 15:35:14 1 8 2019-09-24 15:35:14 2 3 2019-09-24 15:40:14 1 9 2019-09-24 15:40:14 2 3 2019-09-24 16:05:14 1 9 2019-09-24 16:05:14 2 2 2019-09-24 16:10:14 1 9 2019-09-24 16:10:14 2 3 2019-09-24 16:15:14 1 9 2019-09-24 16:15:14 2 1 2019-09-24 16:30:14 1 6 2019-09-24 16:40:14 1 6 2019-09-24 16:40:14 2 2 2019-09-24 16:50:14 1 5 2019-09-24 16:50:14 2 2 2019-09-24 17:25:14 1 4 2019-09-24 17:25:14 2 2 2019-09-24 17:55:14 1 6 2019-09-24 17:55:14 2 3 2019-09-24 18:00:14 1 7 2019-09-24 18:00:14 2 3 2019-09-24 18:15:14 1 5 2019-09-24 18:15:14 2 2 2019-09-24 18:25:14 1 5 2019-09-24 18:25:14 2 2 2019-09-24 19:15:14 1 5 2019-09-24 19:15:14 2 3 2019-09-24 19:45:14 1 7 2019-09-24 19:45:14 2 3 2019-09-24 19:55:14 1 7 2019-09-24 19:55:14 2 3 2019-09-24 20:05:14 1 5 2019-09-24 20:05:14 2 3 2019-09-24 20:25:14 1 6 2019-09-24 20:25:14 2 3 2019-09-24 20:35:14 1 7 2019-09-24 20:35:14 2 1 2019-09-24 20:40:14 1 8 2019-09-24 20:40:14 2 2 2019-09-24 20:45:14 1 7 2019-09-24 20:45:14 2 3 2019-09-24 20:55:14 1 5 2019-09-24 20:55:14 2 4 2019-09-24 21:00:14 1 5 2019-09-24 21:00:14 2 4 2019-09-24 21:05:14 1 6 2019-09-24 21:05:14 2 3 2019-09-24 21:10:14 1 5 2019-09-24 21:10:14 2 4 2019-09-24 21:15:14 1 6 2019-09-24 21:15:14 2 4 2019-09-24 21:20:14 1 7 2019-09-24 21:20:14 2 4 2019-09-24 21:25:14 1 7 2019-09-24 21:25:14 2 4 2019-09-24 21:30:14 1 8 2019-09-24 21:30:14 2 3 2019-09-24 21:40:14 1 8 2019-09-24 21:40:14 2 4 2019-09-24 21:45:14 1 7 2019-09-24 21:45:14 2 5 2019-09-24 21:50:14 1 8 2019-09-24 21:50:14 2 5 2019-09-24 21:55:14 1 8 2019-09-24 21:55:14 2 4 2019-09-24 22:00:14 1 7 2019-09-24 22:00:14 2 3 2019-09-23 18:55:14 1 6 2019-09-23 18:55:14 2 2 2019-09-23 19:05:14 1 7 2019-09-23 19:05:14 2 4 2019-09-23 19:20:14 1 6 2019-09-23 19:20:14 2 3 2019-09-23 19:30:14 1 6 2019-09-23 19:30:14 2 2 2019-09-23 19:40:14 1 10 2019-09-23 19:40:14 2 1 2019-09-23 19:50:14 1 10 2019-09-23 19:50:14 2 1 2019-09-23 20:00:14 1 8 2019-09-23 20:00:14 2 2 2019-09-23 20:15:14 1 9 2019-09-23 20:15:14 2 1 2019-09-23 20:45:14 1 8 2019-09-23 20:45:14 2 2 2019-09-23 20:50:14 1 7 2019-09-23 20:50:14 2 2 2019-09-23 21:00:14 1 8 2019-09-23 21:00:14 2 2 2019-09-23 21:10:14 1 9 2019-09-23 21:10:14 2 2 2019-09-23 21:15:14 1 9 2019-09-23 21:15:14 2 2 2019-09-23 21:20:14 1 8 2019-09-23 21:20:14 2 3 2019-09-23 21:45:14 1 9 2019-09-23 21:45:14 2 2 2019-09-23 22:30:14 1 9 2019-09-23 22:30:14 2 3 2019-09-23 22:45:14 1 10 2019-09-23 22:45:14 2 3 2019-09-23 22:50:14 1 10 2019-09-23 22:50:14 2 2 2019-09-24 00:10:14 1 8 2019-09-24 00:10:14 2 2 2019-09-24 00:20:14 1 8 2019-09-24 00:20:14 2 1 2019-09-24 00:30:14 1 9 2019-09-24 00:30:14 2 1 2019-09-24 00:50:14 1 6 2019-09-24 00:50:14 2 1 2019-09-24 01:45:14 1 5 2019-09-24 01:50:14 1 5 2019-09-24 01:55:14 1 5 2019-09-24 02:00:14 1 5 2019-09-24 02:05:14 1 5 2019-09-24 02:10:14 1 5 2019-09-24 02:15:14 1 5 2019-09-24 02:20:14 1 5 2019-09-24 02:25:14 1 5 2019-09-24 02:30:14 1 5 2019-09-24 02:35:14 1 5 2019-09-24 02:40:14 1 5 2019-09-24 02:45:14 1 5 2019-09-24 02:50:14 1 5 2019-09-24 02:55:14 1 5 2019-09-24 03:00:14 1 5 2019-09-24 03:05:14 1 5 2019-09-24 03:10:14 1 5 2019-09-24 05:30:14 1 6 2019-09-24 05:50:14 1 7 2019-09-24 06:05:14 1 7 2019-09-24 06:05:14 2 1 2019-09-24 06:20:14 1 4 2019-09-24 06:30:14 1 4 2019-09-24 06:30:14 2 1 2019-09-24 06:35:14 1 4 2019-09-24 06:35:14 2 1 2019-09-24 06:40:14 1 4 2019-09-24 06:40:14 2 1 2019-09-24 06:55:14 1 4 2019-09-24 06:55:14 2 1 2019-09-24 07:00:14 1 4 2019-09-24 07:00:14 2 1 2019-09-24 07:15:14 1 5 2019-09-24 07:15:14 2 1 2019-09-24 07:20:14 1 5 2019-09-24 07:20:14 2 1 2019-09-24 07:30:14 1 7 2019-09-24 07:30:14 2 1 2019-09-24 08:30:14 1 6 2019-09-24 08:30:14 2 1 2019-09-24 08:40:14 1 7 2019-09-24 08:40:14 2 1 2019-09-24 08:50:14 1 8 2019-09-24 08:50:14 2 1 2019-09-24 09:05:14 1 8 2019-09-24 09:05:14 2 1 2019-09-24 09:25:14 1 8 2019-09-24 09:30:14 1 7 2019-09-24 09:40:14 1 6 2019-09-24 09:45:14 1 6 2019-09-24 09:55:14 1 6 2019-09-24 09:55:14 2 1 2019-09-24 10:00:14 1 7 2019-09-24 10:00:14 2 1 2019-09-24 10:05:14 1 7 2019-09-24 10:05:14 2 1 2019-09-24 10:10:14 1 9 2019-09-24 10:10:14 2 1 2019-09-24 10:15:14 1 10 2019-09-24 10:35:14 1 8 2019-09-24 10:35:14 2 1 2019-09-24 10:45:14 1 8 2019-09-24 10:45:14 2 1 2019-09-24 10:50:14 1 7 2019-09-24 10:50:14 2 1 2019-09-24 11:35:14 1 7 2019-09-24 11:35:14 2 1 2019-09-24 12:05:14 1 6 2019-09-24 12:05:14 2 1 2019-09-24 12:20:14 1 9 2019-09-24 12:20:14 2 1 2019-09-24 12:50:14 1 7 2019-09-24 12:55:14 1 8 2019-09-24 13:00:14 1 9 2019-09-24 13:15:14 1 9 2019-09-24 13:25:14 1 8 2019-09-24 13:25:14 2 1 2019-09-24 13:30:14 1 9 2019-09-24 13:30:14 2 1 2019-09-24 13:40:14 1 8 2019-09-24 13:40:14 2 1 2019-09-24 13:50:14 1 7 2019-09-24 13:50:14 2 1 2019-09-24 14:00:14 1 7 2019-09-24 14:00:14 2 1 2019-09-24 14:15:14 1 8 2019-09-24 14:15:14 2 1 2019-09-24 14:30:14 1 7 2019-09-24 14:30:14 2 1 2019-09-24 14:40:14 1 7 2019-09-24 14:40:14 2 1 2019-09-24 14:50:14 1 8 2019-09-24 14:50:14 2 2 2019-09-24 15:05:14 1 6 2019-09-24 15:05:14 2 1 2019-09-24 15:15:14 1 6 2019-09-24 15:15:14 2 1 2019-09-24 15:20:14 1 8 2019-09-24 15:20:14 2 1 2019-09-24 15:25:14 1 10 2019-09-24 15:25:14 2 2 2019-09-24 16:20:14 1 7 2019-09-24 16:35:14 1 6 2019-09-24 16:35:14 2 2 2019-09-24 16:45:14 1 7 2019-09-24 16:45:14 2 2 2019-09-24 16:55:14 1 6 2019-09-24 16:55:14 2 2 2019-09-24 17:10:14 1 4 2019-09-24 17:10:14 2 2 2019-09-24 17:20:14 1 4 2019-09-24 17:20:14 2 2 2019-09-24 17:30:14 1 6 2019-09-24 17:30:14 2 2 2019-09-24 18:20:14 1 5 2019-09-24 18:20:14 2 2 2019-09-24 18:45:14 1 5 2019-09-24 18:45:14 2 2 2019-09-24 18:50:14 1 4 2019-09-24 18:50:14 2 2 2019-09-24 18:55:14 1 6 2019-09-24 18:55:14 2 3 2019-09-24 19:10:14 1 5 2019-09-24 19:10:14 2 3 2019-09-24 19:20:14 1 4 2019-09-24 19:20:14 2 3 2019-09-24 19:25:14 1 4 2019-09-24 19:25:14 2 3 2019-09-24 19:35:14 1 5 2019-09-24 19:35:14 2 2 2019-09-24 19:50:14 1 4 2019-09-24 19:50:14 2 3 2019-09-24 20:00:14 1 5 2019-09-24 20:00:14 2 3 2019-09-24 20:10:14 1 6 2019-09-24 20:10:14 2 3 2019-09-24 20:15:14 1 6 2019-09-24 20:15:14 2 3 2019-09-24 20:20:14 1 6 2019-09-24 20:20:14 2 3 2019-09-23 19:00:14 1 8 2019-09-23 19:00:14 2 3 2019-09-23 19:25:14 1 6 2019-09-23 19:25:14 2 2 2019-09-23 19:35:14 1 9 2019-09-23 19:35:14 2 1 2019-09-23 19:45:14 1 10 2019-09-23 20:10:14 1 10 2019-09-23 20:10:14 2 2 2019-09-23 20:20:14 1 7 2019-09-23 20:20:14 2 2 2019-09-23 20:25:14 1 10 2019-09-23 20:25:14 2 2 2019-09-23 20:30:14 1 7 2019-09-23 20:30:14 2 2 2019-09-23 20:35:14 1 10 2019-09-23 20:35:14 2 3 2019-09-23 20:40:14 1 9 2019-09-23 20:40:14 2 2 2019-09-23 20:55:14 1 9 2019-09-23 20:55:14 2 3 2019-09-23 21:30:14 1 9 2019-09-23 21:30:14 2 4 2019-09-23 21:40:14 1 10 2019-09-23 21:40:14 2 3 2019-09-23 21:50:14 1 9 2019-09-23 21:50:14 2 3 2019-09-23 21:55:14 1 10 2019-09-23 21:55:14 2 3 2019-09-23 22:00:14 1 9 2019-09-23 22:00:14 2 3 2019-09-23 22:05:14 1 9 2019-09-23 22:05:14 2 2 2019-09-23 22:15:14 1 10 2019-09-23 22:15:14 2 5 2019-09-23 22:20:14 1 10 2019-09-23 22:20:14 2 5 2019-09-23 22:40:14 1 10 2019-09-23 22:40:14 2 2 2019-09-23 23:00:14 1 11 2019-09-23 23:00:14 2 2 2019-09-23 23:15:14 1 8 2019-09-23 23:15:14 2 2 2019-09-23 23:20:14 1 7 2019-09-23 23:20:14 2 2 2019-09-23 23:25:14 1 6 2019-09-23 23:25:14 2 2 2019-09-23 23:30:14 1 6 2019-09-23 23:30:14 2 2 2019-09-23 23:45:14 1 7 2019-09-23 23:45:14 2 2 2019-09-24 00:00:14 1 8 2019-09-24 00:00:14 2 2 2019-09-24 00:05:14 1 7 2019-09-24 00:05:14 2 2 2019-09-24 00:15:14 1 8 2019-09-24 00:15:14 2 1 2019-09-24 00:40:14 1 7 2019-09-24 00:40:14 2 1 2019-09-24 00:45:14 1 6 2019-09-24 00:45:14 2 1 2019-09-24 00:55:14 1 6 2019-09-24 01:20:14 1 5 2019-09-24 01:25:14 1 5 2019-09-24 01:30:14 1 5 2019-09-24 01:35:14 1 5 2019-09-24 01:40:14 1 5 2019-09-24 03:15:14 1 4 2019-09-24 03:20:14 1 4 2019-09-24 03:25:14 1 4 2019-09-24 03:30:14 1 4 2019-09-24 03:35:14 1 4 2019-09-24 03:40:14 1 4 2019-09-24 03:45:14 1 4 2019-09-24 03:50:14 1 4 2019-09-24 03:55:14 1 4 2019-09-24 04:00:14 1 4 2019-09-24 05:35:14 1 8 2019-09-24 05:40:14 1 7 2019-09-24 06:00:14 1 7 2019-09-24 06:00:14 2 1 2019-09-24 06:10:14 1 6 2019-09-24 06:25:14 1 5 2019-09-24 06:45:14 1 5 2019-09-24 06:45:14 2 1 2019-09-24 06:50:14 1 6 2019-09-24 06:50:14 2 1 2019-09-24 07:05:14 1 5 2019-09-24 07:05:14 2 1 2019-09-24 07:10:14 1 5 2019-09-24 07:10:14 2 1 2019-09-24 08:05:14 1 3 2019-09-24 08:05:14 2 1 2019-09-24 08:10:14 1 4 2019-09-24 08:15:14 1 6 2019-09-24 08:20:14 1 6 2019-09-24 08:25:14 1 6 2019-09-24 08:35:14 1 7 2019-09-24 08:45:14 1 6 2019-09-24 08:45:14 2 1 2019-09-24 08:55:14 1 7 2019-09-24 09:15:14 1 9 2019-09-24 09:20:14 1 8 2019-09-24 10:20:14 1 9 2019-09-24 10:30:14 1 8 2019-09-24 10:30:14 2 1 2019-09-24 10:40:14 1 8 2019-09-24 10:40:14 2 2 2019-09-24 11:00:14 1 8 2019-09-24 11:00:14 2 1 2019-09-24 11:10:14 1 9 2019-09-24 11:10:14 2 1 2019-09-24 11:30:14 1 8 2019-09-24 11:45:14 1 8 2019-09-24 11:45:14 2 2 2019-09-24 12:15:14 1 9 2019-09-24 12:15:14 2 1 2019-09-24 12:40:14 1 9 2019-09-24 13:35:14 1 8 2019-09-24 13:35:14 2 1 2019-09-24 13:45:14 1 7 2019-09-24 13:45:14 2 1 2019-09-24 14:05:14 1 7 2019-09-24 14:05:14 2 1 2019-09-24 14:25:14 1 8 2019-09-24 14:25:14 2 1 2019-09-24 14:35:14 1 7 2019-09-24 14:35:14 2 1 2019-09-24 14:45:14 1 7 2019-09-24 14:45:14 2 2 2019-09-24 14:55:14 1 6 2019-09-24 14:55:14 2 1 2019-09-24 15:00:14 1 6 2019-09-24 15:00:14 2 1 2019-09-24 15:30:14 1 9 2019-09-24 15:30:14 2 3 2019-09-24 15:45:14 1 10 2019-09-24 15:45:14 2 3 2019-09-24 15:50:14 1 8 2019-09-24 15:50:14 2 2 2019-09-24 15:55:14 1 7 2019-09-24 15:55:14 2 2 2019-09-24 16:00:14 1 9 2019-09-24 16:00:14 2 2 2019-09-24 16:25:14 1 7 2019-09-24 17:00:14 1 6 2019-09-24 17:00:14 2 2 2019-09-24 17:05:14 1 6 2019-09-24 17:05:14 2 2 2019-09-24 17:15:14 1 4 2019-09-24 17:15:14 2 2 2019-09-24 17:35:14 1 6 2019-09-24 17:35:14 2 2 2019-09-24 17:40:14 1 5 2019-09-24 17:40:14 2 2 2019-09-24 17:45:14 1 6 2019-09-24 17:45:14 2 2 2019-09-24 17:50:14 1 6 2019-09-24 17:50:14 2 3 2019-09-24 18:05:14 1 6 2019-09-24 18:05:14 2 2 2019-09-24 18:10:14 1 5 2019-09-24 18:10:14 2 2 2019-09-24 18:30:14 1 5 2019-09-24 18:30:14 2 2 2019-09-24 18:35:14 1 5 2019-09-24 18:35:14 2 2 2019-09-24 18:40:14 1 5 2019-09-24 18:40:14 2 2 2019-09-24 19:00:14 1 5 2019-09-24 19:00:14 2 2 2019-09-24 19:05:14 1 4 2019-09-24 19:05:14 2 3 2019-09-24 19:30:14 1 5 2019-09-24 19:30:14 2 3 2019-09-24 19:40:14 1 6 2019-09-24 19:40:14 2 3 2019-09-24 20:30:14 1 6 2019-09-24 20:30:14 2 1 2019-09-24 20:50:14 1 10 2019-09-24 20:50:14 2 3 2019-09-24 21:35:14 1 9 2019-09-24 21:35:14 2 4 2019-09-24 22:05:14 1 7 2019-09-24 22:05:14 2 3 2019-09-24 22:10:14 1 7 2019-09-24 22:10:14 2 2 2019-09-24 22:15:14 1 6 2019-09-24 22:15:14 2 2 2019-09-24 22:50:14 1 7 2019-09-24 22:50:14 2 3 2019-09-24 23:15:14 1 6 2019-09-24 23:15:14 2 2 2019-09-24 23:25:14 1 6 2019-09-24 23:25:14 2 2 2019-09-24 23:35:14 1 6 2019-09-24 23:35:14 2 2 2019-09-25 00:00:14 1 5 2019-09-25 00:00:14 2 1 2019-09-25 00:05:14 1 5 2019-09-25 00:05:14 2 1 2019-09-25 00:25:14 1 5 2019-09-25 00:50:14 1 5 2019-09-25 01:00:14 1 5 2019-09-25 01:05:15 1 4 2019-09-25 01:30:14 1 3 2019-09-25 01:45:14 1 3 2019-09-25 01:50:14 1 3 2019-09-25 01:55:14 1 3 2019-09-25 02:00:15 1 3 2019-09-25 02:05:14 1 3 2019-09-25 04:05:14 1 2 2019-09-25 04:40:14 1 2 2019-09-25 04:55:14 1 3 2019-09-25 05:25:14 1 4 2019-09-25 05:25:14 2 1 2019-09-25 05:30:14 1 4 2019-09-25 05:30:14 2 1 2019-09-25 05:35:14 1 4 2019-09-25 05:35:14 2 1 2019-09-25 06:25:14 1 4 2019-09-25 06:30:14 1 4 2019-09-25 07:35:14 1 9 2019-09-25 07:35:14 2 2 2019-09-25 08:10:14 1 7 2019-09-25 08:10:14 2 2 2019-09-25 08:20:14 1 8 2019-09-25 08:20:14 2 2 2019-09-25 08:35:14 1 10 2019-09-25 08:35:14 2 1 2019-09-25 08:40:14 1 10 2019-09-25 08:40:14 2 1 2019-09-25 08:45:14 1 9 2019-09-25 08:45:14 2 1 2019-09-25 08:50:14 1 9 2019-09-25 08:50:14 2 1 2019-09-25 08:55:14 1 11 2019-09-25 08:55:14 2 1 2019-09-25 09:10:14 1 11 2019-09-25 09:15:14 1 11 2019-09-25 09:15:14 2 1 2019-09-25 09:35:14 1 11 2019-09-25 09:35:14 2 1 2019-09-25 09:55:14 1 11 2019-09-25 09:55:14 2 1 2019-09-25 10:05:14 1 11 2019-09-25 10:05:14 2 1 2019-09-25 10:15:14 1 11 2019-09-25 10:15:14 2 1 2019-09-25 10:25:14 1 7 2019-09-25 10:25:14 2 1 2019-09-25 10:30:14 1 10 2019-09-25 10:30:14 2 1 2019-09-25 10:40:14 1 12 2019-09-25 10:40:14 2 1 2019-09-25 10:45:14 1 12 2019-09-25 10:45:14 2 1 2019-09-25 10:50:14 1 10 2019-09-25 10:50:14 2 1 2019-09-25 11:15:14 1 10 2019-09-25 11:15:14 2 1 2019-09-25 11:20:14 1 10 2019-09-25 11:20:14 2 1 2019-09-25 11:30:14 1 10 2019-09-25 11:30:14 2 1 2019-09-25 12:15:14 1 11 2019-09-25 12:15:14 2 2 2019-09-25 12:30:14 1 12 2019-09-25 12:30:14 2 1 2019-09-25 13:05:14 1 10 2019-09-25 13:05:14 2 2 2019-09-25 13:10:14 1 12 2019-09-25 13:10:14 2 2 2019-09-25 13:30:14 1 11 2019-09-25 13:30:14 2 2 2019-09-25 13:45:14 1 10 2019-09-25 13:45:14 2 2 2019-09-25 13:50:14 1 11 2019-09-25 13:50:14 2 2 2019-09-25 14:10:14 1 12 2019-09-25 14:10:14 2 1 2019-09-25 14:20:14 1 9 2019-09-25 14:20:14 2 1 2019-09-25 14:35:14 1 10 2019-09-25 14:35:14 2 3 2019-09-25 14:50:14 1 11 2019-09-25 14:50:14 2 2 2019-09-25 14:55:14 1 9 2019-09-25 14:55:14 2 3 2019-09-25 15:10:14 1 14 2019-09-25 15:10:14 2 2 2019-09-25 15:35:14 1 10 2019-09-25 15:35:14 2 2 2019-09-25 15:40:14 1 10 2019-09-25 15:40:14 2 2 2019-09-25 16:10:14 1 9 2019-09-25 16:10:14 2 2 2019-09-25 16:15:14 1 11 2019-09-25 16:15:14 2 2 2019-09-25 16:20:14 1 10 2019-09-25 16:20:14 2 4 2019-09-25 16:25:14 1 12 2019-09-25 16:25:14 2 3 2019-09-25 16:45:14 1 10 2019-09-25 16:45:14 2 2 2019-09-25 16:50:14 1 9 2019-09-25 16:50:14 2 2 2019-09-25 16:55:14 1 9 2019-09-25 16:55:14 2 2 2019-09-25 17:10:14 1 11 2019-09-25 17:10:14 2 5 2019-09-25 17:15:14 1 8 2019-09-25 17:15:14 2 3 2019-09-25 17:20:14 1 8 2019-09-25 17:20:14 2 3 2019-09-25 18:05:14 1 9 2019-09-25 18:05:14 2 4 2019-09-25 18:20:14 1 7 2019-09-25 18:20:14 2 1 2019-09-25 18:40:14 1 8 2019-09-25 18:40:14 2 1 2019-09-25 18:55:14 1 7 2019-09-25 18:55:14 2 2 2019-09-25 19:15:14 1 6 2019-09-25 19:15:14 2 2 2019-09-25 19:35:14 1 5 2019-09-25 19:35:14 2 5 2019-09-25 20:15:14 1 7 2019-09-25 20:15:14 2 1 2019-09-25 20:45:14 1 9 2019-09-25 20:45:14 2 2 2019-09-25 21:10:14 1 8 2019-09-25 21:10:14 2 1 2019-09-25 21:20:14 1 9 2019-09-25 21:20:14 2 1 2019-09-25 21:30:14 1 9 2019-09-25 21:30:14 2 1 2019-09-25 21:35:14 1 8 2019-09-25 21:35:14 2 1 2019-09-25 21:45:14 1 9 2019-09-25 21:45:14 2 1 2019-09-25 21:55:14 1 8 2019-09-25 21:55:14 2 2 2019-09-25 22:10:14 1 10 2019-09-25 22:10:14 2 4 2019-09-25 22:20:14 1 9 2019-09-25 22:20:14 2 3 2019-09-25 22:25:14 1 8 2019-09-25 22:25:14 2 2 2019-09-25 22:30:14 1 7 2019-09-25 22:30:14 2 2 2019-09-25 22:35:14 1 8 2019-09-25 22:35:14 2 2 2019-09-25 22:40:14 1 9 2019-09-25 22:40:14 2 3 2019-09-25 22:45:14 1 11 2019-09-25 22:45:14 2 2 2019-09-25 22:50:14 1 10 2019-09-25 22:50:14 2 2 2019-09-25 22:55:14 1 9 2019-09-25 22:55:14 2 3 2019-09-25 23:05:14 1 8 2019-09-25 23:05:14 2 2 2019-09-25 23:10:14 1 12 2019-09-25 23:10:14 2 2 2019-09-25 23:15:14 2 1 2019-09-25 23:20:14 1 9 2019-09-25 23:20:14 2 1 2019-09-25 23:25:14 1 11 2019-09-25 23:25:14 2 1 2019-09-24 22:20:14 1 9 2019-09-24 22:25:14 1 9 2019-09-24 22:25:14 2 1 2019-09-24 22:30:14 1 7 2019-09-24 22:30:14 2 1 2019-09-24 22:40:14 1 7 2019-09-24 22:40:14 2 1 2019-09-24 22:45:14 1 9 2019-09-24 22:45:14 2 3 2019-09-24 23:00:14 1 7 2019-09-24 23:00:14 2 2 2019-09-24 23:10:14 1 8 2019-09-24 23:10:14 2 2 2019-09-25 00:10:14 1 5 2019-09-25 00:10:14 2 1 2019-09-25 00:30:14 1 5 2019-09-25 00:35:14 1 5 2019-09-25 00:45:14 1 6 2019-09-25 00:55:14 1 5 2019-09-25 01:20:14 1 3 2019-09-25 01:25:14 1 3 2019-09-25 01:40:14 1 3 2019-09-25 02:15:14 1 2 2019-09-25 02:15:14 2 1 2019-09-25 02:20:14 1 2 2019-09-25 02:20:14 2 1 2019-09-25 02:25:14 1 2 2019-09-25 02:25:14 2 1 2019-09-25 02:30:14 1 2 2019-09-25 02:30:14 2 1 2019-09-25 02:35:14 1 2 2019-09-25 02:35:14 2 1 2019-09-25 02:40:14 1 2 2019-09-25 02:40:14 2 1 2019-09-25 02:45:14 1 2 2019-09-25 02:45:14 2 1 2019-09-25 03:10:14 1 2 2019-09-25 03:15:14 1 2 2019-09-25 03:20:14 1 2 2019-09-25 03:25:14 1 2 2019-09-25 03:30:14 1 2 2019-09-25 03:35:14 1 2 2019-09-25 03:40:14 1 2 2019-09-25 03:45:14 1 2 2019-09-25 03:50:14 1 2 2019-09-25 03:55:14 1 2 2019-09-25 04:00:14 1 2 2019-09-25 04:10:14 1 2 2019-09-25 04:15:14 1 2 2019-09-25 04:45:14 1 2 2019-09-25 04:50:14 1 2 2019-09-25 05:20:14 1 3 2019-09-25 05:20:14 2 1 2019-09-25 06:10:14 1 4 2019-09-25 06:10:14 2 1 2019-09-25 06:55:14 1 2 2019-09-25 06:55:14 2 2 2019-09-25 07:10:14 1 6 2019-09-25 07:10:14 2 2 2019-09-25 07:15:14 1 6 2019-09-25 07:15:14 2 2 2019-09-25 07:30:14 1 7 2019-09-25 07:30:14 2 2 2019-09-25 07:45:14 1 7 2019-09-25 07:45:14 2 2 2019-09-25 08:05:14 1 7 2019-09-25 08:05:14 2 2 2019-09-25 08:15:14 1 7 2019-09-25 08:15:14 2 2 2019-09-25 08:25:14 1 8 2019-09-25 08:25:14 2 2 2019-09-25 09:00:14 1 11 2019-09-25 09:00:14 2 1 2019-09-25 09:20:14 1 11 2019-09-25 09:20:14 2 1 2019-09-25 09:30:14 1 11 2019-09-25 09:30:14 2 1 2019-09-25 09:40:14 1 11 2019-09-25 09:40:14 2 1 2019-09-25 09:50:14 1 10 2019-09-25 09:50:14 2 1 2019-09-25 10:00:14 1 11 2019-09-25 10:00:14 2 1 2019-09-25 10:20:14 1 11 2019-09-25 10:20:14 2 1 2019-09-25 10:35:14 1 10 2019-09-25 10:35:14 2 1 2019-09-25 11:05:14 1 11 2019-09-25 11:05:14 2 1 2019-09-25 11:35:14 1 10 2019-09-25 11:35:14 2 1 2019-09-25 11:40:14 1 10 2019-09-25 11:40:14 2 1 2019-09-25 11:45:14 1 9 2019-09-25 11:45:14 2 2 2019-09-25 11:50:14 1 10 2019-09-25 11:50:14 2 2 2019-09-25 12:05:14 1 11 2019-09-25 12:05:14 2 2 2019-09-25 12:10:14 1 10 2019-09-25 12:10:14 2 2 2019-09-25 12:35:14 1 11 2019-09-25 12:35:14 2 1 2019-09-25 12:45:14 1 10 2019-09-25 12:45:14 2 1 2019-09-25 12:50:14 1 11 2019-09-25 12:50:14 2 1 2019-09-25 13:00:14 1 11 2019-09-25 13:00:14 2 2 2019-09-25 13:20:14 1 11 2019-09-25 13:20:14 2 2 2019-09-25 13:55:14 1 11 2019-09-25 13:55:14 2 1 2019-09-25 14:00:14 1 12 2019-09-25 14:00:14 2 1 2019-09-25 14:05:14 1 13 2019-09-25 14:05:14 2 1 2019-09-25 14:25:14 1 9 2019-09-25 14:25:14 2 1 2019-09-25 15:00:14 1 11 2019-09-25 15:00:14 2 2 2019-09-25 15:05:14 1 13 2019-09-25 15:05:14 2 1 2019-09-25 15:15:14 1 13 2019-09-25 15:15:14 2 2 2019-09-25 15:20:14 1 11 2019-09-25 15:20:14 2 2 2019-09-25 15:50:14 1 9 2019-09-25 15:50:14 2 1 2019-09-25 16:05:14 1 9 2019-09-25 16:05:14 2 1 2019-09-25 16:30:14 1 11 2019-09-25 16:30:14 2 1 2019-09-25 17:35:14 1 8 2019-09-25 17:35:14 2 3 2019-09-25 17:55:14 1 8 2019-09-25 17:55:14 2 4 2019-09-25 18:10:14 1 8 2019-09-25 18:10:14 2 3 2019-09-25 18:15:14 1 7 2019-09-25 18:15:14 2 2 2019-09-25 18:45:14 1 7 2019-09-25 18:45:14 2 1 2019-09-25 18:50:14 1 7 2019-09-25 18:50:14 2 2 2019-09-25 19:00:14 1 6 2019-09-25 19:00:14 2 2 2019-09-25 19:05:14 1 6 2019-09-25 19:05:14 2 2 2019-09-25 19:10:14 1 5 2019-09-25 19:10:14 2 1 2019-09-25 19:20:14 1 5 2019-09-25 19:20:14 2 4 2019-09-25 19:25:14 1 5 2019-09-25 19:25:14 2 5 2019-09-25 19:30:14 1 5 2019-09-25 19:30:14 2 5 2019-09-25 20:05:14 1 8 2019-09-25 20:05:14 2 3 2019-09-25 20:20:14 1 7 2019-09-25 20:20:14 2 2 2019-09-25 20:30:14 1 9 2019-09-25 20:30:14 2 2 2019-09-25 20:35:14 1 7 2019-09-25 20:35:14 2 2 2019-09-25 20:40:14 1 7 2019-09-25 20:40:14 2 2 2019-09-25 20:50:14 1 9 2019-09-25 20:50:14 2 3 2019-09-25 20:55:14 1 8 2019-09-25 20:55:14 2 2 2019-09-25 21:00:14 1 7 2019-09-25 21:25:14 1 10 2019-09-25 21:25:14 2 1 2019-09-25 21:50:14 1 11 2019-09-25 21:50:14 2 3 2019-09-25 22:00:14 1 8 2019-09-25 22:00:14 2 3 2019-09-25 22:05:14 1 9 2019-09-25 22:05:14 2 3 2019-09-25 22:15:14 1 8 2019-09-25 22:15:14 2 4 2019-09-25 23:00:14 1 7 2019-09-25 23:00:14 2 3 2019-09-25 23:15:14 1 8 2019-09-24 22:35:14 1 9 2019-09-24 22:35:14 2 2 2019-09-24 22:55:14 1 6 2019-09-24 22:55:14 2 2 2019-09-24 23:05:14 1 7 2019-09-24 23:05:14 2 2 2019-09-24 23:20:14 1 7 2019-09-24 23:20:14 2 2 2019-09-24 23:30:14 1 5 2019-09-24 23:30:14 2 2 2019-09-24 23:40:14 1 6 2019-09-24 23:40:14 2 1 2019-09-24 23:45:14 1 5 2019-09-24 23:45:14 2 1 2019-09-24 23:50:14 1 5 2019-09-24 23:50:14 2 1 2019-09-24 23:55:14 1 5 2019-09-24 23:55:14 2 1 2019-09-25 00:15:14 1 6 2019-09-25 00:20:14 1 5 2019-09-25 00:40:14 1 7 2019-09-25 01:10:14 1 5 2019-09-25 01:15:14 1 4 2019-09-25 01:35:14 1 4 2019-09-25 02:10:14 1 2 2019-09-25 02:50:14 1 2 2019-09-25 02:50:14 2 1 2019-09-25 02:55:14 1 2 2019-09-25 02:55:14 2 1 2019-09-25 03:00:14 1 2 2019-09-25 03:00:14 2 1 2019-09-25 03:05:14 1 2 2019-09-25 03:05:14 2 1 2019-09-25 04:20:14 1 2 2019-09-25 04:25:14 1 2 2019-09-25 04:30:14 1 2 2019-09-25 04:35:14 1 2 2019-09-25 05:00:14 1 3 2019-09-25 05:00:14 2 1 2019-09-25 05:05:14 1 3 2019-09-25 05:05:14 2 1 2019-09-25 05:10:14 1 4 2019-09-25 05:15:14 1 4 2019-09-25 05:15:14 2 1 2019-09-25 05:40:14 1 5 2019-09-25 05:40:14 2 1 2019-09-25 05:45:14 1 5 2019-09-25 05:45:14 2 1 2019-09-25 05:50:14 1 5 2019-09-25 05:50:14 2 1 2019-09-25 05:55:14 1 6 2019-09-25 05:55:14 2 1 2019-09-25 06:00:14 1 5 2019-09-25 06:00:14 2 1 2019-09-25 06:05:14 1 5 2019-09-25 06:05:14 2 1 2019-09-25 06:15:14 1 4 2019-09-25 06:15:14 2 1 2019-09-25 06:20:14 1 4 2019-09-25 06:20:14 2 1 2019-09-25 06:35:14 1 4 2019-09-25 06:35:14 2 1 2019-09-25 06:40:14 1 4 2019-09-25 06:40:14 2 2 2019-09-25 06:45:14 1 4 2019-09-25 06:45:14 2 2 2019-09-25 06:50:14 1 4 2019-09-25 06:50:14 2 2 2019-09-25 07:00:14 1 2 2019-09-25 07:00:14 2 2 2019-09-25 07:05:14 1 4 2019-09-25 07:05:14 2 2 2019-09-25 07:20:14 1 7 2019-09-25 07:20:14 2 2 2019-09-25 07:25:14 1 6 2019-09-25 07:25:14 2 2 2019-09-25 07:40:14 1 7 2019-09-25 07:40:14 2 2 2019-09-25 07:50:14 1 9 2019-09-25 07:50:14 2 3 2019-09-25 07:55:14 1 8 2019-09-25 07:55:14 2 3 2019-09-25 08:00:14 1 8 2019-09-25 08:00:14 2 2 2019-09-25 08:30:14 1 8 2019-09-25 08:30:14 2 1 2019-09-25 09:05:14 1 11 2019-09-25 09:25:14 1 11 2019-09-25 09:25:14 2 1 2019-09-25 09:45:14 1 10 2019-09-25 09:45:14 2 1 2019-09-25 10:10:14 1 10 2019-09-25 10:10:14 2 1 2019-09-25 10:55:14 1 11 2019-09-25 10:55:14 2 1 2019-09-25 11:00:14 1 11 2019-09-25 11:00:14 2 1 2019-09-25 11:10:14 1 10 2019-09-25 11:10:14 2 2 2019-09-25 11:25:14 1 10 2019-09-25 11:25:14 2 1 2019-09-25 11:55:14 1 10 2019-09-25 11:55:14 2 2 2019-09-25 12:00:14 1 10 2019-09-25 12:00:14 2 2 2019-09-25 12:20:14 1 11 2019-09-25 12:20:14 2 2 2019-09-25 12:25:14 1 12 2019-09-25 12:25:14 2 2 2019-09-25 12:40:14 1 10 2019-09-25 12:40:14 2 1 2019-09-25 12:55:14 1 11 2019-09-25 12:55:14 2 1 2019-09-25 13:15:14 1 11 2019-09-25 13:15:14 2 2 2019-09-25 13:25:14 1 10 2019-09-25 13:25:14 2 2 2019-09-25 13:35:14 1 11 2019-09-25 13:35:14 2 2 2019-09-25 13:40:14 1 10 2019-09-25 13:40:14 2 2 2019-09-25 14:15:14 1 9 2019-09-25 14:15:14 2 1 2019-09-25 14:30:14 1 9 2019-09-25 14:30:14 2 1 2019-09-25 14:40:14 1 11 2019-09-25 14:40:14 2 2 2019-09-25 14:45:14 1 11 2019-09-25 14:45:14 2 2 2019-09-25 15:25:14 1 11 2019-09-25 15:25:14 2 2 2019-09-25 15:30:14 1 11 2019-09-25 15:30:14 2 2 2019-09-25 15:45:14 1 9 2019-09-25 15:45:14 2 2 2019-09-25 15:55:14 1 9 2019-09-25 15:55:14 2 1 2019-09-25 16:00:14 1 9 2019-09-25 16:00:14 2 1 2019-09-25 16:35:14 1 11 2019-09-25 16:35:14 2 2 2019-09-25 16:40:14 1 11 2019-09-25 16:40:14 2 2 2019-09-25 17:00:14 1 10 2019-09-25 17:00:14 2 3 2019-09-25 17:05:14 1 9 2019-09-25 17:05:14 2 5 2019-09-25 17:25:14 1 10 2019-09-25 17:25:14 2 3 2019-09-25 17:30:14 1 9 2019-09-25 17:30:14 2 3 2019-09-25 17:40:14 1 9 2019-09-25 17:40:14 2 3 2019-09-25 17:45:14 1 8 2019-09-25 17:45:14 2 4 2019-09-25 17:50:14 1 7 2019-09-25 17:50:14 2 4 2019-09-25 18:00:14 1 8 2019-09-25 18:00:14 2 4 2019-09-25 18:25:14 1 6 2019-09-25 18:25:14 2 2 2019-09-25 18:30:14 1 5 2019-09-25 18:30:14 2 1 2019-09-25 18:35:14 1 6 2019-09-25 18:35:14 2 1 2019-09-25 19:40:14 1 5 2019-09-25 19:40:14 2 5 2019-09-25 19:45:14 1 5 2019-09-25 19:45:14 2 4 2019-09-25 19:50:14 1 4 2019-09-25 19:50:14 2 4 2019-09-25 19:55:14 1 4 2019-09-25 19:55:14 2 3 2019-09-25 20:00:14 1 7 2019-09-25 20:00:14 2 3 2019-09-25 20:10:14 1 7 2019-09-25 20:10:14 2 2 2019-09-25 20:25:14 1 6 2019-09-25 20:25:14 2 2 2019-09-25 21:05:14 1 8 2019-09-25 21:05:14 2 1 2019-09-25 21:15:14 1 9 2019-09-25 21:15:14 2 1 2019-09-25 21:40:14 1 9 2019-09-25 21:40:14 2 1 2019-09-25 23:30:14 1 8 2019-09-25 23:30:14 2 1 2019-09-25 23:35:14 1 9 2019-09-25 23:35:14 2 1 2019-09-26 00:00:14 1 9 2019-09-26 00:35:14 1 10 2019-09-26 00:40:14 1 9 2019-09-26 00:45:14 1 8 2019-09-26 00:50:14 1 7 2019-09-26 01:10:14 1 6 2019-09-26 01:15:14 1 6 2019-09-26 01:20:14 1 6 2019-09-26 01:45:14 1 6 2019-09-26 02:30:14 1 6 2019-09-26 02:35:14 1 6 2019-09-26 02:40:14 1 6 2019-09-26 04:05:14 1 3 2019-09-26 04:10:14 1 3 2019-09-26 04:15:14 1 3 2019-09-26 04:20:14 1 3 2019-09-26 04:25:14 1 3 2019-09-26 04:30:14 1 3 2019-09-26 04:35:14 1 3 2019-09-26 05:40:14 1 3 2019-09-26 06:00:14 1 6 2019-09-26 06:30:14 1 6 2019-09-26 06:30:14 2 1 2019-09-26 06:40:14 1 4 2019-09-26 06:40:14 2 2 2019-09-26 06:45:14 1 5 2019-09-26 06:45:14 2 2 2019-09-26 07:20:14 1 6 2019-09-26 07:45:14 1 6 2019-09-26 07:45:14 2 1 2019-09-26 07:50:14 1 7 2019-09-26 07:50:14 2 1 2019-09-26 07:55:14 1 7 2019-09-26 07:55:14 2 1 2019-09-26 08:00:14 1 8 2019-09-26 08:00:14 2 1 2019-09-26 08:10:14 1 9 2019-09-26 08:10:14 2 1 2019-09-26 08:25:14 1 9 2019-09-26 08:25:14 2 1 2019-09-26 08:30:14 1 8 2019-09-26 08:30:14 2 1 2019-09-26 08:40:14 1 8 2019-09-26 08:40:14 2 1 2019-09-26 08:45:14 1 9 2019-09-26 08:45:14 2 1 2019-09-26 09:25:14 1 6 2019-09-26 09:45:14 1 8 2019-09-26 09:45:14 2 1 2019-09-26 09:55:14 1 10 2019-09-26 09:55:14 2 1 2019-09-26 10:00:14 1 8 2019-09-26 10:00:14 2 1 2019-09-26 10:05:14 1 8 2019-09-26 10:05:14 2 1 2019-09-26 10:10:14 1 7 2019-09-26 10:10:14 2 1 2019-09-26 10:15:14 1 8 2019-09-26 10:15:14 2 1 2019-09-26 10:20:14 1 7 2019-09-26 10:20:14 2 1 2019-09-26 10:30:14 1 7 2019-09-26 10:30:14 2 2 2019-09-26 10:35:14 1 9 2019-09-26 10:35:14 2 3 2019-09-26 11:15:14 1 11 2019-09-26 11:15:14 2 2 2019-09-26 11:40:14 1 8 2019-09-26 11:40:14 2 2 2019-09-26 11:50:14 1 8 2019-09-26 11:50:14 2 1 2019-09-26 12:00:14 1 7 2019-09-26 12:00:14 2 1 2019-09-26 12:05:14 1 9 2019-09-26 12:15:14 1 7 2019-09-26 12:15:14 2 1 2019-09-26 12:35:14 1 8 2019-09-26 12:35:14 2 1 2019-09-26 12:55:14 1 7 2019-09-26 12:55:14 2 1 2019-09-26 13:15:14 1 7 2019-09-26 13:15:14 2 1 2019-09-26 13:20:14 1 10 2019-09-26 13:20:14 2 2 2019-09-26 13:30:14 1 8 2019-09-26 13:30:14 2 2 2019-09-26 13:40:14 1 7 2019-09-26 13:40:14 2 1 2019-09-26 13:45:14 1 7 2019-09-26 13:45:14 2 2 2019-09-26 13:55:14 1 8 2019-09-26 13:55:14 2 1 2019-09-26 14:00:14 1 8 2019-09-26 14:00:14 2 1 2019-09-26 14:10:14 1 7 2019-09-26 14:10:14 2 1 2019-09-26 14:30:14 1 8 2019-09-26 14:30:14 2 2 2019-09-26 14:40:14 1 9 2019-09-26 14:40:14 2 2 2019-09-26 14:45:14 1 9 2019-09-26 14:45:14 2 2 2019-09-26 15:00:14 1 6 2019-09-26 15:00:14 2 2 2019-09-26 15:10:14 1 5 2019-09-26 15:10:14 2 2 2019-09-26 15:40:14 1 8 2019-09-26 15:40:14 2 3 2019-09-26 16:05:14 1 6 2019-09-26 16:05:14 2 2 2019-09-26 16:10:14 1 6 2019-09-26 16:10:14 2 2 2019-09-26 16:15:14 1 6 2019-09-26 16:15:14 2 3 2019-09-26 16:45:14 1 6 2019-09-26 16:45:14 2 4 2019-09-26 17:15:14 1 7 2019-09-26 17:15:14 2 3 2019-09-26 17:50:14 1 7 2019-09-26 17:50:14 2 1 2019-09-26 18:00:14 1 8 2019-09-26 18:00:14 2 1 2019-09-26 18:10:14 1 6 2019-09-26 18:10:14 2 3 2019-09-26 18:15:14 1 7 2019-09-26 18:15:14 2 4 2019-09-26 18:20:14 1 8 2019-09-26 18:20:14 2 3 2019-09-26 18:25:14 1 7 2019-09-26 18:25:14 2 4 2019-09-26 18:30:14 1 8 2019-09-26 18:30:14 2 6 2019-09-26 18:55:14 1 7 2019-09-26 18:55:14 2 4 2019-09-26 19:20:14 1 5 2019-09-26 19:20:14 2 2 2019-09-26 19:30:14 1 4 2019-09-26 19:30:14 2 2 2019-09-26 19:55:14 1 5 2019-09-26 19:55:14 2 2 2019-09-26 20:15:14 1 5 2019-09-26 20:15:14 2 3 2019-09-26 20:20:14 1 5 2019-09-26 20:20:14 2 3 2019-09-26 20:25:14 1 5 2019-09-26 20:25:14 2 3 2019-09-26 21:15:14 1 4 2019-09-26 21:15:14 2 2 2019-09-26 21:45:14 1 5 2019-09-26 21:45:14 2 2 2019-09-26 21:55:14 1 8 2019-09-26 21:55:14 2 2 2019-09-26 22:10:14 1 8 2019-09-26 22:10:14 2 3 2019-09-26 22:25:14 1 11 2019-09-26 22:25:14 2 4 2019-09-26 22:30:14 1 11 2019-09-26 22:30:14 2 3 2019-09-26 22:45:14 1 9 2019-09-26 22:45:14 2 2 2019-09-26 22:50:14 1 8 2019-09-26 22:50:14 2 2 2019-09-26 22:55:14 1 8 2019-09-26 23:30:14 1 7 2019-09-26 23:40:14 1 7 2019-09-26 23:40:14 2 1 2019-09-27 00:00:14 1 8 2019-09-27 00:20:14 1 7 2019-09-27 00:35:14 1 6 2019-09-27 00:35:14 2 1 2019-09-27 00:40:14 1 5 2019-09-27 00:40:14 2 1 2019-09-27 00:45:14 1 4 2019-09-27 00:45:14 2 1 2019-09-27 00:50:14 1 4 2019-09-27 00:50:14 2 1 2019-09-27 00:55:14 1 8 2019-09-27 01:05:14 1 6 2019-09-27 01:05:14 2 1 2019-09-27 01:10:14 1 4 2019-09-27 01:15:14 1 5 2019-09-25 23:40:14 1 9 2019-09-25 23:45:14 1 8 2019-09-26 01:00:14 1 6 2019-09-26 01:05:14 1 6 2019-09-26 01:50:14 1 6 2019-09-26 01:55:14 1 6 2019-09-26 02:00:14 1 6 2019-09-26 02:20:14 1 6 2019-09-26 02:55:14 1 5 2019-09-26 03:00:14 1 5 2019-09-26 03:05:14 1 5 2019-09-26 03:30:14 1 4 2019-09-26 03:35:14 1 4 2019-09-26 03:40:14 1 4 2019-09-26 03:45:14 1 4 2019-09-26 03:50:14 1 4 2019-09-26 03:55:14 1 4 2019-09-26 04:00:14 1 4 2019-09-26 04:40:14 1 2 2019-09-26 04:45:14 1 2 2019-09-26 04:50:14 1 2 2019-09-26 04:55:14 1 2 2019-09-26 05:00:14 1 3 2019-09-26 05:05:14 1 3 2019-09-26 05:35:14 1 3 2019-09-26 05:55:14 1 6 2019-09-26 06:05:14 1 6 2019-09-26 06:15:14 1 4 2019-09-26 06:20:14 1 5 2019-09-26 06:25:14 1 5 2019-09-26 06:25:14 2 1 2019-09-26 06:35:15 1 6 2019-09-26 06:35:15 2 2 2019-09-26 06:55:14 1 5 2019-09-26 07:15:14 1 6 2019-09-26 07:35:14 1 8 2019-09-26 08:05:14 1 10 2019-09-26 08:05:14 2 1 2019-09-26 08:15:14 1 7 2019-09-26 08:15:14 2 1 2019-09-26 08:50:14 1 9 2019-09-26 08:50:14 2 2 2019-09-26 08:55:14 1 9 2019-09-26 08:55:14 2 3 2019-09-26 09:00:14 1 8 2019-09-26 09:00:14 2 2 2019-09-26 09:05:14 1 8 2019-09-26 09:05:14 2 1 2019-09-26 09:10:14 1 6 2019-09-26 09:10:14 2 1 2019-09-26 09:30:14 1 7 2019-09-26 09:40:14 1 8 2019-09-26 09:40:14 2 1 2019-09-26 09:50:14 1 11 2019-09-26 09:50:14 2 1 2019-09-26 10:25:14 1 7 2019-09-26 10:25:14 2 2 2019-09-26 10:50:14 1 9 2019-09-26 10:50:14 2 2 2019-09-26 11:00:14 1 11 2019-09-26 11:00:14 2 3 2019-09-26 11:20:14 1 10 2019-09-26 11:20:14 2 3 2019-09-26 11:25:14 1 10 2019-09-26 11:25:14 2 2 2019-09-26 11:35:14 1 9 2019-09-26 11:35:14 2 1 2019-09-26 11:55:14 1 8 2019-09-26 12:20:14 1 8 2019-09-26 12:20:14 2 1 2019-09-26 12:25:14 1 8 2019-09-26 12:25:14 2 1 2019-09-26 12:40:14 1 9 2019-09-26 12:40:14 2 1 2019-09-26 12:45:14 1 10 2019-09-26 12:45:14 2 1 2019-09-26 13:00:14 1 7 2019-09-26 13:00:14 2 2 2019-09-26 13:05:14 1 7 2019-09-26 13:05:14 2 1 2019-09-26 13:35:14 1 6 2019-09-26 13:35:14 2 1 2019-09-26 13:50:14 1 8 2019-09-26 13:50:14 2 1 2019-09-26 14:05:14 1 7 2019-09-26 14:05:14 2 1 2019-09-26 14:15:14 1 5 2019-09-26 14:15:14 2 1 2019-09-26 14:25:14 1 8 2019-09-26 14:25:14 2 2 2019-09-26 14:35:14 1 8 2019-09-26 14:35:14 2 2 2019-09-26 14:50:14 1 8 2019-09-26 14:50:14 2 2 2019-09-26 15:05:14 1 5 2019-09-26 15:05:14 2 2 2019-09-26 15:15:14 1 6 2019-09-26 15:15:14 2 4 2019-09-26 15:25:14 1 6 2019-09-26 15:25:14 2 4 2019-09-26 15:30:14 1 8 2019-09-26 15:30:14 2 3 2019-09-26 16:00:14 1 8 2019-09-26 16:00:14 2 3 2019-09-26 16:20:14 1 7 2019-09-26 16:20:14 2 3 2019-09-26 16:25:14 1 7 2019-09-26 16:25:14 2 4 2019-09-26 16:30:14 1 6 2019-09-26 16:30:14 2 4 2019-09-26 16:35:14 1 6 2019-09-26 16:35:14 2 5 2019-09-26 16:50:14 1 6 2019-09-26 16:50:14 2 4 2019-09-26 16:55:14 1 6 2019-09-26 16:55:14 2 4 2019-09-26 17:05:14 1 7 2019-09-26 17:05:14 2 4 2019-09-26 17:25:14 1 7 2019-09-26 17:25:14 2 3 2019-09-26 17:35:14 1 8 2019-09-26 17:35:14 2 2 2019-09-26 17:45:14 1 7 2019-09-26 17:45:14 2 1 2019-09-26 18:05:14 1 9 2019-09-26 18:05:14 2 1 2019-09-26 18:40:14 1 7 2019-09-26 18:40:14 2 3 2019-09-26 19:05:14 1 6 2019-09-26 19:05:14 2 4 2019-09-26 19:25:14 1 5 2019-09-26 19:25:14 2 3 2019-09-26 19:35:14 1 4 2019-09-26 19:35:14 2 1 2019-09-26 19:40:14 1 4 2019-09-26 19:40:14 2 1 2019-09-26 20:10:14 1 4 2019-09-26 20:10:14 2 2 2019-09-26 20:35:14 1 4 2019-09-26 20:35:14 2 2 2019-09-26 20:40:14 1 5 2019-09-26 20:40:14 2 2 2019-09-26 20:45:14 1 5 2019-09-26 20:45:14 2 2 2019-09-26 20:55:14 1 4 2019-09-26 20:55:14 2 2 2019-09-26 21:10:14 1 7 2019-09-26 21:10:14 2 2 2019-09-26 21:25:14 1 5 2019-09-26 21:25:14 2 2 2019-09-26 21:30:14 1 6 2019-09-26 21:30:14 2 2 2019-09-26 21:35:14 1 8 2019-09-26 21:35:14 2 1 2019-09-26 21:40:14 1 7 2019-09-26 21:40:14 2 1 2019-09-26 21:50:14 1 8 2019-09-26 21:50:14 2 2 2019-09-26 22:00:14 1 6 2019-09-26 22:00:14 2 2 2019-09-26 22:40:14 1 10 2019-09-26 22:40:14 2 3 2019-09-26 23:05:14 1 7 2019-09-26 23:05:14 2 1 2019-09-26 23:10:14 1 8 2019-09-26 23:20:14 1 7 2019-09-26 23:20:14 2 1 2019-09-26 23:35:14 1 8 2019-09-26 23:35:14 2 1 2019-09-26 23:50:14 1 7 2019-09-26 23:55:14 1 6 2019-09-27 00:05:14 1 7 2019-09-27 00:15:14 1 6 2019-09-27 00:25:14 1 6 2019-09-27 00:30:14 1 5 2019-09-27 00:30:14 2 1 2019-09-27 01:00:14 1 6 2019-09-27 01:20:14 1 5 2019-09-27 01:25:14 1 6 2019-09-27 01:40:14 1 5 2019-09-27 01:45:14 1 8 2019-09-27 16:54:57 1 1 2019-09-27 16:54:57 2 1 2019-09-27 16:59:57 2 2 2019-09-27 17:04:57 2 2 2019-09-25 23:50:14 1 8 2019-09-25 23:55:14 1 10 2019-09-26 00:05:14 1 9 2019-09-26 00:05:14 2 1 2019-09-26 00:10:14 1 9 2019-09-26 00:10:14 2 1 2019-09-26 00:15:14 1 8 2019-09-26 00:15:14 2 1 2019-09-26 00:20:14 1 9 2019-09-26 00:20:14 2 1 2019-09-26 00:25:14 1 9 2019-09-26 00:30:14 1 9 2019-09-26 00:55:14 1 6 2019-09-26 01:25:14 1 6 2019-09-26 01:30:14 1 6 2019-09-26 01:35:14 1 6 2019-09-26 01:40:14 1 6 2019-09-26 02:05:14 1 6 2019-09-26 02:10:14 1 6 2019-09-26 02:10:14 2 1 2019-09-26 02:15:14 1 6 2019-09-26 02:15:14 2 1 2019-09-26 02:25:14 1 6 2019-09-26 02:45:14 1 5 2019-09-26 02:50:14 1 5 2019-09-26 03:10:14 1 5 2019-09-26 03:15:14 1 5 2019-09-26 03:20:14 1 5 2019-09-26 03:25:14 1 5 2019-09-26 05:10:14 1 4 2019-09-26 05:15:14 1 4 2019-09-26 05:20:14 1 4 2019-09-26 05:25:14 1 3 2019-09-26 05:30:14 1 3 2019-09-26 05:45:14 1 5 2019-09-26 05:50:14 1 6 2019-09-26 06:10:14 1 4 2019-09-26 06:50:14 1 5 2019-09-26 07:00:14 1 6 2019-09-26 07:05:14 1 7 2019-09-26 07:10:14 1 7 2019-09-26 07:25:14 1 7 2019-09-26 07:30:14 1 7 2019-09-26 07:40:14 1 6 2019-09-26 08:20:14 1 9 2019-09-26 08:20:14 2 1 2019-09-26 08:35:14 1 10 2019-09-26 08:35:14 2 1 2019-09-26 09:15:14 1 6 2019-09-26 09:15:14 2 1 2019-09-26 09:20:14 1 7 2019-09-26 09:20:14 2 1 2019-09-26 09:35:14 1 6 2019-09-26 09:35:14 2 1 2019-09-26 10:40:14 1 9 2019-09-26 10:40:14 2 4 2019-09-26 10:45:14 1 11 2019-09-26 10:45:14 2 3 2019-09-26 10:55:14 1 10 2019-09-26 10:55:14 2 2 2019-09-26 11:05:14 1 11 2019-09-26 11:05:14 2 2 2019-09-26 11:10:14 1 11 2019-09-26 11:10:14 2 1 2019-09-26 11:30:14 1 11 2019-09-26 11:30:14 2 1 2019-09-26 11:45:14 1 9 2019-09-26 11:45:14 2 2 2019-09-26 12:10:14 1 9 2019-09-26 12:30:14 1 8 2019-09-26 12:30:14 2 1 2019-09-26 12:50:14 1 9 2019-09-26 12:50:14 2 1 2019-09-26 13:10:14 1 7 2019-09-26 13:10:14 2 1 2019-09-26 13:25:14 1 8 2019-09-26 13:25:14 2 2 2019-09-26 14:20:14 1 8 2019-09-26 14:20:14 2 2 2019-09-26 14:55:14 1 6 2019-09-26 14:55:14 2 2 2019-09-26 15:20:14 1 6 2019-09-26 15:20:14 2 4 2019-09-26 15:35:14 1 7 2019-09-26 15:35:14 2 3 2019-09-26 15:45:14 1 9 2019-09-26 15:45:14 2 3 2019-09-26 15:50:14 1 9 2019-09-26 15:50:14 2 3 2019-09-26 15:55:14 1 8 2019-09-26 15:55:14 2 3 2019-09-26 16:40:14 1 6 2019-09-26 16:40:14 2 5 2019-09-26 17:00:14 1 7 2019-09-26 17:00:14 2 4 2019-09-26 17:10:14 1 7 2019-09-26 17:10:14 2 4 2019-09-26 17:20:14 1 7 2019-09-26 17:20:14 2 3 2019-09-26 17:30:14 1 6 2019-09-26 17:30:14 2 2 2019-09-26 17:40:14 1 7 2019-09-26 17:40:14 2 1 2019-09-26 17:55:14 1 8 2019-09-26 17:55:14 2 1 2019-09-26 18:35:14 1 7 2019-09-26 18:35:14 2 4 2019-09-26 18:45:14 1 6 2019-09-26 18:45:14 2 4 2019-09-26 18:50:14 1 6 2019-09-26 18:50:14 2 4 2019-09-26 19:00:14 1 7 2019-09-26 19:00:14 2 4 2019-09-26 19:10:14 1 7 2019-09-26 19:10:14 2 3 2019-09-26 19:15:14 1 5 2019-09-26 19:15:14 2 3 2019-09-26 19:45:14 1 5 2019-09-26 19:45:14 2 2 2019-09-26 19:50:14 1 5 2019-09-26 19:50:14 2 2 2019-09-26 20:00:14 1 5 2019-09-26 20:00:14 2 2 2019-09-26 20:05:14 1 4 2019-09-26 20:05:14 2 2 2019-09-26 20:30:14 1 5 2019-09-26 20:30:14 2 4 2019-09-26 20:50:14 1 4 2019-09-26 20:50:14 2 2 2019-09-26 21:00:14 1 4 2019-09-26 21:00:14 2 2 2019-09-26 21:05:14 1 6 2019-09-26 21:05:14 2 1 2019-09-26 21:20:14 1 5 2019-09-26 21:20:14 2 2 2019-09-26 22:05:14 1 7 2019-09-26 22:05:14 2 3 2019-09-26 22:15:14 1 9 2019-09-26 22:15:14 2 4 2019-09-26 22:20:14 1 8 2019-09-26 22:20:14 2 4 2019-09-26 22:35:14 1 10 2019-09-26 22:35:14 2 3 2019-09-26 23:00:14 1 8 2019-09-26 23:15:14 1 7 2019-09-26 23:15:14 2 1 2019-09-26 23:25:14 1 7 2019-09-26 23:45:14 1 8 2019-09-26 23:45:14 2 1 2019-09-27 00:10:14 1 6 2019-09-27 01:30:14 1 5 2019-09-27 01:35:14 1 4 2019-09-27 17:09:57 2 2 2019-09-27 17:14:57 1 2 2019-09-27 17:14:57 2 2 2019-09-27 17:19:57 2 2 2019-09-27 17:24:57 2 2 2019-09-27 17:29:57 2 2 2019-09-27 17:34:57 2 2 2019-09-27 17:39:57 2 2 2019-09-27 17:44:57 1 1 2019-09-27 17:44:57 2 2 2019-09-27 17:49:57 1 1 2019-09-27 17:49:57 2 2 2019-09-27 17:54:57 1 2 2019-09-27 17:54:57 2 2 2019-09-27 17:59:57 1 1 2019-09-27 17:59:57 2 1 2019-09-27 18:04:57 1 2 2019-09-27 18:04:57 2 2 2019-09-27 18:09:57 1 2 2019-09-27 18:09:57 2 2 2019-09-27 18:14:57 1 2 2019-09-27 18:14:57 2 2 2019-09-27 18:19:57 1 1 2019-09-27 18:19:57 2 2 2019-09-27 18:24:57 1 1 2019-09-27 18:24:57 2 2 2019-09-27 18:29:57 1 2 2019-09-27 18:29:57 2 1 2019-09-27 18:34:57 1 4 2019-09-27 18:34:57 2 1 2019-09-27 18:39:57 1 2 2019-09-27 18:39:57 2 1 2019-09-27 18:44:57 1 1 2019-09-27 18:44:57 2 1 2019-09-27 18:49:57 1 3 2019-09-27 18:54:57 1 2 2019-09-27 20:09:57 1 1 2019-09-27 20:09:57 2 3 2019-09-27 20:14:57 1 2 2019-09-27 20:14:57 2 4 2019-09-27 20:24:57 1 2 2019-09-27 20:24:57 2 3 2019-09-27 20:29:57 1 3 2019-09-27 20:29:57 2 3 2019-09-27 20:34:57 1 3 2019-09-27 20:34:57 2 3 2019-09-27 20:49:57 1 5 2019-09-27 20:49:57 2 3 2019-09-27 20:59:57 1 6 2019-09-27 20:59:57 2 2 2019-09-27 21:19:57 1 4 2019-09-27 21:19:57 2 2 2019-09-27 21:34:57 1 5 2019-09-27 21:34:57 2 3 2019-09-27 22:19:57 1 5 2019-09-27 22:19:57 2 3 2019-09-27 22:24:57 1 3 2019-09-27 22:24:57 2 2 2019-09-27 23:09:57 1 3 2019-09-27 23:09:57 2 1 2019-09-27 23:14:57 1 5 2019-09-27 23:14:57 2 1 2019-09-27 23:39:57 1 5 2019-09-27 23:39:57 2 2 2019-09-27 23:54:57 1 5 2019-09-27 23:54:57 2 1 2019-09-28 00:04:57 1 5 2019-09-28 00:04:57 2 1 2019-09-28 00:24:57 1 5 2019-09-28 00:24:57 2 1 2019-09-28 00:44:57 1 2 2019-09-28 00:44:57 2 3 2019-09-28 00:49:57 1 4 2019-09-28 00:49:57 2 2 2019-09-28 00:54:57 1 4 2019-09-28 00:54:57 2 2 2019-09-28 01:09:57 1 3 2019-09-28 01:09:57 2 2 2019-09-28 01:19:57 1 2 2019-09-28 01:19:57 2 1 2019-09-28 03:04:57 1 1 2019-09-28 03:09:57 1 1 2019-09-28 03:14:57 1 1 2019-09-28 03:19:57 1 1 2019-09-28 03:24:57 1 1 2019-09-28 03:29:57 1 1 2019-09-28 03:34:57 1 1 2019-09-28 03:39:57 1 1 2019-09-28 03:44:57 1 1 2019-09-28 03:49:57 1 1 2019-09-28 03:54:57 1 1 2019-09-28 03:59:57 1 1 2019-09-28 04:04:57 1 1 2019-09-28 04:09:57 1 1 2019-09-28 04:14:57 1 1 2019-09-28 04:19:57 1 1 2019-09-28 04:24:57 1 1 2019-09-28 04:29:57 1 1 2019-09-28 04:34:57 1 1 2019-09-28 04:39:57 1 1 2019-09-28 04:44:57 1 1 2019-09-28 04:49:57 1 1 2019-09-28 05:04:57 1 1 2019-09-28 05:04:57 2 1 2019-09-28 05:09:57 2 1 2019-09-28 05:14:57 2 1 2019-09-28 06:19:57 1 2 2019-09-28 06:24:57 1 2 2019-09-28 06:44:57 1 1 2019-09-28 06:49:57 1 1 2019-09-28 06:54:57 1 1 2019-09-28 06:59:57 1 1 2019-09-28 07:04:57 1 1 2019-09-28 07:09:57 1 2 2019-09-28 07:24:57 1 3 2019-09-28 07:29:57 1 4 2019-09-28 07:59:57 1 6 2019-09-28 08:04:57 1 5 2019-09-28 08:09:57 1 5 2019-09-28 08:14:57 1 6 2019-09-28 08:19:57 1 6 2019-09-28 08:24:57 1 7 2019-09-28 08:34:57 1 6 2019-09-28 08:34:57 2 1 2019-09-28 09:04:57 1 7 2019-09-28 09:04:57 2 1 2019-09-28 09:19:57 1 8 2019-09-28 09:19:57 2 2 2019-09-28 09:39:57 1 8 2019-09-28 09:39:57 2 2 2019-09-28 09:49:57 1 6 2019-09-28 09:49:57 2 2 2019-09-28 09:54:57 1 7 2019-09-28 09:54:57 2 2 2019-09-28 10:04:57 1 6 2019-09-28 10:04:57 2 2 2019-09-28 10:14:57 1 6 2019-09-28 10:14:57 2 3 2019-09-28 10:39:57 1 7 2019-09-28 10:39:57 2 4 2019-09-28 10:44:57 1 8 2019-09-28 10:44:57 2 4 2019-09-28 10:54:57 1 9 2019-09-28 10:54:57 2 4 2019-09-28 11:09:57 1 7 2019-09-28 11:09:57 2 4 2019-09-28 11:34:57 1 8 2019-09-28 11:34:57 2 4 2019-09-28 11:49:57 1 8 2019-09-28 11:49:57 2 4 2019-09-28 11:59:57 1 8 2019-09-28 11:59:57 2 3 2019-09-28 12:09:57 1 7 2019-09-28 12:09:57 2 3 2019-09-28 12:14:57 1 6 2019-09-28 12:14:57 2 3 2019-09-28 12:49:57 1 10 2019-09-28 12:49:57 2 2 2019-09-28 12:54:57 1 11 2019-09-28 12:54:57 2 2 2019-09-28 12:59:57 1 8 2019-09-28 12:59:57 2 3 2019-09-28 13:34:57 1 10 2019-09-28 13:34:57 2 3 2019-09-28 13:49:57 1 12 2019-09-28 13:49:57 2 3 2019-09-28 13:54:57 1 9 2019-09-28 13:54:57 2 1 2019-09-28 14:09:57 1 8 2019-09-28 14:09:57 2 1 2019-09-28 14:14:57 1 8 2019-09-28 14:14:57 2 2 2019-09-28 14:44:57 1 9 2019-09-28 14:44:57 2 1 2019-09-28 15:04:57 1 9 2019-09-28 15:04:57 2 1 2019-09-28 15:39:57 1 8 2019-09-28 15:39:57 2 1 2019-09-28 15:44:57 1 8 2019-09-28 15:44:57 2 1 2019-09-28 15:49:57 1 6 2019-09-28 15:49:57 2 1 2019-09-28 16:34:57 1 4 2019-09-28 16:34:57 2 1 2019-09-28 16:39:57 1 5 2019-09-28 16:39:57 2 1 2019-09-28 16:59:57 1 6 2019-09-28 16:59:57 2 2 2019-09-28 17:04:57 1 6 2019-09-28 17:04:57 2 1 2019-09-28 17:09:57 1 7 2019-09-28 17:09:57 2 1 2019-09-28 17:49:57 1 8 2019-09-28 17:49:57 2 3 2019-09-28 18:14:57 1 9 2019-09-28 18:14:57 2 2 2019-09-28 18:24:57 1 7 2019-09-28 18:24:57 2 2 2019-09-28 18:44:57 1 8 2019-09-28 18:44:57 2 2 2019-09-28 19:09:57 1 7 2019-09-28 19:09:57 2 2 2019-09-28 19:14:57 1 7 2019-09-28 19:14:57 2 2 2019-09-28 19:19:57 1 6 2019-09-28 19:19:57 2 2 2019-09-28 19:39:57 1 7 2019-09-28 19:39:57 2 1 2019-09-28 19:49:57 1 6 2019-09-28 19:49:57 2 1 2019-09-28 20:14:57 1 8 2019-09-28 20:14:57 2 4 2019-09-28 20:49:57 1 9 2019-09-28 20:49:57 2 4 2019-09-28 20:59:57 1 10 2019-09-28 20:59:57 2 3 2019-09-28 21:14:57 1 8 2019-09-28 21:14:57 2 2 2019-09-27 18:59:57 1 1 2019-09-27 19:04:57 1 1 2019-09-27 19:09:57 1 1 2019-09-27 19:14:57 1 1 2019-09-27 19:34:57 1 1 2019-09-27 19:34:57 2 2 2019-09-27 19:39:57 2 2 2019-09-27 19:44:57 2 2 2019-09-27 19:54:57 1 1 2019-09-27 19:54:57 2 2 2019-09-27 20:19:57 1 2 2019-09-27 20:19:57 2 3 2019-09-27 20:39:57 1 5 2019-09-27 20:39:57 2 3 2019-09-27 20:54:57 1 5 2019-09-27 20:54:57 2 2 2019-09-27 21:04:57 1 5 2019-09-27 21:04:57 2 3 2019-09-27 21:09:57 1 4 2019-09-27 21:09:57 2 3 2019-09-27 21:14:57 1 5 2019-09-27 21:14:57 2 2 2019-09-27 21:29:57 1 5 2019-09-27 21:29:57 2 3 2019-09-27 21:39:57 1 6 2019-09-27 21:39:57 2 2 2019-09-27 21:44:57 1 5 2019-09-27 21:44:57 2 2 2019-09-27 22:14:57 1 7 2019-09-27 22:14:57 2 3 2019-09-27 22:29:57 1 5 2019-09-27 22:29:57 2 2 2019-09-27 22:39:57 1 6 2019-09-27 22:39:57 2 2 2019-09-27 22:59:57 1 5 2019-09-27 22:59:57 2 1 2019-09-27 23:24:57 1 4 2019-09-27 23:44:57 1 4 2019-09-27 23:44:57 2 1 2019-09-28 00:09:57 1 4 2019-09-28 00:09:57 2 1 2019-09-28 00:19:57 1 4 2019-09-28 00:19:57 2 1 2019-09-28 00:29:57 1 4 2019-09-28 00:29:57 2 2 2019-09-28 00:34:57 1 4 2019-09-28 00:34:57 2 2 2019-09-28 00:39:57 1 2 2019-09-28 00:39:57 2 3 2019-09-28 00:59:57 1 3 2019-09-28 00:59:57 2 2 2019-09-28 01:04:57 1 3 2019-09-28 01:04:57 2 2 2019-09-28 02:54:57 1 1 2019-09-28 02:59:57 1 1 2019-09-28 04:54:57 1 1 2019-09-28 04:59:58 1 1 2019-09-28 06:04:57 1 3 2019-09-28 06:09:57 1 3 2019-09-28 06:14:57 1 3 2019-09-28 06:29:57 1 3 2019-09-28 06:34:57 1 3 2019-09-28 06:39:57 1 2 2019-09-28 07:14:57 1 2 2019-09-28 07:19:57 1 2 2019-09-28 07:34:57 1 5 2019-09-28 07:44:57 1 6 2019-09-28 08:44:57 1 6 2019-09-28 08:44:57 2 1 2019-09-28 08:49:57 1 7 2019-09-28 08:49:57 2 1 2019-09-28 08:54:57 1 8 2019-09-28 08:54:57 2 1 2019-09-28 09:14:57 1 6 2019-09-28 09:14:57 2 2 2019-09-28 09:59:57 1 7 2019-09-28 09:59:57 2 2 2019-09-28 10:24:57 1 5 2019-09-28 10:24:57 2 4 2019-09-28 10:59:57 1 7 2019-09-28 10:59:57 2 4 2019-09-28 11:19:57 1 6 2019-09-28 11:19:57 2 4 2019-09-28 11:44:57 1 6 2019-09-28 11:44:57 2 4 2019-09-28 12:19:57 1 7 2019-09-28 12:19:57 2 3 2019-09-28 12:29:57 1 10 2019-09-28 12:29:57 2 2 2019-09-28 12:34:57 1 9 2019-09-28 12:34:57 2 2 2019-09-28 12:39:57 1 9 2019-09-28 12:39:57 2 2 2019-09-28 13:04:57 1 10 2019-09-28 13:04:57 2 4 2019-09-28 13:24:57 1 10 2019-09-28 13:24:57 2 3 2019-09-28 13:29:57 1 10 2019-09-28 13:29:57 2 3 2019-09-28 13:59:57 1 9 2019-09-28 13:59:57 2 1 2019-09-28 14:04:57 1 7 2019-09-28 14:04:57 2 1 2019-09-28 14:19:57 1 7 2019-09-28 14:19:57 2 1 2019-09-28 14:24:57 1 8 2019-09-28 14:24:57 2 1 2019-09-28 14:34:57 1 7 2019-09-28 14:34:57 2 1 2019-09-28 14:39:57 1 7 2019-09-28 14:39:57 2 1 2019-09-28 14:49:57 1 8 2019-09-28 14:49:57 2 1 2019-09-28 14:54:57 1 10 2019-09-28 14:54:57 2 1 2019-09-28 14:59:57 1 9 2019-09-28 14:59:57 2 1 2019-09-28 15:09:57 1 10 2019-09-28 15:09:57 2 1 2019-09-28 15:14:57 1 7 2019-09-28 15:14:57 2 1 2019-09-28 15:19:57 1 7 2019-09-28 15:19:57 2 1 2019-09-28 15:24:57 1 8 2019-09-28 15:24:57 2 1 2019-09-28 15:29:57 1 8 2019-09-28 15:29:57 2 1 2019-09-28 15:54:57 1 6 2019-09-28 15:59:57 1 8 2019-09-28 16:04:57 1 8 2019-09-28 16:09:57 1 8 2019-09-28 16:09:57 2 1 2019-09-28 16:14:57 1 6 2019-09-28 16:19:57 1 7 2019-09-28 16:24:57 1 6 2019-09-28 16:24:57 2 1 2019-09-28 16:29:57 1 6 2019-09-28 16:29:57 2 1 2019-09-28 16:44:57 1 4 2019-09-28 16:44:57 2 1 2019-09-28 16:49:57 1 4 2019-09-28 16:49:57 2 1 2019-09-28 16:54:57 1 5 2019-09-28 16:54:57 2 1 2019-09-28 17:19:57 1 6 2019-09-28 17:19:57 2 3 2019-09-28 17:44:57 1 8 2019-09-28 17:44:57 2 2 2019-09-28 17:54:57 1 9 2019-09-28 17:54:57 2 2 2019-09-28 18:09:57 1 9 2019-09-28 18:09:57 2 2 2019-09-28 18:29:57 1 8 2019-09-28 18:29:57 2 2 2019-09-28 18:39:57 1 7 2019-09-28 18:39:57 2 2 2019-09-28 18:49:57 1 8 2019-09-28 18:49:57 2 2 2019-09-28 18:59:57 1 8 2019-09-28 18:59:57 2 2 2019-09-28 19:04:57 1 7 2019-09-28 19:04:57 2 2 2019-09-28 19:24:57 1 8 2019-09-28 19:24:57 2 2 2019-09-28 19:54:57 1 8 2019-09-28 19:54:57 2 1 2019-09-28 19:59:57 1 10 2019-09-28 19:59:57 2 3 2019-09-28 20:09:57 1 10 2019-09-28 20:09:57 2 4 2019-09-28 20:44:57 1 7 2019-09-28 20:44:57 2 5 2019-09-28 21:04:57 1 7 2019-09-28 21:04:57 2 4 2019-09-28 21:24:57 1 9 2019-09-28 21:24:57 2 2 2019-09-28 21:29:57 1 7 2019-09-28 21:29:57 2 2 2019-09-28 21:39:57 1 9 2019-09-28 21:39:57 2 2 2019-09-28 21:54:57 1 7 2019-09-28 21:54:57 2 1 2019-09-28 21:59:57 1 6 2019-09-28 21:59:57 2 1 2019-09-28 22:04:57 1 5 2019-09-27 19:29:57 2 1 2019-09-27 19:49:57 1 1 2019-09-27 19:49:57 2 2 2019-09-27 19:59:57 1 1 2019-09-27 19:59:57 2 3 2019-09-27 20:04:57 1 1 2019-09-27 20:04:57 2 4 2019-09-27 20:44:57 1 4 2019-09-27 20:44:57 2 2 2019-09-27 21:24:57 1 4 2019-09-27 21:24:57 2 3 2019-09-27 21:49:57 1 5 2019-09-27 21:49:57 2 3 2019-09-27 21:54:57 1 6 2019-09-27 21:54:57 2 1 2019-09-27 21:59:57 1 7 2019-09-27 21:59:57 2 3 2019-09-27 22:04:57 1 7 2019-09-27 22:04:57 2 3 2019-09-27 22:09:57 1 6 2019-09-27 22:09:57 2 3 2019-09-27 22:34:57 1 6 2019-09-27 22:34:57 2 2 2019-09-27 22:44:57 1 5 2019-09-27 22:44:57 2 2 2019-09-27 22:49:57 1 6 2019-09-27 22:49:57 2 3 2019-09-27 22:54:57 1 6 2019-09-27 22:54:57 2 1 2019-09-27 23:04:57 1 4 2019-09-27 23:04:57 2 1 2019-09-27 23:19:57 1 5 2019-09-27 23:29:57 1 6 2019-09-27 23:34:57 1 5 2019-09-27 23:34:57 2 1 2019-09-27 23:49:57 1 3 2019-09-27 23:49:57 2 1 2019-09-27 23:59:57 1 5 2019-09-27 23:59:57 2 1 2019-09-28 00:14:57 1 4 2019-09-28 00:14:57 2 1 2019-09-28 01:14:57 1 3 2019-09-28 01:14:57 2 1 2019-09-28 01:24:57 1 1 2019-09-28 01:29:57 1 1 2019-09-28 01:34:57 1 1 2019-09-28 01:39:57 1 1 2019-09-28 02:49:57 1 1 2019-09-28 05:54:57 1 1 2019-09-28 05:59:57 1 1 2019-09-28 07:39:57 1 5 2019-09-28 07:49:57 1 6 2019-09-28 07:54:57 1 6 2019-09-28 08:29:57 1 6 2019-09-28 08:39:57 1 7 2019-09-28 08:39:57 2 1 2019-09-28 08:59:57 1 7 2019-09-28 08:59:57 2 1 2019-09-28 09:09:57 1 7 2019-09-28 09:09:57 2 2 2019-09-28 09:24:57 1 8 2019-09-28 09:24:57 2 1 2019-09-28 09:29:57 1 7 2019-09-28 09:29:57 2 1 2019-09-28 09:34:57 1 7 2019-09-28 09:34:57 2 1 2019-09-28 09:44:57 1 6 2019-09-28 09:44:57 2 2 2019-09-28 10:09:57 1 5 2019-09-28 10:09:57 2 3 2019-09-28 10:19:57 1 5 2019-09-28 10:19:57 2 3 2019-09-28 10:29:57 1 6 2019-09-28 10:29:57 2 3 2019-09-28 10:34:57 1 6 2019-09-28 10:34:57 2 4 2019-09-28 10:49:57 1 10 2019-09-28 10:49:57 2 4 2019-09-28 11:04:57 1 8 2019-09-28 11:04:57 2 3 2019-09-28 11:14:57 1 8 2019-09-28 11:14:57 2 4 2019-09-28 11:24:57 1 7 2019-09-28 11:24:57 2 4 2019-09-28 11:29:57 1 7 2019-09-28 11:29:57 2 4 2019-09-28 11:39:57 1 8 2019-09-28 11:39:57 2 4 2019-09-28 11:54:57 1 7 2019-09-28 11:54:57 2 3 2019-09-28 12:04:57 1 8 2019-09-28 12:04:57 2 3 2019-09-28 12:24:57 1 9 2019-09-28 12:24:57 2 3 2019-09-28 12:44:57 1 9 2019-09-28 12:44:57 2 2 2019-09-28 13:09:57 1 10 2019-09-28 13:09:57 2 3 2019-09-28 13:14:57 1 10 2019-09-28 13:14:57 2 3 2019-09-28 13:19:57 1 12 2019-09-28 13:19:57 2 3 2019-09-28 13:39:57 1 10 2019-09-28 13:39:57 2 3 2019-09-28 13:44:57 1 11 2019-09-28 13:44:57 2 3 2019-09-28 14:29:57 1 8 2019-09-28 14:29:57 2 1 2019-09-28 15:34:57 1 10 2019-09-28 15:34:57 2 1 2019-09-28 17:14:57 1 7 2019-09-28 17:14:57 2 3 2019-09-28 17:24:57 1 8 2019-09-28 17:24:57 2 2 2019-09-28 17:29:57 1 7 2019-09-28 17:29:57 2 2 2019-09-28 17:34:57 1 7 2019-09-28 17:34:57 2 3 2019-09-28 17:39:57 1 7 2019-09-28 17:39:57 2 3 2019-09-28 17:59:57 1 8 2019-09-28 17:59:57 2 2 2019-09-28 18:04:57 1 9 2019-09-28 18:04:57 2 2 2019-09-28 18:19:57 1 8 2019-09-28 18:19:57 2 2 2019-09-28 18:34:57 1 8 2019-09-28 18:34:57 2 2 2019-09-28 18:54:57 1 8 2019-09-28 18:54:57 2 1 2019-09-28 19:29:57 1 7 2019-09-28 19:29:57 2 2 2019-09-28 19:34:57 1 8 2019-09-28 19:34:57 2 1 2019-09-28 19:44:57 1 5 2019-09-28 19:44:57 2 1 2019-09-28 20:04:57 1 10 2019-09-28 20:04:57 2 2 2019-09-28 20:19:57 1 7 2019-09-28 20:19:57 2 4 2019-09-28 20:24:57 1 7 2019-09-28 20:24:57 2 3 2019-09-28 20:29:57 1 6 2019-09-28 20:29:57 2 3 2019-09-28 20:34:57 1 7 2019-09-28 20:34:57 2 3 2019-09-28 20:39:57 1 6 2019-09-28 20:39:57 2 3 2019-09-28 20:54:57 1 8 2019-09-28 20:54:57 2 3 2019-09-28 21:09:57 1 7 2019-09-28 21:09:57 2 3 2019-09-28 21:19:57 1 7 2019-09-28 21:19:57 2 1 2019-09-28 21:34:57 1 9 2019-09-28 21:34:57 2 2 2019-09-28 21:44:57 1 9 2019-09-28 21:44:57 2 1 2019-09-28 21:49:57 1 8 2019-09-28 21:49:57 2 2 2019-09-28 22:04:57 2 1 2019-09-28 22:09:57 1 6 2019-09-28 22:09:57 2 1 2019-09-28 22:14:57 1 7 2019-09-28 22:19:57 1 5 2019-09-28 22:24:57 1 5 2019-09-28 22:29:57 1 5 2019-09-28 22:29:57 2 1 2019-09-28 22:34:57 1 6 2019-09-28 22:39:57 1 6 2019-09-28 22:39:57 2 1 2019-09-28 22:44:57 1 6 2019-09-28 22:44:57 2 1 2019-09-28 22:49:57 1 6 2019-09-28 22:49:57 2 1 2019-09-28 22:54:57 1 9 2019-09-28 22:54:57 2 1 2019-09-28 22:59:57 1 8 2019-09-28 22:59:57 2 1 2019-09-28 23:04:57 1 7 2019-09-28 23:04:57 2 2 2019-09-28 23:09:57 1 9 2019-09-28 23:09:57 2 1 2019-09-28 23:14:57 1 7 2019-09-28 23:14:57 2 1 2019-09-28 23:19:57 1 6 2019-09-28 23:19:57 2 1 2019-09-28 23:24:57 1 6 2019-09-28 23:24:57 2 1 2019-09-28 23:34:57 1 6 2019-09-28 23:39:57 1 5 2019-09-28 23:39:57 2 1 2019-09-28 23:44:57 1 4 2019-09-28 23:44:57 2 1 2019-09-28 23:49:57 1 4 2019-09-28 23:49:57 2 1 2019-09-28 23:59:57 1 4 2019-09-29 00:09:57 1 4 2019-09-29 00:24:57 1 3 2019-09-29 00:29:57 1 3 2019-09-29 00:34:57 1 3 2019-09-29 00:39:57 1 3 2019-09-29 00:44:57 1 3 2019-09-29 00:54:57 1 4 2019-09-29 00:59:57 1 4 2019-09-29 01:09:57 1 5 2019-09-29 01:14:57 1 5 2019-09-29 01:14:57 2 1 2019-09-29 01:24:57 1 5 2019-09-29 01:34:57 1 4 2019-09-29 01:39:57 1 4 2019-09-29 01:44:57 1 3 2019-09-29 01:59:57 1 3 2019-09-29 02:04:57 1 3 2019-09-29 02:09:57 1 3 2019-09-29 02:14:57 1 3 2019-09-29 02:19:57 1 3 2019-09-29 03:24:57 1 3 2019-09-29 03:29:57 1 3 2019-09-29 03:34:57 1 3 2019-09-29 03:39:57 1 3 2019-09-29 03:44:57 1 3 2019-09-29 03:49:57 1 3 2019-09-29 04:04:57 1 3 2019-09-29 05:34:57 1 3 2019-09-29 06:34:57 1 2 2019-09-29 06:34:57 2 2 2019-09-29 06:39:57 1 3 2019-09-29 06:39:57 2 2 2019-09-29 06:54:57 1 1 2019-09-29 06:59:57 1 1 2019-09-29 07:04:57 1 1 2019-09-29 07:09:57 1 1 2019-09-29 07:14:58 1 1 2019-09-29 07:19:57 1 2 2019-09-29 07:34:57 1 3 2019-09-29 07:54:57 1 4 2019-09-29 07:59:57 1 4 2019-09-29 08:04:57 1 4 2019-09-29 08:14:57 1 4 2019-09-29 08:24:57 1 4 2019-09-29 08:24:57 2 1 2019-09-29 08:29:57 1 4 2019-09-29 08:29:57 2 1 2019-09-29 08:39:57 1 5 2019-09-29 08:39:57 2 1 2019-09-29 08:44:57 1 6 2019-09-29 08:44:57 2 1 2019-09-29 08:49:57 1 6 2019-09-29 08:49:57 2 1 2019-09-29 08:59:57 1 6 2019-09-29 08:59:57 2 1 2019-09-29 09:09:57 1 5 2019-09-29 09:09:57 2 1 2019-09-29 09:19:57 1 7 2019-09-29 09:19:57 2 1 2019-09-29 09:24:57 1 6 2019-09-29 09:24:57 2 1 2019-09-29 09:29:57 1 9 2019-09-29 09:34:57 1 8 2019-09-29 09:54:57 1 8 2019-09-29 10:14:57 1 6 2019-09-29 10:14:57 2 1 2019-09-29 10:39:57 1 7 2019-09-29 10:39:57 2 1 2019-09-29 10:59:57 1 4 2019-09-29 10:59:57 2 2 2019-09-29 11:04:57 1 6 2019-09-29 11:04:57 2 3 2019-09-29 11:14:57 1 4 2019-09-29 11:14:57 2 3 2019-09-29 11:34:57 1 8 2019-09-29 11:34:57 2 1 2019-09-29 11:39:57 1 8 2019-09-29 11:39:57 2 1 2019-09-29 11:54:57 1 8 2019-09-29 12:29:57 1 5 2019-09-29 12:29:57 2 1 2019-09-29 12:34:57 1 7 2019-09-29 12:34:57 2 3 2019-09-29 12:59:57 1 8 2019-09-29 12:59:57 2 2 2019-09-29 13:09:57 1 7 2019-09-29 13:09:57 2 3 2019-09-29 13:14:57 1 8 2019-09-29 13:14:57 2 3 2019-09-29 13:19:57 1 9 2019-09-29 13:19:57 2 4 2019-09-29 13:24:57 1 9 2019-09-29 13:24:57 2 4 2019-09-29 13:29:57 1 10 2019-09-29 13:29:57 2 4 2019-09-29 13:49:57 1 8 2019-09-29 13:49:57 2 3 2019-09-29 13:54:57 1 9 2019-09-29 13:54:57 2 3 2019-09-29 14:44:57 1 6 2019-09-29 14:44:57 2 4 2019-09-29 14:59:57 1 9 2019-09-29 14:59:57 2 4 2019-09-29 15:04:57 1 7 2019-09-29 15:04:57 2 4 2019-09-29 15:09:57 1 6 2019-09-29 15:09:57 2 4 2019-09-29 15:19:57 1 7 2019-09-29 15:19:57 2 6 2019-09-29 15:29:57 1 6 2019-09-29 15:29:57 2 5 2019-09-29 15:39:57 1 5 2019-09-29 15:39:57 2 4 2019-09-29 15:49:57 1 6 2019-09-29 15:59:57 1 7 2019-09-29 16:04:57 1 7 2019-09-29 16:04:57 2 1 2019-09-29 16:09:57 1 7 2019-09-29 16:34:57 1 4 2019-09-29 17:04:57 1 6 2019-09-29 17:04:57 2 1 2019-09-29 17:09:57 1 9 2019-09-29 17:09:57 2 1 2019-09-29 17:19:57 1 7 2019-09-29 17:19:57 2 3 2019-09-29 17:24:57 1 8 2019-09-29 17:24:57 2 3 2019-09-29 17:59:57 1 7 2019-09-29 17:59:57 2 4 2019-09-29 18:09:57 1 7 2019-09-29 18:09:57 2 2 2019-09-29 18:14:57 1 8 2019-09-29 18:14:57 2 1 2019-09-29 19:09:57 1 9 2019-09-29 19:09:57 2 2 2019-09-29 19:19:57 1 10 2019-09-29 19:19:57 2 1 2019-09-29 19:34:57 1 7 2019-09-29 19:34:57 2 3 2019-09-29 20:34:57 1 8 2019-09-29 20:34:57 2 2 2019-09-29 20:49:57 1 7 2019-09-29 20:49:57 2 1 2019-09-29 20:54:57 1 5 2019-09-29 20:54:57 2 1 2019-09-29 21:29:57 1 8 2019-09-29 21:39:57 1 10 2019-09-29 21:39:57 2 1 2019-09-29 21:54:57 1 7 2019-09-29 21:54:57 2 2 2019-09-29 22:04:57 1 8 2019-09-29 22:04:57 2 2 2019-09-29 22:14:57 1 8 2019-09-29 22:14:57 2 3 2019-09-29 22:19:57 1 6 2019-09-29 22:19:57 2 4 2019-09-29 22:24:57 1 7 2019-09-29 22:24:57 2 3 2019-09-29 22:34:57 1 9 2019-09-29 22:34:57 2 3 2019-09-29 22:39:57 1 8 2019-09-29 22:39:57 2 1 2019-09-29 22:44:57 1 8 2019-09-29 22:49:57 1 12 2019-09-29 22:59:57 1 12 2019-09-29 23:04:57 1 11 2019-09-29 23:09:57 1 11 2019-09-29 23:29:57 1 7 2019-09-29 23:29:57 2 1 2019-09-29 23:44:57 1 7 2019-09-29 23:44:57 2 1 2019-09-29 23:54:57 1 9 2019-09-30 00:04:57 1 8 2019-09-28 23:29:57 1 6 2019-09-28 23:29:57 2 1 2019-09-28 23:54:57 1 4 2019-09-28 23:54:57 2 1 2019-09-29 00:04:57 1 5 2019-09-29 00:19:57 1 4 2019-09-29 00:49:57 1 3 2019-09-29 01:04:57 1 4 2019-09-29 01:29:57 1 5 2019-09-29 01:49:57 1 3 2019-09-29 02:24:57 1 3 2019-09-29 02:29:57 1 3 2019-09-29 02:34:57 1 3 2019-09-29 02:39:58 1 3 2019-09-29 02:44:57 1 3 2019-09-29 02:49:57 1 3 2019-09-29 02:54:57 1 3 2019-09-29 02:59:57 1 4 2019-09-29 03:04:57 1 4 2019-09-29 03:09:57 1 4 2019-09-29 03:14:57 1 4 2019-09-29 03:19:57 1 4 2019-09-29 03:54:57 1 3 2019-09-29 03:59:57 1 3 2019-09-29 04:09:57 1 3 2019-09-29 04:14:57 1 3 2019-09-29 04:19:57 1 3 2019-09-29 04:24:57 1 3 2019-09-29 04:29:57 1 3 2019-09-29 04:34:57 1 3 2019-09-29 04:39:57 1 3 2019-09-29 04:44:57 1 3 2019-09-29 04:49:57 1 3 2019-09-29 04:54:57 1 3 2019-09-29 04:59:57 1 3 2019-09-29 05:04:57 1 3 2019-09-29 05:09:57 1 3 2019-09-29 05:14:57 1 3 2019-09-29 05:19:57 1 3 2019-09-29 05:24:57 1 3 2019-09-29 05:49:57 1 3 2019-09-29 05:59:57 1 2 2019-09-29 06:04:57 1 2 2019-09-29 06:09:57 1 2 2019-09-29 06:24:57 1 2 2019-09-29 06:44:57 1 2 2019-09-29 06:44:57 2 1 2019-09-29 06:49:57 1 1 2019-09-29 06:49:57 2 1 2019-09-29 07:24:57 1 2 2019-09-29 07:29:57 1 2 2019-09-29 07:44:57 1 5 2019-09-29 07:49:57 1 4 2019-09-29 08:09:57 1 4 2019-09-29 08:19:57 1 4 2019-09-29 09:14:57 1 7 2019-09-29 09:14:57 2 1 2019-09-29 09:39:57 1 7 2019-09-29 09:49:57 1 9 2019-09-29 09:59:57 1 8 2019-09-29 09:59:57 2 1 2019-09-29 10:04:57 1 7 2019-09-29 10:04:57 2 1 2019-09-29 10:19:57 1 8 2019-09-29 10:19:57 2 1 2019-09-29 10:24:57 1 7 2019-09-29 10:24:57 2 1 2019-09-29 10:54:57 1 6 2019-09-29 10:54:57 2 2 2019-09-29 11:09:57 1 6 2019-09-29 11:09:57 2 3 2019-09-29 11:29:57 1 6 2019-09-29 11:29:57 2 1 2019-09-29 11:59:57 1 8 2019-09-29 12:04:57 1 7 2019-09-29 12:09:57 1 7 2019-09-29 12:14:57 1 7 2019-09-29 12:19:57 1 9 2019-09-29 12:19:57 2 1 2019-09-29 12:39:57 1 5 2019-09-29 12:39:57 2 2 2019-09-29 12:44:57 1 6 2019-09-29 12:44:57 2 3 2019-09-29 12:49:57 1 9 2019-09-29 12:49:57 2 2 2019-09-29 12:54:57 1 9 2019-09-29 12:54:57 2 2 2019-09-29 13:04:57 1 8 2019-09-29 13:04:57 2 1 2019-09-29 13:44:57 1 8 2019-09-29 13:44:57 2 2 2019-09-29 14:19:57 1 9 2019-09-29 14:19:57 2 3 2019-09-29 14:24:57 1 8 2019-09-29 14:24:57 2 3 2019-09-29 14:34:57 1 7 2019-09-29 14:34:57 2 3 2019-09-29 14:54:57 1 9 2019-09-29 14:54:57 2 4 2019-09-29 15:14:57 1 8 2019-09-29 15:14:57 2 5 2019-09-29 15:24:57 1 8 2019-09-29 15:24:57 2 6 2019-09-29 15:44:57 1 6 2019-09-29 15:44:57 2 4 2019-09-29 15:54:57 1 6 2019-09-29 16:14:57 1 7 2019-09-29 16:24:57 1 5 2019-09-29 16:39:57 1 4 2019-09-29 16:44:57 1 5 2019-09-29 16:49:57 1 4 2019-09-29 16:59:57 1 5 2019-09-29 16:59:57 2 1 2019-09-29 17:29:57 1 6 2019-09-29 17:29:57 2 2 2019-09-29 17:34:57 1 4 2019-09-29 17:34:57 2 2 2019-09-29 17:49:57 1 6 2019-09-29 17:49:57 2 2 2019-09-29 17:54:57 1 5 2019-09-29 17:54:57 2 3 2019-09-29 18:04:57 1 8 2019-09-29 18:04:57 2 3 2019-09-29 18:29:57 1 6 2019-09-29 18:29:57 2 2 2019-09-29 18:39:57 1 10 2019-09-29 18:39:57 2 1 2019-09-29 18:54:57 1 8 2019-09-29 18:54:57 2 1 2019-09-29 18:59:57 1 8 2019-09-29 18:59:57 2 2 2019-09-29 19:04:57 1 9 2019-09-29 19:04:57 2 2 2019-09-29 19:29:57 1 8 2019-09-29 19:29:57 2 2 2019-09-29 19:39:57 1 7 2019-09-29 19:39:57 2 2 2019-09-29 19:44:57 1 6 2019-09-29 19:44:57 2 4 2019-09-29 19:49:57 1 7 2019-09-29 19:49:57 2 4 2019-09-29 20:04:57 1 6 2019-09-29 20:04:57 2 2 2019-09-29 20:19:57 1 7 2019-09-29 20:19:57 2 2 2019-09-29 20:24:57 1 8 2019-09-29 20:24:57 2 3 2019-09-29 20:39:57 1 7 2019-09-29 20:39:57 2 1 2019-09-29 20:59:57 1 7 2019-09-29 21:19:57 1 10 2019-09-29 21:44:57 1 10 2019-09-29 21:44:57 2 2 2019-09-29 21:49:57 1 6 2019-09-29 21:49:57 2 3 2019-09-29 22:09:57 1 7 2019-09-29 22:09:57 2 2 2019-09-29 22:29:57 1 7 2019-09-29 22:29:57 2 3 2019-09-29 23:14:57 1 10 2019-09-29 23:34:57 1 7 2019-09-29 23:34:57 2 1 2019-09-29 23:39:57 1 7 2019-09-29 23:39:57 2 2 2019-09-29 23:49:57 1 7 2019-09-30 00:09:57 1 9 2019-09-30 00:14:57 1 9 2019-09-30 00:19:57 1 7 2019-09-30 00:24:57 1 8 2019-09-30 00:29:57 1 8 2019-09-30 00:39:57 1 8 2019-09-30 00:44:57 1 7 2019-09-30 00:49:57 1 7 2019-09-30 00:54:57 1 7 2019-09-30 00:59:57 1 7 2019-09-30 01:04:57 1 6 2019-09-30 01:09:57 1 6 2019-09-30 01:14:57 1 5 2019-09-30 01:19:57 1 4 2019-09-30 01:44:57 1 3 2019-09-30 01:49:57 1 3 2019-09-30 01:54:57 1 3 2019-09-30 02:24:57 1 3 2019-09-30 02:29:57 1 2 2019-09-30 02:34:57 1 3 2019-09-29 00:14:57 1 3 2019-09-29 01:19:57 1 5 2019-09-29 01:19:57 2 1 2019-09-29 01:54:57 1 3 2019-09-29 05:29:57 1 3 2019-09-29 05:39:57 1 2 2019-09-29 05:44:57 1 2 2019-09-29 05:54:57 1 3 2019-09-29 06:14:57 1 2 2019-09-29 06:19:57 1 3 2019-09-29 06:29:57 1 3 2019-09-29 06:29:57 2 1 2019-09-29 07:39:57 1 5 2019-09-29 08:34:57 1 5 2019-09-29 08:34:57 2 1 2019-09-29 08:54:57 1 6 2019-09-29 08:54:57 2 1 2019-09-29 09:04:57 1 5 2019-09-29 09:04:57 2 1 2019-09-29 09:44:57 1 9 2019-09-29 10:09:57 1 6 2019-09-29 10:09:57 2 1 2019-09-29 10:29:57 1 7 2019-09-29 10:29:57 2 1 2019-09-29 10:34:57 1 7 2019-09-29 10:34:57 2 1 2019-09-29 10:44:57 1 5 2019-09-29 10:44:57 2 1 2019-09-29 10:49:57 1 5 2019-09-29 10:49:57 2 2 2019-09-29 11:19:57 1 5 2019-09-29 11:19:57 2 2 2019-09-29 11:24:57 1 5 2019-09-29 11:24:57 2 2 2019-09-29 11:44:57 1 7 2019-09-29 11:49:57 1 6 2019-09-29 12:24:57 1 6 2019-09-29 12:24:57 2 1 2019-09-29 13:34:57 1 9 2019-09-29 13:34:57 2 3 2019-09-29 13:39:57 1 8 2019-09-29 13:39:57 2 3 2019-09-29 13:59:57 1 9 2019-09-29 13:59:57 2 3 2019-09-29 14:04:57 1 9 2019-09-29 14:04:57 2 3 2019-09-29 14:09:58 1 9 2019-09-29 14:09:58 2 3 2019-09-29 14:14:57 1 9 2019-09-29 14:14:57 2 3 2019-09-29 14:29:57 1 9 2019-09-29 14:29:57 2 3 2019-09-29 14:39:57 1 6 2019-09-29 14:39:57 2 4 2019-09-29 14:49:57 1 8 2019-09-29 14:49:57 2 4 2019-09-29 15:34:57 1 6 2019-09-29 15:34:57 2 4 2019-09-29 16:19:57 1 6 2019-09-29 16:29:57 1 5 2019-09-29 16:54:57 1 4 2019-09-29 16:54:57 2 1 2019-09-29 17:14:57 1 8 2019-09-29 17:14:57 2 2 2019-09-29 17:39:57 1 4 2019-09-29 17:39:57 2 2 2019-09-29 17:44:57 1 5 2019-09-29 17:44:57 2 2 2019-09-29 18:19:57 1 6 2019-09-29 18:19:57 2 1 2019-09-29 18:24:57 1 5 2019-09-29 18:24:57 2 1 2019-09-29 18:34:57 1 7 2019-09-29 18:34:57 2 1 2019-09-29 18:44:57 1 6 2019-09-29 18:44:57 2 1 2019-09-29 18:49:57 1 7 2019-09-29 18:49:57 2 1 2019-09-29 19:14:57 1 9 2019-09-29 19:14:57 2 2 2019-09-29 19:24:57 1 8 2019-09-29 19:24:57 2 1 2019-09-29 19:54:57 1 5 2019-09-29 19:54:57 2 3 2019-09-29 19:59:57 1 6 2019-09-29 19:59:57 2 2 2019-09-29 20:09:57 1 6 2019-09-29 20:09:57 2 2 2019-09-29 20:14:57 1 7 2019-09-29 20:14:57 2 2 2019-09-29 20:29:57 1 7 2019-09-29 20:29:57 2 3 2019-09-29 20:44:57 1 7 2019-09-29 20:44:57 2 1 2019-09-29 21:04:57 1 7 2019-09-29 21:04:57 2 1 2019-09-29 21:09:57 1 7 2019-09-29 21:09:57 2 1 2019-09-29 21:14:57 1 9 2019-09-29 21:14:57 2 1 2019-09-29 21:24:57 1 9 2019-09-29 21:34:57 1 9 2019-09-29 21:34:57 2 1 2019-09-29 21:59:57 1 8 2019-09-29 21:59:57 2 2 2019-09-29 22:54:57 1 14 2019-09-29 23:19:57 1 7 2019-09-29 23:19:57 2 1 2019-09-29 23:24:57 1 8 2019-09-29 23:59:58 1 9 2019-09-30 00:34:57 1 8 2019-09-30 01:24:57 1 4 2019-09-30 01:29:57 1 4 2019-09-30 01:34:57 1 5 2019-09-30 01:39:57 1 4 2019-09-30 01:59:57 1 3 2019-09-30 02:04:57 1 4 2019-09-30 02:09:57 1 3 2019-09-30 02:14:57 1 3 2019-09-30 02:19:57 1 3 2019-09-30 02:39:57 1 3 2019-09-30 02:44:57 1 2 2019-09-30 02:49:57 1 3 2019-09-30 02:54:57 1 3 2019-09-30 02:59:57 1 3 2019-09-30 03:04:57 1 3 2019-09-30 03:09:57 1 3 2019-09-30 03:14:57 1 3 2019-09-30 03:19:57 1 3 2019-09-30 03:24:57 1 3 2019-09-30 03:29:57 1 3 2019-09-30 03:34:57 1 3 2019-09-30 03:39:57 1 3 2019-09-30 03:44:57 1 3 2019-09-30 03:49:57 1 3 2019-09-30 03:54:57 1 3 2019-09-30 03:59:57 1 2 2019-09-30 04:04:57 1 2 2019-09-30 04:09:57 1 2 2019-09-30 04:14:57 1 3 2019-09-30 04:19:57 1 3 2019-09-30 04:24:57 1 3 2019-09-30 04:29:57 1 3 2019-09-30 04:34:57 1 3 2019-09-30 04:39:57 1 2 2019-09-30 04:44:57 1 3 2019-09-30 04:49:57 1 3 2019-09-30 04:54:57 1 3 2019-09-30 04:54:57 2 1 2019-09-30 04:59:57 1 3 2019-09-30 04:59:57 2 1 2019-09-30 05:04:57 1 3 2019-09-30 05:09:57 1 3 2019-09-30 05:14:57 1 3 2019-09-30 05:19:57 1 3 2019-09-30 05:24:57 1 1 2019-09-30 05:29:57 1 3 2019-09-30 05:34:57 1 4 2019-09-30 05:39:57 1 3 2019-09-30 05:44:57 1 2 2019-09-30 05:49:57 1 2 2019-09-30 05:54:57 1 2 2019-09-30 05:59:57 1 2 2019-09-30 06:04:57 1 2 2019-09-30 06:09:57 1 2 2019-09-30 06:14:57 1 2 2019-09-30 06:19:57 1 2 2019-09-30 06:24:57 1 2 2019-09-30 06:29:57 1 3 2019-09-30 06:34:57 1 2 2019-09-30 06:39:57 1 2 2019-09-30 06:44:57 1 2 2019-09-30 06:49:57 1 2 2019-09-30 06:54:57 1 3 2019-09-30 06:59:57 1 2 2019-09-30 07:04:57 1 4 2019-09-30 07:09:57 1 2 2019-09-30 07:14:57 1 3 2019-09-30 07:19:57 1 4 2019-09-30 07:24:57 1 4 2019-09-30 07:29:57 1 4 2019-09-30 07:34:57 1 3 2019-09-30 07:39:57 1 4 2019-09-30 07:44:57 1 4 2019-09-30 07:49:57 1 3 2019-09-30 07:54:57 1 3 2019-09-30 07:59:57 1 3 2019-09-30 07:59:57 2 1 2019-09-30 08:14:57 1 5 2019-09-30 08:14:57 2 2 2019-09-30 08:29:57 1 6 2019-09-30 08:29:57 2 2 2019-09-30 08:44:57 1 7 2019-09-30 08:44:57 2 2 2019-09-30 08:49:57 1 8 2019-09-30 08:49:57 2 2 2019-09-30 08:54:57 1 6 2019-09-30 08:54:57 2 2 2019-09-30 08:59:57 1 5 2019-09-30 08:59:57 2 2 2019-09-30 09:14:57 1 6 2019-09-30 09:14:57 2 1 2019-09-30 09:19:57 1 6 2019-09-30 09:19:57 2 1 2019-09-30 09:29:57 1 6 2019-09-30 09:29:57 2 1 2019-09-30 09:44:57 1 8 2019-09-30 09:44:57 2 1 2019-09-30 10:04:57 1 8 2019-09-30 10:04:57 2 2 2019-09-30 10:09:57 1 8 2019-09-30 10:09:57 2 2 2019-09-30 10:44:57 1 9 2019-09-30 10:44:57 2 1 2019-09-30 10:54:57 1 8 2019-09-30 10:54:57 2 2 2019-09-30 10:59:57 1 6 2019-09-30 10:59:57 2 1 2019-09-30 11:59:57 1 9 2019-09-30 11:59:57 2 3 2019-09-30 12:04:57 1 9 2019-09-30 12:04:57 2 3 2019-09-30 12:09:57 1 10 2019-09-30 12:09:57 2 2 2019-09-30 12:19:57 1 9 2019-09-30 12:19:57 2 2 2019-09-30 12:29:57 1 9 2019-09-30 12:29:57 2 2 2019-09-30 12:59:57 1 10 2019-09-30 12:59:57 2 2 2019-09-30 13:19:57 1 12 2019-09-30 13:24:57 1 9 2019-09-30 13:29:57 1 10 2019-09-30 13:49:57 1 10 2019-09-30 13:49:57 2 2 2019-09-30 13:54:57 1 9 2019-09-30 13:54:57 2 3 2019-09-30 14:19:57 1 9 2019-09-30 14:19:57 2 4 2019-09-30 14:24:57 1 7 2019-09-30 14:24:57 2 3 2019-09-30 14:29:57 1 7 2019-09-30 14:29:57 2 4 2019-09-30 14:54:57 1 9 2019-09-30 14:54:57 2 6 2019-09-30 15:14:57 1 8 2019-09-30 15:14:57 2 6 2019-09-30 15:49:57 1 8 2019-09-30 15:49:57 2 4 2019-09-30 16:49:57 1 9 2019-09-30 17:19:57 1 8 2019-09-30 17:29:57 1 9 2019-09-30 17:29:57 2 1 2019-09-30 17:39:57 1 9 2019-09-30 17:39:57 2 1 2019-09-30 18:34:57 1 9 2019-09-30 18:34:57 2 3 2019-09-30 18:39:57 1 9 2019-09-30 18:39:57 2 3 2019-09-30 18:54:57 1 11 2019-09-30 19:54:57 1 9 2019-09-30 19:54:57 2 5 2019-09-30 20:49:57 1 10 2019-09-30 20:49:57 2 4 2019-09-30 20:54:57 1 8 2019-09-30 20:54:57 2 4 2019-09-30 20:59:57 1 11 2019-09-30 20:59:57 2 3 2019-09-30 21:14:57 1 11 2019-09-30 21:14:57 2 2 2019-09-30 21:24:57 1 11 2019-09-30 21:24:57 2 2 2019-09-30 21:39:57 1 11 2019-09-30 21:39:57 2 2 2019-09-30 21:44:57 1 12 2019-09-30 21:44:57 2 2 2019-09-30 21:49:57 1 11 2019-09-30 21:49:57 2 3 2019-09-30 21:54:57 1 10 2019-09-30 21:54:57 2 3 2019-09-30 22:04:57 1 10 2019-09-30 22:04:57 2 2 2019-09-30 22:19:57 1 9 2019-09-30 22:19:57 2 2 2019-09-30 22:44:57 1 6 2019-09-30 22:44:57 2 1 2019-09-30 22:54:57 1 6 2019-09-30 22:54:57 2 1 2019-09-30 23:24:57 1 7 2019-09-30 23:24:57 2 2 2019-09-30 23:29:57 1 7 2019-09-30 23:29:57 2 2 2019-09-30 23:34:57 1 6 2019-09-30 23:34:57 2 2 2019-10-01 00:19:57 1 6 2019-10-01 00:19:57 2 2 2019-10-01 00:24:57 1 6 2019-10-01 00:24:57 2 2 2019-10-01 00:29:57 1 6 2019-10-01 00:29:57 2 2 2019-10-01 00:34:57 1 5 2019-10-01 00:34:57 2 3 2019-10-01 00:44:57 1 6 2019-10-01 00:44:57 2 3 2019-10-01 01:34:57 1 6 2019-10-01 01:34:57 2 4 2019-10-01 02:19:57 1 5 2019-10-01 02:19:57 2 1 2019-10-01 02:24:57 1 5 2019-10-01 02:24:57 2 1 2019-10-01 02:39:57 1 4 2019-10-01 02:39:57 2 1 2019-10-01 02:44:57 1 4 2019-10-01 02:44:57 2 1 2019-10-01 02:59:57 1 4 2019-10-01 02:59:57 2 1 2019-10-01 03:04:57 1 4 2019-10-01 03:04:57 2 1 2019-10-01 03:54:57 1 4 2019-10-01 03:54:57 2 1 2019-10-01 03:59:57 1 4 2019-10-01 03:59:57 2 1 2019-10-01 04:04:57 1 4 2019-10-01 04:04:57 2 1 2019-10-01 04:09:57 1 4 2019-10-01 04:09:57 2 1 2019-10-01 04:34:57 1 4 2019-10-01 04:34:57 2 1 2019-10-01 04:39:57 1 4 2019-10-01 04:39:57 2 1 2019-10-01 04:44:57 1 4 2019-10-01 04:44:57 2 1 2019-10-01 04:49:57 1 4 2019-10-01 04:49:57 2 1 2019-10-01 04:54:57 1 4 2019-10-01 04:54:57 2 1 2019-10-01 04:59:57 1 4 2019-10-01 04:59:57 2 1 2019-10-01 05:04:57 1 4 2019-10-01 05:04:57 2 1 2019-10-01 05:09:57 1 4 2019-10-01 05:09:57 2 1 2019-10-01 05:14:57 1 4 2019-10-01 05:14:57 2 1 2019-10-01 05:19:57 1 5 2019-10-01 05:19:57 2 1 2019-10-01 05:24:57 1 5 2019-10-01 05:24:57 2 1 2019-10-01 05:29:57 1 5 2019-10-01 05:29:57 2 1 2019-10-01 05:34:57 1 5 2019-10-01 05:34:57 2 1 2019-10-01 05:39:57 1 5 2019-10-01 05:39:57 2 1 2019-10-01 05:54:57 1 6 2019-10-01 05:54:57 2 1 2019-10-01 05:59:57 1 6 2019-10-01 05:59:57 2 1 2019-10-01 06:04:57 1 6 2019-10-01 06:04:57 2 1 2019-10-01 06:09:57 1 5 2019-10-01 06:09:57 2 1 2019-10-01 06:14:57 1 5 2019-10-01 06:14:57 2 1 2019-10-01 06:24:57 1 4 2019-10-01 06:24:57 2 1 2019-10-01 06:29:57 1 4 2019-10-01 06:29:57 2 1 2019-10-01 06:34:57 1 4 2019-10-01 06:34:57 2 1 2019-09-30 08:04:57 1 5 2019-09-30 08:04:57 2 1 2019-09-30 08:19:57 1 5 2019-09-30 08:19:57 2 3 2019-09-30 08:24:57 1 5 2019-09-30 08:24:57 2 2 2019-09-30 08:34:57 1 6 2019-09-30 08:34:57 2 2 2019-09-30 08:39:57 1 6 2019-09-30 08:39:57 2 2 2019-09-30 09:24:57 1 6 2019-09-30 09:24:57 2 1 2019-09-30 09:34:57 1 7 2019-09-30 09:34:57 2 1 2019-09-30 09:49:57 1 8 2019-09-30 09:49:57 2 1 2019-09-30 09:54:57 1 7 2019-09-30 09:54:57 2 1 2019-09-30 09:59:57 1 7 2019-09-30 09:59:57 2 2 2019-09-30 10:14:57 1 8 2019-09-30 10:14:57 2 2 2019-09-30 10:19:57 1 9 2019-09-30 10:19:57 2 2 2019-09-30 10:24:57 1 8 2019-09-30 10:24:57 2 2 2019-09-30 10:39:57 1 9 2019-09-30 10:39:57 2 1 2019-09-30 10:49:57 1 8 2019-09-30 10:49:57 2 1 2019-09-30 11:04:57 1 8 2019-09-30 11:04:57 2 1 2019-09-30 11:24:57 1 9 2019-09-30 11:24:57 2 1 2019-09-30 11:34:57 1 9 2019-09-30 11:34:57 2 1 2019-09-30 11:39:57 1 8 2019-09-30 11:39:57 2 1 2019-09-30 11:44:57 1 10 2019-09-30 11:44:57 2 1 2019-09-30 11:49:57 1 10 2019-09-30 11:49:57 2 1 2019-09-30 12:34:57 1 9 2019-09-30 12:34:57 2 2 2019-09-30 12:44:57 1 9 2019-09-30 12:44:57 2 2 2019-09-30 13:04:57 1 11 2019-09-30 13:04:57 2 2 2019-09-30 13:09:57 1 12 2019-09-30 13:09:57 2 1 2019-09-30 13:14:57 1 13 2019-09-30 13:59:57 1 11 2019-09-30 13:59:57 2 3 2019-09-30 14:14:57 1 9 2019-09-30 14:14:57 2 4 2019-09-30 14:34:57 1 7 2019-09-30 14:34:57 2 4 2019-09-30 15:04:59 1 7 2019-09-30 15:04:59 2 7 2019-09-30 15:09:57 1 8 2019-09-30 15:09:57 2 6 2019-09-30 15:19:57 1 8 2019-09-30 15:19:57 2 6 2019-09-30 15:29:57 1 8 2019-09-30 15:29:57 2 5 2019-09-30 15:54:57 1 8 2019-09-30 15:54:57 2 4 2019-09-30 15:59:57 1 10 2019-09-30 15:59:57 2 4 2019-09-30 16:04:57 1 9 2019-09-30 16:04:57 2 4 2019-09-30 16:19:57 1 10 2019-09-30 16:19:57 2 2 2019-09-30 16:24:57 1 7 2019-09-30 16:24:57 2 1 2019-09-30 16:39:57 1 8 2019-09-30 16:44:57 1 9 2019-09-30 17:04:57 1 9 2019-09-30 17:09:57 1 9 2019-09-30 17:34:57 1 7 2019-09-30 17:34:57 2 1 2019-09-30 17:44:57 1 7 2019-09-30 17:44:57 2 1 2019-09-30 17:49:57 1 8 2019-09-30 17:49:57 2 1 2019-09-30 17:59:57 1 7 2019-09-30 17:59:57 2 1 2019-09-30 18:04:57 1 8 2019-09-30 18:04:57 2 1 2019-09-30 18:09:57 1 8 2019-09-30 18:09:57 2 1 2019-09-30 18:14:57 1 6 2019-09-30 18:19:57 1 9 2019-09-30 18:19:57 2 1 2019-09-30 18:44:57 1 7 2019-09-30 18:44:57 2 3 2019-09-30 18:49:57 1 10 2019-09-30 18:49:57 2 2 2019-09-30 18:59:57 1 12 2019-09-30 19:04:57 1 10 2019-09-30 19:09:57 1 10 2019-09-30 19:14:57 1 8 2019-09-30 19:19:57 1 7 2019-09-30 19:19:57 2 1 2019-09-30 19:24:57 1 9 2019-09-30 19:24:57 2 1 2019-09-30 19:29:57 1 9 2019-09-30 19:29:57 2 2 2019-09-30 19:39:57 1 9 2019-09-30 19:39:57 2 2 2019-09-30 19:49:57 1 10 2019-09-30 19:49:57 2 4 2019-09-30 19:59:57 1 9 2019-09-30 19:59:57 2 5 2019-09-30 20:04:57 1 9 2019-09-30 20:04:57 2 4 2019-09-30 20:09:57 1 10 2019-09-30 20:09:57 2 3 2019-09-30 20:14:57 1 8 2019-09-30 20:14:57 2 2 2019-09-30 20:19:57 1 10 2019-09-30 20:19:57 2 2 2019-09-30 20:34:57 1 10 2019-09-30 20:34:57 2 3 2019-09-30 20:39:57 1 10 2019-09-30 20:39:57 2 4 2019-09-30 21:04:57 1 10 2019-09-30 21:04:57 2 3 2019-09-30 21:09:57 1 10 2019-09-30 21:09:57 2 2 2019-09-30 21:34:57 1 11 2019-09-30 21:34:57 2 2 2019-09-30 22:09:57 1 9 2019-09-30 22:09:57 2 2 2019-09-30 22:14:57 1 10 2019-09-30 22:14:57 2 2 2019-09-30 22:29:57 1 9 2019-09-30 22:29:57 2 2 2019-09-30 22:49:57 1 5 2019-09-30 22:49:57 2 1 2019-09-30 22:59:57 1 6 2019-09-30 22:59:57 2 1 2019-09-30 23:49:57 1 8 2019-09-30 23:49:57 2 3 2019-09-30 23:54:57 1 8 2019-09-30 23:54:57 2 3 2019-09-30 23:59:57 1 7 2019-09-30 23:59:57 2 2 2019-10-01 00:09:57 1 7 2019-10-01 00:09:57 2 2 2019-10-01 00:14:57 1 7 2019-10-01 00:14:57 2 2 2019-10-01 00:49:57 1 6 2019-10-01 00:49:57 2 3 2019-10-01 00:54:57 1 6 2019-10-01 00:54:57 2 3 2019-10-01 00:59:57 1 6 2019-10-01 00:59:57 2 3 2019-10-01 01:19:57 1 6 2019-10-01 01:19:57 2 2 2019-10-01 02:04:57 1 6 2019-10-01 02:04:57 2 1 2019-10-01 02:09:57 1 6 2019-10-01 02:09:57 2 1 2019-10-01 02:14:57 1 6 2019-10-01 02:14:57 2 1 2019-10-01 02:49:57 1 4 2019-10-01 02:49:57 2 1 2019-10-01 03:14:57 1 3 2019-10-01 03:14:57 2 1 2019-10-01 03:19:57 1 3 2019-10-01 03:19:57 2 1 2019-10-01 03:24:57 1 3 2019-10-01 03:24:57 2 1 2019-10-01 03:29:57 1 3 2019-10-01 03:29:57 2 1 2019-10-01 03:34:57 1 3 2019-10-01 03:34:57 2 1 2019-10-01 03:39:57 1 3 2019-10-01 03:39:57 2 1 2019-10-01 03:44:57 1 3 2019-10-01 03:44:57 2 1 2019-10-01 03:49:57 1 3 2019-10-01 03:49:57 2 1 2019-10-01 04:14:57 1 4 2019-09-30 08:09:57 1 5 2019-09-30 08:09:57 2 2 2019-09-30 09:04:57 1 4 2019-09-30 09:04:57 2 2 2019-09-30 09:09:57 1 6 2019-09-30 09:09:57 2 2 2019-09-30 09:39:57 1 8 2019-09-30 09:39:57 2 1 2019-09-30 10:29:57 1 9 2019-09-30 10:29:57 2 1 2019-09-30 10:34:57 1 7 2019-09-30 10:34:57 2 1 2019-09-30 11:09:57 1 9 2019-09-30 11:09:57 2 1 2019-09-30 11:14:57 1 10 2019-09-30 11:14:57 2 1 2019-09-30 11:19:57 1 9 2019-09-30 11:19:57 2 1 2019-09-30 11:29:57 1 9 2019-09-30 11:29:57 2 1 2019-09-30 11:54:57 1 9 2019-09-30 11:54:57 2 2 2019-09-30 12:14:57 1 11 2019-09-30 12:14:57 2 1 2019-09-30 12:24:57 1 9 2019-09-30 12:24:57 2 2 2019-09-30 12:39:57 1 10 2019-09-30 12:39:57 2 2 2019-09-30 12:49:57 1 9 2019-09-30 12:49:57 2 3 2019-09-30 12:54:57 1 9 2019-09-30 12:54:57 2 2 2019-09-30 13:34:57 1 10 2019-09-30 13:39:57 1 11 2019-09-30 13:44:57 1 11 2019-09-30 13:44:57 2 1 2019-09-30 14:04:57 1 10 2019-09-30 14:04:57 2 3 2019-09-30 14:09:57 1 10 2019-09-30 14:09:57 2 4 2019-09-30 14:39:57 1 7 2019-09-30 14:39:57 2 6 2019-09-30 14:44:57 1 10 2019-09-30 14:44:57 2 6 2019-09-30 14:49:57 1 9 2019-09-30 14:49:57 2 7 2019-09-30 14:59:57 1 8 2019-09-30 14:59:57 2 7 2019-09-30 15:24:57 1 9 2019-09-30 15:24:57 2 5 2019-09-30 15:34:57 1 8 2019-09-30 15:34:57 2 5 2019-09-30 15:39:57 1 8 2019-09-30 15:39:57 2 4 2019-09-30 15:44:57 1 8 2019-09-30 15:44:57 2 4 2019-09-30 16:09:57 1 7 2019-09-30 16:09:57 2 3 2019-09-30 16:14:57 1 7 2019-09-30 16:14:57 2 2 2019-09-30 16:29:57 1 9 2019-09-30 16:29:57 2 1 2019-09-30 16:34:57 1 9 2019-09-30 16:54:57 1 10 2019-09-30 16:59:57 1 9 2019-09-30 17:14:57 1 9 2019-09-30 17:24:57 1 9 2019-09-30 17:24:57 2 1 2019-09-30 17:54:57 1 7 2019-09-30 17:54:57 2 1 2019-09-30 18:24:57 1 9 2019-09-30 18:24:57 2 1 2019-09-30 18:29:57 1 9 2019-09-30 18:29:57 2 2 2019-09-30 19:34:57 1 9 2019-09-30 19:34:57 2 2 2019-09-30 19:44:57 1 8 2019-09-30 19:44:57 2 3 2019-09-30 20:24:57 1 10 2019-09-30 20:24:57 2 3 2019-09-30 20:29:57 1 9 2019-09-30 20:29:57 2 3 2019-09-30 20:44:57 1 10 2019-09-30 20:44:57 2 3 2019-09-30 21:19:57 1 11 2019-09-30 21:19:57 2 2 2019-09-30 21:29:57 1 12 2019-09-30 21:29:57 2 2 2019-09-30 21:59:57 1 11 2019-09-30 21:59:57 2 2 2019-09-30 22:24:57 1 11 2019-09-30 22:24:57 2 2 2019-09-30 22:34:57 1 9 2019-09-30 22:34:57 2 1 2019-09-30 22:39:57 1 8 2019-09-30 23:04:57 1 7 2019-09-30 23:04:57 2 1 2019-09-30 23:09:57 1 7 2019-09-30 23:09:57 2 1 2019-09-30 23:14:57 1 7 2019-09-30 23:14:57 2 1 2019-09-30 23:19:57 1 6 2019-09-30 23:19:57 2 3 2019-09-30 23:39:57 1 7 2019-09-30 23:39:57 2 2 2019-09-30 23:44:57 1 8 2019-09-30 23:44:57 2 3 2019-10-01 00:04:57 1 8 2019-10-01 00:04:57 2 2 2019-10-01 00:39:57 1 6 2019-10-01 00:39:57 2 3 2019-10-01 01:04:57 1 6 2019-10-01 01:04:57 2 3 2019-10-01 01:09:57 1 6 2019-10-01 01:09:57 2 3 2019-10-01 01:14:57 1 6 2019-10-01 01:14:57 2 3 2019-10-01 01:24:57 1 6 2019-10-01 01:24:57 2 4 2019-10-01 01:29:57 1 6 2019-10-01 01:29:57 2 4 2019-10-01 01:39:57 1 6 2019-10-01 01:39:57 2 3 2019-10-01 01:44:57 1 6 2019-10-01 01:44:57 2 3 2019-10-01 01:49:57 1 6 2019-10-01 01:49:57 2 3 2019-10-01 01:54:57 1 6 2019-10-01 01:54:57 2 3 2019-10-01 01:59:57 1 6 2019-10-01 01:59:57 2 2 2019-10-01 02:29:57 1 3 2019-10-01 02:29:57 2 1 2019-10-01 02:34:57 1 2 2019-10-01 02:34:57 2 1 2019-10-01 02:54:57 1 4 2019-10-01 02:54:57 2 1 2019-10-01 03:09:57 1 3 2019-10-01 03:09:57 2 1 2019-10-01 04:14:57 2 1 2019-10-01 04:19:57 1 4 2019-10-01 04:19:57 2 1 2019-10-01 04:24:57 1 4 2019-10-01 04:24:57 2 1 2019-10-01 04:29:57 1 4 2019-10-01 04:29:57 2 1 2019-10-01 05:44:57 1 6 2019-10-01 05:44:57 2 1 2019-10-01 05:49:57 1 6 2019-10-01 05:49:57 2 1 2019-10-01 06:19:57 1 5 2019-10-01 06:19:57 2 1 2019-10-01 06:39:57 1 4 2019-10-01 06:39:57 2 1 2019-10-01 06:44:57 1 5 2019-10-01 06:44:57 2 1 2019-10-01 06:49:57 1 5 2019-10-01 06:49:57 2 1 2019-10-01 06:54:57 1 5 2019-10-01 06:54:57 2 1 2019-10-01 06:59:57 1 5 2019-10-01 06:59:57 2 1 2019-10-01 07:04:57 1 6 2019-10-01 07:04:57 2 1 2019-10-01 07:09:57 1 6 2019-10-01 07:09:57 2 1 2019-10-01 07:14:57 1 4 2019-10-01 07:14:57 2 1 2019-10-01 07:19:57 1 5 2019-10-01 07:19:57 2 1 2019-10-01 07:24:57 1 6 2019-10-01 07:24:57 2 1 2019-10-01 07:29:57 1 6 2019-10-01 07:29:57 2 1 2019-10-01 07:34:57 1 6 2019-10-01 07:34:57 2 1 2019-10-01 07:39:57 1 6 2019-10-01 07:39:57 2 1 2019-10-01 07:44:57 1 6 2019-10-01 07:44:57 2 1 2019-10-01 07:49:57 1 6 2019-10-01 07:49:57 2 1 2019-10-01 07:54:57 1 6 2019-10-01 07:54:57 2 1 2019-10-01 07:59:57 1 5 2019-10-01 07:59:57 2 1 2019-10-01 08:14:57 1 6 2019-10-01 08:14:57 2 1 2019-10-01 08:19:57 1 7 2019-10-01 08:19:57 2 1 2019-10-01 08:24:57 1 7 2019-10-01 08:24:57 2 1 2019-10-01 08:29:57 1 7 2019-10-01 08:29:57 2 1 2019-10-01 08:34:57 1 8 2019-10-01 08:34:57 2 1 2019-10-01 08:39:57 1 9 2019-10-01 08:39:57 2 1 2019-10-01 09:04:57 1 9 2019-10-01 09:29:57 1 10 2019-10-01 09:44:57 1 8 2019-10-01 09:44:57 2 1 2019-10-01 09:59:57 1 8 2019-10-01 09:59:57 2 1 2019-10-01 10:39:57 1 11 2019-10-01 10:39:57 2 1 2019-10-01 10:44:57 1 10 2019-10-01 10:44:57 2 2 2019-10-01 11:09:57 1 7 2019-10-01 11:09:57 2 3 2019-10-01 11:19:57 1 7 2019-10-01 11:19:57 2 1 2019-10-01 12:09:57 1 6 2019-10-01 12:09:57 2 3 2019-10-01 12:14:57 1 7 2019-10-01 12:14:57 2 2 2019-10-01 12:29:57 1 7 2019-10-01 12:29:57 2 2 2019-10-01 12:44:57 1 7 2019-10-01 12:44:57 2 2 2019-10-01 12:49:57 1 8 2019-10-01 12:49:57 2 2 2019-10-01 13:04:57 1 8 2019-10-01 13:04:57 2 2 2019-10-01 13:09:57 1 9 2019-10-01 13:09:57 2 1 2019-10-01 13:24:57 1 10 2019-10-01 13:49:57 1 11 2019-10-01 13:49:57 2 1 2019-10-01 13:54:57 1 9 2019-10-01 14:04:57 1 9 2019-10-01 14:34:57 1 5 2019-10-01 14:34:57 2 2 2019-10-01 14:49:57 1 8 2019-10-01 14:49:57 2 3 2019-10-01 14:59:57 1 5 2019-10-01 14:59:57 2 3 2019-10-01 15:04:57 1 8 2019-10-01 15:04:57 2 3 2019-10-01 15:09:57 1 8 2019-10-01 15:09:57 2 2 2019-10-01 15:14:57 1 8 2019-10-01 15:14:57 2 2 2019-10-01 15:24:57 1 9 2019-10-01 15:24:57 2 2 2019-10-01 15:29:57 1 9 2019-10-01 15:29:57 2 2 2019-10-01 15:44:57 1 12 2019-10-01 15:44:57 2 1 2019-10-01 16:04:57 1 10 2019-10-01 16:24:57 1 13 2019-10-01 16:24:57 2 1 2019-10-01 16:29:57 1 10 2019-10-01 16:59:57 1 11 2019-10-01 16:59:57 2 1 2019-10-01 17:04:57 1 12 2019-10-01 17:04:57 2 1 2019-10-01 17:14:57 1 12 2019-10-01 17:14:57 2 2 2019-10-01 17:24:57 1 12 2019-10-01 17:24:57 2 2 2019-10-01 17:44:57 1 9 2019-10-01 17:44:57 2 3 2019-10-01 18:04:57 1 11 2019-10-01 18:04:57 2 2 2019-10-01 18:24:57 1 12 2019-10-01 18:24:57 2 2 2019-10-01 18:34:57 1 14 2019-10-01 18:34:57 2 2 2019-10-01 19:04:57 1 13 2019-10-01 19:04:57 2 3 2019-10-01 19:29:57 1 10 2019-10-01 19:29:57 2 2 2019-10-01 19:59:57 1 10 2019-10-01 19:59:57 2 4 2019-10-01 20:19:57 1 14 2019-10-01 20:19:57 2 2 2019-10-01 20:29:57 1 12 2019-10-01 20:29:57 2 2 2019-10-01 20:39:57 1 13 2019-10-01 20:39:57 2 1 2019-10-01 21:34:57 1 9 2019-10-01 21:34:57 2 2 2019-10-01 21:39:57 1 9 2019-10-01 21:39:57 2 1 2019-10-01 21:59:57 1 8 2019-10-01 21:59:57 2 1 2019-10-01 22:04:57 1 9 2019-10-01 22:04:57 2 2 2019-10-01 22:34:57 1 7 2019-10-01 22:34:57 2 2 2019-10-01 22:49:57 1 9 2019-10-01 22:49:57 2 1 2019-10-01 22:59:57 1 9 2019-10-01 22:59:57 2 1 2019-10-01 23:09:57 1 8 2019-10-01 23:09:57 2 2 2019-10-01 23:14:57 1 8 2019-10-01 23:14:57 2 2 2019-10-01 23:39:57 1 11 2019-10-01 23:39:57 2 2 2019-10-01 23:44:57 1 10 2019-10-01 23:44:57 2 2 2019-10-01 23:54:57 1 10 2019-10-01 23:54:57 2 2 2019-10-02 00:04:57 1 10 2019-10-02 00:04:57 2 2 2019-10-02 00:14:57 1 8 2019-10-02 00:14:57 2 3 2019-10-02 00:29:57 1 6 2019-10-02 00:29:57 2 3 2019-10-02 00:34:57 1 7 2019-10-02 00:34:57 2 3 2019-10-02 00:49:57 1 5 2019-10-02 00:49:57 2 1 2019-10-02 00:54:57 1 5 2019-10-02 00:54:57 2 4 2019-10-02 01:34:57 1 7 2019-10-02 01:34:57 2 1 2019-10-02 01:39:57 1 7 2019-10-02 01:44:57 1 7 2019-10-02 01:54:57 1 6 2019-10-02 02:09:57 1 5 2019-10-02 02:14:57 1 5 2019-10-02 02:29:57 1 6 2019-10-02 02:34:57 1 6 2019-10-02 02:54:57 1 5 2019-10-02 03:09:57 1 4 2019-10-02 03:14:57 1 4 2019-10-02 03:19:57 1 4 2019-10-02 03:49:57 1 4 2019-10-02 03:49:57 2 1 2019-10-02 03:54:57 1 4 2019-10-02 03:54:57 2 1 2019-10-02 04:04:57 1 4 2019-10-02 04:04:57 2 1 2019-10-02 04:09:57 1 4 2019-10-02 04:09:57 2 1 2019-10-02 04:14:57 1 4 2019-10-02 04:14:57 2 1 2019-10-02 04:19:57 1 4 2019-10-02 04:19:57 2 1 2019-10-02 04:24:57 1 4 2019-10-02 04:24:57 2 1 2019-10-02 04:29:57 1 4 2019-10-02 04:29:57 2 1 2019-10-02 04:54:57 1 4 2019-10-02 05:39:57 1 5 2019-10-02 05:59:57 1 7 2019-10-02 05:59:57 2 1 2019-10-02 06:09:57 1 7 2019-10-02 06:09:57 2 2 2019-10-02 06:14:57 1 8 2019-10-02 06:14:57 2 1 2019-10-02 06:24:57 1 6 2019-10-02 07:49:57 1 6 2019-10-02 07:49:57 2 1 2019-10-02 07:59:57 1 6 2019-10-02 07:59:57 2 2 2019-10-02 08:09:57 1 7 2019-10-02 08:09:57 2 2 2019-10-02 08:19:57 1 7 2019-10-02 08:19:57 2 2 2019-10-02 08:54:57 1 7 2019-10-02 08:54:57 2 1 2019-10-02 09:14:57 1 9 2019-10-02 09:24:57 1 9 2019-10-02 09:29:57 1 7 2019-10-02 09:39:57 1 8 2019-10-02 10:09:57 1 9 2019-10-01 08:04:57 1 5 2019-10-01 08:04:57 2 1 2019-10-01 08:09:57 1 5 2019-10-01 08:09:57 2 1 2019-10-01 08:54:57 1 9 2019-10-01 09:14:57 1 10 2019-10-01 09:14:57 2 1 2019-10-01 09:54:57 1 8 2019-10-01 09:54:57 2 1 2019-10-01 10:04:57 1 10 2019-10-01 10:09:57 1 8 2019-10-01 10:09:57 2 1 2019-10-01 10:29:57 1 10 2019-10-01 10:49:57 1 10 2019-10-01 10:49:57 2 2 2019-10-01 10:54:57 1 13 2019-10-01 10:54:57 2 3 2019-10-01 11:04:57 1 12 2019-10-01 11:04:57 2 3 2019-10-01 11:14:57 1 6 2019-10-01 11:14:57 2 2 2019-10-01 11:24:58 1 7 2019-10-01 11:24:58 2 1 2019-10-01 11:29:57 1 6 2019-10-01 11:29:57 2 1 2019-10-01 11:34:57 1 7 2019-10-01 11:34:57 2 1 2019-10-01 11:44:57 1 6 2019-10-01 11:44:57 2 2 2019-10-01 11:54:57 1 7 2019-10-01 11:54:57 2 2 2019-10-01 11:59:57 1 7 2019-10-01 11:59:57 2 2 2019-10-01 12:24:57 1 6 2019-10-01 12:24:57 2 2 2019-10-01 12:34:57 1 7 2019-10-01 12:34:57 2 2 2019-10-01 12:39:57 1 6 2019-10-01 12:39:57 2 2 2019-10-01 13:14:57 1 7 2019-10-01 13:14:57 2 1 2019-10-01 13:19:57 1 7 2019-10-01 13:29:57 1 10 2019-10-01 13:34:57 1 10 2019-10-01 13:34:57 2 1 2019-10-01 13:59:57 1 7 2019-10-01 14:14:57 1 4 2019-10-01 14:24:57 1 5 2019-10-01 14:24:57 2 1 2019-10-01 14:39:57 1 7 2019-10-01 14:39:57 2 3 2019-10-01 15:34:57 1 12 2019-10-01 15:34:57 2 2 2019-10-01 15:39:57 1 12 2019-10-01 15:39:57 2 2 2019-10-01 15:59:57 1 11 2019-10-01 16:14:57 1 13 2019-10-01 16:19:57 1 13 2019-10-01 16:19:57 2 1 2019-10-01 16:39:57 1 10 2019-10-01 16:39:57 2 1 2019-10-01 16:44:57 1 10 2019-10-01 16:44:57 2 1 2019-10-01 17:29:57 1 11 2019-10-01 17:29:57 2 1 2019-10-01 17:39:57 1 11 2019-10-01 17:39:57 2 4 2019-10-01 17:49:57 1 10 2019-10-01 17:49:57 2 3 2019-10-01 17:59:57 1 10 2019-10-01 17:59:57 2 3 2019-10-01 18:19:57 1 13 2019-10-01 18:19:57 2 3 2019-10-01 18:44:57 1 12 2019-10-01 18:44:57 2 3 2019-10-01 18:54:57 1 11 2019-10-01 18:54:57 2 4 2019-10-01 19:09:57 1 13 2019-10-01 19:09:57 2 3 2019-10-01 19:19:57 1 12 2019-10-01 19:19:57 2 4 2019-10-01 19:24:57 1 11 2019-10-01 19:24:57 2 3 2019-10-01 19:39:57 1 12 2019-10-01 19:39:57 2 2 2019-10-01 19:54:57 1 11 2019-10-01 19:54:57 2 3 2019-10-01 20:04:57 1 13 2019-10-01 20:04:57 2 3 2019-10-01 20:09:57 1 12 2019-10-01 20:09:57 2 2 2019-10-01 20:14:57 1 14 2019-10-01 20:14:57 2 2 2019-10-01 20:24:57 1 15 2019-10-01 20:24:57 2 2 2019-10-01 20:34:57 1 13 2019-10-01 20:34:57 2 2 2019-10-01 20:44:57 1 13 2019-10-01 20:44:57 2 2 2019-10-01 20:54:57 1 11 2019-10-01 20:54:57 2 4 2019-10-01 20:59:57 1 10 2019-10-01 20:59:57 2 4 2019-10-01 21:14:57 1 10 2019-10-01 21:14:57 2 3 2019-10-01 21:19:57 1 12 2019-10-01 21:19:57 2 3 2019-10-01 21:24:57 1 11 2019-10-01 21:24:57 2 2 2019-10-01 21:49:57 1 10 2019-10-01 21:49:57 2 3 2019-10-01 21:54:57 1 9 2019-10-01 21:54:57 2 2 2019-10-01 22:09:57 1 10 2019-10-01 22:09:57 2 2 2019-10-01 22:14:57 1 9 2019-10-01 22:14:57 2 3 2019-10-01 22:44:57 1 8 2019-10-01 22:44:57 2 2 2019-10-01 23:04:57 1 9 2019-10-01 23:04:57 2 2 2019-10-01 23:24:57 1 10 2019-10-01 23:24:57 2 2 2019-10-01 23:49:57 1 11 2019-10-01 23:49:57 2 2 2019-10-01 23:59:57 1 10 2019-10-01 23:59:57 2 2 2019-10-02 00:09:57 1 8 2019-10-02 00:09:57 2 2 2019-10-02 00:19:57 1 7 2019-10-02 00:19:57 2 3 2019-10-02 00:39:57 1 7 2019-10-02 00:39:57 2 2 2019-10-02 00:59:57 1 5 2019-10-02 00:59:57 2 4 2019-10-02 01:04:57 1 5 2019-10-02 01:04:57 2 4 2019-10-02 01:09:57 1 5 2019-10-02 01:09:57 2 4 2019-10-02 01:14:57 1 6 2019-10-02 01:14:57 2 2 2019-10-02 01:24:57 1 6 2019-10-02 01:24:57 2 1 2019-10-02 01:29:57 1 7 2019-10-02 01:29:57 2 1 2019-10-02 01:49:57 1 6 2019-10-02 02:24:57 1 5 2019-10-02 02:24:57 2 1 2019-10-02 02:44:57 1 4 2019-10-02 02:49:57 1 4 2019-10-02 02:59:57 1 5 2019-10-02 03:04:57 1 5 2019-10-02 03:59:57 1 4 2019-10-02 03:59:57 2 1 2019-10-02 04:34:57 1 5 2019-10-02 04:34:57 2 1 2019-10-02 04:39:57 1 5 2019-10-02 04:39:57 2 1 2019-10-02 04:59:57 1 5 2019-10-02 05:04:57 1 5 2019-10-02 05:44:57 1 6 2019-10-02 05:49:57 1 6 2019-10-02 05:54:57 1 6 2019-10-02 05:54:57 2 1 2019-10-02 06:04:57 1 7 2019-10-02 06:04:57 2 1 2019-10-02 06:29:57 1 5 2019-10-02 06:39:57 1 6 2019-10-02 07:09:57 1 6 2019-10-02 07:14:57 1 5 2019-10-02 08:04:57 1 7 2019-10-02 08:04:57 2 2 2019-10-02 08:14:57 1 7 2019-10-02 08:14:57 2 2 2019-10-02 08:24:57 1 8 2019-10-02 08:24:57 2 2 2019-10-02 08:29:57 1 7 2019-10-02 08:29:57 2 1 2019-10-02 08:49:57 1 9 2019-10-02 08:49:57 2 1 2019-10-02 09:19:57 1 10 2019-10-02 09:54:57 1 9 2019-10-02 10:14:57 1 9 2019-10-02 10:19:57 1 8 2019-10-02 10:24:57 1 10 2019-10-01 08:44:57 1 9 2019-10-01 08:49:57 1 10 2019-10-01 08:59:57 1 9 2019-10-01 09:09:57 1 9 2019-10-01 09:09:57 2 1 2019-10-01 09:19:57 1 9 2019-10-01 09:24:57 1 10 2019-10-01 09:34:57 1 10 2019-10-01 09:39:57 1 7 2019-10-01 09:39:57 2 1 2019-10-01 09:49:57 1 9 2019-10-01 09:49:57 2 1 2019-10-01 10:14:57 1 8 2019-10-01 10:14:57 2 1 2019-10-01 10:19:57 1 10 2019-10-01 10:24:57 1 8 2019-10-01 10:34:57 1 10 2019-10-01 10:59:57 1 8 2019-10-01 10:59:57 2 3 2019-10-01 11:39:57 1 6 2019-10-01 11:39:57 2 2 2019-10-01 11:49:57 1 6 2019-10-01 11:49:57 2 2 2019-10-01 12:04:57 1 7 2019-10-01 12:04:57 2 3 2019-10-01 12:19:57 1 6 2019-10-01 12:19:57 2 2 2019-10-01 12:54:58 1 8 2019-10-01 12:54:58 2 2 2019-10-01 12:59:57 1 6 2019-10-01 12:59:57 2 2 2019-10-01 13:39:57 1 9 2019-10-01 13:39:57 2 1 2019-10-01 13:44:57 1 11 2019-10-01 13:44:57 2 1 2019-10-01 14:09:57 1 5 2019-10-01 14:19:57 1 4 2019-10-01 14:19:57 2 1 2019-10-01 14:29:57 1 6 2019-10-01 14:29:57 2 1 2019-10-01 14:44:57 1 7 2019-10-01 14:44:57 2 3 2019-10-01 14:54:57 1 5 2019-10-01 14:54:57 2 4 2019-10-01 15:19:57 1 9 2019-10-01 15:19:57 2 2 2019-10-01 15:49:57 1 11 2019-10-01 15:49:57 2 1 2019-10-01 15:54:57 1 11 2019-10-01 16:09:57 1 12 2019-10-01 16:34:57 1 11 2019-10-01 16:49:57 1 11 2019-10-01 16:54:57 1 11 2019-10-01 17:09:58 1 10 2019-10-01 17:09:58 2 2 2019-10-01 17:19:57 1 11 2019-10-01 17:19:57 2 3 2019-10-01 17:34:57 1 10 2019-10-01 17:34:57 2 3 2019-10-01 17:54:57 1 11 2019-10-01 17:54:57 2 3 2019-10-01 18:09:57 1 10 2019-10-01 18:09:57 2 2 2019-10-01 18:14:57 1 10 2019-10-01 18:14:57 2 3 2019-10-01 18:29:57 1 14 2019-10-01 18:29:57 2 2 2019-10-01 18:39:57 1 12 2019-10-01 18:39:57 2 3 2019-10-01 18:49:57 1 12 2019-10-01 18:49:57 2 3 2019-10-01 18:59:57 1 13 2019-10-01 18:59:57 2 3 2019-10-01 19:14:57 1 13 2019-10-01 19:14:57 2 4 2019-10-01 19:34:57 1 10 2019-10-01 19:34:57 2 2 2019-10-01 19:44:57 1 12 2019-10-01 19:44:57 2 3 2019-10-01 19:49:57 1 12 2019-10-01 19:49:57 2 2 2019-10-01 20:49:57 1 11 2019-10-01 20:49:57 2 3 2019-10-01 21:04:57 1 10 2019-10-01 21:04:57 2 4 2019-10-01 21:09:57 1 10 2019-10-01 21:09:57 2 3 2019-10-01 21:29:57 1 11 2019-10-01 21:29:57 2 2 2019-10-01 21:44:57 1 10 2019-10-01 21:44:57 2 2 2019-10-01 22:19:57 1 9 2019-10-01 22:19:57 2 4 2019-10-01 22:24:57 1 7 2019-10-01 22:24:57 2 2 2019-10-01 22:29:57 1 7 2019-10-01 22:29:57 2 2 2019-10-01 22:39:57 1 8 2019-10-01 22:39:57 2 1 2019-10-01 22:54:57 1 9 2019-10-01 22:54:57 2 1 2019-10-01 23:19:57 1 8 2019-10-01 23:19:57 2 2 2019-10-01 23:29:57 1 9 2019-10-01 23:29:57 2 3 2019-10-01 23:34:57 1 10 2019-10-01 23:34:57 2 2 2019-10-02 00:24:57 1 7 2019-10-02 00:24:57 2 3 2019-10-02 00:44:57 1 5 2019-10-02 00:44:57 2 1 2019-10-02 01:19:57 1 6 2019-10-02 01:19:57 2 1 2019-10-02 01:59:57 1 5 2019-10-02 02:04:57 1 5 2019-10-02 02:19:57 1 5 2019-10-02 02:19:57 2 1 2019-10-02 02:39:57 1 5 2019-10-02 03:24:57 1 4 2019-10-02 03:24:57 2 1 2019-10-02 03:29:57 1 4 2019-10-02 03:29:57 2 1 2019-10-02 03:34:57 1 4 2019-10-02 03:34:57 2 1 2019-10-02 03:39:57 1 4 2019-10-02 03:39:57 2 1 2019-10-02 03:44:57 1 4 2019-10-02 03:44:57 2 1 2019-10-02 04:44:57 1 4 2019-10-02 04:44:57 2 1 2019-10-02 04:49:57 1 4 2019-10-02 04:49:57 2 1 2019-10-02 05:09:57 1 4 2019-10-02 05:14:57 1 4 2019-10-02 05:19:57 1 4 2019-10-02 05:24:57 1 4 2019-10-02 05:29:57 1 4 2019-10-02 05:34:57 1 4 2019-10-02 06:19:57 1 7 2019-10-02 06:34:57 1 6 2019-10-02 06:44:57 1 5 2019-10-02 06:49:57 1 5 2019-10-02 06:54:57 1 5 2019-10-02 06:59:57 1 5 2019-10-02 07:04:57 1 6 2019-10-02 07:19:57 1 7 2019-10-02 07:24:57 1 7 2019-10-02 07:29:57 1 7 2019-10-02 07:34:57 1 8 2019-10-02 07:39:57 1 7 2019-10-02 07:44:57 1 6 2019-10-02 07:54:57 1 6 2019-10-02 07:54:57 2 1 2019-10-02 08:34:57 1 7 2019-10-02 08:34:57 2 1 2019-10-02 08:39:57 1 10 2019-10-02 08:39:57 2 1 2019-10-02 08:44:57 1 11 2019-10-02 08:44:57 2 1 2019-10-02 08:59:57 1 10 2019-10-02 08:59:57 2 1 2019-10-02 09:04:57 1 10 2019-10-02 09:04:57 2 1 2019-10-02 09:09:57 1 10 2019-10-02 09:34:57 1 8 2019-10-02 09:34:57 2 1 2019-10-02 09:44:57 1 8 2019-10-02 09:49:57 1 9 2019-10-02 09:59:57 1 9 2019-10-02 10:04:57 1 9 2019-10-02 10:29:57 1 9 2019-10-02 10:34:57 1 11 2019-10-02 10:39:57 1 9 2019-10-02 10:44:57 1 11 2019-10-02 10:49:57 1 9 2019-10-02 10:54:57 1 12 2019-10-02 10:59:57 1 13 2019-10-02 11:04:57 1 13 2019-10-02 11:09:57 1 13 2019-10-02 11:14:57 1 12 2019-10-02 11:19:57 1 11 2019-10-02 11:24:57 1 12 2019-10-02 11:24:57 2 2 2019-10-02 11:29:57 1 13 2019-10-02 11:29:57 2 2 2019-10-02 11:34:57 1 12 2019-10-02 11:34:57 2 2 2019-10-02 12:19:57 1 13 2019-10-02 12:24:57 1 12 2019-10-02 12:24:57 2 1 2019-10-02 12:29:57 1 13 2019-10-02 12:34:57 1 12 2019-10-02 12:39:57 1 10 2019-10-02 13:09:57 1 10 2019-10-02 13:09:57 2 1 2019-10-02 13:19:57 1 8 2019-10-02 13:24:57 1 9 2019-10-02 13:39:57 1 10 2019-10-02 13:39:57 2 1 2019-10-02 13:59:57 1 11 2019-10-02 13:59:57 2 1 2019-10-02 14:09:57 1 12 2019-10-02 14:09:57 2 1 2019-10-02 14:29:57 1 12 2019-10-02 14:29:57 2 2 2019-10-02 14:34:57 1 12 2019-10-02 14:34:57 2 1 2019-10-02 14:44:57 1 12 2019-10-02 14:44:57 2 2 2019-10-02 14:59:57 1 9 2019-10-02 14:59:57 2 1 2019-10-02 15:19:57 1 8 2019-10-02 15:19:57 2 1 2019-10-02 15:29:57 1 8 2019-10-02 15:29:57 2 1 2019-10-02 15:39:57 1 10 2019-10-02 15:44:57 1 10 2019-10-02 15:59:57 1 8 2019-10-02 15:59:57 2 1 2019-10-02 16:04:57 1 9 2019-10-02 16:04:57 2 1 2019-10-02 16:14:57 1 6 2019-10-02 16:39:57 1 5 2019-10-02 16:39:57 2 1 2019-10-02 16:44:57 1 8 2019-10-02 16:44:57 2 1 2019-10-02 17:34:57 1 9 2019-10-02 17:34:57 2 2 2019-10-02 17:49:57 1 10 2019-10-02 17:49:57 2 3 2019-10-02 18:04:57 1 9 2019-10-02 18:04:57 2 3 2019-10-02 18:09:57 1 8 2019-10-02 18:09:57 2 3 2019-10-02 18:14:57 1 11 2019-10-02 18:14:57 2 3 2019-10-02 18:29:57 1 9 2019-10-02 18:29:57 2 3 2019-10-02 18:39:57 1 8 2019-10-02 18:39:57 2 3 2019-10-02 18:44:57 1 8 2019-10-02 18:44:57 2 3 2019-10-02 19:14:57 1 10 2019-10-02 19:14:57 2 3 2019-10-02 19:19:57 1 8 2019-10-02 19:19:57 2 2 2019-10-02 19:34:57 1 9 2019-10-02 19:34:57 2 1 2019-10-02 19:54:57 1 10 2019-10-02 19:54:57 2 1 2019-10-02 20:04:57 1 8 2019-10-02 20:04:57 2 1 2019-10-02 21:04:57 1 10 2019-10-02 21:04:57 2 1 2019-10-02 21:14:57 1 11 2019-10-02 21:14:57 2 1 2019-10-02 21:19:57 1 10 2019-10-02 21:19:57 2 2 2019-10-02 21:24:57 1 11 2019-10-02 21:24:57 2 3 2019-10-02 21:44:57 1 10 2019-10-02 21:44:57 2 2 2019-10-02 22:24:57 1 12 2019-10-02 22:24:57 2 1 2019-10-02 22:29:57 1 13 2019-10-02 22:29:57 2 1 2019-10-02 23:09:57 1 11 2019-10-02 23:09:57 2 3 2019-10-02 23:14:57 1 11 2019-10-02 23:14:57 2 3 2019-10-02 23:34:57 1 8 2019-10-02 23:34:57 2 2 2019-10-02 23:49:57 1 7 2019-10-02 23:49:57 2 2 2019-10-03 00:14:57 1 8 2019-10-03 00:14:57 2 2 2019-10-03 00:44:57 1 6 2019-10-03 00:44:57 2 2 2019-10-03 01:14:57 1 5 2019-10-03 01:14:57 2 1 2019-10-03 01:19:57 1 5 2019-10-03 01:39:57 1 3 2019-10-03 02:04:57 1 3 2019-10-03 02:14:57 1 3 2019-10-03 02:29:57 1 3 2019-10-03 02:39:57 1 2 2019-10-03 02:49:57 1 2 2019-10-03 02:54:57 1 2 2019-10-03 02:54:57 2 1 2019-10-03 03:09:57 1 2 2019-10-03 03:09:57 2 1 2019-10-03 03:24:57 1 2 2019-10-03 03:24:57 2 1 2019-10-03 04:04:57 1 2 2019-10-03 04:04:57 2 1 2019-10-03 04:09:57 1 1 2019-10-03 04:09:57 2 1 2019-10-03 04:14:57 1 2 2019-10-03 04:24:57 1 2 2019-10-03 04:34:57 1 2 2019-10-03 04:49:57 1 2 2019-10-03 04:59:57 1 2 2019-10-03 05:19:57 1 2 2019-10-03 05:19:57 2 1 2019-10-03 05:59:57 1 2 2019-10-03 06:09:57 1 4 2019-10-03 06:29:57 1 2 2019-10-03 06:39:57 1 2 2019-10-03 06:49:57 1 3 2019-10-03 07:29:57 1 5 2019-10-03 07:29:57 2 1 2019-10-03 07:39:57 1 5 2019-10-03 07:39:57 2 1 2019-10-03 08:04:57 1 7 2019-10-03 08:49:57 1 6 2019-10-03 08:49:57 2 1 2019-10-03 09:04:57 1 7 2019-10-03 09:04:57 2 1 2019-10-03 09:09:57 1 6 2019-10-03 09:09:57 2 1 2019-10-03 09:29:57 1 8 2019-10-03 09:29:57 2 1 2019-10-03 09:39:57 1 8 2019-10-03 09:39:57 2 1 2019-10-03 09:54:57 1 4 2019-10-03 09:54:57 2 2 2019-10-03 10:04:57 1 5 2019-10-03 10:04:57 2 2 2019-10-03 10:34:57 1 6 2019-10-03 10:34:57 2 1 2019-10-03 10:39:57 1 7 2019-10-03 10:39:57 2 1 2019-10-03 10:44:57 1 10 2019-10-03 10:44:57 2 1 2019-10-03 11:34:57 1 9 2019-10-03 11:34:57 2 1 2019-10-03 11:54:57 1 8 2019-10-03 11:54:57 2 1 2019-10-03 12:04:57 1 11 2019-10-03 12:04:57 2 1 2019-10-03 12:19:57 1 8 2019-10-03 12:19:57 2 1 2019-10-03 12:24:57 1 7 2019-10-03 12:24:57 2 1 2019-10-03 12:29:57 1 7 2019-10-03 12:29:57 2 1 2019-10-03 12:39:57 1 10 2019-10-03 12:39:57 2 2 2019-10-03 12:59:57 1 9 2019-10-03 12:59:57 2 2 2019-10-03 13:04:57 1 10 2019-10-03 13:04:57 2 2 2019-10-03 13:14:57 1 9 2019-10-03 13:14:57 2 2 2019-10-03 13:19:57 1 11 2019-10-03 13:19:57 2 2 2019-10-03 13:24:57 1 9 2019-10-03 13:24:57 2 2 2019-10-03 13:29:57 1 10 2019-10-03 13:29:57 2 2 2019-10-03 13:34:57 1 10 2019-10-03 13:34:57 2 2 2019-10-03 13:39:57 1 8 2019-10-03 13:49:57 1 8 2019-10-03 13:59:57 1 7 2019-10-03 14:04:57 1 6 2019-10-03 14:19:57 1 9 2019-10-03 14:19:57 2 1 2019-10-03 14:24:57 1 9 2019-10-03 14:24:57 2 2 2019-10-02 11:39:57 1 13 2019-10-02 11:39:57 2 1 2019-10-02 11:59:57 1 13 2019-10-02 12:09:57 1 15 2019-10-02 12:14:57 1 14 2019-10-02 12:44:57 1 9 2019-10-02 12:49:57 1 11 2019-10-02 13:04:57 1 9 2019-10-02 13:04:57 2 1 2019-10-02 13:14:57 1 9 2019-10-02 13:14:57 2 1 2019-10-02 13:29:57 1 9 2019-10-02 13:29:57 2 1 2019-10-02 13:44:57 1 9 2019-10-02 13:44:57 2 1 2019-10-02 14:14:57 1 14 2019-10-02 14:14:57 2 2 2019-10-02 14:19:57 1 13 2019-10-02 14:19:57 2 2 2019-10-02 14:54:57 1 9 2019-10-02 14:54:57 2 2 2019-10-02 15:04:57 1 8 2019-10-02 15:04:57 2 1 2019-10-02 15:09:57 1 7 2019-10-02 15:09:57 2 1 2019-10-02 15:24:57 1 7 2019-10-02 15:24:57 2 1 2019-10-02 15:54:57 1 9 2019-10-02 15:54:57 2 1 2019-10-02 16:09:57 1 7 2019-10-02 16:09:57 2 1 2019-10-02 16:19:57 1 6 2019-10-02 16:29:57 1 5 2019-10-02 16:29:57 2 1 2019-10-02 16:59:57 1 9 2019-10-02 16:59:57 2 2 2019-10-02 17:29:57 1 9 2019-10-02 17:29:57 2 2 2019-10-02 17:54:57 1 8 2019-10-02 17:54:57 2 2 2019-10-02 18:19:57 1 9 2019-10-02 18:19:57 2 3 2019-10-02 18:49:57 1 9 2019-10-02 18:49:57 2 3 2019-10-02 18:59:57 1 8 2019-10-02 18:59:57 2 3 2019-10-02 19:09:58 1 7 2019-10-02 19:09:58 2 4 2019-10-02 19:24:57 1 8 2019-10-02 19:24:57 2 1 2019-10-02 19:39:57 1 9 2019-10-02 19:39:57 2 1 2019-10-02 19:49:57 1 10 2019-10-02 19:49:57 2 1 2019-10-02 20:09:57 1 7 2019-10-02 20:09:57 2 1 2019-10-02 20:24:57 1 6 2019-10-02 20:24:57 2 1 2019-10-02 20:29:57 1 6 2019-10-02 20:29:57 2 1 2019-10-02 20:34:57 1 7 2019-10-02 20:34:57 2 1 2019-10-02 20:54:57 1 8 2019-10-02 20:54:57 2 1 2019-10-02 21:09:57 1 12 2019-10-02 21:09:57 2 1 2019-10-02 21:34:57 1 12 2019-10-02 21:34:57 2 3 2019-10-02 21:39:57 1 9 2019-10-02 21:39:57 2 2 2019-10-02 21:49:57 1 11 2019-10-02 21:49:57 2 2 2019-10-02 21:54:57 1 9 2019-10-02 21:54:57 2 3 2019-10-02 21:59:57 1 13 2019-10-02 21:59:57 2 2 2019-10-02 22:04:57 1 12 2019-10-02 22:04:57 2 3 2019-10-02 22:09:57 1 13 2019-10-02 22:09:57 2 4 2019-10-02 22:14:57 1 10 2019-10-02 22:14:57 2 3 2019-10-02 22:19:57 1 11 2019-10-02 22:19:57 2 1 2019-10-02 22:39:57 1 12 2019-10-02 22:39:57 2 1 2019-10-02 22:44:57 1 13 2019-10-02 22:44:57 2 1 2019-10-02 22:54:57 1 11 2019-10-02 22:54:57 2 1 2019-10-02 23:04:57 1 9 2019-10-02 23:04:57 2 2 2019-10-02 23:24:57 1 11 2019-10-02 23:24:57 2 2 2019-10-02 23:39:57 1 9 2019-10-02 23:39:57 2 2 2019-10-03 00:04:57 1 9 2019-10-03 00:04:57 2 2 2019-10-03 00:34:57 1 6 2019-10-03 00:34:57 2 2 2019-10-03 00:49:57 1 5 2019-10-03 00:49:57 2 1 2019-10-03 00:54:57 1 6 2019-10-03 00:54:57 2 1 2019-10-03 00:59:57 1 5 2019-10-03 00:59:57 2 1 2019-10-03 01:09:57 1 5 2019-10-03 01:09:57 2 1 2019-10-03 01:29:57 1 3 2019-10-03 01:44:57 1 3 2019-10-03 01:54:57 1 3 2019-10-03 02:19:57 1 3 2019-10-03 02:34:57 1 3 2019-10-03 02:44:57 1 2 2019-10-03 02:59:57 1 2 2019-10-03 02:59:57 2 1 2019-10-03 03:14:57 1 2 2019-10-03 03:14:57 2 1 2019-10-03 03:29:57 1 2 2019-10-03 03:29:57 2 1 2019-10-03 03:34:57 1 3 2019-10-03 03:34:57 2 1 2019-10-03 03:39:57 1 2 2019-10-03 03:39:57 2 1 2019-10-03 03:49:57 1 2 2019-10-03 03:49:57 2 1 2019-10-03 03:59:57 1 2 2019-10-03 03:59:57 2 1 2019-10-03 04:19:57 1 2 2019-10-03 04:39:57 1 2 2019-10-03 05:04:57 1 2 2019-10-03 05:29:57 1 3 2019-10-03 05:29:57 2 2 2019-10-03 05:34:57 1 4 2019-10-03 05:34:57 2 2 2019-10-03 06:04:57 1 4 2019-10-03 06:19:57 1 3 2019-10-03 06:54:57 1 3 2019-10-03 07:24:57 1 5 2019-10-03 07:44:57 1 6 2019-10-03 08:14:57 1 7 2019-10-03 08:24:57 1 6 2019-10-03 08:29:57 1 6 2019-10-03 08:34:57 1 5 2019-10-03 08:44:57 1 5 2019-10-03 08:44:57 2 1 2019-10-03 09:19:57 1 9 2019-10-03 09:19:57 2 1 2019-10-03 09:24:57 1 7 2019-10-03 09:24:57 2 1 2019-10-03 09:49:57 1 8 2019-10-03 09:49:57 2 2 2019-10-03 10:24:57 1 6 2019-10-03 10:24:57 2 1 2019-10-03 10:49:57 1 6 2019-10-03 10:49:57 2 1 2019-10-03 10:54:57 1 7 2019-10-03 10:54:57 2 1 2019-10-03 10:59:57 1 6 2019-10-03 10:59:57 2 1 2019-10-03 11:04:57 1 7 2019-10-03 11:04:57 2 1 2019-10-03 11:09:57 1 8 2019-10-03 11:09:57 2 1 2019-10-03 11:24:57 1 9 2019-10-03 11:24:57 2 1 2019-10-03 11:44:57 1 10 2019-10-03 11:44:57 2 1 2019-10-03 11:49:57 1 10 2019-10-03 11:49:57 2 1 2019-10-03 11:59:57 1 8 2019-10-03 11:59:57 2 1 2019-10-03 12:09:57 1 10 2019-10-03 12:09:57 2 1 2019-10-03 12:34:57 1 10 2019-10-03 12:34:57 2 1 2019-10-03 12:44:57 1 8 2019-10-03 12:44:57 2 3 2019-10-03 13:09:57 1 12 2019-10-03 13:09:57 2 2 2019-10-03 13:44:57 1 8 2019-10-03 13:54:57 1 8 2019-10-03 14:09:57 1 7 2019-10-03 14:14:57 1 8 2019-10-03 14:14:57 2 1 2019-10-02 11:44:57 1 14 2019-10-02 11:49:57 1 12 2019-10-02 11:54:57 1 13 2019-10-02 12:04:57 1 14 2019-10-02 12:54:57 1 10 2019-10-02 12:54:57 2 1 2019-10-02 12:59:57 1 9 2019-10-02 12:59:57 2 1 2019-10-02 13:34:57 1 9 2019-10-02 13:34:57 2 1 2019-10-02 13:49:57 1 9 2019-10-02 13:49:57 2 1 2019-10-02 13:54:57 1 9 2019-10-02 13:54:57 2 1 2019-10-02 14:04:57 1 12 2019-10-02 14:04:57 2 1 2019-10-02 14:24:57 1 13 2019-10-02 14:24:57 2 1 2019-10-02 14:39:57 1 12 2019-10-02 14:39:57 2 1 2019-10-02 14:49:57 1 11 2019-10-02 15:14:57 1 9 2019-10-02 15:14:57 2 1 2019-10-02 15:34:57 1 9 2019-10-02 15:34:57 2 1 2019-10-02 15:49:57 1 9 2019-10-02 15:49:57 2 1 2019-10-02 16:24:57 1 6 2019-10-02 16:34:57 1 5 2019-10-02 16:34:57 2 1 2019-10-02 16:49:57 1 8 2019-10-02 16:49:57 2 2 2019-10-02 16:54:57 1 10 2019-10-02 16:54:57 2 2 2019-10-02 17:04:57 1 9 2019-10-02 17:04:57 2 2 2019-10-02 17:09:57 1 11 2019-10-02 17:09:57 2 2 2019-10-02 17:14:57 1 9 2019-10-02 17:14:57 2 2 2019-10-02 17:19:57 1 10 2019-10-02 17:19:57 2 2 2019-10-02 17:24:57 1 8 2019-10-02 17:24:57 2 2 2019-10-02 17:39:57 1 9 2019-10-02 17:39:57 2 2 2019-10-02 17:44:57 1 10 2019-10-02 17:44:57 2 2 2019-10-02 17:59:57 1 9 2019-10-02 17:59:57 2 3 2019-10-02 18:24:57 1 9 2019-10-02 18:24:57 2 3 2019-10-02 18:34:57 1 8 2019-10-02 18:34:57 2 3 2019-10-02 18:54:57 1 8 2019-10-02 18:54:57 2 3 2019-10-02 19:04:57 1 8 2019-10-02 19:04:57 2 4 2019-10-02 19:29:57 1 9 2019-10-02 19:29:57 2 1 2019-10-02 19:44:57 1 11 2019-10-02 19:44:57 2 1 2019-10-02 19:59:57 1 7 2019-10-02 19:59:57 2 1 2019-10-02 20:14:57 1 6 2019-10-02 20:14:57 2 1 2019-10-02 20:19:57 1 6 2019-10-02 20:19:57 2 1 2019-10-02 20:39:57 1 6 2019-10-02 20:39:57 2 1 2019-10-02 20:44:57 1 6 2019-10-02 20:44:57 2 2 2019-10-02 20:49:57 1 8 2019-10-02 20:49:57 2 1 2019-10-02 20:59:57 1 9 2019-10-02 20:59:57 2 1 2019-10-02 21:29:57 1 12 2019-10-02 21:29:57 2 3 2019-10-02 22:34:57 1 13 2019-10-02 22:34:57 2 2 2019-10-02 22:49:57 1 12 2019-10-02 22:49:57 2 1 2019-10-02 22:59:57 1 9 2019-10-02 22:59:57 2 2 2019-10-02 23:19:57 1 11 2019-10-02 23:19:57 2 2 2019-10-02 23:29:57 1 10 2019-10-02 23:29:57 2 2 2019-10-02 23:44:57 1 7 2019-10-02 23:44:57 2 2 2019-10-02 23:54:57 1 11 2019-10-02 23:54:57 2 2 2019-10-02 23:59:57 1 10 2019-10-02 23:59:57 2 2 2019-10-03 00:09:57 1 9 2019-10-03 00:09:57 2 2 2019-10-03 00:19:57 1 9 2019-10-03 00:19:57 2 2 2019-10-03 00:24:57 1 6 2019-10-03 00:24:57 2 2 2019-10-03 00:29:57 1 6 2019-10-03 00:29:57 2 2 2019-10-03 00:39:57 1 5 2019-10-03 00:39:57 2 2 2019-10-03 01:04:57 1 6 2019-10-03 01:04:57 2 1 2019-10-03 01:24:57 1 5 2019-10-03 01:34:57 1 3 2019-10-03 01:49:57 1 3 2019-10-03 01:59:57 1 3 2019-10-03 02:09:57 1 3 2019-10-03 02:24:57 1 3 2019-10-03 03:04:57 1 2 2019-10-03 03:04:57 2 1 2019-10-03 03:19:57 1 2 2019-10-03 03:19:57 2 1 2019-10-03 03:44:57 1 2 2019-10-03 03:44:57 2 1 2019-10-03 03:54:57 1 2 2019-10-03 03:54:57 2 1 2019-10-03 04:29:57 1 2 2019-10-03 04:44:57 1 2 2019-10-03 04:54:57 1 2 2019-10-03 05:09:57 1 2 2019-10-03 05:14:57 1 2 2019-10-03 05:14:57 2 1 2019-10-03 05:24:57 1 3 2019-10-03 05:24:57 2 2 2019-10-03 05:39:57 1 4 2019-10-03 05:39:57 2 1 2019-10-03 05:44:57 1 3 2019-10-03 05:44:57 2 1 2019-10-03 05:49:57 1 3 2019-10-03 05:54:57 1 2 2019-10-03 06:14:57 1 2 2019-10-03 06:24:57 1 2 2019-10-03 06:34:57 1 2 2019-10-03 06:44:57 1 3 2019-10-03 06:59:57 1 3 2019-10-03 07:04:57 1 4 2019-10-03 07:09:57 1 4 2019-10-03 07:14:57 1 5 2019-10-03 07:19:57 1 3 2019-10-03 07:34:57 1 5 2019-10-03 07:34:57 2 1 2019-10-03 07:49:57 1 6 2019-10-03 07:54:57 1 6 2019-10-03 07:59:57 1 6 2019-10-03 08:09:57 1 7 2019-10-03 08:19:57 1 7 2019-10-03 08:39:57 1 5 2019-10-03 08:54:57 1 7 2019-10-03 08:54:57 2 1 2019-10-03 08:59:57 1 8 2019-10-03 08:59:57 2 1 2019-10-03 09:14:57 1 8 2019-10-03 09:14:57 2 1 2019-10-03 09:34:57 1 9 2019-10-03 09:34:57 2 1 2019-10-03 09:44:57 1 6 2019-10-03 09:44:57 2 2 2019-10-03 09:59:57 1 6 2019-10-03 09:59:57 2 2 2019-10-03 10:09:57 1 5 2019-10-03 10:09:57 2 2 2019-10-03 10:14:57 1 5 2019-10-03 10:14:57 2 1 2019-10-03 10:19:57 1 5 2019-10-03 10:19:57 2 1 2019-10-03 10:29:57 1 6 2019-10-03 10:29:57 2 1 2019-10-03 11:14:57 1 7 2019-10-03 11:14:57 2 1 2019-10-03 11:19:57 1 7 2019-10-03 11:19:57 2 1 2019-10-03 11:29:57 1 11 2019-10-03 11:29:57 2 1 2019-10-03 11:39:57 1 9 2019-10-03 11:39:57 2 1 2019-10-03 12:14:57 1 7 2019-10-03 12:14:57 2 1 2019-10-03 12:49:57 1 7 2019-10-03 12:49:57 2 3 2019-10-03 12:54:57 1 10 2019-10-03 12:54:57 2 2 2019-10-03 14:29:57 1 9 2019-10-03 14:29:57 2 2 2019-10-03 15:09:57 1 8 2019-10-03 15:09:57 2 1 2019-10-03 15:14:57 1 9 2019-10-03 15:14:57 2 1 2019-10-03 16:14:57 1 7 2019-10-03 16:14:57 2 1 2019-10-03 16:19:57 1 7 2019-10-03 16:19:57 2 2 2019-10-03 16:39:57 1 8 2019-10-03 16:39:57 2 2 2019-10-03 16:44:57 1 10 2019-10-03 16:44:57 2 2 2019-10-03 16:49:57 1 9 2019-10-03 16:49:57 2 1 2019-10-03 16:54:57 1 9 2019-10-03 16:54:57 2 1 2019-10-03 17:24:57 1 9 2019-10-03 17:29:57 1 9 2019-10-03 17:29:57 2 1 2019-10-03 17:59:57 1 8 2019-10-03 17:59:57 2 1 2019-10-03 18:09:57 1 12 2019-10-03 18:09:57 2 1 2019-10-03 18:14:57 1 10 2019-10-03 18:14:57 2 2 2019-10-03 18:19:57 1 12 2019-10-03 18:19:57 2 1 2019-10-03 18:49:57 1 9 2019-10-03 18:49:57 2 2 2019-10-03 18:54:57 1 9 2019-10-03 18:54:57 2 2 2019-10-03 19:14:57 1 9 2019-10-03 19:14:57 2 2 2019-10-03 19:19:57 1 10 2019-10-03 19:19:57 2 2 2019-10-03 19:44:57 1 9 2019-10-03 19:44:57 2 4 2019-10-03 19:49:57 1 11 2019-10-03 19:49:57 2 3 2019-10-03 20:24:57 1 8 2019-10-03 20:24:57 2 2 2019-10-03 20:29:57 1 9 2019-10-03 20:29:57 2 2 2019-10-03 21:09:57 1 9 2019-10-03 21:09:57 2 5 2019-10-03 21:24:57 1 10 2019-10-03 21:24:57 2 4 2019-10-03 21:39:57 1 11 2019-10-03 21:39:57 2 2 2019-10-03 22:09:57 1 9 2019-10-03 22:09:57 2 2 2019-10-03 22:29:57 1 10 2019-10-03 22:29:57 2 3 2019-10-03 22:49:57 1 8 2019-10-03 22:49:57 2 3 2019-10-03 23:34:57 1 7 2019-10-03 23:34:57 2 1 2019-10-03 23:49:57 1 6 2019-10-03 23:49:57 2 1 2019-10-04 00:19:57 1 4 2019-10-04 00:24:57 1 5 2019-10-04 00:34:57 1 7 2019-10-04 00:34:57 2 1 2019-10-04 01:14:57 1 6 2019-10-04 01:34:57 1 7 2019-10-04 01:59:57 1 6 2019-10-04 02:09:57 1 6 2019-10-04 02:29:57 1 7 2019-10-04 02:34:57 1 6 2019-10-04 02:44:57 1 3 2019-10-04 02:59:57 1 4 2019-10-04 03:04:57 1 3 2019-10-04 03:14:57 1 3 2019-10-04 03:24:57 1 2 2019-10-04 03:29:57 1 2 2019-10-04 03:34:57 1 3 2019-10-04 03:39:57 1 2 2019-10-04 03:44:57 1 2 2019-10-04 03:49:57 1 3 2019-10-04 03:54:57 1 3 2019-10-04 03:59:57 1 3 2019-10-04 04:04:57 1 3 2019-10-04 04:09:57 1 3 2019-10-04 04:24:57 1 3 2019-10-04 04:29:57 1 3 2019-10-04 04:44:57 1 2 2019-10-04 04:54:57 1 5 2019-10-04 05:04:57 1 4 2019-10-04 05:24:57 1 4 2019-10-04 05:34:57 1 4 2019-10-04 05:54:57 1 4 2019-10-04 06:04:57 1 3 2019-10-04 06:14:57 1 3 2019-10-04 06:19:57 1 4 2019-10-04 06:29:57 1 5 2019-10-04 06:44:57 1 4 2019-10-04 06:59:57 1 3 2019-10-04 07:04:57 1 2 2019-10-04 07:09:57 1 2 2019-10-04 07:49:57 1 3 2019-10-04 08:04:57 1 2 2019-10-04 08:04:57 2 2 2019-10-04 08:09:57 1 4 2019-10-04 08:09:57 2 2 2019-10-04 08:14:57 1 4 2019-10-04 08:14:57 2 2 2019-10-04 08:29:57 1 3 2019-10-04 08:29:57 2 1 2019-10-04 08:34:57 1 4 2019-10-04 08:34:57 2 1 2019-10-04 09:14:57 1 4 2019-10-04 09:14:57 2 2 2019-10-04 09:24:57 1 4 2019-10-04 09:24:57 2 2 2019-10-04 09:29:57 1 3 2019-10-04 09:29:57 2 2 2019-10-04 09:34:57 1 4 2019-10-04 09:34:57 2 2 2019-10-04 09:39:57 1 3 2019-10-04 09:39:57 2 2 2019-10-04 10:09:57 1 7 2019-10-04 10:09:57 2 2 2019-10-04 10:54:57 1 9 2019-10-04 10:54:57 2 1 2019-10-04 11:04:57 1 11 2019-10-04 11:04:57 2 1 2019-10-04 11:19:57 1 12 2019-10-04 11:19:57 2 1 2019-10-04 11:34:57 1 9 2019-10-04 11:34:57 2 1 2019-10-04 11:44:57 1 9 2019-10-04 11:44:57 2 1 2019-10-04 11:49:57 1 10 2019-10-04 11:49:57 2 2 2019-10-04 11:54:57 1 9 2019-10-04 11:54:57 2 2 2019-10-04 11:59:57 1 9 2019-10-04 11:59:57 2 2 2019-10-04 12:09:57 1 10 2019-10-04 12:09:57 2 1 2019-10-04 12:34:57 1 9 2019-10-04 12:34:57 2 1 2019-10-04 12:44:57 1 9 2019-10-04 12:44:57 2 1 2019-10-04 13:04:57 1 9 2019-10-04 13:09:57 1 9 2019-10-04 13:19:57 1 7 2019-10-04 13:39:57 1 10 2019-10-04 13:54:57 1 11 2019-10-04 13:59:57 1 12 2019-10-04 14:09:57 1 10 2019-10-04 14:09:57 2 1 2019-10-04 14:34:57 1 11 2019-10-04 14:34:57 2 1 2019-10-04 14:39:57 1 11 2019-10-04 14:39:57 2 2 2019-10-04 15:09:57 1 12 2019-10-04 15:09:57 2 2 2019-10-04 15:14:57 1 10 2019-10-04 15:14:57 2 2 2019-10-04 15:29:57 1 11 2019-10-04 15:29:57 2 2 2019-10-04 15:39:57 1 10 2019-10-04 15:39:57 2 1 2019-10-04 15:44:57 1 10 2019-10-04 15:44:57 2 1 2019-10-04 15:49:57 1 11 2019-10-04 15:49:57 2 1 2019-10-04 15:54:57 1 11 2019-10-04 15:59:57 1 9 2019-10-04 16:09:57 1 9 2019-10-04 16:14:57 1 8 2019-10-04 16:19:57 1 8 2019-10-04 16:24:57 1 6 2019-10-04 16:34:57 1 6 2019-10-04 16:44:57 1 6 2019-10-04 16:49:57 1 6 2019-10-04 17:04:57 1 5 2019-10-04 17:04:57 2 1 2019-10-04 17:24:57 1 6 2019-10-04 17:34:57 1 7 2019-10-04 17:39:57 1 7 2019-10-04 17:39:57 2 1 2019-10-03 14:34:57 1 10 2019-10-03 14:34:57 2 3 2019-10-03 14:49:57 1 8 2019-10-03 14:49:57 2 3 2019-10-03 14:59:57 1 8 2019-10-03 14:59:57 2 1 2019-10-03 15:04:57 1 7 2019-10-03 15:04:57 2 1 2019-10-03 15:34:57 1 8 2019-10-03 15:34:57 2 1 2019-10-03 15:39:57 1 8 2019-10-03 15:39:57 2 1 2019-10-03 15:44:57 1 8 2019-10-03 15:44:57 2 1 2019-10-03 16:04:57 1 8 2019-10-03 16:04:57 2 1 2019-10-03 16:09:57 1 7 2019-10-03 16:09:57 2 1 2019-10-03 16:24:57 1 7 2019-10-03 16:24:57 2 3 2019-10-03 16:29:57 1 7 2019-10-03 16:29:57 2 3 2019-10-03 16:34:57 1 8 2019-10-03 16:34:57 2 3 2019-10-03 17:04:57 1 8 2019-10-03 17:04:57 2 1 2019-10-03 17:19:57 1 9 2019-10-03 17:19:57 2 1 2019-10-03 17:34:57 1 9 2019-10-03 17:34:57 2 1 2019-10-03 17:49:57 1 8 2019-10-03 17:49:57 2 1 2019-10-03 17:54:57 1 9 2019-10-03 17:54:57 2 1 2019-10-03 18:04:57 1 11 2019-10-03 18:04:57 2 1 2019-10-03 18:24:57 1 11 2019-10-03 18:24:57 2 1 2019-10-03 18:29:57 1 11 2019-10-03 18:29:57 2 1 2019-10-03 18:34:57 1 11 2019-10-03 18:34:57 2 1 2019-10-03 18:44:57 1 11 2019-10-03 18:44:57 2 1 2019-10-03 19:04:57 1 10 2019-10-03 19:04:57 2 2 2019-10-03 19:09:57 1 8 2019-10-03 19:09:57 2 1 2019-10-03 19:24:57 1 8 2019-10-03 19:24:57 2 2 2019-10-03 19:39:57 1 8 2019-10-03 19:39:57 2 4 2019-10-03 19:59:57 1 9 2019-10-03 19:59:57 2 2 2019-10-03 20:04:57 1 10 2019-10-03 20:04:57 2 3 2019-10-03 20:34:57 1 8 2019-10-03 20:34:57 2 2 2019-10-03 20:39:57 1 8 2019-10-03 20:39:57 2 4 2019-10-03 20:44:57 1 9 2019-10-03 20:44:57 2 4 2019-10-03 20:59:57 1 9 2019-10-03 20:59:57 2 4 2019-10-03 21:29:57 1 10 2019-10-03 21:29:57 2 2 2019-10-03 21:34:57 1 9 2019-10-03 21:34:57 2 2 2019-10-03 21:54:57 1 9 2019-10-03 21:54:57 2 1 2019-10-03 21:59:57 1 11 2019-10-03 21:59:57 2 2 2019-10-03 22:04:57 1 8 2019-10-03 22:04:57 2 3 2019-10-03 22:34:57 1 7 2019-10-03 22:34:57 2 3 2019-10-03 22:54:57 1 7 2019-10-03 22:54:57 2 3 2019-10-03 23:04:57 1 5 2019-10-03 23:04:57 2 2 2019-10-03 23:09:57 1 7 2019-10-03 23:09:57 2 3 2019-10-03 23:14:57 1 8 2019-10-03 23:14:57 2 3 2019-10-03 23:24:57 1 8 2019-10-03 23:24:57 2 3 2019-10-03 23:44:57 1 9 2019-10-03 23:44:57 2 1 2019-10-03 23:59:57 1 6 2019-10-03 23:59:57 2 1 2019-10-04 00:04:57 1 7 2019-10-04 00:14:57 1 6 2019-10-04 00:44:57 1 8 2019-10-04 00:44:57 2 1 2019-10-04 00:49:57 1 7 2019-10-04 00:49:57 2 1 2019-10-04 00:54:57 1 6 2019-10-04 00:54:57 2 1 2019-10-04 01:24:57 1 7 2019-10-04 01:39:57 1 7 2019-10-04 01:44:57 1 7 2019-10-04 02:04:57 1 6 2019-10-04 02:14:57 1 6 2019-10-04 02:19:57 1 7 2019-10-04 02:24:57 1 6 2019-10-04 02:49:57 1 4 2019-10-04 02:54:57 1 3 2019-10-04 04:14:57 1 3 2019-10-04 04:19:57 1 4 2019-10-04 04:34:57 1 3 2019-10-04 04:59:57 1 4 2019-10-04 05:14:57 1 3 2019-10-04 05:39:57 1 3 2019-10-04 05:49:57 1 4 2019-10-04 05:59:57 1 3 2019-10-04 06:09:57 1 3 2019-10-04 06:24:57 1 5 2019-10-04 06:34:57 1 5 2019-10-04 06:39:57 1 4 2019-10-04 07:19:57 1 3 2019-10-04 07:29:57 1 3 2019-10-04 07:39:57 1 3 2019-10-04 07:54:57 1 3 2019-10-04 07:59:57 1 3 2019-10-04 08:19:57 1 3 2019-10-04 08:19:57 2 2 2019-10-04 08:24:57 1 3 2019-10-04 08:24:57 2 1 2019-10-04 08:39:57 1 5 2019-10-04 08:39:57 2 1 2019-10-04 08:49:57 1 4 2019-10-04 08:49:57 2 1 2019-10-04 08:59:57 1 4 2019-10-04 08:59:57 2 1 2019-10-04 09:19:57 1 4 2019-10-04 09:19:57 2 2 2019-10-04 09:44:57 1 5 2019-10-04 09:44:57 2 2 2019-10-04 09:59:57 1 6 2019-10-04 09:59:57 2 2 2019-10-04 10:14:57 1 9 2019-10-04 10:14:57 2 3 2019-10-04 10:19:57 1 9 2019-10-04 10:19:57 2 2 2019-10-04 10:34:57 1 7 2019-10-04 10:34:57 2 1 2019-10-04 10:44:57 1 7 2019-10-04 10:44:57 2 1 2019-10-04 10:59:57 1 9 2019-10-04 10:59:57 2 1 2019-10-04 11:14:57 1 11 2019-10-04 11:14:57 2 1 2019-10-04 11:24:57 1 12 2019-10-04 11:24:57 2 1 2019-10-04 12:04:57 1 11 2019-10-04 12:04:57 2 1 2019-10-04 12:14:57 1 8 2019-10-04 12:14:57 2 1 2019-10-04 12:19:57 1 9 2019-10-04 12:19:57 2 1 2019-10-04 12:24:57 1 10 2019-10-04 12:24:57 2 1 2019-10-04 12:59:57 1 8 2019-10-04 13:14:57 1 9 2019-10-04 13:44:57 1 10 2019-10-04 14:04:57 1 12 2019-10-04 14:04:57 2 1 2019-10-04 14:14:57 1 10 2019-10-04 14:14:57 2 1 2019-10-04 14:24:57 1 11 2019-10-04 14:24:57 2 1 2019-10-04 14:29:57 1 11 2019-10-04 14:29:57 2 1 2019-10-04 14:44:57 1 13 2019-10-04 14:44:57 2 2 2019-10-04 14:49:57 1 10 2019-10-04 14:49:57 2 2 2019-10-04 14:54:57 1 11 2019-10-04 14:54:57 2 2 2019-10-04 14:59:57 1 10 2019-10-04 14:59:57 2 2 2019-10-04 15:04:57 1 12 2019-10-04 15:04:57 2 1 2019-10-04 15:19:57 1 10 2019-10-04 15:19:57 2 3 2019-10-03 14:39:57 1 9 2019-10-03 14:39:57 2 2 2019-10-03 14:44:57 1 8 2019-10-03 14:44:57 2 2 2019-10-03 14:54:57 1 9 2019-10-03 14:54:57 2 2 2019-10-03 15:19:57 1 8 2019-10-03 15:19:57 2 2 2019-10-03 15:24:57 1 9 2019-10-03 15:24:57 2 2 2019-10-03 15:29:57 1 8 2019-10-03 15:29:57 2 2 2019-10-03 15:49:57 1 9 2019-10-03 15:49:57 2 1 2019-10-03 15:54:57 1 10 2019-10-03 15:54:57 2 1 2019-10-03 15:59:57 1 8 2019-10-03 15:59:57 2 1 2019-10-03 16:59:57 1 8 2019-10-03 16:59:57 2 1 2019-10-03 17:09:57 1 9 2019-10-03 17:09:57 2 2 2019-10-03 17:14:57 1 9 2019-10-03 17:14:57 2 1 2019-10-03 17:39:57 1 9 2019-10-03 17:39:57 2 1 2019-10-03 17:44:57 1 10 2019-10-03 17:44:57 2 1 2019-10-03 18:39:57 1 11 2019-10-03 18:59:57 1 10 2019-10-03 18:59:57 2 2 2019-10-03 19:29:57 1 10 2019-10-03 19:29:57 2 3 2019-10-03 19:34:57 1 10 2019-10-03 19:34:57 2 3 2019-10-03 19:54:57 1 9 2019-10-03 19:54:57 2 2 2019-10-03 20:09:57 1 8 2019-10-03 20:09:57 2 1 2019-10-03 20:14:57 1 8 2019-10-03 20:14:57 2 2 2019-10-03 20:19:57 1 9 2019-10-03 20:19:57 2 2 2019-10-03 20:49:57 1 8 2019-10-03 20:49:57 2 4 2019-10-03 20:54:57 1 10 2019-10-03 20:54:57 2 4 2019-10-03 21:04:57 1 9 2019-10-03 21:04:57 2 4 2019-10-03 21:14:57 1 10 2019-10-03 21:14:57 2 4 2019-10-03 21:19:57 1 11 2019-10-03 21:19:57 2 3 2019-10-03 21:44:57 1 11 2019-10-03 21:44:57 2 1 2019-10-03 21:49:57 1 9 2019-10-03 21:49:57 2 1 2019-10-03 22:14:57 1 10 2019-10-03 22:14:57 2 2 2019-10-03 22:19:57 1 11 2019-10-03 22:19:57 2 2 2019-10-03 22:24:57 1 10 2019-10-03 22:24:57 2 2 2019-10-03 22:39:57 1 9 2019-10-03 22:39:57 2 3 2019-10-03 22:44:57 1 8 2019-10-03 22:44:57 2 4 2019-10-03 22:59:57 1 6 2019-10-03 22:59:57 2 2 2019-10-03 23:19:57 1 7 2019-10-03 23:19:57 2 3 2019-10-03 23:29:57 1 7 2019-10-03 23:29:57 2 3 2019-10-03 23:39:57 1 9 2019-10-03 23:39:57 2 1 2019-10-03 23:54:57 1 5 2019-10-03 23:54:57 2 1 2019-10-04 00:09:57 1 6 2019-10-04 00:29:57 1 6 2019-10-04 00:39:57 1 8 2019-10-04 00:39:57 2 1 2019-10-04 00:59:57 1 7 2019-10-04 00:59:57 2 1 2019-10-04 01:04:57 1 7 2019-10-04 01:04:57 2 1 2019-10-04 01:09:57 1 6 2019-10-04 01:09:57 2 1 2019-10-04 01:19:57 1 7 2019-10-04 01:29:57 1 7 2019-10-04 01:49:57 1 7 2019-10-04 01:54:57 1 6 2019-10-04 02:39:57 1 6 2019-10-04 03:09:57 1 3 2019-10-04 03:19:57 1 3 2019-10-04 04:39:57 1 2 2019-10-04 04:49:57 1 2 2019-10-04 05:09:57 1 3 2019-10-04 05:19:57 1 4 2019-10-04 05:29:57 1 4 2019-10-04 05:44:57 1 3 2019-10-04 06:49:57 1 4 2019-10-04 06:54:57 1 4 2019-10-04 07:14:57 1 3 2019-10-04 07:24:57 1 3 2019-10-04 07:34:57 1 3 2019-10-04 07:44:57 1 3 2019-10-04 08:44:57 1 4 2019-10-04 08:44:57 2 1 2019-10-04 08:54:57 1 5 2019-10-04 08:54:57 2 1 2019-10-04 09:04:57 1 4 2019-10-04 09:04:57 2 1 2019-10-04 09:09:57 1 4 2019-10-04 09:09:57 2 2 2019-10-04 09:49:57 1 5 2019-10-04 09:49:57 2 2 2019-10-04 09:54:57 1 6 2019-10-04 09:54:57 2 2 2019-10-04 10:04:57 1 7 2019-10-04 10:04:57 2 2 2019-10-04 10:24:57 1 9 2019-10-04 10:24:57 2 1 2019-10-04 10:29:57 1 7 2019-10-04 10:29:57 2 1 2019-10-04 10:39:57 1 7 2019-10-04 10:39:57 2 1 2019-10-04 10:49:57 1 7 2019-10-04 10:49:57 2 1 2019-10-04 11:09:57 1 11 2019-10-04 11:09:57 2 1 2019-10-04 11:29:57 1 11 2019-10-04 11:29:57 2 1 2019-10-04 11:39:57 1 10 2019-10-04 11:39:57 2 1 2019-10-04 12:29:57 1 9 2019-10-04 12:29:57 2 1 2019-10-04 12:39:57 1 10 2019-10-04 12:39:57 2 1 2019-10-04 12:49:57 1 9 2019-10-04 12:54:57 1 10 2019-10-04 13:24:57 1 8 2019-10-04 13:29:57 1 9 2019-10-04 13:34:57 1 10 2019-10-04 13:49:57 1 11 2019-10-04 14:19:57 1 8 2019-10-04 14:19:57 2 1 2019-10-04 15:24:57 1 11 2019-10-04 15:24:57 2 3 2019-10-04 15:34:57 1 11 2019-10-04 15:34:57 2 1 2019-10-04 16:04:57 1 9 2019-10-04 16:29:57 1 5 2019-10-04 16:39:57 1 6 2019-10-04 16:54:57 1 6 2019-10-04 16:54:57 2 1 2019-10-04 16:59:57 1 6 2019-10-04 16:59:57 2 2 2019-10-04 17:09:57 1 5 2019-10-04 17:14:57 1 6 2019-10-04 17:19:57 1 6 2019-10-04 17:29:57 1 7 2019-10-04 17:44:57 1 7 2019-10-04 17:44:57 2 2 2019-10-04 17:49:57 1 7 2019-10-04 17:49:57 2 2 2019-10-04 17:54:57 1 8 2019-10-04 17:54:57 2 2 2019-10-04 17:59:57 1 8 2019-10-04 17:59:57 2 1 2019-10-04 18:04:57 1 8 2019-10-04 18:09:57 1 8 2019-10-04 18:09:57 2 2 2019-10-04 18:14:57 1 7 2019-10-04 18:19:57 1 7 2019-10-04 18:24:57 1 7 2019-10-04 18:29:57 1 7 2019-10-04 18:34:57 1 8 2019-10-04 18:39:58 1 7 2019-10-04 18:44:57 1 9 2019-10-04 18:49:57 1 8 2019-10-04 18:54:57 1 11 2019-10-04 18:59:57 1 10 2019-10-04 19:04:57 1 10 2019-10-04 19:04:57 2 1 2019-10-04 19:09:57 1 12 2019-10-04 19:09:57 2 1 2019-10-04 19:14:57 1 10 2019-10-04 19:14:57 2 1 2019-10-04 19:29:57 1 14 2019-10-04 19:29:57 2 2 2019-10-04 19:59:57 1 11 2019-10-04 20:09:57 1 9 2019-10-04 20:09:57 2 2 2019-10-04 20:29:57 1 11 2019-10-04 20:29:57 2 3 2019-10-04 20:59:57 1 10 2019-10-04 20:59:57 2 2 2019-10-04 21:29:57 1 11 2019-10-04 21:29:57 2 4 2019-10-04 21:44:57 1 11 2019-10-04 21:44:57 2 3 2019-10-04 21:49:57 1 8 2019-10-04 21:49:57 2 3 2019-10-04 21:59:57 1 10 2019-10-04 21:59:57 2 2 2019-10-04 22:14:57 1 11 2019-10-04 22:14:57 2 3 2019-10-04 22:39:57 1 11 2019-10-04 22:39:57 2 2 2019-10-04 22:44:57 1 12 2019-10-04 22:44:57 2 1 2019-10-04 23:09:57 1 10 2019-10-04 23:24:57 1 8 2019-10-04 23:29:57 1 8 2019-10-04 23:39:57 1 6 2019-10-04 23:54:57 1 6 2019-10-05 00:14:57 1 8 2019-10-05 00:29:57 1 5 2019-10-05 00:34:57 1 5 2019-10-05 00:44:57 1 6 2019-10-05 00:49:57 1 6 2019-10-05 01:44:57 1 5 2019-10-05 01:54:57 1 6 2019-10-05 01:59:57 1 6 2019-10-05 02:09:57 1 6 2019-10-05 02:14:57 1 6 2019-10-05 02:19:57 1 6 2019-10-05 02:24:57 1 6 2019-10-05 02:29:57 1 6 2019-10-05 02:44:57 1 7 2019-10-05 02:59:57 1 6 2019-10-05 03:09:57 1 6 2019-10-05 04:04:57 1 6 2019-10-05 04:09:57 1 6 2019-10-05 04:19:57 1 7 2019-10-05 04:34:57 1 6 2019-10-05 05:29:57 1 6 2019-10-05 05:34:57 1 6 2019-10-05 05:49:57 1 6 2019-10-05 05:54:57 1 6 2019-10-05 06:59:57 1 7 2019-10-05 07:29:57 1 6 2019-10-05 07:39:57 1 5 2019-10-05 08:04:57 1 6 2019-10-05 08:44:57 1 6 2019-10-05 08:54:57 1 6 2019-10-05 09:09:57 1 9 2019-10-05 09:24:57 1 7 2019-10-05 09:29:57 1 8 2019-10-05 10:04:57 1 7 2019-10-05 10:19:57 1 7 2019-10-05 10:24:57 1 6 2019-10-05 10:34:57 1 8 2019-10-05 10:39:57 1 8 2019-10-05 10:49:57 1 7 2019-10-05 10:59:57 1 10 2019-10-05 11:29:57 1 9 2019-10-05 11:29:57 2 1 2019-10-05 11:39:57 1 8 2019-10-05 11:39:57 2 1 2019-10-05 11:44:57 1 9 2019-10-05 11:44:57 2 3 2019-10-05 11:49:57 1 9 2019-10-05 11:49:57 2 3 2019-10-05 11:54:57 1 8 2019-10-05 11:54:57 2 3 2019-10-05 12:04:57 1 10 2019-10-05 12:04:57 2 2 2019-10-05 12:19:57 1 8 2019-10-05 12:19:57 2 1 2019-10-05 12:49:57 1 8 2019-10-05 13:04:57 1 10 2019-10-05 13:09:57 1 8 2019-10-05 13:09:57 2 1 2019-10-05 13:14:57 1 8 2019-10-05 13:34:57 1 9 2019-10-05 14:09:57 1 9 2019-10-05 14:09:57 2 1 2019-10-05 14:29:57 1 11 2019-10-05 14:29:57 2 1 2019-10-05 14:44:57 1 11 2019-10-05 14:44:57 2 2 2019-10-05 15:09:57 1 9 2019-10-05 15:09:57 2 1 2019-10-05 15:24:57 1 7 2019-10-05 15:39:57 1 8 2019-10-05 15:44:57 1 8 2019-10-05 16:24:57 1 9 2019-10-05 16:49:57 1 11 2019-10-05 17:29:57 1 8 2019-10-05 17:29:57 2 3 2019-10-05 17:39:57 1 11 2019-10-05 17:39:57 2 3 2019-10-05 17:44:57 1 7 2019-10-05 17:44:57 2 3 2019-10-05 17:54:57 1 7 2019-10-05 17:54:57 2 4 2019-10-05 18:09:57 1 12 2019-10-05 18:09:57 2 3 2019-10-05 18:24:57 1 11 2019-10-05 18:24:57 2 3 2019-10-05 18:49:57 1 13 2019-10-05 18:49:57 2 2 2019-10-05 18:54:57 1 12 2019-10-05 18:54:57 2 2 2019-10-05 19:04:57 1 12 2019-10-05 19:04:57 2 2 2019-10-05 19:09:57 1 12 2019-10-05 19:09:57 2 3 2019-10-05 19:19:57 1 13 2019-10-05 19:19:57 2 3 2019-10-05 19:39:57 1 12 2019-10-05 19:39:57 2 2 2019-10-05 19:44:57 1 13 2019-10-05 19:44:57 2 2 2019-10-05 20:19:57 1 10 2019-10-05 20:19:57 2 1 2019-10-05 20:34:57 1 10 2019-10-05 20:34:57 2 1 2019-10-05 20:39:57 1 12 2019-10-05 20:39:57 2 1 2019-10-05 20:44:57 1 14 2019-10-05 20:44:57 2 1 2019-10-05 20:49:57 1 14 2019-10-05 20:49:57 2 2 2019-10-05 20:54:57 1 13 2019-10-05 20:54:57 2 1 2019-10-05 21:04:57 1 11 2019-10-05 21:04:57 2 3 2019-10-05 21:34:57 1 12 2019-10-05 21:34:57 2 3 2019-10-05 21:54:57 1 15 2019-10-05 21:54:57 2 1 2019-10-05 22:14:57 1 17 2019-10-05 22:14:57 2 1 2019-10-05 22:29:57 1 17 2019-10-05 22:29:57 2 3 2019-10-05 22:39:57 1 16 2019-10-05 22:39:57 2 5 2019-10-05 22:49:57 1 13 2019-10-05 22:49:57 2 3 2019-10-05 23:04:57 1 12 2019-10-05 23:04:57 2 1 2019-10-05 23:09:57 1 12 2019-10-05 23:09:57 2 1 2019-10-05 23:19:57 1 11 2019-10-05 23:19:57 2 1 2019-10-05 23:24:57 1 11 2019-10-05 23:24:57 2 1 2019-10-05 23:34:57 1 14 2019-10-05 23:39:57 1 13 2019-10-06 00:04:57 1 10 2019-10-06 00:04:57 2 1 2019-10-06 00:09:57 2 2 2019-10-06 00:14:57 1 10 2019-10-06 00:14:57 2 2 2019-10-06 00:29:57 1 9 2019-10-06 00:29:57 2 2 2019-10-06 00:34:57 1 9 2019-10-06 00:34:57 2 1 2019-10-06 00:44:57 1 9 2019-10-06 00:44:57 2 1 2019-10-06 00:54:57 1 9 2019-10-06 00:54:57 2 1 2019-10-06 00:59:57 1 9 2019-10-06 00:59:57 2 1 2019-10-06 01:04:57 1 9 2019-10-06 01:04:57 2 1 2019-10-06 01:14:57 1 9 2019-10-06 01:14:57 2 1 2019-10-04 19:19:57 1 12 2019-10-04 19:19:57 2 1 2019-10-04 19:39:57 1 11 2019-10-04 19:44:57 1 11 2019-10-04 19:54:57 1 10 2019-10-04 20:04:57 1 9 2019-10-04 20:04:57 2 1 2019-10-04 20:19:57 1 10 2019-10-04 20:19:57 2 3 2019-10-04 20:24:57 1 9 2019-10-04 20:24:57 2 3 2019-10-04 20:44:57 1 8 2019-10-04 20:44:57 2 3 2019-10-04 20:54:57 1 7 2019-10-04 20:54:57 2 2 2019-10-04 21:09:57 1 8 2019-10-04 21:09:57 2 2 2019-10-04 21:14:57 1 9 2019-10-04 21:14:57 2 2 2019-10-04 21:19:57 1 10 2019-10-04 21:19:57 2 2 2019-10-04 21:24:57 1 10 2019-10-04 21:24:57 2 3 2019-10-04 22:19:57 1 12 2019-10-04 22:19:57 2 3 2019-10-04 22:24:57 1 11 2019-10-04 22:24:57 2 2 2019-10-04 22:29:57 1 12 2019-10-04 22:29:57 2 2 2019-10-04 22:34:57 1 12 2019-10-04 22:34:57 2 2 2019-10-04 22:49:57 1 12 2019-10-04 22:49:57 2 2 2019-10-04 22:54:57 1 11 2019-10-04 22:54:57 2 2 2019-10-04 22:59:57 1 11 2019-10-04 22:59:57 2 1 2019-10-04 23:19:57 1 10 2019-10-04 23:59:57 1 7 2019-10-05 00:09:57 1 8 2019-10-05 01:34:57 1 5 2019-10-05 01:39:57 1 5 2019-10-05 02:04:57 1 6 2019-10-05 02:34:57 1 7 2019-10-05 02:39:57 1 7 2019-10-05 03:04:57 1 6 2019-10-05 03:14:57 1 6 2019-10-05 03:19:57 1 6 2019-10-05 04:14:57 1 6 2019-10-05 04:24:57 1 7 2019-10-05 04:29:57 1 7 2019-10-05 05:04:57 1 6 2019-10-05 05:19:57 1 6 2019-10-05 05:24:57 1 6 2019-10-05 05:39:57 1 6 2019-10-05 05:59:57 1 6 2019-10-05 06:14:57 1 5 2019-10-05 06:19:57 1 6 2019-10-05 06:29:57 1 8 2019-10-05 06:39:57 1 7 2019-10-05 06:44:57 1 6 2019-10-05 06:49:57 1 6 2019-10-05 06:54:57 1 7 2019-10-05 07:09:57 1 5 2019-10-05 07:19:57 1 4 2019-10-05 07:49:57 1 6 2019-10-05 07:54:57 1 6 2019-10-05 08:34:57 1 5 2019-10-05 08:39:57 1 5 2019-10-05 08:59:57 1 6 2019-10-05 09:04:57 1 8 2019-10-05 09:14:57 1 8 2019-10-05 09:19:57 1 8 2019-10-05 09:34:57 1 8 2019-10-05 09:44:57 1 7 2019-10-05 09:44:57 2 1 2019-10-05 10:14:57 1 8 2019-10-05 10:14:57 2 1 2019-10-05 10:29:57 1 7 2019-10-05 10:44:57 1 7 2019-10-05 10:54:57 1 9 2019-10-05 11:04:57 1 9 2019-10-05 11:04:57 2 2 2019-10-05 11:14:57 1 8 2019-10-05 11:14:57 2 1 2019-10-05 11:19:57 1 11 2019-10-05 11:19:57 2 1 2019-10-05 11:24:57 1 10 2019-10-05 11:24:57 2 1 2019-10-05 11:34:57 1 9 2019-10-05 11:34:57 2 1 2019-10-05 11:59:57 1 9 2019-10-05 11:59:57 2 3 2019-10-05 12:14:57 1 11 2019-10-05 12:14:57 2 1 2019-10-05 12:29:57 1 9 2019-10-05 12:29:57 2 1 2019-10-05 12:34:57 1 9 2019-10-05 12:39:57 1 8 2019-10-05 13:19:57 1 9 2019-10-05 13:24:57 1 9 2019-10-05 13:29:57 1 10 2019-10-05 13:39:57 1 8 2019-10-05 13:44:57 1 8 2019-10-05 14:04:57 1 9 2019-10-05 14:04:57 2 1 2019-10-05 14:14:57 1 9 2019-10-05 14:34:57 1 12 2019-10-05 14:34:57 2 2 2019-10-05 14:54:57 1 12 2019-10-05 14:54:57 2 2 2019-10-05 14:59:57 1 10 2019-10-05 14:59:57 2 1 2019-10-05 15:04:57 1 10 2019-10-05 15:04:57 2 1 2019-10-05 15:19:57 1 7 2019-10-05 15:29:57 1 8 2019-10-05 16:14:59 1 8 2019-10-05 16:34:57 1 10 2019-10-05 16:54:57 1 10 2019-10-05 16:59:57 1 9 2019-10-05 16:59:57 2 1 2019-10-05 17:04:57 1 11 2019-10-05 17:04:57 2 2 2019-10-05 17:09:57 1 11 2019-10-05 17:09:57 2 2 2019-10-05 17:19:57 1 10 2019-10-05 17:19:57 2 2 2019-10-05 17:24:57 1 9 2019-10-05 17:24:57 2 3 2019-10-05 18:04:57 1 10 2019-10-05 18:04:57 2 3 2019-10-05 18:19:57 1 11 2019-10-05 18:19:57 2 3 2019-10-05 18:44:57 1 12 2019-10-05 18:44:57 2 2 2019-10-05 19:34:57 1 13 2019-10-05 19:34:57 2 2 2019-10-05 19:54:57 1 13 2019-10-05 19:54:57 2 1 2019-10-05 20:09:57 1 8 2019-10-05 20:09:57 2 1 2019-10-05 20:59:57 1 11 2019-10-05 20:59:57 2 2 2019-10-05 21:09:57 1 12 2019-10-05 21:09:57 2 4 2019-10-05 21:14:57 1 12 2019-10-05 21:14:57 2 5 2019-10-05 21:24:57 1 12 2019-10-05 21:24:57 2 3 2019-10-05 21:49:57 1 16 2019-10-05 21:49:57 2 3 2019-10-05 22:34:57 1 17 2019-10-05 22:34:57 2 4 2019-10-05 23:14:57 1 11 2019-10-05 23:14:57 2 1 2019-10-05 23:49:57 1 13 2019-10-06 00:19:57 1 10 2019-10-06 00:19:57 2 2 2019-10-06 00:24:57 1 9 2019-10-06 00:24:57 2 2 2019-10-06 00:39:58 1 9 2019-10-06 00:39:58 2 1 2019-10-06 00:49:57 1 9 2019-10-06 00:49:57 2 1 2019-10-06 01:09:57 1 9 2019-10-06 01:09:57 2 1 2019-10-06 01:19:57 1 7 2019-10-06 01:19:57 2 1 2019-10-06 01:24:57 1 7 2019-10-06 01:24:57 2 1 2019-10-06 01:29:57 1 7 2019-10-06 01:29:57 2 1 2019-10-06 01:34:57 1 7 2019-10-06 01:34:57 2 1 2019-10-06 01:39:57 1 6 2019-10-06 01:39:57 2 1 2019-10-06 01:44:57 1 7 2019-10-06 01:44:57 2 1 2019-10-06 01:49:57 1 6 2019-10-06 01:49:57 2 1 2019-10-06 01:54:57 1 6 2019-10-06 01:54:57 2 1 2019-10-06 01:59:57 1 6 2019-10-06 01:59:57 2 1 2019-10-04 19:24:57 1 12 2019-10-04 19:24:57 2 1 2019-10-04 19:34:57 1 13 2019-10-04 19:34:57 2 2 2019-10-04 19:49:57 1 10 2019-10-04 20:14:57 1 9 2019-10-04 20:14:57 2 3 2019-10-04 20:34:57 1 10 2019-10-04 20:34:57 2 3 2019-10-04 20:39:57 1 9 2019-10-04 20:39:57 2 3 2019-10-04 20:49:57 1 8 2019-10-04 20:49:57 2 3 2019-10-04 21:04:57 1 9 2019-10-04 21:04:57 2 2 2019-10-04 21:34:57 1 12 2019-10-04 21:34:57 2 4 2019-10-04 21:39:57 1 12 2019-10-04 21:39:57 2 3 2019-10-04 21:54:57 1 7 2019-10-04 21:54:57 2 2 2019-10-04 22:04:57 1 10 2019-10-04 22:04:57 2 3 2019-10-04 22:09:57 1 11 2019-10-04 22:09:57 2 3 2019-10-04 23:04:57 1 11 2019-10-04 23:14:57 1 10 2019-10-04 23:34:57 1 6 2019-10-04 23:44:57 1 8 2019-10-04 23:49:57 1 8 2019-10-05 00:04:57 1 7 2019-10-05 00:19:57 1 6 2019-10-05 00:24:57 1 6 2019-10-05 00:39:57 1 5 2019-10-05 00:54:57 1 6 2019-10-05 00:59:57 1 5 2019-10-05 01:04:57 1 5 2019-10-05 01:09:57 1 5 2019-10-05 01:14:57 1 5 2019-10-05 01:19:57 1 5 2019-10-05 01:24:57 1 5 2019-10-05 01:29:57 1 5 2019-10-05 01:49:57 1 5 2019-10-05 02:49:57 1 7 2019-10-05 02:54:57 1 6 2019-10-05 03:24:57 1 5 2019-10-05 03:29:57 1 5 2019-10-05 03:34:57 1 5 2019-10-05 03:39:57 1 5 2019-10-05 03:44:57 1 5 2019-10-05 03:49:57 1 5 2019-10-05 03:54:57 1 5 2019-10-05 03:59:57 1 5 2019-10-05 04:39:57 1 5 2019-10-05 04:44:57 1 5 2019-10-05 04:49:57 1 5 2019-10-05 04:54:57 1 5 2019-10-05 04:59:57 1 5 2019-10-05 05:09:57 1 6 2019-10-05 05:14:57 1 6 2019-10-05 05:44:57 1 6 2019-10-05 06:04:57 1 6 2019-10-05 06:09:57 1 5 2019-10-05 06:24:57 1 7 2019-10-05 06:34:57 1 7 2019-10-05 07:04:57 1 6 2019-10-05 07:14:57 1 5 2019-10-05 07:24:57 1 6 2019-10-05 07:34:57 1 5 2019-10-05 07:44:57 1 4 2019-10-05 07:59:57 1 6 2019-10-05 08:09:57 1 5 2019-10-05 08:14:57 1 5 2019-10-05 08:19:57 1 5 2019-10-05 08:24:57 1 5 2019-10-05 08:29:57 1 6 2019-10-05 08:49:57 1 6 2019-10-05 09:39:57 1 8 2019-10-05 09:49:57 1 7 2019-10-05 09:49:57 2 1 2019-10-05 09:54:57 1 8 2019-10-05 09:54:57 2 1 2019-10-05 09:59:57 1 7 2019-10-05 09:59:57 2 1 2019-10-05 10:09:57 1 8 2019-10-05 10:09:57 2 1 2019-10-05 11:09:57 1 10 2019-10-05 11:09:57 2 1 2019-10-05 12:09:57 1 9 2019-10-05 12:09:57 2 2 2019-10-05 12:24:57 1 10 2019-10-05 12:24:57 2 1 2019-10-05 12:44:57 1 8 2019-10-05 12:54:57 1 9 2019-10-05 12:59:57 1 10 2019-10-05 13:49:57 1 9 2019-10-05 13:54:57 1 8 2019-10-05 13:59:57 1 10 2019-10-05 14:19:57 1 10 2019-10-05 14:24:57 1 10 2019-10-05 14:24:57 2 1 2019-10-05 14:39:57 1 12 2019-10-05 14:39:57 2 2 2019-10-05 14:49:57 1 12 2019-10-05 14:49:57 2 2 2019-10-05 15:14:57 1 9 2019-10-05 15:34:57 1 9 2019-10-05 15:49:57 1 9 2019-10-05 15:54:57 1 9 2019-10-05 15:54:57 2 1 2019-10-05 15:59:57 1 11 2019-10-05 16:04:57 1 8 2019-10-05 16:09:57 1 9 2019-10-05 16:19:57 1 9 2019-10-05 16:29:57 1 10 2019-10-05 16:39:57 1 10 2019-10-05 16:44:57 1 11 2019-10-05 16:44:57 2 1 2019-10-05 17:14:57 1 10 2019-10-05 17:14:57 2 2 2019-10-05 17:34:57 1 10 2019-10-05 17:34:57 2 4 2019-10-05 17:49:57 1 9 2019-10-05 17:49:57 2 3 2019-10-05 17:59:57 1 10 2019-10-05 17:59:57 2 3 2019-10-05 18:14:57 1 12 2019-10-05 18:14:57 2 3 2019-10-05 18:29:57 1 11 2019-10-05 18:29:57 2 3 2019-10-05 18:34:57 1 11 2019-10-05 18:34:57 2 3 2019-10-05 18:39:57 1 11 2019-10-05 18:39:57 2 2 2019-10-05 18:59:57 1 13 2019-10-05 18:59:57 2 2 2019-10-05 19:14:57 1 13 2019-10-05 19:14:57 2 3 2019-10-05 19:24:57 1 12 2019-10-05 19:24:57 2 3 2019-10-05 19:29:57 1 12 2019-10-05 19:29:57 2 2 2019-10-05 19:49:57 1 13 2019-10-05 19:49:57 2 1 2019-10-05 19:59:57 1 12 2019-10-05 19:59:57 2 1 2019-10-05 20:04:57 1 11 2019-10-05 20:04:57 2 1 2019-10-05 20:14:57 1 10 2019-10-05 20:14:57 2 1 2019-10-05 20:24:57 1 10 2019-10-05 20:24:57 2 1 2019-10-05 20:29:57 1 11 2019-10-05 20:29:57 2 1 2019-10-05 21:19:57 1 15 2019-10-05 21:19:57 2 5 2019-10-05 21:29:57 1 17 2019-10-05 21:29:57 2 3 2019-10-05 21:39:57 1 14 2019-10-05 21:39:57 2 3 2019-10-05 21:44:57 1 15 2019-10-05 21:44:57 2 3 2019-10-05 21:59:57 1 18 2019-10-05 21:59:57 2 1 2019-10-05 22:04:59 1 19 2019-10-05 22:04:59 2 1 2019-10-05 22:09:57 1 17 2019-10-05 22:09:57 2 2 2019-10-05 22:19:57 1 16 2019-10-05 22:19:57 2 2 2019-10-05 22:24:57 1 15 2019-10-05 22:24:57 2 2 2019-10-05 22:44:57 1 14 2019-10-05 22:44:57 2 4 2019-10-05 22:54:57 1 14 2019-10-05 22:54:57 2 2 2019-10-05 22:59:57 1 11 2019-10-05 22:59:57 2 1 2019-10-05 23:29:57 1 13 2019-10-05 23:29:57 2 1 2019-10-05 23:44:57 1 12 2019-10-05 23:54:57 1 12 2019-10-05 23:59:57 1 11 2019-10-05 23:59:57 2 1 2019-10-06 00:09:57 1 10 2019-10-06 02:04:57 1 7 2019-10-06 02:04:57 2 1 2019-10-06 02:24:57 1 6 2019-10-06 02:24:57 2 1 2019-10-06 02:34:57 1 6 2019-10-06 02:34:57 2 1 2019-10-06 02:39:57 1 5 2019-10-06 02:39:57 2 1 2019-10-06 02:54:57 1 5 2019-10-06 02:54:57 2 1 2019-10-06 03:09:57 1 5 2019-10-06 03:24:57 1 5 2019-10-06 03:34:57 1 6 2019-10-06 03:39:57 1 5 2019-10-06 03:49:57 1 5 2019-10-06 04:04:57 1 5 2019-10-06 04:39:57 1 5 2019-10-06 04:44:57 1 5 2019-10-06 04:54:57 1 5 2019-10-06 05:19:57 1 4 2019-10-06 05:29:57 1 4 2019-10-06 06:19:57 1 6 2019-10-06 06:24:57 1 6 2019-10-06 07:09:57 1 8 2019-10-06 07:29:57 1 8 2019-10-06 07:39:57 1 9 2019-10-06 07:54:57 1 8 2019-10-06 08:04:57 1 7 2019-10-06 08:14:57 1 6 2019-10-06 08:19:57 1 8 2019-10-06 08:24:57 1 7 2019-10-06 08:34:57 1 7 2019-10-06 08:54:58 1 8 2019-10-06 08:59:57 1 8 2019-10-06 08:59:57 2 1 2019-10-06 09:04:57 1 10 2019-10-06 09:14:57 1 8 2019-10-06 09:19:57 1 9 2019-10-06 09:29:57 1 10 2019-10-06 10:14:57 1 11 2019-10-06 10:24:57 1 10 2019-10-06 10:39:57 1 11 2019-10-06 10:49:57 1 10 2019-10-06 11:14:57 1 11 2019-10-06 11:29:57 1 9 2019-10-06 11:29:57 2 1 2019-10-06 11:49:57 1 10 2019-10-06 11:49:57 2 1 2019-10-06 12:04:57 1 9 2019-10-06 12:04:57 2 1 2019-10-06 12:19:57 1 9 2019-10-06 12:19:57 2 1 2019-10-06 12:24:57 1 9 2019-10-06 12:24:57 2 1 2019-10-06 12:29:57 1 11 2019-10-06 12:29:57 2 1 2019-10-06 12:39:57 1 10 2019-10-06 12:39:57 2 1 2019-10-06 12:49:57 1 9 2019-10-06 12:49:57 2 3 2019-10-06 13:04:57 1 13 2019-10-06 13:04:57 2 2 2019-10-06 13:09:57 1 14 2019-10-06 13:09:57 2 2 2019-10-06 13:29:57 1 13 2019-10-06 13:29:57 2 1 2019-10-06 13:39:57 1 11 2019-10-06 13:49:57 1 12 2019-10-06 14:04:57 1 13 2019-10-06 14:09:57 1 13 2019-10-06 14:14:57 1 14 2019-10-06 14:14:57 2 1 2019-10-06 14:39:57 1 11 2019-10-06 14:39:57 2 2 2019-10-06 14:54:57 1 13 2019-10-06 15:04:57 1 11 2019-10-06 15:04:57 2 2 2019-10-06 15:09:57 1 13 2019-10-06 15:09:57 2 2 2019-10-06 15:29:57 1 10 2019-10-06 15:29:57 2 3 2019-10-06 15:34:57 1 10 2019-10-06 15:34:57 2 3 2019-10-06 15:39:57 1 12 2019-10-06 15:39:57 2 2 2019-10-06 15:44:57 1 12 2019-10-06 15:44:57 2 2 2019-10-06 16:04:57 1 11 2019-10-06 16:04:57 2 3 2019-10-06 16:09:57 1 12 2019-10-06 16:09:57 2 4 2019-10-06 16:14:57 1 10 2019-10-06 16:14:57 2 3 2019-10-06 16:34:57 1 7 2019-10-06 16:34:57 2 2 2019-10-06 16:44:57 1 7 2019-10-06 16:44:57 2 1 2019-10-06 16:59:57 1 9 2019-10-06 17:39:57 1 13 2019-10-06 17:39:57 2 2 2019-10-06 17:49:57 1 13 2019-10-06 17:49:57 2 1 2019-10-06 17:54:57 1 12 2019-10-06 17:54:57 2 1 2019-10-06 18:09:57 1 13 2019-10-06 18:09:57 2 1 2019-10-06 18:14:57 1 14 2019-10-06 18:14:57 2 1 2019-10-06 18:19:57 2 1 2019-10-06 18:24:57 1 5 2019-10-06 18:24:57 2 1 2019-10-06 18:29:57 1 6 2019-10-06 18:29:57 2 1 2019-10-06 18:34:57 1 5 2019-10-06 18:34:57 2 1 2019-10-06 18:39:57 1 6 2019-10-06 18:39:57 2 1 2019-10-06 18:49:57 1 7 2019-10-06 18:49:57 2 1 2019-10-06 18:54:57 1 11 2019-10-06 18:54:57 2 1 2019-10-06 18:59:57 1 11 2019-10-06 18:59:57 2 1 2019-10-06 19:04:57 1 13 2019-10-06 19:04:57 2 1 2019-10-06 19:09:57 1 11 2019-10-06 19:09:57 2 1 2019-10-06 19:14:57 1 12 2019-10-06 19:14:57 2 1 2019-10-06 19:29:57 1 14 2019-10-06 19:29:57 2 3 2019-10-06 19:49:57 1 17 2019-10-06 20:09:57 1 11 2019-10-06 20:09:57 2 1 2019-10-06 20:14:57 1 10 2019-10-06 20:14:57 2 1 2019-10-06 21:54:57 1 8 2019-10-06 21:54:57 2 1 2019-10-06 22:04:57 1 12 2019-10-06 22:04:57 2 1 2019-10-06 22:09:57 1 11 2019-10-06 22:09:57 2 1 2019-10-06 22:14:57 1 15 2019-10-06 22:14:57 2 1 2019-10-06 22:19:57 1 12 2019-10-06 22:19:57 2 1 2019-10-06 22:24:57 1 12 2019-10-06 22:24:57 2 2 2019-10-06 22:59:57 1 13 2019-10-06 22:59:57 2 1 2019-10-06 23:19:57 1 9 2019-10-06 23:24:57 1 9 2019-10-06 23:24:57 2 2 2019-10-06 23:29:57 1 8 2019-10-06 23:29:57 2 2 2019-10-06 23:54:57 1 8 2019-10-06 23:54:57 2 3 2019-10-07 00:24:57 1 7 2019-10-07 00:34:57 1 6 2019-10-07 00:34:57 2 1 2019-10-07 00:49:57 1 5 2019-10-07 00:54:57 1 7 2019-10-07 00:59:57 1 9 2019-10-07 00:59:57 2 1 2019-10-07 01:24:57 1 6 2019-10-07 02:24:57 1 6 2019-10-07 02:24:57 2 1 2019-10-07 02:34:57 1 6 2019-10-07 02:34:57 2 1 2019-10-07 03:29:57 1 4 2019-10-07 03:29:57 2 1 2019-10-07 03:39:57 1 4 2019-10-07 03:39:57 2 1 2019-10-07 03:44:57 1 5 2019-10-07 03:44:57 2 1 2019-10-07 03:59:57 1 3 2019-10-07 03:59:57 2 1 2019-10-07 04:04:57 1 2 2019-10-07 04:04:57 2 1 2019-10-07 04:09:57 1 2 2019-10-07 04:09:57 2 1 2019-10-07 04:14:57 1 2 2019-10-07 04:19:57 1 2 2019-10-07 04:34:57 1 3 2019-10-07 04:39:57 1 3 2019-10-06 02:09:57 1 7 2019-10-06 02:09:57 2 1 2019-10-06 02:29:57 1 6 2019-10-06 02:29:57 2 1 2019-10-06 02:44:57 1 5 2019-10-06 02:44:57 2 1 2019-10-06 02:59:57 1 6 2019-10-06 03:04:57 1 5 2019-10-06 03:14:57 1 5 2019-10-06 03:29:57 1 5 2019-10-06 04:09:57 1 5 2019-10-06 04:14:57 1 5 2019-10-06 04:24:57 1 5 2019-10-06 04:34:57 1 5 2019-10-06 04:59:57 1 5 2019-10-06 05:04:57 1 6 2019-10-06 05:14:57 1 4 2019-10-06 05:39:57 1 4 2019-10-06 05:49:57 1 6 2019-10-06 05:54:57 1 6 2019-10-06 05:54:57 2 1 2019-10-06 06:04:57 1 7 2019-10-06 06:09:57 1 6 2019-10-06 06:14:57 1 6 2019-10-06 06:44:57 1 5 2019-10-06 06:54:57 1 7 2019-10-06 06:59:57 1 6 2019-10-06 08:09:57 1 6 2019-10-06 08:29:57 1 8 2019-10-06 08:44:57 1 7 2019-10-06 09:24:57 1 8 2019-10-06 09:39:57 1 8 2019-10-06 09:49:57 1 10 2019-10-06 09:54:57 1 11 2019-10-06 09:54:57 2 1 2019-10-06 09:59:57 1 10 2019-10-06 09:59:57 2 1 2019-10-06 10:04:57 1 11 2019-10-06 10:09:57 1 13 2019-10-06 10:09:57 2 1 2019-10-06 10:19:57 1 10 2019-10-06 10:19:57 2 1 2019-10-06 10:29:57 1 9 2019-10-06 10:34:57 1 9 2019-10-06 10:59:57 1 10 2019-10-06 11:09:57 1 11 2019-10-06 11:19:57 1 11 2019-10-06 11:19:57 2 1 2019-10-06 11:24:57 1 10 2019-10-06 11:24:57 2 1 2019-10-06 11:44:57 1 11 2019-10-06 11:44:57 2 1 2019-10-06 11:54:57 1 10 2019-10-06 11:54:57 2 1 2019-10-06 11:59:57 1 9 2019-10-06 11:59:57 2 1 2019-10-06 12:09:57 1 11 2019-10-06 12:09:57 2 1 2019-10-06 12:44:57 1 10 2019-10-06 12:44:57 2 1 2019-10-06 12:54:57 1 11 2019-10-06 12:54:57 2 2 2019-10-06 12:59:57 1 10 2019-10-06 12:59:57 2 2 2019-10-06 13:14:57 1 12 2019-10-06 13:14:57 2 3 2019-10-06 13:19:57 1 11 2019-10-06 13:19:57 2 3 2019-10-06 13:54:57 1 11 2019-10-06 14:19:57 1 15 2019-10-06 14:19:57 2 1 2019-10-06 14:44:57 1 12 2019-10-06 14:44:57 2 2 2019-10-06 14:49:57 1 12 2019-10-06 14:49:57 2 1 2019-10-06 15:14:57 1 12 2019-10-06 15:14:57 2 2 2019-10-06 15:24:57 1 12 2019-10-06 15:24:57 2 4 2019-10-06 15:59:57 1 11 2019-10-06 15:59:57 2 3 2019-10-06 16:24:57 1 8 2019-10-06 16:24:57 2 2 2019-10-06 17:04:57 1 10 2019-10-06 17:04:57 2 1 2019-10-06 17:14:57 1 11 2019-10-06 17:14:57 2 1 2019-10-06 17:24:57 1 10 2019-10-06 17:24:57 2 1 2019-10-06 17:34:57 1 13 2019-10-06 17:34:57 2 2 2019-10-06 17:44:57 1 11 2019-10-06 17:44:57 2 1 2019-10-06 17:59:57 1 12 2019-10-06 17:59:57 2 2 2019-10-06 18:04:57 1 14 2019-10-06 18:04:57 2 2 2019-10-06 18:44:57 1 6 2019-10-06 18:44:57 2 1 2019-10-06 19:24:57 1 11 2019-10-06 19:24:57 2 3 2019-10-06 19:34:57 1 12 2019-10-06 19:34:57 2 2 2019-10-06 19:39:57 1 15 2019-10-06 19:39:57 2 1 2019-10-06 19:54:57 1 15 2019-10-06 19:59:57 1 13 2019-10-06 20:19:57 1 11 2019-10-06 20:19:57 2 1 2019-10-06 20:24:57 1 10 2019-10-06 20:24:57 2 1 2019-10-06 20:39:57 1 14 2019-10-06 20:39:57 2 1 2019-10-06 20:49:57 1 11 2019-10-06 20:49:57 2 2 2019-10-06 21:04:57 1 13 2019-10-06 21:04:57 2 2 2019-10-06 21:14:57 1 11 2019-10-06 21:29:57 1 9 2019-10-06 21:59:57 1 14 2019-10-06 21:59:57 2 1 2019-10-06 22:54:57 1 12 2019-10-06 22:54:57 2 1 2019-10-06 23:09:57 1 11 2019-10-06 23:09:57 2 1 2019-10-06 23:34:57 1 8 2019-10-06 23:34:57 2 3 2019-10-06 23:49:57 1 9 2019-10-06 23:49:57 2 3 2019-10-07 00:14:57 1 9 2019-10-07 00:14:57 2 3 2019-10-07 00:44:57 1 6 2019-10-07 01:09:57 1 9 2019-10-07 01:14:57 1 8 2019-10-07 01:29:57 1 6 2019-10-07 01:39:57 1 5 2019-10-07 01:39:57 2 1 2019-10-07 01:44:57 1 5 2019-10-07 01:44:57 2 1 2019-10-07 02:09:57 1 6 2019-10-07 02:09:57 2 1 2019-10-07 02:49:57 1 5 2019-10-07 02:49:57 2 1 2019-10-07 02:54:57 1 6 2019-10-07 02:54:57 2 1 2019-10-07 02:59:57 1 5 2019-10-07 02:59:57 2 1 2019-10-07 03:04:57 1 5 2019-10-07 03:04:57 2 2 2019-10-07 03:09:57 1 4 2019-10-07 03:09:57 2 2 2019-10-07 03:14:57 1 4 2019-10-07 03:14:57 2 1 2019-10-07 03:34:57 1 4 2019-10-07 03:34:57 2 1 2019-10-07 04:24:57 1 2 2019-10-07 04:29:57 1 2 2019-10-07 04:49:57 1 3 2019-10-07 04:54:57 1 3 2019-10-07 04:59:57 1 3 2019-10-07 05:04:57 1 3 2019-10-07 05:09:57 1 2 2019-10-07 05:14:57 1 2 2019-10-07 05:19:57 1 2 2019-10-07 06:09:57 1 4 2019-10-07 06:14:57 1 5 2019-10-07 06:19:57 1 4 2019-10-07 06:24:57 1 4 2019-10-07 06:34:57 1 4 2019-10-07 06:39:57 1 4 2019-10-07 06:44:57 1 4 2019-10-07 06:49:57 1 4 2019-10-07 06:54:57 1 4 2019-10-07 06:59:57 1 4 2019-10-07 07:04:57 1 5 2019-10-07 07:14:57 1 3 2019-10-07 07:14:57 2 1 2019-10-07 07:19:57 1 3 2019-10-07 07:19:57 2 1 2019-10-07 07:24:57 1 4 2019-10-07 07:29:57 1 5 2019-10-07 07:34:57 1 4 2019-10-07 07:49:57 1 4 2019-10-07 07:54:57 1 5 2019-10-07 07:59:57 1 6 2019-10-06 02:14:57 1 7 2019-10-06 02:14:57 2 1 2019-10-06 02:19:57 1 6 2019-10-06 02:19:57 2 1 2019-10-06 02:49:57 1 5 2019-10-06 02:49:57 2 1 2019-10-06 03:19:57 1 5 2019-10-06 03:44:57 1 5 2019-10-06 03:54:57 1 5 2019-10-06 03:59:57 1 5 2019-10-06 04:19:57 1 5 2019-10-06 04:29:57 1 5 2019-10-06 04:49:57 1 5 2019-10-06 05:09:57 1 4 2019-10-06 05:24:57 1 4 2019-10-06 05:34:57 1 4 2019-10-06 05:44:57 1 6 2019-10-06 05:59:57 1 6 2019-10-06 06:29:57 1 7 2019-10-06 06:34:57 1 6 2019-10-06 06:39:57 1 5 2019-10-06 06:49:57 1 5 2019-10-06 07:04:57 1 7 2019-10-06 07:14:57 1 7 2019-10-06 07:14:57 2 1 2019-10-06 07:19:57 1 6 2019-10-06 07:24:57 1 6 2019-10-06 07:34:57 1 7 2019-10-06 07:44:57 1 9 2019-10-06 07:49:57 1 8 2019-10-06 07:59:57 1 7 2019-10-06 08:39:57 1 8 2019-10-06 08:49:57 1 7 2019-10-06 09:09:57 1 9 2019-10-06 09:34:57 1 9 2019-10-06 09:44:57 1 11 2019-10-06 10:44:57 1 10 2019-10-06 10:54:57 1 11 2019-10-06 11:04:57 1 11 2019-10-06 11:34:57 1 7 2019-10-06 11:34:57 2 1 2019-10-06 11:39:57 1 9 2019-10-06 11:39:57 2 1 2019-10-06 12:14:57 1 10 2019-10-06 12:14:57 2 1 2019-10-06 12:34:57 1 11 2019-10-06 12:34:57 2 1 2019-10-06 13:24:57 1 11 2019-10-06 13:24:57 2 2 2019-10-06 13:34:57 1 13 2019-10-06 13:44:57 1 13 2019-10-06 13:59:57 1 11 2019-10-06 14:24:57 1 14 2019-10-06 14:24:57 2 1 2019-10-06 14:29:57 1 12 2019-10-06 14:29:57 2 1 2019-10-06 14:34:57 1 13 2019-10-06 14:34:57 2 2 2019-10-06 14:59:57 1 13 2019-10-06 14:59:57 2 2 2019-10-06 15:19:57 1 11 2019-10-06 15:19:57 2 2 2019-10-06 15:49:57 1 13 2019-10-06 15:49:57 2 2 2019-10-06 15:54:57 1 11 2019-10-06 15:54:57 2 4 2019-10-06 16:19:57 1 9 2019-10-06 16:19:57 2 2 2019-10-06 16:29:57 1 6 2019-10-06 16:29:57 2 3 2019-10-06 16:39:57 1 8 2019-10-06 16:39:57 2 1 2019-10-06 16:49:57 1 9 2019-10-06 16:54:57 1 7 2019-10-06 17:09:57 1 12 2019-10-06 17:09:57 2 1 2019-10-06 17:19:57 1 11 2019-10-06 17:19:57 2 1 2019-10-06 17:29:57 1 10 2019-10-06 17:29:57 2 2 2019-10-06 19:19:57 1 14 2019-10-06 19:19:57 2 2 2019-10-06 19:44:57 1 17 2019-10-06 20:04:57 1 12 2019-10-06 20:29:57 1 11 2019-10-06 20:29:57 2 1 2019-10-06 20:34:57 1 12 2019-10-06 20:34:57 2 1 2019-10-06 20:44:57 1 14 2019-10-06 20:44:57 2 2 2019-10-06 20:54:57 1 11 2019-10-06 20:54:57 2 2 2019-10-06 20:59:57 1 11 2019-10-06 20:59:57 2 2 2019-10-06 21:09:57 1 11 2019-10-06 21:09:57 2 1 2019-10-06 21:19:57 1 9 2019-10-06 21:24:57 1 11 2019-10-06 21:34:57 1 12 2019-10-06 21:39:57 1 11 2019-10-06 21:44:57 1 8 2019-10-06 21:44:57 2 1 2019-10-06 21:49:57 1 8 2019-10-06 21:49:57 2 2 2019-10-06 22:29:57 1 13 2019-10-06 22:29:57 2 2 2019-10-06 22:34:57 1 13 2019-10-06 22:34:57 2 2 2019-10-06 22:39:57 1 13 2019-10-06 22:39:57 2 2 2019-10-06 22:44:57 1 12 2019-10-06 22:44:57 2 2 2019-10-06 22:49:57 1 12 2019-10-06 22:49:57 2 2 2019-10-06 23:04:57 1 13 2019-10-06 23:04:57 2 1 2019-10-06 23:14:57 1 12 2019-10-06 23:14:57 2 1 2019-10-06 23:39:57 1 9 2019-10-06 23:39:57 2 3 2019-10-06 23:44:57 1 8 2019-10-06 23:44:57 2 2 2019-10-06 23:59:57 1 5 2019-10-06 23:59:57 2 3 2019-10-07 00:04:57 1 5 2019-10-07 00:04:57 2 3 2019-10-07 00:09:57 1 8 2019-10-07 00:09:57 2 3 2019-10-07 00:19:57 1 8 2019-10-07 00:19:57 2 1 2019-10-07 00:29:57 1 9 2019-10-07 00:39:57 1 5 2019-10-07 01:04:57 1 10 2019-10-07 01:04:57 2 1 2019-10-07 01:19:57 1 9 2019-10-07 01:34:57 1 6 2019-10-07 01:34:57 2 1 2019-10-07 01:49:57 1 6 2019-10-07 01:49:57 2 1 2019-10-07 01:54:57 1 6 2019-10-07 01:54:57 2 1 2019-10-07 01:59:57 1 7 2019-10-07 01:59:57 2 1 2019-10-07 02:04:57 1 6 2019-10-07 02:04:57 2 1 2019-10-07 02:14:57 1 6 2019-10-07 02:14:57 2 1 2019-10-07 02:19:57 1 6 2019-10-07 02:19:57 2 1 2019-10-07 02:29:57 1 6 2019-10-07 02:29:57 2 1 2019-10-07 02:39:57 1 6 2019-10-07 02:39:57 2 1 2019-10-07 02:44:57 1 5 2019-10-07 02:44:57 2 1 2019-10-07 03:19:57 1 3 2019-10-07 03:19:57 2 1 2019-10-07 03:24:57 1 3 2019-10-07 03:24:57 2 1 2019-10-07 03:49:57 1 4 2019-10-07 03:49:57 2 2 2019-10-07 03:54:57 1 4 2019-10-07 03:54:57 2 1 2019-10-07 04:44:57 1 4 2019-10-07 05:24:57 1 3 2019-10-07 05:29:57 1 3 2019-10-07 05:34:57 1 3 2019-10-07 05:39:57 1 3 2019-10-07 05:44:57 1 3 2019-10-07 05:49:57 1 3 2019-10-07 05:54:57 1 3 2019-10-07 05:59:57 1 3 2019-10-07 06:04:57 1 3 2019-10-07 06:29:57 1 4 2019-10-07 07:09:57 1 4 2019-10-07 07:39:57 1 5 2019-10-07 07:44:57 1 4 2019-10-07 08:04:57 1 5 2019-10-07 08:09:57 1 6 2019-10-07 08:14:57 1 5 2019-10-07 08:19:57 1 7 2019-10-07 08:24:57 1 5 2019-10-07 08:29:57 1 6 2019-10-07 08:29:57 2 1 2019-10-07 08:34:57 1 5 2019-10-07 08:34:57 2 1 2019-10-07 08:44:57 1 8 2019-10-07 08:44:57 2 1 2019-10-07 09:09:57 1 8 2019-10-07 09:09:57 2 1 2019-10-07 09:19:57 1 6 2019-10-07 09:19:57 2 1 2019-10-07 09:29:57 1 7 2019-10-07 09:29:57 2 3 2019-10-07 09:39:57 1 7 2019-10-07 09:39:57 2 3 2019-10-07 09:49:57 1 9 2019-10-07 09:49:57 2 3 2019-10-07 09:54:57 1 9 2019-10-07 09:54:57 2 2 2019-10-07 10:09:57 1 9 2019-10-07 10:09:57 2 3 2019-10-07 10:14:57 1 9 2019-10-07 10:14:57 2 3 2019-10-07 10:19:57 1 9 2019-10-07 10:19:57 2 3 2019-10-07 10:39:57 1 9 2019-10-07 10:39:57 2 3 2019-10-07 11:04:57 1 12 2019-10-07 11:04:57 2 2 2019-10-07 11:09:57 1 12 2019-10-07 11:09:57 2 3 2019-10-07 11:14:57 1 14 2019-10-07 11:14:57 2 2 2019-10-07 11:19:57 1 12 2019-10-07 11:19:57 2 2 2019-10-07 11:24:57 1 11 2019-10-07 11:24:57 2 2 2019-10-07 11:44:57 1 9 2019-10-07 11:44:57 2 2 2019-10-07 12:14:57 1 10 2019-10-07 12:14:57 2 1 2019-10-07 12:34:57 1 13 2019-10-07 12:34:57 2 1 2019-10-07 12:44:57 1 14 2019-10-07 12:44:57 2 1 2019-10-07 12:54:57 1 14 2019-10-07 12:54:57 2 1 2019-10-07 13:14:57 1 12 2019-10-07 13:14:57 2 2 2019-10-07 13:19:57 1 10 2019-10-07 13:19:57 2 2 2019-10-07 13:34:57 1 14 2019-10-07 13:34:57 2 2 2019-10-07 13:39:57 1 9 2019-10-07 13:39:57 2 2 2019-10-07 13:44:57 1 11 2019-10-07 13:44:57 2 3 2019-10-07 14:29:57 1 12 2019-10-07 14:29:57 2 1 2019-10-07 15:14:57 1 11 2019-10-07 15:14:57 2 1 2019-10-07 15:24:57 1 9 2019-10-07 15:24:57 2 1 2019-10-07 15:44:57 1 11 2019-10-07 15:44:57 2 3 2019-10-07 15:49:57 1 10 2019-10-07 15:49:57 2 2 2019-10-07 16:09:57 1 8 2019-10-07 16:09:57 2 2 2019-10-07 16:29:57 1 11 2019-10-07 16:29:57 2 2 2019-10-07 16:39:57 1 11 2019-10-07 16:39:57 2 1 2019-10-07 16:44:57 1 10 2019-10-07 16:44:57 2 1 2019-10-07 16:54:57 1 13 2019-10-07 16:54:57 2 1 2019-10-07 16:59:57 1 12 2019-10-07 16:59:57 2 2 2019-10-07 17:14:57 1 11 2019-10-07 17:14:57 2 3 2019-10-07 17:19:57 1 10 2019-10-07 17:19:57 2 2 2019-10-07 17:29:57 1 11 2019-10-07 17:29:57 2 1 2019-10-07 17:34:57 1 9 2019-10-07 17:34:57 2 1 2019-10-07 17:44:57 1 13 2019-10-07 17:44:57 2 1 2019-10-07 17:49:57 1 12 2019-10-07 17:49:57 2 1 2019-10-07 18:04:57 1 13 2019-10-07 18:04:57 2 1 2019-10-07 18:09:57 1 13 2019-10-07 18:09:57 2 1 2019-10-07 18:19:57 1 12 2019-10-07 18:19:57 2 1 2019-10-07 18:24:57 1 11 2019-10-07 18:24:57 2 1 2019-10-07 18:39:57 1 13 2019-10-07 18:39:57 2 1 2019-10-07 18:49:57 1 13 2019-10-07 18:49:57 2 1 2019-10-07 19:39:57 1 13 2019-10-07 19:39:57 2 1 2019-10-07 19:59:57 1 11 2019-10-07 19:59:57 2 2 2019-10-07 20:14:57 1 12 2019-10-07 20:14:57 2 2 2019-10-07 21:39:57 1 12 2019-10-07 21:39:57 2 1 2019-10-07 21:59:57 1 16 2019-10-07 21:59:57 2 2 2019-10-07 22:19:57 1 16 2019-10-07 22:19:57 2 1 2019-10-07 22:24:57 1 15 2019-10-07 22:24:57 2 2 2019-10-07 22:29:57 1 15 2019-10-07 22:29:57 2 1 2019-10-07 22:34:57 1 14 2019-10-07 22:34:57 2 1 2019-10-07 22:39:57 1 15 2019-10-07 22:39:57 2 1 2019-10-07 22:44:57 1 14 2019-10-07 22:44:57 2 1 2019-10-07 23:19:57 1 11 2019-10-07 23:29:57 1 11 2019-10-07 23:44:57 1 11 2019-10-07 23:49:57 1 8 2019-10-07 23:59:57 1 7 2019-10-07 23:59:57 2 1 2019-10-08 00:29:57 1 10 2019-10-08 00:29:57 2 2 2019-10-08 00:34:57 1 11 2019-10-08 00:34:57 2 1 2019-10-08 00:44:57 1 10 2019-10-08 00:44:57 2 2 2019-10-08 00:49:57 1 10 2019-10-08 00:49:57 2 2 2019-10-08 01:04:57 1 9 2019-10-08 01:04:57 2 2 2019-10-08 01:09:57 1 8 2019-10-08 01:09:57 2 2 2019-10-08 01:14:57 1 9 2019-10-08 01:14:57 2 2 2019-10-08 01:19:57 1 9 2019-10-08 01:19:57 2 2 2019-10-08 01:29:57 1 9 2019-10-08 01:29:57 2 2 2019-10-08 01:39:57 1 9 2019-10-08 01:39:57 2 1 2019-10-08 01:54:57 1 9 2019-10-08 01:54:57 2 1 2019-10-08 02:04:57 1 9 2019-10-08 02:04:57 2 1 2019-10-08 02:29:57 1 9 2019-10-08 02:29:57 2 2 2019-10-08 02:34:57 1 9 2019-10-08 02:34:57 2 2 2019-10-08 02:59:57 1 7 2019-10-08 02:59:57 2 1 2019-10-08 03:04:57 1 7 2019-10-08 03:04:57 2 1 2019-10-08 03:09:57 1 6 2019-10-08 03:09:57 2 1 2019-10-08 03:34:57 1 7 2019-10-08 03:34:57 2 1 2019-10-08 03:54:57 1 5 2019-10-08 03:54:57 2 1 2019-10-08 04:04:57 1 5 2019-10-08 04:04:57 2 1 2019-10-08 04:19:57 1 5 2019-10-08 04:19:57 2 1 2019-10-08 04:34:57 1 5 2019-10-08 04:34:57 2 1 2019-10-08 04:44:57 1 5 2019-10-08 04:44:57 2 1 2019-10-08 04:59:57 1 3 2019-10-08 04:59:57 2 1 2019-10-08 05:39:57 1 4 2019-10-08 05:39:57 2 1 2019-10-08 06:09:57 1 3 2019-10-08 06:09:57 2 1 2019-10-08 06:34:57 1 3 2019-10-08 06:34:57 2 2 2019-10-08 06:44:57 1 2 2019-10-08 06:44:57 2 1 2019-10-08 07:14:57 1 3 2019-10-08 07:14:57 2 1 2019-10-07 08:39:57 1 6 2019-10-07 08:54:57 1 7 2019-10-07 08:54:57 2 1 2019-10-07 08:59:57 1 10 2019-10-07 08:59:57 2 1 2019-10-07 09:14:57 1 7 2019-10-07 09:14:57 2 1 2019-10-07 09:34:57 1 7 2019-10-07 09:34:57 2 3 2019-10-07 10:04:57 1 7 2019-10-07 10:04:57 2 3 2019-10-07 10:24:57 1 9 2019-10-07 10:24:57 2 3 2019-10-07 10:44:57 1 10 2019-10-07 10:44:57 2 3 2019-10-07 10:49:57 1 10 2019-10-07 10:49:57 2 3 2019-10-07 10:54:57 1 12 2019-10-07 10:54:57 2 3 2019-10-07 10:59:57 1 12 2019-10-07 10:59:57 2 2 2019-10-07 11:34:57 1 10 2019-10-07 11:34:57 2 3 2019-10-07 11:39:57 1 10 2019-10-07 11:39:57 2 3 2019-10-07 11:49:57 1 10 2019-10-07 11:49:57 2 1 2019-10-07 12:04:57 1 10 2019-10-07 12:04:57 2 2 2019-10-07 12:09:57 1 10 2019-10-07 12:09:57 2 1 2019-10-07 12:19:57 1 9 2019-10-07 12:19:57 2 1 2019-10-07 12:24:57 1 11 2019-10-07 12:24:57 2 1 2019-10-07 12:29:57 1 10 2019-10-07 12:29:57 2 1 2019-10-07 12:39:57 1 12 2019-10-07 12:39:57 2 1 2019-10-07 12:49:57 1 11 2019-10-07 12:49:57 2 1 2019-10-07 13:24:57 1 11 2019-10-07 13:24:57 2 3 2019-10-07 13:29:57 1 11 2019-10-07 13:29:57 2 2 2019-10-07 13:59:57 1 13 2019-10-07 13:59:57 2 2 2019-10-07 14:04:57 1 13 2019-10-07 14:04:57 2 1 2019-10-07 14:09:57 1 12 2019-10-07 14:09:57 2 1 2019-10-07 14:24:57 1 11 2019-10-07 14:24:57 2 1 2019-10-07 15:29:57 1 10 2019-10-07 15:29:57 2 1 2019-10-07 15:54:57 1 8 2019-10-07 15:54:57 2 2 2019-10-07 15:59:57 1 9 2019-10-07 15:59:57 2 2 2019-10-07 16:04:57 1 8 2019-10-07 16:04:57 2 2 2019-10-07 16:19:57 1 8 2019-10-07 16:19:57 2 2 2019-10-07 16:34:57 1 10 2019-10-07 16:34:57 2 1 2019-10-07 17:54:57 1 13 2019-10-07 17:54:57 2 1 2019-10-07 17:59:57 1 14 2019-10-07 17:59:57 2 1 2019-10-07 18:54:57 1 12 2019-10-07 18:54:57 2 1 2019-10-07 19:09:57 1 11 2019-10-07 19:09:57 2 2 2019-10-07 19:14:57 1 12 2019-10-07 19:14:57 2 2 2019-10-07 19:29:57 1 14 2019-10-07 19:29:57 2 1 2019-10-07 19:49:57 1 13 2019-10-07 19:49:57 2 1 2019-10-07 20:04:57 1 11 2019-10-07 20:04:57 2 2 2019-10-07 20:09:57 1 13 2019-10-07 20:09:57 2 3 2019-10-07 20:19:57 1 11 2019-10-07 20:19:57 2 2 2019-10-07 20:24:57 1 12 2019-10-07 20:24:57 2 1 2019-10-07 20:29:57 1 11 2019-10-07 20:29:57 2 1 2019-10-07 20:34:57 1 14 2019-10-07 20:34:57 2 1 2019-10-07 20:49:57 1 12 2019-10-07 20:49:57 2 3 2019-10-07 20:54:57 1 13 2019-10-07 20:54:57 2 3 2019-10-07 21:04:57 1 10 2019-10-07 21:04:57 2 1 2019-10-07 21:19:57 1 10 2019-10-07 21:19:57 2 1 2019-10-07 21:49:57 1 15 2019-10-07 21:49:57 2 2 2019-10-07 21:54:57 1 17 2019-10-07 21:54:57 2 2 2019-10-07 22:59:57 1 13 2019-10-07 22:59:57 2 1 2019-10-07 23:04:57 1 9 2019-10-07 23:04:57 2 1 2019-10-07 23:24:57 1 10 2019-10-07 23:34:57 1 11 2019-10-08 00:09:57 1 7 2019-10-08 00:09:57 2 1 2019-10-08 00:19:57 1 8 2019-10-08 00:19:57 2 2 2019-10-08 00:24:57 1 8 2019-10-08 00:24:57 2 2 2019-10-08 00:59:57 1 10 2019-10-08 00:59:57 2 2 2019-10-08 01:34:57 1 9 2019-10-08 01:34:57 2 1 2019-10-08 01:44:57 1 9 2019-10-08 01:44:57 2 1 2019-10-08 02:09:58 1 8 2019-10-08 02:09:58 2 1 2019-10-08 02:14:57 1 9 2019-10-08 02:14:57 2 1 2019-10-08 02:44:57 1 8 2019-10-08 02:44:57 2 2 2019-10-08 02:49:57 1 8 2019-10-08 02:49:57 2 2 2019-10-08 03:29:57 1 6 2019-10-08 03:29:57 2 1 2019-10-08 03:49:57 1 5 2019-10-08 03:49:57 2 1 2019-10-08 04:09:57 1 5 2019-10-08 04:09:57 2 1 2019-10-08 04:24:57 1 5 2019-10-08 04:24:57 2 1 2019-10-08 04:39:57 1 5 2019-10-08 04:39:57 2 1 2019-10-08 04:49:57 1 4 2019-10-08 04:49:57 2 1 2019-10-08 04:54:57 1 3 2019-10-08 04:54:57 2 1 2019-10-08 05:09:57 1 4 2019-10-08 05:09:57 2 1 2019-10-08 05:14:57 1 3 2019-10-08 05:14:57 2 1 2019-10-08 05:19:57 1 4 2019-10-08 05:19:57 2 1 2019-10-08 05:49:57 1 5 2019-10-08 05:49:57 2 1 2019-10-08 05:54:57 1 4 2019-10-08 05:54:57 2 1 2019-10-08 06:04:57 1 3 2019-10-08 06:04:57 2 1 2019-10-08 06:14:57 1 3 2019-10-08 06:14:57 2 2 2019-10-08 06:24:57 1 4 2019-10-08 06:24:57 2 3 2019-10-08 06:29:57 1 4 2019-10-08 06:29:57 2 2 2019-10-08 06:49:57 1 2 2019-10-08 06:49:57 2 1 2019-10-08 06:54:57 1 3 2019-10-08 06:54:57 2 1 2019-10-08 07:04:57 1 3 2019-10-08 07:04:57 2 1 2019-10-08 07:19:57 1 4 2019-10-08 07:19:57 2 1 2019-10-08 07:24:57 1 5 2019-10-08 07:24:57 2 1 2019-10-08 07:29:57 1 5 2019-10-08 07:49:57 1 3 2019-10-08 07:54:57 1 3 2019-10-08 08:04:57 1 4 2019-10-08 08:09:57 1 3 2019-10-08 08:14:57 1 3 2019-10-08 08:24:57 1 3 2019-10-08 08:29:57 1 5 2019-10-08 08:34:57 1 6 2019-10-08 08:39:57 1 7 2019-10-08 08:59:57 1 6 2019-10-08 09:09:57 1 6 2019-10-08 09:14:57 1 7 2019-10-08 09:19:57 1 6 2019-10-07 08:49:57 1 8 2019-10-07 08:49:57 2 1 2019-10-07 09:04:57 1 7 2019-10-07 09:04:57 2 1 2019-10-07 09:24:57 1 8 2019-10-07 09:24:57 2 1 2019-10-07 09:44:57 1 10 2019-10-07 09:44:57 2 3 2019-10-07 09:59:57 1 8 2019-10-07 09:59:57 2 3 2019-10-07 10:29:57 1 8 2019-10-07 10:29:57 2 3 2019-10-07 10:34:57 1 9 2019-10-07 10:34:57 2 3 2019-10-07 11:29:57 1 11 2019-10-07 11:29:57 2 2 2019-10-07 11:54:57 1 10 2019-10-07 11:54:57 2 1 2019-10-07 11:59:57 1 10 2019-10-07 11:59:57 2 1 2019-10-07 12:59:57 1 12 2019-10-07 12:59:57 2 1 2019-10-07 13:04:57 1 11 2019-10-07 13:04:57 2 2 2019-10-07 13:09:57 1 12 2019-10-07 13:09:57 2 3 2019-10-07 13:49:57 1 11 2019-10-07 13:49:57 2 3 2019-10-07 13:54:57 1 9 2019-10-07 13:54:57 2 3 2019-10-07 14:14:57 1 12 2019-10-07 14:14:57 2 1 2019-10-07 14:19:57 1 12 2019-10-07 14:19:57 2 1 2019-10-07 14:34:57 1 10 2019-10-07 14:34:57 2 1 2019-10-07 14:39:57 1 10 2019-10-07 14:44:57 1 7 2019-10-07 14:44:57 2 1 2019-10-07 14:49:57 1 7 2019-10-07 14:54:57 1 8 2019-10-07 14:59:57 1 12 2019-10-07 15:04:57 1 10 2019-10-07 15:09:57 1 8 2019-10-07 15:19:57 1 9 2019-10-07 15:19:57 2 1 2019-10-07 15:34:57 1 7 2019-10-07 15:34:57 2 2 2019-10-07 15:39:57 1 9 2019-10-07 15:39:57 2 2 2019-10-07 16:14:57 1 8 2019-10-07 16:14:57 2 2 2019-10-07 16:24:57 1 10 2019-10-07 16:24:57 2 2 2019-10-07 16:49:57 1 12 2019-10-07 16:49:57 2 1 2019-10-07 17:04:57 1 13 2019-10-07 17:04:57 2 2 2019-10-07 17:09:57 1 13 2019-10-07 17:09:57 2 1 2019-10-07 17:24:57 1 11 2019-10-07 17:24:57 2 1 2019-10-07 17:39:57 1 12 2019-10-07 17:39:57 2 1 2019-10-07 18:14:57 1 15 2019-10-07 18:14:57 2 1 2019-10-07 18:29:57 1 12 2019-10-07 18:29:57 2 1 2019-10-07 18:34:57 1 15 2019-10-07 18:34:57 2 2 2019-10-07 18:44:57 1 13 2019-10-07 18:44:57 2 1 2019-10-07 18:59:57 1 12 2019-10-07 18:59:57 2 2 2019-10-07 19:04:57 1 12 2019-10-07 19:04:57 2 2 2019-10-07 19:19:57 1 14 2019-10-07 19:19:57 2 2 2019-10-07 19:24:57 1 14 2019-10-07 19:24:57 2 1 2019-10-07 19:34:57 1 15 2019-10-07 19:34:57 2 1 2019-10-07 19:44:57 1 14 2019-10-07 19:44:57 2 1 2019-10-07 19:54:57 1 12 2019-10-07 19:54:57 2 2 2019-10-07 20:39:57 1 13 2019-10-07 20:39:57 2 2 2019-10-07 20:44:57 1 13 2019-10-07 20:44:57 2 2 2019-10-07 20:59:57 1 12 2019-10-07 20:59:57 2 1 2019-10-07 21:09:57 1 13 2019-10-07 21:09:57 2 1 2019-10-07 21:14:57 1 9 2019-10-07 21:14:57 2 1 2019-10-07 21:24:57 1 10 2019-10-07 21:24:57 2 1 2019-10-07 21:29:57 1 12 2019-10-07 21:29:57 2 1 2019-10-07 21:34:57 1 10 2019-10-07 21:34:57 2 1 2019-10-07 21:44:57 1 13 2019-10-07 21:44:57 2 1 2019-10-07 22:04:57 1 16 2019-10-07 22:04:57 2 2 2019-10-07 22:09:57 1 18 2019-10-07 22:09:57 2 1 2019-10-07 22:14:57 1 15 2019-10-07 22:14:57 2 1 2019-10-07 22:49:57 1 12 2019-10-07 22:54:57 1 12 2019-10-07 23:09:57 1 11 2019-10-07 23:14:57 1 12 2019-10-07 23:39:57 1 10 2019-10-07 23:54:57 1 8 2019-10-08 00:04:57 1 8 2019-10-08 00:04:57 2 1 2019-10-08 00:14:57 1 8 2019-10-08 00:14:57 2 2 2019-10-08 00:39:57 1 10 2019-10-08 00:39:57 2 2 2019-10-08 00:54:57 1 9 2019-10-08 00:54:57 2 2 2019-10-08 01:24:57 1 10 2019-10-08 01:24:57 2 2 2019-10-08 01:49:57 1 10 2019-10-08 01:49:57 2 1 2019-10-08 01:59:57 1 9 2019-10-08 01:59:57 2 1 2019-10-08 02:19:57 1 9 2019-10-08 02:19:57 2 1 2019-10-08 02:24:57 1 9 2019-10-08 02:24:57 2 1 2019-10-08 02:39:57 1 8 2019-10-08 02:39:57 2 2 2019-10-08 02:54:57 1 7 2019-10-08 02:54:57 2 1 2019-10-08 03:14:57 1 6 2019-10-08 03:14:57 2 1 2019-10-08 03:19:57 1 5 2019-10-08 03:19:57 2 1 2019-10-08 03:24:57 1 6 2019-10-08 03:24:57 2 1 2019-10-08 03:39:57 1 6 2019-10-08 03:39:57 2 1 2019-10-08 03:44:57 1 5 2019-10-08 03:44:57 2 1 2019-10-08 03:59:57 1 5 2019-10-08 03:59:57 2 1 2019-10-08 04:14:57 1 5 2019-10-08 04:14:57 2 1 2019-10-08 04:29:57 1 5 2019-10-08 04:29:57 2 1 2019-10-08 05:04:57 1 3 2019-10-08 05:04:57 2 1 2019-10-08 05:24:57 1 4 2019-10-08 05:24:57 2 1 2019-10-08 05:29:57 1 5 2019-10-08 05:29:57 2 1 2019-10-08 05:34:57 1 4 2019-10-08 05:34:57 2 1 2019-10-08 05:44:57 1 4 2019-10-08 05:44:57 2 1 2019-10-08 05:59:57 1 3 2019-10-08 05:59:57 2 1 2019-10-08 06:19:57 1 3 2019-10-08 06:19:57 2 3 2019-10-08 06:39:57 1 4 2019-10-08 06:39:57 2 1 2019-10-08 06:59:57 1 4 2019-10-08 06:59:57 2 1 2019-10-08 07:09:57 1 3 2019-10-08 07:09:57 2 1 2019-10-08 07:34:57 1 4 2019-10-08 07:39:57 1 5 2019-10-08 07:44:57 1 4 2019-10-08 07:59:57 1 3 2019-10-08 08:19:57 1 4 2019-10-08 08:44:57 1 7 2019-10-08 08:49:57 1 7 2019-10-08 08:54:57 1 7 2019-10-08 09:04:57 1 7 2019-10-08 09:24:57 1 7 2019-10-08 09:29:57 1 6 2019-10-08 09:34:57 1 6 2019-10-08 09:34:57 2 1 2019-10-08 09:39:57 1 7 2019-10-08 09:39:57 2 1 2019-10-08 09:49:57 1 7 2019-10-08 09:49:57 2 2 2019-10-08 09:54:57 1 6 2019-10-08 09:54:57 2 1 2019-10-08 10:04:57 1 9 2019-10-08 10:04:57 2 1 2019-10-08 10:29:57 1 9 2019-10-08 10:34:57 1 6 2019-10-08 10:44:57 1 7 2019-10-08 11:14:57 1 11 2019-10-08 11:19:57 1 8 2019-10-08 11:24:57 1 7 2019-10-08 11:39:57 1 8 2019-10-08 11:39:57 2 1 2019-10-08 12:24:57 1 9 2019-10-08 12:34:57 1 11 2019-10-08 12:49:57 1 10 2019-10-08 13:14:57 1 9 2019-10-08 13:14:57 2 1 2019-10-08 13:19:57 1 12 2019-10-08 13:19:57 2 1 2019-10-08 13:34:57 1 11 2019-10-08 13:34:57 2 1 2019-10-08 13:44:57 1 7 2019-10-08 13:44:57 2 1 2019-10-08 13:49:57 1 10 2019-10-08 13:49:57 2 1 2019-10-08 13:54:57 1 9 2019-10-08 13:54:57 2 1 2019-10-08 14:14:57 1 10 2019-10-08 14:14:57 2 1 2019-10-08 15:09:57 1 12 2019-10-08 15:09:57 2 1 2019-10-08 15:34:57 1 9 2019-10-08 15:34:57 2 1 2019-10-08 15:59:57 1 7 2019-10-08 16:04:57 1 8 2019-10-08 16:09:57 1 9 2019-10-08 16:29:57 1 9 2019-10-08 16:29:57 2 2 2019-10-08 16:49:57 1 9 2019-10-08 16:49:57 2 1 2019-10-08 17:14:57 1 10 2019-10-08 17:14:57 2 1 2019-10-08 17:34:57 1 10 2019-10-08 17:39:57 1 8 2019-10-08 17:49:57 1 8 2019-10-08 17:49:57 2 1 2019-10-08 18:14:57 1 12 2019-10-08 18:14:57 2 1 2019-10-08 18:24:57 1 11 2019-10-08 18:24:57 2 3 2019-10-08 18:29:57 1 11 2019-10-08 18:29:57 2 3 2019-10-08 18:39:57 1 10 2019-10-08 18:39:57 2 3 2019-10-08 18:44:57 1 10 2019-10-08 18:44:57 2 3 2019-10-08 20:14:57 1 8 2019-10-08 20:19:57 1 11 2019-10-08 20:19:57 2 1 2019-10-08 20:24:57 1 11 2019-10-08 20:24:57 2 1 2019-10-08 20:34:57 1 11 2019-10-08 20:34:57 2 1 2019-10-08 20:49:57 1 12 2019-10-08 20:54:57 1 11 2019-10-08 20:54:57 2 1 2019-10-08 21:04:57 1 10 2019-10-08 21:14:57 1 7 2019-10-08 21:44:57 1 9 2019-10-08 21:49:57 1 10 2019-10-08 22:19:57 1 12 2019-10-08 22:19:57 2 1 2019-10-08 22:24:57 1 13 2019-10-08 22:24:57 2 1 2019-10-08 22:44:57 1 11 2019-10-08 22:44:57 2 2 2019-10-08 23:04:57 1 8 2019-10-08 23:04:57 2 1 2019-10-08 23:14:57 1 9 2019-10-08 23:14:57 2 1 2019-10-08 23:34:57 1 10 2019-10-08 23:34:57 2 1 2019-10-08 23:59:57 1 11 2019-10-08 23:59:57 2 1 2019-10-09 00:14:57 1 10 2019-10-09 00:14:57 2 2 2019-10-09 00:39:57 1 8 2019-10-09 00:44:57 1 7 2019-10-09 00:59:57 1 7 2019-10-09 01:29:57 1 8 2019-10-09 01:34:57 1 8 2019-10-09 01:44:57 1 8 2019-10-09 01:49:57 1 8 2019-10-09 02:04:57 1 6 2019-10-09 02:19:57 1 6 2019-10-09 02:24:57 1 6 2019-10-09 02:29:57 1 6 2019-10-09 02:39:57 1 5 2019-10-09 02:44:57 1 5 2019-10-09 03:29:57 1 5 2019-10-09 03:29:57 2 1 2019-10-09 03:34:57 1 5 2019-10-09 03:34:57 2 1 2019-10-09 03:39:57 1 5 2019-10-09 03:39:57 2 1 2019-10-09 03:44:57 1 5 2019-10-09 03:44:57 2 1 2019-10-09 03:49:57 1 5 2019-10-09 03:49:57 2 1 2019-10-09 03:54:57 1 5 2019-10-09 03:54:57 2 1 2019-10-09 04:04:57 1 4 2019-10-09 04:04:57 2 2 2019-10-09 04:14:57 1 4 2019-10-09 04:14:57 2 1 2019-10-09 04:19:57 1 4 2019-10-09 05:24:57 1 5 2019-10-09 05:29:57 1 5 2019-10-09 05:34:57 1 5 2019-10-09 05:44:57 1 4 2019-10-09 05:49:57 1 4 2019-10-09 05:54:57 1 4 2019-10-09 05:59:57 1 4 2019-10-09 06:04:57 1 4 2019-10-09 06:24:57 1 4 2019-10-09 06:29:57 1 5 2019-10-09 06:44:57 1 5 2019-10-09 06:49:57 1 4 2019-10-09 06:54:57 1 4 2019-10-09 06:59:57 1 4 2019-10-09 07:04:57 1 4 2019-10-09 07:09:57 1 4 2019-10-09 07:14:57 1 5 2019-10-09 07:19:57 1 6 2019-10-09 07:24:57 1 5 2019-10-09 07:29:57 1 6 2019-10-09 07:39:57 1 7 2019-10-09 07:49:57 1 7 2019-10-09 08:04:57 1 7 2019-10-09 08:09:57 1 8 2019-10-09 08:24:57 1 9 2019-10-09 08:24:57 2 1 2019-10-09 08:39:57 1 7 2019-10-09 08:39:57 2 1 2019-10-09 08:49:57 1 7 2019-10-09 08:49:57 2 1 2019-10-09 08:54:57 1 8 2019-10-09 08:54:57 2 1 2019-10-09 08:59:57 1 8 2019-10-09 08:59:57 2 1 2019-10-09 09:14:57 1 8 2019-10-09 09:14:57 2 1 2019-10-09 09:19:57 1 8 2019-10-09 09:39:57 1 6 2019-10-09 09:39:57 2 1 2019-10-09 09:44:57 1 4 2019-10-09 09:44:57 2 1 2019-10-09 09:49:57 1 7 2019-10-09 09:49:57 2 1 2019-10-09 10:09:57 1 10 2019-10-09 10:09:57 2 1 2019-10-09 10:19:57 1 8 2019-10-09 10:19:57 2 1 2019-10-09 10:24:57 1 9 2019-10-09 10:24:57 2 1 2019-10-09 11:04:57 1 12 2019-10-09 11:24:57 1 11 2019-10-09 11:29:57 1 10 2019-10-09 11:39:57 1 13 2019-10-09 11:49:57 1 12 2019-10-09 12:09:57 1 11 2019-10-09 12:54:57 1 11 2019-10-09 12:54:57 2 1 2019-10-09 13:14:57 1 11 2019-10-09 13:14:57 2 1 2019-10-09 13:49:57 1 10 2019-10-09 13:49:57 2 3 2019-10-09 13:59:57 1 8 2019-10-09 13:59:57 2 2 2019-10-08 09:44:57 1 8 2019-10-08 09:44:57 2 1 2019-10-08 10:09:57 1 9 2019-10-08 10:09:57 2 2 2019-10-08 10:14:57 1 8 2019-10-08 10:14:57 2 2 2019-10-08 10:19:57 1 8 2019-10-08 10:19:57 2 2 2019-10-08 10:24:57 1 9 2019-10-08 10:59:57 1 7 2019-10-08 10:59:57 2 1 2019-10-08 11:04:57 1 6 2019-10-08 11:04:57 2 1 2019-10-08 11:49:57 1 10 2019-10-08 11:49:57 2 1 2019-10-08 11:59:57 1 7 2019-10-08 12:04:57 1 9 2019-10-08 12:14:57 1 7 2019-10-08 12:29:57 1 8 2019-10-08 12:44:57 1 8 2019-10-08 12:44:57 2 1 2019-10-08 12:54:57 1 12 2019-10-08 13:04:57 1 10 2019-10-08 13:04:57 2 1 2019-10-08 13:09:57 1 11 2019-10-08 13:09:57 2 1 2019-10-08 13:29:57 1 12 2019-10-08 13:29:57 2 1 2019-10-08 13:39:57 1 11 2019-10-08 13:39:57 2 1 2019-10-08 14:04:57 1 7 2019-10-08 14:04:57 2 1 2019-10-08 14:19:57 1 10 2019-10-08 14:19:57 2 1 2019-10-08 14:24:57 1 10 2019-10-08 14:24:57 2 1 2019-10-08 14:29:57 1 10 2019-10-08 14:29:57 2 1 2019-10-08 14:34:57 1 11 2019-10-08 14:34:57 2 1 2019-10-08 14:39:57 1 10 2019-10-08 14:39:57 2 2 2019-10-08 15:04:57 1 9 2019-10-08 15:04:57 2 1 2019-10-08 15:14:57 1 12 2019-10-08 15:14:57 2 2 2019-10-08 15:29:57 1 9 2019-10-08 15:29:57 2 2 2019-10-08 16:24:57 1 9 2019-10-08 16:24:57 2 2 2019-10-08 16:34:57 1 10 2019-10-08 16:34:57 2 2 2019-10-08 16:54:57 1 10 2019-10-08 16:54:57 2 1 2019-10-08 17:04:57 1 12 2019-10-08 17:09:57 1 11 2019-10-08 17:09:57 2 1 2019-10-08 17:29:57 1 10 2019-10-08 17:44:57 1 8 2019-10-08 17:44:57 2 1 2019-10-08 17:59:57 1 9 2019-10-08 18:04:57 1 11 2019-10-08 18:54:57 1 9 2019-10-08 18:54:57 2 2 2019-10-08 18:59:57 1 9 2019-10-08 18:59:57 2 1 2019-10-08 19:09:57 1 10 2019-10-08 19:09:57 2 1 2019-10-08 19:19:57 1 14 2019-10-08 19:19:57 2 1 2019-10-08 19:29:57 1 11 2019-10-08 19:29:57 2 2 2019-10-08 19:34:57 1 10 2019-10-08 19:34:57 2 2 2019-10-08 19:39:57 1 9 2019-10-08 19:44:57 1 10 2019-10-08 20:09:57 1 8 2019-10-08 20:29:57 1 13 2019-10-08 20:29:57 2 1 2019-10-08 20:39:57 1 10 2019-10-08 20:39:57 2 1 2019-10-08 20:44:57 1 12 2019-10-08 20:44:57 2 1 2019-10-08 20:59:57 1 11 2019-10-08 20:59:57 2 1 2019-10-08 21:24:57 1 8 2019-10-08 21:34:57 1 7 2019-10-08 21:39:57 1 9 2019-10-08 21:54:57 1 10 2019-10-08 21:54:57 2 1 2019-10-08 22:04:57 1 11 2019-10-08 22:04:57 2 1 2019-10-08 22:09:57 1 11 2019-10-08 22:09:57 2 1 2019-10-08 22:14:57 1 12 2019-10-08 22:14:57 2 1 2019-10-08 22:29:57 1 12 2019-10-08 22:29:57 2 2 2019-10-08 22:39:57 1 10 2019-10-08 22:39:57 2 1 2019-10-08 22:54:57 1 10 2019-10-08 23:09:57 1 8 2019-10-08 23:19:57 1 9 2019-10-08 23:19:57 2 1 2019-10-08 23:24:57 1 8 2019-10-08 23:24:57 2 1 2019-10-08 23:44:57 1 9 2019-10-08 23:44:57 2 1 2019-10-09 00:19:57 1 9 2019-10-09 00:19:57 2 1 2019-10-09 00:24:57 1 8 2019-10-09 00:24:57 2 1 2019-10-09 00:29:57 1 8 2019-10-09 00:34:57 1 9 2019-10-09 00:49:57 1 7 2019-10-09 00:54:57 1 8 2019-10-09 01:04:57 1 7 2019-10-09 01:09:57 1 7 2019-10-09 01:19:57 1 6 2019-10-09 01:54:57 1 9 2019-10-09 01:59:57 1 8 2019-10-09 02:34:57 1 6 2019-10-09 02:54:57 1 6 2019-10-09 02:59:57 1 5 2019-10-09 03:04:57 1 5 2019-10-09 03:09:57 1 5 2019-10-09 03:14:57 1 5 2019-10-09 03:19:57 1 5 2019-10-09 03:24:57 1 5 2019-10-09 04:09:57 1 4 2019-10-09 04:09:57 2 1 2019-10-09 05:39:57 1 6 2019-10-09 06:09:57 1 3 2019-10-09 07:44:57 1 7 2019-10-09 07:54:57 1 6 2019-10-09 07:59:57 1 7 2019-10-09 08:14:57 1 8 2019-10-09 08:19:57 1 7 2019-10-09 08:44:57 1 7 2019-10-09 08:44:57 2 2 2019-10-09 09:29:57 1 6 2019-10-09 09:54:57 1 11 2019-10-09 09:54:57 2 1 2019-10-09 09:59:57 1 8 2019-10-09 09:59:57 2 1 2019-10-09 10:14:57 1 9 2019-10-09 10:14:57 2 1 2019-10-09 10:34:57 1 10 2019-10-09 10:44:57 1 8 2019-10-09 10:49:57 1 8 2019-10-09 10:54:57 1 9 2019-10-09 11:14:57 1 11 2019-10-09 11:44:57 1 11 2019-10-09 12:24:57 1 14 2019-10-09 12:49:57 1 12 2019-10-09 12:59:57 1 11 2019-10-09 12:59:57 2 1 2019-10-09 13:09:57 1 11 2019-10-09 13:09:57 2 1 2019-10-09 13:19:57 1 11 2019-10-09 13:19:57 2 1 2019-10-09 13:29:57 1 11 2019-10-09 13:39:57 1 10 2019-10-09 14:09:57 1 10 2019-10-09 14:09:57 2 2 2019-10-09 14:14:57 1 11 2019-10-09 14:14:57 2 1 2019-10-09 14:24:57 1 13 2019-10-09 14:24:57 2 1 2019-10-09 14:29:57 1 13 2019-10-09 14:29:57 2 1 2019-10-09 14:39:57 1 12 2019-10-09 14:39:57 2 1 2019-10-09 14:44:57 1 12 2019-10-09 14:44:57 2 1 2019-10-09 14:54:57 1 13 2019-10-09 14:54:57 2 2 2019-10-09 14:59:57 1 15 2019-10-09 14:59:57 2 2 2019-10-09 15:04:57 1 14 2019-10-09 15:04:57 2 3 2019-10-09 15:09:57 1 13 2019-10-09 15:09:57 2 2 2019-10-09 15:19:57 1 14 2019-10-09 15:19:57 2 2 2019-10-08 09:59:57 1 6 2019-10-08 09:59:57 2 1 2019-10-08 10:39:57 1 6 2019-10-08 10:49:57 1 7 2019-10-08 10:49:57 2 1 2019-10-08 10:54:57 1 6 2019-10-08 10:54:57 2 1 2019-10-08 11:09:57 1 7 2019-10-08 11:09:57 2 1 2019-10-08 11:29:57 1 8 2019-10-08 11:34:57 1 7 2019-10-08 11:34:57 2 1 2019-10-08 11:44:57 1 8 2019-10-08 11:44:57 2 1 2019-10-08 11:54:57 1 10 2019-10-08 12:09:57 1 8 2019-10-08 12:19:57 1 7 2019-10-08 12:39:57 1 7 2019-10-08 12:59:57 1 13 2019-10-08 12:59:57 2 1 2019-10-08 13:24:57 1 10 2019-10-08 13:24:57 2 1 2019-10-08 13:59:57 1 9 2019-10-08 13:59:57 2 1 2019-10-08 14:09:57 1 8 2019-10-08 14:09:57 2 1 2019-10-08 14:44:57 1 12 2019-10-08 14:44:57 2 2 2019-10-08 14:49:57 1 11 2019-10-08 14:49:57 2 1 2019-10-08 14:54:57 1 10 2019-10-08 14:54:57 2 1 2019-10-08 14:59:57 1 10 2019-10-08 14:59:57 2 1 2019-10-08 15:19:57 1 9 2019-10-08 15:19:57 2 2 2019-10-08 15:24:57 1 10 2019-10-08 15:24:57 2 2 2019-10-08 15:39:57 1 9 2019-10-08 15:39:57 2 1 2019-10-08 15:44:57 1 9 2019-10-08 15:44:57 2 1 2019-10-08 15:49:57 1 10 2019-10-08 15:54:57 1 9 2019-10-08 16:14:57 1 10 2019-10-08 16:19:57 1 9 2019-10-08 16:19:57 2 1 2019-10-08 16:39:57 1 11 2019-10-08 16:39:57 2 1 2019-10-08 16:44:57 1 7 2019-10-08 16:44:57 2 1 2019-10-08 16:59:57 1 11 2019-10-08 17:19:57 1 11 2019-10-08 17:19:57 2 1 2019-10-08 17:24:57 1 12 2019-10-08 17:54:57 1 8 2019-10-08 18:09:57 1 11 2019-10-08 18:19:57 1 11 2019-10-08 18:19:57 2 2 2019-10-08 18:34:57 1 9 2019-10-08 18:34:57 2 2 2019-10-08 18:49:57 1 9 2019-10-08 18:49:57 2 3 2019-10-08 19:04:57 1 10 2019-10-08 19:04:57 2 1 2019-10-08 19:14:57 1 12 2019-10-08 19:14:57 2 1 2019-10-08 19:24:57 1 13 2019-10-08 19:24:57 2 2 2019-10-08 19:49:57 1 10 2019-10-08 19:54:57 1 10 2019-10-08 19:59:57 1 9 2019-10-08 20:04:57 1 8 2019-10-08 21:09:57 1 10 2019-10-08 21:19:57 1 9 2019-10-08 21:29:57 1 8 2019-10-08 21:59:57 1 10 2019-10-08 21:59:57 2 1 2019-10-08 22:34:57 1 9 2019-10-08 22:34:57 2 1 2019-10-08 22:49:57 1 11 2019-10-08 22:49:57 2 1 2019-10-08 22:59:57 1 9 2019-10-08 23:29:57 1 8 2019-10-08 23:29:57 2 2 2019-10-08 23:39:57 1 9 2019-10-08 23:39:57 2 1 2019-10-08 23:49:57 1 11 2019-10-08 23:49:57 2 1 2019-10-08 23:54:57 1 10 2019-10-08 23:54:57 2 1 2019-10-09 00:04:57 1 11 2019-10-09 00:04:57 2 1 2019-10-09 00:09:57 1 9 2019-10-09 00:09:57 2 2 2019-10-09 01:14:57 1 7 2019-10-09 01:24:57 1 8 2019-10-09 01:39:57 1 7 2019-10-09 02:09:57 1 5 2019-10-09 02:14:57 1 6 2019-10-09 02:49:57 1 5 2019-10-09 03:59:57 1 4 2019-10-09 03:59:57 2 2 2019-10-09 04:24:57 1 4 2019-10-09 04:29:57 1 4 2019-10-09 04:34:57 1 4 2019-10-09 04:39:57 1 4 2019-10-09 04:44:57 1 4 2019-10-09 04:49:57 1 4 2019-10-09 04:54:57 1 4 2019-10-09 04:59:57 1 4 2019-10-09 05:04:57 1 4 2019-10-09 05:09:57 1 4 2019-10-09 05:14:57 1 4 2019-10-09 05:19:57 1 4 2019-10-09 06:14:57 1 4 2019-10-09 06:19:57 1 4 2019-10-09 06:34:57 1 5 2019-10-09 06:39:57 1 5 2019-10-09 07:34:57 1 8 2019-10-09 08:29:57 1 9 2019-10-09 08:29:57 2 1 2019-10-09 08:34:57 1 9 2019-10-09 08:34:57 2 1 2019-10-09 09:04:57 1 9 2019-10-09 09:04:57 2 2 2019-10-09 09:09:57 1 7 2019-10-09 09:09:57 2 1 2019-10-09 09:24:57 1 8 2019-10-09 09:34:57 1 7 2019-10-09 10:04:57 1 8 2019-10-09 10:04:57 2 1 2019-10-09 10:29:57 1 9 2019-10-09 10:29:57 2 1 2019-10-09 10:39:57 1 9 2019-10-09 10:59:57 1 11 2019-10-09 11:09:57 1 12 2019-10-09 11:19:57 1 10 2019-10-09 11:34:57 1 11 2019-10-09 11:54:57 1 12 2019-10-09 11:59:57 1 11 2019-10-09 12:04:57 1 11 2019-10-09 12:14:57 1 13 2019-10-09 12:19:57 1 12 2019-10-09 12:29:57 1 13 2019-10-09 12:34:57 1 13 2019-10-09 12:39:57 1 11 2019-10-09 12:44:57 1 12 2019-10-09 12:44:57 2 1 2019-10-09 13:04:57 1 11 2019-10-09 13:04:57 2 1 2019-10-09 13:24:57 1 10 2019-10-09 13:24:57 2 1 2019-10-09 13:34:57 1 10 2019-10-09 13:44:57 1 11 2019-10-09 13:44:57 2 2 2019-10-09 13:54:57 1 10 2019-10-09 13:54:57 2 2 2019-10-09 14:04:57 1 11 2019-10-09 14:04:57 2 2 2019-10-09 14:19:57 1 12 2019-10-09 14:34:57 1 14 2019-10-09 14:34:57 2 1 2019-10-09 14:49:57 1 13 2019-10-09 14:49:57 2 2 2019-10-09 15:14:57 1 15 2019-10-09 15:14:57 2 2 2019-10-09 15:24:57 1 12 2019-10-09 15:24:57 2 2 2019-10-09 15:29:57 1 11 2019-10-09 15:29:57 2 2 2019-10-09 15:34:57 1 10 2019-10-09 15:34:57 2 2 2019-10-09 15:39:57 1 10 2019-10-09 15:39:57 2 2 2019-10-09 15:44:57 1 12 2019-10-09 15:44:57 2 2 2019-10-09 15:49:57 1 9 2019-10-09 15:49:57 2 3 2019-10-09 15:54:57 1 9 2019-10-09 15:54:57 2 2 2019-10-09 15:59:57 1 9 2019-10-09 15:59:57 2 3 2019-10-09 16:04:57 1 8 2019-10-09 16:04:57 2 3 2019-10-09 16:09:57 1 8 2019-10-09 16:09:57 2 2 2019-10-09 16:34:57 1 9 2019-10-09 16:34:57 2 2 2019-10-09 16:39:57 1 10 2019-10-09 16:39:57 2 1 2019-10-09 16:59:57 1 11 2019-10-09 16:59:57 2 2 2019-10-09 17:04:57 1 9 2019-10-09 17:04:57 2 2 2019-10-09 17:09:57 1 10 2019-10-09 17:09:57 2 2 2019-10-09 17:14:57 1 10 2019-10-09 17:14:57 2 2 2019-10-09 17:24:57 1 9 2019-10-09 17:24:57 2 2 2019-10-09 17:44:57 1 10 2019-10-09 17:44:57 2 3 2019-10-09 17:49:57 1 10 2019-10-09 17:49:57 2 2 2019-10-09 18:34:57 1 12 2019-10-09 18:34:57 2 4 2019-10-09 18:44:57 1 12 2019-10-09 18:44:57 2 3 2019-10-09 19:09:57 1 12 2019-10-09 19:09:57 2 2 2019-10-09 19:19:57 1 10 2019-10-09 20:04:57 1 8 2019-10-09 20:04:57 2 1 2019-10-09 20:44:57 1 9 2019-10-09 20:59:57 1 9 2019-10-09 21:04:57 1 9 2019-10-09 21:29:57 1 14 2019-10-09 21:29:57 2 1 2019-10-09 21:34:57 1 14 2019-10-09 21:49:57 1 10 2019-10-09 21:54:57 1 12 2019-10-09 21:54:57 2 2 2019-10-09 22:04:57 1 13 2019-10-09 22:04:57 2 1 2019-10-09 22:14:57 1 13 2019-10-09 22:14:57 2 1 2019-10-09 22:34:57 1 13 2019-10-09 22:39:57 1 14 2019-10-09 22:54:57 1 14 2019-10-09 22:59:57 1 13 2019-10-09 23:04:57 1 15 2019-10-09 23:14:57 1 12 2019-10-09 23:19:57 1 12 2019-10-09 23:24:57 1 11 2019-10-09 23:29:57 1 10 2019-10-09 23:29:57 2 1 2019-10-09 23:59:57 1 9 2019-10-09 23:59:57 2 2 2019-10-10 00:19:57 1 5 2019-10-10 00:19:57 2 1 2019-10-10 00:34:57 1 5 2019-10-10 00:39:57 1 6 2019-10-10 00:44:57 1 7 2019-10-10 00:54:57 1 7 2019-10-10 00:54:57 2 1 2019-10-10 01:29:57 1 6 2019-10-10 01:39:57 1 6 2019-10-10 01:44:57 1 6 2019-10-10 01:49:57 1 6 2019-10-10 01:54:57 1 6 2019-10-10 02:09:57 1 7 2019-10-10 02:29:57 1 7 2019-10-10 02:39:57 1 7 2019-10-10 02:44:57 1 7 2019-10-10 02:59:57 1 7 2019-10-10 03:04:57 1 7 2019-10-10 03:14:57 1 7 2019-10-10 03:19:57 1 7 2019-10-10 03:29:57 1 7 2019-10-10 03:34:57 1 7 2019-10-10 03:49:57 1 7 2019-10-10 03:54:57 1 8 2019-10-10 03:59:57 1 7 2019-10-10 04:04:57 1 7 2019-10-10 04:14:57 1 6 2019-10-10 04:19:57 1 6 2019-10-10 04:24:57 1 6 2019-10-10 04:29:57 1 6 2019-10-10 04:59:57 1 6 2019-10-10 05:04:57 1 6 2019-10-10 05:09:57 1 6 2019-10-10 05:19:57 1 7 2019-10-10 05:34:57 1 7 2019-10-10 05:34:57 2 1 2019-10-10 06:09:57 1 9 2019-10-10 06:09:57 2 1 2019-10-10 06:19:57 1 7 2019-10-10 06:49:57 1 7 2019-10-10 07:04:57 1 8 2019-10-10 07:34:57 1 10 2019-10-10 07:44:57 1 9 2019-10-10 07:49:57 1 10 2019-10-10 07:54:57 1 10 2019-10-10 08:04:57 1 10 2019-10-10 08:54:57 1 7 2019-10-10 09:04:57 1 6 2019-10-10 09:14:57 1 5 2019-10-10 09:19:57 1 6 2019-10-10 09:24:57 1 8 2019-10-10 09:39:57 1 8 2019-10-10 09:39:57 2 1 2019-10-10 09:59:57 1 8 2019-10-10 09:59:57 2 1 2019-10-10 10:09:57 1 10 2019-10-10 10:24:57 1 12 2019-10-10 10:39:57 1 10 2019-10-10 10:44:57 1 11 2019-10-10 11:09:57 1 10 2019-10-10 11:09:57 2 1 2019-10-10 11:24:57 1 9 2019-10-10 11:24:57 2 1 2019-10-10 11:34:57 1 9 2019-10-10 11:34:57 2 2 2019-10-10 11:39:57 1 10 2019-10-10 11:39:57 2 1 2019-10-10 11:49:57 1 15 2019-10-10 11:49:57 2 1 2019-10-10 11:54:57 1 13 2019-10-10 11:54:57 2 1 2019-10-10 12:04:57 1 12 2019-10-10 12:04:57 2 2 2019-10-10 12:09:57 1 11 2019-10-10 12:09:57 2 3 2019-10-10 12:19:57 1 10 2019-10-10 12:19:57 2 3 2019-10-10 12:34:57 1 10 2019-10-10 12:34:57 2 2 2019-10-10 12:49:57 1 13 2019-10-10 13:09:57 1 10 2019-10-10 13:34:57 1 9 2019-10-10 13:34:57 2 2 2019-10-10 13:59:57 1 9 2019-10-10 13:59:57 2 2 2019-10-10 14:04:57 1 9 2019-10-10 14:04:57 2 2 2019-10-10 14:59:57 1 11 2019-10-10 14:59:57 2 3 2019-10-10 15:04:57 1 10 2019-10-10 15:04:57 2 2 2019-10-10 15:09:57 1 10 2019-10-10 15:09:57 2 2 2019-10-10 15:14:57 1 9 2019-10-10 15:14:57 2 3 2019-10-10 15:19:57 1 8 2019-10-10 15:19:57 2 3 2019-10-10 15:24:57 1 6 2019-10-10 15:24:57 2 3 2019-10-10 15:44:57 1 9 2019-10-10 15:44:57 2 4 2019-10-10 15:49:57 1 7 2019-10-10 15:49:57 2 2 2019-10-10 16:19:57 1 11 2019-10-10 16:19:57 2 2 2019-10-10 17:04:57 1 8 2019-10-10 17:04:57 2 3 2019-10-10 17:19:57 1 7 2019-10-10 17:19:57 2 2 2019-10-10 17:29:57 1 8 2019-10-10 17:29:57 2 2 2019-10-10 17:59:57 1 8 2019-10-10 17:59:57 2 2 2019-10-10 18:09:57 1 7 2019-10-10 18:09:57 2 2 2019-10-10 18:14:57 1 6 2019-10-10 18:14:57 2 2 2019-10-10 18:24:57 1 6 2019-10-10 18:24:57 2 2 2019-10-10 18:29:57 1 9 2019-10-10 18:29:57 2 2 2019-10-10 18:34:57 1 8 2019-10-10 18:34:57 2 3 2019-10-10 18:59:57 1 6 2019-10-10 18:59:57 2 1 2019-10-10 19:14:57 1 8 2019-10-10 19:14:57 2 1 2019-10-10 19:44:57 1 9 2019-10-10 19:44:57 2 1 2019-10-10 20:19:57 1 8 2019-10-10 20:19:57 2 2 2019-10-09 16:14:57 1 8 2019-10-09 16:14:57 2 2 2019-10-09 16:24:57 1 10 2019-10-09 16:24:57 2 1 2019-10-09 16:29:57 1 8 2019-10-09 16:29:57 2 2 2019-10-09 16:44:57 1 10 2019-10-09 16:44:57 2 1 2019-10-09 16:49:57 1 10 2019-10-09 16:49:57 2 1 2019-10-09 17:19:57 1 9 2019-10-09 17:19:57 2 2 2019-10-09 17:29:57 1 8 2019-10-09 17:29:57 2 2 2019-10-09 17:34:57 1 8 2019-10-09 17:34:57 2 2 2019-10-09 17:39:57 1 10 2019-10-09 17:39:57 2 3 2019-10-09 17:54:57 1 10 2019-10-09 17:54:57 2 2 2019-10-09 18:19:57 1 9 2019-10-09 18:19:57 2 4 2019-10-09 18:24:57 1 12 2019-10-09 18:24:57 2 4 2019-10-09 18:29:57 1 12 2019-10-09 18:29:57 2 4 2019-10-09 18:49:57 1 12 2019-10-09 18:49:57 2 3 2019-10-09 18:59:57 1 13 2019-10-09 18:59:57 2 4 2019-10-09 19:04:57 1 14 2019-10-09 19:04:57 2 3 2019-10-09 19:39:57 1 8 2019-10-09 19:44:57 1 9 2019-10-09 20:09:57 1 8 2019-10-09 20:09:57 2 1 2019-10-09 20:19:57 1 9 2019-10-09 20:19:57 2 1 2019-10-09 20:24:57 1 9 2019-10-09 20:29:57 1 8 2019-10-09 20:34:57 1 7 2019-10-09 21:39:57 1 11 2019-10-09 21:44:57 1 11 2019-10-09 21:59:57 1 11 2019-10-09 21:59:57 2 2 2019-10-09 22:44:57 1 13 2019-10-09 23:09:57 1 14 2019-10-09 23:09:57 2 2 2019-10-09 23:34:57 1 12 2019-10-09 23:34:57 2 1 2019-10-09 23:49:57 1 9 2019-10-09 23:49:57 2 2 2019-10-10 00:04:57 1 7 2019-10-10 00:04:57 2 2 2019-10-10 00:09:57 1 6 2019-10-10 00:09:57 2 1 2019-10-10 00:14:57 1 6 2019-10-10 00:14:57 2 1 2019-10-10 00:49:57 1 7 2019-10-10 01:04:57 1 6 2019-10-10 01:34:57 1 6 2019-10-10 01:59:57 1 6 2019-10-10 02:04:57 1 6 2019-10-10 02:14:57 1 7 2019-10-10 02:24:57 1 7 2019-10-10 02:24:57 2 1 2019-10-10 02:34:57 1 7 2019-10-10 02:49:57 1 7 2019-10-10 03:24:57 1 7 2019-10-10 03:39:57 1 7 2019-10-10 04:09:57 1 7 2019-10-10 04:34:57 1 6 2019-10-10 05:14:57 1 6 2019-10-10 05:29:57 1 6 2019-10-10 05:29:57 2 1 2019-10-10 05:49:57 1 7 2019-10-10 05:49:57 2 1 2019-10-10 05:59:57 1 7 2019-10-10 05:59:57 2 1 2019-10-10 06:04:57 1 8 2019-10-10 06:04:57 2 1 2019-10-10 06:14:57 1 7 2019-10-10 06:14:57 2 1 2019-10-10 06:34:57 1 7 2019-10-10 06:44:57 1 6 2019-10-10 06:54:57 1 7 2019-10-10 06:59:57 1 7 2019-10-10 07:09:57 1 8 2019-10-10 07:24:57 1 9 2019-10-10 07:39:57 1 10 2019-10-10 07:59:57 1 9 2019-10-10 08:09:57 1 10 2019-10-10 08:19:57 1 8 2019-10-10 08:34:57 1 8 2019-10-10 08:39:57 1 8 2019-10-10 08:44:57 1 9 2019-10-10 08:59:57 1 5 2019-10-10 09:34:57 1 9 2019-10-10 09:44:57 1 8 2019-10-10 09:44:57 2 1 2019-10-10 09:54:57 1 7 2019-10-10 09:54:57 2 1 2019-10-10 10:04:57 1 8 2019-10-10 10:14:57 1 10 2019-10-10 10:19:57 1 9 2019-10-10 10:49:57 1 11 2019-10-10 10:54:57 1 10 2019-10-10 10:59:57 1 10 2019-10-10 11:29:57 1 10 2019-10-10 11:29:57 2 2 2019-10-10 12:24:57 1 11 2019-10-10 12:24:57 2 3 2019-10-10 12:54:57 1 12 2019-10-10 12:59:57 1 11 2019-10-10 13:04:57 1 13 2019-10-10 13:19:57 1 10 2019-10-10 13:19:57 2 1 2019-10-10 13:39:57 1 10 2019-10-10 13:39:57 2 2 2019-10-10 13:49:57 1 9 2019-10-10 13:49:57 2 2 2019-10-10 14:14:57 1 9 2019-10-10 14:14:57 2 2 2019-10-10 14:19:57 1 9 2019-10-10 14:19:57 2 3 2019-10-10 14:34:57 1 12 2019-10-10 14:34:57 2 4 2019-10-10 14:39:57 1 12 2019-10-10 14:39:57 2 3 2019-10-10 14:49:57 1 12 2019-10-10 14:49:57 2 3 2019-10-10 14:54:57 1 13 2019-10-10 14:54:57 2 3 2019-10-10 15:59:57 1 8 2019-10-10 15:59:57 2 2 2019-10-10 16:09:57 1 9 2019-10-10 16:09:57 2 3 2019-10-10 16:24:57 1 9 2019-10-10 16:24:57 2 2 2019-10-10 16:29:57 1 7 2019-10-10 16:29:57 2 1 2019-10-10 16:54:57 1 7 2019-10-10 16:54:57 2 2 2019-10-10 17:09:57 1 7 2019-10-10 17:09:57 2 2 2019-10-10 17:14:57 1 6 2019-10-10 17:14:57 2 2 2019-10-10 17:44:57 1 8 2019-10-10 17:44:57 2 2 2019-10-10 17:49:57 1 9 2019-10-10 17:49:57 2 2 2019-10-10 18:04:57 1 9 2019-10-10 18:04:57 2 2 2019-10-10 18:39:57 1 7 2019-10-10 18:39:57 2 3 2019-10-10 18:49:57 1 8 2019-10-10 18:49:57 2 3 2019-10-10 19:04:57 1 8 2019-10-10 19:04:57 2 1 2019-10-10 19:09:57 1 8 2019-10-10 19:09:57 2 1 2019-10-10 19:34:57 1 9 2019-10-10 19:34:57 2 1 2019-10-10 19:54:57 1 9 2019-10-10 19:54:57 2 2 2019-10-10 19:59:57 1 7 2019-10-10 19:59:57 2 2 2019-10-10 20:04:57 1 8 2019-10-10 20:04:57 2 2 2019-10-10 20:29:57 1 9 2019-10-10 20:29:57 2 3 2019-10-10 20:34:57 1 9 2019-10-10 20:34:57 2 3 2019-10-10 20:39:57 1 10 2019-10-10 20:39:57 2 4 2019-10-10 20:44:57 1 10 2019-10-10 20:44:57 2 4 2019-10-10 20:49:57 1 11 2019-10-10 20:49:57 2 5 2019-10-10 20:54:57 1 13 2019-10-10 20:54:57 2 4 2019-10-10 21:04:57 1 11 2019-10-10 21:04:57 2 4 2019-10-10 21:09:57 1 11 2019-10-10 21:09:57 2 4 2019-10-09 16:19:57 1 10 2019-10-09 16:19:57 2 1 2019-10-09 16:54:57 1 8 2019-10-09 16:54:57 2 2 2019-10-09 17:59:57 1 11 2019-10-09 17:59:57 2 4 2019-10-09 18:04:57 1 10 2019-10-09 18:04:57 2 3 2019-10-09 18:09:57 1 9 2019-10-09 18:09:57 2 3 2019-10-09 18:14:57 1 8 2019-10-09 18:14:57 2 3 2019-10-09 18:39:57 1 12 2019-10-09 18:39:57 2 4 2019-10-09 18:54:57 1 13 2019-10-09 18:54:57 2 4 2019-10-09 19:14:57 1 9 2019-10-09 19:14:57 2 1 2019-10-09 19:24:57 1 9 2019-10-09 19:29:57 1 10 2019-10-09 19:34:57 1 11 2019-10-09 19:49:57 1 9 2019-10-09 19:54:57 1 9 2019-10-09 19:54:57 2 1 2019-10-09 19:59:57 1 8 2019-10-09 19:59:57 2 1 2019-10-09 20:14:57 1 8 2019-10-09 20:14:57 2 1 2019-10-09 20:39:57 1 7 2019-10-09 20:49:57 1 10 2019-10-09 20:54:57 1 9 2019-10-09 21:09:57 1 10 2019-10-09 21:09:57 2 2 2019-10-09 21:14:57 1 12 2019-10-09 21:14:57 2 3 2019-10-09 21:19:57 1 12 2019-10-09 21:19:57 2 4 2019-10-09 21:24:57 1 11 2019-10-09 21:24:57 2 2 2019-10-09 22:09:57 1 12 2019-10-09 22:09:57 2 1 2019-10-09 22:19:57 1 15 2019-10-09 22:24:57 1 15 2019-10-09 22:29:57 1 13 2019-10-09 22:49:57 1 12 2019-10-09 23:39:57 1 11 2019-10-09 23:39:57 2 1 2019-10-09 23:44:57 1 10 2019-10-09 23:44:57 2 1 2019-10-09 23:54:57 1 10 2019-10-09 23:54:57 2 2 2019-10-10 00:24:57 1 5 2019-10-10 00:29:57 1 5 2019-10-10 00:59:57 1 6 2019-10-10 00:59:57 2 1 2019-10-10 01:09:57 1 6 2019-10-10 01:14:57 1 6 2019-10-10 01:19:57 1 6 2019-10-10 01:24:57 1 6 2019-10-10 02:19:57 1 7 2019-10-10 02:19:57 2 1 2019-10-10 02:54:57 1 7 2019-10-10 03:09:57 1 7 2019-10-10 03:44:57 1 7 2019-10-10 04:39:57 1 6 2019-10-10 04:44:57 1 6 2019-10-10 04:49:57 1 6 2019-10-10 04:54:57 1 6 2019-10-10 05:24:57 1 7 2019-10-10 05:24:57 2 1 2019-10-10 05:39:57 1 6 2019-10-10 05:39:57 2 1 2019-10-10 05:44:57 1 6 2019-10-10 05:44:57 2 1 2019-10-10 05:54:57 1 7 2019-10-10 05:54:57 2 1 2019-10-10 06:24:57 1 6 2019-10-10 06:29:57 1 6 2019-10-10 06:39:57 1 7 2019-10-10 07:14:57 1 8 2019-10-10 07:19:57 1 7 2019-10-10 07:29:57 1 7 2019-10-10 08:14:57 1 8 2019-10-10 08:24:57 1 8 2019-10-10 08:29:57 1 7 2019-10-10 08:49:57 1 7 2019-10-10 09:09:57 1 5 2019-10-10 09:29:57 1 9 2019-10-10 09:49:57 1 8 2019-10-10 09:49:57 2 1 2019-10-10 10:29:57 1 12 2019-10-10 10:34:57 1 9 2019-10-10 11:04:58 1 10 2019-10-10 11:14:57 1 9 2019-10-10 11:14:57 2 1 2019-10-10 11:19:57 1 10 2019-10-10 11:19:57 2 1 2019-10-10 11:44:57 1 13 2019-10-10 11:44:57 2 1 2019-10-10 11:59:57 1 12 2019-10-10 11:59:57 2 2 2019-10-10 12:14:57 1 12 2019-10-10 12:14:57 2 4 2019-10-10 12:29:57 1 11 2019-10-10 12:29:57 2 2 2019-10-10 12:39:57 1 11 2019-10-10 12:44:57 1 11 2019-10-10 13:14:57 1 14 2019-10-10 13:24:57 1 12 2019-10-10 13:24:57 2 2 2019-10-10 13:29:57 1 9 2019-10-10 13:29:57 2 2 2019-10-10 13:44:57 1 10 2019-10-10 13:44:57 2 2 2019-10-10 13:54:57 1 9 2019-10-10 13:54:57 2 2 2019-10-10 14:09:57 1 9 2019-10-10 14:09:57 2 2 2019-10-10 14:24:57 1 12 2019-10-10 14:24:57 2 3 2019-10-10 14:29:59 1 13 2019-10-10 14:29:59 2 3 2019-10-10 14:44:57 1 12 2019-10-10 14:44:57 2 3 2019-10-10 15:29:57 1 8 2019-10-10 15:29:57 2 2 2019-10-10 15:34:57 1 8 2019-10-10 15:34:57 2 1 2019-10-10 15:39:57 1 8 2019-10-10 15:39:57 2 2 2019-10-10 15:54:57 1 5 2019-10-10 15:54:57 2 2 2019-10-10 16:04:57 1 7 2019-10-10 16:04:57 2 2 2019-10-10 16:14:57 1 10 2019-10-10 16:14:57 2 2 2019-10-10 16:34:57 1 7 2019-10-10 16:34:57 2 1 2019-10-10 16:39:57 1 7 2019-10-10 16:39:57 2 2 2019-10-10 16:44:57 1 6 2019-10-10 16:44:57 2 2 2019-10-10 16:49:57 1 7 2019-10-10 16:49:57 2 2 2019-10-10 16:59:57 1 8 2019-10-10 16:59:57 2 2 2019-10-10 17:24:57 1 7 2019-10-10 17:24:57 2 2 2019-10-10 17:34:57 1 9 2019-10-10 17:34:57 2 2 2019-10-10 17:39:57 1 9 2019-10-10 17:39:57 2 2 2019-10-10 17:54:57 1 8 2019-10-10 17:54:57 2 2 2019-10-10 18:19:57 1 6 2019-10-10 18:19:57 2 2 2019-10-10 18:44:57 1 8 2019-10-10 18:44:57 2 3 2019-10-10 18:54:57 1 6 2019-10-10 18:54:57 2 2 2019-10-10 19:19:57 1 9 2019-10-10 19:19:57 2 1 2019-10-10 19:24:57 1 9 2019-10-10 19:24:57 2 1 2019-10-10 19:29:57 1 8 2019-10-10 19:29:57 2 1 2019-10-10 19:39:57 1 10 2019-10-10 19:39:57 2 1 2019-10-10 19:49:57 1 8 2019-10-10 19:49:57 2 1 2019-10-10 20:09:57 1 8 2019-10-10 20:09:57 2 2 2019-10-10 20:14:57 1 7 2019-10-10 20:14:57 2 2 2019-10-10 20:24:57 1 10 2019-10-10 20:24:57 2 2 2019-10-10 20:59:57 1 12 2019-10-10 20:59:57 2 4 2019-10-10 21:14:57 1 11 2019-10-10 21:14:57 2 4 2019-10-10 21:19:57 1 11 2019-10-10 21:19:57 2 4 2019-10-10 21:24:57 1 11 2019-10-10 21:24:57 2 4 2019-10-10 21:29:57 1 13 2019-10-10 21:29:57 2 4 2019-10-10 21:44:57 1 13 2019-10-10 21:44:57 2 2 2019-10-10 21:49:57 1 11 2019-10-10 21:49:57 2 2 2019-10-10 22:04:57 1 11 2019-10-10 22:04:57 2 2 2019-10-10 22:24:57 1 12 2019-10-10 22:24:57 2 2 2019-10-10 22:29:57 1 12 2019-10-10 22:29:57 2 2 2019-10-10 22:39:57 1 12 2019-10-10 22:39:57 2 2 2019-10-10 23:09:57 1 11 2019-10-10 23:09:57 2 1 2019-10-10 23:14:57 1 9 2019-10-10 23:14:57 2 1 2019-10-10 23:29:57 1 7 2019-10-10 23:29:57 2 1 2019-10-10 23:34:57 1 9 2019-10-10 23:34:57 2 1 2019-10-11 00:14:57 1 10 2019-10-11 00:34:57 1 7 2019-10-11 00:39:57 1 8 2019-10-11 00:54:57 1 10 2019-10-11 01:04:57 1 8 2019-10-11 01:09:57 1 7 2019-10-11 01:14:57 1 6 2019-10-11 01:29:57 1 10 2019-10-11 01:59:57 1 10 2019-10-11 01:59:57 2 1 2019-10-11 02:09:57 1 8 2019-10-11 02:14:57 1 7 2019-10-11 02:44:57 1 6 2019-10-11 02:49:57 1 6 2019-10-11 02:54:57 1 6 2019-10-11 02:59:57 1 6 2019-10-11 03:09:57 1 6 2019-10-11 03:14:57 1 6 2019-10-11 03:19:57 1 6 2019-10-11 03:24:57 1 6 2019-10-11 04:04:57 1 7 2019-10-11 04:09:57 1 7 2019-10-11 04:14:57 1 7 2019-10-11 04:19:57 1 7 2019-10-11 04:24:57 1 7 2019-10-11 04:29:57 1 7 2019-10-11 04:34:57 1 7 2019-10-11 05:39:57 1 6 2019-10-11 05:54:57 1 6 2019-10-11 06:24:57 1 8 2019-10-11 06:39:57 1 6 2019-10-11 06:44:57 1 6 2019-10-11 06:49:57 1 6 2019-10-11 06:54:57 1 6 2019-10-11 07:04:57 1 7 2019-10-11 07:29:57 1 6 2019-10-11 07:39:57 1 5 2019-10-11 07:44:57 1 5 2019-10-11 07:49:57 1 5 2019-10-11 08:04:57 1 7 2019-10-11 08:19:57 1 6 2019-10-11 08:29:57 1 7 2019-10-11 08:39:57 1 8 2019-10-11 08:44:57 1 9 2019-10-11 08:54:57 1 1 2019-10-11 09:44:57 1 2 2019-10-11 09:44:57 2 1 2019-10-11 09:49:57 1 2 2019-10-11 09:49:57 2 1 2019-10-11 10:14:57 1 3 2019-10-11 10:19:57 1 3 2019-10-11 10:24:57 1 4 2019-10-11 10:29:57 1 4 2019-10-11 10:29:57 2 1 2019-10-11 10:54:57 1 3 2019-10-11 10:54:57 2 1 2019-10-11 10:59:57 1 3 2019-10-11 10:59:57 2 2 2019-10-11 11:24:57 1 7 2019-10-11 11:24:57 2 2 2019-10-11 11:44:57 1 6 2019-10-11 11:44:57 2 2 2019-10-11 11:54:57 1 6 2019-10-11 11:54:57 2 2 2019-10-11 11:59:57 1 5 2019-10-11 11:59:57 2 1 2019-10-11 12:04:57 1 6 2019-10-11 12:04:57 2 2 2019-10-11 12:09:57 1 6 2019-10-11 12:09:57 2 1 2019-10-11 12:19:57 1 6 2019-10-11 12:19:57 2 2 2019-10-11 12:24:58 1 6 2019-10-11 12:24:58 2 2 2019-10-11 12:49:57 1 8 2019-10-11 12:49:57 2 5 2019-10-11 13:14:57 1 8 2019-10-11 13:14:57 2 3 2019-10-11 13:29:57 1 8 2019-10-11 13:29:57 2 3 2019-10-11 13:34:57 1 11 2019-10-11 13:34:57 2 1 2019-10-11 13:59:57 1 11 2019-10-11 13:59:57 2 1 2019-10-11 14:14:57 1 12 2019-10-11 14:19:57 1 11 2019-10-11 14:29:57 1 11 2019-10-11 14:59:57 1 10 2019-10-11 15:09:57 1 11 2019-10-11 15:09:57 2 1 2019-10-11 15:24:57 1 10 2019-10-11 15:34:57 1 12 2019-10-11 15:34:57 2 1 2019-10-11 15:39:57 1 13 2019-10-11 15:39:57 2 1 2019-10-11 16:04:57 1 14 2019-10-11 16:04:57 2 2 2019-10-11 16:09:57 1 12 2019-10-11 16:09:57 2 2 2019-10-11 16:19:57 1 14 2019-10-11 16:19:57 2 2 2019-10-11 16:24:57 1 14 2019-10-11 16:24:57 2 3 2019-10-11 16:39:57 1 11 2019-10-11 16:39:57 2 2 2019-10-11 17:24:57 1 11 2019-10-11 17:24:57 2 2 2019-10-11 17:29:57 1 12 2019-10-11 17:29:57 2 2 2019-10-11 17:49:57 1 11 2019-10-11 17:49:57 2 2 2019-10-11 17:54:57 1 12 2019-10-11 17:54:57 2 1 2019-10-11 18:09:57 1 12 2019-10-11 18:09:57 2 1 2019-10-11 18:29:57 1 11 2019-10-11 18:49:57 1 10 2019-10-11 19:09:57 1 13 2019-10-11 19:09:57 2 1 2019-10-11 19:19:57 1 10 2019-10-11 19:19:57 2 3 2019-10-11 19:29:57 1 11 2019-10-11 19:29:57 2 3 2019-10-11 19:34:57 1 11 2019-10-11 19:34:57 2 3 2019-10-11 20:29:57 1 11 2019-10-11 20:29:57 2 4 2019-10-11 20:34:57 1 11 2019-10-11 20:34:57 2 4 2019-10-11 20:44:57 1 8 2019-10-11 20:44:57 2 3 2019-10-11 21:04:57 1 12 2019-10-11 21:04:57 2 1 2019-10-11 21:34:57 1 14 2019-10-11 21:34:57 2 1 2019-10-11 21:54:57 1 15 2019-10-11 21:54:57 2 1 2019-10-11 22:19:57 1 16 2019-10-11 22:19:57 2 1 2019-10-11 22:24:57 1 13 2019-10-11 22:24:57 2 1 2019-10-11 22:44:57 1 13 2019-10-11 22:54:57 1 12 2019-10-11 22:59:57 1 11 2019-10-11 23:29:57 1 11 2019-10-11 23:54:57 1 11 2019-10-12 00:09:57 1 10 2019-10-12 00:09:57 2 1 2019-10-12 00:24:57 1 9 2019-10-12 00:34:57 1 9 2019-10-12 00:39:57 1 9 2019-10-12 00:54:57 1 9 2019-10-12 01:24:57 1 8 2019-10-12 01:24:57 2 2 2019-10-12 01:34:57 1 8 2019-10-12 01:34:57 2 1 2019-10-12 01:39:57 1 7 2019-10-12 01:39:57 2 1 2019-10-12 01:49:57 1 7 2019-10-12 01:49:57 2 1 2019-10-12 01:54:57 1 7 2019-10-12 01:54:57 2 1 2019-10-12 02:14:57 1 6 2019-10-12 02:19:57 1 6 2019-10-10 21:34:57 1 13 2019-10-10 21:34:57 2 4 2019-10-10 21:39:57 1 11 2019-10-10 21:39:57 2 2 2019-10-10 22:19:57 1 12 2019-10-10 22:19:57 2 2 2019-10-10 22:34:57 1 12 2019-10-10 22:34:57 2 3 2019-10-10 22:59:57 1 12 2019-10-10 22:59:57 2 1 2019-10-10 23:19:57 1 9 2019-10-10 23:19:57 2 1 2019-10-10 23:54:57 1 11 2019-10-10 23:59:57 1 10 2019-10-11 00:04:57 1 12 2019-10-11 00:19:57 1 9 2019-10-11 00:59:57 1 9 2019-10-11 01:19:57 1 7 2019-10-11 01:24:57 1 8 2019-10-11 01:39:57 1 8 2019-10-11 02:19:57 1 7 2019-10-11 02:19:57 2 1 2019-10-11 02:24:57 1 7 2019-10-11 02:24:57 2 1 2019-10-11 02:29:57 1 7 2019-10-11 02:29:57 2 1 2019-10-11 02:34:57 1 7 2019-10-11 02:34:57 2 1 2019-10-11 03:04:57 1 7 2019-10-11 03:49:57 1 9 2019-10-11 03:54:57 1 8 2019-10-11 03:59:57 1 8 2019-10-11 04:39:57 1 6 2019-10-11 04:44:57 1 6 2019-10-11 04:49:57 1 6 2019-10-11 04:54:57 1 6 2019-10-11 04:59:57 1 6 2019-10-11 05:04:57 1 6 2019-10-11 05:44:57 1 6 2019-10-11 05:59:57 1 5 2019-10-11 06:04:57 1 5 2019-10-11 06:09:57 1 8 2019-10-11 06:29:57 1 8 2019-10-11 06:34:57 1 8 2019-10-11 07:14:57 1 5 2019-10-11 07:24:57 1 7 2019-10-11 07:34:57 1 6 2019-10-11 07:34:57 2 1 2019-10-11 07:59:57 1 5 2019-10-11 08:09:57 1 9 2019-10-11 08:24:57 1 7 2019-10-11 08:34:57 1 7 2019-10-11 08:49:57 1 1 2019-10-11 08:59:57 1 2 2019-10-11 09:24:57 2 1 2019-10-11 09:29:57 2 1 2019-10-11 09:34:57 2 1 2019-10-11 09:59:57 1 1 2019-10-11 10:04:57 1 1 2019-10-11 10:09:57 1 1 2019-10-11 10:39:57 1 3 2019-10-11 10:44:57 1 4 2019-10-11 10:49:57 1 2 2019-10-11 10:49:57 2 1 2019-10-11 11:34:57 1 7 2019-10-11 11:34:57 2 3 2019-10-11 12:14:57 1 6 2019-10-11 12:14:57 2 2 2019-10-11 12:39:57 1 7 2019-10-11 12:39:57 2 4 2019-10-11 12:44:57 1 8 2019-10-11 12:44:57 2 4 2019-10-11 13:19:57 1 8 2019-10-11 13:19:57 2 4 2019-10-11 13:39:57 1 10 2019-10-11 13:39:57 2 1 2019-10-11 14:09:57 1 12 2019-10-11 14:44:57 1 11 2019-10-11 14:49:57 1 11 2019-10-11 15:04:57 1 10 2019-10-11 15:14:57 1 11 2019-10-11 15:29:57 1 10 2019-10-11 15:44:57 1 13 2019-10-11 15:44:57 2 1 2019-10-11 15:54:57 1 13 2019-10-11 15:54:57 2 2 2019-10-11 16:14:57 1 12 2019-10-11 16:14:57 2 2 2019-10-11 16:29:57 1 13 2019-10-11 16:29:57 2 3 2019-10-11 16:34:57 1 11 2019-10-11 16:34:57 2 2 2019-10-11 16:54:57 1 14 2019-10-11 16:54:57 2 1 2019-10-11 17:04:57 1 14 2019-10-11 17:04:57 2 3 2019-10-11 17:09:57 1 16 2019-10-11 17:09:57 2 3 2019-10-11 17:14:57 1 14 2019-10-11 17:14:57 2 3 2019-10-11 17:19:57 1 13 2019-10-11 17:19:57 2 3 2019-10-11 17:39:57 1 9 2019-10-11 17:39:57 2 2 2019-10-11 17:59:57 1 10 2019-10-11 17:59:57 2 1 2019-10-11 18:19:57 1 15 2019-10-11 18:34:57 1 11 2019-10-11 19:14:57 1 13 2019-10-11 19:14:57 2 1 2019-10-11 19:24:57 1 9 2019-10-11 19:24:57 2 3 2019-10-11 19:49:57 1 11 2019-10-11 19:49:57 2 4 2019-10-11 19:54:57 1 11 2019-10-11 19:54:57 2 4 2019-10-11 20:14:57 1 13 2019-10-11 20:14:57 2 3 2019-10-11 20:54:57 1 10 2019-10-11 20:54:57 2 2 2019-10-11 21:29:57 1 12 2019-10-11 21:29:57 2 1 2019-10-11 21:39:57 1 16 2019-10-11 21:39:57 2 1 2019-10-11 21:44:57 1 17 2019-10-11 21:44:57 2 1 2019-10-11 22:14:57 1 13 2019-10-11 22:14:57 2 1 2019-10-11 22:34:57 1 15 2019-10-11 22:34:57 2 1 2019-10-11 23:09:57 1 11 2019-10-11 23:19:57 1 13 2019-10-11 23:19:57 2 1 2019-10-11 23:24:57 1 12 2019-10-11 23:24:57 2 1 2019-10-11 23:34:57 1 11 2019-10-11 23:39:57 1 11 2019-10-11 23:44:57 1 11 2019-10-11 23:49:57 1 9 2019-10-11 23:49:57 2 1 2019-10-12 00:59:57 1 10 2019-10-12 00:59:57 2 1 2019-10-12 01:04:57 1 9 2019-10-12 01:04:57 2 1 2019-10-12 01:19:57 1 8 2019-10-12 01:19:57 2 2 2019-10-12 01:59:57 1 7 2019-10-12 01:59:57 2 1 2019-10-12 02:04:57 1 7 2019-10-12 02:04:57 2 1 2019-10-12 02:09:57 1 7 2019-10-12 02:09:57 2 1 2019-10-12 02:24:57 1 6 2019-10-12 02:29:57 1 6 2019-10-12 02:34:57 1 6 2019-10-12 02:39:57 1 6 2019-10-12 02:44:57 1 5 2019-10-12 02:49:57 1 6 2019-10-12 02:54:57 1 5 2019-10-12 02:59:57 1 8 2019-10-12 03:04:57 1 8 2019-10-12 03:09:57 1 8 2019-10-12 03:14:57 1 8 2019-10-12 03:19:57 1 6 2019-10-12 03:24:57 1 6 2019-10-12 03:29:57 1 6 2019-10-12 03:34:57 1 6 2019-10-12 03:39:57 1 6 2019-10-12 03:44:57 1 6 2019-10-12 03:49:57 1 6 2019-10-12 03:54:57 1 6 2019-10-12 03:59:57 1 6 2019-10-12 04:04:57 1 6 2019-10-12 04:09:57 1 5 2019-10-12 04:14:57 1 6 2019-10-12 04:19:57 1 6 2019-10-12 04:24:57 1 6 2019-10-12 04:29:57 1 6 2019-10-12 04:34:57 1 5 2019-10-12 04:39:57 1 5 2019-10-12 04:44:57 1 5 2019-10-12 04:49:57 1 5 2019-10-12 04:54:57 1 6 2019-10-12 04:59:57 1 6 2019-10-12 05:04:57 1 5 2019-10-10 21:54:57 1 12 2019-10-10 21:54:57 2 2 2019-10-10 21:59:57 1 11 2019-10-10 21:59:57 2 2 2019-10-10 22:09:57 1 11 2019-10-10 22:09:57 2 2 2019-10-10 22:14:57 1 13 2019-10-10 22:14:57 2 2 2019-10-10 22:44:57 1 14 2019-10-10 22:44:57 2 1 2019-10-10 22:49:57 1 12 2019-10-10 22:49:57 2 1 2019-10-10 22:54:57 1 13 2019-10-10 22:54:57 2 1 2019-10-10 23:04:57 1 10 2019-10-10 23:04:57 2 1 2019-10-10 23:24:57 1 9 2019-10-10 23:24:57 2 2 2019-10-10 23:39:57 1 10 2019-10-10 23:39:57 2 1 2019-10-10 23:44:57 1 9 2019-10-10 23:44:57 2 1 2019-10-10 23:49:57 1 12 2019-10-11 00:09:57 1 11 2019-10-11 00:24:57 1 8 2019-10-11 00:29:57 1 8 2019-10-11 00:44:57 1 11 2019-10-11 00:49:57 1 11 2019-10-11 01:34:57 1 8 2019-10-11 01:44:57 1 9 2019-10-11 01:49:57 1 11 2019-10-11 01:54:57 1 11 2019-10-11 02:04:57 1 9 2019-10-11 02:04:57 2 1 2019-10-11 02:39:57 1 7 2019-10-11 03:29:57 1 8 2019-10-11 03:34:57 1 8 2019-10-11 03:39:57 1 9 2019-10-11 03:44:57 1 9 2019-10-11 05:09:57 1 5 2019-10-11 05:14:57 1 5 2019-10-11 05:19:57 1 5 2019-10-11 05:24:57 1 5 2019-10-11 05:29:57 1 5 2019-10-11 05:34:57 1 5 2019-10-11 05:49:57 1 7 2019-10-11 06:14:57 1 7 2019-10-11 06:19:57 1 7 2019-10-11 06:59:57 1 6 2019-10-11 07:09:57 1 7 2019-10-11 07:19:57 1 7 2019-10-11 07:54:57 1 5 2019-10-11 08:14:57 1 7 2019-10-11 09:04:57 1 1 2019-10-11 09:39:57 1 1 2019-10-11 09:39:57 2 1 2019-10-11 09:54:57 1 1 2019-10-11 10:34:57 1 2 2019-10-11 10:34:57 2 1 2019-10-11 11:04:57 1 3 2019-10-11 11:04:57 2 2 2019-10-11 11:09:57 1 7 2019-10-11 11:09:57 2 2 2019-10-11 11:14:57 1 6 2019-10-11 11:14:57 2 2 2019-10-11 11:19:57 1 6 2019-10-11 11:19:57 2 2 2019-10-11 11:29:57 1 8 2019-10-11 11:29:57 2 2 2019-10-11 11:39:57 1 7 2019-10-11 11:39:57 2 2 2019-10-11 11:49:57 1 8 2019-10-11 11:49:57 2 2 2019-10-11 12:29:57 1 8 2019-10-11 12:29:57 2 3 2019-10-11 12:34:57 1 6 2019-10-11 12:34:57 2 3 2019-10-11 12:54:57 1 7 2019-10-11 12:54:57 2 4 2019-10-11 12:59:57 1 7 2019-10-11 12:59:57 2 5 2019-10-11 13:04:57 1 7 2019-10-11 13:04:57 2 5 2019-10-11 13:09:57 1 8 2019-10-11 13:09:57 2 4 2019-10-11 13:24:57 1 10 2019-10-11 13:24:57 2 3 2019-10-11 13:44:57 1 9 2019-10-11 13:44:57 2 1 2019-10-11 13:49:57 1 9 2019-10-11 13:49:57 2 1 2019-10-11 13:54:57 1 11 2019-10-11 13:54:57 2 1 2019-10-11 14:04:57 1 12 2019-10-11 14:04:57 2 1 2019-10-11 14:24:57 1 10 2019-10-11 14:34:57 1 10 2019-10-11 14:39:57 1 11 2019-10-11 14:54:57 1 9 2019-10-11 15:19:57 1 12 2019-10-11 15:49:57 1 13 2019-10-11 15:49:57 2 2 2019-10-11 15:59:57 1 12 2019-10-11 15:59:57 2 1 2019-10-11 16:44:57 1 13 2019-10-11 16:44:57 2 2 2019-10-11 16:49:57 1 13 2019-10-11 16:49:57 2 1 2019-10-11 16:59:57 1 13 2019-10-11 16:59:57 2 2 2019-10-11 17:34:57 1 9 2019-10-11 17:34:57 2 2 2019-10-11 17:44:57 1 11 2019-10-11 17:44:57 2 2 2019-10-11 18:04:57 1 12 2019-10-11 18:04:57 2 1 2019-10-11 18:14:57 1 15 2019-10-11 18:14:57 2 1 2019-10-11 18:24:57 1 11 2019-10-11 18:39:57 1 10 2019-10-11 18:44:57 1 9 2019-10-11 18:54:57 1 9 2019-10-11 18:59:57 1 10 2019-10-11 18:59:57 2 1 2019-10-11 19:04:57 1 10 2019-10-11 19:04:57 2 2 2019-10-11 19:39:57 1 10 2019-10-11 19:39:57 2 3 2019-10-11 19:44:57 1 10 2019-10-11 19:44:57 2 2 2019-10-11 19:59:57 1 12 2019-10-11 19:59:57 2 4 2019-10-11 20:04:57 1 12 2019-10-11 20:04:57 2 4 2019-10-11 20:09:57 1 14 2019-10-11 20:09:57 2 4 2019-10-11 20:19:57 1 11 2019-10-11 20:19:57 2 4 2019-10-11 20:24:57 1 12 2019-10-11 20:24:57 2 4 2019-10-11 20:39:57 1 10 2019-10-11 20:39:57 2 3 2019-10-11 20:49:57 1 9 2019-10-11 20:49:57 2 2 2019-10-11 20:59:57 1 12 2019-10-11 20:59:57 2 2 2019-10-11 21:09:57 1 13 2019-10-11 21:09:57 2 1 2019-10-11 21:14:57 1 13 2019-10-11 21:14:57 2 1 2019-10-11 21:19:57 1 12 2019-10-11 21:19:57 2 1 2019-10-11 21:24:57 1 13 2019-10-11 21:24:57 2 2 2019-10-11 21:49:57 1 17 2019-10-11 21:49:57 2 1 2019-10-11 21:59:57 1 16 2019-10-11 21:59:57 2 2 2019-10-11 22:04:57 1 15 2019-10-11 22:04:57 2 1 2019-10-11 22:09:57 1 14 2019-10-11 22:09:57 2 1 2019-10-11 22:29:57 1 13 2019-10-11 22:29:57 2 3 2019-10-11 22:39:57 1 14 2019-10-11 22:39:57 2 1 2019-10-11 22:49:57 1 13 2019-10-11 23:04:57 1 12 2019-10-11 23:14:57 1 11 2019-10-11 23:14:57 2 1 2019-10-11 23:59:57 1 10 2019-10-12 00:04:57 1 12 2019-10-12 00:14:57 1 10 2019-10-12 00:19:57 1 11 2019-10-12 00:29:57 1 9 2019-10-12 00:44:57 1 8 2019-10-12 00:49:57 1 9 2019-10-12 01:09:57 1 9 2019-10-12 01:09:57 2 1 2019-10-12 01:14:57 1 9 2019-10-12 01:14:57 2 1 2019-10-12 01:29:57 1 8 2019-10-12 01:29:57 2 2 2019-10-12 01:44:57 1 7 2019-10-12 01:44:57 2 1 2019-10-12 05:09:57 1 5 2019-10-12 05:24:57 1 6 2019-10-12 05:44:57 1 5 2019-10-12 06:24:57 1 4 2019-10-12 06:44:57 1 5 2019-10-12 06:54:57 1 7 2019-10-12 07:49:57 1 6 2019-10-12 08:09:57 1 9 2019-10-12 08:09:57 2 1 2019-10-12 08:29:57 1 10 2019-10-12 08:29:57 2 1 2019-10-12 08:49:57 1 9 2019-10-12 08:49:57 2 1 2019-10-12 09:19:57 1 10 2019-10-12 09:19:57 2 1 2019-10-12 09:34:57 1 10 2019-10-12 09:34:57 2 2 2019-10-12 09:54:57 1 10 2019-10-12 09:54:57 2 1 2019-10-12 10:19:57 1 12 2019-10-12 10:49:57 1 10 2019-10-12 10:49:57 2 1 2019-10-12 10:54:57 1 10 2019-10-12 10:54:57 2 2 2019-10-12 10:59:57 1 11 2019-10-12 10:59:57 2 2 2019-10-12 11:34:57 1 16 2019-10-12 11:34:57 2 3 2019-10-12 11:39:57 1 16 2019-10-12 11:39:57 2 2 2019-10-12 12:19:57 1 12 2019-10-12 12:19:57 2 2 2019-10-12 12:44:57 1 11 2019-10-12 12:54:57 1 11 2019-10-12 12:54:57 2 1 2019-10-12 13:19:57 1 10 2019-10-12 13:19:57 2 1 2019-10-12 13:29:57 1 11 2019-10-12 13:29:57 2 1 2019-10-12 13:34:57 1 10 2019-10-12 13:34:57 2 1 2019-10-12 13:59:57 1 11 2019-10-12 13:59:57 2 2 2019-10-12 14:09:57 1 12 2019-10-12 14:09:57 2 1 2019-10-12 14:19:57 1 11 2019-10-12 14:19:57 2 1 2019-10-12 14:34:57 1 11 2019-10-12 14:34:57 2 1 2019-10-12 14:39:57 1 10 2019-10-12 14:39:57 2 1 2019-10-12 14:49:57 1 11 2019-10-12 14:49:57 2 1 2019-10-12 15:09:57 1 15 2019-10-12 15:09:57 2 2 2019-10-12 15:29:57 1 13 2019-10-12 15:29:57 2 1 2019-10-12 15:39:57 1 13 2019-10-12 16:04:57 1 12 2019-10-12 16:04:57 2 2 2019-10-12 16:09:57 1 11 2019-10-12 16:09:57 2 2 2019-10-12 16:14:58 1 10 2019-10-12 16:14:58 2 2 2019-10-12 16:24:57 1 10 2019-10-12 16:24:57 2 3 2019-10-12 16:34:57 1 11 2019-10-12 16:34:57 2 2 2019-10-12 16:44:57 1 12 2019-10-12 16:44:57 2 1 2019-10-12 16:49:57 1 10 2019-10-12 16:49:57 2 1 2019-10-12 17:09:57 1 10 2019-10-12 17:09:57 2 2 2019-10-12 17:24:57 1 9 2019-10-12 17:24:57 2 2 2019-10-12 17:39:57 1 9 2019-10-12 17:39:57 2 1 2019-10-12 17:54:57 1 8 2019-10-12 17:54:57 2 2 2019-10-12 17:59:57 1 11 2019-10-12 17:59:57 2 2 2019-10-12 18:09:57 1 12 2019-10-12 18:09:57 2 2 2019-10-12 18:14:57 1 12 2019-10-12 18:14:57 2 3 2019-10-12 18:24:57 1 12 2019-10-12 18:24:57 2 2 2019-10-12 18:29:57 1 16 2019-10-12 18:29:57 2 2 2019-10-12 18:59:57 1 10 2019-10-12 18:59:57 2 1 2019-10-12 19:14:57 1 10 2019-10-12 19:14:57 2 2 2019-10-12 19:24:57 1 11 2019-10-12 19:24:57 2 1 2019-10-12 19:29:57 1 11 2019-10-12 19:29:57 2 1 2019-10-12 19:34:57 1 11 2019-10-12 19:34:57 2 1 2019-10-12 19:44:57 1 9 2019-10-12 19:44:57 2 1 2019-10-12 19:49:57 1 7 2019-10-12 19:49:57 2 2 2019-10-12 20:14:57 1 6 2019-10-12 20:14:57 2 2 2019-10-12 20:19:57 1 5 2019-10-12 20:19:57 2 2 2019-10-12 20:34:57 1 10 2019-10-12 20:34:57 2 2 2019-10-12 20:49:57 1 9 2019-10-12 20:49:57 2 3 2019-10-12 21:04:57 1 10 2019-10-12 21:04:57 2 2 2019-10-12 21:24:57 1 11 2019-10-12 21:24:57 2 4 2019-10-12 21:49:57 1 9 2019-10-12 21:49:57 2 1 2019-10-12 21:54:57 1 9 2019-10-12 21:54:57 2 1 2019-10-12 22:04:57 1 11 2019-10-12 22:14:57 1 9 2019-10-12 22:19:57 1 12 2019-10-12 22:29:57 1 11 2019-10-12 22:29:57 2 1 2019-10-12 22:44:57 1 10 2019-10-12 22:44:57 2 4 2019-10-12 22:49:57 1 8 2019-10-12 22:49:57 2 1 2019-10-12 22:54:57 1 11 2019-10-12 22:54:57 2 1 2019-10-12 23:09:57 1 12 2019-10-12 23:14:57 1 10 2019-10-12 23:14:57 2 1 2019-10-12 23:19:57 1 10 2019-10-12 23:19:57 2 1 2019-10-12 23:24:57 1 11 2019-10-12 23:29:57 1 12 2019-10-12 23:34:57 1 11 2019-10-12 23:34:57 2 1 2019-10-13 00:04:57 1 11 2019-10-13 00:09:57 1 11 2019-10-13 00:19:57 1 13 2019-10-13 00:24:57 1 11 2019-10-13 00:39:57 1 11 2019-10-13 00:39:57 2 1 2019-10-13 00:54:57 1 8 2019-10-13 00:54:57 2 1 2019-10-13 01:04:57 1 8 2019-10-13 01:04:57 2 1 2019-10-13 01:09:57 1 8 2019-10-13 01:09:57 2 2 2019-10-13 01:29:57 1 8 2019-10-13 02:09:57 1 9 2019-10-13 02:19:57 1 8 2019-10-13 03:44:57 1 7 2019-10-13 03:49:57 1 7 2019-10-13 04:04:57 1 8 2019-10-13 04:19:57 1 8 2019-10-13 04:24:57 1 8 2019-10-13 04:34:57 1 9 2019-10-13 04:39:57 1 9 2019-10-13 04:54:57 1 9 2019-10-13 05:04:57 1 8 2019-10-13 05:19:57 1 9 2019-10-13 05:44:57 1 9 2019-10-13 06:59:57 1 6 2019-10-13 06:59:57 2 1 2019-10-13 07:04:57 1 6 2019-10-13 07:04:57 2 1 2019-10-13 07:19:57 1 7 2019-10-13 07:24:57 1 7 2019-10-13 07:39:57 1 6 2019-10-13 07:44:57 1 7 2019-10-13 07:49:57 1 7 2019-10-13 07:49:57 2 1 2019-10-13 07:54:57 1 8 2019-10-13 07:54:57 2 1 2019-10-13 08:24:57 1 8 2019-10-13 08:24:57 2 2 2019-10-13 08:59:57 1 8 2019-10-13 09:04:57 1 11 2019-10-13 09:09:57 1 11 2019-10-13 09:19:57 1 11 2019-10-13 09:34:57 1 11 2019-10-12 05:14:57 1 4 2019-10-12 05:19:57 1 4 2019-10-12 05:29:57 1 5 2019-10-12 05:49:57 1 6 2019-10-12 06:29:57 1 6 2019-10-12 06:34:57 1 5 2019-10-12 06:39:57 1 5 2019-10-12 06:49:57 1 7 2019-10-12 06:59:57 1 6 2019-10-12 07:04:57 1 6 2019-10-12 07:14:57 1 6 2019-10-12 07:14:57 2 1 2019-10-12 07:19:57 1 5 2019-10-12 07:19:57 2 1 2019-10-12 07:29:57 1 5 2019-10-12 07:59:57 1 8 2019-10-12 07:59:57 2 1 2019-10-12 08:04:57 1 9 2019-10-12 08:04:57 2 1 2019-10-12 08:14:57 1 8 2019-10-12 08:14:57 2 1 2019-10-12 08:19:57 1 9 2019-10-12 08:19:57 2 1 2019-10-12 08:44:57 1 9 2019-10-12 08:44:57 2 1 2019-10-12 08:59:57 1 10 2019-10-12 08:59:57 2 1 2019-10-12 09:04:57 1 12 2019-10-12 09:04:57 2 1 2019-10-12 09:09:57 1 11 2019-10-12 09:09:57 2 2 2019-10-12 09:14:57 1 12 2019-10-12 09:14:57 2 1 2019-10-12 09:39:57 1 11 2019-10-12 09:39:57 2 1 2019-10-12 09:59:57 1 9 2019-10-12 09:59:57 2 1 2019-10-12 10:09:57 1 12 2019-10-12 10:24:57 1 12 2019-10-12 10:29:57 1 11 2019-10-12 10:34:57 1 10 2019-10-12 10:39:57 1 12 2019-10-12 10:44:57 1 10 2019-10-12 10:44:57 2 1 2019-10-12 11:19:57 1 13 2019-10-12 11:19:57 2 1 2019-10-12 11:29:57 1 16 2019-10-12 11:29:57 2 2 2019-10-12 12:14:57 1 13 2019-10-12 12:14:57 2 2 2019-10-12 12:29:57 1 11 2019-10-12 12:29:57 2 1 2019-10-12 12:34:57 1 9 2019-10-12 12:39:57 1 9 2019-10-12 13:09:57 1 11 2019-10-12 13:14:57 1 11 2019-10-12 13:24:57 1 13 2019-10-12 13:24:57 2 1 2019-10-12 13:44:57 1 10 2019-10-12 13:44:57 2 2 2019-10-12 13:54:57 1 11 2019-10-12 13:54:57 2 2 2019-10-12 14:24:57 1 13 2019-10-12 14:24:57 2 1 2019-10-12 14:29:57 1 12 2019-10-12 14:29:57 2 1 2019-10-12 14:44:57 1 11 2019-10-12 14:44:57 2 2 2019-10-12 14:54:57 1 13 2019-10-12 14:54:57 2 1 2019-10-12 15:04:57 1 12 2019-10-12 15:04:57 2 2 2019-10-12 15:14:57 1 13 2019-10-12 15:14:57 2 3 2019-10-12 15:34:57 1 13 2019-10-12 15:34:57 2 1 2019-10-12 15:49:57 1 11 2019-10-12 15:54:57 1 11 2019-10-12 15:54:57 2 1 2019-10-12 16:29:57 1 11 2019-10-12 16:29:57 2 3 2019-10-12 17:04:57 1 10 2019-10-12 17:04:57 2 2 2019-10-12 17:19:57 1 10 2019-10-12 17:19:57 2 3 2019-10-12 17:34:57 1 9 2019-10-12 17:34:57 2 1 2019-10-12 17:44:57 1 9 2019-10-12 17:44:57 2 1 2019-10-12 18:39:57 1 11 2019-10-12 18:39:57 2 2 2019-10-12 18:44:57 1 11 2019-10-12 18:44:57 2 2 2019-10-12 18:49:57 1 12 2019-10-12 18:49:57 2 2 2019-10-12 18:54:57 1 11 2019-10-12 18:54:57 2 2 2019-10-12 19:19:57 1 9 2019-10-12 19:19:57 2 1 2019-10-12 19:39:57 1 11 2019-10-12 19:39:57 2 1 2019-10-12 19:59:57 1 9 2019-10-12 19:59:57 2 3 2019-10-12 20:09:57 1 9 2019-10-12 20:09:57 2 3 2019-10-12 20:59:57 1 9 2019-10-12 20:59:57 2 3 2019-10-12 21:14:57 1 8 2019-10-12 21:14:57 2 4 2019-10-12 21:34:57 1 10 2019-10-12 21:34:57 2 3 2019-10-12 21:44:57 1 12 2019-10-12 21:44:57 2 1 2019-10-12 22:09:57 1 9 2019-10-12 22:39:57 1 11 2019-10-12 22:39:57 2 3 2019-10-12 22:59:57 1 13 2019-10-12 22:59:57 2 1 2019-10-12 23:04:57 1 11 2019-10-12 23:39:57 1 10 2019-10-12 23:39:57 2 1 2019-10-12 23:44:57 1 9 2019-10-12 23:49:57 1 9 2019-10-13 00:14:57 1 12 2019-10-13 00:44:57 1 10 2019-10-13 00:44:57 2 1 2019-10-13 00:49:57 1 8 2019-10-13 00:49:57 2 1 2019-10-13 01:14:57 1 8 2019-10-13 01:24:57 1 8 2019-10-13 01:39:57 1 8 2019-10-13 01:44:57 1 8 2019-10-13 01:49:57 1 8 2019-10-13 02:04:57 1 9 2019-10-13 02:34:57 1 7 2019-10-13 02:49:57 1 7 2019-10-13 02:54:57 1 8 2019-10-13 02:59:57 1 8 2019-10-13 03:14:57 1 6 2019-10-13 03:19:57 1 6 2019-10-13 03:24:57 1 6 2019-10-13 03:29:57 1 6 2019-10-13 03:39:57 1 7 2019-10-13 03:54:57 1 8 2019-10-13 03:59:57 1 8 2019-10-13 04:09:57 1 8 2019-10-13 04:14:57 1 8 2019-10-13 04:44:57 1 9 2019-10-13 04:59:57 1 9 2019-10-13 05:09:57 1 9 2019-10-13 05:14:57 1 9 2019-10-13 05:24:57 1 9 2019-10-13 05:29:57 1 9 2019-10-13 05:49:57 1 9 2019-10-13 05:54:57 1 9 2019-10-13 05:59:57 1 9 2019-10-13 06:04:57 1 8 2019-10-13 06:14:57 1 8 2019-10-13 06:24:57 1 8 2019-10-13 06:29:57 1 7 2019-10-13 06:29:57 2 1 2019-10-13 06:34:57 1 7 2019-10-13 06:34:57 2 1 2019-10-13 06:39:57 1 7 2019-10-13 06:39:57 2 1 2019-10-13 06:44:57 1 7 2019-10-13 06:49:57 1 7 2019-10-13 06:49:57 2 1 2019-10-13 06:54:57 1 7 2019-10-13 06:54:57 2 1 2019-10-13 07:09:57 1 7 2019-10-13 07:14:57 1 7 2019-10-13 07:29:57 1 7 2019-10-13 07:34:57 1 8 2019-10-13 08:04:57 1 7 2019-10-13 08:04:57 2 1 2019-10-13 08:34:57 1 9 2019-10-13 08:34:57 2 1 2019-10-13 08:39:57 1 8 2019-10-13 08:39:57 2 1 2019-10-13 08:49:57 1 9 2019-10-13 08:49:57 2 1 2019-10-13 09:24:57 1 11 2019-10-13 09:29:57 1 13 2019-10-13 09:34:57 2 1 2019-10-12 05:34:57 1 6 2019-10-12 05:39:57 1 6 2019-10-12 05:54:57 1 5 2019-10-12 05:59:57 1 5 2019-10-12 06:04:57 1 5 2019-10-12 06:09:57 1 5 2019-10-12 06:14:57 1 5 2019-10-12 06:19:57 1 5 2019-10-12 07:09:57 1 7 2019-10-12 07:24:57 1 5 2019-10-12 07:34:57 1 7 2019-10-12 07:39:57 1 9 2019-10-12 07:44:57 1 7 2019-10-12 07:54:57 1 6 2019-10-12 08:24:57 1 9 2019-10-12 08:24:57 2 1 2019-10-12 08:34:57 1 9 2019-10-12 08:34:57 2 1 2019-10-12 08:39:57 1 10 2019-10-12 08:39:57 2 1 2019-10-12 08:54:57 1 10 2019-10-12 08:54:57 2 1 2019-10-12 09:24:57 1 9 2019-10-12 09:24:57 2 1 2019-10-12 09:29:57 1 11 2019-10-12 09:29:57 2 1 2019-10-12 09:44:57 1 11 2019-10-12 09:44:57 2 1 2019-10-12 09:49:57 1 10 2019-10-12 09:49:57 2 1 2019-10-12 10:04:57 1 11 2019-10-12 10:14:57 1 12 2019-10-12 11:04:57 1 9 2019-10-12 11:04:57 2 1 2019-10-12 11:09:57 1 11 2019-10-12 11:09:57 2 1 2019-10-12 11:14:57 1 12 2019-10-12 11:14:57 2 1 2019-10-12 11:24:57 1 15 2019-10-12 11:24:57 2 1 2019-10-12 11:44:57 1 16 2019-10-12 11:44:57 2 2 2019-10-12 11:49:57 1 12 2019-10-12 11:49:57 2 2 2019-10-12 11:54:57 1 13 2019-10-12 11:54:57 2 2 2019-10-12 11:59:57 1 13 2019-10-12 11:59:57 2 2 2019-10-12 12:04:57 1 13 2019-10-12 12:04:57 2 2 2019-10-12 12:09:57 1 14 2019-10-12 12:09:57 2 2 2019-10-12 12:24:57 1 11 2019-10-12 12:24:57 2 1 2019-10-12 12:49:57 1 10 2019-10-12 12:59:57 1 12 2019-10-12 13:04:57 1 10 2019-10-12 13:39:57 1 11 2019-10-12 13:39:57 2 2 2019-10-12 13:49:57 1 11 2019-10-12 13:49:57 2 2 2019-10-12 14:04:57 1 10 2019-10-12 14:04:57 2 1 2019-10-12 14:14:57 1 12 2019-10-12 14:14:57 2 1 2019-10-12 14:59:57 1 11 2019-10-12 14:59:57 2 2 2019-10-12 15:19:57 1 12 2019-10-12 15:19:57 2 2 2019-10-12 15:24:57 1 11 2019-10-12 15:24:57 2 1 2019-10-12 15:44:57 1 13 2019-10-12 15:59:57 1 11 2019-10-12 15:59:57 2 1 2019-10-12 16:19:57 1 10 2019-10-12 16:19:57 2 3 2019-10-12 16:39:57 1 12 2019-10-12 16:39:57 2 1 2019-10-12 16:54:57 1 10 2019-10-12 16:54:57 2 1 2019-10-12 16:59:57 1 9 2019-10-12 16:59:57 2 2 2019-10-12 17:14:57 1 8 2019-10-12 17:14:57 2 2 2019-10-12 17:29:57 1 10 2019-10-12 17:29:57 2 1 2019-10-12 17:49:57 1 9 2019-10-12 17:49:57 2 2 2019-10-12 18:04:57 1 13 2019-10-12 18:04:57 2 2 2019-10-12 18:19:57 1 11 2019-10-12 18:19:57 2 2 2019-10-12 18:34:57 1 13 2019-10-12 18:34:57 2 2 2019-10-12 19:04:57 1 9 2019-10-12 19:04:57 2 1 2019-10-12 19:09:57 1 9 2019-10-12 19:09:57 2 2 2019-10-12 19:54:57 1 8 2019-10-12 19:54:57 2 1 2019-10-12 20:04:57 1 8 2019-10-12 20:04:57 2 3 2019-10-12 20:24:57 1 8 2019-10-12 20:24:57 2 2 2019-10-12 20:29:57 1 9 2019-10-12 20:29:57 2 2 2019-10-12 20:39:57 1 10 2019-10-12 20:39:57 2 2 2019-10-12 20:44:57 1 8 2019-10-12 20:44:57 2 3 2019-10-12 20:54:57 1 10 2019-10-12 20:54:57 2 3 2019-10-12 21:09:57 1 8 2019-10-12 21:09:57 2 3 2019-10-12 21:19:57 1 9 2019-10-12 21:19:57 2 4 2019-10-12 21:29:57 1 9 2019-10-12 21:29:57 2 4 2019-10-12 21:39:57 1 10 2019-10-12 21:39:57 2 3 2019-10-12 21:59:57 1 10 2019-10-12 22:24:57 1 13 2019-10-12 22:34:57 1 10 2019-10-12 22:34:57 2 1 2019-10-12 23:54:57 1 9 2019-10-12 23:59:57 1 12 2019-10-13 00:29:57 1 10 2019-10-13 00:29:57 2 1 2019-10-13 00:34:57 1 9 2019-10-13 00:34:57 2 1 2019-10-13 00:59:57 1 8 2019-10-13 00:59:57 2 1 2019-10-13 01:19:57 1 8 2019-10-13 01:34:57 1 8 2019-10-13 01:54:57 1 8 2019-10-13 01:59:57 1 9 2019-10-13 02:14:57 1 9 2019-10-13 02:24:57 1 8 2019-10-13 02:29:57 1 7 2019-10-13 02:39:57 1 7 2019-10-13 02:44:57 1 7 2019-10-13 03:04:57 1 7 2019-10-13 03:09:57 1 7 2019-10-13 03:34:57 1 7 2019-10-13 04:29:57 1 9 2019-10-13 04:49:57 1 9 2019-10-13 05:34:57 1 9 2019-10-13 05:39:57 1 9 2019-10-13 06:09:57 1 8 2019-10-13 06:19:57 1 8 2019-10-13 07:59:57 1 8 2019-10-13 07:59:57 2 1 2019-10-13 08:09:57 1 7 2019-10-13 08:09:57 2 1 2019-10-13 08:14:57 1 7 2019-10-13 08:14:57 2 1 2019-10-13 08:19:57 1 8 2019-10-13 08:19:57 2 1 2019-10-13 08:29:57 1 9 2019-10-13 08:29:57 2 1 2019-10-13 08:44:57 1 8 2019-10-13 08:44:57 2 1 2019-10-13 08:54:57 1 8 2019-10-13 08:54:57 2 1 2019-10-13 09:14:57 1 11 2019-10-13 09:39:57 1 10 2019-10-13 09:44:57 1 12 2019-10-13 09:49:57 1 12 2019-10-13 09:49:57 2 1 2019-10-13 09:54:57 1 11 2019-10-13 09:54:57 2 1 2019-10-13 09:59:57 1 10 2019-10-13 09:59:57 2 1 2019-10-13 10:04:57 1 10 2019-10-13 10:04:57 2 1 2019-10-13 10:09:57 1 11 2019-10-13 10:09:57 2 2 2019-10-13 10:14:57 1 11 2019-10-13 10:14:57 2 2 2019-10-13 10:19:57 1 11 2019-10-13 10:19:57 2 2 2019-10-13 10:24:57 1 11 2019-10-13 10:29:57 1 11 2019-10-13 10:34:57 1 10 2019-10-13 10:39:57 1 12 2019-10-13 10:44:57 1 11 2019-10-13 10:54:57 1 9 2019-10-13 10:59:57 1 9 2019-10-13 11:09:57 1 11 2019-10-13 11:39:57 1 10 2019-10-13 11:39:57 2 2 2019-10-13 11:44:57 1 12 2019-10-13 11:44:57 2 2 2019-10-13 11:49:57 1 13 2019-10-13 11:49:57 2 2 2019-10-13 11:59:57 1 11 2019-10-13 11:59:57 2 2 2019-10-13 12:39:57 1 12 2019-10-13 12:39:57 2 1 2019-10-13 13:24:57 1 10 2019-10-13 13:34:57 1 10 2019-10-13 13:34:57 2 1 2019-10-13 13:39:57 1 12 2019-10-13 13:39:57 2 1 2019-10-13 13:49:57 1 11 2019-10-13 13:49:57 2 1 2019-10-13 14:14:57 1 11 2019-10-13 14:14:57 2 1 2019-10-13 14:24:57 1 13 2019-10-13 14:24:57 2 2 2019-10-13 14:44:57 1 10 2019-10-13 14:44:57 2 2 2019-10-13 14:54:57 1 10 2019-10-13 14:54:57 2 3 2019-10-13 14:59:57 1 10 2019-10-13 14:59:57 2 2 2019-10-13 15:09:57 1 10 2019-10-13 15:09:57 2 2 2019-10-13 15:34:57 1 13 2019-10-13 15:34:57 2 3 2019-10-13 15:54:57 1 13 2019-10-13 15:54:57 2 3 2019-10-13 15:59:57 1 14 2019-10-13 15:59:57 2 3 2019-10-13 16:14:57 1 13 2019-10-13 16:14:57 2 3 2019-10-13 16:24:57 1 13 2019-10-13 16:24:57 2 1 2019-10-13 16:29:57 1 12 2019-10-13 16:29:57 2 1 2019-10-13 16:34:57 1 12 2019-10-13 16:34:57 2 1 2019-10-13 17:14:57 1 11 2019-10-13 17:14:57 2 3 2019-10-13 17:39:57 1 14 2019-10-13 17:39:57 2 1 2019-10-13 18:04:57 1 14 2019-10-13 18:04:57 2 4 2019-10-13 18:24:57 1 11 2019-10-13 18:24:57 2 5 2019-10-13 18:39:57 1 12 2019-10-13 18:39:57 2 4 2019-10-13 18:44:57 1 12 2019-10-13 18:44:57 2 4 2019-10-13 19:09:57 1 13 2019-10-13 19:09:57 2 6 2019-10-13 19:19:57 1 14 2019-10-13 19:19:57 2 6 2019-10-13 19:39:57 1 15 2019-10-13 19:39:57 2 4 2019-10-13 20:24:57 1 15 2019-10-13 20:24:57 2 3 2019-10-13 20:59:57 1 15 2019-10-13 20:59:57 2 3 2019-10-13 21:09:57 1 17 2019-10-13 21:09:57 2 2 2019-10-13 21:54:57 1 15 2019-10-13 21:54:57 2 3 2019-10-13 21:59:57 1 17 2019-10-13 21:59:57 2 2 2019-10-13 22:14:57 1 18 2019-10-13 22:14:57 2 2 2019-10-13 22:34:57 1 21 2019-10-13 22:34:57 2 1 2019-10-13 22:54:57 1 20 2019-10-13 22:54:57 2 1 2019-10-13 23:14:57 1 18 2019-10-13 23:14:57 2 1 2019-10-13 23:29:57 1 17 2019-10-13 23:29:57 2 1 2019-10-13 23:34:57 1 15 2019-10-13 23:34:57 2 1 2019-10-13 23:49:57 1 11 2019-10-13 23:49:57 2 1 2019-10-13 23:59:57 1 11 2019-10-13 23:59:57 2 1 2019-10-14 00:14:57 1 13 2019-10-14 00:14:57 2 1 2019-10-14 00:29:57 1 13 2019-10-14 00:29:57 2 1 2019-10-14 00:59:57 1 10 2019-10-14 01:19:57 1 8 2019-10-14 01:24:57 1 8 2019-10-14 01:29:57 1 7 2019-10-14 01:49:57 1 5 2019-10-14 01:54:57 1 5 2019-10-14 01:59:57 1 5 2019-10-14 02:59:57 1 4 2019-10-14 03:09:57 1 5 2019-10-14 03:14:57 1 5 2019-10-14 03:54:57 1 5 2019-10-14 03:59:57 1 5 2019-10-14 04:04:57 1 5 2019-10-14 04:09:57 1 5 2019-10-14 04:24:57 1 5 2019-10-14 04:29:57 1 5 2019-10-14 04:34:57 1 5 2019-10-14 04:39:57 1 5 2019-10-14 05:44:57 1 5 2019-10-14 05:44:57 2 1 2019-10-14 05:49:57 1 5 2019-10-14 05:49:57 2 1 2019-10-14 06:09:57 1 8 2019-10-14 06:19:57 1 8 2019-10-14 06:19:57 2 1 2019-10-14 06:29:57 1 7 2019-10-14 06:34:57 1 7 2019-10-14 06:54:57 1 8 2019-10-14 06:59:57 1 8 2019-10-14 07:04:57 1 10 2019-10-14 07:19:57 1 8 2019-10-14 07:19:57 2 1 2019-10-14 07:24:57 1 8 2019-10-14 07:24:57 2 1 2019-10-14 07:29:57 1 8 2019-10-14 07:29:57 2 1 2019-10-14 07:34:57 1 6 2019-10-14 07:44:57 1 7 2019-10-14 07:49:57 1 6 2019-10-14 07:54:57 1 5 2019-10-14 08:04:57 1 6 2019-10-14 08:34:57 1 5 2019-10-14 08:34:57 2 1 2019-10-14 08:49:57 1 9 2019-10-14 08:49:57 2 2 2019-10-14 09:09:57 1 7 2019-10-14 09:09:57 2 1 2019-10-14 09:24:57 1 10 2019-10-14 09:24:57 2 1 2019-10-14 09:44:57 1 12 2019-10-14 09:44:57 2 1 2019-10-14 09:54:57 1 10 2019-10-14 09:54:57 2 1 2019-10-14 10:14:57 1 9 2019-10-14 10:24:57 1 11 2019-10-14 10:29:57 1 10 2019-10-14 10:49:57 1 7 2019-10-14 10:54:57 1 9 2019-10-14 10:59:57 1 9 2019-10-14 11:19:57 1 8 2019-10-14 11:54:57 1 8 2019-10-14 11:54:57 2 2 2019-10-14 12:39:57 1 12 2019-10-14 12:39:57 2 1 2019-10-14 12:49:57 1 11 2019-10-14 12:59:57 1 14 2019-10-14 12:59:57 2 1 2019-10-14 13:09:57 1 13 2019-10-14 13:09:57 2 2 2019-10-14 13:14:57 1 11 2019-10-14 13:14:57 2 2 2019-10-14 13:24:57 1 14 2019-10-14 13:24:57 2 3 2019-10-14 13:49:57 2 2 2019-10-14 13:54:57 1 14 2019-10-14 13:54:57 2 2 2019-10-14 13:59:57 1 18 2019-10-14 13:59:57 2 2 2019-10-14 14:04:57 1 16 2019-10-14 14:04:57 2 1 2019-10-14 14:24:57 1 14 2019-10-14 14:24:57 2 1 2019-10-14 14:29:57 1 13 2019-10-14 14:29:57 2 1 2019-10-14 14:34:57 1 12 2019-10-14 14:34:57 2 1 2019-10-14 14:39:57 1 13 2019-10-14 14:39:57 2 1 2019-10-14 14:49:57 1 14 2019-10-14 14:49:57 2 1 2019-10-13 10:49:57 1 9 2019-10-13 11:19:57 1 10 2019-10-13 11:29:57 1 11 2019-10-13 11:34:57 1 10 2019-10-13 11:34:57 2 1 2019-10-13 11:54:57 1 11 2019-10-13 11:54:57 2 2 2019-10-13 12:29:57 1 13 2019-10-13 12:29:57 2 1 2019-10-13 12:34:57 1 10 2019-10-13 12:34:57 2 1 2019-10-13 12:49:57 1 9 2019-10-13 12:54:57 1 10 2019-10-13 13:04:57 1 13 2019-10-13 13:09:57 1 13 2019-10-13 13:14:57 1 9 2019-10-13 13:44:57 1 10 2019-10-13 13:44:57 2 2 2019-10-13 13:54:57 1 11 2019-10-13 13:54:57 2 1 2019-10-13 14:04:57 1 13 2019-10-13 14:04:57 2 1 2019-10-13 14:09:57 1 12 2019-10-13 14:09:57 2 1 2019-10-13 14:34:57 1 10 2019-10-13 14:34:57 2 2 2019-10-13 14:49:57 1 11 2019-10-13 14:49:57 2 2 2019-10-13 15:44:57 1 12 2019-10-13 15:44:57 2 4 2019-10-13 16:09:57 1 11 2019-10-13 16:09:57 2 2 2019-10-13 16:19:57 1 12 2019-10-13 16:19:57 2 3 2019-10-13 16:39:57 1 12 2019-10-13 16:39:57 2 1 2019-10-13 16:49:57 1 13 2019-10-13 16:49:57 2 1 2019-10-13 17:09:57 1 13 2019-10-13 17:09:57 2 3 2019-10-13 17:19:57 1 13 2019-10-13 17:19:57 2 2 2019-10-13 17:34:57 1 14 2019-10-13 17:34:57 2 1 2019-10-13 17:54:57 1 15 2019-10-13 17:54:57 2 3 2019-10-13 18:09:57 1 15 2019-10-13 18:09:57 2 5 2019-10-13 18:14:57 1 15 2019-10-13 18:14:57 2 5 2019-10-13 18:29:57 1 12 2019-10-13 18:29:57 2 3 2019-10-13 18:54:57 1 13 2019-10-13 18:54:57 2 4 2019-10-13 19:14:57 1 13 2019-10-13 19:14:57 2 6 2019-10-13 19:34:57 1 14 2019-10-13 19:34:57 2 5 2019-10-13 19:44:57 1 15 2019-10-13 19:44:57 2 4 2019-10-13 19:54:57 1 13 2019-10-13 19:54:57 2 5 2019-10-13 20:04:57 1 14 2019-10-13 20:04:57 2 6 2019-10-13 20:29:57 1 13 2019-10-13 20:29:57 2 2 2019-10-13 20:39:57 1 15 2019-10-13 20:39:57 2 3 2019-10-13 20:54:58 1 15 2019-10-13 20:54:58 2 3 2019-10-13 21:19:57 1 16 2019-10-13 21:19:57 2 2 2019-10-13 21:29:57 1 17 2019-10-13 21:29:57 2 3 2019-10-13 21:34:57 1 14 2019-10-13 21:34:57 2 2 2019-10-13 21:39:57 1 13 2019-10-13 21:39:57 2 3 2019-10-13 21:49:57 1 14 2019-10-13 21:49:57 2 3 2019-10-13 22:04:57 1 19 2019-10-13 22:04:57 2 1 2019-10-13 22:24:57 1 20 2019-10-13 22:24:57 2 2 2019-10-13 22:29:57 1 19 2019-10-13 22:29:57 2 1 2019-10-13 23:24:57 1 16 2019-10-13 23:24:57 2 1 2019-10-13 23:39:57 1 14 2019-10-13 23:39:57 2 1 2019-10-13 23:44:57 1 11 2019-10-13 23:44:57 2 1 2019-10-13 23:54:57 1 11 2019-10-13 23:54:57 2 1 2019-10-14 00:04:57 1 12 2019-10-14 00:04:57 2 1 2019-10-14 00:09:57 1 13 2019-10-14 00:09:57 2 1 2019-10-14 01:04:57 1 9 2019-10-14 01:09:57 1 8 2019-10-14 01:14:57 1 8 2019-10-14 01:34:57 1 7 2019-10-14 02:04:57 1 4 2019-10-14 02:09:57 1 4 2019-10-14 02:14:57 1 4 2019-10-14 02:19:57 1 4 2019-10-14 02:24:57 1 4 2019-10-14 02:29:57 1 4 2019-10-14 02:34:57 1 4 2019-10-14 02:39:57 1 4 2019-10-14 03:19:57 1 4 2019-10-14 03:24:57 1 4 2019-10-14 03:39:57 1 5 2019-10-14 03:44:57 1 5 2019-10-14 03:49:57 1 5 2019-10-14 04:14:57 1 5 2019-10-14 05:19:57 1 6 2019-10-14 05:34:57 1 6 2019-10-14 05:34:57 2 1 2019-10-14 05:39:57 1 6 2019-10-14 05:39:57 2 1 2019-10-14 06:14:57 1 9 2019-10-14 06:24:57 1 8 2019-10-14 06:24:57 2 1 2019-10-14 06:39:57 1 7 2019-10-14 07:09:57 1 9 2019-10-14 07:09:57 2 1 2019-10-14 07:39:57 1 6 2019-10-14 07:59:57 1 5 2019-10-14 08:09:57 1 6 2019-10-14 08:14:57 1 6 2019-10-14 08:19:57 1 6 2019-10-14 08:19:57 2 1 2019-10-14 08:29:57 1 5 2019-10-14 08:29:57 2 1 2019-10-14 08:44:57 1 7 2019-10-14 08:44:57 2 2 2019-10-14 08:54:57 1 10 2019-10-14 08:54:57 2 2 2019-10-14 09:19:57 1 9 2019-10-14 09:19:57 2 1 2019-10-14 09:34:57 1 11 2019-10-14 09:34:57 2 1 2019-10-14 09:39:57 1 11 2019-10-14 09:39:57 2 1 2019-10-14 09:49:57 1 9 2019-10-14 09:49:57 2 1 2019-10-14 09:59:57 1 10 2019-10-14 10:04:57 1 11 2019-10-14 10:19:57 1 10 2019-10-14 10:34:57 1 9 2019-10-14 11:04:57 1 9 2019-10-14 11:09:57 1 9 2019-10-14 11:14:57 1 9 2019-10-14 11:24:57 1 8 2019-10-14 11:29:57 1 8 2019-10-14 11:39:57 1 9 2019-10-14 11:39:57 2 2 2019-10-14 11:44:57 1 6 2019-10-14 11:44:57 2 2 2019-10-14 11:49:57 1 7 2019-10-14 11:49:57 2 2 2019-10-14 12:04:57 1 9 2019-10-14 12:04:57 2 2 2019-10-14 12:19:57 1 10 2019-10-14 12:19:57 2 1 2019-10-14 12:44:57 1 9 2019-10-14 12:44:57 2 1 2019-10-14 12:54:57 1 12 2019-10-14 13:04:57 1 12 2019-10-14 13:04:57 2 2 2019-10-14 13:34:57 1 16 2019-10-14 13:34:57 2 3 2019-10-14 13:39:57 1 15 2019-10-14 13:39:57 2 3 2019-10-14 13:44:57 1 16 2019-10-14 13:44:57 2 1 2019-10-14 14:09:57 1 16 2019-10-14 14:14:57 1 14 2019-10-14 14:19:57 1 14 2019-10-14 14:19:57 2 1 2019-10-14 14:44:57 1 12 2019-10-14 14:44:57 2 1 2019-10-14 14:54:57 1 14 2019-10-14 14:54:57 2 1 2019-10-13 11:04:57 1 9 2019-10-13 11:14:57 1 9 2019-10-13 11:24:57 1 11 2019-10-13 12:04:57 1 11 2019-10-13 12:04:57 2 2 2019-10-13 12:09:57 1 12 2019-10-13 12:09:57 2 1 2019-10-13 12:14:57 1 11 2019-10-13 12:14:57 2 1 2019-10-13 12:19:57 1 9 2019-10-13 12:19:57 2 1 2019-10-13 12:24:57 1 11 2019-10-13 12:24:57 2 1 2019-10-13 12:44:57 1 9 2019-10-13 12:59:57 1 9 2019-10-13 13:19:57 1 11 2019-10-13 13:29:57 1 11 2019-10-13 13:59:57 1 11 2019-10-13 13:59:57 2 1 2019-10-13 14:19:57 1 12 2019-10-13 14:19:57 2 1 2019-10-13 14:29:57 1 10 2019-10-13 14:29:57 2 2 2019-10-13 14:39:57 1 10 2019-10-13 14:39:57 2 2 2019-10-13 15:04:57 1 9 2019-10-13 15:04:57 2 2 2019-10-13 15:14:57 1 10 2019-10-13 15:14:57 2 2 2019-10-13 15:19:57 1 12 2019-10-13 15:19:57 2 2 2019-10-13 15:24:57 1 11 2019-10-13 15:24:57 2 3 2019-10-13 15:29:57 1 13 2019-10-13 15:29:57 2 3 2019-10-13 15:39:57 1 13 2019-10-13 15:39:57 2 4 2019-10-13 15:49:57 1 14 2019-10-13 15:49:57 2 3 2019-10-13 16:04:57 1 11 2019-10-13 16:04:57 2 2 2019-10-13 16:44:57 1 14 2019-10-13 16:44:57 2 1 2019-10-13 16:54:57 1 13 2019-10-13 16:54:57 2 1 2019-10-13 16:59:57 1 13 2019-10-13 16:59:57 2 1 2019-10-13 17:04:57 1 13 2019-10-13 17:04:57 2 2 2019-10-13 17:24:57 1 16 2019-10-13 17:24:57 2 2 2019-10-13 17:29:57 1 14 2019-10-13 17:29:57 2 1 2019-10-13 17:44:57 1 14 2019-10-13 17:44:57 2 1 2019-10-13 17:49:57 1 14 2019-10-13 17:49:57 2 3 2019-10-13 17:59:57 1 15 2019-10-13 17:59:57 2 3 2019-10-13 18:19:57 1 10 2019-10-13 18:19:57 2 4 2019-10-13 18:34:57 1 12 2019-10-13 18:34:57 2 3 2019-10-13 18:49:57 1 12 2019-10-13 18:49:57 2 4 2019-10-13 18:59:57 1 12 2019-10-13 18:59:57 2 5 2019-10-13 19:04:57 1 12 2019-10-13 19:04:57 2 5 2019-10-13 19:24:57 1 14 2019-10-13 19:24:57 2 6 2019-10-13 19:29:57 1 14 2019-10-13 19:29:57 2 6 2019-10-13 19:49:57 1 14 2019-10-13 19:49:57 2 4 2019-10-13 19:59:57 1 12 2019-10-13 19:59:57 2 5 2019-10-13 20:09:57 1 15 2019-10-13 20:09:57 2 5 2019-10-13 20:14:57 1 14 2019-10-13 20:14:57 2 5 2019-10-13 20:19:57 1 15 2019-10-13 20:19:57 2 5 2019-10-13 20:34:57 1 14 2019-10-13 20:34:57 2 3 2019-10-13 20:44:57 1 16 2019-10-13 20:44:57 2 3 2019-10-13 20:49:57 1 18 2019-10-13 20:49:57 2 3 2019-10-13 21:04:57 1 15 2019-10-13 21:04:57 2 3 2019-10-13 21:14:57 1 17 2019-10-13 21:14:57 2 1 2019-10-13 21:24:57 1 18 2019-10-13 21:24:57 2 2 2019-10-13 21:44:57 1 13 2019-10-13 21:44:57 2 4 2019-10-13 22:09:57 1 17 2019-10-13 22:09:57 2 1 2019-10-13 22:19:57 1 20 2019-10-13 22:19:57 2 2 2019-10-13 22:39:57 1 19 2019-10-13 22:39:57 2 1 2019-10-13 22:44:57 1 19 2019-10-13 22:44:57 2 1 2019-10-13 22:49:57 1 20 2019-10-13 22:49:57 2 1 2019-10-13 22:59:57 1 19 2019-10-13 22:59:57 2 2 2019-10-13 23:04:57 1 16 2019-10-13 23:04:57 2 2 2019-10-13 23:09:57 1 18 2019-10-13 23:09:57 2 2 2019-10-13 23:19:57 1 17 2019-10-13 23:19:57 2 1 2019-10-14 00:19:57 1 12 2019-10-14 00:19:57 2 1 2019-10-14 00:24:57 1 12 2019-10-14 00:24:57 2 1 2019-10-14 00:34:57 1 11 2019-10-14 00:39:57 1 11 2019-10-14 00:44:57 1 11 2019-10-14 00:49:57 1 11 2019-10-14 00:54:57 1 10 2019-10-14 01:39:57 1 6 2019-10-14 01:44:57 1 6 2019-10-14 02:44:57 1 5 2019-10-14 02:49:57 1 5 2019-10-14 02:54:57 1 5 2019-10-14 03:04:57 1 4 2019-10-14 03:29:57 1 5 2019-10-14 03:34:57 1 5 2019-10-14 04:19:57 1 5 2019-10-14 04:44:57 1 6 2019-10-14 04:49:57 1 6 2019-10-14 04:54:57 1 6 2019-10-14 04:59:57 1 6 2019-10-14 05:04:57 1 6 2019-10-14 05:09:57 1 6 2019-10-14 05:14:57 1 6 2019-10-14 05:24:57 1 6 2019-10-14 05:29:57 1 6 2019-10-14 05:54:57 1 6 2019-10-14 05:54:57 2 1 2019-10-14 05:59:57 1 6 2019-10-14 05:59:57 2 1 2019-10-14 06:04:57 1 6 2019-10-14 06:04:57 2 1 2019-10-14 06:44:57 1 8 2019-10-14 06:49:57 1 8 2019-10-14 07:14:57 1 10 2019-10-14 07:14:57 2 1 2019-10-14 08:24:57 1 6 2019-10-14 08:24:57 2 1 2019-10-14 08:39:57 1 8 2019-10-14 08:39:57 2 1 2019-10-14 08:59:57 1 10 2019-10-14 08:59:57 2 2 2019-10-14 09:04:57 1 8 2019-10-14 09:04:57 2 2 2019-10-14 09:14:57 1 7 2019-10-14 09:14:57 2 1 2019-10-14 09:29:57 1 9 2019-10-14 09:29:57 2 1 2019-10-14 10:09:57 1 8 2019-10-14 10:39:57 1 8 2019-10-14 10:44:57 1 8 2019-10-14 11:34:57 1 9 2019-10-14 11:34:57 2 1 2019-10-14 11:59:57 1 10 2019-10-14 11:59:57 2 2 2019-10-14 12:09:57 1 9 2019-10-14 12:14:57 1 7 2019-10-14 12:14:57 2 1 2019-10-14 12:24:57 1 8 2019-10-14 12:24:57 2 1 2019-10-14 12:29:57 1 9 2019-10-14 12:29:57 2 1 2019-10-14 12:34:57 1 9 2019-10-14 12:34:57 2 1 2019-10-14 13:19:57 1 11 2019-10-14 13:19:57 2 3 2019-10-14 13:29:57 1 14 2019-10-14 13:29:57 2 3 2019-10-14 13:49:57 1 16 2019-10-14 14:59:57 1 13 2019-10-14 14:59:57 2 1 2019-10-14 15:09:57 1 13 2019-10-14 15:09:57 2 1 2019-10-14 15:29:57 1 13 2019-10-14 15:29:57 2 2 2019-10-14 15:34:57 1 11 2019-10-14 15:34:57 2 2 2019-10-14 15:39:57 1 11 2019-10-14 15:39:57 2 2 2019-10-14 15:44:57 1 12 2019-10-14 15:44:57 2 1 2019-10-14 15:49:57 1 10 2019-10-14 15:54:57 1 11 2019-10-14 16:09:57 1 9 2019-10-14 16:24:57 1 8 2019-10-14 16:29:57 1 9 2019-10-14 16:34:57 1 9 2019-10-14 16:44:57 1 9 2019-10-14 17:14:57 1 12 2019-10-14 17:14:57 2 2 2019-10-14 17:24:57 1 10 2019-10-14 17:24:57 2 1 2019-10-14 17:39:57 1 14 2019-10-14 17:39:57 2 1 2019-10-14 17:44:57 1 12 2019-10-14 17:44:57 2 2 2019-10-14 18:34:57 1 11 2019-10-14 18:34:57 2 1 2019-10-14 18:39:57 1 12 2019-10-14 18:59:57 1 17 2019-10-14 19:04:57 1 16 2019-10-14 19:29:57 1 14 2019-10-14 19:29:57 2 1 2019-10-14 19:44:57 1 11 2019-10-14 19:44:57 2 1 2019-10-14 20:04:57 1 12 2019-10-14 20:04:57 2 1 2019-10-14 20:09:57 1 12 2019-10-14 20:09:57 2 1 2019-10-14 20:24:57 1 15 2019-10-14 20:24:57 2 2 2019-10-14 20:49:57 1 14 2019-10-14 20:49:57 2 3 2019-10-14 20:59:57 1 16 2019-10-14 20:59:57 2 2 2019-10-14 21:04:57 1 15 2019-10-14 21:04:57 2 2 2019-10-14 21:29:57 1 18 2019-10-14 21:29:57 2 1 2019-10-14 21:44:57 1 15 2019-10-14 21:44:57 2 1 2019-10-14 21:49:57 1 17 2019-10-14 21:49:57 2 1 2019-10-14 22:04:57 1 17 2019-10-14 22:04:57 2 2 2019-10-14 22:29:57 1 15 2019-10-14 22:29:57 2 1 2019-10-14 22:59:57 1 13 2019-10-14 23:04:57 1 12 2019-10-14 23:04:57 2 1 2019-10-14 23:19:57 1 14 2019-10-14 23:19:57 2 2 2019-10-14 23:24:57 1 12 2019-10-14 23:24:57 2 2 2019-10-14 23:39:57 1 14 2019-10-14 23:39:57 2 2 2019-10-14 23:54:57 1 13 2019-10-14 23:54:57 2 2 2019-10-15 00:24:57 1 12 2019-10-15 00:24:57 2 2 2019-10-15 00:59:57 1 10 2019-10-15 00:59:57 2 1 2019-10-15 01:09:57 1 10 2019-10-15 01:09:57 2 1 2019-10-15 01:24:57 1 10 2019-10-15 01:24:57 2 1 2019-10-15 01:29:58 1 10 2019-10-15 01:29:58 2 1 2019-10-15 02:14:57 1 9 2019-10-15 02:14:57 2 1 2019-10-15 02:24:57 1 9 2019-10-15 02:24:57 2 1 2019-10-15 02:29:57 1 8 2019-10-15 02:29:57 2 1 2019-10-15 02:44:57 1 8 2019-10-15 02:44:57 2 1 2019-10-15 02:49:57 1 8 2019-10-15 02:49:57 2 1 2019-10-15 03:04:57 1 8 2019-10-15 03:04:57 2 1 2019-10-15 03:09:57 1 8 2019-10-15 03:09:57 2 1 2019-10-15 03:39:57 1 7 2019-10-15 03:39:57 2 1 2019-10-15 04:04:57 1 7 2019-10-15 04:04:57 2 2 2019-10-15 04:09:57 1 6 2019-10-15 04:09:57 2 2 2019-10-15 04:14:57 1 6 2019-10-15 04:14:57 2 1 2019-10-15 04:19:57 1 6 2019-10-15 04:19:57 2 1 2019-10-15 04:54:57 1 8 2019-10-15 05:04:57 1 7 2019-10-15 05:09:57 1 7 2019-10-15 05:14:57 1 7 2019-10-15 05:34:57 1 6 2019-10-15 05:49:57 1 6 2019-10-15 05:54:57 1 7 2019-10-15 06:04:57 1 8 2019-10-15 06:44:57 1 7 2019-10-15 06:54:57 1 6 2019-10-15 07:04:57 1 7 2019-10-15 07:04:57 2 1 2019-10-15 07:24:57 1 8 2019-10-15 07:29:57 1 9 2019-10-15 07:49:57 1 7 2019-10-15 08:09:57 1 12 2019-10-15 08:09:57 2 2 2019-10-15 08:19:57 1 13 2019-10-15 08:19:57 2 2 2019-10-15 08:39:57 1 14 2019-10-15 08:39:57 2 1 2019-10-15 08:44:57 1 14 2019-10-15 08:44:57 2 1 2019-10-15 08:54:57 1 13 2019-10-15 08:54:57 2 1 2019-10-15 08:59:57 1 14 2019-10-15 08:59:57 2 1 2019-10-15 09:04:57 1 15 2019-10-15 09:04:57 2 1 2019-10-15 09:09:57 1 15 2019-10-15 09:09:57 2 2 2019-10-15 09:14:57 1 16 2019-10-15 09:14:57 2 2 2019-10-15 09:29:57 1 14 2019-10-15 09:29:57 2 2 2019-10-15 09:39:57 1 12 2019-10-15 09:39:57 2 1 2019-10-15 10:09:57 1 16 2019-10-15 10:09:57 2 1 2019-10-15 10:14:57 1 16 2019-10-15 10:14:57 2 1 2019-10-15 10:34:57 1 14 2019-10-15 10:34:57 2 1 2019-10-15 10:39:57 1 14 2019-10-15 10:39:57 2 1 2019-10-15 11:04:57 1 12 2019-10-15 11:04:57 2 1 2019-10-15 11:24:57 1 11 2019-10-15 11:24:57 2 1 2019-10-15 11:49:57 1 15 2019-10-15 11:49:57 2 1 2019-10-15 11:54:57 1 15 2019-10-15 11:54:57 2 1 2019-10-15 12:24:57 1 16 2019-10-15 12:24:57 2 2 2019-10-15 12:49:57 1 19 2019-10-15 12:49:57 2 3 2019-10-15 12:54:57 1 17 2019-10-15 12:54:57 2 3 2019-10-15 12:59:57 1 15 2019-10-15 12:59:57 2 2 2019-10-15 13:09:57 1 14 2019-10-15 13:09:57 2 3 2019-10-15 13:44:57 1 13 2019-10-15 13:44:57 2 2 2019-10-15 13:59:57 1 16 2019-10-15 13:59:57 2 2 2019-10-15 14:04:57 1 16 2019-10-15 14:04:57 2 1 2019-10-15 14:19:57 1 16 2019-10-15 14:19:57 2 1 2019-10-15 14:49:57 1 16 2019-10-15 14:49:57 2 1 2019-10-15 15:09:57 1 13 2019-10-15 15:24:57 1 13 2019-10-15 15:24:57 2 1 2019-10-15 15:29:57 1 13 2019-10-15 15:29:57 2 1 2019-10-15 15:34:57 1 13 2019-10-15 15:34:57 2 1 2019-10-15 15:44:57 1 14 2019-10-15 15:44:57 2 1 2019-10-14 15:04:57 1 13 2019-10-14 15:04:57 2 3 2019-10-14 15:19:57 1 11 2019-10-14 15:19:57 2 2 2019-10-14 16:04:57 1 11 2019-10-14 16:14:57 1 10 2019-10-14 16:39:57 1 7 2019-10-14 16:54:57 1 11 2019-10-14 16:59:57 1 10 2019-10-14 17:29:57 1 11 2019-10-14 17:29:57 2 2 2019-10-14 17:34:57 1 13 2019-10-14 17:34:57 2 1 2019-10-14 17:49:57 1 10 2019-10-14 17:49:57 2 2 2019-10-14 17:59:57 1 9 2019-10-14 17:59:57 2 1 2019-10-14 18:24:57 1 11 2019-10-14 18:24:57 2 1 2019-10-14 19:09:57 1 16 2019-10-14 19:39:57 1 11 2019-10-14 19:39:57 2 1 2019-10-14 19:49:57 1 12 2019-10-14 19:49:57 2 1 2019-10-14 20:14:57 1 12 2019-10-14 20:14:57 2 2 2019-10-14 20:19:57 1 15 2019-10-14 20:19:57 2 2 2019-10-14 20:34:57 1 16 2019-10-14 20:34:57 2 2 2019-10-14 20:39:57 1 15 2019-10-14 20:39:57 2 2 2019-10-14 20:44:57 1 13 2019-10-14 20:44:57 2 2 2019-10-14 20:54:57 1 17 2019-10-14 20:54:57 2 2 2019-10-14 21:14:57 1 15 2019-10-14 21:14:57 2 1 2019-10-14 21:34:57 1 17 2019-10-14 21:34:57 2 1 2019-10-14 21:54:57 1 16 2019-10-14 21:54:57 2 1 2019-10-14 21:59:57 1 15 2019-10-14 21:59:57 2 2 2019-10-14 22:34:57 1 11 2019-10-14 22:34:57 2 1 2019-10-14 22:49:57 1 13 2019-10-14 22:54:57 1 12 2019-10-14 23:29:57 1 12 2019-10-14 23:29:57 2 2 2019-10-14 23:44:57 1 13 2019-10-14 23:44:57 2 2 2019-10-15 00:34:57 1 12 2019-10-15 00:34:57 2 3 2019-10-15 00:49:57 1 10 2019-10-15 00:49:57 2 1 2019-10-15 01:14:57 1 10 2019-10-15 01:14:57 2 1 2019-10-15 01:19:57 1 11 2019-10-15 01:19:57 2 1 2019-10-15 01:39:57 1 10 2019-10-15 01:39:57 2 1 2019-10-15 01:59:57 1 10 2019-10-15 01:59:57 2 1 2019-10-15 02:04:57 1 9 2019-10-15 02:04:57 2 1 2019-10-15 02:34:57 1 8 2019-10-15 02:34:57 2 1 2019-10-15 02:39:57 1 8 2019-10-15 02:39:57 2 1 2019-10-15 02:54:57 1 8 2019-10-15 02:54:57 2 1 2019-10-15 02:59:57 1 8 2019-10-15 02:59:57 2 1 2019-10-15 03:14:57 1 8 2019-10-15 03:14:57 2 1 2019-10-15 03:19:57 1 7 2019-10-15 03:19:57 2 1 2019-10-15 03:24:57 1 7 2019-10-15 03:24:57 2 1 2019-10-15 03:44:57 1 7 2019-10-15 03:44:57 2 1 2019-10-15 03:49:57 1 7 2019-10-15 03:49:57 2 2 2019-10-15 03:59:57 1 7 2019-10-15 03:59:57 2 2 2019-10-15 04:24:57 1 6 2019-10-15 04:24:57 2 1 2019-10-15 04:29:57 1 6 2019-10-15 04:29:57 2 1 2019-10-15 04:39:57 1 6 2019-10-15 04:49:57 1 7 2019-10-15 04:59:57 1 7 2019-10-15 05:19:57 1 7 2019-10-15 05:24:57 1 7 2019-10-15 05:29:57 1 7 2019-10-15 05:39:57 1 6 2019-10-15 05:59:57 1 8 2019-10-15 06:09:57 1 8 2019-10-15 06:14:57 1 8 2019-10-15 06:19:57 1 7 2019-10-15 06:24:57 1 7 2019-10-15 06:29:57 1 7 2019-10-15 06:34:57 1 6 2019-10-15 07:09:57 1 6 2019-10-15 07:14:57 1 6 2019-10-15 07:19:57 1 7 2019-10-15 07:39:57 1 8 2019-10-15 07:44:57 1 9 2019-10-15 07:54:57 1 9 2019-10-15 07:54:57 2 1 2019-10-15 07:59:57 1 11 2019-10-15 07:59:57 2 1 2019-10-15 08:04:57 1 12 2019-10-15 08:04:57 2 1 2019-10-15 08:29:57 1 12 2019-10-15 08:29:57 2 3 2019-10-15 09:24:57 1 15 2019-10-15 09:24:57 2 1 2019-10-15 09:34:57 1 13 2019-10-15 09:34:57 2 2 2019-10-15 10:19:57 1 13 2019-10-15 10:19:57 2 1 2019-10-15 10:24:57 1 14 2019-10-15 10:24:57 2 1 2019-10-15 10:29:57 1 14 2019-10-15 10:29:57 2 1 2019-10-15 10:44:57 1 12 2019-10-15 10:44:57 2 1 2019-10-15 10:49:57 1 12 2019-10-15 10:49:57 2 1 2019-10-15 11:29:57 1 11 2019-10-15 11:29:57 2 1 2019-10-15 11:44:57 1 14 2019-10-15 11:44:57 2 1 2019-10-15 12:14:57 1 15 2019-10-15 12:14:57 2 1 2019-10-15 12:39:57 1 17 2019-10-15 12:39:57 2 3 2019-10-15 12:44:57 1 18 2019-10-15 12:44:57 2 3 2019-10-15 13:04:57 1 15 2019-10-15 13:04:57 2 2 2019-10-15 13:29:57 1 15 2019-10-15 13:29:57 2 3 2019-10-15 13:34:57 1 15 2019-10-15 13:34:57 2 2 2019-10-15 13:54:57 1 14 2019-10-15 13:54:57 2 2 2019-10-15 14:09:57 1 15 2019-10-15 14:09:57 2 1 2019-10-15 14:14:57 1 15 2019-10-15 14:14:57 2 1 2019-10-15 14:24:57 1 17 2019-10-15 14:24:57 2 1 2019-10-15 14:29:57 1 15 2019-10-15 14:29:57 2 1 2019-10-15 14:34:58 1 15 2019-10-15 14:34:58 2 1 2019-10-15 14:44:57 1 16 2019-10-15 14:44:57 2 3 2019-10-15 14:59:57 1 16 2019-10-15 15:04:57 1 14 2019-10-15 15:19:57 1 12 2019-10-15 15:19:57 2 1 2019-10-15 15:39:57 1 13 2019-10-15 15:39:57 2 1 2019-10-15 15:49:57 1 14 2019-10-15 15:49:57 2 1 2019-10-15 15:54:57 1 15 2019-10-15 15:54:57 2 1 2019-10-15 15:59:57 1 14 2019-10-15 15:59:57 2 1 2019-10-15 16:04:57 1 14 2019-10-15 16:04:57 2 1 2019-10-15 16:09:57 1 17 2019-10-15 16:09:57 2 1 2019-10-15 16:14:57 1 15 2019-10-15 16:14:57 2 3 2019-10-15 16:24:57 1 15 2019-10-15 16:24:57 2 2 2019-10-15 16:29:57 1 13 2019-10-15 16:29:57 2 2 2019-10-15 16:39:57 1 12 2019-10-15 16:39:57 2 3 2019-10-14 15:14:57 1 11 2019-10-14 15:14:57 2 2 2019-10-14 15:24:57 1 11 2019-10-14 15:24:57 2 2 2019-10-14 15:59:57 1 10 2019-10-14 16:19:57 1 10 2019-10-14 16:49:57 1 10 2019-10-14 17:04:57 1 11 2019-10-14 17:09:57 1 12 2019-10-14 17:19:57 1 13 2019-10-14 17:19:57 2 1 2019-10-14 17:54:57 1 10 2019-10-14 17:54:57 2 2 2019-10-14 18:04:57 1 12 2019-10-14 18:04:57 2 1 2019-10-14 18:09:57 1 11 2019-10-14 18:09:57 2 1 2019-10-14 18:14:57 1 12 2019-10-14 18:14:57 2 1 2019-10-14 18:19:57 1 11 2019-10-14 18:19:57 2 1 2019-10-14 18:29:57 1 13 2019-10-14 18:29:57 2 1 2019-10-14 18:44:57 1 15 2019-10-14 18:49:57 1 16 2019-10-14 18:54:57 1 15 2019-10-14 19:14:57 1 16 2019-10-14 19:14:57 2 1 2019-10-14 19:19:57 1 15 2019-10-14 19:19:57 2 3 2019-10-14 19:24:57 1 14 2019-10-14 19:24:57 2 3 2019-10-14 19:34:57 1 12 2019-10-14 19:34:57 2 1 2019-10-14 19:54:57 1 13 2019-10-14 19:54:57 2 1 2019-10-14 19:59:57 1 12 2019-10-14 19:59:57 2 1 2019-10-14 20:29:57 1 17 2019-10-14 20:29:57 2 2 2019-10-14 21:09:57 1 16 2019-10-14 21:09:57 2 1 2019-10-14 21:19:57 1 17 2019-10-14 21:19:57 2 1 2019-10-14 21:24:57 1 18 2019-10-14 21:24:57 2 1 2019-10-14 21:39:57 1 17 2019-10-14 21:39:57 2 1 2019-10-14 22:09:57 1 17 2019-10-14 22:09:57 2 1 2019-10-14 22:14:57 1 15 2019-10-14 22:14:57 2 2 2019-10-14 22:19:57 1 14 2019-10-14 22:19:57 2 2 2019-10-14 22:24:57 1 13 2019-10-14 22:24:57 2 1 2019-10-14 22:39:57 1 8 2019-10-14 22:44:57 1 12 2019-10-14 23:09:57 1 13 2019-10-14 23:09:57 2 1 2019-10-14 23:14:57 1 15 2019-10-14 23:14:57 2 2 2019-10-14 23:34:57 1 15 2019-10-14 23:34:57 2 2 2019-10-14 23:49:57 1 13 2019-10-14 23:49:57 2 2 2019-10-14 23:59:57 1 15 2019-10-14 23:59:57 2 2 2019-10-15 00:04:57 1 15 2019-10-15 00:04:57 2 1 2019-10-15 00:09:57 1 14 2019-10-15 00:09:57 2 1 2019-10-15 00:14:57 1 14 2019-10-15 00:14:57 2 2 2019-10-15 00:19:57 1 12 2019-10-15 00:19:57 2 2 2019-10-15 00:29:57 1 14 2019-10-15 00:29:57 2 2 2019-10-15 00:39:57 1 11 2019-10-15 00:39:57 2 2 2019-10-15 00:44:57 1 10 2019-10-15 00:44:57 2 2 2019-10-15 00:54:57 1 10 2019-10-15 00:54:57 2 2 2019-10-15 01:04:57 1 10 2019-10-15 01:04:57 2 1 2019-10-15 01:34:57 1 10 2019-10-15 01:34:57 2 1 2019-10-15 01:44:57 1 12 2019-10-15 01:44:57 2 1 2019-10-15 01:49:57 1 10 2019-10-15 01:49:57 2 1 2019-10-15 01:54:57 1 10 2019-10-15 01:54:57 2 1 2019-10-15 02:09:57 1 9 2019-10-15 02:09:57 2 1 2019-10-15 02:19:57 1 9 2019-10-15 02:19:57 2 1 2019-10-15 03:29:57 1 7 2019-10-15 03:29:57 2 1 2019-10-15 03:34:57 1 7 2019-10-15 03:34:57 2 1 2019-10-15 03:54:57 1 7 2019-10-15 03:54:57 2 2 2019-10-15 04:34:57 1 6 2019-10-15 04:34:57 2 1 2019-10-15 04:44:57 1 6 2019-10-15 05:44:57 1 6 2019-10-15 06:39:57 1 5 2019-10-15 06:49:57 1 7 2019-10-15 06:59:57 1 7 2019-10-15 06:59:57 2 1 2019-10-15 07:34:57 1 11 2019-10-15 08:14:57 1 11 2019-10-15 08:14:57 2 2 2019-10-15 08:24:57 1 13 2019-10-15 08:24:57 2 2 2019-10-15 08:34:57 1 13 2019-10-15 08:34:57 2 2 2019-10-15 08:49:57 1 13 2019-10-15 08:49:57 2 1 2019-10-15 09:19:57 1 15 2019-10-15 09:19:57 2 2 2019-10-15 09:44:57 1 12 2019-10-15 09:44:57 2 1 2019-10-15 09:49:57 1 12 2019-10-15 09:49:57 2 1 2019-10-15 09:54:57 1 12 2019-10-15 09:54:57 2 1 2019-10-15 09:59:57 1 13 2019-10-15 09:59:57 2 1 2019-10-15 10:04:57 1 16 2019-10-15 10:04:57 2 1 2019-10-15 10:54:57 1 13 2019-10-15 10:54:57 2 1 2019-10-15 10:59:57 1 13 2019-10-15 10:59:57 2 1 2019-10-15 11:09:57 1 10 2019-10-15 11:09:57 2 1 2019-10-15 11:14:57 1 11 2019-10-15 11:14:57 2 1 2019-10-15 11:19:57 1 10 2019-10-15 11:19:57 2 1 2019-10-15 11:34:57 1 9 2019-10-15 11:34:57 2 1 2019-10-15 11:39:57 1 10 2019-10-15 11:39:57 2 1 2019-10-15 11:59:57 1 14 2019-10-15 11:59:57 2 1 2019-10-15 12:04:57 1 15 2019-10-15 12:04:57 2 1 2019-10-15 12:09:57 1 15 2019-10-15 12:09:57 2 1 2019-10-15 12:19:57 1 14 2019-10-15 12:19:57 2 1 2019-10-15 12:29:57 1 16 2019-10-15 12:29:57 2 2 2019-10-15 12:34:57 1 16 2019-10-15 12:34:57 2 3 2019-10-15 13:14:57 1 14 2019-10-15 13:14:57 2 3 2019-10-15 13:19:57 1 14 2019-10-15 13:19:57 2 2 2019-10-15 13:24:57 1 14 2019-10-15 13:24:57 2 3 2019-10-15 13:39:57 1 14 2019-10-15 13:39:57 2 2 2019-10-15 13:49:57 1 16 2019-10-15 13:49:57 2 2 2019-10-15 14:39:57 1 15 2019-10-15 14:39:57 2 2 2019-10-15 14:54:57 1 15 2019-10-15 15:14:57 1 13 2019-10-15 16:19:57 1 15 2019-10-15 16:19:57 2 4 2019-10-15 16:34:57 1 12 2019-10-15 16:34:57 2 2 2019-10-15 16:44:57 1 15 2019-10-15 16:44:57 2 2 2019-10-15 16:49:57 1 13 2019-10-15 16:49:57 2 3 2019-10-15 16:54:57 1 14 2019-10-15 16:54:57 2 3 2019-10-15 16:59:57 1 14 2019-10-15 16:59:57 2 3 2019-10-15 17:04:57 1 14 2019-10-15 17:04:57 2 3 2019-10-15 17:14:57 1 16 2019-10-15 17:14:57 2 2 2019-10-15 17:19:57 1 15 2019-10-15 17:19:57 2 2 2019-10-15 17:29:57 1 16 2019-10-15 17:29:57 2 2 2019-10-15 17:34:57 1 16 2019-10-15 17:34:57 2 1 2019-10-15 17:39:57 1 15 2019-10-15 17:39:57 2 3 2019-10-15 18:34:57 1 18 2019-10-15 18:34:57 2 4 2019-10-15 18:39:57 1 18 2019-10-15 18:39:57 2 4 2019-10-15 18:54:57 1 16 2019-10-15 18:54:57 2 4 2019-10-15 19:14:57 1 17 2019-10-15 19:14:57 2 3 2019-10-15 19:19:57 1 18 2019-10-15 19:19:57 2 4 2019-10-15 19:34:57 1 17 2019-10-15 19:34:57 2 3 2019-10-15 19:39:57 1 17 2019-10-15 19:39:57 2 3 2019-10-15 19:44:57 1 15 2019-10-15 19:44:57 2 3 2019-10-15 19:59:57 1 17 2019-10-15 19:59:57 2 2 2019-10-15 20:44:57 1 14 2019-10-15 20:54:57 1 12 2019-10-15 20:54:57 2 1 2019-10-15 21:14:57 1 11 2019-10-15 21:14:57 2 1 2019-10-15 21:34:57 1 9 2019-10-15 21:34:57 2 1 2019-10-15 21:39:57 1 12 2019-10-15 21:39:57 2 1 2019-10-15 22:19:57 1 12 2019-10-15 22:19:57 2 1 2019-10-15 22:29:57 1 10 2019-10-15 22:29:57 2 2 2019-10-15 22:34:57 1 12 2019-10-15 22:34:57 2 2 2019-10-15 22:59:57 1 16 2019-10-15 22:59:57 2 1 2019-10-15 23:29:57 1 15 2019-10-15 23:29:57 2 1 2019-10-15 23:54:57 1 14 2019-10-15 23:54:57 2 1 2019-10-15 23:59:57 1 13 2019-10-15 23:59:57 2 1 2019-10-16 00:04:57 1 12 2019-10-16 00:04:57 2 1 2019-10-16 00:34:57 1 11 2019-10-16 00:34:57 2 1 2019-10-16 00:39:57 1 10 2019-10-16 00:44:57 1 10 2019-10-16 00:49:57 1 10 2019-10-16 00:59:57 1 9 2019-10-16 01:04:57 1 9 2019-10-16 01:14:57 1 10 2019-10-16 01:29:57 1 10 2019-10-16 01:39:57 1 10 2019-10-16 01:54:57 1 8 2019-10-16 01:59:57 1 9 2019-10-16 02:04:57 1 9 2019-10-16 02:19:57 1 8 2019-10-16 02:24:57 1 9 2019-10-16 02:39:57 1 9 2019-10-16 02:49:57 1 9 2019-10-16 02:54:57 1 8 2019-10-16 02:59:57 1 9 2019-10-16 03:09:57 1 9 2019-10-16 03:14:57 1 8 2019-10-16 03:24:57 1 8 2019-10-16 03:39:57 1 7 2019-10-16 04:04:57 1 7 2019-10-16 04:09:57 1 8 2019-10-16 04:14:57 1 8 2019-10-16 04:39:57 1 6 2019-10-16 04:49:57 1 7 2019-10-16 05:14:57 1 8 2019-10-16 05:34:57 1 8 2019-10-16 05:49:57 1 10 2019-10-16 06:09:57 1 9 2019-10-16 06:39:57 1 11 2019-10-16 06:49:57 1 9 2019-10-16 06:54:57 1 10 2019-10-16 06:59:57 1 9 2019-10-16 07:19:57 1 8 2019-10-16 07:39:57 1 9 2019-10-16 07:44:57 1 10 2019-10-16 07:49:57 1 12 2019-10-16 08:19:57 1 12 2019-10-16 08:19:57 2 2 2019-10-16 08:49:57 1 13 2019-10-16 08:49:57 2 1 2019-10-16 09:04:57 1 13 2019-10-16 09:04:57 2 1 2019-10-16 09:24:57 1 12 2019-10-16 09:24:57 2 1 2019-10-16 09:29:57 1 13 2019-10-16 09:29:57 2 1 2019-10-16 09:49:57 1 13 2019-10-16 09:49:57 2 1 2019-10-16 09:54:57 1 11 2019-10-16 09:54:57 2 1 2019-10-16 10:04:57 1 13 2019-10-16 10:04:57 2 1 2019-10-16 10:14:57 1 14 2019-10-16 10:14:57 2 1 2019-10-16 10:39:57 1 16 2019-10-16 10:49:57 1 13 2019-10-16 11:24:57 1 16 2019-10-16 11:29:57 1 14 2019-10-16 11:39:57 1 14 2019-10-16 12:29:57 1 15 2019-10-16 12:29:57 2 1 2019-10-16 12:44:57 1 13 2019-10-16 12:44:57 2 1 2019-10-16 12:49:57 1 14 2019-10-16 12:49:57 2 1 2019-10-16 12:54:57 1 12 2019-10-16 12:54:57 2 2 2019-10-16 13:14:57 1 15 2019-10-16 13:14:57 2 2 2019-10-16 13:19:57 1 16 2019-10-16 13:19:57 2 2 2019-10-16 13:24:57 1 15 2019-10-16 13:24:57 2 2 2019-10-16 13:29:57 1 16 2019-10-16 13:29:57 2 2 2019-10-16 13:34:57 1 17 2019-10-16 13:34:57 2 2 2019-10-16 13:44:57 1 16 2019-10-16 13:44:57 2 2 2019-10-16 14:09:57 1 14 2019-10-16 14:09:57 2 1 2019-10-16 15:14:57 1 16 2019-10-16 15:24:57 1 17 2019-10-16 15:49:57 1 13 2019-10-16 16:14:57 1 12 2019-10-16 16:14:57 2 1 2019-10-16 16:29:57 1 13 2019-10-16 16:29:57 2 1 2019-10-16 16:39:57 1 14 2019-10-16 16:39:57 2 1 2019-10-16 16:54:57 1 11 2019-10-16 16:54:57 2 1 2019-10-16 16:59:57 1 12 2019-10-16 16:59:57 2 1 2019-10-16 17:09:57 1 11 2019-10-16 17:09:57 2 1 2019-10-16 17:14:57 1 9 2019-10-16 17:14:57 2 1 2019-10-16 17:34:57 1 8 2019-10-16 17:34:57 2 1 2019-10-16 17:44:57 1 8 2019-10-16 17:44:57 2 2 2019-10-16 17:54:57 1 8 2019-10-16 17:54:57 2 2 2019-10-16 18:09:57 1 11 2019-10-16 18:09:57 2 1 2019-10-16 18:19:57 1 11 2019-10-16 18:29:57 1 11 2019-10-16 18:29:57 2 1 2019-10-16 18:34:57 1 12 2019-10-16 18:34:57 2 1 2019-10-16 18:39:57 1 11 2019-10-16 18:39:57 2 1 2019-10-16 18:49:57 1 11 2019-10-16 18:49:57 2 1 2019-10-16 19:29:57 1 11 2019-10-16 19:29:57 2 2 2019-10-16 19:34:57 1 10 2019-10-16 19:34:57 2 2 2019-10-16 19:39:57 1 11 2019-10-16 19:39:57 2 2 2019-10-16 19:49:57 2 2 2019-10-16 19:54:57 1 12 2019-10-16 19:54:57 2 3 2019-10-16 20:09:57 1 10 2019-10-16 20:09:57 2 2 2019-10-15 17:09:57 1 16 2019-10-15 17:09:57 2 2 2019-10-15 17:24:57 1 17 2019-10-15 17:24:57 2 2 2019-10-15 17:44:57 1 15 2019-10-15 17:44:57 2 2 2019-10-15 17:49:57 1 17 2019-10-15 17:49:57 2 2 2019-10-15 17:59:57 1 20 2019-10-15 17:59:57 2 2 2019-10-15 18:09:57 1 16 2019-10-15 18:09:57 2 2 2019-10-15 18:19:57 1 16 2019-10-15 18:19:57 2 2 2019-10-15 18:44:57 1 16 2019-10-15 18:44:57 2 4 2019-10-15 19:24:57 1 19 2019-10-15 19:24:57 2 4 2019-10-15 19:29:57 1 18 2019-10-15 19:29:57 2 3 2019-10-15 19:54:57 1 15 2019-10-15 19:54:57 2 3 2019-10-15 20:24:57 1 13 2019-10-15 20:34:57 1 11 2019-10-15 20:49:57 1 10 2019-10-15 20:49:57 2 1 2019-10-15 21:09:57 1 13 2019-10-15 21:09:57 2 1 2019-10-15 21:19:57 1 10 2019-10-15 21:19:57 2 1 2019-10-15 21:44:57 1 17 2019-10-15 21:44:57 2 1 2019-10-15 21:49:57 1 18 2019-10-15 21:49:57 2 1 2019-10-15 22:04:57 1 12 2019-10-15 22:04:57 2 1 2019-10-15 22:09:57 1 12 2019-10-15 22:09:57 2 1 2019-10-15 22:14:57 1 13 2019-10-15 22:14:57 2 1 2019-10-15 22:24:57 1 11 2019-10-15 22:24:57 2 2 2019-10-15 22:44:57 1 15 2019-10-15 22:44:57 2 3 2019-10-15 23:14:57 1 15 2019-10-15 23:14:57 2 1 2019-10-15 23:19:57 1 16 2019-10-15 23:19:57 2 1 2019-10-15 23:24:57 1 15 2019-10-15 23:24:57 2 1 2019-10-15 23:34:57 1 13 2019-10-15 23:34:57 2 1 2019-10-15 23:44:57 1 14 2019-10-15 23:44:57 2 2 2019-10-15 23:49:57 1 13 2019-10-15 23:49:57 2 2 2019-10-16 00:09:57 1 11 2019-10-16 00:09:57 2 1 2019-10-16 00:19:59 1 13 2019-10-16 00:19:59 2 1 2019-10-16 00:54:57 1 10 2019-10-16 01:19:57 1 10 2019-10-16 01:24:57 1 10 2019-10-16 02:14:57 1 8 2019-10-16 02:44:57 1 9 2019-10-16 03:29:57 1 8 2019-10-16 03:49:57 1 8 2019-10-16 03:59:57 1 8 2019-10-16 04:19:57 1 7 2019-10-16 04:29:57 1 6 2019-10-16 04:44:57 1 7 2019-10-16 04:54:57 1 8 2019-10-16 04:59:57 1 8 2019-10-16 06:19:57 1 9 2019-10-16 07:04:57 1 8 2019-10-16 07:24:57 1 8 2019-10-16 07:59:57 1 11 2019-10-16 07:59:57 2 1 2019-10-16 08:04:57 1 14 2019-10-16 08:04:57 2 1 2019-10-16 08:09:57 1 12 2019-10-16 08:09:57 2 1 2019-10-16 08:24:57 1 12 2019-10-16 08:24:57 2 2 2019-10-16 08:29:57 1 12 2019-10-16 08:29:57 2 2 2019-10-16 08:34:57 1 12 2019-10-16 08:34:57 2 2 2019-10-16 08:44:57 1 13 2019-10-16 08:44:57 2 1 2019-10-16 08:54:57 1 14 2019-10-16 08:54:57 2 1 2019-10-16 09:09:57 1 13 2019-10-16 09:09:57 2 1 2019-10-16 09:44:57 1 13 2019-10-16 09:44:57 2 1 2019-10-16 09:59:57 1 11 2019-10-16 09:59:57 2 1 2019-10-16 10:19:57 1 15 2019-10-16 10:19:57 2 1 2019-10-16 10:29:57 1 15 2019-10-16 10:29:57 2 1 2019-10-16 10:54:57 1 14 2019-10-16 11:04:57 1 19 2019-10-16 11:09:57 1 20 2019-10-16 11:14:57 1 18 2019-10-16 11:14:57 2 1 2019-10-16 11:34:57 1 16 2019-10-16 12:34:57 1 13 2019-10-16 12:34:57 2 2 2019-10-16 13:09:57 1 14 2019-10-16 13:09:57 2 3 2019-10-16 13:49:57 1 14 2019-10-16 13:49:57 2 2 2019-10-16 14:24:57 1 14 2019-10-16 14:29:57 1 16 2019-10-16 14:34:57 1 15 2019-10-16 14:39:57 1 13 2019-10-16 15:04:57 1 16 2019-10-16 15:09:57 1 18 2019-10-16 15:39:57 1 15 2019-10-16 15:44:57 1 15 2019-10-16 15:54:57 1 11 2019-10-16 15:59:57 1 11 2019-10-16 16:09:57 1 12 2019-10-16 16:19:57 1 12 2019-10-16 16:19:57 2 1 2019-10-16 16:24:57 1 12 2019-10-16 16:24:57 2 1 2019-10-16 16:44:57 1 12 2019-10-16 16:44:57 2 1 2019-10-16 17:24:57 1 9 2019-10-16 17:24:57 2 1 2019-10-16 18:04:57 1 11 2019-10-16 18:04:57 2 1 2019-10-16 18:24:57 1 10 2019-10-16 18:24:57 2 1 2019-10-16 19:04:57 1 9 2019-10-16 19:04:57 2 3 2019-10-16 19:09:57 1 10 2019-10-16 19:09:57 2 3 2019-10-16 19:14:57 1 10 2019-10-16 19:14:57 2 4 2019-10-16 19:19:57 1 10 2019-10-16 19:19:57 2 3 2019-10-16 19:24:57 1 11 2019-10-16 19:24:57 2 2 2019-10-16 19:44:57 1 11 2019-10-16 19:44:57 2 2 2019-10-16 19:59:57 1 12 2019-10-16 19:59:57 2 2 2019-10-16 20:04:57 1 11 2019-10-16 20:04:57 2 2 2019-10-16 20:14:57 1 10 2019-10-16 20:14:57 2 2 2019-10-16 20:19:57 1 13 2019-10-16 20:19:57 2 2 2019-10-16 20:24:57 1 11 2019-10-16 20:24:57 2 3 2019-10-16 20:29:57 1 12 2019-10-16 20:29:57 2 3 2019-10-16 20:34:57 1 13 2019-10-16 20:34:57 2 3 2019-10-16 20:39:57 1 14 2019-10-16 20:39:57 2 3 2019-10-16 20:44:57 1 12 2019-10-16 20:44:57 2 2 2019-10-16 20:49:57 1 11 2019-10-16 20:49:57 2 2 2019-10-16 20:54:57 1 14 2019-10-16 20:54:57 2 2 2019-10-16 20:59:57 1 15 2019-10-16 20:59:57 2 2 2019-10-16 21:04:57 1 15 2019-10-16 21:04:57 2 1 2019-10-16 21:09:57 1 14 2019-10-16 21:09:57 2 1 2019-10-16 21:14:57 1 14 2019-10-16 21:14:57 2 1 2019-10-16 21:19:57 1 14 2019-10-16 21:19:57 2 1 2019-10-16 21:24:57 1 14 2019-10-16 21:24:57 2 1 2019-10-16 21:29:57 1 16 2019-10-16 21:29:57 2 1 2019-10-15 17:54:57 1 17 2019-10-15 17:54:57 2 3 2019-10-15 18:04:57 1 19 2019-10-15 18:04:57 2 2 2019-10-15 18:14:57 1 17 2019-10-15 18:14:57 2 2 2019-10-15 18:24:57 1 18 2019-10-15 18:24:57 2 3 2019-10-15 18:29:57 1 19 2019-10-15 18:29:57 2 3 2019-10-15 18:49:57 1 17 2019-10-15 18:49:57 2 4 2019-10-15 18:59:57 1 16 2019-10-15 18:59:57 2 4 2019-10-15 19:04:57 1 17 2019-10-15 19:04:57 2 4 2019-10-15 19:09:57 1 18 2019-10-15 19:09:57 2 3 2019-10-15 19:49:57 1 15 2019-10-15 19:49:57 2 3 2019-10-15 20:04:57 1 15 2019-10-15 20:04:57 2 2 2019-10-15 20:09:57 1 16 2019-10-15 20:09:57 2 1 2019-10-15 20:14:57 1 15 2019-10-15 20:14:57 2 1 2019-10-15 20:19:57 1 13 2019-10-15 20:19:57 2 1 2019-10-15 20:29:57 1 12 2019-10-15 20:29:57 2 1 2019-10-15 20:39:57 1 13 2019-10-15 20:59:57 1 13 2019-10-15 20:59:57 2 1 2019-10-15 21:04:57 1 13 2019-10-15 21:04:57 2 1 2019-10-15 21:24:57 1 11 2019-10-15 21:24:57 2 1 2019-10-15 21:29:57 1 9 2019-10-15 21:29:57 2 1 2019-10-15 21:54:57 1 15 2019-10-15 21:54:57 2 1 2019-10-15 21:59:57 1 12 2019-10-15 21:59:57 2 1 2019-10-15 22:39:57 1 15 2019-10-15 22:39:57 2 3 2019-10-15 22:49:57 1 15 2019-10-15 22:49:57 2 3 2019-10-15 22:54:57 1 16 2019-10-15 22:54:57 2 3 2019-10-15 23:04:57 1 17 2019-10-15 23:04:57 2 1 2019-10-15 23:09:57 1 15 2019-10-15 23:09:57 2 1 2019-10-15 23:39:57 1 13 2019-10-15 23:39:57 2 2 2019-10-16 00:14:57 1 14 2019-10-16 00:14:57 2 1 2019-10-16 00:24:57 1 13 2019-10-16 00:24:57 2 1 2019-10-16 00:29:57 1 11 2019-10-16 00:29:57 2 1 2019-10-16 01:09:57 1 9 2019-10-16 01:34:57 1 10 2019-10-16 01:44:57 1 9 2019-10-16 01:49:57 1 8 2019-10-16 02:09:57 1 7 2019-10-16 02:29:57 1 9 2019-10-16 02:34:57 1 9 2019-10-16 03:04:57 1 9 2019-10-16 03:19:57 1 8 2019-10-16 03:34:57 1 9 2019-10-16 03:44:57 1 8 2019-10-16 03:54:57 1 8 2019-10-16 04:24:57 1 8 2019-10-16 04:34:57 1 7 2019-10-16 05:04:57 1 9 2019-10-16 05:09:57 1 9 2019-10-16 05:19:57 1 8 2019-10-16 05:24:57 1 8 2019-10-16 05:29:57 1 8 2019-10-16 05:39:57 1 9 2019-10-16 05:44:57 1 9 2019-10-16 05:54:57 1 10 2019-10-16 05:59:57 1 9 2019-10-16 06:04:57 1 10 2019-10-16 06:14:57 1 10 2019-10-16 06:24:57 1 10 2019-10-16 06:29:57 1 10 2019-10-16 06:34:57 1 10 2019-10-16 06:44:57 1 11 2019-10-16 07:09:57 1 10 2019-10-16 07:14:57 1 8 2019-10-16 07:29:57 1 10 2019-10-16 07:34:57 1 10 2019-10-16 07:54:57 1 11 2019-10-16 07:54:57 2 1 2019-10-16 08:14:57 1 13 2019-10-16 08:14:57 2 2 2019-10-16 08:39:57 1 14 2019-10-16 08:39:57 2 2 2019-10-16 08:59:57 1 14 2019-10-16 08:59:57 2 1 2019-10-16 09:14:57 1 11 2019-10-16 09:14:57 2 1 2019-10-16 09:19:57 1 11 2019-10-16 09:19:57 2 1 2019-10-16 09:34:57 1 14 2019-10-16 09:34:57 2 1 2019-10-16 09:39:57 1 14 2019-10-16 09:39:57 2 1 2019-10-16 10:09:57 1 13 2019-10-16 10:09:57 2 1 2019-10-16 10:24:57 1 12 2019-10-16 10:24:57 2 1 2019-10-16 10:34:57 1 15 2019-10-16 10:44:57 1 13 2019-10-16 10:59:57 1 20 2019-10-16 11:19:57 1 16 2019-10-16 11:19:57 2 1 2019-10-16 11:44:57 1 13 2019-10-16 11:49:57 1 12 2019-10-16 11:54:57 1 13 2019-10-16 11:54:57 2 1 2019-10-16 11:59:57 1 15 2019-10-16 11:59:57 2 1 2019-10-16 12:04:57 1 16 2019-10-16 12:04:57 2 1 2019-10-16 12:09:57 1 15 2019-10-16 12:09:57 2 1 2019-10-16 12:14:57 1 15 2019-10-16 12:14:57 2 1 2019-10-16 12:19:57 1 14 2019-10-16 12:19:57 2 2 2019-10-16 12:24:57 1 15 2019-10-16 12:24:57 2 2 2019-10-16 12:39:57 1 13 2019-10-16 12:39:57 2 2 2019-10-16 12:59:57 1 12 2019-10-16 12:59:57 2 3 2019-10-16 13:04:57 1 14 2019-10-16 13:04:57 2 3 2019-10-16 13:39:57 1 15 2019-10-16 13:39:57 2 2 2019-10-16 13:54:57 1 14 2019-10-16 13:54:57 2 2 2019-10-16 13:59:57 1 16 2019-10-16 13:59:57 2 2 2019-10-16 14:04:57 1 16 2019-10-16 14:04:57 2 1 2019-10-16 14:14:57 1 13 2019-10-16 14:14:57 2 1 2019-10-16 14:19:57 1 12 2019-10-16 14:44:57 1 14 2019-10-16 14:49:57 1 16 2019-10-16 14:54:57 1 17 2019-10-16 14:59:57 1 16 2019-10-16 15:19:57 1 18 2019-10-16 15:29:57 1 16 2019-10-16 15:34:57 1 15 2019-10-16 16:04:57 1 11 2019-10-16 16:34:57 1 13 2019-10-16 16:34:57 2 1 2019-10-16 16:49:57 1 12 2019-10-16 16:49:57 2 1 2019-10-16 17:04:57 1 12 2019-10-16 17:04:57 2 1 2019-10-16 17:19:57 1 8 2019-10-16 17:19:57 2 1 2019-10-16 17:29:57 1 8 2019-10-16 17:29:57 2 1 2019-10-16 17:39:57 1 9 2019-10-16 17:39:57 2 1 2019-10-16 17:49:57 1 8 2019-10-16 17:49:57 2 2 2019-10-16 17:59:57 1 8 2019-10-16 17:59:57 2 1 2019-10-16 18:14:57 1 10 2019-10-16 18:14:57 2 1 2019-10-16 18:44:57 1 10 2019-10-16 18:44:57 2 1 2019-10-16 18:54:57 1 11 2019-10-16 18:54:57 2 2 2019-10-16 18:59:57 1 9 2019-10-16 18:59:57 2 2 2019-10-16 19:49:57 1 10 2019-10-16 21:34:57 1 19 2019-10-16 21:34:57 2 1 2019-10-16 21:44:57 1 18 2019-10-16 21:44:57 2 1 2019-10-16 21:59:57 1 19 2019-10-16 21:59:57 2 1 2019-10-16 22:04:57 1 20 2019-10-16 22:04:57 2 1 2019-10-16 22:09:57 1 19 2019-10-16 22:09:57 2 2 2019-10-16 22:24:57 1 19 2019-10-16 22:24:57 2 1 2019-10-16 22:54:57 1 19 2019-10-16 22:54:57 2 2 2019-10-16 23:04:57 1 20 2019-10-16 23:04:57 2 3 2019-10-16 23:14:57 1 18 2019-10-16 23:14:57 2 2 2019-10-16 23:34:57 1 17 2019-10-16 23:34:57 2 3 2019-10-16 23:44:57 1 17 2019-10-16 23:44:57 2 3 2019-10-16 23:49:57 1 14 2019-10-16 23:49:57 2 3 2019-10-16 23:59:57 1 16 2019-10-16 23:59:57 2 3 2019-10-17 00:49:57 1 11 2019-10-17 01:19:57 1 10 2019-10-17 01:44:57 1 9 2019-10-17 02:14:57 1 8 2019-10-17 02:14:57 2 1 2019-10-17 02:44:57 1 8 2019-10-17 02:44:57 2 1 2019-10-17 02:49:57 1 8 2019-10-17 02:49:57 2 1 2019-10-17 03:09:57 1 7 2019-10-17 03:14:57 1 7 2019-10-17 03:54:57 1 7 2019-10-17 03:59:57 1 7 2019-10-17 04:04:57 1 8 2019-10-17 04:19:57 1 7 2019-10-17 04:29:57 1 7 2019-10-17 04:49:57 1 7 2019-10-17 04:54:57 1 7 2019-10-17 05:04:57 1 8 2019-10-17 05:19:57 1 9 2019-10-17 05:24:57 1 8 2019-10-17 05:39:57 1 8 2019-10-17 05:44:57 1 8 2019-10-17 05:49:57 1 7 2019-10-17 05:59:57 1 8 2019-10-17 06:04:57 1 8 2019-10-17 06:29:57 1 7 2019-10-17 06:49:57 1 8 2019-10-17 06:54:57 1 7 2019-10-17 07:04:57 1 9 2019-10-17 07:19:57 1 9 2019-10-17 07:24:57 1 8 2019-10-17 07:29:57 1 9 2019-10-17 07:39:57 1 7 2019-10-17 07:54:57 1 8 2019-10-17 08:04:57 1 9 2019-10-17 08:09:57 1 9 2019-10-17 08:24:57 1 9 2019-10-17 08:34:57 1 10 2019-10-17 08:39:57 1 11 2019-10-17 08:59:57 1 8 2019-10-17 09:14:57 1 7 2019-10-17 09:14:57 2 1 2019-10-17 09:44:57 1 12 2019-10-17 09:44:57 2 1 2019-10-17 09:54:57 1 9 2019-10-17 09:54:57 2 1 2019-10-17 10:04:57 1 8 2019-10-17 10:04:57 2 1 2019-10-17 10:14:57 1 12 2019-10-17 10:14:57 2 1 2019-10-17 10:29:57 1 11 2019-10-17 10:29:57 2 1 2019-10-17 11:04:57 1 14 2019-10-17 11:09:57 1 14 2019-10-17 11:19:57 1 14 2019-10-17 11:19:57 2 2 2019-10-17 11:29:57 1 16 2019-10-17 11:29:57 2 1 2019-10-17 11:49:57 1 18 2019-10-17 11:49:57 2 1 2019-10-17 12:09:57 1 14 2019-10-17 12:09:57 2 2 2019-10-17 12:14:57 1 16 2019-10-17 12:14:57 2 2 2019-10-17 12:44:57 1 13 2019-10-17 12:44:57 2 2 2019-10-17 12:54:57 1 14 2019-10-17 12:54:57 2 2 2019-10-17 12:59:57 1 14 2019-10-17 12:59:57 2 1 2019-10-17 13:09:57 1 14 2019-10-17 13:09:57 2 1 2019-10-17 13:24:57 1 14 2019-10-17 13:24:57 2 1 2019-10-17 13:34:57 1 16 2019-10-17 13:34:57 2 1 2019-10-17 13:39:57 1 15 2019-10-17 13:39:57 2 1 2019-10-17 13:49:57 1 15 2019-10-17 13:49:57 2 1 2019-10-17 13:54:57 1 14 2019-10-17 13:54:57 2 1 2019-10-17 13:59:57 1 13 2019-10-17 13:59:57 2 2 2019-10-17 14:09:57 1 16 2019-10-17 14:09:57 2 1 2019-10-17 14:19:57 1 14 2019-10-17 14:34:57 1 13 2019-10-17 14:34:57 2 2 2019-10-17 14:44:57 1 13 2019-10-17 14:44:57 2 1 2019-10-17 14:54:57 1 14 2019-10-17 15:09:59 1 11 2019-10-17 15:19:57 1 9 2019-10-17 15:39:57 1 11 2019-10-17 15:49:57 1 11 2019-10-17 16:19:57 1 13 2019-10-17 16:24:57 1 14 2019-10-17 17:19:57 1 13 2019-10-17 17:19:57 2 1 2019-10-17 17:24:57 1 12 2019-10-17 17:24:57 2 1 2019-10-17 17:34:57 1 14 2019-10-17 17:34:57 2 1 2019-10-17 17:39:57 1 15 2019-10-17 17:39:57 2 1 2019-10-17 17:44:57 1 13 2019-10-17 17:44:57 2 1 2019-10-17 17:49:57 1 12 2019-10-17 17:49:57 2 1 2019-10-17 18:09:57 1 9 2019-10-17 18:09:57 2 1 2019-10-17 18:24:57 1 6 2019-10-17 18:24:57 2 1 2019-10-17 18:39:57 1 6 2019-10-17 18:39:57 2 2 2019-10-17 19:14:57 1 7 2019-10-17 19:19:57 1 6 2019-10-17 19:34:57 1 6 2019-10-17 19:34:57 2 1 2019-10-17 19:44:57 1 6 2019-10-17 19:44:57 2 1 2019-10-17 19:49:57 1 7 2019-10-17 19:49:57 2 1 2019-10-17 20:04:57 1 5 2019-10-17 20:04:57 2 2 2019-10-17 20:09:57 1 5 2019-10-17 20:09:57 2 2 2019-10-17 20:44:57 1 8 2019-10-17 20:44:57 2 1 2019-10-17 20:59:57 1 11 2019-10-17 20:59:57 2 1 2019-10-17 21:09:57 1 12 2019-10-17 21:09:57 2 2 2019-10-17 21:24:57 1 10 2019-10-17 21:24:57 2 3 2019-10-17 21:29:57 1 11 2019-10-17 21:29:57 2 4 2019-10-17 21:34:57 1 10 2019-10-17 21:34:57 2 4 2019-10-17 21:39:57 1 11 2019-10-17 21:39:57 2 4 2019-10-17 21:49:57 1 8 2019-10-17 21:49:57 2 2 2019-10-17 21:54:57 1 8 2019-10-17 21:54:57 2 3 2019-10-17 22:04:57 1 11 2019-10-17 22:04:57 2 3 2019-10-17 22:39:57 1 12 2019-10-17 22:39:57 2 4 2019-10-17 22:44:57 1 12 2019-10-17 22:44:57 2 3 2019-10-17 23:04:57 1 14 2019-10-17 23:04:57 2 4 2019-10-17 23:19:57 1 12 2019-10-17 23:19:57 2 6 2019-10-17 23:24:57 1 11 2019-10-17 23:24:57 2 6 2019-10-16 21:39:57 1 17 2019-10-16 21:39:57 2 1 2019-10-16 21:49:57 1 18 2019-10-16 21:49:57 2 1 2019-10-16 22:29:57 1 22 2019-10-16 22:29:57 2 2 2019-10-16 22:34:58 1 21 2019-10-16 22:34:58 2 3 2019-10-16 22:44:57 1 19 2019-10-16 22:44:57 2 2 2019-10-16 22:59:57 1 18 2019-10-16 22:59:57 2 2 2019-10-16 23:19:57 1 19 2019-10-16 23:19:57 2 1 2019-10-16 23:24:57 1 19 2019-10-16 23:24:57 2 1 2019-10-17 00:19:57 1 11 2019-10-17 00:19:57 2 1 2019-10-17 00:29:57 1 12 2019-10-17 00:29:57 2 2 2019-10-17 00:44:57 1 11 2019-10-17 00:54:57 1 11 2019-10-17 00:59:57 1 11 2019-10-17 01:09:57 1 10 2019-10-17 01:14:57 1 10 2019-10-17 01:29:57 1 10 2019-10-17 01:34:57 1 10 2019-10-17 02:04:57 1 8 2019-10-17 02:09:57 1 8 2019-10-17 02:24:57 1 8 2019-10-17 02:24:57 2 1 2019-10-17 02:29:57 1 8 2019-10-17 02:29:57 2 1 2019-10-17 02:54:57 1 7 2019-10-17 02:59:57 1 7 2019-10-17 03:04:57 1 7 2019-10-17 03:29:57 1 7 2019-10-17 03:34:57 1 7 2019-10-17 03:39:57 1 8 2019-10-17 03:44:57 1 7 2019-10-17 03:49:57 1 7 2019-10-17 04:09:57 1 7 2019-10-17 04:14:57 1 7 2019-10-17 04:24:57 1 7 2019-10-17 04:34:57 1 7 2019-10-17 04:39:57 1 7 2019-10-17 05:14:57 1 8 2019-10-17 05:34:57 1 8 2019-10-17 05:54:57 1 8 2019-10-17 06:09:57 1 8 2019-10-17 06:14:57 1 8 2019-10-17 06:24:57 1 7 2019-10-17 06:39:57 1 7 2019-10-17 06:59:57 1 7 2019-10-17 07:09:57 1 7 2019-10-17 07:14:57 1 8 2019-10-17 07:34:57 1 7 2019-10-17 07:44:57 1 7 2019-10-17 08:44:57 1 7 2019-10-17 08:54:57 1 7 2019-10-17 09:04:57 1 8 2019-10-17 09:09:57 1 7 2019-10-17 09:09:57 2 1 2019-10-17 09:24:57 1 7 2019-10-17 09:24:57 2 1 2019-10-17 09:34:57 1 8 2019-10-17 09:49:57 1 11 2019-10-17 09:49:57 2 1 2019-10-17 09:59:57 1 10 2019-10-17 09:59:57 2 1 2019-10-17 10:09:57 1 9 2019-10-17 10:09:57 2 1 2019-10-17 10:19:57 1 13 2019-10-17 10:19:57 2 1 2019-10-17 10:34:57 1 15 2019-10-17 10:34:57 2 1 2019-10-17 10:59:57 1 14 2019-10-17 10:59:57 2 1 2019-10-17 11:24:57 1 16 2019-10-17 11:24:57 2 2 2019-10-17 11:59:57 1 15 2019-10-17 11:59:57 2 2 2019-10-17 12:04:57 1 15 2019-10-17 12:04:57 2 2 2019-10-17 12:19:57 1 14 2019-10-17 12:19:57 2 2 2019-10-17 12:49:57 1 14 2019-10-17 12:49:57 2 2 2019-10-17 13:44:57 1 13 2019-10-17 13:44:57 2 1 2019-10-17 14:14:57 1 15 2019-10-17 14:39:57 1 12 2019-10-17 14:39:57 2 1 2019-10-17 15:04:57 1 12 2019-10-17 15:14:57 1 9 2019-10-17 15:29:57 1 10 2019-10-17 15:34:57 1 11 2019-10-17 15:44:57 1 11 2019-10-17 15:54:57 1 13 2019-10-17 15:59:57 1 13 2019-10-17 16:04:57 1 13 2019-10-17 16:09:57 1 11 2019-10-17 16:29:57 1 15 2019-10-17 16:34:57 1 14 2019-10-17 16:34:57 2 1 2019-10-17 16:39:57 1 13 2019-10-17 16:39:57 2 1 2019-10-17 16:49:57 1 14 2019-10-17 16:49:57 2 1 2019-10-17 16:54:57 1 12 2019-10-17 17:04:57 1 12 2019-10-17 17:04:57 2 1 2019-10-17 17:09:57 1 11 2019-10-17 17:09:57 2 1 2019-10-17 17:29:57 1 15 2019-10-17 17:29:57 2 1 2019-10-17 17:54:57 1 10 2019-10-17 17:59:57 1 11 2019-10-17 18:04:57 1 12 2019-10-17 18:19:57 1 9 2019-10-17 18:19:57 2 1 2019-10-17 19:54:57 1 7 2019-10-17 19:54:57 2 1 2019-10-17 19:59:57 1 5 2019-10-17 19:59:57 2 2 2019-10-17 20:14:57 1 5 2019-10-17 20:14:57 2 2 2019-10-17 20:24:57 1 6 2019-10-17 20:24:57 2 1 2019-10-17 20:49:57 1 8 2019-10-17 20:49:57 2 1 2019-10-17 21:19:57 1 11 2019-10-17 21:19:57 2 2 2019-10-17 21:44:57 1 9 2019-10-17 21:44:57 2 2 2019-10-17 21:59:57 1 9 2019-10-17 21:59:57 2 5 2019-10-17 22:09:57 1 10 2019-10-17 22:09:57 2 3 2019-10-17 22:24:57 1 12 2019-10-17 22:24:57 2 4 2019-10-17 22:34:57 1 12 2019-10-17 22:34:57 2 4 2019-10-17 22:49:57 1 11 2019-10-17 22:49:57 2 3 2019-10-17 22:54:57 1 12 2019-10-17 22:54:57 2 4 2019-10-17 22:59:57 1 12 2019-10-17 22:59:57 2 5 2019-10-17 23:09:57 1 13 2019-10-17 23:09:57 2 4 2019-10-17 23:34:57 1 10 2019-10-17 23:34:57 2 6 2019-10-17 23:44:57 1 10 2019-10-17 23:44:57 2 3 2019-10-17 23:54:57 1 11 2019-10-17 23:54:57 2 3 2019-10-17 23:59:57 1 10 2019-10-17 23:59:57 2 3 2019-10-18 00:04:57 1 10 2019-10-18 00:04:57 2 2 2019-10-18 00:09:57 1 10 2019-10-18 00:09:57 2 2 2019-10-18 00:14:57 1 11 2019-10-18 00:14:57 2 2 2019-10-18 00:19:57 1 11 2019-10-18 00:19:57 2 2 2019-10-18 00:29:57 1 11 2019-10-18 00:29:57 2 2 2019-10-18 00:34:57 1 10 2019-10-18 00:34:57 2 2 2019-10-18 00:39:57 1 9 2019-10-18 00:39:57 2 2 2019-10-18 00:44:57 1 9 2019-10-18 00:44:57 2 1 2019-10-18 00:49:57 1 7 2019-10-18 00:49:57 2 1 2019-10-18 00:54:57 1 8 2019-10-18 00:54:57 2 1 2019-10-18 00:59:57 1 8 2019-10-18 00:59:57 2 1 2019-10-18 01:14:57 1 10 2019-10-18 01:19:57 1 10 2019-10-18 01:19:57 2 1 2019-10-18 01:24:57 1 10 2019-10-16 21:54:57 1 18 2019-10-16 21:54:57 2 1 2019-10-16 22:14:57 1 19 2019-10-16 22:14:57 2 1 2019-10-16 22:19:57 1 18 2019-10-16 22:19:57 2 1 2019-10-16 22:39:57 1 21 2019-10-16 22:39:57 2 3 2019-10-16 22:49:57 1 19 2019-10-16 22:49:57 2 2 2019-10-16 23:09:57 1 19 2019-10-16 23:09:57 2 3 2019-10-16 23:29:57 1 18 2019-10-16 23:29:57 2 2 2019-10-16 23:39:57 1 17 2019-10-16 23:39:57 2 3 2019-10-16 23:54:57 1 15 2019-10-16 23:54:57 2 3 2019-10-17 00:04:57 1 16 2019-10-17 00:04:57 2 3 2019-10-17 00:09:57 1 15 2019-10-17 00:09:57 2 3 2019-10-17 00:14:57 1 13 2019-10-17 00:14:57 2 2 2019-10-17 00:24:57 1 12 2019-10-17 00:24:57 2 1 2019-10-17 00:34:57 1 11 2019-10-17 00:34:57 2 1 2019-10-17 00:39:57 1 11 2019-10-17 00:39:57 2 1 2019-10-17 01:04:57 1 11 2019-10-17 01:24:57 1 10 2019-10-17 01:39:57 1 10 2019-10-17 01:49:57 1 11 2019-10-17 01:54:57 1 9 2019-10-17 01:59:57 1 8 2019-10-17 02:19:57 1 8 2019-10-17 02:19:57 2 1 2019-10-17 02:34:57 1 8 2019-10-17 02:34:57 2 1 2019-10-17 02:39:57 1 8 2019-10-17 02:39:57 2 1 2019-10-17 03:19:57 1 7 2019-10-17 03:24:57 1 7 2019-10-17 04:44:57 1 8 2019-10-17 04:59:57 1 7 2019-10-17 05:09:57 1 8 2019-10-17 05:29:57 1 8 2019-10-17 06:19:57 1 7 2019-10-17 06:34:57 1 7 2019-10-17 06:44:57 1 9 2019-10-17 07:49:57 1 7 2019-10-17 07:59:57 1 11 2019-10-17 08:14:57 1 8 2019-10-17 08:19:57 1 7 2019-10-17 08:29:57 1 9 2019-10-17 08:49:57 1 8 2019-10-17 09:19:57 1 7 2019-10-17 09:19:57 2 1 2019-10-17 09:29:57 1 10 2019-10-17 09:29:57 2 1 2019-10-17 09:39:57 1 12 2019-10-17 10:24:57 1 14 2019-10-17 10:24:57 2 1 2019-10-17 10:39:57 1 14 2019-10-17 10:39:57 2 1 2019-10-17 10:44:57 1 15 2019-10-17 10:44:57 2 1 2019-10-17 10:49:57 1 15 2019-10-17 10:49:57 2 1 2019-10-17 10:54:57 1 17 2019-10-17 10:54:57 2 2 2019-10-17 11:14:57 1 13 2019-10-17 11:14:57 2 1 2019-10-17 11:34:57 1 18 2019-10-17 11:34:57 2 1 2019-10-17 11:39:57 1 17 2019-10-17 11:39:57 2 1 2019-10-17 11:44:57 1 16 2019-10-17 11:44:57 2 1 2019-10-17 11:54:57 1 18 2019-10-17 11:54:57 2 1 2019-10-17 12:24:57 1 13 2019-10-17 12:24:57 2 2 2019-10-17 12:29:57 1 19 2019-10-17 12:29:57 2 2 2019-10-17 12:34:57 1 16 2019-10-17 12:34:57 2 2 2019-10-17 12:39:57 1 16 2019-10-17 12:39:57 2 2 2019-10-17 13:04:57 1 15 2019-10-17 13:04:57 2 1 2019-10-17 13:14:57 1 14 2019-10-17 13:14:57 2 1 2019-10-17 13:19:57 1 14 2019-10-17 13:29:57 1 15 2019-10-17 13:29:57 2 1 2019-10-17 14:04:57 1 14 2019-10-17 14:04:57 2 2 2019-10-17 14:24:57 1 12 2019-10-17 14:29:57 1 13 2019-10-17 14:49:57 1 13 2019-10-17 14:49:57 2 1 2019-10-17 14:59:57 1 7 2019-10-17 15:24:57 1 10 2019-10-17 16:14:57 1 11 2019-10-17 16:44:57 1 14 2019-10-17 16:44:57 2 1 2019-10-17 16:59:57 1 11 2019-10-17 16:59:57 2 1 2019-10-17 17:14:57 1 12 2019-10-17 17:14:57 2 2 2019-10-17 18:14:57 1 10 2019-10-17 18:29:57 1 6 2019-10-17 18:29:57 2 1 2019-10-17 18:34:57 1 7 2019-10-17 18:34:57 2 2 2019-10-17 18:44:57 1 7 2019-10-17 18:44:57 2 2 2019-10-17 18:49:57 1 7 2019-10-17 18:49:57 2 2 2019-10-17 18:54:57 1 7 2019-10-17 18:54:57 2 2 2019-10-17 18:59:57 1 8 2019-10-17 18:59:57 2 3 2019-10-17 19:04:57 1 9 2019-10-17 19:04:57 2 2 2019-10-17 19:09:57 1 7 2019-10-17 19:24:57 1 6 2019-10-17 19:29:57 1 6 2019-10-17 19:29:57 2 1 2019-10-17 19:39:57 1 5 2019-10-17 19:39:57 2 1 2019-10-17 20:19:57 1 4 2019-10-17 20:19:57 2 2 2019-10-17 20:29:57 1 4 2019-10-17 20:29:57 2 1 2019-10-17 20:34:57 1 8 2019-10-17 20:34:57 2 1 2019-10-17 20:39:57 1 6 2019-10-17 20:39:57 2 1 2019-10-17 20:54:57 1 9 2019-10-17 20:54:57 2 1 2019-10-17 21:04:57 1 12 2019-10-17 21:04:57 2 2 2019-10-17 21:14:57 1 11 2019-10-17 21:14:57 2 2 2019-10-17 22:14:57 1 10 2019-10-17 22:14:57 2 3 2019-10-17 22:19:57 1 11 2019-10-17 22:19:57 2 4 2019-10-17 22:29:57 1 14 2019-10-17 22:29:57 2 2 2019-10-17 23:14:57 1 12 2019-10-17 23:14:57 2 6 2019-10-17 23:29:57 1 11 2019-10-17 23:29:57 2 6 2019-10-17 23:39:58 1 10 2019-10-17 23:39:58 2 4 2019-10-17 23:49:57 1 11 2019-10-17 23:49:57 2 3 2019-10-18 00:24:57 1 11 2019-10-18 00:24:57 2 1 2019-10-18 01:04:57 1 9 2019-10-18 01:04:57 2 1 2019-10-18 01:09:57 1 10 2019-10-18 01:24:57 2 2 2019-10-18 01:29:57 1 9 2019-10-18 01:29:57 2 2 2019-10-18 01:34:57 1 9 2019-10-18 01:34:57 2 2 2019-10-18 01:39:57 1 10 2019-10-18 01:39:57 2 2 2019-10-18 01:44:57 1 9 2019-10-18 01:44:57 2 1 2019-10-18 01:49:57 1 10 2019-10-18 01:49:57 2 1 2019-10-18 01:54:57 1 9 2019-10-18 01:59:57 1 9 2019-10-18 02:04:57 1 8 2019-10-18 02:09:57 1 7 2019-10-18 02:09:57 2 1 2019-10-18 02:14:57 1 7 2019-10-18 02:14:57 2 1 2019-10-18 02:19:57 1 7 2019-10-18 02:19:57 2 1 2019-10-18 02:24:57 1 6 2019-10-18 02:24:57 2 1 2019-10-18 02:34:57 1 7 2019-10-18 02:34:57 2 1 2019-10-18 02:54:57 1 7 2019-10-18 02:54:57 2 1 2019-10-18 03:29:57 1 7 2019-10-18 03:34:57 1 6 2019-10-18 03:39:57 1 6 2019-10-18 03:49:57 1 6 2019-10-18 03:54:57 1 6 2019-10-18 03:59:57 1 6 2019-10-18 04:04:57 1 6 2019-10-18 04:09:57 1 6 2019-10-18 04:19:57 1 6 2019-10-18 04:19:57 2 1 2019-10-18 04:24:57 1 6 2019-10-18 05:04:57 1 6 2019-10-18 05:09:57 1 6 2019-10-18 05:19:57 1 6 2019-10-18 05:49:57 1 7 2019-10-18 05:54:57 1 8 2019-10-18 06:04:57 1 9 2019-10-18 06:09:57 1 9 2019-10-18 06:14:57 1 9 2019-10-18 06:29:57 1 9 2019-10-18 07:04:57 1 9 2019-10-18 07:09:57 1 9 2019-10-18 07:34:57 1 8 2019-10-18 07:44:57 1 9 2019-10-18 07:59:57 1 11 2019-10-18 08:09:57 1 11 2019-10-18 08:09:57 2 1 2019-10-18 08:29:57 1 9 2019-10-18 08:29:57 2 1 2019-10-18 08:39:57 1 9 2019-10-18 08:39:57 2 1 2019-10-18 08:49:57 1 11 2019-10-18 08:59:57 1 11 2019-10-18 09:19:57 1 9 2019-10-18 09:29:57 1 9 2019-10-18 09:29:57 2 1 2019-10-18 09:59:57 1 11 2019-10-18 09:59:57 2 1 2019-10-18 11:04:57 1 9 2019-10-18 11:04:57 2 1 2019-10-18 11:09:57 1 9 2019-10-18 11:09:57 2 2 2019-10-18 11:59:57 1 5 2019-10-18 11:59:57 2 3 2019-10-18 12:34:57 1 8 2019-10-18 12:34:57 2 1 2019-10-18 12:54:57 1 8 2019-10-18 12:54:57 2 1 2019-10-18 13:14:57 1 8 2019-10-18 13:14:57 2 2 2019-10-18 13:24:57 1 7 2019-10-18 13:24:57 2 1 2019-10-18 13:34:57 1 7 2019-10-18 14:14:57 1 7 2019-10-18 14:14:57 2 1 2019-10-18 14:34:57 1 8 2019-10-18 14:34:57 2 1 2019-10-18 14:49:57 1 7 2019-10-18 14:49:57 2 1 2019-10-18 15:04:57 1 10 2019-10-18 15:19:57 1 13 2019-10-18 15:34:57 1 10 2019-10-18 15:39:57 1 9 2019-10-18 16:04:57 1 6 2019-10-18 16:14:57 1 8 2019-10-18 16:19:57 1 9 2019-10-18 16:29:57 1 7 2019-10-18 16:34:57 1 7 2019-10-18 16:39:57 1 7 2019-10-18 17:59:57 1 4 2019-10-18 17:59:57 2 1 2019-10-18 18:09:57 1 7 2019-10-18 18:09:57 2 1 2019-10-18 18:24:57 1 8 2019-10-18 18:24:57 2 1 2019-10-18 18:39:57 1 7 2019-10-18 18:39:57 2 3 2019-10-18 18:44:57 1 8 2019-10-18 18:44:57 2 1 2019-10-18 19:19:57 1 11 2019-10-18 19:19:57 2 1 2019-10-18 19:39:57 1 10 2019-10-18 19:49:57 1 8 2019-10-18 19:54:57 1 8 2019-10-18 19:59:57 1 8 2019-10-18 20:04:57 1 9 2019-10-18 20:19:57 1 11 2019-10-18 20:24:57 1 10 2019-10-18 20:39:57 1 13 2019-10-18 20:49:57 1 11 2019-10-18 20:54:57 1 13 2019-10-18 21:09:57 1 10 2019-10-18 21:14:57 1 10 2019-10-18 21:29:57 1 11 2019-10-18 21:29:57 2 2 2019-10-18 21:34:57 1 11 2019-10-18 21:34:57 2 2 2019-10-18 22:04:57 1 9 2019-10-18 22:04:57 2 1 2019-10-18 22:29:57 1 11 2019-10-18 22:29:57 2 1 2019-10-18 22:34:57 1 10 2019-10-18 22:34:57 2 1 2019-10-18 22:39:57 1 10 2019-10-18 22:39:57 2 1 2019-10-18 22:49:57 1 11 2019-10-18 22:49:57 2 1 2019-10-18 22:54:57 1 10 2019-10-18 22:54:57 2 1 2019-10-18 23:14:57 1 12 2019-10-18 23:19:57 1 10 2019-10-18 23:24:57 1 8 2019-10-18 23:49:57 1 7 2019-10-18 23:49:57 2 1 2019-10-19 00:09:57 1 8 2019-10-19 00:09:57 2 2 2019-10-19 00:34:57 1 7 2019-10-19 00:34:57 2 3 2019-10-19 00:44:57 1 6 2019-10-19 00:44:57 2 3 2019-10-19 01:04:57 1 6 2019-10-19 01:04:57 2 2 2019-10-19 01:14:57 1 5 2019-10-19 01:14:57 2 4 2019-10-19 01:34:57 1 4 2019-10-19 01:34:57 2 2 2019-10-19 01:59:57 1 4 2019-10-19 01:59:57 2 2 2019-10-19 02:09:57 1 4 2019-10-19 02:09:57 2 2 2019-10-19 02:19:57 1 3 2019-10-19 02:19:57 2 2 2019-10-19 02:24:57 1 3 2019-10-19 02:24:57 2 2 2019-10-19 02:29:57 1 3 2019-10-19 02:29:57 2 2 2019-10-19 03:44:57 1 2 2019-10-19 03:49:57 1 2 2019-10-19 03:54:57 1 2 2019-10-19 03:59:57 1 2 2019-10-19 04:04:57 1 2 2019-10-19 04:19:57 1 2 2019-10-19 04:24:57 1 1 2019-10-19 04:29:57 1 1 2019-10-19 04:49:57 1 2 2019-10-19 05:04:57 1 1 2019-10-19 05:19:57 1 1 2019-10-19 05:34:57 1 2 2019-10-19 05:39:57 1 2 2019-10-19 05:49:57 1 3 2019-10-19 05:59:57 1 2 2019-10-19 06:04:57 1 2 2019-10-19 06:09:57 1 2 2019-10-19 06:14:57 1 2 2019-10-19 06:19:57 1 2 2019-10-19 06:24:57 1 2 2019-10-19 07:09:57 1 1 2019-10-19 07:14:57 1 1 2019-10-19 07:24:57 1 1 2019-10-19 07:24:57 2 1 2019-10-19 07:34:57 1 4 2019-10-19 07:34:57 2 1 2019-10-19 07:44:57 1 3 2019-10-19 08:04:57 1 6 2019-10-19 08:19:57 1 4 2019-10-19 08:24:57 1 5 2019-10-19 08:24:57 2 1 2019-10-19 08:29:57 1 5 2019-10-19 08:29:57 2 1 2019-10-19 08:39:57 1 7 2019-10-19 08:39:57 2 1 2019-10-19 08:44:57 1 7 2019-10-19 08:44:57 2 1 2019-10-19 08:49:57 1 7 2019-10-19 08:49:57 2 1 2019-10-19 08:54:57 1 8 2019-10-19 08:54:57 2 1 2019-10-19 08:59:57 1 8 2019-10-18 02:29:57 1 6 2019-10-18 02:29:57 2 1 2019-10-18 02:39:57 1 7 2019-10-18 02:39:57 2 1 2019-10-18 02:44:57 1 7 2019-10-18 02:44:57 2 1 2019-10-18 02:49:57 1 8 2019-10-18 02:49:57 2 1 2019-10-18 02:59:57 1 7 2019-10-18 02:59:57 2 1 2019-10-18 03:04:57 1 7 2019-10-18 03:04:57 2 1 2019-10-18 03:14:57 1 7 2019-10-18 03:44:57 1 6 2019-10-18 04:14:57 1 6 2019-10-18 04:29:57 1 6 2019-10-18 04:34:57 1 6 2019-10-18 04:39:57 1 6 2019-10-18 04:49:57 1 7 2019-10-18 04:54:57 1 7 2019-10-18 04:59:57 1 6 2019-10-18 05:14:57 1 6 2019-10-18 05:24:57 1 6 2019-10-18 05:34:57 1 7 2019-10-18 05:39:57 1 6 2019-10-18 05:59:57 1 9 2019-10-18 06:24:57 1 8 2019-10-18 06:44:57 1 8 2019-10-18 06:54:57 1 10 2019-10-18 06:59:57 1 8 2019-10-18 07:49:57 1 9 2019-10-18 07:54:57 1 9 2019-10-18 08:14:57 1 11 2019-10-18 08:14:57 2 1 2019-10-18 08:24:57 1 9 2019-10-18 08:24:57 2 1 2019-10-18 08:34:57 1 10 2019-10-18 08:34:57 2 1 2019-10-18 08:44:57 1 10 2019-10-18 08:44:57 2 1 2019-10-18 09:24:57 1 9 2019-10-18 09:34:57 1 8 2019-10-18 09:39:57 1 12 2019-10-18 10:19:57 1 13 2019-10-18 10:24:57 1 8 2019-10-18 10:24:57 2 1 2019-10-18 10:34:57 1 8 2019-10-18 10:39:57 1 8 2019-10-18 10:39:57 2 1 2019-10-18 10:49:57 1 8 2019-10-18 10:49:57 2 1 2019-10-18 10:59:57 1 10 2019-10-18 10:59:57 2 1 2019-10-18 11:44:57 1 8 2019-10-18 11:44:57 2 2 2019-10-18 12:19:57 1 11 2019-10-18 12:44:57 1 6 2019-10-18 12:44:57 2 1 2019-10-18 13:04:57 1 7 2019-10-18 13:04:57 2 2 2019-10-18 13:19:57 1 6 2019-10-18 13:19:57 2 2 2019-10-18 13:39:57 1 8 2019-10-18 13:44:57 1 9 2019-10-18 13:49:57 1 9 2019-10-18 14:04:57 1 9 2019-10-18 14:09:57 1 8 2019-10-18 14:24:57 1 8 2019-10-18 14:24:57 2 1 2019-10-18 14:44:57 1 10 2019-10-18 14:44:57 2 1 2019-10-18 14:54:57 1 8 2019-10-18 14:54:57 2 1 2019-10-18 14:59:57 1 11 2019-10-18 14:59:57 2 1 2019-10-18 15:14:57 1 10 2019-10-18 15:49:57 1 7 2019-10-18 15:54:57 1 7 2019-10-18 15:59:57 1 8 2019-10-18 16:09:57 1 6 2019-10-18 16:24:57 1 7 2019-10-18 16:44:57 1 7 2019-10-18 16:49:57 1 8 2019-10-18 16:54:57 1 9 2019-10-18 16:59:57 1 8 2019-10-18 17:04:57 1 8 2019-10-18 17:09:57 1 8 2019-10-18 17:14:57 1 8 2019-10-18 17:19:57 1 8 2019-10-18 17:24:57 1 7 2019-10-18 17:29:57 1 7 2019-10-18 17:29:57 2 1 2019-10-18 17:34:57 1 6 2019-10-18 17:34:57 2 1 2019-10-18 17:49:57 1 7 2019-10-18 17:49:57 2 1 2019-10-18 17:54:57 1 6 2019-10-18 17:54:57 2 1 2019-10-18 18:04:57 1 7 2019-10-18 18:04:57 2 1 2019-10-18 18:29:57 1 8 2019-10-18 18:29:57 2 1 2019-10-18 18:49:57 1 8 2019-10-18 18:49:57 2 1 2019-10-18 18:54:57 1 7 2019-10-18 18:54:57 2 1 2019-10-18 19:04:57 1 8 2019-10-18 19:04:57 2 1 2019-10-18 19:09:57 1 9 2019-10-18 19:09:57 2 1 2019-10-18 20:09:57 1 11 2019-10-18 20:09:57 2 1 2019-10-18 20:59:57 1 14 2019-10-18 21:54:57 1 10 2019-10-18 21:54:57 2 1 2019-10-18 21:59:57 1 9 2019-10-18 21:59:57 2 2 2019-10-18 22:09:57 1 8 2019-10-18 22:09:57 2 1 2019-10-18 22:14:57 1 10 2019-10-18 22:14:57 2 2 2019-10-18 22:59:57 1 10 2019-10-18 22:59:57 2 2 2019-10-18 23:04:57 1 10 2019-10-18 23:04:57 2 2 2019-10-18 23:29:57 1 10 2019-10-18 23:34:57 1 9 2019-10-18 23:39:57 1 9 2019-10-18 23:54:57 1 6 2019-10-18 23:54:57 2 1 2019-10-18 23:59:57 1 7 2019-10-18 23:59:57 2 2 2019-10-19 00:04:57 1 8 2019-10-19 00:04:57 2 2 2019-10-19 00:14:57 1 7 2019-10-19 00:14:57 2 2 2019-10-19 00:24:57 1 8 2019-10-19 00:24:57 2 2 2019-10-19 00:49:57 1 6 2019-10-19 00:49:57 2 3 2019-10-19 00:54:57 1 6 2019-10-19 00:54:57 2 3 2019-10-19 00:59:57 1 7 2019-10-19 00:59:57 2 2 2019-10-19 01:09:57 1 5 2019-10-19 01:09:57 2 3 2019-10-19 01:29:57 1 4 2019-10-19 01:29:57 2 3 2019-10-19 01:39:57 1 5 2019-10-19 01:39:57 2 2 2019-10-19 01:49:57 1 4 2019-10-19 01:49:57 2 2 2019-10-19 02:04:57 1 4 2019-10-19 02:04:57 2 2 2019-10-19 02:34:57 1 3 2019-10-19 02:34:57 2 2 2019-10-19 02:39:57 1 3 2019-10-19 02:39:57 2 2 2019-10-19 02:49:57 1 3 2019-10-19 02:54:57 1 3 2019-10-19 03:14:57 1 3 2019-10-19 03:19:57 1 3 2019-10-19 03:39:57 1 3 2019-10-19 04:09:57 1 2 2019-10-19 04:14:57 1 2 2019-10-19 04:44:57 1 2 2019-10-19 04:59:57 1 1 2019-10-19 05:09:57 1 2 2019-10-19 05:44:57 1 2 2019-10-19 05:54:57 1 2 2019-10-19 06:29:57 1 1 2019-10-19 06:34:57 1 1 2019-10-19 06:39:57 1 1 2019-10-19 06:44:57 1 1 2019-10-19 06:49:57 1 1 2019-10-19 06:54:57 1 1 2019-10-19 06:59:57 1 1 2019-10-19 07:19:57 1 2 2019-10-19 07:29:57 1 2 2019-10-19 07:29:57 2 1 2019-10-19 08:09:57 1 3 2019-10-19 08:14:57 1 3 2019-10-19 08:14:57 2 1 2019-10-19 08:34:57 1 6 2019-10-19 08:34:57 2 1 2019-10-18 03:09:57 1 7 2019-10-18 03:09:57 2 1 2019-10-18 03:19:57 1 7 2019-10-18 03:24:57 1 7 2019-10-18 04:44:57 1 6 2019-10-18 05:29:57 1 7 2019-10-18 05:44:57 1 6 2019-10-18 06:19:57 1 8 2019-10-18 06:34:57 1 9 2019-10-18 06:39:57 1 8 2019-10-18 06:49:57 1 9 2019-10-18 07:14:57 1 8 2019-10-18 07:19:57 1 10 2019-10-18 07:24:57 1 10 2019-10-18 07:29:57 1 9 2019-10-18 07:39:57 1 8 2019-10-18 08:04:57 1 10 2019-10-18 08:04:57 2 1 2019-10-18 08:19:57 1 11 2019-10-18 08:19:57 2 1 2019-10-18 08:54:57 1 10 2019-10-18 08:54:57 2 1 2019-10-18 09:04:57 1 10 2019-10-18 09:09:57 1 9 2019-10-18 09:14:57 1 9 2019-10-18 09:44:57 1 12 2019-10-18 09:49:57 1 10 2019-10-18 09:54:57 1 13 2019-10-18 09:54:57 2 1 2019-10-18 10:04:57 1 13 2019-10-18 10:04:57 2 1 2019-10-18 10:09:57 1 13 2019-10-18 10:14:57 1 11 2019-10-18 10:29:57 1 8 2019-10-18 10:29:57 2 1 2019-10-18 10:44:57 1 6 2019-10-18 10:44:57 2 1 2019-10-18 10:54:57 1 9 2019-10-18 10:54:57 2 1 2019-10-18 11:14:57 1 9 2019-10-18 11:14:57 2 2 2019-10-18 11:19:59 1 9 2019-10-18 11:19:59 2 2 2019-10-18 11:24:57 1 9 2019-10-18 11:24:57 2 1 2019-10-18 11:29:57 1 8 2019-10-18 11:29:57 2 1 2019-10-18 11:34:57 1 7 2019-10-18 11:34:57 2 1 2019-10-18 11:39:57 1 7 2019-10-18 11:39:57 2 1 2019-10-18 11:49:57 1 9 2019-10-18 11:49:57 2 2 2019-10-18 11:54:57 1 7 2019-10-18 11:54:57 2 3 2019-10-18 12:04:57 1 9 2019-10-18 12:04:57 2 1 2019-10-18 12:09:57 1 8 2019-10-18 12:09:57 2 1 2019-10-18 12:14:57 1 11 2019-10-18 12:14:57 2 1 2019-10-18 12:24:57 1 8 2019-10-18 12:29:57 1 8 2019-10-18 12:29:57 2 1 2019-10-18 12:39:57 1 8 2019-10-18 12:39:57 2 1 2019-10-18 12:49:57 1 6 2019-10-18 12:49:57 2 1 2019-10-18 12:59:57 1 8 2019-10-18 12:59:57 2 1 2019-10-18 13:09:57 1 7 2019-10-18 13:09:57 2 2 2019-10-18 13:29:57 1 6 2019-10-18 13:54:57 1 10 2019-10-18 13:59:57 1 9 2019-10-18 14:19:57 1 9 2019-10-18 14:19:57 2 1 2019-10-18 14:29:57 1 8 2019-10-18 14:29:57 2 1 2019-10-18 14:39:57 1 10 2019-10-18 14:39:57 2 1 2019-10-18 15:09:57 1 10 2019-10-18 15:24:57 1 9 2019-10-18 15:29:57 1 11 2019-10-18 15:44:57 1 8 2019-10-18 17:39:57 1 6 2019-10-18 17:39:57 2 1 2019-10-18 17:44:57 1 7 2019-10-18 17:44:57 2 1 2019-10-18 18:14:57 1 7 2019-10-18 18:14:57 2 2 2019-10-18 18:19:57 1 8 2019-10-18 18:19:57 2 2 2019-10-18 18:34:57 1 9 2019-10-18 18:34:57 2 1 2019-10-18 18:59:57 1 9 2019-10-18 18:59:57 2 1 2019-10-18 19:14:57 1 9 2019-10-18 19:24:57 1 11 2019-10-18 19:24:57 2 1 2019-10-18 19:29:57 1 11 2019-10-18 19:29:57 2 1 2019-10-18 19:34:57 1 10 2019-10-18 19:34:57 2 1 2019-10-18 19:44:57 1 8 2019-10-18 20:14:57 1 11 2019-10-18 20:29:57 1 13 2019-10-18 20:34:57 1 13 2019-10-18 20:44:57 1 13 2019-10-18 21:04:57 1 12 2019-10-18 21:19:57 1 10 2019-10-18 21:19:57 2 1 2019-10-18 21:24:57 1 10 2019-10-18 21:39:57 1 9 2019-10-18 21:39:57 2 1 2019-10-18 21:44:57 1 9 2019-10-18 21:44:57 2 1 2019-10-18 21:49:57 1 10 2019-10-18 21:49:57 2 1 2019-10-18 22:19:57 1 9 2019-10-18 22:19:57 2 2 2019-10-18 22:24:57 1 8 2019-10-18 22:24:57 2 1 2019-10-18 22:44:57 1 12 2019-10-18 22:44:57 2 1 2019-10-18 23:09:57 1 12 2019-10-18 23:09:57 2 1 2019-10-18 23:44:57 1 8 2019-10-19 00:19:57 1 7 2019-10-19 00:19:57 2 2 2019-10-19 00:29:57 1 7 2019-10-19 00:29:57 2 3 2019-10-19 00:39:57 1 6 2019-10-19 00:39:57 2 3 2019-10-19 01:19:57 1 5 2019-10-19 01:19:57 2 3 2019-10-19 01:24:57 1 5 2019-10-19 01:24:57 2 3 2019-10-19 01:44:57 1 5 2019-10-19 01:44:57 2 2 2019-10-19 01:54:57 1 4 2019-10-19 01:54:57 2 2 2019-10-19 02:14:57 1 3 2019-10-19 02:14:57 2 2 2019-10-19 02:44:57 1 3 2019-10-19 02:44:57 2 2 2019-10-19 02:59:57 1 3 2019-10-19 03:04:57 1 4 2019-10-19 03:09:57 1 4 2019-10-19 03:24:57 1 3 2019-10-19 03:29:57 1 3 2019-10-19 03:34:57 1 3 2019-10-19 04:34:57 1 1 2019-10-19 04:39:57 1 2 2019-10-19 04:54:57 1 2 2019-10-19 05:14:57 1 1 2019-10-19 05:24:57 1 2 2019-10-19 05:29:57 1 3 2019-10-19 07:04:57 1 2 2019-10-19 07:39:57 1 4 2019-10-19 07:49:57 1 4 2019-10-19 07:54:57 1 5 2019-10-19 07:59:57 1 5 2019-10-19 09:04:57 1 7 2019-10-19 09:09:57 1 9 2019-10-19 09:14:57 1 9 2019-10-19 09:19:57 1 8 2019-10-19 09:24:57 1 9 2019-10-19 09:29:57 1 10 2019-10-19 09:34:57 1 9 2019-10-19 09:39:57 1 10 2019-10-19 09:44:57 1 9 2019-10-19 09:49:57 1 11 2019-10-19 09:54:57 1 10 2019-10-19 09:59:57 1 10 2019-10-19 10:04:57 1 10 2019-10-19 10:09:57 1 10 2019-10-19 10:14:57 1 12 2019-10-19 10:19:57 1 13 2019-10-19 10:19:57 2 1 2019-10-19 10:24:57 1 13 2019-10-19 10:24:57 2 1 2019-10-19 10:29:57 1 11 2019-10-19 10:29:57 2 1 2019-10-19 10:34:57 1 11 2019-10-19 10:34:57 2 1 2019-10-19 11:14:57 1 11 2019-10-19 11:14:57 2 3 2019-10-19 11:19:57 1 11 2019-10-19 11:19:57 2 1 2019-10-19 11:29:57 1 8 2019-10-19 11:29:57 2 1 2019-10-19 11:44:57 1 8 2019-10-19 11:44:57 2 1 2019-10-19 11:59:57 1 9 2019-10-19 11:59:57 2 1 2019-10-19 12:09:57 1 7 2019-10-19 12:09:57 2 2 2019-10-19 12:19:57 1 6 2019-10-19 12:19:57 2 2 2019-10-19 12:24:57 1 6 2019-10-19 12:24:57 2 2 2019-10-19 12:49:57 1 6 2019-10-19 12:59:57 1 6 2019-10-19 12:59:57 2 2 2019-10-19 13:09:57 1 6 2019-10-19 13:09:57 2 2 2019-10-19 13:59:57 1 8 2019-10-19 13:59:57 2 2 2019-10-19 14:14:57 1 8 2019-10-19 14:14:57 2 1 2019-10-19 14:19:57 1 8 2019-10-19 14:19:57 2 2 2019-10-19 14:24:57 1 8 2019-10-19 14:24:57 2 2 2019-10-19 14:44:57 1 6 2019-10-19 14:44:57 2 1 2019-10-19 14:49:57 1 7 2019-10-19 14:49:57 2 1 2019-10-19 15:04:57 1 8 2019-10-19 15:04:57 2 1 2019-10-19 15:29:57 1 7 2019-10-19 15:29:57 2 1 2019-10-19 15:44:57 1 9 2019-10-19 15:44:57 2 1 2019-10-19 15:49:57 1 8 2019-10-19 15:49:57 2 2 2019-10-19 15:54:57 1 7 2019-10-19 15:54:57 2 2 2019-10-19 16:04:57 1 9 2019-10-19 16:04:57 2 1 2019-10-19 16:09:57 1 7 2019-10-19 16:09:57 2 1 2019-10-19 16:14:57 1 6 2019-10-19 16:14:57 2 1 2019-10-19 16:29:57 1 6 2019-10-19 16:29:57 2 1 2019-10-19 16:49:57 1 5 2019-10-19 16:59:57 1 5 2019-10-19 17:09:57 1 6 2019-10-19 17:24:57 1 4 2019-10-19 17:39:57 1 6 2019-10-19 17:39:57 2 1 2019-10-19 17:59:57 1 6 2019-10-19 18:19:57 1 7 2019-10-19 18:19:57 2 1 2019-10-19 18:24:57 1 6 2019-10-19 18:24:57 2 1 2019-10-19 18:49:57 1 8 2019-10-19 18:49:57 2 3 2019-10-19 18:54:57 1 7 2019-10-19 18:54:57 2 2 2019-10-19 18:59:57 1 6 2019-10-19 18:59:57 2 2 2019-10-19 19:04:57 1 7 2019-10-19 19:04:57 2 2 2019-10-19 19:14:57 1 7 2019-10-19 19:14:57 2 3 2019-10-19 19:29:57 1 7 2019-10-19 19:29:57 2 3 2019-10-19 19:34:57 1 10 2019-10-19 19:34:57 2 3 2019-10-19 19:44:57 1 10 2019-10-19 19:44:57 2 2 2019-10-19 20:04:57 1 8 2019-10-19 20:04:57 2 6 2019-10-19 20:24:57 1 12 2019-10-19 20:24:57 2 5 2019-10-19 20:34:57 1 11 2019-10-19 20:34:57 2 3 2019-10-19 20:54:57 1 9 2019-10-19 20:54:57 2 4 2019-10-19 21:04:57 1 10 2019-10-19 21:04:57 2 5 2019-10-19 21:09:57 1 11 2019-10-19 21:09:57 2 3 2019-10-19 21:49:57 1 13 2019-10-19 21:49:57 2 2 2019-10-19 21:59:57 1 11 2019-10-19 21:59:57 2 1 2019-10-19 22:04:57 1 13 2019-10-19 22:39:57 1 11 2019-10-19 22:39:57 2 1 2019-10-19 22:54:57 1 9 2019-10-19 22:54:57 2 1 2019-10-19 23:04:57 1 7 2019-10-19 23:04:57 2 1 2019-10-19 23:14:57 1 8 2019-10-19 23:14:57 2 1 2019-10-19 23:19:57 1 8 2019-10-19 23:19:57 2 1 2019-10-19 23:29:57 1 9 2019-10-19 23:29:57 2 2 2019-10-20 00:04:57 1 8 2019-10-20 00:04:57 2 1 2019-10-20 00:24:57 1 6 2019-10-20 00:24:57 2 1 2019-10-20 00:29:57 1 7 2019-10-20 00:34:57 1 7 2019-10-20 00:39:57 1 8 2019-10-20 01:04:57 1 8 2019-10-20 01:04:57 2 1 2019-10-20 01:34:57 1 6 2019-10-20 01:39:57 1 6 2019-10-20 01:54:57 1 6 2019-10-20 02:09:57 1 7 2019-10-20 02:24:57 1 7 2019-10-20 02:29:57 1 6 2019-10-20 02:44:57 1 6 2019-10-20 02:54:57 1 7 2019-10-20 02:59:57 1 6 2019-10-20 03:04:57 1 6 2019-10-20 03:29:57 1 6 2019-10-20 03:34:57 1 6 2019-10-20 03:54:57 1 6 2019-10-20 03:59:57 1 6 2019-10-20 04:04:57 1 6 2019-10-20 04:29:57 1 6 2019-10-20 04:34:57 1 6 2019-10-20 04:39:57 1 6 2019-10-20 04:59:57 1 7 2019-10-20 05:24:57 1 7 2019-10-20 05:29:57 1 7 2019-10-20 05:54:57 1 9 2019-10-20 05:59:57 1 8 2019-10-20 06:49:57 1 8 2019-10-20 06:54:57 1 7 2019-10-20 06:59:57 1 7 2019-10-20 07:04:57 1 7 2019-10-20 07:09:57 1 8 2019-10-20 07:29:57 1 6 2019-10-20 09:04:57 1 11 2019-10-20 09:04:57 2 2 2019-10-20 09:14:57 1 9 2019-10-20 09:14:57 2 2 2019-10-20 09:24:57 1 10 2019-10-20 09:24:57 2 2 2019-10-20 09:29:57 1 8 2019-10-20 09:29:57 2 2 2019-10-20 09:34:57 1 8 2019-10-20 09:34:57 2 2 2019-10-20 09:59:57 1 13 2019-10-20 09:59:57 2 2 2019-10-20 10:29:57 1 15 2019-10-20 10:29:57 2 1 2019-10-20 10:34:57 1 11 2019-10-20 10:34:57 2 1 2019-10-20 10:54:57 1 13 2019-10-20 10:54:57 2 1 2019-10-20 11:09:57 1 15 2019-10-20 11:09:57 2 3 2019-10-20 11:14:57 1 16 2019-10-20 11:14:57 2 1 2019-10-20 11:24:57 1 16 2019-10-20 11:24:57 2 1 2019-10-20 11:29:57 1 16 2019-10-20 11:29:57 2 1 2019-10-20 11:34:57 1 14 2019-10-20 11:34:57 2 1 2019-10-20 11:39:57 1 15 2019-10-20 11:39:57 2 1 2019-10-20 11:49:57 1 14 2019-10-20 11:49:57 2 2 2019-10-20 11:54:57 1 14 2019-10-20 11:54:57 2 2 2019-10-20 12:19:57 1 19 2019-10-20 12:19:57 2 1 2019-10-20 12:34:57 1 16 2019-10-20 12:34:57 2 1 2019-10-20 12:39:57 1 18 2019-10-19 10:39:57 1 12 2019-10-19 10:39:57 2 1 2019-10-19 10:44:57 1 13 2019-10-19 10:44:57 2 1 2019-10-19 10:54:57 1 10 2019-10-19 10:54:57 2 2 2019-10-19 10:59:57 1 10 2019-10-19 10:59:57 2 2 2019-10-19 11:09:57 1 9 2019-10-19 11:09:57 2 2 2019-10-19 11:39:57 1 8 2019-10-19 11:39:57 2 1 2019-10-19 11:49:57 1 8 2019-10-19 11:49:57 2 1 2019-10-19 11:54:57 1 9 2019-10-19 11:54:57 2 1 2019-10-19 12:14:57 1 6 2019-10-19 12:14:57 2 1 2019-10-19 12:34:57 1 7 2019-10-19 12:44:57 1 8 2019-10-19 13:04:57 1 7 2019-10-19 13:04:57 2 2 2019-10-19 13:34:57 1 7 2019-10-19 13:34:57 2 4 2019-10-19 13:39:57 1 7 2019-10-19 13:39:57 2 4 2019-10-19 13:49:57 1 6 2019-10-19 13:49:57 2 2 2019-10-19 13:54:57 1 6 2019-10-19 13:54:57 2 2 2019-10-19 14:04:57 1 7 2019-10-19 14:04:57 2 1 2019-10-19 14:39:57 1 6 2019-10-19 14:39:57 2 2 2019-10-19 14:54:57 1 8 2019-10-19 14:54:57 2 1 2019-10-19 14:59:57 1 8 2019-10-19 14:59:57 2 1 2019-10-19 15:14:57 1 7 2019-10-19 15:14:57 2 1 2019-10-19 15:24:57 1 10 2019-10-19 15:24:57 2 1 2019-10-19 15:34:57 1 8 2019-10-19 15:34:57 2 1 2019-10-19 15:39:57 1 6 2019-10-19 15:39:57 2 1 2019-10-19 15:59:57 1 6 2019-10-19 15:59:57 2 3 2019-10-19 16:39:57 1 5 2019-10-19 16:44:57 1 6 2019-10-19 16:44:57 2 1 2019-10-19 17:14:57 1 5 2019-10-19 17:29:57 1 4 2019-10-19 17:34:57 1 6 2019-10-19 17:34:57 2 1 2019-10-19 17:54:57 1 7 2019-10-19 17:54:57 2 1 2019-10-19 18:04:57 1 6 2019-10-19 18:14:57 1 7 2019-10-19 18:14:57 2 1 2019-10-19 18:34:57 1 5 2019-10-19 18:34:57 2 2 2019-10-19 18:39:57 1 6 2019-10-19 18:39:57 2 2 2019-10-19 18:44:57 1 7 2019-10-19 18:44:57 2 2 2019-10-19 19:54:57 1 10 2019-10-19 19:54:57 2 3 2019-10-19 19:59:57 1 7 2019-10-19 19:59:57 2 4 2019-10-19 20:09:57 1 11 2019-10-19 20:09:57 2 5 2019-10-19 20:14:57 1 11 2019-10-19 20:14:57 2 4 2019-10-19 20:39:57 1 10 2019-10-19 20:39:57 2 4 2019-10-19 20:59:57 1 10 2019-10-19 20:59:57 2 4 2019-10-19 21:14:57 1 13 2019-10-19 21:14:57 2 2 2019-10-19 21:19:57 1 12 2019-10-19 21:19:57 2 2 2019-10-19 21:34:57 1 14 2019-10-19 21:34:57 2 3 2019-10-19 21:44:57 1 15 2019-10-19 21:44:57 2 2 2019-10-19 22:29:57 1 14 2019-10-19 22:34:58 1 13 2019-10-19 22:44:57 1 12 2019-10-19 22:44:57 2 1 2019-10-19 22:49:57 1 10 2019-10-19 22:49:57 2 2 2019-10-19 22:59:57 1 9 2019-10-19 22:59:57 2 1 2019-10-19 23:39:57 1 9 2019-10-19 23:39:57 2 1 2019-10-20 00:14:57 1 7 2019-10-20 00:14:57 2 1 2019-10-20 00:44:57 1 8 2019-10-20 00:54:57 1 7 2019-10-20 00:54:57 2 1 2019-10-20 01:09:57 1 7 2019-10-20 01:09:57 2 1 2019-10-20 01:24:57 1 6 2019-10-20 01:29:57 1 6 2019-10-20 01:49:57 1 6 2019-10-20 02:34:57 1 6 2019-10-20 02:39:57 1 6 2019-10-20 03:19:57 1 6 2019-10-20 03:24:57 1 6 2019-10-20 03:44:57 1 6 2019-10-20 04:09:57 1 6 2019-10-20 04:14:57 1 6 2019-10-20 04:44:57 1 6 2019-10-20 04:49:57 1 7 2019-10-20 04:54:57 1 7 2019-10-20 05:09:57 1 7 2019-10-20 05:14:57 1 7 2019-10-20 05:19:57 1 7 2019-10-20 05:44:57 1 8 2019-10-20 05:49:57 1 9 2019-10-20 06:14:57 1 8 2019-10-20 06:14:57 2 1 2019-10-20 06:19:57 1 7 2019-10-20 06:19:57 2 1 2019-10-20 07:24:57 1 7 2019-10-20 07:34:57 1 6 2019-10-20 07:39:57 1 6 2019-10-20 07:44:57 1 6 2019-10-20 07:44:57 2 1 2019-10-20 07:59:57 1 7 2019-10-20 07:59:57 2 1 2019-10-20 08:14:57 1 6 2019-10-20 08:14:57 2 1 2019-10-20 08:24:57 1 8 2019-10-20 08:24:57 2 2 2019-10-20 08:29:57 1 8 2019-10-20 08:29:57 2 2 2019-10-20 09:39:57 1 9 2019-10-20 09:39:57 2 3 2019-10-20 10:09:57 1 13 2019-10-20 10:09:57 2 1 2019-10-20 10:14:57 1 12 2019-10-20 10:14:57 2 1 2019-10-20 10:24:57 1 15 2019-10-20 10:24:57 2 1 2019-10-20 10:59:57 1 14 2019-10-20 10:59:57 2 1 2019-10-20 11:19:57 1 15 2019-10-20 11:19:57 2 1 2019-10-20 11:44:57 1 15 2019-10-20 11:44:57 2 2 2019-10-20 12:09:57 1 16 2019-10-20 12:09:57 2 2 2019-10-20 12:14:57 1 17 2019-10-20 12:14:57 2 2 2019-10-20 12:24:57 1 18 2019-10-20 12:24:57 2 2 2019-10-20 12:39:57 2 1 2019-10-20 12:49:57 1 18 2019-10-20 12:49:57 2 1 2019-10-20 12:54:57 1 16 2019-10-20 12:54:57 2 1 2019-10-20 12:59:57 2 1 2019-10-20 13:04:57 1 18 2019-10-20 13:04:57 2 1 2019-10-20 13:09:57 1 18 2019-10-20 13:09:57 2 1 2019-10-20 13:14:57 1 19 2019-10-20 13:14:57 2 1 2019-10-20 13:19:57 1 18 2019-10-20 13:19:57 2 1 2019-10-20 13:24:57 1 16 2019-10-20 13:29:57 1 17 2019-10-20 13:34:57 1 18 2019-10-20 13:39:57 1 18 2019-10-20 13:39:57 2 1 2019-10-20 13:44:57 1 16 2019-10-20 13:49:57 1 17 2019-10-20 13:54:57 1 14 2019-10-20 13:59:57 1 14 2019-10-20 13:59:57 2 1 2019-10-20 14:04:57 1 15 2019-10-20 14:04:57 2 1 2019-10-20 14:09:57 1 16 2019-10-19 10:49:57 1 10 2019-10-19 10:49:57 2 2 2019-10-19 11:04:57 1 10 2019-10-19 11:04:57 2 2 2019-10-19 11:24:57 1 9 2019-10-19 11:24:57 2 1 2019-10-19 11:34:57 1 8 2019-10-19 11:34:57 2 1 2019-10-19 12:04:57 1 8 2019-10-19 12:04:57 2 1 2019-10-19 12:29:57 1 7 2019-10-19 12:29:57 2 1 2019-10-19 12:39:57 1 7 2019-10-19 12:39:57 2 1 2019-10-19 12:54:57 1 6 2019-10-19 13:14:57 1 7 2019-10-19 13:14:57 2 2 2019-10-19 13:19:57 1 7 2019-10-19 13:19:57 2 3 2019-10-19 13:24:57 1 9 2019-10-19 13:24:57 2 5 2019-10-19 13:29:57 1 7 2019-10-19 13:29:57 2 3 2019-10-19 13:44:57 1 5 2019-10-19 13:44:57 2 2 2019-10-19 14:09:57 1 8 2019-10-19 14:09:57 2 1 2019-10-19 14:29:57 1 7 2019-10-19 14:29:57 2 3 2019-10-19 14:34:57 1 8 2019-10-19 14:34:57 2 3 2019-10-19 15:09:57 1 8 2019-10-19 15:19:57 1 6 2019-10-19 15:19:57 2 1 2019-10-19 16:19:57 1 7 2019-10-19 16:19:57 2 1 2019-10-19 16:24:57 1 7 2019-10-19 16:24:57 2 1 2019-10-19 16:34:57 1 5 2019-10-19 16:54:57 1 5 2019-10-19 17:04:57 1 5 2019-10-19 17:19:57 1 5 2019-10-19 17:44:57 1 6 2019-10-19 17:44:57 2 1 2019-10-19 17:49:57 1 6 2019-10-19 17:49:57 2 1 2019-10-19 18:09:57 1 6 2019-10-19 18:09:57 2 1 2019-10-19 18:29:57 1 6 2019-10-19 18:29:57 2 1 2019-10-19 19:09:57 1 7 2019-10-19 19:09:57 2 2 2019-10-19 19:19:57 1 6 2019-10-19 19:19:57 2 3 2019-10-19 19:24:57 1 6 2019-10-19 19:24:57 2 3 2019-10-19 19:39:57 1 9 2019-10-19 19:39:57 2 3 2019-10-19 19:49:57 1 10 2019-10-19 19:49:57 2 2 2019-10-19 20:19:57 1 11 2019-10-19 20:19:57 2 4 2019-10-19 20:29:57 1 12 2019-10-19 20:29:57 2 4 2019-10-19 20:44:57 1 9 2019-10-19 20:44:57 2 5 2019-10-19 20:49:57 1 11 2019-10-19 20:49:57 2 4 2019-10-19 21:24:57 1 11 2019-10-19 21:24:57 2 2 2019-10-19 21:29:57 1 14 2019-10-19 21:29:57 2 3 2019-10-19 21:39:57 1 15 2019-10-19 21:39:57 2 2 2019-10-19 21:54:57 1 11 2019-10-19 21:54:57 2 3 2019-10-19 22:09:57 1 14 2019-10-19 22:14:57 1 13 2019-10-19 22:19:57 1 13 2019-10-19 22:24:57 1 13 2019-10-19 23:09:57 1 8 2019-10-19 23:09:57 2 1 2019-10-19 23:24:57 1 8 2019-10-19 23:24:57 2 1 2019-10-19 23:34:57 1 9 2019-10-19 23:34:57 2 2 2019-10-19 23:44:57 1 9 2019-10-19 23:44:57 2 1 2019-10-19 23:49:57 1 9 2019-10-19 23:49:57 2 2 2019-10-19 23:54:57 1 9 2019-10-19 23:54:57 2 2 2019-10-19 23:59:57 1 8 2019-10-19 23:59:57 2 2 2019-10-20 00:09:57 1 9 2019-10-20 00:09:57 2 1 2019-10-20 00:19:57 1 7 2019-10-20 00:19:57 2 1 2019-10-20 00:49:57 1 7 2019-10-20 00:49:57 2 1 2019-10-20 00:59:57 1 6 2019-10-20 00:59:57 2 1 2019-10-20 01:14:57 1 6 2019-10-20 01:19:57 1 6 2019-10-20 01:44:57 1 6 2019-10-20 01:59:57 1 6 2019-10-20 02:04:57 1 6 2019-10-20 02:14:57 1 7 2019-10-20 02:19:57 1 6 2019-10-20 02:49:57 1 6 2019-10-20 03:09:57 1 6 2019-10-20 03:14:57 1 6 2019-10-20 03:39:57 1 6 2019-10-20 03:49:57 1 7 2019-10-20 04:19:57 1 6 2019-10-20 04:24:57 1 6 2019-10-20 05:04:57 1 7 2019-10-20 05:34:57 1 7 2019-10-20 05:39:57 1 7 2019-10-20 06:04:57 1 8 2019-10-20 06:09:57 1 8 2019-10-20 06:24:57 1 7 2019-10-20 06:24:57 2 1 2019-10-20 06:29:57 1 8 2019-10-20 06:29:57 2 1 2019-10-20 06:34:57 1 8 2019-10-20 06:34:57 2 1 2019-10-20 06:39:57 1 8 2019-10-20 06:39:57 2 1 2019-10-20 06:44:57 1 8 2019-10-20 06:44:57 2 1 2019-10-20 07:14:57 1 8 2019-10-20 07:19:57 1 8 2019-10-20 07:49:57 1 6 2019-10-20 07:49:57 2 1 2019-10-20 07:54:57 1 7 2019-10-20 07:54:57 2 1 2019-10-20 08:04:57 1 8 2019-10-20 08:04:57 2 1 2019-10-20 08:09:57 1 7 2019-10-20 08:09:57 2 1 2019-10-20 08:19:57 1 7 2019-10-20 08:19:57 2 2 2019-10-20 08:34:57 1 9 2019-10-20 08:34:57 2 3 2019-10-20 08:39:57 1 10 2019-10-20 08:39:57 2 3 2019-10-20 08:44:57 1 10 2019-10-20 08:44:57 2 3 2019-10-20 08:49:57 1 9 2019-10-20 08:49:57 2 3 2019-10-20 08:54:57 1 9 2019-10-20 08:54:57 2 2 2019-10-20 08:59:57 1 9 2019-10-20 08:59:57 2 2 2019-10-20 09:09:57 1 12 2019-10-20 09:09:57 2 2 2019-10-20 09:19:57 1 9 2019-10-20 09:19:57 2 2 2019-10-20 09:44:57 1 9 2019-10-20 09:44:57 2 3 2019-10-20 09:49:57 1 12 2019-10-20 09:49:57 2 3 2019-10-20 09:54:57 1 12 2019-10-20 09:54:57 2 2 2019-10-20 10:04:57 1 14 2019-10-20 10:04:57 2 1 2019-10-20 10:19:57 1 14 2019-10-20 10:19:57 2 1 2019-10-20 10:39:57 1 13 2019-10-20 10:39:57 2 1 2019-10-20 10:44:57 1 14 2019-10-20 10:44:57 2 1 2019-10-20 10:49:57 1 13 2019-10-20 11:04:57 1 14 2019-10-20 11:04:57 2 3 2019-10-20 11:59:57 1 17 2019-10-20 11:59:57 2 2 2019-10-20 12:04:57 1 17 2019-10-20 12:04:57 2 2 2019-10-20 12:29:57 1 17 2019-10-20 12:29:57 2 2 2019-10-20 12:44:57 1 15 2019-10-20 12:44:57 2 1 2019-10-20 12:59:57 1 17 2019-10-20 14:09:57 2 1 2019-10-20 14:39:57 1 16 2019-10-20 14:39:57 2 1 2019-10-20 15:04:57 1 15 2019-10-20 15:04:57 2 1 2019-10-20 15:59:57 1 12 2019-10-20 16:09:57 1 14 2019-10-20 16:09:57 2 2 2019-10-20 16:24:57 1 12 2019-10-20 16:24:57 2 1 2019-10-20 16:39:57 1 14 2019-10-20 16:39:57 2 2 2019-10-20 16:44:57 1 12 2019-10-20 16:44:57 2 2 2019-10-20 17:19:57 1 12 2019-10-20 17:19:57 2 1 2019-10-20 17:39:57 1 12 2019-10-20 17:39:57 2 1 2019-10-20 17:54:57 1 11 2019-10-20 17:54:57 2 1 2019-10-20 17:59:57 1 11 2019-10-20 17:59:57 2 1 2019-10-20 18:04:57 1 11 2019-10-20 18:04:57 2 1 2019-10-20 18:19:57 1 15 2019-10-20 18:34:57 1 13 2019-10-20 19:29:57 1 12 2019-10-20 19:29:57 2 2 2019-10-20 19:39:57 1 13 2019-10-20 19:39:57 2 2 2019-10-20 19:44:57 1 13 2019-10-20 19:44:57 2 1 2019-10-20 20:34:57 1 10 2019-10-20 20:34:57 2 1 2019-10-20 20:39:57 1 11 2019-10-20 20:39:57 2 1 2019-10-20 20:54:57 1 12 2019-10-20 20:54:57 2 2 2019-10-20 20:59:57 1 12 2019-10-20 20:59:57 2 2 2019-10-20 21:09:57 1 11 2019-10-20 21:09:57 2 2 2019-10-20 21:14:57 1 12 2019-10-20 21:14:57 2 2 2019-10-20 21:19:57 1 14 2019-10-20 21:19:57 2 2 2019-10-20 21:54:57 1 17 2019-10-20 21:54:57 2 3 2019-10-20 22:09:57 1 16 2019-10-20 22:09:57 2 1 2019-10-20 22:24:57 1 14 2019-10-20 22:24:57 2 1 2019-10-20 22:34:57 1 16 2019-10-20 22:34:57 2 1 2019-10-20 22:39:57 1 16 2019-10-20 22:49:57 1 14 2019-10-20 22:54:57 1 15 2019-10-20 23:04:57 1 13 2019-10-20 23:14:57 1 11 2019-10-20 23:24:57 1 11 2019-10-20 23:24:57 2 2 2019-10-20 23:29:57 1 10 2019-10-20 23:29:57 2 1 2019-10-20 23:39:57 1 11 2019-10-20 23:49:57 1 11 2019-10-20 23:49:57 2 1 2019-10-20 23:54:57 1 10 2019-10-20 23:54:57 2 1 2019-10-21 00:04:57 1 13 2019-10-21 00:29:57 1 13 2019-10-21 01:19:57 1 7 2019-10-21 01:34:57 1 7 2019-10-21 01:49:57 1 7 2019-10-21 01:54:57 1 7 2019-10-21 02:04:57 1 8 2019-10-21 02:19:57 1 7 2019-10-21 02:19:57 2 1 2019-10-21 02:24:57 1 7 2019-10-21 02:24:57 2 1 2019-10-21 02:29:57 1 7 2019-10-21 02:29:57 2 1 2019-10-21 02:34:57 1 7 2019-10-21 02:34:57 2 1 2019-10-21 02:39:57 1 7 2019-10-21 02:39:57 2 1 2019-10-21 02:44:57 1 7 2019-10-21 02:44:57 2 1 2019-10-21 02:49:57 1 7 2019-10-21 02:49:57 2 1 2019-10-21 02:54:57 1 7 2019-10-21 02:54:57 2 1 2019-10-21 02:59:57 1 7 2019-10-21 02:59:57 2 1 2019-10-21 03:14:57 1 7 2019-10-21 03:14:57 2 1 2019-10-21 03:24:57 1 8 2019-10-21 03:24:57 2 1 2019-10-21 03:29:57 1 8 2019-10-21 03:29:57 2 1 2019-10-21 03:44:57 1 7 2019-10-21 03:44:57 2 1 2019-10-21 04:04:57 1 6 2019-10-21 04:04:57 2 1 2019-10-21 04:49:57 1 6 2019-10-21 04:49:57 2 1 2019-10-21 04:54:57 1 6 2019-10-21 04:54:57 2 1 2019-10-21 05:44:57 1 8 2019-10-21 05:44:57 2 1 2019-10-21 05:49:57 1 8 2019-10-21 05:49:57 2 1 2019-10-21 06:09:57 1 7 2019-10-21 06:09:57 2 1 2019-10-21 07:09:57 1 7 2019-10-21 07:09:57 2 1 2019-10-21 07:14:57 1 8 2019-10-21 07:14:57 2 1 2019-10-21 07:24:57 1 6 2019-10-21 07:24:57 2 1 2019-10-21 07:29:57 1 6 2019-10-21 07:34:57 1 6 2019-10-21 07:39:57 1 7 2019-10-21 07:49:57 1 7 2019-10-21 08:09:57 1 7 2019-10-21 08:19:57 1 7 2019-10-21 08:24:57 1 9 2019-10-21 09:09:57 1 11 2019-10-21 09:14:57 1 11 2019-10-21 09:14:57 2 1 2019-10-21 09:54:57 1 16 2019-10-21 09:54:57 2 3 2019-10-21 10:09:57 1 12 2019-10-21 10:09:57 2 2 2019-10-21 10:39:57 1 16 2019-10-21 10:39:57 2 1 2019-10-21 10:49:57 1 17 2019-10-21 10:59:57 1 14 2019-10-21 11:04:57 1 15 2019-10-21 11:09:57 1 16 2019-10-21 11:39:57 1 10 2019-10-21 11:39:57 2 1 2019-10-21 11:54:57 1 15 2019-10-21 11:54:57 2 1 2019-10-21 11:59:57 1 15 2019-10-21 11:59:57 2 1 2019-10-21 12:04:57 1 15 2019-10-21 12:04:57 2 1 2019-10-21 12:14:57 1 16 2019-10-21 12:14:57 2 1 2019-10-21 12:29:57 1 13 2019-10-21 12:29:57 2 2 2019-10-21 12:34:57 1 11 2019-10-21 12:34:57 2 2 2019-10-21 12:59:57 1 8 2019-10-21 12:59:57 2 2 2019-10-21 13:34:57 1 11 2019-10-21 13:34:57 2 3 2019-10-21 13:39:57 1 12 2019-10-21 13:39:57 2 3 2019-10-21 14:14:57 1 16 2019-10-21 14:14:57 2 2 2019-10-21 14:39:57 1 15 2019-10-21 14:39:57 2 1 2019-10-21 14:54:57 2 3 2019-10-21 14:59:57 1 12 2019-10-21 14:59:57 2 3 2019-10-21 15:04:57 1 12 2019-10-21 15:04:57 2 3 2019-10-21 15:09:57 1 13 2019-10-21 15:09:57 2 3 2019-10-21 15:14:57 1 14 2019-10-21 15:14:57 2 3 2019-10-21 15:29:57 1 15 2019-10-21 15:29:57 2 2 2019-10-21 15:34:57 1 14 2019-10-21 15:34:57 2 2 2019-10-21 15:39:57 1 13 2019-10-21 15:39:57 2 1 2019-10-21 15:44:57 1 14 2019-10-21 15:44:57 2 2 2019-10-21 15:54:57 1 13 2019-10-21 15:54:57 2 1 2019-10-21 15:59:57 1 12 2019-10-21 15:59:57 2 1 2019-10-21 16:19:57 1 12 2019-10-20 14:14:57 1 17 2019-10-20 14:14:57 2 1 2019-10-20 14:29:57 1 15 2019-10-20 14:29:57 2 1 2019-10-20 14:34:57 1 17 2019-10-20 14:34:57 2 1 2019-10-20 14:44:57 1 16 2019-10-20 14:44:57 2 1 2019-10-20 14:59:57 1 15 2019-10-20 14:59:57 2 1 2019-10-20 15:09:57 1 16 2019-10-20 15:09:57 2 1 2019-10-20 15:24:57 1 16 2019-10-20 15:34:57 1 14 2019-10-20 15:34:57 2 1 2019-10-20 15:54:57 1 13 2019-10-20 16:04:58 1 11 2019-10-20 16:49:57 1 12 2019-10-20 16:49:57 2 2 2019-10-20 16:59:57 1 12 2019-10-20 16:59:57 2 2 2019-10-20 17:09:57 1 11 2019-10-20 17:09:57 2 1 2019-10-20 17:14:57 1 12 2019-10-20 17:14:57 2 1 2019-10-20 17:24:57 1 12 2019-10-20 17:24:57 2 1 2019-10-20 17:29:57 1 13 2019-10-20 17:29:57 2 1 2019-10-20 17:49:57 1 13 2019-10-20 17:49:57 2 1 2019-10-20 18:09:57 1 10 2019-10-20 18:09:57 2 1 2019-10-20 18:24:57 1 16 2019-10-20 18:39:57 1 16 2019-10-20 18:49:57 1 13 2019-10-20 18:49:57 2 1 2019-10-20 18:54:57 1 13 2019-10-20 18:54:57 2 1 2019-10-20 18:59:57 1 10 2019-10-20 18:59:57 2 2 2019-10-20 19:14:57 1 9 2019-10-20 19:14:57 2 2 2019-10-20 19:19:57 1 9 2019-10-20 19:19:57 2 2 2019-10-20 19:34:57 1 10 2019-10-20 19:34:57 2 3 2019-10-20 19:59:57 1 13 2019-10-20 19:59:57 2 1 2019-10-20 20:04:57 1 14 2019-10-20 20:04:57 2 1 2019-10-20 20:14:57 1 13 2019-10-20 20:14:57 2 2 2019-10-20 21:24:57 1 13 2019-10-20 21:24:57 2 2 2019-10-20 21:49:57 1 15 2019-10-20 21:49:57 2 4 2019-10-20 22:14:57 1 15 2019-10-20 22:14:57 2 1 2019-10-20 22:19:57 1 14 2019-10-20 22:19:57 2 1 2019-10-20 22:29:57 1 14 2019-10-20 22:44:57 1 17 2019-10-20 22:59:57 1 14 2019-10-20 23:09:57 1 10 2019-10-20 23:19:57 1 12 2019-10-20 23:34:57 1 10 2019-10-21 00:09:57 1 13 2019-10-21 00:24:57 1 14 2019-10-21 00:44:57 1 9 2019-10-21 00:49:57 1 9 2019-10-21 00:54:57 1 9 2019-10-21 01:04:57 1 7 2019-10-21 01:09:57 1 7 2019-10-21 01:24:57 1 8 2019-10-21 01:39:57 1 8 2019-10-21 01:44:57 1 7 2019-10-21 01:59:57 1 7 2019-10-21 03:04:57 1 7 2019-10-21 03:04:57 2 1 2019-10-21 03:39:57 1 8 2019-10-21 03:39:57 2 1 2019-10-21 03:49:57 1 6 2019-10-21 03:49:57 2 1 2019-10-21 04:09:57 1 6 2019-10-21 04:09:57 2 1 2019-10-21 04:34:57 1 6 2019-10-21 04:34:57 2 1 2019-10-21 04:39:57 1 6 2019-10-21 04:39:57 2 1 2019-10-21 05:29:57 1 7 2019-10-21 05:29:57 2 1 2019-10-21 05:34:57 1 6 2019-10-21 05:34:57 2 1 2019-10-21 05:39:57 1 8 2019-10-21 05:39:57 2 1 2019-10-21 06:04:57 1 6 2019-10-21 06:04:57 2 1 2019-10-21 06:19:57 1 6 2019-10-21 06:24:57 1 7 2019-10-21 06:29:57 1 7 2019-10-21 06:34:57 1 7 2019-10-21 06:44:57 1 9 2019-10-21 06:44:57 2 1 2019-10-21 06:49:57 1 10 2019-10-21 06:49:57 2 1 2019-10-21 06:54:57 1 9 2019-10-21 06:54:57 2 1 2019-10-21 06:59:57 1 8 2019-10-21 06:59:57 2 1 2019-10-21 07:04:57 1 9 2019-10-21 07:04:57 2 1 2019-10-21 07:19:57 1 7 2019-10-21 07:19:57 2 1 2019-10-21 07:44:57 1 6 2019-10-21 07:54:57 1 8 2019-10-21 08:04:57 1 8 2019-10-21 08:14:57 1 7 2019-10-21 08:29:57 1 9 2019-10-21 08:34:57 1 10 2019-10-21 08:39:57 1 11 2019-10-21 08:44:57 1 12 2019-10-21 08:59:57 1 10 2019-10-21 09:24:57 1 13 2019-10-21 09:24:57 2 2 2019-10-21 09:29:57 1 9 2019-10-21 09:29:57 2 2 2019-10-21 09:39:57 1 14 2019-10-21 09:39:57 2 2 2019-10-21 09:44:57 1 14 2019-10-21 09:44:57 2 3 2019-10-21 09:59:57 1 17 2019-10-21 09:59:57 2 3 2019-10-21 10:14:57 1 13 2019-10-21 10:14:57 2 2 2019-10-21 10:19:57 1 12 2019-10-21 10:19:57 2 2 2019-10-21 10:24:57 1 12 2019-10-21 10:24:57 2 1 2019-10-21 10:29:57 1 12 2019-10-21 10:29:57 2 1 2019-10-21 10:34:57 1 16 2019-10-21 10:34:57 2 1 2019-10-21 10:44:57 1 14 2019-10-21 10:54:57 1 16 2019-10-21 11:14:57 1 17 2019-10-21 11:19:57 1 16 2019-10-21 11:24:57 1 16 2019-10-21 11:29:57 1 15 2019-10-21 11:29:57 2 1 2019-10-21 11:34:57 1 12 2019-10-21 11:34:57 2 1 2019-10-21 11:49:57 1 12 2019-10-21 11:49:57 2 1 2019-10-21 12:09:57 1 14 2019-10-21 12:09:57 2 1 2019-10-21 12:24:57 1 14 2019-10-21 12:24:57 2 2 2019-10-21 12:39:57 1 8 2019-10-21 12:39:57 2 2 2019-10-21 12:44:57 1 8 2019-10-21 12:44:57 2 2 2019-10-21 12:49:57 1 9 2019-10-21 12:49:57 2 2 2019-10-21 12:54:57 1 8 2019-10-21 12:54:57 2 2 2019-10-21 13:09:57 1 9 2019-10-21 13:09:57 2 2 2019-10-21 13:19:57 1 9 2019-10-21 13:19:57 2 3 2019-10-21 13:24:57 1 9 2019-10-21 13:24:57 2 3 2019-10-21 13:29:57 1 8 2019-10-21 13:29:57 2 3 2019-10-21 13:44:57 1 11 2019-10-21 13:44:57 2 2 2019-10-21 13:49:57 1 11 2019-10-21 13:49:57 2 2 2019-10-21 13:59:57 1 14 2019-10-21 13:59:57 2 2 2019-10-21 14:34:57 1 13 2019-10-21 14:34:57 2 1 2019-10-21 14:44:57 1 12 2019-10-21 14:44:57 2 2 2019-10-21 14:54:57 1 12 2019-10-20 14:19:57 1 16 2019-10-20 14:19:57 2 1 2019-10-20 14:24:57 1 16 2019-10-20 14:24:57 2 1 2019-10-20 14:49:57 1 15 2019-10-20 14:49:57 2 1 2019-10-20 14:54:57 1 13 2019-10-20 14:54:57 2 1 2019-10-20 15:14:57 1 16 2019-10-20 15:14:57 2 1 2019-10-20 15:19:57 1 17 2019-10-20 15:19:57 2 1 2019-10-20 15:29:57 1 17 2019-10-20 15:39:57 1 11 2019-10-20 15:44:57 1 12 2019-10-20 15:49:57 1 10 2019-10-20 16:14:57 1 13 2019-10-20 16:14:57 2 1 2019-10-20 16:19:57 1 13 2019-10-20 16:19:57 2 1 2019-10-20 16:29:57 1 13 2019-10-20 16:29:57 2 1 2019-10-20 16:34:57 1 14 2019-10-20 16:34:57 2 1 2019-10-20 16:54:57 1 11 2019-10-20 16:54:57 2 2 2019-10-20 17:04:57 1 9 2019-10-20 17:04:57 2 2 2019-10-20 17:34:57 1 11 2019-10-20 17:34:57 2 1 2019-10-20 17:44:57 1 12 2019-10-20 17:44:57 2 1 2019-10-20 18:14:57 1 13 2019-10-20 18:29:57 1 13 2019-10-20 18:44:57 1 14 2019-10-20 19:04:57 1 9 2019-10-20 19:04:57 2 2 2019-10-20 19:09:57 1 9 2019-10-20 19:09:57 2 2 2019-10-20 19:24:57 1 10 2019-10-20 19:24:57 2 2 2019-10-20 19:49:57 1 14 2019-10-20 19:49:57 2 1 2019-10-20 19:54:57 1 12 2019-10-20 19:54:57 2 2 2019-10-20 20:09:57 1 13 2019-10-20 20:09:57 2 2 2019-10-20 20:19:57 1 12 2019-10-20 20:19:57 2 2 2019-10-20 20:24:57 1 13 2019-10-20 20:24:57 2 2 2019-10-20 20:29:57 1 13 2019-10-20 20:29:57 2 2 2019-10-20 20:44:57 1 11 2019-10-20 20:44:57 2 1 2019-10-20 20:49:57 1 10 2019-10-20 20:49:57 2 1 2019-10-20 21:04:57 1 11 2019-10-20 21:04:57 2 2 2019-10-20 21:29:57 1 14 2019-10-20 21:29:57 2 2 2019-10-20 21:34:57 1 12 2019-10-20 21:34:57 2 3 2019-10-20 21:39:57 1 13 2019-10-20 21:39:57 2 3 2019-10-20 21:44:57 1 13 2019-10-20 21:44:57 2 3 2019-10-20 21:59:57 1 16 2019-10-20 21:59:57 2 2 2019-10-20 22:04:57 1 16 2019-10-20 22:04:57 2 1 2019-10-20 23:44:57 1 11 2019-10-20 23:59:57 1 11 2019-10-21 00:14:57 1 12 2019-10-21 00:19:57 1 12 2019-10-21 00:34:57 1 12 2019-10-21 00:39:57 1 11 2019-10-21 00:59:57 1 9 2019-10-21 01:14:57 1 8 2019-10-21 01:29:57 1 8 2019-10-21 02:09:57 1 7 2019-10-21 02:14:57 1 7 2019-10-21 02:14:57 2 1 2019-10-21 03:09:57 1 7 2019-10-21 03:09:57 2 1 2019-10-21 03:19:57 1 8 2019-10-21 03:19:57 2 1 2019-10-21 03:34:57 1 7 2019-10-21 03:34:57 2 1 2019-10-21 03:54:57 1 6 2019-10-21 03:54:57 2 1 2019-10-21 03:59:57 1 6 2019-10-21 04:14:57 1 6 2019-10-21 04:14:57 2 1 2019-10-21 04:19:57 1 6 2019-10-21 04:19:57 2 1 2019-10-21 04:24:57 1 6 2019-10-21 04:24:57 2 1 2019-10-21 04:29:57 1 6 2019-10-21 04:29:57 2 1 2019-10-21 04:44:57 1 6 2019-10-21 04:44:57 2 1 2019-10-21 04:59:57 1 7 2019-10-21 04:59:57 2 1 2019-10-21 05:04:57 1 6 2019-10-21 05:04:57 2 1 2019-10-21 05:09:57 1 6 2019-10-21 05:09:57 2 1 2019-10-21 05:14:57 1 6 2019-10-21 05:14:57 2 1 2019-10-21 05:19:57 1 7 2019-10-21 05:19:57 2 1 2019-10-21 05:24:57 1 7 2019-10-21 05:24:57 2 1 2019-10-21 05:54:57 1 7 2019-10-21 05:54:57 2 1 2019-10-21 05:59:57 1 7 2019-10-21 05:59:57 2 1 2019-10-21 06:14:57 1 6 2019-10-21 06:14:57 2 1 2019-10-21 06:39:57 1 7 2019-10-21 06:39:57 2 1 2019-10-21 07:59:57 1 8 2019-10-21 08:49:57 1 11 2019-10-21 08:54:57 1 12 2019-10-21 09:04:57 1 11 2019-10-21 09:19:57 1 11 2019-10-21 09:19:57 2 1 2019-10-21 09:34:57 1 12 2019-10-21 09:34:57 2 2 2019-10-21 09:49:57 1 15 2019-10-21 09:49:57 2 3 2019-10-21 10:04:57 1 15 2019-10-21 10:04:57 2 2 2019-10-21 11:44:57 1 10 2019-10-21 11:44:57 2 1 2019-10-21 12:19:57 1 15 2019-10-21 12:19:57 2 2 2019-10-21 13:04:57 1 10 2019-10-21 13:04:57 2 2 2019-10-21 13:14:57 1 8 2019-10-21 13:14:57 2 3 2019-10-21 13:54:57 1 14 2019-10-21 13:54:57 2 2 2019-10-21 14:04:58 1 16 2019-10-21 14:04:58 2 2 2019-10-21 14:09:57 1 15 2019-10-21 14:09:57 2 2 2019-10-21 14:19:57 1 16 2019-10-21 14:19:57 2 2 2019-10-21 14:24:57 1 16 2019-10-21 14:24:57 2 2 2019-10-21 14:29:57 1 17 2019-10-21 14:29:57 2 1 2019-10-21 14:49:57 1 13 2019-10-21 14:49:57 2 2 2019-10-21 15:19:57 1 13 2019-10-21 15:19:57 2 2 2019-10-21 15:24:57 1 15 2019-10-21 15:24:57 2 2 2019-10-21 15:49:57 1 15 2019-10-21 15:49:57 2 1 2019-10-21 16:04:57 1 13 2019-10-21 16:04:57 2 1 2019-10-21 16:09:57 1 14 2019-10-21 16:09:57 2 1 2019-10-21 16:14:57 1 13 2019-10-21 16:14:57 2 1 2019-10-21 16:19:57 2 1 2019-10-21 16:24:57 1 10 2019-10-21 16:24:57 2 1 2019-10-21 16:29:57 1 7 2019-10-21 16:29:57 2 1 2019-10-21 16:34:57 1 7 2019-10-21 16:34:57 2 1 2019-10-21 16:39:57 1 5 2019-10-21 16:39:57 2 1 2019-10-21 16:44:57 1 5 2019-10-21 16:44:57 2 1 2019-10-21 16:49:57 1 5 2019-10-21 16:49:57 2 1 2019-10-21 16:54:57 1 7 2019-10-21 16:54:57 2 1 2019-10-21 16:59:57 1 6 2019-10-21 16:59:57 2 1 2019-10-21 17:04:57 1 6 2019-10-21 17:04:57 2 1 2019-10-21 17:49:57 1 7 2019-10-21 17:49:57 2 1 2019-10-21 17:54:57 1 8 2019-10-21 17:59:57 1 9 2019-10-21 18:39:57 1 8 2019-10-21 18:49:57 1 7 2019-10-21 18:49:57 2 1 2019-10-21 18:54:57 1 9 2019-10-21 18:59:57 1 10 2019-10-21 19:04:57 1 10 2019-10-21 19:14:57 1 12 2019-10-21 19:24:57 1 10 2019-10-21 19:54:57 1 13 2019-10-21 19:54:57 2 1 2019-10-21 20:39:57 1 14 2019-10-21 20:39:57 2 3 2019-10-21 20:49:57 1 15 2019-10-21 20:49:57 2 2 2019-10-21 20:54:57 1 14 2019-10-21 20:54:57 2 2 2019-10-21 21:44:57 1 15 2019-10-21 21:44:57 2 2 2019-10-21 21:49:57 1 12 2019-10-21 21:49:57 2 2 2019-10-21 21:54:57 1 13 2019-10-21 21:54:57 2 2 2019-10-21 22:24:57 1 15 2019-10-21 22:24:57 2 2 2019-10-21 22:34:58 1 14 2019-10-21 22:34:58 2 3 2019-10-21 22:39:57 1 16 2019-10-21 22:39:57 2 2 2019-10-21 22:44:57 1 19 2019-10-21 22:44:57 2 2 2019-10-21 22:54:57 1 14 2019-10-21 22:54:57 2 2 2019-10-21 23:29:57 1 12 2019-10-21 23:29:57 2 2 2019-10-21 23:39:57 1 12 2019-10-21 23:39:57 2 3 2019-10-21 23:49:57 1 12 2019-10-21 23:49:57 2 2 2019-10-21 23:59:57 1 13 2019-10-21 23:59:57 2 2 2019-10-22 00:09:57 1 13 2019-10-22 00:09:57 2 3 2019-10-22 00:24:57 1 12 2019-10-22 00:24:57 2 3 2019-10-22 00:39:57 1 12 2019-10-22 00:39:57 2 1 2019-10-22 00:54:58 1 11 2019-10-22 00:54:58 2 2 2019-10-22 01:14:57 1 7 2019-10-22 01:14:57 2 1 2019-10-22 01:54:57 1 8 2019-10-22 01:54:57 2 1 2019-10-22 02:04:57 1 6 2019-10-22 02:09:57 1 6 2019-10-22 02:19:57 1 7 2019-10-22 02:24:57 1 7 2019-10-22 02:29:57 1 7 2019-10-22 03:29:57 1 7 2019-10-22 03:34:57 1 7 2019-10-22 03:39:57 1 7 2019-10-22 04:04:57 1 7 2019-10-22 04:09:57 1 7 2019-10-22 04:14:57 1 7 2019-10-22 04:19:57 1 7 2019-10-22 04:24:57 1 7 2019-10-22 04:29:57 1 6 2019-10-22 04:49:57 1 7 2019-10-22 05:04:57 1 6 2019-10-22 05:09:57 1 6 2019-10-22 05:24:57 1 5 2019-10-22 05:29:57 1 5 2019-10-22 05:49:57 1 5 2019-10-22 05:54:57 1 5 2019-10-22 05:59:57 1 3 2019-10-22 05:59:57 2 1 2019-10-22 06:04:57 1 2 2019-10-22 06:04:57 2 1 2019-10-22 06:19:57 1 2 2019-10-22 06:19:57 2 1 2019-10-22 06:39:57 1 3 2019-10-22 06:44:57 1 4 2019-10-22 06:49:57 1 2 2019-10-22 07:24:57 1 4 2019-10-22 07:59:57 1 7 2019-10-22 08:14:57 1 6 2019-10-22 08:14:57 2 1 2019-10-22 08:19:57 1 6 2019-10-22 08:19:57 2 2 2019-10-22 08:24:57 1 6 2019-10-22 08:24:57 2 2 2019-10-22 08:34:57 1 8 2019-10-22 08:34:57 2 1 2019-10-22 08:49:57 1 7 2019-10-22 08:49:57 2 2 2019-10-22 08:54:57 1 7 2019-10-22 08:54:57 2 2 2019-10-22 09:14:57 1 7 2019-10-22 09:14:57 2 3 2019-10-22 09:34:57 1 8 2019-10-22 09:34:57 2 2 2019-10-22 09:54:57 1 12 2019-10-22 09:54:57 2 4 2019-10-22 10:59:57 1 11 2019-10-22 10:59:57 2 3 2019-10-22 11:04:57 1 12 2019-10-22 11:04:57 2 2 2019-10-22 11:09:57 1 8 2019-10-22 11:09:57 2 2 2019-10-22 11:34:57 1 10 2019-10-22 11:34:57 2 2 2019-10-22 11:39:57 1 8 2019-10-22 11:39:57 2 3 2019-10-22 12:09:57 1 10 2019-10-22 12:09:57 2 4 2019-10-22 12:54:57 1 10 2019-10-22 12:54:57 2 3 2019-10-22 13:09:57 1 10 2019-10-22 13:09:57 2 3 2019-10-22 13:14:57 1 9 2019-10-22 13:14:57 2 3 2019-10-22 13:34:57 1 7 2019-10-22 13:34:57 2 2 2019-10-22 13:39:57 1 9 2019-10-22 13:39:57 2 2 2019-10-22 13:54:57 1 10 2019-10-22 13:54:57 2 2 2019-10-22 13:59:57 1 10 2019-10-22 13:59:57 2 2 2019-10-22 14:14:57 1 11 2019-10-22 14:14:57 2 2 2019-10-22 14:29:57 1 11 2019-10-22 14:29:57 2 2 2019-10-22 14:39:57 1 9 2019-10-22 14:39:57 2 2 2019-10-22 14:44:57 1 8 2019-10-22 14:44:57 2 2 2019-10-22 14:54:57 1 10 2019-10-22 14:54:57 2 3 2019-10-22 15:14:57 1 12 2019-10-22 15:14:57 2 3 2019-10-22 15:19:57 1 12 2019-10-22 15:19:57 2 2 2019-10-22 15:34:57 1 9 2019-10-22 15:34:57 2 1 2019-10-22 15:54:57 1 9 2019-10-22 16:24:57 1 7 2019-10-22 16:24:57 2 1 2019-10-22 16:34:57 1 7 2019-10-22 16:34:57 2 1 2019-10-22 17:09:57 1 9 2019-10-22 17:14:57 1 7 2019-10-22 17:19:57 1 9 2019-10-22 17:29:57 1 9 2019-10-22 18:04:57 1 9 2019-10-22 18:04:57 2 1 2019-10-22 18:24:57 1 10 2019-10-22 18:24:57 2 1 2019-10-22 18:44:57 1 9 2019-10-22 18:59:57 1 10 2019-10-22 18:59:57 2 1 2019-10-22 19:04:57 1 10 2019-10-22 19:04:57 2 1 2019-10-22 19:24:57 1 13 2019-10-22 19:34:57 1 12 2019-10-22 19:44:57 1 11 2019-10-22 19:44:57 2 1 2019-10-22 19:49:57 1 11 2019-10-22 19:49:57 2 1 2019-10-22 19:54:57 1 12 2019-10-22 19:54:57 2 1 2019-10-22 19:59:57 1 14 2019-10-22 19:59:57 2 1 2019-10-22 20:04:57 1 14 2019-10-22 20:04:57 2 1 2019-10-22 20:09:57 1 15 2019-10-22 20:14:57 1 15 2019-10-22 20:44:57 1 13 2019-10-22 20:44:57 2 1 2019-10-22 20:49:57 1 15 2019-10-21 17:09:57 1 7 2019-10-21 17:09:57 2 1 2019-10-21 17:14:57 1 6 2019-10-21 17:14:57 2 1 2019-10-21 17:19:57 1 5 2019-10-21 17:19:57 2 1 2019-10-21 17:39:57 1 7 2019-10-21 18:09:57 1 9 2019-10-21 18:09:57 2 1 2019-10-21 18:14:57 1 9 2019-10-21 18:14:57 2 1 2019-10-21 18:24:57 1 8 2019-10-21 18:34:57 1 7 2019-10-21 18:44:57 1 9 2019-10-21 18:44:57 2 1 2019-10-21 19:09:57 1 10 2019-10-21 19:19:57 1 11 2019-10-21 19:29:57 1 10 2019-10-21 19:34:57 1 14 2019-10-21 19:39:57 1 13 2019-10-21 19:49:57 1 12 2019-10-21 19:49:57 2 1 2019-10-21 19:59:57 1 14 2019-10-21 19:59:57 2 1 2019-10-21 20:19:57 1 15 2019-10-21 20:19:57 2 1 2019-10-21 20:24:57 1 13 2019-10-21 20:24:57 2 1 2019-10-21 20:29:57 1 14 2019-10-21 20:29:57 2 2 2019-10-21 20:59:57 1 11 2019-10-21 20:59:57 2 1 2019-10-21 21:04:57 1 11 2019-10-21 21:04:57 2 1 2019-10-21 21:09:57 1 11 2019-10-21 21:09:57 2 2 2019-10-21 21:19:57 1 12 2019-10-21 21:19:57 2 3 2019-10-21 21:24:57 1 11 2019-10-21 21:24:57 2 3 2019-10-21 21:29:57 1 10 2019-10-21 21:29:57 2 3 2019-10-21 21:34:57 1 12 2019-10-21 21:34:57 2 2 2019-10-21 21:39:57 1 13 2019-10-21 21:39:57 2 2 2019-10-21 21:59:57 1 13 2019-10-21 21:59:57 2 2 2019-10-21 22:04:57 1 10 2019-10-21 22:04:57 2 2 2019-10-21 22:09:57 1 11 2019-10-21 22:09:57 2 2 2019-10-21 22:59:57 1 14 2019-10-21 22:59:57 2 1 2019-10-21 23:04:57 1 16 2019-10-21 23:04:57 2 1 2019-10-21 23:09:57 1 17 2019-10-21 23:09:57 2 1 2019-10-21 23:19:57 1 13 2019-10-21 23:19:57 2 2 2019-10-21 23:34:57 1 11 2019-10-21 23:34:57 2 3 2019-10-21 23:44:57 1 14 2019-10-21 23:44:57 2 2 2019-10-21 23:54:57 1 12 2019-10-21 23:54:57 2 2 2019-10-22 00:14:57 1 12 2019-10-22 00:14:57 2 3 2019-10-22 00:19:57 1 12 2019-10-22 00:19:57 2 3 2019-10-22 00:29:57 1 12 2019-10-22 00:29:57 2 1 2019-10-22 00:44:57 1 13 2019-10-22 00:44:57 2 1 2019-10-22 01:04:57 1 8 2019-10-22 01:04:57 2 1 2019-10-22 01:09:57 1 8 2019-10-22 01:09:57 2 1 2019-10-22 01:29:57 1 7 2019-10-22 01:29:57 2 2 2019-10-22 01:34:57 1 8 2019-10-22 01:34:57 2 1 2019-10-22 01:39:57 1 7 2019-10-22 01:39:57 2 1 2019-10-22 01:44:57 1 7 2019-10-22 01:44:57 2 1 2019-10-22 02:44:57 1 7 2019-10-22 03:44:57 1 6 2019-10-22 03:49:57 1 6 2019-10-22 03:54:57 1 6 2019-10-22 03:59:57 1 6 2019-10-22 04:34:57 1 5 2019-10-22 04:39:57 1 5 2019-10-22 05:44:57 1 6 2019-10-22 06:14:57 1 3 2019-10-22 06:14:57 2 1 2019-10-22 06:24:57 1 2 2019-10-22 06:24:57 2 1 2019-10-22 06:29:57 1 2 2019-10-22 06:29:57 2 1 2019-10-22 06:54:57 1 4 2019-10-22 06:59:57 1 4 2019-10-22 07:04:57 1 4 2019-10-22 07:14:57 1 3 2019-10-22 07:19:57 1 5 2019-10-22 07:29:57 1 4 2019-10-22 07:54:57 1 4 2019-10-22 08:29:57 1 6 2019-10-22 08:59:57 1 7 2019-10-22 08:59:57 2 2 2019-10-22 09:04:57 1 7 2019-10-22 09:04:57 2 2 2019-10-22 09:19:57 1 8 2019-10-22 09:19:57 2 2 2019-10-22 09:39:57 1 8 2019-10-22 09:39:57 2 2 2019-10-22 09:44:57 1 10 2019-10-22 09:44:57 2 3 2019-10-22 09:59:57 1 14 2019-10-22 09:59:57 2 4 2019-10-22 10:04:57 1 12 2019-10-22 10:04:57 2 4 2019-10-22 10:09:57 1 12 2019-10-22 10:09:57 2 3 2019-10-22 10:19:57 1 12 2019-10-22 10:19:57 2 3 2019-10-22 10:24:57 1 11 2019-10-22 10:24:57 2 3 2019-10-22 10:29:57 1 12 2019-10-22 10:29:57 2 3 2019-10-22 10:39:57 1 12 2019-10-22 10:39:57 2 3 2019-10-22 10:44:57 1 12 2019-10-22 10:44:57 2 3 2019-10-22 10:49:57 1 11 2019-10-22 10:49:57 2 3 2019-10-22 11:24:57 1 8 2019-10-22 11:24:57 2 1 2019-10-22 11:29:57 1 10 2019-10-22 11:29:57 2 2 2019-10-22 11:54:57 1 9 2019-10-22 11:54:57 2 3 2019-10-22 11:59:57 1 9 2019-10-22 11:59:57 2 3 2019-10-22 12:24:57 1 11 2019-10-22 12:24:57 2 4 2019-10-22 12:29:58 1 10 2019-10-22 12:29:58 2 5 2019-10-22 12:39:57 1 9 2019-10-22 12:39:57 2 4 2019-10-22 12:44:57 1 8 2019-10-22 12:44:57 2 4 2019-10-22 12:49:57 1 9 2019-10-22 12:49:57 2 4 2019-10-22 12:59:57 1 7 2019-10-22 12:59:57 2 3 2019-10-22 13:04:57 1 8 2019-10-22 13:04:57 2 3 2019-10-22 13:29:57 1 9 2019-10-22 13:29:57 2 2 2019-10-22 13:49:57 1 9 2019-10-22 13:49:57 2 2 2019-10-22 14:24:57 1 13 2019-10-22 14:24:57 2 2 2019-10-22 14:49:57 1 10 2019-10-22 14:49:57 2 3 2019-10-22 15:09:57 1 12 2019-10-22 15:09:57 2 2 2019-10-22 15:24:57 1 14 2019-10-22 15:24:57 2 1 2019-10-22 15:39:57 1 10 2019-10-22 16:29:57 1 7 2019-10-22 16:29:57 2 1 2019-10-22 16:39:57 1 8 2019-10-22 16:49:57 1 8 2019-10-22 16:54:57 1 11 2019-10-22 17:24:57 1 7 2019-10-22 17:34:57 1 9 2019-10-22 18:39:57 1 9 2019-10-22 18:39:57 2 1 2019-10-22 18:49:57 1 13 2019-10-22 18:49:57 2 1 2019-10-22 19:09:57 1 12 2019-10-22 19:09:57 2 1 2019-10-22 19:29:57 1 14 2019-10-21 17:24:57 1 8 2019-10-21 17:29:57 1 9 2019-10-21 17:34:57 1 10 2019-10-21 17:44:57 1 7 2019-10-21 17:44:57 2 1 2019-10-21 18:04:57 1 9 2019-10-21 18:04:57 2 1 2019-10-21 18:19:57 1 10 2019-10-21 18:29:57 1 7 2019-10-21 19:44:57 1 11 2019-10-21 20:04:57 1 14 2019-10-21 20:04:57 2 1 2019-10-21 20:09:57 1 12 2019-10-21 20:09:57 2 1 2019-10-21 20:14:57 1 13 2019-10-21 20:14:57 2 1 2019-10-21 20:34:57 1 14 2019-10-21 20:34:57 2 2 2019-10-21 20:44:57 1 14 2019-10-21 20:44:57 2 3 2019-10-21 21:14:57 1 14 2019-10-21 21:14:57 2 3 2019-10-21 22:14:57 1 9 2019-10-21 22:14:57 2 2 2019-10-21 22:19:57 1 12 2019-10-21 22:19:57 2 2 2019-10-21 22:29:57 1 15 2019-10-21 22:29:57 2 3 2019-10-21 22:49:57 1 17 2019-10-21 22:49:57 2 2 2019-10-21 23:14:57 1 14 2019-10-21 23:14:57 2 1 2019-10-21 23:24:57 1 13 2019-10-21 23:24:57 2 2 2019-10-22 00:04:57 1 13 2019-10-22 00:04:57 2 2 2019-10-22 00:34:57 1 11 2019-10-22 00:34:57 2 1 2019-10-22 00:49:57 1 11 2019-10-22 00:49:57 2 1 2019-10-22 00:59:57 1 9 2019-10-22 00:59:57 2 2 2019-10-22 01:19:57 1 7 2019-10-22 01:19:57 2 1 2019-10-22 01:24:57 1 7 2019-10-22 01:24:57 2 1 2019-10-22 01:49:57 1 8 2019-10-22 01:49:57 2 1 2019-10-22 01:59:57 1 7 2019-10-22 02:14:57 1 6 2019-10-22 02:34:57 1 7 2019-10-22 02:39:57 1 7 2019-10-22 02:49:57 1 6 2019-10-22 02:54:57 1 6 2019-10-22 02:59:57 1 6 2019-10-22 03:04:57 1 6 2019-10-22 03:09:57 1 6 2019-10-22 03:14:57 1 6 2019-10-22 03:19:57 1 6 2019-10-22 03:24:57 1 6 2019-10-22 04:44:57 1 6 2019-10-22 04:54:57 1 6 2019-10-22 04:59:57 1 6 2019-10-22 05:14:57 1 6 2019-10-22 05:19:57 1 6 2019-10-22 05:34:57 1 5 2019-10-22 05:39:57 1 6 2019-10-22 06:09:57 1 2 2019-10-22 06:09:57 2 1 2019-10-22 06:34:57 1 3 2019-10-22 07:09:57 1 4 2019-10-22 07:34:57 1 5 2019-10-22 07:39:57 1 6 2019-10-22 07:44:57 1 7 2019-10-22 07:49:57 1 6 2019-10-22 08:04:57 1 7 2019-10-22 08:04:57 2 1 2019-10-22 08:09:57 1 5 2019-10-22 08:09:57 2 1 2019-10-22 08:39:57 1 8 2019-10-22 08:39:57 2 1 2019-10-22 08:44:57 1 9 2019-10-22 08:44:57 2 1 2019-10-22 09:09:57 1 8 2019-10-22 09:09:57 2 3 2019-10-22 09:24:57 1 8 2019-10-22 09:24:57 2 2 2019-10-22 09:29:57 1 7 2019-10-22 09:29:57 2 2 2019-10-22 09:49:57 1 11 2019-10-22 09:49:57 2 3 2019-10-22 10:14:57 1 11 2019-10-22 10:14:57 2 3 2019-10-22 10:34:57 1 11 2019-10-22 10:34:57 2 3 2019-10-22 10:54:57 1 12 2019-10-22 10:54:57 2 3 2019-10-22 11:14:57 1 9 2019-10-22 11:14:57 2 2 2019-10-22 11:19:57 1 9 2019-10-22 11:19:57 2 2 2019-10-22 11:44:57 1 7 2019-10-22 11:44:57 2 3 2019-10-22 11:49:57 1 8 2019-10-22 11:49:57 2 3 2019-10-22 12:04:57 1 10 2019-10-22 12:04:57 2 3 2019-10-22 12:14:57 1 11 2019-10-22 12:14:57 2 4 2019-10-22 12:19:57 1 11 2019-10-22 12:19:57 2 4 2019-10-22 12:34:57 1 9 2019-10-22 12:34:57 2 5 2019-10-22 13:19:57 1 8 2019-10-22 13:19:57 2 3 2019-10-22 13:24:57 1 8 2019-10-22 13:24:57 2 2 2019-10-22 13:44:57 1 10 2019-10-22 13:44:57 2 2 2019-10-22 14:04:57 1 10 2019-10-22 14:04:57 2 2 2019-10-22 14:09:57 1 11 2019-10-22 14:09:57 2 2 2019-10-22 14:19:57 1 12 2019-10-22 14:19:57 2 2 2019-10-22 14:34:57 1 10 2019-10-22 14:34:57 2 2 2019-10-22 14:59:57 1 10 2019-10-22 14:59:57 2 2 2019-10-22 15:04:57 1 12 2019-10-22 15:04:57 2 2 2019-10-22 15:29:57 1 13 2019-10-22 15:29:57 2 1 2019-10-22 15:44:57 1 10 2019-10-22 15:49:57 1 11 2019-10-22 15:59:57 1 9 2019-10-22 16:04:57 1 9 2019-10-22 16:09:57 1 9 2019-10-22 16:14:57 1 9 2019-10-22 16:19:57 1 8 2019-10-22 16:19:57 2 1 2019-10-22 16:44:57 1 9 2019-10-22 16:59:57 1 10 2019-10-22 17:04:57 1 10 2019-10-22 17:39:57 1 11 2019-10-22 17:39:57 2 1 2019-10-22 17:44:57 1 10 2019-10-22 17:44:57 2 1 2019-10-22 17:49:57 1 10 2019-10-22 17:49:57 2 2 2019-10-22 17:54:57 1 9 2019-10-22 17:54:57 2 1 2019-10-22 17:59:57 1 9 2019-10-22 17:59:57 2 1 2019-10-22 18:09:57 1 10 2019-10-22 18:09:57 2 1 2019-10-22 18:14:57 1 8 2019-10-22 18:14:57 2 1 2019-10-22 18:19:57 1 10 2019-10-22 18:19:57 2 1 2019-10-22 18:29:57 1 9 2019-10-22 18:29:57 2 1 2019-10-22 18:34:57 1 10 2019-10-22 18:34:57 2 1 2019-10-22 18:54:57 1 11 2019-10-22 18:54:57 2 1 2019-10-22 19:14:57 1 12 2019-10-22 19:14:57 2 1 2019-10-22 19:19:57 1 12 2019-10-22 19:39:57 1 11 2019-10-22 20:19:57 1 17 2019-10-22 20:24:57 1 15 2019-10-22 20:29:57 1 12 2019-10-22 20:29:57 2 1 2019-10-22 20:34:57 1 15 2019-10-22 20:34:57 2 1 2019-10-22 20:39:57 1 16 2019-10-22 20:39:57 2 1 2019-10-22 20:49:57 2 2 2019-10-22 20:54:57 1 13 2019-10-22 20:54:57 2 2 2019-10-22 20:59:57 1 13 2019-10-22 20:59:57 2 2 2019-10-22 21:04:57 1 15 2019-10-22 21:04:57 2 2 2019-10-22 21:09:57 1 15 2019-10-22 21:09:57 2 2 2019-10-22 21:19:57 1 18 2019-10-22 21:19:57 2 2 2019-10-22 21:24:57 1 19 2019-10-22 21:24:57 2 2 2019-10-22 21:54:57 1 17 2019-10-22 21:54:57 2 3 2019-10-22 21:59:57 1 18 2019-10-22 21:59:57 2 3 2019-10-22 22:14:57 1 17 2019-10-22 22:14:57 2 3 2019-10-22 22:39:57 1 17 2019-10-22 22:44:57 1 17 2019-10-22 23:09:57 1 19 2019-10-22 23:24:57 1 17 2019-10-22 23:24:57 2 1 2019-10-22 23:29:57 1 16 2019-10-22 23:29:57 2 1 2019-10-22 23:34:57 1 16 2019-10-22 23:39:57 1 15 2019-10-22 23:39:57 2 1 2019-10-22 23:44:57 1 13 2019-10-22 23:44:57 2 1 2019-10-22 23:54:57 1 10 2019-10-22 23:54:57 2 1 2019-10-23 00:09:57 1 11 2019-10-23 00:09:57 2 1 2019-10-23 00:44:57 1 9 2019-10-23 00:44:57 2 1 2019-10-23 01:09:57 1 8 2019-10-23 01:09:57 2 1 2019-10-23 01:14:57 1 7 2019-10-23 01:14:57 2 1 2019-10-23 01:19:57 1 7 2019-10-23 01:29:57 1 7 2019-10-23 01:44:57 1 6 2019-10-23 01:49:57 1 6 2019-10-23 02:09:57 1 5 2019-10-23 02:14:57 1 6 2019-10-23 02:14:57 2 1 2019-10-23 02:24:57 1 6 2019-10-23 02:24:57 2 1 2019-10-23 02:49:57 1 6 2019-10-23 02:54:57 1 5 2019-10-23 02:59:57 1 5 2019-10-23 03:29:57 1 6 2019-10-23 03:29:57 2 1 2019-10-23 03:54:57 1 5 2019-10-23 04:04:57 1 4 2019-10-23 04:34:57 1 5 2019-10-23 04:39:57 1 5 2019-10-23 05:04:57 1 5 2019-10-23 05:09:57 1 5 2019-10-23 05:14:57 1 5 2019-10-23 06:24:57 1 9 2019-10-23 06:29:57 1 9 2019-10-23 06:34:57 1 7 2019-10-23 06:54:57 1 5 2019-10-23 06:59:57 1 5 2019-10-23 07:34:57 1 10 2019-10-23 08:24:57 1 10 2019-10-23 08:44:57 1 10 2019-10-23 09:34:57 1 12 2019-10-23 09:39:57 1 9 2019-10-23 09:49:57 1 10 2019-10-23 10:34:57 1 11 2019-10-23 10:34:57 2 2 2019-10-23 10:54:57 1 14 2019-10-23 10:54:57 2 2 2019-10-23 11:09:57 1 11 2019-10-23 11:09:57 2 2 2019-10-23 11:29:57 1 9 2019-10-23 11:29:57 2 1 2019-10-23 11:44:57 1 8 2019-10-23 11:44:57 2 1 2019-10-23 11:54:57 1 8 2019-10-23 12:19:57 1 9 2019-10-23 12:24:57 1 9 2019-10-23 12:39:57 1 13 2019-10-23 13:59:58 1 10 2019-10-23 13:59:58 2 1 2019-10-23 14:04:57 1 12 2019-10-23 14:04:57 2 1 2019-10-23 14:09:57 1 13 2019-10-23 14:14:57 1 13 2019-10-23 14:19:57 1 12 2019-10-23 14:19:57 2 1 2019-10-23 14:49:57 1 8 2019-10-23 15:09:57 1 9 2019-10-23 15:09:57 2 2 2019-10-23 15:14:57 1 9 2019-10-23 15:14:57 2 3 2019-10-23 15:19:57 1 10 2019-10-23 15:19:57 2 3 2019-10-23 16:14:57 1 14 2019-10-23 16:14:57 2 3 2019-10-23 16:44:57 1 10 2019-10-23 16:44:57 2 2 2019-10-23 16:49:57 1 10 2019-10-23 16:49:57 2 1 2019-10-23 17:19:57 1 16 2019-10-23 17:19:57 2 2 2019-10-23 17:44:57 1 15 2019-10-23 17:44:57 2 1 2019-10-23 18:34:57 1 15 2019-10-23 18:34:57 2 1 2019-10-23 18:44:57 1 14 2019-10-23 18:44:57 2 2 2019-10-23 18:54:57 1 15 2019-10-23 18:54:57 2 3 2019-10-23 18:59:57 1 17 2019-10-23 18:59:57 2 3 2019-10-23 19:04:57 1 16 2019-10-23 19:04:57 2 3 2019-10-23 19:34:57 1 20 2019-10-23 19:34:57 2 4 2019-10-23 19:39:57 1 16 2019-10-23 19:39:57 2 4 2019-10-23 20:09:57 1 14 2019-10-23 20:09:57 2 1 2019-10-23 20:19:57 1 15 2019-10-23 20:19:57 2 1 2019-10-23 20:44:57 1 15 2019-10-23 20:44:57 2 3 2019-10-23 20:49:57 1 19 2019-10-23 20:49:57 2 2 2019-10-23 20:54:57 1 16 2019-10-23 20:54:57 2 2 2019-10-23 21:04:57 1 15 2019-10-23 21:04:57 2 3 2019-10-23 21:34:57 1 19 2019-10-23 21:34:57 2 1 2019-10-23 21:39:57 1 16 2019-10-23 21:39:57 2 2 2019-10-23 21:59:57 1 17 2019-10-23 21:59:57 2 1 2019-10-23 22:04:57 1 17 2019-10-23 22:04:57 2 1 2019-10-23 22:09:57 1 20 2019-10-23 22:09:57 2 1 2019-10-23 22:24:57 1 19 2019-10-23 22:34:57 1 18 2019-10-23 22:44:57 1 23 2019-10-23 22:44:57 2 2 2019-10-23 22:49:57 1 23 2019-10-23 22:49:57 2 2 2019-10-23 22:59:57 1 21 2019-10-23 22:59:57 2 1 2019-10-23 23:04:57 1 20 2019-10-23 23:04:57 2 1 2019-10-23 23:09:57 1 21 2019-10-23 23:09:57 2 1 2019-10-23 23:14:57 1 22 2019-10-23 23:14:57 2 1 2019-10-23 23:24:57 1 19 2019-10-23 23:24:57 2 2 2019-10-23 23:34:57 1 18 2019-10-23 23:34:57 2 1 2019-10-23 23:59:57 1 14 2019-10-24 00:19:57 1 13 2019-10-24 00:44:57 1 12 2019-10-24 01:04:57 1 11 2019-10-24 01:09:57 1 10 2019-10-24 01:09:57 2 2 2019-10-24 01:14:57 1 11 2019-10-24 01:14:57 2 1 2019-10-24 01:19:57 1 11 2019-10-24 01:24:57 1 11 2019-10-24 01:34:57 1 13 2019-10-24 01:39:57 1 12 2019-10-24 01:44:57 1 12 2019-10-24 01:49:57 1 11 2019-10-24 02:04:57 1 11 2019-10-24 02:09:57 1 11 2019-10-24 02:14:57 1 12 2019-10-24 02:24:57 1 10 2019-10-24 02:39:57 1 10 2019-10-24 02:44:57 1 9 2019-10-24 02:49:57 1 9 2019-10-24 02:54:57 1 10 2019-10-24 03:04:57 1 10 2019-10-24 03:09:57 1 10 2019-10-24 03:14:57 1 10 2019-10-24 03:19:57 1 10 2019-10-22 21:14:57 1 17 2019-10-22 21:14:57 2 2 2019-10-22 21:29:57 1 19 2019-10-22 21:29:57 2 2 2019-10-22 21:34:57 1 16 2019-10-22 21:34:57 2 1 2019-10-22 21:44:57 1 15 2019-10-22 21:44:57 2 1 2019-10-22 21:49:57 1 16 2019-10-22 21:49:57 2 1 2019-10-22 22:04:57 1 18 2019-10-22 22:04:57 2 1 2019-10-22 22:19:57 1 17 2019-10-22 22:19:57 2 1 2019-10-22 22:24:57 1 15 2019-10-22 22:24:57 2 1 2019-10-22 22:34:57 1 16 2019-10-22 22:49:57 1 17 2019-10-22 22:49:57 2 1 2019-10-22 22:54:57 1 18 2019-10-22 22:54:57 2 2 2019-10-22 23:19:57 1 19 2019-10-22 23:49:57 1 12 2019-10-22 23:49:57 2 1 2019-10-23 00:19:57 1 9 2019-10-23 00:19:57 2 2 2019-10-23 00:29:57 1 10 2019-10-23 00:29:57 2 1 2019-10-23 00:34:57 1 10 2019-10-23 00:34:57 2 1 2019-10-23 00:54:57 1 8 2019-10-23 00:54:57 2 2 2019-10-23 00:59:57 1 8 2019-10-23 00:59:57 2 2 2019-10-23 01:24:57 1 7 2019-10-23 01:34:57 1 7 2019-10-23 02:29:57 1 6 2019-10-23 02:44:57 1 6 2019-10-23 03:14:57 1 6 2019-10-23 03:24:57 1 6 2019-10-23 03:24:57 2 1 2019-10-23 03:34:57 1 6 2019-10-23 03:44:57 1 6 2019-10-23 03:59:57 1 4 2019-10-23 04:09:57 1 5 2019-10-23 04:24:57 1 5 2019-10-23 04:29:57 1 5 2019-10-23 04:59:57 1 5 2019-10-23 05:29:57 1 5 2019-10-23 05:34:57 1 5 2019-10-23 05:39:57 1 6 2019-10-23 05:49:57 1 5 2019-10-23 06:14:57 1 6 2019-10-23 06:19:57 1 7 2019-10-23 06:44:57 1 5 2019-10-23 06:49:58 1 5 2019-10-23 07:09:57 1 7 2019-10-23 07:29:57 1 10 2019-10-23 07:39:57 1 9 2019-10-23 07:59:57 1 7 2019-10-23 08:09:57 1 8 2019-10-23 08:14:57 1 9 2019-10-23 08:34:57 1 10 2019-10-23 08:39:57 1 9 2019-10-23 08:54:57 1 10 2019-10-23 08:59:57 1 10 2019-10-23 09:09:57 1 11 2019-10-23 09:19:57 1 13 2019-10-23 09:24:57 1 10 2019-10-23 09:29:57 1 11 2019-10-23 09:44:57 1 9 2019-10-23 09:54:57 1 10 2019-10-23 09:59:57 1 11 2019-10-23 09:59:57 2 1 2019-10-23 10:04:57 1 11 2019-10-23 10:04:57 2 1 2019-10-23 10:09:57 1 10 2019-10-23 10:09:57 2 1 2019-10-23 10:19:57 1 12 2019-10-23 10:19:57 2 2 2019-10-23 10:29:57 1 9 2019-10-23 10:29:57 2 2 2019-10-23 10:49:57 1 12 2019-10-23 10:49:57 2 2 2019-10-23 11:04:57 1 11 2019-10-23 11:04:57 2 2 2019-10-23 11:14:57 1 10 2019-10-23 11:14:57 2 3 2019-10-23 11:34:57 1 8 2019-10-23 11:34:57 2 1 2019-10-23 11:39:57 1 7 2019-10-23 11:39:57 2 1 2019-10-23 11:59:57 1 8 2019-10-23 12:14:57 1 11 2019-10-23 12:29:57 1 10 2019-10-23 12:44:57 1 11 2019-10-23 12:59:57 1 13 2019-10-23 13:04:57 1 14 2019-10-23 13:09:57 1 15 2019-10-23 13:14:57 1 13 2019-10-23 13:29:57 1 13 2019-10-23 13:39:57 1 16 2019-10-23 13:49:57 1 12 2019-10-23 14:54:57 1 8 2019-10-23 14:54:57 2 2 2019-10-23 14:59:57 1 8 2019-10-23 14:59:57 2 3 2019-10-23 15:24:57 1 12 2019-10-23 15:24:57 2 3 2019-10-23 15:29:57 1 11 2019-10-23 15:29:57 2 2 2019-10-23 15:34:57 1 9 2019-10-23 15:34:57 2 2 2019-10-23 15:39:57 1 10 2019-10-23 15:39:57 2 2 2019-10-23 15:59:57 1 11 2019-10-23 15:59:57 2 2 2019-10-23 16:19:57 1 14 2019-10-23 16:19:57 2 2 2019-10-23 16:24:57 1 13 2019-10-23 16:24:57 2 2 2019-10-23 17:04:57 1 14 2019-10-23 17:04:57 2 1 2019-10-23 17:14:57 1 15 2019-10-23 17:14:57 2 2 2019-10-23 17:24:57 1 15 2019-10-23 17:24:57 2 2 2019-10-23 17:29:57 1 12 2019-10-23 17:29:57 2 2 2019-10-23 17:39:57 1 17 2019-10-23 17:39:57 2 2 2019-10-23 17:49:57 1 15 2019-10-23 17:49:57 2 1 2019-10-23 17:59:57 1 13 2019-10-23 17:59:57 2 2 2019-10-23 18:19:57 1 14 2019-10-23 18:19:57 2 3 2019-10-23 18:24:57 1 14 2019-10-23 18:24:57 2 4 2019-10-23 18:49:57 1 14 2019-10-23 18:49:57 2 3 2019-10-23 19:14:57 1 16 2019-10-23 19:14:57 2 3 2019-10-23 19:19:57 1 16 2019-10-23 19:19:57 2 3 2019-10-23 19:24:57 1 16 2019-10-23 19:24:57 2 3 2019-10-23 19:29:57 1 18 2019-10-23 19:29:57 2 3 2019-10-23 19:49:57 1 13 2019-10-23 19:49:57 2 2 2019-10-23 19:59:57 1 16 2019-10-23 19:59:57 2 2 2019-10-23 20:04:57 1 14 2019-10-23 20:04:57 2 1 2019-10-23 20:14:57 1 15 2019-10-23 20:14:57 2 1 2019-10-23 20:29:57 1 15 2019-10-23 20:29:57 2 2 2019-10-23 20:34:57 1 15 2019-10-23 20:34:57 2 2 2019-10-23 21:09:57 1 16 2019-10-23 21:09:57 2 3 2019-10-23 21:14:57 1 19 2019-10-23 21:14:57 2 2 2019-10-23 21:19:57 1 19 2019-10-23 21:19:57 2 2 2019-10-23 21:24:57 1 18 2019-10-23 21:24:57 2 3 2019-10-23 21:29:57 1 16 2019-10-23 21:29:57 2 2 2019-10-23 22:29:57 1 18 2019-10-23 22:29:57 2 1 2019-10-23 23:29:57 1 20 2019-10-23 23:29:57 2 1 2019-10-23 23:39:57 1 18 2019-10-23 23:39:57 2 1 2019-10-23 23:49:57 1 17 2019-10-23 23:49:57 2 1 2019-10-24 00:04:57 1 13 2019-10-24 00:09:57 1 13 2019-10-24 00:24:57 1 12 2019-10-24 00:39:57 1 11 2019-10-24 00:54:57 1 12 2019-10-24 01:29:57 1 12 2019-10-22 21:39:57 1 15 2019-10-22 21:39:57 2 1 2019-10-22 22:09:57 1 19 2019-10-22 22:09:57 2 1 2019-10-22 22:29:57 1 17 2019-10-22 22:29:57 2 1 2019-10-22 22:59:57 1 19 2019-10-22 22:59:57 2 1 2019-10-22 23:04:57 1 17 2019-10-22 23:14:57 1 20 2019-10-22 23:59:57 1 9 2019-10-22 23:59:57 2 2 2019-10-23 00:04:57 1 10 2019-10-23 00:04:57 2 1 2019-10-23 00:14:57 1 9 2019-10-23 00:14:57 2 1 2019-10-23 00:24:57 1 9 2019-10-23 00:24:57 2 2 2019-10-23 00:39:57 1 10 2019-10-23 00:39:57 2 1 2019-10-23 00:49:57 1 9 2019-10-23 00:49:57 2 1 2019-10-23 01:04:57 1 8 2019-10-23 01:04:57 2 2 2019-10-23 01:39:57 1 7 2019-10-23 01:54:57 1 6 2019-10-23 01:59:57 1 5 2019-10-23 02:04:57 1 5 2019-10-23 02:04:57 2 1 2019-10-23 02:19:57 1 6 2019-10-23 02:19:57 2 1 2019-10-23 02:34:57 1 6 2019-10-23 02:39:57 1 6 2019-10-23 03:04:57 1 5 2019-10-23 03:09:57 1 5 2019-10-23 03:19:57 1 5 2019-10-23 03:39:57 1 6 2019-10-23 03:49:57 1 5 2019-10-23 04:14:57 1 5 2019-10-23 04:19:57 1 5 2019-10-23 04:44:57 1 5 2019-10-23 04:49:57 1 5 2019-10-23 04:54:57 1 5 2019-10-23 05:19:57 1 5 2019-10-23 05:24:57 1 5 2019-10-23 05:44:57 1 5 2019-10-23 05:54:57 1 6 2019-10-23 05:59:57 1 7 2019-10-23 06:04:57 1 7 2019-10-23 06:09:57 1 6 2019-10-23 06:39:57 1 7 2019-10-23 07:04:57 1 5 2019-10-23 07:14:57 1 7 2019-10-23 07:19:57 1 8 2019-10-23 07:24:57 1 7 2019-10-23 07:44:57 1 9 2019-10-23 07:49:57 1 8 2019-10-23 07:54:57 1 9 2019-10-23 08:04:57 1 11 2019-10-23 08:19:57 1 8 2019-10-23 08:29:57 1 13 2019-10-23 08:49:57 1 9 2019-10-23 09:04:57 1 11 2019-10-23 09:14:57 1 11 2019-10-23 10:14:57 1 12 2019-10-23 10:14:57 2 1 2019-10-23 10:24:57 1 11 2019-10-23 10:24:57 2 2 2019-10-23 10:39:57 1 14 2019-10-23 10:39:57 2 2 2019-10-23 10:44:58 1 12 2019-10-23 10:44:58 2 2 2019-10-23 10:59:57 1 11 2019-10-23 10:59:57 2 2 2019-10-23 11:19:57 1 8 2019-10-23 11:19:57 2 3 2019-10-23 11:24:57 1 9 2019-10-23 11:24:57 2 3 2019-10-23 11:49:57 1 8 2019-10-23 12:04:57 1 9 2019-10-23 12:09:57 1 8 2019-10-23 12:34:57 1 11 2019-10-23 12:49:57 1 11 2019-10-23 12:54:57 1 11 2019-10-23 13:19:57 1 13 2019-10-23 13:24:57 1 14 2019-10-23 13:34:57 1 15 2019-10-23 13:44:57 1 13 2019-10-23 13:54:57 1 13 2019-10-23 14:24:57 1 9 2019-10-23 14:24:57 2 1 2019-10-23 14:29:57 1 8 2019-10-23 14:29:57 2 1 2019-10-23 14:34:57 1 6 2019-10-23 14:39:57 1 7 2019-10-23 14:44:57 1 8 2019-10-23 15:04:57 1 8 2019-10-23 15:04:57 2 3 2019-10-23 15:44:57 1 11 2019-10-23 15:44:57 2 3 2019-10-23 15:49:57 1 10 2019-10-23 15:49:57 2 3 2019-10-23 15:54:57 1 12 2019-10-23 15:54:57 2 4 2019-10-23 16:04:57 1 11 2019-10-23 16:04:57 2 2 2019-10-23 16:09:57 1 13 2019-10-23 16:09:57 2 3 2019-10-23 16:29:57 1 16 2019-10-23 16:29:57 2 2 2019-10-23 16:34:57 1 14 2019-10-23 16:34:57 2 2 2019-10-23 16:39:57 1 14 2019-10-23 16:39:57 2 2 2019-10-23 16:54:57 1 13 2019-10-23 16:54:57 2 1 2019-10-23 16:59:57 1 16 2019-10-23 16:59:57 2 1 2019-10-23 17:09:57 1 15 2019-10-23 17:09:57 2 2 2019-10-23 17:34:57 1 15 2019-10-23 17:34:57 2 2 2019-10-23 17:54:57 1 13 2019-10-23 17:54:57 2 2 2019-10-23 18:04:57 1 13 2019-10-23 18:04:57 2 2 2019-10-23 18:09:57 1 13 2019-10-23 18:09:57 2 3 2019-10-23 18:14:57 1 15 2019-10-23 18:14:57 2 3 2019-10-23 18:29:57 1 14 2019-10-23 18:29:57 2 3 2019-10-23 18:39:59 1 15 2019-10-23 18:39:59 2 1 2019-10-23 19:09:57 1 19 2019-10-23 19:09:57 2 3 2019-10-23 19:44:57 1 19 2019-10-23 19:44:57 2 3 2019-10-23 19:54:57 1 15 2019-10-23 19:54:57 2 2 2019-10-23 20:24:57 1 18 2019-10-23 20:24:57 2 2 2019-10-23 20:39:57 1 15 2019-10-23 20:39:57 2 2 2019-10-23 20:59:57 1 15 2019-10-23 20:59:57 2 3 2019-10-23 21:44:57 1 15 2019-10-23 21:44:57 2 2 2019-10-23 21:49:57 1 13 2019-10-23 21:49:57 2 2 2019-10-23 21:54:57 1 19 2019-10-23 21:54:57 2 1 2019-10-23 22:14:57 1 19 2019-10-23 22:14:57 2 1 2019-10-23 22:19:57 1 20 2019-10-23 22:39:57 1 20 2019-10-23 22:54:57 1 21 2019-10-23 22:54:57 2 2 2019-10-23 23:19:57 1 19 2019-10-23 23:19:57 2 1 2019-10-23 23:44:57 1 18 2019-10-23 23:44:57 2 1 2019-10-23 23:54:57 1 15 2019-10-24 00:14:57 1 14 2019-10-24 00:29:57 1 12 2019-10-24 00:34:57 1 11 2019-10-24 00:49:57 1 12 2019-10-24 00:59:57 1 11 2019-10-24 01:54:57 1 12 2019-10-24 01:54:57 2 1 2019-10-24 01:59:57 1 11 2019-10-24 02:19:57 1 12 2019-10-24 02:29:57 1 9 2019-10-24 02:34:57 1 9 2019-10-24 02:59:58 1 10 2019-10-24 03:24:57 1 10 2019-10-24 03:24:57 2 1 2019-10-24 03:29:57 1 10 2019-10-24 03:29:57 2 1 2019-10-24 03:34:57 1 10 2019-10-24 03:34:57 2 1 2019-10-24 03:39:57 1 10 2019-10-24 03:39:57 2 1 2019-10-24 03:44:57 1 10 2019-10-24 03:44:57 2 1 2019-10-24 03:49:57 1 10 2019-10-24 03:49:57 2 1 2019-10-24 04:04:57 1 10 2019-10-24 04:04:57 2 1 2019-10-24 04:19:57 1 10 2019-10-24 04:34:57 1 10 2019-10-24 04:39:57 1 9 2019-10-24 04:49:57 1 10 2019-10-24 04:54:57 1 12 2019-10-24 04:59:57 1 11 2019-10-24 05:09:57 1 9 2019-10-24 05:14:57 1 9 2019-10-24 05:34:57 1 9 2019-10-24 05:39:57 1 10 2019-10-24 05:44:57 1 10 2019-10-24 05:44:57 2 1 2019-10-24 05:59:57 1 11 2019-10-24 06:14:57 1 11 2019-10-24 06:29:57 1 11 2019-10-24 06:29:57 2 1 2019-10-24 06:44:57 1 11 2019-10-24 06:59:57 1 10 2019-10-24 07:19:57 1 14 2019-10-24 07:49:57 1 11 2019-10-24 08:04:57 1 12 2019-10-24 08:34:57 1 12 2019-10-24 08:59:57 1 13 2019-10-24 09:19:57 1 13 2019-10-24 09:19:57 2 1 2019-10-24 09:34:57 1 15 2019-10-24 09:34:57 2 1 2019-10-24 09:39:57 1 13 2019-10-24 09:39:57 2 1 2019-10-24 09:44:57 1 12 2019-10-24 09:44:57 2 1 2019-10-24 10:19:57 1 11 2019-10-24 10:19:57 2 1 2019-10-24 10:24:57 1 14 2019-10-24 10:24:57 2 1 2019-10-24 10:34:57 1 13 2019-10-24 10:34:57 2 1 2019-10-24 10:44:57 1 17 2019-10-24 10:44:57 2 1 2019-10-24 10:49:57 1 18 2019-10-24 10:49:57 2 1 2019-10-24 11:09:57 1 18 2019-10-24 11:09:57 2 1 2019-10-24 11:14:57 1 17 2019-10-24 11:14:57 2 1 2019-10-24 11:29:57 1 15 2019-10-24 11:29:57 2 1 2019-10-24 11:39:57 1 15 2019-10-24 11:39:57 2 1 2019-10-24 11:44:57 1 15 2019-10-24 11:44:57 2 1 2019-10-24 11:59:57 1 18 2019-10-24 11:59:57 2 2 2019-10-24 12:09:57 1 17 2019-10-24 12:09:57 2 2 2019-10-24 12:14:57 1 19 2019-10-24 12:14:57 2 2 2019-10-24 12:29:57 1 13 2019-10-24 12:29:57 2 3 2019-10-24 12:34:57 1 16 2019-10-24 12:34:57 2 2 2019-10-24 12:54:57 1 17 2019-10-24 12:54:57 2 3 2019-10-24 13:04:57 1 15 2019-10-24 13:04:57 2 3 2019-10-24 13:09:57 1 15 2019-10-24 13:09:57 2 3 2019-10-24 13:19:57 1 17 2019-10-24 13:19:57 2 3 2019-10-24 13:34:57 1 18 2019-10-24 13:34:57 2 3 2019-10-24 13:39:57 1 17 2019-10-24 13:39:57 2 3 2019-10-24 14:14:57 1 20 2019-10-24 14:14:57 2 2 2019-10-24 14:39:57 1 20 2019-10-24 14:39:57 2 2 2019-10-24 14:49:57 1 19 2019-10-24 15:14:57 1 18 2019-10-24 15:14:57 2 3 2019-10-24 15:24:57 1 15 2019-10-24 15:24:57 2 4 2019-10-24 15:34:57 1 15 2019-10-24 15:34:57 2 4 2019-10-24 15:54:57 1 14 2019-10-24 15:54:57 2 2 2019-10-24 15:59:57 1 14 2019-10-24 15:59:57 2 1 2019-10-24 16:04:57 1 16 2019-10-24 16:04:57 2 1 2019-10-24 16:19:57 1 15 2019-10-24 16:19:57 2 2 2019-10-24 16:29:57 1 14 2019-10-24 16:29:57 2 1 2019-10-24 16:34:57 1 14 2019-10-24 16:34:57 2 1 2019-10-24 16:44:57 1 14 2019-10-24 16:44:57 2 1 2019-10-24 16:49:57 1 14 2019-10-24 16:49:57 2 2 2019-10-24 17:14:57 1 18 2019-10-24 17:14:57 2 2 2019-10-24 17:24:57 1 18 2019-10-24 17:24:57 2 1 2019-10-24 17:29:57 1 15 2019-10-24 17:29:57 2 3 2019-10-24 17:54:57 1 16 2019-10-24 17:54:57 2 1 2019-10-24 18:04:57 1 15 2019-10-24 18:04:57 2 2 2019-10-24 18:19:57 1 14 2019-10-24 18:19:57 2 1 2019-10-24 18:24:57 1 12 2019-10-24 18:24:57 2 1 2019-10-24 18:39:57 1 12 2019-10-24 18:39:57 2 1 2019-10-24 18:49:57 1 18 2019-10-24 18:49:57 2 3 2019-10-24 18:59:57 1 18 2019-10-24 18:59:57 2 3 2019-10-24 19:09:57 1 19 2019-10-24 19:09:57 2 3 2019-10-24 19:19:57 1 19 2019-10-24 19:19:57 2 2 2019-10-24 19:24:57 1 22 2019-10-24 19:24:57 2 3 2019-10-24 19:29:57 1 20 2019-10-24 19:29:57 2 2 2019-10-24 19:44:57 1 16 2019-10-24 19:44:57 2 3 2019-10-24 19:49:57 1 19 2019-10-24 19:49:57 2 2 2019-10-24 19:54:57 1 18 2019-10-24 19:54:57 2 2 2019-10-24 19:59:57 1 18 2019-10-24 19:59:57 2 3 2019-10-24 20:14:57 1 15 2019-10-24 20:14:57 2 1 2019-10-24 20:19:57 1 15 2019-10-24 20:19:57 2 1 2019-10-24 20:29:57 1 16 2019-10-24 20:29:57 2 3 2019-10-24 20:34:57 1 18 2019-10-24 20:34:57 2 3 2019-10-24 20:39:57 1 16 2019-10-24 20:39:57 2 3 2019-10-24 20:49:57 1 16 2019-10-24 20:49:57 2 2 2019-10-24 21:04:57 1 14 2019-10-24 21:04:57 2 3 2019-10-24 21:14:57 1 14 2019-10-24 21:14:57 2 3 2019-10-24 21:34:57 1 16 2019-10-24 21:34:57 2 4 2019-10-24 21:49:57 1 14 2019-10-24 21:49:57 2 1 2019-10-24 21:54:57 1 14 2019-10-24 21:54:57 2 3 2019-10-24 22:04:57 1 13 2019-10-24 22:04:57 2 2 2019-10-24 22:14:57 1 13 2019-10-24 22:14:57 2 3 2019-10-24 22:19:57 1 12 2019-10-24 22:19:57 2 3 2019-10-24 22:29:57 1 12 2019-10-24 22:29:57 2 2 2019-10-24 22:44:57 1 13 2019-10-24 22:44:57 2 2 2019-10-24 22:49:57 1 13 2019-10-24 22:49:57 2 1 2019-10-24 23:14:57 1 14 2019-10-24 23:14:57 2 1 2019-10-24 23:19:57 1 12 2019-10-24 23:19:57 2 1 2019-10-24 23:24:57 1 14 2019-10-24 23:24:57 2 3 2019-10-24 23:39:57 1 13 2019-10-24 23:39:57 2 2 2019-10-24 23:59:57 1 14 2019-10-24 23:59:57 2 1 2019-10-25 00:04:57 1 14 2019-10-24 03:54:57 1 10 2019-10-24 03:54:57 2 1 2019-10-24 04:09:57 1 9 2019-10-24 04:09:57 2 1 2019-10-24 04:14:58 1 10 2019-10-24 04:14:58 2 1 2019-10-24 04:29:57 1 10 2019-10-24 04:44:57 1 10 2019-10-24 05:04:57 1 10 2019-10-24 05:24:57 1 9 2019-10-24 05:29:57 1 9 2019-10-24 06:04:57 1 12 2019-10-24 07:04:57 1 11 2019-10-24 07:09:57 1 13 2019-10-24 07:09:57 2 1 2019-10-24 07:14:57 1 13 2019-10-24 07:14:57 2 1 2019-10-24 07:24:57 1 14 2019-10-24 07:39:57 1 13 2019-10-24 07:44:57 1 13 2019-10-24 07:59:57 1 11 2019-10-24 07:59:57 2 1 2019-10-24 08:09:57 1 11 2019-10-24 08:14:57 1 9 2019-10-24 08:39:57 1 15 2019-10-24 08:54:57 1 14 2019-10-24 09:09:57 1 14 2019-10-24 09:09:57 2 1 2019-10-24 09:14:57 1 12 2019-10-24 09:14:57 2 1 2019-10-24 09:24:57 1 15 2019-10-24 09:24:57 2 1 2019-10-24 09:49:57 1 16 2019-10-24 09:49:57 2 1 2019-10-24 09:54:57 1 13 2019-10-24 09:54:57 2 1 2019-10-24 09:59:57 1 13 2019-10-24 09:59:57 2 1 2019-10-24 10:29:57 1 15 2019-10-24 10:29:57 2 1 2019-10-24 10:39:57 1 17 2019-10-24 10:39:57 2 1 2019-10-24 10:54:57 1 16 2019-10-24 10:54:57 2 1 2019-10-24 11:49:57 1 16 2019-10-24 11:49:57 2 1 2019-10-24 11:54:57 1 15 2019-10-24 11:54:57 2 1 2019-10-24 12:04:57 1 17 2019-10-24 12:04:57 2 2 2019-10-24 12:24:57 1 14 2019-10-24 12:24:57 2 2 2019-10-24 12:49:57 1 14 2019-10-24 12:49:57 2 3 2019-10-24 13:14:57 1 14 2019-10-24 13:14:57 2 3 2019-10-24 13:24:57 1 17 2019-10-24 13:24:57 2 3 2019-10-24 13:44:57 1 19 2019-10-24 13:44:57 2 3 2019-10-24 13:49:57 1 19 2019-10-24 13:49:57 2 4 2019-10-24 13:59:57 1 19 2019-10-24 13:59:57 2 3 2019-10-24 14:04:57 1 19 2019-10-24 14:04:57 2 2 2019-10-24 14:19:57 1 23 2019-10-24 14:19:57 2 2 2019-10-24 14:29:57 1 20 2019-10-24 14:29:57 2 1 2019-10-24 14:44:57 1 18 2019-10-24 14:44:57 2 1 2019-10-24 14:59:57 1 15 2019-10-24 15:09:57 1 17 2019-10-24 15:09:57 2 2 2019-10-24 15:19:57 1 17 2019-10-24 15:19:57 2 4 2019-10-24 15:39:57 1 16 2019-10-24 15:39:57 2 3 2019-10-24 16:09:57 1 17 2019-10-24 16:09:57 2 2 2019-10-24 16:14:57 1 16 2019-10-24 16:14:57 2 2 2019-10-24 16:24:57 1 14 2019-10-24 16:24:57 2 2 2019-10-24 16:39:57 1 14 2019-10-24 16:39:57 2 1 2019-10-24 16:54:57 1 15 2019-10-24 16:54:57 2 3 2019-10-24 17:04:57 1 15 2019-10-24 17:04:57 2 3 2019-10-24 17:44:57 1 18 2019-10-24 17:44:57 2 2 2019-10-24 17:49:57 1 17 2019-10-24 17:49:57 2 2 2019-10-24 17:59:57 1 17 2019-10-24 17:59:57 2 1 2019-10-24 18:14:57 1 13 2019-10-24 18:14:57 2 1 2019-10-24 18:54:57 1 18 2019-10-24 18:54:57 2 3 2019-10-24 19:39:57 1 17 2019-10-24 19:39:57 2 3 2019-10-24 21:29:57 1 15 2019-10-24 21:29:57 2 3 2019-10-24 21:39:57 1 13 2019-10-24 21:39:57 2 3 2019-10-24 21:44:57 1 13 2019-10-24 21:44:57 2 2 2019-10-24 22:24:57 1 11 2019-10-24 22:24:57 2 2 2019-10-24 22:39:57 1 14 2019-10-24 22:39:57 2 2 2019-10-24 22:59:57 1 12 2019-10-24 22:59:57 2 1 2019-10-24 23:09:57 1 14 2019-10-24 23:09:57 2 1 2019-10-24 23:49:57 1 11 2019-10-24 23:49:57 2 1 2019-10-24 23:54:57 1 13 2019-10-24 23:54:57 2 1 2019-10-25 00:09:57 1 14 2019-10-25 00:19:57 1 14 2019-10-25 00:29:57 1 14 2019-10-25 00:29:57 2 1 2019-10-25 00:34:57 1 16 2019-10-25 00:34:57 2 1 2019-10-25 00:39:57 1 14 2019-10-25 00:39:57 2 1 2019-10-25 00:44:57 1 13 2019-10-25 00:44:57 2 1 2019-10-25 00:49:57 1 12 2019-10-25 00:49:57 2 1 2019-10-25 00:54:57 1 12 2019-10-25 00:54:57 2 1 2019-10-25 01:04:57 1 11 2019-10-25 01:04:57 2 1 2019-10-25 01:09:57 1 12 2019-10-25 01:09:57 2 1 2019-10-25 01:14:57 1 12 2019-10-25 01:14:57 2 1 2019-10-25 01:19:57 1 13 2019-10-25 01:19:57 2 1 2019-10-25 01:24:57 1 13 2019-10-25 01:24:57 2 1 2019-10-25 01:29:57 1 14 2019-10-25 01:29:57 2 1 2019-10-25 01:44:57 1 13 2019-10-25 01:44:57 2 1 2019-10-25 01:49:57 1 13 2019-10-25 01:49:57 2 1 2019-10-25 02:04:57 1 11 2019-10-25 02:04:57 2 2 2019-10-25 02:09:57 1 11 2019-10-25 02:09:57 2 2 2019-10-25 02:24:57 1 12 2019-10-25 02:24:57 2 1 2019-10-25 02:29:57 1 13 2019-10-25 02:34:57 1 12 2019-10-25 02:54:57 1 12 2019-10-25 02:59:57 1 12 2019-10-25 03:09:57 1 12 2019-10-25 03:14:57 1 13 2019-10-25 03:19:57 1 11 2019-10-25 03:24:57 1 11 2019-10-25 03:29:57 1 11 2019-10-25 03:44:57 1 11 2019-10-25 03:49:57 1 11 2019-10-25 03:59:57 1 11 2019-10-25 04:04:57 1 11 2019-10-25 04:14:57 1 11 2019-10-25 04:24:57 1 12 2019-10-25 04:29:57 1 11 2019-10-25 04:34:57 1 12 2019-10-25 04:49:57 1 13 2019-10-25 04:54:57 1 13 2019-10-25 04:59:57 1 12 2019-10-25 05:09:57 1 9 2019-10-25 05:14:57 1 10 2019-10-25 05:19:57 1 9 2019-10-25 05:24:57 1 8 2019-10-25 05:39:57 1 9 2019-10-25 05:49:57 1 9 2019-10-25 05:49:57 2 1 2019-10-25 05:59:57 1 9 2019-10-24 03:59:57 1 10 2019-10-24 03:59:57 2 1 2019-10-24 04:24:57 1 10 2019-10-24 05:19:57 1 11 2019-10-24 05:49:57 1 10 2019-10-24 05:54:57 1 10 2019-10-24 06:09:57 1 11 2019-10-24 06:19:57 1 11 2019-10-24 06:24:57 1 11 2019-10-24 06:34:57 1 11 2019-10-24 06:39:57 1 12 2019-10-24 06:49:57 1 11 2019-10-24 06:54:57 1 11 2019-10-24 07:29:57 1 11 2019-10-24 07:34:57 1 11 2019-10-24 07:54:57 1 13 2019-10-24 08:19:57 1 11 2019-10-24 08:24:57 1 12 2019-10-24 08:29:57 1 12 2019-10-24 08:44:57 1 15 2019-10-24 08:49:57 1 16 2019-10-24 09:04:57 1 13 2019-10-24 09:04:57 2 1 2019-10-24 09:29:57 1 17 2019-10-24 09:29:57 2 1 2019-10-24 10:04:57 1 14 2019-10-24 10:04:57 2 1 2019-10-24 10:09:57 1 13 2019-10-24 10:09:57 2 1 2019-10-24 10:14:57 1 11 2019-10-24 10:14:57 2 1 2019-10-24 10:59:57 1 18 2019-10-24 10:59:57 2 1 2019-10-24 11:04:57 1 17 2019-10-24 11:04:57 2 1 2019-10-24 11:19:57 1 15 2019-10-24 11:19:57 2 1 2019-10-24 11:24:57 1 16 2019-10-24 11:24:57 2 1 2019-10-24 11:34:57 1 14 2019-10-24 11:34:57 2 1 2019-10-24 12:19:57 1 17 2019-10-24 12:19:57 2 2 2019-10-24 12:39:57 1 15 2019-10-24 12:39:57 2 3 2019-10-24 12:44:57 1 16 2019-10-24 12:44:57 2 3 2019-10-24 12:59:57 1 16 2019-10-24 12:59:57 2 3 2019-10-24 13:29:57 1 18 2019-10-24 13:29:57 2 2 2019-10-24 13:54:57 1 19 2019-10-24 13:54:57 2 3 2019-10-24 14:09:57 1 21 2019-10-24 14:09:57 2 2 2019-10-24 14:24:57 1 21 2019-10-24 14:24:57 2 1 2019-10-24 14:34:57 1 21 2019-10-24 14:34:57 2 1 2019-10-24 14:54:57 1 19 2019-10-24 15:04:57 1 17 2019-10-24 15:04:57 2 2 2019-10-24 15:29:57 1 16 2019-10-24 15:29:57 2 4 2019-10-24 15:44:57 1 15 2019-10-24 15:44:57 2 3 2019-10-24 15:49:57 1 13 2019-10-24 15:49:57 2 3 2019-10-24 16:59:57 1 16 2019-10-24 16:59:57 2 3 2019-10-24 17:09:57 1 16 2019-10-24 17:09:57 2 3 2019-10-24 17:19:57 1 19 2019-10-24 17:19:57 2 3 2019-10-24 17:34:57 1 15 2019-10-24 17:34:57 2 2 2019-10-24 17:39:57 1 15 2019-10-24 17:39:57 2 2 2019-10-24 18:09:57 1 11 2019-10-24 18:09:57 2 1 2019-10-24 18:29:57 1 12 2019-10-24 18:29:57 2 1 2019-10-24 18:34:57 1 11 2019-10-24 18:34:57 2 1 2019-10-24 18:44:57 1 15 2019-10-24 18:44:57 2 2 2019-10-24 19:04:57 1 18 2019-10-24 19:04:57 2 3 2019-10-24 19:14:57 1 18 2019-10-24 19:14:57 2 2 2019-10-24 19:34:57 1 20 2019-10-24 19:34:57 2 2 2019-10-24 20:04:57 1 19 2019-10-24 20:04:57 2 1 2019-10-24 20:09:57 1 18 2019-10-24 20:09:57 2 1 2019-10-24 20:24:57 1 16 2019-10-24 20:24:57 2 2 2019-10-24 20:44:57 1 13 2019-10-24 20:44:57 2 3 2019-10-24 20:54:57 1 16 2019-10-24 20:54:57 2 4 2019-10-24 20:59:57 1 14 2019-10-24 20:59:57 2 4 2019-10-24 21:09:57 1 14 2019-10-24 21:09:57 2 4 2019-10-24 21:19:57 1 15 2019-10-24 21:19:57 2 3 2019-10-24 21:24:57 1 18 2019-10-24 21:24:57 2 3 2019-10-24 21:59:57 1 16 2019-10-24 21:59:57 2 2 2019-10-24 22:09:57 1 12 2019-10-24 22:09:57 2 2 2019-10-24 22:34:57 1 14 2019-10-24 22:34:57 2 3 2019-10-24 22:54:57 1 14 2019-10-24 23:04:57 1 12 2019-10-24 23:04:57 2 1 2019-10-24 23:29:57 1 13 2019-10-24 23:29:57 2 3 2019-10-24 23:34:57 1 15 2019-10-24 23:34:57 2 2 2019-10-24 23:44:57 1 13 2019-10-24 23:44:57 2 1 2019-10-25 00:14:57 1 14 2019-10-25 00:24:57 1 15 2019-10-25 00:24:57 2 1 2019-10-25 00:59:57 1 13 2019-10-25 00:59:57 2 1 2019-10-25 01:34:57 1 13 2019-10-25 01:34:57 2 1 2019-10-25 01:39:57 1 12 2019-10-25 01:39:57 2 1 2019-10-25 01:54:57 1 14 2019-10-25 01:54:57 2 1 2019-10-25 01:59:57 1 14 2019-10-25 01:59:57 2 2 2019-10-25 02:14:57 1 11 2019-10-25 02:14:57 2 1 2019-10-25 02:19:57 1 11 2019-10-25 02:19:57 2 1 2019-10-25 02:39:57 1 12 2019-10-25 02:44:57 1 12 2019-10-25 02:49:57 1 12 2019-10-25 03:04:57 1 12 2019-10-25 03:34:57 1 11 2019-10-25 03:39:57 1 11 2019-10-25 03:54:57 1 11 2019-10-25 04:09:57 1 12 2019-10-25 04:19:57 1 12 2019-10-25 04:39:57 1 12 2019-10-25 04:44:57 1 13 2019-10-25 05:04:57 1 11 2019-10-25 05:29:57 1 8 2019-10-25 05:34:57 1 10 2019-10-25 05:44:57 1 9 2019-10-25 05:54:57 1 9 2019-10-25 05:54:57 2 1 2019-10-25 06:04:57 1 9 2019-10-25 06:09:57 1 10 2019-10-25 06:14:57 1 11 2019-10-25 06:19:57 1 11 2019-10-25 06:24:57 1 10 2019-10-25 06:29:57 1 10 2019-10-25 06:34:57 1 10 2019-10-25 06:39:57 1 10 2019-10-25 06:44:57 1 9 2019-10-25 06:49:57 1 10 2019-10-25 06:54:57 1 11 2019-10-25 06:59:57 1 11 2019-10-25 07:04:57 1 10 2019-10-25 07:09:57 1 10 2019-10-25 07:14:57 1 8 2019-10-25 07:19:57 1 9 2019-10-25 07:24:57 1 9 2019-10-25 07:29:57 1 9 2019-10-25 07:29:57 2 1 2019-10-25 07:34:57 1 9 2019-10-25 07:34:57 2 1 2019-10-25 07:39:57 1 11 2019-10-25 07:39:57 2 1 2019-10-25 07:44:57 1 11 2019-10-25 07:44:57 2 1 2019-10-25 07:49:57 1 13 2019-10-25 07:49:57 2 1 2019-10-25 07:54:57 1 12 2019-10-25 07:54:57 2 1 2019-10-25 08:49:57 1 14 2019-10-25 08:49:57 2 1 2019-10-25 08:59:57 1 11 2019-10-25 08:59:57 2 1 2019-10-25 09:19:57 1 11 2019-10-25 09:24:57 1 8 2019-10-25 09:29:57 1 10 2019-10-25 10:04:57 1 12 2019-10-25 10:19:57 1 14 2019-10-25 10:19:57 2 1 2019-10-25 10:24:57 1 14 2019-10-25 10:24:57 2 1 2019-10-25 10:29:57 1 14 2019-10-25 10:34:57 1 14 2019-10-25 10:39:57 1 13 2019-10-25 11:09:57 1 15 2019-10-25 11:29:57 1 15 2019-10-25 11:39:57 1 16 2019-10-25 11:39:57 2 1 2019-10-25 11:44:57 1 16 2019-10-25 11:44:57 2 1 2019-10-25 11:49:57 1 16 2019-10-25 11:49:57 2 1 2019-10-25 11:54:57 1 16 2019-10-25 11:54:57 2 1 2019-10-25 11:59:57 1 17 2019-10-25 11:59:57 2 2 2019-10-25 12:04:57 1 17 2019-10-25 12:04:57 2 3 2019-10-25 12:44:57 1 16 2019-10-25 12:44:57 2 2 2019-10-25 12:49:57 1 16 2019-10-25 12:49:57 2 1 2019-10-25 13:14:57 1 19 2019-10-25 13:14:57 2 1 2019-10-25 13:24:57 1 18 2019-10-25 13:24:57 2 2 2019-10-25 13:39:57 1 16 2019-10-25 13:39:57 2 3 2019-10-25 13:44:57 1 16 2019-10-25 13:44:57 2 3 2019-10-25 13:59:57 1 14 2019-10-25 13:59:57 2 3 2019-10-25 14:24:57 1 15 2019-10-25 14:24:57 2 1 2019-10-25 14:34:57 1 14 2019-10-25 14:34:57 2 1 2019-10-25 14:44:57 1 17 2019-10-25 14:44:57 2 1 2019-10-25 15:09:57 1 11 2019-10-25 15:09:57 2 2 2019-10-25 15:19:57 1 15 2019-10-25 15:19:57 2 2 2019-10-25 15:24:57 1 16 2019-10-25 15:24:57 2 1 2019-10-25 15:29:57 1 15 2019-10-25 15:34:57 1 17 2019-10-25 15:34:57 2 2 2019-10-25 15:44:57 1 15 2019-10-25 15:44:57 2 2 2019-10-25 16:34:57 1 16 2019-10-25 16:34:57 2 1 2019-10-25 16:39:57 1 19 2019-10-25 16:39:57 2 1 2019-10-25 16:54:57 1 17 2019-10-25 16:59:57 1 15 2019-10-25 17:19:57 1 12 2019-10-25 17:19:57 2 1 2019-10-25 17:34:57 1 14 2019-10-25 17:34:57 2 2 2019-10-25 17:39:57 1 13 2019-10-25 17:39:57 2 1 2019-10-25 18:04:57 1 21 2019-10-25 18:04:57 2 2 2019-10-25 18:14:57 1 15 2019-10-25 18:14:57 2 3 2019-10-25 18:24:57 1 16 2019-10-25 18:24:57 2 2 2019-10-25 18:34:57 1 15 2019-10-25 18:34:57 2 2 2019-10-25 19:04:57 1 15 2019-10-25 19:04:57 2 2 2019-10-25 19:09:57 1 17 2019-10-25 19:09:57 2 2 2019-10-25 19:14:57 1 16 2019-10-25 19:14:57 2 2 2019-10-25 19:39:57 1 14 2019-10-25 19:39:57 2 2 2019-10-25 19:54:57 1 17 2019-10-25 19:54:57 2 1 2019-10-25 20:04:57 1 16 2019-10-25 20:04:57 2 1 2019-10-25 20:09:57 1 16 2019-10-25 20:09:57 2 1 2019-10-25 20:14:57 1 16 2019-10-25 20:14:57 2 1 2019-10-25 20:19:57 1 14 2019-10-25 20:19:57 2 2 2019-10-25 20:24:57 1 13 2019-10-25 20:24:57 2 2 2019-10-25 20:34:57 1 15 2019-10-25 20:34:57 2 2 2019-10-25 21:19:57 1 15 2019-10-25 21:19:57 2 1 2019-10-25 22:09:57 1 19 2019-10-25 22:09:57 2 1 2019-10-25 22:14:57 1 20 2019-10-25 22:14:57 2 1 2019-10-25 22:24:57 1 20 2019-10-25 22:49:57 1 14 2019-10-25 22:49:57 2 2 2019-10-25 23:09:57 1 12 2019-10-25 23:09:57 2 2 2019-10-25 23:19:57 1 14 2019-10-25 23:19:57 2 2 2019-10-25 23:24:57 1 13 2019-10-25 23:24:57 2 2 2019-10-25 23:29:57 1 14 2019-10-25 23:29:57 2 1 2019-10-25 23:59:57 1 12 2019-10-25 23:59:57 2 1 2019-10-26 00:24:57 1 11 2019-10-26 00:24:57 2 2 2019-10-26 01:09:57 1 11 2019-10-26 01:24:57 1 10 2019-10-26 01:44:57 1 11 2019-10-26 02:04:57 1 9 2019-10-26 02:04:57 2 1 2019-10-26 02:09:57 1 9 2019-10-26 02:09:57 2 1 2019-10-26 02:14:57 1 9 2019-10-26 02:14:57 2 1 2019-10-26 02:19:57 1 9 2019-10-26 02:19:57 2 1 2019-10-26 02:24:57 1 9 2019-10-26 02:24:57 2 1 2019-10-26 02:29:57 1 9 2019-10-26 02:29:57 2 1 2019-10-26 02:34:57 1 9 2019-10-26 02:34:57 2 1 2019-10-26 02:39:57 1 9 2019-10-26 02:39:57 2 1 2019-10-26 02:44:57 1 9 2019-10-26 02:44:57 2 1 2019-10-26 02:59:57 1 8 2019-10-26 02:59:57 2 1 2019-10-26 03:04:57 1 8 2019-10-26 03:04:57 2 1 2019-10-26 03:09:57 1 8 2019-10-26 03:09:57 2 1 2019-10-26 03:29:57 1 8 2019-10-26 03:29:57 2 1 2019-10-26 03:54:57 1 8 2019-10-26 03:59:57 1 8 2019-10-26 04:04:57 1 8 2019-10-26 04:09:57 1 8 2019-10-26 04:14:57 1 9 2019-10-26 04:24:57 1 8 2019-10-26 04:29:57 1 8 2019-10-26 04:39:57 1 9 2019-10-26 04:54:57 1 8 2019-10-26 04:59:57 1 8 2019-10-26 05:04:57 1 8 2019-10-26 05:09:57 1 8 2019-10-26 05:14:57 1 8 2019-10-26 05:19:57 1 8 2019-10-26 05:24:57 1 8 2019-10-26 05:59:57 1 10 2019-10-26 06:04:57 1 7 2019-10-26 06:09:57 1 7 2019-10-26 06:14:57 1 7 2019-10-26 06:29:57 1 8 2019-10-26 07:04:57 1 11 2019-10-26 07:24:57 1 11 2019-10-26 07:29:57 1 10 2019-10-26 07:44:57 1 9 2019-10-26 08:04:57 1 11 2019-10-26 08:19:57 1 10 2019-10-26 08:29:57 1 7 2019-10-26 08:34:57 1 6 2019-10-26 08:54:57 1 10 2019-10-26 08:59:57 1 9 2019-10-25 07:59:57 1 12 2019-10-25 07:59:57 2 1 2019-10-25 08:04:57 1 10 2019-10-25 08:04:57 2 1 2019-10-25 08:09:57 1 10 2019-10-25 08:09:57 2 1 2019-10-25 08:19:57 1 12 2019-10-25 08:19:57 2 1 2019-10-25 08:29:57 1 11 2019-10-25 08:29:57 2 1 2019-10-25 08:34:57 1 14 2019-10-25 08:34:57 2 1 2019-10-25 08:39:57 1 11 2019-10-25 08:39:57 2 1 2019-10-25 08:54:57 1 10 2019-10-25 08:54:57 2 1 2019-10-25 09:14:57 1 11 2019-10-25 09:14:57 2 1 2019-10-25 09:44:57 1 13 2019-10-25 09:44:57 2 1 2019-10-25 09:49:57 1 12 2019-10-25 09:49:57 2 1 2019-10-25 09:54:57 1 12 2019-10-25 09:54:57 2 1 2019-10-25 10:09:57 1 10 2019-10-25 10:14:57 1 13 2019-10-25 10:14:57 2 1 2019-10-25 10:44:57 1 12 2019-10-25 11:04:57 1 14 2019-10-25 11:04:57 2 1 2019-10-25 11:24:57 1 15 2019-10-25 11:34:57 1 16 2019-10-25 12:14:57 1 21 2019-10-25 12:14:57 2 3 2019-10-25 12:29:57 1 15 2019-10-25 12:29:57 2 2 2019-10-25 12:54:57 1 17 2019-10-25 12:54:57 2 1 2019-10-25 12:59:57 1 19 2019-10-25 12:59:57 2 2 2019-10-25 13:19:57 1 17 2019-10-25 13:19:57 2 2 2019-10-25 13:49:57 1 16 2019-10-25 13:49:57 2 3 2019-10-25 13:54:57 1 15 2019-10-25 13:54:57 2 4 2019-10-25 14:04:58 1 16 2019-10-25 14:04:58 2 3 2019-10-25 14:14:57 1 13 2019-10-25 14:14:57 2 2 2019-10-25 14:29:57 1 16 2019-10-25 14:29:57 2 1 2019-10-25 14:39:57 1 16 2019-10-25 14:39:57 2 1 2019-10-25 14:49:57 1 15 2019-10-25 14:49:57 2 2 2019-10-25 14:54:57 1 15 2019-10-25 14:54:57 2 3 2019-10-25 15:14:57 1 14 2019-10-25 15:14:57 2 2 2019-10-25 15:59:57 1 15 2019-10-25 15:59:57 2 2 2019-10-25 16:04:57 1 14 2019-10-25 16:04:57 2 2 2019-10-25 16:19:57 1 16 2019-10-25 16:19:57 2 1 2019-10-25 16:29:57 1 17 2019-10-25 16:29:57 2 1 2019-10-25 16:49:57 1 15 2019-10-25 17:04:57 1 13 2019-10-25 17:14:57 1 12 2019-10-25 17:14:57 2 1 2019-10-25 17:24:58 1 12 2019-10-25 17:24:58 2 2 2019-10-25 17:44:57 1 13 2019-10-25 17:44:57 2 1 2019-10-25 17:49:57 1 15 2019-10-25 17:49:57 2 1 2019-10-25 18:19:57 1 16 2019-10-25 18:19:57 2 1 2019-10-25 18:39:57 1 16 2019-10-25 18:39:57 2 3 2019-10-25 18:44:57 1 17 2019-10-25 18:44:57 2 4 2019-10-25 18:49:57 1 15 2019-10-25 18:49:57 2 4 2019-10-25 18:54:57 1 15 2019-10-25 18:54:57 2 3 2019-10-25 18:59:57 1 17 2019-10-25 18:59:57 2 3 2019-10-25 19:19:57 1 13 2019-10-25 19:19:57 2 2 2019-10-25 19:24:57 1 13 2019-10-25 19:24:57 2 2 2019-10-25 19:49:57 1 15 2019-10-25 19:49:57 2 1 2019-10-25 19:59:57 1 17 2019-10-25 19:59:57 2 1 2019-10-25 20:29:57 1 13 2019-10-25 20:29:57 2 2 2019-10-25 20:39:57 1 12 2019-10-25 20:39:57 2 2 2019-10-25 20:49:57 1 17 2019-10-25 20:54:57 1 18 2019-10-25 20:54:57 2 1 2019-10-25 21:09:57 1 17 2019-10-25 21:29:57 1 12 2019-10-25 21:34:57 1 12 2019-10-25 21:39:57 1 13 2019-10-25 21:44:57 1 13 2019-10-25 21:44:57 2 1 2019-10-25 21:49:57 1 14 2019-10-25 21:49:57 2 1 2019-10-25 22:29:57 1 22 2019-10-25 22:29:57 2 1 2019-10-25 22:34:57 1 21 2019-10-25 22:34:57 2 1 2019-10-25 22:39:57 1 18 2019-10-25 22:39:57 2 1 2019-10-25 22:44:57 1 16 2019-10-25 22:44:57 2 1 2019-10-25 23:39:57 1 12 2019-10-25 23:39:57 2 1 2019-10-25 23:49:57 1 13 2019-10-25 23:49:57 2 2 2019-10-26 00:04:57 1 15 2019-10-26 00:04:57 2 1 2019-10-26 00:09:57 1 13 2019-10-26 00:09:57 2 1 2019-10-26 00:19:57 1 11 2019-10-26 00:19:57 2 1 2019-10-26 00:29:57 1 11 2019-10-26 00:29:57 2 1 2019-10-26 00:34:57 1 11 2019-10-26 00:34:57 2 1 2019-10-26 00:44:57 1 11 2019-10-26 00:44:57 2 1 2019-10-26 00:49:57 1 10 2019-10-26 00:49:57 2 1 2019-10-26 00:54:57 1 11 2019-10-26 00:59:57 1 11 2019-10-26 01:29:57 1 11 2019-10-26 01:49:57 1 10 2019-10-26 01:54:57 1 10 2019-10-26 01:59:57 1 10 2019-10-26 02:49:57 1 8 2019-10-26 02:49:57 2 1 2019-10-26 02:54:57 1 8 2019-10-26 02:54:57 2 1 2019-10-26 03:19:57 1 8 2019-10-26 03:19:57 2 1 2019-10-26 03:24:58 1 8 2019-10-26 03:24:58 2 1 2019-10-26 04:19:57 1 8 2019-10-26 05:29:57 1 9 2019-10-26 05:34:57 1 9 2019-10-26 05:39:57 1 9 2019-10-26 05:44:57 1 7 2019-10-26 05:54:57 1 8 2019-10-26 06:34:57 1 9 2019-10-26 06:54:57 1 10 2019-10-26 07:14:57 1 10 2019-10-26 07:34:57 1 10 2019-10-26 07:39:57 1 9 2019-10-26 07:49:57 1 12 2019-10-26 07:59:57 1 11 2019-10-26 08:24:57 1 9 2019-10-26 08:39:57 1 6 2019-10-26 08:44:57 1 5 2019-10-26 08:49:57 1 12 2019-10-26 09:14:57 1 9 2019-10-26 09:19:57 1 9 2019-10-26 09:24:57 1 8 2019-10-26 09:29:57 1 10 2019-10-26 09:44:57 1 9 2019-10-26 09:49:57 1 10 2019-10-26 09:49:57 2 1 2019-10-26 09:59:57 1 11 2019-10-26 09:59:57 2 1 2019-10-26 10:09:57 1 12 2019-10-26 10:09:57 2 1 2019-10-26 10:14:57 1 12 2019-10-26 10:14:57 2 1 2019-10-26 10:24:57 1 11 2019-10-26 10:24:57 2 1 2019-10-25 08:14:57 1 10 2019-10-25 08:14:57 2 1 2019-10-25 08:24:57 1 11 2019-10-25 08:24:57 2 1 2019-10-25 08:44:57 1 12 2019-10-25 08:44:57 2 1 2019-10-25 09:04:57 1 10 2019-10-25 09:04:57 2 1 2019-10-25 09:09:57 1 10 2019-10-25 09:09:57 2 1 2019-10-25 09:34:57 1 11 2019-10-25 09:39:57 1 14 2019-10-25 09:59:57 1 10 2019-10-25 10:49:57 1 12 2019-10-25 10:54:57 1 12 2019-10-25 10:54:57 2 1 2019-10-25 10:59:57 1 13 2019-10-25 10:59:57 2 1 2019-10-25 11:14:57 1 16 2019-10-25 11:19:57 1 13 2019-10-25 12:09:57 1 18 2019-10-25 12:09:57 2 3 2019-10-25 12:19:57 1 15 2019-10-25 12:19:57 2 3 2019-10-25 12:24:57 1 16 2019-10-25 12:24:57 2 2 2019-10-25 12:34:57 1 17 2019-10-25 12:34:57 2 1 2019-10-25 12:39:57 1 17 2019-10-25 12:39:57 2 1 2019-10-25 13:04:57 1 16 2019-10-25 13:09:57 1 18 2019-10-25 13:09:57 2 1 2019-10-25 13:29:57 1 17 2019-10-25 13:29:57 2 2 2019-10-25 13:34:57 1 15 2019-10-25 13:34:57 2 2 2019-10-25 14:09:57 1 15 2019-10-25 14:09:57 2 2 2019-10-25 14:19:57 1 13 2019-10-25 14:19:57 2 1 2019-10-25 14:59:57 1 10 2019-10-25 14:59:57 2 2 2019-10-25 15:04:57 1 11 2019-10-25 15:04:57 2 2 2019-10-25 15:39:57 1 18 2019-10-25 15:39:57 2 1 2019-10-25 15:49:57 1 15 2019-10-25 15:49:57 2 2 2019-10-25 15:54:57 1 15 2019-10-25 15:54:57 2 2 2019-10-25 16:09:57 1 14 2019-10-25 16:09:57 2 1 2019-10-25 16:14:57 1 15 2019-10-25 16:14:57 2 1 2019-10-25 16:24:57 1 17 2019-10-25 16:24:57 2 1 2019-10-25 16:44:57 1 15 2019-10-25 17:09:57 1 12 2019-10-25 17:29:57 1 13 2019-10-25 17:29:57 2 2 2019-10-25 17:54:57 1 18 2019-10-25 17:54:57 2 1 2019-10-25 17:59:57 1 19 2019-10-25 17:59:57 2 1 2019-10-25 18:09:57 1 17 2019-10-25 18:09:57 2 3 2019-10-25 18:29:57 1 14 2019-10-25 18:29:57 2 2 2019-10-25 19:29:57 1 14 2019-10-25 19:29:57 2 2 2019-10-25 19:34:57 1 12 2019-10-25 19:34:57 2 2 2019-10-25 19:44:57 1 14 2019-10-25 19:44:57 2 2 2019-10-25 20:44:57 1 17 2019-10-25 20:44:57 2 1 2019-10-25 20:59:57 1 17 2019-10-25 21:04:57 1 16 2019-10-25 21:14:57 1 14 2019-10-25 21:24:57 1 14 2019-10-25 21:24:57 2 1 2019-10-25 21:54:57 1 17 2019-10-25 21:54:57 2 1 2019-10-25 21:59:57 1 17 2019-10-25 21:59:57 2 1 2019-10-25 22:04:57 1 18 2019-10-25 22:04:57 2 1 2019-10-25 22:19:57 1 20 2019-10-25 22:19:57 2 1 2019-10-25 22:54:57 1 11 2019-10-25 22:54:57 2 2 2019-10-25 22:59:57 1 12 2019-10-25 22:59:57 2 2 2019-10-25 23:04:57 1 11 2019-10-25 23:04:57 2 2 2019-10-25 23:14:57 1 12 2019-10-25 23:14:57 2 2 2019-10-25 23:34:57 1 12 2019-10-25 23:34:57 2 1 2019-10-25 23:44:57 1 13 2019-10-25 23:44:57 2 2 2019-10-25 23:54:57 1 10 2019-10-25 23:54:57 2 2 2019-10-26 00:14:57 1 11 2019-10-26 00:14:57 2 1 2019-10-26 00:39:57 1 11 2019-10-26 00:39:57 2 1 2019-10-26 01:04:57 1 11 2019-10-26 01:04:57 2 1 2019-10-26 01:14:57 1 11 2019-10-26 01:19:57 1 11 2019-10-26 01:34:57 1 12 2019-10-26 01:39:57 1 12 2019-10-26 03:14:57 1 8 2019-10-26 03:14:57 2 1 2019-10-26 03:34:57 1 8 2019-10-26 03:34:57 2 1 2019-10-26 03:39:57 1 8 2019-10-26 03:39:57 2 1 2019-10-26 03:44:57 1 8 2019-10-26 03:44:57 2 1 2019-10-26 03:49:57 1 8 2019-10-26 03:49:57 2 1 2019-10-26 04:34:57 1 8 2019-10-26 04:44:57 1 8 2019-10-26 04:49:57 1 9 2019-10-26 05:49:57 1 7 2019-10-26 06:19:57 1 9 2019-10-26 06:24:57 1 9 2019-10-26 06:39:57 1 10 2019-10-26 06:44:57 1 10 2019-10-26 06:49:57 1 10 2019-10-26 06:59:57 1 10 2019-10-26 07:09:57 1 11 2019-10-26 07:19:57 1 9 2019-10-26 07:54:57 1 12 2019-10-26 08:09:57 1 11 2019-10-26 08:14:57 1 11 2019-10-26 09:04:57 1 9 2019-10-26 09:09:57 1 9 2019-10-26 09:34:57 1 7 2019-10-26 09:39:57 1 11 2019-10-26 09:54:57 1 10 2019-10-26 09:54:57 2 1 2019-10-26 10:04:57 1 14 2019-10-26 10:04:57 2 1 2019-10-26 10:19:57 1 13 2019-10-26 10:19:57 2 1 2019-10-26 10:29:57 1 11 2019-10-26 10:29:57 2 1 2019-10-26 10:34:57 1 12 2019-10-26 10:34:57 2 1 2019-10-26 10:39:57 1 12 2019-10-26 10:39:57 2 1 2019-10-26 10:44:57 1 12 2019-10-26 10:44:57 2 1 2019-10-26 10:49:57 1 14 2019-10-26 10:49:57 2 1 2019-10-26 10:54:57 1 14 2019-10-26 10:54:57 2 1 2019-10-26 10:59:57 1 14 2019-10-26 10:59:57 2 1 2019-10-26 11:04:57 1 14 2019-10-26 11:04:57 2 1 2019-10-26 11:09:57 1 13 2019-10-26 11:09:57 2 2 2019-10-26 11:14:57 1 15 2019-10-26 11:14:57 2 2 2019-10-26 11:19:57 1 14 2019-10-26 11:19:57 2 2 2019-10-26 11:24:57 1 14 2019-10-26 11:24:57 2 2 2019-10-26 11:29:57 1 13 2019-10-26 11:29:57 2 2 2019-10-26 11:34:57 1 17 2019-10-26 11:34:57 2 2 2019-10-26 11:39:57 1 14 2019-10-26 11:39:57 2 2 2019-10-26 11:44:57 1 13 2019-10-26 11:44:57 2 2 2019-10-26 11:49:57 1 15 2019-10-26 11:49:57 2 1 2019-10-26 11:54:57 1 13 2019-10-26 11:54:57 2 1 2019-10-26 11:59:57 1 14 2019-10-26 11:59:57 2 1 2019-10-26 12:04:57 1 13 2019-10-26 12:04:57 2 1 2019-10-26 12:19:57 1 11 2019-10-26 12:19:57 2 1 2019-10-26 12:44:57 1 14 2019-10-26 12:44:57 2 1 2019-10-26 12:59:57 1 13 2019-10-26 13:29:57 1 13 2019-10-26 13:54:57 1 12 2019-10-26 13:54:57 2 1 2019-10-26 13:59:57 1 15 2019-10-26 13:59:57 2 1 2019-10-26 14:39:57 1 17 2019-10-26 14:39:57 2 1 2019-10-26 14:44:57 1 19 2019-10-26 14:44:57 2 2 2019-10-26 14:49:57 1 17 2019-10-26 14:49:57 2 1 2019-10-26 15:39:57 1 15 2019-10-26 15:59:57 1 14 2019-10-26 15:59:57 2 1 2019-10-26 16:09:57 1 17 2019-10-26 16:09:57 2 2 2019-10-26 17:04:57 1 17 2019-10-26 17:04:57 2 1 2019-10-26 17:24:57 1 16 2019-10-26 17:34:57 1 14 2019-10-26 17:34:57 2 2 2019-10-26 18:14:57 1 9 2019-10-26 18:14:57 2 1 2019-10-26 18:19:57 1 9 2019-10-26 18:19:57 2 1 2019-10-26 18:54:57 1 14 2019-10-26 18:54:57 2 2 2019-10-26 19:19:57 1 14 2019-10-26 19:19:57 2 3 2019-10-26 19:59:57 1 9 2019-10-26 19:59:57 2 2 2019-10-26 20:09:57 1 12 2019-10-26 20:09:57 2 1 2019-10-26 20:14:57 1 9 2019-10-26 20:14:57 2 2 2019-10-26 20:54:57 1 13 2019-10-26 20:54:57 2 2 2019-10-26 21:04:57 1 10 2019-10-26 21:04:57 2 2 2019-10-26 21:39:57 1 12 2019-10-26 21:39:57 2 2 2019-10-26 21:49:57 1 11 2019-10-26 21:49:57 2 2 2019-10-26 21:59:57 1 11 2019-10-26 21:59:57 2 2 2019-10-26 22:24:57 1 13 2019-10-26 22:24:57 2 1 2019-10-26 22:29:57 1 12 2019-10-26 22:29:57 2 1 2019-10-26 22:49:57 1 10 2019-10-26 22:49:57 2 2 2019-10-26 23:04:57 1 9 2019-10-26 23:04:57 2 2 2019-10-26 23:09:57 1 8 2019-10-26 23:09:57 2 1 2019-10-26 23:14:57 1 9 2019-10-26 23:14:57 2 1 2019-10-26 23:34:57 1 12 2019-10-26 23:39:57 1 14 2019-10-26 23:49:57 1 10 2019-10-26 23:59:57 1 9 2019-10-27 00:04:57 1 8 2019-10-27 00:04:57 2 1 2019-10-27 00:19:57 1 8 2019-10-27 00:19:57 2 1 2019-10-27 00:29:57 1 7 2019-10-27 00:29:57 2 1 2019-10-27 00:34:57 1 6 2019-10-27 00:34:57 2 1 2019-10-27 00:44:57 1 7 2019-10-27 00:44:57 2 1 2019-10-27 01:04:57 1 7 2019-10-27 01:29:57 1 7 2019-10-27 01:34:57 1 9 2019-10-27 01:39:57 1 8 2019-10-27 01:44:57 1 8 2019-10-27 01:49:57 1 6 2019-10-27 01:54:57 1 6 2019-10-27 02:04:57 1 4 2019-10-27 02:09:57 1 2 2019-10-27 02:19:57 1 2 2019-10-27 02:49:57 1 3 2019-10-27 02:59:57 1 2 2019-10-27 03:14:57 1 2 2019-10-27 03:19:57 1 3 2019-10-27 03:29:57 1 3 2019-10-27 04:04:57 1 4 2019-10-27 04:04:57 2 1 2019-10-27 04:09:57 1 3 2019-10-27 04:09:57 2 1 2019-10-27 04:19:57 1 3 2019-10-27 04:19:57 2 1 2019-10-27 04:34:57 1 4 2019-10-27 04:39:57 1 4 2019-10-27 04:39:57 2 1 2019-10-27 04:49:57 1 4 2019-10-27 04:49:57 2 1 2019-10-27 04:59:57 1 3 2019-10-27 05:14:57 1 3 2019-10-27 05:24:57 1 3 2019-10-27 05:29:57 1 2 2019-10-27 05:39:57 1 4 2019-10-27 05:44:57 1 3 2019-10-27 05:49:57 1 3 2019-10-27 05:54:57 1 3 2019-10-27 06:09:57 1 3 2019-10-27 06:24:57 1 3 2019-10-27 07:34:57 1 5 2019-10-27 07:39:57 1 5 2019-10-27 07:49:57 1 3 2019-10-27 07:49:57 2 1 2019-10-27 08:09:57 1 5 2019-10-27 08:09:57 2 1 2019-10-27 08:19:57 1 6 2019-10-27 08:19:57 2 1 2019-10-27 08:24:57 1 5 2019-10-27 08:24:57 2 1 2019-10-27 08:29:57 1 7 2019-10-27 08:29:57 2 1 2019-10-27 08:44:57 1 9 2019-10-27 08:44:57 2 1 2019-10-27 09:04:57 1 9 2019-10-27 09:04:57 2 1 2019-10-27 09:14:57 1 10 2019-10-27 09:14:57 2 1 2019-10-27 09:49:57 1 9 2019-10-27 09:49:57 2 1 2019-10-27 10:04:57 1 9 2019-10-27 10:09:57 1 12 2019-10-27 10:24:57 1 11 2019-10-27 10:34:57 1 7 2019-10-27 10:34:57 2 1 2019-10-27 10:54:57 1 11 2019-10-27 10:54:57 2 1 2019-10-27 10:59:57 1 9 2019-10-27 10:59:57 2 2 2019-10-27 11:19:57 1 11 2019-10-27 11:19:57 2 2 2019-10-27 11:24:57 1 10 2019-10-27 11:24:57 2 3 2019-10-27 11:34:57 1 10 2019-10-27 11:34:57 2 3 2019-10-27 11:39:57 1 12 2019-10-27 11:39:57 2 3 2019-10-27 11:44:57 1 11 2019-10-27 11:44:57 2 4 2019-10-27 12:04:57 1 10 2019-10-27 12:04:57 2 4 2019-10-27 12:34:57 1 11 2019-10-27 12:34:57 2 3 2019-10-27 12:44:57 1 13 2019-10-27 12:44:57 2 3 2019-10-27 12:49:57 1 12 2019-10-27 12:49:57 2 3 2019-10-27 12:54:57 1 13 2019-10-27 12:54:57 2 3 2019-10-27 13:04:57 1 12 2019-10-27 13:04:57 2 2 2019-10-27 13:09:57 1 16 2019-10-27 13:09:57 2 2 2019-10-27 13:39:57 1 10 2019-10-27 13:39:57 2 2 2019-10-27 14:04:57 1 13 2019-10-27 14:04:57 2 3 2019-10-27 14:14:57 1 16 2019-10-27 14:14:57 2 2 2019-10-27 14:34:57 1 16 2019-10-27 14:34:57 2 2 2019-10-27 14:49:57 1 14 2019-10-27 14:49:57 2 2 2019-10-27 14:54:57 1 15 2019-10-27 14:54:57 2 3 2019-10-27 14:59:57 1 15 2019-10-27 14:59:57 2 2 2019-10-27 15:04:57 1 15 2019-10-27 15:04:57 2 4 2019-10-26 12:09:57 1 15 2019-10-26 12:09:57 2 1 2019-10-26 12:24:57 1 13 2019-10-26 12:24:57 2 1 2019-10-26 12:29:57 1 13 2019-10-26 12:29:57 2 2 2019-10-26 12:34:57 1 14 2019-10-26 12:34:57 2 2 2019-10-26 12:49:57 1 14 2019-10-26 12:54:57 1 16 2019-10-26 13:09:57 1 14 2019-10-26 13:14:57 1 14 2019-10-26 13:49:57 1 14 2019-10-26 14:14:57 1 14 2019-10-26 14:19:57 1 17 2019-10-26 14:24:57 1 18 2019-10-26 14:29:57 1 15 2019-10-26 14:54:57 1 17 2019-10-26 14:54:57 2 1 2019-10-26 15:09:57 1 15 2019-10-26 15:09:57 2 1 2019-10-26 15:14:57 1 14 2019-10-26 15:14:57 2 1 2019-10-26 15:24:57 1 15 2019-10-26 15:24:57 2 1 2019-10-26 15:29:57 1 14 2019-10-26 15:29:57 2 2 2019-10-26 15:44:57 1 12 2019-10-26 15:49:57 1 10 2019-10-26 15:49:57 2 1 2019-10-26 16:04:57 1 12 2019-10-26 16:04:57 2 1 2019-10-26 16:34:57 1 15 2019-10-26 16:34:57 2 1 2019-10-26 16:44:57 1 14 2019-10-26 16:44:57 2 2 2019-10-26 16:59:57 1 16 2019-10-26 16:59:57 2 1 2019-10-26 17:14:57 1 15 2019-10-26 17:14:57 2 1 2019-10-26 17:54:57 1 11 2019-10-26 17:54:57 2 2 2019-10-26 18:04:57 1 9 2019-10-26 18:04:57 2 1 2019-10-26 18:09:57 1 9 2019-10-26 18:09:57 2 1 2019-10-26 18:34:57 1 11 2019-10-26 18:34:57 2 2 2019-10-26 18:39:57 1 13 2019-10-26 18:39:57 2 2 2019-10-26 18:44:57 1 13 2019-10-26 18:44:57 2 2 2019-10-26 18:59:57 1 15 2019-10-26 18:59:57 2 2 2019-10-26 19:04:57 1 14 2019-10-26 19:04:57 2 2 2019-10-26 19:14:57 1 11 2019-10-26 19:14:57 2 2 2019-10-26 19:29:57 1 11 2019-10-26 19:29:57 2 3 2019-10-26 19:34:57 1 10 2019-10-26 19:34:57 2 3 2019-10-26 19:39:57 1 8 2019-10-26 19:39:57 2 2 2019-10-26 19:49:57 1 8 2019-10-26 19:49:57 2 3 2019-10-26 19:54:57 1 10 2019-10-26 19:54:57 2 2 2019-10-26 20:19:57 1 13 2019-10-26 20:19:57 2 2 2019-10-26 20:24:57 1 12 2019-10-26 20:24:57 2 1 2019-10-26 20:29:57 1 12 2019-10-26 20:29:57 2 1 2019-10-26 20:44:57 1 12 2019-10-26 20:44:57 2 2 2019-10-26 20:49:57 1 13 2019-10-26 20:49:57 2 2 2019-10-26 21:19:57 1 11 2019-10-26 21:19:57 2 2 2019-10-26 21:34:57 1 13 2019-10-26 21:34:57 2 2 2019-10-26 21:44:57 1 11 2019-10-26 21:44:57 2 2 2019-10-26 22:04:57 1 11 2019-10-26 22:04:57 2 2 2019-10-26 22:09:57 1 13 2019-10-26 22:09:57 2 2 2019-10-26 22:34:57 1 14 2019-10-26 22:34:57 2 1 2019-10-26 22:44:57 1 12 2019-10-26 22:44:57 2 1 2019-10-26 22:59:57 1 10 2019-10-26 22:59:57 2 2 2019-10-26 23:19:57 1 10 2019-10-26 23:19:57 2 1 2019-10-26 23:24:57 1 9 2019-10-26 23:29:57 1 11 2019-10-26 23:44:57 1 13 2019-10-27 00:39:57 1 7 2019-10-27 00:39:57 2 1 2019-10-27 00:49:57 1 7 2019-10-27 00:49:57 2 1 2019-10-27 00:54:57 1 7 2019-10-27 00:54:57 2 1 2019-10-27 01:09:57 1 8 2019-10-27 01:19:57 1 6 2019-10-27 01:24:57 1 7 2019-10-27 02:29:57 1 3 2019-10-27 02:29:57 2 1 2019-10-27 02:34:57 1 3 2019-10-27 02:34:57 2 1 2019-10-27 02:54:57 1 2 2019-10-27 03:09:57 1 2 2019-10-27 03:34:57 1 4 2019-10-27 03:44:57 1 3 2019-10-27 03:49:57 1 4 2019-10-27 04:14:57 1 3 2019-10-27 04:14:57 2 1 2019-10-27 04:29:57 1 5 2019-10-27 04:29:57 2 1 2019-10-27 04:54:57 1 3 2019-10-27 05:04:57 1 3 2019-10-27 05:34:57 1 4 2019-10-27 06:04:57 1 4 2019-10-27 06:14:57 1 3 2019-10-27 06:19:57 1 4 2019-10-27 06:34:57 1 4 2019-10-27 06:44:57 1 5 2019-10-27 06:49:57 1 4 2019-10-27 06:49:57 2 1 2019-10-27 07:09:57 1 3 2019-10-27 07:19:57 1 4 2019-10-27 07:24:57 1 4 2019-10-27 07:29:57 1 4 2019-10-27 08:04:57 1 4 2019-10-27 08:04:57 2 1 2019-10-27 08:39:57 1 9 2019-10-27 08:39:57 2 1 2019-10-27 08:49:57 1 8 2019-10-27 08:49:57 2 1 2019-10-27 08:54:57 1 10 2019-10-27 08:54:57 2 1 2019-10-27 08:59:57 1 10 2019-10-27 08:59:57 2 1 2019-10-27 09:19:57 1 10 2019-10-27 09:29:57 1 9 2019-10-27 09:29:57 2 1 2019-10-27 09:34:57 1 10 2019-10-27 09:34:57 2 1 2019-10-27 09:59:57 1 11 2019-10-27 10:14:57 1 9 2019-10-27 10:19:57 1 11 2019-10-27 11:04:57 1 8 2019-10-27 11:04:57 2 2 2019-10-27 11:14:57 1 7 2019-10-27 11:14:57 2 2 2019-10-27 11:29:57 1 12 2019-10-27 11:29:57 2 3 2019-10-27 11:49:57 1 10 2019-10-27 11:49:57 2 4 2019-10-27 11:54:57 1 11 2019-10-27 11:54:57 2 5 2019-10-27 12:09:57 1 11 2019-10-27 12:09:57 2 3 2019-10-27 12:19:57 1 11 2019-10-27 12:19:57 2 4 2019-10-27 12:29:57 1 12 2019-10-27 12:29:57 2 3 2019-10-27 12:39:57 1 13 2019-10-27 12:39:57 2 3 2019-10-27 12:59:57 1 11 2019-10-27 12:59:57 2 2 2019-10-27 13:14:57 1 14 2019-10-27 13:14:57 2 2 2019-10-27 13:44:57 1 11 2019-10-27 13:44:57 2 2 2019-10-27 13:54:57 1 12 2019-10-27 13:54:57 2 3 2019-10-27 13:59:57 1 11 2019-10-27 13:59:57 2 3 2019-10-27 14:09:57 1 14 2019-10-27 14:09:57 2 2 2019-10-27 14:44:57 1 16 2019-10-27 14:44:57 2 2 2019-10-26 12:14:57 1 15 2019-10-26 12:14:57 2 1 2019-10-26 12:39:57 1 14 2019-10-26 12:39:57 2 2 2019-10-26 13:04:57 1 16 2019-10-26 13:19:57 1 13 2019-10-26 13:24:57 1 13 2019-10-26 13:34:57 1 15 2019-10-26 13:39:57 1 15 2019-10-26 13:39:57 2 1 2019-10-26 13:44:57 1 14 2019-10-26 13:44:57 2 1 2019-10-26 14:04:57 1 16 2019-10-26 14:09:57 1 16 2019-10-26 14:34:57 1 13 2019-10-26 14:59:57 1 14 2019-10-26 14:59:57 2 1 2019-10-26 15:04:57 1 16 2019-10-26 15:04:57 2 1 2019-10-26 15:19:57 1 14 2019-10-26 15:19:57 2 1 2019-10-26 15:34:57 1 13 2019-10-26 15:34:57 2 1 2019-10-26 15:54:57 1 12 2019-10-26 15:54:57 2 1 2019-10-26 16:14:57 1 20 2019-10-26 16:14:57 2 2 2019-10-26 16:19:57 1 17 2019-10-26 16:19:57 2 2 2019-10-26 16:24:57 1 17 2019-10-26 16:24:57 2 1 2019-10-26 16:29:57 1 17 2019-10-26 16:29:57 2 1 2019-10-26 16:39:57 1 16 2019-10-26 16:39:57 2 2 2019-10-26 16:49:57 1 16 2019-10-26 16:49:57 2 1 2019-10-26 16:54:57 1 15 2019-10-26 16:54:57 2 1 2019-10-26 17:09:57 1 16 2019-10-26 17:09:57 2 1 2019-10-26 17:19:57 1 14 2019-10-26 17:19:57 2 1 2019-10-26 17:29:57 1 14 2019-10-26 17:29:57 2 2 2019-10-26 17:39:57 1 12 2019-10-26 17:39:57 2 2 2019-10-26 17:44:57 1 11 2019-10-26 17:44:57 2 2 2019-10-26 17:49:57 1 12 2019-10-26 17:49:57 2 3 2019-10-26 17:59:57 1 10 2019-10-26 17:59:57 2 1 2019-10-26 18:24:57 1 10 2019-10-26 18:24:57 2 2 2019-10-26 18:29:57 1 11 2019-10-26 18:29:57 2 2 2019-10-26 18:49:57 1 12 2019-10-26 18:49:57 2 2 2019-10-26 19:09:57 1 11 2019-10-26 19:09:57 2 2 2019-10-26 19:24:57 1 11 2019-10-26 19:24:57 2 3 2019-10-26 19:44:57 1 9 2019-10-26 19:44:57 2 3 2019-10-26 20:04:57 1 11 2019-10-26 20:04:57 2 1 2019-10-26 20:34:57 1 11 2019-10-26 20:34:57 2 2 2019-10-26 20:39:57 1 11 2019-10-26 20:39:57 2 1 2019-10-26 20:59:57 1 12 2019-10-26 20:59:57 2 2 2019-10-26 21:09:57 1 10 2019-10-26 21:09:57 2 2 2019-10-26 21:14:57 1 9 2019-10-26 21:14:57 2 2 2019-10-26 21:24:57 1 12 2019-10-26 21:24:57 2 2 2019-10-26 21:29:57 1 12 2019-10-26 21:29:57 2 2 2019-10-26 21:54:57 1 9 2019-10-26 21:54:57 2 2 2019-10-26 22:14:57 1 11 2019-10-26 22:14:57 2 2 2019-10-26 22:19:57 1 13 2019-10-26 22:19:57 2 2 2019-10-26 22:39:57 1 14 2019-10-26 22:39:57 2 1 2019-10-26 22:54:57 1 11 2019-10-26 22:54:57 2 2 2019-10-26 23:54:57 1 11 2019-10-27 00:09:57 1 6 2019-10-27 00:09:57 2 1 2019-10-27 00:14:57 1 7 2019-10-27 00:14:57 2 1 2019-10-27 00:24:57 1 6 2019-10-27 00:24:57 2 1 2019-10-27 00:59:57 1 7 2019-10-27 00:59:57 2 1 2019-10-27 01:14:57 1 7 2019-10-27 01:59:57 1 5 2019-10-27 02:14:57 1 2 2019-10-27 02:24:57 1 2 2019-10-27 02:39:57 1 3 2019-10-27 02:44:57 1 3 2019-10-27 03:04:57 1 2 2019-10-27 03:24:57 1 3 2019-10-27 03:39:57 1 4 2019-10-27 03:54:57 1 4 2019-10-27 03:59:57 1 3 2019-10-27 03:59:57 2 1 2019-10-27 04:24:57 1 4 2019-10-27 04:24:57 2 1 2019-10-27 04:44:57 1 4 2019-10-27 04:44:57 2 1 2019-10-27 05:09:57 1 2 2019-10-27 05:19:57 1 2 2019-10-27 05:59:57 1 3 2019-10-27 06:29:57 1 3 2019-10-27 06:39:57 1 4 2019-10-27 06:54:57 1 3 2019-10-27 06:59:57 1 4 2019-10-27 07:04:57 1 4 2019-10-27 07:14:57 1 4 2019-10-27 07:44:57 1 3 2019-10-27 07:44:57 2 1 2019-10-27 07:54:57 1 4 2019-10-27 07:54:57 2 1 2019-10-27 07:59:57 1 4 2019-10-27 07:59:57 2 1 2019-10-27 08:14:57 1 7 2019-10-27 08:14:57 2 1 2019-10-27 08:34:57 1 6 2019-10-27 08:34:57 2 1 2019-10-27 09:09:57 1 10 2019-10-27 09:09:57 2 1 2019-10-27 09:24:57 1 10 2019-10-27 09:24:57 2 1 2019-10-27 09:39:57 1 10 2019-10-27 09:39:57 2 1 2019-10-27 09:44:57 1 8 2019-10-27 09:44:57 2 1 2019-10-27 09:54:57 1 8 2019-10-27 10:29:57 1 8 2019-10-27 10:39:57 1 12 2019-10-27 10:39:57 2 1 2019-10-27 10:44:57 1 9 2019-10-27 10:44:57 2 1 2019-10-27 10:49:57 1 9 2019-10-27 10:49:57 2 1 2019-10-27 11:09:57 1 7 2019-10-27 11:09:57 2 2 2019-10-27 11:59:57 1 11 2019-10-27 11:59:57 2 4 2019-10-27 12:14:57 1 11 2019-10-27 12:14:57 2 3 2019-10-27 12:24:57 1 11 2019-10-27 12:24:57 2 3 2019-10-27 13:19:57 1 13 2019-10-27 13:19:57 2 2 2019-10-27 13:24:57 1 12 2019-10-27 13:24:57 2 2 2019-10-27 13:29:57 1 12 2019-10-27 13:29:57 2 2 2019-10-27 13:34:57 1 13 2019-10-27 13:34:57 2 2 2019-10-27 13:49:57 1 11 2019-10-27 13:49:57 2 3 2019-10-27 14:19:57 1 15 2019-10-27 14:19:57 2 2 2019-10-27 14:24:57 1 12 2019-10-27 14:24:57 2 2 2019-10-27 14:29:57 1 12 2019-10-27 14:29:57 2 2 2019-10-27 14:39:57 1 15 2019-10-27 14:39:57 2 2 2019-10-27 15:09:57 1 16 2019-10-27 15:09:57 2 4 2019-10-27 15:14:57 1 15 2019-10-27 15:14:57 2 4 2019-10-27 15:19:57 1 13 2019-10-27 15:19:57 2 5 2019-10-27 15:24:57 1 12 2019-10-27 15:24:57 2 5 2019-10-27 15:29:57 1 12 2019-10-27 15:29:57 2 6 2019-10-27 15:44:57 1 11 2019-10-27 15:44:57 2 6 2019-10-27 15:59:57 1 10 2019-10-27 15:59:57 2 6 2019-10-27 16:09:57 1 10 2019-10-27 16:09:57 2 6 2019-10-27 16:54:57 1 13 2019-10-27 16:54:57 2 3 2019-10-27 17:04:57 1 15 2019-10-27 17:04:57 2 2 2019-10-27 17:24:57 1 12 2019-10-27 17:24:57 2 1 2019-10-27 17:39:57 1 14 2019-10-27 17:39:57 2 1 2019-10-27 17:44:57 1 13 2019-10-27 17:44:57 2 1 2019-10-27 17:49:57 1 15 2019-10-27 17:49:57 2 1 2019-10-27 18:04:57 1 15 2019-10-27 18:09:57 1 14 2019-10-27 18:14:57 1 14 2019-10-27 18:24:57 1 15 2019-10-27 18:29:57 1 18 2019-10-27 18:29:57 2 1 2019-10-27 18:34:58 1 16 2019-10-27 18:34:58 2 1 2019-10-27 18:44:57 1 16 2019-10-27 18:44:57 2 2 2019-10-27 18:54:57 1 16 2019-10-27 18:54:57 2 2 2019-10-27 19:04:57 1 12 2019-10-27 19:04:57 2 2 2019-10-27 19:14:57 1 14 2019-10-27 19:39:57 1 19 2019-10-27 19:44:57 1 17 2019-10-27 19:54:57 1 15 2019-10-27 20:04:57 1 14 2019-10-27 20:14:57 1 13 2019-10-27 20:34:57 1 12 2019-10-27 20:34:57 2 1 2019-10-27 20:39:57 1 12 2019-10-27 20:39:57 2 1 2019-10-27 20:59:57 1 14 2019-10-27 20:59:57 2 1 2019-10-27 21:04:57 1 12 2019-10-27 21:04:57 2 1 2019-10-27 21:09:57 1 13 2019-10-27 21:09:57 2 1 2019-10-27 21:19:57 1 14 2019-10-27 21:49:57 1 18 2019-10-27 21:49:57 2 1 2019-10-27 21:54:57 1 17 2019-10-27 21:54:57 2 1 2019-10-27 22:14:57 1 15 2019-10-27 22:14:57 2 2 2019-10-27 22:19:57 1 14 2019-10-27 22:19:57 2 2 2019-10-27 22:34:57 1 15 2019-10-27 22:34:57 2 2 2019-10-27 22:39:57 1 17 2019-10-27 22:39:57 2 2 2019-10-27 22:54:57 1 15 2019-10-27 22:54:57 2 2 2019-10-27 23:14:57 1 12 2019-10-27 23:14:57 2 1 2019-10-27 23:34:57 1 13 2019-10-27 23:34:57 2 3 2019-10-27 23:59:57 1 10 2019-10-27 23:59:57 2 2 2019-10-28 00:04:57 1 9 2019-10-28 00:04:57 2 2 2019-10-28 00:59:57 1 9 2019-10-28 01:59:57 1 9 2019-10-28 02:09:57 1 8 2019-10-28 02:09:57 2 1 2019-10-28 02:19:57 1 9 2019-10-28 02:19:57 2 1 2019-10-28 02:59:57 1 9 2019-10-28 03:04:57 1 8 2019-10-28 03:24:57 1 9 2019-10-28 03:24:57 2 1 2019-10-28 03:29:57 1 9 2019-10-28 03:29:57 2 1 2019-10-28 03:39:57 1 9 2019-10-28 03:39:57 2 1 2019-10-28 03:54:57 1 9 2019-10-28 04:04:57 1 8 2019-10-28 04:09:57 1 9 2019-10-28 04:19:57 1 8 2019-10-28 04:34:57 1 7 2019-10-28 05:09:57 1 8 2019-10-28 05:24:57 1 7 2019-10-28 05:29:57 1 8 2019-10-28 05:44:57 1 9 2019-10-28 05:59:57 1 9 2019-10-28 06:04:57 1 9 2019-10-28 06:24:57 1 8 2019-10-28 06:34:57 1 7 2019-10-28 06:39:57 1 8 2019-10-28 06:49:57 1 8 2019-10-28 07:24:57 1 10 2019-10-28 07:49:57 1 12 2019-10-28 07:54:57 1 13 2019-10-28 08:19:57 1 15 2019-10-28 08:29:57 1 13 2019-10-28 08:49:57 1 12 2019-10-28 08:59:57 1 14 2019-10-28 09:04:57 1 15 2019-10-28 09:24:57 1 15 2019-10-28 10:04:57 1 11 2019-10-28 10:04:57 2 1 2019-10-28 10:14:57 1 9 2019-10-28 10:14:57 2 1 2019-10-28 10:39:57 1 13 2019-10-28 10:39:57 2 2 2019-10-28 11:39:57 1 15 2019-10-28 11:39:57 2 2 2019-10-28 11:54:57 1 13 2019-10-28 11:54:57 2 2 2019-10-28 12:14:57 1 11 2019-10-28 12:14:57 2 2 2019-10-28 12:24:57 1 15 2019-10-28 12:24:57 2 3 2019-10-28 12:29:57 1 14 2019-10-28 12:29:57 2 2 2019-10-28 12:39:57 1 15 2019-10-28 12:44:57 1 16 2019-10-28 13:09:57 1 13 2019-10-28 13:09:57 2 1 2019-10-28 13:54:57 1 17 2019-10-28 14:04:57 1 14 2019-10-28 14:04:57 2 1 2019-10-28 14:19:57 1 15 2019-10-28 14:19:57 2 1 2019-10-28 15:19:57 1 15 2019-10-28 15:19:57 2 2 2019-10-28 15:29:57 1 15 2019-10-28 16:54:57 1 14 2019-10-28 16:54:57 2 1 2019-10-28 16:59:57 1 14 2019-10-28 16:59:57 2 1 2019-10-28 17:04:57 1 18 2019-10-28 17:04:57 2 2 2019-10-28 17:14:57 1 16 2019-10-28 17:24:57 1 15 2019-10-28 17:24:57 2 1 2019-10-28 17:29:57 1 16 2019-10-28 17:29:57 2 1 2019-10-28 17:54:57 1 14 2019-10-28 17:59:57 1 13 2019-10-28 18:14:57 2 1 2019-10-28 18:19:57 1 16 2019-10-28 18:19:57 2 1 2019-10-28 18:29:57 1 18 2019-10-28 18:29:57 2 2 2019-10-28 18:44:57 1 16 2019-10-28 18:49:57 1 17 2019-10-28 19:14:57 1 15 2019-10-28 19:19:57 1 15 2019-10-28 19:24:57 1 14 2019-10-28 19:29:57 1 17 2019-10-28 19:29:57 2 1 2019-10-28 19:34:57 2 2 2019-10-28 19:39:57 1 14 2019-10-28 19:39:57 2 2 2019-10-28 19:44:57 1 15 2019-10-28 19:44:57 2 3 2019-10-28 19:49:57 1 15 2019-10-28 19:49:57 2 2 2019-10-28 19:54:57 1 15 2019-10-28 19:54:57 2 1 2019-10-28 19:59:57 1 16 2019-10-28 19:59:57 2 1 2019-10-28 20:04:57 1 15 2019-10-28 20:04:57 2 1 2019-10-28 20:09:57 1 14 2019-10-28 20:09:57 2 1 2019-10-28 20:14:57 1 17 2019-10-28 20:14:57 2 1 2019-10-28 20:19:57 1 13 2019-10-28 20:19:57 2 1 2019-10-28 20:24:57 1 14 2019-10-28 20:24:57 2 1 2019-10-27 15:34:57 1 8 2019-10-27 15:34:57 2 6 2019-10-27 15:49:57 1 11 2019-10-27 15:49:57 2 6 2019-10-27 15:54:57 1 10 2019-10-27 15:54:57 2 6 2019-10-27 16:04:57 1 11 2019-10-27 16:04:57 2 6 2019-10-27 16:14:57 1 10 2019-10-27 16:14:57 2 5 2019-10-27 16:29:57 1 13 2019-10-27 16:29:57 2 3 2019-10-27 16:39:57 1 13 2019-10-27 16:39:57 2 3 2019-10-27 16:44:57 1 11 2019-10-27 16:44:57 2 4 2019-10-27 17:14:57 1 13 2019-10-27 17:14:57 2 1 2019-10-27 17:34:57 1 14 2019-10-27 17:34:57 2 1 2019-10-27 17:54:57 1 15 2019-10-27 17:54:57 2 1 2019-10-27 17:59:57 1 13 2019-10-27 18:49:57 1 15 2019-10-27 18:49:57 2 2 2019-10-27 18:59:57 1 15 2019-10-27 18:59:57 2 2 2019-10-27 19:34:57 1 17 2019-10-27 19:49:57 1 15 2019-10-27 20:09:57 1 13 2019-10-27 20:44:57 1 13 2019-10-27 20:44:57 2 1 2019-10-27 20:49:57 1 13 2019-10-27 20:49:57 2 1 2019-10-27 21:14:57 1 13 2019-10-27 21:14:57 2 1 2019-10-27 21:29:57 1 12 2019-10-27 21:34:57 1 16 2019-10-27 21:34:57 2 1 2019-10-27 21:44:57 1 20 2019-10-27 21:44:57 2 1 2019-10-27 21:59:57 1 17 2019-10-27 21:59:57 2 2 2019-10-27 22:04:57 1 14 2019-10-27 22:04:57 2 2 2019-10-27 22:09:57 1 15 2019-10-27 22:09:57 2 2 2019-10-27 22:44:57 1 15 2019-10-27 22:44:57 2 2 2019-10-27 23:09:57 1 13 2019-10-27 23:09:57 2 1 2019-10-27 23:24:57 1 13 2019-10-27 23:24:57 2 2 2019-10-27 23:29:57 1 11 2019-10-27 23:29:57 2 2 2019-10-28 00:14:57 1 10 2019-10-28 00:14:57 2 2 2019-10-28 00:19:57 1 8 2019-10-28 00:19:57 2 2 2019-10-28 00:24:57 1 8 2019-10-28 00:24:57 2 1 2019-10-28 00:34:57 1 9 2019-10-28 00:34:57 2 1 2019-10-28 00:44:57 1 8 2019-10-28 00:44:57 2 1 2019-10-28 01:29:57 1 11 2019-10-28 01:34:57 1 9 2019-10-28 01:34:57 2 1 2019-10-28 01:44:57 1 9 2019-10-28 02:04:57 1 10 2019-10-28 02:24:57 1 9 2019-10-28 02:24:57 2 1 2019-10-28 02:34:57 1 8 2019-10-28 02:39:57 1 8 2019-10-28 02:54:57 1 9 2019-10-28 03:14:57 1 8 2019-10-28 03:19:57 1 9 2019-10-28 03:19:57 2 1 2019-10-28 03:34:57 1 9 2019-10-28 03:34:57 2 1 2019-10-28 03:44:57 1 9 2019-10-28 03:44:57 2 1 2019-10-28 03:59:57 1 9 2019-10-28 04:14:57 1 9 2019-10-28 04:49:57 1 8 2019-10-28 04:54:57 1 8 2019-10-28 05:14:57 1 7 2019-10-28 05:19:57 1 8 2019-10-28 05:54:57 1 9 2019-10-28 06:14:57 1 9 2019-10-28 06:19:57 1 9 2019-10-28 06:29:57 1 8 2019-10-28 06:59:57 1 9 2019-10-28 07:19:57 1 8 2019-10-28 07:29:57 1 9 2019-10-28 07:39:57 1 10 2019-10-28 08:09:57 1 12 2019-10-28 08:09:57 2 1 2019-10-28 08:24:57 1 14 2019-10-28 08:34:57 1 13 2019-10-28 08:39:57 1 14 2019-10-28 09:09:57 1 14 2019-10-28 09:14:57 1 16 2019-10-28 09:29:57 1 16 2019-10-28 09:39:57 1 14 2019-10-28 09:49:57 1 11 2019-10-28 10:09:57 1 11 2019-10-28 10:09:57 2 1 2019-10-28 10:29:57 1 9 2019-10-28 10:29:57 2 2 2019-10-28 10:34:57 1 10 2019-10-28 10:34:57 2 1 2019-10-28 10:44:57 1 13 2019-10-28 10:44:57 2 3 2019-10-28 10:59:57 1 12 2019-10-28 10:59:57 2 2 2019-10-28 11:14:57 1 15 2019-10-28 11:14:57 2 2 2019-10-28 11:29:57 1 17 2019-10-28 11:29:57 2 3 2019-10-28 11:34:57 1 17 2019-10-28 11:34:57 2 2 2019-10-28 11:49:57 1 15 2019-10-28 11:49:57 2 2 2019-10-28 12:04:57 1 15 2019-10-28 12:04:57 2 2 2019-10-28 12:09:57 1 14 2019-10-28 12:09:57 2 2 2019-10-28 12:34:57 1 14 2019-10-28 12:34:57 2 1 2019-10-28 12:49:57 1 13 2019-10-28 12:59:57 1 13 2019-10-28 13:04:57 1 13 2019-10-28 13:04:57 2 1 2019-10-28 13:14:57 1 11 2019-10-28 13:14:57 2 1 2019-10-28 13:19:57 1 12 2019-10-28 13:19:57 2 1 2019-10-28 13:24:57 1 11 2019-10-28 13:24:57 2 1 2019-10-28 13:34:57 1 11 2019-10-28 13:34:57 2 1 2019-10-28 13:49:57 1 17 2019-10-28 14:09:57 1 13 2019-10-28 14:09:57 2 1 2019-10-28 14:14:57 1 16 2019-10-28 14:14:57 2 1 2019-10-28 14:54:57 1 18 2019-10-28 14:54:57 2 1 2019-10-28 15:24:57 1 16 2019-10-28 15:24:57 2 1 2019-10-28 15:39:57 1 11 2019-10-28 15:44:57 1 12 2019-10-28 15:49:57 1 12 2019-10-28 15:49:57 2 1 2019-10-28 16:04:57 1 11 2019-10-28 16:04:57 2 1 2019-10-28 16:09:57 1 11 2019-10-28 16:09:57 2 3 2019-10-28 16:14:57 1 9 2019-10-28 16:14:57 2 3 2019-10-28 16:24:57 1 11 2019-10-28 16:24:57 2 4 2019-10-28 16:29:57 1 12 2019-10-28 16:29:57 2 3 2019-10-28 16:34:57 1 12 2019-10-28 16:34:57 2 2 2019-10-28 17:09:57 1 17 2019-10-28 17:09:57 2 1 2019-10-28 18:09:57 1 15 2019-10-28 18:09:57 2 1 2019-10-28 18:24:57 1 21 2019-10-28 18:24:57 2 1 2019-10-28 18:34:57 1 19 2019-10-28 18:34:57 2 2 2019-10-28 18:39:57 1 15 2019-10-28 18:39:57 2 2 2019-10-28 18:54:57 1 16 2019-10-28 18:59:57 1 15 2019-10-28 18:59:57 2 1 2019-10-28 19:04:57 1 15 2019-10-28 19:04:57 2 1 2019-10-28 19:09:57 1 18 2019-10-28 19:09:57 2 1 2019-10-28 19:34:57 1 16 2019-10-27 15:39:57 1 10 2019-10-27 15:39:57 2 6 2019-10-27 16:19:57 1 12 2019-10-27 16:19:57 2 3 2019-10-27 16:24:57 1 14 2019-10-27 16:24:57 2 3 2019-10-27 16:34:57 1 11 2019-10-27 16:34:57 2 3 2019-10-27 16:49:57 1 11 2019-10-27 16:49:57 2 4 2019-10-27 16:59:57 1 11 2019-10-27 16:59:57 2 2 2019-10-27 17:09:57 1 15 2019-10-27 17:09:57 2 2 2019-10-27 17:19:57 1 12 2019-10-27 17:19:57 2 1 2019-10-27 17:29:57 1 16 2019-10-27 17:29:57 2 1 2019-10-27 18:19:57 1 13 2019-10-27 18:39:57 1 16 2019-10-27 18:39:57 2 2 2019-10-27 19:09:57 1 14 2019-10-27 19:09:57 2 2 2019-10-27 19:19:57 1 16 2019-10-27 19:24:57 1 18 2019-10-27 19:29:57 1 18 2019-10-27 19:59:57 1 13 2019-10-27 20:19:58 1 13 2019-10-27 20:19:58 2 1 2019-10-27 20:24:57 1 13 2019-10-27 20:24:57 2 1 2019-10-27 20:29:57 1 14 2019-10-27 20:29:57 2 1 2019-10-27 20:54:57 1 12 2019-10-27 20:54:57 2 1 2019-10-27 21:24:57 1 13 2019-10-27 21:39:57 1 16 2019-10-27 22:24:57 1 13 2019-10-27 22:24:57 2 2 2019-10-27 22:29:57 1 14 2019-10-27 22:29:57 2 2 2019-10-27 22:49:57 1 17 2019-10-27 22:49:57 2 2 2019-10-27 22:59:57 1 15 2019-10-27 22:59:57 2 1 2019-10-27 23:04:57 1 13 2019-10-27 23:04:57 2 1 2019-10-27 23:19:57 1 12 2019-10-27 23:19:57 2 2 2019-10-27 23:39:57 1 11 2019-10-27 23:39:57 2 4 2019-10-27 23:44:57 1 11 2019-10-27 23:44:57 2 1 2019-10-27 23:49:57 1 10 2019-10-27 23:49:57 2 3 2019-10-27 23:54:57 1 11 2019-10-27 23:54:57 2 3 2019-10-28 00:09:57 1 9 2019-10-28 00:09:57 2 2 2019-10-28 00:29:57 1 10 2019-10-28 00:29:57 2 1 2019-10-28 00:39:57 1 9 2019-10-28 00:39:57 2 1 2019-10-28 00:49:57 1 9 2019-10-28 00:49:57 2 1 2019-10-28 00:54:57 1 9 2019-10-28 01:04:57 1 10 2019-10-28 01:09:57 1 8 2019-10-28 01:14:57 1 9 2019-10-28 01:19:57 1 11 2019-10-28 01:24:57 1 9 2019-10-28 01:39:57 1 9 2019-10-28 01:49:57 1 9 2019-10-28 01:54:57 1 9 2019-10-28 02:14:57 1 9 2019-10-28 02:14:57 2 1 2019-10-28 02:29:57 1 9 2019-10-28 02:44:57 1 8 2019-10-28 02:49:57 1 9 2019-10-28 03:09:57 1 8 2019-10-28 03:49:57 1 9 2019-10-28 04:24:57 1 7 2019-10-28 04:29:57 1 7 2019-10-28 04:39:57 1 7 2019-10-28 04:44:57 1 8 2019-10-28 04:59:57 1 8 2019-10-28 05:04:57 1 8 2019-10-28 05:34:57 1 8 2019-10-28 05:39:57 1 9 2019-10-28 05:49:57 1 9 2019-10-28 06:09:57 1 10 2019-10-28 06:44:57 1 8 2019-10-28 06:54:57 1 8 2019-10-28 07:04:57 1 8 2019-10-28 07:09:57 1 8 2019-10-28 07:14:57 1 8 2019-10-28 07:34:57 1 9 2019-10-28 07:44:57 1 12 2019-10-28 07:59:57 1 11 2019-10-28 08:04:57 1 12 2019-10-28 08:14:57 1 13 2019-10-28 08:44:57 1 11 2019-10-28 08:54:57 1 13 2019-10-28 09:19:57 1 17 2019-10-28 09:34:57 1 14 2019-10-28 09:44:57 1 13 2019-10-28 09:54:57 1 9 2019-10-28 09:54:57 2 1 2019-10-28 09:59:57 1 9 2019-10-28 09:59:57 2 1 2019-10-28 10:19:57 1 10 2019-10-28 10:19:57 2 1 2019-10-28 10:24:57 1 11 2019-10-28 10:24:57 2 1 2019-10-28 10:49:57 1 11 2019-10-28 10:49:57 2 2 2019-10-28 10:54:57 1 12 2019-10-28 10:54:57 2 2 2019-10-28 11:04:57 1 14 2019-10-28 11:04:57 2 2 2019-10-28 11:09:57 1 15 2019-10-28 11:09:57 2 2 2019-10-28 11:19:57 1 15 2019-10-28 11:19:57 2 3 2019-10-28 11:24:57 1 16 2019-10-28 11:24:57 2 3 2019-10-28 11:44:57 1 12 2019-10-28 11:44:57 2 2 2019-10-28 11:59:57 1 11 2019-10-28 11:59:57 2 2 2019-10-28 12:19:57 1 15 2019-10-28 12:19:57 2 2 2019-10-28 12:54:57 1 12 2019-10-28 13:29:57 1 12 2019-10-28 13:29:57 2 1 2019-10-28 13:39:57 1 14 2019-10-28 13:39:57 2 1 2019-10-28 13:44:57 1 16 2019-10-28 13:44:57 2 1 2019-10-28 13:59:57 1 16 2019-10-28 14:24:57 1 14 2019-10-28 14:24:57 2 1 2019-10-28 14:29:57 1 17 2019-10-28 14:29:57 2 1 2019-10-28 14:34:57 1 15 2019-10-28 14:34:57 2 1 2019-10-28 14:39:57 1 16 2019-10-28 14:39:57 2 1 2019-10-28 14:44:57 1 16 2019-10-28 14:44:57 2 1 2019-10-28 14:49:57 1 16 2019-10-28 14:49:57 2 1 2019-10-28 14:59:57 1 16 2019-10-28 14:59:57 2 1 2019-10-28 15:04:57 1 15 2019-10-28 15:04:57 2 1 2019-10-28 15:09:57 1 15 2019-10-28 15:09:57 2 1 2019-10-28 15:14:57 1 16 2019-10-28 15:14:57 2 2 2019-10-28 15:34:57 1 13 2019-10-28 15:54:57 1 13 2019-10-28 15:54:57 2 1 2019-10-28 15:59:57 1 13 2019-10-28 15:59:57 2 1 2019-10-28 16:19:57 1 11 2019-10-28 16:19:57 2 4 2019-10-28 16:39:57 1 10 2019-10-28 16:39:57 2 2 2019-10-28 16:44:57 1 14 2019-10-28 16:44:57 2 2 2019-10-28 16:49:57 1 13 2019-10-28 16:49:57 2 2 2019-10-28 17:19:57 1 16 2019-10-28 17:34:57 1 14 2019-10-28 17:34:57 2 1 2019-10-28 17:39:57 1 14 2019-10-28 17:39:57 2 1 2019-10-28 17:44:57 1 13 2019-10-28 17:44:57 2 1 2019-10-28 17:49:57 1 14 2019-10-28 17:49:57 2 1 2019-10-28 18:04:57 1 14 2019-10-28 18:04:57 2 1 2019-10-28 18:14:57 1 17 2019-10-28 20:29:57 1 16 2019-10-28 20:29:57 2 1 2019-10-28 20:54:57 1 16 2019-10-28 21:24:57 1 17 2019-10-28 21:29:57 1 17 2019-10-28 21:54:57 1 15 2019-10-28 21:54:57 2 1 2019-10-28 21:59:57 1 15 2019-10-28 21:59:57 2 2 2019-10-28 22:14:57 1 14 2019-10-28 22:14:57 2 1 2019-10-28 22:34:57 1 17 2019-10-28 22:34:57 2 2 2019-10-28 22:49:57 1 15 2019-10-28 22:49:57 2 1 2019-10-28 22:59:57 1 16 2019-10-28 22:59:57 2 1 2019-10-28 23:09:57 1 13 2019-10-28 23:09:57 2 2 2019-10-28 23:19:57 1 13 2019-10-28 23:19:57 2 1 2019-10-28 23:24:57 1 14 2019-10-29 00:14:57 1 15 2019-10-29 00:14:57 2 3 2019-10-29 00:39:57 1 15 2019-10-29 00:39:57 2 1 2019-10-29 00:49:57 1 16 2019-10-29 00:49:57 2 1 2019-10-29 00:54:57 1 15 2019-10-29 00:54:57 2 1 2019-10-29 01:19:57 1 12 2019-10-29 01:29:57 1 9 2019-10-29 01:39:57 1 9 2019-10-29 01:49:57 1 11 2019-10-29 02:09:57 1 8 2019-10-29 02:19:57 1 8 2019-10-29 02:39:57 1 5 2019-10-29 03:14:57 1 5 2019-10-29 03:54:57 1 3 2019-10-29 04:04:57 1 3 2019-10-29 04:24:57 1 5 2019-10-29 04:24:57 2 1 2019-10-29 04:29:57 1 4 2019-10-29 04:29:57 2 1 2019-10-29 04:49:57 1 5 2019-10-29 04:49:57 2 1 2019-10-29 06:04:57 1 5 2019-10-29 06:24:57 1 7 2019-10-29 06:29:57 1 5 2019-10-29 06:39:57 1 5 2019-10-29 06:59:57 1 5 2019-10-29 07:14:57 1 6 2019-10-29 07:34:57 1 7 2019-10-29 07:34:57 2 1 2019-10-29 07:39:57 1 6 2019-10-29 07:39:57 2 1 2019-10-29 07:44:57 1 5 2019-10-29 07:44:57 2 1 2019-10-29 08:04:57 1 9 2019-10-29 08:04:57 2 1 2019-10-29 08:19:57 1 9 2019-10-29 08:19:57 2 1 2019-10-29 08:34:57 1 9 2019-10-29 08:34:57 2 1 2019-10-29 08:54:57 1 8 2019-10-29 08:54:57 2 2 2019-10-29 08:59:57 1 9 2019-10-29 09:04:57 1 8 2019-10-29 09:19:57 1 9 2019-10-29 09:19:57 2 1 2019-10-29 09:44:57 1 11 2019-10-29 09:59:57 1 9 2019-10-29 09:59:57 2 1 2019-10-29 10:09:57 1 9 2019-10-29 10:19:57 1 12 2019-10-29 10:24:57 1 12 2019-10-29 10:24:57 2 1 2019-10-29 10:34:57 1 11 2019-10-29 10:34:57 2 1 2019-10-29 10:39:57 1 8 2019-10-29 10:39:57 2 1 2019-10-29 10:49:57 1 12 2019-10-29 11:19:57 1 10 2019-10-29 11:19:57 2 1 2019-10-29 11:24:57 1 10 2019-10-29 11:24:57 2 3 2019-10-29 11:49:57 1 10 2019-10-29 11:49:57 2 2 2019-10-29 12:04:57 1 12 2019-10-29 12:04:57 2 1 2019-10-29 12:19:57 1 8 2019-10-29 12:19:57 2 3 2019-10-29 12:24:57 1 10 2019-10-29 12:24:57 2 3 2019-10-29 13:09:57 1 10 2019-10-29 13:09:57 2 3 2019-10-29 13:19:57 1 10 2019-10-29 13:19:57 2 3 2019-10-29 13:24:57 1 10 2019-10-29 13:24:57 2 3 2019-10-29 13:44:57 1 12 2019-10-29 13:44:57 2 1 2019-10-29 13:49:57 1 12 2019-10-29 14:04:57 1 11 2019-10-29 14:04:57 2 1 2019-10-29 14:24:57 1 9 2019-10-29 14:24:57 2 1 2019-10-29 14:34:57 1 6 2019-10-29 14:34:57 2 1 2019-10-29 14:44:57 1 4 2019-10-29 14:44:57 2 1 2019-10-29 14:54:57 1 6 2019-10-29 14:54:57 2 1 2019-10-29 14:59:57 1 6 2019-10-29 14:59:57 2 1 2019-10-29 15:04:57 1 9 2019-10-29 15:04:57 2 1 2019-10-29 15:09:57 1 7 2019-10-29 15:09:57 2 1 2019-10-29 15:19:57 1 10 2019-10-29 15:19:57 2 1 2019-10-29 15:24:57 1 7 2019-10-29 15:24:57 2 1 2019-10-29 15:29:57 1 9 2019-10-29 15:29:57 2 1 2019-10-29 15:59:57 1 6 2019-10-29 15:59:57 2 2 2019-10-29 16:14:57 1 10 2019-10-29 16:14:57 2 1 2019-10-29 16:19:57 1 10 2019-10-29 16:19:57 2 1 2019-10-29 16:29:57 1 10 2019-10-29 16:29:57 2 1 2019-10-29 16:39:57 1 11 2019-10-29 16:39:57 2 1 2019-10-29 16:49:57 1 10 2019-10-29 16:49:57 2 1 2019-10-29 16:59:57 1 9 2019-10-29 16:59:57 2 2 2019-10-29 17:04:57 1 10 2019-10-29 17:04:57 2 2 2019-10-29 17:09:57 1 10 2019-10-29 17:09:57 2 2 2019-10-29 17:24:57 1 13 2019-10-29 17:24:57 2 3 2019-10-29 17:54:57 1 10 2019-10-29 17:54:57 2 2 2019-10-29 17:59:57 1 9 2019-10-29 17:59:57 2 2 2019-10-29 18:04:57 1 10 2019-10-29 18:04:57 2 2 2019-10-29 18:19:57 1 10 2019-10-29 18:19:57 2 2 2019-10-29 18:29:57 1 9 2019-10-29 18:29:57 2 2 2019-10-29 18:39:57 1 8 2019-10-29 18:39:57 2 3 2019-10-29 18:44:57 1 12 2019-10-29 18:44:57 2 3 2019-10-29 18:49:57 1 8 2019-10-29 18:49:57 2 3 2019-10-29 18:54:57 1 8 2019-10-29 18:54:57 2 3 2019-10-29 19:04:57 1 11 2019-10-29 19:04:57 2 3 2019-10-29 19:14:57 1 11 2019-10-29 19:14:57 2 1 2019-10-29 19:19:57 1 10 2019-10-29 19:19:57 2 2 2019-10-29 19:34:57 1 10 2019-10-29 19:34:57 2 2 2019-10-29 19:39:57 1 11 2019-10-29 19:39:57 2 2 2019-10-29 20:04:57 1 13 2019-10-29 20:04:57 2 4 2019-10-29 20:29:57 1 16 2019-10-29 20:29:57 2 3 2019-10-29 20:49:57 1 16 2019-10-29 20:49:57 2 1 2019-10-29 20:59:57 1 15 2019-10-29 20:59:57 2 1 2019-10-29 21:04:57 1 14 2019-10-29 21:04:57 2 1 2019-10-29 21:19:57 1 17 2019-10-29 21:19:57 2 1 2019-10-28 20:34:57 1 17 2019-10-28 20:39:57 1 18 2019-10-28 20:44:57 1 18 2019-10-28 20:59:57 1 18 2019-10-28 21:19:57 1 17 2019-10-28 21:34:57 1 16 2019-10-28 21:39:57 1 16 2019-10-28 22:24:57 1 13 2019-10-28 22:24:57 2 1 2019-10-28 22:29:57 1 14 2019-10-28 22:29:57 2 1 2019-10-28 22:44:57 1 15 2019-10-28 22:44:57 2 1 2019-10-28 22:54:57 1 16 2019-10-28 22:54:57 2 1 2019-10-28 23:04:57 1 12 2019-10-28 23:04:57 2 2 2019-10-28 23:44:57 1 17 2019-10-28 23:44:57 2 4 2019-10-28 23:59:57 1 14 2019-10-28 23:59:57 2 3 2019-10-29 00:09:57 1 13 2019-10-29 00:09:57 2 3 2019-10-29 00:29:57 1 15 2019-10-29 00:29:57 2 1 2019-10-29 00:34:57 1 15 2019-10-29 00:34:57 2 1 2019-10-29 00:59:57 1 15 2019-10-29 01:04:57 1 11 2019-10-29 02:24:57 1 7 2019-10-29 02:34:57 1 6 2019-10-29 02:44:57 1 5 2019-10-29 03:04:57 1 6 2019-10-29 03:39:57 1 5 2019-10-29 03:44:57 1 4 2019-10-29 03:49:57 1 4 2019-10-29 03:59:57 1 3 2019-10-29 04:09:57 1 3 2019-10-29 04:14:57 1 4 2019-10-29 04:19:57 1 4 2019-10-29 04:34:57 1 4 2019-10-29 04:34:57 2 1 2019-10-29 04:44:57 1 5 2019-10-29 04:44:57 2 1 2019-10-29 04:59:57 1 4 2019-10-29 04:59:57 2 1 2019-10-29 05:19:57 1 3 2019-10-29 05:19:57 2 1 2019-10-29 05:29:57 1 4 2019-10-29 05:29:57 2 1 2019-10-29 05:34:57 1 5 2019-10-29 05:34:57 2 1 2019-10-29 05:54:57 1 6 2019-10-29 05:54:57 2 1 2019-10-29 05:59:57 1 5 2019-10-29 06:09:58 1 7 2019-10-29 06:19:57 1 6 2019-10-29 06:44:57 1 5 2019-10-29 07:09:57 1 6 2019-10-29 07:49:57 1 5 2019-10-29 07:49:57 2 1 2019-10-29 07:54:57 1 8 2019-10-29 08:39:57 1 9 2019-10-29 08:39:57 2 1 2019-10-29 08:49:57 1 10 2019-10-29 08:49:57 2 2 2019-10-29 09:09:57 1 10 2019-10-29 09:14:57 1 9 2019-10-29 09:14:57 2 1 2019-10-29 09:24:57 1 9 2019-10-29 09:24:57 2 1 2019-10-29 09:29:57 1 9 2019-10-29 09:29:57 2 1 2019-10-29 09:34:57 1 10 2019-10-29 09:54:57 1 8 2019-10-29 10:04:57 1 10 2019-10-29 10:29:57 1 14 2019-10-29 10:29:57 2 1 2019-10-29 10:44:57 1 11 2019-10-29 10:44:57 2 1 2019-10-29 10:59:57 1 11 2019-10-29 11:14:57 1 12 2019-10-29 11:14:57 2 1 2019-10-29 11:44:57 1 11 2019-10-29 11:44:57 2 2 2019-10-29 11:59:57 1 12 2019-10-29 11:59:57 2 2 2019-10-29 12:39:57 1 8 2019-10-29 12:39:57 2 3 2019-10-29 12:44:57 1 9 2019-10-29 12:44:57 2 2 2019-10-29 12:49:57 1 10 2019-10-29 12:49:57 2 2 2019-10-29 12:54:57 1 9 2019-10-29 12:54:57 2 2 2019-10-29 13:04:57 1 9 2019-10-29 13:04:57 2 3 2019-10-29 13:59:57 1 11 2019-10-29 13:59:57 2 1 2019-10-29 14:19:57 1 11 2019-10-29 14:19:57 2 1 2019-10-29 14:39:57 1 8 2019-10-29 14:39:57 2 1 2019-10-29 16:24:57 1 11 2019-10-29 16:24:57 2 1 2019-10-29 17:19:57 1 12 2019-10-29 17:19:57 2 3 2019-10-29 17:29:57 1 13 2019-10-29 17:29:57 2 2 2019-10-29 17:44:57 1 12 2019-10-29 17:44:57 2 1 2019-10-29 17:49:57 1 12 2019-10-29 17:49:57 2 2 2019-10-29 18:59:57 1 7 2019-10-29 18:59:57 2 3 2019-10-29 19:09:57 1 12 2019-10-29 19:09:57 2 1 2019-10-29 19:24:57 1 11 2019-10-29 19:24:57 2 2 2019-10-29 19:29:57 1 10 2019-10-29 19:29:57 2 2 2019-10-29 19:44:57 1 9 2019-10-29 19:44:57 2 2 2019-10-29 19:59:57 1 12 2019-10-29 19:59:57 2 3 2019-10-29 20:09:57 1 13 2019-10-29 20:09:57 2 4 2019-10-29 20:14:57 1 13 2019-10-29 20:14:57 2 4 2019-10-29 20:54:57 1 13 2019-10-29 20:54:57 2 1 2019-10-29 21:09:57 1 16 2019-10-29 21:09:57 2 1 2019-10-29 21:14:57 1 17 2019-10-29 21:14:57 2 1 2019-10-29 21:24:57 1 16 2019-10-29 21:24:57 2 1 2019-10-29 21:29:57 1 18 2019-10-29 21:29:57 2 2 2019-10-29 21:34:57 1 16 2019-10-29 21:34:57 2 2 2019-10-29 21:39:57 1 17 2019-10-29 21:39:57 2 2 2019-10-29 21:44:57 1 19 2019-10-29 21:44:57 2 2 2019-10-29 21:49:58 1 20 2019-10-29 21:49:58 2 2 2019-10-29 21:54:57 1 22 2019-10-29 21:54:57 2 2 2019-10-29 21:59:57 1 21 2019-10-29 21:59:57 2 2 2019-10-29 22:04:57 1 19 2019-10-29 22:04:57 2 2 2019-10-29 22:09:57 1 16 2019-10-29 22:09:57 2 2 2019-10-29 22:14:57 1 17 2019-10-29 22:14:57 2 2 2019-10-29 22:19:57 1 17 2019-10-29 22:19:57 2 2 2019-10-29 22:24:57 1 15 2019-10-29 22:24:57 2 3 2019-10-29 22:29:57 1 14 2019-10-29 22:29:57 2 3 2019-10-29 22:34:57 1 15 2019-10-29 22:34:57 2 4 2019-10-29 22:39:57 1 17 2019-10-29 22:39:57 2 4 2019-10-29 22:44:57 1 17 2019-10-29 22:44:57 2 4 2019-10-29 22:49:57 1 15 2019-10-29 22:49:57 2 4 2019-10-29 22:54:57 1 14 2019-10-29 22:54:57 2 4 2019-10-29 22:59:57 1 12 2019-10-29 22:59:57 2 4 2019-10-29 23:04:57 1 13 2019-10-29 23:04:57 2 5 2019-10-29 23:09:57 1 15 2019-10-29 23:09:57 2 5 2019-10-29 23:14:57 1 15 2019-10-29 23:14:57 2 4 2019-10-29 23:19:57 1 14 2019-10-29 23:19:57 2 4 2019-10-29 23:24:57 1 15 2019-10-29 23:24:57 2 4 2019-10-28 20:49:57 1 15 2019-10-28 21:04:57 1 19 2019-10-28 21:09:57 1 18 2019-10-28 21:14:57 1 15 2019-10-28 21:44:57 1 16 2019-10-28 21:44:57 2 2 2019-10-28 21:49:57 1 19 2019-10-28 21:49:57 2 1 2019-10-28 22:04:57 1 15 2019-10-28 22:04:57 2 2 2019-10-28 22:09:57 1 17 2019-10-28 22:09:57 2 1 2019-10-28 22:19:57 1 13 2019-10-28 22:19:57 2 1 2019-10-28 22:39:57 1 14 2019-10-28 22:39:57 2 2 2019-10-28 23:14:57 1 14 2019-10-28 23:14:57 2 1 2019-10-28 23:29:57 1 15 2019-10-28 23:34:57 1 18 2019-10-28 23:34:57 2 1 2019-10-28 23:39:57 1 15 2019-10-28 23:39:57 2 3 2019-10-28 23:49:57 1 15 2019-10-28 23:49:57 2 3 2019-10-28 23:54:57 1 17 2019-10-28 23:54:57 2 2 2019-10-29 00:04:57 1 15 2019-10-29 00:04:57 2 3 2019-10-29 00:19:57 1 17 2019-10-29 00:19:57 2 1 2019-10-29 00:24:57 1 17 2019-10-29 00:24:57 2 1 2019-10-29 00:44:57 1 16 2019-10-29 00:44:57 2 1 2019-10-29 01:09:57 1 12 2019-10-29 01:14:57 1 10 2019-10-29 01:24:57 1 11 2019-10-29 01:34:57 1 10 2019-10-29 01:44:57 1 9 2019-10-29 01:54:57 1 10 2019-10-29 01:59:57 1 9 2019-10-29 02:04:57 1 8 2019-10-29 02:14:57 1 7 2019-10-29 02:29:57 1 6 2019-10-29 02:49:57 1 5 2019-10-29 02:54:57 1 5 2019-10-29 02:59:57 1 5 2019-10-29 03:09:57 1 6 2019-10-29 03:19:57 1 6 2019-10-29 03:24:57 1 5 2019-10-29 03:29:57 1 5 2019-10-29 03:34:57 1 6 2019-10-29 04:39:57 1 4 2019-10-29 04:39:57 2 1 2019-10-29 04:54:57 1 5 2019-10-29 04:54:57 2 1 2019-10-29 05:04:57 1 5 2019-10-29 05:04:57 2 1 2019-10-29 05:09:57 1 4 2019-10-29 05:09:57 2 1 2019-10-29 05:14:57 1 5 2019-10-29 05:14:57 2 1 2019-10-29 05:24:57 1 4 2019-10-29 05:24:57 2 1 2019-10-29 05:39:57 1 5 2019-10-29 05:39:57 2 1 2019-10-29 05:44:57 1 4 2019-10-29 05:44:57 2 1 2019-10-29 05:49:57 1 5 2019-10-29 05:49:57 2 1 2019-10-29 06:14:57 1 7 2019-10-29 06:34:57 1 6 2019-10-29 06:49:57 1 5 2019-10-29 06:54:57 1 5 2019-10-29 07:04:57 1 5 2019-10-29 07:19:57 1 7 2019-10-29 07:24:57 1 7 2019-10-29 07:29:57 1 8 2019-10-29 07:29:57 2 1 2019-10-29 07:59:57 1 7 2019-10-29 07:59:57 2 1 2019-10-29 08:09:57 1 7 2019-10-29 08:09:57 2 1 2019-10-29 08:14:57 1 10 2019-10-29 08:14:57 2 1 2019-10-29 08:24:57 1 8 2019-10-29 08:24:57 2 1 2019-10-29 08:29:57 1 7 2019-10-29 08:29:57 2 1 2019-10-29 08:44:57 1 10 2019-10-29 08:44:57 2 1 2019-10-29 09:39:57 1 11 2019-10-29 09:49:57 1 9 2019-10-29 10:14:57 1 12 2019-10-29 10:54:57 1 12 2019-10-29 11:04:57 1 12 2019-10-29 11:04:57 2 1 2019-10-29 11:09:57 1 11 2019-10-29 11:09:57 2 1 2019-10-29 11:29:57 1 11 2019-10-29 11:29:57 2 3 2019-10-29 11:34:57 1 11 2019-10-29 11:34:57 2 3 2019-10-29 11:39:57 1 12 2019-10-29 11:39:57 2 1 2019-10-29 11:54:57 1 13 2019-10-29 11:54:57 2 2 2019-10-29 12:09:57 1 10 2019-10-29 12:09:57 2 1 2019-10-29 12:14:57 1 10 2019-10-29 12:14:57 2 2 2019-10-29 12:29:57 1 7 2019-10-29 12:29:57 2 2 2019-10-29 12:34:57 1 9 2019-10-29 12:34:57 2 2 2019-10-29 12:59:57 1 7 2019-10-29 12:59:57 2 2 2019-10-29 13:14:57 1 9 2019-10-29 13:14:57 2 3 2019-10-29 13:29:57 1 12 2019-10-29 13:29:57 2 2 2019-10-29 13:34:57 1 12 2019-10-29 13:34:57 2 2 2019-10-29 13:39:57 1 11 2019-10-29 13:39:57 2 2 2019-10-29 13:54:57 1 12 2019-10-29 14:09:57 1 13 2019-10-29 14:09:57 2 1 2019-10-29 14:14:57 1 13 2019-10-29 14:14:57 2 1 2019-10-29 14:29:57 1 8 2019-10-29 14:29:57 2 1 2019-10-29 14:49:57 1 9 2019-10-29 14:49:57 2 1 2019-10-29 15:14:57 1 8 2019-10-29 15:14:57 2 1 2019-10-29 15:34:57 1 8 2019-10-29 15:34:57 2 1 2019-10-29 15:39:57 1 7 2019-10-29 15:39:57 2 2 2019-10-29 15:44:57 1 7 2019-10-29 15:44:57 2 2 2019-10-29 15:49:57 1 5 2019-10-29 15:49:57 2 2 2019-10-29 15:54:57 1 6 2019-10-29 15:54:57 2 2 2019-10-29 16:04:57 1 7 2019-10-29 16:04:57 2 2 2019-10-29 16:09:57 1 8 2019-10-29 16:09:57 2 1 2019-10-29 16:34:57 1 11 2019-10-29 16:34:57 2 1 2019-10-29 16:44:57 1 11 2019-10-29 16:44:57 2 2 2019-10-29 16:54:57 1 9 2019-10-29 16:54:57 2 2 2019-10-29 17:14:57 1 8 2019-10-29 17:14:57 2 3 2019-10-29 17:34:57 1 13 2019-10-29 17:34:57 2 1 2019-10-29 17:39:57 1 12 2019-10-29 17:39:57 2 1 2019-10-29 18:09:57 1 12 2019-10-29 18:09:57 2 3 2019-10-29 18:14:57 1 9 2019-10-29 18:14:57 2 2 2019-10-29 18:24:57 1 9 2019-10-29 18:24:57 2 2 2019-10-29 18:34:57 1 10 2019-10-29 18:34:57 2 2 2019-10-29 19:49:57 1 12 2019-10-29 19:49:57 2 3 2019-10-29 19:54:57 1 14 2019-10-29 19:54:57 2 3 2019-10-29 20:19:57 1 15 2019-10-29 20:19:57 2 3 2019-10-29 20:24:57 1 15 2019-10-29 20:24:57 2 3 2019-10-29 20:34:57 1 15 2019-10-29 20:34:57 2 2 2019-10-29 20:39:57 1 16 2019-10-29 20:39:57 2 1 2019-10-29 20:44:57 1 15 2019-10-29 20:44:57 2 1 2019-10-29 23:29:57 1 14 2019-10-29 23:29:57 2 4 2019-10-29 23:54:57 1 13 2019-10-29 23:54:57 2 4 2019-10-30 00:09:57 1 10 2019-10-30 00:09:57 2 2 2019-10-30 00:14:57 1 11 2019-10-30 00:14:57 2 2 2019-10-30 00:29:57 1 12 2019-10-30 00:29:57 2 1 2019-10-30 00:34:57 1 13 2019-10-30 00:34:57 2 1 2019-10-30 00:39:57 1 15 2019-10-30 00:39:57 2 1 2019-10-30 01:04:57 1 12 2019-10-30 01:04:57 2 1 2019-10-30 01:14:57 1 12 2019-10-30 01:14:57 2 1 2019-10-30 01:44:57 1 12 2019-10-30 01:44:57 2 1 2019-10-30 03:14:57 1 12 2019-10-30 03:14:57 2 1 2019-10-30 03:34:57 1 8 2019-10-30 03:34:57 2 1 2019-10-30 03:44:57 1 9 2019-10-30 03:44:57 2 1 2019-10-30 03:49:57 1 9 2019-10-30 03:49:57 2 1 2019-10-30 03:54:57 1 10 2019-10-30 03:54:57 2 1 2019-10-30 03:59:57 1 9 2019-10-30 03:59:57 2 1 2019-10-30 04:04:57 1 9 2019-10-30 04:04:57 2 1 2019-10-30 04:39:57 1 10 2019-10-30 04:39:57 2 1 2019-10-30 04:54:57 1 9 2019-10-30 04:54:57 2 1 2019-10-30 04:59:57 1 10 2019-10-30 04:59:57 2 1 2019-10-30 05:04:57 1 10 2019-10-30 05:04:57 2 1 2019-10-30 05:09:57 1 10 2019-10-30 05:09:57 2 1 2019-10-30 05:34:57 1 11 2019-10-30 05:34:57 2 1 2019-10-30 05:39:57 1 10 2019-10-30 05:39:57 2 1 2019-10-30 05:44:57 1 8 2019-10-30 05:44:57 2 1 2019-10-30 06:04:57 1 8 2019-10-30 06:04:57 2 1 2019-10-30 06:29:57 1 12 2019-10-30 06:34:57 1 11 2019-10-30 06:34:57 2 1 2019-10-30 06:54:57 1 13 2019-10-30 07:09:57 1 14 2019-10-30 07:24:57 1 12 2019-10-30 07:54:57 1 11 2019-10-30 08:04:57 1 12 2019-10-30 08:29:57 1 12 2019-10-30 08:29:57 2 1 2019-10-30 08:44:57 1 12 2019-10-30 08:44:57 2 1 2019-10-30 08:59:57 1 11 2019-10-30 08:59:57 2 1 2019-10-30 09:04:57 1 12 2019-10-30 09:04:57 2 1 2019-10-30 09:44:57 1 11 2019-10-30 09:44:57 2 1 2019-10-30 10:04:57 1 9 2019-10-30 10:04:57 2 1 2019-10-30 10:09:57 1 8 2019-10-30 10:09:57 2 2 2019-10-30 10:39:57 1 10 2019-10-30 10:39:57 2 3 2019-10-30 10:44:57 1 11 2019-10-30 10:44:57 2 3 2019-10-30 10:49:57 1 10 2019-10-30 10:49:57 2 2 2019-10-30 10:59:57 1 14 2019-10-30 10:59:57 2 1 2019-10-30 11:09:57 1 8 2019-10-30 11:19:57 1 10 2019-10-30 11:19:57 2 1 2019-10-30 12:09:57 1 7 2019-10-30 12:09:57 2 3 2019-10-30 12:14:57 1 9 2019-10-30 12:14:57 2 2 2019-10-30 12:24:57 1 12 2019-10-30 12:24:57 2 2 2019-10-30 12:29:57 1 12 2019-10-30 12:29:57 2 2 2019-10-30 12:34:57 1 10 2019-10-30 12:34:57 2 2 2019-10-30 12:39:57 1 10 2019-10-30 12:39:57 2 1 2019-10-30 13:14:57 1 10 2019-10-30 13:14:57 2 2 2019-10-30 13:54:57 1 14 2019-10-30 13:54:57 2 1 2019-10-30 14:09:57 1 12 2019-10-30 14:09:57 2 1 2019-10-30 14:19:57 1 12 2019-10-30 14:19:57 2 1 2019-10-30 14:29:57 1 14 2019-10-30 14:29:57 2 1 2019-10-30 14:44:57 1 11 2019-10-30 15:04:57 1 13 2019-10-30 15:04:57 2 1 2019-10-30 15:09:57 1 10 2019-10-30 15:09:57 2 1 2019-10-30 15:44:57 1 10 2019-10-30 15:44:57 2 2 2019-10-30 15:59:57 1 14 2019-10-30 16:04:57 1 12 2019-10-30 16:09:57 1 12 2019-10-30 16:29:57 1 11 2019-10-30 16:39:57 1 13 2019-10-30 16:39:57 2 1 2019-10-30 17:04:57 1 19 2019-10-30 17:04:57 2 1 2019-10-30 17:14:57 1 13 2019-10-30 17:14:57 2 1 2019-10-30 17:39:57 1 13 2019-10-30 17:44:57 1 13 2019-10-30 17:49:57 1 15 2019-10-30 17:49:57 2 1 2019-10-30 18:09:57 1 13 2019-10-30 18:39:57 1 17 2019-10-30 18:39:57 2 1 2019-10-30 19:14:57 1 15 2019-10-30 19:14:57 2 1 2019-10-30 19:29:57 1 14 2019-10-30 19:39:57 1 14 2019-10-30 20:14:57 1 14 2019-10-30 20:19:57 1 13 2019-10-30 20:34:57 1 11 2019-10-30 20:34:57 2 1 2019-10-30 20:39:57 1 14 2019-10-30 20:39:57 2 1 2019-10-30 20:44:57 1 11 2019-10-30 20:44:57 2 1 2019-10-30 20:49:57 1 11 2019-10-30 20:49:57 2 1 2019-10-30 21:04:57 1 15 2019-10-30 21:09:57 1 15 2019-10-30 21:09:57 2 1 2019-10-30 21:34:57 1 14 2019-10-30 22:29:57 1 15 2019-10-30 22:29:57 2 1 2019-10-30 22:44:57 1 16 2019-10-30 22:44:57 2 1 2019-10-30 22:49:57 1 19 2019-10-30 22:49:57 2 1 2019-10-30 22:59:57 1 20 2019-10-30 22:59:57 2 2 2019-10-30 23:29:58 1 15 2019-10-30 23:34:57 1 12 2019-10-30 23:39:57 1 9 2019-10-30 23:49:57 1 11 2019-10-31 00:04:57 1 14 2019-10-31 00:04:57 2 1 2019-10-31 00:19:57 1 10 2019-10-31 00:19:57 2 1 2019-10-31 00:24:57 1 10 2019-10-31 00:24:57 2 1 2019-10-31 00:34:57 1 9 2019-10-31 00:39:57 1 9 2019-10-31 00:44:57 1 9 2019-10-31 00:44:57 2 1 2019-10-31 00:49:57 1 9 2019-10-31 00:49:57 2 1 2019-10-31 00:54:57 1 9 2019-10-31 00:54:57 2 1 2019-10-31 00:59:57 1 9 2019-10-31 00:59:57 2 1 2019-10-31 01:09:57 1 8 2019-10-31 01:09:57 2 1 2019-10-31 01:24:57 1 8 2019-10-31 01:24:57 2 1 2019-10-31 01:34:57 1 7 2019-10-31 01:39:57 1 7 2019-10-31 01:44:57 1 7 2019-10-31 01:49:57 1 7 2019-10-29 23:34:57 1 16 2019-10-29 23:34:57 2 4 2019-10-29 23:39:58 1 14 2019-10-29 23:39:58 2 5 2019-10-29 23:44:57 1 11 2019-10-29 23:44:57 2 5 2019-10-29 23:49:57 1 11 2019-10-29 23:49:57 2 4 2019-10-29 23:59:57 1 10 2019-10-29 23:59:57 2 3 2019-10-30 00:04:57 1 11 2019-10-30 00:04:57 2 2 2019-10-30 00:19:57 1 11 2019-10-30 00:19:57 2 2 2019-10-30 00:24:57 1 11 2019-10-30 00:24:57 2 1 2019-10-30 00:44:57 1 13 2019-10-30 00:44:57 2 1 2019-10-30 00:54:57 1 12 2019-10-30 00:54:57 2 1 2019-10-30 00:59:57 1 12 2019-10-30 00:59:57 2 1 2019-10-30 01:34:57 1 12 2019-10-30 01:34:57 2 1 2019-10-30 01:39:57 1 12 2019-10-30 01:39:57 2 1 2019-10-30 01:49:57 1 12 2019-10-30 01:49:57 2 1 2019-10-30 02:04:57 1 11 2019-10-30 02:04:57 2 1 2019-10-30 02:14:57 1 10 2019-10-30 02:14:57 2 2 2019-10-30 02:19:57 1 10 2019-10-30 02:19:57 2 2 2019-10-30 02:29:57 1 10 2019-10-30 02:29:57 2 2 2019-10-30 02:39:57 1 12 2019-10-30 02:39:57 2 2 2019-10-30 02:54:57 1 9 2019-10-30 02:54:57 2 3 2019-10-30 02:59:57 1 11 2019-10-30 02:59:57 2 2 2019-10-30 03:29:57 1 8 2019-10-30 03:29:57 2 1 2019-10-30 03:39:57 1 9 2019-10-30 03:39:57 2 1 2019-10-30 04:09:57 1 10 2019-10-30 04:09:57 2 1 2019-10-30 04:34:57 1 10 2019-10-30 04:34:57 2 1 2019-10-30 05:24:57 1 12 2019-10-30 05:24:57 2 1 2019-10-30 05:29:57 1 10 2019-10-30 05:29:57 2 1 2019-10-30 06:09:57 1 9 2019-10-30 06:09:57 2 1 2019-10-30 06:44:57 1 12 2019-10-30 06:49:57 1 13 2019-10-30 07:14:57 1 12 2019-10-30 07:44:57 1 12 2019-10-30 07:49:57 1 13 2019-10-30 08:09:57 1 11 2019-10-30 08:19:57 1 12 2019-10-30 08:19:57 2 1 2019-10-30 08:24:57 1 11 2019-10-30 08:24:57 2 1 2019-10-30 08:34:57 1 11 2019-10-30 08:34:57 2 1 2019-10-30 08:39:57 1 12 2019-10-30 08:39:57 2 1 2019-10-30 09:09:57 1 12 2019-10-30 09:09:57 2 1 2019-10-30 09:24:57 1 12 2019-10-30 09:24:57 2 1 2019-10-30 09:34:57 1 11 2019-10-30 09:34:57 2 1 2019-10-30 09:39:57 1 10 2019-10-30 09:39:57 2 1 2019-10-30 09:49:57 1 12 2019-10-30 09:49:57 2 1 2019-10-30 09:54:57 1 11 2019-10-30 09:54:57 2 1 2019-10-30 10:14:58 1 6 2019-10-30 10:14:58 2 2 2019-10-30 10:24:57 1 8 2019-10-30 10:24:57 2 3 2019-10-30 10:54:57 1 9 2019-10-30 10:54:57 2 2 2019-10-30 11:04:57 1 9 2019-10-30 11:24:57 1 10 2019-10-30 11:24:57 2 1 2019-10-30 11:39:57 1 8 2019-10-30 11:39:57 2 1 2019-10-30 11:44:57 1 10 2019-10-30 11:44:57 2 1 2019-10-30 11:59:57 1 12 2019-10-30 12:19:57 1 9 2019-10-30 12:19:57 2 2 2019-10-30 12:44:57 1 11 2019-10-30 12:44:57 2 2 2019-10-30 12:54:57 1 9 2019-10-30 12:54:57 2 2 2019-10-30 12:59:57 1 11 2019-10-30 12:59:57 2 2 2019-10-30 13:04:57 1 9 2019-10-30 13:04:57 2 2 2019-10-30 13:29:57 1 11 2019-10-30 13:29:57 2 1 2019-10-30 13:49:57 1 13 2019-10-30 13:49:57 2 1 2019-10-30 13:59:57 1 12 2019-10-30 13:59:57 2 1 2019-10-30 14:04:57 1 11 2019-10-30 14:04:57 2 1 2019-10-30 14:24:57 1 11 2019-10-30 14:24:57 2 1 2019-10-30 14:39:57 1 15 2019-10-30 15:24:57 1 10 2019-10-30 15:24:57 2 2 2019-10-30 15:34:57 1 12 2019-10-30 15:34:57 2 2 2019-10-30 15:39:57 1 12 2019-10-30 15:39:57 2 2 2019-10-30 15:49:57 1 12 2019-10-30 15:49:57 2 1 2019-10-30 15:54:57 1 13 2019-10-30 16:24:57 1 12 2019-10-30 16:49:57 1 15 2019-10-30 16:49:57 2 1 2019-10-30 16:59:57 1 19 2019-10-30 16:59:57 2 1 2019-10-30 17:19:57 1 15 2019-10-30 17:19:57 2 1 2019-10-30 18:04:57 1 10 2019-10-30 18:14:57 1 14 2019-10-30 18:19:57 1 12 2019-10-30 18:24:57 1 13 2019-10-30 18:34:57 1 16 2019-10-30 18:34:57 2 2 2019-10-30 18:49:57 1 17 2019-10-30 18:49:57 2 1 2019-10-30 19:04:57 1 16 2019-10-30 19:04:57 2 1 2019-10-30 19:09:57 1 14 2019-10-30 19:09:57 2 1 2019-10-30 19:44:57 1 15 2019-10-30 19:49:57 1 15 2019-10-30 19:49:57 2 1 2019-10-30 19:54:57 1 15 2019-10-30 19:54:57 2 1 2019-10-30 19:59:57 1 15 2019-10-30 19:59:57 2 1 2019-10-30 20:09:57 1 15 2019-10-30 20:24:57 1 12 2019-10-30 20:54:57 1 12 2019-10-30 20:59:57 1 14 2019-10-30 21:59:57 1 14 2019-10-30 21:59:57 2 1 2019-10-30 22:04:57 1 15 2019-10-30 22:04:57 2 1 2019-10-30 22:24:57 1 14 2019-10-30 22:24:57 2 2 2019-10-30 22:34:57 1 14 2019-10-30 22:34:57 2 1 2019-10-30 22:39:57 1 17 2019-10-30 22:39:57 2 1 2019-10-30 22:54:57 1 20 2019-10-30 22:54:57 2 1 2019-10-30 23:04:57 1 17 2019-10-30 23:04:57 2 2 2019-10-30 23:14:57 1 12 2019-10-30 23:14:57 2 1 2019-10-30 23:24:57 1 15 2019-10-30 23:24:57 2 2 2019-10-30 23:44:57 1 8 2019-10-31 00:09:57 1 12 2019-10-31 00:09:57 2 1 2019-10-31 00:29:57 1 10 2019-10-31 01:04:57 1 9 2019-10-31 01:04:57 2 1 2019-10-31 01:14:57 1 8 2019-10-31 01:14:57 2 1 2019-10-31 01:19:57 1 8 2019-10-31 01:19:57 2 1 2019-10-31 01:29:57 1 6 2019-10-30 00:49:57 1 12 2019-10-30 00:49:57 2 1 2019-10-30 01:09:57 1 12 2019-10-30 01:09:57 2 1 2019-10-30 01:19:57 1 12 2019-10-30 01:19:57 2 1 2019-10-30 01:24:57 1 11 2019-10-30 01:24:57 2 1 2019-10-30 01:29:57 1 12 2019-10-30 01:29:57 2 1 2019-10-30 01:54:57 1 11 2019-10-30 01:54:57 2 1 2019-10-30 01:59:57 1 12 2019-10-30 01:59:57 2 1 2019-10-30 02:09:57 1 12 2019-10-30 02:09:57 2 1 2019-10-30 02:24:57 1 9 2019-10-30 02:24:57 2 2 2019-10-30 02:34:57 1 9 2019-10-30 02:34:57 2 2 2019-10-30 02:44:57 1 10 2019-10-30 02:44:57 2 2 2019-10-30 02:49:57 1 10 2019-10-30 02:49:57 2 2 2019-10-30 03:04:57 1 11 2019-10-30 03:04:57 2 2 2019-10-30 03:09:57 1 12 2019-10-30 03:09:57 2 2 2019-10-30 03:19:57 1 9 2019-10-30 03:19:57 2 1 2019-10-30 03:24:57 1 10 2019-10-30 03:24:57 2 1 2019-10-30 04:14:57 1 10 2019-10-30 04:14:57 2 1 2019-10-30 04:19:57 1 11 2019-10-30 04:19:57 2 1 2019-10-30 04:24:57 1 10 2019-10-30 04:24:57 2 2 2019-10-30 04:29:57 1 10 2019-10-30 04:29:57 2 2 2019-10-30 04:44:57 1 10 2019-10-30 04:44:57 2 1 2019-10-30 04:49:58 1 11 2019-10-30 04:49:58 2 1 2019-10-30 05:14:57 1 10 2019-10-30 05:14:57 2 1 2019-10-30 05:19:57 1 11 2019-10-30 05:19:57 2 1 2019-10-30 05:49:57 1 7 2019-10-30 05:49:57 2 1 2019-10-30 05:54:57 1 10 2019-10-30 05:54:57 2 1 2019-10-30 05:59:57 1 8 2019-10-30 05:59:57 2 1 2019-10-30 06:14:57 1 10 2019-10-30 06:14:57 2 1 2019-10-30 06:19:57 1 13 2019-10-30 06:19:57 2 1 2019-10-30 06:24:57 1 13 2019-10-30 06:24:57 2 1 2019-10-30 06:39:57 1 11 2019-10-30 06:39:57 2 1 2019-10-30 06:59:57 1 14 2019-10-30 07:04:57 1 12 2019-10-30 07:19:57 1 11 2019-10-30 07:29:57 1 12 2019-10-30 07:34:57 1 12 2019-10-30 07:39:57 1 12 2019-10-30 07:59:57 1 13 2019-10-30 08:14:57 1 13 2019-10-30 08:49:57 1 12 2019-10-30 08:49:57 2 1 2019-10-30 08:54:57 1 12 2019-10-30 08:54:57 2 1 2019-10-30 09:14:57 1 12 2019-10-30 09:14:57 2 1 2019-10-30 09:19:57 1 14 2019-10-30 09:19:57 2 1 2019-10-30 09:29:57 1 11 2019-10-30 09:29:57 2 1 2019-10-30 09:59:57 1 10 2019-10-30 09:59:57 2 1 2019-10-30 10:19:57 1 7 2019-10-30 10:19:57 2 3 2019-10-30 10:29:57 1 9 2019-10-30 10:29:57 2 3 2019-10-30 10:34:57 1 10 2019-10-30 10:34:57 2 3 2019-10-30 11:14:57 1 10 2019-10-30 11:29:57 1 12 2019-10-30 11:34:57 1 9 2019-10-30 11:49:57 1 10 2019-10-30 11:49:57 2 1 2019-10-30 11:54:57 1 9 2019-10-30 12:04:57 1 10 2019-10-30 12:04:57 2 1 2019-10-30 12:49:57 1 9 2019-10-30 12:49:57 2 2 2019-10-30 13:09:57 1 10 2019-10-30 13:09:57 2 2 2019-10-30 13:19:57 1 11 2019-10-30 13:19:57 2 2 2019-10-30 13:24:57 1 10 2019-10-30 13:24:57 2 2 2019-10-30 13:34:57 1 11 2019-10-30 13:34:57 2 1 2019-10-30 13:39:57 1 10 2019-10-30 13:39:57 2 1 2019-10-30 13:44:57 1 11 2019-10-30 13:44:57 2 1 2019-10-30 14:14:57 1 11 2019-10-30 14:14:57 2 1 2019-10-30 14:34:57 1 13 2019-10-30 14:34:57 2 2 2019-10-30 14:49:57 1 11 2019-10-30 14:54:57 1 13 2019-10-30 14:54:57 2 1 2019-10-30 14:59:57 1 12 2019-10-30 14:59:57 2 1 2019-10-30 15:14:57 1 11 2019-10-30 15:14:57 2 1 2019-10-30 15:19:57 1 12 2019-10-30 15:19:57 2 1 2019-10-30 15:29:57 1 13 2019-10-30 15:29:57 2 2 2019-10-30 16:14:57 1 13 2019-10-30 16:19:57 1 11 2019-10-30 16:34:57 1 12 2019-10-30 16:44:57 1 16 2019-10-30 16:44:57 2 1 2019-10-30 16:54:57 1 13 2019-10-30 16:54:57 2 1 2019-10-30 17:09:57 1 16 2019-10-30 17:09:57 2 1 2019-10-30 17:24:57 1 13 2019-10-30 17:24:57 2 1 2019-10-30 17:29:57 1 14 2019-10-30 17:29:57 2 1 2019-10-30 17:34:57 1 12 2019-10-30 17:34:57 2 1 2019-10-30 17:54:57 1 15 2019-10-30 17:54:57 2 1 2019-10-30 17:59:57 1 11 2019-10-30 18:29:57 1 16 2019-10-30 18:44:57 1 17 2019-10-30 18:44:57 2 1 2019-10-30 18:54:57 1 15 2019-10-30 18:54:57 2 1 2019-10-30 18:59:57 1 14 2019-10-30 18:59:57 2 1 2019-10-30 19:19:57 1 15 2019-10-30 19:19:57 2 1 2019-10-30 19:24:57 1 15 2019-10-30 19:34:57 1 14 2019-10-30 20:04:57 1 14 2019-10-30 20:04:57 2 1 2019-10-30 20:29:57 1 10 2019-10-30 20:29:57 2 1 2019-10-30 21:14:57 1 15 2019-10-30 21:14:57 2 1 2019-10-30 21:19:57 1 16 2019-10-30 21:19:57 2 1 2019-10-30 21:24:57 1 16 2019-10-30 21:24:57 2 1 2019-10-30 21:29:57 1 14 2019-10-30 21:39:57 1 15 2019-10-30 21:44:57 1 14 2019-10-30 21:49:57 1 13 2019-10-30 21:54:57 1 14 2019-10-30 21:54:57 2 1 2019-10-30 22:09:57 1 17 2019-10-30 22:09:57 2 1 2019-10-30 22:14:57 1 18 2019-10-30 22:14:57 2 1 2019-10-30 22:19:57 1 16 2019-10-30 22:19:57 2 2 2019-10-30 23:09:57 1 15 2019-10-30 23:09:57 2 2 2019-10-30 23:19:57 1 15 2019-10-30 23:19:57 2 2 2019-10-30 23:54:57 1 12 2019-10-30 23:59:57 1 13 2019-10-30 23:59:57 2 1 2019-10-31 00:14:57 1 11 2019-10-31 00:14:57 2 1 2019-10-31 01:54:57 1 7 2019-10-31 02:34:57 1 6 2019-10-31 02:34:57 2 1 2019-10-31 02:39:57 1 6 2019-10-31 02:39:57 2 1 2019-10-31 02:44:57 1 6 2019-10-31 02:49:57 1 6 2019-10-31 03:04:57 1 6 2019-10-31 03:09:57 1 6 2019-10-31 03:19:57 1 6 2019-10-31 03:29:57 1 5 2019-10-31 03:34:57 1 5 2019-10-31 03:39:57 1 5 2019-10-31 03:49:57 1 6 2019-10-31 03:54:57 1 5 2019-10-31 04:04:57 1 5 2019-10-31 04:09:57 1 5 2019-10-31 04:49:57 1 5 2019-10-31 05:14:57 1 6 2019-10-31 05:19:57 1 6 2019-10-31 05:24:57 1 5 2019-10-31 05:29:57 1 5 2019-10-31 05:39:57 1 5 2019-10-31 05:49:57 1 6 2019-10-31 06:14:57 1 6 2019-10-31 07:14:57 1 5 2019-10-31 08:09:57 1 5 2019-10-31 09:04:57 1 8 2019-10-31 09:09:57 1 9 2019-10-31 09:19:57 1 9 2019-10-31 09:44:57 1 9 2019-10-31 09:59:57 1 9 2019-10-31 10:14:57 1 11 2019-10-31 10:19:57 1 14 2019-10-31 10:49:57 1 10 2019-10-31 10:59:57 1 13 2019-10-31 11:04:57 1 12 2019-10-31 11:19:57 1 14 2019-10-31 11:24:57 1 13 2019-10-31 11:29:57 1 13 2019-10-31 11:44:57 1 17 2019-10-31 11:44:57 2 1 2019-10-31 12:04:57 1 18 2019-10-31 12:04:57 2 2 2019-10-31 12:09:57 1 16 2019-10-31 12:09:57 2 1 2019-10-31 12:24:57 1 16 2019-10-31 12:24:57 2 1 2019-10-31 12:29:57 1 16 2019-10-31 12:29:57 2 1 2019-10-31 12:34:57 1 16 2019-10-31 12:34:57 2 1 2019-10-31 12:39:57 1 12 2019-10-31 12:39:57 2 1 2019-10-31 12:44:57 1 11 2019-10-31 12:44:57 2 1 2019-10-31 13:04:57 1 10 2019-10-31 13:04:57 2 2 2019-10-31 13:09:57 1 13 2019-10-31 13:09:57 2 2 2019-10-31 13:29:57 1 16 2019-10-31 13:29:57 2 2 2019-10-31 13:49:57 1 14 2019-10-31 13:49:57 2 2 2019-10-31 13:59:57 1 14 2019-10-31 13:59:57 2 2 2019-10-31 14:14:57 1 11 2019-10-31 14:14:57 2 1 2019-10-31 14:19:57 1 11 2019-10-31 14:19:57 2 1 2019-10-31 14:24:57 1 9 2019-10-31 14:24:57 2 1 2019-10-31 15:14:57 1 12 2019-10-31 15:19:57 1 11 2019-10-31 15:24:57 1 12 2019-10-31 15:24:57 2 1 2019-10-31 15:29:57 1 14 2019-10-31 15:29:57 2 1 2019-10-31 15:34:57 1 11 2019-10-31 15:34:57 2 1 2019-10-31 15:44:57 1 13 2019-10-31 15:44:57 2 2 2019-10-31 16:04:57 1 12 2019-10-31 16:04:57 2 2 2019-10-31 16:54:57 1 15 2019-10-31 16:54:57 2 1 2019-10-31 17:09:57 1 14 2019-10-31 17:09:57 2 1 2019-10-31 17:14:57 1 13 2019-10-31 17:14:57 2 1 2019-10-31 17:29:57 1 12 2019-10-31 17:29:57 2 2 2019-10-31 17:34:57 1 11 2019-10-31 17:34:57 2 1 2019-10-31 17:59:57 1 20 2019-10-31 17:59:57 2 2 2019-10-31 18:04:57 1 15 2019-10-31 18:04:57 2 2 2019-10-31 18:09:57 1 14 2019-10-31 18:09:57 2 3 2019-10-31 18:29:57 1 13 2019-10-31 18:29:57 2 2 2019-10-31 19:44:57 1 14 2019-10-31 19:44:57 2 1 2019-10-31 19:49:57 1 13 2019-10-31 19:49:57 2 1 2019-10-31 20:04:57 1 19 2019-10-31 20:04:57 2 2 2019-10-31 20:09:57 1 14 2019-10-31 20:09:57 2 2 2019-10-31 20:19:57 1 14 2019-10-31 20:19:57 2 3 2019-10-31 20:29:57 1 15 2019-10-31 20:29:57 2 3 2019-10-31 20:59:57 1 12 2019-10-31 20:59:57 2 2 2019-10-31 21:09:57 1 14 2019-10-31 21:09:57 2 3 2019-10-31 21:14:57 1 14 2019-10-31 21:14:57 2 2 2019-10-31 21:44:57 1 11 2019-10-31 21:44:57 2 3 2019-10-31 21:49:57 1 13 2019-10-31 21:49:57 2 2 2019-10-31 21:59:57 1 15 2019-10-31 21:59:57 2 2 2019-10-31 22:24:57 1 17 2019-10-31 22:24:57 2 3 2019-10-31 22:39:57 1 16 2019-10-31 22:39:57 2 2 2019-10-31 22:49:57 1 17 2019-10-31 22:49:57 2 2 2019-10-31 22:54:57 1 16 2019-10-31 22:54:57 2 1 2019-10-31 23:04:57 1 19 2019-10-31 23:04:57 2 1 2019-10-31 23:14:57 1 21 2019-10-31 23:14:57 2 1 2019-10-31 23:44:57 1 18 2019-10-31 23:44:57 2 1 2019-11-01 00:09:57 1 14 2019-11-01 00:09:57 2 2 2019-11-01 00:14:57 1 15 2019-11-01 00:14:57 2 2 2019-11-01 00:24:57 1 14 2019-11-01 00:24:57 2 2 2019-11-01 00:34:57 1 14 2019-11-01 00:34:57 2 2 2019-11-01 00:44:57 1 12 2019-11-01 00:44:57 2 2 2019-11-01 00:49:57 1 13 2019-11-01 00:49:57 2 2 2019-11-01 01:39:57 1 7 2019-11-01 01:39:57 2 2 2019-11-01 02:19:57 1 8 2019-11-01 02:19:57 2 2 2019-11-01 02:24:57 1 8 2019-11-01 02:24:57 2 2 2019-11-01 02:44:57 1 7 2019-11-01 02:44:57 2 1 2019-11-01 03:14:57 1 7 2019-11-01 03:14:57 2 1 2019-11-01 03:19:57 1 7 2019-11-01 03:19:57 2 1 2019-11-01 03:34:57 1 8 2019-11-01 03:34:57 2 1 2019-11-01 03:39:57 1 7 2019-11-01 03:39:57 2 1 2019-11-01 04:04:57 1 7 2019-11-01 04:04:57 2 1 2019-11-01 04:09:57 1 7 2019-11-01 04:09:57 2 1 2019-11-01 04:14:57 1 8 2019-11-01 04:14:57 2 1 2019-11-01 04:24:57 1 8 2019-11-01 04:24:57 2 1 2019-11-01 04:29:57 1 8 2019-11-01 04:29:57 2 1 2019-11-01 04:39:57 1 8 2019-11-01 04:39:57 2 1 2019-11-01 04:54:57 1 8 2019-11-01 04:54:57 2 1 2019-11-01 05:04:57 1 7 2019-11-01 05:04:57 2 1 2019-11-01 05:09:57 1 7 2019-10-31 01:59:57 1 7 2019-10-31 02:09:57 1 8 2019-10-31 02:14:57 1 7 2019-10-31 02:24:57 1 6 2019-10-31 02:54:57 1 6 2019-10-31 02:59:57 1 6 2019-10-31 03:24:57 1 5 2019-10-31 04:14:57 1 5 2019-10-31 04:19:57 1 5 2019-10-31 04:34:57 1 5 2019-10-31 04:44:57 1 5 2019-10-31 04:59:57 1 6 2019-10-31 05:09:57 1 6 2019-10-31 05:54:57 1 6 2019-10-31 05:59:57 1 6 2019-10-31 06:04:57 1 7 2019-10-31 06:09:57 1 6 2019-10-31 06:19:57 1 6 2019-10-31 06:29:57 1 8 2019-10-31 06:34:57 1 7 2019-10-31 06:39:57 1 7 2019-10-31 06:44:57 1 7 2019-10-31 06:54:57 1 7 2019-10-31 07:09:57 1 5 2019-10-31 07:19:57 1 6 2019-10-31 07:24:57 1 7 2019-10-31 07:29:57 1 7 2019-10-31 07:39:57 1 9 2019-10-31 08:19:57 1 6 2019-10-31 08:29:57 1 9 2019-10-31 08:34:57 1 8 2019-10-31 08:39:57 1 10 2019-10-31 08:44:57 1 11 2019-10-31 08:59:57 1 9 2019-10-31 09:14:57 1 8 2019-10-31 09:24:57 1 9 2019-10-31 09:34:57 1 11 2019-10-31 09:49:57 1 7 2019-10-31 09:54:57 1 11 2019-10-31 10:29:57 1 14 2019-10-31 10:34:57 1 12 2019-10-31 10:39:57 1 12 2019-10-31 11:09:57 1 13 2019-10-31 11:39:57 1 18 2019-10-31 11:54:57 1 15 2019-10-31 11:54:57 2 2 2019-10-31 12:14:57 1 15 2019-10-31 12:14:57 2 1 2019-10-31 12:19:57 1 17 2019-10-31 12:19:57 2 1 2019-10-31 12:54:57 1 11 2019-10-31 12:54:57 2 3 2019-10-31 13:14:57 1 14 2019-10-31 13:14:57 2 2 2019-10-31 13:24:57 1 17 2019-10-31 13:24:57 2 2 2019-10-31 13:39:57 1 16 2019-10-31 13:39:57 2 2 2019-10-31 13:44:57 1 14 2019-10-31 13:44:57 2 2 2019-10-31 13:54:57 1 15 2019-10-31 13:54:57 2 2 2019-10-31 14:04:57 1 11 2019-10-31 14:04:57 2 1 2019-10-31 14:49:57 1 13 2019-10-31 14:49:57 2 1 2019-10-31 15:09:57 1 11 2019-10-31 15:39:57 1 13 2019-10-31 15:39:57 2 1 2019-10-31 15:49:57 1 13 2019-10-31 15:49:57 2 2 2019-10-31 15:54:57 1 11 2019-10-31 15:54:57 2 2 2019-10-31 15:59:57 1 11 2019-10-31 15:59:57 2 2 2019-10-31 16:09:57 1 16 2019-10-31 16:09:57 2 2 2019-10-31 16:14:57 1 12 2019-10-31 16:14:57 2 2 2019-10-31 16:24:57 1 13 2019-10-31 16:24:57 2 1 2019-10-31 16:29:57 1 14 2019-10-31 16:29:57 2 1 2019-10-31 16:34:57 1 13 2019-10-31 16:34:57 2 1 2019-10-31 16:39:57 1 12 2019-10-31 16:39:57 2 1 2019-10-31 16:59:57 1 14 2019-10-31 16:59:57 2 1 2019-10-31 17:49:57 1 13 2019-10-31 17:49:57 2 2 2019-10-31 17:54:57 1 16 2019-10-31 17:54:57 2 2 2019-10-31 18:19:57 1 11 2019-10-31 18:19:57 2 2 2019-10-31 18:24:57 1 12 2019-10-31 18:24:57 2 2 2019-10-31 18:34:57 1 12 2019-10-31 18:34:57 2 1 2019-10-31 18:44:57 1 11 2019-10-31 18:54:57 1 9 2019-10-31 19:04:57 1 14 2019-10-31 19:04:57 2 1 2019-10-31 19:24:57 1 13 2019-10-31 19:24:57 2 1 2019-10-31 19:34:57 1 13 2019-10-31 19:34:57 2 1 2019-10-31 19:59:57 1 13 2019-10-31 19:59:57 2 2 2019-10-31 20:14:57 1 14 2019-10-31 20:14:57 2 3 2019-10-31 20:39:57 1 16 2019-10-31 20:39:57 2 3 2019-10-31 21:19:57 1 15 2019-10-31 21:19:57 2 2 2019-10-31 21:54:57 1 13 2019-10-31 21:54:57 2 2 2019-10-31 22:14:57 1 13 2019-10-31 22:14:57 2 3 2019-10-31 22:44:57 1 17 2019-10-31 22:44:57 2 2 2019-10-31 22:59:57 1 18 2019-10-31 22:59:57 2 1 2019-10-31 23:29:57 1 18 2019-10-31 23:29:57 2 1 2019-10-31 23:39:57 1 19 2019-10-31 23:39:57 2 1 2019-10-31 23:49:57 1 18 2019-10-31 23:49:57 2 1 2019-10-31 23:54:57 1 15 2019-10-31 23:54:57 2 2 2019-11-01 00:04:57 1 13 2019-11-01 00:04:57 2 1 2019-11-01 00:19:57 1 15 2019-11-01 00:19:57 2 2 2019-11-01 00:59:57 1 13 2019-11-01 00:59:57 2 2 2019-11-01 01:09:57 1 11 2019-11-01 01:09:57 2 2 2019-11-01 01:19:57 1 10 2019-11-01 01:19:57 2 2 2019-11-01 01:49:57 1 7 2019-11-01 01:49:57 2 2 2019-11-01 02:09:57 1 8 2019-11-01 02:09:57 2 2 2019-11-01 02:14:57 1 8 2019-11-01 02:14:57 2 2 2019-11-01 02:29:58 1 7 2019-11-01 02:29:58 2 2 2019-11-01 02:39:57 1 7 2019-11-01 02:39:57 2 1 2019-11-01 02:49:57 1 7 2019-11-01 02:49:57 2 1 2019-11-01 02:59:57 1 8 2019-11-01 02:59:57 2 1 2019-11-01 03:04:57 1 7 2019-11-01 03:04:57 2 1 2019-11-01 03:09:57 1 7 2019-11-01 03:09:57 2 1 2019-11-01 03:54:57 1 7 2019-11-01 03:54:57 2 1 2019-11-01 03:59:57 1 7 2019-11-01 03:59:57 2 1 2019-11-01 04:19:57 1 9 2019-11-01 04:19:57 2 1 2019-11-01 04:59:57 1 7 2019-11-01 04:59:57 2 1 2019-11-01 05:09:57 2 1 2019-11-01 05:24:57 1 7 2019-11-01 05:24:57 2 1 2019-11-01 05:29:57 1 7 2019-11-01 05:29:57 2 1 2019-11-01 05:34:57 2 1 2019-11-01 05:39:57 1 7 2019-11-01 05:39:57 2 1 2019-11-01 05:44:57 1 7 2019-11-01 05:44:57 2 1 2019-11-01 05:49:57 1 7 2019-11-01 05:49:57 2 1 2019-11-01 05:54:57 1 7 2019-11-01 05:54:57 2 1 2019-11-01 05:59:57 1 7 2019-11-01 05:59:57 2 1 2019-11-01 06:04:57 1 7 2019-11-01 06:04:57 2 1 2019-10-31 02:04:57 1 8 2019-10-31 02:19:57 1 6 2019-10-31 02:29:57 1 6 2019-10-31 02:29:57 2 1 2019-10-31 03:14:57 1 6 2019-10-31 03:44:57 1 5 2019-10-31 03:59:57 1 5 2019-10-31 04:24:57 1 5 2019-10-31 04:29:58 1 5 2019-10-31 04:39:57 1 6 2019-10-31 04:54:57 1 6 2019-10-31 05:04:57 1 6 2019-10-31 05:34:57 1 5 2019-10-31 05:44:57 1 5 2019-10-31 06:24:57 1 8 2019-10-31 06:49:57 1 8 2019-10-31 06:59:57 1 6 2019-10-31 07:04:57 1 6 2019-10-31 07:34:57 1 6 2019-10-31 07:44:57 1 9 2019-10-31 07:49:57 1 8 2019-10-31 07:54:57 1 4 2019-10-31 07:59:57 1 5 2019-10-31 08:04:57 1 5 2019-10-31 08:14:57 1 6 2019-10-31 08:24:57 1 7 2019-10-31 08:49:57 1 8 2019-10-31 08:54:57 1 7 2019-10-31 09:29:57 1 8 2019-10-31 09:39:57 1 10 2019-10-31 10:04:57 1 11 2019-10-31 10:09:57 1 13 2019-10-31 10:24:57 1 13 2019-10-31 10:44:57 1 12 2019-10-31 10:54:57 1 12 2019-10-31 11:14:57 1 12 2019-10-31 11:34:57 1 15 2019-10-31 11:49:57 1 16 2019-10-31 11:49:57 2 1 2019-10-31 11:59:57 1 17 2019-10-31 11:59:57 2 2 2019-10-31 12:49:57 1 11 2019-10-31 12:49:57 2 2 2019-10-31 12:59:57 1 11 2019-10-31 12:59:57 2 2 2019-10-31 13:19:57 1 14 2019-10-31 13:19:57 2 2 2019-10-31 13:34:58 1 17 2019-10-31 13:34:58 2 2 2019-10-31 14:09:57 1 15 2019-10-31 14:09:57 2 1 2019-10-31 14:29:57 1 10 2019-10-31 14:29:57 2 1 2019-10-31 14:34:57 1 9 2019-10-31 14:34:57 2 1 2019-10-31 14:39:57 1 10 2019-10-31 14:39:57 2 1 2019-10-31 14:44:57 1 10 2019-10-31 14:44:57 2 1 2019-10-31 14:54:57 1 11 2019-10-31 14:54:57 2 1 2019-10-31 14:59:57 1 11 2019-10-31 14:59:57 2 1 2019-10-31 15:04:57 1 13 2019-10-31 16:19:57 1 13 2019-10-31 16:19:57 2 1 2019-10-31 16:44:57 1 13 2019-10-31 16:44:57 2 1 2019-10-31 16:49:57 1 14 2019-10-31 16:49:57 2 1 2019-10-31 17:04:57 1 13 2019-10-31 17:04:57 2 1 2019-10-31 17:19:57 1 13 2019-10-31 17:19:57 2 1 2019-10-31 17:24:57 1 14 2019-10-31 17:24:57 2 2 2019-10-31 17:39:57 1 11 2019-10-31 17:39:57 2 1 2019-10-31 17:44:57 1 10 2019-10-31 17:44:57 2 1 2019-10-31 18:14:57 1 15 2019-10-31 18:14:57 2 2 2019-10-31 18:39:57 1 13 2019-10-31 18:39:57 2 1 2019-10-31 18:49:57 1 12 2019-10-31 18:59:57 1 15 2019-10-31 19:09:57 1 14 2019-10-31 19:09:57 2 1 2019-10-31 19:14:57 1 15 2019-10-31 19:14:57 2 2 2019-10-31 19:19:57 1 14 2019-10-31 19:19:57 2 2 2019-10-31 19:29:57 1 12 2019-10-31 19:29:57 2 1 2019-10-31 19:39:57 1 13 2019-10-31 19:39:57 2 1 2019-10-31 19:54:57 1 15 2019-10-31 19:54:57 2 1 2019-10-31 20:24:57 1 15 2019-10-31 20:24:57 2 3 2019-10-31 20:34:57 1 15 2019-10-31 20:34:57 2 3 2019-10-31 20:44:57 1 15 2019-10-31 20:44:57 2 2 2019-10-31 20:49:57 1 14 2019-10-31 20:49:57 2 2 2019-10-31 20:54:57 1 14 2019-10-31 20:54:57 2 2 2019-10-31 21:04:57 1 12 2019-10-31 21:04:57 2 3 2019-10-31 21:24:57 1 14 2019-10-31 21:24:57 2 2 2019-10-31 21:29:57 1 14 2019-10-31 21:29:57 2 3 2019-10-31 21:34:57 1 14 2019-10-31 21:34:57 2 3 2019-10-31 21:39:57 1 15 2019-10-31 21:39:57 2 3 2019-10-31 22:04:57 1 13 2019-10-31 22:04:57 2 3 2019-10-31 22:09:57 1 12 2019-10-31 22:09:57 2 3 2019-10-31 22:19:57 1 15 2019-10-31 22:19:57 2 3 2019-10-31 22:29:57 1 14 2019-10-31 22:29:57 2 3 2019-10-31 22:34:57 1 17 2019-10-31 22:34:57 2 2 2019-10-31 23:09:57 1 18 2019-10-31 23:09:57 2 1 2019-10-31 23:19:57 1 20 2019-10-31 23:19:57 2 1 2019-10-31 23:24:57 1 20 2019-10-31 23:24:57 2 1 2019-10-31 23:34:57 1 17 2019-10-31 23:34:57 2 1 2019-10-31 23:59:57 1 14 2019-10-31 23:59:57 2 2 2019-11-01 00:29:57 1 16 2019-11-01 00:29:57 2 2 2019-11-01 00:39:57 1 14 2019-11-01 00:39:57 2 2 2019-11-01 00:54:57 1 14 2019-11-01 00:54:57 2 2 2019-11-01 01:04:57 1 10 2019-11-01 01:04:57 2 2 2019-11-01 01:14:57 1 10 2019-11-01 01:14:57 2 2 2019-11-01 01:24:57 1 9 2019-11-01 01:24:57 2 2 2019-11-01 01:29:57 1 9 2019-11-01 01:29:57 2 2 2019-11-01 01:34:57 1 9 2019-11-01 01:34:57 2 2 2019-11-01 01:44:57 1 7 2019-11-01 01:44:57 2 2 2019-11-01 01:54:57 1 9 2019-11-01 01:54:57 2 2 2019-11-01 01:59:57 1 7 2019-11-01 01:59:57 2 2 2019-11-01 02:04:57 1 9 2019-11-01 02:04:57 2 2 2019-11-01 02:34:57 1 7 2019-11-01 02:34:57 2 1 2019-11-01 02:54:57 1 8 2019-11-01 02:54:57 2 1 2019-11-01 03:24:57 1 7 2019-11-01 03:24:57 2 1 2019-11-01 03:29:57 1 8 2019-11-01 03:29:57 2 1 2019-11-01 03:44:57 1 7 2019-11-01 03:44:57 2 1 2019-11-01 03:49:57 1 7 2019-11-01 03:49:57 2 1 2019-11-01 04:34:57 1 7 2019-11-01 04:34:57 2 1 2019-11-01 04:44:57 1 8 2019-11-01 04:44:57 2 1 2019-11-01 04:49:57 1 8 2019-11-01 04:49:57 2 1 2019-11-01 05:14:57 1 7 2019-11-01 05:14:57 2 1 2019-11-01 05:19:57 1 7 2019-11-01 05:19:57 2 1 2019-11-01 05:34:57 1 8 2019-11-01 06:09:57 1 7 2019-11-01 06:09:57 2 1 2019-11-01 06:19:57 1 7 2019-11-01 06:19:57 2 1 2019-11-01 06:24:57 1 6 2019-11-01 06:24:57 2 1 2019-11-01 06:44:57 1 6 2019-11-01 06:44:57 2 1 2019-11-01 06:49:57 1 5 2019-11-01 06:49:57 2 1 2019-11-01 06:59:57 1 5 2019-11-01 06:59:57 2 1 2019-11-01 07:09:57 1 6 2019-11-01 07:09:57 2 1 2019-11-01 07:19:57 1 5 2019-11-01 07:19:57 2 1 2019-11-01 07:29:57 1 5 2019-11-01 07:29:57 2 1 2019-11-01 07:34:57 1 5 2019-11-01 07:34:57 2 1 2019-11-01 07:39:57 1 6 2019-11-01 07:39:57 2 1 2019-11-01 07:44:57 1 6 2019-11-01 07:44:57 2 1 2019-11-01 07:49:57 1 5 2019-11-01 07:49:57 2 1 2019-11-01 07:59:57 1 7 2019-11-01 07:59:57 2 1 2019-11-01 08:24:57 1 7 2019-11-01 08:24:57 2 1 2019-11-01 08:34:57 1 7 2019-11-01 08:34:57 2 1 2019-11-01 08:39:57 1 8 2019-11-01 08:39:57 2 1 2019-11-01 09:04:57 1 8 2019-11-01 09:04:57 2 1 2019-11-01 09:19:57 1 8 2019-11-01 09:19:57 2 2 2019-11-01 09:29:57 1 6 2019-11-01 09:29:57 2 2 2019-11-01 09:54:57 1 10 2019-11-01 09:54:57 2 1 2019-11-01 10:04:57 1 10 2019-11-01 10:04:57 2 1 2019-11-01 10:09:57 1 10 2019-11-01 10:09:57 2 1 2019-11-01 10:44:57 1 13 2019-11-01 10:44:57 2 1 2019-11-01 10:54:59 1 15 2019-11-01 10:54:59 2 1 2019-11-01 11:04:57 1 14 2019-11-01 11:04:57 2 2 2019-11-01 11:24:57 1 15 2019-11-01 11:24:57 2 1 2019-11-01 11:39:57 1 14 2019-11-01 11:39:57 2 2 2019-11-01 11:44:57 1 14 2019-11-01 11:44:57 2 2 2019-11-01 11:54:57 1 15 2019-11-01 11:54:57 2 1 2019-11-01 11:59:57 1 16 2019-11-01 11:59:57 2 1 2019-11-01 12:04:57 1 16 2019-11-01 12:04:57 2 1 2019-11-01 12:09:57 1 13 2019-11-01 12:09:57 2 1 2019-11-01 12:14:57 1 14 2019-11-01 12:14:57 2 1 2019-11-01 12:29:57 1 16 2019-11-01 12:44:57 1 16 2019-11-01 12:49:57 1 14 2019-11-01 13:04:57 1 13 2019-11-01 13:04:57 2 1 2019-11-01 13:09:57 1 12 2019-11-01 13:09:57 2 1 2019-11-01 13:24:57 1 12 2019-11-01 13:24:57 2 1 2019-11-01 13:29:57 1 14 2019-11-01 13:29:57 2 1 2019-11-01 13:34:57 1 12 2019-11-01 13:34:57 2 1 2019-11-01 13:49:57 1 12 2019-11-01 13:49:57 2 3 2019-11-01 13:59:57 1 11 2019-11-01 13:59:57 2 3 2019-11-01 14:44:57 1 12 2019-11-01 14:44:57 2 4 2019-11-01 14:49:57 1 10 2019-11-01 14:49:57 2 3 2019-11-01 15:04:57 1 11 2019-11-01 15:04:57 2 2 2019-11-01 15:09:57 1 12 2019-11-01 15:09:57 2 2 2019-11-01 15:14:57 1 12 2019-11-01 15:14:57 2 2 2019-11-01 16:09:57 1 12 2019-11-01 16:09:57 2 3 2019-11-01 16:14:57 1 10 2019-11-01 16:14:57 2 3 2019-11-01 16:19:57 1 12 2019-11-01 16:19:57 2 3 2019-11-01 16:34:57 1 14 2019-11-01 16:34:57 2 3 2019-11-01 16:44:57 1 11 2019-11-01 16:44:57 2 3 2019-11-01 16:54:57 1 9 2019-11-01 16:54:57 2 4 2019-11-01 17:04:57 1 11 2019-11-01 17:04:57 2 2 2019-11-01 17:29:57 1 9 2019-11-01 17:29:57 2 2 2019-11-01 17:34:57 1 10 2019-11-01 17:34:57 2 2 2019-11-01 18:09:57 1 12 2019-11-01 18:09:57 2 2 2019-11-01 18:19:57 1 10 2019-11-01 18:19:57 2 1 2019-11-01 18:29:57 1 12 2019-11-01 18:29:57 2 1 2019-11-01 18:39:57 1 9 2019-11-01 18:39:57 2 1 2019-11-01 18:49:57 1 8 2019-11-01 18:49:57 2 1 2019-11-01 19:34:57 1 6 2019-11-01 19:34:57 2 3 2019-11-01 19:49:57 1 6 2019-11-01 19:49:57 2 1 2019-11-01 20:19:57 1 8 2019-11-01 20:19:57 2 2 2019-11-01 20:24:57 1 9 2019-11-01 20:24:57 2 3 2019-11-01 21:04:57 1 10 2019-11-01 21:04:57 2 2 2019-11-01 21:14:57 1 12 2019-11-01 21:14:57 2 1 2019-11-01 21:34:57 1 12 2019-11-01 21:34:57 2 1 2019-11-01 21:49:57 1 11 2019-11-01 21:49:57 2 1 2019-11-01 22:09:57 1 12 2019-11-01 22:09:57 2 1 2019-11-01 22:39:57 1 13 2019-11-01 22:39:57 2 2 2019-11-01 22:44:57 1 17 2019-11-01 22:44:57 2 1 2019-11-01 23:29:57 1 15 2019-11-01 23:29:57 2 3 2019-11-01 23:34:57 1 14 2019-11-01 23:34:57 2 2 2019-11-01 23:39:57 1 16 2019-11-01 23:39:57 2 2 2019-11-01 23:44:57 1 15 2019-11-01 23:44:57 2 2 2019-11-01 23:54:57 1 14 2019-11-01 23:54:57 2 3 2019-11-02 00:04:57 1 13 2019-11-02 00:04:57 2 4 2019-11-02 00:14:57 1 12 2019-11-02 00:14:57 2 3 2019-11-02 00:19:57 1 14 2019-11-02 00:19:57 2 2 2019-11-02 00:29:57 1 12 2019-11-02 00:29:57 2 2 2019-11-02 00:34:57 1 11 2019-11-02 00:34:57 2 2 2019-11-02 00:44:57 1 10 2019-11-02 00:44:57 2 1 2019-11-02 00:59:57 1 9 2019-11-02 00:59:57 2 1 2019-11-02 01:04:57 1 11 2019-11-02 01:04:57 2 1 2019-11-02 01:09:57 1 9 2019-11-02 01:09:57 2 1 2019-11-02 01:44:57 1 6 2019-11-02 01:44:57 2 1 2019-11-02 02:04:57 1 5 2019-11-02 02:04:57 2 1 2019-11-02 02:59:57 1 4 2019-11-02 02:59:57 2 1 2019-11-02 04:04:57 1 4 2019-11-02 04:04:57 2 1 2019-11-02 04:09:57 1 4 2019-11-02 04:09:57 2 1 2019-11-02 04:19:57 1 5 2019-11-02 04:19:57 2 1 2019-11-01 06:14:57 1 7 2019-11-01 06:14:57 2 1 2019-11-01 06:34:57 1 5 2019-11-01 06:34:57 2 1 2019-11-01 06:39:57 1 7 2019-11-01 06:39:57 2 1 2019-11-01 06:54:57 1 5 2019-11-01 06:54:57 2 1 2019-11-01 07:54:57 1 8 2019-11-01 07:54:57 2 1 2019-11-01 08:14:57 1 6 2019-11-01 08:14:57 2 1 2019-11-01 08:19:57 1 5 2019-11-01 08:19:57 2 1 2019-11-01 08:29:57 1 6 2019-11-01 08:29:57 2 1 2019-11-01 08:44:57 1 5 2019-11-01 08:44:57 2 1 2019-11-01 08:49:57 1 6 2019-11-01 08:49:57 2 1 2019-11-01 08:54:57 1 7 2019-11-01 08:54:57 2 1 2019-11-01 08:59:57 1 8 2019-11-01 08:59:57 2 1 2019-11-01 09:09:57 1 7 2019-11-01 09:09:57 2 1 2019-11-01 09:14:57 1 8 2019-11-01 09:14:57 2 2 2019-11-01 09:24:57 1 8 2019-11-01 09:24:57 2 2 2019-11-01 09:39:57 1 8 2019-11-01 09:39:57 2 2 2019-11-01 09:44:57 1 11 2019-11-01 09:44:57 2 2 2019-11-01 09:49:57 1 8 2019-11-01 09:49:57 2 2 2019-11-01 09:59:57 1 10 2019-11-01 09:59:57 2 1 2019-11-01 10:14:57 1 11 2019-11-01 10:24:57 1 14 2019-11-01 10:24:57 2 1 2019-11-01 10:39:57 1 14 2019-11-01 10:39:57 2 1 2019-11-01 10:49:57 1 15 2019-11-01 10:49:57 2 1 2019-11-01 10:59:57 1 15 2019-11-01 10:59:57 2 1 2019-11-01 11:14:57 1 15 2019-11-01 11:14:57 2 1 2019-11-01 11:19:57 1 14 2019-11-01 11:19:57 2 1 2019-11-01 11:29:57 1 13 2019-11-01 11:29:57 2 1 2019-11-01 11:34:57 1 12 2019-11-01 11:34:57 2 2 2019-11-01 11:49:57 1 15 2019-11-01 11:49:57 2 2 2019-11-01 12:39:57 1 14 2019-11-01 12:54:57 1 13 2019-11-01 13:39:57 1 11 2019-11-01 13:39:57 2 3 2019-11-01 13:44:57 1 12 2019-11-01 13:44:57 2 3 2019-11-01 13:54:57 1 12 2019-11-01 13:54:57 2 3 2019-11-01 14:04:57 1 10 2019-11-01 14:04:57 2 3 2019-11-01 14:14:57 1 11 2019-11-01 14:14:57 2 4 2019-11-01 14:19:57 1 11 2019-11-01 14:19:57 2 4 2019-11-01 14:24:57 1 13 2019-11-01 14:24:57 2 4 2019-11-01 14:29:57 1 10 2019-11-01 14:29:57 2 5 2019-11-01 14:34:57 1 10 2019-11-01 14:34:57 2 4 2019-11-01 14:54:57 1 11 2019-11-01 14:54:57 2 3 2019-11-01 15:19:57 1 12 2019-11-01 15:19:57 2 2 2019-11-01 15:24:57 1 12 2019-11-01 15:24:57 2 1 2019-11-01 15:29:57 1 11 2019-11-01 15:29:57 2 1 2019-11-01 15:49:57 1 14 2019-11-01 15:49:57 2 1 2019-11-01 15:59:57 1 11 2019-11-01 15:59:57 2 2 2019-11-01 16:04:57 1 12 2019-11-01 16:04:57 2 3 2019-11-01 16:39:57 1 13 2019-11-01 16:39:57 2 3 2019-11-01 17:14:57 1 10 2019-11-01 17:14:57 2 2 2019-11-01 17:24:57 1 9 2019-11-01 17:24:57 2 2 2019-11-01 17:49:57 1 11 2019-11-01 17:49:57 2 1 2019-11-01 17:54:57 1 11 2019-11-01 17:54:57 2 1 2019-11-01 18:34:57 1 11 2019-11-01 18:34:57 2 1 2019-11-01 18:54:57 1 10 2019-11-01 18:54:57 2 1 2019-11-01 18:59:57 1 8 2019-11-01 18:59:57 2 1 2019-11-01 19:04:57 1 10 2019-11-01 19:04:57 2 1 2019-11-01 19:19:57 1 8 2019-11-01 19:19:57 2 2 2019-11-01 19:24:58 1 7 2019-11-01 19:24:58 2 2 2019-11-01 19:39:57 1 6 2019-11-01 19:39:57 2 2 2019-11-01 19:44:57 1 8 2019-11-01 19:44:57 2 2 2019-11-01 19:54:57 1 5 2019-11-01 19:54:57 2 1 2019-11-01 20:04:57 1 7 2019-11-01 20:04:57 2 2 2019-11-01 20:14:57 1 9 2019-11-01 20:14:57 2 1 2019-11-01 20:29:57 1 8 2019-11-01 20:29:57 2 4 2019-11-01 20:34:57 1 8 2019-11-01 20:34:57 2 3 2019-11-01 20:49:57 1 7 2019-11-01 20:49:57 2 2 2019-11-01 20:54:57 1 8 2019-11-01 20:54:57 2 2 2019-11-01 20:59:57 1 11 2019-11-01 20:59:57 2 2 2019-11-01 21:19:57 1 13 2019-11-01 21:19:57 2 1 2019-11-01 21:24:57 1 11 2019-11-01 21:24:57 2 1 2019-11-01 21:39:57 1 11 2019-11-01 21:39:57 2 1 2019-11-01 22:19:57 1 12 2019-11-01 22:19:57 2 1 2019-11-01 22:29:57 1 14 2019-11-01 22:29:57 2 1 2019-11-01 22:34:57 1 11 2019-11-01 22:34:57 2 2 2019-11-01 22:49:57 1 14 2019-11-01 22:49:57 2 1 2019-11-01 22:54:57 1 17 2019-11-01 22:54:57 2 2 2019-11-01 22:59:57 1 16 2019-11-01 22:59:57 2 2 2019-11-01 23:04:57 1 15 2019-11-01 23:04:57 2 2 2019-11-01 23:09:57 1 15 2019-11-01 23:09:57 2 3 2019-11-01 23:14:57 1 15 2019-11-01 23:14:57 2 3 2019-11-01 23:19:57 1 16 2019-11-01 23:19:57 2 2 2019-11-01 23:24:57 1 14 2019-11-01 23:24:57 2 2 2019-11-01 23:49:57 1 14 2019-11-01 23:49:57 2 3 2019-11-02 00:24:57 1 11 2019-11-02 00:24:57 2 2 2019-11-02 01:19:57 1 9 2019-11-02 01:19:57 2 1 2019-11-02 01:24:57 1 8 2019-11-02 01:24:57 2 1 2019-11-02 01:29:57 1 7 2019-11-02 01:29:57 2 1 2019-11-02 01:39:57 1 6 2019-11-02 01:39:57 2 1 2019-11-02 01:49:57 1 6 2019-11-02 01:49:57 2 1 2019-11-02 02:09:57 1 5 2019-11-02 02:09:57 2 1 2019-11-02 02:49:57 1 6 2019-11-02 02:49:57 2 1 2019-11-02 02:54:57 1 5 2019-11-02 02:54:57 2 1 2019-11-02 03:04:57 1 4 2019-11-02 03:04:57 2 1 2019-11-02 03:09:57 1 4 2019-11-02 03:09:57 2 1 2019-11-01 06:29:57 1 6 2019-11-01 06:29:57 2 1 2019-11-01 07:04:57 1 7 2019-11-01 07:04:57 2 1 2019-11-01 07:14:57 1 6 2019-11-01 07:14:57 2 1 2019-11-01 07:24:57 1 5 2019-11-01 07:24:57 2 1 2019-11-01 08:04:57 1 5 2019-11-01 08:04:57 2 1 2019-11-01 08:09:57 1 6 2019-11-01 08:09:57 2 1 2019-11-01 09:34:57 1 8 2019-11-01 09:34:57 2 2 2019-11-01 10:19:57 1 10 2019-11-01 10:19:57 2 1 2019-11-01 10:29:57 1 14 2019-11-01 10:29:57 2 1 2019-11-01 10:34:57 1 13 2019-11-01 10:34:57 2 1 2019-11-01 11:09:57 1 14 2019-11-01 11:09:57 2 1 2019-11-01 12:19:57 1 14 2019-11-01 12:19:57 2 1 2019-11-01 12:24:57 1 13 2019-11-01 12:34:57 1 15 2019-11-01 12:59:57 1 14 2019-11-01 12:59:57 2 1 2019-11-01 13:14:57 1 14 2019-11-01 13:14:57 2 1 2019-11-01 13:19:57 1 12 2019-11-01 13:19:57 2 1 2019-11-01 14:09:57 1 11 2019-11-01 14:09:57 2 4 2019-11-01 14:39:57 1 14 2019-11-01 14:39:57 2 4 2019-11-01 14:59:57 1 12 2019-11-01 14:59:57 2 2 2019-11-01 15:34:57 1 12 2019-11-01 15:34:57 2 1 2019-11-01 15:39:57 1 13 2019-11-01 15:39:57 2 1 2019-11-01 15:44:57 1 12 2019-11-01 15:44:57 2 1 2019-11-01 15:54:57 1 14 2019-11-01 15:54:57 2 2 2019-11-01 16:24:57 1 12 2019-11-01 16:24:57 2 3 2019-11-01 16:29:57 1 13 2019-11-01 16:29:57 2 3 2019-11-01 16:49:57 1 11 2019-11-01 16:49:57 2 3 2019-11-01 16:59:57 1 11 2019-11-01 16:59:57 2 3 2019-11-01 17:09:57 1 12 2019-11-01 17:09:57 2 2 2019-11-01 17:19:57 1 9 2019-11-01 17:19:57 2 2 2019-11-01 17:39:57 1 10 2019-11-01 17:39:57 2 1 2019-11-01 17:44:57 1 10 2019-11-01 17:44:57 2 1 2019-11-01 17:59:57 1 10 2019-11-01 17:59:57 2 1 2019-11-01 18:04:57 1 12 2019-11-01 18:04:57 2 2 2019-11-01 18:14:57 1 12 2019-11-01 18:14:57 2 1 2019-11-01 18:24:57 1 13 2019-11-01 18:24:57 2 1 2019-11-01 18:44:57 1 9 2019-11-01 18:44:57 2 1 2019-11-01 19:09:57 1 9 2019-11-01 19:09:57 2 1 2019-11-01 19:14:57 1 9 2019-11-01 19:14:57 2 1 2019-11-01 19:29:57 1 7 2019-11-01 19:29:57 2 2 2019-11-01 19:59:57 1 5 2019-11-01 19:59:57 2 2 2019-11-01 20:09:57 1 6 2019-11-01 20:09:57 2 2 2019-11-01 20:39:57 1 10 2019-11-01 20:39:57 2 2 2019-11-01 20:44:57 1 7 2019-11-01 20:44:57 2 2 2019-11-01 21:09:57 1 12 2019-11-01 21:09:57 2 1 2019-11-01 21:29:57 1 12 2019-11-01 21:29:57 2 1 2019-11-01 21:44:57 1 12 2019-11-01 21:44:57 2 1 2019-11-01 21:54:57 1 9 2019-11-01 21:54:57 2 1 2019-11-01 21:59:57 1 11 2019-11-01 21:59:57 2 1 2019-11-01 22:04:57 1 10 2019-11-01 22:04:57 2 1 2019-11-01 22:14:57 1 12 2019-11-01 22:14:57 2 1 2019-11-01 22:24:57 1 13 2019-11-01 22:24:57 2 1 2019-11-01 23:59:57 1 13 2019-11-01 23:59:57 2 3 2019-11-02 00:09:57 1 13 2019-11-02 00:09:57 2 4 2019-11-02 00:39:57 1 11 2019-11-02 00:39:57 2 1 2019-11-02 00:49:57 1 11 2019-11-02 00:49:57 2 1 2019-11-02 00:54:57 1 11 2019-11-02 00:54:57 2 1 2019-11-02 01:14:57 1 9 2019-11-02 01:14:57 2 1 2019-11-02 01:34:57 1 5 2019-11-02 01:34:57 2 1 2019-11-02 01:54:57 1 6 2019-11-02 01:54:57 2 1 2019-11-02 01:59:57 1 5 2019-11-02 01:59:57 2 1 2019-11-02 02:14:57 1 5 2019-11-02 02:14:57 2 1 2019-11-02 02:19:57 1 5 2019-11-02 02:19:57 2 1 2019-11-02 02:24:57 1 5 2019-11-02 02:24:57 2 1 2019-11-02 02:29:57 1 5 2019-11-02 02:29:57 2 1 2019-11-02 02:34:57 1 3 2019-11-02 02:34:57 2 1 2019-11-02 02:39:57 1 4 2019-11-02 02:39:57 2 1 2019-11-02 02:44:57 1 5 2019-11-02 02:44:57 2 1 2019-11-02 03:14:57 1 4 2019-11-02 03:14:57 2 1 2019-11-02 03:19:57 1 4 2019-11-02 03:19:57 2 1 2019-11-02 03:34:57 1 4 2019-11-02 03:34:57 2 1 2019-11-02 03:39:57 1 4 2019-11-02 03:39:57 2 1 2019-11-02 03:44:57 1 5 2019-11-02 03:44:57 2 1 2019-11-02 03:54:57 1 4 2019-11-02 03:54:57 2 1 2019-11-02 03:59:57 1 4 2019-11-02 03:59:57 2 1 2019-11-02 04:14:57 1 4 2019-11-02 04:14:57 2 1 2019-11-02 04:34:57 1 4 2019-11-02 04:34:57 2 1 2019-11-02 04:39:57 1 4 2019-11-02 04:39:57 2 1 2019-11-02 04:44:57 1 4 2019-11-02 04:44:57 2 1 2019-11-02 04:49:57 1 4 2019-11-02 04:49:57 2 1 2019-11-02 05:04:57 1 4 2019-11-02 05:04:57 2 1 2019-11-02 05:09:57 1 4 2019-11-02 05:09:57 2 1 2019-11-02 05:14:57 1 4 2019-11-02 05:14:57 2 1 2019-11-02 05:19:57 1 5 2019-11-02 05:19:57 2 1 2019-11-02 05:24:57 1 5 2019-11-02 05:24:57 2 1 2019-11-02 05:29:57 1 6 2019-11-02 05:29:57 2 1 2019-11-02 05:34:57 1 4 2019-11-02 05:34:57 2 1 2019-11-02 06:14:57 1 5 2019-11-02 06:14:57 2 1 2019-11-02 06:29:57 1 5 2019-11-02 06:29:57 2 1 2019-11-02 06:34:57 1 5 2019-11-02 06:34:57 2 1 2019-11-02 06:39:57 1 4 2019-11-02 06:39:57 2 1 2019-11-02 06:49:57 1 9 2019-11-02 06:49:57 2 2 2019-11-02 06:54:57 1 9 2019-11-02 06:54:57 2 1 2019-11-02 07:04:57 1 8 2019-11-02 03:24:57 1 4 2019-11-02 03:24:57 2 1 2019-11-02 03:29:57 1 4 2019-11-02 03:29:57 2 1 2019-11-02 03:49:57 1 4 2019-11-02 03:49:57 2 1 2019-11-02 04:24:57 1 4 2019-11-02 04:24:57 2 1 2019-11-02 04:29:57 1 4 2019-11-02 04:29:57 2 1 2019-11-02 04:54:57 1 4 2019-11-02 04:54:57 2 1 2019-11-02 04:59:57 1 4 2019-11-02 04:59:57 2 1 2019-11-02 05:39:57 1 4 2019-11-02 05:39:57 2 1 2019-11-02 05:44:57 1 5 2019-11-02 05:44:57 2 1 2019-11-02 05:49:57 1 4 2019-11-02 05:49:57 2 1 2019-11-02 05:54:57 1 5 2019-11-02 05:54:57 2 1 2019-11-02 05:59:57 1 6 2019-11-02 05:59:57 2 1 2019-11-02 06:04:57 1 5 2019-11-02 06:04:57 2 1 2019-11-02 06:09:57 1 5 2019-11-02 06:09:57 2 1 2019-11-02 06:19:57 1 6 2019-11-02 06:19:57 2 1 2019-11-02 06:24:57 1 5 2019-11-02 06:24:57 2 1 2019-11-02 06:44:57 1 5 2019-11-02 06:44:57 2 1 2019-11-02 06:59:57 1 9 2019-11-02 06:59:57 2 2 2019-11-02 07:04:57 2 2 2019-11-02 07:09:57 1 8 2019-11-02 07:09:57 2 1 2019-11-02 07:14:57 1 8 2019-11-02 07:19:57 1 9 2019-11-02 07:24:57 1 10 2019-11-02 07:29:57 1 9 2019-11-02 07:34:57 1 8 2019-11-02 07:39:57 1 8 2019-11-02 07:44:57 1 9 2019-11-02 07:49:57 1 8 2019-11-02 07:54:57 1 7 2019-11-02 07:59:57 1 9 2019-11-02 08:04:57 1 9 2019-11-02 08:09:57 1 9 2019-11-02 08:14:57 1 9 2019-11-02 08:19:57 1 10 2019-11-02 08:24:57 1 11 2019-11-02 08:29:57 1 11 2019-11-02 08:34:57 1 10 2019-11-02 08:39:57 1 12 2019-11-02 08:44:57 1 11 2019-11-02 08:49:57 1 10 2019-11-02 08:54:57 1 8 2019-11-02 08:59:57 1 10 2019-11-02 09:04:57 1 10 2019-11-02 09:09:57 1 11 2019-11-02 09:14:57 1 10 2019-11-02 09:14:57 2 1 2019-11-02 09:19:57 1 11 2019-11-02 09:19:57 2 1 2019-11-02 09:24:57 1 12 2019-11-02 09:29:57 1 13 2019-11-02 09:34:57 1 13 2019-11-02 09:39:57 1 11 2019-11-02 09:44:57 1 13 2019-11-02 09:49:57 1 10 2019-11-02 09:54:58 1 13 2019-11-02 09:59:57 1 14 2019-11-02 10:04:57 1 14 2019-11-02 10:09:57 1 15 2019-11-02 10:09:57 2 1 2019-11-02 10:14:57 1 15 2019-11-02 10:19:57 1 14 2019-11-02 10:24:57 1 15 2019-11-02 10:24:57 2 1 2019-11-02 10:29:57 1 15 2019-11-02 10:29:57 2 1 2019-11-02 10:34:57 1 17 2019-11-02 10:34:57 2 1 2019-11-02 10:39:57 1 17 2019-11-02 10:39:57 2 1 2019-11-02 10:44:57 1 12 2019-11-02 10:44:57 2 1 2019-11-02 10:49:57 1 14 2019-11-02 10:54:57 1 12 2019-11-02 10:54:57 2 1 2019-11-02 10:59:57 1 11 2019-11-02 10:59:57 2 1 2019-11-02 11:04:57 1 12 2019-11-02 11:04:57 2 1 2019-11-02 11:09:58 1 13 2019-11-02 11:09:58 2 1 2019-11-02 11:14:57 1 13 2019-11-02 11:14:57 2 2 2019-11-02 11:19:57 1 14 2019-11-02 11:19:57 2 2 2019-11-02 11:24:57 1 13 2019-11-02 11:24:57 2 1 2019-11-02 11:29:57 1 12 2019-11-02 11:29:57 2 1 2019-11-02 11:34:57 1 13 2019-11-02 11:34:57 2 1 2019-11-02 11:39:57 1 13 2019-11-02 11:39:57 2 1 2019-11-02 11:44:57 1 13 2019-11-02 11:44:57 2 1 2019-11-02 11:49:57 1 14 2019-11-02 11:54:57 1 14 2019-11-02 11:59:57 1 14 2019-11-02 12:04:57 1 13 2019-11-02 12:09:57 1 11 2019-11-02 12:14:57 1 11 2019-11-02 12:19:57 1 12 2019-11-02 12:24:57 1 13 2019-11-02 12:29:57 1 15 2019-11-02 12:34:57 1 13 2019-11-02 12:39:57 1 16 2019-11-02 12:44:57 1 17 2019-11-02 12:44:57 2 1 2019-11-02 12:49:57 1 12 2019-11-02 12:49:57 2 1 2019-11-02 12:54:57 1 11 2019-11-02 12:54:57 2 1 2019-11-02 12:59:57 1 10 2019-11-02 12:59:57 2 1 2019-11-02 13:04:57 1 10 2019-11-02 13:09:57 1 9 2019-11-02 13:14:57 1 9 2019-11-02 13:19:57 1 9 2019-11-02 13:19:57 2 1 2019-11-02 13:24:57 1 11 2019-11-02 13:29:57 1 9 2019-11-02 13:34:57 1 10 2019-11-02 13:39:57 1 8 2019-11-02 13:44:57 1 10 2019-11-02 13:44:57 2 1 2019-11-02 13:49:57 1 10 2019-11-02 13:49:57 2 1 2019-11-02 13:54:57 1 11 2019-11-02 13:54:57 2 2 2019-11-02 13:59:57 1 11 2019-11-02 13:59:57 2 1 2019-11-02 14:04:57 1 14 2019-11-02 14:04:57 2 1 2019-11-02 14:09:57 1 15 2019-11-02 14:09:57 2 1 2019-11-02 14:14:57 1 16 2019-11-02 14:14:57 2 1 2019-11-02 14:19:57 1 13 2019-11-02 14:19:57 2 1 2019-11-02 14:24:57 1 14 2019-11-02 14:24:57 2 1 2019-11-02 14:29:57 1 15 2019-11-02 14:29:57 2 1 2019-11-02 14:34:57 1 13 2019-11-02 14:34:57 2 1 2019-11-02 14:39:57 1 15 2019-11-02 14:39:57 2 1 2019-11-02 14:44:57 1 13 2019-11-02 14:44:57 2 1 2019-11-02 14:49:57 1 12 2019-11-02 14:49:57 2 1 2019-11-02 14:54:57 1 10 2019-11-02 14:54:57 2 1 2019-11-02 14:59:57 1 16 2019-11-02 14:59:57 2 3 2019-11-02 15:04:57 1 14 2019-11-02 15:04:57 2 4 2019-11-02 15:09:57 1 12 2019-11-02 15:09:57 2 4 2019-11-02 15:14:57 1 12 2019-11-02 15:14:57 2 3 2019-11-02 15:19:57 1 12 2019-11-02 15:19:57 2 3 2019-11-02 15:24:57 1 13 2019-11-02 15:24:57 2 3 2019-11-02 15:29:57 1 13 2019-11-02 15:29:57 2 4 2019-11-02 15:34:57 1 15 2019-11-02 15:34:57 2 4 2019-11-02 15:44:57 1 8 2019-11-02 15:44:57 2 4 2019-11-02 15:49:57 1 11 2019-11-02 15:49:57 2 4 2019-11-02 15:59:57 1 11 2019-11-02 15:59:57 2 3 2019-11-02 16:29:57 1 10 2019-11-02 16:29:57 2 5 2019-11-02 16:34:57 1 11 2019-11-02 16:34:57 2 4 2019-11-02 17:09:57 1 8 2019-11-02 17:09:57 2 3 2019-11-02 17:24:57 1 14 2019-11-02 17:24:57 2 2 2019-11-02 17:44:57 1 13 2019-11-02 17:44:57 2 2 2019-11-02 17:54:57 1 14 2019-11-02 17:54:57 2 3 2019-11-02 17:59:57 1 12 2019-11-02 17:59:57 2 2 2019-11-02 18:49:57 1 13 2019-11-02 18:49:57 2 2 2019-11-02 19:09:57 1 12 2019-11-02 19:09:57 2 4 2019-11-02 19:14:57 1 12 2019-11-02 19:14:57 2 4 2019-11-02 19:34:57 1 9 2019-11-02 19:34:57 2 2 2019-11-02 19:44:57 1 8 2019-11-02 19:44:57 2 1 2019-11-02 19:54:57 1 11 2019-11-02 19:54:57 2 2 2019-11-02 20:04:57 1 9 2019-11-02 20:44:57 1 8 2019-11-02 20:54:57 1 9 2019-11-02 21:04:57 1 9 2019-11-02 21:09:57 1 9 2019-11-02 21:09:57 2 1 2019-11-02 21:29:57 1 8 2019-11-02 21:29:57 2 2 2019-11-02 21:54:57 1 11 2019-11-02 21:54:57 2 1 2019-11-02 22:14:57 1 10 2019-11-02 22:14:57 2 1 2019-11-02 22:29:57 1 14 2019-11-02 22:29:57 2 1 2019-11-02 23:29:57 1 12 2019-11-02 23:29:57 2 2 2019-11-02 23:34:57 1 13 2019-11-02 23:34:57 2 2 2019-11-02 23:54:57 1 11 2019-11-02 23:54:57 2 2 2019-11-02 23:59:57 1 12 2019-11-02 23:59:57 2 2 2019-11-03 00:09:57 1 13 2019-11-03 00:09:57 2 2 2019-11-03 00:59:57 1 8 2019-11-03 00:59:57 2 1 2019-11-03 01:04:57 1 8 2019-11-03 01:04:57 2 1 2019-11-03 01:39:57 1 9 2019-11-03 01:39:57 2 1 2019-11-03 01:44:57 1 10 2019-11-03 01:44:57 2 2 2019-11-03 02:09:57 1 8 2019-11-03 02:09:57 2 3 2019-11-03 02:14:57 1 7 2019-11-03 02:14:57 2 3 2019-11-03 02:39:57 1 7 2019-11-03 02:39:57 2 3 2019-11-03 02:49:57 1 6 2019-11-03 02:49:57 2 3 2019-11-03 03:29:57 1 5 2019-11-03 03:29:57 2 2 2019-11-03 03:39:57 1 7 2019-11-03 03:39:57 2 2 2019-11-03 03:44:57 1 7 2019-11-03 03:44:57 2 2 2019-11-03 04:04:57 1 6 2019-11-03 04:04:57 2 1 2019-11-03 04:29:57 1 7 2019-11-03 04:29:57 2 1 2019-11-03 05:09:57 1 8 2019-11-03 05:09:57 2 1 2019-11-03 05:24:57 1 9 2019-11-03 05:24:57 2 1 2019-11-03 05:49:57 1 9 2019-11-03 05:49:57 2 1 2019-11-03 05:59:57 1 8 2019-11-03 05:59:57 2 1 2019-11-03 06:04:57 1 7 2019-11-03 06:04:57 2 1 2019-11-03 06:19:57 1 9 2019-11-03 06:19:57 2 2 2019-11-03 06:24:57 1 9 2019-11-03 06:24:57 2 1 2019-11-03 08:09:57 1 15 2019-11-03 08:09:57 2 1 2019-11-03 08:14:57 1 14 2019-11-03 08:14:57 2 1 2019-11-03 08:29:57 1 13 2019-11-03 08:29:57 2 2 2019-11-03 08:39:57 1 10 2019-11-03 08:39:57 2 1 2019-11-03 08:54:57 1 12 2019-11-03 08:54:57 2 1 2019-11-03 09:34:58 1 10 2019-11-03 10:29:57 1 13 2019-11-03 10:29:57 2 2 2019-11-03 10:34:57 1 13 2019-11-03 10:34:57 2 2 2019-11-03 10:44:57 1 13 2019-11-03 10:44:57 2 2 2019-11-03 10:49:57 1 14 2019-11-03 10:49:57 2 1 2019-11-03 11:09:57 1 12 2019-11-03 11:09:57 2 1 2019-11-03 11:14:57 1 12 2019-11-03 11:14:57 2 1 2019-11-03 11:19:57 1 14 2019-11-03 11:34:57 1 12 2019-11-03 11:34:57 2 1 2019-11-03 12:04:57 1 16 2019-11-03 12:14:57 1 17 2019-11-03 12:24:57 1 19 2019-11-03 12:34:57 1 17 2019-11-03 12:39:57 1 16 2019-11-03 12:54:57 1 16 2019-11-03 12:54:57 2 1 2019-11-03 13:04:57 1 17 2019-11-03 13:24:57 1 14 2019-11-03 13:39:57 1 14 2019-11-03 13:54:57 1 11 2019-11-03 13:54:57 2 1 2019-11-03 14:24:57 1 15 2019-11-03 14:24:57 2 1 2019-11-03 14:34:57 1 15 2019-11-03 14:34:57 2 1 2019-11-03 14:39:57 1 14 2019-11-03 14:39:57 2 2 2019-11-03 14:44:57 1 13 2019-11-03 14:44:57 2 2 2019-11-03 14:49:57 2 2 2019-11-03 14:54:57 1 12 2019-11-03 14:54:57 2 2 2019-11-03 14:59:57 1 11 2019-11-03 14:59:57 2 2 2019-11-03 15:04:57 1 13 2019-11-03 15:09:57 1 12 2019-11-03 15:14:57 1 11 2019-11-03 15:14:57 2 1 2019-11-03 15:19:57 1 10 2019-11-03 15:19:57 2 1 2019-11-03 15:24:57 1 10 2019-11-03 15:24:57 2 1 2019-11-03 15:29:57 1 10 2019-11-03 15:29:57 2 1 2019-11-03 15:34:57 1 10 2019-11-03 15:34:57 2 1 2019-11-03 15:39:57 1 10 2019-11-03 15:39:57 2 1 2019-11-03 15:44:57 1 12 2019-11-03 15:44:57 2 1 2019-11-03 15:49:57 1 12 2019-11-03 15:49:57 2 1 2019-11-03 15:54:57 1 12 2019-11-03 15:54:57 2 1 2019-11-03 15:59:57 1 14 2019-11-03 15:59:57 2 1 2019-11-03 16:04:57 1 12 2019-11-03 16:04:57 2 2 2019-11-03 16:09:57 1 11 2019-11-03 16:09:57 2 2 2019-11-03 16:14:57 1 11 2019-11-03 16:14:57 2 2 2019-11-03 16:19:57 1 13 2019-11-03 16:19:57 2 2 2019-11-03 16:24:57 1 14 2019-11-03 16:24:57 2 2 2019-11-03 16:29:57 1 11 2019-11-03 16:29:57 2 2 2019-11-03 16:34:57 1 12 2019-11-03 16:34:57 2 2 2019-11-02 15:39:57 1 10 2019-11-02 15:39:57 2 4 2019-11-02 16:04:57 1 9 2019-11-02 16:04:57 2 3 2019-11-02 16:19:57 1 10 2019-11-02 16:19:57 2 2 2019-11-02 16:44:57 1 9 2019-11-02 16:44:57 2 5 2019-11-02 16:54:57 1 10 2019-11-02 16:54:57 2 4 2019-11-02 16:59:57 1 11 2019-11-02 16:59:57 2 4 2019-11-02 17:04:57 1 10 2019-11-02 17:04:57 2 4 2019-11-02 17:39:57 1 10 2019-11-02 17:39:57 2 2 2019-11-02 18:09:57 1 10 2019-11-02 18:09:57 2 1 2019-11-02 18:14:57 1 7 2019-11-02 18:14:57 2 1 2019-11-02 18:19:57 1 11 2019-11-02 18:24:57 1 10 2019-11-02 18:54:57 1 13 2019-11-02 18:54:57 2 2 2019-11-02 18:59:57 1 11 2019-11-02 18:59:57 2 2 2019-11-02 19:04:57 1 10 2019-11-02 19:04:57 2 4 2019-11-02 19:24:57 1 9 2019-11-02 19:24:57 2 2 2019-11-02 19:29:57 1 11 2019-11-02 19:29:57 2 2 2019-11-02 19:49:57 1 9 2019-11-02 19:49:57 2 2 2019-11-02 19:59:57 1 10 2019-11-02 19:59:57 2 2 2019-11-02 20:09:57 1 8 2019-11-02 20:09:57 2 1 2019-11-02 20:14:57 1 11 2019-11-02 20:14:57 2 1 2019-11-02 20:19:57 1 12 2019-11-02 20:19:57 2 1 2019-11-02 20:24:57 1 9 2019-11-02 20:24:57 2 1 2019-11-02 20:34:57 1 7 2019-11-02 21:14:57 1 9 2019-11-02 21:14:57 2 2 2019-11-02 21:19:57 1 7 2019-11-02 21:19:57 2 2 2019-11-02 22:19:57 1 14 2019-11-02 22:19:57 2 1 2019-11-02 22:44:57 1 8 2019-11-02 22:44:57 2 1 2019-11-02 22:49:57 1 9 2019-11-02 22:49:57 2 1 2019-11-02 22:54:57 1 10 2019-11-02 22:54:57 2 1 2019-11-02 23:04:57 1 8 2019-11-02 23:04:57 2 1 2019-11-02 23:09:57 1 10 2019-11-02 23:09:57 2 1 2019-11-02 23:19:57 1 10 2019-11-02 23:19:57 2 2 2019-11-02 23:39:57 1 11 2019-11-02 23:39:57 2 2 2019-11-02 23:44:57 1 13 2019-11-02 23:44:57 2 2 2019-11-03 00:14:57 1 11 2019-11-03 00:14:57 2 2 2019-11-03 00:19:58 1 10 2019-11-03 00:19:58 2 2 2019-11-03 00:29:57 1 10 2019-11-03 00:29:57 2 1 2019-11-03 00:39:57 1 9 2019-11-03 00:39:57 2 2 2019-11-03 01:09:57 1 7 2019-11-03 01:09:57 2 1 2019-11-03 01:14:57 1 8 2019-11-03 01:14:57 2 1 2019-11-03 01:24:57 1 6 2019-11-03 01:24:57 2 1 2019-11-03 01:29:57 1 7 2019-11-03 01:29:57 2 1 2019-11-03 01:34:57 1 7 2019-11-03 01:34:57 2 1 2019-11-03 01:49:57 1 7 2019-11-03 01:49:57 2 2 2019-11-03 01:54:57 1 8 2019-11-03 01:54:57 2 3 2019-11-03 02:04:57 1 8 2019-11-03 02:04:57 2 3 2019-11-03 02:24:57 1 6 2019-11-03 02:24:57 2 3 2019-11-03 02:29:57 1 7 2019-11-03 02:29:57 2 3 2019-11-03 03:04:57 1 6 2019-11-03 03:04:57 2 2 2019-11-03 03:14:57 1 7 2019-11-03 03:14:57 2 2 2019-11-03 03:24:57 1 5 2019-11-03 03:24:57 2 2 2019-11-03 03:59:57 1 6 2019-11-03 03:59:57 2 1 2019-11-03 04:09:57 1 8 2019-11-03 04:09:57 2 1 2019-11-03 04:14:57 1 6 2019-11-03 04:14:57 2 1 2019-11-03 04:19:57 1 7 2019-11-03 04:19:57 2 1 2019-11-03 04:34:57 1 8 2019-11-03 04:34:57 2 1 2019-11-03 04:49:57 1 7 2019-11-03 04:49:57 2 1 2019-11-03 04:59:57 1 9 2019-11-03 04:59:57 2 1 2019-11-03 05:04:57 1 9 2019-11-03 05:04:57 2 1 2019-11-03 05:19:57 1 10 2019-11-03 05:19:57 2 1 2019-11-03 05:29:57 1 10 2019-11-03 05:29:57 2 1 2019-11-03 05:39:57 1 9 2019-11-03 05:39:57 2 1 2019-11-03 05:54:57 1 8 2019-11-03 05:54:57 2 1 2019-11-03 06:09:57 1 7 2019-11-03 06:09:57 2 2 2019-11-03 06:29:57 1 9 2019-11-03 06:29:57 2 1 2019-11-03 06:34:57 1 10 2019-11-03 06:34:57 2 1 2019-11-03 06:49:57 1 10 2019-11-03 06:49:57 2 1 2019-11-03 06:54:57 1 8 2019-11-03 06:54:57 2 1 2019-11-03 06:59:57 1 8 2019-11-03 06:59:57 2 1 2019-11-03 07:14:57 1 12 2019-11-03 07:14:57 2 1 2019-11-03 07:24:57 1 11 2019-11-03 07:24:57 2 1 2019-11-03 07:29:57 1 10 2019-11-03 07:29:57 2 1 2019-11-03 07:39:57 1 12 2019-11-03 07:39:57 2 1 2019-11-03 07:49:57 1 10 2019-11-03 07:49:57 2 1 2019-11-03 08:04:57 1 13 2019-11-03 08:04:57 2 1 2019-11-03 08:19:57 1 13 2019-11-03 08:19:57 2 1 2019-11-03 08:49:57 1 12 2019-11-03 08:49:57 2 1 2019-11-03 09:09:57 1 9 2019-11-03 09:09:57 2 2 2019-11-03 09:19:57 1 11 2019-11-03 09:19:57 2 1 2019-11-03 09:24:57 1 8 2019-11-03 09:24:57 2 1 2019-11-03 09:49:57 1 10 2019-11-03 09:59:57 1 10 2019-11-03 10:04:57 1 10 2019-11-03 10:39:57 1 13 2019-11-03 10:39:57 2 2 2019-11-03 10:54:57 1 13 2019-11-03 10:54:57 2 1 2019-11-03 10:59:57 1 13 2019-11-03 10:59:57 2 1 2019-11-03 11:04:57 1 14 2019-11-03 11:04:57 2 1 2019-11-03 11:24:57 1 12 2019-11-03 11:49:57 1 15 2019-11-03 12:19:57 1 19 2019-11-03 12:49:57 1 17 2019-11-03 12:49:57 2 2 2019-11-03 13:14:57 1 17 2019-11-03 13:14:57 2 1 2019-11-03 13:19:57 1 13 2019-11-03 13:19:57 2 1 2019-11-03 13:34:57 1 15 2019-11-03 13:59:57 1 14 2019-11-03 14:14:57 1 16 2019-11-03 14:29:57 1 14 2019-11-03 14:29:57 2 1 2019-11-03 14:49:57 1 13 2019-11-02 15:54:57 1 11 2019-11-02 15:54:57 2 4 2019-11-02 16:09:57 1 10 2019-11-02 16:09:57 2 3 2019-11-02 16:14:57 1 7 2019-11-02 16:14:57 2 3 2019-11-02 16:24:57 1 9 2019-11-02 16:24:57 2 2 2019-11-02 16:39:57 1 7 2019-11-02 16:39:57 2 5 2019-11-02 16:49:57 1 11 2019-11-02 16:49:57 2 4 2019-11-02 17:14:57 1 10 2019-11-02 17:14:57 2 3 2019-11-02 17:19:57 1 12 2019-11-02 17:19:57 2 2 2019-11-02 17:29:57 1 12 2019-11-02 17:29:57 2 2 2019-11-02 17:34:57 1 10 2019-11-02 17:34:57 2 2 2019-11-02 17:49:57 1 13 2019-11-02 17:49:57 2 2 2019-11-02 18:04:57 1 11 2019-11-02 18:04:57 2 1 2019-11-02 18:29:57 1 12 2019-11-02 18:34:57 1 12 2019-11-02 18:39:57 1 11 2019-11-02 18:39:57 2 1 2019-11-02 18:44:57 1 12 2019-11-02 18:44:57 2 1 2019-11-02 19:19:57 1 10 2019-11-02 19:19:57 2 3 2019-11-02 19:39:57 1 9 2019-11-02 19:39:57 2 2 2019-11-02 20:29:57 1 9 2019-11-02 20:39:57 1 7 2019-11-02 20:49:57 1 8 2019-11-02 20:59:57 1 11 2019-11-02 21:24:57 1 7 2019-11-02 21:24:57 2 2 2019-11-02 21:34:57 1 11 2019-11-02 21:34:57 2 2 2019-11-02 21:39:57 1 12 2019-11-02 21:39:57 2 2 2019-11-02 21:44:57 1 11 2019-11-02 21:44:57 2 2 2019-11-02 21:49:57 1 14 2019-11-02 21:49:57 2 1 2019-11-02 21:59:57 1 13 2019-11-02 21:59:57 2 1 2019-11-02 22:04:57 1 10 2019-11-02 22:04:57 2 1 2019-11-02 22:09:57 1 11 2019-11-02 22:09:57 2 2 2019-11-02 22:24:57 1 12 2019-11-02 22:24:57 2 1 2019-11-02 22:34:57 1 12 2019-11-02 22:34:57 2 1 2019-11-02 22:39:57 1 12 2019-11-02 22:39:57 2 1 2019-11-02 22:59:57 1 10 2019-11-02 22:59:57 2 1 2019-11-02 23:14:57 1 9 2019-11-02 23:14:57 2 2 2019-11-02 23:24:57 1 12 2019-11-02 23:24:57 2 2 2019-11-02 23:49:57 1 10 2019-11-02 23:49:57 2 2 2019-11-03 00:04:57 1 12 2019-11-03 00:04:57 2 2 2019-11-03 00:24:57 1 10 2019-11-03 00:24:57 2 2 2019-11-03 00:34:57 1 10 2019-11-03 00:34:57 2 2 2019-11-03 00:44:57 1 7 2019-11-03 00:44:57 2 1 2019-11-03 00:49:57 1 6 2019-11-03 00:49:57 2 1 2019-11-03 00:54:57 1 6 2019-11-03 00:54:57 2 1 2019-11-03 01:19:57 1 7 2019-11-03 01:19:57 2 1 2019-11-03 01:59:57 1 8 2019-11-03 01:59:57 2 3 2019-11-03 02:19:57 1 5 2019-11-03 02:19:57 2 3 2019-11-03 02:34:57 1 6 2019-11-03 02:34:57 2 3 2019-11-03 02:44:57 1 5 2019-11-03 02:44:57 2 3 2019-11-03 02:54:57 1 6 2019-11-03 02:54:57 2 2 2019-11-03 02:59:57 1 7 2019-11-03 02:59:57 2 2 2019-11-03 03:09:57 1 6 2019-11-03 03:09:57 2 2 2019-11-03 03:19:57 1 6 2019-11-03 03:19:57 2 2 2019-11-03 03:34:57 1 6 2019-11-03 03:34:57 2 2 2019-11-03 03:49:57 1 6 2019-11-03 03:49:57 2 2 2019-11-03 03:54:57 1 5 2019-11-03 03:54:57 2 2 2019-11-03 04:24:57 1 7 2019-11-03 04:24:57 2 1 2019-11-03 04:39:57 1 7 2019-11-03 04:39:57 2 1 2019-11-03 04:44:57 1 7 2019-11-03 04:44:57 2 1 2019-11-03 04:54:57 1 9 2019-11-03 04:54:57 2 1 2019-11-03 05:14:57 1 8 2019-11-03 05:14:57 2 1 2019-11-03 05:34:57 1 9 2019-11-03 05:34:57 2 1 2019-11-03 05:44:57 1 10 2019-11-03 05:44:57 2 1 2019-11-03 06:14:57 1 6 2019-11-03 06:14:57 2 2 2019-11-03 06:39:57 1 11 2019-11-03 06:39:57 2 1 2019-11-03 06:44:57 1 10 2019-11-03 06:44:57 2 1 2019-11-03 07:04:57 1 9 2019-11-03 07:04:57 2 1 2019-11-03 07:09:57 1 10 2019-11-03 07:09:57 2 1 2019-11-03 07:19:57 1 11 2019-11-03 07:19:57 2 1 2019-11-03 07:34:57 1 10 2019-11-03 07:34:57 2 1 2019-11-03 07:44:57 1 13 2019-11-03 07:44:57 2 1 2019-11-03 07:54:57 1 12 2019-11-03 07:54:57 2 1 2019-11-03 07:59:57 1 13 2019-11-03 07:59:57 2 1 2019-11-03 08:24:57 1 12 2019-11-03 08:24:57 2 1 2019-11-03 08:34:57 1 11 2019-11-03 08:34:57 2 1 2019-11-03 08:44:57 1 11 2019-11-03 08:44:57 2 1 2019-11-03 08:59:57 1 11 2019-11-03 08:59:57 2 1 2019-11-03 09:04:57 1 10 2019-11-03 09:04:57 2 1 2019-11-03 09:14:57 1 11 2019-11-03 09:14:57 2 1 2019-11-03 09:29:57 1 8 2019-11-03 09:29:57 2 1 2019-11-03 09:39:57 1 10 2019-11-03 09:39:57 2 1 2019-11-03 09:44:57 1 10 2019-11-03 09:44:57 2 1 2019-11-03 09:54:57 1 10 2019-11-03 10:09:57 1 12 2019-11-03 10:09:57 2 1 2019-11-03 10:14:57 1 11 2019-11-03 10:14:57 2 1 2019-11-03 10:19:57 1 11 2019-11-03 10:19:57 2 1 2019-11-03 10:24:57 1 12 2019-11-03 10:24:57 2 2 2019-11-03 11:29:57 1 13 2019-11-03 11:29:57 2 1 2019-11-03 11:39:57 1 15 2019-11-03 11:44:57 1 13 2019-11-03 11:54:57 1 15 2019-11-03 11:59:57 1 15 2019-11-03 12:09:57 1 18 2019-11-03 12:29:57 1 20 2019-11-03 12:44:57 1 17 2019-11-03 12:44:57 2 1 2019-11-03 12:59:57 1 18 2019-11-03 13:09:57 1 18 2019-11-03 13:09:57 2 1 2019-11-03 13:29:57 1 14 2019-11-03 13:44:57 1 12 2019-11-03 13:49:57 1 11 2019-11-03 13:49:57 2 1 2019-11-03 14:04:57 1 16 2019-11-03 14:09:57 1 17 2019-11-03 14:19:57 1 16 2019-11-03 16:39:57 1 10 2019-11-03 16:39:57 2 2 2019-11-03 16:44:57 1 10 2019-11-03 16:44:57 2 2 2019-11-03 16:59:57 1 11 2019-11-03 16:59:57 2 2 2019-11-03 17:14:57 1 10 2019-11-03 17:14:57 2 3 2019-11-03 17:24:57 1 13 2019-11-03 17:24:57 2 2 2019-11-03 17:59:57 1 10 2019-11-03 17:59:57 2 2 2019-11-03 18:29:57 1 10 2019-11-03 18:29:57 2 1 2019-11-03 18:34:57 1 12 2019-11-03 18:54:57 1 13 2019-11-03 18:59:57 1 13 2019-11-03 20:04:57 1 16 2019-11-03 20:04:57 2 1 2019-11-03 20:09:57 1 18 2019-11-03 20:09:57 2 1 2019-11-03 20:19:57 1 15 2019-11-03 20:19:57 2 1 2019-11-03 20:34:57 1 11 2019-11-03 20:34:57 2 1 2019-11-03 20:49:57 1 17 2019-11-03 20:49:57 2 1 2019-11-03 21:09:57 1 16 2019-11-03 21:09:57 2 1 2019-11-03 21:19:57 1 18 2019-11-03 21:19:57 2 1 2019-11-03 21:24:57 1 17 2019-11-03 21:24:57 2 1 2019-11-03 22:09:57 1 20 2019-11-03 22:09:57 2 1 2019-11-03 22:19:57 1 19 2019-11-03 22:19:57 2 1 2019-11-03 22:39:57 1 16 2019-11-03 22:39:57 2 1 2019-11-03 23:14:57 1 14 2019-11-03 23:19:57 1 14 2019-11-03 23:24:57 1 15 2019-11-03 23:34:57 1 13 2019-11-03 23:39:57 1 10 2019-11-04 00:14:57 1 10 2019-11-04 00:14:57 2 2 2019-11-04 00:19:57 1 10 2019-11-04 00:19:57 2 2 2019-11-04 00:29:57 1 8 2019-11-04 00:29:57 2 2 2019-11-04 00:34:57 1 8 2019-11-04 00:34:57 2 2 2019-11-04 00:39:57 1 8 2019-11-04 00:39:57 2 2 2019-11-04 00:44:57 1 8 2019-11-04 00:44:57 2 2 2019-11-04 00:54:57 1 6 2019-11-04 00:54:57 2 2 2019-11-04 00:59:57 1 6 2019-11-04 00:59:57 2 2 2019-11-04 01:04:57 1 6 2019-11-04 01:04:57 2 2 2019-11-04 01:14:57 1 6 2019-11-04 01:14:57 2 2 2019-11-04 01:29:57 1 7 2019-11-04 01:29:57 2 2 2019-11-04 01:34:57 1 6 2019-11-04 01:34:57 2 2 2019-11-04 01:59:57 1 8 2019-11-04 01:59:57 2 1 2019-11-04 02:09:57 1 6 2019-11-04 02:09:57 2 1 2019-11-04 02:14:57 1 5 2019-11-04 02:14:57 2 1 2019-11-04 02:34:57 1 5 2019-11-04 02:34:57 2 1 2019-11-04 03:34:57 1 6 2019-11-04 03:34:57 2 1 2019-11-04 04:04:57 1 5 2019-11-04 04:04:57 2 1 2019-11-04 04:09:57 1 5 2019-11-04 04:09:57 2 1 2019-11-04 04:34:57 1 6 2019-11-04 04:34:57 2 1 2019-11-04 04:39:57 1 6 2019-11-04 04:39:57 2 1 2019-11-04 05:19:57 1 6 2019-11-04 05:19:57 2 1 2019-11-04 05:44:57 1 9 2019-11-04 05:44:57 2 2 2019-11-04 06:09:57 1 8 2019-11-04 06:09:57 2 1 2019-11-04 06:24:57 1 8 2019-11-04 06:24:57 2 1 2019-11-04 06:49:57 1 9 2019-11-04 06:49:57 2 1 2019-11-04 06:59:57 1 7 2019-11-04 06:59:57 2 1 2019-11-04 07:04:57 1 7 2019-11-04 07:09:57 1 6 2019-11-04 07:14:57 1 8 2019-11-04 07:29:57 1 10 2019-11-04 07:29:57 2 1 2019-11-04 08:34:57 1 11 2019-11-04 08:34:57 2 2 2019-11-04 08:59:57 1 14 2019-11-04 08:59:57 2 2 2019-11-04 09:04:57 1 15 2019-11-04 09:04:57 2 2 2019-11-04 09:09:57 1 15 2019-11-04 09:09:57 2 2 2019-11-04 09:14:57 1 13 2019-11-04 09:14:57 2 2 2019-11-04 09:34:57 1 14 2019-11-04 09:34:57 2 2 2019-11-04 09:39:57 1 16 2019-11-04 09:39:57 2 2 2019-11-04 09:44:57 1 15 2019-11-04 09:44:57 2 1 2019-11-04 09:59:57 1 17 2019-11-04 09:59:57 2 1 2019-11-04 10:14:57 1 14 2019-11-04 10:19:57 1 13 2019-11-04 10:19:57 2 1 2019-11-04 10:24:57 1 18 2019-11-04 10:24:57 2 1 2019-11-04 10:29:57 1 16 2019-11-04 10:29:57 2 1 2019-11-04 10:39:57 1 15 2019-11-04 10:39:57 2 1 2019-11-04 10:44:57 1 18 2019-11-04 10:44:57 2 1 2019-11-04 10:49:57 1 14 2019-11-04 10:49:57 2 2 2019-11-04 11:14:57 1 16 2019-11-04 11:14:57 2 1 2019-11-04 11:24:57 1 15 2019-11-04 11:24:57 2 1 2019-11-04 11:34:57 1 16 2019-11-04 11:34:57 2 1 2019-11-04 12:24:57 1 14 2019-11-04 12:29:57 1 15 2019-11-04 12:54:57 1 15 2019-11-04 12:54:57 2 1 2019-11-04 13:24:57 1 11 2019-11-04 13:34:57 1 11 2019-11-04 13:49:57 1 13 2019-11-04 13:54:57 1 13 2019-11-04 14:39:57 1 8 2019-11-04 14:54:57 1 11 2019-11-04 14:54:57 2 2 2019-11-04 14:59:57 1 9 2019-11-04 14:59:57 2 2 2019-11-04 15:09:57 1 9 2019-11-04 15:09:57 2 3 2019-11-04 15:14:57 1 10 2019-11-04 15:14:57 2 3 2019-11-04 15:24:57 1 13 2019-11-04 15:24:57 2 2 2019-11-04 15:34:57 1 12 2019-11-04 15:34:57 2 2 2019-11-04 15:39:57 1 13 2019-11-04 15:39:57 2 2 2019-11-04 15:44:57 1 12 2019-11-04 15:44:57 2 3 2019-11-04 15:49:57 1 12 2019-11-04 15:49:57 2 3 2019-11-04 15:54:57 1 11 2019-11-04 15:54:57 2 3 2019-11-04 15:59:57 1 11 2019-11-04 15:59:57 2 2 2019-11-04 16:09:57 1 11 2019-11-04 16:09:57 2 2 2019-11-04 16:14:57 1 10 2019-11-04 16:14:57 2 2 2019-11-04 16:34:57 1 14 2019-11-04 16:34:57 2 1 2019-11-04 16:39:57 1 14 2019-11-04 16:39:57 2 2 2019-11-04 16:44:57 1 15 2019-11-04 16:44:57 2 2 2019-11-04 16:49:57 1 14 2019-11-04 16:49:57 2 1 2019-11-04 16:54:57 1 13 2019-11-04 16:59:57 1 11 2019-11-03 16:49:57 1 12 2019-11-03 16:49:57 2 1 2019-11-03 17:04:57 1 10 2019-11-03 17:04:57 2 2 2019-11-03 17:19:57 1 12 2019-11-03 17:19:57 2 2 2019-11-03 17:49:57 1 9 2019-11-03 17:49:57 2 2 2019-11-03 18:09:57 1 12 2019-11-03 18:09:57 2 2 2019-11-03 18:19:57 1 12 2019-11-03 18:19:57 2 1 2019-11-03 18:24:57 1 11 2019-11-03 18:24:57 2 1 2019-11-03 18:44:57 1 12 2019-11-03 19:04:57 1 13 2019-11-03 19:14:57 1 12 2019-11-03 19:19:57 1 13 2019-11-03 19:34:57 1 14 2019-11-03 19:49:57 1 17 2019-11-03 19:54:57 1 18 2019-11-03 20:44:57 1 15 2019-11-03 20:44:57 2 1 2019-11-03 20:59:57 1 16 2019-11-03 21:04:57 1 15 2019-11-03 21:14:57 1 19 2019-11-03 21:14:57 2 1 2019-11-03 21:29:57 1 19 2019-11-03 21:29:57 2 1 2019-11-03 21:34:57 1 16 2019-11-03 21:34:57 2 1 2019-11-03 21:39:57 1 16 2019-11-03 21:39:57 2 1 2019-11-03 21:59:57 1 16 2019-11-03 21:59:57 2 1 2019-11-03 22:14:57 1 19 2019-11-03 22:14:57 2 1 2019-11-03 22:34:57 1 17 2019-11-03 22:34:57 2 1 2019-11-03 22:59:57 1 18 2019-11-03 22:59:57 2 1 2019-11-03 23:29:57 1 13 2019-11-03 23:44:57 1 11 2019-11-03 23:59:57 1 12 2019-11-04 00:04:57 1 12 2019-11-04 00:04:57 2 1 2019-11-04 00:24:57 1 7 2019-11-04 00:24:57 2 2 2019-11-04 01:19:57 1 7 2019-11-04 01:19:57 2 2 2019-11-04 01:44:57 1 7 2019-11-04 01:44:57 2 1 2019-11-04 01:54:57 1 7 2019-11-04 01:54:57 2 1 2019-11-04 02:24:57 1 5 2019-11-04 02:24:57 2 1 2019-11-04 02:44:57 1 6 2019-11-04 02:44:57 2 1 2019-11-04 02:49:57 1 6 2019-11-04 02:49:57 2 1 2019-11-04 03:49:57 1 5 2019-11-04 03:49:57 2 1 2019-11-04 03:59:57 1 5 2019-11-04 03:59:57 2 1 2019-11-04 04:14:57 1 5 2019-11-04 04:14:57 2 1 2019-11-04 04:19:57 1 5 2019-11-04 04:19:57 2 1 2019-11-04 04:24:57 1 5 2019-11-04 04:24:57 2 1 2019-11-04 04:29:57 1 5 2019-11-04 04:29:57 2 1 2019-11-04 05:09:57 1 6 2019-11-04 05:09:57 2 1 2019-11-04 05:14:57 1 6 2019-11-04 05:14:57 2 1 2019-11-04 05:24:57 1 7 2019-11-04 05:24:57 2 1 2019-11-04 05:29:57 1 8 2019-11-04 05:29:57 2 1 2019-11-04 05:34:57 1 8 2019-11-04 05:34:57 2 2 2019-11-04 05:39:57 1 9 2019-11-04 05:39:57 2 2 2019-11-04 05:49:57 1 9 2019-11-04 05:49:57 2 2 2019-11-04 05:54:57 1 8 2019-11-04 05:54:57 2 1 2019-11-04 06:04:57 1 9 2019-11-04 06:04:57 2 1 2019-11-04 06:14:57 1 8 2019-11-04 06:14:57 2 1 2019-11-04 06:39:57 1 9 2019-11-04 06:39:57 2 1 2019-11-04 07:39:57 1 7 2019-11-04 07:39:57 2 3 2019-11-04 07:54:57 1 9 2019-11-04 07:54:57 2 2 2019-11-04 07:59:57 1 10 2019-11-04 07:59:57 2 2 2019-11-04 08:54:57 1 12 2019-11-04 08:54:57 2 2 2019-11-04 09:29:57 1 14 2019-11-04 09:29:57 2 2 2019-11-04 09:54:57 1 17 2019-11-04 09:54:57 2 1 2019-11-04 10:04:57 1 14 2019-11-04 10:04:57 2 1 2019-11-04 10:09:57 1 13 2019-11-04 10:09:57 2 1 2019-11-04 11:19:57 1 16 2019-11-04 11:19:57 2 1 2019-11-04 11:29:57 1 15 2019-11-04 11:29:57 2 1 2019-11-04 11:39:57 1 15 2019-11-04 11:39:57 2 1 2019-11-04 11:44:57 1 13 2019-11-04 11:44:57 2 1 2019-11-04 11:54:57 1 14 2019-11-04 12:04:57 1 13 2019-11-04 12:34:57 1 15 2019-11-04 12:39:57 1 15 2019-11-04 12:49:57 1 15 2019-11-04 12:49:57 2 1 2019-11-04 12:59:57 1 16 2019-11-04 12:59:57 2 1 2019-11-04 13:14:57 1 15 2019-11-04 13:29:57 1 10 2019-11-04 13:39:57 1 16 2019-11-04 13:59:57 1 15 2019-11-04 14:04:57 1 16 2019-11-04 14:14:57 1 13 2019-11-04 14:44:57 1 8 2019-11-04 15:04:57 1 9 2019-11-04 15:04:57 2 3 2019-11-04 15:19:57 1 10 2019-11-04 15:19:57 2 3 2019-11-04 15:29:58 1 12 2019-11-04 15:29:58 2 2 2019-11-04 16:04:57 1 11 2019-11-04 16:04:57 2 2 2019-11-04 16:19:57 1 10 2019-11-04 16:19:57 2 1 2019-11-04 16:24:57 1 10 2019-11-04 16:24:57 2 1 2019-11-04 16:29:57 1 14 2019-11-04 16:29:57 2 1 2019-11-04 17:04:57 1 12 2019-11-04 17:04:57 2 1 2019-11-04 17:09:57 1 13 2019-11-04 17:09:57 2 1 2019-11-04 17:14:57 1 12 2019-11-04 17:14:57 2 1 2019-11-04 17:19:57 1 11 2019-11-04 17:24:57 1 11 2019-11-04 17:29:57 1 11 2019-11-04 17:34:57 1 10 2019-11-04 17:34:57 2 1 2019-11-04 17:39:57 1 9 2019-11-04 17:44:57 1 9 2019-11-04 17:44:57 2 1 2019-11-04 17:49:57 1 9 2019-11-04 17:54:57 1 9 2019-11-04 17:59:57 1 11 2019-11-04 18:04:57 1 10 2019-11-04 18:09:57 1 8 2019-11-04 18:14:57 1 8 2019-11-04 18:19:57 1 9 2019-11-04 18:24:57 1 11 2019-11-04 18:24:57 2 1 2019-11-04 18:29:57 1 9 2019-11-04 18:29:57 2 1 2019-11-04 18:34:57 1 10 2019-11-04 18:34:57 2 2 2019-11-04 18:39:57 1 11 2019-11-04 18:39:57 2 2 2019-11-04 18:44:57 1 12 2019-11-04 18:44:57 2 1 2019-11-04 18:49:57 1 12 2019-11-04 18:49:57 2 1 2019-11-04 18:54:57 1 14 2019-11-04 18:54:57 2 1 2019-11-04 18:59:57 1 9 2019-11-04 18:59:57 2 1 2019-11-04 19:04:57 1 14 2019-11-03 16:54:57 1 12 2019-11-03 16:54:57 2 2 2019-11-03 17:09:57 1 10 2019-11-03 17:09:57 2 2 2019-11-03 17:29:57 1 11 2019-11-03 17:29:57 2 2 2019-11-03 17:34:57 1 11 2019-11-03 17:34:57 2 2 2019-11-03 17:39:57 1 10 2019-11-03 17:39:57 2 2 2019-11-03 17:44:57 1 7 2019-11-03 17:44:57 2 2 2019-11-03 17:54:57 1 9 2019-11-03 17:54:57 2 2 2019-11-03 18:04:57 1 10 2019-11-03 18:04:57 2 2 2019-11-03 18:14:57 1 14 2019-11-03 18:14:57 2 2 2019-11-03 18:39:57 1 11 2019-11-03 18:49:57 1 10 2019-11-03 19:09:57 1 13 2019-11-03 19:24:57 1 15 2019-11-03 19:29:57 1 15 2019-11-03 19:39:57 1 16 2019-11-03 19:44:57 1 16 2019-11-03 19:59:57 1 17 2019-11-03 19:59:57 2 1 2019-11-03 20:14:57 1 16 2019-11-03 20:14:57 2 2 2019-11-03 20:24:57 1 15 2019-11-03 20:24:57 2 1 2019-11-03 20:29:57 1 15 2019-11-03 20:29:57 2 1 2019-11-03 20:39:57 1 13 2019-11-03 20:39:57 2 1 2019-11-03 20:54:57 1 17 2019-11-03 20:54:57 2 1 2019-11-03 21:44:57 1 17 2019-11-03 21:44:57 2 1 2019-11-03 21:49:57 1 17 2019-11-03 21:49:57 2 1 2019-11-03 21:54:57 1 18 2019-11-03 21:54:57 2 1 2019-11-03 22:04:57 1 21 2019-11-03 22:04:57 2 1 2019-11-03 22:24:57 1 20 2019-11-03 22:24:57 2 1 2019-11-03 22:29:57 1 19 2019-11-03 22:29:57 2 1 2019-11-03 22:44:57 1 17 2019-11-03 22:44:57 2 1 2019-11-03 22:49:57 1 19 2019-11-03 22:49:57 2 1 2019-11-03 22:54:57 1 18 2019-11-03 22:54:57 2 1 2019-11-03 23:04:57 1 17 2019-11-03 23:09:57 1 17 2019-11-03 23:09:57 2 1 2019-11-03 23:49:57 1 11 2019-11-03 23:54:57 1 11 2019-11-04 00:09:57 1 11 2019-11-04 00:09:57 2 2 2019-11-04 00:49:57 1 7 2019-11-04 00:49:57 2 2 2019-11-04 01:09:57 1 7 2019-11-04 01:09:57 2 2 2019-11-04 01:24:58 1 7 2019-11-04 01:24:58 2 2 2019-11-04 01:39:57 1 7 2019-11-04 01:39:57 2 2 2019-11-04 01:49:57 1 7 2019-11-04 01:49:57 2 1 2019-11-04 02:04:57 1 7 2019-11-04 02:04:57 2 1 2019-11-04 02:19:57 1 5 2019-11-04 02:19:57 2 1 2019-11-04 02:29:57 1 5 2019-11-04 02:29:57 2 1 2019-11-04 02:39:57 1 5 2019-11-04 02:39:57 2 1 2019-11-04 02:54:57 1 6 2019-11-04 02:54:57 2 1 2019-11-04 02:59:57 1 6 2019-11-04 02:59:57 2 1 2019-11-04 03:04:57 1 6 2019-11-04 03:04:57 2 1 2019-11-04 03:09:57 1 5 2019-11-04 03:09:57 2 1 2019-11-04 03:14:57 1 5 2019-11-04 03:14:57 2 1 2019-11-04 03:19:57 1 5 2019-11-04 03:19:57 2 1 2019-11-04 03:24:57 1 5 2019-11-04 03:24:57 2 1 2019-11-04 03:29:57 1 5 2019-11-04 03:29:57 2 1 2019-11-04 03:39:57 1 5 2019-11-04 03:39:57 2 1 2019-11-04 03:44:57 1 6 2019-11-04 03:44:57 2 1 2019-11-04 03:54:57 1 5 2019-11-04 03:54:57 2 1 2019-11-04 04:44:57 1 6 2019-11-04 04:44:57 2 1 2019-11-04 04:49:57 1 6 2019-11-04 04:49:57 2 1 2019-11-04 04:54:57 1 6 2019-11-04 04:54:57 2 1 2019-11-04 04:59:57 1 6 2019-11-04 04:59:57 2 1 2019-11-04 05:04:57 1 6 2019-11-04 05:04:57 2 1 2019-11-04 05:59:57 1 10 2019-11-04 05:59:57 2 1 2019-11-04 06:19:57 1 8 2019-11-04 06:19:57 2 1 2019-11-04 06:29:57 1 10 2019-11-04 06:29:57 2 1 2019-11-04 06:34:57 1 8 2019-11-04 06:34:57 2 1 2019-11-04 06:44:57 1 10 2019-11-04 06:44:57 2 1 2019-11-04 06:54:57 1 9 2019-11-04 06:54:57 2 1 2019-11-04 07:19:57 1 9 2019-11-04 07:24:57 1 10 2019-11-04 07:34:57 1 7 2019-11-04 07:34:57 2 2 2019-11-04 07:44:57 1 10 2019-11-04 07:44:57 2 3 2019-11-04 07:49:57 1 9 2019-11-04 07:49:57 2 3 2019-11-04 08:04:57 1 8 2019-11-04 08:04:57 2 2 2019-11-04 08:09:57 1 9 2019-11-04 08:09:57 2 3 2019-11-04 08:14:57 1 11 2019-11-04 08:14:57 2 2 2019-11-04 08:19:57 1 11 2019-11-04 08:19:57 2 2 2019-11-04 08:24:57 1 13 2019-11-04 08:24:57 2 2 2019-11-04 08:29:57 1 11 2019-11-04 08:29:57 2 2 2019-11-04 08:39:57 1 9 2019-11-04 08:39:57 2 3 2019-11-04 08:44:57 1 10 2019-11-04 08:44:57 2 2 2019-11-04 08:49:57 1 11 2019-11-04 08:49:57 2 2 2019-11-04 09:19:57 1 16 2019-11-04 09:19:57 2 2 2019-11-04 09:24:57 1 12 2019-11-04 09:24:57 2 2 2019-11-04 09:49:57 1 17 2019-11-04 09:49:57 2 1 2019-11-04 10:34:57 1 17 2019-11-04 10:34:57 2 1 2019-11-04 10:54:57 1 16 2019-11-04 10:54:57 2 1 2019-11-04 10:59:57 1 16 2019-11-04 10:59:57 2 1 2019-11-04 11:04:57 1 18 2019-11-04 11:04:57 2 1 2019-11-04 11:09:57 1 19 2019-11-04 11:09:57 2 1 2019-11-04 11:49:57 1 14 2019-11-04 11:49:57 2 1 2019-11-04 11:59:57 1 13 2019-11-04 12:09:57 1 13 2019-11-04 12:14:57 1 14 2019-11-04 12:19:57 1 14 2019-11-04 12:44:57 1 14 2019-11-04 13:04:57 1 13 2019-11-04 13:04:57 2 1 2019-11-04 13:09:57 1 16 2019-11-04 13:19:57 1 11 2019-11-04 13:44:57 1 16 2019-11-04 14:09:57 1 15 2019-11-04 14:19:57 1 13 2019-11-04 14:24:57 1 12 2019-11-04 14:29:57 1 11 2019-11-04 14:34:57 1 12 2019-11-04 14:49:57 1 12 2019-11-04 14:49:57 2 1 2019-11-04 19:04:57 2 1 2019-11-04 19:14:57 1 13 2019-11-04 19:19:57 1 12 2019-11-04 19:19:57 2 1 2019-11-04 19:34:57 1 15 2019-11-04 19:39:57 1 14 2019-11-04 19:44:57 1 13 2019-11-04 19:44:57 2 1 2019-11-04 20:29:57 1 16 2019-11-04 20:29:57 2 1 2019-11-04 20:54:57 1 13 2019-11-04 21:04:57 1 13 2019-11-04 21:19:57 1 16 2019-11-04 21:34:57 1 13 2019-11-04 21:44:58 1 15 2019-11-04 21:49:57 1 14 2019-11-04 21:49:57 2 1 2019-11-04 21:59:57 1 16 2019-11-04 21:59:57 2 1 2019-11-04 22:04:57 1 16 2019-11-04 22:04:57 2 1 2019-11-04 22:19:57 1 16 2019-11-04 22:19:57 2 1 2019-11-04 22:24:57 1 18 2019-11-04 22:24:57 2 1 2019-11-04 23:24:57 1 14 2019-11-04 23:34:57 1 14 2019-11-04 23:34:57 2 1 2019-11-05 00:34:57 1 11 2019-11-05 00:59:57 1 11 2019-11-05 00:59:57 2 1 2019-11-05 01:09:57 1 9 2019-11-05 01:09:57 2 1 2019-11-05 01:34:57 1 8 2019-11-05 01:59:57 1 8 2019-11-05 02:14:57 1 8 2019-11-05 02:19:57 1 7 2019-11-05 02:24:57 1 7 2019-11-05 02:54:57 1 7 2019-11-05 03:29:57 1 7 2019-11-05 03:34:57 1 7 2019-11-05 03:54:57 1 7 2019-11-05 04:04:57 1 7 2019-11-05 04:14:57 1 7 2019-11-05 04:19:57 1 6 2019-11-05 04:24:57 1 6 2019-11-05 04:29:57 1 6 2019-11-05 04:54:57 1 6 2019-11-05 05:14:57 1 9 2019-11-05 05:29:57 1 7 2019-11-05 05:34:57 1 8 2019-11-05 05:54:57 1 8 2019-11-05 05:59:57 1 9 2019-11-05 06:19:57 1 7 2019-11-05 06:29:57 1 7 2019-11-05 06:44:57 1 9 2019-11-05 06:49:57 1 10 2019-11-05 06:54:57 1 9 2019-11-05 07:24:57 1 9 2019-11-05 07:29:57 1 11 2019-11-05 07:34:57 1 8 2019-11-05 07:44:57 1 8 2019-11-05 07:49:57 1 5 2019-11-05 07:54:57 1 6 2019-11-05 07:59:57 1 7 2019-11-05 08:04:57 1 9 2019-11-05 08:29:57 1 9 2019-11-05 08:44:57 1 13 2019-11-05 08:44:57 2 1 2019-11-05 08:54:57 1 14 2019-11-05 08:54:57 2 1 2019-11-05 09:09:57 1 12 2019-11-05 09:09:57 2 1 2019-11-05 09:14:57 1 14 2019-11-05 09:14:57 2 1 2019-11-05 10:04:57 1 9 2019-11-05 10:04:57 2 1 2019-11-05 10:19:57 1 10 2019-11-05 10:19:57 2 1 2019-11-05 10:39:57 1 11 2019-11-05 10:39:57 2 2 2019-11-05 10:54:57 1 10 2019-11-05 10:54:57 2 2 2019-11-05 11:04:57 1 15 2019-11-05 11:04:57 2 3 2019-11-05 11:09:57 1 14 2019-11-05 11:09:57 2 3 2019-11-05 11:14:57 1 14 2019-11-05 11:14:57 2 3 2019-11-05 11:24:57 1 12 2019-11-05 11:24:57 2 1 2019-11-05 11:44:57 1 18 2019-11-05 11:44:57 2 1 2019-11-05 11:49:57 1 18 2019-11-05 11:49:57 2 2 2019-11-05 11:54:57 1 17 2019-11-05 11:54:57 2 2 2019-11-05 12:19:57 1 17 2019-11-05 12:19:57 2 1 2019-11-05 12:39:57 1 15 2019-11-05 12:39:57 2 2 2019-11-05 12:54:57 1 15 2019-11-05 12:54:57 2 1 2019-11-05 13:14:57 1 15 2019-11-05 13:19:57 1 15 2019-11-05 13:24:57 1 17 2019-11-05 13:34:57 1 14 2019-11-05 14:09:57 1 14 2019-11-05 14:24:57 1 18 2019-11-05 14:39:57 1 15 2019-11-05 14:54:57 1 14 2019-11-05 14:59:57 1 14 2019-11-05 15:09:57 1 17 2019-11-05 15:19:57 1 17 2019-11-05 15:24:57 1 18 2019-11-05 15:34:57 1 16 2019-11-05 15:54:57 1 13 2019-11-05 16:04:57 1 15 2019-11-05 16:29:57 1 15 2019-11-05 16:49:57 1 14 2019-11-05 16:54:57 1 15 2019-11-05 17:09:57 1 15 2019-11-05 17:14:57 1 16 2019-11-05 17:49:57 1 20 2019-11-05 17:59:57 1 19 2019-11-05 18:14:57 1 19 2019-11-05 18:19:57 1 23 2019-11-05 18:29:57 1 18 2019-11-05 18:44:58 1 21 2019-11-05 19:04:57 1 15 2019-11-05 19:14:57 1 18 2019-11-05 19:19:57 1 17 2019-11-05 19:34:57 1 18 2019-11-05 19:49:57 1 19 2019-11-05 20:04:57 1 19 2019-11-05 20:14:57 1 17 2019-11-05 20:19:57 1 20 2019-11-05 20:34:57 1 22 2019-11-05 20:39:57 1 21 2019-11-05 21:04:57 1 19 2019-11-05 21:14:57 1 19 2019-11-05 21:24:57 1 19 2019-11-05 21:39:57 1 23 2019-11-05 22:04:57 1 20 2019-11-05 22:14:57 1 21 2019-11-05 22:39:57 1 21 2019-11-05 22:54:57 1 16 2019-11-05 23:29:57 1 20 2019-11-05 23:39:57 1 20 2019-11-05 23:59:57 1 18 2019-11-06 01:19:57 1 13 2019-11-06 01:54:57 1 13 2019-11-06 01:59:57 1 13 2019-11-06 02:09:57 1 12 2019-11-06 02:14:57 1 11 2019-11-06 02:34:57 1 9 2019-11-06 02:39:57 1 9 2019-11-06 03:14:57 1 9 2019-11-06 03:49:57 1 9 2019-11-06 03:54:57 1 9 2019-11-06 03:59:57 1 9 2019-11-06 04:04:57 1 9 2019-11-06 04:19:57 1 8 2019-11-06 04:39:57 1 7 2019-11-06 05:09:57 1 9 2019-11-06 05:44:57 1 9 2019-11-06 06:29:57 1 9 2019-11-06 06:34:57 1 9 2019-11-06 06:39:57 1 10 2019-11-06 06:44:57 1 10 2019-11-06 06:54:57 1 13 2019-11-06 07:29:57 1 9 2019-11-06 07:34:57 1 10 2019-11-06 07:49:57 1 9 2019-11-06 07:59:57 1 8 2019-11-06 08:04:57 1 7 2019-11-06 08:09:57 1 9 2019-11-06 08:34:57 1 9 2019-11-06 08:44:57 1 11 2019-11-06 08:49:57 1 11 2019-11-06 08:54:57 1 11 2019-11-06 09:04:57 1 11 2019-11-06 09:09:57 1 12 2019-11-06 09:24:57 1 15 2019-11-06 09:29:57 1 14 2019-11-04 19:09:57 1 11 2019-11-04 19:49:57 1 17 2019-11-04 19:49:57 2 1 2019-11-04 19:54:57 1 15 2019-11-04 20:04:57 1 16 2019-11-04 20:09:57 1 17 2019-11-04 20:39:57 1 14 2019-11-04 20:44:57 1 14 2019-11-04 20:49:57 1 15 2019-11-04 20:59:57 1 13 2019-11-04 21:24:57 1 16 2019-11-04 21:39:57 1 13 2019-11-04 21:54:57 1 17 2019-11-04 21:54:57 2 1 2019-11-04 22:09:57 1 16 2019-11-04 22:09:57 2 1 2019-11-04 22:14:57 1 16 2019-11-04 22:14:57 2 1 2019-11-04 22:59:57 1 22 2019-11-04 22:59:57 2 1 2019-11-04 23:19:57 1 17 2019-11-04 23:29:57 1 13 2019-11-04 23:29:57 2 1 2019-11-04 23:49:57 1 12 2019-11-04 23:49:57 2 1 2019-11-04 23:59:57 1 11 2019-11-05 00:14:57 1 9 2019-11-05 00:19:57 1 11 2019-11-05 00:24:57 1 11 2019-11-05 00:29:57 1 10 2019-11-05 00:39:57 1 11 2019-11-05 00:39:57 2 1 2019-11-05 00:44:57 1 10 2019-11-05 00:44:57 2 1 2019-11-05 00:54:57 1 11 2019-11-05 00:54:57 2 1 2019-11-05 01:04:57 1 10 2019-11-05 01:04:57 2 1 2019-11-05 01:29:57 1 9 2019-11-05 01:44:57 1 8 2019-11-05 01:54:57 1 8 2019-11-05 02:04:57 1 8 2019-11-05 02:39:57 1 7 2019-11-05 02:44:57 1 7 2019-11-05 03:04:57 1 6 2019-11-05 03:09:57 1 6 2019-11-05 03:59:57 1 7 2019-11-05 04:09:57 1 6 2019-11-05 04:34:57 1 6 2019-11-05 04:39:57 1 6 2019-11-05 04:44:57 1 7 2019-11-05 05:04:57 1 8 2019-11-05 05:39:57 1 7 2019-11-05 05:44:57 1 8 2019-11-05 06:09:57 1 10 2019-11-05 06:14:57 1 8 2019-11-05 06:34:57 1 8 2019-11-05 06:39:57 1 8 2019-11-05 06:59:57 1 9 2019-11-05 07:09:57 1 8 2019-11-05 07:14:57 1 9 2019-11-05 07:19:57 1 7 2019-11-05 07:39:57 1 10 2019-11-05 08:09:57 1 11 2019-11-05 08:14:57 1 11 2019-11-05 08:19:57 1 12 2019-11-05 08:24:57 1 11 2019-11-05 08:39:57 1 12 2019-11-05 08:39:57 2 1 2019-11-05 08:49:57 1 12 2019-11-05 08:49:57 2 1 2019-11-05 08:59:57 1 12 2019-11-05 08:59:57 2 1 2019-11-05 09:04:57 1 15 2019-11-05 09:04:57 2 1 2019-11-05 09:29:57 1 15 2019-11-05 09:29:57 2 1 2019-11-05 09:34:57 1 13 2019-11-05 09:34:57 2 2 2019-11-05 09:39:57 1 14 2019-11-05 09:39:57 2 2 2019-11-05 09:49:57 1 13 2019-11-05 09:49:57 2 2 2019-11-05 09:54:57 1 12 2019-11-05 09:54:57 2 2 2019-11-05 09:59:57 1 11 2019-11-05 09:59:57 2 1 2019-11-05 10:09:57 1 9 2019-11-05 10:09:57 2 1 2019-11-05 10:29:57 1 15 2019-11-05 10:29:57 2 2 2019-11-05 10:44:57 1 13 2019-11-05 10:44:57 2 2 2019-11-05 10:49:57 1 13 2019-11-05 10:49:57 2 2 2019-11-05 11:39:57 1 15 2019-11-05 11:39:57 2 1 2019-11-05 11:59:57 1 17 2019-11-05 11:59:57 2 3 2019-11-05 12:04:57 1 16 2019-11-05 12:04:57 2 3 2019-11-05 12:09:57 1 17 2019-11-05 12:09:57 2 3 2019-11-05 12:24:57 1 17 2019-11-05 12:24:57 2 2 2019-11-05 12:44:57 1 16 2019-11-05 12:44:57 2 1 2019-11-05 13:04:57 1 16 2019-11-05 13:04:57 2 1 2019-11-05 13:39:57 1 15 2019-11-05 14:29:57 1 17 2019-11-05 14:34:57 1 18 2019-11-05 14:49:57 1 15 2019-11-05 15:14:57 1 16 2019-11-05 15:14:57 2 1 2019-11-05 15:39:57 1 13 2019-11-05 16:14:57 1 15 2019-11-05 16:19:57 1 15 2019-11-05 17:04:57 1 14 2019-11-05 17:19:57 1 18 2019-11-05 17:39:57 1 19 2019-11-05 17:44:57 1 18 2019-11-05 17:54:57 1 20 2019-11-05 18:24:57 1 19 2019-11-05 18:49:57 1 21 2019-11-05 19:24:57 1 16 2019-11-05 19:39:57 1 22 2019-11-05 20:49:57 1 20 2019-11-05 21:19:57 1 18 2019-11-05 21:29:57 1 15 2019-11-05 22:09:57 1 24 2019-11-05 22:19:57 1 22 2019-11-05 22:29:57 1 20 2019-11-05 22:34:57 1 21 2019-11-05 22:44:57 1 19 2019-11-05 22:49:57 1 20 2019-11-05 23:09:57 1 18 2019-11-05 23:19:57 1 18 2019-11-05 23:24:57 1 21 2019-11-05 23:49:57 1 18 2019-11-06 00:14:57 1 15 2019-11-06 00:19:57 1 16 2019-11-06 00:24:57 1 17 2019-11-06 00:29:57 1 17 2019-11-06 00:34:57 1 15 2019-11-06 00:39:57 1 15 2019-11-06 00:44:57 1 15 2019-11-06 00:54:57 1 14 2019-11-06 00:59:57 1 13 2019-11-06 01:24:57 1 14 2019-11-06 01:29:57 1 14 2019-11-06 01:34:57 1 13 2019-11-06 01:44:57 1 13 2019-11-06 02:04:57 1 12 2019-11-06 02:24:57 1 9 2019-11-06 02:29:57 1 9 2019-11-06 02:44:57 1 9 2019-11-06 02:49:57 1 10 2019-11-06 02:54:57 1 8 2019-11-06 03:19:57 1 9 2019-11-06 03:29:57 1 9 2019-11-06 03:39:57 1 10 2019-11-06 03:44:57 1 10 2019-11-06 04:09:57 1 10 2019-11-06 04:14:57 1 10 2019-11-06 04:24:57 1 8 2019-11-06 04:34:57 1 8 2019-11-06 04:44:57 1 7 2019-11-06 04:49:57 1 8 2019-11-06 05:19:57 1 10 2019-11-06 05:29:57 1 8 2019-11-06 05:34:57 1 8 2019-11-06 05:39:57 1 9 2019-11-06 05:59:57 1 10 2019-11-06 06:04:57 1 10 2019-11-06 06:19:57 1 9 2019-11-06 06:24:57 1 9 2019-11-06 06:59:57 1 12 2019-11-06 07:04:57 1 9 2019-11-06 07:09:57 1 9 2019-11-06 07:44:57 1 9 2019-11-06 08:24:57 1 9 2019-11-06 08:39:57 1 10 2019-11-06 09:14:57 1 12 2019-11-06 09:19:57 1 13 2019-11-04 19:24:57 1 12 2019-11-04 19:24:57 2 1 2019-11-04 19:29:57 1 12 2019-11-04 19:29:57 2 1 2019-11-04 19:59:57 1 15 2019-11-04 20:14:57 1 15 2019-11-04 20:19:57 1 15 2019-11-04 20:24:57 1 17 2019-11-04 20:34:57 1 15 2019-11-04 20:34:57 2 1 2019-11-04 21:09:57 1 14 2019-11-04 21:14:57 1 14 2019-11-04 21:14:57 2 1 2019-11-04 21:29:57 1 13 2019-11-04 22:29:57 1 21 2019-11-04 22:29:57 2 1 2019-11-04 22:34:57 1 23 2019-11-04 22:34:57 2 1 2019-11-04 22:39:57 1 24 2019-11-04 22:39:57 2 1 2019-11-04 22:44:57 1 23 2019-11-04 22:44:57 2 1 2019-11-04 22:49:57 1 22 2019-11-04 22:54:57 1 21 2019-11-04 22:54:57 2 1 2019-11-04 23:04:57 1 19 2019-11-04 23:04:57 2 1 2019-11-04 23:09:57 1 20 2019-11-04 23:14:57 1 18 2019-11-04 23:39:57 1 13 2019-11-04 23:44:57 1 12 2019-11-04 23:44:57 2 1 2019-11-04 23:54:57 1 12 2019-11-04 23:54:57 2 1 2019-11-05 00:04:57 1 10 2019-11-05 00:09:57 1 9 2019-11-05 00:49:57 1 12 2019-11-05 00:49:57 2 1 2019-11-05 01:14:57 1 8 2019-11-05 01:14:57 2 1 2019-11-05 01:19:57 1 7 2019-11-05 01:19:57 2 1 2019-11-05 01:24:57 1 9 2019-11-05 01:39:57 1 8 2019-11-05 01:49:57 1 8 2019-11-05 02:09:57 1 8 2019-11-05 02:29:57 1 7 2019-11-05 02:34:57 1 7 2019-11-05 02:49:57 1 7 2019-11-05 02:59:57 1 8 2019-11-05 03:14:57 1 6 2019-11-05 03:19:57 1 7 2019-11-05 03:24:57 1 7 2019-11-05 03:39:57 1 8 2019-11-05 03:44:57 1 7 2019-11-05 03:49:57 1 7 2019-11-05 04:49:57 1 7 2019-11-05 04:59:57 1 7 2019-11-05 05:09:57 1 7 2019-11-05 05:19:57 1 9 2019-11-05 05:24:57 1 7 2019-11-05 05:49:57 1 9 2019-11-05 06:04:57 1 9 2019-11-05 06:24:57 1 7 2019-11-05 07:04:57 1 9 2019-11-05 08:34:57 1 10 2019-11-05 09:19:57 1 12 2019-11-05 09:19:57 2 1 2019-11-05 09:24:57 1 11 2019-11-05 09:24:57 2 1 2019-11-05 09:44:57 1 14 2019-11-05 09:44:57 2 2 2019-11-05 10:14:57 1 10 2019-11-05 10:14:57 2 1 2019-11-05 10:24:57 1 13 2019-11-05 10:24:57 2 1 2019-11-05 10:34:57 1 11 2019-11-05 10:34:57 2 4 2019-11-05 10:59:57 1 12 2019-11-05 10:59:57 2 3 2019-11-05 11:19:57 1 13 2019-11-05 11:19:57 2 3 2019-11-05 11:29:57 1 15 2019-11-05 11:29:57 2 1 2019-11-05 11:34:57 1 16 2019-11-05 11:34:57 2 1 2019-11-05 12:14:57 1 17 2019-11-05 12:14:57 2 2 2019-11-05 12:29:57 1 16 2019-11-05 12:29:57 2 2 2019-11-05 12:34:57 1 16 2019-11-05 12:34:57 2 2 2019-11-05 12:49:57 1 14 2019-11-05 12:49:57 2 1 2019-11-05 12:59:57 1 14 2019-11-05 12:59:57 2 1 2019-11-05 13:09:58 1 15 2019-11-05 13:09:58 2 1 2019-11-05 13:29:57 1 12 2019-11-05 13:44:57 1 13 2019-11-05 13:49:57 1 15 2019-11-05 13:54:57 1 14 2019-11-05 13:59:57 1 13 2019-11-05 14:04:57 1 12 2019-11-05 14:14:57 1 14 2019-11-05 14:19:57 1 16 2019-11-05 14:44:57 1 17 2019-11-05 15:04:57 1 16 2019-11-05 15:29:57 1 16 2019-11-05 15:44:57 1 13 2019-11-05 15:49:57 1 11 2019-11-05 15:59:57 1 14 2019-11-05 16:09:57 1 17 2019-11-05 16:24:57 1 16 2019-11-05 16:34:57 1 13 2019-11-05 16:39:57 1 14 2019-11-05 16:44:57 1 16 2019-11-05 16:59:57 1 15 2019-11-05 17:24:57 1 18 2019-11-05 17:29:57 1 16 2019-11-05 17:34:57 1 16 2019-11-05 18:04:57 1 19 2019-11-05 18:09:57 1 20 2019-11-05 18:34:57 1 20 2019-11-05 18:39:57 1 20 2019-11-05 18:54:57 1 16 2019-11-05 18:59:57 1 16 2019-11-05 19:09:57 1 17 2019-11-05 19:29:57 1 14 2019-11-05 19:44:57 1 18 2019-11-05 19:54:57 1 19 2019-11-05 19:59:57 1 15 2019-11-05 20:09:57 1 19 2019-11-05 20:24:57 1 21 2019-11-05 20:29:57 1 22 2019-11-05 20:44:57 1 20 2019-11-05 20:54:57 1 17 2019-11-05 20:59:57 1 20 2019-11-05 21:09:57 1 18 2019-11-05 21:34:57 1 19 2019-11-05 21:44:57 1 21 2019-11-05 21:49:57 1 22 2019-11-05 21:54:57 1 22 2019-11-05 21:59:57 1 19 2019-11-05 22:24:57 1 21 2019-11-05 22:59:57 1 18 2019-11-05 23:04:57 1 18 2019-11-05 23:14:57 1 21 2019-11-05 23:34:57 1 20 2019-11-05 23:44:57 1 18 2019-11-05 23:54:57 1 17 2019-11-06 00:04:57 1 19 2019-11-06 00:09:57 1 19 2019-11-06 00:49:57 1 15 2019-11-06 01:04:57 1 13 2019-11-06 01:09:57 1 14 2019-11-06 01:14:57 1 14 2019-11-06 01:39:57 1 13 2019-11-06 01:49:57 1 13 2019-11-06 02:19:57 1 11 2019-11-06 02:59:57 1 9 2019-11-06 03:04:57 1 9 2019-11-06 03:09:57 1 8 2019-11-06 03:24:57 1 9 2019-11-06 03:34:57 1 10 2019-11-06 04:29:57 1 8 2019-11-06 04:54:57 1 9 2019-11-06 04:59:57 1 9 2019-11-06 05:04:57 1 9 2019-11-06 05:14:57 1 9 2019-11-06 05:24:57 1 8 2019-11-06 05:49:57 1 9 2019-11-06 05:54:57 1 10 2019-11-06 06:09:57 1 10 2019-11-06 06:14:57 1 10 2019-11-06 06:49:57 1 10 2019-11-06 07:14:57 1 8 2019-11-06 07:19:57 1 8 2019-11-06 07:24:57 1 9 2019-11-06 07:39:57 1 9 2019-11-06 07:54:57 1 9 2019-11-06 08:14:57 1 10 2019-11-06 08:19:57 1 11 2019-11-06 08:29:57 1 10 2019-11-06 08:59:57 1 11 2019-11-06 09:34:57 1 15 2019-11-06 09:49:57 1 12 2019-11-06 10:49:57 1 12 2019-11-06 11:19:57 1 10 2019-11-06 11:29:57 1 13 2019-11-06 11:34:57 1 13 2019-11-06 11:39:57 1 11 2019-11-06 11:54:57 1 12 2019-11-06 12:04:57 1 16 2019-11-06 12:14:57 1 14 2019-11-06 12:24:57 1 13 2019-11-06 12:44:57 1 15 2019-11-06 12:54:57 1 13 2019-11-06 12:59:57 1 12 2019-11-06 13:44:57 1 10 2019-11-06 14:19:57 1 13 2019-11-06 14:24:57 1 12 2019-11-06 14:29:57 1 11 2019-11-06 14:34:57 1 12 2019-11-06 14:39:57 1 15 2019-11-06 14:54:57 1 15 2019-11-06 15:04:57 1 12 2019-11-06 15:29:57 1 12 2019-11-06 15:44:57 1 14 2019-11-06 16:14:57 1 14 2019-11-06 16:24:57 1 13 2019-11-06 16:49:57 1 13 2019-11-06 17:04:57 1 13 2019-11-06 17:19:57 1 13 2019-11-06 17:24:57 1 12 2019-11-06 17:49:57 1 14 2019-11-06 18:24:57 1 16 2019-11-06 18:39:57 1 15 2019-11-06 19:04:57 1 19 2019-11-06 19:09:57 1 20 2019-11-06 19:29:57 1 20 2019-11-06 19:49:57 1 15 2019-11-06 20:19:57 1 18 2019-11-06 20:24:57 1 20 2019-11-06 20:34:57 1 17 2019-11-06 20:39:57 1 17 2019-11-06 20:59:57 1 16 2019-11-06 21:04:57 1 11 2019-11-06 21:09:57 1 11 2019-11-06 21:19:57 1 14 2019-11-06 21:44:57 1 14 2019-11-06 21:49:57 1 14 2019-11-06 21:54:57 1 12 2019-11-06 21:59:57 1 14 2019-11-06 22:44:57 1 16 2019-11-06 22:54:57 1 17 2019-11-06 22:59:57 1 19 2019-11-06 23:19:57 1 15 2019-11-06 23:49:57 1 14 2019-11-06 23:54:57 1 14 2019-11-07 00:09:57 1 11 2019-11-07 00:14:57 1 11 2019-11-07 00:44:57 1 14 2019-11-07 00:54:57 1 12 2019-11-07 01:04:57 1 13 2019-11-07 01:19:57 1 13 2019-11-07 01:24:57 1 13 2019-11-07 02:24:57 1 11 2019-11-07 02:49:57 1 10 2019-11-07 03:09:57 1 9 2019-11-07 03:39:57 1 7 2019-11-07 03:49:57 1 8 2019-11-07 04:04:57 1 7 2019-11-07 04:14:57 1 8 2019-11-07 04:24:57 1 9 2019-11-07 04:29:57 1 9 2019-11-07 04:39:57 1 10 2019-11-07 05:19:57 1 10 2019-11-07 05:29:57 1 9 2019-11-07 05:54:57 1 12 2019-11-07 06:19:57 1 9 2019-11-07 06:24:57 1 12 2019-11-07 06:29:57 1 12 2019-11-07 06:34:57 1 12 2019-11-07 06:39:57 1 11 2019-11-07 06:54:57 1 14 2019-11-07 07:14:57 1 11 2019-11-07 07:29:57 1 13 2019-11-07 07:34:57 1 11 2019-11-07 07:39:57 1 14 2019-11-07 07:44:57 1 13 2019-11-07 08:09:57 1 10 2019-11-07 08:34:57 1 10 2019-11-07 08:49:57 1 11 2019-11-07 08:54:57 1 10 2019-11-07 09:04:57 1 11 2019-11-07 09:09:57 1 8 2019-11-07 09:19:57 1 7 2019-11-07 09:24:57 1 7 2019-11-07 09:29:57 1 7 2019-11-07 09:34:57 1 6 2019-11-07 09:54:57 1 10 2019-11-07 10:09:57 1 11 2019-11-07 10:19:57 1 8 2019-11-07 10:24:57 1 11 2019-11-07 10:34:57 1 14 2019-11-07 10:44:57 1 16 2019-11-07 11:59:57 1 14 2019-11-07 12:04:58 1 14 2019-11-07 12:09:57 1 16 2019-11-07 12:44:57 1 15 2019-11-07 12:49:57 1 15 2019-11-07 12:59:57 1 12 2019-11-07 13:04:57 1 11 2019-11-07 13:29:57 1 11 2019-11-07 14:09:57 1 13 2019-11-07 14:29:57 1 12 2019-11-07 14:34:57 1 12 2019-11-07 14:39:57 1 12 2019-11-07 15:09:57 1 9 2019-11-07 15:14:57 1 10 2019-11-07 16:09:57 1 12 2019-11-07 16:44:57 1 11 2019-11-07 16:54:57 1 9 2019-11-07 17:24:57 1 8 2019-11-07 17:29:57 1 10 2019-11-07 17:54:57 1 9 2019-11-07 18:49:57 1 13 2019-11-07 19:09:57 1 13 2019-11-07 19:14:57 1 13 2019-11-07 19:49:57 1 11 2019-11-07 19:59:57 1 15 2019-11-07 20:19:57 1 9 2019-11-07 20:34:57 1 10 2019-11-07 20:44:57 1 9 2019-11-07 21:09:57 1 16 2019-11-07 21:19:57 1 15 2019-11-07 21:34:57 1 16 2019-11-07 21:39:57 1 13 2019-11-07 21:54:57 1 15 2019-11-07 22:04:57 1 16 2019-11-07 22:19:57 1 16 2019-11-07 22:24:57 1 20 2019-11-07 22:44:57 1 16 2019-11-07 22:59:57 1 17 2019-11-07 23:09:57 1 15 2019-11-07 23:29:57 1 17 2019-11-07 23:34:57 1 17 2019-11-07 23:39:57 1 17 2019-11-07 23:59:57 1 15 2019-11-08 00:04:57 1 14 2019-11-08 00:14:57 1 14 2019-11-08 00:19:57 1 14 2019-11-08 00:24:57 1 12 2019-11-08 01:09:57 1 14 2019-11-08 01:29:57 1 11 2019-11-08 01:54:57 1 12 2019-11-08 02:04:57 1 11 2019-11-08 02:09:57 1 11 2019-11-08 02:34:57 1 11 2019-11-08 02:39:57 1 10 2019-11-08 02:49:57 1 10 2019-11-08 02:59:57 1 11 2019-11-08 03:54:57 1 8 2019-11-08 04:04:57 1 8 2019-11-08 04:14:57 1 8 2019-11-08 04:24:57 1 7 2019-11-08 04:34:57 1 7 2019-11-08 04:39:57 1 7 2019-11-08 04:44:57 1 8 2019-11-08 04:49:57 1 8 2019-11-08 04:54:57 1 8 2019-11-08 04:59:57 1 8 2019-11-08 05:09:57 1 6 2019-11-08 05:14:57 1 7 2019-11-08 05:24:57 1 7 2019-11-08 05:39:57 1 7 2019-11-08 05:49:57 1 7 2019-11-08 05:54:57 1 8 2019-11-08 05:59:57 1 8 2019-11-08 06:04:57 1 8 2019-11-08 06:09:57 1 9 2019-11-08 06:14:57 1 8 2019-11-08 06:19:57 1 7 2019-11-08 06:24:57 1 7 2019-11-08 06:34:57 1 6 2019-11-08 06:44:57 1 7 2019-11-08 06:54:57 1 8 2019-11-08 07:04:57 1 8 2019-11-08 07:14:57 1 7 2019-11-06 09:39:57 1 15 2019-11-06 09:59:57 1 13 2019-11-06 10:04:57 1 13 2019-11-06 10:09:57 1 13 2019-11-06 10:14:57 1 13 2019-11-06 10:19:57 1 12 2019-11-06 10:24:57 1 13 2019-11-06 10:29:57 1 14 2019-11-06 10:39:57 1 15 2019-11-06 10:44:57 1 12 2019-11-06 10:59:57 1 13 2019-11-06 11:14:57 1 13 2019-11-06 11:49:57 1 11 2019-11-06 11:59:57 1 13 2019-11-06 12:09:57 1 15 2019-11-06 12:19:57 1 14 2019-11-06 12:39:57 1 16 2019-11-06 13:09:57 1 12 2019-11-06 13:19:57 1 13 2019-11-06 13:49:57 1 12 2019-11-06 13:54:57 1 9 2019-11-06 14:09:57 1 11 2019-11-06 14:44:57 1 16 2019-11-06 14:49:57 1 14 2019-11-06 15:14:57 1 11 2019-11-06 15:49:57 1 13 2019-11-06 16:04:57 1 12 2019-11-06 16:39:57 1 14 2019-11-06 16:44:57 1 12 2019-11-06 16:54:57 1 14 2019-11-06 16:59:57 1 12 2019-11-06 17:09:57 1 13 2019-11-06 17:39:57 1 12 2019-11-06 17:59:57 1 19 2019-11-06 18:04:57 1 20 2019-11-06 18:09:57 1 17 2019-11-06 18:44:57 1 18 2019-11-06 19:14:57 1 20 2019-11-06 19:19:57 1 18 2019-11-06 19:24:57 1 17 2019-11-06 19:39:57 1 16 2019-11-06 19:54:57 1 14 2019-11-06 20:09:57 1 19 2019-11-06 20:14:57 1 19 2019-11-06 21:34:57 1 16 2019-11-06 22:04:57 1 14 2019-11-06 22:09:57 1 11 2019-11-06 22:14:57 1 14 2019-11-06 22:19:57 1 13 2019-11-06 22:24:57 1 13 2019-11-06 22:34:57 1 13 2019-11-06 22:39:57 1 15 2019-11-06 23:04:57 1 15 2019-11-06 23:09:57 1 18 2019-11-06 23:14:57 1 16 2019-11-06 23:24:57 1 15 2019-11-06 23:29:57 1 12 2019-11-06 23:39:57 1 15 2019-11-07 00:04:57 1 12 2019-11-07 00:24:57 1 11 2019-11-07 00:49:57 1 13 2019-11-07 01:14:57 1 15 2019-11-07 02:14:57 1 10 2019-11-07 02:19:57 1 11 2019-11-07 02:39:57 1 10 2019-11-07 02:44:57 1 10 2019-11-07 02:54:57 1 9 2019-11-07 03:34:57 1 8 2019-11-07 04:09:57 1 7 2019-11-07 04:19:57 1 8 2019-11-07 04:49:57 1 9 2019-11-07 05:04:57 1 11 2019-11-07 05:09:57 1 9 2019-11-07 05:14:57 1 10 2019-11-07 05:24:57 1 10 2019-11-07 05:34:57 1 10 2019-11-07 05:39:57 1 11 2019-11-07 05:49:57 1 10 2019-11-07 06:09:57 1 9 2019-11-07 06:49:57 1 12 2019-11-07 07:19:57 1 14 2019-11-07 07:49:57 1 12 2019-11-07 08:14:57 1 11 2019-11-07 08:29:57 1 9 2019-11-07 08:39:57 1 12 2019-11-07 08:44:57 1 11 2019-11-07 08:59:57 1 13 2019-11-07 09:14:57 1 9 2019-11-07 09:49:57 1 6 2019-11-07 09:59:57 1 8 2019-11-07 10:04:57 1 10 2019-11-07 10:39:57 1 14 2019-11-07 10:54:57 1 13 2019-11-07 10:59:57 1 14 2019-11-07 11:09:57 1 13 2019-11-07 11:34:57 1 14 2019-11-07 11:39:57 1 12 2019-11-07 11:49:57 1 15 2019-11-07 11:54:57 1 12 2019-11-07 12:14:57 1 15 2019-11-07 12:19:57 1 14 2019-11-07 12:29:57 1 14 2019-11-07 13:09:57 1 13 2019-11-07 13:14:57 1 15 2019-11-07 13:24:57 1 10 2019-11-07 13:44:57 1 10 2019-11-07 13:49:57 1 12 2019-11-07 13:54:57 1 11 2019-11-07 13:59:57 1 12 2019-11-07 14:19:58 1 14 2019-11-07 14:24:57 1 11 2019-11-07 14:49:57 1 14 2019-11-07 14:59:57 1 12 2019-11-07 15:44:57 1 10 2019-11-07 15:54:58 1 12 2019-11-07 16:04:57 1 12 2019-11-07 16:14:57 1 10 2019-11-07 17:09:57 1 11 2019-11-07 17:14:57 1 11 2019-11-07 17:19:57 1 10 2019-11-07 17:39:57 1 13 2019-11-07 17:49:57 1 7 2019-11-07 17:59:57 1 8 2019-11-07 18:04:57 1 10 2019-11-07 18:29:57 1 12 2019-11-07 18:34:57 1 11 2019-11-07 18:39:57 1 12 2019-11-07 18:59:57 1 13 2019-11-07 19:04:58 1 14 2019-11-07 19:19:57 1 14 2019-11-07 19:34:57 1 10 2019-11-07 19:39:57 1 9 2019-11-07 20:24:57 1 10 2019-11-07 20:29:57 1 12 2019-11-07 20:39:57 1 10 2019-11-07 20:49:57 1 8 2019-11-07 21:14:57 1 14 2019-11-07 21:24:57 1 15 2019-11-07 21:44:57 1 12 2019-11-07 22:09:57 1 17 2019-11-07 22:29:57 1 20 2019-11-07 22:34:57 1 18 2019-11-07 22:54:57 1 15 2019-11-07 23:24:57 1 16 2019-11-07 23:44:57 1 16 2019-11-07 23:49:57 1 15 2019-11-08 00:09:57 1 14 2019-11-08 00:34:57 1 12 2019-11-08 00:39:57 1 12 2019-11-08 00:49:57 1 13 2019-11-08 00:54:57 1 15 2019-11-08 00:59:57 1 14 2019-11-08 01:14:57 1 14 2019-11-08 01:19:57 1 13 2019-11-08 01:44:57 1 11 2019-11-08 01:59:57 1 11 2019-11-08 02:24:57 1 11 2019-11-08 02:44:57 1 10 2019-11-08 02:54:57 1 11 2019-11-08 03:04:57 1 10 2019-11-08 03:09:57 1 11 2019-11-08 03:14:57 1 10 2019-11-08 03:29:57 1 11 2019-11-08 03:39:57 1 9 2019-11-08 03:44:57 1 9 2019-11-08 03:49:57 1 8 2019-11-08 04:09:57 1 8 2019-11-08 04:19:57 1 7 2019-11-08 04:29:57 1 7 2019-11-08 05:04:57 1 7 2019-11-08 05:19:57 1 7 2019-11-08 05:29:57 1 9 2019-11-08 05:34:57 1 8 2019-11-08 05:44:57 1 7 2019-11-08 06:29:57 1 8 2019-11-08 06:39:57 1 6 2019-11-08 06:49:57 1 7 2019-11-08 06:59:57 1 8 2019-11-08 07:09:57 1 10 2019-11-08 07:19:57 1 8 2019-11-08 07:24:57 1 10 2019-11-08 07:29:57 1 8 2019-11-08 07:34:57 1 10 2019-11-08 07:39:57 1 8 2019-11-08 07:44:57 1 9 2019-11-06 09:44:57 1 14 2019-11-06 09:54:57 1 13 2019-11-06 10:34:57 1 14 2019-11-06 10:54:57 1 11 2019-11-06 11:04:57 1 12 2019-11-06 11:09:57 1 13 2019-11-06 11:24:57 1 13 2019-11-06 11:44:57 1 11 2019-11-06 12:29:57 1 15 2019-11-06 12:34:57 1 16 2019-11-06 12:49:57 1 15 2019-11-06 13:04:57 1 15 2019-11-06 13:14:57 1 11 2019-11-06 13:24:57 1 14 2019-11-06 13:29:57 1 14 2019-11-06 13:34:57 1 12 2019-11-06 13:39:57 1 13 2019-11-06 13:59:57 1 11 2019-11-06 14:04:57 1 13 2019-11-06 14:14:57 1 13 2019-11-06 14:59:57 1 13 2019-11-06 15:09:57 1 12 2019-11-06 15:19:57 1 11 2019-11-06 15:24:57 1 11 2019-11-06 15:34:57 1 12 2019-11-06 15:39:57 1 13 2019-11-06 15:54:57 1 13 2019-11-06 15:59:57 1 13 2019-11-06 16:09:57 1 14 2019-11-06 16:19:57 1 14 2019-11-06 16:29:57 1 14 2019-11-06 16:34:57 1 13 2019-11-06 17:14:57 1 11 2019-11-06 17:29:57 1 13 2019-11-06 17:34:57 1 12 2019-11-06 17:44:57 1 12 2019-11-06 17:54:57 1 18 2019-11-06 18:14:57 1 18 2019-11-06 18:19:57 1 17 2019-11-06 18:29:57 1 16 2019-11-06 18:34:57 1 17 2019-11-06 18:49:57 1 18 2019-11-06 18:54:57 1 19 2019-11-06 18:59:57 1 19 2019-11-06 19:34:57 1 16 2019-11-06 19:44:57 1 14 2019-11-06 19:59:57 1 15 2019-11-06 20:04:57 1 18 2019-11-06 20:29:57 1 17 2019-11-06 20:44:57 1 19 2019-11-06 20:49:57 1 15 2019-11-06 20:54:57 1 14 2019-11-06 21:14:57 1 15 2019-11-06 21:24:57 1 13 2019-11-06 21:29:57 1 16 2019-11-06 21:39:57 1 18 2019-11-06 22:29:57 1 12 2019-11-06 22:49:57 1 16 2019-11-06 23:34:57 1 15 2019-11-06 23:44:57 1 13 2019-11-06 23:59:57 1 13 2019-11-07 00:19:57 1 12 2019-11-07 00:29:57 1 13 2019-11-07 00:34:57 1 16 2019-11-07 00:39:57 1 14 2019-11-07 00:59:57 1 13 2019-11-07 01:09:57 1 15 2019-11-07 01:29:57 1 13 2019-11-07 01:34:57 1 12 2019-11-07 01:39:57 1 11 2019-11-07 01:44:57 1 12 2019-11-07 01:49:57 1 10 2019-11-07 01:54:57 1 10 2019-11-07 01:59:57 1 11 2019-11-07 02:04:57 1 10 2019-11-07 02:09:57 1 11 2019-11-07 02:29:57 1 10 2019-11-07 02:34:57 1 12 2019-11-07 02:59:57 1 9 2019-11-07 03:04:57 1 8 2019-11-07 03:14:57 1 8 2019-11-07 03:19:57 1 8 2019-11-07 03:24:57 1 8 2019-11-07 03:29:57 1 8 2019-11-07 03:44:57 1 8 2019-11-07 03:54:57 1 8 2019-11-07 03:59:57 1 7 2019-11-07 04:34:57 1 10 2019-11-07 04:44:57 1 9 2019-11-07 04:54:57 1 10 2019-11-07 04:59:57 1 10 2019-11-07 05:44:57 1 10 2019-11-07 05:59:57 1 10 2019-11-07 06:04:57 1 10 2019-11-07 06:14:57 1 9 2019-11-07 06:44:57 1 12 2019-11-07 06:59:57 1 11 2019-11-07 07:04:57 1 11 2019-11-07 07:09:57 1 11 2019-11-07 07:24:57 1 12 2019-11-07 07:54:57 1 10 2019-11-07 07:59:57 1 11 2019-11-07 08:04:57 1 10 2019-11-07 08:19:57 1 12 2019-11-07 08:24:57 1 11 2019-11-07 09:39:57 1 6 2019-11-07 09:44:57 1 7 2019-11-07 10:14:57 1 12 2019-11-07 10:29:57 1 10 2019-11-07 10:49:57 1 14 2019-11-07 11:04:57 1 16 2019-11-07 11:14:57 1 16 2019-11-07 11:19:57 1 13 2019-11-07 11:24:57 1 12 2019-11-07 11:29:57 1 13 2019-11-07 11:44:57 1 13 2019-11-07 12:24:57 1 14 2019-11-07 12:34:57 1 11 2019-11-07 12:39:57 1 13 2019-11-07 12:54:57 1 15 2019-11-07 13:19:57 1 12 2019-11-07 13:34:57 1 11 2019-11-07 13:39:57 1 10 2019-11-07 14:04:57 1 13 2019-11-07 14:14:57 1 15 2019-11-07 14:44:57 1 12 2019-11-07 14:54:57 1 14 2019-11-07 15:04:57 1 9 2019-11-07 15:19:57 1 11 2019-11-07 15:24:57 1 12 2019-11-07 15:29:57 1 13 2019-11-07 15:34:57 1 14 2019-11-07 15:39:57 1 11 2019-11-07 15:49:57 1 12 2019-11-07 15:59:57 1 12 2019-11-07 16:19:57 1 10 2019-11-07 16:24:57 1 9 2019-11-07 16:29:57 1 9 2019-11-07 16:34:57 1 10 2019-11-07 16:39:57 1 11 2019-11-07 16:49:57 1 10 2019-11-07 16:59:57 1 10 2019-11-07 17:04:57 1 11 2019-11-07 17:34:57 1 13 2019-11-07 17:44:57 1 8 2019-11-07 18:09:57 1 11 2019-11-07 18:14:57 1 10 2019-11-07 18:19:57 1 10 2019-11-07 18:24:57 1 9 2019-11-07 18:44:57 1 13 2019-11-07 18:54:57 1 13 2019-11-07 19:24:57 1 12 2019-11-07 19:29:57 1 11 2019-11-07 19:44:57 1 13 2019-11-07 19:54:57 1 13 2019-11-07 20:04:57 1 13 2019-11-07 20:09:57 1 12 2019-11-07 20:14:57 1 13 2019-11-07 20:54:57 1 11 2019-11-07 20:59:57 1 14 2019-11-07 21:04:57 1 13 2019-11-07 21:29:57 1 15 2019-11-07 21:49:57 1 12 2019-11-07 21:59:57 1 13 2019-11-07 22:14:57 1 18 2019-11-07 22:39:57 1 20 2019-11-07 22:49:57 1 15 2019-11-07 23:04:57 1 16 2019-11-07 23:14:57 1 17 2019-11-07 23:19:57 1 16 2019-11-07 23:54:57 1 17 2019-11-08 00:29:57 1 14 2019-11-08 00:44:57 1 11 2019-11-08 01:04:57 1 14 2019-11-08 01:24:57 1 14 2019-11-08 01:34:57 1 11 2019-11-08 01:39:57 1 11 2019-11-08 01:49:57 1 13 2019-11-08 02:14:57 1 11 2019-11-08 02:19:57 1 11 2019-11-08 02:29:57 1 10 2019-11-08 03:19:57 1 11 2019-11-08 03:24:57 1 11 2019-11-08 03:34:57 1 10 2019-11-08 03:59:57 1 8 2019-11-08 07:49:57 1 8 2019-11-08 07:54:57 1 7 2019-11-08 08:04:57 1 8 2019-11-08 08:09:57 1 8 2019-11-08 08:29:57 1 11 2019-11-08 08:34:57 1 10 2019-11-08 08:39:57 1 9 2019-11-08 08:44:57 1 8 2019-11-08 09:04:57 1 6 2019-11-08 09:34:57 1 8 2019-11-08 10:09:57 1 13 2019-11-08 10:19:57 1 10 2019-11-08 10:24:57 1 10 2019-11-08 10:34:57 1 10 2019-11-08 10:54:57 1 9 2019-11-08 11:14:57 1 8 2019-11-08 11:34:57 1 14 2019-11-08 11:39:57 1 15 2019-11-08 12:09:57 1 12 2019-11-08 12:19:57 1 14 2019-11-08 12:54:57 1 12 2019-11-08 13:04:57 1 16 2019-11-08 13:14:57 1 12 2019-11-08 13:44:57 1 17 2019-11-08 13:49:57 1 17 2019-11-08 13:59:57 1 16 2019-11-08 14:04:57 1 17 2019-11-08 14:09:57 1 13 2019-11-08 14:14:57 1 14 2019-11-08 14:19:57 1 14 2019-11-08 14:29:57 1 15 2019-11-08 14:49:57 1 19 2019-11-08 14:54:57 1 18 2019-11-08 14:59:57 1 17 2019-11-08 15:14:57 1 18 2019-11-08 15:34:57 1 18 2019-11-08 15:44:57 1 16 2019-11-08 15:59:57 1 19 2019-11-08 16:04:57 1 20 2019-11-08 16:14:57 1 17 2019-11-08 16:34:57 1 18 2019-11-08 16:49:57 1 17 2019-11-08 16:54:57 1 18 2019-11-08 17:14:57 1 16 2019-11-08 17:34:57 1 15 2019-11-08 17:39:57 1 14 2019-11-08 17:44:57 1 14 2019-11-08 18:09:57 1 16 2019-11-08 18:19:59 1 17 2019-11-08 18:29:57 1 16 2019-11-08 19:19:57 1 11 2019-11-08 19:24:57 1 13 2019-11-08 19:44:57 1 18 2019-11-08 19:49:57 1 17 2019-11-08 20:19:57 1 17 2019-11-08 20:49:57 1 17 2019-11-08 21:24:57 1 18 2019-11-08 21:39:57 1 15 2019-11-08 21:44:57 1 18 2019-11-08 21:49:57 1 19 2019-11-08 21:59:57 1 21 2019-11-08 22:14:57 1 18 2019-11-08 22:19:57 1 20 2019-11-08 22:34:57 1 20 2019-11-08 23:14:57 1 20 2019-11-08 23:24:57 1 19 2019-11-08 23:44:57 1 16 2019-11-08 23:49:57 1 14 2019-11-08 23:54:57 1 15 2019-11-08 23:59:57 1 14 2019-11-09 00:04:57 1 14 2019-11-09 00:24:57 1 15 2019-11-09 00:29:57 1 15 2019-11-09 00:54:57 1 11 2019-11-09 01:09:57 1 12 2019-11-09 01:24:57 1 14 2019-11-09 01:29:57 1 11 2019-11-09 01:54:57 1 9 2019-11-09 02:29:57 1 8 2019-11-09 02:34:57 1 6 2019-11-09 02:39:57 1 5 2019-11-09 02:49:57 1 6 2019-11-09 02:59:57 1 6 2019-11-09 03:19:57 1 6 2019-11-09 03:24:57 1 6 2019-11-09 03:29:57 1 5 2019-11-09 04:04:57 1 5 2019-11-09 04:14:57 1 5 2019-11-09 04:19:57 1 5 2019-11-09 04:34:57 1 6 2019-11-09 04:39:57 1 5 2019-11-09 04:49:57 1 6 2019-11-09 04:59:57 1 5 2019-11-09 05:09:57 1 5 2019-11-09 05:24:57 1 5 2019-11-09 05:39:57 1 5 2019-11-09 05:54:57 1 5 2019-11-09 06:04:57 1 6 2019-11-09 06:19:57 1 7 2019-11-09 06:39:57 1 10 2019-11-09 06:49:57 1 11 2019-11-09 07:04:57 1 11 2019-11-09 07:19:57 1 12 2019-11-09 07:34:57 1 13 2019-11-09 07:39:57 1 13 2019-11-09 07:54:57 1 14 2019-11-09 07:59:57 1 16 2019-11-09 08:09:57 1 12 2019-11-09 08:14:57 1 10 2019-11-09 08:29:57 1 12 2019-11-09 08:39:57 1 12 2019-11-09 09:04:57 1 8 2019-11-09 09:19:57 1 8 2019-11-09 09:24:57 1 10 2019-11-09 09:34:57 1 10 2019-11-09 10:14:57 1 12 2019-11-09 10:19:57 1 13 2019-11-09 10:44:57 1 12 2019-11-09 11:04:57 1 13 2019-11-09 11:24:57 1 16 2019-11-09 11:29:57 1 12 2019-11-09 11:34:57 1 14 2019-11-09 12:19:57 1 14 2019-11-09 12:29:57 1 14 2019-11-09 12:44:57 1 12 2019-11-09 12:49:57 1 12 2019-11-09 13:14:57 1 18 2019-11-09 13:24:57 1 15 2019-11-09 13:29:57 1 14 2019-11-09 13:39:57 1 15 2019-11-09 13:44:57 1 16 2019-11-09 14:09:57 1 17 2019-11-09 14:29:57 1 14 2019-11-09 15:04:57 1 11 2019-11-09 16:04:57 1 11 2019-11-09 16:19:57 1 13 2019-11-09 16:29:57 1 16 2019-11-09 16:54:57 1 18 2019-11-09 17:14:57 1 21 2019-11-09 17:44:57 1 21 2019-11-09 17:49:57 1 23 2019-11-09 17:54:57 1 21 2019-11-09 18:04:57 1 23 2019-11-09 18:19:57 1 20 2019-11-09 18:39:57 1 18 2019-11-09 18:49:57 1 19 2019-11-09 18:54:57 1 17 2019-11-09 18:59:57 1 19 2019-11-09 19:04:57 1 16 2019-11-09 19:09:57 1 18 2019-11-09 19:29:57 1 19 2019-11-09 19:39:57 1 21 2019-11-09 19:54:58 1 16 2019-11-09 20:14:57 1 17 2019-11-09 20:29:57 1 21 2019-11-09 20:44:57 1 21 2019-11-09 20:59:57 1 25 2019-11-09 21:09:57 1 19 2019-11-09 22:34:57 1 26 2019-11-09 22:49:57 1 21 2019-11-09 22:59:57 1 17 2019-11-09 23:09:57 1 19 2019-11-09 23:14:57 1 19 2019-11-09 23:14:57 2 1 2019-11-09 23:29:57 1 21 2019-11-09 23:29:57 2 1 2019-11-09 23:34:57 1 20 2019-11-09 23:34:57 2 1 2019-11-09 23:39:57 1 17 2019-11-09 23:39:57 2 1 2019-11-09 23:54:57 1 15 2019-11-09 23:54:57 2 1 2019-11-10 00:04:57 1 16 2019-11-10 00:04:57 2 1 2019-11-10 00:14:57 1 14 2019-11-10 00:14:57 2 1 2019-11-10 00:24:57 1 16 2019-11-10 00:24:57 2 1 2019-11-10 00:54:57 1 17 2019-11-10 00:59:57 1 16 2019-11-10 01:14:57 1 14 2019-11-10 01:19:57 1 15 2019-11-10 01:24:57 1 14 2019-11-10 01:49:57 1 11 2019-11-10 01:54:57 1 11 2019-11-08 07:59:57 1 8 2019-11-08 08:19:57 1 9 2019-11-08 08:49:57 1 9 2019-11-08 08:59:57 1 6 2019-11-08 09:19:57 1 7 2019-11-08 09:24:57 1 7 2019-11-08 09:29:57 1 6 2019-11-08 09:39:57 1 9 2019-11-08 09:44:57 1 11 2019-11-08 09:49:57 1 11 2019-11-08 09:59:57 1 8 2019-11-08 10:14:57 1 11 2019-11-08 10:49:57 1 11 2019-11-08 10:59:57 1 7 2019-11-08 11:04:57 1 9 2019-11-08 11:09:57 1 11 2019-11-08 11:19:57 1 9 2019-11-08 11:44:57 1 17 2019-11-08 11:49:57 1 11 2019-11-08 12:29:57 1 12 2019-11-08 12:39:57 1 13 2019-11-08 12:59:57 1 12 2019-11-08 13:09:57 1 14 2019-11-08 13:24:57 1 15 2019-11-08 13:39:57 1 13 2019-11-08 13:54:57 1 17 2019-11-08 14:34:57 1 16 2019-11-08 15:09:57 1 18 2019-11-08 15:19:57 1 19 2019-11-08 15:29:57 1 18 2019-11-08 15:49:57 1 19 2019-11-08 16:19:57 1 17 2019-11-08 16:29:57 1 19 2019-11-08 17:19:57 1 20 2019-11-08 17:24:57 1 17 2019-11-08 17:49:57 1 16 2019-11-08 17:54:57 1 16 2019-11-08 18:04:57 1 14 2019-11-08 18:34:57 1 14 2019-11-08 18:49:57 1 11 2019-11-08 18:54:57 1 12 2019-11-08 19:09:57 1 11 2019-11-08 19:14:57 1 11 2019-11-08 19:29:57 1 13 2019-11-08 19:34:57 1 14 2019-11-08 19:39:57 1 18 2019-11-08 19:54:57 1 15 2019-11-08 19:59:57 1 16 2019-11-08 20:04:57 1 15 2019-11-08 20:09:57 1 15 2019-11-08 20:14:57 1 16 2019-11-08 20:24:57 1 18 2019-11-08 20:29:57 1 17 2019-11-08 20:34:57 1 20 2019-11-08 20:54:57 1 18 2019-11-08 20:59:57 1 16 2019-11-08 21:14:57 1 16 2019-11-08 21:19:57 1 17 2019-11-08 21:29:57 1 16 2019-11-08 22:04:57 1 24 2019-11-08 22:09:57 1 23 2019-11-08 22:39:57 1 18 2019-11-08 22:49:57 1 19 2019-11-08 22:54:57 1 20 2019-11-08 22:59:57 1 21 2019-11-08 23:04:57 1 18 2019-11-08 23:09:57 1 20 2019-11-08 23:19:57 1 19 2019-11-08 23:29:57 1 19 2019-11-09 00:09:57 1 15 2019-11-09 00:34:57 1 16 2019-11-09 00:44:57 1 12 2019-11-09 00:59:57 1 11 2019-11-09 01:14:57 1 12 2019-11-09 01:19:57 1 11 2019-11-09 01:49:57 1 10 2019-11-09 01:59:57 1 9 2019-11-09 02:09:57 1 8 2019-11-09 02:14:57 1 9 2019-11-09 02:19:57 1 9 2019-11-09 02:54:57 1 6 2019-11-09 03:04:57 1 6 2019-11-09 03:34:57 1 5 2019-11-09 03:39:57 1 4 2019-11-09 04:09:57 1 5 2019-11-09 04:24:57 1 5 2019-11-09 04:44:57 1 6 2019-11-09 05:14:57 1 5 2019-11-09 05:29:57 1 5 2019-11-09 05:59:57 1 5 2019-11-09 06:24:57 1 8 2019-11-09 06:34:57 1 9 2019-11-09 06:54:57 1 10 2019-11-09 07:09:57 1 12 2019-11-09 07:29:57 1 12 2019-11-09 07:44:57 1 12 2019-11-09 07:49:57 1 13 2019-11-09 08:04:57 1 16 2019-11-09 08:24:57 1 13 2019-11-09 08:34:57 1 13 2019-11-09 08:49:57 1 12 2019-11-09 09:44:57 1 14 2019-11-09 09:54:57 1 12 2019-11-09 09:59:57 1 13 2019-11-09 10:09:57 1 14 2019-11-09 10:29:57 1 12 2019-11-09 10:34:57 1 11 2019-11-09 10:39:57 1 14 2019-11-09 10:49:57 1 13 2019-11-09 10:59:57 1 14 2019-11-09 11:49:57 1 12 2019-11-09 12:09:57 1 15 2019-11-09 12:14:57 1 13 2019-11-09 12:24:57 1 13 2019-11-09 12:54:57 1 16 2019-11-09 13:09:57 1 21 2019-11-09 13:49:57 1 17 2019-11-09 14:04:57 1 16 2019-11-09 14:34:57 1 14 2019-11-09 14:39:57 1 13 2019-11-09 14:44:57 1 15 2019-11-09 14:49:57 1 14 2019-11-09 14:54:57 1 14 2019-11-09 14:59:57 1 13 2019-11-09 15:09:57 1 10 2019-11-09 15:14:57 1 12 2019-11-09 15:24:57 1 11 2019-11-09 15:29:57 1 12 2019-11-09 15:34:57 1 12 2019-11-09 15:39:57 1 12 2019-11-09 15:44:57 1 12 2019-11-09 15:49:57 1 13 2019-11-09 16:14:57 1 14 2019-11-09 16:44:57 1 16 2019-11-09 16:59:57 1 17 2019-11-09 17:04:57 1 21 2019-11-09 17:09:57 1 21 2019-11-09 17:19:57 1 19 2019-11-09 17:24:57 1 21 2019-11-09 19:14:57 1 20 2019-11-09 19:59:57 1 16 2019-11-09 20:09:57 1 17 2019-11-09 20:19:57 1 17 2019-11-09 20:24:57 1 20 2019-11-09 20:34:57 1 20 2019-11-09 20:39:57 1 20 2019-11-09 20:49:57 1 22 2019-11-09 21:14:57 1 21 2019-11-09 21:19:57 1 19 2019-11-09 21:24:57 1 21 2019-11-09 21:29:57 1 20 2019-11-09 21:39:57 1 19 2019-11-09 21:54:57 1 20 2019-11-09 22:09:57 1 24 2019-11-09 22:19:57 1 25 2019-11-09 22:24:57 1 25 2019-11-09 22:29:57 1 26 2019-11-09 23:19:57 1 20 2019-11-09 23:19:57 2 1 2019-11-09 23:44:57 1 19 2019-11-09 23:44:57 2 1 2019-11-09 23:49:57 1 18 2019-11-09 23:49:57 2 1 2019-11-10 00:09:57 1 16 2019-11-10 00:09:57 2 1 2019-11-10 00:34:57 1 17 2019-11-10 00:34:57 2 1 2019-11-10 00:39:57 1 16 2019-11-10 00:39:57 2 1 2019-11-10 00:49:57 1 17 2019-11-10 01:04:57 1 17 2019-11-10 01:09:57 1 15 2019-11-10 01:29:57 1 13 2019-11-10 01:34:57 1 12 2019-11-10 01:39:57 1 11 2019-11-10 01:59:57 1 12 2019-11-10 02:04:57 1 11 2019-11-10 02:14:57 1 12 2019-11-10 02:19:57 1 12 2019-11-10 02:24:57 1 13 2019-11-10 02:29:57 1 11 2019-11-10 02:39:57 1 11 2019-11-10 02:54:57 1 12 2019-11-10 02:59:57 1 12 2019-11-10 03:04:57 1 12 2019-11-08 08:14:57 1 9 2019-11-08 08:24:57 1 9 2019-11-08 08:54:57 1 6 2019-11-08 09:09:57 1 7 2019-11-08 09:14:57 1 7 2019-11-08 09:54:57 1 11 2019-11-08 10:04:57 1 9 2019-11-08 10:29:57 1 10 2019-11-08 10:39:57 1 10 2019-11-08 10:44:57 1 11 2019-11-08 11:24:57 1 14 2019-11-08 11:29:57 1 14 2019-11-08 11:54:57 1 12 2019-11-08 11:59:57 1 14 2019-11-08 12:04:57 1 11 2019-11-08 12:14:57 1 13 2019-11-08 12:24:57 1 13 2019-11-08 12:34:57 1 12 2019-11-08 12:44:57 1 10 2019-11-08 12:49:57 1 12 2019-11-08 13:19:57 1 15 2019-11-08 13:29:57 1 16 2019-11-08 13:34:57 1 14 2019-11-08 14:24:57 1 13 2019-11-08 14:39:57 1 16 2019-11-08 14:44:57 1 18 2019-11-08 15:04:57 1 18 2019-11-08 15:24:57 1 19 2019-11-08 15:39:57 1 15 2019-11-08 15:54:57 1 14 2019-11-08 16:09:57 1 19 2019-11-08 16:24:57 1 19 2019-11-08 16:39:57 1 18 2019-11-08 16:44:57 1 17 2019-11-08 16:59:57 1 17 2019-11-08 17:04:57 1 15 2019-11-08 17:09:57 1 16 2019-11-08 17:29:57 1 16 2019-11-08 17:59:57 1 16 2019-11-08 18:14:57 1 17 2019-11-08 18:24:57 1 17 2019-11-08 18:39:57 1 14 2019-11-08 18:44:57 1 13 2019-11-08 18:59:57 1 13 2019-11-08 19:04:57 1 11 2019-11-08 20:39:57 1 18 2019-11-08 20:44:57 1 19 2019-11-08 21:04:57 1 16 2019-11-08 21:09:57 1 15 2019-11-08 21:34:57 1 14 2019-11-08 21:54:57 1 20 2019-11-08 22:24:57 1 19 2019-11-08 22:29:57 1 21 2019-11-08 22:44:57 1 17 2019-11-08 23:34:57 1 16 2019-11-08 23:39:57 1 16 2019-11-09 00:14:57 1 16 2019-11-09 00:19:57 1 16 2019-11-09 00:39:57 1 15 2019-11-09 00:49:57 1 11 2019-11-09 01:04:57 1 13 2019-11-09 01:34:57 1 11 2019-11-09 01:39:57 1 9 2019-11-09 01:44:57 1 10 2019-11-09 02:04:57 1 8 2019-11-09 02:24:57 1 8 2019-11-09 02:44:57 1 6 2019-11-09 03:09:57 1 6 2019-11-09 03:14:57 1 6 2019-11-09 03:44:57 1 4 2019-11-09 03:49:57 1 5 2019-11-09 03:54:57 1 5 2019-11-09 03:59:57 1 6 2019-11-09 04:29:57 1 5 2019-11-09 04:54:57 1 6 2019-11-09 05:04:57 1 5 2019-11-09 05:19:57 1 5 2019-11-09 05:34:57 1 5 2019-11-09 05:44:57 1 4 2019-11-09 05:49:57 1 5 2019-11-09 06:09:57 1 6 2019-11-09 06:14:57 1 6 2019-11-09 06:29:57 1 5 2019-11-09 06:44:57 1 10 2019-11-09 06:59:57 1 10 2019-11-09 07:14:57 1 11 2019-11-09 07:24:57 1 12 2019-11-09 08:19:57 1 12 2019-11-09 08:44:57 1 15 2019-11-09 08:54:57 1 10 2019-11-09 08:59:57 1 10 2019-11-09 09:09:57 1 7 2019-11-09 09:14:57 1 6 2019-11-09 09:29:57 1 10 2019-11-09 09:39:57 1 11 2019-11-09 09:49:57 1 15 2019-11-09 10:04:57 1 14 2019-11-09 10:24:57 1 14 2019-11-09 10:54:57 1 13 2019-11-09 11:09:57 1 15 2019-11-09 11:14:57 1 13 2019-11-09 11:19:57 1 13 2019-11-09 11:39:57 1 13 2019-11-09 11:44:57 1 14 2019-11-09 11:54:57 1 15 2019-11-09 11:59:57 1 14 2019-11-09 12:04:57 1 15 2019-11-09 12:34:57 1 14 2019-11-09 12:39:57 1 15 2019-11-09 12:59:57 1 18 2019-11-09 13:04:57 1 21 2019-11-09 13:19:57 1 19 2019-11-09 13:34:57 1 13 2019-11-09 13:54:57 1 16 2019-11-09 13:59:57 1 16 2019-11-09 14:14:57 1 15 2019-11-09 14:19:57 1 13 2019-11-09 14:24:57 1 11 2019-11-09 15:19:57 1 15 2019-11-09 15:54:57 1 14 2019-11-09 15:59:57 1 13 2019-11-09 16:09:57 1 11 2019-11-09 16:24:57 1 14 2019-11-09 16:34:57 1 16 2019-11-09 16:39:57 1 17 2019-11-09 16:49:57 1 15 2019-11-09 17:29:57 1 19 2019-11-09 17:34:57 1 21 2019-11-09 17:39:57 1 25 2019-11-09 17:59:57 1 22 2019-11-09 18:09:57 1 19 2019-11-09 18:14:57 1 18 2019-11-09 18:24:57 1 18 2019-11-09 18:29:57 1 19 2019-11-09 18:34:57 1 19 2019-11-09 18:44:57 1 20 2019-11-09 19:19:57 1 16 2019-11-09 19:24:57 1 17 2019-11-09 19:34:57 1 21 2019-11-09 19:44:57 1 18 2019-11-09 19:49:57 1 17 2019-11-09 20:04:57 1 17 2019-11-09 20:54:57 1 24 2019-11-09 21:04:57 1 20 2019-11-09 21:34:57 1 21 2019-11-09 21:44:57 1 23 2019-11-09 21:49:57 1 20 2019-11-09 21:59:57 1 22 2019-11-09 22:04:57 1 22 2019-11-09 22:14:57 1 27 2019-11-09 22:39:58 1 26 2019-11-09 22:44:57 1 23 2019-11-09 22:54:57 1 23 2019-11-09 23:04:57 1 19 2019-11-09 23:24:57 1 21 2019-11-09 23:24:57 2 1 2019-11-09 23:59:57 1 16 2019-11-09 23:59:57 2 1 2019-11-10 00:19:57 1 14 2019-11-10 00:19:57 2 1 2019-11-10 00:29:57 1 17 2019-11-10 00:29:57 2 1 2019-11-10 00:44:57 1 18 2019-11-10 01:44:57 1 10 2019-11-10 02:09:57 1 13 2019-11-10 02:34:57 1 12 2019-11-10 02:44:57 1 12 2019-11-10 02:49:57 1 12 2019-11-10 03:09:57 1 11 2019-11-10 03:14:57 1 11 2019-11-10 03:19:57 1 12 2019-11-10 03:24:57 1 12 2019-11-10 03:29:57 1 11 2019-11-10 03:34:57 1 11 2019-11-10 03:39:57 1 11 2019-11-10 03:44:57 1 10 2019-11-10 03:49:57 1 11 2019-11-10 03:54:57 1 10 2019-11-10 03:59:57 1 10 2019-11-10 04:04:57 1 10 2019-11-10 04:09:57 1 9 2019-11-10 04:14:57 1 9 2019-11-10 04:19:57 1 10 2019-11-10 04:24:57 1 10 2019-11-10 04:29:57 1 10 2019-11-10 04:34:57 1 8 2019-11-10 04:39:57 1 8 2019-11-10 04:44:57 1 8 2019-11-10 04:49:57 1 8 2019-11-10 04:54:57 1 8 2019-11-10 04:59:57 1 8 2019-11-10 05:04:57 1 8 2019-11-10 05:14:57 1 8 2019-11-10 05:49:57 1 8 2019-11-10 05:54:57 1 9 2019-11-10 05:59:57 1 9 2019-11-10 06:19:57 1 8 2019-11-10 06:24:57 1 10 2019-11-10 06:54:57 1 9 2019-11-10 07:09:57 1 8 2019-11-10 07:19:57 1 9 2019-11-10 08:04:57 1 8 2019-11-10 08:34:57 1 13 2019-11-10 08:39:57 1 12 2019-11-10 08:44:57 1 14 2019-11-10 08:54:57 1 16 2019-11-10 09:09:57 1 14 2019-11-10 09:14:57 1 13 2019-11-10 09:29:57 1 13 2019-11-10 09:29:57 2 1 2019-11-10 09:39:57 1 12 2019-11-10 09:39:57 2 1 2019-11-10 10:04:57 1 9 2019-11-10 10:04:57 2 1 2019-11-10 10:09:57 1 9 2019-11-10 10:34:57 1 12 2019-11-10 10:39:57 1 11 2019-11-10 10:39:57 2 1 2019-11-10 10:44:57 1 14 2019-11-10 10:44:57 2 1 2019-11-10 10:59:57 1 12 2019-11-10 10:59:57 2 1 2019-11-10 11:04:57 1 13 2019-11-10 11:04:57 2 1 2019-11-10 11:34:57 1 13 2019-11-10 11:39:57 1 15 2019-11-10 11:49:57 1 17 2019-11-10 12:04:57 1 15 2019-11-10 12:39:57 1 14 2019-11-10 12:59:57 1 12 2019-11-10 13:09:57 1 16 2019-11-10 13:24:57 1 16 2019-11-10 13:29:57 1 15 2019-11-10 13:39:57 1 15 2019-11-10 13:54:57 1 17 2019-11-10 14:19:57 1 14 2019-11-10 14:24:57 1 14 2019-11-10 14:39:57 1 13 2019-11-10 14:44:57 1 14 2019-11-10 15:04:57 1 15 2019-11-10 15:04:57 2 1 2019-11-10 15:09:57 1 15 2019-11-10 15:09:57 2 1 2019-11-10 15:29:57 1 14 2019-11-10 15:29:57 2 1 2019-11-10 15:34:57 1 17 2019-11-10 15:34:57 2 1 2019-11-10 15:49:57 1 19 2019-11-10 15:49:57 2 1 2019-11-10 16:04:57 1 19 2019-11-10 16:04:57 2 1 2019-11-10 16:29:57 1 17 2019-11-10 16:29:57 2 2 2019-11-10 16:59:57 1 21 2019-11-10 17:04:57 1 17 2019-11-10 17:14:57 1 17 2019-11-10 17:19:57 1 18 2019-11-10 17:24:57 1 19 2019-11-10 17:34:57 1 19 2019-11-10 17:49:57 1 17 2019-11-10 17:49:57 2 1 2019-11-10 18:34:57 1 19 2019-11-10 18:34:57 2 1 2019-11-10 19:09:57 1 22 2019-11-10 19:09:57 2 1 2019-11-10 20:04:57 1 17 2019-11-10 20:04:57 2 1 2019-11-10 20:09:57 1 20 2019-11-10 20:09:57 2 1 2019-11-10 20:34:57 1 20 2019-11-10 20:34:57 2 1 2019-11-10 20:39:57 1 20 2019-11-10 20:39:57 2 1 2019-11-10 21:04:57 1 18 2019-11-10 21:04:57 2 1 2019-11-10 21:19:57 1 15 2019-11-10 21:19:57 2 1 2019-11-10 21:24:57 1 15 2019-11-10 21:24:57 2 1 2019-11-10 21:34:57 1 17 2019-11-10 21:34:57 2 1 2019-11-10 21:39:57 1 17 2019-11-10 21:44:57 1 16 2019-11-10 21:49:57 1 18 2019-11-10 21:54:57 1 16 2019-11-10 22:09:57 1 19 2019-11-10 22:29:57 1 19 2019-11-10 22:34:57 1 21 2019-11-10 23:19:57 1 14 2019-11-10 23:54:57 1 14 2019-11-11 00:04:57 1 13 2019-11-11 00:19:57 1 12 2019-11-11 00:29:57 1 12 2019-11-11 00:34:57 1 12 2019-11-11 00:49:57 1 11 2019-11-11 01:04:57 1 9 2019-11-11 01:29:57 1 10 2019-11-11 01:44:57 1 9 2019-11-11 01:59:57 1 10 2019-11-11 02:24:57 1 9 2019-11-11 02:34:57 1 8 2019-11-11 03:04:57 1 8 2019-11-11 03:09:57 1 8 2019-11-11 03:34:57 1 9 2019-11-11 04:04:57 1 8 2019-11-11 04:09:57 1 9 2019-11-11 04:39:57 1 7 2019-11-11 04:59:57 1 9 2019-11-11 05:04:57 1 7 2019-11-11 05:44:57 1 8 2019-11-11 05:54:57 1 8 2019-11-11 06:09:57 1 9 2019-11-11 07:09:57 1 7 2019-11-11 07:14:57 1 7 2019-11-11 07:19:57 1 5 2019-11-11 07:24:57 1 6 2019-11-11 07:34:57 1 5 2019-11-11 07:39:57 1 7 2019-11-11 07:44:57 1 8 2019-11-11 07:54:57 1 8 2019-11-11 07:59:57 1 9 2019-11-11 08:14:57 1 9 2019-11-11 08:34:57 1 8 2019-11-11 08:44:58 1 9 2019-11-11 08:54:57 1 12 2019-11-11 08:59:57 1 12 2019-11-11 09:14:57 1 11 2019-11-11 09:19:57 1 14 2019-11-11 09:19:57 2 1 2019-11-11 09:39:57 1 12 2019-11-11 09:44:57 1 11 2019-11-11 10:34:57 1 15 2019-11-11 10:39:57 1 18 2019-11-11 11:14:57 1 11 2019-11-11 12:14:57 1 15 2019-11-11 12:14:57 2 1 2019-11-11 12:29:57 1 19 2019-11-11 12:44:57 1 18 2019-11-11 12:44:57 2 1 2019-11-11 12:54:57 1 16 2019-11-11 12:54:57 2 1 2019-11-11 13:04:57 1 17 2019-11-11 13:04:57 2 1 2019-11-11 13:14:57 1 19 2019-11-11 13:19:57 1 17 2019-11-11 13:29:57 1 18 2019-11-11 13:44:57 1 13 2019-11-11 13:44:57 2 1 2019-11-11 13:49:57 1 14 2019-11-11 13:49:57 2 1 2019-11-11 13:54:57 1 15 2019-11-11 13:54:57 2 1 2019-11-11 14:44:57 1 13 2019-11-11 15:34:57 1 16 2019-11-11 15:44:57 1 14 2019-11-11 16:09:57 1 13 2019-11-11 16:34:57 1 16 2019-11-11 16:54:57 1 14 2019-11-11 17:04:57 1 16 2019-11-11 17:19:57 1 17 2019-11-11 17:49:57 1 14 2019-11-11 17:54:57 1 14 2019-11-11 18:09:57 1 13 2019-11-11 18:54:57 1 19 2019-11-11 19:19:57 1 16 2019-11-11 19:24:57 1 17 2019-11-11 19:44:57 1 15 2019-11-11 20:39:57 1 19 2019-11-11 20:44:57 1 17 2019-11-11 20:49:57 1 18 2019-11-10 05:09:57 1 8 2019-11-10 05:19:57 1 8 2019-11-10 05:24:57 1 8 2019-11-10 05:29:57 1 8 2019-11-10 05:34:57 1 9 2019-11-10 05:39:57 1 9 2019-11-10 05:44:57 1 8 2019-11-10 06:04:57 1 8 2019-11-10 06:09:57 1 9 2019-11-10 06:14:57 1 10 2019-11-10 06:29:57 1 10 2019-11-10 06:34:57 1 10 2019-11-10 06:39:57 1 9 2019-11-10 06:44:57 1 10 2019-11-10 06:49:57 1 8 2019-11-10 06:59:57 1 8 2019-11-10 07:04:57 1 9 2019-11-10 07:14:57 1 11 2019-11-10 07:24:57 1 7 2019-11-10 07:29:57 1 6 2019-11-10 07:34:57 1 7 2019-11-10 07:39:57 1 7 2019-11-10 07:44:57 1 7 2019-11-10 07:49:57 1 7 2019-11-10 07:54:57 1 9 2019-11-10 07:59:57 1 7 2019-11-10 08:09:57 1 10 2019-11-10 08:14:57 1 10 2019-11-10 08:19:57 1 9 2019-11-10 08:24:57 1 10 2019-11-10 08:29:57 1 10 2019-11-10 08:49:57 1 14 2019-11-10 08:59:57 1 14 2019-11-10 09:04:57 1 14 2019-11-10 09:19:57 1 13 2019-11-10 09:19:57 2 1 2019-11-10 09:24:57 1 14 2019-11-10 09:24:57 2 1 2019-11-10 09:34:57 1 12 2019-11-10 09:34:57 2 1 2019-11-10 09:44:57 1 9 2019-11-10 09:44:57 2 1 2019-11-10 09:49:57 1 9 2019-11-10 09:49:57 2 1 2019-11-10 09:54:57 1 12 2019-11-10 09:54:57 2 1 2019-11-10 09:59:57 1 10 2019-11-10 09:59:57 2 1 2019-11-10 10:14:57 1 8 2019-11-10 10:19:57 1 9 2019-11-10 10:19:57 2 1 2019-11-10 10:24:57 1 10 2019-11-10 10:24:57 2 1 2019-11-10 10:29:57 1 10 2019-11-10 10:49:57 1 13 2019-11-10 10:49:57 2 1 2019-11-10 10:54:57 1 11 2019-11-10 10:54:57 2 1 2019-11-10 11:09:57 1 13 2019-11-10 11:09:57 2 1 2019-11-10 11:14:57 1 14 2019-11-10 11:14:57 2 1 2019-11-10 11:19:57 1 13 2019-11-10 11:19:57 2 1 2019-11-10 11:24:57 1 12 2019-11-10 11:24:57 2 1 2019-11-10 11:29:57 1 12 2019-11-10 11:44:57 1 16 2019-11-10 11:54:57 1 15 2019-11-10 11:59:57 1 15 2019-11-10 12:09:57 1 14 2019-11-10 12:14:57 1 15 2019-11-10 12:19:57 1 16 2019-11-10 12:24:57 1 15 2019-11-10 12:29:57 1 15 2019-11-10 12:34:57 1 16 2019-11-10 12:44:57 1 15 2019-11-10 12:49:57 1 11 2019-11-10 12:54:57 1 11 2019-11-10 13:04:57 1 13 2019-11-10 13:14:57 1 15 2019-11-10 13:19:57 1 15 2019-11-10 13:34:57 1 16 2019-11-10 13:44:57 1 15 2019-11-10 13:49:57 1 19 2019-11-10 13:59:57 1 13 2019-11-10 14:04:57 1 16 2019-11-10 14:09:57 1 14 2019-11-10 14:14:57 1 15 2019-11-10 14:29:57 1 14 2019-11-10 14:34:57 1 16 2019-11-10 14:49:57 1 15 2019-11-10 14:49:57 2 1 2019-11-10 14:54:57 1 15 2019-11-10 14:54:57 2 1 2019-11-10 14:59:57 1 16 2019-11-10 14:59:57 2 1 2019-11-10 15:14:57 1 16 2019-11-10 15:14:57 2 1 2019-11-10 15:19:57 1 12 2019-11-10 15:19:57 2 1 2019-11-10 15:24:57 1 15 2019-11-10 15:24:57 2 1 2019-11-10 15:39:57 1 17 2019-11-10 15:39:57 2 1 2019-11-10 15:44:57 1 19 2019-11-10 15:44:57 2 1 2019-11-10 15:54:57 1 19 2019-11-10 15:54:57 2 1 2019-11-10 15:59:57 1 17 2019-11-10 15:59:57 2 1 2019-11-10 16:09:57 1 17 2019-11-10 16:09:57 2 1 2019-11-10 16:14:57 1 17 2019-11-10 16:14:57 2 1 2019-11-10 16:19:57 1 17 2019-11-10 16:19:57 2 1 2019-11-10 16:24:57 1 18 2019-11-10 16:24:57 2 1 2019-11-10 16:34:57 1 16 2019-11-10 16:34:57 2 2 2019-11-10 16:39:57 1 15 2019-11-10 16:39:57 2 2 2019-11-10 16:44:57 1 18 2019-11-10 16:44:57 2 1 2019-11-10 16:49:57 1 19 2019-11-10 16:49:57 2 1 2019-11-10 16:54:57 1 20 2019-11-10 16:54:57 2 1 2019-11-10 17:09:57 1 17 2019-11-10 17:29:57 1 17 2019-11-10 17:39:57 1 20 2019-11-10 17:39:57 2 1 2019-11-10 17:44:57 1 18 2019-11-10 17:44:57 2 1 2019-11-10 17:54:57 1 23 2019-11-10 17:54:57 2 1 2019-11-10 17:59:57 1 19 2019-11-10 17:59:57 2 1 2019-11-10 18:04:57 1 19 2019-11-10 18:04:57 2 1 2019-11-10 18:09:57 1 23 2019-11-10 18:09:57 2 1 2019-11-10 18:14:57 1 20 2019-11-10 18:14:57 2 1 2019-11-10 18:19:57 1 21 2019-11-10 18:19:57 2 1 2019-11-10 18:24:57 1 22 2019-11-10 18:24:57 2 1 2019-11-10 18:29:57 1 20 2019-11-10 18:29:57 2 1 2019-11-10 18:39:57 1 18 2019-11-10 18:39:57 2 1 2019-11-10 18:44:57 1 18 2019-11-10 18:44:57 2 1 2019-11-10 18:49:57 1 19 2019-11-10 18:49:57 2 1 2019-11-10 18:54:57 1 19 2019-11-10 18:54:57 2 1 2019-11-10 18:59:57 1 20 2019-11-10 18:59:57 2 1 2019-11-10 19:04:57 1 19 2019-11-10 19:04:57 2 1 2019-11-10 19:14:57 1 19 2019-11-10 19:14:57 2 1 2019-11-10 19:19:57 1 20 2019-11-10 19:19:57 2 1 2019-11-10 19:24:57 1 19 2019-11-10 19:24:57 2 1 2019-11-10 19:29:57 1 19 2019-11-10 19:29:57 2 1 2019-11-10 19:34:57 1 18 2019-11-10 19:34:57 2 1 2019-11-10 19:39:57 1 17 2019-11-10 19:39:57 2 1 2019-11-10 19:44:57 1 14 2019-11-10 19:44:57 2 1 2019-11-10 19:49:57 1 15 2019-11-10 19:49:57 2 1 2019-11-10 19:54:57 1 16 2019-11-10 19:54:57 2 1 2019-11-10 19:59:57 1 21 2019-11-10 19:59:57 2 1 2019-11-10 20:14:57 1 18 2019-11-10 20:14:57 2 1 2019-11-10 20:19:57 1 20 2019-11-10 20:19:57 2 1 2019-11-10 20:24:57 1 18 2019-11-10 20:24:57 2 1 2019-11-10 20:29:57 1 19 2019-11-10 20:29:57 2 1 2019-11-10 20:49:57 1 20 2019-11-10 20:49:57 2 1 2019-11-10 20:54:57 1 18 2019-11-10 20:54:57 2 1 2019-11-10 20:59:57 1 17 2019-11-10 20:59:57 2 1 2019-11-10 21:09:57 1 16 2019-11-10 21:09:57 2 1 2019-11-10 21:59:57 1 17 2019-11-10 22:14:57 1 17 2019-11-10 22:24:57 1 22 2019-11-10 22:49:57 1 19 2019-11-10 22:49:57 2 1 2019-11-10 22:54:57 1 18 2019-11-10 22:54:57 2 2 2019-11-10 22:59:57 1 15 2019-11-10 22:59:57 2 1 2019-11-10 23:14:57 1 14 2019-11-10 23:24:57 1 15 2019-11-10 23:49:57 1 12 2019-11-10 23:59:57 1 14 2019-11-11 00:09:57 1 12 2019-11-11 00:14:57 1 11 2019-11-11 00:24:57 1 12 2019-11-11 00:59:57 1 9 2019-11-11 01:19:57 1 9 2019-11-11 01:34:57 1 9 2019-11-11 02:04:57 1 10 2019-11-11 02:14:57 1 9 2019-11-11 02:19:57 1 9 2019-11-11 02:39:57 1 8 2019-11-11 02:44:57 1 8 2019-11-11 02:49:57 1 8 2019-11-11 02:54:57 1 8 2019-11-11 02:59:57 1 9 2019-11-11 03:24:57 1 10 2019-11-11 03:54:57 1 8 2019-11-11 03:59:57 1 8 2019-11-11 04:14:57 1 8 2019-11-11 04:19:57 1 8 2019-11-11 04:29:57 1 8 2019-11-11 04:44:57 1 7 2019-11-11 05:09:57 1 6 2019-11-11 05:19:57 1 7 2019-11-11 05:24:57 1 6 2019-11-11 05:39:57 1 7 2019-11-11 05:49:57 1 9 2019-11-11 06:04:57 1 8 2019-11-11 06:14:57 1 11 2019-11-11 06:24:57 1 9 2019-11-11 06:29:57 1 12 2019-11-11 06:34:57 1 10 2019-11-11 06:39:57 1 9 2019-11-11 06:59:57 1 7 2019-11-11 08:04:57 1 9 2019-11-11 08:19:57 1 9 2019-11-11 08:29:57 1 10 2019-11-11 08:39:57 1 8 2019-11-11 08:49:57 1 12 2019-11-11 09:04:57 1 13 2019-11-11 09:24:57 1 16 2019-11-11 09:24:57 2 1 2019-11-11 09:29:57 1 13 2019-11-11 09:29:57 2 1 2019-11-11 09:49:57 1 11 2019-11-11 09:54:57 1 9 2019-11-11 09:59:57 1 12 2019-11-11 10:04:57 1 16 2019-11-11 10:14:57 1 14 2019-11-11 10:19:57 1 15 2019-11-11 10:29:57 1 14 2019-11-11 10:44:57 1 14 2019-11-11 10:59:57 1 16 2019-11-11 11:04:57 1 14 2019-11-11 11:19:57 1 13 2019-11-11 11:39:57 1 11 2019-11-11 11:59:57 1 13 2019-11-11 12:09:57 1 11 2019-11-11 12:19:57 1 18 2019-11-11 12:19:57 2 1 2019-11-11 12:34:57 1 17 2019-11-11 12:59:57 1 17 2019-11-11 12:59:57 2 1 2019-11-11 13:24:57 1 14 2019-11-11 14:19:57 1 16 2019-11-11 14:24:57 1 14 2019-11-11 14:29:57 1 16 2019-11-11 14:39:57 1 12 2019-11-11 14:54:57 1 12 2019-11-11 14:59:58 1 12 2019-11-11 15:04:57 1 12 2019-11-11 15:04:57 2 1 2019-11-11 15:09:57 1 10 2019-11-11 15:09:57 2 1 2019-11-11 15:14:57 1 13 2019-11-11 15:14:57 2 1 2019-11-11 15:19:57 1 14 2019-11-11 15:24:57 1 12 2019-11-11 15:39:57 1 14 2019-11-11 15:54:57 1 12 2019-11-11 16:04:57 1 13 2019-11-11 16:19:57 1 16 2019-11-11 16:24:57 1 14 2019-11-11 16:29:57 1 14 2019-11-11 16:44:57 1 15 2019-11-11 16:59:57 1 15 2019-11-11 17:09:58 1 15 2019-11-11 17:14:57 1 14 2019-11-11 17:24:57 1 16 2019-11-11 17:39:57 1 14 2019-11-11 17:59:57 1 14 2019-11-11 18:04:57 1 14 2019-11-11 18:19:57 1 18 2019-11-11 18:19:57 2 1 2019-11-11 18:34:57 1 14 2019-11-11 18:39:57 1 12 2019-11-11 18:44:57 1 15 2019-11-11 18:59:57 1 19 2019-11-11 19:04:57 1 16 2019-11-11 19:04:57 2 1 2019-11-11 19:09:57 1 16 2019-11-11 19:29:57 1 16 2019-11-11 19:49:57 1 18 2019-11-11 19:59:57 1 15 2019-11-11 20:14:57 1 15 2019-11-11 20:14:57 2 1 2019-11-11 20:24:57 1 18 2019-11-11 20:24:57 2 1 2019-11-11 20:29:57 1 18 2019-11-11 20:34:57 1 20 2019-11-11 20:54:57 1 18 2019-11-11 20:59:57 1 16 2019-11-11 21:04:57 1 17 2019-11-11 21:09:57 1 19 2019-11-11 21:14:57 1 18 2019-11-11 21:24:57 1 19 2019-11-11 21:29:57 1 18 2019-11-11 21:39:57 1 18 2019-11-11 21:44:57 1 16 2019-11-11 21:49:57 1 15 2019-11-11 21:54:57 1 12 2019-11-11 21:59:57 1 15 2019-11-11 22:04:57 1 14 2019-11-11 22:09:58 1 15 2019-11-11 22:14:57 1 16 2019-11-11 22:19:57 1 16 2019-11-11 22:24:57 1 12 2019-11-11 22:34:57 1 15 2019-11-11 22:39:57 1 13 2019-11-11 22:44:57 1 13 2019-11-11 22:49:57 1 13 2019-11-11 22:49:57 2 1 2019-11-11 22:54:57 1 12 2019-11-11 23:04:57 1 13 2019-11-11 23:04:57 2 1 2019-11-11 23:09:57 1 8 2019-11-11 23:19:57 1 14 2019-11-11 23:29:57 1 14 2019-11-11 23:44:57 1 15 2019-11-11 23:54:57 1 15 2019-11-12 00:04:57 1 17 2019-11-12 00:19:57 1 11 2019-11-12 00:29:57 1 11 2019-11-12 00:44:57 1 9 2019-11-12 01:14:57 1 9 2019-11-12 01:19:57 1 9 2019-11-12 01:29:57 1 9 2019-11-12 01:39:57 1 10 2019-11-12 01:44:57 1 8 2019-11-12 01:49:57 1 8 2019-11-12 01:54:57 1 9 2019-11-12 01:59:57 1 8 2019-11-12 02:09:57 1 9 2019-11-12 02:14:57 1 9 2019-11-12 02:19:57 1 10 2019-11-12 02:34:57 1 11 2019-11-12 02:39:57 1 10 2019-11-12 02:44:57 1 10 2019-11-12 02:54:57 1 9 2019-11-10 20:44:57 1 19 2019-11-10 20:44:57 2 1 2019-11-10 21:14:57 1 16 2019-11-10 21:14:57 2 1 2019-11-10 21:29:57 1 16 2019-11-10 21:29:57 2 1 2019-11-10 22:04:57 1 18 2019-11-10 22:19:57 1 21 2019-11-10 22:39:57 1 19 2019-11-10 22:44:57 1 18 2019-11-10 22:44:57 2 1 2019-11-10 23:04:57 1 16 2019-11-10 23:04:57 2 1 2019-11-10 23:09:57 1 15 2019-11-10 23:29:57 1 15 2019-11-10 23:34:57 1 14 2019-11-10 23:39:57 1 13 2019-11-10 23:44:57 1 13 2019-11-11 00:39:57 1 12 2019-11-11 00:44:57 1 11 2019-11-11 00:54:57 1 10 2019-11-11 01:09:57 1 10 2019-11-11 01:14:57 1 10 2019-11-11 01:24:57 1 9 2019-11-11 01:39:57 1 9 2019-11-11 01:49:57 1 9 2019-11-11 01:54:57 1 8 2019-11-11 02:09:57 1 10 2019-11-11 02:29:57 1 9 2019-11-11 03:14:57 1 9 2019-11-11 03:19:57 1 11 2019-11-11 03:29:57 1 8 2019-11-11 03:39:57 1 8 2019-11-11 03:44:57 1 8 2019-11-11 03:49:57 1 8 2019-11-11 04:24:57 1 9 2019-11-11 04:34:57 1 8 2019-11-11 04:49:57 1 9 2019-11-11 04:54:57 1 8 2019-11-11 05:14:57 1 6 2019-11-11 05:29:57 1 6 2019-11-11 05:34:57 1 6 2019-11-11 05:59:57 1 8 2019-11-11 06:19:57 1 9 2019-11-11 06:44:57 1 7 2019-11-11 06:49:57 1 6 2019-11-11 06:54:57 1 6 2019-11-11 07:04:57 1 5 2019-11-11 07:29:57 1 6 2019-11-11 07:49:57 1 8 2019-11-11 08:09:57 1 9 2019-11-11 08:24:57 1 11 2019-11-11 09:09:57 1 9 2019-11-11 09:34:57 1 13 2019-11-11 10:09:57 1 13 2019-11-11 10:24:57 1 18 2019-11-11 10:49:57 1 15 2019-11-11 10:54:57 1 17 2019-11-11 11:09:57 1 12 2019-11-11 11:24:57 1 12 2019-11-11 11:29:57 1 13 2019-11-11 11:34:57 1 12 2019-11-11 11:44:57 1 10 2019-11-11 11:49:57 1 10 2019-11-11 11:54:57 1 14 2019-11-11 12:04:57 1 11 2019-11-11 12:24:57 1 18 2019-11-11 12:39:57 1 17 2019-11-11 12:49:57 1 15 2019-11-11 12:49:57 2 1 2019-11-11 13:09:57 1 16 2019-11-11 13:34:57 1 16 2019-11-11 13:39:57 1 16 2019-11-11 13:59:57 1 17 2019-11-11 13:59:57 2 2 2019-11-11 14:04:57 1 17 2019-11-11 14:04:57 2 1 2019-11-11 14:09:57 1 15 2019-11-11 14:14:57 1 15 2019-11-11 14:34:57 1 15 2019-11-11 14:49:57 1 14 2019-11-11 15:29:57 1 12 2019-11-11 15:49:57 1 14 2019-11-11 15:59:57 1 13 2019-11-11 16:14:57 1 15 2019-11-11 16:39:57 1 16 2019-11-11 16:49:57 1 14 2019-11-11 17:29:57 1 16 2019-11-11 17:34:57 1 18 2019-11-11 17:44:57 1 11 2019-11-11 18:14:57 1 14 2019-11-11 18:14:57 2 1 2019-11-11 18:24:57 1 16 2019-11-11 18:24:57 2 1 2019-11-11 18:29:57 1 14 2019-11-11 18:49:57 1 13 2019-11-11 19:14:57 1 15 2019-11-11 19:34:57 1 17 2019-11-11 19:39:57 1 15 2019-11-11 19:54:57 1 17 2019-11-11 20:04:57 1 13 2019-11-11 20:04:57 2 1 2019-11-11 20:09:57 1 15 2019-11-11 20:09:57 2 1 2019-11-11 20:19:57 1 16 2019-11-11 20:19:57 2 1 2019-11-11 21:19:57 1 22 2019-11-11 21:34:57 1 16 2019-11-11 22:29:57 1 13 2019-11-11 22:59:57 1 13 2019-11-11 22:59:57 2 1 2019-11-11 23:14:57 1 11 2019-11-11 23:24:57 1 12 2019-11-11 23:34:57 1 16 2019-11-11 23:39:57 1 17 2019-11-11 23:49:57 1 14 2019-11-11 23:59:57 1 16 2019-11-12 00:09:57 1 16 2019-11-12 00:14:57 1 12 2019-11-12 00:24:57 1 11 2019-11-12 00:34:57 1 11 2019-11-12 00:39:57 1 11 2019-11-12 00:39:57 2 1 2019-11-12 00:49:57 1 10 2019-11-12 00:54:57 1 9 2019-11-12 00:59:57 1 9 2019-11-12 01:04:57 1 10 2019-11-12 01:09:58 1 9 2019-11-12 01:24:57 1 9 2019-11-12 01:34:57 1 8 2019-11-12 02:04:57 1 9 2019-11-12 02:24:57 1 11 2019-11-12 02:29:57 1 11 2019-11-12 02:49:57 1 10 2019-11-12 02:59:57 1 10 2019-11-12 03:04:57 1 8 2019-11-12 03:09:57 1 8 2019-11-12 03:14:57 1 9 2019-11-12 03:19:57 1 8 2019-11-12 03:24:57 1 8 2019-11-12 03:29:57 1 8 2019-11-12 03:34:57 1 9 2019-11-12 03:39:57 1 8 2019-11-12 03:44:57 1 9 2019-11-12 03:49:57 1 9 2019-11-12 03:54:57 1 9 2019-11-12 03:59:57 1 9 2019-11-12 04:04:57 1 9 2019-11-12 04:09:57 1 9 2019-11-12 04:14:57 1 9 2019-11-12 04:19:57 1 9 2019-11-12 04:24:57 1 9 2019-11-12 04:29:57 1 9 2019-11-12 04:34:57 1 9 2019-11-12 04:39:57 1 9 2019-11-12 04:44:57 1 10 2019-11-12 04:49:57 1 10 2019-11-12 04:54:57 1 9 2019-11-12 04:59:57 1 9 2019-11-12 05:04:57 1 9 2019-11-12 05:09:57 1 9 2019-11-12 05:14:57 1 7 2019-11-12 05:19:57 1 7 2019-11-12 05:24:57 1 7 2019-11-12 05:29:57 1 8 2019-11-12 05:34:57 1 8 2019-11-12 05:39:57 1 8 2019-11-12 05:44:57 1 8 2019-11-12 05:49:57 1 8 2019-11-12 05:54:57 1 9 2019-11-12 05:59:57 1 9 2019-11-12 06:04:57 1 8 2019-11-12 06:09:57 1 8 2019-11-12 06:14:57 1 8 2019-11-12 06:19:57 1 8 2019-11-12 06:24:57 1 8 2019-11-12 06:29:57 1 8 2019-11-12 06:34:57 1 7 2019-11-12 06:39:57 1 7 2019-11-12 06:44:57 1 7 2019-11-12 06:49:57 1 8 2019-11-12 06:54:57 1 9 2019-11-12 06:59:57 1 9 2019-11-12 07:04:57 1 9 2019-11-12 07:09:57 1 9 2019-11-12 07:14:57 1 12 2019-11-12 07:19:57 1 9 2019-11-12 07:24:57 1 9 2019-11-12 08:04:57 1 10 2019-11-12 08:09:57 1 9 2019-11-12 08:14:57 1 11 2019-11-12 08:24:57 1 13 2019-11-12 08:34:57 1 10 2019-11-12 08:39:57 1 10 2019-11-12 08:44:57 1 8 2019-11-12 09:19:57 1 9 2019-11-12 09:29:57 1 13 2019-11-12 09:44:57 1 10 2019-11-12 09:49:57 1 11 2019-11-12 09:54:57 1 10 2019-11-12 10:04:57 1 11 2019-11-12 10:09:57 1 11 2019-11-12 10:24:57 1 14 2019-11-12 10:29:58 1 11 2019-11-12 10:34:57 1 12 2019-11-12 10:34:57 2 1 2019-11-12 10:39:57 1 15 2019-11-12 10:39:57 2 1 2019-11-12 10:49:57 1 15 2019-11-12 10:49:57 2 1 2019-11-12 11:04:57 1 12 2019-11-12 11:04:57 2 1 2019-11-12 11:09:57 1 13 2019-11-12 11:09:57 2 1 2019-11-12 11:39:57 1 13 2019-11-12 11:49:57 1 13 2019-11-12 12:29:57 1 13 2019-11-12 12:34:57 1 13 2019-11-12 13:14:57 1 15 2019-11-12 13:29:57 1 17 2019-11-12 13:54:57 1 14 2019-11-12 14:09:57 1 13 2019-11-12 14:14:57 1 16 2019-11-12 14:19:57 1 14 2019-11-12 14:24:57 1 14 2019-11-12 15:09:57 1 11 2019-11-12 15:09:57 2 1 2019-11-12 15:24:57 1 13 2019-11-12 15:34:57 1 12 2019-11-12 15:39:57 1 10 2019-11-12 15:44:57 1 11 2019-11-12 15:54:57 1 12 2019-11-12 15:59:57 1 12 2019-11-12 16:14:57 1 12 2019-11-12 16:24:57 1 15 2019-11-12 16:29:57 1 16 2019-11-12 16:39:57 1 15 2019-11-12 16:44:57 1 14 2019-11-12 16:49:57 1 13 2019-11-12 16:59:57 1 14 2019-11-12 17:29:57 1 13 2019-11-12 17:34:57 1 13 2019-11-12 17:34:57 2 1 2019-11-12 17:49:57 1 15 2019-11-12 17:54:57 1 12 2019-11-12 17:59:57 1 10 2019-11-12 17:59:57 2 1 2019-11-12 18:09:57 1 13 2019-11-12 18:09:57 2 1 2019-11-12 18:39:57 1 15 2019-11-12 18:39:57 2 1 2019-11-12 18:44:57 1 14 2019-11-12 18:44:57 2 1 2019-11-12 18:49:57 1 12 2019-11-12 18:49:57 2 1 2019-11-12 18:59:57 1 12 2019-11-12 19:04:57 1 15 2019-11-12 19:19:57 1 13 2019-11-12 19:34:57 1 14 2019-11-12 19:34:57 2 1 2019-11-12 19:39:57 1 13 2019-11-12 19:39:57 2 1 2019-11-12 20:19:57 1 13 2019-11-12 20:49:57 1 12 2019-11-12 20:54:57 1 13 2019-11-12 21:14:57 1 14 2019-11-12 21:14:57 2 1 2019-11-12 21:29:57 1 17 2019-11-12 21:29:57 2 1 2019-11-12 21:39:57 1 16 2019-11-12 21:39:57 2 1 2019-11-12 22:29:58 1 17 2019-11-12 22:44:57 1 15 2019-11-12 23:24:57 1 18 2019-11-12 23:29:57 1 19 2019-11-12 23:44:57 1 18 2019-11-12 23:49:57 1 17 2019-11-13 00:19:57 1 15 2019-11-13 00:24:57 1 14 2019-11-13 00:29:57 1 10 2019-11-13 00:44:57 1 11 2019-11-13 00:49:57 1 12 2019-11-13 00:49:57 2 1 2019-11-13 01:04:57 1 10 2019-11-13 01:04:57 2 1 2019-11-13 01:14:57 1 8 2019-11-13 01:14:57 2 1 2019-11-13 01:19:57 1 8 2019-11-13 01:19:57 2 1 2019-11-13 01:24:57 1 7 2019-11-13 01:24:57 2 1 2019-11-13 01:39:57 1 8 2019-11-13 01:39:57 2 1 2019-11-13 01:54:57 1 7 2019-11-13 01:54:57 2 1 2019-11-13 01:59:57 1 7 2019-11-13 01:59:57 2 1 2019-11-13 02:09:57 1 7 2019-11-13 02:09:57 2 1 2019-11-13 02:14:57 1 7 2019-11-13 02:14:57 2 1 2019-11-13 02:44:57 1 6 2019-11-13 02:44:57 2 1 2019-11-13 02:49:57 1 6 2019-11-13 02:49:57 2 1 2019-11-13 02:59:57 1 3 2019-11-13 03:14:57 1 6 2019-11-13 03:24:57 1 6 2019-11-13 03:39:57 1 6 2019-11-13 04:04:57 1 6 2019-11-13 04:14:57 1 6 2019-11-13 04:24:57 1 6 2019-11-13 04:44:57 1 7 2019-11-13 04:54:57 1 9 2019-11-13 04:59:57 1 6 2019-11-13 05:04:57 1 7 2019-11-13 05:09:57 1 7 2019-11-13 05:24:57 1 7 2019-11-13 05:39:57 1 8 2019-11-13 05:44:57 1 8 2019-11-13 05:59:57 1 8 2019-11-13 06:04:57 1 8 2019-11-13 06:34:57 1 8 2019-11-13 06:39:57 1 6 2019-11-13 06:44:57 1 6 2019-11-13 07:04:57 1 7 2019-11-13 07:19:57 1 6 2019-11-13 07:29:57 1 7 2019-11-13 07:39:57 1 7 2019-11-13 07:54:57 1 7 2019-11-13 07:59:57 1 7 2019-11-13 08:34:57 1 11 2019-11-13 08:44:57 1 12 2019-11-13 08:54:57 1 12 2019-11-13 09:14:57 1 11 2019-11-13 09:24:57 1 11 2019-11-13 09:34:57 1 9 2019-11-13 09:34:57 2 1 2019-11-13 10:14:57 1 11 2019-11-13 10:14:57 2 1 2019-11-13 10:29:57 1 13 2019-11-13 10:34:57 1 12 2019-11-13 10:49:57 1 9 2019-11-13 11:09:57 1 16 2019-11-13 11:14:57 1 14 2019-11-13 11:24:57 1 12 2019-11-13 11:49:57 1 10 2019-11-13 11:54:57 1 13 2019-11-13 12:04:57 1 13 2019-11-13 12:09:57 1 12 2019-11-13 12:19:57 1 15 2019-11-13 12:44:57 1 10 2019-11-13 13:04:57 1 14 2019-11-13 13:24:57 1 13 2019-11-13 13:29:57 1 16 2019-11-13 13:29:57 2 1 2019-11-13 13:34:57 1 16 2019-11-13 13:34:57 2 1 2019-11-13 13:39:57 1 13 2019-11-13 13:39:57 2 1 2019-11-13 13:54:57 1 13 2019-11-13 13:54:57 2 1 2019-11-13 14:14:57 1 15 2019-11-13 14:14:57 2 1 2019-11-13 14:29:57 1 14 2019-11-13 14:49:57 1 19 2019-11-13 15:04:57 1 15 2019-11-13 15:09:57 1 15 2019-11-13 15:39:57 1 18 2019-11-13 15:54:57 1 19 2019-11-12 07:29:57 1 11 2019-11-12 07:39:57 1 7 2019-11-12 07:49:57 1 9 2019-11-12 08:59:57 1 10 2019-11-12 09:04:57 1 9 2019-11-12 09:09:57 1 9 2019-11-12 09:34:57 1 11 2019-11-12 10:14:57 1 12 2019-11-12 10:19:57 1 10 2019-11-12 10:44:57 1 12 2019-11-12 10:44:57 2 1 2019-11-12 10:59:57 1 15 2019-11-12 10:59:57 2 1 2019-11-12 11:19:57 1 11 2019-11-12 11:19:57 2 1 2019-11-12 12:04:57 1 13 2019-11-12 12:09:57 1 11 2019-11-12 12:39:57 1 14 2019-11-12 12:49:57 1 12 2019-11-12 13:24:57 1 13 2019-11-12 13:34:57 1 15 2019-11-12 13:44:58 1 14 2019-11-12 13:49:57 1 12 2019-11-12 13:59:57 1 14 2019-11-12 14:04:57 1 14 2019-11-12 14:29:57 1 14 2019-11-12 14:34:57 1 12 2019-11-12 14:39:57 1 11 2019-11-12 14:44:57 1 11 2019-11-12 14:49:57 1 11 2019-11-12 15:04:57 1 13 2019-11-12 15:04:57 2 1 2019-11-12 15:14:57 1 13 2019-11-12 15:14:57 2 1 2019-11-12 15:19:57 1 12 2019-11-12 15:19:57 2 1 2019-11-12 16:04:57 1 13 2019-11-12 16:19:57 1 12 2019-11-12 17:04:57 1 16 2019-11-12 17:04:57 2 1 2019-11-12 17:09:57 1 16 2019-11-12 17:14:57 1 15 2019-11-12 17:39:57 1 10 2019-11-12 18:04:57 1 12 2019-11-12 18:04:57 2 1 2019-11-12 18:14:57 1 10 2019-11-12 18:14:57 2 1 2019-11-12 18:24:57 1 13 2019-11-12 18:24:57 2 1 2019-11-12 18:29:57 1 14 2019-11-12 18:29:57 2 1 2019-11-12 18:54:57 1 11 2019-11-12 19:09:57 1 15 2019-11-12 19:24:57 1 14 2019-11-12 19:44:57 1 16 2019-11-12 19:44:57 2 2 2019-11-12 19:49:57 1 16 2019-11-12 19:54:57 1 18 2019-11-12 19:59:58 1 17 2019-11-12 20:34:57 1 12 2019-11-12 20:59:57 1 15 2019-11-12 21:04:57 1 13 2019-11-12 21:34:57 1 14 2019-11-12 21:34:57 2 1 2019-11-12 21:49:57 1 17 2019-11-12 21:49:57 2 1 2019-11-12 21:54:57 1 17 2019-11-12 21:54:57 2 1 2019-11-12 22:04:57 1 18 2019-11-12 22:04:57 2 1 2019-11-12 22:24:57 1 16 2019-11-12 22:39:57 1 13 2019-11-12 22:49:57 1 15 2019-11-12 22:54:57 1 16 2019-11-12 23:04:57 1 16 2019-11-12 23:19:57 1 22 2019-11-12 23:54:57 1 15 2019-11-12 23:59:57 1 15 2019-11-13 00:09:57 1 14 2019-11-13 00:54:57 1 9 2019-11-13 00:54:57 2 1 2019-11-13 00:59:57 1 9 2019-11-13 00:59:57 2 1 2019-11-13 01:09:57 1 8 2019-11-13 01:09:57 2 1 2019-11-13 01:29:57 1 8 2019-11-13 01:29:57 2 1 2019-11-13 01:34:57 1 8 2019-11-13 01:34:57 2 1 2019-11-13 01:44:57 1 9 2019-11-13 01:44:57 2 1 2019-11-13 02:04:57 1 7 2019-11-13 02:04:57 2 1 2019-11-13 02:19:57 1 7 2019-11-13 02:19:57 2 1 2019-11-13 02:39:57 1 6 2019-11-13 02:39:57 2 1 2019-11-13 02:54:57 1 5 2019-11-13 03:09:57 1 6 2019-11-13 03:19:57 1 6 2019-11-13 03:29:57 1 6 2019-11-13 03:44:57 1 6 2019-11-13 03:54:57 1 6 2019-11-13 04:09:57 1 6 2019-11-13 04:19:57 1 6 2019-11-13 06:09:57 1 8 2019-11-13 06:14:57 1 8 2019-11-13 06:29:57 1 9 2019-11-13 07:14:57 1 9 2019-11-13 07:24:57 1 7 2019-11-13 07:34:57 1 7 2019-11-13 07:44:57 1 6 2019-11-13 07:49:57 1 7 2019-11-13 08:14:57 1 8 2019-11-13 08:24:57 1 9 2019-11-13 08:39:57 1 10 2019-11-13 08:49:57 1 13 2019-11-13 09:04:57 1 11 2019-11-13 09:19:57 1 14 2019-11-13 09:39:57 1 11 2019-11-13 09:39:57 2 2 2019-11-13 09:44:57 1 11 2019-11-13 09:49:57 1 10 2019-11-13 09:54:57 1 11 2019-11-13 10:04:57 1 12 2019-11-13 10:09:57 1 12 2019-11-13 10:39:57 1 12 2019-11-13 11:04:57 1 14 2019-11-13 11:39:57 1 11 2019-11-13 11:44:57 1 11 2019-11-13 12:14:57 1 13 2019-11-13 12:54:57 1 9 2019-11-13 13:09:57 1 14 2019-11-13 13:14:57 1 15 2019-11-13 13:19:57 1 15 2019-11-13 13:44:57 1 13 2019-11-13 13:44:57 2 1 2019-11-13 13:49:57 1 12 2019-11-13 13:49:57 2 1 2019-11-13 14:19:57 1 16 2019-11-13 14:19:57 2 1 2019-11-13 14:34:57 1 16 2019-11-13 14:54:57 1 17 2019-11-13 14:59:57 1 15 2019-11-13 15:19:57 1 13 2019-11-13 15:24:57 1 13 2019-11-13 15:44:57 1 16 2019-11-13 16:14:57 1 17 2019-11-13 16:19:57 1 16 2019-11-13 16:24:57 1 16 2019-11-13 16:29:57 1 20 2019-11-13 16:34:57 1 18 2019-11-13 16:39:57 1 18 2019-11-13 16:59:57 1 21 2019-11-13 17:04:57 1 18 2019-11-13 17:09:57 1 15 2019-11-13 17:14:57 1 15 2019-11-13 17:29:57 1 11 2019-11-13 17:49:57 1 11 2019-11-13 18:04:57 1 13 2019-11-13 18:09:57 1 17 2019-11-13 18:14:57 1 14 2019-11-13 18:19:57 1 16 2019-11-13 18:29:57 1 14 2019-11-13 18:34:57 1 13 2019-11-13 18:39:57 1 13 2019-11-13 18:44:57 1 14 2019-11-13 18:49:57 1 16 2019-11-13 18:54:57 1 17 2019-11-13 18:59:57 1 17 2019-11-13 19:04:57 1 18 2019-11-13 19:14:57 1 18 2019-11-13 19:39:57 1 18 2019-11-13 19:44:57 1 17 2019-11-13 19:49:57 1 16 2019-11-13 19:54:57 1 15 2019-11-13 20:09:57 1 20 2019-11-13 20:24:57 1 19 2019-11-13 20:29:57 1 19 2019-11-13 20:34:57 1 18 2019-11-13 20:39:57 1 18 2019-11-13 20:44:57 1 20 2019-11-13 20:49:57 1 18 2019-11-13 20:54:57 1 19 2019-11-13 21:04:57 1 16 2019-11-12 07:34:57 1 9 2019-11-12 07:44:57 1 9 2019-11-12 07:54:57 1 8 2019-11-12 07:59:57 1 9 2019-11-12 08:19:57 1 13 2019-11-12 08:29:58 1 14 2019-11-12 08:49:57 1 10 2019-11-12 08:54:57 1 9 2019-11-12 09:14:57 1 9 2019-11-12 09:24:57 1 12 2019-11-12 09:39:57 1 12 2019-11-12 09:59:57 1 10 2019-11-12 10:54:57 1 12 2019-11-12 10:54:57 2 1 2019-11-12 11:14:57 1 12 2019-11-12 11:14:57 2 1 2019-11-12 11:24:57 1 11 2019-11-12 11:24:57 2 1 2019-11-12 11:29:57 1 11 2019-11-12 11:29:57 2 1 2019-11-12 11:34:57 1 12 2019-11-12 11:34:57 2 1 2019-11-12 11:44:57 1 12 2019-11-12 11:54:57 1 13 2019-11-12 11:59:57 1 13 2019-11-12 12:14:57 1 13 2019-11-12 12:19:57 1 11 2019-11-12 12:24:57 1 14 2019-11-12 12:44:57 1 14 2019-11-12 12:54:57 1 13 2019-11-12 12:59:57 1 14 2019-11-12 13:04:57 1 16 2019-11-12 13:09:57 1 17 2019-11-12 13:19:57 1 13 2019-11-12 13:39:57 1 14 2019-11-12 14:54:57 1 12 2019-11-12 14:59:57 1 12 2019-11-12 15:29:57 1 13 2019-11-12 15:49:57 1 12 2019-11-12 16:09:57 1 11 2019-11-12 16:34:57 1 15 2019-11-12 16:54:57 1 13 2019-11-12 17:19:57 1 13 2019-11-12 17:24:57 1 12 2019-11-12 17:44:57 1 10 2019-11-12 18:19:57 1 13 2019-11-12 18:19:57 2 1 2019-11-12 18:34:57 1 14 2019-11-12 18:34:57 2 1 2019-11-12 19:14:57 1 16 2019-11-12 19:29:57 1 12 2019-11-12 19:29:57 2 1 2019-11-12 20:04:57 1 16 2019-11-12 20:09:57 1 13 2019-11-12 20:14:57 1 13 2019-11-12 20:24:57 1 11 2019-11-12 20:29:57 1 13 2019-11-12 20:39:57 1 11 2019-11-12 20:44:57 1 11 2019-11-12 21:09:57 1 17 2019-11-12 21:19:57 1 14 2019-11-12 21:19:57 2 1 2019-11-12 21:24:57 1 15 2019-11-12 21:24:57 2 1 2019-11-12 21:44:57 1 16 2019-11-12 21:44:57 2 1 2019-11-12 21:59:57 1 16 2019-11-12 21:59:57 2 1 2019-11-12 22:09:57 1 19 2019-11-12 22:09:57 2 1 2019-11-12 22:14:57 1 15 2019-11-12 22:19:57 1 16 2019-11-12 22:34:57 1 14 2019-11-12 22:59:57 1 17 2019-11-12 23:09:57 1 16 2019-11-12 23:14:57 1 18 2019-11-12 23:34:57 1 20 2019-11-12 23:39:57 1 19 2019-11-13 00:04:57 1 12 2019-11-13 00:14:57 1 15 2019-11-13 00:34:57 1 11 2019-11-13 00:39:57 1 12 2019-11-13 01:49:57 1 9 2019-11-13 01:49:57 2 1 2019-11-13 02:24:57 1 7 2019-11-13 02:24:57 2 1 2019-11-13 02:29:57 1 7 2019-11-13 02:29:57 2 1 2019-11-13 02:34:57 1 7 2019-11-13 02:34:57 2 1 2019-11-13 03:04:57 1 6 2019-11-13 03:34:57 1 7 2019-11-13 03:49:57 1 6 2019-11-13 03:59:57 1 6 2019-11-13 04:29:57 1 6 2019-11-13 04:34:57 1 7 2019-11-13 04:39:57 1 7 2019-11-13 04:49:57 1 7 2019-11-13 05:14:57 1 7 2019-11-13 05:19:57 1 6 2019-11-13 05:29:57 1 7 2019-11-13 05:34:57 1 7 2019-11-13 05:49:57 1 8 2019-11-13 05:54:57 1 8 2019-11-13 06:19:57 1 7 2019-11-13 06:24:57 1 8 2019-11-13 06:49:57 1 8 2019-11-13 06:54:57 1 8 2019-11-13 06:59:57 1 8 2019-11-13 07:09:57 1 7 2019-11-13 08:04:57 1 8 2019-11-13 08:09:57 1 8 2019-11-13 08:19:57 1 9 2019-11-13 08:29:57 1 10 2019-11-13 08:59:57 1 11 2019-11-13 09:09:57 1 8 2019-11-13 09:29:57 1 9 2019-11-13 09:59:57 1 12 2019-11-13 10:19:57 1 11 2019-11-13 10:19:57 2 1 2019-11-13 10:24:57 1 9 2019-11-13 10:44:57 1 8 2019-11-13 10:54:57 1 13 2019-11-13 10:59:57 1 13 2019-11-13 11:19:57 1 10 2019-11-13 11:29:57 1 14 2019-11-13 11:34:57 1 14 2019-11-13 11:59:57 1 11 2019-11-13 12:24:57 1 14 2019-11-13 12:29:57 1 14 2019-11-13 12:34:57 1 13 2019-11-13 12:39:57 1 12 2019-11-13 12:49:57 1 10 2019-11-13 12:59:57 1 14 2019-11-13 13:59:57 1 12 2019-11-13 13:59:57 2 1 2019-11-13 14:04:57 1 13 2019-11-13 14:04:57 2 1 2019-11-13 14:09:57 1 14 2019-11-13 14:09:57 2 1 2019-11-13 14:24:57 1 16 2019-11-13 14:24:57 2 1 2019-11-13 14:39:57 1 17 2019-11-13 14:44:57 1 18 2019-11-13 15:14:57 1 13 2019-11-13 15:29:57 1 14 2019-11-13 15:34:57 1 15 2019-11-13 15:49:57 1 16 2019-11-13 15:59:57 1 16 2019-11-13 16:04:57 1 17 2019-11-13 16:09:57 1 13 2019-11-13 16:44:57 1 17 2019-11-13 16:49:57 1 18 2019-11-13 16:54:57 1 20 2019-11-13 17:19:57 1 15 2019-11-13 17:24:57 1 11 2019-11-13 17:34:57 1 12 2019-11-13 17:39:57 1 14 2019-11-13 17:44:57 1 14 2019-11-13 17:54:57 1 15 2019-11-13 17:59:57 1 17 2019-11-13 18:24:57 1 16 2019-11-13 19:09:57 1 18 2019-11-13 19:19:57 1 18 2019-11-13 19:24:57 1 19 2019-11-13 19:29:57 1 17 2019-11-13 19:34:57 1 16 2019-11-13 19:59:57 1 18 2019-11-13 20:04:57 1 19 2019-11-13 20:14:57 1 21 2019-11-13 20:19:57 1 18 2019-11-13 20:59:57 1 16 2019-11-13 21:09:57 1 20 2019-11-13 21:14:57 1 16 2019-11-13 21:19:57 1 20 2019-11-13 21:24:57 1 17 2019-11-13 21:29:57 1 18 2019-11-13 21:34:57 1 19 2019-11-13 21:39:57 1 17 2019-11-13 21:44:57 1 17 2019-11-13 21:49:57 1 17 2019-11-13 21:54:57 1 18 2019-11-13 21:59:57 1 17 2019-11-13 22:04:57 1 21 2019-11-13 22:09:57 1 20 2019-11-13 22:14:57 1 20 2019-11-13 22:24:57 1 20 2019-11-13 22:29:57 1 19 2019-11-13 22:44:57 1 15 2019-11-13 22:49:57 1 14 2019-11-13 23:34:57 1 16 2019-11-13 23:39:57 1 17 2019-11-13 23:49:57 1 17 2019-11-14 01:04:57 1 9 2019-11-14 01:09:57 1 10 2019-11-14 01:44:57 1 8 2019-11-14 01:49:57 1 7 2019-11-14 01:59:57 1 8 2019-11-14 02:09:57 1 7 2019-11-14 02:19:57 1 7 2019-11-14 02:29:57 1 7 2019-11-14 02:44:57 1 8 2019-11-14 02:49:57 1 9 2019-11-14 03:09:57 1 9 2019-11-14 03:24:57 1 7 2019-11-14 03:29:57 1 6 2019-11-14 03:44:57 1 5 2019-11-14 03:49:57 1 5 2019-11-14 04:04:57 1 5 2019-11-14 04:09:57 1 5 2019-11-14 04:14:57 1 6 2019-11-14 04:19:57 1 6 2019-11-14 04:29:57 1 5 2019-11-14 04:39:57 1 6 2019-11-14 04:44:57 1 5 2019-11-14 04:49:57 1 5 2019-11-14 04:54:57 1 6 2019-11-14 05:04:57 1 7 2019-11-14 05:24:57 1 5 2019-11-14 05:54:57 1 5 2019-11-14 05:59:57 1 4 2019-11-14 06:09:57 1 4 2019-11-14 06:29:57 1 5 2019-11-14 07:04:57 1 4 2019-11-14 07:29:57 1 8 2019-11-14 07:39:57 1 7 2019-11-14 07:44:57 1 7 2019-11-14 07:59:57 1 7 2019-11-14 08:19:57 1 6 2019-11-14 08:24:57 1 7 2019-11-14 08:34:57 1 10 2019-11-14 08:59:57 1 7 2019-11-14 09:04:57 1 5 2019-11-14 09:14:57 1 7 2019-11-14 09:29:57 1 6 2019-11-14 09:44:57 1 11 2019-11-14 09:49:57 1 13 2019-11-14 10:04:57 1 10 2019-11-14 10:54:57 1 15 2019-11-14 11:24:57 1 14 2019-11-14 11:29:57 1 11 2019-11-14 11:54:57 1 11 2019-11-14 11:59:57 1 13 2019-11-14 12:40:19 1 9 2019-11-14 12:45:19 1 10 2019-11-14 12:45:19 2 1 2019-11-14 12:55:19 1 9 2019-11-14 12:55:19 2 2 2019-11-14 14:05:19 1 10 2019-11-14 14:05:19 2 3 2019-11-14 14:20:19 1 14 2019-11-14 14:20:19 2 2 2019-11-14 14:50:19 1 16 2019-11-14 14:50:19 2 1 2019-11-14 15:00:19 1 15 2019-11-14 15:00:19 2 1 2019-11-14 15:10:19 1 12 2019-11-14 15:10:19 2 1 2019-11-14 15:15:19 1 11 2019-11-14 15:15:19 2 1 2019-11-14 15:25:19 1 10 2019-11-14 15:25:19 2 1 2019-11-14 15:40:19 1 11 2019-11-14 15:45:19 1 12 2019-11-14 16:00:19 1 11 2019-11-14 16:05:19 1 8 2019-11-14 16:05:19 2 1 2019-11-14 16:35:19 1 9 2019-11-14 16:35:19 2 1 2019-11-14 16:40:19 1 8 2019-11-14 16:40:19 2 1 2019-11-14 17:10:19 1 11 2019-11-14 17:10:19 2 1 2019-11-14 17:30:19 1 9 2019-11-14 17:40:19 1 12 2019-11-14 17:45:19 1 11 2019-11-14 17:55:19 1 10 2019-11-14 18:05:19 1 15 2019-11-14 18:45:19 1 14 2019-11-14 18:55:19 1 14 2019-11-14 19:05:19 1 9 2019-11-14 19:10:19 1 7 2019-11-14 19:35:19 1 15 2019-11-14 19:45:19 1 15 2019-11-14 19:50:19 1 18 2019-11-14 20:10:19 1 19 2019-11-14 20:15:19 1 18 2019-11-14 20:20:19 1 17 2019-11-14 20:30:19 1 19 2019-11-14 20:40:19 1 16 2019-11-14 20:45:19 1 16 2019-11-14 21:10:19 1 17 2019-11-14 21:20:19 1 18 2019-11-14 21:25:19 1 17 2019-11-14 21:35:19 1 18 2019-11-14 21:40:19 1 15 2019-11-14 21:50:19 1 16 2019-11-14 21:55:19 1 18 2019-11-14 22:05:19 1 19 2019-11-14 22:15:19 1 20 2019-11-14 22:25:19 1 17 2019-11-14 22:40:19 1 17 2019-11-14 23:05:19 1 16 2019-11-14 23:30:19 1 16 2019-11-14 23:35:19 1 16 2019-11-15 00:00:19 1 14 2019-11-15 00:00:19 2 1 2019-11-15 00:05:19 1 15 2019-11-15 00:05:19 2 1 2019-11-15 00:25:19 1 14 2019-11-15 00:25:19 2 1 2019-11-15 00:30:19 1 16 2019-11-15 00:30:19 2 1 2019-11-15 00:45:19 1 17 2019-11-15 00:45:19 2 1 2019-11-15 00:50:19 1 15 2019-11-15 00:50:19 2 1 2019-11-15 01:00:19 1 14 2019-11-15 01:00:19 2 1 2019-11-15 01:05:19 1 13 2019-11-15 01:05:19 2 1 2019-11-15 01:10:19 1 13 2019-11-15 01:10:19 2 1 2019-11-15 01:15:19 1 12 2019-11-15 01:15:19 2 1 2019-11-15 01:30:19 1 12 2019-11-15 01:30:19 2 1 2019-11-15 01:50:19 1 10 2019-11-15 01:55:19 1 9 2019-11-15 02:30:19 1 8 2019-11-15 02:35:19 1 8 2019-11-15 02:55:19 1 8 2019-11-15 03:00:19 1 8 2019-11-15 03:10:19 1 8 2019-11-15 03:20:19 1 8 2019-11-15 03:30:19 1 9 2019-11-15 03:45:19 1 9 2019-11-15 04:05:19 1 8 2019-11-15 04:10:19 1 9 2019-11-15 04:15:19 1 8 2019-11-15 04:25:19 1 7 2019-11-15 04:35:19 1 8 2019-11-15 05:10:19 1 7 2019-11-15 05:20:19 1 7 2019-11-15 05:25:19 1 7 2019-11-15 05:30:19 1 7 2019-11-15 05:40:19 1 8 2019-11-15 06:00:19 1 7 2019-11-15 06:10:19 1 9 2019-11-15 06:15:19 1 9 2019-11-15 06:40:19 1 7 2019-11-15 06:45:19 1 7 2019-11-15 06:55:19 1 9 2019-11-15 07:00:19 1 8 2019-11-15 07:10:19 1 8 2019-11-15 07:35:19 1 9 2019-11-15 07:55:19 1 9 2019-11-15 08:10:19 1 9 2019-11-15 08:20:19 1 12 2019-11-15 08:25:19 1 14 2019-11-15 08:30:19 1 14 2019-11-15 08:35:19 1 12 2019-11-15 08:50:19 1 14 2019-11-15 08:55:19 1 12 2019-11-15 10:00:19 1 15 2019-11-15 10:05:19 1 13 2019-11-15 10:10:19 1 16 2019-11-15 10:10:19 2 1 2019-11-15 10:15:19 1 12 2019-11-15 10:40:19 1 14 2019-11-13 22:19:57 1 22 2019-11-13 22:34:57 1 19 2019-11-13 22:39:57 1 18 2019-11-13 22:54:57 1 17 2019-11-13 23:24:57 1 16 2019-11-13 23:29:57 1 17 2019-11-13 23:44:57 1 16 2019-11-13 23:54:57 1 14 2019-11-14 00:09:57 1 13 2019-11-14 00:14:57 1 11 2019-11-14 00:34:57 1 10 2019-11-14 00:44:57 1 9 2019-11-14 01:29:57 1 9 2019-11-14 01:34:57 1 8 2019-11-14 02:04:57 1 7 2019-11-14 02:14:57 1 7 2019-11-14 02:24:57 1 7 2019-11-14 02:39:57 1 8 2019-11-14 02:59:57 1 8 2019-11-14 03:34:57 1 5 2019-11-14 03:39:57 1 5 2019-11-14 04:24:57 1 6 2019-11-14 04:34:57 1 5 2019-11-14 05:09:57 1 6 2019-11-14 05:34:57 1 5 2019-11-14 05:39:57 1 6 2019-11-14 05:44:57 1 7 2019-11-14 05:49:57 1 5 2019-11-14 06:14:57 1 4 2019-11-14 06:39:57 1 6 2019-11-14 06:44:57 1 4 2019-11-14 06:54:57 1 6 2019-11-14 07:14:57 1 8 2019-11-14 07:19:57 1 7 2019-11-14 08:04:57 1 8 2019-11-14 08:29:57 1 7 2019-11-14 08:44:57 1 5 2019-11-14 08:49:57 1 10 2019-11-14 08:54:57 1 7 2019-11-14 09:09:57 1 5 2019-11-14 09:19:57 1 7 2019-11-14 09:24:57 1 8 2019-11-14 09:39:57 1 9 2019-11-14 09:54:57 1 10 2019-11-14 09:59:57 1 9 2019-11-14 10:09:57 1 13 2019-11-14 10:39:57 1 11 2019-11-14 10:44:57 1 12 2019-11-14 10:49:57 1 13 2019-11-14 10:59:57 1 15 2019-11-14 11:04:57 1 14 2019-11-14 11:09:57 1 14 2019-11-14 11:39:57 1 12 2019-11-14 11:44:57 1 12 2019-11-14 12:04:57 1 13 2019-11-14 12:15:19 1 8 2019-11-14 12:25:19 1 6 2019-11-14 12:30:19 1 11 2019-11-14 13:05:19 1 13 2019-11-14 13:05:19 2 3 2019-11-14 13:15:19 1 9 2019-11-14 13:15:19 2 3 2019-11-14 13:20:19 1 13 2019-11-14 13:20:19 2 2 2019-11-14 13:25:19 1 12 2019-11-14 13:25:19 2 2 2019-11-14 13:40:19 1 12 2019-11-14 13:40:19 2 2 2019-11-14 13:50:19 1 12 2019-11-14 13:50:19 2 2 2019-11-14 13:55:19 1 11 2019-11-14 13:55:19 2 2 2019-11-14 14:00:19 1 12 2019-11-14 14:00:19 2 3 2019-11-14 14:10:19 1 8 2019-11-14 14:10:19 2 2 2019-11-14 14:15:19 1 10 2019-11-14 14:15:19 2 3 2019-11-14 14:30:19 1 15 2019-11-14 14:55:19 1 16 2019-11-14 14:55:19 2 1 2019-11-14 15:05:19 1 10 2019-11-14 15:20:19 1 10 2019-11-14 15:20:19 2 1 2019-11-14 16:10:19 1 9 2019-11-14 16:10:19 2 1 2019-11-14 16:20:19 1 10 2019-11-14 16:20:19 2 1 2019-11-14 16:25:19 1 10 2019-11-14 16:25:19 2 1 2019-11-14 16:50:19 1 6 2019-11-14 16:50:19 2 2 2019-11-14 16:55:19 1 9 2019-11-14 16:55:19 2 1 2019-11-14 17:50:19 1 12 2019-11-14 18:00:19 1 12 2019-11-14 18:10:19 1 13 2019-11-14 18:25:19 1 13 2019-11-14 18:50:19 1 13 2019-11-14 19:00:19 1 15 2019-11-14 19:20:19 1 8 2019-11-14 19:25:19 1 10 2019-11-14 19:30:19 1 12 2019-11-14 19:40:19 1 16 2019-11-14 20:25:19 1 17 2019-11-14 21:05:19 1 15 2019-11-14 21:15:19 1 17 2019-11-14 22:00:19 1 17 2019-11-14 22:10:19 1 20 2019-11-14 22:20:19 1 17 2019-11-14 22:35:19 1 14 2019-11-14 22:45:19 1 14 2019-11-14 22:50:19 1 14 2019-11-14 23:00:19 1 17 2019-11-14 23:15:19 1 16 2019-11-14 23:20:19 1 15 2019-11-14 23:25:19 1 17 2019-11-14 23:40:19 1 14 2019-11-14 23:50:19 1 18 2019-11-14 23:50:19 2 1 2019-11-15 00:40:19 1 15 2019-11-15 00:40:19 2 1 2019-11-15 01:20:19 1 12 2019-11-15 01:20:19 2 1 2019-11-15 02:00:19 1 9 2019-11-15 02:05:19 1 10 2019-11-15 02:10:19 1 10 2019-11-15 02:15:19 1 10 2019-11-15 02:20:19 1 9 2019-11-15 02:50:19 1 8 2019-11-15 03:05:19 1 8 2019-11-15 03:25:19 1 8 2019-11-15 03:35:19 1 9 2019-11-15 03:55:19 1 9 2019-11-15 04:00:19 1 11 2019-11-15 04:20:19 1 8 2019-11-15 04:50:19 1 7 2019-11-15 04:55:19 1 7 2019-11-15 05:15:19 1 7 2019-11-15 05:50:19 1 8 2019-11-15 05:55:19 1 8 2019-11-15 06:25:19 1 8 2019-11-15 07:25:19 1 9 2019-11-15 07:50:19 1 8 2019-11-15 08:45:19 1 14 2019-11-15 09:00:19 1 12 2019-11-15 09:15:19 1 15 2019-11-15 09:25:19 1 12 2019-11-15 09:30:19 1 12 2019-11-15 09:35:19 1 12 2019-11-15 09:50:19 1 13 2019-11-15 10:40:19 2 3 2019-11-15 10:45:19 1 15 2019-11-15 10:45:19 2 3 2019-11-15 10:55:19 1 15 2019-11-15 10:55:19 2 2 2019-11-15 11:00:19 1 14 2019-11-15 11:00:19 2 2 2019-11-15 11:05:19 1 15 2019-11-15 11:05:19 2 2 2019-11-15 11:10:19 1 14 2019-11-15 11:10:19 2 2 2019-11-15 11:20:19 1 15 2019-11-15 11:20:19 2 2 2019-11-15 11:30:19 1 18 2019-11-15 11:30:19 2 2 2019-11-15 11:35:19 1 15 2019-11-15 11:35:19 2 2 2019-11-15 11:40:19 1 17 2019-11-15 11:40:19 2 2 2019-11-15 11:50:19 1 14 2019-11-15 11:50:19 2 2 2019-11-15 11:55:19 1 19 2019-11-15 11:55:19 2 2 2019-11-15 12:05:19 1 14 2019-11-15 12:05:19 2 2 2019-11-15 12:10:19 1 14 2019-11-15 12:10:19 2 2 2019-11-15 12:15:19 1 15 2019-11-15 12:15:19 2 2 2019-11-15 12:20:19 1 17 2019-11-15 12:20:19 2 2 2019-11-15 12:25:19 1 14 2019-11-15 12:25:19 2 2 2019-11-15 12:30:19 1 16 2019-11-13 22:59:57 1 19 2019-11-13 23:04:57 1 20 2019-11-13 23:09:57 1 21 2019-11-13 23:14:57 1 18 2019-11-13 23:19:57 1 17 2019-11-13 23:59:57 1 12 2019-11-14 00:04:57 1 11 2019-11-14 00:19:57 1 9 2019-11-14 00:24:57 1 10 2019-11-14 00:29:57 1 9 2019-11-14 00:39:57 1 10 2019-11-14 00:49:57 1 11 2019-11-14 00:54:57 1 10 2019-11-14 00:59:57 1 11 2019-11-14 01:14:57 1 10 2019-11-14 01:19:57 1 10 2019-11-14 01:24:57 1 10 2019-11-14 01:39:57 1 8 2019-11-14 01:54:57 1 8 2019-11-14 02:34:57 1 8 2019-11-14 02:54:57 1 9 2019-11-14 03:04:57 1 9 2019-11-14 03:14:57 1 8 2019-11-14 03:19:57 1 8 2019-11-14 03:54:57 1 5 2019-11-14 03:59:57 1 5 2019-11-14 04:59:57 1 6 2019-11-14 05:14:57 1 5 2019-11-14 05:19:57 1 5 2019-11-14 05:29:57 1 5 2019-11-14 06:04:57 1 4 2019-11-14 06:19:57 1 6 2019-11-14 06:24:57 1 4 2019-11-14 06:34:57 1 4 2019-11-14 06:49:57 1 4 2019-11-14 06:59:57 1 5 2019-11-14 07:09:57 1 7 2019-11-14 07:24:57 1 8 2019-11-14 07:34:57 1 7 2019-11-14 07:49:57 1 8 2019-11-14 07:54:57 1 8 2019-11-14 08:09:57 1 9 2019-11-14 08:14:57 1 6 2019-11-14 08:39:57 1 9 2019-11-14 09:34:57 1 5 2019-11-14 10:14:57 1 10 2019-11-14 10:19:57 1 12 2019-11-14 10:24:57 1 10 2019-11-14 10:29:57 1 13 2019-11-14 10:34:57 1 12 2019-11-14 11:14:57 1 15 2019-11-14 11:19:57 1 16 2019-11-14 11:34:57 1 8 2019-11-14 11:49:57 1 12 2019-11-14 12:20:19 1 7 2019-11-14 12:35:19 1 10 2019-11-14 12:50:19 1 9 2019-11-14 12:50:19 2 2 2019-11-14 13:00:19 1 10 2019-11-14 13:00:19 2 3 2019-11-14 13:10:19 1 12 2019-11-14 13:10:19 2 3 2019-11-14 13:30:19 1 13 2019-11-14 13:30:19 2 2 2019-11-14 13:35:19 1 14 2019-11-14 13:35:19 2 2 2019-11-14 13:45:19 1 14 2019-11-14 13:45:19 2 2 2019-11-14 14:25:19 1 14 2019-11-14 14:25:19 2 1 2019-11-14 14:35:19 1 17 2019-11-14 14:40:19 1 14 2019-11-14 14:45:19 1 15 2019-11-14 14:45:19 2 1 2019-11-14 15:30:19 1 10 2019-11-14 15:30:19 2 1 2019-11-14 15:35:19 1 11 2019-11-14 15:50:19 1 12 2019-11-14 15:55:19 1 10 2019-11-14 16:15:19 1 9 2019-11-14 16:15:19 2 1 2019-11-14 16:30:19 1 8 2019-11-14 16:30:19 2 1 2019-11-14 16:45:19 1 7 2019-11-14 16:45:19 2 2 2019-11-14 17:00:19 1 11 2019-11-14 17:00:19 2 1 2019-11-14 17:05:19 1 11 2019-11-14 17:05:19 2 1 2019-11-14 17:15:19 1 10 2019-11-14 17:20:19 1 13 2019-11-14 17:25:19 1 12 2019-11-14 17:35:20 1 10 2019-11-14 18:15:19 1 12 2019-11-14 18:20:19 1 14 2019-11-14 18:30:19 1 14 2019-11-14 18:35:19 1 15 2019-11-14 18:40:19 1 14 2019-11-14 19:15:19 1 8 2019-11-14 19:55:19 1 15 2019-11-14 20:00:19 1 18 2019-11-14 20:05:19 1 18 2019-11-14 20:35:19 1 16 2019-11-14 20:50:19 1 14 2019-11-14 20:55:19 1 14 2019-11-14 21:00:19 1 16 2019-11-14 21:30:19 1 18 2019-11-14 21:45:19 1 15 2019-11-14 22:30:19 1 17 2019-11-14 22:55:19 1 17 2019-11-14 23:10:19 1 17 2019-11-14 23:45:19 1 18 2019-11-14 23:55:19 1 18 2019-11-14 23:55:19 2 1 2019-11-15 00:10:19 1 15 2019-11-15 00:10:19 2 1 2019-11-15 00:15:19 1 14 2019-11-15 00:15:19 2 1 2019-11-15 00:20:19 1 16 2019-11-15 00:20:19 2 1 2019-11-15 00:35:19 1 15 2019-11-15 00:35:19 2 1 2019-11-15 00:55:19 1 14 2019-11-15 00:55:19 2 1 2019-11-15 01:25:19 1 12 2019-11-15 01:25:19 2 1 2019-11-15 01:35:19 1 10 2019-11-15 01:35:19 2 1 2019-11-15 01:40:19 1 10 2019-11-15 01:40:19 2 1 2019-11-15 01:45:19 1 11 2019-11-15 02:25:19 1 10 2019-11-15 02:40:19 1 8 2019-11-15 02:45:19 1 8 2019-11-15 03:15:19 1 8 2019-11-15 03:40:19 1 9 2019-11-15 03:50:19 1 9 2019-11-15 04:30:19 1 8 2019-11-15 04:40:19 1 7 2019-11-15 04:45:19 1 7 2019-11-15 05:00:19 1 8 2019-11-15 05:05:19 1 7 2019-11-15 05:35:19 1 7 2019-11-15 05:45:19 1 9 2019-11-15 06:05:19 1 9 2019-11-15 06:20:19 1 9 2019-11-15 06:30:19 1 10 2019-11-15 06:35:19 1 8 2019-11-15 06:50:19 1 10 2019-11-15 07:05:19 1 8 2019-11-15 07:15:19 1 8 2019-11-15 07:20:19 1 8 2019-11-15 07:30:19 1 8 2019-11-15 07:40:19 1 9 2019-11-15 07:45:19 1 10 2019-11-15 08:00:19 1 8 2019-11-15 08:05:19 1 8 2019-11-15 08:15:19 1 11 2019-11-15 08:40:19 1 15 2019-11-15 09:05:19 1 14 2019-11-15 09:10:19 1 13 2019-11-15 09:20:19 1 14 2019-11-15 09:40:19 1 15 2019-11-15 09:45:19 1 13 2019-11-15 09:55:19 1 11 2019-11-15 10:20:19 1 14 2019-11-15 10:20:19 2 2 2019-11-15 10:25:19 1 17 2019-11-15 10:25:19 2 2 2019-11-15 10:30:19 1 17 2019-11-15 10:30:19 2 2 2019-11-15 10:35:19 1 16 2019-11-15 10:35:19 2 3 2019-11-15 10:50:19 1 14 2019-11-15 10:50:19 2 2 2019-11-15 11:15:19 1 16 2019-11-15 11:15:19 2 2 2019-11-15 11:25:19 1 16 2019-11-15 11:25:19 2 2 2019-11-15 11:45:19 1 13 2019-11-15 11:45:19 2 2 2019-11-15 12:00:19 1 16 2019-11-15 12:00:19 2 2 2019-11-15 12:30:19 2 3 2019-11-15 12:35:19 1 13 2019-11-15 12:35:19 2 2 2019-11-15 12:45:19 1 14 2019-11-15 12:45:19 2 2 2019-11-15 12:50:19 1 14 2019-11-15 12:50:19 2 2 2019-11-15 13:00:19 1 15 2019-11-15 13:00:19 2 2 2019-11-15 13:05:19 1 16 2019-11-15 13:05:19 2 2 2019-11-15 13:10:19 1 20 2019-11-15 13:10:19 2 2 2019-11-15 13:20:19 1 19 2019-11-15 13:20:19 2 1 2019-11-15 13:35:19 1 18 2019-11-15 13:35:19 2 1 2019-11-15 13:45:19 1 13 2019-11-15 13:45:19 2 1 2019-11-15 14:25:19 1 16 2019-11-15 14:25:19 2 1 2019-11-15 14:30:19 1 14 2019-11-15 14:30:19 2 1 2019-11-15 14:35:19 1 18 2019-11-15 14:35:19 2 1 2019-11-15 14:50:19 1 16 2019-11-15 14:50:19 2 2 2019-11-15 15:05:19 1 15 2019-11-15 15:05:19 2 2 2019-11-15 15:15:19 1 14 2019-11-15 15:15:19 2 2 2019-11-15 15:30:19 1 12 2019-11-15 15:30:19 2 2 2019-11-15 15:35:19 1 11 2019-11-15 15:35:19 2 3 2019-11-15 15:40:19 1 13 2019-11-15 15:40:19 2 3 2019-11-15 15:45:19 1 14 2019-11-15 15:45:19 2 2 2019-11-15 15:55:19 1 14 2019-11-15 15:55:19 2 1 2019-11-15 16:05:19 1 12 2019-11-15 16:05:19 2 1 2019-11-15 16:15:19 1 13 2019-11-15 16:20:19 1 12 2019-11-15 16:50:19 1 10 2019-11-15 17:05:19 1 13 2019-11-15 17:15:19 1 17 2019-11-15 17:15:19 2 1 2019-11-15 17:25:19 1 12 2019-11-15 17:35:19 1 19 2019-11-15 17:45:19 1 18 2019-11-15 17:45:19 2 1 2019-11-15 18:00:19 1 18 2019-11-15 18:00:19 2 1 2019-11-15 18:40:19 1 14 2019-11-15 19:00:19 1 16 2019-11-15 19:05:19 1 14 2019-11-15 19:40:19 1 17 2019-11-15 19:50:19 1 14 2019-11-15 19:55:19 1 17 2019-11-15 20:05:19 1 17 2019-11-15 20:20:19 1 14 2019-11-15 20:30:19 1 15 2019-11-15 20:35:19 1 14 2019-11-15 20:45:19 1 15 2019-11-15 20:50:19 1 15 2019-11-15 21:00:19 1 16 2019-11-15 21:05:19 1 13 2019-11-15 21:05:19 2 1 2019-11-15 21:20:19 1 14 2019-11-15 21:20:19 2 1 2019-11-15 22:45:19 1 18 2019-11-15 22:45:19 2 1 2019-11-15 23:05:19 1 17 2019-11-15 23:05:19 2 2 2019-11-15 23:20:19 1 16 2019-11-15 23:20:19 2 2 2019-11-15 23:35:19 1 15 2019-11-15 23:35:19 2 1 2019-11-15 23:40:19 1 16 2019-11-15 23:40:19 2 1 2019-11-15 23:50:19 1 11 2019-11-15 23:50:19 2 1 2019-11-16 00:00:19 1 12 2019-11-16 00:00:19 2 1 2019-11-16 00:20:19 1 10 2019-11-16 00:30:19 1 7 2019-11-16 00:35:19 1 7 2019-11-16 00:45:19 1 6 2019-11-16 03:00:19 1 3 2019-11-16 03:05:19 1 3 2019-11-16 03:10:19 1 3 2019-11-16 03:15:19 1 2 2019-11-16 03:30:19 1 3 2019-11-16 04:05:19 1 3 2019-11-16 05:40:19 1 2 2019-11-16 06:45:19 1 1 2019-11-16 08:05:19 1 2 2019-11-16 08:10:19 1 2 2019-11-16 08:15:19 1 2 2019-11-16 09:20:19 1 3 2019-11-16 09:25:19 1 3 2019-11-16 09:30:19 1 3 2019-11-16 09:30:19 2 1 2019-11-16 09:50:19 1 2 2019-11-16 09:50:19 2 1 2019-11-16 10:05:19 1 3 2019-11-16 10:10:19 1 3 2019-11-16 10:15:19 1 3 2019-11-16 10:20:19 1 3 2019-11-16 11:05:19 1 4 2019-11-16 11:20:19 1 1 2019-11-16 11:30:19 1 4 2019-11-16 11:40:19 1 4 2019-11-16 12:05:19 1 3 2019-11-16 12:10:19 1 3 2019-11-16 12:20:19 1 2 2019-11-16 12:25:19 1 2 2019-11-16 12:30:19 1 2 2019-11-16 12:50:19 1 2 2019-11-16 13:00:19 1 2 2019-11-16 13:05:19 1 3 2019-11-16 13:20:19 1 3 2019-11-16 13:20:19 2 1 2019-11-16 13:25:19 1 3 2019-11-16 13:25:19 2 1 2019-11-16 13:50:19 1 4 2019-11-16 13:50:19 2 1 2019-11-16 14:10:19 1 2 2019-11-16 14:10:19 2 1 2019-11-16 14:20:19 1 2 2019-11-16 14:20:19 2 1 2019-11-16 15:15:19 1 3 2019-11-16 15:15:19 2 1 2019-11-16 15:20:19 1 2 2019-11-16 15:20:19 2 1 2019-11-16 15:40:19 1 3 2019-11-16 15:40:19 2 1 2019-11-16 16:00:19 1 4 2019-11-16 16:00:19 2 1 2019-11-16 16:35:19 1 1 2019-11-16 16:35:19 2 1 2019-11-21 17:50:19 1 1 2019-11-21 18:20:19 1 1 2019-11-21 21:25:19 1 1 2019-11-22 15:15:19 1 1 2019-11-22 15:20:19 1 1 2019-11-23 09:40:19 1 1 2019-11-23 09:45:19 1 1 2019-11-23 11:40:19 1 1 2019-11-23 15:20:19 1 1 2019-11-23 15:25:19 1 1 2019-11-23 15:30:19 1 1 2019-11-23 15:40:19 1 2 2019-11-23 15:55:19 1 3 2019-11-23 16:10:19 1 2 2019-11-23 16:15:19 1 2 2019-11-23 16:20:19 1 2 2019-11-23 16:30:19 1 2 2019-11-23 16:30:19 2 2 2019-11-23 17:00:19 1 2 2019-11-23 17:05:19 1 2 2019-11-23 17:10:19 1 2 2019-11-23 17:15:19 1 2 2019-11-23 17:20:19 1 2 2019-11-23 17:25:19 1 3 2019-11-23 17:45:19 1 2 2019-11-23 17:50:19 1 2 2019-11-23 17:55:19 1 2 2019-11-23 18:00:19 1 2 2019-11-23 18:10:19 1 2 2019-11-23 18:20:19 1 1 2019-11-23 18:25:19 1 1 2019-11-23 18:30:19 1 1 2019-11-23 19:15:19 2 1 2019-11-23 19:20:19 2 2 2019-11-23 19:25:19 2 2 2019-11-23 19:30:19 1 2 2019-11-23 19:30:19 2 2 2019-11-23 19:35:19 1 1 2019-11-23 19:35:19 2 2 2019-11-23 19:40:19 1 1 2019-11-23 19:40:19 2 2 2019-11-23 19:45:19 1 1 2019-11-23 19:45:19 2 2 2019-11-23 19:50:19 1 1 2019-11-15 12:40:19 1 17 2019-11-15 12:40:19 2 2 2019-11-15 13:30:19 1 17 2019-11-15 13:30:19 2 1 2019-11-15 13:40:19 1 14 2019-11-15 13:40:19 2 1 2019-11-15 13:50:19 1 14 2019-11-15 13:50:19 2 1 2019-11-15 13:55:19 1 17 2019-11-15 13:55:19 2 1 2019-11-15 14:00:19 1 15 2019-11-15 14:00:19 2 1 2019-11-15 14:05:19 1 15 2019-11-15 14:05:19 2 1 2019-11-15 14:10:19 1 18 2019-11-15 14:10:19 2 1 2019-11-15 14:45:19 1 16 2019-11-15 14:45:19 2 1 2019-11-15 14:55:19 1 17 2019-11-15 14:55:19 2 2 2019-11-15 15:00:19 1 16 2019-11-15 15:00:19 2 2 2019-11-15 15:20:19 1 15 2019-11-15 15:20:19 2 2 2019-11-15 15:25:19 1 15 2019-11-15 15:25:19 2 2 2019-11-15 15:50:19 1 13 2019-11-15 15:50:19 2 2 2019-11-15 16:10:19 1 12 2019-11-15 16:10:19 2 1 2019-11-15 16:45:19 1 10 2019-11-15 17:00:19 1 11 2019-11-15 17:20:19 1 14 2019-11-15 17:20:19 2 1 2019-11-15 17:40:19 1 17 2019-11-15 18:20:19 1 14 2019-11-15 18:30:19 1 16 2019-11-15 18:45:19 1 14 2019-11-15 18:55:19 1 13 2019-11-15 19:10:19 1 17 2019-11-15 19:15:19 1 17 2019-11-15 19:20:19 1 15 2019-11-15 19:25:19 1 15 2019-11-15 19:35:19 1 18 2019-11-15 20:00:19 1 17 2019-11-15 20:15:19 1 15 2019-11-15 20:55:19 1 17 2019-11-15 21:25:19 1 16 2019-11-15 21:25:19 2 1 2019-11-15 21:30:19 1 17 2019-11-15 21:30:19 2 1 2019-11-15 21:35:19 1 16 2019-11-15 21:35:19 2 1 2019-11-15 21:50:19 1 15 2019-11-15 21:55:19 1 15 2019-11-15 22:05:19 1 19 2019-11-15 22:05:19 2 1 2019-11-15 22:15:19 1 14 2019-11-15 22:15:19 2 1 2019-11-15 22:25:19 1 15 2019-11-15 22:25:19 2 1 2019-11-15 22:30:19 1 17 2019-11-15 22:30:19 2 1 2019-11-15 23:00:19 1 18 2019-11-15 23:00:19 2 2 2019-11-15 23:10:19 1 17 2019-11-15 23:10:19 2 2 2019-11-15 23:15:19 1 16 2019-11-15 23:15:19 2 2 2019-11-15 23:25:19 1 16 2019-11-15 23:25:19 2 2 2019-11-15 23:45:19 1 13 2019-11-15 23:45:19 2 1 2019-11-15 23:55:19 1 12 2019-11-15 23:55:19 2 1 2019-11-16 00:15:19 1 11 2019-11-16 00:25:19 1 7 2019-11-16 00:40:19 1 7 2019-11-16 00:50:19 1 6 2019-11-16 00:55:20 1 6 2019-11-16 01:05:19 1 3 2019-11-16 01:10:19 1 4 2019-11-16 01:15:19 1 3 2019-11-16 01:25:19 1 3 2019-11-16 01:40:19 1 2 2019-11-16 01:50:19 1 1 2019-11-16 01:55:19 1 1 2019-11-16 02:00:19 1 1 2019-11-16 02:05:19 1 1 2019-11-16 02:10:19 1 1 2019-11-16 02:15:19 1 1 2019-11-16 02:20:19 1 1 2019-11-16 02:25:19 1 2 2019-11-16 02:30:19 1 2 2019-11-16 02:35:19 1 2 2019-11-16 02:50:19 1 3 2019-11-16 02:55:19 1 3 2019-11-16 03:20:19 1 3 2019-11-16 03:25:19 1 3 2019-11-16 03:55:19 1 3 2019-11-16 04:00:19 1 3 2019-11-16 04:10:19 1 1 2019-11-16 04:15:19 1 1 2019-11-16 04:20:19 1 1 2019-11-16 04:25:19 1 1 2019-11-16 04:30:19 1 1 2019-11-16 04:35:19 1 1 2019-11-16 04:40:19 1 1 2019-11-16 04:45:19 1 1 2019-11-16 04:50:19 1 1 2019-11-16 04:55:19 1 1 2019-11-16 05:00:19 1 1 2019-11-16 05:05:19 1 1 2019-11-16 05:10:19 1 1 2019-11-16 05:15:19 1 1 2019-11-16 05:20:19 1 1 2019-11-16 05:25:19 1 1 2019-11-16 05:30:19 1 1 2019-11-16 05:35:19 1 1 2019-11-16 06:20:19 1 2 2019-11-16 06:30:19 1 1 2019-11-16 06:35:19 1 1 2019-11-16 06:40:19 1 1 2019-11-16 06:55:19 1 3 2019-11-16 07:00:19 1 3 2019-11-16 07:30:19 1 2 2019-11-16 07:35:19 1 1 2019-11-16 08:55:19 1 2 2019-11-16 09:00:19 1 2 2019-11-16 09:35:20 1 4 2019-11-16 09:35:20 2 1 2019-11-16 09:40:19 1 3 2019-11-16 09:40:19 2 1 2019-11-16 09:45:19 1 3 2019-11-16 09:45:19 2 1 2019-11-16 09:55:19 1 2 2019-11-16 09:55:19 2 1 2019-11-16 10:00:19 1 3 2019-11-16 10:00:19 2 1 2019-11-16 10:25:19 1 3 2019-11-16 10:30:19 1 2 2019-11-16 10:35:19 1 3 2019-11-16 10:40:19 1 4 2019-11-16 10:50:19 1 2 2019-11-16 10:50:19 2 1 2019-11-16 11:15:19 1 2 2019-11-16 11:25:19 1 4 2019-11-16 11:55:19 1 3 2019-11-16 12:00:19 1 4 2019-11-16 13:10:19 1 2 2019-11-16 13:15:19 1 3 2019-11-16 13:40:19 1 2 2019-11-16 13:40:19 2 1 2019-11-16 13:55:19 1 3 2019-11-16 13:55:19 2 1 2019-11-16 14:00:19 1 3 2019-11-16 14:00:19 2 1 2019-11-16 14:05:19 1 3 2019-11-16 14:05:19 2 1 2019-11-16 14:30:19 1 2 2019-11-16 14:30:19 2 1 2019-11-16 14:45:19 1 3 2019-11-16 14:45:19 2 1 2019-11-16 14:50:19 1 2 2019-11-16 14:50:19 2 1 2019-11-16 14:55:19 1 2 2019-11-16 14:55:19 2 1 2019-11-16 15:25:19 1 2 2019-11-16 15:25:19 2 1 2019-11-16 15:30:19 1 2 2019-11-16 15:30:19 2 1 2019-11-16 15:35:19 1 2 2019-11-16 15:35:19 2 1 2019-11-16 15:55:19 1 3 2019-11-16 16:05:19 1 4 2019-11-16 16:05:19 2 1 2019-11-16 16:15:19 1 2 2019-11-16 16:15:19 2 1 2019-11-16 16:20:19 1 2 2019-11-16 16:20:19 2 1 2019-11-16 16:30:19 1 2 2019-11-16 16:30:19 2 1 2019-11-21 17:55:19 1 1 2019-11-21 18:00:19 1 1 2019-11-21 18:05:19 1 1 2019-11-15 12:55:19 1 16 2019-11-15 12:55:19 2 2 2019-11-15 13:15:19 1 20 2019-11-15 13:15:19 2 2 2019-11-15 13:25:19 1 15 2019-11-15 13:25:19 2 1 2019-11-15 14:15:19 1 17 2019-11-15 14:15:19 2 1 2019-11-15 14:20:19 1 16 2019-11-15 14:20:19 2 2 2019-11-15 14:40:19 1 17 2019-11-15 14:40:19 2 1 2019-11-15 15:10:19 1 15 2019-11-15 15:10:19 2 2 2019-11-15 16:00:19 1 13 2019-11-15 16:00:19 2 1 2019-11-15 16:25:19 1 15 2019-11-15 16:30:19 1 13 2019-11-15 16:35:19 1 13 2019-11-15 16:40:19 1 12 2019-11-15 16:55:19 1 11 2019-11-15 17:10:19 1 18 2019-11-15 17:30:19 1 13 2019-11-15 17:50:19 1 18 2019-11-15 17:50:19 2 1 2019-11-15 17:55:19 1 16 2019-11-15 17:55:19 2 1 2019-11-15 18:05:19 1 16 2019-11-15 18:05:19 2 1 2019-11-15 18:10:19 1 15 2019-11-15 18:10:19 2 1 2019-11-15 18:15:19 1 14 2019-11-15 18:25:19 1 17 2019-11-15 18:35:19 1 14 2019-11-15 18:50:19 1 12 2019-11-15 19:30:19 1 17 2019-11-15 19:45:19 1 16 2019-11-15 20:10:19 1 15 2019-11-15 20:25:19 1 15 2019-11-15 20:40:19 1 15 2019-11-15 21:10:19 1 14 2019-11-15 21:10:19 2 1 2019-11-15 21:15:19 1 16 2019-11-15 21:15:19 2 1 2019-11-15 21:40:19 1 18 2019-11-15 21:40:19 2 1 2019-11-15 21:45:19 1 19 2019-11-15 22:00:19 1 16 2019-11-15 22:10:19 1 15 2019-11-15 22:10:19 2 1 2019-11-15 22:20:19 1 15 2019-11-15 22:20:19 2 1 2019-11-15 22:35:19 1 17 2019-11-15 22:35:19 2 1 2019-11-15 22:40:19 1 18 2019-11-15 22:40:19 2 1 2019-11-15 22:50:19 1 14 2019-11-15 22:50:19 2 1 2019-11-15 22:55:19 1 18 2019-11-15 22:55:19 2 2 2019-11-15 23:30:19 1 16 2019-11-15 23:30:19 2 1 2019-11-16 00:05:19 1 12 2019-11-16 00:10:19 1 10 2019-11-16 01:00:19 1 6 2019-11-16 01:20:19 1 3 2019-11-16 01:30:19 1 3 2019-11-16 01:35:19 1 2 2019-11-16 01:45:19 1 3 2019-11-16 02:40:19 1 3 2019-11-16 02:45:19 1 3 2019-11-16 03:35:19 1 3 2019-11-16 03:40:19 1 3 2019-11-16 03:45:19 1 3 2019-11-16 03:50:19 1 3 2019-11-16 05:45:19 1 1 2019-11-16 05:50:19 1 1 2019-11-16 05:55:19 1 1 2019-11-16 06:00:19 1 1 2019-11-16 06:05:19 1 1 2019-11-16 06:10:19 1 1 2019-11-16 06:15:19 1 1 2019-11-16 06:25:19 1 2 2019-11-16 06:50:19 1 2 2019-11-16 07:05:19 1 1 2019-11-16 07:10:19 1 1 2019-11-16 07:15:19 1 1 2019-11-16 07:20:19 1 1 2019-11-16 07:25:19 1 1 2019-11-16 07:40:19 1 1 2019-11-16 07:45:19 1 2 2019-11-16 07:50:19 1 2 2019-11-16 07:55:19 1 2 2019-11-16 08:00:19 1 2 2019-11-16 08:20:19 1 1 2019-11-16 08:25:19 1 1 2019-11-16 08:30:19 1 1 2019-11-16 08:35:19 1 1 2019-11-16 08:40:19 1 1 2019-11-16 08:45:19 1 1 2019-11-16 08:50:19 1 1 2019-11-16 09:05:19 1 2 2019-11-16 09:10:20 1 2 2019-11-16 09:15:19 1 3 2019-11-16 10:45:19 1 3 2019-11-16 10:55:19 1 2 2019-11-16 11:00:19 1 2 2019-11-16 11:10:19 1 3 2019-11-16 11:35:19 1 4 2019-11-16 11:45:19 1 4 2019-11-16 11:50:19 1 3 2019-11-16 12:15:19 1 2 2019-11-16 12:35:19 1 2 2019-11-16 12:40:19 1 2 2019-11-16 12:45:19 1 2 2019-11-16 12:55:19 1 2 2019-11-16 13:30:19 1 5 2019-11-16 13:30:19 2 1 2019-11-16 13:35:19 1 3 2019-11-16 13:35:19 2 1 2019-11-16 13:45:19 1 2 2019-11-16 13:45:19 2 1 2019-11-16 14:15:19 1 2 2019-11-16 14:15:19 2 1 2019-11-16 14:25:19 1 2 2019-11-16 14:25:19 2 1 2019-11-16 14:35:19 1 3 2019-11-16 14:35:19 2 1 2019-11-16 14:40:19 1 3 2019-11-16 14:40:19 2 1 2019-11-16 15:00:19 1 3 2019-11-16 15:00:19 2 1 2019-11-16 15:05:19 1 3 2019-11-16 15:05:19 2 1 2019-11-16 15:10:19 1 3 2019-11-16 15:10:19 2 1 2019-11-16 15:45:19 1 4 2019-11-16 15:50:19 1 3 2019-11-16 16:10:19 1 4 2019-11-16 16:10:19 2 1 2019-11-16 16:25:19 1 2 2019-11-16 16:25:19 2 1 2019-11-16 16:40:19 2 1 2019-11-16 16:45:19 2 1 2019-11-16 16:50:19 2 1 2019-11-16 16:55:19 2 1 2019-11-16 17:00:19 2 1 2019-11-16 17:05:19 2 1 2019-11-16 17:10:19 2 1 2019-11-16 17:15:19 2 1 2019-11-16 17:20:19 2 1 2019-11-16 17:25:19 2 1 2019-11-16 17:30:19 2 1 2019-11-21 18:10:19 1 1 2019-11-23 09:50:20 1 1 2019-11-23 09:50:20 2 1 2019-11-23 15:35:19 1 2 2019-11-23 15:45:20 1 3 2019-11-23 15:50:19 1 3 2019-11-23 16:00:19 1 2 2019-11-23 16:05:19 1 2 2019-11-23 16:25:19 1 2 2019-11-23 16:35:19 1 2 2019-11-23 16:35:19 2 1 2019-11-23 16:40:19 1 2 2019-11-23 16:40:19 2 1 2019-11-23 16:45:19 1 2 2019-11-23 16:45:19 2 1 2019-11-23 16:50:19 1 2 2019-11-23 16:50:19 2 1 2019-11-23 16:55:19 1 2 2019-11-23 16:55:19 2 1 2019-11-23 17:30:19 1 2 2019-11-23 17:30:19 2 1 2019-11-23 17:35:19 1 2 2019-11-23 17:35:19 2 1 2019-11-23 17:40:19 1 2 2019-11-23 17:40:19 2 1 2019-11-23 18:05:19 1 2 2019-11-23 18:15:19 1 2 2019-11-23 18:50:19 2 1 2019-11-23 18:55:19 2 1 2019-11-23 19:00:19 2 1 2019-11-23 19:05:19 2 1 2019-11-23 19:10:19 2 1 2019-11-23 19:50:19 2 2 2019-11-23 19:55:19 1 2 2019-11-23 19:55:19 2 2 2019-11-23 20:00:19 1 2 2019-11-23 20:00:19 2 2 2019-11-23 20:15:19 1 3 2019-11-23 20:15:19 2 1 2019-11-23 20:25:19 1 3 2019-11-23 20:25:19 2 2 2019-11-23 20:45:19 1 3 2019-11-23 20:45:19 2 1 2019-11-23 20:50:19 1 4 2019-11-23 20:50:19 2 1 2019-11-23 21:30:19 1 2 2019-11-23 21:35:19 1 1 2019-11-23 21:45:19 1 1 2019-11-23 21:45:19 2 1 2019-11-23 22:00:19 1 1 2019-11-23 22:15:19 1 2 2019-11-23 22:25:19 1 1 2019-11-23 22:50:19 1 1 2019-11-23 22:50:19 2 1 2019-11-23 22:55:19 1 1 2019-11-23 22:55:19 2 2 2019-11-23 23:25:19 1 1 2019-11-23 23:25:19 2 2 2019-11-23 23:30:19 1 1 2019-11-23 23:30:19 2 2 2019-11-23 23:35:19 1 1 2019-11-23 23:35:19 2 2 2019-11-23 23:40:19 1 1 2019-11-23 23:40:19 2 2 2019-11-23 23:45:19 2 2 2019-11-24 00:10:19 2 2 2019-11-24 00:15:19 2 2 2019-11-24 00:25:19 1 1 2019-11-24 00:25:19 2 2 2019-11-24 00:55:19 1 1 2019-11-24 01:00:19 1 1 2019-11-24 01:05:19 1 1 2019-11-24 07:20:19 1 1 2019-11-24 07:20:19 2 1 2019-11-24 07:25:19 1 1 2019-11-24 07:25:19 2 1 2019-11-24 07:30:19 1 1 2019-11-24 07:30:19 2 1 2019-11-24 08:30:20 1 1 2019-11-24 08:35:19 1 1 2019-11-24 09:10:19 1 1 2019-11-24 09:15:19 1 1 2019-11-24 09:20:19 1 2 2019-11-24 09:30:19 1 1 2019-11-24 09:35:19 1 2 2019-11-24 09:35:19 2 1 2019-11-24 09:50:19 1 2 2019-11-24 11:15:19 1 1 2019-11-24 11:20:19 1 1 2019-11-24 11:25:19 1 1 2019-11-24 11:30:19 1 1 2019-11-24 12:05:19 1 1 2019-11-24 12:25:19 1 1 2019-11-24 12:45:19 1 3 2019-11-24 13:10:19 1 3 2019-11-24 13:15:19 1 3 2019-11-24 13:20:19 1 3 2019-11-24 13:35:19 1 3 2019-11-24 13:35:19 2 1 2019-11-24 13:45:19 1 3 2019-11-24 13:45:19 2 1 2019-11-24 13:50:19 1 3 2019-11-24 13:50:19 2 1 2019-11-24 13:55:19 1 4 2019-11-24 13:55:19 2 1 2019-11-24 14:15:19 1 4 2019-11-24 14:15:19 2 2 2019-11-24 14:30:19 1 3 2019-11-24 14:30:19 2 3 2019-11-24 14:35:19 1 3 2019-11-24 14:35:19 2 4 2019-11-24 14:45:19 1 3 2019-11-24 14:45:19 2 3 2019-11-24 15:05:19 1 2 2019-11-24 15:05:19 2 1 2019-11-24 15:20:19 1 2 2019-11-24 15:20:19 2 2 2019-11-24 15:25:19 1 1 2019-11-24 15:25:19 2 2 2019-11-24 16:10:19 1 1 2019-11-24 16:10:19 2 1 2019-11-24 16:15:19 1 1 2019-11-24 16:15:19 2 1 2019-11-24 16:30:19 1 1 2019-11-24 16:30:19 2 1 2019-11-24 16:55:19 1 2 2019-11-24 16:55:19 2 1 2019-11-24 17:00:19 1 1 2019-11-24 17:00:19 2 1 2019-11-24 17:05:19 1 1 2019-11-24 17:05:19 2 1 2019-11-24 17:10:19 1 1 2019-11-24 17:10:19 2 1 2019-11-24 17:15:19 1 1 2019-11-24 17:15:19 2 1 2019-11-24 18:05:19 2 1 2019-11-24 18:10:19 2 1 2019-11-24 18:15:19 2 1 2019-11-24 18:30:19 2 2 2019-11-24 18:35:19 2 2 2019-11-24 20:00:19 2 2 2019-11-24 20:35:19 1 1 2019-11-24 20:35:19 2 2 2019-11-24 20:50:19 1 2 2019-11-24 20:50:19 2 2 2019-11-24 21:05:19 1 2 2019-11-24 21:05:19 2 1 2019-11-24 21:15:19 1 2 2019-11-24 21:15:19 2 1 2019-11-24 21:35:19 1 1 2019-11-24 21:35:19 2 1 2019-11-24 21:55:19 1 2 2019-11-24 21:55:19 2 2 2019-11-24 22:45:19 1 2 2019-11-24 22:45:19 2 1 2019-11-24 22:50:19 1 2 2019-11-24 22:50:19 2 1 2019-11-24 23:00:19 1 1 2019-11-24 23:00:19 2 1 2019-11-24 23:10:19 1 3 2019-11-24 23:10:19 2 1 2019-11-24 23:15:19 1 2 2019-11-24 23:15:19 2 1 2019-11-24 23:20:19 1 2 2019-11-24 23:35:19 1 1 2019-11-25 00:40:19 1 1 2019-11-25 00:50:19 1 1 2019-11-25 01:05:19 1 2 2019-11-25 01:10:19 1 2 2019-11-25 01:45:19 1 1 2019-11-25 01:50:19 1 1 2019-11-25 02:30:19 1 1 2019-11-25 02:40:19 1 1 2019-11-25 03:15:19 1 1 2019-11-25 03:20:19 1 1 2019-11-25 03:25:19 1 1 2019-11-25 03:45:19 1 1 2019-11-25 03:55:19 1 2 2019-11-25 04:05:19 1 2 2019-11-25 04:35:19 1 2 2019-11-25 04:40:19 1 2 2019-11-25 05:05:19 1 2 2019-11-25 05:10:19 1 2 2019-11-25 05:15:19 1 1 2019-11-25 05:20:19 1 1 2019-11-25 05:25:19 1 1 2019-11-25 06:00:19 1 2 2019-11-25 06:10:19 1 2 2019-11-25 06:15:19 1 1 2019-11-25 06:20:19 1 1 2019-11-25 06:25:19 1 2 2019-11-25 06:40:19 1 3 2019-11-25 07:20:19 1 2 2019-11-25 07:35:19 1 2 2019-11-25 07:55:19 1 2 2019-11-25 07:55:19 2 1 2019-11-25 08:00:19 1 2 2019-11-25 08:00:19 2 1 2019-11-25 08:35:19 1 2 2019-11-25 08:35:19 2 1 2019-11-25 08:45:19 1 2 2019-11-25 08:45:19 2 1 2019-11-25 08:50:19 1 2 2019-11-25 08:50:19 2 2 2019-11-25 08:55:19 1 1 2019-11-25 08:55:19 2 2 2019-11-25 09:00:19 1 3 2019-11-25 09:00:19 2 1 2019-11-25 09:10:20 2 1 2019-11-25 09:15:19 1 2 2019-11-25 09:15:19 2 1 2019-11-25 09:20:19 1 2 2019-11-25 09:20:19 2 1 2019-11-25 09:25:19 1 3 2019-11-25 09:25:19 2 2 2019-11-25 09:30:19 1 2 2019-11-25 09:30:19 2 2 2019-11-23 20:05:19 1 2 2019-11-23 20:05:19 2 2 2019-11-23 20:10:19 1 2 2019-11-23 20:10:19 2 1 2019-11-23 20:30:19 1 4 2019-11-23 20:30:19 2 2 2019-11-23 21:00:19 1 3 2019-11-23 21:00:19 2 2 2019-11-23 21:10:19 1 3 2019-11-23 21:10:19 2 1 2019-11-23 21:20:19 1 2 2019-11-23 21:20:19 2 1 2019-11-23 21:25:19 1 1 2019-11-23 21:25:19 2 1 2019-11-23 21:50:19 1 1 2019-11-23 21:50:19 2 1 2019-11-23 21:55:19 1 1 2019-11-23 21:55:19 2 1 2019-11-23 22:05:19 1 1 2019-11-23 22:10:19 1 1 2019-11-23 22:35:19 1 2 2019-11-23 22:45:19 1 2 2019-11-23 22:45:19 2 1 2019-11-23 23:05:19 1 1 2019-11-23 23:05:19 2 1 2019-11-23 23:10:19 1 1 2019-11-23 23:10:19 2 1 2019-11-23 23:15:19 1 1 2019-11-23 23:15:19 2 1 2019-11-23 23:20:19 1 1 2019-11-23 23:20:19 2 1 2019-11-23 23:50:20 2 2 2019-11-23 23:55:19 2 2 2019-11-24 00:00:19 2 2 2019-11-24 00:05:19 2 1 2019-11-24 00:30:19 1 1 2019-11-24 00:35:19 1 1 2019-11-24 00:50:19 1 1 2019-11-24 01:10:19 1 1 2019-11-24 01:15:19 1 1 2019-11-24 01:20:19 1 1 2019-11-24 07:35:19 2 1 2019-11-24 09:00:19 1 1 2019-11-24 09:05:19 1 1 2019-11-24 09:25:19 1 1 2019-11-24 09:40:19 1 2 2019-11-24 10:00:19 1 1 2019-11-24 10:00:19 2 1 2019-11-24 10:15:19 1 2 2019-11-24 10:15:19 2 1 2019-11-24 10:20:19 1 1 2019-11-24 10:20:19 2 1 2019-11-24 10:25:19 1 1 2019-11-24 10:25:19 2 1 2019-11-24 10:55:19 1 1 2019-11-24 11:00:19 1 1 2019-11-24 11:05:19 1 1 2019-11-24 11:10:19 1 1 2019-11-24 11:35:19 1 1 2019-11-24 11:40:19 1 1 2019-11-24 11:55:19 1 1 2019-11-24 12:00:19 1 1 2019-11-24 12:10:19 1 2 2019-11-24 12:30:19 1 2 2019-11-24 12:35:19 1 3 2019-11-24 12:40:19 1 3 2019-11-24 12:50:19 1 4 2019-11-24 12:55:19 1 4 2019-11-24 12:55:19 2 1 2019-11-24 13:00:19 1 4 2019-11-24 13:00:19 2 1 2019-11-24 14:00:19 1 6 2019-11-24 14:00:19 2 1 2019-11-24 14:10:19 1 6 2019-11-24 14:10:19 2 2 2019-11-24 14:25:19 1 4 2019-11-24 14:25:19 2 2 2019-11-24 14:50:19 1 3 2019-11-24 14:50:19 2 3 2019-11-24 14:55:19 1 3 2019-11-24 14:55:19 2 3 2019-11-24 15:00:19 1 3 2019-11-24 15:00:19 2 3 2019-11-24 15:30:19 1 1 2019-11-24 15:30:19 2 2 2019-11-24 15:55:19 1 1 2019-11-24 15:55:19 2 1 2019-11-24 16:00:19 1 1 2019-11-24 16:00:19 2 1 2019-11-24 16:05:19 1 1 2019-11-24 16:05:19 2 1 2019-11-24 16:25:19 1 1 2019-11-24 16:25:19 2 1 2019-11-24 17:25:19 1 1 2019-11-24 17:25:19 2 1 2019-11-24 17:35:19 1 2 2019-11-24 17:35:19 2 1 2019-11-24 17:40:19 1 2 2019-11-24 17:40:19 2 1 2019-11-24 17:45:19 1 2 2019-11-24 17:45:19 2 1 2019-11-24 18:20:19 1 1 2019-11-24 18:20:19 2 1 2019-11-24 18:40:19 1 1 2019-11-24 18:40:19 2 2 2019-11-24 19:00:19 1 2 2019-11-24 19:00:19 2 1 2019-11-24 19:05:19 1 1 2019-11-24 19:05:19 2 1 2019-11-24 19:10:19 1 1 2019-11-24 19:10:19 2 1 2019-11-24 19:15:19 1 1 2019-11-24 19:15:19 2 1 2019-11-24 19:25:19 2 1 2019-11-24 19:30:19 2 1 2019-11-24 20:15:19 1 1 2019-11-24 20:15:19 2 2 2019-11-24 20:20:19 1 1 2019-11-24 20:20:19 2 2 2019-11-24 20:25:19 1 1 2019-11-24 20:25:19 2 2 2019-11-24 20:40:19 1 1 2019-11-24 20:40:19 2 3 2019-11-24 20:45:19 1 1 2019-11-24 20:45:19 2 3 2019-11-24 21:00:19 1 2 2019-11-24 21:00:19 2 1 2019-11-24 21:10:19 1 2 2019-11-24 21:10:19 2 1 2019-11-24 21:20:19 1 2 2019-11-24 21:20:19 2 1 2019-11-24 21:25:19 1 2 2019-11-24 21:25:19 2 1 2019-11-24 21:45:19 1 2 2019-11-24 21:45:19 2 2 2019-11-24 22:00:20 1 1 2019-11-24 22:00:20 2 2 2019-11-24 22:05:19 1 1 2019-11-24 22:05:19 2 2 2019-11-24 22:10:19 1 2 2019-11-24 22:10:19 2 2 2019-11-24 22:15:20 1 2 2019-11-24 22:15:20 2 2 2019-11-24 22:20:19 1 3 2019-11-24 22:20:19 2 2 2019-11-24 23:05:19 1 3 2019-11-24 23:05:19 2 1 2019-11-24 23:30:19 1 1 2019-11-25 00:30:19 1 2 2019-11-25 00:55:19 1 1 2019-11-25 01:00:19 1 1 2019-11-25 01:15:19 1 2 2019-11-25 01:20:19 1 2 2019-11-25 01:25:19 1 1 2019-11-25 01:30:19 1 1 2019-11-25 01:55:19 1 1 2019-11-25 02:25:19 1 1 2019-11-25 02:45:19 1 1 2019-11-25 03:50:19 1 2 2019-11-25 04:10:19 1 2 2019-11-25 04:25:20 1 1 2019-11-25 04:30:19 1 2 2019-11-25 04:55:19 1 2 2019-11-25 05:00:19 1 2 2019-11-25 05:40:19 1 2 2019-11-25 05:50:19 1 2 2019-11-25 05:55:19 1 2 2019-11-25 06:05:20 1 1 2019-11-25 06:35:19 1 4 2019-11-25 06:45:19 1 4 2019-11-25 06:50:19 1 4 2019-11-25 06:55:19 1 3 2019-11-25 07:10:19 1 2 2019-11-25 07:15:19 1 1 2019-11-25 07:40:19 1 4 2019-11-25 07:40:19 2 1 2019-11-25 07:50:19 1 2 2019-11-25 07:50:19 2 1 2019-11-25 08:25:19 1 3 2019-11-25 08:25:19 2 1 2019-11-25 08:40:19 1 2 2019-11-25 08:40:19 2 1 2019-11-25 09:05:19 1 4 2019-11-25 09:05:19 2 1 2019-11-25 09:10:20 1 4 2019-11-23 20:20:19 1 3 2019-11-23 20:20:19 2 2 2019-11-23 20:35:19 1 3 2019-11-23 20:35:19 2 1 2019-11-23 20:40:19 1 3 2019-11-23 20:40:19 2 1 2019-11-23 20:55:19 1 3 2019-11-23 20:55:19 2 2 2019-11-23 21:05:19 1 2 2019-11-23 21:05:19 2 2 2019-11-23 21:15:19 1 3 2019-11-23 21:15:19 2 1 2019-11-23 22:20:19 1 3 2019-11-23 22:30:19 1 2 2019-11-23 22:40:19 1 2 2019-11-23 23:00:19 1 1 2019-11-23 23:00:19 2 1 2019-11-24 00:20:19 1 1 2019-11-24 00:20:19 2 2 2019-11-24 00:40:19 1 1 2019-11-24 00:45:19 1 1 2019-11-24 01:25:19 1 1 2019-11-24 08:45:19 1 1 2019-11-24 08:50:19 1 1 2019-11-24 09:45:19 1 2 2019-11-24 09:55:19 1 2 2019-11-24 09:55:19 2 1 2019-11-24 10:05:19 1 2 2019-11-24 10:05:19 2 1 2019-11-24 10:10:19 1 2 2019-11-24 10:10:19 2 1 2019-11-24 10:30:19 1 1 2019-11-24 10:35:19 1 1 2019-11-24 10:40:19 1 1 2019-11-24 10:45:19 1 1 2019-11-24 10:50:19 1 1 2019-11-24 11:45:19 1 1 2019-11-24 11:50:19 1 1 2019-11-24 12:15:19 1 2 2019-11-24 12:20:19 1 2 2019-11-24 13:05:19 1 3 2019-11-24 13:05:19 2 1 2019-11-24 13:25:19 1 2 2019-11-24 13:25:19 2 1 2019-11-24 13:30:19 1 2 2019-11-24 13:30:19 2 1 2019-11-24 13:40:20 1 2 2019-11-24 13:40:20 2 1 2019-11-24 14:05:19 1 6 2019-11-24 14:05:19 2 2 2019-11-24 14:20:19 1 5 2019-11-24 14:20:19 2 2 2019-11-24 14:40:19 1 2 2019-11-24 14:40:19 2 3 2019-11-24 15:10:19 1 2 2019-11-24 15:10:19 2 2 2019-11-24 15:15:19 1 2 2019-11-24 15:15:19 2 2 2019-11-24 15:35:19 1 1 2019-11-24 15:35:19 2 1 2019-11-24 15:40:19 1 2 2019-11-24 15:40:19 2 1 2019-11-24 15:45:19 1 2 2019-11-24 15:45:19 2 1 2019-11-24 15:50:19 1 1 2019-11-24 15:50:19 2 1 2019-11-24 16:20:19 1 1 2019-11-24 16:20:19 2 1 2019-11-24 16:35:19 1 1 2019-11-24 16:35:19 2 1 2019-11-24 16:40:19 1 1 2019-11-24 16:40:19 2 1 2019-11-24 16:45:19 1 1 2019-11-24 16:45:19 2 1 2019-11-24 16:50:19 1 1 2019-11-24 16:50:19 2 1 2019-11-24 17:20:19 1 1 2019-11-24 17:20:19 2 1 2019-11-24 17:30:19 1 2 2019-11-24 17:30:19 2 1 2019-11-24 17:50:19 1 1 2019-11-24 17:50:19 2 1 2019-11-24 17:55:19 1 1 2019-11-24 17:55:19 2 1 2019-11-24 18:00:19 1 1 2019-11-24 18:00:19 2 1 2019-11-24 18:25:19 2 1 2019-11-24 18:45:19 2 2 2019-11-24 18:50:19 2 1 2019-11-24 18:55:19 2 1 2019-11-24 19:20:19 1 2 2019-11-24 19:20:19 2 1 2019-11-24 19:35:19 1 1 2019-11-24 19:35:19 2 1 2019-11-24 19:40:19 2 1 2019-11-24 19:45:19 2 1 2019-11-24 19:50:19 2 1 2019-11-24 19:55:19 2 2 2019-11-24 20:05:19 2 2 2019-11-24 20:10:19 1 1 2019-11-24 20:10:19 2 2 2019-11-24 20:30:19 1 2 2019-11-24 20:30:19 2 2 2019-11-24 20:55:19 1 2 2019-11-24 20:55:19 2 3 2019-11-24 21:30:19 1 2 2019-11-24 21:30:19 2 1 2019-11-24 21:40:19 1 1 2019-11-24 21:40:19 2 1 2019-11-24 21:50:19 1 3 2019-11-24 21:50:19 2 2 2019-11-24 22:25:20 1 4 2019-11-24 22:25:20 2 2 2019-11-24 22:30:19 1 3 2019-11-24 22:30:19 2 1 2019-11-24 22:35:19 1 4 2019-11-24 22:35:19 2 1 2019-11-24 22:40:19 1 2 2019-11-24 22:40:19 2 1 2019-11-24 22:55:19 1 3 2019-11-24 22:55:19 2 1 2019-11-24 23:25:19 1 2 2019-11-25 01:35:19 1 1 2019-11-25 01:40:19 1 1 2019-11-25 02:00:19 1 2 2019-11-25 02:05:19 1 2 2019-11-25 02:10:19 1 2 2019-11-25 02:15:19 1 1 2019-11-25 02:20:19 1 2 2019-11-25 03:30:19 1 1 2019-11-25 04:00:19 1 2 2019-11-25 04:15:19 1 1 2019-11-25 04:20:19 1 2 2019-11-25 04:45:19 1 2 2019-11-25 04:50:19 1 2 2019-11-25 05:30:19 1 2 2019-11-25 05:35:19 1 1 2019-11-25 05:45:19 1 1 2019-11-25 06:30:19 1 2 2019-11-25 07:00:19 1 3 2019-11-25 07:05:19 1 2 2019-11-25 07:25:19 1 2 2019-11-25 07:30:19 1 3 2019-11-25 07:45:19 1 3 2019-11-25 07:45:19 2 1 2019-11-25 08:05:19 1 2 2019-11-25 08:05:19 2 1 2019-11-25 08:10:19 1 2 2019-11-25 08:10:19 2 1 2019-11-25 08:15:19 1 3 2019-11-25 08:15:19 2 1 2019-11-25 08:20:19 1 3 2019-11-25 08:20:19 2 1 2019-11-25 08:30:19 1 3 2019-11-25 08:30:19 2 1 2019-11-25 09:35:19 1 3 2019-11-25 09:35:19 2 2 2019-11-25 09:40:19 1 3 2019-11-25 09:40:19 2 2 2019-11-25 09:45:19 1 2 2019-11-25 09:45:19 2 2 2019-11-25 09:50:19 1 2 2019-11-25 09:50:19 2 2 2019-11-25 09:55:19 1 1 2019-11-25 09:55:19 2 1 2019-11-25 10:00:19 1 1 2019-11-25 10:00:19 2 2 2019-11-25 10:05:19 1 1 2019-11-25 10:05:19 2 2 2019-11-25 10:10:19 1 2 2019-11-25 10:10:19 2 1 2019-11-25 10:15:19 1 1 2019-11-25 10:15:19 2 1 2019-11-25 10:20:19 1 1 2019-11-25 10:20:19 2 1 2019-11-25 10:25:19 1 1 2019-11-25 10:25:19 2 1 2019-11-25 10:30:19 1 2 2019-11-25 10:30:19 2 1 2019-11-25 10:35:19 1 2 2019-11-25 10:40:19 1 2 2019-11-25 10:40:19 2 1 2019-11-25 10:45:19 1 1 2019-11-25 10:45:19 2 1 2019-11-25 10:50:19 1 1 2019-11-25 10:50:19 2 1 2019-11-25 11:15:19 1 1 2019-11-25 11:15:19 2 1 2019-11-25 11:20:19 1 1 2019-11-25 11:20:19 2 1 2019-11-25 12:05:19 1 1 2019-11-25 12:05:19 2 2 2019-11-25 12:20:19 1 1 2019-11-25 12:20:19 2 1 2019-11-25 12:25:19 1 1 2019-11-25 12:25:19 2 1 2019-11-25 12:30:19 2 1 2019-11-25 13:05:19 1 1 2019-11-25 13:05:19 2 1 2019-11-25 13:30:19 2 2 2019-11-25 14:05:19 1 2 2019-11-25 14:05:19 2 3 2019-11-25 14:10:19 1 2 2019-11-25 14:10:19 2 3 2019-11-25 14:15:19 1 2 2019-11-25 14:15:19 2 2 2019-11-25 14:35:19 1 2 2019-11-25 14:35:19 2 1 2019-11-25 14:40:19 1 2 2019-11-25 14:40:19 2 1 2019-11-25 14:55:19 1 1 2019-11-25 14:55:19 2 1 2019-11-25 15:05:19 1 1 2019-11-25 15:30:19 1 1 2019-11-25 15:50:19 1 2 2019-11-25 16:40:19 1 1 2019-11-25 17:00:19 2 1 2019-11-25 17:05:19 1 1 2019-11-25 17:05:19 2 1 2019-11-25 17:10:19 1 1 2019-11-25 17:10:19 2 1 2019-11-25 17:15:19 1 2 2019-11-25 17:15:19 2 1 2019-11-25 17:20:19 1 3 2019-11-25 17:20:19 2 1 2019-11-25 17:35:19 1 3 2019-11-25 17:35:19 2 1 2019-11-25 18:10:19 1 4 2019-11-25 18:10:19 2 2 2019-11-25 18:15:19 1 2 2019-11-25 18:15:19 2 2 2019-11-25 18:25:19 1 2 2019-11-25 18:25:19 2 2 2019-11-25 18:35:19 1 2 2019-11-25 18:35:19 2 1 2019-11-25 19:00:19 1 4 2019-11-25 19:05:19 1 3 2019-11-25 19:10:19 1 4 2019-11-25 19:50:19 1 4 2019-11-25 19:50:19 2 1 2019-11-25 20:05:19 1 4 2019-11-25 20:35:19 1 2 2019-11-25 21:35:19 1 2 2019-11-25 22:20:19 1 1 2019-11-25 22:20:19 2 1 2019-11-25 22:25:19 1 1 2019-11-25 22:25:19 2 1 2019-11-25 22:30:19 1 1 2019-11-25 22:30:19 2 1 2019-11-25 22:50:19 1 2 2019-11-25 22:55:19 1 2 2019-11-25 23:00:19 1 2 2019-11-25 23:30:19 1 2 2019-11-25 23:30:19 2 1 2019-11-25 23:45:19 1 3 2019-11-25 23:55:19 1 3 2019-11-26 00:05:19 1 3 2019-11-26 00:10:19 1 3 2019-11-26 00:15:19 1 3 2019-11-26 01:20:19 1 2 2019-11-26 01:25:19 1 2 2019-11-26 01:30:19 1 2 2019-11-26 01:35:19 1 2 2019-11-26 01:40:19 1 2 2019-11-26 01:45:19 1 2 2019-11-26 01:50:19 1 2 2019-11-26 01:55:19 1 2 2019-11-26 02:00:19 1 2 2019-11-26 02:05:19 1 2 2019-11-26 02:10:19 1 2 2019-11-26 02:15:19 1 2 2019-11-26 02:20:19 1 2 2019-11-26 02:25:19 1 2 2019-11-26 02:30:19 1 2 2019-11-26 02:35:19 1 2 2019-11-26 02:40:19 1 2 2019-11-26 02:45:19 1 2 2019-11-26 02:50:19 1 2 2019-11-26 02:55:19 1 2 2019-11-26 04:05:19 1 2 2019-11-26 04:10:19 1 2 2019-11-26 06:10:19 1 2 2019-11-26 06:15:19 1 2 2019-11-26 06:30:19 1 1 2019-11-26 06:35:19 1 1 2019-11-26 06:40:19 1 1 2019-11-26 06:45:19 1 1 2019-11-26 06:50:19 1 1 2019-11-26 07:20:19 1 1 2019-11-26 07:25:19 1 1 2019-11-26 08:20:19 1 3 2019-11-26 08:35:19 1 2 2019-11-26 09:00:19 1 3 2019-11-26 09:15:19 1 4 2019-11-26 09:30:19 1 2 2019-11-26 10:00:19 1 1 2019-11-26 10:20:19 1 3 2019-11-26 10:25:19 1 4 2019-11-26 10:30:19 1 4 2019-11-26 10:35:19 1 4 2019-11-26 10:45:19 1 5 2019-11-26 11:50:19 1 2 2019-11-26 11:50:19 2 1 2019-11-26 12:00:19 1 2 2019-11-26 12:00:19 2 1 2019-11-26 12:10:19 1 2 2019-11-26 12:10:19 2 1 2019-11-26 12:25:19 1 3 2019-11-26 12:25:19 2 1 2019-11-26 12:30:19 1 4 2019-11-26 12:55:19 1 4 2019-11-26 13:00:19 1 3 2019-11-26 13:05:19 1 3 2019-11-26 13:50:19 1 2 2019-11-26 14:05:19 1 1 2019-11-26 14:20:19 1 2 2019-11-26 14:30:19 1 2 2019-11-26 14:35:19 1 2 2019-11-26 14:40:19 1 1 2019-11-26 14:50:19 1 2 2019-11-26 15:05:19 1 2 2019-11-26 15:10:19 2 1 2019-11-26 15:25:19 1 2 2019-11-26 15:25:19 2 1 2019-11-26 15:30:20 2 2 2019-11-26 15:35:19 2 2 2019-11-26 16:00:19 2 2 2019-11-26 16:30:19 1 3 2019-11-26 16:40:19 1 2 2019-11-26 16:45:19 1 2 2019-11-26 16:50:19 1 2 2019-11-26 17:00:19 1 3 2019-11-26 17:00:19 2 1 2019-11-26 17:20:19 1 3 2019-11-26 17:30:19 1 4 2019-11-26 17:45:19 1 3 2019-11-26 17:55:19 1 3 2019-11-26 18:00:19 1 4 2019-11-26 18:05:19 1 1 2019-11-26 18:10:19 1 1 2019-11-26 18:20:19 2 1 2019-11-26 18:25:19 1 1 2019-11-26 18:25:19 2 1 2019-11-26 18:30:19 1 2 2019-11-26 18:30:19 2 1 2019-11-26 18:35:19 1 1 2019-11-26 18:35:19 2 1 2019-11-26 18:40:19 1 1 2019-11-26 18:50:19 1 1 2019-11-26 18:55:19 1 2 2019-11-26 18:55:19 2 1 2019-11-26 19:00:19 1 2 2019-11-26 19:00:19 2 2 2019-11-26 19:05:19 1 2 2019-11-26 19:05:19 2 2 2019-11-26 19:10:19 1 1 2019-11-26 19:10:19 2 1 2019-11-26 19:20:19 1 1 2019-11-26 19:20:19 2 1 2019-11-26 19:35:19 1 2 2019-11-26 19:35:19 2 1 2019-11-26 19:40:19 1 3 2019-11-26 19:40:19 2 1 2019-11-26 19:50:19 1 3 2019-11-26 19:50:19 2 1 2019-11-26 19:55:19 1 3 2019-11-26 19:55:19 2 1 2019-11-26 20:10:19 1 2 2019-11-26 20:15:19 1 3 2019-11-26 20:20:19 1 2 2019-11-25 10:55:19 1 2 2019-11-25 10:55:19 2 1 2019-11-25 11:00:19 1 1 2019-11-25 11:00:19 2 1 2019-11-25 11:05:19 1 1 2019-11-25 11:05:19 2 1 2019-11-25 11:35:19 1 1 2019-11-25 11:35:19 2 1 2019-11-25 11:40:19 1 1 2019-11-25 11:40:19 2 1 2019-11-25 11:50:19 1 1 2019-11-25 11:50:19 2 2 2019-11-25 11:55:19 1 1 2019-11-25 11:55:19 2 2 2019-11-25 12:00:19 1 3 2019-11-25 12:00:19 2 2 2019-11-25 12:10:19 1 1 2019-11-25 12:10:19 2 2 2019-11-25 12:15:19 1 1 2019-11-25 12:15:19 2 1 2019-11-25 12:40:19 1 2 2019-11-25 12:40:19 2 1 2019-11-25 12:45:19 1 2 2019-11-25 12:45:19 2 1 2019-11-25 12:50:19 1 1 2019-11-25 12:50:19 2 1 2019-11-25 13:00:19 1 1 2019-11-25 13:00:19 2 1 2019-11-25 13:10:19 1 1 2019-11-25 13:10:19 2 2 2019-11-25 13:15:19 1 1 2019-11-25 13:15:19 2 2 2019-11-25 13:45:19 1 2 2019-11-25 13:45:19 2 2 2019-11-25 13:55:19 1 1 2019-11-25 13:55:19 2 2 2019-11-25 14:30:19 1 3 2019-11-25 14:30:19 2 1 2019-11-25 14:45:19 1 1 2019-11-25 14:45:19 2 1 2019-11-25 15:00:19 1 1 2019-11-25 15:10:19 1 1 2019-11-25 15:10:19 2 1 2019-11-25 15:15:19 1 1 2019-11-25 15:15:19 2 1 2019-11-25 15:20:19 1 1 2019-11-25 15:20:19 2 1 2019-11-25 15:25:19 1 1 2019-11-25 15:35:19 1 1 2019-11-25 15:40:19 1 1 2019-11-25 15:55:19 1 3 2019-11-25 16:00:19 1 1 2019-11-25 16:00:19 2 1 2019-11-25 16:10:19 1 1 2019-11-25 17:25:19 1 3 2019-11-25 17:25:19 2 1 2019-11-25 17:40:19 1 3 2019-11-25 17:40:19 2 1 2019-11-25 17:55:19 1 2 2019-11-25 17:55:19 2 3 2019-11-25 18:20:19 1 2 2019-11-25 18:20:19 2 2 2019-11-25 18:30:19 1 3 2019-11-25 18:30:19 2 2 2019-11-25 18:50:19 1 4 2019-11-25 19:25:19 1 3 2019-11-25 19:25:19 2 1 2019-11-25 19:40:19 1 4 2019-11-25 19:40:19 2 1 2019-11-25 19:45:19 1 5 2019-11-25 19:45:19 2 1 2019-11-25 20:00:19 1 3 2019-11-25 20:15:19 1 3 2019-11-25 20:20:19 1 4 2019-11-25 20:25:19 1 4 2019-11-25 20:30:19 1 3 2019-11-25 21:10:19 1 2 2019-11-25 21:10:19 2 1 2019-11-25 21:15:19 1 2 2019-11-25 21:15:19 2 1 2019-11-25 21:45:19 1 2 2019-11-25 21:45:19 2 1 2019-11-25 21:50:19 1 1 2019-11-25 21:50:19 2 2 2019-11-25 21:55:19 1 1 2019-11-25 21:55:19 2 2 2019-11-25 22:00:19 1 1 2019-11-25 22:00:19 2 2 2019-11-25 22:05:19 1 1 2019-11-25 22:05:19 2 1 2019-11-25 22:40:19 1 2 2019-11-25 23:20:19 1 3 2019-11-25 23:25:19 1 2 2019-11-25 23:35:19 1 2 2019-11-25 23:35:19 2 1 2019-11-25 23:50:19 1 3 2019-11-26 00:00:19 1 3 2019-11-26 00:20:19 1 3 2019-11-26 00:45:19 1 1 2019-11-26 00:50:19 1 1 2019-11-26 00:55:19 1 1 2019-11-26 01:00:19 1 1 2019-11-26 01:05:19 1 1 2019-11-26 01:10:19 1 1 2019-11-26 01:15:19 1 1 2019-11-26 03:00:19 1 2 2019-11-26 03:05:20 1 2 2019-11-26 03:10:19 1 2 2019-11-26 03:15:19 1 2 2019-11-26 03:20:19 1 2 2019-11-26 03:25:19 1 2 2019-11-26 03:30:19 1 2 2019-11-26 03:35:19 1 2 2019-11-26 03:40:19 1 2 2019-11-26 03:45:19 1 2 2019-11-26 03:50:19 1 2 2019-11-26 03:55:19 1 2 2019-11-26 04:00:19 1 2 2019-11-26 04:15:19 1 2 2019-11-26 04:20:19 1 2 2019-11-26 04:25:19 1 2 2019-11-26 04:30:19 1 2 2019-11-26 04:35:19 1 2 2019-11-26 04:40:19 1 2 2019-11-26 06:20:20 1 1 2019-11-26 06:25:19 1 1 2019-11-26 06:55:19 1 2 2019-11-26 07:10:19 1 1 2019-11-26 07:15:19 1 1 2019-11-26 07:40:19 1 1 2019-11-26 07:45:19 1 2 2019-11-26 07:50:19 1 2 2019-11-26 07:55:19 1 3 2019-11-26 08:25:19 1 3 2019-11-26 08:40:19 1 3 2019-11-26 08:45:19 1 3 2019-11-26 08:55:19 1 2 2019-11-26 09:05:19 1 4 2019-11-26 09:20:19 1 5 2019-11-26 09:25:19 1 5 2019-11-26 09:50:19 1 1 2019-11-26 09:50:19 2 1 2019-11-26 09:55:19 1 2 2019-11-26 10:05:19 1 2 2019-11-26 10:55:19 1 3 2019-11-26 11:05:19 1 2 2019-11-26 11:15:19 1 3 2019-11-26 11:30:19 1 2 2019-11-26 11:35:19 1 3 2019-11-26 11:40:19 1 2 2019-11-26 11:40:19 2 1 2019-11-26 11:45:19 1 2 2019-11-26 11:45:19 2 1 2019-11-26 11:55:19 1 2 2019-11-26 11:55:19 2 1 2019-11-26 12:05:19 1 2 2019-11-26 12:05:19 2 1 2019-11-26 12:40:19 1 3 2019-11-26 12:45:19 1 3 2019-11-26 12:50:19 1 3 2019-11-26 13:15:19 1 2 2019-11-26 13:20:19 1 2 2019-11-26 13:25:19 1 2 2019-11-26 13:30:19 1 2 2019-11-26 13:35:19 1 2 2019-11-26 13:40:19 1 3 2019-11-26 13:45:19 1 3 2019-11-26 13:55:19 1 1 2019-11-26 14:00:19 1 1 2019-11-26 14:25:19 1 2 2019-11-26 14:55:19 1 2 2019-11-26 15:20:19 1 1 2019-11-26 15:20:19 2 1 2019-11-26 15:40:19 2 2 2019-11-26 15:45:19 2 2 2019-11-26 16:10:19 2 2 2019-11-26 16:20:19 1 2 2019-11-26 16:20:19 2 2 2019-11-26 16:25:19 1 3 2019-11-26 16:25:19 2 1 2019-11-26 17:10:19 1 3 2019-11-26 17:10:19 2 1 2019-11-26 17:15:19 1 3 2019-11-26 17:35:19 1 3 2019-11-26 17:50:19 1 3 2019-11-25 11:10:19 1 1 2019-11-25 11:10:19 2 1 2019-11-25 11:25:19 1 1 2019-11-25 11:25:19 2 1 2019-11-25 11:30:19 1 1 2019-11-25 11:30:19 2 1 2019-11-25 11:45:19 1 2 2019-11-25 11:45:19 2 1 2019-11-25 12:35:19 1 2 2019-11-25 12:35:19 2 1 2019-11-25 12:55:19 1 2 2019-11-25 12:55:19 2 1 2019-11-25 13:20:19 2 1 2019-11-25 13:25:19 1 2 2019-11-25 13:25:19 2 2 2019-11-25 13:35:19 1 2 2019-11-25 13:35:19 2 2 2019-11-25 13:40:19 2 2 2019-11-25 13:50:19 1 1 2019-11-25 13:50:19 2 2 2019-11-25 14:00:19 1 2 2019-11-25 14:00:19 2 2 2019-11-25 14:20:19 1 1 2019-11-25 14:20:19 2 1 2019-11-25 14:25:19 1 1 2019-11-25 14:25:19 2 1 2019-11-25 14:50:19 1 1 2019-11-25 14:50:19 2 1 2019-11-25 16:55:19 1 1 2019-11-25 16:55:19 2 1 2019-11-25 17:30:19 1 3 2019-11-25 17:30:19 2 1 2019-11-25 17:45:19 1 3 2019-11-25 17:45:19 2 1 2019-11-25 17:50:19 1 3 2019-11-25 17:50:19 2 3 2019-11-25 18:00:19 1 2 2019-11-25 18:00:19 2 2 2019-11-25 18:05:19 1 2 2019-11-25 18:05:19 2 2 2019-11-25 18:40:19 1 2 2019-11-25 18:45:19 1 4 2019-11-25 18:55:19 1 4 2019-11-25 19:15:19 1 3 2019-11-25 19:20:19 1 3 2019-11-25 19:20:19 2 1 2019-11-25 19:30:19 1 4 2019-11-25 19:30:19 2 1 2019-11-25 19:35:19 1 4 2019-11-25 19:35:19 2 1 2019-11-25 19:55:19 1 3 2019-11-25 19:55:19 2 1 2019-11-25 20:10:19 1 3 2019-11-25 20:40:19 1 2 2019-11-25 20:45:19 1 2 2019-11-25 20:50:19 1 1 2019-11-25 20:55:19 1 2 2019-11-25 21:00:19 1 2 2019-11-25 21:05:19 1 2 2019-11-25 21:20:19 1 3 2019-11-25 21:25:19 1 3 2019-11-25 21:30:19 1 3 2019-11-25 21:40:19 1 3 2019-11-25 21:40:19 2 1 2019-11-25 22:10:19 1 1 2019-11-25 22:10:19 2 1 2019-11-25 22:15:19 1 1 2019-11-25 22:15:19 2 1 2019-11-25 22:35:19 1 1 2019-11-25 22:45:19 1 2 2019-11-25 23:05:19 1 1 2019-11-25 23:10:19 1 1 2019-11-25 23:15:19 1 2 2019-11-25 23:40:19 1 2 2019-11-25 23:40:19 2 1 2019-11-26 00:25:19 1 3 2019-11-26 00:30:19 1 2 2019-11-26 00:35:19 1 2 2019-11-26 00:40:19 1 2 2019-11-26 04:45:19 1 1 2019-11-26 04:50:19 1 1 2019-11-26 04:55:19 1 1 2019-11-26 05:00:19 1 1 2019-11-26 05:05:19 1 1 2019-11-26 05:10:19 1 1 2019-11-26 05:15:19 1 1 2019-11-26 05:20:19 1 1 2019-11-26 05:25:19 1 1 2019-11-26 05:30:19 1 1 2019-11-26 05:35:19 1 1 2019-11-26 05:40:19 1 1 2019-11-26 05:45:19 1 1 2019-11-26 05:50:19 1 1 2019-11-26 05:55:19 1 1 2019-11-26 06:00:19 1 1 2019-11-26 06:05:19 1 1 2019-11-26 07:00:19 1 1 2019-11-26 07:05:19 1 1 2019-11-26 07:30:19 1 1 2019-11-26 07:35:19 1 1 2019-11-26 08:00:19 1 1 2019-11-26 08:05:19 1 2 2019-11-26 08:10:19 1 2 2019-11-26 08:15:19 1 3 2019-11-26 08:30:19 1 3 2019-11-26 08:50:19 1 3 2019-11-26 09:10:19 1 5 2019-11-26 09:35:19 1 2 2019-11-26 09:40:19 1 1 2019-11-26 09:45:19 1 2 2019-11-26 10:10:19 1 3 2019-11-26 10:15:19 1 2 2019-11-26 10:40:19 1 5 2019-11-26 10:50:19 1 5 2019-11-26 10:50:19 2 1 2019-11-26 11:00:19 1 3 2019-11-26 11:10:19 1 2 2019-11-26 11:20:19 1 3 2019-11-26 11:25:19 1 4 2019-11-26 12:15:19 1 2 2019-11-26 12:15:19 2 1 2019-11-26 12:20:19 1 2 2019-11-26 12:20:19 2 1 2019-11-26 12:35:19 1 3 2019-11-26 13:10:19 1 2 2019-11-26 14:10:19 1 2 2019-11-26 14:15:19 1 3 2019-11-26 14:45:19 1 2 2019-11-26 15:00:19 1 2 2019-11-26 15:50:19 2 2 2019-11-26 15:55:19 2 2 2019-11-26 16:05:19 2 2 2019-11-26 16:15:19 1 1 2019-11-26 16:15:19 2 2 2019-11-26 16:35:19 1 2 2019-11-26 16:55:19 1 3 2019-11-26 16:55:19 2 1 2019-11-26 17:05:19 1 3 2019-11-26 17:05:19 2 2 2019-11-26 17:25:19 1 3 2019-11-26 17:25:19 2 1 2019-11-26 17:40:19 1 4 2019-11-26 19:15:19 1 1 2019-11-26 19:15:19 2 1 2019-11-26 19:25:19 1 1 2019-11-26 19:25:19 2 1 2019-11-26 19:30:19 1 1 2019-11-26 19:30:19 2 1 2019-11-26 19:45:19 1 4 2019-11-26 19:45:19 2 1 2019-11-26 20:00:19 1 4 2019-11-26 20:00:19 2 1 2019-11-26 20:05:19 1 2 2019-11-26 20:25:19 1 2 2019-11-26 20:30:19 1 2 2019-11-26 20:35:19 1 3 2019-11-26 20:40:19 1 4 2019-11-26 20:45:19 1 3 2019-11-26 20:50:19 1 5 2019-11-26 20:55:19 1 5 2019-11-26 21:00:19 1 5 2019-11-26 21:05:19 1 5 2019-11-26 21:10:19 1 5 2019-11-26 21:15:19 1 5 2019-11-26 21:20:19 1 6 2019-11-26 21:25:19 1 3 2019-11-26 21:30:19 1 2 2019-11-26 21:35:19 1 4 2019-11-26 21:40:19 1 4 2019-11-26 21:45:19 1 4 2019-11-26 21:50:19 1 2 2019-11-26 21:55:19 1 4 2019-11-26 21:55:19 2 1 2019-11-26 22:00:19 1 4 2019-11-26 22:00:19 2 1 2019-11-26 22:05:19 1 4 2019-11-26 22:05:19 2 2 2019-11-26 22:10:19 1 4 2019-11-26 22:10:19 2 3 2019-11-26 22:15:19 1 4 2019-11-26 22:15:19 2 3 2019-11-26 22:20:19 1 3 2019-11-26 22:20:19 2 4 2019-11-26 22:25:19 1 4 2019-11-26 22:25:19 2 3 2019-11-26 22:30:19 1 4 2019-11-26 22:30:19 2 3 2019-11-26 22:45:19 1 3 2019-11-26 22:45:19 2 2 2019-11-26 23:35:19 1 4 2019-11-26 23:40:19 1 4 2019-11-26 23:55:19 1 4 2019-11-27 00:05:19 1 4 2019-11-27 00:10:19 1 3 2019-11-27 01:30:19 1 2 2019-11-27 01:35:19 1 2 2019-11-27 01:40:19 1 2 2019-11-27 01:45:19 1 2 2019-11-27 01:50:19 1 2 2019-11-27 01:55:19 1 2 2019-11-27 02:00:19 1 2 2019-11-27 02:05:19 1 2 2019-11-27 02:10:19 1 2 2019-11-27 02:45:19 1 1 2019-11-27 02:45:19 2 1 2019-11-27 02:50:19 1 1 2019-11-27 02:50:19 2 1 2019-11-27 02:55:19 1 1 2019-11-27 02:55:19 2 1 2019-11-27 03:00:19 1 1 2019-11-27 03:00:19 2 1 2019-11-27 04:00:19 1 1 2019-11-27 04:05:19 1 1 2019-11-27 04:10:19 1 1 2019-11-27 04:15:19 1 1 2019-11-27 04:20:19 1 1 2019-11-27 04:25:19 1 1 2019-11-27 04:30:19 1 1 2019-11-27 04:35:19 1 1 2019-11-27 04:40:19 1 1 2019-11-27 04:45:19 1 1 2019-11-27 04:50:19 1 1 2019-11-27 04:55:19 1 1 2019-11-27 05:00:19 1 1 2019-11-27 05:05:19 1 1 2019-11-27 05:10:19 1 1 2019-11-27 05:15:19 1 1 2019-11-27 05:20:19 1 1 2019-11-27 05:25:19 1 1 2019-11-27 05:30:19 1 1 2019-11-27 05:35:19 1 1 2019-11-27 05:40:19 1 1 2019-11-27 05:45:19 1 1 2019-11-27 05:50:19 1 1 2019-11-27 06:00:19 1 2 2019-11-27 06:20:19 1 1 2019-11-27 06:25:19 1 1 2019-11-27 06:40:19 1 1 2019-11-27 06:45:19 1 1 2019-11-27 08:15:19 1 1 2019-11-27 08:35:19 1 3 2019-11-27 09:05:19 1 2 2019-11-27 09:20:19 1 2 2019-11-27 09:45:19 1 2 2019-11-27 11:00:19 1 1 2019-11-27 11:00:19 2 1 2019-11-27 11:05:19 2 1 2019-11-27 11:10:19 1 1 2019-11-27 11:10:19 2 1 2019-11-27 11:45:19 1 2 2019-11-27 11:45:19 2 1 2019-11-27 11:50:19 1 2 2019-11-27 12:15:19 1 3 2019-11-27 12:20:19 1 5 2019-11-27 12:30:19 1 5 2019-11-27 12:40:19 1 4 2019-11-27 13:20:19 1 3 2019-11-27 13:25:19 1 3 2019-11-27 13:40:19 1 3 2019-11-27 14:00:19 1 3 2019-11-27 14:00:19 2 1 2019-11-27 14:40:19 1 3 2019-11-27 14:45:19 1 2 2019-11-27 15:00:19 1 1 2019-11-27 15:25:19 1 2 2019-11-27 15:30:19 1 1 2019-11-27 16:00:19 1 2 2019-11-27 16:05:19 1 3 2019-11-27 16:10:19 1 3 2019-11-27 16:20:19 1 2 2019-11-27 16:30:19 1 3 2019-11-27 16:40:19 1 3 2019-11-27 17:00:19 1 3 2019-11-27 17:10:19 1 1 2019-11-27 17:20:19 1 2 2019-11-27 17:25:19 1 3 2019-11-27 18:00:19 1 2 2019-11-27 18:45:19 1 4 2019-11-27 19:20:19 1 2 2019-11-27 19:25:19 1 3 2019-11-27 19:45:19 1 1 2019-11-27 19:55:19 1 1 2019-11-27 20:30:19 1 1 2019-11-27 20:50:19 1 2 2019-11-27 20:55:19 1 2 2019-11-27 21:05:19 1 3 2019-11-27 21:15:19 1 3 2019-11-27 21:20:19 1 5 2019-11-27 21:35:19 1 6 2019-11-27 21:40:19 1 4 2019-11-27 22:55:19 1 5 2019-11-27 23:00:19 1 4 2019-11-27 23:25:19 1 6 2019-11-27 23:50:19 1 3 2019-11-28 00:10:19 1 3 2019-11-28 00:15:19 1 3 2019-11-28 00:50:19 1 1 2019-11-28 00:55:19 1 4 2019-11-28 01:00:19 1 3 2019-11-28 01:25:19 1 3 2019-11-28 01:50:19 1 2 2019-11-28 02:15:19 1 1 2019-11-28 02:20:19 1 1 2019-11-28 02:25:19 1 1 2019-11-28 04:05:19 1 1 2019-11-28 04:10:19 1 1 2019-11-28 04:15:20 1 1 2019-11-28 04:20:19 1 1 2019-11-28 04:25:19 1 1 2019-11-28 04:30:19 1 1 2019-11-28 04:35:19 1 1 2019-11-28 04:40:19 1 1 2019-11-28 04:45:19 1 1 2019-11-28 04:50:19 1 1 2019-11-28 04:55:19 1 1 2019-11-28 05:00:19 1 1 2019-11-28 05:05:19 1 1 2019-11-28 05:10:19 1 1 2019-11-28 05:15:19 1 1 2019-11-28 05:20:19 1 1 2019-11-28 05:25:19 1 1 2019-11-28 05:30:19 1 1 2019-11-28 05:35:19 1 1 2019-11-28 05:40:19 1 1 2019-11-28 05:45:19 1 1 2019-11-28 05:50:19 1 1 2019-11-28 05:55:19 1 1 2019-11-28 06:00:19 1 1 2019-11-28 06:05:19 1 1 2019-11-28 06:10:19 1 1 2019-11-28 06:15:19 1 1 2019-11-28 06:20:19 1 1 2019-11-28 06:25:19 1 1 2019-11-28 06:30:19 1 1 2019-11-28 06:35:19 1 1 2019-11-28 07:50:19 1 1 2019-11-28 08:40:19 1 4 2019-11-28 08:45:19 1 3 2019-11-28 09:35:19 1 1 2019-11-28 10:05:19 1 4 2019-11-28 10:30:19 1 2 2019-11-28 10:50:19 1 5 2019-11-28 10:55:19 1 7 2019-11-28 11:05:19 1 6 2019-11-28 11:35:19 1 9 2019-11-28 11:40:19 1 8 2019-11-28 12:10:19 1 5 2019-11-28 12:30:19 1 9 2019-11-28 12:40:19 1 12 2019-11-28 12:55:19 1 12 2019-11-28 13:20:19 1 9 2019-11-28 13:25:19 1 6 2019-11-28 13:45:19 1 7 2019-11-28 13:50:19 1 9 2019-11-28 14:00:19 1 10 2019-11-28 14:20:19 1 12 2019-11-28 14:50:19 1 14 2019-11-28 15:15:19 1 11 2019-11-28 15:25:19 1 12 2019-11-28 15:30:19 1 9 2019-11-28 15:45:19 1 12 2019-11-28 16:05:19 1 10 2019-11-28 16:35:19 1 7 2019-11-28 16:45:19 1 7 2019-11-28 16:50:19 1 5 2019-11-28 17:05:19 1 9 2019-11-28 17:10:19 1 11 2019-11-28 17:20:19 1 12 2019-11-28 17:40:19 1 11 2019-11-28 18:10:19 1 10 2019-11-26 22:35:19 1 4 2019-11-26 22:35:19 2 3 2019-11-26 22:55:19 1 4 2019-11-26 23:10:19 1 5 2019-11-26 23:25:19 1 5 2019-11-26 23:30:19 1 4 2019-11-26 23:50:19 1 4 2019-11-27 00:20:19 1 3 2019-11-27 00:25:19 1 3 2019-11-27 00:30:19 1 2 2019-11-27 00:35:19 1 2 2019-11-27 00:40:19 1 2 2019-11-27 00:45:19 1 2 2019-11-27 02:15:19 1 1 2019-11-27 02:20:19 1 1 2019-11-27 02:25:19 1 1 2019-11-27 02:30:19 1 1 2019-11-27 02:35:19 1 1 2019-11-27 03:05:19 1 1 2019-11-27 03:10:19 1 1 2019-11-27 03:15:19 1 1 2019-11-27 03:20:19 1 1 2019-11-27 05:55:19 1 2 2019-11-27 06:05:19 1 1 2019-11-27 06:10:19 1 1 2019-11-27 06:30:19 1 1 2019-11-27 06:35:19 1 1 2019-11-27 07:05:19 1 1 2019-11-27 07:10:19 1 1 2019-11-27 07:35:19 1 1 2019-11-27 07:40:19 1 1 2019-11-27 07:45:19 1 1 2019-11-27 07:50:19 1 1 2019-11-27 07:55:19 1 1 2019-11-27 08:00:19 1 1 2019-11-27 08:05:19 1 1 2019-11-27 08:20:19 1 2 2019-11-27 08:50:19 1 2 2019-11-27 08:55:19 1 2 2019-11-27 09:00:19 1 1 2019-11-27 09:25:19 1 2 2019-11-27 09:40:19 1 2 2019-11-27 10:05:19 1 1 2019-11-27 10:15:19 1 2 2019-11-27 10:45:19 1 1 2019-11-27 10:45:19 2 1 2019-11-27 10:50:19 1 1 2019-11-27 10:50:19 2 1 2019-11-27 10:55:19 1 1 2019-11-27 11:15:19 1 2 2019-11-27 11:15:19 2 1 2019-11-27 12:05:19 1 3 2019-11-27 12:35:19 1 3 2019-11-27 12:45:19 1 3 2019-11-27 12:55:19 1 4 2019-11-27 13:05:19 1 6 2019-11-27 13:15:19 1 3 2019-11-27 13:30:19 1 3 2019-11-27 13:30:19 2 1 2019-11-27 13:50:19 1 4 2019-11-27 14:05:19 1 2 2019-11-27 14:05:19 2 1 2019-11-27 14:10:19 1 2 2019-11-27 14:10:19 2 1 2019-11-27 14:15:19 1 2 2019-11-27 14:20:19 1 2 2019-11-27 14:25:19 1 3 2019-11-27 14:30:19 1 3 2019-11-27 16:45:19 1 3 2019-11-27 17:05:19 1 1 2019-11-27 17:35:19 1 4 2019-11-27 17:55:19 1 2 2019-11-27 18:10:19 1 3 2019-11-27 18:15:19 1 2 2019-11-27 18:30:19 1 3 2019-11-27 18:35:19 1 3 2019-11-27 19:10:19 1 1 2019-11-27 19:15:19 1 1 2019-11-27 19:40:19 1 2 2019-11-27 19:50:19 1 1 2019-11-27 20:00:19 1 1 2019-11-27 20:05:19 1 1 2019-11-27 20:10:19 1 1 2019-11-27 20:15:19 1 1 2019-11-27 20:20:19 1 1 2019-11-27 20:25:19 1 1 2019-11-27 21:00:19 1 2 2019-11-27 21:10:19 1 4 2019-11-27 21:25:19 1 3 2019-11-27 21:45:19 1 6 2019-11-27 21:50:19 1 5 2019-11-27 21:55:19 1 5 2019-11-27 22:00:19 1 4 2019-11-27 22:10:19 1 4 2019-11-27 22:20:19 1 6 2019-11-27 22:40:19 1 7 2019-11-27 23:05:19 1 4 2019-11-27 23:10:19 1 5 2019-11-27 23:20:19 1 5 2019-11-27 23:30:19 1 4 2019-11-27 23:40:19 1 4 2019-11-27 23:45:19 1 4 2019-11-28 00:00:19 1 3 2019-11-28 00:45:19 1 2 2019-11-28 01:05:19 1 3 2019-11-28 01:15:19 1 3 2019-11-28 01:35:19 1 2 2019-11-28 01:45:19 1 2 2019-11-28 01:55:19 1 2 2019-11-28 02:00:19 1 2 2019-11-28 02:05:19 1 2 2019-11-28 02:40:19 1 1 2019-11-28 02:45:19 1 1 2019-11-28 02:50:19 1 1 2019-11-28 02:55:19 1 1 2019-11-28 03:00:19 1 1 2019-11-28 03:05:19 1 1 2019-11-28 03:10:19 1 1 2019-11-28 03:15:19 1 1 2019-11-28 03:20:19 1 1 2019-11-28 03:25:19 1 1 2019-11-28 03:30:19 1 1 2019-11-28 03:35:19 1 1 2019-11-28 03:40:19 1 1 2019-11-28 03:45:19 1 1 2019-11-28 03:50:19 1 1 2019-11-28 03:55:19 1 1 2019-11-28 04:00:19 1 1 2019-11-28 07:55:19 1 1 2019-11-28 08:00:19 1 2 2019-11-28 08:10:19 1 1 2019-11-28 08:15:19 1 1 2019-11-28 08:30:19 1 3 2019-11-28 09:15:19 1 3 2019-11-28 09:40:19 1 3 2019-11-28 09:45:19 1 4 2019-11-28 09:50:19 1 3 2019-11-28 10:00:20 1 2 2019-11-28 10:10:19 1 4 2019-11-28 10:15:19 1 3 2019-11-28 10:25:19 1 3 2019-11-28 10:40:20 1 5 2019-11-28 11:10:19 1 7 2019-11-28 11:15:19 1 5 2019-11-28 11:20:19 1 5 2019-11-28 11:25:19 1 6 2019-11-28 11:30:19 1 7 2019-11-28 11:45:19 1 6 2019-11-28 11:55:19 1 6 2019-11-28 12:20:19 1 9 2019-11-28 12:35:19 1 11 2019-11-28 12:50:19 1 11 2019-11-28 13:15:19 1 9 2019-11-28 13:30:19 1 8 2019-11-28 13:40:19 1 7 2019-11-28 14:05:19 1 11 2019-11-28 14:15:19 1 11 2019-11-28 14:40:19 1 9 2019-11-28 14:55:19 1 12 2019-11-28 15:00:19 1 12 2019-11-28 15:10:19 1 11 2019-11-28 15:35:19 1 10 2019-11-28 15:40:19 1 9 2019-11-28 15:50:19 1 12 2019-11-28 15:55:19 1 10 2019-11-28 16:10:19 1 9 2019-11-28 16:30:19 1 7 2019-11-28 17:00:19 1 7 2019-11-28 17:25:19 1 13 2019-11-28 17:35:19 1 12 2019-11-28 17:45:19 1 12 2019-11-28 18:05:19 1 11 2019-11-28 18:15:19 1 12 2019-11-28 18:40:19 1 7 2019-11-28 18:50:19 1 7 2019-11-28 19:00:19 1 9 2019-11-28 19:05:19 1 9 2019-11-28 19:15:19 1 10 2019-11-28 19:25:19 1 10 2019-11-28 19:30:19 1 9 2019-11-28 19:35:19 1 12 2019-11-28 19:40:19 1 12 2019-11-28 19:45:19 1 12 2019-11-28 19:50:19 1 13 2019-11-28 19:55:19 1 12 2019-11-26 22:40:19 1 4 2019-11-26 22:40:19 2 2 2019-11-26 22:50:19 1 4 2019-11-26 23:00:19 1 5 2019-11-26 23:05:19 1 5 2019-11-26 23:15:19 1 5 2019-11-26 23:20:19 1 5 2019-11-26 23:45:19 1 4 2019-11-27 00:00:19 1 4 2019-11-27 00:15:19 1 3 2019-11-27 00:50:19 1 3 2019-11-27 00:55:19 1 3 2019-11-27 01:00:19 1 3 2019-11-27 01:05:19 1 3 2019-11-27 01:10:19 1 3 2019-11-27 01:15:19 1 3 2019-11-27 01:20:19 1 3 2019-11-27 01:25:19 1 3 2019-11-27 02:40:19 1 2 2019-11-27 03:25:19 1 1 2019-11-27 03:25:19 2 1 2019-11-27 03:30:19 1 1 2019-11-27 03:30:19 2 1 2019-11-27 03:35:19 1 1 2019-11-27 03:35:19 2 1 2019-11-27 03:40:19 1 1 2019-11-27 03:40:19 2 1 2019-11-27 03:45:19 1 1 2019-11-27 03:45:19 2 1 2019-11-27 03:50:19 1 1 2019-11-27 03:50:19 2 1 2019-11-27 03:55:19 1 1 2019-11-27 03:55:19 2 1 2019-11-27 06:15:19 1 2 2019-11-27 06:50:19 1 1 2019-11-27 06:55:19 1 1 2019-11-27 07:00:19 1 1 2019-11-27 07:30:19 1 1 2019-11-27 08:30:19 1 2 2019-11-27 08:40:19 1 3 2019-11-27 08:45:19 1 2 2019-11-27 09:10:19 1 2 2019-11-27 09:15:19 1 1 2019-11-27 09:30:19 1 3 2019-11-27 09:35:19 1 2 2019-11-27 09:50:19 1 2 2019-11-27 09:55:19 1 1 2019-11-27 10:00:19 1 1 2019-11-27 10:10:19 1 2 2019-11-27 10:25:19 1 1 2019-11-27 11:20:19 1 2 2019-11-27 11:20:19 2 1 2019-11-27 11:25:19 1 2 2019-11-27 11:25:19 2 1 2019-11-27 11:30:19 1 2 2019-11-27 11:30:19 2 1 2019-11-27 11:35:19 1 2 2019-11-27 11:35:19 2 1 2019-11-27 11:40:19 1 1 2019-11-27 11:40:19 2 1 2019-11-27 11:55:19 1 3 2019-11-27 12:00:19 1 2 2019-11-27 12:10:19 1 4 2019-11-27 12:25:19 1 4 2019-11-27 12:50:19 1 3 2019-11-27 13:00:19 1 5 2019-11-27 13:10:19 1 3 2019-11-27 13:35:19 1 2 2019-11-27 13:45:19 1 4 2019-11-27 13:55:19 1 3 2019-11-27 14:35:19 1 2 2019-11-27 14:50:19 1 2 2019-11-27 14:55:19 1 2 2019-11-27 15:05:19 1 1 2019-11-27 15:10:19 1 1 2019-11-27 15:15:19 1 1 2019-11-27 15:15:19 2 1 2019-11-27 15:20:19 1 1 2019-11-27 15:20:19 2 1 2019-11-27 15:35:19 1 1 2019-11-27 15:40:19 1 1 2019-11-27 15:45:19 1 1 2019-11-27 15:50:19 1 1 2019-11-27 15:55:19 1 1 2019-11-27 16:15:19 1 2 2019-11-27 16:25:19 1 3 2019-11-27 16:35:19 1 4 2019-11-27 16:50:19 1 3 2019-11-27 16:55:19 1 3 2019-11-27 17:15:19 1 2 2019-11-27 17:30:19 1 2 2019-11-27 17:40:19 1 2 2019-11-27 17:45:19 1 2 2019-11-27 17:50:19 1 2 2019-11-27 18:05:19 1 2 2019-11-27 18:20:19 1 2 2019-11-27 18:25:19 1 3 2019-11-27 18:40:19 1 3 2019-11-27 18:50:19 1 2 2019-11-27 18:55:19 1 3 2019-11-27 19:00:19 1 2 2019-11-27 19:05:19 1 2 2019-11-27 19:30:19 1 2 2019-11-27 19:35:19 1 2 2019-11-27 20:35:19 1 2 2019-11-27 20:40:19 1 3 2019-11-27 20:45:19 1 3 2019-11-27 21:30:19 1 6 2019-11-27 22:05:19 1 4 2019-11-27 22:15:19 1 4 2019-11-27 22:25:19 1 6 2019-11-27 22:30:19 1 7 2019-11-27 22:35:19 1 8 2019-11-27 22:45:19 1 7 2019-11-27 22:50:19 1 6 2019-11-27 23:15:19 1 4 2019-11-27 23:35:19 1 2 2019-11-27 23:55:19 1 3 2019-11-28 00:05:19 1 3 2019-11-28 00:20:19 1 3 2019-11-28 00:25:19 1 3 2019-11-28 00:30:19 1 3 2019-11-28 00:35:19 1 2 2019-11-28 00:40:19 1 2 2019-11-28 01:10:19 1 3 2019-11-28 01:20:19 1 3 2019-11-28 01:30:19 1 3 2019-11-28 01:40:19 1 2 2019-11-28 02:10:19 1 2 2019-11-28 02:30:19 1 2 2019-11-28 02:35:20 1 2 2019-11-28 08:05:19 1 1 2019-11-28 08:20:19 1 3 2019-11-28 08:25:19 1 2 2019-11-28 08:35:19 1 3 2019-11-28 08:50:19 1 3 2019-11-28 08:55:19 1 2 2019-11-28 09:00:19 1 1 2019-11-28 09:05:19 1 1 2019-11-28 09:10:20 1 1 2019-11-28 09:20:19 1 1 2019-11-28 09:25:19 1 1 2019-11-28 09:30:19 1 4 2019-11-28 09:55:19 1 4 2019-11-28 10:20:19 1 3 2019-11-28 10:35:19 1 4 2019-11-28 10:45:19 1 5 2019-11-28 11:00:19 1 6 2019-11-28 11:50:19 1 8 2019-11-28 12:00:19 1 5 2019-11-28 12:05:19 1 4 2019-11-28 12:15:19 1 7 2019-11-28 12:25:20 1 8 2019-11-28 12:45:19 1 12 2019-11-28 13:00:19 1 9 2019-11-28 13:05:19 1 11 2019-11-28 13:10:19 1 11 2019-11-28 13:35:19 1 7 2019-11-28 13:55:19 1 12 2019-11-28 14:10:19 1 12 2019-11-28 14:25:19 1 12 2019-11-28 14:30:19 1 10 2019-11-28 14:35:20 1 10 2019-11-28 14:45:19 1 10 2019-11-28 15:05:19 1 13 2019-11-28 15:20:19 1 13 2019-11-28 16:00:19 1 9 2019-11-28 16:15:19 1 9 2019-11-28 16:20:19 1 9 2019-11-28 16:25:19 1 9 2019-11-28 16:40:19 1 7 2019-11-28 16:55:19 1 8 2019-11-28 17:15:19 1 11 2019-11-28 17:30:19 1 13 2019-11-28 17:50:19 1 12 2019-11-28 17:55:19 1 12 2019-11-28 18:00:19 1 12 2019-11-28 18:20:19 1 11 2019-11-28 18:25:19 1 10 2019-11-28 18:30:19 1 12 2019-11-28 18:35:19 1 11 2019-11-28 18:45:19 1 7 2019-11-28 18:55:19 1 8 2019-11-28 19:10:19 1 9 2019-11-28 19:20:19 1 10 2019-11-28 20:00:19 1 10 2019-11-28 20:10:19 1 12 2019-11-28 20:15:19 1 14 2019-11-28 20:25:19 1 11 2019-11-28 20:35:19 1 11 2019-11-28 20:50:20 1 16 2019-11-28 21:05:19 1 19 2019-11-28 21:10:19 1 17 2019-11-28 21:15:19 1 16 2019-11-28 21:55:19 1 18 2019-11-28 22:15:19 1 22 2019-11-28 22:40:19 1 17 2019-11-28 22:45:19 1 15 2019-11-28 23:20:19 1 15 2019-11-28 23:30:20 1 16 2019-11-28 23:35:19 1 16 2019-11-28 23:50:19 1 13 2019-11-28 23:55:19 1 15 2019-11-29 00:45:19 1 11 2019-11-29 00:50:19 1 12 2019-11-29 01:05:19 1 9 2019-11-29 01:25:19 1 8 2019-11-29 01:55:19 1 6 2019-11-29 02:00:19 1 6 2019-11-29 02:05:19 1 5 2019-11-29 02:15:19 1 6 2019-11-29 02:20:19 1 5 2019-11-29 03:05:19 1 5 2019-11-29 03:15:19 1 5 2019-11-29 03:30:19 1 7 2019-11-29 03:35:19 1 6 2019-11-29 03:45:19 1 5 2019-11-29 04:00:19 1 5 2019-11-29 04:05:19 1 5 2019-11-29 04:20:19 1 5 2019-11-29 04:30:19 1 6 2019-11-29 06:10:19 1 7 2019-11-29 06:20:19 1 7 2019-11-29 06:25:19 1 7 2019-11-29 06:30:19 1 9 2019-11-29 06:40:19 1 9 2019-11-29 07:00:19 1 6 2019-11-29 07:25:19 1 8 2019-11-29 07:40:19 1 9 2019-11-29 07:45:19 1 9 2019-11-29 07:50:19 1 10 2019-11-29 08:15:19 1 10 2019-11-29 08:20:19 1 9 2019-11-29 08:25:19 1 9 2019-11-29 08:35:19 1 9 2019-11-29 08:40:19 1 10 2019-11-29 09:25:19 1 13 2019-11-29 09:45:19 1 15 2019-11-29 09:50:19 1 17 2019-11-29 10:05:19 1 14 2019-11-29 10:20:19 1 16 2019-11-29 11:05:19 1 15 2019-11-29 11:15:19 1 15 2019-11-29 11:20:19 1 12 2019-11-29 11:35:19 1 13 2019-11-29 11:35:19 2 1 2019-11-29 11:45:19 1 14 2019-11-29 11:45:19 2 1 2019-11-29 12:15:19 1 14 2019-11-29 12:15:19 2 1 2019-11-29 12:40:19 1 19 2019-11-29 12:40:19 2 1 2019-11-29 12:55:19 1 14 2019-11-29 13:20:19 1 18 2019-11-29 13:20:19 2 1 2019-11-29 13:25:19 1 17 2019-11-29 13:25:19 2 1 2019-11-29 13:35:19 1 14 2019-11-29 13:35:19 2 1 2019-11-29 13:50:19 1 14 2019-11-29 13:50:19 2 1 2019-11-29 13:55:19 1 13 2019-11-29 13:55:19 2 1 2019-11-29 14:10:19 1 11 2019-11-29 14:10:19 2 1 2019-11-29 15:20:19 1 9 2019-11-29 15:20:19 2 2 2019-11-29 15:25:19 1 8 2019-11-29 15:25:19 2 2 2019-11-29 15:30:19 1 9 2019-11-29 15:30:19 2 2 2019-11-29 15:55:19 1 8 2019-11-29 15:55:19 2 2 2019-11-29 16:10:19 1 10 2019-11-29 16:10:19 2 2 2019-11-29 16:15:19 1 9 2019-11-29 16:15:19 2 2 2019-11-29 16:40:19 1 9 2019-11-29 16:40:19 2 1 2019-11-29 16:45:19 1 10 2019-11-29 16:45:19 2 1 2019-11-29 17:30:20 1 7 2019-11-29 17:30:20 2 1 2019-11-29 17:35:19 1 10 2019-11-29 17:35:19 2 1 2019-11-29 17:50:19 1 7 2019-11-29 17:50:19 2 1 2019-11-29 18:15:20 1 10 2019-11-29 18:15:20 2 1 2019-11-29 18:25:19 1 14 2019-11-29 18:25:19 2 2 2019-11-29 18:45:19 1 13 2019-11-29 18:45:19 2 2 2019-11-29 18:50:19 1 13 2019-11-29 18:50:19 2 2 2019-11-29 19:40:19 1 11 2019-11-29 19:40:19 2 1 2019-11-29 20:15:19 1 10 2019-11-29 20:15:19 2 2 2019-11-29 20:55:19 1 12 2019-11-29 20:55:19 2 3 2019-11-29 21:00:19 1 15 2019-11-29 21:00:19 2 3 2019-11-29 21:20:19 1 15 2019-11-29 21:20:19 2 2 2019-11-29 21:25:19 1 16 2019-11-29 21:25:19 2 2 2019-11-29 22:00:19 1 14 2019-11-29 22:00:19 2 2 2019-11-29 22:15:19 1 14 2019-11-29 22:15:19 2 1 2019-11-29 22:30:19 1 13 2019-11-29 22:30:19 2 1 2019-11-29 22:45:19 1 15 2019-11-29 22:45:19 2 2 2019-11-29 22:50:19 1 15 2019-11-29 22:50:19 2 2 2019-11-29 22:55:19 1 15 2019-11-29 22:55:19 2 2 2019-11-29 23:00:20 1 16 2019-11-29 23:00:20 2 2 2019-11-29 23:05:19 1 16 2019-11-29 23:05:19 2 1 2019-11-29 23:10:19 1 16 2019-11-29 23:10:19 2 1 2019-11-29 23:25:19 1 18 2019-11-29 23:25:19 2 1 2019-11-29 23:30:19 1 14 2019-11-29 23:30:19 2 1 2019-11-29 23:55:19 1 11 2019-11-29 23:55:19 2 1 2019-11-30 00:05:19 1 13 2019-11-30 00:05:19 2 1 2019-11-30 00:15:19 1 14 2019-11-30 00:15:19 2 1 2019-11-30 00:20:19 1 13 2019-11-30 00:25:19 1 11 2019-11-30 00:30:19 1 9 2019-11-30 00:45:19 1 10 2019-11-30 00:55:19 1 9 2019-11-30 01:00:19 1 11 2019-11-30 01:05:19 1 11 2019-11-30 01:20:19 1 9 2019-11-30 01:25:19 1 8 2019-11-30 01:30:19 1 9 2019-11-30 01:35:19 1 7 2019-11-30 01:45:19 1 8 2019-11-30 01:50:19 1 9 2019-11-30 01:55:19 1 8 2019-11-30 02:00:19 1 8 2019-11-30 02:10:19 1 7 2019-11-30 02:15:19 1 8 2019-11-30 02:30:19 1 8 2019-11-30 02:35:19 1 8 2019-11-30 02:40:19 1 8 2019-11-30 02:50:19 1 10 2019-11-30 02:55:19 1 10 2019-11-30 03:10:19 1 9 2019-11-30 03:15:19 1 8 2019-11-30 03:20:19 1 8 2019-11-30 03:30:19 1 8 2019-11-30 03:35:19 1 8 2019-11-30 03:40:20 1 7 2019-11-30 03:45:19 1 7 2019-11-30 03:50:19 1 7 2019-11-30 03:55:19 1 9 2019-11-30 04:00:19 1 9 2019-11-30 04:05:19 1 9 2019-11-30 04:10:19 1 9 2019-11-30 04:15:19 1 8 2019-11-28 20:05:19 1 13 2019-11-28 20:20:20 1 12 2019-11-28 21:00:19 1 19 2019-11-28 21:20:19 1 18 2019-11-28 21:25:20 1 14 2019-11-28 21:35:19 1 18 2019-11-28 21:50:19 1 18 2019-11-28 22:00:19 1 17 2019-11-28 22:05:19 1 18 2019-11-28 22:20:19 1 18 2019-11-28 22:30:19 1 15 2019-11-28 22:50:19 1 19 2019-11-28 22:55:19 1 19 2019-11-28 23:05:19 1 15 2019-11-28 23:10:19 1 16 2019-11-28 23:15:19 1 18 2019-11-28 23:40:19 1 13 2019-11-29 00:00:19 1 17 2019-11-29 00:10:19 1 13 2019-11-29 00:15:19 1 13 2019-11-29 00:20:19 1 11 2019-11-29 00:30:19 1 11 2019-11-29 00:40:19 1 9 2019-11-29 01:00:19 1 10 2019-11-29 01:10:19 1 7 2019-11-29 01:20:19 1 8 2019-11-29 01:35:19 1 7 2019-11-29 01:50:19 1 6 2019-11-29 02:10:19 1 6 2019-11-29 02:40:19 1 5 2019-11-29 02:45:19 1 5 2019-11-29 02:50:19 1 5 2019-11-29 02:55:19 1 5 2019-11-29 03:10:19 1 5 2019-11-29 03:20:19 1 5 2019-11-29 03:25:19 1 6 2019-11-29 03:40:19 1 6 2019-11-29 03:50:19 1 5 2019-11-29 03:55:19 1 5 2019-11-29 04:10:19 1 5 2019-11-29 04:15:19 1 5 2019-11-29 04:25:19 1 5 2019-11-29 04:35:19 1 5 2019-11-29 04:40:19 1 5 2019-11-29 04:50:19 1 6 2019-11-29 05:05:19 1 6 2019-11-29 05:10:19 1 7 2019-11-29 05:25:20 1 6 2019-11-29 05:30:19 1 6 2019-11-29 05:35:19 1 6 2019-11-29 05:40:19 1 6 2019-11-29 05:45:19 1 7 2019-11-29 05:55:19 1 6 2019-11-29 06:55:19 1 6 2019-11-29 07:10:19 1 9 2019-11-29 08:30:19 1 9 2019-11-29 08:45:19 1 12 2019-11-29 08:55:19 1 14 2019-11-29 09:05:19 1 11 2019-11-29 09:10:19 1 11 2019-11-29 09:20:19 1 12 2019-11-29 09:40:19 1 13 2019-11-29 09:55:19 1 17 2019-11-29 10:10:19 1 18 2019-11-29 10:25:19 1 17 2019-11-29 10:30:19 1 16 2019-11-29 10:30:19 2 1 2019-11-29 10:35:19 1 17 2019-11-29 10:35:19 2 1 2019-11-29 10:40:19 1 14 2019-11-29 10:40:19 2 1 2019-11-29 10:50:19 1 15 2019-11-29 10:50:19 2 1 2019-11-29 11:10:19 1 15 2019-11-29 11:25:19 1 13 2019-11-29 11:40:19 1 14 2019-11-29 11:40:19 2 1 2019-11-29 11:50:19 1 13 2019-11-29 11:50:19 2 1 2019-11-29 11:55:19 1 13 2019-11-29 11:55:19 2 1 2019-11-29 12:00:19 1 13 2019-11-29 12:00:19 2 1 2019-11-29 12:20:19 1 13 2019-11-29 12:20:19 2 1 2019-11-29 12:25:19 1 14 2019-11-29 12:25:19 2 1 2019-11-29 12:45:19 1 15 2019-11-29 12:45:19 2 1 2019-11-29 12:50:20 1 14 2019-11-29 13:00:19 1 14 2019-11-29 13:15:19 1 16 2019-11-29 13:15:19 2 1 2019-11-29 13:30:19 1 14 2019-11-29 13:30:19 2 1 2019-11-29 13:40:19 1 13 2019-11-29 13:40:19 2 1 2019-11-29 13:45:19 1 13 2019-11-29 13:45:19 2 1 2019-11-29 14:05:19 1 13 2019-11-29 14:05:19 2 1 2019-11-29 14:15:19 1 11 2019-11-29 14:15:19 2 1 2019-11-29 14:25:19 1 13 2019-11-29 14:25:19 2 1 2019-11-29 14:30:19 1 13 2019-11-29 14:30:19 2 1 2019-11-29 14:35:19 1 12 2019-11-29 14:35:19 2 1 2019-11-29 14:45:19 1 13 2019-11-29 14:45:19 2 1 2019-11-29 14:50:19 1 11 2019-11-29 14:50:19 2 1 2019-11-29 14:55:19 1 10 2019-11-29 14:55:19 2 1 2019-11-29 15:00:19 1 10 2019-11-29 15:00:19 2 1 2019-11-29 15:10:19 1 12 2019-11-29 15:10:19 2 1 2019-11-29 15:15:19 1 11 2019-11-29 15:15:19 2 1 2019-11-29 16:00:19 1 10 2019-11-29 16:00:19 2 2 2019-11-29 16:20:19 1 11 2019-11-29 16:20:19 2 1 2019-11-29 16:25:19 1 12 2019-11-29 16:25:19 2 1 2019-11-29 16:35:19 1 9 2019-11-29 16:35:19 2 1 2019-11-29 17:10:19 1 9 2019-11-29 17:10:19 2 1 2019-11-29 17:15:19 1 8 2019-11-29 17:15:19 2 1 2019-11-29 17:20:19 1 7 2019-11-29 17:20:19 2 1 2019-11-29 17:55:19 1 11 2019-11-29 17:55:19 2 1 2019-11-29 18:00:19 1 13 2019-11-29 18:00:19 2 1 2019-11-29 18:10:19 1 11 2019-11-29 18:10:19 2 1 2019-11-29 18:20:19 1 12 2019-11-29 18:20:19 2 2 2019-11-29 18:30:19 1 12 2019-11-29 18:30:19 2 1 2019-11-29 18:35:19 1 12 2019-11-29 18:35:19 2 2 2019-11-29 18:55:19 1 11 2019-11-29 18:55:19 2 2 2019-11-29 19:00:19 1 12 2019-11-29 19:00:19 2 3 2019-11-29 19:15:19 1 13 2019-11-29 19:15:19 2 2 2019-11-29 19:25:19 1 10 2019-11-29 19:25:19 2 2 2019-11-29 19:30:19 1 11 2019-11-29 19:30:19 2 2 2019-11-29 19:35:19 1 13 2019-11-29 19:35:19 2 1 2019-11-29 19:45:19 1 8 2019-11-29 19:45:19 2 1 2019-11-29 19:50:19 1 11 2019-11-29 19:50:19 2 1 2019-11-29 20:00:19 1 13 2019-11-29 20:00:19 2 2 2019-11-29 20:10:19 1 12 2019-11-29 20:10:19 2 2 2019-11-29 20:35:19 1 11 2019-11-29 20:35:19 2 3 2019-11-29 21:10:19 1 14 2019-11-29 21:10:19 2 3 2019-11-29 21:15:19 1 14 2019-11-29 21:15:19 2 3 2019-11-29 21:35:19 1 14 2019-11-29 21:35:19 2 2 2019-11-29 21:40:19 1 15 2019-11-29 21:40:19 2 2 2019-11-29 22:10:19 1 13 2019-11-29 22:10:19 2 1 2019-11-29 22:25:19 1 9 2019-11-29 22:25:19 2 1 2019-11-29 22:35:19 1 15 2019-11-29 22:35:19 2 1 2019-11-29 22:40:19 1 16 2019-11-29 22:40:19 2 1 2019-11-28 20:30:20 1 12 2019-11-28 20:40:19 1 10 2019-11-28 20:45:19 1 12 2019-11-28 20:55:19 1 20 2019-11-28 21:30:19 1 16 2019-11-28 21:40:19 1 16 2019-11-28 21:45:19 1 18 2019-11-28 22:10:19 1 15 2019-11-28 22:25:19 1 18 2019-11-28 22:35:19 1 15 2019-11-28 23:00:19 1 18 2019-11-28 23:25:19 1 14 2019-11-28 23:45:19 1 14 2019-11-29 00:05:19 1 13 2019-11-29 00:25:19 1 12 2019-11-29 00:35:19 1 10 2019-11-29 00:55:19 1 10 2019-11-29 01:15:19 1 8 2019-11-29 01:30:19 1 9 2019-11-29 01:40:19 1 6 2019-11-29 01:45:19 1 6 2019-11-29 02:25:19 1 4 2019-11-29 02:30:19 1 5 2019-11-29 02:35:19 1 5 2019-11-29 03:00:19 1 7 2019-11-29 04:45:19 1 6 2019-11-29 04:55:19 1 6 2019-11-29 05:00:19 1 6 2019-11-29 05:15:19 1 7 2019-11-29 05:20:20 1 7 2019-11-29 05:50:19 1 6 2019-11-29 06:00:19 1 6 2019-11-29 06:05:19 1 6 2019-11-29 06:15:19 1 9 2019-11-29 06:35:19 1 9 2019-11-29 06:45:19 1 6 2019-11-29 06:50:19 1 6 2019-11-29 07:05:19 1 7 2019-11-29 07:15:19 1 9 2019-11-29 07:20:19 1 8 2019-11-29 07:30:19 1 8 2019-11-29 07:35:19 1 9 2019-11-29 07:55:19 1 10 2019-11-29 08:00:19 1 9 2019-11-29 08:05:19 1 9 2019-11-29 08:10:19 1 10 2019-11-29 08:50:19 1 14 2019-11-29 09:00:19 1 12 2019-11-29 09:15:19 1 12 2019-11-29 09:30:19 1 12 2019-11-29 09:35:19 1 12 2019-11-29 10:00:19 1 17 2019-11-29 10:15:19 1 17 2019-11-29 10:45:19 1 14 2019-11-29 10:45:19 2 1 2019-11-29 10:55:19 1 14 2019-11-29 10:55:19 2 1 2019-11-29 11:00:19 1 13 2019-11-29 11:30:19 1 15 2019-11-29 11:30:19 2 1 2019-11-29 12:05:19 1 15 2019-11-29 12:05:19 2 1 2019-11-29 12:10:19 1 13 2019-11-29 12:10:19 2 1 2019-11-29 12:30:19 1 16 2019-11-29 12:30:19 2 1 2019-11-29 12:35:19 1 15 2019-11-29 12:35:19 2 1 2019-11-29 13:05:19 1 15 2019-11-29 13:10:19 1 16 2019-11-29 13:10:19 2 1 2019-11-29 14:00:19 1 14 2019-11-29 14:00:19 2 1 2019-11-29 14:20:19 1 11 2019-11-29 14:20:19 2 1 2019-11-29 14:40:20 1 12 2019-11-29 14:40:20 2 1 2019-11-29 15:05:19 1 10 2019-11-29 15:05:19 2 1 2019-11-29 15:35:19 1 11 2019-11-29 15:35:19 2 2 2019-11-29 15:40:19 1 9 2019-11-29 15:40:19 2 2 2019-11-29 15:45:19 1 11 2019-11-29 15:45:19 2 2 2019-11-29 15:50:19 1 8 2019-11-29 15:50:19 2 2 2019-11-29 16:05:19 1 10 2019-11-29 16:05:19 2 2 2019-11-29 16:30:19 1 10 2019-11-29 16:30:19 2 1 2019-11-29 16:50:19 1 9 2019-11-29 16:50:19 2 1 2019-11-29 16:55:19 1 10 2019-11-29 16:55:19 2 1 2019-11-29 17:00:19 1 8 2019-11-29 17:00:19 2 1 2019-11-29 17:05:19 1 6 2019-11-29 17:05:19 2 1 2019-11-29 17:25:19 1 8 2019-11-29 17:25:19 2 1 2019-11-29 17:40:19 1 9 2019-11-29 17:40:19 2 1 2019-11-29 17:45:19 1 10 2019-11-29 17:45:19 2 1 2019-11-29 18:05:19 1 14 2019-11-29 18:05:19 2 1 2019-11-29 18:40:19 1 15 2019-11-29 18:40:19 2 2 2019-11-29 19:05:19 1 11 2019-11-29 19:05:19 2 3 2019-11-29 19:10:19 1 12 2019-11-29 19:10:19 2 3 2019-11-29 19:20:19 1 11 2019-11-29 19:20:19 2 2 2019-11-29 19:55:19 1 13 2019-11-29 19:55:19 2 2 2019-11-29 20:05:19 1 11 2019-11-29 20:05:19 2 2 2019-11-29 20:20:19 1 9 2019-11-29 20:20:19 2 3 2019-11-29 20:25:19 1 11 2019-11-29 20:25:19 2 4 2019-11-29 20:30:19 1 10 2019-11-29 20:30:19 2 4 2019-11-29 20:40:19 1 12 2019-11-29 20:40:19 2 3 2019-11-29 20:45:19 1 12 2019-11-29 20:45:19 2 3 2019-11-29 20:50:19 1 13 2019-11-29 20:50:19 2 3 2019-11-29 21:05:19 1 12 2019-11-29 21:05:19 2 3 2019-11-29 21:30:19 1 15 2019-11-29 21:30:19 2 2 2019-11-29 21:45:19 1 19 2019-11-29 21:45:19 2 2 2019-11-29 21:50:19 1 15 2019-11-29 21:50:19 2 2 2019-11-29 21:55:19 1 15 2019-11-29 21:55:19 2 2 2019-11-29 22:05:19 1 12 2019-11-29 22:05:19 2 1 2019-11-29 22:20:19 1 14 2019-11-29 22:20:19 2 1 2019-11-29 23:15:19 1 17 2019-11-29 23:15:19 2 1 2019-11-29 23:20:19 1 16 2019-11-29 23:20:19 2 1 2019-11-29 23:35:19 1 14 2019-11-29 23:35:19 2 1 2019-11-29 23:40:19 1 14 2019-11-29 23:40:19 2 1 2019-11-29 23:45:19 1 14 2019-11-29 23:45:19 2 1 2019-11-29 23:50:19 1 12 2019-11-29 23:50:19 2 1 2019-11-30 00:00:19 1 12 2019-11-30 00:00:19 2 1 2019-11-30 00:10:19 1 15 2019-11-30 00:10:19 2 1 2019-11-30 00:35:19 1 9 2019-11-30 00:40:19 1 9 2019-11-30 00:50:19 1 9 2019-11-30 01:10:19 1 11 2019-11-30 01:15:19 1 9 2019-11-30 01:40:19 1 7 2019-11-30 02:05:19 1 7 2019-11-30 02:20:19 1 7 2019-11-30 02:25:19 1 8 2019-11-30 02:45:19 1 8 2019-11-30 03:00:19 1 10 2019-11-30 03:05:19 1 9 2019-11-30 03:25:20 1 8 2019-11-30 04:20:19 1 8 2019-11-30 04:25:19 1 9 2019-11-30 04:30:19 1 8 2019-11-30 04:35:19 1 8 2019-11-30 04:40:19 1 8 2019-11-30 04:45:19 1 8 2019-11-30 04:50:19 1 8 2019-11-30 04:55:19 1 8 2019-11-30 05:00:19 1 8 2019-11-30 05:05:19 1 8 2019-11-30 05:10:19 1 7 2019-11-30 05:15:19 1 7 2019-11-30 05:20:19 1 8 2019-11-30 05:50:19 1 7 2019-11-30 06:20:19 1 8 2019-11-30 06:25:19 1 9 2019-11-30 06:55:19 1 8 2019-11-30 07:20:19 1 6 2019-11-30 07:25:19 1 5 2019-11-30 07:45:19 1 8 2019-11-30 08:25:19 1 10 2019-11-30 08:45:19 1 8 2019-11-30 08:45:19 2 1 2019-11-30 08:50:19 1 6 2019-11-30 08:50:19 2 1 2019-11-30 08:55:19 1 9 2019-11-30 08:55:19 2 1 2019-11-30 09:05:19 1 9 2019-11-30 09:05:19 2 1 2019-11-30 09:30:19 1 9 2019-11-30 09:30:19 2 1 2019-11-30 10:10:19 1 12 2019-11-30 10:10:19 2 2 2019-11-30 10:15:19 1 12 2019-11-30 10:15:19 2 2 2019-11-30 10:20:19 1 11 2019-11-30 10:20:19 2 2 2019-11-30 10:50:19 1 15 2019-11-30 10:50:19 2 2 2019-11-30 10:55:19 1 15 2019-11-30 10:55:19 2 2 2019-11-30 11:30:19 1 14 2019-11-30 11:30:19 2 1 2019-11-30 11:50:19 1 15 2019-11-30 11:50:19 2 1 2019-11-30 12:05:19 1 12 2019-11-30 12:05:19 2 1 2019-11-30 12:15:19 1 15 2019-11-30 12:15:19 2 2 2019-11-30 12:25:19 1 13 2019-11-30 12:25:19 2 2 2019-11-30 12:30:19 1 13 2019-11-30 12:30:19 2 2 2019-11-30 13:00:19 1 13 2019-11-30 13:00:19 2 1 2019-11-30 13:10:19 1 12 2019-11-30 13:10:19 2 1 2019-11-30 13:25:19 1 14 2019-11-30 13:25:19 2 1 2019-11-30 13:30:19 1 13 2019-11-30 13:30:19 2 1 2019-11-30 13:50:19 1 14 2019-11-30 13:50:19 2 2 2019-11-30 13:55:19 1 15 2019-11-30 13:55:19 2 2 2019-11-30 14:15:19 1 14 2019-11-30 14:15:19 2 3 2019-11-30 14:30:19 1 16 2019-11-30 14:30:19 2 3 2019-11-30 15:05:19 1 13 2019-11-30 15:05:19 2 2 2019-11-30 15:45:19 1 15 2019-11-30 15:45:19 2 1 2019-11-30 15:50:19 1 15 2019-11-30 15:50:19 2 1 2019-11-30 16:00:19 1 15 2019-11-30 16:20:19 1 14 2019-11-30 16:20:19 2 1 2019-11-30 16:25:19 1 13 2019-11-30 16:25:19 2 1 2019-11-30 16:30:19 1 17 2019-11-30 16:40:19 1 13 2019-11-30 16:45:19 1 14 2019-11-30 16:45:19 2 1 2019-11-30 16:50:19 1 13 2019-11-30 16:50:19 2 1 2019-11-30 17:05:19 1 13 2019-11-30 17:30:19 1 18 2019-11-30 17:35:19 1 15 2019-11-30 17:45:19 1 16 2019-11-30 18:00:19 1 16 2019-11-30 18:10:19 1 16 2019-11-30 18:40:19 1 13 2019-11-30 18:40:19 2 2 2019-11-30 18:45:19 1 10 2019-11-30 18:45:19 2 3 2019-11-30 18:50:19 1 10 2019-11-30 18:50:19 2 3 2019-11-30 19:00:19 1 11 2019-11-30 19:00:19 2 2 2019-11-30 19:25:19 1 17 2019-11-30 19:30:19 1 16 2019-11-30 19:40:19 1 16 2019-11-30 19:40:19 2 2 2019-11-30 19:45:19 1 17 2019-11-30 19:45:19 2 3 2019-11-30 20:05:19 1 23 2019-11-30 20:05:19 2 2 2019-11-30 20:30:19 1 23 2019-11-30 20:30:19 2 1 2019-11-30 20:40:19 1 22 2019-11-30 20:40:19 2 1 2019-11-30 20:50:19 1 20 2019-11-30 20:50:19 2 1 2019-11-30 21:20:19 1 20 2019-11-30 21:20:19 2 1 2019-11-30 21:35:19 1 19 2019-11-30 21:35:19 2 1 2019-11-30 21:40:19 1 18 2019-11-30 21:40:19 2 1 2019-11-30 22:10:19 1 16 2019-11-30 22:10:19 2 1 2019-11-30 22:30:19 1 16 2019-11-30 22:30:19 2 1 2019-11-30 22:35:19 1 13 2019-11-30 22:35:19 2 1 2019-11-30 22:45:19 1 11 2019-11-30 22:45:19 2 2 2019-11-30 23:05:19 1 16 2019-11-30 23:05:19 2 3 2019-11-30 23:15:19 1 15 2019-11-30 23:15:19 2 2 2019-11-30 23:20:19 1 12 2019-11-30 23:20:19 2 2 2019-12-01 00:05:19 1 12 2019-12-01 00:05:19 2 1 2019-12-01 00:10:19 1 12 2019-12-01 00:10:19 2 1 2019-12-01 00:20:19 1 11 2019-12-01 00:20:19 2 2 2019-12-01 00:45:19 1 10 2019-12-01 00:45:19 2 1 2019-12-01 01:00:19 1 9 2019-12-01 01:00:19 2 1 2019-12-01 01:10:19 1 10 2019-12-01 01:10:19 2 1 2019-12-01 01:15:19 1 9 2019-12-01 01:15:19 2 1 2019-12-01 01:25:19 1 9 2019-12-01 01:25:19 2 1 2019-12-01 01:45:19 1 8 2019-12-01 01:45:19 2 1 2019-12-01 02:05:19 1 7 2019-12-01 02:10:19 1 6 2019-12-01 02:25:19 1 5 2019-12-01 02:35:19 1 4 2019-12-01 03:00:19 1 5 2019-12-01 03:25:19 1 5 2019-12-01 03:40:19 1 5 2019-12-01 03:50:19 1 5 2019-12-01 04:00:19 1 5 2019-12-01 04:05:19 1 5 2019-12-01 04:15:19 1 5 2019-12-01 04:35:19 1 5 2019-12-01 04:45:19 1 6 2019-12-01 04:55:19 1 6 2019-12-01 05:35:19 1 5 2019-12-01 05:40:19 1 6 2019-12-01 05:50:19 1 5 2019-12-01 05:55:19 1 5 2019-12-01 06:15:19 1 8 2019-12-01 06:30:19 1 6 2019-12-01 06:30:19 2 1 2019-12-01 06:35:19 1 7 2019-12-01 06:35:19 2 1 2019-12-01 06:45:19 1 8 2019-12-01 06:45:19 2 1 2019-12-01 06:50:19 1 7 2019-12-01 06:50:19 2 1 2019-12-01 07:25:19 1 8 2019-12-01 07:35:19 1 7 2019-12-01 08:00:19 2 1 2019-12-01 08:05:19 1 8 2019-12-01 08:05:19 2 1 2019-12-01 08:10:19 1 10 2019-12-01 08:15:19 1 10 2019-12-01 08:15:19 2 1 2019-12-01 08:20:19 1 8 2019-12-01 08:20:19 2 1 2019-12-01 08:25:19 1 9 2019-12-01 08:25:19 2 1 2019-12-01 08:30:19 1 8 2019-12-01 08:30:19 2 1 2019-12-01 08:35:19 1 8 2019-12-01 08:35:19 2 1 2019-12-01 08:40:19 1 6 2019-11-30 05:25:19 1 7 2019-11-30 05:30:19 1 6 2019-11-30 05:35:19 1 6 2019-11-30 05:40:19 1 7 2019-11-30 05:45:19 1 7 2019-11-30 05:55:19 1 8 2019-11-30 06:15:19 1 7 2019-11-30 06:15:19 2 1 2019-11-30 06:30:19 1 9 2019-11-30 06:45:19 1 7 2019-11-30 06:50:19 1 9 2019-11-30 07:00:19 1 8 2019-11-30 07:05:19 1 7 2019-11-30 07:10:19 1 7 2019-11-30 07:15:19 1 6 2019-11-30 07:35:19 1 8 2019-11-30 07:40:19 1 8 2019-11-30 07:50:19 1 7 2019-11-30 07:55:19 1 8 2019-11-30 08:05:19 1 8 2019-11-30 08:10:19 1 7 2019-11-30 08:15:19 1 9 2019-11-30 08:30:19 1 10 2019-11-30 08:35:19 1 10 2019-11-30 09:10:19 1 8 2019-11-30 09:10:19 2 1 2019-11-30 09:15:19 1 9 2019-11-30 09:15:19 2 1 2019-11-30 09:40:19 1 12 2019-11-30 09:40:19 2 1 2019-11-30 09:45:19 1 11 2019-11-30 09:45:19 2 2 2019-11-30 10:05:19 1 11 2019-11-30 10:05:19 2 2 2019-11-30 10:25:19 1 11 2019-11-30 10:25:19 2 2 2019-11-30 10:30:19 1 11 2019-11-30 10:30:19 2 2 2019-11-30 10:35:19 1 11 2019-11-30 10:35:19 2 2 2019-11-30 10:45:19 1 12 2019-11-30 10:45:19 2 2 2019-11-30 11:00:19 1 15 2019-11-30 11:00:19 2 2 2019-11-30 11:10:19 1 13 2019-11-30 11:10:19 2 2 2019-11-30 11:20:19 1 14 2019-11-30 11:20:19 2 1 2019-11-30 11:25:19 1 14 2019-11-30 11:25:19 2 1 2019-11-30 11:35:19 1 11 2019-11-30 11:35:19 2 1 2019-11-30 11:40:19 1 14 2019-11-30 11:40:19 2 1 2019-11-30 11:45:19 1 13 2019-11-30 11:45:19 2 1 2019-11-30 12:00:19 1 12 2019-11-30 12:00:19 2 1 2019-11-30 12:10:19 1 14 2019-11-30 12:10:19 2 1 2019-11-30 12:50:19 1 12 2019-11-30 12:50:19 2 2 2019-11-30 13:20:19 1 14 2019-11-30 13:20:19 2 1 2019-11-30 13:35:19 1 15 2019-11-30 13:35:19 2 1 2019-11-30 13:45:19 1 16 2019-11-30 13:45:19 2 1 2019-11-30 14:10:19 1 14 2019-11-30 14:10:19 2 2 2019-11-30 14:35:19 1 15 2019-11-30 14:35:19 2 2 2019-11-30 14:40:19 1 15 2019-11-30 14:40:19 2 2 2019-11-30 14:45:19 1 17 2019-11-30 14:45:19 2 2 2019-11-30 15:00:19 1 11 2019-11-30 15:00:19 2 2 2019-11-30 15:10:20 1 13 2019-11-30 15:10:20 2 2 2019-11-30 15:25:19 1 14 2019-11-30 15:25:19 2 1 2019-11-30 15:35:19 1 14 2019-11-30 15:35:19 2 1 2019-11-30 16:15:19 1 16 2019-11-30 16:35:19 1 14 2019-11-30 17:00:19 1 15 2019-11-30 17:00:19 2 1 2019-11-30 17:20:19 1 12 2019-11-30 17:20:19 2 1 2019-11-30 18:05:19 1 16 2019-11-30 18:35:19 1 16 2019-11-30 18:35:19 2 2 2019-11-30 18:55:19 1 12 2019-11-30 18:55:19 2 3 2019-11-30 19:05:20 1 14 2019-11-30 19:05:20 2 2 2019-11-30 19:15:19 1 14 2019-11-30 19:20:19 1 16 2019-11-30 19:35:19 1 15 2019-11-30 19:35:19 2 1 2019-11-30 19:55:19 1 16 2019-11-30 19:55:19 2 2 2019-11-30 20:10:19 1 24 2019-11-30 20:10:19 2 2 2019-11-30 20:35:19 1 20 2019-11-30 20:35:19 2 1 2019-11-30 20:45:19 1 20 2019-11-30 20:45:19 2 1 2019-11-30 21:00:19 1 19 2019-11-30 21:00:19 2 1 2019-11-30 21:05:19 1 21 2019-11-30 21:05:19 2 1 2019-11-30 21:30:19 1 19 2019-11-30 21:50:19 1 17 2019-11-30 21:50:19 2 2 2019-11-30 21:55:19 1 17 2019-11-30 21:55:19 2 2 2019-11-30 22:05:19 1 15 2019-11-30 22:05:19 2 1 2019-11-30 22:15:19 1 18 2019-11-30 22:20:19 1 18 2019-11-30 22:20:19 2 1 2019-11-30 22:40:19 1 12 2019-11-30 22:40:19 2 1 2019-11-30 22:50:19 1 13 2019-11-30 22:50:19 2 2 2019-11-30 22:55:19 1 13 2019-11-30 22:55:19 2 2 2019-11-30 23:00:19 1 16 2019-11-30 23:00:19 2 2 2019-11-30 23:25:19 1 12 2019-11-30 23:25:19 2 2 2019-11-30 23:35:19 1 11 2019-11-30 23:35:19 2 2 2019-11-30 23:40:19 1 13 2019-11-30 23:40:19 2 1 2019-11-30 23:45:19 1 14 2019-11-30 23:45:19 2 1 2019-12-01 00:00:19 1 13 2019-12-01 00:00:19 2 1 2019-12-01 00:15:19 1 10 2019-12-01 00:15:19 2 1 2019-12-01 00:25:19 1 10 2019-12-01 00:25:19 2 1 2019-12-01 00:35:19 1 9 2019-12-01 00:35:19 2 1 2019-12-01 00:50:19 1 10 2019-12-01 00:50:19 2 1 2019-12-01 01:20:19 1 9 2019-12-01 01:20:19 2 1 2019-12-01 01:50:19 1 7 2019-12-01 01:50:19 2 1 2019-12-01 02:00:19 1 7 2019-12-01 02:00:19 2 1 2019-12-01 02:15:19 1 6 2019-12-01 02:45:19 1 5 2019-12-01 03:05:19 1 6 2019-12-01 03:10:19 1 6 2019-12-01 03:15:19 1 7 2019-12-01 03:20:19 1 5 2019-12-01 03:30:19 1 5 2019-12-01 03:35:20 1 5 2019-12-01 03:45:19 1 5 2019-12-01 03:55:19 1 5 2019-12-01 04:10:19 1 5 2019-12-01 04:20:19 1 5 2019-12-01 04:40:19 1 6 2019-12-01 05:00:19 1 6 2019-12-01 05:05:19 1 7 2019-12-01 05:10:19 1 5 2019-12-01 05:45:19 1 5 2019-12-01 06:00:19 1 5 2019-12-01 06:10:19 1 5 2019-12-01 06:20:19 1 6 2019-12-01 06:40:19 1 8 2019-12-01 06:40:19 2 1 2019-12-01 07:00:19 1 6 2019-12-01 07:00:19 2 1 2019-12-01 07:05:19 1 5 2019-12-01 07:20:19 1 7 2019-12-01 07:40:19 1 9 2019-12-01 07:45:19 1 7 2019-12-01 07:50:19 1 7 2019-12-01 08:00:19 1 7 2019-11-30 06:00:19 1 8 2019-11-30 06:05:19 1 6 2019-11-30 06:05:19 2 1 2019-11-30 06:10:19 1 7 2019-11-30 06:35:19 1 7 2019-11-30 06:40:19 1 6 2019-11-30 07:30:19 1 5 2019-11-30 08:00:19 1 7 2019-11-30 08:20:19 1 11 2019-11-30 08:40:19 1 7 2019-11-30 09:00:19 1 8 2019-11-30 09:00:19 2 1 2019-11-30 09:20:19 1 7 2019-11-30 09:20:19 2 1 2019-11-30 09:25:19 1 7 2019-11-30 09:25:19 2 1 2019-11-30 09:35:19 1 11 2019-11-30 09:35:19 2 1 2019-11-30 09:50:19 1 11 2019-11-30 09:50:19 2 2 2019-11-30 09:55:19 1 11 2019-11-30 09:55:19 2 2 2019-11-30 10:00:19 1 13 2019-11-30 10:00:19 2 2 2019-11-30 10:40:19 1 11 2019-11-30 10:40:19 2 2 2019-11-30 11:05:19 1 12 2019-11-30 11:05:19 2 2 2019-11-30 11:15:19 1 13 2019-11-30 11:15:19 2 1 2019-11-30 11:55:19 1 13 2019-11-30 11:55:19 2 1 2019-11-30 12:20:19 1 15 2019-11-30 12:20:19 2 2 2019-11-30 12:35:19 1 12 2019-11-30 12:35:19 2 2 2019-11-30 12:40:19 1 11 2019-11-30 12:40:19 2 3 2019-11-30 12:45:19 1 11 2019-11-30 12:45:19 2 2 2019-11-30 12:55:19 1 11 2019-11-30 12:55:19 2 1 2019-11-30 13:05:19 1 10 2019-11-30 13:05:19 2 1 2019-11-30 13:15:19 1 11 2019-11-30 13:15:19 2 1 2019-11-30 13:40:19 1 14 2019-11-30 13:40:19 2 1 2019-11-30 14:00:19 1 13 2019-11-30 14:00:19 2 2 2019-11-30 14:05:19 1 15 2019-11-30 14:05:19 2 2 2019-11-30 14:20:19 1 16 2019-11-30 14:20:19 2 3 2019-11-30 14:25:19 1 16 2019-11-30 14:25:19 2 3 2019-11-30 14:50:19 1 12 2019-11-30 14:50:19 2 2 2019-11-30 14:55:19 1 12 2019-11-30 14:55:19 2 2 2019-11-30 15:15:19 1 12 2019-11-30 15:15:19 2 2 2019-11-30 15:20:19 1 14 2019-11-30 15:20:19 2 2 2019-11-30 15:30:19 1 14 2019-11-30 15:30:19 2 1 2019-11-30 15:40:19 1 15 2019-11-30 15:40:19 2 1 2019-11-30 15:55:19 1 16 2019-11-30 16:05:19 1 14 2019-11-30 16:10:19 1 13 2019-11-30 16:55:19 1 16 2019-11-30 16:55:19 2 1 2019-11-30 17:10:19 1 14 2019-11-30 17:10:19 2 1 2019-11-30 17:15:19 1 13 2019-11-30 17:15:19 2 1 2019-11-30 17:25:19 1 17 2019-11-30 17:25:19 2 1 2019-11-30 17:40:19 1 15 2019-11-30 17:50:19 1 18 2019-11-30 17:55:19 1 17 2019-11-30 18:15:19 1 12 2019-11-30 18:15:19 2 1 2019-11-30 18:20:19 1 13 2019-11-30 18:20:19 2 2 2019-11-30 18:25:19 1 13 2019-11-30 18:25:19 2 2 2019-11-30 18:30:19 1 13 2019-11-30 18:30:19 2 2 2019-11-30 19:10:19 1 14 2019-11-30 19:10:19 2 1 2019-11-30 19:50:19 1 17 2019-11-30 19:50:19 2 3 2019-11-30 20:00:19 1 18 2019-11-30 20:00:19 2 2 2019-11-30 20:15:19 1 20 2019-11-30 20:15:19 2 1 2019-11-30 20:20:19 1 20 2019-11-30 20:20:19 2 1 2019-11-30 20:25:19 1 21 2019-11-30 20:25:19 2 1 2019-11-30 20:55:19 1 21 2019-11-30 20:55:19 2 1 2019-11-30 21:10:19 1 20 2019-11-30 21:10:19 2 1 2019-11-30 21:15:19 1 21 2019-11-30 21:15:19 2 1 2019-11-30 21:25:19 1 20 2019-11-30 21:45:19 1 20 2019-11-30 21:45:19 2 1 2019-11-30 22:00:19 1 15 2019-11-30 22:00:19 2 1 2019-11-30 22:25:19 1 15 2019-11-30 22:25:19 2 1 2019-11-30 23:10:19 1 16 2019-11-30 23:10:19 2 3 2019-11-30 23:30:19 1 11 2019-11-30 23:30:19 2 2 2019-11-30 23:50:19 1 14 2019-11-30 23:50:19 2 1 2019-11-30 23:55:19 1 15 2019-11-30 23:55:19 2 1 2019-12-01 00:30:19 1 9 2019-12-01 00:30:19 2 1 2019-12-01 00:40:19 1 10 2019-12-01 00:40:19 2 1 2019-12-01 00:55:19 1 9 2019-12-01 00:55:19 2 1 2019-12-01 01:05:19 1 10 2019-12-01 01:05:19 2 1 2019-12-01 01:30:19 1 8 2019-12-01 01:30:19 2 1 2019-12-01 01:35:19 1 8 2019-12-01 01:35:19 2 1 2019-12-01 01:40:19 1 8 2019-12-01 01:40:19 2 1 2019-12-01 01:55:19 1 6 2019-12-01 01:55:19 2 1 2019-12-01 02:20:19 1 6 2019-12-01 02:30:19 1 4 2019-12-01 02:40:19 1 4 2019-12-01 02:50:19 1 6 2019-12-01 02:55:19 1 5 2019-12-01 04:25:19 1 5 2019-12-01 04:30:19 1 5 2019-12-01 04:50:19 1 6 2019-12-01 05:15:19 1 5 2019-12-01 05:20:19 1 5 2019-12-01 05:25:20 1 7 2019-12-01 05:30:19 1 5 2019-12-01 06:05:19 1 6 2019-12-01 06:25:19 1 6 2019-12-01 06:25:19 2 1 2019-12-01 06:55:19 1 7 2019-12-01 06:55:19 2 1 2019-12-01 07:10:19 1 6 2019-12-01 07:15:19 1 6 2019-12-01 07:30:19 1 8 2019-12-01 07:55:19 1 5 2019-12-01 08:40:19 2 1 2019-12-01 08:45:19 1 9 2019-12-01 08:50:19 1 9 2019-12-01 08:55:19 1 9 2019-12-01 08:55:19 2 1 2019-12-01 09:00:19 1 9 2019-12-01 09:05:19 1 9 2019-12-01 09:10:19 1 13 2019-12-01 09:15:19 1 13 2019-12-01 09:20:19 1 13 2019-12-01 09:25:19 1 11 2019-12-01 09:30:19 1 10 2019-12-01 09:35:19 1 10 2019-12-01 09:40:19 1 12 2019-12-01 09:45:19 1 11 2019-12-01 09:50:19 1 12 2019-12-01 09:50:19 2 1 2019-12-01 09:55:19 1 13 2019-12-01 09:55:19 2 2 2019-12-01 10:00:19 1 13 2019-12-01 10:00:19 2 2 2019-12-01 10:05:20 1 12 2019-12-01 10:05:20 2 2 2019-12-01 10:10:19 1 12 2019-12-01 10:10:19 2 2 2019-12-01 10:15:19 1 11 2019-12-01 10:40:19 1 11 2019-12-01 11:50:19 1 14 2019-12-01 11:50:19 2 2 2019-12-01 12:00:19 1 15 2019-12-01 12:00:19 2 1 2019-12-01 12:15:19 1 14 2019-12-01 12:15:19 2 2 2019-12-01 12:30:19 1 12 2019-12-01 12:30:19 2 2 2019-12-01 12:40:19 1 14 2019-12-01 12:40:19 2 4 2019-12-01 13:20:19 1 16 2019-12-01 13:20:19 2 2 2019-12-01 13:30:19 1 12 2019-12-01 13:30:19 2 2 2019-12-01 14:00:19 1 12 2019-12-01 14:00:19 2 2 2019-12-01 14:05:19 1 13 2019-12-01 14:05:19 2 1 2019-12-01 14:10:19 1 11 2019-12-01 14:10:19 2 1 2019-12-01 14:15:19 1 11 2019-12-01 14:15:19 2 2 2019-12-01 14:35:19 1 12 2019-12-01 14:35:19 2 3 2019-12-01 14:40:19 1 13 2019-12-01 14:40:19 2 3 2019-12-01 15:00:19 1 15 2019-12-01 15:00:19 2 2 2019-12-01 15:25:19 1 14 2019-12-01 15:25:19 2 1 2019-12-01 15:50:19 1 11 2019-12-01 15:50:19 2 1 2019-12-01 15:55:19 1 10 2019-12-01 15:55:19 2 2 2019-12-01 16:15:19 1 11 2019-12-01 16:15:19 2 2 2019-12-01 16:25:19 1 12 2019-12-01 16:25:19 2 2 2019-12-01 16:30:19 1 14 2019-12-01 16:30:19 2 2 2019-12-01 16:45:19 1 12 2019-12-01 16:45:19 2 3 2019-12-01 16:50:20 1 14 2019-12-01 16:50:20 2 3 2019-12-01 16:55:19 1 14 2019-12-01 16:55:19 2 3 2019-12-01 17:35:19 1 13 2019-12-01 17:35:19 2 2 2019-12-01 17:40:19 1 11 2019-12-01 17:40:19 2 2 2019-12-01 17:55:19 1 14 2019-12-01 17:55:19 2 1 2019-12-01 18:00:19 1 12 2019-12-01 18:00:19 2 1 2019-12-01 18:10:19 1 9 2019-12-01 18:10:19 2 1 2019-12-01 18:20:19 1 12 2019-12-01 18:25:19 1 15 2019-12-01 18:45:19 1 13 2019-12-01 19:05:19 1 14 2019-12-01 19:15:19 1 17 2019-12-01 19:15:19 2 1 2019-12-01 19:45:19 1 19 2019-12-01 19:45:19 2 2 2019-12-01 20:45:19 1 17 2019-12-01 20:45:19 2 1 2019-12-01 20:55:19 1 15 2019-12-01 20:55:19 2 1 2019-12-01 21:00:19 1 15 2019-12-01 21:00:19 2 1 2019-12-01 21:15:19 1 15 2019-12-01 21:15:19 2 1 2019-12-01 21:20:19 1 16 2019-12-01 21:20:19 2 1 2019-12-01 21:45:19 1 17 2019-12-01 21:45:19 2 2 2019-12-01 21:50:19 1 18 2019-12-01 21:50:19 2 2 2019-12-01 22:05:19 1 18 2019-12-01 22:05:19 2 2 2019-12-01 22:10:19 1 18 2019-12-01 22:10:19 2 3 2019-12-01 22:20:19 1 19 2019-12-01 22:20:19 2 2 2019-12-01 22:25:19 1 16 2019-12-01 22:25:19 2 2 2019-12-01 22:30:20 1 18 2019-12-01 22:30:20 2 2 2019-12-01 22:35:19 1 19 2019-12-01 22:35:19 2 3 2019-12-01 22:40:19 1 16 2019-12-01 22:40:19 2 4 2019-12-01 22:55:19 1 16 2019-12-01 22:55:19 2 2 2019-12-01 23:00:19 1 14 2019-12-01 23:00:19 2 2 2019-12-01 23:55:19 1 14 2019-12-01 23:55:19 2 1 2019-12-02 00:30:19 1 9 2019-12-02 00:30:19 2 2 2019-12-02 00:35:19 1 9 2019-12-02 00:35:19 2 1 2019-12-02 00:45:19 1 11 2019-12-02 00:45:19 2 1 2019-12-02 01:00:19 1 12 2019-12-02 01:00:19 2 1 2019-12-02 01:05:19 1 11 2019-12-02 01:05:19 2 1 2019-12-02 01:10:19 1 11 2019-12-02 01:10:19 2 1 2019-12-02 01:15:19 1 12 2019-12-02 01:15:19 2 1 2019-12-02 01:45:19 1 9 2019-12-02 01:45:19 2 1 2019-12-02 01:55:19 1 7 2019-12-02 01:55:19 2 1 2019-12-02 02:35:19 1 5 2019-12-02 02:35:19 2 1 2019-12-02 02:40:19 1 6 2019-12-02 02:40:19 2 1 2019-12-02 02:50:19 1 6 2019-12-02 02:50:19 2 1 2019-12-02 02:55:19 1 6 2019-12-02 02:55:19 2 1 2019-12-02 03:15:19 1 7 2019-12-02 03:15:19 2 1 2019-12-02 03:20:19 1 6 2019-12-02 03:20:19 2 1 2019-12-02 03:40:19 1 5 2019-12-02 03:40:19 2 1 2019-12-02 03:55:19 1 6 2019-12-02 03:55:19 2 1 2019-12-02 04:05:19 1 6 2019-12-02 04:05:19 2 1 2019-12-02 04:10:19 1 6 2019-12-02 04:10:19 2 1 2019-12-02 04:30:19 1 6 2019-12-02 04:30:19 2 1 2019-12-02 04:50:19 1 7 2019-12-02 04:50:19 2 1 2019-12-02 04:55:19 1 8 2019-12-02 04:55:19 2 1 2019-12-02 05:20:19 1 6 2019-12-02 05:20:19 2 1 2019-12-02 05:25:19 1 6 2019-12-02 05:25:19 2 1 2019-12-02 05:45:19 1 7 2019-12-02 05:45:19 2 1 2019-12-02 06:05:19 1 9 2019-12-02 06:05:19 2 1 2019-12-02 06:10:19 1 9 2019-12-02 06:10:19 2 1 2019-12-02 06:45:19 1 8 2019-12-02 06:45:19 2 1 2019-12-02 07:00:19 1 8 2019-12-02 07:00:19 2 1 2019-12-02 07:05:19 1 9 2019-12-02 07:05:19 2 1 2019-12-02 07:15:19 1 8 2019-12-02 07:15:19 2 1 2019-12-02 07:25:19 1 8 2019-12-02 07:50:19 1 9 2019-12-02 07:55:19 1 8 2019-12-02 07:55:19 2 2 2019-12-02 08:05:19 1 9 2019-12-02 08:05:19 2 2 2019-12-02 08:10:19 1 8 2019-12-02 08:10:19 2 2 2019-12-02 08:15:19 1 8 2019-12-02 08:15:19 2 2 2019-12-02 08:20:19 1 8 2019-12-02 08:20:19 2 1 2019-12-02 08:45:19 1 10 2019-12-02 08:45:19 2 1 2019-12-02 08:50:19 1 10 2019-12-02 08:50:19 2 1 2019-12-02 09:10:19 1 9 2019-12-02 09:15:19 1 10 2019-12-02 09:35:19 1 13 2019-12-02 09:35:19 2 1 2019-12-02 09:55:19 1 15 2019-12-02 09:55:19 2 2 2019-12-02 10:20:19 1 12 2019-12-01 10:20:19 1 12 2019-12-01 10:20:19 2 1 2019-12-01 10:25:19 1 11 2019-12-01 10:35:19 1 12 2019-12-01 10:45:19 1 12 2019-12-01 10:50:19 1 11 2019-12-01 10:55:19 1 12 2019-12-01 11:00:19 1 9 2019-12-01 11:15:19 1 11 2019-12-01 11:20:19 1 11 2019-12-01 11:25:19 1 11 2019-12-01 11:30:19 1 13 2019-12-01 11:40:19 1 15 2019-12-01 11:40:19 2 1 2019-12-01 12:05:19 1 12 2019-12-01 12:05:19 2 2 2019-12-01 12:20:20 1 14 2019-12-01 12:20:20 2 2 2019-12-01 12:25:19 1 13 2019-12-01 12:25:19 2 2 2019-12-01 12:35:19 1 13 2019-12-01 12:35:19 2 3 2019-12-01 12:50:19 1 13 2019-12-01 12:50:19 2 3 2019-12-01 13:00:20 1 12 2019-12-01 13:00:20 2 2 2019-12-01 13:05:19 1 12 2019-12-01 13:05:19 2 2 2019-12-01 13:35:19 1 13 2019-12-01 13:35:19 2 2 2019-12-01 13:40:19 1 14 2019-12-01 13:40:19 2 1 2019-12-01 13:50:19 1 15 2019-12-01 13:50:19 2 1 2019-12-01 14:30:19 1 14 2019-12-01 14:30:19 2 3 2019-12-01 15:05:19 1 15 2019-12-01 15:05:19 2 2 2019-12-01 15:10:19 1 15 2019-12-01 15:10:19 2 1 2019-12-01 15:20:19 1 15 2019-12-01 15:20:19 2 1 2019-12-01 15:45:19 1 11 2019-12-01 15:45:19 2 1 2019-12-01 16:05:19 1 11 2019-12-01 16:05:19 2 2 2019-12-01 16:10:19 1 11 2019-12-01 16:10:19 2 2 2019-12-01 16:20:19 1 10 2019-12-01 16:20:19 2 2 2019-12-01 16:35:19 1 12 2019-12-01 16:35:19 2 2 2019-12-01 17:00:19 1 15 2019-12-01 17:00:19 2 3 2019-12-01 17:05:19 1 13 2019-12-01 17:05:19 2 3 2019-12-01 17:15:19 1 13 2019-12-01 17:15:19 2 3 2019-12-01 17:25:19 1 15 2019-12-01 17:25:19 2 3 2019-12-01 17:45:19 1 14 2019-12-01 17:45:19 2 2 2019-12-01 17:50:19 1 14 2019-12-01 17:50:19 2 2 2019-12-01 18:30:19 1 14 2019-12-01 19:25:19 1 20 2019-12-01 19:25:19 2 1 2019-12-01 19:30:19 1 18 2019-12-01 19:30:19 2 1 2019-12-01 20:05:19 1 17 2019-12-01 20:05:19 2 1 2019-12-01 20:10:19 1 14 2019-12-01 20:10:19 2 1 2019-12-01 20:25:19 1 16 2019-12-01 20:25:19 2 1 2019-12-01 20:30:19 1 14 2019-12-01 20:30:19 2 1 2019-12-01 20:35:19 1 16 2019-12-01 20:35:19 2 1 2019-12-01 20:40:19 1 17 2019-12-01 20:40:19 2 1 2019-12-01 20:50:19 1 16 2019-12-01 20:50:19 2 1 2019-12-01 21:10:19 1 16 2019-12-01 21:10:19 2 2 2019-12-01 21:25:19 1 18 2019-12-01 21:25:19 2 1 2019-12-01 21:40:19 1 17 2019-12-01 21:40:19 2 1 2019-12-01 23:05:19 1 12 2019-12-01 23:05:19 2 2 2019-12-01 23:15:19 1 15 2019-12-01 23:15:19 2 2 2019-12-01 23:40:19 1 17 2019-12-01 23:40:19 2 1 2019-12-01 23:45:19 1 17 2019-12-01 23:45:19 2 1 2019-12-01 23:50:19 1 17 2019-12-01 23:50:19 2 1 2019-12-02 00:00:19 1 12 2019-12-02 00:00:19 2 2 2019-12-02 00:10:19 1 13 2019-12-02 00:10:19 2 2 2019-12-02 00:25:19 1 10 2019-12-02 00:25:19 2 2 2019-12-02 00:50:19 1 11 2019-12-02 00:50:19 2 1 2019-12-02 01:25:19 1 9 2019-12-02 01:25:19 2 1 2019-12-02 01:40:19 1 8 2019-12-02 01:40:19 2 1 2019-12-02 01:50:19 1 8 2019-12-02 01:50:19 2 1 2019-12-02 02:05:19 1 6 2019-12-02 02:05:19 2 1 2019-12-02 02:10:19 1 6 2019-12-02 02:10:19 2 1 2019-12-02 02:20:19 1 6 2019-12-02 02:20:19 2 1 2019-12-02 02:25:19 1 6 2019-12-02 02:25:19 2 1 2019-12-02 02:30:19 1 5 2019-12-02 02:30:19 2 1 2019-12-02 03:00:19 1 6 2019-12-02 03:00:19 2 1 2019-12-02 03:05:19 1 6 2019-12-02 03:05:19 2 1 2019-12-02 03:10:19 1 7 2019-12-02 03:10:19 2 1 2019-12-02 03:35:19 1 6 2019-12-02 03:35:19 2 1 2019-12-02 03:45:19 1 6 2019-12-02 03:45:19 2 1 2019-12-02 04:00:19 1 6 2019-12-02 04:00:19 2 1 2019-12-02 04:15:19 1 6 2019-12-02 04:15:19 2 1 2019-12-02 04:20:19 1 6 2019-12-02 04:20:19 2 1 2019-12-02 04:45:19 1 8 2019-12-02 04:45:19 2 1 2019-12-02 05:05:19 1 6 2019-12-02 05:05:19 2 1 2019-12-02 05:30:19 1 6 2019-12-02 05:30:19 2 1 2019-12-02 05:50:19 1 7 2019-12-02 05:50:19 2 1 2019-12-02 05:55:19 1 9 2019-12-02 05:55:19 2 1 2019-12-02 06:00:19 1 9 2019-12-02 06:00:19 2 1 2019-12-02 06:15:19 1 6 2019-12-02 06:15:19 2 1 2019-12-02 06:20:19 1 6 2019-12-02 06:20:19 2 1 2019-12-02 06:30:19 1 6 2019-12-02 06:30:19 2 1 2019-12-02 07:10:19 1 7 2019-12-02 07:10:19 2 1 2019-12-02 08:35:19 1 11 2019-12-02 08:35:19 2 2 2019-12-02 08:55:19 1 9 2019-12-02 08:55:19 2 1 2019-12-02 09:05:19 1 9 2019-12-02 09:25:19 1 10 2019-12-02 09:25:19 2 1 2019-12-02 09:30:19 1 11 2019-12-02 09:30:19 2 1 2019-12-02 10:05:19 1 12 2019-12-02 10:05:19 2 1 2019-12-02 10:15:19 1 11 2019-12-02 10:15:19 2 1 2019-12-02 10:20:19 2 1 2019-12-02 10:25:19 1 13 2019-12-02 10:25:19 2 1 2019-12-02 10:30:19 1 12 2019-12-02 10:30:19 2 2 2019-12-02 10:35:19 1 12 2019-12-02 10:35:19 2 2 2019-12-02 10:40:19 1 14 2019-12-02 10:40:19 2 2 2019-12-02 10:45:19 1 15 2019-12-02 10:45:19 2 2 2019-12-02 10:50:19 1 13 2019-12-02 10:50:19 2 1 2019-12-01 10:30:19 1 12 2019-12-01 10:30:19 2 1 2019-12-01 11:05:19 1 10 2019-12-01 11:10:19 1 10 2019-12-01 11:35:19 1 14 2019-12-01 11:45:19 1 14 2019-12-01 11:45:19 2 1 2019-12-01 11:55:19 1 14 2019-12-01 11:55:19 2 1 2019-12-01 12:10:19 1 17 2019-12-01 12:10:19 2 2 2019-12-01 12:45:19 1 17 2019-12-01 12:45:19 2 4 2019-12-01 12:55:19 1 14 2019-12-01 12:55:19 2 3 2019-12-01 13:10:19 1 12 2019-12-01 13:10:19 2 2 2019-12-01 13:15:19 1 11 2019-12-01 13:15:19 2 2 2019-12-01 13:25:19 1 14 2019-12-01 13:25:19 2 2 2019-12-01 13:45:19 1 13 2019-12-01 13:45:19 2 1 2019-12-01 13:55:19 1 13 2019-12-01 13:55:19 2 1 2019-12-01 14:20:19 1 14 2019-12-01 14:20:19 2 2 2019-12-01 14:25:19 1 10 2019-12-01 14:25:19 2 2 2019-12-01 14:45:19 1 13 2019-12-01 14:45:19 2 3 2019-12-01 14:50:19 1 14 2019-12-01 14:50:19 2 2 2019-12-01 14:55:19 1 14 2019-12-01 14:55:19 2 2 2019-12-01 15:15:19 1 14 2019-12-01 15:15:19 2 1 2019-12-01 15:30:19 1 15 2019-12-01 15:35:19 1 15 2019-12-01 15:35:19 2 1 2019-12-01 15:40:19 1 13 2019-12-01 15:40:19 2 1 2019-12-01 16:00:19 1 9 2019-12-01 16:00:19 2 2 2019-12-01 16:40:19 1 12 2019-12-01 16:40:19 2 3 2019-12-01 17:10:19 1 13 2019-12-01 17:10:19 2 4 2019-12-01 17:20:19 1 15 2019-12-01 17:20:19 2 3 2019-12-01 17:30:19 1 12 2019-12-01 17:30:19 2 3 2019-12-01 18:05:19 1 10 2019-12-01 18:05:19 2 1 2019-12-01 18:15:19 1 9 2019-12-01 18:15:19 2 1 2019-12-01 18:35:19 1 17 2019-12-01 18:40:19 1 11 2019-12-01 18:50:19 1 14 2019-12-01 18:55:19 1 14 2019-12-01 19:00:19 1 13 2019-12-01 19:10:19 1 15 2019-12-01 19:10:19 2 1 2019-12-01 19:20:19 1 15 2019-12-01 19:20:19 2 1 2019-12-01 19:35:19 1 17 2019-12-01 19:35:19 2 2 2019-12-01 19:40:19 1 18 2019-12-01 19:40:19 2 2 2019-12-01 19:50:19 1 18 2019-12-01 19:50:19 2 1 2019-12-01 19:55:19 1 18 2019-12-01 19:55:19 2 1 2019-12-01 20:00:19 1 18 2019-12-01 20:00:19 2 1 2019-12-01 20:15:19 1 14 2019-12-01 20:15:19 2 1 2019-12-01 20:20:19 1 16 2019-12-01 20:20:19 2 1 2019-12-01 21:05:19 1 13 2019-12-01 21:05:19 2 2 2019-12-01 21:30:19 1 18 2019-12-01 21:30:19 2 1 2019-12-01 21:35:19 1 19 2019-12-01 21:35:19 2 1 2019-12-01 21:55:19 1 18 2019-12-01 21:55:19 2 2 2019-12-01 22:00:19 1 18 2019-12-01 22:00:19 2 2 2019-12-01 22:15:19 1 18 2019-12-01 22:15:19 2 2 2019-12-01 22:45:19 1 18 2019-12-01 22:45:19 2 4 2019-12-01 22:50:19 1 16 2019-12-01 22:50:19 2 2 2019-12-01 23:10:19 1 16 2019-12-01 23:10:19 2 2 2019-12-01 23:20:19 1 16 2019-12-01 23:20:19 2 2 2019-12-01 23:25:19 1 16 2019-12-01 23:25:19 2 2 2019-12-01 23:30:19 1 17 2019-12-01 23:30:19 2 1 2019-12-01 23:35:19 1 16 2019-12-01 23:35:19 2 1 2019-12-02 00:05:19 1 14 2019-12-02 00:05:19 2 2 2019-12-02 00:15:19 1 12 2019-12-02 00:15:19 2 3 2019-12-02 00:20:19 1 11 2019-12-02 00:20:19 2 2 2019-12-02 00:40:19 1 10 2019-12-02 00:40:19 2 1 2019-12-02 00:55:19 1 11 2019-12-02 00:55:19 2 1 2019-12-02 01:20:19 1 10 2019-12-02 01:20:19 2 1 2019-12-02 01:30:19 1 8 2019-12-02 01:30:19 2 1 2019-12-02 01:35:19 1 8 2019-12-02 01:35:19 2 1 2019-12-02 02:00:19 1 7 2019-12-02 02:00:19 2 1 2019-12-02 02:15:19 1 6 2019-12-02 02:15:19 2 1 2019-12-02 02:45:19 1 6 2019-12-02 02:45:19 2 1 2019-12-02 03:25:19 1 6 2019-12-02 03:25:19 2 1 2019-12-02 03:30:19 1 6 2019-12-02 03:30:19 2 1 2019-12-02 03:50:19 1 6 2019-12-02 03:50:19 2 1 2019-12-02 04:25:19 1 6 2019-12-02 04:25:19 2 1 2019-12-02 04:35:19 1 6 2019-12-02 04:35:19 2 1 2019-12-02 04:40:19 1 6 2019-12-02 04:40:19 2 1 2019-12-02 05:00:19 1 8 2019-12-02 05:00:19 2 1 2019-12-02 05:10:19 1 6 2019-12-02 05:10:19 2 1 2019-12-02 05:15:19 1 6 2019-12-02 05:15:19 2 1 2019-12-02 05:35:19 1 6 2019-12-02 05:35:19 2 1 2019-12-02 05:40:19 1 6 2019-12-02 05:40:19 2 1 2019-12-02 06:25:19 1 8 2019-12-02 06:25:19 2 1 2019-12-02 06:35:19 1 6 2019-12-02 06:35:19 2 1 2019-12-02 06:40:19 1 7 2019-12-02 06:40:19 2 1 2019-12-02 06:50:19 1 8 2019-12-02 06:50:19 2 1 2019-12-02 06:55:19 1 8 2019-12-02 06:55:19 2 1 2019-12-02 07:20:19 1 10 2019-12-02 07:20:19 2 1 2019-12-02 07:30:19 1 8 2019-12-02 07:35:19 1 9 2019-12-02 07:40:19 1 9 2019-12-02 07:45:19 1 8 2019-12-02 08:00:19 1 8 2019-12-02 08:00:19 2 2 2019-12-02 08:25:19 1 9 2019-12-02 08:25:19 2 2 2019-12-02 08:30:19 1 11 2019-12-02 08:30:19 2 2 2019-12-02 08:40:19 1 11 2019-12-02 09:00:19 1 10 2019-12-02 09:20:19 1 10 2019-12-02 09:20:19 2 1 2019-12-02 09:40:19 1 15 2019-12-02 09:40:19 2 2 2019-12-02 09:45:19 1 15 2019-12-02 09:45:19 2 2 2019-12-02 09:50:20 1 17 2019-12-02 09:50:20 2 3 2019-12-02 10:00:19 1 14 2019-12-02 10:00:19 2 1 2019-12-02 10:10:19 1 11 2019-12-02 10:10:19 2 1 2019-12-02 10:55:19 1 13 2019-12-02 10:55:19 2 1 2019-12-02 11:00:19 1 12 2019-12-02 11:00:19 2 1 2019-12-02 11:10:19 1 14 2019-12-02 11:10:19 2 1 2019-12-02 11:15:19 1 17 2019-12-02 11:15:19 2 1 2019-12-02 11:35:19 1 17 2019-12-02 11:35:19 2 1 2019-12-02 12:10:19 1 17 2019-12-02 12:20:19 1 17 2019-12-02 12:35:19 1 18 2019-12-02 12:40:19 1 19 2019-12-02 12:40:19 2 1 2019-12-02 13:00:19 1 19 2019-12-02 13:00:19 2 1 2019-12-02 13:40:19 1 17 2019-12-02 13:40:19 2 3 2019-12-02 13:45:19 1 18 2019-12-02 13:45:19 2 3 2019-12-02 14:40:19 1 14 2019-12-02 14:40:19 2 1 2019-12-02 14:45:19 1 13 2019-12-02 14:45:19 2 1 2019-12-02 15:10:19 1 16 2019-12-02 15:10:19 2 2 2019-12-02 15:15:19 1 16 2019-12-02 15:15:19 2 2 2019-12-02 15:20:19 1 15 2019-12-02 15:20:19 2 2 2019-12-02 15:35:19 1 15 2019-12-02 15:35:19 2 1 2019-12-02 16:10:19 1 13 2019-12-02 16:25:19 1 17 2019-12-02 16:45:19 1 14 2019-12-02 16:50:19 1 15 2019-12-02 16:55:19 1 11 2019-12-02 17:15:19 1 14 2019-12-02 17:15:19 2 1 2019-12-02 17:20:19 1 13 2019-12-02 17:20:19 2 1 2019-12-02 17:45:19 1 14 2019-12-02 17:45:19 2 1 2019-12-02 17:50:19 1 13 2019-12-02 17:50:19 2 1 2019-12-02 18:15:19 1 15 2019-12-02 18:15:19 2 2 2019-12-02 18:25:19 1 17 2019-12-02 18:25:19 2 2 2019-12-02 18:30:19 1 19 2019-12-02 18:30:19 2 1 2019-12-02 18:50:19 1 14 2019-12-02 18:50:19 2 1 2019-12-02 19:10:19 1 17 2019-12-02 19:10:19 2 1 2019-12-02 19:20:19 1 16 2019-12-02 19:20:19 2 1 2019-12-02 19:35:19 1 18 2019-12-02 19:35:19 2 1 2019-12-02 19:45:19 1 15 2019-12-02 19:45:19 2 1 2019-12-02 19:50:19 1 17 2019-12-02 19:50:19 2 1 2019-12-02 19:55:19 1 19 2019-12-02 19:55:19 2 1 2019-12-02 20:00:19 1 20 2019-12-02 20:00:19 2 1 2019-12-02 20:20:19 1 18 2019-12-02 20:20:19 2 1 2019-12-02 20:25:19 1 19 2019-12-02 20:25:19 2 1 2019-12-02 20:30:19 1 20 2019-12-02 20:30:19 2 1 2019-12-02 20:40:19 1 20 2019-12-02 20:40:19 2 2 2019-12-02 20:50:19 1 22 2019-12-02 20:50:19 2 1 2019-12-02 20:55:19 1 17 2019-12-02 20:55:19 2 1 2019-12-02 21:00:19 1 17 2019-12-02 21:00:19 2 1 2019-12-02 21:10:19 1 17 2019-12-02 21:20:19 1 18 2019-12-02 21:30:19 1 18 2019-12-02 21:50:19 1 21 2019-12-02 21:50:19 2 1 2019-12-02 22:05:19 1 18 2019-12-02 22:05:19 2 1 2019-12-02 22:10:19 1 16 2019-12-02 22:10:19 2 1 2019-12-02 22:15:19 1 14 2019-12-02 22:15:19 2 1 2019-12-02 22:40:19 1 13 2019-12-02 22:40:19 2 1 2019-12-02 22:55:19 1 14 2019-12-02 22:55:19 2 1 2019-12-02 23:05:19 1 16 2019-12-02 23:05:19 2 2 2019-12-02 23:10:19 1 14 2019-12-02 23:10:19 2 1 2019-12-02 23:25:19 1 15 2019-12-02 23:25:19 2 1 2019-12-02 23:30:19 1 16 2019-12-02 23:30:19 2 1 2019-12-02 23:35:19 1 15 2019-12-02 23:35:19 2 1 2019-12-02 23:45:19 1 13 2019-12-02 23:45:19 2 1 2019-12-02 23:55:19 1 14 2019-12-02 23:55:19 2 3 2019-12-03 00:10:19 1 14 2019-12-03 00:10:19 2 2 2019-12-03 00:15:19 1 13 2019-12-03 00:15:19 2 1 2019-12-03 00:55:19 1 10 2019-12-03 00:55:19 2 1 2019-12-03 01:20:19 1 8 2019-12-03 01:20:19 2 1 2019-12-03 01:25:19 1 8 2019-12-03 01:25:19 2 1 2019-12-03 01:35:19 1 7 2019-12-03 01:35:19 2 1 2019-12-03 01:50:19 1 7 2019-12-03 01:50:19 2 1 2019-12-03 01:55:19 1 7 2019-12-03 01:55:19 2 1 2019-12-03 02:00:19 1 7 2019-12-03 02:00:19 2 1 2019-12-03 02:05:19 1 7 2019-12-03 02:05:19 2 1 2019-12-03 02:10:19 1 7 2019-12-03 02:10:19 2 1 2019-12-03 02:15:19 1 7 2019-12-03 02:15:19 2 1 2019-12-03 02:20:19 1 7 2019-12-03 02:20:19 2 1 2019-12-03 02:25:19 1 7 2019-12-03 02:25:19 2 1 2019-12-03 02:30:19 1 7 2019-12-03 02:30:19 2 1 2019-12-03 02:35:19 1 7 2019-12-03 02:35:19 2 1 2019-12-03 02:40:19 1 7 2019-12-03 02:40:19 2 1 2019-12-03 02:45:19 1 7 2019-12-03 02:45:19 2 1 2019-12-03 03:10:19 1 8 2019-12-03 03:10:19 2 1 2019-12-03 03:15:19 1 7 2019-12-03 03:15:19 2 1 2019-12-03 03:20:19 1 7 2019-12-03 03:20:19 2 1 2019-12-03 03:55:19 1 7 2019-12-03 03:55:19 2 1 2019-12-03 04:00:19 1 7 2019-12-03 04:00:19 2 1 2019-12-03 04:05:19 1 7 2019-12-03 04:05:19 2 1 2019-12-03 04:10:19 1 7 2019-12-03 04:10:19 2 1 2019-12-03 04:15:19 1 7 2019-12-03 04:15:19 2 1 2019-12-03 04:20:19 1 7 2019-12-03 04:20:19 2 1 2019-12-03 04:25:19 1 7 2019-12-03 04:25:19 2 1 2019-12-03 04:30:19 1 7 2019-12-03 04:30:19 2 1 2019-12-03 04:35:19 1 7 2019-12-03 04:35:19 2 1 2019-12-03 04:40:19 1 7 2019-12-03 04:40:19 2 1 2019-12-03 04:45:19 1 7 2019-12-03 04:45:19 2 1 2019-12-03 04:50:19 1 7 2019-12-03 04:50:19 2 1 2019-12-03 05:05:19 1 8 2019-12-03 05:05:19 2 1 2019-12-03 05:25:19 1 7 2019-12-03 05:25:19 2 1 2019-12-03 05:35:19 1 7 2019-12-03 05:35:19 2 1 2019-12-03 05:50:19 1 9 2019-12-03 05:50:19 2 1 2019-12-02 11:05:19 1 13 2019-12-02 11:05:19 2 1 2019-12-02 11:25:19 1 15 2019-12-02 11:25:19 2 1 2019-12-02 11:45:19 1 14 2019-12-02 11:45:19 2 1 2019-12-02 11:50:19 1 17 2019-12-02 11:50:19 2 1 2019-12-02 11:55:19 1 18 2019-12-02 11:55:19 2 1 2019-12-02 12:00:19 1 16 2019-12-02 12:25:19 1 17 2019-12-02 12:30:19 1 18 2019-12-02 12:45:19 1 19 2019-12-02 12:45:19 2 1 2019-12-02 12:50:19 1 18 2019-12-02 12:50:19 2 2 2019-12-02 13:10:19 1 18 2019-12-02 13:10:19 2 2 2019-12-02 13:20:19 1 18 2019-12-02 13:20:19 2 2 2019-12-02 13:30:19 1 15 2019-12-02 13:30:19 2 2 2019-12-02 13:35:19 1 16 2019-12-02 13:35:19 2 2 2019-12-02 14:20:19 1 18 2019-12-02 14:30:19 1 18 2019-12-02 14:35:19 1 15 2019-12-02 14:35:19 2 1 2019-12-02 14:50:19 1 15 2019-12-02 14:50:19 2 1 2019-12-02 14:55:19 1 14 2019-12-02 14:55:19 2 1 2019-12-02 15:00:19 1 13 2019-12-02 15:00:19 2 2 2019-12-02 15:30:19 1 14 2019-12-02 15:30:19 2 1 2019-12-02 15:40:19 1 14 2019-12-02 15:50:19 1 13 2019-12-02 16:05:19 1 15 2019-12-02 16:15:19 1 14 2019-12-02 16:20:19 1 14 2019-12-02 16:35:19 1 14 2019-12-02 16:40:19 1 13 2019-12-02 17:35:19 1 12 2019-12-02 17:35:19 2 1 2019-12-02 18:00:19 1 13 2019-12-02 18:00:19 2 1 2019-12-02 18:05:19 1 17 2019-12-02 18:05:19 2 1 2019-12-02 18:10:19 1 18 2019-12-02 18:10:19 2 1 2019-12-02 18:20:19 1 15 2019-12-02 18:20:19 2 2 2019-12-02 19:00:19 1 13 2019-12-02 19:00:19 2 1 2019-12-02 19:30:19 1 20 2019-12-02 19:30:19 2 1 2019-12-02 19:40:19 1 16 2019-12-02 19:40:19 2 1 2019-12-02 20:10:19 1 18 2019-12-02 20:10:19 2 1 2019-12-02 20:15:19 1 16 2019-12-02 20:15:19 2 1 2019-12-02 20:35:19 1 20 2019-12-02 20:35:19 2 1 2019-12-02 20:45:19 1 20 2019-12-02 20:45:19 2 1 2019-12-02 21:05:19 1 17 2019-12-02 21:25:19 1 17 2019-12-02 21:35:19 1 20 2019-12-02 21:45:19 1 20 2019-12-02 21:55:19 1 19 2019-12-02 21:55:19 2 1 2019-12-02 22:00:19 1 18 2019-12-02 22:00:19 2 1 2019-12-02 22:25:19 1 17 2019-12-02 22:25:19 2 1 2019-12-02 22:35:19 1 14 2019-12-02 22:35:19 2 1 2019-12-02 22:45:19 1 12 2019-12-02 22:45:19 2 1 2019-12-03 00:00:19 1 16 2019-12-03 00:00:19 2 2 2019-12-03 00:05:19 1 15 2019-12-03 00:05:19 2 2 2019-12-03 00:25:19 1 14 2019-12-03 00:25:19 2 1 2019-12-03 00:45:19 1 12 2019-12-03 00:45:19 2 1 2019-12-03 01:10:19 1 11 2019-12-03 01:10:19 2 1 2019-12-03 01:30:19 1 8 2019-12-03 01:30:19 2 1 2019-12-03 03:25:19 1 7 2019-12-03 03:25:19 2 1 2019-12-03 03:30:19 1 7 2019-12-03 03:30:19 2 1 2019-12-03 03:45:19 1 7 2019-12-03 03:45:19 2 1 2019-12-03 03:50:19 1 7 2019-12-03 03:50:19 2 1 2019-12-03 04:55:19 1 6 2019-12-03 04:55:19 2 1 2019-12-03 05:00:19 1 6 2019-12-03 05:00:19 2 1 2019-12-03 05:10:19 1 7 2019-12-03 05:10:19 2 1 2019-12-03 05:15:19 1 7 2019-12-03 05:15:19 2 1 2019-12-03 05:40:19 1 10 2019-12-03 05:40:19 2 1 2019-12-03 05:55:19 1 9 2019-12-03 05:55:19 2 1 2019-12-03 06:05:19 1 9 2019-12-03 06:05:19 2 1 2019-12-03 06:10:19 1 9 2019-12-03 06:10:19 2 1 2019-12-03 06:15:19 1 9 2019-12-03 06:15:19 2 1 2019-12-03 06:20:19 1 9 2019-12-03 06:20:19 2 1 2019-12-03 06:25:19 1 9 2019-12-03 06:25:19 2 1 2019-12-03 06:30:19 1 10 2019-12-03 06:30:19 2 1 2019-12-03 06:40:19 1 10 2019-12-03 06:40:19 2 1 2019-12-03 06:50:19 1 11 2019-12-03 06:50:19 2 1 2019-12-03 07:00:19 1 11 2019-12-03 07:00:19 2 1 2019-12-03 07:10:19 1 10 2019-12-03 07:10:19 2 1 2019-12-03 07:15:19 1 10 2019-12-03 07:15:19 2 1 2019-12-03 07:25:19 1 10 2019-12-03 07:25:19 2 1 2019-12-03 07:40:19 1 12 2019-12-03 07:40:19 2 1 2019-12-03 07:45:19 1 13 2019-12-03 07:45:19 2 1 2019-12-03 07:55:19 1 8 2019-12-03 07:55:19 2 1 2019-12-03 08:00:19 1 7 2019-12-03 08:00:19 2 1 2019-12-03 08:05:19 1 7 2019-12-03 08:05:19 2 1 2019-12-03 08:15:19 1 7 2019-12-03 08:15:19 2 1 2019-12-03 08:30:19 1 8 2019-12-03 08:30:19 2 1 2019-12-03 08:45:19 1 10 2019-12-03 08:50:19 1 11 2019-12-03 08:55:19 1 12 2019-12-03 09:00:19 1 13 2019-12-03 09:05:19 1 13 2019-12-03 09:10:19 1 14 2019-12-03 09:20:19 1 15 2019-12-03 09:25:19 1 16 2019-12-03 09:30:19 1 17 2019-12-03 09:40:19 1 17 2019-12-03 09:45:19 1 14 2019-12-03 09:50:19 1 15 2019-12-03 09:50:19 2 1 2019-12-03 09:55:19 1 12 2019-12-03 09:55:19 2 1 2019-12-03 10:05:19 1 15 2019-12-03 10:15:19 1 16 2019-12-03 10:15:19 2 1 2019-12-03 10:20:19 1 14 2019-12-03 10:25:19 1 11 2019-12-03 10:30:19 1 12 2019-12-03 10:35:19 1 10 2019-12-03 10:40:19 1 12 2019-12-03 10:55:19 1 17 2019-12-03 11:00:19 1 17 2019-12-03 11:10:19 1 17 2019-12-03 11:15:19 1 19 2019-12-03 11:30:19 1 17 2019-12-03 11:35:19 1 14 2019-12-03 11:40:19 1 17 2019-12-03 12:10:19 1 22 2019-12-03 12:15:19 1 21 2019-12-03 12:25:19 1 18 2019-12-02 11:20:19 1 17 2019-12-02 11:20:19 2 1 2019-12-02 11:30:19 1 18 2019-12-02 11:30:19 2 1 2019-12-02 11:40:19 1 15 2019-12-02 11:40:19 2 1 2019-12-02 12:05:19 1 16 2019-12-02 12:15:19 1 18 2019-12-02 12:55:19 1 22 2019-12-02 12:55:19 2 1 2019-12-02 13:05:19 1 17 2019-12-02 13:05:19 2 1 2019-12-02 13:15:19 1 22 2019-12-02 13:15:19 2 2 2019-12-02 13:25:19 1 18 2019-12-02 13:25:19 2 1 2019-12-02 13:50:19 1 18 2019-12-02 13:50:19 2 3 2019-12-02 13:55:19 1 18 2019-12-02 13:55:19 2 3 2019-12-02 14:00:19 1 18 2019-12-02 14:00:19 2 2 2019-12-02 14:05:19 1 16 2019-12-02 14:05:19 2 2 2019-12-02 14:10:19 1 18 2019-12-02 14:10:19 2 2 2019-12-02 14:15:19 1 17 2019-12-02 14:25:19 1 18 2019-12-02 15:05:19 1 17 2019-12-02 15:05:19 2 2 2019-12-02 15:25:19 1 15 2019-12-02 15:25:19 2 1 2019-12-02 15:45:19 1 13 2019-12-02 15:55:19 1 15 2019-12-02 16:00:19 1 14 2019-12-02 16:30:19 1 14 2019-12-02 17:00:19 1 14 2019-12-02 17:05:19 1 15 2019-12-02 17:10:19 1 14 2019-12-02 17:25:19 1 13 2019-12-02 17:25:19 2 1 2019-12-02 17:30:19 1 11 2019-12-02 17:30:19 2 1 2019-12-02 17:40:19 1 11 2019-12-02 17:40:19 2 1 2019-12-02 17:55:19 1 16 2019-12-02 17:55:19 2 1 2019-12-02 18:35:19 1 16 2019-12-02 18:35:19 2 1 2019-12-02 18:40:19 1 16 2019-12-02 18:40:19 2 1 2019-12-02 18:45:19 1 14 2019-12-02 18:45:19 2 1 2019-12-02 18:55:19 1 12 2019-12-02 18:55:19 2 1 2019-12-02 19:05:19 1 15 2019-12-02 19:05:19 2 1 2019-12-02 19:15:19 1 17 2019-12-02 19:15:19 2 1 2019-12-02 19:25:19 1 16 2019-12-02 19:25:19 2 1 2019-12-02 20:05:19 1 18 2019-12-02 21:15:19 1 18 2019-12-02 21:40:19 1 21 2019-12-02 22:20:19 1 16 2019-12-02 22:20:19 2 1 2019-12-02 22:30:19 1 15 2019-12-02 22:30:19 2 1 2019-12-02 22:50:19 1 12 2019-12-02 22:50:19 2 1 2019-12-02 23:00:19 1 16 2019-12-02 23:00:19 2 2 2019-12-02 23:15:19 1 18 2019-12-02 23:15:19 2 1 2019-12-02 23:20:19 1 16 2019-12-02 23:20:19 2 1 2019-12-02 23:40:19 1 15 2019-12-02 23:40:19 2 2 2019-12-02 23:50:19 1 15 2019-12-02 23:50:19 2 3 2019-12-03 00:20:19 1 12 2019-12-03 00:20:19 2 1 2019-12-03 00:30:19 1 12 2019-12-03 00:30:19 2 1 2019-12-03 00:35:19 1 12 2019-12-03 00:35:19 2 1 2019-12-03 00:40:19 1 12 2019-12-03 00:40:19 2 1 2019-12-03 00:50:19 1 11 2019-12-03 00:50:19 2 1 2019-12-03 01:00:19 1 10 2019-12-03 01:00:19 2 1 2019-12-03 01:05:19 1 9 2019-12-03 01:05:19 2 1 2019-12-03 01:15:19 1 9 2019-12-03 01:15:19 2 1 2019-12-03 01:40:19 1 8 2019-12-03 01:40:19 2 1 2019-12-03 01:45:19 1 8 2019-12-03 01:45:19 2 1 2019-12-03 02:50:19 1 7 2019-12-03 02:50:19 2 1 2019-12-03 02:55:19 1 7 2019-12-03 02:55:19 2 1 2019-12-03 03:00:19 1 8 2019-12-03 03:00:19 2 1 2019-12-03 03:05:19 1 8 2019-12-03 03:05:19 2 1 2019-12-03 03:35:19 1 7 2019-12-03 03:35:19 2 1 2019-12-03 03:40:19 1 7 2019-12-03 03:40:19 2 1 2019-12-03 05:20:19 1 7 2019-12-03 05:20:19 2 1 2019-12-03 05:30:19 1 8 2019-12-03 05:30:19 2 1 2019-12-03 05:45:19 1 8 2019-12-03 05:45:19 2 1 2019-12-03 06:00:19 1 9 2019-12-03 06:00:19 2 1 2019-12-03 06:35:19 1 11 2019-12-03 06:35:19 2 1 2019-12-03 06:45:19 1 10 2019-12-03 06:45:19 2 1 2019-12-03 06:55:19 1 12 2019-12-03 06:55:19 2 1 2019-12-03 07:05:19 1 11 2019-12-03 07:05:19 2 1 2019-12-03 07:20:19 1 10 2019-12-03 07:20:19 2 1 2019-12-03 07:30:19 1 12 2019-12-03 07:30:19 2 1 2019-12-03 07:35:19 1 12 2019-12-03 07:35:19 2 1 2019-12-03 07:50:19 1 11 2019-12-03 07:50:19 2 1 2019-12-03 08:10:19 1 7 2019-12-03 08:10:19 2 1 2019-12-03 08:20:19 1 8 2019-12-03 08:20:19 2 1 2019-12-03 08:25:19 1 7 2019-12-03 08:25:19 2 1 2019-12-03 08:35:19 1 9 2019-12-03 08:35:19 2 1 2019-12-03 08:40:19 1 9 2019-12-03 08:40:19 2 1 2019-12-03 09:15:19 1 14 2019-12-03 09:35:19 1 16 2019-12-03 10:00:19 1 12 2019-12-03 10:00:19 2 1 2019-12-03 10:10:19 1 15 2019-12-03 10:45:19 1 12 2019-12-03 10:50:19 1 14 2019-12-03 11:05:19 1 16 2019-12-03 11:20:19 1 20 2019-12-03 11:20:19 2 1 2019-12-03 11:25:19 1 17 2019-12-03 11:25:19 2 1 2019-12-03 11:45:19 1 17 2019-12-03 11:50:19 1 17 2019-12-03 11:55:19 1 15 2019-12-03 12:00:19 1 20 2019-12-03 12:05:19 1 22 2019-12-03 12:20:19 1 22 2019-12-03 12:30:19 1 19 2019-12-03 12:30:19 2 2 2019-12-03 12:35:19 1 21 2019-12-03 12:35:19 2 2 2019-12-03 12:40:19 1 20 2019-12-03 12:40:19 2 1 2019-12-03 12:45:19 1 18 2019-12-03 12:45:19 2 1 2019-12-03 12:50:19 1 16 2019-12-03 12:50:19 2 1 2019-12-03 12:55:19 1 14 2019-12-03 12:55:19 2 1 2019-12-03 13:00:19 1 17 2019-12-03 13:00:19 2 1 2019-12-03 13:05:19 1 18 2019-12-03 13:05:19 2 1 2019-12-03 13:10:19 1 18 2019-12-03 13:10:19 2 1 2019-12-03 13:15:19 1 19 2019-12-03 13:15:19 2 1 2019-12-03 13:20:19 1 20 2019-12-03 13:20:19 2 1 2019-12-03 13:50:19 1 22 2019-12-03 14:00:19 1 19 2019-12-03 14:05:19 1 19 2019-12-03 14:15:19 1 17 2019-12-03 14:25:19 1 15 2019-12-03 14:40:19 1 18 2019-12-03 14:40:19 2 1 2019-12-03 14:45:19 1 20 2019-12-03 14:45:19 2 1 2019-12-03 15:10:19 1 18 2019-12-03 15:10:19 2 5 2019-12-03 15:25:19 1 20 2019-12-03 15:25:19 2 3 2019-12-03 15:45:19 1 17 2019-12-03 15:45:19 2 1 2019-12-03 16:05:19 1 17 2019-12-03 16:05:19 2 1 2019-12-03 16:10:19 1 17 2019-12-03 16:10:19 2 1 2019-12-03 16:30:19 1 20 2019-12-03 16:30:19 2 1 2019-12-03 17:15:19 1 18 2019-12-03 17:15:19 2 1 2019-12-03 18:00:19 1 16 2019-12-03 18:00:19 2 2 2019-12-03 18:05:19 1 17 2019-12-03 18:05:19 2 2 2019-12-03 18:15:19 1 17 2019-12-03 18:15:19 2 1 2019-12-03 18:20:19 1 15 2019-12-03 18:20:19 2 2 2019-12-03 18:30:19 1 18 2019-12-03 18:30:19 2 3 2019-12-03 18:35:19 1 20 2019-12-03 18:35:19 2 3 2019-12-03 18:40:19 1 18 2019-12-03 18:40:19 2 2 2019-12-03 18:45:19 1 16 2019-12-03 18:45:19 2 1 2019-12-03 18:50:19 1 16 2019-12-03 18:50:19 2 1 2019-12-03 19:00:19 1 16 2019-12-03 19:00:19 2 1 2019-12-03 19:15:19 1 18 2019-12-03 19:15:19 2 2 2019-12-03 19:20:19 1 16 2019-12-03 19:20:19 2 2 2019-12-03 19:25:19 1 14 2019-12-03 19:25:19 2 1 2019-12-03 19:30:19 1 16 2019-12-03 19:30:19 2 1 2019-12-03 19:45:19 1 14 2019-12-03 19:45:19 2 1 2019-12-03 19:55:19 1 12 2019-12-03 19:55:19 2 1 2019-12-03 20:00:19 1 18 2019-12-03 20:00:19 2 1 2019-12-03 20:15:19 1 18 2019-12-03 20:15:19 2 1 2019-12-03 20:20:19 1 17 2019-12-03 20:20:19 2 1 2019-12-03 20:30:19 1 16 2019-12-03 20:30:19 2 1 2019-12-03 21:15:19 1 17 2019-12-03 21:25:19 1 18 2019-12-03 21:30:19 1 18 2019-12-03 21:40:19 1 19 2019-12-03 21:50:19 1 19 2019-12-03 22:00:19 1 24 2019-12-03 22:05:19 1 23 2019-12-03 22:20:19 1 20 2019-12-03 22:20:19 2 1 2019-12-03 22:35:19 1 20 2019-12-03 22:35:19 2 1 2019-12-03 22:40:19 1 19 2019-12-03 22:40:19 2 1 2019-12-03 22:45:19 1 18 2019-12-03 22:45:19 2 1 2019-12-03 23:10:19 1 15 2019-12-03 23:10:19 2 1 2019-12-03 23:15:19 1 16 2019-12-03 23:20:19 1 16 2019-12-03 23:40:19 1 17 2019-12-03 23:55:19 1 18 2019-12-04 00:45:19 1 13 2019-12-04 00:45:19 2 1 2019-12-04 00:50:19 1 13 2019-12-04 00:50:19 2 1 2019-12-04 01:05:19 1 12 2019-12-04 01:05:19 2 1 2019-12-04 01:10:19 1 12 2019-12-04 01:10:19 2 1 2019-12-04 01:15:19 1 12 2019-12-04 01:15:19 2 2 2019-12-04 01:20:19 1 11 2019-12-04 01:20:19 2 2 2019-12-04 01:25:19 1 12 2019-12-04 01:25:19 2 1 2019-12-04 01:35:19 1 11 2019-12-04 01:35:19 2 1 2019-12-04 02:00:19 1 9 2019-12-04 02:15:19 1 7 2019-12-04 02:20:19 1 6 2019-12-04 02:55:19 1 7 2019-12-04 03:20:19 1 7 2019-12-04 03:45:19 1 7 2019-12-04 03:55:19 1 7 2019-12-04 04:00:19 1 7 2019-12-04 04:05:19 1 7 2019-12-04 04:15:19 1 7 2019-12-04 04:25:19 1 7 2019-12-04 04:30:19 1 7 2019-12-04 04:35:19 1 7 2019-12-04 04:40:19 1 7 2019-12-04 04:45:19 1 7 2019-12-04 05:10:19 1 7 2019-12-04 05:15:19 1 7 2019-12-04 05:55:19 1 6 2019-12-04 06:05:19 1 7 2019-12-04 06:10:19 1 8 2019-12-04 06:20:19 1 8 2019-12-04 06:25:19 1 8 2019-12-04 06:30:19 1 8 2019-12-04 06:40:19 1 8 2019-12-04 06:45:19 1 9 2019-12-04 06:50:19 1 8 2019-12-04 07:05:19 1 7 2019-12-04 07:15:19 1 8 2019-12-04 07:20:19 1 10 2019-12-04 07:50:19 1 9 2019-12-04 08:05:19 1 8 2019-12-04 08:30:19 1 11 2019-12-04 08:35:19 1 12 2019-12-04 08:40:19 1 14 2019-12-04 08:45:19 1 14 2019-12-04 09:05:19 1 11 2019-12-04 09:10:19 1 11 2019-12-04 09:20:19 1 10 2019-12-04 09:25:19 1 12 2019-12-04 09:30:19 1 12 2019-12-04 09:55:19 1 17 2019-12-04 09:55:19 2 1 2019-12-04 10:05:19 1 13 2019-12-04 10:10:19 1 16 2019-12-04 10:20:19 1 17 2019-12-04 10:30:19 1 18 2019-12-04 10:40:19 1 17 2019-12-04 10:55:19 1 16 2019-12-04 11:00:19 1 15 2019-12-04 11:05:19 1 14 2019-12-04 11:20:20 1 17 2019-12-04 11:25:19 1 13 2019-12-04 11:30:19 1 14 2019-12-04 11:50:19 1 13 2019-12-04 12:00:19 1 12 2019-12-04 12:05:19 1 12 2019-12-04 12:05:19 2 1 2019-12-04 12:50:19 1 12 2019-12-04 12:55:19 1 14 2019-12-04 13:10:19 1 11 2019-12-04 13:10:19 2 1 2019-12-04 13:20:19 1 14 2019-12-04 13:20:19 2 2 2019-12-04 14:05:19 1 12 2019-12-04 14:10:19 1 11 2019-12-04 14:15:19 1 10 2019-12-04 14:30:19 1 14 2019-12-04 15:00:19 1 13 2019-12-04 15:00:19 2 2 2019-12-04 15:10:19 1 11 2019-12-04 15:20:19 1 10 2019-12-04 15:20:19 2 1 2019-12-04 15:55:19 1 12 2019-12-04 16:05:19 1 14 2019-12-04 16:10:19 1 11 2019-12-04 16:20:19 1 12 2019-12-04 16:30:19 1 14 2019-12-04 16:30:19 2 1 2019-12-04 16:35:19 1 13 2019-12-04 16:35:19 2 1 2019-12-04 16:40:19 1 14 2019-12-04 16:40:19 2 1 2019-12-04 16:50:19 1 16 2019-12-04 16:50:19 2 1 2019-12-03 13:25:19 1 20 2019-12-03 13:25:19 2 1 2019-12-03 13:35:19 1 22 2019-12-03 13:40:19 1 21 2019-12-03 13:45:19 1 19 2019-12-03 14:35:19 1 18 2019-12-03 14:35:19 2 1 2019-12-03 14:50:19 1 19 2019-12-03 14:50:19 2 1 2019-12-03 14:55:19 1 20 2019-12-03 14:55:19 2 2 2019-12-03 15:00:19 1 17 2019-12-03 15:00:19 2 2 2019-12-03 15:20:19 1 20 2019-12-03 15:20:19 2 3 2019-12-03 15:35:19 1 18 2019-12-03 15:35:19 2 1 2019-12-03 15:40:19 1 18 2019-12-03 15:40:19 2 1 2019-12-03 15:50:19 1 17 2019-12-03 15:50:19 2 1 2019-12-03 16:20:19 1 16 2019-12-03 16:20:19 2 1 2019-12-03 16:35:19 1 17 2019-12-03 16:35:19 2 1 2019-12-03 17:20:19 1 18 2019-12-03 17:20:19 2 1 2019-12-03 17:25:19 1 16 2019-12-03 17:25:19 2 1 2019-12-03 17:35:19 1 17 2019-12-03 17:35:19 2 1 2019-12-03 17:40:19 1 19 2019-12-03 17:40:19 2 1 2019-12-03 17:45:19 1 19 2019-12-03 17:45:19 2 1 2019-12-03 18:10:19 1 17 2019-12-03 18:10:19 2 1 2019-12-03 18:25:19 1 18 2019-12-03 18:25:19 2 3 2019-12-03 19:05:19 1 18 2019-12-03 19:05:19 2 1 2019-12-03 19:40:19 1 17 2019-12-03 19:40:19 2 1 2019-12-03 19:50:19 1 15 2019-12-03 19:50:19 2 1 2019-12-03 20:05:19 1 13 2019-12-03 20:05:19 2 1 2019-12-03 20:25:19 1 17 2019-12-03 20:25:19 2 1 2019-12-03 20:40:19 1 15 2019-12-03 20:45:19 1 14 2019-12-03 20:55:19 1 16 2019-12-03 21:00:19 1 15 2019-12-03 21:05:19 1 16 2019-12-03 21:20:19 1 19 2019-12-03 21:45:19 1 20 2019-12-03 22:10:19 1 25 2019-12-03 22:15:19 1 20 2019-12-03 22:15:19 2 1 2019-12-03 22:25:19 1 19 2019-12-03 22:25:19 2 1 2019-12-03 22:50:20 1 20 2019-12-03 22:50:20 2 1 2019-12-03 22:55:19 1 22 2019-12-03 22:55:19 2 1 2019-12-03 23:05:19 1 18 2019-12-03 23:25:19 1 16 2019-12-03 23:45:19 1 18 2019-12-03 23:50:19 1 17 2019-12-04 00:05:19 1 19 2019-12-04 00:30:19 1 15 2019-12-04 00:30:19 2 1 2019-12-04 00:35:19 1 15 2019-12-04 00:35:19 2 1 2019-12-04 01:30:19 1 12 2019-12-04 01:30:19 2 1 2019-12-04 01:45:19 1 10 2019-12-04 01:50:19 1 11 2019-12-04 01:55:19 1 10 2019-12-04 02:05:19 1 7 2019-12-04 02:10:20 1 7 2019-12-04 02:30:19 1 7 2019-12-04 02:50:19 1 9 2019-12-04 03:00:19 1 7 2019-12-04 03:05:19 1 7 2019-12-04 03:15:19 1 7 2019-12-04 03:25:19 1 7 2019-12-04 03:30:19 1 6 2019-12-04 03:35:19 1 7 2019-12-04 03:50:20 1 7 2019-12-04 04:10:19 1 7 2019-12-04 04:20:19 1 7 2019-12-04 04:50:19 1 7 2019-12-04 04:55:19 1 7 2019-12-04 05:20:19 1 7 2019-12-04 05:25:19 1 7 2019-12-04 05:40:19 1 7 2019-12-04 05:45:19 1 6 2019-12-04 06:00:19 1 6 2019-12-04 06:15:19 1 8 2019-12-04 06:35:19 1 7 2019-12-04 07:30:19 1 11 2019-12-04 07:40:19 1 10 2019-12-04 08:10:19 1 9 2019-12-04 08:10:19 2 1 2019-12-04 08:20:19 1 9 2019-12-04 08:25:19 1 11 2019-12-04 08:50:19 1 12 2019-12-04 09:50:19 1 15 2019-12-04 09:50:19 2 1 2019-12-04 10:00:19 1 16 2019-12-04 10:15:19 1 16 2019-12-04 11:10:19 1 15 2019-12-04 11:35:19 1 14 2019-12-04 11:45:19 1 12 2019-12-04 12:20:19 1 17 2019-12-04 12:20:19 2 1 2019-12-04 13:00:19 1 13 2019-12-04 13:00:19 2 1 2019-12-04 13:05:19 1 11 2019-12-04 13:05:19 2 1 2019-12-04 13:30:19 1 18 2019-12-04 13:30:19 2 1 2019-12-04 13:45:19 1 13 2019-12-04 14:00:19 1 16 2019-12-04 14:25:19 1 13 2019-12-04 15:15:19 1 10 2019-12-04 15:25:20 1 9 2019-12-04 15:25:20 2 1 2019-12-04 15:30:19 1 9 2019-12-04 15:30:19 2 1 2019-12-04 16:00:20 1 11 2019-12-04 16:15:19 1 13 2019-12-04 16:55:19 1 14 2019-12-04 16:55:19 2 1 2019-12-04 17:05:20 1 14 2019-12-04 17:05:20 2 1 2019-12-04 17:10:19 1 11 2019-12-04 17:10:19 2 1 2019-12-04 17:15:19 1 11 2019-12-04 17:20:19 1 13 2019-12-04 17:25:19 1 12 2019-12-04 17:30:19 1 10 2019-12-04 17:40:19 1 12 2019-12-04 17:45:19 1 12 2019-12-04 17:55:19 1 12 2019-12-04 18:10:19 1 14 2019-12-04 18:15:19 1 10 2019-12-04 18:35:19 1 12 2019-12-04 18:35:19 2 1 2019-12-04 18:40:19 1 12 2019-12-04 18:40:19 2 1 2019-12-04 18:55:19 1 12 2019-12-04 19:00:19 1 13 2019-12-04 19:05:19 1 13 2019-12-04 19:10:19 1 10 2019-12-04 19:20:19 1 14 2019-12-04 19:30:19 1 14 2019-12-04 19:35:19 1 15 2019-12-04 19:40:19 1 17 2019-12-04 19:45:19 1 17 2019-12-04 19:55:19 1 16 2019-12-04 20:10:19 1 17 2019-12-04 20:15:19 1 18 2019-12-04 20:20:19 1 19 2019-12-04 20:25:19 1 16 2019-12-04 20:30:19 1 15 2019-12-04 20:30:19 2 1 2019-12-04 20:35:19 1 16 2019-12-04 20:35:19 2 1 2019-12-04 20:40:19 1 15 2019-12-04 20:40:19 2 1 2019-12-04 20:50:19 1 15 2019-12-04 21:00:19 1 15 2019-12-04 21:00:19 2 1 2019-12-04 21:10:19 1 15 2019-12-04 21:25:19 1 13 2019-12-04 21:30:19 1 16 2019-12-04 21:50:19 1 16 2019-12-04 22:00:19 1 17 2019-12-04 22:00:19 2 1 2019-12-04 22:10:19 1 17 2019-12-04 22:20:19 1 16 2019-12-04 22:25:19 1 17 2019-12-04 22:30:19 1 15 2019-12-03 13:30:19 1 19 2019-12-03 13:55:19 1 23 2019-12-03 14:10:19 1 18 2019-12-03 14:20:19 1 16 2019-12-03 14:30:19 1 18 2019-12-03 15:05:19 1 18 2019-12-03 15:05:19 2 4 2019-12-03 15:15:19 1 19 2019-12-03 15:15:19 2 3 2019-12-03 15:30:19 1 19 2019-12-03 15:30:19 2 2 2019-12-03 15:55:19 1 19 2019-12-03 15:55:19 2 1 2019-12-03 16:00:19 1 18 2019-12-03 16:00:19 2 1 2019-12-03 16:15:19 1 15 2019-12-03 16:15:19 2 2 2019-12-03 16:25:19 1 18 2019-12-03 16:25:19 2 1 2019-12-03 16:40:19 1 15 2019-12-03 16:40:19 2 1 2019-12-03 16:45:19 1 17 2019-12-03 16:45:19 2 1 2019-12-03 16:50:19 1 18 2019-12-03 16:50:19 2 1 2019-12-03 16:55:19 1 18 2019-12-03 16:55:19 2 1 2019-12-03 17:00:19 1 19 2019-12-03 17:00:19 2 1 2019-12-03 17:05:19 1 18 2019-12-03 17:05:19 2 1 2019-12-03 17:10:19 1 18 2019-12-03 17:10:19 2 1 2019-12-03 17:30:19 1 16 2019-12-03 17:30:19 2 1 2019-12-03 17:50:19 1 17 2019-12-03 17:50:19 2 1 2019-12-03 17:55:19 1 19 2019-12-03 17:55:19 2 2 2019-12-03 18:55:19 1 17 2019-12-03 18:55:19 2 1 2019-12-03 19:10:19 1 19 2019-12-03 19:10:19 2 2 2019-12-03 19:35:19 1 14 2019-12-03 19:35:19 2 1 2019-12-03 20:10:19 1 15 2019-12-03 20:10:19 2 1 2019-12-03 20:35:19 1 16 2019-12-03 20:50:19 1 15 2019-12-03 21:10:19 1 16 2019-12-03 21:35:19 1 19 2019-12-03 21:55:19 1 21 2019-12-03 22:30:19 1 21 2019-12-03 22:30:19 2 1 2019-12-03 23:00:19 1 20 2019-12-03 23:00:19 2 1 2019-12-03 23:30:19 1 20 2019-12-03 23:35:19 1 17 2019-12-04 00:00:19 1 17 2019-12-04 00:10:19 1 19 2019-12-04 00:15:19 1 17 2019-12-04 00:15:19 2 1 2019-12-04 00:20:19 1 16 2019-12-04 00:20:19 2 2 2019-12-04 00:25:19 1 16 2019-12-04 00:25:19 2 2 2019-12-04 00:40:19 1 14 2019-12-04 00:40:19 2 1 2019-12-04 00:55:19 1 12 2019-12-04 00:55:19 2 1 2019-12-04 01:00:19 1 11 2019-12-04 01:00:19 2 1 2019-12-04 01:40:19 1 10 2019-12-04 01:40:19 2 1 2019-12-04 02:25:19 1 6 2019-12-04 02:35:20 1 7 2019-12-04 02:40:19 1 7 2019-12-04 02:45:19 1 8 2019-12-04 03:10:20 1 7 2019-12-04 03:40:19 1 7 2019-12-04 05:00:19 1 7 2019-12-04 05:05:19 1 7 2019-12-04 05:30:19 1 7 2019-12-04 05:35:19 1 7 2019-12-04 05:50:19 1 6 2019-12-04 06:55:19 1 7 2019-12-04 07:00:19 1 7 2019-12-04 07:10:19 1 7 2019-12-04 07:25:19 1 10 2019-12-04 07:35:19 1 10 2019-12-04 07:45:19 1 10 2019-12-04 07:55:19 1 8 2019-12-04 08:00:19 1 9 2019-12-04 08:15:19 1 11 2019-12-04 08:55:19 1 12 2019-12-04 09:00:19 1 11 2019-12-04 09:15:19 1 12 2019-12-04 09:35:19 1 14 2019-12-04 09:40:19 1 16 2019-12-04 09:45:19 1 15 2019-12-04 10:25:19 1 18 2019-12-04 10:35:19 1 18 2019-12-04 10:45:19 1 13 2019-12-04 10:50:19 1 18 2019-12-04 11:15:19 1 15 2019-12-04 11:40:19 1 12 2019-12-04 11:55:19 1 12 2019-12-04 11:55:19 2 1 2019-12-04 12:10:19 1 14 2019-12-04 12:10:19 2 1 2019-12-04 12:15:19 1 16 2019-12-04 12:15:19 2 1 2019-12-04 12:25:19 1 17 2019-12-04 12:25:19 2 1 2019-12-04 12:30:19 1 16 2019-12-04 12:35:19 1 14 2019-12-04 12:40:19 1 15 2019-12-04 12:45:19 1 13 2019-12-04 12:45:19 2 1 2019-12-04 13:15:19 1 12 2019-12-04 13:15:19 2 1 2019-12-04 13:25:19 1 18 2019-12-04 13:25:19 2 1 2019-12-04 13:35:19 1 18 2019-12-04 13:35:19 2 1 2019-12-04 13:40:19 1 15 2019-12-04 13:50:19 1 14 2019-12-04 13:55:19 1 16 2019-12-04 14:20:19 1 13 2019-12-04 14:20:19 2 1 2019-12-04 14:35:19 1 13 2019-12-04 14:35:19 2 1 2019-12-04 14:40:19 1 15 2019-12-04 14:40:19 2 1 2019-12-04 14:45:19 1 17 2019-12-04 14:45:19 2 1 2019-12-04 14:50:19 1 16 2019-12-04 14:50:19 2 1 2019-12-04 14:55:19 1 18 2019-12-04 14:55:19 2 2 2019-12-04 15:05:19 1 12 2019-12-04 15:05:19 2 1 2019-12-04 15:35:19 1 10 2019-12-04 15:35:19 2 1 2019-12-04 15:40:19 1 10 2019-12-04 15:45:19 1 10 2019-12-04 15:50:19 1 13 2019-12-04 16:25:19 1 15 2019-12-04 16:25:19 2 1 2019-12-04 16:45:19 1 14 2019-12-04 16:45:19 2 1 2019-12-04 17:00:19 1 12 2019-12-04 17:00:19 2 1 2019-12-04 17:35:19 1 10 2019-12-04 17:50:19 1 15 2019-12-04 18:00:19 1 12 2019-12-04 18:05:19 1 11 2019-12-04 18:20:19 1 12 2019-12-04 18:25:19 1 10 2019-12-04 18:30:19 1 12 2019-12-04 18:30:19 2 1 2019-12-04 18:45:19 1 14 2019-12-04 18:45:19 2 1 2019-12-04 18:50:19 1 16 2019-12-04 19:15:19 1 14 2019-12-04 19:25:19 1 13 2019-12-04 19:50:19 1 17 2019-12-04 20:00:19 1 18 2019-12-04 20:05:19 1 19 2019-12-04 20:45:19 1 15 2019-12-04 20:55:19 1 17 2019-12-04 21:05:19 1 13 2019-12-04 21:15:19 1 15 2019-12-04 21:20:19 1 13 2019-12-04 21:35:20 1 15 2019-12-04 21:40:19 1 13 2019-12-04 21:45:19 1 15 2019-12-04 21:55:19 1 15 2019-12-04 22:05:19 1 17 2019-12-04 22:15:19 1 18 2019-12-04 22:35:19 1 18 2019-12-04 22:40:19 1 18 2019-12-04 22:45:19 1 16 2019-12-04 22:50:19 1 15 2019-12-04 22:55:19 1 16 2019-12-04 23:00:19 1 13 2019-12-04 23:15:19 1 14 2019-12-04 23:30:19 1 13 2019-12-04 23:35:19 1 14 2019-12-04 23:40:19 1 13 2019-12-04 23:45:19 1 9 2019-12-04 23:50:19 1 10 2019-12-04 23:55:19 1 9 2019-12-05 00:10:19 1 11 2019-12-05 00:45:19 1 10 2019-12-05 00:50:19 1 12 2019-12-05 00:55:19 1 10 2019-12-05 01:00:19 1 11 2019-12-05 01:35:19 1 10 2019-12-05 02:00:19 1 10 2019-12-05 02:40:19 1 5 2019-12-05 02:50:19 1 5 2019-12-05 03:00:19 1 5 2019-12-05 03:05:19 1 5 2019-12-05 03:20:19 1 6 2019-12-05 03:35:19 1 6 2019-12-05 04:00:19 1 5 2019-12-05 04:05:19 1 5 2019-12-05 05:20:19 1 4 2019-12-05 05:35:19 1 4 2019-12-05 05:35:19 2 1 2019-12-05 06:10:19 1 6 2019-12-05 06:20:19 1 6 2019-12-05 06:35:19 1 6 2019-12-05 06:45:19 1 6 2019-12-05 06:50:19 1 6 2019-12-05 07:25:19 1 5 2019-12-05 07:35:19 1 6 2019-12-05 07:55:19 1 10 2019-12-05 08:40:19 1 10 2019-12-05 09:00:19 1 7 2019-12-05 09:50:19 1 9 2019-12-05 10:05:19 1 11 2019-12-05 10:15:19 1 10 2019-12-05 10:30:19 1 11 2019-12-05 10:40:19 1 14 2019-12-05 11:15:19 1 18 2019-12-05 11:15:19 2 1 2019-12-05 11:45:19 1 13 2019-12-05 12:25:19 1 15 2019-12-05 12:40:19 1 13 2019-12-05 13:00:19 1 10 2019-12-05 13:25:19 1 11 2019-12-05 13:30:19 1 10 2019-12-05 13:45:19 1 9 2019-12-05 13:45:19 2 1 2019-12-05 13:50:19 1 9 2019-12-05 13:50:19 2 1 2019-12-05 14:00:19 1 15 2019-12-05 14:00:19 2 1 2019-12-05 14:35:19 1 15 2019-12-05 14:40:19 1 16 2019-12-05 14:50:19 1 12 2019-12-05 14:50:19 2 1 2019-12-05 15:00:19 1 12 2019-12-05 15:10:19 1 11 2019-12-05 15:15:19 1 11 2019-12-05 15:25:19 1 9 2019-12-05 15:30:19 1 12 2019-12-05 15:35:19 1 9 2019-12-05 16:00:19 1 11 2019-12-05 16:00:19 2 2 2019-12-05 16:10:19 1 9 2019-12-05 16:10:19 2 2 2019-12-05 16:15:20 1 9 2019-12-05 16:15:20 2 3 2019-12-05 16:20:19 1 9 2019-12-05 16:20:19 2 1 2019-12-05 16:35:19 1 11 2019-12-05 16:35:19 2 1 2019-12-05 16:45:19 1 9 2019-12-05 16:45:19 2 1 2019-12-05 17:05:19 1 12 2019-12-05 17:05:19 2 1 2019-12-05 17:10:19 1 10 2019-12-05 17:15:19 1 12 2019-12-05 17:15:19 2 3 2019-12-05 17:25:19 1 10 2019-12-05 17:25:19 2 1 2019-12-05 17:40:19 1 12 2019-12-05 17:45:19 1 13 2019-12-05 17:50:19 1 12 2019-12-05 17:55:19 1 14 2019-12-05 18:00:19 1 15 2019-12-05 18:35:19 1 14 2019-12-05 18:40:19 1 16 2019-12-05 18:45:19 1 14 2019-12-05 18:45:19 2 1 2019-12-05 18:50:19 1 15 2019-12-05 18:50:19 2 1 2019-12-05 19:00:19 1 13 2019-12-05 19:00:19 2 1 2019-12-05 19:25:19 1 11 2019-12-05 19:30:19 1 9 2019-12-05 19:35:19 1 9 2019-12-05 19:35:19 2 1 2019-12-05 20:05:19 1 14 2019-12-05 20:05:19 2 3 2019-12-05 20:20:19 1 14 2019-12-05 20:20:19 2 3 2019-12-05 20:40:19 1 14 2019-12-05 20:40:19 2 3 2019-12-05 20:45:19 1 13 2019-12-05 20:45:19 2 3 2019-12-05 20:50:19 1 10 2019-12-05 20:50:19 2 3 2019-12-05 21:10:19 1 13 2019-12-05 21:10:19 2 1 2019-12-05 21:25:19 1 12 2019-12-05 21:30:19 1 12 2019-12-05 21:50:19 1 14 2019-12-05 22:15:19 1 19 2019-12-05 22:15:19 2 1 2019-12-05 22:20:19 1 19 2019-12-05 22:30:19 1 16 2019-12-05 22:45:19 1 14 2019-12-05 22:50:19 1 14 2019-12-05 23:05:19 1 13 2019-12-05 23:05:19 2 1 2019-12-05 23:10:19 1 16 2019-12-05 23:10:19 2 1 2019-12-05 23:20:19 1 16 2019-12-05 23:20:19 2 1 2019-12-05 23:35:19 1 15 2019-12-05 23:35:19 2 1 2019-12-05 23:50:19 1 12 2019-12-05 23:50:19 2 1 2019-12-06 00:00:19 1 13 2019-12-06 00:00:19 2 3 2019-12-06 00:05:19 1 13 2019-12-06 00:05:19 2 3 2019-12-06 00:25:19 1 13 2019-12-06 00:25:19 2 3 2019-12-06 00:35:19 1 11 2019-12-06 00:35:19 2 2 2019-12-06 00:40:19 1 12 2019-12-06 00:40:19 2 1 2019-12-06 01:05:19 1 10 2019-12-06 01:05:19 2 1 2019-12-06 01:15:19 1 9 2019-12-06 01:35:19 1 9 2019-12-06 01:55:19 1 9 2019-12-06 02:05:19 1 12 2019-12-06 02:10:19 1 10 2019-12-06 02:15:19 1 7 2019-12-06 02:25:19 1 9 2019-12-06 02:55:19 1 8 2019-12-06 03:00:19 1 8 2019-12-06 03:15:19 1 8 2019-12-06 03:35:19 1 7 2019-12-06 03:55:19 1 6 2019-12-06 04:00:19 1 5 2019-12-06 04:05:19 1 5 2019-12-06 04:10:19 1 5 2019-12-06 04:50:19 1 6 2019-12-06 05:30:19 1 5 2019-12-06 05:35:19 1 5 2019-12-06 05:45:19 1 5 2019-12-06 06:10:19 1 5 2019-12-06 06:15:19 1 5 2019-12-06 06:30:19 1 5 2019-12-06 06:50:19 1 5 2019-12-06 07:10:19 1 4 2019-12-06 07:40:19 1 6 2019-12-06 07:40:19 2 2 2019-12-06 08:15:19 1 10 2019-12-06 08:15:19 2 1 2019-12-06 08:25:19 1 9 2019-12-06 08:25:19 2 1 2019-12-06 08:40:19 1 7 2019-12-06 08:40:19 2 1 2019-12-06 08:50:19 1 9 2019-12-06 08:50:19 2 1 2019-12-06 09:35:19 1 13 2019-12-06 09:35:19 2 2 2019-12-06 09:45:19 1 15 2019-12-06 09:45:19 2 2 2019-12-06 09:50:19 1 14 2019-12-06 09:50:19 2 2 2019-12-06 09:55:19 2 1 2019-12-04 23:05:19 1 15 2019-12-04 23:25:19 1 15 2019-12-05 00:25:19 1 11 2019-12-05 00:30:19 1 9 2019-12-05 00:35:19 1 10 2019-12-05 00:40:19 1 10 2019-12-05 01:05:19 1 12 2019-12-05 01:10:19 1 11 2019-12-05 01:30:19 1 11 2019-12-05 01:40:19 1 10 2019-12-05 02:10:19 1 8 2019-12-05 02:15:19 1 7 2019-12-05 02:25:19 1 6 2019-12-05 02:35:19 1 5 2019-12-05 02:45:19 1 5 2019-12-05 03:10:19 1 5 2019-12-05 03:25:19 1 4 2019-12-05 04:10:19 1 4 2019-12-05 04:35:19 1 4 2019-12-05 04:40:19 1 4 2019-12-05 04:50:19 1 4 2019-12-05 05:00:19 1 5 2019-12-05 05:10:19 1 4 2019-12-05 05:15:19 1 4 2019-12-05 05:25:19 1 4 2019-12-05 05:40:19 1 4 2019-12-05 05:45:19 1 4 2019-12-05 05:50:19 1 4 2019-12-05 06:00:19 1 7 2019-12-05 06:15:19 1 5 2019-12-05 06:55:19 1 6 2019-12-05 07:20:19 1 6 2019-12-05 07:30:19 1 6 2019-12-05 08:00:19 1 9 2019-12-05 08:05:19 1 10 2019-12-05 08:10:19 1 10 2019-12-05 08:25:19 1 11 2019-12-05 08:50:19 1 8 2019-12-05 09:10:19 1 8 2019-12-05 09:10:19 2 1 2019-12-05 09:20:19 1 7 2019-12-05 09:20:19 2 1 2019-12-05 09:25:19 1 8 2019-12-05 09:25:19 2 1 2019-12-05 09:30:19 1 8 2019-12-05 09:30:19 2 1 2019-12-05 09:35:19 1 11 2019-12-05 09:35:19 2 1 2019-12-05 09:40:19 1 10 2019-12-05 09:45:19 1 10 2019-12-05 10:00:19 1 12 2019-12-05 10:35:19 1 13 2019-12-05 10:50:19 1 15 2019-12-05 10:55:19 1 16 2019-12-05 11:00:19 1 15 2019-12-05 11:05:19 1 16 2019-12-05 11:25:19 1 13 2019-12-05 11:25:19 2 1 2019-12-05 11:30:19 1 12 2019-12-05 11:35:19 1 11 2019-12-05 11:50:19 1 15 2019-12-05 11:55:19 1 13 2019-12-05 12:00:19 1 17 2019-12-05 12:10:19 1 16 2019-12-05 12:10:19 2 1 2019-12-05 12:15:19 1 14 2019-12-05 12:50:19 1 10 2019-12-05 12:55:19 1 13 2019-12-05 13:20:19 1 11 2019-12-05 13:35:19 1 12 2019-12-05 13:40:19 1 13 2019-12-05 13:55:19 1 12 2019-12-05 13:55:19 2 1 2019-12-05 14:05:19 1 17 2019-12-05 14:05:19 2 1 2019-12-05 14:15:19 1 15 2019-12-05 14:15:19 2 1 2019-12-05 14:20:19 1 13 2019-12-05 14:25:19 1 11 2019-12-05 14:45:19 1 14 2019-12-05 15:05:19 1 11 2019-12-05 15:45:19 1 9 2019-12-05 15:55:20 1 10 2019-12-05 15:55:20 2 2 2019-12-05 16:05:19 1 12 2019-12-05 16:05:19 2 2 2019-12-05 16:40:19 1 10 2019-12-05 16:40:19 2 1 2019-12-05 16:50:19 1 13 2019-12-05 16:50:19 2 1 2019-12-05 16:55:19 1 10 2019-12-05 16:55:19 2 1 2019-12-05 17:00:19 1 10 2019-12-05 17:00:19 2 1 2019-12-05 17:35:19 1 16 2019-12-05 18:05:19 1 14 2019-12-05 18:20:19 1 18 2019-12-05 18:55:19 1 15 2019-12-05 18:55:19 2 1 2019-12-05 19:05:19 1 11 2019-12-05 19:05:19 2 2 2019-12-05 19:40:19 1 11 2019-12-05 19:40:19 2 1 2019-12-05 19:45:19 1 12 2019-12-05 19:45:19 2 1 2019-12-05 19:50:19 1 10 2019-12-05 19:50:19 2 1 2019-12-05 19:55:19 1 11 2019-12-05 19:55:19 2 2 2019-12-05 20:10:19 1 11 2019-12-05 20:10:19 2 3 2019-12-05 20:25:19 1 14 2019-12-05 20:25:19 2 2 2019-12-05 20:30:19 1 12 2019-12-05 20:30:19 2 2 2019-12-05 21:00:19 1 11 2019-12-05 21:00:19 2 1 2019-12-05 21:05:19 1 10 2019-12-05 21:05:19 2 1 2019-12-05 21:40:19 1 14 2019-12-05 21:45:19 1 12 2019-12-05 22:00:19 1 16 2019-12-05 22:25:19 1 17 2019-12-05 22:40:19 1 17 2019-12-05 22:55:19 1 12 2019-12-05 23:15:19 1 18 2019-12-05 23:15:19 2 1 2019-12-05 23:25:19 1 17 2019-12-05 23:25:19 2 1 2019-12-05 23:55:19 1 13 2019-12-05 23:55:19 2 2 2019-12-06 00:10:19 1 12 2019-12-06 00:10:19 2 2 2019-12-06 00:45:19 1 11 2019-12-06 00:45:19 2 1 2019-12-06 00:55:19 1 11 2019-12-06 00:55:19 2 1 2019-12-06 01:20:19 1 10 2019-12-06 01:25:19 1 8 2019-12-06 01:30:19 1 7 2019-12-06 01:50:19 1 9 2019-12-06 02:20:19 1 9 2019-12-06 02:35:19 1 9 2019-12-06 02:40:19 1 9 2019-12-06 02:50:19 1 8 2019-12-06 03:05:19 1 8 2019-12-06 03:20:19 1 8 2019-12-06 03:25:19 1 7 2019-12-06 03:40:19 1 7 2019-12-06 03:45:19 1 6 2019-12-06 04:15:19 1 5 2019-12-06 04:20:19 1 5 2019-12-06 04:30:19 1 6 2019-12-06 04:45:19 1 7 2019-12-06 05:00:19 1 6 2019-12-06 05:10:19 1 5 2019-12-06 05:25:19 1 5 2019-12-06 05:40:19 1 5 2019-12-06 06:05:19 1 5 2019-12-06 06:35:19 1 6 2019-12-06 06:55:19 1 4 2019-12-06 07:00:19 1 4 2019-12-06 07:35:19 1 6 2019-12-06 07:35:19 2 2 2019-12-06 07:45:19 1 7 2019-12-06 07:45:19 2 1 2019-12-06 07:55:20 1 7 2019-12-06 07:55:20 2 1 2019-12-06 08:00:19 1 7 2019-12-06 08:00:19 2 1 2019-12-06 08:05:19 1 7 2019-12-06 08:05:19 2 1 2019-12-06 08:10:19 1 9 2019-12-06 08:10:19 2 1 2019-12-06 08:35:19 1 10 2019-12-06 08:35:19 2 1 2019-12-06 08:55:19 1 7 2019-12-06 08:55:19 2 1 2019-12-06 09:00:19 1 11 2019-12-06 09:00:19 2 1 2019-12-06 09:05:19 1 11 2019-12-06 09:05:19 2 1 2019-12-06 09:40:19 1 12 2019-12-06 09:40:19 2 2 2019-12-06 09:55:19 1 16 2019-12-04 23:10:19 1 16 2019-12-04 23:20:19 1 15 2019-12-05 00:00:19 1 12 2019-12-05 00:05:19 1 11 2019-12-05 00:15:19 1 9 2019-12-05 00:20:19 1 9 2019-12-05 01:15:19 1 10 2019-12-05 01:20:19 1 10 2019-12-05 01:25:19 1 9 2019-12-05 01:45:19 1 9 2019-12-05 01:50:19 1 10 2019-12-05 01:55:19 1 12 2019-12-05 02:05:19 1 8 2019-12-05 02:20:19 1 7 2019-12-05 02:30:19 1 6 2019-12-05 02:55:19 1 5 2019-12-05 03:15:19 1 5 2019-12-05 03:30:19 1 5 2019-12-05 03:40:19 1 5 2019-12-05 03:45:19 1 6 2019-12-05 03:50:19 1 5 2019-12-05 03:55:19 1 7 2019-12-05 04:15:19 1 4 2019-12-05 04:20:19 1 5 2019-12-05 04:25:19 1 4 2019-12-05 04:30:19 1 4 2019-12-05 04:45:19 1 4 2019-12-05 04:55:20 1 5 2019-12-05 05:05:19 1 4 2019-12-05 05:30:19 1 4 2019-12-05 05:55:19 1 5 2019-12-05 06:05:19 1 9 2019-12-05 06:25:19 1 6 2019-12-05 06:30:19 1 7 2019-12-05 06:40:19 1 6 2019-12-05 07:00:19 1 8 2019-12-05 07:05:19 1 7 2019-12-05 07:10:19 1 6 2019-12-05 07:15:19 1 5 2019-12-05 07:40:19 1 9 2019-12-05 07:45:19 1 10 2019-12-05 07:50:19 1 8 2019-12-05 08:15:19 1 9 2019-12-05 08:20:19 1 9 2019-12-05 08:30:19 1 8 2019-12-05 08:35:19 1 12 2019-12-05 08:45:19 1 12 2019-12-05 08:55:19 1 8 2019-12-05 09:05:19 1 7 2019-12-05 09:15:19 1 7 2019-12-05 09:15:19 2 1 2019-12-05 09:55:19 1 14 2019-12-05 10:10:19 1 9 2019-12-05 10:20:19 1 9 2019-12-05 10:25:19 1 9 2019-12-05 10:45:19 1 16 2019-12-05 11:10:19 1 16 2019-12-05 11:10:19 2 1 2019-12-05 11:20:19 1 15 2019-12-05 11:20:19 2 1 2019-12-05 11:40:19 1 17 2019-12-05 12:05:19 1 15 2019-12-05 12:20:19 1 13 2019-12-05 12:30:19 1 13 2019-12-05 12:35:19 1 14 2019-12-05 12:45:19 1 11 2019-12-05 13:05:19 1 11 2019-12-05 13:10:19 1 12 2019-12-05 13:10:19 2 1 2019-12-05 13:15:19 1 13 2019-12-05 14:10:19 1 14 2019-12-05 14:10:19 2 1 2019-12-05 14:30:19 1 13 2019-12-05 14:55:19 1 11 2019-12-05 14:55:19 2 1 2019-12-05 15:20:19 1 11 2019-12-05 15:40:19 1 11 2019-12-05 15:50:19 1 8 2019-12-05 15:50:19 2 1 2019-12-05 16:25:19 1 7 2019-12-05 16:25:19 2 1 2019-12-05 16:30:19 1 10 2019-12-05 16:30:19 2 1 2019-12-05 17:20:19 1 12 2019-12-05 17:20:19 2 2 2019-12-05 17:30:19 1 12 2019-12-05 18:10:19 1 13 2019-12-05 18:15:19 1 15 2019-12-05 18:25:19 1 16 2019-12-05 18:30:19 1 16 2019-12-05 19:10:19 1 12 2019-12-05 19:10:19 2 2 2019-12-05 19:15:19 1 13 2019-12-05 19:15:19 2 2 2019-12-05 19:20:19 1 12 2019-12-05 19:20:19 2 2 2019-12-05 20:00:19 1 12 2019-12-05 20:00:19 2 2 2019-12-05 20:15:19 1 14 2019-12-05 20:15:19 2 3 2019-12-05 20:35:19 1 13 2019-12-05 20:35:19 2 2 2019-12-05 20:55:19 1 12 2019-12-05 20:55:19 2 2 2019-12-05 21:15:19 1 13 2019-12-05 21:15:19 2 1 2019-12-05 21:20:20 1 14 2019-12-05 21:20:20 2 1 2019-12-05 21:35:19 1 14 2019-12-05 21:55:19 1 13 2019-12-05 22:05:19 1 14 2019-12-05 22:10:19 1 14 2019-12-05 22:35:19 1 18 2019-12-05 23:00:19 1 12 2019-12-05 23:00:19 2 1 2019-12-05 23:30:19 1 15 2019-12-05 23:30:19 2 1 2019-12-05 23:40:19 1 10 2019-12-05 23:40:19 2 1 2019-12-05 23:45:19 1 10 2019-12-05 23:45:19 2 1 2019-12-06 00:15:19 1 13 2019-12-06 00:15:19 2 2 2019-12-06 00:20:19 1 14 2019-12-06 00:20:19 2 2 2019-12-06 00:30:19 1 11 2019-12-06 00:30:19 2 3 2019-12-06 00:50:19 1 11 2019-12-06 00:50:19 2 1 2019-12-06 01:00:19 1 12 2019-12-06 01:00:19 2 1 2019-12-06 01:10:19 1 9 2019-12-06 01:40:19 1 10 2019-12-06 01:45:19 1 9 2019-12-06 02:00:19 1 13 2019-12-06 02:30:19 1 9 2019-12-06 02:45:19 1 7 2019-12-06 03:10:19 1 8 2019-12-06 03:30:19 1 7 2019-12-06 03:50:19 1 6 2019-12-06 04:25:19 1 5 2019-12-06 04:35:19 1 6 2019-12-06 04:40:19 1 6 2019-12-06 04:55:19 1 6 2019-12-06 05:05:19 1 5 2019-12-06 05:15:19 1 5 2019-12-06 05:15:19 2 1 2019-12-06 05:20:19 1 5 2019-12-06 05:50:19 1 5 2019-12-06 05:55:19 1 5 2019-12-06 06:00:19 1 5 2019-12-06 06:20:19 1 5 2019-12-06 06:25:19 1 5 2019-12-06 06:40:19 1 5 2019-12-06 06:45:19 1 6 2019-12-06 07:05:19 1 6 2019-12-06 07:15:19 1 6 2019-12-06 07:20:19 1 6 2019-12-06 07:20:19 2 1 2019-12-06 07:25:19 1 6 2019-12-06 07:25:19 2 1 2019-12-06 07:30:19 1 5 2019-12-06 07:30:19 2 1 2019-12-06 07:50:19 1 7 2019-12-06 07:50:19 2 1 2019-12-06 08:20:19 1 10 2019-12-06 08:20:19 2 1 2019-12-06 08:30:19 1 9 2019-12-06 08:30:19 2 1 2019-12-06 08:45:19 1 10 2019-12-06 08:45:19 2 1 2019-12-06 09:10:19 1 8 2019-12-06 09:10:19 2 1 2019-12-06 09:15:19 1 11 2019-12-06 09:15:19 2 1 2019-12-06 09:20:19 1 10 2019-12-06 09:20:19 2 2 2019-12-06 09:25:19 1 13 2019-12-06 09:25:19 2 2 2019-12-06 09:30:19 1 15 2019-12-06 09:30:19 2 2 2019-12-06 10:00:19 1 14 2019-12-06 10:00:19 2 1 2019-12-06 10:05:19 1 14 2019-12-06 10:05:19 2 1 2019-12-06 10:10:19 1 14 2019-12-06 10:10:19 2 1 2019-12-06 10:25:19 1 12 2019-12-06 10:25:19 2 2 2019-12-06 10:50:19 1 12 2019-12-06 10:50:19 2 3 2019-12-06 10:55:19 1 12 2019-12-06 10:55:19 2 3 2019-12-06 11:05:19 1 14 2019-12-06 11:05:19 2 4 2019-12-06 11:25:19 1 10 2019-12-06 11:25:19 2 4 2019-12-06 11:40:19 1 10 2019-12-06 11:40:19 2 4 2019-12-06 11:50:19 1 10 2019-12-06 11:50:19 2 2 2019-12-06 11:55:19 1 11 2019-12-06 11:55:19 2 1 2019-12-06 12:50:19 1 17 2019-12-06 12:50:19 2 1 2019-12-06 12:55:19 1 14 2019-12-06 12:55:19 2 1 2019-12-06 13:05:20 1 15 2019-12-06 13:05:20 2 1 2019-12-06 13:35:19 1 16 2019-12-06 13:35:19 2 1 2019-12-06 13:55:19 1 17 2019-12-06 14:25:19 1 16 2019-12-06 14:25:19 2 1 2019-12-06 14:40:19 1 17 2019-12-06 14:40:19 2 1 2019-12-06 14:45:19 1 20 2019-12-06 14:45:19 2 1 2019-12-06 15:20:19 1 14 2019-12-06 15:55:19 1 18 2019-12-06 15:55:19 2 1 2019-12-06 16:15:19 1 16 2019-12-06 16:15:19 2 1 2019-12-06 16:30:19 1 15 2019-12-06 16:30:19 2 2 2019-12-06 16:40:19 1 19 2019-12-06 16:40:19 2 2 2019-12-06 17:00:19 1 19 2019-12-06 17:00:19 2 2 2019-12-06 17:15:19 1 16 2019-12-06 17:15:19 2 2 2019-12-06 17:25:19 1 14 2019-12-06 17:25:19 2 2 2019-12-06 17:40:19 1 14 2019-12-06 17:40:19 2 2 2019-12-06 18:00:19 1 16 2019-12-06 18:00:19 2 1 2019-12-06 18:25:19 1 18 2019-12-06 18:25:19 2 1 2019-12-06 18:35:19 1 22 2019-12-06 18:35:19 2 1 2019-12-06 18:55:19 1 17 2019-12-06 19:10:19 1 16 2019-12-06 19:20:19 1 14 2019-12-06 19:20:19 2 1 2019-12-06 19:30:19 1 14 2019-12-06 19:30:19 2 1 2019-12-06 19:40:19 1 13 2019-12-06 19:40:19 2 1 2019-12-06 19:50:19 1 17 2019-12-06 20:05:19 1 14 2019-12-06 20:10:19 1 14 2019-12-06 20:15:19 1 12 2019-12-06 20:40:19 1 17 2019-12-06 20:40:19 2 1 2019-12-06 21:20:19 1 18 2019-12-06 21:25:19 1 19 2019-12-06 21:40:19 1 19 2019-12-06 21:45:19 1 19 2019-12-06 21:50:19 1 21 2019-12-06 21:55:19 1 22 2019-12-06 22:00:19 1 23 2019-12-06 22:00:19 2 1 2019-12-06 22:05:19 1 23 2019-12-06 22:15:19 1 21 2019-12-06 22:55:19 1 19 2019-12-06 22:55:19 2 1 2019-12-06 23:15:19 1 18 2019-12-06 23:15:19 2 1 2019-12-06 23:25:19 1 16 2019-12-06 23:25:19 2 2 2019-12-06 23:40:19 1 14 2019-12-06 23:40:19 2 2 2019-12-07 00:05:19 1 11 2019-12-07 00:25:19 1 10 2019-12-07 00:30:19 1 11 2019-12-07 00:35:19 1 12 2019-12-07 00:40:19 1 11 2019-12-07 00:50:19 1 11 2019-12-07 01:15:19 1 9 2019-12-07 01:25:19 1 9 2019-12-07 01:45:19 1 8 2019-12-07 01:50:19 1 7 2019-12-07 02:05:19 1 6 2019-12-07 02:10:19 1 7 2019-12-07 02:30:19 1 7 2019-12-07 03:20:19 1 7 2019-12-07 03:30:19 1 7 2019-12-07 03:40:19 1 8 2019-12-07 03:45:19 1 6 2019-12-07 04:00:19 1 4 2019-12-07 04:05:19 1 4 2019-12-07 04:15:19 1 3 2019-12-07 04:20:19 1 3 2019-12-07 04:25:19 1 4 2019-12-07 04:45:19 1 4 2019-12-07 05:15:19 1 3 2019-12-07 05:25:19 1 4 2019-12-07 05:45:19 1 4 2019-12-07 06:00:19 1 4 2019-12-07 06:35:19 1 5 2019-12-07 06:55:19 1 5 2019-12-07 07:05:19 1 6 2019-12-07 07:25:19 1 10 2019-12-07 07:25:19 2 1 2019-12-07 07:30:19 1 6 2019-12-07 07:30:19 2 1 2019-12-07 07:40:19 1 7 2019-12-07 07:40:19 2 1 2019-12-07 08:00:19 1 8 2019-12-07 08:05:19 1 10 2019-12-07 08:15:19 1 8 2019-12-07 08:20:19 1 9 2019-12-07 08:20:19 2 1 2019-12-07 08:25:19 1 9 2019-12-07 08:35:19 1 12 2019-12-07 08:35:19 2 3 2019-12-07 08:45:19 1 15 2019-12-07 08:45:19 2 2 2019-12-07 09:10:19 1 17 2019-12-07 09:10:19 2 1 2019-12-07 09:20:20 1 12 2019-12-07 09:20:20 2 1 2019-12-07 09:40:19 1 10 2019-12-07 09:40:19 2 4 2019-12-07 09:50:19 1 14 2019-12-07 09:50:19 2 3 2019-12-07 09:55:19 1 11 2019-12-07 09:55:19 2 3 2019-12-07 10:00:20 1 13 2019-12-07 10:00:20 2 3 2019-12-07 10:10:19 1 14 2019-12-07 10:10:19 2 3 2019-12-07 10:15:19 1 15 2019-12-07 10:15:19 2 3 2019-12-07 10:25:19 1 11 2019-12-07 10:25:19 2 3 2019-12-07 10:30:19 1 10 2019-12-07 10:30:19 2 3 2019-12-07 10:35:19 1 12 2019-12-07 10:35:19 2 3 2019-12-07 10:40:19 1 10 2019-12-07 10:40:19 2 3 2019-12-07 10:50:19 1 13 2019-12-07 10:50:19 2 2 2019-12-07 10:55:19 1 13 2019-12-07 10:55:19 2 2 2019-12-07 11:05:19 1 10 2019-12-07 11:05:19 2 3 2019-12-07 11:10:19 1 11 2019-12-07 11:10:19 2 3 2019-12-07 11:20:19 1 11 2019-12-07 11:20:19 2 3 2019-12-07 11:45:19 1 10 2019-12-07 11:45:19 2 2 2019-12-07 12:20:19 1 15 2019-12-07 12:20:19 2 3 2019-12-07 12:25:19 1 14 2019-12-07 12:25:19 2 4 2019-12-07 12:40:19 1 13 2019-12-07 12:40:19 2 2 2019-12-07 13:15:19 1 14 2019-12-07 13:15:19 2 2 2019-12-07 13:30:19 1 11 2019-12-07 13:30:19 2 2 2019-12-07 13:35:19 1 12 2019-12-07 13:35:19 2 2 2019-12-07 13:40:19 1 13 2019-12-07 13:40:19 2 1 2019-12-07 13:55:19 1 16 2019-12-06 10:15:19 1 11 2019-12-06 10:15:19 2 1 2019-12-06 10:30:19 1 12 2019-12-06 10:30:19 2 2 2019-12-06 10:35:19 1 13 2019-12-06 10:35:19 2 2 2019-12-06 10:45:19 1 12 2019-12-06 10:45:19 2 4 2019-12-06 11:00:19 1 12 2019-12-06 11:00:19 2 4 2019-12-06 11:15:19 1 14 2019-12-06 11:15:19 2 3 2019-12-06 11:20:19 1 13 2019-12-06 11:20:19 2 3 2019-12-06 12:05:19 1 11 2019-12-06 12:05:19 2 1 2019-12-06 12:15:19 1 13 2019-12-06 12:15:19 2 1 2019-12-06 12:20:19 1 15 2019-12-06 12:20:19 2 1 2019-12-06 12:30:19 1 14 2019-12-06 12:30:19 2 1 2019-12-06 12:35:19 1 16 2019-12-06 12:35:19 2 1 2019-12-06 12:40:19 1 15 2019-12-06 12:40:19 2 2 2019-12-06 12:45:19 1 15 2019-12-06 12:45:19 2 2 2019-12-06 13:00:19 1 14 2019-12-06 13:00:19 2 1 2019-12-06 13:10:19 1 12 2019-12-06 13:10:19 2 1 2019-12-06 13:20:19 1 18 2019-12-06 13:25:19 1 19 2019-12-06 13:40:19 1 16 2019-12-06 13:40:19 2 1 2019-12-06 13:50:20 1 17 2019-12-06 14:05:19 1 18 2019-12-06 14:05:19 2 1 2019-12-06 14:20:19 1 15 2019-12-06 14:20:19 2 1 2019-12-06 14:35:19 1 20 2019-12-06 14:50:19 1 20 2019-12-06 14:50:19 2 1 2019-12-06 14:55:19 1 18 2019-12-06 14:55:19 2 1 2019-12-06 15:05:19 1 17 2019-12-06 15:10:19 1 16 2019-12-06 15:15:19 1 15 2019-12-06 15:15:19 2 1 2019-12-06 15:25:19 1 16 2019-12-06 15:35:19 1 16 2019-12-06 15:35:19 2 1 2019-12-06 15:50:19 1 18 2019-12-06 15:50:19 2 1 2019-12-06 16:10:19 1 14 2019-12-06 16:10:19 2 1 2019-12-06 16:20:19 1 15 2019-12-06 16:20:19 2 1 2019-12-06 16:45:19 1 19 2019-12-06 16:45:19 2 2 2019-12-06 16:55:19 1 21 2019-12-06 16:55:19 2 2 2019-12-06 17:20:19 1 17 2019-12-06 17:20:19 2 2 2019-12-06 17:35:19 1 15 2019-12-06 17:35:19 2 2 2019-12-06 17:45:19 1 13 2019-12-06 17:45:19 2 2 2019-12-06 17:55:19 1 13 2019-12-06 17:55:19 2 2 2019-12-06 18:15:19 1 15 2019-12-06 18:15:19 2 1 2019-12-06 18:30:19 1 20 2019-12-06 18:30:19 2 1 2019-12-06 18:40:19 1 20 2019-12-06 18:40:19 2 1 2019-12-06 18:45:19 1 16 2019-12-06 18:45:19 2 1 2019-12-06 19:00:19 1 18 2019-12-06 19:00:19 2 1 2019-12-06 19:35:19 1 12 2019-12-06 19:35:19 2 1 2019-12-06 19:45:19 1 14 2019-12-06 19:45:19 2 2 2019-12-06 20:20:19 1 13 2019-12-06 20:25:19 1 15 2019-12-06 20:30:19 1 13 2019-12-06 20:45:19 1 16 2019-12-06 20:50:19 1 18 2019-12-06 20:50:19 2 1 2019-12-06 21:00:19 1 16 2019-12-06 21:00:19 2 1 2019-12-06 21:05:19 1 18 2019-12-06 21:05:19 2 2 2019-12-06 21:35:19 1 20 2019-12-06 22:25:19 1 21 2019-12-06 22:30:19 1 24 2019-12-06 22:40:19 1 21 2019-12-06 22:40:19 2 1 2019-12-06 22:50:19 1 21 2019-12-06 22:50:19 2 1 2019-12-06 23:00:19 1 17 2019-12-06 23:00:19 2 1 2019-12-06 23:05:19 1 19 2019-12-06 23:05:19 2 1 2019-12-06 23:10:19 1 19 2019-12-06 23:10:19 2 1 2019-12-06 23:30:19 1 16 2019-12-06 23:30:19 2 1 2019-12-07 00:00:19 1 12 2019-12-07 00:45:19 1 10 2019-12-07 00:55:19 1 11 2019-12-07 01:10:19 1 11 2019-12-07 01:20:19 1 10 2019-12-07 01:30:19 1 9 2019-12-07 01:40:19 1 7 2019-12-07 01:55:19 1 7 2019-12-07 02:00:19 1 8 2019-12-07 02:20:19 1 5 2019-12-07 02:35:19 1 8 2019-12-07 02:40:19 1 7 2019-12-07 02:55:19 1 5 2019-12-07 03:10:19 1 8 2019-12-07 03:15:19 1 7 2019-12-07 03:25:19 1 7 2019-12-07 03:35:21 1 8 2019-12-07 04:10:19 1 3 2019-12-07 04:30:20 1 5 2019-12-07 04:35:19 1 4 2019-12-07 04:50:19 1 4 2019-12-07 04:55:19 1 4 2019-12-07 05:20:19 1 6 2019-12-07 05:30:19 1 5 2019-12-07 05:35:19 1 5 2019-12-07 05:40:19 1 5 2019-12-07 06:15:19 1 4 2019-12-07 07:00:19 1 6 2019-12-07 07:15:19 1 6 2019-12-07 07:20:19 1 8 2019-12-07 07:20:19 2 1 2019-12-07 07:35:19 1 6 2019-12-07 07:35:19 2 1 2019-12-07 08:30:19 1 11 2019-12-07 08:30:19 2 3 2019-12-07 09:00:19 1 18 2019-12-07 09:00:19 2 1 2019-12-07 09:15:20 1 14 2019-12-07 09:15:20 2 1 2019-12-07 09:25:19 1 11 2019-12-07 09:25:19 2 1 2019-12-07 09:35:19 1 11 2019-12-07 09:35:19 2 3 2019-12-07 09:45:19 1 12 2019-12-07 09:45:19 2 4 2019-12-07 10:20:19 1 14 2019-12-07 10:20:19 2 3 2019-12-07 10:45:19 1 14 2019-12-07 10:45:19 2 3 2019-12-07 11:15:19 1 14 2019-12-07 11:15:19 2 3 2019-12-07 11:35:19 1 10 2019-12-07 11:35:19 2 2 2019-12-07 11:40:19 1 10 2019-12-07 11:40:19 2 2 2019-12-07 12:00:19 1 13 2019-12-07 12:00:19 2 2 2019-12-07 12:10:19 1 13 2019-12-07 12:10:19 2 2 2019-12-07 12:30:19 1 12 2019-12-07 12:30:19 2 3 2019-12-07 12:45:19 1 12 2019-12-07 12:45:19 2 2 2019-12-07 12:50:19 1 14 2019-12-07 12:50:19 2 2 2019-12-07 12:55:19 1 16 2019-12-07 12:55:19 2 2 2019-12-07 13:00:19 1 13 2019-12-07 13:00:19 2 2 2019-12-07 13:05:19 1 17 2019-12-07 13:05:19 2 2 2019-12-07 13:10:19 1 16 2019-12-07 13:10:19 2 2 2019-12-07 13:25:19 1 12 2019-12-07 13:25:19 2 2 2019-12-06 10:20:19 1 10 2019-12-06 10:20:19 2 2 2019-12-06 10:40:19 1 15 2019-12-06 10:40:19 2 2 2019-12-06 11:10:19 1 11 2019-12-06 11:10:19 2 3 2019-12-06 11:30:19 1 12 2019-12-06 11:30:19 2 4 2019-12-06 11:35:19 1 13 2019-12-06 11:35:19 2 4 2019-12-06 11:45:19 1 11 2019-12-06 11:45:19 2 4 2019-12-06 12:00:19 1 11 2019-12-06 12:00:19 2 1 2019-12-06 12:10:19 1 13 2019-12-06 12:10:19 2 1 2019-12-06 12:25:19 1 12 2019-12-06 12:25:19 2 1 2019-12-06 13:15:19 1 14 2019-12-06 13:30:19 1 16 2019-12-06 13:45:19 1 17 2019-12-06 14:00:19 1 18 2019-12-06 14:00:19 2 1 2019-12-06 14:10:19 1 17 2019-12-06 14:10:19 2 2 2019-12-06 14:15:19 1 16 2019-12-06 14:15:19 2 2 2019-12-06 14:30:19 1 18 2019-12-06 15:00:19 1 16 2019-12-06 15:30:19 1 14 2019-12-06 15:30:19 2 1 2019-12-06 15:40:19 1 14 2019-12-06 15:40:19 2 1 2019-12-06 15:45:19 1 17 2019-12-06 15:45:19 2 1 2019-12-06 16:00:19 1 18 2019-12-06 16:00:19 2 1 2019-12-06 16:05:19 1 14 2019-12-06 16:05:19 2 1 2019-12-06 16:25:19 1 16 2019-12-06 16:25:19 2 1 2019-12-06 16:35:19 1 15 2019-12-06 16:35:19 2 3 2019-12-06 16:50:19 1 18 2019-12-06 16:50:19 2 2 2019-12-06 17:05:19 1 19 2019-12-06 17:05:19 2 2 2019-12-06 17:10:19 1 18 2019-12-06 17:10:19 2 2 2019-12-06 17:30:19 1 18 2019-12-06 17:30:19 2 2 2019-12-06 17:50:19 1 14 2019-12-06 17:50:19 2 3 2019-12-06 18:05:19 1 17 2019-12-06 18:05:19 2 1 2019-12-06 18:10:19 1 16 2019-12-06 18:10:19 2 1 2019-12-06 18:20:19 1 18 2019-12-06 18:20:19 2 1 2019-12-06 18:50:19 1 17 2019-12-06 19:05:19 1 16 2019-12-06 19:15:19 1 16 2019-12-06 19:25:19 1 14 2019-12-06 19:25:19 2 1 2019-12-06 19:55:19 1 13 2019-12-06 20:00:19 1 15 2019-12-06 20:35:19 1 14 2019-12-06 20:55:19 1 15 2019-12-06 20:55:19 2 1 2019-12-06 21:10:19 1 17 2019-12-06 21:10:19 2 1 2019-12-06 21:15:19 1 19 2019-12-06 21:15:19 2 1 2019-12-06 21:30:19 1 18 2019-12-06 21:30:19 2 1 2019-12-06 22:10:19 1 22 2019-12-06 22:20:19 1 23 2019-12-06 22:35:19 1 25 2019-12-06 22:35:19 2 1 2019-12-06 22:45:19 1 21 2019-12-06 22:45:19 2 1 2019-12-06 23:20:19 1 19 2019-12-06 23:20:19 2 1 2019-12-06 23:35:19 1 14 2019-12-06 23:35:19 2 2 2019-12-06 23:45:19 1 13 2019-12-06 23:45:19 2 2 2019-12-06 23:50:19 1 14 2019-12-06 23:55:20 1 13 2019-12-07 00:10:19 1 12 2019-12-07 00:15:19 1 11 2019-12-07 00:20:19 1 11 2019-12-07 01:00:19 1 11 2019-12-07 01:05:19 1 11 2019-12-07 01:35:19 1 7 2019-12-07 02:15:19 1 7 2019-12-07 02:25:19 1 7 2019-12-07 02:45:19 1 7 2019-12-07 02:50:19 1 7 2019-12-07 03:00:19 1 7 2019-12-07 03:05:19 1 6 2019-12-07 03:50:19 1 5 2019-12-07 03:55:19 1 4 2019-12-07 04:40:19 1 3 2019-12-07 05:00:19 1 6 2019-12-07 05:05:19 1 5 2019-12-07 05:10:19 1 5 2019-12-07 05:50:19 1 3 2019-12-07 05:55:19 1 3 2019-12-07 06:05:19 1 4 2019-12-07 06:10:19 1 4 2019-12-07 06:20:19 1 5 2019-12-07 06:25:19 1 5 2019-12-07 06:30:19 1 6 2019-12-07 06:40:19 1 6 2019-12-07 06:45:19 1 6 2019-12-07 06:50:19 1 5 2019-12-07 07:10:19 1 6 2019-12-07 07:45:19 1 7 2019-12-07 07:45:19 2 1 2019-12-07 07:50:19 1 6 2019-12-07 07:55:19 1 6 2019-12-07 08:10:19 1 7 2019-12-07 08:40:19 1 11 2019-12-07 08:40:19 2 2 2019-12-07 08:50:19 1 13 2019-12-07 08:50:19 2 1 2019-12-07 08:55:19 1 15 2019-12-07 08:55:19 2 1 2019-12-07 09:05:19 1 15 2019-12-07 09:05:19 2 1 2019-12-07 09:30:19 1 12 2019-12-07 09:30:19 2 2 2019-12-07 10:05:19 1 14 2019-12-07 10:05:19 2 3 2019-12-07 11:00:19 1 10 2019-12-07 11:00:19 2 2 2019-12-07 11:25:19 1 10 2019-12-07 11:25:19 2 3 2019-12-07 11:30:19 1 8 2019-12-07 11:30:19 2 2 2019-12-07 11:50:19 1 12 2019-12-07 11:50:19 2 2 2019-12-07 11:55:19 1 12 2019-12-07 11:55:19 2 2 2019-12-07 12:05:19 1 12 2019-12-07 12:05:19 2 2 2019-12-07 12:15:19 1 15 2019-12-07 12:15:19 2 2 2019-12-07 12:35:19 1 12 2019-12-07 12:35:19 2 3 2019-12-07 13:20:19 1 16 2019-12-07 13:20:19 2 2 2019-12-07 13:45:19 1 13 2019-12-07 13:45:19 2 2 2019-12-07 13:50:19 1 15 2019-12-07 13:50:19 2 2 2019-12-07 13:55:19 2 2 2019-12-07 14:00:19 1 12 2019-12-07 14:00:19 2 2 2019-12-07 14:05:19 1 12 2019-12-07 14:05:19 2 2 2019-12-07 14:10:20 1 13 2019-12-07 14:10:20 2 1 2019-12-07 14:15:19 1 14 2019-12-07 14:15:19 2 1 2019-12-07 14:20:19 1 16 2019-12-07 14:20:19 2 1 2019-12-07 14:25:19 1 16 2019-12-07 14:25:19 2 2 2019-12-07 14:30:19 1 15 2019-12-07 14:30:19 2 1 2019-12-07 14:35:19 1 13 2019-12-07 14:40:19 1 14 2019-12-07 14:45:19 1 14 2019-12-07 14:50:19 1 14 2019-12-07 14:55:19 1 14 2019-12-07 15:00:19 1 14 2019-12-07 15:05:19 1 17 2019-12-07 15:10:19 1 13 2019-12-07 15:15:19 1 13 2019-12-07 15:20:19 1 13 2019-12-07 15:25:19 1 12 2019-12-07 15:30:19 1 12 2019-12-07 15:35:19 1 11 2019-12-07 15:40:19 1 13 2019-12-07 15:45:19 1 15 2019-12-07 15:45:19 2 1 2019-12-07 15:50:19 1 11 2019-12-07 15:50:19 2 1 2019-12-07 15:55:19 1 11 2019-12-07 15:55:19 2 1 2019-12-07 16:15:19 1 12 2019-12-07 16:15:19 2 2 2019-12-07 16:30:19 1 6 2019-12-07 16:30:19 2 1 2019-12-07 16:35:19 1 8 2019-12-07 16:35:19 2 1 2019-12-07 16:45:19 1 13 2019-12-07 16:45:19 2 2 2019-12-07 16:55:19 1 12 2019-12-07 16:55:19 2 3 2019-12-07 17:10:19 1 15 2019-12-07 17:10:19 2 2 2019-12-07 17:15:19 1 18 2019-12-07 17:15:19 2 1 2019-12-07 17:25:19 1 17 2019-12-07 17:25:19 2 2 2019-12-07 18:20:19 1 12 2019-12-07 18:25:19 1 14 2019-12-07 18:30:19 1 11 2019-12-07 18:30:19 2 1 2019-12-07 18:35:19 1 13 2019-12-07 18:35:19 2 1 2019-12-07 18:40:19 1 14 2019-12-07 19:25:19 1 13 2019-12-07 19:25:19 2 3 2019-12-07 19:35:19 1 16 2019-12-07 19:35:19 2 1 2019-12-07 20:25:19 1 15 2019-12-07 20:25:19 2 1 2019-12-07 20:45:19 1 16 2019-12-07 20:50:19 1 18 2019-12-07 21:10:19 1 18 2019-12-07 21:10:19 2 1 2019-12-07 21:25:19 1 12 2019-12-07 21:25:19 2 1 2019-12-07 21:45:19 1 17 2019-12-07 21:45:19 2 1 2019-12-07 21:50:19 1 20 2019-12-07 21:50:19 2 1 2019-12-07 22:00:19 1 17 2019-12-07 22:00:19 2 1 2019-12-07 22:30:19 1 19 2019-12-07 22:30:19 2 1 2019-12-07 22:35:19 1 18 2019-12-07 22:35:19 2 1 2019-12-07 22:45:19 1 16 2019-12-07 22:45:19 2 1 2019-12-07 22:55:19 1 16 2019-12-07 23:15:19 1 16 2019-12-07 23:15:19 2 1 2019-12-07 23:30:19 1 12 2019-12-07 23:30:19 2 1 2019-12-07 23:50:19 1 13 2019-12-07 23:50:19 2 1 2019-12-08 00:20:19 1 11 2019-12-08 00:20:19 2 1 2019-12-08 00:30:19 1 12 2019-12-08 00:30:19 2 1 2019-12-08 00:40:19 1 10 2019-12-08 00:40:19 2 2 2019-12-08 00:45:19 1 11 2019-12-08 00:45:19 2 1 2019-12-08 00:55:19 1 10 2019-12-08 00:55:19 2 1 2019-12-08 01:15:19 1 9 2019-12-08 01:25:19 1 9 2019-12-08 01:35:19 1 8 2019-12-08 01:40:19 1 8 2019-12-08 01:55:19 1 7 2019-12-08 02:25:19 1 7 2019-12-08 02:55:19 1 6 2019-12-08 03:05:19 1 6 2019-12-08 03:15:19 1 6 2019-12-08 03:20:19 1 6 2019-12-08 04:00:19 1 5 2019-12-08 04:05:19 1 5 2019-12-08 04:10:19 1 5 2019-12-08 04:45:19 1 5 2019-12-08 05:15:19 1 4 2019-12-08 05:20:19 1 4 2019-12-08 05:30:19 1 5 2019-12-08 05:35:19 1 5 2019-12-08 05:45:19 1 5 2019-12-08 05:55:19 1 8 2019-12-08 06:05:19 1 7 2019-12-08 06:30:19 1 7 2019-12-08 07:25:19 1 11 2019-12-08 07:40:19 1 9 2019-12-08 07:45:19 1 10 2019-12-08 08:05:19 1 11 2019-12-08 08:05:19 2 1 2019-12-08 08:10:19 1 10 2019-12-08 08:10:19 2 1 2019-12-08 08:40:19 1 12 2019-12-08 08:50:19 1 12 2019-12-08 08:50:19 2 1 2019-12-08 09:00:19 1 11 2019-12-08 09:00:19 2 1 2019-12-08 09:05:19 1 10 2019-12-08 09:05:19 2 1 2019-12-08 09:10:19 1 11 2019-12-08 09:15:19 1 14 2019-12-08 09:25:19 1 13 2019-12-08 09:35:19 1 16 2019-12-08 09:40:19 1 16 2019-12-08 09:40:19 2 2 2019-12-08 10:00:19 1 14 2019-12-08 10:00:19 2 1 2019-12-08 10:15:19 1 16 2019-12-08 10:15:19 2 1 2019-12-08 11:00:19 1 11 2019-12-08 11:00:19 2 1 2019-12-08 11:10:19 1 17 2019-12-08 11:40:19 1 15 2019-12-08 11:40:19 2 1 2019-12-08 12:00:19 1 12 2019-12-08 12:00:19 2 1 2019-12-08 12:05:19 1 11 2019-12-08 12:05:19 2 1 2019-12-08 12:40:19 1 17 2019-12-08 12:55:19 1 12 2019-12-08 13:15:19 1 14 2019-12-08 13:30:19 1 14 2019-12-08 13:40:19 1 13 2019-12-08 13:40:19 2 1 2019-12-08 13:50:19 1 13 2019-12-08 13:50:19 2 1 2019-12-08 13:55:19 1 13 2019-12-08 13:55:19 2 1 2019-12-08 14:15:19 1 12 2019-12-08 14:15:19 2 2 2019-12-08 14:25:19 1 16 2019-12-08 14:25:19 2 2 2019-12-08 14:55:19 1 15 2019-12-08 14:55:19 2 1 2019-12-08 15:05:19 1 12 2019-12-08 15:05:19 2 3 2019-12-08 15:15:19 1 14 2019-12-08 15:15:19 2 2 2019-12-08 15:20:19 1 12 2019-12-08 15:20:19 2 1 2019-12-08 15:40:19 1 13 2019-12-08 15:40:19 2 1 2019-12-08 15:45:19 1 14 2019-12-08 15:45:19 2 1 2019-12-08 16:10:19 1 13 2019-12-08 16:10:19 2 1 2019-12-08 16:30:19 1 13 2019-12-08 16:30:19 2 2 2019-12-08 16:35:19 1 11 2019-12-08 16:35:19 2 1 2019-12-08 16:40:19 1 11 2019-12-08 16:40:19 2 1 2019-12-08 16:55:19 1 16 2019-12-08 16:55:19 2 1 2019-12-08 17:00:19 1 15 2019-12-08 17:00:19 2 1 2019-12-08 17:05:19 1 15 2019-12-08 17:05:19 2 2 2019-12-08 17:10:19 1 12 2019-12-08 17:10:19 2 2 2019-12-08 17:20:19 1 15 2019-12-08 17:25:19 1 17 2019-12-08 17:25:19 2 1 2019-12-08 17:30:19 1 14 2019-12-08 17:45:19 1 12 2019-12-08 17:55:19 1 15 2019-12-08 18:30:19 1 11 2019-12-08 18:30:19 2 1 2019-12-08 18:35:19 1 10 2019-12-08 18:35:19 2 1 2019-12-08 18:55:19 1 10 2019-12-08 18:55:19 2 1 2019-12-08 19:15:19 1 14 2019-12-08 19:15:19 2 2 2019-12-08 19:45:19 1 12 2019-12-08 19:45:19 2 2 2019-12-08 19:55:19 1 14 2019-12-07 16:00:19 1 11 2019-12-07 16:00:19 2 2 2019-12-07 16:05:19 1 12 2019-12-07 16:05:19 2 2 2019-12-07 16:10:19 1 13 2019-12-07 16:10:19 2 2 2019-12-07 16:40:19 1 8 2019-12-07 16:40:19 2 1 2019-12-07 17:00:19 1 15 2019-12-07 17:00:19 2 2 2019-12-07 17:05:19 1 15 2019-12-07 17:05:19 2 2 2019-12-07 17:30:19 1 20 2019-12-07 17:30:19 2 2 2019-12-07 17:45:19 1 16 2019-12-07 17:45:19 2 1 2019-12-07 18:45:19 1 14 2019-12-07 18:50:19 1 15 2019-12-07 18:55:19 1 12 2019-12-07 18:55:19 2 1 2019-12-07 19:05:19 1 15 2019-12-07 19:05:19 2 1 2019-12-07 19:10:19 1 13 2019-12-07 19:10:19 2 1 2019-12-07 19:30:19 1 11 2019-12-07 19:30:19 2 2 2019-12-07 19:40:19 1 15 2019-12-07 19:40:19 2 1 2019-12-07 19:50:19 1 10 2019-12-07 20:00:19 1 14 2019-12-07 20:10:19 1 15 2019-12-07 20:30:19 1 14 2019-12-07 20:30:19 2 1 2019-12-07 20:55:19 1 17 2019-12-07 21:05:19 1 19 2019-12-07 21:05:19 2 1 2019-12-07 21:15:19 1 18 2019-12-07 21:15:19 2 1 2019-12-07 21:20:19 1 19 2019-12-07 21:20:19 2 1 2019-12-07 21:30:19 1 13 2019-12-07 21:30:19 2 1 2019-12-07 21:35:19 1 17 2019-12-07 21:35:19 2 1 2019-12-07 21:40:19 1 14 2019-12-07 21:40:19 2 1 2019-12-07 21:55:19 1 19 2019-12-07 21:55:19 2 1 2019-12-07 22:15:19 1 17 2019-12-07 22:15:19 2 1 2019-12-07 22:25:19 1 18 2019-12-07 22:25:19 2 1 2019-12-07 22:50:19 1 16 2019-12-07 23:20:19 1 15 2019-12-07 23:20:19 2 1 2019-12-07 23:40:19 1 14 2019-12-07 23:40:19 2 1 2019-12-07 23:45:19 1 14 2019-12-07 23:45:19 2 1 2019-12-08 00:00:19 1 14 2019-12-08 00:00:19 2 1 2019-12-08 00:25:19 1 11 2019-12-08 00:25:19 2 1 2019-12-08 00:35:19 1 11 2019-12-08 00:35:19 2 1 2019-12-08 01:00:19 1 9 2019-12-08 01:00:19 2 1 2019-12-08 01:10:19 1 9 2019-12-08 01:20:19 1 10 2019-12-08 01:30:19 1 9 2019-12-08 02:00:19 1 7 2019-12-08 02:05:19 1 7 2019-12-08 02:10:19 1 7 2019-12-08 02:15:19 1 6 2019-12-08 02:20:19 1 6 2019-12-08 02:30:19 1 6 2019-12-08 02:40:19 1 6 2019-12-08 02:50:19 1 6 2019-12-08 03:25:19 1 7 2019-12-08 03:30:19 1 6 2019-12-08 04:15:19 1 5 2019-12-08 04:20:19 1 5 2019-12-08 04:35:19 1 5 2019-12-08 04:40:19 1 5 2019-12-08 04:55:19 1 4 2019-12-08 05:00:19 1 5 2019-12-08 05:05:19 1 5 2019-12-08 05:10:19 1 4 2019-12-08 05:40:19 1 5 2019-12-08 05:50:19 1 5 2019-12-08 06:10:19 1 7 2019-12-08 06:25:19 1 7 2019-12-08 06:50:19 1 9 2019-12-08 07:00:19 1 8 2019-12-08 07:10:19 1 8 2019-12-08 07:10:19 2 1 2019-12-08 07:20:19 1 10 2019-12-08 07:30:19 1 11 2019-12-08 07:35:19 1 8 2019-12-08 08:00:19 1 11 2019-12-08 08:00:19 2 1 2019-12-08 08:20:19 1 11 2019-12-08 08:20:19 2 1 2019-12-08 08:25:19 1 13 2019-12-08 08:25:19 2 1 2019-12-08 08:30:19 1 13 2019-12-08 08:45:19 1 12 2019-12-08 08:55:19 1 11 2019-12-08 08:55:19 2 1 2019-12-08 09:50:19 1 14 2019-12-08 09:50:19 2 2 2019-12-08 09:55:19 1 15 2019-12-08 09:55:19 2 1 2019-12-08 10:05:19 1 14 2019-12-08 10:05:19 2 1 2019-12-08 10:10:19 1 16 2019-12-08 10:10:19 2 1 2019-12-08 10:30:19 1 14 2019-12-08 10:30:19 2 1 2019-12-08 10:35:19 1 11 2019-12-08 10:35:19 2 1 2019-12-08 10:45:19 1 14 2019-12-08 10:45:19 2 1 2019-12-08 11:15:19 1 16 2019-12-08 11:15:19 2 1 2019-12-08 11:20:19 1 16 2019-12-08 11:20:19 2 1 2019-12-08 11:50:19 1 13 2019-12-08 11:50:19 2 1 2019-12-08 11:55:19 1 12 2019-12-08 11:55:19 2 1 2019-12-08 12:25:19 1 15 2019-12-08 12:25:19 2 2 2019-12-08 12:30:19 1 18 2019-12-08 12:50:19 1 15 2019-12-08 13:05:19 1 13 2019-12-08 13:10:19 1 12 2019-12-08 13:25:19 1 13 2019-12-08 14:00:19 1 13 2019-12-08 14:00:19 2 1 2019-12-08 14:40:19 1 10 2019-12-08 14:40:19 2 1 2019-12-08 14:45:19 1 9 2019-12-08 14:45:19 2 1 2019-12-08 15:10:19 1 13 2019-12-08 15:10:19 2 2 2019-12-08 15:30:19 1 13 2019-12-08 15:30:19 2 1 2019-12-08 15:35:19 1 14 2019-12-08 15:35:19 2 1 2019-12-08 16:05:19 1 15 2019-12-08 16:05:19 2 1 2019-12-08 16:15:19 1 15 2019-12-08 16:15:19 2 1 2019-12-08 16:20:19 1 15 2019-12-08 16:20:19 2 1 2019-12-08 16:50:19 1 13 2019-12-08 16:50:19 2 1 2019-12-08 17:35:19 1 14 2019-12-08 17:40:19 1 14 2019-12-08 18:05:19 1 15 2019-12-08 18:05:19 2 1 2019-12-08 18:10:19 1 16 2019-12-08 18:10:19 2 1 2019-12-08 18:15:19 1 15 2019-12-08 18:15:19 2 2 2019-12-08 18:20:19 1 13 2019-12-08 18:20:19 2 1 2019-12-08 18:25:20 1 9 2019-12-08 18:25:20 2 1 2019-12-08 18:40:19 1 14 2019-12-08 18:40:19 2 1 2019-12-08 19:10:19 1 14 2019-12-08 19:10:19 2 2 2019-12-08 19:20:19 1 13 2019-12-08 19:20:19 2 2 2019-12-08 19:25:19 1 14 2019-12-08 19:25:19 2 2 2019-12-08 19:35:19 1 13 2019-12-08 19:35:19 2 2 2019-12-08 19:50:19 1 12 2019-12-08 19:50:19 2 2 2019-12-08 19:55:19 2 3 2019-12-08 20:05:19 1 11 2019-12-08 20:05:19 2 3 2019-12-07 16:20:19 1 10 2019-12-07 16:20:19 2 1 2019-12-07 16:25:19 1 9 2019-12-07 16:25:19 2 1 2019-12-07 16:50:19 1 15 2019-12-07 16:50:19 2 3 2019-12-07 17:20:19 1 17 2019-12-07 17:20:19 2 1 2019-12-07 17:35:19 1 17 2019-12-07 17:35:19 2 2 2019-12-07 17:40:19 1 18 2019-12-07 17:40:19 2 1 2019-12-07 17:50:19 1 16 2019-12-07 17:50:19 2 1 2019-12-07 17:55:19 1 19 2019-12-07 17:55:19 2 1 2019-12-07 18:00:19 1 15 2019-12-07 18:00:19 2 1 2019-12-07 18:05:19 1 15 2019-12-07 18:05:19 2 1 2019-12-07 18:10:19 1 16 2019-12-07 18:10:19 2 1 2019-12-07 18:15:19 1 15 2019-12-07 18:15:19 2 1 2019-12-07 19:00:19 1 14 2019-12-07 19:00:19 2 1 2019-12-07 19:15:19 1 11 2019-12-07 19:15:19 2 3 2019-12-07 19:20:19 1 13 2019-12-07 19:20:19 2 3 2019-12-07 19:45:19 1 13 2019-12-07 19:55:19 1 11 2019-12-07 20:05:19 1 16 2019-12-07 20:15:19 1 15 2019-12-07 20:20:19 1 14 2019-12-07 20:35:19 1 13 2019-12-07 20:35:19 2 1 2019-12-07 20:40:19 1 17 2019-12-07 20:40:19 2 1 2019-12-07 21:00:19 1 17 2019-12-07 22:05:19 1 19 2019-12-07 22:05:19 2 1 2019-12-07 22:10:19 1 18 2019-12-07 22:10:19 2 1 2019-12-07 22:20:19 1 17 2019-12-07 22:20:19 2 1 2019-12-07 22:40:19 1 17 2019-12-07 22:40:19 2 1 2019-12-07 23:00:19 1 19 2019-12-07 23:05:19 1 17 2019-12-07 23:10:19 1 18 2019-12-07 23:10:19 2 1 2019-12-07 23:25:20 1 13 2019-12-07 23:25:20 2 1 2019-12-07 23:35:19 1 14 2019-12-07 23:35:19 2 1 2019-12-07 23:55:19 1 13 2019-12-07 23:55:19 2 1 2019-12-08 00:05:19 1 13 2019-12-08 00:05:19 2 1 2019-12-08 00:10:19 1 11 2019-12-08 00:15:19 1 11 2019-12-08 00:15:19 2 1 2019-12-08 00:50:19 1 10 2019-12-08 00:50:19 2 1 2019-12-08 01:05:19 1 9 2019-12-08 01:05:19 2 1 2019-12-08 01:45:19 1 9 2019-12-08 01:50:19 1 8 2019-12-08 02:35:19 1 6 2019-12-08 02:45:19 1 6 2019-12-08 03:00:19 1 6 2019-12-08 03:10:19 1 6 2019-12-08 03:35:19 1 5 2019-12-08 03:40:19 1 5 2019-12-08 03:45:20 1 5 2019-12-08 03:50:19 1 5 2019-12-08 03:55:19 1 5 2019-12-08 04:25:19 1 5 2019-12-08 04:30:19 1 5 2019-12-08 04:50:19 1 5 2019-12-08 05:25:19 1 4 2019-12-08 06:00:19 1 8 2019-12-08 06:15:19 1 7 2019-12-08 06:20:19 1 7 2019-12-08 06:35:19 1 7 2019-12-08 06:40:19 1 8 2019-12-08 06:45:19 1 7 2019-12-08 06:55:19 1 6 2019-12-08 07:05:19 1 9 2019-12-08 07:15:19 1 7 2019-12-08 07:50:19 1 11 2019-12-08 07:55:19 1 11 2019-12-08 08:15:19 1 12 2019-12-08 08:15:19 2 1 2019-12-08 08:35:19 1 13 2019-12-08 09:20:19 1 13 2019-12-08 09:30:19 1 14 2019-12-08 09:45:19 1 13 2019-12-08 09:45:19 2 1 2019-12-08 10:20:19 1 16 2019-12-08 10:20:19 2 1 2019-12-08 10:25:19 1 17 2019-12-08 10:25:19 2 1 2019-12-08 10:40:19 1 12 2019-12-08 10:40:19 2 1 2019-12-08 10:50:19 1 16 2019-12-08 10:50:19 2 1 2019-12-08 10:55:19 1 14 2019-12-08 10:55:19 2 1 2019-12-08 11:05:19 1 14 2019-12-08 11:05:19 2 1 2019-12-08 11:25:19 1 15 2019-12-08 11:30:19 1 15 2019-12-08 11:35:19 1 16 2019-12-08 11:35:19 2 1 2019-12-08 11:45:19 1 12 2019-12-08 11:45:19 2 1 2019-12-08 12:10:19 1 13 2019-12-08 12:10:19 2 1 2019-12-08 12:15:19 1 13 2019-12-08 12:15:19 2 1 2019-12-08 12:20:19 1 15 2019-12-08 12:20:19 2 1 2019-12-08 12:35:19 1 17 2019-12-08 12:45:19 1 13 2019-12-08 13:00:19 1 12 2019-12-08 13:20:19 1 11 2019-12-08 13:35:19 1 12 2019-12-08 13:35:19 2 1 2019-12-08 13:45:19 1 12 2019-12-08 13:45:19 2 1 2019-12-08 14:05:19 1 13 2019-12-08 14:10:19 1 14 2019-12-08 14:20:19 1 11 2019-12-08 14:20:19 2 2 2019-12-08 14:30:19 1 14 2019-12-08 14:30:19 2 2 2019-12-08 14:35:19 1 11 2019-12-08 14:35:19 2 1 2019-12-08 14:50:19 1 11 2019-12-08 14:50:19 2 1 2019-12-08 15:00:19 1 13 2019-12-08 15:00:19 2 3 2019-12-08 15:25:19 1 13 2019-12-08 15:25:19 2 1 2019-12-08 15:50:19 1 15 2019-12-08 15:50:19 2 1 2019-12-08 15:55:19 1 16 2019-12-08 15:55:19 2 1 2019-12-08 16:00:19 1 13 2019-12-08 16:00:19 2 1 2019-12-08 16:25:19 1 12 2019-12-08 16:25:19 2 1 2019-12-08 16:45:19 1 12 2019-12-08 16:45:19 2 1 2019-12-08 17:15:19 1 13 2019-12-08 17:15:19 2 2 2019-12-08 17:50:19 1 17 2019-12-08 18:00:19 1 16 2019-12-08 18:00:19 2 1 2019-12-08 18:45:19 1 14 2019-12-08 18:45:19 2 1 2019-12-08 18:50:19 1 13 2019-12-08 18:50:19 2 1 2019-12-08 19:00:19 1 11 2019-12-08 19:00:19 2 1 2019-12-08 19:05:19 1 14 2019-12-08 19:05:19 2 2 2019-12-08 19:30:19 1 15 2019-12-08 19:30:19 2 1 2019-12-08 19:40:19 1 12 2019-12-08 19:40:19 2 2 2019-12-08 20:00:19 1 14 2019-12-08 20:00:19 2 3 2019-12-08 20:10:19 1 11 2019-12-08 20:10:19 2 3 2019-12-08 20:15:19 1 12 2019-12-08 20:15:19 2 3 2019-12-08 20:20:19 1 12 2019-12-08 20:20:19 2 3 2019-12-08 20:25:19 1 12 2019-12-08 20:25:19 2 3 2019-12-08 20:30:19 1 14 2019-12-08 20:30:19 2 3 2019-12-08 20:35:19 1 17 2019-12-08 20:35:19 2 3 2019-12-08 20:55:19 1 16 2019-12-08 20:55:19 2 2 2019-12-08 21:15:19 1 12 2019-12-08 21:15:19 2 2 2019-12-08 21:25:19 1 14 2019-12-08 21:25:19 2 1 2019-12-08 21:30:19 1 15 2019-12-08 21:30:19 2 1 2019-12-08 21:55:19 1 16 2019-12-08 21:55:19 2 2 2019-12-08 22:15:19 1 16 2019-12-08 22:15:19 2 1 2019-12-08 22:30:19 1 19 2019-12-08 22:30:19 2 1 2019-12-08 22:35:19 1 17 2019-12-08 22:35:19 2 1 2019-12-08 22:45:19 1 17 2019-12-08 22:45:19 2 1 2019-12-08 22:50:19 1 17 2019-12-08 22:50:19 2 1 2019-12-08 23:05:19 1 13 2019-12-08 23:05:19 2 1 2019-12-08 23:15:19 1 13 2019-12-08 23:15:19 2 1 2019-12-08 23:40:19 1 12 2019-12-08 23:40:19 2 1 2019-12-08 23:50:19 1 12 2019-12-08 23:50:19 2 1 2019-12-08 23:55:19 1 11 2019-12-08 23:55:19 2 1 2019-12-09 00:00:19 1 11 2019-12-09 00:00:19 2 1 2019-12-09 00:05:19 1 13 2019-12-09 00:05:19 2 1 2019-12-09 00:25:19 1 9 2019-12-09 00:25:19 2 1 2019-12-09 00:40:19 1 10 2019-12-09 00:40:19 2 1 2019-12-09 00:55:19 1 9 2019-12-09 00:55:19 2 1 2019-12-09 01:15:19 1 9 2019-12-09 01:35:19 1 7 2019-12-09 01:50:19 1 7 2019-12-09 01:55:19 1 7 2019-12-09 02:05:19 1 6 2019-12-09 02:10:19 1 6 2019-12-09 02:15:19 1 6 2019-12-09 02:25:19 1 5 2019-12-09 02:50:19 1 6 2019-12-09 03:20:19 1 7 2019-12-09 04:05:19 1 5 2019-12-09 04:10:19 1 5 2019-12-09 04:15:19 1 5 2019-12-09 04:20:19 1 5 2019-12-09 04:25:19 1 5 2019-12-09 04:30:19 1 5 2019-12-09 04:35:19 1 4 2019-12-09 04:40:19 1 4 2019-12-09 04:45:19 1 4 2019-12-09 05:50:19 1 5 2019-12-09 06:00:19 1 6 2019-12-09 06:05:19 1 7 2019-12-09 06:10:19 1 7 2019-12-09 06:20:19 1 7 2019-12-09 06:45:19 1 7 2019-12-09 07:10:19 1 8 2019-12-09 07:20:19 1 7 2019-12-09 07:25:19 1 7 2019-12-09 07:30:19 1 10 2019-12-09 07:55:19 1 8 2019-12-09 08:00:19 1 9 2019-12-09 08:10:19 1 10 2019-12-09 08:20:19 1 11 2019-12-09 08:20:19 2 1 2019-12-09 08:25:19 1 11 2019-12-09 08:25:19 2 1 2019-12-09 08:40:19 1 11 2019-12-09 08:40:19 2 1 2019-12-09 08:55:19 1 13 2019-12-09 08:55:19 2 1 2019-12-09 09:05:19 1 13 2019-12-09 09:05:19 2 1 2019-12-09 09:20:19 1 14 2019-12-09 09:20:19 2 1 2019-12-09 09:40:19 1 13 2019-12-09 09:40:19 2 1 2019-12-09 09:45:19 1 12 2019-12-09 09:45:19 2 1 2019-12-09 09:55:19 1 14 2019-12-09 09:55:19 2 2 2019-12-09 10:10:19 1 14 2019-12-09 10:10:19 2 2 2019-12-09 10:25:19 1 17 2019-12-09 10:25:19 2 1 2019-12-09 11:50:19 1 14 2019-12-09 11:50:19 2 3 2019-12-09 12:05:19 1 14 2019-12-09 12:05:19 2 3 2019-12-09 12:35:19 1 11 2019-12-09 12:35:19 2 4 2019-12-09 12:50:19 1 13 2019-12-09 12:50:19 2 2 2019-12-09 12:55:19 1 16 2019-12-09 12:55:19 2 2 2019-12-09 13:05:19 1 18 2019-12-09 13:05:19 2 2 2019-12-09 13:15:19 1 17 2019-12-09 13:15:19 2 2 2019-12-09 13:45:19 1 18 2019-12-09 13:45:19 2 2 2019-12-09 14:10:19 1 16 2019-12-09 14:10:19 2 4 2019-12-09 14:35:19 1 18 2019-12-09 14:35:19 2 3 2019-12-09 14:50:19 1 20 2019-12-09 14:50:19 2 2 2019-12-09 15:00:19 1 19 2019-12-09 15:00:19 2 1 2019-12-09 15:10:19 1 19 2019-12-09 15:10:19 2 1 2019-12-09 15:15:19 1 19 2019-12-09 15:15:19 2 1 2019-12-09 16:10:19 1 14 2019-12-09 16:10:19 2 2 2019-12-09 16:20:19 1 17 2019-12-09 16:20:19 2 3 2019-12-09 16:25:19 1 19 2019-12-09 16:25:19 2 2 2019-12-09 16:30:19 1 18 2019-12-09 16:30:19 2 2 2019-12-09 17:00:19 1 20 2019-12-09 17:00:19 2 3 2019-12-09 17:05:19 1 18 2019-12-09 17:05:19 2 3 2019-12-09 17:40:19 1 14 2019-12-09 17:40:19 2 2 2019-12-09 17:45:19 1 15 2019-12-09 17:45:19 2 2 2019-12-09 17:50:19 1 18 2019-12-09 17:50:19 2 2 2019-12-09 17:55:19 1 17 2019-12-09 17:55:19 2 2 2019-12-09 18:00:19 1 18 2019-12-09 18:00:19 2 2 2019-12-09 18:10:19 1 15 2019-12-09 18:10:19 2 1 2019-12-09 18:15:19 1 15 2019-12-09 18:30:19 1 15 2019-12-09 19:00:19 1 21 2019-12-09 19:30:19 1 20 2019-12-09 19:45:19 1 20 2019-12-09 19:45:19 2 1 2019-12-09 20:00:19 1 24 2019-12-09 20:15:19 1 21 2019-12-09 20:15:19 2 1 2019-12-09 20:30:19 1 20 2019-12-09 20:30:19 2 2 2019-12-09 21:05:19 1 14 2019-12-09 21:05:19 2 3 2019-12-09 21:10:19 1 17 2019-12-09 21:10:19 2 2 2019-12-09 21:25:19 1 15 2019-12-09 21:25:19 2 1 2019-12-09 21:40:20 1 19 2019-12-09 21:40:20 2 1 2019-12-09 21:50:19 1 18 2019-12-09 21:55:19 1 19 2019-12-09 21:55:19 2 1 2019-12-09 22:00:19 1 19 2019-12-09 22:00:19 2 2 2019-12-09 22:05:19 1 15 2019-12-09 22:05:19 2 2 2019-12-09 22:10:19 1 16 2019-12-09 22:10:19 2 2 2019-12-09 22:15:19 1 16 2019-12-09 22:15:19 2 3 2019-12-09 22:20:19 1 15 2019-12-09 22:20:19 2 3 2019-12-09 22:25:19 1 17 2019-12-09 22:25:19 2 3 2019-12-09 22:30:19 1 15 2019-12-09 22:30:19 2 3 2019-12-09 22:35:19 1 18 2019-12-08 20:40:19 1 15 2019-12-08 20:40:19 2 2 2019-12-08 20:45:19 1 17 2019-12-08 20:45:19 2 2 2019-12-08 21:05:19 1 13 2019-12-08 21:05:19 2 2 2019-12-08 21:35:19 1 13 2019-12-08 21:35:19 2 1 2019-12-08 21:40:19 1 12 2019-12-08 21:40:19 2 1 2019-12-08 21:45:19 1 13 2019-12-08 21:45:19 2 1 2019-12-08 21:50:19 1 14 2019-12-08 21:50:19 2 2 2019-12-08 22:00:19 1 20 2019-12-08 22:00:19 2 2 2019-12-08 22:05:19 1 17 2019-12-08 22:05:19 2 2 2019-12-08 22:25:19 1 19 2019-12-08 22:25:19 2 1 2019-12-08 22:40:19 1 17 2019-12-08 22:40:19 2 1 2019-12-08 23:20:19 1 12 2019-12-08 23:20:19 2 1 2019-12-08 23:30:19 1 12 2019-12-08 23:30:19 2 1 2019-12-08 23:35:19 1 11 2019-12-08 23:35:19 2 1 2019-12-08 23:45:19 1 12 2019-12-08 23:45:19 2 1 2019-12-09 00:10:19 1 12 2019-12-09 00:10:19 2 1 2019-12-09 00:20:19 1 11 2019-12-09 00:20:19 2 1 2019-12-09 00:30:19 1 10 2019-12-09 00:30:19 2 1 2019-12-09 00:45:19 1 11 2019-12-09 00:45:19 2 1 2019-12-09 01:00:19 1 9 2019-12-09 01:00:19 2 1 2019-12-09 01:05:19 1 9 2019-12-09 01:05:19 2 1 2019-12-09 01:10:19 1 9 2019-12-09 01:20:19 1 9 2019-12-09 01:30:19 1 8 2019-12-09 01:45:19 1 7 2019-12-09 02:20:19 1 6 2019-12-09 02:40:19 1 7 2019-12-09 02:45:19 1 7 2019-12-09 02:55:19 1 6 2019-12-09 03:00:19 1 6 2019-12-09 03:05:19 1 6 2019-12-09 03:10:19 1 6 2019-12-09 03:15:19 1 6 2019-12-09 03:40:19 1 5 2019-12-09 03:45:19 1 5 2019-12-09 03:50:19 1 5 2019-12-09 03:55:19 1 5 2019-12-09 04:00:19 1 5 2019-12-09 04:50:19 1 6 2019-12-09 05:00:19 1 6 2019-12-09 05:10:19 1 6 2019-12-09 05:15:19 1 6 2019-12-09 05:20:19 1 6 2019-12-09 05:25:19 1 5 2019-12-09 05:30:19 1 5 2019-12-09 06:15:19 1 5 2019-12-09 06:50:19 1 6 2019-12-09 06:55:19 1 6 2019-12-09 07:00:19 1 6 2019-12-09 07:15:19 1 7 2019-12-09 07:40:19 1 9 2019-12-09 07:45:19 1 8 2019-12-09 08:05:19 1 8 2019-12-09 08:50:19 1 11 2019-12-09 08:50:19 2 1 2019-12-09 09:25:19 1 10 2019-12-09 09:25:19 2 1 2019-12-09 09:30:19 1 14 2019-12-09 09:30:19 2 1 2019-12-09 09:35:19 1 11 2019-12-09 09:35:19 2 1 2019-12-09 10:00:19 1 16 2019-12-09 10:00:19 2 2 2019-12-09 10:05:19 1 16 2019-12-09 10:05:19 2 2 2019-12-09 10:20:20 1 15 2019-12-09 10:20:20 2 2 2019-12-09 10:30:19 1 15 2019-12-09 10:30:19 2 2 2019-12-09 10:35:19 1 17 2019-12-09 10:35:19 2 2 2019-12-09 10:50:19 1 14 2019-12-09 10:50:19 2 1 2019-12-09 10:55:19 1 14 2019-12-09 10:55:19 2 1 2019-12-09 11:00:19 1 12 2019-12-09 11:00:19 2 1 2019-12-09 11:05:19 1 14 2019-12-09 11:05:19 2 1 2019-12-09 11:10:19 1 16 2019-12-09 11:10:19 2 1 2019-12-09 11:15:19 1 17 2019-12-09 11:15:19 2 2 2019-12-09 11:20:19 1 15 2019-12-09 11:20:19 2 3 2019-12-09 11:30:19 1 14 2019-12-09 11:30:19 2 3 2019-12-09 11:40:19 1 16 2019-12-09 11:40:19 2 3 2019-12-09 11:55:19 1 18 2019-12-09 11:55:19 2 3 2019-12-09 12:00:19 1 16 2019-12-09 12:00:19 2 3 2019-12-09 12:10:19 1 15 2019-12-09 12:10:19 2 3 2019-12-09 12:15:19 1 13 2019-12-09 12:15:19 2 3 2019-12-09 12:25:19 1 13 2019-12-09 12:25:19 2 3 2019-12-09 12:30:19 1 11 2019-12-09 12:30:19 2 3 2019-12-09 12:40:19 1 15 2019-12-09 12:40:19 2 5 2019-12-09 12:45:19 1 16 2019-12-09 12:45:19 2 3 2019-12-09 13:00:19 1 15 2019-12-09 13:00:19 2 2 2019-12-09 13:25:19 1 16 2019-12-09 13:25:19 2 2 2019-12-09 13:55:19 1 19 2019-12-09 13:55:19 2 2 2019-12-09 14:15:19 1 19 2019-12-09 14:15:19 2 3 2019-12-09 14:20:19 1 18 2019-12-09 14:20:19 2 3 2019-12-09 14:25:19 1 15 2019-12-09 14:25:19 2 3 2019-12-09 15:05:19 1 19 2019-12-09 15:05:19 2 1 2019-12-09 15:20:19 1 17 2019-12-09 15:20:19 2 1 2019-12-09 15:30:19 1 15 2019-12-09 15:30:19 2 1 2019-12-09 15:35:19 1 17 2019-12-09 15:35:19 2 1 2019-12-09 15:45:19 1 14 2019-12-09 15:45:19 2 1 2019-12-09 15:50:19 1 16 2019-12-09 15:50:19 2 2 2019-12-09 16:05:19 1 15 2019-12-09 16:05:19 2 2 2019-12-09 16:15:19 1 17 2019-12-09 16:15:19 2 3 2019-12-09 16:40:19 1 19 2019-12-09 16:40:19 2 3 2019-12-09 16:50:19 1 22 2019-12-09 16:50:19 2 4 2019-12-09 16:55:19 1 20 2019-12-09 16:55:19 2 3 2019-12-09 17:10:19 1 16 2019-12-09 17:10:19 2 3 2019-12-09 17:15:19 1 17 2019-12-09 17:15:19 2 2 2019-12-09 17:20:19 1 16 2019-12-09 17:20:19 2 2 2019-12-09 17:25:19 1 14 2019-12-09 17:25:19 2 2 2019-12-09 17:30:19 1 17 2019-12-09 17:30:19 2 1 2019-12-09 17:35:19 1 17 2019-12-09 17:35:19 2 2 2019-12-09 18:05:19 1 15 2019-12-09 18:05:19 2 2 2019-12-09 18:50:19 1 14 2019-12-09 19:10:19 1 20 2019-12-09 19:20:19 1 17 2019-12-09 19:25:19 1 18 2019-12-09 20:05:19 1 21 2019-12-09 20:35:19 1 19 2019-12-09 20:35:19 2 2 2019-12-09 21:00:19 1 17 2019-12-09 21:00:19 2 3 2019-12-09 21:30:19 1 16 2019-12-09 21:30:19 2 1 2019-12-08 20:50:19 1 16 2019-12-08 20:50:19 2 2 2019-12-08 21:00:19 1 12 2019-12-08 21:00:19 2 2 2019-12-08 21:10:19 1 15 2019-12-08 21:10:19 2 2 2019-12-08 21:20:19 1 15 2019-12-08 21:20:19 2 1 2019-12-08 22:10:19 1 13 2019-12-08 22:20:19 1 18 2019-12-08 22:55:19 1 14 2019-12-08 22:55:19 2 1 2019-12-08 23:00:19 1 16 2019-12-08 23:00:19 2 1 2019-12-08 23:10:19 1 12 2019-12-08 23:10:19 2 1 2019-12-08 23:25:19 1 13 2019-12-08 23:25:19 2 1 2019-12-09 00:15:19 1 12 2019-12-09 00:15:19 2 1 2019-12-09 00:35:19 1 10 2019-12-09 00:35:19 2 1 2019-12-09 00:50:19 1 9 2019-12-09 00:50:19 2 1 2019-12-09 01:25:19 1 10 2019-12-09 01:40:19 1 6 2019-12-09 02:00:19 1 6 2019-12-09 02:30:19 1 6 2019-12-09 02:35:19 1 6 2019-12-09 03:25:19 1 6 2019-12-09 03:30:19 1 6 2019-12-09 03:35:19 1 6 2019-12-09 04:55:19 1 5 2019-12-09 05:05:19 1 6 2019-12-09 05:35:19 1 5 2019-12-09 05:40:19 1 5 2019-12-09 05:45:19 1 5 2019-12-09 05:55:19 1 6 2019-12-09 06:25:19 1 7 2019-12-09 06:30:19 1 6 2019-12-09 06:35:19 1 7 2019-12-09 06:40:19 1 6 2019-12-09 07:05:19 1 4 2019-12-09 07:35:19 1 9 2019-12-09 07:50:19 1 8 2019-12-09 08:15:19 1 11 2019-12-09 08:15:19 2 1 2019-12-09 08:30:19 1 11 2019-12-09 08:30:19 2 1 2019-12-09 08:35:19 1 9 2019-12-09 08:35:19 2 1 2019-12-09 08:45:19 1 10 2019-12-09 08:45:19 2 1 2019-12-09 09:00:19 1 13 2019-12-09 09:00:19 2 1 2019-12-09 09:10:19 1 11 2019-12-09 09:10:19 2 1 2019-12-09 09:15:19 1 11 2019-12-09 09:15:19 2 1 2019-12-09 09:50:19 1 13 2019-12-09 09:50:19 2 1 2019-12-09 10:15:19 1 14 2019-12-09 10:15:19 2 2 2019-12-09 10:40:19 1 16 2019-12-09 10:40:19 2 2 2019-12-09 10:45:19 1 14 2019-12-09 10:45:19 2 1 2019-12-09 11:25:19 1 14 2019-12-09 11:25:19 2 3 2019-12-09 11:35:19 1 15 2019-12-09 11:35:19 2 3 2019-12-09 11:45:19 1 15 2019-12-09 11:45:19 2 3 2019-12-09 12:20:19 1 13 2019-12-09 12:20:19 2 3 2019-12-09 13:10:19 1 16 2019-12-09 13:10:19 2 3 2019-12-09 13:20:19 1 19 2019-12-09 13:20:19 2 2 2019-12-09 13:30:19 1 19 2019-12-09 13:30:19 2 2 2019-12-09 13:35:19 1 18 2019-12-09 13:35:19 2 3 2019-12-09 13:40:19 1 19 2019-12-09 13:40:19 2 2 2019-12-09 13:50:19 1 18 2019-12-09 13:50:19 2 2 2019-12-09 14:00:19 1 14 2019-12-09 14:00:19 2 1 2019-12-09 14:05:19 1 15 2019-12-09 14:05:19 2 3 2019-12-09 14:30:19 1 17 2019-12-09 14:30:19 2 3 2019-12-09 14:40:19 1 17 2019-12-09 14:40:19 2 2 2019-12-09 14:45:19 1 19 2019-12-09 14:45:19 2 2 2019-12-09 14:55:19 1 20 2019-12-09 14:55:19 2 2 2019-12-09 15:25:19 1 16 2019-12-09 15:25:19 2 1 2019-12-09 15:40:19 1 15 2019-12-09 15:40:19 2 1 2019-12-09 15:55:19 1 16 2019-12-09 15:55:19 2 2 2019-12-09 16:00:19 1 17 2019-12-09 16:00:19 2 2 2019-12-09 16:35:19 1 19 2019-12-09 16:35:19 2 2 2019-12-09 16:45:19 1 20 2019-12-09 16:45:19 2 3 2019-12-09 18:20:19 1 16 2019-12-09 18:25:19 1 14 2019-12-09 18:35:19 1 15 2019-12-09 18:40:19 1 15 2019-12-09 18:45:19 1 13 2019-12-09 18:55:19 1 19 2019-12-09 19:05:19 1 19 2019-12-09 19:15:19 1 19 2019-12-09 19:35:19 1 18 2019-12-09 19:35:19 2 1 2019-12-09 19:40:19 1 18 2019-12-09 19:40:19 2 1 2019-12-09 19:50:19 1 16 2019-12-09 19:50:19 2 1 2019-12-09 19:55:19 1 18 2019-12-09 20:10:19 1 18 2019-12-09 20:10:19 2 1 2019-12-09 20:20:19 1 21 2019-12-09 20:20:19 2 1 2019-12-09 20:25:19 1 17 2019-12-09 20:25:19 2 2 2019-12-09 20:40:19 1 16 2019-12-09 20:40:19 2 3 2019-12-09 20:45:19 1 15 2019-12-09 20:45:19 2 3 2019-12-09 20:50:19 1 17 2019-12-09 20:50:19 2 3 2019-12-09 20:55:19 1 13 2019-12-09 20:55:19 2 3 2019-12-09 21:15:19 1 16 2019-12-09 21:15:19 2 2 2019-12-09 21:20:19 1 16 2019-12-09 21:20:19 2 3 2019-12-09 21:35:19 1 18 2019-12-09 21:35:19 2 1 2019-12-09 21:45:20 1 20 2019-12-09 21:45:20 2 1 2019-12-09 22:35:19 2 3 2019-12-09 22:40:19 1 15 2019-12-09 22:40:19 2 2 2019-12-09 22:45:19 1 15 2019-12-09 22:45:19 2 2 2019-12-09 22:50:19 1 16 2019-12-09 22:50:19 2 2 2019-12-09 22:55:19 1 14 2019-12-09 22:55:19 2 1 2019-12-09 23:00:19 1 15 2019-12-09 23:00:19 2 1 2019-12-09 23:05:19 1 15 2019-12-09 23:05:19 2 1 2019-12-09 23:10:19 1 14 2019-12-09 23:10:19 2 1 2019-12-09 23:15:19 1 14 2019-12-09 23:15:19 2 2 2019-12-09 23:20:19 1 14 2019-12-09 23:20:19 2 1 2019-12-09 23:25:19 1 18 2019-12-09 23:30:19 1 18 2019-12-09 23:35:19 1 18 2019-12-09 23:35:19 2 1 2019-12-09 23:40:19 1 14 2019-12-09 23:45:19 1 15 2019-12-09 23:50:19 1 14 2019-12-09 23:55:19 1 15 2019-12-10 00:00:19 1 15 2019-12-10 00:05:20 1 15 2019-12-10 00:10:19 1 13 2019-12-10 00:15:19 1 12 2019-12-10 00:20:19 1 11 2019-12-10 00:20:19 2 1 2019-12-10 00:25:19 1 13 2019-12-10 00:25:19 2 1 2019-12-10 00:30:19 1 12 2019-12-10 00:30:19 2 1 2019-12-10 00:35:19 1 14 2019-12-10 00:35:19 2 1 2019-12-10 00:40:19 1 14 2019-12-10 00:40:19 2 1 2019-12-10 00:45:19 1 13 2019-12-10 00:45:19 2 1 2019-12-10 00:50:19 1 12 2019-12-10 00:50:19 2 1 2019-12-10 00:55:19 1 12 2019-12-10 00:55:19 2 1 2019-12-10 01:05:19 1 10 2019-12-10 01:05:19 2 1 2019-12-10 01:10:19 1 11 2019-12-10 01:10:19 2 1 2019-12-10 01:25:19 1 10 2019-12-10 02:50:19 1 8 2019-12-10 03:10:19 1 8 2019-12-10 03:20:19 1 8 2019-12-10 04:05:19 1 8 2019-12-10 04:10:19 1 8 2019-12-10 04:15:19 1 8 2019-12-10 04:20:19 1 8 2019-12-10 04:25:19 1 8 2019-12-10 04:30:19 1 8 2019-12-10 05:25:19 1 9 2019-12-10 05:30:19 1 9 2019-12-10 05:40:19 1 10 2019-12-10 05:45:19 1 10 2019-12-10 05:55:19 1 9 2019-12-10 06:15:19 1 9 2019-12-10 06:35:19 1 12 2019-12-10 06:45:19 1 12 2019-12-10 06:50:19 1 12 2019-12-10 07:50:19 1 14 2019-12-10 08:20:19 1 11 2019-12-10 08:35:19 1 14 2019-12-10 09:05:19 1 13 2019-12-10 09:10:19 1 13 2019-12-10 09:25:19 1 12 2019-12-10 09:30:19 1 12 2019-12-10 10:05:19 1 15 2019-12-10 10:15:19 1 12 2019-12-10 10:15:19 2 1 2019-12-10 10:20:19 1 12 2019-12-10 10:20:19 2 2 2019-12-10 10:50:19 1 12 2019-12-10 10:50:19 2 4 2019-12-10 11:40:19 1 12 2019-12-10 11:40:19 2 3 2019-12-10 11:55:19 1 12 2019-12-10 11:55:19 2 3 2019-12-10 12:15:19 1 12 2019-12-10 12:15:19 2 3 2019-12-10 13:15:19 1 8 2019-12-10 13:15:19 2 2 2019-12-10 13:45:19 1 12 2019-12-10 13:45:19 2 2 2019-12-10 14:00:19 1 12 2019-12-10 14:00:19 2 2 2019-12-10 14:25:19 1 17 2019-12-10 14:25:19 2 2 2019-12-10 14:40:19 1 15 2019-12-10 14:40:19 2 1 2019-12-10 14:45:19 1 13 2019-12-10 14:45:19 2 1 2019-12-10 14:55:19 1 12 2019-12-10 14:55:19 2 2 2019-12-10 16:00:19 1 6 2019-12-10 16:00:19 2 1 2019-12-10 16:05:19 1 9 2019-12-10 16:05:19 2 1 2019-12-10 16:10:19 1 11 2019-12-10 16:10:19 2 1 2019-12-10 16:25:19 1 8 2019-12-10 16:25:19 2 2 2019-12-10 16:30:19 1 8 2019-12-10 16:30:19 2 2 2019-12-10 16:35:19 1 11 2019-12-10 16:35:19 2 2 2019-12-10 16:45:19 1 10 2019-12-10 16:45:19 2 2 2019-12-10 16:55:19 1 9 2019-12-10 16:55:19 2 2 2019-12-10 17:20:19 1 14 2019-12-10 17:20:19 2 3 2019-12-10 17:25:19 1 11 2019-12-10 17:25:19 2 2 2019-12-10 17:35:19 1 10 2019-12-10 17:35:19 2 2 2019-12-10 17:55:19 1 10 2019-12-10 17:55:19 2 1 2019-12-10 18:20:19 1 15 2019-12-10 18:30:19 1 15 2019-12-10 18:50:19 1 16 2019-12-10 18:50:19 2 1 2019-12-10 19:00:19 1 14 2019-12-10 19:00:19 2 1 2019-12-10 19:20:19 1 15 2019-12-10 19:20:19 2 2 2019-12-10 19:35:19 1 17 2019-12-10 19:35:19 2 2 2019-12-10 19:40:19 1 19 2019-12-10 19:40:19 2 2 2019-12-10 19:50:19 1 18 2019-12-10 19:50:19 2 2 2019-12-10 20:20:19 1 12 2019-12-10 20:20:19 2 3 2019-12-10 20:55:19 1 12 2019-12-10 20:55:19 2 1 2019-12-10 21:00:19 1 12 2019-12-10 21:05:19 1 14 2019-12-10 21:15:19 1 14 2019-12-10 21:15:19 2 1 2019-12-10 21:25:19 1 15 2019-12-10 21:40:19 1 17 2019-12-10 21:40:19 2 1 2019-12-10 21:55:19 1 20 2019-12-10 21:55:19 2 1 2019-12-10 22:05:19 1 16 2019-12-10 22:05:19 2 1 2019-12-10 22:35:19 1 12 2019-12-10 22:35:19 2 3 2019-12-10 22:40:19 1 15 2019-12-10 22:40:19 2 2 2019-12-10 22:55:19 1 14 2019-12-10 22:55:19 2 3 2019-12-10 23:10:19 1 10 2019-12-10 23:10:19 2 3 2019-12-10 23:15:19 1 10 2019-12-10 23:15:19 2 2 2019-12-10 23:20:19 1 12 2019-12-10 23:20:19 2 2 2019-12-10 23:50:19 1 12 2019-12-10 23:50:19 2 2 2019-12-10 23:55:19 1 11 2019-12-10 23:55:19 2 2 2019-12-11 00:05:19 1 11 2019-12-11 00:05:19 2 1 2019-12-11 00:25:19 1 9 2019-12-11 00:25:19 2 1 2019-12-11 00:40:19 1 9 2019-12-11 01:25:19 1 9 2019-12-11 01:30:19 1 9 2019-12-11 01:50:19 1 8 2019-12-11 01:55:19 1 8 2019-12-11 02:15:19 1 7 2019-12-11 02:30:19 1 8 2019-12-11 02:40:19 1 8 2019-12-11 02:55:20 1 6 2019-12-11 03:00:19 1 7 2019-12-11 03:25:19 1 5 2019-12-11 03:35:19 1 4 2019-12-11 03:40:19 1 4 2019-12-11 04:05:19 1 4 2019-12-11 04:10:19 1 4 2019-12-11 04:35:19 1 4 2019-12-11 05:05:19 2 1 2019-12-11 05:10:19 1 4 2019-12-11 05:10:19 2 1 2019-12-11 05:25:19 1 6 2019-12-11 05:30:19 1 6 2019-12-11 05:35:19 1 5 2019-12-11 05:40:19 1 5 2019-12-11 05:45:19 1 5 2019-12-11 05:50:19 1 5 2019-12-11 05:55:19 1 7 2019-12-11 06:00:19 1 6 2019-12-11 06:05:19 1 6 2019-12-11 06:10:19 1 6 2019-12-11 06:15:19 1 6 2019-12-11 06:20:19 1 7 2019-12-11 06:25:19 1 6 2019-12-11 06:30:19 1 7 2019-12-11 06:35:19 1 7 2019-12-11 06:40:19 1 9 2019-12-11 06:45:19 1 7 2019-12-11 06:50:19 1 9 2019-12-11 06:55:19 1 8 2019-12-11 07:00:19 1 7 2019-12-11 07:00:19 2 1 2019-12-11 07:05:19 1 10 2019-12-11 07:05:19 2 1 2019-12-11 07:10:19 1 10 2019-12-11 07:15:19 1 8 2019-12-11 07:20:19 1 10 2019-12-10 01:00:19 1 10 2019-12-10 01:00:19 2 1 2019-12-10 01:20:19 1 10 2019-12-10 01:30:19 1 9 2019-12-10 02:00:19 1 7 2019-12-10 02:05:19 1 7 2019-12-10 02:10:19 1 7 2019-12-10 02:20:19 1 8 2019-12-10 02:25:19 1 9 2019-12-10 02:30:19 1 8 2019-12-10 02:35:19 1 8 2019-12-10 02:40:19 1 9 2019-12-10 03:00:19 1 8 2019-12-10 03:05:19 1 8 2019-12-10 03:25:19 1 9 2019-12-10 04:35:19 1 8 2019-12-10 04:40:19 1 8 2019-12-10 04:45:19 1 8 2019-12-10 05:00:19 1 9 2019-12-10 05:35:19 1 9 2019-12-10 05:50:19 1 10 2019-12-10 06:00:19 1 10 2019-12-10 06:20:19 1 9 2019-12-10 06:25:19 1 9 2019-12-10 06:40:20 1 12 2019-12-10 07:05:19 1 11 2019-12-10 07:05:19 2 1 2019-12-10 07:10:19 1 10 2019-12-10 07:10:19 2 1 2019-12-10 07:30:19 1 10 2019-12-10 07:35:19 1 10 2019-12-10 07:40:19 1 11 2019-12-10 07:45:20 1 13 2019-12-10 07:55:19 1 12 2019-12-10 08:00:19 1 11 2019-12-10 08:05:19 1 12 2019-12-10 08:10:19 1 13 2019-12-10 08:10:19 2 1 2019-12-10 08:30:19 1 11 2019-12-10 08:40:19 1 13 2019-12-10 09:00:19 1 11 2019-12-10 09:20:19 1 13 2019-12-10 09:35:19 1 13 2019-12-10 09:40:19 1 12 2019-12-10 09:50:19 1 12 2019-12-10 09:50:19 2 1 2019-12-10 09:55:19 1 14 2019-12-10 10:25:19 1 11 2019-12-10 10:25:19 2 2 2019-12-10 10:40:19 1 11 2019-12-10 10:40:19 2 4 2019-12-10 11:20:19 1 13 2019-12-10 11:20:19 2 4 2019-12-10 11:25:19 1 12 2019-12-10 11:25:19 2 4 2019-12-10 11:30:20 1 12 2019-12-10 11:30:20 2 3 2019-12-10 12:00:19 1 13 2019-12-10 12:00:19 2 3 2019-12-10 12:30:19 1 12 2019-12-10 12:30:19 2 3 2019-12-10 12:40:19 1 16 2019-12-10 12:40:19 2 2 2019-12-10 12:45:19 1 14 2019-12-10 12:45:19 2 2 2019-12-10 12:50:19 1 14 2019-12-10 12:50:19 2 2 2019-12-10 12:55:19 1 14 2019-12-10 12:55:19 2 2 2019-12-10 13:05:19 1 12 2019-12-10 13:05:19 2 1 2019-12-10 13:10:19 1 11 2019-12-10 13:10:19 2 1 2019-12-10 13:30:19 1 11 2019-12-10 13:30:19 2 4 2019-12-10 13:50:19 1 13 2019-12-10 13:50:19 2 2 2019-12-10 13:55:19 1 13 2019-12-10 13:55:19 2 2 2019-12-10 14:15:19 1 15 2019-12-10 14:15:19 2 2 2019-12-10 14:30:19 1 16 2019-12-10 14:30:19 2 2 2019-12-10 14:35:19 1 15 2019-12-10 14:50:19 1 12 2019-12-10 14:50:19 2 2 2019-12-10 15:00:19 1 14 2019-12-10 15:00:19 2 2 2019-12-10 15:05:19 1 10 2019-12-10 15:05:19 2 2 2019-12-10 15:20:19 1 14 2019-12-10 15:20:19 2 1 2019-12-10 15:35:19 1 12 2019-12-10 15:35:19 2 2 2019-12-10 15:40:19 1 13 2019-12-10 15:40:19 2 2 2019-12-10 15:50:19 1 10 2019-12-10 15:50:19 2 1 2019-12-10 15:55:19 1 7 2019-12-10 15:55:19 2 1 2019-12-10 16:15:19 1 9 2019-12-10 16:15:19 2 1 2019-12-10 16:40:19 1 10 2019-12-10 16:40:19 2 2 2019-12-10 17:00:19 1 9 2019-12-10 17:00:19 2 3 2019-12-10 17:05:19 1 10 2019-12-10 17:05:19 2 3 2019-12-10 17:15:19 1 12 2019-12-10 17:15:19 2 3 2019-12-10 17:30:19 1 10 2019-12-10 17:30:19 2 3 2019-12-10 18:10:19 1 9 2019-12-10 18:10:19 2 1 2019-12-10 18:15:19 1 13 2019-12-10 18:15:19 2 1 2019-12-10 18:45:19 1 15 2019-12-10 18:45:19 2 1 2019-12-10 19:10:19 1 14 2019-12-10 19:10:19 2 2 2019-12-10 19:15:19 1 14 2019-12-10 19:15:19 2 2 2019-12-10 19:30:19 1 16 2019-12-10 19:30:19 2 2 2019-12-10 19:55:19 1 18 2019-12-10 19:55:19 2 3 2019-12-10 20:00:19 1 18 2019-12-10 20:00:19 2 3 2019-12-10 20:05:19 1 17 2019-12-10 20:05:19 2 3 2019-12-10 20:10:19 1 16 2019-12-10 20:10:19 2 3 2019-12-10 20:15:19 1 14 2019-12-10 20:15:19 2 3 2019-12-10 20:25:19 1 11 2019-12-10 20:25:19 2 3 2019-12-10 20:45:19 1 17 2019-12-10 20:45:19 2 2 2019-12-10 20:50:19 1 14 2019-12-10 20:50:19 2 1 2019-12-10 21:10:19 1 13 2019-12-10 21:10:19 2 1 2019-12-10 21:30:19 1 16 2019-12-10 21:35:19 1 18 2019-12-10 21:35:19 2 1 2019-12-10 21:45:19 1 18 2019-12-10 21:45:19 2 1 2019-12-10 21:50:19 1 18 2019-12-10 21:50:19 2 2 2019-12-10 22:00:19 1 17 2019-12-10 22:00:19 2 2 2019-12-10 22:10:19 1 17 2019-12-10 22:10:19 2 1 2019-12-10 22:20:19 1 17 2019-12-10 22:20:19 2 2 2019-12-10 22:30:19 1 14 2019-12-10 22:30:19 2 2 2019-12-10 22:45:19 1 15 2019-12-10 22:45:19 2 2 2019-12-10 23:35:19 1 12 2019-12-10 23:35:19 2 2 2019-12-10 23:40:19 1 13 2019-12-10 23:40:19 2 2 2019-12-10 23:45:19 1 13 2019-12-10 23:45:19 2 1 2019-12-11 00:45:19 1 9 2019-12-11 00:50:19 1 8 2019-12-11 01:10:19 1 9 2019-12-11 01:15:19 1 8 2019-12-11 01:40:19 1 11 2019-12-11 01:45:19 1 10 2019-12-11 02:20:19 1 7 2019-12-11 02:25:19 1 7 2019-12-11 02:45:19 1 6 2019-12-11 03:15:19 1 6 2019-12-11 03:30:19 1 4 2019-12-11 03:50:19 1 4 2019-12-11 03:55:19 1 4 2019-12-11 04:15:19 1 4 2019-12-11 04:25:19 1 4 2019-12-11 04:45:19 1 4 2019-12-11 05:00:19 1 4 2019-12-11 05:00:19 2 1 2019-12-11 05:15:19 1 5 2019-12-11 05:20:19 1 5 2019-12-10 01:15:19 1 10 2019-12-10 01:15:19 2 1 2019-12-10 01:35:19 1 8 2019-12-10 01:40:19 1 8 2019-12-10 01:45:19 1 7 2019-12-10 01:50:19 1 7 2019-12-10 01:55:19 1 7 2019-12-10 02:15:19 1 8 2019-12-10 02:45:19 1 8 2019-12-10 02:55:19 1 8 2019-12-10 03:15:19 1 8 2019-12-10 03:30:19 1 8 2019-12-10 03:35:19 1 8 2019-12-10 03:40:19 1 8 2019-12-10 03:45:19 1 8 2019-12-10 03:50:19 1 9 2019-12-10 03:55:19 1 8 2019-12-10 04:00:19 1 8 2019-12-10 04:50:19 1 8 2019-12-10 04:55:19 1 8 2019-12-10 05:05:19 1 9 2019-12-10 05:10:19 1 8 2019-12-10 05:15:19 1 8 2019-12-10 05:20:19 1 8 2019-12-10 06:05:19 1 10 2019-12-10 06:10:19 1 9 2019-12-10 06:30:19 1 11 2019-12-10 06:55:19 1 13 2019-12-10 07:00:19 1 12 2019-12-10 07:15:19 1 11 2019-12-10 07:15:19 2 1 2019-12-10 07:20:19 1 10 2019-12-10 07:25:19 1 11 2019-12-10 08:15:19 1 12 2019-12-10 08:25:19 1 10 2019-12-10 08:45:19 1 14 2019-12-10 08:50:19 1 13 2019-12-10 08:55:19 1 12 2019-12-10 09:15:19 1 11 2019-12-10 09:45:19 1 14 2019-12-10 09:45:19 2 1 2019-12-10 10:00:19 1 15 2019-12-10 10:10:19 1 10 2019-12-10 10:30:19 1 10 2019-12-10 10:30:19 2 2 2019-12-10 10:35:19 1 11 2019-12-10 10:35:19 2 3 2019-12-10 10:45:19 1 12 2019-12-10 10:45:19 2 4 2019-12-10 10:55:19 1 12 2019-12-10 10:55:19 2 4 2019-12-10 11:00:19 1 15 2019-12-10 11:00:19 2 4 2019-12-10 11:05:19 1 13 2019-12-10 11:05:19 2 4 2019-12-10 11:10:19 1 13 2019-12-10 11:10:19 2 4 2019-12-10 11:15:19 1 10 2019-12-10 11:15:19 2 5 2019-12-10 11:35:19 1 14 2019-12-10 11:35:19 2 3 2019-12-10 11:45:19 1 10 2019-12-10 11:45:19 2 3 2019-12-10 11:50:19 1 12 2019-12-10 11:50:19 2 3 2019-12-10 12:05:19 1 14 2019-12-10 12:05:19 2 3 2019-12-10 12:10:19 1 15 2019-12-10 12:10:19 2 3 2019-12-10 12:20:19 1 11 2019-12-10 12:20:19 2 3 2019-12-10 12:25:19 1 11 2019-12-10 12:25:19 2 3 2019-12-10 12:35:19 1 14 2019-12-10 12:35:19 2 2 2019-12-10 13:00:19 1 12 2019-12-10 13:00:19 2 1 2019-12-10 13:20:19 1 8 2019-12-10 13:20:19 2 2 2019-12-10 13:25:19 1 11 2019-12-10 13:25:19 2 2 2019-12-10 13:35:19 1 12 2019-12-10 13:35:19 2 3 2019-12-10 13:40:19 1 11 2019-12-10 13:40:19 2 3 2019-12-10 14:05:19 1 12 2019-12-10 14:05:19 2 1 2019-12-10 14:10:19 1 15 2019-12-10 14:10:19 2 1 2019-12-10 14:20:19 1 15 2019-12-10 14:20:19 2 2 2019-12-10 15:10:19 1 11 2019-12-10 15:10:19 2 2 2019-12-10 15:15:19 1 11 2019-12-10 15:15:19 2 1 2019-12-10 15:25:19 1 11 2019-12-10 15:25:19 2 1 2019-12-10 15:30:19 1 12 2019-12-10 15:30:19 2 2 2019-12-10 15:45:19 1 13 2019-12-10 15:45:19 2 2 2019-12-10 16:20:19 1 6 2019-12-10 16:20:19 2 1 2019-12-10 16:50:19 1 11 2019-12-10 16:50:19 2 2 2019-12-10 17:10:19 1 10 2019-12-10 17:10:19 2 3 2019-12-10 17:40:19 1 10 2019-12-10 17:40:19 2 2 2019-12-10 17:45:19 1 12 2019-12-10 17:45:19 2 2 2019-12-10 17:50:19 1 14 2019-12-10 17:50:19 2 1 2019-12-10 18:00:19 1 11 2019-12-10 18:00:19 2 1 2019-12-10 18:05:19 1 11 2019-12-10 18:05:19 2 1 2019-12-10 18:25:19 1 15 2019-12-10 18:35:19 1 15 2019-12-10 18:35:19 2 1 2019-12-10 18:40:19 1 16 2019-12-10 18:40:19 2 1 2019-12-10 18:55:19 1 15 2019-12-10 18:55:19 2 1 2019-12-10 19:05:19 1 13 2019-12-10 19:05:19 2 2 2019-12-10 19:25:19 1 16 2019-12-10 19:25:19 2 2 2019-12-10 19:45:19 1 20 2019-12-10 19:45:19 2 3 2019-12-10 20:30:19 1 12 2019-12-10 20:30:19 2 3 2019-12-10 20:35:19 1 14 2019-12-10 20:35:19 2 3 2019-12-10 20:40:19 1 15 2019-12-10 20:40:19 2 3 2019-12-10 21:20:19 1 16 2019-12-10 22:15:19 1 18 2019-12-10 22:15:19 2 1 2019-12-10 22:25:19 1 17 2019-12-10 22:25:19 2 2 2019-12-10 22:50:19 1 14 2019-12-10 22:50:19 2 2 2019-12-10 23:00:19 1 13 2019-12-10 23:00:19 2 4 2019-12-10 23:05:19 1 13 2019-12-10 23:05:19 2 3 2019-12-10 23:25:19 1 12 2019-12-10 23:25:19 2 2 2019-12-10 23:30:19 1 12 2019-12-10 23:30:19 2 2 2019-12-11 00:00:19 1 11 2019-12-11 00:00:19 2 1 2019-12-11 00:10:19 1 9 2019-12-11 00:10:19 2 1 2019-12-11 00:15:19 1 7 2019-12-11 00:15:19 2 1 2019-12-11 00:20:20 1 8 2019-12-11 00:20:20 2 2 2019-12-11 00:30:19 1 10 2019-12-11 00:30:19 2 1 2019-12-11 00:35:19 1 9 2019-12-11 00:35:19 2 1 2019-12-11 00:55:19 1 8 2019-12-11 01:00:19 1 8 2019-12-11 01:05:19 1 7 2019-12-11 01:20:19 1 10 2019-12-11 01:35:19 1 10 2019-12-11 02:00:19 1 8 2019-12-11 02:05:19 1 9 2019-12-11 02:10:19 1 8 2019-12-11 02:35:19 1 7 2019-12-11 02:50:19 1 7 2019-12-11 03:05:19 1 6 2019-12-11 03:10:19 1 7 2019-12-11 03:20:19 1 6 2019-12-11 03:45:19 1 4 2019-12-11 04:00:19 1 4 2019-12-11 04:20:19 1 4 2019-12-11 04:30:19 1 4 2019-12-11 04:40:19 1 4 2019-12-11 04:50:19 1 4 2019-12-11 04:55:19 1 4 2019-12-11 04:55:19 2 1 2019-12-11 05:05:19 1 4 2019-12-11 07:25:19 1 9 2019-12-11 07:30:19 1 11 2019-12-11 07:40:19 1 10 2019-12-11 07:45:19 1 10 2019-12-11 07:55:19 1 11 2019-12-11 08:10:19 1 10 2019-12-11 08:10:19 2 1 2019-12-11 08:15:19 1 7 2019-12-11 08:15:19 2 1 2019-12-11 08:25:19 1 9 2019-12-11 08:25:19 2 1 2019-12-11 08:40:19 1 12 2019-12-11 08:40:19 2 1 2019-12-11 08:45:19 1 13 2019-12-11 08:45:19 2 1 2019-12-11 08:55:19 1 11 2019-12-11 08:55:19 2 1 2019-12-11 09:05:19 1 10 2019-12-11 09:05:19 2 1 2019-12-11 09:40:19 1 10 2019-12-11 09:40:19 2 1 2019-12-11 09:45:19 1 15 2019-12-11 09:45:19 2 1 2019-12-11 09:50:19 1 15 2019-12-11 09:50:19 2 1 2019-12-11 10:10:19 1 14 2019-12-11 10:10:19 2 1 2019-12-11 11:10:19 1 17 2019-12-11 11:10:19 2 2 2019-12-11 11:20:19 1 18 2019-12-11 11:20:19 2 3 2019-12-11 11:35:19 1 16 2019-12-11 11:35:19 2 2 2019-12-11 11:45:19 1 18 2019-12-11 11:45:19 2 1 2019-12-11 11:55:19 1 17 2019-12-11 11:55:19 2 1 2019-12-11 12:30:19 1 18 2019-12-11 12:30:19 2 1 2019-12-11 12:40:19 1 18 2019-12-11 12:40:19 2 1 2019-12-11 12:55:19 1 19 2019-12-11 12:55:19 2 1 2019-12-11 13:05:19 1 17 2019-12-11 13:15:19 1 20 2019-12-11 13:25:19 1 16 2019-12-11 13:35:19 1 20 2019-12-11 13:45:19 1 18 2019-12-11 13:55:19 1 16 2019-12-11 14:10:19 1 17 2019-12-11 14:15:19 1 16 2019-12-11 14:20:19 1 17 2019-12-11 14:25:19 1 16 2019-12-11 14:25:19 2 1 2019-12-11 14:35:19 1 15 2019-12-11 14:35:19 2 1 2019-12-11 14:40:19 1 13 2019-12-11 14:40:19 2 1 2019-12-11 14:50:19 1 16 2019-12-11 15:10:19 1 18 2019-12-11 15:20:19 1 19 2019-12-11 15:25:19 1 16 2019-12-11 15:30:19 1 16 2019-12-11 15:35:19 1 14 2019-12-11 16:05:19 1 14 2019-12-11 16:35:19 1 15 2019-12-11 16:35:19 2 1 2019-12-11 16:45:19 1 17 2019-12-11 16:45:19 2 1 2019-12-11 17:05:19 1 17 2019-12-11 17:05:19 2 1 2019-12-11 17:35:19 1 13 2019-12-11 17:40:19 1 15 2019-12-11 17:40:19 2 1 2019-12-11 17:45:19 1 10 2019-12-11 17:45:19 2 1 2019-12-11 18:05:19 1 17 2019-12-11 18:05:19 2 1 2019-12-11 18:15:19 1 18 2019-12-11 18:15:19 2 1 2019-12-11 18:25:19 1 14 2019-12-11 18:25:19 2 2 2019-12-11 18:30:19 1 14 2019-12-11 18:30:19 2 2 2019-12-11 19:15:19 1 16 2019-12-11 19:15:19 2 1 2019-12-11 19:25:19 1 14 2019-12-11 19:25:19 2 1 2019-12-11 19:30:19 1 13 2019-12-11 19:30:19 2 1 2019-12-11 19:35:19 1 14 2019-12-11 19:35:19 2 1 2019-12-11 20:05:19 1 12 2019-12-11 20:15:19 1 11 2019-12-11 20:15:19 2 1 2019-12-11 20:25:19 1 12 2019-12-11 20:25:19 2 1 2019-12-11 20:35:19 1 11 2019-12-11 20:35:19 2 2 2019-12-11 20:40:19 1 15 2019-12-11 20:40:19 2 2 2019-12-11 20:45:19 1 13 2019-12-11 20:45:19 2 1 2019-12-11 21:00:19 1 13 2019-12-11 21:05:19 1 14 2019-12-11 21:15:19 1 14 2019-12-11 21:15:19 2 1 2019-12-11 21:50:19 1 16 2019-12-11 22:10:19 1 16 2019-12-11 22:20:19 1 16 2019-12-11 22:30:19 1 13 2019-12-11 22:30:19 2 1 2019-12-11 22:40:19 1 12 2019-12-11 23:10:19 1 12 2019-12-11 23:20:19 1 14 2019-12-11 23:30:19 1 16 2019-12-11 23:35:19 1 14 2019-12-11 23:40:19 1 14 2019-12-11 23:55:19 1 15 2019-12-11 23:55:19 2 1 2019-12-12 00:10:19 1 12 2019-12-12 00:20:19 1 10 2019-12-12 00:30:19 1 10 2019-12-12 00:35:19 1 11 2019-12-12 01:10:19 1 7 2019-12-12 01:20:19 1 9 2019-12-12 01:25:19 1 9 2019-12-12 01:30:19 1 11 2019-12-12 01:50:19 1 10 2019-12-12 02:00:19 1 8 2019-12-12 02:05:19 1 7 2019-12-12 02:10:19 1 6 2019-12-12 02:20:19 1 5 2019-12-12 03:00:19 1 5 2019-12-12 03:05:19 1 4 2019-12-12 03:35:19 1 5 2019-12-12 03:45:19 1 5 2019-12-12 04:00:19 1 5 2019-12-12 04:05:19 1 5 2019-12-12 04:10:19 1 5 2019-12-12 04:20:19 1 5 2019-12-12 04:40:19 1 7 2019-12-12 04:45:19 1 8 2019-12-12 05:10:19 1 6 2019-12-12 05:15:19 1 5 2019-12-12 05:45:19 1 7 2019-12-12 05:45:19 2 1 2019-12-12 05:55:19 1 5 2019-12-12 05:55:19 2 1 2019-12-12 06:00:19 1 6 2019-12-12 06:00:19 2 1 2019-12-12 06:05:19 1 5 2019-12-12 06:05:19 2 1 2019-12-12 06:15:19 1 4 2019-12-12 06:15:19 2 1 2019-12-12 06:35:19 1 5 2019-12-12 07:05:19 1 6 2019-12-12 07:10:19 1 6 2019-12-12 08:00:19 1 9 2019-12-12 08:05:19 1 8 2019-12-12 08:10:19 1 11 2019-12-12 08:15:19 1 9 2019-12-12 08:25:19 1 12 2019-12-12 08:25:19 2 1 2019-12-12 08:50:19 1 9 2019-12-12 09:05:19 1 11 2019-12-12 09:05:19 2 1 2019-12-12 09:30:19 1 9 2019-12-12 09:30:19 2 1 2019-12-12 10:15:19 1 9 2019-12-12 10:15:19 2 1 2019-12-12 10:50:19 1 12 2019-12-12 10:50:19 2 1 2019-12-12 11:10:19 1 11 2019-12-12 11:10:19 2 1 2019-12-12 11:20:19 1 13 2019-12-12 11:20:19 2 1 2019-12-12 11:50:19 1 10 2019-12-12 11:50:19 2 1 2019-12-12 11:55:19 1 10 2019-12-12 11:55:19 2 1 2019-12-12 12:10:20 1 8 2019-12-12 12:15:19 1 10 2019-12-12 12:20:19 1 12 2019-12-12 12:35:19 1 13 2019-12-11 07:35:19 1 12 2019-12-11 07:50:19 1 11 2019-12-11 08:20:19 1 8 2019-12-11 08:20:19 2 1 2019-12-11 08:35:19 1 14 2019-12-11 08:35:19 2 1 2019-12-11 09:10:19 1 14 2019-12-11 09:10:19 2 1 2019-12-11 09:15:19 1 12 2019-12-11 09:15:19 2 1 2019-12-11 09:25:19 1 11 2019-12-11 09:25:19 2 1 2019-12-11 09:30:19 1 10 2019-12-11 09:30:19 2 1 2019-12-11 10:00:19 1 13 2019-12-11 10:00:19 2 1 2019-12-11 10:05:19 1 14 2019-12-11 10:05:19 2 1 2019-12-11 10:15:19 1 12 2019-12-11 10:15:19 2 2 2019-12-11 10:25:19 1 13 2019-12-11 10:25:19 2 2 2019-12-11 10:50:19 1 16 2019-12-11 10:50:19 2 1 2019-12-11 10:55:19 1 15 2019-12-11 10:55:19 2 2 2019-12-11 11:05:19 1 17 2019-12-11 11:05:19 2 2 2019-12-11 11:15:19 1 18 2019-12-11 11:15:19 2 3 2019-12-11 11:25:19 1 12 2019-12-11 11:25:19 2 2 2019-12-11 11:40:19 1 17 2019-12-11 11:40:19 2 1 2019-12-11 11:50:19 1 17 2019-12-11 11:50:19 2 1 2019-12-11 12:05:19 1 15 2019-12-11 12:05:19 2 1 2019-12-11 12:20:19 1 18 2019-12-11 12:20:19 2 1 2019-12-11 12:25:19 1 19 2019-12-11 12:25:19 2 1 2019-12-11 12:45:19 1 16 2019-12-11 12:45:19 2 1 2019-12-11 13:00:19 1 18 2019-12-11 13:30:19 1 17 2019-12-11 13:50:19 1 18 2019-12-11 14:00:19 1 20 2019-12-11 15:05:19 1 17 2019-12-11 15:40:19 1 13 2019-12-11 15:45:19 1 14 2019-12-11 15:50:19 1 16 2019-12-11 15:55:20 1 16 2019-12-11 16:25:19 1 15 2019-12-11 16:30:19 1 12 2019-12-11 16:30:19 2 1 2019-12-11 16:40:19 1 15 2019-12-11 16:40:19 2 1 2019-12-11 16:55:19 1 16 2019-12-11 16:55:19 2 1 2019-12-11 17:00:19 1 16 2019-12-11 17:00:19 2 1 2019-12-11 17:15:19 1 15 2019-12-11 17:55:19 1 12 2019-12-11 17:55:19 2 1 2019-12-11 18:00:19 1 14 2019-12-11 18:00:19 2 1 2019-12-11 18:20:19 1 16 2019-12-11 18:20:19 2 2 2019-12-11 18:40:19 1 17 2019-12-11 18:40:19 2 3 2019-12-11 18:45:19 1 17 2019-12-11 18:45:19 2 2 2019-12-11 18:50:19 1 16 2019-12-11 18:50:19 2 1 2019-12-11 19:00:19 1 15 2019-12-11 19:00:19 2 1 2019-12-11 19:10:19 1 16 2019-12-11 19:10:19 2 2 2019-12-11 19:40:19 1 11 2019-12-11 19:40:19 2 1 2019-12-11 19:45:19 1 11 2019-12-11 19:50:19 1 12 2019-12-11 20:00:19 1 13 2019-12-11 20:20:19 1 11 2019-12-11 20:20:19 2 1 2019-12-11 20:50:19 1 14 2019-12-11 20:50:19 2 1 2019-12-11 21:10:19 1 13 2019-12-11 21:20:19 1 15 2019-12-11 21:20:19 2 1 2019-12-11 21:25:19 1 13 2019-12-11 21:25:19 2 1 2019-12-11 21:40:19 1 15 2019-12-11 21:40:19 2 1 2019-12-11 21:55:19 1 15 2019-12-11 22:05:19 1 16 2019-12-11 22:35:19 1 11 2019-12-11 22:50:19 1 14 2019-12-11 22:55:19 1 14 2019-12-11 23:00:19 1 16 2019-12-11 23:15:19 1 12 2019-12-11 23:25:19 1 14 2019-12-11 23:50:19 1 13 2019-12-11 23:50:19 2 1 2019-12-12 00:00:19 1 11 2019-12-12 00:15:19 1 11 2019-12-12 00:40:19 1 10 2019-12-12 01:00:19 1 9 2019-12-12 01:40:19 1 9 2019-12-12 02:15:19 1 5 2019-12-12 02:30:19 1 5 2019-12-12 02:40:19 1 5 2019-12-12 02:50:19 1 5 2019-12-12 03:15:19 1 4 2019-12-12 03:20:19 1 4 2019-12-12 03:25:19 1 4 2019-12-12 03:30:19 1 4 2019-12-12 03:50:19 1 5 2019-12-12 04:15:19 1 5 2019-12-12 04:25:19 1 5 2019-12-12 04:55:19 1 6 2019-12-12 05:20:19 1 6 2019-12-12 05:30:19 1 5 2019-12-12 05:35:19 1 5 2019-12-12 05:35:19 2 1 2019-12-12 05:40:19 1 5 2019-12-12 05:40:19 2 1 2019-12-12 05:50:19 1 6 2019-12-12 05:50:19 2 1 2019-12-12 06:10:19 1 4 2019-12-12 06:10:19 2 1 2019-12-12 06:20:19 1 5 2019-12-12 06:20:19 2 1 2019-12-12 06:45:19 1 5 2019-12-12 06:50:19 1 6 2019-12-12 07:15:19 1 5 2019-12-12 07:20:19 1 5 2019-12-12 07:40:19 1 5 2019-12-12 07:45:19 1 5 2019-12-12 07:50:19 1 6 2019-12-12 08:20:19 1 11 2019-12-12 08:20:19 2 1 2019-12-12 08:55:19 1 8 2019-12-12 09:00:19 1 11 2019-12-12 09:00:19 2 1 2019-12-12 09:10:19 1 11 2019-12-12 09:10:19 2 1 2019-12-12 09:15:19 1 10 2019-12-12 09:15:19 2 1 2019-12-12 09:20:19 1 9 2019-12-12 09:20:19 2 1 2019-12-12 09:25:19 1 10 2019-12-12 09:25:19 2 1 2019-12-12 09:40:19 1 9 2019-12-12 09:40:19 2 1 2019-12-12 09:55:19 1 11 2019-12-12 09:55:19 2 1 2019-12-12 10:05:19 1 11 2019-12-12 10:05:19 2 2 2019-12-12 10:25:19 1 10 2019-12-12 10:25:19 2 1 2019-12-12 10:30:19 1 10 2019-12-12 10:30:19 2 1 2019-12-12 10:35:19 1 11 2019-12-12 10:35:19 2 1 2019-12-12 11:15:19 1 13 2019-12-12 11:15:19 2 1 2019-12-12 11:25:19 1 11 2019-12-12 11:25:19 2 1 2019-12-12 11:30:19 1 11 2019-12-12 11:30:19 2 2 2019-12-12 11:40:19 1 8 2019-12-12 11:40:19 2 2 2019-12-12 11:45:19 1 13 2019-12-12 11:45:19 2 1 2019-12-12 12:00:19 1 9 2019-12-12 12:00:19 2 1 2019-12-12 12:05:19 1 9 2019-12-12 12:25:19 1 12 2019-12-12 12:30:19 1 11 2019-12-12 12:35:19 2 1 2019-12-12 12:40:19 1 13 2019-12-12 12:40:19 2 2 2019-12-12 12:45:19 1 9 2019-12-11 08:00:19 1 11 2019-12-11 08:05:19 1 9 2019-12-11 08:30:19 1 10 2019-12-11 08:30:19 2 1 2019-12-11 08:50:19 1 13 2019-12-11 08:50:19 2 1 2019-12-11 09:00:19 1 10 2019-12-11 09:00:19 2 1 2019-12-11 09:20:19 1 9 2019-12-11 09:20:19 2 1 2019-12-11 09:35:19 1 10 2019-12-11 09:35:19 2 1 2019-12-11 09:55:19 1 16 2019-12-11 09:55:19 2 1 2019-12-11 10:20:19 1 11 2019-12-11 10:20:19 2 2 2019-12-11 10:30:19 1 12 2019-12-11 10:30:19 2 2 2019-12-11 10:35:19 1 14 2019-12-11 10:35:19 2 2 2019-12-11 10:40:19 1 16 2019-12-11 10:40:19 2 2 2019-12-11 10:45:19 1 15 2019-12-11 10:45:19 2 2 2019-12-11 11:00:19 1 16 2019-12-11 11:00:19 2 2 2019-12-11 11:30:19 1 13 2019-12-11 11:30:19 2 1 2019-12-11 12:00:19 1 14 2019-12-11 12:00:19 2 1 2019-12-11 12:10:19 1 19 2019-12-11 12:10:19 2 2 2019-12-11 12:15:19 1 18 2019-12-11 12:15:19 2 1 2019-12-11 12:35:19 1 16 2019-12-11 12:35:19 2 1 2019-12-11 12:50:19 1 20 2019-12-11 12:50:19 2 1 2019-12-11 13:10:19 1 17 2019-12-11 13:20:19 1 17 2019-12-11 13:40:19 1 19 2019-12-11 14:05:19 1 18 2019-12-11 14:30:19 1 16 2019-12-11 14:30:19 2 1 2019-12-11 14:45:19 1 15 2019-12-11 14:55:19 1 17 2019-12-11 15:00:19 1 16 2019-12-11 15:15:19 1 18 2019-12-11 16:00:19 1 15 2019-12-11 16:10:19 1 15 2019-12-11 16:15:19 1 18 2019-12-11 16:20:19 1 15 2019-12-11 16:50:19 1 16 2019-12-11 16:50:19 2 1 2019-12-11 17:10:19 1 13 2019-12-11 17:10:19 2 1 2019-12-11 17:20:19 1 14 2019-12-11 17:25:19 1 12 2019-12-11 17:30:19 1 13 2019-12-11 17:50:19 1 11 2019-12-11 17:50:19 2 1 2019-12-11 18:10:19 1 15 2019-12-11 18:10:19 2 1 2019-12-11 18:35:19 1 16 2019-12-11 18:35:19 2 3 2019-12-11 18:55:19 1 17 2019-12-11 18:55:19 2 1 2019-12-11 19:05:19 1 16 2019-12-11 19:05:19 2 2 2019-12-11 19:20:19 1 16 2019-12-11 19:20:19 2 1 2019-12-11 19:55:19 1 14 2019-12-11 20:10:19 1 14 2019-12-11 20:10:19 2 1 2019-12-11 20:30:19 1 12 2019-12-11 20:30:19 2 2 2019-12-11 20:55:19 1 15 2019-12-11 21:30:19 1 14 2019-12-11 21:30:19 2 1 2019-12-11 21:35:19 1 12 2019-12-11 21:35:19 2 1 2019-12-11 21:45:19 1 18 2019-12-11 22:00:19 1 18 2019-12-11 22:15:19 1 18 2019-12-11 22:25:19 1 15 2019-12-11 22:45:19 1 14 2019-12-11 23:05:19 1 15 2019-12-11 23:45:19 1 11 2019-12-12 00:05:19 1 10 2019-12-12 00:25:19 1 10 2019-12-12 00:45:19 1 10 2019-12-12 00:50:19 1 10 2019-12-12 00:55:19 1 10 2019-12-12 01:05:19 1 8 2019-12-12 01:15:19 1 8 2019-12-12 01:35:19 1 9 2019-12-12 01:45:19 1 9 2019-12-12 01:55:19 1 9 2019-12-12 02:25:19 1 5 2019-12-12 02:35:19 1 5 2019-12-12 02:45:19 1 5 2019-12-12 02:55:19 1 5 2019-12-12 03:10:19 1 3 2019-12-12 03:40:19 1 5 2019-12-12 03:55:19 1 5 2019-12-12 04:30:19 1 5 2019-12-12 04:35:19 1 6 2019-12-12 04:50:19 1 7 2019-12-12 05:00:19 1 5 2019-12-12 05:05:19 1 5 2019-12-12 05:25:19 1 6 2019-12-12 06:25:19 1 4 2019-12-12 06:30:19 1 4 2019-12-12 06:40:19 1 5 2019-12-12 06:40:19 2 1 2019-12-12 06:55:19 1 6 2019-12-12 07:00:19 1 6 2019-12-12 07:25:19 1 5 2019-12-12 07:30:19 1 5 2019-12-12 07:35:19 1 5 2019-12-12 07:55:19 1 6 2019-12-12 08:30:19 1 14 2019-12-12 08:30:19 2 2 2019-12-12 08:35:19 1 11 2019-12-12 08:35:19 2 1 2019-12-12 08:40:19 1 10 2019-12-12 08:40:19 2 1 2019-12-12 08:45:19 1 10 2019-12-12 09:35:19 1 9 2019-12-12 09:35:19 2 1 2019-12-12 09:45:19 1 11 2019-12-12 09:45:19 2 1 2019-12-12 09:50:19 1 12 2019-12-12 09:50:19 2 1 2019-12-12 10:00:19 1 10 2019-12-12 10:00:19 2 1 2019-12-12 10:10:19 1 10 2019-12-12 10:10:19 2 1 2019-12-12 10:20:19 1 10 2019-12-12 10:20:19 2 1 2019-12-12 10:40:19 1 8 2019-12-12 10:40:19 2 1 2019-12-12 10:45:19 1 10 2019-12-12 10:45:19 2 1 2019-12-12 10:55:19 1 9 2019-12-12 10:55:19 2 1 2019-12-12 11:00:19 1 10 2019-12-12 11:00:19 2 1 2019-12-12 11:05:19 1 11 2019-12-12 11:05:19 2 1 2019-12-12 11:35:19 1 8 2019-12-12 11:35:19 2 2 2019-12-12 12:45:19 2 2 2019-12-12 12:50:19 1 9 2019-12-12 12:50:19 2 2 2019-12-12 12:55:19 1 9 2019-12-12 12:55:19 2 2 2019-12-12 13:19:38 1 6 2019-12-12 13:24:38 1 6 2019-12-12 13:29:38 1 5 2019-12-12 13:34:38 1 5 2019-12-12 13:34:38 2 1 2019-12-12 13:39:38 1 4 2019-12-12 13:39:38 2 1 2019-12-12 13:44:38 1 6 2019-12-12 13:44:38 2 2 2019-12-12 13:49:38 1 7 2019-12-12 13:54:38 1 5 2019-12-12 13:59:38 1 5 2019-12-12 14:04:38 1 6 2019-12-12 14:09:38 1 4 2019-12-12 14:14:38 1 8 2019-12-12 14:19:38 1 7 2019-12-12 14:19:38 2 1 2019-12-12 14:24:38 1 7 2019-12-12 14:29:38 1 6 2019-12-12 14:34:38 1 5 2019-12-12 14:39:38 1 4 2019-12-12 14:44:38 1 3 2019-12-12 14:49:38 1 4 2019-12-12 14:49:38 2 1 2019-12-12 14:54:38 1 5 2019-12-12 14:59:38 1 7 2019-12-12 15:04:38 1 5 2019-12-12 15:09:38 1 5 2019-12-12 15:14:38 1 5 2019-12-12 15:14:38 2 1 2019-12-12 15:49:38 1 4 2019-12-12 15:49:38 2 2 2019-12-12 15:54:38 1 6 2019-12-12 15:54:38 2 2 2019-12-12 16:09:38 1 7 2019-12-12 16:09:38 2 2 2019-12-12 16:19:38 1 9 2019-12-12 16:19:38 2 2 2019-12-12 16:34:38 1 7 2019-12-12 16:34:38 2 2 2019-12-12 17:09:38 1 10 2019-12-12 17:14:38 1 11 2019-12-12 17:14:38 2 1 2019-12-12 17:39:38 1 9 2019-12-12 17:39:38 2 1 2019-12-12 17:49:38 1 8 2019-12-12 17:49:38 2 1 2019-12-12 17:59:38 1 10 2019-12-12 17:59:38 2 1 2019-12-12 18:09:38 1 9 2019-12-12 18:09:38 2 1 2019-12-12 18:14:38 1 9 2019-12-12 18:14:38 2 1 2019-12-12 18:49:38 1 5 2019-12-12 19:04:38 1 5 2019-12-12 19:19:38 1 8 2019-12-12 19:19:38 2 1 2019-12-12 19:39:38 1 7 2019-12-12 20:09:38 1 7 2019-12-12 20:09:38 2 1 2019-12-12 20:24:38 1 5 2019-12-12 20:24:38 2 1 2019-12-12 20:54:38 1 7 2019-12-12 20:54:38 2 1 2019-12-12 21:09:38 1 9 2019-12-12 21:24:38 1 10 2019-12-12 21:49:38 1 7 2019-12-12 21:49:38 2 1 2019-12-12 21:54:38 1 7 2019-12-12 21:54:38 2 1 2019-12-12 22:24:38 1 10 2019-12-12 22:24:38 2 1 2019-12-12 22:29:39 1 13 2019-12-12 22:29:39 2 1 2019-12-12 22:49:38 1 10 2019-12-12 22:49:38 2 1 2019-12-12 23:04:38 1 12 2019-12-12 23:04:38 2 1 2019-12-12 23:14:38 1 9 2019-12-12 23:14:38 2 1 2019-12-12 23:19:38 1 12 2019-12-12 23:19:38 2 1 2019-12-12 23:24:38 1 10 2019-12-12 23:24:38 2 1 2019-12-12 23:49:38 1 14 2019-12-12 23:49:38 2 1 2019-12-12 23:54:38 1 13 2019-12-12 23:54:38 2 1 2019-12-13 00:14:38 1 12 2019-12-13 00:14:38 2 1 2019-12-13 01:09:38 1 8 2019-12-13 01:24:38 1 7 2019-12-13 01:44:38 1 5 2019-12-13 01:54:38 1 5 2019-12-13 02:14:38 1 4 2019-12-13 02:24:38 1 7 2019-12-13 02:39:38 1 5 2019-12-13 03:04:38 1 4 2019-12-13 03:14:38 1 4 2019-12-13 03:34:38 1 4 2019-12-13 03:44:38 1 4 2019-12-13 03:59:38 1 5 2019-12-13 04:04:38 1 4 2019-12-13 04:24:38 1 3 2019-12-13 04:34:38 1 2 2019-12-13 04:39:38 1 4 2019-12-13 04:44:38 1 5 2019-12-13 05:04:38 1 2 2019-12-13 05:24:38 1 3 2019-12-13 05:39:38 1 3 2019-12-13 05:44:38 1 3 2019-12-13 05:49:38 1 3 2019-12-13 05:54:38 1 3 2019-12-13 05:59:38 1 2 2019-12-13 06:09:38 1 3 2019-12-13 06:24:38 1 4 2019-12-13 06:29:38 1 2 2019-12-13 06:44:38 1 3 2019-12-13 06:49:38 1 2 2019-12-13 07:44:38 1 4 2019-12-13 08:19:38 1 7 2019-12-13 08:19:38 2 2 2019-12-13 08:39:38 1 8 2019-12-13 08:39:38 2 1 2019-12-13 08:59:38 1 9 2019-12-13 08:59:38 2 1 2019-12-13 09:09:38 1 8 2019-12-13 09:09:38 2 1 2019-12-13 09:34:38 1 10 2019-12-13 09:49:38 1 10 2019-12-13 09:54:38 1 10 2019-12-13 09:59:38 1 8 2019-12-13 09:59:38 2 1 2019-12-13 10:09:38 1 11 2019-12-13 10:09:38 2 1 2019-12-13 10:24:38 1 9 2019-12-13 10:24:38 2 1 2019-12-13 10:29:38 1 7 2019-12-13 10:29:38 2 1 2019-12-13 10:59:38 1 7 2019-12-13 10:59:38 2 2 2019-12-13 11:09:38 1 9 2019-12-13 11:09:38 2 1 2019-12-13 11:14:38 1 8 2019-12-13 11:14:38 2 1 2019-12-13 11:19:38 1 8 2019-12-13 11:19:38 2 2 2019-12-13 11:29:38 1 7 2019-12-13 11:34:38 1 9 2019-12-13 11:39:38 1 10 2019-12-13 11:44:38 1 11 2019-12-13 11:59:38 1 10 2019-12-13 12:04:38 1 9 2019-12-13 12:14:38 1 10 2019-12-13 12:19:38 1 11 2019-12-13 12:24:38 1 11 2019-12-13 12:29:38 1 7 2019-12-13 12:34:38 1 7 2019-12-13 12:49:38 1 11 2019-12-13 12:59:38 1 10 2019-12-13 13:14:38 1 10 2019-12-13 13:14:38 2 1 2019-12-13 13:19:38 1 11 2019-12-13 13:19:38 2 1 2019-12-13 13:44:38 1 11 2019-12-13 13:44:38 2 2 2019-12-13 13:49:38 1 11 2019-12-13 13:49:38 2 1 2019-12-13 13:54:38 1 11 2019-12-13 13:54:38 2 1 2019-12-13 14:09:38 1 10 2019-12-13 14:14:38 1 12 2019-12-13 14:34:38 1 10 2019-12-13 14:39:38 1 10 2019-12-13 15:09:38 1 9 2019-12-13 15:09:38 2 1 2019-12-13 15:24:38 1 11 2019-12-13 15:24:38 2 1 2019-12-13 15:49:38 1 12 2019-12-13 15:49:38 2 2 2019-12-13 15:54:38 1 10 2019-12-13 15:54:38 2 2 2019-12-13 15:59:38 1 11 2019-12-13 15:59:38 2 1 2019-12-13 16:24:38 1 8 2019-12-13 16:24:38 2 1 2019-12-13 16:39:38 1 12 2019-12-13 16:39:38 2 1 2019-12-13 16:44:38 1 13 2019-12-13 16:44:38 2 1 2019-12-13 17:34:39 1 12 2019-12-13 17:34:39 2 1 2019-12-13 18:04:38 1 11 2019-12-13 18:04:38 2 3 2019-12-12 15:19:38 1 5 2019-12-12 15:19:38 2 1 2019-12-12 15:24:38 1 5 2019-12-12 15:24:38 2 1 2019-12-12 15:34:38 1 6 2019-12-12 15:34:38 2 1 2019-12-12 15:39:38 1 3 2019-12-12 15:39:38 2 1 2019-12-12 15:44:38 1 4 2019-12-12 15:44:38 2 1 2019-12-12 16:04:38 1 8 2019-12-12 16:04:38 2 2 2019-12-12 16:14:38 1 6 2019-12-12 16:14:38 2 2 2019-12-12 16:24:38 1 10 2019-12-12 16:24:38 2 2 2019-12-12 16:29:38 1 8 2019-12-12 16:29:38 2 2 2019-12-12 16:39:38 1 6 2019-12-12 16:39:38 2 2 2019-12-12 16:54:38 1 8 2019-12-12 16:54:38 2 1 2019-12-12 17:19:38 1 9 2019-12-12 17:19:38 2 1 2019-12-12 18:04:38 1 12 2019-12-12 18:04:38 2 1 2019-12-12 18:19:38 1 9 2019-12-12 18:19:38 2 1 2019-12-12 18:24:38 1 9 2019-12-12 18:24:38 2 1 2019-12-12 18:29:38 1 9 2019-12-12 18:29:38 2 1 2019-12-12 18:34:38 1 6 2019-12-12 18:39:38 1 5 2019-12-12 18:59:38 1 6 2019-12-12 19:09:38 1 4 2019-12-12 19:09:38 2 1 2019-12-12 19:29:38 1 7 2019-12-12 19:29:38 2 1 2019-12-12 19:54:38 1 7 2019-12-12 19:59:38 1 9 2019-12-12 19:59:38 2 1 2019-12-12 20:29:38 1 10 2019-12-12 20:29:38 2 1 2019-12-12 20:39:38 1 5 2019-12-12 20:39:38 2 1 2019-12-12 20:44:38 1 9 2019-12-12 20:44:38 2 1 2019-12-12 20:49:38 1 8 2019-12-12 20:49:38 2 1 2019-12-12 20:59:38 1 8 2019-12-12 21:14:38 1 9 2019-12-12 21:29:38 1 7 2019-12-12 21:34:38 1 7 2019-12-12 21:39:38 1 5 2019-12-12 21:39:38 2 1 2019-12-12 22:34:38 1 15 2019-12-12 22:34:38 2 1 2019-12-12 22:39:38 1 13 2019-12-12 22:39:38 2 1 2019-12-12 22:54:38 1 15 2019-12-12 22:54:38 2 1 2019-12-12 22:59:38 1 13 2019-12-12 22:59:38 2 1 2019-12-12 23:09:38 1 12 2019-12-12 23:09:38 2 1 2019-12-12 23:34:38 1 13 2019-12-12 23:34:38 2 1 2019-12-12 23:39:38 1 15 2019-12-12 23:39:38 2 1 2019-12-12 23:44:38 1 15 2019-12-12 23:44:38 2 1 2019-12-13 00:09:38 1 11 2019-12-13 00:09:38 2 1 2019-12-13 00:19:38 1 14 2019-12-13 00:19:38 2 1 2019-12-13 00:24:38 1 13 2019-12-13 00:24:38 2 1 2019-12-13 00:34:38 1 10 2019-12-13 00:49:38 1 11 2019-12-13 01:04:38 1 6 2019-12-13 01:14:38 1 7 2019-12-13 01:34:38 1 6 2019-12-13 01:39:38 1 6 2019-12-13 01:59:38 1 5 2019-12-13 02:04:38 1 5 2019-12-13 02:09:38 1 6 2019-12-13 02:29:38 1 4 2019-12-13 02:34:38 1 5 2019-12-13 02:44:38 1 4 2019-12-13 02:49:38 1 4 2019-12-13 02:54:38 1 5 2019-12-13 02:59:38 1 5 2019-12-13 03:19:38 1 6 2019-12-13 03:24:38 1 5 2019-12-13 03:29:38 1 5 2019-12-13 03:39:38 1 3 2019-12-13 04:09:38 1 4 2019-12-13 04:14:38 1 3 2019-12-13 04:19:38 1 3 2019-12-13 04:29:38 1 4 2019-12-13 04:49:38 1 5 2019-12-13 04:59:38 1 3 2019-12-13 05:14:38 1 3 2019-12-13 05:29:38 1 4 2019-12-13 05:29:38 2 1 2019-12-13 05:34:38 1 3 2019-12-13 05:34:38 2 1 2019-12-13 06:04:38 1 3 2019-12-13 06:14:38 1 4 2019-12-13 06:34:38 1 2 2019-12-13 06:39:38 1 2 2019-12-13 07:09:38 1 4 2019-12-13 07:09:38 2 1 2019-12-13 07:34:38 1 4 2019-12-13 07:39:38 1 4 2019-12-13 07:59:38 1 7 2019-12-13 07:59:38 2 1 2019-12-13 08:09:38 1 7 2019-12-13 08:09:38 2 1 2019-12-13 08:24:38 1 8 2019-12-13 08:24:38 2 2 2019-12-13 08:29:38 1 8 2019-12-13 08:29:38 2 2 2019-12-13 08:34:38 1 8 2019-12-13 08:34:38 2 2 2019-12-13 08:49:38 1 9 2019-12-13 08:49:38 2 1 2019-12-13 08:54:38 1 7 2019-12-13 08:54:38 2 1 2019-12-13 09:44:38 1 8 2019-12-13 10:19:38 1 8 2019-12-13 10:19:38 2 2 2019-12-13 10:34:38 1 9 2019-12-13 10:34:38 2 1 2019-12-13 11:04:38 1 9 2019-12-13 11:04:38 2 1 2019-12-13 11:54:38 1 8 2019-12-13 12:09:38 1 7 2019-12-13 12:44:38 1 10 2019-12-13 13:09:38 1 9 2019-12-13 13:09:38 2 1 2019-12-13 13:24:38 1 10 2019-12-13 13:24:38 2 1 2019-12-13 13:39:38 1 10 2019-12-13 13:39:38 2 1 2019-12-13 14:19:38 1 14 2019-12-13 14:44:38 1 10 2019-12-13 14:49:38 1 10 2019-12-13 15:04:38 1 8 2019-12-13 15:04:38 2 1 2019-12-13 15:19:38 1 10 2019-12-13 15:19:38 2 1 2019-12-13 16:04:38 1 9 2019-12-13 16:04:38 2 1 2019-12-13 16:09:38 1 11 2019-12-13 16:09:38 2 1 2019-12-13 16:14:38 1 8 2019-12-13 16:14:38 2 1 2019-12-13 17:09:38 1 10 2019-12-13 17:14:38 1 9 2019-12-13 17:19:38 1 9 2019-12-13 17:24:38 1 12 2019-12-13 17:24:38 2 1 2019-12-13 17:29:38 1 11 2019-12-13 17:29:38 2 1 2019-12-13 17:39:38 1 14 2019-12-13 17:39:38 2 2 2019-12-13 17:49:38 1 12 2019-12-13 17:49:38 2 3 2019-12-13 17:59:38 1 11 2019-12-13 17:59:38 2 3 2019-12-13 18:14:38 1 11 2019-12-13 18:14:38 2 1 2019-12-12 15:29:38 1 4 2019-12-12 15:29:38 2 1 2019-12-12 15:59:38 1 8 2019-12-12 15:59:38 2 2 2019-12-12 16:44:38 1 8 2019-12-12 16:44:38 2 1 2019-12-12 16:49:38 1 9 2019-12-12 16:49:38 2 1 2019-12-12 16:59:38 1 7 2019-12-12 16:59:38 2 1 2019-12-12 17:04:38 1 9 2019-12-12 17:04:38 2 1 2019-12-12 17:24:38 1 9 2019-12-12 17:24:38 2 1 2019-12-12 17:29:38 1 9 2019-12-12 17:29:38 2 1 2019-12-12 17:34:38 1 8 2019-12-12 17:34:38 2 1 2019-12-12 17:44:38 1 9 2019-12-12 17:44:38 2 1 2019-12-12 17:54:38 1 9 2019-12-12 17:54:38 2 1 2019-12-12 18:44:38 1 5 2019-12-12 18:54:38 1 5 2019-12-12 19:14:39 1 6 2019-12-12 19:14:39 2 1 2019-12-12 19:24:38 1 6 2019-12-12 19:24:38 2 1 2019-12-12 19:34:38 1 6 2019-12-12 19:44:38 1 7 2019-12-12 19:49:38 1 8 2019-12-12 20:04:38 1 9 2019-12-12 20:04:38 2 1 2019-12-12 20:14:38 1 7 2019-12-12 20:14:38 2 1 2019-12-12 20:19:38 1 6 2019-12-12 20:19:38 2 1 2019-12-12 20:34:38 1 7 2019-12-12 21:04:38 1 10 2019-12-12 21:19:38 1 9 2019-12-12 21:44:38 1 5 2019-12-12 21:44:38 2 1 2019-12-12 21:59:38 1 8 2019-12-12 21:59:38 2 1 2019-12-12 22:04:38 1 9 2019-12-12 22:04:38 2 1 2019-12-12 22:09:38 1 11 2019-12-12 22:09:38 2 1 2019-12-12 22:14:38 1 13 2019-12-12 22:14:38 2 1 2019-12-12 22:19:38 1 12 2019-12-12 22:19:38 2 2 2019-12-12 22:44:38 1 12 2019-12-12 22:44:38 2 1 2019-12-12 23:29:38 1 11 2019-12-12 23:29:38 2 1 2019-12-12 23:59:38 1 10 2019-12-12 23:59:38 2 1 2019-12-13 00:04:38 1 10 2019-12-13 00:04:38 2 1 2019-12-13 00:29:38 1 11 2019-12-13 00:39:38 1 10 2019-12-13 00:44:38 1 9 2019-12-13 00:54:38 1 10 2019-12-13 00:59:38 1 7 2019-12-13 01:19:38 1 8 2019-12-13 01:29:38 1 6 2019-12-13 01:49:38 1 5 2019-12-13 02:19:38 1 6 2019-12-13 03:09:38 1 4 2019-12-13 03:49:38 1 6 2019-12-13 03:54:38 1 5 2019-12-13 04:54:38 1 5 2019-12-13 05:09:38 1 3 2019-12-13 05:19:38 1 4 2019-12-13 06:19:38 1 4 2019-12-13 06:54:38 1 4 2019-12-13 06:59:38 1 5 2019-12-13 06:59:38 2 1 2019-12-13 07:04:38 1 5 2019-12-13 07:04:38 2 1 2019-12-13 07:14:38 1 4 2019-12-13 07:19:38 1 3 2019-12-13 07:24:38 1 2 2019-12-13 07:29:38 1 3 2019-12-13 07:49:38 1 6 2019-12-13 07:54:38 1 8 2019-12-13 08:04:38 1 7 2019-12-13 08:04:38 2 1 2019-12-13 08:14:38 1 6 2019-12-13 08:14:38 2 2 2019-12-13 08:44:38 1 7 2019-12-13 08:44:38 2 1 2019-12-13 09:04:38 1 9 2019-12-13 09:04:38 2 1 2019-12-13 09:14:38 1 7 2019-12-13 09:19:38 1 8 2019-12-13 09:24:38 1 5 2019-12-13 09:29:38 1 8 2019-12-13 09:39:38 1 8 2019-12-13 10:04:38 1 11 2019-12-13 10:04:38 2 1 2019-12-13 10:14:38 1 8 2019-12-13 10:14:38 2 2 2019-12-13 10:39:38 1 10 2019-12-13 10:39:38 2 1 2019-12-13 10:44:38 1 9 2019-12-13 10:44:38 2 1 2019-12-13 10:49:38 1 8 2019-12-13 10:49:38 2 1 2019-12-13 10:54:38 1 8 2019-12-13 10:54:38 2 2 2019-12-13 11:24:38 1 6 2019-12-13 11:49:38 1 9 2019-12-13 12:39:38 1 10 2019-12-13 12:54:38 1 9 2019-12-13 13:04:38 1 9 2019-12-13 13:04:38 2 1 2019-12-13 13:29:38 1 11 2019-12-13 13:29:38 2 1 2019-12-13 13:34:38 1 12 2019-12-13 13:34:38 2 2 2019-12-13 13:59:38 1 10 2019-12-13 14:04:38 1 10 2019-12-13 14:24:38 1 9 2019-12-13 14:29:38 1 10 2019-12-13 14:54:38 1 10 2019-12-13 14:59:38 1 10 2019-12-13 14:59:38 2 1 2019-12-13 15:14:38 1 9 2019-12-13 15:14:38 2 1 2019-12-13 15:29:38 1 12 2019-12-13 15:29:38 2 2 2019-12-13 15:34:38 1 10 2019-12-13 15:34:38 2 2 2019-12-13 15:39:38 1 9 2019-12-13 15:39:38 2 2 2019-12-13 15:44:38 1 10 2019-12-13 15:44:38 2 2 2019-12-13 16:19:38 1 10 2019-12-13 16:19:38 2 1 2019-12-13 16:29:38 1 10 2019-12-13 16:29:38 2 1 2019-12-13 16:34:38 1 10 2019-12-13 16:34:38 2 1 2019-12-13 16:49:38 1 13 2019-12-13 16:54:38 1 12 2019-12-13 16:59:38 1 12 2019-12-13 17:04:38 1 12 2019-12-13 17:44:38 1 15 2019-12-13 17:44:38 2 2 2019-12-13 17:54:38 1 13 2019-12-13 17:54:38 2 3 2019-12-13 18:09:38 1 11 2019-12-13 18:09:38 2 1 2019-12-13 18:19:38 1 12 2019-12-13 18:19:38 2 1 2019-12-14 14:43:07 1 2 2019-12-14 14:48:07 1 3 2019-12-14 14:53:07 1 2 2019-12-14 14:58:07 1 2 2019-12-14 15:03:07 1 2 2019-12-14 15:08:07 1 2 2019-12-14 15:13:07 1 3 2019-12-14 15:18:07 1 3 2019-12-14 15:23:07 1 1 2019-12-14 15:28:07 1 3 2019-12-14 15:33:07 1 3 2019-12-14 15:33:07 2 1 2019-12-14 15:38:07 1 4 2019-12-14 15:38:07 2 1 2019-12-14 15:43:07 1 3 2019-12-14 15:43:07 2 1 2019-12-14 15:48:07 1 4 2019-12-14 15:48:07 2 1 2019-12-14 15:53:07 1 3 2019-12-14 15:53:07 2 1 2019-12-14 15:58:07 1 2 2019-12-14 15:58:07 2 1 2019-12-14 16:03:07 1 2 2019-12-14 16:03:07 2 1 2019-12-14 16:08:07 1 1 2019-12-14 16:08:07 2 1 2019-12-14 16:13:07 1 2 2019-12-14 16:18:07 1 2 2019-12-14 16:23:07 1 4 2019-12-14 16:28:07 1 6 2019-12-14 16:33:07 1 5 2019-12-14 16:38:07 1 7 2019-12-14 16:43:07 1 7 2019-12-14 16:48:07 1 7 2019-12-14 16:53:08 1 6 2019-12-14 16:58:07 1 8 2019-12-14 16:58:07 2 1 2019-12-14 17:03:07 1 8 2019-12-14 17:03:07 2 1 2019-12-14 17:08:07 1 5 2019-12-14 17:08:07 2 1 2019-12-14 17:13:07 1 7 2019-12-14 17:18:07 1 7 2019-12-14 17:23:07 1 8 2019-12-14 17:28:07 1 11 2019-12-14 17:33:07 1 9 2019-12-14 17:38:07 1 11 2019-12-14 17:43:07 1 12 2019-12-14 17:48:07 1 10 2019-12-14 17:53:07 1 13 2019-12-14 17:58:07 1 10 2019-12-14 18:03:07 1 11 2019-12-14 18:08:07 1 10 2019-12-14 18:13:07 1 9 2019-12-14 18:13:07 2 1 2019-12-14 18:18:07 1 9 2019-12-14 18:18:07 2 1 2019-12-14 18:23:07 1 7 2019-12-14 18:28:07 1 7 2019-12-14 18:33:07 1 8 2019-12-14 19:13:07 1 5 2019-12-14 19:28:07 1 7 2019-12-14 19:33:07 1 5 2019-12-14 19:43:07 1 7 2019-12-14 19:53:07 1 7 2019-12-14 20:08:07 1 7 2019-12-14 20:23:07 1 8 2019-12-14 20:38:07 1 8 2019-12-14 20:53:07 1 9 2019-12-14 21:03:07 1 6 2019-12-14 21:03:07 2 1 2019-12-14 21:08:07 1 6 2019-12-14 21:08:07 2 1 2019-12-14 21:28:07 1 5 2019-12-14 21:28:07 2 1 2019-12-14 21:48:07 1 11 2019-12-14 21:48:07 2 1 2019-12-14 22:08:07 1 16 2019-12-14 22:08:07 2 2 2019-12-14 22:18:08 1 15 2019-12-14 22:18:08 2 2 2019-12-14 22:33:07 1 14 2019-12-14 22:33:07 2 1 2019-12-14 22:53:07 1 13 2019-12-14 23:18:07 1 9 2019-12-14 23:43:07 1 9 2019-12-14 23:58:07 1 8 2019-12-15 00:03:07 1 8 2019-12-15 00:23:07 1 8 2019-12-15 00:28:07 1 8 2019-12-15 00:33:07 1 9 2019-12-15 00:38:07 1 7 2019-12-15 00:53:07 1 6 2019-12-15 01:28:07 1 3 2019-12-15 01:33:07 1 3 2019-12-15 01:38:07 1 4 2019-12-15 01:43:07 1 3 2019-12-15 01:48:07 1 4 2019-12-15 02:03:07 1 3 2019-12-15 02:08:07 1 3 2019-12-15 02:23:07 1 3 2019-12-15 02:28:07 1 3 2019-12-15 03:13:07 1 4 2019-12-15 03:13:07 2 1 2019-12-15 03:23:07 1 3 2019-12-15 03:43:07 1 2 2019-12-15 04:03:07 1 4 2019-12-15 04:23:07 1 2 2019-12-15 04:38:07 1 3 2019-12-15 04:58:07 1 3 2019-12-15 05:18:07 1 3 2019-12-15 05:38:07 1 2 2019-12-15 06:43:07 1 2 2019-12-15 06:53:07 1 4 2019-12-15 06:58:07 1 5 2019-12-15 07:03:07 1 4 2019-12-15 07:08:07 1 5 2019-12-15 07:33:07 1 4 2019-12-15 07:33:07 2 1 2019-12-15 07:43:07 1 4 2019-12-15 07:43:07 2 1 2019-12-15 07:48:07 1 4 2019-12-15 07:48:07 2 1 2019-12-15 07:58:07 1 5 2019-12-15 07:58:07 2 1 2019-12-15 08:18:07 1 4 2019-12-15 08:48:07 1 6 2019-12-15 08:48:07 2 1 2019-12-15 08:58:07 1 5 2019-12-15 08:58:07 2 1 2019-12-15 09:03:07 1 5 2019-12-15 09:03:07 2 2 2019-12-15 10:23:07 1 9 2019-12-15 10:43:07 1 13 2019-12-15 10:53:07 1 11 2019-12-15 11:08:07 1 10 2019-12-15 11:18:07 1 9 2019-12-15 11:23:07 1 11 2019-12-15 11:48:07 1 12 2019-12-15 11:53:07 1 11 2019-12-15 12:08:07 1 9 2019-12-15 12:18:07 1 11 2019-12-15 12:18:07 2 1 2019-12-15 13:18:07 1 6 2019-12-15 13:18:07 2 2 2019-12-15 13:28:07 1 8 2019-12-15 13:28:07 2 4 2019-12-15 13:43:07 1 9 2019-12-15 13:43:07 2 2 2019-12-15 14:33:08 1 1 2019-12-15 14:33:08 2 1 2019-12-15 14:43:07 1 1 2019-12-15 14:43:07 2 1 2019-12-15 14:58:07 1 3 2019-12-15 14:58:07 2 1 2019-12-15 15:13:07 1 2 2019-12-15 15:18:07 1 2 2019-12-15 15:28:07 1 3 2019-12-15 15:28:07 2 1 2019-12-15 15:38:07 1 1 2019-12-15 15:58:08 1 1 2019-12-15 16:18:07 1 2 2019-12-15 16:18:07 2 1 2019-12-15 16:33:07 1 3 2019-12-15 16:33:07 2 1 2019-12-15 16:43:07 1 1 2019-12-15 16:43:07 2 2 2019-12-15 16:58:07 1 2 2019-12-15 16:58:07 2 1 2019-12-15 17:18:07 1 4 2019-12-15 17:33:07 1 4 2019-12-15 17:43:07 1 7 2019-12-15 17:53:07 1 7 2019-12-15 17:58:07 1 5 2019-12-15 18:28:07 1 5 2019-12-15 18:33:07 1 4 2019-12-15 18:53:07 1 9 2019-12-15 19:03:07 1 7 2019-12-15 19:13:07 1 6 2019-12-15 19:58:07 1 3 2019-12-15 19:58:07 2 1 2019-12-15 20:13:07 1 3 2019-12-15 20:13:07 2 1 2019-12-15 20:18:07 1 5 2019-12-15 20:18:07 2 1 2019-12-15 20:58:07 1 6 2019-12-15 20:58:07 2 1 2019-12-15 21:03:07 1 6 2019-12-15 21:03:07 2 1 2019-12-15 21:18:07 1 7 2019-12-15 21:18:07 2 2 2019-12-15 21:23:07 1 7 2019-12-15 21:23:07 2 1 2019-12-15 21:33:07 1 7 2019-12-15 21:43:07 1 6 2019-12-15 22:08:07 1 6 2019-12-15 22:08:07 2 1 2019-12-15 22:13:07 1 7 2019-12-15 22:13:07 2 1 2019-12-15 22:28:07 1 4 2019-12-15 22:28:07 2 2 2019-12-15 22:33:07 1 4 2019-12-15 22:33:07 2 2 2019-12-15 22:48:07 1 4 2019-12-15 22:48:07 2 2 2019-12-15 23:13:07 1 4 2019-12-15 23:13:07 2 1 2019-12-15 23:18:07 1 4 2019-12-15 23:18:07 2 1 2019-12-15 23:33:07 1 5 2019-12-15 23:33:07 2 1 2019-12-15 23:38:07 1 5 2019-12-15 23:38:07 2 1 2019-12-15 23:43:07 1 7 2019-12-15 23:43:07 2 1 2019-12-15 23:53:07 1 7 2019-12-15 23:53:07 2 1 2019-12-16 00:03:08 1 5 2019-12-16 00:03:08 2 1 2019-12-16 00:33:07 1 3 2019-12-16 00:38:07 1 1 2019-12-16 00:58:07 1 2 2019-12-16 01:43:07 1 2 2019-12-16 01:48:07 1 2 2019-12-16 02:33:07 1 1 2019-12-16 02:48:07 1 1 2019-12-16 02:53:07 1 1 2019-12-16 03:03:07 1 1 2019-12-16 03:38:07 1 1 2019-12-16 03:43:07 1 1 2019-12-16 03:48:07 1 1 2019-12-16 03:53:07 1 1 2019-12-16 03:58:07 1 1 2019-12-16 04:03:07 1 1 2019-12-16 04:08:07 1 1 2019-12-16 04:13:07 1 1 2019-12-16 04:18:07 1 1 2019-12-16 04:23:07 1 1 2019-12-16 04:33:07 1 2 2019-12-16 05:23:07 1 1 2019-12-16 05:28:07 1 2 2019-12-16 05:33:07 1 2 2019-12-16 05:38:07 1 2 2019-12-14 18:38:07 1 9 2019-12-14 18:43:07 1 10 2019-12-14 18:48:07 1 7 2019-12-14 18:53:07 1 8 2019-12-14 19:03:07 1 7 2019-12-14 19:08:07 1 8 2019-12-14 19:48:07 1 7 2019-12-14 19:58:07 1 9 2019-12-14 20:03:07 1 8 2019-12-14 20:28:07 1 7 2019-12-14 20:43:07 1 6 2019-12-14 21:13:07 1 5 2019-12-14 21:13:07 2 1 2019-12-14 21:18:07 1 6 2019-12-14 21:18:07 2 1 2019-12-14 21:23:07 1 5 2019-12-14 21:23:07 2 1 2019-12-14 21:53:07 1 11 2019-12-14 21:53:07 2 1 2019-12-14 21:58:07 1 13 2019-12-14 21:58:07 2 1 2019-12-14 22:03:07 1 16 2019-12-14 22:03:07 2 1 2019-12-14 22:23:07 1 17 2019-12-14 22:23:07 2 1 2019-12-14 22:43:07 1 12 2019-12-14 22:43:07 2 1 2019-12-14 22:58:07 1 11 2019-12-14 23:03:07 1 12 2019-12-14 23:08:07 1 10 2019-12-14 23:13:07 1 9 2019-12-14 23:23:07 1 11 2019-12-14 23:28:07 1 11 2019-12-14 23:38:07 1 8 2019-12-14 23:53:07 1 9 2019-12-15 00:08:07 1 8 2019-12-15 00:13:07 1 10 2019-12-15 00:43:07 1 7 2019-12-15 00:58:07 1 4 2019-12-15 01:18:07 1 4 2019-12-15 01:58:07 1 4 2019-12-15 02:18:07 1 3 2019-12-15 02:38:07 1 3 2019-12-15 02:43:07 1 3 2019-12-15 02:48:07 1 4 2019-12-15 02:58:07 1 3 2019-12-15 02:58:07 2 1 2019-12-15 03:18:07 1 3 2019-12-15 03:48:07 1 6 2019-12-15 03:53:07 1 5 2019-12-15 04:08:07 1 4 2019-12-15 04:13:07 1 3 2019-12-15 04:18:07 1 2 2019-12-15 04:28:07 1 2 2019-12-15 04:53:07 1 3 2019-12-15 05:08:07 1 3 2019-12-15 05:23:07 1 4 2019-12-15 05:28:07 1 3 2019-12-15 05:33:07 1 3 2019-12-15 05:53:07 1 3 2019-12-15 06:13:07 1 4 2019-12-15 06:18:07 1 3 2019-12-15 06:23:07 1 5 2019-12-15 06:33:07 1 5 2019-12-15 07:13:07 1 6 2019-12-15 07:18:07 1 5 2019-12-15 07:23:07 1 4 2019-12-15 07:53:07 1 4 2019-12-15 07:53:07 2 1 2019-12-15 08:13:07 1 4 2019-12-15 08:23:07 1 4 2019-12-15 08:28:07 1 4 2019-12-15 08:28:07 2 1 2019-12-15 08:33:07 1 1 2019-12-15 08:33:07 2 1 2019-12-15 08:53:07 1 4 2019-12-15 08:53:07 2 1 2019-12-15 09:28:07 1 6 2019-12-15 09:48:07 1 5 2019-12-15 09:53:07 1 5 2019-12-15 10:03:07 1 9 2019-12-15 10:08:07 1 7 2019-12-15 10:13:07 1 9 2019-12-15 10:18:07 1 8 2019-12-15 10:28:07 1 8 2019-12-15 10:38:07 1 12 2019-12-15 10:58:07 1 12 2019-12-15 10:58:07 2 1 2019-12-15 11:03:07 1 9 2019-12-15 11:13:07 1 9 2019-12-15 11:43:07 1 8 2019-12-15 11:58:07 1 12 2019-12-15 12:23:07 1 9 2019-12-15 12:23:07 2 1 2019-12-15 12:28:07 1 10 2019-12-15 12:28:07 2 1 2019-12-15 12:33:07 1 8 2019-12-15 12:33:07 2 1 2019-12-15 12:43:07 1 11 2019-12-15 12:43:07 2 2 2019-12-15 12:58:07 1 11 2019-12-15 12:58:07 2 2 2019-12-15 13:03:07 1 7 2019-12-15 13:03:07 2 2 2019-12-15 13:33:07 1 7 2019-12-15 13:33:07 2 3 2019-12-15 13:38:07 1 9 2019-12-15 13:38:07 2 3 2019-12-15 13:53:07 1 9 2019-12-15 13:53:07 2 2 2019-12-15 13:58:07 1 6 2019-12-15 13:58:07 2 2 2019-12-15 14:03:07 1 5 2019-12-15 14:03:07 2 1 2019-12-15 14:13:07 1 3 2019-12-15 14:18:07 1 3 2019-12-15 14:23:07 1 2 2019-12-15 14:28:07 1 2 2019-12-15 14:28:07 2 1 2019-12-15 15:03:07 1 4 2019-12-15 15:08:07 1 5 2019-12-15 15:08:07 2 1 2019-12-15 15:33:07 1 2 2019-12-15 15:33:07 2 1 2019-12-15 15:48:07 1 3 2019-12-15 16:03:07 1 1 2019-12-15 16:03:07 2 1 2019-12-15 16:28:07 1 2 2019-12-15 16:28:07 2 1 2019-12-15 16:48:07 1 2 2019-12-15 16:48:07 2 1 2019-12-15 16:53:07 1 3 2019-12-15 16:53:07 2 1 2019-12-15 17:03:07 1 1 2019-12-15 17:08:07 1 1 2019-12-15 17:23:07 1 2 2019-12-15 17:38:07 1 5 2019-12-15 17:48:07 1 6 2019-12-15 18:03:07 1 7 2019-12-15 18:08:07 1 5 2019-12-15 18:08:07 2 1 2019-12-15 18:38:07 1 6 2019-12-15 18:48:07 1 6 2019-12-15 18:48:07 2 1 2019-12-15 18:58:07 1 8 2019-12-15 19:08:07 1 9 2019-12-15 19:18:07 1 4 2019-12-15 19:23:07 1 5 2019-12-15 19:38:07 1 6 2019-12-15 19:43:07 1 5 2019-12-15 20:28:07 1 5 2019-12-15 20:28:07 2 1 2019-12-15 20:33:07 1 6 2019-12-15 20:33:07 2 1 2019-12-15 20:38:07 1 9 2019-12-15 20:38:07 2 1 2019-12-15 21:28:07 1 8 2019-12-15 21:48:07 1 8 2019-12-15 21:58:07 1 7 2019-12-15 22:03:07 1 7 2019-12-15 22:03:07 2 1 2019-12-15 22:38:07 1 4 2019-12-15 22:38:07 2 2 2019-12-15 22:43:07 1 4 2019-12-15 22:43:07 2 2 2019-12-15 22:53:07 1 4 2019-12-15 22:53:07 2 2 2019-12-15 23:28:07 1 6 2019-12-15 23:28:07 2 1 2019-12-15 23:48:07 1 7 2019-12-15 23:48:07 2 1 2019-12-15 23:58:07 1 5 2019-12-15 23:58:07 2 1 2019-12-16 00:08:07 1 6 2019-12-16 00:08:07 2 1 2019-12-16 00:23:07 1 3 2019-12-16 00:28:07 1 4 2019-12-16 00:53:07 1 3 2019-12-16 01:03:07 1 2 2019-12-16 01:08:07 1 2 2019-12-16 01:18:07 1 2 2019-12-16 01:23:07 1 1 2019-12-16 01:28:07 1 1 2019-12-16 01:33:07 1 1 2019-12-16 01:38:07 1 1 2019-12-14 18:58:07 1 7 2019-12-14 19:18:07 1 8 2019-12-14 19:23:07 1 8 2019-12-14 19:38:07 1 6 2019-12-14 20:13:07 1 10 2019-12-14 20:18:07 1 7 2019-12-14 20:33:07 1 10 2019-12-14 20:48:07 1 6 2019-12-14 20:58:07 1 9 2019-12-14 21:33:07 1 8 2019-12-14 21:33:07 2 1 2019-12-14 21:38:07 1 8 2019-12-14 21:38:07 2 1 2019-12-14 21:43:07 1 10 2019-12-14 21:43:07 2 1 2019-12-14 22:13:07 1 16 2019-12-14 22:13:07 2 2 2019-12-14 22:28:07 1 15 2019-12-14 22:28:07 2 1 2019-12-14 22:38:07 1 13 2019-12-14 22:38:07 2 1 2019-12-14 22:48:07 1 13 2019-12-14 22:48:07 2 1 2019-12-14 23:33:07 1 11 2019-12-14 23:48:07 1 8 2019-12-15 00:18:07 1 9 2019-12-15 00:48:07 1 7 2019-12-15 01:03:07 1 5 2019-12-15 01:08:07 1 6 2019-12-15 01:13:07 1 5 2019-12-15 01:23:07 1 4 2019-12-15 01:53:07 1 4 2019-12-15 02:13:07 1 3 2019-12-15 02:33:07 1 3 2019-12-15 02:53:07 1 4 2019-12-15 02:53:07 2 1 2019-12-15 03:03:07 1 3 2019-12-15 03:03:07 2 1 2019-12-15 03:08:07 1 3 2019-12-15 03:08:07 2 1 2019-12-15 03:28:07 1 4 2019-12-15 03:33:07 1 3 2019-12-15 03:38:07 1 3 2019-12-15 03:58:07 1 3 2019-12-15 04:33:07 1 2 2019-12-15 04:43:07 1 3 2019-12-15 04:48:07 1 3 2019-12-15 05:03:07 1 3 2019-12-15 05:13:07 1 4 2019-12-15 05:43:07 1 4 2019-12-15 05:48:07 1 3 2019-12-15 05:58:07 1 3 2019-12-15 06:03:07 1 3 2019-12-15 06:08:07 1 4 2019-12-15 06:28:07 1 4 2019-12-15 06:38:07 1 3 2019-12-15 06:48:07 1 3 2019-12-15 07:28:07 1 4 2019-12-15 07:38:07 1 3 2019-12-15 07:38:07 2 1 2019-12-15 08:03:07 1 4 2019-12-15 08:03:07 2 1 2019-12-15 08:08:07 1 4 2019-12-15 08:38:07 1 4 2019-12-15 08:38:07 2 1 2019-12-15 08:43:07 1 6 2019-12-15 08:43:07 2 1 2019-12-15 09:08:07 1 5 2019-12-15 09:13:07 1 6 2019-12-15 09:18:07 1 6 2019-12-15 09:23:07 1 6 2019-12-15 09:33:07 1 6 2019-12-15 09:38:07 1 6 2019-12-15 09:43:07 1 3 2019-12-15 09:58:07 1 7 2019-12-15 10:33:07 1 10 2019-12-15 10:33:07 2 1 2019-12-15 10:48:07 1 11 2019-12-15 11:28:07 1 14 2019-12-15 11:33:07 1 13 2019-12-15 11:38:07 1 12 2019-12-15 12:03:07 1 10 2019-12-15 12:13:07 1 11 2019-12-15 12:13:07 2 1 2019-12-15 12:38:07 1 10 2019-12-15 12:38:07 2 2 2019-12-15 12:48:07 1 10 2019-12-15 12:48:07 2 2 2019-12-15 12:53:07 1 9 2019-12-15 12:53:07 2 2 2019-12-15 13:08:07 1 6 2019-12-15 13:08:07 2 2 2019-12-15 13:13:07 1 10 2019-12-15 13:13:07 2 2 2019-12-15 13:23:07 1 8 2019-12-15 13:23:07 2 3 2019-12-15 13:48:07 1 9 2019-12-15 13:48:07 2 2 2019-12-15 14:08:07 1 2 2019-12-15 14:08:07 2 1 2019-12-15 14:38:07 1 1 2019-12-15 14:38:07 2 1 2019-12-15 14:48:07 1 3 2019-12-15 14:48:07 2 1 2019-12-15 14:53:07 1 3 2019-12-15 14:53:07 2 1 2019-12-15 15:23:07 1 4 2019-12-15 15:23:07 2 1 2019-12-15 15:43:08 1 2 2019-12-15 15:53:07 1 3 2019-12-15 16:08:07 1 1 2019-12-15 16:08:07 2 1 2019-12-15 16:13:08 1 3 2019-12-15 16:13:08 2 1 2019-12-15 16:23:07 1 2 2019-12-15 16:23:07 2 1 2019-12-15 16:38:07 1 2 2019-12-15 16:38:07 2 1 2019-12-15 17:13:07 1 3 2019-12-15 17:28:07 1 3 2019-12-15 18:13:07 1 4 2019-12-15 18:18:07 1 6 2019-12-15 18:23:08 1 6 2019-12-15 18:43:07 1 8 2019-12-15 18:43:07 2 1 2019-12-15 19:28:07 1 5 2019-12-15 19:33:07 1 6 2019-12-15 19:48:07 1 4 2019-12-15 19:48:07 2 1 2019-12-15 19:53:07 1 4 2019-12-15 19:53:07 2 1 2019-12-15 20:03:07 1 3 2019-12-15 20:03:07 2 1 2019-12-15 20:08:07 1 3 2019-12-15 20:08:07 2 1 2019-12-15 20:23:07 1 6 2019-12-15 20:23:07 2 1 2019-12-15 20:43:07 1 8 2019-12-15 20:43:07 2 1 2019-12-15 20:48:07 1 8 2019-12-15 20:48:07 2 1 2019-12-15 20:53:07 1 7 2019-12-15 20:53:07 2 1 2019-12-15 21:08:07 1 6 2019-12-15 21:08:07 2 1 2019-12-15 21:13:07 1 7 2019-12-15 21:13:07 2 2 2019-12-15 21:38:07 1 7 2019-12-15 21:53:07 1 6 2019-12-15 22:18:07 1 6 2019-12-15 22:18:07 2 1 2019-12-15 22:23:08 1 4 2019-12-15 22:23:08 2 2 2019-12-15 22:58:07 1 4 2019-12-15 22:58:07 2 2 2019-12-15 23:03:07 1 4 2019-12-15 23:03:07 2 2 2019-12-15 23:08:07 1 4 2019-12-15 23:08:07 2 2 2019-12-15 23:23:07 1 4 2019-12-15 23:23:07 2 1 2019-12-16 00:13:07 1 4 2019-12-16 00:13:07 2 1 2019-12-16 00:18:07 1 4 2019-12-16 00:43:07 1 2 2019-12-16 00:48:07 1 3 2019-12-16 01:13:07 1 2 2019-12-16 02:38:07 1 1 2019-12-16 02:43:07 1 1 2019-12-16 02:58:07 1 1 2019-12-16 03:08:07 1 1 2019-12-16 03:13:07 1 1 2019-12-16 03:18:07 1 1 2019-12-16 03:23:07 1 1 2019-12-16 03:28:07 1 1 2019-12-16 04:28:07 1 2 2019-12-16 04:38:07 1 1 2019-12-16 04:43:07 1 1 2019-12-16 04:48:07 1 1 2019-12-16 04:53:07 1 1 2019-12-16 04:58:07 1 1 2019-12-16 05:03:07 1 1 2019-12-16 05:08:07 1 1 2019-12-16 05:13:07 1 1 2019-12-16 05:18:07 1 1 2019-12-16 05:43:07 1 2 2019-12-16 05:43:07 2 1 2019-12-16 05:48:07 1 2 2019-12-16 05:48:07 2 1 2019-12-16 06:43:07 1 2 2019-12-16 06:48:07 1 2 2019-12-16 07:18:07 1 7 2019-12-16 07:23:07 1 8 2019-12-16 07:33:07 1 7 2019-12-16 07:38:07 1 6 2019-12-16 08:08:07 1 7 2019-12-16 08:23:07 1 6 2019-12-16 08:43:07 1 6 2019-12-16 08:53:07 1 9 2019-12-16 09:18:07 1 11 2019-12-16 09:23:07 1 10 2019-12-16 09:33:07 1 11 2019-12-16 09:58:07 1 11 2019-12-16 10:43:07 1 10 2019-12-16 10:58:07 1 9 2019-12-16 11:08:07 1 9 2019-12-16 11:18:07 1 8 2019-12-16 11:28:07 1 8 2019-12-16 11:33:07 1 10 2019-12-16 11:33:07 2 1 2019-12-16 12:18:07 1 8 2019-12-16 12:18:07 2 1 2019-12-16 12:28:07 1 7 2019-12-16 12:28:07 2 1 2019-12-16 12:48:07 1 10 2019-12-16 12:48:07 2 1 2019-12-16 13:08:07 1 14 2019-12-16 13:23:07 1 18 2019-12-16 13:48:07 1 7 2019-12-16 13:48:07 2 1 2019-12-16 13:53:07 1 11 2019-12-16 13:53:07 2 1 2019-12-16 14:03:07 1 9 2019-12-16 14:03:07 2 1 2019-12-16 14:13:07 1 6 2019-12-16 14:13:07 2 1 2019-12-16 14:18:07 1 8 2019-12-16 14:18:07 2 1 2019-12-16 14:33:07 1 7 2019-12-16 14:38:07 1 8 2019-12-16 14:48:07 1 7 2019-12-16 14:48:07 2 1 2019-12-16 15:03:07 1 7 2019-12-16 15:03:07 2 1 2019-12-16 15:23:07 1 7 2019-12-16 15:33:07 1 6 2019-12-16 15:48:07 1 8 2019-12-16 15:48:07 2 1 2019-12-16 15:53:07 1 7 2019-12-16 15:53:07 2 1 2019-12-16 15:58:07 1 7 2019-12-16 15:58:07 2 1 2019-12-16 16:38:07 1 5 2019-12-16 16:48:07 1 5 2019-12-16 16:58:07 1 4 2019-12-16 16:58:07 2 1 2019-12-16 17:13:07 1 7 2019-12-16 17:13:07 2 1 2019-12-16 17:48:07 1 8 2019-12-16 18:13:07 1 11 2019-12-16 18:18:07 1 11 2019-12-16 18:38:07 1 15 2019-12-16 18:53:07 1 14 2019-12-16 18:58:07 1 13 2019-12-16 19:13:07 1 14 2019-12-16 19:38:07 1 12 2019-12-16 19:43:07 1 12 2019-12-16 19:53:07 1 11 2019-12-16 20:08:07 1 9 2019-12-16 20:23:07 1 9 2019-12-16 20:23:07 2 1 2019-12-16 20:28:07 1 9 2019-12-16 20:28:07 2 1 2019-12-16 20:33:07 1 10 2019-12-16 20:38:07 1 8 2019-12-16 20:43:07 1 8 2019-12-16 20:53:07 1 10 2019-12-16 20:53:07 2 1 2019-12-16 21:18:07 1 6 2019-12-16 21:18:07 2 1 2019-12-16 21:23:07 1 7 2019-12-16 21:23:07 2 1 2019-12-16 21:33:07 1 6 2019-12-16 21:33:07 2 2 2019-12-16 21:43:07 1 8 2019-12-16 21:43:07 2 2 2019-12-16 21:48:07 1 7 2019-12-16 21:48:07 2 1 2019-12-16 22:03:07 1 10 2019-12-16 22:03:07 2 1 2019-12-16 22:13:07 1 9 2019-12-16 22:13:07 2 1 2019-12-16 22:18:07 1 9 2019-12-16 22:18:07 2 1 2019-12-16 22:38:07 1 10 2019-12-16 22:38:07 2 1 2019-12-16 22:43:07 1 8 2019-12-16 22:43:07 2 1 2019-12-16 23:23:07 1 7 2019-12-16 23:23:07 2 1 2019-12-16 23:43:07 1 5 2019-12-16 23:43:07 2 1 2019-12-16 23:48:07 1 5 2019-12-16 23:48:07 2 1 2019-12-16 23:53:07 1 6 2019-12-17 00:18:07 1 6 2019-12-17 00:23:07 1 7 2019-12-17 00:38:07 1 7 2019-12-17 00:53:07 1 6 2019-12-17 01:03:07 1 6 2019-12-17 01:08:07 1 7 2019-12-17 01:13:07 1 6 2019-12-17 01:18:07 1 6 2019-12-17 01:33:07 1 5 2019-12-17 01:38:07 1 5 2019-12-17 02:18:07 1 4 2019-12-17 02:33:07 1 3 2019-12-17 02:38:07 1 3 2019-12-17 02:53:07 1 4 2019-12-17 03:13:07 1 2 2019-12-17 03:33:07 1 1 2019-12-17 04:03:07 1 1 2019-12-17 04:08:07 1 1 2019-12-17 04:33:07 1 1 2019-12-17 04:38:07 1 1 2019-12-17 05:08:07 1 1 2019-12-17 05:13:07 1 1 2019-12-17 05:38:07 1 1 2019-12-17 05:43:07 1 1 2019-12-17 06:08:07 1 1 2019-12-17 06:43:07 1 3 2019-12-17 06:48:07 1 4 2019-12-17 07:08:07 1 6 2019-12-17 07:08:07 2 1 2019-12-17 07:18:07 1 6 2019-12-17 07:18:07 2 1 2019-12-17 07:23:07 1 4 2019-12-17 07:23:07 2 1 2019-12-17 07:33:07 1 6 2019-12-17 07:33:07 2 1 2019-12-17 07:38:07 1 7 2019-12-17 07:38:07 2 1 2019-12-17 07:43:07 1 4 2019-12-17 07:53:07 1 9 2019-12-17 07:58:07 1 9 2019-12-17 08:33:07 1 9 2019-12-17 08:53:07 1 7 2019-12-17 09:33:07 1 6 2019-12-17 10:28:07 1 10 2019-12-17 10:33:07 1 14 2019-12-17 10:48:07 1 12 2019-12-17 11:43:07 1 12 2019-12-17 11:43:07 2 1 2019-12-17 11:58:07 1 11 2019-12-17 11:58:07 2 1 2019-12-17 12:03:07 1 12 2019-12-17 12:03:07 2 1 2019-12-17 12:13:07 1 12 2019-12-17 12:13:07 2 1 2019-12-17 12:23:07 1 14 2019-12-17 12:38:07 1 15 2019-12-17 12:48:07 1 13 2019-12-17 12:58:07 1 13 2019-12-17 13:03:07 1 14 2019-12-17 13:18:07 1 16 2019-12-17 13:28:07 1 15 2019-12-17 13:43:07 1 12 2019-12-17 13:58:07 1 11 2019-12-17 14:03:07 1 12 2019-12-17 14:23:07 1 10 2019-12-17 14:33:07 1 15 2019-12-17 14:58:07 1 17 2019-12-17 14:58:07 2 1 2019-12-17 15:13:07 1 16 2019-12-17 15:13:07 2 1 2019-12-17 15:18:07 1 16 2019-12-17 15:18:07 2 1 2019-12-17 15:23:07 1 16 2019-12-17 15:23:07 2 1 2019-12-17 15:28:07 1 14 2019-12-16 05:53:07 1 2 2019-12-16 05:53:07 2 1 2019-12-16 06:13:07 1 3 2019-12-16 06:13:07 2 1 2019-12-16 06:18:07 1 3 2019-12-16 06:18:07 2 1 2019-12-16 06:23:07 1 3 2019-12-16 06:23:07 2 1 2019-12-16 06:28:07 1 3 2019-12-16 06:28:07 2 1 2019-12-16 06:33:07 1 3 2019-12-16 06:33:07 2 1 2019-12-16 07:03:07 1 7 2019-12-16 07:08:07 1 6 2019-12-16 07:43:07 1 6 2019-12-16 07:53:07 1 5 2019-12-16 08:18:07 1 7 2019-12-16 08:38:07 1 6 2019-12-16 08:48:07 1 7 2019-12-16 08:58:07 1 8 2019-12-16 08:58:07 2 1 2019-12-16 09:03:07 1 9 2019-12-16 09:03:07 2 1 2019-12-16 09:08:07 1 11 2019-12-16 09:28:07 1 11 2019-12-16 09:38:07 1 11 2019-12-16 09:43:07 1 11 2019-12-16 09:53:07 1 10 2019-12-16 09:53:07 2 1 2019-12-16 10:08:07 1 12 2019-12-16 10:13:07 1 11 2019-12-16 10:28:07 1 11 2019-12-16 10:33:07 1 9 2019-12-16 10:38:07 1 10 2019-12-16 11:38:07 1 8 2019-12-16 11:38:07 2 1 2019-12-16 11:53:07 1 8 2019-12-16 11:53:07 2 2 2019-12-16 12:03:07 1 8 2019-12-16 12:03:07 2 1 2019-12-16 12:13:07 1 9 2019-12-16 12:13:07 2 1 2019-12-16 12:33:07 1 11 2019-12-16 12:33:07 2 1 2019-12-16 12:43:07 1 9 2019-12-16 12:43:07 2 1 2019-12-16 13:18:07 1 16 2019-12-16 13:33:07 1 13 2019-12-16 13:38:07 1 12 2019-12-16 13:38:07 2 1 2019-12-16 13:43:07 1 9 2019-12-16 13:43:07 2 1 2019-12-16 14:28:07 1 8 2019-12-16 14:28:07 2 1 2019-12-16 14:43:07 1 8 2019-12-16 14:58:07 1 10 2019-12-16 14:58:07 2 1 2019-12-16 15:13:07 1 6 2019-12-16 15:28:07 1 4 2019-12-16 16:03:07 1 7 2019-12-16 16:18:07 1 9 2019-12-16 16:18:07 2 1 2019-12-16 16:33:07 1 9 2019-12-16 16:33:07 2 1 2019-12-16 16:53:07 1 6 2019-12-16 17:03:07 1 5 2019-12-16 17:03:07 2 1 2019-12-16 17:08:07 1 3 2019-12-16 17:08:07 2 1 2019-12-16 17:18:07 1 6 2019-12-16 17:18:07 2 1 2019-12-16 17:23:07 1 7 2019-12-16 17:23:07 2 1 2019-12-16 17:38:07 1 10 2019-12-16 17:53:07 1 10 2019-12-16 18:23:07 1 12 2019-12-16 18:33:07 1 15 2019-12-16 18:43:07 1 17 2019-12-16 18:48:07 1 15 2019-12-16 19:18:07 1 15 2019-12-16 19:23:07 1 13 2019-12-16 19:28:07 1 14 2019-12-16 19:48:07 1 14 2019-12-16 19:58:07 1 10 2019-12-16 20:18:07 1 10 2019-12-16 20:18:07 2 1 2019-12-16 20:48:07 1 9 2019-12-16 20:58:07 1 7 2019-12-16 20:58:07 2 1 2019-12-16 21:03:07 1 9 2019-12-16 21:03:07 2 1 2019-12-16 21:28:07 1 8 2019-12-16 21:28:07 2 2 2019-12-16 21:38:07 1 8 2019-12-16 21:38:07 2 2 2019-12-16 21:53:07 1 8 2019-12-16 21:53:07 2 1 2019-12-16 22:08:07 1 10 2019-12-16 22:08:07 2 1 2019-12-16 22:28:07 1 13 2019-12-16 22:28:07 2 2 2019-12-16 22:53:07 1 9 2019-12-16 22:53:07 2 1 2019-12-16 22:58:07 1 7 2019-12-16 22:58:07 2 1 2019-12-16 23:08:07 1 7 2019-12-16 23:13:07 1 6 2019-12-16 23:38:07 1 6 2019-12-16 23:38:07 2 1 2019-12-16 23:58:07 1 6 2019-12-17 00:08:07 1 5 2019-12-17 00:28:07 1 8 2019-12-17 00:33:07 1 7 2019-12-17 00:58:07 1 6 2019-12-17 01:23:07 1 4 2019-12-17 01:48:07 1 5 2019-12-17 01:53:07 1 5 2019-12-17 02:08:07 1 4 2019-12-17 02:08:07 2 1 2019-12-17 02:23:07 1 4 2019-12-17 02:28:07 1 4 2019-12-17 02:43:07 1 4 2019-12-17 02:48:07 1 4 2019-12-17 03:03:07 1 3 2019-12-17 03:18:07 1 2 2019-12-17 04:13:07 1 1 2019-12-17 04:18:07 1 1 2019-12-17 04:43:07 1 1 2019-12-17 04:48:07 1 1 2019-12-17 05:03:07 1 2 2019-12-17 05:18:07 1 1 2019-12-17 05:23:07 1 1 2019-12-17 05:48:07 1 1 2019-12-17 05:53:07 1 1 2019-12-17 06:18:07 1 2 2019-12-17 06:23:07 1 2 2019-12-17 06:28:07 1 3 2019-12-17 06:33:07 1 3 2019-12-17 06:38:07 1 3 2019-12-17 06:38:07 2 1 2019-12-17 06:58:07 1 3 2019-12-17 06:58:07 2 1 2019-12-17 07:03:07 1 5 2019-12-17 07:03:07 2 1 2019-12-17 07:13:07 1 6 2019-12-17 07:13:07 2 1 2019-12-17 07:48:07 1 7 2019-12-17 08:13:07 1 6 2019-12-17 08:23:07 1 7 2019-12-17 08:43:07 1 5 2019-12-17 08:48:07 1 9 2019-12-17 08:58:07 1 6 2019-12-17 09:08:07 1 10 2019-12-17 09:13:07 1 8 2019-12-17 09:23:07 1 7 2019-12-17 09:28:07 1 8 2019-12-17 09:53:07 1 8 2019-12-17 09:58:07 1 7 2019-12-17 10:03:07 1 9 2019-12-17 10:13:07 1 10 2019-12-17 10:18:07 1 8 2019-12-17 10:23:07 1 10 2019-12-17 10:53:07 1 13 2019-12-17 10:53:07 2 1 2019-12-17 11:13:07 1 13 2019-12-17 11:13:07 2 1 2019-12-17 11:18:07 1 12 2019-12-17 11:18:07 2 1 2019-12-17 11:28:07 1 12 2019-12-17 11:28:07 2 1 2019-12-17 11:48:07 1 11 2019-12-17 11:48:07 2 1 2019-12-17 11:53:07 1 11 2019-12-17 11:53:07 2 1 2019-12-17 12:08:07 1 12 2019-12-17 12:08:07 2 1 2019-12-17 12:43:07 1 14 2019-12-17 13:13:07 1 15 2019-12-17 13:23:07 1 16 2019-12-17 13:33:07 1 13 2019-12-17 13:48:08 1 11 2019-12-17 13:53:07 1 11 2019-12-17 14:18:07 1 11 2019-12-17 14:28:07 1 13 2019-12-17 14:43:07 1 18 2019-12-16 05:58:07 1 2 2019-12-16 05:58:07 2 1 2019-12-16 06:03:07 1 2 2019-12-16 06:03:07 2 1 2019-12-16 06:08:07 1 2 2019-12-16 06:08:07 2 1 2019-12-16 06:38:07 1 3 2019-12-16 06:38:07 2 1 2019-12-16 06:53:07 1 3 2019-12-16 06:58:07 1 6 2019-12-16 07:13:07 1 6 2019-12-16 07:28:07 1 6 2019-12-16 07:48:07 1 6 2019-12-16 07:58:07 1 7 2019-12-16 08:03:07 1 6 2019-12-16 08:13:07 1 9 2019-12-16 08:28:07 1 7 2019-12-16 08:33:07 1 6 2019-12-16 09:13:07 1 10 2019-12-16 09:48:07 1 10 2019-12-16 09:48:07 2 1 2019-12-16 10:03:07 1 14 2019-12-16 10:18:07 1 10 2019-12-16 10:23:07 1 11 2019-12-16 10:48:07 1 8 2019-12-16 10:53:07 1 11 2019-12-16 11:03:07 1 8 2019-12-16 11:13:07 1 10 2019-12-16 11:23:07 1 8 2019-12-16 11:43:07 1 8 2019-12-16 11:43:07 2 1 2019-12-16 11:48:07 1 9 2019-12-16 11:48:07 2 1 2019-12-16 11:58:07 1 8 2019-12-16 11:58:07 2 1 2019-12-16 12:08:07 1 10 2019-12-16 12:08:07 2 1 2019-12-16 12:23:07 1 10 2019-12-16 12:23:07 2 1 2019-12-16 12:38:07 1 10 2019-12-16 12:38:07 2 1 2019-12-16 12:53:07 1 14 2019-12-16 12:58:07 1 14 2019-12-16 13:03:07 1 11 2019-12-16 13:13:07 1 17 2019-12-16 13:28:07 1 15 2019-12-16 13:58:07 1 10 2019-12-16 13:58:07 2 1 2019-12-16 14:08:07 1 7 2019-12-16 14:08:07 2 1 2019-12-16 14:23:07 1 8 2019-12-16 14:23:07 2 1 2019-12-16 14:53:07 1 9 2019-12-16 14:53:07 2 1 2019-12-16 15:08:07 1 8 2019-12-16 15:18:07 1 7 2019-12-16 15:38:07 1 7 2019-12-16 15:43:07 1 7 2019-12-16 15:43:07 2 1 2019-12-16 16:08:07 1 7 2019-12-16 16:13:07 1 7 2019-12-16 16:13:07 2 1 2019-12-16 16:23:07 1 10 2019-12-16 16:23:07 2 1 2019-12-16 16:28:07 1 11 2019-12-16 16:28:07 2 1 2019-12-16 16:43:07 1 6 2019-12-16 17:28:07 1 8 2019-12-16 17:28:07 2 1 2019-12-16 17:33:07 1 7 2019-12-16 17:33:07 2 1 2019-12-16 17:43:07 1 11 2019-12-16 17:58:07 1 9 2019-12-16 18:03:07 1 11 2019-12-16 18:08:07 1 9 2019-12-16 18:28:07 1 13 2019-12-16 19:03:07 1 13 2019-12-16 19:08:07 1 14 2019-12-16 19:33:07 1 12 2019-12-16 20:03:07 1 11 2019-12-16 20:13:07 1 9 2019-12-16 21:08:07 1 10 2019-12-16 21:08:07 2 1 2019-12-16 21:13:07 1 9 2019-12-16 21:13:07 2 1 2019-12-16 21:58:07 1 9 2019-12-16 21:58:07 2 1 2019-12-16 22:23:07 1 9 2019-12-16 22:23:07 2 2 2019-12-16 22:33:07 1 12 2019-12-16 22:33:07 2 3 2019-12-16 22:48:07 1 7 2019-12-16 22:48:07 2 1 2019-12-16 23:03:07 1 9 2019-12-16 23:18:07 1 8 2019-12-16 23:18:07 2 1 2019-12-16 23:28:07 1 8 2019-12-16 23:33:07 1 5 2019-12-16 23:33:07 2 1 2019-12-17 00:03:07 1 5 2019-12-17 00:13:07 1 5 2019-12-17 00:43:07 1 6 2019-12-17 00:48:07 1 7 2019-12-17 01:28:07 1 5 2019-12-17 01:43:07 1 5 2019-12-17 01:58:07 1 5 2019-12-17 02:03:07 1 5 2019-12-17 02:13:07 1 4 2019-12-17 02:13:07 2 1 2019-12-17 02:58:07 1 4 2019-12-17 03:08:07 1 3 2019-12-17 03:23:07 1 3 2019-12-17 03:28:07 1 2 2019-12-17 03:38:07 1 1 2019-12-17 03:43:07 1 2 2019-12-17 03:48:07 1 2 2019-12-17 03:53:07 1 1 2019-12-17 03:58:07 1 1 2019-12-17 04:23:07 1 1 2019-12-17 04:28:07 1 1 2019-12-17 04:53:07 1 1 2019-12-17 04:58:07 1 1 2019-12-17 05:28:07 1 1 2019-12-17 05:33:07 1 1 2019-12-17 05:58:07 1 1 2019-12-17 06:03:07 1 1 2019-12-17 06:13:07 1 2 2019-12-17 06:53:07 1 3 2019-12-17 07:28:07 1 4 2019-12-17 07:28:07 2 1 2019-12-17 08:03:07 1 9 2019-12-17 08:08:07 1 8 2019-12-17 08:18:07 1 9 2019-12-17 08:28:07 1 7 2019-12-17 08:38:07 1 8 2019-12-17 09:03:07 1 8 2019-12-17 09:18:07 1 7 2019-12-17 09:38:07 1 7 2019-12-17 09:43:07 1 9 2019-12-17 09:48:07 1 8 2019-12-17 10:08:07 1 10 2019-12-17 10:38:07 1 11 2019-12-17 10:43:07 1 10 2019-12-17 10:58:07 1 12 2019-12-17 10:58:07 2 1 2019-12-17 11:03:07 1 11 2019-12-17 11:03:07 2 1 2019-12-17 11:08:07 1 13 2019-12-17 11:08:07 2 1 2019-12-17 11:23:07 1 11 2019-12-17 11:23:07 2 1 2019-12-17 11:33:07 1 13 2019-12-17 11:33:07 2 1 2019-12-17 11:38:07 1 12 2019-12-17 11:38:07 2 1 2019-12-17 12:18:07 1 14 2019-12-17 12:28:07 1 14 2019-12-17 12:33:07 1 15 2019-12-17 12:53:07 1 13 2019-12-17 13:08:07 1 14 2019-12-17 13:38:07 1 14 2019-12-17 14:08:07 1 15 2019-12-17 14:13:07 1 11 2019-12-17 14:38:07 1 17 2019-12-17 14:48:07 1 13 2019-12-17 14:53:07 1 13 2019-12-17 15:03:07 1 17 2019-12-17 15:03:07 2 1 2019-12-17 15:08:07 1 16 2019-12-17 15:08:07 2 1 2019-12-17 15:28:07 2 1 2019-12-17 15:33:07 1 13 2019-12-17 15:33:07 2 1 2019-12-17 15:38:07 1 13 2019-12-17 15:38:07 2 1 2019-12-17 15:43:07 1 13 2019-12-17 15:43:07 2 1 2019-12-17 15:48:07 1 15 2019-12-17 15:53:07 1 16 2019-12-17 15:58:07 1 12 2019-12-17 16:03:08 1 12 2019-12-17 16:03:08 2 2 2019-12-17 16:08:07 1 13 2019-12-17 16:08:07 2 1 2019-12-17 16:13:07 1 12 2019-12-17 16:13:07 2 1 2019-12-17 16:18:07 1 13 2019-12-17 16:18:07 2 2 2019-12-17 16:33:07 1 17 2019-12-17 16:38:07 1 15 2019-12-17 16:43:07 1 14 2019-12-17 16:53:07 1 14 2019-12-17 17:23:07 1 11 2019-12-17 17:28:07 1 12 2019-12-17 17:38:07 1 16 2019-12-17 18:03:07 1 20 2019-12-17 18:03:07 2 2 2019-12-17 18:28:07 1 20 2019-12-17 18:28:07 2 2 2019-12-17 18:33:07 1 18 2019-12-17 18:33:07 2 2 2019-12-17 18:43:07 1 18 2019-12-17 18:43:07 2 1 2019-12-17 18:48:07 1 18 2019-12-17 18:48:07 2 1 2019-12-17 18:58:07 1 16 2019-12-17 19:38:07 1 14 2019-12-17 19:38:07 2 1 2019-12-17 19:48:07 1 19 2019-12-17 19:48:07 2 1 2019-12-17 20:03:07 1 21 2019-12-17 20:03:07 2 1 2019-12-17 20:13:07 1 22 2019-12-17 20:13:07 2 1 2019-12-17 20:28:07 1 23 2019-12-17 20:28:07 2 1 2019-12-17 20:33:07 1 21 2019-12-17 20:33:07 2 1 2019-12-17 21:08:07 1 19 2019-12-17 21:08:07 2 1 2019-12-17 21:18:07 1 16 2019-12-17 21:18:07 2 2 2019-12-17 21:33:07 1 20 2019-12-17 21:33:07 2 2 2019-12-17 21:38:07 1 19 2019-12-17 21:38:07 2 2 2019-12-17 21:43:07 1 17 2019-12-17 21:43:07 2 2 2019-12-17 21:53:07 1 18 2019-12-17 21:53:07 2 3 2019-12-17 22:03:07 1 17 2019-12-17 22:03:07 2 3 2019-12-17 22:08:07 1 17 2019-12-17 22:08:07 2 3 2019-12-17 22:33:07 1 17 2019-12-17 22:33:07 2 3 2019-12-17 22:53:07 1 18 2019-12-17 22:53:07 2 2 2019-12-17 22:58:07 1 18 2019-12-17 22:58:07 2 1 2019-12-17 23:13:07 1 16 2019-12-17 23:18:07 1 15 2019-12-17 23:18:07 2 1 2019-12-17 23:23:07 1 16 2019-12-17 23:23:07 2 2 2019-12-17 23:28:07 1 15 2019-12-17 23:28:07 2 2 2019-12-18 00:18:07 1 10 2019-12-18 00:43:07 1 8 2019-12-18 01:23:07 1 11 2019-12-18 01:48:07 1 13 2019-12-18 01:58:07 1 12 2019-12-18 02:18:07 1 9 2019-12-18 02:28:07 1 10 2019-12-18 02:48:07 1 9 2019-12-18 03:03:07 1 8 2019-12-18 03:08:07 1 9 2019-12-18 03:18:07 1 9 2019-12-18 03:38:07 1 7 2019-12-18 03:43:07 1 8 2019-12-18 04:03:07 1 5 2019-12-18 04:48:07 1 6 2019-12-18 05:03:07 1 5 2019-12-18 05:03:07 2 1 2019-12-18 05:08:07 1 4 2019-12-18 05:08:07 2 1 2019-12-18 05:13:07 1 5 2019-12-18 05:13:07 2 1 2019-12-18 05:18:07 1 4 2019-12-18 05:18:07 2 1 2019-12-18 05:38:07 1 5 2019-12-18 05:38:07 2 1 2019-12-18 05:58:07 1 6 2019-12-18 05:58:07 2 1 2019-12-18 06:03:07 1 6 2019-12-18 06:03:07 2 1 2019-12-18 06:08:07 1 4 2019-12-18 06:08:07 2 1 2019-12-18 06:33:07 1 4 2019-12-18 06:53:07 1 4 2019-12-18 06:53:07 2 1 2019-12-18 06:58:07 1 4 2019-12-18 07:13:07 1 3 2019-12-18 07:13:07 2 1 2019-12-18 08:03:07 1 8 2019-12-18 08:08:07 1 7 2019-12-18 08:33:07 1 10 2019-12-18 08:33:07 2 1 2019-12-18 08:38:07 1 8 2019-12-18 08:53:07 1 9 2019-12-18 08:53:07 2 1 2019-12-18 09:13:07 1 11 2019-12-18 09:23:07 1 9 2019-12-18 09:23:07 2 1 2019-12-18 09:33:07 1 12 2019-12-18 09:33:07 2 1 2019-12-18 09:43:07 1 13 2019-12-18 09:43:07 2 1 2019-12-18 11:03:07 1 14 2019-12-18 11:18:07 1 16 2019-12-18 11:28:07 1 13 2019-12-18 12:08:07 1 16 2019-12-18 12:48:07 1 13 2019-12-18 12:48:07 2 2 2019-12-18 12:53:07 1 13 2019-12-18 12:53:07 2 2 2019-12-18 13:08:07 1 13 2019-12-18 13:08:07 2 1 2019-12-18 13:13:07 1 14 2019-12-18 13:13:07 2 1 2019-12-18 13:18:07 1 12 2019-12-18 13:48:07 1 15 2019-12-18 13:58:07 1 13 2019-12-18 14:08:07 1 13 2019-12-18 14:28:07 1 13 2019-12-18 14:38:07 1 9 2019-12-18 14:43:07 1 9 2019-12-18 16:03:07 1 14 2019-12-18 16:33:07 1 11 2019-12-18 16:38:07 1 12 2019-12-18 16:48:07 1 9 2019-12-18 16:53:07 1 13 2019-12-18 17:08:07 1 10 2019-12-18 17:33:07 1 13 2019-12-18 17:33:07 2 1 2019-12-18 17:38:07 1 11 2019-12-18 17:38:07 2 1 2019-12-18 17:58:07 1 12 2019-12-18 17:58:07 2 2 2019-12-18 18:08:07 1 15 2019-12-18 18:08:07 2 1 2019-12-18 18:13:07 1 13 2019-12-18 18:13:07 2 1 2019-12-18 18:28:07 1 13 2019-12-18 18:28:07 2 1 2019-12-18 18:38:07 1 15 2019-12-18 18:38:07 2 1 2019-12-18 18:48:07 1 16 2019-12-18 18:48:07 2 1 2019-12-18 19:23:07 1 15 2019-12-18 19:23:07 2 3 2019-12-18 19:43:07 1 14 2019-12-18 19:43:07 2 2 2019-12-18 19:48:07 1 14 2019-12-18 19:48:07 2 2 2019-12-18 19:53:07 1 14 2019-12-18 19:53:07 2 2 2019-12-18 19:58:07 1 13 2019-12-18 19:58:07 2 2 2019-12-18 20:13:07 1 14 2019-12-18 20:13:07 2 2 2019-12-18 20:18:07 1 13 2019-12-18 20:18:07 2 2 2019-12-18 20:43:07 1 14 2019-12-18 20:43:07 2 2 2019-12-18 20:48:07 1 12 2019-12-18 20:48:07 2 2 2019-12-18 20:53:07 1 14 2019-12-18 20:53:07 2 2 2019-12-18 21:08:07 1 12 2019-12-18 21:08:07 2 4 2019-12-18 21:18:07 1 13 2019-12-18 21:18:07 2 2 2019-12-18 21:23:07 1 11 2019-12-18 21:23:07 2 2 2019-12-18 21:33:07 1 14 2019-12-18 21:33:07 2 1 2019-12-18 21:38:07 1 12 2019-12-18 21:38:07 2 1 2019-12-18 21:48:07 1 11 2019-12-17 16:23:07 1 13 2019-12-17 16:23:07 2 1 2019-12-17 17:03:07 1 15 2019-12-17 17:13:07 1 13 2019-12-17 17:18:07 1 14 2019-12-17 17:33:07 1 17 2019-12-17 17:43:07 1 19 2019-12-17 17:53:07 1 21 2019-12-17 18:08:07 1 21 2019-12-17 18:08:07 2 2 2019-12-17 18:18:07 1 21 2019-12-17 18:18:07 2 2 2019-12-17 19:03:07 1 16 2019-12-17 19:03:07 2 1 2019-12-17 19:13:07 1 15 2019-12-17 19:13:07 2 1 2019-12-17 19:18:07 1 16 2019-12-17 19:18:07 2 1 2019-12-17 19:28:07 1 15 2019-12-17 19:28:07 2 1 2019-12-17 19:43:07 1 14 2019-12-17 19:43:07 2 1 2019-12-17 19:53:07 1 18 2019-12-17 19:53:07 2 2 2019-12-17 20:18:07 1 23 2019-12-17 20:18:07 2 1 2019-12-17 20:23:07 1 22 2019-12-17 20:23:07 2 1 2019-12-17 20:38:07 1 20 2019-12-17 20:38:07 2 1 2019-12-17 20:53:07 1 17 2019-12-17 20:53:07 2 1 2019-12-17 21:03:07 1 19 2019-12-17 21:03:07 2 1 2019-12-17 21:13:07 1 16 2019-12-17 21:13:07 2 2 2019-12-17 21:28:07 1 22 2019-12-17 21:28:07 2 2 2019-12-17 22:13:07 1 17 2019-12-17 22:13:07 2 3 2019-12-17 22:18:07 1 18 2019-12-17 22:18:07 2 3 2019-12-17 22:23:07 1 17 2019-12-17 22:23:07 2 3 2019-12-17 22:38:07 1 18 2019-12-17 22:38:07 2 2 2019-12-17 22:48:07 1 20 2019-12-17 22:48:07 2 2 2019-12-17 23:43:07 1 11 2019-12-17 23:43:07 2 1 2019-12-17 23:48:07 1 9 2019-12-17 23:48:07 2 1 2019-12-18 00:13:07 1 11 2019-12-18 00:23:07 1 10 2019-12-18 00:48:07 1 8 2019-12-18 01:08:08 1 10 2019-12-18 01:13:07 1 9 2019-12-18 01:28:07 1 11 2019-12-18 01:43:07 1 13 2019-12-18 02:03:07 1 10 2019-12-18 02:08:07 1 11 2019-12-18 02:13:07 1 9 2019-12-18 03:13:07 1 10 2019-12-18 03:33:07 1 8 2019-12-18 03:48:07 1 7 2019-12-18 03:58:07 1 6 2019-12-18 04:08:07 1 5 2019-12-18 04:13:07 1 5 2019-12-18 04:23:07 1 6 2019-12-18 04:38:07 1 6 2019-12-18 04:43:07 1 6 2019-12-18 04:58:07 1 5 2019-12-18 05:23:07 1 3 2019-12-18 05:23:07 2 1 2019-12-18 05:28:07 1 4 2019-12-18 05:28:07 2 1 2019-12-18 05:33:07 1 3 2019-12-18 05:33:07 2 1 2019-12-18 05:43:07 1 4 2019-12-18 05:43:07 2 1 2019-12-18 05:48:07 1 4 2019-12-18 05:48:07 2 1 2019-12-18 06:18:07 1 5 2019-12-18 06:18:07 2 1 2019-12-18 06:23:07 1 4 2019-12-18 06:23:07 2 1 2019-12-18 06:28:07 1 4 2019-12-18 06:28:07 2 1 2019-12-18 06:38:07 1 6 2019-12-18 07:08:07 1 3 2019-12-18 07:08:07 2 1 2019-12-18 07:28:07 1 2 2019-12-18 07:33:07 1 3 2019-12-18 08:13:07 1 9 2019-12-18 08:23:07 1 7 2019-12-18 08:58:07 1 11 2019-12-18 08:58:07 2 1 2019-12-18 09:03:07 1 11 2019-12-18 09:03:07 2 1 2019-12-18 09:18:07 1 10 2019-12-18 09:28:07 1 6 2019-12-18 09:28:07 2 1 2019-12-18 09:53:07 1 13 2019-12-18 09:53:07 2 1 2019-12-18 09:58:07 1 18 2019-12-18 09:58:07 2 1 2019-12-18 11:08:07 1 17 2019-12-18 11:53:07 1 14 2019-12-18 11:58:07 1 14 2019-12-18 12:03:07 1 15 2019-12-18 12:13:07 1 14 2019-12-18 12:13:07 2 1 2019-12-18 12:23:07 1 12 2019-12-18 12:23:07 2 1 2019-12-18 12:28:07 1 15 2019-12-18 12:28:07 2 1 2019-12-18 12:33:07 1 14 2019-12-18 12:38:07 1 13 2019-12-18 12:38:07 2 1 2019-12-18 13:03:07 1 10 2019-12-18 13:03:07 2 2 2019-12-18 13:23:07 1 11 2019-12-18 13:28:07 1 11 2019-12-18 13:43:07 1 15 2019-12-18 13:53:07 1 15 2019-12-18 14:23:07 1 16 2019-12-18 14:48:07 1 10 2019-12-18 15:03:07 1 10 2019-12-18 15:03:07 2 1 2019-12-18 15:13:07 1 11 2019-12-18 15:13:07 2 1 2019-12-18 15:33:07 1 12 2019-12-18 15:33:07 2 2 2019-12-18 15:38:07 1 13 2019-12-18 15:38:07 2 2 2019-12-18 15:43:07 1 13 2019-12-18 15:43:07 2 2 2019-12-18 15:58:07 1 16 2019-12-18 16:08:07 1 13 2019-12-18 16:13:07 1 13 2019-12-18 16:18:07 1 12 2019-12-18 16:28:07 1 9 2019-12-18 16:58:07 1 12 2019-12-18 17:03:07 1 11 2019-12-18 17:18:07 1 12 2019-12-18 17:23:07 1 11 2019-12-18 17:28:07 1 13 2019-12-18 17:48:07 1 12 2019-12-18 17:53:07 1 10 2019-12-18 18:23:07 1 12 2019-12-18 18:23:07 2 2 2019-12-18 18:43:07 1 18 2019-12-18 18:43:07 2 1 2019-12-18 18:53:07 1 17 2019-12-18 18:53:07 2 1 2019-12-18 18:58:07 1 17 2019-12-18 18:58:07 2 1 2019-12-18 19:08:07 1 16 2019-12-18 19:08:07 2 2 2019-12-18 19:13:07 1 17 2019-12-18 19:13:07 2 3 2019-12-18 19:18:07 1 15 2019-12-18 19:18:07 2 3 2019-12-18 20:03:07 1 13 2019-12-18 20:03:07 2 2 2019-12-18 20:28:07 1 16 2019-12-18 20:28:07 2 2 2019-12-18 20:33:07 1 16 2019-12-18 20:33:07 2 2 2019-12-18 20:38:07 1 14 2019-12-18 20:38:07 2 2 2019-12-18 20:58:07 1 12 2019-12-18 20:58:07 2 2 2019-12-18 21:13:07 1 14 2019-12-18 21:13:07 2 3 2019-12-18 21:28:07 1 12 2019-12-18 21:28:07 2 1 2019-12-18 21:43:07 1 14 2019-12-18 21:48:07 2 1 2019-12-18 21:53:07 1 13 2019-12-18 21:53:07 2 1 2019-12-18 21:58:07 1 17 2019-12-18 21:58:07 2 2 2019-12-18 22:03:07 1 14 2019-12-18 22:03:07 2 2 2019-12-17 16:28:07 1 15 2019-12-17 16:48:07 1 13 2019-12-17 16:58:07 1 15 2019-12-17 17:08:07 1 12 2019-12-17 17:48:07 1 16 2019-12-17 17:58:07 1 22 2019-12-17 17:58:07 2 1 2019-12-17 18:13:07 1 20 2019-12-17 18:13:07 2 2 2019-12-17 18:23:07 1 19 2019-12-17 18:23:07 2 2 2019-12-17 18:38:07 1 17 2019-12-17 18:38:07 2 2 2019-12-17 18:53:07 1 15 2019-12-17 18:53:07 2 1 2019-12-17 19:08:07 1 17 2019-12-17 19:08:07 2 1 2019-12-17 19:23:07 1 16 2019-12-17 19:23:07 2 1 2019-12-17 19:33:07 1 13 2019-12-17 19:33:07 2 1 2019-12-17 19:58:07 1 22 2019-12-17 19:58:07 2 1 2019-12-17 20:08:07 1 21 2019-12-17 20:08:07 2 1 2019-12-17 20:43:07 1 21 2019-12-17 20:43:07 2 1 2019-12-17 20:48:07 1 20 2019-12-17 20:48:07 2 1 2019-12-17 20:58:07 1 18 2019-12-17 20:58:07 2 1 2019-12-17 21:23:07 1 18 2019-12-17 21:23:07 2 2 2019-12-17 21:48:07 1 19 2019-12-17 21:48:07 2 3 2019-12-17 21:58:07 1 18 2019-12-17 21:58:07 2 3 2019-12-17 22:28:07 1 16 2019-12-17 22:28:07 2 3 2019-12-17 22:43:07 1 18 2019-12-17 22:43:07 2 2 2019-12-17 23:03:07 1 17 2019-12-17 23:03:07 2 1 2019-12-17 23:08:07 1 16 2019-12-17 23:33:08 1 15 2019-12-17 23:33:08 2 1 2019-12-17 23:38:07 1 12 2019-12-17 23:38:07 2 1 2019-12-17 23:53:07 1 10 2019-12-17 23:58:07 1 9 2019-12-18 00:03:07 1 9 2019-12-18 00:08:07 1 10 2019-12-18 00:28:08 1 11 2019-12-18 00:33:07 1 9 2019-12-18 00:38:07 1 9 2019-12-18 00:53:07 1 8 2019-12-18 00:58:07 1 10 2019-12-18 01:03:07 1 10 2019-12-18 01:18:07 1 10 2019-12-18 01:33:07 1 11 2019-12-18 01:38:07 1 10 2019-12-18 01:53:07 1 10 2019-12-18 02:23:07 1 9 2019-12-18 02:33:07 1 10 2019-12-18 02:38:07 1 10 2019-12-18 02:43:07 1 10 2019-12-18 02:53:07 1 9 2019-12-18 02:58:07 1 9 2019-12-18 03:23:07 1 8 2019-12-18 03:28:07 1 8 2019-12-18 03:53:07 1 6 2019-12-18 04:18:07 1 5 2019-12-18 04:28:07 1 6 2019-12-18 04:33:07 1 6 2019-12-18 04:53:07 1 5 2019-12-18 05:53:07 1 5 2019-12-18 05:53:07 2 1 2019-12-18 06:13:07 1 5 2019-12-18 06:13:07 2 1 2019-12-18 06:43:07 1 5 2019-12-18 06:48:07 1 5 2019-12-18 07:03:07 1 3 2019-12-18 07:18:07 1 3 2019-12-18 07:18:07 2 1 2019-12-18 07:23:08 1 3 2019-12-18 07:23:08 2 1 2019-12-18 07:38:07 1 6 2019-12-18 07:43:07 1 7 2019-12-18 07:48:07 1 9 2019-12-18 07:53:07 1 9 2019-12-18 07:58:07 1 10 2019-12-18 08:18:07 1 9 2019-12-18 08:28:07 1 9 2019-12-18 08:43:07 1 9 2019-12-18 08:43:07 2 1 2019-12-18 08:48:07 1 8 2019-12-18 08:48:07 2 1 2019-12-18 09:08:07 1 11 2019-12-18 09:08:07 2 1 2019-12-18 09:38:07 1 13 2019-12-18 09:38:07 2 1 2019-12-18 09:48:07 1 13 2019-12-18 09:48:07 2 1 2019-12-18 10:03:07 1 15 2019-12-18 10:03:07 2 1 2019-12-18 10:08:07 1 15 2019-12-18 10:13:07 1 14 2019-12-18 10:18:07 1 15 2019-12-18 10:23:07 1 16 2019-12-18 10:28:07 1 15 2019-12-18 10:33:08 1 15 2019-12-18 10:33:08 2 1 2019-12-18 10:38:07 1 15 2019-12-18 10:38:07 2 1 2019-12-18 10:43:07 1 16 2019-12-18 10:48:07 1 17 2019-12-18 10:53:08 1 16 2019-12-18 10:58:07 1 16 2019-12-18 11:13:07 1 15 2019-12-18 11:23:07 1 17 2019-12-18 11:33:07 1 17 2019-12-18 11:38:07 1 18 2019-12-18 11:43:07 1 16 2019-12-18 11:48:07 1 17 2019-12-18 12:18:07 1 14 2019-12-18 12:18:07 2 1 2019-12-18 12:43:07 1 11 2019-12-18 12:43:07 2 2 2019-12-18 12:58:07 1 11 2019-12-18 12:58:07 2 3 2019-12-18 13:33:07 1 14 2019-12-18 13:38:07 1 15 2019-12-18 14:03:07 1 13 2019-12-18 14:13:07 1 13 2019-12-18 14:18:07 1 14 2019-12-18 14:33:07 1 11 2019-12-18 14:53:07 1 8 2019-12-18 14:53:07 2 1 2019-12-18 14:58:07 1 8 2019-12-18 14:58:07 2 1 2019-12-18 15:08:07 1 10 2019-12-18 15:08:07 2 1 2019-12-18 15:18:07 1 11 2019-12-18 15:18:07 2 2 2019-12-18 15:23:07 1 13 2019-12-18 15:23:07 2 2 2019-12-18 15:28:07 1 13 2019-12-18 15:28:07 2 2 2019-12-18 15:48:07 1 13 2019-12-18 15:48:07 2 2 2019-12-18 15:53:07 1 14 2019-12-18 16:23:07 1 11 2019-12-18 16:43:07 1 13 2019-12-18 17:13:07 1 10 2019-12-18 17:43:07 1 14 2019-12-18 18:03:07 1 13 2019-12-18 18:03:07 2 1 2019-12-18 18:18:07 1 12 2019-12-18 18:18:07 2 2 2019-12-18 18:33:07 1 13 2019-12-18 18:33:07 2 1 2019-12-18 19:03:07 1 16 2019-12-18 19:03:07 2 1 2019-12-18 19:28:07 1 17 2019-12-18 19:28:07 2 3 2019-12-18 19:33:07 1 15 2019-12-18 19:33:07 2 3 2019-12-18 19:38:07 1 15 2019-12-18 19:38:07 2 3 2019-12-18 20:08:07 1 14 2019-12-18 20:08:07 2 2 2019-12-18 20:23:08 1 15 2019-12-18 20:23:08 2 2 2019-12-18 21:03:07 1 12 2019-12-18 21:03:07 2 3 2019-12-18 22:08:07 1 15 2019-12-18 22:08:07 2 1 2019-12-18 22:13:07 1 18 2019-12-18 22:13:07 2 1 2019-12-18 22:18:07 1 17 2019-12-18 22:18:07 2 1 2019-12-18 22:23:07 1 15 2019-12-18 22:23:07 2 1 2019-12-18 22:28:07 1 17 2019-12-18 22:28:07 2 1 2019-12-18 22:33:07 1 15 2019-12-18 22:33:07 2 1 2019-12-18 23:08:07 1 14 2019-12-18 23:13:07 1 13 2019-12-18 23:23:07 1 14 2019-12-18 23:28:07 1 13 2019-12-18 23:38:07 1 12 2019-12-18 23:48:07 1 12 2019-12-18 23:53:07 1 13 2019-12-19 00:03:07 1 11 2019-12-19 00:08:07 1 8 2019-12-19 00:28:07 1 9 2019-12-19 00:28:07 2 1 2019-12-19 00:43:07 1 10 2019-12-19 00:43:07 2 1 2019-12-19 00:48:07 1 8 2019-12-19 00:48:07 2 1 2019-12-19 01:13:07 1 9 2019-12-19 01:38:07 1 8 2019-12-19 01:48:07 1 9 2019-12-19 01:53:07 1 9 2019-12-19 02:03:07 1 8 2019-12-19 02:13:07 1 9 2019-12-19 02:13:07 2 1 2019-12-19 02:18:07 1 8 2019-12-19 02:18:07 2 1 2019-12-19 02:43:07 1 7 2019-12-19 02:53:07 1 7 2019-12-19 03:33:07 1 6 2019-12-19 03:53:07 1 7 2019-12-19 04:03:07 1 6 2019-12-19 04:18:07 1 6 2019-12-19 04:43:07 1 6 2019-12-19 04:53:07 1 7 2019-12-19 04:58:07 1 6 2019-12-19 05:28:07 1 7 2019-12-19 05:43:07 1 7 2019-12-19 05:48:07 1 8 2019-12-19 05:53:07 1 7 2019-12-19 06:03:07 1 7 2019-12-19 06:13:07 1 6 2019-12-19 06:18:07 1 7 2019-12-19 06:23:07 1 7 2019-12-19 06:38:07 1 7 2019-12-19 07:08:07 1 7 2019-12-19 07:13:07 1 8 2019-12-19 07:23:07 1 6 2019-12-19 07:28:07 1 7 2019-12-19 07:43:07 1 9 2019-12-19 07:58:07 1 7 2019-12-19 08:28:07 1 11 2019-12-19 08:33:07 1 10 2019-12-19 08:48:07 1 12 2019-12-19 08:48:07 2 1 2019-12-19 09:18:07 1 12 2019-12-19 09:28:07 1 16 2019-12-19 09:28:07 2 1 2019-12-19 09:33:07 1 16 2019-12-19 09:33:07 2 1 2019-12-19 09:53:08 1 13 2019-12-19 09:53:08 2 1 2019-12-19 09:58:07 1 14 2019-12-19 09:58:07 2 1 2019-12-19 10:13:07 1 19 2019-12-19 10:13:07 2 2 2019-12-19 10:18:07 1 17 2019-12-19 10:18:07 2 2 2019-12-19 10:28:07 1 19 2019-12-19 10:28:07 2 2 2019-12-19 10:48:07 1 17 2019-12-19 10:48:07 2 2 2019-12-19 11:23:07 1 3 2019-12-19 11:23:07 2 1 2019-12-19 11:43:07 1 2 2019-12-19 11:53:07 1 3 2019-12-19 11:53:07 2 1 2019-12-19 12:18:07 1 2 2019-12-19 12:18:07 2 1 2019-12-19 12:23:07 1 1 2019-12-19 12:23:07 2 1 2019-12-19 12:43:07 1 2 2019-12-19 12:43:07 2 1 2019-12-19 13:13:07 1 9 2019-12-19 13:13:07 2 3 2019-12-19 13:33:07 1 9 2019-12-19 13:33:07 2 1 2019-12-19 13:38:07 1 9 2019-12-19 13:38:07 2 2 2019-12-19 13:43:07 1 8 2019-12-19 13:43:07 2 3 2019-12-19 13:58:07 1 10 2019-12-19 13:58:07 2 3 2019-12-19 14:03:07 1 11 2019-12-19 14:03:07 2 3 2019-12-19 14:13:07 1 10 2019-12-19 14:13:07 2 2 2019-12-19 14:33:07 1 10 2019-12-19 14:33:07 2 2 2019-12-19 15:13:07 1 14 2019-12-19 15:13:07 2 2 2019-12-19 15:38:07 1 9 2019-12-19 15:38:07 2 1 2019-12-19 15:53:07 1 11 2019-12-19 15:53:07 2 1 2019-12-19 16:13:07 1 10 2019-12-19 16:38:07 1 12 2019-12-19 16:53:07 1 13 2019-12-19 16:53:07 2 1 2019-12-19 16:58:07 1 13 2019-12-19 16:58:07 2 1 2019-12-19 17:03:07 1 12 2019-12-19 17:03:07 2 1 2019-12-19 17:08:07 1 12 2019-12-19 17:08:07 2 2 2019-12-19 17:13:07 1 14 2019-12-19 17:13:07 2 2 2019-12-19 17:38:07 1 12 2019-12-19 17:38:07 2 2 2019-12-19 17:48:07 1 12 2019-12-19 17:48:07 2 2 2019-12-19 18:23:07 1 12 2019-12-19 18:23:07 2 1 2019-12-19 18:33:07 1 8 2019-12-19 18:43:07 1 12 2019-12-19 18:48:07 1 13 2019-12-19 18:53:07 1 14 2019-12-19 18:58:07 1 11 2019-12-19 19:13:07 1 10 2019-12-19 19:53:07 1 11 2019-12-19 19:53:07 2 3 2019-12-19 20:08:07 1 14 2019-12-19 20:08:07 2 3 2019-12-19 20:43:07 1 14 2019-12-19 20:43:07 2 2 2019-12-19 20:48:07 1 13 2019-12-19 20:48:07 2 2 2019-12-19 20:58:07 1 20 2019-12-19 20:58:07 2 1 2019-12-19 21:08:07 1 18 2019-12-19 21:23:07 1 15 2019-12-19 21:33:07 1 15 2019-12-19 21:48:07 1 17 2019-12-19 22:03:07 1 16 2019-12-19 22:03:07 2 1 2019-12-19 22:13:07 1 15 2019-12-19 22:38:07 1 14 2019-12-19 22:48:07 1 14 2019-12-19 22:53:07 1 15 2019-12-19 23:03:07 1 13 2019-12-19 23:03:07 2 1 2019-12-19 23:48:07 1 11 2019-12-19 23:48:07 2 1 2019-12-20 00:03:07 1 10 2019-12-20 00:03:07 2 1 2019-12-20 00:13:07 1 8 2019-12-20 00:13:07 2 1 2019-12-20 00:43:07 1 11 2019-12-20 00:43:07 2 1 2019-12-20 01:03:07 1 8 2019-12-20 01:03:07 2 1 2019-12-20 01:18:08 1 9 2019-12-20 01:43:07 1 9 2019-12-20 02:08:07 1 5 2019-12-20 02:13:07 1 5 2019-12-20 02:28:07 1 6 2019-12-20 02:38:07 1 7 2019-12-20 02:43:07 1 7 2019-12-20 02:48:07 1 8 2019-12-20 02:53:07 1 7 2019-12-20 02:58:07 1 7 2019-12-20 03:03:07 1 7 2019-12-20 03:08:07 1 8 2019-12-20 03:38:07 1 6 2019-12-20 04:03:07 1 6 2019-12-20 04:08:07 1 6 2019-12-20 05:03:07 1 5 2019-12-20 05:33:07 1 5 2019-12-20 05:38:07 1 5 2019-12-20 05:43:07 1 5 2019-12-20 05:48:07 1 5 2019-12-20 05:53:07 1 5 2019-12-20 05:58:07 1 5 2019-12-20 05:58:07 2 1 2019-12-20 06:23:07 1 7 2019-12-20 06:33:07 2 1 2019-12-18 22:38:07 1 12 2019-12-18 22:38:07 2 1 2019-12-18 22:48:07 1 13 2019-12-18 22:48:07 2 1 2019-12-18 23:43:07 1 14 2019-12-19 00:23:07 1 9 2019-12-19 00:23:07 2 1 2019-12-19 00:33:08 1 10 2019-12-19 00:33:08 2 1 2019-12-19 01:03:07 1 9 2019-12-19 01:08:07 1 8 2019-12-19 01:18:07 1 8 2019-12-19 01:23:07 1 9 2019-12-19 01:28:07 1 8 2019-12-19 01:33:07 1 8 2019-12-19 02:38:07 1 7 2019-12-19 02:48:07 1 7 2019-12-19 02:58:07 1 7 2019-12-19 03:08:07 1 7 2019-12-19 03:13:07 1 7 2019-12-19 03:18:07 1 6 2019-12-19 03:28:07 1 7 2019-12-19 03:38:07 1 6 2019-12-19 03:43:07 1 6 2019-12-19 04:08:07 1 6 2019-12-19 04:23:07 1 6 2019-12-19 04:33:07 1 7 2019-12-19 04:38:07 1 6 2019-12-19 05:03:07 1 6 2019-12-19 05:08:07 1 7 2019-12-19 05:13:07 1 6 2019-12-19 05:18:07 1 7 2019-12-19 05:23:07 1 6 2019-12-19 06:28:07 1 7 2019-12-19 06:43:07 1 7 2019-12-19 06:48:07 1 7 2019-12-19 06:53:07 1 6 2019-12-19 06:58:07 1 6 2019-12-19 07:38:07 1 7 2019-12-19 07:48:07 1 8 2019-12-19 07:53:07 1 8 2019-12-19 08:03:07 1 7 2019-12-19 08:23:07 1 9 2019-12-19 08:53:07 1 13 2019-12-19 08:53:07 2 1 2019-12-19 09:03:07 1 13 2019-12-19 09:08:07 1 12 2019-12-19 09:23:07 1 12 2019-12-19 09:23:07 2 1 2019-12-19 09:48:07 1 12 2019-12-19 09:48:07 2 1 2019-12-19 10:03:07 1 18 2019-12-19 10:03:07 2 1 2019-12-19 10:23:07 1 20 2019-12-19 10:23:07 2 2 2019-12-19 10:43:07 1 15 2019-12-19 10:43:07 2 2 2019-12-19 10:53:07 1 18 2019-12-19 10:53:07 2 2 2019-12-19 10:58:07 1 16 2019-12-19 10:58:07 2 2 2019-12-19 11:03:07 1 17 2019-12-19 11:03:07 2 3 2019-12-19 11:08:07 1 1 2019-12-19 11:08:07 2 1 2019-12-19 11:33:07 1 2 2019-12-19 11:33:07 2 1 2019-12-19 11:48:07 1 2 2019-12-19 12:03:07 1 3 2019-12-19 12:03:07 2 1 2019-12-19 12:13:07 1 2 2019-12-19 12:13:07 2 2 2019-12-19 12:28:07 1 1 2019-12-19 12:28:07 2 1 2019-12-19 12:33:07 1 1 2019-12-19 12:33:07 2 1 2019-12-19 12:48:07 1 1 2019-12-19 12:48:07 2 2 2019-12-19 13:03:07 1 1 2019-12-19 13:03:07 2 1 2019-12-19 13:18:07 1 10 2019-12-19 13:18:07 2 1 2019-12-19 13:28:07 1 8 2019-12-19 13:28:07 2 1 2019-12-19 13:48:07 1 11 2019-12-19 13:48:07 2 3 2019-12-19 14:28:07 1 11 2019-12-19 14:28:07 2 2 2019-12-19 14:38:07 1 12 2019-12-19 14:38:07 2 2 2019-12-19 14:43:07 1 12 2019-12-19 14:43:07 2 2 2019-12-19 14:53:07 1 13 2019-12-19 14:53:07 2 2 2019-12-19 14:58:07 1 14 2019-12-19 14:58:07 2 2 2019-12-19 15:03:07 1 14 2019-12-19 15:03:07 2 2 2019-12-19 15:08:08 1 16 2019-12-19 15:08:08 2 2 2019-12-19 15:18:07 1 14 2019-12-19 15:18:07 2 1 2019-12-19 15:23:07 1 14 2019-12-19 15:23:07 2 1 2019-12-19 15:33:07 1 9 2019-12-19 15:33:07 2 1 2019-12-19 15:48:07 1 11 2019-12-19 15:48:07 2 1 2019-12-19 15:58:07 1 11 2019-12-19 16:18:07 1 10 2019-12-19 16:28:07 1 9 2019-12-19 16:33:07 1 12 2019-12-19 16:43:07 1 11 2019-12-19 16:43:07 2 1 2019-12-19 17:23:07 1 10 2019-12-19 17:23:07 2 2 2019-12-19 17:28:07 1 12 2019-12-19 17:28:07 2 2 2019-12-19 17:33:07 1 12 2019-12-19 17:33:07 2 2 2019-12-19 17:53:07 1 14 2019-12-19 17:53:07 2 2 2019-12-19 18:13:07 1 10 2019-12-19 18:13:07 2 1 2019-12-19 19:08:07 1 11 2019-12-19 19:18:07 1 10 2019-12-19 19:23:07 1 10 2019-12-19 19:48:07 1 11 2019-12-19 19:48:07 2 3 2019-12-19 20:13:07 1 13 2019-12-19 20:13:07 2 3 2019-12-19 20:33:07 1 12 2019-12-19 20:33:07 2 3 2019-12-19 20:38:07 1 14 2019-12-19 20:38:07 2 2 2019-12-19 20:53:07 1 16 2019-12-19 20:53:07 2 2 2019-12-19 21:13:07 1 17 2019-12-19 21:38:07 1 16 2019-12-19 21:53:07 1 19 2019-12-19 22:23:07 1 14 2019-12-19 22:28:07 1 13 2019-12-19 22:33:07 1 13 2019-12-19 22:43:07 1 14 2019-12-19 23:23:07 1 16 2019-12-19 23:23:07 2 1 2019-12-19 23:28:07 1 15 2019-12-19 23:28:07 2 1 2019-12-19 23:33:07 1 15 2019-12-19 23:33:07 2 1 2019-12-19 23:43:07 1 11 2019-12-19 23:43:07 2 1 2019-12-19 23:58:07 1 11 2019-12-19 23:58:07 2 1 2019-12-20 00:08:07 1 9 2019-12-20 00:08:07 2 1 2019-12-20 01:08:07 1 9 2019-12-20 01:08:07 2 1 2019-12-20 01:23:07 1 10 2019-12-20 01:23:07 2 1 2019-12-20 01:33:07 1 8 2019-12-20 01:53:07 1 8 2019-12-20 02:03:07 1 7 2019-12-20 02:33:07 1 8 2019-12-20 03:13:07 1 7 2019-12-20 03:23:07 1 7 2019-12-20 03:28:07 1 6 2019-12-20 03:33:07 1 6 2019-12-20 03:43:07 1 7 2019-12-20 03:53:07 1 6 2019-12-20 04:13:07 1 6 2019-12-20 04:18:07 1 6 2019-12-20 04:23:07 1 6 2019-12-20 04:43:07 1 5 2019-12-20 05:08:07 1 5 2019-12-20 05:13:07 1 5 2019-12-20 06:03:07 1 5 2019-12-20 06:03:07 2 1 2019-12-20 06:08:07 1 5 2019-12-20 06:08:07 2 1 2019-12-20 06:13:07 1 5 2019-12-20 06:18:07 1 6 2019-12-20 06:28:07 1 7 2019-12-20 06:28:07 2 1 2019-12-20 06:33:07 1 7 2019-12-18 22:43:07 1 14 2019-12-18 22:43:07 2 1 2019-12-18 22:53:07 1 12 2019-12-18 22:53:07 2 1 2019-12-18 22:58:07 1 13 2019-12-18 23:03:07 1 13 2019-12-18 23:18:07 1 14 2019-12-18 23:33:07 1 14 2019-12-18 23:58:07 1 12 2019-12-19 00:13:07 1 9 2019-12-19 00:18:07 1 9 2019-12-19 00:38:07 1 10 2019-12-19 00:38:07 2 1 2019-12-19 00:53:07 1 9 2019-12-19 00:58:07 1 8 2019-12-19 01:43:07 1 10 2019-12-19 01:58:07 1 9 2019-12-19 02:08:07 1 9 2019-12-19 02:08:07 2 1 2019-12-19 02:23:07 1 7 2019-12-19 02:28:08 1 8 2019-12-19 02:28:08 2 1 2019-12-19 02:33:07 1 8 2019-12-19 03:03:07 1 7 2019-12-19 03:23:07 1 6 2019-12-19 03:48:07 1 6 2019-12-19 03:58:07 1 6 2019-12-19 04:13:07 1 6 2019-12-19 04:28:07 1 6 2019-12-19 04:48:07 1 6 2019-12-19 05:33:07 1 6 2019-12-19 05:38:07 1 7 2019-12-19 05:58:07 1 7 2019-12-19 06:08:07 1 7 2019-12-19 06:33:07 1 7 2019-12-19 07:03:07 1 6 2019-12-19 07:18:07 1 7 2019-12-19 07:33:07 1 7 2019-12-19 08:08:07 1 9 2019-12-19 08:13:07 1 10 2019-12-19 08:18:07 1 9 2019-12-19 08:38:07 1 11 2019-12-19 08:43:07 1 12 2019-12-19 08:58:07 1 14 2019-12-19 08:58:07 2 1 2019-12-19 09:13:07 1 13 2019-12-19 09:38:07 1 15 2019-12-19 09:38:07 2 1 2019-12-19 09:43:07 1 13 2019-12-19 09:43:07 2 1 2019-12-19 10:08:07 1 17 2019-12-19 10:08:07 2 1 2019-12-19 10:33:07 1 17 2019-12-19 10:33:07 2 2 2019-12-19 10:38:07 1 16 2019-12-19 10:38:07 2 2 2019-12-19 11:13:07 1 1 2019-12-19 11:13:07 2 1 2019-12-19 11:18:07 1 1 2019-12-19 11:18:07 2 1 2019-12-19 11:28:07 1 3 2019-12-19 11:28:07 2 1 2019-12-19 11:38:07 1 2 2019-12-19 11:58:07 1 4 2019-12-19 11:58:07 2 2 2019-12-19 12:08:07 1 3 2019-12-19 12:08:07 2 1 2019-12-19 12:38:07 1 2 2019-12-19 12:38:07 2 1 2019-12-19 12:53:07 1 1 2019-12-19 12:53:07 2 2 2019-12-19 12:58:07 1 1 2019-12-19 12:58:07 2 2 2019-12-19 13:08:08 1 2 2019-12-19 13:08:08 2 2 2019-12-19 13:23:07 1 8 2019-12-19 13:23:07 2 1 2019-12-19 13:53:07 1 10 2019-12-19 13:53:07 2 3 2019-12-19 14:08:07 1 10 2019-12-19 14:08:07 2 3 2019-12-19 14:18:07 1 12 2019-12-19 14:18:07 2 2 2019-12-19 14:23:07 1 11 2019-12-19 14:23:07 2 2 2019-12-19 14:48:07 1 12 2019-12-19 14:48:07 2 2 2019-12-19 15:28:07 1 9 2019-12-19 15:28:07 2 1 2019-12-19 15:43:07 1 10 2019-12-19 15:43:07 2 1 2019-12-19 16:03:07 1 13 2019-12-19 16:08:07 1 10 2019-12-19 16:23:07 1 10 2019-12-19 16:48:07 1 12 2019-12-19 16:48:07 2 1 2019-12-19 17:18:07 1 9 2019-12-19 17:18:07 2 2 2019-12-19 17:43:07 1 13 2019-12-19 17:43:07 2 2 2019-12-19 17:58:07 1 12 2019-12-19 17:58:07 2 2 2019-12-19 18:03:07 1 12 2019-12-19 18:03:07 2 2 2019-12-19 18:08:07 1 9 2019-12-19 18:08:07 2 1 2019-12-19 18:18:07 1 10 2019-12-19 18:18:07 2 1 2019-12-19 18:28:07 1 10 2019-12-19 18:28:07 2 1 2019-12-19 18:38:07 1 9 2019-12-19 18:38:07 2 1 2019-12-19 19:03:07 1 13 2019-12-19 19:28:07 1 10 2019-12-19 19:33:07 1 10 2019-12-19 19:33:07 2 2 2019-12-19 19:38:07 1 9 2019-12-19 19:38:07 2 2 2019-12-19 19:43:07 1 8 2019-12-19 19:43:07 2 2 2019-12-19 19:58:07 1 10 2019-12-19 19:58:07 2 3 2019-12-19 20:03:07 1 13 2019-12-19 20:03:07 2 3 2019-12-19 20:18:07 1 12 2019-12-19 20:18:07 2 4 2019-12-19 20:23:07 1 12 2019-12-19 20:23:07 2 4 2019-12-19 20:28:07 1 11 2019-12-19 20:28:07 2 4 2019-12-19 21:03:07 1 19 2019-12-19 21:18:07 1 17 2019-12-19 21:28:07 1 16 2019-12-19 21:43:07 1 16 2019-12-19 21:58:07 1 17 2019-12-19 21:58:07 2 1 2019-12-19 22:08:07 1 15 2019-12-19 22:18:07 1 15 2019-12-19 22:58:07 1 13 2019-12-19 23:08:07 1 14 2019-12-19 23:08:07 2 1 2019-12-19 23:13:07 1 13 2019-12-19 23:13:07 2 1 2019-12-19 23:18:07 1 14 2019-12-19 23:18:07 2 1 2019-12-19 23:38:07 1 13 2019-12-19 23:38:07 2 1 2019-12-19 23:53:07 1 11 2019-12-19 23:53:07 2 1 2019-12-20 00:18:07 1 9 2019-12-20 00:18:07 2 1 2019-12-20 00:23:07 1 10 2019-12-20 00:23:07 2 1 2019-12-20 00:28:07 1 10 2019-12-20 00:28:07 2 1 2019-12-20 00:33:07 1 9 2019-12-20 00:33:07 2 1 2019-12-20 00:38:07 1 9 2019-12-20 00:38:07 2 1 2019-12-20 00:48:07 1 10 2019-12-20 00:48:07 2 1 2019-12-20 00:53:07 1 10 2019-12-20 00:53:07 2 1 2019-12-20 00:58:07 1 8 2019-12-20 00:58:07 2 1 2019-12-20 01:13:07 1 8 2019-12-20 01:28:07 1 9 2019-12-20 01:28:07 2 1 2019-12-20 01:38:07 1 8 2019-12-20 01:48:07 1 8 2019-12-20 01:58:07 1 8 2019-12-20 02:18:07 1 6 2019-12-20 02:23:07 1 6 2019-12-20 03:18:07 1 7 2019-12-20 03:48:07 1 7 2019-12-20 03:58:07 1 6 2019-12-20 04:28:07 1 6 2019-12-20 04:33:07 1 6 2019-12-20 04:38:07 1 6 2019-12-20 04:48:07 1 5 2019-12-20 04:53:07 1 5 2019-12-20 04:58:07 1 5 2019-12-20 05:18:07 1 5 2019-12-20 05:23:07 1 5 2019-12-20 05:28:07 1 5 2019-12-20 06:38:07 1 7 2019-12-20 06:38:07 2 1 2019-12-20 06:48:07 1 6 2019-12-20 06:53:07 1 7 2019-12-20 06:58:07 1 6 2019-12-20 07:13:07 1 5 2019-12-20 07:38:07 1 5 2019-12-20 07:48:07 1 6 2019-12-20 08:08:07 1 7 2019-12-20 08:28:07 1 9 2019-12-20 08:33:07 1 9 2019-12-20 08:38:07 1 12 2019-12-20 08:43:07 1 11 2019-12-20 08:48:07 1 7 2019-12-20 09:13:07 1 7 2019-12-20 09:13:07 2 1 2019-12-20 09:18:08 1 7 2019-12-20 09:18:08 2 1 2019-12-20 09:23:07 1 8 2019-12-20 09:23:07 2 1 2019-12-20 09:33:07 1 5 2019-12-20 09:33:07 2 1 2019-12-20 10:08:07 1 6 2019-12-20 10:38:07 1 11 2019-12-20 10:48:07 1 12 2019-12-20 11:13:07 1 13 2019-12-20 11:23:07 1 15 2019-12-20 11:33:07 1 14 2019-12-20 11:43:07 1 12 2019-12-20 11:43:07 2 2 2019-12-20 12:08:07 1 13 2019-12-20 12:08:07 2 2 2019-12-20 12:13:07 1 12 2019-12-20 12:13:07 2 2 2019-12-20 12:23:07 1 13 2019-12-20 12:23:07 2 2 2019-12-20 12:38:07 1 10 2019-12-20 12:38:07 2 2 2019-12-20 12:58:07 1 10 2019-12-20 12:58:07 2 2 2019-12-20 13:33:07 1 10 2019-12-20 13:33:07 2 2 2019-12-20 14:43:07 1 10 2019-12-20 14:43:07 2 2 2019-12-20 14:48:07 1 11 2019-12-20 14:48:07 2 2 2019-12-20 14:53:07 1 11 2019-12-20 14:53:07 2 2 2019-12-20 14:58:07 1 10 2019-12-20 14:58:07 2 2 2019-12-20 15:38:07 1 7 2019-12-20 15:38:07 2 1 2019-12-20 15:48:07 1 8 2019-12-20 15:48:07 2 1 2019-12-20 15:53:07 1 12 2019-12-20 15:53:07 2 1 2019-12-20 16:03:07 1 11 2019-12-20 16:03:07 2 1 2019-12-20 16:23:07 1 12 2019-12-20 16:23:07 2 1 2019-12-20 16:58:07 1 15 2019-12-20 16:58:07 2 1 2019-12-20 17:13:07 1 13 2019-12-20 17:13:07 2 1 2019-12-20 17:38:07 1 18 2019-12-20 17:38:07 2 1 2019-12-20 18:08:07 1 19 2019-12-20 18:08:07 2 1 2019-12-20 18:13:07 1 19 2019-12-20 18:33:07 1 18 2019-12-20 18:43:07 1 16 2019-12-20 18:43:07 2 1 2019-12-20 18:48:07 1 17 2019-12-20 18:48:07 2 1 2019-12-20 18:58:07 1 18 2019-12-20 18:58:07 2 1 2019-12-20 19:03:07 1 16 2019-12-20 19:03:07 2 1 2019-12-20 19:13:07 1 15 2019-12-20 19:13:07 2 2 2019-12-20 19:23:07 1 17 2019-12-20 19:23:07 2 2 2019-12-20 19:38:07 1 14 2019-12-20 19:38:07 2 1 2019-12-20 19:43:07 1 14 2019-12-20 19:43:07 2 1 2019-12-20 19:58:07 1 14 2019-12-20 19:58:07 2 1 2019-12-20 20:13:07 1 20 2019-12-20 20:13:07 2 2 2019-12-20 20:18:07 1 18 2019-12-20 20:18:07 2 3 2019-12-20 20:23:07 1 20 2019-12-20 20:23:07 2 3 2019-12-20 20:38:07 1 19 2019-12-20 20:38:07 2 2 2019-12-20 20:48:07 1 16 2019-12-20 20:48:07 2 1 2019-12-20 20:53:07 1 18 2019-12-20 20:53:07 2 2 2019-12-20 21:13:07 1 20 2019-12-20 21:13:07 2 2 2019-12-20 21:38:07 1 18 2019-12-20 21:38:07 2 3 2019-12-20 21:53:07 1 16 2019-12-20 21:53:07 2 3 2019-12-20 22:08:07 1 15 2019-12-20 22:08:07 2 3 2019-12-20 22:18:07 1 17 2019-12-20 22:18:07 2 2 2019-12-20 22:38:07 1 15 2019-12-20 22:38:07 2 1 2019-12-20 22:53:07 1 12 2019-12-20 22:53:07 2 3 2019-12-20 23:08:07 1 11 2019-12-20 23:08:07 2 2 2019-12-20 23:38:07 1 11 2019-12-20 23:38:07 2 3 2019-12-20 23:58:07 1 9 2019-12-20 23:58:07 2 4 2019-12-21 00:08:08 1 10 2019-12-21 00:08:08 2 3 2019-12-21 00:38:07 1 12 2019-12-21 00:58:07 1 11 2019-12-21 01:13:07 1 12 2019-12-21 01:18:07 1 11 2019-12-21 01:28:07 1 11 2019-12-21 02:08:07 1 7 2019-12-21 02:18:07 1 7 2019-12-21 02:43:07 1 6 2019-12-21 02:48:07 1 6 2019-12-21 03:13:07 1 6 2019-12-21 03:33:07 1 6 2019-12-21 03:43:07 1 6 2019-12-21 03:48:07 1 6 2019-12-21 04:03:07 1 6 2019-12-21 04:13:08 1 5 2019-12-21 04:33:07 1 5 2019-12-21 04:58:07 1 5 2019-12-21 05:03:07 1 5 2019-12-21 05:38:07 1 6 2019-12-21 05:58:07 1 6 2019-12-21 06:03:07 1 6 2019-12-21 06:18:07 1 5 2019-12-21 06:33:07 1 5 2019-12-21 06:38:07 1 6 2019-12-21 06:48:07 1 6 2019-12-21 07:43:07 1 6 2019-12-21 07:58:07 1 12 2019-12-21 08:03:07 1 11 2019-12-21 08:08:08 1 10 2019-12-21 08:13:07 1 9 2019-12-21 08:33:07 1 11 2019-12-21 08:38:07 1 12 2019-12-21 08:58:07 1 11 2019-12-21 09:13:07 1 10 2019-12-21 09:28:07 1 14 2019-12-21 09:33:07 1 14 2019-12-21 09:38:07 1 15 2019-12-21 09:43:07 1 13 2019-12-21 09:58:07 1 14 2019-12-21 10:03:07 1 14 2019-12-21 10:33:07 1 15 2019-12-21 10:58:07 1 11 2019-12-21 11:03:07 1 13 2019-12-21 11:13:07 1 13 2019-12-21 11:13:07 2 1 2019-12-21 11:23:07 1 13 2019-12-21 11:23:07 2 1 2019-12-21 11:28:07 1 13 2019-12-21 11:28:07 2 1 2019-12-21 11:33:07 1 13 2019-12-21 11:33:07 2 1 2019-12-21 11:53:07 1 13 2019-12-21 11:53:07 2 1 2019-12-21 11:58:07 1 14 2019-12-21 11:58:07 2 1 2019-12-21 12:03:07 1 12 2019-12-21 12:03:07 2 1 2019-12-21 12:13:07 1 13 2019-12-21 12:13:07 2 1 2019-12-21 12:18:07 1 13 2019-12-21 12:18:07 2 1 2019-12-21 12:23:07 1 14 2019-12-21 12:23:07 2 1 2019-12-20 06:43:07 1 6 2019-12-20 06:43:07 2 1 2019-12-20 07:03:07 1 5 2019-12-20 07:08:07 1 6 2019-12-20 07:18:07 1 5 2019-12-20 07:23:07 1 6 2019-12-20 07:28:07 1 7 2019-12-20 07:33:07 1 7 2019-12-20 07:43:07 1 5 2019-12-20 07:58:07 1 7 2019-12-20 08:03:07 1 7 2019-12-20 08:18:07 1 7 2019-12-20 08:53:07 1 9 2019-12-20 08:53:07 2 1 2019-12-20 09:03:07 1 6 2019-12-20 09:03:07 2 1 2019-12-20 09:38:07 1 5 2019-12-20 09:38:07 2 2 2019-12-20 09:48:07 1 5 2019-12-20 09:48:07 2 1 2019-12-20 10:13:07 1 5 2019-12-20 10:18:07 1 7 2019-12-20 10:23:07 1 8 2019-12-20 10:23:07 2 2 2019-12-20 10:28:07 1 12 2019-12-20 10:28:07 2 2 2019-12-20 10:43:07 1 11 2019-12-20 11:08:07 1 12 2019-12-20 11:48:07 1 15 2019-12-20 11:48:07 2 2 2019-12-20 12:33:07 1 12 2019-12-20 12:33:07 2 2 2019-12-20 12:43:07 1 11 2019-12-20 12:43:07 2 2 2019-12-20 12:53:07 1 7 2019-12-20 12:53:07 2 2 2019-12-20 13:13:07 1 10 2019-12-20 13:13:07 2 3 2019-12-20 13:38:07 1 11 2019-12-20 13:38:07 2 1 2019-12-20 13:48:07 1 10 2019-12-20 13:48:07 2 1 2019-12-20 13:53:07 1 9 2019-12-20 13:53:07 2 1 2019-12-20 13:58:07 1 11 2019-12-20 13:58:07 2 1 2019-12-20 14:03:07 1 12 2019-12-20 14:03:07 2 1 2019-12-20 14:18:07 1 8 2019-12-20 14:18:07 2 2 2019-12-20 14:28:07 1 12 2019-12-20 14:28:07 2 2 2019-12-20 14:38:07 1 10 2019-12-20 14:38:07 2 2 2019-12-20 15:03:07 1 12 2019-12-20 15:03:07 2 2 2019-12-20 15:08:07 1 11 2019-12-20 15:08:07 2 2 2019-12-20 15:28:07 1 10 2019-12-20 15:28:07 2 2 2019-12-20 15:33:07 1 8 2019-12-20 15:33:07 2 2 2019-12-20 15:43:07 1 7 2019-12-20 15:43:07 2 1 2019-12-20 15:58:07 1 11 2019-12-20 15:58:07 2 1 2019-12-20 16:18:07 1 12 2019-12-20 16:18:07 2 1 2019-12-20 16:28:07 1 12 2019-12-20 16:28:07 2 1 2019-12-20 16:33:07 1 11 2019-12-20 16:33:07 2 1 2019-12-20 16:38:07 1 11 2019-12-20 16:38:07 2 1 2019-12-20 16:43:07 1 11 2019-12-20 16:43:07 2 1 2019-12-20 16:48:07 1 11 2019-12-20 16:48:07 2 1 2019-12-20 17:03:07 1 13 2019-12-20 17:03:07 2 1 2019-12-20 17:08:07 1 12 2019-12-20 17:08:07 2 1 2019-12-20 17:18:07 1 13 2019-12-20 17:18:07 2 1 2019-12-20 17:23:07 1 12 2019-12-20 17:23:07 2 1 2019-12-20 17:28:07 1 15 2019-12-20 17:28:07 2 1 2019-12-20 17:48:07 1 17 2019-12-20 17:48:07 2 1 2019-12-20 17:58:07 1 16 2019-12-20 18:03:07 1 20 2019-12-20 18:03:07 2 1 2019-12-20 18:18:07 1 19 2019-12-20 18:23:07 1 18 2019-12-20 19:08:07 1 16 2019-12-20 19:08:07 2 1 2019-12-20 19:48:07 1 16 2019-12-20 19:48:07 2 1 2019-12-20 19:53:07 1 12 2019-12-20 19:53:07 2 1 2019-12-20 20:33:07 1 19 2019-12-20 20:33:07 2 2 2019-12-20 20:43:07 1 16 2019-12-20 20:43:07 2 2 2019-12-20 20:58:07 1 19 2019-12-20 20:58:07 2 2 2019-12-20 21:03:07 1 14 2019-12-20 21:03:07 2 2 2019-12-20 21:08:07 1 18 2019-12-20 21:08:07 2 2 2019-12-20 21:18:07 1 19 2019-12-20 21:18:07 2 2 2019-12-20 21:28:07 1 17 2019-12-20 21:28:07 2 2 2019-12-20 22:03:07 1 17 2019-12-20 22:03:07 2 3 2019-12-20 22:28:07 1 15 2019-12-20 22:28:07 2 1 2019-12-20 22:43:07 1 17 2019-12-20 22:43:07 2 3 2019-12-20 22:48:07 1 15 2019-12-20 22:48:07 2 3 2019-12-20 22:58:07 1 14 2019-12-20 22:58:07 2 3 2019-12-20 23:13:08 1 11 2019-12-20 23:13:08 2 2 2019-12-20 23:18:07 1 12 2019-12-20 23:18:07 2 2 2019-12-20 23:33:07 1 13 2019-12-20 23:33:07 2 2 2019-12-20 23:43:07 1 10 2019-12-20 23:43:07 2 3 2019-12-20 23:48:07 1 11 2019-12-20 23:48:07 2 3 2019-12-20 23:53:07 1 10 2019-12-20 23:53:07 2 2 2019-12-21 00:13:07 1 10 2019-12-21 00:13:07 2 2 2019-12-21 00:28:07 1 9 2019-12-21 00:28:07 2 1 2019-12-21 00:53:07 1 11 2019-12-21 01:03:07 1 10 2019-12-21 01:03:07 2 1 2019-12-21 01:08:07 1 11 2019-12-21 01:08:07 2 1 2019-12-21 01:23:07 1 10 2019-12-21 01:33:07 1 11 2019-12-21 01:38:07 1 10 2019-12-21 01:53:07 1 9 2019-12-21 02:03:07 1 8 2019-12-21 02:38:07 1 7 2019-12-21 02:53:07 1 6 2019-12-21 03:03:07 1 6 2019-12-21 03:38:07 1 6 2019-12-21 03:53:07 1 6 2019-12-21 04:08:07 1 5 2019-12-21 04:18:07 1 4 2019-12-21 04:23:07 1 5 2019-12-21 04:28:07 1 5 2019-12-21 04:48:07 1 5 2019-12-21 04:53:07 1 5 2019-12-21 05:18:07 1 5 2019-12-21 05:23:07 1 5 2019-12-21 05:28:07 1 6 2019-12-21 05:33:07 1 6 2019-12-21 05:48:07 1 6 2019-12-21 05:53:07 1 6 2019-12-21 06:28:07 1 5 2019-12-21 06:43:07 1 5 2019-12-21 07:08:07 1 7 2019-12-21 07:13:07 1 5 2019-12-21 07:18:07 1 5 2019-12-21 07:48:07 1 7 2019-12-21 07:53:07 1 10 2019-12-21 08:18:07 1 10 2019-12-21 08:28:07 1 13 2019-12-21 09:03:07 1 10 2019-12-21 09:08:07 1 10 2019-12-21 09:48:08 1 15 2019-12-21 10:08:07 1 14 2019-12-21 10:13:07 1 15 2019-12-21 10:23:07 1 14 2019-12-21 10:43:07 1 12 2019-12-21 10:53:07 1 13 2019-12-20 07:53:07 1 5 2019-12-20 08:13:07 1 7 2019-12-20 08:23:07 1 7 2019-12-20 08:58:07 1 7 2019-12-20 09:08:07 1 7 2019-12-20 09:08:07 2 1 2019-12-20 09:28:07 1 10 2019-12-20 09:28:07 2 1 2019-12-20 09:43:07 1 5 2019-12-20 09:43:07 2 1 2019-12-20 09:53:07 1 6 2019-12-20 09:53:07 2 1 2019-12-20 09:58:07 1 5 2019-12-20 09:58:07 2 1 2019-12-20 10:03:07 1 6 2019-12-20 10:33:07 1 10 2019-12-20 10:53:07 1 12 2019-12-20 10:58:07 1 8 2019-12-20 11:03:07 1 12 2019-12-20 11:18:07 1 15 2019-12-20 11:28:07 1 14 2019-12-20 11:38:07 1 16 2019-12-20 11:38:07 2 2 2019-12-20 11:53:07 1 15 2019-12-20 11:53:07 2 2 2019-12-20 11:58:07 1 14 2019-12-20 11:58:07 2 2 2019-12-20 12:03:07 1 17 2019-12-20 12:03:07 2 2 2019-12-20 12:18:07 1 11 2019-12-20 12:18:07 2 2 2019-12-20 12:28:07 1 12 2019-12-20 12:28:07 2 2 2019-12-20 12:48:07 1 9 2019-12-20 12:48:07 2 2 2019-12-20 13:03:07 1 8 2019-12-20 13:03:07 2 1 2019-12-20 13:08:07 1 8 2019-12-20 13:08:07 2 1 2019-12-20 13:18:07 1 9 2019-12-20 13:18:07 2 2 2019-12-20 13:23:07 1 11 2019-12-20 13:23:07 2 2 2019-12-20 13:28:07 1 10 2019-12-20 13:28:07 2 2 2019-12-20 13:43:07 1 10 2019-12-20 13:43:07 2 1 2019-12-20 14:08:07 1 10 2019-12-20 14:08:07 2 1 2019-12-20 14:13:07 1 8 2019-12-20 14:13:07 2 2 2019-12-20 14:23:07 1 9 2019-12-20 14:23:07 2 2 2019-12-20 14:33:07 1 11 2019-12-20 14:33:07 2 2 2019-12-20 15:13:07 1 9 2019-12-20 15:13:07 2 3 2019-12-20 15:18:07 1 9 2019-12-20 15:18:07 2 2 2019-12-20 15:23:07 1 10 2019-12-20 15:23:07 2 2 2019-12-20 16:08:07 1 11 2019-12-20 16:08:07 2 1 2019-12-20 16:13:07 1 11 2019-12-20 16:13:07 2 1 2019-12-20 16:53:07 1 11 2019-12-20 16:53:07 2 1 2019-12-20 17:33:07 1 13 2019-12-20 17:33:07 2 1 2019-12-20 17:43:07 1 18 2019-12-20 17:43:07 2 1 2019-12-20 17:53:07 1 15 2019-12-20 17:53:07 2 1 2019-12-20 18:28:07 1 19 2019-12-20 18:38:07 1 14 2019-12-20 18:53:07 1 15 2019-12-20 18:53:07 2 1 2019-12-20 19:18:07 1 18 2019-12-20 19:18:07 2 2 2019-12-20 19:28:07 1 17 2019-12-20 19:28:07 2 2 2019-12-20 19:33:07 1 17 2019-12-20 19:33:07 2 2 2019-12-20 20:03:07 1 13 2019-12-20 20:03:07 2 1 2019-12-20 20:08:07 1 14 2019-12-20 20:08:07 2 1 2019-12-20 20:28:07 1 19 2019-12-20 20:28:07 2 2 2019-12-20 21:23:07 1 18 2019-12-20 21:23:07 2 2 2019-12-20 21:33:07 1 18 2019-12-20 21:33:07 2 3 2019-12-20 21:43:07 1 16 2019-12-20 21:43:07 2 2 2019-12-20 21:48:07 1 14 2019-12-20 21:48:07 2 3 2019-12-20 21:58:07 1 15 2019-12-20 21:58:07 2 3 2019-12-20 22:13:07 1 17 2019-12-20 22:13:07 2 2 2019-12-20 22:23:07 1 15 2019-12-20 22:23:07 2 2 2019-12-20 22:33:07 1 15 2019-12-20 22:33:07 2 1 2019-12-20 23:03:07 1 13 2019-12-20 23:03:07 2 3 2019-12-20 23:23:07 1 13 2019-12-20 23:23:07 2 2 2019-12-20 23:28:07 1 13 2019-12-20 23:28:07 2 2 2019-12-21 00:03:07 1 8 2019-12-21 00:03:07 2 4 2019-12-21 00:18:07 1 10 2019-12-21 00:18:07 2 2 2019-12-21 00:23:07 1 10 2019-12-21 00:23:07 2 1 2019-12-21 00:33:07 1 10 2019-12-21 00:33:07 2 1 2019-12-21 00:43:07 1 10 2019-12-21 00:48:07 1 13 2019-12-21 01:43:07 1 9 2019-12-21 01:48:07 1 9 2019-12-21 01:58:07 1 8 2019-12-21 02:13:07 1 7 2019-12-21 02:23:07 1 7 2019-12-21 02:28:07 1 7 2019-12-21 02:33:07 1 6 2019-12-21 02:58:07 1 6 2019-12-21 03:08:07 1 6 2019-12-21 03:18:07 1 5 2019-12-21 03:23:07 1 6 2019-12-21 03:28:07 1 6 2019-12-21 03:58:07 1 6 2019-12-21 04:38:07 1 5 2019-12-21 04:43:07 1 5 2019-12-21 05:08:07 1 5 2019-12-21 05:13:07 1 5 2019-12-21 05:43:07 1 6 2019-12-21 06:08:07 1 6 2019-12-21 06:13:07 1 6 2019-12-21 06:23:07 1 5 2019-12-21 06:53:07 1 6 2019-12-21 06:58:07 1 6 2019-12-21 07:03:07 1 7 2019-12-21 07:23:07 1 5 2019-12-21 07:28:07 1 6 2019-12-21 07:33:07 1 8 2019-12-21 07:38:07 1 6 2019-12-21 08:23:07 1 13 2019-12-21 08:43:07 1 11 2019-12-21 08:48:07 1 12 2019-12-21 08:53:07 1 12 2019-12-21 09:18:07 1 10 2019-12-21 09:23:07 1 12 2019-12-21 09:53:07 1 17 2019-12-21 10:18:07 1 14 2019-12-21 10:28:07 1 14 2019-12-21 10:38:07 1 11 2019-12-21 10:38:07 2 1 2019-12-21 10:48:07 1 11 2019-12-21 11:08:07 1 13 2019-12-21 11:18:07 1 13 2019-12-21 11:18:07 2 1 2019-12-21 11:38:07 1 15 2019-12-21 11:38:07 2 1 2019-12-21 11:43:07 1 11 2019-12-21 11:43:07 2 1 2019-12-21 11:48:07 1 13 2019-12-21 12:08:07 1 12 2019-12-21 12:08:07 2 1 2019-12-21 12:28:07 1 14 2019-12-21 12:28:07 2 1 2019-12-21 12:33:07 1 15 2019-12-21 12:33:07 2 1 2019-12-21 12:38:07 1 15 2019-12-21 12:38:07 2 1 2019-12-21 12:43:07 1 14 2019-12-21 12:43:07 2 2 2019-12-21 12:48:07 1 13 2019-12-21 12:48:07 2 2 2019-12-21 12:53:07 1 15 2019-12-21 12:53:07 2 2 2019-12-21 12:58:07 1 16 2019-12-21 12:58:07 2 2 2019-12-21 13:03:07 1 17 2019-12-21 13:03:07 2 2 2019-12-21 13:18:07 1 18 2019-12-21 13:18:07 2 3 2019-12-21 13:33:07 1 16 2019-12-21 13:33:07 2 2 2019-12-21 13:38:07 1 19 2019-12-21 13:48:07 1 16 2019-12-21 13:53:07 1 17 2019-12-21 14:18:07 1 16 2019-12-21 14:18:07 2 1 2019-12-21 14:28:07 1 16 2019-12-21 14:28:07 2 1 2019-12-21 14:48:07 1 16 2019-12-21 14:48:07 2 1 2019-12-21 15:48:07 1 14 2019-12-21 16:03:07 1 13 2019-12-21 16:28:07 1 12 2019-12-21 16:43:07 1 13 2019-12-21 16:48:07 1 15 2019-12-21 16:53:07 1 14 2019-12-21 17:08:07 1 13 2019-12-21 17:08:07 2 1 2019-12-21 17:23:07 1 11 2019-12-21 17:23:07 2 1 2019-12-21 17:33:07 1 9 2019-12-21 17:33:07 2 1 2019-12-21 17:38:07 1 8 2019-12-21 17:38:07 2 1 2019-12-21 18:18:07 1 17 2019-12-21 18:18:07 2 1 2019-12-21 18:38:07 1 16 2019-12-21 18:38:07 2 1 2019-12-21 18:48:07 1 15 2019-12-21 18:48:07 2 1 2019-12-21 18:53:07 1 12 2019-12-21 19:03:07 1 12 2019-12-21 19:03:07 2 1 2019-12-21 19:33:07 1 12 2019-12-21 19:43:07 1 10 2019-12-21 19:48:07 1 12 2019-12-21 20:13:07 1 11 2019-12-21 20:28:08 1 13 2019-12-21 20:38:07 1 15 2019-12-21 20:43:07 1 12 2019-12-21 21:48:07 2 2 2019-12-21 21:53:07 2 2 2019-12-21 21:58:07 2 2 2019-12-21 23:38:07 2 3 2019-12-22 00:03:07 2 2 2019-12-22 00:23:07 2 1 2019-12-22 00:28:07 2 1 2019-12-22 00:33:07 2 1 2019-12-22 00:38:07 2 1 2019-12-22 00:43:07 2 1 2019-12-22 00:48:07 2 1 2019-12-22 00:53:07 2 1 2019-12-22 00:58:07 2 1 2019-12-22 01:03:07 2 1 2019-12-22 02:18:07 2 3 2019-12-22 02:28:07 2 2 2019-12-22 02:33:07 2 2 2019-12-22 02:38:07 2 2 2019-12-22 05:58:07 2 1 2019-12-22 06:03:07 2 1 2019-12-22 06:08:07 2 1 2019-12-22 09:13:07 2 1 2019-12-22 10:08:07 2 2 2019-12-22 10:38:07 2 1 2019-12-22 10:43:07 2 1 2019-12-22 10:48:07 2 1 2019-12-22 10:53:07 2 1 2019-12-22 11:33:07 2 1 2019-12-22 11:38:07 2 1 2019-12-22 11:43:07 2 1 2019-12-22 11:48:07 2 1 2019-12-22 11:53:07 2 1 2019-12-22 11:58:07 2 1 2019-12-22 12:03:07 2 1 2019-12-22 12:08:07 2 1 2019-12-22 12:13:07 2 1 2019-12-22 12:18:07 2 1 2019-12-22 13:18:07 2 1 2019-12-22 13:23:07 2 1 2019-12-22 13:28:07 2 1 2019-12-22 15:03:07 2 1 2019-12-22 15:18:07 2 2 2019-12-22 15:23:07 2 2 2019-12-22 15:28:07 2 2 2019-12-22 15:38:07 2 1 2019-12-22 16:33:07 2 3 2019-12-22 17:03:07 2 1 2019-12-22 17:08:07 2 1 2019-12-22 17:13:07 2 1 2019-12-22 17:18:07 2 1 2019-12-22 18:29:27 1 3 2019-12-22 18:29:27 2 1 2019-12-22 18:39:27 1 3 2019-12-22 18:39:27 2 2 2019-12-22 18:49:27 1 3 2019-12-22 18:49:27 2 2 2019-12-22 18:54:27 1 3 2019-12-22 18:54:27 2 1 2019-12-22 19:44:27 1 5 2019-12-22 19:54:27 1 5 2019-12-22 19:54:27 2 1 2019-12-22 19:59:27 1 7 2019-12-22 20:04:27 1 4 2019-12-22 20:09:27 1 5 2019-12-22 20:09:27 2 1 2019-12-22 20:14:27 1 7 2019-12-22 20:14:27 2 1 2019-12-22 20:54:27 1 6 2019-12-22 20:54:27 2 1 2019-12-22 21:09:27 1 10 2019-12-22 21:09:27 2 2 2019-12-22 21:14:27 1 9 2019-12-22 21:14:27 2 3 2019-12-22 21:34:27 1 8 2019-12-22 21:34:27 2 2 2019-12-22 21:39:27 1 10 2019-12-22 21:39:27 2 3 2019-12-22 21:54:27 1 10 2019-12-22 21:54:27 2 4 2019-12-22 22:09:27 1 11 2019-12-22 22:09:27 2 3 2019-12-22 22:14:27 1 11 2019-12-22 22:14:27 2 3 2019-12-22 22:24:27 1 13 2019-12-22 22:24:27 2 2 2019-12-22 22:49:27 1 10 2019-12-22 23:09:27 1 10 2019-12-22 23:19:27 1 9 2019-12-22 23:19:27 2 1 2019-12-22 23:34:27 1 8 2019-12-22 23:34:27 2 1 2019-12-23 00:09:27 1 7 2019-12-23 00:09:27 2 1 2019-12-23 00:34:27 1 5 2019-12-23 00:34:27 2 1 2019-12-23 01:29:27 1 7 2019-12-23 01:34:27 1 8 2019-12-23 01:39:27 1 7 2019-12-23 01:49:27 1 7 2019-12-23 01:59:27 1 8 2019-12-23 02:09:27 1 7 2019-12-23 02:29:27 1 6 2019-12-23 02:39:27 1 6 2019-12-23 02:44:27 1 5 2019-12-23 02:49:27 1 5 2019-12-23 03:19:28 1 6 2019-12-23 03:24:27 1 5 2019-12-23 03:54:27 1 5 2019-12-23 03:59:27 1 5 2019-12-23 04:04:27 1 4 2019-12-23 04:09:27 1 4 2019-12-23 04:34:27 1 4 2019-12-23 04:39:27 1 4 2019-12-23 05:44:27 1 5 2019-12-23 05:44:27 2 1 2019-12-23 06:04:27 2 1 2019-12-23 06:14:27 1 5 2019-12-23 06:14:27 2 1 2019-12-23 06:19:27 1 5 2019-12-23 06:19:27 2 1 2019-12-23 06:24:27 1 6 2019-12-23 06:29:27 1 6 2019-12-23 06:34:27 1 7 2019-12-23 06:39:27 1 7 2019-12-23 06:44:27 1 6 2019-12-23 06:54:27 1 9 2019-12-23 06:59:27 1 7 2019-12-23 07:04:27 1 7 2019-12-23 07:09:27 1 6 2019-12-23 07:14:27 1 8 2019-12-23 07:24:27 1 7 2019-12-23 07:29:27 1 7 2019-12-23 07:34:27 1 7 2019-12-23 07:39:27 1 8 2019-12-23 07:44:27 1 8 2019-12-23 07:54:27 1 8 2019-12-23 07:59:27 1 10 2019-12-23 08:04:27 1 9 2019-12-23 08:14:27 1 10 2019-12-23 08:19:27 1 10 2019-12-21 13:08:07 1 15 2019-12-21 13:08:07 2 3 2019-12-21 13:13:07 1 16 2019-12-21 13:13:07 2 3 2019-12-21 13:23:07 1 17 2019-12-21 13:23:07 2 3 2019-12-21 13:28:07 1 17 2019-12-21 13:28:07 2 3 2019-12-21 13:43:07 1 15 2019-12-21 13:58:07 1 16 2019-12-21 14:08:07 1 16 2019-12-21 14:33:07 1 17 2019-12-21 14:33:07 2 1 2019-12-21 14:58:07 1 13 2019-12-21 15:08:07 1 13 2019-12-21 15:08:07 2 1 2019-12-21 15:13:07 1 15 2019-12-21 15:13:07 2 1 2019-12-21 15:18:07 1 14 2019-12-21 15:18:07 2 1 2019-12-21 15:23:07 1 15 2019-12-21 15:23:07 2 1 2019-12-21 15:38:07 1 16 2019-12-21 15:38:07 2 1 2019-12-21 15:43:07 1 15 2019-12-21 15:53:07 1 14 2019-12-21 16:13:07 1 11 2019-12-21 16:18:07 1 12 2019-12-21 16:58:07 1 14 2019-12-21 17:58:07 1 14 2019-12-21 17:58:07 2 1 2019-12-21 18:03:07 1 15 2019-12-21 18:03:07 2 1 2019-12-21 18:08:07 1 12 2019-12-21 18:08:07 2 1 2019-12-21 18:13:07 1 15 2019-12-21 18:13:07 2 1 2019-12-21 18:28:07 1 18 2019-12-21 18:28:07 2 1 2019-12-21 19:18:07 1 12 2019-12-21 19:18:07 2 1 2019-12-21 19:23:07 1 15 2019-12-21 19:23:07 2 1 2019-12-21 19:28:07 1 13 2019-12-21 19:38:07 1 7 2019-12-21 19:53:07 1 15 2019-12-21 19:58:07 1 14 2019-12-21 20:03:07 1 13 2019-12-21 20:08:07 1 12 2019-12-21 20:18:07 1 12 2019-12-21 20:23:07 1 11 2019-12-21 20:33:07 1 14 2019-12-21 21:33:07 2 2 2019-12-21 21:43:07 2 1 2019-12-21 22:08:07 2 1 2019-12-22 00:18:07 2 2 2019-12-22 01:23:07 2 1 2019-12-22 02:23:07 2 1 2019-12-22 06:18:07 2 1 2019-12-22 06:23:07 2 1 2019-12-22 09:58:07 2 2 2019-12-22 10:03:07 2 1 2019-12-22 10:58:07 2 1 2019-12-22 11:08:07 2 1 2019-12-22 11:13:07 2 1 2019-12-22 11:18:07 2 1 2019-12-22 11:23:07 2 1 2019-12-22 11:28:07 2 3 2019-12-22 13:48:07 2 1 2019-12-22 13:53:07 2 1 2019-12-22 13:58:07 2 1 2019-12-22 14:03:07 2 1 2019-12-22 14:08:07 2 1 2019-12-22 14:13:07 2 1 2019-12-22 14:18:07 2 1 2019-12-22 15:13:07 2 3 2019-12-22 16:48:07 2 3 2019-12-22 16:53:07 2 3 2019-12-22 16:58:07 2 2 2019-12-22 18:34:27 1 2 2019-12-22 18:34:27 2 2 2019-12-22 18:44:27 1 2 2019-12-22 18:44:27 2 1 2019-12-22 19:14:27 1 4 2019-12-22 19:14:27 2 1 2019-12-22 19:19:27 1 5 2019-12-22 19:19:27 2 1 2019-12-22 19:34:27 1 4 2019-12-22 19:39:27 1 5 2019-12-22 20:19:27 1 8 2019-12-22 20:19:27 2 1 2019-12-22 20:29:27 1 7 2019-12-22 20:29:27 2 1 2019-12-22 20:39:27 1 6 2019-12-22 20:39:27 2 1 2019-12-22 20:49:27 1 6 2019-12-22 20:49:27 2 1 2019-12-22 21:04:27 1 10 2019-12-22 21:04:27 2 2 2019-12-22 21:24:27 1 7 2019-12-22 21:24:27 2 2 2019-12-22 21:49:27 1 10 2019-12-22 21:49:27 2 4 2019-12-22 22:29:27 1 11 2019-12-22 22:29:27 2 2 2019-12-22 22:34:27 1 10 2019-12-22 22:34:27 2 1 2019-12-22 22:39:27 1 11 2019-12-22 22:39:27 2 1 2019-12-22 22:54:27 1 10 2019-12-22 22:59:27 1 12 2019-12-22 23:24:27 1 10 2019-12-22 23:24:27 2 1 2019-12-22 23:29:27 1 8 2019-12-22 23:29:27 2 1 2019-12-22 23:44:27 1 7 2019-12-22 23:44:27 2 1 2019-12-23 00:04:27 1 6 2019-12-23 00:04:27 2 1 2019-12-23 00:14:27 1 6 2019-12-23 00:14:27 2 1 2019-12-23 00:19:27 1 7 2019-12-23 00:19:27 2 1 2019-12-23 00:24:27 1 6 2019-12-23 00:24:27 2 1 2019-12-23 00:44:27 1 5 2019-12-23 00:44:27 2 1 2019-12-23 00:49:27 1 5 2019-12-23 00:49:27 2 1 2019-12-23 00:54:27 1 6 2019-12-23 00:54:27 2 1 2019-12-23 00:59:27 1 6 2019-12-23 00:59:27 2 1 2019-12-23 01:09:27 1 7 2019-12-23 01:24:27 1 7 2019-12-23 01:54:27 1 8 2019-12-23 03:34:27 1 5 2019-12-23 03:39:27 1 4 2019-12-23 03:44:27 1 5 2019-12-23 03:49:27 1 5 2019-12-23 04:14:27 1 4 2019-12-23 04:19:27 1 5 2019-12-23 04:44:27 1 4 2019-12-23 04:49:27 1 4 2019-12-23 04:54:27 1 4 2019-12-23 05:19:27 1 5 2019-12-23 05:19:27 2 1 2019-12-23 05:29:27 1 5 2019-12-23 05:29:27 2 1 2019-12-23 05:34:27 1 5 2019-12-23 05:34:27 2 1 2019-12-23 05:49:27 1 5 2019-12-23 05:49:27 2 1 2019-12-23 05:54:27 1 5 2019-12-23 05:54:27 2 1 2019-12-23 06:09:27 1 5 2019-12-23 06:09:27 2 1 2019-12-23 06:49:27 1 9 2019-12-23 07:19:27 1 6 2019-12-23 07:49:27 1 8 2019-12-23 08:09:27 1 10 2019-12-23 08:24:27 1 11 2019-12-23 08:29:27 1 11 2019-12-23 08:34:27 1 11 2019-12-23 08:39:27 1 9 2019-12-23 08:44:27 1 9 2019-12-23 08:49:27 1 7 2019-12-23 08:54:27 1 9 2019-12-23 08:59:27 1 8 2019-12-23 09:04:27 1 8 2019-12-23 09:09:27 1 9 2019-12-23 09:14:27 1 6 2019-12-23 09:19:27 1 9 2019-12-23 09:24:27 1 9 2019-12-23 09:29:27 1 10 2019-12-23 09:34:27 1 10 2019-12-23 09:39:27 1 10 2019-12-23 09:44:27 1 12 2019-12-23 09:49:27 1 9 2019-12-23 09:54:27 1 10 2019-12-23 09:59:27 1 8 2019-12-23 10:04:27 1 8 2019-12-23 10:09:27 1 11 2019-12-23 10:14:27 1 8 2019-12-23 10:19:27 1 10 2019-12-21 14:03:07 1 14 2019-12-21 14:13:07 1 15 2019-12-21 14:13:07 2 1 2019-12-21 14:23:07 1 16 2019-12-21 14:23:07 2 1 2019-12-21 14:38:07 1 16 2019-12-21 14:38:07 2 1 2019-12-21 14:43:07 1 15 2019-12-21 14:43:07 2 1 2019-12-21 14:53:07 1 15 2019-12-21 15:03:07 1 12 2019-12-21 15:28:07 1 15 2019-12-21 15:28:07 2 1 2019-12-21 15:33:07 1 14 2019-12-21 15:33:07 2 1 2019-12-21 15:58:07 1 11 2019-12-21 16:08:07 1 11 2019-12-21 16:23:07 1 12 2019-12-21 16:33:07 1 11 2019-12-21 16:38:07 1 12 2019-12-21 17:03:07 1 14 2019-12-21 17:03:07 2 1 2019-12-21 17:13:07 1 12 2019-12-21 17:13:07 2 1 2019-12-21 17:18:07 1 12 2019-12-21 17:18:07 2 1 2019-12-21 17:28:07 1 10 2019-12-21 17:28:07 2 2 2019-12-21 17:43:07 1 10 2019-12-21 17:43:07 2 1 2019-12-21 17:48:07 1 13 2019-12-21 17:48:07 2 1 2019-12-21 17:53:07 1 16 2019-12-21 17:53:07 2 1 2019-12-21 18:23:07 1 15 2019-12-21 18:23:07 2 1 2019-12-21 18:33:07 1 14 2019-12-21 18:33:07 2 1 2019-12-21 18:43:07 1 13 2019-12-21 18:43:07 2 1 2019-12-21 18:58:07 1 11 2019-12-21 19:08:07 1 11 2019-12-21 19:08:07 2 1 2019-12-21 19:13:07 1 11 2019-12-21 19:13:07 2 1 2019-12-21 21:18:07 2 1 2019-12-21 21:23:07 2 1 2019-12-21 21:28:07 2 1 2019-12-21 21:38:07 2 2 2019-12-21 22:03:07 2 2 2019-12-21 22:23:07 2 1 2019-12-21 22:28:07 2 1 2019-12-21 22:33:07 2 1 2019-12-21 22:38:07 2 1 2019-12-21 22:43:07 2 1 2019-12-21 22:48:07 2 1 2019-12-21 22:53:07 2 1 2019-12-21 22:58:07 2 1 2019-12-21 23:03:07 2 1 2019-12-21 23:08:07 2 1 2019-12-21 23:13:07 2 1 2019-12-21 23:18:07 2 1 2019-12-21 23:23:07 2 1 2019-12-21 23:28:07 2 1 2019-12-21 23:33:07 2 1 2019-12-21 23:43:07 2 2 2019-12-21 23:48:07 2 2 2019-12-21 23:53:07 2 2 2019-12-21 23:58:07 2 2 2019-12-22 00:08:07 2 1 2019-12-22 00:13:07 2 1 2019-12-22 02:13:07 2 1 2019-12-22 02:43:07 2 1 2019-12-22 02:48:07 2 1 2019-12-22 02:53:07 2 1 2019-12-22 02:58:07 2 1 2019-12-22 07:58:07 2 1 2019-12-22 08:03:07 2 1 2019-12-22 08:08:07 2 1 2019-12-22 08:13:07 2 1 2019-12-22 08:18:07 2 1 2019-12-22 08:23:07 2 1 2019-12-22 09:18:07 2 2 2019-12-22 09:23:07 2 2 2019-12-22 09:28:07 2 2 2019-12-22 09:33:07 2 2 2019-12-22 09:38:07 2 1 2019-12-22 09:43:07 2 1 2019-12-22 09:48:07 2 1 2019-12-22 09:53:07 2 1 2019-12-22 10:13:07 2 1 2019-12-22 11:03:07 2 1 2019-12-22 14:28:07 2 1 2019-12-22 15:08:07 2 2 2019-12-22 15:33:07 2 1 2019-12-22 15:43:07 2 2 2019-12-22 15:48:07 2 2 2019-12-22 15:53:07 2 2 2019-12-22 15:58:07 2 2 2019-12-22 16:03:07 2 2 2019-12-22 16:08:07 2 2 2019-12-22 16:13:07 2 2 2019-12-22 16:18:07 2 2 2019-12-22 16:23:07 2 2 2019-12-22 16:28:07 2 2 2019-12-22 16:38:07 2 2 2019-12-22 16:43:07 2 2 2019-12-22 18:59:27 1 4 2019-12-22 18:59:27 2 1 2019-12-22 19:04:27 1 5 2019-12-22 19:04:27 2 1 2019-12-22 19:09:27 1 5 2019-12-22 19:09:27 2 1 2019-12-22 19:24:27 1 3 2019-12-22 19:24:27 2 1 2019-12-22 19:29:27 1 5 2019-12-22 19:49:27 1 6 2019-12-22 19:49:27 2 1 2019-12-22 20:24:27 1 8 2019-12-22 20:24:27 2 1 2019-12-22 20:34:27 1 9 2019-12-22 20:34:27 2 1 2019-12-22 20:44:27 1 8 2019-12-22 20:44:27 2 1 2019-12-22 20:59:27 1 5 2019-12-22 20:59:27 2 1 2019-12-22 21:19:27 1 7 2019-12-22 21:19:27 2 2 2019-12-22 21:29:27 1 7 2019-12-22 21:29:27 2 2 2019-12-22 21:44:27 1 8 2019-12-22 21:44:27 2 3 2019-12-22 21:59:27 1 10 2019-12-22 21:59:27 2 3 2019-12-22 22:04:27 1 13 2019-12-22 22:04:27 2 3 2019-12-22 22:19:27 1 12 2019-12-22 22:19:27 2 2 2019-12-22 22:44:27 1 11 2019-12-22 22:44:27 2 1 2019-12-22 23:04:28 1 12 2019-12-22 23:14:27 1 9 2019-12-22 23:14:27 2 1 2019-12-22 23:39:27 1 7 2019-12-22 23:39:27 2 1 2019-12-22 23:49:27 1 7 2019-12-22 23:49:27 2 1 2019-12-22 23:54:27 1 7 2019-12-22 23:54:27 2 1 2019-12-22 23:59:27 1 5 2019-12-22 23:59:27 2 1 2019-12-23 00:29:28 1 6 2019-12-23 00:29:28 2 2 2019-12-23 00:39:28 1 5 2019-12-23 00:39:28 2 1 2019-12-23 01:04:27 1 7 2019-12-23 01:14:27 1 7 2019-12-23 01:19:27 1 7 2019-12-23 01:44:27 1 7 2019-12-23 02:04:27 1 6 2019-12-23 02:14:27 1 6 2019-12-23 02:19:27 1 5 2019-12-23 02:24:27 1 6 2019-12-23 02:34:27 1 6 2019-12-23 02:54:27 1 5 2019-12-23 02:59:27 1 4 2019-12-23 03:04:27 1 4 2019-12-23 03:09:27 1 5 2019-12-23 03:14:27 1 5 2019-12-23 03:29:27 1 5 2019-12-23 04:24:27 1 5 2019-12-23 04:29:27 1 5 2019-12-23 04:59:27 1 4 2019-12-23 05:04:27 1 4 2019-12-23 05:09:27 1 4 2019-12-23 05:09:27 2 1 2019-12-23 05:14:27 1 4 2019-12-23 05:14:27 2 1 2019-12-23 05:24:27 1 5 2019-12-23 05:24:27 2 1 2019-12-23 05:39:27 1 5 2019-12-23 05:39:27 2 1 2019-12-23 05:59:27 1 4 2019-12-23 05:59:27 2 1 2019-12-23 06:04:27 1 4 2019-12-23 10:24:27 1 10 2019-12-23 10:29:27 1 11 2019-12-23 10:39:27 1 11 2019-12-23 10:54:27 1 12 2019-12-23 10:54:27 2 1 2019-12-23 10:59:27 1 11 2019-12-23 11:04:27 1 10 2019-12-23 11:09:27 1 11 2019-12-23 11:09:27 2 1 2019-12-23 11:14:27 1 13 2019-12-23 11:14:27 2 1 2019-12-23 11:29:27 1 11 2019-12-23 11:34:27 1 12 2019-12-23 11:39:27 1 11 2019-12-23 11:39:27 2 1 2019-12-23 11:44:27 1 9 2019-12-23 11:44:27 2 1 2019-12-23 12:14:27 1 10 2019-12-23 12:14:27 2 1 2019-12-23 12:34:27 1 9 2019-12-23 12:34:27 2 2 2019-12-23 12:39:27 1 9 2019-12-23 12:39:27 2 2 2019-12-23 12:44:27 1 9 2019-12-23 12:44:27 2 2 2019-12-23 12:59:27 1 9 2019-12-23 12:59:27 2 3 2019-12-23 13:04:27 1 8 2019-12-23 13:04:27 2 3 2019-12-23 13:24:27 1 8 2019-12-23 13:24:27 2 1 2019-12-23 13:29:27 1 7 2019-12-23 13:29:27 2 2 2019-12-23 13:34:27 1 10 2019-12-23 13:34:27 2 1 2019-12-23 13:54:27 1 11 2019-12-23 13:54:27 2 1 2019-12-23 14:19:27 1 10 2019-12-23 14:19:27 2 1 2019-12-23 14:39:27 1 11 2019-12-23 14:39:27 2 1 2019-12-23 14:49:27 1 12 2019-12-23 14:49:27 2 1 2019-12-23 15:09:27 1 11 2019-12-23 15:09:27 2 1 2019-12-23 15:39:27 1 11 2019-12-23 15:49:27 1 11 2019-12-23 15:59:27 1 9 2019-12-23 15:59:27 2 1 2019-12-23 16:29:27 1 10 2019-12-23 16:39:27 1 12 2019-12-23 16:44:27 1 12 2019-12-23 17:29:27 1 11 2019-12-23 17:29:27 2 1 2019-12-23 17:44:27 1 15 2019-12-23 17:44:27 2 1 2019-12-23 17:59:27 1 13 2019-12-23 17:59:27 2 1 2019-12-23 18:09:27 1 13 2019-12-23 18:09:27 2 1 2019-12-23 18:14:27 1 16 2019-12-23 18:14:27 2 1 2019-12-23 18:19:27 1 15 2019-12-23 18:19:27 2 1 2019-12-23 18:44:27 1 15 2019-12-23 18:44:27 2 1 2019-12-23 18:59:27 1 13 2019-12-23 18:59:27 2 2 2019-12-23 19:04:27 1 12 2019-12-23 19:04:27 2 2 2019-12-23 19:09:27 1 14 2019-12-23 19:09:27 2 2 2019-12-23 19:19:27 1 13 2019-12-23 19:19:27 2 2 2019-12-23 19:34:27 1 13 2019-12-23 19:34:27 2 2 2019-12-23 19:49:27 1 11 2019-12-23 19:49:27 2 2 2019-12-23 19:54:27 1 11 2019-12-23 19:54:27 2 2 2019-12-23 20:19:27 1 13 2019-12-23 20:19:27 2 1 2019-12-23 20:24:27 1 13 2019-12-23 20:24:27 2 1 2019-12-23 20:29:27 1 14 2019-12-23 20:29:27 2 1 2019-12-23 20:44:27 1 9 2019-12-23 20:49:27 1 12 2019-12-23 20:49:27 2 1 2019-12-23 20:54:27 1 13 2019-12-23 20:59:27 1 11 2019-12-23 21:29:27 1 10 2019-12-23 21:29:27 2 2 2019-12-23 21:49:27 1 15 2019-12-23 21:49:27 2 2 2019-12-23 22:09:27 1 13 2019-12-23 22:09:27 2 2 2019-12-23 22:39:27 1 11 2019-12-23 22:39:27 2 2 2019-12-23 22:49:27 1 14 2019-12-23 22:49:27 2 3 2019-12-23 22:59:27 1 8 2019-12-23 22:59:27 2 2 2019-12-23 23:14:27 1 9 2019-12-23 23:14:27 2 2 2019-12-23 23:19:27 1 9 2019-12-23 23:19:27 2 2 2019-12-23 23:24:27 1 8 2019-12-23 23:24:27 2 2 2019-12-23 23:34:27 1 8 2019-12-23 23:34:27 2 2 2019-12-23 23:44:27 1 8 2019-12-23 23:44:27 2 2 2019-12-23 23:49:27 1 8 2019-12-23 23:49:27 2 2 2019-12-24 00:34:27 1 9 2019-12-24 00:54:27 1 10 2019-12-24 00:54:27 2 1 2019-12-24 00:59:27 1 12 2019-12-24 00:59:27 2 1 2019-12-24 01:19:27 1 11 2019-12-24 01:24:27 1 11 2019-12-24 01:49:27 1 9 2019-12-24 01:54:27 1 9 2019-12-24 03:19:27 1 7 2019-12-24 03:24:27 1 7 2019-12-24 03:29:27 1 7 2019-12-24 03:34:27 1 7 2019-12-24 03:49:28 1 6 2019-12-24 03:54:27 1 6 2019-12-24 03:59:27 1 6 2019-12-24 04:04:27 1 7 2019-12-24 04:44:27 1 8 2019-12-24 04:54:27 1 5 2019-12-24 04:59:27 1 5 2019-12-24 05:04:27 1 5 2019-12-24 05:09:27 1 5 2019-12-24 05:14:27 1 5 2019-12-24 05:19:27 1 5 2019-12-24 05:24:27 1 5 2019-12-24 05:29:27 1 5 2019-12-24 06:14:27 1 7 2019-12-24 06:14:27 2 1 2019-12-24 06:19:27 1 7 2019-12-24 06:19:27 2 1 2019-12-24 06:29:27 1 7 2019-12-24 06:34:27 1 7 2019-12-24 06:44:27 1 6 2019-12-24 06:49:27 1 6 2019-12-24 06:54:27 1 7 2019-12-24 07:09:27 1 7 2019-12-24 07:14:27 1 6 2019-12-24 08:09:27 1 6 2019-12-24 08:24:27 1 8 2019-12-24 08:49:27 1 10 2019-12-24 08:49:27 2 1 2019-12-24 09:04:27 1 11 2019-12-24 09:04:27 2 1 2019-12-24 09:14:27 1 9 2019-12-24 09:14:27 2 1 2019-12-24 09:24:27 1 9 2019-12-24 09:24:27 2 1 2019-12-24 09:29:27 1 8 2019-12-24 09:29:27 2 1 2019-12-24 09:34:27 1 10 2019-12-24 09:34:27 2 1 2019-12-24 09:39:27 1 9 2019-12-24 09:39:27 2 1 2019-12-24 09:44:28 1 7 2019-12-24 09:44:28 2 1 2019-12-24 10:14:27 1 9 2019-12-24 10:19:27 1 6 2019-12-24 10:49:27 1 7 2019-12-24 10:49:27 2 1 2019-12-24 10:59:27 1 4 2019-12-24 10:59:27 2 2 2019-12-24 11:04:27 1 4 2019-12-24 11:04:27 2 2 2019-12-24 11:19:27 1 5 2019-12-24 11:19:27 2 1 2019-12-24 11:34:27 1 6 2019-12-24 11:34:27 2 1 2019-12-24 11:44:27 1 9 2019-12-24 11:44:27 2 1 2019-12-24 11:59:27 1 9 2019-12-23 10:34:27 1 9 2019-12-23 12:04:27 1 12 2019-12-23 12:04:27 2 2 2019-12-23 12:24:27 1 7 2019-12-23 12:24:27 2 1 2019-12-23 12:29:27 1 9 2019-12-23 12:29:27 2 1 2019-12-23 12:54:27 1 8 2019-12-23 12:54:27 2 2 2019-12-23 13:09:27 1 9 2019-12-23 13:09:27 2 3 2019-12-23 13:14:27 1 9 2019-12-23 13:14:27 2 2 2019-12-23 13:19:27 1 8 2019-12-23 13:19:27 2 1 2019-12-23 13:39:27 1 9 2019-12-23 13:44:27 1 9 2019-12-23 13:44:27 2 1 2019-12-23 13:59:27 1 9 2019-12-23 13:59:27 2 1 2019-12-23 14:14:27 1 9 2019-12-23 14:24:27 1 12 2019-12-23 14:24:27 2 1 2019-12-23 14:29:27 1 11 2019-12-23 14:34:27 1 13 2019-12-23 14:54:27 1 13 2019-12-23 14:54:27 2 1 2019-12-23 14:59:27 1 11 2019-12-23 14:59:27 2 1 2019-12-23 15:04:27 1 12 2019-12-23 15:04:27 2 1 2019-12-23 15:19:27 1 12 2019-12-23 15:19:27 2 1 2019-12-23 15:24:28 1 14 2019-12-23 15:24:28 2 1 2019-12-23 15:29:27 1 12 2019-12-23 15:34:27 1 12 2019-12-23 15:54:27 1 10 2019-12-23 16:04:27 1 10 2019-12-23 16:04:27 2 1 2019-12-23 16:34:27 1 10 2019-12-23 16:49:27 1 11 2019-12-23 16:54:27 1 13 2019-12-23 16:59:27 1 12 2019-12-23 17:04:27 1 14 2019-12-23 17:19:27 1 14 2019-12-23 17:19:27 2 1 2019-12-23 17:24:27 1 13 2019-12-23 17:24:27 2 1 2019-12-23 17:49:27 1 15 2019-12-23 17:49:27 2 1 2019-12-23 17:54:27 1 14 2019-12-23 17:54:27 2 1 2019-12-23 18:04:27 1 12 2019-12-23 18:04:27 2 1 2019-12-23 18:24:27 1 13 2019-12-23 18:24:27 2 1 2019-12-23 18:29:27 1 13 2019-12-23 18:29:27 2 1 2019-12-23 18:49:27 1 15 2019-12-23 18:49:27 2 1 2019-12-23 18:54:27 1 13 2019-12-23 18:54:27 2 1 2019-12-23 19:24:27 1 15 2019-12-23 19:24:27 2 2 2019-12-23 19:29:27 1 14 2019-12-23 19:29:27 2 2 2019-12-23 19:39:27 1 15 2019-12-23 19:39:27 2 2 2019-12-23 19:44:27 1 14 2019-12-23 19:44:27 2 2 2019-12-23 20:04:27 1 15 2019-12-23 20:04:27 2 1 2019-12-23 20:14:27 1 13 2019-12-23 20:14:27 2 1 2019-12-23 20:39:27 1 10 2019-12-23 20:39:27 2 1 2019-12-23 21:04:27 1 14 2019-12-23 21:04:27 2 1 2019-12-23 21:19:27 1 12 2019-12-23 21:19:27 2 2 2019-12-23 21:34:27 1 13 2019-12-23 21:34:27 2 2 2019-12-23 21:39:27 1 14 2019-12-23 21:39:27 2 2 2019-12-23 21:54:27 1 14 2019-12-23 21:54:27 2 2 2019-12-23 22:14:27 1 13 2019-12-23 22:14:27 2 2 2019-12-23 22:24:27 1 14 2019-12-23 22:24:27 2 2 2019-12-23 22:29:27 1 14 2019-12-23 22:29:27 2 2 2019-12-23 22:34:27 1 13 2019-12-23 22:34:27 2 2 2019-12-23 23:04:27 1 8 2019-12-23 23:04:27 2 2 2019-12-24 00:14:27 1 8 2019-12-24 00:14:27 2 1 2019-12-24 00:19:27 1 9 2019-12-24 00:19:27 2 1 2019-12-24 00:29:27 1 9 2019-12-24 00:39:27 1 9 2019-12-24 00:44:27 1 10 2019-12-24 00:44:27 2 1 2019-12-24 00:49:27 1 9 2019-12-24 00:49:27 2 1 2019-12-24 01:04:27 1 12 2019-12-24 01:04:27 2 1 2019-12-24 01:09:27 1 11 2019-12-24 01:09:27 2 1 2019-12-24 01:29:27 1 9 2019-12-24 01:34:27 1 8 2019-12-24 01:39:27 1 8 2019-12-24 01:44:27 1 8 2019-12-24 02:29:27 1 7 2019-12-24 02:34:27 1 7 2019-12-24 02:39:27 1 7 2019-12-24 02:44:27 1 7 2019-12-24 03:14:27 1 8 2019-12-24 03:39:27 1 7 2019-12-24 03:44:27 1 7 2019-12-24 04:09:27 1 6 2019-12-24 04:14:27 1 6 2019-12-24 04:19:27 1 6 2019-12-24 04:24:27 1 6 2019-12-24 04:29:27 1 6 2019-12-24 04:34:27 1 6 2019-12-24 04:39:27 1 6 2019-12-24 05:34:27 1 6 2019-12-24 05:49:27 1 5 2019-12-24 06:39:27 1 8 2019-12-24 06:59:27 1 8 2019-12-24 07:19:27 1 7 2019-12-24 07:24:27 1 6 2019-12-24 07:34:27 1 6 2019-12-24 07:39:27 1 6 2019-12-24 07:44:27 1 6 2019-12-24 07:49:27 1 6 2019-12-24 08:04:27 1 6 2019-12-24 08:14:27 1 5 2019-12-24 08:19:27 1 9 2019-12-24 08:39:27 1 8 2019-12-24 08:39:27 2 1 2019-12-24 08:44:27 1 10 2019-12-24 08:44:27 2 1 2019-12-24 09:54:27 1 8 2019-12-24 09:59:27 1 9 2019-12-24 10:44:27 1 8 2019-12-24 10:44:27 2 1 2019-12-24 10:54:27 1 6 2019-12-24 10:54:27 2 2 2019-12-24 11:14:27 1 6 2019-12-24 11:14:27 2 1 2019-12-24 11:24:27 1 4 2019-12-24 11:24:27 2 1 2019-12-24 11:29:27 1 5 2019-12-24 11:29:27 2 1 2019-12-24 11:54:27 1 8 2019-12-24 11:54:27 2 2 2019-12-24 11:59:27 2 2 2019-12-24 12:04:27 1 11 2019-12-24 12:04:27 2 2 2019-12-24 12:14:27 1 9 2019-12-24 12:14:27 2 2 2019-12-24 12:19:27 1 8 2019-12-24 12:19:27 2 2 2019-12-24 12:24:27 1 9 2019-12-24 12:24:27 2 2 2019-12-24 12:29:27 1 8 2019-12-24 12:29:27 2 2 2019-12-24 12:39:27 1 14 2019-12-24 12:39:27 2 1 2019-12-24 12:49:27 1 15 2019-12-24 12:49:27 2 1 2019-12-24 12:59:27 1 14 2019-12-24 12:59:27 2 1 2019-12-24 13:04:27 1 14 2019-12-24 13:04:27 2 2 2019-12-24 13:09:27 1 12 2019-12-24 13:09:27 2 2 2019-12-24 13:19:27 1 7 2019-12-24 13:19:27 2 2 2019-12-24 13:24:27 1 9 2019-12-24 13:24:27 2 2 2019-12-23 10:44:27 1 12 2019-12-23 10:49:27 1 11 2019-12-23 10:49:27 2 1 2019-12-23 11:19:27 1 9 2019-12-23 11:19:27 2 1 2019-12-23 11:24:27 1 8 2019-12-23 11:24:27 2 1 2019-12-23 11:49:27 1 9 2019-12-23 11:49:27 2 1 2019-12-23 11:54:27 1 9 2019-12-23 11:54:27 2 1 2019-12-23 11:59:27 1 8 2019-12-23 11:59:27 2 1 2019-12-23 12:09:27 1 9 2019-12-23 12:09:27 2 2 2019-12-23 12:19:27 1 10 2019-12-23 12:19:27 2 1 2019-12-23 12:49:27 1 10 2019-12-23 12:49:27 2 2 2019-12-23 13:49:27 1 12 2019-12-23 13:49:27 2 1 2019-12-23 14:04:28 1 11 2019-12-23 14:04:28 2 1 2019-12-23 14:09:27 1 11 2019-12-23 14:44:27 1 12 2019-12-23 14:44:27 2 1 2019-12-23 15:14:27 1 13 2019-12-23 15:14:27 2 3 2019-12-23 15:44:27 1 12 2019-12-23 16:09:27 1 10 2019-12-23 16:14:27 1 12 2019-12-23 16:19:27 1 9 2019-12-23 16:24:27 1 10 2019-12-23 17:09:27 1 14 2019-12-23 17:09:27 2 1 2019-12-23 17:14:27 1 14 2019-12-23 17:14:27 2 1 2019-12-23 17:34:27 1 11 2019-12-23 17:34:27 2 1 2019-12-23 17:39:27 1 11 2019-12-23 17:39:27 2 1 2019-12-23 18:34:27 1 16 2019-12-23 18:34:27 2 1 2019-12-23 18:39:27 1 15 2019-12-23 18:39:27 2 1 2019-12-23 19:14:27 1 14 2019-12-23 19:14:27 2 2 2019-12-23 19:59:27 1 15 2019-12-23 19:59:27 2 2 2019-12-23 20:09:27 1 15 2019-12-23 20:09:27 2 1 2019-12-23 20:34:27 1 12 2019-12-23 20:34:27 2 1 2019-12-23 21:09:27 1 14 2019-12-23 21:09:27 2 2 2019-12-23 21:14:27 1 15 2019-12-23 21:14:27 2 2 2019-12-23 21:24:27 1 12 2019-12-23 21:24:27 2 2 2019-12-23 21:44:27 1 14 2019-12-23 21:44:27 2 2 2019-12-23 21:59:27 1 13 2019-12-23 21:59:27 2 2 2019-12-23 22:04:27 1 12 2019-12-23 22:04:27 2 2 2019-12-23 22:19:27 1 13 2019-12-23 22:19:27 2 2 2019-12-23 22:44:27 1 11 2019-12-23 22:44:27 2 2 2019-12-23 22:54:27 1 9 2019-12-23 22:54:27 2 2 2019-12-23 23:09:27 1 8 2019-12-23 23:09:27 2 2 2019-12-23 23:29:27 1 8 2019-12-23 23:29:27 2 2 2019-12-23 23:39:27 1 8 2019-12-23 23:39:27 2 2 2019-12-23 23:54:27 1 10 2019-12-23 23:54:27 2 2 2019-12-23 23:59:27 1 8 2019-12-23 23:59:27 2 1 2019-12-24 00:04:27 1 8 2019-12-24 00:04:27 2 1 2019-12-24 00:09:27 1 8 2019-12-24 00:09:27 2 1 2019-12-24 00:24:27 1 9 2019-12-24 01:14:27 1 11 2019-12-24 01:59:27 1 8 2019-12-24 02:04:27 1 8 2019-12-24 02:09:27 1 8 2019-12-24 02:14:27 1 7 2019-12-24 02:19:27 1 7 2019-12-24 02:24:27 1 7 2019-12-24 02:49:28 1 7 2019-12-24 02:54:27 1 7 2019-12-24 02:59:27 1 7 2019-12-24 03:04:27 1 7 2019-12-24 03:09:27 1 7 2019-12-24 04:49:27 1 6 2019-12-24 05:39:27 1 5 2019-12-24 05:44:27 1 5 2019-12-24 05:54:27 1 6 2019-12-24 05:59:27 1 6 2019-12-24 06:04:27 1 6 2019-12-24 06:09:27 1 6 2019-12-24 06:24:27 1 7 2019-12-24 06:24:27 2 1 2019-12-24 07:04:27 1 8 2019-12-24 07:29:27 1 7 2019-12-24 07:54:27 1 7 2019-12-24 07:59:27 1 7 2019-12-24 08:29:27 1 10 2019-12-24 08:34:27 1 7 2019-12-24 08:54:27 1 10 2019-12-24 08:54:27 2 1 2019-12-24 08:59:27 1 10 2019-12-24 08:59:27 2 1 2019-12-24 09:09:27 1 9 2019-12-24 09:09:27 2 1 2019-12-24 09:19:27 1 7 2019-12-24 09:19:27 2 1 2019-12-24 09:49:27 1 9 2019-12-24 10:04:27 1 11 2019-12-24 10:09:27 1 9 2019-12-24 10:24:27 1 6 2019-12-24 10:29:27 1 6 2019-12-24 10:34:27 1 7 2019-12-24 10:34:27 2 1 2019-12-24 10:39:27 1 7 2019-12-24 10:39:27 2 1 2019-12-24 11:09:27 1 6 2019-12-24 11:09:27 2 2 2019-12-24 11:39:27 1 7 2019-12-24 11:39:27 2 1 2019-12-24 11:49:27 1 10 2019-12-24 11:49:27 2 1 2019-12-24 12:09:27 1 10 2019-12-24 12:09:27 2 2 2019-12-24 12:34:27 1 13 2019-12-24 12:34:27 2 1 2019-12-24 12:44:27 1 14 2019-12-24 12:44:27 2 1 2019-12-24 12:54:27 1 14 2019-12-24 12:54:27 2 1 2019-12-24 13:14:27 1 11 2019-12-24 13:14:27 2 2 2019-12-24 13:29:27 1 8 2019-12-24 13:29:27 2 2 2019-12-24 13:34:27 1 9 2019-12-24 13:34:27 2 2 2019-12-24 13:39:27 1 10 2019-12-24 13:39:27 2 3 2019-12-24 13:44:27 1 12 2019-12-24 13:44:27 2 2 2019-12-24 13:49:27 1 11 2019-12-24 13:49:27 2 1 2019-12-24 13:54:27 1 10 2019-12-24 13:54:27 2 1 2019-12-24 13:59:27 1 11 2019-12-24 13:59:27 2 2 2019-12-24 14:04:27 1 10 2019-12-24 14:04:27 2 2 2019-12-24 14:09:27 1 9 2019-12-24 14:14:27 1 9 2019-12-24 14:19:27 1 11 2019-12-24 14:24:27 1 6 2019-12-24 14:24:27 2 1 2019-12-24 14:29:27 1 7 2019-12-24 14:29:27 2 1 2019-12-24 14:34:27 1 9 2019-12-24 14:34:27 2 1 2019-12-24 14:39:27 1 10 2019-12-24 14:39:27 2 2 2019-12-24 14:44:27 1 9 2019-12-24 14:44:27 2 1 2019-12-24 14:49:27 1 8 2019-12-24 14:49:27 2 1 2019-12-24 14:54:27 1 9 2019-12-24 14:54:27 2 1 2019-12-24 14:59:27 1 8 2019-12-24 14:59:27 2 1 2019-12-24 15:04:27 1 9 2019-12-24 15:04:27 2 1 2019-12-24 15:09:27 1 10 2019-12-24 15:09:27 2 2 2019-12-24 15:14:27 1 10 2019-12-24 15:14:27 2 2 2019-12-24 15:19:27 1 10 2019-12-24 15:19:27 2 2 2019-12-24 15:24:27 1 13 2019-12-24 15:24:27 2 2 2019-12-24 15:29:27 1 11 2019-12-24 15:29:27 2 2 2019-12-24 16:59:27 1 13 2019-12-24 16:59:27 2 1 2019-12-24 17:04:27 1 13 2019-12-24 17:04:27 2 2 2019-12-24 17:24:27 1 12 2019-12-24 17:24:27 2 1 2019-12-24 17:29:27 1 12 2019-12-24 17:44:27 1 13 2019-12-24 17:44:27 2 3 2019-12-24 18:24:27 1 12 2019-12-24 18:24:27 2 2 2019-12-24 18:29:27 1 13 2019-12-24 18:29:27 2 2 2019-12-24 18:39:27 1 14 2019-12-24 18:39:27 2 4 2019-12-24 19:04:27 1 12 2019-12-24 19:04:27 2 2 2019-12-24 19:24:27 1 12 2019-12-24 19:24:27 2 2 2019-12-24 19:39:27 1 16 2019-12-24 19:39:27 2 2 2019-12-24 19:44:27 1 13 2019-12-24 19:44:27 2 2 2019-12-24 19:49:27 1 14 2019-12-24 19:49:27 2 2 2019-12-24 20:04:27 1 12 2019-12-24 20:04:27 2 2 2019-12-24 20:09:27 1 12 2019-12-24 20:09:27 2 2 2019-12-24 20:14:27 1 14 2019-12-24 20:14:27 2 2 2019-12-24 20:29:27 1 11 2019-12-24 20:29:27 2 4 2019-12-24 20:39:27 1 11 2019-12-24 20:39:27 2 3 2019-12-24 21:04:27 1 13 2019-12-24 21:04:27 2 3 2019-12-24 21:54:27 1 14 2019-12-24 21:54:27 2 3 2019-12-24 22:04:27 1 15 2019-12-24 22:04:27 2 1 2019-12-24 22:19:27 1 11 2019-12-24 22:19:27 2 1 2019-12-24 22:49:27 1 8 2019-12-24 22:49:27 2 3 2019-12-24 23:04:27 1 9 2019-12-24 23:04:27 2 2 2019-12-24 23:24:27 1 9 2019-12-24 23:24:27 2 2 2019-12-24 23:59:27 1 7 2019-12-24 23:59:27 2 2 2019-12-25 00:14:27 1 6 2019-12-25 00:14:27 2 2 2019-12-25 00:19:27 1 8 2019-12-25 00:19:27 2 2 2019-12-25 00:24:27 1 9 2019-12-25 00:24:27 2 2 2019-12-25 01:09:27 1 9 2019-12-25 01:09:27 2 1 2019-12-25 01:14:27 1 9 2019-12-25 01:14:27 2 1 2019-12-25 01:49:27 1 8 2019-12-25 01:59:27 1 9 2019-12-25 02:04:27 1 8 2019-12-25 02:19:27 1 6 2019-12-25 02:24:27 1 6 2019-12-25 02:49:27 1 6 2019-12-25 02:54:27 1 6 2019-12-25 03:04:27 1 5 2019-12-25 03:09:27 1 5 2019-12-25 03:14:27 1 5 2019-12-25 03:19:27 1 5 2019-12-25 04:04:27 1 5 2019-12-25 04:14:27 1 5 2019-12-25 04:44:27 1 5 2019-12-25 04:49:27 1 5 2019-12-25 04:54:27 1 5 2019-12-25 04:59:27 1 5 2019-12-25 05:04:27 1 5 2019-12-25 05:09:27 1 5 2019-12-25 06:19:27 1 7 2019-12-25 06:39:27 1 8 2019-12-25 06:39:27 2 1 2019-12-25 07:24:27 1 12 2019-12-25 07:29:27 1 12 2019-12-25 07:59:27 1 12 2019-12-25 08:04:27 1 12 2019-12-25 08:09:27 1 11 2019-12-25 08:34:27 1 12 2019-12-25 08:34:27 2 1 2019-12-25 08:44:27 1 11 2019-12-25 08:54:27 1 11 2019-12-25 08:59:27 1 10 2019-12-25 09:19:27 1 8 2019-12-25 09:34:27 1 15 2019-12-25 09:39:27 1 16 2019-12-25 09:44:27 1 13 2019-12-25 09:54:27 1 17 2019-12-25 10:14:27 1 15 2019-12-25 10:49:27 1 13 2019-12-25 10:59:27 1 15 2019-12-25 11:04:27 1 15 2019-12-25 11:09:27 1 17 2019-12-25 11:14:27 1 12 2019-12-25 11:19:27 1 14 2019-12-25 12:09:27 1 17 2019-12-25 12:14:27 1 18 2019-12-25 12:39:27 1 12 2019-12-25 12:54:27 1 12 2019-12-25 13:19:27 1 13 2019-12-25 13:24:27 1 14 2019-12-25 14:14:27 1 14 2019-12-25 14:19:27 1 14 2019-12-25 14:24:27 1 10 2019-12-25 14:34:27 1 10 2019-12-25 15:54:27 1 10 2019-12-25 16:04:27 1 9 2019-12-25 16:14:27 1 9 2019-12-25 16:49:27 1 12 2019-12-25 16:59:27 1 13 2019-12-25 17:04:27 1 14 2019-12-25 17:34:27 1 15 2019-12-25 17:49:27 1 15 2019-12-25 18:14:27 1 16 2019-12-25 18:19:27 1 17 2019-12-25 18:24:27 1 16 2019-12-25 18:44:27 1 11 2019-12-25 18:54:27 1 11 2019-12-25 19:09:27 1 12 2019-12-25 19:19:27 1 12 2019-12-25 19:24:27 1 16 2019-12-25 19:34:27 1 14 2019-12-25 19:54:27 1 16 2019-12-25 19:59:27 1 18 2019-12-25 20:19:27 1 12 2019-12-25 20:44:27 1 14 2019-12-25 20:54:27 1 13 2019-12-25 21:29:27 1 16 2019-12-25 21:44:27 1 17 2019-12-25 21:54:27 1 16 2019-12-25 21:59:27 1 16 2019-12-25 22:14:27 1 13 2019-12-25 22:24:27 1 16 2019-12-25 22:34:27 1 17 2019-12-25 22:39:27 1 20 2019-12-25 22:44:27 1 19 2019-12-25 22:54:27 1 15 2019-12-25 22:59:27 1 15 2019-12-25 23:04:27 1 14 2019-12-25 23:09:27 1 15 2019-12-25 23:14:27 1 16 2019-12-25 23:19:27 1 15 2019-12-25 23:29:27 1 14 2019-12-25 23:44:27 1 16 2019-12-25 23:49:27 1 17 2019-12-25 23:54:27 1 15 2019-12-25 23:59:27 1 15 2019-12-26 00:04:27 1 15 2019-12-26 00:09:27 1 13 2019-12-26 00:14:27 1 12 2019-12-26 00:24:27 1 10 2019-12-26 00:34:27 1 10 2019-12-26 00:39:27 1 10 2019-12-26 00:44:27 1 10 2019-12-26 00:54:27 1 11 2019-12-26 01:04:27 1 11 2019-12-26 01:14:27 1 9 2019-12-26 01:29:27 1 10 2019-12-26 01:34:27 1 11 2019-12-26 01:44:27 1 10 2019-12-26 01:59:27 1 10 2019-12-26 02:09:27 1 10 2019-12-26 02:14:27 1 10 2019-12-26 02:19:27 1 9 2019-12-26 02:24:27 1 8 2019-12-26 02:29:27 1 8 2019-12-26 02:34:27 1 8 2019-12-24 15:34:27 1 11 2019-12-24 15:34:27 2 2 2019-12-24 15:39:27 1 11 2019-12-24 15:39:27 2 2 2019-12-24 15:49:27 1 10 2019-12-24 15:49:27 2 2 2019-12-24 15:54:27 1 8 2019-12-24 15:54:27 2 1 2019-12-24 15:59:27 1 11 2019-12-24 15:59:27 2 1 2019-12-24 16:04:27 1 8 2019-12-24 16:04:27 2 2 2019-12-24 16:14:27 1 12 2019-12-24 16:14:27 2 2 2019-12-24 16:29:27 1 10 2019-12-24 16:29:27 2 2 2019-12-24 16:39:27 1 10 2019-12-24 16:39:27 2 2 2019-12-24 16:44:27 1 10 2019-12-24 16:44:27 2 1 2019-12-24 16:54:27 1 11 2019-12-24 16:54:27 2 1 2019-12-24 17:14:27 1 13 2019-12-24 17:14:27 2 1 2019-12-24 17:19:27 1 12 2019-12-24 17:19:27 2 1 2019-12-24 17:34:27 1 13 2019-12-24 17:54:27 1 15 2019-12-24 17:54:27 2 3 2019-12-24 18:09:27 1 16 2019-12-24 18:09:27 2 2 2019-12-24 18:14:27 1 14 2019-12-24 18:14:27 2 2 2019-12-24 18:44:27 1 12 2019-12-24 18:44:27 2 3 2019-12-24 18:54:27 1 12 2019-12-24 18:54:27 2 2 2019-12-24 18:59:27 1 12 2019-12-24 18:59:27 2 2 2019-12-24 19:09:27 1 14 2019-12-24 19:09:27 2 2 2019-12-24 19:54:27 1 12 2019-12-24 19:54:27 2 1 2019-12-24 20:19:27 1 11 2019-12-24 20:19:27 2 2 2019-12-24 20:24:27 1 13 2019-12-24 20:24:27 2 4 2019-12-24 20:44:27 1 9 2019-12-24 20:44:27 2 3 2019-12-24 20:49:27 1 14 2019-12-24 20:49:27 2 3 2019-12-24 20:54:27 1 13 2019-12-24 20:54:27 2 3 2019-12-24 21:09:27 1 13 2019-12-24 21:09:27 2 2 2019-12-24 21:14:27 1 13 2019-12-24 21:14:27 2 2 2019-12-24 21:24:27 1 12 2019-12-24 21:24:27 2 2 2019-12-24 21:34:27 1 16 2019-12-24 21:34:27 2 3 2019-12-24 21:44:27 1 13 2019-12-24 21:44:27 2 2 2019-12-24 22:09:27 1 15 2019-12-24 22:09:27 2 1 2019-12-24 22:14:27 1 13 2019-12-24 22:14:27 2 1 2019-12-24 22:24:27 1 13 2019-12-24 22:34:27 1 11 2019-12-24 22:34:27 2 2 2019-12-24 22:54:27 1 8 2019-12-24 22:54:27 2 3 2019-12-24 23:09:27 1 10 2019-12-24 23:09:27 2 2 2019-12-24 23:34:27 1 8 2019-12-24 23:34:27 2 3 2019-12-24 23:44:27 1 8 2019-12-24 23:44:27 2 2 2019-12-24 23:49:27 1 10 2019-12-24 23:49:27 2 2 2019-12-25 00:34:27 1 8 2019-12-25 00:34:27 2 2 2019-12-25 00:39:27 1 7 2019-12-25 00:39:27 2 2 2019-12-25 00:44:27 1 6 2019-12-25 00:44:27 2 1 2019-12-25 01:04:27 1 7 2019-12-25 01:04:27 2 1 2019-12-25 01:44:27 1 8 2019-12-25 02:39:27 1 7 2019-12-25 02:44:27 1 7 2019-12-25 03:54:27 1 5 2019-12-25 04:09:27 1 5 2019-12-25 04:19:27 1 5 2019-12-25 05:24:27 1 7 2019-12-25 05:29:27 1 7 2019-12-25 05:34:27 1 7 2019-12-25 05:39:27 1 7 2019-12-25 05:44:27 1 7 2019-12-25 05:49:27 1 7 2019-12-25 06:24:27 1 8 2019-12-25 06:24:27 2 1 2019-12-25 06:29:27 1 8 2019-12-25 06:29:27 2 1 2019-12-25 06:44:27 1 8 2019-12-25 06:44:27 2 1 2019-12-25 06:54:27 1 9 2019-12-25 07:04:27 1 10 2019-12-25 07:14:27 1 11 2019-12-25 07:19:27 1 11 2019-12-25 07:44:27 1 11 2019-12-25 07:54:27 1 11 2019-12-25 08:19:27 1 11 2019-12-25 08:24:27 1 12 2019-12-25 09:14:27 1 10 2019-12-25 09:29:27 1 12 2019-12-25 10:09:27 1 14 2019-12-25 10:19:27 1 15 2019-12-25 10:24:27 1 16 2019-12-25 10:39:27 1 13 2019-12-25 10:44:27 1 14 2019-12-25 10:54:27 1 13 2019-12-25 11:24:27 1 14 2019-12-25 11:29:27 1 15 2019-12-25 11:39:27 1 12 2019-12-25 11:44:27 1 13 2019-12-25 11:54:27 1 14 2019-12-25 11:59:27 1 17 2019-12-25 12:19:27 1 15 2019-12-25 12:24:27 1 14 2019-12-25 12:34:27 1 13 2019-12-25 12:44:27 1 14 2019-12-25 12:49:27 1 13 2019-12-25 13:04:27 1 12 2019-12-25 13:39:27 1 14 2019-12-25 14:39:27 1 10 2019-12-25 15:04:27 1 12 2019-12-25 15:14:27 1 11 2019-12-25 15:24:27 1 10 2019-12-25 15:34:27 1 12 2019-12-25 16:09:27 1 7 2019-12-25 16:19:27 1 8 2019-12-25 16:24:27 1 8 2019-12-25 16:39:27 1 11 2019-12-25 16:44:27 1 13 2019-12-25 16:54:27 1 14 2019-12-25 17:09:27 1 12 2019-12-25 17:14:27 1 14 2019-12-25 17:29:27 1 11 2019-12-25 17:54:27 1 15 2019-12-25 17:59:27 1 13 2019-12-25 18:04:27 1 13 2019-12-25 18:09:27 1 16 2019-12-25 18:34:27 1 14 2019-12-25 18:39:27 1 12 2019-12-25 18:49:27 1 8 2019-12-25 19:14:27 1 12 2019-12-25 19:29:27 1 13 2019-12-25 19:44:27 1 16 2019-12-25 20:04:27 1 15 2019-12-25 20:29:27 1 11 2019-12-25 21:04:27 1 16 2019-12-25 21:14:27 1 16 2019-12-25 21:34:27 1 13 2019-12-25 21:39:27 1 12 2019-12-25 21:49:27 1 15 2019-12-25 22:04:27 1 16 2019-12-25 22:09:27 1 14 2019-12-25 22:19:27 1 15 2019-12-25 22:29:27 1 17 2019-12-25 22:49:27 1 16 2019-12-25 23:24:27 1 14 2019-12-25 23:34:27 1 14 2019-12-25 23:39:27 1 16 2019-12-26 00:19:27 1 10 2019-12-26 00:29:27 1 10 2019-12-26 00:49:27 1 11 2019-12-26 00:59:27 1 11 2019-12-26 01:09:27 1 9 2019-12-26 01:19:27 1 10 2019-12-26 01:24:27 1 10 2019-12-26 01:39:27 1 12 2019-12-26 01:49:27 1 9 2019-12-26 01:54:27 1 10 2019-12-26 02:04:27 1 10 2019-12-24 15:44:27 1 11 2019-12-24 15:44:27 2 2 2019-12-24 16:09:27 1 9 2019-12-24 16:09:27 2 2 2019-12-24 16:19:27 1 7 2019-12-24 16:19:27 2 1 2019-12-24 16:24:27 1 10 2019-12-24 16:24:27 2 2 2019-12-24 16:34:27 1 10 2019-12-24 16:34:27 2 2 2019-12-24 16:49:27 1 12 2019-12-24 16:49:27 2 1 2019-12-24 17:09:27 1 12 2019-12-24 17:09:27 2 1 2019-12-24 17:39:27 1 13 2019-12-24 17:39:27 2 1 2019-12-24 17:49:27 1 15 2019-12-24 17:49:27 2 3 2019-12-24 17:59:27 1 14 2019-12-24 17:59:27 2 3 2019-12-24 18:04:27 1 16 2019-12-24 18:04:27 2 3 2019-12-24 18:19:27 1 14 2019-12-24 18:19:27 2 2 2019-12-24 18:34:27 1 11 2019-12-24 18:34:27 2 3 2019-12-24 18:49:27 1 10 2019-12-24 18:49:27 2 2 2019-12-24 19:14:27 1 11 2019-12-24 19:14:27 2 2 2019-12-24 19:19:27 1 13 2019-12-24 19:19:27 2 2 2019-12-24 19:29:27 1 15 2019-12-24 19:29:27 2 2 2019-12-24 19:34:27 1 12 2019-12-24 19:34:27 2 2 2019-12-24 19:59:27 1 15 2019-12-24 19:59:27 2 1 2019-12-24 20:34:27 1 11 2019-12-24 20:34:27 2 3 2019-12-24 20:59:27 1 14 2019-12-24 20:59:27 2 3 2019-12-24 21:19:27 1 14 2019-12-24 21:19:27 2 2 2019-12-24 21:29:27 1 14 2019-12-24 21:29:27 2 3 2019-12-24 21:39:27 1 16 2019-12-24 21:39:27 2 3 2019-12-24 21:49:27 1 13 2019-12-24 21:49:27 2 3 2019-12-24 21:59:27 1 16 2019-12-24 21:59:27 2 1 2019-12-24 22:29:27 1 13 2019-12-24 22:39:27 1 10 2019-12-24 22:39:27 2 3 2019-12-24 22:44:27 1 9 2019-12-24 22:44:27 2 3 2019-12-24 22:59:27 1 7 2019-12-24 22:59:27 2 2 2019-12-24 23:14:27 1 10 2019-12-24 23:14:27 2 2 2019-12-24 23:19:27 1 9 2019-12-24 23:19:27 2 2 2019-12-24 23:29:27 1 8 2019-12-24 23:29:27 2 2 2019-12-24 23:39:27 1 9 2019-12-24 23:39:27 2 2 2019-12-24 23:54:27 1 10 2019-12-24 23:54:27 2 2 2019-12-25 00:04:27 1 7 2019-12-25 00:04:27 2 2 2019-12-25 00:09:27 1 7 2019-12-25 00:09:27 2 2 2019-12-25 00:29:27 1 9 2019-12-25 00:29:27 2 2 2019-12-25 00:49:27 1 7 2019-12-25 00:49:27 2 1 2019-12-25 00:54:27 1 6 2019-12-25 00:54:27 2 1 2019-12-25 00:59:27 1 8 2019-12-25 00:59:27 2 1 2019-12-25 01:19:27 1 8 2019-12-25 01:19:27 2 1 2019-12-25 01:24:27 1 7 2019-12-25 01:24:27 2 1 2019-12-25 01:29:27 1 7 2019-12-25 01:29:27 2 1 2019-12-25 01:34:27 1 10 2019-12-25 01:34:27 2 1 2019-12-25 01:39:27 1 9 2019-12-25 01:54:27 1 8 2019-12-25 02:09:27 1 8 2019-12-25 02:14:27 1 8 2019-12-25 02:29:27 1 8 2019-12-25 02:34:27 1 7 2019-12-25 02:59:27 1 6 2019-12-25 03:24:27 1 5 2019-12-25 03:29:27 1 5 2019-12-25 03:34:27 1 5 2019-12-25 03:39:27 1 5 2019-12-25 03:44:27 1 5 2019-12-25 03:49:27 1 5 2019-12-25 03:59:27 1 5 2019-12-25 04:24:27 1 5 2019-12-25 04:29:27 1 5 2019-12-25 04:34:27 1 5 2019-12-25 04:39:28 1 5 2019-12-25 05:14:27 1 6 2019-12-25 05:19:27 1 6 2019-12-25 05:54:27 1 7 2019-12-25 05:59:27 1 7 2019-12-25 06:04:27 1 7 2019-12-25 06:09:27 1 7 2019-12-25 06:14:27 1 7 2019-12-25 06:34:27 1 8 2019-12-25 06:34:27 2 1 2019-12-25 06:49:27 1 10 2019-12-25 06:49:27 2 1 2019-12-25 06:59:27 1 9 2019-12-25 07:09:27 1 10 2019-12-25 07:34:27 1 12 2019-12-25 07:39:27 1 12 2019-12-25 07:49:27 1 13 2019-12-25 08:14:27 1 10 2019-12-25 08:29:27 1 12 2019-12-25 08:29:27 2 1 2019-12-25 08:39:27 1 12 2019-12-25 08:39:27 2 1 2019-12-25 08:49:27 1 11 2019-12-25 09:04:27 1 9 2019-12-25 09:09:27 1 11 2019-12-25 09:24:27 1 11 2019-12-25 09:49:27 1 17 2019-12-25 09:59:27 1 16 2019-12-25 10:04:27 1 17 2019-12-25 10:29:27 1 15 2019-12-25 10:34:27 1 14 2019-12-25 11:34:27 1 13 2019-12-25 11:49:27 1 14 2019-12-25 12:04:27 1 17 2019-12-25 12:29:27 1 14 2019-12-25 12:59:27 1 11 2019-12-25 13:09:27 1 12 2019-12-25 13:14:27 1 15 2019-12-25 13:29:27 1 16 2019-12-25 13:34:27 1 17 2019-12-25 13:44:27 1 12 2019-12-25 13:49:27 1 15 2019-12-25 13:54:27 1 14 2019-12-25 13:59:27 1 11 2019-12-25 14:04:27 1 12 2019-12-25 14:09:27 1 13 2019-12-25 14:29:27 1 11 2019-12-25 14:44:27 1 11 2019-12-25 14:49:27 1 11 2019-12-25 14:54:27 1 11 2019-12-25 14:59:27 1 11 2019-12-25 15:09:27 1 11 2019-12-25 15:19:27 1 10 2019-12-25 15:29:27 1 13 2019-12-25 15:39:27 1 13 2019-12-25 15:44:27 1 12 2019-12-25 15:49:27 1 10 2019-12-25 15:59:27 1 9 2019-12-25 16:29:27 1 9 2019-12-25 16:34:27 1 9 2019-12-25 17:19:27 1 15 2019-12-25 17:24:27 1 13 2019-12-25 17:39:27 1 15 2019-12-25 17:44:27 1 15 2019-12-25 18:29:27 1 15 2019-12-25 18:59:27 1 11 2019-12-25 19:04:27 1 11 2019-12-25 19:39:27 1 16 2019-12-25 19:49:27 1 18 2019-12-25 20:09:27 1 11 2019-12-25 20:14:27 1 12 2019-12-25 20:24:27 1 12 2019-12-25 20:34:27 1 12 2019-12-25 20:39:27 1 11 2019-12-25 20:49:27 1 14 2019-12-25 20:59:27 1 16 2019-12-25 21:09:27 1 16 2019-12-25 21:19:27 1 16 2019-12-25 21:24:27 1 12 2019-12-26 02:39:27 1 8 2019-12-26 02:59:27 1 7 2019-12-26 03:09:27 1 7 2019-12-26 03:19:27 1 7 2019-12-26 03:49:27 1 6 2019-12-26 03:54:27 1 6 2019-12-26 04:04:27 1 6 2019-12-26 04:19:27 1 6 2019-12-26 04:34:27 1 6 2019-12-26 04:49:27 1 8 2019-12-26 05:34:27 1 8 2019-12-26 05:39:27 1 8 2019-12-26 05:44:27 1 8 2019-12-26 05:49:27 1 8 2019-12-26 06:14:27 1 9 2019-12-26 06:34:27 1 8 2019-12-26 06:59:27 1 8 2019-12-26 07:04:27 1 9 2019-12-26 07:19:27 1 10 2019-12-26 07:39:27 1 10 2019-12-26 07:54:27 1 11 2019-12-26 08:09:27 1 11 2019-12-26 08:34:27 1 9 2019-12-26 08:49:27 1 11 2019-12-26 09:19:27 1 11 2019-12-26 10:29:27 1 10 2019-12-26 10:59:27 1 13 2019-12-26 11:04:27 1 11 2019-12-26 11:14:27 1 11 2019-12-26 11:19:27 1 12 2019-12-26 11:29:27 1 10 2019-12-26 11:34:27 1 10 2019-12-26 12:24:27 1 13 2019-12-26 12:49:27 1 11 2019-12-26 13:19:27 1 14 2019-12-26 13:29:27 1 11 2019-12-26 13:34:27 1 12 2019-12-26 14:14:27 1 16 2019-12-26 15:09:27 1 12 2019-12-26 15:19:27 1 11 2019-12-26 15:24:27 1 11 2019-12-26 15:39:27 1 10 2019-12-26 15:49:27 1 8 2019-12-26 15:59:27 1 9 2019-12-26 16:19:27 1 8 2019-12-26 16:59:27 1 10 2019-12-26 17:04:27 1 10 2019-12-26 17:29:27 1 9 2019-12-26 17:59:27 1 13 2019-12-26 18:19:27 1 14 2019-12-26 18:29:27 1 12 2019-12-26 19:54:27 1 12 2019-12-26 19:59:27 1 10 2019-12-26 20:04:27 1 10 2019-12-26 20:09:27 1 9 2019-12-26 20:34:27 1 11 2019-12-26 20:54:27 1 12 2019-12-26 20:54:27 4 1 2019-12-26 21:04:27 1 14 2019-12-26 21:04:27 4 1 2019-12-26 21:19:27 1 11 2019-12-26 21:44:27 1 13 2019-12-26 21:44:27 4 1 2019-12-26 21:49:27 1 12 2019-12-26 21:49:27 4 1 2019-12-26 22:09:27 1 12 2019-12-26 22:09:27 4 1 2019-12-26 22:29:27 1 11 2019-12-26 22:29:27 4 1 2019-12-26 22:34:27 1 12 2019-12-26 22:54:27 1 11 2019-12-26 23:04:27 1 12 2019-12-26 23:44:27 1 12 2019-12-26 23:49:27 1 14 2019-12-27 00:09:27 1 11 2019-12-27 00:14:27 1 9 2019-12-27 00:29:27 1 12 2019-12-27 00:49:27 1 9 2019-12-27 00:54:27 1 8 2019-12-27 01:04:27 1 9 2019-12-27 01:24:27 1 9 2019-12-27 01:39:27 1 8 2019-12-27 01:49:27 1 9 2019-12-27 02:09:27 1 7 2019-12-27 02:14:27 1 7 2019-12-27 02:29:27 1 5 2019-12-27 02:44:27 1 6 2019-12-27 02:49:27 1 6 2019-12-27 02:54:27 1 5 2019-12-27 03:09:27 1 4 2019-12-27 03:19:27 1 4 2019-12-27 03:44:27 1 4 2019-12-27 03:49:27 1 4 2019-12-27 04:04:27 1 4 2019-12-27 04:09:27 1 4 2019-12-27 04:14:27 1 4 2019-12-27 04:39:27 1 4 2019-12-27 04:44:27 1 4 2019-12-27 05:04:27 1 4 2019-12-27 05:09:27 1 4 2019-12-27 05:24:27 1 4 2019-12-27 05:34:27 1 5 2019-12-27 05:39:27 1 4 2019-12-27 05:44:27 1 4 2019-12-27 05:54:27 1 5 2019-12-27 06:09:27 1 5 2019-12-27 06:14:27 1 5 2019-12-27 06:24:27 1 7 2019-12-27 06:29:27 1 6 2019-12-27 06:39:27 1 5 2019-12-27 06:44:27 1 5 2019-12-27 07:04:27 1 5 2019-12-27 07:14:27 1 4 2019-12-27 07:19:27 1 3 2019-12-27 07:29:27 1 4 2019-12-27 07:34:27 1 3 2019-12-27 07:44:27 1 5 2019-12-27 08:09:27 1 5 2019-12-27 08:14:27 1 5 2019-12-27 08:54:27 1 6 2019-12-27 09:14:27 1 7 2019-12-27 09:34:27 1 7 2019-12-27 10:09:27 1 12 2019-12-27 10:19:27 1 11 2019-12-27 10:19:27 4 1 2019-12-27 10:39:27 1 9 2019-12-27 10:39:27 4 1 2019-12-27 10:49:27 1 12 2019-12-27 10:49:27 4 1 2019-12-27 11:19:27 1 12 2019-12-27 11:24:27 1 11 2019-12-27 11:29:27 1 9 2019-12-27 11:59:27 1 9 2019-12-27 12:04:27 1 10 2019-12-27 12:34:27 1 8 2019-12-27 12:49:27 1 11 2019-12-27 12:59:27 1 10 2019-12-27 13:09:27 1 8 2019-12-27 13:24:27 1 5 2019-12-27 13:49:27 1 9 2019-12-27 13:59:27 1 8 2019-12-27 15:04:27 1 7 2019-12-27 15:14:27 1 9 2019-12-27 15:29:27 1 8 2019-12-27 15:34:27 1 10 2019-12-27 15:49:27 1 8 2019-12-27 15:54:27 1 8 2019-12-27 15:54:27 4 1 2019-12-27 15:59:27 1 8 2019-12-27 16:09:27 1 9 2019-12-27 16:14:27 1 7 2019-12-27 16:29:27 1 8 2019-12-27 16:29:27 4 1 2019-12-27 17:14:27 1 10 2019-12-27 17:24:27 1 11 2019-12-27 17:24:27 4 1 2019-12-27 17:49:27 1 9 2019-12-27 17:54:27 1 5 2019-12-27 17:54:27 4 1 2019-12-27 18:04:27 1 6 2019-12-27 18:14:27 1 6 2019-12-27 19:19:27 1 6 2019-12-27 19:29:27 1 7 2019-12-27 19:34:27 1 9 2019-12-27 19:39:27 1 8 2019-12-27 19:44:27 1 7 2019-12-27 19:49:27 1 8 2019-12-27 19:54:27 1 6 2019-12-27 19:59:27 1 8 2019-12-27 20:04:28 1 6 2019-12-27 20:04:28 4 1 2019-12-27 20:09:27 1 8 2019-12-27 20:14:27 1 11 2019-12-27 20:19:28 1 11 2019-12-27 20:24:27 1 10 2019-12-27 20:24:27 4 1 2019-12-27 20:29:27 1 6 2019-12-27 20:34:27 1 8 2019-12-27 20:39:27 1 9 2019-12-27 20:44:27 1 8 2019-12-27 20:49:27 1 10 2019-12-27 20:54:27 1 9 2019-12-27 20:59:27 1 9 2019-12-27 21:04:27 1 9 2019-12-27 21:09:27 1 10 2019-12-26 02:44:27 1 7 2019-12-26 02:49:27 1 8 2019-12-26 02:54:27 1 8 2019-12-26 03:44:27 1 6 2019-12-26 03:59:27 1 6 2019-12-26 04:09:27 1 6 2019-12-26 04:39:27 1 6 2019-12-26 04:54:27 1 6 2019-12-26 04:59:27 1 7 2019-12-26 05:09:27 1 8 2019-12-26 05:14:27 1 9 2019-12-26 05:19:27 1 8 2019-12-26 05:54:27 1 8 2019-12-26 05:59:27 1 8 2019-12-26 06:09:27 1 8 2019-12-26 06:54:27 1 8 2019-12-26 07:14:27 1 9 2019-12-26 07:29:27 1 9 2019-12-26 07:44:27 1 12 2019-12-26 07:59:27 1 10 2019-12-26 08:19:27 1 9 2019-12-26 08:24:27 1 9 2019-12-26 08:54:27 1 12 2019-12-26 08:59:27 1 13 2019-12-26 09:14:27 1 12 2019-12-26 09:39:27 1 9 2019-12-26 09:49:27 1 9 2019-12-26 09:54:27 1 9 2019-12-26 09:59:27 1 9 2019-12-26 10:04:27 1 10 2019-12-26 10:14:27 1 9 2019-12-26 10:24:27 1 10 2019-12-26 10:39:27 1 9 2019-12-26 10:44:27 1 11 2019-12-26 11:24:27 1 10 2019-12-26 11:39:27 1 8 2019-12-26 11:54:27 1 8 2019-12-26 12:09:27 1 12 2019-12-26 12:14:27 1 13 2019-12-26 12:19:27 1 13 2019-12-26 12:54:27 1 11 2019-12-26 13:04:27 1 12 2019-12-26 13:39:27 1 10 2019-12-26 13:44:27 1 11 2019-12-26 14:09:27 1 15 2019-12-26 14:29:27 1 14 2019-12-26 14:49:27 1 14 2019-12-26 14:54:27 1 11 2019-12-26 14:59:27 1 11 2019-12-26 15:04:27 1 13 2019-12-26 15:14:27 1 12 2019-12-26 15:44:27 1 9 2019-12-26 15:54:27 1 7 2019-12-26 16:14:27 1 10 2019-12-26 16:34:27 1 7 2019-12-26 16:39:27 1 7 2019-12-26 16:44:27 1 10 2019-12-26 16:49:27 1 9 2019-12-26 17:14:27 1 9 2019-12-26 17:19:27 1 9 2019-12-26 17:24:27 1 8 2019-12-26 17:34:27 1 10 2019-12-26 17:44:27 1 9 2019-12-26 17:54:27 1 11 2019-12-26 18:04:27 1 11 2019-12-26 18:09:27 1 14 2019-12-26 18:24:27 1 13 2019-12-26 18:34:27 1 10 2019-12-26 18:49:27 1 11 2019-12-26 18:54:27 1 10 2019-12-26 18:59:27 1 11 2019-12-26 19:24:27 1 12 2019-12-26 19:34:27 1 12 2019-12-26 19:39:27 1 12 2019-12-26 19:44:27 1 10 2019-12-26 19:49:27 1 11 2019-12-26 20:24:28 1 10 2019-12-26 20:49:27 1 12 2019-12-26 20:49:27 4 1 2019-12-26 20:59:27 1 12 2019-12-26 20:59:27 4 1 2019-12-26 21:14:27 1 11 2019-12-26 21:24:27 1 12 2019-12-26 21:24:27 4 1 2019-12-26 21:29:27 1 10 2019-12-26 21:34:28 1 11 2019-12-26 21:34:28 4 1 2019-12-26 21:54:27 1 13 2019-12-26 21:54:27 4 1 2019-12-26 22:14:27 1 12 2019-12-26 22:14:27 4 1 2019-12-26 22:19:27 1 12 2019-12-26 22:19:27 4 1 2019-12-26 22:24:27 1 13 2019-12-26 22:39:27 1 10 2019-12-26 22:49:27 1 11 2019-12-26 22:59:27 1 12 2019-12-26 23:09:27 1 13 2019-12-26 23:29:27 1 12 2019-12-26 23:34:27 1 12 2019-12-26 23:39:27 1 11 2019-12-26 23:54:27 1 15 2019-12-27 00:04:27 1 11 2019-12-27 00:19:27 1 10 2019-12-27 00:24:27 1 13 2019-12-27 00:39:27 1 9 2019-12-27 00:59:27 1 8 2019-12-27 01:09:27 1 8 2019-12-27 01:29:27 1 9 2019-12-27 01:54:27 1 9 2019-12-27 02:19:27 1 6 2019-12-27 02:59:27 1 4 2019-12-27 03:04:27 1 4 2019-12-27 03:14:27 1 4 2019-12-27 03:34:27 1 4 2019-12-27 03:39:27 1 4 2019-12-27 04:19:27 1 4 2019-12-27 04:24:27 1 4 2019-12-27 04:49:27 1 4 2019-12-27 04:54:27 1 4 2019-12-27 05:14:27 1 4 2019-12-27 05:49:27 1 4 2019-12-27 06:19:27 1 5 2019-12-27 06:49:27 1 5 2019-12-27 07:24:27 1 3 2019-12-27 07:39:27 1 3 2019-12-27 07:49:27 1 5 2019-12-27 07:54:27 1 4 2019-12-27 08:04:27 1 4 2019-12-27 08:19:27 1 6 2019-12-27 08:24:27 1 7 2019-12-27 08:29:27 1 6 2019-12-27 09:09:27 1 6 2019-12-27 09:19:27 1 6 2019-12-27 09:29:27 1 6 2019-12-27 09:44:27 1 9 2019-12-27 09:59:27 1 10 2019-12-27 10:34:27 1 9 2019-12-27 10:44:27 1 10 2019-12-27 10:44:27 4 1 2019-12-27 10:59:27 1 12 2019-12-27 10:59:27 4 1 2019-12-27 11:04:27 1 14 2019-12-27 11:04:27 4 1 2019-12-27 11:39:27 1 9 2019-12-27 11:44:27 1 11 2019-12-27 11:54:27 1 11 2019-12-27 12:09:27 1 9 2019-12-27 12:09:27 4 1 2019-12-27 12:14:27 1 12 2019-12-27 13:04:27 1 9 2019-12-27 13:19:27 1 5 2019-12-27 13:39:27 1 9 2019-12-27 13:44:27 1 9 2019-12-27 14:09:27 1 8 2019-12-27 14:14:27 1 10 2019-12-27 14:19:27 1 12 2019-12-27 14:29:27 1 12 2019-12-27 14:39:27 1 12 2019-12-27 14:44:27 1 12 2019-12-27 14:49:27 1 9 2019-12-27 14:54:27 1 6 2019-12-27 14:59:27 1 8 2019-12-27 15:39:27 1 10 2019-12-27 16:19:27 1 8 2019-12-27 16:24:27 1 6 2019-12-27 16:24:27 4 1 2019-12-27 16:59:27 1 9 2019-12-27 17:04:27 1 8 2019-12-27 17:09:27 1 8 2019-12-27 17:09:27 4 1 2019-12-27 17:29:27 1 9 2019-12-27 17:29:27 4 1 2019-12-27 17:34:27 1 8 2019-12-27 17:44:27 1 8 2019-12-27 17:59:27 1 6 2019-12-27 18:09:27 1 7 2019-12-27 18:19:27 1 6 2019-12-27 18:24:27 1 8 2019-12-27 18:39:27 1 9 2019-12-27 18:44:27 1 10 2019-12-27 18:49:27 1 10 2019-12-27 18:59:27 1 9 2019-12-27 19:04:27 1 10 2019-12-27 19:09:27 1 8 2019-12-26 03:04:27 1 7 2019-12-26 03:14:27 1 7 2019-12-26 03:24:27 1 7 2019-12-26 03:29:27 1 7 2019-12-26 03:34:27 1 7 2019-12-26 03:39:27 1 6 2019-12-26 04:14:27 1 7 2019-12-26 04:24:27 1 6 2019-12-26 04:29:27 1 6 2019-12-26 04:44:27 1 7 2019-12-26 05:04:27 1 8 2019-12-26 05:24:27 1 8 2019-12-26 05:29:27 1 8 2019-12-26 06:04:27 1 8 2019-12-26 06:19:27 1 9 2019-12-26 06:24:27 1 8 2019-12-26 06:29:27 1 8 2019-12-26 06:39:27 1 8 2019-12-26 06:44:27 1 7 2019-12-26 06:49:27 1 7 2019-12-26 07:09:27 1 10 2019-12-26 07:24:27 1 8 2019-12-26 07:34:27 1 11 2019-12-26 07:49:27 1 11 2019-12-26 08:04:27 1 9 2019-12-26 08:14:27 1 12 2019-12-26 08:29:27 1 9 2019-12-26 08:39:27 1 9 2019-12-26 08:44:27 1 11 2019-12-26 09:04:27 1 15 2019-12-26 09:09:27 1 13 2019-12-26 09:24:27 1 13 2019-12-26 09:29:27 1 10 2019-12-26 09:34:27 1 11 2019-12-26 09:44:27 1 8 2019-12-26 10:09:27 1 9 2019-12-26 10:19:27 1 11 2019-12-26 10:34:27 1 11 2019-12-26 10:49:27 1 13 2019-12-26 10:54:27 1 12 2019-12-26 11:09:27 1 11 2019-12-26 11:44:27 1 9 2019-12-26 11:49:27 1 9 2019-12-26 11:59:27 1 10 2019-12-26 12:04:27 1 11 2019-12-26 12:29:27 1 11 2019-12-26 12:34:27 1 11 2019-12-26 12:39:27 1 10 2019-12-26 12:44:27 1 11 2019-12-26 12:59:27 1 14 2019-12-26 13:09:27 1 12 2019-12-26 13:14:27 1 13 2019-12-26 13:24:27 1 12 2019-12-26 13:49:27 1 13 2019-12-26 13:54:27 1 12 2019-12-26 13:59:27 1 12 2019-12-26 14:04:27 1 15 2019-12-26 14:19:27 1 15 2019-12-26 14:24:27 1 14 2019-12-26 14:34:27 1 12 2019-12-26 14:39:27 1 12 2019-12-26 14:44:27 1 14 2019-12-26 15:29:27 1 10 2019-12-26 15:34:27 1 8 2019-12-26 16:04:27 1 8 2019-12-26 16:09:27 1 8 2019-12-26 16:24:27 1 8 2019-12-26 16:29:27 1 8 2019-12-26 16:54:27 1 10 2019-12-26 17:09:27 1 11 2019-12-26 17:39:27 1 10 2019-12-26 17:49:27 1 10 2019-12-26 18:14:27 1 15 2019-12-26 18:39:27 1 11 2019-12-26 18:44:27 1 11 2019-12-26 19:04:27 1 13 2019-12-26 19:09:27 1 11 2019-12-26 19:14:27 1 10 2019-12-26 19:19:27 1 12 2019-12-26 19:29:27 1 11 2019-12-26 20:14:27 1 10 2019-12-26 20:19:27 1 9 2019-12-26 20:29:27 1 10 2019-12-26 20:39:27 1 9 2019-12-26 20:44:27 1 11 2019-12-26 20:44:27 4 1 2019-12-26 21:09:27 1 12 2019-12-26 21:39:27 1 11 2019-12-26 21:59:27 1 12 2019-12-26 21:59:27 4 1 2019-12-26 22:04:27 1 17 2019-12-26 22:04:27 4 1 2019-12-26 22:44:27 1 10 2019-12-26 23:14:27 1 14 2019-12-26 23:19:27 1 13 2019-12-26 23:24:27 1 15 2019-12-26 23:59:27 1 13 2019-12-27 00:34:27 1 11 2019-12-27 00:44:27 1 7 2019-12-27 01:14:27 1 9 2019-12-27 01:19:27 1 8 2019-12-27 01:34:27 1 8 2019-12-27 01:44:27 1 9 2019-12-27 01:59:27 1 7 2019-12-27 02:04:27 1 7 2019-12-27 02:24:27 1 5 2019-12-27 02:34:27 1 5 2019-12-27 02:39:27 1 5 2019-12-27 03:24:27 1 4 2019-12-27 03:29:27 1 4 2019-12-27 03:54:27 1 4 2019-12-27 03:59:27 1 4 2019-12-27 04:29:27 1 4 2019-12-27 04:34:27 1 4 2019-12-27 04:59:27 1 4 2019-12-27 05:19:27 1 4 2019-12-27 05:29:27 1 5 2019-12-27 05:59:27 1 5 2019-12-27 06:04:27 1 5 2019-12-27 06:34:27 1 5 2019-12-27 06:54:27 1 5 2019-12-27 06:59:27 1 5 2019-12-27 07:09:28 1 4 2019-12-27 07:59:27 1 4 2019-12-27 08:34:27 1 6 2019-12-27 08:39:27 1 7 2019-12-27 08:44:27 1 5 2019-12-27 08:49:27 1 6 2019-12-27 08:59:27 1 8 2019-12-27 09:04:27 1 6 2019-12-27 09:24:27 1 6 2019-12-27 09:39:27 1 8 2019-12-27 09:49:27 1 11 2019-12-27 09:54:27 1 10 2019-12-27 10:04:27 1 11 2019-12-27 10:14:27 1 12 2019-12-27 10:24:27 1 12 2019-12-27 10:24:27 4 1 2019-12-27 10:29:27 1 10 2019-12-27 10:54:27 1 12 2019-12-27 10:54:27 4 1 2019-12-27 11:09:27 1 14 2019-12-27 11:09:27 4 1 2019-12-27 11:14:27 1 12 2019-12-27 11:14:27 4 1 2019-12-27 11:34:27 1 9 2019-12-27 11:49:27 1 10 2019-12-27 12:19:27 1 12 2019-12-27 12:24:27 1 13 2019-12-27 12:29:27 1 11 2019-12-27 12:39:27 1 12 2019-12-27 12:44:27 1 11 2019-12-27 12:54:27 1 11 2019-12-27 13:14:27 1 6 2019-12-27 13:14:27 4 1 2019-12-27 13:29:27 1 6 2019-12-27 13:34:27 1 8 2019-12-27 13:54:27 1 8 2019-12-27 14:04:27 1 9 2019-12-27 14:24:27 1 11 2019-12-27 14:24:27 4 1 2019-12-27 14:34:27 1 11 2019-12-27 15:09:27 1 9 2019-12-27 15:19:27 1 11 2019-12-27 15:24:27 1 10 2019-12-27 15:24:27 4 1 2019-12-27 15:44:27 1 8 2019-12-27 16:04:27 1 9 2019-12-27 16:34:27 1 8 2019-12-27 16:34:27 4 1 2019-12-27 16:39:27 1 8 2019-12-27 16:44:27 1 9 2019-12-27 16:44:27 4 1 2019-12-27 16:49:27 1 10 2019-12-27 16:54:27 1 8 2019-12-27 17:19:27 1 12 2019-12-27 17:19:27 4 1 2019-12-27 17:39:27 1 9 2019-12-27 18:29:27 1 8 2019-12-27 18:29:27 4 1 2019-12-27 18:34:27 1 9 2019-12-27 18:34:27 4 1 2019-12-27 18:54:27 1 9 2019-12-27 19:14:27 1 7 2019-12-27 19:24:27 1 5 2019-12-27 21:14:27 1 12 2019-12-27 21:34:27 1 12 2019-12-27 21:54:27 1 14 2019-12-27 22:24:27 1 14 2019-12-27 22:34:27 1 13 2019-12-27 22:49:27 1 11 2019-12-27 22:54:27 1 13 2019-12-27 23:14:27 1 12 2019-12-27 23:14:27 4 1 2019-12-27 23:19:27 1 12 2019-12-27 23:39:27 1 10 2019-12-27 23:54:27 1 10 2019-12-28 00:14:27 1 12 2019-12-28 00:29:27 1 8 2019-12-28 00:34:27 1 9 2019-12-28 00:39:27 1 10 2019-12-28 01:19:27 1 9 2019-12-28 01:19:27 4 1 2019-12-28 01:29:27 1 8 2019-12-28 01:39:27 1 8 2019-12-28 01:49:27 1 7 2019-12-28 01:54:27 1 8 2019-12-28 01:59:27 1 9 2019-12-28 02:14:27 1 8 2019-12-28 02:24:27 1 8 2019-12-28 02:39:27 1 8 2019-12-28 03:24:27 1 9 2019-12-28 03:29:27 1 7 2019-12-28 03:49:27 1 7 2019-12-28 03:54:27 1 7 2019-12-28 04:04:27 1 7 2019-12-28 04:24:27 1 7 2019-12-28 04:29:27 1 7 2019-12-28 04:54:27 1 6 2019-12-28 05:09:27 1 5 2019-12-28 05:14:27 1 5 2019-12-28 05:24:27 1 5 2019-12-28 05:29:27 1 6 2019-12-28 05:39:27 1 5 2019-12-28 06:04:27 1 5 2019-12-28 06:09:27 1 5 2019-12-28 06:14:27 1 5 2019-12-28 06:34:27 1 5 2019-12-28 06:49:27 1 5 2019-12-28 07:14:27 1 7 2019-12-28 07:29:27 1 7 2019-12-28 07:44:27 1 9 2019-12-28 07:49:27 1 8 2019-12-28 08:04:27 1 8 2019-12-28 08:09:27 1 9 2019-12-28 08:14:27 1 6 2019-12-28 08:44:27 1 8 2019-12-28 08:54:27 1 9 2019-12-28 09:04:27 1 11 2019-12-28 09:04:27 4 1 2019-12-28 09:29:27 1 14 2019-12-28 09:44:27 1 14 2019-12-28 09:59:27 1 12 2019-12-28 10:04:27 1 12 2019-12-28 10:09:27 1 13 2019-12-28 10:19:27 1 12 2019-12-28 10:29:27 1 12 2019-12-28 10:34:27 1 12 2019-12-28 10:44:27 1 9 2019-12-28 10:49:27 1 10 2019-12-28 11:14:27 1 9 2019-12-28 11:19:27 1 8 2019-12-28 11:24:27 1 8 2019-12-28 11:39:27 1 6 2019-12-28 11:44:27 1 7 2019-12-28 11:49:27 1 9 2019-12-28 11:54:27 1 9 2019-12-28 12:09:27 1 12 2019-12-28 12:24:27 1 8 2019-12-28 12:44:27 1 12 2019-12-28 12:49:27 1 11 2019-12-28 12:54:27 1 12 2019-12-28 12:59:27 1 13 2019-12-28 13:04:27 1 13 2019-12-28 13:09:27 1 11 2019-12-28 13:14:27 1 13 2019-12-28 13:19:27 1 12 2019-12-28 13:59:27 1 10 2019-12-28 13:59:27 2 1 2019-12-28 14:39:28 1 9 2019-12-28 14:39:28 2 1 2019-12-28 14:39:28 4 1 2019-12-28 14:44:27 1 7 2019-12-28 14:44:27 2 1 2019-12-28 14:54:27 1 8 2019-12-28 14:54:27 2 1 2019-12-28 14:59:27 1 9 2019-12-28 14:59:27 2 2 2019-12-28 15:09:27 1 8 2019-12-28 15:09:27 2 2 2019-12-28 15:14:27 1 9 2019-12-28 15:14:27 2 2 2019-12-28 15:49:27 1 11 2019-12-28 15:49:27 2 1 2019-12-28 16:09:27 1 9 2019-12-28 16:09:27 2 1 2019-12-28 16:24:27 1 10 2019-12-28 16:24:27 2 1 2019-12-28 16:24:27 4 1 2019-12-28 16:39:27 1 10 2019-12-28 16:39:27 2 1 2019-12-28 16:44:27 1 8 2019-12-28 16:44:27 2 1 2019-12-28 16:44:27 4 1 2019-12-28 16:49:27 1 12 2019-12-28 16:49:27 2 1 2019-12-28 16:54:27 1 13 2019-12-28 16:54:27 2 1 2019-12-28 16:59:27 1 11 2019-12-28 16:59:27 2 1 2019-12-28 17:04:27 1 11 2019-12-28 17:04:27 2 1 2019-12-28 17:24:27 1 13 2019-12-28 17:24:27 2 1 2019-12-28 17:29:27 1 12 2019-12-28 17:29:27 2 1 2019-12-28 17:39:27 1 12 2019-12-28 17:39:27 2 2 2019-12-28 17:44:27 1 10 2019-12-28 17:44:27 2 2 2019-12-28 17:49:27 1 11 2019-12-28 17:49:27 2 2 2019-12-28 17:59:27 1 11 2019-12-28 17:59:27 2 2 2019-12-28 18:24:27 1 11 2019-12-28 18:24:27 2 3 2019-12-28 18:29:27 1 12 2019-12-28 18:29:27 2 2 2019-12-28 18:59:27 1 10 2019-12-28 18:59:27 2 1 2019-12-28 20:04:27 1 13 2019-12-28 20:04:27 2 1 2019-12-28 20:14:27 1 15 2019-12-28 20:14:27 2 1 2019-12-28 21:14:27 1 12 2019-12-28 21:14:27 2 1 2019-12-28 21:39:27 1 15 2019-12-28 21:39:27 2 1 2019-12-28 21:44:27 1 14 2019-12-28 21:44:27 2 1 2019-12-28 22:04:27 1 13 2019-12-28 22:04:27 2 1 2019-12-28 22:39:27 1 14 2019-12-28 22:39:27 2 1 2019-12-28 22:49:27 1 15 2019-12-28 22:49:27 2 1 2019-12-28 23:09:27 1 13 2019-12-28 23:09:27 2 1 2019-12-28 23:14:27 1 13 2019-12-28 23:14:27 2 1 2019-12-28 23:19:27 1 14 2019-12-28 23:19:27 2 1 2019-12-28 23:39:27 1 15 2019-12-29 00:14:27 1 14 2019-12-29 00:19:27 1 13 2019-12-29 00:34:27 1 12 2019-12-29 01:09:27 1 6 2019-12-29 01:14:27 1 6 2019-12-29 01:19:27 1 7 2019-12-29 01:29:27 1 9 2019-12-29 02:04:27 1 7 2019-12-29 02:24:27 1 6 2019-12-29 02:34:27 1 5 2019-12-29 02:39:28 1 5 2019-12-29 02:54:27 1 5 2019-12-29 02:59:27 1 4 2019-12-29 03:04:27 1 4 2019-12-29 03:09:27 1 5 2019-12-29 03:19:27 1 4 2019-12-29 03:24:27 1 4 2019-12-29 03:39:27 1 4 2019-12-29 03:44:27 1 5 2019-12-29 03:49:27 1 4 2019-12-29 04:04:27 1 4 2019-12-29 04:09:27 1 4 2019-12-29 04:14:27 1 4 2019-12-29 04:34:27 1 4 2019-12-29 04:39:27 1 5 2019-12-29 05:09:27 1 4 2019-12-29 05:29:27 1 4 2019-12-27 21:19:27 1 11 2019-12-27 21:24:27 1 13 2019-12-27 21:29:27 1 15 2019-12-27 21:44:27 1 12 2019-12-27 21:49:27 1 14 2019-12-27 21:49:27 4 1 2019-12-27 21:59:27 1 14 2019-12-27 22:09:27 1 12 2019-12-27 22:14:27 1 13 2019-12-27 22:19:27 1 12 2019-12-27 22:29:27 1 14 2019-12-27 23:44:27 1 9 2019-12-28 00:04:27 1 11 2019-12-28 00:24:27 1 9 2019-12-28 01:04:27 1 11 2019-12-28 01:14:27 1 9 2019-12-28 02:09:27 1 8 2019-12-28 02:19:27 1 8 2019-12-28 02:29:27 1 8 2019-12-28 02:44:27 1 8 2019-12-28 02:49:27 1 8 2019-12-28 02:54:27 1 8 2019-12-28 02:59:27 1 8 2019-12-28 03:04:27 1 8 2019-12-28 03:34:27 1 7 2019-12-28 04:09:27 1 7 2019-12-28 04:14:27 1 7 2019-12-28 04:19:27 1 7 2019-12-28 04:34:27 1 7 2019-12-28 04:44:27 1 6 2019-12-28 04:49:27 1 6 2019-12-28 04:59:27 1 4 2019-12-28 05:04:27 1 6 2019-12-28 05:34:27 1 5 2019-12-28 05:54:27 1 5 2019-12-28 05:59:27 1 5 2019-12-28 05:59:27 4 1 2019-12-28 06:24:27 1 4 2019-12-28 06:29:27 1 5 2019-12-28 06:44:27 1 6 2019-12-28 06:59:27 1 6 2019-12-28 06:59:27 4 1 2019-12-28 07:19:27 1 7 2019-12-28 07:34:27 1 8 2019-12-28 07:39:27 1 9 2019-12-28 07:54:27 1 8 2019-12-28 07:59:27 1 10 2019-12-28 08:39:27 1 8 2019-12-28 08:59:27 1 9 2019-12-28 09:24:27 1 13 2019-12-28 09:39:27 1 12 2019-12-28 09:54:27 1 14 2019-12-28 09:54:27 4 1 2019-12-28 10:24:27 1 14 2019-12-28 10:39:27 1 12 2019-12-28 10:54:27 1 10 2019-12-28 10:59:27 1 10 2019-12-28 11:04:27 1 10 2019-12-28 12:14:27 1 10 2019-12-28 13:24:27 1 12 2019-12-28 13:34:27 1 13 2019-12-28 14:04:27 1 6 2019-12-28 14:04:27 2 1 2019-12-28 14:09:27 1 6 2019-12-28 14:09:27 2 1 2019-12-28 14:14:27 1 6 2019-12-28 14:14:27 2 1 2019-12-28 14:19:27 1 6 2019-12-28 14:19:27 2 1 2019-12-28 14:19:27 4 1 2019-12-28 14:24:27 1 7 2019-12-28 14:24:27 2 1 2019-12-28 14:24:27 4 1 2019-12-28 14:34:27 1 9 2019-12-28 14:34:27 2 1 2019-12-28 14:34:27 4 1 2019-12-28 14:49:27 1 7 2019-12-28 14:49:27 2 1 2019-12-28 15:04:27 1 8 2019-12-28 15:04:27 2 2 2019-12-28 15:19:27 1 10 2019-12-28 15:19:27 2 2 2019-12-28 15:24:27 1 7 2019-12-28 15:24:27 2 2 2019-12-28 15:34:27 1 12 2019-12-28 15:34:27 2 2 2019-12-28 15:39:27 1 11 2019-12-28 15:39:27 2 2 2019-12-28 15:44:27 1 11 2019-12-28 15:44:27 2 1 2019-12-28 15:54:27 1 10 2019-12-28 15:54:27 2 1 2019-12-28 16:19:27 1 10 2019-12-28 16:19:27 2 1 2019-12-28 16:19:27 4 1 2019-12-28 16:29:27 1 10 2019-12-28 16:29:27 2 1 2019-12-28 16:34:27 1 15 2019-12-28 16:34:27 2 1 2019-12-28 17:09:27 1 14 2019-12-28 17:09:27 2 1 2019-12-28 18:34:27 1 11 2019-12-28 18:34:27 2 3 2019-12-28 18:49:27 1 10 2019-12-28 18:49:27 2 2 2019-12-28 19:04:27 1 12 2019-12-28 19:04:27 2 1 2019-12-28 19:19:27 1 13 2019-12-28 19:19:27 2 1 2019-12-28 19:24:27 1 13 2019-12-28 19:24:27 2 1 2019-12-28 19:34:27 1 15 2019-12-28 19:34:27 2 1 2019-12-28 19:39:27 1 14 2019-12-28 19:39:27 2 1 2019-12-28 19:44:27 1 14 2019-12-28 19:44:27 2 1 2019-12-28 19:49:27 1 16 2019-12-28 19:49:27 2 1 2019-12-28 20:09:27 1 14 2019-12-28 20:09:27 2 1 2019-12-28 20:34:27 1 14 2019-12-28 20:34:27 2 2 2019-12-28 20:54:27 1 21 2019-12-28 20:54:27 2 1 2019-12-28 20:59:27 1 19 2019-12-28 20:59:27 2 1 2019-12-28 21:34:27 1 13 2019-12-28 21:34:27 2 1 2019-12-28 21:49:27 1 14 2019-12-28 21:49:27 2 1 2019-12-28 22:09:27 1 13 2019-12-28 22:09:27 2 1 2019-12-28 22:14:27 1 15 2019-12-28 22:14:27 2 1 2019-12-28 22:19:27 1 14 2019-12-28 22:19:27 2 1 2019-12-28 22:24:27 1 13 2019-12-28 22:24:27 2 1 2019-12-28 22:29:27 1 14 2019-12-28 22:29:27 2 1 2019-12-28 22:34:27 1 13 2019-12-28 22:34:27 2 1 2019-12-28 22:44:28 1 15 2019-12-28 22:44:28 2 1 2019-12-28 22:59:27 1 12 2019-12-28 22:59:27 2 1 2019-12-28 23:04:27 1 12 2019-12-28 23:04:27 2 1 2019-12-28 23:34:27 1 11 2019-12-28 23:54:27 1 12 2019-12-29 00:04:27 1 13 2019-12-29 00:24:27 1 14 2019-12-29 00:29:27 1 12 2019-12-29 01:34:27 1 9 2019-12-29 01:49:27 1 7 2019-12-29 01:54:27 1 6 2019-12-29 02:09:27 1 7 2019-12-29 02:14:27 1 6 2019-12-29 02:19:27 1 6 2019-12-29 02:44:27 1 5 2019-12-29 03:29:27 1 4 2019-12-29 03:34:27 1 4 2019-12-29 03:54:27 1 4 2019-12-29 03:59:28 1 4 2019-12-29 04:19:27 1 4 2019-12-29 04:24:27 1 4 2019-12-29 04:44:27 1 4 2019-12-29 04:49:27 1 4 2019-12-29 05:24:27 1 5 2019-12-29 05:24:27 2 1 2019-12-29 05:29:27 2 1 2019-12-29 05:34:27 1 4 2019-12-29 05:34:27 2 1 2019-12-29 05:39:27 1 4 2019-12-29 05:39:27 2 1 2019-12-29 05:44:27 1 4 2019-12-29 05:44:27 2 1 2019-12-29 05:49:27 1 4 2019-12-29 05:49:27 2 1 2019-12-29 05:54:27 1 4 2019-12-29 05:54:27 2 1 2019-12-29 05:59:27 1 5 2019-12-29 05:59:27 2 1 2019-12-29 06:04:27 1 4 2019-12-27 21:39:27 1 11 2019-12-27 22:04:27 1 12 2019-12-27 22:39:27 1 12 2019-12-27 22:44:27 1 13 2019-12-27 22:59:27 1 13 2019-12-27 23:04:27 1 11 2019-12-27 23:04:27 4 1 2019-12-27 23:09:27 1 12 2019-12-27 23:24:27 1 10 2019-12-27 23:29:27 1 11 2019-12-27 23:34:27 1 10 2019-12-27 23:49:27 1 9 2019-12-27 23:59:27 1 9 2019-12-28 00:09:27 1 11 2019-12-28 00:19:27 1 9 2019-12-28 00:44:27 1 9 2019-12-28 00:49:27 1 10 2019-12-28 00:54:27 1 9 2019-12-28 00:59:27 1 10 2019-12-28 01:09:27 1 10 2019-12-28 01:09:27 4 1 2019-12-28 01:24:27 1 9 2019-12-28 01:34:27 1 8 2019-12-28 01:44:27 1 7 2019-12-28 02:04:27 1 8 2019-12-28 02:34:27 1 8 2019-12-28 03:09:27 1 9 2019-12-28 03:14:27 1 9 2019-12-28 03:19:27 1 9 2019-12-28 03:39:27 1 7 2019-12-28 03:44:27 1 7 2019-12-28 03:59:27 1 7 2019-12-28 04:39:27 1 5 2019-12-28 05:19:27 1 5 2019-12-28 05:44:27 1 5 2019-12-28 05:49:27 1 5 2019-12-28 06:19:27 1 4 2019-12-28 06:39:27 1 4 2019-12-28 06:54:27 1 5 2019-12-28 07:04:27 1 6 2019-12-28 07:09:27 1 5 2019-12-28 07:24:27 1 8 2019-12-28 08:19:27 1 7 2019-12-28 08:24:27 1 8 2019-12-28 08:29:27 1 6 2019-12-28 08:34:27 1 7 2019-12-28 08:49:27 1 9 2019-12-28 09:09:27 1 11 2019-12-28 09:14:27 1 11 2019-12-28 09:19:27 1 14 2019-12-28 09:34:27 1 11 2019-12-28 09:49:27 1 15 2019-12-28 10:14:27 1 14 2019-12-28 11:09:27 1 11 2019-12-28 11:29:27 1 7 2019-12-28 11:34:27 1 6 2019-12-28 11:59:27 1 7 2019-12-28 12:04:27 1 7 2019-12-28 12:19:27 1 10 2019-12-28 12:29:27 1 9 2019-12-28 12:34:27 1 11 2019-12-28 12:39:27 1 10 2019-12-28 13:29:27 1 13 2019-12-28 13:39:27 1 12 2019-12-28 13:44:27 1 11 2019-12-28 13:44:27 4 1 2019-12-28 13:49:27 1 12 2019-12-28 13:54:27 1 11 2019-12-28 13:54:27 2 1 2019-12-28 14:29:27 1 7 2019-12-28 14:29:27 2 1 2019-12-28 14:29:27 4 1 2019-12-28 15:29:27 1 10 2019-12-28 15:29:27 2 2 2019-12-28 15:59:27 1 10 2019-12-28 15:59:27 2 1 2019-12-28 16:04:27 1 9 2019-12-28 16:04:27 2 1 2019-12-28 16:14:27 1 10 2019-12-28 16:14:27 2 1 2019-12-28 17:14:27 1 12 2019-12-28 17:14:27 2 1 2019-12-28 17:19:27 1 13 2019-12-28 17:19:27 2 1 2019-12-28 17:34:27 1 11 2019-12-28 17:34:27 2 1 2019-12-28 17:54:27 1 12 2019-12-28 17:54:27 2 2 2019-12-28 18:04:27 1 11 2019-12-28 18:04:27 2 4 2019-12-28 18:09:27 1 12 2019-12-28 18:09:27 2 4 2019-12-28 18:14:27 1 12 2019-12-28 18:14:27 2 3 2019-12-28 18:19:27 1 12 2019-12-28 18:19:27 2 3 2019-12-28 18:39:27 1 9 2019-12-28 18:39:27 2 2 2019-12-28 18:44:27 1 11 2019-12-28 18:44:27 2 2 2019-12-28 18:54:27 1 11 2019-12-28 18:54:27 2 2 2019-12-28 19:09:27 1 11 2019-12-28 19:09:27 2 1 2019-12-28 19:14:27 1 13 2019-12-28 19:14:27 2 1 2019-12-28 19:29:27 1 13 2019-12-28 19:29:27 2 1 2019-12-28 19:54:27 1 15 2019-12-28 19:54:27 2 1 2019-12-28 19:59:27 1 13 2019-12-28 19:59:27 2 1 2019-12-28 20:19:27 1 16 2019-12-28 20:19:27 2 1 2019-12-28 20:24:27 1 13 2019-12-28 20:24:27 2 1 2019-12-28 20:29:27 1 17 2019-12-28 20:29:27 2 2 2019-12-28 20:39:27 1 15 2019-12-28 20:39:27 2 2 2019-12-28 20:44:27 1 19 2019-12-28 20:44:27 2 2 2019-12-28 20:49:27 1 18 2019-12-28 20:49:27 2 1 2019-12-28 21:04:27 1 19 2019-12-28 21:04:27 2 1 2019-12-28 21:09:27 1 16 2019-12-28 21:09:27 2 1 2019-12-28 21:19:27 1 15 2019-12-28 21:19:27 2 1 2019-12-28 21:24:27 1 13 2019-12-28 21:24:27 2 1 2019-12-28 21:29:27 1 14 2019-12-28 21:29:27 2 1 2019-12-28 21:54:27 1 14 2019-12-28 21:54:27 2 1 2019-12-28 21:59:27 1 12 2019-12-28 21:59:27 2 2 2019-12-28 22:54:27 1 14 2019-12-28 22:54:27 2 1 2019-12-28 23:24:27 1 14 2019-12-28 23:24:27 2 1 2019-12-28 23:29:27 1 11 2019-12-28 23:44:27 1 14 2019-12-28 23:49:27 1 12 2019-12-28 23:59:27 1 11 2019-12-29 00:09:27 1 14 2019-12-29 00:39:27 1 11 2019-12-29 00:44:27 1 11 2019-12-29 00:49:27 1 10 2019-12-29 00:54:27 1 9 2019-12-29 00:59:27 1 8 2019-12-29 01:04:27 1 6 2019-12-29 01:24:27 1 7 2019-12-29 01:39:27 1 8 2019-12-29 01:44:27 1 8 2019-12-29 01:59:27 1 7 2019-12-29 02:29:27 1 6 2019-12-29 02:49:27 1 5 2019-12-29 03:14:27 1 4 2019-12-29 04:29:27 1 4 2019-12-29 04:54:27 1 4 2019-12-29 04:59:27 1 4 2019-12-29 05:04:27 1 4 2019-12-29 05:14:27 1 4 2019-12-29 05:19:27 1 4 2019-12-29 06:04:27 2 1 2019-12-29 06:09:27 1 4 2019-12-29 06:09:27 2 1 2019-12-29 06:14:27 1 4 2019-12-29 06:14:27 2 1 2019-12-29 06:19:27 1 5 2019-12-29 06:19:27 2 1 2019-12-29 06:24:27 1 5 2019-12-29 06:24:27 2 1 2019-12-29 06:29:27 1 5 2019-12-29 06:34:27 1 6 2019-12-29 06:39:27 1 6 2019-12-29 06:44:27 1 7 2019-12-29 06:49:27 1 7 2019-12-29 06:54:27 1 8 2019-12-29 06:59:27 1 7 2019-12-29 07:04:27 1 5 2019-12-29 07:09:27 1 6 2019-12-29 07:14:27 1 6 2019-12-29 07:19:27 1 5 2019-12-29 07:29:27 1 7 2019-12-29 07:49:27 1 6 2019-12-29 08:04:27 1 10 2019-12-29 08:04:27 2 1 2019-12-29 08:14:27 1 9 2019-12-29 08:24:27 1 8 2019-12-29 08:34:27 1 8 2019-12-29 08:34:27 2 1 2019-12-29 08:44:27 1 7 2019-12-29 08:59:27 1 10 2019-12-29 09:04:27 1 8 2019-12-29 09:04:27 2 1 2019-12-29 09:19:27 1 10 2019-12-29 09:19:27 2 1 2019-12-29 09:54:27 1 7 2019-12-29 09:54:27 2 1 2019-12-29 10:09:27 1 12 2019-12-29 10:14:27 1 11 2019-12-29 10:24:27 1 9 2019-12-29 10:44:27 1 12 2019-12-29 10:49:27 1 13 2019-12-29 10:59:27 1 11 2019-12-29 10:59:27 2 1 2019-12-29 11:19:27 1 12 2019-12-29 11:19:27 2 1 2019-12-29 11:49:27 1 12 2019-12-29 11:49:27 2 1 2019-12-29 11:49:27 4 1 2019-12-29 11:54:27 1 10 2019-12-29 12:04:27 1 10 2019-12-29 12:09:27 1 13 2019-12-29 12:29:27 1 16 2019-12-29 12:44:27 1 15 2019-12-29 12:54:27 1 12 2019-12-29 12:59:27 1 12 2019-12-29 13:34:27 1 12 2019-12-29 13:34:27 2 1 2019-12-29 14:04:27 1 11 2019-12-29 14:14:27 1 13 2019-12-29 14:24:27 1 9 2019-12-29 14:29:27 1 9 2019-12-29 14:29:27 4 1 2019-12-29 14:39:27 1 10 2019-12-29 14:54:27 1 11 2019-12-29 15:04:27 1 7 2019-12-29 15:04:27 2 2 2019-12-29 15:14:27 1 8 2019-12-29 15:24:27 1 9 2019-12-29 15:34:27 1 9 2019-12-29 15:49:27 1 13 2019-12-29 15:54:27 1 12 2019-12-29 15:59:27 1 10 2019-12-29 16:09:27 1 11 2019-12-29 16:24:27 1 10 2019-12-29 16:24:27 2 2 2019-12-29 16:39:27 1 9 2019-12-29 16:39:27 2 1 2019-12-29 16:49:27 1 12 2019-12-29 16:49:27 2 1 2019-12-29 16:59:27 1 11 2019-12-29 16:59:27 2 1 2019-12-29 17:49:27 1 11 2019-12-29 17:54:27 1 12 2019-12-29 18:09:27 1 13 2019-12-29 19:14:27 1 16 2019-12-29 19:14:27 2 1 2019-12-29 19:19:27 1 17 2019-12-29 19:19:27 2 1 2019-12-29 19:39:27 1 16 2019-12-29 20:09:27 1 13 2019-12-29 20:09:27 2 1 2019-12-29 20:24:27 1 16 2019-12-29 20:24:27 2 1 2019-12-29 20:29:27 1 13 2019-12-29 21:04:27 1 17 2019-12-29 21:09:27 1 16 2019-12-29 21:09:27 2 1 2019-12-29 21:14:28 1 16 2019-12-29 21:14:28 2 1 2019-12-29 21:24:27 1 18 2019-12-29 21:44:27 1 18 2019-12-29 21:49:27 1 18 2019-12-29 21:49:27 4 1 2019-12-29 21:54:27 1 17 2019-12-29 21:54:27 4 1 2019-12-29 22:04:27 1 16 2019-12-29 22:09:27 1 14 2019-12-29 22:09:27 4 1 2019-12-29 22:14:27 1 14 2019-12-29 22:19:27 1 15 2019-12-29 22:24:27 1 15 2019-12-29 22:29:27 1 16 2019-12-29 22:29:27 4 1 2019-12-29 23:04:27 1 11 2019-12-29 23:04:27 2 1 2019-12-29 23:09:27 1 12 2019-12-29 23:09:27 2 1 2019-12-29 23:09:27 4 1 2019-12-29 23:19:27 1 10 2019-12-29 23:49:27 1 10 2019-12-30 00:04:27 1 9 2019-12-30 00:29:27 1 7 2019-12-30 00:29:27 2 1 2019-12-30 00:49:27 1 7 2019-12-30 00:49:27 2 1 2019-12-30 00:59:27 1 6 2019-12-30 00:59:27 2 1 2019-12-30 01:04:27 1 6 2019-12-30 01:04:27 2 1 2019-12-30 01:09:27 1 7 2019-12-30 01:09:27 2 1 2019-12-30 01:29:27 1 5 2019-12-30 01:59:27 1 6 2019-12-30 02:14:27 1 7 2019-12-30 02:24:27 1 5 2019-12-30 02:34:27 1 6 2019-12-30 03:14:27 1 3 2019-12-30 03:54:27 1 3 2019-12-30 04:09:27 1 4 2019-12-30 04:19:27 1 3 2019-12-30 04:34:27 1 4 2019-12-30 04:59:27 1 5 2019-12-30 05:19:27 1 4 2019-12-30 05:19:27 2 1 2019-12-30 05:24:27 1 4 2019-12-30 05:39:27 1 4 2019-12-30 05:39:27 2 1 2019-12-30 05:44:27 1 5 2019-12-30 05:44:27 2 1 2019-12-30 06:19:27 1 5 2019-12-30 06:19:27 2 1 2019-12-30 06:29:27 1 9 2019-12-30 06:49:27 1 8 2019-12-30 07:34:27 1 4 2019-12-30 07:49:27 1 3 2019-12-30 07:49:27 2 1 2019-12-30 07:54:27 1 3 2019-12-30 07:54:27 2 1 2019-12-30 08:14:27 1 6 2019-12-30 08:14:27 2 1 2019-12-30 08:34:27 1 4 2019-12-30 08:34:27 2 1 2019-12-30 08:39:27 1 4 2019-12-30 08:39:27 2 1 2019-12-30 08:49:27 1 6 2019-12-30 08:49:27 2 1 2019-12-30 09:19:27 1 7 2019-12-30 09:19:27 2 2 2019-12-30 09:34:27 1 5 2019-12-30 09:34:27 2 2 2019-12-30 10:04:27 1 7 2019-12-30 10:04:27 2 1 2019-12-30 10:14:27 1 6 2019-12-30 10:14:27 2 1 2019-12-30 10:19:27 1 7 2019-12-30 10:19:27 2 1 2019-12-30 10:29:27 1 7 2019-12-30 10:34:27 1 7 2019-12-30 10:49:27 1 10 2019-12-30 10:49:27 2 1 2019-12-30 11:39:27 1 9 2019-12-30 11:39:27 2 1 2019-12-30 11:49:27 1 12 2019-12-30 11:49:27 2 1 2019-12-30 11:54:27 2 2 2019-12-30 11:59:27 1 10 2019-12-30 11:59:27 2 2 2019-12-30 12:09:27 1 13 2019-12-30 12:09:27 2 2 2019-12-30 12:14:27 1 13 2019-12-30 12:14:27 2 1 2019-12-30 12:19:27 1 12 2019-12-30 12:19:27 2 1 2019-12-30 12:24:27 1 17 2019-12-30 12:24:27 2 1 2019-12-30 12:29:27 1 16 2019-12-30 12:39:27 1 13 2019-12-30 12:44:27 1 14 2019-12-30 12:54:27 1 15 2019-12-30 12:59:28 1 13 2019-12-30 13:04:27 1 10 2019-12-30 13:09:27 1 10 2019-12-30 13:19:27 1 9 2019-12-30 13:19:27 2 1 2019-12-29 07:24:27 1 5 2019-12-29 07:34:27 1 7 2019-12-29 08:19:27 1 8 2019-12-29 08:49:27 1 7 2019-12-29 09:09:27 1 10 2019-12-29 09:09:27 2 1 2019-12-29 09:34:27 1 8 2019-12-29 09:34:27 2 1 2019-12-29 09:59:27 1 9 2019-12-29 09:59:27 2 1 2019-12-29 10:19:27 1 11 2019-12-29 10:54:27 1 12 2019-12-29 11:14:27 1 13 2019-12-29 11:14:27 2 1 2019-12-29 11:34:27 1 9 2019-12-29 11:34:27 2 1 2019-12-29 12:14:27 1 13 2019-12-29 12:24:27 1 13 2019-12-29 12:34:27 1 12 2019-12-29 12:49:27 1 11 2019-12-29 13:04:27 1 11 2019-12-29 13:29:27 1 9 2019-12-29 13:39:27 1 11 2019-12-29 13:39:27 2 1 2019-12-29 14:09:28 1 13 2019-12-29 14:19:27 1 10 2019-12-29 14:44:27 1 9 2019-12-29 14:49:27 1 8 2019-12-29 15:09:27 1 8 2019-12-29 15:09:27 2 2 2019-12-29 15:19:27 1 8 2019-12-29 15:39:27 1 9 2019-12-29 15:44:27 1 10 2019-12-29 16:14:27 1 10 2019-12-29 16:14:27 2 1 2019-12-29 16:19:27 1 10 2019-12-29 16:19:27 2 2 2019-12-29 16:29:27 1 12 2019-12-29 16:29:27 2 2 2019-12-29 17:04:27 1 13 2019-12-29 17:04:27 2 1 2019-12-29 17:04:27 4 1 2019-12-29 17:09:27 1 10 2019-12-29 17:09:27 2 1 2019-12-29 17:19:27 1 9 2019-12-29 17:19:27 2 1 2019-12-29 17:44:27 1 12 2019-12-29 17:44:27 2 1 2019-12-29 17:59:27 1 12 2019-12-29 18:19:27 1 15 2019-12-29 18:24:27 1 14 2019-12-29 18:24:27 2 1 2019-12-29 18:29:27 1 15 2019-12-29 18:29:27 2 1 2019-12-29 18:34:27 1 14 2019-12-29 18:44:27 1 15 2019-12-29 18:49:27 1 15 2019-12-29 18:59:27 1 17 2019-12-29 19:04:27 1 17 2019-12-29 19:04:27 2 1 2019-12-29 19:09:27 1 15 2019-12-29 19:09:27 2 1 2019-12-29 19:34:27 1 15 2019-12-29 19:44:27 1 17 2019-12-29 19:54:27 1 17 2019-12-29 20:04:27 1 15 2019-12-29 20:04:27 2 1 2019-12-29 20:39:27 1 14 2019-12-29 20:44:27 1 14 2019-12-29 20:54:27 1 15 2019-12-29 20:54:27 2 1 2019-12-29 20:59:27 1 17 2019-12-29 20:59:27 2 1 2019-12-29 21:19:27 1 16 2019-12-29 21:19:27 2 1 2019-12-29 21:29:27 1 19 2019-12-29 21:34:27 1 20 2019-12-29 21:39:27 1 20 2019-12-29 21:59:27 1 16 2019-12-29 22:34:27 1 16 2019-12-29 22:34:27 4 1 2019-12-29 22:39:27 1 15 2019-12-29 23:24:27 1 11 2019-12-29 23:39:27 1 12 2019-12-29 23:44:27 1 11 2019-12-29 23:54:27 1 10 2019-12-29 23:59:27 1 10 2019-12-30 00:09:27 1 9 2019-12-30 00:24:27 1 7 2019-12-30 00:24:27 2 1 2019-12-30 00:44:27 1 7 2019-12-30 00:44:27 2 1 2019-12-30 01:19:27 1 6 2019-12-30 01:19:27 2 1 2019-12-30 01:44:27 1 5 2019-12-30 01:49:27 1 7 2019-12-30 01:54:28 1 6 2019-12-30 02:09:27 1 7 2019-12-30 02:49:27 1 5 2019-12-30 02:54:27 1 4 2019-12-30 03:04:27 1 3 2019-12-30 03:09:27 1 3 2019-12-30 03:19:27 1 4 2019-12-30 03:24:27 1 3 2019-12-30 03:44:27 1 3 2019-12-30 03:49:27 1 3 2019-12-30 04:04:27 1 3 2019-12-30 04:14:27 1 3 2019-12-30 04:24:27 1 4 2019-12-30 04:39:27 1 4 2019-12-30 04:44:27 1 4 2019-12-30 04:49:27 1 4 2019-12-30 04:54:27 1 4 2019-12-30 05:09:27 1 3 2019-12-30 05:14:27 1 5 2019-12-30 05:34:27 1 6 2019-12-30 05:34:27 2 1 2019-12-30 05:54:27 1 5 2019-12-30 05:54:27 2 1 2019-12-30 06:14:27 1 5 2019-12-30 06:14:27 2 1 2019-12-30 06:24:27 1 7 2019-12-30 06:24:27 2 1 2019-12-30 06:39:27 1 8 2019-12-30 06:44:27 1 7 2019-12-30 06:54:27 1 7 2019-12-30 07:04:27 1 8 2019-12-30 07:09:27 1 7 2019-12-30 07:19:27 1 6 2019-12-30 07:29:27 1 5 2019-12-30 07:39:28 1 4 2019-12-30 07:59:27 1 3 2019-12-30 07:59:27 2 1 2019-12-30 08:19:27 1 6 2019-12-30 08:19:27 2 1 2019-12-30 08:44:27 1 4 2019-12-30 08:44:27 2 1 2019-12-30 09:24:27 1 4 2019-12-30 09:24:27 2 2 2019-12-30 09:59:27 1 6 2019-12-30 09:59:27 2 2 2019-12-30 10:44:27 1 8 2019-12-30 10:44:27 2 1 2019-12-30 10:54:27 1 10 2019-12-30 10:54:27 2 1 2019-12-30 11:09:27 1 7 2019-12-30 11:19:27 1 8 2019-12-30 11:34:27 1 10 2019-12-30 11:34:27 2 1 2019-12-30 12:04:27 1 10 2019-12-30 12:04:27 2 3 2019-12-30 12:34:27 1 15 2019-12-30 12:49:27 1 16 2019-12-30 13:14:27 1 10 2019-12-30 13:24:27 1 13 2019-12-30 13:24:27 2 1 2019-12-30 13:29:27 1 12 2019-12-30 13:29:27 2 1 2019-12-30 13:34:27 1 12 2019-12-30 13:34:27 2 1 2019-12-30 13:39:27 1 11 2019-12-30 13:44:27 1 12 2019-12-30 13:49:27 1 9 2019-12-30 13:54:27 1 11 2019-12-30 13:59:27 1 11 2019-12-30 14:04:28 1 11 2019-12-30 14:09:27 1 9 2019-12-30 14:14:27 1 11 2019-12-30 14:19:27 1 9 2019-12-30 14:24:27 1 10 2019-12-30 14:29:27 1 11 2019-12-30 14:34:27 1 12 2019-12-30 14:39:27 1 9 2019-12-30 14:44:27 1 9 2019-12-30 14:49:27 1 11 2019-12-30 14:54:27 1 11 2019-12-30 14:59:27 1 12 2019-12-30 15:04:27 1 11 2019-12-30 15:09:27 1 10 2019-12-30 15:14:27 1 8 2019-12-30 15:19:27 1 9 2019-12-30 15:24:27 1 9 2019-12-30 15:29:27 1 10 2019-12-30 15:34:27 1 9 2019-12-30 15:34:27 2 1 2019-12-29 07:39:27 1 7 2019-12-29 07:44:27 1 7 2019-12-29 07:54:27 1 8 2019-12-29 07:59:27 1 10 2019-12-29 07:59:27 2 1 2019-12-29 08:09:27 1 10 2019-12-29 08:29:27 1 8 2019-12-29 08:29:27 2 1 2019-12-29 08:39:27 1 7 2019-12-29 08:39:27 2 1 2019-12-29 08:54:27 1 8 2019-12-29 09:14:27 1 10 2019-12-29 09:14:27 2 1 2019-12-29 09:24:27 1 9 2019-12-29 09:24:27 2 1 2019-12-29 09:29:27 1 9 2019-12-29 09:29:27 2 1 2019-12-29 09:39:27 1 10 2019-12-29 09:39:27 2 1 2019-12-29 09:44:27 1 9 2019-12-29 09:44:27 2 1 2019-12-29 09:49:27 1 11 2019-12-29 09:49:27 2 1 2019-12-29 10:04:27 1 10 2019-12-29 10:29:27 1 12 2019-12-29 10:34:27 1 11 2019-12-29 10:34:27 4 1 2019-12-29 10:39:27 1 10 2019-12-29 11:04:27 1 12 2019-12-29 11:04:27 2 1 2019-12-29 11:09:27 1 11 2019-12-29 11:09:27 2 1 2019-12-29 11:24:27 1 11 2019-12-29 11:24:27 2 1 2019-12-29 11:29:27 1 11 2019-12-29 11:29:27 2 1 2019-12-29 11:39:27 1 13 2019-12-29 11:39:27 2 1 2019-12-29 11:44:27 1 12 2019-12-29 11:44:27 2 1 2019-12-29 11:59:27 1 12 2019-12-29 11:59:27 4 1 2019-12-29 12:19:27 1 15 2019-12-29 12:39:27 1 11 2019-12-29 13:09:27 1 13 2019-12-29 13:14:27 1 11 2019-12-29 13:19:28 1 12 2019-12-29 13:24:27 1 11 2019-12-29 13:44:27 1 11 2019-12-29 13:44:27 2 1 2019-12-29 13:49:27 1 13 2019-12-29 13:49:27 2 1 2019-12-29 13:54:27 1 9 2019-12-29 13:54:27 2 1 2019-12-29 13:59:27 1 10 2019-12-29 13:59:27 2 1 2019-12-29 14:34:27 1 9 2019-12-29 14:59:27 1 8 2019-12-29 15:29:27 1 10 2019-12-29 15:29:27 4 1 2019-12-29 16:04:27 1 8 2019-12-29 16:34:27 1 9 2019-12-29 16:34:27 2 1 2019-12-29 16:44:27 1 10 2019-12-29 16:44:27 2 1 2019-12-29 16:54:27 1 11 2019-12-29 16:54:27 2 1 2019-12-29 17:14:27 1 10 2019-12-29 17:14:27 2 1 2019-12-29 17:24:27 1 11 2019-12-29 17:24:27 2 1 2019-12-29 17:29:27 1 11 2019-12-29 17:29:27 2 1 2019-12-29 17:34:27 1 13 2019-12-29 17:34:27 2 1 2019-12-29 17:39:27 1 12 2019-12-29 17:39:27 2 1 2019-12-29 18:04:27 1 13 2019-12-29 18:14:27 1 12 2019-12-29 18:39:27 1 14 2019-12-29 18:54:27 1 13 2019-12-29 19:24:27 1 17 2019-12-29 19:29:27 1 15 2019-12-29 19:49:27 1 17 2019-12-29 19:59:27 1 13 2019-12-29 20:14:27 1 17 2019-12-29 20:14:27 2 2 2019-12-29 20:19:27 1 18 2019-12-29 20:19:27 2 1 2019-12-29 20:34:27 1 14 2019-12-29 20:49:27 1 13 2019-12-29 20:49:27 2 1 2019-12-29 22:44:27 1 17 2019-12-29 22:49:27 1 13 2019-12-29 22:54:27 1 12 2019-12-29 22:54:27 2 1 2019-12-29 22:59:27 1 12 2019-12-29 22:59:27 2 1 2019-12-29 23:14:27 1 11 2019-12-29 23:29:27 1 13 2019-12-29 23:34:27 1 13 2019-12-29 23:34:27 2 1 2019-12-30 00:14:27 1 8 2019-12-30 00:19:27 1 7 2019-12-30 00:34:27 1 8 2019-12-30 00:34:27 2 1 2019-12-30 00:39:27 1 7 2019-12-30 00:39:27 2 1 2019-12-30 00:54:27 1 9 2019-12-30 00:54:27 2 1 2019-12-30 01:14:27 1 7 2019-12-30 01:14:27 2 1 2019-12-30 01:24:27 1 6 2019-12-30 01:24:27 2 1 2019-12-30 01:34:27 1 5 2019-12-30 01:39:27 1 5 2019-12-30 02:04:27 1 7 2019-12-30 02:19:27 1 7 2019-12-30 02:29:27 1 7 2019-12-30 02:39:27 1 6 2019-12-30 02:44:27 1 5 2019-12-30 02:59:27 1 3 2019-12-30 03:29:27 1 4 2019-12-30 03:34:27 1 3 2019-12-30 03:39:27 1 3 2019-12-30 03:59:27 1 3 2019-12-30 04:29:27 1 4 2019-12-30 05:04:27 1 5 2019-12-30 05:29:27 1 4 2019-12-30 05:29:27 2 1 2019-12-30 05:49:27 1 5 2019-12-30 05:49:27 2 1 2019-12-30 05:59:27 1 5 2019-12-30 05:59:27 2 1 2019-12-30 06:04:27 1 4 2019-12-30 06:04:27 2 1 2019-12-30 06:09:27 1 5 2019-12-30 06:09:27 2 1 2019-12-30 06:34:27 1 9 2019-12-30 06:59:27 1 8 2019-12-30 07:14:27 1 6 2019-12-30 07:24:27 1 6 2019-12-30 07:44:27 1 3 2019-12-30 07:44:27 2 1 2019-12-30 08:04:27 1 4 2019-12-30 08:09:27 1 4 2019-12-30 08:09:27 2 1 2019-12-30 08:24:27 1 5 2019-12-30 08:24:27 2 1 2019-12-30 08:29:27 1 6 2019-12-30 08:29:27 2 1 2019-12-30 08:54:27 1 8 2019-12-30 08:54:27 2 1 2019-12-30 08:59:27 1 8 2019-12-30 08:59:27 2 1 2019-12-30 09:04:27 1 7 2019-12-30 09:04:27 2 1 2019-12-30 09:09:27 1 8 2019-12-30 09:09:27 2 1 2019-12-30 09:14:27 1 6 2019-12-30 09:14:27 2 1 2019-12-30 09:29:27 1 4 2019-12-30 09:29:27 2 2 2019-12-30 09:39:27 1 6 2019-12-30 09:39:27 2 2 2019-12-30 09:44:27 1 6 2019-12-30 09:44:27 2 2 2019-12-30 09:49:27 1 8 2019-12-30 09:49:27 2 2 2019-12-30 09:54:27 1 7 2019-12-30 09:54:27 2 2 2019-12-30 10:09:28 1 8 2019-12-30 10:09:28 2 1 2019-12-30 10:24:27 1 6 2019-12-30 10:24:27 2 1 2019-12-30 10:39:27 1 7 2019-12-30 10:39:27 2 1 2019-12-30 10:59:27 1 9 2019-12-30 11:04:27 1 8 2019-12-30 11:14:27 1 6 2019-12-30 11:24:27 1 8 2019-12-30 11:29:27 1 11 2019-12-30 11:44:27 1 11 2019-12-30 11:44:27 2 1 2019-12-30 11:54:27 1 11 2019-12-30 15:39:27 1 9 2019-12-30 15:39:27 2 1 2019-12-30 15:54:27 1 9 2019-12-30 15:54:27 2 1 2019-12-30 16:29:27 1 11 2019-12-30 16:44:27 1 11 2019-12-30 16:49:27 1 11 2019-12-30 17:24:27 1 12 2019-12-30 17:24:27 2 2 2019-12-30 17:34:27 1 16 2019-12-30 17:34:27 2 2 2019-12-30 17:39:27 1 18 2019-12-30 17:39:27 2 1 2019-12-30 17:44:27 1 16 2019-12-30 17:44:27 2 1 2019-12-30 17:49:27 1 16 2019-12-30 17:49:27 2 1 2019-12-30 17:54:27 1 15 2019-12-30 17:54:27 2 1 2019-12-30 17:59:27 1 17 2019-12-30 17:59:27 2 1 2019-12-30 18:19:27 1 13 2019-12-30 18:34:27 1 16 2019-12-30 18:39:27 1 18 2019-12-30 18:49:27 1 19 2019-12-30 19:04:27 1 16 2019-12-30 19:14:27 1 17 2019-12-30 19:19:27 1 17 2019-12-30 19:34:27 1 18 2019-12-30 19:39:27 1 16 2019-12-30 19:59:27 1 16 2019-12-30 20:09:27 1 15 2019-12-30 20:39:27 1 16 2019-12-30 21:39:27 1 19 2019-12-30 21:44:27 1 18 2019-12-30 22:19:27 1 14 2019-12-30 22:19:27 2 1 2019-12-30 22:24:27 1 16 2019-12-30 22:24:27 2 1 2019-12-30 22:29:27 1 17 2019-12-30 22:29:27 2 1 2019-12-30 23:04:27 1 17 2019-12-30 23:39:27 1 13 2019-12-31 00:39:27 1 13 2019-12-31 00:44:27 1 12 2019-12-31 01:49:27 1 11 2019-12-31 01:49:27 2 1 2019-12-31 02:04:27 1 11 2019-12-31 03:24:27 1 7 2019-12-31 03:24:27 2 1 2019-12-31 03:29:27 1 7 2019-12-31 03:29:27 2 1 2019-12-31 03:34:27 1 7 2019-12-31 03:34:27 2 1 2019-12-31 03:39:27 1 7 2019-12-31 03:39:27 2 1 2019-12-31 03:44:27 1 7 2019-12-31 03:44:27 2 1 2019-12-31 03:49:27 1 7 2019-12-31 03:49:27 2 1 2019-12-31 03:54:27 1 7 2019-12-31 03:54:27 2 1 2019-12-31 04:04:27 1 7 2019-12-31 04:04:27 2 1 2019-12-31 05:24:27 1 9 2019-12-31 05:34:27 1 8 2019-12-31 05:39:27 1 7 2019-12-31 05:49:27 1 8 2019-12-31 05:54:27 1 8 2019-12-31 06:14:27 1 7 2019-12-31 06:24:27 1 8 2019-12-31 06:29:27 1 9 2019-12-31 06:44:27 1 10 2019-12-31 06:49:27 1 10 2019-12-31 07:14:27 1 12 2019-12-31 07:59:27 1 9 2019-12-31 08:04:27 1 10 2019-12-31 08:14:27 1 12 2019-12-31 08:24:27 1 11 2019-12-31 08:29:27 1 12 2019-12-31 08:39:27 1 13 2019-12-31 08:44:27 1 14 2019-12-31 08:49:27 1 11 2019-12-31 09:09:27 1 14 2019-12-31 09:29:27 1 12 2019-12-31 09:54:27 1 16 2019-12-31 10:19:27 1 8 2019-12-31 10:24:27 1 9 2019-12-31 10:44:27 1 13 2019-12-31 10:49:27 1 9 2019-12-31 10:54:27 1 9 2019-12-31 11:04:27 1 9 2019-12-30 15:44:27 1 9 2019-12-30 15:44:27 2 1 2019-12-30 16:09:27 1 8 2019-12-30 16:19:27 1 11 2019-12-30 16:34:27 1 11 2019-12-30 16:39:27 1 11 2019-12-30 17:04:27 1 11 2019-12-30 17:09:27 1 14 2019-12-30 17:09:27 2 1 2019-12-30 17:14:27 1 16 2019-12-30 17:14:27 2 1 2019-12-30 18:04:27 1 16 2019-12-30 18:04:27 2 1 2019-12-30 18:54:27 1 19 2019-12-30 19:49:27 1 17 2019-12-30 19:54:27 1 17 2019-12-30 20:04:27 1 16 2019-12-30 20:14:27 1 15 2019-12-30 20:19:27 1 16 2019-12-30 20:24:27 1 11 2019-12-30 20:29:27 1 15 2019-12-30 20:34:27 1 16 2019-12-30 20:49:27 1 15 2019-12-30 20:54:27 1 16 2019-12-30 21:09:27 1 14 2019-12-30 21:24:27 1 18 2019-12-30 21:29:27 1 19 2019-12-30 21:34:27 1 17 2019-12-30 21:49:27 1 18 2019-12-30 22:09:27 1 17 2019-12-30 22:14:27 1 16 2019-12-30 22:14:27 2 1 2019-12-30 22:34:27 1 19 2019-12-30 22:39:27 1 20 2019-12-30 22:44:27 1 19 2019-12-30 22:49:27 1 17 2019-12-30 22:54:27 1 16 2019-12-30 23:09:27 1 15 2019-12-30 23:14:27 1 14 2019-12-30 23:19:27 1 16 2019-12-30 23:24:27 1 16 2019-12-30 23:29:27 1 14 2019-12-30 23:34:27 1 16 2019-12-30 23:49:27 1 12 2019-12-30 23:54:27 1 12 2019-12-30 23:59:27 1 12 2019-12-31 00:04:27 1 12 2019-12-31 00:09:27 1 12 2019-12-31 00:19:27 1 13 2019-12-31 00:29:28 1 13 2019-12-31 00:34:27 1 13 2019-12-31 00:54:27 1 11 2019-12-31 01:19:27 1 10 2019-12-31 01:34:27 1 11 2019-12-31 01:54:27 1 10 2019-12-31 01:54:27 2 1 2019-12-31 01:59:27 1 10 2019-12-31 01:59:27 2 1 2019-12-31 02:09:27 1 9 2019-12-31 02:34:27 1 8 2019-12-31 02:34:27 2 1 2019-12-31 02:44:27 1 7 2019-12-31 02:44:27 2 1 2019-12-31 02:49:27 1 7 2019-12-31 02:49:27 2 1 2019-12-31 02:54:27 1 7 2019-12-31 02:54:27 2 1 2019-12-31 02:59:27 1 7 2019-12-31 02:59:27 2 1 2019-12-31 03:04:27 1 7 2019-12-31 03:04:27 2 1 2019-12-31 03:59:27 1 7 2019-12-31 03:59:27 2 1 2019-12-31 04:09:27 1 7 2019-12-31 04:09:27 2 1 2019-12-31 04:14:27 1 7 2019-12-31 04:14:27 2 1 2019-12-31 04:19:27 1 7 2019-12-31 04:19:27 2 1 2019-12-31 04:24:27 1 7 2019-12-31 04:24:27 2 1 2019-12-31 04:29:27 1 7 2019-12-31 04:29:27 2 1 2019-12-31 04:34:27 1 7 2019-12-31 04:34:27 2 1 2019-12-31 04:39:27 1 7 2019-12-31 04:39:27 2 1 2019-12-31 04:44:27 1 7 2019-12-31 04:44:27 2 1 2019-12-31 05:04:27 1 8 2019-12-31 05:04:27 2 1 2019-12-31 05:29:27 1 8 2019-12-31 05:29:27 2 1 2019-12-31 06:09:27 1 8 2019-12-31 06:19:27 1 7 2019-12-31 07:09:27 1 11 2019-12-31 07:24:27 1 11 2019-12-31 07:29:27 1 11 2019-12-31 07:39:27 1 11 2019-12-31 08:09:27 1 10 2019-12-31 08:19:27 1 12 2019-12-31 08:34:27 1 13 2019-12-31 09:24:27 1 13 2019-12-31 09:34:27 1 13 2019-12-31 09:44:27 1 15 2019-12-31 09:49:27 1 15 2019-12-31 09:59:27 1 15 2019-12-31 10:14:27 1 9 2019-12-31 10:29:27 1 11 2019-12-31 10:34:27 1 8 2019-12-31 11:09:27 1 8 2019-12-31 11:14:27 1 11 2019-12-31 11:24:27 1 16 2019-12-31 11:29:27 1 12 2019-12-31 11:34:27 1 13 2019-12-31 11:39:27 1 13 2019-12-31 11:44:27 1 11 2019-12-31 11:49:27 1 15 2019-12-30 15:49:27 1 11 2019-12-30 15:49:27 2 1 2019-12-30 15:59:27 1 11 2019-12-30 15:59:27 2 1 2019-12-30 16:04:27 1 10 2019-12-30 16:04:27 2 1 2019-12-30 16:14:27 1 10 2019-12-30 16:24:27 1 11 2019-12-30 16:54:27 1 11 2019-12-30 16:59:27 1 11 2019-12-30 17:19:27 1 15 2019-12-30 17:19:27 2 1 2019-12-30 17:29:27 1 14 2019-12-30 17:29:27 2 2 2019-12-30 18:09:27 1 17 2019-12-30 18:09:27 2 1 2019-12-30 18:14:27 1 14 2019-12-30 18:14:27 2 1 2019-12-30 18:24:27 1 14 2019-12-30 18:29:27 1 16 2019-12-30 18:44:27 1 20 2019-12-30 18:59:27 1 21 2019-12-30 19:09:27 1 16 2019-12-30 19:24:27 1 19 2019-12-30 19:29:27 1 18 2019-12-30 19:44:27 1 17 2019-12-30 20:44:27 1 14 2019-12-30 20:59:27 1 17 2019-12-30 21:04:27 1 14 2019-12-30 21:14:27 1 17 2019-12-30 21:19:27 1 18 2019-12-30 21:54:27 1 18 2019-12-30 21:59:27 1 18 2019-12-30 22:04:27 1 16 2019-12-30 22:59:27 1 18 2019-12-30 23:44:27 1 12 2019-12-31 00:14:27 1 12 2019-12-31 00:24:27 1 12 2019-12-31 00:49:27 1 11 2019-12-31 00:59:27 1 11 2019-12-31 01:04:27 1 12 2019-12-31 01:09:27 1 11 2019-12-31 01:14:27 1 10 2019-12-31 01:24:28 1 9 2019-12-31 01:29:27 1 10 2019-12-31 01:39:27 1 11 2019-12-31 01:44:27 1 11 2019-12-31 01:44:27 2 1 2019-12-31 02:14:27 1 9 2019-12-31 02:19:27 1 9 2019-12-31 02:24:27 1 9 2019-12-31 02:29:27 1 8 2019-12-31 02:39:27 1 8 2019-12-31 02:39:27 2 1 2019-12-31 03:09:27 1 7 2019-12-31 03:09:27 2 1 2019-12-31 03:14:27 1 7 2019-12-31 03:14:27 2 1 2019-12-31 03:19:27 1 7 2019-12-31 03:19:27 2 1 2019-12-31 04:49:27 1 7 2019-12-31 04:49:27 2 1 2019-12-31 04:54:27 1 7 2019-12-31 04:54:27 2 1 2019-12-31 04:59:27 1 7 2019-12-31 04:59:27 2 1 2019-12-31 05:09:27 1 8 2019-12-31 05:09:27 2 1 2019-12-31 05:14:27 1 8 2019-12-31 05:14:27 2 1 2019-12-31 05:19:27 1 8 2019-12-31 05:19:27 2 1 2019-12-31 05:44:27 1 8 2019-12-31 05:59:27 1 7 2019-12-31 06:04:27 1 7 2019-12-31 06:34:27 1 11 2019-12-31 06:39:27 1 12 2019-12-31 06:54:27 1 11 2019-12-31 06:59:27 1 11 2019-12-31 07:04:27 1 11 2019-12-31 07:19:28 1 13 2019-12-31 07:34:27 1 11 2019-12-31 07:44:27 1 11 2019-12-31 07:49:27 1 11 2019-12-31 07:54:27 1 11 2019-12-31 08:54:27 1 13 2019-12-31 08:59:27 1 13 2019-12-31 09:04:27 1 13 2019-12-31 09:14:27 1 14 2019-12-31 09:19:27 1 13 2019-12-31 09:39:27 1 13 2019-12-31 10:04:27 1 10 2019-12-31 10:09:27 1 9 2019-12-31 10:39:27 1 12 2019-12-31 10:59:27 1 8 2019-12-31 11:19:27 1 11 \. -- -- Data for Name: ippool; Type: TABLE DATA; Schema: public; Owner: ibs -- COPY ippool (ippool_id, ippool_name, ippool_comment) FROM stdin; \. -- -- Data for Name: ippool_ips; Type: TABLE DATA; Schema: public; Owner: ibs -- COPY ippool_ips (ippool_id, ip) FROM stdin; \. -- -- Data for Name: normal_users; Type: TABLE DATA; Schema: public; Owner: ibs -- COPY normal_users (user_id, normal_username, normal_password) FROM stdin; 462 arman1 1621 464 abbasaskari 4622 466 rasoul56 6756 468 farhad1 3232 205 farshid 7226 470 musa 8746 472 rezasekonji 0496 711 yarmohamadi7916 7916 474 kamali1 6960 476 sade sadegh 212 alinezhad 6259 213 mohammadi 4042 214 ali 0182 477 mehran 6147 479 minaghorbani 5106 481 malekpoir 0185 220 aminvpn amin1445 224 nader 3291 483 arash 3837 361 amirabbas 1339 485 houshang 7617 232 iranmanesh 7338 487 alirezazadeh 6144 734 kharazmi2920 2920 488 hamid 1430 490 rajaei 4258 247 ahmadi 8441 498 hamid.e 5564 736 meghdad1616 1616 738 hashtadani5 8732 740 ghaderpour6649 66449 742 esmaeili1522 1522 744 hamid1430 1430 746 askarzadeh9013 9013 748 daryaei1233 1233 750 seyedrezaei2572 2572 499 afarin1 0023 501 zare 0753 503 naeimeh 2999 506 seyedmostafa 5980 508 amin.saeedi 5595 510 ayobi 8973 282 sekonji 6572 512 kordestani 8006 514 mosi 6862 288 asadi 9428 290 reza2742 2742 292 arabpour 3868 294 mahbobeh 8264 296 ahmadipour 8593 516 mohammadjavad 1530 518 abravesh 9078 306 forozande 3622 520 sedighe 2395 522 hashtadani3 8732 311 sobhan 5100 526 ehsun 4060 528 alihosseini1 9128 530 asma 2026 322 majid 5560 532 asma2026 2026 325 alireza 3754 327 amir 4935 329 kazemi 0502 331 avaanna 8408 333 mamal 6940 335 amirhosein 5591 337 ebrahimi 8307 339 shahrooz 2244 534 mohammadi1 7446 536 irannezhad 2283 538 sabaghnezhad 4405 347 omidsafari 1148 545 rezaei 8208 351 shokokian 4048 542 rostami 1757 652 laleh 0779 548 roka 8487 359 mrg 1568 551 milan 5983 554 Mahin 4774 556 hamidsalari 7456 558 hamidsalari1 7456 370 rasoul 6386 372 mahdixz 1424440 568 mohsenaskari 3588 375 jamali 3350 377 shirin 6961 379 khalili 3788 562 barzegar 4774 390 sharifzadeh 1002 385 sadegh sadegh 392 mammad mammad12 393 musanejad 4081 395 bcboard bc1445 398 alemzadeh 2862 400 madadi2 8055 402 alireza1 2931 408 mansur 2491 410 miladj 3316862 411 fariba 7381 412 mirzaei 6046 414 mohammadali 9820 416 alipour 1506 418 karamozian 8798 420 askari 7200 422 tahmasebi 1616 424 hashtadani 8732 426 mhamidreza81 6462 428 mohammadreza 6462 430 morteza 4424 432 alihosseini 9128 434 safarpour 0638 436 mahyaarabpour 3606 441 dehghani 5044 443 hamidehfatemi 0050 445 mehdizare 0816 447 fallahi 3914 449 hoorieh 2821 451 mohammadmahdi 8179 453 Alirezaza Alireza 454 heydari1 7882 456 mahdiyehalizadeh 2194 458 sadegh1 sadegh 459 alirezaza Alireza 461 alirr alireza 564 hosseine 1816 566 jafari 9816 570 moradi 8595 574 mansour 9414 576 rahmani 7631 578 khademi 3291 581 saeed9658 9658 583 yahodi 2073 585 vanila 4042 587 farhad2 3232 589 kamali2 6960 591 godarzi 2316 593 yarmohamadi 7916 595 sekonji3 0496 597 forozandeh1 3622 599 zotaher 6507 607 alikomsari 0239 609 hassan 1087 611 yaghobi 7322 613 mehrpouyan 7228 615 meysam 3891 617 hasanahmadi 6288 619 kalantary 6037 621 alihajmalek 1706 622 fezealinaghi 8746 623 hashtadani4 8732 625 nilufarrajaei 3445 627 rahim 2503 629 sarcheshmepour 3205 631 ahmadi1 8441 633 hadibarzegar 5587 635 hatami 0083 637 pourshad 2057 639 zahra1101 1101 641 gohari1 6674 643 bazgir 8805 645 shadkam 9870 647 ghiyasi 0650 649 tahmorsi 8952 544 mostafa_es78 13781378 654 nekheei 5323 656 khalili2 3788 658 komeil 0600 660 majidsarmast 5100 663 ebrahimpour3 7072 665 hajghani 5627 667 saeeddamghani 9378 668 askari5795 5795 670 aminvpn2 amin1445 671 soleymani5056 5056 673 rashidi4690 4690 675 kalantary6037 6037 677 yosefi4232 4232 679 motamedi9772 9772 681 mirzaei6046 6046 683 kamali3 6960 685 moslem6940 6940 687 farhad3 3232 689 sekonji0496 0496 691 esmaeilkazemi 4749 692 shahruz 123456 694 alipour1506 1506 696 charkhandaz3496 3496 698 shaghayegh2701 2701 700 khaleghi2406 2406 703 mohammadabadi 0193 707 dortaj3792 3792 709 iranmanesh4443 4443 713 yazdani6029 6029 716 teymori5660 5660 718 akbari0070 0070 720 khorasani9135 9135 722 morteza4424 4424 724 barzegar8595 8595 726 mosavi0713 0713 728 aminvpnipad amin1445 730 aminvpns6 amin1445 732 aminvpnpc amin1445 752 abdolahi0311 0311 754 amirzadeh1339 1339 756 heydary4246 4246 758 dorani4942 4942 760 hosseini0093 0093 763 mehrpoyan101 7226 765 amin.saeedi2 qwerty2 768 nasiripour0935 0935 771 mhamidreza98 1007 773 amiresmaeili0609 0609 775 safari2994 2994 777 hamid1 0106 779 hamid2 0106 782 shafiei3462 3462 784 shiralinezhad6213 6213 786 barzegar8120 8120 788 javadi7073 7073 \. -- -- Data for Name: persistent_lan_users; Type: TABLE DATA; Schema: public; Owner: ibs -- COPY persistent_lan_users (user_id, persistent_lan_mac, persistent_lan_ip, persistent_lan_ras_id) FROM stdin; \. -- -- Data for Name: ras; Type: TABLE DATA; Schema: public; Owner: ibs -- COPY ras (ras_id, ras_description, ras_ip, ras_type, radius_secret, active, comment) FROM stdin; 2 mic 138.201.2.124 Mikrotik 1445 t 3 win 138.201.2.123 pppd 1445 f 1 Local 127.0.0.1 pppd parsavps t 4 pg12 198.143.182.12 pppd 1445 t \. -- -- Data for Name: ras_attrs; Type: TABLE DATA; Schema: public; Owner: ibs -- COPY ras_attrs (ras_id, attr_name, attr_value) FROM stdin; 2 mikrotik_ssh_username data#123 \. -- -- Data for Name: ras_ippools; Type: TABLE DATA; Schema: public; Owner: ibs -- COPY ras_ippools (serial, ras_id, ippool_id) FROM stdin; \. -- -- Data for Name: ras_ports; Type: TABLE DATA; Schema: public; Owner: ibs -- COPY ras_ports (ras_id, port_name, phone, type, comment) FROM stdin; \. -- -- Data for Name: tariff_prefix_list; Type: TABLE DATA; Schema: public; Owner: ibs -- COPY tariff_prefix_list (tariff_id, prefix_id, prefix_code, prefix_name, cpm, free_seconds, min_duration, round_to, min_chargable_duration) FROM stdin; \. -- -- Data for Name: user_attrs; Type: TABLE DATA; Schema: public; Owner: ibs -- COPY user_attrs (user_id, attr_name, attr_value) FROM stdin; 462 first_login 1568472585 464 first_login 1568527407 466 first_login 1568565113 311 rel_exp_date 15552000 468 first_login 1568651600 205 abs_exp_date 1564916640 470 first_login 1568732203 472 first_login 1568818052 707 first_login 1575351374 474 first_login 1568870646 212 abs_exp_date 1570190880 213 abs_exp_date 1570190940 214 abs_exp_date 1570191000 220 first_login 1562412526 224 first_login 1562430489 212 first_login 1562435161 476 first_login 1568980473 477 first_login 1569069979 479 first_login 1569255106 483 first_login 1569255784 485 first_login 1569256290 487 multi_login 4 213 first_login 1562478793 487 first_login 1569256103 481 first_login 1569256636 361 first_login 1565275202 488 first_login 1569333167 490 first_login 1569345386 499 first_login 1569401155 232 first_login 1562519881 498 first_login 1569410915 501 first_login 1569418572 503 first_login 1569430793 506 first_login 1569735996 631 first_login 1572759098 247 first_login 1563025208 510 first_login 1569766554 512 first_login 1569820730 514 first_login 1569829240 516 first_login 1569853016 518 first_login 1569854754 520 first_login 1569909673 522 first_login 1569994169 528 first_login 1570110972 288 first_login 1563435929 290 first_login 1563602625 292 first_login 1563639737 294 first_login 1563685180 296 first_login 1563697458 532 first_login 1570122832 526 first_login 1570172518 306 first_login 1563948911 536 first_login 1570294345 538 first_login 1570295168 311 first_login 1564033317 542 first_login 1570376836 656 first_login 1573651197 545 first_login 1570603015 322 first_login 1564411978 548 first_login 1570635052 551 first_login 1570727073 325 first_login 1564467066 327 first_login 1564559945 329 first_login 1564584075 331 first_login 1564587798 333 first_login 1564666985 335 first_login 1564670540 337 first_login 1564671130 339 first_login 1564672969 554 first_login 1570881406 556 first_login 1570890956 558 first_login 1570898295 562 first_login 1571043729 347 first_login 1565020410 564 first_login 1571062325 351 first_login 1565161528 566 first_login 1571068637 568 first_login 1571151767 570 first_login 1571248215 359 first_login 1565197765 574 first_login 1571478756 576 first_login 1571551779 578 first_login 1571553081 581 first_login 1571554031 372 first_login 1565627118 583 first_login 1571563773 375 first_login 1565712140 377 first_login 1565716614 379 first_login 1565787579 585 first_login 1571578614 641 first_login 1572972381 393 first_login 1566625679 385 first_login 1565893721 395 first_login 1566669546 398 first_login 1566911016 402 first_login 1567010791 400 first_login 1567010167 408 first_login 1567063919 411 first_login 1567090137 412 first_login 1567095346 414 first_login 1567098969 416 first_login 1567228455 418 first_login 1567239143 420 first_login 1567262266 422 first_login 1567265649 424 first_login 1567312110 428 first_login 1567325957 734 first_login 1575708092 430 first_login 1567401207 432 first_login 1567428515 434 first_login 1567432198 436 first_login 1567440279 441 first_login 1567514729 443 first_login 1567585014 447 first_login 1567664819 445 first_login 1567664452 449 first_login 1567671683 451 first_login 1567692432 453 first_login 1567778608 454 first_login 1567866054 456 first_login 1567873626 458 first_login 1567950569 581 rel_exp_date 5184000 461 first_login 1568315946 587 first_login 1571593694 589 first_login 1571641222 591 first_login 1571759262 593 first_login 1571761937 595 first_login 1571821755 597 first_login 1571898551 607 first_login 1571934373 599 first_login 1571930297 609 first_login 1572070448 611 first_login 1572095953 613 first_login 1572096946 488 rel_exp_date 5184000 615 first_login 1572106416 617 first_login 1572246497 619 first_login 1572250225 621 first_login 1572281699 622 first_login 1572507748 623 first_login 1572672844 625 first_login 1572673123 627 first_login 1572686117 508 first_login 1572694462 629 first_login 1572701374 633 first_login 1572768326 635 first_login 1572792561 637 first_login 1572868420 639 first_login 1572879620 643 first_login 1572977125 645 first_login 1573110792 647 first_login 1573373790 649 first_login 1573380420 652 first_login 1573546867 544 first_login 1573506014 654 first_login 1573550819 658 first_login 1573662602 660 first_login 1573747198 663 first_login 1573896266 665 first_login 1574532041 667 multi_login 6 667 first_login 1574747733 668 first_login 1574786459 670 first_login 1574925979 671 first_login 1574929201 673 first_login 1574931727 675 first_login 1574931937 677 first_login 1574952493 679 first_login 1574954982 681 first_login 1575002962 683 first_login 1575096589 685 first_login 1575124298 687 first_login 1575139391 459 first_login 1575141178 689 first_login 1575209556 691 first_login 1575214641 692 first_login 1575223001 694 first_login 1575265942 696 first_login 1575270174 700 first_login 1575301159 698 first_login 1575301487 703 first_login 1575304273 709 first_login 1575442979 711 first_login 1575475207 713 first_login 1575480269 716 first_login 1575481375 718 first_login 1575481884 720 first_login 1575533318 722 first_login 1575533239 726 first_login 1575555045 724 first_login 1575554859 730 first_login 1575630241 728 first_login 1575657414 736 first_login 1575820541 392 first_login 1575831298 738 first_login 1575870232 740 first_login 1575879458 742 first_login 1575986228 744 first_login 1575989605 746 first_login 1576053620 748 first_login 1576129472 732 first_login 1576144048 750 first_login 1576166685 752 first_login 1576508863 754 first_login 1576681742 756 first_login 1576738914 758 first_login 1576937795 760 first_login 1576938455 763 first_login 1577027064 765 first_login 1577197909 768 first_login 1577376051 771 first_login 1577511716 773 first_login 1577518468 777 first_login 1577552351 779 first_login 1577552359 775 first_login 1577593735 782 first_login 1577602170 784 first_login 1577712628 786 first_login 1577733886 788 first_login 1577778013 \. -- -- Data for Name: user_audit_log; Type: TABLE DATA; Schema: public; Owner: ibs -- COPY user_audit_log (user_audit_log, admin_id, is_user, object_id, attr_name, old_value, new_value, change_time) FROM stdin; 1 0 f 1 normal_charge _NOVALUE_ 24Hours 2014-09-22 21:04:39.913541 2 0 f 1 multi_login _NOVALUE_ 32 2014-09-22 21:04:56.524287 572 1 t 241 normal_username _NOVALUE_ najafi 2019-07-13 11:17:26.830975 4 0 f 2 rel_exp_date _NOVALUE_ 31 Days 2015-05-19 17:04:47.34739 5 0 f 2 normal_charge _NOVALUE_ 24Hours 2015-05-19 17:05:30.235506 6 0 f 3 rel_exp_date _NOVALUE_ 2 Months 2015-05-19 17:06:06.179579 7 0 f 3 normal_charge _NOVALUE_ 24Hours 2015-05-19 17:06:14.343383 8 0 f 2 rel_exp_date 31 Days 1 Months 2015-05-19 17:06:29.304421 9 0 f 4 rel_exp_date _NOVALUE_ 3 Months 2015-05-19 17:06:46.848287 10 0 f 4 normal_charge _NOVALUE_ 24Hours 2015-05-19 17:06:54.378842 526 0 t 202 normal_username _NOVALUE_ goli 2019-07-06 15:12:49.442911 527 0 t 202 abs_exp_date _NOVALUE_ 2019-08-08 15:22 2019-07-06 15:15:50.499866 530 0 t 204 abs_exp_date _NOVALUE_ 2019-08-04 15:27 2019-07-06 15:21:06.340115 837 1 t 711 normal_username _NOVALUE_ yarmohamadi7916 2019-12-04 19:27:59.051267 543 0 t 212 normal_username _NOVALUE_ alinezhad 2019-07-06 15:30:16.99158 544 0 t 213 normal_username _NOVALUE_ mohammadi 2019-07-06 15:30:16.99158 545 0 t 214 normal_username _NOVALUE_ ali 2019-07-06 15:30:16.99158 547 0 t 213 abs_exp_date _NOVALUE_ 2019-10-04 15:39 2019-07-06 15:33:00.20097 555 0 t 203 owner system mhamidreza81 2019-07-06 15:39:58.666549 576 1 t 249 normal_username _NOVALUE_ golmahammad 2019-07-13 19:23:59.163596 559 0 t 220 normal_username _NOVALUE_ aminvpn 2019-07-06 15:58:29.846919 561 0 f 4 multi_login _NOVALUE_ 2 2019-07-06 20:44:17.004462 651 1 t 361 normal_username _NOVALUE_ amirabbas 2019-08-08 19:04:57.708782 567 1 t 232 normal_username _NOVALUE_ iranmanesh 2019-07-07 21:10:31.533181 569 1 t 234 normal_username _NOVALUE_ zoha 2019-07-10 18:00:56.490699 570 1 t 236 normal_username _NOVALUE_ mahdi 2019-07-11 11:00:46.698547 577 0 t 251 normal_username _NOVALUE_ amin.insta01 2019-07-14 06:24:34.300534 848 1 t 734 normal_username _NOVALUE_ kharazmi2920 2019-12-07 12:10:15.887685 849 1 t 736 normal_username _NOVALUE_ meghdad1616 2019-12-08 19:23:11.6422 850 1 t 738 normal_username _NOVALUE_ hashtadani5 2019-12-09 09:12:48.763912 851 1 t 740 normal_username _NOVALUE_ ghaderpour6649 2019-12-09 11:45:09.869536 852 1 t 742 normal_username _NOVALUE_ esmaeili1522 2019-12-10 17:24:15.416191 853 1 t 744 normal_username _NOVALUE_ hamid1430 2019-12-10 18:23:15.138084 854 1 t 746 normal_username _NOVALUE_ askarzadeh9013 2019-12-11 12:09:51.270041 855 1 t 748 normal_username _NOVALUE_ daryaei1233 2019-12-12 09:13:30.062808 856 1 t 750 normal_username _NOVALUE_ seyedrezaei2572 2019-12-12 19:32:21.924485 587 0 t 261 normal_username _NOVALUE_ amin.insta11 2019-07-14 06:24:34.300534 589 0 t 263 normal_username _NOVALUE_ amin.insta13 2019-07-14 06:24:34.300534 591 0 t 265 normal_username _NOVALUE_ amin.insta15 2019-07-14 06:24:34.300534 595 0 t 269 normal_username _NOVALUE_ amin.insta19 2019-07-14 06:24:34.300534 597 0 t 271 normal_username _NOVALUE_ amin.insta21 2019-07-14 06:24:34.300534 598 0 t 272 normal_username _NOVALUE_ amin.insta22 2019-07-14 06:24:34.300534 607 1 t 282 normal_username _NOVALUE_ sekonji 2019-07-14 19:13:24.701679 608 1 t 284 normal_username _NOVALUE_ samira 2019-07-17 12:35:37.934443 610 1 t 288 normal_username _NOVALUE_ asadi 2019-07-18 12:13:24.547855 611 1 t 290 normal_username _NOVALUE_ reza2742 2019-07-20 10:24:34.638199 613 1 t 294 normal_username _NOVALUE_ mahbobeh 2019-07-21 09:27:42.953302 617 1 t 302 normal_username _NOVALUE_ pouria 2019-07-22 12:46:07.588578 618 1 t 304 normal_username _NOVALUE_ soleymani 2019-07-23 11:59:34.828221 619 1 t 306 normal_username _NOVALUE_ forozande 2019-07-24 10:42:44.431794 621 0 t 310 normal_username _NOVALUE_ soblan 2019-07-25 10:03:15.161517 622 0 t 310 multi_login 2 4 2019-07-25 10:03:43.504104 624 1 t 312 normal_username _NOVALUE_ mahdavi 2019-07-27 13:11:56.820321 628 1 t 320 normal_username _NOVALUE_ madadi 2019-07-29 12:41:39.638666 632 1 t 325 normal_username _NOVALUE_ alireza 2019-07-30 10:38:52.676107 633 1 t 327 normal_username _NOVALUE_ amir 2019-07-31 12:27:03.956229 634 1 t 329 normal_username _NOVALUE_ kazemi 2019-07-31 19:08:32.074504 635 1 t 331 normal_username _NOVALUE_ avaanna 2019-07-31 20:10:52.446647 636 1 t 333 normal_username _NOVALUE_ mamal 2019-08-01 18:10:20.834529 640 1 t 341 normal_username _NOVALUE_ haniyeh 2019-08-03 19:02:31.685166 641 1 t 343 normal_username _NOVALUE_ afarin 2019-08-04 12:57:13.991462 642 2 t 346 normal_username _NOVALUE_ caferibar 2019-08-05 12:08:40.484659 645 1 t 349 normal_username _NOVALUE_ kamali 2019-08-06 12:44:12.46114 646 1 t 351 normal_username _NOVALUE_ shokokian 2019-08-07 11:28:57.719464 648 1 t 355 normal_username _NOVALUE_ heydari 2019-08-07 19:22:18.830933 649 1 t 357 normal_username _NOVALUE_ arman 2019-08-07 20:13:39.603684 653 1 t 365 normal_username _NOVALUE_ amirreza 2019-08-10 11:35:07.15646 654 2 t 367 normal_username _NOVALUE_ ksrkrgr 2019-08-10 20:03:14.788128 655 1 t 368 normal_username _NOVALUE_ mitra 2019-08-11 12:39:18.364645 657 0 t 372 normal_username _NOVALUE_ mahdixz 2019-08-12 20:53:45.834972 658 1 t 373 normal_username _NOVALUE_ shojaei 2019-08-13 10:27:40.577265 660 1 t 377 normal_username _NOVALUE_ shirin 2019-08-13 21:45:33.809216 661 1 t 379 normal_username _NOVALUE_ khalili 2019-08-14 17:29:31.500162 667 1 t 390 normal_username _NOVALUE_ sharifzadeh 2019-08-22 13:10:41.764816 573 1 t 243 normal_username _NOVALUE_ reza 2019-07-13 16:50:28.661485 528 0 t 203 normal_username _NOVALUE_ kohestani 2019-07-06 15:17:24.947595 529 0 t 204 normal_username _NOVALUE_ ahmad 2019-07-06 15:17:24.947595 538 0 t 205 abs_exp_date _NOVALUE_ 2019-08-04 15:34 2019-07-06 15:27:23.174025 540 0 t 207 abs_exp_date _NOVALUE_ 2019-08-04 15:34 2019-07-06 15:27:51.380386 546 0 t 212 abs_exp_date _NOVALUE_ 2019-10-04 15:38 2019-07-06 15:32:43.041734 549 0 t 216 normal_username _NOVALUE_ ksr 2019-07-06 15:34:00.935533 550 0 t 217 normal_username _NOVALUE_ alirezazamani 2019-07-06 15:34:00.935533 551 0 t 218 normal_username _NOVALUE_ mobina 2019-07-06 15:34:00.935533 100 0 t 55 normal_username _NOVALUE_ ramin 2015-08-18 21:13:10.51219 552 0 t 212 owner system mhamidreza81 2019-07-06 15:39:33.409195 554 0 t 214 owner system mhamidreza81 2019-07-06 15:39:51.018535 566 1 t 230 normal_username _NOVALUE_ rashidi 2019-07-07 20:54:27.139835 568 2 t 217 multi_login 2 5 2019-07-07 22:27:45.610925 571 1 t 239 normal_username _NOVALUE_ arshida 2019-07-11 20:09:57.494976 575 1 t 247 normal_username _NOVALUE_ ahmadi 2019-07-13 18:07:35.497409 609 1 t 286 normal_username _NOVALUE_ hamideh 2019-07-17 19:43:26.007438 612 1 t 292 normal_username _NOVALUE_ arabpour 2019-07-20 20:48:21.582361 614 1 t 296 normal_username _NOVALUE_ ahmadipour 2019-07-21 12:52:28.722415 620 1 t 308 normal_username _NOVALUE_ abdilahyar 2019-07-24 11:09:32.800021 623 0 t 311 normal_username _NOVALUE_ sobhan 2019-07-25 10:11:51.111054 625 1 t 314 normal_username _NOVALUE_ shahriyar 2019-07-27 18:25:44.390152 629 1 t 322 normal_username _NOVALUE_ majid 2019-07-29 19:16:34.073682 637 1 t 335 normal_username _NOVALUE_ amirhosein 2019-08-01 19:09:26.115061 115 0 t 58 normal_username _NOVALUE_ mostafa 2015-09-06 15:38:24.622408 638 1 t 337 normal_username _NOVALUE_ ebrahimi 2019-08-01 19:11:44.073401 643 2 t 346 multi_login 2 5 2019-08-05 12:09:08.524367 647 1 t 353 normal_username _NOVALUE_ mohammadaskari 2019-08-07 18:21:08.159697 119 0 t 60 normal_username _NOVALUE_ sd 2015-09-20 11:52:11.187597 652 1 t 363 normal_username _NOVALUE_ farhad 2019-08-08 20:47:29.230039 656 1 t 370 normal_username _NOVALUE_ rasoul 2019-08-11 21:08:39.882114 659 1 t 375 normal_username _NOVALUE_ jamali 2019-08-13 20:30:27.579948 662 1 t 381 normal_username _NOVALUE_ heydarizadeh 2019-08-14 17:55:16.493752 664 2 t 385 normal_username _NOVALUE_ sadegh 2019-08-15 15:02:06.916199 668 0 t 392 normal_username _NOVALUE_ mammad 2019-08-23 22:34:47.841582 669 1 t 393 normal_username _NOVALUE_ musanejad 2019-08-24 10:16:43.290753 127 0 t 61 normal_username _NOVALUE_ alireza4 2015-09-26 16:46:14.009369 671 1 t 398 normal_username _NOVALUE_ alemzadeh 2019-08-27 17:31:51.69884 672 1 t 400 normal_username _NOVALUE_ madadi2 2019-08-28 20:29:43.765022 674 1 t 408 normal_username _NOVALUE_ mansur 2019-08-29 11:52:35.966267 676 1 t 411 normal_username _NOVALUE_ fariba 2019-08-29 19:01:07.248518 679 1 t 416 normal_username _NOVALUE_ alipour 2019-08-31 08:43:46.531875 683 1 t 424 normal_username _NOVALUE_ hashtadani 2019-09-01 08:56:51.680569 684 1 t 426 normal_username _NOVALUE_ mhamidreza81 2019-09-01 12:28:09.568098 685 1 t 428 normal_username _NOVALUE_ mohammadreza 2019-09-01 12:48:45.752753 686 1 t 430 normal_username _NOVALUE_ morteza 2019-09-02 09:40:36.251151 688 1 t 434 normal_username _NOVALUE_ safarpour 2019-09-02 18:17:29.939243 691 1 t 441 normal_username _NOVALUE_ dehghani 2019-09-03 16:36:19.870779 692 1 t 443 normal_username _NOVALUE_ hamidehfatemi 2019-09-04 11:54:51.433307 693 1 t 445 normal_username _NOVALUE_ mehdizare 2019-09-05 10:45:15.082519 697 0 f 5 normal_charge _NOVALUE_ 24Hours 2019-09-05 20:54:23.505138 698 0 f 5 rel_exp_date _NOVALUE_ 6 Months 2019-09-05 20:54:56.601738 699 2 t 453 normal_username _NOVALUE_ Alirezaza 2019-09-06 18:32:51.044179 700 1 t 454 normal_username _NOVALUE_ heydari1 2019-09-07 18:43:42.424492 702 2 t 458 normal_username _NOVALUE_ sadegh1 2019-09-08 17:56:36.681287 703 2 t 459 normal_username _NOVALUE_ alirezaza 2019-09-10 17:06:24.013472 704 2 t 461 normal_username _NOVALUE_ alirr 2019-09-12 23:47:05.5983 705 1 t 462 normal_username _NOVALUE_ arman1 2019-09-14 19:18:55.091293 706 1 t 464 normal_username _NOVALUE_ abbasaskari 2019-09-15 10:31:55.57212 708 0 t 311 rel_exp_date 3 Months 6 Months 2019-09-16 09:27:47.871185 710 1 t 470 normal_username _NOVALUE_ musa 2019-09-17 19:21:05.290915 711 1 t 472 normal_username _NOVALUE_ rezasekonji 2019-09-18 19:06:44.566182 712 1 t 474 normal_username _NOVALUE_ kamali1 2019-09-19 09:52:11.090688 713 2 t 476 normal_username _NOVALUE_ sade 2019-09-20 16:13:42.134454 714 1 t 477 normal_username _NOVALUE_ mehran 2019-09-21 17:10:43.756645 715 1 t 479 normal_username _NOVALUE_ minaghorbani 2019-09-23 19:33:01.578814 721 1 t 488 normal_username _NOVALUE_ hamid 2019-09-24 16:59:39.405912 723 0 t 498 normal_username _NOVALUE_ hamid.e 2019-09-25 08:44:27.467046 724 1 t 499 normal_username _NOVALUE_ afarin1 2019-09-25 12:14:58.266675 725 1 t 501 normal_username _NOVALUE_ zare 2019-09-25 17:02:09.590917 727 1 t 506 normal_username _NOVALUE_ seyedmostafa 2019-09-29 09:16:25.098542 728 0 t 508 normal_username _NOVALUE_ amin.saeedi 2019-09-29 13:02:38.133426 729 1 t 510 normal_username _NOVALUE_ ayobi 2019-09-29 17:44:51.217629 730 1 t 512 normal_username _NOVALUE_ kordestani 2019-09-30 08:37:23.808327 734 1 t 520 normal_username _NOVALUE_ sedighe 2019-10-01 08:45:13.464101 735 1 t 522 normal_username _NOVALUE_ hashtadani3 2019-10-02 08:57:05.216152 736 1 t 526 normal_username _NOVALUE_ ehsun 2019-10-03 10:15:21.460452 740 1 t 534 normal_username _NOVALUE_ mohammadi1 2019-10-05 18:50:44.182362 169 0 t 79 normal_username _NOVALUE_ shahrooz 2015-11-24 18:26:08.750511 170 0 t 79 first_login 2015-11-24 18:45 _NOVALUE_ 2015-11-24 19:36:53.60816 742 1 t 538 normal_username _NOVALUE_ sabaghnezhad 2019-10-05 20:31:03.946257 746 1 t 545 normal_username _NOVALUE_ rezaei 2019-10-09 09:59:45.398621 744 1 t 542 normal_username _NOVALUE_ rostami 2019-10-06 19:07:09.560427 747 1 t 548 normal_username _NOVALUE_ roka 2019-10-09 18:42:14.276625 748 1 t 551 normal_username _NOVALUE_ milan 2019-10-10 20:30:27.632596 749 1 t 554 normal_username _NOVALUE_ Mahin 2019-10-11 23:43:17.335266 750 1 t 556 normal_username _NOVALUE_ hamidsalari 2019-10-12 17:58:48.897379 756 1 t 568 normal_username _NOVALUE_ mohsenaskari 2019-10-15 18:30:15.078473 757 1 t 570 normal_username _NOVALUE_ moradi 2019-10-16 21:10:19.12082 531 0 t 205 normal_username _NOVALUE_ farshid 2019-07-06 15:25:55.580399 532 0 t 206 normal_username _NOVALUE_ dehghan 2019-07-06 15:25:55.580399 533 0 t 207 normal_username _NOVALUE_ nazanin 2019-07-06 15:25:55.580399 835 1 t 707 normal_username _NOVALUE_ dortaj3792 2019-12-03 09:03:31.813143 535 0 t 209 normal_username _NOVALUE_ kasra 2019-07-06 15:25:55.580399 536 0 t 210 normal_username _NOVALUE_ aminsaeedi 2019-07-06 15:25:55.580399 537 0 t 209 abs_exp_date _NOVALUE_ 2019-08-04 15:33 2019-07-06 15:26:31.704657 539 0 t 206 abs_exp_date _NOVALUE_ 2019-08-04 15:34 2019-07-06 15:27:37.215685 542 0 t 210 abs_exp_date _NOVALUE_ 2019-08-04 15:35 2019-07-06 15:28:15.247619 548 0 t 214 abs_exp_date _NOVALUE_ 2019-10-04 15:40 2019-07-06 15:33:10.827347 553 0 t 213 owner system mhamidreza81 2019-07-06 15:39:42.073019 556 0 t 204 owner system mhamidreza81 2019-07-06 15:40:06.288274 557 0 t 210 owner mhamidreza81 system 2019-07-06 15:41:17.521642 560 0 t 224 normal_username _NOVALUE_ nader 2019-07-06 20:39:10.647059 562 0 f 3 multi_login _NOVALUE_ 2 2019-07-06 20:44:40.2326 563 0 f 2 multi_login _NOVALUE_ 2 2019-07-06 20:45:04.39343 564 0 t 226 normal_username _NOVALUE_ naader 2019-07-06 20:52:23.804849 574 1 t 245 normal_username _NOVALUE_ tahani 2019-07-13 17:41:25.043745 630 2 t 324 normal_username _NOVALUE_ zamanialireza 2019-07-30 00:41:26.878818 627 1 t 318 normal_username _NOVALUE_ shahnaz 2019-07-27 18:53:28.973507 631 2 t 324 multi_login 2 20 2019-07-30 00:42:05.18719 639 1 t 339 normal_username _NOVALUE_ shahrooz 2019-08-01 19:52:34.404182 644 1 t 347 normal_username _NOVALUE_ omidsafari 2019-08-05 20:20:08.621127 650 1 t 359 normal_username _NOVALUE_ mrg 2019-08-07 21:36:51.981693 670 0 t 395 normal_username _NOVALUE_ bcboard 2019-08-24 21:28:17.379133 673 1 t 402 normal_username _NOVALUE_ alireza1 2019-08-28 21:12:23.594831 675 0 t 410 normal_username _NOVALUE_ miladj 2019-08-29 12:53:41.571981 677 1 t 412 normal_username _NOVALUE_ mirzaei 2019-08-29 20:36:25.49556 678 1 t 414 normal_username _NOVALUE_ mohammadali 2019-08-29 21:25:56.83783 680 1 t 418 normal_username _NOVALUE_ karamozian 2019-08-31 12:35:04.30759 682 1 t 422 normal_username _NOVALUE_ tahmasebi 2019-08-31 20:03:25.240399 687 1 t 432 normal_username _NOVALUE_ alihosseini 2019-09-02 17:13:03.192891 694 1 t 447 normal_username _NOVALUE_ fallahi 2019-09-05 10:49:24.919254 701 1 t 456 normal_username _NOVALUE_ mahdiyehalizadeh 2019-09-07 20:53:00.763377 707 1 t 466 normal_username _NOVALUE_ rasoul56 2019-09-15 20:12:55.971842 709 1 t 468 normal_username _NOVALUE_ farhad1 2019-09-16 21:02:14.448304 716 1 t 481 normal_username _NOVALUE_ malekpoir 2019-09-23 19:38:03.81201 722 1 t 490 normal_username _NOVALUE_ rajaei 2019-09-24 20:45:01.96518 726 1 t 503 normal_username _NOVALUE_ naeimeh 2019-09-25 20:17:04.645156 731 1 t 514 normal_username _NOVALUE_ mosi 2019-09-30 11:06:47.483696 732 1 t 516 normal_username _NOVALUE_ mohammadjavad 2019-09-30 17:19:47.928303 733 1 t 518 normal_username _NOVALUE_ abravesh 2019-09-30 18:02:26.019872 737 1 t 528 normal_username _NOVALUE_ alihosseini1 2019-10-03 17:23:34.642207 739 1 t 532 normal_username _NOVALUE_ asma2026 2019-10-03 20:39:47.552235 741 1 t 536 normal_username _NOVALUE_ irannezhad 2019-10-05 20:18:07.370517 745 0 t 544 normal_username _NOVALUE_ mostafa_es78 2019-10-06 19:15:44.748385 751 1 t 558 normal_username _NOVALUE_ hamidsalari1 2019-10-12 18:03:36.601586 753 1 t 562 normal_username _NOVALUE_ barzegar 2019-10-14 12:24:12.368728 755 1 t 566 normal_username _NOVALUE_ jafari 2019-10-14 19:22:58.506527 759 1 t 574 normal_username _NOVALUE_ mansour 2019-10-19 13:21:37.054365 760 1 t 576 normal_username _NOVALUE_ rahmani 2019-10-20 09:17:05.10364 229 0 t 98 normal_username _NOVALUE_ arad1 2016-02-22 06:43:25.818922 766 1 t 589 normal_username _NOVALUE_ kamali2 2019-10-21 10:29:14.014639 767 1 t 591 normal_username _NOVALUE_ godarzi 2019-10-22 19:15:39.367705 769 1 t 595 normal_username _NOVALUE_ sekonji3 2019-10-23 12:37:42.369513 770 1 t 597 normal_username _NOVALUE_ forozandeh1 2019-10-24 09:56:40.065231 773 1 t 609 normal_username _NOVALUE_ hassan 2019-10-26 09:39:16.895517 776 1 t 488 rel_exp_date 1 Months 2 Months 2019-10-26 17:13:49.888585 778 1 t 617 normal_username _NOVALUE_ hasanahmadi 2019-10-28 10:37:39.141122 781 1 t 622 normal_username _NOVALUE_ fezealinaghi 2019-10-31 11:11:29.187688 782 1 t 623 normal_username _NOVALUE_ hashtadani4 2019-11-02 09:03:19.994908 783 1 t 625 normal_username _NOVALUE_ nilufarrajaei 2019-11-02 09:08:22.592128 787 1 t 631 normal_username _NOVALUE_ ahmadi1 2019-11-03 08:58:57.770733 788 1 t 633 normal_username _NOVALUE_ hadibarzegar 2019-11-03 10:49:01.571425 790 1 t 637 normal_username _NOVALUE_ pourshad 2019-11-04 08:48:06.982598 792 0 t 392 first_login 2019-08-23 22:47 _NOVALUE_ 2019-11-04 17:57:11.290594 793 1 t 639 normal_username _NOVALUE_ zahra1101 2019-11-04 18:26:03.989796 794 1 t 641 normal_username _NOVALUE_ gohari1 2019-11-05 20:14:35.9151 795 1 t 643 normal_username _NOVALUE_ bazgir 2019-11-05 21:30:50.864677 796 1 t 645 normal_username _NOVALUE_ shadkam 2019-11-07 10:32:47.79542 797 1 t 647 normal_username _NOVALUE_ ghiyasi 2019-11-10 11:42:21.625061 799 0 t 544 rel_exp_date 1 Months 2 Months 2019-11-12 00:25:30.418019 800 0 t 544 first_login 2019-10-06 20:06 _NOVALUE_ 2019-11-12 00:25:30.418019 803 1 t 652 normal_username _NOVALUE_ laleh 2019-11-12 11:45:25.812675 805 1 t 656 normal_username _NOVALUE_ khalili2 2019-11-13 16:49:51.327248 806 1 t 658 normal_username _NOVALUE_ komeil 2019-11-13 19:51:36.548666 807 1 t 660 normal_username _NOVALUE_ majidsarmast 2019-11-14 18:15:15.169458 809 1 t 663 normal_username _NOVALUE_ ebrahimpour3 2019-11-16 12:51:59.632048 810 1 t 665 normal_username _NOVALUE_ hajghani 2019-11-16 17:44:21.592036 811 0 t 667 normal_username _NOVALUE_ saeeddamghani 2019-11-26 09:10:00.247773 814 0 t 670 normal_username _NOVALUE_ aminvpn2 2019-11-28 10:55:05.034829 816 1 t 673 normal_username _NOVALUE_ rashidi4690 2019-11-28 12:26:34.686263 818 1 t 677 normal_username _NOVALUE_ yosefi4232 2019-11-28 18:17:06.981154 819 1 t 679 normal_username _NOVALUE_ motamedi9772 2019-11-28 18:53:08.883236 820 1 t 681 normal_username _NOVALUE_ mirzaei6046 2019-11-28 19:41:30.479418 821 1 t 683 normal_username _NOVALUE_ kamali3 2019-11-30 09:34:44.749102 822 1 t 685 normal_username _NOVALUE_ moslem6940 2019-11-30 17:59:07.658713 823 1 t 687 normal_username _NOVALUE_ farhad3 2019-11-30 20:16:31.12292 681 1 t 420 normal_username _NOVALUE_ askari 2019-08-31 18:54:01.091434 689 1 t 436 normal_username _NOVALUE_ mahyaarabpour 2019-09-02 19:45:57.561676 695 1 t 449 normal_username _NOVALUE_ hoorieh 2019-09-05 12:36:15.089797 696 1 t 451 normal_username _NOVALUE_ mohammadmahdi 2019-09-05 18:31:56.083944 717 1 t 483 normal_username _NOVALUE_ arash 2019-09-23 19:43:29.36444 718 1 t 485 normal_username _NOVALUE_ houshang 2019-09-23 19:45:04.932995 719 0 t 487 normal_username _NOVALUE_ alirezazadeh 2019-09-23 19:57:45.906096 720 0 t 487 multi_login _NOVALUE_ 4 2019-09-23 20:02:42.127723 738 1 t 530 normal_username _NOVALUE_ asma 2019-10-03 20:36:19.912077 754 1 t 564 normal_username _NOVALUE_ hosseine 2019-10-14 17:41:03.729488 761 1 t 578 normal_username _NOVALUE_ khademi 2019-10-20 10:01:16.684207 762 1 t 581 normal_username _NOVALUE_ saeed9658 2019-10-20 10:12:40.677204 763 1 t 583 normal_username _NOVALUE_ yahodi 2019-10-20 12:58:00.718624 764 1 t 585 normal_username _NOVALUE_ vanila 2019-10-20 17:04:03.826996 768 1 t 593 normal_username _NOVALUE_ yarmohamadi 2019-10-22 19:40:15.799007 771 1 t 599 normal_username _NOVALUE_ zotaher 2019-10-24 18:46:05.000761 774 1 t 611 normal_username _NOVALUE_ yaghobi 2019-10-26 16:36:03.052194 779 1 t 619 normal_username _NOVALUE_ kalantary 2019-10-28 10:54:03.978453 780 1 t 621 normal_username _NOVALUE_ alihajmalek 2019-10-28 20:17:13.43404 784 1 t 627 normal_username _NOVALUE_ rahim 2019-11-02 12:44:06.701865 785 0 t 508 first_login 2019-09-29 13:07 _NOVALUE_ 2019-11-02 15:02:07.204542 786 1 t 629 normal_username _NOVALUE_ sarcheshmepour 2019-11-02 16:51:59.805554 789 1 t 635 normal_username _NOVALUE_ hatami 2019-11-03 17:48:32.058224 791 0 t 392 group 1mahe 6mahe 2019-11-04 17:56:38.287992 798 1 t 649 normal_username _NOVALUE_ tahmorsi 2019-11-10 13:36:14.905973 801 0 t 544 group 1mahe 2mahe 2019-11-12 00:25:59.716504 292 0 t 109 normal_username _NOVALUE_ mehrdad 2016-06-23 10:18:10.953783 802 0 t 544 rel_exp_date 2 Months _NOVALUE_ 2019-11-12 00:26:12.55482 804 1 t 654 normal_username _NOVALUE_ nekheei 2019-11-12 12:47:32.414372 808 0 t 662 normal_username _NOVALUE_ me 2019-11-14 21:31:06.617737 812 0 t 667 multi_login _NOVALUE_ 6 2019-11-26 09:21:56.620738 815 1 t 671 normal_username _NOVALUE_ soleymani5056 2019-11-28 11:36:33.250022 824 0 t 459 first_login 2019-09-12 16:23 _NOVALUE_ 2019-11-30 22:09:55.651637 825 1 t 581 rel_exp_date 1 Months 2 Months 2019-12-01 16:35:24.776625 829 1 t 694 normal_username _NOVALUE_ alipour1506 2019-12-02 09:21:11.872935 836 1 t 709 normal_username _NOVALUE_ iranmanesh4443 2019-12-03 21:07:37.67097 838 1 t 713 normal_username _NOVALUE_ yazdani6029 2019-12-04 20:23:50.025322 841 1 t 720 normal_username _NOVALUE_ khorasani9135 2019-12-05 11:36:53.491329 845 0 t 728 normal_username _NOVALUE_ aminvpnipad 2019-12-06 14:32:11.195362 846 0 t 730 normal_username _NOVALUE_ aminvpns6 2019-12-06 14:33:04.947142 765 1 t 587 normal_username _NOVALUE_ farhad2 2019-10-20 21:15:56.899591 772 0 t 607 normal_username _NOVALUE_ alikomsari 2019-10-24 19:15:16.132891 775 1 t 613 normal_username _NOVALUE_ mehrpouyan 2019-10-26 16:58:35.048835 777 1 t 615 normal_username _NOVALUE_ meysam 2019-10-26 19:12:32.952462 813 1 t 668 normal_username _NOVALUE_ askari5795 2019-11-26 20:08:16.492399 817 1 t 675 normal_username _NOVALUE_ kalantary6037 2019-11-28 12:33:00.244137 826 1 t 689 normal_username _NOVALUE_ sekonji0496 2019-12-01 17:41:49.56797 830 1 t 696 normal_username _NOVALUE_ charkhandaz3496 2019-12-02 09:45:16.978864 831 1 t 698 normal_username _NOVALUE_ shaghayegh2701 2019-12-02 19:01:29.24898 833 1 t 703 normal_username _NOVALUE_ mohammadabadi 2019-12-02 20:01:06.521574 839 1 t 716 normal_username _NOVALUE_ teymori5660 2019-12-04 21:11:08.397211 840 1 t 718 normal_username _NOVALUE_ akbari0070 2019-12-04 21:16:42.619116 842 1 t 722 normal_username _NOVALUE_ morteza4424 2019-12-05 11:37:13.769094 847 0 t 732 normal_username _NOVALUE_ aminvpnpc 2019-12-06 14:33:44.615489 397 0 t 131 normal_username _NOVALUE_ arezoo 2017-12-18 17:44:26.170195 405 0 t 136 normal_username _NOVALUE_ arman 2018-01-03 17:44:07.205939 406 0 t 137 normal_username _NOVALUE_ arman2 2018-01-03 17:46:42.125147 432 0 t 131 first_login 2017-12-18 17:45 _NOVALUE_ 2018-02-09 00:29:21.912849 440 0 t 131 first_login 2018-02-09 02:13 _NOVALUE_ 2018-04-11 09:25:20.72223 827 1 t 691 normal_username _NOVALUE_ esmaeilkazemi 2019-12-01 19:06:57.386284 828 1 t 692 normal_username _NOVALUE_ shahruz 2019-12-01 21:17:58.212115 832 1 t 700 normal_username _NOVALUE_ khaleghi2406 2019-12-02 19:04:57.735235 843 1 t 724 normal_username _NOVALUE_ barzegar8595 2019-12-05 17:29:20.799009 844 1 t 726 normal_username _NOVALUE_ mosavi0713 2019-12-05 17:31:39.886905 447 0 t 131 first_login 2018-04-11 11:07 _NOVALUE_ 2018-05-05 10:26:35.392206 452 0 t 157 normal_username _NOVALUE_ gohar 2018-05-07 14:39:28.7191 477 0 t 131 first_login 2018-05-05 20:42 _NOVALUE_ 2018-06-02 12:04:29.692474 478 0 t 131 first_login 2018-06-02 13:22 _NOVALUE_ 2018-06-03 15:29:51.246558 481 0 t 157 first_login 2018-05-07 14:46 _NOVALUE_ 2018-06-09 15:55:14.946704 489 0 t 185 normal_username _NOVALUE_ vahid 2018-06-20 19:22:58.324999 496 0 t 131 first_login 2018-06-03 16:01 _NOVALUE_ 2018-07-04 17:31:02.984678 521 0 t 131 first_login 2018-07-04 17:43 _NOVALUE_ 2018-08-13 12:15:46.608936 857 1 t 752 normal_username _NOVALUE_ abdolahi0311 2019-12-16 18:35:45.199057 858 1 t 754 normal_username _NOVALUE_ amirzadeh1339 2019-12-18 18:37:37.097263 859 1 t 756 normal_username _NOVALUE_ heydary4246 2019-12-19 10:12:27.109212 860 1 t 758 normal_username _NOVALUE_ dorani4942 2019-12-21 17:41:18.62743 861 1 t 760 normal_username _NOVALUE_ hosseini0093 2019-12-21 17:56:28.435192 862 1 t 763 normal_username _NOVALUE_ mehrpoyan101 2019-12-22 18:31:42.539772 863 0 t 765 normal_username _NOVALUE_ amin.saeedi2 2019-12-24 17:32:47.687828 864 0 f 2 rel_exp_date 1 Months 35 Days 2019-12-24 17:34:10.061358 865 0 f 2 rel_exp_date 35 Days 33 Days 2019-12-24 17:34:49.722896 866 0 f 3 rel_exp_date 2 Months 66 Days 2019-12-24 17:36:24.108778 867 0 f 4 rel_exp_date 3 Months 99 Days 2019-12-24 17:36:57.912802 868 1 t 768 normal_username _NOVALUE_ nasiripour0935 2019-12-26 19:25:38.741756 869 1 t 771 normal_username _NOVALUE_ mhamidreza98 2019-12-28 09:10:04.759184 870 1 t 773 normal_username _NOVALUE_ amiresmaeili0609 2019-12-28 10:51:12.983286 871 1 t 775 normal_username _NOVALUE_ safari2994 2019-12-28 18:36:57.630998 872 1 t 777 normal_username _NOVALUE_ hamid1 2019-12-28 20:21:52.235802 873 1 t 779 normal_username _NOVALUE_ hamid2 2019-12-28 20:22:12.287939 874 1 t 782 normal_username _NOVALUE_ shafiei3462 2019-12-29 10:15:12.684437 875 1 t 784 normal_username _NOVALUE_ shiralinezhad6213 2019-12-30 16:58:08.934524 876 1 t 786 normal_username _NOVALUE_ barzegar8120 2019-12-30 21:13:33.462947 877 1 t 788 normal_username _NOVALUE_ javadi7073 2019-12-31 10:35:48.095257 \. -- -- Data for Name: user_messages; Type: TABLE DATA; Schema: public; Owner: ibs -- COPY user_messages (message_id, user_id, message_text, post_date) FROM stdin; \. -- -- Data for Name: users; Type: TABLE DATA; Schema: public; Owner: ibs -- COPY users (user_id, owner_id, credit, group_id, creation_date) FROM stdin; 359 1 1.00 4 2019-08-07 21:36:08.108801 351 1 3.00 4 2019-08-07 11:27:59.178134 205 1 1.00 2 2019-07-06 15:22:57.063077 781 1 1.00 4 2019-12-29 10:14:22.541228 453 2 1.00 4 2019-09-06 18:32:32.255062 424 1 1.00 2 2019-09-01 08:55:15.740678 474 1 1.00 2 2019-09-19 09:51:51.420444 411 1 1.00 2 2019-08-29 18:59:30.902795 385 2 1.00 2 2019-08-15 15:00:43.246493 526 1 3.00 4 2019-10-03 10:15:04.254849 214 1 3.00 4 2019-07-06 15:28:53.396945 339 1 3.00 4 2019-08-01 19:52:22.454716 454 1 1.00 2 2019-09-07 18:43:22.913521 282 1 1.00 2 2019-07-14 19:10:29.079501 506 1 1.00 2 2019-09-29 09:16:10.204268 652 1 1.00 2 2019-11-12 11:45:16.089548 400 1 1.00 2 2019-08-28 20:28:03.831415 599 1 1.00 2 2019-10-24 18:45:12.976706 224 1 3.00 4 2019-07-06 20:38:53.049172 420 1 1.00 2 2019-08-31 18:53:04.634134 322 1 3.00 4 2019-07-29 19:15:59.632935 372 0 3.00 4 2019-08-12 20:52:31.178226 456 1 3.00 4 2019-09-07 20:51:22.178448 393 1 1.00 2 2019-08-24 10:16:03.326108 623 1 1.00 2 2019-11-02 09:02:51.515261 643 1 1.00 2 2019-11-05 21:30:11.81666 477 1 3.00 4 2019-09-21 17:09:14.029308 468 1 1.00 2 2019-09-16 21:02:02.555667 390 1 3.00 4 2019-08-22 13:10:01.733174 337 1 3.00 4 2019-08-01 19:11:23.536478 333 1 3.00 4 2019-08-01 18:08:37.840547 331 1 3.00 4 2019-07-31 20:10:29.01709 377 1 3.00 4 2019-08-13 21:44:46.835483 398 1 1.00 2 2019-08-27 17:30:54.876092 410 0 1.00 2 2019-08-29 12:52:52.836687 329 1 3.00 4 2019-07-31 19:08:11.87652 327 1 3.00 4 2019-07-31 12:26:00.089166 335 1 3.00 4 2019-08-01 19:08:26.425187 288 1 3.00 4 2019-07-18 12:11:57.049854 402 1 1.00 2 2019-08-28 21:10:43.823412 574 1 3.00 4 2019-10-19 13:20:59.448087 607 0 6.00 5 2019-10-24 19:14:41.126599 488 1 3.00 2 2019-09-24 16:58:51.75043 645 1 3.00 4 2019-11-07 10:31:05.174748 629 1 1.00 2 2019-11-02 16:51:41.315277 681 1 3.00 4 2019-11-28 19:40:36.327328 395 0 3.00 4 2019-08-24 21:26:37.656106 232 1 3.00 4 2019-07-07 21:08:56.537994 466 1 1.00 2 2019-09-15 20:12:08.551905 479 1 1.00 2 2019-09-23 19:32:48.963569 292 1 3.00 4 2019-07-20 20:48:03.50149 464 1 3.00 4 2019-09-15 10:31:13.551626 788 1 3.00 4 2019-12-31 10:35:29.050167 414 1 1.00 2 2019-08-29 21:24:24.415537 665 1 3.00 4 2019-11-16 17:44:07.699753 470 1 1.00 2 2019-09-17 19:18:54.30533 370 1 1.00 2 2019-08-11 21:08:23.026542 647 1 1.00 2 2019-11-10 11:42:08.309425 576 1 3.00 4 2019-10-20 09:16:44.265459 361 1 1.00 4 2019-08-08 19:03:33.411563 462 1 1.00 2 2019-09-14 19:18:38.375503 347 1 3.00 4 2019-08-05 20:19:41.915278 534 1 1.00 2 2019-10-05 18:49:33.429919 247 1 3.00 4 2019-07-13 18:07:17.24253 472 1 1.00 2 2019-09-18 19:06:24.542752 585 1 1.00 2 2019-10-20 17:03:42.559771 570 1 1.00 2 2019-10-16 21:10:01.635409 556 1 1.00 2 2019-10-12 17:57:51.576999 379 1 3.00 4 2019-08-14 17:25:40.251652 558 1 1.00 2 2019-10-12 18:03:22.508155 609 1 1.00 2 2019-10-26 09:38:53.107005 290 1 3.00 4 2019-07-20 10:23:24.693365 408 1 1.00 4 2019-08-29 11:52:12.78265 296 1 3.00 4 2019-07-21 12:51:42.052985 583 1 1.00 2 2019-10-20 12:57:45.839488 758 1 3.00 4 2019-12-21 17:40:58.290602 641 1 1.00 2 2019-11-05 20:14:20.950082 426 1 1.00 2 2019-09-01 12:27:44.850424 418 1 3.00 4 2019-08-31 12:34:39.247617 476 2 1.00 2 2019-09-20 16:13:27.651177 554 1 1.00 2 2019-10-11 23:42:39.068141 441 1 1.00 2 2019-09-03 16:36:06.288146 595 1 1.00 2 2019-10-23 12:37:05.92049 458 2 1.00 2 2019-09-08 17:56:16.839222 617 1 1.00 2 2019-10-28 10:37:17.951575 589 1 1.00 2 2019-10-21 10:28:58.913762 375 1 3.00 4 2019-08-13 20:30:10.641191 532 1 3.00 4 2019-10-03 20:39:19.871634 597 1 3.00 4 2019-10-24 09:56:01.179722 715 1 1.00 2 2019-12-04 21:07:47.115435 510 1 3.00 4 2019-09-29 17:44:01.327626 568 1 3.00 4 2019-10-15 18:29:57.68287 750 1 3.00 4 2019-12-12 19:31:59.229672 311 0 1.00 4 2019-07-25 10:11:32.325878 544 0 1.00 3 2019-10-06 19:13:38.249846 658 1 1.00 2 2019-11-13 19:51:24.266031 213 1 3.00 4 2019-07-06 15:28:53.396945 501 1 1.00 2 2019-09-25 17:01:38.668517 542 1 1.00 2 2019-10-06 19:06:51.003177 447 1 3.00 4 2019-09-05 10:48:59.164334 422 1 3.00 4 2019-08-31 20:03:14.068611 593 1 1.00 2 2019-10-22 19:39:31.613133 518 1 3.00 4 2019-09-30 18:02:08.627225 703 1 3.00 4 2019-12-02 20:00:54.479856 738 1 1.00 2 2019-12-09 09:12:24.330362 744 1 3.00 4 2019-12-10 18:22:40.330454 767 1 1.00 2 2019-12-26 19:22:23.70121 742 1 3.00 4 2019-12-10 17:23:00.590702 762 1 1.00 2 2019-12-22 17:20:51.113662 689 1 1.00 2 2019-12-01 17:41:34.056063 663 1 1.00 2 2019-11-16 12:49:37.384196 740 1 1.00 2 2019-12-09 11:44:48.872925 483 1 3.00 4 2019-09-23 19:42:57.664033 734 1 1.00 2 2019-12-07 12:10:01.530283 487 0 6.00 5 2019-09-23 19:57:12.851298 459 2 1.00 2 2019-09-10 17:06:04.750954 752 1 3.00 4 2019-12-16 18:35:29.649116 654 1 3.00 3 2019-11-12 12:47:16.684656 621 1 3.00 4 2019-10-28 20:16:48.705558 713 1 1.00 2 2019-12-04 20:22:33.160794 746 1 1.00 2 2019-12-11 12:09:30.926523 649 1 3.00 4 2019-11-10 13:35:52.459146 516 1 3.00 4 2019-09-30 17:18:50.646766 490 1 3.00 4 2019-09-24 20:44:22.201318 770 1 3.00 4 2019-12-28 09:09:10.418361 730 0 1.00 1 2019-12-06 14:32:35.16694 736 1 3.00 4 2019-12-08 19:20:11.283486 660 1 3.00 4 2019-11-14 18:14:40.368182 718 1 3.00 4 2019-12-04 21:16:25.581153 756 1 3.00 4 2019-12-19 10:12:07.689606 498 0 6.00 5 2019-09-25 08:43:44.474879 765 0 1.00 2 2019-12-24 17:30:15.678891 432 1 1.00 2 2019-09-02 17:12:41.816673 434 1 3.00 4 2019-09-02 18:15:55.690278 698 1 1.00 2 2019-12-02 19:01:15.653491 613 1 3.00 4 2019-10-26 16:58:03.655925 587 1 1.00 2 2019-10-20 21:15:32.781606 212 1 3.00 4 2019-07-06 15:28:53.396945 508 0 1.00 2 2019-09-29 13:01:31.302927 536 1 1.00 2 2019-10-05 20:17:44.525133 436 1 1.00 2 2019-09-02 19:45:43.35538 530 1 3.00 4 2019-10-03 20:35:30.378836 428 1 1.00 2 2019-09-01 12:48:31.986126 449 1 3.00 4 2019-09-05 12:35:57.061809 306 1 3.00 4 2019-07-24 10:41:24.357935 294 1 3.00 4 2019-07-21 09:26:02.11267 461 2 1.00 2 2019-09-12 23:46:45.503174 548 1 3.00 4 2019-10-09 18:41:55.640655 443 1 3.00 4 2019-09-04 11:53:40.575493 668 1 1.00 2 2019-11-26 20:08:03.315604 677 1 1.00 2 2019-11-28 18:16:51.678598 445 1 3.00 4 2019-09-05 10:44:54.182784 619 1 1.00 2 2019-10-28 10:53:49.295201 325 1 3.00 4 2019-07-30 10:38:41.228849 520 1 3.00 4 2019-10-01 08:44:54.688571 412 1 3.00 4 2019-08-29 20:36:05.124274 522 1 1.00 2 2019-10-02 08:54:14.008567 430 1 3.00 4 2019-09-02 09:25:45.445298 416 1 3.00 4 2019-08-31 08:42:49.138329 639 1 3.00 4 2019-11-04 18:25:34.228979 451 1 3.00 4 2019-09-05 18:31:41.894452 512 1 3.00 4 2019-09-30 08:37:08.564278 528 1 3.00 4 2019-10-03 17:22:57.546535 754 1 3.00 4 2019-12-18 18:37:16.018624 760 1 3.00 4 2019-12-21 17:56:05.835654 625 1 3.00 4 2019-11-02 09:06:30.826328 692 1 3.00 4 2019-12-01 21:17:32.075282 551 1 3.00 4 2019-10-10 20:30:04.57493 700 1 3.00 4 2019-12-02 19:04:35.675373 683 1 1.00 2 2019-11-30 09:34:12.945588 726 1 3.00 4 2019-12-05 17:30:14.017239 784 1 3.00 4 2019-12-30 16:56:09.733356 220 0 1.00 1 2019-07-06 15:57:55.963725 763 1 1.00 2 2019-12-22 18:31:21.894613 707 1 3.00 4 2019-12-03 09:03:12.602078 768 1 1.00 2 2019-12-26 19:22:29.048911 566 1 3.00 4 2019-10-14 19:22:05.420709 709 1 3.00 4 2019-12-03 21:07:22.350056 633 1 3.00 4 2019-11-03 10:47:51.890102 773 1 1.00 4 2019-12-28 10:50:53.874376 499 1 3.00 4 2019-09-25 12:14:41.142327 392 0 1.00 5 2019-08-23 22:34:18.098583 481 1 3.00 4 2019-09-23 19:37:02.6793 538 1 3.00 4 2019-10-05 20:30:28.31227 622 1 3.00 4 2019-10-31 11:11:04.111151 673 1 1.00 2 2019-11-28 12:26:18.940432 578 1 3.00 4 2019-10-20 10:01:01.138231 728 0 1.00 1 2019-12-06 14:31:24.374363 562 1 3.00 4 2019-10-14 12:23:51.709651 782 1 3.00 4 2019-12-29 10:14:54.716816 675 1 1.00 2 2019-11-28 12:32:43.129923 667 0 6.00 5 2019-11-26 09:08:33.276027 564 1 3.00 4 2019-10-14 17:39:27.116774 615 1 3.00 4 2019-10-26 19:12:20.799733 503 1 3.00 4 2019-09-25 20:16:44.530618 694 1 3.00 4 2019-12-02 09:19:56.196627 691 1 3.00 4 2019-12-01 19:06:21.980583 611 1 3.00 4 2019-10-26 16:35:43.293559 631 1 3.00 4 2019-11-03 08:55:03.185728 786 1 3.00 4 2019-12-30 21:13:04.956197 775 1 1.00 4 2019-12-28 18:36:17.291001 771 1 1.00 4 2019-12-28 09:09:53.982391 581 1 3.00 2 2019-10-20 10:12:21.051907 635 1 3.00 4 2019-11-03 17:48:07.841839 671 1 3.00 4 2019-11-28 11:36:15.236772 711 1 1.00 2 2019-12-04 19:27:30.26022 514 1 3.00 4 2019-09-30 11:06:21.293716 627 1 3.00 4 2019-11-02 12:43:53.669624 545 1 3.00 4 2019-10-09 09:56:41.445601 679 1 1.00 2 2019-11-28 18:52:56.211373 732 0 1.00 1 2019-12-06 14:33:14.790912 687 1 1.00 2 2019-11-30 20:16:06.465165 748 1 3.00 4 2019-12-12 09:13:06.843397 779 1 1.00 4 2019-12-28 20:22:00.920285 685 1 3.00 4 2019-11-30 17:58:51.06911 777 1 1.00 4 2019-12-28 20:21:37.01667 637 1 3.00 4 2019-11-04 08:45:50.118532 485 1 3.00 4 2019-09-23 19:44:50.588572 696 1 3.00 4 2019-12-02 09:44:21.499211 591 1 3.00 4 2019-10-22 19:15:27.519721 716 1 3.00 4 2019-12-04 21:10:55.971351 720 1 3.00 4 2019-12-05 11:36:41.330037 724 1 3.00 4 2019-12-05 17:29:02.99235 722 1 3.00 4 2019-12-05 11:37:02.118274 670 0 1.00 1 2019-11-28 10:54:52.358717 656 1 3.00 4 2019-11-13 16:49:32.489015 \. -- -- Data for Name: voip_charge_rule_tariff; Type: TABLE DATA; Schema: public; Owner: ibs -- COPY voip_charge_rule_tariff (tariff_id, tariff_name, comment) FROM stdin; \. -- -- Data for Name: voip_charge_rules; Type: TABLE DATA; Schema: public; Owner: ibs -- COPY voip_charge_rules (charge_id, charge_rule_id, start_time, end_time, time_limit, ras_id, tariff_id) FROM stdin; \. -- -- Data for Name: voip_onlines_snapshot; Type: TABLE DATA; Schema: public; Owner: ibs -- COPY voip_onlines_snapshot (snp_date, ras_id, value) FROM stdin; \. -- -- Data for Name: voip_users; Type: TABLE DATA; Schema: public; Owner: ibs -- COPY voip_users (user_id, voip_username, voip_password) FROM stdin; \. -- -- Data for Name: web_analyzer_log; Type: TABLE DATA; Schema: public; Owner: ibs -- COPY web_analyzer_log (log_id, _date, user_id, ip_addr, url, elapsed, bytes, miss, hit, successful, failure, _count) FROM stdin; \. -- -- Name: add_user_save_details_pkey; Type: CONSTRAINT; Schema: public; Owner: ibs; Tablespace: -- ALTER TABLE ONLY add_user_save_details ADD CONSTRAINT add_user_save_details_pkey PRIMARY KEY (add_user_save_id, user_id); -- -- Name: add_user_saves_pkey; Type: CONSTRAINT; Schema: public; Owner: ibs; Tablespace: -- ALTER TABLE ONLY add_user_saves ADD CONSTRAINT add_user_saves_pkey PRIMARY KEY (add_user_save_id); -- -- Name: admin_deposit_change_pkey; Type: CONSTRAINT; Schema: public; Owner: ibs; Tablespace: -- ALTER TABLE ONLY admin_deposit_change ADD CONSTRAINT admin_deposit_change_pkey PRIMARY KEY (admin_deposit_change_id); -- -- Name: admin_locks_pkey; Type: CONSTRAINT; Schema: public; Owner: ibs; Tablespace: -- ALTER TABLE ONLY admin_locks ADD CONSTRAINT admin_locks_pkey PRIMARY KEY (lock_id); -- -- Name: admin_messages_pkey; Type: CONSTRAINT; Schema: public; Owner: ibs; Tablespace: -- ALTER TABLE ONLY admin_messages ADD CONSTRAINT admin_messages_pkey PRIMARY KEY (message_id); -- -- Name: admin_perm_templates_detail_pkey; Type: CONSTRAINT; Schema: public; Owner: ibs; Tablespace: -- ALTER TABLE ONLY admin_perm_templates_detail ADD CONSTRAINT admin_perm_templates_detail_pkey PRIMARY KEY (template_id, perm_name); -- -- Name: admin_perm_templates_pkey; Type: CONSTRAINT; Schema: public; Owner: ibs; Tablespace: -- ALTER TABLE ONLY admin_perm_templates ADD CONSTRAINT admin_perm_templates_pkey PRIMARY KEY (template_id); -- -- Name: admin_perms_pkey; Type: CONSTRAINT; Schema: public; Owner: ibs; Tablespace: -- ALTER TABLE ONLY admin_perms ADD CONSTRAINT admin_perms_pkey PRIMARY KEY (admin_id, perm_name); -- -- Name: admins_extended_attrs_pkey; Type: CONSTRAINT; Schema: public; Owner: ibs; Tablespace: -- ALTER TABLE ONLY admins_extended_attrs ADD CONSTRAINT admins_extended_attrs_pkey PRIMARY KEY (admin_id, attr_name); -- -- Name: admins_pkey; Type: CONSTRAINT; Schema: public; Owner: ibs; Tablespace: -- ALTER TABLE ONLY admins ADD CONSTRAINT admins_pkey PRIMARY KEY (admin_id); -- -- Name: admins_username_key; Type: CONSTRAINT; Schema: public; Owner: ibs; Tablespace: -- ALTER TABLE ONLY admins ADD CONSTRAINT admins_username_key UNIQUE (username); -- -- Name: bw_interface_pkey; Type: CONSTRAINT; Schema: public; Owner: ibs; Tablespace: -- ALTER TABLE ONLY bw_interface ADD CONSTRAINT bw_interface_pkey PRIMARY KEY (interface_id); -- -- Name: bw_leaf_pkey; Type: CONSTRAINT; Schema: public; Owner: ibs; Tablespace: -- ALTER TABLE ONLY bw_leaf ADD CONSTRAINT bw_leaf_pkey PRIMARY KEY (leaf_id); -- -- Name: bw_leaf_services_pkey; Type: CONSTRAINT; Schema: public; Owner: ibs; Tablespace: -- ALTER TABLE ONLY bw_leaf_services ADD CONSTRAINT bw_leaf_services_pkey PRIMARY KEY (leaf_service_id); -- -- Name: bw_node_pkey; Type: CONSTRAINT; Schema: public; Owner: ibs; Tablespace: -- ALTER TABLE ONLY bw_node ADD CONSTRAINT bw_node_pkey PRIMARY KEY (node_id); -- -- Name: bw_static_ip_ip_key; Type: CONSTRAINT; Schema: public; Owner: ibs; Tablespace: -- ALTER TABLE ONLY bw_static_ip ADD CONSTRAINT bw_static_ip_ip_key UNIQUE (ip); -- -- Name: bw_static_ip_pkey; Type: CONSTRAINT; Schema: public; Owner: ibs; Tablespace: -- ALTER TABLE ONLY bw_static_ip ADD CONSTRAINT bw_static_ip_pkey PRIMARY KEY (bw_static_ip_id); -- -- Name: caller_id_users_pkey; Type: CONSTRAINT; Schema: public; Owner: ibs; Tablespace: -- ALTER TABLE ONLY caller_id_users ADD CONSTRAINT caller_id_users_pkey PRIMARY KEY (caller_id); -- -- Name: charge_rule_day_of_weeks_pkey; Type: CONSTRAINT; Schema: public; Owner: ibs; Tablespace: -- ALTER TABLE ONLY charge_rule_day_of_weeks ADD CONSTRAINT charge_rule_day_of_weeks_pkey PRIMARY KEY (charge_rule_id, day_of_week); -- -- Name: charge_rule_ports_pkey; Type: CONSTRAINT; Schema: public; Owner: ibs; Tablespace: -- ALTER TABLE ONLY charge_rule_ports ADD CONSTRAINT charge_rule_ports_pkey PRIMARY KEY (charge_rule_id, ras_port); -- -- Name: charge_rules_pkey; Type: CONSTRAINT; Schema: public; Owner: ibs; Tablespace: -- ALTER TABLE ONLY charge_rules ADD CONSTRAINT charge_rules_pkey PRIMARY KEY (charge_rule_id); -- -- Name: charges_name_key; Type: CONSTRAINT; Schema: public; Owner: ibs; Tablespace: -- ALTER TABLE ONLY charges ADD CONSTRAINT charges_name_key UNIQUE (name); -- -- Name: charges_pkey; Type: CONSTRAINT; Schema: public; Owner: ibs; Tablespace: -- ALTER TABLE ONLY charges ADD CONSTRAINT charges_pkey PRIMARY KEY (charge_id); -- -- Name: connection_log_details_pkey; Type: CONSTRAINT; Schema: public; Owner: ibs; Tablespace: -- ALTER TABLE ONLY connection_log_details ADD CONSTRAINT connection_log_details_pkey PRIMARY KEY (connection_log_id, name); -- -- Name: connection_log_pkey; Type: CONSTRAINT; Schema: public; Owner: ibs; Tablespace: -- ALTER TABLE ONLY connection_log ADD CONSTRAINT connection_log_pkey PRIMARY KEY (connection_log_id); -- -- Name: credit_change_pkey; Type: CONSTRAINT; Schema: public; Owner: ibs; Tablespace: -- ALTER TABLE ONLY credit_change ADD CONSTRAINT credit_change_pkey PRIMARY KEY (credit_change_id); -- -- Name: credit_change_userid_pkey; Type: CONSTRAINT; Schema: public; Owner: ibs; Tablespace: -- ALTER TABLE ONLY credit_change_userid ADD CONSTRAINT credit_change_userid_pkey PRIMARY KEY (credit_change_id, user_id); -- -- Name: defs_pkey; Type: CONSTRAINT; Schema: public; Owner: ibs; Tablespace: -- ALTER TABLE ONLY defs ADD CONSTRAINT defs_pkey PRIMARY KEY (name); -- -- Name: group_attrs_pkey; Type: CONSTRAINT; Schema: public; Owner: ibs; Tablespace: -- ALTER TABLE ONLY group_attrs ADD CONSTRAINT group_attrs_pkey PRIMARY KEY (group_id, attr_name); -- -- Name: groups_group_name_key; Type: CONSTRAINT; Schema: public; Owner: ibs; Tablespace: -- ALTER TABLE ONLY groups ADD CONSTRAINT groups_group_name_key UNIQUE (group_name); -- -- Name: groups_pkey; Type: CONSTRAINT; Schema: public; Owner: ibs; Tablespace: -- ALTER TABLE ONLY groups ADD CONSTRAINT groups_pkey PRIMARY KEY (group_id); -- -- Name: ias_event_extended_pkey; Type: CONSTRAINT; Schema: public; Owner: ibs; Tablespace: -- ALTER TABLE ONLY ias_event_extended ADD CONSTRAINT ias_event_extended_pkey PRIMARY KEY (event_id, name); -- -- Name: ias_event_pkey; Type: CONSTRAINT; Schema: public; Owner: ibs; Tablespace: -- ALTER TABLE ONLY ias_event ADD CONSTRAINT ias_event_pkey PRIMARY KEY (event_id); -- -- Name: ibs_states_pkey; Type: CONSTRAINT; Schema: public; Owner: ibs; Tablespace: -- ALTER TABLE ONLY ibs_states ADD CONSTRAINT ibs_states_pkey PRIMARY KEY (name); -- -- Name: internet_bw_snapshot_pkey; Type: CONSTRAINT; Schema: public; Owner: ibs; Tablespace: -- ALTER TABLE ONLY internet_bw_snapshot ADD CONSTRAINT internet_bw_snapshot_pkey PRIMARY KEY (user_id, snp_date); -- -- Name: internet_charge_rules_pkey; Type: CONSTRAINT; Schema: public; Owner: ibs; Tablespace: -- ALTER TABLE ONLY internet_charge_rules ADD CONSTRAINT internet_charge_rules_pkey PRIMARY KEY (charge_rule_id); -- -- Name: internet_onlines_snapshot_pkey; Type: CONSTRAINT; Schema: public; Owner: ibs; Tablespace: -- ALTER TABLE ONLY internet_onlines_snapshot ADD CONSTRAINT internet_onlines_snapshot_pkey PRIMARY KEY (snp_date, ras_id); -- -- Name: ippool_ips_pkey; Type: CONSTRAINT; Schema: public; Owner: ibs; Tablespace: -- ALTER TABLE ONLY ippool_ips ADD CONSTRAINT ippool_ips_pkey PRIMARY KEY (ippool_id, ip); -- -- Name: ippool_pkey; Type: CONSTRAINT; Schema: public; Owner: ibs; Tablespace: -- ALTER TABLE ONLY ippool ADD CONSTRAINT ippool_pkey PRIMARY KEY (ippool_id); -- -- Name: normal_users_normal_username_key; Type: CONSTRAINT; Schema: public; Owner: ibs; Tablespace: -- ALTER TABLE ONLY normal_users ADD CONSTRAINT normal_users_normal_username_key UNIQUE (normal_username); -- -- Name: persistent_lan_users_pkey; Type: CONSTRAINT; Schema: public; Owner: ibs; Tablespace: -- ALTER TABLE ONLY persistent_lan_users ADD CONSTRAINT persistent_lan_users_pkey PRIMARY KEY (persistent_lan_mac, persistent_lan_ip); -- -- Name: ras_attrs_pkey; Type: CONSTRAINT; Schema: public; Owner: ibs; Tablespace: -- ALTER TABLE ONLY ras_attrs ADD CONSTRAINT ras_attrs_pkey PRIMARY KEY (ras_id, attr_name); -- -- Name: ras_ippools_pkey; Type: CONSTRAINT; Schema: public; Owner: ibs; Tablespace: -- ALTER TABLE ONLY ras_ippools ADD CONSTRAINT ras_ippools_pkey PRIMARY KEY (serial); -- -- Name: ras_pkey; Type: CONSTRAINT; Schema: public; Owner: ibs; Tablespace: -- ALTER TABLE ONLY ras ADD CONSTRAINT ras_pkey PRIMARY KEY (ras_id); -- -- Name: ras_ports_pkey; Type: CONSTRAINT; Schema: public; Owner: ibs; Tablespace: -- ALTER TABLE ONLY ras_ports ADD CONSTRAINT ras_ports_pkey PRIMARY KEY (ras_id, port_name); -- -- Name: ras_ras_description_key; Type: CONSTRAINT; Schema: public; Owner: ibs; Tablespace: -- ALTER TABLE ONLY ras ADD CONSTRAINT ras_ras_description_key UNIQUE (ras_description); -- -- Name: ras_ras_ip_key; Type: CONSTRAINT; Schema: public; Owner: ibs; Tablespace: -- ALTER TABLE ONLY ras ADD CONSTRAINT ras_ras_ip_key UNIQUE (ras_ip); -- -- Name: tariff_prefix_list_pkey; Type: CONSTRAINT; Schema: public; Owner: ibs; Tablespace: -- ALTER TABLE ONLY tariff_prefix_list ADD CONSTRAINT tariff_prefix_list_pkey PRIMARY KEY (prefix_id); -- -- Name: user_attrs_pkey; Type: CONSTRAINT; Schema: public; Owner: ibs; Tablespace: -- ALTER TABLE ONLY user_attrs ADD CONSTRAINT user_attrs_pkey PRIMARY KEY (user_id, attr_name); -- -- Name: user_audit_log_pkey; Type: CONSTRAINT; Schema: public; Owner: ibs; Tablespace: -- ALTER TABLE ONLY user_audit_log ADD CONSTRAINT user_audit_log_pkey PRIMARY KEY (user_audit_log); -- -- Name: user_messages_pkey; Type: CONSTRAINT; Schema: public; Owner: ibs; Tablespace: -- ALTER TABLE ONLY user_messages ADD CONSTRAINT user_messages_pkey PRIMARY KEY (message_id); -- -- Name: users_pkey; Type: CONSTRAINT; Schema: public; Owner: ibs; Tablespace: -- ALTER TABLE ONLY users ADD CONSTRAINT users_pkey PRIMARY KEY (user_id); -- -- Name: voip_charge_rule_tariff_pkey; Type: CONSTRAINT; Schema: public; Owner: ibs; Tablespace: -- ALTER TABLE ONLY voip_charge_rule_tariff ADD CONSTRAINT voip_charge_rule_tariff_pkey PRIMARY KEY (tariff_id); -- -- Name: voip_charge_rules_pkey; Type: CONSTRAINT; Schema: public; Owner: ibs; Tablespace: -- ALTER TABLE ONLY voip_charge_rules ADD CONSTRAINT voip_charge_rules_pkey PRIMARY KEY (charge_rule_id); -- -- Name: voip_onlines_snapshot_pkey; Type: CONSTRAINT; Schema: public; Owner: ibs; Tablespace: -- ALTER TABLE ONLY voip_onlines_snapshot ADD CONSTRAINT voip_onlines_snapshot_pkey PRIMARY KEY (snp_date, ras_id); -- -- Name: voip_users_voip_username_key; Type: CONSTRAINT; Schema: public; Owner: ibs; Tablespace: -- ALTER TABLE ONLY voip_users ADD CONSTRAINT voip_users_voip_username_key UNIQUE (voip_username); -- -- Name: web_analyzer_log_pkey; Type: CONSTRAINT; Schema: public; Owner: ibs; Tablespace: -- ALTER TABLE ONLY web_analyzer_log ADD CONSTRAINT web_analyzer_log_pkey PRIMARY KEY (log_id); -- -- Name: caller_id_users_user_id; Type: INDEX; Schema: public; Owner: ibs; Tablespace: -- CREATE INDEX caller_id_users_user_id ON caller_id_users USING btree (user_id); -- -- Name: connection_log_details_name_value_index; Type: INDEX; Schema: public; Owner: ibs; Tablespace: -- CREATE INDEX connection_log_details_name_value_index ON connection_log_details USING btree (name, value); -- -- Name: connection_log_login_time_index; Type: INDEX; Schema: public; Owner: ibs; Tablespace: -- CREATE INDEX connection_log_login_time_index ON connection_log USING btree (login_time); -- -- Name: connection_log_userid_index; Type: INDEX; Schema: public; Owner: ibs; Tablespace: -- CREATE INDEX connection_log_userid_index ON connection_log USING btree (user_id); -- -- Name: credit_change_userid_index; Type: INDEX; Schema: public; Owner: ibs; Tablespace: -- CREATE INDEX credit_change_userid_index ON credit_change_userid USING btree (user_id); -- -- Name: group_attrs_name_value; Type: INDEX; Schema: public; Owner: ibs; Tablespace: -- CREATE INDEX group_attrs_name_value ON group_attrs USING btree (attr_name, attr_value); -- -- Name: ippool_ips_index; Type: INDEX; Schema: public; Owner: ibs; Tablespace: -- CREATE UNIQUE INDEX ippool_ips_index ON ippool_ips USING btree (ippool_id, ip); -- -- Name: normal_users_user_id; Type: INDEX; Schema: public; Owner: ibs; Tablespace: -- CREATE UNIQUE INDEX normal_users_user_id ON normal_users USING btree (user_id); -- -- Name: persistent_lan_ras_id_index; Type: INDEX; Schema: public; Owner: ibs; Tablespace: -- CREATE INDEX persistent_lan_ras_id_index ON persistent_lan_users USING btree (persistent_lan_ras_id); -- -- Name: persistent_lan_user_id; Type: INDEX; Schema: public; Owner: ibs; Tablespace: -- CREATE INDEX persistent_lan_user_id ON persistent_lan_users USING btree (user_id); -- -- Name: prefix_name_index; Type: INDEX; Schema: public; Owner: ibs; Tablespace: -- CREATE UNIQUE INDEX prefix_name_index ON tariff_prefix_list USING btree (tariff_id, prefix_code); -- -- Name: ras_attrs_index; Type: INDEX; Schema: public; Owner: ibs; Tablespace: -- CREATE UNIQUE INDEX ras_attrs_index ON ras_attrs USING btree (ras_id, attr_name); -- -- Name: ras_ports_index; Type: INDEX; Schema: public; Owner: ibs; Tablespace: -- CREATE UNIQUE INDEX ras_ports_index ON ras_ports USING btree (ras_id, port_name); -- -- Name: user_attrs_abs_exp_date; Type: INDEX; Schema: public; Owner: ibs; Tablespace: -- CREATE INDEX user_attrs_abs_exp_date ON user_attrs USING btree (attr_name, ((attr_value)::bigint)) WHERE (attr_name = ANY (ARRAY['abs_exp_date'::text, 'first_login'::text])); -- -- Name: user_attrs_name_value; Type: INDEX; Schema: public; Owner: ibs; Tablespace: -- CREATE INDEX user_attrs_name_value ON user_attrs USING btree (attr_name, attr_value); -- -- Name: users_group_id; Type: INDEX; Schema: public; Owner: ibs; Tablespace: -- CREATE INDEX users_group_id ON users USING btree (group_id); -- -- Name: voip_users_user_id; Type: INDEX; Schema: public; Owner: ibs; Tablespace: -- CREATE UNIQUE INDEX voip_users_user_id ON voip_users USING btree (user_id); -- -- Name: web_analyzer_log_date_index; Type: INDEX; Schema: public; Owner: ibs; Tablespace: -- CREATE INDEX web_analyzer_log_date_index ON web_analyzer_log USING btree (_date); -- -- Name: web_analyzer_log_user_id_index; Type: INDEX; Schema: public; Owner: ibs; Tablespace: -- CREATE INDEX web_analyzer_log_user_id_index ON web_analyzer_log USING btree (user_id); -- -- Name: system_admin; Type: RULE; Schema: public; Owner: ibs -- CREATE RULE system_admin AS ON DELETE TO admins WHERE (old.admin_id = 0) DO INSTEAD NOTHING; -- -- Name: system_admin_god; Type: RULE; Schema: public; Owner: ibs -- CREATE RULE system_admin_god AS ON DELETE TO admin_perms WHERE ((old.admin_id = 0) AND (old.perm_name = 'GOD'::text)) DO INSTEAD NOTHING; -- -- Name: add_user_save_details_add_user_save_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: ibs -- ALTER TABLE ONLY add_user_save_details ADD CONSTRAINT add_user_save_details_add_user_save_id_fkey FOREIGN KEY (add_user_save_id) REFERENCES add_user_saves(add_user_save_id); -- -- Name: add_user_saves_admin_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: ibs -- ALTER TABLE ONLY add_user_saves ADD CONSTRAINT add_user_saves_admin_id_fkey FOREIGN KEY (admin_id) REFERENCES admins(admin_id); -- -- Name: admin_locks_admin_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: ibs -- ALTER TABLE ONLY admin_locks ADD CONSTRAINT admin_locks_admin_id_fkey FOREIGN KEY (admin_id) REFERENCES admins(admin_id); -- -- Name: admin_locks_locker_admin_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: ibs -- ALTER TABLE ONLY admin_locks ADD CONSTRAINT admin_locks_locker_admin_id_fkey FOREIGN KEY (locker_admin_id) REFERENCES admins(admin_id); -- -- Name: admin_messages_user_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: ibs -- ALTER TABLE ONLY admin_messages ADD CONSTRAINT admin_messages_user_id_fkey FOREIGN KEY (user_id) REFERENCES users(user_id); -- -- Name: admin_perm_templates_detail_template_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: ibs -- ALTER TABLE ONLY admin_perm_templates_detail ADD CONSTRAINT admin_perm_templates_detail_template_id_fkey FOREIGN KEY (template_id) REFERENCES admin_perm_templates(template_id); -- -- Name: admin_perms_admin_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: ibs -- ALTER TABLE ONLY admin_perms ADD CONSTRAINT admin_perms_admin_id_fkey FOREIGN KEY (admin_id) REFERENCES admins(admin_id); -- -- Name: admins_extended_attrs_admin_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: ibs -- ALTER TABLE ONLY admins_extended_attrs ADD CONSTRAINT admins_extended_attrs_admin_id_fkey FOREIGN KEY (admin_id) REFERENCES admins(admin_id); -- -- Name: bw_leaf_interface_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: ibs -- ALTER TABLE ONLY bw_leaf ADD CONSTRAINT bw_leaf_interface_id_fkey FOREIGN KEY (interface_id) REFERENCES bw_interface(interface_id); -- -- Name: bw_leaf_parent_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: ibs -- ALTER TABLE ONLY bw_leaf ADD CONSTRAINT bw_leaf_parent_id_fkey FOREIGN KEY (parent_id) REFERENCES bw_node(node_id); -- -- Name: bw_leaf_services_leaf_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: ibs -- ALTER TABLE ONLY bw_leaf_services ADD CONSTRAINT bw_leaf_services_leaf_id_fkey FOREIGN KEY (leaf_id) REFERENCES bw_leaf(leaf_id); -- -- Name: bw_node_interface_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: ibs -- ALTER TABLE ONLY bw_node ADD CONSTRAINT bw_node_interface_id_fkey FOREIGN KEY (interface_id) REFERENCES bw_interface(interface_id); -- -- Name: bw_node_parent_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: ibs -- ALTER TABLE ONLY bw_node ADD CONSTRAINT bw_node_parent_id_fkey FOREIGN KEY (parent_id) REFERENCES bw_node(node_id); -- -- Name: bw_static_ip_receive_leaf_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: ibs -- ALTER TABLE ONLY bw_static_ip ADD CONSTRAINT bw_static_ip_receive_leaf_id_fkey FOREIGN KEY (receive_leaf_id) REFERENCES bw_leaf(leaf_id); -- -- Name: bw_static_ip_transmit_leaf_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: ibs -- ALTER TABLE ONLY bw_static_ip ADD CONSTRAINT bw_static_ip_transmit_leaf_id_fkey FOREIGN KEY (transmit_leaf_id) REFERENCES bw_leaf(leaf_id); -- -- Name: caller_id_users_user_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: ibs -- ALTER TABLE ONLY caller_id_users ADD CONSTRAINT caller_id_users_user_id_fkey FOREIGN KEY (user_id) REFERENCES users(user_id); -- -- Name: charge_rules_charge_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: ibs -- ALTER TABLE ONLY charge_rules ADD CONSTRAINT charge_rules_charge_id_fkey FOREIGN KEY (charge_id) REFERENCES charges(charge_id); -- -- Name: charge_rules_ras_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: ibs -- ALTER TABLE ONLY charge_rules ADD CONSTRAINT charge_rules_ras_id_fkey FOREIGN KEY (ras_id) REFERENCES ras(ras_id); -- -- Name: charges_admin_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: ibs -- ALTER TABLE ONLY charges ADD CONSTRAINT charges_admin_id_fkey FOREIGN KEY (admin_id) REFERENCES admins(admin_id); -- -- Name: connection_log_details_connection_log_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: ibs -- ALTER TABLE ONLY connection_log_details ADD CONSTRAINT connection_log_details_connection_log_id_fkey FOREIGN KEY (connection_log_id) REFERENCES connection_log(connection_log_id); -- -- Name: credit_change_userid_credit_change_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: ibs -- ALTER TABLE ONLY credit_change_userid ADD CONSTRAINT credit_change_userid_credit_change_id_fkey FOREIGN KEY (credit_change_id) REFERENCES credit_change(credit_change_id); -- -- Name: group_attrs_group_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: ibs -- ALTER TABLE ONLY group_attrs ADD CONSTRAINT group_attrs_group_id_fkey FOREIGN KEY (group_id) REFERENCES groups(group_id); -- -- Name: groups_owner_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: ibs -- ALTER TABLE ONLY groups ADD CONSTRAINT groups_owner_id_fkey FOREIGN KEY (owner_id) REFERENCES admins(admin_id); -- -- Name: ias_event_extended_event_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: ibs -- ALTER TABLE ONLY ias_event_extended ADD CONSTRAINT ias_event_extended_event_id_fkey FOREIGN KEY (event_id) REFERENCES ias_event(event_id); -- -- Name: internet_bw_snapshot_user_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: ibs -- ALTER TABLE ONLY internet_bw_snapshot ADD CONSTRAINT internet_bw_snapshot_user_id_fkey FOREIGN KEY (user_id) REFERENCES users(user_id); -- -- Name: internet_charge_rules_bw_receive_leaf_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: ibs -- ALTER TABLE ONLY internet_charge_rules ADD CONSTRAINT internet_charge_rules_bw_receive_leaf_id_fkey FOREIGN KEY (bw_receive_leaf_id) REFERENCES bw_leaf(leaf_id); -- -- Name: internet_charge_rules_bw_transmit_leaf_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: ibs -- ALTER TABLE ONLY internet_charge_rules ADD CONSTRAINT internet_charge_rules_bw_transmit_leaf_id_fkey FOREIGN KEY (bw_transmit_leaf_id) REFERENCES bw_leaf(leaf_id); -- -- Name: ippool_ips_ippool_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: ibs -- ALTER TABLE ONLY ippool_ips ADD CONSTRAINT ippool_ips_ippool_id_fkey FOREIGN KEY (ippool_id) REFERENCES ippool(ippool_id); -- -- Name: normal_users_user_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: ibs -- ALTER TABLE ONLY normal_users ADD CONSTRAINT normal_users_user_id_fkey FOREIGN KEY (user_id) REFERENCES users(user_id); -- -- Name: persistent_lan_users_persistent_lan_ras_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: ibs -- ALTER TABLE ONLY persistent_lan_users ADD CONSTRAINT persistent_lan_users_persistent_lan_ras_id_fkey FOREIGN KEY (persistent_lan_ras_id) REFERENCES ras(ras_id); -- -- Name: persistent_lan_users_user_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: ibs -- ALTER TABLE ONLY persistent_lan_users ADD CONSTRAINT persistent_lan_users_user_id_fkey FOREIGN KEY (user_id) REFERENCES users(user_id); -- -- Name: ras_attrs_ras_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: ibs -- ALTER TABLE ONLY ras_attrs ADD CONSTRAINT ras_attrs_ras_id_fkey FOREIGN KEY (ras_id) REFERENCES ras(ras_id); -- -- Name: ras_ippools_ippool_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: ibs -- ALTER TABLE ONLY ras_ippools ADD CONSTRAINT ras_ippools_ippool_id_fkey FOREIGN KEY (ippool_id) REFERENCES ippool(ippool_id); -- -- Name: ras_ippools_ras_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: ibs -- ALTER TABLE ONLY ras_ippools ADD CONSTRAINT ras_ippools_ras_id_fkey FOREIGN KEY (ras_id) REFERENCES ras(ras_id); -- -- Name: ras_ports_ras_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: ibs -- ALTER TABLE ONLY ras_ports ADD CONSTRAINT ras_ports_ras_id_fkey FOREIGN KEY (ras_id) REFERENCES ras(ras_id); -- -- Name: tariff_prefix_list_tariff_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: ibs -- ALTER TABLE ONLY tariff_prefix_list ADD CONSTRAINT tariff_prefix_list_tariff_id_fkey FOREIGN KEY (tariff_id) REFERENCES voip_charge_rule_tariff(tariff_id); -- -- Name: user_attrs_user_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: ibs -- ALTER TABLE ONLY user_attrs ADD CONSTRAINT user_attrs_user_id_fkey FOREIGN KEY (user_id) REFERENCES users(user_id); -- -- Name: user_messages_user_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: ibs -- ALTER TABLE ONLY user_messages ADD CONSTRAINT user_messages_user_id_fkey FOREIGN KEY (user_id) REFERENCES users(user_id); -- -- Name: users_owner_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: ibs -- ALTER TABLE ONLY users ADD CONSTRAINT users_owner_id_fkey FOREIGN KEY (owner_id) REFERENCES admins(admin_id); -- -- Name: voip_charge_rules_tariff_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: ibs -- ALTER TABLE ONLY voip_charge_rules ADD CONSTRAINT voip_charge_rules_tariff_id_fkey FOREIGN KEY (tariff_id) REFERENCES voip_charge_rule_tariff(tariff_id); -- -- Name: voip_users_user_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: ibs -- ALTER TABLE ONLY voip_users ADD CONSTRAINT voip_users_user_id_fkey FOREIGN KEY (user_id) REFERENCES users(user_id); -- -- Name: public; Type: ACL; Schema: -; Owner: postgres -- REVOKE ALL ON SCHEMA public FROM PUBLIC; REVOKE ALL ON SCHEMA public FROM postgres; GRANT ALL ON SCHEMA public TO postgres; GRANT ALL ON SCHEMA public TO PUBLIC; -- -- PostgreSQL database dump complete --